Heray-Was-Here
Server : LiteSpeed
System : Linux server376.web-hosting.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User : alissgnf ( 2624)
PHP Version : 8.4.21
Disable Function : NONE
Directory :  /var/softaculous/omp/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //var/softaculous/omp/omp.sql
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: `omp3504`
--


-- --------------------------------------------------------

--
-- 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_foreign` (`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 `completed_payments`
--

CREATE TABLE `completed_payments` (
  `completed_payment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `payment_type` bigint(20) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `assoc_id` varchar(16) DEFAULT NULL,
  `amount` decimal(8,2) NOT NULL,
  `currency_code_alpha` varchar(3) DEFAULT NULL,
  `payment_method_plugin_name` varchar(80) DEFAULT NULL,
  PRIMARY KEY (`completed_payment_id`),
  KEY `completed_payments_context_id` (`context_id`),
  KEY `completed_payments_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of completed (fulfilled) payments, with information about the type of payment and the entity it relates to.' 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=67 ;

--
-- Dumping data for table `email_templates_default_data`
--

INSERT INTO `email_templates_default_data` VALUES
(1, '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}'),
(2, 'USER_REGISTER', 'en', 'User Created', 'Press Registration', '{$recipientName}<br />\n<br />\nYou have now been registered as a user with {$contextName}. We have included your username and password in this email, which are needed for all work with this press through its website. At any point, you can ask to be removed from the list of users by contacting me.<br />\n<br />\nUsername: {$recipientUsername}<br />\nPassword: {$password}<br />\n<br />\nThank you,<br />\n{$signature}'),
(3, 'USER_VALIDATE_CONTEXT', 'en', 'Validate Email (Press Registration)', 'Validate Your Account', '{$recipientName}<br />\n<br />\nYou have created an account with {$contextName}, 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{$contextSignature}'),
(4, '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}'),
(5, 'REVIEWER_REGISTER', 'en', 'Reviewer Register', 'Registration as Reviewer with {$contextName}', 'In light of your expertise, we have taken the liberty of registering your name in the reviewer database for {$contextName}. This does not entail any form of commitment on your part, but simply enables us to approach you with a submission to possibly review. On being invited to review, you will have an opportunity to see the title and abstract of the paper in question, and you''ll always be in a position to accept or decline the invitation. You can also ask at any point to have your name removed from this reviewer list.<br />\n<br />\nWe are providing you with a username and password, which is used in all interactions with the press through its website. You may wish, for example, to update your profile, including your reviewing interests.<br />\n<br />\nUsername: {$recipientUsername}<br />\nPassword: {$password}<br />\n<br />\nThank you,<br />\n{$signature}'),
(6, 'SUBMISSION_ACK', 'en', 'Submission Confirmation', 'Thank you for your submission to {$contextName}', '<p>Dear {$recipientName},</p><p>Thank you for your submission to {$contextName}. We have received your submission, "{$submissionTitle}", and a member of our editorial team will see it soon. You will be sent an email when an initial decision is made, and we may contact you for further information.</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 {$contextName} as a venue for your work.</p>{$contextSignature}'),
(7, 'SUBMISSION_ACK_NOT_USER', 'en', 'Submission Confirmation (Other Authors)', 'Submission confirmation', '<p>Dear {$recipientName},</p><p>You have been named as a co-author on a submission to {$contextName}. 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 submission, please contact me.</p><p>Thank you for considering {$contextName} as a venue for your work.</p><p>Kind regards,</p>{$contextSignature}'),
(8, 'EDITOR_ASSIGN', 'en', 'Editor Assigned', 'You have been assigned as an editor on a submission to {$contextName}', '<p>Dear {$recipientName},</p><p>The following submission has been assigned to you to see through the editorial process.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>If you find the submission to be relevant for {$contextName}, please forward the submission to the review stage by selecting "Send to Internal Review" and then assign reviewers by clicking "Add Reviewer".</p><p>If the submission is not appropriate for this press, please decline the submission.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$contextSignature}'),
(9, 'REVIEW_CANCEL', 'en', 'Reviewer Unassign', 'Request for Review Cancelled', '{$recipientName}:<br />\n<br />\nWe have decided at this point to cancel our request for you to review the submission, &quot;{$submissionTitle},&quot; for {$contextName}. We apologize for any inconvenience this may cause you and hope that we will be able to call on you to assist with this review process in the future.<br />\n<br />\nIf you have any questions, please contact me.'),
(10, 'REVIEW_REINSTATE', 'en', 'Reviewer Reinstate', 'Can you still review something for {$contextName}?', '<p>Dear {$recipientName},</p><p>We recently cancelled our request for you to review a submission, {$submissionTitle}, for {$contextName}. We''ve reversed that decision and we hope that you are still able to conduct the review.</p><p>If you are able to assist with this submission''s review, you can <a href="{$reviewAssignmentUrl}">login to the press</a> to view the submission, upload review files, and submit your review request.</p><p>If you have any questions, please contact me.</p><p>Kind regards,</p>{$signature}'),
(11, 'REVIEW_RESEND_REQUEST', 'en', 'Resend Review Request to Reviewer', 'Requesting your review again for {$contextName}', '<p>Dear {$recipientName},</p><p>Recently, you declined our request to review a submission, "{$submissionTitle}", for {$contextName}. I''m writing to see if you are able to conduct the review after all.</p><p>We would be grateful if you''re able to perform this review, but we understand if that is not possible at this time. Either way, please <a href="{$reviewAssignmentUrl}">accept or decline the request</a> by {$responseDueDate}, so that we can find an alternate reviewer.</p><p>If you have any questions, please contact me.</p><p>Kind regards,</p>{$signature}'),
(12, 'REVIEW_REQUEST', 'en', 'Review Request', 'Manuscript Review Request', '<p>Dear {$recipientName},</p><p>I believe that you would serve as an excellent reviewer for a submission  to {$contextName}. The submission''s title and abstract are below, and I hope that you will consider undertaking this important task for us.</p><p>If you are able to review this submission, your review is due by {$reviewDueDate}. You can view the submission, upload review files, and submit your review by logging into the press and following the steps at the link below.</p><p><a href="{$reviewAssignmentUrl}">{$submissionTitle}</a></p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please <a href="{$reviewAssignmentUrl}">accept or decline</a> the review by <b>{$responseDueDate}</b>.</p><p>You may contact me with any questions about the submission or the review process.</p><p>Thank you for considering this request. Your help is much appreciated.</p><p>Kind regards,</p>{$signature}'),
(13, 'REVIEW_REQUEST_SUBSEQUENT', 'en', 'Review Request Subsequent', 'Request to review a revised submission', '<p>Dear {$recipientName},</p><p>Thank you for your review of <a href="{$reviewAssignmentUrl}">{$submissionTitle}</a>. The authors have considered the reviewers'' feedback and have now submitted a revised version of their work. I''m writing to ask if you would conduct a second round of peer review for this submission.</p><p>If you are able to review this submission, your review is due by {$reviewDueDate}. You can <a href="{$reviewAssignmentUrl}">follow the review steps</a> to view the submission, upload review files, and submit your review comments.<p><p><a href="{$reviewAssignmentUrl}">{$submissionTitle}</a></p><p><b>Abstract</b></p>{$submissionAbstract}<p>Please <a href="{$reviewAssignmentUrl}">accept or decline</a> the review by <b>{$responseDueDate}</b>.</p><p>Please feel free to contact me with any questions about the submission or the review process.</p><p>Thank you for considering this request. Your help is much appreciated.</p><p>Kind regards,</p>{$signature}'),
(14, 'REVIEW_RESPONSE_OVERDUE_AUTO', 'en', 'Review Response Overdue (Automated)', 'Manuscript Review Request', 'Dear {$recipientName},<br />\nJust a gentle reminder of our request for your review of the submission, &quot;{$submissionTitle},&quot; for {$contextName}. We were hoping to have your response by {$responseDueDate}, and this email has been automatically generated and sent with the passing of that date.\n<br />\n{$messageToReviewer}<br />\n<br />\nPlease log into the press web site to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation.<br />\n<br />\nThe review itself is due {$reviewDueDate}.<br />\n<br />\nSubmission URL: {$reviewAssignmentUrl}<br />\n<br />\nUsername: {$recipientUsername}<br />\n<br />\nThank you for considering this request.<br />\n<br />\n<br />\nSincerely,<br />\n{$contextSignature}<br />\n'),
(15, 'REVIEW_CONFIRM', 'en', 'Review Confirm', 'Review accepted: {$reviewerName} accepted review assignment for #{$submissionId} {$authorsShort} — "{$submissionTitle}"', '<p>Dear {$recipientName},</p><p>{$reviewerName} has accepted the following review:</p><p><a href="{$submissionUrl}">#{$submissionId} {$authorsShort} — "{$submissionTitle}"</a><br /><b>Type:</b> {$reviewMethod}</p><p><b>Review Due:</b> {$reviewDueDate}</p><p>Login to <a href="{$submissionUrl}">view all reviewer assignments</a> for this submission.</p><br><br>—<br>This is an automated message from <a href="{$contextUrl}">{$contextName}</a>.'),
(16, 'REVIEW_DECLINE', 'en', 'Review Decline', 'Unable to Review', 'Editor(s):<br />\n<br />\nI am afraid that at this time I am unable to review the submission, &quot;{$submissionTitle},&quot; for {$contextName}. Thank you for thinking of me, and another time feel free to call on me.<br />\n<br />\n{$senderName}'),
(17, 'REVIEW_ACK', 'en', 'Review Acknowledgement', 'Thank you for your review', '<p>Dear {$recipientName},</p>\n<p>Thank you for completing your review of the submission, "{$submissionTitle}", for {$contextName}. We appreciate your time and expertise in contributing to the quality of the work that we publish.</p>\n<p>It has been a pleasure to work with you as a reviewer for {$contextName}, and we hope to have the opportunity to work with you again in the future.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>'),
(18, 'REVIEW_REMIND', 'en', 'Review Reminder', 'A reminder to please complete your review', '<p>Dear {$recipientName},</p><p>Just a gentle reminder of our request for your review of the submission, "{$submissionTitle}," for {$contextName}. We were expecting to have this review by {$reviewDueDate} and we would be pleased to receive it as soon as you are able to prepare it.</p><p>You can <a href="{$reviewAssignmentUrl}">login to the press</a> and follow the review steps to view the submission, upload review files, and submit your review comments.</p><p>If you need an extension of the deadline, please contact me. I look forward to hearing from you.</p><p>Thank you in advance and kind regards,</p>{$signature}'),
(19, 'REVIEW_REMIND_AUTO', 'en', 'Review Reminder (Automated)', 'A reminder to please complete your review', '<p>Dear {$recipientName}:</p><p>This email is an automated reminder from {$contextName} in regards to our request for your review of the submission, "{$submissionTitle}."</p><p>We were expecting to have this review by {$reviewDueDate} and we would be pleased to receive it as soon as you are able to prepare it.</p><p>Please <a href="{$reviewAssignmentUrl}">login to the press</a> and follow the review steps to view the submission, upload review files, and submit your review comments.</p><p>If you need an extension of the deadline, please contact me. I look forward to hearing from you.</p><p>Thank you in advance and kind regards,</p>{$contextSignature}'),
(20, 'REVIEW_COMPLETE', 'en', 'Review Completed', 'Review complete: {$reviewerName} recommends {$reviewRecommendation} for #{$submissionId} {$authorsShort} — "{$submissionTitle}"', '<p>Dear {$recipientName},</p><p>{$reviewerName} completed the following review:</p><p><a href="{$submissionUrl}">#{$submissionId} {$authorsShort} — "{$submissionTitle}"</a><br /><b>Recommendation:</b> {$reviewRecommendation}<br /><b>Type:</b> {$reviewMethod}</p><p>Login to <a href="{$submissionUrl}">view all files and comments</a> provided by this reviewer.</p>'),
(21, 'REVIEW_EDIT', 'en', 'Review Edited', 'Your review assignment has been changed for {$contextName}', '<p>Dear {$recipientName},</p><p>An editor has made changes to your review assignment for {$contextName}. Please review the details below and let us know if you have any questions.</p><p><a href="{$reviewAssignmentUrl}">"{$submissionTitle}"</a><br /><b>Type:</b> {$reviewMethod}<br /><b>Accept or Decline By:</b> {$responseDueDate}<br /><b>Submit Review By:</b> {$reviewDueDate}</p><p>You can login to <a href="{$reviewAssignmentUrl}">complete this review</a> at any time.</p>'),
(22, 'EDITOR_DECISION_ACCEPT', 'en', 'Submission Accepted', 'Your submission has been accepted to {$contextName}', '<p>Dear {$recipientName},</p><p>I am pleased to inform you that we have decided to accept your submission without further revision. After careful review, we found your submission, {$submissionTitle}, to meet or exceed our expectations. We are excited to publish your piece in {$contextName} and we thank you for choosing our press as a venue for your work.</p><p>Your submission will soon be published on the press site for {$contextName} and you are welcome to include it in your list of publications. We recognize the hard work that goes into every successful submission and we want to congratulate you on reaching this stage.</p><p>Your submission will now undergo copy editing and formatting to prepare it for publication.</p><p>You will shortly receive further instructions.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>Kind regards,</p>{$signature}'),
(23, 'EDITOR_DECISION_SEND_TO_INTERNAL', 'en', 'Sent to Internal Review', 'Your submission has been sent for internal review', '<p>Dear {$recipientName},</p><p>I am pleased to inform you that an editor has reviewed your submission, {$submissionTitle}, and has decided to send it for internal review. You will hear from us with feedback from the reviewers and information about the next steps.</p><p>Please note that sending the submission for internal review does not guarantee that it will be published. We will consider the reviewers'' recommendations before deciding to accept the submission for publication. You may be asked to make revisions and respond to the reviewers'' comments before a final decision is made.</p><p>If you have any questions, please contact me from your submission dashboard.</p><p>{$signature}</p>'),
(24, 'EDITOR_DECISION_SEND_TO_EXTERNAL', 'en', 'Sent to Review', 'Your submission has been sent for review', '<p>Dear {$recipientName},</p><p>I am pleased to inform you that an editor has reviewed your submission, "{$submissionTitle}", and has decided to send it for peer review. An editor will identify qualified reviewers who will provide feedback on your submission.</p><p>{$reviewTypeDescription} You will hear from us with feedback from the reviewers and information about the next steps.</p><p>Please note that sending the submission to peer review does not guarantee that it will be published. We will consider the reviewers'' recommendations before deciding to accept the submission for publication. You may be asked to make revisions and respond to the reviewers'' comments before a final decision is made.</p><p>If you have any questions, please contact me from your submission dashboard.</p><p>{$signature}</p>'),
(25, 'EDITOR_DECISION_SEND_TO_PRODUCTION', 'en', 'Sent to Production', 'Next steps for publishing your submission', '<p>Dear {$recipientName},</p><p>I am writing from {$contextName} to let you know that the editing of your submission, "{$submissionTitle}", is complete. Your submission will now advance to the production stage, where the final galleys will be prepared for publication. We will contact you if we need any further assistance.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>Kind regards,</p>{$signature}'),
(26, 'EDITOR_DECISION_REVISIONS', 'en', 'Revisions Requested', 'Your submission has been reviewed and we encourage you to submit revisions', '<p>Dear {$recipientName},</p><p>Your submission "{$submissionTitle}" has been reviewed and we would like to encourage you to submit revisions that address the reviewers'' comments. An editor will review these revisions and if they address the concerns adequately, your submission may be accepted for publication.</p><p>The reviewers'' comments are included at the bottom of this email. Please respond to each point in the reviewers'' comments and identify what changes you have made. If you find any of the reviewer''s comments to be unjustified or inappropriate, please explain your perspective.</p><p>When you have completed your revisions, you can upload revised documents along with your response to the reviewers'' comments at your <a href="{$authorSubmissionUrl}">submission dashboard</a>. 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>We look forward to receiving your revised submission.</p><p>Kind regards,</p>{$signature}<hr><p>The following comments were received from reviewers.</p>{$allReviewerComments}'),
(27, 'EDITOR_DECISION_RESUBMIT', 'en', 'Resubmit for Review', 'Your submission has been reviewed - please revise and resubmit', '<p>Dear {$recipientName},</p><p>After reviewing your submission, "{$submissionTitle}", the reviewers have recommended that your submission cannot be accepted for publication in its current form. However, we would like to encourage you to submit a revised version that addresses the reviewers'' comments. Your revisions will be reviewed by an editor and may be sent out for another round of peer review.</p><p>Please note that resubmitting your work does not guarantee that it will be accepted.</p><p>The reviewers'' comments are included at the bottom of this email. Please respond to each point and identify what changes you have made. If you find any of the reviewer''s comments inappropriate, please explain your perspective. If you have questions about the recommendations in your review, please include these in your response.</p><p>When you have completed your revisions, you can upload revised documents along with your response to the reviewers'' comments <a href="{$authorSubmissionUrl}">at your submission dashboard</a>. 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>We look forward to receiving your revised submission.</p><p>Kind regards,</p>{$signature}<hr><p>The following comments were received from reviewers.</p>{$allReviewerComments}'),
(28, 'EDITOR_DECISION_DECLINE', 'en', 'Submission Declined', 'Your submission has been declined', '<p>Dear {$recipientName},</p><p>While we appreciate receiving your submission, we are unable to accept "{$submissionTitle}" for publication on the basis of the comments from reviewers.</p><p>The reviewers'' comments are included at the bottom of this email.</p><p>Thank you for submitting to {$contextName}. Although it is disappointing to have a submission declined, I hope you find the reviewers'' comments to be constructive and helpful.</p><p>You are now free to submit the work elsewhere if you choose to do so.</p><p>Kind regards,</p>{$signature}<hr><p>The following comments were received from reviewers.</p>{$allReviewerComments}'),
(29, 'EDITOR_DECISION_INITIAL_DECLINE', 'en', 'Submission Declined (Pre-Review)', '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 {$contextName}.</p><p>I wish you success if you consider submitting your work elsewhere.</p><p>Kind regards,</p>{$signature}'),
(30, 'EDITOR_RECOMMENDATION', 'en', 'Recommendation Made', 'Editor Recommendation', '<p>Dear {$recipientName},</p><p>After considering the reviewers'' feedback, I would like to make the following recommendation regarding the submission "{$submissionTitle}".</p><p>My recommendation is: {$recommendation}.</p><p>Please visit the submission''s <a href="{$submissionUrl}">editorial workflow</a> to act on this recommendation.</p><p>Please feel free to contact me with any questions.</p><p>Kind regards,</p><p>{$senderName}</p>'),
(31, 'EDITOR_DECISION_NOTIFY_OTHER_AUTHORS', 'en', 'Notify Other Authors', 'An update regarding your submission', '<p>The following email was sent to {$submittingAuthorName} from {$contextName} 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}'),
(32, 'EDITOR_DECISION_NOTIFY_REVIEWERS', 'en', 'Notify Reviewers of Decision', 'Thank you for your review', '<p>Dear {$recipientName},</p>\n<p>Thank you for completing your review of the submission, "{$submissionTitle}", for {$contextName}. We appreciate your time and expertise in contributing to the quality of the work that we publish. We have shared your comments with the authors, along with our other reviewers'' comments and the editor''s decision.</p>\n<p>Based on the feedback we received, we have notified the authors of the following:</p>\n<p>{$decisionDescription}</p>\n<p>Your recommendation was considered alongside the recommendations of other reviewers before coming to a decision. Occasionally the editor''s decision may differ from the recommendation made by one or more reviewers. The editor considers many factors, and does not take these decisions lightly. We are grateful for our reviewers'' expertise and suggestions.</p>\n<p>It has been a pleasure to work with you as a reviewer for {$contextName}, and we hope to have the opportunity to work with you again in the future.</p>\n<p>Kind regards,</p>\n<p>{$signature}</p>'),
(33, 'EDITOR_DECISION_NEW_ROUND', 'en', 'New Review Round Initiated', 'Your submission has been sent for another round of review', '<p>Dear {$recipientName},</p>\n<p>Your revised submission, "{$submissionTitle}", has been sent for a new round of peer review. \nYou will hear from us with feedback from the reviewers and information about the next steps.</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'),
(34, 'EDITOR_DECISION_REVERT_DECLINE', 'en', 'Reinstate Declined Submission', '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. \nAn editor will complete the round of review and you will be notified when a \ndecision is made.</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'),
(35, '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. \nAn editor will look further at your submission before deciding whether to decline \nthe submission or send it for review.</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'),
(36, 'EDITOR_DECISION_SKIP_REVIEW', 'en', 'Submission Accepted (Without Review)', 'Your submission has been sent for copyediting', '<p>Dear {$recipientName},</p>\n<p>I am pleased to inform you that we have decided to accept your submission without peer review. We found your submission, {$submissionTitle}, to meet our expectations, and we do not require that work of this type undergo peer review. We are excited to publish your piece in {$contextName} and we thank you for choosing our press as a venue for your work.</p>\n<p>Your submission will soon be published on the press site for {$contextName} and you are welcome to include it in your list of publications. We recognize the hard work that goes into every successful submission and we want to congratulate you on your efforts.</p>\n<p>Your submission will now undergo copy editing and formatting to prepare it for publication. </p>\n<p>You will shortly receive further instructions.</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'),
(37, 'EDITOR_DECISION_BACK_FROM_PRODUCTION', 'en', 'Submission Sent Back to Copyediting', 'Your submission has been sent back to copyediting', '<p>Dear {$recipientName},</p><p>Your submission, "{$submissionTitle}", has been sent back to the copyediting stage, where it will undergo further copyediting and formatting to prepare it for publication.</p><p>Occasionally, a submission is sent to the production stage before it is ready for the final galleys to be prepared for publication. Your submission is still forthcoming. I apologize for any confusion.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>We will contact you if we need any further assistance.</p><p>Kind regards,</p><p>{$signature}</p>'),
(38, 'EDITOR_DECISION_BACK_FROM_COPYEDITING', 'en', 'Submission Sent Back from Copyediting', 'Your submission has been sent back to review', '<p>Dear {$recipientName},</p><p>Your submission, "{$submissionTitle}", has been sent back to the review stage. It will undergo further review before it can be accepted for publication.</p><p>Occasionally, a decision to accept a submission will be recorded accidentally in our system and we must send it back to review. I apologize for any confusion this has caused. We will work to complete any further review quickly so that you have a final decision as soon as possible.</p><p>We will contact you if we need any further assistance.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>Kind regards,</p><p>{$signature}</p>'),
(39, 'EDITOR_DECISION_CANCEL_REVIEW_ROUND', 'en', 'Review Round Cancelled', 'A review round for your submission has been cancelled', '<p>Dear {$recipientName},</p><p>We recently opened a new review round for your submission, "{$submissionTitle}". We are closing this review round now.</p><p>Occasionally, a decision to open a round of review will be recorded accidentally in our system and we must cancel this review round. I apologize for any confusion this may have caused.</p><p>We will contact you if we need any further assistance.</p><p>If you have any questions, please contact me from your <a href="{$authorSubmissionUrl}">submission dashboard</a>.</p><p>Kind regards,</p><p>{$signature}</p>'),
(40, 'REVISED_VERSION_NOTIFY', 'en', 'Revised Version Notification', 'Revised Version Uploaded', '<p>Dear {$recipientName},</p><p>The author has uploaded revisions for the submission, <b>{$authorsShort} — {$submissionTitle}</b>. <p>As an assigned editor, we ask that you login and <a href="{$submissionUrl}">view the revisions</a> and make a decision to accept, decline or send the submission for further review.</p><br><br>—<br>This is an automated message from <a href="{$contextUrl}">{$contextName}</a>.'),
(41, 'STATISTICS_REPORT_NOTIFICATION', 'en', 'Statistics Report Notification', 'Editorial activity for {$month}, {$year}', '\n{$recipientName}, <br />\n<br />\nYour press 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 press to view more detailed <a href="{$editorialStatsLink}">editorial trends</a> and <a href="{$publicationStatsLink}">published book stats</a>. A full copy of this month''s editorial trends is attached.<br />\n<br />\nSincerely,<br />\n{$contextSignature}'),
(42, '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>.'),
(43, 'DISCUSSION_NOTIFICATION_SUBMISSION', 'en', 'Discussion (Submission)', 'A message regarding {$contextName}', 'Please enter your message.'),
(44, 'DISCUSSION_NOTIFICATION_REVIEW', 'en', 'Discussion (Review)', 'A message regarding {$contextName}', 'Please enter your message.'),
(45, 'DISCUSSION_NOTIFICATION_COPYEDITING', 'en', 'Discussion (Copyediting)', 'A message regarding {$contextName}', 'Please enter your message.'),
(46, 'DISCUSSION_NOTIFICATION_PRODUCTION', 'en', 'Discussion (Production)', 'A message regarding {$contextName}', 'Please enter your message.'),
(47, 'COPYEDIT_REQUEST', 'en', 'Request Copyedit', 'Submission {$submissionId} is ready to be copyedited for {$contextAcronym}', '<p>Dear {$recipientName},</p><p>A new submission is ready to be copyedited:</p><p><a href"{$submissionUrl}">{$submissionId} — "{$submissionTitle}"</a><br />{$contextName}</p><p>Please follow these steps to complete this task:</p><ol><li>Click on the Submission URL below.</li><li>Open any files available under Draft Files and edit the files. Use the Copyediting Discussions area if you need to contact the editor(s) or author(s).</li><li>Save the copyedited file(s) and upload them to the Copyedited panel.</li><li>Use the Copyediting Discussions to notify the editor(s) that all files have been prepared, and that the Production process may begin.</li></ol><p>If you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to {$contextName}.</p><p>Kind regards,</p>{$signature}'),
(48, 'EDITOR_ASSIGN_SUBMISSION', 'en', 'Assign Editor', 'You have been assigned as an editor on a submission to {$contextName}', '<p>Dear {$recipientName},</p><p>The following submission has been assigned to you to see through the editorial process.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$authors}</p><p><b>Abstract</b></p>{$submissionAbstract}<p>If you find the submission to be relevant for {$contextName}, please forward the submission to the review stage by selecting "Send to Internal Review" and then assign reviewers by clicking "Add Reviewer".</p><p>If the submission is not appropriate for this press, please decline the submission.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$contextSignature}'),
(49, 'EDITOR_ASSIGN_REVIEW', 'en', 'Assign Editor', 'You have been assigned as an editor on a submission to {$contextName}', '<p>Dear {$recipientName},</p><p>The following submission has been assigned to you to see through the review stage.</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 submission</a> and assign qualified reviewers. You can assign a reviewer by clicking "Add Reviewer".</p><p>Thank you in advance.</p><p>Kind regards,</p>{$signature}'),
(50, 'EDITOR_ASSIGN_PRODUCTION', 'en', 'Assign Editor', 'You have been assigned as an editor on a submission to {$contextName}', '<p>Dear {$recipientName},</p><p>The following submission has been assigned to you to see through the production stage.</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 submission</a>. Once production-ready files are available, upload them under the <strong>Publication > Publication Formats</strong> section.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$signature}'),
(51, 'LAYOUT_REQUEST', 'en', 'Ready for Production', 'Submission {$submissionId} is ready for production at {$contextAcronym}', '<p>Dear {$recipientName},</p><p>A new submission is ready for layout editing:</p><p><a href="{$submissionUrl}">{$submissionId} {$submissionTitle}</a><br />{$contextName}</p><ol><li>Click on the Submission URL above.</li><li>Download the Production Ready files and use them to create the galleys according to the press''s standards.</li><li>Upload the galleys to the Publication Formats section of the submission.</li><li>Use the Production Discussions to notify the editor that the galleys are ready.</li></ol><p>If you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to this press.</p><p>Kind regards,</p>{$signature}'),
(52, 'LAYOUT_COMPLETE', 'en', 'Galleys Complete', 'Galleys Complete', '<p>Dear {$recipientName},<p><p>Galleys have now been prepared for the following submission and are ready for final review.</p><p><a href="{$submissionUrl}">{$submissionTitle}</a><br />{$contextName}</p><p>If you have any questions, please contact me.</p><p>Kind regards,</p><p>{$senderName}</p>'),
(53, 'INDEX_REQUEST', 'en', 'Index Requested', 'Request Index', '{$recipientName}:<br />\n<br />\nThe submission &quot;{$submissionTitle}&quot; to {$contextName} now needs indexes created by following these steps.<br />\n1. Click on the Submission URL below.<br />\n2. Log into the press and use the Page Proofs file to create the galleys according to press standards.<br />\n3. Send the COMPLETE email to the editor.<br />\n<br />\n{$contextName} URL: {$contextUrl}<br />\nSubmission URL: {$submissionUrl}<br />\nUsername: {$recipientUsername}<br />\n<br />\nIf you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to this press.<br />\n<br />\n{$signature}'),
(54, 'INDEX_COMPLETE', 'en', 'Index Completed', 'Index Galleys Complete', '{$recipientName}:<br />\n<br />\nIndexes have now been prepared for the manuscript, &quot;{$submissionTitle},&quot; for {$contextName} and are ready for proofreading.<br />\n<br />\nIf you have any questions, please contact me.<br />\n<br />\n{$senderName}'),
(55, '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="{$contextUrl}">{$contextName}</a>.</p>'),
(56, 'EDITORIAL_REMINDER', 'en', 'Editorial Reminder', 'Outstanding editorial tasks for {$contextName}', '<p>Dear {$recipientName},</p><p>You are currently assigned to {$numberOfSubmissions} submissions in <a href="{$contextUrl}">{$contextName}</a>. The following submissions are <b>waiting for your response</b>.</p>{$outstandingTasks}<p>View all of your assignments in your <a href="{$submissionsUrl}">submission dashboard</a>.</p><p>If you have any questions about your assignments, please contact {$contactName} at {$contactEmail}.</p>'),
(57, 'SUBMISSION_SAVED_FOR_LATER', 'en', 'Submission Saved for Later', 'Resume your submission to {$contextName}', '<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="{$contextUrl}">{$contextName}</a>.</p>'),
(58, '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="{$contextUrl}">{$contextName}</a>.</p>'),
(59, '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}'),
(60, '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 {$contextName}.<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 {$contextName}</a><br/>\n<br/>\nIf you have any questions, please contact me.<br/>\n<br/>\n{$principalContactSignature}<br/>\n'),
(61, '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 {$contextName}.\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 {$contextName}</a><br/>\n<br>\n<br>\nIf you have any questions, please contact me.<br>\n<br>\n{$principalContactSignature}<br>\n'),
(62, '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 {$contextName}</p>        <p>At {$contextName}, 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 {$contextName}.</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>{$contextName}</p>    </div></div>'),
(63, '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 {$contextName}.</p>        <p>This is a notice to let you know that you have been removed from the following role at {$contextName}: <b>{$roleRemoved}</b>.</p>        <p>Your account with {$contextName} 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>{$contextName}</p>    </div></div>'),
(64, 'USER_ROLE_MASTHEAD_UPDATE', 'en', 'User Role Masthead Visibility Update Notification', 'Your journal masthead visibility has been updated', '<div class=''email-container''>    <div class=''email-header''>        <h2>Updated role masthead visibility</h2>    </div>    <div class=''email-content''>        <p>Dear {$recipientName},</p>        <p>Your journal masthead visibility for the role {$roleNameAndDates} in {$contextName} has been updated.</p>        <p>New setting: {$appearOnMasthead}</p>        <p>If you have questions about this change, please contact the journal manager.</p>        <p>Kind regards,</p>        <p>{$contextName}</p>    </div></div>'),
(65, '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 {$contextName}.\n<br>\n<br>\nYou have previously authorized {$contextName} 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 {$contextName}</a><br/>\n<br>\n<br>\nIf you have any questions, please contact me.<br>\n<br>\n{$principalContactSignature}<br>\n'),
(66, 'MANUAL_PAYMENT_NOTIFICATION', 'en', 'Manual Payment Notify', 'Manual Payment Notification', 'A manual payment needs to be processed for the press {$contextName} and the user {$senderName} (username &quot;{$senderUsername}&quot;).<br />\n<br />\nThe item being paid for is &quot;{$paymentName}&quot;.<br />\nThe cost is {$paymentAmount} ({$paymentCurrencyCode}).<br />\n<br />\nThis email was generated by the Open Monograph Press Manual Payment plugin.');

-- --------------------------------------------------------

--
-- 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 `features`
--

CREATE TABLE `features` (
  `feature_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `seq` bigint(20) NOT NULL,
  PRIMARY KEY (`feature_id`),
  UNIQUE KEY `press_features_unique` (`assoc_type`,`assoc_id`,`submission_id`),
  KEY `features_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Information about which submissions are featured in the press.' 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=20 ;

--
-- Dumping data for table `filters`
--

INSERT INTO `filters` VALUES
(1, 1, NULL, 'Extract metadata from a(n) PublicationFormat', 'APP\\plugins\\metadata\\dc11\\filter\\Dc11SchemaPublicationFormatAdapter', 0, NULL, 0),
(2, 2, NULL, 'User XML user export', 'PKP\\plugins\\importexport\\users\\filter\\PKPUserUserXmlFilter', 0, NULL, 0),
(3, 3, NULL, 'User XML user import', 'PKP\\plugins\\importexport\\users\\filter\\UserXmlPKPUserFilter', 0, NULL, 0),
(4, 4, NULL, 'Native XML user group export', 'PKP\\plugins\\importexport\\users\\filter\\UserGroupNativeXmlFilter', 0, NULL, 0),
(5, 5, NULL, 'Native XML user group import', 'PKP\\plugins\\importexport\\users\\filter\\NativeXmlUserGroupFilter', 0, NULL, 0),
(6, 6, NULL, 'ONIX 3.0 XML monograph export', 'APP\\plugins\\importexport\\onix30\\filter\\MonographONIX30XmlFilter', 0, NULL, 0),
(7, 7, NULL, 'Native XML submission export', 'APP\\plugins\\importexport\\native\\filter\\MonographNativeXmlFilter', 0, NULL, 0),
(8, 8, NULL, 'Native XML submission import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlMonographFilter', 0, NULL, 0),
(9, 9, NULL, 'Native XML author export', 'APP\\plugins\\importexport\\native\\filter\\AuthorNativeXmlFilter', 0, NULL, 0),
(10, 10, NULL, 'Native XML author import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlAuthorFilter', 0, NULL, 0),
(11, 11, NULL, 'Native XML representation export', 'APP\\plugins\\importexport\\native\\filter\\PublicationFormatNativeXmlFilter', 0, NULL, 0),
(12, 12, NULL, 'Native XML representation import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlPublicationFormatFilter', 0, NULL, 0),
(13, 14, NULL, 'Native XML submission file import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlMonographFileFilter', 0, NULL, 0),
(14, 13, NULL, 'Native XML submission file export', 'PKP\\plugins\\importexport\\native\\filter\\SubmissionFileNativeXmlFilter', 0, NULL, 0),
(15, 15, NULL, 'ONIX 3.0 XML monograph export', 'APP\\plugins\\importexport\\onix30\\filter\\MonographONIX30XmlFilter', 0, NULL, 0),
(16, 16, NULL, 'Native XML Publication export', 'APP\\plugins\\importexport\\native\\filter\\PublicationNativeXmlFilter', 0, NULL, 0),
(17, 17, NULL, 'Native XML publication import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlPublicationFilter', 0, NULL, 0),
(18, 18, NULL, 'Native XML chapter export', 'APP\\plugins\\importexport\\native\\filter\\ChapterNativeXmlFilter', 0, NULL, 0),
(19, 19, NULL, 'Native XML Chapter import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlChapterFilter', 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=20 ;

--
-- Dumping data for table `filter_groups`
--

INSERT INTO `filter_groups` VALUES
(1, 'publicationFormat=>dc11', 'plugins.metadata.dc11.publicationFormatAdapter.displayName', 'plugins.metadata.dc11.publicationFormatAdapter.description', 'class::classes.publicationFormat.PublicationFormat', 'metadata::APP\\plugins\\metadata\\dc11\\schema\\Dc11Schema(PUBLICATION_FORMAT)'),
(2, 'user=>user-xml', 'plugins.importexport.users.displayName', 'plugins.importexport.users.description', 'class::PKP\\user\\User[]', 'xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)'),
(3, 'user-xml=>user', 'plugins.importexport.users.displayName', 'plugins.importexport.users.description', 'xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)', 'class::PKP\\user\\User[]'),
(4, 'usergroup=>user-xml', 'plugins.importexport.users.displayName', 'plugins.importexport.users.description', 'class::PKP\\userGroup\\UserGroup[]', 'xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)'),
(5, 'user-xml=>usergroup', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)', 'class::PKP\\userGroup\\UserGroup[]'),
(6, 'monographs=>onix30-xml', 'plugins.importexport.onix30.displayName', 'plugins.importexport.onix30.description', 'class::classes.submission.Submission[]', 'xml::schema(plugins/importexport/onix30/ONIX_BookProduct_3.0_reference.xsd)'),
(7, 'monograph=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.submission.Submission[]', 'xml::schema(plugins/importexport/native/native.xsd)'),
(8, 'native-xml=>monograph', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.submission.Submission[]'),
(9, 'author=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.author.Author[]', 'xml::schema(plugins/importexport/native/native.xsd)'),
(10, 'native-xml=>author', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.author.Author[]'),
(11, 'publication-format=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.publicationFormat.PublicationFormat', 'xml::schema(plugins/importexport/native/native.xsd)'),
(12, 'native-xml=>PublicationFormat', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.publicationFormat.PublicationFormat[]'),
(13, 'SubmissionFile=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::lib.pkp.classes.submissionFile.SubmissionFile', 'xml::schema(plugins/importexport/native/native.xsd)'),
(14, 'native-xml=>SubmissionFile', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::lib.pkp.classes.submissionFile.SubmissionFile[]'),
(15, 'monograph=>onix30-xml', 'plugins.importexport.onix30.displayName', 'plugins.importexport.onix30.description', 'class::classes.submission.Submission', 'xml::schema(plugins/importexport/onix30/ONIX_BookProduct_3.0_reference.xsd)'),
(16, 'publication=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.publication.Publication', 'xml::schema(plugins/importexport/native/native.xsd)'),
(17, 'native-xml=>Publication', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.publication.Publication[]'),
(18, 'chapter=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.monograph.Chapter[]', 'xml::schema(plugins/importexport/native/native.xsd)'),
(19, 'native-xml=>chapter', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.monograph.Chapter[]');

-- --------------------------------------------------------

--
-- 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 `identification_codes`
--

CREATE TABLE `identification_codes` (
  `identification_code_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `publication_format_id` bigint(20) NOT NULL,
  `code` varchar(40) NOT NULL,
  `value` varchar(255) NOT NULL,
  PRIMARY KEY (`identification_code_id`),
  KEY `identification_codes_publication_format_id` (`publication_format_id`),
  KEY `identification_codes_key` (`identification_code_id`,`publication_format_id`,`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ONIX identification codes for publication formats.' 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 `markets`
--

CREATE TABLE `markets` (
  `market_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `publication_format_id` bigint(20) NOT NULL,
  `countries_included` text,
  `countries_excluded` text,
  `regions_included` text,
  `regions_excluded` text,
  `market_date_role` varchar(40) NOT NULL,
  `market_date_format` varchar(40) NOT NULL,
  `market_date` varchar(255) NOT NULL,
  `price` varchar(255) DEFAULT NULL,
  `discount` varchar(255) DEFAULT NULL,
  `price_type_code` varchar(255) DEFAULT NULL,
  `currency_code` varchar(255) DEFAULT NULL,
  `tax_rate_code` varchar(255) DEFAULT NULL,
  `tax_type_code` varchar(255) DEFAULT NULL,
  `agent_id` bigint(20) DEFAULT NULL,
  `supplier_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`market_id`),
  KEY `markets_publication_format_id` (`publication_format_id`),
  KEY `format_markets_pkey` (`market_id`,`publication_format_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ONIX market information for publication formats.' 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_book_investigations` int(11) NOT NULL,
  `metric_book_investigations_unique` int(11) NOT NULL,
  `metric_book_requests` int(11) NOT NULL,
  `metric_book_requests_unique` int(11) NOT NULL,
  `metric_chapter_investigations` int(11) NOT NULL,
  `metric_chapter_investigations_unique` int(11) NOT NULL,
  `metric_chapter_requests` int(11) NOT NULL,
  `metric_chapter_requests_unique` int(11) NOT NULL,
  `metric_title_investigations_unique` int(11) NOT NULL,
  `metric_title_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 files.' 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_book_investigations` int(11) NOT NULL,
  `metric_book_investigations_unique` int(11) NOT NULL,
  `metric_book_requests` int(11) NOT NULL,
  `metric_book_requests_unique` int(11) NOT NULL,
  `metric_chapter_investigations` int(11) NOT NULL,
  `metric_chapter_investigations_unique` int(11) NOT NULL,
  `metric_chapter_requests` int(11) NOT NULL,
  `metric_chapter_requests_unique` int(11) NOT NULL,
  `metric_title_investigations_unique` int(11) NOT NULL,
  `metric_title_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_book_investigations` int(11) NOT NULL,
  `metric_book_investigations_unique` int(11) NOT NULL,
  `metric_book_requests` int(11) NOT NULL,
  `metric_book_requests_unique` int(11) NOT NULL,
  `metric_chapter_investigations` int(11) NOT NULL,
  `metric_chapter_investigations_unique` int(11) NOT NULL,
  `metric_chapter_requests` int(11) NOT NULL,
  `metric_chapter_requests_unique` int(11) NOT NULL,
  `metric_title_investigations_unique` int(11) NOT NULL,
  `metric_title_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_book_investigations` int(11) NOT NULL,
  `metric_book_investigations_unique` int(11) NOT NULL,
  `metric_book_requests` int(11) NOT NULL,
  `metric_book_requests_unique` int(11) NOT NULL,
  `metric_chapter_investigations` int(11) NOT NULL,
  `metric_chapter_investigations_unique` int(11) NOT NULL,
  `metric_chapter_requests` int(11) NOT NULL,
  `metric_chapter_requests_unique` int(11) NOT NULL,
  `metric_title_investigations_unique` int(11) NOT NULL,
  `metric_title_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 files.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `metrics_series`
--

CREATE TABLE `metrics_series` (
  `metrics_series_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `load_id` varchar(50) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `series_id` bigint(20) NOT NULL,
  `date` date NOT NULL,
  `metric` int(11) NOT NULL,
  PRIMARY KEY (`metrics_series_id`),
  KEY `metrics_series_load_id` (`load_id`),
  KEY `metrics_series_context_id` (`context_id`),
  KEY `metrics_series_series_id` (`series_id`),
  KEY `metrics_series_context_id_series_id` (`context_id`,`series_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics for views of published submissions in each series.' 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,
  `chapter_id` bigint(20) DEFAULT 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_chapter_id` (`chapter_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 files.' 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 `metrics_submission_geo_daily_context_id` (`context_id`),
  KEY `metrics_submission_geo_daily_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 files.' 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 `metrics_submission_geo_monthly_context_id` (`context_id`),
  KEY `metrics_submission_geo_monthly_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 files.' 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 `new_releases`
--

CREATE TABLE `new_releases` (
  `new_release_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  PRIMARY KEY (`new_release_id`),
  UNIQUE KEY `new_releases_unique` (`assoc_type`,`assoc_id`,`submission_id`),
  KEY `new_releases_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Information about which submissions in the press are considered new releases.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- 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=10 ;

--
-- 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, 'developedbyblockplugin', NULL, 'context', '1', 'int'),
(7, 'languagetoggleblockplugin', NULL, 'enabled', '1', 'bool'),
(8, 'languagetoggleblockplugin', NULL, 'seq', '4', 'int'),
(9, 'languagetoggleblockplugin', NULL, 'context', '1', 'int');

-- --------------------------------------------------------

--
-- Table structure for table `presses`
--

CREATE TABLE `presses` (
  `press_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `path` varchar(32) NOT NULL,
  `seq` double NOT NULL DEFAULT '0',
  `primary_locale` varchar(28) NOT NULL,
  `enabled` smallint(6) NOT NULL DEFAULT '1',
  PRIMARY KEY (`press_id`),
  UNIQUE KEY `press_path` (`path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of presses managed by the system.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `press_settings`
--

CREATE TABLE `press_settings` (
  `press_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `press_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text,
  PRIMARY KEY (`press_setting_id`),
  UNIQUE KEY `press_settings_unique` (`press_id`,`locale`,`setting_name`),
  KEY `press_settings_press_id` (`press_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about presses, including localized properties such as policies.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `publications`
--

CREATE TABLE `publications` (
  `publication_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `date_published` date DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `primary_contact_id` bigint(20) DEFAULT NULL,
  `publication_date_type` varchar(32) DEFAULT 'pub',
  `publication_type` varchar(32) DEFAULT 'publication',
  `seq` double NOT NULL DEFAULT '0',
  `series_id` bigint(20) DEFAULT NULL,
  `series_position` varchar(255) DEFAULT NULL,
  `submission_id` bigint(20) NOT NULL,
  `status` smallint(6) 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_primary_contact_id` (`primary_contact_id`),
  KEY `publications_section_id` (`series_id`),
  KEY `publications_submission_id` (`submission_id`),
  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_dates`
--

CREATE TABLE `publication_dates` (
  `publication_date_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `publication_format_id` bigint(20) NOT NULL,
  `role` varchar(40) NOT NULL,
  `date_format` varchar(40) NOT NULL,
  `date` varchar(255) NOT NULL,
  PRIMARY KEY (`publication_date_id`),
  KEY `publication_dates_publication_format_id` (`publication_format_id`),
  KEY `format_publication_dates_pkey` (`publication_date_id`,`publication_format_id`,`role`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ONIX publication dates for publication formats.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `publication_formats`
--

CREATE TABLE `publication_formats` (
  `publication_format_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `publication_id` bigint(20) NOT NULL,
  `physical_format` smallint(6) DEFAULT '1',
  `entry_key` varchar(64) DEFAULT NULL,
  `seq` double NOT NULL DEFAULT '0',
  `file_size` varchar(255) DEFAULT NULL,
  `front_matter` varchar(255) DEFAULT NULL,
  `back_matter` varchar(255) DEFAULT NULL,
  `height` varchar(255) DEFAULT NULL,
  `height_unit_code` varchar(255) DEFAULT NULL,
  `width` varchar(255) DEFAULT NULL,
  `width_unit_code` varchar(255) DEFAULT NULL,
  `thickness` varchar(255) DEFAULT NULL,
  `thickness_unit_code` varchar(255) DEFAULT NULL,
  `weight` varchar(255) DEFAULT NULL,
  `weight_unit_code` varchar(255) DEFAULT NULL,
  `product_composition_code` varchar(255) DEFAULT NULL,
  `product_form_detail_code` varchar(255) DEFAULT NULL,
  `country_manufacture_code` varchar(255) DEFAULT NULL,
  `imprint` varchar(255) DEFAULT NULL,
  `product_availability_code` varchar(255) DEFAULT NULL,
  `technical_protection_code` varchar(255) DEFAULT NULL,
  `returnable_indicator_code` varchar(255) DEFAULT NULL,
  `remote_url` varchar(2047) DEFAULT NULL,
  `url_path` varchar(64) DEFAULT NULL,
  `is_approved` smallint(6) NOT NULL DEFAULT '0',
  `is_available` smallint(6) NOT NULL DEFAULT '0',
  `doi_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`publication_format_id`),
  KEY `publication_formats_publication_id` (`publication_id`),
  KEY `publication_formats_doi_id` (`doi_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Publication formats are representations of a publication in a particular format, e.g. PDF, hardcover, etc. Each publication format may contain many chapters.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `publication_format_settings`
--

CREATE TABLE `publication_format_settings` (
  `publication_format_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `publication_format_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text,
  `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)',
  PRIMARY KEY (`publication_format_setting_id`),
  UNIQUE KEY `publication_format_settings_unique` (`publication_format_id`,`locale`,`setting_name`),
  KEY `publication_format_id_key` (`publication_format_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about publication formats, including localized properties.' 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 `queued_payments`
--

CREATE TABLE `queued_payments` (
  `queued_payment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `date_created` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  `expiry_date` date DEFAULT NULL,
  `payment_data` text,
  PRIMARY KEY (`queued_payment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of queued (unfilled) payments, i.e. payments that have not yet been completed via an online payment system.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `representatives`
--

CREATE TABLE `representatives` (
  `representative_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `role` varchar(40) NOT NULL,
  `representative_id_type` varchar(255) DEFAULT NULL,
  `representative_id_value` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `url` varchar(2047) DEFAULT NULL,
  `is_supplier` smallint(6) NOT NULL DEFAULT '1',
  PRIMARY KEY (`representative_id`),
  KEY `representatives_submission_id` (`submission_id`),
  KEY `format_representatives_pkey` (`representative_id`,`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ONIX representatives for publication formats.' 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=124883 ;

--
-- Dumping data for table `rors`
--

INSERT INTO `rors` VALUES
(1, 'https://ror.org/04ttjf776', 'en', 1, 'https://ror.org/04ttjf776 RMIT University'),
(2, 'https://ror.org/023q4bk22', 'en', 1, 'https://ror.org/023q4bk22 Central Queensland University'),
(3, 'https://ror.org/006jxzx88', 'en', 1, 'https://ror.org/006jxzx88 Bond University'),
(4, 'https://ror.org/00wfvh315', 'en', 1, 'https://ror.org/00wfvh315 Charles Sturt University'),
(5, 'https://ror.org/00nx6aa03', 'en', 1, 'https://ror.org/00nx6aa03 Mater Research'),
(6, 'https://ror.org/046fa4y88', 'en', 1, 'https://ror.org/046fa4y88 The Heart Research Institute'),
(7, 'https://ror.org/02d439m40', 'en', 1, 'https://ror.org/02d439m40 University Mental Health Research Institute'),
(8, 'https://ror.org/05m7zw681', 'no_lang_code', 1, 'https://ror.org/05m7zw681 Rio Tinto (United Kingdom)'),
(9, 'https://ror.org/03awtex73', 'no_lang_code', 1, 'https://ror.org/03awtex73 Arup Group (United States)'),
(10, 'https://ror.org/00kv9pj15', 'no_lang_code', 1, 'https://ror.org/00kv9pj15 BT Group (United Kingdom)'),
(11, 'https://ror.org/03mjtdk61', 'en', 1, 'https://ror.org/03mjtdk61 Mater Health Services'),
(12, 'https://ror.org/04yyp8h20', 'no_lang_code', 1, 'https://ror.org/04yyp8h20 Pilkington (United Kingdom)'),
(13, 'https://ror.org/022rkxt86', 'no_lang_code', 1, 'https://ror.org/022rkxt86 Trojan Technologies (Canada)'),
(14, 'https://ror.org/01wddqe20', 'en', 1, 'https://ror.org/01wddqe20 The Alfred Hospital'),
(15, 'https://ror.org/037mpqg03', 'no_lang_code', 1, 'https://ror.org/037mpqg03 Xstrata (United Kingdom)'),
(16, 'https://ror.org/050b31k83', 'en', 1, 'https://ror.org/050b31k83 Hunter New England Local Health District'),
(17, 'https://ror.org/01q8f6705', 'no_lang_code', 1, 'https://ror.org/01q8f6705 BASF (Germany)'),
(18, 'https://ror.org/03ebg0v16', 'en', 1, 'https://ror.org/03ebg0v16 Boys Town'),
(19, 'https://ror.org/041b40q78', 'no_lang_code', 1, 'https://ror.org/041b40q78 Olympus (Australia)'),
(20, 'https://ror.org/04jc0r179', 'no_lang_code', 1, 'https://ror.org/04jc0r179 UK Coal'),
(21, 'https://ror.org/03e8s1d88', 'en', 1, 'https://ror.org/03e8s1d88 Potsdam Institute for Climate Impact Research Potsdam-Institut für Klimafolgenforschung'),
(22, 'https://ror.org/03fs4aq04', 'en', 1, 'https://ror.org/03fs4aq04 Institute of Fundamental Technological Research Instytut Podstawowych Problemów Techniki'),
(23, 'https://ror.org/04zgvy449', 'no_lang_code', 1, 'https://ror.org/04zgvy449 PSA Peugeot Citroƫn (France)'),
(24, 'https://ror.org/02vwnat91', 'en', 1, 'https://ror.org/02vwnat91 London South Bank University'),
(25, 'https://ror.org/020268t49', 'de', 1, 'https://ror.org/020268t49 Papiertechnische Stiftung'),
(26, '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'),
(27, 'https://ror.org/037m6e306', 'no_lang_code', 1, 'https://ror.org/037m6e306 Pera (United Kingdom)'),
(28, 'https://ror.org/04v98kq37', 'no_lang_code', 1, 'https://ror.org/04v98kq37 Renault (France)'),
(29, 'https://ror.org/00f1xkb20', 'no_lang_code', 1, 'https://ror.org/00f1xkb20 Robosoft (France)'),
(30, 'https://ror.org/017ph0934', 'en', 1, 'https://ror.org/017ph0934 Ulusal ve Uluslararası Ekonomi Üniversitesi University of National and World Economy Университет за национално Šø световно стопанство'),
(31, 'https://ror.org/01ypwfg63', 'no_lang_code', 1, 'https://ror.org/01ypwfg63 Ecofys (Netherlands)'),
(32, 'https://ror.org/008x57b05', 'en', 1, 'https://ror.org/008x57b05 Universiteit Antwerpen University of Antwerp UniversitƤt Antwerpen UniversitƩ d''Anvers'),
(33, 'https://ror.org/02550n020', 'en', 1, 'https://ror.org/02550n020 European Synchrotron Radiation Facility'),
(34, 'https://ror.org/053bqv655', 'no_lang_code', 1, 'https://ror.org/053bqv655 STMicroelectronics (Italy)'),
(35, 'https://ror.org/01nn35n25', 'en', 1, 'https://ror.org/01nn35n25 Institute of Accelerating Systems and Applications Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ€Ī¹Ļ„Ī±Ļ‡Ļ…Ī½Ļ„Ī¹ĪŗĻŽĪ½ Ī£Ļ…ĻƒĻ„Ī·Ī¼Ī¬Ļ„Ļ‰Ī½ και Ī•Ļ†Ī±ĻĪ¼ĪæĪ³ĻŽĪ½'),
(36, 'https://ror.org/04zsytt76', 'en', 1, 'https://ror.org/04zsytt76 Wise & Munro Learning Research'),
(37, 'https://ror.org/031bsb921', 'en', 1, 'https://ror.org/031bsb921 University of Mannheim UniversitƤt Mannheim'),
(38, 'https://ror.org/01t0n3b84', 'it', 1, 'https://ror.org/01t0n3b84 Consorzio Pisa Ricerche'),
(39, 'https://ror.org/034fmtr90', 'en', 1, 'https://ror.org/034fmtr90 Empirica. Gesellschaft für Kommunikations- und Technologieforschung empirica - Communication and Technology Research'),
(40, 'https://ror.org/05b6ypc36', 'no_lang_code', 1, 'https://ror.org/05b6ypc36 Volvo (Sweden) Volvokoncernen'),
(41, 'https://ror.org/04d4dxm04', 'fr', 1, 'https://ror.org/04d4dxm04 SociƩtƩ de MathƩmatiques AppliquƩes et de Sciences Humaines'),
(42, '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)'),
(43, 'https://ror.org/05re2b915', 'en', 1, 'https://ror.org/05re2b915 European Road Transport Telematics Implementation Co-Ordination'),
(44, 'https://ror.org/00qt5ka73', 'no_lang_code', 1, 'https://ror.org/00qt5ka73 Arttic (France)'),
(45, 'https://ror.org/035gy9016', 'no_lang_code', 1, 'https://ror.org/035gy9016 Tecnatom (Spain)'),
(46, 'https://ror.org/04vfyfx73', 'no_lang_code', 1, 'https://ror.org/04vfyfx73 Teer Coatings (United Kingdom)'),
(47, 'https://ror.org/033vryh36', 'es', 1, 'https://ror.org/033vryh36 Tekniker'),
(48, 'https://ror.org/042e7c302', 'fr', 1, 'https://ror.org/042e7c302 Multitel'),
(49, 'https://ror.org/02vbxt202', 'no_lang_code', 1, 'https://ror.org/02vbxt202 ThyssenKrupp (Germany)'),
(50, 'https://ror.org/01c74sd89', 'no_lang_code', 1, 'https://ror.org/01c74sd89 STMicroelectronics (France)'),
(51, 'https://ror.org/02q8h2f47', 'fr', 1, 'https://ror.org/02q8h2f47 Institut Technologique ForĆŖt Cellulose Bois-Construction Ameublement'),
(52, 'https://ror.org/030wyr187', 'en', 1, 'https://ror.org/030wyr187 Finnish Institute of Occupational Health'),
(53, 'https://ror.org/023z51242', 'en', 1, 'https://ror.org/023z51242 Enterprise Ireland'),
(54, 'https://ror.org/0261g6j35', 'en', 1, 'https://ror.org/0261g6j35 Chaudhary Charan Singh Haryana Agricultural University ą¤šą„Œą¤§ą¤°ą„€ चरण सिंह हरियाणा ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ சௌதரி ą®šą®°ą®£ąÆ ą®šą®æą®™ąÆ அரியானா ą®µąÆ‡ą®³ą®¾ą®£ąÆą®®ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(55, 'https://ror.org/02kta5139', 'es', 1, 'https://ror.org/02kta5139 Metropolitan Autonomous University Universidad Autónoma Metropolitana'),
(56, 'https://ror.org/00cb9w016', 'en', 1, 'https://ror.org/00cb9w016 Ain Shams University Ų¬Ų§Ł…Ų¹Ų© Ų¹ŁŠŁ† Ų“Ł…Ų³'),
(57, 'https://ror.org/01jm19r53', 'no_lang_code', 1, 'https://ror.org/01jm19r53 TuTech Innovation (Germany)'),
(58, 'https://ror.org/006rhxn50', 'no_lang_code', 1, 'https://ror.org/006rhxn50 FORCE Technology (Denmark)'),
(59, 'https://ror.org/00bxsm637', 'no_lang_code', 1, 'https://ror.org/00bxsm637 MTU Aero Engines (Germany)'),
(60, 'https://ror.org/05564r514', 'en', 1, 'https://ror.org/05564r514 Association of European Renewable Energy Research Centres'),
(61, 'https://ror.org/02hbhxa68', 'no_lang_code', 1, 'https://ror.org/02hbhxa68 Airbus (United Kingdom)'),
(62, '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'),
(63, 'https://ror.org/003vfy751', 'fr', 1, 'https://ror.org/003vfy751 University of Burundi UniversitƩ du Burundi'),
(64, 'https://ror.org/03q21mh05', 'en', 1, 'https://ror.org/03q21mh05 Cairo University UniversitĆ© du Caire Ų¬Ų§Ł…Ų¹Ų© القاهرة'),
(65, 'https://ror.org/058s98e36', 'en', 1, 'https://ror.org/058s98e36 Promotion of Operational Links With Integrated Services'),
(66, 'https://ror.org/04je6yw13', 'en', 1, 'https://ror.org/04je6yw13 Cheikh Anta Diop University UniversitƩ Cheikh Anta Diop'),
(67, 'https://ror.org/05n8n9378', 'en', 1, 'https://ror.org/05n8n9378 Eduardo Mondlane University Universidade Eduardo Mondlane'),
(68, 'https://ror.org/0080acb59', 'en', 1, 'https://ror.org/0080acb59 John Radcliffe Hospital'),
(69, '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'),
(70, 'https://ror.org/049bdss47', 'en', 1, 'https://ror.org/049bdss47 Joanneum Research Joanneum Research Forschungsgesellschaft mbH'),
(71, 'https://ror.org/03bqt8z64', 'no_lang_code', 1, 'https://ror.org/03bqt8z64 National Institute of Technology'),
(72, 'https://ror.org/050y0ba80', 'no_lang_code', 1, 'https://ror.org/050y0ba80 D''Appolonia (Italy)'),
(73, 'https://ror.org/02gpdzc63', 'no_lang_code', 1, 'https://ror.org/02gpdzc63 Labor (Italy)'),
(74, 'https://ror.org/00a0jsq62', 'en', 1, 'https://ror.org/00a0jsq62 London School of Hygiene & Tropical Medicine'),
(75, 'https://ror.org/050w2g362', 'no_lang_code', 1, 'https://ror.org/050w2g362 Inovamais'),
(76, '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'),
(77, 'https://ror.org/04gqx4x78', 'it', 1, 'https://ror.org/04gqx4x78 Campus Bio-Medico University UniversitĆ  Campus Bio-Medico'),
(78, 'https://ror.org/023bq8521', 'en', 1, 'https://ror.org/023bq8521 Saint Petersburg State Electrotechnical University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(79, 'https://ror.org/0542q3127', 'en', 1, 'https://ror.org/0542q3127 Lviv Polytechnic National University Politechnika Lwowska ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š›ŃŒŠ²Š¾Š²ŃŠŗŠ°Ń политехника» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° політехніка»'),
(80, 'https://ror.org/00a99v816', 'no_lang_code', 1, 'https://ror.org/00a99v816 GABO:mi'),
(81, 'https://ror.org/052fdp564', 'no_lang_code', 1, 'https://ror.org/052fdp564 Enel (Italy)'),
(82, 'https://ror.org/04aaeds92', 'no_lang_code', 1, 'https://ror.org/04aaeds92 Israel Aerospace Industries (Israel)'),
(83, 'https://ror.org/04vtx5s55', 'en', 1, 'https://ror.org/04vtx5s55 University of Malawi'),
(84, 'https://ror.org/02436cs38', 'no_lang_code', 1, 'https://ror.org/02436cs38 Unilever (Netherlands)'),
(85, 'https://ror.org/04s4j9e43', 'en', 1, 'https://ror.org/04s4j9e43 Omar Bongo University UniversitƩ Omar Bongo'),
(86, 'https://ror.org/03tbh6y23', 'en', 1, 'https://ror.org/03tbh6y23 University of the Philippines Diliman'),
(87, 'https://ror.org/030s54078', 'en', 1, 'https://ror.org/030s54078 University of the Philippines Los BaƱos'),
(88, 'https://ror.org/02ahxbh87', 'en', 1, 'https://ror.org/02ahxbh87 Biomedical Primate Research Centre'),
(89, 'https://ror.org/038j9sn30', 'en', 1, 'https://ror.org/038j9sn30 Shanghai Institute of Hypertension'),
(90, 'https://ror.org/05rw9t746', 'en', 1, 'https://ror.org/05rw9t746 IBM Research - Haifa'),
(91, 'https://ror.org/04xraxn18', 'en', 1, 'https://ror.org/04xraxn18 Fondazione Telethon Telethon Foundation'),
(92, 'https://ror.org/0046mja08', 'en', 1, 'https://ror.org/0046mja08 An-Najah National University Ų¬Ų§Ł…Ų¹Ų© النجاح Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(93, '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'),
(94, 'https://ror.org/05nv2rz39', 'en', 1, 'https://ror.org/05nv2rz39 University of Eswatini'),
(95, 'https://ror.org/02jqtg033', 'en', 1, 'https://ror.org/02jqtg033 Institute for Energy Technology'),
(96, 'https://ror.org/01jk32r56', 'no_lang_code', 1, 'https://ror.org/01jk32r56 Sirehna'),
(97, 'https://ror.org/00wc07928', 'en', 1, 'https://ror.org/00wc07928 University of LomƩ UniversitƩ de LomƩ'),
(98, 'https://ror.org/001b4cb05', 'en', 1, 'https://ror.org/001b4cb05 National University of Trujillo Universidad Nacional de Trujillo'),
(99, 'https://ror.org/00nxna028', 'en', 1, 'https://ror.org/00nxna028 HR Wallingford'),
(100, 'https://ror.org/04ycpbx82', 'en', 1, 'https://ror.org/04ycpbx82 Prifysgol Westminster University of Westminster'),
(101, 'https://ror.org/03fkc8c64', 'en', 1, 'https://ror.org/03fkc8c64 University of the West Indies'),
(102, 'https://ror.org/02qnsw591', 'en', 1, 'https://ror.org/02qnsw591 Centre for European Economic Research Zentrum für Europäische Wirtschaftsforschung'),
(103, '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'),
(104, 'https://ror.org/01nhzsw25', 'fr', 1, 'https://ror.org/01nhzsw25 Hydro-QuƩbec'),
(105, 'https://ror.org/04838xh83', 'es', 1, 'https://ror.org/04838xh83 Empresarios Agrupados'),
(106, 'https://ror.org/024xs2z82', 'no_lang_code', 1, 'https://ror.org/024xs2z82 ArcelorMittal (France)'),
(107, 'https://ror.org/00tnppw48', 'en', 1, 'https://ror.org/00tnppw48 Adran yr Amgylchedd, Bwyd a Materion Gwledig Department for Environment Food and Rural Affairs'),
(108, 'https://ror.org/01je6q363', 'fr', 1, 'https://ror.org/01je6q363 Centre Technique Industriel De La Construction Metallique'),
(109, 'https://ror.org/02fv8hj62', 'es', 1, 'https://ror.org/02fv8hj62 Tecnalia'),
(110, 'https://ror.org/05m5z4f19', 'en', 1, 'https://ror.org/05m5z4f19 Steel Construction Institute'),
(111, 'https://ror.org/04kgqpx54', 'no_lang_code', 1, 'https://ror.org/04kgqpx54 Voestalpine (Austria)'),
(112, 'https://ror.org/042bdnm87', 'no_lang_code', 1, 'https://ror.org/042bdnm87 Svenskt StƄl (Finland) Swedish Steel'),
(113, 'https://ror.org/03bj8zh59', 'no_lang_code', 1, 'https://ror.org/03bj8zh59 Tata Steel (United Kingdom)'),
(114, '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'),
(115, 'https://ror.org/047vb2x72', 'no_lang_code', 1, 'https://ror.org/047vb2x72 MATIMOP'),
(116, 'https://ror.org/02npppw10', 'no_lang_code', 1, 'https://ror.org/02npppw10 BMT Group (United Kingdom)'),
(117, 'https://ror.org/00jzexr10', 'en', 1, 'https://ror.org/00jzexr10 Astrakhan State Technical University Астраханский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(118, 'https://ror.org/00yyp2526', 'en', 1, 'https://ror.org/00yyp2526 Silsoe Research Institute'),
(119, 'https://ror.org/0287e5797', 'no_lang_code', 1, 'https://ror.org/0287e5797 Siemens (United Kingdom)'),
(120, 'https://ror.org/03dke3h47', 'en', 1, 'https://ror.org/03dke3h47 Association of Science-Technology Centers'),
(121, 'https://ror.org/04mqy3p58', 'pt', 1, 'https://ror.org/04mqy3p58 Instituto de Engenharia de Sistemas e Computadores Investigação e Desenvolvimento'),
(122, 'https://ror.org/006k2kk72', 'en', 1, 'https://ror.org/006k2kk72 Düsseldorf University Hospital Universitätsklinikum Düsseldorf'),
(123, 'https://ror.org/055zmrh94', 'en', 1, 'https://ror.org/055zmrh94 John Innes Centre'),
(124, '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'),
(125, 'https://ror.org/02tc32w13', 'en', 1, 'https://ror.org/02tc32w13 Cumann Ollscoileanna Ɖireann Irish Universities Association'),
(126, 'https://ror.org/02pagex14', 'en', 1, 'https://ror.org/02pagex14 Archimedes Foundation'),
(127, 'https://ror.org/01xnwqx93', 'en', 1, 'https://ror.org/01xnwqx93 University Hospital Bonn UniversitƤtsklinikum Bonn'),
(128, 'https://ror.org/043rjaw23', 'no_lang_code', 1, 'https://ror.org/043rjaw23 Profactor (Austria)'),
(129, 'https://ror.org/02qsqdv65', 'no_lang_code', 1, 'https://ror.org/02qsqdv65 Alstom (United Kingdom)'),
(130, 'https://ror.org/023znxa73', 'en', 1, 'https://ror.org/023znxa73 St Petersburg University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(131, 'https://ror.org/02e8hzf44', 'en', 1, 'https://ror.org/02e8hzf44 Helsinki University Hospital'),
(132, 'https://ror.org/02s6w8y22', 'en', 1, 'https://ror.org/02s6w8y22 University of Bamako UniversitƩ de Bamako'),
(133, 'https://ror.org/01h89k731', 'no_lang_code', 1, 'https://ror.org/01h89k731 TXT e-solutions (Italy)'),
(134, 'https://ror.org/05ryv0s68', 'en', 1, 'https://ror.org/05ryv0s68 Euresearch Association'),
(135, 'https://ror.org/05sep9w93', 'es', 1, 'https://ror.org/05sep9w93 Instituto Tecnológico de Aragón'),
(136, 'https://ror.org/022em3k58', 'en', 1, 'https://ror.org/022em3k58 De Duve Instituut L''Institut de Duve de Duve Institute'),
(137, 'https://ror.org/0284gmm72', 'fr', 1, 'https://ror.org/0284gmm72 CitƩ Internationale Universitaire de Paris'),
(138, 'https://ror.org/04esata81', 'en', 1, 'https://ror.org/04esata81 European Science Foundation'),
(139, 'https://ror.org/02cqgeg62', 'no_lang_code', 1, 'https://ror.org/02cqgeg62 INRA Transfert (France)'),
(140, 'https://ror.org/03bvx5w91', 'it', 1, 'https://ror.org/03bvx5w91 Fondazione Eni Enrico Mattei'),
(141, 'https://ror.org/0204pdj19', 'en', 1, 'https://ror.org/0204pdj19 Institute For European Environmental Policy'),
(142, 'https://ror.org/027tvqf96', 'no_lang_code', 1, 'https://ror.org/027tvqf96 CAS Software (Germany)'),
(143, 'https://ror.org/04qcftj32', 'en', 1, 'https://ror.org/04qcftj32 UK Health and Environment Research Institute'),
(144, 'https://ror.org/01cqx0m58', 'en', 1, 'https://ror.org/01cqx0m58 Centro Italiano Ricerche Aerospaziali Italian Aerospace Research Centre'),
(145, 'https://ror.org/04grcvp20', 'no_lang_code', 1, 'https://ror.org/04grcvp20 Ingenieria Y Economia Del Transporte'),
(146, 'https://ror.org/04pd9b824', 'no_lang_code', 1, 'https://ror.org/04pd9b824 Doosan (United Kingdom)'),
(147, 'https://ror.org/05jeza980', 'no_lang_code', 1, 'https://ror.org/05jeza980 Rolls-Royce (Germany)'),
(148, 'https://ror.org/010jx2260', 'en', 1, 'https://ror.org/010jx2260 National Institute of Agricultural Botany'),
(149, 'https://ror.org/01cqmqj90', 'en', 1, 'https://ror.org/01cqmqj90 Hadassah Medical Center Ł…Ų±ŁƒŲ² هداسا Ų§Ł„Ų·ŲØŁŠ'),
(150, 'https://ror.org/02ejsvn42', 'en', 1, 'https://ror.org/02ejsvn42 ComitƩ EuropƩen de Normalisation European Committee for Standardization'),
(151, 'https://ror.org/00582g326', 'en', 1, 'https://ror.org/00582g326 Indian Institute of Technology Roorkee ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą„ą¤”ą¤¼ą¤•ą„€ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®°ąÆ‚ą®°ąÆą®•ąÆą®•ą®æ ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°°ą±‚ą°°ą±ą°•ą±€ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“±ąµ‚ąµ¼ą“•ąµą“•ą“æ'),
(152, 'https://ror.org/03dsc8d33', 'no_lang_code', 1, 'https://ror.org/03dsc8d33 Systems, Applications & Products in Data Processing (Germany)'),
(153, 'https://ror.org/01nthrq77', 'es', 1, 'https://ror.org/01nthrq77 Instituto Tecnologico Del Embalaje, Transporte Y Logistica'),
(154, 'https://ror.org/03vnshb93', 'en', 1, 'https://ror.org/03vnshb93 Transport for London'),
(155, 'https://ror.org/0108e1t34', 'en', 1, 'https://ror.org/0108e1t34 Applied Research and Communications Fund'),
(156, 'https://ror.org/05efsr055', 'en', 1, 'https://ror.org/05efsr055 Estonian Interuniversity Population Research Centre'),
(157, 'https://ror.org/00knyd990', 'en', 1, 'https://ror.org/00knyd990 UK Intelligent Systems Research Institute'),
(158, 'https://ror.org/05jxj5k51', 'no_lang_code', 1, 'https://ror.org/05jxj5k51 Eesti Innovatsiooni Instituut'),
(159, 'https://ror.org/02s0xcm55', 'it', 1, 'https://ror.org/02s0xcm55 Agency for the Promotion of European Research Agenzia per la Promozione della Ricerca Europea'),
(160, 'https://ror.org/04f4syj68', 'it', 1, 'https://ror.org/04f4syj68 Polo Universitario CittĆ  di Prato'),
(161, 'https://ror.org/02wdp5k87', 'no_lang_code', 1, 'https://ror.org/02wdp5k87 Keskuslaboratorio'),
(162, 'https://ror.org/04cnfrn26', 'en', 1, 'https://ror.org/04cnfrn26 University of the Arts London'),
(163, 'https://ror.org/03px4ez74', 'en', 1, 'https://ror.org/03px4ez74 Zoological Society of London'),
(164, 'https://ror.org/05rtvan68', 'en', 1, 'https://ror.org/05rtvan68 Royal University of Phnom Penh įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įž—įŸ’įž“įŸ†įž–įŸįž‰'),
(165, 'https://ror.org/019621n74', 'en', 1, 'https://ror.org/019621n74 Public Health Institute'),
(166, 'https://ror.org/04v403p80', 'en', 1, 'https://ror.org/04v403p80 Consorzio Interuniversitario Risonanze Magnetiche di Metallo Proteine Interuniversity Consortium for Magnetic Resonance'),
(167, 'https://ror.org/02m11x738', 'en', 1, 'https://ror.org/02m11x738 Furtwangen University Hochschule Furtwangen'),
(168, 'https://ror.org/00r2gde63', 'en', 1, 'https://ror.org/00r2gde63 Ascamm Technologic Center Centro Tecnológico Ascamm'),
(169, 'https://ror.org/033t8gt11', 'en', 1, 'https://ror.org/033t8gt11 University of Forestry Лесотехнически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(170, 'https://ror.org/03zrwm897', 'en', 1, 'https://ror.org/03zrwm897 Technical University of Varna Технически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Варна'),
(171, 'https://ror.org/00c051916', 'fr', 1, 'https://ror.org/00c051916 Centre Technique des Industries MƩcaniques Technical Centre for Mechanical Industry'),
(172, 'https://ror.org/0238gz740', 'en', 1, 'https://ror.org/0238gz740 Institute for Theoretical and Experimental Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ физики'),
(173, 'https://ror.org/051qv3667', 'no_lang_code', 1, 'https://ror.org/051qv3667 Applus+ IDIADA (Spain) Institut d''Investigació Aplicada de l''Automòbil'),
(174, 'https://ror.org/001c9fg13', 'ro', 1, 'https://ror.org/001c9fg13 Unitatea Executiva Pentru Finantarea Invatamantului Superior Si A Cercetarii Stiintifice Universitare'),
(175, 'https://ror.org/006c1jc70', 'en', 1, 'https://ror.org/006c1jc70 UK Material Technology Research Institute'),
(176, 'https://ror.org/00fbafs03', 'no_lang_code', 1, 'https://ror.org/00fbafs03 MBN Nanomaterialia (Italy)'),
(177, 'https://ror.org/04evcxq23', 'it', 1, 'https://ror.org/04evcxq23 Consorzio Nazionale Interuniversitario per i Trasporti e la Logistica'),
(178, 'https://ror.org/026452768', 'no_lang_code', 1, 'https://ror.org/026452768 PTV Group (Germany)'),
(179, 'https://ror.org/04svdmv30', 'fr', 1, 'https://ror.org/04svdmv30 The Association of the European Rail Industry, Union des Industries Ferroviaires EuropƩennes'),
(180, 'https://ror.org/000a2sx58', 'en', 1, 'https://ror.org/000a2sx58 Centre for European Policy Studies'),
(181, 'https://ror.org/04ejkkg63', 'en', 1, 'https://ror.org/04ejkkg63 Ecologic Institute'),
(182, 'https://ror.org/04hp86393', 'no_lang_code', 1, 'https://ror.org/04hp86393 National Grid (United Kingdom)'),
(183, 'https://ror.org/00ae33288', 'en', 1, 'https://ror.org/00ae33288 London Metropolitan University'),
(184, 'https://ror.org/017vgxg86', 'no_lang_code', 1, 'https://ror.org/017vgxg86 Ford (Germany)'),
(185, 'https://ror.org/05s7s9x02', 'no_lang_code', 1, 'https://ror.org/05s7s9x02 Lucideon (United Kingdom)'),
(186, 'https://ror.org/00mbaq869', 'en', 1, 'https://ror.org/00mbaq869 Timescape Surveys'),
(187, 'https://ror.org/05k87vq12', 'no_lang_code', 1, 'https://ror.org/05k87vq12 Microsoft Research (United Kingdom)'),
(188, 'https://ror.org/05tkvpg69', 'es', 1, 'https://ror.org/05tkvpg69 Centro Agronomico Tropical de Investigacion y Ensenanza Catie'),
(189, 'https://ror.org/013q2cj53', 'en', 1, 'https://ror.org/013q2cj53 Universeum'),
(190, 'https://ror.org/05g4mtv59', 'no_lang_code', 1, 'https://ror.org/05g4mtv59 Hewlett-Packard (United Kingdom)'),
(191, 'https://ror.org/026vvkz19', 'en', 1, 'https://ror.org/026vvkz19 National Interuniversity Consortium for the Physical Sciences of Matter'),
(192, 'https://ror.org/006kce638', 'es', 1, 'https://ror.org/006kce638 Instituto Tecnológico del Calzado y Conexas'),
(193, 'https://ror.org/051a97h21', 'no_lang_code', 1, 'https://ror.org/051a97h21 National Nuclear Corporation (United Kingdom)'),
(194, 'https://ror.org/01yqewm58', 'en', 1, 'https://ror.org/01yqewm58 Kuban State University Кубанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(195, 'https://ror.org/05b45bk66', 'en', 1, 'https://ror.org/05b45bk66 Regional Environmental Center for Central and Eastern Europe'),
(196, 'https://ror.org/00gtcbp88', 'pt', 1, 'https://ror.org/00gtcbp88 Universidade de Pernambuco University of Pernambuco'),
(197, 'https://ror.org/007b9cn27', 'en', 1, 'https://ror.org/007b9cn27 National Polytechnic University of Armenia Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ ÕŗÕøÕ¬Õ«ÕæÕ„Õ­Õ¶Õ«ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(198, 'https://ror.org/027b0sp52', 'no_lang_code', 1, 'https://ror.org/027b0sp52 Kema International (Netherlands)'),
(199, 'https://ror.org/01ry6tw68', 'no_lang_code', 1, 'https://ror.org/01ry6tw68 Balance Technology Consulting'),
(200, 'https://ror.org/01818mf51', 'no_lang_code', 1, 'https://ror.org/01818mf51 Messerschmitt-Bƶlkow-Blohm (Germany)'),
(201, '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'),
(202, 'https://ror.org/02dgmb809', 'no_lang_code', 1, 'https://ror.org/02dgmb809 Numerical Mechanics Applications International (Belgium)'),
(203, 'https://ror.org/02jk5qe80', 'en', 1, 'https://ror.org/02jk5qe80 Aalborg Universitetshospital Aalborg University Hospital'),
(204, 'https://ror.org/01m484026', 'no_lang_code', 1, 'https://ror.org/01m484026 Smithers Pira'),
(205, 'https://ror.org/00fpw9a48', 'no_lang_code', 1, 'https://ror.org/00fpw9a48 Hamburg Ship Model Basin Hamburgische Schiffbau-Versuchsanstalt (Germany)'),
(206, '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 Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ меГицины Šø фармакологии имени ŠŠøŠŗŠ¾Š»Š°Ń Š¢ŠµŃŃ‚ŠµŠ¼ŠøŃ†ŃŠ½Ńƒ'),
(207, 'https://ror.org/005b2mc68', 'no_lang_code', 1, 'https://ror.org/005b2mc68 NEC (United Kingdom)'),
(208, 'https://ror.org/0416m3683', 'de', 1, 'https://ror.org/0416m3683 Institut für Rundfunktechnik'),
(209, 'https://ror.org/02hm3sf87', 'no_lang_code', 1, 'https://ror.org/02hm3sf87 European Institute For Research and Strategic Studies In Telecommunications'),
(210, 'https://ror.org/00m8prc86', 'no_lang_code', 1, 'https://ror.org/00m8prc86 Deutsche Telekom (Germany) German Telecom'),
(211, 'https://ror.org/0167c0661', 'no_lang_code', 1, 'https://ror.org/0167c0661 Exodus (Greece)'),
(212, 'https://ror.org/03v8v5y65', 'it', 1, 'https://ror.org/03v8v5y65 Consorzio Interuniversitario Nazionale per l''Informatica National Interuniversity Consortium for Informatics'),
(213, 'https://ror.org/05bxb3784', 'no_lang_code', 1, 'https://ror.org/05bxb3784 Academia Sinica 中央研究院'),
(214, 'https://ror.org/00pbh0a34', 'en', 1, 'https://ror.org/00pbh0a34 British Museum Yr Amgueddfa Brydeinig'),
(215, 'https://ror.org/01nr6fy72', 'en', 1, 'https://ror.org/01nr6fy72 Ljubljana University Medical Centre'),
(216, 'https://ror.org/01g246z62', 'en', 1, 'https://ror.org/01g246z62 International Union of Railways Union internationale des chemins de fer'),
(217, 'https://ror.org/02fmkev06', 'en', 1, 'https://ror.org/02fmkev06 Building Research Establishment'),
(218, 'https://ror.org/04y28m257', 'no_lang_code', 1, 'https://ror.org/04y28m257 SOLINET'),
(219, 'https://ror.org/02yfanq70', 'en', 1, 'https://ror.org/02yfanq70 International Vaccine Institute'),
(220, 'https://ror.org/01bw9xe44', 'en', 1, 'https://ror.org/01bw9xe44 Academy of Georgofili Accademia dei Georgofili'),
(221, 'https://ror.org/01rb2ev69', 'no_lang_code', 1, 'https://ror.org/01rb2ev69 Inspiralia'),
(222, 'https://ror.org/020k76687', 'no_lang_code', 1, 'https://ror.org/020k76687 Autonomous Operator of Parisian Transports RƩgie Autonome des Transports Parisiens (France)'),
(223, 'https://ror.org/02yvd4j36', 'en', 1, 'https://ror.org/02yvd4j36 Bundesamt für Strahlenschutz Federal Office for Radiation Protection'),
(224, 'https://ror.org/05kcb8115', 'it', 1, 'https://ror.org/05kcb8115 Consorzio Interuniversitario Per L''Ottimizzazione E La Ricerca Operativa'),
(225, 'https://ror.org/02x91aj62', 'en', 1, 'https://ror.org/02x91aj62 Peter the Great St. Petersburg Polytechnic University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŸŠµŃ‚Ń€Š° Великого'),
(226, 'https://ror.org/0306jgh11', 'en', 1, 'https://ror.org/0306jgh11 Association of Commonwealth Universities'),
(227, 'https://ror.org/02m82p074', 'no_lang_code', 1, 'https://ror.org/02m82p074 Suez Canal University UniversitĆ© du Canal de Suez Ų¬Ų§Ł…Ų¹Ų© قناة Ų§Ł„Ų³ŁˆŁŠŲ³'),
(228, 'https://ror.org/04t6r6d34', 'en', 1, 'https://ror.org/04t6r6d34 International Space University'),
(229, 'https://ror.org/04d5k5771', 'en', 1, 'https://ror.org/04d5k5771 European Institute for Energy Research Europäisches Institut für Energieforschung'),
(230, 'https://ror.org/00ctk8b26', 'en', 1, 'https://ror.org/00ctk8b26 Bristol City Council'),
(231, 'https://ror.org/00f2z7n96', 'en', 1, 'https://ror.org/00f2z7n96 RAND Corporation'),
(232, 'https://ror.org/05ne3s142', 'en', 1, 'https://ror.org/05ne3s142 Saint Petersburg Academic University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ акаГемический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ — Š½Š°ŃƒŃ‡Š½Š¾-Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ центр нанотехнологий'),
(233, 'https://ror.org/05gnna589', 'it', 1, 'https://ror.org/05gnna589 Consorzio Nazionale Interuniversitario per la Nanoelettronica Interuniversity Consortium for Nanoelectronics'),
(234, 'https://ror.org/043071f54', 'en', 1, 'https://ror.org/043071f54 University of Roehampton'),
(235, 'https://ror.org/02kzxd152', 'en', 1, 'https://ror.org/02kzxd152 Medical University Plovdiv Medizinischen UniversitƤt Plovdiv ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - ПловГив'),
(236, 'https://ror.org/03nscjy42', 'no_lang_code', 1, 'https://ror.org/03nscjy42 General Electric (Denmark)'),
(237, 'https://ror.org/04rsexf17', 'no_lang_code', 1, 'https://ror.org/04rsexf17 Stemcell Technologies'),
(238, 'https://ror.org/00944ve71', 'en', 1, 'https://ror.org/00944ve71 National Central University'),
(239, 'https://ror.org/015803449', 'en', 1, 'https://ror.org/015803449 South London and Maudsley NHS Foundation Trust'),
(240, 'https://ror.org/0441cbj57', 'en', 1, 'https://ror.org/0441cbj57 National University of Life and Environmental Sciences of Ukraine ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±ŠøŠ¾Ń€ŠµŃŃƒŃ€ŃŠ¾Š² Šø ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±Ń–Š¾Ń€ŠµŃŃƒŃ€ŃŃ–Š² і ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń України'),
(241, 'https://ror.org/00azwtc53', 'no_lang_code', 1, 'https://ror.org/00azwtc53 Swedish Nuclear Fuel and Waste Management (Sweden)'),
(242, 'https://ror.org/050j2vm64', 'en', 1, 'https://ror.org/050j2vm64 Bangalore University UniversitĆ© de bangalore ą¤¬ą¤‚ą¤—ą¤²ą„Œą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤¬ą¤‚ą¤—ą¤³ą„ą¤°ą„‚ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą®ŖąÆ†ą®™ąÆą®•ą®³ąÆ‚ą®°ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ బెంగుళూరు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ಬೆಂಗಳೂರು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(243, 'https://ror.org/00zdnkx70', 'en', 1, 'https://ror.org/00zdnkx70 National Tsing Hua University'),
(244, 'https://ror.org/02e16g702', 'en', 1, 'https://ror.org/02e16g702 Hokkaido University åŒ—ęµ·é“å¤§å­¦'),
(245, 'https://ror.org/04g3dn724', 'en', 1, 'https://ror.org/04g3dn724 Massachusetts Eye and Ear Infirmary'),
(246, 'https://ror.org/03mmk1j33', 'no_lang_code', 1, 'https://ror.org/03mmk1j33 Blackberry (Canada)'),
(247, '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'),
(248, 'https://ror.org/03645mz20', 'nl', 1, 'https://ror.org/03645mz20 Stichting Technasium'),
(249, 'https://ror.org/05qk3dq04', 'en', 1, 'https://ror.org/05qk3dq04 Malta Council for Science and Technology'),
(250, 'https://ror.org/02gar4w80', 'en', 1, 'https://ror.org/02gar4w80 University Library in Bratislava UniverzitnÔ knižnica v Bratislave'),
(251, 'https://ror.org/02d0kps43', 'de', 1, 'https://ror.org/02d0kps43 UMIT - Private Universität für Gesundheitswissenschaften, Medizinische Informatik und Technik'),
(252, 'https://ror.org/05dkqa017', 'en', 1, 'https://ror.org/05dkqa017 Hochschule Kaiserslautern University of Applied Sciences Kaiserslautern'),
(253, 'https://ror.org/01qt0gj86', 'lt', 1, 'https://ror.org/01qt0gj86 Lietuvos Bioetikos Komitetas Lithuanian Bioethics Committee'),
(254, 'https://ror.org/01msdga41', 'no_lang_code', 1, 'https://ror.org/01msdga41 Dornier Flugzeugwerke (Germany)'),
(255, 'https://ror.org/02xyqwh78', 'no_lang_code', 1, 'https://ror.org/02xyqwh78 FEV (Germany)'),
(256, 'https://ror.org/040d1yx23', 'no_lang_code', 1, 'https://ror.org/040d1yx23 Senvion SE (Germany)'),
(257, 'https://ror.org/00q09pe49', 'en', 1, 'https://ror.org/00q09pe49 National Taiwan University of Science and Technology'),
(258, 'https://ror.org/05vf56z40', 'en', 1, 'https://ror.org/05vf56z40 University of Tehran دانؓگاه تهران'),
(259, 'https://ror.org/00k1crd82', 'en', 1, 'https://ror.org/00k1crd82 Museum of Science'),
(260, 'https://ror.org/03bwf4y78', 'sk', 1, 'https://ror.org/03bwf4y78 Slovak National Library Slovenska Narodna Kniznica SlovenskÔ nÔrodnÔ knižnica'),
(261, 'https://ror.org/01x21tj82', 'no_lang_code', 1, 'https://ror.org/01x21tj82 Microsoft (Netherlands)'),
(262, 'https://ror.org/03w9cdv26', 'no_lang_code', 1, 'https://ror.org/03w9cdv26 Maichin Dom Университетска Š°ŠŗŃƒŃˆŠµŃ€Š¾-гинекологична болница ā€œŠœŠ°Š¹Ń‡ŠøŠ½ Š“Š¾Š¼ā€'),
(263, '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'),
(264, 'https://ror.org/04e8jbs38', 'en', 1, 'https://ror.org/04e8jbs38 Helmut Schmidt University Helmut-Schmidt-UniversitƤt'),
(265, 'https://ror.org/04mdycw91', 'no_lang_code', 1, 'https://ror.org/04mdycw91 Eurofins (France)'),
(266, 'https://ror.org/039xw7n32', 'en', 1, 'https://ror.org/039xw7n32 Istituto Universitario di Studi Europei University Institute of European Studies'),
(267, 'https://ror.org/01dxm2p72', 'no_lang_code', 1, 'https://ror.org/01dxm2p72 Saipem (Italy) SocietĆ  Anonima Italiana Perforazioni E Montaggi'),
(268, 'https://ror.org/00sge8677', 'en', 1, 'https://ror.org/00sge8677 BRAC University ą¦¬ą§ą¦°ą§ą¦Æą¦¾ą¦• ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(269, 'https://ror.org/04aa89262', 'en', 1, 'https://ror.org/04aa89262 Radiolabs'),
(270, 'https://ror.org/03y4myd35', 'en', 1, 'https://ror.org/03y4myd35 Infectious Disease Research Institute'),
(271, 'https://ror.org/04jkbnw46', 'en', 1, 'https://ror.org/04jkbnw46 Center for Infectious Disease Research'),
(272, 'https://ror.org/00hhkn466', 'en', 1, 'https://ror.org/00hhkn466 Japan Society for the Promotion of Science ę—„ęœ¬å­¦č”“ęŒÆčˆˆä¼š'),
(273, 'https://ror.org/04s7f5535', 'no_lang_code', 1, 'https://ror.org/04s7f5535 Beta Technology Limited'),
(274, 'https://ror.org/05pwfyy15', 'en', 1, 'https://ror.org/05pwfyy15 National Centre for Research and Development'),
(275, 'https://ror.org/00j9c2840', 'en', 1, 'https://ror.org/00j9c2840 Oslo University Hospital'),
(276, 'https://ror.org/05t3n1398', 'en', 1, 'https://ror.org/05t3n1398 Natural Resources Institute'),
(277, 'https://ror.org/017pz3h73', 'en', 1, 'https://ror.org/017pz3h73 Urban Institute'),
(278, 'https://ror.org/02pf50490', 'no_lang_code', 1, 'https://ror.org/02pf50490 Immunomedics (United States)'),
(279, 'https://ror.org/04nyf1f54', 'en', 1, 'https://ror.org/04nyf1f54 Shanghai Center For Bioinformation Technology äøŠęµ·ē”Ÿē‰©äæ”ęÆęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(280, 'https://ror.org/058rkm744', 'en', 1, 'https://ror.org/058rkm744 Niabi Zoological Society'),
(281, 'https://ror.org/03hvxkc45', 'en', 1, 'https://ror.org/03hvxkc45 Bibra International'),
(282, 'https://ror.org/00qhe6a56', 'no_lang_code', 1, 'https://ror.org/00qhe6a56 Miltenyi Biotec (Germany)'),
(283, 'https://ror.org/0595gz585', 'en', 1, 'https://ror.org/0595gz585 University of Gondar'),
(284, 'https://ror.org/015j35893', 'en', 1, 'https://ror.org/015j35893 English Heritage'),
(285, 'https://ror.org/01hsw0492', 'en', 1, 'https://ror.org/01hsw0492 Gesellschaft für Chemische Technik und Biotechnologie Society for Chemical Engineering and Biotechnology'),
(286, 'https://ror.org/03dnktm38', 'no_lang_code', 1, 'https://ror.org/03dnktm38 Scimar Engineering Ltd'),
(287, 'https://ror.org/00pb8h375', 'en', 1, 'https://ror.org/00pb8h375 Bauman Moscow State Technical University Московский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š­. Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(288, 'https://ror.org/055aebe25', 'no_lang_code', 1, 'https://ror.org/055aebe25 CRE Group (United States)'),
(289, 'https://ror.org/04xv01a59', 'en', 1, 'https://ror.org/04xv01a59 The Pirbright Institute'),
(290, 'https://ror.org/02tpgw303', 'en', 1, 'https://ror.org/02tpgw303 Institute for Systems Biology'),
(291, 'https://ror.org/01b8kcc49', 'en', 1, 'https://ror.org/01b8kcc49 National Cheng Kung University'),
(292, 'https://ror.org/003x8tf04', 'no_lang_code', 1, 'https://ror.org/003x8tf04 Profilarbed (Luxembourg)'),
(293, 'https://ror.org/01z83rb65', 'fr', 1, 'https://ror.org/01z83rb65 Adi Valor'),
(294, 'https://ror.org/002hsbm82', 'en', 1, 'https://ror.org/002hsbm82 Tufts Medical Center'),
(295, 'https://ror.org/01zxdeg39', 'en', 1, 'https://ror.org/01zxdeg39 Harvard Pilgrim Health Care'),
(296, 'https://ror.org/055546q82', 'en', 1, 'https://ror.org/055546q82 Bį»™ Y tįŗæ (Việt Nam) Ministry of Health'),
(297, 'https://ror.org/02g6d4t03', 'de', 1, 'https://ror.org/02g6d4t03 Gesellschaft Fur Mathematik Und Datenverarbeitung'),
(298, 'https://ror.org/03gjyng84', 'no_lang_code', 1, 'https://ror.org/03gjyng84 Sierra Wireless (Canada)'),
(299, 'https://ror.org/00p8xqj61', 'en', 1, 'https://ror.org/00p8xqj61 Karpov Institute of Physical Chemistry Акционерное общество ŠžŃ€Š“ена Š¢Ń€ŃƒŠ“ового ŠšŃ€Š°ŃŠ½Š¾Š³Š¾ Знамени Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ физико-химический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š›.ŠÆ. ŠšŠ°Ń€ŠæŠ¾Š²Š°'),
(300, 'https://ror.org/02ntgty32', 'en', 1, 'https://ror.org/02ntgty32 Flygtekniska fƶrsƶksanstalten National Aeronautical Research Institute'),
(301, 'https://ror.org/03x516a66', 'en', 1, 'https://ror.org/03x516a66 Bundesanstalt für Materialforschung und -prüfung Federal Institute For Materials Research and Testing'),
(302, 'https://ror.org/003dzgw21', 'fr', 1, 'https://ror.org/003dzgw21 Centre Technique Des Industries De La Fonderie'),
(303, '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'),
(304, 'https://ror.org/03661z977', 'no_lang_code', 1, 'https://ror.org/03661z977 HEF Groupe (France)'),
(305, 'https://ror.org/0050ra204', 'it', 1, 'https://ror.org/0050ra204 Centro Studi Sui Sistemi Di Trasporto Spa'),
(306, 'https://ror.org/00tzmb306', 'en', 1, 'https://ror.org/00tzmb306 Danish Maritime Institute'),
(307, 'https://ror.org/053ny5136', 'no_lang_code', 1, 'https://ror.org/053ny5136 Fujitsu (United Kingdom)'),
(308, 'https://ror.org/01kdvym37', 'de', 1, 'https://ror.org/01kdvym37 Battelle-Institut ev'),
(309, 'https://ror.org/012ae7p27', 'no_lang_code', 1, 'https://ror.org/012ae7p27 Italtel (Italy)'),
(310, 'https://ror.org/01s7y5e82', 'en', 1, 'https://ror.org/01s7y5e82 Ivan Franko Nemzeti Egyetem Lviv Lviv University Uniwersytet Lwowski Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ивана Франко Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана Франка'),
(311, 'https://ror.org/01k6vxj52', 'en', 1, 'https://ror.org/01k6vxj52 Omsk State University ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ф. М. Достоевского'),
(312, 'https://ror.org/01x3jjv63', 'en', 1, 'https://ror.org/01x3jjv63 Uzhhorod National University Użhorodzki Uniwersytet Narodowy УжгороГский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š£Š¶Š³Š¾Ń€Š¾Š“ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(313, 'https://ror.org/02he2nc27', 'en', 1, 'https://ror.org/02he2nc27 National Research Tomsk State University ŠŠ°Ń†ŠøŠ¾Š½Š°ĢŠ»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµĢŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ То́мский Š³Š¾ŃŃƒŠ“а́рственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚'),
(314, 'https://ror.org/029njb796', 'en', 1, 'https://ror.org/029njb796 Perm State University ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(315, 'https://ror.org/00ygzyy93', 'en', 1, 'https://ror.org/00ygzyy93 Independent University of Moscow ŠŠµŠ·Š°Š²ŠøŃŠøŠ¼Ń‹Š¹ Московский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(316, 'https://ror.org/04s36qm86', 'en', 1, 'https://ror.org/04s36qm86 Chelyabinsk State University Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(317, 'https://ror.org/00yp6m473', 'en', 1, 'https://ror.org/00yp6m473 Udmurt State University Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(318, 'https://ror.org/03shav252', 'en', 1, 'https://ror.org/03shav252 Kazan State Technological University Казанский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(319, 'https://ror.org/013pk4y14', 'en', 1, 'https://ror.org/013pk4y14 Kazan State Medical University Казанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(320, 'https://ror.org/02sehzp52', 'en', 1, 'https://ror.org/02sehzp52 Belarusian State University of Informatics and Radioelectronics Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ інфарматыкі і Ń€Š°Š“Ń‹Ń‘ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Ń–ŠŗŃ– Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ информатики Šø Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(321, 'https://ror.org/04dngzj56', 'en', 1, 'https://ror.org/04dngzj56 American University of Armenia Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ“Õ„Ö€Õ«ÕÆÕµÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(322, 'https://ror.org/00em04n91', 'en', 1, 'https://ror.org/00em04n91 Moscow State University of Civil Engineering Московский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š”Ń‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Университет'),
(323, 'https://ror.org/059w0gb06', 'en', 1, 'https://ror.org/059w0gb06 Karakalpak State University'),
(324, 'https://ror.org/01qn0gc28', 'en', 1, 'https://ror.org/01qn0gc28 Yuri Gagarin State Technical University of Saratov Даратовский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š®. А. Гагарина'),
(325, 'https://ror.org/014n7rf11', 'en', 1, 'https://ror.org/014n7rf11 Moscow State Aviation Technological University Российский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. Š­. Циолковского'),
(326, 'https://ror.org/036yvre49', 'en', 1, 'https://ror.org/036yvre49 Kemerovo State University ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(327, 'https://ror.org/03n6cf849', 'no_lang_code', 1, 'https://ror.org/03n6cf849 Ricerca sul Sistema Energetico (Italy)'),
(328, 'https://ror.org/04zap7912', 'en', 1, 'https://ror.org/04zap7912 Yunnan University of Traditional Chinese Medicine äŗ‘å—äø­åŒ»čÆå¤§å­¦'),
(329, 'https://ror.org/03zn9xk79', 'en', 1, 'https://ror.org/03zn9xk79 University Teaching Hospital'),
(330, 'https://ror.org/02j3enb93', 'no_lang_code', 1, 'https://ror.org/02j3enb93 ArcelorMittal (Spain)'),
(331, 'https://ror.org/0015hpp74', 'en', 1, 'https://ror.org/0015hpp74 Hannah Research Foundation'),
(332, 'https://ror.org/033kc7n58', 'no_lang_code', 1, 'https://ror.org/033kc7n58 Creusot-Loire Entreprises (France)'),
(333, 'https://ror.org/05dbe0q91', 'en', 1, 'https://ror.org/05dbe0q91 Warren Spring Laboratory'),
(334, 'https://ror.org/01bvmk374', 'no_lang_code', 1, 'https://ror.org/01bvmk374 GIUNTI Intenational Division (Italy)'),
(335, 'https://ror.org/035j0tq82', 'no_lang_code', 1, 'https://ror.org/035j0tq82 Orange (France)'),
(336, 'https://ror.org/0049erg63', 'en', 1, 'https://ror.org/0049erg63 Kookmin University źµ­ėÆ¼ėŒ€ķ•™źµ'),
(337, 'https://ror.org/0288jxv49', 'en', 1, 'https://ror.org/0288jxv49 Institute of Development Studies'),
(338, 'https://ror.org/03zeek684', 'it', 1, 'https://ror.org/03zeek684 Consorzio Universitario In Ingegneria Della Qualita'),
(339, 'https://ror.org/00jk4qh27', 'no_lang_code', 1, 'https://ror.org/00jk4qh27 TECO'),
(340, 'https://ror.org/01g312x22', 'no_lang_code', 1, 'https://ror.org/01g312x22 BG Group (United Kingdom)'),
(341, 'https://ror.org/03sz8rb35', 'es', 1, 'https://ror.org/03sz8rb35 Hospital General Universitario De Valencia'),
(342, 'https://ror.org/02fjy3w42', 'en', 1, 'https://ror.org/02fjy3w42 Ivanovo State University of Chemistry and Technology Ивановский Š³Š¾ŃŃƒŠ“арственный химико-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(343, 'https://ror.org/04b8y3f13', 'no_lang_code', 1, 'https://ror.org/04b8y3f13 Alexandrovska Hospital ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ŃŠŗŠ° болница ā€žŠŠ»ŠµŠŗŃŠ°Š½Š“Ń€Š¾Š²ŃŠŗŠ°'),
(344, 'https://ror.org/038fwcw54', 'en', 1, 'https://ror.org/038fwcw54 National Satellite Ocean Application Service å›½å®¶å«ę˜Ÿęµ·ę“‹åŗ”ē”Øäø­åæƒ'),
(345, 'https://ror.org/00x3rpv59', 'en', 1, 'https://ror.org/00x3rpv59 Tomsk State Pedagogical University Томский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(346, 'https://ror.org/0389pzc90', 'en', 1, 'https://ror.org/0389pzc90 Altai State Technical University Алтайский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. И. Ползунова'),
(347, 'https://ror.org/03k793y62', 'en', 1, 'https://ror.org/03k793y62 Agricultural University of Tirana Universiteti BujqĆ«sor i TiranĆ«s Ī“ĪµĻ‰Ļ€ĪæĪ½Ī¹ĪŗĻŒ Ļ€Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Τιράνων'),
(348, 'https://ror.org/055vbxf86', 'en', 1, 'https://ror.org/055vbxf86 Addenbrooke''s Hospital'),
(349, 'https://ror.org/008wtrs16', 'pt', 1, 'https://ror.org/008wtrs16 Instituto Superior de CiĆŖncias Educativas'),
(350, 'https://ror.org/04xbrv698', 'en', 1, 'https://ror.org/04xbrv698 Institut für Mobil- und Satellitenfunktechnik Institute for Mobile and Satellite Communication Technology'),
(351, 'https://ror.org/010567a58', 'fr', 1, 'https://ror.org/010567a58 Centre Hospitalier Universitaire Amiens-Picardie'),
(352, 'https://ror.org/01kvp0178', 'no_lang_code', 1, 'https://ror.org/01kvp0178 Ontario Power Generation'),
(353, 'https://ror.org/02xh9x144', 'en', 1, 'https://ror.org/02xh9x144 University of Prince Edward Island UniversitĆ© de l''Ǝle-du-prince-Ɖdouard'),
(354, 'https://ror.org/02hw5fp67', 'en', 1, 'https://ror.org/02hw5fp67 National Institute for Environmental Studies å›½ē«‹ē’°å¢ƒē ”ē©¶ę‰€'),
(355, 'https://ror.org/04zah8g26', 'no_lang_code', 1, 'https://ror.org/04zah8g26 Pouliadis Associates Corporation'),
(356, 'https://ror.org/0025g8755', 'en', 1, 'https://ror.org/0025g8755 Luigi Sacco Hospital Ospedale Luigi Sacco'),
(357, 'https://ror.org/00d80zx46', 'en', 1, 'https://ror.org/00d80zx46 Chang Gung University'),
(358, 'https://ror.org/017g36q02', 'en', 1, 'https://ror.org/017g36q02 Municipality of Amaroussion'),
(359, 'https://ror.org/01m1pv723', 'en', 1, 'https://ror.org/01m1pv723 HÓpitaux universitaires de Genève University Hospital of Geneva'),
(360, 'https://ror.org/054zv1w86', 'no_lang_code', 1, 'https://ror.org/054zv1w86 Glencore (Switzerland)'),
(361, 'https://ror.org/0509tgg56', 'no_lang_code', 1, 'https://ror.org/0509tgg56 Airbus (Spain)'),
(362, 'https://ror.org/01vjd7j86', 'en', 1, 'https://ror.org/01vjd7j86 Federalni Zavod za geologiju The Federal Institute for Geology'),
(363, 'https://ror.org/01grq2104', 'en', 1, 'https://ror.org/01grq2104 Torrey Pines Institute For Molecular Studies'),
(364, 'https://ror.org/0184gbk60', 'en', 1, 'https://ror.org/0184gbk60 Steinbeis Foundation Steinbeis-Stiftung'),
(365, 'https://ror.org/040r8fr65', 'en', 1, 'https://ror.org/040r8fr65 Aarhus University Hospital Skejby Sygehus'),
(366, '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'),
(367, 'https://ror.org/01xtjs520', 'fr', 1, 'https://ror.org/01xtjs520 Institut Laue-Langevin'),
(368, 'https://ror.org/02kswma64', 'it', 1, 'https://ror.org/02kswma64 Istituto Nazionale per la Fisica della Materia'),
(369, 'https://ror.org/02vn11j58', 'en', 1, 'https://ror.org/02vn11j58 Ulyanovsk State University Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(370, 'https://ror.org/042q8va29', 'no_lang_code', 1, 'https://ror.org/042q8va29 Sidenor (Greece) Ī£Ī™Ī”Ī•ĪĪŸĪ”'),
(371, 'https://ror.org/00184ca40', 'no_lang_code', 1, 'https://ror.org/00184ca40 Ballard Power Systems (Canada)'),
(372, 'https://ror.org/05m34fq04', 'no_lang_code', 1, 'https://ror.org/05m34fq04 Motorola (France)'),
(373, 'https://ror.org/02vvj6403', 'en', 1, 'https://ror.org/02vvj6403 Smolensk University for Humanities Дмоленский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚');
INSERT INTO `rors` VALUES
(374, 'https://ror.org/01nxjpd08', 'en', 1, 'https://ror.org/01nxjpd08 Vladimir State University Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ВлаГимирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени АлексанГра Š“Ń€ŠøŠ³Š¾Ń€ŃŒŠµŠ²ŠøŃ‡Š° Šø ŠŠøŠŗŠ¾Š»Š°Ń Š“Ń€ŠøŠ³Š¾Ń€ŃŒŠµŠ²ŠøŃ‡Š° Дтолетовых'),
(375, 'https://ror.org/05qtccm96', 'ga', 1, 'https://ror.org/05qtccm96 Forbairt'),
(376, 'https://ror.org/02kcpr174', 'en', 1, 'https://ror.org/02kcpr174 MRC Human Immunology Unit'),
(377, 'https://ror.org/05kzadn81', 'en', 1, 'https://ror.org/05kzadn81 Nara Advanced Teachers College for Women Nara Women''s University å„ˆč‰Æå„³å­å¤§å­¦'),
(378, 'https://ror.org/02zrvx577', 'en', 1, 'https://ror.org/02zrvx577 University of Bahr El-Ghazal'),
(379, 'https://ror.org/049yjqb12', 'en', 1, 'https://ror.org/049yjqb12 Communications and Information Technology Ontario'),
(380, 'https://ror.org/04my10541', 'en', 1, 'https://ror.org/04my10541 Centre of Advanced Studies'),
(381, 'https://ror.org/00pmcf502', 'no_lang_code', 1, 'https://ror.org/00pmcf502 Talisman Energy'),
(382, 'https://ror.org/04ky9dq80', 'no_lang_code', 1, 'https://ror.org/04ky9dq80 Vaexjoe Energi Ab'),
(383, 'https://ror.org/056r5vk88', 'en', 1, 'https://ror.org/056r5vk88 Penza State University Пензенский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(384, 'https://ror.org/019k4jq75', 'en', 1, 'https://ror.org/019k4jq75 Brooklyn College College de Brooklyn de la Universidad de la Ciudad de Nueva York'),
(385, 'https://ror.org/03rjt0z37', 'en', 1, 'https://ror.org/03rjt0z37 German University in Cairo الجامعة Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ© بالقاهرة'),
(386, 'https://ror.org/00v6s9648', 'en', 1, 'https://ror.org/00v6s9648 University of Worcester'),
(387, 'https://ror.org/04tzy5g14', 'en', 1, 'https://ror.org/04tzy5g14 Missouri Botanical Garden'),
(388, 'https://ror.org/00ajykz30', 'en', 1, 'https://ror.org/00ajykz30 UK Water Industry Research'),
(389, 'https://ror.org/028jc0449', 'en', 1, 'https://ror.org/028jc0449 Austrian Research Promotion Agency Ɩsterreichische Forschungsfƶrderungsgesellschaft'),
(390, 'https://ror.org/020cmsc29', 'en', 1, 'https://ror.org/020cmsc29 Rajendra Memorial Research Institute of Medical Sciences'),
(391, 'https://ror.org/00ghjek97', 'en', 1, 'https://ror.org/00ghjek97 Orel State University named after I.S. Turgenev ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. Š”. Š¢ŃƒŃ€Š³ŠµŠ½ŠµŠ²Š°'),
(392, 'https://ror.org/05mpt6s70', 'no_lang_code', 1, 'https://ror.org/05mpt6s70 Applica Sprl'),
(393, 'https://ror.org/04mkpd147', 'es', 1, 'https://ror.org/04mkpd147 Red Universitaria Nacional'),
(394, 'https://ror.org/01703db54', 'en', 1, 'https://ror.org/01703db54 National Institute of Advanced Industrial Science and Technology ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(395, 'https://ror.org/042awg277', 'en', 1, 'https://ror.org/042awg277 MCNC Research and Development Institute'),
(396, 'https://ror.org/027pqks09', 'no_lang_code', 1, 'https://ror.org/027pqks09 S&N (Germany)'),
(397, 'https://ror.org/04j6dw954', 'en', 1, 'https://ror.org/04j6dw954 Have Dreams'),
(398, 'https://ror.org/02q291e51', 'no_lang_code', 1, 'https://ror.org/02q291e51 Suncor Energy (Canada)'),
(399, 'https://ror.org/04mhx6838', 'en', 1, 'https://ror.org/04mhx6838 National Institute on Deafness and Other Communication Disorders'),
(400, 'https://ror.org/02af4h012', 'en', 1, 'https://ror.org/02af4h012 Jadavpur University UniversitĆ© jadavpur ą¤Æą¤¾ą¤¦ą¤µą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ যাদবপুর ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ਜਾਦਵਪੁਰ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ જાદવપુર ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€ ą°œą°¾ą°¦ą°µą± ą°Ŗą±‚ą°°ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²œą²¾ą²¦ą²µą³ ಪುರ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(401, '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'),
(402, 'https://ror.org/03dkyhy49', 'no_lang_code', 1, 'https://ror.org/03dkyhy49 Artann Laboratories, Inc.'),
(403, 'https://ror.org/00xyeez13', 'en', 1, 'https://ror.org/00xyeez13 Kunming University of Science and Technology ę˜†ę˜Žē†å·„å¤§å­¦'),
(404, 'https://ror.org/04qpegs24', 'en', 1, 'https://ror.org/04qpegs24 Resources For The Future'),
(405, 'https://ror.org/05jfq2w07', 'en', 1, 'https://ror.org/05jfq2w07 Scottish Universities Environmental Research Centre'),
(406, 'https://ror.org/03hamhx47', 'en', 1, 'https://ror.org/03hamhx47 Universidad de Massachusetts Lowell University of Massachusetts Lowell'),
(407, 'https://ror.org/00nas2c56', 'no_lang_code', 1, 'https://ror.org/00nas2c56 Ericsson (Canada)'),
(408, 'https://ror.org/01b8f4h92', 'no_lang_code', 1, 'https://ror.org/01b8f4h92 Athens Technology Center (Greece)'),
(409, 'https://ror.org/028v4fg64', 'no_lang_code', 1, 'https://ror.org/028v4fg64 Vattenfall (Sweden)'),
(410, 'https://ror.org/00j0z5m32', 'en', 1, 'https://ror.org/00j0z5m32 Alabama Department of Public Health'),
(411, 'https://ror.org/015h2da09', 'en', 1, 'https://ror.org/015h2da09 Boston Public Health Commission'),
(412, 'https://ror.org/03a1gte98', 'en', 1, 'https://ror.org/03a1gte98 Agence spatiale canadienne Canadian Space Agency'),
(413, 'https://ror.org/051wnqr14', 'en', 1, 'https://ror.org/051wnqr14 Department of Defence'),
(414, 'https://ror.org/03v188q73', 'en', 1, 'https://ror.org/03v188q73 Earthquake Engineering Research Institute'),
(415, 'https://ror.org/00r66pz14', 'en', 1, 'https://ror.org/00r66pz14 Natural England'),
(416, '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'),
(417, 'https://ror.org/00jh2w590', 'en', 1, 'https://ror.org/00jh2w590 New Mexico Department of Health'),
(418, 'https://ror.org/01gst4g14', 'en', 1, 'https://ror.org/01gst4g14 New York City Department of Health and Mental Hygiene'),
(419, 'https://ror.org/02yq6my61', 'en', 1, 'https://ror.org/02yq6my61 Oklahoma Department of Mental Health and Substance Abuse Services'),
(420, 'https://ror.org/055hhmc29', 'en', 1, 'https://ror.org/055hhmc29 Oregon Department of Human Services'),
(421, 'https://ror.org/04zn9qp70', 'en', 1, 'https://ror.org/04zn9qp70 Pennsylvania Department of Human Services'),
(422, 'https://ror.org/054652k97', 'en', 1, 'https://ror.org/054652k97 Public Health – Seattle & King County'),
(423, 'https://ror.org/0566w5t03', 'en', 1, 'https://ror.org/0566w5t03 United States Office of Personnel Management'),
(424, 'https://ror.org/05eq41471', 'en', 1, 'https://ror.org/05eq41471 Veterans Health Administration'),
(425, 'https://ror.org/03vzpaf33', 'en', 1, 'https://ror.org/03vzpaf33 Einstein Medical Center Philadelphia'),
(426, 'https://ror.org/00jyx0v10', 'en', 1, 'https://ror.org/00jyx0v10 Alfred I. duPont Hospital for Children'),
(427, 'https://ror.org/04drvxt59', 'en', 1, 'https://ror.org/04drvxt59 Beth Israel Deaconess Medical Center'),
(428, 'https://ror.org/059c3mv67', 'en', 1, 'https://ror.org/059c3mv67 Cambridge Health Alliance'),
(429, 'https://ror.org/0483mr804', 'en', 1, 'https://ror.org/0483mr804 Carolinas Medical Center'),
(430, 'https://ror.org/03763ep67', 'en', 1, 'https://ror.org/03763ep67 Children''s Hospital of Pittsburgh'),
(431, 'https://ror.org/04zfmcq84', 'en', 1, 'https://ror.org/04zfmcq84 Children''s Mercy Hospital'),
(432, 'https://ror.org/01hcyya48', 'en', 1, 'https://ror.org/01hcyya48 Cincinnati Children''s Hospital Medical Center'),
(433, 'https://ror.org/01fbz6h17', 'en', 1, 'https://ror.org/01fbz6h17 Denver Health Medical Center'),
(434, 'https://ror.org/04r33pf22', 'en', 1, 'https://ror.org/04r33pf22 Guy''s Hospital'),
(435, 'https://ror.org/008zj0x80', 'en', 1, 'https://ror.org/008zj0x80 Hackensack University Medical Center'),
(436, 'https://ror.org/016bbv872', 'en', 1, 'https://ror.org/016bbv872 Hahnemann University Hospital'),
(437, 'https://ror.org/05h4zj272', 'en', 1, 'https://ror.org/05h4zj272 Harbor–UCLA Medical Center'),
(438, 'https://ror.org/05q6tgt32', 'en', 1, 'https://ror.org/05q6tgt32 Kennedy Krieger Institute'),
(439, 'https://ror.org/03hkffh19', 'en', 1, 'https://ror.org/03hkffh19 Legacy Emanuel Medical Center'),
(440, 'https://ror.org/05msy3z48', 'en', 1, 'https://ror.org/05msy3z48 Legacy Good Samaritan Medical Center'),
(441, 'https://ror.org/034c1gc25', 'en', 1, 'https://ror.org/034c1gc25 Maine Medical Center'),
(442, 'https://ror.org/01kta7d96', 'en', 1, 'https://ror.org/01kta7d96 McLean Hospital'),
(443, 'https://ror.org/04c0a2j77', 'en', 1, 'https://ror.org/04c0a2j77 Memorial Hospital of Rhode Island'),
(444, 'https://ror.org/053exzj86', 'en', 1, 'https://ror.org/053exzj86 Miriam Hospital'),
(445, 'https://ror.org/05m8d2x46', 'en', 1, 'https://ror.org/05m8d2x46 North Shore University Hospital'),
(446, 'https://ror.org/01h22ap11', 'en', 1, 'https://ror.org/01h22ap11 Penn State Milton S. Hershey Medical Center'),
(447, 'https://ror.org/015tmw922', 'en', 1, 'https://ror.org/015tmw922 Providence Portland Medical Center'),
(448, 'https://ror.org/0478ng049', 'en', 1, 'https://ror.org/0478ng049 Roger Williams Medical Center'),
(449, 'https://ror.org/04jq72f57', 'en', 1, 'https://ror.org/04jq72f57 Royal Darwin Hospital'),
(450, 'https://ror.org/04wrfcw61', 'en', 1, 'https://ror.org/04wrfcw61 Sanford USD Medical Center'),
(451, 'https://ror.org/02ge60j37', 'en', 1, 'https://ror.org/02ge60j37 Scott & White Memorial Hospital'),
(452, 'https://ror.org/00cr15z55', 'en', 1, 'https://ror.org/00cr15z55 St. Elizabeth''s Medical Center'),
(453, 'https://ror.org/00m72wv30', 'en', 1, 'https://ror.org/00m72wv30 St. Joseph''s Hospital and Medical Center'),
(454, 'https://ror.org/011t2cn48', 'en', 1, 'https://ror.org/011t2cn48 St. Luke''s-Roosevelt Hospital Center'),
(455, 'https://ror.org/032d59j24', 'en', 1, 'https://ror.org/032d59j24 Hospital Tan Tock Seng Tan Tock Seng Hospital ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆą®Æą®æą®²ąÆą®²ąÆ é™ˆē¬ƒē”ŸåŒ»é™¢'),
(456, 'https://ror.org/013e81n30', 'en', 1, 'https://ror.org/013e81n30 University of Alberta Hospital'),
(457, 'https://ror.org/0277n1841', 'en', 1, 'https://ror.org/0277n1841 University of Tennessee Medical Center'),
(458, 'https://ror.org/03z8sn326', 'en', 1, 'https://ror.org/03z8sn326 Women & Infants Hospital of Rhode Island'),
(459, 'https://ror.org/04p405e02', 'en', 1, 'https://ror.org/04p405e02 Biblioteca del Congreso de Estados Unidos BibliothĆØque du CongrĆØs Library of Congress'),
(460, 'https://ror.org/02zha5019', 'en', 1, 'https://ror.org/02zha5019 Beijing Museum of Natural History åŒ—äŗ¬č‡Ŗē„¶åšē‰©é¦†'),
(461, 'https://ror.org/0037yf233', 'en', 1, 'https://ror.org/0037yf233 Exploratorium'),
(462, 'https://ror.org/057seh071', 'en', 1, 'https://ror.org/057seh071 Franklin Institute'),
(463, 'https://ror.org/03davap66', 'en', 1, 'https://ror.org/03davap66 Illinois State Museum'),
(464, 'https://ror.org/03f91xw18', 'en', 1, 'https://ror.org/03f91xw18 Museum of the Earth'),
(465, 'https://ror.org/00p9h0053', 'en', 1, 'https://ror.org/00p9h0053 Natural History Museum of Los Angeles County'),
(466, 'https://ror.org/01e87ch81', 'en', 1, 'https://ror.org/01e87ch81 Oregon Museum of Science and Industry'),
(467, 'https://ror.org/02nyfes25', 'en', 1, 'https://ror.org/02nyfes25 Science Museum of Minnesota'),
(468, 'https://ror.org/02k61s246', 'en', 1, 'https://ror.org/02k61s246 American Society for Cell Biology'),
(469, 'https://ror.org/04ztdzs79', 'en', 1, 'https://ror.org/04ztdzs79 Fenway Health'),
(470, 'https://ror.org/03sn6yr77', 'en', 1, 'https://ror.org/03sn6yr77 Point Blue Conservation Science'),
(471, 'https://ror.org/03sfkwk85', 'en', 1, 'https://ror.org/03sfkwk85 Rockefeller Foundation'),
(472, 'https://ror.org/054gzqw08', 'en', 1, 'https://ror.org/054gzqw08 Central Connecticut State University Universidad Estatal de Connecticut Central'),
(473, 'https://ror.org/0209dk158', 'en', 1, 'https://ror.org/0209dk158 Lowell Observatory'),
(474, 'https://ror.org/04mh52z70', 'en', 1, 'https://ror.org/04mh52z70 Observatorio AstrofĆ­sico Smithsonian Smithsonian Astrophysical Observatory'),
(475, 'https://ror.org/00vxe3x87', 'de', 1, 'https://ror.org/00vxe3x87 Sternwarte Stuttgart Stuttgart Observatory'),
(476, 'https://ror.org/00m2ag473', 'en', 1, 'https://ror.org/00m2ag473 Archbold Biological Station'),
(477, 'https://ror.org/008encc97', 'en', 1, 'https://ror.org/008encc97 East–West Center'),
(478, 'https://ror.org/03zzj3f20', 'en', 1, 'https://ror.org/03zzj3f20 Fields Institute for Research in Mathematical Sciences'),
(479, 'https://ror.org/003j5cv40', 'en', 1, 'https://ror.org/003j5cv40 Haskins Laboratories'),
(480, 'https://ror.org/02e1cpg76', 'en', 1, 'https://ror.org/02e1cpg76 Hauptman-Woodward Medical Research Institute'),
(481, 'https://ror.org/038321296', 'en', 1, 'https://ror.org/038321296 Gladstone Institutes'),
(482, 'https://ror.org/05hs5r386', 'en', 1, 'https://ror.org/05hs5r386 Mathematical Sciences Research Institute'),
(483, 'https://ror.org/01s434164', 'en', 1, 'https://ror.org/01s434164 Nathan Kline Institute for Psychiatric Research'),
(484, 'https://ror.org/022swbj46', 'en', 1, 'https://ror.org/022swbj46 National Brain Research Centre ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą¤øą„ą¤¤ą¤æą¤·ą„ą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°, ą¤®ą¤¾ą¤Øą„‡ą¤øą¤°, हरियाणा'),
(485, 'https://ror.org/01xvcf081', 'en', 1, 'https://ror.org/01xvcf081 New York Blood Center'),
(486, 'https://ror.org/040cnym54', 'en', 1, 'https://ror.org/040cnym54 Pennington Biomedical Research Center'),
(487, 'https://ror.org/00e7vmq69', 'en', 1, 'https://ror.org/00e7vmq69 Polytechnic University of the Philippines'),
(488, 'https://ror.org/03zjj0p70', 'en', 1, 'https://ror.org/03zjj0p70 Population Council'),
(489, 'https://ror.org/02378jc90', 'en', 1, 'https://ror.org/02378jc90 Raja Ramanna Centre for Advanced Technology राजा ą¤°ą¤¾ą¤®ą¤£ą„ą¤£ą¤¾ ą¤…ą¤¤ą„ą¤Æą¤¾ą¤§ą„ą¤Øą¤æą¤• ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° राजा ą¤°ą¤¾ą¤®ą¤Øą„ą¤Øą¤¾ ą¤Ŗą„ą¤°ą¤—ą¤¤ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤° ą“°ą“¾ą“œą“¾ ą“°ą“¾ą“®ą“£ąµą“£ ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“…ą“”ąµą“µą“¾ąµ»ą“øąµą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(490, 'https://ror.org/01s5axj25', 'en', 1, 'https://ror.org/01s5axj25 Lunenfeld-Tanenbaum Research Institute'),
(491, 'https://ror.org/05783y657', 'en', 1, 'https://ror.org/05783y657 Smith-Kettlewell Eye Research Institute'),
(492, 'https://ror.org/006cvnv84', 'en', 1, 'https://ror.org/006cvnv84 Social Science Research Council'),
(493, 'https://ror.org/04bgfm609', 'en', 1, 'https://ror.org/04bgfm609 Stowers Institute for Medical Research'),
(494, 'https://ror.org/00wm07d60', 'en', 1, 'https://ror.org/00wm07d60 Van Andel Institute'),
(495, 'https://ror.org/004srrf86', 'en', 1, 'https://ror.org/004srrf86 Abilene Christian University Universidad Cristiana de Abilene'),
(496, 'https://ror.org/025n13r50', 'en', 1, 'https://ror.org/025n13r50 Adelphi University'),
(497, 'https://ror.org/01eedy375', 'en', 1, 'https://ror.org/01eedy375 Alabama State University'),
(498, 'https://ror.org/00dr54257', 'en', 1, 'https://ror.org/00dr54257 Alcorn State University'),
(499, 'https://ror.org/02h7s7a86', 'en', 1, 'https://ror.org/02h7s7a86 Allen University'),
(500, 'https://ror.org/04k8zab17', 'en', 1, 'https://ror.org/04k8zab17 Alliant International University'),
(501, 'https://ror.org/03ekzka28', 'en', 1, 'https://ror.org/03ekzka28 Antioch University'),
(502, 'https://ror.org/00nzje529', 'en', 1, 'https://ror.org/00nzje529 Antioch University New England'),
(503, 'https://ror.org/002rw7y37', 'no_lang_code', 1, 'https://ror.org/002rw7y37 Aoyama Gakuin University 青山学院大学'),
(504, 'https://ror.org/00ff4bt20', 'en', 1, 'https://ror.org/00ff4bt20 Arcadia University'),
(505, 'https://ror.org/03bahkk91', 'en', 1, 'https://ror.org/03bahkk91 Arkansas Tech University'),
(506, 'https://ror.org/03rr7q548', 'en', 1, 'https://ror.org/03rr7q548 Armstrong Atlantic State University'),
(507, 'https://ror.org/05c5js686', 'en', 1, 'https://ror.org/05c5js686 Ashland University'),
(508, 'https://ror.org/01k18gj34', 'en', 1, 'https://ror.org/01k18gj34 Ashworth College'),
(509, 'https://ror.org/01zx16v02', 'en', 1, 'https://ror.org/01zx16v02 Athens State University UniversitĆ© d''Ɖtat d''athens'),
(510, 'https://ror.org/01wmj1g45', 'en', 1, 'https://ror.org/01wmj1g45 Atlanta University Center'),
(511, 'https://ror.org/01zvqw119', 'en', 1, 'https://ror.org/01zvqw119 Auckland University of Technology'),
(512, 'https://ror.org/03a3qwm26', 'en', 1, 'https://ror.org/03a3qwm26 Augustana University'),
(513, 'https://ror.org/027487t94', 'en', 1, 'https://ror.org/027487t94 Aurora University'),
(514, 'https://ror.org/04r0kzx48', 'en', 1, 'https://ror.org/04r0kzx48 Baker University'),
(515, 'https://ror.org/0317prg89', 'no_lang_code', 1, 'https://ror.org/0317prg89 Bastyr University'),
(516, 'https://ror.org/033vjpd42', 'en', 1, 'https://ror.org/033vjpd42 Belmont University'),
(517, 'https://ror.org/01yjyvb35', 'en', 1, 'https://ror.org/01yjyvb35 Bemidji State University'),
(518, 'https://ror.org/053fh2363', 'en', 1, 'https://ror.org/053fh2363 Benedictine University'),
(519, 'https://ror.org/01px48m89', 'en', 1, 'https://ror.org/01px48m89 Bentley University'),
(520, 'https://ror.org/04e0j1059', 'en', 1, 'https://ror.org/04e0j1059 Bethune-Cookman University'),
(521, 'https://ror.org/006g42111', 'en', 1, 'https://ror.org/006g42111 Birmingham–Southern College'),
(522, 'https://ror.org/03fng6237', 'en', 1, 'https://ror.org/03fng6237 Black Hills State University'),
(523, 'https://ror.org/02a1et264', 'en', 1, 'https://ror.org/02a1et264 Blackburn College'),
(524, 'https://ror.org/007dga614', 'en', 1, 'https://ror.org/007dga614 Bloomsburg University'),
(525, 'https://ror.org/040hwr020', 'en', 1, 'https://ror.org/040hwr020 Borough of Manhattan Community College'),
(526, 'https://ror.org/0567w8j84', 'en', 1, 'https://ror.org/0567w8j84 Bowie State University'),
(527, 'https://ror.org/022qy2d08', 'en', 1, 'https://ror.org/022qy2d08 Brenau University'),
(528, 'https://ror.org/02x3skf39', 'en', 1, 'https://ror.org/02x3skf39 Bridgewater State University UniversitĆ© d''Ɖtat de bridgewater'),
(529, 'https://ror.org/018224j82', 'en', 1, 'https://ror.org/018224j82 Buena Vista University'),
(530, 'https://ror.org/04aznd361', 'en', 1, 'https://ror.org/04aznd361 Government Medical College ą®•ąÆ‹ą®“ą®æą®•ąÆą®•ąÆ‹ą®ŸąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą“—ą“µąµŗą“®ąµ†ą“Øąµą“±ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“•ąµ‹ą““ą“æą“•ąµą“•ąµ‹ą“Ÿąµ'),
(531, 'https://ror.org/0029a9d62', 'en', 1, 'https://ror.org/0029a9d62 California Pacific University'),
(532, 'https://ror.org/03enmdz06', 'en', 1, 'https://ror.org/03enmdz06 California State University, Fresno UniversitĆ© d''Ɖtat de Californie Ć  Fresno'),
(533, 'https://ror.org/01056ge55', 'en', 1, 'https://ror.org/01056ge55 Canisius College'),
(534, 'https://ror.org/00jy9e726', 'en', 1, 'https://ror.org/00jy9e726 Capital University'),
(535, 'https://ror.org/00x5b2p37', 'en', 1, 'https://ror.org/00x5b2p37 Carroll College'),
(536, 'https://ror.org/02yf2ch17', 'en', 1, 'https://ror.org/02yf2ch17 Carroll University'),
(537, 'https://ror.org/059y9v737', 'en', 1, 'https://ror.org/059y9v737 Central College'),
(538, 'https://ror.org/03xhrps63', 'en', 1, 'https://ror.org/03xhrps63 Central State University'),
(539, 'https://ror.org/0340wst14', 'en', 1, 'https://ror.org/0340wst14 Changzhi Medical College é•æę²»åŒ»å­¦é™¢'),
(540, 'https://ror.org/038x2fh14', 'en', 1, 'https://ror.org/038x2fh14 Charles R. Drew University of Medicine and Science'),
(541, 'https://ror.org/03mwnnn55', 'en', 1, 'https://ror.org/03mwnnn55 Charleston Southern University'),
(542, 'https://ror.org/02nckwn80', 'en', 1, 'https://ror.org/02nckwn80 Cheyney University of Pennsylvania Universidad de Cheyney de Pensilvania UniversitƩ cheyney de pennsylvanie'),
(543, 'https://ror.org/00qwnam72', 'en', 1, 'https://ror.org/00qwnam72 Chiba Institute of Technology åƒč‘‰å·„ę„­å¤§å­¦'),
(544, 'https://ror.org/05ekwbr88', 'en', 1, 'https://ror.org/05ekwbr88 Chicago State University UniversitĆ© d''Ɖtat de chicago'),
(545, 'https://ror.org/0419nfc77', 'en', 1, 'https://ror.org/0419nfc77 China Three Gorges University 三峔大学'),
(546, 'https://ror.org/00g58cv73', 'en', 1, 'https://ror.org/00g58cv73 Chowan University'),
(547, 'https://ror.org/03andr831', 'en', 1, 'https://ror.org/03andr831 Christian Brothers University'),
(548, 'https://ror.org/00m4rwq02', 'en', 1, 'https://ror.org/00m4rwq02 Christopher Newport University'),
(549, 'https://ror.org/03181bn25', 'en', 1, 'https://ror.org/03181bn25 City College of San Francisco'),
(550, 'https://ror.org/0397tsa92', 'en', 1, 'https://ror.org/0397tsa92 Clark Atlanta University'),
(551, 'https://ror.org/03byx8t68', 'en', 1, 'https://ror.org/03byx8t68 Clarke University'),
(552, 'https://ror.org/00t47w971', 'en', 1, 'https://ror.org/00t47w971 Clayton State University'),
(553, 'https://ror.org/03chkg278', 'en', 1, 'https://ror.org/03chkg278 Coe College'),
(554, 'https://ror.org/00fvyjk73', 'en', 1, 'https://ror.org/00fvyjk73 Colby College'),
(555, 'https://ror.org/02z5bnb65', 'en', 1, 'https://ror.org/02z5bnb65 College of Idaho'),
(556, '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'),
(557, 'https://ror.org/05ma4gw77', 'en', 1, 'https://ror.org/05ma4gw77 Universidad del Pacƭfico University of the Pacific UniversitƩ du pacifique'),
(558, 'https://ror.org/05exmrf24', 'en', 1, 'https://ror.org/05exmrf24 Coppin State University'),
(559, 'https://ror.org/016yv6y68', 'en', 1, 'https://ror.org/016yv6y68 Dakota State University'),
(560, 'https://ror.org/031pw0y55', 'en', 1, 'https://ror.org/031pw0y55 Dakota Wesleyan University'),
(561, 'https://ror.org/03g35dg18', 'en', 1, 'https://ror.org/03g35dg18 Delaware State University'),
(562, 'https://ror.org/058w59113', 'en', 1, 'https://ror.org/058w59113 Des Moines University UniversitƩ de des moines'),
(563, 'https://ror.org/01p0ttv97', 'en', 1, 'https://ror.org/01p0ttv97 Dickinson State University'),
(564, 'https://ror.org/00bz6qm80', 'en', 1, 'https://ror.org/00bz6qm80 Dillard University'),
(565, 'https://ror.org/03e269852', 'en', 1, 'https://ror.org/03e269852 Donetsk State University of Management Донецкий Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(566, 'https://ror.org/01fxdkm29', 'en', 1, 'https://ror.org/01fxdkm29 Doshisha University åŒåæ—ē¤¾å¤§å­¦'),
(567, 'https://ror.org/011ezgm44', 'en', 1, 'https://ror.org/011ezgm44 Dowling College'),
(568, 'https://ror.org/0367njg58', 'en', 1, 'https://ror.org/0367njg58 East Central University'),
(569, 'https://ror.org/023fgmp71', 'en', 1, 'https://ror.org/023fgmp71 East Georgia State College'),
(570, 'https://ror.org/05atz9219', 'en', 1, 'https://ror.org/05atz9219 East Stroudsburg University UniversitƩ de pennsylvanie d''east stroudsburg'),
(571, 'https://ror.org/035z2ew45', 'en', 1, 'https://ror.org/035z2ew45 Eastern Illinois University UniversitƩ de l''illinois de l''est'),
(572, 'https://ror.org/059xmmg10', 'en', 1, 'https://ror.org/059xmmg10 Eastern Mennonite University'),
(573, 'https://ror.org/047g72407', 'en', 1, 'https://ror.org/047g72407 Eastern Nazarene College'),
(574, 'https://ror.org/02xag2b27', 'en', 1, 'https://ror.org/02xag2b27 Eastern New Mexico University'),
(575, 'https://ror.org/01s8xxq04', 'en', 1, 'https://ror.org/01s8xxq04 Eastern Oregon University'),
(576, 'https://ror.org/017hkng22', 'en', 1, 'https://ror.org/017hkng22 Ehime University 愛媛大学'),
(577, 'https://ror.org/02n5cs023', 'en', 1, 'https://ror.org/02n5cs023 Elizabeth City State University'),
(578, 'https://ror.org/010jskt71', 'en', 1, 'https://ror.org/010jskt71 Embry–Riddle Aeronautical University'),
(579, 'https://ror.org/05shfp710', 'en', 1, 'https://ror.org/05shfp710 Evangel University'),
(580, 'https://ror.org/05qkp7h42', 'en', 1, 'https://ror.org/05qkp7h42 Five Branches University'),
(581, 'https://ror.org/008pwh115', 'en', 1, 'https://ror.org/008pwh115 Florida Memorial University'),
(582, 'https://ror.org/00pg98t08', 'en', 1, 'https://ror.org/00pg98t08 Francis Marion University'),
(583, 'https://ror.org/000zamq06', 'en', 1, 'https://ror.org/000zamq06 Franklin W. Olin College of Engineering'),
(584, 'https://ror.org/005ywsr52', 'en', 1, 'https://ror.org/005ywsr52 Friends University'),
(585, 'https://ror.org/048drzm61', 'en', 1, 'https://ror.org/048drzm61 Frostburg State University UniversitĆ© d''Ɖtat de frostburg'),
(586, 'https://ror.org/02y041669', 'en', 1, 'https://ror.org/02y041669 Gannon University'),
(587, 'https://ror.org/04cyk2a69', 'en', 1, 'https://ror.org/04cyk2a69 General de Jesus College'),
(588, 'https://ror.org/044pfy487', 'en', 1, 'https://ror.org/044pfy487 Georgia Southwestern State University'),
(589, 'https://ror.org/04m8b1e20', 'en', 1, 'https://ror.org/04m8b1e20 Georgian Court University'),
(590, 'https://ror.org/00wtq7t14', 'en', 1, 'https://ror.org/00wtq7t14 Governors State University'),
(591, 'https://ror.org/05mnb6484', 'en', 1, 'https://ror.org/05mnb6484 Grambling State University UniversitĆ© d''Ɖtat de grambling'),
(592, 'https://ror.org/046fm7598', 'en', 1, 'https://ror.org/046fm7598 Gunma University 群馬大学'),
(593, 'https://ror.org/02mb9s657', 'en', 1, 'https://ror.org/02mb9s657 Hampden–Sydney College'),
(594, 'https://ror.org/05fde5z47', 'en', 1, 'https://ror.org/05fde5z47 Hampton University UniversitƩ de hampton'),
(595, 'https://ror.org/0376mc966', 'en', 1, 'https://ror.org/0376mc966 Haskell Indian Nations University'),
(596, 'https://ror.org/02q5gkg61', 'en', 1, 'https://ror.org/02q5gkg61 Henderson State University UniversitĆ© d''Ɖtat henderson'),
(597, 'https://ror.org/00yghrj63', 'en', 1, 'https://ror.org/00yghrj63 Hendrix College'),
(598, 'https://ror.org/02syg0q74', 'en', 1, 'https://ror.org/02syg0q74 Hirosaki University 弘前大学'),
(599, 'https://ror.org/03chnr738', 'en', 1, 'https://ror.org/03chnr738 Hope College'),
(600, 'https://ror.org/00bx6dj65', 'en', 1, 'https://ror.org/00bx6dj65 Hosei University 法政大学'),
(601, 'https://ror.org/00vhhbt37', 'en', 1, 'https://ror.org/00vhhbt37 Howard Payne University'),
(602, 'https://ror.org/02my3bx32', 'en', 1, 'https://ror.org/02my3bx32 Hubei University of Chinese Medicine ę¹–åŒ—äø­åŒ»čÆå¤§å­¦'),
(603, 'https://ror.org/0176jt031', 'en', 1, 'https://ror.org/0176jt031 Huston–Tillotson University'),
(604, 'https://ror.org/02mtbrk18', 'en', 1, 'https://ror.org/02mtbrk18 Immaculata University'),
(605, 'https://ror.org/02s1hvj37', 'en', 1, 'https://ror.org/02s1hvj37 Indiana University South Bend'),
(606, 'https://ror.org/00ac5y077', 'pt', 1, 'https://ror.org/00ac5y077 Instituto Superior Autónomo de Estudos Politécnicos'),
(607, 'https://ror.org/01ecnnp60', 'en', 1, 'https://ror.org/01ecnnp60 Jackson State University UniversitĆ© d''Ɖtat de Jackson'),
(608, 'https://ror.org/014wfj781', 'en', 1, 'https://ror.org/014wfj781 Jacksonville State University UniversitĆ© d''Ɖtat de jacksonville'),
(609, 'https://ror.org/050rkhq40', 'en', 1, 'https://ror.org/050rkhq40 Jacksonville University Universidad de Jacksonville UniversitƩ de jacksonville'),
(610, 'https://ror.org/02ct41q97', 'en', 1, 'https://ror.org/02ct41q97 John Brown University'),
(611, 'https://ror.org/01ayg2409', 'no_lang_code', 1, 'https://ror.org/01ayg2409 Juniata College'),
(612, 'https://ror.org/01692sz90', 'no_lang_code', 1, 'https://ror.org/01692sz90 Juntendo University 順天堂大学'),
(613, 'https://ror.org/01p37he69', 'en', 1, 'https://ror.org/01p37he69 Kansas Wesleyan University'),
(614, 'https://ror.org/049pfb863', 'en', 1, 'https://ror.org/049pfb863 Kent State University UniversitĆ© d''Ɖtat de kent'),
(615, 'https://ror.org/046ekqm80', 'en', 1, 'https://ror.org/046ekqm80 Kentucky Community and Technical College System'),
(616, 'https://ror.org/01evb6z23', 'en', 1, 'https://ror.org/01evb6z23 King University'),
(617, 'https://ror.org/02bxrp522', 'en', 1, 'https://ror.org/02bxrp522 Knoxville College'),
(618, 'https://ror.org/01v7y5b55', 'en', 1, 'https://ror.org/01v7y5b55 Korea Maritime and Ocean University ķ•œźµ­ķ•“ģ–‘ėŒ€ķ•™źµ'),
(619, 'https://ror.org/00ktqrd38', 'en', 1, 'https://ror.org/00ktqrd38 Kyoto Prefectural University äŗ¬éƒ½åŗœē«‹å¤§å­¦'),
(620, 'https://ror.org/05t70xh16', 'en', 1, 'https://ror.org/05t70xh16 Kyoto Sangyo University äŗ¬éƒ½ē”£ę„­å¤§å­¦'),
(621, 'https://ror.org/02beve479', 'en', 1, 'https://ror.org/02beve479 La Salle University Universidad de la Salle UniversitƩ la Salle'),
(622, 'https://ror.org/00yeysh84', 'en', 1, 'https://ror.org/00yeysh84 Lake Superior State University UniversitĆ© d''Ɖtat du lac supĆ©rieur'),
(623, 'https://ror.org/008ms5s18', 'en', 1, 'https://ror.org/008ms5s18 Lamar University'),
(624, 'https://ror.org/05eq86m59', 'en', 1, 'https://ror.org/05eq86m59 Lander University'),
(625, 'https://ror.org/04d52ej85', 'en', 1, 'https://ror.org/04d52ej85 Lawrence Technological University UniversitƩ technologique lawrence'),
(626, 'https://ror.org/005w9jb47', 'en', 1, 'https://ror.org/005w9jb47 Lawrence University Universidad Lawrence'),
(627, 'https://ror.org/039dmez53', 'en', 1, 'https://ror.org/039dmez53 LeMoyne–Owen College'),
(628, 'https://ror.org/006t60p65', 'en', 1, 'https://ror.org/006t60p65 LeTourneau University'),
(629, 'https://ror.org/05py5qd41', 'en', 1, 'https://ror.org/05py5qd41 Lebanon Valley College'),
(630, 'https://ror.org/00fwhaq79', 'en', 1, 'https://ror.org/00fwhaq79 Lee University'),
(631, 'https://ror.org/03m908832', 'en', 1, 'https://ror.org/03m908832 Lehman College'),
(632, 'https://ror.org/013ennz48', 'en', 1, 'https://ror.org/013ennz48 Lesley University'),
(633, 'https://ror.org/013pz1582', 'en', 1, 'https://ror.org/013pz1582 Lewis & Clark College'),
(634, 'https://ror.org/0376vhj74', 'en', 1, 'https://ror.org/0376vhj74 Lewis University'),
(635, 'https://ror.org/046aym564', 'en', 1, 'https://ror.org/046aym564 Lock Haven University'),
(636, 'https://ror.org/05g44an34', 'en', 1, 'https://ror.org/05g44an34 Long Beach City College'),
(637, 'https://ror.org/02rg9ze43', 'en', 1, 'https://ror.org/02rg9ze43 Madonna University UniversitƩ madonna'),
(638, 'https://ror.org/01emtgd92', 'en', 1, 'https://ror.org/01emtgd92 Mansfield University'),
(639, 'https://ror.org/02myg6142', 'en', 1, 'https://ror.org/02myg6142 Maryville University'),
(640, 'https://ror.org/032knn732', 'en', 1, 'https://ror.org/032knn732 Mayville State University'),
(641, 'https://ror.org/045x76g34', 'en', 1, 'https://ror.org/045x76g34 McMurry University'),
(642, 'https://ror.org/00h04da97', 'en', 1, 'https://ror.org/00h04da97 McNeese State University'),
(643, 'https://ror.org/01g67by91', 'en', 1, 'https://ror.org/01g67by91 Mercer University Health Sciences Center'),
(644, 'https://ror.org/03fa2nf38', 'en', 1, 'https://ror.org/03fa2nf38 Methodist University'),
(645, 'https://ror.org/03mnxwj46', 'en', 1, 'https://ror.org/03mnxwj46 Metropolitan State University of Denver'),
(646, 'https://ror.org/0217hb928', 'en', 1, 'https://ror.org/0217hb928 Middlebury College'),
(647, 'https://ror.org/00t30ch44', 'en', 1, 'https://ror.org/00t30ch44 Midwestern State University UniversitĆ© d''Ɖtat du midwest'),
(648, 'https://ror.org/02x2aj034', 'en', 1, 'https://ror.org/02x2aj034 Millersville University'),
(649, 'https://ror.org/0494reh34', 'en', 1, 'https://ror.org/0494reh34 Millsaps College'),
(650, 'https://ror.org/03msdae35', 'en', 1, 'https://ror.org/03msdae35 Minnesota State University Moorhead UniversitĆ© d''Ɖtat du minnesota'),
(651, 'https://ror.org/01p7j6t08', 'en', 1, 'https://ror.org/01p7j6t08 Mississippi College'),
(652, 'https://ror.org/01hs43g67', 'en', 1, 'https://ror.org/01hs43g67 Mississippi University for Women'),
(653, 'https://ror.org/00rz5xc38', 'en', 1, 'https://ror.org/00rz5xc38 Mississippi Valley State University'),
(654, 'https://ror.org/03vn2ff22', 'en', 1, 'https://ror.org/03vn2ff22 Missouri Western State University'),
(655, 'https://ror.org/03rbn9086', 'en', 1, 'https://ror.org/03rbn9086 Monmouth College'),
(656, 'https://ror.org/01tj58m37', 'en', 1, 'https://ror.org/01tj58m37 Montana State University Billings'),
(657, 'https://ror.org/02y9g2b52', 'en', 1, 'https://ror.org/02y9g2b52 Morehouse College'),
(658, 'https://ror.org/03cqsth74', 'en', 1, 'https://ror.org/03cqsth74 Muhlenberg College'),
(659, 'https://ror.org/046410650', 'en', 1, 'https://ror.org/046410650 Muskingum University'),
(660, 'https://ror.org/00ys1hz88', 'en', 1, 'https://ror.org/00ys1hz88 Nagaoka University of Technology é•·å²”ęŠ€č”“ē§‘å­¦å¤§å­¦'),
(661, 'https://ror.org/05vn3ca78', 'en', 1, 'https://ror.org/05vn3ca78 National Chung Hsing University'),
(662, 'https://ror.org/05xszy717', 'en', 1, 'https://ror.org/05xszy717 National Defense Academy of Japan é˜²č”›å¤§å­¦ę ”'),
(663, 'https://ror.org/02bn97g32', 'en', 1, 'https://ror.org/02bn97g32 National Defense Medical Center'),
(664, 'https://ror.org/04zbkyt39', 'en', 1, 'https://ror.org/04zbkyt39 National Hispanic University'),
(665, 'https://ror.org/03bvvnt49', 'en', 1, 'https://ror.org/03bvvnt49 National Taiwan Ocean University'),
(666, 'https://ror.org/00w6bqp33', 'en', 1, 'https://ror.org/00w6bqp33 National University of Health Sciences'),
(667, 'https://ror.org/03xp4dz54', 'en', 1, 'https://ror.org/03xp4dz54 Nebraska Wesleyan University'),
(668, 'https://ror.org/0546wew42', 'en', 1, 'https://ror.org/0546wew42 New Jersey City University'),
(669, 'https://ror.org/016tyxe19', 'en', 1, 'https://ror.org/016tyxe19 New Mexico Highlands University'),
(670, 'https://ror.org/021a7pw18', 'en', 1, 'https://ror.org/021a7pw18 New York City College of Technology'),
(671, 'https://ror.org/0038gz437', 'en', 1, 'https://ror.org/0038gz437 Newman University'),
(672, 'https://ror.org/05jk51a88', 'en', 1, 'https://ror.org/05jk51a88 Nihon University ę—„ęœ¬å¤§å­¦'),
(673, 'https://ror.org/030pydv62', 'en', 1, 'https://ror.org/030pydv62 Norfolk State University UniversitĆ© d''Ɖtat de norfolk'),
(674, 'https://ror.org/004sxt390', 'en', 1, 'https://ror.org/004sxt390 North Park University'),
(675, 'https://ror.org/04edns687', 'en', 1, 'https://ror.org/04edns687 Northeastern Illinois University'),
(676, 'https://ror.org/05maved80', 'en', 1, 'https://ror.org/05maved80 Northwest Missouri State University'),
(677, 'https://ror.org/01bry7z39', 'en', 1, 'https://ror.org/01bry7z39 Northwest Nazarene University'),
(678, 'https://ror.org/049ams583', 'en', 1, 'https://ror.org/049ams583 Northwestern State University UniversitĆ© d''Ɖtat northwestern'),
(679, 'https://ror.org/042bbge36', 'en', 1, 'https://ror.org/042bbge36 Nova Southeastern University Universidad de Nova Southeastern'),
(680, 'https://ror.org/05rvey468', 'en', 1, 'https://ror.org/05rvey468 Oglethorpe University'),
(681, 'https://ror.org/052963a64', 'en', 1, 'https://ror.org/052963a64 Ohio Northern University'),
(682, 'https://ror.org/04nwm7739', 'en', 1, 'https://ror.org/04nwm7739 Oklahoma Baptist University'),
(683, 'https://ror.org/02bs0cv29', 'en', 1, 'https://ror.org/02bs0cv29 Oklahoma City University'),
(684, 'https://ror.org/0446zdv37', 'en', 1, 'https://ror.org/0446zdv37 Oklahoma Panhandle State University'),
(685, 'https://ror.org/038nb9c73', 'en', 1, 'https://ror.org/038nb9c73 Olivet Nazarene University'),
(686, 'https://ror.org/058hnhf91', 'en', 1, 'https://ror.org/058hnhf91 Oral Roberts University'),
(687, 'https://ror.org/044r07286', 'en', 1, 'https://ror.org/044r07286 Ouachita Baptist University'),
(688, 'https://ror.org/029wb5j17', 'en', 1, 'https://ror.org/029wb5j17 Our Lady of the Lake University'),
(689, 'https://ror.org/04f812k67', 'en', 1, 'https://ror.org/04f812k67 Palo Alto University'),
(690, 'https://ror.org/04ngpga37', 'en', 1, 'https://ror.org/04ngpga37 Park University'),
(691, 'https://ror.org/02k46bn27', 'en', 1, 'https://ror.org/02k46bn27 Pfeiffer University'),
(692, 'https://ror.org/02rsjqy82', 'en', 1, 'https://ror.org/02rsjqy82 Point Loma Nazarene University'),
(693, 'https://ror.org/01e4pq504', 'en', 1, 'https://ror.org/01e4pq504 Portland Community College'),
(694, 'https://ror.org/00yw5v481', 'en', 1, 'https://ror.org/00yw5v481 Prince George''s Community College'),
(695, 'https://ror.org/03a4vma36', 'en', 1, 'https://ror.org/03a4vma36 Queensborough Community College, CUNY'),
(696, 'https://ror.org/03zstcc67', 'en', 1, 'https://ror.org/03zstcc67 Randolph–Macon College'),
(697, 'https://ror.org/01dgn5344', 'en', 1, 'https://ror.org/01dgn5344 Rider University Universidad Rider UniversitƩ de rider'),
(698, 'https://ror.org/025kav035', 'en', 1, 'https://ror.org/025kav035 Ripon College'),
(699, 'https://ror.org/03r24vd05', 'en', 1, 'https://ror.org/03r24vd05 Robert Morris University Universidad Robert Morris'),
(700, 'https://ror.org/020vmqv16', 'en', 1, 'https://ror.org/020vmqv16 Roosevelt University'),
(701, 'https://ror.org/0405thq08', 'en', 1, 'https://ror.org/0405thq08 Saint Ambrose University UniversitƩ saint ambroise'),
(702, 'https://ror.org/05q87sg56', 'en', 1, 'https://ror.org/05q87sg56 Saint Joseph''s University Universidad de San JosƩ UniversitƩ saint-joseph de philadelphie'),
(703, 'https://ror.org/04v3sec91', 'en', 1, 'https://ror.org/04v3sec91 Saint Mary''s University of Minnesota'),
(704, 'https://ror.org/03b353k89', 'en', 1, 'https://ror.org/03b353k89 Saint Michael''s College'),
(705, 'https://ror.org/04ws6z706', 'en', 1, 'https://ror.org/04ws6z706 Saint Xavier University'),
(706, 'https://ror.org/03dqzan26', 'en', 1, 'https://ror.org/03dqzan26 Salem University'),
(707, 'https://ror.org/04sxj4848', 'en', 1, 'https://ror.org/04sxj4848 Sarah Lawrence College'),
(708, 'https://ror.org/00mns7k70', 'en', 1, 'https://ror.org/00mns7k70 Savannah State University UniversitĆ© d''Ɖtat de Savannah'),
(709, 'https://ror.org/02yjrq169', 'en', 1, 'https://ror.org/02yjrq169 Savannah Technical College'),
(710, 'https://ror.org/02gzbg991', 'en', 1, 'https://ror.org/02gzbg991 Seattle Pacific University'),
(711, 'https://ror.org/00aft1q37', 'en', 1, 'https://ror.org/00aft1q37 Sejong University ģ„øģ¢…ėŒ€ķ•™źµ'),
(712, 'https://ror.org/04wm83d45', 'en', 1, 'https://ror.org/04wm83d45 Selma University'),
(713, 'https://ror.org/007tn5k56', 'en', 1, 'https://ror.org/007tn5k56 Seton Hall University'),
(714, 'https://ror.org/049x01c36', 'en', 1, 'https://ror.org/049x01c36 Shaw University'),
(715, 'https://ror.org/01w6wtk13', 'en', 1, 'https://ror.org/01w6wtk13 Shizuoka University 静岔大学'),
(716, 'https://ror.org/05aczzj13', 'en', 1, 'https://ror.org/05aczzj13 Shumei University ē§€ę˜Žå¤§å­¦'),
(717, 'https://ror.org/01v62m802', 'en', 1, 'https://ror.org/01v62m802 Siena College'),
(718, 'https://ror.org/04jjn8965', 'en', 1, 'https://ror.org/04jjn8965 Simpson College'),
(719, 'https://ror.org/00pczg388', 'en', 1, 'https://ror.org/00pczg388 Sinclair Community College'),
(720, 'https://ror.org/02q2dn726', 'no_lang_code', 1, 'https://ror.org/02q2dn726 Sinte Gleska University'),
(721, 'https://ror.org/0369st156', 'en', 1, 'https://ror.org/0369st156 Slippery Rock University'),
(722, 'https://ror.org/017xnm587', 'en', 1, 'https://ror.org/017xnm587 Soongsil University ģˆ­ģ‹¤ėŒ€ķ•™źµ'),
(723, 'https://ror.org/005ezrx44', 'en', 1, 'https://ror.org/005ezrx44 South-West State University Юго-ЗапаГный Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(724, 'https://ror.org/00520ze08', 'en', 1, 'https://ror.org/00520ze08 South Carolina State University'),
(725, 'https://ror.org/010n41y16', 'en', 1, 'https://ror.org/010n41y16 Southeast Missouri State University'),
(726, 'https://ror.org/0531xck41', 'en', 1, 'https://ror.org/0531xck41 Southeastern Louisiana University Universidad del Sudeste de Luisiana'),
(727, 'https://ror.org/01aryec24', 'en', 1, 'https://ror.org/01aryec24 Southeastern Oklahoma State University'),
(728, 'https://ror.org/036sak533', 'en', 1, 'https://ror.org/036sak533 Southern Arkansas University'),
(729, 'https://ror.org/04pyrxz13', 'en', 1, 'https://ror.org/04pyrxz13 Southern California University of Health Sciences'),
(730, 'https://ror.org/04cqs5j56', 'en', 1, 'https://ror.org/04cqs5j56 Southern Illinois University Edwardsville'),
(731, 'https://ror.org/00cckeg37', 'en', 1, 'https://ror.org/00cckeg37 Southern Polytechnic State University'),
(732, 'https://ror.org/05q8e6988', 'en', 1, 'https://ror.org/05q8e6988 Southern University at New Orleans'),
(733, 'https://ror.org/04y71bh49', 'en', 1, 'https://ror.org/04y71bh49 Southern University at Shreveport'),
(734, 'https://ror.org/04gfeaw48', 'en', 1, 'https://ror.org/04gfeaw48 Southern Utah University'),
(735, 'https://ror.org/01y8xtk20', 'en', 1, 'https://ror.org/01y8xtk20 Southwestern Oklahoma State University'),
(736, 'https://ror.org/00sh4ma05', 'en', 1, 'https://ror.org/00sh4ma05 Southwestern Oregon Community College'),
(737, 'https://ror.org/039f7g519', 'en', 1, 'https://ror.org/039f7g519 Springfield Technical Community College'),
(738, 'https://ror.org/05fwyj602', 'en', 1, 'https://ror.org/05fwyj602 St. Jerome''s University'),
(739, 'https://ror.org/05sqd3t97', 'en', 1, 'https://ror.org/05sqd3t97 Sistema universitario estatal de Florida State University System of Florida'),
(740, 'https://ror.org/01efrfk30', 'en', 1, 'https://ror.org/01efrfk30 Stetson University'),
(741, 'https://ror.org/05y50nr98', 'en', 1, 'https://ror.org/05y50nr98 Suffolk University Universidad de Suffolk'),
(742, 'https://ror.org/05e3rkh95', 'en', 1, 'https://ror.org/05e3rkh95 Sweet Briar College'),
(743, 'https://ror.org/02nx5r318', 'en', 1, 'https://ror.org/02nx5r318 College of New Jersey'),
(744, 'https://ror.org/04tft4718', 'no_lang_code', 1, 'https://ror.org/04tft4718 Tamkang University 淔江大學'),
(745, 'https://ror.org/01qtnxn83', 'en', 1, 'https://ror.org/01qtnxn83 Technical University of Nova Scotia'),
(746, 'https://ror.org/043yd1m08', 'en', 1, 'https://ror.org/043yd1m08 The Evergreen State College'),
(747, 'https://ror.org/02tvcev59', 'en', 1, 'https://ror.org/02tvcev59 La Nueva Escuela New School'),
(748, 'https://ror.org/01m006041', 'en', 1, 'https://ror.org/01m006041 Thiel College'),
(749, 'https://ror.org/009p4eg54', 'en', 1, 'https://ror.org/009p4eg54 Tilka Manjhi Bhagalpur University तिलका ą¤®ą¤¾ą¤‚ą¤ą„€ ą¤­ą¤¾ą¤—ą¤²ą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(750, 'https://ror.org/001hv0k59', 'en', 1, 'https://ror.org/001hv0k59 Toyota Technological Institute č±Šē”°å·„ę„­å¤§å­¦'),
(751, 'https://ror.org/01h4hqc60', 'en', 1, 'https://ror.org/01h4hqc60 Transylvania University'),
(752, 'https://ror.org/029jj9438', 'en', 1, 'https://ror.org/029jj9438 Troy University'),
(753, 'https://ror.org/00zhvdn11', 'en', 1, 'https://ror.org/00zhvdn11 Tunghai University ę±ęµ·å¤§å­ø'),
(754, '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'),
(755, 'https://ror.org/02pg0e883', 'en', 1, 'https://ror.org/02pg0e883 University of Aizu 会擄大学'),
(756, 'https://ror.org/02grymn95', 'en', 1, 'https://ror.org/02grymn95 University of Arkansas – Fort Smith'),
(757, 'https://ror.org/05xn9jy83', 'en', 1, 'https://ror.org/05xn9jy83 University of Arkansas at Monticello'),
(758, 'https://ror.org/03zsjhd07', 'en', 1, 'https://ror.org/03zsjhd07 University of Arkansas at Pine Bluff UniversitƩ de l''arkansas Ơ pine bluff'),
(759, 'https://ror.org/029bp0k25', 'en', 1, 'https://ror.org/029bp0k25 University of Central Arkansas'),
(760, 'https://ror.org/00v3ak792', 'en', 1, 'https://ror.org/00v3ak792 Universidad de Dallas University of Dallas UniversitƩ de Dallas'),
(761, 'https://ror.org/02x73b849', 'en', 1, 'https://ror.org/02x73b849 University of Electro-Communications é›»ę°—é€šäæ”å¤§å­¦'),
(762, 'https://ror.org/03yemaq40', 'en', 1, 'https://ror.org/03yemaq40 University of Findlay'),
(763, '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'),
(764, 'https://ror.org/02kg81z20', 'en', 1, 'https://ror.org/02kg81z20 Universidad de La Verne University of La Verne'),
(765, 'https://ror.org/02qeh3c90', 'en', 1, 'https://ror.org/02qeh3c90 University of Louisiana at Monroe UniversitƩ de Louisiane Ơ Monroe'),
(766, 'https://ror.org/00ydm0027', 'en', 1, 'https://ror.org/00ydm0027 University of Maine at Farmington'),
(767, 'https://ror.org/00e9xa106', 'en', 1, 'https://ror.org/00e9xa106 University of Maine at Machias'),
(768, 'https://ror.org/00nk17n43', 'en', 1, 'https://ror.org/00nk17n43 University of Maine at Presque Isle'),
(769, 'https://ror.org/03b48gv34', 'en', 1, 'https://ror.org/03b48gv34 University of Mary Washington UniversitƩ de mary washington'),
(770, 'https://ror.org/01hy4qx27', 'en', 1, 'https://ror.org/01hy4qx27 University of Minnesota, Duluth'),
(771, 'https://ror.org/05vzqzh92', 'en', 1, 'https://ror.org/05vzqzh92 University of Minnesota Morris UniversitƩ du minnesota Ơ morris'),
(772, 'https://ror.org/01w0d5g70', 'en', 1, 'https://ror.org/01w0d5g70 University of Missouri–Kansas City'),
(773, 'https://ror.org/01fd8g905', 'en', 1, 'https://ror.org/01fd8g905 University of Montevallo'),
(774, 'https://ror.org/02n2ava60', 'en', 1, 'https://ror.org/02n2ava60 University of New England'),
(775, 'https://ror.org/0584fj407', 'en', 1, 'https://ror.org/0584fj407 University of North Alabama'),
(776, 'https://ror.org/017c6at71', 'en', 1, 'https://ror.org/017c6at71 University of North Carolina at Asheville'),
(777, 'https://ror.org/0457zbj98', 'en', 1, 'https://ror.org/0457zbj98 University of Oklahoma Health Sciences Center'),
(778, 'https://ror.org/041jw5813', 'en', 1, 'https://ror.org/041jw5813 University of San Carlos'),
(779, 'https://ror.org/001c9gn96', 'en', 1, 'https://ror.org/001c9gn96 University of Science and Arts of Oklahoma'),
(780, 'https://ror.org/05en5nh73', 'en', 1, 'https://ror.org/05en5nh73 University of Seoul ģ„œģšøģ‹œė¦½ėŒ€ķ•™źµ'),
(781, 'https://ror.org/02d9k9g58', 'en', 1, 'https://ror.org/02d9k9g58 University of South Carolina Aiken'),
(782, 'https://ror.org/05ked8481', 'en', 1, 'https://ror.org/05ked8481 University of South Carolina Beaufort'),
(783, 'https://ror.org/00t9hhv14', 'en', 1, 'https://ror.org/00t9hhv14 University of South Carolina Upstate'),
(784, 'https://ror.org/03ke6tv85', 'en', 1, 'https://ror.org/03ke6tv85 University of Southern Maine'),
(785, 'https://ror.org/03ysk5e42', 'en', 1, 'https://ror.org/03ysk5e42 University of Suwon ģˆ˜ģ›ėŒ€ķ•™źµ'),
(786, 'https://ror.org/007h1g065', 'en', 1, 'https://ror.org/007h1g065 Universidad de Tampa University of Tampa'),
(787, 'https://ror.org/01244fm76', 'en', 1, 'https://ror.org/01244fm76 University of Tennessee at Martin'),
(788, 'https://ror.org/01sps7q28', 'en', 1, 'https://ror.org/01sps7q28 The University of Texas Health Science Center at Tyler'),
(789, 'https://ror.org/019kgqr73', 'en', 1, 'https://ror.org/019kgqr73 The University of Texas at Arlington UniversitƩ du Texas Ơ Arlington'),
(790, 'https://ror.org/051smbs96', 'en', 1, 'https://ror.org/051smbs96 The University of Texas of the Permian Basin'),
(791, 'https://ror.org/044vy1d05', 'en', 1, 'https://ror.org/044vy1d05 Tokushima University 徳島大学'),
(792, 'https://ror.org/03np13864', 'en', 1, 'https://ror.org/03np13864 Universidad de Trinidad y Tobago University of Trinidad and Tobago'),
(793, 'https://ror.org/04wn28048', 'en', 1, 'https://ror.org/04wn28048 University of Tulsa UniversitƩ de tulsa'),
(794, 'https://ror.org/04scfb908', 'en', 1, 'https://ror.org/04scfb908 Alfred Health'),
(795, 'https://ror.org/02c2f8975', 'en', 1, 'https://ror.org/02c2f8975 University of Ulsan ģšøģ‚°ėŒ€ķ•™źµ'),
(796, 'https://ror.org/010acrp16', 'en', 1, 'https://ror.org/010acrp16 University of West Alabama'),
(797, 'https://ror.org/01cqxk816', 'en', 1, 'https://ror.org/01cqxk816 University of West Georgia'),
(798, 'https://ror.org/03c8vvr84', 'en', 1, 'https://ror.org/03c8vvr84 University of Western States'),
(799, 'https://ror.org/03mnm0t94', 'en', 1, 'https://ror.org/03mnm0t94 University of Wisconsin–Eau Claire UniversitĆ© du Wisconsin Ć  Eau Claire'),
(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/05s9f4d27', 'en', 1, 'https://ror.org/05s9f4d27 University of Wisconsin–Parkside UniversitĆ© du Wisconsin–Parkside'),
(802, 'https://ror.org/05sv6pg41', 'en', 1, 'https://ror.org/05sv6pg41 University of Wisconsin–Stevens Point UniversitĆ© du Wisconsin–Stevens Point'),
(803, 'https://ror.org/00z2qhk53', 'en', 1, 'https://ror.org/00z2qhk53 University of Wisconsin–Superior UniversitĆ© du Wisconsin–Superior'),
(804, 'https://ror.org/059x21724', 'en', 1, 'https://ror.org/059x21724 University of Yamanashi 山梨大学'),
(805, 'https://ror.org/037wegn60', 'en', 1, 'https://ror.org/037wegn60 University of the District of Columbia UniversitƩ du district de columbia'),
(806, 'https://ror.org/044a5dk27', 'en', 1, 'https://ror.org/044a5dk27 Universidad del Verbo Encarnado University of the Incarnate Word UniversitƩ du verbe incarnƩ'),
(807, 'https://ror.org/05r5k8873', 'en', 1, 'https://ror.org/05r5k8873 Sewanee: The University of the South'),
(808, 'https://ror.org/02jqn4a25', 'en', 1, 'https://ror.org/02jqn4a25 Ursinus College'),
(809, 'https://ror.org/05bx1gz93', 'en', 1, 'https://ror.org/05bx1gz93 Utsunomiya University 宇都宮大学'),
(810, 'https://ror.org/04esvpn06', 'en', 1, 'https://ror.org/04esvpn06 UniversitĆ© d''Ɖtat de virginie Virginia State University'),
(811, 'https://ror.org/02zwyfg51', 'en', 1, 'https://ror.org/02zwyfg51 Virginia Union University'),
(812, 'https://ror.org/00k5m1279', 'en', 1, 'https://ror.org/00k5m1279 West Virginia University at Parkersburg'),
(813, 'https://ror.org/057nqxc22', 'en', 1, 'https://ror.org/057nqxc22 West Virginia Wesleyan College'),
(814, 'https://ror.org/0446vnd56', 'en', 1, 'https://ror.org/0446vnd56 Western Kentucky University'),
(815, 'https://ror.org/00r5mr697', 'en', 1, 'https://ror.org/00r5mr697 Western New Mexico University'),
(816, 'https://ror.org/03tktyg33', 'en', 1, 'https://ror.org/03tktyg33 Western Oklahoma State College'),
(817, 'https://ror.org/02z310y44', 'en', 1, 'https://ror.org/02z310y44 Wheeling Jesuit University');
INSERT INTO `rors` VALUES
(818, 'https://ror.org/02b50zn53', 'en', 1, 'https://ror.org/02b50zn53 UniversitƩ de wilberforce Wilberforce University'),
(819, 'https://ror.org/05ktv1y25', 'en', 1, 'https://ror.org/05ktv1y25 William Woods University'),
(820, 'https://ror.org/05japer20', 'en', 1, 'https://ror.org/05japer20 Wilson College'),
(821, 'https://ror.org/049yc0897', 'en', 1, 'https://ror.org/049yc0897 Winston-Salem State University'),
(822, 'https://ror.org/04mpzkf73', 'en', 1, 'https://ror.org/04mpzkf73 Winthrop University'),
(823, 'https://ror.org/015a1ak54', 'en', 1, 'https://ror.org/015a1ak54 York College, City University of New York'),
(824, 'https://ror.org/038zf2n28', 'en', 1, 'https://ror.org/038zf2n28 Youngstown State University'),
(825, 'https://ror.org/04epb4p87', 'en', 1, 'https://ror.org/04epb4p87 Zhejiang Chinese Medical University ęµ™ę±Ÿäø­åŒ»čÆå¤§å­¦'),
(826, 'https://ror.org/03kpvby98', 'en', 1, 'https://ror.org/03kpvby98 MRC Unit for Lifelong Health and Ageing'),
(827, 'https://ror.org/009sa0g06', 'en', 1, 'https://ror.org/009sa0g06 Royal Liverpool and Broadgreen University Hospital NHS Trust'),
(828, 'https://ror.org/0587whv30', 'no_lang_code', 1, 'https://ror.org/0587whv30 Nexeon (United Kingdom)'),
(829, 'https://ror.org/02dqqj223', 'en', 1, 'https://ror.org/02dqqj223 East Kent Hospitals University NHS Foundation Trust'),
(830, 'https://ror.org/0346ycw92', 'no_lang_code', 1, 'https://ror.org/0346ycw92 Saiseikai Central Hospital ę±äŗ¬éƒ½ęøˆē”Ÿä¼šäø­å¤®ē—…é™¢'),
(831, 'https://ror.org/04z9w5078', 'no_lang_code', 1, 'https://ror.org/04z9w5078 Xerox (Canada)'),
(832, 'https://ror.org/055mfda29', 'en', 1, 'https://ror.org/055mfda29 Earth and Space Research'),
(833, 'https://ror.org/028vxwa22', 'en', 1, 'https://ror.org/028vxwa22 Kyoto Prefectural University of Medicine äŗ¬éƒ½åŗœē«‹åŒ»ē§‘å¤§å­¦'),
(834, 'https://ror.org/02crz6e12', 'en', 1, 'https://ror.org/02crz6e12 Singapore Eye Research Institute'),
(835, 'https://ror.org/01jdekv92', 'en', 1, 'https://ror.org/01jdekv92 Berkeley Geochronology Center'),
(836, 'https://ror.org/0489f6q08', 'en', 1, 'https://ror.org/0489f6q08 Cardiff and Vale University Health Board'),
(837, 'https://ror.org/00c8v4891', 'en', 1, 'https://ror.org/00c8v4891 Long Island Jewish Medical Center'),
(838, 'https://ror.org/00z9zsj19', 'en', 1, 'https://ror.org/00z9zsj19 Butler Hospital'),
(839, 'https://ror.org/022k36x48', 'no_lang_code', 1, 'https://ror.org/022k36x48 Taylor Wimpey (United Kingdom)'),
(840, 'https://ror.org/04ywg3445', 'no_lang_code', 1, 'https://ror.org/04ywg3445 New England Biolabs (United States)'),
(841, 'https://ror.org/012zkqp76', 'en', 1, 'https://ror.org/012zkqp76 Delaware Division of Public Health'),
(842, 'https://ror.org/035z6xf33', 'en', 1, 'https://ror.org/035z6xf33 Oklahoma Medical Research Foundation'),
(843, 'https://ror.org/02c8hpe74', 'en', 1, 'https://ror.org/02c8hpe74 James J. Peters VA Medical Center'),
(844, 'https://ror.org/0516ah480', 'en', 1, 'https://ror.org/0516ah480 The Graduate University for Advanced Studies, SOKENDAI ē·åˆē ”ē©¶å¤§å­¦é™¢å¤§å­¦'),
(845, 'https://ror.org/05tmv0d13', 'en', 1, 'https://ror.org/05tmv0d13 American Society of Civil Engineers'),
(846, 'https://ror.org/038mfx688', 'en', 1, 'https://ror.org/038mfx688 National Academy of Sciences'),
(847, 'https://ror.org/05a3jmv43', 'no_lang_code', 1, 'https://ror.org/05a3jmv43 Format International Ltd'),
(848, 'https://ror.org/017b7j426', 'no_lang_code', 1, 'https://ror.org/017b7j426 Altera (United States)'),
(849, 'https://ror.org/04npy5k94', 'no_lang_code', 1, 'https://ror.org/04npy5k94 Intracom Telecom (Greece)'),
(850, 'https://ror.org/00zfzef50', 'en', 1, 'https://ror.org/00zfzef50 National Development and Research Institutes'),
(851, 'https://ror.org/03d58dr58', 'en', 1, 'https://ror.org/03d58dr58 National Neuroscience Institute'),
(852, 'https://ror.org/03ezzqh77', 'en', 1, 'https://ror.org/03ezzqh77 Iwate Biotechnology Research Center 貔団法人 å²©ę‰‹ē”Ÿē‰©å·„å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(853, 'https://ror.org/04cg70g73', 'en', 1, 'https://ror.org/04cg70g73 Atmospheric and Environmental Research'),
(854, 'https://ror.org/01ar9e455', 'en', 1, 'https://ror.org/01ar9e455 The Aerospace Corporation'),
(855, 'https://ror.org/02kk6xv61', 'en', 1, 'https://ror.org/02kk6xv61 Creative England'),
(856, 'https://ror.org/03wkg3b53', 'en', 1, 'https://ror.org/03wkg3b53 National Eye Institute'),
(857, 'https://ror.org/05rad4t93', 'en', 1, 'https://ror.org/05rad4t93 Gordon Research Conferences'),
(858, 'https://ror.org/05p48p517', 'en', 1, 'https://ror.org/05p48p517 Northern California Institute for Research and Education'),
(859, 'https://ror.org/00baak391', 'en', 1, 'https://ror.org/00baak391 National Human Genome Research Institute'),
(860, 'https://ror.org/01jfr3w16', 'en', 1, 'https://ror.org/01jfr3w16 Pacific Institute For Research and Evaluation'),
(861, 'https://ror.org/04g43x563', 'en', 1, 'https://ror.org/04g43x563 Minnesota Department of Health'),
(862, 'https://ror.org/02ye8a398', 'en', 1, 'https://ror.org/02ye8a398 Keystone Symposia On Molecular and Cellular Biology'),
(863, 'https://ror.org/0060t0j89', 'en', 1, 'https://ror.org/0060t0j89 Biblioteca Nacional de Medicina United States National Library of Medicine'),
(864, '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'),
(865, 'https://ror.org/032m4kp77', 'en', 1, 'https://ror.org/032m4kp77 Iowa Department of Public Health'),
(866, 'https://ror.org/03cqd3e64', 'en', 1, 'https://ror.org/03cqd3e64 Connecticut Department of Public Health'),
(867, 'https://ror.org/00j2wht38', 'en', 1, 'https://ror.org/00j2wht38 Virginia Department of Health'),
(868, 'https://ror.org/034de1n65', 'en', 1, 'https://ror.org/034de1n65 Utah Department of Health'),
(869, 'https://ror.org/05j91v252', 'en', 1, 'https://ror.org/05j91v252 Oregon Research Institute'),
(870, 'https://ror.org/01mh1c318', 'en', 1, 'https://ror.org/01mh1c318 Federation of American Societies for Experimental Biology'),
(871, 'https://ror.org/00kgerq53', 'en', 1, 'https://ror.org/00kgerq53 Hawaii Department of Health'),
(872, 'https://ror.org/044em4v11', 'en', 1, 'https://ror.org/044em4v11 Tennessee Department of Mental Health and Substance Abuse Services'),
(873, 'https://ror.org/00372qc85', 'en', 1, 'https://ror.org/00372qc85 National Institute of Biomedical Imaging and Bioengineering'),
(874, 'https://ror.org/026s99n34', 'en', 1, 'https://ror.org/026s99n34 West Virginia State Department of Health and Human Resources'),
(875, 'https://ror.org/03tds6380', 'en', 1, 'https://ror.org/03tds6380 Ohio Department of Mental Health & Addiction Services'),
(876, 'https://ror.org/00ra1fg11', 'en', 1, 'https://ror.org/00ra1fg11 Pennsylvania Department of Health'),
(877, 'https://ror.org/045rcvm30', 'en', 1, 'https://ror.org/045rcvm30 Kentucky Cabinet For Health and Family Services'),
(878, 'https://ror.org/03r1zz567', 'en', 1, 'https://ror.org/03r1zz567 Idaho Department of Health and Welfare'),
(879, 'https://ror.org/038qbqz41', 'en', 1, 'https://ror.org/038qbqz41 Lovelace Respiratory Research Institute'),
(880, 'https://ror.org/03k25vb36', 'en', 1, 'https://ror.org/03k25vb36 Indiana State Department of Education'),
(881, 'https://ror.org/00xpcm295', 'en', 1, 'https://ror.org/00xpcm295 Wyoming State Department of Health'),
(882, 'https://ror.org/03m7azy07', 'en', 1, 'https://ror.org/03m7azy07 Nebraska Department of Health and Human Services'),
(883, 'https://ror.org/02sjnfb25', 'en', 1, 'https://ror.org/02sjnfb25 Versiti Blood Center of Wisconsin'),
(884, 'https://ror.org/0258b0610', 'en', 1, 'https://ror.org/0258b0610 Kansas Department of Health and Environment'),
(885, 'https://ror.org/04rqpth59', 'en', 1, 'https://ror.org/04rqpth59 Boston Biomedical Research Institute'),
(886, 'https://ror.org/027fvqp63', 'no_lang_code', 1, 'https://ror.org/027fvqp63 Emmes (United States)'),
(887, 'https://ror.org/006gvnw06', 'en', 1, 'https://ror.org/006gvnw06 North Dakota Department of Health'),
(888, 'https://ror.org/04qjnvx31', 'en', 1, 'https://ror.org/04qjnvx31 Brentwood Biomedical Research Institute'),
(889, 'https://ror.org/032cjfs80', 'en', 1, 'https://ror.org/032cjfs80 Mind Research Network'),
(890, 'https://ror.org/04qm8ac48', 'en', 1, 'https://ror.org/04qm8ac48 Philadelphia Department of Public Health'),
(891, 'https://ror.org/047k06737', 'en', 1, 'https://ror.org/047k06737 South Dakota Department of Health'),
(892, 'https://ror.org/00gdxq105', 'en', 1, 'https://ror.org/00gdxq105 Vermont Department of Mental Health'),
(893, 'https://ror.org/03t7m8092', 'en', 1, 'https://ror.org/03t7m8092 Public Health Foundation Enterprises'),
(894, 'https://ror.org/006j1e620', 'en', 1, 'https://ror.org/006j1e620 Georgia Department of Human Services'),
(895, 'https://ror.org/04y6m3r89', 'en', 1, 'https://ror.org/04y6m3r89 Arkansas State Department of Human Services'),
(896, 'https://ror.org/00wt7xg39', 'no_lang_code', 1, 'https://ror.org/00wt7xg39 Westat (United States)'),
(897, 'https://ror.org/04jdq2t93', 'en', 1, 'https://ror.org/04jdq2t93 Aaron Diamond AIDS Research Center'),
(898, 'https://ror.org/00g578s43', 'no_lang_code', 1, 'https://ror.org/00g578s43 Oregon Center For Applied Science (United States)'),
(899, 'https://ror.org/04x0r0b44', 'en', 1, 'https://ror.org/04x0r0b44 Connecticut Department of Mental Health and Addiction Services'),
(900, 'https://ror.org/02fppms28', 'en', 1, 'https://ror.org/02fppms28 Missouri Department of Mental Health'),
(901, 'https://ror.org/03s9ada67', 'en', 1, 'https://ror.org/03s9ada67 HealthPartners'),
(902, 'https://ror.org/02p599b54', 'en', 1, 'https://ror.org/02p599b54 Treatment Research Institute'),
(903, 'https://ror.org/022xmez67', 'no_lang_code', 1, 'https://ror.org/022xmez67 Microbiotix (United States)'),
(904, 'https://ror.org/030ma0n95', 'en', 1, 'https://ror.org/030ma0n95 Ralph H. Johnson VA Medical Center'),
(905, 'https://ror.org/00ek9j693', 'en', 1, 'https://ror.org/00ek9j693 Bloodworks Northwest'),
(906, 'https://ror.org/00190t495', 'en', 1, 'https://ror.org/00190t495 National Center for Complementary and Integrative Health'),
(907, 'https://ror.org/03jv28t80', 'no_lang_code', 1, 'https://ror.org/03jv28t80 Lynntech (United States)'),
(908, 'https://ror.org/00j4k1h63', 'en', 1, 'https://ror.org/00j4k1h63 National Institute of Environmental Health Sciences'),
(909, 'https://ror.org/03bx60s49', 'en', 1, 'https://ror.org/03bx60s49 Cancer Prevention Institute of California'),
(910, 'https://ror.org/05jr1e079', 'no_lang_code', 1, 'https://ror.org/05jr1e079 Advanced Medical Electronics (United States)'),
(911, 'https://ror.org/03n2ay196', 'en', 1, 'https://ror.org/03n2ay196 South Texas Veterans Health Care System'),
(912, 'https://ror.org/030g3hg75', 'en', 1, 'https://ror.org/030g3hg75 Lankenau Institute for Medical Research'),
(913, 'https://ror.org/036a0e562', 'en', 1, 'https://ror.org/036a0e562 Baltimore VA Medical Center'),
(914, 'https://ror.org/025chrz76', 'en', 1, 'https://ror.org/025chrz76 Marshfield Clinic'),
(915, 'https://ror.org/00j899309', 'no_lang_code', 1, 'https://ror.org/00j899309 Inflexxion (United States)'),
(916, 'https://ror.org/030p45079', 'no_lang_code', 1, 'https://ror.org/030p45079 Cleveland Medical Devices'),
(917, 'https://ror.org/01y3zfr79', 'en', 1, 'https://ror.org/01y3zfr79 National Institute of Nursing Research'),
(918, 'https://ror.org/04wnwd012', 'en', 1, 'https://ror.org/04wnwd012 Education Development Center'),
(919, 'https://ror.org/00nr17z89', 'en', 1, 'https://ror.org/00nr17z89 VA Palo Alto Health Care System'),
(920, 'https://ror.org/04xsjmh40', 'en', 1, 'https://ror.org/04xsjmh40 American Society for Microbiology'),
(921, 'https://ror.org/00wfvxt55', 'en', 1, 'https://ror.org/00wfvxt55 Minnesota Department of Human Services'),
(922, 'https://ror.org/04q48ey07', 'en', 1, 'https://ror.org/04q48ey07 National Institute of General Medical Sciences'),
(923, 'https://ror.org/05j752d14', 'en', 1, 'https://ror.org/05j752d14 McLaughlin Research Institute'),
(924, 'https://ror.org/0226env10', 'no_lang_code', 1, 'https://ror.org/0226env10 Sociometrics Corporation'),
(925, 'https://ror.org/007fyq698', 'en', 1, 'https://ror.org/007fyq698 VA Salt Lake City Healthcare System'),
(926, 'https://ror.org/0242qs713', 'en', 1, 'https://ror.org/0242qs713 Birmingham VA Medical Center'),
(927, 'https://ror.org/044fz2011', 'en', 1, 'https://ror.org/044fz2011 Rhode Island Department of Behavioral Healthcare, Developmental Disabilities and Hospitals'),
(928, 'https://ror.org/03x0d4x24', 'en', 1, 'https://ror.org/03x0d4x24 Pacific Northwest Diabetes Research Institute'),
(929, 'https://ror.org/02fnpv153', 'en', 1, 'https://ror.org/02fnpv153 American Association For Cancer Research'),
(930, 'https://ror.org/00cb9nn43', 'en', 1, 'https://ror.org/00cb9nn43 American Dental Association'),
(931, 'https://ror.org/020hchp05', 'en', 1, 'https://ror.org/020hchp05 Integrated Laboratory Systems, Inc.'),
(932, 'https://ror.org/024daed65', 'no_lang_code', 1, 'https://ror.org/024daed65 Social and Scientific Systems (United States)'),
(933, 'https://ror.org/057z0pt68', 'en', 1, 'https://ror.org/057z0pt68 Kansas Department for Children and Families'),
(934, 'https://ror.org/01b2wv937', 'en', 1, 'https://ror.org/01b2wv937 New York State Office of Mental Health'),
(935, 'https://ror.org/00qvx5329', 'en', 1, 'https://ror.org/00qvx5329 Doheny Eye Institute'),
(936, 'https://ror.org/05ngnkr69', 'no_lang_code', 1, 'https://ror.org/05ngnkr69 Ambergen (United States)'),
(937, 'https://ror.org/01ekg2j77', 'en', 1, 'https://ror.org/01ekg2j77 Blood Systems Research Institute'),
(938, 'https://ror.org/03nysxh02', 'no_lang_code', 1, 'https://ror.org/03nysxh02 NovoMedix (United States)'),
(939, 'https://ror.org/03ndmsg87', 'no_lang_code', 1, 'https://ror.org/03ndmsg87 Charles River Laboratories (United States)'),
(940, 'https://ror.org/0077tm911', 'en', 1, 'https://ror.org/0077tm911 Iowa Department of Human Services'),
(941, 'https://ror.org/05xf34x41', 'en', 1, 'https://ror.org/05xf34x41 South Carolina State Department of Mental Health'),
(942, 'https://ror.org/020k7fn51', 'no_lang_code', 1, 'https://ror.org/020k7fn51 Information Management Services'),
(943, 'https://ror.org/04d7ez939', 'en', 1, 'https://ror.org/04d7ez939 VA Eastern Colorado Health Care System'),
(944, 'https://ror.org/05p1phv38', 'en', 1, 'https://ror.org/05p1phv38 Huntington Medical Research Institutes'),
(945, 'https://ror.org/05tby3y60', 'en', 1, 'https://ror.org/05tby3y60 Judge Baker Children''s Center'),
(946, 'https://ror.org/00rt1d436', 'en', 1, 'https://ror.org/00rt1d436 American Psychological Association'),
(947, 'https://ror.org/03ywwzv91', 'no_lang_code', 1, 'https://ror.org/03ywwzv91 3C Institute'),
(948, 'https://ror.org/01atr9m08', 'no_lang_code', 1, 'https://ror.org/01atr9m08 Biotex (United States)'),
(949, 'https://ror.org/010ezwq65', 'no_lang_code', 1, 'https://ror.org/010ezwq65 Praxis (United States)'),
(950, 'https://ror.org/0092qhe76', 'no_lang_code', 1, 'https://ror.org/0092qhe76 Sanaria'),
(951, 'https://ror.org/043mrw780', 'en', 1, 'https://ror.org/043mrw780 Institute For Community Research'),
(952, 'https://ror.org/03fhjvs31', 'en', 1, 'https://ror.org/03fhjvs31 Center for Molecular Medicine and Immunology'),
(953, 'https://ror.org/05h450y11', 'no_lang_code', 1, 'https://ror.org/05h450y11 Talaria (United States)'),
(954, 'https://ror.org/04ba73c73', 'no_lang_code', 1, 'https://ror.org/04ba73c73 MC3 (United States)'),
(955, 'https://ror.org/04kg3w865', 'no_lang_code', 1, 'https://ror.org/04kg3w865 Phylonix (United States)'),
(956, 'https://ror.org/02tvg0w73', 'en', 1, 'https://ror.org/02tvg0w73 Riverside Research Institute'),
(957, 'https://ror.org/00p82hn55', 'en', 1, 'https://ror.org/00p82hn55 Salus University'),
(958, 'https://ror.org/00rkxs190', 'no_lang_code', 1, 'https://ror.org/00rkxs190 TDA Research (United States)'),
(959, 'https://ror.org/057jp7h82', 'en', 1, 'https://ror.org/057jp7h82 IIT Research Institute'),
(960, 'https://ror.org/00jjvav84', 'en', 1, 'https://ror.org/00jjvav84 The Hamner Institutes for Health Sciences'),
(961, 'https://ror.org/004jktf35', 'en', 1, 'https://ror.org/004jktf35 Swedish Medical Center'),
(962, 'https://ror.org/02tbz8k15', 'no_lang_code', 1, 'https://ror.org/02tbz8k15 University Research Co (United States)'),
(963, 'https://ror.org/006xyf785', 'en', 1, 'https://ror.org/006xyf785 James A. Haley Veterans'' Hospital'),
(964, 'https://ror.org/0493hgw16', 'en', 1, 'https://ror.org/0493hgw16 National Institute on Minority Health and Health Disparities'),
(965, 'https://ror.org/03p09n514', 'no_lang_code', 1, 'https://ror.org/03p09n514 Danya International, Inc.'),
(966, 'https://ror.org/00hnyb151', 'no_lang_code', 1, 'https://ror.org/00hnyb151 Luna Innovations (United States)'),
(967, 'https://ror.org/0305ndp35', 'no_lang_code', 1, 'https://ror.org/0305ndp35 MatTek Corporation (United States)'),
(968, 'https://ror.org/0512xad50', 'en', 1, 'https://ror.org/0512xad50 American Academy of Pediatrics'),
(969, 'https://ror.org/04can6445', 'no_lang_code', 1, 'https://ror.org/04can6445 P2D Bioscience (United States)'),
(970, 'https://ror.org/031b7yx83', 'no_lang_code', 1, 'https://ror.org/031b7yx83 Lucigen Corporation'),
(971, 'https://ror.org/03wgfnb71', 'no_lang_code', 1, 'https://ror.org/03wgfnb71 Barron Associates (United States)'),
(972, 'https://ror.org/037pmhh38', 'no_lang_code', 1, 'https://ror.org/037pmhh38 Physical Optics Corporation'),
(973, 'https://ror.org/05q2e1368', 'no_lang_code', 1, 'https://ror.org/05q2e1368 ISA Associate'),
(974, 'https://ror.org/00s31qp90', 'en', 1, 'https://ror.org/00s31qp90 Operation PAR'),
(975, 'https://ror.org/05v7v1303', 'no_lang_code', 1, 'https://ror.org/05v7v1303 IRIS Educational Media'),
(976, 'https://ror.org/02843s885', 'en', 1, 'https://ror.org/02843s885 Behavioral Tech Research, Inc.'),
(977, 'https://ror.org/006x9gw30', 'no_lang_code', 1, 'https://ror.org/006x9gw30 Koronis Biomedical Technologies (United States)'),
(978, 'https://ror.org/01q2nz307', 'en', 1, 'https://ror.org/01q2nz307 Baystate Medical Center'),
(979, 'https://ror.org/01ha6bm93', 'no_lang_code', 1, 'https://ror.org/01ha6bm93 Progenra (United States)'),
(980, 'https://ror.org/03w1tbe79', 'no_lang_code', 1, 'https://ror.org/03w1tbe79 Molecular GPS Technologies (United States)'),
(981, 'https://ror.org/03thhhv76', 'en', 1, 'https://ror.org/03thhhv76 American Type Culture Collection'),
(982, 'https://ror.org/041mbwk52', 'no_lang_code', 1, 'https://ror.org/041mbwk52 Fisher Bioservices (United States)'),
(983, 'https://ror.org/000rgm762', 'en', 1, 'https://ror.org/000rgm762 VA Connecticut Healthcare System'),
(984, 'https://ror.org/02wdwsb32', 'no_lang_code', 1, 'https://ror.org/02wdwsb32 GenVec'),
(985, 'https://ror.org/02dktng58', 'en', 1, 'https://ror.org/02dktng58 Institute for Scientific Analysis'),
(986, 'https://ror.org/03hqrv489', 'no_lang_code', 1, 'https://ror.org/03hqrv489 Advanced Liquid Logic'),
(987, 'https://ror.org/05fk0de79', 'en', 1, 'https://ror.org/05fk0de79 Bassett Medical Center'),
(988, 'https://ror.org/04jkk6t02', 'no_lang_code', 1, 'https://ror.org/04jkk6t02 IQuum (United States)'),
(989, 'https://ror.org/02hsq0e05', 'no_lang_code', 1, 'https://ror.org/02hsq0e05 EIC Laboratories'),
(990, 'https://ror.org/01kbw1w05', 'no_lang_code', 1, 'https://ror.org/01kbw1w05 Infinite Biomedical Technologies (United States)'),
(991, 'https://ror.org/04wwbpd10', 'no_lang_code', 1, 'https://ror.org/04wwbpd10 Biomedware (United States)'),
(992, 'https://ror.org/00yeama42', 'no_lang_code', 1, 'https://ror.org/00yeama42 Compact Membrane Systems (United States)'),
(993, 'https://ror.org/05eewjw07', 'no_lang_code', 1, 'https://ror.org/05eewjw07 Bellbrook Labs (United States)'),
(994, 'https://ror.org/055gq1960', 'no_lang_code', 1, 'https://ror.org/055gq1960 Ada Technologies (United States)'),
(995, 'https://ror.org/0586a5g03', 'no_lang_code', 1, 'https://ror.org/0586a5g03 Clinical Tools, Inc.'),
(996, 'https://ror.org/05q9t1y70', 'no_lang_code', 1, 'https://ror.org/05q9t1y70 Siga Technologies (United States)'),
(997, 'https://ror.org/02zy72z44', 'no_lang_code', 1, 'https://ror.org/02zy72z44 Profectus Biosciences (United States)'),
(998, 'https://ror.org/02mx8nz45', 'en', 1, 'https://ror.org/02mx8nz45 Bradley Hospital'),
(999, 'https://ror.org/0402ejh63', 'en', 1, 'https://ror.org/0402ejh63 La Jolla Institute For Molecular Medicine'),
(1000, 'https://ror.org/0119j8n26', 'no_lang_code', 1, 'https://ror.org/0119j8n26 Glsynthesis'),
(1001, 'https://ror.org/056a2fb24', 'no_lang_code', 1, 'https://ror.org/056a2fb24 Nanoprobes (United States)'),
(1002, 'https://ror.org/0287vk548', 'no_lang_code', 1, 'https://ror.org/0287vk548 Sequella (United States)'),
(1003, 'https://ror.org/04rxn4y96', 'no_lang_code', 1, 'https://ror.org/04rxn4y96 Cell and Tissue Systems (United States)'),
(1004, 'https://ror.org/050qew682', 'no_lang_code', 1, 'https://ror.org/050qew682 Bolder Biotechnology, Inc.'),
(1005, 'https://ror.org/05gr5bv62', 'no_lang_code', 1, 'https://ror.org/05gr5bv62 Vala Sciences (United States)'),
(1006, 'https://ror.org/042ckra75', 'en', 1, 'https://ror.org/042ckra75 Research Foundation For Mental Hygiene'),
(1007, 'https://ror.org/01es3w453', 'no_lang_code', 1, 'https://ror.org/01es3w453 Northwest Media (United States)'),
(1008, 'https://ror.org/05meqs994', 'no_lang_code', 1, 'https://ror.org/05meqs994 Innovation Research and Training'),
(1009, 'https://ror.org/009q6vg88', 'no_lang_code', 1, 'https://ror.org/009q6vg88 Virogenomics BioDevelopment (United States)'),
(1010, 'https://ror.org/01qe4gr33', 'en', 1, 'https://ror.org/01qe4gr33 Family and Social Services Administration'),
(1011, 'https://ror.org/03hbd7c15', 'no_lang_code', 1, 'https://ror.org/03hbd7c15 Therapeutics Systems Research Laboratories (United States)'),
(1012, 'https://ror.org/04dwjqq87', 'en', 1, 'https://ror.org/04dwjqq87 Tanglewood Research'),
(1013, 'https://ror.org/019x0cx75', 'no_lang_code', 1, 'https://ror.org/019x0cx75 Science and Engineering Services (United States)'),
(1014, 'https://ror.org/03vnftm46', 'no_lang_code', 1, 'https://ror.org/03vnftm46 Maxwell Sensors'),
(1015, 'https://ror.org/02t4f0726', 'no_lang_code', 1, 'https://ror.org/02t4f0726 Radikal Therapeutics'),
(1016, 'https://ror.org/02pkd6e53', 'no_lang_code', 1, 'https://ror.org/02pkd6e53 Deschutes Research'),
(1017, 'https://ror.org/03zx0nf33', 'en', 1, 'https://ror.org/03zx0nf33 AcademyHealth'),
(1018, 'https://ror.org/04b3jmc64', 'en', 1, 'https://ror.org/04b3jmc64 Social Sciences Innovations'),
(1019, 'https://ror.org/03vj41343', 'en', 1, 'https://ror.org/03vj41343 San Francicso Brain Research Institute & SAM Technology'),
(1020, 'https://ror.org/0425pcn39', 'no_lang_code', 1, 'https://ror.org/0425pcn39 NeuroComp Systems (United States)'),
(1021, 'https://ror.org/01b330649', 'no_lang_code', 1, 'https://ror.org/01b330649 Nova Research Company (United States)'),
(1022, 'https://ror.org/03eksqx74', 'en', 1, 'https://ror.org/03eksqx74 Winthrop-University Hospital'),
(1023, 'https://ror.org/020afzk37', 'no_lang_code', 1, 'https://ror.org/020afzk37 Mirus Bio (United States)'),
(1024, 'https://ror.org/04x16j349', 'no_lang_code', 1, 'https://ror.org/04x16j349 Invotek'),
(1025, 'https://ror.org/037nakk48', 'no_lang_code', 1, 'https://ror.org/037nakk48 Pinnacle Technology'),
(1026, 'https://ror.org/05pvryz52', 'no_lang_code', 1, 'https://ror.org/05pvryz52 IQ Solutions'),
(1027, 'https://ror.org/004fmj330', 'no_lang_code', 1, 'https://ror.org/004fmj330 Technical Resources International (United States)'),
(1028, 'https://ror.org/053v1pf86', 'no_lang_code', 1, 'https://ror.org/053v1pf86 Biomedical Development Corporation'),
(1029, 'https://ror.org/01ans1m53', 'no_lang_code', 1, 'https://ror.org/01ans1m53 SomaGenics (United States)'),
(1030, 'https://ror.org/005yg7304', 'no_lang_code', 1, 'https://ror.org/005yg7304 STAR Analytical Services'),
(1031, 'https://ror.org/05bjm5v11', 'no_lang_code', 1, 'https://ror.org/05bjm5v11 Sibtech (United States)'),
(1032, 'https://ror.org/05kwh9e63', 'no_lang_code', 1, 'https://ror.org/05kwh9e63 Adenosine Therapeutics (United States)'),
(1033, 'https://ror.org/01x9g5g52', 'no_lang_code', 1, 'https://ror.org/01x9g5g52 Ension'),
(1034, 'https://ror.org/04xdbp773', 'no_lang_code', 1, 'https://ror.org/04xdbp773 Academic Edge'),
(1035, 'https://ror.org/05k8nw239', 'no_lang_code', 1, 'https://ror.org/05k8nw239 Western Research Company, Inc.'),
(1036, 'https://ror.org/015nmh932', 'no_lang_code', 1, 'https://ror.org/015nmh932 Kai Research (United States)'),
(1037, 'https://ror.org/03c23hy31', 'no_lang_code', 1, 'https://ror.org/03c23hy31 One Cell Systems (United States)'),
(1038, 'https://ror.org/056rz0f32', 'no_lang_code', 1, 'https://ror.org/056rz0f32 Virtually Better'),
(1039, 'https://ror.org/000rxe202', 'no_lang_code', 1, 'https://ror.org/000rxe202 Medical Decision Logic'),
(1040, 'https://ror.org/0284e2q78', 'en', 1, 'https://ror.org/0284e2q78 American Red Cross Croix-rouge amƩricaine Cruz Roja Americana'),
(1041, 'https://ror.org/02adcah05', 'no_lang_code', 1, 'https://ror.org/02adcah05 Doty Scientific (United States)'),
(1042, 'https://ror.org/003g7k569', 'no_lang_code', 1, 'https://ror.org/003g7k569 Litron Laboratories (United States)'),
(1043, 'https://ror.org/02ya5qg51', 'no_lang_code', 1, 'https://ror.org/02ya5qg51 Electrosonics Medical'),
(1044, 'https://ror.org/04wd31514', 'no_lang_code', 1, 'https://ror.org/04wd31514 CFD Research Corporation (United States)'),
(1045, 'https://ror.org/00h7y2d26', 'no_lang_code', 1, 'https://ror.org/00h7y2d26 Sensimetrics Corporation'),
(1046, 'https://ror.org/03jv45898', 'no_lang_code', 1, 'https://ror.org/03jv45898 Aphios Corporation'),
(1047, 'https://ror.org/02yyv4c82', 'no_lang_code', 1, 'https://ror.org/02yyv4c82 Spire Corporation (United States)'),
(1048, 'https://ror.org/02x3erj71', 'no_lang_code', 1, 'https://ror.org/02x3erj71 Personal Improvement Computer Systems'),
(1049, 'https://ror.org/02ccwf677', 'no_lang_code', 1, 'https://ror.org/02ccwf677 Proportional Technologies'),
(1050, 'https://ror.org/006c6a937', 'no_lang_code', 1, 'https://ror.org/006c6a937 Intelligent Hearing Systems (United States)'),
(1051, 'https://ror.org/032ppma22', 'en', 1, 'https://ror.org/032ppma22 American Academy of Orthopaedic Surgeons'),
(1052, 'https://ror.org/02m1efx83', 'no_lang_code', 1, 'https://ror.org/02m1efx83 Taconic (United States)'),
(1053, 'https://ror.org/00m9c2804', 'en', 1, 'https://ror.org/00m9c2804 Philadelphia College of Osteopathic Medicine'),
(1054, 'https://ror.org/007jxr441', 'en', 1, 'https://ror.org/007jxr441 Society For Developmental Biology'),
(1055, 'https://ror.org/04dzpzw79', 'en', 1, 'https://ror.org/04dzpzw79 National Health Promotion Associates'),
(1056, 'https://ror.org/04mszwh44', 'en', 1, 'https://ror.org/04mszwh44 Gerontological Society of America'),
(1057, 'https://ror.org/01ghsr491', 'no_lang_code', 1, 'https://ror.org/01ghsr491 Trevigen'),
(1058, 'https://ror.org/02wxzt832', 'no_lang_code', 1, 'https://ror.org/02wxzt832 Echelon Biosciences'),
(1059, 'https://ror.org/01na5rp93', 'no_lang_code', 1, 'https://ror.org/01na5rp93 Bioqual'),
(1060, 'https://ror.org/001rzdq81', 'no_lang_code', 1, 'https://ror.org/001rzdq81 State of The Art'),
(1061, 'https://ror.org/03vgdd632', 'no_lang_code', 1, 'https://ror.org/03vgdd632 Ichor Medical Systems (United States)'),
(1062, 'https://ror.org/02e0bfh77', 'no_lang_code', 1, 'https://ror.org/02e0bfh77 Bio Chem Analysis Corporation (United States)'),
(1063, 'https://ror.org/057ays557', 'no_lang_code', 1, 'https://ror.org/057ays557 Kestrel Corporation'),
(1064, 'https://ror.org/04aj4sh46', 'en', 1, 'https://ror.org/04aj4sh46 Brookings Institution Institución Brookings'),
(1065, 'https://ror.org/026dp0v66', 'en', 1, 'https://ror.org/026dp0v66 Union for International Cancer Control Union internationale contre le cancer'),
(1066, 'https://ror.org/00dv9aw81', 'no_lang_code', 1, 'https://ror.org/00dv9aw81 Experimental Pathology Laboratories'),
(1067, 'https://ror.org/0252jr437', 'no_lang_code', 1, 'https://ror.org/0252jr437 Starks Associates'),
(1068, 'https://ror.org/043dm5251', 'no_lang_code', 1, 'https://ror.org/043dm5251 Microfab Technologies (United States)'),
(1069, 'https://ror.org/01ckz8750', 'no_lang_code', 1, 'https://ror.org/01ckz8750 Lickenbrock'),
(1070, 'https://ror.org/05jv5t769', 'en', 1, 'https://ror.org/05jv5t769 Eltron Research'),
(1071, 'https://ror.org/03wckff62', 'no_lang_code', 1, 'https://ror.org/03wckff62 Southwest Sciences (United States)'),
(1072, 'https://ror.org/01qv3p587', 'no_lang_code', 1, 'https://ror.org/01qv3p587 Universal Stabilization Technologies'),
(1073, 'https://ror.org/02fwb6r86', 'no_lang_code', 1, 'https://ror.org/02fwb6r86 Intelligent Automation (United States)'),
(1074, 'https://ror.org/02wk1td69', 'pt', 1, 'https://ror.org/02wk1td69 Fundacao Universitaria Jose Bonifacio'),
(1075, 'https://ror.org/00756eb27', 'no_lang_code', 1, 'https://ror.org/00756eb27 Barlow Scientific'),
(1076, 'https://ror.org/00vznbp60', 'no_lang_code', 1, 'https://ror.org/00vznbp60 Alpha Universe'),
(1077, 'https://ror.org/05v7axt97', 'no_lang_code', 1, 'https://ror.org/05v7axt97 Resodyn Corporation (United States)'),
(1078, 'https://ror.org/00qzd4032', 'no_lang_code', 1, 'https://ror.org/00qzd4032 Quality Biological'),
(1079, 'https://ror.org/045r8zm03', 'en', 1, 'https://ror.org/045r8zm03 American Sociological Association'),
(1080, 'https://ror.org/02fzxed89', 'en', 1, 'https://ror.org/02fzxed89 American Statistical Association'),
(1081, 'https://ror.org/05x3tad86', 'no_lang_code', 1, 'https://ror.org/05x3tad86 Inotek Pharmaceuticals (United States)'),
(1082, 'https://ror.org/05y8s3144', 'no_lang_code', 1, 'https://ror.org/05y8s3144 TPL (United States)'),
(1083, 'https://ror.org/01bthtp68', 'no_lang_code', 1, 'https://ror.org/01bthtp68 Corixa Corporation'),
(1084, 'https://ror.org/038rhxb62', 'no_lang_code', 1, 'https://ror.org/038rhxb62 IM Systems (United States)'),
(1085, 'https://ror.org/05qx0rg92', 'no_lang_code', 1, 'https://ror.org/05qx0rg92 HealthMark Multimedia'),
(1086, 'https://ror.org/058c4h389', 'no_lang_code', 1, 'https://ror.org/058c4h389 Atom Sciences'),
(1087, 'https://ror.org/05ns8wm63', 'no_lang_code', 1, 'https://ror.org/05ns8wm63 Abratech Corporation'),
(1088, 'https://ror.org/04m2hyg08', 'en', 1, 'https://ror.org/04m2hyg08 Maryland Science Center'),
(1089, 'https://ror.org/047qrb368', 'en', 1, 'https://ror.org/047qrb368 South Carolina State Governor''s Office'),
(1090, 'https://ror.org/00prpaj09', 'no_lang_code', 1, 'https://ror.org/00prpaj09 Alion Science and Technology (United States)'),
(1091, 'https://ror.org/01a423692', 'no_lang_code', 1, 'https://ror.org/01a423692 Aastrom Biosciences (United States)'),
(1092, 'https://ror.org/00spnmn10', 'no_lang_code', 1, 'https://ror.org/00spnmn10 Whalen Biomedical'),
(1093, 'https://ror.org/00nmnnk78', 'en', 1, 'https://ror.org/00nmnnk78 University Medical Center of El Paso'),
(1094, 'https://ror.org/03qz9vy49', 'no_lang_code', 1, 'https://ror.org/03qz9vy49 Photon Imaging (United States)'),
(1095, 'https://ror.org/03d1v2g75', 'no_lang_code', 1, 'https://ror.org/03d1v2g75 Epoch Biosciences (United States)'),
(1096, 'https://ror.org/02ra1fm11', 'no_lang_code', 1, 'https://ror.org/02ra1fm11 Thermal Technologies (United States)'),
(1097, 'https://ror.org/00k27zs44', 'no_lang_code', 1, 'https://ror.org/00k27zs44 Oxford Biomedical Research'),
(1098, 'https://ror.org/03b5q4637', 'en', 1, 'https://ror.org/03b5q4637 Educational Testing Service'),
(1099, 'https://ror.org/026p6d134', 'en', 1, 'https://ror.org/026p6d134 Memorial Health University Medical Center'),
(1100, 'https://ror.org/059dqb057', 'en', 1, 'https://ror.org/059dqb057 American Chemical Society'),
(1101, 'https://ror.org/019br0e98', 'no_lang_code', 1, 'https://ror.org/019br0e98 Metabolic Solutions'),
(1102, 'https://ror.org/02d3bpj67', 'no_lang_code', 1, 'https://ror.org/02d3bpj67 Medical Physics Consultants'),
(1103, 'https://ror.org/02sn5gb64', 'en', 1, 'https://ror.org/02sn5gb64 Toyota Technological Institute at Chicago'),
(1104, 'https://ror.org/01mfrg562', 'en', 1, 'https://ror.org/01mfrg562 Dauphin Island Sea Lab'),
(1105, 'https://ror.org/01zr6qe45', 'en', 1, 'https://ror.org/01zr6qe45 Colorado Center For Hospice and Palliative Care'),
(1106, 'https://ror.org/00whfdj78', 'no_lang_code', 1, 'https://ror.org/00whfdj78 BioTek (United States)'),
(1107, 'https://ror.org/044pc0j16', 'no_lang_code', 1, 'https://ror.org/044pc0j16 Mycologics'),
(1108, 'https://ror.org/05qkm6m65', 'no_lang_code', 1, 'https://ror.org/05qkm6m65 Engi-Mat (United States)'),
(1109, 'https://ror.org/0422q5a32', 'en', 1, 'https://ror.org/0422q5a32 Scripps Whittier Diabetes Institute'),
(1110, 'https://ror.org/0219m2k96', 'en', 1, 'https://ror.org/0219m2k96 Decision Research'),
(1111, 'https://ror.org/01t817z14', 'en', 1, 'https://ror.org/01t817z14 University of Houston - Clear Lake'),
(1112, 'https://ror.org/02sc91t34', 'en', 1, 'https://ror.org/02sc91t34 American Association of Geographers'),
(1113, 'https://ror.org/04s5n7912', 'en', 1, 'https://ror.org/04s5n7912 Science Research Laboratory'),
(1114, 'https://ror.org/027970q43', 'no_lang_code', 1, 'https://ror.org/027970q43 Emergent BioSolutions (United States)'),
(1115, 'https://ror.org/05t7jxa31', 'en', 1, 'https://ror.org/05t7jxa31 Institute for Cancer Prevention'),
(1116, 'https://ror.org/02nr3fr97', 'en', 1, 'https://ror.org/02nr3fr97 Center for Biologics Evaluation and Research'),
(1117, 'https://ror.org/034f0sr31', 'no_lang_code', 1, 'https://ror.org/034f0sr31 NuvOx Pharma (United States)'),
(1118, 'https://ror.org/0260bkf37', 'no_lang_code', 1, 'https://ror.org/0260bkf37 NuroRestore (United States)'),
(1119, 'https://ror.org/01a0h9c53', 'no_lang_code', 1, 'https://ror.org/01a0h9c53 Kingston Process Metallurgy (Canada)'),
(1120, 'https://ror.org/0354m4207', 'no_lang_code', 1, 'https://ror.org/0354m4207 Kinexus Bioinformatics Corporation (Canada)'),
(1121, 'https://ror.org/0171atz91', 'no_lang_code', 1, 'https://ror.org/0171atz91 Iogen Corporation'),
(1122, 'https://ror.org/00cgjx575', 'en', 1, 'https://ror.org/00cgjx575 TRTech'),
(1123, 'https://ror.org/04hjf5k52', 'no_lang_code', 1, 'https://ror.org/04hjf5k52 Pivotal Labs'),
(1124, 'https://ror.org/02jj9nh46', 'no_lang_code', 1, 'https://ror.org/02jj9nh46 Artron Bioresearch (Canada)'),
(1125, 'https://ror.org/056d7mp27', 'no_lang_code', 1, 'https://ror.org/056d7mp27 Applied Biological Materials (Canada)'),
(1126, 'https://ror.org/01h29af62', 'no_lang_code', 1, 'https://ror.org/01h29af62 Spartan Bioscience (Canada)'),
(1127, 'https://ror.org/031sxg258', 'no_lang_code', 1, 'https://ror.org/031sxg258 Boehringer Ingelheim (Canada)'),
(1128, 'https://ror.org/03fbkqs26', 'no_lang_code', 1, 'https://ror.org/03fbkqs26 Bombardier (Canada)'),
(1129, 'https://ror.org/008jvv944', 'fr', 1, 'https://ror.org/008jvv944 HƩma-QuƩbec'),
(1130, 'https://ror.org/04df9p911', 'no_lang_code', 1, 'https://ror.org/04df9p911 Biorem Technologies (Canada)'),
(1131, 'https://ror.org/03wn09h25', 'no_lang_code', 1, 'https://ror.org/03wn09h25 Novelis (Canada)'),
(1132, 'https://ror.org/00qfq7b40', 'no_lang_code', 1, 'https://ror.org/00qfq7b40 PerkinElmer Biosignal'),
(1133, 'https://ror.org/01d2sy711', 'no_lang_code', 1, 'https://ror.org/01d2sy711 E-One Moli Energy (Canada)'),
(1134, 'https://ror.org/0306r8m89', 'no_lang_code', 1, 'https://ror.org/0306r8m89 Enerkem (Canada)'),
(1135, 'https://ror.org/05jbvqr49', 'no_lang_code', 1, 'https://ror.org/05jbvqr49 Gastops (Canada)'),
(1136, 'https://ror.org/01k1ea759', 'no_lang_code', 1, 'https://ror.org/01k1ea759 AUG Signals (Canada)'),
(1137, 'https://ror.org/04jx7r642', 'no_lang_code', 1, 'https://ror.org/04jx7r642 Process Research Ortech (Canada)'),
(1138, 'https://ror.org/01hyxtd05', 'no_lang_code', 1, 'https://ror.org/01hyxtd05 Neova Technologies Inc.'),
(1139, 'https://ror.org/05xeczx11', 'no_lang_code', 1, 'https://ror.org/05xeczx11 Curtiss-Wright (Canada)'),
(1140, 'https://ror.org/0103a0295', 'no_lang_code', 1, 'https://ror.org/0103a0295 Teleflex (Canada)'),
(1141, 'https://ror.org/01bywqg69', 'no_lang_code', 1, 'https://ror.org/01bywqg69 Automotive Fuel Cell Cooperation (Canada)'),
(1142, 'https://ror.org/04zyews33', 'no_lang_code', 1, 'https://ror.org/04zyews33 Baylis Medical (Canada)'),
(1143, 'https://ror.org/01eeehv22', 'no_lang_code', 1, 'https://ror.org/01eeehv22 Bell Helicopter Textron (Canada)'),
(1144, 'https://ror.org/0493caa98', 'no_lang_code', 1, 'https://ror.org/0493caa98 Lallemand (Canada)'),
(1145, 'https://ror.org/03d7m4a98', 'no_lang_code', 1, 'https://ror.org/03d7m4a98 Ross Video (Canada)'),
(1146, 'https://ror.org/00rey4c89', 'no_lang_code', 1, 'https://ror.org/00rey4c89 General Electric (Canada)'),
(1147, 'https://ror.org/05dd3wr66', 'en', 1, 'https://ror.org/05dd3wr66 Huntsman Marine Science Centre'),
(1148, 'https://ror.org/04kzbp858', 'no_lang_code', 1, 'https://ror.org/04kzbp858 Agropur cooperative'),
(1149, 'https://ror.org/03ddsp339', 'no_lang_code', 1, 'https://ror.org/03ddsp339 Pyrogenesis (Canada)'),
(1150, 'https://ror.org/00kym4953', 'no_lang_code', 1, 'https://ror.org/00kym4953 Gemite Group'),
(1151, 'https://ror.org/03q1gvb68', 'no_lang_code', 1, 'https://ror.org/03q1gvb68 Neoleukin Therapeutics (Canada)'),
(1152, 'https://ror.org/04jwmdy30', 'no_lang_code', 1, 'https://ror.org/04jwmdy30 XMG Studio (Canada)'),
(1153, 'https://ror.org/05ct3pv92', 'no_lang_code', 1, 'https://ror.org/05ct3pv92 Lanxess (Canada)'),
(1154, 'https://ror.org/04j7rhg40', 'no_lang_code', 1, 'https://ror.org/04j7rhg40 Prime Focus World'),
(1155, 'https://ror.org/04mc30s43', 'no_lang_code', 1, 'https://ror.org/04mc30s43 Olivieri Foods'),
(1156, 'https://ror.org/020qgp237', 'no_lang_code', 1, 'https://ror.org/020qgp237 DuPont (Canada)'),
(1157, 'https://ror.org/00meyvj69', 'en', 1, 'https://ror.org/00meyvj69 St. Lawrence River Institute of Environmental Sciences'),
(1158, 'https://ror.org/02nbyhf94', 'no_lang_code', 1, 'https://ror.org/02nbyhf94 Coanda Research and Development Corporation (Canada)'),
(1159, 'https://ror.org/04xvkcm66', 'no_lang_code', 1, 'https://ror.org/04xvkcm66 Apption'),
(1160, 'https://ror.org/01h0x7c18', 'en', 1, 'https://ror.org/01h0x7c18 PBR Laboratories'),
(1161, 'https://ror.org/020b6jb08', 'en', 1, 'https://ror.org/020b6jb08 Canadian Mathematical Society'),
(1162, 'https://ror.org/04z18y971', 'no_lang_code', 1, 'https://ror.org/04z18y971 Jennerex Biotherapeutics (Canada)'),
(1163, 'https://ror.org/02q2rtn50', 'no_lang_code', 1, 'https://ror.org/02q2rtn50 Tangam Gaming Inc'),
(1164, 'https://ror.org/05qmezx22', 'no_lang_code', 1, 'https://ror.org/05qmezx22 Guelph Chemical Labs'),
(1165, 'https://ror.org/030b05n70', 'no_lang_code', 1, 'https://ror.org/030b05n70 123 Certification (Canada)'),
(1166, 'https://ror.org/00adjy062', 'no_lang_code', 1, 'https://ror.org/00adjy062 Performance Plants (Canada)'),
(1167, 'https://ror.org/0336f9q30', 'no_lang_code', 1, 'https://ror.org/0336f9q30 Suez (Canada)'),
(1168, 'https://ror.org/04qwmjc96', 'no_lang_code', 1, 'https://ror.org/04qwmjc96 BASF (Canada)'),
(1169, 'https://ror.org/01wpkc438', 'en', 1, 'https://ror.org/01wpkc438 Canadian Foundation For The International Space University'),
(1170, 'https://ror.org/012yc3523', 'no_lang_code', 1, 'https://ror.org/012yc3523 COM DEV International'),
(1171, 'https://ror.org/03g1nep17', 'no_lang_code', 1, 'https://ror.org/03g1nep17 3M (Canada)'),
(1172, 'https://ror.org/05wtx0016', 'no_lang_code', 1, 'https://ror.org/05wtx0016 Canon (Canada)'),
(1173, 'https://ror.org/00h85x510', 'no_lang_code', 1, 'https://ror.org/00h85x510 Tembec'),
(1174, 'https://ror.org/02wg4pk78', 'no_lang_code', 1, 'https://ror.org/02wg4pk78 Produits forestiers RƩsolu Resolute Forest Products (Canada)'),
(1175, 'https://ror.org/02xpn4676', 'no_lang_code', 1, 'https://ror.org/02xpn4676 Micronet (United States)'),
(1176, 'https://ror.org/00m1n2078', 'no_lang_code', 1, 'https://ror.org/00m1n2078 CAE (Canada)'),
(1177, 'https://ror.org/051sezk39', 'no_lang_code', 1, 'https://ror.org/051sezk39 Micralyne'),
(1178, 'https://ror.org/03bq2c460', 'no_lang_code', 1, 'https://ror.org/03bq2c460 Barrick Gold (Canada)'),
(1179, 'https://ror.org/031z68d90', 'fr', 1, 'https://ror.org/031z68d90 Institut Universitaire de GƩriatrie de MontrƩal'),
(1180, 'https://ror.org/030tcms06', 'en', 1, 'https://ror.org/030tcms06 Rocky Mountain Biological Laboratory'),
(1181, 'https://ror.org/03kcsjh25', 'en', 1, 'https://ror.org/03kcsjh25 National Institute of Statistical Sciences'),
(1182, 'https://ror.org/047z4n946', 'en', 1, 'https://ror.org/047z4n946 Semiconductor Research Corporation'),
(1183, 'https://ror.org/01agth861', 'en', 1, 'https://ror.org/01agth861 American Association of Physics Teachers'),
(1184, 'https://ror.org/05j8hg602', 'en', 1, 'https://ror.org/05j8hg602 American Physical Society SociƩtƩ amƩricaine de physique'),
(1185, 'https://ror.org/02kk9ec90', 'en', 1, 'https://ror.org/02kk9ec90 Organization For Tropical Studies'),
(1186, 'https://ror.org/01h6pd645', 'no_lang_code', 1, 'https://ror.org/01h6pd645 SurModics (United States)'),
(1187, 'https://ror.org/04m8bh175', 'no_lang_code', 1, 'https://ror.org/04m8bh175 Advanced Fuel Research (United States)'),
(1188, 'https://ror.org/0296jvb66', 'no_lang_code', 1, 'https://ror.org/0296jvb66 WNET (United States)'),
(1189, 'https://ror.org/04kte4472', 'no_lang_code', 1, 'https://ror.org/04kte4472 Materials and Electrochemical Research (United States)'),
(1190, 'https://ror.org/03db3by08', 'en', 1, 'https://ror.org/03db3by08 Northeast Radio Observatory Corporation'),
(1191, 'https://ror.org/02kjq0603', 'en', 1, 'https://ror.org/02kjq0603 American Bar Foundation'),
(1192, 'https://ror.org/015178j52', 'en', 1, 'https://ror.org/015178j52 Wested'),
(1193, 'https://ror.org/03d0z1f54', 'no_lang_code', 1, 'https://ror.org/03d0z1f54 Electrosynthesis Company (United States)'),
(1194, 'https://ror.org/04c0sqe08', 'en', 1, 'https://ror.org/04c0sqe08 Truckee Meadows Community College'),
(1195, 'https://ror.org/05gqcbq50', 'en', 1, 'https://ror.org/05gqcbq50 Aspen Center For Physics Centre pour la physique d''aspen'),
(1196, 'https://ror.org/00f2ymb10', 'en', 1, 'https://ror.org/00f2ymb10 Chesapeake Research Consortium'),
(1197, 'https://ror.org/04133ks15', 'en', 1, 'https://ror.org/04133ks15 Ecpi University'),
(1198, 'https://ror.org/01c804c94', 'no_lang_code', 1, 'https://ror.org/01c804c94 First Point Scientific'),
(1199, 'https://ror.org/03kv7mk61', 'no_lang_code', 1, 'https://ror.org/03kv7mk61 MPC Computers (United States)'),
(1200, 'https://ror.org/00rh8m666', 'en', 1, 'https://ror.org/00rh8m666 Institute For Defense Analyses Instituto de AnƔlisis de la Defensa'),
(1201, 'https://ror.org/046a9q865', 'en', 1, 'https://ror.org/046a9q865 Space Science Institute'),
(1202, 'https://ror.org/033212v26', 'no_lang_code', 1, 'https://ror.org/033212v26 McPhee Research (United States)'),
(1203, 'https://ror.org/00dpx3e98', 'en', 1, 'https://ror.org/00dpx3e98 American Meteorological Society'),
(1204, 'https://ror.org/05p89st11', 'en', 1, 'https://ror.org/05p89st11 American Geosciences Institute'),
(1205, 'https://ror.org/0029f7m05', 'en', 1, 'https://ror.org/0029f7m05 Geological Society of America'),
(1206, 'https://ror.org/01cmpkr67', 'no_lang_code', 1, 'https://ror.org/01cmpkr67 Materials Modification (United States)'),
(1207, 'https://ror.org/05wd11c32', 'en', 1, 'https://ror.org/05wd11c32 Research Corporation of The University of Hawaii'),
(1208, 'https://ror.org/017wcm924', 'en', 1, 'https://ror.org/017wcm924 University System of Georgia'),
(1209, 'https://ror.org/004kyan19', 'en', 1, 'https://ror.org/004kyan19 Maricopa County Community College District'),
(1210, 'https://ror.org/018s6xs98', 'en', 1, 'https://ror.org/018s6xs98 International Cooperative Administrative Support Services'),
(1211, 'https://ror.org/02eb0rk31', 'en', 1, 'https://ror.org/02eb0rk31 Association for the Advancement of Artificial Intelligence'),
(1212, 'https://ror.org/02b8m7s43', 'en', 1, 'https://ror.org/02b8m7s43 American Anthropological Association'),
(1213, 'https://ror.org/00k8kp236', 'en', 1, 'https://ror.org/00k8kp236 Applied Technology Council'),
(1214, 'https://ror.org/05vy1kj95', 'en', 1, 'https://ror.org/05vy1kj95 American Mathematical Society Sociedad Estadounidense de MatemƔtica'),
(1215, 'https://ror.org/00var5q80', 'en', 1, 'https://ror.org/00var5q80 American Geophysical Union'),
(1216, 'https://ror.org/00byr8j11', 'en', 1, 'https://ror.org/00byr8j11 National Science Teachers Association'),
(1217, 'https://ror.org/01ctb0h41', 'en', 1, 'https://ror.org/01ctb0h41 Triangle Coalition For Science and Technology Education'),
(1218, 'https://ror.org/01e5t7e46', 'no_lang_code', 1, 'https://ror.org/01e5t7e46 Nanomaterials Research (United States)'),
(1219, 'https://ror.org/00agrkd75', 'en', 1, 'https://ror.org/00agrkd75 Computing Research Association'),
(1220, 'https://ror.org/03ac64295', 'en', 1, 'https://ror.org/03ac64295 American Society For Engineering Education'),
(1221, 'https://ror.org/02h63je06', 'en', 1, 'https://ror.org/02h63je06 Quality Education for Minorities Network'),
(1222, 'https://ror.org/035y9xj66', 'en', 1, 'https://ror.org/035y9xj66 Consortium For Mathematics & Its Applications'),
(1223, 'https://ror.org/05a064c11', 'no_lang_code', 1, 'https://ror.org/05a064c11 Caisson Laboratories (United States)'),
(1224, 'https://ror.org/013habd96', 'en', 1, 'https://ror.org/013habd96 Twin Cities Public Television'),
(1225, 'https://ror.org/03gke3141', 'en', 1, 'https://ror.org/03gke3141 World Technology Evaluation Center'),
(1226, 'https://ror.org/01yav5t22', 'en', 1, 'https://ror.org/01yav5t22 Conference Board Math Sciences'),
(1227, 'https://ror.org/01n260e81', 'en', 1, 'https://ror.org/01n260e81 Rancho Santa Ana Botanic Garden'),
(1228, 'https://ror.org/018224621', 'en', 1, 'https://ror.org/018224621 American Academy of Arts and Sciences'),
(1229, 'https://ror.org/010h7bv12', 'no_lang_code', 1, 'https://ror.org/010h7bv12 Integrated Plant Genetics (United States)'),
(1230, 'https://ror.org/00jv89z46', 'en', 1, 'https://ror.org/00jv89z46 Louisiana Board of Regents'),
(1231, 'https://ror.org/01nf63x62', 'en', 1, 'https://ror.org/01nf63x62 Institute of Global Environment and Society'),
(1232, 'https://ror.org/05hrczs03', 'en', 1, 'https://ror.org/05hrczs03 American Association of University Women'),
(1233, 'https://ror.org/027nk1z82', 'no_lang_code', 1, 'https://ror.org/027nk1z82 INRAD (United States)'),
(1234, 'https://ror.org/057e34m22', 'en', 1, 'https://ror.org/057e34m22 University of Massachusetts Donahue Institute'),
(1235, 'https://ror.org/02q8vys74', 'en', 1, 'https://ror.org/02q8vys74 American Institute of Physics'),
(1236, 'https://ror.org/056sm7z81', 'en', 1, 'https://ror.org/056sm7z81 Council of Chief State School Officers'),
(1237, 'https://ror.org/007n03h88', 'en', 1, 'https://ror.org/007n03h88 Purdue Research Foundation'),
(1238, 'https://ror.org/03vaer060', 'en', 1, 'https://ror.org/03vaer060 MRC University of Glasgow Centre for Virus Research'),
(1239, 'https://ror.org/02j8pe645', 'en', 1, 'https://ror.org/02j8pe645 National Academy of Sciences of Belarus ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø ŠŠ°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń навук Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(1240, 'https://ror.org/04vfsmv21', 'en', 1, 'https://ror.org/04vfsmv21 National Institutes of Health Clinical Center'),
(1241, 'https://ror.org/04a3akw68', 'no_lang_code', 1, 'https://ror.org/04a3akw68 Airbus (Germany)'),
(1242, 'https://ror.org/05cz6df97', 'en', 1, 'https://ror.org/05cz6df97 Alabama Department of Mental Health'),
(1243, 'https://ror.org/01kxqsy59', 'no_lang_code', 1, 'https://ror.org/01kxqsy59 Atos (Spain)'),
(1244, 'https://ror.org/01djnr762', 'no_lang_code', 1, 'https://ror.org/01djnr762 Dalsa Corporation'),
(1245, 'https://ror.org/01ja5zt45', 'en', 1, 'https://ror.org/01ja5zt45 District of Columbia Department of Health'),
(1246, 'https://ror.org/01rahby95', 'en', 1, 'https://ror.org/01rahby95 Department of Human Services'),
(1247, 'https://ror.org/034adnw64', 'en', 1, 'https://ror.org/034adnw64 Durham VA Medical Center'),
(1248, 'https://ror.org/01kgs1r94', 'no_lang_code', 1, 'https://ror.org/01kgs1r94 Electrical Geodesics (United States)'),
(1249, 'https://ror.org/04cjgh922', 'no_lang_code', 1, 'https://ror.org/04cjgh922 Honeywell (Canada)'),
(1250, 'https://ror.org/0025e3007', 'no_lang_code', 1, 'https://ror.org/0025e3007 TIBCO Software (United States)'),
(1251, 'https://ror.org/03r6k1a05', 'en', 1, 'https://ror.org/03r6k1a05 Institute of Occupational Medicine'),
(1252, 'https://ror.org/04hgm3062', 'en', 1, 'https://ror.org/04hgm3062 Iowa City VA Health Care System'),
(1253, 'https://ror.org/025xmgt30', 'en', 1, 'https://ror.org/025xmgt30 Oregon Social Learning Center'),
(1254, 'https://ror.org/03j05zz84', 'en', 1, 'https://ror.org/03j05zz84 Philadelphia VA Medical Center'),
(1255, 'https://ror.org/017ztfb41', 'en', 1, 'https://ror.org/017ztfb41 San Francisco Department of Public Health'),
(1256, 'https://ror.org/023cbtv31', 'en', 1, 'https://ror.org/023cbtv31 Madrid Health Service Servicio MadrileƱo de Salud'),
(1257, 'https://ror.org/01gd3da15', 'no_lang_code', 1, 'https://ror.org/01gd3da15 Stantec (Canada)'),
(1258, 'https://ror.org/04v00sg98', 'en', 1, 'https://ror.org/04v00sg98 VA Boston Healthcare System'),
(1259, 'https://ror.org/049peqw80', 'en', 1, 'https://ror.org/049peqw80 San Francisco VA Medical Center'),
(1260, 'https://ror.org/02sp1z620', 'en', 1, 'https://ror.org/02sp1z620 Burke Medical Research Institute'),
(1261, 'https://ror.org/045v7ay82', 'en', 1, 'https://ror.org/045v7ay82 Chicago Department of Public Health'),
(1262, 'https://ror.org/019rjbt98', 'en', 1, 'https://ror.org/019rjbt98 Colorado Department of Public Health and Environment'),
(1263, 'https://ror.org/0408cp281', 'en', 1, 'https://ror.org/0408cp281 Delaware Department of Health and Social Services'),
(1264, 'https://ror.org/04jer6b34', 'en', 1, 'https://ror.org/04jer6b34 Washington State Board of Education'),
(1265, 'https://ror.org/03e1xkn26', 'en', 1, 'https://ror.org/03e1xkn26 Florida Department of Health'),
(1266, 'https://ror.org/01381hr71', 'no_lang_code', 1, 'https://ror.org/01381hr71 Golder Associates (Canada)'),
(1267, 'https://ror.org/02js37d36', 'en', 1, 'https://ror.org/02js37d36 IBM Research - Zurich'),
(1268, 'https://ror.org/01g3pwn65', 'en', 1, 'https://ror.org/01g3pwn65 Mississippi Department of Mental Health');
INSERT INTO `rors` VALUES
(1269, 'https://ror.org/0293qmt12', 'en', 1, 'https://ror.org/0293qmt12 NC Department of Health and Human Services'),
(1270, 'https://ror.org/00mwdv335', 'en', 1, 'https://ror.org/00mwdv335 AcadƩmie new-yorkaise de mƩdecine New York Academy of Medicine'),
(1271, 'https://ror.org/02v3txv81', 'en', 1, 'https://ror.org/02v3txv81 Portland VA Medical Center'),
(1272, 'https://ror.org/05831wz16', 'en', 1, 'https://ror.org/05831wz16 Republic of Palau Ministry of Health'),
(1273, 'https://ror.org/05eqt7s39', 'en', 1, 'https://ror.org/05eqt7s39 Athens Information Technology'),
(1274, 'https://ror.org/01b5d7p48', 'no_lang_code', 1, 'https://ror.org/01b5d7p48 Schlumberger (France)'),
(1275, 'https://ror.org/03jh5a977', 'en', 1, 'https://ror.org/03jh5a977 Center for Information Technology'),
(1276, 'https://ror.org/028f19s63', 'en', 1, 'https://ror.org/028f19s63 Dairy Farmers Of Canada'),
(1277, 'https://ror.org/022gnbj15', 'en', 1, 'https://ror.org/022gnbj15 Louisiana State University System'),
(1278, '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'),
(1279, 'https://ror.org/05ehe6278', 'no_lang_code', 1, 'https://ror.org/05ehe6278 Cameco (Canada)'),
(1280, 'https://ror.org/01h9xtf29', 'no_lang_code', 1, 'https://ror.org/01h9xtf29 Friday Systems (United States)'),
(1281, 'https://ror.org/056phcb82', 'en', 1, 'https://ror.org/056phcb82 The Keystone Center'),
(1282, 'https://ror.org/05fcfqq67', 'en', 1, 'https://ror.org/05fcfqq67 Oregon National Primate Research Center'),
(1283, 'https://ror.org/00tt53p64', 'en', 1, 'https://ror.org/00tt53p64 SRC'),
(1284, 'https://ror.org/00vpw9h05', 'en', 1, 'https://ror.org/00vpw9h05 Honolulu Community College'),
(1285, 'https://ror.org/05mj6fy81', 'en', 1, 'https://ror.org/05mj6fy81 Universidad de Houston-Downtown University of Houston - Downtown'),
(1286, 'https://ror.org/05qapqt30', 'en', 1, 'https://ror.org/05qapqt30 Montana Department of Public Health and Human Services'),
(1287, 'https://ror.org/031g2ej16', 'no_lang_code', 1, 'https://ror.org/031g2ej16 Dow Chemical (Canada)'),
(1288, 'https://ror.org/02c97ng92', 'no_lang_code', 1, 'https://ror.org/02c97ng92 ArcelorMittal (Canada)'),
(1289, 'https://ror.org/05586rd65', 'nl', 1, 'https://ror.org/05586rd65 Kiwa'),
(1290, 'https://ror.org/004q6ee74', 'no_lang_code', 1, 'https://ror.org/004q6ee74 Technical Research Associates (United States)'),
(1291, 'https://ror.org/02zn9x324', 'no_lang_code', 1, 'https://ror.org/02zn9x324 INTRASOFT International (Luxembourg)'),
(1292, 'https://ror.org/021wvan87', 'no_lang_code', 1, 'https://ror.org/021wvan87 Qi2'),
(1293, 'https://ror.org/03k1gyh28', 'no_lang_code', 1, 'https://ror.org/03k1gyh28 SNC-Lavalin (Canada)'),
(1294, 'https://ror.org/01q4pk532', 'no_lang_code', 1, 'https://ror.org/01q4pk532 Hydro One (Canada)'),
(1295, 'https://ror.org/003sqpd76', 'en', 1, 'https://ror.org/003sqpd76 Agruicultural Research Institute'),
(1296, 'https://ror.org/025nszc09', 'no_lang_code', 1, 'https://ror.org/025nszc09 Canadian Natural Resources'),
(1297, 'https://ror.org/05sgcwh30', 'fr', 1, 'https://ror.org/05sgcwh30 MinistĆØre des Transports'),
(1298, 'https://ror.org/02nh10f55', 'en', 1, 'https://ror.org/02nh10f55 Evanston Hospital'),
(1299, 'https://ror.org/04zy7mm10', 'en', 1, 'https://ror.org/04zy7mm10 Canadian Dairy Network'),
(1300, 'https://ror.org/0360cq027', 'en', 1, 'https://ror.org/0360cq027 LDS Hospital'),
(1301, 'https://ror.org/03bzbh797', 'en', 1, 'https://ror.org/03bzbh797 UPMC Montefiore'),
(1302, 'https://ror.org/01c5j0443', 'fr', 1, 'https://ror.org/01c5j0443 Institut d''Ɖconomie Rurale'),
(1303, 'https://ror.org/04z1c5686', 'no_lang_code', 1, 'https://ror.org/04z1c5686 Encana (Canada)'),
(1304, 'https://ror.org/039ajs610', 'no_lang_code', 1, 'https://ror.org/039ajs610 Weyerhauser (Canada)'),
(1305, 'https://ror.org/04xze1462', 'no_lang_code', 1, 'https://ror.org/04xze1462 Nokia (Belgium)'),
(1306, 'https://ror.org/05hh8d621', 'no_lang_code', 1, 'https://ror.org/05hh8d621 IBM (United States)'),
(1307, 'https://ror.org/02jbvhm37', 'en', 1, 'https://ror.org/02jbvhm37 Southeastern Universities Research Association'),
(1308, 'https://ror.org/04jfnqt61', 'no_lang_code', 1, 'https://ror.org/04jfnqt61 Western Forest Products'),
(1309, 'https://ror.org/05hbrxp80', 'en', 1, 'https://ror.org/05hbrxp80 Agricultural Research Organization מנהל ×”×ž×—×§×Ø החקלאי - ×ž×Ø×›×– וולקני'),
(1310, 'https://ror.org/055fgjp51', 'no_lang_code', 1, 'https://ror.org/055fgjp51 Nimbus Landscape Materials (United States)'),
(1311, 'https://ror.org/03mv07c21', 'no_lang_code', 1, 'https://ror.org/03mv07c21 Arthur D. Little (Czechia)'),
(1312, 'https://ror.org/04e5j7m81', 'en', 1, 'https://ror.org/04e5j7m81 American Society of Mechanical Engineers'),
(1313, 'https://ror.org/03ag5ed62', 'no_lang_code', 1, 'https://ror.org/03ag5ed62 Allied Technology (United States)'),
(1314, 'https://ror.org/03h2c3g63', 'no_lang_code', 1, 'https://ror.org/03h2c3g63 MatƩriaux Blanchet'),
(1315, 'https://ror.org/00bmzhb16', 'en', 1, 'https://ror.org/00bmzhb16 Gembloux Agro-Bio Tech'),
(1316, 'https://ror.org/028sv9734', 'no_lang_code', 1, 'https://ror.org/028sv9734 PotashCorp (Canada)'),
(1317, 'https://ror.org/04pf12f40', 'en', 1, 'https://ror.org/04pf12f40 Louisiana State University at Eunice UniversitĆ© d''Ɖtat de louisiane Ć  eunice'),
(1318, 'https://ror.org/02df8t483', 'no_lang_code', 1, 'https://ror.org/02df8t483 Bridgepoint (United Kingdom)'),
(1319, 'https://ror.org/01t6tyq74', 'en', 1, 'https://ror.org/01t6tyq74 Consortium of Universities for Research in Earthquake Engineering'),
(1320, 'https://ror.org/03yjkej49', 'en', 1, 'https://ror.org/03yjkej49 Center for Interuniversity Research and Analysis on Organizations'),
(1321, 'https://ror.org/00z0drp11', 'no_lang_code', 1, 'https://ror.org/00z0drp11 Agnico Eagle (Canada)'),
(1322, 'https://ror.org/04ymee833', 'en', 1, 'https://ror.org/04ymee833 Central Institute for the Deaf'),
(1323, 'https://ror.org/01qd3xc93', 'en', 1, 'https://ror.org/01qd3xc93 Fondazione Mario Negri Sud Mario Negri Sud Foundation'),
(1324, 'https://ror.org/012r5qt14', 'en', 1, 'https://ror.org/012r5qt14 Manitoba Pork Council'),
(1325, 'https://ror.org/00wzt9y79', 'en', 1, 'https://ror.org/00wzt9y79 Ohio Cancer Research Associates'),
(1326, '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'),
(1327, 'https://ror.org/02ap76n24', 'en', 1, 'https://ror.org/02ap76n24 Egyptian Universities Network ؓبكة الجامعات Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(1328, 'https://ror.org/05rejmm18', 'no_lang_code', 1, 'https://ror.org/05rejmm18 DELL (United States)'),
(1329, 'https://ror.org/03jhnpw59', 'en', 1, 'https://ror.org/03jhnpw59 Museum Of Northern Arizona'),
(1330, 'https://ror.org/05hmwx760', 'en', 1, 'https://ror.org/05hmwx760 Poultry Industry Council'),
(1331, 'https://ror.org/01w1pbe36', 'en', 1, 'https://ror.org/01w1pbe36 University of Maryland Global Campus'),
(1332, 'https://ror.org/00y6akb91', 'no_lang_code', 1, 'https://ror.org/00y6akb91 Revolution Analytics (United States)'),
(1333, 'https://ror.org/01v6gr187', 'no_lang_code', 1, 'https://ror.org/01v6gr187 Semex'),
(1334, 'https://ror.org/03h2bh287', 'en', 1, 'https://ror.org/03h2bh287 Oxford University Hospitals NHS Trust'),
(1335, 'https://ror.org/01f97j659', 'en', 1, 'https://ror.org/01f97j659 Anyang Academy of Agricultural Sciences å®‰é˜³åø‚å†œäøšē§‘å­¦é™¢'),
(1336, 'https://ror.org/00n5htd36', 'en', 1, 'https://ror.org/00n5htd36 Westmar University'),
(1337, 'https://ror.org/00xmkp704', 'en', 1, 'https://ror.org/00xmkp704 Ghent University Hospital Universitair Ziekenhuis Gent'),
(1338, 'https://ror.org/04nrjxa63', 'en', 1, 'https://ror.org/04nrjxa63 Shanghai Agrobiological Gene Center äøŠęµ·åø‚å†œäøšē”Ÿē‰©åŸŗå› äø­åæƒ'),
(1339, 'https://ror.org/033tc5r37', 'en', 1, 'https://ror.org/033tc5r37 Institute of Dermatology & Venereology of the Yunnan Province'),
(1340, 'https://ror.org/038cpkc46', 'en', 1, 'https://ror.org/038cpkc46 Northrop University'),
(1341, 'https://ror.org/027mjht27', 'de', 1, 'https://ror.org/027mjht27 Institut Universitaire Kurt Bƶsch'),
(1342, 'https://ror.org/02h1scg40', 'en', 1, 'https://ror.org/02h1scg40 Maternal and Child Health Care Hospital of Bao''an å®å®‰åŒŗå¦‡å¹¼äæå„é™¢'),
(1343, 'https://ror.org/01786mp71', 'en', 1, 'https://ror.org/01786mp71 Institute of Agrobiological Sciences ē”Ÿē‰©ę©Ÿčƒ½åˆ©ē”Øē ”ē©¶éƒØé–€'),
(1344, 'https://ror.org/048j5n646', 'en', 1, 'https://ror.org/048j5n646 National Aerospace University – Kharkiv Aviation Institute ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аерокосмічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені М. Š„. Š–ŃƒŠŗŠ¾Š²ŃŃŒŠŗŠ¾Š³Š¾ Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ авіаційний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(1345, 'https://ror.org/026mnhe80', 'en', 1, 'https://ror.org/026mnhe80 Chongqing Academy of Animal Science é‡åŗ†åø‚ē•œē‰§ē§‘å­¦é™¢'),
(1346, 'https://ror.org/01p2t4k13', 'en', 1, 'https://ror.org/01p2t4k13 Heilongjiang Center for Tuberculosis Control and Prevention'),
(1347, 'https://ror.org/03k3bq214', 'en', 1, 'https://ror.org/03k3bq214 National Center of Biomedical Analysis å›½å®¶ē”Ÿē‰©åŒ»å­¦åˆ†ęžäø­åæƒ'),
(1348, 'https://ror.org/04j572391', 'en', 1, 'https://ror.org/04j572391 University Park Pathology Associates'),
(1349, 'https://ror.org/001v2ey71', 'en', 1, 'https://ror.org/001v2ey71 The Fourth People''s Hospital'),
(1350, 'https://ror.org/02caez234', 'en', 1, 'https://ror.org/02caez234 Fuzhou Dermatosis Prevention Hospital ē¦å·žåø‚ēš®č‚¤ē—…é˜²ę²»é™¢'),
(1351, 'https://ror.org/05v6r7450', 'en', 1, 'https://ror.org/05v6r7450 Shanghai Skin Disease Hospital äøŠęµ·ēš®č‚¤ē—…åŒ»é™¢é•æå®åŒŗé—ØčÆŠéƒØ'),
(1352, 'https://ror.org/02mg9y350', 'en', 1, 'https://ror.org/02mg9y350 Winona Medical Cosmetic Center č–‡čÆŗåØœēš®č‚¤åŒ»ē–—ē¾Žå®¹äø­åæƒ'),
(1353, 'https://ror.org/0384ghs60', 'en', 1, 'https://ror.org/0384ghs60 National Center for Drug Screening å›½å®¶ę–°čÆē­›é€‰äø­åæƒ'),
(1354, 'https://ror.org/05c3wfp46', 'en', 1, 'https://ror.org/05c3wfp46 Governor''s Institutes of Vermont'),
(1355, 'https://ror.org/01j8kmv80', 'en', 1, 'https://ror.org/01j8kmv80 Golmud People''s Hospital ę ¼å°”ęœØåø‚äŗŗę°‘åŒ»é™¢'),
(1356, 'https://ror.org/030pk6463', 'no_lang_code', 1, 'https://ror.org/030pk6463 Univax (United States)'),
(1357, 'https://ror.org/00wemg618', 'en', 1, 'https://ror.org/00wemg618 Youjiang Medical College for Nationalities å³ę±Ÿę°‘ę—åŒ»å­¦é™¢'),
(1358, 'https://ror.org/03ddz1316', 'en', 1, 'https://ror.org/03ddz1316 Anhui Provincial Center for Disease Control and Prevention å®‰å¾½ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(1359, 'https://ror.org/02p620w18', 'en', 1, 'https://ror.org/02p620w18 Blood Center of Zhejiang Province ęµ™ę±Ÿēœč”€ę¶²äø­åæƒ'),
(1360, 'https://ror.org/025020z88', 'en', 1, 'https://ror.org/025020z88 Hunan Cancer Hospital'),
(1361, 'https://ror.org/00fh72m39', 'en', 1, 'https://ror.org/00fh72m39 Vladimir State University for the Humanities ВлаГимирский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1362, 'https://ror.org/02ke5vh78', 'en', 1, 'https://ror.org/02ke5vh78 Tianjin Central Hospital of Gynecology Obstetrics å¤©ę“„åø‚äø­åæƒå¦‡äŗ§ē§‘åŒ»é™¢'),
(1363, 'https://ror.org/037d0vf92', 'en', 1, 'https://ror.org/037d0vf92 Nizhny Novgorod State Technical University ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1364, 'https://ror.org/00zb26x20', 'en', 1, 'https://ror.org/00zb26x20 Ural State University of Economics Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1365, 'https://ror.org/022ekqa73', 'en', 1, 'https://ror.org/022ekqa73 National Animal Husbandry Service å…Øå›½ē•œē‰§ę€»ē«™'),
(1366, 'https://ror.org/00a43vs85', 'en', 1, 'https://ror.org/00a43vs85 Ya''an Polytechnic College é›…å®‰čŒäøšęŠ€ęœÆå­¦é™¢'),
(1367, 'https://ror.org/05x0kmy47', 'no_lang_code', 1, 'https://ror.org/05x0kmy47 Shaanxi Yulin Energy Group'),
(1368, 'https://ror.org/04983z422', 'en', 1, 'https://ror.org/04983z422 Taishan Medical University ę³°å±±åŒ»å­¦é™¢'),
(1369, 'https://ror.org/049q0vg17', 'en', 1, 'https://ror.org/049q0vg17 Anqing City Hospital'),
(1370, 'https://ror.org/05qj9p026', 'en', 1, 'https://ror.org/05qj9p026 Lu''an First People''s Hospital'),
(1371, 'https://ror.org/04cfbdf66', 'no_lang_code', 1, 'https://ror.org/04cfbdf66 Shanghai GenomePilot Technology (China) äøŠęµ·ä½°ēœŸē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(1372, 'https://ror.org/03ej8bw49', 'en', 1, 'https://ror.org/03ej8bw49 Shanghai Changning Mental Health Center é•æå®åŒŗē²¾ē„žå«ē”Ÿäø­åæƒ'),
(1373, 'https://ror.org/0432p8t34', 'en', 1, 'https://ror.org/0432p8t34 Guangdong Academy of Medical Sciences'),
(1374, 'https://ror.org/01qh26a66', 'en', 1, 'https://ror.org/01qh26a66 Sichuan Academy of Medical Sciences & Sichuan Provincial People''s Hospital å››å·ēœäø­åŒ»čÆē§‘å­¦é™¢'),
(1375, 'https://ror.org/05dfcz246', 'en', 1, 'https://ror.org/05dfcz246 Tianjin University of Traditional Chinese Medicine å¤©ę“„äø­åŒ»čÆå¤§å­¦'),
(1376, 'https://ror.org/0389fv189', 'en', 1, 'https://ror.org/0389fv189 Guangxi Maternal and Child Health Hospital å¹æč„æå¦‡å¹¼äæå„é™¢'),
(1377, 'https://ror.org/01z07eq06', 'en', 1, 'https://ror.org/01z07eq06 Hubei Polytechnic University ę¹–åŒ—ē†å·„å­¦é™¢'),
(1378, 'https://ror.org/04yajdn66', 'en', 1, 'https://ror.org/04yajdn66 Wuhan Medical Center for Women and Children'),
(1379, 'https://ror.org/03fz4ce66', 'en', 1, 'https://ror.org/03fz4ce66 Shanghai Institute of Hematology äøŠęµ·č”€ę¶²å­¦ē ”ē©¶ę‰€'),
(1380, 'https://ror.org/0241gfe92', 'en', 1, 'https://ror.org/0241gfe92 University of Minnesota, Waseca'),
(1381, 'https://ror.org/035dmz332', 'en', 1, 'https://ror.org/035dmz332 World Health Organization - Australia'),
(1382, 'https://ror.org/045h96a50', 'en', 1, 'https://ror.org/045h96a50 Cooperative Research Centre for Polymers'),
(1383, 'https://ror.org/00vqhxg21', 'no_lang_code', 1, 'https://ror.org/00vqhxg21 SMEC (Australia)'),
(1384, 'https://ror.org/054dq5m81', 'no_lang_code', 1, 'https://ror.org/054dq5m81 Universal Hi-Tech Development'),
(1385, 'https://ror.org/03ncj7n33', 'no_lang_code', 1, 'https://ror.org/03ncj7n33 Jordanian Universities Network (Jordan)'),
(1386, 'https://ror.org/055f7t516', 'en', 1, 'https://ror.org/055f7t516 National Research University Higher School of Economics Š’Ń‹ŃŃˆŠ°Ń школа ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Юғары иҔтисаГ мәктәбе'),
(1387, 'https://ror.org/009k7c907', 'en', 1, 'https://ror.org/009k7c907 Northern Health'),
(1388, 'https://ror.org/02d07gm56', 'en', 1, 'https://ror.org/02d07gm56 SUNY Korea ķ•œźµ­ė‰“ģš•ģ£¼ė¦½ėŒ€ķ•™źµ'),
(1389, 'https://ror.org/04nn0sh76', 'en', 1, 'https://ror.org/04nn0sh76 Mogilev State University of Food Technologies ŠœŠ°Š³Ń–Š»Ń‘ŃžŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń…Š°Ń€Ń‡Š°Š²Š°Š½Š½Ń'),
(1390, 'https://ror.org/03tth1e03', 'en', 1, 'https://ror.org/03tth1e03 University of Life Sciences in Poznań Uniwersytet Przyrodniczy w Poznaniu'),
(1391, 'https://ror.org/05nrhca20', 'en', 1, 'https://ror.org/05nrhca20 West Australian Sleep Disorders Research Institute'),
(1392, 'https://ror.org/0277g6a74', 'en', 1, 'https://ror.org/0277g6a74 Douglass Hanly Moir Pathology'),
(1393, 'https://ror.org/04wngnd82', 'en', 1, 'https://ror.org/04wngnd82 University Heights Center'),
(1394, 'https://ror.org/05j37e495', 'en', 1, 'https://ror.org/05j37e495 South Western Sydney Local Health District'),
(1395, 'https://ror.org/03haqmz43', 'fr', 1, 'https://ror.org/03haqmz43 UniversitƩ FƩlix Houphouƫt-Boigny'),
(1396, 'https://ror.org/012dxyr07', 'en', 1, 'https://ror.org/012dxyr07 University of Agriculture in Krakow Uniwersytet Rolniczy im. Hugona Kołłątaja w Krakowie'),
(1397, 'https://ror.org/01m1v6377', 'en', 1, 'https://ror.org/01m1v6377 Association Of Atlantic Universities'),
(1398, 'https://ror.org/00fqdfs68', 'en', 1, 'https://ror.org/00fqdfs68 Kuopio University Hospital'),
(1399, 'https://ror.org/05wjv2104', 'en', 1, 'https://ror.org/05wjv2104 University Hospital Innsbruck'),
(1400, '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'),
(1401, 'https://ror.org/00wksha49', 'en', 1, 'https://ror.org/00wksha49 National Institute of Biological Sciences, Beijing åŒ—äŗ¬ē”Ÿå‘½ē§‘å­¦ē ”ē©¶ę‰€'),
(1402, 'https://ror.org/044pcn091', 'en', 1, 'https://ror.org/044pcn091 University of Mississippi Medical Center'),
(1403, 'https://ror.org/05pcyqv21', 'no_lang_code', 1, 'https://ror.org/05pcyqv21 Petro-Canada'),
(1404, 'https://ror.org/01egmr022', 'no_lang_code', 1, 'https://ror.org/01egmr022 Nantong Tumor Hospital å—é€šåø‚č‚æē˜¤åŒ»é™¢'),
(1405, 'https://ror.org/014v2t028', 'en', 1, 'https://ror.org/014v2t028 Shandong Pingyi Tianyu Museum of Natural History å±±äøœēœå¤©å®‡č‡Ŗē„¶åšē‰©é¦†'),
(1406, 'https://ror.org/02z2d6373', 'en', 1, 'https://ror.org/02z2d6373 Yunnan Academy of Agricultural Sciences äŗ‘å—ēœå†œäøšē§‘å­¦é™¢'),
(1407, 'https://ror.org/0389pw608', 'en', 1, 'https://ror.org/0389pw608 Center for High Pressure Science and Technology Advanced Research åŒ—äŗ¬é«˜åŽ‹ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(1408, 'https://ror.org/00dr1cn74', 'en', 1, 'https://ror.org/00dr1cn74 Hangzhou Center for Disease Control and Prevention ę­å·žåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(1409, 'https://ror.org/00zat6v61', 'en', 1, 'https://ror.org/00zat6v61 Guangzhou Medical University å¹æå·žåŒ»ē§‘å¤§å­¦'),
(1410, 'https://ror.org/04xfsbk97', 'en', 1, 'https://ror.org/04xfsbk97 Shenzhen Third People’s Hospital ę·±åœ³åø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(1411, 'https://ror.org/00458wv14', 'en', 1, 'https://ror.org/00458wv14 Tianjin Beichen Hospital'),
(1412, 'https://ror.org/04tavf782', 'en', 1, 'https://ror.org/04tavf782 Beijing Computational Science Research Center åŒ—äŗ¬č®”ē®—ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(1413, 'https://ror.org/04tf4g123', 'en', 1, 'https://ror.org/04tf4g123 Sichuan Provincial Academy of Natural Resource Sciences å››å·ēœč‡Ŗē„¶čµ„ęŗē§‘å­¦é™¢'),
(1414, 'https://ror.org/01grdhw06', 'en', 1, 'https://ror.org/01grdhw06 Center for Tuberculosis Control of Guangdong Province å¹æäøœēœē»“ę øē—…ęŽ§åˆ¶'),
(1415, 'https://ror.org/05jtcqr88', 'no_lang_code', 1, 'https://ror.org/05jtcqr88 Thermo Fisher Scientific (China)'),
(1416, 'https://ror.org/0105k4695', 'no_lang_code', 1, 'https://ror.org/0105k4695 Novogene Bioinformatics Institute'),
(1417, 'https://ror.org/02tcape08', 'en', 1, 'https://ror.org/02tcape08 Xinjiang Academy of Animal Science ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē•œē‰§ē§‘å­¦é™¢'),
(1418, 'https://ror.org/00pefnv05', 'en', 1, 'https://ror.org/00pefnv05 Museum of Heilongjiang Province é»‘é¾™ę±Ÿēœåšē‰©é¦†'),
(1419, 'https://ror.org/00fxgea47', 'no_lang_code', 1, 'https://ror.org/00fxgea47 Novartis (China) åŒ—äŗ¬čÆŗåŽåˆ¶čÆęœ‰é™å…¬åø'),
(1420, 'https://ror.org/03jrn4k58', 'no_lang_code', 1, 'https://ror.org/03jrn4k58 GlaxoSmithKline (China)'),
(1421, 'https://ror.org/03ty5px05', 'en', 1, 'https://ror.org/03ty5px05 Hunan Entry-Exit Inspection and Quarantine Bureau'),
(1422, 'https://ror.org/03e05fb06', 'en', 1, 'https://ror.org/03e05fb06 DSO National Laboratories'),
(1423, 'https://ror.org/01jqz8f37', 'en', 1, 'https://ror.org/01jqz8f37 Wayne Memorial Health System'),
(1424, 'https://ror.org/000p7hm12', 'en', 1, 'https://ror.org/000p7hm12 National Skin Centre'),
(1425, 'https://ror.org/02gzfb532', 'en', 1, 'https://ror.org/02gzfb532 Taipei City Hospital č‡ŗåŒ—åø‚ę”æåŗœ'),
(1426, 'https://ror.org/0470men05', 'en', 1, 'https://ror.org/0470men05 Tainan Municipal Hospital å°å—åø‚ē«‹é†«é™¢'),
(1427, 'https://ror.org/01ps4ag81', 'no_lang_code', 1, 'https://ror.org/01ps4ag81 Fountain Biopharma (Taiwan)'),
(1428, 'https://ror.org/05crbcr45', 'en', 1, 'https://ror.org/05crbcr45 Tokyo University of Agriculture ę±äŗ¬č¾²ę„­å¤§å­¦'),
(1429, 'https://ror.org/044s9gr80', 'en', 1, 'https://ror.org/044s9gr80 Japanese Red Cross Society, Japan ę—„ęœ¬čµ¤åå­—ē¤¾'),
(1430, 'https://ror.org/0098kke80', 'no_lang_code', 1, 'https://ror.org/0098kke80 Rakuten (Japan) ę„½å¤©ę Ŗå¼ä¼šē¤¾'),
(1431, 'https://ror.org/04hahwc19', 'en', 1, 'https://ror.org/04hahwc19 Meiji University of Integrative Medicine ę˜Žę²»å›½éš›åŒ»ē™‚å¤§å­¦'),
(1432, 'https://ror.org/006gdh317', 'en', 1, 'https://ror.org/006gdh317 Meijo Hospital ååŸŽē—…é™¢'),
(1433, 'https://ror.org/00f2txz25', 'no_lang_code', 1, 'https://ror.org/00f2txz25 Kitasato University 北里大学'),
(1434, 'https://ror.org/03j7khn53', 'en', 1, 'https://ror.org/03j7khn53 Shizuoka Red Cross Hospital é™å²”čµ¤åå­—ē—…é™¢'),
(1435, 'https://ror.org/03vc89b25', 'en', 1, 'https://ror.org/03vc89b25 Osaka Bio Headquarters'),
(1436, 'https://ror.org/0015hye09', 'no_lang_code', 1, 'https://ror.org/0015hye09 Tokyo Metropolitan Ohtsuka Hospital ę±äŗ¬éƒ½ē«‹å¤§å”šē—…é™¢'),
(1437, 'https://ror.org/0069p7h69', 'en', 1, 'https://ror.org/0069p7h69 Tokushima Breast Care Clinic ćØćć—ć¾ćƒ–ćƒ¬ć‚¹ćƒˆć‚±ć‚¢ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(1438, 'https://ror.org/017kgtg39', 'en', 1, 'https://ror.org/017kgtg39 Fukuoka Children''s Hospital and Medical Center for Infectious Diseases ē¦å²”åø‚ē«‹ć“ć©ć‚‚ē—…é™¢'),
(1439, 'https://ror.org/0520j5d52', 'no_lang_code', 1, 'https://ror.org/0520j5d52 Peptidream (Japan) ćƒšćƒ—ćƒćƒ‰ćƒŖćƒ¼ćƒ '),
(1440, 'https://ror.org/036c3t778', 'en', 1, 'https://ror.org/036c3t778 Niigata Prefectural Museum of History ę–°ę½ŸēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(1441, 'https://ror.org/05rkz5e28', 'no_lang_code', 1, 'https://ror.org/05rkz5e28 Toranomon Hospital č™Žć®é–€ē—…é™¢'),
(1442, 'https://ror.org/00av3hs56', 'en', 1, 'https://ror.org/00av3hs56 Chubu Rosai Hospital äø­éƒØć‚ć†ć•ć„ē—…é™¢'),
(1443, 'https://ror.org/03na8p459', 'no_lang_code', 1, 'https://ror.org/03na8p459 Yokohama Rosai Hospital ęØŖęµœåŠ“ē½ē—…é™¢'),
(1444, 'https://ror.org/021m54z79', 'no_lang_code', 1, 'https://ror.org/021m54z79 Takara (Japan) å®ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(1445, 'https://ror.org/00krab219', 'en', 1, 'https://ror.org/00krab219 Nippon Medical School ę—„ęœ¬åŒ»ē§‘å¤§å­¦'),
(1446, 'https://ror.org/0431x1p15', 'en', 1, 'https://ror.org/0431x1p15 Gunma Children''s Medical Center ē¾¤é¦¬ēœŒē«‹å°å…åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1447, 'https://ror.org/02yyjwk88', 'no_lang_code', 1, 'https://ror.org/02yyjwk88 Kyowa-kako (Japan)'),
(1448, 'https://ror.org/004t34t94', 'no_lang_code', 1, 'https://ror.org/004t34t94 Tsuchiura Kyodo General Hospital ē·åˆē—…é™¢ åœŸęµ¦å”åŒē—…é™¢'),
(1449, 'https://ror.org/023kfg220', 'en', 1, 'https://ror.org/023kfg220 National Institute for Agro-Environmental Sciences č¾²ę„­ē’°å¢ƒå¤‰å‹•ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(1450, 'https://ror.org/02k72jz38', 'no_lang_code', 1, 'https://ror.org/02k72jz38 TagCyx Biotechnologies (Japan)'),
(1451, 'https://ror.org/03zzyap02', 'en', 1, 'https://ror.org/03zzyap02 Tohoku Medical Megabank Organization ę±åŒ—ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ćƒ»ćƒ”ć‚¬ćƒćƒ³ć‚Æę©Ÿę§‹'),
(1452, 'https://ror.org/02bcf5b42', 'no_lang_code', 1, 'https://ror.org/02bcf5b42 Foxconn (Japan)'),
(1453, 'https://ror.org/05g91z486', 'no_lang_code', 1, 'https://ror.org/05g91z486 Organ Technologies (Japan) ć‚Ŗćƒ¼ć‚¬ćƒ³ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(1454, 'https://ror.org/011tm7n37', 'no_lang_code', 1, 'https://ror.org/011tm7n37 Panasonic (Japan) ćƒ‘ćƒŠć‚½ćƒ‹ćƒƒć‚Æ'),
(1455, 'https://ror.org/045kb1d14', 'en', 1, 'https://ror.org/045kb1d14 Kyoto Medical Center äŗ¬éƒ½åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1456, 'https://ror.org/01kw6jz33', 'no_lang_code', 1, 'https://ror.org/01kw6jz33 BGI Group (Japan)'),
(1457, 'https://ror.org/0457edg47', 'no_lang_code', 1, 'https://ror.org/0457edg47 HREM Research (Japan) ęœ‰é™ä¼šē¤¾ HREM'),
(1458, 'https://ror.org/00hbq5j06', 'no_lang_code', 1, 'https://ror.org/00hbq5j06 Ecogenomics (Japan)'),
(1459, 'https://ror.org/03xvpaf72', 'en', 1, 'https://ror.org/03xvpaf72 Wakasa History and Folklore Museum ē¦äŗ•ēœŒē«‹ č‹„ē‹­ę­“å²åšē‰©é¤Ø'),
(1460, 'https://ror.org/00m9ydx43', 'en', 1, 'https://ror.org/00m9ydx43 National Hospital Organization Mito Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ę°“ęˆøåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1461, 'https://ror.org/0447kww10', 'en', 1, 'https://ror.org/0447kww10 University of Miyazaki 宮哎大学'),
(1462, 'https://ror.org/04pf1fm38', 'en', 1, 'https://ror.org/04pf1fm38 Seirei Social Welfare Community'),
(1463, 'https://ror.org/0299dqs22', 'en', 1, 'https://ror.org/0299dqs22 JA Toride Medical Center JAćØć‚Šć§ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1464, 'https://ror.org/010bv4c75', 'no_lang_code', 1, 'https://ror.org/010bv4c75 Tsukuba Memorial Hospital ē­‘ę³¢čØ˜åæµē—…é™¢'),
(1465, 'https://ror.org/038ckz871', 'no_lang_code', 1, 'https://ror.org/038ckz871 Kaneka (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ćƒć‚«'),
(1466, 'https://ror.org/0493bmq37', 'no_lang_code', 1, 'https://ror.org/0493bmq37 Fujifilm (Japan) åÆŒå£«ćƒ•ć‚¤ćƒ«ćƒ ę Ŗå¼ä¼šē¤¾'),
(1467, 'https://ror.org/03pq6f684', 'en', 1, 'https://ror.org/03pq6f684 Asian Institute of Gastroenterology'),
(1468, 'https://ror.org/02z9d3e27', 'en', 1, 'https://ror.org/02z9d3e27 Dr. Mohan''s Diabetes Specialities Centre'),
(1469, 'https://ror.org/02fv7x872', 'en', 1, 'https://ror.org/02fv7x872 Deenanath Mangeshkar Hospital and Research Center ą¤¦ą„€ą¤Øą¤¾ą¤Øą¤¾ą¤„ ą¤®ą¤‚ą¤—ą„‡ą¤¶ą¤•ą¤° ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(1470, 'https://ror.org/01n67jr26', 'en', 1, 'https://ror.org/01n67jr26 Forest Department Sarawak'),
(1471, 'https://ror.org/02fjqfr36', 'en', 1, 'https://ror.org/02fjqfr36 Wildlife Conservation Society Indonesia'),
(1472, 'https://ror.org/00pf0g237', 'no_lang_code', 1, 'https://ror.org/00pf0g237 Theragen'),
(1473, 'https://ror.org/03khjyh83', 'en', 1, 'https://ror.org/03khjyh83 Genome Research Foundation'),
(1474, 'https://ror.org/01ejxf797', 'en', 1, 'https://ror.org/01ejxf797 Mohamed I University UniversitĆ© Mohammed Ier Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ Ų§Ł„Ų£ŁˆŁ„'),
(1475, 'https://ror.org/02zme4e72', 'no_lang_code', 1, 'https://ror.org/02zme4e72 JEOL (Japan) ę—„ęœ¬é›»å­'),
(1476, 'https://ror.org/02pfhv998', 'no_lang_code', 1, 'https://ror.org/02pfhv998 Nongwoo Bio (South Korea)'),
(1477, 'https://ror.org/01w62yz22', 'en', 1, 'https://ror.org/01w62yz22 Advanced Institute of Convergence Technology ģ°Øģ„øėŒ€ģœµķ•©źø°ģˆ ģ—°źµ¬ģ›'),
(1478, 'https://ror.org/00s9dpb54', 'en', 1, 'https://ror.org/00s9dpb54 Myongji University ėŖ…ģ§€ėŒ€ķ•™źµ'),
(1479, 'https://ror.org/023cpc062', 'no_lang_code', 1, 'https://ror.org/023cpc062 DNA Link (South Korea)'),
(1480, 'https://ror.org/04sr36h49', 'no_lang_code', 1, 'https://ror.org/04sr36h49 Seeders (South Korea)'),
(1481, 'https://ror.org/01sytk573', 'en', 1, 'https://ror.org/01sytk573 National Science Museum'),
(1482, 'https://ror.org/02kf0fj54', 'no_lang_code', 1, 'https://ror.org/02kf0fj54 AnyGen (South Korea)'),
(1483, 'https://ror.org/05tqne909', 'no_lang_code', 1, 'https://ror.org/05tqne909 (주)ģøģ‹¤ė¦¬ģ½”ģ   Insilicogen (South Korea)'),
(1484, 'https://ror.org/058kbr222', 'no_lang_code', 1, 'https://ror.org/058kbr222 Qurient (South Korea)'),
(1485, 'https://ror.org/037rt4a55', 'en', 1, 'https://ror.org/037rt4a55 National Academy of Agricultural Science źµ­ė¦½ė†ģ—…ź³¼ķ•™ģ›'),
(1486, 'https://ror.org/00n14a494', 'en', 1, 'https://ror.org/00n14a494 Korea Polar Research Institute ź·¹ģ§€ģ—°źµ¬ģ†Œ'),
(1487, 'https://ror.org/02t69m177', 'no_lang_code', 1, 'https://ror.org/02t69m177 Adipogen (South Korea)'),
(1488, 'https://ror.org/02bwjrg36', 'en', 1, 'https://ror.org/02bwjrg36 Academia Nacional Superior de Orquestra'),
(1489, 'https://ror.org/00chxjy07', 'en', 1, 'https://ror.org/00chxjy07 Fundação Conservatório Regional de Gaia Gaia Regional Conservatory Foundation'),
(1490, 'https://ror.org/05x14am29', 'en', 1, 'https://ror.org/05x14am29 Escola Superior Gallaecia Gallaecia Higher School'),
(1491, 'https://ror.org/00t0h7472', 'pt', 1, 'https://ror.org/00t0h7472 Escola Superior de Educadores de Infância Maria Ulrich'),
(1492, 'https://ror.org/03720tm64', 'pt', 1, 'https://ror.org/03720tm64 Fundação Ricardo do Espírito Santo Silva'),
(1493, 'https://ror.org/05xwc2w62', 'pt', 1, 'https://ror.org/05xwc2w62 Escola Superior de Educação de Almeida Garrett'),
(1494, 'https://ror.org/03378k036', 'pt', 1, 'https://ror.org/03378k036 Institute of Higher Studies of Fafe Instituto de Estudos Superiores de Fafe LDA'),
(1495, 'https://ror.org/020nckd56', 'pt', 1, 'https://ror.org/020nckd56 Instituto Superior de Ciências da Administração'),
(1496, 'https://ror.org/01g2xkw11', 'pt', 1, 'https://ror.org/01g2xkw11 Instituto Superior de Gestão e Administração de Santarém'),
(1497, 'https://ror.org/02khzxe16', 'pt', 1, 'https://ror.org/02khzxe16 Instituto Superior de Comunicação Empresarial'),
(1498, 'https://ror.org/002gmks55', 'pt', 1, 'https://ror.org/002gmks55 Instituto Superior de Educação e Trabalho'),
(1499, 'https://ror.org/042vq9b25', 'pt', 1, 'https://ror.org/042vq9b25 Instituto Superior de Educação e Ciências'),
(1500, 'https://ror.org/00p2tmy87', 'pt', 1, 'https://ror.org/00p2tmy87 Instituto Superior de Espinho'),
(1501, 'https://ror.org/02b730m35', 'pt', 1, 'https://ror.org/02b730m35 Instituto Superior de Ciências da Informação e da Administração'),
(1502, 'https://ror.org/00ykktm91', 'pt', 1, 'https://ror.org/00ykktm91 Instituto Superior de Línguas e Administração'),
(1503, 'https://ror.org/04evw4v13', 'pt', 1, 'https://ror.org/04evw4v13 Instituto Superior de Paços de Brandão'),
(1504, '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'),
(1505, 'https://ror.org/042x68w22', 'pt', 1, 'https://ror.org/042x68w22 Escola Superior de Enfermagem Dr. José Timóteo Montalvão Machado'),
(1506, 'https://ror.org/05368pf49', 'en', 1, 'https://ror.org/05368pf49 Institute of the Pupils of the Army Instituto dos Pupilos do ExƩrcito'),
(1507, 'https://ror.org/00s58vq35', 'en', 1, 'https://ror.org/00s58vq35 Instituto Superior Bissaya Barreto'),
(1508, 'https://ror.org/04bpf7m84', 'pt', 1, 'https://ror.org/04bpf7m84 Escola Superior de SaĆŗde Ribeiro Sanches'),
(1509, 'https://ror.org/00jkkm943', 'pt', 1, 'https://ror.org/00jkkm943 Instituto Superior Manuel Teixeira Gomes'),
(1510, 'https://ror.org/04f761z39', 'pt', 1, 'https://ror.org/04f761z39 Instituto Superior da Maia'),
(1511, 'https://ror.org/04anjm411', 'en', 1, 'https://ror.org/04anjm411 Instituto Superior D. Dinis'),
(1512, 'https://ror.org/05gzcpj23', 'pt', 1, 'https://ror.org/05gzcpj23 Escola Superior de Saúde do Alcoitão'),
(1513, 'https://ror.org/03f94es11', 'pt', 1, 'https://ror.org/03f94es11 Instituto Superior Dom Afonso III'),
(1514, 'https://ror.org/02182hd81', 'pt', 1, 'https://ror.org/02182hd81 Escola do Serviço de Saúde Militar'),
(1515, 'https://ror.org/01n85qf05', 'pt', 1, 'https://ror.org/01n85qf05 Escola Superior de Enfermagem S. Francisco das Misericórdias'),
(1516, 'https://ror.org/015yzft41', 'pt', 1, 'https://ror.org/015yzft41 Instituto Superior PolitƩcnico do Oeste'),
(1517, 'https://ror.org/04bcdt432', 'pt', 1, 'https://ror.org/04bcdt432 European University of Lisbon Universidade Europeia'),
(1518, 'https://ror.org/00k57ac30', 'pt', 1, 'https://ror.org/00k57ac30 Instituto Superior de Novas ProfissƵes'),
(1519, 'https://ror.org/00z847107', 'pt', 1, 'https://ror.org/00z847107 Escola Superior de Educação de Torres Novas'),
(1520, 'https://ror.org/02aea0q64', 'pt', 1, 'https://ror.org/02aea0q64 IADE Superior de Marketing e Publicidade'),
(1521, 'https://ror.org/03pwcc270', 'en', 1, 'https://ror.org/03pwcc270 Auburn University System'),
(1522, 'https://ror.org/05jbt9m15', 'en', 1, 'https://ror.org/05jbt9m15 Universidad de Arkansas University of Arkansas at Fayetteville UniversitƩ de l''arkansas'),
(1523, 'https://ror.org/036c27j91', 'en', 1, 'https://ror.org/036c27j91 Washington University Medical Center'),
(1524, 'https://ror.org/03rtgjq94', 'en', 1, 'https://ror.org/03rtgjq94 University of South Carolina System'),
(1525, 'https://ror.org/00r9g7t11', 'en', 1, 'https://ror.org/00r9g7t11 Oregon University System'),
(1526, 'https://ror.org/05vz28418', 'en', 1, 'https://ror.org/05vz28418 Southern Illinois University System UniversitƩ de l''illinois du sud'),
(1527, 'https://ror.org/03b6sp482', 'en', 1, 'https://ror.org/03b6sp482 Southern University System'),
(1528, 'https://ror.org/03xms6995', 'en', 1, 'https://ror.org/03xms6995 Central Police University'),
(1529, 'https://ror.org/0475w6974', 'no_lang_code', 1, 'https://ror.org/0475w6974 Kinjo Gakuin University 金城学院大学'),
(1530, 'https://ror.org/03d4d3711', 'en', 1, 'https://ror.org/03d4d3711 Central Taiwan University of Science and Technology'),
(1531, 'https://ror.org/01b6d9h22', 'hr', 1, 'https://ror.org/01b6d9h22 Klinička bolnica Merkur'),
(1532, 'https://ror.org/03aam9155', 'en', 1, 'https://ror.org/03aam9155 KLE University'),
(1533, 'https://ror.org/03n20pp93', 'en', 1, 'https://ror.org/03n20pp93 Awadhesh Pratap Singh University ą¤…ą¤µą¤§ą„‡ą¤¶ ą¤Ŗą„ą¤°ą¤¤ą¤¾ą¤Ŗ सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1534, 'https://ror.org/03ej9xm26', 'pt', 1, 'https://ror.org/03ej9xm26 Hospital de ClĆ­nicas Universidade Federal do ParanĆ”'),
(1535, 'https://ror.org/02wc1yz29', 'en', 1, 'https://ror.org/02wc1yz29 Eye & ENT Hospital of Fudan University'),
(1536, 'https://ror.org/01jmsem62', 'es', 1, 'https://ror.org/01jmsem62 Hospital General Universitario de Elche'),
(1537, 'https://ror.org/055p2yz63', 'es', 1, 'https://ror.org/055p2yz63 Hospital General Universitario de Albacete'),
(1538, 'https://ror.org/02f30ff69', 'es', 1, 'https://ror.org/02f30ff69 Hospital General Universitario de Ciudad Real'),
(1539, 'https://ror.org/00cfm3y81', 'es', 1, 'https://ror.org/00cfm3y81 Hospital General Universitario Morales Meseguer'),
(1540, 'https://ror.org/03e1ayz78', 'en', 1, 'https://ror.org/03e1ayz78 University of Minnesota Medical Center'),
(1541, 'https://ror.org/057d2v504', 'en', 1, 'https://ror.org/057d2v504 Kohat University of Science and Technology'),
(1542, 'https://ror.org/04r69jb93', 'en', 1, 'https://ror.org/04r69jb93 Kokushikan University å›½å£«čˆ˜å¤§å­¦'),
(1543, 'https://ror.org/02mfapa96', 'en', 1, 'https://ror.org/02mfapa96 Acharya Nagarjuna University ą°†ą°šą°¾ą°°ą±ą°Æ ą°Øą°¾ą°—ą°¾ą°°ą±ą°œą±ą°Ø ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(1544, 'https://ror.org/02917wp91', 'en', 1, 'https://ror.org/02917wp91 Hospital of the University of Pennsylvania'),
(1545, 'https://ror.org/0373nm262', 'en', 1, 'https://ror.org/0373nm262 Kongju National University ź³µģ£¼ėŒ€ķ•™źµ'),
(1546, 'https://ror.org/04vrsb288', 'en', 1, 'https://ror.org/04vrsb288 Far Eastern State Medical University Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1547, 'https://ror.org/02w043707', 'en', 1, 'https://ror.org/02w043707 University of Aden Ų¬Ų§Ł…Ų¹Ų© عدن'),
(1548, 'https://ror.org/04f558b63', 'pt', 1, 'https://ror.org/04f558b63 Centro UniversitƔrio FiladƩlfia'),
(1549, 'https://ror.org/03a8gac78', 'es', 1, 'https://ror.org/03a8gac78 Hospital Del Mar'),
(1550, 'https://ror.org/03pm2yz25', 'en', 1, 'https://ror.org/03pm2yz25 Kumamoto Health Science University ē†Šęœ¬äæå„ē§‘å­¦å¤§å­¦'),
(1551, 'https://ror.org/02vgs9327', 'en', 1, 'https://ror.org/02vgs9327 Kumamoto University Hospital ē†Šęœ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(1552, 'https://ror.org/038e9x269', 'no_lang_code', 1, 'https://ror.org/038e9x269 Kumaun University ą¤•ą„ą¤®ą¤¾ą¤Šą¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®•ąÆą®®ą®¾ą®µąÆą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(1553, 'https://ror.org/01gzkdv90', 'en', 1, 'https://ror.org/01gzkdv90 Kun Shan University'),
(1554, 'https://ror.org/035rhx828', 'en', 1, 'https://ror.org/035rhx828 Kunming University ę˜†ę˜Žå­¦é™¢'),
(1555, 'https://ror.org/02yj55q56', 'en', 1, 'https://ror.org/02yj55q56 Kunsan National University źµ°ģ‚°ėŒ€ķ•™źµ'),
(1556, 'https://ror.org/02ptw3r05', 'es', 1, 'https://ror.org/02ptw3r05 Hospital Universitario Son Dureta'),
(1557, 'https://ror.org/02a5q3y73', 'es', 1, 'https://ror.org/02a5q3y73 Hospital Universitario HM Madrid'),
(1558, 'https://ror.org/055gkcy74', 'en', 1, 'https://ror.org/055gkcy74 Union Hospital'),
(1559, 'https://ror.org/05xcx0k58', 'en', 1, 'https://ror.org/05xcx0k58 Aga Khan University Hospital'),
(1560, 'https://ror.org/004dwfr15', 'en', 1, 'https://ror.org/004dwfr15 Kursk State Medical University ŠšŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1561, 'https://ror.org/03rppv730', 'en', 1, 'https://ror.org/03rppv730 Aga Khan University Hospital Nairobi'),
(1562, 'https://ror.org/014nx0w70', 'es', 1, 'https://ror.org/014nx0w70 Hospital Universitario Austral'),
(1563, 'https://ror.org/02e9zc863', 'en', 1, 'https://ror.org/02e9zc863 Kwangwoon University ź“‘ģš“ėŒ€ķ•™źµ'),
(1564, 'https://ror.org/032xf8h46', 'en', 1, 'https://ror.org/032xf8h46 Kyonggi University ź²½źø°ėŒ€ķ•™źµ'),
(1565, 'https://ror.org/01mqvjv41', 'pt', 1, 'https://ror.org/01mqvjv41 Federal University of Mato Grosso Universidade Federal de Mato Grosso'),
(1566, 'https://ror.org/02s3d7j94', 'en', 1, 'https://ror.org/02s3d7j94 Chang Jung Christian University'),
(1567, 'https://ror.org/04ts4qa58', 'en', 1, 'https://ror.org/04ts4qa58 Changwon National University ģ°½ģ›ėŒ€ķ•™źµ'),
(1568, 'https://ror.org/03zhhr656', 'en', 1, 'https://ror.org/03zhhr656 Kyoto University of Education äŗ¬éƒ½ę•™č‚²å¤§å­¦'),
(1569, 'https://ror.org/01q1jaw52', 'en', 1, 'https://ror.org/01q1jaw52 AHEPA University Hospital Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼Ī¹Ī±ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΑΧΕΠΑ'),
(1570, 'https://ror.org/01rws6r75', 'en', 1, 'https://ror.org/01rws6r75 Ahvaz Jundishapur University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų¬Ł†ŲÆŪŒā€ŒŲ“Ų§Ł¾ŁˆŲ± Ų§Ł‡ŁˆŲ§Ų²'),
(1571, 'https://ror.org/05h9pgm95', 'en', 1, 'https://ror.org/05h9pgm95 Kyungsung University ź²½ģ„±ėŒ€ķ•™źµ'),
(1572, 'https://ror.org/03bwzch55', 'en', 1, 'https://ror.org/03bwzch55 Kyushu Dental University ä¹å·žę­Æē§‘å¤§å­¦'),
(1573, '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'),
(1574, 'https://ror.org/01wqrpc44', 'en', 1, 'https://ror.org/01wqrpc44 Kyushu Sangyo University ä¹å·žē”£ę„­å¤§å­¦'),
(1575, 'https://ror.org/04scbtr44', 'es', 1, 'https://ror.org/04scbtr44 Hospital Universitario de Fuenlabrada'),
(1576, 'https://ror.org/03m964n84', 'en', 1, 'https://ror.org/03m964n84 Aichi University of Education ę„›ēŸ„ę•™č‚²å¤§å­¦'),
(1577, 'https://ror.org/00s4vhs88', 'es', 1, 'https://ror.org/00s4vhs88 Doctor NegrĆ­n University Hospital Hospital Universitario de Gran Canaria Doctor NegrĆ­n'),
(1578, 'https://ror.org/008j59125', 'en', 1, 'https://ror.org/008j59125 Aintree University Hospital'),
(1579, 'https://ror.org/05bz1tw26', 'pt', 1, 'https://ror.org/05bz1tw26 Hospital de Santa Maria'),
(1580, 'https://ror.org/01phydj90', 'en', 1, 'https://ror.org/01phydj90 Akdeniz University Hospital Akdeniz Üniversitesi Hastanesi'),
(1581, 'https://ror.org/03bag5a72', 'en', 1, 'https://ror.org/03bag5a72 Ladoke Akintola University of Technology Teaching Hospital'),
(1582, 'https://ror.org/00gvw6327', 'en', 1, 'https://ror.org/00gvw6327 King George''s Medical University ą¤›ą¤¤ą„ą¤°ą¤Ŗą¤¤ą¤æ ą¤¶ą¤¾ą¤¹ą„‚ą¤œą„€ महाराज ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1583, 'https://ror.org/01za8fg18', 'en', 1, 'https://ror.org/01za8fg18 Lagos State University YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ ƈkó'),
(1584, 'https://ror.org/011bdtx65', 'en', 1, 'https://ror.org/011bdtx65 Cheng Shiu University'),
(1585, 'https://ror.org/00gkd5869', 'en', 1, 'https://ror.org/00gkd5869 Lagos University Teaching Hospital'),
(1586, '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'),
(1587, 'https://ror.org/03panb555', 'en', 1, 'https://ror.org/03panb555 Lanzhou University of Technology å…°å·žē†å·„å¤§å­¦'),
(1588, 'https://ror.org/02jr6tp70', 'en', 1, 'https://ror.org/02jr6tp70 Azienda Ospedaliera Universitaria Federico II Federico II University Hospital'),
(1589, 'https://ror.org/02erhaz63', 'en', 1, 'https://ror.org/02erhaz63 Lanzhou University Second Hospital'),
(1590, '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'),
(1591, 'https://ror.org/05vhczg54', 'en', 1, 'https://ror.org/05vhczg54 Feng Chia University'),
(1592, 'https://ror.org/028jh2126', 'en', 1, 'https://ror.org/028jh2126 Al al-Bayt University Ų¬Ų§Ł…Ų¹Ų© آل Ų§Ł„ŲØŁŠŲŖ'),
(1593, 'https://ror.org/00g6ka752', 'en', 1, 'https://ror.org/00g6ka752 Ferdowsi University of Mashhad دانؓگاه فردوسی مؓهد'),
(1594, 'https://ror.org/03ke9vf24', 'en', 1, 'https://ror.org/03ke9vf24 Al-Arab Medical University Ų¬Ų§Ł…Ų¹Ų© العرب Ų§Ł„Ų·ŲØŁŠŲ©'),
(1595, 'https://ror.org/00pcrz470', 'en', 1, 'https://ror.org/00pcrz470 Chengdu University of Traditional Chinese Medicine ęˆéƒ½äø­åŒ»čÆå¤§å­¦'),
(1596, 'https://ror.org/00hpnj894', 'es', 1, 'https://ror.org/00hpnj894 Hospital ClĆ­nico Universitario de Valencia'),
(1597, 'https://ror.org/044kkfr75', 'sv', 1, 'https://ror.org/044kkfr75 AlbaNova'),
(1598, 'https://ror.org/022yckc24', 'pt', 1, 'https://ror.org/022yckc24 Hospital UniversitƔrio EvangƩlico de Curitiba'),
(1599, 'https://ror.org/02834m470', 'en', 1, 'https://ror.org/02834m470 Chia Nan University of Pharmacy and Science'),
(1600, 'https://ror.org/01435q086', 'es', 1, 'https://ror.org/01435q086 Hospital Universitario Fundación Alcorcón'),
(1601, 'https://ror.org/05txkk980', 'es', 1, 'https://ror.org/05txkk980 Hospital Universitario Infanta Cristina'),
(1602, 'https://ror.org/04cbm7s05', 'es', 1, 'https://ror.org/04cbm7s05 Hospital Universitario Insular de Gran Canaria'),
(1603, 'https://ror.org/05x6qnc69', 'en', 1, 'https://ror.org/05x6qnc69 Lebanese University UniversitĆ© Libanaise الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ©'),
(1604, 'https://ror.org/05n13be63', 'en', 1, 'https://ror.org/05n13be63 Children''s Hospital of Fudan University'),
(1605, 'https://ror.org/04k6zqn86', 'en', 1, 'https://ror.org/04k6zqn86 Beijing Hua Xin Hospital åŒ—äŗ¬åŽäæ”åŒ»é™¢'),
(1606, 'https://ror.org/028hv5492', 'en', 1, 'https://ror.org/028hv5492 University Hospital Leipzig UniversitƤtsklinikum Leipzig'),
(1607, 'https://ror.org/03kw9gc02', 'en', 1, 'https://ror.org/03kw9gc02 Aligarh Muslim University UniversitĆ© musulmane d''aligarh جامعہ Ų¹Ł„ŪŒ گڑھ ą¤…ą¤²ą„€ą¤—ą¤¢ą¤¼ ą¤®ą„ą¤øą„ą¤²ą¤æą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ আলিগঔ় মুসলিম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ąØ…ąØ²ą©€ąØ—ą©œ ਮੁਸਲਿਮ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®…ą®²ą®æą®•ą®¾ą®°ąÆ ą®®ąÆą®øąÆą®²ą®æą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°…ą°²ą±€ą°˜ą°°ą± ą°®ą±ą°øą±ą°²ą°æą°‚ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²…ą²²ą²æą²˜ą²°ą³ ą²®ą³ą²øą³ą²²ą²æą²®ą³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą“…ą“²ą“æą“—ą“¢ąµ ą“®ąµą“øąµą“²ą“æą“‚ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(1608, 'https://ror.org/05ncvf986', 'en', 1, 'https://ror.org/05ncvf986 Sam Higginbottom Institute of Agriculture ą¤øą„ˆą¤® ą¤¹ą¤æą¤—ą„ą¤—ą¤æą¤Øą¤¬ą„‰ą¤Ÿą¤® ą¤•ą„ƒą¤·ą¤æ, ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą“…ą“²ą“¹ą“¬ą“¾ą“¦ąµ ą“…ą“—ąµą“°ą“æą“•ąµ¾ą“šąµą“šą“±ąµ½ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(1609, 'https://ror.org/02vtd2q19', 'es', 1, 'https://ror.org/02vtd2q19 Hospital Universitario Reina SofĆ­a Reina Sofia Hospital'),
(1610, 'https://ror.org/059ebsr57', 'es', 1, 'https://ror.org/059ebsr57 Hospital Universitario de San Vicente Fundación'),
(1611, 'https://ror.org/006pw7k84', 'en', 1, 'https://ror.org/006pw7k84 Ambrose Alli University YunifƔsƭtƬ Ambrose Alli'),
(1612, 'https://ror.org/025fyfd20', 'en', 1, 'https://ror.org/025fyfd20 Children''s Hospital of Zhejiang University'),
(1613, 'https://ror.org/05s3h8004', 'es', 1, 'https://ror.org/05s3h8004 Hospital Universitario Severo Ochoa'),
(1614, 'https://ror.org/04gzbav43', 'en', 1, 'https://ror.org/04gzbav43 Amirkabir University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ł…ŪŒŲ±Ś©ŲØŪŒŲ±'),
(1615, 'https://ror.org/011apjk30', 'fr', 1, 'https://ror.org/011apjk30 Centre Hospitalier Universitaire Brugmann'),
(1616, 'https://ror.org/04a6gpn58', 'pt', 1, 'https://ror.org/04a6gpn58 Centro UniversitÔrio São Camilo'),
(1617, 'https://ror.org/056221z03', 'en', 1, 'https://ror.org/056221z03 Centre Hospitalier Universitaire de Treichville University Hospital Medical Center at Treichville'),
(1618, 'https://ror.org/04m61mj84', 'fr', 1, 'https://ror.org/04m61mj84 Centre Hospitalier Universitaire Henri-Mondor'),
(1619, 'https://ror.org/0327f3359', 'en', 1, 'https://ror.org/0327f3359 Anhui Agricultural University å®‰å¾½å†œäøšå¤§å­¦'),
(1620, 'https://ror.org/03et1qs84', 'en', 1, 'https://ror.org/03et1qs84 Centre mƩdical universitaire de loma linda Loma Linda University Medical Center'),
(1621, 'https://ror.org/05htjfp05', 'en', 1, 'https://ror.org/05htjfp05 Loma Linda University Children''s Hospital'),
(1622, 'https://ror.org/03n5gdd09', 'en', 1, 'https://ror.org/03n5gdd09 Anhui Provincial Hospital'),
(1623, 'https://ror.org/03pfmgq50', 'en', 1, 'https://ror.org/03pfmgq50 Fooyin University'),
(1624, 'https://ror.org/020jkns84', 'en', 1, 'https://ror.org/020jkns84 Foundation University Medical College'),
(1625, 'https://ror.org/03x1jna21', 'en', 1, 'https://ror.org/03x1jna21 Central China Normal University åŽäø­åøˆčŒƒå¤§å­¦'),
(1626, 'https://ror.org/04xzj3x20', 'en', 1, 'https://ror.org/04xzj3x20 LAC+USC Medical Center'),
(1627, 'https://ror.org/03q3s7962', 'en', 1, 'https://ror.org/03q3s7962 Huizhou University ęƒ å·žå­¦é™¢'),
(1628, 'https://ror.org/0127ytz78', 'en', 1, 'https://ror.org/0127ytz78 Anqing Normal University å®‰åŗ†åøˆčŒƒå­¦é™¢'),
(1629, 'https://ror.org/040qhpb54', 'en', 1, 'https://ror.org/040qhpb54 Aomori University é’ę£®å¤§å­¦'),
(1630, 'https://ror.org/020sa1s57', 'en', 1, 'https://ror.org/020sa1s57 Aomori University of Health and Welfare é’ę£®ēœŒē«‹äæå„å¤§å­¦'),
(1631, 'https://ror.org/04gd4wn47', 'en', 1, 'https://ror.org/04gd4wn47 Arabian Gulf University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ų§Ł„Ų¹Ų±ŲØŁŠ دانؓگاه Ų®Ł„ŪŒŲ¬ عربی'),
(1632, 'https://ror.org/00ngrq502', 'en', 1, 'https://ror.org/00ngrq502 Arak University دانؓگاه Ų§Ų±Ų§Ś©'),
(1633, 'https://ror.org/04n4dcv16', 'en', 1, 'https://ror.org/04n4dcv16 Ardabil University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§Ų±ŲÆŲØŪŒŁ„'),
(1634, 'https://ror.org/04j3vr751', 'en', 1, 'https://ror.org/04j3vr751 Hunan University of Technology'),
(1635, 'https://ror.org/02f2vsx71', 'no_lang_code', 1, 'https://ror.org/02f2vsx71 Hungkuang University'),
(1636, 'https://ror.org/02w5pxz31', 'en', 1, 'https://ror.org/02w5pxz31 Assiut University Hospitals'),
(1637, 'https://ror.org/01p3tpn79', 'es', 1, 'https://ror.org/01p3tpn79 Hospital Universitari Arnau de Vilanova'),
(1638, 'https://ror.org/04d7e4m76', 'en', 1, 'https://ror.org/04d7e4m76 I-Shou University'),
(1639, 'https://ror.org/05xcyt367', 'en', 1, 'https://ror.org/05xcyt367 Loyola University Medical Center'),
(1640, 'https://ror.org/04m3xd186', 'pt', 1, 'https://ror.org/04m3xd186 Centro UniversitƔrio de Belo Horizonte Centro UniversitƔrio de belo Horizonte'),
(1641, 'https://ror.org/05epcpp46', 'en', 1, 'https://ror.org/05epcpp46 Asahi University ęœę—„å¤§å­¦'),
(1642, 'https://ror.org/01mqsmm97', 'es', 1, 'https://ror.org/01mqsmm97 Hospital Regional Universitario de MƔlaga'),
(1643, 'https://ror.org/02558wk32', 'en', 1, 'https://ror.org/02558wk32 Islamic Azad University, Arak دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ų±Ų§Ś©'),
(1644, 'https://ror.org/016a0n751', 'en', 1, 'https://ror.org/016a0n751 Azerbaijan Medical University Azərbaycan Tibb Universiteti АзербайГжанский меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1645, 'https://ror.org/05hn3aw08', 'en', 1, 'https://ror.org/05hn3aw08 Lincoln University - Missouri'),
(1646, 'https://ror.org/00sm8k518', 'it', 1, 'https://ror.org/00sm8k518 Azienda Ospedaliera Universitaria Integrata Verona'),
(1647, 'https://ror.org/02s7et124', 'it', 1, 'https://ror.org/02s7et124 Azienda Ospedaliera Universitaria Senese'),
(1648, 'https://ror.org/05v1y0t93', 'en', 1, 'https://ror.org/05v1y0t93 China Jiliang University'),
(1649, 'https://ror.org/04vgkzj18', 'en', 1, 'https://ror.org/04vgkzj18 Ibaraki Prefectural University of Health Sciences čŒØåŸŽēœŒē«‹åŒ»ē™‚å¤§å­¦'),
(1650, 'https://ror.org/01fbdn283', 'en', 1, 'https://ror.org/01fbdn283 Magee-Womens Hospital'),
(1651, 'https://ror.org/0213f0637', 'it', 1, 'https://ror.org/0213f0637 Azienda Ospedaliero Universitaria Ospedali Riuniti'),
(1652, 'https://ror.org/02s7c9e98', 'en', 1, 'https://ror.org/02s7c9e98 Fourth Affiliated Hospital of Harbin Medical University å“ˆå°”ę»ØåŒ»ē§‘å¤§å­¦ē¬¬å››é™„å±žåŒ»é™¢'),
(1653, 'https://ror.org/02zpc2253', 'it', 1, 'https://ror.org/02zpc2253 Ospedale Santa Maria della Misericordia di Udine'),
(1654, 'https://ror.org/01v0xk274', 'pt', 1, 'https://ror.org/01v0xk274 Universidade Ibirapuera'),
(1655, 'https://ror.org/01bx8ja67', 'no_lang_code', 1, 'https://ror.org/01bx8ja67 Maharaja Sayajirao University of Baroda મહારાજા ąŖøąŖÆąŖ¾ąŖœą«€ąŖ°ąŖ¾ąŖµ ąŖµąŖæąŖ¶ą«ąŖµąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖ²ąŖÆ ą®®ą®•ą®¾ą®°ą®¾ą®œą®¾ ą®šą®¾ą®Æą®¾ą®œą®æą®°ą®¾ą®µąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(1656, 'https://ror.org/02r5cmz65', 'en', 1, 'https://ror.org/02r5cmz65 Babol University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŲ§ŲØŁ„'),
(1657, 'https://ror.org/02zc85170', 'en', 1, 'https://ror.org/02zc85170 Babol Noshirvani University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ł†ŁˆŲ“ŪŒŲ±ŁˆŲ§Ł†ŪŒ ŲØŲ§ŲØŁ„'),
(1658, 'https://ror.org/04nt8b154', 'en', 1, 'https://ror.org/04nt8b154 Fukuoka University ē¦å²”å¤§å­¦'),
(1659, 'https://ror.org/007f1da21', 'en', 1, 'https://ror.org/007f1da21 University of Baghdad Ų¬Ų§Ł…Ų¹Ų© ŲØŲŗŲÆŲ§ŲÆ'),
(1660, 'https://ror.org/05b0gpy83', 'en', 1, 'https://ror.org/05b0gpy83 Center for Forensic Mental Health, Chiba University åƒč‘‰å¤§å­¦ ē¤¾ä¼šē²¾ē„žäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼');
INSERT INTO `rors` VALUES
(1661, 'https://ror.org/04cdn2797', 'en', 1, 'https://ror.org/04cdn2797 Banaras Hindu University UniversitĆ© hindoue de bĆ©narĆØs ą¤•ą¤¾ą¤¶ą„€ ą¤¹ą¤æą¤Øą„ą¤¦ą„‚ ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ কাশী ą¦¹ą¦æą¦Øą§ą¦¦ą§ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ બનારસ હિંદુ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€ பனாரசு ą®‡ą®ØąÆą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°¬ą±†ą°Øą°¾ą°°ą°øą± హిందూ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²¬ą²Øą²¾ą²°ą²øą³ ಹಿಂದೂ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ ą“¬ą“Øą“¾ą“±ą“øąµ ą“¹ą“æą“Øąµą“¦ąµ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(1662, 'https://ror.org/0368s4g32', 'en', 1, 'https://ror.org/0368s4g32 China Medical University Hospital'),
(1663, 'https://ror.org/00kde4z41', 'pt', 1, 'https://ror.org/00kde4z41 Lutheran University of Brazil Universidad Luterana de Brasil Universidade Luterana do Brasil'),
(1664, 'https://ror.org/05nx0xs09', 'en', 1, 'https://ror.org/05nx0xs09 Baoji University of Arts and Sciences å®éø”ę–‡ē†å­¦é™¢'),
(1665, 'https://ror.org/04nqv0v23', 'en', 1, 'https://ror.org/04nqv0v23 Lynn University'),
(1666, 'https://ror.org/01ysgtb61', 'en', 1, 'https://ror.org/01ysgtb61 Baqiyatallah University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŁ‚ŪŒŲ©Ų§Ł„Ł„Ł‡'),
(1667, 'https://ror.org/00e49gy82', 'en', 1, 'https://ror.org/00e49gy82 China University of Political Science and Law 中国政法大学'),
(1668, 'https://ror.org/02ax13658', 'no_lang_code', 1, 'https://ror.org/02ax13658 Barkatullah University'),
(1669, 'https://ror.org/04shepe48', 'en', 1, 'https://ror.org/04shepe48 Chinese Culture University äø­åœ‹ę–‡åŒ–å¤§å­ø'),
(1670, 'https://ror.org/00wejpz79', 'en', 1, 'https://ror.org/00wejpz79 Hyogo University of Teacher Education 兵庫教育大学'),
(1671, 'https://ror.org/04esb6v42', 'en', 1, 'https://ror.org/04esb6v42 Imam Hossein University دانؓگاه Ų§Ł…Ų§Ł… Ų­Ų³ŪŒŁ†'),
(1672, 'https://ror.org/02w1g0f30', 'en', 1, 'https://ror.org/02w1g0f30 Bashkir State Medical University Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1673, 'https://ror.org/04h3ct388', 'en', 1, 'https://ror.org/04h3ct388 Imo State University Teaching Hospital'),
(1674, 'https://ror.org/00mwhaw71', 'en', 1, 'https://ror.org/00mwhaw71 Mae Fah Luang University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąø”ą¹ˆąøŸą¹‰ąø²ąø«ąø„ąø§ąø‡'),
(1675, 'https://ror.org/00mmq5f59', 'en', 1, 'https://ror.org/00mmq5f59 Mahatma Phule Krishi Vidyapeeth'),
(1676, 'https://ror.org/03m04df46', 'en', 1, 'https://ror.org/03m04df46 University Hospital Magdeburg UniversitƤtsklinikum Magdeburg'),
(1677, 'https://ror.org/003vkcj31', 'en', 1, 'https://ror.org/003vkcj31 University of Teacher Education Fukuoka ē¦å²”ę•™č‚²å¤§å­¦'),
(1678, 'https://ror.org/0313f3w77', 'en', 1, 'https://ror.org/0313f3w77 Başkent University Hospital'),
(1679, 'https://ror.org/00skwgg83', 'en', 1, 'https://ror.org/00skwgg83 Fukuoka Women''s University ē¦å²”å„³å­å¤§å­¦'),
(1680, 'https://ror.org/00pw0pp06', 'en', 1, 'https://ror.org/00pw0pp06 Graz University Hospital Univ. Klinikum Graz'),
(1681, 'https://ror.org/02h2j1586', 'en', 1, 'https://ror.org/02h2j1586 Beijing Anzhen Hospital åŒ—äŗ¬åø‚åæƒč‚ŗč”€ē®”ē–¾ē—…ē ”ē©¶ę‰€'),
(1682, 'https://ror.org/05tc07s46', 'en', 1, 'https://ror.org/05tc07s46 Matsuyama University ę¾å±±å¤§å­¦'),
(1683, 'https://ror.org/03w0k0x36', 'en', 1, 'https://ror.org/03w0k0x36 Beijing Sport University åŒ—äŗ¬ä½“č‚²å¤§å­¦'),
(1684, 'https://ror.org/013e0zm98', 'en', 1, 'https://ror.org/013e0zm98 Beijing Technology and Business University åŒ—äŗ¬å·„å•†å¤§å­¦'),
(1685, 'https://ror.org/01jaaym28', 'en', 1, 'https://ror.org/01jaaym28 Shimane University 島根大学'),
(1686, 'https://ror.org/02wkcrp04', 'en', 1, 'https://ror.org/02wkcrp04 Mazandaran University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی مازندران'),
(1687, 'https://ror.org/05jd2pj53', 'en', 1, 'https://ror.org/05jd2pj53 King Chulalongkorn Memorial Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøˆąøøąø¬ąø²ąø„ąø‡ąøąø£ąø“ą¹Œ'),
(1688, 'https://ror.org/031m0eg77', 'en', 1, 'https://ror.org/031m0eg77 Chung Hwa University of Medical Technology äø­čÆé†«äŗ‹ē§‘ęŠ€å¤§å­ø'),
(1689, 'https://ror.org/0589bxs97', 'en', 1, 'https://ror.org/0589bxs97 McGill University and GƩnome QuƩbec Innovation Centre'),
(1690, 'https://ror.org/051dzw862', 'en', 1, 'https://ror.org/051dzw862 Gentofte Hospital'),
(1691, 'https://ror.org/04cwap208', 'en', 1, 'https://ror.org/04cwap208 Inner Mongolia University for Nationalities'),
(1692, 'https://ror.org/02w8ws377', 'en', 1, 'https://ror.org/02w8ws377 Chung Yuan Christian University'),
(1693, 'https://ror.org/00wmm6v75', 'en', 1, 'https://ror.org/00wmm6v75 American University of Beirut Medical Center'),
(1694, 'https://ror.org/01yzz0f51', 'en', 1, 'https://ror.org/01yzz0f51 Chung Hua University'),
(1695, 'https://ror.org/05jyrng31', 'en', 1, 'https://ror.org/05jyrng31 McMaster University Medical Centre'),
(1696, 'https://ror.org/03tn5ee41', 'en', 1, 'https://ror.org/03tn5ee41 Benha University UniversitĆ© de Banha Ų¬Ų§Ł…Ų¹Ų© بنها'),
(1697, 'https://ror.org/03qqbe534', 'en', 1, 'https://ror.org/03qqbe534 Korea National University of Transportation ķ•œźµ­źµķ†µėŒ€ķ•™źµ'),
(1698, 'https://ror.org/03ja1ak26', 'en', 1, 'https://ror.org/03ja1ak26 MedStar Georgetown University Hospital'),
(1699, 'https://ror.org/01jmd7f74', 'en', 1, 'https://ror.org/01jmd7f74 Chuvash State University Чувашский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. Š. Š£Š»ŃŒŃŠ½Š¾Š²Š°'),
(1700, 'https://ror.org/05kr7zx86', 'en', 1, 'https://ror.org/05kr7zx86 Georgia College & State University'),
(1701, 'https://ror.org/04sbcrt14', 'en', 1, 'https://ror.org/04sbcrt14 Bhavnagar University'),
(1702, 'https://ror.org/03grgv984', 'en', 1, 'https://ror.org/03grgv984 University Centre of Legal Medicine'),
(1703, 'https://ror.org/0372t5741', 'en', 1, 'https://ror.org/0372t5741 Gifu Pharmaceutical University å²é˜œč–¬ē§‘å¤§å­¦'),
(1704, 'https://ror.org/03g4hym73', 'en', 1, 'https://ror.org/03g4hym73 University of Birjand دانؓگاه ŲØŪŒŲ±Ų¬Ł†ŲÆ'),
(1705, 'https://ror.org/01h2hg078', 'en', 1, 'https://ror.org/01h2hg078 Birjand University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŪŒŲ±Ų¬Ł†ŲÆ'),
(1706, 'https://ror.org/00bjck208', 'en', 1, 'https://ror.org/00bjck208 Glasgow Royal Infirmary'),
(1707, 'https://ror.org/00kays408', 'pt', 1, 'https://ror.org/00kays408 Universidade Gama Filho University Gama Filho'),
(1708, 'https://ror.org/05p1frt18', 'en', 1, 'https://ror.org/05p1frt18 Glostrup Hospital'),
(1709, 'https://ror.org/039zd5s34', 'en', 1, 'https://ror.org/039zd5s34 Integral University UniversitĆ© intĆ©grale de lucknow ą¤‡ą¤‚ą¤Ÿą„€ą¤—ą„ą¤°ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1710, 'https://ror.org/01600wh70', 'en', 1, 'https://ror.org/01600wh70 University of Toledo Medical Center'),
(1711, 'https://ror.org/053d3tv41', 'en', 1, 'https://ror.org/053d3tv41 International University of Health and Welfare å›½éš›åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(1712, 'https://ror.org/0461cvh40', 'en', 1, 'https://ror.org/0461cvh40 Gangneung–Wonju National University ź°•ė¦‰ģ›ģ£¼ėŒ€ķ•™źµ'),
(1713, 'https://ror.org/05ym42410', 'en', 1, 'https://ror.org/05ym42410 Gansu Agricultural University ē”˜č‚ƒå†œäøšå¤§å­¦'),
(1714, 'https://ror.org/03fh7t044', 'en', 1, 'https://ror.org/03fh7t044 University of Benghazi Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŲŗŲ§Ų²ŁŠ'),
(1715, 'https://ror.org/0241b8f19', 'en', 1, 'https://ror.org/0241b8f19 Gomal University جامعہ ŚÆŁˆŁ…Ł„'),
(1716, 'https://ror.org/00af3sa43', 'en', 1, 'https://ror.org/00af3sa43 Isfahan University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ اصفهان'),
(1717, 'https://ror.org/03qg42k57', 'no_lang_code', 1, 'https://ror.org/03qg42k57 Ishinomaki Senshu University ēŸ³å·»å°‚äæ®å¤§å­¦'),
(1718, 'https://ror.org/04j1w0q97', 'en', 1, 'https://ror.org/04j1w0q97 Islamic University ইসলামী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(1719, 'https://ror.org/01w6vdf77', 'en', 1, 'https://ror.org/01w6vdf77 Gorgan University of Agricultural Sciences and Natural Resources دانؓگاه Ų¹Ł„ŁˆŁ… کؓاورزی و منابع طبیعی گرگان'),
(1720, 'https://ror.org/03thzz813', 'en', 1, 'https://ror.org/03thzz813 Meikai University ę˜Žęµ·å¤§å­¦'),
(1721, 'https://ror.org/01y4xm534', 'en', 1, 'https://ror.org/01y4xm534 Islamic Azad University, Karaj Karaj Islamic Azad University دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کرج'),
(1722, 'https://ror.org/023m35461', 'en', 1, 'https://ror.org/023m35461 Istanbul Bilim University İstanbul Bilim Üniversitesi'),
(1723, 'https://ror.org/005wpyn57', 'en', 1, 'https://ror.org/005wpyn57 Children''s Hospital Mansoura University'),
(1724, 'https://ror.org/017q2rt66', 'en', 1, 'https://ror.org/017q2rt66 Mercy University Hospital'),
(1725, 'https://ror.org/04fdkjq44', 'en', 1, 'https://ror.org/04fdkjq44 Methodist University Hospital'),
(1726, 'https://ror.org/056rp9e47', 'en', 1, 'https://ror.org/056rp9e47 Metropolitan State University'),
(1727, 'https://ror.org/04cd75h10', 'en', 1, 'https://ror.org/04cd75h10 Iwate University 岩手大学'),
(1728, 'https://ror.org/05h8pvh61', 'fr', 1, 'https://ror.org/05h8pvh61 HƓpital Broussais'),
(1729, 'https://ror.org/04t6zb108', 'en', 1, 'https://ror.org/04t6zb108 University Hospitals Geneva Medical Center'),
(1730, 'https://ror.org/01xrazc29', 'en', 1, 'https://ror.org/01xrazc29 Jaipur National University'),
(1731, 'https://ror.org/030vg1t69', 'en', 1, 'https://ror.org/030vg1t69 Misr International University Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ± Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(1732, 'https://ror.org/01s7jxc19', 'en', 1, 'https://ror.org/01s7jxc19 Miyagi University of Education å®®åŸŽę•™č‚²å¤§å­¦'),
(1733, 'https://ror.org/02vqh3346', 'en', 1, 'https://ror.org/02vqh3346 James Cook University Hospital'),
(1734, 'https://ror.org/00nm7k655', 'en', 1, 'https://ror.org/00nm7k655 James Paget University Hospital'),
(1735, 'https://ror.org/00v81k483', 'en', 1, 'https://ror.org/00v81k483 Mokpo National University ėŖ©ķ¬ėŒ€ķ•™źµ'),
(1736, 'https://ror.org/03dwxvb85', 'no_lang_code', 1, 'https://ror.org/03dwxvb85 Jamia Hamdard'),
(1737, 'https://ror.org/01whq8m38', 'en', 1, 'https://ror.org/01whq8m38 Mokwon University ėŖ©ģ›ėŒ€ķ•™źµ'),
(1738, 'https://ror.org/02q3bak66', 'en', 1, 'https://ror.org/02q3bak66 Buckinghamshire New University Prifysgol Newydd Swydd Buckingham'),
(1739, 'https://ror.org/0003ewr82', 'no_lang_code', 1, 'https://ror.org/0003ewr82 Bundelkhand University'),
(1740, 'https://ror.org/04ss1bw11', 'en', 1, 'https://ror.org/04ss1bw11 Tzu Chi University ę…ˆęæŸå¤§å­ø'),
(1741, 'https://ror.org/04gpcyk21', 'en', 1, 'https://ror.org/04gpcyk21 Japan Women''s University ę—„ęœ¬å„³å­å¤§å­¦'),
(1742, 'https://ror.org/04k0yqc48', 'en', 1, 'https://ror.org/04k0yqc48 Buskerud University College'),
(1743, 'https://ror.org/04a5hr295', 'es', 1, 'https://ror.org/04a5hr295 Complejo Hospitalario Universitario de Albacete Hospital General Universitario de Albacete'),
(1744, 'https://ror.org/00fwdyt59', 'en', 1, 'https://ror.org/00fwdyt59 George Washington University Hospital'),
(1745, 'https://ror.org/015v9d997', 'en', 1, 'https://ror.org/015v9d997 Jeonju University ģ „ģ£¼ėŒ€ķ•™źµ'),
(1746, 'https://ror.org/04azbjn80', 'en', 1, 'https://ror.org/04azbjn80 Guangdong University of Technology 广东巄业大学'),
(1747, 'https://ror.org/04yj19304', 'en', 1, 'https://ror.org/04yj19304 California Baptist University'),
(1748, 'https://ror.org/01ybfxd46', 'en', 1, 'https://ror.org/01ybfxd46 University Hospital Complex Of Vigo'),
(1749, 'https://ror.org/04dx82x73', 'en', 1, 'https://ror.org/04dx82x73 Nanning Normal University å—å®åøˆčŒƒå¤§å­¦'),
(1750, 'https://ror.org/051hvcm98', 'en', 1, 'https://ror.org/051hvcm98 Jiangsu Normal University ę±Ÿč‹åøˆčŒƒå¤§å­¦'),
(1751, 'https://ror.org/00dc7s858', 'en', 1, 'https://ror.org/00dc7s858 Jiangxi Agricultural University ę±Ÿč„æå†œäøšå¤§å­¦'),
(1752, 'https://ror.org/01rx63s97', 'pt', 1, 'https://ror.org/01rx63s97 Guarulhos University'),
(1753, 'https://ror.org/01tqqny90', 'en', 1, 'https://ror.org/01tqqny90 Nagasaki International University 長哎国際大学'),
(1754, 'https://ror.org/01bdr6121', 'en', 1, 'https://ror.org/01bdr6121 University of Guilan دانؓگاه ŚÆŪŒŁ„Ų§Ł†'),
(1755, 'https://ror.org/04ptbrd12', 'en', 1, 'https://ror.org/04ptbrd12 Guilan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŚÆŪŒŁ„Ų§Ł†'),
(1756, 'https://ror.org/05735fh94', 'en', 1, 'https://ror.org/05735fh94 Gujarat Ayurved University ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖ†ąŖÆą«ąŖ°ą«ąŖµą«‡ąŖ¦ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(1757, 'https://ror.org/02jagkr09', 'en', 1, 'https://ror.org/02jagkr09 Gulbarga University ą¤—ą„ą¤²ą¤¬ą¤°ą„ą¤—ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®•ąÆą®²ąÆą®Ŗą®°ąÆą®•ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°—ą±ą°²ą±ą°¬ą°°ą±ą°—ą°¾ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²—ą³ą²²ą³ą²¬ą²°ą³ą²—ą²¾ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(1758, 'https://ror.org/02adg5v98', 'en', 1, 'https://ror.org/02adg5v98 Nagoya City University Hospital åå¤å±‹åø‚ē«‹å¤§å­¦ē—…é™¢'),
(1759, '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'),
(1760, 'https://ror.org/049wjac82', 'en', 1, 'https://ror.org/049wjac82 Cooper University Hospital'),
(1761, 'https://ror.org/007evha27', 'en', 1, 'https://ror.org/007evha27 Cooper Medical School of Rowan University'),
(1762, 'https://ror.org/039ygjf22', 'en', 1, 'https://ror.org/039ygjf22 Jikei University School of Medicine ę±äŗ¬ę…ˆęµä¼šåŒ»ē§‘å¤§å­¦'),
(1763, 'https://ror.org/00wys9y90', 'en', 1, 'https://ror.org/00wys9y90 Herlev Hospital'),
(1764, 'https://ror.org/05eer8g02', 'en', 1, 'https://ror.org/05eer8g02 Jimma University'),
(1765, 'https://ror.org/00vpv1x26', 'en', 1, 'https://ror.org/00vpv1x26 Tokyo Medical University Hachioji Medical Center ę±äŗ¬åŒ»ē§‘å¤§å­¦å…«ēŽ‹å­åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1766, 'https://ror.org/056zv5g90', 'en', 1, 'https://ror.org/056zv5g90 Jinnah University for Women جناح ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ†'),
(1767, 'https://ror.org/00a53nq42', 'en', 1, 'https://ror.org/00a53nq42 Cancer Hospital of Shantou University Medical College ę±•å¤“å¤§å­¦åŒ»å­¦é™¢é™„å±žč‚æē˜¤åŒ»é™¢'),
(1768, 'https://ror.org/0152hn881', 'en', 1, 'https://ror.org/0152hn881 Tianjin Medical University Cancer Institute and Hospital å¤©ę“„åŒ»ē§‘å¤§å­¦č‚æē˜¤åŒ»é™¢'),
(1769, 'https://ror.org/024q5j973', 'en', 1, 'https://ror.org/024q5j973 Hacettepe University Hospital'),
(1770, 'https://ror.org/0470b8t84', 'en', 1, 'https://ror.org/0470b8t84 Capella University'),
(1771, 'https://ror.org/011ygts35', 'en', 1, 'https://ror.org/011ygts35 University Clinic of Traumatology'),
(1772, 'https://ror.org/02aknh966', 'en', 1, 'https://ror.org/02aknh966 Emory University Hospital Midtown'),
(1773, 'https://ror.org/05j4p5w63', 'en', 1, 'https://ror.org/05j4p5w63 MetroHealth Medical Center'),
(1774, 'https://ror.org/05k8pq072', 'pt', 1, 'https://ror.org/05k8pq072 Universidade Cruzeiro do Sul'),
(1775, 'https://ror.org/00nvxt968', 'de', 1, 'https://ror.org/00nvxt968 UniversitƤtsklinikum des Saarlandes'),
(1776, 'https://ror.org/04k093t90', 'en', 1, 'https://ror.org/04k093t90 Chaudhary Sarwan Kumar Himachal Pradesh Krishi Vishvavidyalaya'),
(1777, 'https://ror.org/04pwc8466', 'en', 1, 'https://ror.org/04pwc8466 Johns Hopkins Bayview Medical Center'),
(1778, 'https://ror.org/036wxg427', 'no_lang_code', 1, 'https://ror.org/036wxg427 Jordan Hospital مستؓفى الأردن'),
(1779, 'https://ror.org/042vvex07', 'en', 1, 'https://ror.org/042vvex07 Jos University Teaching Hospital'),
(1780, 'https://ror.org/02eqchk86', 'en', 1, 'https://ror.org/02eqchk86 Daejeon University ėŒ€ģ „ėŒ€ķ•™źµ'),
(1781, 'https://ror.org/057vy9683', 'en', 1, 'https://ror.org/057vy9683 Hamamatsu University ęµœę¾å¤§å­¦'),
(1782, 'https://ror.org/04vdpck27', 'en', 1, 'https://ror.org/04vdpck27 Catholic University of the Maule Universidad Católica del Maule'),
(1783, 'https://ror.org/0376myh60', 'pt', 1, 'https://ror.org/0376myh60 Catholic University of Pelotas Universidade Católica de Pelotas'),
(1784, 'https://ror.org/0031nsg68', 'en', 1, 'https://ror.org/0031nsg68 Hankyong National University ķ•œź²½ėŒ€ķ•™źµ'),
(1785, 'https://ror.org/05gn84d31', 'es', 1, 'https://ror.org/05gn84d31 Hospital de León'),
(1786, 'https://ror.org/01cwbae71', 'en', 1, 'https://ror.org/01cwbae71 Hannam University ķ•œė‚ØėŒ€ķ•™źµ'),
(1787, 'https://ror.org/03v4m1x12', 'en', 1, 'https://ror.org/03v4m1x12 Damghan University دانؓگاه دامغان'),
(1788, 'https://ror.org/0433abe34', 'en', 1, 'https://ror.org/0433abe34 K.N.Toosi University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų®ŁˆŲ§Ų¬Ł‡ Ł†ŲµŪŒŲ±Ų§Ł„ŲÆŪŒŁ† طوسی'),
(1789, 'https://ror.org/02jv06474', 'en', 1, 'https://ror.org/02jv06474 Hanseo University'),
(1790, 'https://ror.org/03ayf0c60', 'en', 1, 'https://ror.org/03ayf0c60 Kagawa Nutrition University å„³å­ę „é¤Šå¤§å­¦'),
(1791, 'https://ror.org/00sxe0e68', 'en', 1, 'https://ror.org/00sxe0e68 Harper University Hospital'),
(1792, 'https://ror.org/0535cbe18', 'en', 1, 'https://ror.org/0535cbe18 Kanazawa Medical University é‡‘ę²¢åŒ»ē§‘å¤§å­¦'),
(1793, 'https://ror.org/0382k6j58', 'en', 1, 'https://ror.org/0382k6j58 Nambu University'),
(1794, 'https://ror.org/00bsyjc58', 'en', 1, 'https://ror.org/00bsyjc58 Kanchi Mamunivar Centre for Post Graduate Studies'),
(1795, 'https://ror.org/0369pvp92', 'no_lang_code', 1, 'https://ror.org/0369pvp92 Nanchang Hangkong University å—ę˜ŒčˆŖē©ŗå¤§å­¦'),
(1796, 'https://ror.org/02a6g3h39', 'en', 1, 'https://ror.org/02a6g3h39 Hawler Medical University Ų¬Ų§Ł…Ų¹Ų© Ł‡ŁˆŁ„ŁŠŲ± Ų§Ł„Ų·ŲØŁŠŲ©'),
(1797, 'https://ror.org/03xg1f311', 'en', 1, 'https://ror.org/03xg1f311 Kansai University 関脿大学'),
(1798, 'https://ror.org/00682eh61', 'en', 1, 'https://ror.org/00682eh61 Detroit Receiving Hospital'),
(1799, 'https://ror.org/041bf1s37', 'no_lang_code', 1, 'https://ror.org/041bf1s37 Kanto Gakuin University é–¢ę±å­¦é™¢å¤§å­¦'),
(1800, 'https://ror.org/03gk81f96', 'en', 1, 'https://ror.org/03gk81f96 Kaohsiung Medical University'),
(1801, 'https://ror.org/04tqcn816', 'en', 1, 'https://ror.org/04tqcn816 Health Sciences University of Hokkaido åŒ—ęµ·é“åŒ»ē™‚å¤§å­¦'),
(1802, 'https://ror.org/05g1mag11', 'en', 1, 'https://ror.org/05g1mag11 Hebei Normal University of Science and Technology ę²³åŒ—ē§‘ęŠ€åøˆčŒƒå­¦é™¢'),
(1803, 'https://ror.org/03e2qe334', 'no_lang_code', 1, 'https://ror.org/03e2qe334 Naresuan University ดหาวณทยาคัยนเรศวร'),
(1804, 'https://ror.org/00menq219', 'en', 1, 'https://ror.org/00menq219 Naruto University of Education 鳓門教育大学'),
(1805, 'https://ror.org/03cc0mm23', 'en', 1, 'https://ror.org/03cc0mm23 Nassau University Medical Center'),
(1806, 'https://ror.org/00mjawt10', 'en', 1, 'https://ror.org/00mjawt10 National Sun Yat-sen University'),
(1807, 'https://ror.org/005gkfa10', 'en', 1, 'https://ror.org/005gkfa10 National Changhua University of Education åœ‹ē«‹å½°åŒ–åø«ēÆ„å¤§å­ø'),
(1808, 'https://ror.org/04zx3rq17', 'en', 1, 'https://ror.org/04zx3rq17 National Cheng Kung University Hospital'),
(1809, 'https://ror.org/01qww1p93', 'en', 1, 'https://ror.org/01qww1p93 Dominican University'),
(1810, 'https://ror.org/04gknbs13', 'en', 1, 'https://ror.org/04gknbs13 National Chiayi University åœ‹ē«‹å˜‰ē¾©å¤§å­ø'),
(1811, 'https://ror.org/059g69b28', 'en', 1, 'https://ror.org/059g69b28 Dong-Eui University ė™ģ˜ėŒ€ķ•™źµ'),
(1812, 'https://ror.org/039p7ck60', 'en', 1, 'https://ror.org/039p7ck60 Dongduk Women''s University ė™ė•ģ—¬ģžėŒ€ķ•™źµ'),
(1813, 'https://ror.org/05tzr3y75', 'en', 1, 'https://ror.org/05tzr3y75 Kassala University Ų¬Ų§Ł…Ų¹Ų© ŁƒŲ³Ł„Ų§'),
(1814, 'https://ror.org/05prep819', 'en', 1, 'https://ror.org/05prep819 National Hsinchu University of Education'),
(1815, 'https://ror.org/01npf0s58', 'en', 1, 'https://ror.org/01npf0s58 National Ilan University åœ‹ē«‹å®œč˜­å¤§å­ø'),
(1816, 'https://ror.org/00wygsf57', 'en', 1, 'https://ror.org/00wygsf57 Dongseo University ė™ģ„œėŒ€ķ•™źµ'),
(1817, 'https://ror.org/008hybe55', 'en', 1, 'https://ror.org/008hybe55 JILA Joint Institute for Laboratory Astrophysics'),
(1818, 'https://ror.org/02yacz525', 'en', 1, 'https://ror.org/02yacz525 Dongzhimen Hospital Affiliated to Beijing University of Chinese Medicine åŒ—äŗ¬äø­åŒ»čÆå¤§å­¦äøœē›“é—ØåŒ»é™¢'),
(1819, 'https://ror.org/01v9g9c07', 'en', 1, 'https://ror.org/01v9g9c07 Mie University Hospital äø‰é‡å¤§å­¦ē—…é™¢'),
(1820, 'https://ror.org/01zqccq48', 'en', 1, 'https://ror.org/01zqccq48 Daegu University ėŒ€źµ¬ėŒ€ķ•™źµ'),
(1821, 'https://ror.org/03s2gs602', 'en', 1, 'https://ror.org/03s2gs602 Kawasaki University of Medical Welfare å·å“ŽåŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(1822, 'https://ror.org/02797hn66', 'en', 1, 'https://ror.org/02797hn66 Dr. Ram Manohar Lohia Avadh University ą¤”ą„‰ राम ą¤®ą¤Øą„‹ą¤¹ą¤° ą¤²ą„‹ą¤¹ą¤æą¤Æą¤¾ अवध ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1823, 'https://ror.org/059dkdx38', 'en', 1, 'https://ror.org/059dkdx38 National Taiwan Normal University'),
(1824, 'https://ror.org/00tjv0s33', 'en', 1, 'https://ror.org/00tjv0s33 Keimyung University ź³„ėŖ…ėŒ€ķ•™źµ'),
(1825, 'https://ror.org/01zjvhn75', 'en', 1, 'https://ror.org/01zjvhn75 National Taiwan Sport University'),
(1826, 'https://ror.org/03nteze27', 'en', 1, 'https://ror.org/03nteze27 National Taiwan University Hospital'),
(1827, 'https://ror.org/01k8ej563', 'en', 1, 'https://ror.org/01k8ej563 Keio University Hospital 慶應義唾大学病院'),
(1828, 'https://ror.org/006bvjm48', 'en', 1, 'https://ror.org/006bvjm48 Hengyang Normal University'),
(1829, 'https://ror.org/04twccc71', 'en', 1, 'https://ror.org/04twccc71 National United University'),
(1830, 'https://ror.org/04fp9fm22', 'en', 1, 'https://ror.org/04fp9fm22 National University Hospital'),
(1831, 'https://ror.org/013zjb662', 'en', 1, 'https://ror.org/013zjb662 National University of Kaohsiung'),
(1832, 'https://ror.org/0303y7a51', 'en', 1, 'https://ror.org/0303y7a51 Durban University of Technology Inyuvesi yasethekwini yezobuchwepheshe'),
(1833, 'https://ror.org/00mczdx43', 'en', 1, 'https://ror.org/00mczdx43 National University of San Luis Universidad Nacional de San Luis'),
(1834, 'https://ror.org/02xmq6r77', 'en', 1, 'https://ror.org/02xmq6r77 Kibi International University 吉備国際大学'),
(1835, 'https://ror.org/01vv03303', 'en', 1, 'https://ror.org/01vv03303 King Abdul Aziz University Hospital'),
(1836, 'https://ror.org/04qkq2m54', 'en', 1, 'https://ror.org/04qkq2m54 National Yunlin University of Science and Technology'),
(1837, 'https://ror.org/02rrbpf42', 'en', 1, 'https://ror.org/02rrbpf42 King Edward Medical University کنگ ایڈورڈ Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(1838, 'https://ror.org/0230h1q47', 'en', 1, 'https://ror.org/0230h1q47 King Fahd Hospital of the University مستؓفى Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„'),
(1839, 'https://ror.org/02s5yma07', 'en', 1, 'https://ror.org/02s5yma07 Himachal Pradesh University'),
(1840, 'https://ror.org/011xca688', 'en', 1, 'https://ror.org/011xca688 Himeji Dokkyo University å§«č·ÆēØå”å¤§å­¦'),
(1841, 'https://ror.org/019z71f50', 'en', 1, 'https://ror.org/019z71f50 National Taipei University of Nursing and Health Science åœ‹ē«‹č‡ŗåŒ—č­·ē†å„åŗ·å¤§å­ø'),
(1842, 'https://ror.org/03grprm46', 'en', 1, 'https://ror.org/03grprm46 Clinical Emergency Hospital Bucharest Spitalul Clinic de Urgenta Bucuresti'),
(1843, 'https://ror.org/00hm9kt34', 'sv', 1, 'https://ror.org/00hm9kt34 Danderyds sjukhus'),
(1844, 'https://ror.org/0059h1f24', 'en', 1, 'https://ror.org/0059h1f24 Prefectural University of Hiroshima ēœŒē«‹åŗƒå³¶å¤§å­¦'),
(1845, 'https://ror.org/01xm4tt59', 'en', 1, 'https://ror.org/01xm4tt59 Woodruff Health Sciences Center'),
(1846, 'https://ror.org/05j1gs298', 'en', 1, 'https://ror.org/05j1gs298 Erasmus Hospital Erasmus Ziekenhuis HĆ“pital Ɖrasme'),
(1847, 'https://ror.org/00zjtek40', 'tr', 1, 'https://ror.org/00zjtek40 Dicle Üniversitesi Hastaneleri'),
(1848, 'https://ror.org/04jqj7p05', 'no_lang_code', 1, 'https://ror.org/04jqj7p05 Hitotsubashi University 一橋大学'),
(1849, 'https://ror.org/00mvp1q86', 'en', 1, 'https://ror.org/00mvp1q86 Hemwati Nandan Bahuguna Garhwal University गढ़वाल ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1850, 'https://ror.org/05dm4ck87', 'en', 1, 'https://ror.org/05dm4ck87 Emory University Hospital'),
(1851, 'https://ror.org/02d1ved90', 'tr', 1, 'https://ror.org/02d1ved90 Dokuz Eylül Üniversitesi Hastanesi'),
(1852, 'https://ror.org/00egdv862', 'no_lang_code', 1, 'https://ror.org/00egdv862 Hongik University ķ™ģµėŒ€ķ•™źµ'),
(1853, 'https://ror.org/04fybn584', 'en', 1, 'https://ror.org/04fybn584 Universidad del Cauca University of Cauca'),
(1854, 'https://ror.org/05y33vv83', 'es', 1, 'https://ror.org/05y33vv83 Universidad del Desarrollo'),
(1855, 'https://ror.org/031e6xm45', 'es', 1, 'https://ror.org/031e6xm45 Universidad del Norte'),
(1856, 'https://ror.org/05xv0p989', 'tr', 1, 'https://ror.org/05xv0p989 Ege Üniversitesi Tıp Fakültesi Hastanesi'),
(1857, 'https://ror.org/02h8a1848', 'en', 1, 'https://ror.org/02h8a1848 Ningxia Medical University å®å¤åŒ»ē§‘å¤§å­¦'),
(1858, 'https://ror.org/00kzych23', 'en', 1, 'https://ror.org/00kzych23 Nippon Sport Science University ę—„ęœ¬ä½“č‚²å¤§å­¦'),
(1859, 'https://ror.org/04e1w6923', 'fr', 1, 'https://ror.org/04e1w6923 HƓpital d''Hautepierre'),
(1860, 'https://ror.org/057anza51', 'en', 1, 'https://ror.org/057anza51 Metropolitan University of Educational Sciences Universidad Metropolitana de Ciencias de la Educación'),
(1861, 'https://ror.org/01t5yh786', 'en', 1, 'https://ror.org/01t5yh786 HƓpital Universitaire Des Enfants Reine Fabiola Queen Fabiola Children''s University Hospital'),
(1862, 'https://ror.org/027wyhf03', 'hr', 1, 'https://ror.org/027wyhf03 Klinički Bolnički Centar Rijeka'),
(1863, 'https://ror.org/051s3e988', 'fr', 1, 'https://ror.org/051s3e988 HƓpital Universitaire Dupuytren'),
(1864, 'https://ror.org/03f27y887', 'es', 1, 'https://ror.org/03f27y887 National University of Asuncion Universidad Nacional de Asunción'),
(1865, 'https://ror.org/01kr7aq59', 'en', 1, 'https://ror.org/01kr7aq59 Rivers State University'),
(1866, 'https://ror.org/00eekd641', 'en', 1, 'https://ror.org/00eekd641 Robert Wood Johnson University Hospital'),
(1867, 'https://ror.org/055m2tx54', 'en', 1, 'https://ror.org/055m2tx54 North Eastern Hill University نارتھ ایسٹ ہل ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(1868, 'https://ror.org/02egdz393', 'en', 1, 'https://ror.org/02egdz393 Rocky Mountain University of Health Professions'),
(1869, 'https://ror.org/02zvkba47', 'en', 1, 'https://ror.org/02zvkba47 National University of Comahue Universidad Nacional del Comahue'),
(1870, 'https://ror.org/01qyd4k24', 'en', 1, 'https://ror.org/01qyd4k24 Hoseo University ķ˜øģ„œėŒ€ķ•™źµ'),
(1871, 'https://ror.org/02ybb5327', 'es', 1, 'https://ror.org/02ybb5327 Universidad Nacional Experimental Francisco de Miranda'),
(1872, 'https://ror.org/00e4zxr41', 'en', 1, 'https://ror.org/00e4zxr41 Ross University School of Veterinary Medicine'),
(1873, 'https://ror.org/02xtpdq88', 'es', 1, 'https://ror.org/02xtpdq88 Hospital ClĆ­nico de la Universidad de Chile'),
(1874, 'https://ror.org/016v1bv58', 'es', 1, 'https://ror.org/016v1bv58 Hospital Clínico de la Universidad Católica'),
(1875, 'https://ror.org/02a7yfb86', 'pt', 1, 'https://ror.org/02a7yfb86 Pontifícia Universidade Católica de GoiÔs Université pontificale catholique de goiÔs'),
(1876, 'https://ror.org/00vcyhn10', 'pt', 1, 'https://ror.org/00vcyhn10 Catholic University of Santos Universidade Católica de Santos'),
(1877, 'https://ror.org/012gg9483', 'pt', 1, 'https://ror.org/012gg9483 Universidade Cidade de SĆ£o Paulo'),
(1878, 'https://ror.org/030m18266', 'en', 1, 'https://ror.org/030m18266 Tatung University 大同大學'),
(1879, 'https://ror.org/00wg2b048', 'en', 1, 'https://ror.org/00wg2b048 Royal University Hospital'),
(1880, 'https://ror.org/000ywep40', 'en', 1, 'https://ror.org/000ywep40 NHS Tayside'),
(1881, 'https://ror.org/020jbrt22', 'en', 1, 'https://ror.org/020jbrt22 Tbilisi State Medical University Ō¹Õ¢Õ«Õ¬Õ«Õ½Õ«Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ¢ÕŖÕ·ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(1882, 'https://ror.org/04zyja509', 'pt', 1, 'https://ror.org/04zyja509 Universidade de Franca'),
(1883, 'https://ror.org/04hnrs676', 'pt', 1, 'https://ror.org/04hnrs676 Universidade de Mogi das Cruzes University of Mogi das Cruzes'),
(1884, 'https://ror.org/00ey54k21', 'pt', 1, 'https://ror.org/00ey54k21 Universidade de Ribeirão Preto University of Ribeirão Preto'),
(1885, 'https://ror.org/05nvmzs58', 'pt', 1, 'https://ror.org/05nvmzs58 Universidade de Santo Amaro'),
(1886, 'https://ror.org/01gt7sg63', 'pt', 1, 'https://ror.org/01gt7sg63 Universidade de TaubatƩ University of TaubatƩ'),
(1887, 'https://ror.org/04t4jzh38', 'en', 1, 'https://ror.org/04t4jzh38 Notre Dame Seishin University ćƒŽćƒ¼ćƒˆćƒ«ćƒ€ćƒ ęø…åæƒå„³å­å¤§å­¦'),
(1888, 'https://ror.org/03a6a0a65', 'pt', 1, 'https://ror.org/03a6a0a65 Universidade do Oeste de Santa Catarina'),
(1889, 'https://ror.org/00ccec020', 'pt', 1, 'https://ror.org/00ccec020 Universidade do Oeste Paulista University of Western SĆ£o Paulo'),
(1890, 'https://ror.org/01thzqc78', 'pt', 1, 'https://ror.org/01thzqc78 Universidade Sagrado Coração'),
(1891, 'https://ror.org/006qssd78', 'pt', 1, 'https://ror.org/006qssd78 Universidade do Sul de Santa Catarina'),
(1892, 'https://ror.org/02vej5573', 'no_lang_code', 1, 'https://ror.org/02vej5573 EstƔcio (Brazil)'),
(1893, 'https://ror.org/00tze5d69', 'en', 1, 'https://ror.org/00tze5d69 Teikyo University Hospital åøäŗ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(1894, 'https://ror.org/05s74hd65', 'en', 1, 'https://ror.org/05s74hd65 Oakwood University'),
(1895, 'https://ror.org/04rhdtb47', 'en', 1, 'https://ror.org/04rhdtb47 Obstetrics and Gynecology Hospital of Fudan University å¤ę—¦å¤§å­¦é™„å±žå¦‡äŗ§ē§‘åŒ»é™¢'),
(1896, 'https://ror.org/05weahn72', 'en', 1, 'https://ror.org/05weahn72 Sri Venkateswara University جامعہ سری ŁˆŪŒŁ†Ś©Ł¹ŪŒŲ“ŁˆŲ±Ų§ ą¤¶ą„ą¤°ą„€ ą¤µą„‡ą¤‚ą¤•ą¤Ÿą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®šą®æą®±ąÆ€ ą®µąÆ†ą®™ąÆą®•ą®ŸąÆ‡ą®šąÆą®µą®°ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°¶ą±ą°°ą±€ ą°µą±‡ą°‚ą°•ą°Ÿą±‡ą°¶ą±ą°µą°° ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(1897, 'https://ror.org/02b48z609', 'en', 1, 'https://ror.org/02b48z609 University Cancer Center Hamburg UniversitƤres Cancer Center Hamburg'),
(1898, 'https://ror.org/03ag59v15', 'pt', 1, 'https://ror.org/03ag59v15 Universidade Estadual de CiĆŖncias da SaĆŗde de Alagoas'),
(1899, 'https://ror.org/05y06tg49', 'en', 1, 'https://ror.org/05y06tg49 October 6 University Ų¬Ų§Ł…Ų¹Ų© السادس من أكتوبر'),
(1900, 'https://ror.org/03cxsty68', 'pt', 1, 'https://ror.org/03cxsty68 Universidade Estadual do Centro-Oeste'),
(1901, 'https://ror.org/00c01js51', 'en', 1, 'https://ror.org/00c01js51 The Ohio State University Wexner Medical Center'),
(1902, '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'),
(1903, 'https://ror.org/01nyv7k26', 'en', 1, 'https://ror.org/01nyv7k26 Oita University 大分大学'),
(1904, 'https://ror.org/050nkg722', 'en', 1, 'https://ror.org/050nkg722 Oita University Hospital å¤§åˆ†å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(1905, 'https://ror.org/038bgk418', 'en', 1, 'https://ror.org/038bgk418 Okayama Prefectural University å²”å±±ēœŒē«‹å¤§å­¦'),
(1906, 'https://ror.org/035vb3h42', 'en', 1, 'https://ror.org/035vb3h42 Kinderspital Zürich University Children''s Hospital Zurich'),
(1907, 'https://ror.org/04rj5w171', 'en', 1, 'https://ror.org/04rj5w171 Olabisi Onabanjo University Teaching Hospital'),
(1908, 'https://ror.org/02k9jrs03', 'en', 1, 'https://ror.org/02k9jrs03 University Children’s Hospital Bern UniversitƤtskinderklinik Bern'),
(1909, 'https://ror.org/01apvbh93', 'en', 1, 'https://ror.org/01apvbh93 Akademiska sjukhuset Uppsala University Hospital'),
(1910, 'https://ror.org/05422jd13', 'en', 1, 'https://ror.org/05422jd13 University Children''s Hospital, Belgrade Univerzitetska dečja klinika u Beogradu'),
(1911, 'https://ror.org/043z88g18', 'fr', 1, 'https://ror.org/043z88g18 HƓpital Sahloul'),
(1912, 'https://ror.org/04vxr4k74', 'no_lang_code', 1, 'https://ror.org/04vxr4k74 Sahmyook University ģ‚¼ģœ”ėŒ€ķ•™źµ'),
(1913, 'https://ror.org/01v49sd11', 'en', 1, 'https://ror.org/01v49sd11 Saint Louis University Hospital'),
(1914, 'https://ror.org/055mfza47', 'en', 1, 'https://ror.org/055mfza47 Saint Peter''s University Hospital'),
(1915, 'https://ror.org/03tg0z446', 'en', 1, 'https://ror.org/03tg0z446 Odisha University of Agriculture and Technology उऔिसा ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1916, 'https://ror.org/028rvnd71', 'en', 1, 'https://ror.org/028rvnd71 Temple University Hospital'),
(1917, 'https://ror.org/03ftky336', 'en', 1, 'https://ror.org/03ftky336 Saitama International Medical Center åŸ¼ēŽ‰åŒ»ē§‘å¤§å­¦å›½éš›åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1918, 'https://ror.org/053kccs63', 'en', 1, 'https://ror.org/053kccs63 Osaka Dental University å¤§é˜Ŗę­Æē§‘å¤§å­¦'),
(1919, 'https://ror.org/051j8zv27', 'no_lang_code', 1, 'https://ror.org/051j8zv27 Osaka Kyoiku University å¤§é˜Ŗę•™č‚²å¤§å­¦'),
(1920, 'https://ror.org/040jk5g10', 'en', 1, 'https://ror.org/040jk5g10 Samuel Merritt University'),
(1921, 'https://ror.org/00xwgyp12', 'pt', 1, 'https://ror.org/00xwgyp12 Federal Rural University of Rio de Janeiro Universidade Federal Rural do Rio de Janeiro'),
(1922, 'https://ror.org/03vb4dm14', 'en', 1, 'https://ror.org/03vb4dm14 Texas A&M University at Qatar Ų¬Ų§Ł…Ų¹Ų© تكساس أي اند Ų„Ł…'),
(1923, 'https://ror.org/01jtn9895', 'no_lang_code', 1, 'https://ror.org/01jtn9895 Osaka Ohtani University 大阪大谷大学'),
(1924, 'https://ror.org/04ytrbh65', 'en', 1, 'https://ror.org/04ytrbh65 Osaka University of Health and Sport Sciences å¤§é˜Ŗä½“č‚²å¤§å­¦'),
(1925, 'https://ror.org/02d09a271', 'pt', 1, 'https://ror.org/02d09a271 Positive University Universidade Positivo'),
(1926, 'https://ror.org/006nc8n95', 'pt', 1, 'https://ror.org/006nc8n95 Mackenzie Presbyterian University Universidade Presbiteriana Mackenzie'),
(1927, 'https://ror.org/05y26ar20', 'pt', 1, 'https://ror.org/05y26ar20 Universidade Regional do Cariri'),
(1928, 'https://ror.org/03edth057', 'en', 1, 'https://ror.org/03edth057 Teikyo University Chiba Medical Center åøäŗ¬å¤§å­¦ć”ć°ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1929, 'https://ror.org/0149j8908', 'pt', 1, 'https://ror.org/0149j8908 Universidade Santa Úrsula'),
(1930, 'https://ror.org/045ae7j03', 'pt', 1, 'https://ror.org/045ae7j03 Universidade SĆ£o Francisco University of San Francisco'),
(1931, 'https://ror.org/02xj89f04', 'pt', 1, 'https://ror.org/02xj89f04 Universidade Veiga de Almeida'),
(1932, 'https://ror.org/03vf51s41', 'hr', 1, 'https://ror.org/03vf51s41 Klinički bolnički centar Osijek'),
(1933, 'https://ror.org/005tw0h26', 'en', 1, 'https://ror.org/005tw0h26 University Clinical Center of Kosovo'),
(1934, 'https://ror.org/01gqe3t73', 'no_lang_code', 1, 'https://ror.org/01gqe3t73 Sangji University ģƒģ§€ėŒ€ķ•™źµ'),
(1935, 'https://ror.org/05wcbg446', 'en', 1, 'https://ror.org/05wcbg446 SveučiliŔna klinička bolnica Mostar University Clinical Hospital Mostar'),
(1936, 'https://ror.org/02jmkw435', 'en', 1, 'https://ror.org/02jmkw435 Saratov State Medical University Даратовский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1937, 'https://ror.org/00e16h982', 'en', 1, 'https://ror.org/00e16h982 Osun State University'),
(1938, 'https://ror.org/01defpn95', 'en', 1, 'https://ror.org/01defpn95 Sathyabama Institute of Science and Technology ą®šą®¤ąÆą®Æą®Ŗą®¾ą®®ą®¾ ą®Ŗā€Œą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°øą°¤ą±ą°Æą°­ą°¾ą°® ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(1939, 'https://ror.org/0250jpt55', 'en', 1, 'https://ror.org/0250jpt55 Saurashtra University'),
(1940, 'https://ror.org/02s7hnh67', 'en', 1, 'https://ror.org/02s7hnh67 Thammasat University Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø˜ąø£ąø£ąø”ąøØąø²ąøŖąø•ąø£ą¹Œą¹€ąø‰ąø„ąø“ąø”ąøžąø£ąø°ą¹€ąøąøµąø¢ąø£ąø•ąø“'),
(1941, 'https://ror.org/022yvqh08', 'en', 1, 'https://ror.org/022yvqh08 University College Hospital, Ibadan'),
(1942, 'https://ror.org/05drcjw53', 'en', 1, 'https://ror.org/05drcjw53 Pai Chai University ė°°ģž¬ėŒ€ķ•™źµ'),
(1943, 'https://ror.org/053gjjp11', 'tr', 1, 'https://ror.org/053gjjp11 Pamukkale Üniversitesi Hastaneleri'),
(1944, 'https://ror.org/05txvbe22', 'en', 1, 'https://ror.org/05txvbe22 Federal Teaching Hospital Abakaliki'),
(1945, 'https://ror.org/019bxes45', 'en', 1, 'https://ror.org/019bxes45 University Dental Hospital of Manchester'),
(1946, 'https://ror.org/01nxv5c88', 'en', 1, 'https://ror.org/01nxv5c88 Second Affiliated Hospital of Nanchang University å—ę˜Œå¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(1947, 'https://ror.org/00ftwze80', 'en', 1, 'https://ror.org/00ftwze80 University Dental Hospital on Cardiff University'),
(1948, 'https://ror.org/03c3d1v10', 'en', 1, 'https://ror.org/03c3d1v10 General University Hospital of Patras'),
(1949, 'https://ror.org/0527gjc91', 'en', 1, 'https://ror.org/0527gjc91 Temple Street Children''s University Hospital'),
(1950, 'https://ror.org/00r67fz39', 'en', 1, 'https://ror.org/00r67fz39 Second Affiliated Hospital of Chongqing Medical University'),
(1951, 'https://ror.org/031699d98', 'en', 1, 'https://ror.org/031699d98 Payame Noor University دانؓگاه Ł¾ŪŒŲ§Ł… Ł†ŁˆŲ±'),
(1952, 'https://ror.org/03s8txj32', 'en', 1, 'https://ror.org/03s8txj32 Second Affiliated Hospital of Harbin Medical University'),
(1953, 'https://ror.org/059cjpv64', 'en', 1, 'https://ror.org/059cjpv64 Second Affiliated Hospital of Zhejiang University'),
(1954, 'https://ror.org/04wprr919', 'en', 1, 'https://ror.org/04wprr919 Athens Eye Hospital ĪŸĻ†ĪøĪ±Ī»Ī¼ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(1955, 'https://ror.org/04j9bvy88', 'en', 1, 'https://ror.org/04j9bvy88 BG University Hospital Bergmannsheil Bochum BG UniversitƤtsklinikum Bergmannsheil Bochum'),
(1956, 'https://ror.org/01xkmcr24', 'de', 1, 'https://ror.org/01xkmcr24 UniversitƤts-Augenklinik Bonn'),
(1957, 'https://ror.org/027evcf19', 'tr', 1, 'https://ror.org/027evcf19 Ɩzel Ortadoğu 19 Mayıs Hastanesi'),
(1958, 'https://ror.org/00nyxxr91', 'en', 1, 'https://ror.org/00nyxxr91 Peking University Cancer Hospital åŒ—äŗ¬å¤§å­¦č‚æē˜¤åŒ»é™¢'),
(1959, 'https://ror.org/029gksw03', 'en', 1, 'https://ror.org/029gksw03 Semnan University دانؓگاه سمنان'),
(1960, 'https://ror.org/04x0k0m51', 'en', 1, 'https://ror.org/04x0k0m51 Seokyeong University ģ„œź²½ėŒ€ķ•™źµ'),
(1961, 'https://ror.org/01adsjd47', 'no_lang_code', 1, 'https://ror.org/01adsjd47 Seonam University'),
(1962, 'https://ror.org/0312m2266', 'en', 1, 'https://ror.org/0312m2266 University Hospital of Heraklion'),
(1963, 'https://ror.org/04zkctn64', 'en', 1, 'https://ror.org/04zkctn64 University Hospital of Alexandroupolis'),
(1964, 'https://ror.org/00chfja07', 'en', 1, 'https://ror.org/00chfja07 Seoul National University of Science and Technology ģ„œģšøź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(1965, 'https://ror.org/001v19997', 'tr', 1, 'https://ror.org/001v19997 Eskişehir Osmangazi Üniversitesi Tıp Fakültesi Hastanesi'),
(1966, 'https://ror.org/04b2fhx54', 'en', 1, 'https://ror.org/04b2fhx54 Seoul Women''s University ģ„œģšøģ—¬ģžėŒ€ķ•™źµ'),
(1967, 'https://ror.org/01d9cs377', 'en', 1, 'https://ror.org/01d9cs377 University Health System'),
(1968, 'https://ror.org/05crs8s98', 'en', 1, 'https://ror.org/05crs8s98 Periyar University ą®ŖąÆ†ą®°ą®æą®Æą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(1969, 'https://ror.org/044p01n12', 'en', 1, 'https://ror.org/044p01n12 Vidant Health'),
(1970, 'https://ror.org/0418a3v02', 'en', 1, 'https://ror.org/0418a3v02 Setsunan University ę‘‚å—å¤§å­¦'),
(1971, 'https://ror.org/053mxw461', 'en', 1, 'https://ror.org/053mxw461 Sevastopol National Technical University Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1972, 'https://ror.org/04zn42r77', 'en', 1, 'https://ror.org/04zn42r77 Shahid Bahonar University of Kerman دانؓگاه Ų“Ł‡ŪŒŲÆ باهنر کرمان'),
(1973, 'https://ror.org/05hm0vv72', 'en', 1, 'https://ror.org/05hm0vv72 Shahjalal University of Science and Technology শাহজালাল ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(1974, 'https://ror.org/03tf96d34', 'it', 1, 'https://ror.org/03tf96d34 Azienda Ospedaliera Universitaria Policlinico "G. Martino"'),
(1975, 'https://ror.org/05p21z194', 'it', 1, 'https://ror.org/05p21z194 Azienda Ospedaliera Universitaria Policlinico "Paolo Giaccone" di Palermo'),
(1976, 'https://ror.org/03n0nnh89', 'ms', 1, 'https://ror.org/03n0nnh89 Hospital Kuala Lumpur'),
(1977, 'https://ror.org/026e9yy16', 'en', 1, 'https://ror.org/026e9yy16 Affiliated Hospital of Qingdao University'),
(1978, '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Ô'),
(1979, 'https://ror.org/010826a91', 'en', 1, 'https://ror.org/010826a91 Shanghai Ninth People''s Hospital äøŠęµ·ē¬¬ä¹äŗŗę°‘åŒ»é™¢'),
(1980, 'https://ror.org/049zrh188', 'en', 1, 'https://ror.org/049zrh188 Shanghai Sixth People''s Hospital äøŠęµ·åø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(1981, 'https://ror.org/00b7yvh50', 'en', 1, 'https://ror.org/00b7yvh50 Prefectural University of Kumamoto ē†Šęœ¬ēœŒē«‹å¤§å­¦'),
(1982, 'https://ror.org/00a98yf63', 'en', 1, 'https://ror.org/00a98yf63 Second Affiliated Hospital of Guangzhou Medical University å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(1983, 'https://ror.org/01px77p81', 'en', 1, 'https://ror.org/01px77p81 Sun Yat-sen Memorial Hospital'),
(1984, 'https://ror.org/03vjkf643', 'en', 1, 'https://ror.org/03vjkf643 Shanghai Tenth People''s Hospital äøŠęµ·ē¬¬åäŗŗę°‘åŒ»é™¢'),
(1985, 'https://ror.org/02zg69r60', 'en', 1, 'https://ror.org/02zg69r60 Vancouver General Hospital'),
(1986, 'https://ror.org/03d8mqt26', 'en', 1, 'https://ror.org/03d8mqt26 Princess Royal University Hospital'),
(1987, 'https://ror.org/0286g6711', 'en', 1, 'https://ror.org/0286g6711 Shaoguan University 韶关学院'),
(1988, 'https://ror.org/03fcpsq87', 'en', 1, 'https://ror.org/03fcpsq87 Providence University éœå®œå¤§å­ø'),
(1989, 'https://ror.org/024c2fq17', 'en', 1, 'https://ror.org/024c2fq17 Sharif University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ ؓریف'),
(1990, 'https://ror.org/05w0p9h92', 'en', 1, 'https://ror.org/05w0p9h92 Shenandoah University'),
(1991, 'https://ror.org/04tm3k558', 'en', 1, 'https://ror.org/04tm3k558 Third Affiliated Hospital of Sun Yat-sen University'),
(1992, 'https://ror.org/01c3hyk82', 'en', 1, 'https://ror.org/01c3hyk82 Shih Chien University'),
(1993, 'https://ror.org/03nvpm562', 'en', 1, 'https://ror.org/03nvpm562 Shimane University Hospital 島根大学病院'),
(1994, 'https://ror.org/025821s54', 'en', 1, 'https://ror.org/025821s54 University Hospital Coventry'),
(1995, 'https://ror.org/0433kqc49', 'en', 1, 'https://ror.org/0433kqc49 Pukyong National University ė¶€ź²½ėŒ€ķ•™źµ'),
(1996, 'https://ror.org/00xdn8y92', 'en', 1, 'https://ror.org/00xdn8y92 Punjabi University ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ąØŖą©°ąØœąØ¾ąØ¬ą©€ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(1997, 'https://ror.org/03sf6p593', 'en', 1, 'https://ror.org/03sf6p593 Showa Women''s University ę˜­å’Œå„³å­å¤§å­¦'),
(1998, 'https://ror.org/03n35e656', 'no_lang_code', 1, 'https://ror.org/03n35e656 Shuguang Hospital'),
(1999, 'https://ror.org/00wn7d965', 'en', 1, 'https://ror.org/00wn7d965 University of Virginia Health System'),
(2000, 'https://ror.org/030sc3x20', 'en', 1, 'https://ror.org/030sc3x20 First Affiliated Hospital of GuangXi Medical University'),
(2001, 'https://ror.org/01mxpdw03', 'en', 1, 'https://ror.org/01mxpdw03 First Affiliated Hospital of Guangzhou University of Chinese Medicine'),
(2002, 'https://ror.org/05vy2sc54', 'en', 1, 'https://ror.org/05vy2sc54 First Affiliated Hospital of Harbin Medical University'),
(2003, 'https://ror.org/046kb4y45', 'en', 1, 'https://ror.org/046kb4y45 University of Virginia Medical Center'),
(2004, 'https://ror.org/05d5vvz89', 'en', 1, 'https://ror.org/05d5vvz89 First Affiliated Hospital of Jinan University ęšØå—å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(2005, 'https://ror.org/00yhnba62', 'en', 1, 'https://ror.org/00yhnba62 Qatar University Universidad de Catar Ų¬Ų§Ł…Ų¹Ų© قطر'),
(2006, 'https://ror.org/05gbwr869', 'en', 1, 'https://ror.org/05gbwr869 First Affiliated Hospital of Nanchang University å—ę˜Œå¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(2007, 'https://ror.org/053fzma23', 'en', 1, 'https://ror.org/053fzma23 Sichuan University of Science and Engineering å››å·ē†å·„å­¦é™¢'),
(2008, 'https://ror.org/04sexa105', 'en', 1, 'https://ror.org/04sexa105 Qazvin University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓكي و Ų®ŲÆŁ…Ų§ŲŖ ŲÆŲ±Ł…Ų§Ł†ŁŠ Ł‚Ų²ŁˆŪŒŁ†'),
(2009, 'https://ror.org/056ep7w45', 'en', 1, 'https://ror.org/056ep7w45 Siksha O Anusandhan University'),
(2010, 'https://ror.org/01kzgyz42', 'en', 1, 'https://ror.org/01kzgyz42 Qiqihar Medical University 齐齐哈尔医学院'),
(2011, 'https://ror.org/02bnz8785', 'en', 1, 'https://ror.org/02bnz8785 First Affiliated Hospital of Shantou University Medical College ę±•å¤“å¤§å­¦åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(2012, 'https://ror.org/02w3gk008', 'en', 1, 'https://ror.org/02w3gk008 Silla University ģ‹ ė¼ėŒ€ķ•™źµ'),
(2013, 'https://ror.org/059jq5127', 'en', 1, 'https://ror.org/059jq5127 Harborview Medical Center'),
(2014, 'https://ror.org/02d0tyt78', 'en', 1, 'https://ror.org/02d0tyt78 Silpakorn University ดหาวณทยาคัยศณคปากร'),
(2015, 'https://ror.org/04s9hft57', 'en', 1, 'https://ror.org/04s9hft57 Quaid-i-Azam University جامعہ قائداعظم'),
(2016, 'https://ror.org/03j42gp22', 'en', 1, 'https://ror.org/03j42gp22 University HealthSystem Consortium'),
(2017, 'https://ror.org/00wbzw723', 'en', 1, 'https://ror.org/00wbzw723 University of Washington Medical Center'),
(2018, 'https://ror.org/0006swh35', 'en', 1, 'https://ror.org/0006swh35 First Affiliated Hospital of Xiamen University åŽ¦é—Øå¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(2019, 'https://ror.org/04748z305', 'en', 1, 'https://ror.org/04748z305 Taurida National V.I. Vernadsky University Tawrijski Uniwersytet Narodowy im. Władimira Wiernadskiego Таврический Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. И. ВернаГского Š¢Š°Š²Ń€Ń–Š¹ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’. І. Š’ŠµŃ€Š½Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(2020, 'https://ror.org/02qx1ae98', 'en', 1, 'https://ror.org/02qx1ae98 First Affiliated Hospital of Xinjiang Medical University ę–°ē–†åŒ»ē§‘å¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(2021, 'https://ror.org/02fsmcz03', 'en', 1, 'https://ror.org/02fsmcz03 First Teaching Hospital of Tianjin University of Traditional Chinese Medicine äø­å›½ä¼ ē»ŸåŒ»čÆēš„å¤©ę“„å¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(2022, 'https://ror.org/032kth403', 'en', 1, 'https://ror.org/032kth403 Rani Durgavati University'),
(2023, 'https://ror.org/02m0p4y77', 'de', 1, 'https://ror.org/02m0p4y77 Klinikum Südstadt Rostock'),
(2024, 'https://ror.org/05d2xpa49', 'en', 1, 'https://ror.org/05d2xpa49 First Hospital of Lanzhou University å…°å·žå¤§å­¦ē¬¬äø€åŒ»é™¢: ę¬¢čæŽę‚Ø| 兰大一院'),
(2025, 'https://ror.org/003sav965', 'en', 1, 'https://ror.org/003sav965 Tianjin Medical University General Hospital å¤©ę“„åŒ»ē§‘å¤§å­¦ę€»åŒ»é™¢'),
(2026, 'https://ror.org/000tqtb97', 'no_lang_code', 1, 'https://ror.org/000tqtb97 Rafik Hariri University Hospital مستؓفى Ų±ŁŁŠŁ‚ Ų§Ł„Ų­Ų±ŁŠŲ±ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠā€Žā€Ž'),
(2027, 'https://ror.org/00d973h41', 'en', 1, 'https://ror.org/00d973h41 Sƶdertƶrn University Sƶdertƶrns hƶgskola'),
(2028, 'https://ror.org/00mrw8k38', 'en', 1, 'https://ror.org/00mrw8k38 Ramkhamhaeng University ดหาวณทยาคัยราดคำแหง'),
(2029, 'https://ror.org/014fz7968', 'en', 1, 'https://ror.org/014fz7968 Sojo University 哇城大学'),
(2030, 'https://ror.org/01cqcrc47', 'en', 1, 'https://ror.org/01cqcrc47 Rangsit University ดหาวณทยาคัยรังสณต'),
(2031, 'https://ror.org/026tktq31', 'en', 1, 'https://ror.org/026tktq31 Solapur University ą¤øą„‹ą¤²ą¤¾ą¤Ŗą„‚ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(2032, 'https://ror.org/03f3jde70', 'en', 1, 'https://ror.org/03f3jde70 Jaamacada Ummada Soomaaliyeed Somali National University UniversitĆ  nazionale somala'),
(2033, 'https://ror.org/02ynb0474', 'en', 1, 'https://ror.org/02ynb0474 Razi University دانؓگاه رازی'),
(2034, 'https://ror.org/00vvvt117', 'en', 1, 'https://ror.org/00vvvt117 Sookmyung Women''s University ģˆ™ėŖ…ģ—¬ģžėŒ€ķ•™źµ'),
(2035, 'https://ror.org/00jhyq802', 'en', 1, 'https://ror.org/00jhyq802 Regent University'),
(2036, 'https://ror.org/01w8whh21', 'en', 1, 'https://ror.org/01w8whh21 University of Oklahoma Medical Center'),
(2037, 'https://ror.org/04py1g812', 'en', 1, 'https://ror.org/04py1g812 Jiangsu Province Hospital ę±Ÿč‹ēœäŗŗę°‘åŒ»é™¢'),
(2038, 'https://ror.org/03t1yn780', 'en', 1, 'https://ror.org/03t1yn780 First Affiliated Hospital of Anhui Medical University'),
(2039, 'https://ror.org/030e09f60', 'en', 1, 'https://ror.org/030e09f60 First Affiliated Hospital of Fujian Medical University ē¦å»ŗåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(2040, 'https://ror.org/003sphj24', 'en', 1, 'https://ror.org/003sphj24 Soroka Medical Center'),
(2041, 'https://ror.org/05wyq9e07', 'en', 1, 'https://ror.org/05wyq9e07 Stony Brook University Hospital'),
(2042, 'https://ror.org/05vgmh969', 'pl', 1, 'https://ror.org/05vgmh969 Szpital Uniwersytecki w Krakowie'),
(2043, 'https://ror.org/014gqa478', 'en', 1, 'https://ror.org/014gqa478 University Health Care System'),
(2044, 'https://ror.org/01v95tx09', 'en', 1, 'https://ror.org/01v95tx09 Shriners Hospitals for Children - Galveston');
INSERT INTO `rors` VALUES
(2045, 'https://ror.org/01j0n2h15', 'en', 1, 'https://ror.org/01j0n2h15 Universidad de Phoenix University of Phoenix UniversitƩ de phoenix'),
(2046, 'https://ror.org/054nax084', 'en', 1, 'https://ror.org/054nax084 Clinical Centre of Kragujevac ŠšŠ»ŠøŠ½ŠøŃ‡ŠŗŠø центар ŠšŃ€Š°Š³ŃƒŃ˜ŠµŠ²Š°Ń†'),
(2047, 'https://ror.org/00p2x3741', 'en', 1, 'https://ror.org/00p2x3741 Southend Hospital'),
(2048, 'https://ror.org/00swv7d52', 'en', 1, 'https://ror.org/00swv7d52 Penn Presbyterian Medical Center'),
(2049, 'https://ror.org/019zp2770', 'en', 1, 'https://ror.org/019zp2770 Upstate University Hospital'),
(2050, 'https://ror.org/0029n1t76', 'en', 1, 'https://ror.org/0029n1t76 Southern Taiwan University of Science and Technology'),
(2051, 'https://ror.org/039nw9e11', 'en', 1, 'https://ror.org/039nw9e11 Third Affiliated Hospital of Zhengzhou University éƒ‘å·žå¤§å­¦ē¬¬äø‰é™„å±žåŒ»é™¢'),
(2052, 'https://ror.org/026492508', 'en', 1, 'https://ror.org/026492508 Spalding University'),
(2053, 'https://ror.org/04zhhva53', 'en', 1, 'https://ror.org/04zhhva53 Thomas Jefferson University Hospital'),
(2054, 'https://ror.org/04j2cfe69', 'en', 1, 'https://ror.org/04j2cfe69 Tianjin Medical University Eye Hospital'),
(2055, 'https://ror.org/02fyxjb45', 'en', 1, 'https://ror.org/02fyxjb45 Sri Krishnadevaraya University ą°¶ą±ą°°ą±€ ą°•ą±ƒą°·ą±ą°£ą°¦ą±‡ą°µą°°ą°¾ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(2056, 'https://ror.org/02wtdvm35', 'en', 1, 'https://ror.org/02wtdvm35 Saskatchewan Health Authority'),
(2057, 'https://ror.org/0108gdg43', 'en', 1, 'https://ror.org/0108gdg43 Sri Ramachandra Institute of Higher Education and Research ą¤¶ą„ą¤°ą„€ ą¤°ą¤¾ą¤®ą¤šą¤‚ą¤¦ą„ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤¾ą¤²ą¤æą¤œ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®šą®æą®±ąÆ€ ą®‡ą®°ą®¾ą®®ą®šąÆą®šą®ØąÆą®¤ą®æą®°ą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®ÆąÆą®µąÆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(2058, 'https://ror.org/01qv3ba61', 'en', 1, 'https://ror.org/01qv3ba61 University of Port Harcourt Teaching Hospital'),
(2059, 'https://ror.org/04718hx42', 'no_lang_code', 1, 'https://ror.org/04718hx42 Srinakharinwirot University ดหาวณทยาคัยศรีนครณนทรวณโรฒ'),
(2060, 'https://ror.org/050113w36', 'en', 1, 'https://ror.org/050113w36 SRM Institute of Science and Technology திரு. ą®‡ą®°ą®¾ą®®ą®šą®¾ą®®ą®æ ą®Øą®æą®©ąÆˆą®µąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2061, 'https://ror.org/029tkqm80', 'en', 1, 'https://ror.org/029tkqm80 St. Vincent''s University Hospital'),
(2062, 'https://ror.org/01qr5a671', 'en', 1, 'https://ror.org/01qr5a671 Tohoku Fukushi University ę±åŒ—ē¦ē„‰å¤§å­¦'),
(2063, 'https://ror.org/00gr1q288', 'en', 1, 'https://ror.org/00gr1q288 Tokai University Hachioji Hospital ę±ęµ·å¤§å­¦åŒ»å­¦éƒØä»˜å±žå…«ēŽ‹å­ē—…é™¢'),
(2064, 'https://ror.org/032fk0x53', 'en', 1, 'https://ror.org/032fk0x53 Urmia University دانؓگاه Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(2065, 'https://ror.org/027x3m696', 'en', 1, 'https://ror.org/027x3m696 Mother Teresa Hospital Qendra Spitalore Universitare Nene Tereza'),
(2066, 'https://ror.org/00smwky98', 'no_lang_code', 1, 'https://ror.org/00smwky98 Tokushima Bunri University 徳島文理大学'),
(2067, 'https://ror.org/00khh5r84', 'en', 1, 'https://ror.org/00khh5r84 Tokyo Gakugei University ę±äŗ¬å­¦čŠøå¤§å­¦'),
(2068, 'https://ror.org/0292hc709', 'en', 1, 'https://ror.org/0292hc709 University of Santo Tomas Hospital'),
(2069, 'https://ror.org/0086rpr26', 'en', 1, 'https://ror.org/0086rpr26 University of Sargodha'),
(2070, 'https://ror.org/031hmx230', 'en', 1, 'https://ror.org/031hmx230 Tokyo Medical University Ibaraki Medical Center ę±äŗ¬åŒ»ē§‘å¤§å­¦čŒØåŸŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2071, 'https://ror.org/000qzf213', 'en', 1, 'https://ror.org/000qzf213 Korea University of Science and Technology ź³¼ķ•™źø°ģˆ ģ—°ķ•©ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(2072, 'https://ror.org/00s7qjp35', 'pt', 1, 'https://ror.org/00s7qjp35 Universidade Vale do Rio Verde'),
(2073, 'https://ror.org/0059hys23', 'fr', 1, 'https://ror.org/0059hys23 HƓpital Farhat Hached'),
(2074, 'https://ror.org/01d692d57', 'en', 1, 'https://ror.org/01d692d57 University of Sindh سندھ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(2075, 'https://ror.org/03xgh2v50', 'en', 1, 'https://ror.org/03xgh2v50 Toyama Prefectural University åÆŒå±±ēœŒē«‹å¤§å­¦'),
(2076, 'https://ror.org/04ezg6d83', 'en', 1, 'https://ror.org/04ezg6d83 Toyohashi University of Technology č±Šę©‹ęŠ€č”“ē§‘å­¦å¤§å­¦'),
(2077, 'https://ror.org/05388sw24', 'en', 1, 'https://ror.org/05388sw24 University of South Alabama Medical Center'),
(2078, 'https://ror.org/0125csy75', 'de', 1, 'https://ror.org/0125csy75 Klinikum Region Hannover'),
(2079, 'https://ror.org/03m2nqg26', 'fr', 1, 'https://ror.org/03m2nqg26 Centre Hospitalier Universitaire Hassan II'),
(2080, 'https://ror.org/00zcy2665', 'en', 1, 'https://ror.org/00zcy2665 Vestfold University College'),
(2081, 'https://ror.org/031w3f751', 'en', 1, 'https://ror.org/031w3f751 Tulane Medical Center'),
(2082, 'https://ror.org/045nemn19', 'en', 1, 'https://ror.org/045nemn19 Ubon Ratchathani University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(2083, 'https://ror.org/01papkj44', 'en', 1, 'https://ror.org/01papkj44 University of Tabriz دانؓگاه تبریز'),
(2084, 'https://ror.org/01xjqrm90', 'en', 1, 'https://ror.org/01xjqrm90 Umm al-Qura University Ų¬Ų§Ł…Ų¹Ų© أم القرى'),
(2085, 'https://ror.org/04hjn8p44', 'en', 1, 'https://ror.org/04hjn8p44 Staten Island University Hospital'),
(2086, 'https://ror.org/002k8gm39', 'en', 1, 'https://ror.org/002k8gm39 Vikram University ą¤µą¤æą¤•ą„ą¤°ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2087, 'https://ror.org/01q1y4t48', 'en', 1, 'https://ror.org/01q1y4t48 Virginia Tech - Wake Forest University School of Biomedical Engineering & Sciences'),
(2088, 'https://ror.org/00bb01z14', 'en', 1, 'https://ror.org/00bb01z14 Vladivostok State Medical University Тихоокеанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2089, 'https://ror.org/027nene90', 'no_lang_code', 1, 'https://ror.org/027nene90 Sugiyama Jogakuen University ę¤™å±±å„³å­¦åœ’å¤§å­¦'),
(2090, 'https://ror.org/033xwx807', 'it', 1, 'https://ror.org/033xwx807 Policlinico Universitario di Catania'),
(2091, 'https://ror.org/02z9t1k38', 'es', 1, 'https://ror.org/02z9t1k38 Universidad AnƔhuac'),
(2092, 'https://ror.org/04043k259', 'en', 1, 'https://ror.org/04043k259 Austral University Universidad Austral'),
(2093, 'https://ror.org/01v5y3463', 'en', 1, 'https://ror.org/01v5y3463 Autonomous University of Campeche Universidad Autónoma de Campeche'),
(2094, 'https://ror.org/049xx5c95', 'en', 1, 'https://ror.org/049xx5c95 Sultan Qaboos University Hospital مستؓفى Ų¬Ų§Ł…Ų¹Ų© السلطان Ł‚Ų§ŲØŁˆŲ³'),
(2095, 'https://ror.org/005qv5373', 'en', 1, 'https://ror.org/005qv5373 Wakayama Medical University å’Œę­Œå±±ēœŒē«‹åŒ»ē§‘å¤§å­¦'),
(2096, 'https://ror.org/009e5cd49', 'en', 1, 'https://ror.org/009e5cd49 Sun Moon University ģ„ ė¬øėŒ€ķ•™źµ'),
(2097, 'https://ror.org/00v8fdc16', 'en', 1, 'https://ror.org/00v8fdc16 Autonomous University of Queretaro Universidad Autónoma de Querétaro'),
(2098, 'https://ror.org/000917t60', 'en', 1, 'https://ror.org/000917t60 Autonomous University of San Luis Potosí Universidad Autónoma de San Luis Potosí'),
(2099, 'https://ror.org/031f8kt38', 'es', 1, 'https://ror.org/031f8kt38 Autonomous University of Hidalgo State Universidad Autónoma del Estado de Hidalgo'),
(2100, 'https://ror.org/02qp2hh41', 'en', 1, 'https://ror.org/02qp2hh41 Walden University'),
(2101, 'https://ror.org/003ammk23', 'en', 1, 'https://ror.org/003ammk23 Walsh University'),
(2102, 'https://ror.org/043jqrs76', 'en', 1, 'https://ror.org/043jqrs76 Sunchon National University ģˆœģ²œėŒ€ķ•™źµ'),
(2103, 'https://ror.org/03qgg3111', 'es', 1, 'https://ror.org/03qgg3111 Universidad Centroccidental Lisandro Alvarado'),
(2104, 'https://ror.org/00tq7xg10', 'en', 1, 'https://ror.org/00tq7xg10 Suzuka University of Medical Science éˆ“é¹æåŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(2105, 'https://ror.org/05sj7yp62', 'en', 1, 'https://ror.org/05sj7yp62 Universidad de Carabobo University of Carabobo'),
(2106, 'https://ror.org/0409zd934', 'en', 1, 'https://ror.org/0409zd934 Universidad de Cartagena University of Cartagena'),
(2107, 'https://ror.org/05p4f7w60', 'en', 1, 'https://ror.org/05p4f7w60 University of the West Indies'),
(2108, 'https://ror.org/01xv1nn60', 'en', 1, 'https://ror.org/01xv1nn60 Taibah University Ų¬Ų§Ł…Ų¹Ų© طيبة'),
(2109, 'https://ror.org/01rb2st83', 'sk', 1, 'https://ror.org/01rb2st83 UniverzitnĆ” Nemocnica Louisa Pasteura'),
(2110, 'https://ror.org/05031qk94', 'en', 1, 'https://ror.org/05031qk94 Taipei Medical University'),
(2111, 'https://ror.org/03ka27b61', 'en', 1, 'https://ror.org/03ka27b61 West Bengal University of Animal and Fishery Sciences ą¤Ŗą¤¶ą„ą¤šą¤æą¤® बंगाल ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤ą¤µą¤‚ ą¤Ŗą¤¶ą„ą¤Ŗą¤¾ą¤²ą¤Ø ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦Ŗą§ą¦°ą¦¾ą¦£ą§€ ও ą¦®ą§Žą¦øą§ą¦Æą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(2112, 'https://ror.org/01fvf0d84', 'en', 1, 'https://ror.org/01fvf0d84 Tajen University'),
(2113, 'https://ror.org/00n3e1d98', 'en', 1, 'https://ror.org/00n3e1d98 Takasaki University of Health and Welfare é«˜å“Žå„åŗ·ē¦ē„‰å¤§å­¦'),
(2114, 'https://ror.org/04waphv22', 'en', 1, 'https://ror.org/04waphv22 Tamil Nadu Veterinary and Animal Sciences University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®•ą®¾ą®²ąÆą®Øą®ŸąÆˆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2115, 'https://ror.org/0534dba08', 'en', 1, 'https://ror.org/0534dba08 Tamil University ą®¤ą®®ą®æą®“ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®¤ą®žąÆą®šą®¾ą®µąÆ‚ą®°ąÆ ą“¤ą“®ą“æą““ąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(2116, 'https://ror.org/058rxv392', 'en', 1, 'https://ror.org/058rxv392 University Hospital of North Tees'),
(2117, 'https://ror.org/04npk0q16', 'en', 1, 'https://ror.org/04npk0q16 Animal Health Trust'),
(2118, 'https://ror.org/00yx91b22', 'en', 1, 'https://ror.org/00yx91b22 Barnsley Hospital NHS Foundation Trust'),
(2119, 'https://ror.org/031nbgr73', 'en', 1, 'https://ror.org/031nbgr73 Bedford Hospital NHS Trust'),
(2120, 'https://ror.org/02405mj67', 'en', 1, 'https://ror.org/02405mj67 Belfast City Hospital'),
(2121, 'https://ror.org/02tdmfk69', 'en', 1, 'https://ror.org/02tdmfk69 Belfast Health and Social Care Trust'),
(2122, 'https://ror.org/02smq5q54', 'en', 1, 'https://ror.org/02smq5q54 Birmingham City Hospital'),
(2123, 'https://ror.org/0022b3c04', 'en', 1, 'https://ror.org/0022b3c04 Nottingham City Hospital'),
(2124, 'https://ror.org/0380w8h49', 'en', 1, 'https://ror.org/0380w8h49 Ealing Hospital NHS Trust'),
(2125, 'https://ror.org/02y0es528', 'en', 1, 'https://ror.org/02y0es528 George Eliot Hospital NHS Trust'),
(2126, 'https://ror.org/048a96r61', 'en', 1, 'https://ror.org/048a96r61 Glenfield Hospital'),
(2127, 'https://ror.org/048f17730', 'en', 1, 'https://ror.org/048f17730 Health Research and Educational Trust'),
(2128, 'https://ror.org/05xh7ac43', 'en', 1, 'https://ror.org/05xh7ac43 Kettering General Hospital NHS Trust'),
(2129, 'https://ror.org/058xqe166', 'en', 1, 'https://ror.org/058xqe166 Kingston Hospital NHS Trust'),
(2130, 'https://ror.org/02zg49d29', 'en', 1, 'https://ror.org/02zg49d29 Leicester General Hospital'),
(2131, 'https://ror.org/05b81av32', 'en', 1, 'https://ror.org/05b81av32 Luton and Dunstable Hospital'),
(2132, 'https://ror.org/058q6m856', 'en', 1, 'https://ror.org/058q6m856 Medical Trust Hospital'),
(2133, 'https://ror.org/05r409z22', 'en', 1, 'https://ror.org/05r409z22 Northern General Hospital'),
(2134, 'https://ror.org/01qbebb31', 'en', 1, 'https://ror.org/01qbebb31 Papworth Hospital NHS Foundation Trust'),
(2135, 'https://ror.org/03bs2yy11', 'en', 1, 'https://ror.org/03bs2yy11 Queen Victoria Hospital NHS Foundation Trust'),
(2136, 'https://ror.org/05apdps44', 'en', 1, 'https://ror.org/05apdps44 Raigmore Hospital'),
(2137, 'https://ror.org/049zedh07', 'en', 1, 'https://ror.org/049zedh07 Robert Jones and Agnes Hunt Orthopaedic Hospital NHS Trust'),
(2138, 'https://ror.org/026xdcm93', 'en', 1, 'https://ror.org/026xdcm93 Royal Cornwall Hospital Trust'),
(2139, 'https://ror.org/03dx46b94', 'en', 1, 'https://ror.org/03dx46b94 Royal National Orthopaedic Hospital NHS Trust'),
(2140, 'https://ror.org/050bd8661', 'en', 1, 'https://ror.org/050bd8661 Royal Surrey NHS Foundation Trust'),
(2141, 'https://ror.org/02e22bh87', 'en', 1, 'https://ror.org/02e22bh87 Western Infirmary'),
(2142, 'https://ror.org/04fbnx371', 'en', 1, 'https://ror.org/04fbnx371 West Virginia University Hospitals'),
(2143, 'https://ror.org/05hzgxd58', 'pt', 1, 'https://ror.org/05hzgxd58 Universidade de Uberaba'),
(2144, 'https://ror.org/02azxx136', 'en', 1, 'https://ror.org/02azxx136 University of Health Sciences Vientiane ąŗ”ąŗ°ąŗ«ąŗ²ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ą»„ąŗ„ ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ąŗŖąŗ²ąŗ” ąŗŖąŗøąŗ‚ąŗ°ąŗžąŗ²ąŗš'),
(2145, 'https://ror.org/01yyxv878', 'en', 1, 'https://ror.org/01yyxv878 Wingate University'),
(2146, 'https://ror.org/05rzmnp25', 'en', 1, 'https://ror.org/05rzmnp25 University of the Ryukyus University Hospital ē‰ēƒå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(2147, 'https://ror.org/03fr85h91', 'en', 1, 'https://ror.org/03fr85h91 University of Uyo Teaching Hospital'),
(2148, 'https://ror.org/04s8a8w57', 'en', 1, 'https://ror.org/04s8a8w57 University Hospital of the West Indies'),
(2149, 'https://ror.org/015qjqf64', 'en', 1, 'https://ror.org/015qjqf64 Stiftung TierƤrztliche Hochschule Hannover University of Veterinary Medicine Hannover, Foundation'),
(2150, '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'),
(2151, 'https://ror.org/02s6h0431', 'it', 1, 'https://ror.org/02s6h0431 Circolo Hospital and Macchi Foundation Ospedale di Circolo e Fondazione Macchi'),
(2152, 'https://ror.org/045vatr18', 'en', 1, 'https://ror.org/045vatr18 University of Ilorin Teaching Hospital'),
(2153, 'https://ror.org/02xf7p935', 'en', 1, 'https://ror.org/02xf7p935 Incheon National University ģøģ²œėŒ€ķ•™źµ'),
(2154, 'https://ror.org/04dzvks42', 'en', 1, 'https://ror.org/04dzvks42 XinHua Hospital äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žę–°åŽåŒ»é™¢'),
(2155, 'https://ror.org/01krywm46', 'en', 1, 'https://ror.org/01krywm46 University of Virginia Children''s Hospital'),
(2156, 'https://ror.org/03jt4wj37', 'de', 1, 'https://ror.org/03jt4wj37 UniversitƤtskliniken Salzburg'),
(2157, 'https://ror.org/05vvzn852', 'en', 1, 'https://ror.org/05vvzn852 University of Kentucky HealthCare'),
(2158, 'https://ror.org/00nrtez23', 'it', 1, 'https://ror.org/00nrtez23 Azienda Ospedaliero Universitaria San Giovanni Battista'),
(2159, 'https://ror.org/05gg4qm19', 'en', 1, 'https://ror.org/05gg4qm19 Yamagata University Hospital å±±å½¢å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(2160, 'https://ror.org/04b7w1811', 'en', 1, 'https://ror.org/04b7w1811 Yamaguchi Prefectural University å±±å£ēœŒē«‹å¤§å­¦'),
(2161, 'https://ror.org/03js6zg56', 'en', 1, 'https://ror.org/03js6zg56 University of Agricultural Sciences, Bangalore'),
(2162, 'https://ror.org/05jc5ee02', 'en', 1, 'https://ror.org/05jc5ee02 University of Minnesota Children''s Hospital'),
(2163, 'https://ror.org/00vkrxq08', 'en', 1, 'https://ror.org/00vkrxq08 University Malaya Medical Centre'),
(2164, 'https://ror.org/01rm42p40', 'en', 1, 'https://ror.org/01rm42p40 University of Alabama at Birmingham Hospital'),
(2165, 'https://ror.org/05vzbfc95', 'en', 1, 'https://ror.org/05vzbfc95 Yeditepe University Hospital Yeditepe Üniversitesi Hastanesi'),
(2166, 'https://ror.org/058x7dy48', 'en', 1, 'https://ror.org/058x7dy48 Royal United Hospital Bath NHS Trust'),
(2167, 'https://ror.org/0586bt104', 'en', 1, 'https://ror.org/0586bt104 Southport and Ormskirk Hospital NHS Trust'),
(2168, 'https://ror.org/0524j1g61', 'en', 1, 'https://ror.org/0524j1g61 Stoke Mandeville Hospital Ysbyty Stoke Mandeville'),
(2169, 'https://ror.org/03w8m2977', 'no_lang_code', 1, 'https://ror.org/03w8m2977 Yibin University'),
(2170, 'https://ror.org/04hk86037', 'en', 1, 'https://ror.org/04hk86037 Universidad de Matanzas "Camilo Cienfuegos" University of Matanzas University of Matanzas "Camilo Cienfuegos"'),
(2171, 'https://ror.org/0137gef36', 'no_lang_code', 1, 'https://ror.org/0137gef36 Yogi Vemana University யோகி வேமனா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ యోగి వేమన ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(2172, 'https://ror.org/01fv1ds98', 'no_lang_code', 1, 'https://ror.org/01fv1ds98 Yuan Ze University'),
(2173, 'https://ror.org/02jb3jv25', 'en', 1, 'https://ror.org/02jb3jv25 Yuanpei University å…ƒåŸ¹é†«äŗ‹ē§‘ęŠ€å¤§å­ø'),
(2174, 'https://ror.org/04skph061', 'en', 1, 'https://ror.org/04skph061 Hospital de la Universidad de Nuevo MƩxico University of New Mexico Hospital'),
(2175, 'https://ror.org/02yx0mh38', 'en', 1, 'https://ror.org/02yx0mh38 University of Miami Hospital'),
(2176, 'https://ror.org/015566d55', 'en', 1, 'https://ror.org/015566d55 University of Azad Jammu and Kashmir'),
(2177, 'https://ror.org/030jhb479', 'en', 1, 'https://ror.org/030jhb479 Yunnan Nationalities University äŗ‘å—ę°‘ę—å¤§å­¦'),
(2178, 'https://ror.org/0317ekv86', 'en', 1, 'https://ror.org/0317ekv86 University of Bahrain Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(2179, 'https://ror.org/00mbhee72', 'en', 1, 'https://ror.org/00mbhee72 University Medical Center of Princeton'),
(2180, 'https://ror.org/04bf33n91', 'en', 1, 'https://ror.org/04bf33n91 University of Balochistan جامعہ ŲØŁ„ŁˆŚ†Ų³ŲŖŲ§Ł†'),
(2181, 'https://ror.org/04mrdd905', 'en', 1, 'https://ror.org/04mrdd905 University of Wisconsin American Family Children''s Hospital'),
(2182, 'https://ror.org/01t8svj65', 'en', 1, 'https://ror.org/01t8svj65 University of California San Francisco Medical Center'),
(2183, 'https://ror.org/04k3jt835', 'en', 1, 'https://ror.org/04k3jt835 Ronald Reagan UCLA Medical Center'),
(2184, 'https://ror.org/02z58ft15', 'en', 1, 'https://ror.org/02z58ft15 University of Charleston UniversitƩ de Charleston'),
(2185, 'https://ror.org/006jjmw19', 'en', 1, 'https://ror.org/006jjmw19 Hospital de la Universidad de Colorado University of Colorado Hospital'),
(2186, 'https://ror.org/03vz8ns51', 'en', 1, 'https://ror.org/03vz8ns51 Ziauddin University'),
(2187, 'https://ror.org/04arkmn57', 'en', 1, 'https://ror.org/04arkmn57 University of Defence Univerzita Obrany'),
(2188, 'https://ror.org/05qderh61', 'en', 1, 'https://ror.org/05qderh61 University of Calabar YunifÔsítì ìlú Calabar'),
(2189, 'https://ror.org/0193sb042', 'en', 1, 'https://ror.org/0193sb042 Henry Ford Hospital HƓpital henry ford'),
(2190, 'https://ror.org/04jztag35', 'en', 1, 'https://ror.org/04jztag35 Peking Union Medical College Hospital åŒ—äŗ¬åå’ŒåŒ»é™¢'),
(2191, 'https://ror.org/0050r1b65', 'en', 1, 'https://ror.org/0050r1b65 Third Affiliated Hospital of Southern Medical University å—ę–¹åŒ»ē§‘å¤§å­¦ē¬¬äø‰é™„å±žåŒ»é™¢'),
(2192, 'https://ror.org/04dm1cm79', 'de', 1, 'https://ror.org/04dm1cm79 UniversitƤtsmedizin Rostock'),
(2193, 'https://ror.org/00qmnd673', 'en', 1, 'https://ror.org/00qmnd673 Kindai University Hospital čæ‘ē•æå¤§å­¦åŒ»å­¦éƒØ é™„å±žē—…é™¢'),
(2194, 'https://ror.org/0419bgt07', 'en', 1, 'https://ror.org/0419bgt07 University of Florida Health Science Center'),
(2195, 'https://ror.org/05hm6ny55', 'en', 1, 'https://ror.org/05hm6ny55 Good Samaritan Hospital'),
(2196, 'https://ror.org/04ngv0f69', 'en', 1, 'https://ror.org/04ngv0f69 Buffalo General Medical Center'),
(2197, 'https://ror.org/01w5s1t11', 'en', 1, 'https://ror.org/01w5s1t11 Buffalo Medical Group'),
(2198, 'https://ror.org/00jbkk316', 'en', 1, 'https://ror.org/00jbkk316 Buffalo VA Medical Center'),
(2199, 'https://ror.org/05h7pem82', 'no_lang_code', 1, 'https://ror.org/05h7pem82 Bugando Medical Centre'),
(2200, 'https://ror.org/01vtn3k88', 'es', 1, 'https://ror.org/01vtn3k88 Hospital Pablo Tobon Uribe'),
(2201, 'https://ror.org/03b3qq257', 'es', 1, 'https://ror.org/03b3qq257 Hospital Padre Hurtado'),
(2202, 'https://ror.org/03z0bdc81', 'no_lang_code', 1, 'https://ror.org/03z0bdc81 Bundang Jesaeng Hospital ė¶„ė‹¹ģ œģƒė³‘ģ›'),
(2203, 'https://ror.org/0169n7f49', 'en', 1, 'https://ror.org/0169n7f49 251 Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Αεροπορίας Hellenic Airforce General Hospital'),
(2204, 'https://ror.org/05fx5mz56', 'en', 1, 'https://ror.org/05fx5mz56 University of Nigeria Teaching Hospital'),
(2205, 'https://ror.org/04dnsc767', 'en', 1, 'https://ror.org/04dnsc767 Burke Rehabilitation Hospital'),
(2206, 'https://ror.org/01pd66220', 'en', 1, 'https://ror.org/01pd66220 302 Military Hospital of China 中国人民解放军第302医院'),
(2207, 'https://ror.org/05g5v7496', 'en', 1, 'https://ror.org/05g5v7496 Burnley General Teaching Hospital'),
(2208, 'https://ror.org/05rq9gz82', 'en', 1, 'https://ror.org/05rq9gz82 303 Hospital of People''s Liberation Army 中国人民解放军303医院'),
(2209, 'https://ror.org/050k2da37', 'en', 1, 'https://ror.org/050k2da37 Global Medical Imaging'),
(2210, 'https://ror.org/05nhkt138', 'tr', 1, 'https://ror.org/05nhkt138 Bursa Yuksek Ihtisas Egitim Ve Arastirma Hastanesi'),
(2211, 'https://ror.org/042bhxs14', 'en', 1, 'https://ror.org/042bhxs14 Burdwan Medical College & Hospital'),
(2212, 'https://ror.org/03h3yrx93', 'es', 1, 'https://ror.org/03h3yrx93 Hospital PediƔtrico Moctezuma'),
(2213, 'https://ror.org/05gh5ar80', 'en', 1, 'https://ror.org/05gh5ar80 Gloucestershire Royal Hospital'),
(2214, 'https://ror.org/03bzz8q98', 'en', 1, 'https://ror.org/03bzz8q98 175th Hospital of People''s Liberation Army 解放军第175医院'),
(2215, 'https://ror.org/05wnp6x23', 'en', 1, 'https://ror.org/05wnp6x23 Goa Dental College and Hospital'),
(2216, 'https://ror.org/0030d2559', 'en', 1, 'https://ror.org/0030d2559 Escola Médico-Cirúrgica de Goa Goa Medical College'),
(2217, 'https://ror.org/046x15q93', 'en', 1, 'https://ror.org/046x15q93 The 309th Hospital of Chinese People''s Liberation Army äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬äø‰ć€‡ä¹åŒ»é™¢'),
(2218, 'https://ror.org/01emxrg90', 'pt', 1, 'https://ror.org/01emxrg90 Hospital Pedro Hispano'),
(2219, 'https://ror.org/05eq01d13', 'en', 1, 'https://ror.org/05eq01d13 Gold Coast Hospital'),
(2220, 'https://ror.org/05kwhtp56', 'es', 1, 'https://ror.org/05kwhtp56 Hospital Perpetuo Socorro'),
(2221, 'https://ror.org/01vjtf564', 'en', 1, 'https://ror.org/01vjtf564 Rabin Medical Center'),
(2222, 'https://ror.org/0103jbm17', 'en', 1, 'https://ror.org/0103jbm17 Golden Jubilee National Hospital'),
(2223, 'https://ror.org/01zy69h55', 'en', 1, 'https://ror.org/01zy69h55 401 General Military Hospital of Athens 401 Ī“ĪµĪ½Ī¹ĪŗĻŒ Ī£Ļ„ĻĪ±Ļ„Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(2224, 'https://ror.org/00dfape04', 'en', 1, 'https://ror.org/00dfape04 Good Moonhwa Hospital ģ¢‹ģ€ė¬øķ™”ė³‘ģ›'),
(2225, 'https://ror.org/03rj2a342', 'en', 1, 'https://ror.org/03rj2a342 Good Samaritan Hospital'),
(2226, 'https://ror.org/00d9qf519', 'en', 1, 'https://ror.org/00d9qf519 Topiwala National Medical College & BYL Nair Charitable Hospital'),
(2227, 'https://ror.org/02cpzy455', 'en', 1, 'https://ror.org/02cpzy455 424 General Military Hospital 424 Ī“ĪµĪ½Ī¹ĪŗĻŒ Ī£Ļ„ĻĪ±Ļ„Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(2228, 'https://ror.org/03kzpyr73', 'en', 1, 'https://ror.org/03kzpyr73 MedStar Good Samaritan Hospital'),
(2229, 'https://ror.org/05bhd7f62', 'en', 1, 'https://ror.org/05bhd7f62 458th Hospital PLA 中国人民解放军第四五八'),
(2230, 'https://ror.org/03zms7281', 'en', 1, 'https://ror.org/03zms7281 Good Samaritan Hospital'),
(2231, 'https://ror.org/00n9v4y14', 'en', 1, 'https://ror.org/00n9v4y14 Good Samaritan Hospital'),
(2232, 'https://ror.org/00ep78v21', 'en', 1, 'https://ror.org/00ep78v21 Advocate Good Samaritan Hospital'),
(2233, 'https://ror.org/054qnke07', 'en', 1, 'https://ror.org/054qnke07 Ningbo No.6 Hospital å®ę³¢åø‚ē¬¬å…­åŒ»é™¢'),
(2234, 'https://ror.org/01tek4f86', 'hu', 1, 'https://ror.org/01tek4f86 BÔcs-Kiskun Megyei KórhÔz'),
(2235, 'https://ror.org/05wr49d48', 'en', 1, 'https://ror.org/05wr49d48 Wakayama University å’Œę­Œå±±å¤§å­¦'),
(2236, 'https://ror.org/00a0pt066', 'en', 1, 'https://ror.org/00a0pt066 MultiCare Good Samaritan Hospital'),
(2237, 'https://ror.org/003hhqx84', 'it', 1, 'https://ror.org/003hhqx84 Ospedale Antonio Cardarelli'),
(2238, 'https://ror.org/05r3hm325', 'it', 1, 'https://ror.org/05r3hm325 Azienda Ospedaliera Carlo Poma'),
(2239, 'https://ror.org/030kaa114', 'en', 1, 'https://ror.org/030kaa114 Alessandro Manzoni Hospital Ospedale Alessandro Manzoni'),
(2240, 'https://ror.org/043m85342', 'en', 1, 'https://ror.org/043m85342 Hospital Povisa Povisa Hospital'),
(2241, 'https://ror.org/05h0f1d70', 'en', 1, 'https://ror.org/05h0f1d70 C. S. Mott Children''s Hospital'),
(2242, 'https://ror.org/02dpa2319', 'en', 1, 'https://ror.org/02dpa2319 Cornwall Regional Hospital'),
(2243, 'https://ror.org/03pz7fw94', 'it', 1, 'https://ror.org/03pz7fw94 Azienda Sanitaria Ospedaliera S.Croce e Carle Cuneo'),
(2244, 'https://ror.org/03tkfgy13', 'en', 1, 'https://ror.org/03tkfgy13 Simanogleio-Amalia Fleming General Hospital Σισμανόγλειο-Αμαλία Φλέμινγκ Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(2245, 'https://ror.org/01n2xwm51', 'en', 1, 'https://ror.org/01n2xwm51 Meyer Children''s Hospital Ospedale Pediatrico Meyer'),
(2246, 'https://ror.org/03h1jr755', 'en', 1, 'https://ror.org/03h1jr755 Argerich Hospital'),
(2247, 'https://ror.org/022v32y85', 'en', 1, 'https://ror.org/022v32y85 Andreas Sygros Hospital ΑνΓρέας Ī£Ļ…Ī³Ī³ĻĻŒĻ‚ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(2248, 'https://ror.org/05gehxw18', 'en', 1, 'https://ror.org/05gehxw18 Detroit Medical Center'),
(2249, 'https://ror.org/05ph11m41', 'en', 1, 'https://ror.org/05ph11m41 CTO Hospital Ospedale Centro Traumatologico Ortopedico'),
(2250, 'https://ror.org/00fj3a809', 'en', 1, 'https://ror.org/00fj3a809 Good Samaritan Regional Medical Center'),
(2251, 'https://ror.org/04jy8zw69', 'en', 1, 'https://ror.org/04jy8zw69 Yehuda Abarbanel Mental Health Center ××‘×Ø×‘× ××œ - ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש'),
(2252, 'https://ror.org/02b72da46', 'en', 1, 'https://ror.org/02b72da46 Abbasi Shaheed Hospital عباسی Ų“Ł‡ŁŠŲÆ ہسپتال'),
(2253, 'https://ror.org/01fzm0693', 'en', 1, 'https://ror.org/01fzm0693 Abbott Northwestern Hospital'),
(2254, 'https://ror.org/04cb4je22', 'en', 1, 'https://ror.org/04cb4je22 Ca'' Foncello Hospital'),
(2255, 'https://ror.org/012bk6h61', 'da', 1, 'https://ror.org/012bk6h61 Medicinsk-historisk Museum i NƦstved'),
(2256, 'https://ror.org/01xapny78', 'en', 1, 'https://ror.org/01xapny78 Cabrini Medical Center'),
(2257, 'https://ror.org/040nggs60', 'en', 1, 'https://ror.org/040nggs60 West China Medical Center of Sichuan University å››å·å¤§å­¦åŽč„æåŒ»å­¦äø­åæƒ'),
(2258, 'https://ror.org/045nawc23', 'nl', 1, 'https://ror.org/045nawc23 Tergooi'),
(2259, 'https://ror.org/03p30f964', 'en', 1, 'https://ror.org/03p30f964 Lincoln County Hospital'),
(2260, 'https://ror.org/021nb2v44', 'en', 1, 'https://ror.org/021nb2v44 Medical College and Hospital, Kolkata ą¤•ą¤²ą¤•ą¤¤ą„ą¤¤ą¤¾ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ কলকাতা ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ ও হাসপাতাল'),
(2261, 'https://ror.org/02jxw8995', 'no_lang_code', 1, 'https://ror.org/02jxw8995 Goroka Base Hospital'),
(2262, 'https://ror.org/04w40b524', 'en', 1, 'https://ror.org/04w40b524 Abderrahmane Mami Hospital'),
(2263, 'https://ror.org/0020hse07', 'en', 1, 'https://ror.org/0020hse07 Aberdeen Maternity Hospital'),
(2264, 'https://ror.org/05xanxb38', 'en', 1, 'https://ror.org/05xanxb38 Govt. Dental College & Hospital'),
(2265, 'https://ror.org/029s9j634', 'en', 1, 'https://ror.org/029s9j634 Cairns Hospital'),
(2266, 'https://ror.org/05qkf9y72', 'en', 1, 'https://ror.org/05qkf9y72 Government General Hospital'),
(2267, 'https://ror.org/03jgh1p68', 'en', 1, 'https://ror.org/03jgh1p68 Abington Memorial Hospital'),
(2268, 'https://ror.org/026b7da27', 'en', 1, 'https://ror.org/026b7da27 Government Medical College'),
(2269, 'https://ror.org/05aeshm06', 'en', 1, 'https://ror.org/05aeshm06 Governador Celso Ramos Hospital'),
(2270, 'https://ror.org/04qma4821', 'pt', 1, 'https://ror.org/04qma4821 Hospital Pró-Cardíaco'),
(2271, 'https://ror.org/02e2dtd78', 'en', 1, 'https://ror.org/02e2dtd78 Calcutta National Medical College and Hospital কলিকাতা ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦†ą¦Æą¦¼ą§ą¦°ą§ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦®ą¦Øą§ą¦¦ą¦æą¦° ą°œą°¾ą°¤ą±€ą°Æ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(2272, 'https://ror.org/05x57ne79', 'en', 1, 'https://ror.org/05x57ne79 Calderdale Royal Hospital'),
(2273, 'https://ror.org/02cg59151', 'pt', 1, 'https://ror.org/02cg59151 Hospital Pulido Valente'),
(2274, 'https://ror.org/00m4gxn44', 'en', 1, 'https://ror.org/00m4gxn44 Government Medical College'),
(2275, 'https://ror.org/010gbda42', 'en', 1, 'https://ror.org/010gbda42 Government Medical College and Hospital'),
(2276, 'https://ror.org/03237y496', 'en', 1, 'https://ror.org/03237y496 Ahmadu Bello University Teaching Hospital'),
(2277, 'https://ror.org/046bk9643', 'en', 1, 'https://ror.org/046bk9643 Government Medical College, Amritsar ਸਰਕਾਰੀ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ąØ•ąØ¾ąØ²ąØœ'),
(2278, 'https://ror.org/019e4d354', 'en', 1, 'https://ror.org/019e4d354 Government Medical College ਸਰਕਾਰੀ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ąØ•ąØ¾ąØ²ąØœ'),
(2279, 'https://ror.org/04y908s98', 'en', 1, 'https://ror.org/04y908s98 Government Medical College'),
(2280, 'https://ror.org/037wq4b75', 'de', 1, 'https://ror.org/037wq4b75 Klinikum Ludwigshafen'),
(2281, 'https://ror.org/007fenw03', 'en', 1, 'https://ror.org/007fenw03 Government Medical College ą“—ą“µąµŗą“®ąµ†ą“Øąµą“±ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“¤ą“æą“°ąµą“µą“Øą“Øąµą“¤ą“Ŗąµą“°ą“‚'),
(2282, 'https://ror.org/0015r4831', 'en', 1, 'https://ror.org/0015r4831 Government Medical College Bhavnagar'),
(2283, 'https://ror.org/05kn6fr85', 'en', 1, 'https://ror.org/05kn6fr85 Government Medical College ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ व ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ, औरंगाबाद'),
(2284, 'https://ror.org/05w6g2m14', 'en', 1, 'https://ror.org/05w6g2m14 Government Medical College'),
(2285, 'https://ror.org/005h6qd35', 'en', 1, 'https://ror.org/005h6qd35 Government Medical College'),
(2286, 'https://ror.org/016je1253', 'en', 1, 'https://ror.org/016je1253 Government Medical College'),
(2287, 'https://ror.org/03yz7v531', 'en', 1, 'https://ror.org/03yz7v531 Mysore Medical College'),
(2288, 'https://ror.org/045xjv649', 'en', 1, 'https://ror.org/045xjv649 Netaji Subhash Chandra Bose Medical College'),
(2289, 'https://ror.org/02s4xaf90', 'en', 1, 'https://ror.org/02s4xaf90 Calgary General Hospital'),
(2290, 'https://ror.org/01zjsmf32', 'en', 1, 'https://ror.org/01zjsmf32 Government Rajaji Hospital'),
(2291, 'https://ror.org/0567p6j84', 'en', 1, 'https://ror.org/0567p6j84 Stanley Medical College ą®‡ą®šąÆą®Ÿą®¾ą®©ąÆą®²ą®æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(2292, 'https://ror.org/00k7zpp15', 'en', 1, 'https://ror.org/00k7zpp15 California Animal Hospital'),
(2293, 'https://ror.org/058fy8f68', 'en', 1, 'https://ror.org/058fy8f68 Govind Ballabh Pant Hospital'),
(2294, 'https://ror.org/03cf9xg09', 'en', 1, 'https://ror.org/03cf9xg09 California Institute for Medical Research'),
(2295, 'https://ror.org/004gqpt18', 'de', 1, 'https://ror.org/004gqpt18 Landeskrankenhaus Feldkirch'),
(2296, 'https://ror.org/053xhbr86', 'en', 1, 'https://ror.org/053xhbr86 Ryhov Hospital Jƶnkƶping'),
(2297, 'https://ror.org/010njnb56', 'en', 1, 'https://ror.org/010njnb56 Craig Hospital'),
(2298, 'https://ror.org/00v6af077', 'en', 1, 'https://ror.org/00v6af077 Calvary Hospital'),
(2299, 'https://ror.org/03cngf009', 'en', 1, 'https://ror.org/03cngf009 Craigavon Area Hospital'),
(2300, 'https://ror.org/00k7r7f88', 'en', 1, 'https://ror.org/00k7r7f88 Xuan Wu Hospital of the Capital Medical University åŒ—äŗ¬åø‚č€å¹“ē—…åŒ»ē–—ē ”ē©¶äø­åæƒ'),
(2301, 'https://ror.org/00186nd07', 'en', 1, 'https://ror.org/00186nd07 Gajara Raja Medical College'),
(2302, 'https://ror.org/00hysg385', 'en', 1, 'https://ror.org/00hysg385 Sinai Grace Hospital'),
(2303, 'https://ror.org/01bnyxq20', 'es', 1, 'https://ror.org/01bnyxq20 Hospital Ramos MejĆ­a'),
(2304, 'https://ror.org/05c4nx247', 'en', 1, 'https://ror.org/05c4nx247 B.C. Women''s Hospital & Health Centre'),
(2305, 'https://ror.org/05dp7wz77', 'en', 1, 'https://ror.org/05dp7wz77 Creative Health Care Management'),
(2306, 'https://ror.org/00nqxe643', 'en', 1, 'https://ror.org/00nqxe643 Cama and Albless Hospital'),
(2307, 'https://ror.org/04mf6js28', 'en', 1, 'https://ror.org/04mf6js28 Credit Valley Hospital'),
(2308, 'https://ror.org/0116mdr21', 'en', 1, 'https://ror.org/0116mdr21 Graduate Hospital'),
(2309, 'https://ror.org/00k1xr956', 'en', 1, 'https://ror.org/00k1xr956 Grady Health System'),
(2310, 'https://ror.org/009hj8759', 'en', 1, 'https://ror.org/009hj8759 Grady Memorial Hospital'),
(2311, 'https://ror.org/00asaax56', 'en', 1, 'https://ror.org/00asaax56 Accreditation Council for Graduate Medical Education'),
(2312, 'https://ror.org/014tckg45', 'en', 1, 'https://ror.org/014tckg45 Crichton Royal Hospital'),
(2313, 'https://ror.org/056q45h83', 'es', 1, 'https://ror.org/056q45h83 Hospital Doctor HernƔn Henrƭquez Aravena'),
(2314, 'https://ror.org/02wgfsz09', 'en', 1, 'https://ror.org/02wgfsz09 Grant Medical Center'),
(2315, 'https://ror.org/02z125451', 'en', 1, 'https://ror.org/02z125451 Zhongshan Hospital of Xiamen University åŽ¦é—Øå¤§å­¦é™„å±žäø­å±±åŒ»é™¢'),
(2316, 'https://ror.org/03dm1pq74', 'en', 1, 'https://ror.org/03dm1pq74 Grant Medical College and Sir Jamshedjee Jeejeebhoy Group of Hospitals'),
(2317, 'https://ror.org/01t54q348', 'en', 1, 'https://ror.org/01t54q348 Grantham Hospital č‘›é‡ę“Ŗé†«é™¢'),
(2318, 'https://ror.org/0457yg222', 'en', 1, 'https://ror.org/0457yg222 Acıbadem Kadıkƶy Hospital Kadıkƶy Hastanesi'),
(2319, 'https://ror.org/04xfhjr27', 'en', 1, 'https://ror.org/04xfhjr27 Great Western Hospital'),
(2320, 'https://ror.org/0077fnc39', 'en', 1, 'https://ror.org/0077fnc39 Greater Baltimore Medical Center'),
(2321, 'https://ror.org/01mtpwn71', 'no_lang_code', 1, 'https://ror.org/01mtpwn71 Adan Hospital مستؓفى العدان'),
(2322, 'https://ror.org/02fw4cc98', 'en', 1, 'https://ror.org/02fw4cc98 Canadian Agency for Drugs and Technologies in Health'),
(2323, 'https://ror.org/05g2amy04', 'en', 1, 'https://ror.org/05g2amy04 Acıbadem Adana Hospital'),
(2324, 'https://ror.org/01dgc8k02', 'it', 1, 'https://ror.org/01dgc8k02 Ospedale Cristo Re'),
(2325, 'https://ror.org/05x5g2972', 'en', 1, 'https://ror.org/05x5g2972 Crittenton Hospital Medical Center'),
(2326, 'https://ror.org/00zydn239', 'tr', 1, 'https://ror.org/00zydn239 Adana Numune Eğitim ve Araştırma Hastanesi'),
(2327, 'https://ror.org/01ggyr403', 'en', 1, 'https://ror.org/01ggyr403 Canadian Foundation for Healthcare Improvement'),
(2328, 'https://ror.org/04abjq359', 'es', 1, 'https://ror.org/04abjq359 Hospital Ruber Internacional'),
(2329, 'https://ror.org/04f3vmh71', 'tr', 1, 'https://ror.org/04f3vmh71 Medeniyet Üniversitesi Göztepe Eğitim ve Araştırma Hastanesi'),
(2330, 'https://ror.org/01vx7zt03', 'en', 1, 'https://ror.org/01vx7zt03 Addington Hospital'),
(2331, 'https://ror.org/019myg640', 'de', 1, 'https://ror.org/019myg640 Krankenanstalt Rudolfstiftung der Stadt Wien'),
(2332, 'https://ror.org/057xx1h21', 'en', 1, 'https://ror.org/057xx1h21 Association MƩdicale Canadienne Canadian Medical Association'),
(2333, 'https://ror.org/041f0qb31', 'en', 1, 'https://ror.org/041f0qb31 University Hospital Crosshouse'),
(2334, 'https://ror.org/05a2agx14', 'en', 1, 'https://ror.org/05a2agx14 Crouse Hospital'),
(2335, 'https://ror.org/05qcjn862', 'en', 1, 'https://ror.org/05qcjn862 Greenbrier Valley Medical Center'),
(2336, 'https://ror.org/05pfdp204', 'en', 1, 'https://ror.org/05pfdp204 Crozer-Keystone Health System'),
(2337, 'https://ror.org/05csdwp88', 'en', 1, 'https://ror.org/05csdwp88 Greenslopes Private Hospital'),
(2338, 'https://ror.org/04h7nbn38', 'en', 1, 'https://ror.org/04h7nbn38 Canberra Hospital'),
(2339, 'https://ror.org/02vdn8424', 'en', 1, 'https://ror.org/02vdn8424 Administration of Occupational Safety and Health Vinnueftirlitiư'),
(2340, 'https://ror.org/02atpex25', 'es', 1, 'https://ror.org/02atpex25 Hospital Rio Carrion'),
(2341, 'https://ror.org/03025ga79', 'en', 1, 'https://ror.org/03025ga79 AC Camargo Hospital'),
(2342, 'https://ror.org/036qtaj98', 'en', 1, 'https://ror.org/036qtaj98 Greenwich Hospital'),
(2343, 'https://ror.org/02aseym49', 'en', 1, 'https://ror.org/02aseym49 Australian Centre for Disease Preparedness'),
(2344, 'https://ror.org/00wpte173', 'en', 1, 'https://ror.org/00wpte173 Grey Nuns Community Hospital'),
(2345, 'https://ror.org/03qxkp346', 'pt', 1, 'https://ror.org/03qxkp346 Hospital of St. Francis Xavier'),
(2346, 'https://ror.org/003k75717', 'en', 1, 'https://ror.org/003k75717 Advocate Health Care'),
(2347, 'https://ror.org/044v7v886', 'en', 1, 'https://ror.org/044v7v886 Advocate Children''s Hospital'),
(2348, 'https://ror.org/00qz24g20', 'en', 1, 'https://ror.org/00qz24g20 University of North Carolina Health Care'),
(2349, 'https://ror.org/00xnmcq32', 'en', 1, 'https://ror.org/00xnmcq32 Grey''s Hospital'),
(2350, 'https://ror.org/05xdxc763', 'en', 1, 'https://ror.org/05xdxc763 Advocate Children''s Hospital'),
(2351, 'https://ror.org/00c879s84', 'en', 1, 'https://ror.org/00c879s84 Groote Schuur Hospital'),
(2352, 'https://ror.org/05v4pwe63', 'en', 1, 'https://ror.org/05v4pwe63 Canniesburn Hospital'),
(2353, 'https://ror.org/03mtnpp42', 'it', 1, 'https://ror.org/03mtnpp42 Ospedale Cannizzaro'),
(2354, 'https://ror.org/00tg1yh20', 'no_lang_code', 1, 'https://ror.org/00tg1yh20 Aetna (United States)'),
(2355, 'https://ror.org/002ztb251', 'en', 1, 'https://ror.org/002ztb251 Ganesh Shankar Vidyarthi Memorial Medical College ą¤—ą¤£ą„‡ą¤¶ शंकर ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤°ą„ą¤„ą„€ ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(2356, 'https://ror.org/02v8rz176', 'no_lang_code', 1, 'https://ror.org/02v8rz176 Guru Teg Bahadur Hospital'),
(2357, 'https://ror.org/00wspbn44', 'en', 1, 'https://ror.org/00wspbn44 Canterbury Health Laboratories'),
(2358, 'https://ror.org/0152bt112', 'en', 1, 'https://ror.org/0152bt112 Health Sciences and Nutrition'),
(2359, 'https://ror.org/03vw2zn10', 'fr', 1, 'https://ror.org/03vw2zn10 HƓpital Saint-Vincent-de-Paul'),
(2360, 'https://ror.org/03jpekd50', 'en', 1, 'https://ror.org/03jpekd50 Guangdong General Hospital å¹æäøœēœč€å¹“åŒ»å­¦ē ”ē©¶ę‰€'),
(2361, 'https://ror.org/03y2evj08', 'tr', 1, 'https://ror.org/03y2evj08 Gƶztepe Şafak Hastanesi'),
(2362, 'https://ror.org/056tb3809', 'de', 1, 'https://ror.org/056tb3809 Kantonsspital Aarau'),
(2363, 'https://ror.org/04qdwp261', 'es', 1, 'https://ror.org/04qdwp261 Hospital Clinico San Borja Arriaran Hospital San Borja ArriarƔn'),
(2364, 'https://ror.org/03mt12903', 'es', 1, 'https://ror.org/03mt12903 Hospital San Juan de Dios'),
(2365, 'https://ror.org/0353kya20', 'pt', 1, 'https://ror.org/0353kya20 Hospital Curry Cabral'),
(2366, 'https://ror.org/0166mge61', 'es', 1, 'https://ror.org/0166mge61 Hospital San Juan de Dios'),
(2367, 'https://ror.org/01bgds823', 'en', 1, 'https://ror.org/01bgds823 Affiliated Hospital of Chengde Medical College ę‰æå¾·åŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(2368, 'https://ror.org/03yt4qx74', 'en', 1, 'https://ror.org/03yt4qx74 Kasumigaura Medical Center éœžćƒ¶ęµ¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2369, 'https://ror.org/044t1gs69', 'es', 1, 'https://ror.org/044t1gs69 Centro de Alta Resolución San MillÔn'),
(2370, 'https://ror.org/057p7h461', 'en', 1, 'https://ror.org/057p7h461 Affiliated Hospital of Guangdong Medical College Hospital'),
(2371, 'https://ror.org/05ef11p71', 'en', 1, 'https://ror.org/05ef11p71 Grochowski Hospital'),
(2372, 'https://ror.org/04yd6pw26', 'en', 1, 'https://ror.org/04yd6pw26 Cape Cod Hospital'),
(2373, 'https://ror.org/038ygd080', 'en', 1, 'https://ror.org/038ygd080 Inner Mongolia Medical College Hospital å†…č’™å¤åŒ»ē§‘å¤§å­¦é™„å±žåŒ»é™¢'),
(2374, 'https://ror.org/01a4bac78', 'en', 1, 'https://ror.org/01a4bac78 Cantox Health Sciences International'),
(2375, 'https://ror.org/045czjy48', 'en', 1, 'https://ror.org/045czjy48 Cape Fear Valley Medical Center'),
(2376, 'https://ror.org/02n73hp60', 'en', 1, 'https://ror.org/02n73hp60 Victoria General Hospital'),
(2377, 'https://ror.org/05m7vf540', 'en', 1, 'https://ror.org/05m7vf540 Capital District Health Authority'),
(2378, 'https://ror.org/028nq5192', 'en', 1, 'https://ror.org/028nq5192 Affiliated Hospital of Jiangxi College of TCM ę±Ÿč„æäø­åŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(2379, 'https://ror.org/04b4hfb84', 'en', 1, 'https://ror.org/04b4hfb84 Green Pastures Hospital and Rehabilitation Centre'),
(2380, 'https://ror.org/049dkqr57', 'en', 1, 'https://ror.org/049dkqr57 Ningxia Medical University General Hospital å®å¤åŒ»ē§‘å¤§å­¦ę€»åŒ»é™¢'),
(2381, 'https://ror.org/01673gn35', 'en', 1, 'https://ror.org/01673gn35 Affiliated Hospital of North Sichuan Medical College 川北医学院附属医院'),
(2382, 'https://ror.org/05t9mkx39', 'en', 1, 'https://ror.org/05t9mkx39 Touro University Nevada UniversitƩ touro du nevada'),
(2383, 'https://ror.org/011xhcs96', 'en', 1, 'https://ror.org/011xhcs96 Affiliated Hospital of Xuzhou Medical College'),
(2384, 'https://ror.org/03vc5bf16', 'en', 1, 'https://ror.org/03vc5bf16 Cappagh National Orthopaedic Hospital'),
(2385, 'https://ror.org/046c18a90', 'en', 1, 'https://ror.org/046c18a90 Guangzhou Medical University Cancer Hospital å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žč‚æē˜¤åŒ»é™¢'),
(2386, 'https://ror.org/01yp8kc21', 'es', 1, 'https://ror.org/01yp8kc21 Hospital San Pedro de AlcƔntara'),
(2387, 'https://ror.org/02jj7t426', 'en', 1, 'https://ror.org/02jj7t426 Dade County Medical Examiner Department'),
(2388, 'https://ror.org/00e7ez509', 'no_lang_code', 1, 'https://ror.org/00e7ez509 Daegu Fatima Hospital ėŒ€źµ¬ķŒŒķ‹°ė§ˆė³‘ģ›'),
(2389, 'https://ror.org/00jq51013', 'en', 1, 'https://ror.org/00jq51013 Cardinal Glennon Children’s Medical Center'),
(2390, 'https://ror.org/04sz7qx51', 'fr', 1, 'https://ror.org/04sz7qx51 Centre Hospitalier Universitaire de Rabat-SalƩ'),
(2391, 'https://ror.org/02sxy6c22', 'no_lang_code', 1, 'https://ror.org/02sxy6c22 Daehang Hospital ėŒ€ķ•­ė³‘ģ›'),
(2392, 'https://ror.org/03jmfdf59', 'en', 1, 'https://ror.org/03jmfdf59 Agency for Healthcare Research and Quality'),
(2393, 'https://ror.org/034w83t88', 'tr', 1, 'https://ror.org/034w83t88 Ɩzel Trakya Hastanesi'),
(2394, 'https://ror.org/008p85724', 'en', 1, 'https://ror.org/008p85724 Guangdong Province Stomatological Hospital å¹æäøœēœå£č…”åŒ»é™¢'),
(2395, 'https://ror.org/036dkm174', 'es', 1, 'https://ror.org/036dkm174 Hospital Santa Caterina'),
(2396, 'https://ror.org/04sheqe49', 'en', 1, 'https://ror.org/04sheqe49 Daisy Hill Hospital Otharlann Chnoc na Nóiníní'),
(2397, 'https://ror.org/01vka3a64', 'en', 1, 'https://ror.org/01vka3a64 CARE Hospitals'),
(2398, 'https://ror.org/029cz3039', 'en', 1, 'https://ror.org/029cz3039 Kijabe Hospital'),
(2399, 'https://ror.org/0534awx66', 'en', 1, 'https://ror.org/0534awx66 Guangzhou Eighth People''s Hospital å¹æå·žåø‚ē¬¬å…«äŗŗę°‘åŒ»é™¢'),
(2400, 'https://ror.org/02r581p42', 'pt', 1, 'https://ror.org/02r581p42 Hospital de Santa Cruz'),
(2401, 'https://ror.org/04szr1369', 'en', 1, 'https://ror.org/04szr1369 Guangzhou Chest Hospital å¹æå·žåø‚čƒøē§‘åŒ»é™¢'),
(2402, 'https://ror.org/01dkn0c77', 'pt', 1, 'https://ror.org/01dkn0c77 Hospital Santa Izabel'),
(2403, 'https://ror.org/022jeg055', 'en', 1, 'https://ror.org/022jeg055 Dallas Diabetes Research Center'),
(2404, 'https://ror.org/036nxkh98', 'en', 1, 'https://ror.org/036nxkh98 Carilion Roanoke Memorial Hospital'),
(2405, 'https://ror.org/04sgy9050', 'pt', 1, 'https://ror.org/04sgy9050 Hospital Santa Marcelina'),
(2406, 'https://ror.org/047n0b268', 'en', 1, 'https://ror.org/047n0b268 Aichi Prefectural University ę„›ēŸ„ēœŒē«‹å¤§å­¦'),
(2407, 'https://ror.org/001xq1j98', 'en', 1, 'https://ror.org/001xq1j98 Covenant Health'),
(2408, 'https://ror.org/00cdz3124', 'es', 1, 'https://ror.org/00cdz3124 Hospital General Universitario Santa MarĆ­a del Rosell'),
(2409, 'https://ror.org/051mn8706', 'en', 1, 'https://ror.org/051mn8706 Tumor Hospital of Guangxi Medical University å¹æč„æåŒ»ē§‘å¤§å­¦č‚æē˜¤åŒ»é™¢'),
(2410, 'https://ror.org/01zqztb27', 'no_lang_code', 1, 'https://ror.org/01zqztb27 Caritas Medical Centre ę˜Žę„›é†«é™¢'),
(2411, 'https://ror.org/00hfbva78', 'en', 1, 'https://ror.org/00hfbva78 General Hospital of Guangzhou Military Command å¹æå·žå†›åŒŗå¹æå·žę€»åŒ»é™¢'),
(2412, 'https://ror.org/023pqj155', 'es', 1, 'https://ror.org/023pqj155 Hospital Santiago Apostol'),
(2413, 'https://ror.org/02m9pj861', 'pt', 1, 'https://ror.org/02m9pj861 Hospital de Santo António'),
(2414, 'https://ror.org/04abkkn33', 'pt', 1, 'https://ror.org/04abkkn33 Hospital Santo António dos Capuchos'),
(2415, 'https://ror.org/042jtt364', 'en', 1, 'https://ror.org/042jtt364 Air Force General Hospital PLA'),
(2416, 'https://ror.org/03p43tq86', 'ms', 1, 'https://ror.org/03p43tq86 Hospital Selayang'),
(2417, 'https://ror.org/01b2c5015', 'es', 1, 'https://ror.org/01b2c5015 Hospital Sierrallana'),
(2418, 'https://ror.org/04wwg3z97', 'no_lang_code', 1, 'https://ror.org/04wwg3z97 Dammam Central Hospital مستؓفى الدمام Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(2419, 'https://ror.org/04z5vy146', 'en', 1, 'https://ror.org/04z5vy146 Carlo Forlanini Hospital'),
(2420, 'https://ror.org/034pdr896', 'en', 1, 'https://ror.org/034pdr896 Dallas VA Medical Center'),
(2421, 'https://ror.org/04zygv656', 'en', 1, 'https://ror.org/04zygv656 Airedale General Hospital'),
(2422, 'https://ror.org/05sb0dh40', 'en', 1, 'https://ror.org/05sb0dh40 Aishin Memorial Hospital ę„›åæƒćƒ”ćƒ¢ćƒŖć‚¢ćƒ«ē—…é™¢'),
(2423, 'https://ror.org/0041bpv82', 'en', 1, 'https://ror.org/0041bpv82 Hospital Sultanah Aminah Sultanah Aminah Hospital'),
(2424, 'https://ror.org/0576bwz31', 'no_lang_code', 1, 'https://ror.org/0576bwz31 Aizawa Hospital 相澤病院'),
(2425, 'https://ror.org/04j6ay666', 'en', 1, 'https://ror.org/04j6ay666 Akashi Medical Center ę˜ŽēŸ³åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2426, 'https://ror.org/02f38b560', 'pt', 1, 'https://ror.org/02f38b560 Hospital SĆ£o Rafael'),
(2427, 'https://ror.org/01pm59m24', 'en', 1, 'https://ror.org/01pm59m24 Akashi Municipal City Hospital ę˜ŽēŸ³åø‚ē«‹åø‚ę°‘ē—…é™¢'),
(2428, 'https://ror.org/02dc47z81', 'pt', 1, 'https://ror.org/02dc47z81 Hospital São Teotónio'),
(2429, 'https://ror.org/02cy9a842', 'en', 1, 'https://ror.org/02cy9a842 Carmel Medical Center'),
(2430, 'https://ror.org/043h2w593', 'en', 1, 'https://ror.org/043h2w593 Akita Red Cross Hospital ē§‹ē”°čµ¤åå­—ē—…é™¢'),
(2431, 'https://ror.org/03r5mk904', 'pt', 1, 'https://ror.org/03r5mk904 Hospital SĆ­rio-LibanĆŖs Syrian-Lebanese Hospital'),
(2432, 'https://ror.org/0107t3e14', 'en', 1, 'https://ror.org/0107t3e14 Akron Children''s Hospital'),
(2433, 'https://ror.org/043xhwq03', 'en', 1, 'https://ror.org/043xhwq03 Carney Hospital'),
(2434, 'https://ror.org/001m5qg34', 'en', 1, 'https://ror.org/001m5qg34 Darent Valley Hospital'),
(2435, 'https://ror.org/05txhk819', 'es', 1, 'https://ror.org/05txhk819 Hospital General de Agudos Dr. TEODORO ALVAREZ'),
(2436, 'https://ror.org/01xb3t395', 'en', 1, 'https://ror.org/01xb3t395 Summa Akron City Hospital'),
(2437, 'https://ror.org/05rm13h81', 'ms', 1, 'https://ror.org/05rm13h81 Hospital Tengku Ampuan Afzan'),
(2438, 'https://ror.org/04yxtqc27', 'en', 1, 'https://ror.org/04yxtqc27 Caroline Chisholm Centre for Health Ethics'),
(2439, 'https://ror.org/0493tt883', 'en', 1, 'https://ror.org/0493tt883 Carl T. Hayden Veterans Affairs Medical Center'),
(2440, 'https://ror.org/000c39f30', 'en', 1, 'https://ror.org/000c39f30 Al Ain Hospital مستؓفى Ų§Ł„Ų¹ŁŠŁ†'),
(2441, 'https://ror.org/04v91tb50', 'es', 1, 'https://ror.org/04v91tb50 Complejo Hospitalario TorrecƔrdenas'),
(2442, 'https://ror.org/00zszzj16', 'en', 1, 'https://ror.org/00zszzj16 Al Amal Hospital Jeddah'),
(2443, 'https://ror.org/03gd6ja31', 'en', 1, 'https://ror.org/03gd6ja31 Al-Ameen Medical College'),
(2444, 'https://ror.org/02rn83489', 'en', 1, 'https://ror.org/02rn83489 Corniche Hospital مستؓفى Ų§Ł„ŁƒŁˆŲ±Ł†ŁŠŲ“ Ł„Ł„Ų£Ł…ŁˆŁ…Ų©'),
(2445, 'https://ror.org/01pzjt917', 'eu', 1, 'https://ror.org/01pzjt917 Hospital Txagorritxu'),
(2446, 'https://ror.org/03rhyss57', 'en', 1, 'https://ror.org/03rhyss57 Day General Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† دی'),
(2447, 'https://ror.org/024eyyq66', 'en', 1, 'https://ror.org/024eyyq66 Armed Forces Hospital'),
(2448, 'https://ror.org/052g5ww90', 'fr', 1, 'https://ror.org/052g5ww90 Hopital Universitaire Habib Bourguiba'),
(2449, 'https://ror.org/0393ghj09', 'no_lang_code', 1, 'https://ror.org/0393ghj09 Habib hospital Thameur'),
(2450, 'https://ror.org/03rx9r010', 'en', 1, 'https://ror.org/03rx9r010 Carraway Methodist Medical Center'),
(2451, 'https://ror.org/024bsrp32', 'en', 1, 'https://ror.org/024bsrp32 Casa Colina Centers for Rehabilitation'),
(2452, 'https://ror.org/04x16yc34', 'no_lang_code', 1, 'https://ror.org/04x16yc34 Al Nahdha Hospital مستؓفى النهضة'),
(2453, 'https://ror.org/00md77g41', 'it', 1, 'https://ror.org/00md77g41 Casa Sollievo della Sofferenza Home for Relief of the Suffering'),
(2454, 'https://ror.org/03b705z14', 'es', 1, 'https://ror.org/03b705z14 Hospital Vargas'),
(2455, 'https://ror.org/03tfy3c27', 'es', 1, 'https://ror.org/03tfy3c27 Hospital Vega Baja'),
(2456, 'https://ror.org/02bhk3j29', 'es', 1, 'https://ror.org/02bhk3j29 Hospital Virgen de la Concha'),
(2457, 'https://ror.org/00k49k182', 'es', 1, 'https://ror.org/00k49k182 Hospital Virgen de la Luz'),
(2458, 'https://ror.org/04rr42t68', 'nl', 1, 'https://ror.org/04rr42t68 Jeroen Bosch Ziekenhuis'),
(2459, 'https://ror.org/042asnw05', 'en', 1, 'https://ror.org/042asnw05 Castle Hill Hospital'),
(2460, 'https://ror.org/05n56ba96', 'en', 1, 'https://ror.org/05n56ba96 Latifa Hospital'),
(2461, 'https://ror.org/04y2hdd14', 'no_lang_code', 1, 'https://ror.org/04y2hdd14 Amiri Hospital المستؓفى Ų§Ł„Ų£Ł…ŁŠŲ±ŁŠ'),
(2462, 'https://ror.org/05kjeqc29', 'no_lang_code', 1, 'https://ror.org/05kjeqc29 Jahra Hospital مستؓفى الجهراؔ'),
(2463, 'https://ror.org/00pg9d188', 'en', 1, 'https://ror.org/00pg9d188 Al Noor Hospitals'),
(2464, 'https://ror.org/03f8drh85', 'no_lang_code', 1, 'https://ror.org/03f8drh85 Haibara General Hospital ę¦›åŽŸē·åˆē—…é™¢');
INSERT INTO `rors` VALUES
(2465, 'https://ror.org/04ssfah06', 'es', 1, 'https://ror.org/04ssfah06 Hospital Virgen de los Lirios'),
(2466, 'https://ror.org/01yft1b10', 'en', 1, 'https://ror.org/01yft1b10 Catalyst Health Economics Consultants Ltd'),
(2467, 'https://ror.org/046wwv897', 'es', 1, 'https://ror.org/046wwv897 Hospital Virgen del Camino'),
(2468, 'https://ror.org/0488ndr53', 'en', 1, 'https://ror.org/0488ndr53 Hairmyres Hospital'),
(2469, 'https://ror.org/05peke140', 'es', 1, 'https://ror.org/05peke140 Hospital Virgen del Puerto'),
(2470, 'https://ror.org/035xbsb93', 'en', 1, 'https://ror.org/035xbsb93 Al-Sabah Hospital'),
(2471, 'https://ror.org/05mqksr19', 'en', 1, 'https://ror.org/05mqksr19 Catawba Valley Medical Center'),
(2472, 'https://ror.org/04hcg0q34', 'en', 1, 'https://ror.org/04hcg0q34 Alameda Health System'),
(2473, 'https://ror.org/04p7nde68', 'en', 1, 'https://ror.org/04p7nde68 Hakodate Central General Hospital 函館中央病院'),
(2474, 'https://ror.org/03dcdys28', 'en', 1, 'https://ror.org/03dcdys28 Alaska Department of Health and Social Services'),
(2475, 'https://ror.org/04nr0c858', 'es', 1, 'https://ror.org/04nr0c858 Hospital Vozandes'),
(2476, 'https://ror.org/03c8c9n80', 'en', 1, 'https://ror.org/03c8c9n80 Cathay General Hospital'),
(2477, 'https://ror.org/04faw9m73', 'sv', 1, 'https://ror.org/04faw9m73 Hallands sjukhus Halmstad'),
(2478, 'https://ror.org/03pshcc38', 'en', 1, 'https://ror.org/03pshcc38 Halton General Hospital'),
(2479, 'https://ror.org/00zbht122', 'es', 1, 'https://ror.org/00zbht122 Hospital Xeral Calde'),
(2480, 'https://ror.org/02bg8cb41', 'en', 1, 'https://ror.org/02bg8cb41 Alaska Native Medical Center'),
(2481, 'https://ror.org/01bgafn72', 'no_lang_code', 1, 'https://ror.org/01bgafn72 Hamad General Hospital'),
(2482, 'https://ror.org/02byvsq24', 'en', 1, 'https://ror.org/02byvsq24 Community Regional Medical Center'),
(2483, 'https://ror.org/05vtzqy31', 'en', 1, 'https://ror.org/05vtzqy31 Deaconess Hospital'),
(2484, 'https://ror.org/00h2bj464', 'en', 1, 'https://ror.org/00h2bj464 Deaconess Hospital'),
(2485, 'https://ror.org/05vczwc13', 'en', 1, 'https://ror.org/05vczwc13 Deaconess Hospital'),
(2486, 'https://ror.org/02zwb6n98', 'en', 1, 'https://ror.org/02zwb6n98 Hamad Medical Corporation'),
(2487, 'https://ror.org/0532h0d08', 'en', 1, 'https://ror.org/0532h0d08 Deaconess Hospital'),
(2488, 'https://ror.org/02wdkng16', 'en', 1, 'https://ror.org/02wdkng16 Catholic Health Association of the United States'),
(2489, 'https://ror.org/029es6637', 'en', 1, 'https://ror.org/029es6637 Alaska Native Tribal Health Consortium'),
(2490, 'https://ror.org/04w1m5n60', 'fr', 1, 'https://ror.org/04w1m5n60 HƓtel-Dieu de France'),
(2491, 'https://ror.org/01s7w1z60', 'fr', 1, 'https://ror.org/01s7w1z60 Hotel Dieu Hospital'),
(2492, 'https://ror.org/02p72h367', 'en', 1, 'https://ror.org/02p72h367 University of Cincinnati Medical Center'),
(2493, 'https://ror.org/023wqmm33', 'en', 1, 'https://ror.org/023wqmm33 DeKalb Medical Center'),
(2494, 'https://ror.org/049yfnz48', 'en', 1, 'https://ror.org/049yfnz48 Houston Medical Center'),
(2495, 'https://ror.org/028xtgx62', 'en', 1, 'https://ror.org/028xtgx62 Albert Schweitzer Hospital HƓpital albert-schweitzer'),
(2496, 'https://ror.org/05j7rz205', 'en', 1, 'https://ror.org/05j7rz205 Halifax Health Medical Center'),
(2497, 'https://ror.org/03pz1p187', 'en', 1, 'https://ror.org/03pz1p187 Alberta Health'),
(2498, 'https://ror.org/038vg5g56', 'en', 1, 'https://ror.org/038vg5g56 Delaware County Memorial Hospital'),
(2499, 'https://ror.org/007x9se63', 'en', 1, 'https://ror.org/007x9se63 Center for Devices and Radiological Health'),
(2500, 'https://ror.org/04n9z8z70', 'en', 1, 'https://ror.org/04n9z8z70 New Mexico VA Health Care System'),
(2501, 'https://ror.org/03e8ncw23', 'en', 1, 'https://ror.org/03e8ncw23 Gunma Prefectural Institute of Public Health and Environmental Sciences ē¾¤é¦¬ēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(2502, 'https://ror.org/04z61sd03', 'en', 1, 'https://ror.org/04z61sd03 Alder Hey Children''s Hospital'),
(2503, 'https://ror.org/01fxd7077', 'en', 1, 'https://ror.org/01fxd7077 Center for Health Care Law'),
(2504, 'https://ror.org/009z5t729', 'en', 1, 'https://ror.org/009z5t729 Cook Children''s Medical Center'),
(2505, 'https://ror.org/032af5232', 'no_lang_code', 1, 'https://ror.org/032af5232 Gweru Provincial Hospital'),
(2506, 'https://ror.org/029hept94', 'en', 1, 'https://ror.org/029hept94 Alexandra Hospital'),
(2507, 'https://ror.org/02f3b8e29', 'en', 1, 'https://ror.org/02f3b8e29 Alexandra Hospital äŗšåŽ†å±±å¤§åŒ»é™¢'),
(2508, 'https://ror.org/027q9k466', 'en', 1, 'https://ror.org/027q9k466 Alexandra Hospital'),
(2509, 'https://ror.org/03q4p1y48', 'en', 1, 'https://ror.org/03q4p1y48 Haga Hospital HagaZiekenhuis'),
(2510, 'https://ror.org/03ks67450', 'en', 1, 'https://ror.org/03ks67450 Inova Alexandria Hospital'),
(2511, 'https://ror.org/015b6az38', 'en', 1, 'https://ror.org/015b6az38 Mackay Memorial Hospital 馬偕瓀念醫院'),
(2512, 'https://ror.org/04zgvbn76', 'en', 1, 'https://ror.org/04zgvbn76 Guthrie Hospice'),
(2513, 'https://ror.org/02x1txb82', 'no_lang_code', 1, 'https://ror.org/02x1txb82 Hafez Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† حافظ'),
(2514, 'https://ror.org/012wm7481', 'no_lang_code', 1, 'https://ror.org/012wm7481 Huadong Hospital å¤ę—¦å¤§å­¦é™„å±žåŽäøœåŒ»é™¢'),
(2515, 'https://ror.org/0065kgn45', 'en', 1, 'https://ror.org/0065kgn45 Center for Studying Health System Change'),
(2516, 'https://ror.org/03ty7jy62', 'en', 1, 'https://ror.org/03ty7jy62 Alexian Brothers Medical Center'),
(2517, 'https://ror.org/02hyxwa22', 'en', 1, 'https://ror.org/02hyxwa22 Center for Urban Population Health'),
(2518, 'https://ror.org/05pp39346', 'en', 1, 'https://ror.org/05pp39346 Haifa Medical Center'),
(2519, 'https://ror.org/00q6wbs64', 'no_lang_code', 1, 'https://ror.org/00q6wbs64 Tianjin Huanhu Hospital å¤©ę“„åø‚ēŽÆę¹–åŒ»é™¢'),
(2520, 'https://ror.org/05p38yh32', 'en', 1, 'https://ror.org/05p38yh32 Hubei Cancer Hospital ę¹–åŒ—ēœč‚æē˜¤åŒ»é™¢'),
(2521, 'https://ror.org/01g171x08', 'en', 1, 'https://ror.org/01g171x08 Alice Ho Miu Ling Nethersole Hospital é›…éŗ—ę°ä½•å¦™é½”é‚£ę‰“ē“ é†«é™¢'),
(2522, 'https://ror.org/03yegf956', 'en', 1, 'https://ror.org/03yegf956 Alice Springs Hospital'),
(2523, 'https://ror.org/023cara48', 'en', 1, 'https://ror.org/023cara48 Center for Epidemiology and Animal Health'),
(2524, 'https://ror.org/013x5cp73', 'en', 1, 'https://ror.org/013x5cp73 Johns Hopkins All Children''s Hospital'),
(2525, 'https://ror.org/05q8mwj81', 'en', 1, 'https://ror.org/05q8mwj81 Hamilton General Hospital'),
(2526, 'https://ror.org/03nrgvp52', 'en', 1, 'https://ror.org/03nrgvp52 Centinela Hospital Medical Center'),
(2527, 'https://ror.org/01m46xf39', 'en', 1, 'https://ror.org/01m46xf39 All India Institute of Hygiene and Public Health अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ जन ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(2528, 'https://ror.org/015rc4h95', 'en', 1, 'https://ror.org/015rc4h95 Hamanomachi Hospital ęµœć®ē”ŗē—…é™¢'),
(2529, 'https://ror.org/005r9p256', 'en', 1, 'https://ror.org/005r9p256 Royal Derby Hospital'),
(2530, 'https://ror.org/04vhsg885', 'en', 1, 'https://ror.org/04vhsg885 Allama Iqbal Medical College علامہ اقبال Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(2531, 'https://ror.org/02gy6qp39', 'en', 1, 'https://ror.org/02gy6qp39 Allegheny General Hospital'),
(2532, 'https://ror.org/03mccxv57', 'en', 1, 'https://ror.org/03mccxv57 Derbyshire Children''s Hospital'),
(2533, 'https://ror.org/02vtstx21', 'en', 1, 'https://ror.org/02vtstx21 Allen Hospital'),
(2534, 'https://ror.org/03h4fx826', 'en', 1, 'https://ror.org/03h4fx826 Lehigh Valley Hospital'),
(2535, 'https://ror.org/03950pc16', 'en', 1, 'https://ror.org/03950pc16 Allergy and Asthma Medical Group and Research Center'),
(2536, 'https://ror.org/00v5h4y49', 'en', 1, 'https://ror.org/00v5h4y49 Derriford Hospital'),
(2537, 'https://ror.org/05jg8yp15', 'en', 1, 'https://ror.org/05jg8yp15 Hammersmith Hospital'),
(2538, 'https://ror.org/038fqcc39', 'en', 1, 'https://ror.org/038fqcc39 UPMC Hamot'),
(2539, 'https://ror.org/02gj19t78', 'en', 1, 'https://ror.org/02gj19t78 Humber River Regional Hospital'),
(2540, 'https://ror.org/01jjm6w53', 'en', 1, 'https://ror.org/01jjm6w53 Banner Desert Medical Center'),
(2541, 'https://ror.org/037a76178', 'en', 1, 'https://ror.org/037a76178 Handa City Hospital åŠē”°åø‚ē«‹åŠē”°ē—…é™¢'),
(2542, 'https://ror.org/04esegk75', 'en', 1, 'https://ror.org/04esegk75 Allina Health'),
(2543, 'https://ror.org/01t3emk15', 'en', 1, 'https://ror.org/01t3emk15 Central Chest Institute of Thailand'),
(2544, 'https://ror.org/03w37n116', 'en', 1, 'https://ror.org/03w37n116 Alta Bates Summit Medical Center'),
(2545, 'https://ror.org/05xxmnm27', 'en', 1, 'https://ror.org/05xxmnm27 Altnagelvin Area Hospital'),
(2546, 'https://ror.org/04fp78s33', 'en', 1, 'https://ror.org/04fp78s33 Hunter Holmes McGuire VA Medical Center'),
(2547, 'https://ror.org/05pwsw714', 'en', 1, 'https://ror.org/05pwsw714 Hangzhou First People''s Hospital ę­å·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(2548, 'https://ror.org/055redd10', 'it', 1, 'https://ror.org/055redd10 Azienda Ospedaliera di Desio e Vimercate'),
(2549, 'https://ror.org/03mh75s52', 'en', 1, 'https://ror.org/03mh75s52 Hangzhou Red Cross Hospital ę­å·žåø‚ēŗ¢åå­—ä¼šåŒ»é™¢'),
(2550, 'https://ror.org/00g1rc256', 'en', 1, 'https://ror.org/00g1rc256 Central DuPage Hospital'),
(2551, 'https://ror.org/02xgzjz11', 'en', 1, 'https://ror.org/02xgzjz11 Hanil General Hospital ķ•œģ „ė³‘ģ›'),
(2552, 'https://ror.org/0020x6414', 'en', 1, 'https://ror.org/0020x6414 Hunter Medical Research Institute'),
(2553, 'https://ror.org/00yj3jn96', 'en', 1, 'https://ror.org/00yj3jn96 Hunterdon Medical Center'),
(2554, 'https://ror.org/01qh83x04', 'sv', 1, 'https://ror.org/01qh83x04 VƤstmanlands sjukhus VƤsterƄs'),
(2555, 'https://ror.org/02kwcpg86', 'en', 1, 'https://ror.org/02kwcpg86 Karlstad Central Hospital'),
(2556, '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'),
(2557, 'https://ror.org/02g2pz956', 'en', 1, 'https://ror.org/02g2pz956 Amager Hospital'),
(2558, 'https://ror.org/0163qhr63', 'en', 1, 'https://ror.org/0163qhr63 Hanusch Hospital Hanusch-Krankenhaus'),
(2559, 'https://ror.org/01cgbsh11', 'en', 1, 'https://ror.org/01cgbsh11 Hutt Hospital'),
(2560, 'https://ror.org/03zsbd109', 'en', 1, 'https://ror.org/03zsbd109 Hanwa Memorial Hospital é˜Ŗå’ŒčØ˜åæµē—…é™¢'),
(2561, 'https://ror.org/03z2mza16', 'en', 1, 'https://ror.org/03z2mza16 Dewsbury and District Hospital'),
(2562, 'https://ror.org/03mdzf107', 'en', 1, 'https://ror.org/03mdzf107 Amala Institute of Medical Sciences ą“…ą“®ą“² ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“Ÿąµą“Ÿąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“øą“Æąµ»ą“øą“øąµ'),
(2563, 'https://ror.org/02paek818', 'en', 1, 'https://ror.org/02paek818 Hutzel Women''s Hospital'),
(2564, 'https://ror.org/05mdb5j94', 'en', 1, 'https://ror.org/05mdb5j94 MedStar Harbor Hospital'),
(2565, 'https://ror.org/01p8da469', 'it', 1, 'https://ror.org/01p8da469 Ospedale Amedeo di Savoia'),
(2566, 'https://ror.org/03pjj1n42', 'en', 1, 'https://ror.org/03pjj1n42 Dhahran Health Center'),
(2567, 'https://ror.org/00w7vnc45', 'en', 1, 'https://ror.org/00w7vnc45 America''s Health Insurance Plans'),
(2568, 'https://ror.org/0150ewf57', 'en', 1, 'https://ror.org/0150ewf57 Dhaka Medical College and Hospital ঢাকা মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(2569, 'https://ror.org/04fwa4t58', 'en', 1, 'https://ror.org/04fwa4t58 Harefield Hospital'),
(2570, 'https://ror.org/03e36d037', 'es', 1, 'https://ror.org/03e36d037 ABC Medical Center Centro MƩdico ABC'),
(2571, 'https://ror.org/01czx1v82', 'en', 1, 'https://ror.org/01czx1v82 Huzhou Central Hospital ę¹–å·žåø‚äø­åæƒåŒ»é™¢'),
(2572, 'https://ror.org/04fv66053', 'en', 1, 'https://ror.org/04fv66053 American Health Care Association'),
(2573, 'https://ror.org/04tpqnr72', 'en', 1, 'https://ror.org/04tpqnr72 Harold Wood Hospital'),
(2574, 'https://ror.org/00shmxd32', 'en', 1, 'https://ror.org/00shmxd32 PBMA''s H.V. Desai Eye Hospital'),
(2575, 'https://ror.org/02jvh3a15', 'en', 1, 'https://ror.org/02jvh3a15 Diakonhjemmet Hospital'),
(2576, 'https://ror.org/04m8z4n60', 'en', 1, 'https://ror.org/04m8z4n60 Harris Health System'),
(2577, 'https://ror.org/03b2b5383', 'en', 1, 'https://ror.org/03b2b5383 Diana Princess of Wales Hospital'),
(2578, 'https://ror.org/01as10d06', 'en', 1, 'https://ror.org/01as10d06 Harrisburg Hospital'),
(2579, 'https://ror.org/05wfna922', 'tr', 1, 'https://ror.org/05wfna922 American Hospital Amerikan Hastanesi'),
(2580, 'https://ror.org/04z9zma62', 'en', 1, 'https://ror.org/04z9zma62 American Hospital Association'),
(2581, 'https://ror.org/00nrgkr20', 'it', 1, 'https://ror.org/00nrgkr20 Cattinara Hospital Ospedale di Cattinara'),
(2582, 'https://ror.org/001be0c19', 'en', 1, 'https://ror.org/001be0c19 Centennial Medical Center'),
(2583, 'https://ror.org/04e8mq383', 'en', 1, 'https://ror.org/04e8mq383 Hyogo Prefectural Amagasaki General Medical Center å…µåŗ«ēœŒē«‹å°¼å“Žē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2584, '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'),
(2585, 'https://ror.org/042ck3w97', 'en', 1, 'https://ror.org/042ck3w97 Hyogo Ion Beam Medical Center å…µåŗ«ēœŒē«‹ē²’å­ē·šåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2586, 'https://ror.org/003sw8164', 'en', 1, 'https://ror.org/003sw8164 Inland Hospital Sykehuset Innlandet'),
(2587, 'https://ror.org/00gw6hy83', 'en', 1, 'https://ror.org/00gw6hy83 Rotherham General Hospital'),
(2588, 'https://ror.org/03bg2rq25', 'en', 1, 'https://ror.org/03bg2rq25 American Public Health Association'),
(2589, 'https://ror.org/01pjjvq50', 'en', 1, 'https://ror.org/01pjjvq50 Eastbourne District General Hospital'),
(2590, 'https://ror.org/00tb6zr84', 'en', 1, 'https://ror.org/00tb6zr84 American School Health Association'),
(2591, 'https://ror.org/00w7dj406', 'en', 1, 'https://ror.org/00w7dj406 American Society of Health-System Pharmacists'),
(2592, 'https://ror.org/05ahq3q81', 'en', 1, 'https://ror.org/05ahq3q81 Amersham Hospital'),
(2593, 'https://ror.org/02jwg2f21', 'en', 1, 'https://ror.org/02jwg2f21 Hammerfest Hospital Hammerfest Sykehus'),
(2594, 'https://ror.org/05wqbqy84', 'en', 1, 'https://ror.org/05wqbqy84 Aminu Kano Teaching Hospital'),
(2595, 'https://ror.org/00w1fsg08', 'en', 1, 'https://ror.org/00w1fsg08 Hyogo Prefectural Awaji Medical Center å…µåŗ«ēœŒē«‹ę·”č·ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2596, 'https://ror.org/03044am22', 'en', 1, 'https://ror.org/03044am22 Harrogate District Hospital'),
(2597, 'https://ror.org/01a4gqp27', 'en', 1, 'https://ror.org/01a4gqp27 Harry S. Truman Memorial Veterans'' Hospital'),
(2598, 'https://ror.org/04xhnr923', 'no_lang_code', 1, 'https://ror.org/04xhnr923 Hyogo Prefectural Nishinomiya Hospital å…µåŗ«ēœŒē«‹č„æå®®ē—…é™¢'),
(2599, 'https://ror.org/058p1kn93', 'en', 1, 'https://ror.org/058p1kn93 VA Long Beach Healthcare System'),
(2600, 'https://ror.org/050fz5z96', 'en', 1, 'https://ror.org/050fz5z96 Washington DC VA Medical Center'),
(2601, 'https://ror.org/035khf156', 'en', 1, 'https://ror.org/035khf156 Hyogo Social Welfare Corporation å…µåŗ«ēœŒē«‹ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³äø­å¤®ē—…é™¢'),
(2602, 'https://ror.org/01z9vrt66', 'en', 1, 'https://ror.org/01z9vrt66 Okazaki City Hospital å²”å“Žåø‚ę°‘ē—…é™¢'),
(2603, 'https://ror.org/03y1rev40', 'en', 1, 'https://ror.org/03y1rev40 HyvinkƤƤ Hospital'),
(2604, 'https://ror.org/03t3qg659', 'en', 1, 'https://ror.org/03t3qg659 Substance Abuse and Mental Health Services Administration'),
(2605, 'https://ror.org/01fm87m50', 'en', 1, 'https://ror.org/01fm87m50 Rambam Health Care Campus ×Ø×ž×‘"ם - הקריה הרפואית ×œ×‘×Ø×™××•×Ŗ ×”××“×ā€Ž مؓفى رمبام'),
(2606, 'https://ror.org/00jjeh629', 'en', 1, 'https://ror.org/00jjeh629 Harvard–MIT Division of Health Sciences and Technology'),
(2607, 'https://ror.org/012bh1w56', 'fr', 1, 'https://ror.org/012bh1w56 HƓpital 20 Aoƻt'),
(2608, 'https://ror.org/01ew49p77', 'en', 1, 'https://ror.org/01ew49p77 Malcom Randall VA Medical Center'),
(2609, 'https://ror.org/02fkdpc07', 'fi', 1, 'https://ror.org/02fkdpc07 Kanta-HƤmeen Keskussairaala'),
(2610, 'https://ror.org/05wrpbp17', 'en', 1, 'https://ror.org/05wrpbp17 Andalusian School of Public Health Escuela Andaluza de Salud PĆŗblica'),
(2611, 'https://ror.org/03g8yqb46', 'fi', 1, 'https://ror.org/03g8yqb46 Keski-Pohjanmaan keskussairaala'),
(2612, 'https://ror.org/04gnvnd68', 'en', 1, 'https://ror.org/04gnvnd68 AnMed Health Medical Center'),
(2613, 'https://ror.org/00w81q081', 'fr', 1, 'https://ror.org/00w81q081 HƓpital Albert Calmette'),
(2614, 'https://ror.org/05kfvx519', 'fr', 1, 'https://ror.org/05kfvx519 HƓpital Albert Michallon'),
(2615, 'https://ror.org/008a4de11', 'en', 1, 'https://ror.org/008a4de11 Manhattan Eye, Ear and Throat Hospital'),
(2616, 'https://ror.org/05dzsmt79', 'no', 1, 'https://ror.org/05dzsmt79 Helse FĆørde'),
(2617, 'https://ror.org/04sq8k219', 'en', 1, 'https://ror.org/04sq8k219 University of Louisville Hospital'),
(2618, 'https://ror.org/043yy3r57', 'en', 1, 'https://ror.org/043yy3r57 Central India Institute of Medical Sciences'),
(2619, 'https://ror.org/010q6ek40', 'tr', 1, 'https://ror.org/010q6ek40 Haseki Eğitim ve Araştırma Hastanesi'),
(2620, 'https://ror.org/0511th722', 'fr', 1, 'https://ror.org/0511th722 HƓpital Albert-Chenevier'),
(2621, 'https://ror.org/03j6rvb05', 'fr', 1, 'https://ror.org/03j6rvb05 HƓpital Ambroise-ParƩ'),
(2622, 'https://ror.org/00nebyg34', 'en', 1, 'https://ror.org/00nebyg34 Central Maine Medical Center'),
(2623, 'https://ror.org/01d3gh658', 'en', 1, 'https://ror.org/01d3gh658 Centraal Militair Hospitaal Central Military Hospital'),
(2624, 'https://ror.org/02hy2mb20', 'no_lang_code', 1, 'https://ror.org/02hy2mb20 De Gezondheidsdienst voor Dieren'),
(2625, 'https://ror.org/0176x9269', 'no_lang_code', 1, 'https://ror.org/0176x9269 Hatyai Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø«ąø²ąø”ą¹ƒąø«ąøą¹ˆ'),
(2626, 'https://ror.org/01zbeej63', 'fi', 1, 'https://ror.org/01zbeej63 Keski-Satakunnan Terveydenhuollon kuntayhtymƤ'),
(2627, 'https://ror.org/02fsxgh46', 'fr', 1, 'https://ror.org/02fsxgh46 HƓpital l''Archet'),
(2628, 'https://ror.org/05jb57h29', 'en', 1, 'https://ror.org/05jb57h29 Hatanpaan Sairaala HatanpƤƤ Hospital'),
(2629, 'https://ror.org/0353q6p88', 'en', 1, 'https://ror.org/0353q6p88 Sydney South West Area Health Service'),
(2630, 'https://ror.org/01shhkn05', 'en', 1, 'https://ror.org/01shhkn05 East Orange VA Medical Center'),
(2631, 'https://ror.org/01n1j0f20', 'fr', 1, 'https://ror.org/01n1j0f20 HƓpital Aristide Le Dantec'),
(2632, 'https://ror.org/02dcp1550', 'en', 1, 'https://ror.org/02dcp1550 Central Texas Veterans Health Care System'),
(2633, 'https://ror.org/05c06ww48', 'no_lang_code', 1, 'https://ror.org/05c06ww48 Anjo Kosei Hospital å®‰åŸŽę›“ē”Ÿē—…é™¢'),
(2634, 'https://ror.org/03n6vs369', 'fr', 1, 'https://ror.org/03n6vs369 HƓpital Avicenne'),
(2635, 'https://ror.org/05dsgrz38', 'en', 1, 'https://ror.org/05dsgrz38 Hawaii Permanente Medical Group'),
(2636, 'https://ror.org/032p0xe91', 'no', 1, 'https://ror.org/032p0xe91 Privatsykehuset Haugesund'),
(2637, 'https://ror.org/00kmzyw28', 'tr', 1, 'https://ror.org/00kmzyw28 Ankara Atatürk Eğitim ve Araştırma Hastanesi'),
(2638, 'https://ror.org/00nsz0a92', 'en', 1, 'https://ror.org/00nsz0a92 Omaha VA Medical Center'),
(2639, 'https://ror.org/01v00e311', 'en', 1, 'https://ror.org/01v00e311 Hayashi Eye Hospital'),
(2640, 'https://ror.org/01pym8r61', 'en', 1, 'https://ror.org/01pym8r61 Centre for Research in Medical Entomology'),
(2641, 'https://ror.org/03vpd6e34', 'en', 1, 'https://ror.org/03vpd6e34 Hayatabad Medical Complex'),
(2642, 'https://ror.org/02mek6v69', 'fr', 1, 'https://ror.org/02mek6v69 HƓpital Bonnet'),
(2643, 'https://ror.org/03pdc2j75', 'tr', 1, 'https://ror.org/03pdc2j75 Haydarpaşa Numune Eğitim ve Araştırma Hastanesi'),
(2644, 'https://ror.org/013qdbe28', 'tr', 1, 'https://ror.org/013qdbe28 Ankara Numune Eğitim ve Araştırma Hastanesi'),
(2645, 'https://ror.org/04j0szy54', 'fr', 1, 'https://ror.org/04j0szy54 HƓpital Boucicaut'),
(2646, 'https://ror.org/01r05t925', 'tr', 1, 'https://ror.org/01r05t925 Ankara Onkoloji Eğitim ve Araştırma Hastanesi'),
(2647, 'https://ror.org/020rzx487', 'en', 1, 'https://ror.org/020rzx487 Sheba Medical Center'),
(2648, 'https://ror.org/00hwsxp30', 'tr', 1, 'https://ror.org/00hwsxp30 Ankara Fizik Tedavi ve Rehabilitasyon Eğitim ve Araştırma Hastanesi'),
(2649, 'https://ror.org/034dczg46', 'en', 1, 'https://ror.org/034dczg46 Chandka Medical College'),
(2650, 'https://ror.org/054e9ag92', 'en', 1, 'https://ror.org/054e9ag92 Chang Gung Children''s Hospital'),
(2651, 'https://ror.org/04g3stk86', 'sv', 1, 'https://ror.org/04g3stk86 LƤnssjukhuset i Kalmar'),
(2652, 'https://ror.org/018txrr13', 'en', 1, 'https://ror.org/018txrr13 VA Ann Arbor Healthcare System'),
(2653, 'https://ror.org/040m56689', 'hu', 1, 'https://ror.org/040m56689 Baranya Megyei KórhÔz'),
(2654, 'https://ror.org/045d4f586', 'tr', 1, 'https://ror.org/045d4f586 Ulucanlar Göz Eğitim ve Araştırma Hastanesi'),
(2655, 'https://ror.org/024xyyq03', 'en', 1, 'https://ror.org/024xyyq03 Nashville VA Medical Center'),
(2656, 'https://ror.org/01xqed412', 'en', 1, 'https://ror.org/01xqed412 Haywood Community Hospital'),
(2657, 'https://ror.org/03a6zw892', 'en', 1, 'https://ror.org/03a6zw892 Lurie Children''s Hospital'),
(2658, 'https://ror.org/0283k4z65', 'en', 1, 'https://ror.org/0283k4z65 Anne Arundel Medical Center'),
(2659, 'https://ror.org/0103dxn66', 'no_lang_code', 1, 'https://ror.org/0103dxn66 Shanghai Changzheng Hospital'),
(2660, 'https://ror.org/03gzyz068', 'it', 1, 'https://ror.org/03gzyz068 Ospedale Annunziata di Cosenza'),
(2661, 'https://ror.org/00ftebr67', 'en', 1, 'https://ror.org/00ftebr67 Wesley Medical Center'),
(2662, 'https://ror.org/02jygs973', 'en', 1, 'https://ror.org/02jygs973 Changes in Health Care Financing & Organization'),
(2663, 'https://ror.org/05d9dtr71', 'en', 1, 'https://ror.org/05d9dtr71 Changhua Christian Hospital'),
(2664, 'https://ror.org/039se3q37', 'en', 1, 'https://ror.org/039se3q37 County Hospital'),
(2665, 'https://ror.org/00ng6k310', 'en', 1, 'https://ror.org/00ng6k310 Chapel Allerton Hospital'),
(2666, 'https://ror.org/01ppcnz44', 'tr', 1, 'https://ror.org/01ppcnz44 Antalya Eğitim ve Araştırma Hastanesi'),
(2667, 'https://ror.org/02gcp3110', 'en', 1, 'https://ror.org/02gcp3110 Charing Cross Hospital'),
(2668, 'https://ror.org/000vg5909', 'en', 1, 'https://ror.org/000vg5909 Health & Medical Publishing Group'),
(2669, 'https://ror.org/03j2vsq41', 'en', 1, 'https://ror.org/03j2vsq41 Beijing Great Wall Hospital åŒ—äŗ¬åø‚é•æåŸŽåŒ»é™¢'),
(2670, 'https://ror.org/03am3jt82', 'sv', 1, 'https://ror.org/03am3jt82 Helsingborgs lasarett'),
(2671, 'https://ror.org/00bq8v746', 'no_lang_code', 1, 'https://ror.org/00bq8v746 Aomori Prefectural Central Hospital é’ę£®ēœŒē«‹äø­å¤®ē—…é™¢'),
(2672, 'https://ror.org/052dmyg58', 'en', 1, 'https://ror.org/052dmyg58 Greenville Memorial Hospital'),
(2673, 'https://ror.org/02f6ghw27', 'fr', 1, 'https://ror.org/02f6ghw27 HƓpital Charles-Nicolle'),
(2674, 'https://ror.org/00fc19b96', 'en', 1, 'https://ror.org/00fc19b96 Aomori Rosai Hospital é’ę£®åŠ“ē½ē—…é™¢'),
(2675, 'https://ror.org/02vfy4r65', 'en', 1, 'https://ror.org/02vfy4r65 Charleston Area Medical Center'),
(2676, 'https://ror.org/01ng1yh19', 'en', 1, 'https://ror.org/01ng1yh19 Charlie Norwood VA Medical Center'),
(2677, 'https://ror.org/02e5pan03', 'en', 1, 'https://ror.org/02e5pan03 Charlton Memorial Hospital'),
(2678, 'https://ror.org/04cs55d24', 'no_lang_code', 1, 'https://ror.org/04cs55d24 Charoenkrung Pracharak Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ą¹€ąøˆąø£ąø“ąøąøąø£ąøøąø‡ąø›ąø£ąø°ąøŠąø²ąø£ąø±ąøąø©ą¹Œ'),
(2679, 'https://ror.org/04j19h351', 'en', 1, 'https://ror.org/04j19h351 Chase Farm Hospital'),
(2680, 'https://ror.org/01wxddc07', 'en', 1, 'https://ror.org/01wxddc07 Katsushika Medical Center č‘›é£¾åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(2681, 'https://ror.org/02gj58768', 'en', 1, 'https://ror.org/02gj58768 Apollo Gleneagles Hospitals'),
(2682, 'https://ror.org/01dm04760', 'en', 1, 'https://ror.org/01dm04760 Lexington VA Health Care System'),
(2683, 'https://ror.org/05vxnmp88', 'en', 1, 'https://ror.org/05vxnmp88 Cheil General Hospital and Women''s Healthcare Center'),
(2684, 'https://ror.org/02ew45630', 'en', 1, 'https://ror.org/02ew45630 Apollo Hospitals'),
(2685, 'https://ror.org/01xtpc441', 'en', 1, 'https://ror.org/01xtpc441 Northport VA Medical Center'),
(2686, 'https://ror.org/05xdd0k85', 'en', 1, 'https://ror.org/05xdd0k85 Cheltenham General Hospital'),
(2687, 'https://ror.org/00kmzgn35', 'en', 1, 'https://ror.org/00kmzgn35 Hawke''s Bay Hospital'),
(2688, 'https://ror.org/05eqycp84', 'en', 1, 'https://ror.org/05eqycp84 Cheng Ching Hospital ę¾„ęø…ę¹–åŒ»é™¢'),
(2689, 'https://ror.org/00mz0c648', 'en', 1, 'https://ror.org/00mz0c648 Boise VA Medical Center'),
(2690, 'https://ror.org/014f77s28', 'en', 1, 'https://ror.org/014f77s28 Cheng Hsin General Hospital'),
(2691, 'https://ror.org/000vjzq57', 'en', 1, 'https://ror.org/000vjzq57 Memphis VA Medical Center'),
(2692, 'https://ror.org/045r80n66', 'en', 1, 'https://ror.org/045r80n66 Cincinnati VA Medical Center'),
(2693, 'https://ror.org/050mdr969', 'en', 1, 'https://ror.org/050mdr969 Kansas City VA Medical Center'),
(2694, 'https://ror.org/05k71ja87', 'en', 1, 'https://ror.org/05k71ja87 Statistics Canada Statistique Canada'),
(2695, 'https://ror.org/02bzkv281', 'en', 1, 'https://ror.org/02bzkv281 Chengde Medical University ę‰æå¾·åŒ»å­¦é™¢'),
(2696, 'https://ror.org/05rfh1r09', 'en', 1, 'https://ror.org/05rfh1r09 Aquatic Animal Health Research Laboratory'),
(2697, 'https://ror.org/01bk73674', 'en', 1, 'https://ror.org/01bk73674 Chengdu Military General Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ęˆéƒ½å†›åŒŗę€»åŒ»é™¢'),
(2698, 'https://ror.org/043qmbk61', 'en', 1, 'https://ror.org/043qmbk61 Arbor Research Collaborative for Health'),
(2699, 'https://ror.org/0396v4y86', 'fr', 1, 'https://ror.org/0396v4y86 HƓpital Louis Pradel'),
(2700, 'https://ror.org/02g1bg244', 'en', 1, 'https://ror.org/02g1bg244 Cheongju St. Mary''s Hospital 청주 성모 병원'),
(2701, 'https://ror.org/0403w5x31', 'en', 1, 'https://ror.org/0403w5x31 Guglielmo da Saliceto Hospital'),
(2702, 'https://ror.org/02qvqb543', 'no_lang_code', 1, 'https://ror.org/02qvqb543 Aretaeio Hospital'),
(2703, 'https://ror.org/00swtwf35', 'en', 1, 'https://ror.org/00swtwf35 Chest Diseases Hospital المستؓفى Ų§Ł„ŲµŲÆŲ±ŁŠ'),
(2704, 'https://ror.org/010md9d18', 'en', 1, 'https://ror.org/010md9d18 Oklahoma City VA Medical Center'),
(2705, 'https://ror.org/05fkq4848', 'fr', 1, 'https://ror.org/05fkq4848 HƓpital Civil, Strasbourg'),
(2706, 'https://ror.org/02wxcj895', 'en', 1, 'https://ror.org/02wxcj895 Chesterfield Royal Hospital'),
(2707, 'https://ror.org/00dt08z19', 'en', 1, 'https://ror.org/00dt08z19 Argyll and Bute Hospital'),
(2708, 'https://ror.org/04t23pb41', 'fr', 1, 'https://ror.org/04t23pb41 HƓpital Civil de Charleroi'),
(2709, 'https://ror.org/01smpj292', 'en', 1, 'https://ror.org/01smpj292 Arizona Department of Health Services'),
(2710, 'https://ror.org/02nren818', 'en', 1, 'https://ror.org/02nren818 Chestnut Hill Hospital'),
(2711, 'https://ror.org/02g02rq35', 'en', 1, 'https://ror.org/02g02rq35 Centers for Medicare and Medicaid Services'),
(2712, 'https://ror.org/02y2htg06', 'en', 1, 'https://ror.org/02y2htg06 Chi Mei Medical Center'),
(2713, 'https://ror.org/007xad319', 'en', 1, 'https://ror.org/007xad319 Gezondheidsraad The Health Council of the Netherlands'),
(2714, 'https://ror.org/040qrra89', 'en', 1, 'https://ror.org/040qrra89 G.V. (Sonny) Montgomery VA Medical Center'),
(2715, 'https://ror.org/054p2n359', 'en', 1, 'https://ror.org/054p2n359 Arkansas Department of Health'),
(2716, 'https://ror.org/055epge17', 'en', 1, 'https://ror.org/055epge17 Arkansas Foundation for Medical Care'),
(2717, 'https://ror.org/03nzj6y61', 'en', 1, 'https://ror.org/03nzj6y61 Health Net'),
(2718, 'https://ror.org/05n5drh21', 'en', 1, 'https://ror.org/05n5drh21 George E. Wahlen Department of VA Medical Center'),
(2719, 'https://ror.org/017m05e51', 'en', 1, 'https://ror.org/017m05e51 Health Policy Alternatives, Inc.'),
(2720, 'https://ror.org/049v7zy31', 'en', 1, 'https://ror.org/049v7zy31 Chiba Rosai Hospital åƒč‘‰åŠ“ē½ē—…é™¢'),
(2721, 'https://ror.org/052qqbc08', 'en', 1, 'https://ror.org/052qqbc08 Michael E. DeBakey VA Medical Center'),
(2722, 'https://ror.org/02wf9yg07', 'en', 1, 'https://ror.org/02wf9yg07 Chidicon Medical Center'),
(2723, 'https://ror.org/01xkzjp97', 'en', 1, 'https://ror.org/01xkzjp97 Health Promotion Board ę–°åŠ å”äæå„äæƒčæ›å±€'),
(2724, 'https://ror.org/04zgkpa58', 'en', 1, 'https://ror.org/04zgkpa58 Health Protection Scotland'),
(2725, 'https://ror.org/03a23ch04', 'en', 1, 'https://ror.org/03a23ch04 Health Protection Surveillance Centre LƔrionad Faire um Chosaint SlƔinte'),
(2726, 'https://ror.org/02q0qx558', 'en', 1, 'https://ror.org/02q0qx558 Health Resources Unlimited'),
(2727, 'https://ror.org/045g3sx57', 'en', 1, 'https://ror.org/045g3sx57 Armed Forces Capital Hospital åœ‹č»é¦–éƒ½ē—…é™¢ źµ­źµ°ģˆ˜ė„ė³‘ģ›'),
(2728, 'https://ror.org/02ybkn114', 'en', 1, 'https://ror.org/02ybkn114 Health Sciences Authority Penguasa Sains Kesihatan'),
(2729, 'https://ror.org/009szpe27', 'en', 1, 'https://ror.org/009szpe27 Armed Forces Health Surveillance Center'),
(2730, 'https://ror.org/046gme853', 'en', 1, 'https://ror.org/046gme853 Dandenong Hospital'),
(2731, 'https://ror.org/01zd7yk57', 'en', 1, 'https://ror.org/01zd7yk57 Louisville VA Medical Center'),
(2732, 'https://ror.org/03qjk6p58', 'en', 1, 'https://ror.org/03qjk6p58 Dayton VA Medical Center'),
(2733, 'https://ror.org/041m0cc93', 'en', 1, 'https://ror.org/041m0cc93 Providence VA Medical Center'),
(2734, 'https://ror.org/03ssyyt85', 'en', 1, 'https://ror.org/03ssyyt85 Ottawa County Health Department'),
(2735, 'https://ror.org/0176arq92', 'en', 1, 'https://ror.org/0176arq92 Milwaukee VA Medical Center'),
(2736, 'https://ror.org/01jn2rz36', 'fr', 1, 'https://ror.org/01jn2rz36 HƓpital de Jolimont'),
(2737, 'https://ror.org/05g6w6j42', 'en', 1, 'https://ror.org/05g6w6j42 Armed Forces Medical College ą“†ą“‚ą“”ąµ ą“«ąµ‹ą““ąµą“øą“øąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(2738, 'https://ror.org/034c6s521', 'en', 1, 'https://ror.org/034c6s521 Amarillo VA Health Care System'),
(2739, 'https://ror.org/01p01k535', 'en', 1, 'https://ror.org/01p01k535 Taoyuan Armed Forces General Hospital ę”ƒå›­ę­¦č£…éƒØé˜Ÿę€»åŒ»é™¢'),
(2740, 'https://ror.org/02q1nnh04', 'en', 1, 'https://ror.org/02q1nnh04 St. Cloud VA Health Care System'),
(2741, 'https://ror.org/059kfmf89', 'fr', 1, 'https://ror.org/059kfmf89 Centre hospitalier rƩgional de la Citadelle'),
(2742, 'https://ror.org/01s5r6w32', 'en', 1, 'https://ror.org/01s5r6w32 Central Arkansas Veterans Healthcare System'),
(2743, 'https://ror.org/03cfvmk82', 'en', 1, 'https://ror.org/03cfvmk82 VA Sierra Nevada Health Care System'),
(2744, 'https://ror.org/02hpatg29', 'en', 1, 'https://ror.org/02hpatg29 Fukuoka University Tsukushi Hospital ē¦å²”å¤§å­¦ē­‘ē“«ē—…é™¢'),
(2745, 'https://ror.org/00ky3az31', 'en', 1, 'https://ror.org/00ky3az31 VA Puget Sound Health Care System'),
(2746, 'https://ror.org/05x8jna23', 'fr', 1, 'https://ror.org/05x8jna23 HƓpital de La Grave'),
(2747, 'https://ror.org/03w0kj141', 'en', 1, 'https://ror.org/03w0kj141 Army Medical College'),
(2748, 'https://ror.org/02x0wmd77', 'en', 1, 'https://ror.org/02x0wmd77 St. John’s Health Sciences Centre'),
(2749, 'https://ror.org/00xb4cb83', 'en', 1, 'https://ror.org/00xb4cb83 Southern Arizona VA Health Care System'),
(2750, 'https://ror.org/03s5r4e84', 'en', 1, 'https://ror.org/03s5r4e84 VA NY Harbor Healthcare System'),
(2751, 'https://ror.org/000rs7940', 'fr', 1, 'https://ror.org/000rs7940 HƓpital de la Providence'),
(2752, 'https://ror.org/00paq4p43', 'en', 1, 'https://ror.org/00paq4p43 Bay Pines VA Healthcare System'),
(2753, 'https://ror.org/02a37xs76', 'en', 1, 'https://ror.org/02a37xs76 Health Services Academy'),
(2754, 'https://ror.org/04qmkfe11', 'en', 1, 'https://ror.org/04qmkfe11 VA St. Louis Health Care System'),
(2755, 'https://ror.org/05ts0bd12', 'en', 1, 'https://ror.org/05ts0bd12 VA Northern California Health Care System'),
(2756, 'https://ror.org/04dms0022', 'fr', 1, 'https://ror.org/04dms0022 HƓpital de la Tour'),
(2757, 'https://ror.org/00we60833', 'en', 1, 'https://ror.org/00we60833 Women''s & Children''s Health Research Institute'),
(2758, 'https://ror.org/02s7fkk92', 'es', 1, 'https://ror.org/02s7fkk92 Hospital Arnau de Vilanova'),
(2759, 'https://ror.org/03k8anr87', 'en', 1, 'https://ror.org/03k8anr87 Health South Rehabilitation Hospital'),
(2760, 'https://ror.org/0086ms749', 'en', 1, 'https://ror.org/0086ms749 Arnold Palmer Hospital for Children'),
(2761, 'https://ror.org/01x69an44', 'en', 1, 'https://ror.org/01x69an44 Children''s & Women''s Health Centre of British Columbia'),
(2762, 'https://ror.org/00jc57298', 'en', 1, 'https://ror.org/00jc57298 Central Baptist Hospital'),
(2763, 'https://ror.org/04sx7v519', 'fr', 1, 'https://ror.org/04sx7v519 HƓtel-Dieu de Lyon'),
(2764, 'https://ror.org/0291hsm26', 'en', 1, 'https://ror.org/0291hsm26 Asahikawa City Hospital åø‚ē«‹ę—­å·ē—…é™¢'),
(2765, 'https://ror.org/05myvb614', 'en', 1, 'https://ror.org/05myvb614 Miami VA Healthcare System'),
(2766, 'https://ror.org/04vnz0695', 'no_lang_code', 1, 'https://ror.org/04vnz0695 Asahikawa Kosei Hospital ę—­å·åŽšē”Ÿē—…é™¢'),
(2767, 'https://ror.org/01x5yfk91', 'en', 1, 'https://ror.org/01x5yfk91 HealthONE Spalding Rehabilitation Hospital'),
(2768, 'https://ror.org/00mj9k629', 'en', 1, 'https://ror.org/00mj9k629 Children''s Hospital Colorado'),
(2769, 'https://ror.org/055awd420', 'fr', 1, 'https://ror.org/055awd420 HƓpital de Sion'),
(2770, 'https://ror.org/02cc58y38', 'fr', 1, 'https://ror.org/02cc58y38 HƓpital Debrousse'),
(2771, 'https://ror.org/03vgqy581', 'no_lang_code', 1, 'https://ror.org/03vgqy581 Asahikawa University ę—­å·å¤§å­¦'),
(2772, 'https://ror.org/046yr0268', 'en', 1, 'https://ror.org/046yr0268 Heartland Regional Medical Center'),
(2773, 'https://ror.org/037m3rm63', 'en', 1, 'https://ror.org/037m3rm63 Japanese Red Cross Asahikawa Hospital ę—­å·čµ¤åå­—ē—…é™¢'),
(2774, 'https://ror.org/05g3m5c29', 'en', 1, 'https://ror.org/05g3m5c29 Asanogawa General Hospital ęµ…ćƒŽå·ē·åˆē—…é™¢'),
(2775, 'https://ror.org/00eg8ch54', 'en', 1, 'https://ror.org/00eg8ch54 Hebrew Hospital'),
(2776, 'https://ror.org/056p2ex35', 'en', 1, 'https://ror.org/056p2ex35 Asir Central Hospital مستؓفى عسير Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(2777, 'https://ror.org/0445ctr76', 'fr', 1, 'https://ror.org/0445ctr76 HƓpital des Diaconesses'),
(2778, 'https://ror.org/04dhg0348', 'en', 1, 'https://ror.org/04dhg0348 Heidelberg Repatriation Hospital'),
(2779, 'https://ror.org/04330ze25', 'en', 1, 'https://ror.org/04330ze25 Ashford Hospital'),
(2780, 'https://ror.org/02etexs15', 'en', 1, 'https://ror.org/02etexs15 Children''s Hospital of New Orleans'),
(2781, 'https://ror.org/01vqqz948', 'fr', 1, 'https://ror.org/01vqqz948 Hopital Universitaire Hedi Chaker المستؓفى Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ بصفاقس'),
(2782, 'https://ror.org/0093xcb35', 'en', 1, 'https://ror.org/0093xcb35 Ashikaga Red Cross Hospital č¶³åˆ©čµ¤åå­—ē—…é™¢'),
(2783, 'https://ror.org/05nyenj39', 'de', 1, 'https://ror.org/05nyenj39 Asklepios Hospital Barmbek Asklepios Klinik Barmbek'),
(2784, 'https://ror.org/02jzt8c33', 'en', 1, 'https://ror.org/02jzt8c33 Children''s Hospital of Winnipeg'),
(2785, 'https://ror.org/03qrkhd32', 'en', 1, 'https://ror.org/03qrkhd32 Heilongjiang Provincial Hospital é»‘é¾™ę±ŸēœåŒ»é™¢'),
(2786, 'https://ror.org/03r6qg857', 'en', 1, 'https://ror.org/03r6qg857 Cambridge Hospital'),
(2787, 'https://ror.org/02k4w3g59', 'en', 1, 'https://ror.org/02k4w3g59 Helen Hayes Hospital'),
(2788, 'https://ror.org/02722hp10', 'no_lang_code', 1, 'https://ror.org/02722hp10 Assaf Harofeh Medical Center'),
(2789, 'https://ror.org/05mshxb09', 'en', 1, 'https://ror.org/05mshxb09 Sheffield Children''s Hospital'),
(2790, 'https://ror.org/02w4p5q74', 'en', 1, 'https://ror.org/02w4p5q74 Assam Medical College অসম ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(2791, 'https://ror.org/00kg66g91', 'en', 1, 'https://ror.org/00kg66g91 Women & Children''s Hospital of Buffalo'),
(2792, 'https://ror.org/05nygae07', 'pl', 1, 'https://ror.org/05nygae07 Okręgowy Szpital Kolejowy'),
(2793, 'https://ror.org/02c8npj93', 'en', 1, 'https://ror.org/02c8npj93 General-Maternity District Hospital Helena Venizelou Ī ĪµĻĪ¹Ļ†ĪµĻĪµĪ¹Ī±ĪŗĻŒ Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ - ĪœĪ±Ī¹ĪµĻ…Ļ„Ī®ĻĪ¹Īæ - "Ī•Ī›Ī•ĪĪ‘ Ī’Ī•ĪĪ™Ī–Ī•Ī›ĪŸĪ„"'),
(2794, 'https://ror.org/00t3s0v26', 'en', 1, 'https://ror.org/00t3s0v26 Lok Nayak Jai Prakash Narayan Hospital'),
(2795, 'https://ror.org/01bkdwe73', 'pt', 1, 'https://ror.org/01bkdwe73 Hospital Heliópolis'),
(2796, 'https://ror.org/01qc48765', 'en', 1, 'https://ror.org/01qc48765 Association of Academic Health Centers'),
(2797, 'https://ror.org/05sk0a617', 'en', 1, 'https://ror.org/05sk0a617 Association of Schools of Allied Health Professions'),
(2798, 'https://ror.org/00zzcmy73', 'en', 1, 'https://ror.org/00zzcmy73 Hellenic Red Cross Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒĻ‚ Ī•ĻĻ…ĪøĻĻŒĻ‚ Ī£Ļ„Ī±Ļ…ĻĻŒĻ‚'),
(2799, 'https://ror.org/04qkymg17', 'no_lang_code', 1, 'https://ror.org/04qkymg17 Assuta Medical Center אהותא ×ž×Ø×›×–×™× ×Ø×¤×•××™×™×'),
(2800, 'https://ror.org/01wx86652', 'en', 1, 'https://ror.org/01wx86652 Astley Ainslie Hospital'),
(2801, 'https://ror.org/009at8f10', 'fr', 1, 'https://ror.org/009at8f10 HƓpital Laveran'),
(2802, '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'),
(2803, 'https://ror.org/043ek5g31', 'en', 1, 'https://ror.org/043ek5g31 Henan Cancer Hospital ę²³å—ēœč‚æē˜¤åŒ»é™¢'),
(2804, 'https://ror.org/02tj04e91', 'en', 1, 'https://ror.org/02tj04e91 Sydney Children''s Hospital'),
(2805, 'https://ror.org/04d8ymc03', 'en', 1, 'https://ror.org/04d8ymc03 Doai Memorial Hospital åŒę„›čØ˜åæµē—…é™¢'),
(2806, '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'),
(2807, 'https://ror.org/05azzyk65', 'en', 1, 'https://ror.org/05azzyk65 Piedmont Athens Regional'),
(2808, 'https://ror.org/03hwe2705', 'en', 1, 'https://ror.org/03hwe2705 UCSF Benioff Children''s Hospital'),
(2809, 'https://ror.org/0031afh91', 'en', 1, 'https://ror.org/0031afh91 Henan Provincial Institute of Occupational Health čŒäøšå„åŗ·ę²³å—ēœē ”ē©¶ę‰€'),
(2810, 'https://ror.org/044hb6b32', 'fr', 1, 'https://ror.org/044hb6b32 HƓpital des Enfants'),
(2811, 'https://ror.org/00njz5525', 'en', 1, 'https://ror.org/00njz5525 Juravinski Hospital'),
(2812, 'https://ror.org/001hz0050', 'en', 1, 'https://ror.org/001hz0050 Capital Regional District'),
(2813, 'https://ror.org/01k7a6660', 'en', 1, 'https://ror.org/01k7a6660 Hennepin County Medical Center'),
(2814, 'https://ror.org/01smmxq73', 'en', 1, 'https://ror.org/01smmxq73 Doctors Hospital'),
(2815, 'https://ror.org/03ja8fa88', 'en', 1, 'https://ror.org/03ja8fa88 Doctors Hospital'),
(2816, 'https://ror.org/05sgxk616', 'en', 1, 'https://ror.org/05sgxk616 Doctors Medical Center'),
(2817, 'https://ror.org/03xbkmz44', 'en', 1, 'https://ror.org/03xbkmz44 Athens Naval & Veterans Hospital ĪĪ±Ļ…Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(2818, 'https://ror.org/04z89xx32', 'en', 1, 'https://ror.org/04z89xx32 Atlanta VA Medical Center'),
(2819, 'https://ror.org/05v7jp327', 'en', 1, 'https://ror.org/05v7jp327 Atlanta Medical Center'),
(2820, 'https://ror.org/049w1th24', 'en', 1, 'https://ror.org/049w1th24 Doernbecher Children''s Hospital'),
(2821, 'https://ror.org/03vdj0f87', 'en', 1, 'https://ror.org/03vdj0f87 AtlantiCare'),
(2822, 'https://ror.org/05rmxkq05', 'en', 1, 'https://ror.org/05rmxkq05 Dominican Hospital'),
(2823, 'https://ror.org/04j36h363', 'en', 1, 'https://ror.org/04j36h363 Children''s Hospital & Medical Center'),
(2824, 'https://ror.org/01jhsfg10', 'pt', 1, 'https://ror.org/01jhsfg10 Hospital de Dona Estefânia'),
(2825, 'https://ror.org/05jyavm62', 'en', 1, 'https://ror.org/05jyavm62 Henrico Doctors'' Hospital'),
(2826, 'https://ror.org/02jz99c72', 'en', 1, 'https://ror.org/02jz99c72 Atlantic Health System'),
(2827, 'https://ror.org/04wpkfc35', 'fr', 1, 'https://ror.org/04wpkfc35 HƓpital d''Instruction des ArmƩes Sainte-Anne'),
(2828, 'https://ror.org/0367sye10', 'nl', 1, 'https://ror.org/0367sye10 Atrium Medisch Centrum Parkstad'),
(2829, 'https://ror.org/049hmfa48', 'en', 1, 'https://ror.org/049hmfa48 Henry Mayo Newhall Memorial Hospital'),
(2830, 'https://ror.org/054zbmd26', 'en', 1, 'https://ror.org/054zbmd26 Hera General Hospital'),
(2831, 'https://ror.org/04hzs7842', 'fr', 1, 'https://ror.org/04hzs7842 Centre Hospitalier Edmond Garcin'),
(2832, 'https://ror.org/00fthae95', 'en', 1, 'https://ror.org/00fthae95 Daping Hospital ē¬¬äø‰å†›åŒ»å¤§å­¦å¤§åŖåŒ»é™¢'),
(2833, 'https://ror.org/0511yej17', 'en', 1, 'https://ror.org/0511yej17 Dartmouth Institute for Health Policy and Clinical Practice'),
(2834, 'https://ror.org/00xznf773', 'en', 1, 'https://ror.org/00xznf773 Auburn Community Hospital'),
(2835, 'https://ror.org/04d45ra64', 'fr', 1, 'https://ror.org/04d45ra64 HƓpital du Hasenrain'),
(2836, 'https://ror.org/05328fn02', 'en', 1, 'https://ror.org/05328fn02 Hermanos Ameijeiras Hospital Hospital ClĆ­nico QuirĆŗrgico "Hermanos Ameijeiras"'),
(2837, 'https://ror.org/037v8w471', 'en', 1, 'https://ror.org/037v8w471 Memorial Hermann Institute for Rehabilitation and Research Foundation'),
(2838, 'https://ror.org/04sh9kd82', 'en', 1, 'https://ror.org/04sh9kd82 Starship Children''s Health'),
(2839, 'https://ror.org/02ckh3s34', 'da', 1, 'https://ror.org/02ckh3s34 Herning Regional Hospital Regionshospitalet Herning'),
(2840, 'https://ror.org/01735bk60', 'sv', 1, 'https://ror.org/01735bk60 Gƶteborgs barnsjukhus'),
(2841, 'https://ror.org/05aykvr94', 'de', 1, 'https://ror.org/05aykvr94 Augusta Krankenhaus'),
(2842, 'https://ror.org/0285m5c69', 'nl', 1, 'https://ror.org/0285m5c69 De Wever-Ziekenhuis'),
(2843, 'https://ror.org/0431v1017', 'fr', 1, 'https://ror.org/0431v1017 HƓpital Riviera-Chablais'),
(2844, 'https://ror.org/0240cjw65', 'fr', 1, 'https://ror.org/0240cjw65 Polyclinique de Bordeaux-Tondu'),
(2845, 'https://ror.org/0511k4970', 'en', 1, 'https://ror.org/0511k4970 Children''s Hospital أطفال مستؓفى ŲŖŁˆŁ†Ų³'),
(2846, 'https://ror.org/0364a8z71', 'tr', 1, 'https://ror.org/0364a8z71 Denizli Devlet Hastanesi Denizli State Hospital'),
(2847, 'https://ror.org/02jn27q49', 'en', 1, 'https://ror.org/02jn27q49 Riverview Psychiatric Center'),
(2848, 'https://ror.org/05dfdta49', 'en', 1, 'https://ror.org/05dfdta49 Aultman Health Foundation'),
(2849, 'https://ror.org/017383496', 'en', 1, 'https://ror.org/017383496 Aultman Hospital'),
(2850, 'https://ror.org/03jg32m15', 'en', 1, 'https://ror.org/03jg32m15 Dorothea Dix Hospital'),
(2851, 'https://ror.org/00wtgx181', 'en', 1, 'https://ror.org/00wtgx181 Highland Hospital'),
(2852, 'https://ror.org/00enq8e33', 'en', 1, 'https://ror.org/00enq8e33 Aurelia Hospital'),
(2853, 'https://ror.org/00z9qkg54', 'en', 1, 'https://ror.org/00z9qkg54 Highland Hospital'),
(2854, 'https://ror.org/05tta9908', 'de', 1, 'https://ror.org/05tta9908 Children''s Hospital in Eastern Switzerland Ostschweizer Kinderspital'),
(2855, 'https://ror.org/04d5w7479', 'en', 1, 'https://ror.org/04d5w7479 Aurora Health Care'),
(2856, 'https://ror.org/04fc1dc24', 'en', 1, 'https://ror.org/04fc1dc24 Dorset County Hospital'),
(2857, 'https://ror.org/04760qd13', 'tr', 1, 'https://ror.org/04760qd13 GATA Haydarpaşa Eğitim Hastanesi'),
(2858, 'https://ror.org/01a6tsm75', 'en', 1, 'https://ror.org/01a6tsm75 Hillel Yaffe Medical Center'),
(2859, 'https://ror.org/02s8znz42', 'fr', 1, 'https://ror.org/02s8znz42 Centre Hospitalier de Mulhouse'),
(2860, 'https://ror.org/049cbmb74', 'en', 1, 'https://ror.org/049cbmb74 Children''s Hospital of Wisconsin'),
(2861, 'https://ror.org/01tcy5w98', 'no_lang_code', 1, 'https://ror.org/01tcy5w98 Aurum Institute'),
(2862, 'https://ror.org/00sqp6g97', 'fr', 1, 'https://ror.org/00sqp6g97 Centre hospitalier Emile Roux'),
(2863, 'https://ror.org/02mby1820', 'it', 1, 'https://ror.org/02mby1820 Azienda USL di Bologna'),
(2864, 'https://ror.org/00jpae132', 'en', 1, 'https://ror.org/00jpae132 Hillingdon Hospital'),
(2865, 'https://ror.org/00zz54311', 'en', 1, 'https://ror.org/00zz54311 Australian Centre for Sexual Health'),
(2866, 'https://ror.org/00274we69', 'no_lang_code', 1, 'https://ror.org/00274we69 Himchan Hospital ė¶€ķ‰ ķž˜ģ°¬ė³‘ģ›'),
(2867, 'https://ror.org/037767x92', 'en', 1, 'https://ror.org/037767x92 Himeji Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē—…é™¢ę©Ÿę§‹ å§«č·ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2868, 'https://ror.org/047sehh14', 'en', 1, 'https://ror.org/047sehh14 Himeji Red Cross Hospital å§«č·Æčµ¤åå­—ē—…é™¢'),
(2869, 'https://ror.org/058td2q88', 'fr', 1, 'https://ror.org/058td2q88 HƓpital Foch'),
(2870, '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'),
(2871, 'https://ror.org/01nj4ek07', 'en', 1, 'https://ror.org/01nj4ek07 Hinchingbrooke Hospital'),
(2872, 'https://ror.org/00fgdyv87', 'no_lang_code', 1, 'https://ror.org/00fgdyv87 Hindu Rao Hospital'),
(2873, 'https://ror.org/056mx1477', 'en', 1, 'https://ror.org/056mx1477 Children''s Hospital at Dartmouth Hitchcock'),
(2874, 'https://ror.org/021wsw395', 'fr', 1, 'https://ror.org/021wsw395 HƓpital Fontmaure'),
(2875, 'https://ror.org/00aff0y51', 'tr', 1, 'https://ror.org/00aff0y51 Dr. BehƧet Uz Ƈocuk Hastalıkları Hastanesi'),
(2876, 'https://ror.org/0382m3r69', 'en', 1, 'https://ror.org/0382m3r69 Dr Gray''s Hospital'),
(2877, 'https://ror.org/03n0fp725', 'en', 1, 'https://ror.org/03n0fp725 Children''s Hospital at Montefiore'),
(2878, 'https://ror.org/01c2wzp81', 'tr', 1, 'https://ror.org/01c2wzp81 Dr Lütfi Kırdar Kartal Eğitim ve Araştırma Hastanesi'),
(2879, 'https://ror.org/05nter171', 'en', 1, 'https://ror.org/05nter171 Avera Health'),
(2880, 'https://ror.org/01dsy9055', 'en', 1, 'https://ror.org/01dsy9055 University Hospital Ayr'),
(2881, 'https://ror.org/05aqcx827', 'en', 1, 'https://ror.org/05aqcx827 Ayrshire Central Hospital'),
(2882, 'https://ror.org/05v5wwy67', 'en', 1, 'https://ror.org/05v5wwy67 Hippocration General Hospital Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½ Ιπποκράτειο'),
(2883, 'https://ror.org/005s69p38', 'it', 1, 'https://ror.org/005s69p38 Azienda Ospedaliera Ospedale San Carlo Borromeo'),
(2884, 'https://ror.org/02m5e3762', 'no_lang_code', 1, 'https://ror.org/02m5e3762 Dr. Balabhai Nanavati Hospital'),
(2885, 'https://ror.org/05et9pf90', 'en', 1, 'https://ror.org/05et9pf90 B.P. Koirala Institute of Health Sciences ą¤µą¤æą¤Ŗą„€ ą¤•ą„‹ą¤‡ą¤°ą¤¾ą¤²ą¤¾ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(2886, 'https://ror.org/02w35z347', 'fr', 1, 'https://ror.org/02w35z347 HƓpital Gui de Chauliac'),
(2887, 'https://ror.org/021aj5d10', 'en', 1, 'https://ror.org/021aj5d10 Dr. R. Ahmed Dental College and Hospital ঔাঃ আর আহমেদ ą¦”ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ ও হাসপাতাল'),
(2888, 'https://ror.org/0408b4j80', 'en', 1, 'https://ror.org/0408b4j80 B.J. Medical College'),
(2889, 'https://ror.org/03wg58p93', 'en', 1, 'https://ror.org/03wg58p93 Hamilton Medical Center'),
(2890, 'https://ror.org/02rw2zs46', 'en', 1, 'https://ror.org/02rw2zs46 Bai Jerbai Wadia Hospital for Children'),
(2891, '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'),
(2892, 'https://ror.org/05nmzkr23', 'en', 1, 'https://ror.org/05nmzkr23 Bankura Sammilani Medical College বাঁকুঔ়া ą¦øą¦®ą§ą¦®ą¦æą¦²ą¦Øą§€ ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ'),
(2893, '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'),
(2894, 'https://ror.org/05mgn5w61', 'no_lang_code', 1, 'https://ror.org/05mgn5w61 Hiraka General Hospital å¹³é¹æē·åˆē—…é™¢'),
(2895, 'https://ror.org/01k22c722', 'en', 1, 'https://ror.org/01k22c722 Dr. V. M. Government Medical College ą¤”ą„‰. ą¤µą„ˆą¤¶ą¤‚ą¤Ŗą¤¾ą¤Æą¤Ø ą¤øą„ą¤®ą„ƒą¤¤ą„€ ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2896, 'https://ror.org/00hw84d70', 'en', 1, 'https://ror.org/00hw84d70 Baba Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗćƒšć‚¬ć‚µć‚¹ é¦¬å “čØ˜åæµē—…é™¢'),
(2897, 'https://ror.org/05wvk1430', 'en', 1, 'https://ror.org/05wvk1430 Municipal Hirakata City Hospital åø‚ē«‹ęžšę–¹åø‚ę°‘ē—…é™¢'),
(2898, 'https://ror.org/026qp7597', 'tr', 1, 'https://ror.org/026qp7597 Zekai Tahir Burak Kadın Sağlığı Eğitim ve Araştırma Hastanesi'),
(2899, 'https://ror.org/00ceh2v36', 'en', 1, 'https://ror.org/00ceh2v36 Hiratsuka City Hospital å¹³å”šåø‚ę°‘ē—…é™¢'),
(2900, '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'),
(2901, 'https://ror.org/01x3f1613', 'en', 1, 'https://ror.org/01x3f1613 Driscoll Children''s Hospital'),
(2902, 'https://ror.org/01r0bpx56', 'no_lang_code', 1, 'https://ror.org/01r0bpx56 Hiratsuka Kyosai Hospital å¹³å”šå…±ęøˆē—…é™¢'),
(2903, 'https://ror.org/03qrrp624', 'en', 1, 'https://ror.org/03qrrp624 Hirosaki National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹å¼˜å‰ē—…é™¢'),
(2904, 'https://ror.org/04pag4b70', 'fr', 1, 'https://ror.org/04pag4b70 HƓpital Jean-Verdier'),
(2905, 'https://ror.org/011as4z76', 'fr', 1, 'https://ror.org/011as4z76 Centre Hospitalier Jean-Rostand'),
(2906, 'https://ror.org/03ephvw84', 'en', 1, 'https://ror.org/03ephvw84 Dronning Ingrids Hospital Queen Ingrid''s Hospital'),
(2907, 'https://ror.org/01hkncq81', 'en', 1, 'https://ror.org/01hkncq81 Hiroshima City Asa Citizens Hospital åŗƒå³¶åø‚ē«‹å®‰ä½åø‚ę°‘ē—…é™¢'),
(2908, 'https://ror.org/04qgcgz06', 'en', 1, 'https://ror.org/04qgcgz06 University Hospital of North Durham'),
(2909, 'https://ror.org/013s4zk47', 'en', 1, 'https://ror.org/013s4zk47 Hiroshima General Hospital åŗƒå³¶ē·åˆē—…é™¢'),
(2910, 'https://ror.org/04x27ad97', 'en', 1, 'https://ror.org/04x27ad97 Baby Memorial Hospital');
INSERT INTO `rors` VALUES
(2911, 'https://ror.org/04czxss33', 'en', 1, 'https://ror.org/04czxss33 Dubai Hospital مستؓفى ŲÆŲØŁ€Ł€Ł€ŁŠ'),
(2912, 'https://ror.org/05ecec111', 'en', 1, 'https://ror.org/05ecec111 Bįŗ”ch Mai Hospital Bệnh viện Bįŗ”ch Mai'),
(2913, 'https://ror.org/0282qcz50', 'en', 1, 'https://ror.org/0282qcz50 Children''s Hospital of Orange County'),
(2914, 'https://ror.org/01dcrt245', 'en', 1, 'https://ror.org/01dcrt245 Dubai Health Authority Ł‡ŁŠŲ¦Ų© الصحة بدبي'),
(2915, 'https://ror.org/010gpfc02', 'no', 1, 'https://ror.org/010gpfc02 BƦrum Sykehus'),
(2916, 'https://ror.org/01xq02v66', 'en', 1, 'https://ror.org/01xq02v66 Hasbro Children''s Hospital'),
(2917, 'https://ror.org/03w11wq45', 'es', 1, 'https://ror.org/03w11wq45 El Hospital General de Agudos Carlos G. Durand'),
(2918, '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'),
(2919, 'https://ror.org/029gprt07', 'en', 1, 'https://ror.org/029gprt07 Dunedin Public Hospital'),
(2920, 'https://ror.org/01rrd4612', 'no_lang_code', 1, 'https://ror.org/01rrd4612 Hiroshima Prefectural Hospital ēœŒē«‹åŗƒå³¶ē—…é™¢'),
(2921, 'https://ror.org/05kxrms28', 'hu', 1, 'https://ror.org/05kxrms28 Bajcsy-Zsilinszky KórhĆ”z Ć©s RendelőintĆ©zet'),
(2922, 'https://ror.org/04a20gb33', 'en', 1, 'https://ror.org/04a20gb33 Hispanic Health Council'),
(2923, 'https://ror.org/02smkcg51', 'tr', 1, 'https://ror.org/02smkcg51 Bakırköy Dr.Sadi Konuk Eğitim ve Araştırma Hastanesi'),
(2924, 'https://ror.org/03sc99320', 'en', 1, 'https://ror.org/03sc99320 Hitachi General Hospital ę—„ē«‹ē·åˆē—…é™¢'),
(2925, 'https://ror.org/03vnj0h28', 'en', 1, 'https://ror.org/03vnj0h28 Duke Children''s Hospital & Health Center'),
(2926, 'https://ror.org/05087r129', 'en', 1, 'https://ror.org/05087r129 Hizen Psychiatric Center č‚„å‰ē²¾ē„žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2927, 'https://ror.org/006f92m60', 'en', 1, 'https://ror.org/006f92m60 Duchess of Kent Children''s Hospital å¤§å£ē’°ę ¹å¾·å…¬ēˆµå¤«äŗŗå…’ē«„é†«é™¢'),
(2928, 'https://ror.org/05qmk4a18', 'en', 1, 'https://ror.org/05qmk4a18 Bangalore Medical College and Research Institute ಬೆಂಗಳೂರು ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(2929, 'https://ror.org/044ycg712', 'it', 1, 'https://ror.org/044ycg712 Ospedale dei Bambini Vittore Buzzi'),
(2930, 'https://ror.org/04ap0ew90', 'no_lang_code', 1, 'https://ror.org/04ap0ew90 Hlabisa Hospital'),
(2931, 'https://ror.org/008dmmd16', 'fr', 1, 'https://ror.org/008dmmd16 HƓpital Ophtalmique Jules-Gonin'),
(2932, 'https://ror.org/00t1xpx62', 'fr', 1, 'https://ror.org/00t1xpx62 HƓpital Kirchberg'),
(2933, 'https://ror.org/02ndk3y82', 'en', 1, 'https://ror.org/02ndk3y82 Children''s Medical Center'),
(2934, 'https://ror.org/00gffbx54', 'fr', 1, 'https://ror.org/00gffbx54 HĆ“pital La Rabta المستؓفى Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ الرابطة'),
(2935, 'https://ror.org/014ttpa29', 'en', 1, 'https://ror.org/014ttpa29 Bangour Village Hospital'),
(2936, 'https://ror.org/04ckvpk15', 'fr', 1, 'https://ror.org/04ckvpk15 HƓpital Laennec'),
(2937, 'https://ror.org/03j808814', 'no_lang_code', 1, 'https://ror.org/03j808814 Hokkaido Central Hospital åŒ—ęµ·é“äø­å¤®ē—…é™¢'),
(2938, 'https://ror.org/050hwd209', 'en', 1, 'https://ror.org/050hwd209 Hokkaido Institute of Public Health åŒ—ęµ·é“ē«‹č”›ē”Ÿē ”ē©¶ę‰€'),
(2939, 'https://ror.org/01v27vf29', 'en', 1, 'https://ror.org/01v27vf29 Children''s Medical Center'),
(2940, 'https://ror.org/05ct0ag17', 'en', 1, 'https://ror.org/05ct0ag17 Banner Estrella Medical Center'),
(2941, 'https://ror.org/04gjkkf30', 'en', 1, 'https://ror.org/04gjkkf30 Banner Sun Health Research Institute'),
(2942, 'https://ror.org/03f1ecr94', 'en', 1, 'https://ror.org/03f1ecr94 Saint Thomas Midtown Hospital'),
(2943, 'https://ror.org/019s1t671', 'en', 1, 'https://ror.org/019s1t671 Montgomery County Department of Health and Human Services'),
(2944, 'https://ror.org/000pfrh90', 'en', 1, 'https://ror.org/000pfrh90 Baptist Hospital of Miami'),
(2945, 'https://ror.org/02pb9wz46', 'fr', 1, 'https://ror.org/02pb9wz46 HƓpital LƩon BƩrard'),
(2946, 'https://ror.org/054bptx32', 'fr', 1, 'https://ror.org/054bptx32 HƓpital Maison Blanche'),
(2947, 'https://ror.org/05d6v2h63', 'fr', 1, 'https://ror.org/05d6v2h63 HƓpital Manchester'),
(2948, 'https://ror.org/03kpa7r53', 'en', 1, 'https://ror.org/03kpa7r53 Herttoniemi Hospital'),
(2949, 'https://ror.org/03a1rt493', 'en', 1, 'https://ror.org/03a1rt493 KƤtilƶopisto Maternity Hospital'),
(2950, 'https://ror.org/05vp5x049', 'en', 1, 'https://ror.org/05vp5x049 Children''s Hospital of Richmond at VCU'),
(2951, 'https://ror.org/03fvyqb23', 'en', 1, 'https://ror.org/03fvyqb23 Baptist Health Louisville'),
(2952, 'https://ror.org/007sp7t15', 'en', 1, 'https://ror.org/007sp7t15 INTEGRIS Baptist Medical Center'),
(2953, 'https://ror.org/017t1dh18', 'fr', 1, 'https://ror.org/017t1dh18 HƓpital Max Fourestier'),
(2954, 'https://ror.org/037ybm139', 'en', 1, 'https://ror.org/037ybm139 Baptist Medical Center Jacksonville'),
(2955, 'https://ror.org/03mehsr39', 'en', 1, 'https://ror.org/03mehsr39 Hokushin General Hospital åŒ—äæ”ē·åˆē—…é™¢'),
(2956, 'https://ror.org/02x0hgx61', 'fr', 1, 'https://ror.org/02x0hgx61 HƓpital Militaire Moulay Ismail'),
(2957, 'https://ror.org/013qhbw17', 'fr', 1, 'https://ror.org/013qhbw17 HƓpital Mongi Slim'),
(2958, 'https://ror.org/0004gzs06', 'en', 1, 'https://ror.org/0004gzs06 Hokuyukai Neurology Hospital åŒ»ē™‚ę³•äŗŗåŒ—ē„ä¼š åŒ—ē„ä¼šē„žēµŒå†…ē§‘ē—…é™¢'),
(2959, 'https://ror.org/05xtmzc93', 'en', 1, 'https://ror.org/05xtmzc93 Baptist Medical Center Beaches'),
(2960, 'https://ror.org/01z3j3n30', 'en', 1, 'https://ror.org/01z3j3n30 Schneider Children''s Medical Center'),
(2961, 'https://ror.org/03navsr28', 'fr', 1, 'https://ror.org/03navsr28 HÓpital Mère-Enfant'),
(2962, 'https://ror.org/05xtj6g89', 'en', 1, 'https://ror.org/05xtj6g89 Baptist Memorial Hospital'),
(2963, 'https://ror.org/055k2e754', 'en', 1, 'https://ror.org/055k2e754 Baltimore County Department of Health'),
(2964, 'https://ror.org/02ssjh827', 'en', 1, 'https://ror.org/02ssjh827 HƓpital National de Niamey National Hospital Niamey'),
(2965, 'https://ror.org/008x85y42', 'no_lang_code', 1, 'https://ror.org/008x85y42 Hospital Bqyhallh ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ŲØŁ‚ŪŒŲ©Ų§Ł„Ł„Ł‡'),
(2966, 'https://ror.org/02g48bh60', 'en', 1, 'https://ror.org/02g48bh60 Chris Hani Baragwanath Hospital'),
(2967, 'https://ror.org/00skrw306', 'en', 1, 'https://ror.org/00skrw306 Colorado Department of Human Services'),
(2968, 'https://ror.org/048zq6v82', 'en', 1, 'https://ror.org/048zq6v82 Children''s Research Hospital å°å…ē ”ē©¶ē—…é™¢'),
(2969, 'https://ror.org/01q046q46', 'fr', 1, 'https://ror.org/01q046q46 HƓpital Pierre Wertheimer'),
(2970, 'https://ror.org/0429d0v34', 'en', 1, 'https://ror.org/0429d0v34 China Animal Health and Epidemiology Center äø­å›½åŠØē‰©å«ē”ŸäøŽęµč”Œē—…å­¦äø­åæƒ'),
(2971, 'https://ror.org/01znbfh26', 'fi', 1, 'https://ror.org/01znbfh26 Forssan Seudun Terveydenhuollon KuntayhtymƤ'),
(2972, 'https://ror.org/02hp4jd32', 'en', 1, 'https://ror.org/02hp4jd32 Summa Barberton Hospital'),
(2973, 'https://ror.org/022vd9g66', 'fr', 1, 'https://ror.org/022vd9g66 HƓpital OrthopƩdique de la Suisse Romande'),
(2974, 'https://ror.org/00chbca67', 'en', 1, 'https://ror.org/00chbca67 Bhabha Atomic Research Center Hospital'),
(2975, 'https://ror.org/004nhy279', 'en', 1, 'https://ror.org/004nhy279 Barnet Hospital'),
(2976, 'https://ror.org/056dkgp19', 'en', 1, 'https://ror.org/056dkgp19 Health Forecasting'),
(2977, 'https://ror.org/00hmeez77', 'en', 1, 'https://ror.org/00hmeez77 Barzilai Medical Center'),
(2978, 'https://ror.org/057vt8c33', 'fr', 1, 'https://ror.org/057vt8c33 HƓpital Paule de Viguier'),
(2979, 'https://ror.org/01bbyhp53', 'en', 1, 'https://ror.org/01bbyhp53 Basingstoke and North Hampshire Hospital'),
(2980, 'https://ror.org/02x581406', 'fr', 1, 'https://ror.org/02x581406 HƓpital Pellegrin'),
(2981, 'https://ror.org/005927371', 'en', 1, 'https://ror.org/005927371 Ching Kuo Institute of Management and Health ē¶“åœ‹ē®”ē†ęšØå„åŗ·å­øé™¢'),
(2982, 'https://ror.org/03s33gc98', 'it', 1, 'https://ror.org/03s33gc98 Ospedale Bassini'),
(2983, 'https://ror.org/01y8zn427', 'en', 1, 'https://ror.org/01y8zn427 Chittagong Medical College ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(2984, 'https://ror.org/024cn3w16', 'fr', 1, 'https://ror.org/024cn3w16 Centre Hospitalier Philippe Pinel'),
(2985, 'https://ror.org/00j4pze04', 'es', 1, 'https://ror.org/00j4pze04 Hospital de Basurto'),
(2986, 'https://ror.org/03vkkz907', 'en', 1, 'https://ror.org/03vkkz907 Batra Hospital and Medical Research Centre'),
(2987, 'https://ror.org/03mv9x076', 'en', 1, 'https://ror.org/03mv9x076 HCI International Medical Centre'),
(2988, 'https://ror.org/01dk7q852', 'no_lang_code', 1, 'https://ror.org/01dk7q852 Cardiovascular Center Hokkaido Ohno Hospital åæƒč‡“č”€ē®”ć‚»ćƒ³ć‚æćƒ¼åŒ—ęµ·é“å¤§é‡Žē—…é™¢'),
(2989, 'https://ror.org/00vhr7p75', 'en', 1, 'https://ror.org/00vhr7p75 Battle Hospital'),
(2990, 'https://ror.org/05xrsn753', 'en', 1, 'https://ror.org/05xrsn753 Choithram Hospital and Research Centre'),
(2991, 'https://ror.org/02y005z64', 'no_lang_code', 1, 'https://ror.org/02y005z64 Hokkaido hospital åŒ—ęµ·é“ē—…é™¢'),
(2992, 'https://ror.org/046yvwt23', 'fr', 1, 'https://ror.org/046yvwt23 HƓpital Principal de Dakar'),
(2993, 'https://ror.org/05wbx0564', 'en', 1, 'https://ror.org/05wbx0564 Chonburi Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŠąø„ąøšąøøąø£ąøµ'),
(2994, 'https://ror.org/01eqjmz45', 'en', 1, 'https://ror.org/01eqjmz45 Hokko Memorial Hospital åŒ—å…‰čØ˜åæµē—…é™¢'),
(2995, 'https://ror.org/01z7mq587', 'tr', 1, 'https://ror.org/01z7mq587 Diyarbakır Askeri Hastanesi'),
(2996, 'https://ror.org/01fmz4h16', 'no_lang_code', 1, 'https://ror.org/01fmz4h16 Hirosakiaiseikai Hospital å¼˜å‰ę„›ęˆä¼šē—…é™¢'),
(2997, 'https://ror.org/03xhwyc44', 'en', 1, 'https://ror.org/03xhwyc44 Chongqing Emergency Medical Center é‡åŗ†åø‚ę€„ę•‘åŒ»ē–—äø­åæƒ'),
(2998, 'https://ror.org/03dm2se39', 'en', 1, 'https://ror.org/03dm2se39 Christ Hospital'),
(2999, 'https://ror.org/04cf4ba49', 'da', 1, 'https://ror.org/04cf4ba49 HolbƦk Sygehus'),
(3000, 'https://ror.org/05gfebp73', 'en', 1, 'https://ror.org/05gfebp73 CSI Holdsworth Memorial Hospital'),
(3001, 'https://ror.org/059xnz004', 'en', 1, 'https://ror.org/059xnz004 Christ Hospital'),
(3002, 'https://ror.org/0101aa973', 'en', 1, 'https://ror.org/0101aa973 Hollywood Private Hospital'),
(3003, 'https://ror.org/01wdckv42', 'en', 1, 'https://ror.org/01wdckv42 Bayfront Medical Center'),
(3004, 'https://ror.org/03gbbyk68', 'en', 1, 'https://ror.org/03gbbyk68 Holmes Regional Medical Center'),
(3005, 'https://ror.org/0084g8g60', 'tr', 1, 'https://ror.org/0084g8g60 Bayındır Hastanesi'),
(3006, 'https://ror.org/01j6t9363', 'fr', 1, 'https://ror.org/01j6t9363 HĆ“pital Razi de La Manouba مستؓفئ Ų§Ł„Ų±Ų§Ų²ŁŠ'),
(3007, 'https://ror.org/01t409e13', 'en', 1, 'https://ror.org/01t409e13 Regional Hospital Holstebro'),
(3008, 'https://ror.org/01vj9qy35', 'en', 1, 'https://ror.org/01vj9qy35 Christian Medical College'),
(3009, 'https://ror.org/057wh9709', 'fr', 1, 'https://ror.org/057wh9709 Centre hospitalier Robert-Ballanger'),
(3010, 'https://ror.org/054kr1687', 'en', 1, 'https://ror.org/054kr1687 Holy Cross Hospital'),
(3011, 'https://ror.org/04g8hwy69', 'en', 1, 'https://ror.org/04g8hwy69 Holy Cross Hospital'),
(3012, 'https://ror.org/00pk1yr39', 'en', 1, 'https://ror.org/00pk1yr39 SĆørlandet Hospital Arendal SĆørlandet Sykehus HF'),
(3013, 'https://ror.org/03jb9b006', 'en', 1, 'https://ror.org/03jb9b006 Dwight D. Eisenhower VA Medical Center'),
(3014, 'https://ror.org/01gxs7p86', 'en', 1, 'https://ror.org/01gxs7p86 Christiana Hospital'),
(3015, 'https://ror.org/043mzjj67', 'en', 1, 'https://ror.org/043mzjj67 Beaumont Hospital'),
(3016, 'https://ror.org/02h905004', 'en', 1, 'https://ror.org/02h905004 Christiana Care Health System'),
(3017, 'https://ror.org/04ayype77', 'en', 1, 'https://ror.org/04ayype77 Wolfson Medical Center ×ž×Ø×›×– רפואי וולפהון'),
(3018, 'https://ror.org/00eyk9919', 'en', 1, 'https://ror.org/00eyk9919 Holy Family Hospital ŪŁˆŁ„ŪŒ ŁŪŒŁ…Ł„ŪŒ ہسپتال'),
(3019, 'https://ror.org/03bfp2076', 'en', 1, 'https://ror.org/03bfp2076 Beckman Laser Institute and Medical Clinic'),
(3020, 'https://ror.org/00m2etp60', 'en', 1, 'https://ror.org/00m2etp60 Holy Family Hospital Nazareth'),
(3021, 'https://ror.org/044prn184', 'en', 1, 'https://ror.org/044prn184 Holy Family Hospital'),
(3022, 'https://ror.org/004we6052', 'en', 1, 'https://ror.org/004we6052 Holy Family Hospital'),
(3023, 'https://ror.org/05fnpxf31', 'en', 1, 'https://ror.org/05fnpxf31 Holy Name Medical Center'),
(3024, 'https://ror.org/00te55z70', 'fi', 1, 'https://ror.org/00te55z70 Mikkelin keskussairaala'),
(3025, 'https://ror.org/015nymp25', 'en', 1, 'https://ror.org/015nymp25 Edith Nourse Rogers Memorial Veterans Hospital'),
(3026, 'https://ror.org/003rmx748', 'en', 1, 'https://ror.org/003rmx748 Holy Spirit Northside Private Hospital'),
(3027, 'https://ror.org/00fqtfz78', 'en', 1, 'https://ror.org/00fqtfz78 Beebe Healthcare'),
(3028, 'https://ror.org/04vt4a111', 'en', 1, 'https://ror.org/04vt4a111 Behavioral Health Research Center of the Southwest'),
(3029, 'https://ror.org/02kckde25', 'en', 1, 'https://ror.org/02kckde25 Earl K. Long Medical Center'),
(3030, 'https://ror.org/025sdjb25', 'fr', 1, 'https://ror.org/025sdjb25 Centre Hospitalier et Universitaire de Brazzaville'),
(3031, 'https://ror.org/0259e4473', 'en', 1, 'https://ror.org/0259e4473 The Military General Hospital of Beijing PLA äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›ę€»åŒ»é™¢'),
(3032, 'https://ror.org/021dmtc66', 'en', 1, 'https://ror.org/021dmtc66 Regional Hospital Horsens Regionshospitalet Horsens'),
(3033, 'https://ror.org/03zeg3732', 'en', 1, 'https://ror.org/03zeg3732 Horton General Hospital'),
(3034, 'https://ror.org/00xz7ma09', 'fr', 1, 'https://ror.org/00xz7ma09 HƓpital rƩgional'),
(3035, 'https://ror.org/021959v84', 'fr', 1, 'https://ror.org/021959v84 HƓpital Saint-AndrƩ'),
(3036, 'https://ror.org/02fze0e77', 'en', 1, 'https://ror.org/02fze0e77 Star General Hospital ę˜Ÿē·åˆē—…é™¢'),
(3037, 'https://ror.org/01espdw89', 'en', 1, 'https://ror.org/01espdw89 Beijing Chest Hospital'),
(3038, 'https://ror.org/00qdkc036', 'no_lang_code', 1, 'https://ror.org/00qdkc036 Hoshigaoka Medical Center ę˜Ÿćƒ¶äø˜åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3039, 'https://ror.org/04ky9n739', 'no_lang_code', 1, 'https://ror.org/04ky9n739 Beijing Chuiyangliu Hospital åŒ—äŗ¬åø‚åž‚ęØęŸ³åŒ»é™¢'),
(3040, 'https://ror.org/01e4pq116', 'fr', 1, 'https://ror.org/01e4pq116 HƓpital Saint Charles'),
(3041, 'https://ror.org/03sbc8x80', 'fr', 1, 'https://ror.org/03sbc8x80 Centre Hospitalier Universitaire Ibn Rochd'),
(3042, 'https://ror.org/05nzesv70', 'en', 1, 'https://ror.org/05nzesv70 Royal Glamorgan Hospital'),
(3043, 'https://ror.org/03vj98x35', 'en', 1, 'https://ror.org/03vj98x35 Beijing Dao Pei Hospital åŒ—äŗ¬é“åŸ¹åŒ»é™¢'),
(3044, 'https://ror.org/03dkpj951', 'en', 1, 'https://ror.org/03dkpj951 East Jefferson General Hospital'),
(3045, 'https://ror.org/028vv3s82', 'en', 1, 'https://ror.org/028vv3s82 East Surrey Hospital'),
(3046, 'https://ror.org/03ew6dd87', 'en', 1, 'https://ror.org/03ew6dd87 East Tennessee Children''s Hospital'),
(3047, 'https://ror.org/03ydmxb41', 'es', 1, 'https://ror.org/03ydmxb41 Hospital AlemƔn'),
(3048, 'https://ror.org/00xmzb398', 'pt', 1, 'https://ror.org/00xmzb398 Hospital Alemão Oswaldo Cruz'),
(3049, 'https://ror.org/053c75a48', 'en', 1, 'https://ror.org/053c75a48 East Texas Medical Center'),
(3050, 'https://ror.org/035t17984', 'en', 1, 'https://ror.org/035t17984 Beijing Jishuitan Hospital åŒ—äŗ¬åø‚åˆ›ä¼¤éŖØē§‘ē ”ē©¶ę‰€'),
(3051, 'https://ror.org/00zyk6d86', 'es', 1, 'https://ror.org/00zyk6d86 Hospital Alto Deba'),
(3052, 'https://ror.org/026as0d42', 'es', 1, 'https://ror.org/026as0d42 Hospital Angeles Pedregal'),
(3053, 'https://ror.org/00vyyx863', 'en', 1, 'https://ror.org/00vyyx863 Eastern Health'),
(3054, 'https://ror.org/007hzv648', 'fr', 1, 'https://ror.org/007hzv648 HƓpital Saint Lazare'),
(3055, 'https://ror.org/048h7jv87', 'fr', 1, 'https://ror.org/048h7jv87 Centre Hospitalier Universitaire de Cocody'),
(3056, 'https://ror.org/03yjk2s16', 'fr', 1, 'https://ror.org/03yjk2s16 Centre Hospitalier National Universitaire de Fann'),
(3057, 'https://ror.org/00gv7aj90', 'es', 1, 'https://ror.org/00gv7aj90 Hospital Barros Luco-Trudeau'),
(3058, 'https://ror.org/043sbvg03', 'en', 1, 'https://ror.org/043sbvg03 Eastern Hepatobiliary Surgery Hospital äøœę–¹č‚čƒ†å¤–ē§‘åŒ»é™¢'),
(3059, 'https://ror.org/027t58004', 'en', 1, 'https://ror.org/027t58004 Eastern Maine Medical Center'),
(3060, 'https://ror.org/00a3dqw47', 'en', 1, 'https://ror.org/00a3dqw47 Eastern State Hospital'),
(3061, 'https://ror.org/04etaja30', 'no_lang_code', 1, 'https://ror.org/04etaja30 Beijing YouAn Hospital åŒ—äŗ¬ä½‘å®‰åŒ»é™¢'),
(3062, 'https://ror.org/03jss6s30', 'pt', 1, 'https://ror.org/03jss6s30 Dr. Euryclides Hospital de Jesus Zerbini'),
(3063, 'https://ror.org/04sfmcd28', 'fr', 1, 'https://ror.org/04sfmcd28 Centre Hospitalier Universitaire Pointe-Ć -Pitre'),
(3064, 'https://ror.org/04djj4v98', 'es', 1, 'https://ror.org/04djj4v98 Buenos Aires British Hospital Hospital BritƔnico de Buenos Aires'),
(3065, 'https://ror.org/052w2jw50', 'fr', 1, 'https://ror.org/052w2jw50 HƓpital Saint-Jacques'),
(3066, 'https://ror.org/03q0mrg27', 'es', 1, 'https://ror.org/03q0mrg27 Hospital Can Misses'),
(3067, 'https://ror.org/03zgmap36', 'en', 1, 'https://ror.org/03zgmap36 Easton Hospital'),
(3068, 'https://ror.org/03gvpk069', 'no_lang_code', 1, 'https://ror.org/03gvpk069 Edendale Hospital'),
(3069, 'https://ror.org/040jhkj51', 'fr', 1, 'https://ror.org/040jhkj51 Centre Hospitalier de Saint Jean de Dieu'),
(3070, 'https://ror.org/00h1apf46', 'fr', 1, 'https://ror.org/00h1apf46 Centre Hospitalier Universitaire de Yopougon'),
(3071, 'https://ror.org/01azs0t89', 'es', 1, 'https://ror.org/01azs0t89 Hospital Carmen y Severo Ochoa'),
(3072, 'https://ror.org/02pfqts47', 'es', 1, 'https://ror.org/02pfqts47 Hospital Casa de Salud'),
(3073, 'https://ror.org/01yzgg311', 'es', 1, 'https://ror.org/01yzgg311 Hospital Central de la Cruz Roja San JosƩ y Santa Adela'),
(3074, 'https://ror.org/0467j3j44', 'it', 1, 'https://ror.org/0467j3j44 Ospedale di Belcolle'),
(3075, 'https://ror.org/03nw9hs25', 'en', 1, 'https://ror.org/03nw9hs25 Alberta Hospital Edmonton'),
(3076, 'https://ror.org/036sdak78', 'en', 1, 'https://ror.org/036sdak78 Educational Commission for Foreign Medical Graduates'),
(3077, 'https://ror.org/05cetba26', 'en', 1, 'https://ror.org/05cetba26 Edward Hospital'),
(3078, 'https://ror.org/05fz2yc38', 'it', 1, 'https://ror.org/05fz2yc38 Ospedale Bellaria Ospedale Bellaria "Carlo Alberto Pizzardi"'),
(3079, 'https://ror.org/03wed5r38', 'en', 1, 'https://ror.org/03wed5r38 Eginition Hospital'),
(3080, 'https://ror.org/002q1t780', 'en', 1, 'https://ror.org/002q1t780 Henrietta Egleston Hospital for Children'),
(3081, 'https://ror.org/01m7mrx20', 'es', 1, 'https://ror.org/01m7mrx20 Hospital Central Dr. Ignacio Morones Prieto'),
(3082, 'https://ror.org/05fhtd457', 'es', 1, 'https://ror.org/05fhtd457 Hospital Central Militar'),
(3083, 'https://ror.org/03c648b36', 'en', 1, 'https://ror.org/03c648b36 Ehime Prefectural Central Hospital ę„›åŖ›ēœŒē«‹äø­å¤®ē—…é™¢'),
(3084, 'https://ror.org/01vk45p32', 'en', 1, 'https://ror.org/01vk45p32 Eiju General Hospital ę°øåÆæē·åˆē—…é™¢'),
(3085, 'https://ror.org/050wjeh45', 'en', 1, 'https://ror.org/050wjeh45 Eisenhower Medical Center'),
(3086, 'https://ror.org/00gs85y70', 'en', 1, 'https://ror.org/00gs85y70 Bellin Memorial Hospital'),
(3087, 'https://ror.org/05n0m7p40', 'fr', 1, 'https://ror.org/05n0m7p40 HƓpital El Ayachi'),
(3088, 'https://ror.org/038152964', 'es', 1, 'https://ror.org/038152964 Hospital Riotinto'),
(3089, 'https://ror.org/057v2pg43', 'fr', 1, 'https://ror.org/057v2pg43 HƓpital Saint-Michel'),
(3090, 'https://ror.org/0065mvt73', 'es', 1, 'https://ror.org/0065mvt73 Hospital Costa del Sol'),
(3091, 'https://ror.org/00rpfyx16', 'en', 1, 'https://ror.org/00rpfyx16 Belvidere Hospital'),
(3092, 'https://ror.org/03w6p2n94', 'en', 1, 'https://ror.org/03w6p2n94 Bendigo Health'),
(3093, 'https://ror.org/01e320272', 'fr', 1, 'https://ror.org/01e320272 HƓpital Saint-Philibert'),
(3094, 'https://ror.org/056yje678', 'fr', 1, 'https://ror.org/056yje678 HƓpital Mustapha Pacha'),
(3095, 'https://ror.org/03jpm9j23', 'pt', 1, 'https://ror.org/03jpm9j23 Hospital da Luz'),
(3096, 'https://ror.org/04skjvf92', 'pt', 1, 'https://ror.org/04skjvf92 Hospital da Restauração'),
(3097, 'https://ror.org/043889z90', 'en', 1, 'https://ror.org/043889z90 The General Hospital of Heraklion "Venizeleio-Pananio" Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ηρακλείου "Βενιζέλειο - Πανάνειο"'),
(3098, 'https://ror.org/05gf6dk22', 'pt', 1, 'https://ror.org/05gf6dk22 Base Hospital Hospital de Base'),
(3099, 'https://ror.org/04661b187', 'en', 1, 'https://ror.org/04661b187 Beppu Medical Center åˆ„åŗœåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3100, 'https://ror.org/027v86y62', 'en', 1, 'https://ror.org/027v86y62 El Paso County Public Health'),
(3101, 'https://ror.org/000tm9s39', 'fr', 1, 'https://ror.org/000tm9s39 Centre Hospitalier Saint-Charles'),
(3102, 'https://ror.org/04dc8es52', 'de', 1, 'https://ror.org/04dc8es52 Klinik Donaustauf'),
(3103, 'https://ror.org/04cpf2p55', 'en', 1, 'https://ror.org/04cpf2p55 Bess Kaiser Hospital'),
(3104, 'https://ror.org/018mgzn65', 'en', 1, 'https://ror.org/018mgzn65 Baylor Medical Center at Garland'),
(3105, 'https://ror.org/03dwvx056', 'tr', 1, 'https://ror.org/03dwvx056 Elazig Education and Research Hospital Elazığ Eğitim ve Araştırma Hastanesi'),
(3106, 'https://ror.org/0032p1p15', 'en', 1, 'https://ror.org/0032p1p15 Chubu National Hospital äø­éƒØå›½ē«‹ē—…é™¢'),
(3107, 'https://ror.org/0269fmf70', 'en', 1, 'https://ror.org/0269fmf70 St. Mary''s Hospital'),
(3108, 'https://ror.org/01rf07780', 'es', 1, 'https://ror.org/01rf07780 Hospital Provincial de Conxo'),
(3109, 'https://ror.org/03eaw8c11', 'en', 1, 'https://ror.org/03eaw8c11 Bethesda North Hospital'),
(3110, 'https://ror.org/02hvsf428', 'nl', 1, 'https://ror.org/02hvsf428 Ziekenhuis Bethesda'),
(3111, 'https://ror.org/012habm93', 'pt', 1, 'https://ror.org/012habm93 Hospital de Egas Moniz'),
(3112, 'https://ror.org/02tvhd105', 'es', 1, 'https://ror.org/02tvhd105 Clemente Ɓlvarez Emergency Hospital Hospital de Emergencias Dr. Clemente Ɓlvarez'),
(3113, 'https://ror.org/027dft319', 'en', 1, 'https://ror.org/027dft319 Bethesda Hospital East'),
(3114, 'https://ror.org/04f86t017', 'es', 1, 'https://ror.org/04f86t017 Hospital de Especialidades'),
(3115, 'https://ror.org/03vwxd822', 'no_lang_code', 1, 'https://ror.org/03vwxd822 Chugoku Rosai Hospital äø­å›½åŠ“ē½ē—…é™¢'),
(3116, 'https://ror.org/00z769k62', 'pt', 1, 'https://ror.org/00z769k62 Hospital de Faro EPE'),
(3117, 'https://ror.org/020m4km16', 'en', 1, 'https://ror.org/020m4km16 Bexar County Medical Examiner''s Office'),
(3118, 'https://ror.org/057b2d479', 'pt', 1, 'https://ror.org/057b2d479 Hospital Maria Pia'),
(3119, 'https://ror.org/02pes1a77', 'de', 1, 'https://ror.org/02pes1a77 Krankenhaus der Elisabethinen'),
(3120, 'https://ror.org/04gw05r18', 'fr', 1, 'https://ror.org/04gw05r18 Centre Hospitalier Victor Dupouy'),
(3121, 'https://ror.org/025714n80', 'es', 1, 'https://ror.org/025714n80 Hospital de Galdakao'),
(3122, 'https://ror.org/03d532p87', 'fr', 1, 'https://ror.org/03d532p87 HƓpital Xavier Arnozan'),
(3123, 'https://ror.org/01gaptw32', 'es', 1, 'https://ror.org/01gaptw32 Hospital de HellĆ­n'),
(3124, 'https://ror.org/01q750e89', 'nl', 1, 'https://ror.org/01q750e89 Elkerliek Ziekenhuis'),
(3125, 'https://ror.org/058qp7v13', 'en', 1, 'https://ror.org/058qp7v13 BGS Global Hospital'),
(3126, 'https://ror.org/03jachw67', 'en', 1, 'https://ror.org/03jachw67 Elliot Hospital'),
(3127, 'https://ror.org/0398yj006', 'es', 1, 'https://ror.org/0398yj006 Hospital MuƱiz Hospital de Infecciosas ā€œDr. Francisco Javier MuƱiz"'),
(3128, 'https://ror.org/00q6w3x44', 'en', 1, 'https://ror.org/00q6w3x44 Ellis Hospital'),
(3129, 'https://ror.org/03n34rg04', 'en', 1, 'https://ror.org/03n34rg04 Elmhurst Hospital Center'),
(3130, 'https://ror.org/056rage58', 'en', 1, 'https://ror.org/056rage58 Indira Gandhi Medical College'),
(3131, 'https://ror.org/01mz9wf40', 'en', 1, 'https://ror.org/01mz9wf40 Chu Shang Show Chwan Hospital'),
(3132, 'https://ror.org/03q7y2p06', 'en', 1, 'https://ror.org/03q7y2p06 Ibaraki Prefectural Central Hospital čŒØåŸŽēœŒē«‹äø­å¤®ē—…é™¢'),
(3133, 'https://ror.org/05a79ds67', 'no_lang_code', 1, 'https://ror.org/05a79ds67 Bhatia Hospital'),
(3134, 'https://ror.org/05nbsaj33', 'en', 1, 'https://ror.org/05nbsaj33 Bhopal Memorial Hospital & Research Centre'),
(3135, 'https://ror.org/04x1ptk36', 'en', 1, 'https://ror.org/04x1ptk36 Ibis Reproductive Health'),
(3136, 'https://ror.org/02qeysd40', 'en', 1, 'https://ror.org/02qeysd40 Tacoma Community College'),
(3137, 'https://ror.org/00mc91w09', 'it', 1, 'https://ror.org/00mc91w09 Ospedale Cisanello'),
(3138, 'https://ror.org/01va7e105', 'en', 1, 'https://ror.org/01va7e105 Ibis Reproductive Health'),
(3139, 'https://ror.org/02ss35t63', 'en', 1, 'https://ror.org/02ss35t63 Emerson Hospital'),
(3140, 'https://ror.org/041e85345', 'en', 1, 'https://ror.org/041e85345 Bhumibol Adulyadej Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø ąø¹ąø”ąø“ąøžąø„ąø­ąø”ąøøąø„ąø¢ą¹€ąø”ąøŠ'),
(3141, 'https://ror.org/03dsgss45', 'ca', 1, 'https://ror.org/03dsgss45 Hospital Mare de Déu de la Mercè'),
(3142, 'https://ror.org/00bmv4102', 'nl', 1, 'https://ror.org/00bmv4102 Emma Children’s Hospital Emma Kinderziekenhuis'),
(3143, 'https://ror.org/00z28d984', 'it', 1, 'https://ror.org/00z28d984 Azienda ospedaliera "Bianchi-Melacrino-Morelli"'),
(3144, 'https://ror.org/03zpnb459', 'no_lang_code', 1, 'https://ror.org/03zpnb459 Bikur Cholim Hospital'),
(3145, 'https://ror.org/05359he25', 'no_lang_code', 1, 'https://ror.org/05359he25 Ibn Sina Hospital مستؓفى ابن Ų³ŁŠŁ†Ų§'),
(3146, 'https://ror.org/0024qhz65', 'en', 1, 'https://ror.org/0024qhz65 Bir Hospital ą¤¬ą„€ą¤° ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(3147, 'https://ror.org/015a6df35', 'no_lang_code', 1, 'https://ror.org/015a6df35 En Chu Kong Hospital č”Œå¤©å®®é†«ē™‚åæ—ę„­é†«ē™‚č²”åœ˜ę³•äŗŗę©äø»å…¬é†«é™¢'),
(3148, 'https://ror.org/05mg61p80', 'en', 1, 'https://ror.org/05mg61p80 Englewood Hospital and Medical Center'),
(3149, 'https://ror.org/043zcrg65', 'en', 1, 'https://ror.org/043zcrg65 Birmingham Accident Hospital'),
(3150, 'https://ror.org/01n70p029', 'en', 1, 'https://ror.org/01n70p029 Birmingham and Midland Eye Centre'),
(3151, 'https://ror.org/01xhmje49', 'en', 1, 'https://ror.org/01xhmje49 Birmingham Dental Hospital'),
(3152, 'https://ror.org/051c2ew73', 'es', 1, 'https://ror.org/051c2ew73 Hospital General de La Rioja'),
(3153, 'https://ror.org/023733d09', 'es', 1, 'https://ror.org/023733d09 Hospital de l''EsperanƧa'),
(3154, 'https://ror.org/0457avm18', 'en', 1, 'https://ror.org/0457avm18 Bishop Auckland Hospital'),
(3155, 'https://ror.org/04cy4z909', 'es', 1, 'https://ror.org/04cy4z909 Hospital de Mataró'),
(3156, 'https://ror.org/02z9g9j20', 'en', 1, 'https://ror.org/02z9g9j20 BJC HealthCare'),
(3157, 'https://ror.org/01r9ea713', 'en', 1, 'https://ror.org/01r9ea713 Blackpool Victoria Hospital'),
(3158, 'https://ror.org/011x7hd11', 'de', 1, 'https://ror.org/011x7hd11 München Klinik Bogenhausen'),
(3159, 'https://ror.org/002bjfj29', 'de', 1, 'https://ror.org/002bjfj29 München Klinik Schwabing'),
(3160, 'https://ror.org/004a7s815', 'sv', 1, 'https://ror.org/004a7s815 Blekingesjukhuset'),
(3161, 'https://ror.org/01yvj7247', 'en', 1, 'https://ror.org/01yvj7247 Bnai Zion Medical Center ×ž×Ø×›×– רפואי בני ציון'),
(3162, 'https://ror.org/01phhgk62', 'en', 1, 'https://ror.org/01phhgk62 Boca Raton Regional Hospital'),
(3163, 'https://ror.org/051mda743', 'en', 1, 'https://ror.org/051mda743 Garrahan Hospital'),
(3164, 'https://ror.org/01dk3f134', 'no_lang_code', 1, 'https://ror.org/01dk3f134 Tokyo Metropolitan Bokutoh Hospital ę±äŗ¬éƒ½ē«‹å¢Øę±ē—…é™¢'),
(3165, 'https://ror.org/053fx7g25', 'en', 1, 'https://ror.org/053fx7g25 Royal Bolton Hospital'),
(3166, 'https://ror.org/05jvra197', 'no_lang_code', 1, 'https://ror.org/05jvra197 JA Shizuoka Koseiren ENSHU hospital 恘悃 恗恚恊恋 恓恛恄悌悓 恈悓恗悅 ć»ļ½“ć“ćŸļ½Œ'),
(3167, 'https://ror.org/05nakwy60', 'en', 1, 'https://ror.org/05nakwy60 Ideta Eye Hospital å‡ŗē”°ēœ¼ē§‘ē—…é™¢'),
(3168, 'https://ror.org/01df9ep43', 'en', 1, 'https://ror.org/01df9ep43 Era''s Lucknow Medical College and Hospital'),
(3169, 'https://ror.org/05w1yqq10', 'en', 1, 'https://ror.org/05w1yqq10 Israel Defense Forces Medical Corps'),
(3170, 'https://ror.org/043e04s74', 'en', 1, 'https://ror.org/043e04s74 Civil Aerospace Medical Institute'),
(3171, 'https://ror.org/04js17g72', 'en', 1, 'https://ror.org/04js17g72 Ifakara Health Institute'),
(3172, 'https://ror.org/04t77r183', 'es', 1, 'https://ror.org/04t77r183 Hospital Ludovica Hospital de NiƱos Superiora Sor Marƭa Ludovica'),
(3173, 'https://ror.org/046a9t092', 'es', 1, 'https://ror.org/046a9t092 Hospital de NiƱos de la Santƭsima Trinidad'),
(3174, 'https://ror.org/00k8adf88', 'en', 1, 'https://ror.org/00k8adf88 Ahmedabad Civil Hospital'),
(3175, 'https://ror.org/05te51w08', 'es', 1, 'https://ror.org/05te51w08 Hospital General de NiƱos Ricardo Gutierrez'),
(3176, 'https://ror.org/023r6xh67', 'en', 1, 'https://ror.org/023r6xh67 Ignatius Hospital Sint Ignatiusziekenhuis'),
(3177, 'https://ror.org/01wv1aw46', 'en', 1, 'https://ror.org/01wv1aw46 BongSeng Memorial Hospital ė“‰ģƒė³‘ģ›ģž…ė‹ˆė‹¤'),
(3178, 'https://ror.org/00zc7y345', 'pt', 1, 'https://ror.org/00zc7y345 Hospital de São José'),
(3179, 'https://ror.org/02x4pnt63', 'pt', 1, 'https://ror.org/02x4pnt63 Hospital Geral de Bonsucesso'),
(3180, 'https://ror.org/04zjvnp94', 'en', 1, 'https://ror.org/04zjvnp94 Clalit Health Services שירותי בריאות ×›×œ×œ×™×Ŗ'),
(3181, 'https://ror.org/00t61fh47', 'en', 1, 'https://ror.org/00t61fh47 Ijinkai Takeda General Hospital ę­¦ē”°ē·åˆē—…é™¢ćÆ'),
(3182, 'https://ror.org/044ww3909', 'en', 1, 'https://ror.org/044ww3909 Boone Hospital Center'),
(3183, 'https://ror.org/019e4dr88', 'en', 1, 'https://ror.org/019e4dr88 Erie County Medical Center'),
(3184, 'https://ror.org/040bb8882', 'pt', 1, 'https://ror.org/040bb8882 Hospital de SĆ£o Marcos'),
(3185, 'https://ror.org/04kbvfy96', 'es', 1, 'https://ror.org/04kbvfy96 Hospital de Sagunto'),
(3186, 'https://ror.org/02ybzrf68', 'en', 1, 'https://ror.org/02ybzrf68 Civil Hospital Karachi'),
(3187, 'https://ror.org/02yx11005', 'en', 1, 'https://ror.org/02yx11005 Borders General Hospital'),
(3188, 'https://ror.org/01dqhdd78', 'en', 1, 'https://ror.org/01dqhdd78 Clatterbridge Hospital Ysbyty Clattebridge'),
(3189, 'https://ror.org/021rvrs67', 'ca', 1, 'https://ror.org/021rvrs67 Hospital Sant Pau i Santa Tecla'),
(3190, 'https://ror.org/03964hc96', 'en', 1, 'https://ror.org/03964hc96 Borgess Medical Center'),
(3191, 'https://ror.org/00qezxe61', 'no_lang_code', 1, 'https://ror.org/00qezxe61 Ikeda Municipal Hospital 池田市立病院'),
(3192, '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'),
(3193, 'https://ror.org/04b0jw528', 'en', 1, 'https://ror.org/04b0jw528 Imakiire General Hospital å…¬ē›Šč²”å›£ę³•äŗŗę˜­å’Œä¼š ä»Šēµ¦é»Žē·åˆē—…é™¢'),
(3194, 'https://ror.org/050qpjf10', 'en', 1, 'https://ror.org/050qpjf10 Botsford Hospital'),
(3195, 'https://ror.org/03pzgk858', 'en', 1, 'https://ror.org/03pzgk858 Hospital South West Jutland Sydvestjysk Sygehus'),
(3196, 'https://ror.org/047tjmd17', 'en', 1, 'https://ror.org/047tjmd17 Coastal Area Health Education Center'),
(3197, 'https://ror.org/037s71n47', 'en', 1, 'https://ror.org/037s71n47 Imelda Hospital Imelda ziekenhuis'),
(3198, 'https://ror.org/0484pjq71', 'en', 1, 'https://ror.org/0484pjq71 Box Hill Hospital'),
(3199, 'https://ror.org/02y9x6z24', 'pt', 1, 'https://ror.org/02y9x6z24 Hospital de SĆ£o Bernardo'),
(3200, 'https://ror.org/01q9r1072', 'en', 1, 'https://ror.org/01q9r1072 Boys Town National Research Hospital'),
(3201, 'https://ror.org/00j9f7w81', 'es', 1, 'https://ror.org/00j9f7w81 Hospital Terrassa'),
(3202, 'https://ror.org/04fkbqt11', 'ro', 1, 'https://ror.org/04fkbqt11 Hospital Colentina Spitalul Clinic Colentina'),
(3203, 'https://ror.org/023dma244', 'en', 1, 'https://ror.org/023dma244 Colchester Hospital'),
(3204, 'https://ror.org/05nmfef18', 'en', 1, 'https://ror.org/05nmfef18 Hoag Memorial Hospital Presbyterian'),
(3205, 'https://ror.org/03b7nc883', 'en', 1, 'https://ror.org/03b7nc883 Colmery-O''Neil VA Medical Center'),
(3206, 'https://ror.org/01xn4ac42', 'en', 1, 'https://ror.org/01xn4ac42 Brandon Regional Health Authority'),
(3207, 'https://ror.org/04nc9r025', 'en', 1, 'https://ror.org/04nc9r025 Colonial War Memorial Hospital'),
(3208, 'https://ror.org/03fakbf87', 'en', 1, 'https://ror.org/03fakbf87 Colorado Permanente Medical Group'),
(3209, 'https://ror.org/0222p1e69', 'en', 1, 'https://ror.org/0222p1e69 Eugene Applebaum College of Pharmacy and Health Sciences'),
(3210, 'https://ror.org/000yct867', 'en', 1, 'https://ror.org/000yct867 Bridgeport Hospital'),
(3211, 'https://ror.org/01qz7fr76', 'en', 1, 'https://ror.org/01qz7fr76 Brighton and Sussex Medical School'),
(3212, 'https://ror.org/04dns5t03', 'en', 1, 'https://ror.org/04dns5t03 Brighton General Hospital'),
(3213, 'https://ror.org/01r9be524', 'en', 1, 'https://ror.org/01r9be524 Bristol Hospital'),
(3214, 'https://ror.org/04saq4y86', 'en', 1, 'https://ror.org/04saq4y86 Indira Gandhi Institute of Child Health'),
(3215, 'https://ror.org/011r34n61', 'en', 1, 'https://ror.org/011r34n61 Indira Gandhi Government Medical College & Hospital इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ व ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(3216, 'https://ror.org/049pcfs17', 'en', 1, 'https://ror.org/049pcfs17 Indira Gandhi Institute of Medical Sciences'),
(3217, 'https://ror.org/05278be16', 'es', 1, 'https://ror.org/05278be16 Hospital del NiƱo'),
(3218, 'https://ror.org/00nf20x22', 'en', 1, 'https://ror.org/00nf20x22 Indira Gandhi Medical College and Research Institute'),
(3219, 'https://ror.org/013vzz882', 'en', 1, 'https://ror.org/013vzz882 Indraprastha Apollo Hospitals'),
(3220, 'https://ror.org/039bxh911', 'it', 1, 'https://ror.org/039bxh911 Ospedale Infermi di Rimini'),
(3221, 'https://ror.org/01sgn8034', 'en', 1, 'https://ror.org/01sgn8034 Trinitas Regional Medical Center'),
(3222, 'https://ror.org/00e7taa66', 'en', 1, 'https://ror.org/00e7taa66 Ingalls Memorial Hospital'),
(3223, 'https://ror.org/057pdzy92', 'es', 1, 'https://ror.org/057pdzy92 Hospital del Trabajador'),
(3224, 'https://ror.org/034zcbh25', 'tr', 1, 'https://ror.org/034zcbh25 Ergani Devlet Hastanesi'),
(3225, 'https://ror.org/002g9dc27', 'en', 1, 'https://ror.org/002g9dc27 Inoue Hospital äŗ•äøŠē—…é™¢'),
(3226, 'https://ror.org/036dess41', 'pt', 1, 'https://ror.org/036dess41 Hospital do Desterro'),
(3227, 'https://ror.org/05wf8v135', 'en', 1, 'https://ror.org/05wf8v135 Bronglais General Hospital'),
(3228, 'https://ror.org/029nzwk08', 'en', 1, 'https://ror.org/029nzwk08 Levanger Hospital Sykehuset Levanger'),
(3229, 'https://ror.org/03sjjqm13', 'en', 1, 'https://ror.org/03sjjqm13 Inouye Eye Hospital äŗ•äøŠēœ¼ē§‘ē—…é™¢'),
(3230, 'https://ror.org/019tstz42', 'sv', 1, 'https://ror.org/019tstz42 Ersta sjukhus'),
(3231, 'https://ror.org/009rt9f88', 'en', 1, 'https://ror.org/009rt9f88 Inova Loudoun Hospital'),
(3232, 'https://ror.org/03r781319', 'en', 1, 'https://ror.org/03r781319 Bronovo Hospital Bronovo Ziekenhuis'),
(3233, 'https://ror.org/032zc6m47', 'en', 1, 'https://ror.org/032zc6m47 Bronson Methodist Hospital'),
(3234, 'https://ror.org/01ky2n109', 'pt', 1, 'https://ror.org/01ky2n109 Hospital Federal dos Servidores do Estado'),
(3235, 'https://ror.org/04kt0yt69', 'tr', 1, 'https://ror.org/04kt0yt69 Etimesgut Asker Hastanesi'),
(3236, 'https://ror.org/01bhkfn26', 'en', 1, 'https://ror.org/01bhkfn26 Southern Command Hospital'),
(3237, 'https://ror.org/02xa5mk57', 'en', 1, 'https://ror.org/02xa5mk57 Brooklyn Hospital Center'),
(3238, 'https://ror.org/05cx69s52', 'en', 1, 'https://ror.org/05cx69s52 Command Hospital Air Force'),
(3239, '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'),
(3240, 'https://ror.org/01wf0xv67', 'en', 1, 'https://ror.org/01wf0xv67 Eastern Command Hospital'),
(3241, 'https://ror.org/012vbac09', 'en', 1, 'https://ror.org/012vbac09 Doctors Medical Center'),
(3242, 'https://ror.org/014405c23', 'pt', 1, 'https://ror.org/014405c23 Hospital do EspĆ­rito Santo'),
(3243, 'https://ror.org/00hn92440', 'en', 1, 'https://ror.org/00hn92440 Broomfield Hospital'),
(3244, 'https://ror.org/040cn9093', 'en', 1, 'https://ror.org/040cn9093 Community Health Network'),
(3245, 'https://ror.org/01v16x378', 'en', 1, 'https://ror.org/01v16x378 Command Hospital'),
(3246, 'https://ror.org/01jj2sr90', 'en', 1, 'https://ror.org/01jj2sr90 Broward Health Medical Center'),
(3247, 'https://ror.org/022261z88', 'en', 1, 'https://ror.org/022261z88 Evans Army Community Hospital'),
(3248, 'https://ror.org/0028g5429', 'en', 1, 'https://ror.org/0028g5429 Community Medical Center'),
(3249, 'https://ror.org/04m88de33', 'en', 1, 'https://ror.org/04m88de33 Froedtert Menomonee Falls Hospital'),
(3250, 'https://ror.org/03qwghy04', 'en', 1, 'https://ror.org/03qwghy04 Duran i Reynals Hospital'),
(3251, 'https://ror.org/02nvt4474', 'es', 1, 'https://ror.org/02nvt4474 Institute for Clinical Efectiveness and Health Policy Instituto de Efectividad ClĆ­nica y Sanitaria'),
(3252, 'https://ror.org/05gx19t11', 'en', 1, 'https://ror.org/05gx19t11 Evergreen Health Medical Center'),
(3253, 'https://ror.org/028d75n58', 'es', 1, 'https://ror.org/028d75n58 Hospital El Bierzo'),
(3254, 'https://ror.org/03atxgt72', 'en', 1, 'https://ror.org/03atxgt72 Coney Island Hospital'),
(3255, 'https://ror.org/02tse0z86', 'en', 1, 'https://ror.org/02tse0z86 Bryn Mawr Hospital'),
(3256, 'https://ror.org/01qdp7m73', 'en', 1, 'https://ror.org/01qdp7m73 Bryn Mawr Rehabilitation Hospital'),
(3257, 'https://ror.org/04qk4yf71', 'en', 1, 'https://ror.org/04qk4yf71 Conemaugh Memorial Medical Center'),
(3258, 'https://ror.org/0569bbe51', 'en', 1, 'https://ror.org/0569bbe51 Connecticut Mental Health Center'),
(3259, 'https://ror.org/02z8mgx68', 'en', 1, 'https://ror.org/02z8mgx68 Exempla Saint Joseph Hospital'),
(3260, 'https://ror.org/051fpt583', 'it', 1, 'https://ror.org/051fpt583 Ospedale Buccheri la Ferla Fatebenefratelli'),
(3261, 'https://ror.org/04e79zk25', 'en', 1, 'https://ror.org/04e79zk25 Institute for Medical Informatics and Biostatistics'),
(3262, 'https://ror.org/04dzhx486', 'en', 1, 'https://ror.org/04dzhx486 Exeter Hospital'),
(3263, 'https://ror.org/03bpc5f92', 'en', 1, 'https://ror.org/03bpc5f92 Institute for Medical Research'),
(3264, 'https://ror.org/0460a5x58', 'en', 1, 'https://ror.org/0460a5x58 Eugenides Hospital Ī•Ī„Ī“Ī•ĪĪ™Ī”Ī•Ī™ĪŸ Ī˜Ī•Ī”Ī‘Ī Ī•Ī„Ī¤Ī—Ī”Ī™ĪŸ'),
(3265, 'https://ror.org/02bste653', 'it', 1, 'https://ror.org/02bste653 Ospedale ā€œM. Bufaliniā€ di Cesena'),
(3266, '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'),
(3267, 'https://ror.org/00eh7f421', 'no_lang_code', 1, 'https://ror.org/00eh7f421 E-Da Hospital'),
(3268, 'https://ror.org/02p9e5v87', 'en', 1, 'https://ror.org/02p9e5v87 Concord Hospital'),
(3269, 'https://ror.org/02s4j2a36', 'en', 1, 'https://ror.org/02s4j2a36 Conquest Hospital'),
(3270, 'https://ror.org/010bsbc18', 'pt', 1, 'https://ror.org/010bsbc18 Hospital Prof. Dr. Fernando Fonseca'),
(3271, 'https://ror.org/00tdzhd41', 'es', 1, 'https://ror.org/00tdzhd41 Hospital FernƔndez'),
(3272, 'https://ror.org/037r57b62', 'en', 1, 'https://ror.org/037r57b62 Buddhist Tzu Chi General Hospital'),
(3273, 'https://ror.org/03vzfth13', 'en', 1, 'https://ror.org/03vzfth13 Hospital for Special Care'),
(3274, 'https://ror.org/05gh0na70', 'en', 1, 'https://ror.org/05gh0na70 Jinnah Medical & Dental College'),
(3275, 'https://ror.org/00952fj37', 'en', 1, 'https://ror.org/00952fj37 Jinnah Postgraduate Medical Center'),
(3276, 'https://ror.org/03dwx1z96', 'en', 1, 'https://ror.org/03dwx1z96 Maulana Azad Medical College மௌலானா ą®†ą®šą®¾ą®¤ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(3277, 'https://ror.org/03efxpx82', 'it', 1, 'https://ror.org/03efxpx82 A. O. Ordine Mauriziano di Torino'),
(3278, 'https://ror.org/000bxzc63', 'en', 1, 'https://ror.org/000bxzc63 Max Planck Institute for Medical Research Max-Planck-Institut für Medizinische Forschung'),
(3279, 'https://ror.org/00hdf8e67', 'en', 1, 'https://ror.org/00hdf8e67 Jawaharlal Nehru Medical College'),
(3280, 'https://ror.org/02y5qtc81', 'pt', 1, 'https://ror.org/02y5qtc81 Hospital Infantil Joana de Gusmão'),
(3281, 'https://ror.org/05dm6kv37', 'en', 1, 'https://ror.org/05dm6kv37 Institute of Child and Mother Health'),
(3282, 'https://ror.org/047x96110', 'en', 1, 'https://ror.org/047x96110 Johannesburg Hospital'),
(3283, 'https://ror.org/04jq4p608', 'pt', 1, 'https://ror.org/04jq4p608 Hospital Garcia de Orta'),
(3284, 'https://ror.org/04ghtpd15', 'en', 1, 'https://ror.org/04ghtpd15 Institute of Child Health Ī¹Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ υγείας του Ļ€Ī±Ī¹Ī“Ī¹ĪæĻ'),
(3285, 'https://ror.org/03yk5k102', 'en', 1, 'https://ror.org/03yk5k102 Institute of Child Health'),
(3286, 'https://ror.org/02z8t9146', 'en', 1, 'https://ror.org/02z8t9146 Mayo General Hospital'),
(3287, 'https://ror.org/02zzw8g45', 'en', 1, 'https://ror.org/02zzw8g45 Mayo Clinic Health System'),
(3288, 'https://ror.org/046jyn221', 'en', 1, 'https://ror.org/046jyn221 Mayo Hospital'),
(3289, 'https://ror.org/00f93yb19', 'en', 1, 'https://ror.org/00f93yb19 McKay Dee Hospital'),
(3290, 'https://ror.org/01cpcy908', 'en', 1, 'https://ror.org/01cpcy908 McLaren Regional Medical Center'),
(3291, 'https://ror.org/02wnfwq15', 'es', 1, 'https://ror.org/02wnfwq15 Hospital General Yagüe'),
(3292, 'https://ror.org/05megpp22', 'pt', 1, 'https://ror.org/05megpp22 Hospital Geral de Fortaleza'),
(3293, 'https://ror.org/0057s8s52', 'en', 1, 'https://ror.org/0057s8s52 John D. Dingell VA Medical Center'),
(3294, 'https://ror.org/0187t0j49', 'en', 1, 'https://ror.org/0187t0j49 John Hunter Hospital'),
(3295, 'https://ror.org/00mch1v74', 'en', 1, 'https://ror.org/00mch1v74 John Muir Medical Center'),
(3296, 'https://ror.org/047krn550', 'es', 1, 'https://ror.org/047krn550 Hospital CƩsar Milstein'),
(3297, 'https://ror.org/02j4j5k41', 'en', 1, 'https://ror.org/02j4j5k41 John Muir Health'),
(3298, 'https://ror.org/00se0qr64', 'en', 1, 'https://ror.org/00se0qr64 Summit Oaks Hospital'),
(3299, 'https://ror.org/01kvtm035', 'en', 1, 'https://ror.org/01kvtm035 South Australia Pathology'),
(3300, 'https://ror.org/01apd5369', 'en', 1, 'https://ror.org/01apd5369 John Paul II Hospital Krakowski Szpital Specjalistyczny im. Jana Pawła II'),
(3301, 'https://ror.org/04frzv033', 'en', 1, 'https://ror.org/04frzv033 Institute of Medical Biology'),
(3302, 'https://ror.org/04b0ry431', 'es', 1, 'https://ror.org/04b0ry431 Hospital General de Elda'),
(3303, 'https://ror.org/01cw77n16', 'en', 1, 'https://ror.org/01cw77n16 Fairfield Infectious Diseases Hospital'),
(3304, 'https://ror.org/03gd3wz76', 'en', 1, 'https://ror.org/03gd3wz76 Sher-i-Kashmir Institute of Medical Sciences ؓیرِ Ś©Ų“Ł…ŪŒŲ± Ų§Ł†Ų³Ł¹ŪŒŚ†ŪŒŁˆŁ¹ آف Ł…ŪŒŚˆŪŒŚ©Ł„ سائنسز'),
(3305, 'https://ror.org/0190kj665', 'es', 1, 'https://ror.org/0190kj665 Hospital General de Granollers'),
(3306, 'https://ror.org/02vzyrj94', 'en', 1, 'https://ror.org/02vzyrj94 Fairview Southdale Hospital'),
(3307, 'https://ror.org/009ek3139', 'en', 1, 'https://ror.org/009ek3139 Falun Hospital'),
(3308, 'https://ror.org/019tq3436', 'en', 1, 'https://ror.org/019tq3436 Far Eastern Memorial Hospital'),
(3309, 'https://ror.org/05fscjm95', 'en', 1, 'https://ror.org/05fscjm95 Jorvi Hospital Jorvin sairaala'),
(3310, 'https://ror.org/048hj2019', 'en', 1, 'https://ror.org/048hj2019 Joseph Brant Hospital'),
(3311, 'https://ror.org/04yb7hq57', 'en', 1, 'https://ror.org/04yb7hq57 Stavropol State Medical University Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(3312, 'https://ror.org/04c07bj87', 'en', 1, 'https://ror.org/04c07bj87 Institute of Mental Health'),
(3313, 'https://ror.org/0573hvw69', 'tr', 1, 'https://ror.org/0573hvw69 Farabi Hastanesi'),
(3314, 'https://ror.org/025q7sd17', 'es', 1, 'https://ror.org/025q7sd17 Hospital General Dr. Manuel Gea Gonzalez'),
(3315, 'https://ror.org/01akfrh45', 'no_lang_code', 1, 'https://ror.org/01akfrh45 Farwaniya Hospital مستؓفى Ų§Ł„ŁŲ±ŁˆŲ§Ł†ŁŠŲ©'),
(3316, 'https://ror.org/00afgv297', 'es', 1, 'https://ror.org/00afgv297 Hospital General San Juan de Dios'),
(3317, 'https://ror.org/05dfzd836', 'es', 1, 'https://ror.org/05dfzd836 Hospital Universitario Infanta SofĆ­a'),
(3318, 'https://ror.org/05v558c44', 'it', 1, 'https://ror.org/05v558c44 Azienda Ospedaliera Fatebenefratelli e Oftalmico'),
(3319, 'https://ror.org/01wcey047', 'en', 1, 'https://ror.org/01wcey047 Joseph Eye Hospital'),
(3320, 'https://ror.org/05nfzf209', 'es', 1, 'https://ror.org/05nfzf209 Hospital Universitario Infanta Leonor'),
(3321, 'https://ror.org/04mgjym08', 'en', 1, 'https://ror.org/04mgjym08 Institute of Occupational Medicine and Environmental Health Instytut Medycyny Pracy i Zdrowia Środowiskowego'),
(3322, 'https://ror.org/00ysvbp68', 'en', 1, 'https://ror.org/00ysvbp68 Institute of Post Graduate Medical Education and Research'),
(3323, 'https://ror.org/04t41ec74', 'en', 1, 'https://ror.org/04t41ec74 Father Muller Medical College Hospital फादर ą¤®ą„ą¤Æą„ą¤²ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą®Ŗą®¾ą®¤ą®°ąÆ ą®®ąÆą®²ąÆą®²ąÆ†ą®°ąÆ ą®®ąÆ†ą®Ÿą®æą®•ąÆą®•ą®²ąÆ ą®•ą®¾ą®²ąÆ‡ą®œąÆ ą°«ą°¾ą°¦ą°°ą± ą°®ą±ą°²ą±ą°²ą±†ą°°ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°•ą°¾ą°²ą±‡ą°œą± ą²«ą²¾ą²¦ą³†ą²°ą³ ą²®ą³ą²²ą³ą²²ą²°ą³ ą²®ą³†ą²”ą²æą²•ą²²ą³ ą²•ą²¾ą²³ą²œą³ ą“«ą“¾ą“¦ąµ¼ ą“®ąµą“³ąµą“³ąµ†ąµ¼ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(3324, 'https://ror.org/043p8z282', 'en', 1, 'https://ror.org/043p8z282 JR Tokyo General Hospital JRę±äŗ¬ē·åˆē—…é™¢'),
(3325, 'https://ror.org/041wfjw90', 'en', 1, 'https://ror.org/041wfjw90 LungenClinic Grosshansdorf'),
(3326, 'https://ror.org/05v7bbe50', 'tr', 1, 'https://ror.org/05v7bbe50 Fatih Sultan Mehmet Eğitim Ve Araştırma Hastanesi'),
(3327, 'https://ror.org/051cp7s36', 'en', 1, 'https://ror.org/051cp7s36 Fatima Jinnah Medical University فاطمہ جناح Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(3328, 'https://ror.org/00bq4rw46', 'es', 1, 'https://ror.org/00bq4rw46 Hospital Italiano de Buenos Aires'),
(3329, 'https://ror.org/02zfrea47', 'en', 1, 'https://ror.org/02zfrea47 Nacionalni InŔtitut za Javno Zdravje National Institute of Public Health'),
(3330, 'https://ror.org/02xf0fd83', 'en', 1, 'https://ror.org/02xf0fd83 JSS Medical College and Hospital'),
(3331, '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'),
(3332, 'https://ror.org/00tfedq56', 'en', 1, 'https://ror.org/00tfedq56 Center for Medical, Agricultural and Veterinary Entomology'),
(3333, 'https://ror.org/02hxrrn62', 'en', 1, 'https://ror.org/02hxrrn62 Interbalkan Medical Center Ī™Ī±Ļ„ĻĪ¹ĪŗĻŒ Ī”Ī¹Ī±Ī²Ī±Ī»ĪŗĪ±Ī½Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ'),
(3334, 'https://ror.org/02yhdjx59', 'en', 1, 'https://ror.org/02yhdjx59 Interfaith Medical Center'),
(3335, 'https://ror.org/009c06z12', 'en', 1, 'https://ror.org/009c06z12 Intermountain Medical Center'),
(3336, 'https://ror.org/047b5av97', 'nl', 1, 'https://ror.org/047b5av97 Juliana Kinderziekenhuis'),
(3337, 'https://ror.org/01z8t1s57', 'en', 1, 'https://ror.org/01z8t1s57 International Center for Public Health'),
(3338, 'https://ror.org/04cepy814', 'es', 1, 'https://ror.org/04cepy814 Hospital JuƔrez de MƩxico'),
(3339, 'https://ror.org/024amfv85', 'en', 1, 'https://ror.org/024amfv85 Federal Agency for Health and Social Development Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ агентство по Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃŽ Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¼Ńƒ Ń€Š°Š·Š²ŠøŃ‚ŠøŃŽ'),
(3340, 'https://ror.org/04fwyqr44', 'en', 1, 'https://ror.org/04fwyqr44 International Goodwill Hospital å›½éš›č¦Ŗå–„ē·åˆē—…é™¢'),
(3341, 'https://ror.org/0416des07', 'es', 1, 'https://ror.org/0416des07 Hospital Universitario Lucus Augusti'),
(3342, 'https://ror.org/02k2v9264', 'es', 1, 'https://ror.org/02k2v9264 Hospital Luis Calvo Mackenna'),
(3343, 'https://ror.org/02k0t9a94', 'no_lang_code', 1, 'https://ror.org/02k0t9a94 Sankara Nethralaya'),
(3344, 'https://ror.org/03t0zwh35', 'en', 1, 'https://ror.org/03t0zwh35 International Women''s Health Coalition'),
(3345, 'https://ror.org/040f7tw31', 'no_lang_code', 1, 'https://ror.org/040f7tw31 Inuyama Chuo Hospital ēŠ¬å±±äø­å¤®ē—…é™¢'),
(3346, 'https://ror.org/01s0phq15', 'en', 1, 'https://ror.org/01s0phq15 Inverclyde Royal Hospital'),
(3347, 'https://ror.org/04fpj6846', 'en', 1, 'https://ror.org/04fpj6846 Iowa Medical Society'),
(3348, 'https://ror.org/045dgap26', 'en', 1, 'https://ror.org/045dgap26 Iowa Methodist Medical Center'),
(3349, 'https://ror.org/003hjp881', 'pt', 1, 'https://ror.org/003hjp881 Hospital Madre Teresa'),
(3350, 'https://ror.org/01d012874', 'es', 1, 'https://ror.org/01d012874 ClĆ­nica La Luz Hospital La Luz'),
(3351, 'https://ror.org/02p74z057', 'en', 1, 'https://ror.org/02p74z057 K S Hegde Medical Academy'),
(3352, 'https://ror.org/05m3qrs33', 'en', 1, 'https://ror.org/05m3qrs33 Ipswich Hospital'),
(3353, 'https://ror.org/01bn4rh74', 'en', 1, 'https://ror.org/01bn4rh74 Heritage Valley Beaver'),
(3354, 'https://ror.org/00en92979', 'en', 1, 'https://ror.org/00en92979 Kaohsiung Municipal Kai-Syuan Psychiatric Hospital'),
(3355, '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'),
(3356, 'https://ror.org/029rx2040', 'en', 1, 'https://ror.org/029rx2040 Federal Medical Centre'),
(3357, 'https://ror.org/040yv4379', 'fi', 1, 'https://ror.org/040yv4379 Kainuun keskussairaala'),
(3358, 'https://ror.org/03e4nh963', 'en', 1, 'https://ror.org/03e4nh963 Federal Medical Centre');
INSERT INTO `rors` VALUES
(3359, 'https://ror.org/02g8ene02', 'en', 1, 'https://ror.org/02g8ene02 Federal Medical Centre'),
(3360, 'https://ror.org/05ybvz010', 'en', 1, 'https://ror.org/05ybvz010 Mater Dei Hospital'),
(3361, 'https://ror.org/01d59nd22', 'en', 1, 'https://ror.org/01d59nd22 Federal Ministry of Health وزارة الصحة Ų§Ł„Ų„ŲŖŲ­Ų§ŲÆŁŠŲ©'),
(3362, 'https://ror.org/04vccmr34', 'nl', 1, 'https://ror.org/04vccmr34 Medisch Centrum Alkmaar'),
(3363, 'https://ror.org/00btty905', 'en', 1, 'https://ror.org/00btty905 Ireland Army Community Hospital'),
(3364, 'https://ror.org/02cv4ah81', 'en', 1, 'https://ror.org/02cv4ah81 Ishikawa Prefectural Central Hospital ēŸ³å·ēœŒē«‹äø­å¤®ē—…é™¢'),
(3365, 'https://ror.org/01pvgz545', 'no_lang_code', 1, 'https://ror.org/01pvgz545 Ishikiriseiki Hospital ēŸ³åˆ‡ē”Ÿå–œē—…é™¢'),
(3366, 'https://ror.org/034xj0q80', 'en', 1, 'https://ror.org/034xj0q80 Orenburg State Medical Academy ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(3367, 'https://ror.org/03z6cqs20', 'es', 1, 'https://ror.org/03z6cqs20 Hospital Materno-Infantil'),
(3368, 'https://ror.org/04jca3284', 'es', 1, 'https://ror.org/04jca3284 Hospital Metropolitano'),
(3369, 'https://ror.org/02p47pe37', 'de', 1, 'https://ror.org/02p47pe37 Kaiser-Franz-Josef-Spital'),
(3370, 'https://ror.org/03n85hy63', 'es', 1, 'https://ror.org/03n85hy63 Hospital Militar Dr. Carlos Arvelo'),
(3371, 'https://ror.org/01qtc5416', 'en', 1, 'https://ror.org/01qtc5416 Federal Office of Public Health'),
(3372, 'https://ror.org/03j78my65', 'en', 1, 'https://ror.org/03j78my65 Kaiser Foundation Hospital'),
(3373, 'https://ror.org/058ydcm32', 'en', 1, 'https://ror.org/058ydcm32 Kaiser Foundation Hospital'),
(3374, 'https://ror.org/00yep6g06', 'en', 1, 'https://ror.org/00yep6g06 Kaiser Foundation Hospital'),
(3375, 'https://ror.org/00nwc4v84', 'tr', 1, 'https://ror.org/00nwc4v84 İstanbul Eğitim ve Araştırma Hastanesi'),
(3376, 'https://ror.org/00ym4dr28', 'pt', 1, 'https://ror.org/00ym4dr28 Hospital Militar Principal'),
(3377, 'https://ror.org/01cx2sj34', 'pl', 1, 'https://ror.org/01cx2sj34 Centrum Medyczne Kształcenia Podyplomowego'),
(3378, 'https://ror.org/0203evn05', 'en', 1, 'https://ror.org/0203evn05 Federation of American Hospitals'),
(3379, 'https://ror.org/040epzy68', 'en', 1, 'https://ror.org/040epzy68 Istanbul Memorial Hospital'),
(3380, 'https://ror.org/00spys463', 'en', 1, 'https://ror.org/00spys463 Los Angeles Medical Center'),
(3381, 'https://ror.org/009gqrs30', 'pt', 1, 'https://ror.org/009gqrs30 Hospital Moinhos de Vento'),
(3382, 'https://ror.org/04c1s4764', 'es', 1, 'https://ror.org/04c1s4764 Hospital Monte Naranco'),
(3383, 'https://ror.org/022a11m05', 'no_lang_code', 1, 'https://ror.org/022a11m05 Iwaki Kyoritsu General Hospital ć„ć‚ćå…±ē«‹ē·åˆē—…é™¢'),
(3384, 'https://ror.org/03kcxpp45', 'en', 1, 'https://ror.org/03kcxpp45 Iwakuni Medical Center å²©å›½åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3385, 'https://ror.org/01xdjhe59', 'en', 1, 'https://ror.org/01xdjhe59 Iwata City Hospital ē£ē”°åø‚ē«‹ē·åˆē—…é™¢'),
(3386, 'https://ror.org/03mx23f83', 'es', 1, 'https://ror.org/03mx23f83 Hospital Montecelo'),
(3387, 'https://ror.org/0495vrm88', 'es', 1, 'https://ror.org/0495vrm88 Hospital Municipal de Badalona'),
(3388, 'https://ror.org/00nz9t738', 'en', 1, 'https://ror.org/00nz9t738 Ferrarotto Hospital'),
(3389, 'https://ror.org/05y999856', 'pt', 1, 'https://ror.org/05y999856 Hospital MĆ£e de Deus'),
(3390, 'https://ror.org/047ypwv36', 'en', 1, 'https://ror.org/047ypwv36 Baghdad Medical City Ł…ŲÆŁŠŁ†Ų© الطب'),
(3391, 'https://ror.org/04253q669', 'en', 1, 'https://ror.org/04253q669 Medical City Children''s Hospital'),
(3392, 'https://ror.org/03max4q92', 'tr', 1, 'https://ror.org/03max4q92 Izmir Atatürk Eğitim ve Araştırma Hastanesi'),
(3393, 'https://ror.org/028gzjv13', 'en', 1, 'https://ror.org/028gzjv13 Kaiser Permanente Center for Health Research'),
(3394, 'https://ror.org/00w93dg44', 'en', 1, 'https://ror.org/00w93dg44 Na Homolce Hospital Nemocnice Na Homolce'),
(3395, 'https://ror.org/02tdhvw55', 'tr', 1, 'https://ror.org/02tdhvw55 Fırat Üniversitesi Hastanesi'),
(3396, 'https://ror.org/02z7qcb63', 'tr', 1, 'https://ror.org/02z7qcb63 Izmir Bozyaka Eğitim ve Araştırma Hastanesi'),
(3397, 'https://ror.org/03jckbw05', 'en', 1, 'https://ror.org/03jckbw05 First Affiliated Hospital of Chengdu Medical College ęˆéƒ½åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(3398, 'https://ror.org/038h97h67', 'tr', 1, 'https://ror.org/038h97h67 Izmir Tepecik Eğitim ve Araştırma Hastanesi'),
(3399, 'https://ror.org/05rfek682', 'en', 1, 'https://ror.org/05rfek682 Kaiser Permanente Oakland Medical Center'),
(3400, 'https://ror.org/02cbk9w51', 'es', 1, 'https://ror.org/02cbk9w51 Hospital Nacional Dos de Mayo'),
(3401, 'https://ror.org/038yw9848', 'en', 1, 'https://ror.org/038yw9848 Kaiser Permanente Santa Clara Medical Center'),
(3402, 'https://ror.org/039713658', 'en', 1, 'https://ror.org/039713658 First Affiliated Hospital of Chinese PLA General Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ę€»åŒ»é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(3403, 'https://ror.org/02fxsj090', 'en', 1, 'https://ror.org/02fxsj090 Kaiser Permanente San Francisco Medical Center'),
(3404, 'https://ror.org/00s5x0w83', 'es', 1, 'https://ror.org/00s5x0w83 Almirante Nef Naval Hospital Hospital Naval Almirante Nef'),
(3405, 'https://ror.org/017h1mj21', 'en', 1, 'https://ror.org/017h1mj21 Kaiser Permanente Hayward Medical Center'),
(3406, 'https://ror.org/052jt6v75', 'pl', 1, 'https://ror.org/052jt6v75 Wojewódzki Szpital Zespolony im. Jędrzeja Śniadeckiego'),
(3407, 'https://ror.org/00fg98b82', 'en', 1, 'https://ror.org/00fg98b82 Kaiser Permanente San Diego Medical Center'),
(3408, 'https://ror.org/02q404g62', 'en', 1, 'https://ror.org/02q404g62 Kaiser Permanente Sacramento Medical Center'),
(3409, 'https://ror.org/011mkef94', 'en', 1, 'https://ror.org/011mkef94 Kaiser Permanente Walnut Creek Medical Center'),
(3410, 'https://ror.org/02jw82j47', 'en', 1, 'https://ror.org/02jw82j47 Kaiser Permanente Fontana Medical Center'),
(3411, 'https://ror.org/00g3pqv36', 'en', 1, 'https://ror.org/00g3pqv36 First Affiliated Hospital of Jiangxi Medical College'),
(3412, 'https://ror.org/02r3xg590', 'en', 1, 'https://ror.org/02r3xg590 Kaiser Permanente Vallejo Medical Center'),
(3413, 'https://ror.org/01rabm487', 'pt', 1, 'https://ror.org/01rabm487 Hospital Nossa Senhora das GraƧas'),
(3414, 'https://ror.org/02g01ht84', 'en', 1, 'https://ror.org/02g01ht84 First Affiliated Hospital of Kunming Medical University'),
(3415, 'https://ror.org/047hxsy31', 'en', 1, 'https://ror.org/047hxsy31 Kaiser Permanente Anaheim Medical Center'),
(3416, 'https://ror.org/032qfz281', 'en', 1, 'https://ror.org/032qfz281 Kaiser Permanente South San Francisco Medical Center'),
(3417, 'https://ror.org/02y070a55', 'en', 1, 'https://ror.org/02y070a55 Jackson Memorial Hospital'),
(3418, 'https://ror.org/03cyvdv85', 'en', 1, 'https://ror.org/03cyvdv85 First Affiliated Hospital of Wenzhou Medical University'),
(3419, 'https://ror.org/02bz7vk34', 'en', 1, 'https://ror.org/02bz7vk34 Kaiser Permanente Redwood City Medical Center'),
(3420, 'https://ror.org/04kjpp702', 'en', 1, 'https://ror.org/04kjpp702 Kaiser Permanente Santa Rosa Medical Center'),
(3421, 'https://ror.org/0299ptp31', 'en', 1, 'https://ror.org/0299ptp31 Kaiser Permanente San Rafael Medical Center'),
(3422, 'https://ror.org/03gpsj088', 'en', 1, 'https://ror.org/03gpsj088 Jacobs Institute of Women''s Health'),
(3423, 'https://ror.org/01wgych27', 'en', 1, 'https://ror.org/01wgych27 Kaiser Permanente Riverside Medical Center'),
(3424, 'https://ror.org/02qqemj91', 'en', 1, 'https://ror.org/02qqemj91 Jaipur Golden Hospital'),
(3425, 'https://ror.org/01xereq81', 'en', 1, 'https://ror.org/01xereq81 Jamaica Hospital'),
(3426, 'https://ror.org/02sb3pg33', 'en', 1, 'https://ror.org/02sb3pg33 Kaleida Health'),
(3427, 'https://ror.org/05xmvmv34', 'es', 1, 'https://ror.org/05xmvmv34 Centro Sociosanitario Nuestra SeƱora del Pino'),
(3428, 'https://ror.org/00c099g34', 'en', 1, 'https://ror.org/00c099g34 First People''s Hospital of Yunnan Province äŗ‘å—ēœē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(3429, 'https://ror.org/03h5v7z82', 'en', 1, 'https://ror.org/03h5v7z82 Connolly Hospital Blanchardstown OspidƩal Uƭ Chonghaile, Baile BhlainsƩir'),
(3430, 'https://ror.org/05d503a40', 'en', 1, 'https://ror.org/05d503a40 Iwate Prefectural Kamaishi Hospital'),
(3431, 'https://ror.org/01xg9pd38', 'en', 1, 'https://ror.org/01xg9pd38 Fitzgerald Health Education Associates'),
(3432, 'https://ror.org/04cewr321', 'en', 1, 'https://ror.org/04cewr321 University of Vermont Medical Center'),
(3433, 'https://ror.org/01gezbc84', 'en', 1, 'https://ror.org/01gezbc84 Japanese Red Cross Medical Center ę—„ęœ¬čµ¤åå­—ē¤¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3434, 'https://ror.org/04rvms649', 'es', 1, 'https://ror.org/04rvms649 Hospital Nuestra SeƱora de Alarcos'),
(3435, 'https://ror.org/02z7dnx86', 'en', 1, 'https://ror.org/02z7dnx86 Japanese Red Cross Katsushika Maternity Hospital ę—„ęœ¬čµ¤åå­—ē¤¾č‘›é£¾ćƒžć‚æćƒ‹ćƒ†ć‚£ē—…é™¢'),
(3436, 'https://ror.org/004106086', 'en', 1, 'https://ror.org/004106086 Sendai Red Cross Hospital ä»™å°čµ¤åå­—ē—…é™¢'),
(3437, 'https://ror.org/01jh1mm11', 'en', 1, 'https://ror.org/01jh1mm11 Istanbul Florence Nightingale Hospital İstanbul Florence Nightingale Hastanesi'),
(3438, 'https://ror.org/02n1cyj49', 'en', 1, 'https://ror.org/02n1cyj49 AdventHealth Orlando'),
(3439, 'https://ror.org/05ajyt645', 'en', 1, 'https://ror.org/05ajyt645 Japanese Red Cross Society Wakayama Medical Center ę—„ęœ¬čµ¤åå­—ē¤¾å’Œę­Œå±±åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3440, 'https://ror.org/00aqz8k66', 'en', 1, 'https://ror.org/00aqz8k66 Florida Hospital Cancer Institute'),
(3441, 'https://ror.org/022j3nr24', 'en', 1, 'https://ror.org/022j3nr24 Hospital central de Kamuzu Kamuzu Central Hospital'),
(3442, 'https://ror.org/048vjc278', 'en', 1, 'https://ror.org/048vjc278 AdventHealth Celebration'),
(3443, 'https://ror.org/03w5gm511', 'en', 1, 'https://ror.org/03w5gm511 Adventist University of Health Sciences'),
(3444, 'https://ror.org/022h0tq76', 'en', 1, 'https://ror.org/022h0tq76 Kanagawa Children''s Medical Center ē„žå„ˆå·ēœŒē«‹ć“ć©ć‚‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3445, 'https://ror.org/02x2kaq51', 'en', 1, 'https://ror.org/02x2kaq51 Florida Medical Entomology Laboratory'),
(3446, 'https://ror.org/013wvjj62', 'en', 1, 'https://ror.org/013wvjj62 Yokohama Welfare Service Association'),
(3447, 'https://ror.org/01xar8k65', 'en', 1, 'https://ror.org/01xar8k65 Flower Hospital'),
(3448, 'https://ror.org/03ne66j56', 'en', 1, 'https://ror.org/03ne66j56 Flushing Hospital Medical Center'),
(3449, 'https://ror.org/01ec7xj20', 'en', 1, 'https://ror.org/01ec7xj20 Jaswant Rai Speciality Hospital'),
(3450, 'https://ror.org/01yytng49', 'en', 1, 'https://ror.org/01yytng49 Kanagawa Rehabilitation Hospital ē„žå„ˆå·ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(3451, 'https://ror.org/04qesyg82', 'en', 1, 'https://ror.org/04qesyg82 Medical Education Institute'),
(3452, 'https://ror.org/01a4d6k20', 'en', 1, 'https://ror.org/01a4d6k20 Jawaharlal Nehru Medical College'),
(3453, 'https://ror.org/00m8tc820', 'en', 1, 'https://ror.org/00m8tc820 Kanazawa Medical Center é‡‘ę²¢åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3454, 'https://ror.org/01616f936', 'en', 1, 'https://ror.org/01616f936 Jefferson College of Health Sciences'),
(3455, 'https://ror.org/05bq1qp94', 'en', 1, 'https://ror.org/05bq1qp94 Forrest General Hospital'),
(3456, 'https://ror.org/046w0kr18', 'it', 1, 'https://ror.org/046w0kr18 Azienda Ospedaliera Ospedale Civile di Legnano'),
(3457, 'https://ror.org/0228w5t68', 'en', 1, 'https://ror.org/0228w5t68 KK Women''s and Children''s Hospital'),
(3458, 'https://ror.org/04mm17p39', 'en', 1, 'https://ror.org/04mm17p39 Novant Health Forsyth Medical Center'),
(3459, 'https://ror.org/02vt4z508', 'en', 1, 'https://ror.org/02vt4z508 Jen-Ai Hospital ä»ę„›é†«ē™‚č²”åœ˜ę³•äŗŗ'),
(3460, 'https://ror.org/05r6ndz30', 'en', 1, 'https://ror.org/05r6ndz30 Physicians for a National Health Program'),
(3461, 'https://ror.org/02vjsj444', 'en', 1, 'https://ror.org/02vjsj444 Fort Sanders Regional Medical Center'),
(3462, 'https://ror.org/02bqrry13', 'en', 1, 'https://ror.org/02bqrry13 Jerry L. Pettis Memorial VA Medical Center'),
(3463, 'https://ror.org/02srt1z47', 'en', 1, 'https://ror.org/02srt1z47 Kansai Electric Power Hospital é–¢č„æé›»åŠ›ē—…é™¢'),
(3464, 'https://ror.org/03fpqn433', 'es', 1, 'https://ror.org/03fpqn433 Hospital Juan Ramón Jiménez'),
(3465, 'https://ror.org/01wrc0z23', 'en', 1, 'https://ror.org/01wrc0z23 Jersey City Medical Center'),
(3466, 'https://ror.org/024ran220', 'en', 1, 'https://ror.org/024ran220 Kansai Rosai Hospital é–¢č„æć‚ć†ć•ć„ē—…é™¢'),
(3467, 'https://ror.org/00qkhxq50', 'en', 1, 'https://ror.org/00qkhxq50 Jessa Hospital Jessa Ziekenhuis'),
(3468, 'https://ror.org/03wc8tg09', 'en', 1, 'https://ror.org/03wc8tg09 Jessop Hospital'),
(3469, 'https://ror.org/019krky16', 'en', 1, 'https://ror.org/019krky16 Medical Group Management Association'),
(3470, 'https://ror.org/01xngwb59', 'en', 1, 'https://ror.org/01xngwb59 Fortis Escorts Hospital'),
(3471, 'https://ror.org/02vxh6479', 'no_lang_code', 1, 'https://ror.org/02vxh6479 Fortis Hospital'),
(3472, 'https://ror.org/016c9ds94', 'en', 1, 'https://ror.org/016c9ds94 Kanagawa Prefectural Institute of Public Health ē„žå„ˆå·ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(3473, 'https://ror.org/05db3sk67', 'en', 1, 'https://ror.org/05db3sk67 New Jewish Home'),
(3474, 'https://ror.org/056t5qz59', 'no_lang_code', 1, 'https://ror.org/056t5qz59 Fortis Hospital'),
(3475, 'https://ror.org/01h2jcs31', 'en', 1, 'https://ror.org/01h2jcs31 Jewish Hospital'),
(3476, 'https://ror.org/04zbgcp34', 'no_lang_code', 1, 'https://ror.org/04zbgcp34 Kantar Health (United States)'),
(3477, 'https://ror.org/018s10n18', 'en', 1, 'https://ror.org/018s10n18 Jewish Hospital'),
(3478, 'https://ror.org/02tt4fr50', 'no_lang_code', 1, 'https://ror.org/02tt4fr50 Kanto Central Hospital å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆé–¢ę±äø­å¤®ē—…é™¢'),
(3479, 'https://ror.org/0008s4w86', 'en', 1, 'https://ror.org/0008s4w86 Piedmont Atlanta Hospital'),
(3480, 'https://ror.org/0285prp25', 'en', 1, 'https://ror.org/0285prp25 NTT Medical Center NTTę±ę—„ęœ¬é–¢ę±ē—…é™¢'),
(3481, 'https://ror.org/04j339g17', 'en', 1, 'https://ror.org/04j339g17 Tokyo Teishin Hospital ę±äŗ¬é€“äæ”ē—…é™¢'),
(3482, 'https://ror.org/05ejygc42', 'en', 1, 'https://ror.org/05ejygc42 Foundation for Advancement of International Medical Education and Research'),
(3483, 'https://ror.org/05brmpx55', 'en', 1, 'https://ror.org/05brmpx55 John F. Kennedy Medical Center'),
(3484, 'https://ror.org/0070ga397', 'en', 1, 'https://ror.org/0070ga397 John F. Kennedy Medical Center'),
(3485, 'https://ror.org/05npsb488', 'en', 1, 'https://ror.org/05npsb488 Foundation for Medical Research'),
(3486, 'https://ror.org/04h74qb21', 'en', 1, 'https://ror.org/04h74qb21 Pilgrim Hospital'),
(3487, 'https://ror.org/0356c4a29', 'en', 1, 'https://ror.org/0356c4a29 LƤkemedelsverket Medical Products Agency'),
(3488, 'https://ror.org/01dspcb60', 'en', 1, 'https://ror.org/01dspcb60 Jiangxi Provincial People''s Hospital ę±Ÿč„æēœäŗŗę°‘åŒ»é™¢'),
(3489, 'https://ror.org/04tbm0m52', 'en', 1, 'https://ror.org/04tbm0m52 Pinderfields Hospital'),
(3490, 'https://ror.org/00jhae347', 'no_lang_code', 1, 'https://ror.org/00jhae347 Medical Protective'),
(3491, 'https://ror.org/054ezs277', 'en', 1, 'https://ror.org/054ezs277 Framingham Union Hospital'),
(3492, 'https://ror.org/02dr19631', 'en', 1, 'https://ror.org/02dr19631 Medical Radiological Research Center ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ раГиологический Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(3493, 'https://ror.org/04at0zw32', 'en', 1, 'https://ror.org/04at0zw32 Jichi Medical University Hospital č‡Ŗę²»åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(3494, 'https://ror.org/02afbf040', 'en', 1, 'https://ror.org/02afbf040 Karachi Medical and Dental College'),
(3495, 'https://ror.org/04nfc4n06', 'en', 1, 'https://ror.org/04nfc4n06 Franciscan Hospital for Children'),
(3496, 'https://ror.org/05q60vz69', 'en', 1, 'https://ror.org/05q60vz69 South African Medical Research Council'),
(3497, 'https://ror.org/00bxj7497', 'en', 1, 'https://ror.org/00bxj7497 Vidant Medical Center'),
(3498, 'https://ror.org/03j53f755', 'en', 1, 'https://ror.org/03j53f755 ''''ΚαραμανΓάνειο'''' Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΠαίΓων Ī Ī±Ļ„ĻĻŽĪ½ General Hospital Pediatric Karamandanio'),
(3499, 'https://ror.org/01xf83457', 'it', 1, 'https://ror.org/01xf83457 Azienda Ospedaliera San Gerardo'),
(3500, 'https://ror.org/01c2dee93', 'en', 1, 'https://ror.org/01c2dee93 Baystate Franklin Medical Center'),
(3501, 'https://ror.org/03d6dzy78', 'en', 1, 'https://ror.org/03d6dzy78 Karnataka Institute of Medical Sciences ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²µą³†ą³–ą²¦ą³ą²Æą²•ą²æą³•ą²Æ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(3502, 'https://ror.org/01509dj67', 'en', 1, 'https://ror.org/01509dj67 MedStar Franklin Square Medical Center'),
(3503, 'https://ror.org/051b68e86', 'en', 1, 'https://ror.org/051b68e86 Frankston Hospital'),
(3504, 'https://ror.org/04pr9pz75', 'it', 1, 'https://ror.org/04pr9pz75 Azienda Ospedaliera San Giovanni Addolorata San Giovanni Addolorata Hospital'),
(3505, 'https://ror.org/05aem0d44', 'en', 1, 'https://ror.org/05aem0d44 Francis Hospital Franziskus Hospital Bielefeld'),
(3506, 'https://ror.org/0321tdt28', 'it', 1, 'https://ror.org/0321tdt28 Ospedale San Giovanni Antica Sede'),
(3507, 'https://ror.org/055bpw879', 'en', 1, 'https://ror.org/055bpw879 MRC Cognition and Brain Sciences Unit'),
(3508, 'https://ror.org/046vje122', 'en', 1, 'https://ror.org/046vje122 MRC Biostatistics Unit'),
(3509, 'https://ror.org/015nth639', 'en', 1, 'https://ror.org/015nth639 MRC Cancer Unit'),
(3510, 'https://ror.org/0300pwe30', 'it', 1, 'https://ror.org/0300pwe30 Ospedale San Giovanni Bosco'),
(3511, 'https://ror.org/00fk0yb75', 'en', 1, 'https://ror.org/00fk0yb75 Plastic Surgery Hospital'),
(3512, 'https://ror.org/00d264c35', 'en', 1, 'https://ror.org/00d264c35 Frederiksberg Hospital'),
(3513, 'https://ror.org/00cdwy346', 'en', 1, 'https://ror.org/00cdwy346 Freeman Hospital'),
(3514, 'https://ror.org/00q5txg88', 'en', 1, 'https://ror.org/00q5txg88 Plains Health Centre'),
(3515, 'https://ror.org/050pqs331', 'en', 1, 'https://ror.org/050pqs331 MRC Human Nutrition Research'),
(3516, 'https://ror.org/052578691', 'en', 1, 'https://ror.org/052578691 MRC Epidemiology Unit'),
(3517, 'https://ror.org/05qe0pv23', 'no_lang_code', 1, 'https://ror.org/05qe0pv23 Kashiwa Municipal Hospital ęŸåø‚ē«‹ęŸē—…é™¢'),
(3518, 'https://ror.org/03z8x2j90', 'en', 1, 'https://ror.org/03z8x2j90 Frenchay Hospital'),
(3519, 'https://ror.org/02pb4g840', 'tr', 1, 'https://ror.org/02pb4g840 Bahriye Merkez Hastanesi Kasımpaşa Asker Hastanesi'),
(3520, 'https://ror.org/044sjfg03', 'en', 1, 'https://ror.org/044sjfg03 Frere Hospital'),
(3521, 'https://ror.org/025wfj672', 'en', 1, 'https://ror.org/025wfj672 MRC Unit the Gambia'),
(3522, 'https://ror.org/056pbvy42', 'it', 1, 'https://ror.org/056pbvy42 Ospedale di Monfalcone'),
(3523, 'https://ror.org/00mbsbt95', 'it', 1, 'https://ror.org/00mbsbt95 Ospedale San Giovanni Bellinzona'),
(3524, 'https://ror.org/05362x394', 'en', 1, 'https://ror.org/05362x394 MRC Toxicology Unit'),
(3525, 'https://ror.org/021jxzw96', 'it', 1, 'https://ror.org/021jxzw96 Azienda Ospedaliera S.Giuseppe Moscati'),
(3526, 'https://ror.org/01mvmmg68', 'en', 1, 'https://ror.org/01mvmmg68 San Jacinto Methodist Hospital'),
(3527, 'https://ror.org/057s4cx47', 'no_lang_code', 1, 'https://ror.org/057s4cx47 Katsumata Hospital å‹åˆē—…é™¢'),
(3528, 'https://ror.org/03k6ngg59', 'en', 1, 'https://ror.org/03k6ngg59 Friarage Hospital'),
(3529, 'https://ror.org/03jd4q354', 'it', 1, 'https://ror.org/03jd4q354 Ospedale G.B. Morgagni - L.Pierantoni'),
(3530, 'https://ror.org/02r2pcs39', 'en', 1, 'https://ror.org/02r2pcs39 Polyclinic Medical Center'),
(3531, 'https://ror.org/011hz4254', 'en', 1, 'https://ror.org/011hz4254 CRUK/MRC Oxford Institute for Radiation Oncology'),
(3532, 'https://ror.org/03zzvtn22', 'de', 1, 'https://ror.org/03zzvtn22 Klinikum im Friedrichshain'),
(3533, 'https://ror.org/02f4tsf92', 'en', 1, 'https://ror.org/02f4tsf92 MRC Centre for Reproductive Health'),
(3534, 'https://ror.org/00tcmr651', 'en', 1, 'https://ror.org/00tcmr651 Kathmandu Medical College Teaching Hospital'),
(3535, 'https://ror.org/03ay8b853', 'en', 1, 'https://ror.org/03ay8b853 Police General Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø•ąø³ąø£ąø§ąøˆ'),
(3536, 'https://ror.org/0026m8b31', 'it', 1, 'https://ror.org/0026m8b31 Ospedale San Paolo'),
(3537, 'https://ror.org/00bpn0984', 'it', 1, 'https://ror.org/00bpn0984 Ospedale San Paolo'),
(3538, 'https://ror.org/0504y0m80', 'en', 1, 'https://ror.org/0504y0m80 Polyclinic General Hospital'),
(3539, 'https://ror.org/03cfz7739', 'no_lang_code', 1, 'https://ror.org/03cfz7739 Kawasaki Hospital å·å“Žē—…é™¢'),
(3540, 'https://ror.org/03kkr2s40', 'en', 1, 'https://ror.org/03kkr2s40 Pondicherry Institute of Medical Sciences'),
(3541, 'https://ror.org/01nhrc260', 'en', 1, 'https://ror.org/01nhrc260 Froedtert Hospital'),
(3542, 'https://ror.org/00cd86r95', 'en', 1, 'https://ror.org/00cd86r95 Frontier Medical College ŁŲ±Ł†Ł¹ŪŒŲ¦Ų± Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(3543, 'https://ror.org/0112t7451', 'en', 1, 'https://ror.org/0112t7451 Presidio Ospedaliero San Salvatore - Pesaro San Salvatore Hospital'),
(3544, 'https://ror.org/00fb7mg36', 'no_lang_code', 1, 'https://ror.org/00fb7mg36 San-ikukai Hospital č³›č‚²ä¼šē—…é™¢'),
(3545, 'https://ror.org/025bm0k33', 'no_lang_code', 1, 'https://ror.org/025bm0k33 Kawasaki Municipal Hospital å·å“Žåø‚ē«‹å·å“Žē—…é™¢'),
(3546, 'https://ror.org/01aw2gs83', 'en', 1, 'https://ror.org/01aw2gs83 Nagasaki Kawatana Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹é•·å“Žå·ę£šåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3547, 'https://ror.org/058ms9w43', 'en', 1, 'https://ror.org/058ms9w43 Fujian Provincial Cancer Hospital ē¦å»ŗēœč‚æē˜¤åŒ»é™¢'),
(3548, 'https://ror.org/0596qfc35', 'en', 1, 'https://ror.org/0596qfc35 Kaweah Delta Health Care District'),
(3549, 'https://ror.org/009x1kj44', 'pl', 1, 'https://ror.org/009x1kj44 University Children’s Hospital Uniwersytecki Szpital Dziecięcy'),
(3550, 'https://ror.org/03hj7dq77', 'it', 1, 'https://ror.org/03hj7dq77 Ospedale Sandro Pertini'),
(3551, 'https://ror.org/04aw32z04', 'en', 1, 'https://ror.org/04aw32z04 Poriya Medical Center בית חולים ×‘×Ø×•×š פדה'),
(3552, 'https://ror.org/02ysppy04', 'tr', 1, 'https://ror.org/02ysppy04 Kayseri Eğitim ve Araştırma Hastanesi'),
(3553, 'https://ror.org/047asq971', 'en', 1, 'https://ror.org/047asq971 Medical Research Institute of New Zealand'),
(3554, 'https://ror.org/02jwvs344', 'en', 1, 'https://ror.org/02jwvs344 Port Moresby General Hospital'),
(3555, 'https://ror.org/04dd5bw95', 'en', 1, 'https://ror.org/04dd5bw95 Fujisawa City Hospital 藤沢市民病院'),
(3556, 'https://ror.org/01r3kd649', 'tr', 1, 'https://ror.org/01r3kd649 S.B. Keçiören Eğitim ve Araştırma Hastanesi'),
(3557, 'https://ror.org/03w44ff23', 'en', 1, 'https://ror.org/03w44ff23 Brigham and Women''s Faulkner Hospital'),
(3558, 'https://ror.org/01ej92a17', 'en', 1, 'https://ror.org/01ej92a17 Sandviken Hospital Sandviken sykehus'),
(3559, 'https://ror.org/006qqk144', 'no_lang_code', 1, 'https://ror.org/006qqk144 Fukui Prefectural Hospital ē¦äŗ•ēœŒē«‹ē—…é™¢'),
(3560, 'https://ror.org/04wmhsz10', 'en', 1, 'https://ror.org/04wmhsz10 Sandwell General Hospital'),
(3561, 'https://ror.org/04hzsfs96', 'en', 1, 'https://ror.org/04hzsfs96 HƓpital adventiste porter Porter Adventist Hospital'),
(3562, 'https://ror.org/045exnh37', 'no_lang_code', 1, 'https://ror.org/045exnh37 Portiuncula Hospital'),
(3563, 'https://ror.org/00kx7fe64', 'en', 1, 'https://ror.org/00kx7fe64 Fukui Red Cross Hospital ē¦äŗ•čµ¤åå­—ē—…é™¢'),
(3564, 'https://ror.org/006y27614', 'en', 1, 'https://ror.org/006y27614 Keesler Medical Center'),
(3565, 'https://ror.org/0422nk691', 'no_lang_code', 1, 'https://ror.org/0422nk691 Fukujuji Hospital č¤‡åå­—ē—…é™¢'),
(3566, 'https://ror.org/03b982x90', 'en', 1, 'https://ror.org/03b982x90 Post Graduate Medical Institute'),
(3567, 'https://ror.org/02w3g4478', 'en', 1, 'https://ror.org/02w3g4478 Keller Army Community Hospital'),
(3568, 'https://ror.org/00drynx17', 'en', 1, 'https://ror.org/00drynx17 Fukuoka Institute of Health and Environmental Sciences ē¦å²”ēœŒäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(3569, 'https://ror.org/01j25h453', 'en', 1, 'https://ror.org/01j25h453 Kelowna General Hospital'),
(3570, 'https://ror.org/05cqhmv85', 'en', 1, 'https://ror.org/05cqhmv85 SangStat Medical Corporation'),
(3571, 'https://ror.org/010zy0m59', 'en', 1, 'https://ror.org/010zy0m59 Kemerovo State Medical Academy ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(3572, 'https://ror.org/04pcmf738', 'en', 1, 'https://ror.org/04pcmf738 Kempegowda Institute of Medical Sciences ą²•ą³†ą²‚ą²Ŗą³†ą³•ą²—ą³Œą²” ą²µą³†ą³–ą²¦ą³ą²Æą²•ą²æą³•ą²Æ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(3573, 'https://ror.org/00vv7qz60', 'no_lang_code', 1, 'https://ror.org/00vv7qz60 Fukuoka Hospital ē¦å²”ē—…é™¢'),
(3574, 'https://ror.org/04rx0dh54', 'en', 1, 'https://ror.org/04rx0dh54 Sansum Medical Clinic'),
(3575, 'https://ror.org/03zvd4s03', 'en', 1, 'https://ror.org/03zvd4s03 WellStar Kennestone Hospital'),
(3576, 'https://ror.org/038c5sp60', 'en', 1, 'https://ror.org/038c5sp60 Poudre Valley Hospital'),
(3577, 'https://ror.org/022mjvt30', 'en', 1, 'https://ror.org/022mjvt30 Japanese Red Cross Fukuoka Hospital ē¦å²”čµ¤åå­—ē—…é™¢'),
(3578, 'https://ror.org/02p23ar50', 'en', 1, 'https://ror.org/02p23ar50 Kent and Canterbury Hospital'),
(3579, 'https://ror.org/014haym76', 'no_lang_code', 1, 'https://ror.org/014haym76 Fukuoka Tokushukai Hospital ē¦å²”å¾³ę“²ä¼šē—…é™¢'),
(3580, 'https://ror.org/05ne4t757', 'en', 1, 'https://ror.org/05ne4t757 Kent and Sussex Hospital'),
(3581, 'https://ror.org/027xnsa83', 'no_lang_code', 1, 'https://ror.org/027xnsa83 Prapokklao Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøžąø£ąø°ąø›ąøą¹€ąøąø„ą¹‰ąø²'),
(3582, 'https://ror.org/03x295n29', 'no_lang_code', 1, 'https://ror.org/03x295n29 Sant Parmanand Hospital'),
(3583, 'https://ror.org/02y0wc381', 'en', 1, 'https://ror.org/02y0wc381 Pravara Institute of Medical Sciences'),
(3584, 'https://ror.org/04b787h29', 'en', 1, 'https://ror.org/04b787h29 Santa Barbara Cottage Hospital'),
(3585, 'https://ror.org/03fgkzb55', 'en', 1, 'https://ror.org/03fgkzb55 Novant Health Presbyterian Medical Center'),
(3586, 'https://ror.org/01kcq3761', 'en', 1, 'https://ror.org/01kcq3761 Kent Hospital'),
(3587, 'https://ror.org/033dfb770', 'en', 1, 'https://ror.org/033dfb770 Fukuyama Cardiovascular Hospital ē¦å±±å¾Ŗē’°å™Øē—…é™¢'),
(3588, 'https://ror.org/0599zba67', 'tr', 1, 'https://ror.org/0599zba67 Kent Hastanesi Kent Hospital'),
(3589, 'https://ror.org/026r1ac43', 'no_lang_code', 1, 'https://ror.org/026r1ac43 Fukuyama City Hospital ē¦å±±åø‚ę°‘ē—…é™¢'),
(3590, 'https://ror.org/01ym47j46', 'en', 1, 'https://ror.org/01ym47j46 Fulbourn Hospital'),
(3591, 'https://ror.org/02cpwdj94', 'en', 1, 'https://ror.org/02cpwdj94 Kerala Institute of Medical Sciences'),
(3592, 'https://ror.org/048nj0621', 'en', 1, 'https://ror.org/048nj0621 Fulton County Medical Examiner''s Office'),
(3593, 'https://ror.org/05k07p323', 'en', 1, 'https://ror.org/05k07p323 Texas Health Dallas'),
(3594, 'https://ror.org/02nycs597', 'en', 1, 'https://ror.org/02nycs597 Funabashi Municipal Medical Center čˆ¹ę©‹åø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3595, 'https://ror.org/00n2w1t65', 'en', 1, 'https://ror.org/00n2w1t65 Presbyterian Hospital'),
(3596, 'https://ror.org/01by1qv45', 'en', 1, 'https://ror.org/01by1qv45 Santa Casa Hospital'),
(3597, 'https://ror.org/01fvnb423', 'en', 1, 'https://ror.org/01fvnb423 Presbyterian Medical Center ģ˜ˆģˆ˜ė³‘ģ›'),
(3598, 'https://ror.org/01e4z3q24', 'en', 1, 'https://ror.org/01e4z3q24 Priest Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąø‡ąø†ą¹Œ'),
(3599, 'https://ror.org/053hkmn05', 'en', 1, 'https://ror.org/053hkmn05 Primary Children''s Hospital'),
(3600, 'https://ror.org/05ydecq02', 'en', 1, 'https://ror.org/05ydecq02 Urho Kaleva Kekkonen Institute'),
(3601, 'https://ror.org/05w6fx554', 'ro', 1, 'https://ror.org/05w6fx554 Institutul Clinic Fundeni'),
(3602, 'https://ror.org/01eyb5f38', 'en', 1, 'https://ror.org/01eyb5f38 Kern Medical Center'),
(3603, 'https://ror.org/02v7qv571', 'en', 1, 'https://ror.org/02v7qv571 Santa Clara Valley Medical Center'),
(3604, 'https://ror.org/01d261e32', 'en', 1, 'https://ror.org/01d261e32 Furness General Hospital'),
(3605, 'https://ror.org/02cetwy62', 'en', 1, 'https://ror.org/02cetwy62 Prince Charles Hospital'),
(3606, 'https://ror.org/05jse4442', 'it', 1, 'https://ror.org/05jse4442 Ospedale Santa Corona'),
(3607, 'https://ror.org/05hs7nx69', 'en', 1, 'https://ror.org/05hs7nx69 Social Insurance Futase Hospital ē¤¾ä¼šäæé™ŗ äŗŒē€¬ē—…é™¢'),
(3608, 'https://ror.org/05efbh861', 'en', 1, 'https://ror.org/05efbh861 Prince Charles Hospital'),
(3609, 'https://ror.org/01hy1ab69', 'en', 1, 'https://ror.org/01hy1ab69 Michigan Surgical Hospital'),
(3610, 'https://ror.org/01e2avb80', 'en', 1, 'https://ror.org/01e2avb80 Prince George''s Hospital Center'),
(3611, 'https://ror.org/00z0xmg52', 'it', 1, 'https://ror.org/00z0xmg52 Ospedale Santa Maria alle Scotte Santa Maria alle Scotte Hospital'),
(3612, 'https://ror.org/05xysjr32', 'en', 1, 'https://ror.org/05xysjr32 Kessler Institute for Rehabilitation'),
(3613, 'https://ror.org/032kmqj66', 'en', 1, 'https://ror.org/032kmqj66 Kettering General Hospital'),
(3614, 'https://ror.org/022arq532', 'en', 1, 'https://ror.org/022arq532 Prince of Wales Hospital'),
(3615, 'https://ror.org/01zmw6f28', 'it', 1, 'https://ror.org/01zmw6f28 Ospedale Santa Maria Annunziata'),
(3616, 'https://ror.org/02ze5w302', 'en', 1, 'https://ror.org/02ze5w302 Tufts Children''s Hospital'),
(3617, 'https://ror.org/02827ca86', 'en', 1, 'https://ror.org/02827ca86 Prince of Wales Hospital'),
(3618, 'https://ror.org/00akdyv48', 'en', 1, 'https://ror.org/00akdyv48 Centre mƩdical de kettering Kettering Medical Center'),
(3619, 'https://ror.org/02cjhb354', 'it', 1, 'https://ror.org/02cjhb354 Azienda Ospedaliera Santa Maria Degli Angeli'),
(3620, 'https://ror.org/03yb8aa18', 'it', 1, 'https://ror.org/03yb8aa18 Ospedale Santa Maria della Misericordia di Rovigo'),
(3621, 'https://ror.org/04h687w28', 'no_lang_code', 1, 'https://ror.org/04h687w28 Khalili Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų®Ł„ŪŒŁ„ŪŒ'),
(3622, 'https://ror.org/05wc95s05', 'en', 1, 'https://ror.org/05wc95s05 Khoo Teck Puat Hospital'),
(3623, 'https://ror.org/02v6ptf51', 'no_lang_code', 1, 'https://ror.org/02v6ptf51 Khoula Hospital مستؓفى Ų®ŁˆŁ„Ų©'),
(3624, 'https://ror.org/02b68mf79', 'it', 1, 'https://ror.org/02b68mf79 Ospedale Santa Maria'),
(3625, 'https://ror.org/05xswp225', 'en', 1, 'https://ror.org/05xswp225 Khulna Medical College খুলনা মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(3626, 'https://ror.org/011p8xd65', 'en', 1, 'https://ror.org/011p8xd65 Prince Philip Dental Hospital č²č‡˜ē‰™ē§‘é†«é™¢'),
(3627, 'https://ror.org/01vr7z878', 'en', 1, 'https://ror.org/01vr7z878 Khyber Medical College'),
(3628, 'https://ror.org/029gr6k74', 'en', 1, 'https://ror.org/029gr6k74 Medical Society of Delaware'),
(3629, 'https://ror.org/01233dh94', 'en', 1, 'https://ror.org/01233dh94 Prince Philip Hospital'),
(3630, 'https://ror.org/04xnzxv25', 'en', 1, 'https://ror.org/04xnzxv25 Khyber Teaching Hospital'),
(3631, 'https://ror.org/02yjksy18', 'en', 1, 'https://ror.org/02yjksy18 Princess Anne Hospital'),
(3632, 'https://ror.org/01cyv3m84', 'en', 1, 'https://ror.org/01cyv3m84 Ospedale di Santa Maria Nuova Santa Maria Nuova Hospital'),
(3633, 'https://ror.org/053vhdz56', 'en', 1, 'https://ror.org/053vhdz56 Ospedale di Santa Maria Nuova Santa Maria Nuova Hospital'),
(3634, 'https://ror.org/001hsnn10', 'en', 1, 'https://ror.org/001hsnn10 Medical Technology and Practice Patterns Institute'),
(3635, 'https://ror.org/04va7bx33', 'en', 1, 'https://ror.org/04va7bx33 Killingbeck'),
(3636, 'https://ror.org/03zayce58', 'en', 1, 'https://ror.org/03zayce58 Princess Margaret Cancer Centre'),
(3637, 'https://ror.org/05cvd2j85', 'pt', 1, 'https://ror.org/05cvd2j85 Hospital de Santa Marta'),
(3638, 'https://ror.org/02h6j4611', 'en', 1, 'https://ror.org/02h6j4611 Princess Margaret Hospital'),
(3639, 'https://ror.org/01mpngw81', 'en', 1, 'https://ror.org/01mpngw81 Government Kilpauk Medical College ą®•ąÆ€ą®“ąÆą®Ŗą®¾ą®•ąÆą®•ą®®ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(3640, 'https://ror.org/04vq5kb54', 'en', 1, 'https://ror.org/04vq5kb54 UCLA Medical Center'),
(3641, 'https://ror.org/032298f51', 'it', 1, 'https://ror.org/032298f51 Azienda Ospedaliera Sant''Andrea'),
(3642, 'https://ror.org/05atemp08', 'en', 1, 'https://ror.org/05atemp08 MedStar Health'),
(3643, 'https://ror.org/00n1w4965', 'en', 1, 'https://ror.org/00n1w4965 MedStar Union Memorial Hospital'),
(3644, 'https://ror.org/01jckan13', 'en', 1, 'https://ror.org/01jckan13 Kin-ikyo Chuo Hospital å‹¤åŒ»å”äø­å¤®ē—…é™¢'),
(3645, 'https://ror.org/05ry42w04', 'en', 1, 'https://ror.org/05ry42w04 MedStar Washington Hospital Center'),
(3646, 'https://ror.org/010d4kb47', 'it', 1, 'https://ror.org/010d4kb47 Ospedale Sant''Anna'),
(3647, 'https://ror.org/0560xr487', 'en', 1, 'https://ror.org/0560xr487 DR. B.R.A. Institute Rotary Cancer Hospital'),
(3648, 'https://ror.org/03n3pz732', 'en', 1, 'https://ror.org/03n3pz732 Medwin Hospital'),
(3649, 'https://ror.org/01zbhpb91', 'en', 1, 'https://ror.org/01zbhpb91 Meenakshi Ammal Dental College and Hospital'),
(3650, 'https://ror.org/05dhw1e18', 'no_lang_code', 1, 'https://ror.org/05dhw1e18 Kinan Hospital'),
(3651, 'https://ror.org/01ha5h612', 'en', 1, 'https://ror.org/01ha5h612 Princess Margaret Rose Orthopaedic Hospital'),
(3652, 'https://ror.org/02rn1w290', 'en', 1, 'https://ror.org/02rn1w290 Princess Mary Maternity Hospital'),
(3653, 'https://ror.org/01xrsrd14', 'en', 1, 'https://ror.org/01xrsrd14 Meenakshi Mission Hospital and Research Centre'),
(3654, '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'),
(3655, 'https://ror.org/0463dsf87', 'no_lang_code', 1, 'https://ror.org/0463dsf87 G. Papanikolaou General Hospital'),
(3656, 'https://ror.org/01a1mbs69', 'en', 1, 'https://ror.org/01a1mbs69 Princess of Wales Hospital'),
(3657, 'https://ror.org/04pc7j325', 'en', 1, 'https://ror.org/04pc7j325 Meir Medical Center ×ž×Ø×›×– רפואי ×ž××™×Ø'),
(3658, 'https://ror.org/0573ts924', 'en', 1, 'https://ror.org/0573ts924 Princess Royal Hospital'),
(3659, 'https://ror.org/04cjdzt83', 'en', 1, 'https://ror.org/04cjdzt83 King Abdulaziz Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆŲ§Ł„Ų¹Ų²ŁŠ'),
(3660, 'https://ror.org/00jy5cn48', 'en', 1, 'https://ror.org/00jy5cn48 Meitan General Hospital ē…¤ē‚­ę€»åŒ»é™¢'),
(3661, 'https://ror.org/009djsq06', 'en', 1, 'https://ror.org/009djsq06 King Abdulaziz Medical City Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ² Ų§Ł„Ų·ŲØŁŠŲ© للحرس Ų§Ł„ŁˆŲ·Ł†ŁŠ'),
(3662, 'https://ror.org/03mfyz684', 'en', 1, 'https://ror.org/03mfyz684 King County Medical Examiner''s Office'),
(3663, 'https://ror.org/00cmfmh53', 'it', 1, 'https://ror.org/00cmfmh53 Azienda Ospedaliera G.Rummo'),
(3664, 'https://ror.org/021bj7008', 'no_lang_code', 1, 'https://ror.org/021bj7008 Meitetsu Hospital åé‰„ē—…é™¢'),
(3665, 'https://ror.org/00ns3e792', 'en', 1, 'https://ror.org/00ns3e792 King Edward Memorial Hospital'),
(3666, 'https://ror.org/01dszvc69', 'en', 1, 'https://ror.org/01dszvc69 Sapporo Azabu Neurosurgical Hospital ęœ­å¹Œéŗ»ē”Ÿč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(3667, 'https://ror.org/053eyjs84', 'en', 1, 'https://ror.org/053eyjs84 Princess Royal Maternity Hospital'),
(3668, 'https://ror.org/03n60ms07', 'it', 1, 'https://ror.org/03n60ms07 Ospedale G.F. Ingrassia'),
(3669, 'https://ror.org/0222df516', 'en', 1, 'https://ror.org/0222df516 Probity Medical Research'),
(3670, 'https://ror.org/02ycvrx49', 'en', 1, 'https://ror.org/02ycvrx49 Program for Appropriate Technology in Health'),
(3671, 'https://ror.org/05afnhv08', 'en', 1, 'https://ror.org/05afnhv08 Sapporo National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹åŒ—ęµ·é“ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(3672, 'https://ror.org/00z1vyk43', 'en', 1, 'https://ror.org/00z1vyk43 King Fahd Armed Forces Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد Ł„Ł„Ł‚ŁˆŲ§ŲŖ المسلحة'),
(3673, 'https://ror.org/04y2gp806', 'en', 1, 'https://ror.org/04y2gp806 King Fahad Central Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ بجازان'),
(3674, 'https://ror.org/04whfy367', 'en', 1, 'https://ror.org/04whfy367 Memorial Hospital of South Bend'),
(3675, 'https://ror.org/02atdvd89', 'en', 1, 'https://ror.org/02atdvd89 Sarasota Memorial Hospital'),
(3676, 'https://ror.org/02r2tq059', 'en', 1, 'https://ror.org/02r2tq059 Saraswati Dental College and Hospital'),
(3677, 'https://ror.org/01m1gv240', 'en', 1, 'https://ror.org/01m1gv240 King Fahad Specialist Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„ŲŖŲ®ŲµŲµŁŠ'),
(3678, 'https://ror.org/01y946378', 'en', 1, 'https://ror.org/01y946378 Hospital Umum Sarawak Sarawak General Hospital'),
(3679, 'https://ror.org/0099kc363', 'en', 1, 'https://ror.org/0099kc363 Sardar Patel Medical College'),
(3680, 'https://ror.org/02jbzrw51', 'en', 1, 'https://ror.org/02jbzrw51 Gallup Indian Medical Center'),
(3681, 'https://ror.org/04npss011', 'en', 1, 'https://ror.org/04npss011 Gandhi Medical College ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤­ą„‹ą¤Ŗą¤¾ą¤² గాంధీ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(3682, 'https://ror.org/00hx9k210', 'en', 1, 'https://ror.org/00hx9k210 Sasebo City General Hospital ä½äø–äæåø‚ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3683, 'https://ror.org/05v55dh34', 'en', 1, 'https://ror.org/05v55dh34 Memorial Hospital'),
(3684, 'https://ror.org/03r56rv89', 'en', 1, 'https://ror.org/03r56rv89 King Edward VIII Hospital'),
(3685, 'https://ror.org/04e7bpp71', 'no_lang_code', 1, 'https://ror.org/04e7bpp71 King Fahad Hospital Hufūf'),
(3686, 'https://ror.org/04ws1n245', 'en', 1, 'https://ror.org/04ws1n245 King Fahad Hospital Jeddah مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد ŲØŲ¬ŲÆŲ©'),
(3687, 'https://ror.org/05jhpk184', 'en', 1, 'https://ror.org/05jhpk184 Memorial Hospital'),
(3688, 'https://ror.org/01c524129', 'en', 1, 'https://ror.org/01c524129 King Fahd Military Medical Complex'),
(3689, 'https://ror.org/01q6hrg49', 'it', 1, 'https://ror.org/01q6hrg49 Ospedale Garibaldi'),
(3690, 'https://ror.org/02hxrag63', 'en', 1, 'https://ror.org/02hxrag63 Memorial Medical Center'),
(3691, 'https://ror.org/00tkrd758', 'en', 1, 'https://ror.org/00tkrd758 Gartnavel General Hospital'),
(3692, 'https://ror.org/020rvjj03', 'en', 1, 'https://ror.org/020rvjj03 Satakunta Central Hospital'),
(3693, 'https://ror.org/04k820v98', 'en', 1, 'https://ror.org/04k820v98 Saudi Aramco Medical Services Organization'),
(3694, 'https://ror.org/01b3dvp57', 'en', 1, 'https://ror.org/01b3dvp57 Garvan Institute of Medical Research'),
(3695, 'https://ror.org/023hj8v22', 'en', 1, 'https://ror.org/023hj8v22 Memorial Hospital'),
(3696, 'https://ror.org/05n0wgt02', 'en', 1, 'https://ror.org/05n0wgt02 King Faisal Specialist Hospital & Research Centre مستؓفى Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„ Ų§Ł„ŲŖŲ®ŲµŲµŁŠ'),
(3697, 'https://ror.org/00nyr7p12', 'en', 1, 'https://ror.org/00nyr7p12 Gauhati Medical College and Hospital ą¦—ą§Œą¦¹ą¦¾ą¦Ÿą§€ ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(3698, 'https://ror.org/04wpmby09', 'en', 1, 'https://ror.org/04wpmby09 Memorial Regional Hospital'),
(3699, 'https://ror.org/01fksx040', 'en', 1, 'https://ror.org/01fksx040 Gaustad Hospital Gaustad Sykehus'),
(3700, 'https://ror.org/05jytgw54', 'en', 1, 'https://ror.org/05jytgw54 Gay Men''s Health Crisis'),
(3701, 'https://ror.org/027ry4q41', 'en', 1, 'https://ror.org/027ry4q41 Miller Children''s & Women''s Hospital'),
(3702, 'https://ror.org/01xnhkz22', 'en', 1, 'https://ror.org/01xnhkz22 Scarborough General Hospital'),
(3703, 'https://ror.org/05j82jr52', 'en', 1, 'https://ror.org/05j82jr52 Gaylord Hospital'),
(3704, 'https://ror.org/00x396v48', 'en', 1, 'https://ror.org/00x396v48 Mendota Mental Health Institute'),
(3705, 'https://ror.org/00f4kgf41', 'en', 1, 'https://ror.org/00f4kgf41 Gaziantep Children''s Hospital Gaziantep Ƈocuk Hastanesi'),
(3706, 'https://ror.org/05x3tq720', 'en', 1, 'https://ror.org/05x3tq720 Mennonite Christian Hospital 門諾醫院'),
(3707, 'https://ror.org/00qp1n828', 'en', 1, 'https://ror.org/00qp1n828 King George Hospital'),
(3708, 'https://ror.org/02r4khx44', 'en', 1, 'https://ror.org/02r4khx44 King Hussein Medical Center Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų­Ų³ŁŠŁ† Ų§Ł„Ų·ŲØŁŠŲ©'),
(3709, 'https://ror.org/050b05p79', 'en', 1, 'https://ror.org/050b05p79 Sriram Chandra Bhanja Medical College Hospital ą¬¶ą­ą¬°ą­€ą¬°ą¬¾ą¬® ą¬šą¬Øą­ą¬¦ą­ą¬° ą¬­ą¬žą­ą¬œ ą¬­ą­‡ą¬·ą¬œ ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(3710, 'https://ror.org/00ajg8537', 'tr', 1, 'https://ror.org/00ajg8537 Gaziantep Onkoloji Hastanesi'),
(3711, 'https://ror.org/00b7zsw47', 'de', 1, 'https://ror.org/00b7zsw47 Klinik Schillerhƶhe'),
(3712, 'https://ror.org/05a7hcs31', 'en', 1, 'https://ror.org/05a7hcs31 Providence Health & Services Oregon and Southwest Washington'),
(3713, 'https://ror.org/053vynf43', 'en', 1, 'https://ror.org/053vynf43 King Khaled Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ خالد'),
(3714, 'https://ror.org/02dmc4h32', 'en', 1, 'https://ror.org/02dmc4h32 Providence St. Vincent Medical Center'),
(3715, 'https://ror.org/026n33e29', 'en', 1, 'https://ror.org/026n33e29 Cohen Children''s Medical Center'),
(3716, 'https://ror.org/03tp0ty93', 'en', 1, 'https://ror.org/03tp0ty93 Geha Mental Health Center ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש גהה'),
(3717, 'https://ror.org/03j9npf54', 'en', 1, 'https://ror.org/03j9npf54 Geisinger Medical Center'),
(3718, 'https://ror.org/03apjks92', 'en', 1, 'https://ror.org/03apjks92 Martin Luther King, Jr. Multi-Service Ambulatory Care Center'),
(3719, 'https://ror.org/01k05jx47', 'en', 1, 'https://ror.org/01k05jx47 Mercy Catholic Medical Center'),
(3720, 'https://ror.org/04580ts27', 'en', 1, 'https://ror.org/04580ts27 Geisinger Wyoming Valley Medical Center'),
(3721, 'https://ror.org/02emy8e21', 'en', 1, 'https://ror.org/02emy8e21 Kings County Hospital Center'),
(3722, 'https://ror.org/016nh4b93', 'en', 1, 'https://ror.org/016nh4b93 Mercy Children''s Hospital'),
(3723, 'https://ror.org/04bt00m07', 'en', 1, 'https://ror.org/04bt00m07 Mercy General Hospital'),
(3724, 'https://ror.org/02sxmkm79', 'en', 1, 'https://ror.org/02sxmkm79 Mercy Hospital'),
(3725, 'https://ror.org/004cj7n30', 'en', 1, 'https://ror.org/004cj7n30 King''s Cross Hospital'),
(3726, 'https://ror.org/05wyncb52', 'en', 1, 'https://ror.org/05wyncb52 Kings Mill Hospital'),
(3727, 'https://ror.org/03zq81960', 'en', 1, 'https://ror.org/03zq81960 HƓpital gƩnƩral de kingston Kingston General Hospital'),
(3728, 'https://ror.org/05275vm15', 'en', 1, 'https://ror.org/05275vm15 Gelre Hospitals Gelre Ziekenhuizen'),
(3729, 'https://ror.org/05xh86w23', 'en', 1, 'https://ror.org/05xh86w23 Gastroenterology Medical Center and Hospital'),
(3730, 'https://ror.org/008xr7e22', 'en', 1, 'https://ror.org/008xr7e22 Mercy Health System'),
(3731, 'https://ror.org/04g2hhm55', 'en', 1, 'https://ror.org/04g2hhm55 Birmingham General Hospital'),
(3732, 'https://ror.org/01bt82v32', 'en', 1, 'https://ror.org/01bt82v32 Northern Light Mercy Hospital'),
(3733, 'https://ror.org/058s20p71', 'en', 1, 'https://ror.org/058s20p71 Public Health Foundation of India భారత ą°Ŗą±ą°°ą°œą°¾ą°°ą±‹ą°—ą±ą°Æ ą°øą°®ą°¾ą°–ą±ą°Æ'),
(3734, 'https://ror.org/04ar23e02', 'en', 1, 'https://ror.org/04ar23e02 Kingston Hospital'),
(3735, 'https://ror.org/00tta1k37', 'en', 1, 'https://ror.org/00tta1k37 FolktandvƄrden VƤstra Gƶtaland Public Dental Service VƤstra Gƶtaland'),
(3736, 'https://ror.org/02vgb0r89', 'en', 1, 'https://ror.org/02vgb0r89 Kinki Central Hospital 近畿中央病院'),
(3737, 'https://ror.org/01xm3qq33', 'de', 1, 'https://ror.org/01xm3qq33 Schulthess-Klinik'),
(3738, 'https://ror.org/05na1sz60', 'en', 1, 'https://ror.org/05na1sz60 Mercy Medical Center'),
(3739, 'https://ror.org/04zzqmk94', 'en', 1, 'https://ror.org/04zzqmk94 Kintampo Health Research Centre'),
(3740, 'https://ror.org/021x6km63', 'en', 1, 'https://ror.org/021x6km63 Kirwan Health Campus'),
(3741, 'https://ror.org/01ch4qb51', 'en', 1, 'https://ror.org/01ch4qb51 Mercy Hospital for Women'),
(3742, 'https://ror.org/0404efv41', 'en', 1, 'https://ror.org/0404efv41 Mercy Medical Center'),
(3743, 'https://ror.org/01jhgy173', 'en', 1, 'https://ror.org/01jhgy173 Kishiwada City Hospital åø‚ē«‹å²øå’Œē”°åø‚ę°‘ē—…é™¢'),
(3744, 'https://ror.org/009raxq57', 'en', 1, 'https://ror.org/009raxq57 Mercy Medical Center'),
(3745, 'https://ror.org/051525m98', 'en', 1, 'https://ror.org/051525m98 Mercy Medical Center'),
(3746, 'https://ror.org/05gn4hz56', 'no_lang_code', 1, 'https://ror.org/05gn4hz56 Kishiwada Tokushukai Hospital å²øå’Œē”°å¾³ę“²ä¼šē—…é™¢'),
(3747, 'https://ror.org/02yxyvn23', 'en', 1, 'https://ror.org/02yxyvn23 Mercy Medical Center North Iowa'),
(3748, 'https://ror.org/0322p7317', 'en', 1, 'https://ror.org/0322p7317 Kitakyushu Municipal Medical Center åŒ—ä¹å·žåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3749, 'https://ror.org/0057da036', 'en', 1, 'https://ror.org/0057da036 Mercy San Juan Medical Center'),
(3750, 'https://ror.org/04x1z3t86', 'en', 1, 'https://ror.org/04x1z3t86 Mercy St. Vincent Medical Center'),
(3751, 'https://ror.org/05rsbck92', 'no_lang_code', 1, 'https://ror.org/05rsbck92 Kitano Hospital åŒ—é‡Žē—…é™¢'),
(3752, 'https://ror.org/020wf1g18', 'en', 1, 'https://ror.org/020wf1g18 Huron Hospital'),
(3753, 'https://ror.org/04cb32210', 'en', 1, 'https://ror.org/04cb32210 Scottish Rite Hospital'),
(3754, 'https://ror.org/02npavb70', 'en', 1, 'https://ror.org/02npavb70 Shimane Prefectural Institute of Public Health and Environmental Sciences å³¶ę ¹ēœŒäæå„ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(3755, 'https://ror.org/03vd2y814', 'en', 1, 'https://ror.org/03vd2y814 Kitasato University Medical Center åŒ—é‡Œå¤§å­¦ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(3756, 'https://ror.org/025z8ah66', 'en', 1, 'https://ror.org/025z8ah66 Public Health Ontario SantƩ publique Ontario'),
(3757, 'https://ror.org/01z719741', 'en', 1, 'https://ror.org/01z719741 Scripps Clinic Medical Group'),
(3758, 'https://ror.org/01dpw6893', 'en', 1, 'https://ror.org/01dpw6893 Scripps Memorial Hospital'),
(3759, 'https://ror.org/01w756144', 'en', 1, 'https://ror.org/01w756144 Meriter Hospital'),
(3760, 'https://ror.org/02cqyyd50', 'en', 1, 'https://ror.org/02cqyyd50 Nottingham General Hospital'),
(3761, 'https://ror.org/04d9g9604', 'en', 1, 'https://ror.org/04d9g9604 Sankt Hans Hospital'),
(3762, 'https://ror.org/00c9syb98', 'en', 1, 'https://ror.org/00c9syb98 Merlin Park University Hospital'),
(3763, 'https://ror.org/050th9p79', 'en', 1, 'https://ror.org/050th9p79 Scunthorpe General Hospital'),
(3764, 'https://ror.org/03zeamg24', 'no_lang_code', 1, 'https://ror.org/03zeamg24 Kobe Asahi Hospital ē„žęˆøęœę—„ē—…é™¢'),
(3765, 'https://ror.org/04zmppn46', 'en', 1, 'https://ror.org/04zmppn46 Public Health Solutions'),
(3766, 'https://ror.org/03jd3cd78', 'en', 1, 'https://ror.org/03jd3cd78 Kobe Children''s Hospital å…µåŗ«ēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(3767, 'https://ror.org/05av4b478', 'en', 1, 'https://ror.org/05av4b478 Sri Dharmasthala Manjunatheshwara College of Dental Sciences & Hospital'),
(3768, 'https://ror.org/00vmr1p37', 'en', 1, 'https://ror.org/00vmr1p37 Seacroft Hospital'),
(3769, 'https://ror.org/02byvdx91', 'en', 1, 'https://ror.org/02byvdx91 Kobe Rosai Hospital ē„žęˆøåŠ“ē½ē—…é™¢'),
(3770, 'https://ror.org/0466c1b11', 'en', 1, 'https://ror.org/0466c1b11 Kobe City Medical Center West Hospital ē„žęˆøåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼č„æåø‚ę°‘ē—…é™¢'),
(3771, 'https://ror.org/05819fq78', 'en', 1, 'https://ror.org/05819fq78 Punjab Institute of Medical Sciences'),
(3772, 'https://ror.org/00gdcs242', 'en', 1, 'https://ror.org/00gdcs242 MESA Hospital Mesa Hastanesi'),
(3773, 'https://ror.org/04hbpw172', 'en', 1, 'https://ror.org/04hbpw172 Punjab Medical College'),
(3774, 'https://ror.org/057ft1y03', 'no_lang_code', 1, 'https://ror.org/057ft1y03 Kochi Municipal Central Hospital é«˜ēŸ„ēœŒē«‹äø­å¤®ē—…é™¢'),
(3775, 'https://ror.org/03v7hnv07', 'no_lang_code', 1, 'https://ror.org/03v7hnv07 Metaxa Hospital'),
(3776, 'https://ror.org/028jmfg90', 'it', 1, 'https://ror.org/028jmfg90 Ospedale Koelliker'),
(3777, 'https://ror.org/05eb9pt23', 'en', 1, 'https://ror.org/05eb9pt23 Methodist Dallas Medical Center'),
(3778, 'https://ror.org/03psk2k71', 'sl', 1, 'https://ror.org/03psk2k71 SploŔna BolniŔnica Celje'),
(3779, 'https://ror.org/007xcwj53', 'de', 1, 'https://ror.org/007xcwj53 Klinikum Klagenfurt'),
(3780, 'https://ror.org/037y5zq83', 'en', 1, 'https://ror.org/037y5zq83 Kolding Hospital'),
(3781, 'https://ror.org/02s8jk784', 'en', 1, 'https://ror.org/02s8jk784 PVS Memorial Hospital'),
(3782, 'https://ror.org/04929s478', 'en', 1, 'https://ror.org/04929s478 NewYork–Presbyterian Brooklyn Methodist Hospital'),
(3783, 'https://ror.org/05dtqka83', 'hu', 1, 'https://ror.org/05dtqka83 Békés Megyei Központi KórhÔz'),
(3784, 'https://ror.org/02j7h9426', 'no_lang_code', 1, 'https://ror.org/02j7h9426 Komagino Hospital é§’ęœØé‡Žē—…é™¢'),
(3785, 'https://ror.org/031maes79', 'en', 1, 'https://ror.org/031maes79 Second Affiliated Hospital of Chengdu University of Traditional Chinese ęˆéƒ½äø­åŒ»čÆå¤§å­¦'),
(3786, 'https://ror.org/01kq6mv68', 'en', 1, 'https://ror.org/01kq6mv68 Second Affiliated Hospital of Kunming Medical College ę˜†ę˜ŽåŒ»ē§‘å¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(3787, 'https://ror.org/02sz71d65', 'en', 1, 'https://ror.org/02sz71d65 Methodist Hospital'),
(3788, 'https://ror.org/04nrs5002', 'en', 1, 'https://ror.org/04nrs5002 Helen Joseph Hospital'),
(3789, 'https://ror.org/03384k835', 'en', 1, 'https://ror.org/03384k835 Tokushima Red Cross Hospital å¾³å³¶čµ¤åå­—ē—…é™¢'),
(3790, 'https://ror.org/043eknq26', 'en', 1, 'https://ror.org/043eknq26 General Hospital of Nikea Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ĪĪÆĪŗĪ±Ī¹Ī±Ļ‚'),
(3791, 'https://ror.org/05ks08368', 'en', 1, 'https://ror.org/05ks08368 Komfo Anokye Teaching Hospital'),
(3792, 'https://ror.org/020rayx20', 'tr', 1, 'https://ror.org/020rayx20 Konya Eğitim ve Araştırma Hastanesi'),
(3793, 'https://ror.org/005h65c20', 'en', 1, 'https://ror.org/005h65c20 Metropolitan Hospital Center'),
(3794, 'https://ror.org/004qj2391', 'es', 1, 'https://ror.org/004qj2391 Hospital General De Segovia'),
(3795, 'https://ror.org/01c5cqy87', 'en', 1, 'https://ror.org/01c5cqy87 General Hospital of Serres Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī£ĪµĻĻĻŽĪ½');
INSERT INTO `rors` VALUES
(3796, 'https://ror.org/02s3xyj47', 'en', 1, 'https://ror.org/02s3xyj47 Qatif Central Hospital مستؓفى Ų§Ł„Ł‚Ų·ŁŠŁ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(3797, 'https://ror.org/0513nfd47', 'en', 1, 'https://ror.org/0513nfd47 Kootenai Medical Center'),
(3798, 'https://ror.org/0340t0585', 'en', 1, 'https://ror.org/0340t0585 General Hospital of Shenyang Military Region äø­å›½äŗŗę°‘č§£ę”¾å†›ę²ˆé˜³å†›åŒŗę€»åŒ»é™¢'),
(3799, 'https://ror.org/0071a2k97', 'en', 1, 'https://ror.org/0071a2k97 Queen Elizabeth II Medical Centre'),
(3800, 'https://ror.org/035n3nf68', 'en', 1, 'https://ror.org/035n3nf68 Security Forces Hospital'),
(3801, 'https://ror.org/02kxeh053', 'no_lang_code', 1, 'https://ror.org/02kxeh053 Veria General Hospital Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ημαθίας'),
(3802, 'https://ror.org/00a8tg325', 'en', 1, 'https://ror.org/00a8tg325 Korea Institute of Radiological and Medical Sciences ķ•œźµ­ 방사선 과학 ģ—°źµ¬ģ†Œ'),
(3803, 'https://ror.org/05bpnne23', 'en', 1, 'https://ror.org/05bpnne23 MetroWest Medical Center'),
(3804, 'https://ror.org/02jqapy19', 'en', 1, 'https://ror.org/02jqapy19 Qingdao Municipal Hospital'),
(3805, 'https://ror.org/04rha3g10', 'en', 1, 'https://ror.org/04rha3g10 Queen Alexandra Hospital'),
(3806, 'https://ror.org/01r2n9849', 'en', 1, 'https://ror.org/01r2n9849 Saint John''s Hospital'),
(3807, 'https://ror.org/01pxg9d10', 'en', 1, 'https://ror.org/01pxg9d10 Meyer Children''s Hospital'),
(3808, 'https://ror.org/02t3sfp68', 'en', 1, 'https://ror.org/02t3sfp68 Sejong General Hospital 세종 병원'),
(3809, 'https://ror.org/05jr18655', 'en', 1, 'https://ror.org/05jr18655 Self-Defense Forces Central Hospital č‡Ŗč”›éšŠäø­å¤®ē—…é™¢'),
(3810, 'https://ror.org/0243t3259', 'en', 1, 'https://ror.org/0243t3259 Militair Hospitaal Koningin Astrid Queen Astrid Military Hospital'),
(3811, 'https://ror.org/01zc7k534', 'no_lang_code', 1, 'https://ror.org/01zc7k534 Koga Hospital å¤č³€ē—…é™¢'),
(3812, 'https://ror.org/041jyhr41', 'en', 1, 'https://ror.org/041jyhr41 Selly Oak Hospital'),
(3813, 'https://ror.org/02y0x4c78', 'en', 1, 'https://ror.org/02y0x4c78 General Leonard Wood Army Community Hospital'),
(3814, 'https://ror.org/00qdsfq65', 'en', 1, 'https://ror.org/00qdsfq65 Korea National Institute of Health'),
(3815, 'https://ror.org/03wff9w51', 'en', 1, 'https://ror.org/03wff9w51 Sema Hastanesi Sema Hospital'),
(3816, 'https://ror.org/02vn5as77', 'nl', 1, 'https://ror.org/02vn5as77 Streekziekenhuis Koningin Beatrix'),
(3817, 'https://ror.org/00hb4yd20', 'en', 1, 'https://ror.org/00hb4yd20 MGMA Health Care Consulting Group'),
(3818, 'https://ror.org/048d1b238', 'en', 1, 'https://ror.org/048d1b238 Miami Children''s Hospital'),
(3819, 'https://ror.org/025sthg37', 'en', 1, 'https://ror.org/025sthg37 Queen Elizabeth Central Hospital'),
(3820, 'https://ror.org/01vzp6a32', 'en', 1, 'https://ror.org/01vzp6a32 Korle Bu Teaching Hospital'),
(3821, 'https://ror.org/01xxd6b82', 'en', 1, 'https://ror.org/01xxd6b82 Kosair Children''s Hospital'),
(3822, 'https://ror.org/05vchgv90', 'no_lang_code', 1, 'https://ror.org/05vchgv90 Kouseiren Takaoka Hospital åŽšē”Ÿé€£é«˜å²”ē—…é™¢'),
(3823, 'https://ror.org/04bm03037', 'en', 1, 'https://ror.org/04bm03037 Genesis Medical Center'),
(3824, 'https://ror.org/02n22cc74', 'en', 1, 'https://ror.org/02n22cc74 Koshigaya Municipal Hospital č¶Šč°·åø‚ē«‹ē—…é™¢'),
(3825, 'https://ror.org/03snrmr61', 'en', 1, 'https://ror.org/03snrmr61 Genesys Regional Medical Center'),
(3826, 'https://ror.org/02kexp407', 'en', 1, 'https://ror.org/02kexp407 Miami Valley Hospital'),
(3827, 'https://ror.org/05ee2qy47', 'en', 1, 'https://ror.org/05ee2qy47 Queen Elizabeth Hospital'),
(3828, 'https://ror.org/045rd3583', 'no_lang_code', 1, 'https://ror.org/045rd3583 Koto Hospital ę±Ÿę±ē—…é™¢'),
(3829, 'https://ror.org/05yevkn97', 'en', 1, 'https://ror.org/05yevkn97 Sendai Kousei Hospital ä»™å°åŽšē”Ÿē—…é™¢'),
(3830, 'https://ror.org/025ny1854', 'en', 1, 'https://ror.org/025ny1854 George Eliot Hospital'),
(3831, 'https://ror.org/01b1r6152', 'en', 1, 'https://ror.org/01b1r6152 Kowloon Hospital 九龍醫院'),
(3832, 'https://ror.org/010bdq555', 'en', 1, 'https://ror.org/010bdq555 Michigan Health Council'),
(3833, 'https://ror.org/015dyrs73', 'en', 1, 'https://ror.org/015dyrs73 Queen Elizabeth Hospital'),
(3834, 'https://ror.org/003m0tv02', 'en', 1, 'https://ror.org/003m0tv02 Michigan Public Health Institute'),
(3835, 'https://ror.org/01d00rw04', 'en', 1, 'https://ror.org/01d00rw04 KPC Medical College and Hospital কেপিসি মেঔিকাল ą¦•ą¦²ą§‡ą¦œ ও কে ą¦ą¦ø রায় টিবি হাসপাতাল'),
(3836, 'https://ror.org/032q2fe98', 'en', 1, 'https://ror.org/032q2fe98 Michigan State Medical Society'),
(3837, 'https://ror.org/03fwxcd28', 'en', 1, 'https://ror.org/03fwxcd28 Sentara Norfolk General Hospital'),
(3838, 'https://ror.org/002yfn631', 'en', 1, 'https://ror.org/002yfn631 Kuakini Medical Center'),
(3839, 'https://ror.org/01k5k4m02', 'en', 1, 'https://ror.org/01k5k4m02 Jan Evangelista Purkyně Military Medical Academy'),
(3840, 'https://ror.org/001yjqf23', 'en', 1, 'https://ror.org/001yjqf23 Kuang Tien General Hospital å…‰ē”°ē¶œåˆé†«é™¢'),
(3841, 'https://ror.org/04k1cm432', 'en', 1, 'https://ror.org/04k1cm432 Saint Luke''s Hospital'),
(3842, 'https://ror.org/03npxtg86', 'en', 1, 'https://ror.org/03npxtg86 Queen Elizabeth Hospital'),
(3843, 'https://ror.org/05rbwvc13', 'en', 1, 'https://ror.org/05rbwvc13 Queen Elizabeth Hospital'),
(3844, 'https://ror.org/04y3ze847', 'en', 1, 'https://ror.org/04y3ze847 OspidƩal na hOllscoile, Luimneach University Hospital Limerick'),
(3845, 'https://ror.org/00f9c2f73', 'en', 1, 'https://ror.org/00f9c2f73 GF Jooste Hospital'),
(3846, 'https://ror.org/01yth7f19', 'no_lang_code', 1, 'https://ror.org/01yth7f19 Kudanzaka Hospital ä¹ę®µå‚ē—…é™¢'),
(3847, 'https://ror.org/04r9qdk92', 'tr', 1, 'https://ror.org/04r9qdk92 Kudret Eye Hospital Kudret Gƶz Hastanesi'),
(3848, 'https://ror.org/05n9fs062', 'no_lang_code', 1, 'https://ror.org/05n9fs062 Ghaem Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† قائم'),
(3849, 'https://ror.org/00d0zag42', 'no_lang_code', 1, 'https://ror.org/00d0zag42 Wooridul Hospital ģš°ė¦¬ė“¤ 병원'),
(3850, 'https://ror.org/0138ysz16', 'en', 1, 'https://ror.org/0138ysz16 Gifu Municipal Hospital å²é˜œåø‚ę°‘ē—…é™¢'),
(3851, 'https://ror.org/03c266r37', 'en', 1, 'https://ror.org/03c266r37 Gifu Prefectural General Medical Center å²é˜œēœŒē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3852, 'https://ror.org/00jy2zq62', 'en', 1, 'https://ror.org/00jy2zq62 Gifu Prefectural Tajimi Hospital å²é˜œēœŒē«‹å¤šę²»č¦‹ē—…é™¢'),
(3853, 'https://ror.org/05sy5w128', 'en', 1, 'https://ror.org/05sy5w128 Kumamoto Medical Center ē†Šęœ¬åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3854, 'https://ror.org/04tr09862', 'en', 1, 'https://ror.org/04tr09862 Sequoia Hospital'),
(3855, 'https://ror.org/01k1azd31', 'no_lang_code', 1, 'https://ror.org/01k1azd31 Kumamotorosaibyoin ē†Šęœ¬åŠ“ē½ē—…é™¢'),
(3856, 'https://ror.org/04c1d9r22', 'en', 1, 'https://ror.org/04c1d9r22 Services Institute of Medical Sciences سروسز Ų§Ł†Ų³Ł¹ŪŒŁ¹ŁˆŁ¹ آف Ł…ŪŒŚˆŪŒŚ©Ł„ سائنسز ਸੈਰਵਿਸਜ਼ ąØ‡ą©°ąØøąØŸąØæąØŸąØæąØŠąØŸ ਆਫ਼ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ਸਾਈਨਸਜ਼'),
(3857, 'https://ror.org/039tzxh97', 'en', 1, 'https://ror.org/039tzxh97 Queen Elizabeth the Queen Mother Hospital'),
(3858, 'https://ror.org/0124e9159', 'sv', 1, 'https://ror.org/0124e9159 Hallands sjukhus Kungsbacka'),
(3859, 'https://ror.org/054ekwz94', 'en', 1, 'https://ror.org/054ekwz94 Queen Margaret Hospital'),
(3860, 'https://ror.org/0549ak978', 'en', 1, 'https://ror.org/0549ak978 Gifu Red Cross Hospital å²é˜œčµ¤åå­—ē—…é™¢'),
(3861, 'https://ror.org/00fjv1g65', 'en', 1, 'https://ror.org/00fjv1g65 Kunming Children''s Hospital ę˜†ę˜Žåø‚å„æē«„åŒ»é™¢'),
(3862, 'https://ror.org/02xkx3e48', 'en', 1, 'https://ror.org/02xkx3e48 Queen Mary Hospital 瑪麗醫院'),
(3863, 'https://ror.org/01yedz573', 'en', 1, 'https://ror.org/01yedz573 Kunming General Hospital of Chengdu Military Command ęˆéƒ½å†›åŒŗę˜†ę˜Žę€»åŒ»é™¢'),
(3864, 'https://ror.org/044xe8f87', 'en', 1, 'https://ror.org/044xe8f87 Queen Mary''s Hospital Sidcup'),
(3865, 'https://ror.org/04a22qz44', 'en', 1, 'https://ror.org/04a22qz44 Seton Medical Center'),
(3866, 'https://ror.org/043brc084', 'en', 1, 'https://ror.org/043brc084 Kuo General Hospital éƒ­ē»¼åˆåŒ»é™¢'),
(3867, 'https://ror.org/00rws8x56', 'en', 1, 'https://ror.org/00rws8x56 Gimpo Airport Wooridul Spine Hospital ģ„œģšøģš°ė¦¬ė“¤ė³‘ģ›'),
(3868, 'https://ror.org/05pgywt51', 'en', 1, 'https://ror.org/05pgywt51 Queen Elizabeth Hospital'),
(3869, 'https://ror.org/00qexeh70', 'en', 1, 'https://ror.org/00qexeh70 Middlesex Hospital'),
(3870, 'https://ror.org/03s32c292', 'en', 1, 'https://ror.org/03s32c292 Queen Elizabeth II Hospital'),
(3871, 'https://ror.org/03jpj9789', 'en', 1, 'https://ror.org/03jpj9789 Glan Clwyd Hospital Ysbyty Glan Clwyd'),
(3872, 'https://ror.org/00947s692', 'en', 1, 'https://ror.org/00947s692 Kurashiki Central Hospital 倉敷中央病院'),
(3873, 'https://ror.org/02e3mzq40', 'en', 1, 'https://ror.org/02e3mzq40 Middlesex London Health Unit'),
(3874, 'https://ror.org/011ac6r71', 'en', 1, 'https://ror.org/011ac6r71 Glanrhyd Hospital'),
(3875, 'https://ror.org/00gjahp83', 'en', 1, 'https://ror.org/00gjahp83 Midwestern Regional Medical Center'),
(3876, 'https://ror.org/00mynj496', 'no_lang_code', 1, 'https://ror.org/00mynj496 Glazer Medical Solutions (United States)'),
(3877, 'https://ror.org/003t0xc83', 'en', 1, 'https://ror.org/003t0xc83 Glenbrook Hospital'),
(3878, 'https://ror.org/01cb0kd74', 'en', 1, 'https://ror.org/01cb0kd74 Royal Hospital for Children'),
(3879, 'https://ror.org/0176wfg98', 'en', 1, 'https://ror.org/0176wfg98 Gleneagles Hospital'),
(3880, 'https://ror.org/01kqjm533', 'en', 1, 'https://ror.org/01kqjm533 Kurihama Medical and Addiction Center ä¹…é‡ŒęµœåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3881, 'https://ror.org/03c8ed890', 'en', 1, 'https://ror.org/03c8ed890 Sewickley Valley Hospital'),
(3882, 'https://ror.org/01praqa56', 'en', 1, 'https://ror.org/01praqa56 National Institute of Occupational Health'),
(3883, 'https://ror.org/05mhswc23', 'en', 1, 'https://ror.org/05mhswc23 Kushiro City General Hospital åø‚ē«‹é‡§č·Æē·åˆē—…é™¢'),
(3884, 'https://ror.org/01s9rzk09', 'en', 1, 'https://ror.org/01s9rzk09 Kushiro Rosai Hospital é‡§č·Æć‚ć†ć•ć„ē—…é™¢'),
(3885, 'https://ror.org/01rvf6k07', 'en', 1, 'https://ror.org/01rvf6k07 Military Hospital'),
(3886, 'https://ror.org/000fvwg06', 'en', 1, 'https://ror.org/000fvwg06 Queen Sirikit National Institute of Child Health'),
(3887, 'https://ror.org/05kz7bw59', 'en', 1, 'https://ror.org/05kz7bw59 Kwai Chung Hospital č‘µę¶Œé†«é™¢'),
(3888, 'https://ror.org/01ywpxj09', 'en', 1, 'https://ror.org/01ywpxj09 Queen Victoria Hospital'),
(3889, 'https://ror.org/0038nst28', 'no_lang_code', 1, 'https://ror.org/0038nst28 Kwangju Christian Hospital ź“‘ģ£¼źø°ė…ė³‘ģ›'),
(3890, 'https://ror.org/03s9jrm13', 'no_lang_code', 1, 'https://ror.org/03s9jrm13 Kwong Wah Hospital å»£čÆé†«é™¢'),
(3891, 'https://ror.org/011tz3351', 'en', 1, 'https://ror.org/011tz3351 Queens Hospital Center'),
(3892, 'https://ror.org/04d0szq68', 'en', 1, 'https://ror.org/04d0szq68 Shaare Zedek Medical Center ×ž×Ø×›×– רפואי שערי צדק'),
(3893, 'https://ror.org/05mmga691', 'fi', 1, 'https://ror.org/05mmga691 Kymenlaakson keskussairaala'),
(3894, 'https://ror.org/00b4wat71', 'en', 1, 'https://ror.org/00b4wat71 Shadyside Hospital'),
(3895, 'https://ror.org/01605g366', 'en', 1, 'https://ror.org/01605g366 Kyoto City Hospital äŗ¬éƒ½åø‚ē«‹ē—…é™¢'),
(3896, 'https://ror.org/03ap6wx93', 'en', 1, 'https://ror.org/03ap6wx93 Queen''s Medical Centre'),
(3897, 'https://ror.org/05qz2jt34', 'de', 1, 'https://ror.org/05qz2jt34 Bundeswehrkrankenhaus'),
(3898, 'https://ror.org/002tz8e96', 'en', 1, 'https://ror.org/002tz8e96 Shaikh Zayed Hospital'),
(3899, 'https://ror.org/058prbp42', 'en', 1, 'https://ror.org/058prbp42 Shaikh Zayed Postgraduate Medical Institute ؓیخ زید پوسٹ گریجویٹ Ł…ŪŒŚˆŪŒŚ©Ł„ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(3900, 'https://ror.org/009afvb77', 'en', 1, 'https://ror.org/009afvb77 Provincial Laboratory of Public Health'),
(3901, 'https://ror.org/0460s9920', 'en', 1, 'https://ror.org/0460s9920 Kyoto first Red Cross hospital äŗ¬éƒ½ē¬¬äø€čµ¤åå­—ē—…é™¢'),
(3902, 'https://ror.org/017j2n938', 'en', 1, 'https://ror.org/017j2n938 Kobe Central Hospital ē„žęˆøäø­å¤®ē—…é™¢'),
(3903, 'https://ror.org/05e1xz016', 'en', 1, 'https://ror.org/05e1xz016 Shalvata Mental Health Center ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש ×©×œ×•×•×Ŗ×”'),
(3904, 'https://ror.org/03ffc6g28', 'en', 1, 'https://ror.org/03ffc6g28 Kagawa National Children''s Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹é¦™å·å°å…ē—…é™¢'),
(3905, 'https://ror.org/04w3ve464', 'no_lang_code', 1, 'https://ror.org/04w3ve464 Kyoto Katsura Hospital äŗ¬éƒ½ę”‚ē—…é™¢'),
(3906, 'https://ror.org/022296476', 'en', 1, 'https://ror.org/022296476 National Kyushu Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ ä¹å·žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3907, 'https://ror.org/03jcxa214', 'en', 1, 'https://ror.org/03jcxa214 National Maternity Hospital'),
(3908, 'https://ror.org/04dt6a039', 'en', 1, 'https://ror.org/04dt6a039 Military Medical Academy Š’Š¾Ń˜Š½Š¾Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ° акаГемија'),
(3909, 'https://ror.org/04n4f3r80', 'en', 1, 'https://ror.org/04n4f3r80 Military Hospital of Tunis'),
(3910, 'https://ror.org/03tatzf36', 'en', 1, 'https://ror.org/03tatzf36 Shandong Eye Institute & Hospital å±±äøœēœēœ¼ē§‘ē ”ē©¶ę‰€é’å²›äøŽåŒ»é™¢'),
(3911, 'https://ror.org/05fyf7995', 'en', 1, 'https://ror.org/05fyf7995 R. G. Kar Medical College and Hospital'),
(3912, 'https://ror.org/04xz2c768', 'en', 1, 'https://ror.org/04xz2c768 R. K. Khan Hospital'),
(3913, 'https://ror.org/03wq4px44', 'en', 1, 'https://ror.org/03wq4px44 North Medical Center äŗ¬éƒ½åŗœē«‹åŒ»ē§‘å¤§å­¦é™„å±žåŒ—éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3914, 'https://ror.org/00cd9s024', 'en', 1, 'https://ror.org/00cd9s024 Shanghai Children''s Medical Center äøŠęµ·å„æē«„åŒ»å­¦äø­åæƒ'),
(3915, 'https://ror.org/04x495f64', 'en', 1, 'https://ror.org/04x495f64 Rainbow Babies & Children''s Hospital'),
(3916, 'https://ror.org/05bd2wa15', 'en', 1, 'https://ror.org/05bd2wa15 Shanghai Mental Health Center äøŠęµ·åø‚ē²¾ē„žå«ē”Ÿäø­åæƒ'),
(3917, 'https://ror.org/010wh8q62', 'en', 1, 'https://ror.org/010wh8q62 Raja Isteri Pengiran Anak Saleha Hospital'),
(3918, 'https://ror.org/02sttfr93', 'en', 1, 'https://ror.org/02sttfr93 Kyushu Central Hospital of the Mutual Aid Association of Public School Teachers å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆ ä¹å·žäø­å¤®ē—…é™¢'),
(3919, 'https://ror.org/0238gtq84', 'en', 1, 'https://ror.org/0238gtq84 Rajavithi Hospital'),
(3920, 'https://ror.org/01ayqmq97', 'en', 1, 'https://ror.org/01ayqmq97 Rajendra Hospital'),
(3921, 'https://ror.org/0258h0g75', 'en', 1, 'https://ror.org/0258h0g75 Rajendra Institute of Medical Sciences'),
(3922, 'https://ror.org/02k4h0b10', 'en', 1, 'https://ror.org/02k4h0b10 Rajshahi Medical College ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(3923, 'https://ror.org/012nfex57', 'no_lang_code', 1, 'https://ror.org/012nfex57 Rakuwakai Otowa Hospital ę“›å’Œä¼šéŸ³ē¾½ē—…é™¢'),
(3924, 'https://ror.org/02qv90y91', 'en', 1, 'https://ror.org/02qv90y91 Nagasaki Medical Center é•·å“ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3925, 'https://ror.org/05v58y004', 'en', 1, 'https://ror.org/05v58y004 Shaoxing People''s Hospital ē»å…“åø‚äŗŗę°‘åŒ»é™¢'),
(3926, 'https://ror.org/01rb4vv49', 'en', 1, 'https://ror.org/01rb4vv49 Shariati Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ؓریعتی'),
(3927, 'https://ror.org/04e2x2229', 'en', 1, 'https://ror.org/04e2x2229 Lala Lajpat Rai Memorial Medical College'),
(3928, 'https://ror.org/058peea52', 'en', 1, 'https://ror.org/058peea52 Sharp Cabrillo Hospital'),
(3929, 'https://ror.org/02zwxrr04', 'en', 1, 'https://ror.org/02zwxrr04 Sharp Grossmont Hospital'),
(3930, 'https://ror.org/05wstbs93', 'en', 1, 'https://ror.org/05wstbs93 Obihiro National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹åøÆåŗƒē—…é™¢'),
(3931, 'https://ror.org/03fvp2v86', 'en', 1, 'https://ror.org/03fvp2v86 Lokmanya Tilak Municipal General Hospital and Lokmanya Tilak Municipal Medical College'),
(3932, 'https://ror.org/04nctyb57', 'en', 1, 'https://ror.org/04nctyb57 Sharp Mary Birch Hospital for Women & Newborns'),
(3933, 'https://ror.org/03t8gvx47', 'en', 1, 'https://ror.org/03t8gvx47 Rampton Hospital'),
(3934, 'https://ror.org/01gynte55', 'en', 1, 'https://ror.org/01gynte55 Sharp Memorial Hospital'),
(3935, 'https://ror.org/009erh992', 'en', 1, 'https://ror.org/009erh992 Sharp Rees-Stealy Medical Group'),
(3936, 'https://ror.org/037s3ck33', 'en', 1, 'https://ror.org/037s3ck33 Shatin Hospital 沙田醫院'),
(3937, 'https://ror.org/01a3zyd02', 'it', 1, 'https://ror.org/01a3zyd02 Ospedale Regionale di Locarno'),
(3938, 'https://ror.org/05faw8a11', 'en', 1, 'https://ror.org/05faw8a11 Shaughnessy Hospital'),
(3939, 'https://ror.org/0091mqf26', 'en', 1, 'https://ror.org/0091mqf26 Oita Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ å¤§åˆ†åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(3940, 'https://ror.org/03btpnr35', 'en', 1, 'https://ror.org/03btpnr35 Shaukat Khanum Memorial Cancer Hospital and Research Center ؓوکت خانم یادگاری سرطان ؓفاخانہ اور مرکز ŲŖŲ­Ł‚ŪŒŁ‚'),
(3941, 'https://ror.org/01ska0k70', 'en', 1, 'https://ror.org/01ska0k70 Millard Fillmore Suburban Hospital'),
(3942, 'https://ror.org/02vnyaz83', 'en', 1, 'https://ror.org/02vnyaz83 Mills Peninsula Health Services'),
(3943, 'https://ror.org/03wwnw466', 'en', 1, 'https://ror.org/03wwnw466 Milpark Hospital'),
(3944, 'https://ror.org/05jt1df44', 'en', 1, 'https://ror.org/05jt1df44 Milton Keynes Hospital'),
(3945, 'https://ror.org/05n8v4z84', 'en', 1, 'https://ror.org/05n8v4z84 Milwaukee County Medical Complex'),
(3946, 'https://ror.org/03gd1jf50', 'en', 1, 'https://ror.org/03gd1jf50 Shaikh Khalifa Medical City Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų“ŁŠŲ® Ų®Ł„ŁŠŁŲ© Ų§Ł„Ų·ŲØŁŠŲ©'),
(3947, 'https://ror.org/030rm3988', 'en', 1, 'https://ror.org/030rm3988 National Police Hospital 국립경찰병원'),
(3948, 'https://ror.org/01kdnph40', 'es', 1, 'https://ror.org/01kdnph40 Hospital La Paloma'),
(3949, 'https://ror.org/02zh77j65', 'en', 1, 'https://ror.org/02zh77j65 National Registry of Emergency Medical Technicians'),
(3950, 'https://ror.org/006yqdy38', 'en', 1, 'https://ror.org/006yqdy38 Min Sheng General Hospital ę•ē››ē¶œåˆé†«é™¢'),
(3951, 'https://ror.org/03q3gmk48', 'en', 1, 'https://ror.org/03q3gmk48 MedStar National Rehabilitation Hospital'),
(3952, 'https://ror.org/04hsvgn43', 'en', 1, 'https://ror.org/04hsvgn43 Rangaraya Medical College'),
(3953, 'https://ror.org/02y9xvd02', 'en', 1, 'https://ror.org/02y9xvd02 Shenyang Medical College ę²ˆé˜³åŒ»å­¦é™¢'),
(3954, 'https://ror.org/036mbxj57', 'en', 1, 'https://ror.org/036mbxj57 Banff Mineral Springs Hospital'),
(3955, 'https://ror.org/038v5dr76', 'en', 1, 'https://ror.org/038v5dr76 Rapid City Regional Hospital'),
(3956, 'https://ror.org/02teamz63', 'en', 1, 'https://ror.org/02teamz63 La Rabida Children''s Hospital'),
(3957, 'https://ror.org/04fz99q08', 'en', 1, 'https://ror.org/04fz99q08 Minami Wakayama Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹å—å’Œę­Œå±±åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(3958, 'https://ror.org/02cm2rk35', 'en', 1, 'https://ror.org/02cm2rk35 Raritan Bay Medical Center'),
(3959, 'https://ror.org/01gvfxs59', 'en', 1, 'https://ror.org/01gvfxs59 National Sagamihara Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹ē›øęØ”åŽŸē—…é™¢'),
(3960, 'https://ror.org/03gfmry48', 'en', 1, 'https://ror.org/03gfmry48 Sheppard and Enoch Pratt Hospital'),
(3961, 'https://ror.org/04b2pvs09', 'en', 1, 'https://ror.org/04b2pvs09 Rashid Hospital مستؓفى Ų±Ų§Ų“ŲÆ'),
(3962, 'https://ror.org/056nn5n22', 'en', 1, 'https://ror.org/056nn5n22 Aurora Sinai Medical Center'),
(3963, 'https://ror.org/00dwz8y55', 'en', 1, 'https://ror.org/00dwz8y55 Sheppard Pratt Health System'),
(3964, 'https://ror.org/01v8mb410', 'en', 1, 'https://ror.org/01v8mb410 National Sanyo Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹å±±å£å®‡éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3965, 'https://ror.org/04f6p2t28', 'en', 1, 'https://ror.org/04f6p2t28 Hospital Labbafinejad ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł„ŲØŲ§ŁŪŒā€ŒŁ†Ś˜'),
(3966, 'https://ror.org/00mrhvv69', 'en', 1, 'https://ror.org/00mrhvv69 Kementerian Kesihatan Singapura Ministry of Health ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®šąÆą®•ą®¾ą®¤ą®¾ą®° ą®…ą®®ąÆˆą®šąÆą®šą®•ą®®ąÆ ę–°åŠ å”å«ē”ŸéƒØ'),
(3967, 'https://ror.org/029hzjx43', 'en', 1, 'https://ror.org/029hzjx43 Rappaport Family Institute for Research in the Medical Sciences'),
(3968, 'https://ror.org/01yhc9w15', 'en', 1, 'https://ror.org/01yhc9w15 Sherman Hospital'),
(3969, 'https://ror.org/03t3q6164', 'en', 1, 'https://ror.org/03t3q6164 Rancho Los Amigos National Rehabilitation Center'),
(3970, 'https://ror.org/0362za439', 'en', 1, 'https://ror.org/0362za439 Ministry of Health'),
(3971, 'https://ror.org/036njfn21', 'en', 1, 'https://ror.org/036njfn21 Ministry of Health'),
(3972, 'https://ror.org/00vjb5165', 'en', 1, 'https://ror.org/00vjb5165 Ministry of Health'),
(3973, 'https://ror.org/03r419717', 'en', 1, 'https://ror.org/03r419717 Kementerian Kesehatan Ministry of Health'),
(3974, 'https://ror.org/05x0h7m97', 'en', 1, 'https://ror.org/05x0h7m97 Ratchaburi Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø£ąø²ąøŠąøšąøøąø£ąøµ'),
(3975, 'https://ror.org/02944xg79', 'en', 1, 'https://ror.org/02944xg79 Laconia Women''s Health Center'),
(3976, 'https://ror.org/02maedm12', 'en', 1, 'https://ror.org/02maedm12 Rawalpindi Medical University'),
(3977, 'https://ror.org/005t72d47', 'en', 1, 'https://ror.org/005t72d47 Antrim Area Hospital'),
(3978, 'https://ror.org/05b8yvg40', 'en', 1, 'https://ror.org/05b8yvg40 Barnsley Hospital'),
(3979, 'https://ror.org/045s3rx57', 'en', 1, 'https://ror.org/045s3rx57 Bedford Hospital'),
(3980, 'https://ror.org/01bcp3a67', 'en', 1, 'https://ror.org/01bcp3a67 Benenden Hospital'),
(3981, 'https://ror.org/009vheq40', 'en', 1, 'https://ror.org/009vheq40 Churchill Hospital'),
(3982, 'https://ror.org/0357r2107', 'en', 1, 'https://ror.org/0357r2107 Ministry of Health'),
(3983, 'https://ror.org/03x8jdc94', 'en', 1, 'https://ror.org/03x8jdc94 Lady Hardinge Medical College'),
(3984, 'https://ror.org/057n8mx64', 'en', 1, 'https://ror.org/057n8mx64 Ministry of Health وزارة الصحة'),
(3985, 'https://ror.org/01eq8c489', 'en', 1, 'https://ror.org/01eq8c489 Lady Reading Hospital'),
(3986, 'https://ror.org/04pysv427', 'en', 1, 'https://ror.org/04pysv427 Lady Ridgeway Hospital for Children ą®²ąÆ‡ą®Ÿą®æ ą®°ą®æą®ŸąÆą®œąÆą®µąÆ‡ ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆą®Æą®æą®²ąÆ ą¶»ą·’ą¶¢ą·Šą·€ą·š ą¶†ą¶»ą·Šą¶ŗą· ą·…ą¶øą· ą¶»ą·ą·„ą¶½'),
(3987, 'https://ror.org/03jfzsd28', 'en', 1, 'https://ror.org/03jfzsd28 Shigei Medical Research Institute é‡äŗ•åŒ»å­¦ē ”ē©¶ę‰€'),
(3988, 'https://ror.org/03mbq3y29', 'en', 1, 'https://ror.org/03mbq3y29 Lahey Hospital and Medical Center'),
(3989, 'https://ror.org/018k7fz65', 'en', 1, 'https://ror.org/018k7fz65 Ministry of Health įž€įŸ’įžšįžŸįž½įž„įžŸįž»įžįž¶įž—įž·įž”įž¶įž›'),
(3990, 'https://ror.org/04kk13p96', 'en', 1, 'https://ror.org/04kk13p96 Reading Hospital'),
(3991, 'https://ror.org/042qjjy86', 'en', 1, 'https://ror.org/042qjjy86 Ministry of Health į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€į€”į€ŗį€€į€¼į€®į€øį€Œį€¬į€”'),
(3992, 'https://ror.org/04d6eav07', 'en', 1, 'https://ror.org/04d6eav07 Red Cross War Memorial Children''s Hospital'),
(3993, 'https://ror.org/02rfs1804', 'no_lang_code', 1, 'https://ror.org/02rfs1804 Shimada Municipal Hospital 島田市民病院'),
(3994, 'https://ror.org/03rq2h425', 'no_lang_code', 1, 'https://ror.org/03rq2h425 Shimane Prefectural Central Hospital å³¶ę ¹ēœŒē«‹äø­å¤®ē—…é™¢'),
(3995, 'https://ror.org/02408be69', 'en', 1, 'https://ror.org/02408be69 National Center of Hygiene Medical Ecology and Nutrition'),
(3996, 'https://ror.org/03w5j8p12', 'en', 1, 'https://ror.org/03w5j8p12 Rega Institute for Medical Research'),
(3997, 'https://ror.org/059f2k568', 'en', 1, 'https://ror.org/059f2k568 Ministry of Health'),
(3998, 'https://ror.org/027f9rb06', 'en', 1, 'https://ror.org/027f9rb06 Shimonoseki City Hospital 下関市立市民病院'),
(3999, 'https://ror.org/04x744g62', 'en', 1, 'https://ror.org/04x744g62 Shin Kong WHS Memorial Hospital'),
(4000, 'https://ror.org/03yzzaw34', 'it', 1, 'https://ror.org/03yzzaw34 Ospedale Regina Apostolorum'),
(4001, 'https://ror.org/029tn5b56', 'en', 1, 'https://ror.org/029tn5b56 Regina General Hospital'),
(4002, 'https://ror.org/05gpmx630', 'no_lang_code', 1, 'https://ror.org/05gpmx630 ShinKokura Hospital ę–°å°å€‰ē—…é™¢'),
(4003, 'https://ror.org/02t5j9303', 'en', 1, 'https://ror.org/02t5j9303 Lakehead Psychiatric Hospital'),
(4004, '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'),
(4005, 'https://ror.org/03pmd4250', 'no_lang_code', 1, 'https://ror.org/03pmd4250 Shinko Hospital ē„žé‹¼čØ˜åæµē—…é™¢'),
(4006, 'https://ror.org/03cbwf726', 'en', 1, 'https://ror.org/03cbwf726 Lakeland Regional Medical Center'),
(4007, 'https://ror.org/016dxxy13', 'en', 1, 'https://ror.org/016dxxy13 Ministry of Health ąøąø£ąø°ąø—ąø£ąø§ąø‡ąøŖąø²ąø˜ąø²ąø£ąø“ąøŖąøøąø‚'),
(4008, 'https://ror.org/0231m7n15', 'en', 1, 'https://ror.org/0231m7n15 Lake Regional Hospital'),
(4009, 'https://ror.org/0351yd374', 'en', 1, 'https://ror.org/0351yd374 Shinkyo Hospital'),
(4010, 'https://ror.org/01dm18990', 'en', 1, 'https://ror.org/01dm18990 Lakeshore Hospital'),
(4011, 'https://ror.org/038estk42', 'en', 1, 'https://ror.org/038estk42 Shinmatsudo Central General Hospital ę–°ę¾ęˆøäø­å¤®ē·åˆē—…é™¢'),
(4012, 'https://ror.org/03r7eh333', 'en', 1, 'https://ror.org/03r7eh333 Tulane Lakeside Hospital'),
(4013, 'https://ror.org/0024aa414', 'en', 1, 'https://ror.org/0024aa414 National Institute of Public Health å›½ē«‹äæå„åŒ»ē™‚ē§‘å­¦é™¢'),
(4014, 'https://ror.org/05m4bwg25', 'no_lang_code', 1, 'https://ror.org/05m4bwg25 Shinonoi General Hospital ēÆ ćƒŽäŗ•ē·åˆē—…é™¢'),
(4015, 'https://ror.org/04e857469', 'it', 1, 'https://ror.org/04e857469 Ospedale Regina Margherita Regina Margherita hospital'),
(4016, 'https://ror.org/01qe7f394', 'en', 1, 'https://ror.org/01qe7f394 Ministerio de Salud de Chile Ministry of Health'),
(4017, 'https://ror.org/04fs4yy09', 'en', 1, 'https://ror.org/04fs4yy09 Lakewood Regional Medical Center'),
(4018, 'https://ror.org/029x6kq07', 'en', 1, 'https://ror.org/029x6kq07 Regina Qu''Appelle Health Region'),
(4019, 'https://ror.org/041tn5e09', 'no_lang_code', 1, 'https://ror.org/041tn5e09 Shinrakuen Hospital äæ”ę„½åœ’ē—…é™¢'),
(4020, 'https://ror.org/03s2fmv96', 'en', 1, 'https://ror.org/03s2fmv96 Lancaster General Hospital'),
(4021, 'https://ror.org/03xh40058', 'en', 1, 'https://ror.org/03xh40058 Ministry of Health وزارة الصحة'),
(4022, 'https://ror.org/02t36bt26', 'en', 1, 'https://ror.org/02t36bt26 Regional Institute of Medical Sciences'),
(4023, 'https://ror.org/044wvm991', 'no_lang_code', 1, 'https://ror.org/044wvm991 Laniado Hospital'),
(4024, 'https://ror.org/00f2gwr16', 'en', 1, 'https://ror.org/00f2gwr16 Lankenau Medical Center'),
(4025, 'https://ror.org/05raceh98', 'no_lang_code', 1, 'https://ror.org/05raceh98 Shirasagi Hospital 白鷺病院'),
(4026, 'https://ror.org/03t78za89', 'en', 1, 'https://ror.org/03t78za89 Regional Medical Center'),
(4027, 'https://ror.org/00j0b8v53', 'en', 1, 'https://ror.org/00j0b8v53 Regional Medical Research Center ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤—ą¤æą¤Øą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(4028, 'https://ror.org/01qr3vg91', 'en', 1, 'https://ror.org/01qr3vg91 Regional Medical Research Centre'),
(4029, 'https://ror.org/02hsneh43', 'en', 1, 'https://ror.org/02hsneh43 Shizuoka City Hospital é™å²”åø‚ē«‹é™å²”ē—…é™¢'),
(4030, 'https://ror.org/00hswnf74', 'no_lang_code', 1, 'https://ror.org/00hswnf74 Shizuoka City Shimizu Hospital é™å²”åø‚ē«‹ęø…ę°“ē—…é™¢'),
(4031, 'https://ror.org/049840423', 'en', 1, 'https://ror.org/049840423 Ministry of Health ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(4032, 'https://ror.org/04551r843', 'en', 1, 'https://ror.org/04551r843 Ministry of Health'),
(4033, 'https://ror.org/01b1c8m98', 'en', 1, 'https://ror.org/01b1c8m98 Ministry of Health وزارة الصحة'),
(4034, 'https://ror.org/01w3xx622', 'en', 1, 'https://ror.org/01w3xx622 Lanzhou Army General Hospital 陆军总院'),
(4035, 'https://ror.org/03xrts777', 'en', 1, 'https://ror.org/03xrts777 Shizuoka Medical Center é™å²”åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4036, 'https://ror.org/01s4cx283', 'no_lang_code', 1, 'https://ror.org/01s4cx283 Shizuoka Saiseikai General Hospital é™å²”ęøˆē”Ÿä¼šē·åˆē—…é™¢'),
(4037, 'https://ror.org/052k2q138', 'en', 1, 'https://ror.org/052k2q138 Shodair Children''s Hospital'),
(4038, 'https://ror.org/00vx2w009', 'en', 1, 'https://ror.org/00vx2w009 Lapin keskussairaala Lapland Central Hospital'),
(4039, 'https://ror.org/01rs0ht88', 'en', 1, 'https://ror.org/01rs0ht88 Ministry of Health and Medical Education'),
(4040, 'https://ror.org/0048myj07', 'it', 1, 'https://ror.org/0048myj07 Ospedale del Ceppo'),
(4041, 'https://ror.org/03xz3hj66', 'no_lang_code', 1, 'https://ror.org/03xz3hj66 Shonan Kamakura General Hospital ę¹˜å—éŽŒå€‰ē·åˆē—…é™¢'),
(4042, 'https://ror.org/044ed7z69', 'en', 1, 'https://ror.org/044ed7z69 Ministry of Health and Child Welfare'),
(4043, 'https://ror.org/04wbhy398', 'pl', 1, 'https://ror.org/04wbhy398 Wojewódzki Szpital Zespolony'),
(4044, 'https://ror.org/02q97rh88', 'en', 1, 'https://ror.org/02q97rh88 Shotley Bridge Hospital'),
(4045, 'https://ror.org/02wcweb64', 'en', 1, 'https://ror.org/02wcweb64 Larkin Community Hospital'),
(4046, 'https://ror.org/008rqvc37', 'en', 1, 'https://ror.org/008rqvc37 Lata Medical Research Foundation'),
(4047, 'https://ror.org/03mwa7s65', 'en', 1, 'https://ror.org/03mwa7s65 Ministry of Health Labour and Welfare åŽšē”ŸåŠ“åƒēœ'),
(4048, 'https://ror.org/02g397b52', 'en', 1, 'https://ror.org/02g397b52 Shriners Hospitals for Children - Boston'),
(4049, 'https://ror.org/00mjaaf25', 'en', 1, 'https://ror.org/00mjaaf25 National School of Public Health'),
(4050, 'https://ror.org/01aeq1t78', 'en', 1, 'https://ror.org/01aeq1t78 Shriners Hospitals for Children - Cincinnati'),
(4051, 'https://ror.org/01z1dtf94', 'en', 1, 'https://ror.org/01z1dtf94 Shriners Hospitals for Children - Canada'),
(4052, 'https://ror.org/04ymr6s03', 'en', 1, 'https://ror.org/04ymr6s03 Launceston General Hospital'),
(4053, 'https://ror.org/00snwj435', 'en', 1, 'https://ror.org/00snwj435 Shriners Hospitals for Children - Portland'),
(4054, 'https://ror.org/02w8sz675', 'en', 1, 'https://ror.org/02w8sz675 Shriners Hospitals for Children - Tampa'),
(4055, 'https://ror.org/000ke5995', 'en', 1, 'https://ror.org/000ke5995 Western Galilee Hospital'),
(4056, 'https://ror.org/049mpkx27', 'en', 1, 'https://ror.org/049mpkx27 Shriners Hospitals for Children - St. Louis'),
(4057, 'https://ror.org/038d10y34', 'en', 1, 'https://ror.org/038d10y34 National Wildlife Health Center'),
(4058, 'https://ror.org/00cmk4n56', 'it', 1, 'https://ror.org/00cmk4n56 Krankenhaus Bozen Ospedale di Bolzano'),
(4059, 'https://ror.org/01j0qa041', 'it', 1, 'https://ror.org/01j0qa041 Ospedali Riuniti di Ancona'),
(4060, 'https://ror.org/00trhvv58', 'en', 1, 'https://ror.org/00trhvv58 Shriners Hospitals for Children - Greenville'),
(4061, 'https://ror.org/05k7z2b58', 'en', 1, 'https://ror.org/05k7z2b58 Shriners Hospitals for Children Medical Center - Lexington'),
(4062, 'https://ror.org/037dvnz29', 'en', 1, 'https://ror.org/037dvnz29 Shriners Hospitals for Children - Houston'),
(4063, 'https://ror.org/038jxf238', 'en', 1, 'https://ror.org/038jxf238 Natividad Medical Center'),
(4064, 'https://ror.org/01dmyj570', 'en', 1, 'https://ror.org/01dmyj570 Shriners Hospitals for Children - Northern California'),
(4065, 'https://ror.org/037f4ry86', 'en', 1, 'https://ror.org/037f4ry86 Regional West Medical Center'),
(4066, 'https://ror.org/01x66cn47', 'it', 1, 'https://ror.org/01x66cn47 Ospedale di Santa Maria dei Battuti'),
(4067, 'https://ror.org/04bgfrg80', 'en', 1, 'https://ror.org/04bgfrg80 Ministry of Public Health Ministère de la Santé Publique du Cameroun'),
(4068, 'https://ror.org/02bfqd210', 'en', 1, 'https://ror.org/02bfqd210 Regions Hospital'),
(4069, 'https://ror.org/01x2t4526', 'en', 1, 'https://ror.org/01x2t4526 Lee Memorial Health System'),
(4070, 'https://ror.org/01rdvwx15', 'en', 1, 'https://ror.org/01rdvwx15 Lee Memorial Hospital'),
(4071, 'https://ror.org/0574j1p50', 'ro', 1, 'https://ror.org/0574j1p50 Spitalul Clinic de Recuperare'),
(4072, 'https://ror.org/043ckch24', 'en', 1, 'https://ror.org/043ckch24 Rehabilitation Hospital of Indiana'),
(4073, 'https://ror.org/04g9xj393', 'en', 1, 'https://ror.org/04g9xj393 Legacy Health'),
(4074, 'https://ror.org/00wkhef66', 'en', 1, 'https://ror.org/00wkhef66 Reinier de Graaf Hospital'),
(4075, 'https://ror.org/03ypbx660', 'no_lang_code', 1, 'https://ror.org/03ypbx660 Renji Hospital äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žä»ęµŽåŒ»é™¢'),
(4076, 'https://ror.org/052wqwf92', 'en', 1, 'https://ror.org/052wqwf92 Shuto General Hospital å‘Øę±ē·åˆē—…é™¢'),
(4077, 'https://ror.org/01dsw4m23', 'en', 1, 'https://ror.org/01dsw4m23 Repatriation General Hospital'),
(4078, 'https://ror.org/00sf92s91', 'en', 1, 'https://ror.org/00sf92s91 Lehigh Valley Health Network'),
(4079, 'https://ror.org/03dhz7247', 'en', 1, 'https://ror.org/03dhz7247 Research Centre for Medical Genetics'),
(4080, 'https://ror.org/00cr96696', 'en', 1, 'https://ror.org/00cr96696 Center for Clinical Research and Prevention Center for Klinisk Forskning og Forebyggelse'),
(4081, 'https://ror.org/029wq9x81', 'en', 1, 'https://ror.org/029wq9x81 Sichuan Cancer Hospital å››å·ēœč‚æē˜¤ē ”ē©¶ę‰€'),
(4082, 'https://ror.org/01sxtx626', 'en', 1, 'https://ror.org/01sxtx626 Ministry of Health ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ охорони зГоров''я України'),
(4083, 'https://ror.org/01hhasq22', 'cs', 1, 'https://ror.org/01hhasq22 Výzkumný Ústav ZdravĆ­ DĆ­těte'),
(4084, 'https://ror.org/01zp13r18', 'en', 1, 'https://ror.org/01zp13r18 Research Medical Center'),
(4085, 'https://ror.org/04kvh1910', 'en', 1, 'https://ror.org/04kvh1910 Resurrection Health Care'),
(4086, 'https://ror.org/029dttz57', 'en', 1, 'https://ror.org/029dttz57 Resurrection Medical Center'),
(4087, 'https://ror.org/04mx3cr06', 'en', 1, 'https://ror.org/04mx3cr06 Leighton Hospital'),
(4088, 'https://ror.org/01wpqwr25', 'en', 1, 'https://ror.org/01wpqwr25 Lemuel Shattuck Hospital'),
(4089, 'https://ror.org/0231d2y50', 'en', 1, 'https://ror.org/0231d2y50 Lenox Hill Hospital'),
(4090, 'https://ror.org/01j780996', 'de', 1, 'https://ror.org/01j780996 Leopoldina Krankenhaus Schweinfurt'),
(4091, 'https://ror.org/00q38e504', 'no_lang_code', 1, 'https://ror.org/00q38e504 Lerdsin Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ą¹€ąø„ąø“ąø”ąøŖąø“ąø™'),
(4092, 'https://ror.org/04s2yen12', 'en', 1, 'https://ror.org/04s2yen12 Letterkenny University Hospital OspidƩal GinearƔlta Leitir Ceanainn'),
(4093, 'https://ror.org/05dxmex87', 'en', 1, 'https://ror.org/05dxmex87 Minnesota Medical Association'),
(4094, 'https://ror.org/03teaad16', 'en', 1, 'https://ror.org/03teaad16 Rex Hospital'),
(4095, 'https://ror.org/02nqy8390', 'en', 1, 'https://ror.org/02nqy8390 Letterman Army Medical Center'),
(4096, 'https://ror.org/05g2gkn28', 'en', 1, 'https://ror.org/05g2gkn28 Minoh City Hospital ē®•é¢åø‚ē«‹ē—…é™¢'),
(4097, 'https://ror.org/03032jm09', 'en', 1, 'https://ror.org/03032jm09 Levine Children''s Hospital'),
(4098, 'https://ror.org/010gckf65', 'en', 1, 'https://ror.org/010gckf65 Sikkim Manipal University'),
(4099, 'https://ror.org/04mat8m15', 'fi', 1, 'https://ror.org/04mat8m15 ReumasƤƤtiƶn sairaala'),
(4100, 'https://ror.org/052vjje65', 'en', 1, 'https://ror.org/052vjje65 Royal Manchester Children''s Hospital'),
(4101, 'https://ror.org/04219vz71', 'en', 1, 'https://ror.org/04219vz71 Silver Cross Hospital'),
(4102, 'https://ror.org/052vn2478', 'en', 1, 'https://ror.org/052vn2478 Liaocheng People''s Hospital čŠåŸŽåø‚äŗŗę°‘åŒ»é™¢'),
(4103, 'https://ror.org/05f2xwq77', 'en', 1, 'https://ror.org/05f2xwq77 Charles Clifford Dental Hospital'),
(4104, 'https://ror.org/05a90fj07', 'en', 1, 'https://ror.org/05a90fj07 Ealing Hospital'),
(4105, 'https://ror.org/01ybj8n97', 'en', 1, 'https://ror.org/01ybj8n97 Dundee Dental Hospital'),
(4106, 'https://ror.org/05b01nv96', 'en', 1, 'https://ror.org/05b01nv96 Subang Jaya Medical Centre'),
(4107, 'https://ror.org/02yw7q747', 'en', 1, 'https://ror.org/02yw7q747 Palmetto Health Richland'),
(4108, 'https://ror.org/00rm3wf49', 'en', 1, 'https://ror.org/00rm3wf49 Lilavati Hospital & Research Centre'),
(4109, 'https://ror.org/05vc4qy60', 'nl', 1, 'https://ror.org/05vc4qy60 Rijnland Ziekenhuis'),
(4110, 'https://ror.org/04xv63e47', 'en', 1, 'https://ror.org/04xv63e47 Sin-Lau Christian Hospital'),
(4111, 'https://ror.org/05j8naw58', 'en', 1, 'https://ror.org/05j8naw58 Sinai Health System'),
(4112, 'https://ror.org/02rsydb28', 'en', 1, 'https://ror.org/02rsydb28 Misericordia Community Hospital'),
(4113, 'https://ror.org/035a72598', 'en', 1, 'https://ror.org/035a72598 Lincoln Medical Center'),
(4114, 'https://ror.org/04gmtmm57', 'no_lang_code', 1, 'https://ror.org/04gmtmm57 Misgav Ladach ×žÖ“×©Ö°×‚×’ÖøÖ¼×‘ ×œÖ·×“ÖøÖ¼×šÖ°'),
(4115, 'https://ror.org/052ra0j05', 'en', 1, 'https://ror.org/052ra0j05 Sinai Hospital'),
(4116, 'https://ror.org/04vcxwm16', 'en', 1, 'https://ror.org/04vcxwm16 Mission Hospital'),
(4117, 'https://ror.org/03z4rrt03', 'de', 1, 'https://ror.org/03z4rrt03 Lindenhofspital'),
(4118, 'https://ror.org/011r8ce56', 'en', 1, 'https://ror.org/011r8ce56 Linyi People''s Hospital äø“ę²‚åø‚äŗŗę°‘åŒ»é™¢'),
(4119, 'https://ror.org/02ab2dg68', 'en', 1, 'https://ror.org/02ab2dg68 Singleton Hospital Ysbyty Singleton'),
(4120, 'https://ror.org/02pyp8h55', 'en', 1, 'https://ror.org/02pyp8h55 Lions Gate Hospital'),
(4121, 'https://ror.org/01jm17996', 'en', 1, 'https://ror.org/01jm17996 Mission Heritage Medical Group'),
(4122, 'https://ror.org/0522w3m69', 'no_lang_code', 1, 'https://ror.org/0522w3m69 Sinhgad Dental College and Hospital'),
(4123, 'https://ror.org/02cevbn07', 'en', 1, 'https://ror.org/02cevbn07 Mississippi State Medical Association'),
(4124, 'https://ror.org/0067dx910', 'en', 1, 'https://ror.org/0067dx910 Missouri Baptist Medical Center'),
(4125, 'https://ror.org/05hrg0j24', 'en', 1, 'https://ror.org/05hrg0j24 Lister Hospital'),
(4126, 'https://ror.org/03exj3651', 'en', 1, 'https://ror.org/03exj3651 Littlemore Hospital'),
(4127, 'https://ror.org/04ds03q08', 'no_lang_code', 1, 'https://ror.org/04ds03q08 Mita Hospital å›½éš›åŒ»ē™‚ē¦ē„‰å¤§å­¦äø‰ē”°ē—…é™¢'),
(4128, 'https://ror.org/03qyxqf94', 'en', 1, 'https://ror.org/03qyxqf94 Little Company of Mary Hospital'),
(4129, 'https://ror.org/01myv2z03', 'en', 1, 'https://ror.org/01myv2z03 Nayoro City General Hospital ååÆ„åø‚ē«‹ē·åˆē—…é™¢'),
(4130, 'https://ror.org/01rsda187', 'en', 1, 'https://ror.org/01rsda187 Mitate Hospital 見立病院'),
(4131, 'https://ror.org/00r5kgd36', 'en', 1, 'https://ror.org/00r5kgd36 Nenagh Hospital OspidƩal an Aonaigh'),
(4132, 'https://ror.org/031zc8d88', 'en', 1, 'https://ror.org/031zc8d88 City Hospital'),
(4133, 'https://ror.org/00v4dac24', 'en', 1, 'https://ror.org/00v4dac24 Leeds Teaching Hospitals NHS Trust'),
(4134, 'https://ror.org/04qbdwc31', 'en', 1, 'https://ror.org/04qbdwc31 Southport and Formby District General Hospital'),
(4135, 'https://ror.org/01ycr6b80', 'en', 1, 'https://ror.org/01ycr6b80 Royal Liverpool University Hospital'),
(4136, 'https://ror.org/00fv61j67', 'en', 1, 'https://ror.org/00fv61j67 MRC Laboratory for Molecular Cell Biology'),
(4137, 'https://ror.org/016jc2h42', 'en', 1, 'https://ror.org/016jc2h42 Sint Lucas Andreas Hospital Sint Lucas Andreas Ziekenhuis'),
(4138, 'https://ror.org/00kfr4659', 'en', 1, 'https://ror.org/00kfr4659 Mito Red Cross Hospital ę°“ęˆøčµ¤åå­—ē—…é™¢'),
(4139, 'https://ror.org/0405qn567', 'no_lang_code', 1, 'https://ror.org/0405qn567 Nerima General Hospital ē·“é¦¬ē·åˆē—…é™¢'),
(4140, 'https://ror.org/053658081', 'en', 1, 'https://ror.org/053658081 Mitsubishi Kyoto Hospital äø‰č±äŗ¬éƒ½ē—…é™¢'),
(4141, 'https://ror.org/038mzt421', 'no_lang_code', 1, 'https://ror.org/038mzt421 Nerviano Medical Sciences'),
(4142, 'https://ror.org/02hsexy86', 'en', 1, 'https://ror.org/02hsexy86 Riverside Methodist Hospital'),
(4143, 'https://ror.org/046db5297', 'en', 1, 'https://ror.org/046db5297 Sioux Valley Hospital'),
(4144, 'https://ror.org/05hpt6x15', 'en', 1, 'https://ror.org/05hpt6x15 Riverside Regional Medical Center'),
(4145, 'https://ror.org/05cwpz219', 'en', 1, 'https://ror.org/05cwpz219 Riverview Hospital'),
(4146, 'https://ror.org/011qwff60', 'en', 1, 'https://ror.org/011qwff60 Riverview Medical Center'),
(4147, 'https://ror.org/03djvm380', 'it', 1, 'https://ror.org/03djvm380 Ospedale Generale Regionale Francesco Miulli'),
(4148, 'https://ror.org/02wjcw796', 'en', 1, 'https://ror.org/02wjcw796 Miyake Eye Hospital ēœ¼ē§‘äø‰å®…ē—…é™¢'),
(4149, 'https://ror.org/000849h34', 'en', 1, 'https://ror.org/000849h34 Liverpool Heart and Chest Hospital'),
(4150, 'https://ror.org/00vzzhs86', 'no_lang_code', 1, 'https://ror.org/00vzzhs86 Sir Hurkisondas Nurrotumdas Medical Research Society'),
(4151, 'https://ror.org/03zzzks34', 'en', 1, 'https://ror.org/03zzzks34 Liverpool Hospital'),
(4152, 'https://ror.org/0331pzy82', 'no_lang_code', 1, 'https://ror.org/0331pzy82 Miyata Eye Hospital å®®ē”°ēœ¼ē§‘ē—…é™¢'),
(4153, 'https://ror.org/00eysw063', 'en', 1, 'https://ror.org/00eysw063 Liverpool Women''s Hospital'),
(4154, 'https://ror.org/05j5y0r89', 'en', 1, 'https://ror.org/05j5y0r89 Sir Paul Boffa Hospital'),
(4155, 'https://ror.org/04mc4md34', 'tr', 1, 'https://ror.org/04mc4md34 Rize Devlet Hastanesi'),
(4156, 'https://ror.org/05yjz6y13', 'en', 1, 'https://ror.org/05yjz6y13 University Medical Center Rizk Hospital'),
(4157, 'https://ror.org/030mbcp39', 'en', 1, 'https://ror.org/030mbcp39 Robert Jones and Agnes Hunt Orthopaedic Hospital'),
(4158, 'https://ror.org/01pxhdc49', 'en', 1, 'https://ror.org/01pxhdc49 Miyazaki Prefectural Hospital å®®å“ŽēœŒē«‹ē—…é™¢'),
(4159, 'https://ror.org/0222am037', 'it', 1, 'https://ror.org/0222am037 Ospedaliero Sirai'),
(4160, 'https://ror.org/05fmwts39', 'tr', 1, 'https://ror.org/05fmwts39 Şişli Etfal Eğitim ve Araştırma Hastanesi'),
(4161, 'https://ror.org/02tvvs825', 'en', 1, 'https://ror.org/02tvvs825 Robinson Memorial Hospital'),
(4162, 'https://ror.org/01jk6xr82', 'en', 1, 'https://ror.org/01jk6xr82 Rochester General Hospital'),
(4163, 'https://ror.org/02amggm23', 'en', 1, 'https://ror.org/02amggm23 Trimbos Institute Trimbos instituut'),
(4164, 'https://ror.org/057cm0m66', 'en', 1, 'https://ror.org/057cm0m66 Sismanoglio General Hospital Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Σισμανόγλειο'),
(4165, 'https://ror.org/02xxgh713', 'en', 1, 'https://ror.org/02xxgh713 Sisters of Charity Hospital'),
(4166, 'https://ror.org/04yrw5x43', 'it', 1, 'https://ror.org/04yrw5x43 Ospedale di Livorno'),
(4167, 'https://ror.org/00j4pe902', 'en', 1, 'https://ror.org/00j4pe902 Maharaja Krishna Chandra Gajapati Medical College and Hospital'),
(4168, 'https://ror.org/01rzm0s68', 'en', 1, 'https://ror.org/01rzm0s68 Sentara Rockingham Memorial Hospital Medical Center'),
(4169, 'https://ror.org/02hngyx35', 'en', 1, 'https://ror.org/02hngyx35 Rocky Mountain Hospital for Children'),
(4170, 'https://ror.org/024zq6d87', 'en', 1, 'https://ror.org/024zq6d87 Sisters of Mercy Health System'),
(4171, 'https://ror.org/05fcrn131', 'en', 1, 'https://ror.org/05fcrn131 University Hospital Llandough'),
(4172, 'https://ror.org/01myv5196', 'en', 1, 'https://ror.org/01myv5196 Sivas Devlet Hastanesi Sivas State Hospital'),
(4173, 'https://ror.org/00b0m1444', 'en', 1, 'https://ror.org/00b0m1444 Loewenstein Hospital Rehabilitation Center'),
(4174, 'https://ror.org/040m2wv49', 'en', 1, 'https://ror.org/040m2wv49 Skaraborg Hospital Skaraborgs Sjukhus'),
(4175, 'https://ror.org/03jmdp146', 'en', 1, 'https://ror.org/03jmdp146 Motilal Nehru Medical College'),
(4176, 'https://ror.org/00baajx12', 'en', 1, 'https://ror.org/00baajx12 Rood and Riddle Equine Hospital'),
(4177, 'https://ror.org/0133j5m54', 'en', 1, 'https://ror.org/0133j5m54 SkellefteƄ Hospital SkellefteƄ Lasarett'),
(4178, 'https://ror.org/00zpz3d35', 'en', 1, 'https://ror.org/00zpz3d35 Nevill Hall Hospital'),
(4179, 'https://ror.org/00wk9vd23', 'en', 1, 'https://ror.org/00wk9vd23 Regionshospitalet Skive Skive Hospital'),
(4180, 'https://ror.org/03zhk7994', 'en', 1, 'https://ror.org/03zhk7994 London Chest Hospital'),
(4181, 'https://ror.org/03j2sb517', 'en', 1, 'https://ror.org/03j2sb517 Slade Hospital'),
(4182, 'https://ror.org/04r5ess67', 'en', 1, 'https://ror.org/04r5ess67 Sleep and Human Health Institute'),
(4183, 'https://ror.org/019my5047', 'en', 1, 'https://ror.org/019my5047 Royal London Hospital'),
(4184, 'https://ror.org/01q11am17', 'en', 1, 'https://ror.org/01q11am17 Roper Hospital'),
(4185, 'https://ror.org/055y34y19', 'en', 1, 'https://ror.org/055y34y19 Rose Medical Center'),
(4186, 'https://ror.org/001g7jx32', 'en', 1, 'https://ror.org/001g7jx32 New Britain General Hospital'),
(4187, 'https://ror.org/01ncx3917', 'en', 1, 'https://ror.org/01ncx3917 Rosie Hospital'),
(4188, 'https://ror.org/03er5cb38', 'en', 1, 'https://ror.org/03er5cb38 Moisio Hospital Moision Sairaala'),
(4189, 'https://ror.org/00k5vcj72', 'en', 1, 'https://ror.org/00k5vcj72 Molde Hospital Molde sjukehus'),
(4190, 'https://ror.org/01w502745', 'nl', 1, 'https://ror.org/01w502745 Slotervaartziekenhuis'),
(4191, 'https://ror.org/05w3e4z48', 'en', 1, 'https://ror.org/05w3e4z48 New Cross Hospital'),
(4192, 'https://ror.org/0560hqd63', 'it', 1, 'https://ror.org/0560hqd63 Ospedale Monaldi'),
(4193, 'https://ror.org/04gs6xd08', 'en', 1, 'https://ror.org/04gs6xd08 Sjællands universitetshospital, Køge Zealand University Hospital Køge'),
(4194, 'https://ror.org/02s280t43', 'en', 1, 'https://ror.org/02s280t43 New Hanover Regional Medical Center'),
(4195, 'https://ror.org/00t2n7611', 'da', 1, 'https://ror.org/00t2n7611 Roskilde Hospital Roskilde Sygehus'),
(4196, 'https://ror.org/036s9kg65', 'en', 1, 'https://ror.org/036s9kg65 Monash Medical Centre'),
(4197, 'https://ror.org/04fw3kw37', 'en', 1, 'https://ror.org/04fw3kw37 Shri Maharaja Hari Singh Hospital'),
(4198, 'https://ror.org/02p6pjw94', 'en', 1, 'https://ror.org/02p6pjw94 Moncton Hospital'),
(4199, 'https://ror.org/000ezn412', 'en', 1, 'https://ror.org/000ezn412 Sawai Man Singh Hospital'),
(4200, 'https://ror.org/012eghd53', 'en', 1, 'https://ror.org/012eghd53 Rotorua Hospital'),
(4201, 'https://ror.org/02n10g966', 'en', 1, 'https://ror.org/02n10g966 Long Beach Animal Hospital'),
(4202, 'https://ror.org/05t4vgv93', 'no_lang_code', 1, 'https://ror.org/05t4vgv93 Rotunda Hospital'),
(4203, 'https://ror.org/02p71fr67', 'en', 1, 'https://ror.org/02p71fr67 Monilek Hospital and Research Center'),
(4204, 'https://ror.org/0525h8d02', 'en', 1, 'https://ror.org/0525h8d02 New Mexico Regional Federal Medical Center'),
(4205, 'https://ror.org/05m64xs77', 'en', 1, 'https://ror.org/05m64xs77 Monklands Hospital'),
(4206, 'https://ror.org/0264d9934', 'en', 1, 'https://ror.org/0264d9934 Royal Aberdeen Children''s Hospital'),
(4207, 'https://ror.org/00xmn3c34', 'en', 1, 'https://ror.org/00xmn3c34 Monmouth Medical Center'),
(4208, 'https://ror.org/00y64dx33', 'en', 1, 'https://ror.org/00y64dx33 Monroe Carell Jr. Children''s Hospital'),
(4209, 'https://ror.org/00243c192', 'en', 1, 'https://ror.org/00243c192 Monroe Community Hospital'),
(4210, 'https://ror.org/05rz49z56', 'en', 1, 'https://ror.org/05rz49z56 Smt. N.H.L. Municipal Medical College ąŖ¶ą«ąŖ°ą«€ąŖ®ąŖ¤ą«€. ąŖąŖØąŖąŖšąŖąŖ² ąŖ®ą«ąŖÆą«ąŖØąŖæąŖøąŖæąŖŖąŖ² મેઔિકલ ąŖ•ą«‹ąŖ²ą«‡ąŖœ'),
(4211, 'https://ror.org/02d57ed54', 'en', 1, 'https://ror.org/02d57ed54 Sarojini Naidu Medical College ą¤øą¤°ą„‹ą¤œą¤æą¤Øą„€ ą¤Øą¤¾ą¤Æą¤”ą„‚ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(4212, 'https://ror.org/05xc56p63', 'en', 1, 'https://ror.org/05xc56p63 Royal Alexandra Children''s Hospital'),
(4213, 'https://ror.org/00vbnvy39', 'en', 1, 'https://ror.org/00vbnvy39 Montgomery General Hospital'),
(4214, 'https://ror.org/01nj8sa76', 'en', 1, 'https://ror.org/01nj8sa76 Royal Alexandra Hospital'),
(4215, 'https://ror.org/03s18mw09', 'it', 1, 'https://ror.org/03s18mw09 Ospedale L. Bonomo'),
(4216, 'https://ror.org/04wc5jk96', 'en', 1, 'https://ror.org/04wc5jk96 HƓpital de MontrƩal pour enfants Montreal Children''s Hospital'),
(4217, 'https://ror.org/053dkp921', 'en', 1, 'https://ror.org/053dkp921 Los Alamos Medical Center'),
(4218, 'https://ror.org/00wyx7h61', 'en', 1, 'https://ror.org/00wyx7h61 Royal Alexandra Hospital'),
(4219, 'https://ror.org/057edve92', 'en', 1, 'https://ror.org/057edve92 Tokyo Yamate Medical Center ę±äŗ¬å±±ę‰‹ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(4220, 'https://ror.org/00a858n67', 'en', 1, 'https://ror.org/00a858n67 Royal United Hospital'),
(4221, 'https://ror.org/01cv0eh48', 'en', 1, 'https://ror.org/01cv0eh48 Royal Belfast Hospital for Sick Children'),
(4222, 'https://ror.org/04vqzd428', 'en', 1, 'https://ror.org/04vqzd428 Social Insurance Saitama Chuo Hospital åŸ¼ēŽ‰ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(4223, 'https://ror.org/019f36t97', 'en', 1, 'https://ror.org/019f36t97 Royal Berkshire Hospital'),
(4224, 'https://ror.org/000vvpv33', 'en', 1, 'https://ror.org/000vvpv33 Social Insurance Yokohama Central Hospital ęØŖęµœäø­å¤®ē—…é™¢'),
(4225, 'https://ror.org/04sgkca59', 'en', 1, 'https://ror.org/04sgkca59 Funabashi Central Hospital čˆ¹ę©‹äø­å¤®ē—…é™¢'),
(4226, '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'),
(4227, 'https://ror.org/04gbhgc79', 'en', 1, 'https://ror.org/04gbhgc79 HƓpital GƩnƩral de MontrƩal Montreal General Hospital'),
(4228, 'https://ror.org/031xyzp67', 'en', 1, 'https://ror.org/031xyzp67 Social Security Children''s Hospital'),
(4229, 'https://ror.org/03je4r797', 'en', 1, 'https://ror.org/03je4r797 Luodong Poh-Ai Hospital ē¾…ę±åšę„›é†«é™¢'),
(4230, 'https://ror.org/02jb7ng92', 'en', 1, 'https://ror.org/02jb7ng92 Moorgreen Hospital'),
(4231, 'https://ror.org/0540c8n94', 'no_lang_code', 1, 'https://ror.org/0540c8n94 Soka Municipal Hospital č‰åŠ åø‚ē«‹ē—…é™¢'),
(4232, 'https://ror.org/016m8pd54', 'en', 1, 'https://ror.org/016m8pd54 Morgan Stanley Children''s Hospital'),
(4233, 'https://ror.org/056t4gr41', 'no_lang_code', 1, 'https://ror.org/056t4gr41 Morinomiya Hospital ć‚‚ć‚Šć®ćæć‚„ ć»ļ½“ć“ćŸļ½Œ'),
(4234, 'https://ror.org/01skxn174', 'en', 1, 'https://ror.org/01skxn174 Lower Manhattan Hospital');
INSERT INTO `rors` VALUES
(4235, 'https://ror.org/03m6tev69', 'en', 1, 'https://ror.org/03m6tev69 Morristown Medical Center'),
(4236, 'https://ror.org/05ymyxj51', 'en', 1, 'https://ror.org/05ymyxj51 Royal Columbian Hospital'),
(4237, 'https://ror.org/02gaqn537', 'en', 1, 'https://ror.org/02gaqn537 Royal Cornhill Hospital'),
(4238, 'https://ror.org/00cfdk448', 'en', 1, 'https://ror.org/00cfdk448 Royal Cornwall Hospital'),
(4239, 'https://ror.org/02qb5a654', 'en', 1, 'https://ror.org/02qb5a654 Somerset Medical Center'),
(4240, 'https://ror.org/04jxcef68', 'en', 1, 'https://ror.org/04jxcef68 Royal Edinburgh Hospital'),
(4241, 'https://ror.org/046h7rx26', 'en', 1, 'https://ror.org/046h7rx26 Tri-Service General Hospital Songshan Branch'),
(4242, 'https://ror.org/01p830915', 'en', 1, 'https://ror.org/01p830915 Morriston Hospital Ysbyty Treforus'),
(4243, 'https://ror.org/05s0ee237', 'en', 1, 'https://ror.org/05s0ee237 Morton Plant Hospital'),
(4244, 'https://ror.org/01j17xg39', 'en', 1, 'https://ror.org/01j17xg39 New York Hospital Queens'),
(4245, 'https://ror.org/03jeg4p28', 'en', 1, 'https://ror.org/03jeg4p28 Cone Health'),
(4246, 'https://ror.org/00514rc81', 'en', 1, 'https://ror.org/00514rc81 Royal Hallamshire Hospital'),
(4247, 'https://ror.org/045m9y072', 'en', 1, 'https://ror.org/045m9y072 Moses H Cone Memorial Hospital'),
(4248, 'https://ror.org/00hhwej14', 'en', 1, 'https://ror.org/00hhwej14 Royal Hampshire County Hospital'),
(4249, 'https://ror.org/003ncyx50', 'no_lang_code', 1, 'https://ror.org/003ncyx50 Lourdes Hospital'),
(4250, 'https://ror.org/03cht9689', 'en', 1, 'https://ror.org/03cht9689 Royal Hospital'),
(4251, 'https://ror.org/05xjxp170', 'en', 1, 'https://ror.org/05xjxp170 Lovelace Health System'),
(4252, 'https://ror.org/02y4qch95', 'en', 1, 'https://ror.org/02y4qch95 Lovelace Medical Center'),
(4253, 'https://ror.org/05t65ke24', 'en', 1, 'https://ror.org/05t65ke24 Sophiahemmet Hospital Sophiahemmet Sjukhus'),
(4254, 'https://ror.org/033gfa640', 'en', 1, 'https://ror.org/033gfa640 Royal Hospital Haslar'),
(4255, 'https://ror.org/02c1pgm26', 'en', 1, 'https://ror.org/02c1pgm26 Royal Inland Hospital'),
(4256, 'https://ror.org/05e247w35', 'en', 1, 'https://ror.org/05e247w35 Morristown Hamblen Hospital Foundation'),
(4257, 'https://ror.org/02sp8x745', 'en', 1, 'https://ror.org/02sp8x745 Royal Jubilee Hospital'),
(4258, 'https://ror.org/04gt4je81', 'sv', 1, 'https://ror.org/04gt4je81 Lasarettet i Motala'),
(4259, 'https://ror.org/031wwqy14', 'en', 1, 'https://ror.org/031wwqy14 Sound Shore Medical Center'),
(4260, 'https://ror.org/05q7jp496', 'en', 1, 'https://ror.org/05q7jp496 South African Institute for Medical Research'),
(4261, 'https://ror.org/03wzyp716', 'en', 1, 'https://ror.org/03wzyp716 Mount Carmel Health'),
(4262, 'https://ror.org/03q45zd70', 'en', 1, 'https://ror.org/03q45zd70 South Dakota Foundation for Medical Care'),
(4263, 'https://ror.org/00bwhj131', 'en', 1, 'https://ror.org/00bwhj131 Newark Beth Israel Medical Center'),
(4264, 'https://ror.org/01x8yyz38', 'en', 1, 'https://ror.org/01x8yyz38 EtelƤ-Karjalan keskussairaala South Karelia Central Hospital'),
(4265, 'https://ror.org/01pp15642', 'en', 1, 'https://ror.org/01pp15642 South Nassau Communities Hospital'),
(4266, 'https://ror.org/00q75av54', 'en', 1, 'https://ror.org/00q75av54 South Tyneside District Hospital'),
(4267, 'https://ror.org/019z9dk17', 'en', 1, 'https://ror.org/019z9dk17 Mount Elizabeth Hospital ą®®ą®µąÆą®£ąÆą®ŸąÆ ą®Žą®²ą®æą®šą®ŖąÆ†ą®¤ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(4268, 'https://ror.org/008r2d260', 'en', 1, 'https://ror.org/008r2d260 Louisiana State University Hospital'),
(4269, 'https://ror.org/02nzaav06', 'es', 1, 'https://ror.org/02nzaav06 Hospital Luis Vernaza'),
(4270, 'https://ror.org/04gh26240', 'en', 1, 'https://ror.org/04gh26240 Mount Gould Hospital'),
(4271, 'https://ror.org/04qj1gz53', 'de', 1, 'https://ror.org/04qj1gz53 Lukaskrankenhaus'),
(4272, 'https://ror.org/03qaqdm58', 'sv', 1, 'https://ror.org/03qaqdm58 Capio Lundby Sjukhus'),
(4273, 'https://ror.org/05deks119', 'en', 1, 'https://ror.org/05deks119 Mount Sinai Hospital'),
(4274, 'https://ror.org/01zkyz108', 'en', 1, 'https://ror.org/01zkyz108 Hospital Monte SinaĆ­ Mount Sinai Hospital'),
(4275, 'https://ror.org/00wr13y59', 'en', 1, 'https://ror.org/00wr13y59 Lutheran Medical Center'),
(4276, 'https://ror.org/05va5gy74', 'en', 1, 'https://ror.org/05va5gy74 Royal National Hospital for Rheumatic Diseases'),
(4277, 'https://ror.org/05v4bdf81', 'en', 1, 'https://ror.org/05v4bdf81 Southampton Hospital'),
(4278, 'https://ror.org/03h2ajh11', 'en', 1, 'https://ror.org/03h2ajh11 Saint Francis Hospital & Medical Center'),
(4279, 'https://ror.org/02pp7xn25', 'en', 1, 'https://ror.org/02pp7xn25 Punjab Government Dental College and Hospital'),
(4280, 'https://ror.org/03zkja782', 'en', 1, 'https://ror.org/03zkja782 Luton and Dunstable University Hospital NHS Foundation Trust'),
(4281, 'https://ror.org/03hrxmf69', 'en', 1, 'https://ror.org/03hrxmf69 Newton Wellesley Hospital'),
(4282, 'https://ror.org/043j9bc42', 'en', 1, 'https://ror.org/043j9bc42 Royal National Orthopaedic Hospital'),
(4283, 'https://ror.org/03mt09h51', 'en', 1, 'https://ror.org/03mt09h51 Lyndon Baines Johnson Hospital'),
(4284, 'https://ror.org/03j554d90', 'en', 1, 'https://ror.org/03j554d90 M.S. Ramaiah Medical College'),
(4285, 'https://ror.org/01h9y0t02', 'en', 1, 'https://ror.org/01h9y0t02 Mount Sinai Hospital'),
(4286, 'https://ror.org/04am5a125', 'en', 1, 'https://ror.org/04am5a125 Mount Vernon Hospital'),
(4287, 'https://ror.org/03scbek41', 'en', 1, 'https://ror.org/03scbek41 Royal Orthopaedic Hospital'),
(4288, 'https://ror.org/04xpmtk39', 'en', 1, 'https://ror.org/04xpmtk39 Southern Hills Medical Center'),
(4289, 'https://ror.org/056v1sx90', 'en', 1, 'https://ror.org/056v1sx90 Nicosia General Hospital'),
(4290, 'https://ror.org/05ayf4d73', 'en', 1, 'https://ror.org/05ayf4d73 Southlake Regional Health Center'),
(4291, 'https://ror.org/04rvm9c15', 'en', 1, 'https://ror.org/04rvm9c15 Southland Hospital'),
(4292, 'https://ror.org/01rdjpj45', 'en', 1, 'https://ror.org/01rdjpj45 M. P. Shah Medical College ąŖ¶ą«ąŖ°ą«€ ąŖąŖ®ąŖŖą«€ શાહ સરકારી મેઔિકલ ąŖ•ą«‹ąŖ²ą«‡ąŖœ'),
(4293, 'https://ror.org/05d576879', 'en', 1, 'https://ror.org/05d576879 Southmead Hospital'),
(4294, 'https://ror.org/04dzvew28', 'en', 1, 'https://ror.org/04dzvew28 Hackensack University Medical Center Mountainside'),
(4295, 'https://ror.org/05kpx1157', 'en', 1, 'https://ror.org/05kpx1157 Royal Preston Hospital'),
(4296, 'https://ror.org/01r8fpq52', 'en', 1, 'https://ror.org/01r8fpq52 Niigata City General Hospital ę–°ę½Ÿåø‚ę°‘ē—…é™¢'),
(4297, 'https://ror.org/0427fee43', 'en', 1, 'https://ror.org/0427fee43 Maharani Laxmi Bai Medical College'),
(4298, 'https://ror.org/018pq0b08', 'no_lang_code', 1, 'https://ror.org/018pq0b08 Niigata Prefectural Central Hospital ę–°ę½ŸēœŒē«‹äø­å¤®ē—…é™¢'),
(4299, 'https://ror.org/05d9wmt54', 'no_lang_code', 1, 'https://ror.org/05d9wmt54 Mpilo Central Hospital'),
(4300, 'https://ror.org/008c4hs90', 'no_lang_code', 1, 'https://ror.org/008c4hs90 Niigata Prefectural Shibata Hospital ę–°ę½ŸēœŒē«‹ę–°ē™ŗē”°ē—…é™¢'),
(4301, 'https://ror.org/01xd4z152', 'en', 1, 'https://ror.org/01xd4z152 Southwest Washington Medical Center'),
(4302, 'https://ror.org/03cjj7d58', 'pt', 1, 'https://ror.org/03cjj7d58 Hospital Municipal Souza Aguiar'),
(4303, 'https://ror.org/0120mb525', 'nl', 1, 'https://ror.org/0120mb525 Spaarne Ziekenhuis'),
(4304, 'https://ror.org/01zbzxe52', 'en', 1, 'https://ror.org/01zbzxe52 Royal South Hants Hospital'),
(4305, 'https://ror.org/02v3sdn51', 'en', 1, 'https://ror.org/02v3sdn51 MRC/CSO Social and Public Health Sciences Unit'),
(4306, 'https://ror.org/03zwf0j41', 'en', 1, 'https://ror.org/03zwf0j41 Macclesfield District General Hospital'),
(4307, 'https://ror.org/018dx8725', 'en', 1, 'https://ror.org/018dx8725 Sparrow Hospital'),
(4308, 'https://ror.org/05fe2n505', 'en', 1, 'https://ror.org/05fe2n505 Royal Sussex County Hospital'),
(4309, 'https://ror.org/0322mf940', 'en', 1, 'https://ror.org/0322mf940 Spartanburg Regional Medical Center'),
(4310, 'https://ror.org/03rq50d77', 'en', 1, 'https://ror.org/03rq50d77 Royal Victoria Hospital'),
(4311, 'https://ror.org/039q00p63', 'en', 1, 'https://ror.org/039q00p63 Edward Francis Small Teaching Hospital'),
(4312, 'https://ror.org/02fvvnh95', 'en', 1, 'https://ror.org/02fvvnh95 Spenshult Hospital'),
(4313, 'https://ror.org/058yxq906', 'en', 1, 'https://ror.org/058yxq906 Nikko Memorial Hospital ę—„é‹¼čØ˜åæµē—…é™¢'),
(4314, 'https://ror.org/04zpy9a42', 'en', 1, 'https://ror.org/04zpy9a42 Nil Ratan Sircar Medical College and Hospital ą¤Øą„€ą¤² रतन सरकार ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ र ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(4315, 'https://ror.org/05hwn6x82', 'en', 1, 'https://ror.org/05hwn6x82 Spring Branch Medical Center'),
(4316, 'https://ror.org/00mc5wj35', 'en', 1, 'https://ror.org/00mc5wj35 Mudanjiang Medical University ē‰”äø¹ę±ŸåŒ»å­¦é™¢'),
(4317, 'https://ror.org/015e6tf70', 'en', 1, 'https://ror.org/015e6tf70 Madonna Rehabilitation Hospital'),
(4318, 'https://ror.org/01r89q997', 'en', 1, 'https://ror.org/01r89q997 Royal Victoria Regional Health Centre'),
(4319, 'https://ror.org/009qqcw96', 'en', 1, 'https://ror.org/009qqcw96 Lehigh Valley Hospital Muhlenberg'),
(4320, 'https://ror.org/0120w8n36', 'en', 1, 'https://ror.org/0120w8n36 Muhlenberg Regional Medical Center'),
(4321, 'https://ror.org/039tm4h11', 'en', 1, 'https://ror.org/039tm4h11 Sree Balaji Dental College and Hospital'),
(4322, 'https://ror.org/050ztxn78', 'en', 1, 'https://ror.org/050ztxn78 Madras Medical College மதராசு ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą°®ą°¦ą±ą°°ą°¾ą°øą± ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(4323, 'https://ror.org/05757k612', 'en', 1, 'https://ror.org/05757k612 Sree Chitra Thirunal Institute for Medical Sciences and Technology'),
(4324, 'https://ror.org/04g0bt697', 'en', 1, 'https://ror.org/04g0bt697 MultiCare Health System'),
(4325, 'https://ror.org/03c7caz94', 'en', 1, 'https://ror.org/03c7caz94 Sri Aurobindo Institute of Medical Sciences'),
(4326, 'https://ror.org/028jrgj19', 'en', 1, 'https://ror.org/028jrgj19 Multnomah County Health Department'),
(4327, 'https://ror.org/032nh7f71', 'en', 1, 'https://ror.org/032nh7f71 RTI Health Solutions'),
(4328, 'https://ror.org/00k9e1m49', 'en', 1, 'https://ror.org/00k9e1m49 Sri Devaraj Urs Medical College'),
(4329, 'https://ror.org/02w2vzn61', 'en', 1, 'https://ror.org/02w2vzn61 Ruchill Hospital'),
(4330, 'https://ror.org/02vaqnn82', 'en', 1, 'https://ror.org/02vaqnn82 Madras Medical Mission'),
(4331, 'https://ror.org/039c6rk82', 'en', 1, 'https://ror.org/039c6rk82 Ninewells Hospital'),
(4332, 'https://ror.org/01bmj6z20', 'en', 1, 'https://ror.org/01bmj6z20 Maesot General Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ą¹ąø”ą¹ˆąøŖąø­ąø”'),
(4333, 'https://ror.org/00m5fzs56', 'en', 1, 'https://ror.org/00m5fzs56 Maebashi Red Cross Hospital å‰ę©‹čµ¤åå­—ē—…é™¢'),
(4334, 'https://ror.org/05pkzpg75', 'en', 1, 'https://ror.org/05pkzpg75 Ningbo First Hospital å®ę³¢åø‚ē¬¬äø€åŒ»é™¢'),
(4335, 'https://ror.org/0219djn76', 'en', 1, 'https://ror.org/0219djn76 Rush Children''s Hospital'),
(4336, 'https://ror.org/050adm910', 'no_lang_code', 1, 'https://ror.org/050adm910 Chiba Hokusou Hospital ę—„ęœ¬åŒ»ē§‘å¤§å­¦åƒč‘‰åŒ—ē·ē—…é™¢'),
(4337, 'https://ror.org/05mzkvr65', 'en', 1, 'https://ror.org/05mzkvr65 Skokie Hospital'),
(4338, 'https://ror.org/000jd8a09', 'no_lang_code', 1, 'https://ror.org/000jd8a09 Mafraq Hospital مستؓفى المفرق'),
(4339, 'https://ror.org/04ckgfr29', 'en', 1, 'https://ror.org/04ckgfr29 Sri Manakula Vinayagar Medical College and Hospital'),
(4340, 'https://ror.org/02c1c4p76', 'en', 1, 'https://ror.org/02c1c4p76 Magee Rehabilitation Hospital'),
(4341, 'https://ror.org/00y1kmp77', 'en', 1, 'https://ror.org/00y1kmp77 NIMTS Hospital'),
(4342, 'https://ror.org/04qs81248', 'en', 1, 'https://ror.org/04qs81248 Russells Hall Hospital'),
(4343, 'https://ror.org/022k8bt28', 'en', 1, 'https://ror.org/022k8bt28 Nishi Eye Hospital č„æēœ¼ē§‘ē—…é™¢'),
(4344, 'https://ror.org/05skj8r52', 'en', 1, 'https://ror.org/05skj8r52 Rutland Regional Medical Center'),
(4345, 'https://ror.org/039thcs93', 'en', 1, 'https://ror.org/039thcs93 Sri Venkateswara Institute of Medical Sciences'),
(4346, 'https://ror.org/02mvsxw13', 'en', 1, 'https://ror.org/02mvsxw13 Kobe City Nishi-Kobe Medical Center ē„žęˆøåø‚ē«‹č„æē„žęˆøåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4347, 'https://ror.org/010tmdc88', 'it', 1, 'https://ror.org/010tmdc88 Ospedale Maggiore Carlo Alberto Pizzardi'),
(4348, 'https://ror.org/01a1x1d92', 'no_lang_code', 1, 'https://ror.org/01a1x1d92 Ruttonjee Hospital 律敦治醫院'),
(4349, 'https://ror.org/02gjsze31', 'en', 1, 'https://ror.org/02gjsze31 St. Luke''s Magic Valley Medical Center'),
(4350, 'https://ror.org/059wef195', 'en', 1, 'https://ror.org/059wef195 Nishi Niigata Chuo National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹č„æę–°ę½Ÿäø­å¤®ē—…é™¢'),
(4351, 'https://ror.org/00j8xcs04', 'en', 1, 'https://ror.org/00j8xcs04 Sir Sayajirao General Hospital Medical College'),
(4352, 'https://ror.org/0152ray34', 'no_lang_code', 1, 'https://ror.org/0152ray34 Maharat Nakhon Ratchasima Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø£ąø²ąøŠąø™ąø„ąø£ąø£ąø²ąøŠąøŖąøµąø”ąø²'),
(4353, 'https://ror.org/05pet2p92', 'no_lang_code', 1, 'https://ror.org/05pet2p92 Nishida Hospital 脿田病院'),
(4354, 'https://ror.org/0525j6d32', 'en', 1, 'https://ror.org/0525j6d32 Nishijin Hospital 脿陣病院'),
(4355, 'https://ror.org/04crdae34', 'en', 1, 'https://ror.org/04crdae34 Mahatma Gandhi Institute of Medical Sciences ą¤®ą¤¹ą¤¾ą¤¤ą„ą¤®ą¤¾ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(4356, 'https://ror.org/05v4pjq26', 'en', 1, 'https://ror.org/05v4pjq26 Mahatma Gandhi Medical College and Research Institute'),
(4357, 'https://ror.org/01qcxb695', 'no_lang_code', 1, 'https://ror.org/01qcxb695 Mahosot Hospital'),
(4358, 'https://ror.org/05wd86d64', 'it', 1, 'https://ror.org/05wd86d64 Ospedale San Bortolo'),
(4359, 'https://ror.org/047v2cv91', 'en', 1, 'https://ror.org/047v2cv91 Maidstone Hospital'),
(4360, 'https://ror.org/00hm23551', 'no_lang_code', 1, 'https://ror.org/00hm23551 Nishinomiya Municipal Central Hospital 脿宮市立中央病院'),
(4361, 'https://ror.org/00g651r29', 'en', 1, 'https://ror.org/00g651r29 Maimonides Medical Center'),
(4362, 'https://ror.org/00fqdgv63', 'en', 1, 'https://ror.org/00fqdgv63 Lankenau Heart Institute'),
(4363, 'https://ror.org/03zzjb946', 'en', 1, 'https://ror.org/03zzjb946 Nishinomiya Kyoritsu Neurosurgical Hospital č„æå®®å”ē«‹č„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(4364, 'https://ror.org/03d1wq758', 'en', 1, 'https://ror.org/03d1wq758 Maine Medical Center Research Institute'),
(4365, 'https://ror.org/02k57ty04', 'de', 1, 'https://ror.org/02k57ty04 Klinikum Lüneburg'),
(4366, 'https://ror.org/014mgn481', 'no_lang_code', 1, 'https://ror.org/014mgn481 Maizuru Municipal Hospital åø‚ē«‹čˆžé¶“åø‚ę°‘ē—…é™¢'),
(4367, 'https://ror.org/03ca99543', 'tr', 1, 'https://ror.org/03ca99543 SSK İhtisas Hastanesi'),
(4368, 'https://ror.org/05bt0cf40', 'tr', 1, 'https://ror.org/05bt0cf40 Okmeydanı Eğitim ve Araştırma Hastanesi'),
(4369, 'https://ror.org/04m0kdq23', 'it', 1, 'https://ror.org/04m0kdq23 Ospedale Sant''Anna'),
(4370, 'https://ror.org/05echw708', 'en', 1, 'https://ror.org/05echw708 Archbishop Makarios III Hospital'),
(4371, 'https://ror.org/039evc422', 'en', 1, 'https://ror.org/039evc422 Municipal Institute for Medical Research'),
(4372, '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'),
(4373, 'https://ror.org/05e272m53', 'en', 1, 'https://ror.org/05e272m53 Munroe Regional Medical Center'),
(4374, 'https://ror.org/05m4t4820', 'en', 1, 'https://ror.org/05m4t4820 Makassed General Hospital'),
(4375, 'https://ror.org/01d86hn60', 'it', 1, 'https://ror.org/01d86hn60 Ospedale San Carlo'),
(4376, 'https://ror.org/005qzv038', 'en', 1, 'https://ror.org/005qzv038 Munson Medical Center'),
(4377, 'https://ror.org/00gahk913', 'en', 1, 'https://ror.org/00gahk913 Sendai Nishitaga National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹ä»™å°č„æå¤šč³€ē—…é™¢'),
(4378, 'https://ror.org/04mwdyf26', 'en', 1, 'https://ror.org/04mwdyf26 Al-Makassed Islamic Charitable Society Hospital'),
(4379, 'https://ror.org/02jy1hx10', 'en', 1, 'https://ror.org/02jy1hx10 Makati Medical Center'),
(4380, 'https://ror.org/009fnyh39', 'en', 1, 'https://ror.org/009fnyh39 Malabar Institute of Medical Sciences'),
(4381, 'https://ror.org/02rjrn566', 'en', 1, 'https://ror.org/02rjrn566 Nishtar Medical College and Hospital'),
(4382, 'https://ror.org/056pg9759', 'en', 1, 'https://ror.org/056pg9759 SSM Health Care'),
(4383, 'https://ror.org/042rz6s74', 'en', 1, 'https://ror.org/042rz6s74 Nissan Tamagawa Hospital ę—„ē”£åŽšē”Ÿä¼š ēŽ‰å·ē—…é™¢'),
(4384, 'https://ror.org/01zyevp23', 'en', 1, 'https://ror.org/01zyevp23 Musgrave Park Hospital'),
(4385, 'https://ror.org/0011azt19', 'en', 1, 'https://ror.org/0011azt19 Saint Agnes Hospital'),
(4386, 'https://ror.org/042fv2404', 'en', 1, 'https://ror.org/042fv2404 Musgrove Park Hospital'),
(4387, 'https://ror.org/047xgg150', 'tr', 1, 'https://ror.org/047xgg150 Malatya Devlet Hastanesi'),
(4388, 'https://ror.org/01wjz9118', 'en', 1, 'https://ror.org/01wjz9118 Nizam''s Institute of Medical Sciences'),
(4389, 'https://ror.org/00apdsa62', 'en', 1, 'https://ror.org/00apdsa62 Privolzhsky Research Medical University ŠŸŃ€ŠøŠ²Š¾Š»Š¶ŃŠŗŠøŠ¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4390, 'https://ror.org/024esvk12', 'en', 1, 'https://ror.org/024esvk12 Saint Barnabas Medical Center'),
(4391, 'https://ror.org/043ppnw54', 'it', 1, 'https://ror.org/043ppnw54 Ospedale San Donato'),
(4392, 'https://ror.org/000kb2a90', 'en', 1, 'https://ror.org/000kb2a90 Mymensingh Medical College Hospital ময়মনসিংহ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(4393, 'https://ror.org/00nh9x179', 'en', 1, 'https://ror.org/00nh9x179 St Bartholomew''s Hospital'),
(4394, 'https://ror.org/00qt4k071', 'it', 1, 'https://ror.org/00qt4k071 Ospedale San Filippo Neri'),
(4395, 'https://ror.org/045cqy185', 'en', 1, 'https://ror.org/045cqy185 Mamata Medical College'),
(4396, 'https://ror.org/00hp6as40', 'en', 1, 'https://ror.org/00hp6as40 Mammoth Hospital'),
(4397, 'https://ror.org/00r1hxj45', 'en', 1, 'https://ror.org/00r1hxj45 Noor Eye Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ś†Ų“Ł…ā€ŒŁ¾Ų²Ų“Ś©ŪŒ Ł†ŁˆŲ±'),
(4398, 'https://ror.org/01btjc831', 'it', 1, 'https://ror.org/01btjc831 Ospedale San Giacomo Apostolo'),
(4399, 'https://ror.org/03gfs5c49', 'en', 1, 'https://ror.org/03gfs5c49 Nordic School of Public Health'),
(4400, 'https://ror.org/05qfq7p37', 'en', 1, 'https://ror.org/05qfq7p37 Sint Clara Ziekenhuis St Clara Hospital'),
(4401, 'https://ror.org/05m6e7d23', 'it', 1, 'https://ror.org/05m6e7d23 Ospedale San Giuseppe'),
(4402, 'https://ror.org/02v5mzt02', 'en', 1, 'https://ror.org/02v5mzt02 St David''s Medical Center'),
(4403, 'https://ror.org/01pj4nt72', 'en', 1, 'https://ror.org/01pj4nt72 Nordland Hospital'),
(4404, 'https://ror.org/05n5d3f06', 'en', 1, 'https://ror.org/05n5d3f06 Nagahama City Hospital é•·ęµœåø‚ē—…é™¢'),
(4405, 'https://ror.org/04gpfvy81', 'nl', 1, 'https://ror.org/04gpfvy81 Elisabeth-TweeSteden Ziekenhuis'),
(4406, 'https://ror.org/04xtpk854', 'en', 1, 'https://ror.org/04xtpk854 Manchester Royal Eye Hospital'),
(4407, 'https://ror.org/02t96cy48', 'it', 1, 'https://ror.org/02t96cy48 Azienda Ospedaliera S.Maria'),
(4408, 'https://ror.org/02mssnc42', 'no_lang_code', 1, 'https://ror.org/02mssnc42 Nagano Municipal Hospital é•·é‡Žåø‚ę°‘ē—…é™¢'),
(4409, 'https://ror.org/01683nj06', 'en', 1, 'https://ror.org/01683nj06 Mangla Hospital and Research Center'),
(4410, 'https://ror.org/00qctrq52', 'en', 1, 'https://ror.org/00qctrq52 Manipal College of Medical Sciences'),
(4411, 'https://ror.org/05mryn396', 'no_lang_code', 1, 'https://ror.org/05mryn396 Manipal Hospital'),
(4412, 'https://ror.org/01qemgb02', 'en', 1, 'https://ror.org/01qemgb02 Manipal Teaching Hospital मणिपाल ą¤Ÿą„€ą¤šą¤æą¤‚ą¤— ą¤¹ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(4413, 'https://ror.org/00mj4n083', 'en', 1, 'https://ror.org/00mj4n083 St. Francis Hospital'),
(4414, 'https://ror.org/0077pzv34', 'en', 1, 'https://ror.org/0077pzv34 Manitoba Health'),
(4415, 'https://ror.org/03vmdsx94', 'en', 1, 'https://ror.org/03vmdsx94 Nagara Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹é•·č‰ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4416, 'https://ror.org/021zm6p18', 'en', 1, 'https://ror.org/021zm6p18 Norfolk and Norwich University Hospital'),
(4417, 'https://ror.org/042thbm45', 'en', 1, 'https://ror.org/042thbm45 Manly Hospital'),
(4418, 'https://ror.org/02d3k5845', 'en', 1, 'https://ror.org/02d3k5845 St Francis Medical Center'),
(4419, 'https://ror.org/04bmgpj29', 'en', 1, 'https://ror.org/04bmgpj29 Walsall Manor Hospital'),
(4420, 'https://ror.org/00bs3zm56', 'no_lang_code', 1, 'https://ror.org/00bs3zm56 Nagasaki Municipal Hospital é•·å“ŽćæćŖćØćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼åø‚ę°‘ē—…é™¢'),
(4421, 'https://ror.org/04g33m791', 'en', 1, 'https://ror.org/04g33m791 Norrkƶping Hospital'),
(4422, 'https://ror.org/02pk13h45', 'en', 1, 'https://ror.org/02pk13h45 St George Hospital'),
(4423, 'https://ror.org/01cjd8n57', 'no_lang_code', 1, 'https://ror.org/01cjd8n57 Nagasaki Rousai Hospital é•·å“ŽåŠ“ē½ē—…é™¢'),
(4424, 'https://ror.org/010tb3a87', 'en', 1, 'https://ror.org/010tb3a87 Nagatomi Neurosurgical Hospital ę°øå†Øč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(4425, 'https://ror.org/05xhpce34', 'en', 1, 'https://ror.org/05xhpce34 St Gƶran''s Children''s Hospital'),
(4426, 'https://ror.org/04fyasj17', 'en', 1, 'https://ror.org/04fyasj17 Nagoya Central Hospital åå¤å±‹ć‚»ćƒ³ćƒˆćƒ©ćƒ«ē—…é™¢'),
(4427, 'https://ror.org/05t8kxz54', 'en', 1, 'https://ror.org/05t8kxz54 Saddleback Memorial Medical Center'),
(4428, 'https://ror.org/002x0mf51', 'tr', 1, 'https://ror.org/002x0mf51 Mareşal Ƈakmak Askeri Hastanesi'),
(4429, 'https://ror.org/04c6bry31', 'en', 1, 'https://ror.org/04c6bry31 St. James''s Hospital'),
(4430, 'https://ror.org/0267zkr58', 'no_lang_code', 1, 'https://ror.org/0267zkr58 Safdarjang Hospital'),
(4431, 'https://ror.org/05xhkqs13', 'en', 1, 'https://ror.org/05xhkqs13 North Bengal Medical College and Hospital ą¦Øą¦°ą§ą¦„ą¦¬ą§‡ą¦™ą§ą¦—ą¦² ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ'),
(4432, 'https://ror.org/009fhc817', 'pl', 1, 'https://ror.org/009fhc817 Szpital im Tadeusza Marciniaka'),
(4433, 'https://ror.org/05x2sza30', 'en', 1, 'https://ror.org/05x2sza30 Higashi Nagoya National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹ę±åå¤å±‹ē—…é™¢'),
(4434, 'https://ror.org/01dkvrg87', 'en', 1, 'https://ror.org/01dkvrg87 Sabbatsberg Hospital Sabbatsbergs Sjukhus'),
(4435, 'https://ror.org/01nhcyg40', 'no_lang_code', 1, 'https://ror.org/01nhcyg40 Nagoya Ekisaikai Hospital åå¤å±‹ęŽ–ęøˆä¼šē—…é™¢'),
(4436, 'https://ror.org/05fccw142', 'it', 1, 'https://ror.org/05fccw142 Ospedale San Pietro Fatebenefratelli'),
(4437, 'https://ror.org/04ctp9859', 'it', 1, 'https://ror.org/04ctp9859 Ospedale Maria Vittoria'),
(4438, 'https://ror.org/03m5bv793', 'en', 1, 'https://ror.org/03m5bv793 Marianjoy Rehabilitation Hospital'),
(4439, 'https://ror.org/034t5cp02', 'en', 1, 'https://ror.org/034t5cp02 North Carolina Division of Public Health'),
(4440, 'https://ror.org/010hq5p48', 'it', 1, 'https://ror.org/010hq5p48 Ospedale Sacro Cuore Don Calabria'),
(4441, 'https://ror.org/05kzbz291', 'no_lang_code', 1, 'https://ror.org/05kzbz291 Nagoya Kyouritsu Hospital åå¤å±‹å…±ē«‹ē—…é™¢'),
(4442, 'https://ror.org/035p1zc77', 'en', 1, 'https://ror.org/035p1zc77 St John of Jerusalem Eye Hospital Group'),
(4443, 'https://ror.org/01hssm416', 'en', 1, 'https://ror.org/01hssm416 St John''s Hospital'),
(4444, 'https://ror.org/02a2vbq68', 'en', 1, 'https://ror.org/02a2vbq68 Nagoya Memorial Hospital åå¤å±‹čØ˜åæµē—…é™¢'),
(4445, 'https://ror.org/00sbqe313', 'en', 1, 'https://ror.org/00sbqe313 Sacred Heart Medical Center'),
(4446, 'https://ror.org/04z7fc725', 'en', 1, 'https://ror.org/04z7fc725 St.John''s Medical College Hospital'),
(4447, 'https://ror.org/02jed3n25', 'en', 1, 'https://ror.org/02jed3n25 Sacred Heart Hospital'),
(4448, 'https://ror.org/0460fxw51', 'en', 1, 'https://ror.org/0460fxw51 Sacred Heart Hospital'),
(4449, 'https://ror.org/05qye4525', 'en', 1, 'https://ror.org/05qye4525 Mercy Hospital'),
(4450, 'https://ror.org/05k9bck94', 'en', 1, 'https://ror.org/05k9bck94 Marietta Memorial Hospital'),
(4451, 'https://ror.org/046vare28', 'de', 1, 'https://ror.org/046vare28 St. Josef-Hospital'),
(4452, 'https://ror.org/00ft41876', 'en', 1, 'https://ror.org/00ft41876 Marion duPont Scott Equine Medical Center'),
(4453, 'https://ror.org/00r59hk87', 'en', 1, 'https://ror.org/00r59hk87 North Kansas City Hospital'),
(4454, 'https://ror.org/01wc5x922', 'en', 1, 'https://ror.org/01wc5x922 Providence Sacred Heart Medical Center'),
(4455, 'https://ror.org/03fz57f90', 'hu', 1, 'https://ror.org/03fz57f90 Markusovszky Egyetemi OktatókórhÔz'),
(4456, 'https://ror.org/02gxymm77', 'en', 1, 'https://ror.org/02gxymm77 Nakamura Memorial Hospital äø­ę‘čØ˜åæµē—…é™¢'),
(4457, 'https://ror.org/007vcvm35', 'en', 1, 'https://ror.org/007vcvm35 North Karelia Central Hospital Pohjois-Karjalan Sairaanhoito- Ja Sosiaalipalvelujen KuntayhtymƤ'),
(4458, 'https://ror.org/03tqnz817', 'en', 1, 'https://ror.org/03tqnz817 Sachs'' Children and Youth Hospital'),
(4459, 'https://ror.org/010kthv55', 'no_lang_code', 1, 'https://ror.org/010kthv55 Nakadōri General Hospital äø­é€šē·åˆē—…é™¢'),
(4460, 'https://ror.org/02mxfm070', 'en', 1, 'https://ror.org/02mxfm070 St Joseph''s Hospital Health Center'),
(4461, 'https://ror.org/010ns0q29', 'en', 1, 'https://ror.org/010ns0q29 North Memorial Medical Center'),
(4462, 'https://ror.org/03acrxj66', 'en', 1, 'https://ror.org/03acrxj66 North Memorial Health Care'),
(4463, 'https://ror.org/00agkba13', 'en', 1, 'https://ror.org/00agkba13 Martha Jefferson Hospital'),
(4464, 'https://ror.org/01xrnpj63', 'no_lang_code', 1, 'https://ror.org/01xrnpj63 Sahara Hospital'),
(4465, 'https://ror.org/046e0q987', 'en', 1, 'https://ror.org/046e0q987 St Lawrence Hospital'),
(4466, 'https://ror.org/05n952b74', 'en', 1, 'https://ror.org/05n952b74 North Mississippi Medical Center'),
(4467, 'https://ror.org/04wbsx459', 'en', 1, 'https://ror.org/04wbsx459 Nambour General Hospital'),
(4468, 'https://ror.org/05y7e6905', 'no_lang_code', 1, 'https://ror.org/05y7e6905 Sahmyook Medical Center ģ‚¼ģœ”ģ˜ė£Œģ›ģ„œģšøė³‘ģ›'),
(4469, 'https://ror.org/05d871a36', 'en', 1, 'https://ror.org/05d871a36 Saifee Hospital'),
(4470, 'https://ror.org/01atwky19', 'en', 1, 'https://ror.org/01atwky19 North Oaks Health System'),
(4471, 'https://ror.org/0195twz09', 'en', 1, 'https://ror.org/0195twz09 St. Luke''s Episcopal Hospital'),
(4472, 'https://ror.org/02ajrkx50', 'en', 1, 'https://ror.org/02ajrkx50 St. Luke''s Hospital'),
(4473, 'https://ror.org/051b9c228', 'it', 1, 'https://ror.org/051b9c228 Ospedale Martini'),
(4474, 'https://ror.org/00g9xaj16', 'en', 1, 'https://ror.org/00g9xaj16 Saint Agnes Medical Center'),
(4475, 'https://ror.org/04e4abg78', 'no_lang_code', 1, 'https://ror.org/04e4abg78 Nantan General Hospital å…¬ē«‹å—äø¹ē—…é™¢'),
(4476, 'https://ror.org/03r776098', 'en', 1, 'https://ror.org/03r776098 Saint Alphonsus Regional Medical Center'),
(4477, 'https://ror.org/02952et24', 'en', 1, 'https://ror.org/02952et24 St. Barnabas Hospital'),
(4478, 'https://ror.org/01t69y763', 'en', 1, 'https://ror.org/01t69y763 St. Luke''s Hospital'),
(4479, 'https://ror.org/04j71m034', 'en', 1, 'https://ror.org/04j71m034 Saint Francis Health System'),
(4480, 'https://ror.org/00z0ne711', 'en', 1, 'https://ror.org/00z0ne711 Saint Francis Hospital'),
(4481, 'https://ror.org/01dzpsy49', 'en', 1, 'https://ror.org/01dzpsy49 Nara City Hospital åø‚ē«‹å„ˆč‰Æē—…é™¢'),
(4482, 'https://ror.org/01t6fdj11', 'en', 1, 'https://ror.org/01t6fdj11 Mary Free Bed Rehabilitation Hospital'),
(4483, 'https://ror.org/002ksg449', 'en', 1, 'https://ror.org/002ksg449 Mary Crowley Cancer Research Center'),
(4484, 'https://ror.org/00b4emx12', 'en', 1, 'https://ror.org/00b4emx12 North Shore Medical Center'),
(4485, 'https://ror.org/026gtm069', 'en', 1, 'https://ror.org/026gtm069 Maryknoll Medical Center 메리놀병원'),
(4486, 'https://ror.org/02e1t6r96', 'en', 1, 'https://ror.org/02e1t6r96 Maryland Department of Health'),
(4487, 'https://ror.org/03rx7qt61', 'en', 1, 'https://ror.org/03rx7qt61 Maryland State Medical Society'),
(4488, 'https://ror.org/004rs4477', 'en', 1, 'https://ror.org/004rs4477 Masonic Medical Research Laboratory'),
(4489, 'https://ror.org/05h29d328', 'en', 1, 'https://ror.org/05h29d328 Saint Francis Memorial Hospital'),
(4490, 'https://ror.org/00j2n4x83', 'en', 1, 'https://ror.org/00j2n4x83 Narayana Dental College and Hospital'),
(4491, 'https://ror.org/01nwsvf80', 'en', 1, 'https://ror.org/01nwsvf80 Shiga Medical Center for Children å­ä¾›ć®ćŸć‚ć®ę»‹č³€åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4492, 'https://ror.org/03t4gtw27', 'ro', 1, 'https://ror.org/03t4gtw27 Spitalul Clinic de Urgenta Sfantul Ioan'),
(4493, 'https://ror.org/05kx1ke03', 'en', 1, 'https://ror.org/05kx1ke03 Narayana Health'),
(4494, 'https://ror.org/05k4mr860', 'en', 1, 'https://ror.org/05k4mr860 Saint John Regional Hospital'),
(4495, 'https://ror.org/01gcc9p15', 'en', 1, 'https://ror.org/01gcc9p15 Saint John''s Health Center'),
(4496, 'https://ror.org/03tr4r126', 'en', 1, 'https://ror.org/03tr4r126 Narayan Medical College and Hospital'),
(4497, 'https://ror.org/05am5g719', 'en', 1, 'https://ror.org/05am5g719 St Mark''s Hospital'),
(4498, 'https://ror.org/050c9qp51', 'en', 1, 'https://ror.org/050c9qp51 Massachusetts Department of Public Health'),
(4499, 'https://ror.org/01zy11s57', 'en', 1, 'https://ror.org/01zy11s57 North Tyneside General Hospital'),
(4500, 'https://ror.org/01ttqjq76', 'en', 1, 'https://ror.org/01ttqjq76 North Wales Hospital'),
(4501, 'https://ror.org/03c622h45', 'en', 1, 'https://ror.org/03c622h45 National Academy for State Health Policy'),
(4502, 'https://ror.org/03pskkc12', 'en', 1, 'https://ror.org/03pskkc12 National Academy of Medical Sciences'),
(4503, 'https://ror.org/01mhbkr88', 'en', 1, 'https://ror.org/01mhbkr88 St Martha''s Regional Hospital'),
(4504, 'https://ror.org/048xpjb02', 'en', 1, 'https://ror.org/048xpjb02 National Association of County and City Health Officials'),
(4505, 'https://ror.org/03nr55d93', 'en', 1, 'https://ror.org/03nr55d93 North West Armed Forces Hospital مستؓفى Ų§Ł„Ł‚ŁˆŲ§ŲŖ المسلحة ŲØŲ§Ł„Ų“Ł…Ų§Ł„ŁŠŲ©'),
(4506, 'https://ror.org/001x4vz59', 'en', 1, 'https://ror.org/001x4vz59 St Mary''s Hospital'),
(4507, 'https://ror.org/040vfm237', 'en', 1, 'https://ror.org/040vfm237 North West Regional Hospital'),
(4508, 'https://ror.org/0229c7854', 'en', 1, 'https://ror.org/0229c7854 Massachusetts Mental Health Center'),
(4509, 'https://ror.org/05wqhv079', 'en', 1, 'https://ror.org/05wqhv079 Mater Adult Hospital'),
(4510, 'https://ror.org/04mxrtj31', 'en', 1, 'https://ror.org/04mxrtj31 Mater Children''s Hospital'),
(4511, 'https://ror.org/03rfbyn37', 'en', 1, 'https://ror.org/03rfbyn37 Northampton General Hospital'),
(4512, 'https://ror.org/01emnh554', 'no_lang_code', 1, 'https://ror.org/01emnh554 Saga-Ken Medical Centre Koseikan ä½č³€ēœŒåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼å„½ē”Ÿé¤Ø'),
(4513, 'https://ror.org/050cwzy61', 'en', 1, 'https://ror.org/050cwzy61 St Mary''s Hospital'),
(4514, 'https://ror.org/04r17y386', 'en', 1, 'https://ror.org/04r17y386 Danish Health and Medicines Authority National Board of Health Sundhedsstyrelsen'),
(4515, 'https://ror.org/046taf492', 'en', 1, 'https://ror.org/046taf492 St Mary''s Hospital'),
(4516, 'https://ror.org/05yjze111', 'en', 1, 'https://ror.org/05yjze111 Unity Hospital'),
(4517, 'https://ror.org/00m72p590', 'en', 1, 'https://ror.org/00m72p590 Saint Joseph''s Hospital'),
(4518, 'https://ror.org/05a01hn31', 'en', 1, 'https://ror.org/05a01hn31 Mater Dei Hospital'),
(4519, 'https://ror.org/00wzdr059', 'en', 1, 'https://ror.org/00wzdr059 St. Paul''s Hospital'),
(4520, 'https://ror.org/04yy7zb66', 'en', 1, 'https://ror.org/04yy7zb66 Centre for Mental Health'),
(4521, 'https://ror.org/01g63ab19', 'en', 1, 'https://ror.org/01g63ab19 Northside Hospital'),
(4522, 'https://ror.org/013sgak22', 'en', 1, 'https://ror.org/013sgak22 Northwest Community Hospital'),
(4523, 'https://ror.org/023gt0394', 'en', 1, 'https://ror.org/023gt0394 St Richard''s Hospital'),
(4524, 'https://ror.org/050batv17', 'en', 1, 'https://ror.org/050batv17 Mater Hospital'),
(4525, 'https://ror.org/02eypkr92', 'en', 1, 'https://ror.org/02eypkr92 Northwest Hospital and Medical Center'),
(4526, 'https://ror.org/03w94w157', 'en', 1, 'https://ror.org/03w94w157 Mater Private Hospital'),
(4527, 'https://ror.org/03j4rdg62', 'en', 1, 'https://ror.org/03j4rdg62 Mater Mothers'' Hospital'),
(4528, 'https://ror.org/009543z50', 'en', 1, 'https://ror.org/009543z50 Northwestern Memorial Hospital'),
(4529, 'https://ror.org/030j6qm79', 'en', 1, 'https://ror.org/030j6qm79 Northwick Park Hospital'),
(4530, 'https://ror.org/04a105t20', 'en', 1, 'https://ror.org/04a105t20 St. Mary''s Hospital'),
(4531, 'https://ror.org/004350h06', 'en', 1, 'https://ror.org/004350h06 Saint Vincent Hospital'),
(4532, 'https://ror.org/04ned8342', 'en', 1, 'https://ror.org/04ned8342 Saint Michael''s Medical Center'),
(4533, 'https://ror.org/02h2qwk37', 'en', 1, 'https://ror.org/02h2qwk37 St Vincent Medical Center'),
(4534, 'https://ror.org/04bg1hy68', 'en', 1, 'https://ror.org/04bg1hy68 Saint Thomas West Hospital'),
(4535, 'https://ror.org/01d2e9e05', 'en', 1, 'https://ror.org/01d2e9e05 Maternity and Children''s Hospital'),
(4536, 'https://ror.org/02hfws565', 'en', 1, 'https://ror.org/02hfws565 Northwick Park Institute for Medical Research'),
(4537, 'https://ror.org/01q6b3f33', 'no_lang_code', 1, 'https://ror.org/01q6b3f33 Al Omooma Hospital'),
(4538, 'https://ror.org/00cwrhn79', 'en', 1, 'https://ror.org/00cwrhn79 Saint Vincent''s Catholic Medical Center'),
(4539, 'https://ror.org/04hzm4679', 'en', 1, 'https://ror.org/04hzm4679 National Institute for Occupational Health'),
(4540, 'https://ror.org/02gzhbc75', 'en', 1, 'https://ror.org/02gzhbc75 Matsudo City Hospital ę¾ęˆøåø‚ē«‹ē—…é™¢'),
(4541, 'https://ror.org/04pne0d08', 'en', 1, 'https://ror.org/04pne0d08 Norton Medical Centre'),
(4542, 'https://ror.org/03nc3zw41', 'en', 1, 'https://ror.org/03nc3zw41 Matsue Red Cross Hospital ę¾ę±Ÿčµ¤åå­—ē—…é™¢'),
(4543, 'https://ror.org/018vqfn69', 'en', 1, 'https://ror.org/018vqfn69 Matsunami General Hospital ę¾ę³¢ē—…é™¢'),
(4544, 'https://ror.org/03ycmew18', 'en', 1, 'https://ror.org/03ycmew18 Matsushita Memorial Hospital ę¾äø‹čØ˜åæµē—…é™¢'),
(4545, 'https://ror.org/02jww9n06', 'en', 1, 'https://ror.org/02jww9n06 Matsuyama Red Cross Hospital ę¾å±±čµ¤åå­—ē—…é™¢'),
(4546, 'https://ror.org/000f32327', 'en', 1, 'https://ror.org/000f32327 Saint Vincent Hospital'),
(4547, 'https://ror.org/05c8e3213', 'no_lang_code', 1, 'https://ror.org/05c8e3213 Saiseikai Fukuoka General Hospital ęøˆē”Ÿä¼šē¦å²”ē·åˆē—…é™¢'),
(4548, 'https://ror.org/055bcma36', 'en', 1, 'https://ror.org/055bcma36 Hospital Venereal and Skin Diseases Thessaloniki ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘Ļ†ĻĪæĪ“Ī¹ĻƒĪÆĻ‰Ī½ & Ī”ĪµĻĪ¼Ī±Ļ„Ī¹ĪŗĻŽĪ½ ĪĻŒĻƒĻ‰Ī½ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(4549, 'https://ror.org/04r61xa45', 'no_lang_code', 1, 'https://ror.org/04r61xa45 Saiseikai Ibaraki Hospital å¤§é˜Ŗåŗœęøˆē”Ÿä¼ščŒØęœØē—…é™¢'),
(4550, 'https://ror.org/021f4qx93', 'en', 1, 'https://ror.org/021f4qx93 Noto General Hospital å…¬ē«‹čƒ½ē™»ē·åˆē—…é™¢'),
(4551, 'https://ror.org/02gxh1s15', 'en', 1, 'https://ror.org/02gxh1s15 St. Anthony Hospital'),
(4552, 'https://ror.org/00nnh8h94', 'en', 1, 'https://ror.org/00nnh8h94 Red Cross Hospital'),
(4553, 'https://ror.org/02stwhg86', 'en', 1, 'https://ror.org/02stwhg86 St. Charles Medical Center'),
(4554, 'https://ror.org/00xz1cn67', 'no_lang_code', 1, 'https://ror.org/00xz1cn67 Saiseikai Kumamoto Hospital ęøˆē”Ÿä¼šē†Šęœ¬ē—…é™¢'),
(4555, 'https://ror.org/00e60hf45', 'en', 1, 'https://ror.org/00e60hf45 OspidƩal Naomh Damhnait St. Davnet''s Hospital'),
(4556, 'https://ror.org/05srfkv34', 'en', 1, 'https://ror.org/05srfkv34 Chelyabinsk State Medical Academy Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4557, 'https://ror.org/033js5093', 'no_lang_code', 1, 'https://ror.org/033js5093 Gunma Saiseikai Maebashi Hospital ē¾¤é¦¬ēœŒęøˆē”Ÿä¼šå‰ę©‹ē—…é™¢'),
(4558, 'https://ror.org/003mpgw14', 'en', 1, 'https://ror.org/003mpgw14 St. Elisabeth Hospital'),
(4559, 'https://ror.org/03pj30e67', 'no_lang_code', 1, 'https://ror.org/03pj30e67 Saiseikai Nakatsu Hospital å¤§é˜Ŗåŗœęøˆē”Ÿä¼šäø­ę“„ē—…é™¢'),
(4560, 'https://ror.org/02e560b93', 'de', 1, 'https://ror.org/02e560b93 Barmherzige Brüder Klinikum St. Elisabeth in Straubing'),
(4561, 'https://ror.org/004ej3g52', 'en', 1, 'https://ror.org/004ej3g52 National Defense Medical College Hospital é˜²č”›åŒ»ē§‘å¤§å­¦ę ”ē—…é™¢'),
(4562, 'https://ror.org/01x8bpc61', 'en', 1, 'https://ror.org/01x8bpc61 Saint Elizabeth Regional Medical Center'),
(4563, 'https://ror.org/053ad7h16', 'no_lang_code', 1, 'https://ror.org/053ad7h16 Saiseikai Shigaken Hospital ęøˆē”Ÿä¼šę»‹č³€ēœŒē—…é™¢'),
(4564, 'https://ror.org/02dvgss50', 'en', 1, 'https://ror.org/02dvgss50 Stepping Hill Hospital'),
(4565, 'https://ror.org/03btaj690', 'no_lang_code', 1, 'https://ror.org/03btaj690 Numazu City Hospital 沼擄市立病院'),
(4566, 'https://ror.org/03h1gw307', 'en', 1, 'https://ror.org/03h1gw307 Ospedale S. Eugenio St. Eugenio Hospital'),
(4567, 'https://ror.org/01dgncy67', 'no_lang_code', 1, 'https://ror.org/01dgncy67 Saiseikai Shimonoseki General Hospital å±±å£ēœŒęøˆē”Ÿä¼šäø‹é–¢ē·åˆē—…é™¢'),
(4568, 'https://ror.org/01r3ez507', 'en', 1, 'https://ror.org/01r3ez507 Sterling Hospitals'),
(4569, 'https://ror.org/03ehcbt32', 'no_lang_code', 1, 'https://ror.org/03ehcbt32 Saiseikai Suita Hospital å¤§é˜Ŗåŗœęøˆē”Ÿä¼šå¹ē”°ē—…é™¢'),
(4570, 'https://ror.org/00frzd868', 'en', 1, 'https://ror.org/00frzd868 St. Francis Hospital'),
(4571, 'https://ror.org/05k1smr06', 'cs', 1, 'https://ror.org/05k1smr06 Nemocnice Å ternberk'),
(4572, 'https://ror.org/00rfgpg89', 'en', 1, 'https://ror.org/00rfgpg89 Salem Hospital'),
(4573, 'https://ror.org/04pc31859', 'en', 1, 'https://ror.org/04pc31859 Stobhill Hospital'),
(4574, 'https://ror.org/027mz0g68', 'en', 1, 'https://ror.org/027mz0g68 Salem VA Medical Center'),
(4575, 'https://ror.org/00b9w6n61', 'en', 1, 'https://ror.org/00b9w6n61 St. Francis Hospital'),
(4576, 'https://ror.org/05bx2yj81', 'en', 1, 'https://ror.org/05bx2yj81 Salisbury District Hospital'),
(4577, 'https://ror.org/03ehzxb24', 'en', 1, 'https://ror.org/03ehzxb24 St. Francis Medical Center'),
(4578, 'https://ror.org/01k5x4673', 'en', 1, 'https://ror.org/01k5x4673 Saint Francis Medical Center'),
(4579, 'https://ror.org/04461gd92', 'en', 1, 'https://ror.org/04461gd92 Salmaniya Medical Complex مجمع Ų§Ł„Ų³Ł„Ł…Ų§Ł†ŁŠŲ© Ų§Ł„Ų·ŲØŁŠ'),
(4580, 'https://ror.org/04sah3q11', 'en', 1, 'https://ror.org/04sah3q11 St. Francis Medical Center'),
(4581, 'https://ror.org/00ncfk576', 'en', 1, 'https://ror.org/00ncfk576 Stockholm South General Hospital'),
(4582, 'https://ror.org/01c1ce922', 'it', 1, 'https://ror.org/01c1ce922 Nuovo Ospedale San Giovanni di Dio'),
(4583, 'https://ror.org/02hssy432', 'it', 1, 'https://ror.org/02hssy432 Istituto Superiore di SanitĆ  National Institute of Health'),
(4584, 'https://ror.org/00s8bsd30', 'en', 1, 'https://ror.org/00s8bsd30 Via Christi Hospital St. Francis'),
(4585, 'https://ror.org/043j17q40', 'en', 1, 'https://ror.org/043j17q40 San Antonio State Chest Hospital'),
(4586, 'https://ror.org/051nxfa23', 'de', 1, 'https://ror.org/051nxfa23 St. Franziskus Hospital'),
(4587, 'https://ror.org/05w90nk74', 'en', 1, 'https://ror.org/05w90nk74 Stollery Children''s Hospital'),
(4588, 'https://ror.org/04jkbm032', 'en', 1, 'https://ror.org/04jkbm032 Stratheden Hospital'),
(4589, 'https://ror.org/04j3jhk11', 'en', 1, 'https://ror.org/04j3jhk11 San Antonio Uniformed Services Health Education Consortium'),
(4590, 'https://ror.org/00bmwjh97', 'en', 1, 'https://ror.org/00bmwjh97 St. James Hospital and Health Centers'),
(4591, 'https://ror.org/0583j8v67', 'en', 1, 'https://ror.org/0583j8v67 Strong Memorial Hospital'),
(4592, 'https://ror.org/0378zg266', 'en', 1, 'https://ror.org/0378zg266 Nyack Hospital'),
(4593, 'https://ror.org/004x58208', 'en', 1, 'https://ror.org/004x58208 St. John Medical Center'),
(4594, 'https://ror.org/049knzm77', 'en', 1, 'https://ror.org/049knzm77 Sturdy Memorial Hospital'),
(4595, 'https://ror.org/058qmst67', 'fr', 1, 'https://ror.org/058qmst67 HƓpital Saint Roch'),
(4596, 'https://ror.org/04p4s5b35', 'en', 1, 'https://ror.org/04p4s5b35 St. John''s Hospital'),
(4597, 'https://ror.org/00zrfhe30', 'nl', 1, 'https://ror.org/00zrfhe30 Onze Lieve Vrouwziekenhuis Hospital'),
(4598, 'https://ror.org/00jtwsb29', 'en', 1, 'https://ror.org/00jtwsb29 Suburban Hospital'),
(4599, 'https://ror.org/055a6nt34', 'it', 1, 'https://ror.org/055a6nt34 Servizio Sanitario Nazionale'),
(4600, 'https://ror.org/04y0sey15', 'en', 1, 'https://ror.org/04y0sey15 Oasis of Hope Hospital'),
(4601, 'https://ror.org/053h7gw81', 'en', 1, 'https://ror.org/053h7gw81 Swami Vivekanand Subharti University'),
(4602, 'https://ror.org/03a2szg51', 'no_lang_code', 1, 'https://ror.org/03a2szg51 Saiseikai Utsunomiya hospital ęøˆē”Ÿä¼šå®‡éƒ½å®®ē—…é™¢'),
(4603, 'https://ror.org/014j33z40', 'en', 1, 'https://ror.org/014j33z40 National Hospital Abuja'),
(4604, 'https://ror.org/03t995d97', 'en', 1, 'https://ror.org/03t995d97 St. Joseph Health System'),
(4605, 'https://ror.org/01nw60f27', 'no_lang_code', 1, 'https://ror.org/01nw60f27 Saiseikai Wakakusa Hospital ęøˆē”Ÿä¼šč‹„č‰ē—…é™¢'),
(4606, 'https://ror.org/009nbdt96', 'en', 1, 'https://ror.org/009nbdt96 St. Joseph Medical Center'),
(4607, 'https://ror.org/05h6r6f02', 'no_lang_code', 1, 'https://ror.org/05h6r6f02 Saiseikai Yahata General Hospital ē¦å²”ēœŒęøˆē”Ÿä¼šå…«å¹”ē·åˆē—…é™¢'),
(4608, 'https://ror.org/03m52v505', 'en', 1, 'https://ror.org/03m52v505 Suffolk County Department of Health Services'),
(4609, 'https://ror.org/027fjzp74', 'en', 1, 'https://ror.org/027fjzp74 Obihiro Kosei General Hospital åøÆåŗƒåŽšē”Ÿē—…é™¢'),
(4610, 'https://ror.org/03eydna48', 'en', 1, 'https://ror.org/03eydna48 St. Joseph Hospital'),
(4611, 'https://ror.org/02w95ej18', 'en', 1, 'https://ror.org/02w95ej18 Suita Municipal Hospital 市立吹田市民病院'),
(4612, 'https://ror.org/03a4d7t12', 'en', 1, 'https://ror.org/03a4d7t12 Saitama Cancer Center åŸ¼ēŽ‰ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(4613, 'https://ror.org/0132ynj18', 'en', 1, 'https://ror.org/0132ynj18 St. Joseph Hospital'),
(4614, 'https://ror.org/00smq1v26', 'en', 1, 'https://ror.org/00smq1v26 Saitama Children''s Medical Center åŸ¼ēŽ‰ēœŒē«‹å°å…åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4615, 'https://ror.org/026mp1041', 'en', 1, 'https://ror.org/026mp1041 St. Joseph Hospital'),
(4616, 'https://ror.org/052vt9742', 'en', 1, 'https://ror.org/052vt9742 St. Joseph Medical Center'),
(4617, 'https://ror.org/0378e9394', 'no_lang_code', 1, 'https://ror.org/0378e9394 Saitama Municipal Hospital ć•ć„ćŸć¾åø‚ē«‹ē—…é™¢'),
(4618, 'https://ror.org/0353zfd89', 'en', 1, 'https://ror.org/0353zfd89 Sultan Qaboos Hospital مستؓفى السلطان Ł‚Ų§ŲØŁˆŲ³'),
(4619, 'https://ror.org/05j40pq70', 'en', 1, 'https://ror.org/05j40pq70 Saitama Red Cross Hospital ć•ć„ćŸć¾čµ¤åå­—ē—…é™¢'),
(4620, 'https://ror.org/04v24dh28', 'en', 1, 'https://ror.org/04v24dh28 Sumitomo Besshi Hospital ä½å‹åˆ„å­ē—…é™¢'),
(4621, 'https://ror.org/014nm9q97', 'no_lang_code', 1, 'https://ror.org/014nm9q97 Sakai Municipal Hospital å ŗåø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4622, 'https://ror.org/02m9ewz37', 'no_lang_code', 1, 'https://ror.org/02m9ewz37 Sumitomo Hospital äø€čˆ¬č²”å›£ę³•äŗŗä½å‹ē—…é™¢'),
(4623, 'https://ror.org/015ah0c92', 'en', 1, 'https://ror.org/015ah0c92 National Institute for Health and Care Excellence'),
(4624, 'https://ror.org/03p6fpw74', 'en', 1, 'https://ror.org/03p6fpw74 Summa Health System'),
(4625, 'https://ror.org/05b021m32', 'en', 1, 'https://ror.org/05b021m32 Alta Bates Summit Medical Center'),
(4626, 'https://ror.org/05jvgwr81', 'en', 1, 'https://ror.org/05jvgwr81 National Institute of Medical Rehabilitation OrszÔgos Orvosi RehabilitÔciós Intézet'),
(4627, 'https://ror.org/02mpfs279', 'en', 1, 'https://ror.org/02mpfs279 Daejeon Sun Hospital ėŒ€ģ „ģ„ ė³‘ģ›'),
(4628, 'https://ror.org/045jb6x14', 'en', 1, 'https://ror.org/045jb6x14 Sundaram Medical Foundation'),
(4629, 'https://ror.org/03rx00z90', 'no_lang_code', 1, 'https://ror.org/03rx00z90 Sakurabashi Watanabe Hospital ę”œę©‹ęø”č¾ŗē—…é™¢'),
(4630, 'https://ror.org/01d1m4h32', 'en', 1, 'https://ror.org/01d1m4h32 Samaritan Center'),
(4631, 'https://ror.org/0084bse20', 'sv', 1, 'https://ror.org/0084bse20 Sunderby sjukhus'),
(4632, 'https://ror.org/02xqze381', 'it', 1, 'https://ror.org/02xqze381 Ospedale San Bassiano'),
(4633, 'https://ror.org/04kzhn079', 'en', 1, 'https://ror.org/04kzhn079 St. Joseph''s Hospital'),
(4634, 'https://ror.org/02s0dm484', 'en', 1, 'https://ror.org/02s0dm484 Sunderland Royal Hospital'),
(4635, 'https://ror.org/01fpjqs91', 'en', 1, 'https://ror.org/01fpjqs91 St. Joseph''s Hospital'),
(4636, 'https://ror.org/03mm5qn83', 'en', 1, 'https://ror.org/03mm5qn83 Occupational Safety & Health Administration'),
(4637, 'https://ror.org/02z9b2w17', 'sv', 1, 'https://ror.org/02z9b2w17 LƤnssjukhuset Sundsvall-HƤrnƶsand'),
(4638, 'https://ror.org/049mgby18', 'en', 1, 'https://ror.org/049mgby18 National Institute of Child Health'),
(4639, 'https://ror.org/05j8x4n38', 'en', 1, 'https://ror.org/05j8x4n38 San Francisco General Hospital'),
(4640, 'https://ror.org/02cmyty27', 'en', 1, 'https://ror.org/02cmyty27 St. Joseph''s Hospital'),
(4641, 'https://ror.org/05g42cb02', 'en', 1, 'https://ror.org/05g42cb02 Netcare Sunninghill Hospital'),
(4642, 'https://ror.org/047c5ks69', 'en', 1, 'https://ror.org/047c5ks69 Sunny Hill Health Centre for Children'),
(4643, 'https://ror.org/017je7s69', 'en', 1, 'https://ror.org/017je7s69 National Institute for Research in Reproductive Health ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤œą¤Øą¤Ø ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(4644, 'https://ror.org/00r520291', 'en', 1, 'https://ror.org/00r520291 St. Joseph''s Hospital'),
(4645, 'https://ror.org/03k7veg12', 'no_lang_code', 1, 'https://ror.org/03k7veg12 Odawara Municipal Hospital å°ē”°åŽŸåø‚ē«‹ē—…é™¢'),
(4646, 'https://ror.org/05v6jj657', 'en', 1, 'https://ror.org/05v6jj657 Office of Chief Medical Examiner'),
(4647, 'https://ror.org/02c495c76', 'en', 1, 'https://ror.org/02c495c76 St. Joseph’s University Medical Center'),
(4648, 'https://ror.org/008kn1a71', 'en', 1, 'https://ror.org/008kn1a71 Sunnybrook Hospital'),
(4649, 'https://ror.org/03j7t7330', 'en', 1, 'https://ror.org/03j7t7330 St. Joseph''s Children''s Hospital'),
(4650, 'https://ror.org/02tp2kq68', 'it', 1, 'https://ror.org/02tp2kq68 Fondazione Ospedale Salesi'),
(4651, 'https://ror.org/014ft7z36', 'en', 1, 'https://ror.org/014ft7z36 Office of Disease Prevention and Health Promotion'),
(4652, 'https://ror.org/01wxzd328', 'no_lang_code', 1, 'https://ror.org/01wxzd328 Kunitachi Sakura Hospital å›½ē«‹ć•ćć‚‰ē—…é™¢'),
(4653, 'https://ror.org/04f2pye70', 'en', 1, 'https://ror.org/04f2pye70 St. Jude Medical Center'),
(4654, 'https://ror.org/01q2ty078', 'no_lang_code', 1, 'https://ror.org/01q2ty078 Saku Central Hospital ä½ä¹…ē·åˆē—…é™¢'),
(4655, 'https://ror.org/04c9pv832', 'de', 1, 'https://ror.org/04c9pv832 Krankenhaus Salem'),
(4656, 'https://ror.org/05h1kgg64', 'en', 1, 'https://ror.org/05h1kgg64 National Institute of Health'),
(4657, 'https://ror.org/01zdmh905', 'en', 1, 'https://ror.org/01zdmh905 Office of the Chief Medical Examiner'),
(4658, 'https://ror.org/03bg65591', 'en', 1, 'https://ror.org/03bg65591 Susquehanna Health'),
(4659, 'https://ror.org/044zkrt47', 'en', 1, 'https://ror.org/044zkrt47 National Institute of Health of Thailand ąøŖąø–ąø²ąøšąø±ąø™ąø§ąø“ąøˆąø±ąø¢ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹ŒąøŖąø²ąø˜ąø²ąø£ąø“ąøŖąøøąø‚'),
(4660, 'https://ror.org/030637x68', 'en', 1, 'https://ror.org/030637x68 Sussex Eye Hospital'),
(4661, 'https://ror.org/00ny8jb29', 'en', 1, 'https://ror.org/00ny8jb29 Office of the Medical Examiner of Cook County'),
(4662, 'https://ror.org/03zk9v026', 'en', 1, 'https://ror.org/03zk9v026 Sutter Medical Center'),
(4663, 'https://ror.org/009ezqy65', 'en', 1, 'https://ror.org/009ezqy65 National Institute of Health and Family Welfare ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ और परिवार ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(4664, 'https://ror.org/01639jx86', 'no_lang_code', 1, 'https://ror.org/01639jx86 Ogikubo Hospital'),
(4665, 'https://ror.org/05t626n88', 'en', 1, 'https://ror.org/05t626n88 Suwa Red Cross Hospital č«čØŖčµ¤åå­—ē—…é™¢'),
(4666, 'https://ror.org/00kb4qb80', 'en', 1, 'https://ror.org/00kb4qb80 Ogori Daiichi General Hospital å°éƒ”ē¬¬äø€ē·åˆē—…é™¢'),
(4667, 'https://ror.org/04ka38w49', 'da', 1, 'https://ror.org/04ka38w49 Svendborg Sygehus'),
(4668, 'https://ror.org/043y3sk06', 'en', 1, 'https://ror.org/043y3sk06 Ohio Heart & Vascular Center'),
(4669, 'https://ror.org/0332k3m42', 'en', 1, 'https://ror.org/0332k3m42 Syracuse VA Medical Center'),
(4670, 'https://ror.org/00yv3xr02', 'en', 1, 'https://ror.org/00yv3xr02 Ome Municipal General Hospital é’ę¢…åø‚ē«‹ē·åˆē—…é™¢'),
(4671, 'https://ror.org/03v5sbh78', 'en', 1, 'https://ror.org/03v5sbh78 Swami Devi Dyal Hospital and Dental College'),
(4672, 'https://ror.org/03tgvv724', 'en', 1, 'https://ror.org/03tgvv724 Swedish Covenant Hospital'),
(4673, 'https://ror.org/00jc2kw33', 'en', 1, 'https://ror.org/00jc2kw33 National Center for Environmental Health'),
(4674, 'https://ror.org/00fzfzc37', 'en', 1, 'https://ror.org/00fzfzc37 Manchester VA Medical Center'),
(4675, 'https://ror.org/021rths28', 'en', 1, 'https://ror.org/021rths28 National Center for Chronic Disease Prevention and Health Promotion'),
(4676, 'https://ror.org/00f5bva59', 'en', 1, 'https://ror.org/00f5bva59 Swedish Medical Center'),
(4677, 'https://ror.org/014c68a74', 'en', 1, 'https://ror.org/014c68a74 St. Louis VA Medical Center'),
(4678, 'https://ror.org/022ctzz37', 'no_lang_code', 1, 'https://ror.org/022ctzz37 Ohtsuka Eye Hospital å¤§å”šēœ¼ē§‘ē—…é™¢'),
(4679, 'https://ror.org/03p15s250', 'en', 1, 'https://ror.org/03p15s250 National Center for Health Statistics'),
(4680, 'https://ror.org/03txk6b49', 'en', 1, 'https://ror.org/03txk6b49 St. Luke''s Hospital'),
(4681, 'https://ror.org/01xfgtq85', 'en', 1, 'https://ror.org/01xfgtq85 VA West Los Angeles Medical Center');
INSERT INTO `rors` VALUES
(4682, 'https://ror.org/029fzbq43', 'no_lang_code', 1, 'https://ror.org/029fzbq43 Oita Prefectural Hospital å¤§åˆ†ēœŒē«‹ē—…é™¢'),
(4683, 'https://ror.org/00gqjdp23', 'en', 1, 'https://ror.org/00gqjdp23 Oita Red Cross Hospital å¤§åˆ†čµ¤åå­—ē—…é™¢'),
(4684, 'https://ror.org/02chbx029', 'no_lang_code', 1, 'https://ror.org/02chbx029 Oji General Hospital ēŽ‹å­ē·åˆē—…é™¢'),
(4685, 'https://ror.org/056qqqn18', 'en', 1, 'https://ror.org/056qqqn18 National Disaster Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ē½å®³åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4686, 'https://ror.org/00xzbkw82', 'en', 1, 'https://ror.org/00xzbkw82 Ohkawara Neurosurgical Hospital å¤§å·åŽŸč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(4687, 'https://ror.org/03nd0nz77', 'en', 1, 'https://ror.org/03nd0nz77 Kagoshima Medical Center é¹æå…å³¶åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4688, 'https://ror.org/03ghnvz91', 'en', 1, 'https://ror.org/03ghnvz91 West Palm Beach VA Medical Center'),
(4689, 'https://ror.org/014936814', 'en', 1, 'https://ror.org/014936814 St. Luke''s Hospital Κλινική Άγιος Λουκάς'),
(4690, 'https://ror.org/03wjr6873', 'en', 1, 'https://ror.org/03wjr6873 VA Central California Health Care System'),
(4691, 'https://ror.org/04jg4z821', 'no_lang_code', 1, 'https://ror.org/04jg4z821 Okayama Central Hospital 岔山中央病院'),
(4692, 'https://ror.org/00mrcjr06', 'en', 1, 'https://ror.org/00mrcjr06 St. Luke''s Hospital'),
(4693, 'https://ror.org/01ppsp263', 'en', 1, 'https://ror.org/01ppsp263 Toneyama National Hospital åˆ€ę ¹å±±å›½ē«‹ē—…é™¢'),
(4694, 'https://ror.org/0502a2655', 'en', 1, 'https://ror.org/0502a2655 National Institute for Occupational Safety and Health'),
(4695, 'https://ror.org/02h70he60', 'en', 1, 'https://ror.org/02h70he60 Okayama Red Cross General Hospital å²”å±±čµ¤åå­—ē—…é™¢'),
(4696, 'https://ror.org/03mxm6g77', 'en', 1, 'https://ror.org/03mxm6g77 Tomah VA Medical Center'),
(4697, 'https://ror.org/04cmadr83', 'en', 1, 'https://ror.org/04cmadr83 Okayama Rosai Hospital å²”å±±åŠ“ē½ē—…é™¢'),
(4698, 'https://ror.org/04nq4c835', 'no_lang_code', 1, 'https://ror.org/04nq4c835 Okayama Saiseikai General Hospital å²”å±±ęøˆē”Ÿä¼šē·åˆē—…é™¢'),
(4699, 'https://ror.org/05t4ef339', 'en', 1, 'https://ror.org/05t4ef339 Northern Arizona VA Health Care System'),
(4700, 'https://ror.org/040e0d212', 'en', 1, 'https://ror.org/040e0d212 Tuscaloosa VA Medical Center'),
(4701, 'https://ror.org/024b7e967', 'en', 1, 'https://ror.org/024b7e967 Phoenix VA Health Care System'),
(4702, 'https://ror.org/02x9bj444', 'en', 1, 'https://ror.org/02x9bj444 Hampton VA Medical Center'),
(4703, 'https://ror.org/039k9pj72', 'en', 1, 'https://ror.org/039k9pj72 T. D. Medical College'),
(4704, 'https://ror.org/05p668j08', 'en', 1, 'https://ror.org/05p668j08 Ospidéal GinearÔlta Naomh LúcÔs St. Luke''s General Hospital'),
(4705, 'https://ror.org/00y3cpn63', 'en', 1, 'https://ror.org/00y3cpn63 Tachikawa Medical Center ē«‹å·ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(4706, 'https://ror.org/03q7hxz75', 'en', 1, 'https://ror.org/03q7hxz75 Tachikawa Hospital ē«‹å·ē—…é™¢'),
(4707, 'https://ror.org/053vdeh68', 'en', 1, 'https://ror.org/053vdeh68 St. Luke''s Hospital'),
(4708, 'https://ror.org/057vc9k50', 'en', 1, 'https://ror.org/057vc9k50 Tai Po Hospital 大埔醫院'),
(4709, 'https://ror.org/04nx04y60', 'en', 1, 'https://ror.org/04nx04y60 Taichung Armed Forces General Hospital åœ‹č»č‡ŗäø­ēø½é†«é™¢'),
(4710, 'https://ror.org/03mpa4w20', 'en', 1, 'https://ror.org/03mpa4w20 Okinawa Prefectural Chubu Hospital ę²–ēø„ēœŒē«‹äø­éƒØē—…é™¢'),
(4711, 'https://ror.org/05be98497', 'en', 1, 'https://ror.org/05be98497 Okinawa Prefectural Institute of Health and Environment å„åŗ·ćØē’°å¢ƒć®ę²–ēø„ēœŒē«‹å¤§å­¦'),
(4712, 'https://ror.org/04akqfa40', 'no_lang_code', 1, 'https://ror.org/04akqfa40 Chung Hsiao Municipal Hospital'),
(4713, 'https://ror.org/058xqwv02', 'en', 1, 'https://ror.org/058xqwv02 Voluntary Health Services Hospital'),
(4714, 'https://ror.org/023v4bd62', 'en', 1, 'https://ror.org/023v4bd62 National Agriculture and Food Research Organization č¾²ę„­ćƒ»é£Ÿå“ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę©Ÿę§‹'),
(4715, 'https://ror.org/00ty4jc02', 'en', 1, 'https://ror.org/00ty4jc02 St. Luke''s Hospital Foundation'),
(4716, 'https://ror.org/008cz4337', 'da', 1, 'https://ror.org/008cz4337 Regionshospitalet Viborg Viborg Regional Hospital'),
(4717, 'https://ror.org/04r3ebn54', 'en', 1, 'https://ror.org/04r3ebn54 Oklahoma Foundation for Medical Quality'),
(4718, 'https://ror.org/03wwbp431', 'en', 1, 'https://ror.org/03wwbp431 Victoria General Hospital'),
(4719, 'https://ror.org/00nhpk003', 'en', 1, 'https://ror.org/00nhpk003 Mount Auburn Hospital'),
(4720, 'https://ror.org/05qa36453', 'en', 1, 'https://ror.org/05qa36453 Olmsted Medical Center'),
(4721, 'https://ror.org/048dt4c25', 'en', 1, 'https://ror.org/048dt4c25 Taipei Municipal Jen-Ai Hospital'),
(4722, 'https://ror.org/02h4kdd20', 'en', 1, 'https://ror.org/02h4kdd20 St. Luke''s Medical Center'),
(4723, 'https://ror.org/014tg6596', 'en', 1, 'https://ror.org/014tg6596 Victoria Hospital'),
(4724, 'https://ror.org/0421dgn24', 'en', 1, 'https://ror.org/0421dgn24 Taipei Municipal Women and Children''s Hospital'),
(4725, 'https://ror.org/047n4ns40', 'en', 1, 'https://ror.org/047n4ns40 Taipei Municipal YangMing Hospital å°åŒ—åø‚ē«‹é˜³ę˜ŽåŒ»é™¢'),
(4726, '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'),
(4727, 'https://ror.org/024nkak84', 'en', 1, 'https://ror.org/024nkak84 Taiwan Adventist Hospital 台安医院'),
(4728, 'https://ror.org/00n3egs77', 'en', 1, 'https://ror.org/00n3egs77 Takamatsu Red Cross Hospital é«˜ę¾čµ¤åå­—ē—…é™¢'),
(4729, 'https://ror.org/02stzb903', 'en', 1, 'https://ror.org/02stzb903 Victoria Hospital'),
(4730, 'https://ror.org/039xdnp48', 'no_lang_code', 1, 'https://ror.org/039xdnp48 Takano Hospital é«˜é‡Žē—…é™¢'),
(4731, 'https://ror.org/03ec4j852', 'en', 1, 'https://ror.org/03ec4j852 St. Luke’s Boise Medical Center'),
(4732, 'https://ror.org/05v4j1v63', 'no_lang_code', 1, 'https://ror.org/05v4j1v63 Takanoko Hospital'),
(4733, 'https://ror.org/04t0s7x83', 'en', 1, 'https://ror.org/04t0s7x83 National Institute of Mental Health å›½ē«‹ē²¾ē„žč”›ē”Ÿē ”ē©¶ę‰€'),
(4734, 'https://ror.org/04w3f9b42', 'no_lang_code', 1, 'https://ror.org/04w3f9b42 Takarazuka City Hospital å®å”šåø‚ē«‹ē—…é™¢'),
(4735, 'https://ror.org/059t16j93', 'no_lang_code', 1, 'https://ror.org/059t16j93 Takatsuki General Hospital é«˜ę§»ē—…é™¢'),
(4736, 'https://ror.org/02wpa5731', 'en', 1, 'https://ror.org/02wpa5731 Takatsuki Red Cross Hospital é«˜ę§»čµ¤åå­—ē—…é™¢'),
(4737, 'https://ror.org/04a0qsn58', 'en', 1, 'https://ror.org/04a0qsn58 St. Margaret Memorial Hospital'),
(4738, 'https://ror.org/053zey189', 'en', 1, 'https://ror.org/053zey189 Takayama Red Cross Hospital é«˜å±±čµ¤åå­—ē—…é™¢'),
(4739, 'https://ror.org/0164vc797', 'en', 1, 'https://ror.org/0164vc797 Vijayanagara Institute of Medical Sciences ą²µą²æą²œą²Æą²Øą²—ą²° ą²µą³†ą³–ą²¦ą³ą²Æą²•ą²æą³•ą²Æ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(4740, 'https://ror.org/04xeg9z08', 'en', 1, 'https://ror.org/04xeg9z08 Instituto Nacional de Salud Mental National Institute of Mental Health'),
(4741, 'https://ror.org/01699r503', 'en', 1, 'https://ror.org/01699r503 St. Margaret''s Hospital for Women'),
(4742, 'https://ror.org/01s5ya894', 'en', 1, 'https://ror.org/01s5ya894 National Institute of Neurological Disorders and Stroke'),
(4743, 'https://ror.org/01h65nt31', 'en', 1, 'https://ror.org/01h65nt31 St. Mark''s Hospital'),
(4744, 'https://ror.org/058vcb964', 'it', 1, 'https://ror.org/058vcb964 Casa di Cura Villa Bianca'),
(4745, 'https://ror.org/0466fwq98', 'en', 1, 'https://ror.org/0466fwq98 St. Mary Medical Center'),
(4746, 'https://ror.org/05nr3de46', 'en', 1, 'https://ror.org/05nr3de46 Onomichi General Hospital å°¾é“ē·åˆē—…é™¢'),
(4747, 'https://ror.org/03mxv9643', 'en', 1, 'https://ror.org/03mxv9643 Onslow Memorial Hospital'),
(4748, 'https://ror.org/04g3t6s80', 'en', 1, 'https://ror.org/04g3t6s80 National Institute of Occupational Health'),
(4749, 'https://ror.org/05xnecb03', 'en', 1, 'https://ror.org/05xnecb03 St. Mary''s Health Center'),
(4750, 'https://ror.org/05x8xdg58', 'en', 1, 'https://ror.org/05x8xdg58 St. Mary''s Hospital'),
(4751, 'https://ror.org/051ppg660', 'en', 1, 'https://ror.org/051ppg660 National Institute of Animal Health å‹•ē‰©č”›ē”Ÿē ”ē©¶éƒØé–€'),
(4752, 'https://ror.org/047ae9605', 'en', 1, 'https://ror.org/047ae9605 Taleghani General Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų·Ų§Ł„Ł‚Ų§Ł†ŪŒ تهران'),
(4753, 'https://ror.org/02j4gdg91', 'en', 1, 'https://ror.org/02j4gdg91 Vivekananda Institute of Medical Sciences'),
(4754, 'https://ror.org/03zj0ps89', 'en', 1, 'https://ror.org/03zj0ps89 Vardhman Mahavir Medical College & Safdarjung Hospital ą¤µą¤°ą„ą¤§ą¤®ą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ और ą¤øą¤«ą¤¦ą¤°ą¤œą¤‚ą¤— ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(4755, 'https://ror.org/02wcqs336', 'en', 1, 'https://ror.org/02wcqs336 Jerusalem Mental Health Center ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש ×™×Ø×•×©×œ×™×'),
(4756, 'https://ror.org/000e3j968', 'tr', 1, 'https://ror.org/000e3j968 Türkiye Yüksek İhtisas Hastanesi'),
(4757, 'https://ror.org/045bbxm74', 'en', 1, 'https://ror.org/045bbxm74 Tamil Nadu Government Dental College and Hospital'),
(4758, 'https://ror.org/03k6q9261', 'en', 1, 'https://ror.org/03k6q9261 St. Mary''s Medical Center'),
(4759, 'https://ror.org/02f53md90', 'en', 1, 'https://ror.org/02f53md90 Tamworth Hospital'),
(4760, 'https://ror.org/00m860944', 'en', 1, 'https://ror.org/00m860944 St. Mary''s Hospital'),
(4761, 'https://ror.org/0226ax553', 'en', 1, 'https://ror.org/0226ax553 St. Mary''s Medical Center'),
(4762, 'https://ror.org/01pveve47', 'en', 1, 'https://ror.org/01pveve47 United States Army Medical Research Institute of Infectious Diseases'),
(4763, 'https://ror.org/051jx6464', 'en', 1, 'https://ror.org/051jx6464 Waianae Coast Comprehensive Health Center'),
(4764, 'https://ror.org/03ene5287', 'en', 1, 'https://ror.org/03ene5287 Orange County Healthcare Agency'),
(4765, 'https://ror.org/00zerva91', 'en', 1, 'https://ror.org/00zerva91 St. Patrick Hospital'),
(4766, 'https://ror.org/00awxvj03', 'en', 1, 'https://ror.org/00awxvj03 Wakayama Rosai Hospital å’Œę­Œå±±ć‚ć†ć•ć„ē—…é™¢'),
(4767, 'https://ror.org/0367d2222', 'en', 1, 'https://ror.org/0367d2222 Tao Yuan General Hospital ę”ƒåœ’é†«é™¢'),
(4768, 'https://ror.org/0488cct49', 'en', 1, 'https://ror.org/0488cct49 Orlando Health'),
(4769, 'https://ror.org/01j9pph68', 'en', 1, 'https://ror.org/01j9pph68 Orlando Regional Medical Center'),
(4770, 'https://ror.org/05efr5n38', 'en', 1, 'https://ror.org/05efr5n38 Taranaki Base Hospital'),
(4771, 'https://ror.org/04fj0p555', 'en', 1, 'https://ror.org/04fj0p555 Tata Main Hospital'),
(4772, 'https://ror.org/04d0rfg41', 'en', 1, 'https://ror.org/04d0rfg41 St. Paul''s Hospital'),
(4773, 'https://ror.org/00f54ay49', 'en', 1, 'https://ror.org/00f54ay49 Wakefield Hospital'),
(4774, 'https://ror.org/01khsr243', 'en', 1, 'https://ror.org/01khsr243 St. Peter''s Hospital'),
(4775, 'https://ror.org/05hkmas65', 'en', 1, 'https://ror.org/05hkmas65 Baptist Hospital 침딀병원'),
(4776, 'https://ror.org/00yr70j54', 'en', 1, 'https://ror.org/00yr70j54 Tauranga Hospital'),
(4777, 'https://ror.org/03fan2n27', 'en', 1, 'https://ror.org/03fan2n27 St. Stephen’s Hospital'),
(4778, 'https://ror.org/007a5h107', 'en', 1, 'https://ror.org/007a5h107 Tawam Hospital مستؓفى ŲŖŁˆŲ§Ł…'),
(4779, 'https://ror.org/01820qp25', 'en', 1, 'https://ror.org/01820qp25 Ornskƶldsvik Hospital Ɩrnskƶldsviks sjukhus'),
(4780, 'https://ror.org/023dwm995', 'en', 1, 'https://ror.org/023dwm995 St. Thomas Hospital'),
(4781, 'https://ror.org/05cvxat96', 'en', 1, 'https://ror.org/05cvxat96 Walton Centre'),
(4782, 'https://ror.org/037x4vd23', 'en', 1, 'https://ror.org/037x4vd23 Teaching Hospital Kandy මහනුවර ą·ą·’ą¶šą·Šą·‚ą¶« ą¶»ą·ą·„ą¶½'),
(4783, 'https://ror.org/00rjw0467', 'en', 1, 'https://ror.org/00rjw0467 St. Vincent Hospital'),
(4784, 'https://ror.org/03wqxws86', 'no_lang_code', 1, 'https://ror.org/03wqxws86 Teine Keijinkai Hospital ęø“ä»ä¼šć‚°ćƒ«ćƒ¼ćƒ—'),
(4785, 'https://ror.org/01m2js356', 'en', 1, 'https://ror.org/01m2js356 Orthopaedic Hospital'),
(4786, 'https://ror.org/02fn8j763', 'en', 1, 'https://ror.org/02fn8j763 Wangjing Hospital of China Academy of Chinese Medical Sciences äø­å›½äø­åŒ»ē§‘å­¦é™¢ęœ›äŗ¬åŒ»é™¢'),
(4787, 'https://ror.org/00fsrkw38', 'es', 1, 'https://ror.org/00fsrkw38 Hospital Quirón Teknon'),
(4788, 'https://ror.org/00mwwa992', 'en', 1, 'https://ror.org/00mwwa992 Warde Medical Laboratory'),
(4789, 'https://ror.org/03we1zb10', 'en', 1, 'https://ror.org/03we1zb10 Warneford Hospital'),
(4790, 'https://ror.org/03qpaq263', 'sv', 1, 'https://ror.org/03qpaq263 VƄrdcentralen Teleborg'),
(4791, 'https://ror.org/0255fcy13', 'en', 1, 'https://ror.org/0255fcy13 Warrington Hospital'),
(4792, 'https://ror.org/02z6cxz02', 'en', 1, 'https://ror.org/02z6cxz02 Warwick Hospital'),
(4793, 'https://ror.org/04pb6gq71', 'en', 1, 'https://ror.org/04pb6gq71 Orthopedic Specialty Hospital'),
(4794, 'https://ror.org/01r5r0r56', 'en', 1, 'https://ror.org/01r5r0r56 Washington Adventist Hospital'),
(4795, 'https://ror.org/005k4dn45', 'en', 1, 'https://ror.org/005k4dn45 University of Arkansas Medical Center'),
(4796, 'https://ror.org/03wmmfz90', 'en', 1, 'https://ror.org/03wmmfz90 Tennessee Department of Health'),
(4797, 'https://ror.org/016dr6b81', 'en', 1, 'https://ror.org/016dr6b81 Waterbury Hospital'),
(4798, 'https://ror.org/01v13p275', 'en', 1, 'https://ror.org/01v13p275 Watford General Hospital'),
(4799, 'https://ror.org/0282s7q36', 'en', 1, 'https://ror.org/0282s7q36 Tenshi Hospital 天使病院'),
(4800, 'https://ror.org/01yn60017', 'en', 1, 'https://ror.org/01yn60017 Waukesha Memorial Hospital'),
(4801, 'https://ror.org/054tgm925', 'en', 1, 'https://ror.org/054tgm925 Aspirus Wausau Hospital'),
(4802, 'https://ror.org/021ctjg87', 'en', 1, 'https://ror.org/021ctjg87 Northern Territory Health Services'),
(4803, 'https://ror.org/03qx1c439', 'en', 1, 'https://ror.org/03qx1c439 Wayne Memorial Hospital'),
(4804, 'https://ror.org/01xd2tj29', 'no_lang_code', 1, 'https://ror.org/01xd2tj29 Weifang People''s Hospital ę½åŠåø‚äŗŗę°‘åŒ»é™¢'),
(4805, 'https://ror.org/05qfnkv67', 'en', 1, 'https://ror.org/05qfnkv67 St. Vincent''s Medical Center'),
(4806, 'https://ror.org/02cs3sv23', 'sv', 1, 'https://ror.org/02cs3sv23 Uddevalla sjukhus'),
(4807, 'https://ror.org/01m9rk435', 'en', 1, 'https://ror.org/01m9rk435 Richmond University Medical Center'),
(4808, 'https://ror.org/02c93ee60', 'en', 1, 'https://ror.org/02c93ee60 Osaka Occupational Health Research Center å¤§é˜ŖåŠ“åƒč”›ē”Ÿē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(4809, 'https://ror.org/05jr4qt09', 'en', 1, 'https://ror.org/05jr4qt09 Stamford Hospital'),
(4810, 'https://ror.org/040fscg47', 'en', 1, 'https://ror.org/040fscg47 Texas Orthopedic Hospital'),
(4811, 'https://ror.org/01mw6s018', 'it', 1, 'https://ror.org/01mw6s018 Casa di Cura Villa Garda'),
(4812, 'https://ror.org/03gd5jm66', 'en', 1, 'https://ror.org/03gd5jm66 Texas Scottish Rite Hospital for Children'),
(4813, 'https://ror.org/04pmdg365', 'en', 1, 'https://ror.org/04pmdg365 Ulster Hospital'),
(4814, 'https://ror.org/041m74w67', 'en', 1, 'https://ror.org/041m74w67 Wellborn Road Veterinary Medical Center'),
(4815, 'https://ror.org/00pq96s96', 'en', 1, 'https://ror.org/00pq96s96 UMass Memorial Health Care'),
(4816, 'https://ror.org/04mzvw485', 'en', 1, 'https://ror.org/04mzvw485 Thai Moogambigai Dental College and Hospital'),
(4817, 'https://ror.org/02bj40x52', 'en', 1, 'https://ror.org/02bj40x52 Osaka Rosai Hospital å¤§é˜ŖåŠ“ē½ē—…é™¢'),
(4818, 'https://ror.org/004hfxk38', 'no_lang_code', 1, 'https://ror.org/004hfxk38 Theageneio General Hospital'),
(4819, 'https://ror.org/03q82br40', 'sv', 1, 'https://ror.org/03q82br40 Vrinnevi Hospital Vrinnevisjukhuset i Norrkƶping'),
(4820, 'https://ror.org/027grcd37', 'hu', 1, 'https://ror.org/027grcd37 Állami SzívkórhÔz'),
(4821, 'https://ror.org/05rsf2c37', 'it', 1, 'https://ror.org/05rsf2c37 Ospedali Riuniti Umberto I'),
(4822, 'https://ror.org/011cabk38', 'it', 1, 'https://ror.org/011cabk38 Policlinico Umberto I'),
(4823, 'https://ror.org/02pj04690', 'en', 1, 'https://ror.org/02pj04690 Theda Clark Medical Center'),
(4824, 'https://ror.org/00fb35g87', 'en', 1, 'https://ror.org/00fb35g87 Third Affiliated Hospital of Guangzhou Medical University å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø‰åŒ»é™¢'),
(4825, 'https://ror.org/01wxb8362', 'en', 1, 'https://ror.org/01wxb8362 Maria Cecilia Hospital'),
(4826, 'https://ror.org/04fvmv716', 'it', 1, 'https://ror.org/04fvmv716 Ospedale Vito Fazzi'),
(4827, 'https://ror.org/0146tpy53', 'en', 1, 'https://ror.org/0146tpy53 Wellmont Health Systems'),
(4828, 'https://ror.org/03k0jff29', 'en', 1, 'https://ror.org/03k0jff29 Thunder Bay Regional Health Sciences Centre'),
(4829, 'https://ror.org/055ne9q08', 'en', 1, 'https://ror.org/055ne9q08 Wentworth Hospital'),
(4830, 'https://ror.org/03436rn68', 'en', 1, 'https://ror.org/03436rn68 Wentworth Douglass Hospital'),
(4831, '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'),
(4832, 'https://ror.org/01cyzat07', 'en', 1, 'https://ror.org/01cyzat07 Wesley Guild Hospital'),
(4833, 'https://ror.org/05r9v1368', 'en', 1, 'https://ror.org/05r9v1368 Tianjin Chest Hospital å¤©ę“„åø‚čƒøē§‘åŒ»é™¢'),
(4834, 'https://ror.org/018kd1e03', 'en', 1, 'https://ror.org/018kd1e03 Wesley Hospital'),
(4835, 'https://ror.org/02a0k6s81', 'en', 1, 'https://ror.org/02a0k6s81 Tianjin Children''s Hospital å¤©ę“„åø‚å„æē«„åŒ»é™¢'),
(4836, 'https://ror.org/02ch1zb66', 'en', 1, 'https://ror.org/02ch1zb66 Tianjin First Center Hospital å¤©ę“„åø‚ē¬¬äø€äø­åæƒåŒ»é™¢'),
(4837, 'https://ror.org/0522mgp14', 'en', 1, 'https://ror.org/0522mgp14 Wesley Long Hospital'),
(4838, 'https://ror.org/05m762q77', 'no_lang_code', 1, 'https://ror.org/05m762q77 Tianjin haihe hospital å¤©ę“„åø‚ęµ·ę²³åŒ»é™¢'),
(4839, 'https://ror.org/053cd8j25', 'no_lang_code', 1, 'https://ror.org/053cd8j25 Osmania General Hospital ą°‰ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ ą°œą°Øą°°ą°²ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(4840, 'https://ror.org/04j9yn198', 'en', 1, 'https://ror.org/04j9yn198 Tianjin Hospital å¤©ę“„åø‚å¤©ę“„åŒ»é™¢'),
(4841, 'https://ror.org/00hr54p22', 'en', 1, 'https://ror.org/00hr54p22 Osmania Medical College Ų¹Ų«Ł…Ų§Ł†ŪŒŪ Ł…ŪŒŚˆŪŒŚ©Ł„ کالج ą°‰ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ ą°®ą±†ą°”ą°æą°•ą°²ą± ą°•ą°¾ą°²ą±‡ą°œą±€'),
(4842, 'https://ror.org/01x37cs02', 'en', 1, 'https://ror.org/01x37cs02 West Cumberland Hospital'),
(4843, 'https://ror.org/01x62kg38', 'en', 1, 'https://ror.org/01x62kg38 Tianjin People''s Hospital å¤©ę“„åø‚äŗŗę°‘åŒ»é™¢'),
(4844, 'https://ror.org/00911j719', 'en', 1, 'https://ror.org/00911j719 Tianjin Third Central Hospital å¤©ę“„åø‚ē¬¬äø‰äø­åæƒåŒ»é™¢'),
(4845, 'https://ror.org/03qk02j94', 'en', 1, 'https://ror.org/03qk02j94 West Jefferson Medical Center'),
(4846, 'https://ror.org/00hq79z10', 'no_lang_code', 1, 'https://ror.org/00hq79z10 Tianjin Nankai Hospital å¤©ę“„åø‚å—å¼€åŒ»é™¢'),
(4847, 'https://ror.org/02vhmfv49', 'en', 1, 'https://ror.org/02vhmfv49 United Christian Hospital'),
(4848, 'https://ror.org/00k5k8k03', 'no_lang_code', 1, 'https://ror.org/00k5k8k03 Tianjin Tianhe Hospital å¤©ę“„åø‚å¤©å’ŒåŒ»é™¢'),
(4849, 'https://ror.org/03zd4p313', 'en', 1, 'https://ror.org/03zd4p313 Norwich Community Hospital'),
(4850, 'https://ror.org/037y13578', 'en', 1, 'https://ror.org/037y13578 West Park Healthcare Centre'),
(4851, 'https://ror.org/04ye60n79', 'en', 1, 'https://ror.org/04ye60n79 Tikur Anbessa Hospital įŒ„į‰įˆ­ įŠ įŠ•į‰ įˆ³ įˆ†įˆµį’į‰³įˆ'),
(4852, 'https://ror.org/02eqka166', 'en', 1, 'https://ror.org/02eqka166 Mercy Medical Center'),
(4853, 'https://ror.org/02hc70w10', 'en', 1, 'https://ror.org/02hc70w10 United Hospital'),
(4854, 'https://ror.org/04jjkfw48', 'en', 1, 'https://ror.org/04jjkfw48 Tirat Carmel Mental Health Center ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש'),
(4855, 'https://ror.org/02yhx1447', 'en', 1, 'https://ror.org/02yhx1447 Western Pennsylvania Hospital'),
(4856, 'https://ror.org/03jc0y470', 'en', 1, 'https://ror.org/03jc0y470 United Hospital Fund'),
(4857, 'https://ror.org/02ts7ew79', 'en', 1, 'https://ror.org/02ts7ew79 West Suffolk Hospital'),
(4858, 'https://ror.org/01cs14q41', 'en', 1, 'https://ror.org/01cs14q41 Glangwili General Hospital Ysbyty Cyffredinol Glangwili'),
(4859, 'https://ror.org/03fcgva33', 'en', 1, 'https://ror.org/03fcgva33 Westchester Medical Center'),
(4860, 'https://ror.org/00gkheh82', 'it', 1, 'https://ror.org/00gkheh82 Ospedale regionale di Lugano'),
(4861, 'https://ror.org/057hbdz28', 'en', 1, 'https://ror.org/057hbdz28 Tochigi Medical Center ę ƒęœØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4862, 'https://ror.org/00yfpz909', 'en', 1, 'https://ror.org/00yfpz909 Unity Health System'),
(4863, 'https://ror.org/03jg6a761', 'en', 1, 'https://ror.org/03jg6a761 Southeast Louisiana Veterans Health Care System'),
(4864, 'https://ror.org/0050g6f93', 'en', 1, 'https://ror.org/0050g6f93 KKR Tohoku Kosai Hospital ę±åŒ—å…¬ęøˆē—…é™¢'),
(4865, 'https://ror.org/011htkb76', 'en', 1, 'https://ror.org/011htkb76 UPMC Health System'),
(4866, 'https://ror.org/038ftrz90', 'en', 1, 'https://ror.org/038ftrz90 Western Attica General Hospital'),
(4867, 'https://ror.org/0423jvm15', 'en', 1, 'https://ror.org/0423jvm15 Upton Hospital'),
(4868, 'https://ror.org/02z87mf86', 'en', 1, 'https://ror.org/02z87mf86 Mountain Home VA Healthcare System'),
(4869, 'https://ror.org/02sjmdw37', 'en', 1, 'https://ror.org/02sjmdw37 Western Consortium for Public Health'),
(4870, 'https://ror.org/009kr6r15', 'en', 1, 'https://ror.org/009kr6r15 Western General Hospital'),
(4871, 'https://ror.org/03n92bt27', 'en', 1, 'https://ror.org/03n92bt27 Overton Brooks VA Medical Center'),
(4872, 'https://ror.org/01bk7pz18', 'no_lang_code', 1, 'https://ror.org/01bk7pz18 Tokushima Prefectural Central Hospital å¾³å³¶ēœŒē«‹äø­å¤®ē—…é™¢'),
(4873, 'https://ror.org/0202bpc71', 'tr', 1, 'https://ror.org/0202bpc71 Türkiye Cumhuriyeti Devlet Demiryolları Hastanesi'),
(4874, 'https://ror.org/01300np05', 'en', 1, 'https://ror.org/01300np05 Tokyo Dental College Ichikawa General Hospital ę±äŗ¬ę­Æē§‘å¤§å­¦ åø‚å·ē·åˆē—…é™¢'),
(4875, 'https://ror.org/05qv7gx64', 'en', 1, 'https://ror.org/05qv7gx64 Western Hospital'),
(4876, 'https://ror.org/015awat24', 'en', 1, 'https://ror.org/015awat24 Western State Hospital'),
(4877, 'https://ror.org/00bbdze26', 'en', 1, 'https://ror.org/00bbdze26 OspidƩal GinearƔlta Loch Garman Wexford General Hospital'),
(4878, 'https://ror.org/02xp6nt38', 'en', 1, 'https://ror.org/02xp6nt38 Wheeling Hospital'),
(4879, 'https://ror.org/053vvhn22', 'en', 1, 'https://ror.org/053vvhn22 Whiston Hospital'),
(4880, 'https://ror.org/04hj57858', 'en', 1, 'https://ror.org/04hj57858 Tokyo Metropolitan Children''s Medical Center ę±äŗ¬éƒ½å­ä¾›ć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4881, 'https://ror.org/03364yv75', 'it', 1, 'https://ror.org/03364yv75 Ospedaliera di Piacenza'),
(4882, 'https://ror.org/00v47dk08', 'no_lang_code', 1, 'https://ror.org/00v47dk08 Ebara Hospital ę±äŗ¬éƒ½äæå„åŒ»ē™‚å…¬ē¤¾čåŽŸē—…é™¢'),
(4883, 'https://ror.org/00xc08717', 'en', 1, 'https://ror.org/00xc08717 Whitchurch Hospital'),
(4884, 'https://ror.org/01rrcbe60', 'en', 1, 'https://ror.org/01rrcbe60 White Memorial Medical Center'),
(4885, 'https://ror.org/04x41ba23', 'en', 1, 'https://ror.org/04x41ba23 Captain James A. Lovell Federal Health Care Center'),
(4886, 'https://ror.org/049yzyv96', 'en', 1, 'https://ror.org/049yzyv96 VA Central Iowa Health Care System'),
(4887, 'https://ror.org/05drpm847', 'it', 1, 'https://ror.org/05drpm847 Ospedale Civile di Venezia'),
(4888, 'https://ror.org/01ckbq028', 'en', 1, 'https://ror.org/01ckbq028 Whittington Hospital'),
(4889, 'https://ror.org/05bp3jx78', 'en', 1, 'https://ror.org/05bp3jx78 Tokyo Metropolitan Kiyose Children''s Hospital ę±äŗ¬éƒ½ē«‹å°å…ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4890, 'https://ror.org/04x0wqd92', 'en', 1, 'https://ror.org/04x0wqd92 Tokyo Rosai Hospital ę±äŗ¬åŠ“ē½ē—…é™¢'),
(4891, 'https://ror.org/02v0be184', 'no_lang_code', 1, 'https://ror.org/02v0be184 Shioda General Hospital ę±ē”°ē·åˆē—…é™¢'),
(4892, 'https://ror.org/037yff262', 'no_lang_code', 1, 'https://ror.org/037yff262 Tokyo Metropolitan Matsuzawa Hospital ę±äŗ¬éƒ½ē«‹ę¾ę²¢ē—…é™¢'),
(4893, 'https://ror.org/019n8y489', 'en', 1, 'https://ror.org/019n8y489 Utah Valley Regional Medical Center'),
(4894, 'https://ror.org/019x26026', 'en', 1, 'https://ror.org/019x26026 Uwajima City Hospital å®‡å’Œå³¶åø‚ē—…é™¢'),
(4895, 'https://ror.org/055m51988', 'no_lang_code', 1, 'https://ror.org/055m51988 Ohkubo Hospital å¤§ä¹…äæē—…é™¢'),
(4896, 'https://ror.org/00qcsrr17', 'en', 1, 'https://ror.org/00qcsrr17 Wilhelminen Hospital Wilhelminenspital'),
(4897, 'https://ror.org/02y9ayd76', 'en', 1, 'https://ror.org/02y9ayd76 Vokkaligara Sangha Dental College & Hospital'),
(4898, 'https://ror.org/01dq23791', 'it', 1, 'https://ror.org/01dq23791 Ospedale Civile di Vittorio Veneto'),
(4899, 'https://ror.org/00afc8732', 'en', 1, 'https://ror.org/00afc8732 William Beaumont Army Medical Center'),
(4900, 'https://ror.org/05nyma565', 'en', 1, 'https://ror.org/05nyma565 Tokyo Metropolitan Police Hospital ę±äŗ¬č­¦åÆŸē—…é™¢'),
(4901, 'https://ror.org/02tre1223', 'en', 1, 'https://ror.org/02tre1223 William Harvey Hospital'),
(4902, 'https://ror.org/037xafn82', 'en', 1, 'https://ror.org/037xafn82 William S. Middleton Memorial Veterans Hospital'),
(4903, 'https://ror.org/05ax3zh38', 'en', 1, 'https://ror.org/05ax3zh38 VA Maryland Health Care System'),
(4904, 'https://ror.org/01nsxt963', 'it', 1, 'https://ror.org/01nsxt963 Ospedale Civile Di Ivrea'),
(4905, 'https://ror.org/03rjjzx12', 'it', 1, 'https://ror.org/03rjjzx12 Ospedale di Mirano'),
(4906, 'https://ror.org/04svanq44', 'en', 1, 'https://ror.org/04svanq44 Winchester Medical Center'),
(4907, 'https://ror.org/05sq1nj46', 'en', 1, 'https://ror.org/05sq1nj46 Palomar Medical Center'),
(4908, 'https://ror.org/05rjtkb31', 'en', 1, 'https://ror.org/05rjtkb31 Winn Army Community Hospital'),
(4909, 'https://ror.org/00p7krt52', 'it', 1, 'https://ror.org/00p7krt52 Ospedale Civile di Giaveno'),
(4910, 'https://ror.org/009s7a550', 'en', 1, 'https://ror.org/009s7a550 Pamela Youde Nethersole Eastern Hospital ę±å€å°¤å¾·å¤«äŗŗé‚£ę‰“ē“ é†«é™¢'),
(4911, 'https://ror.org/03drznb24', 'en', 1, 'https://ror.org/03drznb24 Winter Haven Hospital'),
(4912, 'https://ror.org/05asn5035', 'en', 1, 'https://ror.org/05asn5035 Tokyo National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹ę±äŗ¬ē—…é™¢'),
(4913, 'https://ror.org/04b5yth62', 'en', 1, 'https://ror.org/04b5yth62 Tokyo Rinkai Hospital ę±äŗ¬č‡Øęµ·ē—…é™¢'),
(4914, 'https://ror.org/04hbp2s71', 'en', 1, 'https://ror.org/04hbp2s71 Wisconsin Division of Public Health'),
(4915, 'https://ror.org/013s9ta35', 'en', 1, 'https://ror.org/013s9ta35 Wisconsin Heart Hospital'),
(4916, 'https://ror.org/0433qgv28', 'en', 1, 'https://ror.org/0433qgv28 Wisconsin Medical Society'),
(4917, 'https://ror.org/00x8ee082', 'it', 1, 'https://ror.org/00x8ee082 Ospedale Civile Edoardo Agnelli'),
(4918, 'https://ror.org/037egvh70', 'en', 1, 'https://ror.org/037egvh70 Wishaw General Hospital'),
(4919, 'https://ror.org/0401p8597', 'en', 1, 'https://ror.org/0401p8597 Withington Community Hospital'),
(4920, 'https://ror.org/03k51eb57', 'en', 1, 'https://ror.org/03k51eb57 Withybush General Hospital Ysbyty Cyffredinol Llwynhelyg'),
(4921, 'https://ror.org/04b7web15', 'en', 1, 'https://ror.org/04b7web15 Wm. Jennings Bryan Dorn VA Medical Center'),
(4922, 'https://ror.org/05b5q0t82', 'it', 1, 'https://ror.org/05b5q0t82 Azienda Ospedaliera Ospedali Riuniti Papardo Piemonte'),
(4923, 'https://ror.org/02gv23t08', 'hu', 1, 'https://ror.org/02gv23t08 Toldy Ferenc KórhÔz'),
(4924, 'https://ror.org/01x6n0t15', 'en', 1, 'https://ror.org/01x6n0t15 Papua New Guinea Institute of Medical Research'),
(4925, 'https://ror.org/02d0e3p67', 'en', 1, 'https://ror.org/02d0e3p67 Wollongong Hospital'),
(4926, 'https://ror.org/05mqgrb58', 'en', 1, 'https://ror.org/05mqgrb58 Papworth Hospital'),
(4927, 'https://ror.org/03nkzyy47', 'en', 1, 'https://ror.org/03nkzyy47 Paradise Valley Hospital'),
(4928, 'https://ror.org/02ms6eb12', 'no_lang_code', 1, 'https://ror.org/02ms6eb12 Parirenyatwa Hospital'),
(4929, 'https://ror.org/0007tes83', 'no_lang_code', 1, 'https://ror.org/0007tes83 Tominaga hospital åÆŒę°øē—…é™¢'),
(4930, 'https://ror.org/01v76qw30', 'en', 1, 'https://ror.org/01v76qw30 Northlake Medical Center'),
(4931, 'https://ror.org/036ygzs59', 'en', 1, 'https://ror.org/036ygzs59 Northwestern Medical Faculty Foundation'),
(4932, 'https://ror.org/000qjjz95', 'en', 1, 'https://ror.org/000qjjz95 Park Centre for Mental Health'),
(4933, 'https://ror.org/00edt5124', 'it', 1, 'https://ror.org/00edt5124 Ospedale degli Infermi'),
(4934, 'https://ror.org/01bqvsn34', 'en', 1, 'https://ror.org/01bqvsn34 Park Plaza Hospital'),
(4935, 'https://ror.org/056m5ng69', 'it', 1, 'https://ror.org/056m5ng69 Ospedale degli Infermi'),
(4936, 'https://ror.org/00trnhw76', 'en', 1, 'https://ror.org/00trnhw76 Tongde Hospital of Zhejiang Province ęµ™ę±Ÿēœē«‹åŒå¾·åŒ»é™¢'),
(4937, 'https://ror.org/04rt7ps04', 'en', 1, 'https://ror.org/04rt7ps04 Parkland Health & Hospital System'),
(4938, 'https://ror.org/0208r0146', 'en', 1, 'https://ror.org/0208r0146 Parkland Memorial Hospital'),
(4939, 'https://ror.org/020k5bb13', 'it', 1, 'https://ror.org/020k5bb13 Ospedale dei Pellegrini'),
(4940, 'https://ror.org/01vv3y523', 'en', 1, 'https://ror.org/01vv3y523 Torbay Hospital'),
(4941, 'https://ror.org/03phkbp27', 'en', 1, 'https://ror.org/03phkbp27 Wolters Kluwer Health'),
(4942, 'https://ror.org/04phyf746', 'en', 1, 'https://ror.org/04phyf746 Wolters Kluwer Health'),
(4943, 'https://ror.org/03af1ns45', 'it', 1, 'https://ror.org/03af1ns45 Ospedale di Circolo di Busto Arsizio'),
(4944, 'https://ror.org/04cnj4456', 'en', 1, 'https://ror.org/04cnj4456 Parkview Health'),
(4945, 'https://ror.org/03sm16s30', 'en', 1, 'https://ror.org/03sm16s30 Toronto East General Hospital'),
(4946, 'https://ror.org/05f9h3891', 'en', 1, 'https://ror.org/05f9h3891 Woman''s Hospital'),
(4947, 'https://ror.org/040s7at76', 'en', 1, 'https://ror.org/040s7at76 Hackensack University Medical Center at Pascack Valley'),
(4948, 'https://ror.org/00a6fbp85', 'en', 1, 'https://ror.org/00a6fbp85 P. D. Hinduja Hospital and Medical Research Centre'),
(4949, 'https://ror.org/00ncer064', 'en', 1, 'https://ror.org/00ncer064 Women Medical College'),
(4950, 'https://ror.org/010g03x11', 'en', 1, 'https://ror.org/010g03x11 Toronto Public Health'),
(4951, 'https://ror.org/04yveyc27', 'en', 1, 'https://ror.org/04yveyc27 Tosei General Hospital å…¬ē«‹é™¶ē”Ÿē—…é™¢'),
(4952, 'https://ror.org/003qr7703', 'en', 1, 'https://ror.org/003qr7703 Peijaksen sairaala Peijas Hospital'),
(4953, 'https://ror.org/03a2tpf77', 'en', 1, 'https://ror.org/03a2tpf77 Pelosi Medical Center'),
(4954, 'https://ror.org/0474gs458', 'en', 1, 'https://ror.org/0474gs458 RCSI & UCD Malaysia Campus'),
(4955, 'https://ror.org/03cw63y62', 'en', 1, 'https://ror.org/03cw63y62 Women''s College Hospital'),
(4956, 'https://ror.org/0437r6x66', 'no_lang_code', 1, 'https://ror.org/0437r6x66 Tottori Prefectural Central Hospital é³„å–ēœŒē«‹äø­å¤®ē—…é™¢'),
(4957, 'https://ror.org/04evmpa20', 'no_lang_code', 1, 'https://ror.org/04evmpa20 Vajira Hospital ąø§ąøŠąø“ąø£ąøžąø¢ąø²ąøšąø²ąø„'),
(4958, 'https://ror.org/03y7h1693', 'en', 1, 'https://ror.org/03y7h1693 Kinderwunsch Zentrum Linz Women''s General Hospital'),
(4959, 'https://ror.org/05xt49662', 'en', 1, 'https://ror.org/05xt49662 Penteli General Children''s Hospital ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΠαίΓων Πεντέλης'),
(4960, 'https://ror.org/00raa0r66', 'en', 1, 'https://ror.org/00raa0r66 Women''s Hospital'),
(4961, 'https://ror.org/02tc4ww71', 'en', 1, 'https://ror.org/02tc4ww71 Peninsula Regional Medical Center'),
(4962, 'https://ror.org/015er2861', 'en', 1, 'https://ror.org/015er2861 Vale of Leven District General Hospital'),
(4963, 'https://ror.org/02j8r0p47', 'en', 1, 'https://ror.org/02j8r0p47 Woodend Hospital'),
(4964, 'https://ror.org/00swfce58', 'it', 1, 'https://ror.org/00swfce58 Ospedale di Rivoli'),
(4965, 'https://ror.org/03g1zvc89', 'en', 1, 'https://ror.org/03g1zvc89 Valley Baptist Medical Center'),
(4966, 'https://ror.org/0532tps88', 'it', 1, 'https://ror.org/0532tps88 Ospedale Eugenio Morelli'),
(4967, 'https://ror.org/02112mb03', 'it', 1, 'https://ror.org/02112mb03 Filippo Del Ponte Hospital Ospedale Filippo Del Ponte Varese'),
(4968, 'https://ror.org/03mvdc478', 'en', 1, 'https://ror.org/03mvdc478 Pennsylvania Hospital'),
(4969, 'https://ror.org/00byczw08', 'en', 1, 'https://ror.org/00byczw08 Penrose Hospital'),
(4970, 'https://ror.org/01twwfv38', 'en', 1, 'https://ror.org/01twwfv38 Valley Hospital'),
(4971, 'https://ror.org/03a71g847', 'en', 1, 'https://ror.org/03a71g847 Valley Hospital Medical Center'),
(4972, 'https://ror.org/02bx0ak73', 'en', 1, 'https://ror.org/02bx0ak73 Woodland Hills Medical Center'),
(4973, 'https://ror.org/017j6af40', 'it', 1, 'https://ror.org/017j6af40 Ospedale Humanitas Gradenigo'),
(4974, 'https://ror.org/01tay0360', 'en', 1, 'https://ror.org/01tay0360 Park Nicollet Health Services'),
(4975, 'https://ror.org/053cdw390', 'no_lang_code', 1, 'https://ror.org/053cdw390 Toujinkai Hospital 吉焄寺あさひ病院は'),
(4976, 'https://ror.org/033rjjc73', 'en', 1, 'https://ror.org/033rjjc73 Park Nicollet Methodist Hospital'),
(4977, 'https://ror.org/04c644459', 'it', 1, 'https://ror.org/04c644459 Israelite Hospital Ospedale Israelitico'),
(4978, 'https://ror.org/01vjngb81', 'en', 1, 'https://ror.org/01vjngb81 Valley Medical Center'),
(4979, 'https://ror.org/0132qa516', 'en', 1, 'https://ror.org/0132qa516 Worcester Memorial Hospital'),
(4980, 'https://ror.org/02axars19', 'en', 1, 'https://ror.org/02axars19 Gansu Provincial Hospital ē”˜č‚ƒēœäŗŗę°‘åŒ»é™¢'),
(4981, 'https://ror.org/004cah429', 'no_lang_code', 1, 'https://ror.org/004cah429 Toyama Prefectural Central Hospital åÆŒå±±ēœŒē«‹äø­å¤®ē—…é™¢'),
(4982, 'https://ror.org/04a5eyp42', 'en', 1, 'https://ror.org/04a5eyp42 Toyama Rosai Hospital åÆŒå±±åŠ“ē½ē—…é™¢'),
(4983, 'https://ror.org/01d6tbx77', 'en', 1, 'https://ror.org/01d6tbx77 Worcestershire Royal Hospital'),
(4984, 'https://ror.org/04tgrpw60', 'en', 1, 'https://ror.org/04tgrpw60 Zhengzhou People''s Hospital éƒ‘å·žäŗŗę°‘åŒ»é™¢ē½‘ē«™'),
(4985, 'https://ror.org/03ycef978', 'en', 1, 'https://ror.org/03ycef978 Wordsley Hospital'),
(4986, 'https://ror.org/03qwkzw23', 'en', 1, 'https://ror.org/03qwkzw23 Valley Presbyterian Hospital'),
(4987, 'https://ror.org/00rsqd019', 'no_lang_code', 1, 'https://ror.org/00rsqd019 Toyokawa City Hospital č±Šå·åø‚ę°‘ē—…é™¢'),
(4988, 'https://ror.org/0056qeq43', 'no_lang_code', 1, 'https://ror.org/0056qeq43 Toyonaka Municipal Hospital åø‚ē«‹č±Šäø­ē—…é™¢'),
(4989, 'https://ror.org/05p83my93', 'en', 1, 'https://ror.org/05p83my93 Vancouver Hospital and Health Sciences Centre'),
(4990, 'https://ror.org/00hcz6468', 'en', 1, 'https://ror.org/00hcz6468 Toyota Memorial Hospital ćƒˆćƒØć‚æčØ˜åæµē—…é™¢'),
(4991, 'https://ror.org/057xs4529', 'en', 1, 'https://ror.org/057xs4529 Island Health'),
(4992, 'https://ror.org/02q69x434', 'en', 1, 'https://ror.org/02q69x434 Peterborough City Hospital'),
(4993, 'https://ror.org/02snwfx66', 'en', 1, 'https://ror.org/02snwfx66 Trafford General Hospital'),
(4994, 'https://ror.org/00tqnwm57', 'en', 1, 'https://ror.org/00tqnwm57 Organisation mondiale de la santĆ© World Health Organization - Denmark Š’ŃŠµŠ¼ŠøŃ€Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(4995, 'https://ror.org/01g4j3g78', 'en', 1, 'https://ror.org/01g4j3g78 Vanha Vaasa hospital Vanhan Vaasan Sairaala'),
(4996, 'https://ror.org/0412gk840', 'en', 1, 'https://ror.org/0412gk840 Peterson & Smith Equine Hospital'),
(4997, 'https://ror.org/02s0pza74', 'en', 1, 'https://ror.org/02s0pza74 Hallands Sjukhus Varberg Varberg Hospital'),
(4998, 'https://ror.org/05vefar40', 'en', 1, 'https://ror.org/05vefar40 Organisation mondiale de la santĆ© World Health Organization - India Š’ŃŠµŠ¼ŠøŃ€Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(4999, 'https://ror.org/03vqk1b90', 'hu', 1, 'https://ror.org/03vqk1b90 Petz AladÔr Megyei Oktató KórhÔz'),
(5000, 'https://ror.org/055ttwk14', 'en', 1, 'https://ror.org/055ttwk14 Organisation mondiale de la santĆ© World Health Organization - Egypt Š’ŃŠµŠ¼ŠøŃ€Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(5001, 'https://ror.org/05q0t6358', 'en', 1, 'https://ror.org/05q0t6358 World Health Organization - Philippines'),
(5002, 'https://ror.org/05xvgzf10', 'it', 1, 'https://ror.org/05xvgzf10 Ospedale Maggiore di Chieri'),
(5003, 'https://ror.org/02vjx4k16', 'en', 1, 'https://ror.org/02vjx4k16 National Transport Hospital "Tzar Boris III" национална многопрофилна транспортна болница цар борис ііі'),
(5004, 'https://ror.org/00yn4km03', 'en', 1, 'https://ror.org/00yn4km03 Worthing Hospital'),
(5005, 'https://ror.org/057xmsr27', 'en', 1, 'https://ror.org/057xmsr27 Virginia Commonwealth University Medical Center'),
(5006, 'https://ror.org/00vade776', 'en', 1, 'https://ror.org/00vade776 Public Health Management Corporation'),
(5007, 'https://ror.org/04ds2ap82', 'en', 1, 'https://ror.org/04ds2ap82 Vector Control Research Centre'),
(5008, 'https://ror.org/035gyn125', 'en', 1, 'https://ror.org/035gyn125 Trenton Psychiatric Hospital'),
(5009, 'https://ror.org/00y112q62', 'en', 1, 'https://ror.org/00y112q62 Wrightington Hospital'),
(5010, 'https://ror.org/00e8ar137', 'da', 1, 'https://ror.org/00e8ar137 Vejle Hospital Vejle Sygehus'),
(5011, 'https://ror.org/00a56am39', 'en', 1, 'https://ror.org/00a56am39 Philippine General Hospital'),
(5012, 'https://ror.org/02zzfj172', 'en', 1, 'https://ror.org/02zzfj172 Wuhan Asia Heart Hospital ę­¦ę±‰äŗšę“²åæƒč„ē—…åŒ»é™¢'),
(5013, 'https://ror.org/047c53f83', 'en', 1, 'https://ror.org/047c53f83 Wuhan Children''s Hospital ę­¦ę±‰åø‚å„æē«„åŒ»é™¢'),
(5014, 'https://ror.org/02y2qcy45', 'en', 1, 'https://ror.org/02y2qcy45 Phoebe Putney Memorial Hospital'),
(5015, 'https://ror.org/03neybp41', 'it', 1, 'https://ror.org/03neybp41 Ospedale Microcitemico'),
(5016, 'https://ror.org/02x6fhe76', 'en', 1, 'https://ror.org/02x6fhe76 Transcultural Mental Health Institute'),
(5017, 'https://ror.org/00yzb1d91', 'en', 1, 'https://ror.org/00yzb1d91 Wyckoff Heights Medical Center'),
(5018, 'https://ror.org/02nw0wb75', 'en', 1, 'https://ror.org/02nw0wb75 Wycombe General Hospital'),
(5019, 'https://ror.org/033mjf763', 'it', 1, 'https://ror.org/033mjf763 Ospedale per gli Infermi'),
(5020, 'https://ror.org/05vpsdj37', 'en', 1, 'https://ror.org/05vpsdj37 Wythenshawe Hospital'),
(5021, 'https://ror.org/006jktr69', 'it', 1, 'https://ror.org/006jktr69 Azienda Ospedaliera di Perugia'),
(5022, 'https://ror.org/025w1ct43', 'en', 1, 'https://ror.org/025w1ct43 Tri-City Medical Center'),
(5023, 'https://ror.org/05yn9cj95', 'no', 1, 'https://ror.org/05yn9cj95 SĆørlandet Hospital SĆørlandet Sykehus'),
(5024, 'https://ror.org/01wc2qb11', 'en', 1, 'https://ror.org/01wc2qb11 Tri-County Health Department'),
(5025, 'https://ror.org/03v6a2j28', 'en', 1, 'https://ror.org/03v6a2j28 Trillium Health Centre'),
(5026, 'https://ror.org/01zq3h513', 'it', 1, 'https://ror.org/01zq3h513 Ospedale Psichiatrico Paolo Pini'),
(5027, 'https://ror.org/05cqe9350', 'no_lang_code', 1, 'https://ror.org/05cqe9350 Xijing Hospital č„æäŗ¬åŒ»é™¢'),
(5028, 'https://ror.org/02s61w335', 'it', 1, 'https://ror.org/02s61w335 Ospedale Regionale di Bellinzona e Valli Regional Hospital of Bellinzona and Valleys'),
(5029, 'https://ror.org/041jk5w53', 'en', 1, 'https://ror.org/041jk5w53 Otto Wagner Hospital Otto Wagner Spital'),
(5030, 'https://ror.org/00m7zwx79', 'en', 1, 'https://ror.org/00m7zwx79 Trinity Mother Frances Hospitals and Clinics'),
(5031, 'https://ror.org/04wytkh98', 'it', 1, 'https://ror.org/04wytkh98 Azienda Ospedaliera Sant’Antonio Abate di Gallarate'),
(5032, 'https://ror.org/05t0c7p82', 'it', 1, 'https://ror.org/05t0c7p82 Azienda Ospedaliera G. Brotzu'),
(5033, 'https://ror.org/05ty6vv60', 'en', 1, 'https://ror.org/05ty6vv60 Tropical Population Health Unit'),
(5034, 'https://ror.org/029sr1j73', 'en', 1, 'https://ror.org/029sr1j73 OspidƩal Mhuire Lourdes Our Lady of Lourdes Hospital'),
(5035, 'https://ror.org/04gbz7s91', 'en', 1, 'https://ror.org/04gbz7s91 Our Lady of Lourdes Medical Center'),
(5036, 'https://ror.org/00xkqq585', 'en', 1, 'https://ror.org/00xkqq585 Our Lady of Lourdes Regional Medical Center'),
(5037, 'https://ror.org/047s1ww61', 'en', 1, 'https://ror.org/047s1ww61 Ise Red Cross Hospital ę—„ęœ¬čµ¤åå­—ē¤¾ ä¼Šå‹¢čµ¤åå­—ē—…é™¢'),
(5038, 'https://ror.org/01g1che35', 'no_lang_code', 1, 'https://ror.org/01g1che35 Trudell Medical International (Canada)'),
(5039, 'https://ror.org/05d8zd458', 'en', 1, 'https://ror.org/05d8zd458 Truman Medical Center'),
(5040, 'https://ror.org/02navrb60', 'en', 1, 'https://ror.org/02navrb60 Lady of Mercy Medical Center'),
(5041, 'https://ror.org/03bs5zb68', 'no_lang_code', 1, 'https://ror.org/03bs5zb68 Tsubame Rosai Hospital'),
(5042, 'https://ror.org/00cm8nm15', 'en', 1, 'https://ror.org/00cm8nm15 University of California, Irvine Medical Center'),
(5043, 'https://ror.org/00nf8fy32', 'no_lang_code', 1, 'https://ror.org/00nf8fy32 Yamagata City Hospital Saiseikan å±±å½¢åø‚ē«‹ē—…é™¢ęøˆē”Ÿé¤Ø'),
(5044, 'https://ror.org/025qedy81', 'en', 1, 'https://ror.org/025qedy81 Children''s Health Ireland at Crumlin SlĆ”inte LeanaĆ­ Ɖireann ag Cromghlinn'),
(5045, 'https://ror.org/02xe87f77', 'no_lang_code', 1, 'https://ror.org/02xe87f77 Yamagata Prefectural Central Hospital å±±å½¢ēœŒē«‹äø­å¤®ē—…é™¢'),
(5046, 'https://ror.org/03tjj1227', 'en', 1, 'https://ror.org/03tjj1227 Tsukuba Medical Center Hospital ē­‘ę³¢ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼ē—…é™¢'),
(5047, 'https://ror.org/02gec1b57', 'no_lang_code', 1, 'https://ror.org/02gec1b57 Tsuyama Chuo Hospital 擄山中央病院'),
(5048, 'https://ror.org/004hxna20', 'en', 1, 'https://ror.org/004hxna20 Overlake Hospital Medical Center'),
(5049, 'https://ror.org/049bgw803', 'en', 1, 'https://ror.org/049bgw803 Tuality Community Hospital'),
(5050, 'https://ror.org/05resfq34', 'en', 1, 'https://ror.org/05resfq34 Overlook Medical Center'),
(5051, 'https://ror.org/03c3s0k29', 'en', 1, 'https://ror.org/03c3s0k29 Yamaguchi Red Cross Hospital å±±å£čµ¤åå­—ē—…é™¢'),
(5052, 'https://ror.org/05r286q94', 'en', 1, 'https://ror.org/05r286q94 Yamanashi Prefectural Central Hospital å±±ę¢ØēœŒē«‹äø­å¤®ē—…é™¢'),
(5053, 'https://ror.org/018nkky79', 'no_lang_code', 1, 'https://ror.org/018nkky79 Tuen Mun Hospital 屯門醫院'),
(5054, 'https://ror.org/02r0rps05', 'it', 1, 'https://ror.org/02r0rps05 Ospedale Sant''Orsola di Brescia'),
(5055, 'https://ror.org/01rg6cx71', 'no_lang_code', 1, 'https://ror.org/01rg6cx71 Yao Tokushukai General Hospital å…«å°¾å¾³ę“²ä¼šē·åˆē—…é™¢'),
(5056, 'https://ror.org/04wndes40', 'en', 1, 'https://ror.org/04wndes40 Pacific Health Foundation'),
(5057, 'https://ror.org/05sshfw48', 'en', 1, 'https://ror.org/05sshfw48 Pacific Health Research and Education Institute'),
(5058, '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'),
(5059, 'https://ror.org/01d1kad18', 'no_lang_code', 1, 'https://ror.org/01d1kad18 Otaru Municipal Hospital å°ęØ½åø‚ē«‹ē—…é™¢'),
(5060, 'https://ror.org/05m7r3n78', 'no_lang_code', 1, 'https://ror.org/05m7r3n78 Otemae Hospital å¤§ę‰‹å‰ē—…é™¢'),
(5061, 'https://ror.org/038hwjs80', 'en', 1, 'https://ror.org/038hwjs80 Pacific Tower'),
(5062, 'https://ror.org/00jm9xh53', 'no_lang_code', 1, 'https://ror.org/00jm9xh53 Otsu Municipal Hospital 大擄市民病院'),
(5063, 'https://ror.org/02fwe2f11', 'en', 1, 'https://ror.org/02fwe2f11 Tung Wah Eastern Hospital ę±čÆę±é™¢'),
(5064, 'https://ror.org/0358b9334', 'en', 1, 'https://ror.org/0358b9334 Pakistan Institute of Medical Sciences پاکستان طبی سائنس Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(5065, 'https://ror.org/05pc9cb65', 'no_lang_code', 1, 'https://ror.org/05pc9cb65 Tung Wah Hospital ę±čÆé†«é™¢'),
(5066, 'https://ror.org/0452q7b74', 'no_lang_code', 1, 'https://ror.org/0452q7b74 Tungs'' Taichung MetroHarbor Hospital ē«„ē¶œåˆé†«é™¢'),
(5067, 'https://ror.org/0449k9183', 'tr', 1, 'https://ror.org/0449k9183 Turgut Ozal Medical Center Turgut Ɩzal Tıp Merkezi'),
(5068, 'https://ror.org/033647p67', 'en', 1, 'https://ror.org/033647p67 Otsu Red Cross Hospital å¤§ę“„čµ¤åå­—ē—…é™¢'),
(5069, 'https://ror.org/02azsay93', 'en', 1, 'https://ror.org/02azsay93 Pakistan Health Research Council مجلس Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų·ŲØŁŠŲ© في ŲØŲ§ŁƒŲ³ŲŖŲ§Ł†'),
(5070, 'https://ror.org/01ctbbh52', 'en', 1, 'https://ror.org/01ctbbh52 Palmerston North Hospital'),
(5071, 'https://ror.org/01ybxrm80', 'en', 1, 'https://ror.org/01ybxrm80 Yodogawa Christian Hospital ę·€å·ć‚­ćƒŖć‚¹ćƒˆę•™ē—…é™¢'),
(5072, 'https://ror.org/04ft1w637', 'en', 1, 'https://ror.org/04ft1w637 Palmetto General Hospital'),
(5073, 'https://ror.org/03k36hk88', 'no_lang_code', 1, 'https://ror.org/03k36hk88 Yokkaichi Municipal Hospital 市立四旄市病院'),
(5074, 'https://ror.org/00sbyns81', 'en', 1, 'https://ror.org/00sbyns81 Miwa Hospital 三輪病院'),
(5075, 'https://ror.org/02d8ncy29', 'en', 1, 'https://ror.org/02d8ncy29 Yokkaichi Social Insurance Hospital å››ę—„åø‚ē¾½ę“„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5076, 'https://ror.org/013y4v758', 'en', 1, 'https://ror.org/013y4v758 Yokohama City Seibu Hospital'),
(5077, 'https://ror.org/04mw29y93', 'en', 1, 'https://ror.org/04mw29y93 Turku City Hospital Turun kaupunginsairaala'),
(5078, 'https://ror.org/00d0rvy84', 'no_lang_code', 1, 'https://ror.org/00d0rvy84 Yokohama Minami Kyosai Hospital ęØŖęµœå—å…±ęøˆē—…é™¢'),
(5079, 'https://ror.org/034s1fw96', 'en', 1, 'https://ror.org/034s1fw96 Yokohama Municipal Citizen''s Hospital ęØŖęµœåø‚å–¶åø‚ę°‘ē—…é™¢'),
(5080, 'https://ror.org/04krwby50', 'no_lang_code', 1, 'https://ror.org/04krwby50 Yokohama Municipal Minato Red Cross Hospital ęØŖęµœåø‚ē«‹ćæćŖćØčµ¤åå­—ē—…é™¢'),
(5081, 'https://ror.org/05hgzy544', 'no_lang_code', 1, 'https://ror.org/05hgzy544 Yokohama Sakae Kyosai Hospital ęØŖęµœę „å…±ęøˆē—…é™¢'),
(5082, 'https://ror.org/049yfvx60', 'no_lang_code', 1, 'https://ror.org/049yfvx60 Yokosuka Kyosai Hospital ęØŖé ˆč³€å…±ęøˆē—…é™¢'),
(5083, 'https://ror.org/01hs8x754', 'en', 1, 'https://ror.org/01hs8x754 Tygerberg Hospital'),
(5084, 'https://ror.org/0284zjc89', 'no_lang_code', 1, 'https://ror.org/0284zjc89 Yokufukai Hospital ęµ“é¢Øä¼šē—…é™¢'),
(5085, 'https://ror.org/046zy3905', 'en', 1, 'https://ror.org/046zy3905 Tzaneion General Hospital'),
(5086, 'https://ror.org/0003zy991', 'en', 1, 'https://ror.org/0003zy991 York Hospital'),
(5087, 'https://ror.org/00a3bx267', 'en', 1, 'https://ror.org/00a3bx267 Toyama Institute of Health åÆŒå±±ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(5088, 'https://ror.org/010s4nz55', 'en', 1, 'https://ror.org/010s4nz55 York General Hospital'),
(5089, 'https://ror.org/03t6ffp13', 'en', 1, 'https://ror.org/03t6ffp13 Yuli Veterans Hospital äøƒęœˆé€€ä¼å†›äŗŗåŒ»é™¢'),
(5090, 'https://ror.org/01zj9wm95', 'en', 1, 'https://ror.org/01zj9wm95 Yuan''s General Hospital é˜®ē¶œåˆé†«é™¢'),
(5091, 'https://ror.org/034jwje45', 'no_lang_code', 1, 'https://ror.org/034jwje45 Yukioka Hospital č”Œå²”ē—…é™¢'),
(5092, 'https://ror.org/0156rhd17', 'en', 1, 'https://ror.org/0156rhd17 Second Affiliated Hospital & Yuying Children''s Hospital of Wenzhou Medical University ęø©å·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(5093, 'https://ror.org/012kdmp09', 'en', 1, 'https://ror.org/012kdmp09 Opća bolnica Zabok Zabok General Hospital'),
(5094, 'https://ror.org/02ehrn304', 'en', 1, 'https://ror.org/02ehrn304 Zayed Military Hospital مستؓفى زايد Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠ'),
(5095, 'https://ror.org/04a6hmw67', 'no_lang_code', 1, 'https://ror.org/04a6hmw67 Neostem (United States)'),
(5096, 'https://ror.org/05cwghy20', 'no_lang_code', 1, 'https://ror.org/05cwghy20 Zen-Noh (Japan) å…Øå›½č¾²ę„­å”åŒēµ„åˆé€£åˆä¼š'),
(5097, 'https://ror.org/008wcy231', 'en', 1, 'https://ror.org/008wcy231 Zensa Hospital'),
(5098, 'https://ror.org/055dn7q89', 'no_lang_code', 1, 'https://ror.org/055dn7q89 Neuros Medical (United States)'),
(5099, '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'),
(5100, 'https://ror.org/0144s0951', 'en', 1, 'https://ror.org/0144s0951 Zhejiang Cancer Hospital ęµ™ę±Ÿēœč‚æē˜¤åŒ»é™¢'),
(5101, 'https://ror.org/02s5pwd41', 'no_lang_code', 1, 'https://ror.org/02s5pwd41 DeltaQuest Foundation (United States)'),
(5102, 'https://ror.org/02kzr5g33', 'en', 1, 'https://ror.org/02kzr5g33 Zhejiang Hospital ęµ™ę±ŸåŒ»é™¢'),
(5103, 'https://ror.org/03k14e164', 'en', 1, 'https://ror.org/03k14e164 Zhejiang Provincial People''s Hospital'),
(5104, 'https://ror.org/02mhxa927', 'en', 1, 'https://ror.org/02mhxa927 Zhujiang Hospital'),
(5105, 'https://ror.org/01z5jvj74', 'en', 1, 'https://ror.org/01z5jvj74 ZNA Middelheim Hospital'),
(5106, 'https://ror.org/04ty78924', 'no_lang_code', 1, 'https://ror.org/04ty78924 Karyopharm Therapeutics (United States)'),
(5107, 'https://ror.org/00g5b0g93', 'en', 1, 'https://ror.org/00g5b0g93 Zunyi Medical University 遵义医学院'),
(5108, 'https://ror.org/007b9a961', 'no_lang_code', 1, 'https://ror.org/007b9a961 KeraNetics (United States)'),
(5109, 'https://ror.org/017bd5k63', 'en', 1, 'https://ror.org/017bd5k63 Zuoying Armed Forces General Hospital åœ‹č»é«˜é›„ēø½é†«é™¢'),
(5110, 'https://ror.org/0011v4420', 'en', 1, 'https://ror.org/0011v4420 Zübeyde Hanim Maternity Hospital'),
(5111, 'https://ror.org/0343gdk92', 'en', 1, 'https://ror.org/0343gdk92 Dorn Research Institute'),
(5112, 'https://ror.org/009mjd053', 'no_lang_code', 1, 'https://ror.org/009mjd053 Advanced Circulatory System (United States)'),
(5113, 'https://ror.org/03sgbh608', 'en', 1, 'https://ror.org/03sgbh608 La Jolla Bioengineering Institute'),
(5114, 'https://ror.org/004ejmg69', 'no_lang_code', 1, 'https://ror.org/004ejmg69 Aerpio Pharmaceuticals (United States)'),
(5115, 'https://ror.org/0219mbj11', 'no_lang_code', 1, 'https://ror.org/0219mbj11 Karo Pharma (Sweden)'),
(5116, 'https://ror.org/036vj6108', 'no_lang_code', 1, 'https://ror.org/036vj6108 SFC Fluidics (United States)'),
(5117, 'https://ror.org/02d4twb46', 'en', 1, 'https://ror.org/02d4twb46 Sound Health Options');
INSERT INTO `rors` VALUES
(5118, 'https://ror.org/04qkyx850', 'no_lang_code', 1, 'https://ror.org/04qkyx850 Social Sectors Development Strategies (United States)'),
(5119, 'https://ror.org/00wc6ay63', 'no_lang_code', 1, 'https://ror.org/00wc6ay63 KCI (United States)'),
(5120, 'https://ror.org/00gf2nq54', 'no_lang_code', 1, 'https://ror.org/00gf2nq54 Nordic Life Science Pipeline (Canada)'),
(5121, 'https://ror.org/0521rfb23', 'en', 1, 'https://ror.org/0521rfb23 Lincoln University - Pennsylvania Universidad Lincoln'),
(5122, 'https://ror.org/050bs5t91', 'no_lang_code', 1, 'https://ror.org/050bs5t91 Neuro Device Innovations (United States)'),
(5123, 'https://ror.org/04khs0d04', 'en', 1, 'https://ror.org/04khs0d04 Amyotrophic Lateral Sclerosis Therapy Development Institute'),
(5124, 'https://ror.org/00jvgqq49', 'no_lang_code', 1, 'https://ror.org/00jvgqq49 Flexion Therapeutics (United States)'),
(5125, 'https://ror.org/01qqd5n29', 'en', 1, 'https://ror.org/01qqd5n29 Foundation for Advanced Education in the Sciences'),
(5126, 'https://ror.org/03j6e9476', 'no_lang_code', 1, 'https://ror.org/03j6e9476 Lipella Pharmaceuticals (United States)'),
(5127, 'https://ror.org/00dv9e751', 'no_lang_code', 1, 'https://ror.org/00dv9e751 Amplimmune (United States)'),
(5128, 'https://ror.org/0291gd333', 'no_lang_code', 1, 'https://ror.org/0291gd333 STATegics (United States)'),
(5129, 'https://ror.org/057pf1v38', 'en', 1, 'https://ror.org/057pf1v38 Foundation for Health Care Quality'),
(5130, 'https://ror.org/05xnsth60', 'no_lang_code', 1, 'https://ror.org/05xnsth60 Network Technologies (United States)'),
(5131, 'https://ror.org/02pp1v282', 'no_lang_code', 1, 'https://ror.org/02pp1v282 AntiCancer (United States)'),
(5132, 'https://ror.org/05de34168', 'no_lang_code', 1, 'https://ror.org/05de34168 Ganeden Biotech (United States)'),
(5133, 'https://ror.org/03kxwet38', 'no_lang_code', 1, 'https://ror.org/03kxwet38 Antigen Express (United States)'),
(5134, 'https://ror.org/01rm78x24', 'no_lang_code', 1, 'https://ror.org/01rm78x24 Applied Photonics (United Kingdom)'),
(5135, 'https://ror.org/05agtcg56', 'en', 1, 'https://ror.org/05agtcg56 Mary Bird Perkins Cancer Center'),
(5136, 'https://ror.org/0115kp792', 'no_lang_code', 1, 'https://ror.org/0115kp792 Aptagen (United States)'),
(5137, 'https://ror.org/03erxwz83', 'no_lang_code', 1, 'https://ror.org/03erxwz83 Syncrotronics Corporation (United States)'),
(5138, 'https://ror.org/037b79526', 'no_lang_code', 1, 'https://ror.org/037b79526 Synedgen (United States)'),
(5139, 'https://ror.org/04dj5bz65', 'no_lang_code', 1, 'https://ror.org/04dj5bz65 OncoImmune (United States)'),
(5140, 'https://ror.org/04szpx527', 'no_lang_code', 1, 'https://ror.org/04szpx527 Araim Pharmaceuticals (United States)'),
(5141, 'https://ror.org/02phjfe17', 'no_lang_code', 1, 'https://ror.org/02phjfe17 Aridis Pharmaceuticals (United States)'),
(5142, 'https://ror.org/00rkhrg48', 'no_lang_code', 1, 'https://ror.org/00rkhrg48 Synta Pharmaceuticals (United States)'),
(5143, 'https://ror.org/03583w097', 'no_lang_code', 1, 'https://ror.org/03583w097 System Biosciences (United States)'),
(5144, 'https://ror.org/048p0t707', 'no_lang_code', 1, 'https://ror.org/048p0t707 GenProMarkers (United States)'),
(5145, 'https://ror.org/00shwmt46', 'no_lang_code', 1, 'https://ror.org/00shwmt46 Precision Therapeutics (United States)'),
(5146, 'https://ror.org/04q4jqq66', 'no_lang_code', 1, 'https://ror.org/04q4jqq66 3T Ophthalmics (United States)'),
(5147, 'https://ror.org/01c44a921', 'en', 1, 'https://ror.org/01c44a921 Proteogenomics Research Institute for Systems Medicine'),
(5148, 'https://ror.org/04cq3yd71', 'no_lang_code', 1, 'https://ror.org/04cq3yd71 Banyan Biomarkers (United States)'),
(5149, 'https://ror.org/02gp6f150', 'no_lang_code', 1, 'https://ror.org/02gp6f150 Tissue Genesis (United States)'),
(5150, 'https://ror.org/042q5aq71', 'no_lang_code', 1, 'https://ror.org/042q5aq71 BiologicsMD (United States)'),
(5151, 'https://ror.org/02f8ah997', 'en', 1, 'https://ror.org/02f8ah997 Transitional Learning Center'),
(5152, 'https://ror.org/01t4a3951', 'no_lang_code', 1, 'https://ror.org/01t4a3951 Treatment Innovations (United States)'),
(5153, 'https://ror.org/045mbap50', 'no_lang_code', 1, 'https://ror.org/045mbap50 Twin Star Medical (United States)'),
(5154, 'https://ror.org/05a409v92', 'no_lang_code', 1, 'https://ror.org/05a409v92 BioPhyZica (United States)'),
(5155, 'https://ror.org/01v8a4s08', 'no_lang_code', 1, 'https://ror.org/01v8a4s08 RadioMedix (United States)'),
(5156, 'https://ror.org/00xpr6w96', 'en', 1, 'https://ror.org/00xpr6w96 Hough Ear Institute'),
(5157, 'https://ror.org/03cfsae23', 'no_lang_code', 1, 'https://ror.org/03cfsae23 QR Pharma (United States)'),
(5158, 'https://ror.org/05bb2q223', 'no_lang_code', 1, 'https://ror.org/05bb2q223 BioStar Systems (United States)'),
(5159, 'https://ror.org/03ez2en98', 'en', 1, 'https://ror.org/03ez2en98 Vaccine & Gene Therapy Institute of Florida'),
(5160, 'https://ror.org/0130d0563', 'en', 1, 'https://ror.org/0130d0563 Vaccine Research Institute of San Diego'),
(5161, 'https://ror.org/03gk3wr33', 'no_lang_code', 1, 'https://ror.org/03gk3wr33 Biostruxs (United States)'),
(5162, 'https://ror.org/00dym4p25', 'no_lang_code', 1, 'https://ror.org/00dym4p25 Hsiri Therapeutics (United States)'),
(5163, 'https://ror.org/02419mc73', 'en', 1, 'https://ror.org/02419mc73 Boston VA Research Institute'),
(5164, 'https://ror.org/0400czs74', 'no_lang_code', 1, 'https://ror.org/0400czs74 Vivonics (United States)'),
(5165, 'https://ror.org/01fdz0a43', 'no_lang_code', 1, 'https://ror.org/01fdz0a43 Ribonomics (United States)'),
(5166, 'https://ror.org/054kmhw06', 'en', 1, 'https://ror.org/054kmhw06 Western Institute For Biomedical Research'),
(5167, 'https://ror.org/02gxtdy09', 'en', 1, 'https://ror.org/02gxtdy09 Brain Trauma Foundation'),
(5168, 'https://ror.org/03z0x0n35', 'no_lang_code', 1, 'https://ror.org/03z0x0n35 Pharmaceutical Formulations (United States)'),
(5169, 'https://ror.org/03cth7012', 'en', 1, 'https://ror.org/03cth7012 Bronx Veterans Medical Research Foundation'),
(5170, 'https://ror.org/00nxxee52', 'no_lang_code', 1, 'https://ror.org/00nxxee52 HyperMed (United States)'),
(5171, 'https://ror.org/05gcn3678', 'en', 1, 'https://ror.org/05gcn3678 Whittemore Peterson Institute'),
(5172, 'https://ror.org/01ae87070', 'it', 1, 'https://ror.org/01ae87070 Ospedale A. Perrino'),
(5173, 'https://ror.org/02sh8ry89', 'no_lang_code', 1, 'https://ror.org/02sh8ry89 Wicab (United States)'),
(5174, 'https://ror.org/01vj62p39', 'no_lang_code', 1, 'https://ror.org/01vj62p39 Cadence Biomedical (United States)'),
(5175, 'https://ror.org/02rb17w33', 'no_lang_code', 1, 'https://ror.org/02rb17w33 Wright Medical Technology (United States)'),
(5176, 'https://ror.org/05eb35r14', 'en', 1, 'https://ror.org/05eb35r14 Roseman University of Health Sciences'),
(5177, 'https://ror.org/02b10nq15', 'en', 1, 'https://ror.org/02b10nq15 Roskamp Institute'),
(5178, 'https://ror.org/04j6jb515', 'it', 1, 'https://ror.org/04j6jb515 Istituti Fisioterapici Ospitalieri'),
(5179, 'https://ror.org/05bk0hn37', 'no_lang_code', 1, 'https://ror.org/05bk0hn37 Biota Pharmaceuticals (United States)'),
(5180, 'https://ror.org/05f7kgd45', 'en', 1, 'https://ror.org/05f7kgd45 Rothberg Institute For Childhood Diseases'),
(5181, 'https://ror.org/02y41ps56', 'no_lang_code', 1, 'https://ror.org/02y41ps56 ImmuneXcite (United States)'),
(5182, 'https://ror.org/05hb58293', 'no_lang_code', 1, 'https://ror.org/05hb58293 Immunotope (United States)'),
(5183, 'https://ror.org/00b51s809', 'no_lang_code', 1, 'https://ror.org/00b51s809 InnerSea Technology (United States)'),
(5184, 'https://ror.org/05nq8z503', 'en', 1, 'https://ror.org/05nq8z503 Preventive Medicine Research Institute'),
(5185, 'https://ror.org/04c91wj10', 'en', 1, 'https://ror.org/04c91wj10 Seattle Institute for Biomedical and Clinical Research'),
(5186, 'https://ror.org/05w1q8228', 'no_lang_code', 1, 'https://ror.org/05w1q8228 Senex Biotechnology (United States)'),
(5187, 'https://ror.org/05y2m0c09', 'en', 1, 'https://ror.org/05y2m0c09 Institute for Medical Research'),
(5188, 'https://ror.org/03b436430', 'en', 1, 'https://ror.org/03b436430 Hospital de la Universidad de Utah University of Utah Hospital'),
(5189, 'https://ror.org/04sadrh19', 'en', 1, 'https://ror.org/04sadrh19 Hindu College of Pharmacy'),
(5190, 'https://ror.org/0053ctp29', 'it', 1, 'https://ror.org/0053ctp29 Ospedale Maggiore'),
(5191, 'https://ror.org/00e4xmg89', 'en', 1, 'https://ror.org/00e4xmg89 Hipple Cancer Research Center'),
(5192, 'https://ror.org/014c2qb55', 'de', 1, 'https://ror.org/014c2qb55 Klinik Hirslanden'),
(5193, 'https://ror.org/01jy3gh06', 'de', 1, 'https://ror.org/01jy3gh06 Hochrhein Institut für Rehabilitationsforschung'),
(5194, 'https://ror.org/01r6bzv07', 'en', 1, 'https://ror.org/01r6bzv07 Bogomoletz Institute of Physiology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізіології ім. Šž.Šž. Š‘Š¾Š³Š¾Š¼Š¾Š»ŃŒŃ†Ń'),
(5195, 'https://ror.org/028e1xc68', 'en', 1, 'https://ror.org/028e1xc68 Center for Clinical & Basic Research'),
(5196, 'https://ror.org/00k0w7368', 'en', 1, 'https://ror.org/00k0w7368 Cooper Clinic'),
(5197, 'https://ror.org/03nzdk586', 'en', 1, 'https://ror.org/03nzdk586 Cooperative Clinical Drug Research and Development'),
(5198, 'https://ror.org/00e8qrd29', 'en', 1, 'https://ror.org/00e8qrd29 Center for Clinical Studies'),
(5199, 'https://ror.org/00er70d66', 'en', 1, 'https://ror.org/00er70d66 Center for Complex Infectious Diseases'),
(5200, 'https://ror.org/05ech9204', 'en', 1, 'https://ror.org/05ech9204 St. John Fisher College'),
(5201, 'https://ror.org/04fnfq325', 'en', 1, 'https://ror.org/04fnfq325 Center for Creative Leadership'),
(5202, 'https://ror.org/04wb8fh44', 'no', 1, 'https://ror.org/04wb8fh44 Center for Crisis Psychology Senter for Krisepsykologi'),
(5203, 'https://ror.org/032s9tg47', 'en', 1, 'https://ror.org/032s9tg47 Cooperative Research Centre for Beef Genetic Technologies'),
(5204, 'https://ror.org/01srwdt35', 'en', 1, 'https://ror.org/01srwdt35 Center for Dermatology and Laser Surgery'),
(5205, 'https://ror.org/02q2pqb13', 'en', 1, 'https://ror.org/02q2pqb13 Cooperative Research Centre for Tissue Growth and Repair'),
(5206, 'https://ror.org/02hbfck57', 'en', 1, 'https://ror.org/02hbfck57 AARP'),
(5207, 'https://ror.org/00pvmkr98', 'en', 1, 'https://ror.org/00pvmkr98 Cornea Research Foundation of America'),
(5208, 'https://ror.org/02q49af68', 'en', 1, 'https://ror.org/02q49af68 Aberdeen Royal Infirmary'),
(5209, 'https://ror.org/00q1c3610', 'en', 1, 'https://ror.org/00q1c3610 Abisko Scientific Research Station'),
(5210, 'https://ror.org/03jtqwv36', 'en', 1, 'https://ror.org/03jtqwv36 Aspire Academy Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų£Ų³ŲØŲ§ŁŠŲ±ā€Ž'),
(5211, 'https://ror.org/01vqjmx11', 'en', 1, 'https://ror.org/01vqjmx11 Center for Economic and Policy Research'),
(5212, 'https://ror.org/03mz9mq20', 'tr', 1, 'https://ror.org/03mz9mq20 Adli Tıp Kurumu'),
(5213, 'https://ror.org/05mmkk893', 'en', 1, 'https://ror.org/05mmkk893 Center for Facial Appearances'),
(5214, 'https://ror.org/03srd4412', 'en', 1, 'https://ror.org/03srd4412 Center for HIV and Hepatogastroenterology Medizinisches Versorgungszentrum'),
(5215, 'https://ror.org/02prqh017', 'en', 1, 'https://ror.org/02prqh017 Holon Institute of Technology'),
(5216, 'https://ror.org/01hbes477', 'en', 1, 'https://ror.org/01hbes477 Franciscan Health'),
(5217, 'https://ror.org/02hhsqf45', 'no_lang_code', 1, 'https://ror.org/02hhsqf45 Covance (United States)'),
(5218, 'https://ror.org/015ygrv52', 'en', 1, 'https://ror.org/015ygrv52 Hong Kong Jockey Club é¦™ęøÆč³½é¦¬ęœƒ'),
(5219, 'https://ror.org/05avmsq62', 'en', 1, 'https://ror.org/05avmsq62 Center for Human Reproduction'),
(5220, 'https://ror.org/059vag305', 'no_lang_code', 1, 'https://ror.org/059vag305 Covance (United Kingdom)'),
(5221, 'https://ror.org/03shyvb83', 'en', 1, 'https://ror.org/03shyvb83 Hope Heart Institute'),
(5222, 'https://ror.org/03z5px561', 'en', 1, 'https://ror.org/03z5px561 Center for Occupational and Environmental Neurology'),
(5223, 'https://ror.org/05q7t7f13', 'en', 1, 'https://ror.org/05q7t7f13 Center For Reconstructive Urethral Surgery Centro di Chirurgia Ricostruttiva dell''Uretra'),
(5224, 'https://ror.org/00edzwq44', 'en', 1, 'https://ror.org/00edzwq44 Academy of Radiology Research'),
(5225, 'https://ror.org/03hmdtw84', 'no_lang_code', 1, 'https://ror.org/03hmdtw84 CPS Research'),
(5226, 'https://ror.org/01gvaa828', 'fr', 1, 'https://ror.org/01gvaa828 HƓpital d''Enfants'),
(5227, 'https://ror.org/00ftv8552', 'en', 1, 'https://ror.org/00ftv8552 Center for Research in Environmental Epidemiology Centro de Investigación en Epidemiología Ambiental'),
(5228, 'https://ror.org/01e2q0308', 'fr', 1, 'https://ror.org/01e2q0308 HƓpital de l''Antiquaille'),
(5229, 'https://ror.org/00av7p167', 'en', 1, 'https://ror.org/00av7p167 Center for Science in the Public Interest (United States)'),
(5230, 'https://ror.org/00x3r9n64', 'en', 1, 'https://ror.org/00x3r9n64 Nezhat Medical Center'),
(5231, 'https://ror.org/02mgtg880', 'en', 1, 'https://ror.org/02mgtg880 Critical Path Institute'),
(5232, 'https://ror.org/007wes890', 'it', 1, 'https://ror.org/007wes890 Istituto per lo Studio e la Prevenzione Oncologica'),
(5233, 'https://ror.org/00tvt5664', 'en', 1, 'https://ror.org/00tvt5664 Croatian Institute of Transfusion Medicine Hrvatski Zavod za Transfuzijsku Medicinu'),
(5234, 'https://ror.org/01svwyw14', 'en', 1, 'https://ror.org/01svwyw14 Croatian Veterinary Institute Hrvatski veterinarski institut Zagreb'),
(5235, 'https://ror.org/011krwa35', 'en', 1, 'https://ror.org/011krwa35 Urology Associates'),
(5236, 'https://ror.org/01qek3q18', 'en', 1, 'https://ror.org/01qek3q18 Central Electrochemical Research Institute'),
(5237, 'https://ror.org/0263fes98', 'no_lang_code', 1, 'https://ror.org/0263fes98 Center for Value Based Medicine (United States)'),
(5238, 'https://ror.org/0527mfk98', 'en', 1, 'https://ror.org/0527mfk98 Central Institute of Medicinal and Aromatic Plants ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤”ą¤·ą¤§ą„€ą¤Æ ą¤ą¤µą¤‚ सगंध ą¤Ŗą„Œą¤§ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą“øąµ†ąµ»ą“Ÿąµą“°ąµ½ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ąµ†ą“”ą“æą“øą“æą“Øąµ½ ą“†ą“Øąµą“±ąµ ą“…ą“°ąµ‹ą“®ą“¾ą“±ąµą“±ą“æą“•ąµ ą“Ŗąµą“²ą“¾ąµ»ą“±ąµą“øąµ'),
(5239, 'https://ror.org/02cfbec64', 'fr', 1, 'https://ror.org/02cfbec64 HƓpital Militaire Avicenne'),
(5240, 'https://ror.org/05shq4n12', 'en', 1, 'https://ror.org/05shq4n12 Centre for Cellular and Molecular Biology உயிரணு ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®®ąÆ‚ą®²ą®•ąÆą®•ąÆ‚ą®±ąÆ ą®‰ą®Æą®æą®°ą®æą®Æą®²ąÆ ą®®ąÆˆą®Æą®®ąÆ ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“øąµ†ą“²ąµą“²ąµą“²ą“¾ąµ¼ ą“†ą“Øąµą“±ąµ ą“®ąµ‹ą“³ą“æą“•ąµą“Æąµą“²ąµ¼ ą“¬ą“Æąµ‹ą“³ą“œą“æ'),
(5241, 'https://ror.org/040dky007', 'en', 1, 'https://ror.org/040dky007 Indian Institute of Chemical Technology ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą°æą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°•ą±†ą°®ą°æą°•ą°²ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ą“±ą“æą“±ą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“•ąµ†ą“®ą“æą“•ąµą“•ąµ½ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ, ą“¹ąµˆą“¦ąµą“°ą“¬ą“¾ą“¦ąµ'),
(5242, 'https://ror.org/01e70mw69', 'en', 1, 'https://ror.org/01e70mw69 Indian Institute of Toxicology Research ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤·ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(5243, 'https://ror.org/05ef28661', 'en', 1, 'https://ror.org/05ef28661 Institute of Genomics and Integrative Biology'),
(5244, 'https://ror.org/03xcn0p72', 'en', 1, 'https://ror.org/03xcn0p72 Institute of Himalayan Bioresource Technology'),
(5245, 'https://ror.org/01gh7yb82', 'no_lang_code', 1, 'https://ror.org/01gh7yb82 Center of Molecular Immunology (Cuba)'),
(5246, 'https://ror.org/049tzhz49', 'en', 1, 'https://ror.org/049tzhz49 Ackerman Academy of Dermatopathology'),
(5247, 'https://ror.org/02zdz9s16', 'en', 1, 'https://ror.org/02zdz9s16 Ackerman Institute for the Family'),
(5248, 'https://ror.org/001yedb91', 'no_lang_code', 1, 'https://ror.org/001yedb91 Actelion (Switzerland)'),
(5249, 'https://ror.org/05mbqa235', 'en', 1, 'https://ror.org/05mbqa235 Ecosystem Sciences'),
(5250, 'https://ror.org/05rke7t32', 'en', 1, 'https://ror.org/05rke7t32 Animal, Food and Health Sciences'),
(5251, 'https://ror.org/025s1b152', 'fr', 1, 'https://ror.org/025s1b152 Lille Catholic University UniversitƩ Catholique de Lille'),
(5252, 'https://ror.org/05jg9pj51', 'en', 1, 'https://ror.org/05jg9pj51 Plant Industry'),
(5253, 'https://ror.org/00death42', 'en', 1, 'https://ror.org/00death42 Administrative Staff College of India'),
(5254, 'https://ror.org/02bsaqx63', 'en', 1, 'https://ror.org/02bsaqx63 House Clinic'),
(5255, 'https://ror.org/034x2fx50', 'en', 1, 'https://ror.org/034x2fx50 Information and Communication Technologies Centre'),
(5256, 'https://ror.org/02wna9e57', 'pt', 1, 'https://ror.org/02wna9e57 Instituto Adolfo Lutz'),
(5257, 'https://ror.org/057by3h53', 'en', 1, 'https://ror.org/057by3h53 Houston Headache & Neurological Institute'),
(5258, 'https://ror.org/03a3t3y67', 'en', 1, 'https://ror.org/03a3t3y67 Houston Institute for Clinical Research'),
(5259, 'https://ror.org/020h1bf56', 'en', 1, 'https://ror.org/020h1bf56 United States Public Health Service Commissioned Officers Association'),
(5260, 'https://ror.org/00rk1k743', 'en', 1, 'https://ror.org/00rk1k743 Cuban Neuroscience Center'),
(5261, 'https://ror.org/05xf94514', 'en', 1, 'https://ror.org/05xf94514 United States Public Health Service'),
(5262, 'https://ror.org/02xwa6p02', 'no_lang_code', 1, 'https://ror.org/02xwa6p02 Cubist Pharmaceuticals (United States)'),
(5263, 'https://ror.org/046dm7t24', 'en', 1, 'https://ror.org/046dm7t24 Cumberland Infirmary'),
(5264, 'https://ror.org/00g4tw789', 'en', 1, 'https://ror.org/00g4tw789 Hughston Clinic'),
(5265, 'https://ror.org/01sgx5h42', 'en', 1, 'https://ror.org/01sgx5h42 Cuyahoga Community College'),
(5266, 'https://ror.org/01b11x021', 'en', 1, 'https://ror.org/01b11x021 Hull and East Yorkshire Hospitals NHS Trust'),
(5267, 'https://ror.org/05x923c26', 'en', 1, 'https://ror.org/05x923c26 Central Environmental and Food Science Research Institute'),
(5268, 'https://ror.org/02njpkz73', 'en', 1, 'https://ror.org/02njpkz73 Hull Royal Infirmary'),
(5269, 'https://ror.org/018m20m74', 'en', 1, 'https://ror.org/018m20m74 Human BioMolecular Research Institute'),
(5270, 'https://ror.org/047qvvw08', 'en', 1, 'https://ror.org/047qvvw08 Central Forensic Science Laboratory'),
(5271, 'https://ror.org/04dfe6667', 'en', 1, 'https://ror.org/04dfe6667 Human Gene Therapy Research Institute'),
(5272, 'https://ror.org/026799x08', 'no_lang_code', 1, 'https://ror.org/026799x08 CyberFluor and Kronen Systems Incorporated'),
(5273, 'https://ror.org/05k1yyh03', 'no_lang_code', 1, 'https://ror.org/05k1yyh03 Human Genome Sciences (United States)'),
(5274, 'https://ror.org/02wzb5b52', 'en', 1, 'https://ror.org/02wzb5b52 Grand Forks Human Nutrition Research Center'),
(5275, 'https://ror.org/0505r1x13', 'no_lang_code', 1, 'https://ror.org/0505r1x13 Affymax (United States)'),
(5276, 'https://ror.org/00kar4g50', 'fr', 1, 'https://ror.org/00kar4g50 Agence de MƩdecine PrƩventive'),
(5277, 'https://ror.org/01engnx74', 'en', 1, 'https://ror.org/01engnx74 Cystic Fibrosis Research Foundation'),
(5278, 'https://ror.org/009qffz28', 'en', 1, 'https://ror.org/009qffz28 Central Institute of Psychiatry ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤®ą¤Øą¤¶ą„ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(5279, 'https://ror.org/01ftkxq60', 'no_lang_code', 1, 'https://ror.org/01ftkxq60 Cytel (United States)'),
(5280, 'https://ror.org/03a8gee76', 'en', 1, 'https://ror.org/03a8gee76 National JALMA Institute for Leprosy & Other Mycobacterial Diseases'),
(5281, 'https://ror.org/058t40d22', 'en', 1, 'https://ror.org/058t40d22 Central Leprosy Teaching & Research Institute'),
(5282, 'https://ror.org/017pcqs43', 'en', 1, 'https://ror.org/017pcqs43 D.I. Ivanovsky Institute of Virology Russian Academy of Medical Sciences ŠŠ˜Š˜ Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø имени Š”. И. Ивановского Š ŠŠœŠ'),
(5283, 'https://ror.org/05adsq794', 'en', 1, 'https://ror.org/05adsq794 D''Youville College'),
(5284, 'https://ror.org/03p1zz409', 'no_lang_code', 1, 'https://ror.org/03p1zz409 Envigo (Germany)'),
(5285, 'https://ror.org/057k4vd77', 'en', 1, 'https://ror.org/057k4vd77 Hungarian Meat Research Institute'),
(5286, 'https://ror.org/04sapgw72', 'no_lang_code', 1, 'https://ror.org/04sapgw72 Sumitomo Dainippon Pharma (Japan) å¤§ę—„ęœ¬ä½å‹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(5287, 'https://ror.org/01xdq1k91', 'no_lang_code', 1, 'https://ror.org/01xdq1k91 Japan Tobacco (Japan) ę—„ęœ¬ćŸć°ć“ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(5288, 'https://ror.org/01qw0br74', 'en', 1, 'https://ror.org/01qw0br74 Agricultural Biotechnology Institute'),
(5289, 'https://ror.org/01wnfae18', 'en', 1, 'https://ror.org/01wnfae18 Central Research Institute ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(5290, 'https://ror.org/041jswc25', 'en', 1, 'https://ror.org/041jswc25 Central Research Institute of Electric Power Industry é›»åŠ›äø­å¤®ē ”ē©¶ę‰€'),
(5291, 'https://ror.org/01mpm4k64', 'en', 1, 'https://ror.org/01mpm4k64 Central Research Institute of Epidemiology Š¤Š‘Š£Š Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ˜Š˜ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø РоспотребнаГзора'),
(5292, 'https://ror.org/03rzm8h15', 'en', 1, 'https://ror.org/03rzm8h15 Hyogo Brain and Heart Center å…µåŗ«ēœŒē«‹å§«č·Æå¾Ŗē’°å™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(5293, 'https://ror.org/05kh5wx29', 'en', 1, 'https://ror.org/05kh5wx29 Agrifood Research Finland'),
(5294, 'https://ror.org/054z08865', 'en', 1, 'https://ror.org/054z08865 Hyogo Prefectural Cancer Center å…µåŗ«ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(5295, 'https://ror.org/04spxqa35', 'pt', 1, 'https://ror.org/04spxqa35 Instituto Dante Pazzanese de Cardiologia'),
(5296, 'https://ror.org/03ehse820', 'da', 1, 'https://ror.org/03ehse820 Dansk Sundhedsinstitut Dansk Sygehus Institut'),
(5297, 'https://ror.org/05y1qcf54', 'en', 1, 'https://ror.org/05y1qcf54 Agricultural Institute Magyar TudomĆ”nyos AkadĆ©mia MezőgazdasĆ”gi Kutató IntĆ©zet'),
(5298, 'https://ror.org/02td3ps96', 'en', 1, 'https://ror.org/02td3ps96 Dartmouth Psychiatric Research Center'),
(5299, 'https://ror.org/031bsx066', 'en', 1, 'https://ror.org/031bsx066 DaVinci Institute'),
(5300, 'https://ror.org/05bjen692', 'en', 1, 'https://ror.org/05bjen692 Center for Cancer Research'),
(5301, 'https://ror.org/04xdr5k48', 'en', 1, 'https://ror.org/04xdr5k48 DDL Diagnostic Laboratory'),
(5302, 'https://ror.org/022rrvm68', 'en', 1, 'https://ror.org/022rrvm68 Pavlov Institute of Physiology of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии им. И.П. Павлова Российской акаГемии наук'),
(5303, 'https://ror.org/0331x8t04', 'nl', 1, 'https://ror.org/0331x8t04 Zaans Medisch Centrum'),
(5304, 'https://ror.org/03ndwvd63', 'en', 1, 'https://ror.org/03ndwvd63 Fairview Developmental Center'),
(5305, 'https://ror.org/01vyrje42', 'it', 1, 'https://ror.org/01vyrje42 Istituto Ortopedico Galeazzi'),
(5306, 'https://ror.org/05arxpe18', 'en', 1, 'https://ror.org/05arxpe18 Billings Clinic'),
(5307, 'https://ror.org/05rcxtd95', 'it', 1, 'https://ror.org/05rcxtd95 Fondazione Santa Lucia'),
(5308, 'https://ror.org/01nd9hr79', 'en', 1, 'https://ror.org/01nd9hr79 Forth Valley Royal Hospital'),
(5309, 'https://ror.org/0212h5y77', 'en', 1, 'https://ror.org/0212h5y77 Inova Fairfax Hospital'),
(5310, 'https://ror.org/010azec62', 'en', 1, 'https://ror.org/010azec62 Deborah Heart and Lung Center'),
(5311, 'https://ror.org/04tj7zv24', 'en', 1, 'https://ror.org/04tj7zv24 BPP University'),
(5312, 'https://ror.org/00806hw79', 'en', 1, 'https://ror.org/00806hw79 Huddersfield Royal Infirmary'),
(5313, 'https://ror.org/05jgy0m16', 'no_lang_code', 1, 'https://ror.org/05jgy0m16 Meso Scale Discovery (United States)'),
(5314, 'https://ror.org/03yjg6e54', 'no_lang_code', 1, 'https://ror.org/03yjg6e54 Motion Control (United States)'),
(5315, 'https://ror.org/02sn8xp43', 'no_lang_code', 1, 'https://ror.org/02sn8xp43 Oxonica (United Kingdom)'),
(5316, 'https://ror.org/02tfv4t78', 'no_lang_code', 1, 'https://ror.org/02tfv4t78 Corning (United States)'),
(5317, 'https://ror.org/05k2xsz75', 'es', 1, 'https://ror.org/05k2xsz75 Academia Nacional de Medicina Buenos Aires National Academy of Medicine'),
(5318, 'https://ror.org/043cx5970', 'en', 1, 'https://ror.org/043cx5970 Glynn Hospitality Group'),
(5319, 'https://ror.org/03az52a93', 'en', 1, 'https://ror.org/03az52a93 Family Medicine Residency of Idaho'),
(5320, 'https://ror.org/0173mx324', 'en', 1, 'https://ror.org/0173mx324 Family Research Institute'),
(5321, 'https://ror.org/01k57xn28', 'sr', 1, 'https://ror.org/01k57xn28 Institut za kardiovaskularne bolesti Dedinje'),
(5322, 'https://ror.org/037jprb08', 'sv', 1, 'https://ror.org/037jprb08 Centrallasarettet VƤxjƶ'),
(5323, 'https://ror.org/02j33yq05', 'en', 1, 'https://ror.org/02j33yq05 AIDS and Clinical Immunology Research Center'),
(5324, 'https://ror.org/00xx9yn39', 'en', 1, 'https://ror.org/00xx9yn39 Fatima Jinnah Dental College'),
(5325, 'https://ror.org/02xyffp85', 'en', 1, 'https://ror.org/02xyffp85 Fatima Mata National College ą“«ą“¾ą“¤ąµą“¤ą“æą“® ą“®ą“¾ą“¤ą“¾ ą“Øą“¾ą“·ą“£ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(5326, 'https://ror.org/05hmfw828', 'fr', 1, 'https://ror.org/05hmfw828 Centre Antoine Lacassagne'),
(5327, 'https://ror.org/0534bc363', 'fr', 1, 'https://ror.org/0534bc363 Centre Cardiologique du Nord'),
(5328, 'https://ror.org/05pxjag90', 'en', 1, 'https://ror.org/05pxjag90 Denver Federal Center'),
(5329, 'https://ror.org/03t4znc65', 'en', 1, 'https://ror.org/03t4znc65 DairyNZ'),
(5330, 'https://ror.org/050eja791', 'no_lang_code', 1, 'https://ror.org/050eja791 Ajinomoto (Russia) АГжиномото'),
(5331, 'https://ror.org/039qtv212', 'en', 1, 'https://ror.org/039qtv212 Federal Correctional Institution Schuylkill'),
(5332, 'https://ror.org/0235jet62', 'en', 1, 'https://ror.org/0235jet62 Akebono Clinic'),
(5333, 'https://ror.org/03pa87f90', 'fr', 1, 'https://ror.org/03pa87f90 Institut Claudius Regaud'),
(5334, 'https://ror.org/01rje3r53', 'fr', 1, 'https://ror.org/01rje3r53 Centre d''Ɖtude du Polymorphisme Humain Fondation Jean Dausset-CEPH'),
(5335, 'https://ror.org/01yrmk064', 'en', 1, 'https://ror.org/01yrmk064 Guttmacher Institute'),
(5336, 'https://ror.org/01ezk2d60', 'no_lang_code', 1, 'https://ror.org/01ezk2d60 Indian Drugs and Pharmaceuticals Limited'),
(5337, 'https://ror.org/05dfnrn76', 'de', 1, 'https://ror.org/05dfnrn76 IFT Institut für Therapieforschung Institute for Therapy and Health Research'),
(5338, 'https://ror.org/02rh7vj17', 'en', 1, 'https://ror.org/02rh7vj17 Alaska Department of Fish and Game'),
(5339, 'https://ror.org/04g47ec58', 'fr', 1, 'https://ror.org/04g47ec58 SociƩtƩ FranƧaise de Rhumatologie'),
(5340, 'https://ror.org/03kz7sc12', 'en', 1, 'https://ror.org/03kz7sc12 Rothman Institute'),
(5341, 'https://ror.org/04jswqb94', 'en', 1, 'https://ror.org/04jswqb94 Defence Science and Technology Laboratory'),
(5342, 'https://ror.org/03n9kxm25', 'en', 1, 'https://ror.org/03n9kxm25 Delaware County Community College'),
(5343, 'https://ror.org/05ad30n04', 'no_lang_code', 1, 'https://ror.org/05ad30n04 Alceon Corporation (United States)'),
(5344, 'https://ror.org/01d71vb80', 'en', 1, 'https://ror.org/01d71vb80 FernƔndez-Vega Ophthalmological Institute'),
(5345, 'https://ror.org/04tk6mg68', 'en', 1, 'https://ror.org/04tk6mg68 Alcohol Research Group'),
(5346, 'https://ror.org/02z95d405', 'de', 1, 'https://ror.org/02z95d405 Institut für Klinische Forschung und Entwicklung'),
(5347, 'https://ror.org/03m7mhz19', 'no_lang_code', 1, 'https://ror.org/03m7mhz19 Ferring Pharmaceuticals (Denmark)'),
(5348, 'https://ror.org/050b6eh04', 'en', 1, 'https://ror.org/050b6eh04 Fertility Center of Las Vegas'),
(5349, 'https://ror.org/00p18zw56', 'en', 1, 'https://ror.org/00p18zw56 Alder Hey Children''s NHS Foundation Trust'),
(5350, 'https://ror.org/05pkanq60', 'en', 1, 'https://ror.org/05pkanq60 Alfa Institute of Biomedical Sciences Άλφα Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī’Ī¹ĪæĻŠĪ±Ļ„ĻĪ¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½'),
(5351, 'https://ror.org/043j3s676', 'en', 1, 'https://ror.org/043j3s676 Fetal Medicine Foundation of America'),
(5352, 'https://ror.org/00h74hd82', 'en', 1, 'https://ror.org/00h74hd82 Denver Center for the Performing Arts'),
(5353, 'https://ror.org/00kq7a553', 'en', 1, 'https://ror.org/00kq7a553 Finlay Institute'),
(5354, 'https://ror.org/01wj8vf34', 'en', 1, 'https://ror.org/01wj8vf34 Raghudeep Eye Hospital'),
(5355, 'https://ror.org/00fnk0q46', 'en', 1, 'https://ror.org/00fnk0q46 Academy of Medicine'),
(5356, 'https://ror.org/04pmaae27', 'en', 1, 'https://ror.org/04pmaae27 Illinois College of Optometry'),
(5357, 'https://ror.org/04dxcby13', 'fr', 1, 'https://ror.org/04dxcby13 Centre de Chirurgie Plastique'),
(5358, 'https://ror.org/052ahj806', 'fr', 1, 'https://ror.org/052ahj806 Centre de GƩnƩtique MolƩculaire'),
(5359, 'https://ror.org/03y3pdm07', 'en', 1, 'https://ror.org/03y3pdm07 Veterans Biomedical Research Institute'),
(5360, 'https://ror.org/01tbvb523', 'en', 1, 'https://ror.org/01tbvb523 Florida Orthopaedic Institute'),
(5361, 'https://ror.org/04sy08330', 'en', 1, 'https://ror.org/04sy08330 AdventHealth Tampa'),
(5362, 'https://ror.org/00dcv1019', 'en', 1, 'https://ror.org/00dcv1019 Allen Institute for Brain Science'),
(5363, 'https://ror.org/0315s4978', 'fr', 1, 'https://ror.org/0315s4978 Centre de MƩdecine PrƩventive'),
(5364, 'https://ror.org/05acynk65', 'en', 1, 'https://ror.org/05acynk65 Centre of Biotechnology of Sfax'),
(5365, 'https://ror.org/02mdxv534', 'fr', 1, 'https://ror.org/02mdxv534 Fondation Ophtalmologique Adolphe de Rothschild'),
(5366, 'https://ror.org/04bf30x64', 'en', 1, 'https://ror.org/04bf30x64 Allegheny County'),
(5367, 'https://ror.org/03kkzdv75', 'en', 1, 'https://ror.org/03kkzdv75 Clinicians Report Foundation'),
(5368, 'https://ror.org/05dwj7825', 'it', 1, 'https://ror.org/05dwj7825 Fondazione IRCCS Istituto Nazionale dei Tumori'),
(5369, 'https://ror.org/056ffv270', 'en', 1, 'https://ror.org/056ffv270 Imperial College Healthcare NHS Trust'),
(5370, 'https://ror.org/00z20c921', 'en', 1, 'https://ror.org/00z20c921 Harper Adams University'),
(5371, 'https://ror.org/03jza6h92', 'en', 1, 'https://ror.org/03jza6h92 University of Abuja Teaching Hospital'),
(5372, 'https://ror.org/00n208030', 'en', 1, 'https://ror.org/00n208030 St Mary''s University College'),
(5373, 'https://ror.org/03vk7ns50', 'en', 1, 'https://ror.org/03vk7ns50 Alwar Pharmacy College'),
(5374, 'https://ror.org/05yhj6j64', 'en', 1, 'https://ror.org/05yhj6j64 Food Industry Research and Development Institute'),
(5375, 'https://ror.org/02jq36h12', 'en', 1, 'https://ror.org/02jq36h12 Department of Agriculture and Food Western Australia'),
(5376, 'https://ror.org/03je0y772', 'de', 1, 'https://ror.org/03je0y772 Institut für biologische Forschung'),
(5377, 'https://ror.org/053asbv83', 'en', 1, 'https://ror.org/053asbv83 American Academy of Cosmetic Dentistry'),
(5378, 'https://ror.org/00g2tkw06', 'no_lang_code', 1, 'https://ror.org/00g2tkw06 Ford Motor Company (United States)'),
(5379, 'https://ror.org/00mv9dj85', 'en', 1, 'https://ror.org/00mv9dj85 American Academy of Neurology'),
(5380, 'https://ror.org/015z80004', 'en', 1, 'https://ror.org/015z80004 Forensic Sciences Department'),
(5381, 'https://ror.org/02gv7n749', 'en', 1, 'https://ror.org/02gv7n749 American Dental Education Association'),
(5382, 'https://ror.org/013v2jk78', 'en', 1, 'https://ror.org/013v2jk78 American Association of Poison Control Centers'),
(5383, 'https://ror.org/02xh63p53', 'en', 1, 'https://ror.org/02xh63p53 American Board of Emergency Medicine'),
(5384, 'https://ror.org/00jtgnb29', 'en', 1, 'https://ror.org/00jtgnb29 American Board of Internal Medicine'),
(5385, 'https://ror.org/03pgm1r86', 'en', 1, 'https://ror.org/03pgm1r86 American College of Cardiology'),
(5386, 'https://ror.org/05t8d2s47', 'en', 1, 'https://ror.org/05t8d2s47 American College of Emergency Physicians'),
(5387, 'https://ror.org/04cheq228', 'en', 1, 'https://ror.org/04cheq228 American College of Gastroenterology'),
(5388, 'https://ror.org/011ps1s60', 'en', 1, 'https://ror.org/011ps1s60 American College of Healthcare Executives'),
(5389, 'https://ror.org/02agkk742', 'en', 1, 'https://ror.org/02agkk742 National Institute of Indian Medical Heritage ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø संपदा ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(5390, 'https://ror.org/01z1z7017', 'de', 1, 'https://ror.org/01z1z7017 Forschungsinstitut für Kinderernährung'),
(5391, 'https://ror.org/04gt45789', 'en', 1, 'https://ror.org/04gt45789 American Congress of Obstetricians and Gynecologists'),
(5392, 'https://ror.org/013ed7841', 'en', 1, 'https://ror.org/013ed7841 American College of Physician Executives'),
(5393, 'https://ror.org/03671qm90', 'en', 1, 'https://ror.org/03671qm90 American College of Physicians'),
(5394, 'https://ror.org/01rzx2627', 'en', 1, 'https://ror.org/01rzx2627 American College of Radiology'),
(5395, 'https://ror.org/02xxpjq61', 'en', 1, 'https://ror.org/02xxpjq61 Indian Institute of Management Bangalore ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¬ą„‡ą¤‚ą¤—ą¤²ą„‚ą¤° ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ ą®ŖąÆ†ą®™ąÆą®•ą®³ąÆ‚ą®°ąÆ ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ā€Œą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°®ą±‡ą°Øą±‡ą°œą±ā€Œą°®ą±†ą°‚ą°Ÿą± బెంగుళూరు ą²‡ą²‚ą²”ą²æą²Æą²Øą³ā€Œ ą²‡ą²Øą³ā€Œą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ā€Œ ą²†ą²«ą³ā€Œ ą²®ą³ą²Æą²¾ą²Øą³‡ą²œą³ā€Œą²®ą³†ą²‚ą²Ÿą³ā€Œ ಬೆಂಗಳೂರು ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ą“¾ą“Øąµ‡ą“œąµā€Œą“®ąµ†ą“Øąµą“±ąµ, ą“¬ą“¾ą“‚ą“—ąµą“²ąµ‚ąµ¼'),
(5396, 'https://ror.org/03b2h3x98', 'de', 1, 'https://ror.org/03b2h3x98 Paul Gerhardt Diakonie'),
(5397, 'https://ror.org/009mk5659', 'en', 1, 'https://ror.org/009mk5659 American College of Surgeons'),
(5398, 'https://ror.org/05dj1xv70', 'en', 1, 'https://ror.org/05dj1xv70 Academy of Nutrition and Dietetics'),
(5399, 'https://ror.org/03zg6y353', 'en', 1, 'https://ror.org/03zg6y353 American Enterprise Institute'),
(5400, 'https://ror.org/02p014d02', 'en', 1, 'https://ror.org/02p014d02 American International College'),
(5401, 'https://ror.org/028qa3n13', 'en', 1, 'https://ror.org/028qa3n13 Indian Institute of Science Education and Research Pune ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤Ŗą„ą¤£ą„‡'),
(5402, 'https://ror.org/012057720', 'en', 1, 'https://ror.org/012057720 American Legacy Foundation'),
(5403, 'https://ror.org/00thykc36', 'en', 1, 'https://ror.org/00thykc36 American Nurses Credentialing Center'),
(5404, 'https://ror.org/01cacm735', 'en', 1, 'https://ror.org/01cacm735 Fortis Escorts Heart Institute'),
(5405, 'https://ror.org/04qxdaz55', 'no_lang_code', 1, 'https://ror.org/04qxdaz55 Fortis Hospital'),
(5406, 'https://ror.org/03xm3wq50', 'no_lang_code', 1, 'https://ror.org/03xm3wq50 Doctors Company (United States)'),
(5407, 'https://ror.org/05vgb7p23', 'en', 1, 'https://ror.org/05vgb7p23 American Psychiatric Association'),
(5408, 'https://ror.org/052x5ps19', 'en', 1, 'https://ror.org/052x5ps19 Foundation for Applied Molecular Evolution'),
(5409, 'https://ror.org/00gban551', 'en', 1, 'https://ror.org/00gban551 Biomedical Research Foundation of the Academy of Athens'),
(5410, 'https://ror.org/008x12972', 'en', 1, 'https://ror.org/008x12972 American Society for Reproductive Medicine'),
(5411, 'https://ror.org/037mmnn19', 'en', 1, 'https://ror.org/037mmnn19 American Sports Medicine Institute'),
(5412, 'https://ror.org/00174r125', 'en', 1, 'https://ror.org/00174r125 Foundation for Blood Research'),
(5413, 'https://ror.org/03xmkea05', 'en', 1, 'https://ror.org/03xmkea05 Applied Science and Technology Research Institute'),
(5414, 'https://ror.org/044jp1563', 'no_lang_code', 1, 'https://ror.org/044jp1563 Analysis Group (United States)'),
(5415, 'https://ror.org/053f3rt53', 'en', 1, 'https://ror.org/053f3rt53 Favaloro Foundation'),
(5416, 'https://ror.org/035cynm43', 'en', 1, 'https://ror.org/035cynm43 Foundation for Research into Traditional Chinese Medicine'),
(5417, 'https://ror.org/04681ap34', 'en', 1, 'https://ror.org/04681ap34 Indiana Hand to Shoulder Center'),
(5418, 'https://ror.org/02jqpaq24', 'en', 1, 'https://ror.org/02jqpaq24 Centre for Chronic Disease Control'),
(5419, 'https://ror.org/02mp2w060', 'en', 1, 'https://ror.org/02mp2w060 Framingham State University UniversitĆ© d''Ɖtat de framingham'),
(5420, 'https://ror.org/04n7g4f11', 'en', 1, 'https://ror.org/04n7g4f11 Rochester Area Foundation'),
(5421, 'https://ror.org/05vmv8m79', 'en', 1, 'https://ror.org/05vmv8m79 Frankfurt Institute for Advanced Studies'),
(5422, 'https://ror.org/05j1fg548', 'en', 1, 'https://ror.org/05j1fg548 Indiana Hemophilia and Thrombosis Center'),
(5423, 'https://ror.org/030mgn080', 'en', 1, 'https://ror.org/030mgn080 Anderson Orthopaedic Clinic'),
(5424, 'https://ror.org/03qeabs35', 'en', 1, 'https://ror.org/03qeabs35 Anderson Orthopaedic Research Institute'),
(5425, 'https://ror.org/02vsy6m37', 'en', 1, 'https://ror.org/02vsy6m37 Centre for Infectious Disease Research in Zambia'),
(5426, 'https://ror.org/05cg3j211', 'it', 1, 'https://ror.org/05cg3j211 Fondazione Andrea Cesalpino'),
(5427, 'https://ror.org/03dtejd64', 'en', 1, 'https://ror.org/03dtejd64 Fraunhofer USA Center for Molecular Biotechnology'),
(5428, 'https://ror.org/025vn3989', 'no_lang_code', 1, 'https://ror.org/025vn3989 GlaxoSmithKline (United States)'),
(5429, 'https://ror.org/02f09jf04', 'en', 1, 'https://ror.org/02f09jf04 Fertility Medical Group'),
(5430, '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'),
(5431, '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'),
(5432, 'https://ror.org/05szzwt63', 'en', 1, 'https://ror.org/05szzwt63 Industrial Technology Research Institute å·„ę„­ęŠ€č”“ē”ē©¶é™¢'),
(5433, 'https://ror.org/02qhjcg87', 'en', 1, 'https://ror.org/02qhjcg87 Mason Parks & Recreation Foundation'),
(5434, 'https://ror.org/0199g0r92', 'en', 1, 'https://ror.org/0199g0r92 Max Planck Institute for Metabolism Research Max-Planck-Institut für Stoffwechselforschung'),
(5435, 'https://ror.org/042c70y92', 'no_lang_code', 1, 'https://ror.org/042c70y92 Fujimoto Pharmaceutical Corporation (Japan)'),
(5436, 'https://ror.org/03eykgw84', 'no_lang_code', 1, 'https://ror.org/03eykgw84 Fujirebio (Japan) åÆŒå£«ćƒ¬ćƒ“ć‚Ŗę Ŗå¼ä¼šē¤¾'),
(5437, 'https://ror.org/03ydekn03', 'no_lang_code', 1, 'https://ror.org/03ydekn03 Fukui CardioVascular Center åŒ»ē™‚ę³•äŗŗ ē¦äŗ•åæƒč‡“č”€åœ§ć‚»ćƒ³ć‚æćƒ¼ ē¦äŗ•å¾Ŗē’°å™Øē—…é™¢'),
(5438, 'https://ror.org/04zkc6t29', 'en', 1, 'https://ror.org/04zkc6t29 Fukuoka Dental College ē¦å²”ę­Æē§‘å¤§å­¦'),
(5439, 'https://ror.org/039h53162', 'fr', 1, 'https://ror.org/039h53162 Centre hospitalier de Tulle'),
(5440, 'https://ror.org/04v6bh038', 'en', 1, 'https://ror.org/04v6bh038 Fukuoka Industrial Technology Center ē¦å²”ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(5441, 'https://ror.org/00bmxak18', 'en', 1, 'https://ror.org/00bmxak18 Fukuoka Institute of Technology ē¦å²”å·„ę„­å¤§å­¦'),
(5442, 'https://ror.org/02carhc19', 'fr', 1, 'https://ror.org/02carhc19 Centre Hospitalier de Tourcoing'),
(5443, 'https://ror.org/04pr6dn97', 'no_lang_code', 1, 'https://ror.org/04pr6dn97 Arbutus Biopharma (Canada)'),
(5444, 'https://ror.org/045xtrm66', 'en', 1, 'https://ror.org/045xtrm66 American Osteopathic Association'),
(5445, 'https://ror.org/015qy8r18', 'fr', 1, 'https://ror.org/015qy8r18 Centre Hospitalier Intercommunal de Poissy'),
(5446, 'https://ror.org/016brq605', 'de', 1, 'https://ror.org/016brq605 Apherese Forschungsinstitut'),
(5447, 'https://ror.org/01k703c10', 'fr', 1, 'https://ror.org/01k703c10 Centre Hospitalier de l''AgglomƩration de Nevers'),
(5448, 'https://ror.org/01k6b9k02', 'en', 1, 'https://ror.org/01k6b9k02 Fuller Theological Seminary Seminario Teológico Fuller'),
(5449, 'https://ror.org/0488dyp14', 'fr', 1, 'https://ror.org/0488dyp14 Centre Hospitalier de Cannes'),
(5450, 'https://ror.org/04f2ksb75', 'no_lang_code', 1, 'https://ror.org/04f2ksb75 Fundação Estadual de Produção e Pesquisa em Saúde'),
(5451, 'https://ror.org/02pve7657', 'fr', 1, 'https://ror.org/02pve7657 Groupe Hospitalier du Havre'),
(5452, 'https://ror.org/029xxx628', 'en', 1, 'https://ror.org/029xxx628 Aquinas Institute of Theology'),
(5453, 'https://ror.org/0411v1p84', 'no_lang_code', 1, 'https://ror.org/0411v1p84 EstƩe Lauder (United States)'),
(5454, 'https://ror.org/038vngd42', 'fr', 1, 'https://ror.org/038vngd42 Centre Hospitalier Universitaire de Kigali University Teaching Hospital of Kigali'),
(5455, 'https://ror.org/03htsdy94', 'fr', 1, 'https://ror.org/03htsdy94 Centre Hospitalier de la CƓte Basque'),
(5456, 'https://ror.org/03w418j08', 'en', 1, 'https://ror.org/03w418j08 Centre Hospitalier de Libreville Libreville Hospital'),
(5457, 'https://ror.org/00q67qp92', 'es', 1, 'https://ror.org/00q67qp92 Fundación Cardiovascular de Colombia'),
(5458, 'https://ror.org/03f61zm76', 'en', 1, 'https://ror.org/03f61zm76 Det Nationale Forskningscenter for ArbejdsmiljĆø National Research Centre for the Working Environment'),
(5459, 'https://ror.org/01fh9k283', 'es', 1, 'https://ror.org/01fh9k283 Fundación Instituto Valenciano de Oncología'),
(5460, 'https://ror.org/02v4ner66', 'fr', 1, 'https://ror.org/02v4ner66 Centre hospitalier Etterbeek-Ixelles'),
(5461, 'https://ror.org/00gg4aq64', 'fr', 1, 'https://ror.org/00gg4aq64 Centre Hospitalier FrĆØderic-Henri ManhĆØs'),
(5462, 'https://ror.org/03ezapm74', 'es', 1, 'https://ror.org/03ezapm74 Fundación Santa Fe de BogotÔ'),
(5463, 'https://ror.org/04ss3cm03', 'fr', 1, 'https://ror.org/04ss3cm03 Centre Hospitalier Laennec'),
(5464, 'https://ror.org/044bsy795', 'en', 1, 'https://ror.org/044bsy795 Insall Scott Kelly Institute'),
(5465, 'https://ror.org/02dy9y553', 'en', 1, 'https://ror.org/02dy9y553 Amrith Educational and Cultural Society'),
(5466, 'https://ror.org/00tdrjp82', 'en', 1, 'https://ror.org/00tdrjp82 Arizona Heart Institute'),
(5467, 'https://ror.org/02e9za279', 'no_lang_code', 1, 'https://ror.org/02e9za279 Galen Research (United Kingdom)'),
(5468, 'https://ror.org/034kxvk28', 'no_lang_code', 1, 'https://ror.org/034kxvk28 Galderma (France)'),
(5469, 'https://ror.org/053wdqs10', 'fr', 1, 'https://ror.org/053wdqs10 Institut Alfred Fournier'),
(5470, 'https://ror.org/0559h9k50', 'en', 1, 'https://ror.org/0559h9k50 Gatorade Sports Science Institute'),
(5471, 'https://ror.org/02pwnhd33', 'fr', 1, 'https://ror.org/02pwnhd33 Centre Jean Perrin'),
(5472, 'https://ror.org/005t0ps98', 'fr', 1, 'https://ror.org/005t0ps98 Institut Arnault Tzanck'),
(5473, 'https://ror.org/01wyqb997', 'fr', 1, 'https://ror.org/01wyqb997 Centre International de Recherches MƩdicales de Franceville'),
(5474, 'https://ror.org/00g741v42', 'en', 1, 'https://ror.org/00g741v42 Gansu University of Traditional Chinese Medicine ē”˜č‚ƒäø­åŒ»å­¦é™¢'),
(5475, 'https://ror.org/03c24n351', 'en', 1, 'https://ror.org/03c24n351 Armed Forces Institute of Pathology'),
(5476, 'https://ror.org/05e8s8534', 'fr', 1, 'https://ror.org/05e8s8534 Institut Jules Bordet'),
(5477, 'https://ror.org/01tt80y42', 'fr', 1, 'https://ror.org/01tt80y42 HƓpital privƩ Clairval'),
(5478, 'https://ror.org/01zpdb870', 'fr', 1, 'https://ror.org/01zpdb870 Centre MƩdical de Vidy'),
(5479, 'https://ror.org/040dd7568', 'en', 1, 'https://ror.org/040dd7568 Arthritis and Rheumatology Clinics of Kansas'),
(5480, 'https://ror.org/01616eq90', 'en', 1, 'https://ror.org/01616eq90 Gamalei Institute of Epidemiology and Microbiology ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии имени почётного акаГемика Š. Ф. Гамалеи'),
(5481, 'https://ror.org/00x5q3m40', 'fr', 1, 'https://ror.org/00x5q3m40 Institut Calot'),
(5482, 'https://ror.org/03ddan440', 'no_lang_code', 1, 'https://ror.org/03ddan440 Arthur D. Little (United States)'),
(5483, 'https://ror.org/04sg1k490', 'en', 1, 'https://ror.org/04sg1k490 Gabrichevsky Institute of Epidemiology and Microbiology Московский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии им.Š“.Š.Габричевского'),
(5484, 'https://ror.org/014aeyd41', 'no_lang_code', 1, 'https://ror.org/014aeyd41 Asahi Breweries (Japan) ć‚¢ć‚µćƒ’ćƒ“ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(5485, 'https://ror.org/0453c4485', 'fr', 1, 'https://ror.org/0453c4485 Institut Cardiovasculaire Paris Sud'),
(5486, 'https://ror.org/00s9ea398', 'no_lang_code', 1, 'https://ror.org/00s9ea398 Asahi Chemical & Industry (Japan)'),
(5487, 'https://ror.org/0403qcr87', 'en', 1, 'https://ror.org/0403qcr87 Asian Institute of Technology ąøŖąø–ąø²ąøšąø±ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹ąø«ą¹ˆąø‡ą¹€ąø­ą¹€ąøŠąøµąø¢'),
(5488, 'https://ror.org/02wcc5n95', 'en', 1, 'https://ror.org/02wcc5n95 Association of Dutch Burn Centres Vereniging Samenwerkende Brandwondencentra'),
(5489, 'https://ror.org/04w6hwt48', 'en', 1, 'https://ror.org/04w6hwt48 MalariaGEN'),
(5490, 'https://ror.org/04wwrrg31', 'no_lang_code', 1, 'https://ror.org/04wwrrg31 AstraZeneca (Sweden)'),
(5491, 'https://ror.org/043cec594', 'no_lang_code', 1, 'https://ror.org/043cec594 AstraZeneca (United States)'),
(5492, 'https://ror.org/002bnpr17', 'pt', 1, 'https://ror.org/002bnpr17 Fundação de Medicina Tropical'),
(5493, 'https://ror.org/015gdag92', 'en', 1, 'https://ror.org/015gdag92 Atlanta Allergy and Asthma Clinic'),
(5494, 'https://ror.org/04hrjej96', 'en', 1, 'https://ror.org/04hrjej96 Leeds General Infirmary'),
(5495, 'https://ror.org/05addee68', 'no_lang_code', 1, 'https://ror.org/05addee68 General Motors (United States)'),
(5496, 'https://ror.org/041xnf417', 'en', 1, 'https://ror.org/041xnf417 Audubon Nature Institute'),
(5497, 'https://ror.org/01ddmwy83', 'fr', 1, 'https://ror.org/01ddmwy83 Centre Ophtalmologique d''Imagerie et de Laser'),
(5498, 'https://ror.org/01c20ew23', 'en', 1, 'https://ror.org/01c20ew23 Genetics and IVF Institute'),
(5499, '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'),
(5500, 'https://ror.org/005fx5296', 'en', 1, 'https://ror.org/005fx5296 Austen Riggs Center'),
(5501, 'https://ror.org/00k20np13', 'en', 1, 'https://ror.org/00k20np13 Austin Diagnostic Clinic'),
(5502, 'https://ror.org/03gpw5a44', 'fr', 1, 'https://ror.org/03gpw5a44 Centre OrthopƩdique Santy'),
(5503, 'https://ror.org/03sqbp894', 'no_lang_code', 1, 'https://ror.org/03sqbp894 GlaxoSmithKline (Switzerland)'),
(5504, 'https://ror.org/00bewwj71', 'no_lang_code', 1, 'https://ror.org/00bewwj71 Cooperative Resources International (United States)'),
(5505, 'https://ror.org/017136v53', 'en', 1, 'https://ror.org/017136v53 Genomics Institute of the Novartis Research Foundation'),
(5506, 'https://ror.org/02ydc1657', 'it', 1, 'https://ror.org/02ydc1657 Gruppo di Ricerca Geriatrica'),
(5507, 'https://ror.org/01bzgdw81', 'en', 1, 'https://ror.org/01bzgdw81 Indian Agricultural Research Institute ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µąÆ‡ą®³ą®¾ą®£ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(5508, 'https://ror.org/03x3mpp61', 'en', 1, 'https://ror.org/03x3mpp61 Indian Grassland and Fodder Research Institute'),
(5509, 'https://ror.org/0599dmq43', 'en', 1, 'https://ror.org/0599dmq43 Indian Institute of Spices Research'),
(5510, 'https://ror.org/058xvac60', 'en', 1, 'https://ror.org/058xvac60 Baltimore Washington Center for Psychoanalysis'),
(5511, 'https://ror.org/031yk2194', 'en', 1, 'https://ror.org/031yk2194 Bangur Institute of Neurosciences'),
(5512, 'https://ror.org/0263jp665', 'fr', 1, 'https://ror.org/0263jp665 HƓpital RenƩ Huguenin'),
(5513, 'https://ror.org/05y9zzm67', 'en', 1, 'https://ror.org/05y9zzm67 Henri Gastaut Hospital'),
(5514, 'https://ror.org/01sj8qf84', 'en', 1, 'https://ror.org/01sj8qf84 SecrƩtariat du Conseil du TrƩsor du Canada Treasury Board of Canada Secretariat'),
(5515, 'https://ror.org/0010c1z81', 'de', 1, 'https://ror.org/0010c1z81 Deutsche Klinik für Diagnostik'),
(5516, 'https://ror.org/0292awh62', 'no_lang_code', 1, 'https://ror.org/0292awh62 Merck (Japan) ćƒ”ćƒ«ć‚Æ'),
(5517, 'https://ror.org/00v47pv90', 'en', 1, 'https://ror.org/00v47pv90 Baptist Health South Florida'),
(5518, 'https://ror.org/02f99v835', 'en', 1, 'https://ror.org/02f99v835 Deutsches Primatenzentrum German Primate Center'),
(5519, 'https://ror.org/00shv0x82', 'en', 1, 'https://ror.org/00shv0x82 Deutsches Rheuma-Forschungszentrum Berlin German Rheumatism Research Centre'),
(5520, 'https://ror.org/026vpvt76', 'no_lang_code', 1, 'https://ror.org/026vpvt76 Geron (United States)'),
(5521, 'https://ror.org/00s2dqx11', 'en', 1, 'https://ror.org/00s2dqx11 Indian Institute of Horticultural Research'),
(5522, 'https://ror.org/02d4smc03', 'en', 1, 'https://ror.org/02d4smc03 GF Strong Rehabilitation Centre'),
(5523, 'https://ror.org/01zw2nq07', 'en', 1, 'https://ror.org/01zw2nq07 Indian Institute of Integrative Medicine'),
(5524, 'https://ror.org/020d9fy55', 'en', 1, 'https://ror.org/020d9fy55 Gimbel Eye Centre'),
(5525, 'https://ror.org/006pq9r08', 'it', 1, 'https://ror.org/006pq9r08 Centro Cardiologico Monzino'),
(5526, 'https://ror.org/05tacab76', 'en', 1, 'https://ror.org/05tacab76 Bath Institute for Rheumatic Diseases'),
(5527, 'https://ror.org/02d6ew870', 'no_lang_code', 1, 'https://ror.org/02d6ew870 Baxter (United States)'),
(5528, 'https://ror.org/002yzpx87', 'no_lang_code', 1, 'https://ror.org/002yzpx87 BASF (United States)'),
(5529, 'https://ror.org/00t8xfq63', 'es', 1, 'https://ror.org/00t8xfq63 Center for Scientific Studies Centro de Estudios CientĆ­ficos'),
(5530, 'https://ror.org/027akq961', 'fr', 1, 'https://ror.org/027akq961 Institut de la Main'),
(5531, 'https://ror.org/023xsn018', 'it', 1, 'https://ror.org/023xsn018 Casa di Cura Columbus');
INSERT INTO `rors` VALUES
(5532, 'https://ror.org/02ntheh91', 'es', 1, 'https://ror.org/02ntheh91 Instituto Venezolano de Investigaciones CientĆ­ficas'),
(5533, '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'),
(5534, 'https://ror.org/03px2kh57', 'fr', 1, 'https://ror.org/03px2kh57 Institut de MƩdecine Tropicale du Service de SantƩ des ArmƩes'),
(5535, 'https://ror.org/03q94pb14', 'no_lang_code', 1, 'https://ror.org/03q94pb14 Beckham Company (United States)'),
(5536, 'https://ror.org/03bz9t645', 'en', 1, 'https://ror.org/03bz9t645 Bedford Institute of Oceanography'),
(5537, 'https://ror.org/04xfypm71', 'no_lang_code', 1, 'https://ror.org/04xfypm71 Aptuit (Italy)'),
(5538, 'https://ror.org/05xr0q537', 'es', 1, 'https://ror.org/05xr0q537 ClĆ­nica Ruiz'),
(5539, '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'),
(5540, 'https://ror.org/020cs8b78', 'en', 1, 'https://ror.org/020cs8b78 Global Hospitals'),
(5541, 'https://ror.org/02g726t95', 'en', 1, 'https://ror.org/02g726t95 Global Neuroscience Initiative Foundation'),
(5542, 'https://ror.org/058dc0w16', 'en', 1, 'https://ror.org/058dc0w16 Beijing Center for Disease Prevention and Control åŒ—äŗ¬åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(5543, 'https://ror.org/05ct4fn38', 'en', 1, 'https://ror.org/05ct4fn38 Beijing Academy of Science and Technology åŒ—äŗ¬åø‚ē”µåŠ å·„ē ”ē©¶ę‰€'),
(5544, 'https://ror.org/05cjk9k86', 'pt', 1, 'https://ror.org/05cjk9k86 Fundação Pró-Sangue Hemocentro de São Paulo'),
(5545, 'https://ror.org/02ed5f444', 'no_lang_code', 1, 'https://ror.org/02ed5f444 Ligand Pharmaceuticals (United States)'),
(5546, 'https://ror.org/032hvdr57', 'en', 1, 'https://ror.org/032hvdr57 Gordon-Conwell Theological Seminary'),
(5547, 'https://ror.org/03ycpex79', 'en', 1, 'https://ror.org/03ycpex79 Beijing Red Cross Blood Center'),
(5548, 'https://ror.org/03w6pea42', 'en', 1, 'https://ror.org/03w6pea42 National Dental Centre of Singapore'),
(5549, 'https://ror.org/05an61k54', 'en', 1, 'https://ror.org/05an61k54 Bellin College'),
(5550, 'https://ror.org/028qd3f30', 'en', 1, 'https://ror.org/028qd3f30 Government Dental College & Research Institute'),
(5551, 'https://ror.org/02jf59571', 'en', 1, 'https://ror.org/02jf59571 Benaki Phytopathological Institute ĪœĻ€ĪµĪ½Ī¬ĪŗĪµĪ¹Īæ Ī¦Ļ…Ļ„ĪæĻ€Ī±ĪøĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ'),
(5552, 'https://ror.org/00nm4jw86', 'en', 1, 'https://ror.org/00nm4jw86 Benjamin Rose Institute on Aging'),
(5553, 'https://ror.org/0449h4696', 'en', 1, 'https://ror.org/0449h4696 Graduate School Neurosciences Amsterdam Rotterdam'),
(5554, 'https://ror.org/04jbmee34', 'en', 1, 'https://ror.org/04jbmee34 Graham International Implant Institute'),
(5555, 'https://ror.org/012mfbs12', 'en', 1, 'https://ror.org/012mfbs12 Bethel College'),
(5556, 'https://ror.org/01amarv06', 'en', 1, 'https://ror.org/01amarv06 v. Bodelschwing Foundation Bethel v. Bodelschwinghsche Stiftungen Bethel'),
(5557, 'https://ror.org/04hzvka15', 'en', 1, 'https://ror.org/04hzvka15 Barraquer Opthalmology Center Clínica Oftalmológica Barraquer'),
(5558, 'https://ror.org/04jpa5e08', 'en', 1, 'https://ror.org/04jpa5e08 TriHealth'),
(5559, 'https://ror.org/05w6wfp17', 'en', 1, 'https://ror.org/05w6wfp17 Bhabha Atomic Research Centre Centre de recherche atomique de bhabha भाभा ą¤…ą¤£ą„ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° भाभा ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤° பாபா அணு ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ąÆˆą®Æą®®ąÆ ಭಾಭಾ ಅಣು ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²° ą“­ą“¾ą“­ą“¾ ą“†ą“£ą“µ ą“—ą“µąµ‡ą“·ą“£ ą“•ąµ‡ą“Øąµą“¦ąµą“°ą“‚'),
(5560, 'https://ror.org/0535c3537', 'no_lang_code', 1, 'https://ror.org/0535c3537 Mitsubishi Chemical Holdings Mitsubishi Chemical Holdings (Japan) ę Ŗå¼ä¼šē¤¾äø‰č±ć‚±ćƒŸć‚«ćƒ«ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(5561, 'https://ror.org/03p64mj41', 'en', 1, 'https://ror.org/03p64mj41 Greenwood Genetic Center'),
(5562, 'https://ror.org/022m8zh32', 'en', 1, 'https://ror.org/022m8zh32 Grewal Eye Institute'),
(5563, 'https://ror.org/02xfnnq52', 'no_lang_code', 1, 'https://ror.org/02xfnnq52 Bio Products Laboratory (United Kingdom)'),
(5564, 'https://ror.org/036w5wx69', 'en', 1, 'https://ror.org/036w5wx69 Bio Behavioral Institute'),
(5565, 'https://ror.org/03n2bnb89', 'es', 1, 'https://ror.org/03n2bnb89 Hospital Intermutual de Levante'),
(5566, 'https://ror.org/04kbvxz10', 'en', 1, 'https://ror.org/04kbvxz10 Biocor Institute Biocor Instituto'),
(5567, 'https://ror.org/000x99506', 'no_lang_code', 1, 'https://ror.org/000x99506 Biodynamic Research Corporation (United States)'),
(5568, 'https://ror.org/03ks1vk59', 'it', 1, 'https://ror.org/03ks1vk59 Centro di Riferimento Oncologico'),
(5569, 'https://ror.org/00n6jcj93', 'it', 1, 'https://ror.org/00n6jcj93 Centro di Riferimento Oncologico della Basilicata'),
(5570, 'https://ror.org/00ay43505', 'fr', 1, 'https://ror.org/00ay43505 Institut de Virologie'),
(5571, 'https://ror.org/03bhap014', 'it', 1, 'https://ror.org/03bhap014 Centro Diagnostico Italiano'),
(5572, 'https://ror.org/047a9ch09', 'en', 1, 'https://ror.org/047a9ch09 Guangxi Center for Disease Prevention and Control å¹æč„æå£®ę—č‡Ŗę²»åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(5573, 'https://ror.org/036ypft38', 'pt', 1, 'https://ror.org/036ypft38 Centro Hospitalar de Lisboa Ocidental'),
(5574, 'https://ror.org/042jpy919', 'pt', 1, 'https://ror.org/042jpy919 Centro Hospitalar de Vila Nova de Gaia'),
(5575, 'https://ror.org/03eh6tj73', 'en', 1, 'https://ror.org/03eh6tj73 Guangxi Veterinary Research Institute'),
(5576, 'https://ror.org/019fkcf66', 'en', 1, 'https://ror.org/019fkcf66 Guangzhou Blood Center'),
(5577, 'https://ror.org/02aj0wy64', 'es', 1, 'https://ror.org/02aj0wy64 Centro Hospitalario Pereira Rossell Hospital Pereira Rossell'),
(5578, 'https://ror.org/037c0br92', 'en', 1, 'https://ror.org/037c0br92 Guangzhou Institute of Dermatology'),
(5579, 'https://ror.org/037403209', 'en', 1, 'https://ror.org/037403209 Gunma Prefectural Cardiovascular Center ē¾¤é¦¬ēœŒē«‹åæƒč‡“č”€ē®”ć‚»ćƒ³ć‚æćƒ¼'),
(5580, 'https://ror.org/00rpbf348', 'no_lang_code', 1, 'https://ror.org/00rpbf348 Guru Nanak Eye Centre'),
(5581, 'https://ror.org/03yr0pg70', 'en', 1, 'https://ror.org/03yr0pg70 Biomedical Research Institute'),
(5582, 'https://ror.org/03tmy2526', 'en', 1, 'https://ror.org/03tmy2526 Gundersen Lutheran Hospital'),
(5583, 'https://ror.org/0077s8c55', 'en', 1, 'https://ror.org/0077s8c55 Gyeongsangnam-do Agricultural Research and Extension Services ź²½ģƒė‚Øė„ė†ģ—…źø°ģˆ ģ›'),
(5584, 'https://ror.org/030qq9y73', 'en', 1, 'https://ror.org/030qq9y73 Hachinohe National College of Technology å…«ęˆøå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ” 庶務課'),
(5585, 'https://ror.org/04t8qjg16', 'en', 1, 'https://ror.org/04t8qjg16 Central Drug Research Institute ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ औषधि ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą°•ą±‡ą°‚ą°¦ą±ą°°ą±€ą°Æ ఔషధ పరిశోధనా ą°øą°‚ą°øą±ą°„'),
(5586, 'https://ror.org/039d1mp60', 'en', 1, 'https://ror.org/039d1mp60 Central Glass and Ceramic Research Institute'),
(5587, 'https://ror.org/03v08em34', 'en', 1, 'https://ror.org/03v08em34 Maaruti College of Dental sciences & Research Center'),
(5588, 'https://ror.org/02kp7p620', 'en', 1, 'https://ror.org/02kp7p620 Central Leather Research Institute'),
(5589, 'https://ror.org/019nmf858', 'en', 1, 'https://ror.org/019nmf858 Central Potato Research Institute'),
(5590, 'https://ror.org/029zb5621', 'en', 1, 'https://ror.org/029zb5621 Central Rice Research Institute'),
(5591, 'https://ror.org/04ry4r880', 'en', 1, 'https://ror.org/04ry4r880 Central Tuber Crops Research Institute'),
(5592, 'https://ror.org/0347fy350', 'en', 1, 'https://ror.org/0347fy350 Rothamsted Research'),
(5593, 'https://ror.org/01e8tvg28', 'it', 1, 'https://ror.org/01e8tvg28 Fondazione Salvatore Maugeri'),
(5594, 'https://ror.org/00geypp27', 'no_lang_code', 1, 'https://ror.org/00geypp27 Novartis (France)'),
(5595, 'https://ror.org/0160cnc74', 'no_lang_code', 1, 'https://ror.org/0160cnc74 BioSci Research Canada (Canada)'),
(5596, 'https://ror.org/004vn8r55', 'es', 1, 'https://ror.org/004vn8r55 Centro MƩdico Nacional La Raza'),
(5597, 'https://ror.org/00epxwq78', 'en', 1, 'https://ror.org/00epxwq78 Hamilton Regional Laboratory Medicine Program'),
(5598, 'https://ror.org/02zepah98', 'en', 1, 'https://ror.org/02zepah98 Hand and Wrist Center of Houston'),
(5599, 'https://ror.org/02vz80y09', 'es', 1, 'https://ror.org/02vz80y09 Centro Medico Nacional Siglo XXI'),
(5600, 'https://ror.org/01vp49361', 'no_lang_code', 1, 'https://ror.org/01vp49361 Merck Serono (Switzerland)'),
(5601, 'https://ror.org/01fbde567', 'en', 1, 'https://ror.org/01fbde567 Max Planck Institute of Molecular Plant Physiology Max-Planck-Institut für molekulare Pflanzenphysiologie'),
(5602, 'https://ror.org/05261sq16', 'en', 1, 'https://ror.org/05261sq16 Royal Blackburn Teaching Hospital'),
(5603, 'https://ror.org/01bnjyq25', 'de', 1, 'https://ror.org/01bnjyq25 GP Forschungsgruppe Instituts für Grundlagen und Programmforschung'),
(5604, 'https://ror.org/01ag7n936', 'es', 1, 'https://ror.org/01ag7n936 Centro Rosarino de Estudios Perinatales'),
(5605, 'https://ror.org/03vk8p158', 'en', 1, 'https://ror.org/03vk8p158 Block Center'),
(5606, 'https://ror.org/001s05659', 'en', 1, 'https://ror.org/001s05659 Blood Transfusion Centre of Slovenia'),
(5607, 'https://ror.org/00b0jfb70', 'no_lang_code', 1, 'https://ror.org/00b0jfb70 BM-Science'),
(5608, 'https://ror.org/0288qta63', 'en', 1, 'https://ror.org/0288qta63 Hartwick College'),
(5609, 'https://ror.org/005m2at17', 'en', 1, 'https://ror.org/005m2at17 Harvard Affiliated Emergency Medicine Residency'),
(5610, 'https://ror.org/05kffp613', 'no_lang_code', 1, 'https://ror.org/05kffp613 Boehringer Ingelheim (United States)'),
(5611, 'https://ror.org/05q1wf970', 'en', 1, 'https://ror.org/05q1wf970 Bogolyubov Institute for Theoretical Physics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретичної фізики ім. М.М. Š‘Š¾Š³Š¾Š»ŃŽŠ±Š¾Š²Š°'),
(5612, 'https://ror.org/02ys1c285', 'en', 1, 'https://ror.org/02ys1c285 Development Center for Biotechnology'),
(5613, 'https://ror.org/012c7gx93', 'no_lang_code', 1, 'https://ror.org/012c7gx93 Cerner (United States)'),
(5614, 'https://ror.org/01z8hbn82', 'en', 1, 'https://ror.org/01z8hbn82 Diabetes & Glandular Disease Clinic'),
(5615, 'https://ror.org/02m15g174', 'en', 1, 'https://ror.org/02m15g174 Diabetes Care Center'),
(5616, 'https://ror.org/00kftxm09', 'en', 1, 'https://ror.org/00kftxm09 Boreskov Institute of Catalysis Institute of Catalysis Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ катализа им. Š“.К. Борескова Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(5617, 'https://ror.org/05r8vsn81', 'en', 1, 'https://ror.org/05r8vsn81 Borgess Health'),
(5618, 'https://ror.org/02hy8r734', 'en', 1, 'https://ror.org/02hy8r734 Clinical Trial Investigators'),
(5619, 'https://ror.org/05ds0kz06', 'en', 1, 'https://ror.org/05ds0kz06 Boston Psychoanalytic Society and Institute'),
(5620, 'https://ror.org/002feag21', 'en', 1, 'https://ror.org/002feag21 Bostwick Laboratories'),
(5621, 'https://ror.org/02pmr4c75', 'en', 1, 'https://ror.org/02pmr4c75 Hastings Center'),
(5622, 'https://ror.org/05fhv2c54', 'en', 1, 'https://ror.org/05fhv2c54 Charitable Infirmary'),
(5623, 'https://ror.org/04qg15997', 'en', 1, 'https://ror.org/04qg15997 Bourn Hall Clinic'),
(5624, 'https://ror.org/005dyph89', 'en', 1, 'https://ror.org/005dyph89 Hawaii Agriculture Research Center'),
(5625, 'https://ror.org/01pw42d50', 'en', 1, 'https://ror.org/01pw42d50 Boxer Wachler Vision Institute'),
(5626, 'https://ror.org/01dk89r22', 'en', 1, 'https://ror.org/01dk89r22 City Colleges of Chicago Colegios Comunitarios de Chicago'),
(5627, 'https://ror.org/03vpj4s62', 'en', 1, 'https://ror.org/03vpj4s62 Max Planck Institute of Molecular Physiology Max-Planck-Institut für Molekulare Physiologie'),
(5628, 'https://ror.org/01v9kvt79', 'no_lang_code', 1, 'https://ror.org/01v9kvt79 Bracco (Switzerland)'),
(5629, 'https://ror.org/01rvpy991', 'no_lang_code', 1, 'https://ror.org/01rvpy991 Hayashibara (Japan) ę Ŗå¼ä¼šē¤¾ ęž—åŽŸ'),
(5630, 'https://ror.org/01ck0pr88', 'en', 1, 'https://ror.org/01ck0pr88 Bradford Royal Infirmary'),
(5631, 'https://ror.org/05qjz5228', 'fr', 1, 'https://ror.org/05qjz5228 Institut Jean Godinot'),
(5632, 'https://ror.org/05gekvn04', 'en', 1, 'https://ror.org/05gekvn04 Bradford Teaching Hospitals NHS Foundation Trust'),
(5633, 'https://ror.org/055sg7x74', 'en', 1, 'https://ror.org/055sg7x74 Headache Care Center'),
(5634, 'https://ror.org/03azk3n24', 'en', 1, 'https://ror.org/03azk3n24 Headache Wellness Center'),
(5635, 'https://ror.org/03be69002', 'en', 1, 'https://ror.org/03be69002 Finnish Brain Research and Rehabilitation Center Neuron'),
(5636, 'https://ror.org/02wndzd81', 'en', 1, 'https://ror.org/02wndzd81 Heart and Diabetes Center North Rhine-Westphalia Herz- und Diabeteszentrum Nordrhein-Westfalen'),
(5637, 'https://ror.org/04qwgkn39', 'es', 1, 'https://ror.org/04qwgkn39 Institut Kaplan'),
(5638, 'https://ror.org/00wg9xe54', 'en', 1, 'https://ror.org/00wg9xe54 Chemical Diversity Research Institute Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Єимического Š Š°Š·Š½Š¾Š¾Š±Ń€Š°Š·ŠøŃ'),
(5639, 'https://ror.org/008egzn26', 'pt', 1, 'https://ror.org/008egzn26 Centro Brasileiro de Estudos em Dermatologia'),
(5640, 'https://ror.org/007pyhw16', 'en', 1, 'https://ror.org/007pyhw16 Diamond Headache Clinic'),
(5641, 'https://ror.org/02s61y919', 'en', 1, 'https://ror.org/02s61y919 Valley Breast Care & Woman''s Health Center'),
(5642, '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'),
(5643, 'https://ror.org/04fjkxc67', 'de', 1, 'https://ror.org/04fjkxc67 Helios Kliniken'),
(5644, 'https://ror.org/025tz0x98', 'en', 1, 'https://ror.org/025tz0x98 Heart Clinic of Louisiana'),
(5645, 'https://ror.org/02trgd202', 'ca', 1, 'https://ror.org/02trgd202 Institut Municipal d''AssistĆØncia SanitĆ ria'),
(5646, 'https://ror.org/02dw95q60', 'en', 1, 'https://ror.org/02dw95q60 New York Heart Research Foundation'),
(5647, 'https://ror.org/03pghek18', 'en', 1, 'https://ror.org/03pghek18 Bristol Institute for Transfusion Sciences'),
(5648, 'https://ror.org/01ptsgx95', 'fr', 1, 'https://ror.org/01ptsgx95 Institut National d''HygiĆØne du Maroc'),
(5649, 'https://ror.org/04xmnzw38', 'de', 1, 'https://ror.org/04xmnzw38 Chemotherapeutisches Forschungsinstitut Georg-Speyer-Haus Georg Speyer Haus'),
(5650, 'https://ror.org/04dbmrm19', 'no_lang_code', 1, 'https://ror.org/04dbmrm19 Bristol-Myers Squibb (Japan) ćƒ–ćƒŖć‚¹ćƒˆćƒ«ćƒ»ćƒžć‚¤ćƒ¤ćƒ¼ć‚ŗ ć‚¹ć‚Æć‚¤ćƒ–'),
(5651, 'https://ror.org/044cqax96', 'no_lang_code', 1, 'https://ror.org/044cqax96 Helicos Biosciences (United States)'),
(5652, 'https://ror.org/03etg4523', 'no_lang_code', 1, 'https://ror.org/03etg4523 Teva Pharmaceuticals (United States)'),
(5653, 'https://ror.org/03rezj286', 'en', 1, 'https://ror.org/03rezj286 Chemical Pharmaceutical Research Institute'),
(5654, 'https://ror.org/02120t614', 'en', 1, 'https://ror.org/02120t614 Chiba Cancer Center åƒč‘‰ēœŒćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(5655, 'https://ror.org/02p7sht55', 'en', 1, 'https://ror.org/02p7sht55 National Vital Statistics System'),
(5656, 'https://ror.org/02w7azg93', 'no_lang_code', 1, 'https://ror.org/02w7azg93 Chiba Cerebral and Cardiovascular Center åƒč‘‰ēœŒč„³č”€ē®”ć‚»ćƒ³ć‚æ'),
(5657, 'https://ror.org/022mrwt29', 'en', 1, 'https://ror.org/022mrwt29 Tzu Chi Foundation'),
(5658, 'https://ror.org/03e5eem51', 'en', 1, 'https://ror.org/03e5eem51 Budker Institute of Nuclear Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ физики'),
(5659, 'https://ror.org/055t7f808', 'en', 1, 'https://ror.org/055t7f808 Hellenic Center for Disease Control & Prevention'),
(5660, 'https://ror.org/0154zm466', 'da', 1, 'https://ror.org/0154zm466 BĆørneklinikken Randers'),
(5661, 'https://ror.org/01479r334', 'en', 1, 'https://ror.org/01479r334 Henan Provincial Center for Disease Control and Prevention ę²³å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(5662, 'https://ror.org/02y0wmd59', 'en', 1, 'https://ror.org/02y0wmd59 Children''s Heart Center Nevada'),
(5663, 'https://ror.org/03vypx625', 'en', 1, 'https://ror.org/03vypx625 Burton Hospitals NHS Foundation Trust'),
(5664, 'https://ror.org/03sgtek58', 'en', 1, 'https://ror.org/03sgtek58 China Institute of Sport Science 国家体育总局体育科学研究所'),
(5665, 'https://ror.org/03sfb9j07', 'en', 1, 'https://ror.org/03sfb9j07 China University of Science and Technology äø­čÆē§‘ęŠ€å¤§å­ø'),
(5666, 'https://ror.org/019wssg97', 'no_lang_code', 1, 'https://ror.org/019wssg97 Altana (Germany)'),
(5667, 'https://ror.org/02fz4s018', 'en', 1, 'https://ror.org/02fz4s018 Heritage Foundation'),
(5668, 'https://ror.org/00dxv3745', 'en', 1, 'https://ror.org/00dxv3745 Hernia Center'),
(5669, 'https://ror.org/04hn9xh52', 'no_lang_code', 1, 'https://ror.org/04hn9xh52 Bionova Holding Corporation (United States)'),
(5670, 'https://ror.org/02bpqmq41', 'en', 1, 'https://ror.org/02bpqmq41 China Rehabilitation Research Center'),
(5671, 'https://ror.org/03jt74a36', 'en', 1, 'https://ror.org/03jt74a36 China Institute of Veterinary Drug Control äø­å›½å…½åŒ»čÆå“ē›‘åÆŸę‰€'),
(5672, 'https://ror.org/00kpnax84', 'no_lang_code', 1, 'https://ror.org/00kpnax84 Heska (United States)'),
(5673, 'https://ror.org/02t1t6n83', 'en', 1, 'https://ror.org/02t1t6n83 Burdenko Neurosurgery Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ автономное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø имени акаГемика Š.Š. Š‘ŃƒŃ€Š“ŠµŠ½ŠŗŠ¾ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(5674, 'https://ror.org/03fag5224', 'en', 1, 'https://ror.org/03fag5224 West Bengal University of Health Sciences ą¤Ŗą¤¶ą„ą¤šą¤æą¤® बंगाल ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦øą§ą¦¬ą¦¾ą¦øą§ą¦„ą§ą¦Æą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(5675, 'https://ror.org/059rn9488', 'no_lang_code', 1, 'https://ror.org/059rn9488 Hewlett-Packard (United States)'),
(5676, 'https://ror.org/00g6ztp19', 'en', 1, 'https://ror.org/00g6ztp19 Calgary Laboratory Services'),
(5677, 'https://ror.org/01y8myk27', 'en', 1, 'https://ror.org/01y8myk27 Dominican College of Blauvelt'),
(5678, 'https://ror.org/0108cpj15', 'en', 1, 'https://ror.org/0108cpj15 High Institute for Education and Research in Transfusion Medicine Ł…ŁˆŲ³Ų³Ł‡ Ų¹Ų§Ł„ŪŒ Ų¢Ł…ŁˆŲ²Ų“ŪŒ و Ł¾Ś˜ŁˆŁ‡Ų“ŪŒ Ų·ŲØ انتقال Ų®ŁˆŁ†'),
(5679, 'https://ror.org/00j83wy46', 'no_lang_code', 1, 'https://ror.org/00j83wy46 Monsanto (United States)'),
(5680, 'https://ror.org/033m8b439', 'en', 1, 'https://ror.org/033m8b439 California Institute for Regenerative Medicine'),
(5681, 'https://ror.org/00vj57q03', 'en', 1, 'https://ror.org/00vj57q03 California Western School of Law'),
(5682, 'https://ror.org/02gwxj243', 'no_lang_code', 1, 'https://ror.org/02gwxj243 bioMƩrieux (United States)'),
(5683, 'https://ror.org/04j9w6p53', 'en', 1, 'https://ror.org/04j9w6p53 Thrombosis and Atherosclerosis Research Institute'),
(5684, 'https://ror.org/02e3ssq97', 'en', 1, 'https://ror.org/02e3ssq97 Don Carlo Gnocchi Foundation'),
(5685, 'https://ror.org/01wq93z70', 'en', 1, 'https://ror.org/01wq93z70 Chinese National Human Genome Center'),
(5686, 'https://ror.org/04x4v8p40', 'no_lang_code', 1, 'https://ror.org/04x4v8p40 Pfizer (United Kingdom)'),
(5687, 'https://ror.org/05pm71w80', 'no_lang_code', 1, 'https://ror.org/05pm71w80 Pfizer (Japan) ćƒ•ć‚”ć‚¤ć‚¶'),
(5688, 'https://ror.org/00x0e3e82', 'fr', 1, 'https://ror.org/00x0e3e82 Institut RƩgional de MƩdecine Physique et de RƩadaptation'),
(5689, 'https://ror.org/037xccs34', 'en', 1, 'https://ror.org/037xccs34 Chitose Institute of Science and Technology åƒę­³ē§‘å­¦ęŠ€č”“å¤§å­¦'),
(5690, 'https://ror.org/05tvanj47', 'fr', 1, 'https://ror.org/05tvanj47 Institut Louis MalardƩ'),
(5691, 'https://ror.org/03rharq04', 'en', 1, 'https://ror.org/03rharq04 Rath Research Institute'),
(5692, 'https://ror.org/03e04g978', 'en', 1, 'https://ror.org/03e04g978 Tanzania Commission for Science and Technology Tume ya Sayansi na Teknolojia Tanzania'),
(5693, 'https://ror.org/0353yar19', 'en', 1, 'https://ror.org/0353yar19 Dr. Daneshbod Labratory'),
(5694, 'https://ror.org/02vbwbd19', 'en', 1, 'https://ror.org/02vbwbd19 Campbell Clinic'),
(5695, 'https://ror.org/03pjwtr87', 'en', 1, 'https://ror.org/03pjwtr87 Canadian College of Naturopathic Medicine'),
(5696, 'https://ror.org/004g7tk16', 'en', 1, 'https://ror.org/004g7tk16 Canadian Fitness and Lifestyle Research Institute'),
(5697, 'https://ror.org/03jfagf20', 'en', 1, 'https://ror.org/03jfagf20 Canadian Memorial Chiropractic College'),
(5698, 'https://ror.org/013aq5m10', 'en', 1, 'https://ror.org/013aq5m10 Dubai Pharmacy College ŁƒŁ„ŁŠŲ© دبي Ł„Ł„ŲµŁŠŲÆŁ„Ų©'),
(5699, 'https://ror.org/05m25pj04', 'sr', 1, 'https://ror.org/05m25pj04 Institut za zdravstvenu zaŔtitu dece i omladine Vojvodine'),
(5700, 'https://ror.org/00nb6mq69', 'en', 1, 'https://ror.org/00nb6mq69 Chulabhorn Research Institute ąøŖąø–ąø²ąøšąø±ąø™ąø§ąø“ąøˆąø±ąø¢ąøˆąøøąø¬ąø²ąø ąø£ąø“ą¹Œ'),
(5701, 'https://ror.org/05695qy17', 'pl', 1, 'https://ror.org/05695qy17 Instytut Farmaceutyczny'),
(5702, 'https://ror.org/01k1ftz35', 'no_lang_code', 1, 'https://ror.org/01k1ftz35 Novartis (Japan) ćƒŽćƒćƒ«ćƒ†ć‚£ć‚¹ ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(5703, 'https://ror.org/00bzsst90', 'en', 1, 'https://ror.org/00bzsst90 Institute for Advanced Studies in Basic Sciences مرکز ŲŖŲ­ŲµŪŒŁ„Ų§ŲŖ ŲŖŚ©Ł…ŪŒŁ„ŪŒ ŲÆŲ± Ų¹Ł„ŁˆŁ… Ł¾Ų§ŪŒŁ‡ زنجان'),
(5704, 'https://ror.org/05f705338', 'no_lang_code', 1, 'https://ror.org/05f705338 PharmIdeas (Canada)'),
(5705, 'https://ror.org/01wfg6h04', 'en', 1, 'https://ror.org/01wfg6h04 Pharmo Institute'),
(5706, 'https://ror.org/05cjt1n05', 'nl', 1, 'https://ror.org/05cjt1n05 Instituut voor Landbouw en Visserijonderzoek'),
(5707, 'https://ror.org/039s6n838', 'no_lang_code', 1, 'https://ror.org/039s6n838 Novartis (United Kingdom)'),
(5708, 'https://ror.org/02hh2th82', 'en', 1, 'https://ror.org/02hh2th82 Dumfries and Galloway Royal Infirmary'),
(5709, 'https://ror.org/02zhwmh74', 'en', 1, 'https://ror.org/02zhwmh74 Cincinnati Eye Institute'),
(5710, 'https://ror.org/01ayagd95', 'no_lang_code', 1, 'https://ror.org/01ayagd95 Alternative Futures Associates'),
(5711, 'https://ror.org/03gcg7j68', 'en', 1, 'https://ror.org/03gcg7j68 Cincinnati Sportsmedicine and Orthopaedic Center'),
(5712, 'https://ror.org/02nrhnf93', 'en', 1, 'https://ror.org/02nrhnf93 City Eye Centre'),
(5713, 'https://ror.org/01vmvt909', 'en', 1, 'https://ror.org/01vmvt909 National Migraine Centre'),
(5714, 'https://ror.org/000apqb71', 'en', 1, 'https://ror.org/000apqb71 Philadelphia Fire Department'),
(5715, 'https://ror.org/022jdjx35', 'no_lang_code', 1, 'https://ror.org/022jdjx35 Philip Morris International (Germany)'),
(5716, 'https://ror.org/05san5604', 'no_lang_code', 1, 'https://ror.org/05san5604 Philips (Germany)'),
(5717, 'https://ror.org/03g7wzf21', 'no_lang_code', 1, 'https://ror.org/03g7wzf21 Emergent BioSolutions (Canada)'),
(5718, 'https://ror.org/01tyr1g37', 'en', 1, 'https://ror.org/01tyr1g37 Institute for Biological Instrumentation Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологического ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ Š ŠŠ'),
(5719, 'https://ror.org/05gcq4j10', 'en', 1, 'https://ror.org/05gcq4j10 Clatterbridge Cancer Centre NHS Foundation Trust'),
(5720, 'https://ror.org/02qbhr955', 'ro', 1, 'https://ror.org/02qbhr955 Institutul Cantacuzino'),
(5721, 'https://ror.org/00t7c0489', 'en', 1, 'https://ror.org/00t7c0489 Institute for Biological Sciences'),
(5722, 'https://ror.org/0155k7414', 'en', 1, 'https://ror.org/0155k7414 Cleveland Clinic Florida'),
(5723, 'https://ror.org/01btmdt42', 'no_lang_code', 1, 'https://ror.org/01btmdt42 Dynavax Technologies (United States)'),
(5724, 'https://ror.org/00ah4xn57', 'en', 1, 'https://ror.org/00ah4xn57 Capital Allergy and Respiratory Disease Center'),
(5725, 'https://ror.org/00zw6et16', 'en', 1, 'https://ror.org/00zw6et16 Capital Institute of Pediatrics é¦–éƒ½å„æē§‘ē ”ē©¶ę‰€'),
(5726, 'https://ror.org/05nvv0w48', 'en', 1, 'https://ror.org/05nvv0w48 Arizona Institute for Bone & Joint Disorders'),
(5727, 'https://ror.org/04x2tmv91', 'en', 1, 'https://ror.org/04x2tmv91 Piedmont HealthCare'),
(5728, 'https://ror.org/02zmajt19', 'it', 1, 'https://ror.org/02zmajt19 Casa di cura Pierangeli'),
(5729, 'https://ror.org/04mx3g858', 'en', 1, 'https://ror.org/04mx3g858 Silverstein Institute'),
(5730, 'https://ror.org/02s1t7068', 'en', 1, 'https://ror.org/02s1t7068 Eastern Oklahoma State College'),
(5731, 'https://ror.org/04fktme39', 'en', 1, 'https://ror.org/04fktme39 Cleveland University'),
(5732, 'https://ror.org/05v4bk714', 'en', 1, 'https://ror.org/05v4bk714 Animal Technology Institute Taiwan'),
(5733, 'https://ror.org/00bw4xw30', 'en', 1, 'https://ror.org/00bw4xw30 Institute of Experimental Cardiology'),
(5734, 'https://ror.org/03vs98h61', 'en', 1, 'https://ror.org/03vs98h61 Cardiopulmonary Research Science and Technology Institute'),
(5735, 'https://ror.org/04vnpzv66', 'en', 1, 'https://ror.org/04vnpzv66 Pinkus Dermatopathology Laboratory'),
(5736, 'https://ror.org/02qwvxs86', 'sv', 1, 'https://ror.org/02qwvxs86 Eastmaninstitutet The Eastman Institute'),
(5737, 'https://ror.org/04rn3ph18', 'no_lang_code', 1, 'https://ror.org/04rn3ph18 Kodak (United States)'),
(5738, 'https://ror.org/01strh679', 'sr', 1, 'https://ror.org/01strh679 Klinički centar NiÅ” ŠšŠ»ŠøŠ½ŠøŃ‡ŠŗŠø центар ŠŠøŃˆ'),
(5739, 'https://ror.org/00yascf89', 'no_lang_code', 1, 'https://ror.org/00yascf89 Intertek (Canada)'),
(5740, 'https://ror.org/00pbdx741', 'en', 1, 'https://ror.org/00pbdx741 Cape Shoulder Institute'),
(5741, 'https://ror.org/02tr01m06', 'no_lang_code', 1, 'https://ror.org/02tr01m06 International Severity Information Systems (United States)'),
(5742, 'https://ror.org/008k5ng46', 'en', 1, 'https://ror.org/008k5ng46 Central Council for Research in Ayurvedic Science'),
(5743, 'https://ror.org/05d8b8w20', 'en', 1, 'https://ror.org/05d8b8w20 Plano Orthopedic Sports Medicine & Spine Center'),
(5744, 'https://ror.org/04bb8wd84', 'fr', 1, 'https://ror.org/04bb8wd84 Institut OcƩanographique'),
(5745, 'https://ror.org/05qydhq49', 'en', 1, 'https://ror.org/05qydhq49 Duluth Clinic'),
(5746, 'https://ror.org/04x1grb60', 'en', 1, 'https://ror.org/04x1grb60 Dutch College of General Practitioners Nederlands Huisartsen Genootschap'),
(5747, 'https://ror.org/04yxwc698', 'en', 1, 'https://ror.org/04yxwc698 Cardiovascular Research Foundation'),
(5748, 'https://ror.org/00ky71f04', 'en', 1, 'https://ror.org/00ky71f04 Clinical Orthopaedics and Related Research'),
(5749, 'https://ror.org/02sjy2915', 'en', 1, 'https://ror.org/02sjy2915 Podiatry Institute'),
(5750, 'https://ror.org/00skncc61', 'en', 1, 'https://ror.org/00skncc61 Institute For Ecology of Industrial Areas Instytut Ekologii Terenów Uprzemysłowionych'),
(5751, 'https://ror.org/055hfb865', 'en', 1, 'https://ror.org/055hfb865 Carlsberg Laboratory'),
(5752, 'https://ror.org/02dx8kd29', 'sr', 1, 'https://ror.org/02dx8kd29 Institut za Zdravstvenu Zastitu Majke i Deteta'),
(5753, 'https://ror.org/04mymaj38', 'en', 1, 'https://ror.org/04mymaj38 Point Richmond Tech Center'),
(5754, 'https://ror.org/02zv3n642', 'en', 1, 'https://ror.org/02zv3n642 Institute for Facial Esthetics'),
(5755, 'https://ror.org/05nq89q24', 'en', 1, 'https://ror.org/05nq89q24 Institute for Fermentation 発酵研究所'),
(5756, 'https://ror.org/02jxrxr40', 'no_lang_code', 1, 'https://ror.org/02jxrxr40 Policy Analysis (United States)'),
(5757, 'https://ror.org/01t8vn565', 'fr', 1, 'https://ror.org/01t8vn565 Clinique de l''Yvette Yvette clinic'),
(5758, 'https://ror.org/03eqc1p67', 'fr', 1, 'https://ror.org/03eqc1p67 Clinique de la DƩfense'),
(5759, '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'),
(5760, 'https://ror.org/053v8b344', 'en', 1, 'https://ror.org/053v8b344 Economic Policy Institute'),
(5761, 'https://ror.org/030mbxz29', 'en', 1, 'https://ror.org/030mbxz29 Carter Center'),
(5762, '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'),
(5763, 'https://ror.org/05hr7qe62', 'no_lang_code', 1, 'https://ror.org/05hr7qe62 Genetika Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетики Šø селекции ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Ń‹Ń… микроорганизмов'),
(5764, 'https://ror.org/03f47x024', 'en', 1, 'https://ror.org/03f47x024 ECRI Institute'),
(5765, 'https://ror.org/01qhm7e49', 'no_lang_code', 1, 'https://ror.org/01qhm7e49 Caterpillar (United States)'),
(5766, 'https://ror.org/053rfa017', 'en', 1, 'https://ror.org/053rfa017 Institute for Infocomm Research'),
(5767, 'https://ror.org/00tg1mz65', 'en', 1, 'https://ror.org/00tg1mz65 Porter Brook Medical Centre'),
(5768, 'https://ror.org/05n8ah907', 'no_lang_code', 1, 'https://ror.org/05n8ah907 Unilever (United Kingdom)'),
(5769, 'https://ror.org/01zq90d67', 'en', 1, 'https://ror.org/01zq90d67 Institute for Marine Biosciences'),
(5770, 'https://ror.org/03t1jzs40', 'it', 1, 'https://ror.org/03t1jzs40 IRCCS Materno Infantile Burlo Garofolo Ospedale Infantile Burlo Garofolo'),
(5771, 'https://ror.org/021w7cz98', 'en', 1, 'https://ror.org/021w7cz98 Posnick Center for Facial Plastic Surgery'),
(5772, 'https://ror.org/009bsy196', 'en', 1, 'https://ror.org/009bsy196 Edinburgh Royal Infirmary'),
(5773, 'https://ror.org/04yy0dd12', 'en', 1, 'https://ror.org/04yy0dd12 Animal Diseases Research Institute'),
(5774, 'https://ror.org/04xwmf991', 'en', 1, 'https://ror.org/04xwmf991 Institute for Myeloma & Bone Cancer Research'),
(5775, 'https://ror.org/00cfm3753', 'no_lang_code', 1, 'https://ror.org/00cfm3753 ANI Pharmaceuticals (United States)'),
(5776, 'https://ror.org/0203rjz92', 'no_lang_code', 1, 'https://ror.org/0203rjz92 Insmed (United States)'),
(5777, 'https://ror.org/02z2dfb58', 'en', 1, 'https://ror.org/02z2dfb58 CeMM Research Center for Molecular Medicine'),
(5778, 'https://ror.org/01ga31z69', 'no_lang_code', 1, 'https://ror.org/01ga31z69 Cochlear (United States)'),
(5779, 'https://ror.org/00sda2672', 'en', 1, 'https://ror.org/00sda2672 Edward Via College of Osteopathic Medicine'),
(5780, 'https://ror.org/057n4xq60', 'en', 1, 'https://ror.org/057n4xq60 Institute of Higher Nervous Activity and Neurophysiology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŃˆŠµŠ¹ нервной Š“ŠµŃŃ‚ŠµŠ»ŃŒŠ½Š¾ŃŃ‚Šø Šø нейрофизиологии Российской акаГемии наук'),
(5781, 'https://ror.org/04xreqs31', 'en', 1, 'https://ror.org/04xreqs31 Institute for Research in Fundamental Sciences Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ ŲÆŲ§Ł†Ų“ā€ŒŁ‡Ų§ŪŒ ŲØŁ†ŪŒŲ§ŲÆŪŒ'),
(5782, 'https://ror.org/01b9qpe41', 'fr', 1, 'https://ror.org/01b9qpe41 Institut de Recherche en Opthalmologie'),
(5783, 'https://ror.org/02brfgh04', 'en', 1, 'https://ror.org/02brfgh04 Institute of Human Behaviour and Allied Sciences'),
(5784, 'https://ror.org/02358mx30', 'en', 1, 'https://ror.org/02358mx30 Institute for Safe Medication Practices'),
(5785, 'https://ror.org/00qed5764', 'en', 1, 'https://ror.org/00qed5764 Plant Biotechnology Institute'),
(5786, 'https://ror.org/03q50jp21', 'no_lang_code', 1, 'https://ror.org/03q50jp21 Colgate-Palmolive (United States)'),
(5787, 'https://ror.org/01se4r077', 'en', 1, 'https://ror.org/01se4r077 Institute of Immunological Engineering'),
(5788, 'https://ror.org/04dkns738', 'no_lang_code', 1, 'https://ror.org/04dkns738 Procter & Gamble (United States)'),
(5789, '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ě'),
(5790, 'https://ror.org/00d2y1254', 'en', 1, 'https://ror.org/00d2y1254 Misericordia University'),
(5791, 'https://ror.org/035h6e956', 'en', 1, 'https://ror.org/035h6e956 College of American Pathologists'),
(5792, 'https://ror.org/05gtpxs59', 'en', 1, 'https://ror.org/05gtpxs59 Aichi Prefectural Government ę„›ēŸ„ēœŒ'),
(5793, 'https://ror.org/049tcsg76', 'en', 1, 'https://ror.org/049tcsg76 Institute for the Future'),
(5794, 'https://ror.org/04vvh7p27', 'no_lang_code', 1, 'https://ror.org/04vvh7p27 Eisai (Japan) ć‚Øćƒ¼ć‚¶ć‚¤ę Ŗå¼ä¼šē¤¾'),
(5795, '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'),
(5796, 'https://ror.org/036p1cm16', 'en', 1, 'https://ror.org/036p1cm16 Karnataka Veterinary Animal and Fisheries Sciences University ą¤•ą¤°ą„ą¤Øą¤¾ą¤Ÿą¤• ą¤µą„‡ą¤Ÿą„‡ą¤°ą¤æą¤Øą¤°ą„€, ą¤®ą¤¤ą„ą¤øą„ą¤Æ पालन र ą¤Ŗą¤¶ą„ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(5797, 'https://ror.org/05b7p8k90', 'en', 1, 'https://ror.org/05b7p8k90 Instytut Immunologii i Terapii Doświadczalnej Ludwik Hirszfeld Institute of Immunology and Experimental Therapy'),
(5798, 'https://ror.org/026jzqm86', 'en', 1, 'https://ror.org/026jzqm86 Productive Rehabilitation Institute of Dallas for Ergonomics'),
(5799, 'https://ror.org/013t2n957', 'no_lang_code', 1, 'https://ror.org/013t2n957 Perrigo (United States)'),
(5800, 'https://ror.org/022nh6s34', 'en', 1, 'https://ror.org/022nh6s34 Institute of Transplantation Sciences'),
(5801, 'https://ror.org/02dqztz06', 'en', 1, 'https://ror.org/02dqztz06 Electric Power Research Institute'),
(5802, 'https://ror.org/02927dx12', 'en', 1, 'https://ror.org/02927dx12 Institute of Life Sciences'),
(5803, 'https://ror.org/04g5g7m78', 'en', 1, 'https://ror.org/04g5g7m78 Saskatchewan Disease Control Laboratory'),
(5804, 'https://ror.org/02v6vej93', 'en', 1, 'https://ror.org/02v6vej93 Institute of Liver and Biliary Sciences'),
(5805, 'https://ror.org/00psab413', 'no_lang_code', 1, 'https://ror.org/00psab413 Eli Lilly (United Kingdom)'),
(5806, 'https://ror.org/05p8kt313', 'no_lang_code', 1, 'https://ror.org/05p8kt313 Eli Lilly (Canada)'),
(5807, 'https://ror.org/02sepg748', 'en', 1, 'https://ror.org/02sepg748 Institute of Materials Research and Engineering'),
(5808, 'https://ror.org/05bts0a67', 'en', 1, 'https://ror.org/05bts0a67 National Academy of Medicine'),
(5809, 'https://ror.org/01y0mgq54', 'en', 1, 'https://ror.org/01y0mgq54 Elizabethtown College'),
(5810, 'https://ror.org/04erv1b58', 'en', 1, 'https://ror.org/04erv1b58 College of New Rochelle'),
(5811, 'https://ror.org/03yp8z857', 'en', 1, 'https://ror.org/03yp8z857 University of Missouri Health System'),
(5812, 'https://ror.org/05e5waw95', 'en', 1, 'https://ror.org/05e5waw95 Elmhurst College'),
(5813, 'https://ror.org/0416mbc73', 'en', 1, 'https://ror.org/0416mbc73 College of Physicians of Philadelphia'),
(5814, 'https://ror.org/0503gyy63', 'es', 1, 'https://ror.org/0503gyy63 Parque Tecnológico de la Salud'),
(5815, 'https://ror.org/00yy85n18', 'en', 1, 'https://ror.org/00yy85n18 College of St. Scholastica'),
(5816, 'https://ror.org/01g7qth32', 'en', 1, 'https://ror.org/01g7qth32 Institute of Minerals and Materials Technology'),
(5817, 'https://ror.org/002nf6q61', 'en', 1, 'https://ror.org/002nf6q61 Bandim Health Project Projecto de SaĆŗde Bandim'),
(5818, 'https://ror.org/00hr6kp69', 'en', 1, 'https://ror.org/00hr6kp69 Emory Eye Center'),
(5819, 'https://ror.org/056mnr244', 'en', 1, 'https://ror.org/056mnr244 Punjab Institute of Cardiology'),
(5820, 'https://ror.org/03yshc124', 'en', 1, 'https://ror.org/03yshc124 Employee Benefit Research Institute'),
(5821, 'https://ror.org/00ns8qw04', 'en', 1, 'https://ror.org/00ns8qw04 Pushpawati Singhania Research Institute'),
(5822, 'https://ror.org/01a0xxp39', 'en', 1, 'https://ror.org/01a0xxp39 Institute of Basic Biological Problems Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Ń… проблем биологии Š ŠŠ'),
(5823, 'https://ror.org/05vts7w23', 'en', 1, 'https://ror.org/05vts7w23 Nanaji Deshmukh Veterinary Science University'),
(5824, 'https://ror.org/04amahm38', 'no_lang_code', 1, 'https://ror.org/04amahm38 ENVIRON (United States)'),
(5825, 'https://ror.org/054sgna66', 'en', 1, 'https://ror.org/054sgna66 Institute of Biochemistry'),
(5826, 'https://ror.org/01rqyr540', 'en', 1, 'https://ror.org/01rqyr540 Institute of Molecular Biology and Genetics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Ń— біології і генетики'),
(5827, 'https://ror.org/03apz2q12', 'en', 1, 'https://ror.org/03apz2q12 Institute of Molecular Genetics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ генетики Российской акаГемии наук'),
(5828, 'https://ror.org/00akhwn95', 'en', 1, 'https://ror.org/00akhwn95 Queen Saovabha Memorial Institute'),
(5829, 'https://ror.org/05f8zcs55', 'en', 1, 'https://ror.org/05f8zcs55 Institute of Biocybernetics and Biomedical Engineering'),
(5830, 'https://ror.org/03xgnzp28', 'en', 1, 'https://ror.org/03xgnzp28 Colorado Center for Bone Research'),
(5831, 'https://ror.org/03hvygv29', 'en', 1, 'https://ror.org/03hvygv29 Quality of Life Research Center'),
(5832, 'https://ror.org/05t43jk30', 'en', 1, 'https://ror.org/05t43jk30 Colorado Center for Nursing Excellence'),
(5833, 'https://ror.org/03v2wv079', 'en', 1, 'https://ror.org/03v2wv079 Colorado Center for Reproductive Medicine'),
(5834, 'https://ror.org/019mfbd19', 'no_lang_code', 1, 'https://ror.org/019mfbd19 Quest Clinical Research (United States)'),
(5835, 'https://ror.org/0123zff28', 'en', 1, 'https://ror.org/0123zff28 EMO GVM Centro Cuore Columbus'),
(5836, 'https://ror.org/02c2e2v80', 'en', 1, 'https://ror.org/02c2e2v80 Institute of Biology and Immunology of Reproduction Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š±ŠøŠ¾Š»Š¾Š³ŠøŃ Šø ŠøŠ¼ŃƒŠ½Š¾Š»Š¾Š³ŠøŃ на размножаването'),
(5837, 'https://ror.org/040wrkp27', 'en', 1, 'https://ror.org/040wrkp27 Institute of Biomedical Chemistry ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биомеГицинской химии имени Š’.Š. ŠžŃ€ŠµŃ…Š¾Š²ŠøŃ‡Š°'),
(5838, 'https://ror.org/016hfp155', 'en', 1, 'https://ror.org/016hfp155 Institute of Biomedical Problems Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской ФеГерации - Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГико-биологических проблем Российской акаГемии наук'),
(5839, 'https://ror.org/03xq12h43', 'en', 1, 'https://ror.org/03xq12h43 Institute of Noetic Sciences'),
(5840, 'https://ror.org/00w3hap50', 'pl', 1, 'https://ror.org/00w3hap50 Institute of Nuclear Chemistry and Technology Instytut Chemii i Techniki Jądrowej'),
(5841, 'https://ror.org/01dg04253', 'en', 1, 'https://ror.org/01dg04253 Institute of Bioorganic Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биоорганической химии им. акаГемиков М.М. ŠØŠµŠ¼ŃŠŗŠøŠ½Š° Šø Š®.А. ŠžŠ²Ń‡ŠøŠ½Š½ŠøŠŗŠ¾Š²Š° Российской акаГемии наук'),
(5842, 'https://ror.org/05qcjd272', 'no_lang_code', 1, 'https://ror.org/05qcjd272 Reynolds American (United States)'),
(5843, 'https://ror.org/01mq8sh52', 'en', 1, 'https://ror.org/01mq8sh52 Institute of Biophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики клетки Российской акаГемии наук'),
(5844, 'https://ror.org/04tw91v16', 'es', 1, 'https://ror.org/04tw91v16 Institute of Nutrition and Food Hygiene Instituto de Nutricion e Higiene de los Alimentos'),
(5845, '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Ô'),
(5846, 'https://ror.org/05mnq7966', 'es', 1, 'https://ror.org/05mnq7966 Complejo Asistencial Universitario de Palencia'),
(5847, 'https://ror.org/01mhgyv56', 'es', 1, 'https://ror.org/01mhgyv56 Complejo Hospitalario de CƔceres'),
(5848, 'https://ror.org/05952x620', 'en', 1, 'https://ror.org/05952x620 Institute of Occupational Safety Zavod za varstvo pri delu'),
(5849, 'https://ror.org/05vm76w92', 'en', 1, 'https://ror.org/05vm76w92 Biotechnology Research Institute äø­å›½å†œäøšē§‘å­¦é™¢ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(5850, 'https://ror.org/00w1epr46', 'en', 1, 'https://ror.org/00w1epr46 RG Stone Urology & Laparoscopy Hospital ą¤†ą¤°ą¤œą„€ ą¤øą„ą¤Ÿą„‹ą¤Ø ą¤Æą„‚ą¤°ą„‹ą¤²ą„‰ą¤œą„€ और ą¤²ą„ˆą¤Ŗą„ą¤°ą„‹ą¤øą„ą¤•ą„‹ą¤Ŗą„€ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(5851, 'https://ror.org/0240rwx68', 'en', 1, 'https://ror.org/0240rwx68 Istituto di Neuroscienze Neuroscience Institute'),
(5852, 'https://ror.org/01c5r7j06', 'es', 1, 'https://ror.org/01c5r7j06 Instituto de Neurologia Y Neurocirugia'),
(5853, 'https://ror.org/01pewsd85', 'en', 1, 'https://ror.org/01pewsd85 Estonian Academy of Sciences'),
(5854, 'https://ror.org/04f1y4a64', 'es', 1, 'https://ror.org/04f1y4a64 Complejo Hospitalario de Ourense'),
(5855, 'https://ror.org/016cxc226', 'es', 1, 'https://ror.org/016cxc226 Complejo Hospitalario de Pontevedra'),
(5856, 'https://ror.org/00a0kf832', 'en', 1, 'https://ror.org/00a0kf832 F.D. Ovcharenko Institute of Biocolloidal Chemistry Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біоколоїГної хімії ім. Ф. Š”. ŠžŠ²Ń‡Š°Ń€ŠµŠ½ŠŗŠ°'),
(5857, 'https://ror.org/02er0sb79', 'en', 1, 'https://ror.org/02er0sb79 EuroEspes Biomedical Research Center'),
(5858, 'https://ror.org/01sb2fs58', 'en', 1, 'https://ror.org/01sb2fs58 Institute of Cardiology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карГиологии'),
(5859, 'https://ror.org/01e17d143', 'en', 1, 'https://ror.org/01e17d143 Institute of Organic Chemistry Instytut Chemii Organicznej PAN'),
(5860, 'https://ror.org/00r5t2s16', 'en', 1, 'https://ror.org/00r5t2s16 Europdonor Foundation'),
(5861, 'https://ror.org/048rwjb21', 'en', 1, 'https://ror.org/048rwjb21 Eindhoven Cancer Registry'),
(5862, 'https://ror.org/05gkz0v31', 'it', 1, 'https://ror.org/05gkz0v31 Istituto Cantonale di Patologia'),
(5863, 'https://ror.org/027hwkg23', 'en', 1, 'https://ror.org/027hwkg23 Engelhardt Institute of Molecular Biology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ биологии им. Š’.А. Š­Š½Š³ŠµŠ»ŃŒŠ³Š°Ń€Š“Ń‚Š° Российской акаГемии наук'),
(5864, 'https://ror.org/00vfty314', 'en', 1, 'https://ror.org/00vfty314 National Institute of Pathology'),
(5865, 'https://ror.org/05gbnpz65', 'en', 1, 'https://ror.org/05gbnpz65 Institute of Cell Biophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики клетки Российской акаГемии наук'),
(5866, 'https://ror.org/039ekp273', 'en', 1, 'https://ror.org/039ekp273 Institute of Cellular and Intracellular Symbiosis Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики клетки Российской акаГемии наук'),
(5867, 'https://ror.org/0385es521', 'no_lang_code', 1, 'https://ror.org/0385es521 Boston Scientific (United States)'),
(5868, 'https://ror.org/00gmz2d02', 'en', 1, 'https://ror.org/00gmz2d02 Institute of Chemical Biology and Fundamental Medicine Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической биологии Šø Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(5869, 'https://ror.org/052r7yf45', 'en', 1, 'https://ror.org/052r7yf45 Institute of Chemical Kinetics and Combustion Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической кинетики Šø Š³Š¾Ń€ŠµŠ½ŠøŃ им. Š’.Š’. ВоевоГского Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(5870, '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'),
(5871, 'https://ror.org/017vd4789', 'no_lang_code', 1, 'https://ror.org/017vd4789 Compugen (Israel) קומפיוג''ן'),
(5872, 'https://ror.org/050prqy77', 'no_lang_code', 1, 'https://ror.org/050prqy77 Enzon Pharmaceuticals (United States)'),
(5873, 'https://ror.org/00nqqvk19', 'en', 1, 'https://ror.org/00nqqvk19 COMSATS University Islamabad Ś©ŁˆŁ…Ų³Ł¹Ų³ Ų§Ł†Ų³Ł¹ŪŒŁ¹ŪŒŁˆŁ¹ آف Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(5874, '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'),
(5875, 'https://ror.org/0368qtc02', 'no_lang_code', 1, 'https://ror.org/0368qtc02 NestlƩ (United States)'),
(5876, 'https://ror.org/029w5ya68', 'en', 1, 'https://ror.org/029w5ya68 European Neuroscience Institute Gƶttingen'),
(5877, 'https://ror.org/030yyf771', 'no_lang_code', 1, 'https://ror.org/030yyf771 Sun Pharma (India)'),
(5878, 'https://ror.org/00eg81h43', 'en', 1, 'https://ror.org/00eg81h43 Institute of Physiology and Pathology of Hearing'),
(5879, 'https://ror.org/01aptcd74', 'no_lang_code', 1, 'https://ror.org/01aptcd74 Sanofi (Canada)'),
(5880, 'https://ror.org/00ppb2x90', 'en', 1, 'https://ror.org/00ppb2x90 Concordia College - Minnesota'),
(5881, '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'),
(5882, 'https://ror.org/01ek5c080', 'en', 1, 'https://ror.org/01ek5c080 Methodist Richardson Medical Center'),
(5883, 'https://ror.org/03prr0814', 'en', 1, 'https://ror.org/03prr0814 Defence Food Research Laboratory ą¤°ą¤•ą„ą¤·ą¤¾ ą¤–ą¤¾ą¤¦ą„ą¤Æ ą¤¶ą„‹ą¤§ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(5884, 'https://ror.org/04fzbxp95', 'en', 1, 'https://ror.org/04fzbxp95 Defence Institute of Physiology and Allied Sciences ą¤•ą¤¾ą¤°ą„ą¤Æą¤•ą„€ और ą¤øą¤‚ą¤¬ą¤¦ą„ą¤§ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤°ą¤•ą„ą¤·ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(5885, 'https://ror.org/04sm60f26', 'en', 1, 'https://ror.org/04sm60f26 Defence Research and Development Establishment ą®‡ą®ØąÆą®¤ą®æą®Æ ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ąÆ‡ą®®ąÆą®Ŗą®¾ą®ŸąÆą®ŸąÆ ą®¤ąÆŠą®“ą®æą®²ą®•ą®®ąÆ'),
(5886, 'https://ror.org/046yyq968', 'en', 1, 'https://ror.org/046yyq968 Defence Research Laboratory ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(5887, 'https://ror.org/036kqs922', 'en', 1, 'https://ror.org/036kqs922 Institute of Contemporary Psychoanalysis'),
(5888, 'https://ror.org/02kvnjb40', 'en', 1, 'https://ror.org/02kvnjb40 European School of Oncology'),
(5889, 'https://ror.org/01p3q4q56', 'en', 1, 'https://ror.org/01p3q4q56 Institute of Cytology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цитологии Российской акаГемии наук'),
(5890, 'https://ror.org/01htjvr84', 'en', 1, 'https://ror.org/01htjvr84 Institute of Primate Research'),
(5891, 'https://ror.org/02nknzn40', 'en', 1, 'https://ror.org/02nknzn40 Institute of Problems of Chemical Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем химической физики'),
(5892, 'https://ror.org/05hx1vp23', 'en', 1, 'https://ror.org/05hx1vp23 Institute of Cytology and Preventive Oncology'),
(5893, 'https://ror.org/0489f0s93', 'en', 1, 'https://ror.org/0489f0s93 Institute of Protein Research Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ белка Российской акаГемии наук'),
(5894, 'https://ror.org/0277xgb12', 'en', 1, 'https://ror.org/0277xgb12 Institute of Cytology and Genetics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цитологии Šø генетики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(5895, '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'),
(5896, 'https://ror.org/0468k6j36', 'en', 1, 'https://ror.org/0468k6j36 Institute of Psychiatry and Neurology'),
(5897, 'https://ror.org/02q8vhr64', 'en', 1, 'https://ror.org/02q8vhr64 Kobe City College of Technology ē„žęˆøåø‚ē«‹å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(5898, 'https://ror.org/02f51rf24', 'no_lang_code', 1, 'https://ror.org/02f51rf24 Regeneron (United States)'),
(5899, 'https://ror.org/02j6cz137', 'en', 1, 'https://ror.org/02j6cz137 Institute of Dermatology ąøŖąø–ąø²ąøšąø±ąø™ą¹‚ąø£ąø„ąøœąø“ąø§ąø«ąø™ąø±ąø‡'),
(5900, 'https://ror.org/056za9j29', 'en', 1, 'https://ror.org/056za9j29 Korea Center for Disease Control and Prevention'),
(5901, 'https://ror.org/039k6f508', 'en', 1, 'https://ror.org/039k6f508 Korea Electronics Technology Institute'),
(5902, 'https://ror.org/04stdpt78', 'en', 1, 'https://ror.org/04stdpt78 Endokrinologický ústav Institute of Endocrinology'),
(5903, 'https://ror.org/05bjbww34', 'en', 1, 'https://ror.org/05bjbww34 Korea Forest Service');
INSERT INTO `rors` VALUES
(5904, 'https://ror.org/03jcpfa62', 'en', 1, 'https://ror.org/03jcpfa62 V.P. Komisarenko Institute of Endocrinology and Metabolism Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ енГокринології та Š¾Š±Š¼Ń–Š½Ńƒ речовин ім. Š’.П. ŠšŠ¾Š¼Ń–ŃŠ°Ń€ŠµŠ½ŠŗŠ°'),
(5905, 'https://ror.org/05r88rg69', 'pl', 1, 'https://ror.org/05r88rg69 Instytut Sportu'),
(5906, 'https://ror.org/05akcvn61', 'en', 1, 'https://ror.org/05akcvn61 Korea National Tuberculosis Association'),
(5907, 'https://ror.org/04cn8d339', 'pl', 1, 'https://ror.org/04cn8d339 Krakowskie Centrum Rehabilitacji'),
(5908, 'https://ror.org/03npmaw37', 'de', 1, 'https://ror.org/03npmaw37 Wunschbaby Institut für Kinderwunsch'),
(5909, 'https://ror.org/04523n645', 'no_lang_code', 1, 'https://ror.org/04523n645 REALITY Publishing (United States)'),
(5910, 'https://ror.org/04anb9w92', 'en', 1, 'https://ror.org/04anb9w92 Kronos Longevity Research Institute'),
(5911, 'https://ror.org/05dkjfz60', 'en', 1, 'https://ror.org/05dkjfz60 Kumoh National Institute of Technology źøˆģ˜¤ź³µź³¼ėŒ€ķ•™źµ'),
(5912, 'https://ror.org/00b0t9z66', 'en', 1, 'https://ror.org/00b0t9z66 Vision Eye Institute'),
(5913, 'https://ror.org/03d0hdn85', 'en', 1, 'https://ror.org/03d0hdn85 Istanbul Eye Hospital İstanbul Gƶz Hastanesi'),
(5914, 'https://ror.org/04kcn9y49', 'en', 1, 'https://ror.org/04kcn9y49 Eye Institute of Utah'),
(5915, 'https://ror.org/008ebms37', 'en', 1, 'https://ror.org/008ebms37 Institute of Theoretical and Experimental Biophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ биофизики Российской акаГемии наук'),
(5916, 'https://ror.org/048pwcs59', 'en', 1, 'https://ror.org/048pwcs59 Regional Plant Resource Centre'),
(5917, 'https://ror.org/03t12ts08', 'en', 1, 'https://ror.org/03t12ts08 Kunming Institute of Precious Metals'),
(5918, 'https://ror.org/03257r210', 'fi', 1, 'https://ror.org/03257r210 Kuopion LiikuntalƤƤketieteen Tutkimuslaitos'),
(5919, 'https://ror.org/01z6qpb13', 'pt', 1, 'https://ror.org/01z6qpb13 Faculdade de Ciências Médicas da Santa Casa de São Paulo'),
(5920, 'https://ror.org/0249jjk91', 'en', 1, 'https://ror.org/0249jjk91 Kuwait Cancer Control Center'),
(5921, 'https://ror.org/05a9hae73', 'es', 1, 'https://ror.org/05a9hae73 Instituto de Medicina Tropical ā€œPedro KourĆ­ā€'),
(5922, 'https://ror.org/03z23rf32', 'pl', 1, 'https://ror.org/03z23rf32 Instytut Ekspertyz Sądowych'),
(5923, 'https://ror.org/0431cb905', 'pl', 1, 'https://ror.org/0431cb905 Instytut GruÅŗlicy i Chorób Płuc'),
(5924, 'https://ror.org/01yq9ya27', 'en', 1, 'https://ror.org/01yq9ya27 Institute of Gene Biology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии гена'),
(5925, 'https://ror.org/05bkc5375', 'en', 1, 'https://ror.org/05bkc5375 National Institute for Interdisciplinary Science and Technology ą“Øą“¾ą“·ą“£ąµ½ ą“‡ąµ»ą“øąµą“±ą“±ą“æą“±ą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą“«ąµ‹ąµ¼ ą“‡ąµ»ą“±ąµ¼ ą“”ą“æą“øą“æą“Ŗąµą“³ą“æą“Øą“±ą“æ ą“øą“Æąµ»ą“øąµ ą“…ąµ»ą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ, ą“¤ą“æą“°ąµą“µą“Øą“Øąµą“¤ą“Ŗąµą“°ą“‚'),
(5926, 'https://ror.org/028807987', 'en', 1, 'https://ror.org/028807987 Kyoto Research Park äŗ¬éƒ½ćƒŖć‚µćƒ¼ćƒćƒ‘ćƒ¼ć‚Æ'),
(5927, 'https://ror.org/038mdqs58', 'en', 1, 'https://ror.org/038mdqs58 D.F. Chebotarev Institute of Gerontology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геронтології ім. Š”.Ф.Š§ŠµŠ±Š¾Ń‚Š°Ń€ŃŒŠ¾Š²Š°'),
(5928, 'https://ror.org/00pm9hx30', 'pt', 1, 'https://ror.org/00pm9hx30 Faculdade de Medicina de MarĆ­lia Faculty of Medicine of MarĆ­lia'),
(5929, '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'),
(5930, 'https://ror.org/010pvqx55', 'en', 1, 'https://ror.org/010pvqx55 Danish Institute against Torture'),
(5931, 'https://ror.org/047s7ag77', 'pt', 1, 'https://ror.org/047s7ag77 Faculdade de Medicina do ABC'),
(5932, 'https://ror.org/030y83r80', 'en', 1, 'https://ror.org/030y83r80 Louisville Metabolic and Atherosclerosis Research Center'),
(5933, 'https://ror.org/059x8vm09', 'en', 1, 'https://ror.org/059x8vm09 Gujarat Technological University'),
(5934, 'https://ror.org/04ds6er14', 'pt', 1, 'https://ror.org/04ds6er14 Faculdade EvangƩlica do ParanƔ'),
(5935, 'https://ror.org/05p4qy423', 'pt', 1, 'https://ror.org/05p4qy423 Biological Institute Instituto Biológico'),
(5936, 'https://ror.org/05ggvgr57', 'no_lang_code', 1, 'https://ror.org/05ggvgr57 Repligen (United States)'),
(5937, 'https://ror.org/05nkqs567', 'en', 1, 'https://ror.org/05nkqs567 Reproductive Genetics Institute'),
(5938, 'https://ror.org/03nyxbd27', 'en', 1, 'https://ror.org/03nyxbd27 Reproductive Medicine Associates of New Jersey'),
(5939, 'https://ror.org/05476d639', 'es', 1, 'https://ror.org/05476d639 Instituto Cardiovascular de Buenos Aires'),
(5940, 'https://ror.org/01rdex851', 'no_lang_code', 1, 'https://ror.org/01rdex851 Arkema (United States)'),
(5941, 'https://ror.org/05dqmqj96', 'es', 1, 'https://ror.org/05dqmqj96 Instituto Chileno de Medicina Reproductiva'),
(5942, 'https://ror.org/04wbpm451', 'no_lang_code', 1, 'https://ror.org/04wbpm451 La Jolla Pharmaceutical (United States)'),
(5943, 'https://ror.org/02wkp0463', 'fr', 1, 'https://ror.org/02wkp0463 Service RƩgional Vaudois de Transfusion Sanguine'),
(5944, 'https://ror.org/03dpjp116', 'en', 1, 'https://ror.org/03dpjp116 Nagano College of Nursing é•·é‡ŽēœŒēœ‹č­·å¤§å­¦'),
(5945, 'https://ror.org/01fptm710', 'pt', 1, 'https://ror.org/01fptm710 Instituto de Botânica'),
(5946, 'https://ror.org/00kv21794', 'en', 1, 'https://ror.org/00kv21794 Weil Institute of Critical Care Medicine'),
(5947, 'https://ror.org/050pxrb04', 'es', 1, 'https://ror.org/050pxrb04 Instituto de CardiologĆ­a y CirugĆ­a Cardiovascular'),
(5948, 'https://ror.org/03xs15s33', 'es', 1, 'https://ror.org/03xs15s33 Comisión Honoraria de Lucha contra el cÔncer'),
(5949, 'https://ror.org/00et2zw97', 'en', 1, 'https://ror.org/00et2zw97 Matsumoto Livestock Hygiene Service Center'),
(5950, 'https://ror.org/05tcd6p82', 'en', 1, 'https://ror.org/05tcd6p82 Shady Grove Fertility Center'),
(5951, 'https://ror.org/0138w4412', 'en', 1, 'https://ror.org/0138w4412 Russian Research Center for Molecular Diagnostics and Therapy'),
(5952, 'https://ror.org/00em27a94', 'pt', 1, 'https://ror.org/00em27a94 Instituto de Infectologia EmĆ­lio Ribas'),
(5953, 'https://ror.org/05stnhf77', 'en', 1, 'https://ror.org/05stnhf77 Shanghai Academy of Environmental Sciences äøŠęµ·åø‚ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(5954, 'https://ror.org/02avws951', 'no_lang_code', 1, 'https://ror.org/02avws951 Fresenius Medical Care (United States)'),
(5955, 'https://ror.org/01cyxs230', 'en', 1, 'https://ror.org/01cyxs230 Shanghai Blood Center'),
(5956, 'https://ror.org/059jg0v11', 'en', 1, 'https://ror.org/059jg0v11 Reitan Neuropsychology Laboratory'),
(5957, 'https://ror.org/01ty4bg86', 'en', 1, 'https://ror.org/01ty4bg86 Shanghai Cancer Institute'),
(5958, 'https://ror.org/01rtyyz33', 'pt', 1, 'https://ror.org/01rtyyz33 Instituto de Medicina Integral Professor Fernando Figueira'),
(5959, 'https://ror.org/02afj1h05', 'en', 1, 'https://ror.org/02afj1h05 Research Institute for Olympic Sports'),
(5960, 'https://ror.org/03dywwh47', 'es', 1, 'https://ror.org/03dywwh47 Instituto de la Visión'),
(5961, 'https://ror.org/02bkd7d61', 'en', 1, 'https://ror.org/02bkd7d61 Hokkaido Agricultural Research Center åŒ—ęµ·é“č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(5962, 'https://ror.org/02fc7xd23', 'en', 1, 'https://ror.org/02fc7xd23 Shanghai Research Center for Acupuncture and Meridians äøŠęµ·åø‚é’ˆēøē»ē»œē ”ē©¶äø­åæƒ'),
(5963, 'https://ror.org/04pj26y96', 'pt', 1, 'https://ror.org/04pj26y96 Instituto de MolƩstias Cardiovasculares'),
(5964, 'https://ror.org/04mxcvp24', 'es', 1, 'https://ror.org/04mxcvp24 Instituto de NeurologĆ­a de Buenos Aires'),
(5965, 'https://ror.org/032w3wj13', 'en', 1, 'https://ror.org/032w3wj13 Research Institute for Production Development čˆ¬č²”å›£ę³•äŗŗē”Ÿē”£é–‹ē™ŗē§‘å­¦ē ”ē©¶ę‰€'),
(5966, 'https://ror.org/04q0ntn52', 'pt', 1, 'https://ror.org/04q0ntn52 Instituto de Neurologia de Curitiba'),
(5967, 'https://ror.org/05etrx234', 'en', 1, 'https://ror.org/05etrx234 National AIDS Research Institute'),
(5968, 'https://ror.org/04y798z66', 'fr', 1, 'https://ror.org/04y798z66 Laboratoire National de SantƩ'),
(5969, 'https://ror.org/005avv954', 'en', 1, 'https://ror.org/005avv954 Shea Ear Clinic'),
(5970, 'https://ror.org/000ep5m48', 'es', 1, 'https://ror.org/000ep5m48 Instituto de Salud PĆŗblica de Navarra'),
(5971, 'https://ror.org/00p2bx870', 'en', 1, 'https://ror.org/00p2bx870 Environment Agency Abu Dhabi Ł‡ŁŠŲ¦Ų© Ų§Ł„ŲØŁŠŲ¦Ų©'),
(5972, 'https://ror.org/01p7p3890', 'pt', 1, 'https://ror.org/01p7p3890 Faculdade de Ciências Médicas de Minas Gerais'),
(5973, 'https://ror.org/04p00tq71', 'en', 1, 'https://ror.org/04p00tq71 Research Institute of Innovative Technology for the Earth åœ°ēƒē’°å¢ƒē”£ę„­ęŠ€č”“ē ”ē©¶ę©Ÿę§‹'),
(5974, 'https://ror.org/03hwje554', 'en', 1, 'https://ror.org/03hwje554 Sheffield Kidney Institute'),
(5975, 'https://ror.org/04xk4hz96', 'pt', 1, 'https://ror.org/04xk4hz96 Instituto Evandro Chagas'),
(5976, 'https://ror.org/0024cws33', 'en', 1, 'https://ror.org/0024cws33 Food Research Institute'),
(5977, 'https://ror.org/01h0ca774', 'en', 1, 'https://ror.org/01h0ca774 Research Institute of Ophthalmology'),
(5978, 'https://ror.org/02j3xat32', 'no_lang_code', 1, 'https://ror.org/02j3xat32 National Iranian Oil Company (Iran) Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ صنعت نفت'),
(5979, 'https://ror.org/009mb6m53', 'pt', 1, 'https://ror.org/009mb6m53 Instituto H. Ellis'),
(5980, 'https://ror.org/00y1ttm22', 'no_lang_code', 1, 'https://ror.org/00y1ttm22 Merck (France)'),
(5981, 'https://ror.org/05j4prr94', 'es', 1, 'https://ror.org/05j4prr94 Instituto MƩdico La Floresta'),
(5982, 'https://ror.org/03pxsqj18', 'en', 1, 'https://ror.org/03pxsqj18 Hebrew Home of Greater Washington'),
(5983, 'https://ror.org/020wjcq07', 'en', 1, 'https://ror.org/020wjcq07 Shibaura Institute of Technology čŠęµ¦å·„ę„­å¤§å­¦'),
(5984, 'https://ror.org/038jnd853', 'en', 1, 'https://ror.org/038jnd853 Sher Fertility'),
(5985, 'https://ror.org/03xddgg98', 'en', 1, 'https://ror.org/03xddgg98 Instituto Mexicano del Seguro Social Mexican Social Security Institute'),
(5986, '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'),
(5987, 'https://ror.org/04f03nc30', 'nl', 1, 'https://ror.org/04f03nc30 Adelante'),
(5988, 'https://ror.org/01v3bqg10', 'no_lang_code', 1, 'https://ror.org/01v3bqg10 Shionogi (Japan) å”©é‡Žē¾©č£½č–¬'),
(5989, 'https://ror.org/03da3g825', 'no_lang_code', 1, 'https://ror.org/03da3g825 Shiseido Group (Japan) ę Ŗå¼ä¼šē¤¾č³‡ē”Ÿå ‚'),
(5990, 'https://ror.org/011mar637', 'en', 1, 'https://ror.org/011mar637 National Cancer Institute of Thailand ąøŖąø–ąø²ąøšąø±ąø™ąø”ąø°ą¹€ąø£ą¹‡ąø‡ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(5991, 'https://ror.org/03674y156', 'es', 1, 'https://ror.org/03674y156 Instituto Nacional de Enfermedades NeoplƔsicas'),
(5992, 'https://ror.org/03eqttr49', 'en', 1, 'https://ror.org/03eqttr49 Research Triangle Park Foundation'),
(5993, 'https://ror.org/017fh2655', 'es', 1, 'https://ror.org/017fh2655 Instituto Nacional de Enfermedades Respiratorias Instituto Nacional de Enfermedades Respiratorias Ismael CosĆ­o Villegas'),
(5994, 'https://ror.org/01bawqf59', 'en', 1, 'https://ror.org/01bawqf59 Shonan Institute of Technology ę¹˜å—å·„ē§‘å¤§å­¦'),
(5995, 'https://ror.org/036z11b33', 'en', 1, 'https://ror.org/036z11b33 Shriners Hospitals for Children - Philadelphia'),
(5996, 'https://ror.org/01m178w43', 'en', 1, 'https://ror.org/01m178w43 Lahey Medical Center'),
(5997, 'https://ror.org/04679fh62', 'en', 1, 'https://ror.org/04679fh62 Lake Erie College of Osteopathic Medicine'),
(5998, 'https://ror.org/03sqq2g46', 'en', 1, 'https://ror.org/03sqq2g46 Retina Foundation of the Southwest'),
(5999, 'https://ror.org/04r0hqv79', 'en', 1, 'https://ror.org/04r0hqv79 Rhode Island Spine Center'),
(6000, 'https://ror.org/033fn9j44', 'en', 1, 'https://ror.org/033fn9j44 Shriners Hospitals for Children - Chicago'),
(6001, 'https://ror.org/00k7h5c65', 'es', 1, 'https://ror.org/00k7h5c65 Instituto Nacional de Investigaciones Nucleares'),
(6002, 'https://ror.org/03pjgt842', 'en', 1, 'https://ror.org/03pjgt842 Shriners for Children Medical Center - Pasadena'),
(6003, 'https://ror.org/02gffk937', 'en', 1, 'https://ror.org/02gffk937 Shriners Hospitals for Children - Erie'),
(6004, 'https://ror.org/03jg6sy07', 'en', 1, 'https://ror.org/03jg6sy07 Shriners Hospitals for Children - Honolulu'),
(6005, 'https://ror.org/01t6qh616', 'en', 1, 'https://ror.org/01t6qh616 Shriners Hospitals for Children - Spokane'),
(6006, 'https://ror.org/038tp0t62', 'en', 1, 'https://ror.org/038tp0t62 Las Vegas Institute'),
(6007, 'https://ror.org/03zzyhb42', 'en', 1, 'https://ror.org/03zzyhb42 Laser and Skin Surgery Center of New York'),
(6008, 'https://ror.org/024hqjk04', 'es', 1, 'https://ror.org/024hqjk04 Administración Nacional de Laboratorios e Institutos de Salud'),
(6009, 'https://ror.org/00vr3xw76', 'en', 1, 'https://ror.org/00vr3xw76 Laser and Skin Surgery Center of Indiana'),
(6010, 'https://ror.org/05k637k59', 'es', 1, 'https://ror.org/05k637k59 Instituto Nacional de NeurologĆ­a y NeurocirugĆ­a National Institute of Neurology and Neurosurgery'),
(6011, 'https://ror.org/02xm4cz36', 'en', 1, 'https://ror.org/02xm4cz36 LaserVision'),
(6012, 'https://ror.org/0289ggs32', 'es', 1, 'https://ror.org/0289ggs32 Administracion de los Servicios de Salud del Estado'),
(6013, 'https://ror.org/02vxngq63', 'en', 1, 'https://ror.org/02vxngq63 Latvian Academy of Sciences'),
(6014, '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'),
(6015, 'https://ror.org/01a92vw29', 'lv', 1, 'https://ror.org/01a92vw29 Latvian Institute of Organic Synthesis Latvijas Organiskās Sintēzes Institūts'),
(6016, 'https://ror.org/00xmtrb24', 'no_lang_code', 1, 'https://ror.org/00xmtrb24 LC Resources (United States)'),
(6017, 'https://ror.org/03mcw4334', 'es', 1, 'https://ror.org/03mcw4334 Direccion General de Epidemiologia'),
(6018, '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'),
(6019, 'https://ror.org/04nw8w376', 'no_lang_code', 1, 'https://ror.org/04nw8w376 Leatherhead Food Research'),
(6020, 'https://ror.org/05nda1d55', 'en', 1, 'https://ror.org/05nda1d55 Sichuan Center for Disease Control and Prevention å››å·ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(6021, 'https://ror.org/03734cd59', 'es', 1, 'https://ror.org/03734cd59 Instituto Nacional de Rehabilitación National Institute of Rehabilitation'),
(6022, 'https://ror.org/01z142p52', 'es', 1, 'https://ror.org/01z142p52 Instituto Nacional de Rehabilitación Psicofísica'),
(6023, 'https://ror.org/03gx6zj11', 'es', 1, 'https://ror.org/03gx6zj11 Instituto Nacional de Salud'),
(6024, 'https://ror.org/03hq46410', 'pt', 1, 'https://ror.org/03hq46410 Instituto Nacional de SaĆŗde'),
(6025, 'https://ror.org/04axb7e79', 'no_lang_code', 1, 'https://ror.org/04axb7e79 Siemens (United States)'),
(6026, 'https://ror.org/02meqm098', 'en', 1, 'https://ror.org/02meqm098 National Center for Biotechnology Information'),
(6027, 'https://ror.org/0530d6n45', 'en', 1, 'https://ror.org/0530d6n45 National Center for Clinical Laboratories'),
(6028, 'https://ror.org/059kzn841', 'en', 1, 'https://ror.org/059kzn841 Rocky Mountain MS Center'),
(6029, 'https://ror.org/01x64pv72', 'en', 1, 'https://ror.org/01x64pv72 National Center for Environmental Assessment (EPA)'),
(6030, 'https://ror.org/00t0z3q71', 'es', 1, 'https://ror.org/00t0z3q71 Hospital del Tórax Instituto Nacional del Tórax'),
(6031, 'https://ror.org/03jkz2y73', 'en', 1, 'https://ror.org/03jkz2y73 Leicester Royal Infirmary'),
(6032, 'https://ror.org/05drnnd98', 'en', 1, 'https://ror.org/05drnnd98 National Center for Epidemiology OrszÔgos Epidemiológiai Központ'),
(6033, 'https://ror.org/01p4cne93', 'en', 1, 'https://ror.org/01p4cne93 National Center for Genome Resources'),
(6034, 'https://ror.org/009vh5d61', 'en', 1, 'https://ror.org/009vh5d61 Rollins College'),
(6035, 'https://ror.org/04462nt90', 'no_lang_code', 1, 'https://ror.org/04462nt90 Ross Laboratories (United States)'),
(6036, 'https://ror.org/0322xet82', 'en', 1, 'https://ror.org/0322xet82 National Center for Healthy Housing'),
(6037, 'https://ror.org/05je2tx78', 'en', 1, 'https://ror.org/05je2tx78 National Center for Immunization and Respiratory Diseases'),
(6038, 'https://ror.org/0524z5q72', 'en', 1, 'https://ror.org/0524z5q72 Sindh Institute of Urology and Transplantation'),
(6039, 'https://ror.org/05rpsf244', 'en', 1, 'https://ror.org/05rpsf244 Israel Oceanographic and Limnological Research'),
(6040, 'https://ror.org/04f49ff35', 'en', 1, 'https://ror.org/04f49ff35 National Center for Nanoscience and Technology å›½å®¶ēŗ³ē±³ē§‘å­¦äø­åæƒ'),
(6041, 'https://ror.org/03zxtdc90', 'es', 1, 'https://ror.org/03zxtdc90 Centro Nacional de Investigaciones CientĆ­ficas'),
(6042, 'https://ror.org/029nvrb94', 'en', 1, 'https://ror.org/029nvrb94 Singapore National Eye Center'),
(6043, 'https://ror.org/05vv5ch57', 'en', 1, 'https://ror.org/05vv5ch57 National Center of Infectious and Parasitic Diseases ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½ŠøŃŃ‚ Ń†ŠµŠ½Ń‚ŃŠŃ€ по заразни Šø паразитни болести'),
(6044, 'https://ror.org/00gs35582', 'en', 1, 'https://ror.org/00gs35582 Valencian Infertility Institute'),
(6045, 'https://ror.org/00kx3fw88', 'es', 1, 'https://ror.org/00kx3fw88 Instituto Valenciano de Investigaciones Agrarias'),
(6046, 'https://ror.org/04tv1fa62', 'fr', 1, 'https://ror.org/04tv1fa62 Centre National de la MƩdecine et des Sciences des Sports'),
(6047, 'https://ror.org/04gcgef90', 'no_lang_code', 1, 'https://ror.org/04gcgef90 Levin Group (United States)'),
(6048, 'https://ror.org/04pvxsf55', 'en', 1, 'https://ror.org/04pvxsf55 Lexington Clinic'),
(6049, 'https://ror.org/02g82g140', 'es', 1, 'https://ror.org/02g82g140 Instituto Zaldivar'),
(6050, 'https://ror.org/03yb78887', 'en', 1, 'https://ror.org/03yb78887 Specialised Hospital for Active Treatment of Oncology Дпециализираната Болница за Активно лечение по ŠžŠ½ŠŗŠ¾Š»Š¾Š³ŠøŃ'),
(6051, 'https://ror.org/0457d9w72', 'en', 1, 'https://ror.org/0457d9w72 National Cancer Center of Georgia'),
(6052, 'https://ror.org/00gbb9377', 'en', 1, 'https://ror.org/00gbb9377 National Center on Institutions and Alternatives'),
(6053, 'https://ror.org/04x436h61', 'en', 1, 'https://ror.org/04x436h61 Skin and Cancer Foundation'),
(6054, 'https://ror.org/0175ya539', 'en', 1, 'https://ror.org/0175ya539 Koninklijke Kentalis Royal Dutch Kentalis'),
(6055, 'https://ror.org/00j9wfd65', 'no_lang_code', 1, 'https://ror.org/00j9wfd65 KGL Skin Study Center'),
(6056, 'https://ror.org/055yerj39', 'en', 1, 'https://ror.org/055yerj39 Roy Castle Lung Cancer Foundation'),
(6057, 'https://ror.org/02v0mj573', 'en', 1, 'https://ror.org/02v0mj573 Royal Albert Edward Infirmary'),
(6058, 'https://ror.org/034nvrd87', 'en', 1, 'https://ror.org/034nvrd87 Royal Berkshire NHS Foundation Trust'),
(6059, 'https://ror.org/051ae7717', 'nl', 1, 'https://ror.org/051ae7717 Stichting Epilepsie Instellingen Nederland'),
(6060, 'https://ror.org/00kn43d12', 'en', 1, 'https://ror.org/00kn43d12 National Centre for Research'),
(6061, 'https://ror.org/02k5t6c64', 'en', 1, 'https://ror.org/02k5t6c64 PRA Health Sciences'),
(6062, 'https://ror.org/021a7d287', 'en', 1, 'https://ror.org/021a7d287 Royal College of Surgeons of Edinburgh'),
(6063, 'https://ror.org/05f21rh68', 'en', 1, 'https://ror.org/05f21rh68 Lincoln Land Community College'),
(6064, 'https://ror.org/05tdnf273', 'en', 1, 'https://ror.org/05tdnf273 Insurance Institute for Highway Safety'),
(6065, 'https://ror.org/01dmjt679', 'en', 1, 'https://ror.org/01dmjt679 Roessingh Research and Development'),
(6066, 'https://ror.org/03zsdhz84', 'no_lang_code', 1, 'https://ror.org/03zsdhz84 LabCorp (United States)'),
(6067, 'https://ror.org/03kr30n36', 'en', 1, 'https://ror.org/03kr30n36 Manchester Royal Infirmary'),
(6068, 'https://ror.org/056nq0726', 'en', 1, 'https://ror.org/056nq0726 Royal Lancaster Infirmary'),
(6069, 'https://ror.org/04770s302', 'en', 1, 'https://ror.org/04770s302 Centro Internacional de Restauración Neurológica International Center of Neurologic Restoration'),
(6070, 'https://ror.org/03v351c14', 'en', 1, 'https://ror.org/03v351c14 International Center for Research on Women'),
(6071, 'https://ror.org/04aty2659', 'en', 1, 'https://ror.org/04aty2659 Moscow State University of Fine Chemical Technologies Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ тонких химических технологий имени М. Š’. Ломоносова'),
(6072, 'https://ror.org/027tbp210', 'en', 1, 'https://ror.org/027tbp210 Centre for Life'),
(6073, 'https://ror.org/03ap5bg83', 'en', 1, 'https://ror.org/03ap5bg83 National Dairy Research Institute ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤”ą„‡ą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6074, 'https://ror.org/01p19k166', 'en', 1, 'https://ror.org/01p19k166 Royal Victoria Infirmary'),
(6075, 'https://ror.org/0107hzb54', 'en', 1, 'https://ror.org/0107hzb54 International Craniofacial Institute'),
(6076, 'https://ror.org/02exhb815', 'no_lang_code', 1, 'https://ror.org/02exhb815 Royan Institute'),
(6077, 'https://ror.org/0541a3n79', 'en', 1, 'https://ror.org/0541a3n79 International Crops Research Institute for the Semi-Arid Tropics'),
(6078, 'https://ror.org/05e456743', 'en', 1, 'https://ror.org/05e456743 Lovelace Clinic Foundation Research'),
(6079, 'https://ror.org/02yfw7119', 'fr', 1, 'https://ror.org/02yfw7119 Fondation de Rothschild'),
(6080, 'https://ror.org/021r5ns39', 'en', 1, 'https://ror.org/021r5ns39 National Environmental Engineering Research Institute'),
(6081, 'https://ror.org/001ykb961', 'en', 1, 'https://ror.org/001ykb961 National Evolutionary Synthesis Center'),
(6082, 'https://ror.org/00j49rw24', 'en', 1, 'https://ror.org/00j49rw24 LRS Institute of Tuberculosis and Respiratory Diseases'),
(6083, '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'),
(6084, 'https://ror.org/023j1kv28', 'en', 1, 'https://ror.org/023j1kv28 International Hearing Foundation'),
(6085, 'https://ror.org/0178xk096', 'en', 1, 'https://ror.org/0178xk096 International Institute for Population Sciences'),
(6086, 'https://ror.org/05d9ms657', 'es', 1, 'https://ror.org/05d9ms657 Sociedad EspaƱola de Cardiologƭa'),
(6087, 'https://ror.org/00kzzgw26', 'en', 1, 'https://ror.org/00kzzgw26 Kennedy Center'),
(6088, 'https://ror.org/01d3e8y10', 'en', 1, 'https://ror.org/01d3e8y10 International Institute of Anthropology'),
(6089, 'https://ror.org/02b1qqv62', 'en', 1, 'https://ror.org/02b1qqv62 National Food Administration'),
(6090, 'https://ror.org/0407e4e37', 'pl', 1, 'https://ror.org/0407e4e37 Instytut Zywnosci Zywienia National Food and Nutrition Institute'),
(6091, 'https://ror.org/00by9f077', 'en', 1, 'https://ror.org/00by9f077 Food Research Institute é£Ÿå“ē·åˆē ”ē©¶ę‰€'),
(6092, 'https://ror.org/0556kt608', 'en', 1, 'https://ror.org/0556kt608 Institut International d''Agriculture Tropicale International Institute of Tropical Agriculture'),
(6093, 'https://ror.org/04vpcaw67', 'en', 1, 'https://ror.org/04vpcaw67 International Water Management Institute'),
(6094, 'https://ror.org/01rsgws32', 'en', 1, 'https://ror.org/01rsgws32 Lycoming College'),
(6095, 'https://ror.org/02bm6g618', 'en', 1, 'https://ror.org/02bm6g618 Russell Sage College'),
(6096, 'https://ror.org/030n38z97', 'en', 1, 'https://ror.org/030n38z97 International Laser Center'),
(6097, 'https://ror.org/03a1yfb59', 'en', 1, 'https://ror.org/03a1yfb59 Lynchburg Family Medicine'),
(6098, 'https://ror.org/049ayz521', 'en', 1, 'https://ror.org/049ayz521 South African Brain Research Institute'),
(6099, 'https://ror.org/02vfnsn98', 'en', 1, 'https://ror.org/02vfnsn98 Lynn Health Science Institute'),
(6100, 'https://ror.org/011ssy811', 'en', 1, 'https://ror.org/011ssy811 International Prevention Research Institute'),
(6101, 'https://ror.org/03dy10t98', 'en', 1, 'https://ror.org/03dy10t98 National Geophysical Research Institute ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤­ą„‚ą¤­ą„Œą¤¤ą¤æą¤•ą„€ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą°œą°¾ą°¤ą±€ą°Æ ą°­ą±‚ą°­ą±Œą°¤ą°æą°• పరిశోధనా ą°øą°‚ą°øą±ą°„ ą“Øą“¾ą“·ą“£ąµ½ ą“œą“æą“Æąµ‹ą“«ą“æą“øą“æą“•ąµą“•ąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ,ą“¹ąµˆą“¦ą“°ą“¾ą“¬ą“¾ą“¦ąµ'),
(6102, 'https://ror.org/003jsdw96', 'en', 1, 'https://ror.org/003jsdw96 Macedonian Academy of Sciences and Arts'),
(6103, 'https://ror.org/0421jm542', 'no_lang_code', 1, 'https://ror.org/0421jm542 MagMutual (United States)'),
(6104, 'https://ror.org/0593p4448', 'en', 1, 'https://ror.org/0593p4448 International Rice Research Institute'),
(6105, 'https://ror.org/05ftwc327', 'en', 1, 'https://ror.org/05ftwc327 International Tomography Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ томографический центр Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(6106, 'https://ror.org/02pnmd628', 'en', 1, 'https://ror.org/02pnmd628 American Foundation for Donation and Transplantation'),
(6107, 'https://ror.org/033c6ba10', 'en', 1, 'https://ror.org/033c6ba10 Southcentral Foundation'),
(6108, 'https://ror.org/021g0dt18', 'no_lang_code', 1, 'https://ror.org/021g0dt18 International Trypanotolerance Centre'),
(6109, 'https://ror.org/03tebt685', 'en', 1, 'https://ror.org/03tebt685 Malawi-Liverpool-Wellcome Trust Clinical Research Programme'),
(6110, 'https://ror.org/0220wzg80', 'no_lang_code', 1, 'https://ror.org/0220wzg80 South Australian Water Corporation'),
(6111, 'https://ror.org/05megwx07', 'en', 1, 'https://ror.org/05megwx07 Southern California Orthopedic Institute'),
(6112, 'https://ror.org/00m79dm66', 'en', 1, 'https://ror.org/00m79dm66 Iona College'),
(6113, 'https://ror.org/02xrwdh93', 'en', 1, 'https://ror.org/02xrwdh93 Southern College of Optometry'),
(6114, 'https://ror.org/054vepm81', 'en', 1, 'https://ror.org/054vepm81 Southern Colorado Clinic'),
(6115, 'https://ror.org/009h0v784', 'it', 1, 'https://ror.org/009h0v784 Fondazione Istituto Neurologico Nazionale Casimiro Mondino'),
(6116, 'https://ror.org/05m5j6s60', 'en', 1, 'https://ror.org/05m5j6s60 University of Saint Joseph UniversitƩ saint joseph'),
(6117, 'https://ror.org/05tzq2c96', 'it', 1, 'https://ror.org/05tzq2c96 Centro Neurolesi Bonino Pulejo'),
(6118, 'https://ror.org/03ckh6215', 'en', 1, 'https://ror.org/03ckh6215 National Institute of Genetic Engineering and Biotechnology Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł…Ł„ŁŠ Ł…Ł‡Ł†ŲÆŲ³ŁŠ Ś˜Ł†ŲŖŁŠŁƒ و زيست ŁŁ†Ų§ŁˆŲ±ŁŠ'),
(6119, 'https://ror.org/00j0kxp54', 'en', 1, 'https://ror.org/00j0kxp54 Russian Academy of Natural Sciences'),
(6120, 'https://ror.org/00kv87w35', 'it', 1, 'https://ror.org/00kv87w35 Istituto Nazionale per le Malattie Infettive Lazzaro Spallanzani'),
(6121, 'https://ror.org/05w1q1c88', 'it', 1, 'https://ror.org/05w1q1c88 Policlinico San Matteo Fondazione'),
(6122, 'https://ror.org/02aqv1x10', 'en', 1, 'https://ror.org/02aqv1x10 Marie Curie'),
(6123, 'https://ror.org/055kym783', 'en', 1, 'https://ror.org/055kym783 Southern New England Rehabilitation Center'),
(6124, 'https://ror.org/003nnep52', 'pt', 1, 'https://ror.org/003nnep52 Irmandade da Santa Casa de Misericórdia de São Paulo'),
(6125, 'https://ror.org/04742vj55', 'en', 1, 'https://ror.org/04742vj55 Cardiff Royal Infirmary'),
(6126, 'https://ror.org/01c7jsk34', 'en', 1, 'https://ror.org/01c7jsk34 National Institute for Pharmaceutical Research and Development'),
(6127, 'https://ror.org/05cajf655', 'en', 1, 'https://ror.org/05cajf655 Southwest College of Naturopathic Medicine & Health Sciences'),
(6128, 'https://ror.org/00ja2ye75', 'en', 1, 'https://ror.org/00ja2ye75 Salisbury NHS Foundation Trust'),
(6129, 'https://ror.org/01z4n2m85', 'it', 1, 'https://ror.org/01z4n2m85 Istituto Scientifico Italiano Colonna Vertebrale Italian Scientific Institute for the Spine'),
(6130, 'https://ror.org/05w07vs91', 'it', 1, 'https://ror.org/05w07vs91 Istituti Ospitalieri di Cremona'),
(6131, 'https://ror.org/01zzqep61', 'it', 1, 'https://ror.org/01zzqep61 Istituto di Tipizzazione Tissutale e Problemi della Dialisi'),
(6132, 'https://ror.org/04x1fkv72', 'no_lang_code', 1, 'https://ror.org/04x1fkv72 Istituto De Angeli (Italy)'),
(6133, 'https://ror.org/02s5xnv22', 'en', 1, 'https://ror.org/02s5xnv22 Spinal Diagnostics and Treatment Center'),
(6134, 'https://ror.org/03j3jr069', 'no_lang_code', 1, 'https://ror.org/03j3jr069 DSM (United States)'),
(6135, 'https://ror.org/02b5mfy68', 'it', 1, 'https://ror.org/02b5mfy68 Istituto Dermopatico dell''Immacolata'),
(6136, 'https://ror.org/00j707644', 'it', 1, 'https://ror.org/00j707644 Azienda Ospedaliera San Camillo-Forlanini Ospedale Carlo Forlanini'),
(6137, 'https://ror.org/03bcvkf46', 'en', 1, 'https://ror.org/03bcvkf46 Fleet Science Center'),
(6138, 'https://ror.org/054ye0e45', 'it', 1, 'https://ror.org/054ye0e45 Istituto di Analisi dei Sistemi ed Informatica Antonio Ruberti'),
(6139, 'https://ror.org/01fk4js58', 'en', 1, 'https://ror.org/01fk4js58 Sacred Space Foundation'),
(6140, 'https://ror.org/01y3v6r39', 'en', 1, 'https://ror.org/01y3v6r39 Spine Institute of Louisiana'),
(6141, 'https://ror.org/03zhmy467', 'en', 1, 'https://ror.org/03zhmy467 San Gallicano Hospital'),
(6142, 'https://ror.org/04b1sh213', 'en', 1, 'https://ror.org/04b1sh213 National Institute for Viral Disease Control and Prevention'),
(6143, 'https://ror.org/01dy2q607', 'it', 1, 'https://ror.org/01dy2q607 Istituto di Biomedicina e di Immunologia Molecolare Alberto Monroy'),
(6144, 'https://ror.org/03qpd8w66', 'it', 1, 'https://ror.org/03qpd8w66 Institute of Molecular Genetics Luigi Luca Cavalli-Sforza Istituto di Genetica Molecolare'),
(6145, 'https://ror.org/04t24x986', 'no_lang_code', 1, 'https://ror.org/04t24x986 Novartis (Austria)'),
(6146, 'https://ror.org/000vy8681', 'en', 1, 'https://ror.org/000vy8681 National Institute of Agricultural Science and Technology'),
(6147, 'https://ror.org/00h7p4v21', 'en', 1, 'https://ror.org/00h7p4v21 Sri Jayadeva Institute of Cardiovascular Sciences and Research'),
(6148, 'https://ror.org/00jx6qy10', 'en', 1, 'https://ror.org/00jx6qy10 Maulana Azad Institute of Dental Sciences'),
(6149, 'https://ror.org/01t413275', 'en', 1, 'https://ror.org/01t413275 Sri Ramakrishna Institute of Paramedical Sciences'),
(6150, 'https://ror.org/01a0veq54', 'no_lang_code', 1, 'https://ror.org/01a0veq54 Sri Gokulam Hospital'),
(6151, 'https://ror.org/04ek3zb20', 'de', 1, 'https://ror.org/04ek3zb20 Max Grundig Hospital Max Grundig Klinik'),
(6152, 'https://ror.org/022jc0g24', 'en', 1, 'https://ror.org/022jc0g24 Max Planck Institute for Developmental Biology Max-Planck-Institut für Entwicklungsbiologie'),
(6153, 'https://ror.org/00xkqe770', 'en', 1, 'https://ror.org/00xkqe770 Epsom and St Helier University Hospitals NHS Trust'),
(6154, 'https://ror.org/04zbejj85', 'en', 1, 'https://ror.org/04zbejj85 Ibaraki Prefectural Livestock Center ē•œē”£ć‚»ćƒ³ć‚æćƒ¼ļ¼čŒØåŸŽēœŒ'),
(6155, 'https://ror.org/044g3zk14', 'en', 1, 'https://ror.org/044g3zk14 Max Planck Institute for Plant Breeding Research Max-Planck-Institut für Pflanzenzüchtungsforschung'),
(6156, 'https://ror.org/026nmvv73', 'en', 1, 'https://ror.org/026nmvv73 Max Planck Institute for Biological Cybernetics Max-Planck-Institut für Biologische Kybernetik'),
(6157, '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'),
(6158, 'https://ror.org/032msy923', 'no_lang_code', 1, 'https://ror.org/032msy923 Santen (Japan) å‚å¤©č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(6159, 'https://ror.org/0424g0k78', 'it', 1, 'https://ror.org/0424g0k78 Istituto Giannina Gaslini'),
(6160, 'https://ror.org/02h1nk258', 'en', 1, 'https://ror.org/02h1nk258 Max Planck Institute for Brain Research Max-Planck-Institut für Hirnforschung'),
(6161, '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'),
(6162, 'https://ror.org/02hes1t22', 'no_lang_code', 1, 'https://ror.org/02hes1t22 Sapporo Holdings (Japan) ć‚µćƒƒćƒćƒ­ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(6163, 'https://ror.org/03q2s1r54', 'en', 1, 'https://ror.org/03q2s1r54 National Institute of Ayurveda ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6164, 'https://ror.org/014t21j89', 'en', 1, 'https://ror.org/014t21j89 Sarah Cannon'),
(6165, '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'),
(6166, 'https://ror.org/02a33b393', 'en', 1, 'https://ror.org/02a33b393 Max Planck Institute for Evolutionary Anthropology Max-Planck-Institut für Evolutionäre Anthropologie'),
(6167, 'https://ror.org/012a41834', 'en', 1, 'https://ror.org/012a41834 National Institute of Biological Resources'),
(6168, 'https://ror.org/016chgx50', 'no_lang_code', 1, 'https://ror.org/016chgx50 Sasaki Institute ä½ć€…ęœØē ”ē©¶ę‰€'),
(6169, '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'),
(6170, 'https://ror.org/005df7g82', 'en', 1, 'https://ror.org/005df7g82 Saudi Center for Organ Transplantation'),
(6171, 'https://ror.org/01w19ak89', 'en', 1, 'https://ror.org/01w19ak89 Max Planck Institute for Informatics Max-Planck-Institut für Informatik'),
(6172, 'https://ror.org/02385fa51', 'en', 1, 'https://ror.org/02385fa51 Max Planck Institute for Marine Microbiology Max-Planck-Institut für Marine Mikrobiologie'),
(6173, 'https://ror.org/00gpcjc06', 'no_lang_code', 1, 'https://ror.org/00gpcjc06 Malesci (Italy)'),
(6174, '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'),
(6175, 'https://ror.org/03ate3e03', 'en', 1, 'https://ror.org/03ate3e03 Max Planck Institute for Molecular Genetics Max-Planck-Institut für Molekulare Genetik'),
(6176, 'https://ror.org/00yd9m083', 'it', 1, 'https://ror.org/00yd9m083 Istituto Nazionale di Ricerca per gli Alimenti e la Nutrizione'),
(6177, 'https://ror.org/00cpb6264', 'it', 1, 'https://ror.org/00cpb6264 Istituto Neurologico Mediterraneo'),
(6178, 'https://ror.org/02rthxz10', 'en', 1, 'https://ror.org/02rthxz10 St Vincent''s Clinic'),
(6179, 'https://ror.org/04dq56617', 'en', 1, 'https://ror.org/04dq56617 Max Planck Institute of Psychiatry Max-Planck-Institut für Psychiatrie'),
(6180, 'https://ror.org/01pwbmp71', 'en', 1, 'https://ror.org/01pwbmp71 Schizophrenia Research Foundation'),
(6181, 'https://ror.org/04n7py080', 'en', 1, 'https://ror.org/04n7py080 National Institute for Mathematical Sciences'),
(6182, 'https://ror.org/04wadq306', 'en', 1, 'https://ror.org/04wadq306 Candiolo Cancer Institute Istituto di Candiolo'),
(6183, 'https://ror.org/0492sjc74', 'en', 1, 'https://ror.org/0492sjc74 Max Planck Institute for the History of Science Max-Planck-Institut für Wissenschaftsgeschichte'),
(6184, 'https://ror.org/01220jp31', 'it', 1, 'https://ror.org/01220jp31 IRCCS Policlinico San Donato'),
(6185, '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'),
(6186, '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'),
(6187, 'https://ror.org/013wkc921', 'it', 1, 'https://ror.org/013wkc921 Istituto Scientifico Romagnolo per lo Studio e la Cura dei Tumori'),
(6188, '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'),
(6189, 'https://ror.org/018azgd14', 'en', 1, 'https://ror.org/018azgd14 National Institute of Cholera and Enteric Diseases'),
(6190, 'https://ror.org/01vjhzs23', 'sk', 1, 'https://ror.org/01vjhzs23 Onkologický Ústav Svätej Alžbety'),
(6191, 'https://ror.org/01ks7f963', 'en', 1, 'https://ror.org/01ks7f963 National Center for Disease Control ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą¤°ą„ą¤—ą¤œą¤Øą„ą¤Æ ą¤°ą„‹ą¤— ą¤Øą¤æą¤Æą¤‚ą¤¤ą„ą¤°ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(6192, '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'),
(6193, 'https://ror.org/05h8pb290', 'fr', 1, 'https://ror.org/05h8pb290 Institut National de Criminalistique et de Criminologie Nationaal Instituut voor Criminalistiek en Criminologie'),
(6194, 'https://ror.org/053g6zg46', 'en', 1, 'https://ror.org/053g6zg46 Institute of Crop Science ę¬”äø–ä»£ä½œē‰©é–‹ē™ŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(6195, 'https://ror.org/05r7f8853', 'it', 1, 'https://ror.org/05r7f8853 Istituto Zooprofilattico Sperimentale del Mezzogiorno'),
(6196, 'https://ror.org/01btzz102', 'en', 1, 'https://ror.org/01btzz102 University of Health Sciences and Pharmacy'),
(6197, 'https://ror.org/0243gzr89', 'en', 1, 'https://ror.org/0243gzr89 Max Planck Institut für Biologie Max Planck Institute for Biology'),
(6198, 'https://ror.org/0445at860', 'it', 1, 'https://ror.org/0445at860 Istituto Zooprofilattico Sperimentale dell''Umbria e delle Marche'),
(6199, 'https://ror.org/05x7pyy46', 'en', 1, 'https://ror.org/05x7pyy46 St. Louis Testing Laboratories'),
(6200, 'https://ror.org/00f419y92', 'en', 1, 'https://ror.org/00f419y92 St. Luke''s Cataract and Laser Institute'),
(6201, 'https://ror.org/0370dwx56', 'it', 1, 'https://ror.org/0370dwx56 Istituto Zooprofilattico Sperimentale della Sardegna'),
(6202, 'https://ror.org/011471042', 'en', 1, 'https://ror.org/011471042 National Institute of Epidemiology'),
(6203, 'https://ror.org/04n6qtb21', 'en', 1, 'https://ror.org/04n6qtb21 National Institute of Fitness and Sports in Kanoya 鹿屋体育大学'),
(6204, 'https://ror.org/014142c83', 'en', 1, 'https://ror.org/014142c83 National Institute for Food and Nutrition Science'),
(6205, 'https://ror.org/00agtat91', 'de', 1, 'https://ror.org/00agtat91 StƤdtisches Klinikum Karlsruhe'),
(6206, 'https://ror.org/03pfshj32', 'de', 1, 'https://ror.org/03pfshj32 Munich Municipal Hospital Group München Klinik'),
(6207, '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'),
(6208, 'https://ror.org/009j32424', 'en', 1, 'https://ror.org/009j32424 Institute of Livestock and Grassland Science ē•œē”£ē ”ē©¶éƒØé–€'),
(6209, 'https://ror.org/02mqbx112', 'en', 1, 'https://ror.org/02mqbx112 Institut National de Neurologie Mongi-Ben Hamida National Institute of Neurology Mongi-Ben Hamida'),
(6210, 'https://ror.org/01b4q9c55', 'hu', 1, 'https://ror.org/01b4q9c55 National Institute of Clinical Neurosciences OrszƔgos IdegsebƩszeti TudomƔnyos IntƩzet'),
(6211, 'https://ror.org/04t18m760', 'en', 1, 'https://ror.org/04t18m760 National Institute of Nutrition Viện Dinh DưỔng Quốc Gia'),
(6212, 'https://ror.org/05pp5b412', 'en', 1, 'https://ror.org/05pp5b412 Beijing Proteome Research Center'),
(6213, 'https://ror.org/052cjbe24', 'en', 1, 'https://ror.org/052cjbe24 National Institute of Oceanography and Fisheries'),
(6214, 'https://ror.org/00f1vw968', 'en', 1, 'https://ror.org/00f1vw968 KentuckyOne Health'),
(6215, 'https://ror.org/02kjgsq44', 'en', 1, 'https://ror.org/02kjgsq44 National Institute of Oncology'),
(6216, 'https://ror.org/04yzcpd71', 'no_lang_code', 1, 'https://ror.org/04yzcpd71 Janssen (Belgium)'),
(6217, 'https://ror.org/0132nee26', 'fr', 1, 'https://ror.org/0132nee26 Institut National d''Oncologie'),
(6218, 'https://ror.org/023edjq13', 'no_lang_code', 1, 'https://ror.org/023edjq13 Johnson & Johnson (Germany)'),
(6219, 'https://ror.org/03mk3s709', 'hu', 1, 'https://ror.org/03mk3s709 OrszÔgos PszichiÔtriai és Neurológiai Intézet'),
(6220, 'https://ror.org/032w6bp80', 'no_lang_code', 1, 'https://ror.org/032w6bp80 State Volunteer Mutual Insurance (United States)'),
(6221, 'https://ror.org/02brpaf34', 'it', 1, 'https://ror.org/02brpaf34 Istituto Ortopedico Gaetano Pini'),
(6222, 'https://ror.org/01njgag08', 'en', 1, 'https://ror.org/01njgag08 Japan Women''s College of Physical Education ę—„ęœ¬å„³å­ä½“č‚²å¤§å­¦'),
(6223, 'https://ror.org/0418yqg16', 'en', 1, 'https://ror.org/0418yqg16 National Institute of Pharmaceutical Education and Research ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤«ą¤¾ą¤°ą„ą¤®ą¤¾ą¤øą„ą¤Æą„‚ą¤Ÿą¤æą¤•ą¤² ą¤ą¤œą„ą¤•ą„‡ą¤¶ą¤Ø ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą°Øą±‡ą°·ą°Øą°²ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°«ą°¾ą°°ą±ą°®ą°øą±ą°Æą±‚ą°Ÿą°æą°•ą°²ą± ą°Žą°”ą±ą°Æą±ą°•ą±‡ą°·ą°Øą±'),
(6224, 'https://ror.org/04zw11527', 'en', 1, 'https://ror.org/04zw11527 National Institute of Plant Genome Research'),
(6225, 'https://ror.org/004a2wv92', 'en', 1, 'https://ror.org/004a2wv92 National Institute of Dental and Craniofacial Research'),
(6226, 'https://ror.org/009azd705', 'it', 1, 'https://ror.org/009azd705 Figli Adottivi e Genitori Naturali'),
(6227, 'https://ror.org/0538gdx71', 'en', 1, 'https://ror.org/0538gdx71 Jawaharlal Nehru Centre for Advanced Scientific Research'),
(6228, 'https://ror.org/04qatqr61', 'en', 1, 'https://ror.org/04qatqr61 Myers-JDC-Brookdale Institute'),
(6229, 'https://ror.org/031vxrj29', 'en', 1, 'https://ror.org/031vxrj29 National Institute of Malaria Research ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą¤²ą„‡ą¤°ą¤æą¤Æą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6230, 'https://ror.org/05gabt952', 'hu', 1, 'https://ror.org/05gabt952 OrszÔgos Reumatológiai és FizioterÔpiÔs Intézet'),
(6231, 'https://ror.org/022r50851', 'en', 1, 'https://ror.org/022r50851 Steadman Clinic'),
(6232, 'https://ror.org/03msykc12', 'en', 1, 'https://ror.org/03msykc12 Steadman Philippon Research Institute'),
(6233, 'https://ror.org/0248zc213', 'en', 1, 'https://ror.org/0248zc213 Christus Health'),
(6234, 'https://ror.org/02ega5r05', 'en', 1, 'https://ror.org/02ega5r05 Mendez National Institute of Transplantation'),
(6235, 'https://ror.org/03qmsrr79', 'no_lang_code', 1, 'https://ror.org/03qmsrr79 Steris (United States)'),
(6236, 'https://ror.org/01pbz7c04', 'en', 1, 'https://ror.org/01pbz7c04 Mediterranean Agronomic Institute of Chania'),
(6237, 'https://ror.org/00e2hg029', 'no_lang_code', 1, 'https://ror.org/00e2hg029 Sterling Research Group (United States)'),
(6238, 'https://ror.org/02vajn858', 'en', 1, 'https://ror.org/02vajn858 CGH Medical Center'),
(6239, 'https://ror.org/059r8r572', 'en', 1, 'https://ror.org/059r8r572 Johnson County Community College'),
(6240, 'https://ror.org/02hmjce72', 'no_lang_code', 1, 'https://ror.org/02hmjce72 Medtronic (Netherlands)'),
(6241, 'https://ror.org/04cjpzj07', 'en', 1, 'https://ror.org/04cjpzj07 Meiho University'),
(6242, 'https://ror.org/059mgez24', 'en', 1, 'https://ror.org/059mgez24 National Institute of Veterinary Research'),
(6243, 'https://ror.org/00exr1241', 'en', 1, 'https://ror.org/00exr1241 Joint Center for Structural Genomics'),
(6244, 'https://ror.org/05db0nr49', 'en', 1, 'https://ror.org/05db0nr49 San Francisco Center for Psychoanalysis'),
(6245, 'https://ror.org/00qp2dq07', 'nl', 1, 'https://ror.org/00qp2dq07 Sticares InterACT'),
(6246, 'https://ror.org/027tjex48', 'no_lang_code', 1, 'https://ror.org/027tjex48 Meiji (Japan) ę˜Žę²»'),
(6247, 'https://ror.org/00x19de83', 'en', 1, 'https://ror.org/00x19de83 International Centers for Excellence in Research'),
(6248, 'https://ror.org/05k4a7g87', 'en', 1, 'https://ror.org/05k4a7g87 National Kidney and Transplant Institute'),
(6249, 'https://ror.org/01n45xa04', 'en', 1, 'https://ror.org/01n45xa04 National Kidney Foundation'),
(6250, 'https://ror.org/051mrhb02', 'hu', 1, 'https://ror.org/051mrhb02 OrszÔgos KorÔnyi Tbc és Pulmonológiai Intézet'),
(6251, 'https://ror.org/043bhwh19', 'it', 1, 'https://ror.org/043bhwh19 Istituto Nazionale Biostrutture e Biosistemi'),
(6252, 'https://ror.org/00dbnf369', 'en', 1, 'https://ror.org/00dbnf369 National Marine Mammal Foundation'),
(6253, 'https://ror.org/0211zmf46', 'en', 1, 'https://ror.org/0211zmf46 National Metallurgical Laboratory'),
(6254, 'https://ror.org/01ab3z839', 'en', 1, 'https://ror.org/01ab3z839 National Perinatal Information Center'),
(6255, 'https://ror.org/008vp0c43', 'en', 1, 'https://ror.org/008vp0c43 Sunderland Eye Infirmary'),
(6256, 'https://ror.org/01mtp2k51', 'no_lang_code', 1, 'https://ror.org/01mtp2k51 Sunstar (Japan) ć‚µćƒ³ć‚¹ć‚æćƒ¼'),
(6257, 'https://ror.org/04yt6jn66', 'en', 1, 'https://ror.org/04yt6jn66 National Rehabilitation Center źµ­ė¦½ģž¬ķ™œģ›'),
(6258, 'https://ror.org/04154pe94', 'en', 1, 'https://ror.org/04154pe94 Kanagawa Cardiovascular and Respiratory Center ē„žå„ˆå·ēœŒē«‹å¾Ŗē’°å™Øå‘¼åøå™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(6259, 'https://ror.org/0464y8713', 'no_lang_code', 1, 'https://ror.org/0464y8713 Trinity Investments (Japan)'),
(6260, 'https://ror.org/05dd1kk08', 'no_lang_code', 1, 'https://ror.org/05dd1kk08 Suraj Eye Institute'),
(6261, 'https://ror.org/010s5ca44', 'en', 1, 'https://ror.org/010s5ca44 Memphis Fire Services'),
(6262, 'https://ror.org/03afd8w19', 'pt', 1, 'https://ror.org/03afd8w19 Secretaria da SaĆŗde'),
(6263, 'https://ror.org/03pe98v12', 'en', 1, 'https://ror.org/03pe98v12 Surgical Materials Testing Laboratory'),
(6264, 'https://ror.org/01tw7ew41', 'en', 1, 'https://ror.org/01tw7ew41 Surrey Place Centre'),
(6265, 'https://ror.org/05bhsww40', 'en', 1, 'https://ror.org/05bhsww40 Scripps Health'),
(6266, 'https://ror.org/00h2tq173', 'no_lang_code', 1, 'https://ror.org/00h2tq173 Swami Vivekananda Yoga Anusandhana Samsthana'),
(6267, 'https://ror.org/02zan5e48', 'en', 1, 'https://ror.org/02zan5e48 Menorah Park Center for Senior Living'),
(6268, 'https://ror.org/02vf4sk45', 'en', 1, 'https://ror.org/02vf4sk45 Institute of Evolutionary Physiology and Biochemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ²Š¾Š»ŃŽŃ†ŠøŠ¾Š½Š½Š¾Š¹ физиологии Šø биохимии им. И.М. Деченова Российской акаГемии наук'),
(6269, 'https://ror.org/031x12x59', 'de', 1, 'https://ror.org/031x12x59 Katholisches Klinikum Koblenz'),
(6270, 'https://ror.org/0586k5242', 'no_lang_code', 1, 'https://ror.org/0586k5242 Kirin (Japan) ć‚­ćƒŖćƒ³ę Ŗå¼ä¼šē¤¾'),
(6271, 'https://ror.org/01pphqm45', 'en', 1, 'https://ror.org/01pphqm45 Kazan Institute of Biochemistry and Biophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Казанский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø биофизики Казанского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(6272, 'https://ror.org/05355vt65', 'pt', 1, 'https://ror.org/05355vt65 Secretaria Municipal de SaĆŗde'),
(6273, 'https://ror.org/0499w7e46', 'en', 1, 'https://ror.org/0499w7e46 Kelsey-Seybold Clinic'),
(6274, 'https://ror.org/03kjpzv42', 'en', 1, 'https://ror.org/03kjpzv42 Centro Espacial John F. Kennedy Kennedy Space Center'),
(6275, 'https://ror.org/05r99t981', 'en', 1, 'https://ror.org/05r99t981 Segawa Neurological Clinic for Children å­ä¾›ć®ćŸć‚ć®ē€¬å·ē„žēµŒå­¦ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(6276, 'https://ror.org/00nnyvd56', 'en', 1, 'https://ror.org/00nnyvd56 National Research Institute of Chinese Medicine åœ‹ē«‹äø­åœ‹é†«č—„ē ”ē©¶ę‰€'),
(6277, 'https://ror.org/039922k61', 'en', 1, 'https://ror.org/039922k61 Kenya Agricultural Research Institute'),
(6278, 'https://ror.org/01ac4hv54', 'it', 1, 'https://ror.org/01ac4hv54 Semeion Centro Ricerche di Scienze della Comunicazione'),
(6279, 'https://ror.org/00z7n1h55', 'en', 1, 'https://ror.org/00z7n1h55 State Research Center of Virology and Biotechnology VECTOR Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø Šø биотехнологии Вектор'),
(6280, 'https://ror.org/030zc7t66', 'no_lang_code', 1, 'https://ror.org/030zc7t66 Sunovion (United States)'),
(6281, 'https://ror.org/00bqy3h17', 'en', 1, 'https://ror.org/00bqy3h17 Merrimack College'),
(6282, 'https://ror.org/004pk7083', 'en', 1, 'https://ror.org/004pk7083 Cedars-Sinai Kerlan-Jobe Institute'),
(6283, 'https://ror.org/05hacyq28', 'en', 1, 'https://ror.org/05hacyq28 Kessler Foundation'),
(6284, 'https://ror.org/05jccej20', 'fr', 1, 'https://ror.org/05jccej20 Centre Hospitalier RƩgional de Huy'),
(6285, 'https://ror.org/042ssp221', 'en', 1, 'https://ror.org/042ssp221 Methodist Rehabilitation Center'),
(6286, 'https://ror.org/03rbjx398', 'en', 1, 'https://ror.org/03rbjx398 National Suicide Research Foundation'),
(6287, 'https://ror.org/01spwt212', 'en', 1, 'https://ror.org/01spwt212 Swiss Paraplegic Center'),
(6288, 'https://ror.org/04jk2jb97', 'en', 1, 'https://ror.org/04jk2jb97 Swiss Paraplegic Research'),
(6289, 'https://ror.org/01cx4xa29', 'de', 1, 'https://ror.org/01cx4xa29 Fondation pour la SƩcuritƩ des Patients Stiftung Patientensicherheit Schweiz'),
(6290, 'https://ror.org/05bgcav40', 'en', 1, 'https://ror.org/05bgcav40 National Taichung University of Science and Technology'),
(6291, 'https://ror.org/027h1w574', 'en', 1, 'https://ror.org/027h1w574 Kidwai Memorial Institute of Oncology'),
(6292, 'https://ror.org/00z0d6447', 'no_lang_code', 1, 'https://ror.org/00z0d6447 Kikkoman (Japan) ć‚­ćƒƒć‚³ćƒ¼ćƒžćƒ³ę Ŗå¼ä¼šē¤¾'),
(6293, 'https://ror.org/01vzd5j10', 'en', 1, 'https://ror.org/01vzd5j10 National Tuberculosis Institute'),
(6294, 'https://ror.org/05mgcmd27', 'no_lang_code', 1, 'https://ror.org/05mgcmd27 Medpace (United States)');
INSERT INTO `rors` VALUES
(6295, 'https://ror.org/04mbf8e26', 'en', 1, 'https://ror.org/04mbf8e26 Methodist Sports Medicine'),
(6296, 'https://ror.org/05t2trr67', 'en', 1, 'https://ror.org/05t2trr67 Miami Hand Center'),
(6297, 'https://ror.org/01p5m7v59', 'en', 1, 'https://ror.org/01p5m7v59 National Vaccine and Serum Institute'),
(6298, 'https://ror.org/00qeks103', 'en', 1, 'https://ror.org/00qeks103 Chris O’Brien Lifehouse'),
(6299, 'https://ror.org/0464edn46', 'en', 1, 'https://ror.org/0464edn46 King''s College - Pennsylvania'),
(6300, 'https://ror.org/02zdz1m23', 'en', 1, 'https://ror.org/02zdz1m23 Ministry of Agriculture, Forestry and Fisheries č¾²ęž—ę°“ē”£ēœ'),
(6301, 'https://ror.org/04thckx15', 'en', 1, 'https://ror.org/04thckx15 Michigan Ear Institute'),
(6302, 'https://ror.org/00r3xw008', 'en', 1, 'https://ror.org/00r3xw008 Michigan Headache and Neurological Institute'),
(6303, 'https://ror.org/05kwjwj05', 'en', 1, 'https://ror.org/05kwjwj05 Scripps Clinic'),
(6304, 'https://ror.org/04a2yjk98', 'no_lang_code', 1, 'https://ror.org/04a2yjk98 Lundbeck (United States)'),
(6305, 'https://ror.org/0593f3b93', 'en', 1, 'https://ror.org/0593f3b93 Michigan Psychoanalytic Institute'),
(6306, 'https://ror.org/00jshg714', 'de', 1, 'https://ror.org/00jshg714 Klinikum Aschaffenburg'),
(6307, 'https://ror.org/03b0k9c14', 'en', 1, 'https://ror.org/03b0k9c14 University Hospital Augsburg UniversitƤtsklinikum Augsburg'),
(6308, 'https://ror.org/016cdf784', 'no_lang_code', 1, 'https://ror.org/016cdf784 BioReliance (United States)'),
(6309, 'https://ror.org/04qpstv89', 'en', 1, 'https://ror.org/04qpstv89 National Veterinary Research and Quarantine Service'),
(6310, 'https://ror.org/05j1w2b44', 'de', 1, 'https://ror.org/05j1w2b44 Klinikum Bremen-Mitte'),
(6311, 'https://ror.org/04g9sfv84', 'en', 1, 'https://ror.org/04g9sfv84 Syrian Center for Tobacco Studies'),
(6312, 'https://ror.org/00tgps059', 'no_lang_code', 1, 'https://ror.org/00tgps059 Novosibirsk Institute of Organic Chemistry Š˜ŃŃ‚Š¾Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń справка ŠŠ˜ŠžŠ„'),
(6313, 'https://ror.org/00berct97', 'no_lang_code', 1, 'https://ror.org/00berct97 NTT (Japan) ę—„ęœ¬é›»äæ”é›»č©±ę Ŗå¼ä¼šē¤¾'),
(6314, 'https://ror.org/027ade760', 'en', 1, 'https://ror.org/027ade760 Tabba Heart Institute'),
(6315, 'https://ror.org/0149xpj56', 'en', 1, 'https://ror.org/0149xpj56 Midwest Cardiovascular Research Foundation'),
(6316, 'https://ror.org/03s96eq95', 'en', 1, 'https://ror.org/03s96eq95 Tacoma/Valley Radiation Oncology Centers'),
(6317, 'https://ror.org/04244wn07', 'en', 1, 'https://ror.org/04244wn07 Nutrition Foundation of India'),
(6318, 'https://ror.org/02ah36853', 'en', 1, 'https://ror.org/02ah36853 Midwest Eye Institute'),
(6319, 'https://ror.org/02v50dx14', 'no_lang_code', 1, 'https://ror.org/02v50dx14 Taiho Pharmaceutical (Japan) 大鵬薬品巄愭'),
(6320, 'https://ror.org/05mt2wq31', 'de', 1, 'https://ror.org/05mt2wq31 Klinikum Leverkusen'),
(6321, 'https://ror.org/05fep6742', 'en', 1, 'https://ror.org/05fep6742 Midwest Orthopaedic Research Foundation'),
(6322, 'https://ror.org/045dv2h94', 'de', 1, 'https://ror.org/045dv2h94 Klinikum Ludwigsburg'),
(6323, 'https://ror.org/0187fh156', 'de', 1, 'https://ror.org/0187fh156 Isar-Amper-Klinikum München-Ost'),
(6324, 'https://ror.org/010qwhr53', 'en', 1, 'https://ror.org/010qwhr53 Klinikum Nürnberg Nuremberg Hospital'),
(6325, 'https://ror.org/033nw2736', 'no_lang_code', 1, 'https://ror.org/033nw2736 Taisho Pharmaceutical (Japan) 大正製薬'),
(6326, 'https://ror.org/04k4vsv28', 'de', 1, 'https://ror.org/04k4vsv28 Sana Klinikum Offenbach'),
(6327, 'https://ror.org/01t0n2c80', 'de', 1, 'https://ror.org/01t0n2c80 Klinikum Oldenburg'),
(6328, 'https://ror.org/04wg18j80', 'de', 1, 'https://ror.org/04wg18j80 Klinikum Saarbrücken'),
(6329, 'https://ror.org/03q8fh922', 'pl', 1, 'https://ror.org/03q8fh922 Military Institute of Hygiene and Epidemiology Wojskowy Instytut Higieny i Epidemiologii'),
(6330, 'https://ror.org/059jfth35', 'de', 1, 'https://ror.org/059jfth35 Klinikum Stuttgart'),
(6331, 'https://ror.org/00dqmaq38', 'it', 1, 'https://ror.org/00dqmaq38 Oasi Maria SS'),
(6332, 'https://ror.org/01skvfg56', 'en', 1, 'https://ror.org/01skvfg56 Tallahassee Community College'),
(6333, 'https://ror.org/03n52gt10', 'en', 1, 'https://ror.org/03n52gt10 Millennium Pain Center'),
(6334, 'https://ror.org/05ss99d25', 'en', 1, 'https://ror.org/05ss99d25 Tampa Bay Research Institute'),
(6335, 'https://ror.org/03bygaq51', 'no_lang_code', 1, 'https://ror.org/03bygaq51 Takeda (United States) ę­¦ē”°č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾, Takeda Yakuhin Kōgyō kabushiki gaisha'),
(6336, 'https://ror.org/03tghjn41', 'no_lang_code', 1, 'https://ror.org/03tghjn41 Ocular Surface Center'),
(6337, 'https://ror.org/03gt88b08', 'en', 1, 'https://ror.org/03gt88b08 Institute of Plant Physiology and Genetics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Ń„ŠøŠ·ŠøŠ¾Š»Š¾Š³ŠøŃ на Ń€Š°ŃŃ‚ŠµŠ½ŠøŃŃ‚Š° Šø генетика'),
(6338, 'https://ror.org/0224bx186', 'en', 1, 'https://ror.org/0224bx186 Nazareth College'),
(6339, 'https://ror.org/05s65ce35', 'en', 1, 'https://ror.org/05s65ce35 Tanabe Research Laboratories'),
(6340, 'https://ror.org/0419gy550', 'no_lang_code', 1, 'https://ror.org/0419gy550 Minamiaoyama Eye Clinic å—é’å±±ć‚¢ć‚¤ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(6341, 'https://ror.org/01v791m31', 'no_lang_code', 1, 'https://ror.org/01v791m31 NEC (United States) NEC Corporation of America'),
(6342, 'https://ror.org/03c09x508', 'es', 1, 'https://ror.org/03c09x508 Ministerio de Salud'),
(6343, 'https://ror.org/00xgy0333', 'en', 1, 'https://ror.org/00xgy0333 Tanzania Food and Nutrition Center'),
(6344, 'https://ror.org/02pyw0y06', 'en', 1, 'https://ror.org/02pyw0y06 Taos Orthopaedic Institute'),
(6345, 'https://ror.org/05jf3ct62', 'en', 1, 'https://ror.org/05jf3ct62 Ohlone College'),
(6346, 'https://ror.org/04ek06320', 'en', 1, 'https://ror.org/04ek06320 Energy and Resources Institute ą®†ą®±ąÆą®±ą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®³ą®™ąÆą®•ą®³ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(6347, 'https://ror.org/04hadk112', 'en', 1, 'https://ror.org/04hadk112 Institute of Genetics and Biophysics Istituto di Genetica e Biofisica'),
(6348, 'https://ror.org/034c0gr54', 'en', 1, 'https://ror.org/034c0gr54 Oklahoma Foundation for Digestive Research'),
(6349, 'https://ror.org/04c39t964', 'en', 1, 'https://ror.org/04c39t964 Olympic Park Sports Medicine Centre'),
(6350, 'https://ror.org/02gan0k07', 'en', 1, 'https://ror.org/02gan0k07 Onassis Cardiac Surgery Center Ī©ĪĪ‘Ī£Ī•Ī™ĪŸ ĪšĪ‘Ī”Ī”Ī™ĪŸĪ§Ī•Ī™Ī”ĪŸĪ„Ī”Ī“Ī™ĪšĪŸ ĪšĪ•ĪĪ¤Ī”ĪŸ'),
(6351, 'https://ror.org/00sj7sn30', 'pt', 1, 'https://ror.org/00sj7sn30 Prefeitura da Cidade do Rio de Janeiro'),
(6352, 'https://ror.org/02yry4472', 'en', 1, 'https://ror.org/02yry4472 All-China Sports Federation'),
(6353, 'https://ror.org/050hscv31', 'en', 1, 'https://ror.org/050hscv31 Nemours Children''s Clinic'),
(6354, 'https://ror.org/038kxkq33', 'no_lang_code', 1, 'https://ror.org/038kxkq33 Teijin (Japan) åøäŗŗę Ŗå¼ä¼šē¤¾'),
(6355, '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'),
(6356, 'https://ror.org/0093s9g83', 'en', 1, 'https://ror.org/0093s9g83 MinistĆØre du Travail Ontario Ministry of Labour'),
(6357, 'https://ror.org/01s6vf760', 'no_lang_code', 1, 'https://ror.org/01s6vf760 Tengion (United States)'),
(6358, 'https://ror.org/055p38x79', 'en', 1, 'https://ror.org/055p38x79 Ontario Tobacco Research Unit Unite de Recherche sur le Tabac de L''Ontario'),
(6359, 'https://ror.org/01txpgc43', 'no_lang_code', 1, 'https://ror.org/01txpgc43 Operational Technologies Corporation (United States)'),
(6360, 'https://ror.org/04vzpy492', 'en', 1, 'https://ror.org/04vzpy492 Orange County Heart Institute and Research Center'),
(6361, 'https://ror.org/0028z3k74', 'en', 1, 'https://ror.org/0028z3k74 Orange County Research Center'),
(6362, 'https://ror.org/012381002', 'en', 1, 'https://ror.org/012381002 Terasaki Foundation'),
(6363, 'https://ror.org/006qz8583', 'en', 1, 'https://ror.org/006qz8583 Mahatma Gandhi Kashi Vidyapith ą¤®ą¤¹ą¤¾ą¤¤ą„ą¤®ą¤¾ ą¤—ą¤¾ą¤ą¤§ą„€ ą¤•ą¤¾ą¤¶ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą®®ą®•ą®¾ą®¤ąÆą®®ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ ą®•ą®¾ą®šą®æ ą®µą®æą®¤ąÆą®Æą®¾ą®ŖąÆ€ą®Ÿą®®ąÆ'),
(6364, 'https://ror.org/02jkm3388', 'it', 1, 'https://ror.org/02jkm3388 Ministero degli Affari Esteri Ministry of Foreign Affairs and International Cooperation'),
(6365, 'https://ror.org/00anm2x55', 'en', 1, 'https://ror.org/00anm2x55 Ministry of Justice'),
(6366, 'https://ror.org/03nrb5p64', 'en', 1, 'https://ror.org/03nrb5p64 Adalet Bakanlığı Ministry of Justice'),
(6367, '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'),
(6368, 'https://ror.org/05tjbsh85', 'en', 1, 'https://ror.org/05tjbsh85 Ministry of Justice ę³•å‹™ēœ'),
(6369, 'https://ror.org/036gvnq39', 'en', 1, 'https://ror.org/036gvnq39 Ministry of Manpower ę–°åŠ å”äŗŗåŠ›éƒØ'),
(6370, 'https://ror.org/052qet256', 'no_lang_code', 1, 'https://ror.org/052qet256 Organix (United States)'),
(6371, 'https://ror.org/00v1wt879', 'es', 1, 'https://ror.org/00v1wt879 National Transplant Organization Organización Nacional de Trasplantes'),
(6372, 'https://ror.org/04s2z4291', 'en', 1, 'https://ror.org/04s2z4291 Nederlands Forensisch Instituut Netherlands Forensic Institute'),
(6373, 'https://ror.org/00g3zjf64', 'en', 1, 'https://ror.org/00g3zjf64 Texas Endosurgery Institute'),
(6374, 'https://ror.org/04ch01631', 'en', 1, 'https://ror.org/04ch01631 Ministry of Social Affairs and Social Services ×ž×©×Ø×“ הרווחה ×•×”×©×™×Ø×•×Ŗ×™× ×”×—×‘×Ø×Ŗ×™×™×ā€Ž'),
(6375, 'https://ror.org/05xq19q44', 'en', 1, 'https://ror.org/05xq19q44 Ministry of the Environment and Water Resources ę–°åŠ å”ēŽÆå¢ƒåŠę°“ęŗéƒØ'),
(6376, 'https://ror.org/02c241b98', 'en', 1, 'https://ror.org/02c241b98 Associated Skin Care Specialists'),
(6377, 'https://ror.org/00jc42j13', 'en', 1, 'https://ror.org/00jc42j13 Mississippi Sports Medicine and Orthopaedic Center'),
(6378, 'https://ror.org/018v91w71', 'en', 1, 'https://ror.org/018v91w71 Missouri Bone and Joint Center'),
(6379, 'https://ror.org/05tj1jy10', 'en', 1, 'https://ror.org/05tj1jy10 Texas Nerve and Paralysis Institute'),
(6380, 'https://ror.org/04hmqap24', 'en', 1, 'https://ror.org/04hmqap24 Netherlands Institute for Innovative Ocular Surgery'),
(6381, 'https://ror.org/039hmr469', 'en', 1, 'https://ror.org/039hmr469 Ono Clinic å°é‡Žć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(6382, 'https://ror.org/016d8zs37', 'en', 1, 'https://ror.org/016d8zs37 Methodist Healthcare'),
(6383, 'https://ror.org/04c51sp70', 'en', 1, 'https://ror.org/04c51sp70 Orthopaedic Research of Virginia'),
(6384, 'https://ror.org/02ggfyw45', 'en', 1, 'https://ror.org/02ggfyw45 Thai Red Cross Society'),
(6385, 'https://ror.org/0241wfp64', 'en', 1, 'https://ror.org/0241wfp64 Orthopedic Foot & Ankle Center'),
(6386, 'https://ror.org/01qt7mp11', 'en', 1, 'https://ror.org/01qt7mp11 Miyagi Prefectural Hospital Organization å®®åŸŽēœŒē«‹ē—…é™¢ę©Ÿę§‹'),
(6387, 'https://ror.org/04je9aj22', 'en', 1, 'https://ror.org/04je9aj22 Osborne Head and Neck Institute'),
(6388, 'https://ror.org/02czfmn65', 'en', 1, 'https://ror.org/02czfmn65 Thames Valley Children''s Centre'),
(6389, 'https://ror.org/01z89mt14', 'en', 1, 'https://ror.org/01z89mt14 Ottawa Regional Cancer Foundation'),
(6390, 'https://ror.org/02tmx5588', 'no_lang_code', 1, 'https://ror.org/02tmx5588 Danaher (United States)'),
(6391, 'https://ror.org/05n629g02', 'en', 1, 'https://ror.org/05n629g02 Molecular Research Institute'),
(6392, 'https://ror.org/0296s4x19', 'no_lang_code', 1, 'https://ror.org/0296s4x19 Orion Corporation (Finland) Orion Oyj'),
(6393, 'https://ror.org/00mgp8v69', 'en', 1, 'https://ror.org/00mgp8v69 Carter Center'),
(6394, 'https://ror.org/05j2wxx71', 'en', 1, 'https://ror.org/05j2wxx71 Western Maine Health'),
(6395, 'https://ror.org/026ejyb70', 'en', 1, 'https://ror.org/026ejyb70 Oxford Centre for Computational Neuroscience'),
(6396, 'https://ror.org/02swzn148', 'en', 1, 'https://ror.org/02swzn148 Pain Management Center of Paducah'),
(6397, 'https://ror.org/052gypd56', 'en', 1, 'https://ror.org/052gypd56 Nuclear Threat Initiative'),
(6398, 'https://ror.org/057jpj338', 'no_lang_code', 1, 'https://ror.org/057jpj338 Pall Corporation (United States)'),
(6399, 'https://ror.org/02v05yj51', 'en', 1, 'https://ror.org/02v05yj51 All Africa Leprosy Tuberculosis and Rehabilitation Training Centre'),
(6400, 'https://ror.org/00mvwb842', 'en', 1, 'https://ror.org/00mvwb842 Neuropsychiatric Research Institute'),
(6401, 'https://ror.org/02c5sgb74', 'en', 1, 'https://ror.org/02c5sgb74 Collaborative Research Group'),
(6402, 'https://ror.org/05hatwc22', 'en', 1, 'https://ror.org/05hatwc22 Palladin Institute of Biochemistry Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біохімії ім Šž.Š’ ŠŸŠ°Š»Š»Š°Š“Ń–Š½Š°'),
(6403, 'https://ror.org/01nqsgv54', 'en', 1, 'https://ror.org/01nqsgv54 Headache & Pain Center of Palm Beach'),
(6404, 'https://ror.org/000smmv87', 'no_lang_code', 1, 'https://ror.org/000smmv87 Morinaga Institute of Biological Science'),
(6405, 'https://ror.org/01tqja591', 'no_lang_code', 1, 'https://ror.org/01tqja591 Morinaga (Japan) ę£®ę°øč£½č“ę Ŗå¼ä¼šē¤¾'),
(6406, 'https://ror.org/00tb5pg67', 'en', 1, 'https://ror.org/00tb5pg67 Emory Clinic'),
(6407, 'https://ror.org/01wjn2x92', 'en', 1, 'https://ror.org/01wjn2x92 National Center for HIV/AIDS Viral Hepatitis STD and TB Prevention'),
(6408, 'https://ror.org/004n9sm55', 'en', 1, 'https://ror.org/004n9sm55 New England Center for Children'),
(6409, 'https://ror.org/00nvy8497', 'en', 1, 'https://ror.org/00nvy8497 Australia and New Zealand Dialysis and Transplant Registry'),
(6410, 'https://ror.org/02t110213', 'en', 1, 'https://ror.org/02t110213 New England College of Optometry'),
(6411, 'https://ror.org/053bg5z25', 'en', 1, 'https://ror.org/053bg5z25 New England Complex Systems Institute'),
(6412, 'https://ror.org/003fgzm76', 'en', 1, 'https://ror.org/003fgzm76 Mount Carmel College of Nursing'),
(6413, 'https://ror.org/016n06b36', 'en', 1, 'https://ror.org/016n06b36 Franciscan Hammond Clinic'),
(6414, 'https://ror.org/02e891h43', 'en', 1, 'https://ror.org/02e891h43 Mount Mercy University'),
(6415, 'https://ror.org/00jjs7680', 'en', 1, 'https://ror.org/00jjs7680 New Mexico Clinical Research & Osteoporosis Center'),
(6416, 'https://ror.org/05hek7k69', 'it', 1, 'https://ror.org/05hek7k69 Azienda di Rilievo Nazionale ed Alta Specializzazione'),
(6417, 'https://ror.org/05azenf09', 'en', 1, 'https://ror.org/05azenf09 New York Psychoanalytic Society and Institute'),
(6418, 'https://ror.org/056y35868', 'en', 1, 'https://ror.org/056y35868 New Zealand College of Chiropractic'),
(6419, 'https://ror.org/01qjmkr85', 'no_lang_code', 1, 'https://ror.org/01qjmkr85 Fonterra (New Zealand)'),
(6420, 'https://ror.org/01ass5t61', 'en', 1, 'https://ror.org/01ass5t61 Jean Hailes'),
(6421, 'https://ror.org/05p40t847', 'en', 1, 'https://ror.org/05p40t847 Newcastle upon Tyne Hospitals NHS Foundation Trust'),
(6422, 'https://ror.org/017shr829', 'no_lang_code', 1, 'https://ror.org/017shr829 LI-COR Biosciences (United States)'),
(6423, 'https://ror.org/02yj6hv88', 'no_lang_code', 1, 'https://ror.org/02yj6hv88 Pharis Biotec (Germany)'),
(6424, 'https://ror.org/04em2yk17', 'en', 1, 'https://ror.org/04em2yk17 Moredun Foundation'),
(6425, 'https://ror.org/03ks2a131', 'no_lang_code', 1, 'https://ror.org/03ks2a131 Mitre (United States)'),
(6426, 'https://ror.org/03e59a529', 'en', 1, 'https://ror.org/03e59a529 Molecular Cardiology and Neuromuscular Institute'),
(6427, 'https://ror.org/05jbyqz27', 'fr', 1, 'https://ror.org/05jbyqz27 Museum of Man MusƩe de l''Homme'),
(6428, 'https://ror.org/02ezy5072', 'no_lang_code', 1, 'https://ror.org/02ezy5072 Amgen (Germany)'),
(6429, 'https://ror.org/04agfm627', 'en', 1, 'https://ror.org/04agfm627 EngenderHealth'),
(6430, 'https://ror.org/035vrxy57', 'en', 1, 'https://ror.org/035vrxy57 Micro and Nanotechnology Innovation Centre'),
(6431, 'https://ror.org/058c0g260', 'en', 1, 'https://ror.org/058c0g260 Neuroscience Education Institute'),
(6432, 'https://ror.org/00h1gfz86', 'nl', 1, 'https://ror.org/00h1gfz86 AZ Klina'),
(6433, 'https://ror.org/048pv7s22', 'nl', 1, 'https://ror.org/048pv7s22 AZ Maria Middelares'),
(6434, 'https://ror.org/0411byy62', 'nl', 1, 'https://ror.org/0411byy62 AZ Sint-Blasius'),
(6435, 'https://ror.org/00j1y9t40', 'fr', 1, 'https://ror.org/00j1y9t40 Laboratoire d''Enzymologie et Biochimie Structurales'),
(6436, 'https://ror.org/03xtz2n86', 'en', 1, 'https://ror.org/03xtz2n86 European Society for Medical Oncology'),
(6437, 'https://ror.org/051cjrp31', 'no_lang_code', 1, 'https://ror.org/051cjrp31 McGuireWoods'),
(6438, 'https://ror.org/03az79194', 'fr', 1, 'https://ror.org/03az79194 Laboratoire National Henri Becquerel'),
(6439, 'https://ror.org/00qytmr47', 'no_lang_code', 1, 'https://ror.org/00qytmr47 INC Research (United States)'),
(6440, 'https://ror.org/01eadrh05', 'en', 1, 'https://ror.org/01eadrh05 Oregon Clinic'),
(6441, 'https://ror.org/004amc442', 'en', 1, 'https://ror.org/004amc442 Orthopaedic Center'),
(6442, 'https://ror.org/05w1mrz55', 'en', 1, 'https://ror.org/05w1mrz55 Parkinson''s Institute and Clinical Center'),
(6443, 'https://ror.org/01647vc39', 'no_lang_code', 1, 'https://ror.org/01647vc39 Behringwerke (Germany)'),
(6444, 'https://ror.org/0190p7071', 'no_lang_code', 1, 'https://ror.org/0190p7071 General Electric (Sweden)'),
(6445, 'https://ror.org/00smdp487', 'no_lang_code', 1, 'https://ror.org/00smdp487 Munich Leukemia Laboratory (Germany) Münchner Leukämielabor'),
(6446, 'https://ror.org/0100f3q33', 'no_lang_code', 1, 'https://ror.org/0100f3q33 Biotest (Germany)'),
(6447, 'https://ror.org/047mvza98', 'en', 1, 'https://ror.org/047mvza98 Bangladesh Institute of Research and Rehabilitation for Diabetes Endocrine and Metabolic Disorders বারঔেম'),
(6448, 'https://ror.org/01skwyh03', 'no_lang_code', 1, 'https://ror.org/01skwyh03 Nissan Chemical Corporation (Japan) ę—„ē”£åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(6449, 'https://ror.org/05kbvgd57', 'fr', 1, 'https://ror.org/05kbvgd57 Banque Populaire'),
(6450, 'https://ror.org/042eghf65', 'en', 1, 'https://ror.org/042eghf65 North Carolina Institute of Medicine'),
(6451, 'https://ror.org/029zamy29', 'no_lang_code', 1, 'https://ror.org/029zamy29 Springer Nature (New Zealand)'),
(6452, 'https://ror.org/01y720297', 'en', 1, 'https://ror.org/01y720297 Regional Medical Research Centre ą¦†ą¦žą§ą¦šą¦²ą¦æą¦• ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ গৱেষণা ą¦•ą§‡ą¦Øą§ą¦¦ą§ą§°, ą¦”ą¦æą¦¬ą§ą§°ą§ą¦—ą¦”ą¦¼'),
(6453, 'https://ror.org/03y7ycy60', 'sv', 1, 'https://ror.org/03y7ycy60 Norra Ƅlvsborgs LƤnssjukhus Northern Ƅlvsborg county hospital'),
(6454, 'https://ror.org/02237ny03', 'en', 1, 'https://ror.org/02237ny03 Taste and Smell Clinic'),
(6455, 'https://ror.org/016tybp74', 'en', 1, 'https://ror.org/016tybp74 North Riding Infirmary'),
(6456, 'https://ror.org/02kspbq18', 'fr', 1, 'https://ror.org/02kspbq18 Château Gombert'),
(6457, 'https://ror.org/05em3zk56', 'en', 1, 'https://ror.org/05em3zk56 National Minority AIDS Council'),
(6458, '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'),
(6459, 'https://ror.org/05hgh7849', 'no_lang_code', 1, 'https://ror.org/05hgh7849 Walker (United States)'),
(6460, 'https://ror.org/0404v4f94', 'it', 1, 'https://ror.org/0404v4f94 Cassa di Risparmio in Bologna'),
(6461, 'https://ror.org/02jzrsm59', 'en', 1, 'https://ror.org/02jzrsm59 National Institute on Alcohol Abuse and Alcoholism'),
(6462, 'https://ror.org/006zn3t30', 'en', 1, 'https://ror.org/006zn3t30 National Institute of Arthritis and Musculoskeletal and Skin Diseases'),
(6463, 'https://ror.org/00q0yh079', 'pt', 1, 'https://ror.org/00q0yh079 Institute of Radiation Protection and Dosimetry Instituto de Radioproteção e Dosimetria'),
(6464, 'https://ror.org/04byxyr05', 'en', 1, 'https://ror.org/04byxyr05 Eunice Kennedy Shriver National Institute of Child Health and Human Development'),
(6465, 'https://ror.org/00fq5cm18', 'en', 1, 'https://ror.org/00fq5cm18 National Institute on Drug Abuse'),
(6466, 'https://ror.org/0494qe247', 'en', 1, 'https://ror.org/0494qe247 Canadian Breast Cancer Network'),
(6467, 'https://ror.org/02zhjb475', 'en', 1, 'https://ror.org/02zhjb475 Thompson Cancer Survival Center'),
(6468, 'https://ror.org/01ynxg963', 'en', 1, 'https://ror.org/01ynxg963 Pacific Medical Research Foundation'),
(6469, 'https://ror.org/04wjd1a07', 'en', 1, 'https://ror.org/04wjd1a07 Nordland Hospital Trust Nordlandssykehuset'),
(6470, 'https://ror.org/02azqtm75', 'en', 1, 'https://ror.org/02azqtm75 National Sanitation Foundation International'),
(6471, 'https://ror.org/00phd3t88', 'en', 1, 'https://ror.org/00phd3t88 Northwest Clinical Research Center'),
(6472, 'https://ror.org/05gedqb32', 'no_lang_code', 1, 'https://ror.org/05gedqb32 GlaxoSmithKline (Germany)'),
(6473, 'https://ror.org/05ccach65', 'en', 1, 'https://ror.org/05ccach65 Gerald P. Murphy Cancer Foundation'),
(6474, 'https://ror.org/03m8b9646', 'en', 1, 'https://ror.org/03m8b9646 Tilganga Institute of Ophthalmology तिलगंगा ą¤†ą¤ą¤–ą¤¾ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(6475, 'https://ror.org/0545sd266', 'no_lang_code', 1, 'https://ror.org/0545sd266 PAREXEL International (France)'),
(6476, 'https://ror.org/04bmzpd39', 'en', 1, 'https://ror.org/04bmzpd39 Pakistan Institute of Nuclear Science and Technology'),
(6477, 'https://ror.org/038sjwf38', 'no_lang_code', 1, 'https://ror.org/038sjwf38 Takeda (Norway)'),
(6478, 'https://ror.org/00evjd729', 'en', 1, 'https://ror.org/00evjd729 Australian Red Cross Lifeblood'),
(6479, 'https://ror.org/0266h1q26', 'en', 1, 'https://ror.org/0266h1q26 Norton Healthcare'),
(6480, 'https://ror.org/01vfnp540', 'no_lang_code', 1, 'https://ror.org/01vfnp540 Immune Response BioPharma (United States)'),
(6481, 'https://ror.org/05qgz5a90', 'cs', 1, 'https://ror.org/05qgz5a90 OcnĆ­ klinika'),
(6482, 'https://ror.org/0183vre95', 'en', 1, 'https://ror.org/0183vre95 TiFN'),
(6483, 'https://ror.org/03k9r6w77', 'no_lang_code', 1, 'https://ror.org/03k9r6w77 FTSE (Japan)'),
(6484, 'https://ror.org/03ztsz823', 'sk', 1, 'https://ror.org/03ztsz823 OcnĆ” klinika'),
(6485, 'https://ror.org/0062dz060', 'en', 1, 'https://ror.org/0062dz060 Norwich Research Park'),
(6486, 'https://ror.org/023apm738', 'fr', 1, 'https://ror.org/023apm738 Centre d''Exploration et de Recherche MƩdicale par Emission de Positons'),
(6487, 'https://ror.org/00shfq002', 'no_lang_code', 1, 'https://ror.org/00shfq002 Syngenta (United States)'),
(6488, 'https://ror.org/048g78j50', 'fr', 1, 'https://ror.org/048g78j50 Groupe Hospitalier Intercommunal Le Raincy Montfermeil'),
(6489, 'https://ror.org/00kyj7k59', 'en', 1, 'https://ror.org/00kyj7k59 Fondation de recherches sur les blessures de la route Traffic Injury Research Foundation'),
(6490, 'https://ror.org/00kkwkq76', 'no_lang_code', 1, 'https://ror.org/00kkwkq76 Pfizer (Sweden)'),
(6491, 'https://ror.org/03jwzwq24', 'no_lang_code', 1, 'https://ror.org/03jwzwq24 Xerox (United States)'),
(6492, 'https://ror.org/055epcp86', 'en', 1, 'https://ror.org/055epcp86 Pankey Institute'),
(6493, 'https://ror.org/04c3yce28', 'fr', 1, 'https://ror.org/04c3yce28 Centre Hospitalier Le Vinatier'),
(6494, 'https://ror.org/05vmcbf05', 'en', 1, 'https://ror.org/05vmcbf05 Pakistan Council of Scientific & Industrial Research'),
(6495, 'https://ror.org/053y9xq02', 'en', 1, 'https://ror.org/053y9xq02 Pandit Bhagwat Dayal Sharma Post Graduate Institute of Medical Sciences'),
(6496, 'https://ror.org/00nfck739', 'no_lang_code', 1, 'https://ror.org/00nfck739 Thermo Fisher Scientific (Sweden)'),
(6497, 'https://ror.org/04sme7s65', 'no_lang_code', 1, 'https://ror.org/04sme7s65 Altria (United States)'),
(6498, 'https://ror.org/03dwhj404', 'no_lang_code', 1, 'https://ror.org/03dwhj404 Agenus (United States)'),
(6499, 'https://ror.org/00n6v1c97', 'no_lang_code', 1, 'https://ror.org/00n6v1c97 Bayer (Belgium)'),
(6500, 'https://ror.org/05t1yee64', 'no_lang_code', 1, 'https://ror.org/05t1yee64 Hospital Fatuma Bourguiba Monastir HƓpital Universitaire Fattouma-Bourguiba de Monastir'),
(6501, 'https://ror.org/01h95gp06', 'no_lang_code', 1, 'https://ror.org/01h95gp06 FMC (United States)'),
(6502, 'https://ror.org/02xnj2427', 'fr', 1, 'https://ror.org/02xnj2427 HĆ“pital de Ville-Ɖvrard'),
(6503, 'https://ror.org/03zpmpz54', 'en', 1, 'https://ror.org/03zpmpz54 Twin Cities Spine Center'),
(6504, 'https://ror.org/016sds817', 'en', 1, 'https://ror.org/016sds817 Tiroler Krebsforschungsinstitut Tyrolean Cancer Research Institute'),
(6505, 'https://ror.org/00vhf1v57', 'fr', 1, 'https://ror.org/00vhf1v57 Centre Hospitalier Universitaire de Tokoin'),
(6506, 'https://ror.org/05fv8sy52', 'en', 1, 'https://ror.org/05fv8sy52 Tzu Chi College of Technology ę…ˆęæŸęŠ€č”“å­øé™¢'),
(6507, 'https://ror.org/02r96rf44', 'no_lang_code', 1, 'https://ror.org/02r96rf44 Qiagen (Germany)'),
(6508, 'https://ror.org/01ajqvg59', 'en', 1, 'https://ror.org/01ajqvg59 United States Army Aeromedical Research Lab'),
(6509, 'https://ror.org/03e5aen17', 'no_lang_code', 1, 'https://ror.org/03e5aen17 ProteoSys (Germany)'),
(6510, 'https://ror.org/0232mk144', 'es', 1, 'https://ror.org/0232mk144 EsSALUD Seguro Social de Salud del PerĆŗ'),
(6511, 'https://ror.org/055keby75', 'no_lang_code', 1, 'https://ror.org/055keby75 Walter Knoll (Germany)'),
(6512, 'https://ror.org/012khpt30', 'it', 1, 'https://ror.org/012khpt30 Fondazione G.B. Bietti G. B. Bietti Foundation'),
(6513, 'https://ror.org/04gsrvr64', 'en', 1, 'https://ror.org/04gsrvr64 Adelphi Laboratory Center'),
(6514, 'https://ror.org/05mw5ed57', 'no_lang_code', 1, 'https://ror.org/05mw5ed57 Baxter (Sweden)'),
(6515, 'https://ror.org/01fgq8278', 'no_lang_code', 1, 'https://ror.org/01fgq8278 DSM (Switzerland)'),
(6516, 'https://ror.org/045hp7z16', 'it', 1, 'https://ror.org/045hp7z16 SocietĆ  per l’Assistenza al Malato Oncologico Terminale'),
(6517, 'https://ror.org/03e7xy909', 'en', 1, 'https://ror.org/03e7xy909 People’s University'),
(6518, 'https://ror.org/05nstty25', 'en', 1, 'https://ror.org/05nstty25 Perth Royal Infirmary'),
(6519, 'https://ror.org/031vg5s58', 'en', 1, 'https://ror.org/031vg5s58 Peru State College'),
(6520, 'https://ror.org/03rs11m37', 'no_lang_code', 1, 'https://ror.org/03rs11m37 Levret'),
(6521, 'https://ror.org/05pkeac16', 'no_lang_code', 1, 'https://ror.org/05pkeac16 UCB Pharma (Germany) Union chimique belge'),
(6522, 'https://ror.org/04h7kta22', 'en', 1, 'https://ror.org/04h7kta22 Visiting Nurse Associations of America'),
(6523, 'https://ror.org/036dv6j71', 'no_lang_code', 1, 'https://ror.org/036dv6j71 Human Computer Interaction (Switzerland)'),
(6524, 'https://ror.org/0023asr12', 'en', 1, 'https://ror.org/0023asr12 Singapore Science Park Taman Sains Singapura ę–°åŠ å”ē§‘å­¦å›­'),
(6525, 'https://ror.org/046fq2b74', 'en', 1, 'https://ror.org/046fq2b74 Healthcare Financial Management Association'),
(6526, 'https://ror.org/02js6ft04', 'no_lang_code', 1, 'https://ror.org/02js6ft04 Takara (United States)'),
(6527, 'https://ror.org/03ytdtb31', 'no_lang_code', 1, 'https://ror.org/03ytdtb31 Sanofi (Germany)'),
(6528, 'https://ror.org/00bbe8x87', 'no_lang_code', 1, 'https://ror.org/00bbe8x87 Stallergenes Greer (France)'),
(6529, 'https://ror.org/02gy8fc28', 'fr', 1, 'https://ror.org/02gy8fc28 Centre National Hospitalier et Universitaire Hubert Koutoukou MAGA'),
(6530, 'https://ror.org/00xms2e58', 'en', 1, 'https://ror.org/00xms2e58 Hudson Valley Regional Emergency Medical Services Council'),
(6531, 'https://ror.org/05p3vnz07', 'no_lang_code', 1, 'https://ror.org/05p3vnz07 Wound Care Strategies (United States)'),
(6532, 'https://ror.org/03dc7cm27', 'no_lang_code', 1, 'https://ror.org/03dc7cm27 XOMA (United States)'),
(6533, 'https://ror.org/01c8cwz57', 'fr', 1, 'https://ror.org/01c8cwz57 Institut pour la Recherche sur le Cancer de Lille'),
(6534, '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'),
(6535, 'https://ror.org/01v7p8902', 'no_lang_code', 1, 'https://ror.org/01v7p8902 Interklinik'),
(6536, 'https://ror.org/02jzt6t86', 'en', 1, 'https://ror.org/02jzt6t86 Institute of Human Genetics Instytutu Genetyki Człowieka PAN'),
(6537, 'https://ror.org/0078ww552', 'no_lang_code', 1, 'https://ror.org/0078ww552 Cochlear (Switzerland)'),
(6538, 'https://ror.org/03fftr154', 'es', 1, 'https://ror.org/03fftr154 Instituto Ramón y Cajal de Investigación Sanitaria'),
(6539, 'https://ror.org/01v4ea389', 'no_lang_code', 1, 'https://ror.org/01v4ea389 Sizewise (United States)'),
(6540, 'https://ror.org/04gwjw495', 'no_lang_code', 1, 'https://ror.org/04gwjw495 VHA (United States)'),
(6541, 'https://ror.org/01e8bdb34', 'no_lang_code', 1, 'https://ror.org/01e8bdb34 SRK Healthcare (United States)'),
(6542, 'https://ror.org/03evkbw14', 'es', 1, 'https://ror.org/03evkbw14 Corporación para Investigaciones Biológicas'),
(6543, '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'),
(6544, 'https://ror.org/010fbpe82', 'en', 1, 'https://ror.org/010fbpe82 Tianjin Economic-Technological Development Area å¤©ę“„ē»ęµŽęŠ€ęœÆå¼€å‘åŒŗ'),
(6545, 'https://ror.org/00r633h38', 'no_lang_code', 1, 'https://ror.org/00r633h38 Centro Radiológico Computarizado Corporació Sanitària (Spain)'),
(6546, 'https://ror.org/00tcb9k97', 'en', 1, 'https://ror.org/00tcb9k97 New York Eye and Ear Infirmary'),
(6547, 'https://ror.org/00p4dsm08', 'en', 1, 'https://ror.org/00p4dsm08 Virus Unit'),
(6548, 'https://ror.org/001tmkc70', 'no_lang_code', 1, 'https://ror.org/001tmkc70 Ivoclar Vivadent (Liechtenstein)'),
(6549, 'https://ror.org/04vkhtf23', 'no_lang_code', 1, 'https://ror.org/04vkhtf23 Crucell Johnson & Johnson (Netherlands)'),
(6550, 'https://ror.org/00kjr3917', 'en', 1, 'https://ror.org/00kjr3917 Ideon Science Park'),
(6551, 'https://ror.org/01astg473', 'en', 1, 'https://ror.org/01astg473 Japan Biological Informatics Consortium čˆ¬ē¤¾å›£ę³•äŗŗćƒć‚¤ć‚Ŗē”£ę„­ęƒ…å ±åŒ–ć‚³ćƒ³ć‚½ćƒ¼ć‚·ć‚¢ćƒ '),
(6552, 'https://ror.org/0456p3190', 'no_lang_code', 1, 'https://ror.org/0456p3190 VWR International (United States)'),
(6553, 'https://ror.org/006tyy056', 'no_lang_code', 1, 'https://ror.org/006tyy056 Integran (Canada)'),
(6554, 'https://ror.org/04nvba109', 'no_lang_code', 1, 'https://ror.org/04nvba109 CSL (Germany)'),
(6555, 'https://ror.org/027a0b050', 'no_lang_code', 1, 'https://ror.org/027a0b050 Integrated BioTherapeutics (United States)'),
(6556, 'https://ror.org/03skrcz21', 'en', 1, 'https://ror.org/03skrcz21 Joint Commission'),
(6557, 'https://ror.org/047dcfg79', 'no_lang_code', 1, 'https://ror.org/047dcfg79 Integrated Environmental Solutions (United Kingdom)'),
(6558, 'https://ror.org/02dgnkc37', 'no_lang_code', 1, 'https://ror.org/02dgnkc37 TDIC (United States)'),
(6559, 'https://ror.org/00shfde47', 'no_lang_code', 1, 'https://ror.org/00shfde47 Orkla (Sweden)'),
(6560, 'https://ror.org/02frwff62', 'it', 1, 'https://ror.org/02frwff62 CTO Andrea Alesini'),
(6561, 'https://ror.org/0059mbq09', 'no_lang_code', 1, 'https://ror.org/0059mbq09 Integrity Testing Laboratory (Canada)'),
(6562, 'https://ror.org/02r5scg33', 'no_lang_code', 1, 'https://ror.org/02r5scg33 Intel (Ireland)'),
(6563, 'https://ror.org/03e0mxz52', 'no_lang_code', 1, 'https://ror.org/03e0mxz52 Intelligent Energy (United Kingdom)'),
(6564, 'https://ror.org/02v7j5a68', 'no_lang_code', 1, 'https://ror.org/02v7j5a68 Intelligent Fiber Optic Systems (United States)'),
(6565, 'https://ror.org/02p54vf94', 'en', 1, 'https://ror.org/02p54vf94 DGA Partners'),
(6566, 'https://ror.org/02xmjm585', 'no_lang_code', 1, 'https://ror.org/02xmjm585 Intelligent Mechatronic Systems (Canada)'),
(6567, 'https://ror.org/013xmn143', 'no_lang_code', 1, 'https://ror.org/013xmn143 Baxter (Austria)'),
(6568, 'https://ror.org/04v1wg214', 'en', 1, 'https://ror.org/04v1wg214 Tucson Orthopaedic Institute'),
(6569, 'https://ror.org/02njbjk47', 'en', 1, 'https://ror.org/02njbjk47 DHHS Alliance'),
(6570, 'https://ror.org/03a7bpg58', 'en', 1, 'https://ror.org/03a7bpg58 Convención de la Farmacopea de Estados Unidos United States Pharmacopeial Convention'),
(6571, 'https://ror.org/03yebgx31', 'no_lang_code', 1, 'https://ror.org/03yebgx31 AbleNet (United States)'),
(6572, 'https://ror.org/04cmd9g05', 'no_lang_code', 1, 'https://ror.org/04cmd9g05 20/20 GeneSystem (United States)'),
(6573, 'https://ror.org/0286xn075', 'no_lang_code', 1, 'https://ror.org/0286xn075 21st Century Medicine (United States)'),
(6574, 'https://ror.org/00bz2pj54', 'no_lang_code', 1, 'https://ror.org/00bz2pj54 21st Century Therapeutics (United States)'),
(6575, 'https://ror.org/00q62jx03', 'no_lang_code', 1, 'https://ror.org/00q62jx03 23andMe (United States)'),
(6576, 'https://ror.org/057g30m29', 'no_lang_code', 1, 'https://ror.org/057g30m29 2B Technologies (United States)'),
(6577, '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'),
(6578, 'https://ror.org/009frj756', 'no_lang_code', 1, 'https://ror.org/009frj756 360pi (Canada)'),
(6579, 'https://ror.org/003dqcp70', 'no_lang_code', 1, 'https://ror.org/003dqcp70 Fujirebio (Belgium)'),
(6580, 'https://ror.org/03qz3ng87', 'en', 1, 'https://ror.org/03qz3ng87 Inter-Tribal Council of Michigan'),
(6581, 'https://ror.org/057gt1g02', 'no_lang_code', 1, 'https://ror.org/057gt1g02 3D Molecular Designs (United States)'),
(6582, 'https://ror.org/030cz2x22', 'no_lang_code', 1, 'https://ror.org/030cz2x22 Interactive Drama (United States)'),
(6583, 'https://ror.org/02w335z67', 'no_lang_code', 1, 'https://ror.org/02w335z67 InterDigital (United States)'),
(6584, 'https://ror.org/01f7dp456', 'en', 1, 'https://ror.org/01f7dp456 Ministry of Food and Drug Safety'),
(6585, 'https://ror.org/029dkfk52', 'no_lang_code', 1, 'https://ror.org/029dkfk52 Interlab (United States)'),
(6586, 'https://ror.org/02vtgg877', 'no_lang_code', 1, 'https://ror.org/02vtgg877 Fusion (United States)'),
(6587, 'https://ror.org/03fa0tr49', 'no_lang_code', 1, 'https://ror.org/03fa0tr49 A&G Pharmaceutical (United States)'),
(6588, 'https://ror.org/01kngac24', 'no_lang_code', 1, 'https://ror.org/01kngac24 A Thinking Ape (Canada)'),
(6589, 'https://ror.org/04tnq4461', 'no_lang_code', 1, 'https://ror.org/04tnq4461 A&L Canada Laboratories (Canada)'),
(6590, 'https://ror.org/00hp40m78', 'no_lang_code', 1, 'https://ror.org/00hp40m78 AAC (United States)'),
(6591, 'https://ror.org/03mk1ty71', 'en', 1, 'https://ror.org/03mk1ty71 Abacus Health Solutions'),
(6592, 'https://ror.org/01zpyjx73', 'en', 1, 'https://ror.org/01zpyjx73 Renal Association'),
(6593, 'https://ror.org/0513ya078', 'no_lang_code', 1, 'https://ror.org/0513ya078 TerraBioGen (Canada)'),
(6594, 'https://ror.org/04waktx26', 'no_lang_code', 1, 'https://ror.org/04waktx26 ABB (United Kingdom)'),
(6595, 'https://ror.org/00ks5vt51', 'no_lang_code', 1, 'https://ror.org/00ks5vt51 ABB (Switzerland)'),
(6596, 'https://ror.org/00z21v095', 'no_lang_code', 1, 'https://ror.org/00z21v095 Abbott (Canada)'),
(6597, 'https://ror.org/05wzrja17', 'no_lang_code', 1, 'https://ror.org/05wzrja17 Abcam (United Kingdom)'),
(6598, 'https://ror.org/03qzgjs85', 'no_lang_code', 1, 'https://ror.org/03qzgjs85 Abeome Corporation (United States)'),
(6599, 'https://ror.org/04cfb2973', 'en', 1, 'https://ror.org/04cfb2973 Aberdeen City Council'),
(6600, 'https://ror.org/006efkq12', 'de', 1, 'https://ror.org/006efkq12 Unfallkrankenhaus Wien Lorenz Bƶhler'),
(6601, 'https://ror.org/04paq1j76', 'no_lang_code', 1, 'https://ror.org/04paq1j76 ScienceScope (United Kingdom)'),
(6602, 'https://ror.org/05c5e7249', 'en', 1, 'https://ror.org/05c5e7249 United States Military Entrance Processing Command'),
(6603, 'https://ror.org/05p35vd42', 'no_lang_code', 1, 'https://ror.org/05p35vd42 AbleLink Technologies (United States)'),
(6604, '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'),
(6605, 'https://ror.org/02ycq1t04', 'no_lang_code', 1, 'https://ror.org/02ycq1t04 ABS Materials (United States)'),
(6606, 'https://ror.org/034s15752', 'en', 1, 'https://ror.org/034s15752 Academy for Educational Development'),
(6607, 'https://ror.org/00c489v88', 'en', 1, 'https://ror.org/00c489v88 Academy of Medical Sciences'),
(6608, 'https://ror.org/00k1mwv09', 'en', 1, 'https://ror.org/00k1mwv09 United States Congress'),
(6609, 'https://ror.org/04xsveh31', 'en', 1, 'https://ror.org/04xsveh31 Academy of the Social Sciences in Australia'),
(6610, 'https://ror.org/01pv83h16', 'en', 1, 'https://ror.org/01pv83h16 Acadia Institute of Oceanography'),
(6611, 'https://ror.org/01dp60j32', 'no_lang_code', 1, 'https://ror.org/01dp60j32 International Rectifier (United Kingdom)'),
(6612, 'https://ror.org/03y3xcd57', 'no_lang_code', 1, 'https://ror.org/03y3xcd57 Acadian Seaplants (Canada)'),
(6613, 'https://ror.org/00ys1w968', 'no_lang_code', 1, 'https://ror.org/00ys1w968 AccelLab (Canada)'),
(6614, 'https://ror.org/050hhcw63', 'en', 1, 'https://ror.org/050hhcw63 Accents On Health'),
(6615, 'https://ror.org/02vrwn188', 'en', 1, 'https://ror.org/02vrwn188 International Society for Infectious Diseases'),
(6616, 'https://ror.org/03t3e7k14', 'en', 1, 'https://ror.org/03t3e7k14 International Society for Experimental Hematology'),
(6617, 'https://ror.org/01g31bd79', 'en', 1, 'https://ror.org/01g31bd79 International Technology and Engineering Educators Association'),
(6618, 'https://ror.org/00bnthp71', 'fr', 1, 'https://ror.org/00bnthp71 Institut de Recherche pour le DƩveloppement'),
(6619, 'https://ror.org/030anrr19', 'no_lang_code', 1, 'https://ror.org/030anrr19 Thermo Fisher Scientific (Lithuania)'),
(6620, 'https://ror.org/04hd4qy94', 'it', 1, 'https://ror.org/04hd4qy94 Ospedale SS. Annunziata'),
(6621, 'https://ror.org/0195ge738', 'en', 1, 'https://ror.org/0195ge738 Access Community Health Network'),
(6622, 'https://ror.org/03yr6s895', 'no_lang_code', 1, 'https://ror.org/03yr6s895 Genomas (United States)'),
(6623, 'https://ror.org/05qzgry88', 'en', 1, 'https://ror.org/05qzgry88 Accreditation Board for Engineering and Technology'),
(6624, 'https://ror.org/04m21na87', 'no_lang_code', 1, 'https://ror.org/04m21na87 Genomatica (United States)'),
(6625, 'https://ror.org/05gd4rg64', 'no_lang_code', 1, 'https://ror.org/05gd4rg64 InterPhases Solar (United States)'),
(6626, 'https://ror.org/04b33je61', 'no_lang_code', 1, 'https://ror.org/04b33je61 InterScience (United States)'),
(6627, 'https://ror.org/02vydqh80', 'en', 1, 'https://ror.org/02vydqh80 Interstate Shellfish Sanitation Conference'),
(6628, 'https://ror.org/009jvpf03', 'no_lang_code', 1, 'https://ror.org/009jvpf03 Integrated DNA Technologies (United States)'),
(6629, 'https://ror.org/02ycgwy86', 'es', 1, 'https://ror.org/02ycgwy86 Profamilia'),
(6630, 'https://ror.org/05qvwqt73', 'no_lang_code', 1, 'https://ror.org/05qvwqt73 IntraMedical Imaging (United States)'),
(6631, 'https://ror.org/045vz2p90', 'no_lang_code', 1, 'https://ror.org/045vz2p90 Intrafinity (Canada)'),
(6632, 'https://ror.org/033c74k08', 'no_lang_code', 1, 'https://ror.org/033c74k08 Intuitive Biosciences (United States)'),
(6633, 'https://ror.org/05g2n4m79', 'no_lang_code', 1, 'https://ror.org/05g2n4m79 Intuitive Surgical (United States)'),
(6634, 'https://ror.org/010hx2v28', 'no_lang_code', 1, 'https://ror.org/010hx2v28 Inverness Research (United States)'),
(6635, 'https://ror.org/00s5h6z84', 'no_lang_code', 1, 'https://ror.org/00s5h6z84 INVIDI Technologies (Canada)'),
(6636, 'https://ror.org/01qdw1m65', 'en', 1, 'https://ror.org/01qdw1m65 Passport to Knowledge'),
(6637, 'https://ror.org/0348rpk45', 'no_lang_code', 1, 'https://ror.org/0348rpk45 InXsol (United States)'),
(6638, 'https://ror.org/02ha9tc40', 'en', 1, 'https://ror.org/02ha9tc40 Georgia Department of Community Health'),
(6639, 'https://ror.org/041841277', 'en', 1, 'https://ror.org/041841277 Iolani School'),
(6640, 'https://ror.org/03nmpxq27', 'en', 1, 'https://ror.org/03nmpxq27 Georgia Department of Agriculture'),
(6641, 'https://ror.org/0144z1077', 'no_lang_code', 1, 'https://ror.org/0144z1077 Iomai (United States)'),
(6642, 'https://ror.org/00aqgm431', 'en', 1, 'https://ror.org/00aqgm431 Island Peer Review Organization'),
(6643, 'https://ror.org/0554dgq35', 'en', 1, 'https://ror.org/0554dgq35 Georgia Department of Behavioral Health and Developmental Disabilities'),
(6644, 'https://ror.org/011vw2696', 'no_lang_code', 1, 'https://ror.org/011vw2696 Geospace Research (United States)'),
(6645, 'https://ror.org/00aac7f28', 'no_lang_code', 1, 'https://ror.org/00aac7f28 Ion Physics (United States)'),
(6646, 'https://ror.org/0366h3j49', 'no_lang_code', 1, 'https://ror.org/0366h3j49 Geotechnical Observations (United Kingdom)'),
(6647, 'https://ror.org/01ncrbb53', 'no_lang_code', 1, 'https://ror.org/01ncrbb53 Gerber Technology (United States)'),
(6648, 'https://ror.org/025rx1w27', 'no_lang_code', 1, 'https://ror.org/025rx1w27 IONICS Mass Spectrometry (Canada)'),
(6649, 'https://ror.org/03av0zr92', 'no_lang_code', 1, 'https://ror.org/03av0zr92 Germinal (United Kingdom)'),
(6650, 'https://ror.org/00fm8vh73', 'no_lang_code', 1, 'https://ror.org/00fm8vh73 GigaGen (United States)'),
(6651, 'https://ror.org/019kwgw50', 'no_lang_code', 1, 'https://ror.org/019kwgw50 Ionwerks (United States)'),
(6652, 'https://ror.org/03qkaf287', 'en', 1, 'https://ror.org/03qkaf287 Gila River Indian Community'),
(6653, 'https://ror.org/03v7zx932', 'en', 1, 'https://ror.org/03v7zx932 Girls Incorporated'),
(6654, 'https://ror.org/03qsrxk46', 'no_lang_code', 1, 'https://ror.org/03qsrxk46 Giro (Canada)'),
(6655, 'https://ror.org/04kt4r851', 'no_lang_code', 1, 'https://ror.org/04kt4r851 IPAC Chemicals (Canada)'),
(6656, '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'),
(6657, 'https://ror.org/02z6ck570', 'no_lang_code', 1, 'https://ror.org/02z6ck570 IPL (Canada)'),
(6658, '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'),
(6659, 'https://ror.org/01bpck236', 'no_lang_code', 1, 'https://ror.org/01bpck236 Global Relay (Canada)'),
(6660, 'https://ror.org/000czbn37', 'no_lang_code', 1, 'https://ror.org/000czbn37 iProgen Biotech (Canada)'),
(6661, 'https://ror.org/04kkvt144', 'no_lang_code', 1, 'https://ror.org/04kkvt144 GlobeImmune (United States)'),
(6662, 'https://ror.org/00655dk85', 'en', 1, 'https://ror.org/00655dk85 Glasgow Life'),
(6663, 'https://ror.org/01h8ey223', 'it', 1, 'https://ror.org/01h8ey223 MultiMedica'),
(6664, 'https://ror.org/03ep7eq57', 'no_lang_code', 1, 'https://ror.org/03ep7eq57 iQmetrix (Canada)'),
(6665, 'https://ror.org/04d95rj19', 'en', 1, 'https://ror.org/04d95rj19 Glasgow Science Centre'),
(6666, 'https://ror.org/02bwz0282', 'no_lang_code', 1, 'https://ror.org/02bwz0282 GLC Biotechnology (United States)'),
(6667, 'https://ror.org/03wmzb046', 'no_lang_code', 1, 'https://ror.org/03wmzb046 Iridian Spectral Technologies (Canada)'),
(6668, 'https://ror.org/02e1syn97', 'en', 1, 'https://ror.org/02e1syn97 Glendale Community College'),
(6669, 'https://ror.org/05pm6yf19', 'no_lang_code', 1, 'https://ror.org/05pm6yf19 Iris AO (United States)'),
(6670, 'https://ror.org/04b5pvj95', 'no_lang_code', 1, 'https://ror.org/04b5pvj95 ISCA Technologies (United States)'),
(6671, 'https://ror.org/0269j3194', 'en', 1, 'https://ror.org/0269j3194 Global HIV Vaccine Enterprise'),
(6672, 'https://ror.org/03v6ftq03', 'en', 1, 'https://ror.org/03v6ftq03 International Rescue Committee'),
(6673, 'https://ror.org/042j5ge28', 'no_lang_code', 1, 'https://ror.org/042j5ge28 Global Vaccines (United States)'),
(6674, 'https://ror.org/05knjzg24', 'no_lang_code', 1, 'https://ror.org/05knjzg24 Glycobia (United States)'),
(6675, 'https://ror.org/02wvnxv35', 'no_lang_code', 1, 'https://ror.org/02wvnxv35 Inflazyme (Canada)'),
(6676, 'https://ror.org/04t28w240', 'no_lang_code', 1, 'https://ror.org/04t28w240 GlycoMira Therapeutics (United States)'),
(6677, 'https://ror.org/04eb1br47', 'no_lang_code', 1, 'https://ror.org/04eb1br47 Lectenz Bio (United States)'),
(6678, 'https://ror.org/00j349n10', 'no_lang_code', 1, 'https://ror.org/00j349n10 GlySens (United States)'),
(6679, 'https://ror.org/05drhbp30', 'no_lang_code', 1, 'https://ror.org/05drhbp30 GMA Industries (United States)'),
(6680, 'https://ror.org/02f3vqc77', 'en', 1, 'https://ror.org/02f3vqc77 Coastline Community College'),
(6681, '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'),
(6682, 'https://ror.org/00dhe8f29', 'no_lang_code', 1, 'https://ror.org/00dhe8f29 Gooch & Housego (United Kingdom)'),
(6683, 'https://ror.org/01ptddh35', 'en', 1, 'https://ror.org/01ptddh35 Island Institute'),
(6684, 'https://ror.org/012es9h30', 'no_lang_code', 1, 'https://ror.org/012es9h30 Gradient Lens Corporation (United States)'),
(6685, 'https://ror.org/01g19gh26', 'no_lang_code', 1, 'https://ror.org/01g19gh26 Carter Printing Company (United States)'),
(6686, 'https://ror.org/03vetm947', 'no_lang_code', 1, 'https://ror.org/03vetm947 Isowater Corporation (Canada)'),
(6687, 'https://ror.org/00wkay776', 'en', 1, 'https://ror.org/00wkay776 Carthage College'),
(6688, 'https://ror.org/03mwfxd89', 'no_lang_code', 1, 'https://ror.org/03mwfxd89 GrammaTech (United States)'),
(6689, 'https://ror.org/00bxgws88', 'en', 1, 'https://ror.org/00bxgws88 Cascade AIDS Project'),
(6690, 'https://ror.org/02wxws056', 'no_lang_code', 1, 'https://ror.org/02wxws056 Dynamic Graphics (United States)'),
(6691, 'https://ror.org/00mz09160', 'en', 1, 'https://ror.org/00mz09160 Itasca Community College'),
(6692, 'https://ror.org/00zxfn928', 'no_lang_code', 1, 'https://ror.org/00zxfn928 Gratings Incorporated (United States)'),
(6693, 'https://ror.org/00w3w6d37', 'en', 1, 'https://ror.org/00w3w6d37 Great Lakes Inter Tribal Council'),
(6694, 'https://ror.org/05ggkk749', 'en', 1, 'https://ror.org/05ggkk749 Center for Applied Special Technology'),
(6695, 'https://ror.org/00zqnhb80', 'no_lang_code', 1, 'https://ror.org/00zqnhb80 Avensys (Canada)'),
(6696, 'https://ror.org/0016w2w54', 'en', 1, 'https://ror.org/0016w2w54 Des Moines Area Community College'),
(6697, 'https://ror.org/03vpkt967', 'en', 1, 'https://ror.org/03vpkt967 Lancaster Theological Seminary United Church of Christ'),
(6698, 'https://ror.org/03q43d318', 'no_lang_code', 1, 'https://ror.org/03q43d318 iTherX (United States)'),
(6699, 'https://ror.org/03g99t434', 'en', 1, 'https://ror.org/03g99t434 Casa Esperanza'),
(6700, 'https://ror.org/04sf10b93', 'no_lang_code', 1, 'https://ror.org/04sf10b93 ITI Energy (United Kingdom)'),
(6701, 'https://ror.org/00p8tz706', 'en', 1, 'https://ror.org/00p8tz706 Desert Botanical Garden'),
(6702, 'https://ror.org/03crdwy95', 'en', 1, 'https://ror.org/03crdwy95 Greater Manchester Police'),
(6703, 'https://ror.org/043tf3791', 'en', 1, 'https://ror.org/043tf3791 Washington Educational Telecommunications Association'),
(6704, 'https://ror.org/023q9w935', 'no_lang_code', 1, 'https://ror.org/023q9w935 INRIX (United Kingdom)'),
(6705, 'https://ror.org/043953r63', 'en', 1, 'https://ror.org/043953r63 Auburn School District'),
(6706, 'https://ror.org/0212bzt20', 'no_lang_code', 1, 'https://ror.org/0212bzt20 DesignBuilder Software (United Kingdom)'),
(6707, 'https://ror.org/04tz1ar37', 'no_lang_code', 1, 'https://ror.org/04tz1ar37 ITN Energy Systems (United States)'),
(6708, 'https://ror.org/00cnpxz07', 'en', 1, 'https://ror.org/00cnpxz07 Connecticut Business and Industry Association'),
(6709, 'https://ror.org/01x59wb38', 'no_lang_code', 1, 'https://ror.org/01x59wb38 DesignMedix (United States)'),
(6710, 'https://ror.org/033cjdk78', 'en', 1, 'https://ror.org/033cjdk78 Green Valley High School'),
(6711, 'https://ror.org/01b5xma27', 'en', 1, 'https://ror.org/01b5xma27 Greenfield Community College'),
(6712, 'https://ror.org/02d33pz63', 'no_lang_code', 1, 'https://ror.org/02d33pz63 CCS Associates (United States)'),
(6713, 'https://ror.org/01rdxvn05', 'no_lang_code', 1, 'https://ror.org/01rdxvn05 Galderma (United States)'),
(6714, 'https://ror.org/04pq45e89', 'en', 1, 'https://ror.org/04pq45e89 Detroit Area Pre College Engineering Program'),
(6715, 'https://ror.org/00pfggx80', 'no_lang_code', 1, 'https://ror.org/00pfggx80 Sainsbury''s (United Kingdom)'),
(6716, 'https://ror.org/025jays06', 'no_lang_code', 1, 'https://ror.org/025jays06 Greenfield Research (Canada)'),
(6717, 'https://ror.org/01nzyv932', 'no_lang_code', 1, 'https://ror.org/01nzyv932 CDM Group (United States)'),
(6718, 'https://ror.org/040ztay26', 'en', 1, 'https://ror.org/040ztay26 Greenville Technical College'),
(6719, 'https://ror.org/01gazqa80', 'pt', 1, 'https://ror.org/01gazqa80 Centro de Biotecnologia AgrĆ­cola e Agro Alimentar do Alentejo'),
(6720, 'https://ror.org/00pq3bb48', 'no_lang_code', 1, 'https://ror.org/00pq3bb48 Grove Instruments (United States)'),
(6721, 'https://ror.org/04z3gk160', 'no_lang_code', 1, 'https://ror.org/04z3gk160 Detroit R&D (United States)'),
(6722, 'https://ror.org/047khcd84', 'no_lang_code', 1, 'https://ror.org/047khcd84 Jacobs (United Kingdom)'),
(6723, 'https://ror.org/03by7ks57', 'fr', 1, 'https://ror.org/03by7ks57 CƩgep AndrƩ Laurendeau CƩgep andrƩ-laurendeau'),
(6724, 'https://ror.org/02p7gn625', 'fr', 1, 'https://ror.org/02p7gn625 CƩgep de l''Abitibi TƩmiscamingue CƩgep de l''abitibi-tƩmiscamingue'),
(6725, 'https://ror.org/011qnyz94', 'fr', 1, 'https://ror.org/011qnyz94 CĆ©gep de la GaspĆ©sie et des Ǝles'),
(6726, 'https://ror.org/03hgang94', 'en', 1, 'https://ror.org/03hgang94 Developmental Studies Center'),
(6727, 'https://ror.org/02edt9m80', 'no_lang_code', 1, 'https://ror.org/02edt9m80 GT Urological (United States)'),
(6728, 'https://ror.org/05nzdz804', 'no_lang_code', 1, 'https://ror.org/05nzdz804 James Bell Associates (United States)');
INSERT INTO `rors` VALUES
(6729, 'https://ror.org/013cpfz63', 'no_lang_code', 1, 'https://ror.org/013cpfz63 Cel-Sci (United States)'),
(6730, 'https://ror.org/04ahd9r49', 'no_lang_code', 1, 'https://ror.org/04ahd9r49 Celator Pharmaceuticals (Canada)'),
(6731, 'https://ror.org/01xqc9g05', 'en', 1, 'https://ror.org/01xqc9g05 University of Jamestown'),
(6732, 'https://ror.org/01kfp4j62', 'no_lang_code', 1, 'https://ror.org/01kfp4j62 UNICOM Global (United States)'),
(6733, 'https://ror.org/03svd1086', 'no_lang_code', 1, 'https://ror.org/03svd1086 Jarvik Heart (United States)'),
(6734, 'https://ror.org/043h2ky09', 'no_lang_code', 1, 'https://ror.org/043h2ky09 Precigen (United States)'),
(6735, 'https://ror.org/01jnyam78', 'en', 1, 'https://ror.org/01jnyam78 Jarvis Christian College'),
(6736, 'https://ror.org/01scjva02', 'no_lang_code', 1, 'https://ror.org/01scjva02 Jeremy Benn Associates (United Kingdom)'),
(6737, 'https://ror.org/006gpqj72', 'no_lang_code', 1, 'https://ror.org/006gpqj72 rEVO Biologics (United States)'),
(6738, 'https://ror.org/03p5x8053', 'no_lang_code', 1, 'https://ror.org/03p5x8053 Cell Preservation Services (United States)'),
(6739, 'https://ror.org/03k4zc121', 'no_lang_code', 1, 'https://ror.org/03k4zc121 Cell Signaling Technology (United States)'),
(6740, 'https://ror.org/03yab7k30', 'no_lang_code', 1, 'https://ror.org/03yab7k30 Cell2B (Portugal)'),
(6741, 'https://ror.org/0080fc349', 'no_lang_code', 1, 'https://ror.org/0080fc349 JEOL (United Kingdom)'),
(6742, 'https://ror.org/009ee8v97', 'no_lang_code', 1, 'https://ror.org/009ee8v97 Jet Process Corporation (United States)'),
(6743, 'https://ror.org/047pts877', 'no_lang_code', 1, 'https://ror.org/047pts877 Cellecta (United States)'),
(6744, 'https://ror.org/04djwpq60', 'no_lang_code', 1, 'https://ror.org/04djwpq60 Cellerant Therapeutics (United States)'),
(6745, 'https://ror.org/027zey487', 'no_lang_code', 1, 'https://ror.org/027zey487 Celdara Medical (United States)'),
(6746, 'https://ror.org/05mxb6722', 'no_lang_code', 1, 'https://ror.org/05mxb6722 CD-adapco (United Kingdom)'),
(6747, 'https://ror.org/048w01909', 'no_lang_code', 1, 'https://ror.org/048w01909 Cellex (United States)'),
(6748, 'https://ror.org/0542yj463', 'no_lang_code', 1, 'https://ror.org/0542yj463 Guided Therapeutics (United States)'),
(6749, 'https://ror.org/01z4haz29', 'no_lang_code', 1, 'https://ror.org/01z4haz29 Guild Associates (United States)'),
(6750, 'https://ror.org/0374t0s90', 'no_lang_code', 1, 'https://ror.org/0374t0s90 Jim Metzner Productions (United States)'),
(6751, 'https://ror.org/00j161312', 'en', 1, 'https://ror.org/00j161312 Guy''s and St Thomas'' NHS Foundation Trust'),
(6752, 'https://ror.org/004wh0w58', 'en', 1, 'https://ror.org/004wh0w58 Guthrie Foundation'),
(6753, 'https://ror.org/009y6jy27', 'no_lang_code', 1, 'https://ror.org/009y6jy27 GVD Corporation (United States)'),
(6754, 'https://ror.org/02q865m71', 'en', 1, 'https://ror.org/02q865m71 Diablo Valley College'),
(6755, 'https://ror.org/03bzqy127', 'en', 1, 'https://ror.org/03bzqy127 Gwinnett Coalition for Health & Human Services'),
(6756, 'https://ror.org/03hj3bw29', 'no_lang_code', 1, 'https://ror.org/03hj3bw29 H & N Instruments (United States)'),
(6757, 'https://ror.org/05tkjm312', 'no_lang_code', 1, 'https://ror.org/05tkjm312 DiagnoCure (Canada)'),
(6758, 'https://ror.org/05h9b8n23', 'no_lang_code', 1, 'https://ror.org/05h9b8n23 Diagnostics for the Real World (United States)'),
(6759, 'https://ror.org/03xpwxy65', 'no_lang_code', 1, 'https://ror.org/03xpwxy65 DiaMedica (Canada)'),
(6760, 'https://ror.org/01pa88s49', 'no_lang_code', 1, 'https://ror.org/01pa88s49 Diamond Materials (United States)'),
(6761, 'https://ror.org/02be9aj39', 'en', 1, 'https://ror.org/02be9aj39 H. R. MacMillan Space Centre'),
(6762, 'https://ror.org/05pgv5n44', 'no_lang_code', 1, 'https://ror.org/05pgv5n44 John Snow (United States)'),
(6763, 'https://ror.org/049r42y35', 'no_lang_code', 1, 'https://ror.org/049r42y35 Skanska (United Kingdom)'),
(6764, 'https://ror.org/01j538c21', 'no_lang_code', 1, 'https://ror.org/01j538c21 Evotec (United States)'),
(6765, 'https://ror.org/020nseq49', 'no_lang_code', 1, 'https://ror.org/020nseq49 DIApedia (United States)'),
(6766, 'https://ror.org/030h0wa62', 'no_lang_code', 1, 'https://ror.org/030h0wa62 JBS International (United States)'),
(6767, 'https://ror.org/03kt2r684', 'en', 1, 'https://ror.org/03kt2r684 H.T. Harvey & Associates'),
(6768, 'https://ror.org/01f2jgq77', 'en', 1, 'https://ror.org/01f2jgq77 H2O 4 All'),
(6769, 'https://ror.org/00da6z433', 'no_lang_code', 1, 'https://ror.org/00da6z433 Haematologic Technologies (United States)'),
(6770, 'https://ror.org/002t6g510', 'en', 1, 'https://ror.org/002t6g510 Dick Young Productions'),
(6771, 'https://ror.org/01hrt5088', 'en', 1, 'https://ror.org/01hrt5088 Catawba College'),
(6772, 'https://ror.org/05jd5ze73', 'en', 1, 'https://ror.org/05jd5ze73 Joliet Junior College'),
(6773, 'https://ror.org/0584why53', 'en', 1, 'https://ror.org/0584why53 Hagerstown Community College'),
(6774, 'https://ror.org/05vm6be10', 'no_lang_code', 1, 'https://ror.org/05vm6be10 Lipman Hearne (United States)'),
(6775, 'https://ror.org/03hggzq81', 'en', 1, 'https://ror.org/03hggzq81 Didi Hirsch Mental Health Services'),
(6776, 'https://ror.org/033r53w79', 'no_lang_code', 1, 'https://ror.org/033r53w79 Halsall (Canada)'),
(6777, 'https://ror.org/02y85r186', 'en', 1, 'https://ror.org/02y85r186 Ohio County Behavioral Health Authorities'),
(6778, 'https://ror.org/054fjvz18', 'en', 1, 'https://ror.org/054fjvz18 Center for American Archeology'),
(6779, 'https://ror.org/020pekv35', 'en', 1, 'https://ror.org/020pekv35 Center for Applied Linguistics'),
(6780, 'https://ror.org/04rx8g170', 'en', 1, 'https://ror.org/04rx8g170 Joseph Rowntree Foundation'),
(6781, 'https://ror.org/05nwcje70', 'no_lang_code', 1, 'https://ror.org/05nwcje70 Hans Tech (United States)'),
(6782, 'https://ror.org/040ktyf25', 'no_lang_code', 1, 'https://ror.org/040ktyf25 JP Laboratories (United States)'),
(6783, 'https://ror.org/00r6a8318', 'en', 1, 'https://ror.org/00r6a8318 Center for Community Alternatives'),
(6784, 'https://ror.org/04w5cyc72', 'no_lang_code', 1, 'https://ror.org/04w5cyc72 Diffinity Genomics (United States)'),
(6785, 'https://ror.org/028ca6f22', 'en', 1, 'https://ror.org/028ca6f22 Clark Planetarium'),
(6786, 'https://ror.org/01qma4124', 'no_lang_code', 1, 'https://ror.org/01qma4124 JS Genetics (United States)'),
(6787, 'https://ror.org/05skkwg31', 'no_lang_code', 1, 'https://ror.org/05skkwg31 Digestive Care (United States)'),
(6788, 'https://ror.org/021gsjb92', 'no_lang_code', 1, 'https://ror.org/021gsjb92 Diacon (Canada)'),
(6789, 'https://ror.org/02n4wd178', 'no_lang_code', 1, 'https://ror.org/02n4wd178 Junk King (United States)'),
(6790, 'https://ror.org/054q9r058', 'no_lang_code', 1, 'https://ror.org/054q9r058 Envigo (United States)'),
(6791, 'https://ror.org/04r14bj23', 'en', 1, 'https://ror.org/04r14bj23 DigiBC (Canada)'),
(6792, 'https://ror.org/00bdvg512', 'no_lang_code', 1, 'https://ror.org/00bdvg512 Juvaris BioTherapeutics (United States)'),
(6793, 'https://ror.org/005qf7j34', 'en', 1, 'https://ror.org/005qf7j34 Harlem United'),
(6794, 'https://ror.org/0271yft62', 'no_lang_code', 1, 'https://ror.org/0271yft62 Harrington Software Associates'),
(6795, 'https://ror.org/02mfa7r39', 'no_lang_code', 1, 'https://ror.org/02mfa7r39 Digital Payment Technologies (Canada)'),
(6796, 'https://ror.org/0251x9332', 'en', 1, 'https://ror.org/0251x9332 John Wesley Community Health Institute'),
(6797, 'https://ror.org/04ffs2p40', 'en', 1, 'https://ror.org/04ffs2p40 Aspire Health Partners'),
(6798, 'https://ror.org/03h7x4635', 'no_lang_code', 1, 'https://ror.org/03h7x4635 L3Harris (Canada)'),
(6799, 'https://ror.org/012e11c45', 'no_lang_code', 1, 'https://ror.org/012e11c45 JWK Corporation (United States)'),
(6800, 'https://ror.org/002j9jj25', 'en', 1, 'https://ror.org/002j9jj25 Harrisburg Area Community College'),
(6801, 'https://ror.org/05mk5sy16', 'no_lang_code', 1, 'https://ror.org/05mk5sy16 K&A Wireless (United States)'),
(6802, 'https://ror.org/00xdqtv86', 'en', 1, 'https://ror.org/00xdqtv86 Association of Health Care Journalists'),
(6803, 'https://ror.org/01myrq118', 'en', 1, 'https://ror.org/01myrq118 Hastings College'),
(6804, 'https://ror.org/00w8fet54', 'no_lang_code', 1, 'https://ror.org/00w8fet54 Kane Biotech (Canada)'),
(6805, 'https://ror.org/01m108388', 'no_lang_code', 1, 'https://ror.org/01m108388 Dimension Technologies (United States)'),
(6806, 'https://ror.org/032jtv165', 'no_lang_code', 1, 'https://ror.org/032jtv165 Hawaii Biotech (United States)'),
(6807, 'https://ror.org/01dhwg439', 'no_lang_code', 1, 'https://ror.org/01dhwg439 Hauser (United States)'),
(6808, 'https://ror.org/01g8b9k67', 'en', 1, 'https://ror.org/01g8b9k67 Center for Image Processing in Education'),
(6809, 'https://ror.org/00sdy7y63', 'en', 1, 'https://ror.org/00sdy7y63 Center for Innovative Public Health Research'),
(6810, 'https://ror.org/026ms9533', 'en', 1, 'https://ror.org/026ms9533 Hazardous Materials Training and Research Institute'),
(6811, 'https://ror.org/054abn387', 'no_lang_code', 1, 'https://ror.org/054abn387 Dimera (United States)'),
(6812, 'https://ror.org/03hpmwj60', 'en', 1, 'https://ror.org/03hpmwj60 Health and Hospital Corporation'),
(6813, 'https://ror.org/050ey5v22', 'no_lang_code', 1, 'https://ror.org/050ey5v22 Health Decisions (United States)'),
(6814, 'https://ror.org/056d0k256', 'en', 1, 'https://ror.org/056d0k256 Sterling College - Vermont'),
(6815, 'https://ror.org/01gnjkm30', 'no_lang_code', 1, 'https://ror.org/01gnjkm30 Kapteyn Murnane Laboratories'),
(6816, 'https://ror.org/03rbsqr59', 'en', 1, 'https://ror.org/03rbsqr59 DinƩ College'),
(6817, 'https://ror.org/01egexe84', 'no_lang_code', 1, 'https://ror.org/01egexe84 Kardium (Canada)'),
(6818, 'https://ror.org/034xych09', 'en', 1, 'https://ror.org/034xych09 Winchester Science Centre'),
(6819, 'https://ror.org/02kvf6r88', 'no_lang_code', 1, 'https://ror.org/02kvf6r88 Hartley & Associates'),
(6820, 'https://ror.org/021wvg932', 'no_lang_code', 1, 'https://ror.org/021wvg932 Center For Remote Sensing (United States)'),
(6821, 'https://ror.org/018f35e53', 'en', 1, 'https://ror.org/018f35e53 Health Media Lab'),
(6822, 'https://ror.org/04k7qar56', 'en', 1, 'https://ror.org/04k7qar56 Ministry of Health Ministério da Saúde'),
(6823, 'https://ror.org/0015zns27', 'no_lang_code', 1, 'https://ror.org/0015zns27 KCTS 9 (United States)'),
(6824, 'https://ror.org/02bwfhj24', 'en', 1, 'https://ror.org/02bwfhj24 Center for Telepsychology'),
(6825, 'https://ror.org/01nda5g26', 'no_lang_code', 1, 'https://ror.org/01nda5g26 KDH Research & Communication (United States)'),
(6826, 'https://ror.org/00xwgwv92', 'no_lang_code', 1, 'https://ror.org/00xwgwv92 Kelly Services (United States)'),
(6827, 'https://ror.org/03k84rm07', 'en', 1, 'https://ror.org/03k84rm07 Center for Environmental Health'),
(6828, 'https://ror.org/01jtghg16', 'no_lang_code', 1, 'https://ror.org/01jtghg16 DiscoveRx (United States)'),
(6829, 'https://ror.org/05mnftd11', 'en', 1, 'https://ror.org/05mnftd11 Center for Prevention and Counseling'),
(6830, 'https://ror.org/03swwwm05', 'en', 1, 'https://ror.org/03swwwm05 Health Services Center'),
(6831, 'https://ror.org/02g5x8q86', 'en', 1, 'https://ror.org/02g5x8q86 Discovery Centre'),
(6832, 'https://ror.org/01tam1k81', 'en', 1, 'https://ror.org/01tam1k81 Healthcare Education Associates'),
(6833, 'https://ror.org/0390tt424', 'en', 1, 'https://ror.org/0390tt424 HealthCare Interactive'),
(6834, 'https://ror.org/00vhzxs21', 'no_lang_code', 1, 'https://ror.org/00vhzxs21 Immusoft (United States)'),
(6835, 'https://ror.org/00t0fph81', 'no_lang_code', 1, 'https://ror.org/00t0fph81 HealthSim (United States)'),
(6836, 'https://ror.org/00nkvag20', 'en', 1, 'https://ror.org/00nkvag20 Discovery Place'),
(6837, 'https://ror.org/00770p954', 'en', 1, 'https://ror.org/00770p954 Healthcare Technology Systems'),
(6838, 'https://ror.org/01cj6ar20', 'no_lang_code', 1, 'https://ror.org/01cj6ar20 DiscoveryBioMed (United States)'),
(6839, 'https://ror.org/02tcncc65', 'en', 1, 'https://ror.org/02tcncc65 Centerforce'),
(6840, 'https://ror.org/01c3pwn40', 'no_lang_code', 1, 'https://ror.org/01c3pwn40 Kent Displays (United States)'),
(6841, 'https://ror.org/05pz32j92', 'no_lang_code', 1, 'https://ror.org/05pz32j92 Kent Optronics (United States)'),
(6842, 'https://ror.org/04cd6wt71', 'no_lang_code', 1, 'https://ror.org/04cd6wt71 Kent SeaTech Corporation (United States)'),
(6843, 'https://ror.org/03egepy41', 'no_lang_code', 1, 'https://ror.org/03egepy41 DMetrix (United States)'),
(6844, 'https://ror.org/03q47r263', 'no_lang_code', 1, 'https://ror.org/03q47r263 DMH Associates (United States)'),
(6845, 'https://ror.org/02fncne76', 'en', 1, 'https://ror.org/02fncne76 Kentucky Wesleyan College'),
(6846, 'https://ror.org/02wv0bc69', 'no_lang_code', 1, 'https://ror.org/02wv0bc69 DNA Polymerase Technology (United States)'),
(6847, 'https://ror.org/03hdhbn34', 'no_lang_code', 1, 'https://ror.org/03hdhbn34 DNA Software (United States)'),
(6848, 'https://ror.org/04deyvw92', 'en', 1, 'https://ror.org/04deyvw92 Kestrel Institute'),
(6849, 'https://ror.org/01mc1qv75', 'no_lang_code', 1, 'https://ror.org/01mc1qv75 Kestrel Labs (United States)'),
(6850, 'https://ror.org/05x20ta98', 'no_lang_code', 1, 'https://ror.org/05x20ta98 Information Management Consultants (United States)'),
(6851, 'https://ror.org/0008kdt06', 'en', 1, 'https://ror.org/0008kdt06 Hearthstone Alzheimer Care'),
(6852, 'https://ror.org/05ggej879', 'no_lang_code', 1, 'https://ror.org/05ggej879 HeartVista (United States)'),
(6853, 'https://ror.org/01by6g473', 'en', 1, 'https://ror.org/01by6g473 Central Oregon Community College'),
(6854, 'https://ror.org/0548qkv95', 'no_lang_code', 1, 'https://ror.org/0548qkv95 DNASTAR (United States)'),
(6855, 'https://ror.org/025ngyw60', 'en', 1, 'https://ror.org/025ngyw60 Doane University'),
(6856, 'https://ror.org/0497h1m47', 'no_lang_code', 1, 'https://ror.org/0497h1m47 Key Tech (United States)'),
(6857, 'https://ror.org/04rcqnp59', 'no_lang_code', 1, 'https://ror.org/04rcqnp59 Heidelberg University'),
(6858, 'https://ror.org/03jsg8m50', 'no_lang_code', 1, 'https://ror.org/03jsg8m50 DOSECC Exploration Services (United States)'),
(6859, 'https://ror.org/03vj54r15', 'no_lang_code', 1, 'https://ror.org/03vj54r15 Dot Metrics Technologies (United States)'),
(6860, 'https://ror.org/057bx8w90', 'no_lang_code', 1, 'https://ror.org/057bx8w90 Kinder Magic Software (United States)'),
(6861, 'https://ror.org/04b05q786', 'no_lang_code', 1, 'https://ror.org/04b05q786 KineMed (United States)'),
(6862, 'https://ror.org/03qqc4d32', 'no_lang_code', 1, 'https://ror.org/03qqc4d32 QLT (Canada)'),
(6863, 'https://ror.org/02s4ke886', 'no_lang_code', 1, 'https://ror.org/02s4ke886 HemoShear (United States)'),
(6864, 'https://ror.org/0034k3d56', 'en', 1, 'https://ror.org/0034k3d56 Department of Community and Human Services'),
(6865, 'https://ror.org/041d9vd15', 'en', 1, 'https://ror.org/041d9vd15 Her Majesty''s Government Communications Centre'),
(6866, 'https://ror.org/0293t9757', 'no_lang_code', 1, 'https://ror.org/0293t9757 Droplet Measurement Technologies (United States)'),
(6867, 'https://ror.org/04tjehp55', 'no_lang_code', 1, 'https://ror.org/04tjehp55 Herman Miller (United States)'),
(6868, 'https://ror.org/04k6fcm51', 'no_lang_code', 1, 'https://ror.org/04k6fcm51 King Shaw Associates (United Kingdom)'),
(6869, 'https://ror.org/04p45sn64', 'en', 1, 'https://ror.org/04p45sn64 Canards IllimitƩs Canada Ducks Unlimited Canada'),
(6870, 'https://ror.org/040qebh26', 'en', 1, 'https://ror.org/040qebh26 Kirklees Council'),
(6871, 'https://ror.org/028tzq930', 'en', 1, 'https://ror.org/028tzq930 Kirkwood Community College'),
(6872, 'https://ror.org/00vnwz606', 'en', 1, 'https://ror.org/00vnwz606 Dudley Observatory'),
(6873, 'https://ror.org/056gzgs71', 'no_lang_code', 1, 'https://ror.org/056gzgs71 Huawei Technologies (United Kingdom)'),
(6874, 'https://ror.org/03rytet35', 'no_lang_code', 1, 'https://ror.org/03rytet35 KMS Fusion (United States)'),
(6875, 'https://ror.org/05dyqe421', 'en', 1, 'https://ror.org/05dyqe421 Knowle West Media Centre'),
(6876, 'https://ror.org/03ryhm704', 'no_lang_code', 1, 'https://ror.org/03ryhm704 DuPont (United Kingdom)'),
(6877, 'https://ror.org/05jckef59', 'no_lang_code', 1, 'https://ror.org/05jckef59 Rimage Corporation (United States)'),
(6878, 'https://ror.org/04gtf4q04', 'no_lang_code', 1, 'https://ror.org/04gtf4q04 Knowledge Based Systems (United States)'),
(6879, 'https://ror.org/031yz7195', 'en', 1, 'https://ror.org/031yz7195 Centre de Recherche Interdisciplinaire en RƩadaptation Centre for Interdisciplinary Research in Rehabilitation'),
(6880, 'https://ror.org/02py7c988', 'no_lang_code', 1, 'https://ror.org/02py7c988 DxRay (United States)'),
(6881, 'https://ror.org/05kwwke37', 'en', 1, 'https://ror.org/05kwwke37 Hertfordshire County Council'),
(6882, 'https://ror.org/05ear3j66', 'no_lang_code', 1, 'https://ror.org/05ear3j66 Dynaflow (United States)'),
(6883, 'https://ror.org/01aetpp13', 'en', 1, 'https://ror.org/01aetpp13 Centre for Process Innovation'),
(6884, 'https://ror.org/03qvxap92', 'no_lang_code', 1, 'https://ror.org/03qvxap92 Kodak (United Kingdom)'),
(6885, 'https://ror.org/022fxd079', 'no_lang_code', 1, 'https://ror.org/022fxd079 Hexcel (United Kingdom)'),
(6886, 'https://ror.org/02yrkyr74', 'no_lang_code', 1, 'https://ror.org/02yrkyr74 Data Voice Exchange (United States)'),
(6887, 'https://ror.org/0402h1193', 'no_lang_code', 1, 'https://ror.org/0402h1193 Hiden Analytical (United Kingdom)'),
(6888, 'https://ror.org/03mz0by90', 'no_lang_code', 1, 'https://ror.org/03mz0by90 Consolidated Safety Services-Dynamac (United States)'),
(6889, 'https://ror.org/042x6s220', 'no_lang_code', 1, 'https://ror.org/042x6s220 HTG Molecular Diagnostics (United States)'),
(6890, 'https://ror.org/02gnvsm39', 'no_lang_code', 1, 'https://ror.org/02gnvsm39 Koester Performance Research (United States)'),
(6891, 'https://ror.org/015exsf29', 'no_lang_code', 1, 'https://ror.org/015exsf29 Upsight (Canada)'),
(6892, 'https://ror.org/01x63gj61', 'en', 1, 'https://ror.org/01x63gj61 Hillsborough Community College'),
(6893, 'https://ror.org/05v4j5439', 'no_lang_code', 1, 'https://ror.org/05v4j5439 Kopin Corporation (United States)'),
(6894, 'https://ror.org/00zn54j08', 'no_lang_code', 1, 'https://ror.org/00zn54j08 Kryton International (Canada)'),
(6895, 'https://ror.org/00h8z3z59', 'en', 1, 'https://ror.org/00h8z3z59 Hispanic Association of Colleges and Universities'),
(6896, 'https://ror.org/03vmatd47', 'no_lang_code', 1, 'https://ror.org/03vmatd47 Safran Electronics (Canada)'),
(6897, 'https://ror.org/006hrz834', 'no_lang_code', 1, 'https://ror.org/006hrz834 Roche (Canada)'),
(6898, 'https://ror.org/01qwbfa84', 'en', 1, 'https://ror.org/01qwbfa84 CollĆØge holland Holland College'),
(6899, 'https://ror.org/020gftc86', 'en', 1, 'https://ror.org/020gftc86 Holy Names University'),
(6900, 'https://ror.org/05g8vd955', 'no_lang_code', 1, 'https://ror.org/05g8vd955 KWS (United Kingdom)'),
(6901, 'https://ror.org/04dxvrs36', 'no_lang_code', 1, 'https://ror.org/04dxvrs36 HemoCleanse (United States)'),
(6902, 'https://ror.org/04p42v615', 'no_lang_code', 1, 'https://ror.org/04p42v615 HiretheWorld (Canada)'),
(6903, 'https://ror.org/041tfc254', 'no_lang_code', 1, 'https://ror.org/041tfc254 Comply (United States)'),
(6904, 'https://ror.org/02gr2sm80', 'no_lang_code', 1, 'https://ror.org/02gr2sm80 Aecom (United States)'),
(6905, 'https://ror.org/0097wyf31', 'no_lang_code', 1, 'https://ror.org/0097wyf31 Hitachi (United Kingdom)'),
(6906, 'https://ror.org/03y98mn81', 'no_lang_code', 1, 'https://ror.org/03y98mn81 L.B. Foster Rail Technologies (Canada)'),
(6907, 'https://ror.org/023q7jh34', 'no_lang_code', 1, 'https://ror.org/023q7jh34 Hoare Lea (United Kingdom)'),
(6908, 'https://ror.org/022c1xk47', 'no_lang_code', 1, 'https://ror.org/022c1xk47 Honda (Germany)'),
(6909, 'https://ror.org/010ab8p65', 'en', 1, 'https://ror.org/010ab8p65 Hopkins Architectes Hopkins Architects'),
(6910, 'https://ror.org/01070pt38', 'fr', 1, 'https://ror.org/01070pt38 City College La CitƩ CollƩgiale'),
(6911, 'https://ror.org/046q1p146', 'en', 1, 'https://ror.org/046q1p146 La Clinica del Pueblo'),
(6912, 'https://ror.org/059yd5j13', 'en', 1, 'https://ror.org/059yd5j13 Georgetown College'),
(6913, 'https://ror.org/00wqtx630', 'en', 1, 'https://ror.org/00wqtx630 South Carolina Technical College System'),
(6914, 'https://ror.org/05k8s4246', 'en', 1, 'https://ror.org/05k8s4246 La Frontera Arizona'),
(6915, 'https://ror.org/04w4aze46', 'en', 1, 'https://ror.org/04w4aze46 LaGrange College'),
(6916, 'https://ror.org/05ezt9354', 'en', 1, 'https://ror.org/05ezt9354 La Jolla Infectious Disease Institute'),
(6917, 'https://ror.org/01pv1vb28', 'pl', 1, 'https://ror.org/01pv1vb28 Samodzielny Publiczny Centralny Szpital Kliniczny'),
(6918, 'https://ror.org/019rsbe67', 'no_lang_code', 1, 'https://ror.org/019rsbe67 Jazz Pharmaceuticals (United States)'),
(6919, 'https://ror.org/00ekxed29', 'no_lang_code', 1, 'https://ror.org/00ekxed29 Horizon Research (United States)'),
(6920, 'https://ror.org/0413xn342', 'en', 1, 'https://ror.org/0413xn342 Houston Advanced Research Center'),
(6921, 'https://ror.org/05b4xr322', 'en', 1, 'https://ror.org/05b4xr322 Houston Area Community Services'),
(6922, 'https://ror.org/02rr12y45', 'en', 1, 'https://ror.org/02rr12y45 Press Ganey'),
(6923, 'https://ror.org/01t5jw607', 'en', 1, 'https://ror.org/01t5jw607 Houston Independent School District'),
(6924, 'https://ror.org/01sw9e110', 'en', 1, 'https://ror.org/01sw9e110 Howard Brown Health Center'),
(6925, 'https://ror.org/02bzq7389', 'en', 1, 'https://ror.org/02bzq7389 Howard Community College'),
(6926, 'https://ror.org/007jsya95', 'en', 1, 'https://ror.org/007jsya95 Hubbs-Sea World Research Institute'),
(6927, 'https://ror.org/04bcw2e70', 'no_lang_code', 1, 'https://ror.org/04bcw2e70 Ameriprise Financial (United States)'),
(6928, 'https://ror.org/010h0ab29', 'no_lang_code', 1, 'https://ror.org/010h0ab29 Dynamis Pharmaceuticals (United States)'),
(6929, 'https://ror.org/03xey5e12', 'en', 1, 'https://ror.org/03xey5e12 Human Resources Research Organization'),
(6930, 'https://ror.org/00k8s2y27', 'en', 1, 'https://ror.org/00k8s2y27 Huntingdon College'),
(6931, 'https://ror.org/02gxffd98', 'no_lang_code', 1, 'https://ror.org/02gxffd98 Laing O''Rourke (United Kingdom)'),
(6932, 'https://ror.org/03210bg97', 'no_lang_code', 1, 'https://ror.org/03210bg97 Dynex Semiconductor (United Kingdom)'),
(6933, 'https://ror.org/0234k0g56', 'no_lang_code', 1, 'https://ror.org/0234k0g56 HydraTek (Canada)'),
(6934, 'https://ror.org/038kja517', 'en', 1, 'https://ror.org/038kja517 Hydrologic Research Center'),
(6935, 'https://ror.org/04npefg86', 'en', 1, 'https://ror.org/04npefg86 Lake County'),
(6936, 'https://ror.org/04jxh5943', 'no_lang_code', 1, 'https://ror.org/04jxh5943 Hyper Tech Research (United States)'),
(6937, 'https://ror.org/03fd07264', 'no_lang_code', 1, 'https://ror.org/03fd07264 Lake Shore Cryotronics (United States)'),
(6938, 'https://ror.org/00a4npp83', 'no_lang_code', 1, 'https://ror.org/00a4npp83 Dyson (United Kingdom)'),
(6939, 'https://ror.org/05wm6w245', 'en', 1, 'https://ror.org/05wm6w245 Lakeland College'),
(6940, 'https://ror.org/032bvxc76', 'no_lang_code', 1, 'https://ror.org/032bvxc76 Lakes Environmental (Canada)'),
(6941, 'https://ror.org/03yr8h660', 'no_lang_code', 1, 'https://ror.org/03yr8h660 E.ON (United Kingdom)'),
(6942, 'https://ror.org/04sk8z888', 'no_lang_code', 1, 'https://ror.org/04sk8z888 EP (United States)'),
(6943, 'https://ror.org/01zdgf096', 'en', 1, 'https://ror.org/01zdgf096 Baptist Health Care'),
(6944, 'https://ror.org/012xhfk02', 'en', 1, 'https://ror.org/012xhfk02 LAM Foundation'),
(6945, 'https://ror.org/045zy3z54', 'en', 1, 'https://ror.org/045zy3z54 Lambton College'),
(6946, 'https://ror.org/0445tpa77', 'no_lang_code', 1, 'https://ror.org/0445tpa77 Institute of Bioengineering Technologies (United States)'),
(6947, 'https://ror.org/05113n960', 'en', 1, 'https://ror.org/05113n960 Lane Community College'),
(6948, 'https://ror.org/00d00px90', 'en', 1, 'https://ror.org/00d00px90 Langley Environmental Partners Society'),
(6949, 'https://ror.org/00q3rb237', 'no_lang_code', 1, 'https://ror.org/00q3rb237 Larus Technologies (Canada)'),
(6950, 'https://ror.org/0156f0c06', 'no_lang_code', 1, 'https://ror.org/0156f0c06 ICF International (United States)'),
(6951, 'https://ror.org/00qs2ka20', 'en', 1, 'https://ror.org/00qs2ka20 East Los Angeles College'),
(6952, 'https://ror.org/02qaw7v88', 'no_lang_code', 1, 'https://ror.org/02qaw7v88 Gold Standard Simulations (United Kingdom)'),
(6953, 'https://ror.org/04x4fb889', 'no_lang_code', 1, 'https://ror.org/04x4fb889 Lasmed (United States)'),
(6954, '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'),
(6955, 'https://ror.org/004zwen25', 'no_lang_code', 1, 'https://ror.org/004zwen25 Intelligent Optical Systems (United States)'),
(6956, 'https://ror.org/03ah8pc29', 'no_lang_code', 1, 'https://ror.org/03ah8pc29 Hyperion Technologies (Canada)'),
(6957, 'https://ror.org/01fydjk85', 'no_lang_code', 1, 'https://ror.org/01fydjk85 Earth Images Foundation (United States)'),
(6958, 'https://ror.org/0295s2632', 'en', 1, 'https://ror.org/0295s2632 La Comisión Latina sobre el SIDA Latino Commission on AIDS'),
(6959, 'https://ror.org/0204af661', 'no_lang_code', 1, 'https://ror.org/0204af661 EarthSky'),
(6960, 'https://ror.org/0070c9h23', 'en', 1, 'https://ror.org/0070c9h23 Latino Health Institute (United States)'),
(6961, 'https://ror.org/00q9fjw02', 'no_lang_code', 1, 'https://ror.org/00q9fjw02 ECI Biotech (United States)'),
(6962, 'https://ror.org/0239g9287', 'en', 1, 'https://ror.org/0239g9287 East Bay Institute for Research & Education'),
(6963, 'https://ror.org/03wjz0p55', 'no_lang_code', 1, 'https://ror.org/03wjz0p55 LaunchPoint Technologies (United States)'),
(6964, 'https://ror.org/04npym748', 'no_lang_code', 1, 'https://ror.org/04npym748 Humanitas (United States)'),
(6965, 'https://ror.org/05kv34a53', 'no_lang_code', 1, 'https://ror.org/05kv34a53 East Malling Research (United Kingdom)'),
(6966, 'https://ror.org/04072nk43', 'en', 1, 'https://ror.org/04072nk43 Human Media'),
(6967, 'https://ror.org/03w69rv70', 'en', 1, 'https://ror.org/03w69rv70 Eastern Iowa Community College'),
(6968, 'https://ror.org/04tzjpc47', 'no_lang_code', 1, 'https://ror.org/04tzjpc47 Ebert and Associates'),
(6969, 'https://ror.org/0012w1115', 'no_lang_code', 1, 'https://ror.org/0012w1115 EcoMetrix'),
(6970, 'https://ror.org/058sedk89', 'no_lang_code', 1, 'https://ror.org/058sedk89 Laureate Learning Systems (United States)'),
(6971, 'https://ror.org/000jqak13', 'no_lang_code', 1, 'https://ror.org/000jqak13 ECBio (Portugal)'),
(6972, 'https://ror.org/035wemy73', 'no_lang_code', 1, 'https://ror.org/035wemy73 Bellus Health (Canada)'),
(6973, 'https://ror.org/00hx3bk50', 'no_lang_code', 1, 'https://ror.org/00hx3bk50 Icogenex (United States)'),
(6974, 'https://ror.org/00n83m850', 'no_lang_code', 1, 'https://ror.org/00n83m850 EcoSynthetix (Canada)'),
(6975, 'https://ror.org/00wbv7962', 'no_lang_code', 1, 'https://ror.org/00wbv7962 Environmental Consultants and Contractors'),
(6976, 'https://ror.org/05cw2ys85', 'no_lang_code', 1, 'https://ror.org/05cw2ys85 Ecovative Design (United States)'),
(6977, 'https://ror.org/046wvwe48', 'en', 1, 'https://ror.org/046wvwe48 Eden Medical'),
(6978, 'https://ror.org/05d692120', 'en', 1, 'https://ror.org/05d692120 Lawson State Community College'),
(6979, 'https://ror.org/05jyway09', 'no_lang_code', 1, 'https://ror.org/05jyway09 Layton BioScience (United States)'),
(6980, 'https://ror.org/04mt1cz50', 'en', 1, 'https://ror.org/04mt1cz50 Chartered Institution of Civil Engineering Surveyors'),
(6981, 'https://ror.org/05d5x4r54', 'no_lang_code', 1, 'https://ror.org/05d5x4r54 Sani Marc (Canada)'),
(6982, 'https://ror.org/02zz8mw60', 'no_lang_code', 1, 'https://ror.org/02zz8mw60 GlaxoSmithKline (Canada)'),
(6983, 'https://ror.org/03zqwq749', 'no_lang_code', 1, 'https://ror.org/03zqwq749 ID-FISH Technology (United States)'),
(6984, 'https://ror.org/029ybkn33', 'no_lang_code', 1, 'https://ror.org/029ybkn33 Edenspace Systems (United States)'),
(6985, 'https://ror.org/054s8nj77', 'en', 1, 'https://ror.org/054s8nj77 Innovative Designs in Environments for an Aging Society'),
(6986, 'https://ror.org/00nsrak45', 'no_lang_code', 1, 'https://ror.org/00nsrak45 Edge Enterprises (United States)'),
(6987, 'https://ror.org/00q2yft10', 'no_lang_code', 1, 'https://ror.org/00q2yft10 Leap of Faith Technologies (United States)'),
(6988, 'https://ror.org/02wed1y10', 'no_lang_code', 1, 'https://ror.org/02wed1y10 Learning in Motion (United States)'),
(6989, 'https://ror.org/02m444q29', 'no_lang_code', 1, 'https://ror.org/02m444q29 EEI Communications (United States)'),
(6990, 'https://ror.org/057pedz06', 'en', 1, 'https://ror.org/057pedz06 Lee College'),
(6991, 'https://ror.org/00pbjy126', 'no_lang_code', 1, 'https://ror.org/00pbjy126 EDJ Associates'),
(6992, 'https://ror.org/00w5rhv83', 'en', 1, 'https://ror.org/00w5rhv83 EdLab Group'),
(6993, 'https://ror.org/00vhfbm88', 'en', 1, 'https://ror.org/00vhfbm88 Edmonds Community College'),
(6994, 'https://ror.org/05qqty169', 'en', 1, 'https://ror.org/05qqty169 Lehigh Carbon Community College'),
(6995, 'https://ror.org/05qt2r430', 'en', 1, 'https://ror.org/05qt2r430 Education Commission of the States'),
(6996, 'https://ror.org/00p511b69', 'en', 1, 'https://ror.org/00p511b69 Education Connection'),
(6997, 'https://ror.org/0304xwq55', 'en', 1, 'https://ror.org/0304xwq55 Education Training And Research'),
(6998, 'https://ror.org/03aes2233', 'en', 1, 'https://ror.org/03aes2233 Education Coordinating Council'),
(6999, 'https://ror.org/05kpczz35', 'no_lang_code', 1, 'https://ror.org/05kpczz35 Hexagon (United Kingdom)'),
(7000, 'https://ror.org/045wcpc71', 'en', 1, 'https://ror.org/045wcpc71 Leicestershire Partnership NHS Trust'),
(7001, 'https://ror.org/02harxg26', 'no_lang_code', 1, 'https://ror.org/02harxg26 Educational Film Center (United States)'),
(7002, 'https://ror.org/03gzw3461', 'en', 1, 'https://ror.org/03gzw3461 Illinois Department of Human Services'),
(7003, 'https://ror.org/0333j1f77', 'no_lang_code', 1, 'https://ror.org/0333j1f77 Lentigen Technology (United States)'),
(7004, 'https://ror.org/01f1j2n15', 'en', 1, 'https://ror.org/01f1j2n15 Educational Service District 112'),
(7005, 'https://ror.org/055nj6202', 'fr', 1, 'https://ror.org/055nj6202 Les Scientifines'),
(7006, 'https://ror.org/034ja4661', 'no_lang_code', 1, 'https://ror.org/034ja4661 Educational Service Incorporation'),
(7007, 'https://ror.org/02naadr48', 'no_lang_code', 1, 'https://ror.org/02naadr48 Pearson (United States)'),
(7008, 'https://ror.org/01ssv2r52', 'no_lang_code', 1, 'https://ror.org/01ssv2r52 ImageCat (United States)'),
(7009, 'https://ror.org/042jh0r75', 'no_lang_code', 1, 'https://ror.org/042jh0r75 Imaging Systems Technology (United States)'),
(7010, 'https://ror.org/013zb0q67', 'en', 1, 'https://ror.org/013zb0q67 Anixter Center'),
(7011, 'https://ror.org/0235n3r56', 'en', 1, 'https://ror.org/0235n3r56 Let''s Talk Science'),
(7012, 'https://ror.org/0399pn486', 'en', 1, 'https://ror.org/0399pn486 McREL International'),
(7013, 'https://ror.org/03pfy5b07', 'no_lang_code', 1, 'https://ror.org/03pfy5b07 Edvotek (United States)'),
(7014, 'https://ror.org/018pfsv20', 'en', 1, 'https://ror.org/018pfsv20 Lexington Richland Alcohol And Drug Abuse Council'),
(7015, 'https://ror.org/04rfqrp30', 'no_lang_code', 1, 'https://ror.org/04rfqrp30 Eion (Canada)'),
(7016, 'https://ror.org/01hpb1x88', 'no_lang_code', 1, 'https://ror.org/01hpb1x88 EKOS Corporation'),
(7017, 'https://ror.org/03b41zp34', 'en', 1, 'https://ror.org/03b41zp34 Liberty Science Center'),
(7018, 'https://ror.org/059rw1510', 'no_lang_code', 1, 'https://ror.org/059rw1510 Ekso Bionics (United States)'),
(7019, 'https://ror.org/021spd704', 'en', 1, 'https://ror.org/021spd704 El Camino College'),
(7020, 'https://ror.org/021q72e63', 'no_lang_code', 1, 'https://ror.org/021q72e63 Novus Biologicals (United States)'),
(7021, 'https://ror.org/05j34rw34', 'en', 1, 'https://ror.org/05j34rw34 El Dorado Hills Community Vision'),
(7022, 'https://ror.org/01gswfc04', 'en', 1, 'https://ror.org/01gswfc04 El Paso Community College'),
(7023, 'https://ror.org/0427p8a79', 'no_lang_code', 1, 'https://ror.org/0427p8a79 IMMCO Diagnostics (United States)'),
(7024, 'https://ror.org/03em9pc54', 'en', 1, 'https://ror.org/03em9pc54 Iowa Central Community College'),
(7025, 'https://ror.org/02qf7zp16', 'en', 1, 'https://ror.org/02qf7zp16 Iowa Lakes Community College'),
(7026, 'https://ror.org/02ttqd922', 'en', 1, 'https://ror.org/02ttqd922 Electrical and Computer Engineering Department Heads Association'),
(7027, 'https://ror.org/0296e0332', 'en', 1, 'https://ror.org/0296e0332 Iowa Department of Inspections and Appeals'),
(7028, 'https://ror.org/02qgx4h83', 'no_lang_code', 1, 'https://ror.org/02qgx4h83 Immersion (United States)'),
(7029, 'https://ror.org/03kbjzx15', 'no_lang_code', 1, 'https://ror.org/03kbjzx15 Immersion (Canada)'),
(7030, 'https://ror.org/025fs6666', 'no_lang_code', 1, 'https://ror.org/025fs6666 Antigen Discovery (United States)'),
(7031, 'https://ror.org/02y8r3y04', 'no_lang_code', 1, 'https://ror.org/02y8r3y04 Life Prediction Technologies (Canada)'),
(7032, 'https://ror.org/052333450', 'no_lang_code', 1, 'https://ror.org/052333450 Electro Energy (United States)'),
(7033, 'https://ror.org/02xvj0167', 'no_lang_code', 1, 'https://ror.org/02xvj0167 Lifepharms (United States)'),
(7034, 'https://ror.org/04hxfjk77', 'no_lang_code', 1, 'https://ror.org/04hxfjk77 Immtech Pharmaceuticals (United States)'),
(7035, 'https://ror.org/0506v2b24', 'no_lang_code', 1, 'https://ror.org/0506v2b24 STRATA Skin Sciences (United States)'),
(7036, 'https://ror.org/05ffsv137', 'no_lang_code', 1, 'https://ror.org/05ffsv137 Light Age (United States)'),
(7037, 'https://ror.org/05n8mkf20', 'no_lang_code', 1, 'https://ror.org/05n8mkf20 ImmuCell (United States)'),
(7038, 'https://ror.org/00qsgpr41', 'no_lang_code', 1, 'https://ror.org/00qsgpr41 ElectroChem (United States)'),
(7039, 'https://ror.org/03etmv771', 'no_lang_code', 1, 'https://ror.org/03etmv771 LightBridge Healthcare Research (United States)'),
(7040, 'https://ror.org/00wph9g26', 'no_lang_code', 1, 'https://ror.org/00wph9g26 Electronic BioSciences (United States)'),
(7041, 'https://ror.org/059gk7j33', 'no_lang_code', 1, 'https://ror.org/059gk7j33 Imperial Innovations (United Kingdom)'),
(7042, 'https://ror.org/0015wff52', 'no_lang_code', 1, 'https://ror.org/0015wff52 Implant Sciences (United States)'),
(7043, 'https://ror.org/03xm51a29', 'no_lang_code', 1, 'https://ror.org/03xm51a29 Electrovaya (Canada)'),
(7044, 'https://ror.org/01met4463', 'no_lang_code', 1, 'https://ror.org/01met4463 Limagrain (United Kingdom)'),
(7045, 'https://ror.org/008qdc072', 'no_lang_code', 1, 'https://ror.org/008qdc072 Monteco (Canada)'),
(7046, 'https://ror.org/02dw7ch21', 'no_lang_code', 1, 'https://ror.org/02dw7ch21 Element Six (United Kingdom)'),
(7047, 'https://ror.org/01c9wxw51', 'no_lang_code', 1, 'https://ror.org/01c9wxw51 ImQuest BioSciences (United States)'),
(7048, 'https://ror.org/01zzhbb93', 'en', 1, 'https://ror.org/01zzhbb93 Linn Benton Community College'),
(7049, 'https://ror.org/00vzqmg54', 'en', 1, 'https://ror.org/00vzqmg54 Elizabeth Glaser Pediatric AIDS Foundation'),
(7050, 'https://ror.org/041g66k42', 'no_lang_code', 1, 'https://ror.org/041g66k42 ImmuneChem (Canada)'),
(7051, 'https://ror.org/01aq2db46', 'no_lang_code', 1, 'https://ror.org/01aq2db46 ImmuNext (United States)'),
(7052, 'https://ror.org/04c1def54', 'no_lang_code', 1, 'https://ror.org/04c1def54 ElSohly Laboratories (United States)'),
(7053, 'https://ror.org/02j8tmw16', 'en', 1, 'https://ror.org/02j8tmw16 Immunization Action Coalition'),
(7054, 'https://ror.org/00rch4x96', 'no_lang_code', 1, 'https://ror.org/00rch4x96 ImmunoPrecise (Canada)'),
(7055, 'https://ror.org/05c2mc090', 'no_lang_code', 1, 'https://ror.org/05c2mc090 Immunovaccine (Canada)'),
(7056, 'https://ror.org/0359jxf05', 'no_lang_code', 1, 'https://ror.org/0359jxf05 ImmuRx (United States)'),
(7057, 'https://ror.org/00qfz3b98', 'no_lang_code', 1, 'https://ror.org/00qfz3b98 Elsoms (United Kingdom)'),
(7058, 'https://ror.org/04g8dtp60', 'no_lang_code', 1, 'https://ror.org/04g8dtp60 Quidel Corporation (United States)'),
(7059, 'https://ror.org/004m2d892', 'no_lang_code', 1, 'https://ror.org/004m2d892 Impact Assessment'),
(7060, 'https://ror.org/032h8td77', 'no_lang_code', 1, 'https://ror.org/032h8td77 InBios International (United States)'),
(7061, 'https://ror.org/040fwvd70', 'en', 1, 'https://ror.org/040fwvd70 Little Big Horn College'),
(7062, 'https://ror.org/01s8ppv52', 'no_lang_code', 1, 'https://ror.org/01s8ppv52 Incell Corporation (United States)'),
(7063, 'https://ror.org/0532mvt92', 'no_lang_code', 1, 'https://ror.org/0532mvt92 LKT Laboratories (United States)'),
(7064, 'https://ror.org/03t56ts61', 'en', 1, 'https://ror.org/03t56ts61 Livingstone College'),
(7065, 'https://ror.org/057q4mw47', 'en', 1, 'https://ror.org/057q4mw47 Lloyd''s Register Foundation'),
(7066, 'https://ror.org/042930e44', 'no_lang_code', 1, 'https://ror.org/042930e44 Centrose (United States)'),
(7067, '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'),
(7068, 'https://ror.org/00jz53350', 'no_lang_code', 1, 'https://ror.org/00jz53350 Centurion Biofuels (Canada)'),
(7069, 'https://ror.org/04r08t069', 'en', 1, 'https://ror.org/04r08t069 Independent Colleges Office'),
(7070, 'https://ror.org/03w6e0c57', 'pt', 1, 'https://ror.org/03w6e0c57 Estrutura de Missão para os Assuntos do Mar'),
(7071, 'https://ror.org/01a4p1q97', 'no_lang_code', 1, 'https://ror.org/01a4p1q97 LNKChemsolutions'),
(7072, 'https://ror.org/054wvh509', 'no_lang_code', 1, 'https://ror.org/054wvh509 InDevR (United States)'),
(7073, 'https://ror.org/05hmeb585', 'no_lang_code', 1, 'https://ror.org/05hmeb585 Loadpoint (United Kingdom)'),
(7074, 'https://ror.org/05axs7x03', 'en', 1, 'https://ror.org/05axs7x03 Indian River State College'),
(7075, 'https://ror.org/019a0n503', 'no_lang_code', 1, 'https://ror.org/019a0n503 Cerestech (Canada)'),
(7076, 'https://ror.org/036300c37', 'en', 1, 'https://ror.org/036300c37 Indiana Academy of Science'),
(7077, 'https://ror.org/00bcqra17', 'no_lang_code', 1, 'https://ror.org/00bcqra17 Local Data Company (United Kingdom)'),
(7078, 'https://ror.org/04kpc8y09', 'en', 1, 'https://ror.org/04kpc8y09 Local Government Commission'),
(7079, 'https://ror.org/02m805769', 'fr', 1, 'https://ror.org/02m805769 Cegep de La Pocatiere Cégep de la pocatière'),
(7080, 'https://ror.org/0073h0969', 'no_lang_code', 1, 'https://ror.org/0073h0969 Indus Instruments (United States)'),
(7081, 'https://ror.org/040hka494', 'fr', 1, 'https://ror.org/040hka494 Cegep de Matane CƩgep de matane'),
(7082, 'https://ror.org/012xcvh54', 'fr', 1, 'https://ror.org/012xcvh54 Cegep de Saint Jerome Cegep of Saint JƩrƓme CƩgep de saint-jƩrƓme'),
(7083, 'https://ror.org/0568x1w36', 'no_lang_code', 1, 'https://ror.org/0568x1w36 Industrial Science & Technology Network (United States)'),
(7084, 'https://ror.org/01601en76', 'fr', 1, 'https://ror.org/01601en76 Cegep de Sept Iles CĆ©gep de sept-Ǝles'),
(7085, 'https://ror.org/0111bj510', 'no_lang_code', 1, 'https://ror.org/0111bj510 Industrial Tomography Systems (United Kingdom)'),
(7086, 'https://ror.org/05bsers28', 'fr', 1, 'https://ror.org/05bsers28 Cegep de Victoriaville CƩgep de victoriaville'),
(7087, 'https://ror.org/02jqwca63', 'fr', 1, 'https://ror.org/02jqwca63 Cegep regional de Lanaudiere Cégep Régional de Lanaudière'),
(7088, 'https://ror.org/05qzbtg69', 'no_lang_code', 1, 'https://ror.org/05qzbtg69 Ineos (United Kingdom)'),
(7089, 'https://ror.org/05rt5vh72', 'no_lang_code', 1, 'https://ror.org/05rt5vh72 Logical Semantics (United States)'),
(7090, 'https://ror.org/02rdhhs90', 'en', 1, 'https://ror.org/02rdhhs90 Emmanuel College - Massachusetts'),
(7091, 'https://ror.org/014tb3433', 'en', 1, 'https://ror.org/014tb3433 Loma Linda Veterans Association for Research and Education'),
(7092, 'https://ror.org/05m8hpg39', 'en', 1, 'https://ror.org/05m8hpg39 London First'),
(7093, 'https://ror.org/022mzwp71', 'pt', 1, 'https://ror.org/022mzwp71 Instituto de Engenharia de Sistemas e Computadores Microsistemas e Nanotecnologias'),
(7094, 'https://ror.org/059j9s184', 'en', 1, 'https://ror.org/059j9s184 Lone Star College'),
(7095, 'https://ror.org/058hbcp36', 'no_lang_code', 1, 'https://ror.org/058hbcp36 Empirical Technologies (United States)'),
(7096, 'https://ror.org/03a0ckw61', 'en', 1, 'https://ror.org/03a0ckw61 Long Island Association for AIDS Care'),
(7097, 'https://ror.org/038emx233', 'no_lang_code', 1, 'https://ror.org/038emx233 EMT Associates (United States)'),
(7098, 'https://ror.org/02tqrck55', 'no_lang_code', 1, 'https://ror.org/02tqrck55 En''Urga (United States)'),
(7099, 'https://ror.org/04cgfe294', 'no_lang_code', 1, 'https://ror.org/04cgfe294 Lonza (United Kingdom)'),
(7100, 'https://ror.org/05nfbwk10', 'no_lang_code', 1, 'https://ror.org/05nfbwk10 Encode Bio (United States)'),
(7101, 'https://ror.org/035aej353', 'en', 1, 'https://ror.org/035aej353 Lorain County Community College'),
(7102, 'https://ror.org/04x5jxk30', 'no_lang_code', 1, 'https://ror.org/04x5jxk30 Aptose Biosciences (Canada)'),
(7103, 'https://ror.org/007sw5k32', 'pt', 1, 'https://ror.org/007sw5k32 Centro de GenƩtica Clƭnica'),
(7104, 'https://ror.org/04mmv7r89', 'en', 1, 'https://ror.org/04mmv7r89 Chadron State College'),
(7105, 'https://ror.org/05fxhrw65', 'en', 1, 'https://ror.org/05fxhrw65 Endocrine Society'),
(7106, 'https://ror.org/058aed112', 'en', 1, 'https://ror.org/058aed112 Los Angeles Community College District'),
(7107, 'https://ror.org/028my8947', 'en', 1, 'https://ror.org/028my8947 Chabot Space and Science Center'),
(7108, 'https://ror.org/04exhr452', 'en', 1, 'https://ror.org/04exhr452 Los Angeles Unified School District'),
(7109, 'https://ror.org/01s4hex50', 'en', 1, 'https://ror.org/01s4hex50 Society of Automotive Engineers International'),
(7110, 'https://ror.org/058dk4619', 'no_lang_code', 1, 'https://ror.org/058dk4619 Endocyte (United States)'),
(7111, 'https://ror.org/00bh4sk41', 'no_lang_code', 1, 'https://ror.org/00bh4sk41 Endomedix (United States)'),
(7112, 'https://ror.org/0584zt830', 'no_lang_code', 1, 'https://ror.org/0584zt830 EndoShape (United States)'),
(7113, 'https://ror.org/00jg79r23', 'no_lang_code', 1, 'https://ror.org/00jg79r23 Information Ventures (United States)'),
(7114, 'https://ror.org/00yb09x74', 'en', 1, 'https://ror.org/00yb09x74 Informed Families'),
(7115, 'https://ror.org/04j3f6252', 'en', 1, 'https://ror.org/04j3f6252 Change Happens'),
(7116, 'https://ror.org/02gdz0643', 'no_lang_code', 1, 'https://ror.org/02gdz0643 DCS Corporation (United States)'),
(7117, 'https://ror.org/02fhhd636', 'no_lang_code', 1, 'https://ror.org/02fhhd636 Endres Machining Innovations (United States)'),
(7118, 'https://ror.org/00cb06v13', 'no_lang_code', 1, 'https://ror.org/00cb06v13 ABB (United States)'),
(7119, 'https://ror.org/04bw2xb41', 'no_lang_code', 1, 'https://ror.org/04bw2xb41 Infotech Soft (United States)'),
(7120, 'https://ror.org/020ave461', 'no_lang_code', 1, 'https://ror.org/020ave461 Proton (United Kingdom)'),
(7121, 'https://ror.org/0073nm244', 'en', 1, 'https://ror.org/0073nm244 Loud Crow Interactive'),
(7122, 'https://ror.org/03f0b2d64', 'no_lang_code', 1, 'https://ror.org/03f0b2d64 Evans Analytical Group (United States)'),
(7123, 'https://ror.org/02ebc4h13', 'no_lang_code', 1, 'https://ror.org/02ebc4h13 Inframat Corporation (United States)'),
(7124, 'https://ror.org/02yzma536', 'no_lang_code', 1, 'https://ror.org/02yzma536 Infrared Fiber Systems (United States)'),
(7125, 'https://ror.org/02e1s7e95', 'en', 1, 'https://ror.org/02e1s7e95 Kettering Foundation'),
(7126, 'https://ror.org/011tndv57', 'en', 1, 'https://ror.org/011tndv57 Kentucky Science Center'),
(7127, 'https://ror.org/03q452953', 'no_lang_code', 1, 'https://ror.org/03q452953 ING Robotic Aviation'),
(7128, 'https://ror.org/01qjvcb50', 'no_lang_code', 1, 'https://ror.org/01qjvcb50 Lpath (United States)'),
(7129, 'https://ror.org/01chs2347', 'no_lang_code', 1, 'https://ror.org/01chs2347 Ingegneria dei Sistemi (United Kingdom)'),
(7130, 'https://ror.org/004xj7429', 'no_lang_code', 1, 'https://ror.org/004xj7429 Ingenza (United Kingdom)'),
(7131, 'https://ror.org/01gwh4g82', 'en', 1, 'https://ror.org/01gwh4g82 Energy Saving Trust'),
(7132, 'https://ror.org/012zm4p89', 'no_lang_code', 1, 'https://ror.org/012zm4p89 Energy Science Laboratories (United States)'),
(7133, 'https://ror.org/04enbdd69', 'no_lang_code', 1, 'https://ror.org/04enbdd69 Charles River Associates'),
(7134, 'https://ror.org/05tb9de28', 'no_lang_code', 1, 'https://ror.org/05tb9de28 Charlesson (United States)'),
(7135, 'https://ror.org/01j8wfy63', 'no_lang_code', 1, 'https://ror.org/01j8wfy63 InnoSense (United States)'),
(7136, 'https://ror.org/014bye436', 'no_lang_code', 1, 'https://ror.org/014bye436 Lucerna (United States)'),
(7137, 'https://ror.org/01v4tsw25', 'en', 1, 'https://ror.org/01v4tsw25 Engineering Conferences International'),
(7138, 'https://ror.org/04f3c9a86', 'no_lang_code', 1, 'https://ror.org/04f3c9a86 LumArray (United States)'),
(7139, 'https://ror.org/03fef0h61', 'no_lang_code', 1, 'https://ror.org/03fef0h61 Luminex (United States)'),
(7140, 'https://ror.org/02f1dqm79', 'no_lang_code', 1, 'https://ror.org/02f1dqm79 Luminex (Canada)'),
(7141, 'https://ror.org/03bhj4j04', 'en', 1, 'https://ror.org/03bhj4j04 Lyndon State College'),
(7142, 'https://ror.org/014jghh27', 'no_lang_code', 1, 'https://ror.org/014jghh27 Chelsea Technologies (United Kingdom)'),
(7143, 'https://ror.org/05f4w0r25', 'no_lang_code', 1, 'https://ror.org/05f4w0r25 M Squared Lasers (United Kingdom)'),
(7144, 'https://ror.org/04ve0xd91', 'en', 1, 'https://ror.org/04ve0xd91 Cheltenham Festivals'),
(7145, 'https://ror.org/02gpxp602', 'no_lang_code', 1, 'https://ror.org/02gpxp602 M-Solv (United Kingdom)'),
(7146, 'https://ror.org/05j4k4050', 'no_lang_code', 1, 'https://ror.org/05j4k4050 Innoval Technology (United Kingdom)'),
(7147, 'https://ror.org/03awpb417', 'en', 1, 'https://ror.org/03awpb417 Entomological Society of America'),
(7148, 'https://ror.org/02ts3my48', 'no_lang_code', 1, 'https://ror.org/02ts3my48 Chem-Space Associates (United States)'),
(7149, 'https://ror.org/051fq1m45', 'en', 1, 'https://ror.org/051fq1m45 Massachusetts Executive Office of Health and Human Services'),
(7150, 'https://ror.org/04f3tp286', 'no_lang_code', 1, 'https://ror.org/04f3tp286 Innovative BioTherapies (United States)'),
(7151, 'https://ror.org/01p165j02', 'no_lang_code', 1, 'https://ror.org/01p165j02 Chemat Technology (United States)'),
(7152, 'https://ror.org/02xbbj940', 'no_lang_code', 1, 'https://ror.org/02xbbj940 CASI Pharmaceuticals (United States)'),
(7153, 'https://ror.org/02neqps07', 'no_lang_code', 1, 'https://ror.org/02neqps07 Innovative Chemical and Environmental Technologies (United States)'),
(7154, 'https://ror.org/009k2za57', 'no_lang_code', 1, 'https://ror.org/009k2za57 Chembio (United States)'),
(7155, 'https://ror.org/05f37kp03', 'en', 1, 'https://ror.org/05f37kp03 Chemeketa Community College'),
(7156, 'https://ror.org/03gm8jc79', 'no_lang_code', 1, 'https://ror.org/03gm8jc79 Mabvax Therapeutics (United States)'),
(7157, 'https://ror.org/04a0tbx19', 'no_lang_code', 1, 'https://ror.org/04a0tbx19 Environmental Design Solutions Limited (United Kingdom)'),
(7158, 'https://ror.org/0097wef15', 'no_lang_code', 1, 'https://ror.org/0097wef15 MacConnell Research (United States)'),
(7159, 'https://ror.org/01bt01h96', 'en', 1, 'https://ror.org/01bt01h96 Environmental Law Institute'),
(7160, 'https://ror.org/0097hz889', 'no_lang_code', 1, 'https://ror.org/0097hz889 ChemGreen Innovation (Canada)'),
(7161, 'https://ror.org/02q2kqs69', 'en', 1, 'https://ror.org/02q2kqs69 Environmental Mutagenesis and Genomics Society'),
(7162, 'https://ror.org/027e41r21', 'no_lang_code', 1, 'https://ror.org/027e41r21 Chemica Technologies (United States)'),
(7163, 'https://ror.org/04s42tp09', 'en', 1, 'https://ror.org/04s42tp09 Macomb Community College'),
(7164, 'https://ror.org/02hddbs82', 'no_lang_code', 1, 'https://ror.org/02hddbs82 NewsHour Productions (United States)'),
(7165, 'https://ror.org/0069kqw53', 'en', 1, 'https://ror.org/0069kqw53 Environmental Research Institute of Michigan'),
(7166, 'https://ror.org/0162naz14', 'no_lang_code', 1, 'https://ror.org/0162naz14 EnviroSim (Canada)'),
(7167, 'https://ror.org/03tzkeq32', 'no_lang_code', 1, 'https://ror.org/03tzkeq32 Enzo Biochem (United States)'),
(7168, 'https://ror.org/04639mh45', 'no_lang_code', 1, 'https://ror.org/04639mh45 ChemMotif (United States)'),
(7169, 'https://ror.org/035wk0p43', 'no_lang_code', 1, 'https://ror.org/035wk0p43 E.ON (United States)'),
(7170, 'https://ror.org/05s4s1f68', 'no_lang_code', 1, 'https://ror.org/05s4s1f68 Epicenter Software (United States)'),
(7171, 'https://ror.org/02yx4yb97', 'no_lang_code', 1, 'https://ror.org/02yx4yb97 Epigen Biosciences (United States)'),
(7172, 'https://ror.org/03b68pn69', 'no_lang_code', 1, 'https://ror.org/03b68pn69 Epitope (United States)'),
(7173, 'https://ror.org/028p2na45', 'no_lang_code', 1, 'https://ror.org/028p2na45 MagneSensors (United States)'),
(7174, 'https://ror.org/02csvyc65', 'no_lang_code', 1, 'https://ror.org/02csvyc65 IMRIS (Canada)'),
(7175, 'https://ror.org/055qxpb63', 'no_lang_code', 1, 'https://ror.org/055qxpb63 EpiVax (United States)'),
(7176, 'https://ror.org/03w6g4z68', 'no_lang_code', 1, 'https://ror.org/03w6g4z68 Innovative Micro Technology (United States)'),
(7177, 'https://ror.org/00s3ndx20', 'no_lang_code', 1, 'https://ror.org/00s3ndx20 Innovative Surface Technologies (United States)'),
(7178, 'https://ror.org/00q5a4y91', 'no_lang_code', 1, 'https://ror.org/00q5a4y91 Innovative Targeting Solutions (Canada)'),
(7179, 'https://ror.org/05gh7zh89', 'no_lang_code', 1, 'https://ror.org/05gh7zh89 Protasis (United States)'),
(7180, 'https://ror.org/04kv3gd50', 'no_lang_code', 1, 'https://ror.org/04kv3gd50 Magor (Canada)'),
(7181, 'https://ror.org/00bfb4h45', 'no_lang_code', 1, 'https://ror.org/00bfb4h45 Endacea (United States)'),
(7182, 'https://ror.org/007paj431', 'en', 1, 'https://ror.org/007paj431 Maine Maritime Academy');
INSERT INTO `rors` VALUES
(7183, 'https://ror.org/05srnyf79', 'en', 1, 'https://ror.org/05srnyf79 Maine Mathematics and Science Alliance'),
(7184, 'https://ror.org/01c0rkd54', 'no_lang_code', 1, 'https://ror.org/01c0rkd54 Maine Molecular Quality Controls (United States)'),
(7185, 'https://ror.org/008y69805', 'no_lang_code', 1, 'https://ror.org/008y69805 Inscent (United States)'),
(7186, 'https://ror.org/05bjd0w70', 'en', 1, 'https://ror.org/05bjd0w70 Chestnut Hill College'),
(7187, 'https://ror.org/03ymtp346', 'no_lang_code', 1, 'https://ror.org/03ymtp346 Insight Genetics (United States)'),
(7188, 'https://ror.org/02p5qdz58', 'no_lang_code', 1, 'https://ror.org/02p5qdz58 Insilicos (United States)'),
(7189, 'https://ror.org/01bh4p295', 'en', 1, 'https://ror.org/01bh4p295 Erskine College'),
(7190, 'https://ror.org/020wnve48', 'no_lang_code', 1, 'https://ror.org/020wnve48 Spectris (United Kingdom)'),
(7191, 'https://ror.org/047m7vj12', 'no_lang_code', 1, 'https://ror.org/047m7vj12 InSituTec (United States)'),
(7192, 'https://ror.org/0558q2529', 'en', 1, 'https://ror.org/0558q2529 Manchester City Council'),
(7193, 'https://ror.org/03mf1cy35', 'en', 1, 'https://ror.org/03mf1cy35 Manchester College'),
(7194, 'https://ror.org/052d4jz71', 'no_lang_code', 1, 'https://ror.org/052d4jz71 CHI Systems (United States)'),
(7195, 'https://ror.org/016jbz672', 'no_lang_code', 1, 'https://ror.org/016jbz672 MandalMed (United States)'),
(7196, 'https://ror.org/01vvexy08', 'no_lang_code', 1, 'https://ror.org/01vvexy08 CHI Associates (United States)'),
(7197, 'https://ror.org/00b605v51', 'no_lang_code', 1, 'https://ror.org/00b605v51 Mandel Scientific (Canada)'),
(7198, 'https://ror.org/01brzkg31', 'no_lang_code', 1, 'https://ror.org/01brzkg31 InstaRecon (United States)'),
(7199, 'https://ror.org/01s2wsy11', 'en', 1, 'https://ror.org/01s2wsy11 Chicago Association for Research and Education in Science'),
(7200, 'https://ror.org/038srm946', 'no_lang_code', 1, 'https://ror.org/038srm946 Mantech (Canada)'),
(7201, 'https://ror.org/04a5sdn89', 'no_lang_code', 1, 'https://ror.org/04a5sdn89 Magellan BioScience (United States)'),
(7202, 'https://ror.org/03w3ng559', 'no_lang_code', 1, 'https://ror.org/03w3ng559 InPore Vape Technologies (United States)'),
(7203, 'https://ror.org/01e47qp55', 'no_lang_code', 1, 'https://ror.org/01e47qp55 Mapp Biopharmaceutical (United States)'),
(7204, 'https://ror.org/034dvzk32', 'en', 1, 'https://ror.org/034dvzk32 Marin Health and Human Services'),
(7205, 'https://ror.org/022q4qx22', 'en', 1, 'https://ror.org/022q4qx22 Chicago Public Schools'),
(7206, 'https://ror.org/00vev3847', 'no_lang_code', 1, 'https://ror.org/00vev3847 Marker Gene Technologies (United States)'),
(7207, 'https://ror.org/02c1at876', 'no_lang_code', 1, 'https://ror.org/02c1at876 Martec (Canada)'),
(7208, 'https://ror.org/00j1c3r46', 'no_lang_code', 1, 'https://ror.org/00j1c3r46 Optym (United States)'),
(7209, 'https://ror.org/05y2ajc95', 'en', 1, 'https://ror.org/05y2ajc95 Forest Preserves of Cook County'),
(7210, 'https://ror.org/05n4v8450', 'no_lang_code', 1, 'https://ror.org/05n4v8450 Martingale Research (United States)'),
(7211, 'https://ror.org/00efy1453', 'en', 1, 'https://ror.org/00efy1453 Chief Dull Knife College'),
(7212, 'https://ror.org/00xh1ah97', 'en', 1, 'https://ror.org/00xh1ah97 Child Trends'),
(7213, 'https://ror.org/0202zza47', 'en', 1, 'https://ror.org/0202zza47 Children’s Discovery Museum of San Jose'),
(7214, 'https://ror.org/01hx92781', 'en', 1, 'https://ror.org/01hx92781 Children''s Tumor Foundation'),
(7215, 'https://ror.org/051vg8924', 'en', 1, 'https://ror.org/051vg8924 Boston Children''s Museum'),
(7216, 'https://ror.org/04e602778', 'en', 1, 'https://ror.org/04e602778 Maryville College'),
(7217, 'https://ror.org/0281e1q12', 'en', 1, 'https://ror.org/0281e1q12 Institute for Broadening Participation'),
(7218, 'https://ror.org/01qz53q03', 'no_lang_code', 1, 'https://ror.org/01qz53q03 Mascoma (Canada)'),
(7219, 'https://ror.org/018j3hx85', 'pt', 1, 'https://ror.org/018j3hx85 Escola Superior de Tecnologia da SaĆŗde de Coimbra'),
(7220, 'https://ror.org/018r1es63', 'en', 1, 'https://ror.org/018r1es63 Massachusetts Bay Community College'),
(7221, 'https://ror.org/0486jtg80', 'no_lang_code', 1, 'https://ror.org/0486jtg80 Chimera Technologies (United States)'),
(7222, 'https://ror.org/015mh9580', 'en', 1, 'https://ror.org/015mh9580 Chippewa Valley Technical College'),
(7223, 'https://ror.org/036zxgb71', 'en', 1, 'https://ror.org/036zxgb71 Institute for the Study of Learning and Expertise'),
(7224, 'https://ror.org/01144y654', 'no_lang_code', 1, 'https://ror.org/01144y654 MASSolutions (Canada)'),
(7225, 'https://ror.org/02sptv349', 'en', 1, 'https://ror.org/02sptv349 National Institute for Women in Trades, Technology & Sciences'),
(7226, 'https://ror.org/035zrdg08', 'no_lang_code', 1, 'https://ror.org/035zrdg08 MassTech (United States)'),
(7227, 'https://ror.org/052sh1z51', 'no_lang_code', 1, 'https://ror.org/052sh1z51 MAST Carbon (United Kingdom)'),
(7228, 'https://ror.org/053qgsf62', 'no_lang_code', 1, 'https://ror.org/053qgsf62 MATECH (United States)'),
(7229, 'https://ror.org/0525r6t88', 'no_lang_code', 1, 'https://ror.org/0525r6t88 Chiral Photonics (United States)'),
(7230, 'https://ror.org/04gydfb09', 'no_lang_code', 1, 'https://ror.org/04gydfb09 Material Methods (United States)'),
(7231, 'https://ror.org/043f04882', 'en', 1, 'https://ror.org/043f04882 Institute of Mathematical Statistics'),
(7232, 'https://ror.org/03e0t3214', 'no_lang_code', 1, 'https://ror.org/03e0t3214 Materials and Systems Research (United States)'),
(7233, 'https://ror.org/046v9f126', 'no_lang_code', 1, 'https://ror.org/046v9f126 Material Sciences (United States)'),
(7234, 'https://ror.org/0315pp027', 'en', 1, 'https://ror.org/0315pp027 Math Learning Center'),
(7235, 'https://ror.org/04m828n09', 'en', 1, 'https://ror.org/04m828n09 EAC Network'),
(7236, 'https://ror.org/02g8p3m28', 'no_lang_code', 1, 'https://ror.org/02g8p3m28 Dr. Reddy''s Laboratories (United Kingdom)'),
(7237, 'https://ror.org/0402pb169', 'en', 1, 'https://ror.org/0402pb169 Institution of Civil Engineers'),
(7238, 'https://ror.org/00fjz2j91', 'en', 1, 'https://ror.org/00fjz2j91 Christian Community Health Center'),
(7239, 'https://ror.org/01zt0tq34', 'no_lang_code', 1, 'https://ror.org/01zt0tq34 Alere (United States)'),
(7240, 'https://ror.org/03jp8j090', 'no_lang_code', 1, 'https://ror.org/03jp8j090 Christie (Canada)'),
(7241, 'https://ror.org/02k4agj72', 'en', 1, 'https://ror.org/02k4agj72 Matrix Institute on Addictions'),
(7242, 'https://ror.org/051zy3f83', 'no_lang_code', 1, 'https://ror.org/051zy3f83 Chrysalis BioTherapeutics (United States)'),
(7243, 'https://ror.org/03ww9z667', 'en', 1, 'https://ror.org/03ww9z667 Institute for Disabilities Research and Training'),
(7244, 'https://ror.org/034fbm741', 'no_lang_code', 1, 'https://ror.org/034fbm741 eSpin Technologies (United States)'),
(7245, 'https://ror.org/01th0ab46', 'en', 1, 'https://ror.org/01th0ab46 Institute for Family Health'),
(7246, 'https://ror.org/04g4kf576', 'en', 1, 'https://ror.org/04g4kf576 Institute for Health and Recovery'),
(7247, 'https://ror.org/0125vzh18', 'no_lang_code', 1, 'https://ror.org/0125vzh18 Noble (United States)'),
(7248, 'https://ror.org/0095q0x79', 'no_lang_code', 1, 'https://ror.org/0095q0x79 MAX Mobility (United States)'),
(7249, 'https://ror.org/02rbfnr22', 'en', 1, 'https://ror.org/02rbfnr22 Max Planck Florida Institute for Neuroscience'),
(7250, 'https://ror.org/05bm26z17', 'no_lang_code', 1, 'https://ror.org/05bm26z17 Maxeler Technologies (United Kingdom)'),
(7251, 'https://ror.org/02fprvw90', 'no_lang_code', 1, 'https://ror.org/02fprvw90 FoodChek Systems (Canada)'),
(7252, 'https://ror.org/01mvmtd83', 'en', 1, 'https://ror.org/01mvmtd83 Cicatelli Associates'),
(7253, 'https://ror.org/049b6am17', 'no_lang_code', 1, 'https://ror.org/049b6am17 Essex and Suffolk Water (United Kingdom)'),
(7254, 'https://ror.org/03zm9zy91', 'no_lang_code', 1, 'https://ror.org/03zm9zy91 MayaTech (United States)'),
(7255, 'https://ror.org/038s2v152', 'no_lang_code', 1, 'https://ror.org/038s2v152 Ciencia (United States)'),
(7256, 'https://ror.org/01t44n583', 'no_lang_code', 1, 'https://ror.org/01t44n583 MBio Diagnostics (United States)'),
(7257, 'https://ror.org/03cks4g33', 'en', 1, 'https://ror.org/03cks4g33 Haymarket Center'),
(7258, 'https://ror.org/03ravcp64', 'no_lang_code', 1, 'https://ror.org/03ravcp64 Etubics (United States)'),
(7259, 'https://ror.org/014er3x17', 'en', 1, 'https://ror.org/014er3x17 Institute of Particle Physics'),
(7260, 'https://ror.org/01gchcj93', 'no_lang_code', 1, 'https://ror.org/01gchcj93 South Carolina ETV (United States)'),
(7261, 'https://ror.org/04k8cb995', 'no_lang_code', 1, 'https://ror.org/04k8cb995 MD Precision (Canada)'),
(7262, 'https://ror.org/03f98n803', 'en', 1, 'https://ror.org/03f98n803 Canadian Institute for Energy Training Institut Canadien de Formation en Energie'),
(7263, 'https://ror.org/05b6w4f42', 'no_lang_code', 1, 'https://ror.org/05b6w4f42 Nordion (Canada)'),
(7264, 'https://ror.org/03kaqgs21', 'no_lang_code', 1, 'https://ror.org/03kaqgs21 Eutropics Pharmaceuticals (United States)'),
(7265, 'https://ror.org/02gv8a673', 'en', 1, 'https://ror.org/02gv8a673 Everett Community College'),
(7266, 'https://ror.org/05jyj3645', 'no_lang_code', 1, 'https://ror.org/05jyj3645 Evergen Biotechnologies (United States)'),
(7267, 'https://ror.org/05jsgsm79', 'en', 1, 'https://ror.org/05jsgsm79 Evergreen Valley College'),
(7268, 'https://ror.org/0345rff82', 'no_lang_code', 1, 'https://ror.org/0345rff82 Evident Point (Canada)'),
(7269, 'https://ror.org/021z7gb33', 'no_lang_code', 1, 'https://ror.org/021z7gb33 Evolutionary Genomics (United States)'),
(7270, 'https://ror.org/00kz7vp63', 'en', 1, 'https://ror.org/00kz7vp63 Cincinnati Museum Center'),
(7271, 'https://ror.org/048x1b229', 'no_lang_code', 1, 'https://ror.org/048x1b229 Exelus (United States)'),
(7272, 'https://ror.org/05e2txa39', 'no_lang_code', 1, 'https://ror.org/05e2txa39 Exemplar Genetics (United States)'),
(7273, 'https://ror.org/01tcbxg35', 'no_lang_code', 1, 'https://ror.org/01tcbxg35 Circle Solutions'),
(7274, 'https://ror.org/03savhj63', 'no_lang_code', 1, 'https://ror.org/03savhj63 Exocell (United States)'),
(7275, 'https://ror.org/04s4z3495', 'no_lang_code', 1, 'https://ror.org/04s4z3495 Circulatory Technology (United States)'),
(7276, 'https://ror.org/04xgmns80', 'no_lang_code', 1, 'https://ror.org/04xgmns80 PermSelect (United States)'),
(7277, 'https://ror.org/05qv76t63', 'en', 1, 'https://ror.org/05qv76t63 Construction Industry Research and Information Association'),
(7278, 'https://ror.org/03hdkx955', 'no_lang_code', 1, 'https://ror.org/03hdkx955 Medicago (Canada)'),
(7279, 'https://ror.org/01h42mb65', 'no_lang_code', 1, 'https://ror.org/01h42mb65 Medical Decision Modeling (United States)'),
(7280, 'https://ror.org/03yt1ez60', 'no_lang_code', 1, 'https://ror.org/03yt1ez60 Cisco Systems (United States)'),
(7281, 'https://ror.org/01vwr6t80', 'en', 1, 'https://ror.org/01vwr6t80 AcadƩmie militaire de caroline du sud Citadel'),
(7282, 'https://ror.org/0085yat49', 'en', 1, 'https://ror.org/0085yat49 City of Bradford Metropolitan District Council'),
(7283, 'https://ror.org/03w1r6s74', 'no_lang_code', 1, 'https://ror.org/03w1r6s74 Exponents (United States)'),
(7284, 'https://ror.org/05chwyh56', 'en', 1, 'https://ror.org/05chwyh56 Princess Alexandra Hospital'),
(7285, 'https://ror.org/02t7v8j62', 'en', 1, 'https://ror.org/02t7v8j62 City of Edinburgh Council'),
(7286, 'https://ror.org/04sxjet04', 'no_lang_code', 1, 'https://ror.org/04sxjet04 Medical Discovery Partners (United States)'),
(7287, 'https://ror.org/01tbdbg27', 'en', 1, 'https://ror.org/01tbdbg27 City of York Council'),
(7288, 'https://ror.org/0215tke07', 'no_lang_code', 1, 'https://ror.org/0215tke07 Medical Imaging Applications (United States)'),
(7289, 'https://ror.org/0413dyq61', 'no_lang_code', 1, 'https://ror.org/0413dyq61 Expression Therapeutics (United States)'),
(7290, 'https://ror.org/03gzjnf17', 'no_lang_code', 1, 'https://ror.org/03gzjnf17 Zywie (United States)'),
(7291, 'https://ror.org/0499qzy56', 'no_lang_code', 1, 'https://ror.org/0499qzy56 Extrel (United States)'),
(7292, 'https://ror.org/04wtgxd69', 'en', 1, 'https://ror.org/04wtgxd69 Civil Aviation Authority'),
(7293, 'https://ror.org/00y022594', 'en', 1, 'https://ror.org/00y022594 Eye and Ear Foundation'),
(7294, 'https://ror.org/02gkj6c36', 'no_lang_code', 1, 'https://ror.org/02gkj6c36 Medigen (United States)'),
(7295, 'https://ror.org/030p6ep86', 'no_lang_code', 1, 'https://ror.org/030p6ep86 Aecom (United Kingdom)'),
(7296, 'https://ror.org/03xpd8a12', 'no_lang_code', 1, 'https://ror.org/03xpd8a12 MƩdiMabs (Canada)'),
(7297, 'https://ror.org/00zcam334', 'no_lang_code', 1, 'https://ror.org/00zcam334 Clancy Docwra (United Kingdom)'),
(7298, 'https://ror.org/04f5kwf34', 'no_lang_code', 1, 'https://ror.org/04f5kwf34 Mediomics (United States)'),
(7299, 'https://ror.org/008vjgw77', 'no_lang_code', 1, 'https://ror.org/008vjgw77 MediSpectra (United States)'),
(7300, 'https://ror.org/00twdh217', 'no_lang_code', 1, 'https://ror.org/00twdh217 Clarovita Nutrition (Canada)'),
(7301, 'https://ror.org/0357g8536', 'no_lang_code', 1, 'https://ror.org/0357g8536 Clearpath Robotics (Canada)'),
(7302, 'https://ror.org/039hqe943', 'no_lang_code', 1, 'https://ror.org/039hqe943 MedShape (United States)'),
(7303, 'https://ror.org/05sgcvx90', 'en', 1, 'https://ror.org/05sgcvx90 Cleveland Metropolitan School District'),
(7304, 'https://ror.org/02f23ya44', 'no_lang_code', 1, 'https://ror.org/02f23ya44 CleverSys (United States)'),
(7305, 'https://ror.org/04j5ay321', 'en', 1, 'https://ror.org/04j5ay321 Clinical and Laboratory Standards Institute'),
(7306, 'https://ror.org/025yw0g63', 'en', 1, 'https://ror.org/025yw0g63 Clinical Immunology Society'),
(7307, 'https://ror.org/05k7cyf48', 'en', 1, 'https://ror.org/05k7cyf48 Clinical Research Management'),
(7308, 'https://ror.org/00x489z61', 'pt', 1, 'https://ror.org/00x489z61 Instituto GeogrÔfico Português'),
(7309, 'https://ror.org/02yp59539', 'en', 1, 'https://ror.org/02yp59539 Clinical Trials and Surveys Corporation'),
(7310, 'https://ror.org/02srjnb65', 'no_lang_code', 1, 'https://ror.org/02srjnb65 Membrane Reactor Technologies (Canada)'),
(7311, 'https://ror.org/04g4p0a45', 'no_lang_code', 1, 'https://ror.org/04g4p0a45 Lonza (United States)'),
(7312, 'https://ror.org/05csqsw96', 'no_lang_code', 1, 'https://ror.org/05csqsw96 Mendel Biotechnology (United States)'),
(7313, 'https://ror.org/00q873a22', 'en', 1, 'https://ror.org/00q873a22 County of Mendocino'),
(7314, 'https://ror.org/00wg15m47', 'no_lang_code', 1, 'https://ror.org/00wg15m47 Menssana Research (United States)'),
(7315, 'https://ror.org/00rbrz089', 'en', 1, 'https://ror.org/00rbrz089 Mental Health Association of Southeastern Pennsylvania'),
(7316, 'https://ror.org/00m4h6p50', 'en', 1, 'https://ror.org/00m4h6p50 Mental Health Center of Denver'),
(7317, 'https://ror.org/00w4g1w45', 'en', 1, 'https://ror.org/00w4g1w45 Coalition for a Drug Free Hawaii'),
(7318, 'https://ror.org/02y239j20', 'en', 1, 'https://ror.org/02y239j20 MentorNet'),
(7319, 'https://ror.org/02b9pea19', 'en', 1, 'https://ror.org/02b9pea19 Coastal Bend Wellness Foundation'),
(7320, 'https://ror.org/04wp1zv12', 'no_lang_code', 1, 'https://ror.org/04wp1zv12 Mercator MedSystems (United States)'),
(7321, 'https://ror.org/01x00nv07', 'fr', 1, 'https://ror.org/01x00nv07 Coalition des Organismes Communautaires QuƩbƩcois de Lutte Contre le Sida'),
(7322, 'https://ror.org/01h1sgg38', 'no_lang_code', 1, 'https://ror.org/01h1sgg38 Meridian Instrument (United States)'),
(7323, 'https://ror.org/01sgg2e20', 'en', 1, 'https://ror.org/01sgg2e20 Merit Network'),
(7324, 'https://ror.org/04z9dde49', 'no_lang_code', 1, 'https://ror.org/04z9dde49 Cogmation Robotics (Canada)'),
(7325, 'https://ror.org/014dkew11', 'no_lang_code', 1, 'https://ror.org/014dkew11 Environment and Health Group (United States)'),
(7326, 'https://ror.org/01nk4hm61', 'en', 1, 'https://ror.org/01nk4hm61 Mesa Community College'),
(7327, 'https://ror.org/01f8vhd41', 'pt', 1, 'https://ror.org/01f8vhd41 Instituto Nacional de Metrologia, Qualidade e Tecnologia National Institute of Metrology Quality and Technology'),
(7328, 'https://ror.org/04jqk5a71', 'no_lang_code', 1, 'https://ror.org/04jqk5a71 COI Ceramics (United States)'),
(7329, 'https://ror.org/059zyyv27', 'en', 1, 'https://ror.org/059zyyv27 Meta House'),
(7330, 'https://ror.org/03ahd9g67', 'en', 1, 'https://ror.org/03ahd9g67 Coker College'),
(7331, 'https://ror.org/00j99af28', 'no_lang_code', 1, 'https://ror.org/00j99af28 Metabolic Technologies (United States)'),
(7332, 'https://ror.org/02wy9g851', 'no_lang_code', 1, 'https://ror.org/02wy9g851 Colibri Software (Canada)'),
(7333, 'https://ror.org/00sty4r04', 'no_lang_code', 1, 'https://ror.org/00sty4r04 Colibri Technologies (Canada)'),
(7334, 'https://ror.org/04b4sq284', 'no_lang_code', 1, 'https://ror.org/04b4sq284 Collaborative Drug Discovery (United States)'),
(7335, 'https://ror.org/03nrvep03', 'no_lang_code', 1, 'https://ror.org/03nrvep03 MetaMateria (United States)'),
(7336, 'https://ror.org/02y5b7h51', 'no_lang_code', 1, 'https://ror.org/02y5b7h51 Collagen Matrix (United States)'),
(7337, 'https://ror.org/05vharc92', 'en', 1, 'https://ror.org/05vharc92 College Ahuntsic CollĆØge ahuntsic'),
(7338, 'https://ror.org/00zgt4y83', 'no_lang_code', 1, 'https://ror.org/00zgt4y83 MetaMedia Training International (United States)'),
(7339, 'https://ror.org/059kxna68', 'no_lang_code', 1, 'https://ror.org/059kxna68 ActivBiotics (United States)'),
(7340, 'https://ror.org/018xkrg73', 'fr', 1, 'https://ror.org/018xkrg73 CollĆØge d''Alma'),
(7341, 'https://ror.org/01hzacg10', 'no_lang_code', 1, 'https://ror.org/01hzacg10 Meticube (Portugal)'),
(7342, 'https://ror.org/03wjvct24', 'en', 1, 'https://ror.org/03wjvct24 Fairbanks Native Association'),
(7343, 'https://ror.org/05kk38g92', 'no_lang_code', 1, 'https://ror.org/05kk38g92 Fairfield Crystal Technology (United States)'),
(7344, 'https://ror.org/0432hdr79', 'fr', 1, 'https://ror.org/0432hdr79 CƩgep Garneau'),
(7345, 'https://ror.org/007yjv643', 'no_lang_code', 1, 'https://ror.org/007yjv643 Companhia União Fabril'),
(7346, 'https://ror.org/04bwfkw08', 'fr', 1, 'https://ror.org/04bwfkw08 CollĆØge Lionel Groulx CollĆØge lionel-groulx'),
(7347, 'https://ror.org/020nhee14', 'fr', 1, 'https://ror.org/020nhee14 Collège Mérici Merici College'),
(7348, 'https://ror.org/0102yp030', 'en', 1, 'https://ror.org/0102yp030 College of DuPage'),
(7349, 'https://ror.org/03e8gpx64', 'no_lang_code', 1, 'https://ror.org/03e8gpx64 MetroLaser (United States)'),
(7350, 'https://ror.org/05f0q4986', 'no_lang_code', 1, 'https://ror.org/05f0q4986 Council on Alcohol and Drugs (United States)'),
(7351, 'https://ror.org/05xemxk04', 'en', 1, 'https://ror.org/05xemxk04 Metropolitan Drug Commission'),
(7352, 'https://ror.org/0362v0107', 'en', 1, 'https://ror.org/0362v0107 Family and Medical Counseling Service'),
(7353, 'https://ror.org/03qvjfg54', 'en', 1, 'https://ror.org/03qvjfg54 Notre Dame de Namur University UniversitƩ notre-dame-de-namur'),
(7354, 'https://ror.org/022e9hp02', 'en', 1, 'https://ror.org/022e9hp02 Family Health Centers of San Diego'),
(7355, 'https://ror.org/00dncgb07', 'en', 1, 'https://ror.org/00dncgb07 Notre Dame of Maryland University'),
(7356, 'https://ror.org/04zh19w51', 'en', 1, 'https://ror.org/04zh19w51 Metropolitan Police Service'),
(7357, 'https://ror.org/00nv9r617', 'en', 1, 'https://ror.org/00nv9r617 College of Saint Rose'),
(7358, 'https://ror.org/03a654521', 'no_lang_code', 1, 'https://ror.org/03a654521 Faraday Technology (United States)'),
(7359, 'https://ror.org/021nkvj61', 'no_lang_code', 1, 'https://ror.org/021nkvj61 MGS Research (United States)'),
(7360, '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'),
(7361, 'https://ror.org/05td03w87', 'en', 1, 'https://ror.org/05td03w87 College of the Canyons'),
(7362, 'https://ror.org/04z1nmb83', 'en', 1, 'https://ror.org/04z1nmb83 College of the Mainland'),
(7363, 'https://ror.org/03bnt5240', 'en', 1, 'https://ror.org/03bnt5240 College of Menominee Nation'),
(7364, 'https://ror.org/05bmcfg03', 'en', 1, 'https://ror.org/05bmcfg03 Patricia and Phillip Frost Museum of Science'),
(7365, 'https://ror.org/04c7ypr30', 'en', 1, 'https://ror.org/04c7ypr30 College of the North Atlantic'),
(7366, 'https://ror.org/00rgbr518', 'en', 1, 'https://ror.org/00rgbr518 Miami Dade College'),
(7367, 'https://ror.org/00afpvb68', 'fr', 1, 'https://ror.org/00afpvb68 CollĆØge Shawinigan'),
(7368, 'https://ror.org/04sp6ec60', 'en', 1, 'https://ror.org/04sp6ec60 Fast Track Drugs and Biologics'),
(7369, 'https://ror.org/03r35eh66', 'no_lang_code', 1, 'https://ror.org/03r35eh66 Michigan Molecular Institute (United States)'),
(7370, 'https://ror.org/04e9wrg64', 'en', 1, 'https://ror.org/04e9wrg64 Collinge and Associates'),
(7371, 'https://ror.org/02fag2f73', 'en', 1, 'https://ror.org/02fag2f73 Randolph College'),
(7372, 'https://ror.org/023cd6641', 'en', 1, 'https://ror.org/023cd6641 Michigan Department of Agriculture and Rural Development'),
(7373, 'https://ror.org/046jf3z18', 'no_lang_code', 1, 'https://ror.org/046jf3z18 Micro Magnetics (United States)'),
(7374, 'https://ror.org/02x4k7z35', 'no_lang_code', 1, 'https://ror.org/02x4k7z35 Carepayment (United States)'),
(7375, 'https://ror.org/00dj48n36', 'en', 1, 'https://ror.org/00dj48n36 Colorado Judicial Branch'),
(7376, 'https://ror.org/01dpfst30', 'no_lang_code', 1, 'https://ror.org/01dpfst30 MicroLink Devices (United States)'),
(7377, 'https://ror.org/05k91zb11', 'no_lang_code', 1, 'https://ror.org/05k91zb11 Sony Corporation (United States)'),
(7378, 'https://ror.org/01faz8m53', 'no_lang_code', 1, 'https://ror.org/01faz8m53 MicroOptical Engineering (United States)'),
(7379, 'https://ror.org/01ada6a49', 'no_lang_code', 1, 'https://ror.org/01ada6a49 Reaction Biology Corporation (United States)'),
(7380, 'https://ror.org/02q9ktd98', 'no_lang_code', 1, 'https://ror.org/02q9ktd98 Real Time Analyzers (United States)'),
(7381, 'https://ror.org/014ztwb11', 'fr', 1, 'https://ror.org/014ztwb11 FƩdƩration des cƩgeps'),
(7382, 'https://ror.org/04f7srh33', 'no_lang_code', 1, 'https://ror.org/04f7srh33 Micropharma (Canada)'),
(7383, 'https://ror.org/00es7k954', 'en', 1, 'https://ror.org/00es7k954 Columbia College - South Carolina'),
(7384, 'https://ror.org/02a0sqy81', 'en', 1, 'https://ror.org/02a0sqy81 Columbia Education'),
(7385, 'https://ror.org/02v81r985', 'no_lang_code', 1, 'https://ror.org/02v81r985 Ametek (United States)'),
(7386, 'https://ror.org/04yv8m152', 'no_lang_code', 1, 'https://ror.org/04yv8m152 Reaction Engineering International (United States)'),
(7387, 'https://ror.org/020wypw95', 'no_lang_code', 1, 'https://ror.org/020wypw95 Lord Corporation (United States)'),
(7388, 'https://ror.org/01dp84930', 'no_lang_code', 1, 'https://ror.org/01dp84930 Indium Corporation (United States)'),
(7389, 'https://ror.org/00ke7zh37', 'en', 1, 'https://ror.org/00ke7zh37 American Federation of Mineralogical Societies'),
(7390, 'https://ror.org/035hvd463', 'en', 1, 'https://ror.org/035hvd463 UniversitƩ adventiste de washington Washington Adventist University'),
(7391, 'https://ror.org/03k61re15', 'no_lang_code', 1, 'https://ror.org/03k61re15 MicroTransponder (United States)'),
(7392, 'https://ror.org/01dvp8b67', 'en', 1, 'https://ror.org/01dvp8b67 Combustion Institute'),
(7393, 'https://ror.org/0550hnq49', 'en', 1, 'https://ror.org/0550hnq49 Samuel S Fels Fund'),
(7394, 'https://ror.org/03868wc59', 'en', 1, 'https://ror.org/03868wc59 Middlesex County College'),
(7395, 'https://ror.org/01yjs2h26', 'en', 1, 'https://ror.org/01yjs2h26 Design Council'),
(7396, 'https://ror.org/00cwwgn12', 'no_lang_code', 1, 'https://ror.org/00cwwgn12 Recombinant Technologies (United States)'),
(7397, 'https://ror.org/057fsw088', 'no_lang_code', 1, 'https://ror.org/057fsw088 Recon Instruments (Canada)'),
(7398, 'https://ror.org/03x510769', 'en', 1, 'https://ror.org/03x510769 Recovery Consultants of Atlanta'),
(7399, 'https://ror.org/00q72x252', 'en', 1, 'https://ror.org/00q72x252 Committee on Climate Change'),
(7400, 'https://ror.org/00qq2kd97', 'no_lang_code', 1, 'https://ror.org/00qq2kd97 Mikro Systems (United States)'),
(7401, 'https://ror.org/02mh82r78', 'no_lang_code', 1, 'https://ror.org/02mh82r78 Fermalogic (United States)'),
(7402, 'https://ror.org/02xx54833', 'no_lang_code', 1, 'https://ror.org/02xx54833 HedgePath Pharmaceuticals (United States)'),
(7403, 'https://ror.org/04mdnw291', 'en', 1, 'https://ror.org/04mdnw291 Miles College'),
(7404, 'https://ror.org/01z6vd941', 'no_lang_code', 1, 'https://ror.org/01z6vd941 Millar (United States)'),
(7405, 'https://ror.org/05twrtk66', 'no_lang_code', 1, 'https://ror.org/05twrtk66 Fermionics (United States)'),
(7406, 'https://ror.org/02ym2t546', 'en', 1, 'https://ror.org/02ym2t546 Milwaukee Area Technical College'),
(7407, 'https://ror.org/0128ckf82', 'en', 1, 'https://ror.org/0128ckf82 Ferrum College'),
(7408, 'https://ror.org/04swxtn38', 'no_lang_code', 1, 'https://ror.org/04swxtn38 Mimosa Acoustics (United States)'),
(7409, 'https://ror.org/05v4ned20', 'no_lang_code', 1, 'https://ror.org/05v4ned20 iSign Solutions (United States)'),
(7410, 'https://ror.org/004es3518', 'no_lang_code', 1, 'https://ror.org/004es3518 Red Hill Studios'),
(7411, 'https://ror.org/02dq1ca65', 'no_lang_code', 1, 'https://ror.org/02dq1ca65 Minerva Biotechnologies (United States)'),
(7412, 'https://ror.org/02z40ce29', 'en', 1, 'https://ror.org/02z40ce29 Red River College'),
(7413, 'https://ror.org/00996xv77', 'en', 1, 'https://ror.org/00996xv77 Red Rocks Community College'),
(7414, 'https://ror.org/00awfs868', 'no_lang_code', 1, 'https://ror.org/00awfs868 FFA Sciences (United States)'),
(7415, 'https://ror.org/001m3hq40', 'en', 1, 'https://ror.org/001m3hq40 Communication Matters'),
(7416, 'https://ror.org/03z5xhq25', 'no_lang_code', 1, 'https://ror.org/03z5xhq25 FHC (United States)'),
(7417, 'https://ror.org/000a1cz07', 'no_lang_code', 1, 'https://ror.org/000a1cz07 Fianium (United Kingdom)'),
(7418, 'https://ror.org/03sxe1905', 'no_lang_code', 1, 'https://ror.org/03sxe1905 FibroGen (United States)'),
(7419, 'https://ror.org/0491h6661', 'no_lang_code', 1, 'https://ror.org/0491h6661 Celerion (Canada)'),
(7420, 'https://ror.org/03yxyad36', 'no_lang_code', 1, 'https://ror.org/03yxyad36 ABS Consulting (United States)'),
(7421, 'https://ror.org/04sbz4e56', 'no_lang_code', 1, 'https://ror.org/04sbz4e56 Clod Ensemble (United Kingdom)'),
(7422, 'https://ror.org/00vvheq07', 'en', 1, 'https://ror.org/00vvheq07 Community Anti Drug Coalitions of America'),
(7423, 'https://ror.org/00109m582', 'en', 1, 'https://ror.org/00109m582 Community Connections'),
(7424, 'https://ror.org/04yh8wr33', 'en', 1, 'https://ror.org/04yh8wr33 Cure Spinal Muscular Atrophy'),
(7425, 'https://ror.org/03nz5jq66', 'no_lang_code', 1, 'https://ror.org/03nz5jq66 Geotab (Canada)'),
(7426, 'https://ror.org/041yet549', 'en', 1, 'https://ror.org/041yet549 Community Health Action of Staten Island'),
(7427, 'https://ror.org/037xte462', 'no_lang_code', 1, 'https://ror.org/037xte462 Talaris Therapeutics (United States)'),
(7428, 'https://ror.org/00fre7r52', 'en', 1, 'https://ror.org/00fre7r52 Community Health Awareness Group'),
(7429, 'https://ror.org/04pshv774', 'no_lang_code', 1, 'https://ror.org/04pshv774 Field Diagnostic Services (United States)'),
(7430, 'https://ror.org/02c5bjt68', 'en', 1, 'https://ror.org/02c5bjt68 Community Rehabilitation Center'),
(7431, 'https://ror.org/01se61h67', 'no_lang_code', 1, 'https://ror.org/01se61h67 Feilden Clegg Bradley Studios (United Kingdom)'),
(7432, 'https://ror.org/00hezqs33', 'no_lang_code', 1, 'https://ror.org/00hezqs33 Film and Video Umbrella (United Kingdom)'),
(7433, 'https://ror.org/009rf1452', 'en', 1, 'https://ror.org/009rf1452 San Francisco Film Society'),
(7434, 'https://ror.org/01t77y753', 'en', 1, 'https://ror.org/01t77y753 Regis College'),
(7435, 'https://ror.org/02t7ex691', 'no_lang_code', 1, 'https://ror.org/02t7ex691 Minnetronix (United States)'),
(7436, 'https://ror.org/01hr7mm17', 'no_lang_code', 1, 'https://ror.org/01hr7mm17 Regis Technologies (United States)'),
(7437, 'https://ror.org/04fkqaq03', 'en', 1, 'https://ror.org/04fkqaq03 Rehabilitation Engineering and Assistive Technology Society of North America'),
(7438, 'https://ror.org/05petyd50', 'no_lang_code', 1, 'https://ror.org/05petyd50 Minnow Environmental (Canada)'),
(7439, 'https://ror.org/02g9d5535', 'en', 1, 'https://ror.org/02g9d5535 Community Based Research Centre'),
(7440, 'https://ror.org/04804s519', 'no_lang_code', 1, 'https://ror.org/04804s519 MIRA (United Kingdom)'),
(7441, 'https://ror.org/03hp55s21', 'no_lang_code', 1, 'https://ror.org/03hp55s21 Mircom Technologies (Canada)'),
(7442, 'https://ror.org/02tdag098', 'no_lang_code', 1, 'https://ror.org/02tdag098 Mirna Therapeutics (United States)'),
(7443, 'https://ror.org/034vefz29', 'no_lang_code', 1, 'https://ror.org/034vefz29 Rehabtek (United States)'),
(7444, 'https://ror.org/036mg3k91', 'no_lang_code', 1, 'https://ror.org/036mg3k91 Compound Semiconductor Technologies (United Kingdom)'),
(7445, 'https://ror.org/03grsxg62', 'no_lang_code', 1, 'https://ror.org/03grsxg62 Computational Physics (United States)'),
(7446, 'https://ror.org/03gsmwj46', 'no_lang_code', 1, 'https://ror.org/03gsmwj46 Market Intelligence Strategy Centre (Australia)'),
(7447, 'https://ror.org/02r06yv13', 'no_lang_code', 1, 'https://ror.org/02r06yv13 FJE Enterprises (United States)'),
(7448, 'https://ror.org/02kv35z70', 'en', 1, 'https://ror.org/02kv35z70 Computer History Museum'),
(7449, 'https://ror.org/02pbkp259', 'no_lang_code', 1, 'https://ror.org/02pbkp259 Actian (United States)'),
(7450, 'https://ror.org/03m4mbh87', 'no_lang_code', 1, 'https://ror.org/03m4mbh87 Reliable Biopharmaceutical Corporation (United States)'),
(7451, 'https://ror.org/00ysjm146', 'en', 1, 'https://ror.org/00ysjm146 Mission to the Street for Christ'),
(7452, 'https://ror.org/014y9yf82', 'no_lang_code', 1, 'https://ror.org/014y9yf82 Compuware (United States)'),
(7453, 'https://ror.org/02m40r087', 'no_lang_code', 1, 'https://ror.org/02m40r087 Concepts NREC (United States)'),
(7454, 'https://ror.org/01df0yh77', 'no_lang_code', 1, 'https://ror.org/01df0yh77 Condax (United States)'),
(7455, 'https://ror.org/036gc1b60', 'no_lang_code', 1, 'https://ror.org/036gc1b60 Renewable Energy Systems (United States)'),
(7456, 'https://ror.org/01cmq9k07', 'no_lang_code', 1, 'https://ror.org/01cmq9k07 Institute for Learning Innovation (United States)'),
(7457, 'https://ror.org/00msez306', 'no_lang_code', 1, 'https://ror.org/00msez306 Superconductor Technologies (United States)'),
(7458, 'https://ror.org/01vgd5418', 'en', 1, 'https://ror.org/01vgd5418 Mississippi Gulf Coast Community College'),
(7459, 'https://ror.org/048vjr484', 'en', 1, 'https://ror.org/048vjr484 Florence Nightingale Museum'),
(7460, 'https://ror.org/00aqm2347', 'en', 1, 'https://ror.org/00aqm2347 Florence–Darlington Technical College'),
(7461, 'https://ror.org/01t8qhk85', 'en', 1, 'https://ror.org/01t8qhk85 Conestoga College'),
(7462, 'https://ror.org/010bfx043', 'no_lang_code', 1, 'https://ror.org/010bfx043 Conestoga Meat Packers (Canada)'),
(7463, 'https://ror.org/00w7yp275', 'en', 1, 'https://ror.org/00w7yp275 Mississippi School for Mathematics and Science'),
(7464, 'https://ror.org/03cfg5z67', 'en', 1, 'https://ror.org/03cfg5z67 Florida Department of Children and Families'),
(7465, 'https://ror.org/04jsm3g94', 'en', 1, 'https://ror.org/04jsm3g94 Saving Sight'),
(7466, 'https://ror.org/02t7c5797', 'en', 1, 'https://ror.org/02t7c5797 Connecticut Agricultural Experiment Station'),
(7467, 'https://ror.org/02qdmsh42', 'en', 1, 'https://ror.org/02qdmsh42 Connecticut Department of Children and Families'),
(7468, 'https://ror.org/03naxgw71', 'en', 1, 'https://ror.org/03naxgw71 Reformar'),
(7469, 'https://ror.org/02d7h9t50', 'no_lang_code', 1, 'https://ror.org/02d7h9t50 Consad (United States)'),
(7470, 'https://ror.org/0115psh64', 'no_lang_code', 1, 'https://ror.org/0115psh64 MMTC (United States)'),
(7471, 'https://ror.org/02bwppq44', 'no_lang_code', 1, 'https://ror.org/02bwppq44 Mo Sci Corporation (United States)'),
(7472, 'https://ror.org/0579hfc41', 'no_lang_code', 1, 'https://ror.org/0579hfc41 Ansys (United Kingdom)'),
(7473, 'https://ror.org/01rqavq28', 'no_lang_code', 1, 'https://ror.org/01rqavq28 Fluidity Software (United States)'),
(7474, 'https://ror.org/02fd83219', 'no_lang_code', 1, 'https://ror.org/02fd83219 Fluorous Technologies (United States)'),
(7475, 'https://ror.org/00fyk6p56', 'no_lang_code', 1, 'https://ror.org/00fyk6p56 Moberg Research (United States)'),
(7476, 'https://ror.org/01rde7a23', 'no_lang_code', 1, 'https://ror.org/01rde7a23 Fluxion Biosciences (United States)'),
(7477, 'https://ror.org/04a2ebf76', 'no_lang_code', 1, 'https://ror.org/04a2ebf76 FM Technologies (United States)'),
(7478, 'https://ror.org/05t871q54', 'no_lang_code', 1, 'https://ror.org/05t871q54 Resonance Research (United States)'),
(7479, 'https://ror.org/00an43c80', 'no_lang_code', 1, 'https://ror.org/00an43c80 SonaCare Medical (United States)'),
(7480, 'https://ror.org/02n9cgn70', 'no_lang_code', 1, 'https://ror.org/02n9cgn70 SRA International (United States)'),
(7481, 'https://ror.org/03heckw12', 'no_lang_code', 1, 'https://ror.org/03heckw12 Response Biomedical (Canada)'),
(7482, 'https://ror.org/02j7krq48', 'no_lang_code', 1, 'https://ror.org/02j7krq48 FONA International (Canada)'),
(7483, 'https://ror.org/04vxrkc13', 'en', 1, 'https://ror.org/04vxrkc13 Constructing Excellence'),
(7484, 'https://ror.org/004v7xm28', 'no_lang_code', 1, 'https://ror.org/004v7xm28 Modellium (Canada)'),
(7485, 'https://ror.org/030n06868', 'no_lang_code', 1, 'https://ror.org/030n06868 RiboMed Biotechnologies (United States)'),
(7486, 'https://ror.org/01syx9t96', 'en', 1, 'https://ror.org/01syx9t96 Fond du Lac Reservation'),
(7487, 'https://ror.org/00b970e83', 'en', 1, 'https://ror.org/00b970e83 Fond du Lac Tribal and Community College'),
(7488, 'https://ror.org/00dhmq281', 'en', 1, 'https://ror.org/00dhmq281 Foothill College'),
(7489, 'https://ror.org/03s8c8p36', 'no_lang_code', 1, 'https://ror.org/03s8c8p36 Continuum Dynamics (United States)'),
(7490, 'https://ror.org/04sjg0283', 'en', 1, 'https://ror.org/04sjg0283 Contra Costa Community College District'),
(7491, 'https://ror.org/04xf9by37', 'no_lang_code', 1, 'https://ror.org/04xf9by37 Reveo (United States)'),
(7492, 'https://ror.org/01zd81893', 'no_lang_code', 1, 'https://ror.org/01zd81893 Modulim (United States)'),
(7493, 'https://ror.org/02h2t4g21', 'en', 1, 'https://ror.org/02h2t4g21 Contra Costa Health Services'),
(7494, 'https://ror.org/04vcfk007', 'en', 1, 'https://ror.org/04vcfk007 Mohave Community College'),
(7495, 'https://ror.org/04x0hrd32', 'en', 1, 'https://ror.org/04x0hrd32 Rhode Island Department of Children, Youth & Families'),
(7496, 'https://ror.org/00t00te02', 'no_lang_code', 1, 'https://ror.org/00t00te02 Ford Motor Company (United Kingdom)'),
(7497, 'https://ror.org/02gxn3220', 'no_lang_code', 1, 'https://ror.org/02gxn3220 Mohawk Innovative Technology (United States)'),
(7498, 'https://ror.org/05m6c4y02', 'en', 1, 'https://ror.org/05m6c4y02 St. Tammany Parish Public School System'),
(7499, 'https://ror.org/03hnz5h47', 'no_lang_code', 1, 'https://ror.org/03hnz5h47 Forecasting International (United States)'),
(7500, 'https://ror.org/03vwrbq09', 'no_lang_code', 1, 'https://ror.org/03vwrbq09 EyePoint Pharmaceuticals (United States)'),
(7501, 'https://ror.org/04mg7f574', 'en', 1, 'https://ror.org/04mg7f574 Molecular Biology Consortium'),
(7502, 'https://ror.org/01cfdy756', 'en', 1, 'https://ror.org/01cfdy756 Marie Selby Botanical Gardens'),
(7503, 'https://ror.org/00t6e2695', 'no_lang_code', 1, 'https://ror.org/00t6e2695 Emerson (United Kingdom)'),
(7504, 'https://ror.org/0060hwx87', 'no_lang_code', 1, 'https://ror.org/0060hwx87 Alliance Pharmaceutical (United States)'),
(7505, 'https://ror.org/04v9x0m20', 'no_lang_code', 1, 'https://ror.org/04v9x0m20 Convergent Engineering (United States)'),
(7506, 'https://ror.org/02bbrpp66', 'no_lang_code', 1, 'https://ror.org/02bbrpp66 Convergent Manufacturing Technologies (Canada)'),
(7507, 'https://ror.org/04t5sqe26', 'no_lang_code', 1, 'https://ror.org/04t5sqe26 Molecular Design International (United States)'),
(7508, 'https://ror.org/01g0q1j14', 'en', 1, 'https://ror.org/01g0q1j14 Converse College'),
(7509, 'https://ror.org/03q5ywq18', 'no_lang_code', 1, 'https://ror.org/03q5ywq18 Conversion Energy Enterprises (United States)'),
(7510, 'https://ror.org/01ag6an54', 'en', 1, 'https://ror.org/01ag6an54 Cook Inlet Tribal Council'),
(7511, 'https://ror.org/049bv9m09', 'no_lang_code', 1, 'https://ror.org/049bv9m09 Molecular Kinetics (United States)'),
(7512, 'https://ror.org/00zzc5439', 'no_lang_code', 1, 'https://ror.org/00zzc5439 Molecular LogiX (United States)'),
(7513, 'https://ror.org/0393c0k55', 'no_lang_code', 1, 'https://ror.org/0393c0k55 Cooper and Company (United States)'),
(7514, 'https://ror.org/04rtkc841', 'no_lang_code', 1, 'https://ror.org/04rtkc841 Molecular Oncology (United States)'),
(7515, 'https://ror.org/056nm0533', 'en', 1, 'https://ror.org/056nm0533 Cooper University Health Care'),
(7516, 'https://ror.org/00zwq4e04', 'en', 1, 'https://ror.org/00zwq4e04 Cope Community Services'),
(7517, 'https://ror.org/034a7fc11', 'no_lang_code', 1, 'https://ror.org/034a7fc11 Copernicus Therapeutics (United States)'),
(7518, 'https://ror.org/01qjd9x30', 'en', 1, 'https://ror.org/01qjd9x30 Forestry Commission Scotland'),
(7519, 'https://ror.org/05q07rr84', 'no_lang_code', 1, 'https://ror.org/05q07rr84 Ricardo (United Kingdom)'),
(7520, 'https://ror.org/01yttm365', 'no_lang_code', 1, 'https://ror.org/01yttm365 Viasystems (United States)'),
(7521, 'https://ror.org/05be2cn20', 'en', 1, 'https://ror.org/05be2cn20 Center for Occupational Research and Development'),
(7522, 'https://ror.org/000g90y93', 'en', 1, 'https://ror.org/000g90y93 Fresno Unified School District'),
(7523, 'https://ror.org/00g2vje79', 'no_lang_code', 1, 'https://ror.org/00g2vje79 Cornerstone Systems Northwest (United States)'),
(7524, 'https://ror.org/03n0dgh22', 'en', 1, 'https://ror.org/03n0dgh22 Fort Peck Community College'),
(7525, 'https://ror.org/03fbqtm75', 'no_lang_code', 1, 'https://ror.org/03fbqtm75 Dassault SystĆØmes (United States)'),
(7526, 'https://ror.org/03mgv7521', 'en', 1, 'https://ror.org/03mgv7521 Fort Worth Museum of Science and History'),
(7527, 'https://ror.org/0492zc296', 'en', 1, 'https://ror.org/0492zc296 Richmond Behavioral Health Authority'),
(7528, 'https://ror.org/02jdkag88', 'en', 1, 'https://ror.org/02jdkag88 Corporation for National Research Initiatives'),
(7529, 'https://ror.org/04b94yv02', 'en', 1, 'https://ror.org/04b94yv02 Fortune Society'),
(7530, 'https://ror.org/00tye4g05', 'en', 1, 'https://ror.org/00tye4g05 Richmond Community College'),
(7531, 'https://ror.org/02w38qn81', 'en', 1, 'https://ror.org/02w38qn81 Forum for the Future'),
(7532, 'https://ror.org/02q9tvn08', 'en', 1, 'https://ror.org/02q9tvn08 Royal Institution of Chartered Surveyors'),
(7533, 'https://ror.org/02xhxds14', 'no_lang_code', 1, 'https://ror.org/02xhxds14 Consarc Design Group (United Kingdom)'),
(7534, 'https://ror.org/05w44gx91', 'fr', 1, 'https://ror.org/05w44gx91 RƩseau Technoscience'),
(7535, 'https://ror.org/01wm02973', 'no_lang_code', 1, 'https://ror.org/01wm02973 Foster-Miller (United States)'),
(7536, 'https://ror.org/05cnqje12', 'no_lang_code', 1, 'https://ror.org/05cnqje12 Molecular Targeting Technologies (United States)'),
(7537, 'https://ror.org/0462bbw13', 'no_lang_code', 1, 'https://ror.org/0462bbw13 CorSolutions (United States)'),
(7538, 'https://ror.org/00vcvf072', 'en', 1, 'https://ror.org/00vcvf072 Foundation for Advancements in Science and Education'),
(7539, 'https://ror.org/04h5rh289', 'no_lang_code', 1, 'https://ror.org/04h5rh289 CorTechs Labs (United States)'),
(7540, 'https://ror.org/03abz4556', 'no_lang_code', 1, 'https://ror.org/03abz4556 Cortex Pharmaceuticals (United States)'),
(7541, 'https://ror.org/0350vc126', 'en', 1, 'https://ror.org/0350vc126 River Region Human Services'),
(7542, 'https://ror.org/042hae950', 'no_lang_code', 1, 'https://ror.org/042hae950 Molecules for Health (United States)'),
(7543, 'https://ror.org/05eca5w86', 'en', 1, 'https://ror.org/05eca5w86 Riverside Community College District'),
(7544, 'https://ror.org/04k9pkv35', 'en', 1, 'https://ror.org/04k9pkv35 Foundation for Independent Higher Education'),
(7545, 'https://ror.org/05qjgkw66', 'no_lang_code', 1, 'https://ror.org/05qjgkw66 Cosmos Corporation (United States)'),
(7546, 'https://ror.org/04xfbcg47', 'no_lang_code', 1, 'https://ror.org/04xfbcg47 Fox Chase Chemical Diversity Center'),
(7547, 'https://ror.org/03cpeth56', 'no_lang_code', 1, 'https://ror.org/03cpeth56 Costain (United Kingdom)'),
(7548, 'https://ror.org/0477qng16', 'no_lang_code', 1, 'https://ror.org/0477qng16 Fox Learning Systems (United States)'),
(7549, 'https://ror.org/053ef7v72', 'no_lang_code', 1, 'https://ror.org/053ef7v72 Fractal Systems (Canada)'),
(7550, 'https://ror.org/024712k05', 'no_lang_code', 1, 'https://ror.org/024712k05 Molsoft (United States)'),
(7551, 'https://ror.org/00vfssf38', 'en', 1, 'https://ror.org/00vfssf38 Franklin County Genealogical & Historical Society'),
(7552, 'https://ror.org/04zegtq13', 'en', 1, 'https://ror.org/04zegtq13 Franklin Regional Council of Governments'),
(7553, 'https://ror.org/04ct7vj52', 'en', 1, 'https://ror.org/04ct7vj52 Council for Chemical Research'),
(7554, 'https://ror.org/02vhff552', 'en', 1, 'https://ror.org/02vhff552 Freshwater Fisheries Society of BC'),
(7555, 'https://ror.org/054d19q51', 'en', 1, 'https://ror.org/054d19q51 Council of Graduate Schools'),
(7556, 'https://ror.org/00g3wz802', 'no_lang_code', 1, 'https://ror.org/00g3wz802 Front Range Scientific Computations'),
(7557, 'https://ror.org/04nz2pc13', 'en', 1, 'https://ror.org/04nz2pc13 Council for the Advancement of Science Writing'),
(7558, 'https://ror.org/01xpm4m93', 'no_lang_code', 1, 'https://ror.org/01xpm4m93 Robert Olson Consulting (United States)'),
(7559, 'https://ror.org/01cf5z404', 'no_lang_code', 1, 'https://ror.org/01cf5z404 Robin Medical (United States)'),
(7560, 'https://ror.org/0160sy147', 'no_lang_code', 1, 'https://ror.org/0160sy147 Robotiq (Canada)'),
(7561, 'https://ror.org/03ax9j741', 'en', 1, 'https://ror.org/03ax9j741 Council of State and Territorial Epidemiologists'),
(7562, 'https://ror.org/03qz04022', 'en', 1, 'https://ror.org/03qz04022 Council of State Governments'),
(7563, 'https://ror.org/013phw743', 'en', 1, 'https://ror.org/013phw743 Council on Competitiveness'),
(7564, 'https://ror.org/04e8ge149', 'no_lang_code', 1, 'https://ror.org/04e8ge149 Rocky Mountain Bicycles (Canada)'),
(7565, 'https://ror.org/00kvx4h58', 'en', 1, 'https://ror.org/00kvx4h58 Council on Social Work Education'),
(7566, 'https://ror.org/01ab8nr44', 'en', 1, 'https://ror.org/01ab8nr44 Council on Undergraduate Research'),
(7567, 'https://ror.org/04v5h9g23', 'no_lang_code', 1, 'https://ror.org/04v5h9g23 Fu Associates (United States)'),
(7568, 'https://ror.org/05wngc118', 'no_lang_code', 1, 'https://ror.org/05wngc118 Fuel Theatre (United Kingdom)'),
(7569, 'https://ror.org/05vhg8j56', 'en', 1, 'https://ror.org/05vhg8j56 Council on Prevention and Education: Substances'),
(7570, 'https://ror.org/05f1fs902', 'no_lang_code', 1, 'https://ror.org/05f1fs902 Rocky Mountain Research (United States)'),
(7571, 'https://ror.org/04g3ks144', 'no_lang_code', 1, 'https://ror.org/04g3ks144 Rogue Research (Canada)'),
(7572, 'https://ror.org/04x65hs26', 'en', 1, 'https://ror.org/04x65hs26 Cyfoeth Naturiol Cymru Natural Resources Wales'),
(7573, 'https://ror.org/022q5wf04', 'en', 1, 'https://ror.org/022q5wf04 County College of Morris'),
(7574, 'https://ror.org/018cxtf62', 'en', 1, 'https://ror.org/018cxtf62 Earlham Institute'),
(7575, 'https://ror.org/02x1zab29', 'no_lang_code', 1, 'https://ror.org/02x1zab29 Chemring Technology Solutions (United Kingdom)'),
(7576, 'https://ror.org/05998w930', 'en', 1, 'https://ror.org/05998w930 Council on Environmental Quality'),
(7577, 'https://ror.org/05pa4pa04', 'en', 1, 'https://ror.org/05pa4pa04 Courtesy Travel Service'),
(7578, 'https://ror.org/05bznb153', 'no_lang_code', 1, 'https://ror.org/05bznb153 Romny Scientific (United States)'),
(7579, 'https://ror.org/01jbsjf80', 'es', 1, 'https://ror.org/01jbsjf80 Instituto Costarricense de Investigación y Enseñanza en Nutrición y Salud'),
(7580, 'https://ror.org/033jcqk26', 'en', 1, 'https://ror.org/033jcqk26 National Archives Yr Archifau Cenedlaethol'),
(7581, 'https://ror.org/0169taq91', 'no_lang_code', 1, 'https://ror.org/0169taq91 Futures Group (United States)'),
(7582, 'https://ror.org/05wnkdq49', 'en', 1, 'https://ror.org/05wnkdq49 National Energy Foundation'),
(7583, 'https://ror.org/01rqa9952', 'no_lang_code', 1, 'https://ror.org/01rqa9952 G & A Technical Software (United States)'),
(7584, 'https://ror.org/02jb8wy89', 'en', 1, 'https://ror.org/02jb8wy89 Connecticut Pre Engineering Program'),
(7585, 'https://ror.org/03md96v89', 'en', 1, 'https://ror.org/03md96v89 National Trust'),
(7586, 'https://ror.org/05a11cb13', 'en', 1, 'https://ror.org/05a11cb13 Gadsden State Community College'),
(7587, 'https://ror.org/00j10yp83', 'en', 1, 'https://ror.org/00j10yp83 Rural Alaska Community Action Program'),
(7588, 'https://ror.org/02yh9se80', 'en', 1, 'https://ror.org/02yh9se80 Russell Sage Foundation'),
(7589, 'https://ror.org/02t6r9161', 'en', 1, 'https://ror.org/02t6r9161 Rust College'),
(7590, 'https://ror.org/0002vhf72', 'no_lang_code', 1, 'https://ror.org/0002vhf72 Galenea (United States)'),
(7591, 'https://ror.org/03vmc0n61', 'en', 1, 'https://ror.org/03vmc0n61 Galiano Conservancy Association'),
(7592, 'https://ror.org/03zsxwj64', 'en', 1, 'https://ror.org/03zsxwj64 Royal Society of Arts'),
(7593, 'https://ror.org/05wcvd955', 'no_lang_code', 1, 'https://ror.org/05wcvd955 Gallomanor (United Kingdom)'),
(7594, 'https://ror.org/041d00r55', 'en', 1, 'https://ror.org/041d00r55 Galveston College'),
(7595, 'https://ror.org/02g6ngv74', 'no_lang_code', 1, 'https://ror.org/02g6ngv74 Curis (United States)'),
(7596, 'https://ror.org/02htbg024', 'no_lang_code', 1, 'https://ror.org/02htbg024 Creatv MicroTech (United States)'),
(7597, 'https://ror.org/031c2cm83', 'en', 1, 'https://ror.org/031c2cm83 Department of Justice'),
(7598, 'https://ror.org/02gdqk794', 'en', 1, 'https://ror.org/02gdqk794 Royal Society of Medicine'),
(7599, 'https://ror.org/03k7szx23', 'en', 1, 'https://ror.org/03k7szx23 Royal Geographical Society'),
(7600, 'https://ror.org/00bma2332', 'en', 1, 'https://ror.org/00bma2332 Royal Institute of British Architects'),
(7601, 'https://ror.org/037m83a38', 'en', 1, 'https://ror.org/037m83a38 Royal Institution of Great Britain'),
(7602, 'https://ror.org/05mgfq941', 'en', 1, 'https://ror.org/05mgfq941 Stroke Association'),
(7603, 'https://ror.org/05b2g5r95', 'en', 1, 'https://ror.org/05b2g5r95 GateWay Community College'),
(7604, 'https://ror.org/049xm8r65', 'en', 1, 'https://ror.org/049xm8r65 Royal National Institute of Blind'),
(7605, 'https://ror.org/01f02ys47', 'no_lang_code', 1, 'https://ror.org/01f02ys47 Gateway Community Services (United States)'),
(7606, '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'),
(7607, 'https://ror.org/02ha0t079', 'no_lang_code', 1, 'https://ror.org/02ha0t079 Crinetics Pharmaceuticals (United States)'),
(7608, 'https://ror.org/03wnrjx87', 'en', 1, 'https://ror.org/03wnrjx87 Royal Society Y Gymdeithas Frenhinol'),
(7609, 'https://ror.org/00xya3a34', 'en', 1, 'https://ror.org/00xya3a34 La SociƩtƩ royale du Canada Royal Society of Canada'),
(7610, 'https://ror.org/00e30t131', 'no_lang_code', 1, 'https://ror.org/00e30t131 Rowan Williams Davies & Irwin (Canada)'),
(7611, 'https://ror.org/04hw63k11', 'no_lang_code', 1, 'https://ror.org/04hw63k11 Critical Pharmaceuticals (United Kingdom)'),
(7612, 'https://ror.org/03d507062', 'no_lang_code', 1, 'https://ror.org/03d507062 Walsh Group'),
(7613, 'https://ror.org/025y0hb72', 'en', 1, 'https://ror.org/025y0hb72 Royal Astronomical Society of Canada'),
(7614, 'https://ror.org/03zk93y09', 'no_lang_code', 1, 'https://ror.org/03zk93y09 Gaudenzia (United States)'),
(7615, 'https://ror.org/03er2hr05', 'no_lang_code', 1, 'https://ror.org/03er2hr05 Critical Software (Portugal)'),
(7616, 'https://ror.org/000znb612', 'no_lang_code', 1, 'https://ror.org/000znb612 Banca RƬoghail na h-Alba Royal Bank of Scotland (United Kingdom)'),
(7617, 'https://ror.org/005kew443', 'no_lang_code', 1, 'https://ror.org/005kew443 GC Image (United States)'),
(7618, 'https://ror.org/05f2xbq60', 'en', 1, 'https://ror.org/05f2xbq60 Crohn''s and Colitis Foundation'),
(7619, 'https://ror.org/0491c4v30', 'en', 1, 'https://ror.org/0491c4v30 Wildlife Trusts'),
(7620, 'https://ror.org/00scjnx30', 'en', 1, 'https://ror.org/00scjnx30 Theiss Research'),
(7621, 'https://ror.org/023t9va96', 'no_lang_code', 1, 'https://ror.org/023t9va96 EKF Diagnostics (United States)'),
(7622, 'https://ror.org/05wnk7791', 'no_lang_code', 1, 'https://ror.org/05wnk7791 CrossChasm Technologies (Canada)'),
(7623, 'https://ror.org/01zpg3b52', 'no_lang_code', 1, 'https://ror.org/01zpg3b52 Theradex Oncology (United States)'),
(7624, 'https://ror.org/03vfany12', 'no_lang_code', 1, 'https://ror.org/03vfany12 Crosslight Software (Canada)'),
(7625, 'https://ror.org/01132tb14', 'no_lang_code', 1, 'https://ror.org/01132tb14 Cryomagnetics (United States)'),
(7626, 'https://ror.org/05cdppq10', 'no_lang_code', 1, 'https://ror.org/05cdppq10 Theralogix (United States)'),
(7627, 'https://ror.org/01c6k3h93', 'no_lang_code', 1, 'https://ror.org/01c6k3h93 Teva Pharmaceuticals (Canada)'),
(7628, 'https://ror.org/05and0d04', 'no_lang_code', 1, 'https://ror.org/05and0d04 Therametric Technologies (United States)'),
(7629, 'https://ror.org/04w7p1s44', 'no_lang_code', 1, 'https://ror.org/04w7p1s44 Rohde & Schwarz (United Kingdom)'),
(7630, 'https://ror.org/00gft1871', 'no_lang_code', 1, 'https://ror.org/00gft1871 Therapyx (United States)'),
(7631, 'https://ror.org/04s4jww20', 'no_lang_code', 1, 'https://ror.org/04s4jww20 Qiagen (United States)'),
(7632, 'https://ror.org/00j998b38', 'no_lang_code', 1, 'https://ror.org/00j998b38 GT Advanced Technologies (United States)');
INSERT INTO `rors` VALUES
(7633, 'https://ror.org/04aq4w176', 'no_lang_code', 1, 'https://ror.org/04aq4w176 TheraSource (United States)'),
(7634, 'https://ror.org/00gzhq402', 'no_lang_code', 1, 'https://ror.org/00gzhq402 Fugro (United States)'),
(7635, 'https://ror.org/00dg4je56', 'no_lang_code', 1, 'https://ror.org/00dg4je56 Thermal-Lube (Canada)'),
(7636, 'https://ror.org/024xq8r45', 'no_lang_code', 1, 'https://ror.org/024xq8r45 Thermalin Diabetes (United States)'),
(7637, 'https://ror.org/048xh4t74', 'no_lang_code', 1, 'https://ror.org/048xh4t74 Thermofin (Canada)'),
(7638, 'https://ror.org/05c2ymw43', 'no_lang_code', 1, 'https://ror.org/05c2ymw43 Genaera (United States)'),
(7639, 'https://ror.org/04e4dw336', 'no_lang_code', 1, 'https://ror.org/04e4dw336 C-Tech Innovation (United Kingdom)'),
(7640, 'https://ror.org/025zzpg41', 'no_lang_code', 1, 'https://ror.org/025zzpg41 BioFusionary Corporation (United States)'),
(7641, 'https://ror.org/03bndes49', 'no_lang_code', 1, 'https://ror.org/03bndes49 Thermo Fisher Scientific (United Kingdom)'),
(7642, 'https://ror.org/04tgdzw08', 'no_lang_code', 1, 'https://ror.org/04tgdzw08 Control Technology Incorporation (United States)'),
(7643, 'https://ror.org/05jn35f24', 'no_lang_code', 1, 'https://ror.org/05jn35f24 Thinktank'),
(7644, 'https://ror.org/04mhxc747', 'no_lang_code', 1, 'https://ror.org/04mhxc747 Gencoa (United Kingdom)'),
(7645, 'https://ror.org/05hb9gz45', 'en', 1, 'https://ror.org/05hb9gz45 Calspan-University of Buffalo Research Center'),
(7646, 'https://ror.org/04raazs21', 'no_lang_code', 1, 'https://ror.org/04raazs21 Cumberland Pharmaceuticals (United States)'),
(7647, 'https://ror.org/031bpvz69', 'no_lang_code', 1, 'https://ror.org/031bpvz69 Gene Check (United States)'),
(7648, 'https://ror.org/05c27eq92', 'no_lang_code', 1, 'https://ror.org/05c27eq92 Thomas Swan (United Kingdom)'),
(7649, 'https://ror.org/01bjkkp81', 'no_lang_code', 1, 'https://ror.org/01bjkkp81 GNS Healthcare (United States)'),
(7650, 'https://ror.org/051jtz490', 'no_lang_code', 1, 'https://ror.org/051jtz490 Thoratec Corporation (United States)'),
(7651, 'https://ror.org/01ax1zp32', 'no_lang_code', 1, 'https://ror.org/01ax1zp32 CustomKYnetics (United States)'),
(7652, 'https://ror.org/05e4r8189', 'en', 1, 'https://ror.org/05e4r8189 Cuyahoga County Board of Health'),
(7653, 'https://ror.org/0185sft94', 'no_lang_code', 1, 'https://ror.org/0185sft94 CW Optics (United States)'),
(7654, 'https://ror.org/04gtb5g92', 'no_lang_code', 1, 'https://ror.org/04gtb5g92 Thomas Keating Ltd'),
(7655, 'https://ror.org/00wcjep87', 'no_lang_code', 1, 'https://ror.org/00wcjep87 Genlantis (United States)'),
(7656, 'https://ror.org/02fn1q641', 'no_lang_code', 1, 'https://ror.org/02fn1q641 Affinity Water (United Kingdom)'),
(7657, 'https://ror.org/03rw53777', 'no_lang_code', 1, 'https://ror.org/03rw53777 CyberTech (United States)'),
(7658, 'https://ror.org/00g81mg52', 'no_lang_code', 1, 'https://ror.org/00g81mg52 Columbus Technologies and Services (United States)'),
(7659, 'https://ror.org/0527eje21', 'no_lang_code', 1, 'https://ror.org/0527eje21 Thrombodyne (United States)'),
(7660, 'https://ror.org/00rqgsb54', 'no_lang_code', 1, 'https://ror.org/00rqgsb54 Cyberkinetics (United States)'),
(7661, 'https://ror.org/029g5f696', 'no_lang_code', 1, 'https://ror.org/029g5f696 Cook General BioTechnology (United States)'),
(7662, 'https://ror.org/04k0jj762', 'no_lang_code', 1, 'https://ror.org/04k0jj762 General Dynamics (United Kingdom)'),
(7663, 'https://ror.org/0309ps652', 'no_lang_code', 1, 'https://ror.org/0309ps652 CyberLogic (United States)'),
(7664, 'https://ror.org/020nzw227', 'no_lang_code', 1, 'https://ror.org/020nzw227 Cybernet Systems Corporation (United States)'),
(7665, 'https://ror.org/038dgnc07', 'no_lang_code', 1, 'https://ror.org/038dgnc07 Cygnus (United States)'),
(7666, 'https://ror.org/03rppzy62', 'no_lang_code', 1, 'https://ror.org/03rppzy62 Thromgen (United States)'),
(7667, 'https://ror.org/04n50f417', 'no_lang_code', 1, 'https://ror.org/04n50f417 RWE (United Kingdom)'),
(7668, 'https://ror.org/03dcs5c38', 'no_lang_code', 1, 'https://ror.org/03dcs5c38 TimeDomain CVD (United States)'),
(7669, 'https://ror.org/044k1pg15', 'no_lang_code', 1, 'https://ror.org/044k1pg15 Cynosure (United States)'),
(7670, 'https://ror.org/00xw3wc12', 'no_lang_code', 1, 'https://ror.org/00xw3wc12 RxBio (United States)'),
(7671, 'https://ror.org/057m69507', 'no_lang_code', 1, 'https://ror.org/057m69507 Titanium Metals Corporation (United Kingdom)'),
(7672, 'https://ror.org/00chzyy83', 'no_lang_code', 1, 'https://ror.org/00chzyy83 Virscio (United States)'),
(7673, 'https://ror.org/01ecs7r71', 'no_lang_code', 1, 'https://ror.org/01ecs7r71 LungLife AI (United States)'),
(7674, 'https://ror.org/026b6f512', 'no_lang_code', 1, 'https://ror.org/026b6f512 Tinderbox Consultants (United Kingdom)'),
(7675, 'https://ror.org/04xve2a23', 'no_lang_code', 1, 'https://ror.org/04xve2a23 Genesegues (United States)'),
(7676, 'https://ror.org/0442wxc77', 'no_lang_code', 1, 'https://ror.org/0442wxc77 STMicroelectronics (United Kingdom)'),
(7677, 'https://ror.org/01vv6sh78', 'no_lang_code', 1, 'https://ror.org/01vv6sh78 Cytex Therapeutics (United States)'),
(7678, 'https://ror.org/014yznv62', 'no_lang_code', 1, 'https://ror.org/014yznv62 TiNi Alloy (United States)'),
(7679, 'https://ror.org/01a6nzt97', 'no_lang_code', 1, 'https://ror.org/01a6nzt97 Cytobank (United States)'),
(7680, 'https://ror.org/0042e5975', 'it', 1, 'https://ror.org/0042e5975 Istituto Nanoscienze'),
(7681, 'https://ror.org/05t1tdx84', 'no_lang_code', 1, 'https://ror.org/05t1tdx84 Tissue Genetics (United States)'),
(7682, 'https://ror.org/00p9rsf63', 'no_lang_code', 1, 'https://ror.org/00p9rsf63 Saaten Union (United Kingdom)'),
(7683, 'https://ror.org/043qn6y55', 'no_lang_code', 1, 'https://ror.org/043qn6y55 OPKO Health (Canada)'),
(7684, 'https://ror.org/026prsd04', 'no_lang_code', 1, 'https://ror.org/026prsd04 CytoCure (United States)'),
(7685, 'https://ror.org/03nkdc513', 'no_lang_code', 1, 'https://ror.org/03nkdc513 Sabbagh Associates'),
(7686, 'https://ror.org/046km1t51', 'no_lang_code', 1, 'https://ror.org/046km1t51 SABMiller (United Kingdom)'),
(7687, 'https://ror.org/00v6jq438', 'no_lang_code', 1, 'https://ror.org/00v6jq438 Cytograft Tissue Engineering (United States)'),
(7688, 'https://ror.org/03hw58c96', 'no_lang_code', 1, 'https://ror.org/03hw58c96 Scott Sabolich Prosthetics And Research (United States)'),
(7689, 'https://ror.org/03wbrqz31', 'en', 1, 'https://ror.org/03wbrqz31 Saddleback College'),
(7690, 'https://ror.org/05re2xe18', 'no_lang_code', 1, 'https://ror.org/05re2xe18 Bio Tissue (United States)'),
(7691, 'https://ror.org/04fpt0902', 'no_lang_code', 1, 'https://ror.org/04fpt0902 TLC Precision Wafer Technology (United States)'),
(7692, 'https://ror.org/00j2t0g84', 'no_lang_code', 1, 'https://ror.org/00j2t0g84 TMD Technologies (United Kingdom)'),
(7693, 'https://ror.org/05yqbk328', 'en', 1, 'https://ror.org/05yqbk328 Genetica DNA Laboratories'),
(7694, 'https://ror.org/04a390q32', 'en', 1, 'https://ror.org/04a390q32 TMJ Association'),
(7695, 'https://ror.org/003fzn994', 'no_lang_code', 1, 'https://ror.org/003fzn994 TMO Renewables (United Kingdom)'),
(7696, 'https://ror.org/035dpw102', 'en', 1, 'https://ror.org/035dpw102 Sage College of Albany'),
(7697, 'https://ror.org/05ent1n34', 'no_lang_code', 1, 'https://ror.org/05ent1n34 Cytoskeleton (United States)'),
(7698, 'https://ror.org/01azqfh67', 'en', 1, 'https://ror.org/01azqfh67 Together'),
(7699, 'https://ror.org/03tsfw439', 'no_lang_code', 1, 'https://ror.org/03tsfw439 Saint-Gobain (United States)'),
(7700, 'https://ror.org/01mmn7c12', 'no_lang_code', 1, 'https://ror.org/01mmn7c12 D-Wave Systems (Canada)'),
(7701, 'https://ror.org/04y727f83', 'en', 1, 'https://ror.org/04y727f83 Bucks County Division of Human Services'),
(7702, 'https://ror.org/00485s352', 'no_lang_code', 1, 'https://ror.org/00485s352 Danaher (United Kingdom)'),
(7703, 'https://ror.org/05a6ey653', 'en', 1, 'https://ror.org/05a6ey653 Dakota County Technical College'),
(7704, 'https://ror.org/03b2j2z26', 'no_lang_code', 1, 'https://ror.org/03b2j2z26 Dakota Technologies (United States)'),
(7705, 'https://ror.org/0057tdk10', 'no_lang_code', 1, 'https://ror.org/0057tdk10 La Jolla Science Applications (United States)'),
(7706, 'https://ror.org/031056b37', 'no_lang_code', 1, 'https://ror.org/031056b37 TomoWave Laboratories (United States)'),
(7707, 'https://ror.org/016p29p27', 'no_lang_code', 1, 'https://ror.org/016p29p27 TopoGEN (United States)'),
(7708, 'https://ror.org/034pm2g80', 'en', 1, 'https://ror.org/034pm2g80 Colegios Comunitarios del Condado de Dallas Dallas County Community College District'),
(7709, 'https://ror.org/03dakdm13', 'en', 1, 'https://ror.org/03dakdm13 St. John''s College'),
(7710, 'https://ror.org/0238hgm18', 'no_lang_code', 1, 'https://ror.org/0238hgm18 GeneTrace Systems (United States)'),
(7711, 'https://ror.org/02qb5bp07', 'no_lang_code', 1, 'https://ror.org/02qb5bp07 Tornado Spectral Systems (Canada)'),
(7712, 'https://ror.org/03y3f2317', 'no_lang_code', 1, 'https://ror.org/03y3f2317 Daniel H. Wagner Associates (United States)'),
(7713, 'https://ror.org/044xrc068', 'en', 1, 'https://ror.org/044xrc068 Toronto Centre for Phenogenomics'),
(7714, 'https://ror.org/04jqjkn20', 'no_lang_code', 1, 'https://ror.org/04jqjkn20 Data Management Services (United States)'),
(7715, 'https://ror.org/054hmd463', 'no_lang_code', 1, 'https://ror.org/054hmd463 Toshiba (United Kingdom)'),
(7716, 'https://ror.org/00amjd520', 'en', 1, 'https://ror.org/00amjd520 Saint Vincent College'),
(7717, 'https://ror.org/03b082n16', 'no_lang_code', 1, 'https://ror.org/03b082n16 Genia Photonics (Canada)'),
(7718, 'https://ror.org/05mgrg543', 'no_lang_code', 1, 'https://ror.org/05mgrg543 Salford Systems (United States)'),
(7719, 'https://ror.org/052x1xp04', 'no_lang_code', 1, 'https://ror.org/052x1xp04 Total Child Health (United States)'),
(7720, 'https://ror.org/01st38774', 'no_lang_code', 1, 'https://ror.org/01st38774 Geninov (Canada)'),
(7721, 'https://ror.org/02s619e80', 'no_lang_code', 1, 'https://ror.org/02s619e80 Dawkins Productions (United States)'),
(7722, 'https://ror.org/03jbk2g75', 'en', 1, 'https://ror.org/03jbk2g75 Daytona State College'),
(7723, 'https://ror.org/01h8tw896', 'no_lang_code', 1, 'https://ror.org/01h8tw896 Touch of Life Technologies (United States)'),
(7724, 'https://ror.org/029z7h505', 'en', 1, 'https://ror.org/029z7h505 Salt Lake Community College'),
(7725, 'https://ror.org/02ttgyc97', 'no_lang_code', 1, 'https://ror.org/02ttgyc97 dbaza health (United States)'),
(7726, 'https://ror.org/04tnxs674', 'no_lang_code', 1, 'https://ror.org/04tnxs674 Saltire Software (United States)'),
(7727, 'https://ror.org/00x2ve368', 'en', 1, 'https://ror.org/00x2ve368 Tourette Association of America'),
(7728, 'https://ror.org/00tgygn49', 'en', 1, 'https://ror.org/00tgygn49 San Antonio Fighting Back'),
(7729, 'https://ror.org/05mqpm182', 'no_lang_code', 1, 'https://ror.org/05mqpm182 De La Rue (United Kingdom)'),
(7730, 'https://ror.org/04nc7qn91', 'en', 1, 'https://ror.org/04nc7qn91 Town and Country Planning Association'),
(7731, 'https://ror.org/05jgyck31', 'en', 1, 'https://ror.org/05jgyck31 San Antonio Metropolitan Health District'),
(7732, 'https://ror.org/001kbwb95', 'no_lang_code', 1, 'https://ror.org/001kbwb95 Decision Demographics (United States)'),
(7733, 'https://ror.org/00rhaks72', 'no_lang_code', 1, 'https://ror.org/00rhaks72 Tracer Technologies (United States)'),
(7734, 'https://ror.org/01qmkwf03', 'en', 1, 'https://ror.org/01qmkwf03 San Diego Biomedical Research Institute'),
(7735, 'https://ror.org/045ckq244', 'no_lang_code', 1, 'https://ror.org/045ckq244 Transcendent Endeavors (United States)'),
(7736, 'https://ror.org/0434dpa13', 'no_lang_code', 1, 'https://ror.org/0434dpa13 Decision Systems (United States)'),
(7737, 'https://ror.org/01864e038', 'en', 1, 'https://ror.org/01864e038 Montana Council of Teachers of Mathematics'),
(7738, 'https://ror.org/0432wt807', 'en', 1, 'https://ror.org/0432wt807 San Dieguito Alliance'),
(7739, 'https://ror.org/01g1mnc10', 'no_lang_code', 1, 'https://ror.org/01g1mnc10 Transfusion and Transplantation Technologies (United States)'),
(7740, 'https://ror.org/0598xyq26', 'no_lang_code', 1, 'https://ror.org/0598xyq26 TransGenex Nanobiotech (United States)'),
(7741, 'https://ror.org/053re1s95', 'no_lang_code', 1, 'https://ror.org/053re1s95 Beryllium (United States)'),
(7742, 'https://ror.org/054rn8r20', 'en', 1, 'https://ror.org/054rn8r20 San Francisco Community Clinic Consortium'),
(7743, 'https://ror.org/04dzdm737', 'no_lang_code', 1, 'https://ror.org/04dzdm737 deCODE Genetics (Iceland) ƍslensk erfưagreining'),
(7744, 'https://ror.org/03tj54q36', 'no_lang_code', 1, 'https://ror.org/03tj54q36 Translink (United Kingdom)'),
(7745, 'https://ror.org/025qsw441', 'en', 1, 'https://ror.org/025qsw441 Deep River Science Academy'),
(7746, 'https://ror.org/02xdxmh23', 'en', 1, 'https://ror.org/02xdxmh23 San Jacinto College'),
(7747, 'https://ror.org/02caytj08', 'en', 1, 'https://ror.org/02caytj08 Defense Advanced Research Projects Agency'),
(7748, 'https://ror.org/05svxk822', 'en', 1, 'https://ror.org/05svxk822 San Jose City College'),
(7749, 'https://ror.org/041jmaw90', 'en', 1, 'https://ror.org/041jmaw90 San Juan College'),
(7750, 'https://ror.org/05xvz3022', 'no_lang_code', 1, 'https://ror.org/05xvz3022 Transonic Systems (United States)'),
(7751, 'https://ror.org/00qxqw753', 'en', 1, 'https://ror.org/00qxqw753 San Mateo County Community College District'),
(7752, 'https://ror.org/014jgh757', 'no_lang_code', 1, 'https://ror.org/014jgh757 LAC Group (United States)'),
(7753, 'https://ror.org/006dtpb58', 'en', 1, 'https://ror.org/006dtpb58 Monterey Peninsula College'),
(7754, 'https://ror.org/05b56f310', 'en', 1, 'https://ror.org/05b56f310 Transport Scotland'),
(7755, 'https://ror.org/01x0vtk27', 'no_lang_code', 1, 'https://ror.org/01x0vtk27 Saneron CCEL Therapeutics (United States)'),
(7756, 'https://ror.org/03qw8q135', 'no_lang_code', 1, 'https://ror.org/03qw8q135 Transposagen Biopharmaceuticals (United States)'),
(7757, 'https://ror.org/02fdhvf98', 'no_lang_code', 1, 'https://ror.org/02fdhvf98 Degenkolb (United States)'),
(7758, 'https://ror.org/0135ay670', 'en', 1, 'https://ror.org/0135ay670 Montgomery County Community College'),
(7759, 'https://ror.org/04ggm9668', 'no_lang_code', 1, 'https://ror.org/04ggm9668 Degge Group (United States)'),
(7760, 'https://ror.org/05sc9ba13', 'en', 1, 'https://ror.org/05sc9ba13 Montgomery County Public Schools'),
(7761, 'https://ror.org/00hy18g46', 'no_lang_code', 1, 'https://ror.org/00hy18g46 DEKK-TEC (United States)'),
(7762, 'https://ror.org/02dywg371', 'en', 1, 'https://ror.org/02dywg371 Del Mar College'),
(7763, 'https://ror.org/05x0at146', 'en', 1, 'https://ror.org/05x0at146 Santa Barbara Botanic Garden'),
(7764, 'https://ror.org/037asfw97', 'en', 1, 'https://ror.org/037asfw97 Tri County Technical College'),
(7765, 'https://ror.org/02cbwht62', 'en', 1, 'https://ror.org/02cbwht62 Department of Services for Children Youth and their Families'),
(7766, 'https://ror.org/022j4a796', 'en', 1, 'https://ror.org/022j4a796 Santa Barbara City College'),
(7767, 'https://ror.org/00kv9mr92', 'no_lang_code', 1, 'https://ror.org/00kv9mr92 Tri Y Environmental Research Institute (Canada)'),
(7768, 'https://ror.org/00dh4zq96', 'no_lang_code', 1, 'https://ror.org/00dh4zq96 TRIA Bioscience (United States)'),
(7769, 'https://ror.org/00pfvfk73', 'en', 1, 'https://ror.org/00pfvfk73 Delaware Technical Community College'),
(7770, 'https://ror.org/017arrg98', 'en', 1, 'https://ror.org/017arrg98 Department of Alcohol, Drug, and Mental Health Services'),
(7771, 'https://ror.org/05psc8795', 'en', 1, 'https://ror.org/05psc8795 Santa Barbara Museum of Natural History'),
(7772, 'https://ror.org/01d9afc73', 'en', 1, 'https://ror.org/01d9afc73 Montrose Center'),
(7773, 'https://ror.org/02fm7xd67', 'no_lang_code', 1, 'https://ror.org/02fm7xd67 Delcam (United Kingdom)'),
(7774, 'https://ror.org/02wvm8742', 'no_lang_code', 1, 'https://ror.org/02wvm8742 Montserrat Volcano Observatory'),
(7775, 'https://ror.org/04p25v506', 'en', 1, 'https://ror.org/04p25v506 Montshire Museum of Science'),
(7776, 'https://ror.org/02revdf05', 'en', 1, 'https://ror.org/02revdf05 Moraine Valley Community College'),
(7777, 'https://ror.org/006jzf029', 'no_lang_code', 1, 'https://ror.org/006jzf029 TriboFilm Research (United States)'),
(7778, 'https://ror.org/052yz6z95', 'en', 1, 'https://ror.org/052yz6z95 Trident Technical College'),
(7779, 'https://ror.org/05rv6kp38', 'no_lang_code', 1, 'https://ror.org/05rv6kp38 TriLink BioTechnologies (United States)'),
(7780, 'https://ror.org/035756473', 'en', 1, 'https://ror.org/035756473 Trinity Washington University Universidad Trinity Washington'),
(7781, 'https://ror.org/001dsq926', 'no_lang_code', 1, 'https://ror.org/001dsq926 DeltaMetrics (United States)'),
(7782, 'https://ror.org/017tgty84', 'no_lang_code', 1, 'https://ror.org/017tgty84 SciAps (United States)'),
(7783, 'https://ror.org/02axsa366', 'en', 1, 'https://ror.org/02axsa366 Santa Fe Community College'),
(7784, 'https://ror.org/04yv5fh97', 'no_lang_code', 1, 'https://ror.org/04yv5fh97 Demtroys (Canada)'),
(7785, 'https://ror.org/04ewhdd57', 'no_lang_code', 1, 'https://ror.org/04ewhdd57 Dendritech (United States)'),
(7786, 'https://ror.org/02kxjqp24', 'no_lang_code', 1, 'https://ror.org/02kxjqp24 Certara (United States)'),
(7787, 'https://ror.org/03qaq7791', 'no_lang_code', 1, 'https://ror.org/03qaq7791 Tristan Technologies (United States)'),
(7788, 'https://ror.org/04x89rx63', 'en', 1, 'https://ror.org/04x89rx63 Triton College'),
(7789, 'https://ror.org/05vga3150', 'no_lang_code', 1, 'https://ror.org/05vga3150 Trophogen (United States)'),
(7790, 'https://ror.org/04nmqte89', 'no_lang_code', 1, 'https://ror.org/04nmqte89 Santec Systems (United States)'),
(7791, 'https://ror.org/04mg00432', 'no_lang_code', 1, 'https://ror.org/04mg00432 Morphonix (United States)'),
(7792, 'https://ror.org/01v5pfj68', 'no_lang_code', 1, 'https://ror.org/01v5pfj68 Sarver and Associates (United States)'),
(7793, 'https://ror.org/01cnxmm67', 'en', 1, 'https://ror.org/01cnxmm67 Morris Brown College'),
(7794, 'https://ror.org/04pm5zx37', 'en', 1, 'https://ror.org/04pm5zx37 Sasha Bruce Youthwork'),
(7795, 'https://ror.org/020gf7g55', 'no_lang_code', 1, 'https://ror.org/020gf7g55 Mosaiques Diagnostics and Therapeutics (Germany)'),
(7796, 'https://ror.org/039q6xk02', 'en', 1, 'https://ror.org/039q6xk02 Moss Rehabilitation Hospital'),
(7797, 'https://ror.org/05414wx82', 'no_lang_code', 1, 'https://ror.org/05414wx82 Sasken (India)'),
(7798, 'https://ror.org/0141egq93', 'no_lang_code', 1, 'https://ror.org/0141egq93 TRS Technologies (United States)'),
(7799, 'https://ror.org/0286exd49', 'no_lang_code', 1, 'https://ror.org/0286exd49 SaskTel (Canada)'),
(7800, 'https://ror.org/05m0yjz71', 'no_lang_code', 1, 'https://ror.org/05m0yjz71 TRW Automotive (United Kingdom)'),
(7801, 'https://ror.org/02a4gss26', 'no_lang_code', 1, 'https://ror.org/02a4gss26 Sasol (South Africa)'),
(7802, 'https://ror.org/01g9x3v85', 'en', 1, 'https://ror.org/01g9x3v85 Agencia Federal para el Manejo de Emergencias Federal Emergency Management Agency'),
(7803, 'https://ror.org/03f1nf684', 'no_lang_code', 1, 'https://ror.org/03f1nf684 Fillauer (United States)'),
(7804, 'https://ror.org/01hdk3d05', 'en', 1, 'https://ror.org/01hdk3d05 San Antonio College'),
(7805, 'https://ror.org/028fd8812', 'en', 1, 'https://ror.org/028fd8812 Santa Clara Valley Health and Hospital System'),
(7806, 'https://ror.org/0396gxt62', 'no_lang_code', 1, 'https://ror.org/0396gxt62 Motorola (United Kingdom)'),
(7807, 'https://ror.org/0014wkh93', 'no_lang_code', 1, 'https://ror.org/0014wkh93 Tucker-Davis Technologies (United States)'),
(7808, 'https://ror.org/05rnhf031', 'no_lang_code', 1, 'https://ror.org/05rnhf031 ACell (United States)'),
(7809, 'https://ror.org/00sf3p382', 'no_lang_code', 1, 'https://ror.org/00sf3p382 Turner Consulting Group (United States)'),
(7810, 'https://ror.org/04akq1s78', 'no_lang_code', 1, 'https://ror.org/04akq1s78 Mound Laser & Photonics Center (United States)'),
(7811, 'https://ror.org/04y93q769', 'no_lang_code', 1, 'https://ror.org/04y93q769 Aciont (United States)'),
(7812, 'https://ror.org/04dhbjd70', 'no_lang_code', 1, 'https://ror.org/04dhbjd70 SatCon Technology Corporation (United States)'),
(7813, 'https://ror.org/001cbt815', 'en', 1, 'https://ror.org/001cbt815 Mt. Hood Community College'),
(7814, 'https://ror.org/00wc5s136', 'en', 1, 'https://ror.org/00wc5s136 Mount Marty College'),
(7815, 'https://ror.org/02mn8sh47', 'en', 1, 'https://ror.org/02mn8sh47 Turtle Mountain Community College'),
(7816, 'https://ror.org/040ty4453', 'en', 1, 'https://ror.org/040ty4453 Mount St. Mary''s University'),
(7817, 'https://ror.org/016n3sp21', 'en', 1, 'https://ror.org/016n3sp21 Society of British Water and Wastewater Industries'),
(7818, 'https://ror.org/03wxx8465', 'no_lang_code', 1, 'https://ror.org/03wxx8465 Mt. San Antonio College'),
(7819, 'https://ror.org/04snwmr98', 'en', 1, 'https://ror.org/04snwmr98 Tusculum College'),
(7820, 'https://ror.org/01x5py295', 'no_lang_code', 1, 'https://ror.org/01x5py295 SC Solutions (United States)'),
(7821, 'https://ror.org/05h3de220', 'en', 1, 'https://ror.org/05h3de220 Mount Saint Mary College'),
(7822, 'https://ror.org/036x02d82', 'en', 1, 'https://ror.org/036x02d82 Tyne and Wear Archives and Museums'),
(7823, 'https://ror.org/049hfye85', 'no_lang_code', 1, 'https://ror.org/049hfye85 Acoustic MedSystems (United States)'),
(7824, 'https://ror.org/022xw8j65', 'en', 1, 'https://ror.org/022xw8j65 University of Mount Union UniversitƩ de mount union'),
(7825, 'https://ror.org/01743cc72', 'no_lang_code', 1, 'https://ror.org/01743cc72 Servelec Technologies (United Kingdom)'),
(7826, 'https://ror.org/02p6vh725', 'en', 1, 'https://ror.org/02p6vh725 Mount Wachusett Community College'),
(7827, 'https://ror.org/00226bs07', 'no_lang_code', 1, 'https://ror.org/00226bs07 Scarab Genomics (United States)'),
(7828, 'https://ror.org/02se3s925', 'en', 1, 'https://ror.org/02se3s925 Inova Children''s Hospital'),
(7829, 'https://ror.org/03791d618', 'no_lang_code', 1, 'https://ror.org/03791d618 Kimberly-Clark (United States)'),
(7830, 'https://ror.org/02wcma710', 'no_lang_code', 1, 'https://ror.org/02wcma710 Schafer Corporation (United States)'),
(7831, 'https://ror.org/04tf8qk07', 'en', 1, 'https://ror.org/04tf8qk07 Mountain Empire Community College'),
(7832, 'https://ror.org/04bxavq22', 'en', 1, 'https://ror.org/04bxavq22 USMMA Alumni Association and Foundation'),
(7833, 'https://ror.org/03q6ms497', 'no_lang_code', 1, 'https://ror.org/03q6ms497 Schlumberger (United Kingdom)'),
(7834, 'https://ror.org/05phfhs05', 'en', 1, 'https://ror.org/05phfhs05 Action for Boston Community Development'),
(7835, 'https://ror.org/02nfh0m56', 'en', 1, 'https://ror.org/02nfh0m56 Pittsburgh Public Schools'),
(7836, 'https://ror.org/053apnz82', 'en', 1, 'https://ror.org/053apnz82 School for Advanced Research'),
(7837, 'https://ror.org/055geks33', 'en', 1, 'https://ror.org/055geks33 United States Breastfeeding Committee'),
(7838, 'https://ror.org/03n9vvh94', 'no_lang_code', 1, 'https://ror.org/03n9vvh94 ActionDog (United Kingdom)'),
(7839, 'https://ror.org/05a3z6914', 'no_lang_code', 1, 'https://ror.org/05a3z6914 Schrodinger (United States)'),
(7840, 'https://ror.org/02sdw5w15', 'no_lang_code', 1, 'https://ror.org/02sdw5w15 Active Motif (United States)'),
(7841, 'https://ror.org/036zx6482', 'en', 1, 'https://ror.org/036zx6482 United States Drug Testing Laboratories'),
(7842, 'https://ror.org/052ay3140', 'no_lang_code', 1, 'https://ror.org/052ay3140 Active Space Technologies (Portugal)'),
(7843, 'https://ror.org/05c0j1j47', 'no_lang_code', 1, 'https://ror.org/05c0j1j47 MPB Technologies & Communications (Canada)'),
(7844, 'https://ror.org/04pcj0h26', 'en', 1, 'https://ror.org/04pcj0h26 Actua'),
(7845, 'https://ror.org/03q358129', 'no_lang_code', 1, 'https://ror.org/03q358129 Active Signal Technologies (United States)'),
(7846, 'https://ror.org/05324v822', 'en', 1, 'https://ror.org/05324v822 Actuarial Research Corporation'),
(7847, 'https://ror.org/002xn3f27', 'no_lang_code', 1, 'https://ror.org/002xn3f27 SciberQuest (United States)'),
(7848, 'https://ror.org/03dqpq202', 'no_lang_code', 1, 'https://ror.org/03dqpq202 MPI Research (United States)'),
(7849, 'https://ror.org/03z50d035', 'no_lang_code', 1, 'https://ror.org/03z50d035 Actuated Medical (United States)'),
(7850, 'https://ror.org/01c0hdt76', 'no_lang_code', 1, 'https://ror.org/01c0hdt76 Acumen (United States)'),
(7851, 'https://ror.org/049t33881', 'no_lang_code', 1, 'https://ror.org/049t33881 Science Education Solutions (United States)'),
(7852, 'https://ror.org/05yfrba80', 'en', 1, 'https://ror.org/05yfrba80 Science Museum'),
(7853, 'https://ror.org/028k36c88', 'en', 1, 'https://ror.org/028k36c88 Science North'),
(7854, 'https://ror.org/006d11e04', 'no_lang_code', 1, 'https://ror.org/006d11e04 Agricultural Development Advisory Service (United Kingdom)'),
(7855, 'https://ror.org/02frzq211', 'en', 1, 'https://ror.org/02frzq211 UK Biobank'),
(7856, 'https://ror.org/01jpszw66', 'no_lang_code', 1, 'https://ror.org/01jpszw66 Cirrascale (United States)'),
(7857, 'https://ror.org/05b1skj70', 'no_lang_code', 1, 'https://ror.org/05b1skj70 Sciencetech (Canada)'),
(7858, 'https://ror.org/02rr5zn35', 'no_lang_code', 1, 'https://ror.org/02rr5zn35 Uken (Canada)'),
(7859, 'https://ror.org/0010ry587', 'no_lang_code', 1, 'https://ror.org/0010ry587 Ultra Electronics (Canada)'),
(7860, 'https://ror.org/035fp5e48', 'en', 1, 'https://ror.org/035fp5e48 Scientific Consulting Group'),
(7861, 'https://ror.org/05mq2fa89', 'no_lang_code', 1, 'https://ror.org/05mq2fa89 Ultramet (United States)'),
(7862, 'https://ror.org/05xrj1c85', 'no_lang_code', 1, 'https://ror.org/05xrj1c85 Gamma Medica (United States)'),
(7863, 'https://ror.org/055sayf44', 'no_lang_code', 1, 'https://ror.org/055sayf44 Analogic (Canada)'),
(7864, 'https://ror.org/03te4pe27', 'no_lang_code', 1, 'https://ror.org/03te4pe27 Umpqua Research Company (United States)'),
(7865, 'https://ror.org/01rx46r39', 'no_lang_code', 1, 'https://ror.org/01rx46r39 Science Take-Out (United States)'),
(7866, 'https://ror.org/00dnb8a67', 'fr', 1, 'https://ror.org/00dnb8a67 Science pour tous'),
(7867, 'https://ror.org/019xgv883', 'en', 1, 'https://ror.org/019xgv883 Science East Association'),
(7868, 'https://ror.org/00hf0cm69', 'no_lang_code', 1, 'https://ror.org/00hf0cm69 Adherent Technologies (United States)'),
(7869, 'https://ror.org/043j90n04', 'en', 1, 'https://ror.org/043j90n04 MRC Prion Unit'),
(7870, 'https://ror.org/000dzg547', 'no_lang_code', 1, 'https://ror.org/000dzg547 Scientific Solutions (United States)'),
(7871, 'https://ror.org/038naac42', 'no_lang_code', 1, 'https://ror.org/038naac42 AdipoGenix (United States)'),
(7872, 'https://ror.org/00hntwx50', 'en', 1, 'https://ror.org/00hntwx50 Seattle Central College'),
(7873, 'https://ror.org/02hqxd823', 'no_lang_code', 1, 'https://ror.org/02hqxd823 MRF Geosystems (Canada)'),
(7874, 'https://ror.org/033ssdc55', 'no_lang_code', 1, 'https://ror.org/033ssdc55 Unisys (United States)'),
(7875, 'https://ror.org/01rhvcq39', 'no_lang_code', 1, 'https://ror.org/01rhvcq39 Seashell Technology (United States)'),
(7876, 'https://ror.org/01bz6xa25', 'no_lang_code', 1, 'https://ror.org/01bz6xa25 Rigaku (United Kingdom)'),
(7877, 'https://ror.org/044bp3769', 'no_lang_code', 1, 'https://ror.org/044bp3769 United Biomedical (United States)'),
(7878, 'https://ror.org/036482385', 'en', 1, 'https://ror.org/036482385 United Engineering Foundation'),
(7879, 'https://ror.org/03aygfv62', 'en', 1, 'https://ror.org/03aygfv62 Scotch Whisky Research Institute'),
(7880, 'https://ror.org/02khxjf35', 'no_lang_code', 1, 'https://ror.org/02khxjf35 United Environment and Energy (United States)'),
(7881, 'https://ror.org/05d0qsh22', 'no_lang_code', 1, 'https://ror.org/05d0qsh22 Advanced Cell Technology (United States)'),
(7882, 'https://ror.org/02ee2kk58', 'en', 1, 'https://ror.org/02ee2kk58 MUJHU Research Collaboration'),
(7883, 'https://ror.org/02f131c52', 'en', 1, 'https://ror.org/02f131c52 Adrian College'),
(7884, 'https://ror.org/02kk3dq58', 'en', 1, 'https://ror.org/02kk3dq58 United Tribes Technical College'),
(7885, 'https://ror.org/0393mwb72', 'no_lang_code', 1, 'https://ror.org/0393mwb72 United Utilities (United Kingdom)'),
(7886, 'https://ror.org/03nr3ve48', 'no_lang_code', 1, 'https://ror.org/03nr3ve48 Advanced Brain Monitoring (United States)'),
(7887, 'https://ror.org/03wgxjb31', 'no_lang_code', 1, 'https://ror.org/03wgxjb31 United Therapeutics (United States)'),
(7888, 'https://ror.org/0550f5p69', 'no_lang_code', 1, 'https://ror.org/0550f5p69 MultiCell Technologies (United States)'),
(7889, 'https://ror.org/054k4qn06', 'no_lang_code', 1, 'https://ror.org/054k4qn06 Advanced Ceramics Manufacturing (United States)'),
(7890, 'https://ror.org/004zcwt94', 'no_lang_code', 1, 'https://ror.org/004zcwt94 Universal Sensors (United States)'),
(7891, 'https://ror.org/05q882j59', 'en', 1, 'https://ror.org/05q882j59 Scientists in School'),
(7892, 'https://ror.org/05h2kgw82', 'no_lang_code', 1, 'https://ror.org/05h2kgw82 SciMed Technologies (Canada)'),
(7893, 'https://ror.org/035dkke52', 'no_lang_code', 1, 'https://ror.org/035dkke52 Scisys (United Kingdom)'),
(7894, 'https://ror.org/02vjt9x89', 'no_lang_code', 1, 'https://ror.org/02vjt9x89 SciTech Development (United States)'),
(7895, 'https://ror.org/05qg48n69', 'no_lang_code', 1, 'https://ror.org/05qg48n69 Scott Bader (United Kingdom)'),
(7896, 'https://ror.org/04p36vs32', 'no_lang_code', 1, 'https://ror.org/04p36vs32 Scott Instrument Company (United States)'),
(7897, 'https://ror.org/038aete71', 'no_lang_code', 1, 'https://ror.org/038aete71 Advanced Diamond Technologies (United States)'),
(7898, 'https://ror.org/0468mqv58', 'no_lang_code', 1, 'https://ror.org/0468mqv58 URS Corporation (United Kingdom)'),
(7899, 'https://ror.org/03jnj0435', 'no_lang_code', 1, 'https://ror.org/03jnj0435 Scottish and Southern Energy (United Kingdom)'),
(7900, 'https://ror.org/029kax838', 'no_lang_code', 1, 'https://ror.org/029kax838 Muprime Technology (Canada)'),
(7901, 'https://ror.org/043xmyg25', 'en', 1, 'https://ror.org/043xmyg25 Murray State College'),
(7902, 'https://ror.org/01bk7tw31', 'en', 1, 'https://ror.org/01bk7tw31 Wireless Innovation Forum'),
(7903, 'https://ror.org/00q2xhk98', 'no_lang_code', 1, 'https://ror.org/00q2xhk98 Murty Pharmaceuticals (United States)'),
(7904, 'https://ror.org/03cc62s85', 'no_lang_code', 1, 'https://ror.org/03cc62s85 Scottish Water (United Kingdom)'),
(7905, 'https://ror.org/02vaftm28', 'en', 1, 'https://ror.org/02vaftm28 Sea Education Association'),
(7906, 'https://ror.org/031exby54', 'no_lang_code', 1, 'https://ror.org/031exby54 Sea Run Holdings (United States)'),
(7907, 'https://ror.org/012vsjx26', 'no_lang_code', 1, 'https://ror.org/012vsjx26 Seacoast Science (United States)'),
(7908, 'https://ror.org/01gvm4v91', 'no_lang_code', 1, 'https://ror.org/01gvm4v91 Advanced Genetic Systems (United States)'),
(7909, 'https://ror.org/05q895y58', 'en', 1, 'https://ror.org/05q895y58 Lisbon Geographic Society Sociedade de Geografia de Lisboa'),
(7910, 'https://ror.org/02dk80w07', 'en', 1, 'https://ror.org/02dk80w07 Museu Nacional de Arte Antiga National Museum of Ancient Art'),
(7911, 'https://ror.org/03zkyqa82', 'no_lang_code', 1, 'https://ror.org/03zkyqa82 SeaStar Solutions (Canada)'),
(7912, 'https://ror.org/01hnx4w34', 'en', 1, 'https://ror.org/01hnx4w34 Museu Nacional do Azulejo National Azulejo Museum'),
(7913, 'https://ror.org/04jq2r740', 'en', 1, 'https://ror.org/04jq2r740 Museum of Science and Industry'),
(7914, 'https://ror.org/04sjb2j71', 'en', 1, 'https://ror.org/04sjb2j71 Museum of Science and Industry'),
(7915, 'https://ror.org/047c3xe48', 'no_lang_code', 1, 'https://ror.org/047c3xe48 Advanced Imaging Research (United States)'),
(7916, 'https://ror.org/026atsz45', 'en', 1, 'https://ror.org/026atsz45 Montana Wyoming Tribal Leaders Council'),
(7917, 'https://ror.org/03wbhj477', 'en', 1, 'https://ror.org/03wbhj477 Upsala College'),
(7918, 'https://ror.org/0265tbd09', 'no_lang_code', 1, 'https://ror.org/0265tbd09 Advanced Materials Technology (United States)'),
(7919, 'https://ror.org/00hr74637', 'no_lang_code', 1, 'https://ror.org/00hr74637 Science Approach (United States)'),
(7920, 'https://ror.org/00hh31m68', 'no_lang_code', 1, 'https://ror.org/00hh31m68 Advanced Mechanical Technology (United States)'),
(7921, 'https://ror.org/01j9bf827', 'en', 1, 'https://ror.org/01j9bf827 Zane State College'),
(7922, 'https://ror.org/03gf87416', 'no_lang_code', 1, 'https://ror.org/03gf87416 Advanced MicroLabs (United States)'),
(7923, 'https://ror.org/00w2xsv89', 'no_lang_code', 1, 'https://ror.org/00w2xsv89 Advanced MRI Technologies (United States)'),
(7924, 'https://ror.org/01decj058', 'no_lang_code', 1, 'https://ror.org/01decj058 Dianon (United States)'),
(7925, 'https://ror.org/02h1p2c43', 'en', 1, 'https://ror.org/02h1p2c43 Monterey County Health Department'),
(7926, 'https://ror.org/026bd4t65', 'no_lang_code', 1, 'https://ror.org/026bd4t65 UT Dots (United States)'),
(7927, 'https://ror.org/047398454', 'no_lang_code', 1, 'https://ror.org/047398454 MWH (United Kingdom)'),
(7928, 'https://ror.org/02cmjqw34', 'en', 1, 'https://ror.org/02cmjqw34 My Brother''s Keeper'),
(7929, 'https://ror.org/00z7pm351', 'no_lang_code', 1, 'https://ror.org/00z7pm351 Advanced Photonic Crystals (United States)'),
(7930, 'https://ror.org/00ew1b528', 'no_lang_code', 1, 'https://ror.org/00ew1b528 MycoLogic (Canada)'),
(7931, 'https://ror.org/02889gd81', 'no_lang_code', 1, 'https://ror.org/02889gd81 Unicon Research (United States)'),
(7932, 'https://ror.org/02jy1mq31', 'no_lang_code', 1, 'https://ror.org/02jy1mq31 Ondine Biopharma (United States)'),
(7933, 'https://ror.org/04fj60j89', 'no_lang_code', 1, 'https://ror.org/04fj60j89 SeaLite Engineering (United States)'),
(7934, 'https://ror.org/04gy43j76', 'no_lang_code', 1, 'https://ror.org/04gy43j76 Advanced Scientific Concepts (United States)'),
(7935, 'https://ror.org/04c5xat66', 'no_lang_code', 1, 'https://ror.org/04c5xat66 Megger (United Kingdom)'),
(7936, 'https://ror.org/048sjbt91', 'en', 1, 'https://ror.org/048sjbt91 John Hunter Children''s Hospital'),
(7937, 'https://ror.org/030gs7n75', 'no_lang_code', 1, 'https://ror.org/030gs7n75 Seccuris (Canada)'),
(7938, 'https://ror.org/00mjs6x71', 'no_lang_code', 1, 'https://ror.org/00mjs6x71 Advanced Technology and Research Corporation (United States)'),
(7939, 'https://ror.org/03t9z1b27', 'en', 1, 'https://ror.org/03t9z1b27 Utah Department of Human Services'),
(7940, 'https://ror.org/05qevt293', 'no_lang_code', 1, 'https://ror.org/05qevt293 HealthMedia (United States)'),
(7941, 'https://ror.org/01gqzkt51', 'no_lang_code', 1, 'https://ror.org/01gqzkt51 Second Foundation (United States)'),
(7942, 'https://ror.org/05fbr1r82', 'no_lang_code', 1, 'https://ror.org/05fbr1r82 UTRON Kinetics (United States)'),
(7943, 'https://ror.org/05es84h77', 'no_lang_code', 1, 'https://ror.org/05es84h77 Segue Corporation (United States)'),
(7944, 'https://ror.org/03rctck52', 'no_lang_code', 1, 'https://ror.org/03rctck52 MyScience (United Kingdom)'),
(7945, 'https://ror.org/03rzh5w77', 'no_lang_code', 1, 'https://ror.org/03rzh5w77 Utsi Electronics (United Kingdom)'),
(7946, 'https://ror.org/047r3w252', 'no_lang_code', 1, 'https://ror.org/047r3w252 Nano-C (United States)'),
(7947, 'https://ror.org/04tn6gn60', 'no_lang_code', 1, 'https://ror.org/04tn6gn60 Advanced Tissue (United States)'),
(7948, 'https://ror.org/01v51gh79', 'no_lang_code', 1, 'https://ror.org/01v51gh79 NanoCellect Biomedical (United States)'),
(7949, 'https://ror.org/000zk0m89', 'no_lang_code', 1, 'https://ror.org/000zk0m89 Nanoco Technologies (United Kingdom)'),
(7950, 'https://ror.org/03z6z3n38', 'en', 1, 'https://ror.org/03z6z3n38 VA Loma Linda Healthcare System'),
(7951, 'https://ror.org/03p0nzr60', 'no_lang_code', 1, 'https://ror.org/03p0nzr60 NanoComposix (United States)'),
(7952, 'https://ror.org/003g0xf19', 'en', 1, 'https://ror.org/003g0xf19 VA New Jersey Health Care System'),
(7953, 'https://ror.org/03865vt17', 'no_lang_code', 1, 'https://ror.org/03865vt17 Advaxis (United States)'),
(7954, 'https://ror.org/047cmqg95', 'en', 1, 'https://ror.org/047cmqg95 Virginia Department of Agriculture and Consumer Services'),
(7955, 'https://ror.org/05ta9zy41', 'en', 1, 'https://ror.org/05ta9zy41 Self Reliance Foundation'),
(7956, 'https://ror.org/05gy1hc18', 'en', 1, 'https://ror.org/05gy1hc18 Advocates for Youth'),
(7957, 'https://ror.org/03s4b7629', 'no_lang_code', 1, 'https://ror.org/03s4b7629 Nanomaterials & Nanofabrication Laboratories (United States)'),
(7958, 'https://ror.org/047jxj944', 'no_lang_code', 1, 'https://ror.org/047jxj944 Vaccinex (United States)'),
(7959, 'https://ror.org/02966z980', 'en', 1, 'https://ror.org/02966z980 Seminole State College of Florida'),
(7960, 'https://ror.org/03a1weg76', 'no_lang_code', 1, 'https://ror.org/03a1weg76 AdvR (United States)'),
(7961, 'https://ror.org/0279fsn39', 'no_lang_code', 1, 'https://ror.org/0279fsn39 Aedas (United Kingdom)'),
(7962, 'https://ror.org/006ys0j28', 'no_lang_code', 1, 'https://ror.org/006ys0j28 VinTech (United States)'),
(7963, 'https://ror.org/032z49242', 'no_lang_code', 1, 'https://ror.org/032z49242 Senecio Software (United States)'),
(7964, 'https://ror.org/005f8zs60', 'no_lang_code', 1, 'https://ror.org/005f8zs60 Nanoptics (United States)'),
(7965, 'https://ror.org/03hp93w41', 'no_lang_code', 1, 'https://ror.org/03hp93w41 Aegera Therapeutics (Canada)'),
(7966, 'https://ror.org/04wjhaz81', 'no_lang_code', 1, 'https://ror.org/04wjhaz81 Sengenia (United Kingdom)'),
(7967, 'https://ror.org/05rtsja45', 'no_lang_code', 1, 'https://ror.org/05rtsja45 NanoScale Corporation (United States)'),
(7968, 'https://ror.org/02symh967', 'no_lang_code', 1, 'https://ror.org/02symh967 Manhattan Scientifics (United States)'),
(7969, 'https://ror.org/00xwww266', 'no_lang_code', 1, 'https://ror.org/00xwww266 Aeon Imaging (United States)'),
(7970, 'https://ror.org/03xf9c316', 'no_lang_code', 1, 'https://ror.org/03xf9c316 NanoSonic (United States)'),
(7971, 'https://ror.org/04w8tvc97', 'no_lang_code', 1, 'https://ror.org/04w8tvc97 Nanospectra Biosciences (United States)'),
(7972, 'https://ror.org/0361tej78', 'no_lang_code', 1, 'https://ror.org/0361tej78 Urigen Pharmaceuticals (United States)'),
(7973, 'https://ror.org/00jb1kj74', 'no_lang_code', 1, 'https://ror.org/00jb1kj74 Sensonics International (United States)'),
(7974, 'https://ror.org/05prpy113', 'no_lang_code', 1, 'https://ror.org/05prpy113 Nanosys (United States)'),
(7975, 'https://ror.org/04byfq980', 'no_lang_code', 1, 'https://ror.org/04byfq980 Nanotek Instruments (United States)'),
(7976, 'https://ror.org/018hk2b97', 'en', 1, 'https://ror.org/018hk2b97 Denver VA Medical Center'),
(7977, 'https://ror.org/04fc9fa94', 'no_lang_code', 1, 'https://ror.org/04fc9fa94 Sensor Electronic Technology (United States)'),
(7978, 'https://ror.org/04sw0kk79', 'en', 1, 'https://ror.org/04sw0kk79 Vancouver Aquarium'),
(7979, 'https://ror.org/01ynheb59', 'no_lang_code', 1, 'https://ror.org/01ynheb59 Sensor Electronics (United States)'),
(7980, 'https://ror.org/01k458340', 'no_lang_code', 1, 'https://ror.org/01k458340 Vancouver Biotech (Canada)'),
(7981, 'https://ror.org/02pyrw675', 'no_lang_code', 1, 'https://ror.org/02pyrw675 Sensor Research and Development Corporation (United States)'),
(7982, 'https://ror.org/04er97976', 'no_lang_code', 1, 'https://ror.org/04er97976 Nanotherapeutics (United States)'),
(7983, 'https://ror.org/047mw6m75', 'no_lang_code', 1, 'https://ror.org/047mw6m75 Aerosol Dynamics (United States)'),
(7984, 'https://ror.org/03ybc3s94', 'en', 1, 'https://ror.org/03ybc3s94 Maria Mitchell Association'),
(7985, 'https://ror.org/05cfcmn93', 'no_lang_code', 1, 'https://ror.org/05cfcmn93 AeroVironment (United States)'),
(7986, 'https://ror.org/02z36x226', 'no_lang_code', 1, 'https://ror.org/02z36x226 Vancouver Enterprise Forum'),
(7987, 'https://ror.org/02sftpz67', 'no_lang_code', 1, 'https://ror.org/02sftpz67 AFC Energy (United Kingdom)'),
(7988, 'https://ror.org/05nh3s110', 'no_lang_code', 1, 'https://ror.org/05nh3s110 Vascular Vision Pharmaceutical (United States)'),
(7989, 'https://ror.org/00n5vrh51', 'no_lang_code', 1, 'https://ror.org/00n5vrh51 Tioma Therapeutics (United States)'),
(7990, 'https://ror.org/02pdvpq69', 'no_lang_code', 1, 'https://ror.org/02pdvpq69 Affinergy (United States)'),
(7991, 'https://ror.org/02acb4z65', 'en', 1, 'https://ror.org/02acb4z65 Sequoia Foundation'),
(7992, 'https://ror.org/01wakgv04', 'no_lang_code', 1, 'https://ror.org/01wakgv04 Naprogenix (United States)'),
(7993, 'https://ror.org/02dcdb854', 'no_lang_code', 1, 'https://ror.org/02dcdb854 SeraCare Life Sciences (United States)'),
(7994, 'https://ror.org/00ktagp72', 'no_lang_code', 1, 'https://ror.org/00ktagp72 Seralogix (United States)'),
(7995, 'https://ror.org/042tmwe79', 'no_lang_code', 1, 'https://ror.org/042tmwe79 Virtual Centre of Excellence In Mobile and Personal Communications'),
(7996, 'https://ror.org/04jjp2118', 'no_lang_code', 1, 'https://ror.org/04jjp2118 Serco (United Kingdom)'),
(7997, 'https://ror.org/040g9jc92', 'en', 1, 'https://ror.org/040g9jc92 Serving Children and Adults in Need'),
(7998, 'https://ror.org/04h2yy041', 'en', 1, 'https://ror.org/04h2yy041 Sesame Workshop'),
(7999, 'https://ror.org/00qfg4234', 'no_lang_code', 1, 'https://ror.org/00qfg4234 Vcom3D (United States)'),
(8000, 'https://ror.org/0590kp014', 'en', 1, 'https://ror.org/0590kp014 African Field Epidemiology Network'),
(8001, 'https://ror.org/030h6t573', 'no_lang_code', 1, 'https://ror.org/030h6t573 DNAtrix (United States)'),
(8002, 'https://ror.org/0207yj108', 'en', 1, 'https://ror.org/0207yj108 Nashville State Community College'),
(8003, 'https://ror.org/02arg8v16', 'no_lang_code', 1, 'https://ror.org/02arg8v16 Enapter (Italy)'),
(8004, 'https://ror.org/00t6yjn93', 'en', 1, 'https://ror.org/00t6yjn93 Africare'),
(8005, 'https://ror.org/01xd1rz53', 'en', 1, 'https://ror.org/01xd1rz53 National Association of State Mental Health Program Directors'),
(8006, 'https://ror.org/04m2ehp75', 'en', 1, 'https://ror.org/04m2ehp75 Seven Counties Services'),
(8007, 'https://ror.org/025pdmt14', 'no_lang_code', 1, 'https://ror.org/025pdmt14 Severn Trent (United Kingdom)'),
(8008, 'https://ror.org/03tz9bp03', 'no_lang_code', 1, 'https://ror.org/03tz9bp03 Sharklet Technologies (United States)'),
(8009, 'https://ror.org/02pstqj22', 'en', 1, 'https://ror.org/02pstqj22 National Action Council for Minorities in Engineering'),
(8010, 'https://ror.org/050dg4y92', 'en', 1, 'https://ror.org/050dg4y92 National Alliance for Hispanic Health'),
(8011, 'https://ror.org/017pqj756', 'no_lang_code', 1, 'https://ror.org/017pqj756 Vega Wave Systems (United States)'),
(8012, 'https://ror.org/01gfdf281', 'no_lang_code', 1, 'https://ror.org/01gfdf281 Agave BioSystems (United States)'),
(8013, 'https://ror.org/0075mfb88', 'no_lang_code', 1, 'https://ror.org/0075mfb88 Sharp Laboratories of Europe (United Kingdom)'),
(8014, 'https://ror.org/0275fz765', 'en', 1, 'https://ror.org/0275fz765 National Aquarium'),
(8015, 'https://ror.org/032t9vq81', 'no_lang_code', 1, 'https://ror.org/032t9vq81 Shasta Crystals (United States)'),
(8016, 'https://ror.org/050x9d346', 'en', 1, 'https://ror.org/050x9d346 Age UK'),
(8017, 'https://ror.org/05mm5v065', 'en', 1, 'https://ror.org/05mm5v065 Sheffield City Council'),
(8018, 'https://ror.org/0315wyw46', 'en', 1, 'https://ror.org/0315wyw46 Sheldon Jackson College'),
(8019, 'https://ror.org/049kbch38', 'en', 1, 'https://ror.org/049kbch38 Cartlann NĆ”isiĆŗnta na hƉireann National Archives'),
(8020, 'https://ror.org/02s3j1d69', 'no_lang_code', 1, 'https://ror.org/02s3j1d69 VenatoRx Pharmaceuticals (United States)'),
(8021, 'https://ror.org/05pnhhe27', 'en', 1, 'https://ror.org/05pnhhe27 National Association of State Alcohol and Drug Abuse Directors'),
(8022, 'https://ror.org/01kn86d52', 'en', 1, 'https://ror.org/01kn86d52 Shelton State Community College'),
(8023, 'https://ror.org/00y93ak93', 'en', 1, 'https://ror.org/00y93ak93 Shepherd University'),
(8024, 'https://ror.org/02ts2hy13', 'en', 1, 'https://ror.org/02ts2hy13 National Association of Biology Teachers'),
(8025, 'https://ror.org/016kk8e44', 'no_lang_code', 1, 'https://ror.org/016kk8e44 Ventria Bioscience (United States)'),
(8026, 'https://ror.org/04zahys21', 'en', 1, 'https://ror.org/04zahys21 National Association of Health Data Organizations'),
(8027, 'https://ror.org/032mw2t40', 'no_lang_code', 1, 'https://ror.org/032mw2t40 Shifa Biomedical (United States)'),
(8028, 'https://ror.org/01f3h2s79', 'no_lang_code', 1, 'https://ror.org/01f3h2s79 Agennix (United States)'),
(8029, 'https://ror.org/02x6aye26', 'en', 1, 'https://ror.org/02x6aye26 National Association of State Boards of Education'),
(8030, 'https://ror.org/039bbm920', 'en', 1, 'https://ror.org/039bbm920 National Audubon Society'),
(8031, 'https://ror.org/023bmvr81', 'no_lang_code', 1, 'https://ror.org/023bmvr81 Agenta Biotechnologies (United States)'),
(8032, 'https://ror.org/05hnmtf25', 'en', 1, 'https://ror.org/05hnmtf25 Shorter University'),
(8033, 'https://ror.org/00ycg6x55', 'en', 1, 'https://ror.org/00ycg6x55 National Association for Biomedical Research'),
(8034, 'https://ror.org/01t1ct488', 'no_lang_code', 1, 'https://ror.org/01t1ct488 Verafin (Canada)'),
(8035, 'https://ror.org/03n37y445', 'no_lang_code', 1, 'https://ror.org/03n37y445 AgentSheets (United States)'),
(8036, 'https://ror.org/03nxga177', 'no_lang_code', 1, 'https://ror.org/03nxga177 Sigma Technologies (United States)'),
(8037, 'https://ror.org/01zr7w027', 'no_lang_code', 1, 'https://ror.org/01zr7w027 INFICON (United States)'),
(8038, 'https://ror.org/00e476874', 'en', 1, 'https://ror.org/00e476874 Agile Mind'),
(8039, 'https://ror.org/056pyfd10', 'no_lang_code', 1, 'https://ror.org/056pyfd10 Agile Sciences (United States)'),
(8040, 'https://ror.org/03zry8t95', 'en', 1, 'https://ror.org/03zry8t95 National Business Group on Health'),
(8041, 'https://ror.org/03dfzxf19', 'no_lang_code', 1, 'https://ror.org/03dfzxf19 Agilent Technologies (United Kingdom)'),
(8042, 'https://ror.org/02vdyxx64', 'no_lang_code', 1, 'https://ror.org/02vdyxx64 Verizon (United States)'),
(8043, 'https://ror.org/05c37ft41', 'no_lang_code', 1, 'https://ror.org/05c37ft41 Agiltron (United States)'),
(8044, 'https://ror.org/009xkka62', 'no_lang_code', 1, 'https://ror.org/009xkka62 Sema Construction (United States)'),
(8045, 'https://ror.org/01a079157', 'no_lang_code', 1, 'https://ror.org/01a079157 Siemens (Portugal)'),
(8046, 'https://ror.org/00p7hvr94', 'no_lang_code', 1, 'https://ror.org/00p7hvr94 Agriculture Environmental Renewal Canada (Canada)'),
(8047, 'https://ror.org/0259axc43', 'no_lang_code', 1, 'https://ror.org/0259axc43 SeaWell Networks (Canada)'),
(8048, 'https://ror.org/01wwwe276', 'en', 1, 'https://ror.org/01wwwe276 National Centre for Atmospheric Science'),
(8049, 'https://ror.org/05e6mjz86', 'no_lang_code', 1, 'https://ror.org/05e6mjz86 Creative Electron (United States)'),
(8050, 'https://ror.org/01b1g5g41', 'en', 1, 'https://ror.org/01b1g5g41 Greater Manchester STEM Centre'),
(8051, 'https://ror.org/02qbj0866', 'no_lang_code', 1, 'https://ror.org/02qbj0866 AiCure (United States)'),
(8052, 'https://ror.org/05pp7s587', 'en', 1, 'https://ror.org/05pp7s587 Vermont Agency of Human Services'),
(8053, 'https://ror.org/03hsk1q51', 'en', 1, 'https://ror.org/03hsk1q51 National Coalition of STD Directors'),
(8054, 'https://ror.org/01nzxq896', 'en', 1, 'https://ror.org/01nzxq896 VA North Texas Health Care System'),
(8055, 'https://ror.org/02b2x6q12', 'en', 1, 'https://ror.org/02b2x6q12 AID Atlanta'),
(8056, 'https://ror.org/03r0xxt78', 'en', 1, 'https://ror.org/03r0xxt78 AIDS Committee of Toronto'),
(8057, 'https://ror.org/05rvwbr49', 'en', 1, 'https://ror.org/05rvwbr49 APLA Health'),
(8058, 'https://ror.org/03rt40634', 'en', 1, 'https://ror.org/03rt40634 AIDS Service Center of New York City'),
(8059, 'https://ror.org/00sqdq844', 'en', 1, 'https://ror.org/00sqdq844 National Committee for Quality Assurance'),
(8060, 'https://ror.org/03g4bqt50', 'no_lang_code', 1, 'https://ror.org/03g4bqt50 Sigmovir Biosystems (United States)'),
(8061, 'https://ror.org/00fby7m68', 'no_lang_code', 1, 'https://ror.org/00fby7m68 Air Canada'),
(8062, 'https://ror.org/03gmf8x48', 'en', 1, 'https://ror.org/03gmf8x48 National Conference of State Legislatures'),
(8063, 'https://ror.org/0004bx792', 'no_lang_code', 1, 'https://ror.org/0004bx792 SignalChem (Canada)'),
(8064, 'https://ror.org/02npvem89', 'en', 1, 'https://ror.org/02npvem89 Air & Waste Management Association'),
(8065, 'https://ror.org/01heabd70', 'no_lang_code', 1, 'https://ror.org/01heabd70 Signum Biosciences (United States)'),
(8066, 'https://ror.org/01p7aam65', 'no_lang_code', 1, 'https://ror.org/01p7aam65 FuelCell Energy (Canada)'),
(8067, 'https://ror.org/0132fct87', 'no_lang_code', 1, 'https://ror.org/0132fct87 Air Products (United Kingdom)'),
(8068, 'https://ror.org/053ehy143', 'no_lang_code', 1, 'https://ror.org/053ehy143 Airak (United States)'),
(8069, 'https://ror.org/02dphst03', 'en', 1, 'https://ror.org/02dphst03 National Council for Science and the Environment'),
(8070, 'https://ror.org/05p81fj60', 'no_lang_code', 1, 'https://ror.org/05p81fj60 Aixtron (United Kingdom)'),
(8071, 'https://ror.org/004wdnc96', 'no_lang_code', 1, 'https://ror.org/004wdnc96 Siloam Biosciences (United States)'),
(8072, 'https://ror.org/053nef216', 'no_lang_code', 1, 'https://ror.org/053nef216 Vescent Photonics (United States)'),
(8073, 'https://ror.org/017spz608', 'no_lang_code', 1, 'https://ror.org/017spz608 Aker Arctic (Canada)'),
(8074, 'https://ror.org/02q76t874', 'no_lang_code', 1, 'https://ror.org/02q76t874 Akina (United States)'),
(8075, 'https://ror.org/05p0pmx78', 'no_lang_code', 1, 'https://ror.org/05p0pmx78 Akonni Biosystems (United States)'),
(8076, 'https://ror.org/01m11yv70', 'no_lang_code', 1, 'https://ror.org/01m11yv70 Aktiv-Dry (United States)'),
(8077, 'https://ror.org/003pdcw24', 'no_lang_code', 1, 'https://ror.org/003pdcw24 Vestas (Denmark)'),
(8078, 'https://ror.org/015n0my11', 'en', 1, 'https://ror.org/015n0my11 Alabama Southern Community College'),
(8079, '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'),
(8080, 'https://ror.org/03qwfxy81', 'en', 1, 'https://ror.org/03qwfxy81 National Disease Research Interchange');
INSERT INTO `rors` VALUES
(8081, 'https://ror.org/0100w6230', 'no_lang_code', 1, 'https://ror.org/0100w6230 Alacron (United States)'),
(8082, 'https://ror.org/04myhcv14', 'en', 1, 'https://ror.org/04myhcv14 National Egg Regulatory Officials'),
(8083, 'https://ror.org/02tn1ck84', 'en', 1, 'https://ror.org/02tn1ck84 National Eisteddfod of Wales'),
(8084, 'https://ror.org/03tvzhc42', 'no_lang_code', 1, 'https://ror.org/03tvzhc42 Vesticon (United States)'),
(8085, 'https://ror.org/01jm0aq25', 'en', 1, 'https://ror.org/01jm0aq25 Alaska Federation of Natives'),
(8086, 'https://ror.org/04dmca004', 'no_lang_code', 1, 'https://ror.org/04dmca004 Vesuvius (United Kingdom)'),
(8087, 'https://ror.org/00eksk721', 'en', 1, 'https://ror.org/00eksk721 National Environmental Health Association'),
(8088, 'https://ror.org/0342mgc93', 'en', 1, 'https://ror.org/0342mgc93 Alaska Department of Environmental Conservation'),
(8089, 'https://ror.org/03y76pe29', 'no_lang_code', 1, 'https://ror.org/03y76pe29 Albany Molecular Research (United States)'),
(8090, 'https://ror.org/00w230w05', 'no_lang_code', 1, 'https://ror.org/00w230w05 Vical (United States)'),
(8091, 'https://ror.org/01pxap840', 'en', 1, 'https://ror.org/01pxap840 Royal Armouries'),
(8092, 'https://ror.org/05ez4gg94', 'en', 1, 'https://ror.org/05ez4gg94 Alberta Centre for Advanced MNT Products (Canada)'),
(8093, 'https://ror.org/034hh2e11', 'en', 1, 'https://ror.org/034hh2e11 Amgueddfa Victoria ac Albert Victoria and Albert Museum'),
(8094, 'https://ror.org/020xab067', 'en', 1, 'https://ror.org/020xab067 Alberta Community Council on HIV'),
(8095, 'https://ror.org/05pm5jp51', 'no_lang_code', 1, 'https://ror.org/05pm5jp51 SIMmersion (United States)'),
(8096, 'https://ror.org/027923343', 'en', 1, 'https://ror.org/027923343 Victorian Order of Nurses'),
(8097, 'https://ror.org/04bqh5m06', 'en', 1, 'https://ror.org/04bqh5m06 National Geographic Society'),
(8098, 'https://ror.org/034pcpg38', 'en', 1, 'https://ror.org/034pcpg38 Bard College at Simon''s Rock'),
(8099, 'https://ror.org/04rj6an25', 'en', 1, 'https://ror.org/04rj6an25 Alberta Science Network'),
(8100, 'https://ror.org/01twtwf23', 'no_lang_code', 1, 'https://ror.org/01twtwf23 Alberti''s Window (United States)'),
(8101, 'https://ror.org/01pxz1r61', 'no_lang_code', 1, 'https://ror.org/01pxz1r61 Simonsen Laboratories'),
(8102, 'https://ror.org/05pzb3403', 'en', 1, 'https://ror.org/05pzb3403 National Governors Association'),
(8103, 'https://ror.org/030pv4h84', 'en', 1, 'https://ror.org/030pv4h84 Albertus Magnus College'),
(8104, 'https://ror.org/00nbsvd35', 'no_lang_code', 1, 'https://ror.org/00nbsvd35 Vida Health Communications (United States)'),
(8105, 'https://ror.org/01mw31v11', 'no_lang_code', 1, 'https://ror.org/01mw31v11 Simpleware (United Kingdom)'),
(8106, 'https://ror.org/00rt47041', 'no_lang_code', 1, 'https://ror.org/00rt47041 Vidasym (United States)'),
(8107, 'https://ror.org/04r9y8d38', 'no_lang_code', 1, 'https://ror.org/04r9y8d38 Wellstat (United States)'),
(8108, 'https://ror.org/01rm4gj66', 'no_lang_code', 1, 'https://ror.org/01rm4gj66 SimQuest (United States)'),
(8109, 'https://ror.org/01fz8x241', 'en', 1, 'https://ror.org/01fz8x241 National Hemophilia Foundation'),
(8110, 'https://ror.org/058etpm79', 'no_lang_code', 1, 'https://ror.org/058etpm79 Sion Power (United States)'),
(8111, 'https://ror.org/05yjan319', 'no_lang_code', 1, 'https://ror.org/05yjan319 Simulent (Canada)'),
(8112, 'https://ror.org/02yw59f42', 'en', 1, 'https://ror.org/02yw59f42 Central New Mexico Community College'),
(8113, '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'),
(8114, 'https://ror.org/04na12j70', 'no_lang_code', 1, 'https://ror.org/04na12j70 Alchem Laboratories (United States)'),
(8115, 'https://ror.org/02jr44c14', 'no_lang_code', 1, 'https://ror.org/02jr44c14 Sinmat (United States)'),
(8116, 'https://ror.org/03s0w0d38', 'no_lang_code', 1, 'https://ror.org/03s0w0d38 VideoMining (United States)'),
(8117, 'https://ror.org/024a9q404', 'no_lang_code', 1, 'https://ror.org/024a9q404 ALD NanoSolutions (United States)'),
(8118, 'https://ror.org/01ef4m131', 'no_lang_code', 1, 'https://ror.org/01ef4m131 Sirnaomics (United States)'),
(8119, 'https://ror.org/03hxefz97', 'no_lang_code', 1, 'https://ror.org/03hxefz97 ViewPlus (United States)'),
(8120, 'https://ror.org/023mkm794', 'en', 1, 'https://ror.org/023mkm794 Sisseton Wahpeton College'),
(8121, 'https://ror.org/027h69z40', 'no_lang_code', 1, 'https://ror.org/027h69z40 AlertMe (United Kingdom)'),
(8122, 'https://ror.org/034jwm186', 'en', 1, 'https://ror.org/034jwm186 Aletheia House'),
(8123, 'https://ror.org/051y01w95', 'no_lang_code', 1, 'https://ror.org/051y01w95 Site Vision Surveys (United Kingdom)'),
(8124, 'https://ror.org/0068vzv72', 'no_lang_code', 1, 'https://ror.org/0068vzv72 National Instruments (United Kingdom)'),
(8125, 'https://ror.org/05qgtg165', 'en', 1, 'https://ror.org/05qgtg165 Sitting Bull College'),
(8126, 'https://ror.org/04yyrj242', 'no_lang_code', 1, 'https://ror.org/04yyrj242 Monsanto (United Kingdom)'),
(8127, 'https://ror.org/01dm0m970', 'no_lang_code', 1, 'https://ror.org/01dm0m970 Alethia Biotherapeutics (Canada)'),
(8128, 'https://ror.org/01f3njc68', 'en', 1, 'https://ror.org/01f3njc68 National Maritime Museum'),
(8129, 'https://ror.org/031ywxc85', 'no_lang_code', 1, 'https://ror.org/031ywxc85 Alexion Pharmaceuticals (United States)'),
(8130, 'https://ror.org/01327qs39', 'en', 1, 'https://ror.org/01327qs39 WestCare Foundation'),
(8131, 'https://ror.org/003ck6433', 'en', 1, 'https://ror.org/003ck6433 National Microelectronics Institute'),
(8132, 'https://ror.org/00jh0pg84', 'en', 1, 'https://ror.org/00jh0pg84 Algebra Project'),
(8133, 'https://ror.org/010ehmn03', 'no_lang_code', 1, 'https://ror.org/010ehmn03 Viocare (United States)'),
(8134, 'https://ror.org/03jgjt094', 'en', 1, 'https://ror.org/03jgjt094 Algonquin College CollĆØge Algonquin'),
(8135, 'https://ror.org/05a15fa50', 'en', 1, 'https://ror.org/05a15fa50 National Museum Wales'),
(8136, 'https://ror.org/01em4t310', 'no_lang_code', 1, 'https://ror.org/01em4t310 Analogue Theatre (United Kingdom)'),
(8137, 'https://ror.org/05vqfs419', 'en', 1, 'https://ror.org/05vqfs419 National Museums Liverpool'),
(8138, 'https://ror.org/02pn0tx11', 'en', 1, 'https://ror.org/02pn0tx11 Aliviane'),
(8139, 'https://ror.org/036dfq243', 'no_lang_code', 1, 'https://ror.org/036dfq243 Vion Pharmaceuticals (United States)'),
(8140, 'https://ror.org/03pp86w19', 'en', 1, 'https://ror.org/03pp86w19 Beatson West of Scotland Cancer Centre'),
(8141, 'https://ror.org/038hqfn26', 'no_lang_code', 1, 'https://ror.org/038hqfn26 Alkermes (United States)'),
(8142, 'https://ror.org/02tj9h434', 'en', 1, 'https://ror.org/02tj9h434 Allegany College of Maryland'),
(8143, 'https://ror.org/038c39g95', 'en', 1, 'https://ror.org/038c39g95 Allegheny Valley Hospital'),
(8144, 'https://ror.org/00t0n1q40', 'en', 1, 'https://ror.org/00t0n1q40 National Network of Public Health Institutes'),
(8145, 'https://ror.org/04254kj61', 'en', 1, 'https://ror.org/04254kj61 Social Science Education Consortium'),
(8146, 'https://ror.org/05qagj590', 'no_lang_code', 1, 'https://ror.org/05qagj590 Allele Biotechnology (United States)'),
(8147, 'https://ror.org/02whkqx98', 'no_lang_code', 1, 'https://ror.org/02whkqx98 Social Solutions International (United States)'),
(8148, 'https://ror.org/02882ey95', 'en', 1, 'https://ror.org/02882ey95 Society for Academic Emergency Medicine'),
(8149, 'https://ror.org/01gkkh788', 'no_lang_code', 1, 'https://ror.org/01gkkh788 National One Call (United Kingdom)'),
(8150, 'https://ror.org/00mamdf13', 'en', 1, 'https://ror.org/00mamdf13 Society for Advancement of Chicanos and Native Americans in Science'),
(8151, 'https://ror.org/05h3c9j32', 'no_lang_code', 1, 'https://ror.org/05h3c9j32 Allied Innovative Systems (United States)'),
(8152, 'https://ror.org/011e44004', 'en', 1, 'https://ror.org/011e44004 American Planning Association'),
(8153, 'https://ror.org/00by7mn52', 'no_lang_code', 1, 'https://ror.org/00by7mn52 Allocadia (Canada)'),
(8154, 'https://ror.org/0373e3z25', 'en', 1, 'https://ror.org/0373e3z25 Virginia Museum of Natural History'),
(8155, 'https://ror.org/01tbe3k42', 'no_lang_code', 1, 'https://ror.org/01tbe3k42 Alpha Genesis (United States)'),
(8156, 'https://ror.org/059xgqj73', 'en', 1, 'https://ror.org/059xgqj73 Society for Prevention Research'),
(8157, 'https://ror.org/03hqq4p77', 'en', 1, 'https://ror.org/03hqq4p77 Society for Public Health Education'),
(8158, 'https://ror.org/00s5kep86', 'en', 1, 'https://ror.org/00s5kep86 Society for Risk Analysis'),
(8159, 'https://ror.org/02c3hd322', 'en', 1, 'https://ror.org/02c3hd322 National Public Radio'),
(8160, 'https://ror.org/02d4g5x37', 'no_lang_code', 1, 'https://ror.org/02d4g5x37 Virginia Technologies (United States)'),
(8161, 'https://ror.org/0006jev58', 'no_lang_code', 1, 'https://ror.org/0006jev58 Alpha Technologies (Canada)'),
(8162, 'https://ror.org/00jse8x38', 'en', 1, 'https://ror.org/00jse8x38 National Quality Forum'),
(8163, 'https://ror.org/03bbd8g15', 'en', 1, 'https://ror.org/03bbd8g15 Society of General Internal Medicine'),
(8164, 'https://ror.org/029yxsv15', 'en', 1, 'https://ror.org/029yxsv15 Society of General Physiologists'),
(8165, 'https://ror.org/035djg835', 'no_lang_code', 1, 'https://ror.org/035djg835 National Recovery Technologies (United States)'),
(8166, 'https://ror.org/05mk8am30', 'en', 1, 'https://ror.org/05mk8am30 National Safety Council'),
(8167, 'https://ror.org/04fqrjs59', 'en', 1, 'https://ror.org/04fqrjs59 Society of Hispanic Professional Engineers Foundation'),
(8168, 'https://ror.org/03btasp49', 'en', 1, 'https://ror.org/03btasp49 National Space Centre'),
(8169, 'https://ror.org/00ppq4k21', 'en', 1, 'https://ror.org/00ppq4k21 Society of Toxicology'),
(8170, 'https://ror.org/05bfmm624', 'no_lang_code', 1, 'https://ror.org/05bfmm624 AlphaVax (United States)'),
(8171, 'https://ror.org/03gw72402', 'no_lang_code', 1, 'https://ror.org/03gw72402 Socratech (United States)'),
(8172, 'https://ror.org/04taw4g76', 'no_lang_code', 1, 'https://ror.org/04taw4g76 Sofina Foods (Canada)'),
(8173, 'https://ror.org/01p92hb48', 'en', 1, 'https://ror.org/01p92hb48 National Technical Information Service'),
(8174, 'https://ror.org/05rebpx60', 'no_lang_code', 1, 'https://ror.org/05rebpx60 National Underground Assets Group'),
(8175, 'https://ror.org/05spgfz39', 'no_lang_code', 1, 'https://ror.org/05spgfz39 Soligenix (United States)'),
(8176, 'https://ror.org/00096h502', 'en', 1, 'https://ror.org/00096h502 Native American Cancer Research'),
(8177, 'https://ror.org/04y4dgs58', 'no_lang_code', 1, 'https://ror.org/04y4dgs58 Sitar (United States)'),
(8178, 'https://ror.org/038xkzz47', 'no_lang_code', 1, 'https://ror.org/038xkzz47 Viro Dynamics (United States)'),
(8179, 'https://ror.org/01dwzs847', 'no_lang_code', 1, 'https://ror.org/01dwzs847 Cell Gate (United States)'),
(8180, 'https://ror.org/010k65h15', 'en', 1, 'https://ror.org/010k65h15 Society for Canadian Women in Science and Technology'),
(8181, 'https://ror.org/05sa8gf57', 'en', 1, 'https://ror.org/05sa8gf57 Native American Health Center'),
(8182, 'https://ror.org/03cegwq60', 'en', 1, 'https://ror.org/03cegwq60 McMaster Children''s Hospital'),
(8183, 'https://ror.org/05vj78j16', 'en', 1, 'https://ror.org/05vj78j16 Society of American Foresters'),
(8184, 'https://ror.org/04dq0c560', 'no_lang_code', 1, 'https://ror.org/04dq0c560 IMPCO Technologies (Canada)'),
(8185, 'https://ror.org/054wd3532', 'en', 1, 'https://ror.org/054wd3532 Native American Rehabilitation Association'),
(8186, 'https://ror.org/022194d90', 'no_lang_code', 1, 'https://ror.org/022194d90 Ajinomoto Althea (United States)'),
(8187, 'https://ror.org/01a8ynn13', 'en', 1, 'https://ror.org/01a8ynn13 The Langton Grammar School for Boys'),
(8188, 'https://ror.org/03dnydg98', 'no_lang_code', 1, 'https://ror.org/03dnydg98 VirRx (United States)'),
(8189, 'https://ror.org/023dbpz69', 'en', 1, 'https://ror.org/023dbpz69 National Association for Public Health Statistics and Information Systems'),
(8190, 'https://ror.org/00tjkp068', 'no_lang_code', 1, 'https://ror.org/00tjkp068 SimBiotic Software (United States)'),
(8191, 'https://ror.org/03w40n140', 'no_lang_code', 1, 'https://ror.org/03w40n140 Simbex (United States)'),
(8192, 'https://ror.org/01t05fr30', 'en', 1, 'https://ror.org/01t05fr30 National Conference on Interstate Milk Shipments'),
(8193, 'https://ror.org/00hq8sy61', 'en', 1, 'https://ror.org/00hq8sy61 National Institute for Children’s Health Quality'),
(8194, 'https://ror.org/00mktab21', 'no_lang_code', 1, 'https://ror.org/00mktab21 Virtalis (United Kingdom)'),
(8195, 'https://ror.org/01mkye871', 'en', 1, 'https://ror.org/01mkye871 UPMC Altoona'),
(8196, 'https://ror.org/03p81a485', 'no_lang_code', 1, 'https://ror.org/03p81a485 Altor BioScience (United States)'),
(8197, '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'),
(8198, 'https://ror.org/041np7397', 'no_lang_code', 1, 'https://ror.org/041np7397 SolPowered Energy Corporation (Canada)'),
(8199, 'https://ror.org/03jth0z95', 'no_lang_code', 1, 'https://ror.org/03jth0z95 Natural Pharmacia International (United States)'),
(8200, 'https://ror.org/024es8b17', 'no_lang_code', 1, 'https://ror.org/024es8b17 Natural Selection (United States)'),
(8201, 'https://ror.org/03mnq7x91', 'no_lang_code', 1, 'https://ror.org/03mnq7x91 Lundin Mining (Portugal)'),
(8202, 'https://ror.org/00a75q479', 'no_lang_code', 1, 'https://ror.org/00a75q479 Nature Technology Corporation (United States)'),
(8203, 'https://ror.org/0039ss191', 'no_lang_code', 1, 'https://ror.org/0039ss191 Altravax (United States)'),
(8204, 'https://ror.org/01rmpb303', 'no_lang_code', 1, 'https://ror.org/01rmpb303 Nautilus Biosciences (Canada)'),
(8205, 'https://ror.org/004aekm03', 'en', 1, 'https://ror.org/004aekm03 South Carolina HIV/AIDS Council'),
(8206, 'https://ror.org/03cd6bd87', 'en', 1, 'https://ror.org/03cd6bd87 South Carolina Research Authority'),
(8207, 'https://ror.org/0375f4d26', 'en', 1, 'https://ror.org/0375f4d26 Alzheimer''s Association'),
(8208, 'https://ror.org/02m5vdb88', 'en', 1, 'https://ror.org/02m5vdb88 Navajo Nation Division of Health'),
(8209, 'https://ror.org/01y639h39', 'no_lang_code', 1, 'https://ror.org/01y639h39 Raptamer Discovery Group (United States)'),
(8210, 'https://ror.org/00k59n723', 'en', 1, 'https://ror.org/00k59n723 South Dakota Academy of Science'),
(8211, 'https://ror.org/00n79r507', 'no_lang_code', 1, 'https://ror.org/00n79r507 Ambulatory Monitoring (United States)'),
(8212, 'https://ror.org/02aawcy27', 'no_lang_code', 1, 'https://ror.org/02aawcy27 Navigen (United States)'),
(8213, 'https://ror.org/05q4hby07', 'no_lang_code', 1, 'https://ror.org/05q4hby07 SINTX Technologies (United States)'),
(8214, 'https://ror.org/05f4e7p75', 'no_lang_code', 1, 'https://ror.org/05f4e7p75 Visual Health Solutions (United States)'),
(8215, 'https://ror.org/04e7jg064', 'no_lang_code', 1, 'https://ror.org/04e7jg064 Pennon Group (United Kingdom)'),
(8216, 'https://ror.org/028a3y923', 'no_lang_code', 1, 'https://ror.org/028a3y923 VisionQuest Biomedical (United States)'),
(8217, 'https://ror.org/0239skj46', 'en', 1, 'https://ror.org/0239skj46 Southeast Alaska Regional Health Consortium'),
(8218, 'https://ror.org/01b9fyy36', 'en', 1, 'https://ror.org/01b9fyy36 Visions of Science Network for Learning'),
(8219, 'https://ror.org/00n158h85', 'en', 1, 'https://ror.org/00n158h85 American Aging Association'),
(8220, 'https://ror.org/004gw9825', 'en', 1, 'https://ror.org/004gw9825 Southeast Community College'),
(8221, 'https://ror.org/00rqtg495', 'en', 1, 'https://ror.org/00rqtg495 American Association for Dental Research'),
(8222, 'https://ror.org/02bpm1n29', 'no_lang_code', 1, 'https://ror.org/02bpm1n29 Southeast TechInventures (United States)'),
(8223, 'https://ror.org/005tjs461', 'en', 1, 'https://ror.org/005tjs461 American Association for the Study of Liver Diseases'),
(8224, 'https://ror.org/036bpjh12', 'en', 1, 'https://ror.org/036bpjh12 American Association of Blood Banks'),
(8225, 'https://ror.org/05qg5f850', 'en', 1, 'https://ror.org/05qg5f850 American Association of Community Colleges'),
(8226, 'https://ror.org/05hfrht78', 'no_lang_code', 1, 'https://ror.org/05hfrht78 Vista Engineering (United States)'),
(8227, 'https://ror.org/05cj88g33', 'en', 1, 'https://ror.org/05cj88g33 American Association of Engineering Societies'),
(8228, 'https://ror.org/04zqrtt67', 'en', 1, 'https://ror.org/04zqrtt67 National Co-ordinating Centre for Public Engagement'),
(8229, 'https://ror.org/00pke8311', 'en', 1, 'https://ror.org/00pke8311 Southern Arizona AIDS Foundation'),
(8230, 'https://ror.org/01pj98103', 'no_lang_code', 1, 'https://ror.org/01pj98103 Vista Photonics (United States)'),
(8231, 'https://ror.org/015jknj09', 'en', 1, 'https://ror.org/015jknj09 American Association of Physicists in Medicine'),
(8232, 'https://ror.org/032hhgs28', 'no_lang_code', 1, 'https://ror.org/032hhgs28 Caldic (Canada)'),
(8233, 'https://ror.org/02r5hv713', 'no_lang_code', 1, 'https://ror.org/02r5hv713 Vista Scientific (United States)'),
(8234, 'https://ror.org/02bf6t552', 'en', 1, 'https://ror.org/02bf6t552 American College of Chest Physicians'),
(8235, 'https://ror.org/02h3se683', 'en', 1, 'https://ror.org/02h3se683 American College of Medical Genetics'),
(8236, 'https://ror.org/01nq1wn92', 'no_lang_code', 1, 'https://ror.org/01nq1wn92 VitaCyte (United States)'),
(8237, 'https://ror.org/00rrzkj76', 'no_lang_code', 1, 'https://ror.org/00rrzkj76 Sorbent Technologies (United States)'),
(8238, 'https://ror.org/04tmqcr52', 'no_lang_code', 1, 'https://ror.org/04tmqcr52 Viva Pharmaceutical (Canada)'),
(8239, 'https://ror.org/05pzvw552', 'en', 1, 'https://ror.org/05pzvw552 SoundVision Productions'),
(8240, 'https://ror.org/04phskp39', 'en', 1, 'https://ror.org/04phskp39 American Council of Learned Societies'),
(8241, 'https://ror.org/00hyyhz65', 'no_lang_code', 1, 'https://ror.org/00hyyhz65 Source Signal Imaging'),
(8242, 'https://ror.org/03d4tjj21', 'no_lang_code', 1, 'https://ror.org/03d4tjj21 Vivo Biosciences (United States)'),
(8243, 'https://ror.org/05pqvh594', 'no_lang_code', 1, 'https://ror.org/05pqvh594 NEI Corporation (United States)'),
(8244, 'https://ror.org/00pmt4r91', 'en', 1, 'https://ror.org/00pmt4r91 American Educational Research Association'),
(8245, 'https://ror.org/012fe8h22', 'en', 1, 'https://ror.org/012fe8h22 Neighborhood House'),
(8246, 'https://ror.org/05rckx884', 'no_lang_code', 1, 'https://ror.org/05rckx884 American Express (United States)'),
(8247, 'https://ror.org/0276e1563', 'en', 1, 'https://ror.org/0276e1563 South Dakota Department of Social Services'),
(8248, 'https://ror.org/03exvmb50', 'no_lang_code', 1, 'https://ror.org/03exvmb50 Neocera (United States)'),
(8249, 'https://ror.org/052crws06', 'en', 1, 'https://ror.org/052crws06 Vocational Instruction Project Community Services'),
(8250, 'https://ror.org/03be17v50', 'en', 1, 'https://ror.org/03be17v50 Southern California Alcohol and Drug Programs'),
(8251, 'https://ror.org/0431mgz06', 'en', 1, 'https://ror.org/0431mgz06 Southern California Institute for Research and Education'),
(8252, 'https://ror.org/001040h60', 'en', 1, 'https://ror.org/001040h60 American Indian Center'),
(8253, 'https://ror.org/0272c7580', 'no_lang_code', 1, 'https://ror.org/0272c7580 NeoClone (United States)'),
(8254, 'https://ror.org/019bpax96', 'en', 1, 'https://ror.org/019bpax96 Southern Governors Association'),
(8255, 'https://ror.org/036svm011', 'en', 1, 'https://ror.org/036svm011 Southern Nevada Health District'),
(8256, 'https://ror.org/002298757', 'no_lang_code', 1, 'https://ror.org/002298757 Allozyne (United States)'),
(8257, 'https://ror.org/03ptehc98', 'en', 1, 'https://ror.org/03ptehc98 Southern Regional Area Health Education Centers'),
(8258, 'https://ror.org/01hwxey28', 'en', 1, 'https://ror.org/01hwxey28 Volunteers of America Los Angeles'),
(8259, 'https://ror.org/02996zz79', 'en', 1, 'https://ror.org/02996zz79 Voorhees College'),
(8260, 'https://ror.org/03w5zay18', 'no_lang_code', 1, 'https://ror.org/03w5zay18 Vortant Technologies (United States)'),
(8261, 'https://ror.org/0428qnk54', 'no_lang_code', 1, 'https://ror.org/0428qnk54 W. L. Gore & Associates (United States)'),
(8262, 'https://ror.org/042dhbd43', 'en', 1, 'https://ror.org/042dhbd43 Southwestern College - California'),
(8263, 'https://ror.org/03v4j1n69', 'no_lang_code', 1, 'https://ror.org/03v4j1n69 WRc (United Kingdom)'),
(8264, 'https://ror.org/032b4kq73', 'no_lang_code', 1, 'https://ror.org/032b4kq73 SoyMeds (United States)'),
(8265, 'https://ror.org/00j1e7h38', 'en', 1, 'https://ror.org/00j1e7h38 W. Alton Jones Cell Science Center'),
(8266, 'https://ror.org/02yqf2n67', 'en', 1, 'https://ror.org/02yqf2n67 American Indian Higher Education Consortium'),
(8267, 'https://ror.org/01cegnf65', 'en', 1, 'https://ror.org/01cegnf65 American Indian Science and Engineering Society'),
(8268, 'https://ror.org/04cxn3n47', 'en', 1, 'https://ror.org/04cxn3n47 American Institute of Architects'),
(8269, 'https://ror.org/04d7p4z08', 'no_lang_code', 1, 'https://ror.org/04d7p4z08 Odyssey Trust'),
(8270, 'https://ror.org/01p4ajf23', 'no_lang_code', 1, 'https://ror.org/01p4ajf23 ANDE (United States)'),
(8271, 'https://ror.org/01ygdkx97', 'no_lang_code', 1, 'https://ror.org/01ygdkx97 American Life Science Pharmaceuticals (United States)'),
(8272, 'https://ror.org/01ask7p77', 'no_lang_code', 1, 'https://ror.org/01ask7p77 Sparos (Portugal)'),
(8273, 'https://ror.org/037bj9005', 'no_lang_code', 1, 'https://ror.org/037bj9005 Global Convergence (United States)'),
(8274, 'https://ror.org/01p3rh655', 'en', 1, 'https://ror.org/01p3rh655 American Lung Association'),
(8275, 'https://ror.org/03bvq6y88', 'en', 1, 'https://ror.org/03bvq6y88 Wagner College'),
(8276, 'https://ror.org/05mhde728', 'no_lang_code', 1, 'https://ror.org/05mhde728 John Lewis Partnership (United Kingdom)'),
(8277, 'https://ror.org/03c69q147', 'en', 1, 'https://ror.org/03c69q147 Wake Technical Community College'),
(8278, 'https://ror.org/01ez8ve21', 'en', 1, 'https://ror.org/01ez8ve21 Special Health Resources for Texas'),
(8279, 'https://ror.org/04cxbp585', 'en', 1, 'https://ror.org/04cxbp585 Special Service for Groups'),
(8280, 'https://ror.org/0514swh36', 'en', 1, 'https://ror.org/0514swh36 HealthRIGHT 360'),
(8281, 'https://ror.org/03zpeyw73', 'en', 1, 'https://ror.org/03zpeyw73 The Society for Post-Acute and Long-Term Care Medicine'),
(8282, 'https://ror.org/05cx8ry19', 'no_lang_code', 1, 'https://ror.org/05cx8ry19 Neural Signals (United States)'),
(8283, 'https://ror.org/02bt45m31', 'en', 1, 'https://ror.org/02bt45m31 American Medical Informatics Association'),
(8284, 'https://ror.org/002573656', 'no_lang_code', 1, 'https://ror.org/002573656 NeurAxon (Canada)'),
(8285, 'https://ror.org/03wbjv906', 'en', 1, 'https://ror.org/03wbjv906 Southwest Tennessee Community College'),
(8286, 'https://ror.org/008ghcb80', 'en', 1, 'https://ror.org/008ghcb80 American Nurses Association'),
(8287, 'https://ror.org/049c4fz76', 'no_lang_code', 1, 'https://ror.org/049c4fz76 Spectrasonics (United States)'),
(8288, 'https://ror.org/03535yg39', 'en', 1, 'https://ror.org/03535yg39 American Occupational Therapy Association'),
(8289, 'https://ror.org/03ahxgm89', 'no_lang_code', 1, 'https://ror.org/03ahxgm89 Sommer Materials Research (United States)'),
(8290, 'https://ror.org/04n7k1343', 'en', 1, 'https://ror.org/04n7k1343 American Pain Society'),
(8291, 'https://ror.org/006gebr77', 'no_lang_code', 1, 'https://ror.org/006gebr77 Toxikon (United States)'),
(8292, 'https://ror.org/0141vav06', 'en', 1, 'https://ror.org/0141vav06 WAMC Northeast Public Radio'),
(8293, 'https://ror.org/02exxw634', 'en', 1, 'https://ror.org/02exxw634 Wartburg College'),
(8294, 'https://ror.org/002cajb45', 'no_lang_code', 1, 'https://ror.org/002cajb45 Carterra (United States)'),
(8295, 'https://ror.org/05vfrxy92', 'en', 1, 'https://ror.org/05vfrxy92 American Rock Mechanics Association'),
(8296, 'https://ror.org/019y5r485', 'no_lang_code', 1, 'https://ror.org/019y5r485 Nesher Technologies (United States)'),
(8297, 'https://ror.org/04z7ybt59', 'no_lang_code', 1, 'https://ror.org/04z7ybt59 Spectros Corporation (United States)'),
(8298, 'https://ror.org/04ywgwn19', 'no_lang_code', 1, 'https://ror.org/04ywgwn19 Neurobehavioral Research (United States)'),
(8299, 'https://ror.org/03vtp2091', 'no_lang_code', 1, 'https://ror.org/03vtp2091 NeuroBioTex (United States)'),
(8300, 'https://ror.org/02h1dyg62', 'no_lang_code', 1, 'https://ror.org/02h1dyg62 Spencer Technologies (United States)'),
(8301, 'https://ror.org/00r2h0609', 'en', 1, 'https://ror.org/00r2h0609 Washington County Youth Service Bureau'),
(8302, 'https://ror.org/04h1pxn55', 'no_lang_code', 1, 'https://ror.org/04h1pxn55 TRUMPF (United Kingdom)'),
(8303, 'https://ror.org/043fzsj95', 'en', 1, 'https://ror.org/043fzsj95 Spring Hill College'),
(8304, 'https://ror.org/03r5ecg75', 'no_lang_code', 1, 'https://ror.org/03r5ecg75 Noble Life Sciences (United States)'),
(8305, 'https://ror.org/0088p5f80', 'no_lang_code', 1, 'https://ror.org/0088p5f80 NeuroDx Development (United States)'),
(8306, 'https://ror.org/04kc77756', 'en', 1, 'https://ror.org/04kc77756 St Louis Community College'),
(8307, 'https://ror.org/03e17k064', 'en', 1, 'https://ror.org/03e17k064 Saint Louis Science Center'),
(8308, 'https://ror.org/04e9z4a61', 'no_lang_code', 1, 'https://ror.org/04e9z4a61 Zynex (United States)'),
(8309, 'https://ror.org/01y2d1w05', 'en', 1, 'https://ror.org/01y2d1w05 St. Mary''s College of Maryland'),
(8310, 'https://ror.org/02ythcz79', 'en', 1, 'https://ror.org/02ythcz79 American Society for Cybernetics'),
(8311, 'https://ror.org/043ccws83', 'en', 1, 'https://ror.org/043ccws83 American Society for Neurochemistry'),
(8312, 'https://ror.org/00xhxz289', 'en', 1, 'https://ror.org/00xhxz289 American Society for Pharmacology and Experimental Therapeutics'),
(8313, 'https://ror.org/00nb5xj61', 'en', 1, 'https://ror.org/00nb5xj61 St. Andrews University'),
(8314, 'https://ror.org/04ag73z67', 'no_lang_code', 1, 'https://ror.org/04ag73z67 Waterloo CFD Engineering Consulting'),
(8315, 'https://ror.org/03qj07681', 'no_lang_code', 1, 'https://ror.org/03qj07681 Epirus Biopharmaceuticals (United States)'),
(8316, 'https://ror.org/048wd7x80', 'no_lang_code', 1, 'https://ror.org/048wd7x80 Waters (United Kingdom)'),
(8317, 'https://ror.org/050n5zj41', 'no_lang_code', 1, 'https://ror.org/050n5zj41 NeuroNexus (United States)'),
(8318, 'https://ror.org/0480rm766', 'no_lang_code', 1, 'https://ror.org/0480rm766 NeurOp (United States)'),
(8319, 'https://ror.org/03k3qs503', 'en', 1, 'https://ror.org/03k3qs503 American Society of Andrology'),
(8320, 'https://ror.org/02nw48b86', 'en', 1, 'https://ror.org/02nw48b86 American Society of Hematology'),
(8321, 'https://ror.org/00840a568', 'no_lang_code', 1, 'https://ror.org/00840a568 Watershed Associates'),
(8322, 'https://ror.org/04eq2dr50', 'en', 1, 'https://ror.org/04eq2dr50 American Society of Human Genetics'),
(8323, 'https://ror.org/03yx6z589', 'en', 1, 'https://ror.org/03yx6z589 American Society of International Law'),
(8324, 'https://ror.org/02cfj6k65', 'no_lang_code', 1, 'https://ror.org/02cfj6k65 Watershed'),
(8325, 'https://ror.org/05ydq5158', 'no_lang_code', 1, 'https://ror.org/05ydq5158 Spangle Associates'),
(8326, 'https://ror.org/01bjmbg26', 'en', 1, 'https://ror.org/01bjmbg26 Waterwise'),
(8327, 'https://ror.org/04ch35a22', 'en', 1, 'https://ror.org/04ch35a22 American Society for Nutrition'),
(8328, 'https://ror.org/00ht01r58', 'no_lang_code', 1, 'https://ror.org/00ht01r58 Wave 80 Biosciences (United States)'),
(8329, 'https://ror.org/00yt6w794', 'no_lang_code', 1, 'https://ror.org/00yt6w794 Sierra Nevada Corporation (United States)'),
(8330, 'https://ror.org/0460vf117', 'en', 1, 'https://ror.org/0460vf117 Neurosciences Institute'),
(8331, 'https://ror.org/03kdkbm65', 'en', 1, 'https://ror.org/03kdkbm65 American Society for Parenteral and Enteral Nutrition'),
(8332, 'https://ror.org/007app753', 'no_lang_code', 1, 'https://ror.org/007app753 Neuroscript (United States)'),
(8333, 'https://ror.org/04qz8gp36', 'no_lang_code', 1, 'https://ror.org/04qz8gp36 Split Engineering (United States)'),
(8334, 'https://ror.org/04zpfy292', 'no_lang_code', 1, 'https://ror.org/04zpfy292 Neurotronics (United States)'),
(8335, 'https://ror.org/04xq28y48', 'no_lang_code', 1, 'https://ror.org/04xq28y48 NeuroWave Systems (United States)'),
(8336, 'https://ror.org/00sn0hb87', 'no_lang_code', 1, 'https://ror.org/00sn0hb87 Wavetrend (United Kingdom)'),
(8337, 'https://ror.org/0488w7k92', 'no_lang_code', 1, 'https://ror.org/0488w7k92 Targazyme (United States)'),
(8338, 'https://ror.org/05kvs8e70', 'no_lang_code', 1, 'https://ror.org/05kvs8e70 Sunnyside Sea Farms (United States)'),
(8339, 'https://ror.org/02hk0xz87', 'no_lang_code', 1, 'https://ror.org/02hk0xz87 American Superconductor (United States)'),
(8340, 'https://ror.org/0547sz392', 'en', 1, 'https://ror.org/0547sz392 American Thoracic Society'),
(8341, 'https://ror.org/009gw7733', 'en', 1, 'https://ror.org/009gw7733 National Renewable Energy Centre'),
(8342, 'https://ror.org/02f29yc36', 'en', 1, 'https://ror.org/02f29yc36 Webb Institute'),
(8343, 'https://ror.org/003jtsa97', 'en', 1, 'https://ror.org/003jtsa97 St. Joseph''s Hospital'),
(8344, 'https://ror.org/027g3rh44', 'en', 1, 'https://ror.org/027g3rh44 New Economics Foundation'),
(8345, 'https://ror.org/03s4hbs71', 'en', 1, 'https://ror.org/03s4hbs71 New England Board of Higher Education'),
(8346, 'https://ror.org/04srtdn04', 'no_lang_code', 1, 'https://ror.org/04srtdn04 Weidlinger Associates (United States)'),
(8347, 'https://ror.org/05450eg98', 'en', 1, 'https://ror.org/05450eg98 Alamo Colleges'),
(8348, 'https://ror.org/036qcfm37', 'en', 1, 'https://ror.org/036qcfm37 Academy for Science and Design'),
(8349, 'https://ror.org/01rhc0n38', 'en', 1, 'https://ror.org/01rhc0n38 New Hampshire Hospital'),
(8350, 'https://ror.org/04wfdx194', 'en', 1, 'https://ror.org/04wfdx194 Standing to Achieve New Directions'),
(8351, 'https://ror.org/059nz2x67', 'en', 1, 'https://ror.org/059nz2x67 New Jersey Department of Human Services'),
(8352, 'https://ror.org/03shg3b96', 'en', 1, 'https://ror.org/03shg3b96 Stanley Street Treatment and Resources'),
(8353, 'https://ror.org/03kh4zk18', 'no_lang_code', 1, 'https://ror.org/03kh4zk18 Weinberg Medical Physics (United States)'),
(8354, 'https://ror.org/05q9ht188', 'en', 1, 'https://ror.org/05q9ht188 Stark State College'),
(8355, 'https://ror.org/009n4a626', 'no_lang_code', 1, 'https://ror.org/009n4a626 StataCorp (United States)'),
(8356, 'https://ror.org/03ke74b46', 'no_lang_code', 1, 'https://ror.org/03ke74b46 Welichem Biotech (Canada)'),
(8357, 'https://ror.org/01qnpp968', 'en', 1, 'https://ror.org/01qnpp968 New Mexico Consortium'),
(8358, 'https://ror.org/04s1s3432', 'en', 1, 'https://ror.org/04s1s3432 Nevada Division of Public and Behavioral Health'),
(8359, 'https://ror.org/01vsg6m68', 'en', 1, 'https://ror.org/01vsg6m68 State Science and Technology Institute'),
(8360, 'https://ror.org/05jjfxd82', 'en', 1, 'https://ror.org/05jjfxd82 New Mexico Museum of Natural History Foundation'),
(8361, 'https://ror.org/00w9zab79', 'en', 1, 'https://ror.org/00w9zab79 New Mexico Resonance'),
(8362, 'https://ror.org/023fm1q80', 'no_lang_code', 1, 'https://ror.org/023fm1q80 ON Semiconductor (Canada)'),
(8363, 'https://ror.org/05cvz6v56', 'no_lang_code', 1, 'https://ror.org/05cvz6v56 StemCells (United States)'),
(8364, 'https://ror.org/02vgfg208', 'en', 1, 'https://ror.org/02vgfg208 New Mexico Department of Human Services'),
(8365, 'https://ror.org/03cfgct89', 'en', 1, 'https://ror.org/03cfgct89 Women in Engineering ProActive Network'),
(8366, 'https://ror.org/0392txn84', 'no_lang_code', 1, 'https://ror.org/0392txn84 Stemmatters (Portugal)'),
(8367, 'https://ror.org/03hp60511', 'en', 1, 'https://ror.org/03hp60511 New North Citizens Council'),
(8368, 'https://ror.org/04txpk391', 'no_lang_code', 1, 'https://ror.org/04txpk391 Superconducting Systems (United States)'),
(8369, 'https://ror.org/05d7pr418', 'en', 1, 'https://ror.org/05d7pr418 Wesleyan College'),
(8370, 'https://ror.org/058eyth26', 'no_lang_code', 1, 'https://ror.org/058eyth26 Vemco (Canada)'),
(8371, 'https://ror.org/022fswr88', 'no_lang_code', 1, 'https://ror.org/022fswr88 New Span Opto-Technology (United States)'),
(8372, 'https://ror.org/03snky177', 'en', 1, 'https://ror.org/03snky177 New Victoria Theatre'),
(8373, 'https://ror.org/016pn2j58', 'en', 1, 'https://ror.org/016pn2j58 Amity Foundation'),
(8374, 'https://ror.org/045rtab03', 'no_lang_code', 1, 'https://ror.org/045rtab03 Amorfix (Canada)'),
(8375, 'https://ror.org/00nh64737', 'no_lang_code', 1, 'https://ror.org/00nh64737 PCAS (Canada)'),
(8376, 'https://ror.org/00p2bvc56', 'no_lang_code', 1, 'https://ror.org/00p2bvc56 Amphora NDT (United Kingdom)'),
(8377, 'https://ror.org/00j631389', 'en', 1, 'https://ror.org/00j631389 New World Laboratories'),
(8378, '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'),
(8379, 'https://ror.org/00e812q49', 'no_lang_code', 1, 'https://ror.org/00e812q49 Springboard (Canada)'),
(8380, 'https://ror.org/05v7p8344', 'no_lang_code', 1, 'https://ror.org/05v7p8344 West Portal Software (United States)'),
(8381, 'https://ror.org/00dmrtm29', 'en', 1, 'https://ror.org/00dmrtm29 New York City Health and Hospitals Corporation'),
(8382, 'https://ror.org/02zhhtj16', 'en', 1, 'https://ror.org/02zhhtj16 West Virginia High Technology Consortium Foundation'),
(8383, 'https://ror.org/01s8dqw53', 'en', 1, 'https://ror.org/01s8dqw53 West Virginia School of Osteopathic Medicine'),
(8384, 'https://ror.org/01qcf5s69', 'no_lang_code', 1, 'https://ror.org/01qcf5s69 STMicroelectronics (Canada)'),
(8385, 'https://ror.org/0492sec70', 'en', 1, 'https://ror.org/0492sec70 Western Interstate Commission for Higher Education'),
(8386, 'https://ror.org/006gfkv11', 'no_lang_code', 1, 'https://ror.org/006gfkv11 Stoelting (United States)'),
(8387, 'https://ror.org/01f0wmg23', 'en', 1, 'https://ror.org/01f0wmg23 Stone Child College'),
(8388, 'https://ror.org/034y1g063', 'en', 1, 'https://ror.org/034y1g063 New York State Office of Alcoholism and Substance Abuse Services'),
(8389, 'https://ror.org/0024cyb77', 'no_lang_code', 1, 'https://ror.org/0024cyb77 Stottler Henke Associates (United States)'),
(8390, 'https://ror.org/037sxey58', 'no_lang_code', 1, 'https://ror.org/037sxey58 Amunix (United States)'),
(8391, 'https://ror.org/058pkw062', 'en', 1, 'https://ror.org/058pkw062 New York State Unified Court System'),
(8392, 'https://ror.org/00new7409', 'en', 1, 'https://ror.org/00new7409 New York Structural Biology Center'),
(8393, 'https://ror.org/02k7p6g32', 'no_lang_code', 1, 'https://ror.org/02k7p6g32 Analiza (United States)'),
(8394, 'https://ror.org/0577pn814', 'en', 1, 'https://ror.org/0577pn814 Newberry College'),
(8395, 'https://ror.org/00ftam505', 'en', 1, 'https://ror.org/00ftam505 Newcastle City Council'),
(8396, 'https://ror.org/02tryst02', 'no_lang_code', 1, 'https://ror.org/02tryst02 Agilent Technologies (United States)'),
(8397, 'https://ror.org/016tysf12', 'en', 1, 'https://ror.org/016tysf12 Western Technical College'),
(8398, 'https://ror.org/0517kdv58', 'no_lang_code', 1, 'https://ror.org/0517kdv58 Newton Labs (United States)'),
(8399, 'https://ror.org/02bawng60', 'no_lang_code', 1, 'https://ror.org/02bawng60 Novasentis (United States)'),
(8400, 'https://ror.org/04p8w0f39', 'no_lang_code', 1, 'https://ror.org/04p8w0f39 Westinghouse Electric (United States)'),
(8401, 'https://ror.org/03htten57', 'no_lang_code', 1, 'https://ror.org/03htten57 Westinghouse Electric (Sweden)'),
(8402, 'https://ror.org/05cnc7n16', 'no_lang_code', 1, 'https://ror.org/05cnc7n16 Newton Scientific Incorporation (United States)'),
(8403, 'https://ror.org/000z4wj31', 'en', 1, 'https://ror.org/000z4wj31 Center for Naval Analyses'),
(8404, 'https://ror.org/01j1cwt71', 'en', 1, 'https://ror.org/01j1cwt71 Westminster College - Pennsylvania'),
(8405, 'https://ror.org/000dhg681', 'no_lang_code', 1, 'https://ror.org/000dhg681 Stratonics (United States)'),
(8406, 'https://ror.org/04mvd3r15', 'no_lang_code', 1, 'https://ror.org/04mvd3r15 Stratus Aeronautics (Canada)'),
(8407, 'https://ror.org/05x546h56', 'no_lang_code', 1, 'https://ror.org/05x546h56 NexTech Materials (United States)'),
(8408, 'https://ror.org/05pkhhn92', 'en', 1, 'https://ror.org/05pkhhn92 New Hampshire Department of Health and Human Services'),
(8409, 'https://ror.org/04za2st18', 'en', 1, 'https://ror.org/04za2st18 National Health Service Scotland'),
(8410, 'https://ror.org/0420yf673', 'en', 1, 'https://ror.org/0420yf673 Whatcom Community College'),
(8411, 'https://ror.org/04bqdez48', 'no_lang_code', 1, 'https://ror.org/04bqdez48 Structured Materials Industries (United States)'),
(8412, 'https://ror.org/015h4rf69', 'en', 1, 'https://ror.org/015h4rf69 Niagara College'),
(8413, 'https://ror.org/05j0wr821', 'no_lang_code', 1, 'https://ror.org/05j0wr821 Oxford Instruments (Canada)'),
(8414, 'https://ror.org/00mnwwq78', 'en', 1, 'https://ror.org/00mnwwq78 Wheelock College'),
(8415, 'https://ror.org/020mdmp08', 'en', 1, 'https://ror.org/020mdmp08 Student Assistance Services'),
(8416, 'https://ror.org/013hwwd10', 'no_lang_code', 1, 'https://ror.org/013hwwd10 Surgical Specialties (Canada)'),
(8417, 'https://ror.org/05hqmfv86', 'en', 1, 'https://ror.org/05hqmfv86 Student Pugwash USA'),
(8418, 'https://ror.org/03zsmr311', 'no_lang_code', 1, 'https://ror.org/03zsmr311 White Design (United Kingdom)'),
(8419, 'https://ror.org/044t9d979', 'en', 1, 'https://ror.org/044t9d979 Substance Abuse Foundation'),
(8420, 'https://ror.org/021sagw45', 'no_lang_code', 1, 'https://ror.org/021sagw45 Nicolet Chartrand Knoll (Canada)'),
(8421, 'https://ror.org/03ts76x74', 'en', 1, 'https://ror.org/03ts76x74 White Mountains Community College'),
(8422, 'https://ror.org/01xgjqy82', 'no_lang_code', 1, 'https://ror.org/01xgjqy82 Nicoya Lifesciences (Canada)'),
(8423, 'https://ror.org/03yfgnq74', 'no_lang_code', 1, 'https://ror.org/03yfgnq74 Summit (United Kingdom)'),
(8424, 'https://ror.org/01ta8cw69', 'no_lang_code', 1, 'https://ror.org/01ta8cw69 White Point Systems (United States)'),
(8425, 'https://ror.org/042j06y04', 'no_lang_code', 1, 'https://ror.org/042j06y04 Nikon (United Kingdom)'),
(8426, 'https://ror.org/04z664d45', 'en', 1, 'https://ror.org/04z664d45 CollĆØge whittier Whittier College'),
(8427, 'https://ror.org/0113kt106', 'en', 1, 'https://ror.org/0113kt106 Nine Circles Community Health Centre'),
(8428, 'https://ror.org/04mq9p732', 'en', 1, 'https://ror.org/04mq9p732 Wholistic Stress Control Institute'),
(8429, 'https://ror.org/01m30h796', 'no_lang_code', 1, 'https://ror.org/01m30h796 Sun Innovations (United States)'),
(8430, 'https://ror.org/021n8sy59', 'no_lang_code', 1, 'https://ror.org/021n8sy59 National Integrated Solutions (United Kingdom)'),
(8431, 'https://ror.org/0378g3743', 'en', 1, 'https://ror.org/0378g3743 Animal and Plant Health Agency'),
(8432, 'https://ror.org/04x5cyt12', 'no_lang_code', 1, 'https://ror.org/04x5cyt12 Sunny BioDiscovery (United States)'),
(8433, 'https://ror.org/02mhf1b49', 'en', 1, 'https://ror.org/02mhf1b49 Wiley College'),
(8434, 'https://ror.org/02x6y0g48', 'en', 1, 'https://ror.org/02x6y0g48 Ann Becker and Associates'),
(8435, 'https://ror.org/037kgpk38', 'en', 1, 'https://ror.org/037kgpk38 William Jewell College'),
(8436, 'https://ror.org/010thz337', 'en', 1, 'https://ror.org/010thz337 Farmingdale State College'),
(8437, 'https://ror.org/03j45zm42', 'no_lang_code', 1, 'https://ror.org/03j45zm42 Nitek (United States)'),
(8438, 'https://ror.org/054xfn086', 'no_lang_code', 1, 'https://ror.org/054xfn086 Supercon (United States)'),
(8439, 'https://ror.org/04b1gft39', 'en', 1, 'https://ror.org/04b1gft39 CollĆØge harper Harper College'),
(8440, 'https://ror.org/05e4dfg87', 'no_lang_code', 1, 'https://ror.org/05e4dfg87 Skyre (United States)'),
(8441, 'https://ror.org/00dsap877', 'en', 1, 'https://ror.org/00dsap877 Sustrans'),
(8442, 'https://ror.org/028chtg69', 'no_lang_code', 1, 'https://ror.org/028chtg69 SVT Associates (United States)'),
(8443, 'https://ror.org/026365h19', 'no_lang_code', 1, 'https://ror.org/026365h19 Anvik Corporation (United States)'),
(8444, 'https://ror.org/02rgsw982', 'no_lang_code', 1, 'https://ror.org/02rgsw982 Apath (United States)'),
(8445, 'https://ror.org/029p1pm63', 'en', 1, 'https://ror.org/029p1pm63 Williams LifeSkills'),
(8446, 'https://ror.org/04yqxq902', 'no_lang_code', 1, 'https://ror.org/04yqxq902 APD Life Sciences (United States)'),
(8447, 'https://ror.org/00zpq6q43', 'no_lang_code', 1, 'https://ror.org/00zpq6q43 SWITCH Materials (Canada)'),
(8448, 'https://ror.org/03nqny130', 'no_lang_code', 1, 'https://ror.org/03nqny130 Willis Towers Watson (United Kingdom)'),
(8449, 'https://ror.org/047tyac06', 'no_lang_code', 1, 'https://ror.org/047tyac06 Wilson Energy (United Kingdom)'),
(8450, 'https://ror.org/010eax918', 'no_lang_code', 1, 'https://ror.org/010eax918 Syandus (United States)'),
(8451, 'https://ror.org/001fvka94', 'no_lang_code', 1, 'https://ror.org/001fvka94 Wilson Wolf Manufacturing (United States)'),
(8452, 'https://ror.org/0310bxj37', 'no_lang_code', 1, 'https://ror.org/0310bxj37 Synageva BioPharma (United States)'),
(8453, 'https://ror.org/00w0s7f65', 'no_lang_code', 1, 'https://ror.org/00w0s7f65 Apex Biomedical (United States)'),
(8454, 'https://ror.org/02s3g3z50', 'no_lang_code', 1, 'https://ror.org/02s3g3z50 Nokia (Portugal)'),
(8455, 'https://ror.org/01jq6tw89', 'no_lang_code', 1, 'https://ror.org/01jq6tw89 Argonon (United Kingdom)'),
(8456, 'https://ror.org/04rqx2b83', 'no_lang_code', 1, 'https://ror.org/04rqx2b83 Apogee Biotechnology (United States)'),
(8457, 'https://ror.org/02vpkdk18', 'no_lang_code', 1, 'https://ror.org/02vpkdk18 Synergy Enterprises (United States)'),
(8458, 'https://ror.org/01yrmxe32', 'no_lang_code', 1, 'https://ror.org/01yrmxe32 NORAM (Canada)'),
(8459, 'https://ror.org/00g0avy67', 'no_lang_code', 1, 'https://ror.org/00g0avy67 WinProbe (United States)'),
(8460, 'https://ror.org/05bnyxr41', 'no_lang_code', 1, 'https://ror.org/05bnyxr41 Norbord (Canada)'),
(8461, 'https://ror.org/038wghp07', 'no_lang_code', 1, 'https://ror.org/038wghp07 Norgen Biotek Corporation (Canada)'),
(8462, 'https://ror.org/05b58tt16', 'en', 1, 'https://ror.org/05b58tt16 Normandale Community College'),
(8463, 'https://ror.org/01gp1hk26', 'en', 1, 'https://ror.org/01gp1hk26 North American Association of Central Cancer Registries'),
(8464, 'https://ror.org/03ehegt04', 'en', 1, 'https://ror.org/03ehegt04 Wisconsin Department of Agriculture Trade and Consumer Protection'),
(8465, 'https://ror.org/045r85r62', 'no_lang_code', 1, 'https://ror.org/045r85r62 Symbiotech (United States)'),
(8466, 'https://ror.org/05vj5p117', 'no_lang_code', 1, 'https://ror.org/05vj5p117 Synkera Technologies (United States)'),
(8467, 'https://ror.org/013by2m91', 'no_lang_code', 1, 'https://ror.org/013by2m91 Synopsys (United States)'),
(8468, 'https://ror.org/036x6dk73', 'en', 1, 'https://ror.org/036x6dk73 North American Primary Care Research Group'),
(8469, 'https://ror.org/01xh2bb57', 'no_lang_code', 1, 'https://ror.org/01xh2bb57 WisdomTools (United States)'),
(8470, 'https://ror.org/044pzyk69', 'en', 1, 'https://ror.org/044pzyk69 North American Vascular Biology Organization'),
(8471, 'https://ror.org/05r6rhh75', 'no_lang_code', 1, 'https://ror.org/05r6rhh75 Synthasome (United States)'),
(8472, 'https://ror.org/01fbp1n03', 'no_lang_code', 1, 'https://ror.org/01fbp1n03 Synthecon (United States)'),
(8473, 'https://ror.org/04mge0977', 'no_lang_code', 1, 'https://ror.org/04mge0977 Syntrix Biosystems (United States)'),
(8474, 'https://ror.org/010vbnw08', 'no_lang_code', 1, 'https://ror.org/010vbnw08 Apotex Pharmachem (Canada)'),
(8475, 'https://ror.org/04t610980', 'en', 1, 'https://ror.org/04t610980 Appalachian College Association'),
(8476, 'https://ror.org/02sgk9b41', 'no_lang_code', 1, 'https://ror.org/02sgk9b41 SynZyme Technologies (United States)'),
(8477, 'https://ror.org/0290kkw06', 'no_lang_code', 1, 'https://ror.org/0290kkw06 Applied Behavioral Research (United States)'),
(8478, 'https://ror.org/03q73zg62', 'no_lang_code', 1, 'https://ror.org/03q73zg62 Cirrus Logic (United Kingdom)'),
(8479, 'https://ror.org/014tted12', 'no_lang_code', 1, 'https://ror.org/014tted12 Systems Control (United States)'),
(8480, 'https://ror.org/04cv8g472', 'no_lang_code', 1, 'https://ror.org/04cv8g472 Systems Technology (United States)'),
(8481, 'https://ror.org/02z8v3172', 'no_lang_code', 1, 'https://ror.org/02z8v3172 Systex (United States)'),
(8482, 'https://ror.org/03n87wv50', 'no_lang_code', 1, 'https://ror.org/03n87wv50 Applied BioPhysics (United States)'),
(8483, 'https://ror.org/03qkhyr66', 'no_lang_code', 1, 'https://ror.org/03qkhyr66 Novozymes (United States)'),
(8484, 'https://ror.org/03tgpkr96', 'no_lang_code', 1, 'https://ror.org/03tgpkr96 Tactus Technology (United States)'),
(8485, 'https://ror.org/00g3gq507', 'no_lang_code', 1, 'https://ror.org/00g3gq507 Taiga Biotechnologies (United States)'),
(8486, 'https://ror.org/04awqpv94', 'no_lang_code', 1, 'https://ror.org/04awqpv94 Talking Lights (United States)'),
(8487, 'https://ror.org/01dswgm35', 'en', 1, 'https://ror.org/01dswgm35 Talladega College'),
(8488, 'https://ror.org/042sjqp29', 'en', 1, 'https://ror.org/042sjqp29 Tanana Chiefs Conference'),
(8489, 'https://ror.org/059zrjt20', 'no_lang_code', 1, 'https://ror.org/059zrjt20 TandemLaunch (Canada)'),
(8490, 'https://ror.org/00frfm169', 'no_lang_code', 1, 'https://ror.org/00frfm169 Woomera Therapeutics'),
(8491, 'https://ror.org/00mmdnd52', 'en', 1, 'https://ror.org/00mmdnd52 Applied Computer Security Associates'),
(8492, 'https://ror.org/04rw71s91', 'en', 1, 'https://ror.org/04rw71s91 North Carolina State Education Assistance Authority'),
(8493, 'https://ror.org/03g75kz98', 'no_lang_code', 1, 'https://ror.org/03g75kz98 PricewaterhouseCoopers (United States)'),
(8494, 'https://ror.org/038jzvs45', 'en', 1, 'https://ror.org/038jzvs45 Psychiatric Foundation of North Carolina'),
(8495, 'https://ror.org/02zm13s10', 'en', 1, 'https://ror.org/02zm13s10 Applied Genetics Laboratories'),
(8496, 'https://ror.org/04vwk8m55', 'no_lang_code', 1, 'https://ror.org/04vwk8m55 Ansun BioPharma (United States)'),
(8497, 'https://ror.org/02segr176', 'no_lang_code', 1, 'https://ror.org/02segr176 Applied Human Factors (United States)'),
(8498, 'https://ror.org/01nqc4p29', 'no_lang_code', 1, 'https://ror.org/01nqc4p29 Workplace Technologies Research'),
(8499, 'https://ror.org/0230sdc57', 'no_lang_code', 1, 'https://ror.org/0230sdc57 Tanner Research (United States)'),
(8500, 'https://ror.org/04vpnmr86', 'no_lang_code', 1, 'https://ror.org/04vpnmr86 Applied Research Associates (United States)'),
(8501, 'https://ror.org/05q3e5911', 'no_lang_code', 1, 'https://ror.org/05q3e5911 Tantalus Systems (Canada)'),
(8502, 'https://ror.org/04mmd4777', 'en', 1, 'https://ror.org/04mmd4777 Museum of Life and Science'),
(8503, 'https://ror.org/051de0s21', 'no_lang_code', 1, 'https://ror.org/051de0s21 Sartorius (United Kingdom)'),
(8504, 'https://ror.org/02z9mtw38', 'en', 1, 'https://ror.org/02z9mtw38 Tapestry Health'),
(8505, 'https://ror.org/00hnd8b56', 'no_lang_code', 1, 'https://ror.org/00hnd8b56 Applied Research Corporation (United States)'),
(8506, 'https://ror.org/0570hc946', 'no_lang_code', 1, 'https://ror.org/0570hc946 Targeson (United States)'),
(8507, 'https://ror.org/04zd6dy90', 'no_lang_code', 1, 'https://ror.org/04zd6dy90 Applied Sciences (United States)'),
(8508, 'https://ror.org/02ehan050', 'en', 1, 'https://ror.org/02ehan050 North Central College'),
(8509, 'https://ror.org/015by2x28', 'en', 1, 'https://ror.org/015by2x28 North Dakota State College of Science'),
(8510, 'https://ror.org/0583ded52', 'en', 1, 'https://ror.org/0583ded52 North Dakota Department of Human Services'),
(8511, 'https://ror.org/03st5df34', 'no_lang_code', 1, 'https://ror.org/03st5df34 World Precision Instruments (United States)'),
(8512, 'https://ror.org/0285qgt37', 'no_lang_code', 1, 'https://ror.org/0285qgt37 Applied System Technologies (United States)'),
(8513, 'https://ror.org/04v04aa35', 'en', 1, 'https://ror.org/04v04aa35 Tarrant County College'),
(8514, 'https://ror.org/04km0f390', 'no_lang_code', 1, 'https://ror.org/04km0f390 North East of England Process Industry Cluster (United Kingdom)'),
(8515, 'https://ror.org/01rww7j93', 'en', 1, 'https://ror.org/01rww7j93 Tarzana Treatment Centers'),
(8516, 'https://ror.org/02mnkv161', 'no_lang_code', 1, 'https://ror.org/02mnkv161 Applied Thin Films (United States)'),
(8517, 'https://ror.org/01b09k795', 'en', 1, 'https://ror.org/01b09k795 APT Foundation'),
(8518, 'https://ror.org/03g7j7v29', 'no_lang_code', 1, 'https://ror.org/03g7j7v29 Tascon Industries (United States)'),
(8519, 'https://ror.org/04cj8wf50', 'no_lang_code', 1, 'https://ror.org/04cj8wf50 APT Therapeutics (United States)'),
(8520, 'https://ror.org/050t0wk48', 'no_lang_code', 1, 'https://ror.org/050t0wk48 Tasktop Technologies (Canada)'),
(8521, 'https://ror.org/04hk9tp23', 'no_lang_code', 1, 'https://ror.org/04hk9tp23 AquaTerra (United Kingdom)'),
(8522, 'https://ror.org/02qsnn284', 'en', 1, 'https://ror.org/02qsnn284 North Jersey Community Research Initiative'),
(8523, 'https://ror.org/02rxq9s71', 'no_lang_code', 1, 'https://ror.org/02rxq9s71 Wright Materials Research (United States)'),
(8524, 'https://ror.org/01h0h7640', 'no_lang_code', 1, 'https://ror.org/01h0h7640 Tata Motors (United Kingdom)'),
(8525, 'https://ror.org/04vcx5150', 'no_lang_code', 1, 'https://ror.org/04vcx5150 Applied Energetics (United States)'),
(8526, 'https://ror.org/0494xx745', 'no_lang_code', 1, 'https://ror.org/0494xx745 wTe Corporation (United States)'),
(8527, 'https://ror.org/0506jb942', 'no_lang_code', 1, 'https://ror.org/0506jb942 Cardno (United States)'),
(8528, 'https://ror.org/02c27v641', 'en', 1, 'https://ror.org/02c27v641 Northeastern Oklahoma A&M College'),
(8529, 'https://ror.org/05a33dk65', 'no_lang_code', 1, 'https://ror.org/05a33dk65 Aquilent (United States)'),
(8530, 'https://ror.org/000cxfw53', 'no_lang_code', 1, 'https://ror.org/000cxfw53 Aradigm (United States)'),
(8531, 'https://ror.org/0100fcb78', 'en', 1, 'https://ror.org/0100fcb78 Arapahoe Community College');
INSERT INTO `rors` VALUES
(8532, 'https://ror.org/04ygywa46', 'en', 1, 'https://ror.org/04ygywa46 Montana State University–Northern'),
(8533, 'https://ror.org/00e6gd695', 'en', 1, 'https://ror.org/00e6gd695 Arapahoe House'),
(8534, 'https://ror.org/02fjffw59', 'no_lang_code', 1, 'https://ror.org/02fjffw59 X-ray Instrumentation Associates (United States)'),
(8535, 'https://ror.org/050f37r96', 'no_lang_code', 1, 'https://ror.org/050f37r96 Arbor Vita (United States)'),
(8536, 'https://ror.org/02mxbtp76', 'no_lang_code', 1, 'https://ror.org/02mxbtp76 Xemed (United States)'),
(8537, 'https://ror.org/01hw8xc07', 'en', 1, 'https://ror.org/01hw8xc07 Northern Illinois Council on Alcohol and Substance Abuse'),
(8538, 'https://ror.org/00d3vm134', 'en', 1, 'https://ror.org/00d3vm134 Archaeology Southwest'),
(8539, 'https://ror.org/01e94xy17', 'en', 1, 'https://ror.org/01e94xy17 Northern New Mexico College'),
(8540, 'https://ror.org/00shs7b79', 'en', 1, 'https://ror.org/00shs7b79 Northern Ohio Recovery Association'),
(8541, 'https://ror.org/044gv5910', 'en', 1, 'https://ror.org/044gv5910 Institute of Statistical Science, Academia Sinica 中央研究院 ēµ±čØˆē§‘å­øē ”ē©¶ę‰€'),
(8542, 'https://ror.org/05q5em355', 'no_lang_code', 1, 'https://ror.org/05q5em355 Morpho (United States)'),
(8543, 'https://ror.org/04wzh0d51', 'en', 1, 'https://ror.org/04wzh0d51 Northern Virginia Community College'),
(8544, 'https://ror.org/01hmaf534', 'en', 1, 'https://ror.org/01hmaf534 Northland College'),
(8545, 'https://ror.org/03dbjaj38', 'no_lang_code', 1, 'https://ror.org/03dbjaj38 ArchieMD (United States)'),
(8546, 'https://ror.org/043es1b40', 'en', 1, 'https://ror.org/043es1b40 Technological Assistance Institute for Intellectual Disability'),
(8547, 'https://ror.org/009rbsv73', 'en', 1, 'https://ror.org/009rbsv73 The Tech Interactive'),
(8548, 'https://ror.org/04sj2m437', 'no_lang_code', 1, 'https://ror.org/04sj2m437 TechEn (United States)'),
(8549, 'https://ror.org/05yavwk90', 'en', 1, 'https://ror.org/05yavwk90 Northwest College'),
(8550, 'https://ror.org/04jwhvn72', 'no_lang_code', 1, 'https://ror.org/04jwhvn72 TechLab (United States)'),
(8551, 'https://ror.org/002m5c441', 'no_lang_code', 1, 'https://ror.org/002m5c441 Xention (United Kingdom)'),
(8552, 'https://ror.org/02c235t25', 'en', 1, 'https://ror.org/02c235t25 Northwest Indian College'),
(8553, 'https://ror.org/01yxvb356', 'no_lang_code', 1, 'https://ror.org/01yxvb356 Anacomp (United States)'),
(8554, 'https://ror.org/036bdjm06', 'en', 1, 'https://ror.org/036bdjm06 Techniquest'),
(8555, 'https://ror.org/04ywn3c84', 'no_lang_code', 1, 'https://ror.org/04ywn3c84 James Cropper (United Kingdom)'),
(8556, 'https://ror.org/012fsht65', 'no_lang_code', 1, 'https://ror.org/012fsht65 Architecture Technology Corporation (United States)'),
(8557, 'https://ror.org/00s7dq077', 'en', 1, 'https://ror.org/00s7dq077 Arctic Research Consortium of the United States'),
(8558, 'https://ror.org/02wmjtd85', 'en', 1, 'https://ror.org/02wmjtd85 Notre Dame College'),
(8559, 'https://ror.org/05xpxan20', 'no_lang_code', 1, 'https://ror.org/05xpxan20 TechniScan (United States)'),
(8560, 'https://ror.org/01wfk7k95', 'en', 1, 'https://ror.org/01wfk7k95 Area Cooperative Education Services'),
(8561, 'https://ror.org/0173xeq43', 'en', 1, 'https://ror.org/0173xeq43 Nottingham City Council'),
(8562, 'https://ror.org/00a1a0x11', 'no_lang_code', 1, 'https://ror.org/00a1a0x11 Area Detector Systems Corporation (United States)'),
(8563, 'https://ror.org/0134j7f28', 'no_lang_code', 1, 'https://ror.org/0134j7f28 Orolia (United States)'),
(8564, 'https://ror.org/01z850041', 'no_lang_code', 1, 'https://ror.org/01z850041 Technology Assessment and Transfer (United States)'),
(8565, 'https://ror.org/01qe4kz15', 'no_lang_code', 1, 'https://ror.org/01qe4kz15 Goldwind (China)'),
(8566, 'https://ror.org/050kc8e49', 'no_lang_code', 1, 'https://ror.org/050kc8e49 Technology International Incorporated of Virginia (United States)'),
(8567, 'https://ror.org/02xst6m67', 'no_lang_code', 1, 'https://ror.org/02xst6m67 XL Sci-Tech (United States)'),
(8568, 'https://ror.org/00qxhe741', 'no_lang_code', 1, 'https://ror.org/00qxhe741 Techshot (United States)'),
(8569, 'https://ror.org/03s7rt838', 'no_lang_code', 1, 'https://ror.org/03s7rt838 Nottingham Scientific (United Kingdom)'),
(8570, 'https://ror.org/04y4k8j69', 'no_lang_code', 1, 'https://ror.org/04y4k8j69 Xoran Technologies (United States)'),
(8571, 'https://ror.org/01d2yj180', 'no_lang_code', 1, 'https://ror.org/01d2yj180 Technology For Magnetic Resonance (United States)'),
(8572, 'https://ror.org/05hb2h012', 'no_lang_code', 1, 'https://ror.org/05hb2h012 Arietis (United States)'),
(8573, 'https://ror.org/029aeh759', 'no_lang_code', 1, 'https://ror.org/029aeh759 Kromek (United States)'),
(8574, 'https://ror.org/025zbvz40', 'en', 1, 'https://ror.org/025zbvz40 Arizona Academy of Science'),
(8575, 'https://ror.org/00wrset74', 'no_lang_code', 1, 'https://ror.org/00wrset74 Tejas Networks (India)'),
(8576, 'https://ror.org/00vcszp55', 'en', 1, 'https://ror.org/00vcszp55 Arizona Geological Survey'),
(8577, 'https://ror.org/01xk5xs43', 'no_lang_code', 1, 'https://ror.org/01xk5xs43 Carl Zeiss (United States)'),
(8578, 'https://ror.org/03yvcsz89', 'en', 1, 'https://ror.org/03yvcsz89 Arizona Department of Education'),
(8579, 'https://ror.org/003tra577', 'en', 1, 'https://ror.org/003tra577 Arizona Office of the Governor'),
(8580, 'https://ror.org/02xf69211', 'no_lang_code', 1, 'https://ror.org/02xf69211 XRSciences (United States)'),
(8581, 'https://ror.org/036wqaf87', 'no_lang_code', 1, 'https://ror.org/036wqaf87 ProteinSimple (United States)'),
(8582, 'https://ror.org/052efn961', 'en', 1, 'https://ror.org/052efn961 Arkansas Academy of Science'),
(8583, 'https://ror.org/023sej223', 'en', 1, 'https://ror.org/023sej223 Nova Scotia Community College'),
(8584, 'https://ror.org/00gb8td65', 'no_lang_code', 1, 'https://ror.org/00gb8td65 Y Touring Theatre Company'),
(8585, 'https://ror.org/03kxv9c43', 'no_lang_code', 1, 'https://ror.org/03kxv9c43 Astro-Med (United States)'),
(8586, 'https://ror.org/02krr1j33', 'no_lang_code', 1, 'https://ror.org/02krr1j33 Telesage (United States)'),
(8587, 'https://ror.org/0289bhn79', 'no_lang_code', 1, 'https://ror.org/0289bhn79 Telesensory (United States)'),
(8588, 'https://ror.org/02t0zgq96', 'no_lang_code', 1, 'https://ror.org/02t0zgq96 ArmaGen (United States)'),
(8589, 'https://ror.org/04vfjws05', 'no_lang_code', 1, 'https://ror.org/04vfjws05 NovaDigm Therapeutics (United States)'),
(8590, 'https://ror.org/04qce9v53', 'no_lang_code', 1, 'https://ror.org/04qce9v53 Integra LifeSciences (United States)'),
(8591, 'https://ror.org/04e13h619', 'no_lang_code', 1, 'https://ror.org/04e13h619 NovaFlux (United States)'),
(8592, 'https://ror.org/03wtr1427', 'no_lang_code', 1, 'https://ror.org/03wtr1427 NovaLipids (Canada)'),
(8593, 'https://ror.org/00vrz7m04', 'no_lang_code', 1, 'https://ror.org/00vrz7m04 Aronora (United States)'),
(8594, 'https://ror.org/02y1jb308', 'en', 1, 'https://ror.org/02y1jb308 Telus World of Science'),
(8595, 'https://ror.org/00h92yy88', 'no_lang_code', 1, 'https://ror.org/00h92yy88 Arrayomics (United States)'),
(8596, 'https://ror.org/05wrnja28', 'no_lang_code', 1, 'https://ror.org/05wrnja28 Tepha (United States)'),
(8597, 'https://ror.org/05571bq02', 'en', 1, 'https://ror.org/05571bq02 Teratology Society'),
(8598, 'https://ror.org/00q0dz713', 'no_lang_code', 1, 'https://ror.org/00q0dz713 TeraView (United Kingdom)'),
(8599, 'https://ror.org/03nfebx47', 'no_lang_code', 1, 'https://ror.org/03nfebx47 Terpenoid Therapeutics (United States)'),
(8600, 'https://ror.org/05jvwsc13', 'no_lang_code', 1, 'https://ror.org/05jvwsc13 Terra Nova Learning Systems (United States)'),
(8601, 'https://ror.org/00qjbvq93', 'no_lang_code', 1, 'https://ror.org/00qjbvq93 Actelion (United States)'),
(8602, 'https://ror.org/043q2sq69', 'no_lang_code', 1, 'https://ror.org/043q2sq69 Isto Biologics (United States)'),
(8603, 'https://ror.org/01y7ahq16', 'no_lang_code', 1, 'https://ror.org/01y7ahq16 Technology Dynamics (United States)'),
(8604, 'https://ror.org/00fd7nh45', 'no_lang_code', 1, 'https://ror.org/00fd7nh45 Yecuris (United States)'),
(8605, 'https://ror.org/04zk9fe75', 'en', 1, 'https://ror.org/04zk9fe75 Arthritis Foundation'),
(8606, 'https://ror.org/05akaw061', 'no_lang_code', 1, 'https://ror.org/05akaw061 Tekna Plasma Systems (Canada)'),
(8607, 'https://ror.org/04eq38828', 'en', 1, 'https://ror.org/04eq38828 Arts Catalyst'),
(8608, 'https://ror.org/049tfmr46', 'no_lang_code', 1, 'https://ror.org/049tfmr46 Kelda Group (United Kingdom)'),
(8609, 'https://ror.org/04fkhzr23', 'no_lang_code', 1, 'https://ror.org/04fkhzr23 Novan Therapeutics (United States)'),
(8610, 'https://ror.org/01mbxzz40', 'en', 1, 'https://ror.org/01mbxzz40 Arts Council England'),
(8611, 'https://ror.org/03pzbeq42', 'en', 1, 'https://ror.org/03pzbeq42 Youth Science Canada'),
(8612, 'https://ror.org/00q9afj63', 'no_lang_code', 1, 'https://ror.org/00q9afj63 ARTSCO (United States)'),
(8613, 'https://ror.org/04zw4rj10', 'no_lang_code', 1, 'https://ror.org/04zw4rj10 Arzeda (United States)'),
(8614, 'https://ror.org/03pszb036', 'en', 1, 'https://ror.org/03pszb036 Asbury University'),
(8615, 'https://ror.org/03gphk318', 'no_lang_code', 1, 'https://ror.org/03gphk318 Tetramer Technologies (United States)'),
(8616, 'https://ror.org/020h1fj51', 'no_lang_code', 1, 'https://ror.org/020h1fj51 NDI Group (United States)'),
(8617, 'https://ror.org/03nk8rb41', 'en', 1, 'https://ror.org/03nk8rb41 Yukon River Inter Tribal Watershed Council'),
(8618, 'https://ror.org/01x693z07', 'no_lang_code', 1, 'https://ror.org/01x693z07 NovaSterilis (United States)'),
(8619, 'https://ror.org/0160vb289', 'no_lang_code', 1, 'https://ror.org/0160vb289 Tertl Studos (United States)'),
(8620, 'https://ror.org/00pwjth19', 'en', 1, 'https://ror.org/00pwjth19 Yukon Kuskokwim Health Corporation'),
(8621, 'https://ror.org/03gsa2724', 'en', 1, 'https://ror.org/03gsa2724 Texas Lutheran University'),
(8622, 'https://ror.org/05w7pd234', 'no_lang_code', 1, 'https://ror.org/05w7pd234 Texas Retina Associates (United States)'),
(8623, 'https://ror.org/029ndp841', 'no_lang_code', 1, 'https://ror.org/029ndp841 Ash Stevens (United States)'),
(8624, 'https://ror.org/02xryym68', 'no_lang_code', 1, 'https://ror.org/02xryym68 Ashwin-Ushas (United States)'),
(8625, 'https://ror.org/0168zt961', 'en', 1, 'https://ror.org/0168zt961 Asian and Pacific Islander American Health Forum'),
(8626, 'https://ror.org/04s14qs93', 'en', 1, 'https://ror.org/04s14qs93 Asian American Recovery Services'),
(8627, 'https://ror.org/02yz66a54', 'no_lang_code', 1, 'https://ror.org/02yz66a54 NovelMed Therapeutics (United States)'),
(8628, 'https://ror.org/03k45vj26', 'no_lang_code', 1, 'https://ror.org/03k45vj26 NovoBiotic Pharmaceuticals'),
(8629, 'https://ror.org/052zay176', 'en', 1, 'https://ror.org/052zay176 Asian and Pacific Islander Wellness Center'),
(8630, 'https://ror.org/00nat9r59', 'no_lang_code', 1, 'https://ror.org/00nat9r59 Novozymes (United Kingdom)'),
(8631, 'https://ror.org/00ddb6b18', 'en', 1, 'https://ror.org/00ddb6b18 Refugee and Immigrant Center'),
(8632, 'https://ror.org/03fmvqd28', 'no_lang_code', 1, 'https://ror.org/03fmvqd28 BioMarin (United States)'),
(8633, 'https://ror.org/04tmafy09', 'en', 1, 'https://ror.org/04tmafy09 Asian Cultural Council'),
(8634, 'https://ror.org/00r8j9489', 'no_lang_code', 1, 'https://ror.org/00r8j9489 Thales (United Kingdom)'),
(8635, 'https://ror.org/00dqq0p30', 'en', 1, 'https://ror.org/00dqq0p30 Texas State Technical College Harlingen'),
(8636, 'https://ror.org/02pnxn245', 'en', 1, 'https://ror.org/02pnxn245 Texas State Technical College Waco'),
(8637, 'https://ror.org/03w5ry680', 'no_lang_code', 1, 'https://ror.org/03w5ry680 ASL Analytical (United States)'),
(8638, 'https://ror.org/01x653j15', 'no_lang_code', 1, 'https://ror.org/01x653j15 ManTech International (United States)'),
(8639, 'https://ror.org/01mdbyv68', 'en', 1, 'https://ror.org/01mdbyv68 Nuclear Decommissioning Authority'),
(8640, 'https://ror.org/045nvsg67', 'no_lang_code', 1, 'https://ror.org/045nvsg67 Athena Group (United States)'),
(8641, 'https://ror.org/03m5rvq73', 'no_lang_code', 1, 'https://ror.org/03m5rvq73 Zen Bio (United States)'),
(8642, 'https://ror.org/00d53ja24', 'no_lang_code', 1, 'https://ror.org/00d53ja24 Aspen Aerogels (United States)'),
(8643, 'https://ror.org/024sy5q53', 'en', 1, 'https://ror.org/024sy5q53 Nuffield Council on Bioethics'),
(8644, 'https://ror.org/011akkh38', 'en', 1, 'https://ror.org/011akkh38 Australian Academy of the Humanities'),
(8645, 'https://ror.org/02bm24g42', 'es', 1, 'https://ror.org/02bm24g42 Asociación Civil Impacta Salud y Educación'),
(8646, 'https://ror.org/0217xr937', 'en', 1, 'https://ror.org/0217xr937 Aspen Global Change Institute'),
(8647, 'https://ror.org/053nfh638', 'en', 1, 'https://ror.org/053nfh638 Center for Severe Weather Research'),
(8648, 'https://ror.org/04q1yyt92', 'en', 1, 'https://ror.org/04q1yyt92 Zoological Society of San Diego'),
(8649, 'https://ror.org/051dmmq45', 'no_lang_code', 1, 'https://ror.org/051dmmq45 NuPotential (United States)'),
(8650, 'https://ror.org/01qgthm82', 'no_lang_code', 1, 'https://ror.org/01qgthm82 zuChem (United States)'),
(8651, 'https://ror.org/05p7dhc22', 'en', 1, 'https://ror.org/05p7dhc22 Centre for Innovation Studies'),
(8652, 'https://ror.org/01phfda22', 'no_lang_code', 1, 'https://ror.org/01phfda22 Nutreco (Canada)'),
(8653, 'https://ror.org/0405c6r31', 'en', 1, 'https://ror.org/0405c6r31 College Board'),
(8654, 'https://ror.org/03etema57', 'en', 1, 'https://ror.org/03etema57 Association for Institutional Research'),
(8655, 'https://ror.org/01p9xjz77', 'en', 1, 'https://ror.org/01p9xjz77 College of Exploration'),
(8656, 'https://ror.org/04za49532', 'en', 1, 'https://ror.org/04za49532 Conference Board'),
(8657, 'https://ror.org/00baryp08', 'en', 1, 'https://ror.org/00baryp08 Association for Symbolic Logic'),
(8658, 'https://ror.org/04172mv97', 'en', 1, 'https://ror.org/04172mv97 Association For Women in Mathematics'),
(8659, 'https://ror.org/03bvhwx18', 'en', 1, 'https://ror.org/03bvhwx18 Association for Women in Science'),
(8660, 'https://ror.org/04p335086', 'en', 1, 'https://ror.org/04p335086 Carbon Trust'),
(8661, 'https://ror.org/01dd0rh60', 'no_lang_code', 1, 'https://ror.org/01dd0rh60 NuvoGen Research (United States)'),
(8662, 'https://ror.org/03jnpvg57', 'fr', 1, 'https://ror.org/03jnpvg57 Association francophone pour le savoir'),
(8663, 'https://ror.org/045kj3z89', 'no_lang_code', 1, 'https://ror.org/045kj3z89 Terragon Environmental Technologies (Canada)'),
(8664, 'https://ror.org/02m8d5f73', 'no_lang_code', 1, 'https://ror.org/02m8d5f73 CytRx (United States)'),
(8665, 'https://ror.org/00f4akz96', 'no_lang_code', 1, 'https://ror.org/00f4akz96 NVE Corporation (United States)'),
(8666, 'https://ror.org/05cd81677', 'en', 1, 'https://ror.org/05cd81677 Association of Bay Area Governments'),
(8667, 'https://ror.org/0366e1296', 'en', 1, 'https://ror.org/0366e1296 Association of Chief Police Officers'),
(8668, 'https://ror.org/05h6g8g36', 'en', 1, 'https://ror.org/05h6g8g36 Association of Food and Drug Officials'),
(8669, 'https://ror.org/05cf1h383', 'en', 1, 'https://ror.org/05cf1h383 Association of Maternal and Child Health Programs'),
(8670, 'https://ror.org/007bn8q13', 'en', 1, 'https://ror.org/007bn8q13 Association of State and Territorial Health Officials'),
(8671, 'https://ror.org/03xndpk42', 'no_lang_code', 1, 'https://ror.org/03xndpk42 NexTalk (United States)'),
(8672, 'https://ror.org/017m4b809', 'no_lang_code', 1, 'https://ror.org/017m4b809 NXP (United Kingdom)'),
(8673, 'https://ror.org/00rpwqe82', 'no_lang_code', 1, 'https://ror.org/00rpwqe82 NYSERNet (United States)'),
(8674, 'https://ror.org/0006n3612', 'en', 1, 'https://ror.org/0006n3612 Oak Crest Institute of Science'),
(8675, 'https://ror.org/03zsq2967', 'en', 1, 'https://ror.org/03zsq2967 Association of Asian Pacific Community Health Organizations'),
(8676, 'https://ror.org/050nq0931', 'en', 1, 'https://ror.org/050nq0931 Association of Occupational and Environmental Clinics'),
(8677, 'https://ror.org/00q6hxz03', 'no_lang_code', 1, 'https://ror.org/00q6hxz03 AST Products (United States)'),
(8678, 'https://ror.org/05eef5147', 'en', 1, 'https://ror.org/05eef5147 DNA EpiCenter'),
(8679, 'https://ror.org/02v02q390', 'no_lang_code', 1, 'https://ror.org/02v02q390 Aston Martin Lagonda (United Kingdom)'),
(8680, 'https://ror.org/05aqjad88', 'no_lang_code', 1, 'https://ror.org/05aqjad88 Astraea Therapeutics (United States)'),
(8681, 'https://ror.org/05mr3er35', 'no_lang_code', 1, 'https://ror.org/05mr3er35 Ocean NanoTech (United States)'),
(8682, 'https://ror.org/019xfaf13', 'en', 1, 'https://ror.org/019xfaf13 Astronomical Society of the Pacific'),
(8683, 'https://ror.org/03jnf0b15', 'en', 1, 'https://ror.org/03jnf0b15 Natural Science Collections Alliance'),
(8684, 'https://ror.org/044p9gt09', 'no_lang_code', 1, 'https://ror.org/044p9gt09 MEG-3 (Canada)'),
(8685, 'https://ror.org/039fp5n52', 'en', 1, 'https://ror.org/039fp5n52 At Bristol'),
(8686, 'https://ror.org/007mtxb37', 'no_lang_code', 1, 'https://ror.org/007mtxb37 Oceanit (United States)'),
(8687, 'https://ror.org/00qprmt30', 'no_lang_code', 1, 'https://ror.org/00qprmt30 Atactic Technologies (United States)'),
(8688, 'https://ror.org/043a93608', 'no_lang_code', 1, 'https://ror.org/043a93608 Oceans Limited (Canada)'),
(8689, 'https://ror.org/0527dhk70', 'no_lang_code', 1, 'https://ror.org/0527dhk70 Athens Research and Technology (United States)'),
(8690, 'https://ror.org/03kned690', 'no_lang_code', 1, 'https://ror.org/03kned690 Athersys (United States)'),
(8691, 'https://ror.org/04v357j08', 'no_lang_code', 1, 'https://ror.org/04v357j08 Biosearch Technologies (United States)'),
(8692, 'https://ror.org/02pf22978', 'no_lang_code', 1, 'https://ror.org/02pf22978 BioSense (United States)'),
(8693, 'https://ror.org/00qcr4910', 'no_lang_code', 1, 'https://ror.org/00qcr4910 Atkins (United Kingdom)'),
(8694, 'https://ror.org/05c32fk96', 'no_lang_code', 1, 'https://ror.org/05c32fk96 Atkinson Noland and Associates (United States)'),
(8695, 'https://ror.org/0374p0y44', 'no_lang_code', 1, 'https://ror.org/0374p0y44 ReproCELL (United States)'),
(8696, 'https://ror.org/05p5zy927', 'no_lang_code', 1, 'https://ror.org/05p5zy927 BioSpeech (United States)'),
(8697, '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'),
(8698, 'https://ror.org/04fwbrn28', 'no_lang_code', 1, 'https://ror.org/04fwbrn28 Phoenicia Biosciences (United States)'),
(8699, 'https://ror.org/03v861t80', 'no_lang_code', 1, 'https://ror.org/03v861t80 Atmel (United States)'),
(8700, 'https://ror.org/04jzxg282', 'no_lang_code', 1, 'https://ror.org/04jzxg282 Atmospheric and Space Technology Research Associates (United States)'),
(8701, 'https://ror.org/019m6fr90', 'no_lang_code', 1, 'https://ror.org/019m6fr90 New York Audio Productions (United States)'),
(8702, 'https://ror.org/05xt51492', 'no_lang_code', 1, 'https://ror.org/05xt51492 Octane (Canada)'),
(8703, 'https://ror.org/01c39ny75', 'no_lang_code', 1, 'https://ror.org/01c39ny75 OcuMetrics (United States)'),
(8704, 'https://ror.org/04wkjxj31', 'en', 1, 'https://ror.org/04wkjxj31 Phoenix Houses of New England'),
(8705, 'https://ror.org/03j9gnb02', 'no_lang_code', 1, 'https://ror.org/03j9gnb02 Ocutech (United States)'),
(8706, 'https://ror.org/037ytpe94', 'no_lang_code', 1, 'https://ror.org/037ytpe94 OEpic Semiconductors (United States)'),
(8707, 'https://ror.org/01xz1f624', 'no_lang_code', 1, 'https://ror.org/01xz1f624 OFM Research (United States)'),
(8708, 'https://ror.org/007m28f12', 'no_lang_code', 1, 'https://ror.org/007m28f12 Bio-Synthesis (United States)'),
(8709, 'https://ror.org/02gfbpn70', 'en', 1, 'https://ror.org/02gfbpn70 Ofwat'),
(8710, 'https://ror.org/03keahk34', 'no_lang_code', 1, 'https://ror.org/03keahk34 Auerbach Associates (United States)'),
(8711, 'https://ror.org/02f0ewv41', 'no_lang_code', 1, 'https://ror.org/02f0ewv41 OG Technologies (United States)'),
(8712, 'https://ror.org/03294gc92', 'no_lang_code', 1, 'https://ror.org/03294gc92 Audiology (United States)'),
(8713, 'https://ror.org/01p7ws813', 'no_lang_code', 1, 'https://ror.org/01p7ws813 Adamis Pharmaceuticals (United States)'),
(8714, 'https://ror.org/03337hf32', 'no_lang_code', 1, 'https://ror.org/03337hf32 AugmenTech (United States)'),
(8715, 'https://ror.org/04sp9ac55', 'no_lang_code', 1, 'https://ror.org/04sp9ac55 Ogilvy Public Relations (United States)'),
(8716, 'https://ror.org/012y1mj37', 'en', 1, 'https://ror.org/012y1mj37 Oglala Lakota College'),
(8717, 'https://ror.org/01vt38y66', 'no_lang_code', 1, 'https://ror.org/01vt38y66 PhosphorTech (United States)'),
(8718, 'https://ror.org/01s4ync39', 'no_lang_code', 1, 'https://ror.org/01s4ync39 AureoGen Biosciences (United States)'),
(8719, 'https://ror.org/053frny31', 'no_lang_code', 1, 'https://ror.org/053frny31 Photek (United Kingdom)'),
(8720, 'https://ror.org/024kwpx52', 'no_lang_code', 1, 'https://ror.org/024kwpx52 Auritec Pharmaceuticals (United States)'),
(8721, 'https://ror.org/03mex2a54', 'no_lang_code', 1, 'https://ror.org/03mex2a54 BioStrategies (United States)'),
(8722, 'https://ror.org/01bp1mp13', 'no_lang_code', 1, 'https://ror.org/01bp1mp13 Photodigm (United States)'),
(8723, 'https://ror.org/05xrhs889', 'no_lang_code', 1, 'https://ror.org/05xrhs889 Photon Etc (Canada)'),
(8724, 'https://ror.org/0110df420', 'no_lang_code', 1, 'https://ror.org/0110df420 Aurora Flight Sciences (United States)'),
(8725, 'https://ror.org/052k56z27', 'en', 1, 'https://ror.org/052k56z27 Austin College'),
(8726, 'https://ror.org/0094yx268', 'en', 1, 'https://ror.org/0094yx268 Philosophy of Science Association'),
(8727, 'https://ror.org/044tz3m61', 'en', 1, 'https://ror.org/044tz3m61 Austin Community College'),
(8728, 'https://ror.org/0186yvf62', 'en', 1, 'https://ror.org/0186yvf62 Australian Academy of Science'),
(8729, 'https://ror.org/05ft74b02', 'no_lang_code', 1, 'https://ror.org/05ft74b02 Photoswitch Biosciences (United States)'),
(8730, 'https://ror.org/04cpjyv67', 'en', 1, 'https://ror.org/04cpjyv67 Australian Academy of Technological Sciences and Engineering'),
(8731, 'https://ror.org/00nc89j94', 'en', 1, 'https://ror.org/00nc89j94 Australian Council of Learned Academies'),
(8732, 'https://ror.org/00jbqdn84', 'en', 1, 'https://ror.org/00jbqdn84 Oglala Sioux Tribal Council'),
(8733, 'https://ror.org/050ssvp08', 'en', 1, 'https://ror.org/050ssvp08 Ohio Academy of Science'),
(8734, 'https://ror.org/00hssfx27', 'no_lang_code', 1, 'https://ror.org/00hssfx27 Biothermal (United States)'),
(8735, 'https://ror.org/005nrbr06', 'no_lang_code', 1, 'https://ror.org/005nrbr06 Phrixus Pharmaceuticals (United States)'),
(8736, 'https://ror.org/03p711j77', 'en', 1, 'https://ror.org/03p711j77 Australian Institute of Nuclear Science and Engineering'),
(8737, 'https://ror.org/034y7by63', 'no_lang_code', 1, 'https://ror.org/034y7by63 Lineage Cell Therapeutics (United States)'),
(8738, 'https://ror.org/01bs8y378', 'no_lang_code', 1, 'https://ror.org/01bs8y378 Autoimmune Technologies (United States)'),
(8739, 'https://ror.org/00pmncr36', 'en', 1, 'https://ror.org/00pmncr36 Ohio Dominican University'),
(8740, 'https://ror.org/00g1g7t14', 'en', 1, 'https://ror.org/00g1g7t14 PHS Commissioned Officers Foundation'),
(8741, 'https://ror.org/03ya6pd97', 'no_lang_code', 1, 'https://ror.org/03ya6pd97 PDL BioPharma (United States)'),
(8742, 'https://ror.org/00xspzv28', 'en', 1, 'https://ror.org/00xspzv28 Ohio Department of Agriculture'),
(8743, 'https://ror.org/04vge0w88', 'no_lang_code', 1, 'https://ror.org/04vge0w88 BioVectra (Canada)'),
(8744, 'https://ror.org/0027jd641', 'no_lang_code', 1, 'https://ror.org/0027jd641 Cell Culture Company (United States)'),
(8745, 'https://ror.org/04363qc87', 'no_lang_code', 1, 'https://ror.org/04363qc87 Auxagen (United States)'),
(8746, 'https://ror.org/02w368938', 'no_lang_code', 1, 'https://ror.org/02w368938 PhysioGenix (United States)'),
(8747, 'https://ror.org/04dm6ed68', 'en', 1, 'https://ror.org/04dm6ed68 Birmingham City Council'),
(8748, 'https://ror.org/02vd9xc25', 'no_lang_code', 1, 'https://ror.org/02vd9xc25 Avacta (United Kingdom)'),
(8749, 'https://ror.org/00xe5zs60', 'en', 1, 'https://ror.org/00xe5zs60 Birmingham Women''s Hospital'),
(8750, 'https://ror.org/0070nx673', 'no_lang_code', 1, 'https://ror.org/0070nx673 Okino Computer Graphics (Canada)'),
(8751, 'https://ror.org/036vmnd51', 'en', 1, 'https://ror.org/036vmnd51 Bishop State Community College'),
(8752, 'https://ror.org/042fn4q48', 'en', 1, 'https://ror.org/042fn4q48 Bismarck State College'),
(8753, 'https://ror.org/05ng48n08', 'no_lang_code', 1, 'https://ror.org/05ng48n08 AvantGen (United States)'),
(8754, 'https://ror.org/028ffjf65', 'en', 1, 'https://ror.org/028ffjf65 Black Women’s Health Imperative'),
(8755, 'https://ror.org/02kgm7r43', 'en', 1, 'https://ror.org/02kgm7r43 Blackfeet Community College'),
(8756, 'https://ror.org/03n3jmy18', 'no_lang_code', 1, 'https://ror.org/03n3jmy18 Avanti Polar Lipids (United States)'),
(8757, 'https://ror.org/00bvzmn76', 'no_lang_code', 1, 'https://ror.org/00bvzmn76 Blackrock Microsystems (United States)'),
(8758, 'https://ror.org/04rk4wk39', 'no_lang_code', 1, 'https://ror.org/04rk4wk39 Phytronix (Canada)'),
(8759, 'https://ror.org/02yk9rt54', 'en', 1, 'https://ror.org/02yk9rt54 Blast Theory'),
(8760, 'https://ror.org/05d4gem91', 'no_lang_code', 1, 'https://ror.org/05d4gem91 BLH Technologies (United States)'),
(8761, 'https://ror.org/04gdk0x87', 'en', 1, 'https://ror.org/04gdk0x87 Bloomfield College'),
(8762, 'https://ror.org/009ht6s65', 'no_lang_code', 1, 'https://ror.org/009ht6s65 Picarro (United States)'),
(8763, 'https://ror.org/00qd89360', 'no_lang_code', 1, 'https://ror.org/00qd89360 PicoCal (United States)'),
(8764, 'https://ror.org/03gkbdq83', 'en', 1, 'https://ror.org/03gkbdq83 Education and Research Institute'),
(8765, 'https://ror.org/027qenx56', 'no_lang_code', 1, 'https://ror.org/027qenx56 Capcom Vancouver (Canada)'),
(8766, 'https://ror.org/03j7mxz67', 'no_lang_code', 1, 'https://ror.org/03j7mxz67 Omega Optics (United States)'),
(8767, 'https://ror.org/01j1pyg35', 'no_lang_code', 1, 'https://ror.org/01j1pyg35 OriGene (United States)'),
(8768, 'https://ror.org/05xb57658', 'no_lang_code', 1, 'https://ror.org/05xb57658 Aviagen (United Kingdom)'),
(8769, 'https://ror.org/039y7c549', 'en', 1, 'https://ror.org/039y7c549 Piedmont Technical College'),
(8770, 'https://ror.org/01ttkn505', 'en', 1, 'https://ror.org/01ttkn505 Biotechnical Services'),
(8771, 'https://ror.org/02tw58061', 'en', 1, 'https://ror.org/02tw58061 Piedmont Virginia Community College'),
(8772, 'https://ror.org/0125b2w26', 'no_lang_code', 1, 'https://ror.org/0125b2w26 OmegaChem (Canada)'),
(8773, 'https://ror.org/0117yy678', 'no_lang_code', 1, 'https://ror.org/0117yy678 BIT-TECH (United States)'),
(8774, 'https://ror.org/02f2ddv05', 'no_lang_code', 1, 'https://ror.org/02f2ddv05 Blue Spurs (Canada)'),
(8775, 'https://ror.org/033fyh879', 'no_lang_code', 1, 'https://ror.org/033fyh879 Omicia (United States)'),
(8776, 'https://ror.org/02bmj6022', 'no_lang_code', 1, 'https://ror.org/02bmj6022 Omneuron (United States)'),
(8777, 'https://ror.org/002kdhq94', 'no_lang_code', 1, 'https://ror.org/002kdhq94 Online Technologies (United States)'),
(8778, 'https://ror.org/006q1m605', 'no_lang_code', 1, 'https://ror.org/006q1m605 BlueInGreen (United States)'),
(8779, 'https://ror.org/02e71kh42', 'en', 1, 'https://ror.org/02e71kh42 Oncology Nursing Society'),
(8780, 'https://ror.org/023egfd39', 'no_lang_code', 1, 'https://ror.org/023egfd39 Onconova Therapeutics (United States)'),
(8781, 'https://ror.org/01m2bq033', 'no_lang_code', 1, 'https://ror.org/01m2bq033 BlueRISC (United States)'),
(8782, 'https://ror.org/0207cws49', 'no_lang_code', 1, 'https://ror.org/0207cws49 Oncor (United States)'),
(8783, 'https://ror.org/05pacqm37', 'en', 1, 'https://ror.org/05pacqm37 Bluffton University Universidad de Bluffton'),
(8784, 'https://ror.org/052v1zn95', 'no_lang_code', 1, 'https://ror.org/052v1zn95 Linde (United Kingdom)'),
(8785, 'https://ror.org/02ecczf03', 'en', 1, 'https://ror.org/02ecczf03 Ontario AIDS Network'),
(8786, 'https://ror.org/05chw4760', 'no_lang_code', 1, 'https://ror.org/05chw4760 Tekion (Canada)'),
(8787, 'https://ror.org/002vjkr06', 'en', 1, 'https://ror.org/002vjkr06 Pima Prevention Partnership'),
(8788, 'https://ror.org/028q4nk39', 'no_lang_code', 1, 'https://ror.org/028q4nk39 Pipehawk (United Kingdom)'),
(8789, 'https://ror.org/04a839673', 'no_lang_code', 1, 'https://ror.org/04a839673 Orkla (Norway)'),
(8790, 'https://ror.org/04tfmhy61', 'no_lang_code', 1, 'https://ror.org/04tfmhy61 Pipeline Industries Guild (United Kingdom)'),
(8791, 'https://ror.org/045p13n28', 'no_lang_code', 1, 'https://ror.org/045p13n28 Bossa Nova Technologies (United States)'),
(8792, 'https://ror.org/008h82p94', 'no_lang_code', 1, 'https://ror.org/008h82p94 Boston Applied Technologies (United States)'),
(8793, 'https://ror.org/05qnbjn88', 'no_lang_code', 1, 'https://ror.org/05qnbjn88 Opal-Rt Technologies (Canada)'),
(8794, 'https://ror.org/0336jnw26', 'en', 1, 'https://ror.org/0336jnw26 Pittsburgh Tissue Engineering Initiative'),
(8795, 'https://ror.org/022weqt39', 'no_lang_code', 1, 'https://ror.org/022weqt39 Planet Biotechnology (United States)'),
(8796, 'https://ror.org/016pn1y21', 'no_lang_code', 1, 'https://ror.org/016pn1y21 Axcelon Biopolymers (Canada)'),
(8797, 'https://ror.org/05vvg9554', 'en', 1, 'https://ror.org/05vvg9554 Planetary Science Institute'),
(8798, 'https://ror.org/01rwv9j63', 'en', 1, 'https://ror.org/01rwv9j63 Operation UNITE'),
(8799, 'https://ror.org/049aafr84', 'no_lang_code', 1, 'https://ror.org/049aafr84 Azevan Pharmaceuticals (United States)'),
(8800, 'https://ror.org/027892803', 'no_lang_code', 1, 'https://ror.org/027892803 Boston Medical Products (United States)'),
(8801, 'https://ror.org/05e1mzh65', 'no_lang_code', 1, 'https://ror.org/05e1mzh65 Ophir Corporation (United States)'),
(8802, 'https://ror.org/03bj7kr91', 'en', 1, 'https://ror.org/03bj7kr91 Boston Public Schools'),
(8803, 'https://ror.org/01xzapm83', 'no_lang_code', 1, 'https://ror.org/01xzapm83 Seamon (United States)'),
(8804, 'https://ror.org/02wxwab08', 'en', 1, 'https://ror.org/02wxwab08 Botanical Research Institute of Texas'),
(8805, 'https://ror.org/005yt8w56', 'no_lang_code', 1, 'https://ror.org/005yt8w56 Opotek (United States) Opotek Incorporation'),
(8806, 'https://ror.org/00bycf367', 'en', 1, 'https://ror.org/00bycf367 Botanical Society of America'),
(8807, 'https://ror.org/03ddbnh33', 'no_lang_code', 1, 'https://ror.org/03ddbnh33 Qinetiq (United States)'),
(8808, 'https://ror.org/05ws4x937', 'no_lang_code', 1, 'https://ror.org/05ws4x937 Optelian (Canada)'),
(8809, 'https://ror.org/00c211r48', 'no_lang_code', 1, 'https://ror.org/00c211r48 Boulder Language Technologies (United States)'),
(8810, 'https://ror.org/02rxmd442', 'no_lang_code', 1, 'https://ror.org/02rxmd442 Glyndwr Innovations (United Kingdom)'),
(8811, 'https://ror.org/00n8qbq54', 'no_lang_code', 1, 'https://ror.org/00n8qbq54 Meadowlark Optics (United States)'),
(8812, 'https://ror.org/03rvph505', 'en', 1, 'https://ror.org/03rvph505 Bacone College'),
(8813, 'https://ror.org/014hs3c68', 'no_lang_code', 1, 'https://ror.org/014hs3c68 Lend Lease (United Kingdom)'),
(8814, 'https://ror.org/02ts3bw45', 'no_lang_code', 1, 'https://ror.org/02ts3bw45 Plantvax (United States)'),
(8815, 'https://ror.org/00j10x245', 'no_lang_code', 1, 'https://ror.org/00j10x245 Plastic Logic (United Kingdom)'),
(8816, 'https://ror.org/00tz9e151', 'en', 1, 'https://ror.org/00tz9e151 Bakersfield College'),
(8817, 'https://ror.org/059xksf83', 'no_lang_code', 1, 'https://ror.org/059xksf83 Balfour Beatty (United Kingdom)'),
(8818, 'https://ror.org/00nvmqp29', 'no_lang_code', 1, 'https://ror.org/00nvmqp29 PlastiPure (United States)'),
(8819, 'https://ror.org/052v1k340', 'no_lang_code', 1, 'https://ror.org/052v1k340 DSM (Canada)'),
(8820, 'https://ror.org/04p4fvj07', 'no_lang_code', 1, 'https://ror.org/04p4fvj07 Brain Insights (United States)'),
(8821, 'https://ror.org/02peeh644', 'no_lang_code', 1, 'https://ror.org/02peeh644 HBP (United States)'),
(8822, 'https://ror.org/03b286288', 'en', 1, 'https://ror.org/03b286288 Baltimore City Community College'),
(8823, 'https://ror.org/039cthy03', 'en', 1, 'https://ror.org/039cthy03 Bamfield Marine Sciences Centre'),
(8824, 'https://ror.org/03gdmdz23', 'no_lang_code', 1, 'https://ror.org/03gdmdz23 Optimum Technologies (United States)'),
(8825, 'https://ror.org/04cy1f506', 'no_lang_code', 1, 'https://ror.org/04cy1f506 Optimum Therapeutics (United States)'),
(8826, 'https://ror.org/02rbnw681', 'no_lang_code', 1, 'https://ror.org/02rbnw681 Platypus Technologies (United States)'),
(8827, 'https://ror.org/04v44vh53', 'en', 1, 'https://ror.org/04v44vh53 Bank Street College of Education'),
(8828, 'https://ror.org/04657zp85', 'no_lang_code', 1, 'https://ror.org/04657zp85 Optivia Biotechnology (United States)'),
(8829, 'https://ror.org/03m2zdn30', 'no_lang_code', 1, 'https://ror.org/03m2zdn30 Plentyoffish Media (Canada)'),
(8830, 'https://ror.org/013rrw978', 'no_lang_code', 1, 'https://ror.org/013rrw978 Plexon (United States)'),
(8831, 'https://ror.org/00d2efr72', 'no_lang_code', 1, 'https://ror.org/00d2efr72 PLx Pharma (United States)'),
(8832, 'https://ror.org/05s793832', 'no_lang_code', 1, 'https://ror.org/05s793832 PMD Scientific (United States)'),
(8833, 'https://ror.org/02hvk4n65', 'en', 1, 'https://ror.org/02hvk4n65 Princeton Baptist Medical Center'),
(8834, 'https://ror.org/01s3wxs84', 'no_lang_code', 1, 'https://ror.org/01s3wxs84 Barrett Technology (United States)'),
(8835, 'https://ror.org/02gge8657', 'no_lang_code', 1, 'https://ror.org/02gge8657 Optra (United States)'),
(8836, 'https://ror.org/0248cgv13', 'no_lang_code', 1, 'https://ror.org/0248cgv13 Optron Systems (United States)'),
(8837, 'https://ror.org/04hbf1w31', 'no_lang_code', 1, 'https://ror.org/04hbf1w31 Bridger Photonics (United States)'),
(8838, 'https://ror.org/00xa0jd95', 'no_lang_code', 1, 'https://ror.org/00xa0jd95 Oralys (Canada)'),
(8839, 'https://ror.org/050wn8768', 'no_lang_code', 1, 'https://ror.org/050wn8768 BrightOutcome (United States)'),
(8840, 'https://ror.org/04a7hz119', 'en', 1, 'https://ror.org/04a7hz119 Orange County Bar Foundation'),
(8841, 'https://ror.org/03qkymy66', 'no_lang_code', 1, 'https://ror.org/03qkymy66 Polaris Health Direction'),
(8842, 'https://ror.org/052gyrt19', 'no_lang_code', 1, 'https://ror.org/052gyrt19 Polatomic (United States)'),
(8843, 'https://ror.org/05e168j76', 'en', 1, 'https://ror.org/05e168j76 Bristol Community College'),
(8844, 'https://ror.org/03f8h8g06', 'en', 1, 'https://ror.org/03f8h8g06 Basic NWFL'),
(8845, 'https://ror.org/00t3pr326', 'en', 1, 'https://ror.org/00t3pr326 British Council'),
(8846, 'https://ror.org/02cvrf195', 'no_lang_code', 1, 'https://ror.org/02cvrf195 Polestar Technologies (United States)'),
(8847, 'https://ror.org/0384y3666', 'en', 1, 'https://ror.org/0384y3666 Police Forensic Science Laboratory Dundee'),
(8848, 'https://ror.org/005296895', 'en', 1, 'https://ror.org/005296895 BOOMHealth'),
(8849, 'https://ror.org/030wd1008', 'no_lang_code', 1, 'https://ror.org/030wd1008 Orbis Biosciences (United States)'),
(8850, 'https://ror.org/00rbdbh54', 'no_lang_code', 1, 'https://ror.org/00rbdbh54 Orbital Research (United States)'),
(8851, 'https://ror.org/00s9hg791', 'en', 1, 'https://ror.org/00s9hg791 Polisher Research Institute'),
(8852, 'https://ror.org/015pg1163', 'no_lang_code', 1, 'https://ror.org/015pg1163 Orcca Technology (United States)'),
(8853, 'https://ror.org/00k0t0t25', 'en', 1, 'https://ror.org/00k0t0t25 BC Centre for Aquatic Health Sciences'),
(8854, 'https://ror.org/04tq0y441', 'no_lang_code', 1, 'https://ror.org/04tq0y441 Poly Med (United States)'),
(8855, 'https://ror.org/05twxmr11', 'no_lang_code', 1, 'https://ror.org/05twxmr11 Brooks Automation (United States)'),
(8856, 'https://ror.org/033n9f723', 'no_lang_code', 1, 'https://ror.org/033n9f723 Polyglot Systems (United States)'),
(8857, 'https://ror.org/02jj1w915', 'en', 1, 'https://ror.org/02jj1w915 Broward College'),
(8858, 'https://ror.org/03me92s48', 'no_lang_code', 1, 'https://ror.org/03me92s48 Bechtel (United States)'),
(8859, 'https://ror.org/00st10308', 'no_lang_code', 1, 'https://ror.org/00st10308 Behavioral Assessment Incorporation (United States)'),
(8860, 'https://ror.org/05wr6e156', 'no_lang_code', 1, 'https://ror.org/05wr6e156 Bruce Technologies (United States)'),
(8861, 'https://ror.org/03xwzwa59', 'en', 1, 'https://ror.org/03xwzwa59 Behavior Therapy Associates'),
(8862, 'https://ror.org/054spa083', 'en', 1, 'https://ror.org/054spa083 Oregon Health Authority'),
(8863, 'https://ror.org/04excst21', 'no_lang_code', 1, 'https://ror.org/04excst21 Bruker (Germany)'),
(8864, 'https://ror.org/03jmm5353', 'en', 1, 'https://ror.org/03jmm5353 Lines for Life'),
(8865, 'https://ror.org/03jcrb831', 'no_lang_code', 1, 'https://ror.org/03jcrb831 Behavioral Research Incorporated (United States)'),
(8866, 'https://ror.org/05gr4yv49', 'en', 1, 'https://ror.org/05gr4yv49 Bellevue College'),
(8867, 'https://ror.org/04vgpn643', 'en', 1, 'https://ror.org/04vgpn643 Belmont Center for Comprehensive Treatment'),
(8868, 'https://ror.org/04ng6c812', 'no_lang_code', 1, 'https://ror.org/04ng6c812 Buffalo BioLabs'),
(8869, 'https://ror.org/03x1cjm87', 'en', 1, 'https://ror.org/03x1cjm87 Population Services International'),
(8870, 'https://ror.org/011hsx378', 'no_lang_code', 1, 'https://ror.org/011hsx378 PortaScience (United States)'),
(8871, 'https://ror.org/05r3ht428', 'en', 1, 'https://ror.org/05r3ht428 Bunker Hill Community College'),
(8872, 'https://ror.org/03n5jt416', 'no_lang_code', 1, 'https://ror.org/03n5jt416 Capsugel (United States)'),
(8873, 'https://ror.org/0508zfs37', 'no_lang_code', 1, 'https://ror.org/0508zfs37 Porter Novelli (United States)'),
(8874, 'https://ror.org/0221y9f82', 'no_lang_code', 1, 'https://ror.org/0221y9f82 Beneficial Designs (United States)'),
(8875, 'https://ror.org/04dc68s79', 'no_lang_code', 1, 'https://ror.org/04dc68s79 Magellan Aerospace (Canada)'),
(8876, 'https://ror.org/01pq38j30', 'en', 1, 'https://ror.org/01pq38j30 Bennington College'),
(8877, 'https://ror.org/02zq8st27', 'en', 1, 'https://ror.org/02zq8st27 Butte College'),
(8878, 'https://ror.org/0253ddj72', 'en', 1, 'https://ror.org/0253ddj72 Portland Cement Association'),
(8879, 'https://ror.org/05jg03a59', 'en', 1, 'https://ror.org/05jg03a59 Butterfly Conservation'),
(8880, 'https://ror.org/05ca9hc42', 'no_lang_code', 1, 'https://ror.org/05ca9hc42 Bentley (Canada)'),
(8881, 'https://ror.org/0111gm575', 'en', 1, 'https://ror.org/0111gm575 Positive Living Society of British Columbia'),
(8882, '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'),
(8883, 'https://ror.org/005pxtk56', 'no_lang_code', 1, 'https://ror.org/005pxtk56 Cabezon Group (United States)'),
(8884, 'https://ror.org/05hzjby53', 'no_lang_code', 1, 'https://ror.org/05hzjby53 Potomac Affinity Proteins (United States)'),
(8885, 'https://ror.org/03rxt9r79', 'en', 1, 'https://ror.org/03rxt9r79 Computer Aids for Chemical Engineering'),
(8886, 'https://ror.org/003hr6w03', 'en', 1, 'https://ror.org/003hr6w03 MotherToBaby'),
(8887, 'https://ror.org/01kpfrj42', 'no_lang_code', 1, 'https://ror.org/01kpfrj42 Potomac Photonics (United States)'),
(8888, 'https://ror.org/04k6d6v57', 'no_lang_code', 1, 'https://ror.org/04k6d6v57 CJ America (United States)'),
(8889, 'https://ror.org/026zvyv64', 'no_lang_code', 1, 'https://ror.org/026zvyv64 Assystem (Germany)'),
(8890, 'https://ror.org/03qz4w368', 'no_lang_code', 1, 'https://ror.org/03qz4w368 PowerWorld (United States)'),
(8891, 'https://ror.org/05r4dzd29', 'no_lang_code', 1, 'https://ror.org/05r4dzd29 Organizational Wellness and Learning Systems'),
(8892, 'https://ror.org/01sjx9496', 'no_lang_code', 1, 'https://ror.org/01sjx9496 Pharmaceutical Product Development (United States)'),
(8893, 'https://ror.org/00txp6z67', 'en', 1, 'https://ror.org/00txp6z67 Prairie Agricultural Machinery Institute'),
(8894, 'https://ror.org/005kxm139', 'no_lang_code', 1, 'https://ror.org/005kxm139 Bridge12 Technologies (United States)'),
(8895, 'https://ror.org/04anx0s86', 'no_lang_code', 1, 'https://ror.org/04anx0s86 Originus (United States)'),
(8896, 'https://ror.org/03aywkz50', 'en', 1, 'https://ror.org/03aywkz50 Bethel College - Kansas'),
(8897, 'https://ror.org/03dzg6f89', 'en', 1, 'https://ror.org/03dzg6f89 Bevill State Community College'),
(8898, 'https://ror.org/038eqqh78', 'no_lang_code', 1, 'https://ror.org/038eqqh78 Lockheed Martin Orincon (United States)'),
(8899, 'https://ror.org/04nah6p89', 'no_lang_code', 1, 'https://ror.org/04nah6p89 eHuman (United States)'),
(8900, 'https://ror.org/04r739x86', 'no_lang_code', 1, 'https://ror.org/04r739x86 Bruker (United States)'),
(8901, 'https://ror.org/04xz4db24', 'no_lang_code', 1, 'https://ror.org/04xz4db24 Caelum Research Corporation (United States)'),
(8902, 'https://ror.org/00qd6sx31', 'no_lang_code', 1, 'https://ror.org/00qd6sx31 Orphagen Pharmaceuticals (United States)'),
(8903, 'https://ror.org/03nrae010', 'no_lang_code', 1, 'https://ror.org/03nrae010 Orthocare Innovations (United States)'),
(8904, 'https://ror.org/00csvwd48', 'no_lang_code', 1, 'https://ror.org/00csvwd48 Capstone Therapeutics (United States)'),
(8905, 'https://ror.org/00h0zmy35', 'en', 1, 'https://ror.org/00h0zmy35 Bienestar'),
(8906, 'https://ror.org/05qpxvt33', 'fr', 1, 'https://ror.org/05qpxvt33 CafƩ Scientifique'),
(8907, 'https://ror.org/05ebz1r33', 'en', 1, 'https://ror.org/05ebz1r33 Big Little Science Centre'),
(8908, 'https://ror.org/01x9bq055', 'no_lang_code', 1, 'https://ror.org/01x9bq055 Cairn Research (United Kingdom)'),
(8909, 'https://ror.org/034b18290', 'no_lang_code', 1, 'https://ror.org/034b18290 Precision Combustion (United States)'),
(8910, 'https://ror.org/048bsds49', 'no_lang_code', 1, 'https://ror.org/048bsds49 Osel (United States)'),
(8911, 'https://ror.org/058deva64', 'no_lang_code', 1, 'https://ror.org/058deva64 Bio Concept Laboratories (United States)'),
(8912, 'https://ror.org/034948b51', 'en', 1, 'https://ror.org/034948b51 Calhoun Community College'),
(8913, 'https://ror.org/05pw69n24', 'no_lang_code', 1, 'https://ror.org/05pw69n24 Astellas Pharma (United States)'),
(8914, 'https://ror.org/0458r0456', 'no_lang_code', 1, 'https://ror.org/0458r0456 RxSight (United States)'),
(8915, 'https://ror.org/05yab6874', 'no_lang_code', 1, 'https://ror.org/05yab6874 Varian Associates Varian Medical Systems (United States)'),
(8916, 'https://ror.org/02qjtm453', 'no_lang_code', 1, 'https://ror.org/02qjtm453 Natus (United States)'),
(8917, 'https://ror.org/03k285c10', 'no_lang_code', 1, 'https://ror.org/03k285c10 Polaris Motion (Canada)'),
(8918, 'https://ror.org/05a6emh10', 'en', 1, 'https://ror.org/05a6emh10 Osteogenesis Imperfecta Foundation'),
(8919, 'https://ror.org/053efmw82', 'no_lang_code', 1, 'https://ror.org/053efmw82 Precision Optics Corporation (United States)'),
(8920, 'https://ror.org/01ms1q761', 'no_lang_code', 1, 'https://ror.org/01ms1q761 Bio Signal Group (United States)'),
(8921, 'https://ror.org/0114c6692', 'no_lang_code', 1, 'https://ror.org/0114c6692 Prediction Sciences (United States)'),
(8922, 'https://ror.org/02mznah18', 'no_lang_code', 1, 'https://ror.org/02mznah18 Bioanalytical Systems (United States)'),
(8923, 'https://ror.org/04zhxxe39', 'en', 1, 'https://ror.org/04zhxxe39 Osys Technology'),
(8924, 'https://ror.org/00cvaph79', 'en', 1, 'https://ror.org/00cvaph79 BioNB'),
(8925, 'https://ror.org/04zttqy84', 'no_lang_code', 1, 'https://ror.org/04zttqy84 Predictive Biology (United States)'),
(8926, 'https://ror.org/05canvq15', 'no_lang_code', 1, 'https://ror.org/05canvq15 Predictive Science (United States)'),
(8927, 'https://ror.org/056qyhq36', 'en', 1, 'https://ror.org/056qyhq36 Preferred Family Healthcare'),
(8928, 'https://ror.org/008tdn922', 'no_lang_code', 1, 'https://ror.org/008tdn922 Premier Foods (United Kingdom)'),
(8929, 'https://ror.org/05b923192', 'no_lang_code', 1, 'https://ror.org/05b923192 Premitec (United States)'),
(8930, 'https://ror.org/02sgyhv62', 'en', 1, 'https://ror.org/02sgyhv62 California Family Health Council'),
(8931, 'https://ror.org/02j2j9d52', 'no_lang_code', 1, 'https://ror.org/02j2j9d52 Prentke Romich Company (United States)'),
(8932, 'https://ror.org/04r28v857', 'en', 1, 'https://ror.org/04r28v857 California Institute for Biomedical Research'),
(8933, 'https://ror.org/01s9sxm36', 'en', 1, 'https://ror.org/01s9sxm36 Presbyterian College'),
(8934, 'https://ror.org/000fmbj50', 'en', 1, 'https://ror.org/000fmbj50 California Rural Indian Health Board'),
(8935, 'https://ror.org/01e6deg73', 'en', 1, 'https://ror.org/01e6deg73 Baylor College of Medicine Children’s Foundation'),
(8936, 'https://ror.org/05crd7855', 'en', 1, 'https://ror.org/05crd7855 Prescott College'),
(8937, 'https://ror.org/00m2wsh37', 'no_lang_code', 1, 'https://ror.org/00m2wsh37 PricewaterhouseCoopers (Canada)'),
(8938, 'https://ror.org/02f67ap41', 'en', 1, 'https://ror.org/02f67ap41 Presentation College'),
(8939, 'https://ror.org/00ab7ks98', 'en', 1, 'https://ror.org/00ab7ks98 W.M. Keck Observatory'),
(8940, 'https://ror.org/02res4f29', 'en', 1, 'https://ror.org/02res4f29 Overseas Development Institute'),
(8941, 'https://ror.org/05nen6796', 'no_lang_code', 1, 'https://ror.org/05nen6796 Synergy Pharmaceuticals (United States)'),
(8942, 'https://ror.org/01fbet514', 'no_lang_code', 1, 'https://ror.org/01fbet514 BioChem Technology (United States)'),
(8943, 'https://ror.org/04n3aca14', 'no_lang_code', 1, 'https://ror.org/04n3aca14 Owlstone Medical (United Kingdom)'),
(8944, 'https://ror.org/05sxp6402', 'no_lang_code', 1, 'https://ror.org/05sxp6402 Oxford Gene Technology (United Kingdom)'),
(8945, 'https://ror.org/049zatd98', 'no_lang_code', 1, 'https://ror.org/049zatd98 Oxford Instruments (United Kingdom)'),
(8946, 'https://ror.org/00djyb934', 'no_lang_code', 1, 'https://ror.org/00djyb934 Oxford Lasers (United Kingdom)'),
(8947, 'https://ror.org/033sk1c45', 'en', 1, 'https://ror.org/033sk1c45 Prestera Center'),
(8948, 'https://ror.org/04hmrvg91', 'no_lang_code', 1, 'https://ror.org/04hmrvg91 Dover (United States)'),
(8949, 'https://ror.org/041ehbk97', 'no_lang_code', 1, 'https://ror.org/041ehbk97 Cambrian Innovation (United States)'),
(8950, 'https://ror.org/02k5g8c37', 'no_lang_code', 1, 'https://ror.org/02k5g8c37 BioDetection Instruments (United States)'),
(8951, 'https://ror.org/00anthv74', 'no_lang_code', 1, 'https://ror.org/00anthv74 P&P Optica (Canada)'),
(8952, 'https://ror.org/059tkh055', 'no_lang_code', 1, 'https://ror.org/059tkh055 MYcroarray (United States)'),
(8953, 'https://ror.org/00zdmbm57', 'no_lang_code', 1, 'https://ror.org/00zdmbm57 Premiere Global Services (United States)'),
(8954, 'https://ror.org/03zhs1016', 'no_lang_code', 1, 'https://ror.org/03zhs1016 Primorigen Biosciences (United States)'),
(8955, 'https://ror.org/03y756411', 'no_lang_code', 1, 'https://ror.org/03y756411 Pulse Biosciences (United States)'),
(8956, 'https://ror.org/001s4dh65', 'no_lang_code', 1, 'https://ror.org/001s4dh65 Cambridge Scientific (United States)'),
(8957, 'https://ror.org/00pmfef67', 'en', 1, 'https://ror.org/00pmfef67 Camden County College'),
(8958, 'https://ror.org/05bdncw68', 'no_lang_code', 1, 'https://ror.org/05bdncw68 BioFine International (Canada)'),
(8959, 'https://ror.org/00fcszb13', 'no_lang_code', 1, 'https://ror.org/00fcszb13 Pacific Biosciences (United States)'),
(8960, 'https://ror.org/04zs6dw65', 'en', 1, 'https://ror.org/04zs6dw65 Pacific Resources for Education and Learning'),
(8961, 'https://ror.org/01tv6se08', 'no_lang_code', 1, 'https://ror.org/01tv6se08 Prism Clinical Imaging (United States)'),
(8962, 'https://ror.org/02edynn23', 'no_lang_code', 1, 'https://ror.org/02edynn23 BioFormatix (United States)'),
(8963, 'https://ror.org/01mq7rh19', 'no_lang_code', 1, 'https://ror.org/01mq7rh19 Biogate Laboratories (Canada)'),
(8964, 'https://ror.org/0418y1915', 'no_lang_code', 1, 'https://ror.org/0418y1915 Photonic BioSystems (United States)'),
(8965, 'https://ror.org/03tmrv747', 'no_lang_code', 1, 'https://ror.org/03tmrv747 Pro Change Behavior Systems (United States)'),
(8966, 'https://ror.org/00hveka38', 'en', 1, 'https://ror.org/00hveka38 Paine College'),
(8967, 'https://ror.org/01mntwa59', 'no_lang_code', 1, 'https://ror.org/01mntwa59 Palatin Technologies (United States)'),
(8968, 'https://ror.org/057yn3648', 'no_lang_code', 1, 'https://ror.org/057yn3648 Pro Ed (United States)'),
(8969, 'https://ror.org/01aegrf07', 'en', 1, 'https://ror.org/01aegrf07 Canadian AIDS Society SociƩtƩ Canadienne du Sida'),
(8970, 'https://ror.org/05b68f622', 'no_lang_code', 1, 'https://ror.org/05b68f622 Process Simulations Limited (Canada)'),
(8971, 'https://ror.org/03fwae819', 'en', 1, 'https://ror.org/03fwae819 Canadian AIDS Treatment Information Exchange'),
(8972, 'https://ror.org/03xr1d353', 'no_lang_code', 1, 'https://ror.org/03xr1d353 BioLinx (United States)'),
(8973, 'https://ror.org/04hw9y579', 'no_lang_code', 1, 'https://ror.org/04hw9y579 Pall Corporation (United Kingdom)'),
(8974, 'https://ror.org/02av0ty63', 'no_lang_code', 1, 'https://ror.org/02av0ty63 Palladian Partners'),
(8975, 'https://ror.org/02t3wzq80', 'en', 1, 'https://ror.org/02t3wzq80 Palm Beach State College'),
(8976, 'https://ror.org/05amq4n56', 'no_lang_code', 1, 'https://ror.org/05amq4n56 Biological Monitoring Incorporated (United States)'),
(8977, 'https://ror.org/02n2p7c30', 'en', 1, 'https://ror.org/02n2p7c30 Canadian Association of Psychosocial Oncology'),
(8978, 'https://ror.org/010r07h95', 'no_lang_code', 1, 'https://ror.org/010r07h95 Halma Water Management (United Kingdom)'),
(8979, 'https://ror.org/01eqrs044', 'no_lang_code', 1, 'https://ror.org/01eqrs044 Sensei Biotherapeutics (United States)'),
(8980, 'https://ror.org/02m1cy121', 'no_lang_code', 1, 'https://ror.org/02m1cy121 Prodrive (United Kingdom)'),
(8981, 'https://ror.org/053pe9m10', 'en', 1, 'https://ror.org/053pe9m10 Canadian Coalition for Global Health Research'),
(8982, 'https://ror.org/02y447018', 'en', 1, 'https://ror.org/02y447018 Canadian Council on Animal Care'),
(8983, 'https://ror.org/027as9m12', 'en', 1, 'https://ror.org/027as9m12 Canadian Obesity Network RĆ©seau Canadien en l’ObĆ©sitĆ©');
INSERT INTO `rors` VALUES
(8984, 'https://ror.org/016mnbp44', 'no_lang_code', 1, 'https://ror.org/016mnbp44 Vi Technology (United States)'),
(8985, 'https://ror.org/03qs03z89', 'en', 1, 'https://ror.org/03qs03z89 Progeria Research Foundation'),
(8986, 'https://ror.org/05y2d8w36', 'no_lang_code', 1, 'https://ror.org/05y2d8w36 Biomedica Management (United States)'),
(8987, 'https://ror.org/03se9cq71', 'no_lang_code', 1, 'https://ror.org/03se9cq71 Panasonic (United Kingdom)'),
(8988, 'https://ror.org/02y2p9e58', 'no_lang_code', 1, 'https://ror.org/02y2p9e58 Prognosys Biosciences (United States)'),
(8989, 'https://ror.org/00gwpva83', 'en', 1, 'https://ror.org/00gwpva83 Progress Educational Trust'),
(8990, 'https://ror.org/01pg2qx87', 'en', 1, 'https://ror.org/01pg2qx87 Cambridge City Council'),
(8991, 'https://ror.org/02yx0gd46', 'no_lang_code', 1, 'https://ror.org/02yx0gd46 Biomedical Frontiers (United States)'),
(8992, 'https://ror.org/057xckz35', 'no_lang_code', 1, 'https://ror.org/057xckz35 Papa Ola Lokahi'),
(8993, 'https://ror.org/037ndkh53', 'no_lang_code', 1, 'https://ror.org/037ndkh53 Biomedical Research Models (United States)'),
(8994, 'https://ror.org/03561g010', 'no_lang_code', 1, 'https://ror.org/03561g010 Canadian Green Tech (Canada)'),
(8995, 'https://ror.org/00ejq5880', 'no_lang_code', 1, 'https://ror.org/00ejq5880 BioMedomics (United States)'),
(8996, 'https://ror.org/04fm85d87', 'en', 1, 'https://ror.org/04fm85d87 Brevard County Board of County Commissioners'),
(8997, 'https://ror.org/03rdrc196', 'no_lang_code', 1, 'https://ror.org/03rdrc196 Parallel Synthesis Technologies (United States)'),
(8998, 'https://ror.org/02bfrb046', 'no_lang_code', 1, 'https://ror.org/02bfrb046 Polysciences (United States)'),
(8999, 'https://ror.org/02wv25745', 'no_lang_code', 1, 'https://ror.org/02wv25745 ParaTechs (United States)'),
(9000, 'https://ror.org/023ymdw14', 'no_lang_code', 1, 'https://ror.org/023ymdw14 Canadian Electric Vehicles (Canada)'),
(9001, 'https://ror.org/05epvtb78', 'no_lang_code', 1, 'https://ror.org/05epvtb78 Parion Sciences (United States)'),
(9002, 'https://ror.org/03d5v2a18', 'no_lang_code', 1, 'https://ror.org/03d5v2a18 CanAm Bioresearch (Canada)'),
(9003, 'https://ror.org/03re1za85', 'en', 1, 'https://ror.org/03re1za85 QuƩbec International'),
(9004, 'https://ror.org/02wjx3n88', 'no_lang_code', 1, 'https://ror.org/02wjx3n88 Biomomentum (Canada)'),
(9005, 'https://ror.org/00ytr4473', 'no_lang_code', 1, 'https://ror.org/00ytr4473 Opmedic Group (Canada)'),
(9006, 'https://ror.org/04brs8j34', 'no_lang_code', 1, 'https://ror.org/04brs8j34 Bionetics (United States)'),
(9007, 'https://ror.org/045v29b75', 'no_lang_code', 1, 'https://ror.org/045v29b75 Bioo Scientific (United States)'),
(9008, 'https://ror.org/05feyya22', 'no_lang_code', 1, 'https://ror.org/05feyya22 Cancer Genetics (United States)'),
(9009, 'https://ror.org/03ac8kh32', 'no_lang_code', 1, 'https://ror.org/03ac8kh32 BioPAL (United States)'),
(9010, 'https://ror.org/026x7hp94', 'no_lang_code', 1, 'https://ror.org/026x7hp94 Biopeptide (United States)'),
(9011, 'https://ror.org/0016z8240', 'no_lang_code', 1, 'https://ror.org/0016z8240 Liminal BioSciences (Canada)'),
(9012, 'https://ror.org/05gf8nd15', 'en', 1, 'https://ror.org/05gf8nd15 Parkland College'),
(9013, 'https://ror.org/02gxky474', 'en', 1, 'https://ror.org/02gxky474 Association of State Supervisors of Mathematics'),
(9014, 'https://ror.org/0282bjj02', 'no_lang_code', 1, 'https://ror.org/0282bjj02 Promiliad Biopharma (United States)'),
(9015, 'https://ror.org/00cyfck94', 'no_lang_code', 1, 'https://ror.org/00cyfck94 Parsons Brinckerhoff'),
(9016, 'https://ror.org/03v53q116', 'no_lang_code', 1, 'https://ror.org/03v53q116 ProSci Incorporated (United States)'),
(9017, 'https://ror.org/05kq0x475', 'no_lang_code', 1, 'https://ror.org/05kq0x475 ProSensus (Canada)'),
(9018, 'https://ror.org/023zey656', 'en', 1, 'https://ror.org/023zey656 Biophysical Society'),
(9019, 'https://ror.org/020q1kr70', 'en', 1, 'https://ror.org/020q1kr70 Premier Community Health'),
(9020, 'https://ror.org/00bppv849', 'en', 1, 'https://ror.org/00bppv849 National Partnership for Environmental Technology Education'),
(9021, 'https://ror.org/05xgfg578', 'en', 1, 'https://ror.org/05xgfg578 Partnership Group for Science and Engineering'),
(9022, 'https://ror.org/01dk4b453', 'en', 1, 'https://ror.org/01dk4b453 Pasadena City College'),
(9023, 'https://ror.org/0174vdd62', 'no_lang_code', 1, 'https://ror.org/0174vdd62 Pasadero (United States)'),
(9024, 'https://ror.org/01f3qhk13', 'en', 1, 'https://ror.org/01f3qhk13 Riekes Center for Human Enhancement'),
(9025, 'https://ror.org/002mbwb34', 'en', 1, 'https://ror.org/002mbwb34 Passaic County Community College'),
(9026, 'https://ror.org/0273kmy05', 'no_lang_code', 1, 'https://ror.org/0273kmy05 Passat (Canada)'),
(9027, 'https://ror.org/04znr7t37', 'en', 1, 'https://ror.org/04znr7t37 Cankdeska Cikana Community College'),
(9028, 'https://ror.org/00tbsgb37', 'no_lang_code', 1, 'https://ror.org/00tbsgb37 PAI Life Sciences (United States)'),
(9029, 'https://ror.org/04t9p3q02', 'no_lang_code', 1, 'https://ror.org/04t9p3q02 Protein Potential (United States)'),
(9030, 'https://ror.org/047na1w09', 'no_lang_code', 1, 'https://ror.org/047na1w09 Patheon (Canada)'),
(9031, 'https://ror.org/005j1v069', 'en', 1, 'https://ror.org/005j1v069 Pathfinder International'),
(9032, 'https://ror.org/059bxva30', 'no_lang_code', 1, 'https://ror.org/059bxva30 Therapeutic Proteins International (United States)'),
(9033, 'https://ror.org/04hs39d68', 'no_lang_code', 1, 'https://ror.org/04hs39d68 Pattern Discovery Technologies (Canada)'),
(9034, 'https://ror.org/00eqjxv60', 'no_lang_code', 1, 'https://ror.org/00eqjxv60 Capital Consulting Corporation (United States)'),
(9035, 'https://ror.org/04m647t46', 'no_lang_code', 1, 'https://ror.org/04m647t46 Pd Ld (United States)'),
(9036, 'https://ror.org/045ej2q36', 'en', 1, 'https://ror.org/045ej2q36 Capitol Technology University'),
(9037, 'https://ror.org/03xwja043', 'no_lang_code', 1, 'https://ror.org/03xwja043 Pacific Design Technologies (United States)'),
(9038, 'https://ror.org/04cxz3q70', 'no_lang_code', 1, 'https://ror.org/04cxz3q70 CarboMer (United States)'),
(9039, 'https://ror.org/03re9hr91', 'no_lang_code', 1, 'https://ror.org/03re9hr91 Peake DeLancey Printers (United States)'),
(9040, 'https://ror.org/04qadzg65', 'no_lang_code', 1, 'https://ror.org/04qadzg65 CardioFocus (United States)'),
(9041, 'https://ror.org/033h8cb51', 'no_lang_code', 1, 'https://ror.org/033h8cb51 Cardiome (Canada)'),
(9042, 'https://ror.org/057v10231', 'no_lang_code', 1, 'https://ror.org/057v10231 AdvanSource Biomaterials (United States)'),
(9043, 'https://ror.org/03fz0tx04', 'no_lang_code', 1, 'https://ror.org/03fz0tx04 ProteoTech (United States)'),
(9044, 'https://ror.org/03yzb9c23', 'no_lang_code', 1, 'https://ror.org/03yzb9c23 ProThera Biologics (United States)'),
(9045, 'https://ror.org/04k6mhf37', 'no_lang_code', 1, 'https://ror.org/04k6mhf37 Pelamis Wave Power (United Kingdom)'),
(9046, 'https://ror.org/04ffkmr54', 'en', 1, 'https://ror.org/04ffkmr54 Pellissippi State Community College'),
(9047, 'https://ror.org/03xha5352', 'no_lang_code', 1, 'https://ror.org/03xha5352 Carl Zeiss (United Kingdom)'),
(9048, 'https://ror.org/038espn32', 'en', 1, 'https://ror.org/038espn32 CARE USA'),
(9049, 'https://ror.org/030p0vr95', 'no_lang_code', 1, 'https://ror.org/030p0vr95 Proton OnSite (United States)'),
(9050, 'https://ror.org/02c761853', 'no_lang_code', 1, 'https://ror.org/02c761853 Proto Corporation (United States)'),
(9051, 'https://ror.org/007mg2f66', 'no_lang_code', 1, 'https://ror.org/007mg2f66 Prototypes (United States)'),
(9052, 'https://ror.org/024dad879', 'no_lang_code', 1, 'https://ror.org/024dad879 Provid Pharmaceuticals (United States)'),
(9053, 'https://ror.org/01mb01m85', 'no_lang_code', 1, 'https://ror.org/01mb01m85 HEICO (United States)'),
(9054, 'https://ror.org/0466ddw04', 'no_lang_code', 1, 'https://ror.org/0466ddw04 PRP Architects (United Kingdom)'),
(9055, 'https://ror.org/01v66s741', 'no_lang_code', 1, 'https://ror.org/01v66s741 3D-Micromac (Germany)'),
(9056, 'https://ror.org/05c244n89', 'no_lang_code', 1, 'https://ror.org/05c244n89 Cedrat Technologies (France)'),
(9057, 'https://ror.org/03d33vh19', 'no_lang_code', 1, 'https://ror.org/03d33vh19 3E (Belgium)'),
(9058, 'https://ror.org/02vpzy864', 'no_lang_code', 1, 'https://ror.org/02vpzy864 4D Soft (Hungary)'),
(9059, 'https://ror.org/00k7znw93', 'no_lang_code', 1, 'https://ror.org/00k7znw93 5T Torino (Italy)'),
(9060, 'https://ror.org/00w2qec28', 'no_lang_code', 1, 'https://ror.org/00w2qec28 6WIND (France)'),
(9061, 'https://ror.org/01ng18e06', 'no_lang_code', 1, 'https://ror.org/01ng18e06 A K Industries (United Kingdom)'),
(9062, 'https://ror.org/03nsnsd97', 'no_lang_code', 1, 'https://ror.org/03nsnsd97 Celaya, Emparanza y Galdos Internacional (Spain)'),
(9063, 'https://ror.org/02dc0q644', 'en', 1, 'https://ror.org/02dc0q644 Psychological Health Associates'),
(9064, 'https://ror.org/05svaqs46', 'no_lang_code', 1, 'https://ror.org/05svaqs46 Psychology Software Tools (United States)'),
(9065, 'https://ror.org/00trk2663', 'no_lang_code', 1, 'https://ror.org/00trk2663 PTAC (United States)'),
(9066, 'https://ror.org/02pfhsd84', 'en', 1, 'https://ror.org/02pfhsd84 A.V. Luikov Heat and Mass Transfer Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ тепло- Šø массообмена имени А.Š’. Лыкова ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(9067, 'https://ror.org/016t6qg15', 'no_lang_code', 1, 'https://ror.org/016t6qg15 PENTAX Medical Company (United States)'),
(9068, 'https://ror.org/01jgbgc06', 'en', 1, 'https://ror.org/01jgbgc06 A.V. Topchiev Institute of Petrochemical Synthesis Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефтехимического синтеза им. А.Š’.Топчиева'),
(9069, 'https://ror.org/02ht85g63', 'no_lang_code', 1, 'https://ror.org/02ht85g63 A4F-Algafuel (Portugal)'),
(9070, 'https://ror.org/040s79h05', 'no_lang_code', 1, 'https://ror.org/040s79h05 Cenergia (Denmark)'),
(9071, 'https://ror.org/02ygwnf45', 'no_lang_code', 1, 'https://ror.org/02ygwnf45 Public Data Queries (United States)'),
(9072, 'https://ror.org/00reyxa23', 'no_lang_code', 1, 'https://ror.org/00reyxa23 Cenix BioScience (Germany)'),
(9073, 'https://ror.org/04kcs0d25', 'pt', 1, 'https://ror.org/04kcs0d25 AgĆŖncia Para a Energia'),
(9074, 'https://ror.org/04rjtde10', 'no_lang_code', 1, 'https://ror.org/04rjtde10 Perceptronics Solutions (United States)'),
(9075, 'https://ror.org/00ar79186', 'no_lang_code', 1, 'https://ror.org/00ar79186 Performance Polymer Solutions (United States)'),
(9076, 'https://ror.org/03828wc37', 'no_lang_code', 1, 'https://ror.org/03828wc37 Public Health Television (United States)'),
(9077, 'https://ror.org/02ev1p206', 'en', 1, 'https://ror.org/02ev1p206 Center for Renewable Energy Sources and Saving'),
(9078, 'https://ror.org/00m129932', 'en', 1, 'https://ror.org/00m129932 Center for Research and Technology Thessaly'),
(9079, 'https://ror.org/0317zws63', 'en', 1, 'https://ror.org/0317zws63 Ministry of Public Order and Citizen Protection ΄πουργείο Ī”Ī·Ī¼ĻŒĻƒĪ¹Ī±Ļ‚ Τάξης και Ī ĻĪæĻƒĻ„Ī±ĻƒĪÆĪ±Ļ‚ του Πολίτη'),
(9080, 'https://ror.org/014fc7457', 'no_lang_code', 1, 'https://ror.org/014fc7457 PerkinElmer (United Kingdom)'),
(9081, 'https://ror.org/05a2kh390', 'no_lang_code', 1, 'https://ror.org/05a2kh390 Pulmokine (United States)'),
(9082, 'https://ror.org/05awtjt98', 'en', 1, 'https://ror.org/05awtjt98 Pulmonary Hypertension Association'),
(9083, 'https://ror.org/016hnw741', 'no_lang_code', 1, 'https://ror.org/016hnw741 Centre for Technology Research & Innovation (Cyprus)'),
(9084, 'https://ror.org/05hpcxv81', 'no_lang_code', 1, 'https://ror.org/05hpcxv81 Puresyn (United States)'),
(9085, 'https://ror.org/03xab3392', 'no_lang_code', 1, 'https://ror.org/03xab3392 PSIwebware (United States)'),
(9086, 'https://ror.org/0004ysa08', 'en', 1, 'https://ror.org/0004ysa08 Centre for innovative process engineering'),
(9087, 'https://ror.org/04k4bwp19', 'no_lang_code', 1, 'https://ror.org/04k4bwp19 Q-Track Corporation (United States)'),
(9088, 'https://ror.org/0319xcm09', 'no_lang_code', 1, 'https://ror.org/0319xcm09 Peter Brett Associates'),
(9089, 'https://ror.org/001dw2225', 'en', 1, 'https://ror.org/001dw2225 Central Aerohydrodynamic Institute Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š°ŃŃ€Š¾Š³ŠøŠ“Ń€Š¾Š“ŠøŠ½Š°Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени профессора Š.Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾'),
(9090, 'https://ror.org/01a4t3393', 'en', 1, 'https://ror.org/01a4t3393 Central Electricity Generating Board'),
(9091, 'https://ror.org/00r2t6515', 'en', 1, 'https://ror.org/00r2t6515 Baranov Central Institute of Aviation Motor Development Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационного Š¼Š¾Ń‚Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ им. П.И. Баранова'),
(9092, 'https://ror.org/023bn8s91', 'no_lang_code', 1, 'https://ror.org/023bn8s91 QED Labs'),
(9093, 'https://ror.org/02wfw7g10', 'no_lang_code', 1, 'https://ror.org/02wfw7g10 QM Power (United States)'),
(9094, 'https://ror.org/0418mwz44', 'no_lang_code', 1, 'https://ror.org/0418mwz44 Petro Geotech (Canada)'),
(9095, 'https://ror.org/00f8dwt44', 'en', 1, 'https://ror.org/00f8dwt44 Institute of Electrochemistry and Energy Systems Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŃ Šø енергийни системи'),
(9096, 'https://ror.org/0235kyq22', 'no_lang_code', 1, 'https://ror.org/0235kyq22 Petrobras (Brazil)'),
(9097, 'https://ror.org/01jt2bg47', 'no_lang_code', 1, 'https://ror.org/01jt2bg47 QUAD Engineering (Canada)'),
(9098, 'https://ror.org/0033n4009', 'no_lang_code', 1, 'https://ror.org/0033n4009 ABB (Sweden)'),
(9099, 'https://ror.org/05yeg2858', 'no_lang_code', 1, 'https://ror.org/05yeg2858 ABB (Germany)'),
(9100, 'https://ror.org/0370sjj75', 'no_lang_code', 1, 'https://ror.org/0370sjj75 Optum (United States)'),
(9101, 'https://ror.org/02yxan022', 'no_lang_code', 1, 'https://ror.org/02yxan022 Quanser (Canada)'),
(9102, 'https://ror.org/00wbcgc67', 'no_lang_code', 1, 'https://ror.org/00wbcgc67 Johnson Matthey (United States)'),
(9103, 'https://ror.org/01kmcf465', 'fr', 1, 'https://ror.org/01kmcf465 Belgian Centre for Corrosion Study Centre Belge d''Etude de la Corrosion'),
(9104, 'https://ror.org/04780k350', 'no_lang_code', 1, 'https://ror.org/04780k350 PharmaIN (United States)'),
(9105, 'https://ror.org/0311xw623', 'no_lang_code', 1, 'https://ror.org/0311xw623 PharmaSeq (United States)'),
(9106, 'https://ror.org/054cjrc07', 'no_lang_code', 1, 'https://ror.org/054cjrc07 Quantronix (United States)'),
(9107, 'https://ror.org/04etz5w53', 'no_lang_code', 1, 'https://ror.org/04etz5w53 QuantTera (United States)'),
(9108, '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'),
(9109, 'https://ror.org/027j12e75', 'no_lang_code', 1, 'https://ror.org/027j12e75 Quantum Simulations (United States)'),
(9110, 'https://ror.org/049gbsq65', 'no_lang_code', 1, 'https://ror.org/049gbsq65 AbsInt (Germany)'),
(9111, 'https://ror.org/016t25n48', 'no_lang_code', 1, 'https://ror.org/016t25n48 Quasars (United States)'),
(9112, 'https://ror.org/01w7yjk26', 'no_lang_code', 1, 'https://ror.org/01w7yjk26 Phoenix Science and Technology (United States)'),
(9113, 'https://ror.org/00akkff67', 'no_lang_code', 1, 'https://ror.org/00akkff67 Phcc (United States)'),
(9114, 'https://ror.org/02t6xhx48', 'no_lang_code', 1, 'https://ror.org/02t6xhx48 Photozig (United States)'),
(9115, 'https://ror.org/03sjfjv85', 'no_lang_code', 1, 'https://ror.org/03sjfjv85 Phenomenome Discoveries (Canada)'),
(9116, 'https://ror.org/05mt84656', 'no_lang_code', 1, 'https://ror.org/05mt84656 Phifer Smith (United States)'),
(9117, 'https://ror.org/04s298h25', 'no_lang_code', 1, 'https://ror.org/04s298h25 CemeCon (Germany)'),
(9118, 'https://ror.org/03epr9q14', 'en', 1, 'https://ror.org/03epr9q14 Center for Culture and Experience Economy'),
(9119, 'https://ror.org/00np1gf38', 'en', 1, 'https://ror.org/00np1gf38 Philadelphia Fight'),
(9120, 'https://ror.org/0056x7z10', 'en', 1, 'https://ror.org/0056x7z10 Philander Smith College'),
(9121, 'https://ror.org/04ktqp584', 'no_lang_code', 1, 'https://ror.org/04ktqp584 Philips (United Kingdom)'),
(9122, 'https://ror.org/0576hnt37', 'fr', 1, 'https://ror.org/0576hnt37 QuƩbec Science (Canada)'),
(9123, 'https://ror.org/048n5xe95', 'fr', 1, 'https://ror.org/048n5xe95 Centre d''Enseignement et de Recherches des Industries Alimentaires et Chimiques'),
(9124, 'https://ror.org/0562sdw81', 'en', 1, 'https://ror.org/0562sdw81 Phillips Academy'),
(9125, 'https://ror.org/05q707b66', 'no_lang_code', 1, 'https://ror.org/05q707b66 PhiloMetron (United States)'),
(9126, 'https://ror.org/05bh7ff72', 'fr', 1, 'https://ror.org/05bh7ff72 Centre d’Economie rurale'),
(9127, 'https://ror.org/02k284p70', 'en', 1, 'https://ror.org/02k284p70 Academy of Scientific Research and Technology'),
(9128, 'https://ror.org/03ej8cj80', 'en', 1, 'https://ror.org/03ej8cj80 Quincy College'),
(9129, 'https://ror.org/00wkf3d94', 'no_lang_code', 1, 'https://ror.org/00wkf3d94 Quintessence Biosciences (United States)'),
(9130, 'https://ror.org/01xpfz214', 'no_lang_code', 1, 'https://ror.org/01xpfz214 Team Industrial Services (United States)'),
(9131, 'https://ror.org/00tzw6r97', 'no_lang_code', 1, 'https://ror.org/00tzw6r97 RC Electronics (United States)'),
(9132, 'https://ror.org/033q64q73', 'en', 1, 'https://ror.org/033q64q73 Cypress Health Region'),
(9133, 'https://ror.org/04g1yv196', 'no_lang_code', 1, 'https://ror.org/04g1yv196 Ag-West Bio (Canada)'),
(9134, 'https://ror.org/03wr23878', 'no_lang_code', 1, 'https://ror.org/03wr23878 Greater Saskatoon Chamber of Commerce'),
(9135, 'https://ror.org/031a6wg34', 'en', 1, 'https://ror.org/031a6wg34 Saskatchewan Health Quality Council'),
(9136, 'https://ror.org/04nmkye62', 'en', 1, 'https://ror.org/04nmkye62 Heartland Health Region'),
(9137, 'https://ror.org/04bbk5g16', 'en', 1, 'https://ror.org/04bbk5g16 International Centre for Infectious Diseases'),
(9138, 'https://ror.org/01c66cc89', 'en', 1, 'https://ror.org/01c66cc89 Prince Albert Grand Council'),
(9139, 'https://ror.org/0071ct727', 'en', 1, 'https://ror.org/0071ct727 Saskatchewan Hospice Palliative Care Association'),
(9140, 'https://ror.org/02k9hra16', 'en', 1, 'https://ror.org/02k9hra16 Saskatchewan Seniors Mechanism'),
(9141, 'https://ror.org/03h9w6s56', 'no_lang_code', 1, 'https://ror.org/03h9w6s56 OptoSonics (United States)'),
(9142, 'https://ror.org/04nwrtj56', 'fr', 1, 'https://ror.org/04nwrtj56 Centre d’Étude et de Valorisation des Algues'),
(9143, 'https://ror.org/059q0e640', 'no_lang_code', 1, 'https://ror.org/059q0e640 Conciaricerca'),
(9144, 'https://ror.org/03hgf4f46', 'no_lang_code', 1, 'https://ror.org/03hgf4f46 Conecta'),
(9145, 'https://ror.org/0324dy645', 'no_lang_code', 1, 'https://ror.org/0324dy645 Radiant Creative Group'),
(9146, 'https://ror.org/00918g650', 'en', 1, 'https://ror.org/00918g650 Confederation of National Associations of Tanners and Dressers of the European Community'),
(9147, 'https://ror.org/01fev7c67', 'en', 1, 'https://ror.org/01fev7c67 Confederation of European Forest Owners ConfƩdƩration EuropƩenne des PropriƩtaires Forestiers'),
(9148, 'https://ror.org/02qwdzc67', 'en', 1, 'https://ror.org/02qwdzc67 Confederation of European Forest Owners'),
(9149, 'https://ror.org/05fr7hy44', 'no_lang_code', 1, 'https://ror.org/05fr7hy44 Radisys (Canada)'),
(9150, 'https://ror.org/05434fs92', 'en', 1, 'https://ror.org/05434fs92 Brookhaven Science Associates'),
(9151, 'https://ror.org/00qszmz13', 'no_lang_code', 1, 'https://ror.org/00qszmz13 Ion Beam Applications (United States)'),
(9152, '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'),
(9153, 'https://ror.org/030ygs139', 'no_lang_code', 1, 'https://ror.org/030ygs139 RAGT Seeds (United Kingdom)'),
(9154, 'https://ror.org/03z9p8659', 'no_lang_code', 1, 'https://ror.org/03z9p8659 Accelopment (Switzerland)'),
(9155, 'https://ror.org/05rex1605', 'no_lang_code', 1, 'https://ror.org/05rex1605 3D Systems (United States)'),
(9156, 'https://ror.org/00b5ztt43', 'en', 1, 'https://ror.org/00b5ztt43 Rancho Santiago Community College District'),
(9157, 'https://ror.org/04ed5sj24', 'no_lang_code', 1, 'https://ror.org/04ed5sj24 Associated Compiler Experts (Netherlands)'),
(9158, 'https://ror.org/05bqk3m74', 'en', 1, 'https://ror.org/05bqk3m74 European Network of Science Centres and Museums'),
(9159, 'https://ror.org/00v315t24', 'no_lang_code', 1, 'https://ror.org/00v315t24 Biopsy Sciences (United States)'),
(9160, 'https://ror.org/044n33410', 'fr', 1, 'https://ror.org/044n33410 Association FranƧaise de Normalisation'),
(9161, 'https://ror.org/03sxmk145', 'fr', 1, 'https://ror.org/03sxmk145 Images & RƩseaux'),
(9162, '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'),
(9163, 'https://ror.org/00ht2ab73', 'fr', 1, 'https://ror.org/00ht2ab73 Association Nationale de la Recherche et de la Technologie'),
(9164, 'https://ror.org/03csd5507', 'no_lang_code', 1, 'https://ror.org/03csd5507 Morgan Stanley (United Kingdom)'),
(9165, 'https://ror.org/00tgj2z09', 'en', 1, 'https://ror.org/00tgj2z09 Association of Information Technology Companies of Northern Greece'),
(9166, 'https://ror.org/01w7ahq52', 'no_lang_code', 1, 'https://ror.org/01w7ahq52 ACRI Group (France)'),
(9167, 'https://ror.org/05k2ttb40', 'no_lang_code', 1, 'https://ror.org/05k2ttb40 ACTeon Environment (France)'),
(9168, 'https://ror.org/01rcr9030', 'no_lang_code', 1, 'https://ror.org/01rcr9030 Consorcio Regional de Transportes de Madrid'),
(9169, 'https://ror.org/018qep702', 'no_lang_code', 1, 'https://ror.org/018qep702 General Motors (Germany)'),
(9170, 'https://ror.org/03x9xd924', 'en', 1, 'https://ror.org/03x9xd924 Consortium GARR'),
(9171, 'https://ror.org/00ahe2k65', 'no_lang_code', 1, 'https://ror.org/00ahe2k65 Adasa (Spain)'),
(9172, 'https://ror.org/01g8hb609', 'it', 1, 'https://ror.org/01g8hb609 Consorzio Catania Ricerche'),
(9173, 'https://ror.org/04hn89439', 'la', 1, 'https://ror.org/04hn89439 Civita'),
(9174, 'https://ror.org/0359s0245', 'no_lang_code', 1, 'https://ror.org/0359s0245 Continental (Germany)'),
(9175, 'https://ror.org/04r2r8477', 'fr', 1, 'https://ror.org/04r2r8477 ADERA'),
(9176, 'https://ror.org/0081r6c67', 'no_lang_code', 1, 'https://ror.org/0081r6c67 Addcomp (Netherlands)'),
(9177, 'https://ror.org/05nns5525', 'no_lang_code', 1, 'https://ror.org/05nns5525 Adelard'),
(9178, 'https://ror.org/03cmtga52', 'no_lang_code', 1, 'https://ror.org/03cmtga52 IB Innovation Consortium (Italy)'),
(9179, 'https://ror.org/021e69h28', 'en', 1, 'https://ror.org/021e69h28 Adelphi Research'),
(9180, 'https://ror.org/00fd3za45', 'no_lang_code', 1, 'https://ror.org/00fd3za45 Adif (Spain)'),
(9181, 'https://ror.org/055kr0e44', 'no_lang_code', 1, 'https://ror.org/055kr0e44 ADVA Optical Networking (Germany)'),
(9182, 'https://ror.org/018mrwd51', 'no_lang_code', 1, 'https://ror.org/018mrwd51 Advanced Computer System (Italy)'),
(9183, 'https://ror.org/028zpwn78', 'fr', 1, 'https://ror.org/028zpwn78 Centre de Recherche et d’Information sur la DĆ©mocratie et l''Autonomie'),
(9184, 'https://ror.org/01dk0y732', 'no_lang_code', 1, 'https://ror.org/01dk0y732 Advanced Lightweight Engineering (Netherlands)'),
(9185, 'https://ror.org/01yfkcs46', 'it', 1, 'https://ror.org/01yfkcs46 CSI Piemonte'),
(9186, 'https://ror.org/042qbkd11', 'fr', 1, 'https://ror.org/042qbkd11 ADERSE Association for the Development of Education and Research on Corporate Social Responsibility Association pour le DƩveloppement de l''Enseignement et de la Recherche sur la ResponsabilitƩ Sociale de l''Entreprise'),
(9187, 'https://ror.org/03a9ezp59', 'no_lang_code', 1, 'https://ror.org/03a9ezp59 Adrianor'),
(9188, 'https://ror.org/02mx39t82', 'en', 1, 'https://ror.org/02mx39t82 Association VinƧotte Nuclear Nuclear Safety Institute'),
(9189, 'https://ror.org/04yvrj177', 'en', 1, 'https://ror.org/04yvrj177 European Society of Concurrent Enterprising Network SocietĆ  Europea di Rete Concorrente Simultanea'),
(9190, 'https://ror.org/0580rag35', 'it', 1, 'https://ror.org/0580rag35 Frascati Scienza'),
(9191, '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'),
(9192, 'https://ror.org/02mx9d065', 'it', 1, 'https://ror.org/02mx9d065 Consorzio per la Ricerca e l''Educazione Permanente'),
(9193, 'https://ror.org/053t8wp47', 'no_lang_code', 1, 'https://ror.org/053t8wp47 Advanta Seeds (Netherlands)'),
(9194, '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'),
(9195, 'https://ror.org/01jgzbz02', 'no_lang_code', 1, 'https://ror.org/01jgzbz02 Advanticsys (Spain)'),
(9196, 'https://ror.org/0072j3s02', 'no_lang_code', 1, 'https://ror.org/0072j3s02 Aster'),
(9197, 'https://ror.org/00fs7vk14', 'en', 1, 'https://ror.org/00fs7vk14 Consorzio TRAIN TRAIN Consortium'),
(9198, 'https://ror.org/03jgd5t29', 'no_lang_code', 1, 'https://ror.org/03jgd5t29 Astri Polska (Poland)'),
(9199, 'https://ror.org/00p0qk069', 'en', 1, 'https://ror.org/00p0qk069 Center of Technology and Engineering for Nuclear Projects'),
(9200, 'https://ror.org/02r9beq73', 'no_lang_code', 1, 'https://ror.org/02r9beq73 Loccioni (Italy)'),
(9201, 'https://ror.org/03jvpn714', 'it', 1, 'https://ror.org/03jvpn714 Consorzio Roma Ricerche'),
(9202, 'https://ror.org/04sydm273', 'it', 1, 'https://ror.org/04sydm273 Sapienza Innovazione'),
(9203, 'https://ror.org/05v1dya15', 'fr', 1, 'https://ror.org/05v1dya15 Centre de Recherches et des Technologies des Eaux'),
(9204, 'https://ror.org/00kh6pc76', 'it', 1, 'https://ror.org/00kh6pc76 Consorzio Venezia Ricerche'),
(9205, 'https://ror.org/00ntawd75', 'no_lang_code', 1, 'https://ror.org/00ntawd75 Aeiforia (Italy)'),
(9206, 'https://ror.org/01m260238', 'no_lang_code', 1, 'https://ror.org/01m260238 Ateknea Solutions (Spain)'),
(9207, 'https://ror.org/054z5aj03', 'no_lang_code', 1, 'https://ror.org/054z5aj03 Ateknea Solutions (Hungary)'),
(9208, 'https://ror.org/00yfcva70', 'en', 1, 'https://ror.org/00yfcva70 AeroSpace and Defence Industries Association of Europe'),
(9209, 'https://ror.org/01ddxdd19', 'no_lang_code', 1, 'https://ror.org/01ddxdd19 Constructions Industrielles de la MƩditerranƩe (France)'),
(9210, 'https://ror.org/04fj42v97', 'no_lang_code', 1, 'https://ror.org/04fj42v97 Consulectra (Germany)'),
(9211, 'https://ror.org/043z1y058', 'no_lang_code', 1, 'https://ror.org/043z1y058 atesio (Germany)'),
(9212, 'https://ror.org/02twc7963', 'en', 1, 'https://ror.org/02twc7963 Aerospace Valley'),
(9213, 'https://ror.org/05sejp741', 'no_lang_code', 1, 'https://ror.org/05sejp741 Consulintel (Spain)'),
(9214, 'https://ror.org/01qr26m26', 'en', 1, 'https://ror.org/01qr26m26 Sirris'),
(9215, 'https://ror.org/00r1m3r97', 'no_lang_code', 1, 'https://ror.org/00r1m3r97 Contento Trade (Italy)'),
(9216, 'https://ror.org/014xba990', 'no_lang_code', 1, 'https://ror.org/014xba990 Ateliers Nic. Georges (Luxembourg)'),
(9217, 'https://ror.org/05denqv03', 'fr', 1, 'https://ror.org/05denqv03 Centre de Robotique IntƩgrƩe d''Ile de France'),
(9218, 'https://ror.org/00nahqd12', 'no_lang_code', 1, 'https://ror.org/00nahqd12 Continental (France)'),
(9219, 'https://ror.org/031m32a82', 'en', 1, 'https://ror.org/031m32a82 Athens International Airport Διεθνής Αερολιμένας Ī‘ĪøĪ·Ī½ĻŽĪ½ «Ελευθέριος Βενιζέλος»'),
(9220, 'https://ror.org/05tj22n53', 'en', 1, 'https://ror.org/05tj22n53 AGE Platform Europe'),
(9221, 'https://ror.org/05caz9x08', 'no_lang_code', 1, 'https://ror.org/05caz9x08 ATiT (Belgium)'),
(9222, 'https://ror.org/04wgpdw48', 'en', 1, 'https://ror.org/04wgpdw48 impulse.brussels'),
(9223, 'https://ror.org/01p6fxr81', 'it', 1, 'https://ror.org/01p6fxr81 Cooperativa Sociale COOSS Marche Onlus'),
(9224, 'https://ror.org/05prywb43', 'no_lang_code', 1, 'https://ror.org/05prywb43 Centre d''Expertise du BĆ¢timent et des Travaux Publics (France)'),
(9225, 'https://ror.org/00akjja53', 'no_lang_code', 1, 'https://ror.org/00akjja53 Atlas Elektronik (Germany)'),
(9226, 'https://ror.org/04q92cj22', 'no_lang_code', 1, 'https://ror.org/04q92cj22 Atmel (France)'),
(9227, 'https://ror.org/04cxvfq51', 'it', 1, 'https://ror.org/04cxvfq51 CoRiTeL'),
(9228, 'https://ror.org/055h5ke26', 'no_lang_code', 1, 'https://ror.org/055h5ke26 Centre for Computational Continuum Mechanics (Slovenia)'),
(9229, 'https://ror.org/02e1bds08', 'no_lang_code', 1, 'https://ror.org/02e1bds08 Corning (France)'),
(9230, 'https://ror.org/049b5zq94', 'no_lang_code', 1, 'https://ror.org/049b5zq94 Teledyne Technologies (France)'),
(9231, 'https://ror.org/03npzn484', 'no_lang_code', 1, 'https://ror.org/03npzn484 CorpoGen (Colombia)'),
(9232, 'https://ror.org/02hqx5v55', 'en', 1, 'https://ror.org/02hqx5v55 Center for Environment and Development for the Arab Region and Europe'),
(9233, 'https://ror.org/04w65cc78', 'en', 1, 'https://ror.org/04w65cc78 Centre For Irish and European Security'),
(9234, 'https://ror.org/03ym3qb63', 'en', 1, 'https://ror.org/03ym3qb63 Centre for Liberal Strategies'),
(9235, 'https://ror.org/05spr2d45', 'no_lang_code', 1, 'https://ror.org/05spr2d45 Ricardo AEA (Germany)'),
(9236, 'https://ror.org/00862c839', 'no_lang_code', 1, 'https://ror.org/00862c839 Ricardo AEA (Netherlands)'),
(9237, 'https://ror.org/04avxfe70', 'en', 1, 'https://ror.org/04avxfe70 Centre for Science, Society and Citizenship'),
(9238, 'https://ror.org/01bkx5q50', 'en', 1, 'https://ror.org/01bkx5q50 Centre for Technological Research of Crete'),
(9239, 'https://ror.org/00ek95971', 'no_lang_code', 1, 'https://ror.org/00ek95971 Cosytec (France)'),
(9240, 'https://ror.org/01mvsby80', 'pt', 1, 'https://ror.org/01mvsby80 Agencia de Inovacao Agência Nacional de Inovação'),
(9241, 'https://ror.org/015w2wb33', 'no_lang_code', 1, 'https://ror.org/015w2wb33 Atos (France)'),
(9242, 'https://ror.org/024sjxd14', 'pt', 1, 'https://ror.org/024sjxd14 Agencia para a Modernizacao Administrativa'),
(9243, 'https://ror.org/02ca2n422', 'no_lang_code', 1, 'https://ror.org/02ca2n422 Attana (Sweden)'),
(9244, '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'),
(9245, 'https://ror.org/00reard48', 'en', 1, 'https://ror.org/00reard48 Agency for Science, Innovation and Technology'),
(9246, 'https://ror.org/04y5a4d40', 'no_lang_code', 1, 'https://ror.org/04y5a4d40 Coventor (France)'),
(9247, 'https://ror.org/045072k07', 'no_lang_code', 1, 'https://ror.org/045072k07 Cowi (Denmark)'),
(9248, 'https://ror.org/04n8w0w18', 'en', 1, 'https://ror.org/04n8w0w18 Agency of Sustainable Development and Eurointegration'),
(9249, 'https://ror.org/02aykj333', 'no_lang_code', 1, 'https://ror.org/02aykj333 Audi (Germany)'),
(9250, 'https://ror.org/01pvjb298', 'fr', 1, 'https://ror.org/01pvjb298 Centre Interprofessionnel de Techniques d''Ɖtudes de la Pollution AtmosphĆ©rique'),
(9251, 'https://ror.org/04n5j4q40', 'no_lang_code', 1, 'https://ror.org/04n5j4q40 CPL Scientific Publishing Services (United Kingdom)'),
(9252, 'https://ror.org/04yj3nc53', 'no_lang_code', 1, 'https://ror.org/04yj3nc53 Austrian Mobility Research Forschungsgesellschaft MobilitƤt'),
(9253, 'https://ror.org/00d9spg57', 'it', 1, 'https://ror.org/00d9spg57 Agenzia dei Trasporti Autoferrotranviari del Comune'),
(9254, 'https://ror.org/00p1cga29', 'en', 1, 'https://ror.org/00p1cga29 Austrian Society for Systems Engineering and Automation'),
(9255, 'https://ror.org/020ptwy31', 'it', 1, 'https://ror.org/020ptwy31 Agenzia per l''Italia Digitale'),
(9256, 'https://ror.org/03q1xez23', 'no_lang_code', 1, 'https://ror.org/03q1xez23 AustriaTech (Austria)'),
(9257, 'https://ror.org/01jy49h31', 'no_lang_code', 1, 'https://ror.org/01jy49h31 Autoliv (Sweden)'),
(9258, 'https://ror.org/04crag568', 'en', 1, 'https://ror.org/04crag568 Cranfield Impact Centre'),
(9259, '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'),
(9260, 'https://ror.org/034zgem50', 'it', 1, 'https://ror.org/034zgem50 Agence spatiale italienne Agenzia Spaziale Italiana AgĆØncia Espacial Italiana Italian Space Agency'),
(9261, 'https://ror.org/001q3y090', 'no_lang_code', 1, 'https://ror.org/001q3y090 Creativa (Italy) Creativa Impresa di Comunicazione srl'),
(9262, 'https://ror.org/015bz4634', 'no_lang_code', 1, 'https://ror.org/015bz4634 Agfa-Gevaert (Belgium)'),
(9263, 'https://ror.org/012bn4v93', 'no_lang_code', 1, 'https://ror.org/012bn4v93 Agilent Technologies (Belgium)'),
(9264, 'https://ror.org/03b7x6y73', 'it', 1, 'https://ror.org/03b7x6y73 AutoritĆ  Portuale di Genova'),
(9265, 'https://ror.org/011k0sc34', 'no_lang_code', 1, 'https://ror.org/011k0sc34 Atlantia (Italy)'),
(9266, 'https://ror.org/00vvr2385', 'no_lang_code', 1, 'https://ror.org/00vvr2385 Agora Systems (Spain)'),
(9267, 'https://ror.org/05xw0wj25', 'en', 1, 'https://ror.org/05xw0wj25 French Clinical Research Infrastructure Network'),
(9268, 'https://ror.org/0340d8j26', 'it', 1, 'https://ror.org/0340d8j26 Avantea'),
(9269, 'https://ror.org/0379zp714', 'en', 1, 'https://ror.org/0379zp714 Croatian Chamber of Economy'),
(9270, 'https://ror.org/050wxgw75', 'no_lang_code', 1, 'https://ror.org/050wxgw75 ATEbank (Greece) Αγροτική Τράπεζα της ΕλλάΓος'),
(9271, 'https://ror.org/04kxnk485', 'no_lang_code', 1, 'https://ror.org/04kxnk485 CropDesign (Belgium)'),
(9272, 'https://ror.org/05eb99a58', 'fr', 1, 'https://ror.org/05eb99a58 Centre technique de l''Industrie HorlogĆØre'),
(9273, 'https://ror.org/05txx3b87', 'fr', 1, 'https://ror.org/05txx3b87 Centre Technique des Industries AƩrauliques et Thermiques'),
(9274, 'https://ror.org/04z3mgg43', 'no_lang_code', 1, 'https://ror.org/04z3mgg43 Cryptomathic (Denmark)'),
(9275, 'https://ror.org/0290x3782', 'no_lang_code', 1, 'https://ror.org/0290x3782 PV Crystalox Solar (United Kingdom)'),
(9276, 'https://ror.org/01q1paq98', 'no_lang_code', 1, 'https://ror.org/01q1paq98 Avanti (United Kingdom)'),
(9277, 'https://ror.org/03z749c37', 'no_lang_code', 1, 'https://ror.org/03z749c37 Agrifutur (Italy)'),
(9278, 'https://ror.org/0436qt863', 'no_lang_code', 1, 'https://ror.org/0436qt863 Agrobioinstitute'),
(9279, 'https://ror.org/001kp4y75', 'no_lang_code', 1, 'https://ror.org/001kp4y75 Avanzare (Spain)'),
(9280, 'https://ror.org/00xbray82', 'no_lang_code', 1, 'https://ror.org/00xbray82 CSK Food Enrichment (Netherlands)'),
(9281, 'https://ror.org/0506e5129', 'no_lang_code', 1, 'https://ror.org/0506e5129 Avaris (Sweden)'),
(9282, 'https://ror.org/05s7a1377', 'it', 1, 'https://ror.org/05s7a1377 Centro Ceramico Bologna'),
(9283, 'https://ror.org/04mezn076', 'no_lang_code', 1, 'https://ror.org/04mezn076 Avecia (United Kingdom)'),
(9284, 'https://ror.org/055dnb550', 'no_lang_code', 1, 'https://ror.org/055dnb550 Avia-GIS (Belgium)'),
(9285, 'https://ror.org/00tjjak64', 'en', 1, 'https://ror.org/00tjjak64 Centexbel'),
(9286, 'https://ror.org/03zvc0a12', 'no_lang_code', 1, 'https://ror.org/03zvc0a12 iKnowHow (Greece)'),
(9287, 'https://ror.org/03xxdgr65', 'no_lang_code', 1, 'https://ror.org/03xxdgr65 CSP Innovazione nelle ICT (Italy)'),
(9288, 'https://ror.org/0431b2v07', 'no_lang_code', 1, 'https://ror.org/0431b2v07 Air Liquide (France)'),
(9289, 'https://ror.org/00cpcby17', 'no_lang_code', 1, 'https://ror.org/00cpcby17 Centre Technique Cuir Chaussure Maroquinerie (France)'),
(9290, 'https://ror.org/01d9x6s51', 'fr', 1, 'https://ror.org/01d9x6s51 Centre Technique de l''Industrie du Bois'),
(9291, 'https://ror.org/04kwv2n58', 'no_lang_code', 1, 'https://ror.org/04kwv2n58 Airborne International (Netherlands)'),
(9292, 'https://ror.org/026h6d543', 'es', 1, 'https://ror.org/026h6d543 Ayuntamiento de Madrid'),
(9293, 'https://ror.org/03y17pk13', 'en', 1, 'https://ror.org/03y17pk13 Continua Health Alliance'),
(9294, 'https://ror.org/02vgejx91', 'no_lang_code', 1, 'https://ror.org/02vgejx91 Aircraft Research Association'),
(9295, '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'),
(9296, 'https://ror.org/0209tfn22', 'no_lang_code', 1, 'https://ror.org/0209tfn22 Airial Conseil (France)'),
(9297, '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'),
(9298, 'https://ror.org/05dkgpr24', 'no_lang_code', 1, 'https://ror.org/05dkgpr24 Roma Servizi per la MobilitĆ  (Italy)'),
(9299, 'https://ror.org/02fwr8382', 'no_lang_code', 1, 'https://ror.org/02fwr8382 AITIA International (Hungary)'),
(9300, 'https://ror.org/00m6eb133', 'no_lang_code', 1, 'https://ror.org/00m6eb133 Custodix (Belgium)'),
(9301, 'https://ror.org/01cfgbq85', 'it', 1, 'https://ror.org/01cfgbq85 Azienda Sanitaria di Firenze'),
(9302, 'https://ror.org/0427pc986', 'no_lang_code', 1, 'https://ror.org/0427pc986 CVD Technologies (United Kingdom)'),
(9303, 'https://ror.org/014gfj521', 'no_lang_code', 1, 'https://ror.org/014gfj521 CyberColloids'),
(9304, 'https://ror.org/02adgag39', 'no_lang_code', 1, 'https://ror.org/02adgag39 Aixtron (Germany)'),
(9305, 'https://ror.org/05tve6796', 'no_lang_code', 1, 'https://ror.org/05tve6796 Cybion (Italy)'),
(9306, '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'),
(9307, 'https://ror.org/022r8xe61', 'es', 1, 'https://ror.org/022r8xe61 Centro EspaƱol de Metrologƭa'),
(9308, 'https://ror.org/0286eck14', 'it', 1, 'https://ror.org/0286eck14 Istituto Agronomico Mediterraneo di Bari Mediterranean Agronomic Institute of Bari'),
(9309, 'https://ror.org/02en7tm18', 'no_lang_code', 1, 'https://ror.org/02en7tm18 Cyntelix (Netherlands)'),
(9310, 'https://ror.org/00wscys22', 'no_lang_code', 1, 'https://ror.org/00wscys22 Innovhub (Italy)'),
(9311, 'https://ror.org/0037fa039', 'no_lang_code', 1, 'https://ror.org/0037fa039 Avantune (Italy)'),
(9312, 'https://ror.org/043t8em33', 'no_lang_code', 1, 'https://ror.org/043t8em33 Stollmann (Germany)'),
(9313, 'https://ror.org/04459n726', 'no_lang_code', 1, 'https://ror.org/04459n726 Dillinger Hütte (Germany)'),
(9314, 'https://ror.org/02s6bef14', 'no_lang_code', 1, 'https://ror.org/02s6bef14 Azienda Trasporti Consorziali di Bologna'),
(9315, 'https://ror.org/02qs5ar77', 'no_lang_code', 1, 'https://ror.org/02qs5ar77 Azienda Trasporti Milanesi (Italy)'),
(9316, 'https://ror.org/02m5haa59', 'cs', 1, 'https://ror.org/02m5haa59 Czech Metrology Institute Český Metrologický Institut'),
(9317, 'https://ror.org/017ctmv39', 'no_lang_code', 1, 'https://ror.org/017ctmv39 AkzoNobel (Netherlands)'),
(9318, 'https://ror.org/02p1xqf92', 'no_lang_code', 1, 'https://ror.org/02p1xqf92 Centro Laser'),
(9319, 'https://ror.org/029fngx98', 'it', 1, 'https://ror.org/029fngx98 Servizio sanitario dell''Emilia-Romagna'),
(9320, 'https://ror.org/00prce717', 'no_lang_code', 1, 'https://ror.org/00prce717 Daithi O’Murchu Marine Research Station'),
(9321, 'https://ror.org/00mp87510', 'no_lang_code', 1, 'https://ror.org/00mp87510 BPE Unternehmensbeteiligungen (Germany)'),
(9322, 'https://ror.org/05njyag92', 'en', 1, 'https://ror.org/05njyag92 Academy of Science of Turkmenistan ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŠøŠø'),
(9323, 'https://ror.org/00nn73a81', 'es', 1, 'https://ror.org/00nn73a81 Centro Nacional de Información GeogrÔfica'),
(9324, 'https://ror.org/04x6e9478', 'en', 1, 'https://ror.org/04x6e9478 Baum Consult Bundesdeutsche Arbeitskreis für Umweltbewußtes Management e.V'),
(9325, 'https://ror.org/02pft9k47', 'es', 1, 'https://ror.org/02pft9k47 Centro Nacional de Sanidad Agropecuaria'),
(9326, 'https://ror.org/04e6aft63', 'no_lang_code', 1, 'https://ror.org/04e6aft63 Danaos (Cyprus)'),
(9327, 'https://ror.org/05pgmcc48', 'no_lang_code', 1, 'https://ror.org/05pgmcc48 Nokia (Austria)'),
(9328, 'https://ror.org/04ynvhd06', 'it', 1, 'https://ror.org/04ynvhd06 Centro RIcerche Plast-Optica'),
(9329, 'https://ror.org/012xttn04', 'no_lang_code', 1, 'https://ror.org/012xttn04 Centro Ricerche Produzioni Animali'),
(9330, 'https://ror.org/00ngjbr32', 'no_lang_code', 1, 'https://ror.org/00ngjbr32 Nokia (Spain)'),
(9331, 'https://ror.org/00cp8tk34', 'no_lang_code', 1, 'https://ror.org/00cp8tk34 Infor (Netherlands)'),
(9332, 'https://ror.org/05m2c7461', 'it', 1, 'https://ror.org/05m2c7461 Centro Studi Luca d’Agliano'),
(9333, 'https://ror.org/00beq0325', 'pt', 1, 'https://ror.org/00beq0325 Centro Tecnológico do Calçado de Portugal'),
(9334, 'https://ror.org/039pgdx28', 'no_lang_code', 1, 'https://ror.org/039pgdx28 Danfoss (Denmark)'),
(9335, 'https://ror.org/04wsrnw24', 'no_lang_code', 1, 'https://ror.org/04wsrnw24 Nokia (Italy)'),
(9336, 'https://ror.org/02242hs05', 'pt', 1, 'https://ror.org/02242hs05 Centro Tecnológico das Indústrias do Couro Leather Technological Center'),
(9337, 'https://ror.org/01fqgdy56', 'en', 1, 'https://ror.org/01fqgdy56 Baikov Institute of Metallurgy and Materials Science Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Šø Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ им. А.А. Байкова Российской акаГемии наук'),
(9338, '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'),
(9339, 'https://ror.org/029wcr898', 'it', 1, 'https://ror.org/029wcr898 Centro Tessile Cotoniero e Abbigliamento'),
(9340, 'https://ror.org/04a87c513', 'it', 1, 'https://ror.org/04a87c513 CentroScienza Onlus'),
(9341, 'https://ror.org/051054y87', 'no_lang_code', 1, 'https://ror.org/051054y87 DuPont (Denmark)'),
(9342, 'https://ror.org/0212gej90', 'no_lang_code', 1, 'https://ror.org/0212gej90 ON Semiconductor (Belgium)'),
(9343, 'https://ror.org/01a3sz723', 'ro', 1, 'https://ror.org/01a3sz723 Center of International Projects Centrul de Proiecte Internaţionale'),
(9344, 'https://ror.org/01kys6733', 'en', 1, 'https://ror.org/01kys6733 Danish Emergency Management Agency'),
(9345, 'https://ror.org/05t6zq805', 'pl', 1, 'https://ror.org/05t6zq805 Centrum Techniki Okrętowej Ship Design and Research Centre'),
(9346, 'https://ror.org/04z8wqp73', 'no_lang_code', 1, 'https://ror.org/04z8wqp73 Baker Hughes (Germany)'),
(9347, 'https://ror.org/03k9mxr81', 'no_lang_code', 1, 'https://ror.org/03k9mxr81 Danish Gas Technology Centre (Denmark)'),
(9348, 'https://ror.org/00bjwbm70', 'en', 1, 'https://ror.org/00bjwbm70 International Society for Optical Engineering'),
(9349, 'https://ror.org/0456wz313', 'no_lang_code', 1, 'https://ror.org/0456wz313 BAMO International (France)'),
(9350, 'https://ror.org/02x79tw02', 'no_lang_code', 1, 'https://ror.org/02x79tw02 ALD Vacuum Technologies (Germany)'),
(9351, 'https://ror.org/04zwykt37', 'no_lang_code', 1, 'https://ror.org/04zwykt37 Ceramiques Techniques et Industrielles (France)'),
(9352, 'https://ror.org/00nkkkz19', 'no_lang_code', 1, 'https://ror.org/00nkkkz19 CeramTec (Germany)'),
(9353, 'https://ror.org/032s56e02', 'no_lang_code', 1, 'https://ror.org/032s56e02 Ceratizit (Luxembourg)'),
(9354, 'https://ror.org/042pd7533', 'en', 1, 'https://ror.org/042pd7533 British Association of Public Safety Communications Officials'),
(9355, 'https://ror.org/02msvh720', 'no_lang_code', 1, 'https://ror.org/02msvh720 SoftBank Robotics (France)'),
(9356, 'https://ror.org/05gcat543', 'no_lang_code', 1, 'https://ror.org/05gcat543 Barco (Belgium)'),
(9357, 'https://ror.org/03tvk8g25', 'no_lang_code', 1, 'https://ror.org/03tvk8g25 CertiCon (Czechia)'),
(9358, 'https://ror.org/02magnn81', 'no_lang_code', 1, 'https://ror.org/02magnn81 CESI (Italy)'),
(9359, 'https://ror.org/01tbwpy88', 'en', 1, 'https://ror.org/01tbwpy88 Centre for European Security Strategies'),
(9360, 'https://ror.org/0165dap44', 'no_lang_code', 1, 'https://ror.org/0165dap44 CF consulting Finanziamenti Unione Europea'),
(9361, 'https://ror.org/01tfkms29', 'no_lang_code', 1, 'https://ror.org/01tfkms29 Alfamicro (Portugal)'),
(9362, 'https://ror.org/00298sd14', 'no_lang_code', 1, 'https://ror.org/00298sd14 Battelle Ingenieurtechnik (Germany)'),
(9363, 'https://ror.org/00n87rr37', 'en', 1, 'https://ror.org/00n87rr37 Danish Technological Institute'),
(9364, 'https://ror.org/003518063', 'no_lang_code', 1, 'https://ror.org/003518063 ComputIT (Norway)'),
(9365, 'https://ror.org/0116mgp30', 'no_lang_code', 1, 'https://ror.org/0116mgp30 ALFA PI (Greece)'),
(9366, 'https://ror.org/00a34rj81', 'no_lang_code', 1, 'https://ror.org/00a34rj81 Bax & Willems'),
(9367, 'https://ror.org/04xezfk45', 'no_lang_code', 1, 'https://ror.org/04xezfk45 CFS Engineering (Switzerland)'),
(9368, 'https://ror.org/03ptrx272', 'no_lang_code', 1, 'https://ror.org/03ptrx272 CGI (Netherlands)'),
(9369, 'https://ror.org/02r50zr04', 'no_lang_code', 1, 'https://ror.org/02r50zr04 Algoritmos Procesos y Disenos (Spain)'),
(9370, 'https://ror.org/05e08p639', 'no_lang_code', 1, 'https://ror.org/05e08p639 Algosystems (Greece)'),
(9371, 'https://ror.org/01c5aqt35', 'no_lang_code', 1, 'https://ror.org/01c5aqt35 Danone (Netherlands)'),
(9372, 'https://ror.org/058g9xk41', 'fr', 1, 'https://ror.org/058g9xk41 Chambre de Commerce et d''Industrie de Bourgogne Franche-ComtƩ'),
(9373, 'https://ror.org/05nc4q646', 'fr', 1, 'https://ror.org/05nc4q646 Charbonnages de France'),
(9374, 'https://ror.org/02ft67b52', 'no_lang_code', 1, 'https://ror.org/02ft67b52 NCC (Denmark)'),
(9375, 'https://ror.org/02as34v38', 'no_lang_code', 1, 'https://ror.org/02as34v38 Ƙrsted (Denmark)'),
(9376, 'https://ror.org/036d9xe15', 'no_lang_code', 1, 'https://ror.org/036d9xe15 Ceramics and Refractories Technological Development Company (Greece)'),
(9377, 'https://ror.org/05m8ec563', 'en', 1, 'https://ror.org/05m8ec563 All Russia Petroleum Research Exploration Institute Всероссийский Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ геологоразвеГочный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(9378, 'https://ror.org/00dkszm12', 'no_lang_code', 1, 'https://ror.org/00dkszm12 Dantec Dynamics (Germany)'),
(9379, 'https://ror.org/02rchr797', 'no_lang_code', 1, 'https://ror.org/02rchr797 Alma Consulting Group'),
(9380, 'https://ror.org/05af63f35', 'no_lang_code', 1, 'https://ror.org/05af63f35 Almende (Netherlands)'),
(9381, 'https://ror.org/02f12sz84', 'no_lang_code', 1, 'https://ror.org/02f12sz84 3M (France)'),
(9382, 'https://ror.org/059spgx09', 'no_lang_code', 1, 'https://ror.org/059spgx09 Alpha MOS (France)'),
(9383, 'https://ror.org/021nxch78', 'no_lang_code', 1, 'https://ror.org/021nxch78 BCT (Germany)'),
(9384, 'https://ror.org/00zbjch89', 'no_lang_code', 1, 'https://ror.org/00zbjch89 Beacon Tech (Israel)'),
(9385, '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'),
(9386, 'https://ror.org/00sehw297', 'no_lang_code', 1, 'https://ror.org/00sehw297 Beactica (Sweden)'),
(9387, 'https://ror.org/05t6jk967', 'de', 1, 'https://ror.org/05t6jk967 Competence Centre for Electrochemical Surface Technology Kompetenzzentrum für elektrochemische Oberflächentechnologie'),
(9388, 'https://ror.org/022cm1781', 'no_lang_code', 1, 'https://ror.org/022cm1781 Alpha Thames Subsea (United Kingdom)'),
(9389, 'https://ror.org/00d5z2352', 'no_lang_code', 1, 'https://ror.org/00d5z2352 Bekaert (Belgium)'),
(9390, 'https://ror.org/017977v32', 'no_lang_code', 1, 'https://ror.org/017977v32 Alstom (Switzerland)'),
(9391, 'https://ror.org/0432qbr75', 'no_lang_code', 1, 'https://ror.org/0432qbr75 Alstom (Belgium)'),
(9392, 'https://ror.org/03yee2588', 'no_lang_code', 1, 'https://ror.org/03yee2588 BELECTRIC (Germany)'),
(9393, 'https://ror.org/00stexf29', 'no_lang_code', 1, 'https://ror.org/00stexf29 Alstom (Germany)'),
(9394, 'https://ror.org/02kwk6c15', 'en', 1, 'https://ror.org/02kwk6c15 International Management Institute'),
(9395, 'https://ror.org/05863t818', 'no_lang_code', 1, 'https://ror.org/05863t818 Alstom (Sweden)'),
(9396, 'https://ror.org/04qd5p107', 'no_lang_code', 1, 'https://ror.org/04qd5p107 ALTA (Italy)'),
(9397, 'https://ror.org/03f6d5g58', 'no_lang_code', 1, 'https://ror.org/03f6d5g58 Vita Group (United Kingdom)'),
(9398, 'https://ror.org/04gwhcf14', 'no_lang_code', 1, 'https://ror.org/04gwhcf14 BearingPoint (Austria)'),
(9399, 'https://ror.org/04vkg5n49', 'no_lang_code', 1, 'https://ror.org/04vkg5n49 Tre Altamira (Spain)'),
(9400, 'https://ror.org/03khwv936', 'no_lang_code', 1, 'https://ror.org/03khwv936 Chimar Hellas (Greece)'),
(9401, 'https://ror.org/0385nmy68', 'en', 1, 'https://ror.org/0385nmy68 Ministry of Industry and Information Technology äø­åŽäŗŗę°‘å…±å’Œå›½å·„äøšå’Œäæ”ęÆåŒ–éƒØ'),
(9402, 'https://ror.org/01w5zd681', 'no_lang_code', 1, 'https://ror.org/01w5zd681 Belgonucleaire (Belgium)'),
(9403, 'https://ror.org/03vw44013', 'no_lang_code', 1, 'https://ror.org/03vw44013 Belgoprocess (Belgium)'),
(9404, 'https://ror.org/03w9j7q30', 'no_lang_code', 1, 'https://ror.org/03w9j7q30 Databank (Italy)'),
(9405, 'https://ror.org/01mv6bt66', 'no_lang_code', 1, 'https://ror.org/01mv6bt66 Chr. Hansen (Denmark)'),
(9406, 'https://ror.org/03fkdmb14', 'no_lang_code', 1, 'https://ror.org/03fkdmb14 Beneq (Finland)'),
(9407, 'https://ror.org/04g046t84', 'no_lang_code', 1, 'https://ror.org/04g046t84 Dbe Technology (Germany)'),
(9408, 'https://ror.org/03ef7m045', 'no_lang_code', 1, 'https://ror.org/03ef7m045 Bergamo Technologies (Poland)');
INSERT INTO `rors` VALUES
(9409, 'https://ror.org/01wwajd53', 'no_lang_code', 1, 'https://ror.org/01wwajd53 OHB (Italy)'),
(9410, 'https://ror.org/00p66nq73', 'no_lang_code', 1, 'https://ror.org/00p66nq73 Amphos 21 (Spain)'),
(9411, 'https://ror.org/05dqa1196', 'no_lang_code', 1, 'https://ror.org/05dqa1196 CIM-mes Project (Poland)'),
(9412, 'https://ror.org/00s8fdk31', 'no_lang_code', 1, 'https://ror.org/00s8fdk31 Decom (Slovakia)'),
(9413, 'https://ror.org/05fm74681', 'no_lang_code', 1, 'https://ror.org/05fm74681 CIRCA Group Europe (Ireland)'),
(9414, 'https://ror.org/019ejf125', 'no_lang_code', 1, 'https://ror.org/019ejf125 Ormazabal (Switzerland)'),
(9415, 'https://ror.org/02epq7t62', 'no_lang_code', 1, 'https://ror.org/02epq7t62 Amplitude SystĆØmes (France)'),
(9416, 'https://ror.org/02cqwf592', 'no_lang_code', 1, 'https://ror.org/02cqwf592 Analysis and Monitoring of Environmental Risk'),
(9417, 'https://ror.org/003v2c511', 'no_lang_code', 1, 'https://ror.org/003v2c511 Allgemeine ElektrizitƤts Gesellschaft (Germany) General Electricity Company'),
(9418, 'https://ror.org/0106nz743', 'no_lang_code', 1, 'https://ror.org/0106nz743 Cisco Systems (Netherlands)'),
(9419, 'https://ror.org/03vz6gs79', 'no_lang_code', 1, 'https://ror.org/03vz6gs79 AMS (Austria)'),
(9420, 'https://ror.org/01b7jd097', 'ga', 1, 'https://ror.org/01b7jd097 An Garda SƭochƔna'),
(9421, 'https://ror.org/02rb8qp97', 'no_lang_code', 1, 'https://ror.org/02rb8qp97 CISSOID (Belgium)'),
(9422, 'https://ror.org/00ckx8y08', 'no_lang_code', 1, 'https://ror.org/00ckx8y08 Berliner Nanotest und Design'),
(9423, 'https://ror.org/050t9mr22', 'no_lang_code', 1, 'https://ror.org/050t9mr22 Agilent Technologies (Denmark)'),
(9424, 'https://ror.org/00svj4w50', 'no_lang_code', 1, 'https://ror.org/00svj4w50 ANA Aeroportos de Portugal (Portugal)'),
(9425, 'https://ror.org/03g7c9017', 'no_lang_code', 1, 'https://ror.org/03g7c9017 Berliner Verkehrsbetriebe (Germany)'),
(9426, 'https://ror.org/05htnwe41', 'no_lang_code', 1, 'https://ror.org/05htnwe41 ANALYSIS System Research High-Tech (Greece)'),
(9427, 'https://ror.org/055cet093', 'no_lang_code', 1, 'https://ror.org/055cet093 Clay Technology (Sweden)'),
(9428, 'https://ror.org/05s49hg54', 'no_lang_code', 1, 'https://ror.org/05s49hg54 Cross-Linked Enzyme Aggregates Technologies (Netherlands)'),
(9429, 'https://ror.org/05kx0fh55', 'no_lang_code', 1, 'https://ror.org/05kx0fh55 Clemessy (France) Eiffage Ɖnergie SystĆØmes - Clemessy'),
(9430, 'https://ror.org/0526axj32', 'no_lang_code', 1, 'https://ror.org/0526axj32 e-Trikala (Greece)'),
(9431, 'https://ror.org/04edqzt97', 'en', 1, 'https://ror.org/04edqzt97 Cloud Security Alliance'),
(9432, 'https://ror.org/05jnac203', 'no_lang_code', 1, 'https://ror.org/05jnac203 Anaxomics (Spain)'),
(9433, 'https://ror.org/03gzyhr79', 'no_lang_code', 1, 'https://ror.org/03gzyhr79 CNet (Sweden)'),
(9434, 'https://ror.org/03gkzwc92', 'no_lang_code', 1, 'https://ror.org/03gkzwc92 Ancitel (Italy)'),
(9435, 'https://ror.org/055k7wq83', 'no_lang_code', 1, 'https://ror.org/055k7wq83 Chemtex (Italy)'),
(9436, 'https://ror.org/039sb8791', 'no_lang_code', 1, 'https://ror.org/039sb8791 Aptiv (Germany)'),
(9437, 'https://ror.org/04z69s492', 'no_lang_code', 1, 'https://ror.org/04z69s492 Andritz (Austria)'),
(9438, 'https://ror.org/04w5tkp91', 'no_lang_code', 1, 'https://ror.org/04w5tkp91 CINAR (United Kingdom)'),
(9439, 'https://ror.org/04qcrp855', 'no_lang_code', 1, 'https://ror.org/04qcrp855 Andritz (Switzerland)'),
(9440, 'https://ror.org/012v3yp34', 'no_lang_code', 1, 'https://ror.org/012v3yp34 CINAR (Greece)'),
(9441, 'https://ror.org/0409nay36', 'no_lang_code', 1, 'https://ror.org/0409nay36 Aptiv (Italy)'),
(9442, 'https://ror.org/03ax7hn31', 'no_lang_code', 1, 'https://ror.org/03ax7hn31 BHP Laboratories'),
(9443, 'https://ror.org/02ab50f57', 'it', 1, 'https://ror.org/02ab50f57 Confederazione Italiana Sindacati Lavoratori Italian Confederation of Workers'' Trade Unions'),
(9444, 'https://ror.org/03whc3s66', 'no_lang_code', 1, 'https://ror.org/03whc3s66 Delta (Denmark)'),
(9445, 'https://ror.org/04094ne36', 'no_lang_code', 1, 'https://ror.org/04094ne36 Deltamarin (Finland)'),
(9446, 'https://ror.org/0489hqz65', 'no_lang_code', 1, 'https://ror.org/0489hqz65 Coatema (Germany)'),
(9447, 'https://ror.org/05wy76019', 'no_lang_code', 1, 'https://ror.org/05wy76019 Demar Laser (Netherlands)'),
(9448, 'https://ror.org/00zffgs92', 'no_lang_code', 1, 'https://ror.org/00zffgs92 Anotec Engineering (Spain)'),
(9449, 'https://ror.org/03m4peq39', 'en', 1, 'https://ror.org/03m4peq39 Coatings Research Institute'),
(9450, 'https://ror.org/042any649', 'no_lang_code', 1, 'https://ror.org/042any649 ArcelorMittal (Belgium)'),
(9451, 'https://ror.org/03t5x5269', 'no_lang_code', 1, 'https://ror.org/03t5x5269 Cogne (Italy)'),
(9452, 'https://ror.org/01k6bda33', 'no_lang_code', 1, 'https://ror.org/01k6bda33 Colibri (Netherlands)'),
(9453, 'https://ror.org/025h55v52', 'en', 1, 'https://ror.org/025h55v52 Collections Trust'),
(9454, 'https://ror.org/00j39nx61', 'no_lang_code', 1, 'https://ror.org/00j39nx61 Collegium Budapest'),
(9455, 'https://ror.org/03m91y692', 'no_lang_code', 1, 'https://ror.org/03m91y692 Coloplast (Denmark)'),
(9456, 'https://ror.org/00xq5mb92', 'no_lang_code', 1, 'https://ror.org/00xq5mb92 Color Line (Norway)'),
(9457, 'https://ror.org/02dxbtx84', 'no_lang_code', 1, 'https://ror.org/02dxbtx84 Colorobbia (Italy)'),
(9458, 'https://ror.org/00jeje538', 'no_lang_code', 1, 'https://ror.org/00jeje538 Comarch (Poland)'),
(9459, 'https://ror.org/044pe5q70', 'no_lang_code', 1, 'https://ror.org/044pe5q70 Pera (Denmark)'),
(9460, 'https://ror.org/00ca7az78', 'no_lang_code', 1, 'https://ror.org/00ca7az78 BIC Bratislava (Slovakia)'),
(9461, 'https://ror.org/009cgyv75', 'it', 1, 'https://ror.org/009cgyv75 Consorzio Multi-Ente per la promozione e l''adozione di Tecnologie di calcolo Avanzato'),
(9462, 'https://ror.org/04kark913', 'no_lang_code', 1, 'https://ror.org/04kark913 MerLion Pharma (Germany)'),
(9463, 'https://ror.org/00dmq5618', 'no_lang_code', 1, 'https://ror.org/00dmq5618 Compagnie Maritime d''Expertises (France)'),
(9464, 'https://ror.org/03e93v570', 'no_lang_code', 1, 'https://ror.org/03e93v570 BIO Intelligence Service (France)'),
(9465, 'https://ror.org/0315a7e71', 'en', 1, 'https://ror.org/0315a7e71 European Coordination Committee of the Radiological, Electromedical and Healthcare IT Industry'),
(9466, 'https://ror.org/016a12m25', 'fr', 1, 'https://ror.org/016a12m25 ComitƩ Scientifique et Technique des Industries Climatiques'),
(9467, 'https://ror.org/05nvmrj72', 'no_lang_code', 1, 'https://ror.org/05nvmrj72 BioAge (Italy)'),
(9468, 'https://ror.org/03qwpn290', 'no_lang_code', 1, 'https://ror.org/03qwpn290 Johnson & Johnson (United Kingdom)'),
(9469, 'https://ror.org/00t3x1b09', 'no_lang_code', 1, 'https://ror.org/00t3x1b09 Bioazul (Spain)'),
(9470, 'https://ror.org/00tm6q440', 'no_lang_code', 1, 'https://ror.org/00tm6q440 DeskArtes (Finland)'),
(9471, 'https://ror.org/0325nt175', 'no_lang_code', 1, 'https://ror.org/0325nt175 Biobase (Germany)'),
(9472, 'https://ror.org/01vjc3s29', 'no_lang_code', 1, 'https://ror.org/01vjc3s29 AOA Apparatebau Gauting (Germany)'),
(9473, 'https://ror.org/007n8tg79', 'no_lang_code', 1, 'https://ror.org/007n8tg79 DanSteel (Denmark)'),
(9474, 'https://ror.org/01pq15308', 'de', 1, 'https://ror.org/01pq15308 Biochemisches Institut für Umweltcarcinogene'),
(9475, 'https://ror.org/022c7bq15', 'no_lang_code', 1, 'https://ror.org/022c7bq15 AOS Products (United Kingdom)'),
(9476, 'https://ror.org/04q6x6869', 'no_lang_code', 1, 'https://ror.org/04q6x6869 APC Composite (Sweden)'),
(9477, 'https://ror.org/045b8kj71', 'no_lang_code', 1, 'https://ror.org/045b8kj71 Bioclear Earth (Netherlands)'),
(9478, 'https://ror.org/002fen565', 'no_lang_code', 1, 'https://ror.org/002fen565 BC Platforms (Finland)'),
(9479, 'https://ror.org/0046pcp30', 'no_lang_code', 1, 'https://ror.org/0046pcp30 Gwent Group (United Kingdom)'),
(9480, 'https://ror.org/02ptz5951', 'en', 1, 'https://ror.org/02ptz5951 Gemeinsame Forschungsstelle Joint Research Centre'),
(9481, 'https://ror.org/031h48w98', 'no_lang_code', 1, 'https://ror.org/031h48w98 AMS (Germany)'),
(9482, 'https://ror.org/035za2858', 'no_lang_code', 1, 'https://ror.org/035za2858 Biofaction (Austria)'),
(9483, 'https://ror.org/0432q4w56', 'en', 1, 'https://ror.org/0432q4w56 BioInfoBank Institute'),
(9484, 'https://ror.org/02weyc170', 'no_lang_code', 1, 'https://ror.org/02weyc170 AquaBioTech Group (Malta)'),
(9485, 'https://ror.org/05dybt340', 'en', 1, 'https://ror.org/05dybt340 Centre de Recherches sur les Communications Canada Communications Research Centre Canada'),
(9486, 'https://ror.org/01y32sp40', 'no_lang_code', 1, 'https://ror.org/01y32sp40 Europäisches Centrum für Mechatronik (Germany)'),
(9487, 'https://ror.org/03bdeb788', 'no_lang_code', 1, 'https://ror.org/03bdeb788 Community of European Shipyards Associations'),
(9488, 'https://ror.org/04n8fbz89', 'no_lang_code', 1, 'https://ror.org/04n8fbz89 AstraZeneca (Canada)'),
(9489, 'https://ror.org/03q1j4a15', 'no_lang_code', 1, 'https://ror.org/03q1j4a15 Biolution (Austria)'),
(9490, 'https://ror.org/01595ga64', 'no_lang_code', 1, 'https://ror.org/01595ga64 Cowi (Norway)'),
(9491, 'https://ror.org/0150tj573', 'de', 1, 'https://ror.org/0150tj573 Deutsche Bundespost German Federal Post Office'),
(9492, 'https://ror.org/03epbnb34', 'no_lang_code', 1, 'https://ror.org/03epbnb34 AquaTT (Ireland)'),
(9493, 'https://ror.org/03s48wx79', 'en', 1, 'https://ror.org/03s48wx79 Aquitaine Europe Communication'),
(9494, 'https://ror.org/00n2d9253', 'no_lang_code', 1, 'https://ror.org/00n2d9253 Veolia (Sweden)'),
(9495, 'https://ror.org/02bez8p50', 'no_lang_code', 1, 'https://ror.org/02bez8p50 ArcelorMittal (Luxembourg)'),
(9496, 'https://ror.org/04enkmp14', 'no_lang_code', 1, 'https://ror.org/04enkmp14 NAMSA (France)'),
(9497, 'https://ror.org/00evgsc59', 'no_lang_code', 1, 'https://ror.org/00evgsc59 Babcock & Wilcox (Denmark)'),
(9498, 'https://ror.org/05fynv140', 'no_lang_code', 1, 'https://ror.org/05fynv140 Transelectrica (Romania)'),
(9499, 'https://ror.org/05b3zn620', 'no_lang_code', 1, 'https://ror.org/05b3zn620 Biomedal (Spain)'),
(9500, 'https://ror.org/04efgte12', 'no_lang_code', 1, 'https://ror.org/04efgte12 Gesellschaft für Nuklear Service (Germany)'),
(9501, 'https://ror.org/050jzv373', 'en', 1, 'https://ror.org/050jzv373 AEE Institute for Sustainable Technologies'),
(9502, 'https://ror.org/00r06ws05', 'en', 1, 'https://ror.org/00r06ws05 Club Young Scientists'),
(9503, 'https://ror.org/039r8xz84', 'en', 1, 'https://ror.org/039r8xz84 Arcadia International'),
(9504, 'https://ror.org/02h8qh795', 'no_lang_code', 1, 'https://ror.org/02h8qh795 Bioneer (Denmark)'),
(9505, 'https://ror.org/016p00020', 'no_lang_code', 1, 'https://ror.org/016p00020 Computerised Information Technology (United Kingdom)'),
(9506, 'https://ror.org/02z0n2g81', 'no_lang_code', 1, 'https://ror.org/02z0n2g81 ArƧelik (Turkey)'),
(9507, 'https://ror.org/01ey27e46', 'no_lang_code', 1, 'https://ror.org/01ey27e46 Biopac (United Kingdom)'),
(9508, 'https://ror.org/01n7gem85', 'de', 1, 'https://ror.org/01n7gem85 Deutsche Nationalbibliothek German National Library'),
(9509, 'https://ror.org/03prr3914', 'en', 1, 'https://ror.org/03prr3914 Community of Mediterranean Universities'),
(9510, 'https://ror.org/045tw8497', 'no_lang_code', 1, 'https://ror.org/045tw8497 Archer Technicoat Limited (United Kingdom)'),
(9511, 'https://ror.org/01950ke92', 'no_lang_code', 1, 'https://ror.org/01950ke92 Concentration Heat and Momentum (United Kingdom)'),
(9512, 'https://ror.org/0232wt504', 'no_lang_code', 1, 'https://ror.org/0232wt504 RAG Aktiengesellschaft (Germany)'),
(9513, 'https://ror.org/0243qcr03', 'no_lang_code', 1, 'https://ror.org/0243qcr03 Archetypon'),
(9514, 'https://ror.org/0538tt685', 'no_lang_code', 1, 'https://ror.org/0538tt685 BIOS Bioenergiesysteme (Austria)'),
(9515, 'https://ror.org/04dxam533', 'no_lang_code', 1, 'https://ror.org/04dxam533 Archimedia (Greece)'),
(9516, 'https://ror.org/016v3mm55', 'no_lang_code', 1, 'https://ror.org/016v3mm55 CognIT (Norway)'),
(9517, 'https://ror.org/0469d4m84', 'no_lang_code', 1, 'https://ror.org/0469d4m84 ƅF (Switzerland)'),
(9518, 'https://ror.org/051w7zc95', 'en', 1, 'https://ror.org/051w7zc95 Arctic and Antarctic Research Institute Арктический Šø антарктический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(9519, 'https://ror.org/01sc2zj52', 'no_lang_code', 1, 'https://ror.org/01sc2zj52 Ardeje (France)'),
(9520, 'https://ror.org/03end3932', 'no_lang_code', 1, 'https://ror.org/03end3932 GGG (France)'),
(9521, 'https://ror.org/031432n58', 'de', 1, 'https://ror.org/031432n58 Deutsche Welle'),
(9522, 'https://ror.org/02wnbr922', 'no_lang_code', 1, 'https://ror.org/02wnbr922 IBM (France)'),
(9523, 'https://ror.org/04wd3dx51', 'no_lang_code', 1, 'https://ror.org/04wd3dx51 Compagnie Industrielle d''Applications Thermiques (France)'),
(9524, 'https://ror.org/01thy5064', 'no_lang_code', 1, 'https://ror.org/01thy5064 Biosensor (Italy)'),
(9525, 'https://ror.org/02mtwe318', 'no_lang_code', 1, 'https://ror.org/02mtwe318 Argus Umweltbiotechnologie (Germany)'),
(9526, 'https://ror.org/05t041s05', 'no_lang_code', 1, 'https://ror.org/05t041s05 Ariadna (Spain)'),
(9527, 'https://ror.org/03ra2r215', 'no_lang_code', 1, 'https://ror.org/03ra2r215 CAPTEC (Ireland)'),
(9528, 'https://ror.org/02xgttq77', 'no_lang_code', 1, 'https://ror.org/02xgttq77 Terma (Denmark)'),
(9529, 'https://ror.org/031fnb427', 'no_lang_code', 1, 'https://ror.org/031fnb427 Biosensores (Spain)'),
(9530, 'https://ror.org/03mcj3013', 'no_lang_code', 1, 'https://ror.org/03mcj3013 Detection Limit (United States)'),
(9531, 'https://ror.org/007qdqj47', 'en', 1, 'https://ror.org/007qdqj47 Department of Health and Wellness Promotion'),
(9532, 'https://ror.org/005e54928', 'no_lang_code', 1, 'https://ror.org/005e54928 Kjobenhavns Telefon Aktieselskab (Denmark)'),
(9533, 'https://ror.org/03e278q38', 'no_lang_code', 1, 'https://ror.org/03e278q38 Vinci (France)'),
(9534, 'https://ror.org/02jaztc47', 'en', 1, 'https://ror.org/02jaztc47 Institut für Textil- und Verfahrenstechnik Denkendorf Institute of Textile Technology and Process Engineering'),
(9535, 'https://ror.org/02kvgg008', 'no_lang_code', 1, 'https://ror.org/02kvgg008 Cepsa (Spain)'),
(9536, 'https://ror.org/05gd75v11', 'en', 1, 'https://ror.org/05gd75v11 Council of Southeast Pennsylvania'),
(9537, 'https://ror.org/03wg52r81', 'en', 1, 'https://ror.org/03wg52r81 Health and Human Services Agency'),
(9538, 'https://ror.org/03xptr862', 'de', 1, 'https://ror.org/03xptr862 Deutsches Jugendinstitut German Youth Institute'),
(9539, 'https://ror.org/02dtzq355', 'no_lang_code', 1, 'https://ror.org/02dtzq355 Endesa (Spain)'),
(9540, 'https://ror.org/05c4aed35', 'no_lang_code', 1, 'https://ror.org/05c4aed35 MediTox (Czechia)'),
(9541, 'https://ror.org/05c79g497', 'no_lang_code', 1, 'https://ror.org/05c79g497 Cookson-Clal (France)'),
(9542, 'https://ror.org/04rndy785', 'no_lang_code', 1, 'https://ror.org/04rndy785 Arqtech Laboratories (Ireland)'),
(9543, 'https://ror.org/03hmj3984', 'no_lang_code', 1, 'https://ror.org/03hmj3984 Ambiente Risorse Sviluppo Environment, Resources and Development'),
(9544, 'https://ror.org/0571eed91', 'no_lang_code', 1, 'https://ror.org/0571eed91 Concentris (Germany)'),
(9545, 'https://ror.org/02h9xze43', 'no_lang_code', 1, 'https://ror.org/02h9xze43 Biotrend (Portugal)'),
(9546, 'https://ror.org/0044m1c71', 'no_lang_code', 1, 'https://ror.org/0044m1c71 Conceptivity (Switzerland)'),
(9547, 'https://ror.org/02dbn9a54', 'no_lang_code', 1, 'https://ror.org/02dbn9a54 DiaSorin (Ireland)'),
(9548, 'https://ror.org/05gh85146', 'no_lang_code', 1, 'https://ror.org/05gh85146 Arctik'),
(9549, 'https://ror.org/037dd8g98', 'no_lang_code', 1, 'https://ror.org/037dd8g98 Ecological Consultancy Services (Ireland)'),
(9550, 'https://ror.org/05kjm8921', 'no_lang_code', 1, 'https://ror.org/05kjm8921 Ecorys (Netherlands)'),
(9551, 'https://ror.org/03hsbk852', 'no_lang_code', 1, 'https://ror.org/03hsbk852 ASCO Industries (Belgium)'),
(9552, 'https://ror.org/03p2wmp96', 'no_lang_code', 1, 'https://ror.org/03p2wmp96 Ascom (Switzerland)'),
(9553, 'https://ror.org/040paq780', 'es', 1, 'https://ror.org/040paq780 Ecoserveis'),
(9554, 'https://ror.org/053cqar38', 'no_lang_code', 1, 'https://ror.org/053cqar38 Ecorys (United Kingdom)'),
(9555, 'https://ror.org/01h8my706', 'no_lang_code', 1, 'https://ror.org/01h8my706 Ascometal (France)'),
(9556, 'https://ror.org/05ashvr51', 'no_lang_code', 1, 'https://ror.org/05ashvr51 Cosmo Pharmaceuticals (Italy)'),
(9557, 'https://ror.org/01fr3an09', 'no_lang_code', 1, 'https://ror.org/01fr3an09 BMT Group (Netherlands)'),
(9558, 'https://ror.org/00qt7y372', 'no_lang_code', 1, 'https://ror.org/00qt7y372 Biozoon (Germany)'),
(9559, 'https://ror.org/04wfxgv30', 'no_lang_code', 1, 'https://ror.org/04wfxgv30 Bitron (Italy)'),
(9560, 'https://ror.org/03cy2tx68', 'en', 1, 'https://ror.org/03cy2tx68 Black Sea Regional Energy Centre'),
(9561, 'https://ror.org/012thdv08', 'no_lang_code', 1, 'https://ror.org/012thdv08 Zueblin (Germany)'),
(9562, 'https://ror.org/0562bn695', 'no_lang_code', 1, 'https://ror.org/0562bn695 Aurelius AG (Germany)'),
(9563, 'https://ror.org/015k31167', 'no_lang_code', 1, 'https://ror.org/015k31167 BLC Leather Technology Centre'),
(9564, 'https://ror.org/04d41fm91', 'no_lang_code', 1, 'https://ror.org/04d41fm91 ASIO spol (Czechia)'),
(9565, 'https://ror.org/04831wp37', 'no_lang_code', 1, 'https://ror.org/04831wp37 Devan Chemicals (Belgium)'),
(9566, 'https://ror.org/03d587e82', 'en', 1, 'https://ror.org/03d587e82 Estonian E Health Foundation'),
(9567, 'https://ror.org/047r6vz60', 'en', 1, 'https://ror.org/047r6vz60 Bloomfield Science Museum Jerusalem'),
(9568, 'https://ror.org/030kh5t61', 'no_lang_code', 1, 'https://ror.org/030kh5t61 EDMA Innova'),
(9569, '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)'),
(9570, 'https://ror.org/044dw4g52', 'no_lang_code', 1, 'https://ror.org/044dw4g52 BlueBotics (Switzerland)'),
(9571, 'https://ror.org/05qxcfy37', 'et', 1, 'https://ror.org/05qxcfy37 Eesti RahvusringhƤƤling Estonian Public Broadcasting'),
(9572, 'https://ror.org/0109e3y78', 'no_lang_code', 1, 'https://ror.org/0109e3y78 Bluegreen Strategy (Italy)'),
(9573, 'https://ror.org/01q61vc37', 'no_lang_code', 1, 'https://ror.org/01q61vc37 Devan (Portugal)'),
(9574, 'https://ror.org/03he51f03', 'no_lang_code', 1, 'https://ror.org/03he51f03 A2A (Italy)'),
(9575, 'https://ror.org/05p4evs57', 'en', 1, 'https://ror.org/05p4evs57 Eesti Kultuuriministeerium Ministry of Culture'),
(9576, 'https://ror.org/0364xxv33', 'no_lang_code', 1, 'https://ror.org/0364xxv33 Efacec (Portugal)'),
(9577, 'https://ror.org/01hny1h96', 'no_lang_code', 1, 'https://ror.org/01hny1h96 Efkon (Austria)'),
(9578, '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'),
(9579, 'https://ror.org/01famp260', 'no_lang_code', 1, 'https://ror.org/01famp260 BOC (Austria)'),
(9580, 'https://ror.org/03kmak902', 'no_lang_code', 1, 'https://ror.org/03kmak902 Bƶhler Edelstahl (Austria)'),
(9581, 'https://ror.org/02svqt910', 'en', 1, 'https://ror.org/02svqt910 European Institute for Biomedical Imaging Research'),
(9582, 'https://ror.org/01wen3r86', 'no_lang_code', 1, 'https://ror.org/01wen3r86 Boliden (Sweden)'),
(9583, 'https://ror.org/04c3e6c98', 'no_lang_code', 1, 'https://ror.org/04c3e6c98 Eicas Automazione (Italy)'),
(9584, 'https://ror.org/012p5cj16', 'no_lang_code', 1, 'https://ror.org/012p5cj16 DIAD Group (Italy)'),
(9585, 'https://ror.org/04v6x2017', 'no_lang_code', 1, 'https://ror.org/04v6x2017 Aquaplus (Belgium)'),
(9586, 'https://ror.org/03yzj7n24', 'es', 1, 'https://ror.org/03yzj7n24 Asociación de Investigación de la Industria Agroalimentaria'),
(9587, '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'),
(9588, 'https://ror.org/04wdqjx17', 'no_lang_code', 1, 'https://ror.org/04wdqjx17 Diagenode (Belgium)'),
(9589, 'https://ror.org/03nhvga51', 'no_lang_code', 1, 'https://ror.org/03nhvga51 DiagnoSwiss (Switzerland)'),
(9590, 'https://ror.org/023k1pq97', 'no_lang_code', 1, 'https://ror.org/023k1pq97 Bombardier (Germany)'),
(9591, 'https://ror.org/02ec4x178', 'no_lang_code', 1, 'https://ror.org/02ec4x178 Bombardier (Sweden)'),
(9592, 'https://ror.org/05n8xke20', 'en', 1, 'https://ror.org/05n8xke20 Dialogik (Germany)'),
(9593, 'https://ror.org/02skcpv41', 'es', 1, 'https://ror.org/02skcpv41 Asociación de Investigación y Cooperación Industrial de Andalucía'),
(9594, 'https://ror.org/031gmvg29', 'no_lang_code', 1, 'https://ror.org/031gmvg29 Siemens (Denmark)'),
(9595, 'https://ror.org/02zksq237', 'es', 1, 'https://ror.org/02zksq237 Asociación de la Industria Navarra'),
(9596, 'https://ror.org/00hw1e768', 'no_lang_code', 1, 'https://ror.org/00hw1e768 Radex Heraklith Industriebeteiligungs (Germany)'),
(9597, 'https://ror.org/04690g322', 'no_lang_code', 1, 'https://ror.org/04690g322 Eilenburger Electrolysis and Environmental Engineering Eilenburger Elektrolyse - und Umwelttechnik (Germany)'),
(9598, 'https://ror.org/056185y51', 'no_lang_code', 1, 'https://ror.org/056185y51 Bouygues (France)'),
(9599, 'https://ror.org/02r30yj10', 'en', 1, 'https://ror.org/02r30yj10 European Incoherent Scatter Scientific Association'),
(9600, 'https://ror.org/003c3rr61', 'no_lang_code', 1, 'https://ror.org/003c3rr61 Diehl (Germany)'),
(9601, 'https://ror.org/03c5bjw68', 'no_lang_code', 1, 'https://ror.org/03c5bjw68 BoxModul (Sweden)'),
(9602, 'https://ror.org/00b1drk46', 'no_lang_code', 1, 'https://ror.org/00b1drk46 Asper Biotech (Estonia)'),
(9603, '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'),
(9604, 'https://ror.org/03hy0tb65', 'no_lang_code', 1, 'https://ror.org/03hy0tb65 ASSIST Software (Romania)'),
(9605, 'https://ror.org/039ft6244', 'no_lang_code', 1, 'https://ror.org/039ft6244 ArcelorMittal (Germany)'),
(9606, 'https://ror.org/05hevd194', 'no_lang_code', 1, 'https://ror.org/05hevd194 Ekodoma (Latvia)'),
(9607, 'https://ror.org/00aztzy37', 'no_lang_code', 1, 'https://ror.org/00aztzy37 El.En. Group (Italy)'),
(9608, 'https://ror.org/04pb97k73', 'no_lang_code', 1, 'https://ror.org/04pb97k73 Hewlett-Packard (Germany)'),
(9609, 'https://ror.org/05gkngk42', 'no_lang_code', 1, 'https://ror.org/05gkngk42 Elastopoli (Finland)'),
(9610, 'https://ror.org/02zdssw25', 'el', 1, 'https://ror.org/02zdssw25 Dimitra'),
(9611, 'https://ror.org/00hxj5n33', 'de', 1, 'https://ror.org/00hxj5n33 Deutsches Institut für Normung German Institute for Standardization'),
(9612, 'https://ror.org/04vcs1h64', 'no_lang_code', 1, 'https://ror.org/04vcs1h64 Brandtex (Denmark)'),
(9613, 'https://ror.org/00nxp2634', 'fr', 1, 'https://ror.org/00nxp2634 Association de Coordination Technique Pour l''Industrie Agroalimentaire'),
(9614, 'https://ror.org/05x5s0870', 'no_lang_code', 1, 'https://ror.org/05x5s0870 Perceptive Software (Germany)'),
(9615, 'https://ror.org/03gam8m83', 'no_lang_code', 1, 'https://ror.org/03gam8m83 Engedi Science (United Kingdom)'),
(9616, 'https://ror.org/017artp82', 'no_lang_code', 1, 'https://ror.org/017artp82 Electricity Authority of Cyprus (Cyprus)'),
(9617, 'https://ror.org/03hs0j596', 'no_lang_code', 1, 'https://ror.org/03hs0j596 Bord SolƔthair an Leictreacha Electricity Supply Board (Ireland)'),
(9618, 'https://ror.org/007yc7a13', 'no_lang_code', 1, 'https://ror.org/007yc7a13 Brimatech (Austria)'),
(9619, 'https://ror.org/0386f5975', 'no_lang_code', 1, 'https://ror.org/0386f5975 Finceramica (Italy)'),
(9620, 'https://ror.org/05wbv7q50', 'no_lang_code', 1, 'https://ror.org/05wbv7q50 Brissonneau and Lotz (France) Brissonneau et Lotz'),
(9621, 'https://ror.org/01zw4be88', 'no_lang_code', 1, 'https://ror.org/01zw4be88 Fincantieri (Italy)'),
(9622, 'https://ror.org/04z1brt13', 'no_lang_code', 1, 'https://ror.org/04z1brt13 Bretagne Innovation (France)'),
(9623, 'https://ror.org/00e7hrn50', 'no_lang_code', 1, 'https://ror.org/00e7hrn50 LUSAS (United Kingdom)'),
(9624, 'https://ror.org/033g0hw83', 'en', 1, 'https://ror.org/033g0hw83 Finnish Society of Automation'),
(9625, 'https://ror.org/01f7q1k19', 'no_lang_code', 1, 'https://ror.org/01f7q1k19 DKI Plast (Denmark)'),
(9626, 'https://ror.org/04jbbj956', 'no_lang_code', 1, 'https://ror.org/04jbbj956 Element Energy (United Kingdom)'),
(9627, 'https://ror.org/04phr2832', 'no_lang_code', 1, 'https://ror.org/04phr2832 DLF Trifolium (Denmark)'),
(9628, 'https://ror.org/003kxr082', 'no_lang_code', 1, 'https://ror.org/003kxr082 British Airways (United Kingdom)'),
(9629, 'https://ror.org/00r0jqe29', 'en', 1, 'https://ror.org/00r0jqe29 British Science Association'),
(9630, 'https://ror.org/02bhe9a93', 'en', 1, 'https://ror.org/02bhe9a93 British Hydromechanics Research Group'),
(9631, 'https://ror.org/0262pp157', 'en', 1, 'https://ror.org/0262pp157 Research Institute of the Finnish Economy'),
(9632, 'https://ror.org/00tq8h369', 'no_lang_code', 1, 'https://ror.org/00tq8h369 Elisa (Finland)'),
(9633, 'https://ror.org/00hef7f20', 'en', 1, 'https://ror.org/00hef7f20 Finnish Transport Agency'),
(9634, 'https://ror.org/01yxr7f17', 'no_lang_code', 1, 'https://ror.org/01yxr7f17 Finovatis (France)'),
(9635, 'https://ror.org/00jg7pf63', 'en', 1, 'https://ror.org/00jg7pf63 Iowa City VA Medical Research Foundation'),
(9636, 'https://ror.org/042yr5054', 'no_lang_code', 1, 'https://ror.org/042yr5054 British Textile Technology Group'),
(9637, 'https://ror.org/050teng13', 'no_lang_code', 1, 'https://ror.org/050teng13 Humanetics Innovative Solutions (Netherlands)'),
(9638, 'https://ror.org/04axend95', 'no_lang_code', 1, 'https://ror.org/04axend95 FISBA OPTIK (Switzerland)'),
(9639, 'https://ror.org/045vamp18', 'no_lang_code', 1, 'https://ror.org/045vamp18 FACC (Austria)'),
(9640, 'https://ror.org/02fyr1a65', 'no_lang_code', 1, 'https://ror.org/02fyr1a65 DunavNET (Serbia)'),
(9641, 'https://ror.org/005f16662', 'en', 1, 'https://ror.org/005f16662 FishBase Information and Research Group'),
(9642, 'https://ror.org/03g4qd502', 'en', 1, 'https://ror.org/03g4qd502 Brodarski Institute'),
(9643, 'https://ror.org/001m7ja14', 'no_lang_code', 1, 'https://ror.org/001m7ja14 FIT Consulting (Italy)'),
(9644, 'https://ror.org/04wm2jh50', 'en', 1, 'https://ror.org/04wm2jh50 Dublin City Council'),
(9645, 'https://ror.org/030x6kb17', 'no_lang_code', 1, 'https://ror.org/030x6kb17 Dune (Italy)'),
(9646, 'https://ror.org/01naa4k48', 'no_lang_code', 1, 'https://ror.org/01naa4k48 Dunreidy Engneering (Ireland)'),
(9647, 'https://ror.org/01n42m123', 'no_lang_code', 1, 'https://ror.org/01n42m123 Forschungsgesellschaft Kraftfahrwesen Aachen (Germany)'),
(9648, 'https://ror.org/02vzt4388', 'no_lang_code', 1, 'https://ror.org/02vzt4388 Bruel & Kjaer Sound and Vibration Measurement (Denmark)'),
(9649, 'https://ror.org/043pv1763', 'no_lang_code', 1, 'https://ror.org/043pv1763 Dv Tecnologie d''Avanguardia (Italy)'),
(9650, 'https://ror.org/0179z8203', 'no_lang_code', 1, 'https://ror.org/0179z8203 Flabeg (Germany)'),
(9651, 'https://ror.org/030rk0759', 'no_lang_code', 1, 'https://ror.org/030rk0759 Electrovac (Austria)'),
(9652, 'https://ror.org/023zgnb96', 'no_lang_code', 1, 'https://ror.org/023zgnb96 Dyadic (Netherlands)'),
(9653, 'https://ror.org/0501e3k91', 'no_lang_code', 1, 'https://ror.org/0501e3k91 Flensburger Schiffbau Gesellschaft (Germany)'),
(9654, 'https://ror.org/00zvs5g09', 'no_lang_code', 1, 'https://ror.org/00zvs5g09 Flexiant (United Kingdom)'),
(9655, 'https://ror.org/00h9r4759', 'no_lang_code', 1, 'https://ror.org/00h9r4759 Flowtech International (Sweden)'),
(9656, 'https://ror.org/01stake94', 'no_lang_code', 1, 'https://ror.org/01stake94 D2S International (Belgium)'),
(9657, 'https://ror.org/0518gvp45', 'no_lang_code', 1, 'https://ror.org/0518gvp45 Fluidtime (Austria)'),
(9658, 'https://ror.org/001b7ye13', 'en', 1, 'https://ror.org/001b7ye13 Building Services Research and Information Association'),
(9659, 'https://ror.org/02jf95y23', 'no_lang_code', 1, 'https://ror.org/02jf95y23 e GEOS (Italy)'),
(9660, 'https://ror.org/008wfp513', 'no_lang_code', 1, 'https://ror.org/008wfp513 Buck Consultants International'),
(9661, 'https://ror.org/00qmxzv90', 'en', 1, 'https://ror.org/00qmxzv90 Nordic Folkecenter for Renewable Energy'),
(9662, 'https://ror.org/0388bf577', 'en', 1, 'https://ror.org/0388bf577 Bulgarian Chamber of Commerce and Industry'),
(9663, 'https://ror.org/01wrh2n21', 'en', 1, 'https://ror.org/01wrh2n21 Hellenic Foundation for European and Foreign Policy'),
(9664, 'https://ror.org/03kbqak87', 'no_lang_code', 1, 'https://ror.org/03kbqak87 Ellinogermaniki Agogi'),
(9665, 'https://ror.org/02r382680', 'bs', 1, 'https://ror.org/02r382680 Prona'),
(9666, 'https://ror.org/037bt1j05', 'fr', 1, 'https://ror.org/037bt1j05 Fondation de CoopƩration Scientifique Foundation for Scientific Cooperation'),
(9667, 'https://ror.org/05mwscs77', 'no_lang_code', 1, 'https://ror.org/05mwscs77 ABB (Italy)'),
(9668, 'https://ror.org/01gxrtw55', 'en', 1, 'https://ror.org/01gxrtw55 E.O. Paton Electric Welding Institute Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Š·Š²Š°Ń€ŃŽŠ²Š°Š½Š½Ń ім.Š„.Šž.ŠŸŠ°Ń‚Š¾Š½Š°'),
(9669, 'https://ror.org/0597eqm76', 'de', 1, 'https://ror.org/0597eqm76 Bundesanstalt für Bergbauernfragen Federal Institute for Less-Favoured and Mountainous Areas'),
(9670, 'https://ror.org/013gjg633', 'no_lang_code', 1, 'https://ror.org/013gjg633 E.ON (Germany)'),
(9671, 'https://ror.org/016jjjq38', 'no_lang_code', 1, 'https://ror.org/016jjjq38 Eltropuls (United Kingdom)'),
(9672, 'https://ror.org/05b1dm808', 'no_lang_code', 1, 'https://ror.org/05b1dm808 Vattenfall (Germany)'),
(9673, 'https://ror.org/04kfv4779', 'no_lang_code', 1, 'https://ror.org/04kfv4779 Elyros (Belgium)'),
(9674, 'https://ror.org/02jh73m95', 'it', 1, 'https://ror.org/02jh73m95 Felicita and Enrico Bignaschi and Sons Foundation Fondazione Bignaschi'),
(9675, 'https://ror.org/035ytfy75', 'no_lang_code', 1, 'https://ror.org/035ytfy75 British Nuclear Fuel Limited (United Kingdom)'),
(9676, 'https://ror.org/0524dwb40', 'it', 1, 'https://ror.org/0524dwb40 Fondazione GraphiTech'),
(9677, 'https://ror.org/00qd3cs31', 'no_lang_code', 1, 'https://ror.org/00qd3cs31 Dimos Athinaion Epicheirisi Michanografisis (Greece)'),
(9678, 'https://ror.org/02zeqvn38', 'no_lang_code', 1, 'https://ror.org/02zeqvn38 EMC Microcollections (Germany)'),
(9679, 'https://ror.org/00vcg0k36', 'en', 1, 'https://ror.org/00vcg0k36 EASN Technology Innovation Services BVBA'),
(9680, 'https://ror.org/00m71bz66', 'it', 1, 'https://ror.org/00m71bz66 Fondazione Idis CittĆ  della Scienza'),
(9681, 'https://ror.org/04f8y1a51', 'no_lang_code', 1, 'https://ror.org/04f8y1a51 EmergenTec (Austria)'),
(9682, 'https://ror.org/00ssxa384', 'no_lang_code', 1, 'https://ror.org/00ssxa384 Eclexys (Switzerland)'),
(9683, 'https://ror.org/00d7mpc92', 'en', 1, 'https://ror.org/00d7mpc92 PENTA Foundation'),
(9684, 'https://ror.org/0453arj96', 'no_lang_code', 1, 'https://ror.org/0453arj96 Empolis (Germany)'),
(9685, 'https://ror.org/05dv2tx94', 'no_lang_code', 1, 'https://ror.org/05dv2tx94 PricewaterhouseCoopers (France)'),
(9686, 'https://ror.org/01rnvev51', 'it', 1, 'https://ror.org/01rnvev51 Fondazione Politecnico di Milano'),
(9687, 'https://ror.org/0213kp011', 'no_lang_code', 1, 'https://ror.org/0213kp011 Empresa de Desenvolvimento Mineiro (Portugal)'),
(9688, 'https://ror.org/004np0e76', 'no_lang_code', 1, 'https://ror.org/004np0e76 Dornier (Germany)'),
(9689, 'https://ror.org/005jham19', 'no_lang_code', 1, 'https://ror.org/005jham19 Ente Nazionale Assistenza al Volo (Italy)'),
(9690, 'https://ror.org/057n0mb56', 'it', 1, 'https://ror.org/057n0mb56 Digital Renaissance Foundation Fondazione Rinascimento Digitale'),
(9691, 'https://ror.org/03et1ay56', 'en', 1, 'https://ror.org/03et1ay56 Fondazione Rosselli Rosselli Foundation'),
(9692, 'https://ror.org/032v09t14', 'en', 1, 'https://ror.org/032v09t14 Bundesnetzagentur Federal Network Agency'),
(9693, 'https://ror.org/04mpvdf36', 'no_lang_code', 1, 'https://ror.org/04mpvdf36 Enerdata (France)'),
(9694, 'https://ror.org/00273wp13', 'en', 1, 'https://ror.org/00273wp13 Energy Cities'),
(9695, 'https://ror.org/041shdj17', 'no_lang_code', 1, 'https://ror.org/041shdj17 Energie Baden-Württemberg (Germany)'),
(9696, 'https://ror.org/029benr66', 'en', 1, 'https://ror.org/029benr66 Austrian Energy Agency Ɩsterreichische Energieagentur'),
(9697, 'https://ror.org/04rvyn674', 'no_lang_code', 1, 'https://ror.org/04rvyn674 Energiewerke Nord (Germany)'),
(9698, 'https://ror.org/01rz4nb07', 'en', 1, 'https://ror.org/01rz4nb07 Bureau fƩdƩral du Plan Federal Planning Bureau Het Federaal Planbureau'),
(9699, 'https://ror.org/054fn8673', 'no_lang_code', 1, 'https://ror.org/054fn8673 Energinet (Denmark)'),
(9700, 'https://ror.org/03zq1ab33', 'sk', 1, 'https://ror.org/03zq1ab33 Energy Centre Bratislava'),
(9701, 'https://ror.org/03q83t159', 'en', 1, 'https://ror.org/03q83t159 Fonds de la Recherche Scientifique Fund for Scientific Research'),
(9702, 'https://ror.org/00tyzcb87', 'no_lang_code', 1, 'https://ror.org/00tyzcb87 Bureau van Dijk (Belgium)'),
(9703, 'https://ror.org/01ag8d960', 'no_lang_code', 1, 'https://ror.org/01ag8d960 Global Security Intelligence (United Kingdom)'),
(9704, 'https://ror.org/038es7c44', 'no_lang_code', 1, 'https://ror.org/038es7c44 EnginSoft (Italy)'),
(9705, 'https://ror.org/045jad561', 'no_lang_code', 1, 'https://ror.org/045jad561 GlobalFoundries (Germany)'),
(9706, 'https://ror.org/01gq5z667', 'no_lang_code', 1, 'https://ror.org/01gq5z667 BYG Systems (United Kingdom)'),
(9707, 'https://ror.org/04jppzq03', 'no_lang_code', 1, 'https://ror.org/04jppzq03 Fordesi (Portugal)'),
(9708, 'https://ror.org/01c0hr456', 'no_lang_code', 1, 'https://ror.org/01c0hr456 Glƶtzl (Germany)'),
(9709, 'https://ror.org/04pphg116', 'no_lang_code', 1, 'https://ror.org/04pphg116 c-LEcta (Germany)'),
(9710, 'https://ror.org/028yyha11', 'no_lang_code', 1, 'https://ror.org/028yyha11 GMI Aero (France)'),
(9711, 'https://ror.org/0560hct13', 'no_lang_code', 1, 'https://ror.org/0560hct13 Engineering Solutions International (Ireland)'),
(9712, 'https://ror.org/05vjdx283', 'en', 1, 'https://ror.org/05vjdx283 CGS Group'),
(9713, 'https://ror.org/010pkhb41', 'es', 1, 'https://ror.org/010pkhb41 Association Instituto Tecnológico MetalmecÔnico'),
(9714, 'https://ror.org/03tvffn83', 'fr', 1, 'https://ror.org/03tvffn83 Forem'),
(9715, 'https://ror.org/00vcvx959', 'es', 1, 'https://ror.org/00vcvx959 Forem'),
(9716, 'https://ror.org/04s786x31', 'no_lang_code', 1, 'https://ror.org/04s786x31 Enercon (Germany)'),
(9717, 'https://ror.org/03sdd1k49', 'no_lang_code', 1, 'https://ror.org/03sdd1k49 Goodyear (Luxembourg)'),
(9718, 'https://ror.org/04aecpw50', 'no_lang_code', 1, 'https://ror.org/04aecpw50 Caixa MƔgica Software (Portugal)'),
(9719, 'https://ror.org/03nmefy27', 'no_lang_code', 1, 'https://ror.org/03nmefy27 Google (Ireland)'),
(9720, 'https://ror.org/050n06q35', 'no_lang_code', 1, 'https://ror.org/050n06q35 Gorenje (Slovenia)'),
(9721, 'https://ror.org/05en24r36', 'sl', 1, 'https://ror.org/05en24r36 Chamber of Commerce and Industry of Slovenia Gospodarska zbornica Slovenije'),
(9722, 'https://ror.org/04kwbxb88', 'no_lang_code', 1, 'https://ror.org/04kwbxb88 Cambridge CMOS Sensors (United Kingdom)'),
(9723, 'https://ror.org/03gcet659', 'no_lang_code', 1, 'https://ror.org/03gcet659 Cambridge Econometrics (United Kingdom)'),
(9724, 'https://ror.org/05gypt250', 'sl', 1, 'https://ror.org/05gypt250 Giz-Grozd Plasttehnika Plasttechnics Cluster Slovenia'),
(9725, 'https://ror.org/03nd75281', 'sv', 1, 'https://ror.org/03nd75281 Gothenburg Municipality Gƶteborgs Stads'),
(9726, 'https://ror.org/0594wvc02', 'no_lang_code', 1, 'https://ror.org/0594wvc02 Gühring (Germany)'),
(9727, 'https://ror.org/017qjec28', 'en', 1, 'https://ror.org/017qjec28 VATT Institute for Economic Research'),
(9728, 'https://ror.org/01shjyx24', 'no_lang_code', 1, 'https://ror.org/01shjyx24 Cambridge Environmental Research Consultants (United Kingdom)'),
(9729, 'https://ror.org/03fb4ef52', 'en', 1, 'https://ror.org/03fb4ef52 Gov2u'),
(9730, 'https://ror.org/05xavf734', 'no_lang_code', 1, 'https://ror.org/05xavf734 Graal Tech'),
(9731, 'https://ror.org/01r2apt44', 'no_lang_code', 1, 'https://ror.org/01r2apt44 Grace (Germany)'),
(9732, 'https://ror.org/03kcxbk43', 'it', 1, 'https://ror.org/03kcxbk43 Camera di commercio di Milano'),
(9733, 'https://ror.org/039t93g49', 'de', 1, 'https://ror.org/039t93g49 Forschungsinstitut für Biologischen Landbau Research Institute of Organic Agriculture'),
(9734, 'https://ror.org/057ty7239', 'no_lang_code', 1, 'https://ror.org/057ty7239 Building and Civil Engineering Institute Gradbeni InŔtitut Zrmk d.o.o'),
(9735, 'https://ror.org/026gzzy53', 'no_lang_code', 1, 'https://ror.org/026gzzy53 Grado Zero Espace (Italy)'),
(9736, 'https://ror.org/01a6cr462', 'de', 1, 'https://ror.org/01a6cr462 Forschungsinstitut für schnellwachsende Baumarten'),
(9737, 'https://ror.org/05qa20027', 'no_lang_code', 1, 'https://ror.org/05qa20027 Enide Solutions (Spain)'),
(9738, 'https://ror.org/03847e911', 'no_lang_code', 1, 'https://ror.org/03847e911 International Chemical Investors (Germany)'),
(9739, 'https://ror.org/03qx9tc91', 'no_lang_code', 1, 'https://ror.org/03qx9tc91 Capgemini (France)'),
(9740, 'https://ror.org/04bypsr67', 'no_lang_code', 1, 'https://ror.org/04bypsr67 Enkam (Denmark)'),
(9741, 'https://ror.org/0491v6j54', 'no_lang_code', 1, 'https://ror.org/0491v6j54 Granit Technologies (Switzerland)'),
(9742, 'https://ror.org/05m6rcv15', 'no_lang_code', 1, 'https://ror.org/05m6rcv15 Abingdon Health (United Kingdom)'),
(9743, 'https://ror.org/01x5y8335', 'no_lang_code', 1, 'https://ror.org/01x5y8335 Granta Design (United Kingdom)'),
(9744, 'https://ror.org/03amxdk57', 'no_lang_code', 1, 'https://ror.org/03amxdk57 Capgemini (Netherlands)'),
(9745, 'https://ror.org/00c6b1k17', 'no_lang_code', 1, 'https://ror.org/00c6b1k17 Capgemini (Belgium)'),
(9746, 'https://ror.org/04yw5jr36', 'no_lang_code', 1, 'https://ror.org/04yw5jr36 Cap Sciences (France)'),
(9747, 'https://ror.org/05f3x9v03', 'en', 1, 'https://ror.org/05f3x9v03 Greenovate! Europe'),
(9748, 'https://ror.org/011rkt464', 'no_lang_code', 1, 'https://ror.org/011rkt464 Greentech (France)'),
(9749, 'https://ror.org/01m7qnr31', 'es', 1, 'https://ror.org/01m7qnr31 Ente Vasco de la EnergĆ­a'),
(9750, 'https://ror.org/02sfn4p13', 'no_lang_code', 1, 'https://ror.org/02sfn4p13 Enterprise Estonia (Estonia)'),
(9751, 'https://ror.org/00mkstx48', 'no_lang_code', 1, 'https://ror.org/00mkstx48 Grontmij (Denmark)'),
(9752, 'https://ror.org/02bwrq566', 'no_lang_code', 1, 'https://ror.org/02bwrq566 Carmeq (Germany)'),
(9753, 'https://ror.org/03x2xt559', 'no_lang_code', 1, 'https://ror.org/03x2xt559 Pfizer (Spain)'),
(9754, 'https://ror.org/023h3sg77', 'no_lang_code', 1, 'https://ror.org/023h3sg77 Carnival Corporation (United Kingdom)'),
(9755, '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'),
(9756, 'https://ror.org/01qk1bx90', 'no_lang_code', 1, 'https://ror.org/01qk1bx90 Environics Oy (Finland)'),
(9757, 'https://ror.org/05gmzxx11', 'no_lang_code', 1, 'https://ror.org/05gmzxx11 Grupo ACS (Spain)'),
(9758, 'https://ror.org/05e75yx66', 'en', 1, 'https://ror.org/05e75yx66 Slovenian Environment Agency'),
(9759, 'https://ror.org/00x5dwt18', 'no_lang_code', 1, 'https://ror.org/00x5dwt18 CARSA (Spain)'),
(9760, 'https://ror.org/05yhxm969', 'it', 1, 'https://ror.org/05yhxm969 Gruppi di Ricerca Economica Teorica ed Applicata'),
(9761, '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'),
(9762, 'https://ror.org/01jj7aa83', 'no_lang_code', 1, 'https://ror.org/01jj7aa83 Environmental Protection Engineering (Greece)'),
(9763, 'https://ror.org/015m6xt73', 'no_lang_code', 1, 'https://ror.org/015m6xt73 Gruppo CLAS (Italy)'),
(9764, 'https://ror.org/0110tsr95', 'no_lang_code', 1, 'https://ror.org/0110tsr95 Energy and Environmental Consultancy'),
(9765, 'https://ror.org/005sd3904', 'no_lang_code', 1, 'https://ror.org/005sd3904 Enviscope (Germany)'),
(9766, 'https://ror.org/03vxeyp56', 'no_lang_code', 1, 'https://ror.org/03vxeyp56 Castle Group (United Kingdom)'),
(9767, 'https://ror.org/03qqt2y39', 'no_lang_code', 1, 'https://ror.org/03qqt2y39 Epigem (United Kingdom)'),
(9768, 'https://ror.org/021vp7p61', 'no_lang_code', 1, 'https://ror.org/021vp7p61 GTD (Spain)'),
(9769, 'https://ror.org/0583e1h59', 'no_lang_code', 1, 'https://ror.org/0583e1h59 Forum Virium (Finland)'),
(9770, 'https://ror.org/046cpbt38', 'no_lang_code', 1, 'https://ror.org/046cpbt38 Epsilon International (Greece)'),
(9771, 'https://ror.org/05447tk77', 'no_lang_code', 1, 'https://ror.org/05447tk77 Epsilon (Italy)'),
(9772, 'https://ror.org/01j39zs89', 'no_lang_code', 1, 'https://ror.org/01j39zs89 GVS (Italy)'),
(9773, 'https://ror.org/04mmty540', 'no_lang_code', 1, 'https://ror.org/04mmty540 HW Communications (United Kingdom)'),
(9774, 'https://ror.org/01c55m435', 'no_lang_code', 1, 'https://ror.org/01c55m435 Castle Rock Geotech (United Kingdom)'),
(9775, 'https://ror.org/019tbwb44', 'no_lang_code', 1, 'https://ror.org/019tbwb44 Faseroptische Systeme Messtechnik (Germany)'),
(9776, 'https://ror.org/03dbbn946', 'no_lang_code', 1, 'https://ror.org/03dbbn946 HaCon (Germany)'),
(9777, 'https://ror.org/02reezy47', 'de', 1, 'https://ror.org/02reezy47 Hahn-Schickard-Gesellschaft für angewandte Forschung'),
(9778, 'https://ror.org/00wxh7d23', 'no_lang_code', 1, 'https://ror.org/00wxh7d23 Catator (Sweden)'),
(9779, 'https://ror.org/00dqfzf20', 'en', 1, 'https://ror.org/00dqfzf20 Barnets borg Helsinki Children''s Hospital Lastenlinna'),
(9780, 'https://ror.org/051aqjh92', 'en', 1, 'https://ror.org/051aqjh92 Ministry of Education and Research'),
(9781, 'https://ror.org/054yr2s43', 'no_lang_code', 1, 'https://ror.org/054yr2s43 CECIMO (Belgium)'),
(9782, 'https://ror.org/04bsj8w28', 'fr', 1, 'https://ror.org/04bsj8w28 Forêt Méditerranéenne'),
(9783, 'https://ror.org/03g6g7j35', 'no_lang_code', 1, 'https://ror.org/03g6g7j35 Global Graphics (United Kingdom)'),
(9784, 'https://ror.org/00de6v257', 'no_lang_code', 1, 'https://ror.org/00de6v257 Envisa (France)'),
(9785, 'https://ror.org/04tbtbw37', 'no_lang_code', 1, 'https://ror.org/04tbtbw37 Forschungs- und Technologietransfer (Austria)'),
(9786, 'https://ror.org/00hm3qq49', 'no_lang_code', 1, 'https://ror.org/00hm3qq49 Eolas (Ireland)'),
(9787, 'https://ror.org/04zha3029', 'no_lang_code', 1, 'https://ror.org/04zha3029 Harms & Wende (Germany)'),
(9788, 'https://ror.org/0130wtk42', 'en', 1, 'https://ror.org/0130wtk42 Foundation for International Environmental Law and Development'),
(9789, 'https://ror.org/04scst564', 'de', 1, 'https://ror.org/04scst564 Institut für Seeverkehrswirtschaft und Logistik Institute of Shipping Economics and Logistics'),
(9790, 'https://ror.org/03mpdf502', 'no_lang_code', 1, 'https://ror.org/03mpdf502 Epsilon Net (Greece)'),
(9791, 'https://ror.org/011yjrc39', 'no_lang_code', 1, 'https://ror.org/011yjrc39 Equipos Nucleares (Spain)'),
(9792, 'https://ror.org/00fyk9n62', 'en', 1, 'https://ror.org/00fyk9n62 Foundation of the Hellenic World'),
(9793, 'https://ror.org/00qsswh65', 'no_lang_code', 1, 'https://ror.org/00qsswh65 Edif Group (United Kingdom)'),
(9794, 'https://ror.org/039bged65', 'en', 1, 'https://ror.org/039bged65 Lukasiewicz Research Network - Krakow Institute of Technology Łukasiewicz -Krakowski Instytut Technologiczny'),
(9795, 'https://ror.org/04mv7q109', 'no_lang_code', 1, 'https://ror.org/04mv7q109 HEAD Acoustics (Germany)'),
(9796, 'https://ror.org/03bs7k153', 'no_lang_code', 1, 'https://ror.org/03bs7k153 Erdyn (France)'),
(9797, 'https://ror.org/02zmq8s40', 'en', 1, 'https://ror.org/02zmq8s40 Health Information Management'),
(9798, 'https://ror.org/00bvn9584', 'no_lang_code', 1, 'https://ror.org/00bvn9584 FOV Fabrics (Sweden)'),
(9799, 'https://ror.org/04tr57w63', 'no_lang_code', 1, 'https://ror.org/04tr57w63 Ericsson (Spain)'),
(9800, 'https://ror.org/03m3fa408', 'no_lang_code', 1, 'https://ror.org/03m3fa408 Ericsson (Germany)'),
(9801, 'https://ror.org/001g74t27', 'no_lang_code', 1, 'https://ror.org/001g74t27 Heckmann (Germany)'),
(9802, 'https://ror.org/03c0yyz21', 'no_lang_code', 1, 'https://ror.org/03c0yyz21 Ericsson (Hungary)'),
(9803, 'https://ror.org/02c5z9p32', 'no_lang_code', 1, 'https://ror.org/02c5z9p32 Hella (Germany)'),
(9804, 'https://ror.org/04mngjf23', 'no_lang_code', 1, 'https://ror.org/04mngjf23 Hellenic Aerospace Industry (Greece) Ελληνική Αεροπορική Βιομηχανία'),
(9805, 'https://ror.org/003g9tn92', 'no_lang_code', 1, 'https://ror.org/003g9tn92 Hellenic Petroleum (Greece)'),
(9806, 'https://ror.org/02fbyq253', 'no_lang_code', 1, 'https://ror.org/02fbyq253 Campden BRI (Hungary)'),
(9807, 'https://ror.org/00acgme86', 'no_lang_code', 1, 'https://ror.org/00acgme86 France DƩveloppement Conseil (France)'),
(9808, 'https://ror.org/03jd48p79', 'en', 1, 'https://ror.org/03jd48p79 Education and Research Network'),
(9809, 'https://ror.org/01v27sx82', 'en', 1, 'https://ror.org/01v27sx82 New Hellenic Radio, Internet and Television'),
(9810, 'https://ror.org/05kxtq558', 'en', 1, 'https://ror.org/05kxtq558 Institut für Molekulare Biologie Institute of Molecular Biology'),
(9811, 'https://ror.org/03r48fa44', 'no_lang_code', 1, 'https://ror.org/03r48fa44 Klett Gruppe (Germany)'),
(9812, 'https://ror.org/03c814f32', 'no_lang_code', 1, 'https://ror.org/03c814f32 Fratelli Alinari (Italy)'),
(9813, 'https://ror.org/00whma289', 'no_lang_code', 1, 'https://ror.org/00whma289 LafargeHolcim (Greece)'),
(9814, 'https://ror.org/03kdj6d49', 'no_lang_code', 1, 'https://ror.org/03kdj6d49 Piacenza Cashmere (Italy)'),
(9815, 'https://ror.org/049kt3f30', 'no_lang_code', 1, 'https://ror.org/049kt3f30 Ernst & Young (Israel)'),
(9816, 'https://ror.org/04bsh3r03', 'no_lang_code', 1, 'https://ror.org/04bsh3r03 Ericsson (Croatia)'),
(9817, 'https://ror.org/027n3xb46', 'no_lang_code', 1, 'https://ror.org/027n3xb46 Ericsson (Italy)'),
(9818, 'https://ror.org/01h4rpv44', 'no_lang_code', 1, 'https://ror.org/01h4rpv44 Ericsson (Netherlands)'),
(9819, 'https://ror.org/04n9t5970', 'en', 1, 'https://ror.org/04n9t5970 Ministry of Digital Governance ΄πουργείο Ψηφιακής Ī”Ī¹Ī±ĪŗĻ…Ī²Ī­ĻĪ½Ī·ĻƒĪ·Ļ‚'),
(9820, 'https://ror.org/02g13cw94', 'en', 1, 'https://ror.org/02g13cw94 Hellenic Ministry of Culture and Sports ΄πουργείο Ī ĪæĪ»Ī¹Ļ„Ī¹ĻƒĪ¼ĪæĻ και Ī‘ĪøĪ»Ī·Ļ„Ī¹ĻƒĪ¼ĪæĻ'),
(9821, 'https://ror.org/04e8qdj27', 'en', 1, 'https://ror.org/04e8qdj27 Hellenic Register of Shipping Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒĻ‚ ĪĪ·ĪæĪ³Ī½ĻŽĪ¼Ļ‰Ī½'),
(9822, 'https://ror.org/05sbsdq46', 'no_lang_code', 1, 'https://ror.org/05sbsdq46 Institut Mikroelektronických Aplikací (Czechia)'),
(9823, 'https://ror.org/03s3xa281', 'no_lang_code', 1, 'https://ror.org/03s3xa281 Forthnet (Greece)'),
(9824, 'https://ror.org/011fzp843', 'no_lang_code', 1, 'https://ror.org/011fzp843 Ericsson (Serbia)'),
(9825, 'https://ror.org/031e3n874', 'no_lang_code', 1, 'https://ror.org/031e3n874 Hellenic Telecommunications Organization (Greece)'),
(9826, 'https://ror.org/00k9s8x90', 'no_lang_code', 1, 'https://ror.org/00k9s8x90 Hexagon (Belgium)'),
(9827, 'https://ror.org/02zwkwz55', 'fr', 1, 'https://ror.org/02zwkwz55 Institut National de l''Audiovisuel National Audiovisual Institute'),
(9828, 'https://ror.org/03j7xe433', 'no_lang_code', 1, 'https://ror.org/03j7xe433 Hauzer (Netherlands)'),
(9829, 'https://ror.org/01de1e381', 'no_lang_code', 1, 'https://ror.org/01de1e381 Help Service - Remote Sensing (Czechia)'),
(9830, 'https://ror.org/020cpqb94', 'en', 1, 'https://ror.org/020cpqb94 Helsingin ja Uudenmaan Sairaanhoitopiiri Hospital District of Helsinki and Uusimaa'),
(9831, 'https://ror.org/052wtvs60', 'fr', 1, 'https://ror.org/052wtvs60 Institut National de la Recherche Agronomique de Tunisie'),
(9832, 'https://ror.org/03f9txg78', 'no_lang_code', 1, 'https://ror.org/03f9txg78 Emilia Romagna Valorizzazione Economica Territorio (Italy)'),
(9833, 'https://ror.org/05474q779', 'no_lang_code', 1, 'https://ror.org/05474q779 Frequentis (Austria)'),
(9834, 'https://ror.org/02vmgn461', 'no_lang_code', 1, 'https://ror.org/02vmgn461 Esaote (Italy)'),
(9835, 'https://ror.org/00r5tk108', 'no_lang_code', 1, 'https://ror.org/00r5tk108 Fricke und Mallah Microwave Technology (Germany) Fricke und Mallah Microwave Technology GmbH'),
(9836, 'https://ror.org/01qm6x409', 'no_lang_code', 1, 'https://ror.org/01qm6x409 Esbensen Consulting Engineers (Denmark)'),
(9837, 'https://ror.org/055fajc83', 'no_lang_code', 1, 'https://ror.org/055fajc83 Frog AGV Systems (Netherlands)'),
(9838, 'https://ror.org/0570tbq97', 'en', 1, 'https://ror.org/0570tbq97 Heritage Malta'),
(9839, 'https://ror.org/0473a4773', 'en', 1, 'https://ror.org/0473a4773 Hertie School'),
(9840, 'https://ror.org/026nftk33', 'de', 1, 'https://ror.org/026nftk33 Forschungszentrum Telekommunikation Wien Telecommunications Research Center Vienna'),
(9841, 'https://ror.org/03zhpcf80', 'fr', 1, 'https://ror.org/03zhpcf80 Institut National de Recherche Halieutique'),
(9842, 'https://ror.org/02c1b5n48', 'no_lang_code', 1, 'https://ror.org/02c1b5n48 Heusch Boesefeldt (Germany)'),
(9843, 'https://ror.org/00497h462', 'no_lang_code', 1, 'https://ror.org/00497h462 Hewlett-Packard (France)'),
(9844, 'https://ror.org/01r4g9k61', 'no_lang_code', 1, 'https://ror.org/01r4g9k61 Hewlett-Packard (Italy)'),
(9845, 'https://ror.org/002e5bb83', 'no_lang_code', 1, 'https://ror.org/002e5bb83 Hexis (Switzerland)'),
(9846, 'https://ror.org/05ptnwm30', 'en', 1, 'https://ror.org/05ptnwm30 ETA-Florence Renewable Energies'),
(9847, 'https://ror.org/03ah83d07', 'no_lang_code', 1, 'https://ror.org/03ah83d07 HI Iberia (Spain)'),
(9848, 'https://ror.org/0594jva76', 'no_lang_code', 1, 'https://ror.org/0594jva76 Fumatech (Germany)');
INSERT INTO `rors` VALUES
(9849, 'https://ror.org/02ad9kp97', 'no_lang_code', 1, 'https://ror.org/02ad9kp97 Spectra-Physics (Austria)'),
(9850, 'https://ror.org/00d9y2633', 'no_lang_code', 1, 'https://ror.org/00d9y2633 NTT (Italy)'),
(9851, 'https://ror.org/02eehde62', 'en', 1, 'https://ror.org/02eehde62 Highland Council'),
(9852, 'https://ror.org/02syz9r75', 'no_lang_code', 1, 'https://ror.org/02syz9r75 Etrel (Slovenia)'),
(9853, 'https://ror.org/00q77d008', 'no_lang_code', 1, 'https://ror.org/00q77d008 Hispasat (Spain)'),
(9854, 'https://ror.org/04yk3c231', 'no_lang_code', 1, 'https://ror.org/04yk3c231 Hitachi (France)'),
(9855, 'https://ror.org/02zcy8d62', 'en', 1, 'https://ror.org/02zcy8d62 National Research Institute of Rural Engineering, Water and Forests'),
(9856, 'https://ror.org/01sed6k96', 'no_lang_code', 1, 'https://ror.org/01sed6k96 Euram (United Kingdom)'),
(9857, 'https://ror.org/00vfkb556', 'en', 1, 'https://ror.org/00vfkb556 European Centre for Information on Marine Science and Technology'),
(9858, 'https://ror.org/00y4rzv07', 'en', 1, 'https://ror.org/00y4rzv07 European rail Research Network of EXcellence'),
(9859, 'https://ror.org/05gj5j117', 'pt', 1, 'https://ror.org/05gj5j117 Fundação Bio Rio'),
(9860, 'https://ror.org/00ntj2053', 'no_lang_code', 1, 'https://ror.org/00ntj2053 Funkwerk (Germany)'),
(9861, 'https://ror.org/051zzmk23', 'no_lang_code', 1, 'https://ror.org/051zzmk23 HƶganƤs (Sweden)'),
(9862, 'https://ror.org/050r3h664', 'en', 1, 'https://ror.org/050r3h664 Eurocontrol'),
(9863, 'https://ror.org/05rrkws98', 'no_lang_code', 1, 'https://ror.org/05rrkws98 Euroconsultants (Greece)'),
(9864, 'https://ror.org/03m1a8t60', 'en', 1, 'https://ror.org/03m1a8t60 Eurocities'),
(9865, 'https://ror.org/01n8cxz90', 'no_lang_code', 1, 'https://ror.org/01n8cxz90 Holland Institute of Traffic Technology'),
(9866, 'https://ror.org/032tp7158', 'no_lang_code', 1, 'https://ror.org/032tp7158 Thales (Netherlands)'),
(9867, 'https://ror.org/03019xy09', 'de', 1, 'https://ror.org/03019xy09 Deutsche Gesellschaft für Holzforschung'),
(9868, 'https://ror.org/025zp6t95', 'no_lang_code', 1, 'https://ror.org/025zp6t95 Holmes Halls Processors (United Kingdom)'),
(9869, 'https://ror.org/04de2bn74', 'no_lang_code', 1, 'https://ror.org/04de2bn74 Holografika (Hungary)'),
(9870, 'https://ror.org/00bvpsj93', 'en', 1, 'https://ror.org/00bvpsj93 European Trade Union Confederation'),
(9871, 'https://ror.org/0297sbd31', 'no_lang_code', 1, 'https://ror.org/0297sbd31 Honeywell (Czechia)'),
(9872, 'https://ror.org/00sgqf002', 'no_lang_code', 1, 'https://ror.org/00sgqf002 Horiba (France)'),
(9873, 'https://ror.org/03mav6487', 'no_lang_code', 1, 'https://ror.org/03mav6487 Eurogentec (Belgium)'),
(9874, 'https://ror.org/03eywck07', 'en', 1, 'https://ror.org/03eywck07 Institute of Biodiversity and Ecosystem Research'),
(9875, 'https://ror.org/0122epm04', 'en', 1, 'https://ror.org/0122epm04 EuroHealthNet'),
(9876, 'https://ror.org/037qxtx62', 'no_lang_code', 1, 'https://ror.org/037qxtx62 Eurokleis'),
(9877, 'https://ror.org/01cjkdm63', 'fr', 1, 'https://ror.org/01cjkdm63 HouillĆØres de Lorraine'),
(9878, 'https://ror.org/01nksd110', 'en', 1, 'https://ror.org/01nksd110 Euclid Network'),
(9879, 'https://ror.org/016pz0d03', 'no_lang_code', 1, 'https://ror.org/016pz0d03 HS-Art Digital Service (Austria)'),
(9880, 'https://ror.org/001dd4s60', 'no_lang_code', 1, 'https://ror.org/001dd4s60 Microsoft (Germany)'),
(9881, 'https://ror.org/058a3rr87', 'no_lang_code', 1, 'https://ror.org/058a3rr87 Europe for Business'),
(9882, 'https://ror.org/038cdme44', 'no_lang_code', 1, 'https://ror.org/038cdme44 Huawei Technologies (Germany)'),
(9883, 'https://ror.org/04z8azd17', 'no_lang_code', 1, 'https://ror.org/04z8azd17 Europe Unlimited (Belgium)'),
(9884, 'https://ror.org/02mm95a26', 'nl', 1, 'https://ror.org/02mm95a26 Veiligheids- en Gezondheidsregio Gelderland-Midden'),
(9885, 'https://ror.org/04rz4wy72', 'no_lang_code', 1, 'https://ror.org/04rz4wy72 Humanetics (Germany)'),
(9886, 'https://ror.org/032a8wh77', 'no_lang_code', 1, 'https://ror.org/032a8wh77 European Apparel and Textile Confederation'),
(9887, 'https://ror.org/03rsjpm20', 'en', 1, 'https://ror.org/03rsjpm20 European Aquaculture Society'),
(9888, 'https://ror.org/02petqk07', 'no_lang_code', 1, 'https://ror.org/02petqk07 Huntsman (Switzerland)'),
(9889, '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'),
(9890, 'https://ror.org/05fd42690', 'no_lang_code', 1, 'https://ror.org/05fd42690 Huron (France)'),
(9891, 'https://ror.org/03c3vzv03', 'en', 1, 'https://ror.org/03c3vzv03 European Association for Renewable Energy Europäische Vereinigung für Erneuerbare Energien Eurosolar'),
(9892, 'https://ror.org/02kgzq677', 'no_lang_code', 1, 'https://ror.org/02kgzq677 Hybrid Catalysis (Netherlands)'),
(9893, 'https://ror.org/017xb4c21', 'fr', 1, 'https://ror.org/017xb4c21 Group For Research and Technology Exchanges Groupe de Recherches et d''Echanges Technologiques'),
(9894, 'https://ror.org/01dhk3z45', 'en', 1, 'https://ror.org/01dhk3z45 Hydrogen Fuel Cells and Electro-Mobility in European Regions'),
(9895, 'https://ror.org/0335j3x48', 'en', 1, 'https://ror.org/0335j3x48 Eurocontrol'),
(9896, 'https://ror.org/05tjn7t69', 'en', 1, 'https://ror.org/05tjn7t69 European Association of Craft, Small and Medium-Sized Enterprises'),
(9897, 'https://ror.org/05mwcb123', 'en', 1, 'https://ror.org/05mwcb123 European Biomass Industry Association'),
(9898, 'https://ror.org/04hspfa12', 'en', 1, 'https://ror.org/04hspfa12 HYDROMOD Scientific Consulting'),
(9899, 'https://ror.org/05pfyvd35', 'no_lang_code', 1, 'https://ror.org/05pfyvd35 HyGear (Netherlands)'),
(9900, 'https://ror.org/029x65353', 'en', 1, 'https://ror.org/029x65353 European Business and Innovation Centre Network'),
(9901, 'https://ror.org/01tx2ss52', 'en', 1, 'https://ror.org/01tx2ss52 European Center for Information and Communication Technologies'),
(9902, 'https://ror.org/0315hq159', 'en', 1, 'https://ror.org/0315hq159 European Centre for Nature Conservation'),
(9903, 'https://ror.org/037mqvh36', 'en', 1, 'https://ror.org/037mqvh36 I & T Nardoni Institute'),
(9904, 'https://ror.org/0318myr61', 'fr', 1, 'https://ror.org/0318myr61 Arvalis - Institut du VƩgƩtal'),
(9905, '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'),
(9906, 'https://ror.org/053vtpa28', 'en', 1, 'https://ror.org/053vtpa28 European Council for Maritime Applied R&D Association'),
(9907, 'https://ror.org/01hpbhh43', 'es', 1, 'https://ror.org/01hpbhh43 Fundación de Estudios de Economía Aplicada'),
(9908, 'https://ror.org/02cv4sv66', 'es', 1, 'https://ror.org/02cv4sv66 Fundación Valenciaport Valenciaport Foundation'),
(9909, 'https://ror.org/05wf54e71', 'no_lang_code', 1, 'https://ror.org/05wf54e71 I.Con. Innovation'),
(9910, 'https://ror.org/011xw5c92', 'pl', 1, 'https://ror.org/011xw5c92 Instytut Budownictwa Mechanizacji i Elektryfikacji Rolnictwa'),
(9911, 'https://ror.org/03spsm219', 'no_lang_code', 1, 'https://ror.org/03spsm219 Ingegneria dei Sistemi (Italy)'),
(9912, 'https://ror.org/044qwkx83', 'no_lang_code', 1, 'https://ror.org/044qwkx83 Vodafone (Germany)'),
(9913, 'https://ror.org/03bc0pq34', 'en', 1, 'https://ror.org/03bc0pq34 Institute for Chemical Processing of Coal'),
(9914, 'https://ror.org/02fsyqx49', 'no_lang_code', 1, 'https://ror.org/02fsyqx49 Ian Catling Consultancy'),
(9915, 'https://ror.org/04bwtsm02', 'en', 1, 'https://ror.org/04bwtsm02 Electronic Chips & Systems Design Initiative'),
(9916, 'https://ror.org/028jzvt36', 'no_lang_code', 1, 'https://ror.org/028jzvt36 Ibeo Automotive Systems (Germany)'),
(9917, 'https://ror.org/03fdkmv28', 'en', 1, 'https://ror.org/03fdkmv28 European Emergency Number Association'),
(9918, 'https://ror.org/04kwcw734', 'no_lang_code', 1, 'https://ror.org/04kwcw734 Ingenieurbüro Kleehammer Gruppe (Germany)'),
(9919, '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'),
(9920, 'https://ror.org/04jnxr720', 'en', 1, 'https://ror.org/04jnxr720 IBM Research - Ireland'),
(9921, 'https://ror.org/00rqqmc76', 'en', 1, 'https://ror.org/00rqqmc76 European Food Information Resource'),
(9922, 'https://ror.org/059ddw530', 'no_lang_code', 1, 'https://ror.org/059ddw530 IBS Precision Engineering (Netherlands)'),
(9923, 'https://ror.org/01ygx9r32', 'en', 1, 'https://ror.org/01ygx9r32 European Forum for Good Clinical Practice'),
(9924, 'https://ror.org/0376hjh49', 'no_lang_code', 1, 'https://ror.org/0376hjh49 Imperial Consultants'),
(9925, 'https://ror.org/03s3e7380', 'en', 1, 'https://ror.org/03s3e7380 European Forum of Farm Animal Breeders'),
(9926, 'https://ror.org/05cwy4x70', 'en', 1, 'https://ror.org/05cwy4x70 European Genetics Foundation'),
(9927, 'https://ror.org/03kn4xv14', 'en', 1, 'https://ror.org/03kn4xv14 Institute for High Energy Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики высоких ŃŠ½ŠµŃ€Š³ŠøŠ¹'),
(9928, 'https://ror.org/02hj34779', 'en', 1, 'https://ror.org/02hj34779 Icelandic Meteorological Office'),
(9929, 'https://ror.org/018q3fa22', 'en', 1, 'https://ror.org/018q3fa22 Centre for Research in Engineering Surface Technology'),
(9930, 'https://ror.org/00qhf2g66', 'no_lang_code', 1, 'https://ror.org/00qhf2g66 ICI Caldaie (Italy)'),
(9931, 'https://ror.org/00vbmtf51', 'eu', 1, 'https://ror.org/00vbmtf51 Matia Fundazioa'),
(9932, 'https://ror.org/05vpwgn30', 'en', 1, 'https://ror.org/05vpwgn30 ICLEI - Local Governments for Sustainability'),
(9933, 'https://ror.org/03dsvvn23', 'en', 1, 'https://ror.org/03dsvvn23 European Health Telematics Association'),
(9934, 'https://ror.org/03azrqe31', 'no_lang_code', 1, 'https://ror.org/03azrqe31 ID Quantique (Switzerland)'),
(9935, 'https://ror.org/035swx070', 'en', 1, 'https://ror.org/035swx070 European Intermodal Association'),
(9936, 'https://ror.org/01s3qp186', 'es', 1, 'https://ror.org/01s3qp186 Aragon Hydrogen Foundation Fundación Hidrógeno Aragón'),
(9937, 'https://ror.org/04zzddp49', 'no_lang_code', 1, 'https://ror.org/04zzddp49 IDEC'),
(9938, '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'),
(9939, 'https://ror.org/01q97y624', 'en', 1, 'https://ror.org/01q97y624 Sea Europe'),
(9940, 'https://ror.org/03qezf786', 'en', 1, 'https://ror.org/03qezf786 European Materials Research Society'),
(9941, 'https://ror.org/02j41b239', 'no_lang_code', 1, 'https://ror.org/02j41b239 IdMind (Portugal)'),
(9942, 'https://ror.org/03rhy4111', 'no_lang_code', 1, 'https://ror.org/03rhy4111 IdroGeo'),
(9943, 'https://ror.org/00z24kr14', 'en', 1, 'https://ror.org/00z24kr14 Institute for Language and Speech Processing'),
(9944, 'https://ror.org/055syqv59', 'no_lang_code', 1, 'https://ror.org/055syqv59 Idronaut (Italy)'),
(9945, 'https://ror.org/05vpgt980', 'en', 1, 'https://ror.org/05vpgt980 European Network of Living Labs'),
(9946, 'https://ror.org/05pd7nw13', 'en', 1, 'https://ror.org/05pd7nw13 European Organisation for Security'),
(9947, 'https://ror.org/047hhy227', 'en', 1, 'https://ror.org/047hhy227 Institute for Parallel Processing Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по паралелна обработка'),
(9948, 'https://ror.org/049nq5186', 'en', 1, 'https://ror.org/049nq5186 European Photovoltaic Industry Association'),
(9949, 'https://ror.org/012th4177', 'es', 1, 'https://ror.org/012th4177 Fundación Universidad Empresa'),
(9950, 'https://ror.org/00pj6x992', 'en', 1, 'https://ror.org/00pj6x992 IEA Clean Coal Centre'),
(9951, 'https://ror.org/018rhs370', 'no_lang_code', 1, 'https://ror.org/018rhs370 IFC Research (United Kingdom)'),
(9952, 'https://ror.org/00wzstx67', 'no_lang_code', 1, 'https://ror.org/00wzstx67 Vodafone (Spain)'),
(9953, 'https://ror.org/039q7yt14', 'no_lang_code', 1, 'https://ror.org/039q7yt14 European Plastics Converters'),
(9954, 'https://ror.org/047y4v704', 'en', 1, 'https://ror.org/047y4v704 European Renewable Energy Council'),
(9955, 'https://ror.org/03n6ktv33', 'en', 1, 'https://ror.org/03n6ktv33 Furniture Industry Research Association'),
(9956, 'https://ror.org/05nym7d38', 'no_lang_code', 1, 'https://ror.org/05nym7d38 Future Analytics'),
(9957, 'https://ror.org/055zrhj18', 'en', 1, 'https://ror.org/055zrhj18 European Research Consortium for Informatics and Mathematics'),
(9958, 'https://ror.org/00zkzkq53', 'en', 1, 'https://ror.org/00zkzkq53 International Information Management Corporation'),
(9959, 'https://ror.org/00c8n3h65', 'en', 1, 'https://ror.org/00c8n3h65 European Respiratory Society'),
(9960, 'https://ror.org/00z908q62', 'en', 1, 'https://ror.org/00z908q62 Institute for Transport Sciences'),
(9961, 'https://ror.org/00xh3h995', 'en', 1, 'https://ror.org/00xh3h995 Institute of Agricultural Economics'),
(9962, 'https://ror.org/01qv87150', 'en', 1, 'https://ror.org/01qv87150 European School of Haematology'),
(9963, 'https://ror.org/03hp1m080', 'no_lang_code', 1, 'https://ror.org/03hp1m080 Ikerlan'),
(9964, 'https://ror.org/0100ngp47', 'no_lang_code', 1, 'https://ror.org/0100ngp47 Ikv++ Technologies (Germany)'),
(9965, 'https://ror.org/01qf41w60', 'en', 1, 'https://ror.org/01qf41w60 European Small Hydropower Association'),
(9966, 'https://ror.org/01xfba851', 'no_lang_code', 1, 'https://ror.org/01xfba851 Ilva (Italy)'),
(9967, 'https://ror.org/01cebzr82', 'no_lang_code', 1, 'https://ror.org/01cebzr82 GAF AG'),
(9968, 'https://ror.org/02j557320', 'no_lang_code', 1, 'https://ror.org/02j557320 Galilaeus (Finland)'),
(9969, 'https://ror.org/01p89z653', 'no_lang_code', 1, 'https://ror.org/01p89z653 IMA Materialforschung und Anwendungstechnik'),
(9970, 'https://ror.org/05r7x8h86', 'no_lang_code', 1, 'https://ror.org/05r7x8h86 Imaginary (Italy)'),
(9971, 'https://ror.org/00tvcfv48', 'no_lang_code', 1, 'https://ror.org/00tvcfv48 Galson Sciences'),
(9972, 'https://ror.org/05vzfb740', 'en', 1, 'https://ror.org/05vzfb740 European Smart Card Industry Association'),
(9973, 'https://ror.org/05hkpph68', 'no_lang_code', 1, 'https://ror.org/05hkpph68 Imagination Computer Services (Austria)'),
(9974, 'https://ror.org/01qxm2j98', 'en', 1, 'https://ror.org/01qxm2j98 Institute of Agrophysics, Polish Academy of Sciences'),
(9975, 'https://ror.org/01qtasp15', 'en', 1, 'https://ror.org/01qtasp15 European Southern Observatory Europäische Südsternwarte'),
(9976, 'https://ror.org/03k52yd02', 'no_lang_code', 1, 'https://ror.org/03k52yd02 Imasonic'),
(9977, 'https://ror.org/00yps2t15', 'no_lang_code', 1, 'https://ror.org/00yps2t15 Gasera (Finland)'),
(9978, 'https://ror.org/05pyc3h39', 'en', 1, 'https://ror.org/05pyc3h39 Institute of Atomic Energy Instytut Energii Atomowej'),
(9979, 'https://ror.org/0106f6f93', 'en', 1, 'https://ror.org/0106f6f93 European Technology Development'),
(9980, 'https://ror.org/04g8dha87', 'no_lang_code', 1, 'https://ror.org/04g8dha87 GATC Biotech (Germany)'),
(9981, 'https://ror.org/02t2d6j21', 'en', 1, 'https://ror.org/02t2d6j21 Institute of Baltic Studies'),
(9982, 'https://ror.org/01m693m08', 'no_lang_code', 1, 'https://ror.org/01m693m08 European Transonic Windtunnel (Germany)'),
(9983, 'https://ror.org/02tb8n028', 'en', 1, 'https://ror.org/02tb8n028 Institute of Bioorganic Chemistry and Petrochemistry V.P. Kukhar'),
(9984, 'https://ror.org/02ybv7q93', 'no_lang_code', 1, 'https://ror.org/02ybv7q93 Engie (France)'),
(9985, 'https://ror.org/02qcxga94', 'en', 1, 'https://ror.org/02qcxga94 European Union Road Federation'),
(9986, 'https://ror.org/05ehfjt50', 'no_lang_code', 1, 'https://ror.org/05ehfjt50 General Electric (Italy)'),
(9987, 'https://ror.org/05qwb1j70', 'en', 1, 'https://ror.org/05qwb1j70 European Virtual Institute for Integrated Risk Management'),
(9988, 'https://ror.org/01jemb993', 'en', 1, 'https://ror.org/01jemb993 Semenov Institute of Chemical Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической физики имени Š. Š. Демёнова'),
(9989, 'https://ror.org/01c0de609', 'no_lang_code', 1, 'https://ror.org/01c0de609 IMIX Vision Support Systems (Netherlands)'),
(9990, 'https://ror.org/01farpt19', 'no_lang_code', 1, 'https://ror.org/01farpt19 Danaher (France)'),
(9991, 'https://ror.org/003h0ev22', 'nl', 1, 'https://ror.org/003h0ev22 Gemeente Amsterdam'),
(9992, 'https://ror.org/04dyx6987', 'nl', 1, 'https://ror.org/04dyx6987 Gemeente Eindhoven'),
(9993, 'https://ror.org/05xrtfh49', 'en', 1, 'https://ror.org/05xrtfh49 European Virtual Institute on Knowledge-based Multifunctional Materials'),
(9994, 'https://ror.org/03ma5tr22', 'nl', 1, 'https://ror.org/03ma5tr22 Gemeente Rotterdam'),
(9995, 'https://ror.org/05br4cc69', 'no_lang_code', 1, 'https://ror.org/05br4cc69 AkzoNobel (United Kingdom)'),
(9996, 'https://ror.org/00mneww03', 'en', 1, 'https://ror.org/00mneww03 Institute of Ecology and Botany Ɩkológiai Ć©s Botanikai IntĆ©zet'),
(9997, 'https://ror.org/05rzqb565', 'en', 1, 'https://ror.org/05rzqb565 Port of Rotterdam Authority'),
(9998, 'https://ror.org/00qkeey15', 'en', 1, 'https://ror.org/00qkeey15 WindEurope'),
(9999, 'https://ror.org/00893gj13', 'no_lang_code', 1, 'https://ror.org/00893gj13 In JeT ApS (Denmark)'),
(10000, 'https://ror.org/02a5meq09', 'pl', 1, 'https://ror.org/02a5meq09 Institute of Economics of the Polish Academy of Sciences Instytut Nauk Ekonomicznych'),
(10001, 'https://ror.org/05prc0a24', 'no_lang_code', 1, 'https://ror.org/05prc0a24 Europus'),
(10002, 'https://ror.org/048x1jh88', 'no_lang_code', 1, 'https://ror.org/048x1jh88 Euroquality'),
(10003, 'https://ror.org/0256wzd68', 'no_lang_code', 1, 'https://ror.org/0256wzd68 In2 Search Interfaces Development (United Kingdom)'),
(10004, 'https://ror.org/01nq9yz29', 'no_lang_code', 1, 'https://ror.org/01nq9yz29 Inasco (Greece)'),
(10005, 'https://ror.org/04428zn91', 'no_lang_code', 1, 'https://ror.org/04428zn91 Thermo Fisher Scientific (Germany)'),
(10006, 'https://ror.org/03mqgwc47', 'no_lang_code', 1, 'https://ror.org/03mqgwc47 Inburex Consulting'),
(10007, 'https://ror.org/01yzrt577', 'no_lang_code', 1, 'https://ror.org/01yzrt577 Genedata (Switzerland)'),
(10008, 'https://ror.org/04adynk16', 'no_lang_code', 1, 'https://ror.org/04adynk16 InConTec (Germany)'),
(10009, 'https://ror.org/00we3bs91', 'no_lang_code', 1, 'https://ror.org/00we3bs91 DuPont (Netherlands)'),
(10010, 'https://ror.org/01awdzs62', 'no_lang_code', 1, 'https://ror.org/01awdzs62 Larco (Greece)'),
(10011, 'https://ror.org/03pzspq13', 'en', 1, 'https://ror.org/03pzspq13 Ofcom'),
(10012, 'https://ror.org/00f55ed39', 'no_lang_code', 1, 'https://ror.org/00f55ed39 Eurosense (Belgium)'),
(10013, 'https://ror.org/04zvb9t44', 'en', 1, 'https://ror.org/04zvb9t44 Ministry of Education and Religious Affairs ΄πουργείο ΠαιΓείας, ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και Ī˜ĻĪ·ĻƒĪŗĪµĻ…Ī¼Ī¬Ļ„Ļ‰Ī½'),
(10014, 'https://ror.org/02j8vpa07', 'en', 1, 'https://ror.org/02j8vpa07 FöldrajztudomÔnyi Kutatóintézet Geographical Institute'),
(10015, 'https://ror.org/04v5zxc18', 'no_lang_code', 1, 'https://ror.org/04v5zxc18 geniaLab (Germany)'),
(10016, 'https://ror.org/04hhk2180', 'no_lang_code', 1, 'https://ror.org/04hhk2180 Eurotech (Italy)'),
(10017, 'https://ror.org/01hz5c771', 'en', 1, 'https://ror.org/01hz5c771 Institute of Geography Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географии Российской АкаГемии наук'),
(10018, 'https://ror.org/01xbt9y54', 'no_lang_code', 1, 'https://ror.org/01xbt9y54 Genias Benelux (Netherlands)'),
(10019, 'https://ror.org/02vxn7j69', 'no_lang_code', 1, 'https://ror.org/02vxn7j69 European Telecommunications Satellite Organization'),
(10020, 'https://ror.org/01mcqw380', 'en', 1, 'https://ror.org/01mcqw380 Institute of Hydroengineering Instytut Budownictwa Wodnego PAN'),
(10021, 'https://ror.org/03av1g763', 'no_lang_code', 1, 'https://ror.org/03av1g763 Genos (Croatia)'),
(10022, 'https://ror.org/03rjwv512', 'no_lang_code', 1, 'https://ror.org/03rjwv512 Sener (Spain)'),
(10023, 'https://ror.org/01gjr8a79', 'no_lang_code', 1, 'https://ror.org/01gjr8a79 Eutema Technology Management'),
(10024, 'https://ror.org/02e8b3g15', 'no_lang_code', 1, 'https://ror.org/02e8b3g15 EV Group (Austria)'),
(10025, 'https://ror.org/017r9q421', 'no_lang_code', 1, 'https://ror.org/017r9q421 Genoway (France)'),
(10026, 'https://ror.org/05d4jgp54', 'en', 1, 'https://ror.org/05d4jgp54 Evaluations and Language resources Distribution Agency'),
(10027, 'https://ror.org/054qg8b39', 'no_lang_code', 1, 'https://ror.org/054qg8b39 Industrial Control Solutions'),
(10028, 'https://ror.org/024pwg683', 'no_lang_code', 1, 'https://ror.org/024pwg683 GenXPro (Germany)'),
(10029, 'https://ror.org/04c5mqw76', 'no_lang_code', 1, 'https://ror.org/04c5mqw76 Industrial Design Consultancy'),
(10030, 'https://ror.org/02yq4v676', 'no_lang_code', 1, 'https://ror.org/02yq4v676 EVECO Brno (Czechia)'),
(10031, 'https://ror.org/059e1y590', 'no_lang_code', 1, 'https://ror.org/059e1y590 Geoimaging (Cyprus)'),
(10032, 'https://ror.org/0178m6t08', 'no_lang_code', 1, 'https://ror.org/0178m6t08 Correanayak (Spain)'),
(10033, 'https://ror.org/01rfsrc09', 'no_lang_code', 1, 'https://ror.org/01rfsrc09 Evektor (Czechia)'),
(10034, 'https://ror.org/040458q49', 'en', 1, 'https://ror.org/040458q49 Geological Institute Strashimir Dimitrov Геологически ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "Š”Ń‚Ń€Š°ŃˆŠøŠ¼ŠøŃ€ Димитров"'),
(10035, 'https://ror.org/03eh15043', 'no_lang_code', 1, 'https://ror.org/03eh15043 Pirelli (Italy)'),
(10036, 'https://ror.org/034m0w958', 'en', 1, 'https://ror.org/034m0w958 Institute of Mathematical Machines and Systems Problems Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем математичних машин і систем ŠŠŠ України'),
(10037, 'https://ror.org/05bdw2t94', 'no_lang_code', 1, 'https://ror.org/05bdw2t94 Industrieanlagen Betriebsgesellschaft (Germany)'),
(10038, 'https://ror.org/05tfemw78', 'no_lang_code', 1, 'https://ror.org/05tfemw78 Evoleo Technologies (Portugal)'),
(10039, 'https://ror.org/00t9eec57', 'no_lang_code', 1, 'https://ror.org/00t9eec57 Geonardo (Hungary)'),
(10040, 'https://ror.org/03x78r446', 'en', 1, 'https://ror.org/03x78r446 Institute of Mechanics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по механика'),
(10041, 'https://ror.org/02c2zwv68', 'no_lang_code', 1, 'https://ror.org/02c2zwv68 Exact Dynamics (Netherlands)'),
(10042, 'https://ror.org/00fwghy33', 'en', 1, 'https://ror.org/00fwghy33 Georgian Research and Educational Networking Association'),
(10043, 'https://ror.org/00gywet31', 'en', 1, 'https://ror.org/00gywet31 National Institute of Geophysics, Geodesy and Geography ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по геофизика, Š³ŠµŠ¾Š“ŠµŠ·ŠøŃ Šø Š³ŠµŠ¾Š³Ń€Š°Ń„ŠøŃ'),
(10044, 'https://ror.org/05rqavg73', 'no_lang_code', 1, 'https://ror.org/05rqavg73 Dassault SystĆØmes (Canada)'),
(10045, 'https://ror.org/02bcp5978', 'no_lang_code', 1, 'https://ror.org/02bcp5978 Exergia, Energy, Management and Information Technology'),
(10046, 'https://ror.org/05pq9tk67', 'no_lang_code', 1, 'https://ror.org/05pq9tk67 Exergy (United Kingdom)'),
(10047, 'https://ror.org/02a596w22', 'no_lang_code', 1, 'https://ror.org/02a596w22 Institute of Mechanics of Materials and Geostructures'),
(10048, 'https://ror.org/056492z45', 'en', 1, 'https://ror.org/056492z45 Institute of Metal Science, Equipment and Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по металознание техника Šø технологии'),
(10049, 'https://ror.org/02w7mbm90', 'en', 1, 'https://ror.org/02w7mbm90 Institute of Metallurgy and Materials Science Instytut Metalurgii i Inżynierii Materiałowej PAN'),
(10050, 'https://ror.org/01kg1j482', 'no_lang_code', 1, 'https://ror.org/01kg1j482 Geotek (United Kingdom)'),
(10051, 'https://ror.org/010p49b38', 'no_lang_code', 1, 'https://ror.org/010p49b38 GeoVille (Austria)'),
(10052, 'https://ror.org/05yq3xa52', 'no_lang_code', 1, 'https://ror.org/05yq3xa52 Inetec (Croatia)'),
(10053, 'https://ror.org/03r048b78', 'no_lang_code', 1, 'https://ror.org/03r048b78 InferMed'),
(10054, 'https://ror.org/03msng824', 'no_lang_code', 1, 'https://ror.org/03msng824 Infineon Technologies (Austria)'),
(10055, 'https://ror.org/05vwbz082', 'en', 1, 'https://ror.org/05vwbz082 German Dutch Wind Tunnels'),
(10056, 'https://ror.org/04ax6zj28', 'no_lang_code', 1, 'https://ror.org/04ax6zj28 Infocarto'),
(10057, 'https://ror.org/00t7c6f62', 'en', 1, 'https://ror.org/00t7c6f62 Institute of Molecular Biology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š° Š±ŠøŠ¾Š»Š¾Š³ŠøŃ'),
(10058, 'https://ror.org/02ma7yv75', 'en', 1, 'https://ror.org/02ma7yv75 Institute of Nanotechnology'),
(10059, 'https://ror.org/02hbmds06', 'de', 1, 'https://ror.org/02hbmds06 Gesellschaft für Fertigungstechnik und Entwicklung'),
(10060, 'https://ror.org/02evrg063', 'no_lang_code', 1, 'https://ror.org/02evrg063 Papenmeier (Germany)'),
(10061, 'https://ror.org/03gxcr347', 'no_lang_code', 1, 'https://ror.org/03gxcr347 Infosys (France)'),
(10062, 'https://ror.org/01a1xfd09', 'en', 1, 'https://ror.org/01a1xfd09 Institute for Nuclear Research Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(10063, 'https://ror.org/01gyw2394', 'no_lang_code', 1, 'https://ror.org/01gyw2394 Gestione Sistemi per l’Informatica (Italy)'),
(10064, 'https://ror.org/02s9dw784', 'no_lang_code', 1, 'https://ror.org/02s9dw784 Gesellschaft für Elektrometallurgie (Germany)'),
(10065, 'https://ror.org/00kznd563', 'no_lang_code', 1, 'https://ror.org/00kznd563 Ingenierƭa de Sistemas para la Defensa de EspaƱa'),
(10066, 'https://ror.org/019xkjn34', 'no_lang_code', 1, 'https://ror.org/019xkjn34 Intertek (Sweden)'),
(10067, 'https://ror.org/00jbx2e92', 'en', 1, 'https://ror.org/00jbx2e92 Institute of Organic Chemistry with Centre of Phytochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по органична Ń…ŠøŠ¼ŠøŃ с Š¦ŠµŠ½Ń‚ŃŠŃ€ по Ń„ŠøŃ‚Š¾Ń…ŠøŠ¼ŠøŃ'),
(10068, 'https://ror.org/00eb1e195', 'en', 1, 'https://ror.org/00eb1e195 Institute of Physical Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Ń„ŠøŠ·ŠøŠŗŠ¾Ń…ŠøŠ¼ŠøŃ'),
(10069, 'https://ror.org/04ewgt853', 'no_lang_code', 1, 'https://ror.org/04ewgt853 Ingenieurgruppe IVV (Germany)'),
(10070, 'https://ror.org/03fdne361', 'no_lang_code', 1, 'https://ror.org/03fdne361 InvivoGen (France)'),
(10071, 'https://ror.org/053e6g844', 'no_lang_code', 1, 'https://ror.org/053e6g844 Giesecke and Devrient (Germany)'),
(10072, 'https://ror.org/04yt64j61', 'no_lang_code', 1, 'https://ror.org/04yt64j61 Gilat Satellite Networks (Israel)'),
(10073, 'https://ror.org/02q9khv47', 'no_lang_code', 1, 'https://ror.org/02q9khv47 Factum'),
(10074, 'https://ror.org/04xhfgr69', 'no_lang_code', 1, 'https://ror.org/04xhfgr69 Altran (Italy)'),
(10075, 'https://ror.org/04y280w56', 'no_lang_code', 1, 'https://ror.org/04y280w56 Inlecom Systems (United Kingdom)'),
(10076, 'https://ror.org/02g3bbd17', 'no_lang_code', 1, 'https://ror.org/02g3bbd17 Gisat (Czechia)'),
(10077, 'https://ror.org/03wmxmy95', 'en', 1, 'https://ror.org/03wmxmy95 Geographical Information System International Group'),
(10078, 'https://ror.org/037p90z15', 'ga', 1, 'https://ror.org/037p90z15 Foras Ɓiseanna Saothair Training and Employment Authority'),
(10079, 'https://ror.org/01w58mc13', 'it', 1, 'https://ror.org/01w58mc13 Federazione delle Associazioni Scientifiche e Tecniche'),
(10080, 'https://ror.org/000sfad56', 'en', 1, 'https://ror.org/000sfad56 Institute of Physics Instytut Fizyki PAN'),
(10081, 'https://ror.org/0367jyj65', 'no_lang_code', 1, 'https://ror.org/0367jyj65 FastOpt (Germany)'),
(10082, 'https://ror.org/01kkw3w51', 'no_lang_code', 1, 'https://ror.org/01kkw3w51 Grupo Inmark'),
(10083, 'https://ror.org/02we6hx96', 'en', 1, 'https://ror.org/02we6hx96 Institute of Physics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізики ŠŠŠ України Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики ŠŠŠ Украины'),
(10084, 'https://ror.org/013gkrj37', 'no_lang_code', 1, 'https://ror.org/013gkrj37 GKI Economic Research (Hungary)'),
(10085, 'https://ror.org/04nff2163', 'no_lang_code', 1, 'https://ror.org/04nff2163 GKN (Sweden)'),
(10086, 'https://ror.org/03fe56089', 'no_lang_code', 1, 'https://ror.org/03fe56089 GlaxoSmithKline (Italy)'),
(10087, 'https://ror.org/00g0ddq73', 'no_lang_code', 1, 'https://ror.org/00g0ddq73 Inmarsat (United Kingdom)'),
(10088, 'https://ror.org/054nf0d79', 'no_lang_code', 1, 'https://ror.org/054nf0d79 Ingenasa (Spain)'),
(10089, 'https://ror.org/02ce9qs13', 'en', 1, 'https://ror.org/02ce9qs13 Institutes of Science and Development ē§‘ęŠ€ęˆ˜ē•„å’ØčÆ¢ē ”ē©¶é™¢'),
(10090, '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'),
(10091, 'https://ror.org/02cm8kt07', 'no_lang_code', 1, 'https://ror.org/02cm8kt07 Inno (Germany)'),
(10092, 'https://ror.org/029zea722', 'en', 1, 'https://ror.org/029zea722 Research Institute of Pomology and Floriculture'),
(10093, 'https://ror.org/052xw2c95', 'no_lang_code', 1, 'https://ror.org/052xw2c95 Inno (France)'),
(10094, 'https://ror.org/05yjrf567', 'no_lang_code', 1, 'https://ror.org/05yjrf567 Innora'),
(10095, 'https://ror.org/00tzr1w49', 'no_lang_code', 1, 'https://ror.org/00tzr1w49 InnospeXion (Denmark)'),
(10096, 'https://ror.org/010jn4k46', 'en', 1, 'https://ror.org/010jn4k46 Frantsevich Institute for Problems in Materials Science Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ проблем матеріалознавства ім. І.М. Францевича'),
(10097, 'https://ror.org/04s1anr92', 'no_lang_code', 1, 'https://ror.org/04s1anr92 Innova (Italy)'),
(10098, 'https://ror.org/05xx8bb48', 'en', 1, 'https://ror.org/05xx8bb48 Sieć Badawcza Łukasiewicz - Instytut Spawalnictwa Łukasiewicz Research Network - Institute of Welding'),
(10099, 'https://ror.org/02r65gs06', 'no_lang_code', 1, 'https://ror.org/02r65gs06 Institute of Telecommunication and Information Technologies Instytut Technik Telekomunikacyjnych i Informatycznych (Poland)'),
(10100, 'https://ror.org/00sxjp357', 'no_lang_code', 1, 'https://ror.org/00sxjp357 Innovation Engineering (Italy)'),
(10101, 'https://ror.org/04sy6z157', 'no_lang_code', 1, 'https://ror.org/04sy6z157 Innovative Technology and Science (United Kingdom)'),
(10102, 'https://ror.org/05memys52', 'en', 1, 'https://ror.org/05memys52 Austrian Research Centre for Forests Bundesforschungs- und Ausbildungszentrum für Wald, Naturgefahren und Landschaft'),
(10103, 'https://ror.org/00fb7yx07', 'en', 1, 'https://ror.org/00fb7yx07 Institute of High Pressure Physics Instytut Wysokich Ciśnień'),
(10104, 'https://ror.org/001mfwh65', 'en', 1, 'https://ror.org/001mfwh65 International Scientific Council for Island Development'),
(10105, 'https://ror.org/03k462x97', 'no_lang_code', 1, 'https://ror.org/03k462x97 Inte:Ligand (Austria)'),
(10106, 'https://ror.org/0216hp691', 'en', 1, 'https://ror.org/0216hp691 Institute for Sociology MTA TÔrsadalomtudomÔnyi Kutatóközpont Szociológiai Intézet'),
(10107, 'https://ror.org/05t4n0c27', 'en', 1, 'https://ror.org/05t4n0c27 Georgi Nadjakov Institute of Solid State Physics Георги ŠŠ°Š“жаков Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по физика на Ń‚Š²ŃŠŃ€Š“Š¾Ń‚Š¾'),
(10108, 'https://ror.org/04543zj30', 'no_lang_code', 1, 'https://ror.org/04543zj30 INTECS (Italy)'),
(10109, 'https://ror.org/02341fy35', 'no_lang_code', 1, 'https://ror.org/02341fy35 Innovision (Denmark)'),
(10110, 'https://ror.org/03y4g9f74', 'no_lang_code', 1, 'https://ror.org/03y4g9f74 Inotex (Czechia)'),
(10111, 'https://ror.org/01kj2rq74', 'no_lang_code', 1, 'https://ror.org/01kj2rq74 Internal Systems Limited (United Kingdom)'),
(10112, 'https://ror.org/00s6sp697', 'no_lang_code', 1, 'https://ror.org/00s6sp697 Integrasys (Spain)'),
(10113, 'https://ror.org/019p95v81', 'en', 1, 'https://ror.org/019p95v81 HOPE European Hospital and Healthcare Federation'),
(10114, 'https://ror.org/058nsgg43', 'no_lang_code', 1, 'https://ror.org/058nsgg43 Integrated Radiological Services (United Kingdom)'),
(10115, 'https://ror.org/049128m26', 'no_lang_code', 1, 'https://ror.org/049128m26 Integrated Resources Management Company (Malta)'),
(10116, 'https://ror.org/02drtb754', 'fr', 1, 'https://ror.org/02drtb754 FƩdƩration Internationale de l''Automobile International Automobile Federation'),
(10117, 'https://ror.org/04wrsbk19', 'en', 1, 'https://ror.org/04wrsbk19 Federation of European Aquaculture Producers'),
(10118, 'https://ror.org/032base07', 'no_lang_code', 1, 'https://ror.org/032base07 Inspira'),
(10119, 'https://ror.org/02zp8yy63', 'no_lang_code', 1, 'https://ror.org/02zp8yy63 FEG Textiltechnik (Germany)'),
(10120, 'https://ror.org/02sy45055', 'no_lang_code', 1, 'https://ror.org/02sy45055 Inspire'),
(10121, 'https://ror.org/00wdf2875', 'en', 1, 'https://ror.org/00wdf2875 IHE Europe'),
(10122, 'https://ror.org/02d73fs96', 'no_lang_code', 1, 'https://ror.org/02d73fs96 ITI (United Kingdom)'),
(10123, 'https://ror.org/00m2x0g47', 'no_lang_code', 1, 'https://ror.org/00m2x0g47 Intel (Germany)'),
(10124, 'https://ror.org/04yy66p73', 'fr', 1, 'https://ror.org/04yy66p73 Institution de la Recherche et de l’Enseignement SupĆ©rieur Agricoles'),
(10125, 'https://ror.org/05ve3t520', 'no_lang_code', 1, 'https://ror.org/05ve3t520 Intelligence for Environment and Security (Italy)'),
(10126, 'https://ror.org/0009wsb17', 'en', 1, 'https://ror.org/0009wsb17 A N Bach Institute of Biochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии им. А.Š.Баха'),
(10127, 'https://ror.org/0588ktq11', 'no_lang_code', 1, 'https://ror.org/0588ktq11 Stora Enso (Germany)'),
(10128, 'https://ror.org/03vehc845', 'no_lang_code', 1, 'https://ror.org/03vehc845 Irepa Laser (France)'),
(10129, 'https://ror.org/03ys8xj90', 'no_lang_code', 1, 'https://ror.org/03ys8xj90 Intelligent Software Components (Spain)'),
(10130, 'https://ror.org/01x4vnn38', 'es', 1, 'https://ror.org/01x4vnn38 Instituto Andaluz de TecnologĆ­a'),
(10131, 'https://ror.org/0493xxf64', 'no_lang_code', 1, 'https://ror.org/0493xxf64 Eurofins (Denmark)'),
(10132, 'https://ror.org/01txgmm25', 'es', 1, 'https://ror.org/01txgmm25 Instituto Canario de Ciencias Marinas'),
(10133, 'https://ror.org/00brd1934', 'no_lang_code', 1, 'https://ror.org/00brd1934 Intelligentsia Consultants'),
(10134, 'https://ror.org/04hxcbe86', 'no_lang_code', 1, 'https://ror.org/04hxcbe86 Transports Metropolitans de Barcelona (Spain)'),
(10135, 'https://ror.org/02c4sht73', 'no_lang_code', 1, 'https://ror.org/02c4sht73 Trenitalia (Italy)'),
(10136, 'https://ror.org/05sdy1b47', 'en', 1, 'https://ror.org/05sdy1b47 Interactive Technology Software and Media Association'),
(10137, 'https://ror.org/01bdddp98', 'no_lang_code', 1, 'https://ror.org/01bdddp98 FeyeCon (Netherlands)'),
(10138, 'https://ror.org/023xbne13', 'fr', 1, 'https://ror.org/023xbne13 Industrial Economics Institute Institut d''Ɖconomie Industrielle'),
(10139, 'https://ror.org/04f2fqx85', 'no_lang_code', 1, 'https://ror.org/04f2fqx85 Bayer (Greece)'),
(10140, 'https://ror.org/03x3tkg74', 'pt', 1, 'https://ror.org/03x3tkg74 Instituto de Ciências da Terra e do Espaço'),
(10141, 'https://ror.org/04brghb67', 'no_lang_code', 1, 'https://ror.org/04brghb67 Hottinger Baldwin Messtechnik (Portugal)'),
(10142, 'https://ror.org/04n831v95', 'en', 1, 'https://ror.org/04n831v95 Interdisciplinary Centre for Comparative Research Foundation'),
(10143, 'https://ror.org/050bkss19', 'no_lang_code', 1, 'https://ror.org/050bkss19 InterInnov (France)'),
(10144, 'https://ror.org/02gbfwn85', 'no_lang_code', 1, 'https://ror.org/02gbfwn85 Intermarine (Italy)'),
(10145, 'https://ror.org/04qd0gm75', 'es', 1, 'https://ror.org/04qd0gm75 Institut de Cultura de Barcelona'),
(10146, 'https://ror.org/03bjbem32', 'no_lang_code', 1, 'https://ror.org/03bjbem32 IBM (Belgium)'),
(10147, 'https://ror.org/0419dpe16', 'no_lang_code', 1, 'https://ror.org/0419dpe16 Ficosa International (Spain)'),
(10148, 'https://ror.org/054cq3r13', 'fr', 1, 'https://ror.org/054cq3r13 Institut de l''Audiovisuel et des TƩlƩcommunications en Europe'),
(10149, 'https://ror.org/04bd4pk40', 'no_lang_code', 1, 'https://ror.org/04bd4pk40 WorldFish'),
(10150, 'https://ror.org/00stv9r10', 'no_lang_code', 1, 'https://ror.org/00stv9r10 Fidia (Italy)'),
(10151, 'https://ror.org/01csjkt09', 'fr', 1, 'https://ror.org/01csjkt09 Institut de l’Elevage'),
(10152, 'https://ror.org/02n2syw04', 'en', 1, 'https://ror.org/02n2syw04 International Center for Agricultural Research in the Dry Areas'),
(10153, 'https://ror.org/03j4rrt43', 'en', 1, 'https://ror.org/03j4rrt43 International Centre for Genetic Engineering and Biotechnology'),
(10154, 'https://ror.org/043bgf219', 'en', 1, 'https://ror.org/043bgf219 International Centre for Genetic Engineering and Biotechnology'),
(10155, 'https://ror.org/037pbdd49', 'no_lang_code', 1, 'https://ror.org/037pbdd49 Q PLAN International (Greece)'),
(10156, 'https://ror.org/00g656d67', 'en', 1, 'https://ror.org/00g656d67 Leibniz-Institut für Neue Materialien Leibniz-Institute for New Materials'),
(10157, 'https://ror.org/00s1q1t70', 'en', 1, 'https://ror.org/00s1q1t70 Institute of Earthquake Prediction Theory and Mathematical Geophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теории прогноза Š·ŠµŠ¼Š»ŠµŃ‚Ń€ŃŃŠµŠ½ŠøŠ¹ Šø математической геофизики Российской акаГемии наук (Š˜Š¢ŠŸŠ— Š ŠŠ)'),
(10158, 'https://ror.org/01t1g3y18', 'en', 1, 'https://ror.org/01t1g3y18 International Life Sciences Institute Europe'),
(10159, 'https://ror.org/054gk2851', 'en', 1, 'https://ror.org/054gk2851 St Thomas'' Hospital'),
(10160, 'https://ror.org/01q2q9h07', 'no_lang_code', 1, 'https://ror.org/01q2q9h07 International Mining Consultants'),
(10161, 'https://ror.org/02jh4h461', 'en', 1, 'https://ror.org/02jh4h461 Leicester City Council'),
(10162, 'https://ror.org/04cmxh670', 'no_lang_code', 1, 'https://ror.org/04cmxh670 Lenzing (Austria)'),
(10163, 'https://ror.org/05xqtsb23', 'en', 1, 'https://ror.org/05xqtsb23 International Solvay Institutes'),
(10164, 'https://ror.org/05vhqss82', 'en', 1, 'https://ror.org/05vhqss82 Internet Memory Foundation'),
(10165, 'https://ror.org/02wzfbs47', 'no_lang_code', 1, 'https://ror.org/02wzfbs47 Instituto Tecnológico de Canarias Technological Institute of the Canary Islands'),
(10166, 'https://ror.org/00g8wpx06', 'en', 1, 'https://ror.org/00g8wpx06 LGI Consulting'),
(10167, 'https://ror.org/018n9jg91', 'no_lang_code', 1, 'https://ror.org/018n9jg91 InterSoft (Slovakia)'),
(10168, 'https://ror.org/023f9bb65', 'no_lang_code', 1, 'https://ror.org/023f9bb65 Liebherr (Germany)'),
(10169, 'https://ror.org/014a5cc29', 'no_lang_code', 1, 'https://ror.org/014a5cc29 Liebherr (France)'),
(10170, 'https://ror.org/00rj43d51', 'en', 1, 'https://ror.org/00rj43d51 Lithuanian Innovation Centre'),
(10171, 'https://ror.org/04wes7s39', 'no_lang_code', 1, 'https://ror.org/04wes7s39 InteSys (United Kingdom)'),
(10172, 'https://ror.org/0027v6s71', 'no_lang_code', 1, 'https://ror.org/0027v6s71 INTRASOFT International (Greece)'),
(10173, 'https://ror.org/017ddyz63', 'no_lang_code', 1, 'https://ror.org/017ddyz63 INTRASOFT International (Belgium)'),
(10174, 'https://ror.org/03dcvkh04', 'no_lang_code', 1, 'https://ror.org/03dcvkh04 Intrinsiq Materials (United Kingdom)'),
(10175, 'https://ror.org/04tfjah29', 'en', 1, 'https://ror.org/04tfjah29 Limnological Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Лимнологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук (Š›Š˜Š Š”Šž Š ŠŠ)'),
(10176, 'https://ror.org/03adfn654', 'no_lang_code', 1, 'https://ror.org/03adfn654 Lincis (Portugal)'),
(10177, 'https://ror.org/02ckn6v62', 'fi', 1, 'https://ror.org/02ckn6v62 Turku Science Park'),
(10178, 'https://ror.org/054jcy957', 'no_lang_code', 1, 'https://ror.org/054jcy957 Instituttet for Produktudvikling (Denmark)'),
(10179, 'https://ror.org/053d55q96', 'no_lang_code', 1, 'https://ror.org/053d55q96 Linde (Germany)'),
(10180, 'https://ror.org/02hqjzm41', 'ro', 1, 'https://ror.org/02hqjzm41 Institutul de Cercetari Electrotehnice'),
(10181, 'https://ror.org/00zh7c888', 'en', 1, 'https://ror.org/00zh7c888 Lindholmen Science Park'),
(10182, 'https://ror.org/03h6c8g90', 'no_lang_code', 1, 'https://ror.org/03h6c8g90 Vdlconsult'),
(10183, 'https://ror.org/036h6da34', 'no_lang_code', 1, 'https://ror.org/036h6da34 Linguatec (Germany)'),
(10184, 'https://ror.org/0171vtm86', 'no_lang_code', 1, 'https://ror.org/0171vtm86 SGS (Netherlands)'),
(10185, 'https://ror.org/02kq6xe25', 'no_lang_code', 1, 'https://ror.org/02kq6xe25 IntuiLab (France)'),
(10186, 'https://ror.org/03nsz0g92', 'no_lang_code', 1, 'https://ror.org/03nsz0g92 Marzotto Group (Italy)'),
(10187, 'https://ror.org/05ng8fg61', 'no_lang_code', 1, 'https://ror.org/05ng8fg61 Invent Baltics'),
(10188, 'https://ror.org/0206kf863', 'no_lang_code', 1, 'https://ror.org/0206kf863 Link Consulting'),
(10189, 'https://ror.org/02b8nr167', 'no_lang_code', 1, 'https://ror.org/02b8nr167 Expedeon (Germany)'),
(10190, 'https://ror.org/01rt1dv70', 'no_lang_code', 1, 'https://ror.org/01rt1dv70 Lionex (Germany)'),
(10191, 'https://ror.org/0507xbc51', 'no_lang_code', 1, 'https://ror.org/0507xbc51 Invent (Germany)'),
(10192, 'https://ror.org/00k8nkz10', 'no_lang_code', 1, 'https://ror.org/00k8nkz10 LioniX (Netherlands)'),
(10193, 'https://ror.org/00pgy3a44', 'no_lang_code', 1, 'https://ror.org/00pgy3a44 Ion Beam Applications (Belgium)'),
(10194, 'https://ror.org/056rz2k22', 'no_lang_code', 1, 'https://ror.org/056rz2k22 Ibs (France)'),
(10195, 'https://ror.org/008gaha58', 'no_lang_code', 1, 'https://ror.org/008gaha58 Ionicon Analytik (Austria)'),
(10196, 'https://ror.org/010fbtk71', 'no_lang_code', 1, 'https://ror.org/010fbtk71 IPCOS (Netherlands)'),
(10197, 'https://ror.org/05fw8c280', 'no_lang_code', 1, 'https://ror.org/05fw8c280 Istituto per le Piante da Legno e l''Ambiente'),
(10198, 'https://ror.org/03f4vp463', 'no_lang_code', 1, 'https://ror.org/03f4vp463 IQE (United Kingdom)'),
(10199, 'https://ror.org/02ep4w426', 'no_lang_code', 1, 'https://ror.org/02ep4w426 LISA laser products (Germany)'),
(10200, 'https://ror.org/024txyd33', 'pt', 1, 'https://ror.org/024txyd33 Lisboa E-Nova - AgĆŖncia Municipal de Energia e Ambiente'),
(10201, 'https://ror.org/054etw605', 'fr', 1, 'https://ror.org/054etw605 Institut du DƩveloppement Durable et des Ressources Aquatiques'),
(10202, 'https://ror.org/03ndq5j60', 'no_lang_code', 1, 'https://ror.org/03ndq5j60 IRBM Science Park'),
(10203, 'https://ror.org/03kkb8y03', 'pl', 1, 'https://ror.org/03kkb8y03 Forest Research Institute Instytut Badawczy Leśnictwa'),
(10204, 'https://ror.org/0016bkz03', 'no_lang_code', 1, 'https://ror.org/0016bkz03 Lisnave (Portugal)'),
(10205, 'https://ror.org/03r3hm022', 'en', 1, 'https://ror.org/03r3hm022 Litani River Authority'),
(10206, 'https://ror.org/035mr7v54', 'en', 1, 'https://ror.org/035mr7v54 Lithuanian Institute of Agrarian Economics'),
(10207, 'https://ror.org/013kffh65', 'no_lang_code', 1, 'https://ror.org/013kffh65 IRD Fuel Cells (Denmark)'),
(10208, 'https://ror.org/00vsg3p53', 'en', 1, 'https://ror.org/00vsg3p53 Institute of Mathematics Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Š¼Š°Ń‚ŃŠ¼Š°Ń‚Ń‹ŠŗŃ– ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(10209, 'https://ror.org/01jpwx826', 'no_lang_code', 1, 'https://ror.org/01jpwx826 Greencore (Ireland)'),
(10210, 'https://ror.org/02h8ckc21', 'pl', 1, 'https://ror.org/02h8ckc21 Instytut Kolejnictwa'),
(10211, 'https://ror.org/00g4qvs35', 'en', 1, 'https://ror.org/00g4qvs35 Institute of Logistics and Warehousing'),
(10212, 'https://ror.org/04w702289', 'no_lang_code', 1, 'https://ror.org/04w702289 Siemens (Belgium)'),
(10213, 'https://ror.org/045b8aq47', 'en', 1, 'https://ror.org/045b8aq47 International Road Transport Union'),
(10214, 'https://ror.org/00ctvyy53', 'en', 1, 'https://ror.org/00ctvyy53 Local Government Management Agency'),
(10215, 'https://ror.org/02z663265', 'no_lang_code', 1, 'https://ror.org/02z663265 Intelligent Sensing Anywhere (Portugal)'),
(10216, 'https://ror.org/003fvp964', 'en', 1, 'https://ror.org/003fvp964 Institute of Computer Science Instytut Podstaw Informatyki'),
(10217, 'https://ror.org/05qa6yx98', 'no_lang_code', 1, 'https://ror.org/05qa6yx98 Novavax (Sweden)'),
(10218, 'https://ror.org/03rzhpa51', 'fr', 1, 'https://ror.org/03rzhpa51 French Institue of Navigation Institut FranƧais de Navigation'),
(10219, 'https://ror.org/0592ykd44', 'no_lang_code', 1, 'https://ror.org/0592ykd44 Logimatic (Denmark)'),
(10220, 'https://ror.org/03mb54f81', 'no_lang_code', 1, 'https://ror.org/03mb54f81 Synopsys (Switzerland)'),
(10221, 'https://ror.org/00bh09051', 'no_lang_code', 1, 'https://ror.org/00bh09051 Logit Systems (Norway)'),
(10222, 'https://ror.org/00j2xe242', 'no_lang_code', 1, 'https://ror.org/00j2xe242 Innovative System und Informationstechnologien (Germany)'),
(10223, 'https://ror.org/05q0b6266', 'no_lang_code', 1, 'https://ror.org/05q0b6266 Lombardia Informatica (Italy)'),
(10224, 'https://ror.org/04c5tww79', 'no_lang_code', 1, 'https://ror.org/04c5tww79 NanoBioMatters (Spain)'),
(10225, 'https://ror.org/002adfz67', 'no_lang_code', 1, 'https://ror.org/002adfz67 Lonza (Switzerland)'),
(10226, 'https://ror.org/038333j82', 'no_lang_code', 1, 'https://ror.org/038333j82 Nuance Communications (Italy)'),
(10227, 'https://ror.org/00ny8df12', 'fr', 1, 'https://ror.org/00ny8df12 French Institute of International Relations Institut FranƧais des Relations Internationales'),
(10228, 'https://ror.org/0184sq126', 'no_lang_code', 1, 'https://ror.org/0184sq126 Irion & Junker Project Management Irion and Junker Projektmanagement'),
(10229, 'https://ror.org/04hxq4b52', 'en', 1, 'https://ror.org/04hxq4b52 London Borough of Southwark'),
(10230, 'https://ror.org/03439xb05', 'no_lang_code', 1, 'https://ror.org/03439xb05 Nanocyl (Belgium)'),
(10231, 'https://ror.org/03bmdtg34', 'no_lang_code', 1, 'https://ror.org/03bmdtg34 SGS Institut Fresenius (Germany)'),
(10232, 'https://ror.org/02pw5x542', 'no_lang_code', 1, 'https://ror.org/02pw5x542 Isojet Equipements (France)'),
(10233, 'https://ror.org/02kn8an38', 'nl', 1, 'https://ror.org/02kn8an38 Louis Bolk Instituut'),
(10234, 'https://ror.org/05737wb92', 'no_lang_code', 1, 'https://ror.org/05737wb92 Isotest Engineering (Italy)'),
(10235, 'https://ror.org/02wr67907', 'no_lang_code', 1, 'https://ror.org/02wr67907 LPW Technology (United Kingdom)'),
(10236, 'https://ror.org/015gqee34', 'no_lang_code', 1, 'https://ror.org/015gqee34 NANOfutures (Belgium)'),
(10237, 'https://ror.org/00p2hg467', 'en', 1, 'https://ror.org/00p2hg467 Institut für die Wissenschaften vom Menschen Institute of Human Sciences'),
(10238, 'https://ror.org/050g24769', 'no_lang_code', 1, 'https://ror.org/050g24769 Nanogate (Germany)'),
(10239, 'https://ror.org/01ajjny45', 'no_lang_code', 1, 'https://ror.org/01ajjny45 Nanologica (Sweden)'),
(10240, 'https://ror.org/04xjvsa73', 'no_lang_code', 1, 'https://ror.org/04xjvsa73 WSP (Finland)'),
(10241, 'https://ror.org/04nadpw56', 'no_lang_code', 1, 'https://ror.org/04nadpw56 Nanoplus (Germany)'),
(10242, 'https://ror.org/01knh8k33', 'no_lang_code', 1, 'https://ror.org/01knh8k33 Madatech'),
(10243, 'https://ror.org/00gbze925', 'no_lang_code', 1, 'https://ror.org/00gbze925 Lucchini Idromeccanica (Italy)'),
(10244, 'https://ror.org/0470ypw21', 'de', 1, 'https://ror.org/0470ypw21 Institut für ökologische Wirtschaftsforschung Institute for Environmental Management and Economics'),
(10245, 'https://ror.org/01resg468', 'no_lang_code', 1, 'https://ror.org/01resg468 Nokia (Netherlands)'),
(10246, 'https://ror.org/0484k9q63', 'en', 1, 'https://ror.org/0484k9q63 Swedish Space Corporation'),
(10247, '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'),
(10248, 'https://ror.org/055vs2h16', 'en', 1, 'https://ror.org/055vs2h16 Nanotechnology Industries Association'),
(10249, 'https://ror.org/00xcabq98', 'no_lang_code', 1, 'https://ror.org/00xcabq98 NanotecMARIN (Germany)'),
(10250, 'https://ror.org/01ncnk871', 'no_lang_code', 1, 'https://ror.org/01ncnk871 LNL Technology (Turkey)'),
(10251, 'https://ror.org/037c3gg23', 'it', 1, 'https://ror.org/037c3gg23 Istituto di Ricerche Economiche per la Pesca e l''Acquacoltura'),
(10252, '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'),
(10253, 'https://ror.org/056m1n765', 'it', 1, 'https://ror.org/056m1n765 Istituto e Museo di Storia della Scienza Museo Galileo'),
(10254, 'https://ror.org/03vabvg16', 'no_lang_code', 1, 'https://ror.org/03vabvg16 Svalbard Global Seed Vault'),
(10255, 'https://ror.org/036xsx560', 'de', 1, 'https://ror.org/036xsx560 Ludwig-Bƶlkow-Systemtechnik'),
(10256, 'https://ror.org/00gr8kx33', 'no_lang_code', 1, 'https://ror.org/00gr8kx33 Istituto Giordano'),
(10257, 'https://ror.org/04md0t587', 'no_lang_code', 1, 'https://ror.org/04md0t587 NanoWorld Services (Germany)'),
(10258, 'https://ror.org/05hp2t033', 'no_lang_code', 1, 'https://ror.org/05hp2t033 Lufthansa (Germany) Lufthansa German Airlines'),
(10259, 'https://ror.org/02ry21p36', 'no_lang_code', 1, 'https://ror.org/02ry21p36 LMG Marin (Norway)'),
(10260, 'https://ror.org/00acdsz41', 'no_lang_code', 1, 'https://ror.org/00acdsz41 Paragon (Malta)'),
(10261, 'https://ror.org/01n47re51', 'no_lang_code', 1, 'https://ror.org/01n47re51 Paragon (Greece)'),
(10262, 'https://ror.org/036bm0d39', 'no_lang_code', 1, 'https://ror.org/036bm0d39 CinecittĆ  Luce'),
(10263, 'https://ror.org/004er7684', 'no_lang_code', 1, 'https://ror.org/004er7684 Luxilon (Belgium)'),
(10264, 'https://ror.org/03te9j613', 'en', 1, 'https://ror.org/03te9j613 Environment Park'),
(10265, 'https://ror.org/005wy0t74', 'en', 1, 'https://ror.org/005wy0t74 Luxinnovation'),
(10266, 'https://ror.org/032fdft79', 'it', 1, 'https://ror.org/032fdft79 Istituto Nazionale di Economia Agraria National Institute of Agricultural Economics'),
(10267, 'https://ror.org/02kc0ck80', 'no_lang_code', 1, 'https://ror.org/02kc0ck80 M&I/Partners'),
(10268, 'https://ror.org/05hgfrp57', 'no_lang_code', 1, 'https://ror.org/05hgfrp57 Machining Centers Manufacturing (Italy)');
INSERT INTO `rors` VALUES
(10269, 'https://ror.org/00n63p259', 'no_lang_code', 1, 'https://ror.org/00n63p259 Napa (Finland)'),
(10270, 'https://ror.org/005ypgw33', 'no_lang_code', 1, 'https://ror.org/005ypgw33 ISRA Vision Parsytec (Germany)'),
(10271, 'https://ror.org/00ag5y002', 'it', 1, 'https://ror.org/00ag5y002 Istituto Nazionale per Studi ed Esperienze di Architettura Navale'),
(10272, 'https://ror.org/001gk4004', 'it', 1, 'https://ror.org/001gk4004 Istituto per la Ricerca Sociale'),
(10273, 'https://ror.org/050cwv729', 'no_lang_code', 1, 'https://ror.org/050cwv729 Magen David Adom'),
(10274, 'https://ror.org/01qn49q19', 'no_lang_code', 1, 'https://ror.org/01qn49q19 Magillem Design Services'),
(10275, 'https://ror.org/00rbjw379', 'it', 1, 'https://ror.org/00rbjw379 Istituto per lo Sviluppo della Formazione Professionale dei Lavoratori'),
(10276, 'https://ror.org/00twv1w80', 'no_lang_code', 1, 'https://ror.org/00twv1w80 Pasquali Macchine Agricole (Italy)'),
(10277, 'https://ror.org/00zb4pn27', 'no_lang_code', 1, 'https://ror.org/00zb4pn27 Magna (Austria)'),
(10278, 'https://ror.org/01jq9eh12', 'en', 1, 'https://ror.org/01jq9eh12 Magnesium Research Institute'),
(10279, 'https://ror.org/00yssnc44', 'de', 1, 'https://ror.org/00yssnc44 Paul Ehrlich Institut Paul-Ehrlich-Institut – Bundesinstitut für Impfstoffe und biomedizinische Arzneimittel'),
(10280, 'https://ror.org/0104bde61', 'no_lang_code', 1, 'https://ror.org/0104bde61 PCA Engineers'),
(10281, 'https://ror.org/02hdbjt22', 'no_lang_code', 1, 'https://ror.org/02hdbjt22 Forgital (Italy)'),
(10282, 'https://ror.org/00ra5vp36', 'no_lang_code', 1, 'https://ror.org/00ra5vp36 Magneto Special Anodes (Netherlands)'),
(10283, 'https://ror.org/01bss2h67', 'no_lang_code', 1, 'https://ror.org/01bss2h67 PE International (Germany)'),
(10284, 'https://ror.org/01gykgk63', 'no_lang_code', 1, 'https://ror.org/01gykgk63 Rio Tinto (France)'),
(10285, 'https://ror.org/01thff661', 'no', 1, 'https://ror.org/01thff661 Nasjonalt Kunnskapssenter for Helsetjenesten Norwegian Knowledge Centre for the Health Services'),
(10286, 'https://ror.org/00eyn9595', 'no_lang_code', 1, 'https://ror.org/00eyn9595 Malsch TechnoValuation'),
(10287, 'https://ror.org/00scmkj28', 'no_lang_code', 1, 'https://ror.org/00scmkj28 Natex Prozesstechnologie (Austria)'),
(10288, 'https://ror.org/05edwfq62', 'no_lang_code', 1, 'https://ror.org/05edwfq62 Dynniq (Netherlands)'),
(10289, 'https://ror.org/0546dmt59', 'no_lang_code', 1, 'https://ror.org/0546dmt59 Nationaal Archief of the Netherlands'),
(10290, 'https://ror.org/02d8tke50', 'en', 1, 'https://ror.org/02d8tke50 Emergency Services College Pelastusopisto'),
(10291, 'https://ror.org/01rwphz66', 'en', 1, 'https://ror.org/01rwphz66 National Academy of Sciences of the Republic of Kazakhstan ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук ŠšŠ°Š·Š°Ń…стана ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ Ұлттық ғылым Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(10292, 'https://ror.org/03veq6934', 'no_lang_code', 1, 'https://ror.org/03veq6934 Pepscan (Netherlands)'),
(10293, 'https://ror.org/01jv1zx50', 'it', 1, 'https://ror.org/01jv1zx50 Istituto Superiore delle Comunicazioni e delle Tecnologie Dell''Informazione'),
(10294, 'https://ror.org/00dt2y198', 'en', 1, 'https://ror.org/00dt2y198 Malta Information Technology Agency'),
(10295, 'https://ror.org/012mvd861', 'no_lang_code', 1, 'https://ror.org/012mvd861 National Air Traffic Services (United Kingdom)'),
(10296, 'https://ror.org/02qcw9v04', 'en', 1, 'https://ror.org/02qcw9v04 Malta Resources Authority'),
(10297, 'https://ror.org/05gbak870', 'no_lang_code', 1, 'https://ror.org/05gbak870 Malthe Winje (Norway)'),
(10298, 'https://ror.org/01wc38255', 'en', 1, 'https://ror.org/01wc38255 Applied Research Institute for Prospective Technologies'),
(10299, 'https://ror.org/01t264m74', 'it', 1, 'https://ror.org/01t264m74 Istituto Nazionale per l''Assicurazione Contro gli Infortuni sul Lavoro'),
(10300, 'https://ror.org/05hkma334', 'no_lang_code', 1, 'https://ror.org/05hkma334 MAN (Germany)'),
(10301, 'https://ror.org/05qps5a28', 'it', 1, 'https://ror.org/05qps5a28 Istituto Zooprofilattico Sperimentale del Piemonte Liguria e Valle d''Aosta'),
(10302, 'https://ror.org/03kk57x07', 'it', 1, 'https://ror.org/03kk57x07 Sardegna Agricoltura'),
(10303, 'https://ror.org/036q5kj17', 'no_lang_code', 1, 'https://ror.org/036q5kj17 Mantis Deposition (United Kingdom)'),
(10304, 'https://ror.org/02g0y3z13', 'en', 1, 'https://ror.org/02g0y3z13 Institute of Scientific and Technological Research in Aeronautics and Mechanical Engineering'),
(10305, 'https://ror.org/0513rs483', 'no_lang_code', 1, 'https://ror.org/0513rs483 Marac (Greece) ĪœĪ‘Ī”Ī‘Īš Ηλεκτρονική'),
(10306, 'https://ror.org/000ncdv93', 'en', 1, 'https://ror.org/000ncdv93 Swedish National Board of Fisheries'),
(10307, 'https://ror.org/05d43rg85', 'no_lang_code', 1, 'https://ror.org/05d43rg85 IT Consult'),
(10308, 'https://ror.org/006p7ys96', 'no_lang_code', 1, 'https://ror.org/006p7ys96 Metos (Austria)'),
(10309, 'https://ror.org/03xxx9y67', 'no_lang_code', 1, 'https://ror.org/03xxx9y67 Marel (Iceland)'),
(10310, 'https://ror.org/0288vq897', 'no_lang_code', 1, 'https://ror.org/0288vq897 ITPEnergised Group (United Kingdom)'),
(10311, 'https://ror.org/02rtft424', 'no_lang_code', 1, 'https://ror.org/02rtft424 Marimatech (Denmark)'),
(10312, 'https://ror.org/01188mx28', 'en', 1, 'https://ror.org/01188mx28 Marine Hydrophysical Institute'),
(10313, 'https://ror.org/01pz6j040', 'no_lang_code', 1, 'https://ror.org/01pz6j040 Wood Group Kenny'),
(10314, 'https://ror.org/02rmbgc23', 'en', 1, 'https://ror.org/02rmbgc23 National Council for the Blind of Ireland'),
(10315, 'https://ror.org/05a5d8x70', 'no_lang_code', 1, 'https://ror.org/05a5d8x70 Pharmidex (United Kingdom)'),
(10316, 'https://ror.org/01fafrd63', 'no_lang_code', 1, 'https://ror.org/01fafrd63 Oclaro (United Kingdom)'),
(10317, 'https://ror.org/055j33y49', 'no_lang_code', 1, 'https://ror.org/055j33y49 Phase Change Material Products (United Kingdom)'),
(10318, 'https://ror.org/04zbx7x36', 'en', 1, 'https://ror.org/04zbx7x36 Italian Biomass Association'),
(10319, 'https://ror.org/000qvv970', 'en', 1, 'https://ror.org/000qvv970 Qualifications and Curriculum Authority'),
(10320, 'https://ror.org/05jz46060', 'no_lang_code', 1, 'https://ror.org/05jz46060 Koninklijke Philips Philips (France)'),
(10321, 'https://ror.org/03g5dad97', 'en', 1, 'https://ror.org/03g5dad97 National Development and Reform Commission Energy Research Institute å›½å®¶å‘å±•å’Œę”¹é©å§”å‘˜ä¼ščƒ½ęŗē ”ē©¶ę‰€'),
(10322, 'https://ror.org/02b79c687', 'no_lang_code', 1, 'https://ror.org/02b79c687 Mediterranean Broadband Infrastructure (Italy)'),
(10323, 'https://ror.org/05bsjqt55', 'no_lang_code', 1, 'https://ror.org/05bsjqt55 Philips (Belgium)'),
(10324, 'https://ror.org/049zsmy36', 'no_lang_code', 1, 'https://ror.org/049zsmy36 TÜV SÜD (United Kingdom)'),
(10325, 'https://ror.org/017sx9325', 'no_lang_code', 1, 'https://ror.org/017sx9325 Air Liquide (Germany)'),
(10326, 'https://ror.org/05xere368', 'no_lang_code', 1, 'https://ror.org/05xere368 SingularLogic (Greece)'),
(10327, 'https://ror.org/04bb70w76', 'ro', 1, 'https://ror.org/04bb70w76 Institutul Naţional de Cercetare Dezvoltare Marină Grigore Antipa'),
(10328, 'https://ror.org/03hg1yf12', 'no_lang_code', 1, 'https://ror.org/03hg1yf12 Magwel (Belgium)'),
(10329, 'https://ror.org/03tzetp81', 'no_lang_code', 1, 'https://ror.org/03tzetp81 Mandelli (Italy)'),
(10330, 'https://ror.org/00epmfe95', 'no_lang_code', 1, 'https://ror.org/00epmfe95 PhoeniX Software (Netherlands)'),
(10331, 'https://ror.org/03ef7g429', 'no_lang_code', 1, 'https://ror.org/03ef7g429 Photon Systems Instruments (Czechia)'),
(10332, 'https://ror.org/00r254y42', 'no_lang_code', 1, 'https://ror.org/00r254y42 Piaggio (Italy)'),
(10333, 'https://ror.org/02tf6tv07', 'no_lang_code', 1, 'https://ror.org/02tf6tv07 Picosun (Finland)'),
(10334, 'https://ror.org/00zh4ns47', 'no_lang_code', 1, 'https://ror.org/00zh4ns47 Marion Technologies (France)'),
(10335, 'https://ror.org/05ctn5s75', 'it', 1, 'https://ror.org/05ctn5s75 Iter'),
(10336, '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'),
(10337, 'https://ror.org/02hbq4750', 'no_lang_code', 1, 'https://ror.org/02hbq4750 Mariskone (Spain)'),
(10338, 'https://ror.org/03mb23c90', 'no_lang_code', 1, 'https://ror.org/03mb23c90 ITM Power (United Kingdom)'),
(10339, 'https://ror.org/05kw2hj64', 'en', 1, 'https://ror.org/05kw2hj64 Maritime and Coastguard Agency'),
(10340, 'https://ror.org/007st1w34', 'no_lang_code', 1, 'https://ror.org/007st1w34 Piksel (Italy)'),
(10341, 'https://ror.org/00bpbqe63', 'en', 1, 'https://ror.org/00bpbqe63 Pildo Labs'),
(10342, 'https://ror.org/04j65hp39', 'no_lang_code', 1, 'https://ror.org/04j65hp39 Nippon Sheet Glass (United Kingdom)'),
(10343, 'https://ror.org/01gk6p474', 'no_lang_code', 1, 'https://ror.org/01gk6p474 Martel'),
(10344, 'https://ror.org/015xym232', 'no_lang_code', 1, 'https://ror.org/015xym232 Pintail (Ireland)'),
(10345, 'https://ror.org/01wer7646', 'no_lang_code', 1, 'https://ror.org/01wer7646 Mastercard (Belgium)'),
(10346, 'https://ror.org/05evc8s02', 'no_lang_code', 1, 'https://ror.org/05evc8s02 Publicis Groupe (Switzerland)'),
(10347, 'https://ror.org/00tc93763', 'no_lang_code', 1, 'https://ror.org/00tc93763 Materialise (Belgium)'),
(10348, 'https://ror.org/058e2jz50', 'no_lang_code', 1, 'https://ror.org/058e2jz50 Publicis Groupe (Germany)'),
(10349, 'https://ror.org/00wtmxk58', 'no_lang_code', 1, 'https://ror.org/00wtmxk58 Element Materials Technology (United Kingdom)'),
(10350, 'https://ror.org/01ky55e50', 'no_lang_code', 1, 'https://ror.org/01ky55e50 LagardĆØre (France)'),
(10351, 'https://ror.org/01a1kj410', 'no_lang_code', 1, 'https://ror.org/01a1kj410 Planetek Italia'),
(10352, 'https://ror.org/04sjpp691', 'en', 1, 'https://ror.org/04sjpp691 National Museums of Kenya'),
(10353, 'https://ror.org/01b6xgg59', 'en', 1, 'https://ror.org/01b6xgg59 iXscient'),
(10354, 'https://ror.org/02qp62108', 'no_lang_code', 1, 'https://ror.org/02qp62108 Plansee (Austria)'),
(10355, 'https://ror.org/04ahqd251', 'no_lang_code', 1, 'https://ror.org/04ahqd251 Plant Integrity (United Kingdom)'),
(10356, 'https://ror.org/02zvtbe65', 'de', 1, 'https://ror.org/02zvtbe65 Institut für Zukunftsstudien und Technologiebewertung'),
(10357, 'https://ror.org/0313r6y71', 'no_lang_code', 1, 'https://ror.org/0313r6y71 Jan de Rijk Logistics (Netherlands)'),
(10358, 'https://ror.org/052t9a145', 'en', 1, 'https://ror.org/052t9a145 NƶvƩnyvƩdelmi IntƩzete Plant Protection Institute'),
(10359, 'https://ror.org/01zksz530', 'bs', 1, 'https://ror.org/01zksz530 Natural History Museum of Montenegro Prirodnjacki Muzej Crne Gore'),
(10360, 'https://ror.org/05bdznr21', 'no_lang_code', 1, 'https://ror.org/05bdznr21 PlasmaChem (Germany)'),
(10361, 'https://ror.org/03z7jn533', 'fr', 1, 'https://ror.org/03z7jn533 Plastipolis'),
(10362, 'https://ror.org/05e4cgj50', 'no_lang_code', 1, 'https://ror.org/05e4cgj50 PNO Consultants (United Kingdom)'),
(10363, 'https://ror.org/03pyc1d37', 'no_lang_code', 1, 'https://ror.org/03pyc1d37 Poli Model (Italy)'),
(10364, 'https://ror.org/00yk21455', 'en', 1, 'https://ror.org/00yk21455 Police Service of Northern Ireland'),
(10365, 'https://ror.org/04cn8bv62', 'no_lang_code', 1, 'https://ror.org/04cn8bv62 JCP Connect (France)'),
(10366, 'https://ror.org/02vxxy693', 'no_lang_code', 1, 'https://ror.org/02vxxy693 JENAer Meßtechnik (Germany)'),
(10367, 'https://ror.org/013rtxr98', 'no_lang_code', 1, 'https://ror.org/013rtxr98 General Electric (Austria)'),
(10368, 'https://ror.org/04ew99m67', 'no_lang_code', 1, 'https://ror.org/04ew99m67 Polkom Badania'),
(10369, 'https://ror.org/03zaba654', 'no_lang_code', 1, 'https://ror.org/03zaba654 Jernkontoret (Sweden)'),
(10370, 'https://ror.org/021hb4q36', 'no_lang_code', 1, 'https://ror.org/021hb4q36 Mb Air Systems (United Kingdom)'),
(10371, 'https://ror.org/02mbv4339', 'no_lang_code', 1, 'https://ror.org/02mbv4339 Deutsche Telekom (Poland)'),
(10372, 'https://ror.org/04xce0q45', 'no_lang_code', 1, 'https://ror.org/04xce0q45 Polymage (France)'),
(10373, 'https://ror.org/031jzsw63', 'no_lang_code', 1, 'https://ror.org/031jzsw63 Jobs (Italy)'),
(10374, 'https://ror.org/01bv1r935', 'no_lang_code', 1, 'https://ror.org/01bv1r935 MBDA (France)'),
(10375, 'https://ror.org/00x2xws80', 'no_lang_code', 1, 'https://ror.org/00x2xws80 Jobst Technologies (Germany)'),
(10376, 'https://ror.org/00g8m1t29', 'no_lang_code', 1, 'https://ror.org/00g8m1t29 Varian Medical Systems (United Kingdom)'),
(10377, 'https://ror.org/0224dd234', 'en', 1, 'https://ror.org/0224dd234 Piraeus Port Authority'),
(10378, 'https://ror.org/05s0g1g46', 'en', 1, 'https://ror.org/05s0g1g46 National Research Foundation'),
(10379, 'https://ror.org/03wvdfp77', 'no_lang_code', 1, 'https://ror.org/03wvdfp77 Posiva (Finland)'),
(10380, 'https://ror.org/01hvt7y65', 'no_lang_code', 1, 'https://ror.org/01hvt7y65 Texinov (France)'),
(10381, 'https://ror.org/05h72ek27', 'no_lang_code', 1, 'https://ror.org/05h72ek27 AFRY (Finland)'),
(10382, 'https://ror.org/0492cvk34', 'en', 1, 'https://ror.org/0492cvk34 National Scientific Center for Medical and Biotechnical Research ŠŠ°ŃƒŠŗŠ¾Š²ŠøŠ¹ центр Š· меГико-біотехнічних проблем'),
(10383, 'https://ror.org/02w5w7488', 'en', 1, 'https://ror.org/02w5w7488 Hellenic Statistical Authority Ελληνική Ī£Ļ„Ī±Ļ„Ī¹ĻƒĻ„Ī¹ĪŗĪ® Αρχή'),
(10384, 'https://ror.org/02vfhfv39', 'no_lang_code', 1, 'https://ror.org/02vfhfv39 PRĆ© Consultants'),
(10385, 'https://ror.org/0315a3206', 'no_lang_code', 1, 'https://ror.org/0315a3206 Precitec (Germany)'),
(10386, 'https://ror.org/018qv1e85', 'no_lang_code', 1, 'https://ror.org/018qv1e85 PreSens Precision Sensing (Germany)'),
(10387, 'https://ror.org/04pvpzj22', 'no_lang_code', 1, 'https://ror.org/04pvpzj22 Meyer Werft (Germany)'),
(10388, 'https://ror.org/04y729m70', 'no_lang_code', 1, 'https://ror.org/04y729m70 Petards Group (United Kingdom)'),
(10389, 'https://ror.org/01gxyxc07', 'no_lang_code', 1, 'https://ror.org/01gxyxc07 Hoerbiger (Sweden)'),
(10390, 'https://ror.org/02rc7fh29', 'it', 1, 'https://ror.org/02rc7fh29 Presidenza Del Consiglio Dei Ministri'),
(10391, 'https://ror.org/0123nke06', 'no_lang_code', 1, 'https://ror.org/0123nke06 JRC Capital Management (Germany)'),
(10392, 'https://ror.org/05mw3nb06', 'no_lang_code', 1, 'https://ror.org/05mw3nb06 Judex (Denmark)'),
(10393, 'https://ror.org/04zrfss29', 'no_lang_code', 1, 'https://ror.org/04zrfss29 MedCom'),
(10394, 'https://ror.org/03ct85y20', 'no_lang_code', 1, 'https://ror.org/03ct85y20 TUI (Germany)'),
(10395, 'https://ror.org/015sh1j12', 'no_lang_code', 1, 'https://ror.org/015sh1j12 Juniper Networks (Ireland)'),
(10396, 'https://ror.org/005bg5z56', 'no_lang_code', 1, 'https://ror.org/005bg5z56 Prima Industrie (Italy)'),
(10397, 'https://ror.org/024tzkr53', 'no_lang_code', 1, 'https://ror.org/024tzkr53 PrimeTel (Cyprus)'),
(10398, 'https://ror.org/01tdsae39', 'no_lang_code', 1, 'https://ror.org/01tdsae39 Medtronic (Spain)'),
(10399, 'https://ror.org/00emqem64', 'no_lang_code', 1, 'https://ror.org/00emqem64 Primmbiotech (Italy)'),
(10400, 'https://ror.org/003ka3k75', 'no_lang_code', 1, 'https://ror.org/003ka3k75 Principia (France)'),
(10401, 'https://ror.org/0462zf838', 'en', 1, 'https://ror.org/0462zf838 National Museum of Denmark Nationalmuseet'),
(10402, 'https://ror.org/012wakq07', 'no_lang_code', 1, 'https://ror.org/012wakq07 Thermo Fisher Scientific (Switzerland)'),
(10403, 'https://ror.org/04zbkx310', 'no_lang_code', 1, 'https://ror.org/04zbkx310 Mekorot (Israel) ×ž×§×•×Ø×•×Ŗ'),
(10404, 'https://ror.org/00rhgsx64', 'no_lang_code', 1, 'https://ror.org/00rhgsx64 Prisma Electronics (Greece)'),
(10405, 'https://ror.org/012q3xq08', 'no_lang_code', 1, 'https://ror.org/012q3xq08 Menck (Germany)'),
(10406, 'https://ror.org/00jr5xv14', 'no_lang_code', 1, 'https://ror.org/00jr5xv14 MerMec (Italy)'),
(10407, 'https://ror.org/02zahyc48', 'no_lang_code', 1, 'https://ror.org/02zahyc48 PRO DV (Germany)'),
(10408, 'https://ror.org/033mhn155', 'no_lang_code', 1, 'https://ror.org/033mhn155 Kemakta Konsult'),
(10409, 'https://ror.org/05sgqz436', 'no_lang_code', 1, 'https://ror.org/05sgqz436 Process Design Center (Netherlands)'),
(10410, 'https://ror.org/01s4j6j10', 'no_lang_code', 1, 'https://ror.org/01s4j6j10 Process Systems Enterprise (United Kingdom)'),
(10411, 'https://ror.org/04p71yx79', 'no_lang_code', 1, 'https://ror.org/04p71yx79 Mermayde'),
(10412, 'https://ror.org/027f7xa47', 'no_lang_code', 1, 'https://ror.org/027f7xa47 Procter & Gamble (Belgium)'),
(10413, 'https://ror.org/01weg4r24', 'no_lang_code', 1, 'https://ror.org/01weg4r24 Naturalia & Biologia'),
(10414, 'https://ror.org/05hz2w230', 'en', 1, 'https://ror.org/05hz2w230 Kenya Forestry Research Institute'),
(10415, 'https://ror.org/02a8cv967', 'no_lang_code', 1, 'https://ror.org/02a8cv967 Procter & Gamble (United Kingdom)'),
(10416, 'https://ror.org/01drqkt97', 'no_lang_code', 1, 'https://ror.org/01drqkt97 KeraNor (Norway)'),
(10417, 'https://ror.org/03g3gc902', 'no_lang_code', 1, 'https://ror.org/03g3gc902 ProDigest (Belgium)'),
(10418, 'https://ror.org/0451xtz74', 'de', 1, 'https://ror.org/0451xtz74 Kernkraftwerk Gundremmingen'),
(10419, 'https://ror.org/01rkw5k87', 'no_lang_code', 1, 'https://ror.org/01rkw5k87 Kerntechnische Hilfsdienst (Germany)'),
(10420, 'https://ror.org/01j145b31', 'no_lang_code', 1, 'https://ror.org/01j145b31 Mesurex (Spain)'),
(10421, 'https://ror.org/0395hnd71', 'en', 1, 'https://ror.org/0395hnd71 Production Engineering Research Association'),
(10422, 'https://ror.org/00m2evs52', 'no_lang_code', 1, 'https://ror.org/00m2evs52 Meiko (United Kingdom)'),
(10423, 'https://ror.org/04nb1d674', 'no_lang_code', 1, 'https://ror.org/04nb1d674 ArtHaus (Macedonia)'),
(10424, 'https://ror.org/04g52e958', 'it', 1, 'https://ror.org/04g52e958 Progemisa'),
(10425, 'https://ror.org/02zz2nb17', 'no_lang_code', 1, 'https://ror.org/02zz2nb17 KeyGene (Netherlands)'),
(10426, 'https://ror.org/010c8c923', 'no_lang_code', 1, 'https://ror.org/010c8c923 KGHM Cuprum (Poland) KGHM Cuprum sp. z o.o. Centrum Badawczo - Rozwojowe'),
(10427, 'https://ror.org/03mqnjw52', 'no_lang_code', 1, 'https://ror.org/03mqnjw52 Kingston Computer Consultancy (United Kingdom)'),
(10428, 'https://ror.org/04tq1ka44', 'no_lang_code', 1, 'https://ror.org/04tq1ka44 Kite Solutions (Italy)'),
(10429, 'https://ror.org/008a8ch32', 'no_lang_code', 1, 'https://ror.org/008a8ch32 KitoZyme (Belgium)'),
(10430, 'https://ror.org/04hm0cn69', 'no_lang_code', 1, 'https://ror.org/04hm0cn69 KLA (Israel)'),
(10431, 'https://ror.org/01vetdz59', 'no_lang_code', 1, 'https://ror.org/01vetdz59 Klƶckner (Germany)'),
(10432, 'https://ror.org/058es3q19', 'no_lang_code', 1, 'https://ror.org/058es3q19 Cisco Systems (France)'),
(10433, 'https://ror.org/024z8dm78', 'no_lang_code', 1, 'https://ror.org/024z8dm78 NDT Consultants (United Kingdom)'),
(10434, 'https://ror.org/02t1dfc91', 'no_lang_code', 1, 'https://ror.org/02t1dfc91 Idetra (Spain)'),
(10435, 'https://ror.org/0044vax59', 'no_lang_code', 1, 'https://ror.org/0044vax59 GEA Group (Germany)'),
(10436, 'https://ror.org/0587waj50', 'no_lang_code', 1, 'https://ror.org/0587waj50 NEC Technologies (United Kingdom)'),
(10437, 'https://ror.org/00qpx5a29', 'no_lang_code', 1, 'https://ror.org/00qpx5a29 Metallisation (United Kingdom)'),
(10438, 'https://ror.org/04b8gx121', 'en', 1, 'https://ror.org/04b8gx121 Organic Research Centre'),
(10439, 'https://ror.org/051deva93', 'no_lang_code', 1, 'https://ror.org/051deva93 Necton (Portugal)'),
(10440, 'https://ror.org/04gbnqd17', 'no_lang_code', 1, 'https://ror.org/04gbnqd17 Kongsberg Satellite Services (Norway)'),
(10441, 'https://ror.org/01a3n7y93', 'no_lang_code', 1, 'https://ror.org/01a3n7y93 Advanced Management Solutions (Greece)'),
(10442, 'https://ror.org/058d17a16', 'no_lang_code', 1, 'https://ror.org/058d17a16 Project Automation (Italy)'),
(10443, 'https://ror.org/02xbm2630', 'en', 1, 'https://ror.org/02xbm2630 Metropolitan Research Institute'),
(10444, 'https://ror.org/04sx1sj77', 'es', 1, 'https://ror.org/04sx1sj77 BoletĆ­n Oficial del Estado Official State Gazette'),
(10445, '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'),
(10446, 'https://ror.org/01kzrk477', 'no_lang_code', 1, 'https://ror.org/01kzrk477 KPN (Netherlands)'),
(10447, 'https://ror.org/01r5d6p07', 'no_lang_code', 1, 'https://ror.org/01r5d6p07 Nederlandse Gasunie (Netherlands)'),
(10448, 'https://ror.org/039arew28', 'no_lang_code', 1, 'https://ror.org/039arew28 Micro Materials (United Kingdom)'),
(10449, 'https://ror.org/03qazee42', 'no_lang_code', 1, 'https://ror.org/03qazee42 Prokazyme (Iceland)'),
(10450, 'https://ror.org/00fwv2w85', 'no_lang_code', 1, 'https://ror.org/00fwv2w85 Micro Resist Technology (Germany)'),
(10451, 'https://ror.org/02jsytr13', 'no_lang_code', 1, 'https://ror.org/02jsytr13 Prometeia (Italy)'),
(10452, 'https://ror.org/05wsk5f87', 'no_lang_code', 1, 'https://ror.org/05wsk5f87 ASM International (Finland)'),
(10453, 'https://ror.org/057bd0236', 'no_lang_code', 1, 'https://ror.org/057bd0236 Promolding (Netherlands)'),
(10454, 'https://ror.org/045kvge53', 'no_lang_code', 1, 'https://ror.org/045kvge53 Microfluidic ChipShop (Germany)'),
(10455, 'https://ror.org/05h4fw740', 'no_lang_code', 1, 'https://ror.org/05h4fw740 Promoter (Italy)'),
(10456, 'https://ror.org/02vt9tw94', 'no_lang_code', 1, 'https://ror.org/02vt9tw94 MicroLIQUID (Spain)'),
(10457, 'https://ror.org/03bxx2b53', 'no_lang_code', 1, 'https://ror.org/03bxx2b53 Kontron (Germany)'),
(10458, 'https://ror.org/039m3s961', 'no_lang_code', 1, 'https://ror.org/039m3s961 Micron (Italy)'),
(10459, 'https://ror.org/02mtyfy02', 'no_lang_code', 1, 'https://ror.org/02mtyfy02 Micronit Microfluidics (Netherlands)'),
(10460, 'https://ror.org/01trfzy92', 'nl', 1, 'https://ror.org/01trfzy92 Korps Landelijke Politiediensten National Police Services Agency'),
(10461, 'https://ror.org/051ehts03', 'no_lang_code', 1, 'https://ror.org/051ehts03 Prospex (Belgium)'),
(10462, 'https://ror.org/047abt623', 'no_lang_code', 1, 'https://ror.org/047abt623 Microsharp (United Kingdom)'),
(10463, 'https://ror.org/01ctvj234', 'no_lang_code', 1, 'https://ror.org/01ctvj234 Nedstack fuel cell technology (Netherlands)'),
(10464, 'https://ror.org/0316wza58', 'no_lang_code', 1, 'https://ror.org/0316wza58 MicroVacuum (Hungary)'),
(10465, 'https://ror.org/01965fb20', 'no_lang_code', 1, 'https://ror.org/01965fb20 Protection des MƩtaux (France)'),
(10466, 'https://ror.org/01abzmh24', 'no_lang_code', 1, 'https://ror.org/01abzmh24 Prototech (Norway)'),
(10467, 'https://ror.org/04hrwfn20', 'no_lang_code', 1, 'https://ror.org/04hrwfn20 Prover Technology (Sweden)'),
(10468, 'https://ror.org/0365ahw46', 'no_lang_code', 1, 'https://ror.org/0365ahw46 Danaher (Netherlands)'),
(10469, 'https://ror.org/036z25w18', 'no_lang_code', 1, 'https://ror.org/036z25w18 Nemetschek Bulgaria (Bulgaria)'),
(10470, 'https://ror.org/0195q0f30', 'no_lang_code', 1, 'https://ror.org/0195q0f30 Materials Industrial Research and Technology Development Centre (Greece) Εταιρεία'),
(10471, 'https://ror.org/00azr2q62', 'no_lang_code', 1, 'https://ror.org/00azr2q62 METALogic (Belgium)'),
(10472, 'https://ror.org/01x9zv505', 'en', 1, 'https://ror.org/01x9zv505 Fatebenefratelli Hospital Ospedale San Giovanni Calibita Fatebenefratelli'),
(10473, 'https://ror.org/03sjtg710', 'no_lang_code', 1, 'https://ror.org/03sjtg710 Prüf- und Forschungsinstitut Pirmasens (Germany)'),
(10474, 'https://ror.org/05jc7nb82', 'en', 1, 'https://ror.org/05jc7nb82 Hungarian Meteorological Service OrszÔgos Meteorológiai SzolgÔlat'),
(10475, 'https://ror.org/04p98z790', 'no_lang_code', 1, 'https://ror.org/04p98z790 Neovision (Czechia)'),
(10476, 'https://ror.org/01ehv8p24', 'no_lang_code', 1, 'https://ror.org/01ehv8p24 Optel (Poland)'),
(10477, 'https://ror.org/02y22dj89', 'no_lang_code', 1, 'https://ror.org/02y22dj89 KUKA (Germany) Keller und Knappich Augsburg'),
(10478, 'https://ror.org/02nxnzz65', 'no_lang_code', 1, 'https://ror.org/02nxnzz65 Meteorologie Consult (Germany)'),
(10479, 'https://ror.org/05mq12850', 'no_lang_code', 1, 'https://ror.org/05mq12850 Neste Oil (Finland) Neste Oyj'),
(10480, 'https://ror.org/04xpj5302', 'en', 1, 'https://ror.org/04xpj5302 National Consumer Research Centre'),
(10481, 'https://ror.org/02egmm606', 'no_lang_code', 1, 'https://ror.org/02egmm606 Metroeconomica (United Kingdom)'),
(10482, 'https://ror.org/008q6py59', 'no_lang_code', 1, 'https://ror.org/008q6py59 Project in Solar Energy (Germany)'),
(10483, 'https://ror.org/04ja3zh26', 'no_lang_code', 1, 'https://ror.org/04ja3zh26 NET Nowak Energie & Technologie (Switzerland)'),
(10484, 'https://ror.org/00e2z2v91', 'de', 1, 'https://ror.org/00e2z2v91 Kuratorium für Technik und Bauwesen in der Landwirtschaft'),
(10485, 'https://ror.org/04s0hh912', 'de', 1, 'https://ror.org/04s0hh912 Medien- und Filmgesellschaft Baden-Württemberg'),
(10486, 'https://ror.org/058a2r903', 'it', 1, 'https://ror.org/058a2r903 Istituto Psicoanalitico per le Ricerche Sociali'),
(10487, 'https://ror.org/012pxe355', 'no_lang_code', 1, 'https://ror.org/012pxe355 Net7 (Italy)'),
(10488, 'https://ror.org/03hawtg60', 'no_lang_code', 1, 'https://ror.org/03hawtg60 Aker (Finland)'),
(10489, 'https://ror.org/04g0a6w76', 'no_lang_code', 1, 'https://ror.org/04g0a6w76 MEO (Portugal)'),
(10490, 'https://ror.org/04pwrsp25', 'no_lang_code', 1, 'https://ror.org/04pwrsp25 NetComposites (United Kingdom)'),
(10491, 'https://ror.org/02p9c1e58', 'no_lang_code', 1, 'https://ror.org/02p9c1e58 KWS Saat (Germany)'),
(10492, 'https://ror.org/02a9j6p59', 'no_lang_code', 1, 'https://ror.org/02a9j6p59 PT Inovação e Sistemas (Portugal)'),
(10493, 'https://ror.org/05mhfjj63', 'de', 1, 'https://ror.org/05mhfjj63 Milchwirtschaftliche Untersuchungs- und Versuchsanstalt Kempten'),
(10494, 'https://ror.org/04zbse002', 'no_lang_code', 1, 'https://ror.org/04zbse002 Kybertec (Czechia)'),
(10495, 'https://ror.org/048sy8p96', 'no_lang_code', 1, 'https://ror.org/048sy8p96 Miltech Hellas (Greece)'),
(10496, 'https://ror.org/01rxwr703', 'en', 1, 'https://ror.org/01rxwr703 Cultural Heritage Agency of Netherlands Instituut Collectie Nederland'),
(10497, 'https://ror.org/019rb1136', 'no_lang_code', 1, 'https://ror.org/019rb1136 L-Up'),
(10498, 'https://ror.org/03x84qk23', 'en', 1, 'https://ror.org/03x84qk23 Nederlands Normalisatie Instituut Netherlands Standardization Institute'),
(10499, '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'),
(10500, 'https://ror.org/04n8tjj02', 'en', 1, 'https://ror.org/04n8tjj02 Mineral Industry Research Organisation'),
(10501, 'https://ror.org/02dzq0z59', 'no_lang_code', 1, 'https://ror.org/02dzq0z59 Minerva Consulting and Communication'),
(10502, 'https://ror.org/01dj30h14', 'en', 1, 'https://ror.org/01dj30h14 Mines Rescue Service'),
(10503, 'https://ror.org/014q7gt78', 'en', 1, 'https://ror.org/014q7gt78 Ministero della Giustizia Ministry of Justice'),
(10504, 'https://ror.org/04dzssn93', 'en', 1, 'https://ror.org/04dzssn93 Public Safety Communication Europe Forum'),
(10505, 'https://ror.org/034nt0s92', 'no_lang_code', 1, 'https://ror.org/034nt0s92 PyroGenesis (Greece)'),
(10506, 'https://ror.org/04n728n34', 'no_lang_code', 1, 'https://ror.org/04n728n34 Q-Biologicals (Belgium)'),
(10507, 'https://ror.org/020dxsp50', 'no_lang_code', 1, 'https://ror.org/020dxsp50 Q Free (Norway)'),
(10508, 'https://ror.org/02x3w5g21', 'en', 1, 'https://ror.org/02x3w5g21 Ministerie van Onderwijs, Cultuur en Wetenschappe Ministry of Education Culture and Science'),
(10509, 'https://ror.org/04n3eme41', 'no_lang_code', 1, 'https://ror.org/04n3eme41 Saniona (Denmark)'),
(10510, 'https://ror.org/054119345', 'fr', 1, 'https://ror.org/054119345 Laboratoire d''Ɖvaluation des MatĆ©riels Implantables'),
(10511, 'https://ror.org/023ktd084', 'en', 1, 'https://ror.org/023ktd084 Ministarstvo nauke Ministry of Science'),
(10512, 'https://ror.org/04hje6078', 'no_lang_code', 1, 'https://ror.org/04hje6078 Neurosoft (Poland)'),
(10513, '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 وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© و Ų§Ł„ŲŖŁƒŁˆŁŠŁ† Ų§Ł„Ł…Ł‡Ł†ŁŠ و Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ و البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(10514, 'https://ror.org/04c4d1830', 'en', 1, 'https://ror.org/04c4d1830 New Wave Innovation'),
(10515, 'https://ror.org/01t6t6k62', 'no_lang_code', 1, 'https://ror.org/01t6t6k62 Quanta System (Italy)'),
(10516, 'https://ror.org/03rkv9a98', 'no_lang_code', 1, 'https://ror.org/03rkv9a98 Sudamin Rohstoff (Germany)'),
(10517, 'https://ror.org/00wq6x378', 'no_lang_code', 1, 'https://ror.org/00wq6x378 Quantech ATZ (Spain)'),
(10518, 'https://ror.org/03x45a950', 'it', 1, 'https://ror.org/03x45a950 Laboratorio di Scienze della Cittadinanza'),
(10519, 'https://ror.org/02b5fj195', 'no_lang_code', 1, 'https://ror.org/02b5fj195 Quantis (Switzerland)'),
(10520, 'https://ror.org/02zrfm475', 'en', 1, 'https://ror.org/02zrfm475 Ministry of the Internal Administration Ministério da Administração Interna'),
(10521, 'https://ror.org/054cqc676', 'no_lang_code', 1, 'https://ror.org/054cqc676 Quinary (Italy)'),
(10522, 'https://ror.org/00n8vvc37', 'pt', 1, 'https://ror.org/00n8vvc37 MinistƩrio da JustiƧa'),
(10523, 'https://ror.org/02pxbbk34', 'en', 1, 'https://ror.org/02pxbbk34 Ministero dell''Interno Ministry of Interior'),
(10524, 'https://ror.org/02dsehc06', 'no_lang_code', 1, 'https://ror.org/02dsehc06 Zachrome (United Kingdom)'),
(10525, 'https://ror.org/00c97z041', 'no_lang_code', 1, 'https://ror.org/00c97z041 Engie (Belgium)'),
(10526, 'https://ror.org/02t75hb67', 'no_lang_code', 1, 'https://ror.org/02t75hb67 Lagerwey Wind (Netherlands)'),
(10527, 'https://ror.org/00gyf5945', 'en', 1, 'https://ror.org/00gyf5945 Ministry of Agriculture Nature and Food Quality'),
(10528, 'https://ror.org/00t6rnw77', 'no_lang_code', 1, 'https://ror.org/00t6rnw77 Research and Environmental Devices (Italy)'),
(10529, 'https://ror.org/04m4eyr93', 'en', 1, 'https://ror.org/04m4eyr93 Institute of Soil Science ā€œNikola Poushkarovā€ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠž ŠŸŠžŠ§Š’ŠžŠ—ŠŠŠŠ˜Š• "ŠŠ˜ŠšŠžŠ›Š ŠŸŠ£ŠØŠšŠŠ ŠžŠ’"'),
(10530, 'https://ror.org/04q5hjb22', 'no_lang_code', 1, 'https://ror.org/04q5hjb22 R.U.Robots (United Kingdom)'),
(10531, 'https://ror.org/04zpmt351', 'en', 1, 'https://ror.org/04zpmt351 Nikolaev Institute of Inorganic Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неорганической химии им. А.Š’.ŠŠøŠŗŠ¾Š»Š°ŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(10532, 'https://ror.org/04ca4p790', 'en', 1, 'https://ror.org/04ca4p790 Lambrakis Research Foundation'),
(10533, 'https://ror.org/054dc7e40', 'en', 1, 'https://ror.org/054dc7e40 Ministerie van Financiƫn Ministry of Finance'),
(10534, 'https://ror.org/04xbpgz45', 'no_lang_code', 1, 'https://ror.org/04xbpgz45 Lamik (Spain)'),
(10535, 'https://ror.org/00y321w89', 'nl', 1, 'https://ror.org/00y321w89 Ministerie van de Vlaamse Gemeenschap'),
(10536, 'https://ror.org/055t3ez04', 'no_lang_code', 1, 'https://ror.org/055t3ez04 Zuken (United Kingdom)'),
(10537, 'https://ror.org/00w4csr50', 'de', 1, 'https://ror.org/00w4csr50 Landwirtschaftliche Untersuchungs- und Forschungsanstalt Speyer'),
(10538, 'https://ror.org/00an0vn46', 'no_lang_code', 1, 'https://ror.org/00an0vn46 Raidió TeilifĆ­s Ɖireann (Ireland)'),
(10539, 'https://ror.org/050gxst24', 'en', 1, 'https://ror.org/050gxst24 Radiological Protection Institute of Ireland'),
(10540, 'https://ror.org/00qkqnk52', 'no_lang_code', 1, 'https://ror.org/00qkqnk52 Language Technology Centre'),
(10541, 'https://ror.org/021b9pa93', 'no_lang_code', 1, 'https://ror.org/021b9pa93 Siempelkamp (Germany)'),
(10542, 'https://ror.org/00zceqt96', 'en', 1, 'https://ror.org/00zceqt96 Radiophysical Research Institute ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ раГиофизический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(10543, 'https://ror.org/05rfemm41', 'no_lang_code', 1, 'https://ror.org/05rfemm41 Radiotelevisione Italiana (Italy)'),
(10544, 'https://ror.org/04zqx6d52', 'no_lang_code', 1, 'https://ror.org/04zqx6d52 NKT Holding (Denmark)'),
(10545, 'https://ror.org/01bvfdq42', 'no_lang_code', 1, 'https://ror.org/01bvfdq42 Lantiq (Germany)'),
(10546, 'https://ror.org/04chcgr85', 'no_lang_code', 1, 'https://ror.org/04chcgr85 Raffinerie Tirlemontoise (Belgium)'),
(10547, 'https://ror.org/05168yk81', 'no_lang_code', 1, 'https://ror.org/05168yk81 Microsoft (Belgium)'),
(10548, 'https://ror.org/03crv6k69', 'no_lang_code', 1, 'https://ror.org/03crv6k69 Laser Expertise (United Kingdom)'),
(10549, 'https://ror.org/023kmpc59', 'en', 1, 'https://ror.org/023kmpc59 Ministero delle Politiche Agricole, Alimentari e Forestali Ministry of Agricultural, Food and Forestry Policies'),
(10550, 'https://ror.org/03bsv7x15', 'no_lang_code', 1, 'https://ror.org/03bsv7x15 Ramboll (Finland)'),
(10551, 'https://ror.org/05rg8s453', 'no_lang_code', 1, 'https://ror.org/05rg8s453 Laser Scan Engineering (United Kingdom)'),
(10552, 'https://ror.org/00pyx4s45', 'lv', 1, 'https://ror.org/00pyx4s45 Latvijas Valsts Agrārās Ekonomikas Institūts'),
(10553, 'https://ror.org/037pk1914', 'en', 1, 'https://ror.org/037pk1914 RAND Europe'),
(10554, 'https://ror.org/05tahaz79', 'en', 1, 'https://ror.org/05tahaz79 Ministry of Education, Science and Sport'),
(10555, 'https://ror.org/029e6xb19', 'en', 1, 'https://ror.org/029e6xb19 Ministerul Afacerilor Interne Ministry of Internal Affairs'),
(10556, 'https://ror.org/02ar66p97', 'en', 1, 'https://ror.org/02ar66p97 Latvian Council of Science'),
(10557, 'https://ror.org/05nh5td39', 'no_lang_code', 1, 'https://ror.org/05nh5td39 Nokia (Germany)'),
(10558, 'https://ror.org/004f1q697', 'no_lang_code', 1, 'https://ror.org/004f1q697 Innovation (Latvia)'),
(10559, 'https://ror.org/018t3ct36', 'no_lang_code', 1, 'https://ror.org/018t3ct36 Rapita Systems (United Kingdom)'),
(10560, 'https://ror.org/00tzgse53', 'no_lang_code', 1, 'https://ror.org/00tzgse53 Noldus Information Technology'),
(10561, 'https://ror.org/05tpne661', 'no_lang_code', 1, 'https://ror.org/05tpne661 Laviosa Minerals (Italy)'),
(10562, 'https://ror.org/04h9w5w52', 'no_lang_code', 1, 'https://ror.org/04h9w5w52 LaVision (Germany)'),
(10563, 'https://ror.org/025fmv139', 'no_lang_code', 1, 'https://ror.org/025fmv139 Smithers Rapra (United Kingdom)'),
(10564, 'https://ror.org/05nmnwa45', 'en', 1, 'https://ror.org/05nmnwa45 Ministry of Communications and Information Technology'),
(10565, 'https://ror.org/04x0cz306', 'no_lang_code', 1, 'https://ror.org/04x0cz306 Noliac (Denmark)'),
(10566, 'https://ror.org/05key9153', 'no_lang_code', 1, 'https://ror.org/05key9153 Ratier Figeac (France)'),
(10567, 'https://ror.org/03qgk3v29', 'no_lang_code', 1, 'https://ror.org/03qgk3v29 EMI Construction Quality Control (Hungary)'),
(10568, 'https://ror.org/03hw63y69', 'it', 1, 'https://ror.org/03hw63y69 Ratio Consulta'),
(10569, 'https://ror.org/04ydcpm48', 'en', 1, 'https://ror.org/04ydcpm48 Ministria e Arsimit, Sportit dhe Rinisƫ Ministry of Education, Sports and Youth'),
(10570, 'https://ror.org/053pcb396', 'en', 1, 'https://ror.org/053pcb396 Ministry of Education and Science'),
(10571, 'https://ror.org/04pt1wy33', 'no_lang_code', 1, 'https://ror.org/04pt1wy33 Nor-tek'),
(10572, 'https://ror.org/02xk1w092', 'no_lang_code', 1, 'https://ror.org/02xk1w092 Tecos (Slovenia)'),
(10573, 'https://ror.org/05kcy9z49', 'no_lang_code', 1, 'https://ror.org/05kcy9z49 Norddeutsche Pflanzenzucht Hans-Georg Lembke (Germany)'),
(10574, 'https://ror.org/03pk1p315', 'no_lang_code', 1, 'https://ror.org/03pk1p315 Re Lab (Italy)'),
(10575, 'https://ror.org/04d84av86', 'en', 1, 'https://ror.org/04d84av86 Ministry of National Defence ΄πουργείο Εθνικής Άμυνας'),
(10576, 'https://ror.org/00r7b5207', 'en', 1, 'https://ror.org/00r7b5207 Ministry of Public Security ×”×ž×©×Ø×“ לביטחון הפנים وزارة الأمن Ų§Ł„ŲÆŲ§Ų®Ł„ŁŠ'),
(10577, 'https://ror.org/036nz4295', 'no_lang_code', 1, 'https://ror.org/036nz4295 Re/genT (Netherlands)'),
(10578, 'https://ror.org/04zyzzh22', 'no_lang_code', 1, 'https://ror.org/04zyzzh22 Saft (France)'),
(10579, 'https://ror.org/011t3k538', 'no_lang_code', 1, 'https://ror.org/011t3k538 SAIL LABS Technology (Austria)'),
(10580, 'https://ror.org/00a6bz625', 'no_lang_code', 1, 'https://ror.org/00a6bz625 Rete Europea Dell’Innovazione (Italy)'),
(10581, 'https://ror.org/05631hq65', 'no_lang_code', 1, 'https://ror.org/05631hq65 Mira Telecom (Romania)'),
(10582, 'https://ror.org/04vbpaq02', 'no_lang_code', 1, 'https://ror.org/04vbpaq02 Sairem (France)'),
(10583, 'https://ror.org/047yd6g50', 'no_lang_code', 1, 'https://ror.org/047yd6g50 Salzgitter AG Salzgitter Group (Germany)'),
(10584, 'https://ror.org/01a58n762', 'no_lang_code', 1, 'https://ror.org/01a58n762 WƤrtsilƤ (Germany)'),
(10585, 'https://ror.org/054y68q61', 'no_lang_code', 1, 'https://ror.org/054y68q61 TopSolid (France)'),
(10586, 'https://ror.org/05xwst004', 'no_lang_code', 1, 'https://ror.org/05xwst004 Sampaş Nanotechnology (Turkey)'),
(10587, 'https://ror.org/05ew68y43', 'no_lang_code', 1, 'https://ror.org/05ew68y43 Norner (Norway)'),
(10588, 'https://ror.org/03ma9mt41', 'no_lang_code', 1, 'https://ror.org/03ma9mt41 Reply (Italy)'),
(10589, 'https://ror.org/033bbg733', 'no_lang_code', 1, 'https://ror.org/033bbg733 Mitel (United Kingdom)'),
(10590, 'https://ror.org/005w2t155', 'no_lang_code', 1, 'https://ror.org/005w2t155 Norsk Elektro Optikk (Norway)'),
(10591, 'https://ror.org/04kf71z43', 'no_lang_code', 1, 'https://ror.org/04kf71z43 Mitsubishi Electric (Netherlands)'),
(10592, 'https://ror.org/000sb6642', 'no_lang_code', 1, 'https://ror.org/000sb6642 Satellite Observing Systems (United Kingdom)'),
(10593, 'https://ror.org/02ejgnj48', 'no_lang_code', 1, 'https://ror.org/02ejgnj48 Satra (United Kingdom)'),
(10594, 'https://ror.org/0103ezj12', 'no_lang_code', 1, 'https://ror.org/0103ezj12 Swarco (Italy)'),
(10595, 'https://ror.org/018q0y068', 'no_lang_code', 1, 'https://ror.org/018q0y068 MJC2 (United Kingdom)'),
(10596, 'https://ror.org/0192jdh06', 'no_lang_code', 1, 'https://ror.org/0192jdh06 Satways (Greece)'),
(10597, 'https://ror.org/05q7scn65', 'no_lang_code', 1, 'https://ror.org/05q7scn65 MKmetric (Germany)'),
(10598, 'https://ror.org/03c1k0368', 'no_lang_code', 1, 'https://ror.org/03c1k0368 Schlaich Bergermann und Partner (Germany)'),
(10599, 'https://ror.org/01zhcwk43', 'no_lang_code', 1, 'https://ror.org/01zhcwk43 Digital Dispatch (Finland)'),
(10600, 'https://ror.org/00780ev46', 'no_lang_code', 1, 'https://ror.org/00780ev46 Mobycon'),
(10601, 'https://ror.org/04y4kb514', 'no_lang_code', 1, 'https://ror.org/04y4kb514 Modulight (Finland)'),
(10602, 'https://ror.org/00jf98d65', 'no_lang_code', 1, 'https://ror.org/00jf98d65 MolMed (Italy)'),
(10603, 'https://ror.org/01ezsr216', 'no_lang_code', 1, 'https://ror.org/01ezsr216 Monocrom (Spain)'),
(10604, 'https://ror.org/00aj9x431', 'en', 1, 'https://ror.org/00aj9x431 Region of Western Greece Περιφέρεια Δυτικής ΕλλάΓας'),
(10605, 'https://ror.org/002z0cd60', 'no_lang_code', 1, 'https://ror.org/002z0cd60 Schneider Electric (France)'),
(10606, 'https://ror.org/000q08p21', 'no_lang_code', 1, 'https://ror.org/000q08p21 Schott (Germany)'),
(10607, 'https://ror.org/007nspy92', 'en', 1, 'https://ror.org/007nspy92 Regional Center for Information and Scientific Development'),
(10608, 'https://ror.org/005574r46', 'no_lang_code', 1, 'https://ror.org/005574r46 Italsolar (Italy)'),
(10609, 'https://ror.org/03besxw61', 'no_lang_code', 1, 'https://ror.org/03besxw61 Mostostal Warszawa (Poland)'),
(10610, 'https://ror.org/03cpy3x24', 'no_lang_code', 1, 'https://ror.org/03cpy3x24 Motiva (Finland)'),
(10611, 'https://ror.org/02kg21794', 'it', 1, 'https://ror.org/02kg21794 Regione Campania'),
(10612, 'https://ror.org/00chw7248', 'no_lang_code', 1, 'https://ror.org/00chw7248 Motorola (Italy)'),
(10613, 'https://ror.org/021f1r958', 'no_lang_code', 1, 'https://ror.org/021f1r958 Schunk (Germany)'),
(10614, 'https://ror.org/045193y93', 'no_lang_code', 1, 'https://ror.org/045193y93 Motorola (Germany)'),
(10615, 'https://ror.org/04mq1ck21', 'no_lang_code', 1, 'https://ror.org/04mq1ck21 North West Textiles Network (United Kingdom)'),
(10616, 'https://ror.org/04wdcx151', 'en', 1, 'https://ror.org/04wdcx151 Northern Research Institute'),
(10617, 'https://ror.org/00hqdve77', 'no_lang_code', 1, 'https://ror.org/00hqdve77 Morgan Advanced Materials (United Kingdom)'),
(10618, 'https://ror.org/032ksge37', 'en', 1, 'https://ror.org/032ksge37 Norwegian Geotechnical Institute'),
(10619, 'https://ror.org/01sr61k19', 'es', 1, 'https://ror.org/01sr61k19 Instituto CatalƔn de Tecnologƭa'),
(10620, 'https://ror.org/039faw336', 'no_lang_code', 1, 'https://ror.org/039faw336 Scientific Research and Development (Germany)'),
(10621, 'https://ror.org/00gsbmb44', 'no_lang_code', 1, 'https://ror.org/00gsbmb44 Renewable Energy Systems (United Kingdom)'),
(10622, 'https://ror.org/058css875', 'no_lang_code', 1, 'https://ror.org/058css875 Institut d''AssistĆØncia SanitĆ ria'),
(10623, 'https://ror.org/05sa17k06', 'no_lang_code', 1, 'https://ror.org/05sa17k06 Roth and Rau (Germany)'),
(10624, 'https://ror.org/05x88b790', 'no_lang_code', 1, 'https://ror.org/05x88b790 Harvard Bioscience (Germany)'),
(10625, 'https://ror.org/042ekhp43', 'no_lang_code', 1, 'https://ror.org/042ekhp43 Bureau Veritas (Italy)'),
(10626, 'https://ror.org/02epcmt14', 'no_lang_code', 1, 'https://ror.org/02epcmt14 SCITEK Consultants (United Kingdom)'),
(10627, 'https://ror.org/00046rb12', 'no_lang_code', 1, 'https://ror.org/00046rb12 Rescoll (France)'),
(10628, 'https://ror.org/04nypah87', 'no_lang_code', 1, 'https://ror.org/04nypah87 SCM Group (Italy)'),
(10629, 'https://ror.org/043a1ff28', 'en', 1, 'https://ror.org/043a1ff28 Institute of Chemistry and Chemical Technology'),
(10630, 'https://ror.org/00nxghy76', 'no_lang_code', 1, 'https://ror.org/00nxghy76 Scriba Nanotecnologie (Italy)'),
(10631, 'https://ror.org/00hqnxt08', 'no_lang_code', 1, 'https://ror.org/00hqnxt08 Murmansk Marine Biological Institute'),
(10632, 'https://ror.org/032ep1086', 'no_lang_code', 1, 'https://ror.org/032ep1086 NOVAMINA Innovative Technology Centre'),
(10633, 'https://ror.org/01sa63389', 'ro', 1, 'https://ror.org/01sa63389 Administraţia Naţională de Meteorologie'),
(10634, 'https://ror.org/00r9k8q20', 'en', 1, 'https://ror.org/00r9k8q20 Museum and Institute of Zoology Muzeum i Instytut Zoologii PAN'),
(10635, 'https://ror.org/05sxxz166', 'no_lang_code', 1, 'https://ror.org/05sxxz166 Novamont (Italy)'),
(10636, 'https://ror.org/00w3cxa42', 'no_lang_code', 1, 'https://ror.org/00w3cxa42 Exide Technologies (Spain)'),
(10637, 'https://ror.org/04n1ywh56', 'no_lang_code', 1, 'https://ror.org/04n1ywh56 Mutadis'),
(10638, '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'),
(10639, 'https://ror.org/02sqpat83', 'no_lang_code', 1, 'https://ror.org/02sqpat83 SYSTRA (United Kingdom)'),
(10640, 'https://ror.org/01mzc3z63', 'en', 1, 'https://ror.org/01mzc3z63 Research Institute for Knowledge Systems'),
(10641, 'https://ror.org/01rnsc454', 'no_lang_code', 1, 'https://ror.org/01rnsc454 Sefar (Switzerland)'),
(10642, 'https://ror.org/030bzfc32', 'nl', 1, 'https://ror.org/030bzfc32 Kennisland'),
(10643, 'https://ror.org/056x7d368', 'en', 1, 'https://ror.org/056x7d368 Stockholm Environment Institute'),
(10644, 'https://ror.org/00zecds36', 'no_lang_code', 1, 'https://ror.org/00zecds36 Smart Homes'),
(10645, 'https://ror.org/01eaddk85', 'no_lang_code', 1, 'https://ror.org/01eaddk85 Selected Electronic Technologies (Germany)'),
(10646, 'https://ror.org/00266dp40', 'nl', 1, 'https://ror.org/00266dp40 Novay'),
(10647, 'https://ror.org/054jftq10', 'no_lang_code', 1, 'https://ror.org/054jftq10 NsGene (Denmark)'),
(10648, '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'),
(10649, 'https://ror.org/026cc4t87', 'en', 1, 'https://ror.org/026cc4t87 Swedish Institute of Steel Construction'),
(10650, 'https://ror.org/04rmgk816', 'no_lang_code', 1, 'https://ror.org/04rmgk816 Skanska (Norway)'),
(10651, 'https://ror.org/02km85a12', 'no_lang_code', 1, 'https://ror.org/02km85a12 STMicroelectronics (Belgium)'),
(10652, 'https://ror.org/00wm3b005', 'no_lang_code', 1, 'https://ror.org/00wm3b005 STMicroelectronics (Switzerland)'),
(10653, 'https://ror.org/04cz70931', 'no_lang_code', 1, 'https://ror.org/04cz70931 ResilTech (Italy)'),
(10654, 'https://ror.org/039ckp747', 'en', 1, 'https://ror.org/039ckp747 Semantic Technology Institute International'),
(10655, 'https://ror.org/01h5zkn46', 'no_lang_code', 1, 'https://ror.org/01h5zkn46 Teledyne Technologies (Denmark)'),
(10656, 'https://ror.org/059y4z581', 'no_lang_code', 1, 'https://ror.org/059y4z581 Semelab (United Kingdom)'),
(10657, 'https://ror.org/00mg9ng87', 'no_lang_code', 1, 'https://ror.org/00mg9ng87 Subsea 7 (France)'),
(10658, 'https://ror.org/01vs9w702', 'no_lang_code', 1, 'https://ror.org/01vs9w702 Stora Enso (Finland)'),
(10659, 'https://ror.org/03b7cbd70', 'no_lang_code', 1, 'https://ror.org/03b7cbd70 Stork (Netherlands)'),
(10660, 'https://ror.org/02669nb20', 'no_lang_code', 1, 'https://ror.org/02669nb20 Abertis Infraestructuras (Spain)'),
(10661, 'https://ror.org/00mshdz97', 'en', 1, 'https://ror.org/00mshdz97 Cities On Internet Association'),
(10662, 'https://ror.org/03ztwkx44', 'no_lang_code', 1, 'https://ror.org/03ztwkx44 Revoind Industriale (Italy)'),
(10663, 'https://ror.org/0510ppv76', 'lv', 1, 'https://ror.org/0510ppv76 Rezekne Higher Education Institution Rēzeknes Augstskola'),
(10664, 'https://ror.org/05jy9ww07', 'no_lang_code', 1, 'https://ror.org/05jy9ww07 Semilab (Hungary)'),
(10665, 'https://ror.org/01syn7y20', 'no_lang_code', 1, 'https://ror.org/01syn7y20 Stratec (Belgium)'),
(10666, 'https://ror.org/02vf5m226', 'en', 1, 'https://ror.org/02vf5m226 Strategic Design Scenarios'),
(10667, 'https://ror.org/0472xg466', 'no_lang_code', 1, 'https://ror.org/0472xg466 StratiCELL (Belgium)'),
(10668, 'https://ror.org/03ysemc97', 'de', 1, 'https://ror.org/03ysemc97 Senate Department for Urban Development and the Environment Senatsverwaltung für Stadtentwicklung und Wohnen'),
(10669, 'https://ror.org/01svwxb64', 'no_lang_code', 1, 'https://ror.org/01svwxb64 Rhea (Belgium)'),
(10670, 'https://ror.org/01a7b6660', 'no_lang_code', 1, 'https://ror.org/01a7b6660 Stresstech (Finland)'),
(10671, 'https://ror.org/00kb94k03', 'no_lang_code', 1, 'https://ror.org/00kb94k03 Sensing & Control Systems (Spain)'),
(10672, 'https://ror.org/01dzdzt70', 'no_lang_code', 1, 'https://ror.org/01dzdzt70 SensL (Ireland)'),
(10673, 'https://ror.org/03hj7k055', 'de', 1, 'https://ror.org/03hj7k055 Studiengesellschaft für den Kombinierten Verkehr e.V.'),
(10674, 'https://ror.org/05h8dpx23', 'no_lang_code', 1, 'https://ror.org/05h8dpx23 RWE (Germany) Rheinisch-WestfƤlisches ElektrizitƤtswerk Aktiengesellschaft Rhine-Westfalia Electricity Factory'),
(10675, 'https://ror.org/000714v43', 'no_lang_code', 1, 'https://ror.org/000714v43 Studsvik (Sweden)'),
(10676, 'https://ror.org/01jyh4590', 'no_lang_code', 1, 'https://ror.org/01jyh4590 Solvay (France)'),
(10677, 'https://ror.org/03nn4bh87', 'no_lang_code', 1, 'https://ror.org/03nn4bh87 STX Europe (France)'),
(10678, 'https://ror.org/05nqms590', 'no_lang_code', 1, 'https://ror.org/05nqms590 SENTECH Instruments (Germany)'),
(10679, 'https://ror.org/01mpzhk41', 'no_lang_code', 1, 'https://ror.org/01mpzhk41 Subsea Technologies (United Kingdom)'),
(10680, 'https://ror.org/026jjgn48', 'fr', 1, 'https://ror.org/026jjgn48 Regional Energy and Environment Egency RhƓnalpƩnergie Environnement'),
(10681, 'https://ror.org/01jpp1g73', 'no_lang_code', 1, 'https://ror.org/01jpp1g73 Sulzer (Switzerland)'),
(10682, 'https://ror.org/03yfpyd14', 'no_lang_code', 1, 'https://ror.org/03yfpyd14 Nutrition Sciences (Belgium)'),
(10683, 'https://ror.org/05b0r1408', 'no_lang_code', 1, 'https://ror.org/05b0r1408 RHP Technology (Austria)'),
(10684, 'https://ror.org/01cmxpj21', 'no_lang_code', 1, 'https://ror.org/01cmxpj21 SupraPolix (Netherlands)'),
(10685, 'https://ror.org/01024mn06', 'no_lang_code', 1, 'https://ror.org/01024mn06 Dutch Railways Nederlandse Spoorwegen'),
(10686, 'https://ror.org/050rtva22', 'en', 1, 'https://ror.org/050rtva22 Geological Survey of Sweden Ruotsin geologinen tutkimuslaitos Sveriges geologiska undersƶkning'),
(10687, 'https://ror.org/031v4g827', 'no_lang_code', 1, 'https://ror.org/031v4g827 NXP (Belgium)'),
(10688, 'https://ror.org/0268h4j55', 'no_lang_code', 1, 'https://ror.org/0268h4j55 NXP (Germany)'),
(10689, 'https://ror.org/03j9wjf80', 'no_lang_code', 1, 'https://ror.org/03j9wjf80 Sweco (Norway)'),
(10690, 'https://ror.org/038nrf531', 'no_lang_code', 1, 'https://ror.org/038nrf531 Pininfarina (Italy)'),
(10691, 'https://ror.org/006y04m02', 'no_lang_code', 1, 'https://ror.org/006y04m02 Separex (France)'),
(10692, 'https://ror.org/052x9wz38', 'no_lang_code', 1, 'https://ror.org/052x9wz38 Septentrio (Belgium)'),
(10693, 'https://ror.org/02xb2kd32', 'de', 1, 'https://ror.org/02xb2kd32 OƖ Energiesparverband'),
(10694, 'https://ror.org/000etmf12', 'no_lang_code', 1, 'https://ror.org/000etmf12 Sequans Communications (France)'),
(10695, 'https://ror.org/05r3h7k61', 'en', 1, 'https://ror.org/05r3h7k61 Sustainable Europe Research Institute'),
(10696, 'https://ror.org/0359z7n90', 'en', 1, 'https://ror.org/0359z7n90 Swedish Energy Agency'),
(10697, 'https://ror.org/04kwmb779', 'no_lang_code', 1, 'https://ror.org/04kwmb779 Serious Games Interactive (Denmark)'),
(10698, 'https://ror.org/00dzkep57', 'no_lang_code', 1, 'https://ror.org/00dzkep57 Rijk Zwaan (Netherlands)'),
(10699, 'https://ror.org/039ds3g53', 'no_lang_code', 1, 'https://ror.org/039ds3g53 Oberthur Technologies (France)');
INSERT INTO `rors` VALUES
(10700, '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'),
(10701, 'https://ror.org/04357cf44', 'no_lang_code', 1, 'https://ror.org/04357cf44 ServiceXS (Netherlands)'),
(10702, 'https://ror.org/00fxe2a68', 'en', 1, 'https://ror.org/00fxe2a68 Observa Science in Society'),
(10703, 'https://ror.org/043nqmk58', 'fr', 1, 'https://ror.org/043nqmk58 Neuchâtel Observatory Observatoire Cantonal de Neuchâtel'),
(10704, 'https://ror.org/006h87a74', 'no_lang_code', 1, 'https://ror.org/006h87a74 Veolia (Denmark)'),
(10705, 'https://ror.org/00526y629', 'no_lang_code', 1, 'https://ror.org/00526y629 SES (Luxembourg)'),
(10706, 'https://ror.org/03w8v9a14', 'fr', 1, 'https://ror.org/03w8v9a14 Observatoire des Sciences et des Techniques'),
(10707, 'https://ror.org/04ss55z27', 'fr', 1, 'https://ror.org/04ss55z27 Observatoire des Ʃnergies renouvelables Observatory of renewable energies'),
(10708, 'https://ror.org/03adjb352', 'fr', 1, 'https://ror.org/03adjb352 Observatoire MĆ©diterranĆ©en de l’Energie'),
(10709, 'https://ror.org/0268js065', 'no_lang_code', 1, 'https://ror.org/0268js065 Melissa Food'),
(10710, 'https://ror.org/03nvvdm73', 'no_lang_code', 1, 'https://ror.org/03nvvdm73 Canon (Netherlands)'),
(10711, 'https://ror.org/04etsch95', 'no_lang_code', 1, 'https://ror.org/04etsch95 AFRY (Sweden)'),
(10712, 'https://ror.org/02qfp6t71', 'no_lang_code', 1, 'https://ror.org/02qfp6t71 Rikola (Finland)'),
(10713, 'https://ror.org/0562tzd79', 'no_lang_code', 1, 'https://ror.org/0562tzd79 Rina Services (Italy)'),
(10714, 'https://ror.org/0141avd06', 'no_lang_code', 1, 'https://ror.org/0141avd06 RISA Sicherheitsanalysen'),
(10715, 'https://ror.org/01zje5g50', 'no_lang_code', 1, 'https://ror.org/01zje5g50 Fugro (Norway)'),
(10716, 'https://ror.org/002wx9n23', 'no_lang_code', 1, 'https://ror.org/002wx9n23 Gruppo Riva (Italy)'),
(10717, 'https://ror.org/01fnp9w45', 'no_lang_code', 1, 'https://ror.org/01fnp9w45 Calzoni (Italy)'),
(10718, 'https://ror.org/00hzxcy85', 'no_lang_code', 1, 'https://ror.org/00hzxcy85 Syngenta (Netherlands)'),
(10719, 'https://ror.org/04t1f4f50', 'no_lang_code', 1, 'https://ror.org/04t1f4f50 Swisscom (Switzerland)'),
(10720, 'https://ror.org/005p0t446', 'eu', 1, 'https://ror.org/005p0t446 Institute for Applied Ecology Oeko Institut'),
(10721, 'https://ror.org/018kgyq04', 'no_lang_code', 1, 'https://ror.org/018kgyq04 Roal (Finland)'),
(10722, 'https://ror.org/03avace35', 'no_lang_code', 1, 'https://ror.org/03avace35 Sword Group (Luxembourg)'),
(10723, 'https://ror.org/03jbq7a32', 'en', 1, 'https://ror.org/03jbq7a32 Austrian Federal Railways Ɩsterreichische Bundesbahnen'),
(10724, 'https://ror.org/01x544h30', 'no_lang_code', 1, 'https://ror.org/01x544h30 Roche (Italy)'),
(10725, 'https://ror.org/012jkf693', 'no_lang_code', 1, 'https://ror.org/012jkf693 E.ON Sverige (Sweden)'),
(10726, 'https://ror.org/02gk0vj45', 'no_lang_code', 1, 'https://ror.org/02gk0vj45 Rockfield (United Kingdom)'),
(10727, 'https://ror.org/0199x1096', 'en', 1, 'https://ror.org/0199x1096 Shipbuilders & Shiprepairers Association'),
(10728, 'https://ror.org/034bs1q12', 'no_lang_code', 1, 'https://ror.org/034bs1q12 Rodan Development (Poland)'),
(10729, 'https://ror.org/00b06wh69', 'no_lang_code', 1, 'https://ror.org/00b06wh69 Austrian Broadcasting Ɩsterreichischer Rundfunk'),
(10730, 'https://ror.org/035jeda71', 'no_lang_code', 1, 'https://ror.org/035jeda71 Rofin (Germany)'),
(10731, 'https://ror.org/048j11q41', 'no_lang_code', 1, 'https://ror.org/048j11q41 Rohde & Schwarz (Germany)'),
(10732, 'https://ror.org/011sk7b78', 'no_lang_code', 1, 'https://ror.org/011sk7b78 Smart High Tech (Sweden)'),
(10733, 'https://ror.org/04zwgxj11', 'de', 1, 'https://ror.org/04zwgxj11 Ɩsterreichisches Forschungsinstitut für Chemie und Technik'),
(10734, 'https://ror.org/055ef6019', 'no_lang_code', 1, 'https://ror.org/055ef6019 Rolls-Royce (Sweden)'),
(10735, 'https://ror.org/04fnnnw43', 'no_lang_code', 1, 'https://ror.org/04fnnnw43 Sistemi Innovativi per Il Controllo del Traffico Aereo'),
(10736, 'https://ror.org/030a5js80', 'no_lang_code', 1, 'https://ror.org/030a5js80 Siegert Electronic (Germany)'),
(10737, 'https://ror.org/01gkt5r55', 'no_lang_code', 1, 'https://ror.org/01gkt5r55 Ropardo (Romania)'),
(10738, 'https://ror.org/03794w632', 'no_lang_code', 1, 'https://ror.org/03794w632 Siemens (Austria)'),
(10739, 'https://ror.org/01n0jwg88', 'no_lang_code', 1, 'https://ror.org/01n0jwg88 Synapse (Spain)'),
(10740, 'https://ror.org/003eebv14', 'no_lang_code', 1, 'https://ror.org/003eebv14 Sylics (Netherlands)'),
(10741, 'https://ror.org/05e6jng70', 'en', 1, 'https://ror.org/05e6jng70 Office National de l''Eau Potable'),
(10742, 'https://ror.org/04nd0kv93', 'no_lang_code', 1, 'https://ror.org/04nd0kv93 Roughan & O''Donovan Innovative Solutions'),
(10743, 'https://ror.org/030s5c086', 'no_lang_code', 1, 'https://ror.org/030s5c086 syncom'),
(10744, 'https://ror.org/006kghv09', 'no_lang_code', 1, 'https://ror.org/006kghv09 Synergie Informatique'),
(10745, 'https://ror.org/0521fzc39', 'no_lang_code', 1, 'https://ror.org/0521fzc39 Atos (Germany)'),
(10746, 'https://ror.org/00fgrt128', 'no_lang_code', 1, 'https://ror.org/00fgrt128 synergo'),
(10747, 'https://ror.org/02t31fs67', 'en', 1, 'https://ror.org/02t31fs67 Office of the Prime Minister of Malta Primo Ministro di Malta'),
(10748, 'https://ror.org/04f6ygk28', 'no_lang_code', 1, 'https://ror.org/04f6ygk28 Siemens (Italy)'),
(10749, 'https://ror.org/05rn4h878', 'no_lang_code', 1, 'https://ror.org/05rn4h878 Siemens (Spain)'),
(10750, 'https://ror.org/00sexkk33', 'no_lang_code', 1, 'https://ror.org/00sexkk33 Siemens (Romania)'),
(10751, 'https://ror.org/04gbv0x41', 'it', 1, 'https://ror.org/04gbv0x41 Synesis'),
(10752, 'https://ror.org/000bdn450', 'no_lang_code', 1, 'https://ror.org/000bdn450 Syngenta (United Kingdom)'),
(10753, 'https://ror.org/0240jmg04', 'no_lang_code', 1, 'https://ror.org/0240jmg04 Olink Bioscience (Sweden)'),
(10754, 'https://ror.org/00k67dg75', 'no_lang_code', 1, 'https://ror.org/00k67dg75 RTC North (United Kingdom)'),
(10755, 'https://ror.org/02rrff887', 'no_lang_code', 1, 'https://ror.org/02rrff887 Synovo (Germany)'),
(10756, 'https://ror.org/05mgm0j54', 'no_lang_code', 1, 'https://ror.org/05mgm0j54 RTD Talos (Cyprus)'),
(10757, 'https://ror.org/04q9w3z30', 'no_lang_code', 1, 'https://ror.org/04q9w3z30 Siemens (France)'),
(10758, 'https://ror.org/01wffm716', 'no_lang_code', 1, 'https://ror.org/01wffm716 Rübig (Austria)'),
(10759, 'https://ror.org/05kxkhq65', 'no_lang_code', 1, 'https://ror.org/05kxkhq65 Syntax (Italy)'),
(10760, 'https://ror.org/02mnzkw65', 'no_lang_code', 1, 'https://ror.org/02mnzkw65 Synthema (Italy)'),
(10761, 'https://ror.org/03wepve87', 'de', 1, 'https://ror.org/03wepve87 Berlin-Brandenburg Broadcasting Rundfunk Berlin-Brandenburg'),
(10762, 'https://ror.org/031xjr712', 'no_lang_code', 1, 'https://ror.org/031xjr712 Thales (Germany)'),
(10763, 'https://ror.org/02ka1d450', 'no_lang_code', 1, 'https://ror.org/02ka1d450 Siena Biotech (Italy)'),
(10764, 'https://ror.org/000yp3j43', 'no_lang_code', 1, 'https://ror.org/000yp3j43 Rupprecht Consult - Forschung & Beratung'),
(10765, 'https://ror.org/02twk3504', 'no_lang_code', 1, 'https://ror.org/02twk3504 GF Machining Solutions (Sweden)'),
(10766, 'https://ror.org/02c4z1521', 'no_lang_code', 1, 'https://ror.org/02c4z1521 Sigint Solutions (Cyprus)'),
(10767, 'https://ror.org/04gf6zh40', 'no_lang_code', 1, 'https://ror.org/04gf6zh40 System Simulation (United Kingdom)'),
(10768, 'https://ror.org/006gxgq80', 'no_lang_code', 1, 'https://ror.org/006gxgq80 Omniform (Belgium)'),
(10769, 'https://ror.org/04tpvq080', 'en', 1, 'https://ror.org/04tpvq080 Russian Technology Transfer Network'),
(10770, 'https://ror.org/01fv2rv38', 'no_lang_code', 1, 'https://ror.org/01fv2rv38 Sigma Orionis (France)'),
(10771, 'https://ror.org/0013dsy11', 'no_lang_code', 1, 'https://ror.org/0013dsy11 RWTÜV (Germany) Rheinisch-Westfälische Technische Überwachungsverein'),
(10772, 'https://ror.org/03kpxfs84', 'en', 1, 'https://ror.org/03kpxfs84 Systema Transport Planning & Engineering Consultants'),
(10773, 'https://ror.org/03ce0x006', 'no_lang_code', 1, 'https://ror.org/03ce0x006 RWP (Germany)'),
(10774, 'https://ror.org/021ztkr23', 'no_lang_code', 1, 'https://ror.org/021ztkr23 Synopsys (Germany)'),
(10775, 'https://ror.org/00xctsq42', 'no_lang_code', 1, 'https://ror.org/00xctsq42 ONA Electroerosion (Spain)'),
(10776, 'https://ror.org/01mff3b34', 'no_lang_code', 1, 'https://ror.org/01mff3b34 Sigmoid Pharma (Ireland)'),
(10777, 'https://ror.org/050gb7v09', 'no_lang_code', 1, 'https://ror.org/050gb7v09 Groupe Cahors (France)'),
(10778, 'https://ror.org/043rcha86', 'no_lang_code', 1, 'https://ror.org/043rcha86 SignalGeneriX (Cyprus)'),
(10779, 'https://ror.org/01qkn1y38', 'no_lang_code', 1, 'https://ror.org/01qkn1y38 Deutsche Telekom (Spain)'),
(10780, 'https://ror.org/03n3c6k39', 'no_lang_code', 1, 'https://ror.org/03n3c6k39 SATA Application Advanced Technologies (Italy)'),
(10781, 'https://ror.org/03x8kjj16', 'no_lang_code', 1, 'https://ror.org/03x8kjj16 Signosis'),
(10782, 'https://ror.org/05syweh23', 'no_lang_code', 1, 'https://ror.org/05syweh23 Semafora Systems (Germany)'),
(10783, 'https://ror.org/0376xx786', 'no_lang_code', 1, 'https://ror.org/0376xx786 Kalashnikov Group (Russia) акционерное общество Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ оптический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”.И.Вавилова'),
(10784, 'https://ror.org/05rasm086', 'no_lang_code', 1, 'https://ror.org/05rasm086 T4tech (Italy)'),
(10785, 'https://ror.org/02p3cs867', 'no_lang_code', 1, 'https://ror.org/02p3cs867 T6 (Italy)'),
(10786, 'https://ror.org/00b8kjk28', 'no_lang_code', 1, 'https://ror.org/00b8kjk28 Praxis'),
(10787, 'https://ror.org/05vq5je50', 'nl', 1, 'https://ror.org/05vq5je50 East Netherlands Development Agency Ontwikkelingsmaatschappij Oost Nederland'),
(10788, 'https://ror.org/02wqw9g56', 'en', 1, 'https://ror.org/02wqw9g56 Science Centre AHHAA'),
(10789, 'https://ror.org/02v26hv54', 'no_lang_code', 1, 'https://ror.org/02v26hv54 Imerys (Germany)'),
(10790, 'https://ror.org/050c2ya64', 'no_lang_code', 1, 'https://ror.org/050c2ya64 Imerys (Greece)'),
(10791, 'https://ror.org/03sqxy896', 'no_lang_code', 1, 'https://ror.org/03sqxy896 OpenLink Software (United Kingdom)'),
(10792, 'https://ror.org/05kc7vw19', 'no_lang_code', 1, 'https://ror.org/05kc7vw19 SociƩtƩs Anonyme Belge de Constructions AƩronautiques (Belgium)'),
(10793, 'https://ror.org/00maqzy82', 'no_lang_code', 1, 'https://ror.org/00maqzy82 Sika (Switzerland)'),
(10794, 'https://ror.org/00mkc7476', 'no_lang_code', 1, 'https://ror.org/00mkc7476 Targeting Innovation'),
(10795, 'https://ror.org/02azz6x90', 'en', 1, 'https://ror.org/02azz6x90 Institute of Theoretical and Applied Mechanics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø приклаГной механики им. Š”.А. Єристиановича Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(10796, 'https://ror.org/02th50f93', 'no_lang_code', 1, 'https://ror.org/02th50f93 Akka Technologies (France)'),
(10797, 'https://ror.org/01f2jad04', 'no_lang_code', 1, 'https://ror.org/01f2jad04 Saarstahl (Germany)'),
(10798, 'https://ror.org/03x8wy758', 'no_lang_code', 1, 'https://ror.org/03x8wy758 Tataa Biocenter (Sweden)'),
(10799, 'https://ror.org/05fg03x56', 'no_lang_code', 1, 'https://ror.org/05fg03x56 Optibase (Israel)'),
(10800, 'https://ror.org/04rzw7a06', 'en', 1, 'https://ror.org/04rzw7a06 Tavistock Institute'),
(10801, 'https://ror.org/00ansy136', 'no_lang_code', 1, 'https://ror.org/00ansy136 Saaten Union (Germany)'),
(10802, 'https://ror.org/03gcqsh22', 'no_lang_code', 1, 'https://ror.org/03gcqsh22 SinapTec (France)'),
(10803, 'https://ror.org/00q1rsz50', 'no_lang_code', 1, 'https://ror.org/00q1rsz50 Optimat (United Kingdom)'),
(10804, 'https://ror.org/00kt61z96', 'no_lang_code', 1, 'https://ror.org/00kt61z96 Optoelectronica-2001 (Romania)'),
(10805, 'https://ror.org/04vbenz24', 'de', 1, 'https://ror.org/04vbenz24 SƤchsisches Textilforschungsinstitut'),
(10806, 'https://ror.org/00zrv0342', 'no_lang_code', 1, 'https://ror.org/00zrv0342 Sinergis (Italy)'),
(10807, 'https://ror.org/05dt0hn88', 'no_lang_code', 1, 'https://ror.org/05dt0hn88 Orange (Poland)'),
(10808, 'https://ror.org/020e1a811', 'no_lang_code', 1, 'https://ror.org/020e1a811 SAES Group (Italy)'),
(10809, 'https://ror.org/056h3fs04', 'no_lang_code', 1, 'https://ror.org/056h3fs04 Orbsen Therapeutics (Ireland)'),
(10810, 'https://ror.org/00zfw3j31', 'en', 1, 'https://ror.org/00zfw3j31 Singleimage'),
(10811, 'https://ror.org/03aq8ma66', 'no_lang_code', 1, 'https://ror.org/03aq8ma66 SEMA (Germany)'),
(10812, 'https://ror.org/05vf2js71', 'no_lang_code', 1, 'https://ror.org/05vf2js71 Brookes Bell (United Kingdom)'),
(10813, 'https://ror.org/00z299818', 'no_lang_code', 1, 'https://ror.org/00z299818 Vinci (United Kingdom)'),
(10814, 'https://ror.org/028k9m233', 'no_lang_code', 1, 'https://ror.org/028k9m233 Safibra (Czechia)'),
(10815, 'https://ror.org/053k6j340', 'no_lang_code', 1, 'https://ror.org/053k6j340 Organic Waste Systems (Belgium)'),
(10816, 'https://ror.org/02wt3dg04', 'no_lang_code', 1, 'https://ror.org/02wt3dg04 Safinah (United Kingdom)'),
(10817, 'https://ror.org/01sa7d916', 'no_lang_code', 1, 'https://ror.org/01sa7d916 Altium''s (Netherlands)'),
(10818, 'https://ror.org/031c2y549', 'no_lang_code', 1, 'https://ror.org/031c2y549 TƁRKI Social Research Institute'),
(10819, 'https://ror.org/05546tk27', 'no_lang_code', 1, 'https://ror.org/05546tk27 Teamnet (Romania)'),
(10820, 'https://ror.org/01kydft86', 'no_lang_code', 1, 'https://ror.org/01kydft86 Teamwork Technology (Netherlands)'),
(10821, 'https://ror.org/012nb8s32', 'no_lang_code', 1, 'https://ror.org/012nb8s32 GKN (Germany)'),
(10822, 'https://ror.org/01d9zj202', 'no_lang_code', 1, 'https://ror.org/01d9zj202 Tech4i2'),
(10823, 'https://ror.org/033ym9x13', 'no_lang_code', 1, 'https://ror.org/033ym9x13 Technaid (Spain)'),
(10824, 'https://ror.org/01drcxb91', 'no_lang_code', 1, 'https://ror.org/01drcxb91 Sirma Group (Bulgaria)'),
(10825, 'https://ror.org/00aakch57', 'no_lang_code', 1, 'https://ror.org/00aakch57 Terres OlƩoPro (France)'),
(10826, 'https://ror.org/00fey2y98', 'no_lang_code', 1, 'https://ror.org/00fey2y98 Technical Software Consulting'),
(10827, 'https://ror.org/013fdsd98', 'no_lang_code', 1, 'https://ror.org/013fdsd98 Sirti (Italy)'),
(10828, 'https://ror.org/01pnrv279', 'hu', 1, 'https://ror.org/01pnrv279 Orszagos Kornyezetegeszsegugyi Intezet'),
(10829, 'https://ror.org/03jj9fg49', 'no_lang_code', 1, 'https://ror.org/03jj9fg49 Technical Support for European Organisations'),
(10830, 'https://ror.org/02e10zk80', 'en', 1, 'https://ror.org/02e10zk80 ORT France'),
(10831, 'https://ror.org/00zbvyk98', 'no_lang_code', 1, 'https://ror.org/00zbvyk98 TIE Kinetix (Netherlands)'),
(10832, 'https://ror.org/04a197k40', 'no_lang_code', 1, 'https://ror.org/04a197k40 ODTÜ Teknokent (Turkey)'),
(10833, 'https://ror.org/041ceep81', 'pt', 1, 'https://ror.org/041ceep81 Sindicato dos Trabalhadores de Escritório'),
(10834, 'https://ror.org/01rgnfy66', 'fi', 1, 'https://ror.org/01rgnfy66 Heureka'),
(10835, 'https://ror.org/00td3ns83', 'no_lang_code', 1, 'https://ror.org/00td3ns83 SIVECO (Romania)'),
(10836, 'https://ror.org/03jcesj83', 'no_lang_code', 1, 'https://ror.org/03jcesj83 Tilde (Latvia)'),
(10837, 'https://ror.org/03yhymv35', 'no_lang_code', 1, 'https://ror.org/03yhymv35 Timber Research and Development Association (United Kingdom)'),
(10838, 'https://ror.org/01y13ze91', 'no_lang_code', 1, 'https://ror.org/01y13ze91 SKF (Netherlands)'),
(10839, 'https://ror.org/02ktw6q65', 'no_lang_code', 1, 'https://ror.org/02ktw6q65 Technobiochip (Italy)'),
(10840, 'https://ror.org/04ytjxd97', 'fr', 1, 'https://ror.org/04ytjxd97 Technofi'),
(10841, 'https://ror.org/05b88kk95', 'no_lang_code', 1, 'https://ror.org/05b88kk95 Imerys (Switzerland)'),
(10842, 'https://ror.org/02tts0b67', 'no_lang_code', 1, 'https://ror.org/02tts0b67 Sandvik (United Kingdom)'),
(10843, 'https://ror.org/00wy5qj82', 'no_lang_code', 1, 'https://ror.org/00wy5qj82 Skytek (Ireland)'),
(10844, 'https://ror.org/02677w923', 'no_lang_code', 1, 'https://ror.org/02677w923 Slot Consulting'),
(10845, 'https://ror.org/01mr3bk23', 'no_lang_code', 1, 'https://ror.org/01mr3bk23 Transportes Inovação e Sistemas (Portugal)'),
(10846, 'https://ror.org/01c0x3431', 'no_lang_code', 1, 'https://ror.org/01c0x3431 OSRAM (Germany)'),
(10847, 'https://ror.org/01egf3y42', 'no_lang_code', 1, 'https://ror.org/01egf3y42 Technikon (Austria)'),
(10848, 'https://ror.org/01qd5ms12', 'no_lang_code', 1, 'https://ror.org/01qd5ms12 Titan Cement (Greece) ĪŒĪ¼Ī¹Ī»ĪæĻ‚ Ī¤ĻƒĪ¹Ī¼Ī­Ī½Ļ„Ļ‰Ī½ Τιτάν'),
(10849, 'https://ror.org/03rgbdq68', 'en', 1, 'https://ror.org/03rgbdq68 Slovak Organization for Research and Development Activities'),
(10850, 'https://ror.org/01k9hhd91', 'no_lang_code', 1, 'https://ror.org/01k9hhd91 TÜV SÜD (Germany)'),
(10851, 'https://ror.org/00fbze943', 'en', 1, 'https://ror.org/00fbze943 Arcetri Astrophysical Observatory Osservatorio Astrofisico di Arcetri'),
(10852, 'https://ror.org/04bjr3r43', 'no_lang_code', 1, 'https://ror.org/04bjr3r43 TÜV (Austria)'),
(10853, 'https://ror.org/030c4y728', 'sl', 1, 'https://ror.org/030c4y728 Construction Cluster of Slovenia Slovenski Gradbeni Grozd'),
(10854, 'https://ror.org/026meq292', 'no_lang_code', 1, 'https://ror.org/026meq292 Ɩssur (Iceland)'),
(10855, 'https://ror.org/05jfpn078', 'no_lang_code', 1, 'https://ror.org/05jfpn078 Türk Otomobil Fabrikası (Turkey)'),
(10856, 'https://ror.org/01wpzjj95', 'no_lang_code', 1, 'https://ror.org/01wpzjj95 Tofwerk (Switzerland)'),
(10857, 'https://ror.org/00d34nb45', 'no_lang_code', 1, 'https://ror.org/00d34nb45 Technology Application Network (United Kingdom)'),
(10858, 'https://ror.org/04d8haw14', 'no_lang_code', 1, 'https://ror.org/04d8haw14 SMA Solar Technology (Germany)'),
(10859, 'https://ror.org/01pjwgv56', 'no_lang_code', 1, 'https://ror.org/01pjwgv56 Smart Material (Germany)'),
(10860, 'https://ror.org/04tcsp154', 'no_lang_code', 1, 'https://ror.org/04tcsp154 Technology Transfer System (Italy)'),
(10861, 'https://ror.org/04as6y835', 'no_lang_code', 1, 'https://ror.org/04as6y835 TomTom (Netherlands)'),
(10862, 'https://ror.org/05d021z60', 'no_lang_code', 1, 'https://ror.org/05d021z60 Technolution (Netherlands)'),
(10863, 'https://ror.org/017m81f09', 'no_lang_code', 1, 'https://ror.org/017m81f09 Technopolis'),
(10864, 'https://ror.org/00233x252', 'no_lang_code', 1, 'https://ror.org/00233x252 Qiagen (Denmark)'),
(10865, 'https://ror.org/05xy3es97', 'no_lang_code', 1, 'https://ror.org/05xy3es97 Organizzazione Sviluppo Vendite'),
(10866, 'https://ror.org/011wwxv17', 'no_lang_code', 1, 'https://ror.org/011wwxv17 TopGaN (Poland)'),
(10867, 'https://ror.org/019nbqv12', 'no_lang_code', 1, 'https://ror.org/019nbqv12 Technosam (Romania)'),
(10868, 'https://ror.org/02k2bzx75', 'no_lang_code', 1, 'https://ror.org/02k2bzx75 Smartex (Italy)'),
(10869, 'https://ror.org/00t9ms296', 'no_lang_code', 1, 'https://ror.org/00t9ms296 Toptica Photonics (Germany)'),
(10870, 'https://ror.org/007tnc411', 'no_lang_code', 1, 'https://ror.org/007tnc411 Ottobock (Germany)'),
(10871, 'https://ror.org/020tnvw92', 'no_lang_code', 1, 'https://ror.org/020tnvw92 Safran (Belgium)'),
(10872, 'https://ror.org/05tqewv36', 'no_lang_code', 1, 'https://ror.org/05tqewv36 Tecnaro (Germany)'),
(10873, 'https://ror.org/0049h1m27', 'no_lang_code', 1, 'https://ror.org/0049h1m27 Otto Group (Germany)'),
(10874, 'https://ror.org/028nv1219', 'no_lang_code', 1, 'https://ror.org/028nv1219 Tecnitest (Spain)'),
(10875, 'https://ror.org/04ej2a140', 'no_lang_code', 1, 'https://ror.org/04ej2a140 Tecnologia Energia Ambiente Materiali (Italy)'),
(10876, 'https://ror.org/01ffb7n67', 'no_lang_code', 1, 'https://ror.org/01ffb7n67 Outokumpu (Finland)'),
(10877, 'https://ror.org/00a17cp45', 'no_lang_code', 1, 'https://ror.org/00a17cp45 TecnologĆ­a Navarra de Nanoproductos (Spain)'),
(10878, 'https://ror.org/0048c7h22', 'no_lang_code', 1, 'https://ror.org/0048c7h22 Tecnologƭas Servicios TelemƔticos y Sistemas'),
(10879, 'https://ror.org/032mp1e77', 'no_lang_code', 1, 'https://ror.org/032mp1e77 Total (Belgium)'),
(10880, 'https://ror.org/057d3rj91', 'no_lang_code', 1, 'https://ror.org/057d3rj91 Arup Group (United Kingdom)'),
(10881, 'https://ror.org/003pqgx54', 'no_lang_code', 1, 'https://ror.org/003pqgx54 SMR Engineering and Development (Switzerland)'),
(10882, 'https://ror.org/00ah8d329', 'no_lang_code', 1, 'https://ror.org/00ah8d329 Oxford Computer Consultants (United Kingdom)'),
(10883, 'https://ror.org/042n14286', 'it', 1, 'https://ror.org/042n14286 InnovaPuglia'),
(10884, 'https://ror.org/05wgmk856', 'no_lang_code', 1, 'https://ror.org/05wgmk856 Oxley (United Kingdom)'),
(10885, 'https://ror.org/021k09d21', 'no_lang_code', 1, 'https://ror.org/021k09d21 Ajat (Finland)'),
(10886, 'https://ror.org/009n2kd47', 'no_lang_code', 1, 'https://ror.org/009n2kd47 Toulon Var Technologies (France)'),
(10887, 'https://ror.org/05eermw75', 'no_lang_code', 1, 'https://ror.org/05eermw75 Arbonaut (Finland)'),
(10888, 'https://ror.org/03kekxj46', 'no_lang_code', 1, 'https://ror.org/03kekxj46 Wallwork (United Kingdom)'),
(10889, 'https://ror.org/04vedy547', 'no_lang_code', 1, 'https://ror.org/04vedy547 Tp21 (Germany)'),
(10890, 'https://ror.org/042y8fp68', 'no_lang_code', 1, 'https://ror.org/042y8fp68 Tekever (Portugal)'),
(10891, 'https://ror.org/02x5exm81', 'no_lang_code', 1, 'https://ror.org/02x5exm81 E.ON (France)'),
(10892, 'https://ror.org/04vv43q89', 'no_lang_code', 1, 'https://ror.org/04vv43q89 Ericsson (Finland)'),
(10893, 'https://ror.org/01faxnv78', 'no_lang_code', 1, 'https://ror.org/01faxnv78 Tractebel Engineering (Belgium)'),
(10894, 'https://ror.org/016v0dh58', 'no_lang_code', 1, 'https://ror.org/016v0dh58 Teks (France)'),
(10895, 'https://ror.org/028xy2x79', 'no_lang_code', 1, 'https://ror.org/028xy2x79 Belden (United Kingdom)'),
(10896, 'https://ror.org/03frscd72', 'no_lang_code', 1, 'https://ror.org/03frscd72 Trama TecnoAmbiental (Spain)'),
(10897, 'https://ror.org/024kx0v68', 'no_lang_code', 1, 'https://ror.org/024kx0v68 Seat (Spain) Sociedad Española de Automóviles de Turismo'),
(10898, 'https://ror.org/02ecdct80', 'no_lang_code', 1, 'https://ror.org/02ecdct80 Transferzentrum Mikroelektronik (Germany)'),
(10899, 'https://ror.org/055rkqx35', 'no_lang_code', 1, 'https://ror.org/055rkqx35 Packed (Belgium)'),
(10900, 'https://ror.org/00kn9sz43', 'no_lang_code', 1, 'https://ror.org/00kn9sz43 TransFurans Chemicals (Belgium)'),
(10901, 'https://ror.org/032x1ws79', 'en', 1, 'https://ror.org/032x1ws79 Telecommunication Systems Research Institute'),
(10902, 'https://ror.org/0348jrz13', 'no_lang_code', 1, 'https://ror.org/0348jrz13 TDC (Denmark)'),
(10903, 'https://ror.org/05hcs6w28', 'no_lang_code', 1, 'https://ror.org/05hcs6w28 Transman Consulting for Transport System Management'),
(10904, 'https://ror.org/00pp54p18', 'no_lang_code', 1, 'https://ror.org/00pp54p18 Transport & Mobility Leuven (Belgium)'),
(10905, 'https://ror.org/02zqmy106', 'no_lang_code', 1, 'https://ror.org/02zqmy106 Transport & Travel Research (United Kingdom)'),
(10906, 'https://ror.org/01866as23', 'no_lang_code', 1, 'https://ror.org/01866as23 TDF (France)'),
(10907, 'https://ror.org/05bvn1m61', 'no_lang_code', 1, 'https://ror.org/05bvn1m61 Avaya (Germany)'),
(10908, 'https://ror.org/04cmhn872', 'no_lang_code', 1, 'https://ror.org/04cmhn872 Sociedade Portuguesa de Inovação'),
(10909, 'https://ror.org/05q43r729', 'no_lang_code', 1, 'https://ror.org/05q43r729 Swarco (Germany)'),
(10910, 'https://ror.org/00aj26w03', 'en', 1, 'https://ror.org/00aj26w03 Paint Research Association'),
(10911, 'https://ror.org/009v14c36', 'no_lang_code', 1, 'https://ror.org/009v14c36 Ferioli & Gianotti (Italy)'),
(10912, 'https://ror.org/05f6pr134', 'no_lang_code', 1, 'https://ror.org/05f6pr134 TeliaSonera (Finland)'),
(10913, 'https://ror.org/050ntep05', 'no_lang_code', 1, 'https://ror.org/050ntep05 Saet (Italy)'),
(10914, 'https://ror.org/000en4h24', 'no_lang_code', 1, 'https://ror.org/000en4h24 Panasonic (Germany)'),
(10915, 'https://ror.org/05eq90j91', 'no_lang_code', 1, 'https://ror.org/05eq90j91 SocietĆ  Generale d''Informatica Sogei (Italy)'),
(10916, 'https://ror.org/03bbgsb46', 'it', 1, 'https://ror.org/03bbgsb46 SocietĆ  Italiana di Fisica'),
(10917, 'https://ror.org/05hfcd350', 'no_lang_code', 1, 'https://ror.org/05hfcd350 Pall Corporation (Germany)'),
(10918, 'https://ror.org/02hkzpe56', 'no_lang_code', 1, 'https://ror.org/02hkzpe56 Telekom Austria'),
(10919, 'https://ror.org/04fqsa740', 'no_lang_code', 1, 'https://ror.org/04fqsa740 Warrant Hub (Italy)'),
(10920, 'https://ror.org/05bdzte56', 'no_lang_code', 1, 'https://ror.org/05bdzte56 Issy Media (France)'),
(10921, 'https://ror.org/023kvjk64', 'no_lang_code', 1, 'https://ror.org/023kvjk64 WƤrtsilƤ (Switzerland)'),
(10922, 'https://ror.org/015fpqf51', 'no_lang_code', 1, 'https://ror.org/015fpqf51 Warrington Certification (United Kingdom)'),
(10923, 'https://ror.org/0100csr53', 'no_lang_code', 1, 'https://ror.org/0100csr53 Watchfrog (France)'),
(10924, 'https://ror.org/025rqhb96', 'no_lang_code', 1, 'https://ror.org/025rqhb96 Teleport Sachsen-Anhalt'),
(10925, 'https://ror.org/00rbe9q66', 'no_lang_code', 1, 'https://ror.org/00rbe9q66 TriaGnoSys (Germany)'),
(10926, 'https://ror.org/00w437z14', 'no_lang_code', 1, 'https://ror.org/00w437z14 Water Insight (Netherlands)'),
(10927, 'https://ror.org/027xpc035', 'no_lang_code', 1, 'https://ror.org/027xpc035 Trialog (France)'),
(10928, 'https://ror.org/04c4h8s17', 'fr', 1, 'https://ror.org/04c4h8s17 SociƩtƩ du Canal de Provence'),
(10929, 'https://ror.org/01hng0h35', 'no_lang_code', 1, 'https://ror.org/01hng0h35 Teletel (Greece)'),
(10930, 'https://ror.org/03zaca395', 'no_lang_code', 1, 'https://ror.org/03zaca395 Gorge Group (France)'),
(10931, 'https://ror.org/05tqy0n53', 'no_lang_code', 1, 'https://ror.org/05tqy0n53 TeliaSonera (Sweden)'),
(10932, 'https://ror.org/019tk8j65', 'no_lang_code', 1, 'https://ror.org/019tk8j65 Triphase (Belgium)'),
(10933, 'https://ror.org/00s9rks70', 'no_lang_code', 1, 'https://ror.org/00s9rks70 Telmat (France)'),
(10934, 'https://ror.org/02f8s1297', 'no_lang_code', 1, 'https://ror.org/02f8s1297 Triplan (Italy)'),
(10935, 'https://ror.org/01xby9e36', 'no_lang_code', 1, 'https://ror.org/01xby9e36 Webraska (France)'),
(10936, 'https://ror.org/03aa6g490', 'no_lang_code', 1, 'https://ror.org/03aa6g490 Wellness Telecom (Spain)'),
(10937, 'https://ror.org/04kz2nv03', 'fr', 1, 'https://ror.org/04kz2nv03 SociƩtƩ FranƧaise de CƩramique'),
(10938, 'https://ror.org/02w2r5196', 'no_lang_code', 1, 'https://ror.org/02w2r5196 Triqua (Netherlands)'),
(10939, 'https://ror.org/01thz0w07', 'en', 1, 'https://ror.org/01thz0w07 Wessex Institute of Technology'),
(10940, 'https://ror.org/018d8dx68', 'no_lang_code', 1, 'https://ror.org/018d8dx68 Tritecc (Romania)'),
(10941, 'https://ror.org/00535yn06', 'no_lang_code', 1, 'https://ror.org/00535yn06 Telscom (Switzerland)'),
(10942, 'https://ror.org/02azra733', 'no_lang_code', 1, 'https://ror.org/02azra733 Triumph Adler (Germany)'),
(10943, 'https://ror.org/05cb44d17', 'no_lang_code', 1, 'https://ror.org/05cb44d17 Trivector (Sweden)'),
(10944, 'https://ror.org/01wan7431', 'no_lang_code', 1, 'https://ror.org/01wan7431 Schneider Electric (Spain)'),
(10945, 'https://ror.org/05kfq2558', 'no_lang_code', 1, 'https://ror.org/05kfq2558 Sonaca (Belgium)'),
(10946, 'https://ror.org/03m9gpr25', 'no_lang_code', 1, 'https://ror.org/03m9gpr25 Schlumberger (Norway)'),
(10947, 'https://ror.org/01je1cm35', 'en', 1, 'https://ror.org/01je1cm35 Sofia Energy Centre'),
(10948, 'https://ror.org/023phzf28', 'no_lang_code', 1, 'https://ror.org/023phzf28 Technology and Management Services (Switzerland)'),
(10949, 'https://ror.org/02zc9ks44', 'no_lang_code', 1, 'https://ror.org/02zc9ks44 Temis (France)'),
(10950, 'https://ror.org/00awqjx60', 'no_lang_code', 1, 'https://ror.org/00awqjx60 Softeam Cadextan'),
(10951, 'https://ror.org/02f1baf17', 'no_lang_code', 1, 'https://ror.org/02f1baf17 Softeco Sismat (Italy)'),
(10952, 'https://ror.org/04p7ekn23', 'de', 1, 'https://ror.org/04p7ekn23 WestfƤlische Hochschule'),
(10953, 'https://ror.org/004g36n56', 'no_lang_code', 1, 'https://ror.org/004g36n56 Software (Germany)'),
(10954, 'https://ror.org/02ethns06', 'no_lang_code', 1, 'https://ror.org/02ethns06 Software (Spain)'),
(10955, 'https://ror.org/027thnp44', 'en', 1, 'https://ror.org/027thnp44 Trust IT Services'),
(10956, 'https://ror.org/013nb7b55', 'no_lang_code', 1, 'https://ror.org/013nb7b55 Terna (Italy)'),
(10957, 'https://ror.org/00x2yxc55', 'no_lang_code', 1, 'https://ror.org/00x2yxc55 Artelia (France)'),
(10958, 'https://ror.org/04mybzy26', 'en', 1, 'https://ror.org/04mybzy26 Vienna Institute for International Economic Studies Wiener Institut für Internationale Wirtschaftsvergleiche'),
(10959, 'https://ror.org/01f9mc681', 'en', 1, 'https://ror.org/01f9mc681 Vienna Science and Technology Fund Wiener Wissenschafts Forschungs und Technologiefonds'),
(10960, 'https://ror.org/01r2j1v82', 'en', 1, 'https://ror.org/01r2j1v82 Ministry of State MinistĆØre d''Ɖtat'),
(10961, 'https://ror.org/004gvby26', 'no_lang_code', 1, 'https://ror.org/004gvby26 Solaronix (Switzerland)'),
(10962, 'https://ror.org/02j8awh30', 'no_lang_code', 1, 'https://ror.org/02j8awh30 TRW Automotive (Germany)'),
(10963, 'https://ror.org/02f88nb31', 'no_lang_code', 1, 'https://ror.org/02f88nb31 SolarPrint (Ireland)'),
(10964, 'https://ror.org/01txptp23', 'no_lang_code', 1, 'https://ror.org/01txptp23 Solartec (Czechia)'),
(10965, 'https://ror.org/03vaffn20', 'no_lang_code', 1, 'https://ror.org/03vaffn20 TTI (Spain)'),
(10966, 'https://ror.org/0057wrw58', 'no_lang_code', 1, 'https://ror.org/0057wrw58 Solintel (Spain)'),
(10967, 'https://ror.org/04jjzrj83', 'no_lang_code', 1, 'https://ror.org/04jjzrj83 TTTech Computertechnik (Austria)'),
(10968, 'https://ror.org/0109ptn93', 'no_lang_code', 1, 'https://ror.org/0109ptn93 TES Electronic Solutions (Germany)'),
(10969, 'https://ror.org/044ggvg47', 'no_lang_code', 1, 'https://ror.org/044ggvg47 Testaluna'),
(10970, 'https://ror.org/003s1y583', 'no_lang_code', 1, 'https://ror.org/003s1y583 Saphyrion (Switzerland)'),
(10971, 'https://ror.org/03xkhb205', 'no_lang_code', 1, 'https://ror.org/03xkhb205 Soltech (Belgium)'),
(10972, 'https://ror.org/022j8kh09', 'no_lang_code', 1, 'https://ror.org/022j8kh09 TetraPlan'),
(10973, 'https://ror.org/05w0e5x87', 'no_lang_code', 1, 'https://ror.org/05w0e5x87 TecnologĆ­as para la Salud y el Bienestar (Spain)'),
(10974, 'https://ror.org/05accys62', 'no_lang_code', 1, 'https://ror.org/05accys62 Tetronics (United Kingdom)'),
(10975, 'https://ror.org/01xscrc43', 'no_lang_code', 1, 'https://ror.org/01xscrc43 Solvay (Germany)'),
(10976, 'https://ror.org/0311ams29', 'no_lang_code', 1, 'https://ror.org/0311ams29 Tun Abdul Razak Research Centre'),
(10977, 'https://ror.org/00xqcpg12', 'no_lang_code', 1, 'https://ror.org/00xqcpg12 Solvay (Italy)'),
(10978, 'https://ror.org/00e4qtq76', 'fr', 1, 'https://ror.org/00e4qtq76 Ministère de la Santé Publique et Action Sociale'),
(10979, 'https://ror.org/041s3mp49', 'no_lang_code', 1, 'https://ror.org/041s3mp49 Solvionic (France)'),
(10980, 'https://ror.org/02b8mhr56', 'it', 1, 'https://ror.org/02b8mhr56 Texclubtec'),
(10981, 'https://ror.org/0538q7376', 'no_lang_code', 1, 'https://ror.org/0538q7376 Sonatest (United Kingdom)'),
(10982, 'https://ror.org/04fxz7d50', 'no_lang_code', 1, 'https://ror.org/04fxz7d50 Sony (United Kingdom)'),
(10983, 'https://ror.org/03cr99w51', 'no_lang_code', 1, 'https://ror.org/03cr99w51 Sony (France)'),
(10984, 'https://ror.org/036r8j511', 'en', 1, 'https://ror.org/036r8j511 WirelessInfo'),
(10985, 'https://ror.org/01hcxsy48', 'no_lang_code', 1, 'https://ror.org/01hcxsy48 Sony (Germany)'),
(10986, 'https://ror.org/052x6na95', 'de', 1, 'https://ror.org/052x6na95 Wirtschaftsfƶrderung Region Stuttgart'),
(10987, 'https://ror.org/018gt7b78', 'no_lang_code', 1, 'https://ror.org/018gt7b78 WLB Limited (Cyprus)'),
(10988, 'https://ror.org/02x2mw849', 'en', 1, 'https://ror.org/02x2mw849 Turing Institute'),
(10989, 'https://ror.org/03340ra78', 'no_lang_code', 1, 'https://ror.org/03340ra78 Thales (Spain)'),
(10990, 'https://ror.org/015wgq606', 'no_lang_code', 1, 'https://ror.org/015wgq606 Work Research Centre'),
(10991, 'https://ror.org/01ys7qn31', 'no_lang_code', 1, 'https://ror.org/01ys7qn31 LivaNova (Italy)'),
(10992, 'https://ror.org/04s0yt949', 'en', 1, 'https://ror.org/04s0yt949 Turku University of Applied Sciences Turun ammattikorkeakoulu ƅbo yrkeshƶgskola'),
(10993, 'https://ror.org/025n4zp83', 'no_lang_code', 1, 'https://ror.org/025n4zp83 LivaNova (France)'),
(10994, 'https://ror.org/05ftj4678', 'en', 1, 'https://ror.org/05ftj4678 Southampton City Council'),
(10995, 'https://ror.org/03v73t130', 'no_lang_code', 1, 'https://ror.org/03v73t130 Space Applications Services (Belgium)'),
(10996, 'https://ror.org/00dw1nx81', 'en', 1, 'https://ror.org/00dw1nx81 British Plastics Federation'),
(10997, 'https://ror.org/01nx9mw61', 'no_lang_code', 1, 'https://ror.org/01nx9mw61 Space Hellas (Greece)'),
(10998, 'https://ror.org/02e0gbz94', 'no_lang_code', 1, 'https://ror.org/02e0gbz94 CCS Global Group'),
(10999, 'https://ror.org/002w0jp71', 'en', 1, 'https://ror.org/002w0jp71 Institut für Weltraumforschung Space Research Institute'),
(11000, 'https://ror.org/03wye8c03', 'en', 1, 'https://ror.org/03wye8c03 Space Research and Technology Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за космически ŠøŠ·ŃŠ»ŠµŠ“Š²Š°Š½ŠøŃ към'),
(11001, 'https://ror.org/027956n88', 'no_lang_code', 1, 'https://ror.org/027956n88 Figo (Netherlands)'),
(11002, 'https://ror.org/0558jee48', 'en', 1, 'https://ror.org/0558jee48 World Health Organization - Italy'),
(11003, 'https://ror.org/01q8k8p90', 'en', 1, 'https://ror.org/01q8k8p90 Cyprus Institute'),
(11004, 'https://ror.org/03t7fbx42', 'no_lang_code', 1, 'https://ror.org/03t7fbx42 Wroclaw Research Centre EIT+ (Poland)'),
(11005, 'https://ror.org/01c79fd45', 'no_lang_code', 1, 'https://ror.org/01c79fd45 Space (Italy)'),
(11006, 'https://ror.org/012cahw96', 'no_lang_code', 1, 'https://ror.org/012cahw96 Space Systems Finland (Finland)'),
(11007, 'https://ror.org/004anj868', 'en', 1, 'https://ror.org/004anj868 Danish National Centre for Social Research Det Nationale Forskningscenter for VelfƦrd'),
(11008, 'https://ror.org/038mfmm37', 'en', 1, 'https://ror.org/038mfmm37 ACIES Consulting Group'),
(11009, 'https://ror.org/05f08j617', 'no_lang_code', 1, 'https://ror.org/05f08j617 TE Connectivity (Netherlands)'),
(11010, 'https://ror.org/04b239q68', 'en', 1, 'https://ror.org/04b239q68 European Association for the Promotion of Cogeneration'),
(11011, 'https://ror.org/04vb68v58', 'no_lang_code', 1, 'https://ror.org/04vb68v58 Spacebel (Belgium)'),
(11012, 'https://ror.org/05pbtbr30', 'no_lang_code', 1, 'https://ror.org/05pbtbr30 SpaceTec Partners'),
(11013, 'https://ror.org/01pww5j30', 'no_lang_code', 1, 'https://ror.org/01pww5j30 Tyrolit (Austria)'),
(11014, 'https://ror.org/01dn4kx94', 'no_lang_code', 1, 'https://ror.org/01dn4kx94 Sparqle International (Netherlands)'),
(11015, 'https://ror.org/019frbz80', 'no_lang_code', 1, 'https://ror.org/019frbz80 Specim (Finland)'),
(11016, 'https://ror.org/029k6n605', 'en', 1, 'https://ror.org/029k6n605 Centre for Social Innovation'),
(11017, 'https://ror.org/05kxyr105', 'no_lang_code', 1, 'https://ror.org/05kxyr105 Spinverse (Finland)'),
(11018, 'https://ror.org/005gk6w44', 'no_lang_code', 1, 'https://ror.org/005gk6w44 Biocentras (Lithuania)'),
(11019, 'https://ror.org/00hdz1808', 'no_lang_code', 1, 'https://ror.org/00hdz1808 Arelis (France)'),
(11020, 'https://ror.org/01nhjmy83', 'no_lang_code', 1, 'https://ror.org/01nhjmy83 Modern e Technologies (Lithuania)'),
(11021, 'https://ror.org/03cvz4414', 'no_lang_code', 1, 'https://ror.org/03cvz4414 Würth Elektronik (Germany)'),
(11022, 'https://ror.org/03j4eb467', 'en', 1, 'https://ror.org/03j4eb467 Ministerstvo průmyslu a obchodu České republiky Ministry of Industry and Trade'),
(11023, 'https://ror.org/01vbm2c42', 'no_lang_code', 1, 'https://ror.org/01vbm2c42 Software Research and Development Consulting'),
(11024, 'https://ror.org/003b78q25', 'en', 1, 'https://ror.org/003b78q25 Wye College'),
(11025, 'https://ror.org/04717vr35', 'no_lang_code', 1, 'https://ror.org/04717vr35 SSAB (Sweden)'),
(11026, 'https://ror.org/0498q3b31', 'no_lang_code', 1, 'https://ror.org/0498q3b31 SSP Consult Beratende Ingenieure (Germany)'),
(11027, 'https://ror.org/0491s4v58', 'no_lang_code', 1, 'https://ror.org/0491s4v58 Uljanik (Croatia)'),
(11028, 'https://ror.org/02nj1s179', 'no_lang_code', 1, 'https://ror.org/02nj1s179 Xenics (Belgium)'),
(11029, 'https://ror.org/01jt0gz40', 'no_lang_code', 1, 'https://ror.org/01jt0gz40 UmbraGroup (Italy)'),
(11030, 'https://ror.org/00139ex69', 'no_lang_code', 1, 'https://ror.org/00139ex69 Sensonor (Norway)'),
(11031, 'https://ror.org/01aysdw42', 'en', 1, 'https://ror.org/01aysdw42 St Mary''s Hospital'),
(11032, 'https://ror.org/033q0mv79', 'no_lang_code', 1, 'https://ror.org/033q0mv79 Xerox (France)'),
(11033, 'https://ror.org/01p8dnv11', 'no_lang_code', 1, 'https://ror.org/01p8dnv11 Israel Electric (Israel) חברת החשמל ×œ×™×©×Ø××œ'),
(11034, 'https://ror.org/01fn48q65', 'en', 1, 'https://ror.org/01fn48q65 Independent Centre for Privacy Protection Unabhängige Landeszentrum für Datenschutz Schleswig-Holstein'),
(11035, 'https://ror.org/04fywsz69', 'no_lang_code', 1, 'https://ror.org/04fywsz69 Xpand Biotechnology (Netherlands)'),
(11036, 'https://ror.org/0190g0e24', 'no_lang_code', 1, 'https://ror.org/0190g0e24 Xsens (Netherlands)'),
(11037, 'https://ror.org/04zb1mb80', 'no_lang_code', 1, 'https://ror.org/04zb1mb80 YellowMap (Germany)'),
(11038, 'https://ror.org/04nhhrw79', 'no_lang_code', 1, 'https://ror.org/04nhhrw79 Youris.com (Belgium)'),
(11039, 'https://ror.org/026vqrv05', 'no_lang_code', 1, 'https://ror.org/026vqrv05 Stab Vida (Portugal)'),
(11040, 'https://ror.org/033qewk74', 'en', 1, 'https://ror.org/033qewk74 Collaborating Centre on Sustainable Consumption and Production'),
(11041, 'https://ror.org/05h5kva18', 'no_lang_code', 1, 'https://ror.org/05h5kva18 Saarbrücken Stadtwerke (Germany)'),
(11042, 'https://ror.org/01235k409', 'en', 1, 'https://ror.org/01235k409 Polish National Energy Conservation Agency'),
(11043, 'https://ror.org/016tr2j79', 'no_lang_code', 1, 'https://ror.org/016tr2j79 Uni Research (Norway)'),
(11044, 'https://ror.org/04870rh38', 'no_lang_code', 1, 'https://ror.org/04870rh38 Stadtwerke Straubing (Germany)'),
(11045, 'https://ror.org/03n2jn734', 'no_lang_code', 1, 'https://ror.org/03n2jn734 Shadow Robot (United Kingdom)'),
(11046, 'https://ror.org/00a65ez32', 'en', 1, 'https://ror.org/00a65ez32 State Hermitage Museum Š“Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Эрмита́ж'),
(11047, 'https://ror.org/02sbnaz67', 'no_lang_code', 1, 'https://ror.org/02sbnaz67 Stamatopoulos and Associates (Greece)'),
(11048, 'https://ror.org/01rp7pv55', 'no_lang_code', 1, 'https://ror.org/01rp7pv55 Security Technology Competence Centre'),
(11049, 'https://ror.org/04h1x1p54', 'no_lang_code', 1, 'https://ror.org/04h1x1p54 Walt Disney (Switzerland)'),
(11050, 'https://ror.org/002wpy368', 'en', 1, 'https://ror.org/002wpy368 Young Foundation'),
(11051, 'https://ror.org/00xcb4r23', 'no_lang_code', 1, 'https://ror.org/00xcb4r23 Thermo Technologies (United Kingdom)'),
(11052, 'https://ror.org/04ejveh20', 'en', 1, 'https://ror.org/04ejveh20 Thessaloniki Port Authority'),
(11053, 'https://ror.org/051secs02', 'no_lang_code', 1, 'https://ror.org/051secs02 Thetis'),
(11054, 'https://ror.org/03mcwam86', 'en', 1, 'https://ror.org/03mcwam86 Ministry of Health ΄πουργείο ΄γείας'),
(11055, 'https://ror.org/01sm7ww29', 'no_lang_code', 1, 'https://ror.org/01sm7ww29 Zenon (Greece)'),
(11056, 'https://ror.org/033sa0762', 'en', 1, 'https://ror.org/033sa0762 State Laboratory'),
(11057, 'https://ror.org/030chcw72', 'de', 1, 'https://ror.org/030chcw72 Zentrum für Foren in der Grafischen Datenverarbeitung'),
(11058, 'https://ror.org/037r0mm82', 'no_lang_code', 1, 'https://ror.org/037r0mm82 Thomas Miller (United Kingdom)'),
(11059, 'https://ror.org/03etn8e63', 'no_lang_code', 1, 'https://ror.org/03etn8e63 Uninett (Norway)'),
(11060, 'https://ror.org/03kyhge69', 'no_lang_code', 1, 'https://ror.org/03kyhge69 Zeus Consulting (Greece)'),
(11061, 'https://ror.org/021wbbm64', 'no_lang_code', 1, 'https://ror.org/021wbbm64 ZF Friedrichshafen (Germany)'),
(11062, 'https://ror.org/03w65sq52', 'no_lang_code', 1, 'https://ror.org/03w65sq52 Gas Natural Fenosa (Spain)'),
(11063, 'https://ror.org/03qe3t289', 'en', 1, 'https://ror.org/03qe3t289 European Broadcasting Union Union europƩenne de radio-tƩlƩvision'),
(11064, 'https://ror.org/01rx0vn38', 'en', 1, 'https://ror.org/01rx0vn38 Ministry of Transport Samferdselsdepartementet Samferdsledepartementet'),
(11065, 'https://ror.org/01n1rg855', 'en', 1, 'https://ror.org/01n1rg855 Statistics Finland Statistikcentralen Tilastokeskus'),
(11066, 'https://ror.org/01fqrb109', 'en', 1, 'https://ror.org/01fqrb109 Zhejiang Energy Research Institute ęµ™ę±Ÿēœčƒ½ęŗē ”ē©¶ę‰€'),
(11067, 'https://ror.org/0035nx336', 'en', 1, 'https://ror.org/0035nx336 Finansdepartementet Ministry of Finance'),
(11068, 'https://ror.org/01tw0g194', 'es', 1, 'https://ror.org/01tw0g194 General Union of Workers Unión General de Trabajadores'),
(11069, 'https://ror.org/036e7je91', 'en', 1, 'https://ror.org/036e7je91 International Association of Public Transport'),
(11070, 'https://ror.org/014kk5w35', 'no_lang_code', 1, 'https://ror.org/014kk5w35 ZOZ Group (Germany)'),
(11071, 'https://ror.org/048wm8z08', 'de', 1, 'https://ror.org/048wm8z08 Brandenburg Economic Development Board ZukunftsAgentur Brandenburg'),
(11072, 'https://ror.org/05232hy51', 'no_lang_code', 1, 'https://ror.org/05232hy51 Statnett (Norway)'),
(11073, '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'),
(11074, 'https://ror.org/04x96x598', 'it', 1, 'https://ror.org/04x96x598 Experimental Station for Glass Stazione Sperimentale del Vetro'),
(11075, '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'),
(11076, 'https://ror.org/055bwqk39', 'no_lang_code', 1, 'https://ror.org/055bwqk39 TIE Kinetix (Germany)'),
(11077, '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'),
(11078, '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'),
(11079, 'https://ror.org/02s4h3z39', 'en', 1, 'https://ror.org/02s4h3z39 Ural Branch of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŠø Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(11080, 'https://ror.org/054gf5823', 'it', 1, 'https://ror.org/054gf5823 Unione Nazionale Industria Conciaria'),
(11081, 'https://ror.org/03vg56f33', 'it', 1, 'https://ror.org/03vg56f33 Unioncamere Veneto'),
(11082, 'https://ror.org/05ry19w12', 'no_lang_code', 1, 'https://ror.org/05ry19w12 Cofely (Switzerland)'),
(11083, 'https://ror.org/01cwasn33', 'no_lang_code', 1, 'https://ror.org/01cwasn33 Vodafone (Greece)'),
(11084, 'https://ror.org/00qsm3z32', 'en', 1, 'https://ror.org/00qsm3z32 B.I. Stepanov Institute of Physics Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ фізікі Ń–Š¼Ń Š‘.І. Š”Ń†ŃŠæŠ°Š½Š°Š²Š°'),
(11085, 'https://ror.org/0547fcp84', 'en', 1, 'https://ror.org/0547fcp84 Uniresearch'),
(11086, 'https://ror.org/009vreb09', 'no_lang_code', 1, 'https://ror.org/009vreb09 Uniscan Instruments (United Kingdom)'),
(11087, 'https://ror.org/02mhjkx12', 'no_lang_code', 1, 'https://ror.org/02mhjkx12 Sopra (France)'),
(11088, 'https://ror.org/01ccbsb07', 'en', 1, 'https://ror.org/01ccbsb07 United Institute of Informatics Problems'),
(11089, 'https://ror.org/01k0v6g02', 'no_lang_code', 1, 'https://ror.org/01k0v6g02 SURFsara (Netherlands) Stichting Academisch Rekencentrum Amsterdam'),
(11090, 'https://ror.org/0443rfv41', 'no_lang_code', 1, 'https://ror.org/0443rfv41 Vodera (United Kingdom)'),
(11091, 'https://ror.org/04mjy3g97', 'en', 1, 'https://ror.org/04mjy3g97 Amsterdam Economic Board'),
(11092, 'https://ror.org/035gava43', 'no_lang_code', 1, 'https://ror.org/035gava43 United Monolithic Semiconductors (Germany)'),
(11093, 'https://ror.org/034zb3z40', 'no_lang_code', 1, 'https://ror.org/034zb3z40 United Monolithic Semiconductor (France)'),
(11094, 'https://ror.org/00qxtrj15', 'no_lang_code', 1, 'https://ror.org/00qxtrj15 VSN International (United Kingdom)'),
(11095, 'https://ror.org/058ajkv68', 'en', 1, 'https://ror.org/058ajkv68 United Nations Industrial Development Organization'),
(11096, 'https://ror.org/04qav7246', 'no_lang_code', 1, 'https://ror.org/04qav7246 Vuje (Slovakia)'),
(11097, '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'),
(11098, 'https://ror.org/04sh23172', 'no_lang_code', 1, 'https://ror.org/04sh23172 Syndesis (Greece)'),
(11099, 'https://ror.org/00zep6618', 'en', 1, 'https://ror.org/00zep6618 United Nations Interregional Crime and Justice Research Institute'),
(11100, 'https://ror.org/03y0f7839', 'en', 1, 'https://ror.org/03y0f7839 European Federation of Food Science and Technology'),
(11101, 'https://ror.org/04vxc1c96', 'no_lang_code', 1, 'https://ror.org/04vxc1c96 United Technologies Research Center'),
(11102, 'https://ror.org/045791j63', 'en', 1, 'https://ror.org/045791j63 European Journalism Centre'),
(11103, 'https://ror.org/017vn3365', 'no_lang_code', 1, 'https://ror.org/017vn3365 Stichting Hout Research (Netherlands)'),
(11104, 'https://ror.org/04gcecg21', 'no_lang_code', 1, 'https://ror.org/04gcecg21 Norsk Hydro (Germany)'),
(11105, 'https://ror.org/053ssqa83', 'en', 1, 'https://ror.org/053ssqa83 Austrian Cooperative Research Vereinigung der Kooperativen Forschungseinrichtungen der ƶsterreichischen Wirtschaft'),
(11106, 'https://ror.org/00sb06w67', 'no_lang_code', 1, 'https://ror.org/00sb06w67 HiTec Marketing'),
(11107, 'https://ror.org/049e6hd13', 'no_lang_code', 1, 'https://ror.org/049e6hd13 Alten (France)'),
(11108, 'https://ror.org/059wkzj26', 'nl', 1, 'https://ror.org/059wkzj26 Maastro Clinic'),
(11109, 'https://ror.org/0281y1011', 'en', 1, 'https://ror.org/0281y1011 Latvian State Institute of Wood Chemistry'),
(11110, 'https://ror.org/04jvbc359', 'no_lang_code', 1, 'https://ror.org/04jvbc359 SocietĆ  Esercizi Aeroportuali (Italy)'),
(11111, 'https://ror.org/02gq61384', 'no_lang_code', 1, 'https://ror.org/02gq61384 Vergnet (France)'),
(11112, 'https://ror.org/01pge6c20', 'no_lang_code', 1, 'https://ror.org/01pge6c20 Vermicon (Germany)'),
(11113, 'https://ror.org/0159ban23', 'no_lang_code', 1, 'https://ror.org/0159ban23 Vermon (France)'),
(11114, 'https://ror.org/03c95vw04', 'no_lang_code', 1, 'https://ror.org/03c95vw04 Vertech Group'),
(11115, 'https://ror.org/03v9xsr27', 'no_lang_code', 1, 'https://ror.org/03v9xsr27 Vertilas (Germany)'),
(11116, 'https://ror.org/04hxjnb06', 'en', 1, 'https://ror.org/04hxjnb06 VGB PowerTech'),
(11117, 'https://ror.org/05xtgzc62', 'no_lang_code', 1, 'https://ror.org/05xtgzc62 Va-Q-tec (Germany)'),
(11118, 'https://ror.org/03vpcz360', 'no_lang_code', 1, 'https://ror.org/03vpcz360 Vichem Chemie (Hungary)'),
(11119, 'https://ror.org/0108txz43', 'no_lang_code', 1, 'https://ror.org/0108txz43 Vaillant (Germany)'),
(11120, 'https://ror.org/01ms40349', 'no_lang_code', 1, 'https://ror.org/01ms40349 Knowledge Centre for Agriculture'),
(11121, 'https://ror.org/04ryqpf83', 'no_lang_code', 1, 'https://ror.org/04ryqpf83 Valeo (France)'),
(11122, 'https://ror.org/0120jh079', 'no_lang_code', 1, 'https://ror.org/0120jh079 Honeywell (United Kingdom)'),
(11123, 'https://ror.org/05ym2c938', 'no_lang_code', 1, 'https://ror.org/05ym2c938 VirTech (Bulgaria)'),
(11124, 'https://ror.org/00rgz6j19', 'no_lang_code', 1, 'https://ror.org/00rgz6j19 Upper Austrian Research'),
(11125, 'https://ror.org/036nx0615', 'no_lang_code', 1, 'https://ror.org/036nx0615 USE2ACES (Netherlands)'),
(11126, 'https://ror.org/04fjkje50', 'no_lang_code', 1, 'https://ror.org/04fjkje50 User Interface Design (Germany)'),
(11127, 'https://ror.org/00v7esy82', 'no_lang_code', 1, 'https://ror.org/00v7esy82 Visual Components (Finland)'),
(11128, 'https://ror.org/01ezk0q28', 'no_lang_code', 1, 'https://ror.org/01ezk0q28 Vitrociset (Italy)'),
(11129, 'https://ror.org/04qwf0633', 'no_lang_code', 1, 'https://ror.org/04qwf0633 Spectrum Brands (Germany)'),
(11130, 'https://ror.org/05jhng925', 'en', 1, 'https://ror.org/05jhng925 Water Resources Research Centre'),
(11131, 'https://ror.org/02crk0343', 'no_lang_code', 1, 'https://ror.org/02crk0343 Visual Tools (Spain)'),
(11132, 'https://ror.org/025aa9m53', 'no_lang_code', 1, 'https://ror.org/025aa9m53 Volkswagen Group (Czechia)'),
(11133, 'https://ror.org/0170ntk37', 'no_lang_code', 1, 'https://ror.org/0170ntk37 Vienna Consulting Engineers (Austria)'),
(11134, 'https://ror.org/0218v2420', 'en', 1, 'https://ror.org/0218v2420 Association of German Engineers Verein Deutscher Ingenieure'),
(11135, 'https://ror.org/048q66y67', 'no_lang_code', 1, 'https://ror.org/048q66y67 BP (Germany)'),
(11136, 'https://ror.org/03zxbhz42', 'no_lang_code', 1, 'https://ror.org/03zxbhz42 Velti (Greece)'),
(11137, 'https://ror.org/00fzzvj42', 'no_lang_code', 1, 'https://ror.org/00fzzvj42 Veneto Nanotech (Italy)'),
(11138, 'https://ror.org/022cw9c39', 'no_lang_code', 1, 'https://ror.org/022cw9c39 Venezia Tecnologie (Italy)'),
(11139, 'https://ror.org/03mwypp50', 'no_lang_code', 1, 'https://ror.org/03mwypp50 Veolia (France)');
INSERT INTO `rors` VALUES
(11140, 'https://ror.org/01ww0ej05', 'no_lang_code', 1, 'https://ror.org/01ww0ej05 AFRY (Austria)'),
(11141, 'https://ror.org/038t94116', 'de', 1, 'https://ror.org/038t94116 Deutsches Forschungsnetz German Research Network Verein zur Fƶrderung eines Deutschen Forschungsnetzes'),
(11142, 'https://ror.org/031ag2z89', 'en', 1, 'https://ror.org/031ag2z89 Florida Certified Organic Growers'),
(11143, 'https://ror.org/02napvw46', 'en', 1, 'https://ror.org/02napvw46 Florida Institute for Human and Machine Cognition'),
(11144, 'https://ror.org/01nn5wh27', 'no_lang_code', 1, 'https://ror.org/01nn5wh27 Just Food (United States)'),
(11145, 'https://ror.org/021598a46', 'no_lang_code', 1, 'https://ror.org/021598a46 3C Cattle Feeders (United States)'),
(11146, 'https://ror.org/01d0ay026', 'en', 1, 'https://ror.org/01d0ay026 Florida West Coast Resource Conservation and Development'),
(11147, 'https://ror.org/04y8d8z54', 'en', 1, 'https://ror.org/04y8d8z54 Central Wisconsin Community Action Council'),
(11148, 'https://ror.org/01ykwyj07', 'no_lang_code', 1, 'https://ror.org/01ykwyj07 4Cs Breeding Technologies (United States)'),
(11149, 'https://ror.org/01xm2ex71', 'no_lang_code', 1, 'https://ror.org/01xm2ex71 Ocean Era (United States)'),
(11150, 'https://ror.org/05h3xnp91', 'en', 1, 'https://ror.org/05h3xnp91 Fondy Food Center'),
(11151, 'https://ror.org/034z8a432', 'en', 1, 'https://ror.org/034z8a432 Kansas Bioscience Authority'),
(11152, 'https://ror.org/01adgby89', 'no_lang_code', 1, 'https://ror.org/01adgby89 Orgelbau Mühleisen (Germany)'),
(11153, 'https://ror.org/009z2hr67', 'en', 1, 'https://ror.org/009z2hr67 SLO Food Bank'),
(11154, 'https://ror.org/04cwtnm77', 'no_lang_code', 1, 'https://ror.org/04cwtnm77 Kansas Environmental Management Associates (United States)'),
(11155, 'https://ror.org/059xna953', 'no_lang_code', 1, 'https://ror.org/059xna953 Acclima (United States)'),
(11156, 'https://ror.org/03kz3ea73', 'en', 1, 'https://ror.org/03kz3ea73 Food Bank of Delaware'),
(11157, 'https://ror.org/02mz3ef34', 'en', 1, 'https://ror.org/02mz3ef34 Food Bank of North Alabama'),
(11158, 'https://ror.org/0060eqh22', 'en', 1, 'https://ror.org/0060eqh22 Adelante Mujeres'),
(11159, 'https://ror.org/04hpxzg72', 'en', 1, 'https://ror.org/04hpxzg72 Kennebec Valley Community College'),
(11160, 'https://ror.org/03vd1gx02', 'en', 1, 'https://ror.org/03vd1gx02 Rhode Island Department of Administration'),
(11161, 'https://ror.org/0329db993', 'en', 1, 'https://ror.org/0329db993 Challenger Center for Space Science Education'),
(11162, 'https://ror.org/01s8feq26', 'no_lang_code', 1, 'https://ror.org/01s8feq26 KickinNutrition.TV (United States)'),
(11163, 'https://ror.org/01c3nm063', 'no_lang_code', 1, 'https://ror.org/01c3nm063 Kiksapa Consulting (United States)'),
(11164, 'https://ror.org/05we1n045', 'no_lang_code', 1, 'https://ror.org/05we1n045 Adnet Systems (United States)'),
(11165, 'https://ror.org/00gkzpk47', 'no_lang_code', 1, 'https://ror.org/00gkzpk47 Advanced Biological Marketing (United States)'),
(11166, 'https://ror.org/00zc8x182', 'en', 1, 'https://ror.org/00zc8x182 Food System Economic Partnership'),
(11167, 'https://ror.org/04sy3ks71', 'en', 1, 'https://ror.org/04sy3ks71 KISS Institute for Practical Robotics'),
(11168, 'https://ror.org/02gb22q25', 'en', 1, 'https://ror.org/02gb22q25 The Food Trust'),
(11169, 'https://ror.org/00cpkx252', 'en', 1, 'https://ror.org/00cpkx252 Charles County Public Schools'),
(11170, 'https://ror.org/04vmfsf12', 'no_lang_code', 1, 'https://ror.org/04vmfsf12 AML Superconductivity and Magnetics (United States)'),
(11171, 'https://ror.org/00vrcw253', 'no_lang_code', 1, 'https://ror.org/00vrcw253 Kōkua Kalihi Valley'),
(11172, 'https://ror.org/02zmbcj69', 'no_lang_code', 1, 'https://ror.org/02zmbcj69 Forest Concepts (United States)'),
(11173, 'https://ror.org/05xaqjm64', 'en', 1, 'https://ror.org/05xaqjm64 Pennsylvania Department of Education'),
(11174, 'https://ror.org/01bd8yz25', 'en', 1, 'https://ror.org/01bd8yz25 Afterschool Alliance'),
(11175, 'https://ror.org/00vn2bg94', 'en', 1, 'https://ror.org/00vn2bg94 Agricultural Information Management'),
(11176, 'https://ror.org/032dzsg05', 'en', 1, 'https://ror.org/032dzsg05 Chicago Board of Education'),
(11177, 'https://ror.org/00sxa9670', 'no_lang_code', 1, 'https://ror.org/00sxa9670 Agdia (United States)'),
(11178, 'https://ror.org/02pas9b60', 'en', 1, 'https://ror.org/02pas9b60 Krell Institute'),
(11179, 'https://ror.org/03bjq7p15', 'en', 1, 'https://ror.org/03bjq7p15 Foundation for Community Empowerment'),
(11180, 'https://ror.org/03z2djz07', 'no_lang_code', 1, 'https://ror.org/03z2djz07 Sciessent (United States)'),
(11181, 'https://ror.org/058mp2412', 'no_lang_code', 1, 'https://ror.org/058mp2412 KromaTiD (United States)'),
(11182, 'https://ror.org/045yh2r89', 'no_lang_code', 1, 'https://ror.org/045yh2r89 Agri Processing Services (United States)'),
(11183, 'https://ror.org/05vee8b45', 'no_lang_code', 1, 'https://ror.org/05vee8b45 Kuehnle AgroSystems (United States)'),
(11184, 'https://ror.org/03kaq5z89', 'en', 1, 'https://ror.org/03kaq5z89 Four Directions Development Corporation'),
(11185, 'https://ror.org/04d75x649', 'en', 1, 'https://ror.org/04d75x649 The Children''s Museum'),
(11186, 'https://ror.org/01xn7cv95', 'no_lang_code', 1, 'https://ror.org/01xn7cv95 Logistics Management Institute (United States)'),
(11187, 'https://ror.org/00eptcw48', 'en', 1, 'https://ror.org/00eptcw48 Agri Analysis'),
(11188, 'https://ror.org/012z9nd72', 'en', 1, 'https://ror.org/012z9nd72 Franklin County Community Development Corporation'),
(11189, 'https://ror.org/051qd7x39', 'en', 1, 'https://ror.org/051qd7x39 Children''s Museum of Indianapolis'),
(11190, 'https://ror.org/007sjp271', 'en', 1, 'https://ror.org/007sjp271 Los Angeles Neighborhood Land Trust'),
(11191, 'https://ror.org/00gpdgm12', 'en', 1, 'https://ror.org/00gpdgm12 La Semilla Food Center'),
(11192, 'https://ror.org/04ycrgr69', 'en', 1, 'https://ror.org/04ycrgr69 Lac Courte Oreilles Ojibwa Community College'),
(11193, 'https://ror.org/00pw35t73', 'en', 1, 'https://ror.org/00pw35t73 Agriculture and Land Based Training Association'),
(11194, 'https://ror.org/00kdpsr48', 'en', 1, 'https://ror.org/00kdpsr48 Rend Lake College'),
(11195, 'https://ror.org/03h00an48', 'en', 1, 'https://ror.org/03h00an48 Fredericksburg Independent School District'),
(11196, 'https://ror.org/05dxexe52', 'en', 1, 'https://ror.org/05dxexe52 Tennessee Department of Agriculture'),
(11197, 'https://ror.org/04fjarb68', 'no_lang_code', 1, 'https://ror.org/04fjarb68 Agrivida (United States)'),
(11198, 'https://ror.org/01x6ha460', 'en', 1, 'https://ror.org/01x6ha460 Land For Good'),
(11199, 'https://ror.org/01mk2vf40', 'no_lang_code', 1, 'https://ror.org/01mk2vf40 AgSquared (United States)'),
(11200, 'https://ror.org/03sf9zf71', 'no_lang_code', 1, 'https://ror.org/03sf9zf71 Freedom Photonics (United States)'),
(11201, 'https://ror.org/03tg4fk16', 'en', 1, 'https://ror.org/03tg4fk16 Fresno Metro Ministry'),
(11202, 'https://ror.org/04vbcf629', 'en', 1, 'https://ror.org/04vbcf629 Friends of North Carolina Public Libraries'),
(11203, 'https://ror.org/034rtgp85', 'no_lang_code', 1, 'https://ror.org/034rtgp85 Airstreams Renewables (United States)'),
(11204, 'https://ror.org/02yhka621', 'en', 1, 'https://ror.org/02yhka621 Chugach School District'),
(11205, 'https://ror.org/0465ecz69', 'no_lang_code', 1, 'https://ror.org/0465ecz69 Kyocera (Germany)'),
(11206, 'https://ror.org/05f0p1d39', 'en', 1, 'https://ror.org/05f0p1d39 Griffith Observatory'),
(11207, 'https://ror.org/04khvrj77', 'en', 1, 'https://ror.org/04khvrj77 Land Stewardship Project'),
(11208, 'https://ror.org/045j3qt75', 'no_lang_code', 1, 'https://ror.org/045j3qt75 Chugachmiut (United States)'),
(11209, 'https://ror.org/04gmtb593', 'no_lang_code', 1, 'https://ror.org/04gmtb593 United Technologies Corporation (Poland)'),
(11210, 'https://ror.org/02gqvwf68', 'no_lang_code', 1, 'https://ror.org/02gqvwf68 Cibus (United States)'),
(11211, 'https://ror.org/02kyqnp42', 'en', 1, 'https://ror.org/02kyqnp42 Cincinnati Observatory'),
(11212, 'https://ror.org/0346g6k53', 'en', 1, 'https://ror.org/0346g6k53 National Future Farmers of America Organization'),
(11213, 'https://ror.org/04f1frv38', 'en', 1, 'https://ror.org/04f1frv38 Alameda County Office of Education'),
(11214, 'https://ror.org/05p630g07', 'en', 1, 'https://ror.org/05p630g07 Colegio Comunitario de Laredo Laredo Community College'),
(11215, 'https://ror.org/02cx1m445', 'en', 1, 'https://ror.org/02cx1m445 Institute of Flight'),
(11216, 'https://ror.org/03n1ga993', 'en', 1, 'https://ror.org/03n1ga993 Challenger Learning Center of Alaska'),
(11217, 'https://ror.org/00zk4a122', 'en', 1, 'https://ror.org/00zk4a122 Larta Institute'),
(11218, 'https://ror.org/0336mg751', 'no_lang_code', 1, 'https://ror.org/0336mg751 FutureSoft (United States)'),
(11219, 'https://ror.org/037caqy18', 'no_lang_code', 1, 'https://ror.org/037caqy18 Algaen (United States)'),
(11220, 'https://ror.org/02e0hwv58', 'en', 1, 'https://ror.org/02e0hwv58 Las Animas Helping Hands'),
(11221, 'https://ror.org/03jtwqj24', 'no_lang_code', 1, 'https://ror.org/03jtwqj24 Teulades i FaƧanes Multifuncionals (Spain)'),
(11222, 'https://ror.org/053sdsy29', 'en', 1, 'https://ror.org/053sdsy29 Allan Hancock College'),
(11223, 'https://ror.org/037nmab92', 'en', 1, 'https://ror.org/037nmab92 City Harvest'),
(11224, 'https://ror.org/0593t7r22', 'en', 1, 'https://ror.org/0593t7r22 Latino Economic Development Center'),
(11225, 'https://ror.org/03e6npv25', 'en', 1, 'https://ror.org/03e6npv25 Alliance for Community Trees'),
(11226, 'https://ror.org/031hb4a81', 'en', 1, 'https://ror.org/031hb4a81 City School District of New Rochelle'),
(11227, 'https://ror.org/014xsa662', 'no_lang_code', 1, 'https://ror.org/014xsa662 All Things Bugs (United States)'),
(11228, 'https://ror.org/01gjav456', 'no_lang_code', 1, 'https://ror.org/01gjav456 Alluvium Biosciences (United States)'),
(11229, 'https://ror.org/03tyqfz83', 'no_lang_code', 1, 'https://ror.org/03tyqfz83 GDA (United States)'),
(11230, 'https://ror.org/02mxt1985', 'no_lang_code', 1, 'https://ror.org/02mxt1985 Greenwood Clean Energy (United States)'),
(11231, 'https://ror.org/049wg7r76', 'no_lang_code', 1, 'https://ror.org/049wg7r76 Alpha Scents (United States)'),
(11232, 'https://ror.org/00jf50v81', 'no_lang_code', 1, 'https://ror.org/00jf50v81 Altaeros (United States)'),
(11233, 'https://ror.org/055hgd414', 'en', 1, 'https://ror.org/055hgd414 American Association for Aerosol Research'),
(11234, 'https://ror.org/01p8nr933', 'no_lang_code', 1, 'https://ror.org/01p8nr933 Clean Plus (United States)'),
(11235, 'https://ror.org/01hahmf81', 'en', 1, 'https://ror.org/01hahmf81 Clear Creek Independent School District'),
(11236, 'https://ror.org/04vtrfw90', 'en', 1, 'https://ror.org/04vtrfw90 Cleveland County Schools'),
(11237, 'https://ror.org/039fb2p82', 'en', 1, 'https://ror.org/039fb2p82 Leech Lake Tribal College'),
(11238, 'https://ror.org/02ddzr818', 'en', 1, 'https://ror.org/02ddzr818 American College of Sports Medicine'),
(11239, 'https://ror.org/0442hf232', 'en', 1, 'https://ror.org/0442hf232 Zenger Farm'),
(11240, 'https://ror.org/004j5ke68', 'en', 1, 'https://ror.org/004j5ke68 CNL World'),
(11241, 'https://ror.org/04hxqsv25', 'en', 1, 'https://ror.org/04hxqsv25 American Forage and Grassland Council'),
(11242, 'https://ror.org/0522qq959', 'en', 1, 'https://ror.org/0522qq959 Legal Aid of Nebraska'),
(11243, 'https://ror.org/02pzmkw23', 'en', 1, 'https://ror.org/02pzmkw23 American Friends Service Committee'),
(11244, 'https://ror.org/01gjxc467', 'no_lang_code', 1, 'https://ror.org/01gjxc467 Cognisense Labs (United States)'),
(11245, 'https://ror.org/04yqx6497', 'en', 1, 'https://ror.org/04yqx6497 American Historical Association'),
(11246, 'https://ror.org/02595h974', 'en', 1, 'https://ror.org/02595h974 Lincoln Parish School Board'),
(11247, 'https://ror.org/030kvkp19', 'no_lang_code', 1, 'https://ror.org/030kvkp19 Coherent Logix (United States)'),
(11248, 'https://ror.org/02124b921', 'en', 1, 'https://ror.org/02124b921 American Phytopathological Society'),
(11249, 'https://ror.org/01vrvwk03', 'en', 1, 'https://ror.org/01vrvwk03 Colby Community College'),
(11250, 'https://ror.org/05hpvgy54', 'no_lang_code', 1, 'https://ror.org/05hpvgy54 Lindgren Pitman (United States)'),
(11251, 'https://ror.org/00t5fgd66', 'en', 1, 'https://ror.org/00t5fgd66 Gardens at Post Hill'),
(11252, 'https://ror.org/04eyhzq56', 'en', 1, 'https://ror.org/04eyhzq56 American Society for Gravitational and Space Research'),
(11253, 'https://ror.org/030q5p958', 'no_lang_code', 1, 'https://ror.org/030q5p958 Solar Stream (United States)'),
(11254, 'https://ror.org/03y3ebd61', 'en', 1, 'https://ror.org/03y3ebd61 American Society for Reproductive Immunology'),
(11255, 'https://ror.org/03da0cj89', 'en', 1, 'https://ror.org/03da0cj89 American Society of Animal Science'),
(11256, 'https://ror.org/00c4fej53', 'en', 1, 'https://ror.org/00c4fej53 West Virginia Department of Agriculture'),
(11257, 'https://ror.org/030xyq337', 'en', 1, 'https://ror.org/030xyq337 Local Agricultural Community Exchange'),
(11258, 'https://ror.org/03bcj4564', 'no_lang_code', 1, 'https://ror.org/03bcj4564 College of Micronesia-FSM'),
(11259, 'https://ror.org/02n6yz853', 'no_lang_code', 1, 'https://ror.org/02n6yz853 Anacapa Sciences (United States)'),
(11260, 'https://ror.org/02zbmht46', 'no_lang_code', 1, 'https://ror.org/02zbmht46 Analytical Imaging and Geophysics (United States)'),
(11261, 'https://ror.org/0465m7058', 'en', 1, 'https://ror.org/0465m7058 GardenShare'),
(11262, 'https://ror.org/0259s7f07', 'en', 1, 'https://ror.org/0259s7f07 Angelic Organics Learning Center'),
(11263, 'https://ror.org/05ddnsp63', 'no_lang_code', 1, 'https://ror.org/05ddnsp63 Long Branch Company (United States)'),
(11264, 'https://ror.org/04dwx7104', 'en', 1, 'https://ror.org/04dwx7104 College of the Desert'),
(11265, 'https://ror.org/01w5cmk23', 'en', 1, 'https://ror.org/01w5cmk23 Lorain County Joint Vocational School'),
(11266, 'https://ror.org/035zj6b18', 'en', 1, 'https://ror.org/035zj6b18 Anne Arundel Community College'),
(11267, 'https://ror.org/033wfmx47', 'en', 1, 'https://ror.org/033wfmx47 Anne Arundel County Public Schools'),
(11268, 'https://ror.org/01a3t6k91', 'en', 1, 'https://ror.org/01a3t6k91 Colorado Cattlemen''s Association'),
(11269, 'https://ror.org/0562q1768', 'no_lang_code', 1, 'https://ror.org/0562q1768 NorthStar Cooperative (United States)'),
(11270, 'https://ror.org/04aewc151', 'en', 1, 'https://ror.org/04aewc151 Louisiana Art & Science Museum'),
(11271, 'https://ror.org/022sh6v50', 'en', 1, 'https://ror.org/022sh6v50 Colorado Consortium for Earth and Space Science Education'),
(11272, 'https://ror.org/05p0m5765', 'en', 1, 'https://ror.org/05p0m5765 Georgia Organics'),
(11273, 'https://ror.org/04znbx206', 'en', 1, 'https://ror.org/04znbx206 Appalachian Native Plants'),
(11274, 'https://ror.org/012r0vb97', 'en', 1, 'https://ror.org/012r0vb97 The Lower Eastside Girls Club'),
(11275, 'https://ror.org/05a3y1m41', 'en', 1, 'https://ror.org/05a3y1m41 Appalachian Sustainable Agriculture Project'),
(11276, 'https://ror.org/0297j9z42', 'no_lang_code', 1, 'https://ror.org/0297j9z42 GeoVantage (United States)'),
(11277, 'https://ror.org/05e7jge28', 'no_lang_code', 1, 'https://ror.org/05e7jge28 Gevo (United States)'),
(11278, 'https://ror.org/04t71a559', 'en', 1, 'https://ror.org/04t71a559 Colorado Foundation for Agriculture'),
(11279, 'https://ror.org/042wjgv72', 'en', 1, 'https://ror.org/042wjgv72 Girl Scouts of the USA'),
(11280, 'https://ror.org/0392jcp02', 'no_lang_code', 1, 'https://ror.org/0392jcp02 Applechem (United States)'),
(11281, 'https://ror.org/029ts0z22', 'en', 1, 'https://ror.org/029ts0z22 Girlstart'),
(11282, 'https://ror.org/03qv28y75', 'no_lang_code', 1, 'https://ror.org/03qv28y75 Applied Biotechnology Institute'),
(11283, 'https://ror.org/05na31d57', 'no_lang_code', 1, 'https://ror.org/05na31d57 Applied Colloids (United States)'),
(11284, 'https://ror.org/042abrf84', 'en', 1, 'https://ror.org/042abrf84 Columbus City Schools'),
(11285, 'https://ror.org/04qhpt968', 'no_lang_code', 1, 'https://ror.org/04qhpt968 Applied Food Technologies (United States)'),
(11286, 'https://ror.org/044947a59', 'no_lang_code', 1, 'https://ror.org/044947a59 Lygos (United States)'),
(11287, 'https://ror.org/00927nm35', 'no_lang_code', 1, 'https://ror.org/00927nm35 Applied Nanotech (United States)'),
(11288, 'https://ror.org/02gnmy268', 'no_lang_code', 1, 'https://ror.org/02gnmy268 Applied GeoSolutions (United States)'),
(11289, 'https://ror.org/00z9nr722', 'en', 1, 'https://ror.org/00z9nr722 Common Good City Farm'),
(11290, 'https://ror.org/03j5rfg21', 'en', 1, 'https://ror.org/03j5rfg21 The Common Market'),
(11291, 'https://ror.org/03snn3m57', 'en', 1, 'https://ror.org/03snn3m57 Rowan College at Gloucester County'),
(11292, 'https://ror.org/03558b563', 'no_lang_code', 1, 'https://ror.org/03558b563 MSNW (United States)'),
(11293, 'https://ror.org/05qxj8k61', 'en', 1, 'https://ror.org/05qxj8k61 Glynwood'),
(11294, 'https://ror.org/048q5dx45', 'en', 1, 'https://ror.org/048q5dx45 Communicating for Agriculture Education Programs'),
(11295, 'https://ror.org/05ahayt71', 'en', 1, 'https://ror.org/05ahayt71 Good Shepherd Food Bank'),
(11296, 'https://ror.org/05q9j8881', 'no_lang_code', 1, 'https://ror.org/05q9j8881 Aquaculture Systems Technologies (United States)'),
(11297, 'https://ror.org/02bgz0507', 'en', 1, 'https://ror.org/02bgz0507 Gorge Grown Food Network'),
(11298, 'https://ror.org/02jx22q88', 'en', 1, 'https://ror.org/02jx22q88 Community Action Duluth'),
(11299, 'https://ror.org/01p2hdb49', 'en', 1, 'https://ror.org/01p2hdb49 Aquarium of the Pacific'),
(11300, 'https://ror.org/01t3w2017', 'no_lang_code', 1, 'https://ror.org/01t3w2017 GrassRoots Biotechnology (United States)'),
(11301, 'https://ror.org/04qh6x362', 'en', 1, 'https://ror.org/04qh6x362 Community Assistance Network'),
(11302, 'https://ror.org/02hkkqt25', 'en', 1, 'https://ror.org/02hkkqt25 Maine Farmland Trust'),
(11303, 'https://ror.org/00m1xxq98', 'en', 1, 'https://ror.org/00m1xxq98 Grassroots Gardens WNY'),
(11304, 'https://ror.org/05c1evx63', 'no_lang_code', 1, 'https://ror.org/05c1evx63 Arcadia Biosciences (United States)'),
(11305, 'https://ror.org/022182y05', 'en', 1, 'https://ror.org/022182y05 Maine Organic Farmers and Gardeners Association'),
(11306, 'https://ror.org/04jtyp632', 'en', 1, 'https://ror.org/04jtyp632 Great Lakes Science Center'),
(11307, 'https://ror.org/02ygbgq54', 'no_lang_code', 1, 'https://ror.org/02ygbgq54 Area I (United States)'),
(11308, 'https://ror.org/01c4g1b02', 'en', 1, 'https://ror.org/01c4g1b02 Great Northern Services'),
(11309, 'https://ror.org/04cpvzv65', 'en', 1, 'https://ror.org/04cpvzv65 Community Farm Alliance'),
(11310, 'https://ror.org/01v8y3819', 'no_lang_code', 1, 'https://ror.org/01v8y3819 Aries Scientific (United States)'),
(11311, 'https://ror.org/00659dh25', 'en', 1, 'https://ror.org/00659dh25 Arizona Sonora Desert Museum'),
(11312, 'https://ror.org/02gj68a91', 'en', 1, 'https://ror.org/02gj68a91 Greater Lansing Food Bank'),
(11313, 'https://ror.org/010sykp39', 'en', 1, 'https://ror.org/010sykp39 Community Food Bank'),
(11314, 'https://ror.org/034sa4263', 'en', 1, 'https://ror.org/034sa4263 Arkansas Land and Farm Development Corporation'),
(11315, 'https://ror.org/04wjvj017', 'en', 1, 'https://ror.org/04wjvj017 Community Food Security Coalition'),
(11316, 'https://ror.org/01n71ry70', 'en', 1, 'https://ror.org/01n71ry70 CenterState Chamber of Commerce'),
(11317, 'https://ror.org/032edw019', 'en', 1, 'https://ror.org/032edw019 Community GroundWorks'),
(11318, 'https://ror.org/01gxqm489', 'en', 1, 'https://ror.org/01gxqm489 Community Involved in Sustaining Agriculture'),
(11319, 'https://ror.org/05kmb8d23', 'en', 1, 'https://ror.org/05kmb8d23 Community Partners'),
(11320, 'https://ror.org/02nt0h862', 'en', 1, 'https://ror.org/02nt0h862 Art Science Research Laboratory'),
(11321, 'https://ror.org/05x2b4167', 'no_lang_code', 1, 'https://ror.org/05x2b4167 Artemis Innovation (United States)'),
(11322, 'https://ror.org/00kt2k176', 'no_lang_code', 1, 'https://ror.org/00kt2k176 My25'),
(11323, 'https://ror.org/02ppjec98', 'en', 1, 'https://ror.org/02ppjec98 Community Services Unlimited'),
(11324, 'https://ror.org/00g3zpx26', 'no_lang_code', 1, 'https://ror.org/00g3zpx26 Mainstream Engineering Corporation (United States)'),
(11325, 'https://ror.org/01v5dfh74', 'en', 1, 'https://ror.org/01v5dfh74 Community Teamwork'),
(11326, 'https://ror.org/0107epm19', 'no_lang_code', 1, 'https://ror.org/0107epm19 Makaha Studios (United States)'),
(11327, 'https://ror.org/03ph0tq13', 'no_lang_code', 1, 'https://ror.org/03ph0tq13 Green Heron Tools (United States)'),
(11328, 'https://ror.org/02rvg0b63', 'en', 1, 'https://ror.org/02rvg0b63 Mandela Partners'),
(11329, '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'),
(11330, 'https://ror.org/00sze5p60', 'no_lang_code', 1, 'https://ror.org/00sze5p60 AquaGreen (United States)'),
(11331, 'https://ror.org/00y6ae410', 'no_lang_code', 1, 'https://ror.org/00y6ae410 Arvens Technology (United States)'),
(11332, 'https://ror.org/055h1w046', 'no_lang_code', 1, 'https://ror.org/055h1w046 Ashima Group (United States)'),
(11333, 'https://ror.org/035kd4890', 'en', 1, 'https://ror.org/035kd4890 Manpower Demonstration Research Corporation'),
(11334, 'https://ror.org/058d1q741', 'en', 1, 'https://ror.org/058d1q741 The Green Scheme'),
(11335, 'https://ror.org/057en1r98', 'no_lang_code', 1, 'https://ror.org/057en1r98 Composite Technology Development (United States)'),
(11336, 'https://ror.org/04jd8q585', 'no_lang_code', 1, 'https://ror.org/04jd8q585 Assured Bio (United States)'),
(11337, 'https://ror.org/059z7rw58', 'no_lang_code', 1, 'https://ror.org/059z7rw58 Astrobotic (United States)'),
(11338, 'https://ror.org/02d75ya26', 'no_lang_code', 1, 'https://ror.org/02d75ya26 GreenWood Resources (United States)'),
(11339, 'https://ror.org/051h34p92', 'en', 1, 'https://ror.org/051h34p92 Astronomical Research Institute'),
(11340, 'https://ror.org/011tyvx62', 'en', 1, 'https://ror.org/011tyvx62 Groundwork Hudson Valley'),
(11341, 'https://ror.org/04763bf91', 'en', 1, 'https://ror.org/04763bf91 Group for Organizational Effectiveness'),
(11342, 'https://ror.org/03gca6511', 'en', 1, 'https://ror.org/03gca6511 Growing Power'),
(11343, 'https://ror.org/03vyk5m57', 'en', 1, 'https://ror.org/03vyk5m57 Connecticut Center for Advanced Technology'),
(11344, 'https://ror.org/001vv9g35', 'en', 1, 'https://ror.org/001vv9g35 Athens Land Trust'),
(11345, 'https://ror.org/02w3sz211', 'en', 1, 'https://ror.org/02w3sz211 Harford Research Institute'),
(11346, 'https://ror.org/03sddt131', 'en', 1, 'https://ror.org/03sddt131 Marion Local Schools'),
(11347, 'https://ror.org/05etneg75', 'en', 1, 'https://ror.org/05etneg75 Conrad Foundation'),
(11348, 'https://ror.org/025sfn416', 'no_lang_code', 1, 'https://ror.org/025sfn416 Harmon Brook Farm (United States)'),
(11349, 'https://ror.org/049k4m746', 'en', 1, 'https://ror.org/049k4m746 Mariposa Community Health Center'),
(11350, 'https://ror.org/04npd6384', 'en', 1, 'https://ror.org/04npd6384 Harris County Department of Education'),
(11351, 'https://ror.org/03c9wy439', 'no_lang_code', 1, 'https://ror.org/03c9wy439 Azavea (United States)'),
(11352, 'https://ror.org/02dwb6k40', 'no_lang_code', 1, 'https://ror.org/02dwb6k40 Marrone Bio Innovations (United States)'),
(11353, 'https://ror.org/04xpx8w88', 'no_lang_code', 1, 'https://ror.org/04xpx8w88 Azyp (United States)'),
(11354, 'https://ror.org/01177pa98', 'en', 1, 'https://ror.org/01177pa98 Mars Society'),
(11355, 'https://ror.org/03k0yb648', 'en', 1, 'https://ror.org/03k0yb648 Babble Tree'),
(11356, 'https://ror.org/03xwr3e89', 'en', 1, 'https://ror.org/03xwr3e89 Maryland Agricultural Education Foundation'),
(11357, 'https://ror.org/00vtxwn66', 'en', 1, 'https://ror.org/00vtxwn66 Maryland State Department of Education'),
(11358, 'https://ror.org/057hk3852', 'no_lang_code', 1, 'https://ror.org/057hk3852 Cooper Tire & Rubber Company (United States)'),
(11359, 'https://ror.org/03nx3a052', 'en', 1, 'https://ror.org/03nx3a052 Matson & Associates'),
(11360, 'https://ror.org/02xstv633', 'no_lang_code', 1, 'https://ror.org/02xstv633 Ball (United States)'),
(11361, 'https://ror.org/0100s4h81', 'en', 1, 'https://ror.org/0100s4h81 Baltimore City Public Schools'),
(11362, 'https://ror.org/05fxs5677', 'en', 1, 'https://ror.org/05fxs5677 Maui Economic Development Board'),
(11363, 'https://ror.org/04z2zcc58', 'no_lang_code', 1, 'https://ror.org/04z2zcc58 Mayaterials (United States)'),
(11364, 'https://ror.org/04g835755', 'en', 1, 'https://ror.org/04g835755 McWane Science Center'),
(11365, 'https://ror.org/02yjhs723', 'en', 1, 'https://ror.org/02yjhs723 McIntosh Sustainable Environment and Economic Development'),
(11366, 'https://ror.org/02y169n53', 'en', 1, 'https://ror.org/02y169n53 Bay Area Houston Economic Partnership'),
(11367, 'https://ror.org/00vqvet05', 'en', 1, 'https://ror.org/00vqvet05 Cornerstone Evaluation Associates'),
(11368, 'https://ror.org/005m1kj18', 'en', 1, 'https://ror.org/005m1kj18 Bay Mills Community College'),
(11369, 'https://ror.org/015q69778', 'no_lang_code', 1, 'https://ror.org/015q69778 MS Biotec (United States)'),
(11370, 'https://ror.org/04wt6ne29', 'en', 1, 'https://ror.org/04wt6ne29 Corporation for Findlay Market'),
(11371, 'https://ror.org/01kdb6822', 'en', 1, 'https://ror.org/01kdb6822 Corvallis Environmental Center'),
(11372, 'https://ror.org/05w0sqr84', 'en', 1, 'https://ror.org/05w0sqr84 Council for Agricultural Science and Technology'),
(11373, 'https://ror.org/042mcbx19', 'en', 1, 'https://ror.org/042mcbx19 Council on Food, Agricultural and Resource Economics'),
(11374, 'https://ror.org/013yab158', 'en', 1, 'https://ror.org/013yab158 Hartnell College'),
(11375, 'https://ror.org/04bj7w275', 'no_lang_code', 1, 'https://ror.org/04bj7w275 Bee Alert Technology (United States)'),
(11376, 'https://ror.org/02nn4sa19', 'no_lang_code', 1, 'https://ror.org/02nn4sa19 Mercy Corps Northwest (United States)'),
(11377, 'https://ror.org/02b1scj45', 'en', 1, 'https://ror.org/02b1scj45 Hawkeye Community College'),
(11378, 'https://ror.org/04psxdg29', 'no_lang_code', 1, 'https://ror.org/04psxdg29 Mesaphotonics (United States)'),
(11379, 'https://ror.org/02npqe506', 'en', 1, 'https://ror.org/02npqe506 GrowNYC'),
(11380, 'https://ror.org/05fata852', 'no_lang_code', 1, 'https://ror.org/05fata852 Crile Carvey Consulting'),
(11381, 'https://ror.org/04am60t69', 'no_lang_code', 1, 'https://ror.org/04am60t69 Cronus (United States)'),
(11382, 'https://ror.org/03hjr5c64', 'en', 1, 'https://ror.org/03hjr5c64 Bellingham Technical College'),
(11383, 'https://ror.org/02rn5vx39', 'no_lang_code', 1, 'https://ror.org/02rn5vx39 Yield10 Bioscience (United States)'),
(11384, 'https://ror.org/05fvp9283', 'en', 1, 'https://ror.org/05fvp9283 Health Care Without Harm'),
(11385, 'https://ror.org/000a1tn51', 'en', 1, 'https://ror.org/000a1tn51 Health Effects Institute'),
(11386, 'https://ror.org/02167je34', 'no_lang_code', 1, 'https://ror.org/02167je34 Biogas and Electric (United States)'),
(11387, 'https://ror.org/03ccv3j03', 'no_lang_code', 1, 'https://ror.org/03ccv3j03 Metrocrops'),
(11388, 'https://ror.org/0533brp61', 'en', 1, 'https://ror.org/0533brp61 BioLink Life Sciences'),
(11389, 'https://ror.org/00dq6jh04', 'en', 1, 'https://ror.org/00dq6jh04 Health Trust'),
(11390, 'https://ror.org/02gev8286', 'en', 1, 'https://ror.org/02gev8286 Michigan Food & Farming Systems'),
(11391, 'https://ror.org/05jkpmg51', 'en', 1, 'https://ror.org/05jkpmg51 Navajo Technical University'),
(11392, 'https://ror.org/05fd2ah98', 'no_lang_code', 1, 'https://ror.org/05fd2ah98 BioPlastic Polymers and Composites (United States)'),
(11393, 'https://ror.org/03d06tq31', 'en', 1, 'https://ror.org/03d06tq31 Michigan Science Center'),
(11394, 'https://ror.org/03fe5bx07', 'en', 1, 'https://ror.org/03fe5bx07 Healthy Communities Coalition'),
(11395, 'https://ror.org/03spep839', 'no_lang_code', 1, 'https://ror.org/03spep839 NewLink Genetics (United States)'),
(11396, 'https://ror.org/04vy5hg27', 'no_lang_code', 1, 'https://ror.org/04vy5hg27 Cryogenic Industries (United States)'),
(11397, 'https://ror.org/00gj9hs42', 'no_lang_code', 1, 'https://ror.org/00gj9hs42 BioPulping International (United States)'),
(11398, 'https://ror.org/04m65e260', 'no_lang_code', 1, 'https://ror.org/04m65e260 Micronic Technologies (United States)'),
(11399, 'https://ror.org/05mytgs27', 'no_lang_code', 1, 'https://ror.org/05mytgs27 Biospherical Instruments (United States)'),
(11400, 'https://ror.org/00503gj66', 'no_lang_code', 1, 'https://ror.org/00503gj66 Microvi Biotechnologies (United States)'),
(11401, 'https://ror.org/00mkxfc22', 'no_lang_code', 1, 'https://ror.org/00mkxfc22 Heliophysics'),
(11402, 'https://ror.org/00qhyxs61', 'no_lang_code', 1, 'https://ror.org/00qhyxs61 BioTracking (United States)'),
(11403, 'https://ror.org/050r8f240', 'no_lang_code', 1, 'https://ror.org/050r8f240 Heinz Optical Engineering (United States)'),
(11404, 'https://ror.org/00yj85a82', 'en', 1, 'https://ror.org/00yj85a82 Midwest Organic & Sustainable Education Service'),
(11405, 'https://ror.org/00gwz0j29', 'no_lang_code', 1, 'https://ror.org/00gwz0j29 Biotronics (United States)'),
(11406, 'https://ror.org/00073my17', 'no_lang_code', 1, 'https://ror.org/00073my17 BioWorks (United States)'),
(11407, 'https://ror.org/00ea6js36', 'en', 1, 'https://ror.org/00ea6js36 Heritage Ranch'),
(11408, 'https://ror.org/04gknp681', 'en', 1, 'https://ror.org/04gknp681 Mid-Atlantic Broadband Cooperative'),
(11409, 'https://ror.org/04t36th80', 'en', 1, 'https://ror.org/04t36th80 Hiller Aviation Museum'),
(11410, 'https://ror.org/02j7zcz08', 'en', 1, 'https://ror.org/02j7zcz08 Bittersweet Farms'),
(11411, 'https://ror.org/055fed339', 'en', 1, 'https://ror.org/055fed339 Black Oaks Center'),
(11412, 'https://ror.org/01mf77203', 'en', 1, 'https://ror.org/01mf77203 The Blue Hill Meteorological Observatory'),
(11413, 'https://ror.org/03dewsa74', 'en', 1, 'https://ror.org/03dewsa74 Blue Marble Space'),
(11414, 'https://ror.org/05ddvge76', 'en', 1, 'https://ror.org/05ddvge76 Hispanic Scholarship Fund'),
(11415, 'https://ror.org/00vxakc26', 'en', 1, 'https://ror.org/00vxakc26 Milwaukee Teacher Education Center'),
(11416, 'https://ror.org/01myse432', 'en', 1, 'https://ror.org/01myse432 Cultivating Community'),
(11417, 'https://ror.org/00e960c03', 'no_lang_code', 1, 'https://ror.org/00e960c03 Blue Sun (United States)'),
(11418, 'https://ror.org/02rzjwn50', 'en', 1, 'https://ror.org/02rzjwn50 William H Miner Agricultural Research Institute'),
(11419, 'https://ror.org/00dtfmh68', 'en', 1, 'https://ror.org/00dtfmh68 Mobile County Public Schools'),
(11420, 'https://ror.org/01ktsbe92', 'no_lang_code', 1, 'https://ror.org/01ktsbe92 HJ Science and Technology (United States)'),
(11421, 'https://ror.org/02zf66j21', 'en', 1, 'https://ror.org/02zf66j21 Cultural Site Research and Management'),
(11422, 'https://ror.org/0497prz03', 'en', 1, 'https://ror.org/0497prz03 Minnesota Agriculture in the Classroom Foundation'),
(11423, 'https://ror.org/02ya9c216', 'no_lang_code', 1, 'https://ror.org/02ya9c216 HM3 Energy'),
(11424, 'https://ror.org/03bzm0n35', 'en', 1, 'https://ror.org/03bzm0n35 Hmong American Partnership'),
(11425, 'https://ror.org/03wqecf08', 'en', 1, 'https://ror.org/03wqecf08 Holistic Management International'),
(11426, 'https://ror.org/04bgaqv80', 'no_lang_code', 1, 'https://ror.org/04bgaqv80 UtvecklingsbyrƄn'),
(11427, 'https://ror.org/00tx1bt94', 'en', 1, 'https://ror.org/00tx1bt94 Homer Soil and Water Conservation District'),
(11428, 'https://ror.org/00zbcp540', 'en', 1, 'https://ror.org/00zbcp540 Burlington School District'),
(11429, 'https://ror.org/02qs54046', 'no_lang_code', 1, 'https://ror.org/02qs54046 Busek (United States)'),
(11430, 'https://ror.org/03yv3yk36', 'en', 1, 'https://ror.org/03yv3yk36 Maryland Department of Commerce'),
(11431, 'https://ror.org/058qrep02', 'en', 1, 'https://ror.org/058qrep02 Hawaii Department of Business Economic Development and Tourism'),
(11432, 'https://ror.org/04h8wfm32', 'no_lang_code', 1, 'https://ror.org/04h8wfm32 Custom Data (United States)'),
(11433, 'https://ror.org/021x5j769', 'en', 1, 'https://ror.org/021x5j769 Horry County Schools'),
(11434, 'https://ror.org/05861s171', 'no_lang_code', 1, 'https://ror.org/05861s171 Cycloptics Technologies (United States)'),
(11435, 'https://ror.org/001c8fh75', 'en', 1, 'https://ror.org/001c8fh75 Cal Poly Corporation'),
(11436, 'https://ror.org/02z7cdf88', 'en', 1, 'https://ror.org/02z7cdf88 Cypress Hills Local Development Corporation'),
(11437, 'https://ror.org/00p5kvd83', 'en', 1, 'https://ror.org/00p5kvd83 Calallen Independent School District'),
(11438, 'https://ror.org/02acx8d20', 'en', 1, 'https://ror.org/02acx8d20 Calhoun Conservation District'),
(11439, 'https://ror.org/01ghh2407', 'no_lang_code', 1, 'https://ror.org/01ghh2407 Hubble Telemedical (United States)'),
(11440, 'https://ror.org/02dz8kh28', 'en', 1, 'https://ror.org/02dz8kh28 California FarmLink'),
(11441, 'https://ror.org/01bswen66', 'no_lang_code', 1, 'https://ror.org/01bswen66 Hudson Simulation Service'),
(11442, 'https://ror.org/03hxjqx45', 'en', 1, 'https://ror.org/03hxjqx45 California Foundation for Agriculture in the Classroom'),
(11443, 'https://ror.org/04cd6s825', 'en', 1, 'https://ror.org/04cd6s825 California Institute For Rural Studies'),
(11444, 'https://ror.org/04vry6637', 'no_lang_code', 1, 'https://ror.org/04vry6637 Mississippi Delta Council for Farm Worker Opportunities'),
(11445, 'https://ror.org/042kdph44', 'no_lang_code', 1, 'https://ror.org/042kdph44 DairySight (United States)'),
(11446, 'https://ror.org/0332h2t56', 'no_lang_code', 1, 'https://ror.org/0332h2t56 Dakota Rural Action (United States)'),
(11447, 'https://ror.org/00j7csj22', 'en', 1, 'https://ror.org/00j7csj22 California Teaching Fellows Foundation'),
(11448, 'https://ror.org/013dthz53', 'en', 1, 'https://ror.org/013dthz53 Missouri Farm Bureau'),
(11449, 'https://ror.org/05rdaxs90', 'no_lang_code', 1, 'https://ror.org/05rdaxs90 HydroBio (United States)'),
(11450, 'https://ror.org/003gevz29', 'en', 1, 'https://ror.org/003gevz29 Camden Children''s Garden'),
(11451, 'https://ror.org/04tjnpy66', 'no_lang_code', 1, 'https://ror.org/04tjnpy66 Datastar (United States)'),
(11452, 'https://ror.org/01xedye63', 'no_lang_code', 1, 'https://ror.org/01xedye63 Modern Meadow (United States)'),
(11453, 'https://ror.org/00e7f1j69', 'no_lang_code', 1, 'https://ror.org/00e7f1j69 Capstan (United States)'),
(11454, 'https://ror.org/0575dsf86', 'no_lang_code', 1, 'https://ror.org/0575dsf86 HyPerspectives (United States)'),
(11455, 'https://ror.org/027635d79', 'en', 1, 'https://ror.org/027635d79 Boonshoft Museum of Discovery'),
(11456, 'https://ror.org/04bb84196', 'no_lang_code', 1, 'https://ror.org/04bb84196 Montana Gluten Free (United States)'),
(11457, 'https://ror.org/011kc7436', 'no_lang_code', 1, 'https://ror.org/011kc7436 I2 air fluid innovation (United States)'),
(11458, 'https://ror.org/03ka3vc13', 'en', 1, 'https://ror.org/03ka3vc13 DeKalb County School District'),
(11459, 'https://ror.org/04910zn79', 'en', 1, 'https://ror.org/04910zn79 Delaware AeroSpace Education Foundation'),
(11460, 'https://ror.org/04xge3a12', 'en', 1, 'https://ror.org/04xge3a12 Denver Urban Gardens'),
(11461, 'https://ror.org/00mw3fh49', 'en', 1, 'https://ror.org/00mw3fh49 IḷisaĔvik College'),
(11462, 'https://ror.org/008jvtm10', 'en', 1, 'https://ror.org/008jvtm10 Carmel Research Center'),
(11463, 'https://ror.org/02w94dx49', 'en', 1, 'https://ror.org/02w94dx49 Illinois Farm Bureau'),
(11464, 'https://ror.org/00payck90', 'no_lang_code', 1, 'https://ror.org/00payck90 Mountain Meadow Wool Mill (United States)'),
(11465, 'https://ror.org/026ngk018', 'en', 1, 'https://ror.org/026ngk018 Illinois Stewardship Alliance'),
(11466, 'https://ror.org/01ywqj763', 'en', 1, 'https://ror.org/01ywqj763 Jannus'),
(11467, 'https://ror.org/02ayjed64', 'no_lang_code', 1, 'https://ror.org/02ayjed64 Sally Ride Science (United States)'),
(11468, 'https://ror.org/0435r0x49', 'no_lang_code', 1, 'https://ror.org/0435r0x49 Devicix (United States)'),
(11469, 'https://ror.org/01tndze11', 'no_lang_code', 1, 'https://ror.org/01tndze11 Multi-Duti Manufacturing (United States)'),
(11470, 'https://ror.org/055mqy429', 'no_lang_code', 1, 'https://ror.org/055mqy429 Diligent Consulting (United States)'),
(11471, 'https://ror.org/052cewm89', 'no_lang_code', 1, 'https://ror.org/052cewm89 Multiform Harvest (United States)'),
(11472, 'https://ror.org/00j8h1h21', 'en', 1, 'https://ror.org/00j8h1h21 Indian Health Care Resource Center of Tulsa'),
(11473, 'https://ror.org/05n4g7v16', 'en', 1, 'https://ror.org/05n4g7v16 Indian Nations Conservation Alliance'),
(11474, 'https://ror.org/058dq7z75', 'en', 1, 'https://ror.org/058dq7z75 Catholic Charities of Northeast Kansas'),
(11475, 'https://ror.org/056fnew74', 'en', 1, 'https://ror.org/056fnew74 Discovery Center Museum'),
(11476, 'https://ror.org/02v5a7318', 'en', 1, 'https://ror.org/02v5a7318 Indiana Association of United Ways'),
(11477, 'https://ror.org/03bepb710', 'no_lang_code', 1, 'https://ror.org/03bepb710 Cellana (United States)'),
(11478, 'https://ror.org/04j4v6302', 'en', 1, 'https://ror.org/04j4v6302 Discovery Cube Orange County'),
(11479, 'https://ror.org/02rttpd54', 'en', 1, 'https://ror.org/02rttpd54 Center for Dairy Excellence'),
(11480, 'https://ror.org/02kc8tk59', 'en', 1, 'https://ror.org/02kc8tk59 Museum of Aviation'),
(11481, 'https://ror.org/02jwynf03', 'en', 1, 'https://ror.org/02jwynf03 Center for Rural Affairs'),
(11482, 'https://ror.org/01wv0r403', 'en', 1, 'https://ror.org/01wv0r403 Center on Race, Poverty and the Environment'),
(11483, 'https://ror.org/04ys0z478', 'en', 1, 'https://ror.org/04ys0z478 Central Coast Resource Conservation and Development'),
(11484, 'https://ror.org/0354w0y78', 'en', 1, 'https://ror.org/0354w0y78 College of Central Florida'),
(11485, 'https://ror.org/00vaehf87', 'en', 1, 'https://ror.org/00vaehf87 Museum of Science and Industry'),
(11486, 'https://ror.org/00rsre537', 'en', 1, 'https://ror.org/00rsre537 Indigenous Education Institute'),
(11487, 'https://ror.org/02pt5ea98', 'no_lang_code', 1, 'https://ror.org/02pt5ea98 Industry Vision Automation (United States)'),
(11488, 'https://ror.org/05ahs5p53', 'no_lang_code', 1, 'https://ror.org/05ahs5p53 Brandywine Photonics (United States)'),
(11489, 'https://ror.org/04a79ch84', 'en', 1, 'https://ror.org/04a79ch84 CareerSource Brevard'),
(11490, 'https://ror.org/00ge54051', 'en', 1, 'https://ror.org/00ge54051 Mvskoke Food Sovereignty Initiative'),
(11491, 'https://ror.org/04h2exm50', 'no_lang_code', 1, 'https://ror.org/04h2exm50 Mycosynthetix (United States)'),
(11492, 'https://ror.org/05j8hrz32', 'no_lang_code', 1, 'https://ror.org/05j8hrz32 Infinite Enzymes (United States)'),
(11493, 'https://ror.org/04qparf31', 'no_lang_code', 1, 'https://ror.org/04qparf31 Domtar (United States)'),
(11494, 'https://ror.org/01vw1d787', 'en', 1, 'https://ror.org/01vw1d787 Dorothy Jemison Foundation for Excellence'),
(11495, 'https://ror.org/02mwhda43', 'no_lang_code', 1, 'https://ror.org/02mwhda43 Downstream Strategies (United States)'),
(11496, 'https://ror.org/03qjv2m25', 'no_lang_code', 1, 'https://ror.org/03qjv2m25 Drip Research Technology Services (United States)'),
(11497, 'https://ror.org/003p7hq46', 'en', 1, 'https://ror.org/003p7hq46 Drummond Public Schools'),
(11498, 'https://ror.org/038x7my43', 'en', 1, 'https://ror.org/038x7my43 Myrtle Avenue Brooklyn Partnership'),
(11499, 'https://ror.org/04hm48b29', 'en', 1, 'https://ror.org/04hm48b29 Dublin Independent School District'),
(11500, 'https://ror.org/04keapj48', 'en', 1, 'https://ror.org/04keapj48 Durham County Department of Public Health'),
(11501, 'https://ror.org/02e61jz42', 'no_lang_code', 1, 'https://ror.org/02e61jz42 e2e Materials (United States)'),
(11502, 'https://ror.org/01wzgqz67', 'en', 1, 'https://ror.org/01wzgqz67 Earth Learning'),
(11503, 'https://ror.org/0231ar939', 'no_lang_code', 1, 'https://ror.org/0231ar939 Earth Networks (United States)'),
(11504, 'https://ror.org/01pz08h78', 'no_lang_code', 1, 'https://ror.org/01pz08h78 Innovation Pathways'),
(11505, 'https://ror.org/05ethgq25', 'en', 1, 'https://ror.org/05ethgq25 East Bay Asian Youth Center'),
(11506, 'https://ror.org/05035cc38', 'no_lang_code', 1, 'https://ror.org/05035cc38 LIG Science (United States)'),
(11507, 'https://ror.org/02e36tk84', 'en', 1, 'https://ror.org/02e36tk84 Ohio Aerospace Institute'),
(11508, 'https://ror.org/02fz4b004', 'en', 1, 'https://ror.org/02fz4b004 Eastern Shore of Virginia Broadband Authority'),
(11509, 'https://ror.org/01xfp7f88', 'no_lang_code', 1, 'https://ror.org/01xfp7f88 Innovative Orbital Design (United States)'),
(11510, 'https://ror.org/02pq27251', 'en', 1, 'https://ror.org/02pq27251 Oklahoma Department of Human Services'),
(11511, 'https://ror.org/01y8j7579', 'en', 1, 'https://ror.org/01y8j7579 National 4-H Council'),
(11512, 'https://ror.org/0206gap17', 'no_lang_code', 1, 'https://ror.org/0206gap17 Innovative Space Propulsion Systems (United States)'),
(11513, 'https://ror.org/03vp4wk44', 'en', 1, 'https://ror.org/03vp4wk44 Omak School District'),
(11514, 'https://ror.org/0509fa037', 'en', 1, 'https://ror.org/0509fa037 National Association of Extension 4-H Agents'),
(11515, 'https://ror.org/00wfqnx07', 'no_lang_code', 1, 'https://ror.org/00wfqnx07 OndaVia (United States)'),
(11516, 'https://ror.org/01fyz1w35', 'en', 1, 'https://ror.org/01fyz1w35 Eastside Technical Center'),
(11517, 'https://ror.org/0123ya036', 'en', 1, 'https://ror.org/0123ya036 National Biodiesel Board'),
(11518, 'https://ror.org/00ccz3w83', 'no_lang_code', 1, 'https://ror.org/00ccz3w83 Eco Composites (United States)'),
(11519, 'https://ror.org/027vk9s44', 'en', 1, 'https://ror.org/027vk9s44 Organic Seed Alliance'),
(11520, 'https://ror.org/04gazhx35', 'en', 1, 'https://ror.org/04gazhx35 National Center for Appropriate Technology'),
(11521, 'https://ror.org/0140kyc52', 'no_lang_code', 1, 'https://ror.org/0140kyc52 InsectiGen (United States)'),
(11522, 'https://ror.org/01qxbf653', 'no_lang_code', 1, 'https://ror.org/01qxbf653 Insects Limited (United States)'),
(11523, 'https://ror.org/04cq22z54', 'en', 1, 'https://ror.org/04cq22z54 Institute for Advanced Learning and Research'),
(11524, 'https://ror.org/00jc3sx68', 'en', 1, 'https://ror.org/00jc3sx68 Ecumenical Ministries of Oregon'),
(11525, 'https://ror.org/03j2wmd98', 'no_lang_code', 1, 'https://ror.org/03j2wmd98 Organix (United States)'),
(11526, 'https://ror.org/02gvyd507', 'en', 1, 'https://ror.org/02gvyd507 Institute for Culture and Ecology'),
(11527, 'https://ror.org/01z0rq434', 'no_lang_code', 1, 'https://ror.org/01z0rq434 National Center for Defense Manufacturing and Machining (United States)'),
(11528, 'https://ror.org/04bcpv236', 'en', 1, 'https://ror.org/04bcpv236 Institute for Earth Science Research and Education'),
(11529, 'https://ror.org/02jgraj16', 'en', 1, 'https://ror.org/02jgraj16 Institute for Global Environmental Strategies'),
(11530, 'https://ror.org/01xwshp02', 'en', 1, 'https://ror.org/01xwshp02 Institute for Magnetospheric Physics'),
(11531, 'https://ror.org/043w47745', 'en', 1, 'https://ror.org/043w47745 Institute for the Application of Geospatial Technology'),
(11532, 'https://ror.org/01cpp8w55', 'en', 1, 'https://ror.org/01cpp8w55 Institute for Washington’s Future'),
(11533, 'https://ror.org/003mdrz16', 'en', 1, 'https://ror.org/003mdrz16 Institute of American Indian Arts'),
(11534, 'https://ror.org/01q3fhc22', 'en', 1, 'https://ror.org/01q3fhc22 Delaware Department of Education'),
(11535, 'https://ror.org/00nbf6509', 'no_lang_code', 1, 'https://ror.org/00nbf6509 Ocean Renewable Power Company (United States)'),
(11536, 'https://ror.org/03nsgg743', 'en', 1, 'https://ror.org/03nsgg743 Institutes for Behavior Resources'),
(11537, 'https://ror.org/03x507n02', 'en', 1, 'https://ror.org/03x507n02 Georgia Department of Education'),
(11538, 'https://ror.org/05jh18x93', 'en', 1, 'https://ror.org/05jh18x93 National Commission on Teaching and America’s Future'),
(11539, 'https://ror.org/03hqc7279', 'en', 1, 'https://ror.org/03hqc7279 Otero Junior College'),
(11540, 'https://ror.org/00gkv5g08', 'en', 1, 'https://ror.org/00gkv5g08 Our School at Blair Grocery'),
(11541, 'https://ror.org/03k5jhv71', 'no_lang_code', 1, 'https://ror.org/03k5jhv71 Integrated Nano-Technologies (United States)'),
(11542, 'https://ror.org/001j0nz10', 'en', 1, 'https://ror.org/001j0nz10 Inter-Faith Food Shuttle'),
(11543, 'https://ror.org/02nyp1408', 'en', 1, 'https://ror.org/02nyp1408 National Council on Radiation Protection and Measurements'),
(11544, 'https://ror.org/003bqs817', 'no_lang_code', 1, 'https://ror.org/003bqs817 Owl Biomedical (United States)'),
(11545, 'https://ror.org/004hkm505', 'no_lang_code', 1, 'https://ror.org/004hkm505 Pacific Biodiesel (United States)'),
(11546, 'https://ror.org/0466dv587', 'en', 1, 'https://ror.org/0466dv587 Pacific Gateway Center'),
(11547, 'https://ror.org/046gmyr21', 'en', 1, 'https://ror.org/046gmyr21 Education in Action'),
(11548, 'https://ror.org/059zg8r51', 'en', 1, 'https://ror.org/059zg8r51 National Federation of the Blind'),
(11549, 'https://ror.org/033zcj004', 'en', 1, 'https://ror.org/033zcj004 Nebraska Department of Education'),
(11550, 'https://ror.org/05dz2h194', 'en', 1, 'https://ror.org/05dz2h194 International Association of Wildland Fire'),
(11551, 'https://ror.org/01mcasz62', 'en', 1, 'https://ror.org/01mcasz62 International Society for Biosafety Research'),
(11552, 'https://ror.org/034bxyw57', 'no_lang_code', 1, 'https://ror.org/034bxyw57 3F (United States)'),
(11553, 'https://ror.org/03s70j353', 'en', 1, 'https://ror.org/03s70j353 International Sonoran Desert Alliance'),
(11554, 'https://ror.org/01764fn91', 'no_lang_code', 1, 'https://ror.org/01764fn91 Pan Genome Systems (United States)'),
(11555, 'https://ror.org/058mdz444', 'en', 1, 'https://ror.org/058mdz444 Departamento de Educación de Nueva Jersey New Jersey Department of Education'),
(11556, 'https://ror.org/03r0mgt68', 'no_lang_code', 1, 'https://ror.org/03r0mgt68 PathoVacs (United States)'),
(11557, 'https://ror.org/02gywfe80', 'en', 1, 'https://ror.org/02gywfe80 National Mining Hall of Fame and Museum'),
(11558, 'https://ror.org/022sedm79', 'en', 1, 'https://ror.org/022sedm79 PathStone'),
(11559, 'https://ror.org/05sh1yn13', 'no_lang_code', 1, 'https://ror.org/05sh1yn13 PFA Consulting (United States)'),
(11560, 'https://ror.org/03zb0d553', 'no_lang_code', 1, 'https://ror.org/03zb0d553 Pemaquid Mussel Farms (United States)'),
(11561, 'https://ror.org/03kd4bc94', 'en', 1, 'https://ror.org/03kd4bc94 National Space Grant Alliance'),
(11562, 'https://ror.org/01zp93540', 'no_lang_code', 1, 'https://ror.org/01zp93540 Pemaquid Oyster Company (United States)'),
(11563, 'https://ror.org/02f6yfb39', 'en', 1, 'https://ror.org/02f6yfb39 National Space Grant Foundation'),
(11564, 'https://ror.org/0472wp149', 'no_lang_code', 1, 'https://ror.org/0472wp149 United Animal Health (United States)'),
(11565, 'https://ror.org/0396ezm18', 'en', 1, 'https://ror.org/0396ezm18 National Test Pilot School'),
(11566, 'https://ror.org/02grc9p87', 'en', 1, 'https://ror.org/02grc9p87 Intertribal Agriculture Council'),
(11567, 'https://ror.org/02394fh52', 'no_lang_code', 1, 'https://ror.org/02394fh52 Pennsylvania Center for Beef Excellence'),
(11568, 'https://ror.org/024cwn342', 'en', 1, 'https://ror.org/024cwn342 Pennsylvania Horticultural Society'),
(11569, 'https://ror.org/04ye4vy15', 'no_lang_code', 1, 'https://ror.org/04ye4vy15 Intralytix (United States)'),
(11570, 'https://ror.org/00k1bh470', 'en', 1, 'https://ror.org/00k1bh470 National Wild Turkey Federation'),
(11571, 'https://ror.org/054yz2f06', 'en', 1, 'https://ror.org/054yz2f06 National Youth Science Foundation'),
(11572, 'https://ror.org/01ztccg37', 'no_lang_code', 1, 'https://ror.org/01ztccg37 Permafuels (United States)'),
(11573, 'https://ror.org/05g718r89', 'en', 1, 'https://ror.org/05g718r89 Nationalities Service Center'),
(11574, 'https://ror.org/050z1be57', 'no_lang_code', 1, 'https://ror.org/050z1be57 Invention House (United States)'),
(11575, 'https://ror.org/05ppske48', 'no_lang_code', 1, 'https://ror.org/05ppske48 Invercon (United States)'),
(11576, 'https://ror.org/01zd6r658', 'en', 1, 'https://ror.org/01zd6r658 Empire State Honey Producers Association'),
(11577, 'https://ror.org/04chbxq69', 'no_lang_code', 1, 'https://ror.org/04chbxq69 Energid Technologies (United States)'),
(11578, 'https://ror.org/052942611', 'en', 1, 'https://ror.org/052942611 Nebraska Indian Community College'),
(11579, 'https://ror.org/02vcdte90', 'no_lang_code', 1, 'https://ror.org/02vcdte90 Olympus (United States)'),
(11580, 'https://ror.org/03tyjzx42', 'en', 1, 'https://ror.org/03tyjzx42 Negev Foundation'),
(11581, 'https://ror.org/05wmqqp39', 'en', 1, 'https://ror.org/05wmqqp39 Inyo Mono Advocates for Community Action'),
(11582, 'https://ror.org/03f5kqz72', 'en', 1, 'https://ror.org/03f5kqz72 Iowa Children''s Museum'),
(11583, 'https://ror.org/02dzpb616', 'en', 1, 'https://ror.org/02dzpb616 Energy Center of Wisconsin'),
(11584, 'https://ror.org/005cxtt77', 'no_lang_code', 1, 'https://ror.org/005cxtt77 Enertechnix (United States)'),
(11585, 'https://ror.org/05m13z628', 'no_lang_code', 1, 'https://ror.org/05m13z628 Phenotype Screening Corporation (United States)'),
(11586, 'https://ror.org/03zgv2124', 'en', 1, 'https://ror.org/03zgv2124 Iowa Valley Community College District'),
(11587, 'https://ror.org/04gznzd38', 'en', 1, 'https://ror.org/04gznzd38 ECO City Farms'),
(11588, 'https://ror.org/00dk11h96', 'en', 1, 'https://ror.org/00dk11h96 New Jersey Department of Agriculture'),
(11589, 'https://ror.org/01jsfqj27', 'en', 1, 'https://ror.org/01jsfqj27 IPM Institute of North America'),
(11590, 'https://ror.org/02dfjrn59', 'en', 1, 'https://ror.org/02dfjrn59 New Media Studio'),
(11591, 'https://ror.org/05mwahg17', 'no_lang_code', 1, 'https://ror.org/05mwahg17 Engineered Compost Systems (United States)'),
(11592, 'https://ror.org/01z1c5862', 'en', 1, 'https://ror.org/01z1c5862 College Opportunity Resources for Education'),
(11593, 'https://ror.org/01xe60d06', 'en', 1, 'https://ror.org/01xe60d06 New Mexico Mathematics, Engineering, and Science Achievement'),
(11594, 'https://ror.org/02acd1c86', 'no_lang_code', 1, 'https://ror.org/02acd1c86 Photon Systems (United States)');
INSERT INTO `rors` VALUES
(11595, 'https://ror.org/04eyj7x46', 'en', 1, 'https://ror.org/04eyj7x46 Jamestown Education Foundation'),
(11596, 'https://ror.org/00wbgx826', 'en', 1, 'https://ror.org/00wbgx826 STEM Forward'),
(11597, 'https://ror.org/03kkm1r11', 'en', 1, 'https://ror.org/03kkm1r11 New York Harbor School'),
(11598, 'https://ror.org/01zn5h954', 'en', 1, 'https://ror.org/01zn5h954 Irv and Shellys Fresh Picks'),
(11599, 'https://ror.org/010j4r258', 'no_lang_code', 1, 'https://ror.org/010j4r258 EIM Sensor (United States)'),
(11600, 'https://ror.org/028g94h04', 'en', 1, 'https://ror.org/028g94h04 New York Sustainable Agriculture Working Group'),
(11601, 'https://ror.org/05d4eba54', 'en', 1, 'https://ror.org/05d4eba54 Goodman Community Center'),
(11602, 'https://ror.org/02kak3e04', 'en', 1, 'https://ror.org/02kak3e04 Aurora St. Luke''s Medical Center'),
(11603, 'https://ror.org/009h1mf85', 'en', 1, 'https://ror.org/009h1mf85 Newark Museum'),
(11604, 'https://ror.org/05xevjm20', 'no_lang_code', 1, 'https://ror.org/05xevjm20 Eureka Genomics (United States)'),
(11605, 'https://ror.org/03nnvvy24', 'no_lang_code', 1, 'https://ror.org/03nnvvy24 Itaconix (United States)'),
(11606, 'https://ror.org/04hx2r306', 'en', 1, 'https://ror.org/04hx2r306 Eureka Scientific'),
(11607, 'https://ror.org/011rxtm45', 'no_lang_code', 1, 'https://ror.org/011rxtm45 Exelis (United States)'),
(11608, 'https://ror.org/021kqv911', 'no_lang_code', 1, 'https://ror.org/021kqv911 Exactheat (United States)'),
(11609, 'https://ror.org/013v8tf96', 'en', 1, 'https://ror.org/013v8tf96 Winer Observatory'),
(11610, 'https://ror.org/029vgfn27', 'en', 1, 'https://ror.org/029vgfn27 Janus Youth Programs'),
(11611, 'https://ror.org/01mgpv175', 'no_lang_code', 1, 'https://ror.org/01mgpv175 Novaphos (United States)'),
(11612, 'https://ror.org/04nw2yg41', 'en', 1, 'https://ror.org/04nw2yg41 Planting Justice'),
(11613, 'https://ror.org/02q7bh346', 'en', 1, 'https://ror.org/02q7bh346 ExploreMars'),
(11614, 'https://ror.org/05k4pxb23', 'no_lang_code', 1, 'https://ror.org/05k4pxb23 Nitrate Elimination Company (United States)'),
(11615, 'https://ror.org/01jejyf30', 'no_lang_code', 1, 'https://ror.org/01jejyf30 Exquadrum (United States)'),
(11616, 'https://ror.org/019hc5667', 'en', 1, 'https://ror.org/019hc5667 FareStart'),
(11617, 'https://ror.org/051e2nw91', 'en', 1, 'https://ror.org/051e2nw91 Farm Credit Council'),
(11618, 'https://ror.org/05srkg434', 'en', 1, 'https://ror.org/05srkg434 Farm Safety For Just Kids'),
(11619, 'https://ror.org/03gk10789', 'en', 1, 'https://ror.org/03gk10789 Farm to Table'),
(11620, 'https://ror.org/04mxmbg88', 'en', 1, 'https://ror.org/04mxmbg88 Farmers Legal Action Group'),
(11621, 'https://ror.org/010v7x554', 'no_lang_code', 1, 'https://ror.org/010v7x554 Firsthand Foods (United States)'),
(11622, 'https://ror.org/04gdc7k94', 'en', 1, 'https://ror.org/04gdc7k94 Farmworker Association of Florida'),
(11623, 'https://ror.org/01gyrte54', 'en', 1, 'https://ror.org/01gyrte54 Jobs for the Future'),
(11624, 'https://ror.org/04k2bnr92', 'en', 1, 'https://ror.org/04k2bnr92 Plumas Rural Services'),
(11625, 'https://ror.org/01g7b8d30', 'en', 1, 'https://ror.org/01g7b8d30 Journey''s End Refugee Services'),
(11626, 'https://ror.org/04q8hbr41', 'no_lang_code', 1, 'https://ror.org/04q8hbr41 Noblis'),
(11627, 'https://ror.org/01zmvpz61', 'no_lang_code', 1, 'https://ror.org/01zmvpz61 Julia Group'),
(11628, 'https://ror.org/03yqwby83', 'en', 1, 'https://ror.org/03yqwby83 Norfolk County Agricultural High School'),
(11629, 'https://ror.org/04vz7v009', 'en', 1, 'https://ror.org/04vz7v009 Exploreum Science Center'),
(11630, 'https://ror.org/0187tsx41', 'no_lang_code', 1, 'https://ror.org/0187tsx41 Sigma Space (United States)'),
(11631, 'https://ror.org/05768zd89', 'no_lang_code', 1, 'https://ror.org/05768zd89 PolyOne (United States)'),
(11632, 'https://ror.org/05arrjj36', 'en', 1, 'https://ror.org/05arrjj36 Federation of Animal Science Societies'),
(11633, 'https://ror.org/02k674x39', 'en', 1, 'https://ror.org/02k674x39 Park Nicollet Clinic'),
(11634, 'https://ror.org/028cbaf58', 'en', 1, 'https://ror.org/028cbaf58 Practical Farmers of Iowa'),
(11635, 'https://ror.org/04xk5ks51', 'en', 1, 'https://ror.org/04xk5ks51 North Carolina Science, Mathematics, and Technology Education Center'),
(11636, 'https://ror.org/01qyx9v32', 'no_lang_code', 1, 'https://ror.org/01qyx9v32 Prairie Gold (United States)'),
(11637, 'https://ror.org/026b3nr59', 'no_lang_code', 1, 'https://ror.org/026b3nr59 Sims Brothers (United States)'),
(11638, 'https://ror.org/00nqqjw80', 'en', 1, 'https://ror.org/00nqqjw80 Federation of Southern Cooperatives Land Assistance Fund'),
(11639, 'https://ror.org/04rv9a088', 'en', 1, 'https://ror.org/04rv9a088 Singularity University Universidad de la Singularidad'),
(11640, 'https://ror.org/04k3tjf68', 'en', 1, 'https://ror.org/04k3tjf68 Sitka Sound Science Center'),
(11641, 'https://ror.org/03zksk821', 'en', 1, 'https://ror.org/03zksk821 North Coast Opportunities'),
(11642, 'https://ror.org/03377s592', 'no_lang_code', 1, 'https://ror.org/03377s592 Skolex Biotechnologies (United States)'),
(11643, 'https://ror.org/00reav381', 'en', 1, 'https://ror.org/00reav381 The Garden Church'),
(11644, 'https://ror.org/02javd718', 'no_lang_code', 1, 'https://ror.org/02javd718 Smith-Root (United States)'),
(11645, 'https://ror.org/036hkvc70', 'en', 1, 'https://ror.org/036hkvc70 Europeana Foundation Stichting Europeana'),
(11646, 'https://ror.org/0316y8420', 'no_lang_code', 1, 'https://ror.org/0316y8420 Fiberstar (United States)'),
(11647, 'https://ror.org/045m6nf19', 'no_lang_code', 1, 'https://ror.org/045m6nf19 Fibertek (United States)'),
(11648, 'https://ror.org/00jk68903', 'en', 1, 'https://ror.org/00jk68903 North East Community Center'),
(11649, 'https://ror.org/02rwmrd69', 'no_lang_code', 1, 'https://ror.org/02rwmrd69 SMK Plants (United States)'),
(11650, 'https://ror.org/0195yp903', 'en', 1, 'https://ror.org/0195yp903 Society for In Vitro Biology'),
(11651, 'https://ror.org/02rpq7p88', 'no_lang_code', 1, 'https://ror.org/02rpq7p88 ProFishent (United States)'),
(11652, 'https://ror.org/02ytpy253', 'en', 1, 'https://ror.org/02ytpy253 Society for Nutrition Education and Behavior'),
(11653, 'https://ror.org/03w0zcm71', 'en', 1, 'https://ror.org/03w0zcm71 Project Food, Land and People'),
(11654, 'https://ror.org/04w57r136', 'en', 1, 'https://ror.org/04w57r136 First Nations Development Institute'),
(11655, 'https://ror.org/017t84284', 'en', 1, 'https://ror.org/017t84284 Northeast Organic Farming Association of New Jersey'),
(11656, 'https://ror.org/01714zp28', 'no_lang_code', 1, 'https://ror.org/01714zp28 Prometheus Energy (United States)'),
(11657, 'https://ror.org/04vvrxd09', 'en', 1, 'https://ror.org/04vvrxd09 Weeksville Heritage Center'),
(11658, 'https://ror.org/027pgkr79', 'en', 1, 'https://ror.org/027pgkr79 Northeast Organic Farming Association of New York'),
(11659, 'https://ror.org/02eja2g37', 'no_lang_code', 1, 'https://ror.org/02eja2g37 Melt Organic (United States)'),
(11660, 'https://ror.org/0126jpc81', 'en', 1, 'https://ror.org/0126jpc81 Flathead Valley Community College'),
(11661, 'https://ror.org/01cys2m19', 'en', 1, 'https://ror.org/01cys2m19 Chiricahua Community Health Centers'),
(11662, 'https://ror.org/04pjjk226', 'no_lang_code', 1, 'https://ror.org/04pjjk226 Prove IT (United States)'),
(11663, 'https://ror.org/00ha29405', 'no_lang_code', 1, 'https://ror.org/00ha29405 Soil Born Farms Urban Agriculture & Education Project (United States)'),
(11664, 'https://ror.org/03y87q061', 'en', 1, 'https://ror.org/03y87q061 Public Broadcasting Service'),
(11665, 'https://ror.org/0381kjh19', 'en', 1, 'https://ror.org/0381kjh19 Northeast Wisconsin Technical College'),
(11666, 'https://ror.org/021bvhv31', 'en', 1, 'https://ror.org/021bvhv31 Florida Agriculture in the Classroom'),
(11667, 'https://ror.org/03jy13477', 'en', 1, 'https://ror.org/03jy13477 Public Policy Institute of California'),
(11668, 'https://ror.org/05q4r7x36', 'no_lang_code', 1, 'https://ror.org/05q4r7x36 Armadillo Aerospace (United States)'),
(11669, 'https://ror.org/05pdk8j26', 'en', 1, 'https://ror.org/05pdk8j26 Northern California Regional Land Trust'),
(11670, 'https://ror.org/03z7g2p93', 'en', 1, 'https://ror.org/03z7g2p93 Cody Foundation'),
(11671, 'https://ror.org/03zk2pm28', 'no_lang_code', 1, 'https://ror.org/03zk2pm28 Pulsar Informatics (United States)'),
(11672, 'https://ror.org/01dknz144', 'en', 1, 'https://ror.org/01dknz144 Solid Ground'),
(11673, 'https://ror.org/02528vg72', 'no_lang_code', 1, 'https://ror.org/02528vg72 Star Roses and Plants (United States)'),
(11674, 'https://ror.org/0154eyq57', 'no_lang_code', 1, 'https://ror.org/0154eyq57 Quad County Corn Processors (United States)'),
(11675, 'https://ror.org/003j7nn34', 'no_lang_code', 1, 'https://ror.org/003j7nn34 EnerSys (United States)'),
(11676, 'https://ror.org/02y4abh66', 'en', 1, 'https://ror.org/02y4abh66 Upstate Freshwater Institute'),
(11677, 'https://ror.org/04jv3db71', 'no_lang_code', 1, 'https://ror.org/04jv3db71 Quantalux (United States)'),
(11678, 'https://ror.org/01fmj4m76', 'no_lang_code', 1, 'https://ror.org/01fmj4m76 Urban Tilth'),
(11679, 'https://ror.org/04j6nkt56', 'no_lang_code', 1, 'https://ror.org/04j6nkt56 Xylem (United States)'),
(11680, 'https://ror.org/04rfz4f93', 'no_lang_code', 1, 'https://ror.org/04rfz4f93 Quasar Energy Group (United States)'),
(11681, 'https://ror.org/01yxq8q59', 'en', 1, 'https://ror.org/01yxq8q59 Nuestras Raices'),
(11682, 'https://ror.org/04az0sk32', 'en', 1, 'https://ror.org/04az0sk32 Sound Watershed Consulting'),
(11683, 'https://ror.org/03nhd0t24', 'en', 1, 'https://ror.org/03nhd0t24 Urban Tree Connection'),
(11684, 'https://ror.org/019zszt41', 'en', 1, 'https://ror.org/019zszt41 South Routt School District'),
(11685, 'https://ror.org/02ha9ms92', 'no_lang_code', 1, 'https://ror.org/02ha9ms92 VIC Technology Venture Development (United States)'),
(11686, 'https://ror.org/04azvn561', 'en', 1, 'https://ror.org/04azvn561 Southside Community Land Trust'),
(11687, 'https://ror.org/01k379e18', 'no_lang_code', 1, 'https://ror.org/01k379e18 Nutrasorb (United States)'),
(11688, 'https://ror.org/02dezma62', 'en', 1, 'https://ror.org/02dezma62 United States Satellite Laboratory'),
(11689, 'https://ror.org/01v4tq883', 'en', 1, 'https://ror.org/01v4tq883 Florida A&M University - Florida State University College of Engineering'),
(11690, 'https://ror.org/01j9a7z15', 'no_lang_code', 1, 'https://ror.org/01j9a7z15 Nutrient Recovery and Upcycling (United States)'),
(11691, 'https://ror.org/01e1zk141', 'en', 1, 'https://ror.org/01e1zk141 Southern New Hampshire Services'),
(11692, 'https://ror.org/05j9nj980', 'no_lang_code', 1, 'https://ror.org/05j9nj980 Rebexsess (United States)'),
(11693, 'https://ror.org/0203ne570', 'en', 1, 'https://ror.org/0203ne570 Recirculating Farms Coalition'),
(11694, 'https://ror.org/006r49z69', 'no_lang_code', 1, 'https://ror.org/006r49z69 NVision Solutions (United States)'),
(11695, 'https://ror.org/027xetj30', 'no_lang_code', 1, 'https://ror.org/027xetj30 Reflective X Ray Optics'),
(11696, 'https://ror.org/023bbvw72', 'en', 1, 'https://ror.org/023bbvw72 Southern Ute Community Action Programs'),
(11697, 'https://ror.org/04j8vyy64', 'no_lang_code', 1, 'https://ror.org/04j8vyy64 Oahu Community Recycling (United States)'),
(11698, 'https://ror.org/04nkbtf36', 'en', 1, 'https://ror.org/04nkbtf36 Southwest Georgia Project for Community Education'),
(11699, 'https://ror.org/05h7q5t87', 'en', 1, 'https://ror.org/05h7q5t87 Odyssey of the Mind'),
(11700, 'https://ror.org/04hemee20', 'en', 1, 'https://ror.org/04hemee20 Southwestern Indian Polytechnic Institute'),
(11701, 'https://ror.org/00te84g16', 'en', 1, 'https://ror.org/00te84g16 Valley Forge Military Academy and College'),
(11702, 'https://ror.org/02pzjnn79', 'en', 1, 'https://ror.org/02pzjnn79 Regional Environmental Council'),
(11703, 'https://ror.org/026djsb11', 'no_lang_code', 1, 'https://ror.org/026djsb11 Space Environment Technologies (United States)'),
(11704, 'https://ror.org/04tbz4c44', 'no_lang_code', 1, 'https://ror.org/04tbz4c44 Remote Sensing Solutions (United States)'),
(11705, 'https://ror.org/01vp8h012', 'no_lang_code', 1, 'https://ror.org/01vp8h012 Remote Sensing Systems (United States)'),
(11706, 'https://ror.org/04wnnt868', 'en', 1, 'https://ror.org/04wnnt868 Space Florida'),
(11707, 'https://ror.org/0354zqs18', 'no_lang_code', 1, 'https://ror.org/0354zqs18 Oxford Catalysts Group (United States)'),
(11708, 'https://ror.org/003qqj197', 'no_lang_code', 1, 'https://ror.org/003qqj197 Visidyne (United States)'),
(11709, 'https://ror.org/027pcre83', 'en', 1, 'https://ror.org/027pcre83 Space Frontier Foundation'),
(11710, 'https://ror.org/03jbmx182', 'no_lang_code', 1, 'https://ror.org/03jbmx182 Vision Robotics Corporation (United States)'),
(11711, 'https://ror.org/009txp447', 'no_lang_code', 1, 'https://ror.org/009txp447 PureTemp (United States)'),
(11712, 'https://ror.org/04m8h4d24', 'no_lang_code', 1, 'https://ror.org/04m8h4d24 SpaceWorks Enterprises (United States)'),
(11713, 'https://ror.org/05g3rdv23', 'en', 1, 'https://ror.org/05g3rdv23 Waipa Foundation'),
(11714, 'https://ror.org/02by29150', 'no_lang_code', 1, 'https://ror.org/02by29150 Renewable Spirits (United States)'),
(11715, 'https://ror.org/01p9zxq79', 'en', 1, 'https://ror.org/01p9zxq79 Walla Walla Community College'),
(11716, 'https://ror.org/026jgjr74', 'no_lang_code', 1, 'https://ror.org/026jgjr74 Spectral Sciences (United States)'),
(11717, 'https://ror.org/018br7a38', 'en', 1, 'https://ror.org/018br7a38 Walton County School District'),
(11718, 'https://ror.org/0084q6j82', 'no_lang_code', 1, 'https://ror.org/0084q6j82 Wask Engineering (United States)'),
(11719, 'https://ror.org/02darmv56', 'no_lang_code', 1, 'https://ror.org/02darmv56 Geoprobe (United States)'),
(11720, 'https://ror.org/05bbwmf37', 'no_lang_code', 1, 'https://ror.org/05bbwmf37 Wastewater Compliance Systems (United States)'),
(11721, 'https://ror.org/03h67h666', 'no_lang_code', 1, 'https://ror.org/03h67h666 Spensa Technologies (United States)'),
(11722, 'https://ror.org/03vggmh05', 'en', 1, 'https://ror.org/03vggmh05 Polistes Foundation'),
(11723, 'https://ror.org/03r9qqv72', 'no_lang_code', 1, 'https://ror.org/03r9qqv72 Vestaron (United States)'),
(11724, 'https://ror.org/04jyecv51', 'no_lang_code', 1, 'https://ror.org/04jyecv51 ViaSim Solutions'),
(11725, 'https://ror.org/0027k1m19', 'en', 1, 'https://ror.org/0027k1m19 WateReuse Association'),
(11726, 'https://ror.org/00mwjng53', 'en', 1, 'https://ror.org/00mwjng53 South Dakota Discovery Center'),
(11727, 'https://ror.org/050vqjt31', 'en', 1, 'https://ror.org/050vqjt31 Virginia Air and Space Center'),
(11728, 'https://ror.org/0261rqq02', 'en', 1, 'https://ror.org/0261rqq02 Wayne County Regional Educational Service Agency'),
(11729, 'https://ror.org/03ajjha16', 'en', 1, 'https://ror.org/03ajjha16 Resources for Human Development'),
(11730, 'https://ror.org/032e8ae90', 'no_lang_code', 1, 'https://ror.org/032e8ae90 Bee Power (United States)'),
(11731, 'https://ror.org/001vg8g70', 'en', 1, 'https://ror.org/001vg8g70 Re:Vision'),
(11732, 'https://ror.org/03rksbs88', 'en', 1, 'https://ror.org/03rksbs88 West Hills Community College District'),
(11733, 'https://ror.org/02s09ka34', 'no_lang_code', 1, 'https://ror.org/02s09ka34 SSS Optical Technologies'),
(11734, 'https://ror.org/02ygt0g54', 'en', 1, 'https://ror.org/02ygt0g54 Tohono O''odham Community Action'),
(11735, 'https://ror.org/05tw37d72', 'en', 1, 'https://ror.org/05tw37d72 St. Mary''s Health System'),
(11736, 'https://ror.org/030hzjj50', 'en', 1, 'https://ror.org/030hzjj50 Rhode Island Association of Conservation Districts'),
(11737, 'https://ror.org/03xts5k97', 'en', 1, 'https://ror.org/03xts5k97 Tompkins-Seneca-Tioga Board of Cooperative Educational Services'),
(11738, 'https://ror.org/05tkzae94', 'en', 1, 'https://ror.org/05tkzae94 National Women in Agriculture Association'),
(11739, 'https://ror.org/05gztep63', 'no_lang_code', 1, 'https://ror.org/05gztep63 Top 10 Produce (United States)'),
(11740, 'https://ror.org/05mvea908', 'en', 1, 'https://ror.org/05mvea908 Total Learning Research Institute'),
(11741, 'https://ror.org/017w6as65', 'en', 1, 'https://ror.org/017w6as65 Staunton Creative Community Fund'),
(11742, 'https://ror.org/026apfz04', 'no_lang_code', 1, 'https://ror.org/026apfz04 Tova Industries (United States)'),
(11743, 'https://ror.org/02try9452', 'no_lang_code', 1, 'https://ror.org/02try9452 Sea Bird Electronics (United States)'),
(11744, 'https://ror.org/04wprn722', 'en', 1, 'https://ror.org/04wprn722 Tranquility Base Massage & Day Spa'),
(11745, 'https://ror.org/05gx58798', 'no_lang_code', 1, 'https://ror.org/05gx58798 Ridge Quest (United States)'),
(11746, 'https://ror.org/03q18z722', 'no_lang_code', 1, 'https://ror.org/03q18z722 Western Laboratories (United States)'),
(11747, 'https://ror.org/03h3tdh87', 'no_lang_code', 1, 'https://ror.org/03h3tdh87 Stellar Solutions (United States)'),
(11748, 'https://ror.org/043wzsx85', 'no_lang_code', 1, 'https://ror.org/043wzsx85 Rio Culebra Cooperative (United States)'),
(11749, 'https://ror.org/04kjecg97', 'no_lang_code', 1, 'https://ror.org/04kjecg97 TransGenada (United States)'),
(11750, 'https://ror.org/01hec2e25', 'no_lang_code', 1, 'https://ror.org/01hec2e25 Westscape Wholesale Nursery (United States)'),
(11751, 'https://ror.org/011zr3t28', 'en', 1, 'https://ror.org/011zr3t28 Rio Grande Valley Science Association'),
(11752, 'https://ror.org/02smbdp69', 'en', 1, 'https://ror.org/02smbdp69 Rio Puerco & Jemez Watershed Alliance'),
(11753, 'https://ror.org/01q1eja83', 'en', 1, 'https://ror.org/01q1eja83 Treasure Valley Community College'),
(11754, 'https://ror.org/037ynvv94', 'no_lang_code', 1, 'https://ror.org/037ynvv94 Ripple Rock Fish Farms (United States)'),
(11755, 'https://ror.org/00qsx7902', 'no_lang_code', 1, 'https://ror.org/00qsx7902 Trellis Growing Systems'),
(11756, 'https://ror.org/00hyc4r79', 'no_lang_code', 1, 'https://ror.org/00hyc4r79 Rivertop Renewables (United States)'),
(11757, 'https://ror.org/00eczry62', 'no_lang_code', 1, 'https://ror.org/00eczry62 Troutlodge (United States)'),
(11758, 'https://ror.org/03aswyk21', 'en', 1, 'https://ror.org/03aswyk21 White Earth Tribal and Community College'),
(11759, 'https://ror.org/05sn2rv43', 'no_lang_code', 1, 'https://ror.org/05sn2rv43 Robert Miller Consulting'),
(11760, 'https://ror.org/05kp9q024', 'en', 1, 'https://ror.org/05kp9q024 Robeson Community College'),
(11761, 'https://ror.org/022mnfq26', 'en', 1, 'https://ror.org/022mnfq26 Stone Barns Center for Food & Agriculture'),
(11762, 'https://ror.org/04613d274', 'en', 1, 'https://ror.org/04613d274 Robotics Education and Competition Foundation'),
(11763, 'https://ror.org/03hp16c30', 'no_lang_code', 1, 'https://ror.org/03hp16c30 WholeTrees (United States)'),
(11764, 'https://ror.org/05b04nk22', 'en', 1, 'https://ror.org/05b04nk22 Truly Living Well'),
(11765, 'https://ror.org/035wv3h26', 'no_lang_code', 1, 'https://ror.org/035wv3h26 Roffer’s Ocean Fishing Forecasting Service'),
(11766, 'https://ror.org/02r7v3q78', 'no_lang_code', 1, 'https://ror.org/02r7v3q78 Wilks (United States)'),
(11767, 'https://ror.org/01d76dn02', 'no_lang_code', 1, 'https://ror.org/01d76dn02 Rolling Hills Research (United States)'),
(11768, 'https://ror.org/00y27y405', 'en', 1, 'https://ror.org/00y27y405 Tulsa Economic Development Corporation'),
(11769, 'https://ror.org/04bc26c24', 'en', 1, 'https://ror.org/04bc26c24 Wilson''s Cedar Point Farm'),
(11770, 'https://ror.org/0423qtd98', 'no_lang_code', 1, 'https://ror.org/0423qtd98 StormCenter Communications (United States)'),
(11771, 'https://ror.org/0017nnr12', 'en', 1, 'https://ror.org/0017nnr12 Strategic Solutions International'),
(11772, 'https://ror.org/03qsrw587', 'no_lang_code', 1, 'https://ror.org/03qsrw587 Stratton Park Engineering Company (United States)'),
(11773, 'https://ror.org/012t5jf53', 'no_lang_code', 1, 'https://ror.org/012t5jf53 Worm Power (United States)'),
(11774, 'https://ror.org/01j8e0w91', 'no_lang_code', 1, 'https://ror.org/01j8e0w91 SuGanit Systems (United States)'),
(11775, 'https://ror.org/04myc6802', 'no_lang_code', 1, 'https://ror.org/04myc6802 Rubicon Foods (United States)'),
(11776, 'https://ror.org/053s72389', 'en', 1, 'https://ror.org/053s72389 Coalición Rural Rural Coalition'),
(11777, 'https://ror.org/01qckt681', 'en', 1, 'https://ror.org/01qckt681 Rural Community Development Resources'),
(11778, 'https://ror.org/01g5kcp58', 'en', 1, 'https://ror.org/01g5kcp58 Rural Resources'),
(11779, 'https://ror.org/01v3dd888', 'en', 1, 'https://ror.org/01v3dd888 Uncommon Good'),
(11780, 'https://ror.org/004qf6v24', 'en', 1, 'https://ror.org/004qf6v24 United Charitable'),
(11781, 'https://ror.org/050sgaw73', 'no_lang_code', 1, 'https://ror.org/050sgaw73 Summit Seed (United States)'),
(11782, 'https://ror.org/004vck917', 'en', 1, 'https://ror.org/004vck917 Winston County Self Help Cooperative'),
(11783, 'https://ror.org/05t1dq444', 'en', 1, 'https://ror.org/05t1dq444 Supreme Court of Virginia'),
(11784, 'https://ror.org/00by51808', 'no_lang_code', 1, 'https://ror.org/00by51808 Mƶlnlycke Health Care (United States)'),
(11785, 'https://ror.org/04tah4m03', 'en', 1, 'https://ror.org/04tah4m03 Sustainable Agriculture Education'),
(11786, 'https://ror.org/04x34yn51', 'en', 1, 'https://ror.org/04x34yn51 Southeastern Consortium for Minorities in Engineering'),
(11787, 'https://ror.org/00drc7v15', 'en', 1, 'https://ror.org/00drc7v15 Sustainable Food Center'),
(11788, 'https://ror.org/03mz6dw96', 'no_lang_code', 1, 'https://ror.org/03mz6dw96 Synthetic Genomics (United States)'),
(11789, 'https://ror.org/016dza536', 'en', 1, 'https://ror.org/016dza536 For Inspiration and Recognition of Science and Technology'),
(11790, 'https://ror.org/05fz3ff46', 'no_lang_code', 1, 'https://ror.org/05fz3ff46 SynTouch (United States)'),
(11791, 'https://ror.org/04tm1j008', 'no_lang_code', 1, 'https://ror.org/04tm1j008 Saint Onge Orchids (United States)'),
(11792, 'https://ror.org/013z7wp67', 'en', 1, 'https://ror.org/013z7wp67 Saginaw Chippewa Indian Tribal Council'),
(11793, 'https://ror.org/00jk8a678', 'en', 1, 'https://ror.org/00jk8a678 St. Patrick Catholic High School'),
(11794, 'https://ror.org/03zpp5097', 'en', 1, 'https://ror.org/03zpp5097 Northwest Regional Planning Commission'),
(11795, 'https://ror.org/01ffncx77', 'en', 1, 'https://ror.org/01ffncx77 United Teen Equality Center'),
(11796, 'https://ror.org/05ac9wt58', 'no_lang_code', 1, 'https://ror.org/05ac9wt58 Wiser Systems (United States)'),
(11797, 'https://ror.org/014c0sj69', 'en', 1, 'https://ror.org/014c0sj69 Sanilac Intermediate School District'),
(11798, 'https://ror.org/01htf3d94', 'no_lang_code', 1, 'https://ror.org/01htf3d94 SarTec (United States)'),
(11799, 'https://ror.org/05s3s9p98', 'en', 1, 'https://ror.org/05s3s9p98 Saturday Academy'),
(11800, 'https://ror.org/02knxde55', 'en', 1, 'https://ror.org/02knxde55 Women Food and Agriculture Network'),
(11801, 'https://ror.org/03xg63v87', 'no_lang_code', 1, 'https://ror.org/03xg63v87 Taber International (United States)'),
(11802, 'https://ror.org/02m80r109', 'no_lang_code', 1, 'https://ror.org/02m80r109 Scenic Valley Farms'),
(11803, 'https://ror.org/03nt2eg08', 'no_lang_code', 1, 'https://ror.org/03nt2eg08 Tao Systems (United States)'),
(11804, 'https://ror.org/00b4jn519', 'en', 1, 'https://ror.org/00b4jn519 United Way of Greater Portland'),
(11805, 'https://ror.org/01rzn6m24', 'en', 1, 'https://ror.org/01rzn6m24 Women''s Community Revitalization Project'),
(11806, 'https://ror.org/02rvwv313', 'en', 1, 'https://ror.org/02rvwv313 The Big Garden'),
(11807, 'https://ror.org/015v8hy06', 'no_lang_code', 1, 'https://ror.org/015v8hy06 Taylor Shellfish Farms (United States)'),
(11808, 'https://ror.org/054t1pd20', 'no_lang_code', 1, 'https://ror.org/054t1pd20 Schillinger Genetics (United States)'),
(11809, 'https://ror.org/01rcprz82', 'no_lang_code', 1, 'https://ror.org/01rcprz82 Tea Spot (United States)'),
(11810, 'https://ror.org/009za6q24', 'en', 1, 'https://ror.org/009za6q24 Teach For America'),
(11811, 'https://ror.org/00v75px85', 'en', 1, 'https://ror.org/00v75px85 Women’s Environmental Institute'),
(11812, 'https://ror.org/04qegdw32', 'en', 1, 'https://ror.org/04qegdw32 Brevard Public Schools'),
(11813, 'https://ror.org/024z3s669', 'en', 1, 'https://ror.org/024z3s669 Orange County Public Schools'),
(11814, 'https://ror.org/041cwwp58', 'no_lang_code', 1, 'https://ror.org/041cwwp58 Technical Design (United States)'),
(11815, 'https://ror.org/03cbfdp48', 'en', 1, 'https://ror.org/03cbfdp48 Polk County Public Schools'),
(11816, 'https://ror.org/04jjg7z32', 'en', 1, 'https://ror.org/04jjg7z32 Capital Caring'),
(11817, 'https://ror.org/02f7txf64', 'en', 1, 'https://ror.org/02f7txf64 Technical Education Research Centers'),
(11818, 'https://ror.org/03q6bcv18', 'no_lang_code', 1, 'https://ror.org/03q6bcv18 Science and Sensors Technologies (United States)'),
(11819, 'https://ror.org/05pw5zy84', 'no_lang_code', 1, 'https://ror.org/05pw5zy84 Science and Technology Corporation (United States)'),
(11820, 'https://ror.org/005mr0595', 'no_lang_code', 1, 'https://ror.org/005mr0595 Technology Holding (United States)'),
(11821, 'https://ror.org/0263dr507', 'en', 1, 'https://ror.org/0263dr507 Science Center of Iowa'),
(11822, 'https://ror.org/03ksh5m61', 'no_lang_code', 1, 'https://ror.org/03ksh5m61 Technova Corporation (United States)'),
(11823, 'https://ror.org/03xec1444', 'no_lang_code', 1, 'https://ror.org/03xec1444 Science Systems and Applications (United States)'),
(11824, 'https://ror.org/00my6s217', 'en', 1, 'https://ror.org/00my6s217 ScienceSouth'),
(11825, 'https://ror.org/02amkdd40', 'no_lang_code', 1, 'https://ror.org/02amkdd40 World Centric (United States)'),
(11826, 'https://ror.org/01b9zn241', 'no_lang_code', 1, 'https://ror.org/01b9zn241 WhyHunger'),
(11827, 'https://ror.org/03y4r3n15', 'no_lang_code', 1, 'https://ror.org/03y4r3n15 Scientific Fishery Systems (United States)'),
(11828, 'https://ror.org/043svzt04', 'no_lang_code', 1, 'https://ror.org/043svzt04 World Winds (United States)'),
(11829, 'https://ror.org/00r33es57', 'no_lang_code', 1, 'https://ror.org/00r33es57 Sea and Reef Aquaculture (United States)'),
(11830, 'https://ror.org/02xv7d798', 'en', 1, 'https://ror.org/02xv7d798 Seaberry Farm'),
(11831, 'https://ror.org/03y8t7556', 'no_lang_code', 1, 'https://ror.org/03y8t7556 Terrenew (United States)'),
(11832, 'https://ror.org/04fxr2t73', 'no_lang_code', 1, 'https://ror.org/04fxr2t73 TessArae (United States)'),
(11833, 'https://ror.org/0001j6637', 'no_lang_code', 1, 'https://ror.org/0001j6637 Tethers Unlimited (United States)'),
(11834, 'https://ror.org/05se9te27', 'no_lang_code', 1, 'https://ror.org/05se9te27 Searchlight Sensors (United States)'),
(11835, 'https://ror.org/03fk8t087', 'no_lang_code', 1, 'https://ror.org/03fk8t087 Tetra Tech (United States)'),
(11836, 'https://ror.org/04x0dc707', 'en', 1, 'https://ror.org/04x0dc707 Seattle Aquarium'),
(11837, 'https://ror.org/05bwzbr45', 'no_lang_code', 1, 'https://ror.org/05bwzbr45 Tetracore (United States)'),
(11838, 'https://ror.org/05mdqv554', 'en', 1, 'https://ror.org/05mdqv554 Tilth Alliance'),
(11839, 'https://ror.org/02q6d6830', 'no_lang_code', 1, 'https://ror.org/02q6d6830 Secor Strategies (United States)'),
(11840, 'https://ror.org/04ztkpw59', 'no_lang_code', 1, 'https://ror.org/04ztkpw59 Xiomas Technologies (United States)'),
(11841, 'https://ror.org/00e84bb93', 'no_lang_code', 1, 'https://ror.org/00e84bb93 Xnano Sciences (United States)'),
(11842, 'https://ror.org/0572r3k48', 'no_lang_code', 1, 'https://ror.org/0572r3k48 SBS CyberSecurity (United States)'),
(11843, 'https://ror.org/05f50w156', 'en', 1, 'https://ror.org/05f50w156 Texas State Technical College West Texas'),
(11844, 'https://ror.org/05dgy4t92', 'en', 1, 'https://ror.org/05dgy4t92 Seminole Public Schools'),
(11845, 'https://ror.org/0082ybm03', 'en', 1, 'https://ror.org/0082ybm03 Texas Tech University System'),
(11846, 'https://ror.org/0148agt43', 'en', 1, 'https://ror.org/0148agt43 Texas/Mexico Border Coalition'),
(11847, 'https://ror.org/00xaskn96', 'no_lang_code', 1, 'https://ror.org/00xaskn96 Everest Technologies (United States)'),
(11848, 'https://ror.org/058dz5f86', 'en', 1, 'https://ror.org/058dz5f86 Thanksgiving Point'),
(11849, 'https://ror.org/01zmv6c05', 'en', 1, 'https://ror.org/01zmv6c05 Center for Research on the Changing Earth System'),
(11850, 'https://ror.org/005aym849', 'en', 1, 'https://ror.org/005aym849 Yakima Valley Community College'),
(11851, 'https://ror.org/03zt7kt60', 'no_lang_code', 1, 'https://ror.org/03zt7kt60 SePRO (United States)'),
(11852, 'https://ror.org/05g4yrw83', 'en', 1, 'https://ror.org/05g4yrw83 International Society for Technology in Education'),
(11853, 'https://ror.org/02p038k52', 'en', 1, 'https://ror.org/02p038k52 Shawnee Community College'),
(11854, 'https://ror.org/05kywb567', 'en', 1, 'https://ror.org/05kywb567 Yellowstone Ecological Research Center'),
(11855, 'https://ror.org/04fm6gx83', 'en', 1, 'https://ror.org/04fm6gx83 Vernon Verona Sherrill School District'),
(11856, 'https://ror.org/037vegb36', 'en', 1, 'https://ror.org/037vegb36 Kerr Center for Sustainable Agriculture'),
(11857, 'https://ror.org/00940ss05', 'en', 1, 'https://ror.org/00940ss05 Shields Valley Public Schools'),
(11858, 'https://ror.org/037kkjm30', 'no_lang_code', 1, 'https://ror.org/037kkjm30 Yenkin Majestic Industrial Coatings Division (United States)'),
(11859, 'https://ror.org/0139zfs13', 'en', 1, 'https://ror.org/0139zfs13 Kohala Center'),
(11860, 'https://ror.org/01xetyj79', 'no_lang_code', 1, 'https://ror.org/01xetyj79 Youngstown Neighborhood Development Corporation (United States)'),
(11861, 'https://ror.org/05m1tqb62', 'en', 1, 'https://ror.org/05m1tqb62 Youth Farm'),
(11862, 'https://ror.org/03fm9hg19', 'en', 1, 'https://ror.org/03fm9hg19 Yurok Tribe Environmental Program'),
(11863, 'https://ror.org/03wkygj08', 'no_lang_code', 1, 'https://ror.org/03wkygj08 Z4 Energy Systems (United States)'),
(11864, 'https://ror.org/01p8br322', 'no_lang_code', 1, 'https://ror.org/01p8br322 Biomarker Strategies (United States)'),
(11865, 'https://ror.org/00x1q5565', 'en', 1, 'https://ror.org/00x1q5565 Bryan Health'),
(11866, 'https://ror.org/05hhhbf86', 'en', 1, 'https://ror.org/05hhhbf86 Arabkir Joint Medical Center Ō±Ö€Õ”Õ¢ÕÆÕ«Ö€ Ō²ÕŖÕ·ÕÆÕ”ÕÆÕ”Õ¶ Õ€Õ”Õ“Õ”Õ¬Õ«Ö€'),
(11867, 'https://ror.org/04cjbhq14', 'no_lang_code', 1, 'https://ror.org/04cjbhq14 Regen BioPharma (United States)'),
(11868, 'https://ror.org/03350ng14', 'en', 1, 'https://ror.org/03350ng14 Buckelew Programs'),
(11869, 'https://ror.org/05gaksk83', 'en', 1, 'https://ror.org/05gaksk83 Elucid Bioimaging'),
(11870, 'https://ror.org/05rcrh741', 'de', 1, 'https://ror.org/05rcrh741 BioMed zet Life Science'),
(11871, 'https://ror.org/02mjtc790', 'en', 1, 'https://ror.org/02mjtc790 Building Blocks Learning Academy'),
(11872, 'https://ror.org/03bwmmt72', 'en', 1, 'https://ror.org/03bwmmt72 Building Bridges Child Development Center'),
(11873, 'https://ror.org/02690tv45', 'en', 1, 'https://ror.org/02690tv45 The Wildlife Society'),
(11874, 'https://ror.org/02hjww730', 'en', 1, 'https://ror.org/02hjww730 Butte County Office of Education'),
(11875, 'https://ror.org/00tk4hv41', 'no_lang_code', 1, 'https://ror.org/00tk4hv41 Thin Air Nitrogen Solutions (United States)'),
(11876, 'https://ror.org/05t7rnh97', 'en', 1, 'https://ror.org/05t7rnh97 Asthma and Allergy Specialists'),
(11877, 'https://ror.org/038qw8663', 'no_lang_code', 1, 'https://ror.org/038qw8663 This Old Farm (United States)'),
(11878, 'https://ror.org/03c9d3902', 'no_lang_code', 1, 'https://ror.org/03c9d3902 BioMedicure (United States)'),
(11879, 'https://ror.org/01ytrmn44', 'en', 1, 'https://ror.org/01ytrmn44 C. Thomas Clagett, Jr. Memorial Clinic and Regatta'),
(11880, 'https://ror.org/00ymmrt60', 'no_lang_code', 1, 'https://ror.org/00ymmrt60 C2N Diagnostics (United States)'),
(11881, 'https://ror.org/04y5apy07', 'no_lang_code', 1, 'https://ror.org/04y5apy07 Biomedisyn (United States)'),
(11882, 'https://ror.org/02bcy6s93', 'no_lang_code', 1, 'https://ror.org/02bcy6s93 C5•6 Technologies (United States)'),
(11883, 'https://ror.org/003r3ng51', 'en', 1, 'https://ror.org/003r3ng51 Tift County School District'),
(11884, 'https://ror.org/05r2sf328', 'no_lang_code', 1, 'https://ror.org/05r2sf328 Valerion Therapeutics (United States)'),
(11885, 'https://ror.org/032c26s44', 'no_lang_code', 1, 'https://ror.org/032c26s44 Highlight Therapeutics (Spain)'),
(11886, 'https://ror.org/00kg9vk05', 'no_lang_code', 1, 'https://ror.org/00kg9vk05 Bionovo (United States)'),
(11887, 'https://ror.org/04npj6h08', 'en', 1, 'https://ror.org/04npj6h08 Association of Pediatric Hematology/Oncology Nurses'),
(11888, 'https://ror.org/02cfzba28', 'fr', 1, 'https://ror.org/02cfzba28 Association Robert DebrƩ'),
(11889, 'https://ror.org/024avgr28', 'fr', 1, 'https://ror.org/024avgr28 Association Shifa des Maladies NeuroMusculaires'),
(11890, 'https://ror.org/01ba2ff92', 'no_lang_code', 1, 'https://ror.org/01ba2ff92 Biopico Systems (United States)'),
(11891, 'https://ror.org/04c1ecw45', 'en', 1, 'https://ror.org/04c1ecw45 Association to Benefit Children'),
(11892, 'https://ror.org/01xrrhw27', 'en', 1, 'https://ror.org/01xrrhw27 Astella Development'),
(11893, 'https://ror.org/05fpayd96', 'no_lang_code', 1, 'https://ror.org/05fpayd96 Bioproximity (United States)'),
(11894, 'https://ror.org/03zzy2b27', 'no_lang_code', 1, 'https://ror.org/03zzy2b27 Plex Pharmaceuticals (United States)'),
(11895, 'https://ror.org/01rqg5073', 'no_lang_code', 1, 'https://ror.org/01rqg5073 BioRealm (United States)'),
(11896, 'https://ror.org/01y42sa33', 'en', 1, 'https://ror.org/01y42sa33 Astraea Lesbian Foundation For Justice'),
(11897, 'https://ror.org/029bpx402', 'en', 1, 'https://ror.org/029bpx402 Calhoun County Health Department'),
(11898, 'https://ror.org/03pzyw636', 'no_lang_code', 1, 'https://ror.org/03pzyw636 Califia Bio (United States)'),
(11899, 'https://ror.org/04zkytf76', 'en', 1, 'https://ror.org/04zkytf76 Asylum Access'),
(11900, 'https://ror.org/02b0ps544', 'no_lang_code', 1, 'https://ror.org/02b0ps544 PharmaBioSource (United States)'),
(11901, 'https://ror.org/03xzsxe18', 'en', 1, 'https://ror.org/03xzsxe18 California Adaptive Rowing Program'),
(11902, 'https://ror.org/02dja5v25', 'en', 1, 'https://ror.org/02dja5v25 California Aquatic Therapy and Wellness Center'),
(11903, 'https://ror.org/01npchg06', 'en', 1, 'https://ror.org/01npchg06 California Consortium of Addiction Programs and Professionals'),
(11904, 'https://ror.org/02q8btt40', 'no_lang_code', 1, 'https://ror.org/02q8btt40 Aterica (Canada)'),
(11905, 'https://ror.org/02cbyhv26', 'en', 1, 'https://ror.org/02cbyhv26 Californians for Disability Rights'),
(11906, 'https://ror.org/039ep1930', 'en', 1, 'https://ror.org/039ep1930 California Black Health Network'),
(11907, 'https://ror.org/0209tmn27', 'en', 1, 'https://ror.org/0209tmn27 Coalition for Compassionate Care of California'),
(11908, 'https://ror.org/028jy6j07', 'no_lang_code', 1, 'https://ror.org/028jy6j07 Biothera (United States)'),
(11909, 'https://ror.org/046rsbb51', 'en', 1, 'https://ror.org/046rsbb51 California Ear Institute'),
(11910, 'https://ror.org/0317mgy72', 'en', 1, 'https://ror.org/0317mgy72 Disability Rights Legal Center'),
(11911, 'https://ror.org/05rj6k491', 'en', 1, 'https://ror.org/05rj6k491 California Health Collaborative'),
(11912, 'https://ror.org/055dbxv70', 'no_lang_code', 1, 'https://ror.org/055dbxv70 Biovista (United States)'),
(11913, 'https://ror.org/05hamyn96', 'en', 1, 'https://ror.org/05hamyn96 Ventura County Health Care Agency'),
(11914, 'https://ror.org/03s4s4880', 'no_lang_code', 1, 'https://ror.org/03s4s4880 Athenese (United States)'),
(11915, 'https://ror.org/0117w1x13', 'en', 1, 'https://ror.org/0117w1x13 Athens Nurses Clinic'),
(11916, 'https://ror.org/04j2g1y38', 'en', 1, 'https://ror.org/04j2g1y38 California Hospital Association'),
(11917, 'https://ror.org/04645z906', 'en', 1, 'https://ror.org/04645z906 Athlete''s for Education'),
(11918, 'https://ror.org/04grvsk22', 'en', 1, 'https://ror.org/04grvsk22 California Hospital Medical Center Foundation'),
(11919, 'https://ror.org/00b0aes62', 'en', 1, 'https://ror.org/00b0aes62 Indian Health Council'),
(11920, 'https://ror.org/02ggpr832', 'en', 1, 'https://ror.org/02ggpr832 California Prostitutes Education Project'),
(11921, 'https://ror.org/01p7r2f35', 'en', 1, 'https://ror.org/01p7r2f35 Athletes Joined Against Spondylitis'),
(11922, 'https://ror.org/04xsc6e37', 'en', 1, 'https://ror.org/04xsc6e37 Athletics Canada AthlƩtisme Canada'),
(11923, 'https://ror.org/00xgaya81', 'en', 1, 'https://ror.org/00xgaya81 Bipartisan Policy Center'),
(11924, 'https://ror.org/02ygqy715', 'no_lang_code', 1, 'https://ror.org/02ygqy715 Calista Therapeutics (United States)'),
(11925, 'https://ror.org/00fr0gw86', 'en', 1, 'https://ror.org/00fr0gw86 Calmar Pain Relief'),
(11926, 'https://ror.org/004htp828', 'en', 1, 'https://ror.org/004htp828 Cambodian Association of America'),
(11927, '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'),
(11928, 'https://ror.org/01jnqsa93', 'en', 1, 'https://ror.org/01jnqsa93 CAMC Health Education and Research Institute'),
(11929, 'https://ror.org/00w1pae29', 'en', 1, 'https://ror.org/00w1pae29 ProMedica Charles and Virginia Hickman Hospital'),
(11930, 'https://ror.org/03c94dv58', 'en', 1, 'https://ror.org/03c94dv58 Alzforum'),
(11931, 'https://ror.org/00ks34y49', 'en', 1, 'https://ror.org/00ks34y49 Rafiki Coalition'),
(11932, 'https://ror.org/05m45td34', 'no_lang_code', 1, 'https://ror.org/05m45td34 Aaranya Biosciences (India)'),
(11933, 'https://ror.org/01j3vsz59', 'en', 1, 'https://ror.org/01j3vsz59 Atlanta Diabetes Associates'),
(11934, 'https://ror.org/04neva792', 'en', 1, 'https://ror.org/04neva792 Atlantic Cancer Research Institute Institut Atlantique de recherche sur le cancer'),
(11935, 'https://ror.org/032sbdv65', 'en', 1, 'https://ror.org/032sbdv65 Black Women for Wellness'),
(11936, 'https://ror.org/0458xbt64', 'no_lang_code', 1, 'https://ror.org/0458xbt64 ATLAS Neuroengineering (Belgium)'),
(11937, 'https://ror.org/03fyqbt98', 'en', 1, 'https://ror.org/03fyqbt98 Alzheimer''s and Related Disorders Society of India'),
(11938, 'https://ror.org/017phwt11', 'en', 1, 'https://ror.org/017phwt11 Bladen County Schools'),
(11939, 'https://ror.org/05668ct49', 'en', 1, 'https://ror.org/05668ct49 Blanchfield Army Community Hospital'),
(11940, 'https://ror.org/020n75m55', 'en', 1, 'https://ror.org/020n75m55 Camp Aldersgate'),
(11941, 'https://ror.org/00v0x8839', 'no_lang_code', 1, 'https://ror.org/00v0x8839 Ab Medica (Italy)'),
(11942, 'https://ror.org/04749sq68', 'en', 1, 'https://ror.org/04749sq68 Blank Children''s Hospital'),
(11943, 'https://ror.org/01pbevv17', 'en', 1, 'https://ror.org/01pbevv17 Attogen Biomedical Research'),
(11944, 'https://ror.org/01ptc4g94', 'en', 1, 'https://ror.org/01ptc4g94 BlazeSports America'),
(11945, 'https://ror.org/0476dvj30', 'en', 1, 'https://ror.org/0476dvj30 Augusta Victoria Hospital'),
(11946, 'https://ror.org/04p0syp05', 'en', 1, 'https://ror.org/04p0syp05 Alzheimer''s Disease Association of the Philippines'),
(11947, 'https://ror.org/0185drb55', 'en', 1, 'https://ror.org/0185drb55 Alzheimer''s Drug Discovery Foundation'),
(11948, 'https://ror.org/00xeqw708', 'en', 1, 'https://ror.org/00xeqw708 Camp Quality New Jersey'),
(11949, 'https://ror.org/010z87j47', 'en', 1, 'https://ror.org/010z87j47 Camp Twin Lakes'),
(11950, 'https://ror.org/01ar5xt70', 'en', 1, 'https://ror.org/01ar5xt70 Bloomington Health Foundation'),
(11951, 'https://ror.org/023wb1e36', 'no_lang_code', 1, 'https://ror.org/023wb1e36 AurimMed (United States)'),
(11952, 'https://ror.org/01vkzj587', 'en', 1, 'https://ror.org/01vkzj587 Yerevan State Medical University ŌµÖ€Ö‡Õ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ¢ÕŖÕ·ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(11953, 'https://ror.org/02prjad05', 'en', 1, 'https://ror.org/02prjad05 Abilities Unlimited of the Carolinas'),
(11954, 'https://ror.org/035wy8w94', 'en', 1, 'https://ror.org/035wy8w94 Blue Ridge Area Health Education Center'),
(11955, 'https://ror.org/01x22fc24', 'en', 1, 'https://ror.org/01x22fc24 Aunt Martha’s Health and Wellness'),
(11956, 'https://ror.org/01exzfh46', 'en', 1, 'https://ror.org/01exzfh46 Can Do Multiple Sclerosis'),
(11957, 'https://ror.org/04ks41483', 'en', 1, 'https://ror.org/04ks41483 Ability Found'),
(11958, 'https://ror.org/0183pp169', 'en', 1, 'https://ror.org/0183pp169 Ability Production'),
(11959, 'https://ror.org/01nbx5962', 'en', 1, 'https://ror.org/01nbx5962 Blue Ridge Independent Living Center'),
(11960, 'https://ror.org/0070dz419', 'en', 1, 'https://ror.org/0070dz419 AbilityPLUS'),
(11961, 'https://ror.org/01k164012', 'en', 1, 'https://ror.org/01k164012 Canadian Centre on Disability Studies'),
(11962, 'https://ror.org/034ekjs90', 'en', 1, 'https://ror.org/034ekjs90 Quincy Medical Center'),
(11963, 'https://ror.org/04kn0h737', 'no_lang_code', 1, 'https://ror.org/04kn0h737 BlueSky Designs (United States)'),
(11964, 'https://ror.org/05m4e6y57', 'en', 1, 'https://ror.org/05m4e6y57 Cleveland Cord Blood Center'),
(11965, 'https://ror.org/0283c7q62', 'en', 1, 'https://ror.org/0283c7q62 Spinal Cord Injury Alberta'),
(11966, 'https://ror.org/05r7zv414', 'en', 1, 'https://ror.org/05r7zv414 Fonds des Nations Unies pour l''Enfance United Nations Children''s Fund Canada'),
(11967, 'https://ror.org/05t72y326', 'en', 1, 'https://ror.org/05t72y326 Australasian Leukaemia and Lymphoma Group'),
(11968, 'https://ror.org/04kd66c62', 'no_lang_code', 1, 'https://ror.org/04kd66c62 Blueroof Technologies (United States)'),
(11969, 'https://ror.org/007398w55', 'en', 1, 'https://ror.org/007398w55 Australasia Paediatric Endocrine Group'),
(11970, 'https://ror.org/05k321e68', 'no_lang_code', 1, 'https://ror.org/05k321e68 Bnoat Oncology (United States)'),
(11971, 'https://ror.org/04gg0z244', 'en', 1, 'https://ror.org/04gg0z244 Cancer Connection'),
(11972, 'https://ror.org/002cv1w36', 'en', 1, 'https://ror.org/002cv1w36 Australian Foundation for Diabetes Research'),
(11973, 'https://ror.org/056zz0q95', 'en', 1, 'https://ror.org/056zz0q95 American Academy of Otolaryngology — Head and Neck Surgery'),
(11974, 'https://ror.org/04vswev69', 'no_lang_code', 1, 'https://ror.org/04vswev69 Cato BioVentures (United States)'),
(11975, 'https://ror.org/027q7en43', 'en', 1, 'https://ror.org/027q7en43 American Association of Neuropathologists'),
(11976, 'https://ror.org/02svff837', 'en', 1, 'https://ror.org/02svff837 Leading Age'),
(11977, 'https://ror.org/00x584494', 'en', 1, 'https://ror.org/00x584494 American Association on Health and Disability'),
(11978, 'https://ror.org/028g82q49', 'en', 1, 'https://ror.org/028g82q49 Boat People SOS'),
(11979, 'https://ror.org/026ad7v11', 'en', 1, 'https://ror.org/026ad7v11 AutismCare Nepal Society'),
(11980, 'https://ror.org/03hk7j981', 'en', 1, 'https://ror.org/03hk7j981 Autism Treatment Center'),
(11981, 'https://ror.org/046msyg33', 'no_lang_code', 1, 'https://ror.org/046msyg33 BRCR Global (Peru)'),
(11982, 'https://ror.org/00z0kkz74', 'no_lang_code', 1, 'https://ror.org/00z0kkz74 Accelerated Medical Diagnostics (United States)'),
(11983, 'https://ror.org/006eg4f53', 'en', 1, 'https://ror.org/006eg4f53 Boca Raton Museum of Art'),
(11984, 'https://ror.org/04t9k7852', 'en', 1, 'https://ror.org/04t9k7852 Autism Partnership Foundation'),
(11985, 'https://ror.org/03063wv95', 'en', 1, 'https://ror.org/03063wv95 Autism Science Foundation'),
(11986, 'https://ror.org/00dmmws82', 'en', 1, 'https://ror.org/00dmmws82 American Childhood Cancer Organization'),
(11987, 'https://ror.org/02vz4ta64', 'en', 1, 'https://ror.org/02vz4ta64 Camp Boggy Creek'),
(11988, 'https://ror.org/04vdj0y48', 'en', 1, 'https://ror.org/04vdj0y48 Access Living'),
(11989, 'https://ror.org/0100x5843', 'en', 1, 'https://ror.org/0100x5843 Advanced Health Care of Aurora'),
(11990, 'https://ror.org/04jrn9514', 'en', 1, 'https://ror.org/04jrn9514 Access Northern California'),
(11991, 'https://ror.org/000r61a05', 'en', 1, 'https://ror.org/000r61a05 American Federation for Aging Research'),
(11992, 'https://ror.org/022zgjn81', 'no_lang_code', 1, 'https://ror.org/022zgjn81 AccuDava (United States)'),
(11993, 'https://ror.org/00fmr3e85', 'en', 1, 'https://ror.org/00fmr3e85 American Folk Art Museum'),
(11994, 'https://ror.org/04re20p56', 'no_lang_code', 1, 'https://ror.org/04re20p56 Acetylon Pharmaceuticals (United States)'),
(11995, 'https://ror.org/05b8r6069', 'en', 1, 'https://ror.org/05b8r6069 Autistic Women & Nonbinary Network'),
(11996, 'https://ror.org/0219k5g76', 'en', 1, 'https://ror.org/0219k5g76 Bombay College of Pharmacy'),
(11997, 'https://ror.org/01yjcee19', 'en', 1, 'https://ror.org/01yjcee19 Cancer Alliance of Naples'),
(11998, 'https://ror.org/00baer621', 'en', 1, 'https://ror.org/00baer621 Bon Secours Health System'),
(11999, 'https://ror.org/03ea0ep61', 'en', 1, 'https://ror.org/03ea0ep61 Autism360'),
(12000, 'https://ror.org/01gmgva47', 'en', 1, 'https://ror.org/01gmgva47 Autoimmunity Research Foundation'),
(12001, 'https://ror.org/05253xp33', 'no_lang_code', 1, 'https://ror.org/05253xp33 Avails Medical (United States)'),
(12002, 'https://ror.org/03qs1y241', 'en', 1, 'https://ror.org/03qs1y241 Achilles International'),
(12003, 'https://ror.org/04dq3vj35', 'en', 1, 'https://ror.org/04dq3vj35 American Friends of Tel Aviv University'),
(12004, 'https://ror.org/02kw9ya16', 'en', 1, 'https://ror.org/02kw9ya16 Cancer and Chronic Disease Consortium'),
(12005, 'https://ror.org/05md78f75', 'en', 1, 'https://ror.org/05md78f75 ACT for Multiple Sclerosis'),
(12006, 'https://ror.org/04hxzf837', 'en', 1, 'https://ror.org/04hxzf837 ACTION'),
(12007, 'https://ror.org/05tns7243', 'en', 1, 'https://ror.org/05tns7243 Action for Autism'),
(12008, 'https://ror.org/01vv0xf90', 'en', 1, 'https://ror.org/01vv0xf90 Avalon Nature Preserve'),
(12009, 'https://ror.org/058kybv57', 'en', 1, 'https://ror.org/058kybv57 Action Network'),
(12010, 'https://ror.org/0569m7y93', 'no_lang_code', 1, 'https://ror.org/0569m7y93 Avalon Pharma (United States)'),
(12011, 'https://ror.org/02j5e0989', 'en', 1, 'https://ror.org/02j5e0989 Cancer Association of Anderson'),
(12012, 'https://ror.org/04kd24b32', 'en', 1, 'https://ror.org/04kd24b32 Active Disabled Americans'),
(12013, 'https://ror.org/03c8f3524', 'en', 1, 'https://ror.org/03c8f3524 Boone County Health Department'),
(12014, 'https://ror.org/04q33xf47', 'en', 1, 'https://ror.org/04q33xf47 Active Transportation Alliance'),
(12015, 'https://ror.org/00fqa4327', 'no_lang_code', 1, 'https://ror.org/00fqa4327 ActiveSite Pharmaceuticals (United States)'),
(12016, 'https://ror.org/05qap2184', 'no_lang_code', 1, 'https://ror.org/05qap2184 ActoGeniX (Belgium)'),
(12017, 'https://ror.org/004718x66', 'en', 1, 'https://ror.org/004718x66 American Himalayan Foundation'),
(12018, 'https://ror.org/03cvyms32', 'en', 1, 'https://ror.org/03cvyms32 Cancer Association of Greater New Orleans'),
(12019, 'https://ror.org/05pvq8q22', 'no_lang_code', 1, 'https://ror.org/05pvq8q22 Acumen Pharmaceuticals (United States)'),
(12020, 'https://ror.org/02a7p6b15', 'en', 1, 'https://ror.org/02a7p6b15 American India Foundation'),
(12021, 'https://ror.org/02rt6h515', 'en', 1, 'https://ror.org/02rt6h515 American Indian Cancer Foundation'),
(12022, 'https://ror.org/00xr4zj07', 'en', 1, 'https://ror.org/00xr4zj07 Cancer Care Association Sri Lanka'),
(12023, 'https://ror.org/01491cv93', 'en', 1, 'https://ror.org/01491cv93 Boston Cancer Policy Institute'),
(12024, 'https://ror.org/04hxmr882', 'no_lang_code', 1, 'https://ror.org/04hxmr882 Air Vehicle Integrated Design (United States)'),
(12025, 'https://ror.org/05fxhx251', 'en', 1, 'https://ror.org/05fxhx251 Adaptations Glassware Cooperative'),
(12026, 'https://ror.org/03b3akj74', 'en', 1, 'https://ror.org/03b3akj74 American Institute for Cancer Research'),
(12027, 'https://ror.org/03w7qe352', 'en', 1, 'https://ror.org/03w7qe352 Cancer Care Connection'),
(12028, 'https://ror.org/038zz3b86', 'no_lang_code', 1, 'https://ror.org/038zz3b86 AVM Biotechnology (United States)'),
(12029, 'https://ror.org/045xh6g63', 'en', 1, 'https://ror.org/045xh6g63 American Institute for Voice and Ear Research'),
(12030, 'https://ror.org/040an9w95', 'en', 1, 'https://ror.org/040an9w95 American Jewish Joint Distribution Committee'),
(12031, 'https://ror.org/0223p7w87', 'en', 1, 'https://ror.org/0223p7w87 Adaptive Adventures'),
(12032, 'https://ror.org/03m2pk393', 'en', 1, 'https://ror.org/03m2pk393 American Jewish World Service'),
(12033, 'https://ror.org/0594s0e67', 'en', 1, 'https://ror.org/0594s0e67 Carolinas Healthcare System'),
(12034, 'https://ror.org/037krc632', 'en', 1, 'https://ror.org/037krc632 Adaptive Sports and Recreation Association'),
(12035, 'https://ror.org/055nngk57', 'en', 1, 'https://ror.org/055nngk57 Adaptive Sports Program of Ohio'),
(12036, 'https://ror.org/04y3rzk98', 'en', 1, 'https://ror.org/04y3rzk98 American Kennel Club Canine Health Foundation'),
(12037, 'https://ror.org/02r3t1479', 'no_lang_code', 1, 'https://ror.org/02r3t1479 Adbroncus (Spain)'),
(12038, 'https://ror.org/04xsz2t23', 'en', 1, 'https://ror.org/04xsz2t23 Cancer Care Services'),
(12039, 'https://ror.org/01xjn4f21', 'en', 1, 'https://ror.org/01xjn4f21 CancerCare'),
(12040, 'https://ror.org/02pq0ct17', 'no_lang_code', 1, 'https://ror.org/02pq0ct17 Avrygen (United States)'),
(12041, 'https://ror.org/01zkc2t07', 'en', 1, 'https://ror.org/01zkc2t07 Addario Lung Cancer Medical Institute'),
(12042, 'https://ror.org/04eep0166', 'en', 1, 'https://ror.org/04eep0166 Association for Driver Rehabilitation Specialists'),
(12043, 'https://ror.org/01avrgx42', 'en', 1, 'https://ror.org/01avrgx42 Horizons Community Solutions'),
(12044, 'https://ror.org/04mdy5m11', 'en', 1, 'https://ror.org/04mdy5m11 Our Bodies Ourselves'),
(12045, 'https://ror.org/04dg6h767', 'en', 1, 'https://ror.org/04dg6h767 Dempsey Center'),
(12046, 'https://ror.org/03xvkpf85', 'en', 1, 'https://ror.org/03xvkpf85 Bowery Mission'),
(12047, 'https://ror.org/02gxz0343', 'en', 1, 'https://ror.org/02gxz0343 Adena Health System'),
(12048, 'https://ror.org/058nnmf19', 'en', 1, 'https://ror.org/058nnmf19 Aware Girls'),
(12049, 'https://ror.org/031nhd722', 'no_lang_code', 1, 'https://ror.org/031nhd722 Axios Biosciences (United States)'),
(12050, 'https://ror.org/00eb0j070', 'en', 1, 'https://ror.org/00eb0j070 Cancer Family Care'),
(12051, 'https://ror.org/03jd3wq64', 'no_lang_code', 1, 'https://ror.org/03jd3wq64 AXIS Dance (United States)');
INSERT INTO `rors` VALUES
(12052, 'https://ror.org/056f7r884', 'en', 1, 'https://ror.org/056f7r884 Boy Scouts of America Greater New York Councils'),
(12053, 'https://ror.org/056217264', 'en', 1, 'https://ror.org/056217264 Adesh Charitable Cancer Hospital'),
(12054, 'https://ror.org/0143vhw21', 'en', 1, 'https://ror.org/0143vhw21 Baba Farid University of Health Sciences ਬਾਬਾ ਫਰੀਦ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ਆਫ਼ ਹੈਲ਄ ąØøąØ¾ąØ‡ą©°ąØøąØæąØœąØ¼'),
(12055, 'https://ror.org/041pj0122', 'en', 1, 'https://ror.org/041pj0122 Adhikaar'),
(12056, 'https://ror.org/05b1wed79', 'en', 1, 'https://ror.org/05b1wed79 Cancer Foundation for Life'),
(12057, 'https://ror.org/029a54f25', 'en', 1, 'https://ror.org/029a54f25 Cancer Institute of New South Wales'),
(12058, 'https://ror.org/05yb6kv21', 'en', 1, 'https://ror.org/05yb6kv21 Boyne Research Institute'),
(12059, 'https://ror.org/02tmwx483', 'en', 1, 'https://ror.org/02tmwx483 Adirondack Medical Center'),
(12060, 'https://ror.org/03755ef98', 'en', 1, 'https://ror.org/03755ef98 American MedChem'),
(12061, 'https://ror.org/04rg3kp21', 'en', 1, 'https://ror.org/04rg3kp21 Adirondack Mountain Club'),
(12062, 'https://ror.org/04my1rt02', 'en', 1, 'https://ror.org/04my1rt02 Cancer Institute of Florida'),
(12063, 'https://ror.org/02dczrr13', 'en', 1, 'https://ror.org/02dczrr13 Boys & Girls Clubs of America'),
(12064, 'https://ror.org/02ka41c13', 'no_lang_code', 1, 'https://ror.org/02ka41c13 ADispell (United States)'),
(12065, 'https://ror.org/01k7b2e64', 'en', 1, 'https://ror.org/01k7b2e64 AdMeTech Foundation'),
(12066, 'https://ror.org/03ykmm292', 'en', 1, 'https://ror.org/03ykmm292 Advanced Barber College & Hair Design'),
(12067, 'https://ror.org/02mx1bf53', 'en', 1, 'https://ror.org/02mx1bf53 Advanced Cancer Therapeutics'),
(12068, 'https://ror.org/00ax59295', 'en', 1, 'https://ror.org/00ax59295 Cystic Fibrosis Foundation'),
(12069, 'https://ror.org/056w2e349', 'en', 1, 'https://ror.org/056w2e349 Cancer Legal Care'),
(12070, 'https://ror.org/04b1xdq74', 'no_lang_code', 1, 'https://ror.org/04b1xdq74 Advanced Imaging Projects (United States)'),
(12071, 'https://ror.org/035hy4w78', 'en', 1, 'https://ror.org/035hy4w78 Cancer Lifeline'),
(12072, 'https://ror.org/017f23p13', 'en', 1, 'https://ror.org/017f23p13 B.P. Koirala Memorial Cancer Hospital ą¤¬ą„€.ą¤Ŗą„€. ą¤•ą„‹ą¤‡ą¤°ą¤¾ą¤²ą¤¾ ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤•ą„ą¤Æą¤¾ą¤Øą„ą¤øą¤° ą¤¹ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(12073, 'https://ror.org/01c1z6p98', 'no_lang_code', 1, 'https://ror.org/01c1z6p98 Advanced Inhalation Therapies (Israel)'),
(12074, 'https://ror.org/0146hqc14', 'en', 1, 'https://ror.org/0146hqc14 Brain and Spinal Injury Trust Fund Commission'),
(12075, 'https://ror.org/01kjqa704', 'no_lang_code', 1, 'https://ror.org/01kjqa704 B''nai Jeshurun'),
(12076, 'https://ror.org/03ycv1b86', 'no_lang_code', 1, 'https://ror.org/03ycv1b86 Babcock & Wilcox (United States)'),
(12077, 'https://ror.org/05k7ts633', 'no_lang_code', 1, 'https://ror.org/05k7ts633 Advanced Neural Dynamics (United States)'),
(12078, 'https://ror.org/03hkb5805', 'en', 1, 'https://ror.org/03hkb5805 Baby Buggy'),
(12079, 'https://ror.org/02hhyky59', 'en', 1, 'https://ror.org/02hhyky59 Brain Injury Association of Louisiana'),
(12080, 'https://ror.org/0311sm390', 'en', 1, 'https://ror.org/0311sm390 Babylon Breast Cancer Coalition'),
(12081, 'https://ror.org/017yvv646', 'en', 1, 'https://ror.org/017yvv646 Brain Injury Association of Mississippi'),
(12082, 'https://ror.org/02c329420', 'es', 1, 'https://ror.org/02c329420 Hospital Nacional de NiƱos Bloom'),
(12083, 'https://ror.org/01z0fyn90', 'en', 1, 'https://ror.org/01z0fyn90 Cancer Patients Alliance for Clinical Trials & Survivorship'),
(12084, 'https://ror.org/01575p865', 'en', 1, 'https://ror.org/01575p865 Cancer Research And Biostatistics'),
(12085, 'https://ror.org/053d27v87', 'en', 1, 'https://ror.org/053d27v87 Brain Injury Alliance of Oregon'),
(12086, 'https://ror.org/0427e1040', 'en', 1, 'https://ror.org/0427e1040 Adventist HealthCare'),
(12087, 'https://ror.org/057321v51', 'no_lang_code', 1, 'https://ror.org/057321v51 Microbial Robotics (United States)'),
(12088, 'https://ror.org/05mm21816', 'en', 1, 'https://ror.org/05mm21816 Advocacy Alliance Center of Texas'),
(12089, 'https://ror.org/04fy6j421', 'en', 1, 'https://ror.org/04fy6j421 American Society of Clinical Oncology'),
(12090, 'https://ror.org/0391zqt72', 'en', 1, 'https://ror.org/0391zqt72 American Society of Gene Therapy and Cell Therapy'),
(12091, 'https://ror.org/057swaw40', 'en', 1, 'https://ror.org/057swaw40 Cancer Resource Center of the Desert'),
(12092, 'https://ror.org/037c70862', 'en', 1, 'https://ror.org/037c70862 American Society of Pediatric Hemotology Oncology'),
(12093, 'https://ror.org/04h60j158', 'en', 1, 'https://ror.org/04h60j158 Cancer Services Network'),
(12094, 'https://ror.org/00wtsha39', 'en', 1, 'https://ror.org/00wtsha39 Cancer Services of Grant County'),
(12095, 'https://ror.org/036s4q636', 'en', 1, 'https://ror.org/036s4q636 American Society of Regional Anesthesia and Pain Medicine'),
(12096, 'https://ror.org/05fw3gc88', 'no_lang_code', 1, 'https://ror.org/05fw3gc88 Balance Therapeutics (United States)'),
(12097, 'https://ror.org/01s9pe276', 'en', 1, 'https://ror.org/01s9pe276 Affinity Medical Group'),
(12098, 'https://ror.org/015sr5294', 'en', 1, 'https://ror.org/015sr5294 Balarat Outdoor Education'),
(12099, 'https://ror.org/00nt7fq33', 'en', 1, 'https://ror.org/00nt7fq33 Baltimore Adapted Recreation and Sports'),
(12100, 'https://ror.org/03vb4t572', 'en', 1, 'https://ror.org/03vb4t572 Cancer Services'),
(12101, 'https://ror.org/01jmfgs20', 'en', 1, 'https://ror.org/01jmfgs20 Baltimore Healthy Start'),
(12102, 'https://ror.org/023cq0m22', 'no_lang_code', 1, 'https://ror.org/023cq0m22 Brain Tools (United States)'),
(12103, 'https://ror.org/04c6bt026', 'no_lang_code', 1, 'https://ror.org/04c6bt026 Affinityfilms (United States)'),
(12104, 'https://ror.org/00ds1n976', 'en', 1, 'https://ror.org/00ds1n976 Baltimore Medical System'),
(12105, 'https://ror.org/00bz41f09', 'en', 1, 'https://ror.org/00bz41f09 Afghan Coalition'),
(12106, 'https://ror.org/02g7qxm32', 'no_lang_code', 1, 'https://ror.org/02g7qxm32 Afraxis (United States)'),
(12107, 'https://ror.org/00nqfs885', 'en', 1, 'https://ror.org/00nqfs885 Brazosport Health Foundation'),
(12108, 'https://ror.org/04w634n76', 'en', 1, 'https://ror.org/04w634n76 American Youth Soccer Organization'),
(12109, 'https://ror.org/032g70a71', 'en', 1, 'https://ror.org/032g70a71 Bangladesh Medical Association of North America'),
(12110, 'https://ror.org/0387qmw52', 'en', 1, 'https://ror.org/0387qmw52 Africa Health and Development International'),
(12111, 'https://ror.org/02wejrm29', 'en', 1, 'https://ror.org/02wejrm29 Cancer Services of New Mexico'),
(12112, 'https://ror.org/024a6d298', 'en', 1, 'https://ror.org/024a6d298 AmeriCares'),
(12113, 'https://ror.org/00m8shp48', 'en', 1, 'https://ror.org/00m8shp48 Brea Fire Department'),
(12114, 'https://ror.org/0008smw05', 'en', 1, 'https://ror.org/0008smw05 BreakOUT'),
(12115, 'https://ror.org/00ed6s086', 'en', 1, 'https://ror.org/00ed6s086 Cancer Services of Northeast Indiana'),
(12116, 'https://ror.org/0328xw886', 'no_lang_code', 1, 'https://ror.org/0328xw886 Amicus Therapeutics (United States)'),
(12117, 'https://ror.org/01av4dy75', 'en', 1, 'https://ror.org/01av4dy75 Baptist Health Foundation'),
(12118, 'https://ror.org/03fwqkz80', 'en', 1, 'https://ror.org/03fwqkz80 Cancer Society of the Bahamas'),
(12119, 'https://ror.org/055ahdj14', 'en', 1, 'https://ror.org/055ahdj14 Baptist Hospital'),
(12120, 'https://ror.org/01xmz1b70', 'en', 1, 'https://ror.org/01xmz1b70 Bay Area Community Health Advisory Council'),
(12121, 'https://ror.org/00g3f1n02', 'en', 1, 'https://ror.org/00g3f1n02 African American Health Institute of San Bernardino County'),
(12122, 'https://ror.org/05m753j61', 'en', 1, 'https://ror.org/05m753j61 The African-American Historical & Cultural Museum of the SJV'),
(12123, 'https://ror.org/02wxcva98', 'en', 1, 'https://ror.org/02wxcva98 African Institute for Development Policy'),
(12124, 'https://ror.org/038nc4w52', 'en', 1, 'https://ror.org/038nc4w52 Cancer Support Foundation'),
(12125, 'https://ror.org/02nkrhg40', 'en', 1, 'https://ror.org/02nkrhg40 Amref Health Africa'),
(12126, 'https://ror.org/031wqg810', 'en', 1, 'https://ror.org/031wqg810 African Organisation for Research and Training in Cancer'),
(12127, 'https://ror.org/031jky447', 'no_lang_code', 1, 'https://ror.org/031jky447 Alloksys (Netherlands)'),
(12128, 'https://ror.org/00k8bwh32', 'no_lang_code', 1, 'https://ror.org/00k8bwh32 Amrita Therapeutics (India)'),
(12129, 'https://ror.org/006r5gc68', 'en', 1, 'https://ror.org/006r5gc68 Breast Cancer Care and Research Fund'),
(12130, 'https://ror.org/05t9rkr85', 'en', 1, 'https://ror.org/05t9rkr85 Cancer Support Team'),
(12131, 'https://ror.org/022wvzp87', 'en', 1, 'https://ror.org/022wvzp87 Amsterdam Nursing Home'),
(12132, 'https://ror.org/01w8exq52', 'no_lang_code', 1, 'https://ror.org/01w8exq52 Amyndas Pharmaceuticals (United States)'),
(12133, 'https://ror.org/04rkt6002', 'en', 1, 'https://ror.org/04rkt6002 Cancer Survivors'' Fund'),
(12134, 'https://ror.org/00k4pey18', 'no_lang_code', 1, 'https://ror.org/00k4pey18 Cancer Targeted Technology (United States)'),
(12135, 'https://ror.org/0114t5q03', 'en', 1, 'https://ror.org/0114t5q03 Gorlin Syndrome Alliance'),
(12136, 'https://ror.org/034qswm17', 'en', 1, 'https://ror.org/034qswm17 Bay Area Cancer Connections'),
(12137, 'https://ror.org/02ta1kn73', 'en', 1, 'https://ror.org/02ta1kn73 Cancer Wellness Center'),
(12138, 'https://ror.org/048z5te50', 'en', 1, 'https://ror.org/048z5te50 Breast Cancer Family Foundation'),
(12139, 'https://ror.org/05kbsdg78', 'en', 1, 'https://ror.org/05kbsdg78 African Women''s Cancer Awareness Association'),
(12140, 'https://ror.org/05e3thx24', 'no_lang_code', 1, 'https://ror.org/05e3thx24 Andarix Pharmaceuticals (United States)'),
(12141, 'https://ror.org/030pnab13', 'en', 1, 'https://ror.org/030pnab13 Afrihealth Optonet Association'),
(12142, 'https://ror.org/02rn8bz16', 'en', 1, 'https://ror.org/02rn8bz16 Candlelighters Childhood Cancer Foundation of Nevada'),
(12143, 'https://ror.org/0343jw325', 'no_lang_code', 1, 'https://ror.org/0343jw325 AGADA Biosciences'),
(12144, 'https://ror.org/015eafn72', 'en', 1, 'https://ror.org/015eafn72 Candlelighters of West Texas & Southern New Mexico'),
(12145, 'https://ror.org/03kgp8j35', 'en', 1, 'https://ror.org/03kgp8j35 Arizona Spinal Cord Injury Association'),
(12146, 'https://ror.org/04fpx1h75', 'no_lang_code', 1, 'https://ror.org/04fpx1h75 Candy’s Place'),
(12147, 'https://ror.org/040z4nv21', 'de', 1, 'https://ror.org/040z4nv21 Agaplesion Bethanien Krankenhaus'),
(12148, 'https://ror.org/04b8ams39', 'en', 1, 'https://ror.org/04b8ams39 Breast Cancer Foundation of the Ozarks'),
(12149, 'https://ror.org/01t00dc98', 'en', 1, 'https://ror.org/01t00dc98 Aging in America'),
(12150, 'https://ror.org/04bgneb83', 'en', 1, 'https://ror.org/04bgneb83 Breast Cancer Help'),
(12151, 'https://ror.org/04kz5k469', 'it', 1, 'https://ror.org/04kz5k469 Azienda Sanitaria Locale N. 2 Savonese'),
(12152, 'https://ror.org/04nmkrt20', 'en', 1, 'https://ror.org/04nmkrt20 Canine Assistants'),
(12153, 'https://ror.org/0348ff195', 'en', 1, 'https://ror.org/0348ff195 Breast Cancer Research Foundation'),
(12154, 'https://ror.org/029x54d87', 'en', 1, 'https://ror.org/029x54d87 Aguilas El Ambiente Asamblea Gay Unida Impactando Latinos A Superarse'),
(12155, 'https://ror.org/058acxs86', 'en', 1, 'https://ror.org/058acxs86 Canine Companions for Independence'),
(12156, 'https://ror.org/029m8ac94', 'en', 1, 'https://ror.org/029m8ac94 AIDS Community Research Consortium'),
(12157, 'https://ror.org/02gr0tn14', 'en', 1, 'https://ror.org/02gr0tn14 Breast Cancer Resource Centre of Austin'),
(12158, 'https://ror.org/05an4ky72', 'en', 1, 'https://ror.org/05an4ky72 Backbones'),
(12159, 'https://ror.org/05n8mee18', 'en', 1, 'https://ror.org/05n8mee18 AIDS Healthcare Foundation'),
(12160, 'https://ror.org/0092p0v85', 'en', 1, 'https://ror.org/0092p0v85 Breast International Group'),
(12161, 'https://ror.org/04y33ew61', 'en', 1, 'https://ror.org/04y33ew61 AIDS Project Of The East Bay'),
(12162, 'https://ror.org/03xbp3895', 'en', 1, 'https://ror.org/03xbp3895 AIDS Research Alliance'),
(12163, 'https://ror.org/03y8qgg33', 'en', 1, 'https://ror.org/03y8qgg33 Radiant Health Centers'),
(12164, 'https://ror.org/01fx4eg39', 'en', 1, 'https://ror.org/01fx4eg39 HCG Cancer Hospital ą²¹ą³†ą²²ą³ą²¤ą³ą²•ą³†ą³•ą²°ą³ ą²—ą³ą²²ą³†ą³‚ą³•ą²¬ą²²ą³ ą²Žą²‚ą²Ÿą²°ą³ą²Ŗą³ą²°ą³†ą³–ą²øą²øą³ ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(12165, 'https://ror.org/0470pq820', 'en', 1, 'https://ror.org/0470pq820 Indian Cancer Society'),
(12166, 'https://ror.org/003sztp18', 'en', 1, 'https://ror.org/003sztp18 Breathe California Golden Gate Public Health Partnership'),
(12167, 'https://ror.org/01djrwd47', 'en', 1, 'https://ror.org/01djrwd47 Breathe California of Los Angeles County'),
(12168, 'https://ror.org/00e67e117', 'en', 1, 'https://ror.org/00e67e117 Angel Flight South Central'),
(12169, 'https://ror.org/04pq0yg77', 'en', 1, 'https://ror.org/04pq0yg77 Cape Cod Healthcare'),
(12170, 'https://ror.org/01z3mbd29', 'en', 1, 'https://ror.org/01z3mbd29 Cape Fear Museum'),
(12171, 'https://ror.org/05pmyqf04', 'en', 1, 'https://ror.org/05pmyqf04 Angel Foundation'),
(12172, 'https://ror.org/049t27950', 'en', 1, 'https://ror.org/049t27950 CAPEable Adventures'),
(12173, 'https://ror.org/03gv7xs09', 'en', 1, 'https://ror.org/03gv7xs09 Capital Rowing Club'),
(12174, 'https://ror.org/001hzk554', 'en', 1, 'https://ror.org/001hzk554 Boston Back Bay Plastic Surgery'),
(12175, 'https://ror.org/02bq8mb39', 'en', 1, 'https://ror.org/02bq8mb39 Capital Area Human Services'),
(12176, 'https://ror.org/04xh2sm62', 'en', 1, 'https://ror.org/04xh2sm62 Angelica Patient Assistance Program'),
(12177, 'https://ror.org/00ahajr35', 'en', 1, 'https://ror.org/00ahajr35 Capital City Area Health Education Center'),
(12178, 'https://ror.org/01hfq7m30', 'en', 1, 'https://ror.org/01hfq7m30 Capital District Center for Independence'),
(12179, 'https://ror.org/017t82m28', 'no_lang_code', 1, 'https://ror.org/017t82m28 Angimmune (United States)'),
(12180, 'https://ror.org/04qvzh720', 'en', 1, 'https://ror.org/04qvzh720 Bassett Healthcare Network'),
(12181, 'https://ror.org/020n82m84', 'en', 1, 'https://ror.org/020n82m84 AISECT University ą¤†ą¤ˆą¤øą„‡ą¤•ą„ą¤Ÿ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(12182, 'https://ror.org/01kjj9155', 'en', 1, 'https://ror.org/01kjj9155 Baton Rouge General Foundation'),
(12183, 'https://ror.org/05vq3sw48', 'en', 1, 'https://ror.org/05vq3sw48 Breathe California of Sacramento Emigrant Trails'),
(12184, 'https://ror.org/00406q532', 'en', 1, 'https://ror.org/00406q532 Providence Alaska Medical Center'),
(12185, 'https://ror.org/01996x261', 'en', 1, 'https://ror.org/01996x261 Breckenridge Outdoor Education Center'),
(12186, 'https://ror.org/01f6f4a30', 'no_lang_code', 1, 'https://ror.org/01f6f4a30 Capital Meeting Planning'),
(12187, 'https://ror.org/03h7w4021', 'en', 1, 'https://ror.org/03h7w4021 Bauer Research Foundation'),
(12188, 'https://ror.org/044ve3x29', 'en', 1, 'https://ror.org/044ve3x29 Bay Area Community Resources'),
(12189, 'https://ror.org/019m53d79', 'en', 1, 'https://ror.org/019m53d79 Capital of Texas Team Survivor'),
(12190, 'https://ror.org/05ffh9f12', 'en', 1, 'https://ror.org/05ffh9f12 Bay Area Outreach and Recreation Program'),
(12191, 'https://ror.org/041qezx89', 'en', 1, 'https://ror.org/041qezx89 Bay Area Pediatric Pulmonary Medical Corporation'),
(12192, 'https://ror.org/03q6p5x66', 'en', 1, 'https://ror.org/03q6p5x66 Capital Region Action Against Breast Cancer'),
(12193, 'https://ror.org/0249wjr08', 'en', 1, 'https://ror.org/0249wjr08 Al Shehab institution for Comprehensive Development'),
(12194, 'https://ror.org/03by37p23', 'en', 1, 'https://ror.org/03by37p23 Brent''s Place'),
(12195, 'https://ror.org/022m0cc63', 'en', 1, 'https://ror.org/022m0cc63 Bay Clinic'),
(12196, 'https://ror.org/03q6a6m98', 'en', 1, 'https://ror.org/03q6a6m98 Bay Pines Foundation'),
(12197, 'https://ror.org/0565s2t44', 'en', 1, 'https://ror.org/0565s2t44 Al-Ghad International Health Sciences Colleges ŁƒŁ„ŁŠŲ§ŲŖ الغد Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲµŲ­ŁŠŲ©'),
(12198, 'https://ror.org/0385stf53', 'no_lang_code', 1, 'https://ror.org/0385stf53 Ala-Septic Pharmaceutical Research (United States)'),
(12199, 'https://ror.org/00r5dn664', 'en', 1, 'https://ror.org/00r5dn664 Caporal Assistance Network'),
(12200, 'https://ror.org/04x5whn41', 'en', 1, 'https://ror.org/04x5whn41 Alameda County Community Food Bank'),
(12201, 'https://ror.org/017d1a722', 'no_lang_code', 1, 'https://ror.org/017d1a722 Caprion (Canada)'),
(12202, 'https://ror.org/05kqhkc03', 'en', 1, 'https://ror.org/05kqhkc03 Alaska Center for Children and Adults'),
(12203, 'https://ror.org/032r53m24', 'no_lang_code', 1, 'https://ror.org/032r53m24 Cardiavent (United States)'),
(12204, 'https://ror.org/01m9n8h83', 'en', 1, 'https://ror.org/01m9n8h83 Bayhealth Foundation'),
(12205, 'https://ror.org/01hv1yg09', 'en', 1, 'https://ror.org/01hv1yg09 Albany Research Institute'),
(12206, 'https://ror.org/0310r6290', 'en', 1, 'https://ror.org/0310r6290 Cardinal Hill Rehabilitation Hospital'),
(12207, 'https://ror.org/01k1b2g25', 'en', 1, 'https://ror.org/01k1b2g25 Alberta Cancer Foundation'),
(12208, 'https://ror.org/007agsn16', 'en', 1, 'https://ror.org/007agsn16 Cardinal Ritter Senior Services'),
(12209, 'https://ror.org/04vaqkg10', 'en', 1, 'https://ror.org/04vaqkg10 The Bretton Woods Committee'),
(12210, 'https://ror.org/011xa1033', 'en', 1, 'https://ror.org/011xa1033 Albuquerque Area Indian Health Board'),
(12211, 'https://ror.org/003g9x449', 'en', 1, 'https://ror.org/003g9x449 BC Wheelchair Sports Association'),
(12212, 'https://ror.org/00na7mj62', 'no_lang_code', 1, 'https://ror.org/00na7mj62 BD Technologie (United States)'),
(12213, 'https://ror.org/04aqebj37', 'en', 1, 'https://ror.org/04aqebj37 Aldersgate Camp and Retreat Center'),
(12214, 'https://ror.org/02ry8c790', 'en', 1, 'https://ror.org/02ry8c790 Beads of Courage'),
(12215, 'https://ror.org/04wkwbq27', 'en', 1, 'https://ror.org/04wkwbq27 Alderson Broaddus University'),
(12216, 'https://ror.org/04tpatx34', 'en', 1, 'https://ror.org/04tpatx34 The Epsilon Group'),
(12217, 'https://ror.org/04257nk59', 'en', 1, 'https://ror.org/04257nk59 Beatitudes Campus'),
(12218, 'https://ror.org/03s5wtj28', 'en', 1, 'https://ror.org/03s5wtj28 Cardio-Facio-Cutaneous International'),
(12219, 'https://ror.org/03fahgd34', 'en', 1, 'https://ror.org/03fahgd34 Bricks + Books Foundation'),
(12220, 'https://ror.org/02k4rpx08', 'en', 1, 'https://ror.org/02k4rpx08 Care 2 Tri'),
(12221, 'https://ror.org/02p0ex288', 'en', 1, 'https://ror.org/02p0ex288 Bridge II Sports'),
(12222, 'https://ror.org/014r6zg48', 'en', 1, 'https://ror.org/014r6zg48 Neighborhood Health'),
(12223, 'https://ror.org/01gg7p150', 'en', 1, 'https://ror.org/01gg7p150 CARE Canada'),
(12224, 'https://ror.org/0471xz330', 'en', 1, 'https://ror.org/0471xz330 Bridgeport Hospital Foundation'),
(12225, 'https://ror.org/00xj74h46', 'en', 1, 'https://ror.org/00xj74h46 Care India'),
(12226, 'https://ror.org/03p60dy64', 'en', 1, 'https://ror.org/03p60dy64 Bridging Bionics Foundation'),
(12227, 'https://ror.org/009htht73', 'en', 1, 'https://ror.org/009htht73 Alicia Rose Victorious Foundation'),
(12228, 'https://ror.org/03efkag80', 'en', 1, 'https://ror.org/03efkag80 Aliis Inserviendo Consumor Foundation'),
(12229, 'https://ror.org/0573tpn82', 'en', 1, 'https://ror.org/0573tpn82 Alive Hospice'),
(12230, 'https://ror.org/02jyxcp49', 'en', 1, 'https://ror.org/02jyxcp49 Alkaptonuria Society'),
(12231, 'https://ror.org/01hsm6g97', 'en', 1, 'https://ror.org/01hsm6g97 CARE International in Vietnam'),
(12232, 'https://ror.org/00mgb3084', 'no_lang_code', 1, 'https://ror.org/00mgb3084 Alkeus Pharmaceuticals (United States)'),
(12233, 'https://ror.org/04sej8624', 'en', 1, 'https://ror.org/04sej8624 Beaufort Memorial Hospital'),
(12234, 'https://ror.org/00e0nxq90', 'en', 1, 'https://ror.org/00e0nxq90 Care International Sri Lanka'),
(12235, 'https://ror.org/05dwc3j90', 'no_lang_code', 1, 'https://ror.org/05dwc3j90 Alkor Bio (Russia)'),
(12236, 'https://ror.org/00rnasn15', 'no_lang_code', 1, 'https://ror.org/00rnasn15 Caregiver Technologies (United States)'),
(12237, 'https://ror.org/03az21a93', 'no_lang_code', 1, 'https://ror.org/03az21a93 Swasthya Diabetes Care'),
(12238, 'https://ror.org/003t61x02', 'en', 1, 'https://ror.org/003t61x02 Bristlecone Family Resources'),
(12239, 'https://ror.org/01nrn0142', 'en', 1, 'https://ror.org/01nrn0142 Bedford Research Foundation'),
(12240, 'https://ror.org/030dazv21', 'en', 1, 'https://ror.org/030dazv21 All Kinds Of Minds'),
(12241, 'https://ror.org/01y23cm11', 'en', 1, 'https://ror.org/01y23cm11 All Out Adventures'),
(12242, 'https://ror.org/02e8g2j71', 'en', 1, 'https://ror.org/02e8g2j71 All-Ukrainian Charitable Foundation Coalition of HIV-Service Organizations'),
(12243, 'https://ror.org/0446p2g62', 'en', 1, 'https://ror.org/0446p2g62 Bristol Bay Area Health Corporation'),
(12244, 'https://ror.org/01a0heb61', 'no_lang_code', 1, 'https://ror.org/01a0heb61 Allakos (United States)'),
(12245, 'https://ror.org/05w47ar02', 'en', 1, 'https://ror.org/05w47ar02 Allegany County Health Department'),
(12246, 'https://ror.org/05mtvr411', 'en', 1, 'https://ror.org/05mtvr411 Austin Children''s Chest Associates'),
(12247, 'https://ror.org/01v000k46', 'en', 1, 'https://ror.org/01v000k46 Alleghany County Schools'),
(12248, 'https://ror.org/00caks861', 'en', 1, 'https://ror.org/00caks861 Bedford VA Research Corporation'),
(12249, 'https://ror.org/05973ve37', 'en', 1, 'https://ror.org/05973ve37 Behavioral Health Services'),
(12250, 'https://ror.org/0548cbe65', 'no_lang_code', 1, 'https://ror.org/0548cbe65 CareWheels'),
(12251, 'https://ror.org/0076zct58', 'en', 1, 'https://ror.org/0076zct58 Anhalt University of Applied Sciences Hochschule Anhalt'),
(12252, 'https://ror.org/0433f0x41', 'no_lang_code', 1, 'https://ror.org/0433f0x41 Bristol-Myers Squibb (Italy)'),
(12253, 'https://ror.org/00672e058', 'en', 1, 'https://ror.org/00672e058 Allen Temple Baptist Church'),
(12254, 'https://ror.org/020g75c03', 'no_lang_code', 1, 'https://ror.org/020g75c03 Takara (Sweden)'),
(12255, 'https://ror.org/00pxmse48', 'en', 1, 'https://ror.org/00pxmse48 Allergy, Asthma and Clinical Research Center'),
(12256, 'https://ror.org/03pmyqy44', 'en', 1, 'https://ror.org/03pmyqy44 Alliance Community Services'),
(12257, 'https://ror.org/00aj75s74', 'en', 1, 'https://ror.org/00aj75s74 Belmont Abbey College'),
(12258, 'https://ror.org/02c073z28', 'en', 1, 'https://ror.org/02c073z28 Caribbean Environmental Health Institute'),
(12259, 'https://ror.org/01q24qh92', 'en', 1, 'https://ror.org/01q24qh92 Ben Archer Health Centers'),
(12260, 'https://ror.org/0355hha51', 'no_lang_code', 1, 'https://ror.org/0355hha51 Berand (Ireland)'),
(12261, 'https://ror.org/02exqvj96', 'en', 1, 'https://ror.org/02exqvj96 British Columbia Easter Seals Society for Children with Disabilities'),
(12262, 'https://ror.org/05vrepm87', 'en', 1, 'https://ror.org/05vrepm87 Bergen Catholic High School'),
(12263, 'https://ror.org/05k9wtr55', 'en', 1, 'https://ror.org/05k9wtr55 Berklee College of Music'),
(12264, 'https://ror.org/05e040g53', 'en', 1, 'https://ror.org/05e040g53 British Columbia Mobility Opportunities Society'),
(12265, 'https://ror.org/001qfrp14', 'en', 1, 'https://ror.org/001qfrp14 Abilities In Motion'),
(12266, 'https://ror.org/00xse2697', 'en', 1, 'https://ror.org/00xse2697 Alliance for Community Research and Development'),
(12267, 'https://ror.org/00ef3rg49', 'en', 1, 'https://ror.org/00ef3rg49 Arizona Veterans Research and Education Foundation'),
(12268, 'https://ror.org/046z87a78', 'no_lang_code', 1, 'https://ror.org/046z87a78 Carlebach Shul'),
(12269, 'https://ror.org/014tnef40', 'en', 1, 'https://ror.org/014tnef40 Hosparus'),
(12270, 'https://ror.org/0105khm66', 'en', 1, 'https://ror.org/0105khm66 Alliance of People with disAbilities'),
(12271, 'https://ror.org/00n876k34', 'no_lang_code', 1, 'https://ror.org/00n876k34 Beta-O2 Technologies (Israel)'),
(12272, 'https://ror.org/03z9qf407', 'en', 1, 'https://ror.org/03z9qf407 Bronson Health Foundation'),
(12273, 'https://ror.org/04p5awn87', 'en', 1, 'https://ror.org/04p5awn87 All Star Volleyball Association'),
(12274, 'https://ror.org/05pssxv84', 'en', 1, 'https://ror.org/05pssxv84 Aloha Medical Mission'),
(12275, 'https://ror.org/00c0q9724', 'en', 1, 'https://ror.org/00c0q9724 Health Care Management Group'),
(12276, 'https://ror.org/02hgsjt50', 'no_lang_code', 1, 'https://ror.org/02hgsjt50 Alpha Cancer Technologies'),
(12277, 'https://ror.org/040necf22', 'en', 1, 'https://ror.org/040necf22 Alpha Omega Veterans Services'),
(12278, 'https://ror.org/0397aw971', 'en', 1, 'https://ror.org/0397aw971 Bronx Independent Living Services'),
(12279, 'https://ror.org/04ywkc356', 'en', 1, 'https://ror.org/04ywkc356 Long Island Community Hospital'),
(12280, 'https://ror.org/04waxxs70', 'en', 1, 'https://ror.org/04waxxs70 Carnegie Hill Neighbors'),
(12281, 'https://ror.org/04f3amf18', 'en', 1, 'https://ror.org/04f3amf18 Alpha One'),
(12282, 'https://ror.org/00xz1ct52', 'en', 1, 'https://ror.org/00xz1ct52 The Brooklyn Rail'),
(12283, 'https://ror.org/02qk65b13', 'en', 1, 'https://ror.org/02qk65b13 Brooklyn Technical High School'),
(12284, 'https://ror.org/011tnb136', 'en', 1, 'https://ror.org/011tnb136 Carolina Veterinary Specialists'),
(12285, 'https://ror.org/026kac972', 'en', 1, 'https://ror.org/026kac972 Alpine Learning Group'),
(12286, 'https://ror.org/03wyccz80', 'en', 1, 'https://ror.org/03wyccz80 Beth C. Wright Cancer Resource Center'),
(12287, 'https://ror.org/02rxn8n18', 'en', 1, 'https://ror.org/02rxn8n18 The Carolinas Center'),
(12288, 'https://ror.org/01edwz996', 'en', 1, 'https://ror.org/01edwz996 Brown County Public Health Department'),
(12289, 'https://ror.org/04460xd73', 'en', 1, 'https://ror.org/04460xd73 Ankhkasta Natural Healing'),
(12290, 'https://ror.org/01cm1nq79', 'en', 1, 'https://ror.org/01cm1nq79 Brunswick County Schools'),
(12291, 'https://ror.org/0152zh161', 'en', 1, 'https://ror.org/0152zh161 Caroline Church of Brookhaven'),
(12292, 'https://ror.org/045pcya52', 'en', 1, 'https://ror.org/045pcya52 Ann Arbor Center for Independent Living'),
(12293, 'https://ror.org/04gz4vz18', 'no_lang_code', 1, 'https://ror.org/04gz4vz18 Carolus Therapeutics (United States)'),
(12294, 'https://ror.org/021swwa08', 'hu', 1, 'https://ror.org/021swwa08 Bethesda GyermekkórhÔz MagyarorszÔgi ReformÔtus EgyhÔz Bethesda GyermekkórhÔza'),
(12295, 'https://ror.org/03g83vg44', 'no_lang_code', 1, 'https://ror.org/03g83vg44 ALS Biopharma (United States)'),
(12296, 'https://ror.org/049j2y056', 'en', 1, 'https://ror.org/049j2y056 Anna C. Scott School'),
(12297, 'https://ror.org/016jdw248', 'en', 1, 'https://ror.org/016jdw248 Carolyn Dorfman Dance Company'),
(12298, 'https://ror.org/00the9035', 'no_lang_code', 1, 'https://ror.org/00the9035 Alsa Corporation (United States)'),
(12299, 'https://ror.org/01r2tv445', 'no_lang_code', 1, 'https://ror.org/01r2tv445 Annam Biosciences (United States)'),
(12300, 'https://ror.org/00jsack41', 'en', 1, 'https://ror.org/00jsack41 Carteret County Public School System'),
(12301, 'https://ror.org/050564b76', 'en', 1, 'https://ror.org/050564b76 Annaswamy Mudaliar General Hospital'),
(12302, 'https://ror.org/03arv1448', 'en', 1, 'https://ror.org/03arv1448 Being Adept'),
(12303, 'https://ror.org/02nbz6h12', 'en', 1, 'https://ror.org/02nbz6h12 Casting for Recovery'),
(12304, 'https://ror.org/04x5fkp12', 'no_lang_code', 1, 'https://ror.org/04x5fkp12 Catabasis Pharmaceuticals (United States)'),
(12305, 'https://ror.org/046mhfn38', 'en', 1, 'https://ror.org/046mhfn38 Belarusian Research Center For Pediatric Oncology and Hematology Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр Гетской онкологии, гематологии Šø иммунологии Š ŃŃŠæŃƒŠ±Š»Ń–канскі навукова-практычны Ń†ŃŠ½Ń‚Ń€ Š“Š·Ń–Ń†ŃŃ‡Š°Š¹ анкалогіі, гематалогіі і Ń–Š¼ŃƒŠ½Š°Š»Š¾Š³Ń–Ń–'),
(12306, 'https://ror.org/03eevrx63', 'en', 1, 'https://ror.org/03eevrx63 Catskill Regional Medical Center'),
(12307, 'https://ror.org/00et1y633', 'en', 1, 'https://ror.org/00et1y633 Anti Domestic Violence Coalition'),
(12308, 'https://ror.org/02k37yq18', 'en', 1, 'https://ror.org/02k37yq18 CASA for Kids'),
(12309, 'https://ror.org/05yc27210', 'en', 1, 'https://ror.org/05yc27210 Bethel Elementary School'),
(12310, 'https://ror.org/00509dp49', 'en', 1, 'https://ror.org/00509dp49 Any Baby Can'),
(12311, 'https://ror.org/041npkc82', 'no_lang_code', 1, 'https://ror.org/041npkc82 AparnaBio (United States)'),
(12312, 'https://ror.org/05ea9vw65', 'no_lang_code', 1, 'https://ror.org/05ea9vw65 ApeX Therapeutics (United States)'),
(12313, 'https://ror.org/035fmf715', 'en', 1, 'https://ror.org/035fmf715 Apollo Hospitals అపోలో ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±ą°øą±'),
(12314, 'https://ror.org/043yg4r95', 'no_lang_code', 1, 'https://ror.org/043yg4r95 Catalyst Pharmaceuticals (United States)'),
(12315, 'https://ror.org/05h034e74', 'no_lang_code', 1, 'https://ror.org/05h034e74 ApoVax (United States)'),
(12316, 'https://ror.org/04t4q4w41', 'en', 1, 'https://ror.org/04t4q4w41 Worshipful Society of Apothecaries'),
(12317, 'https://ror.org/00wgdxy37', 'en', 1, 'https://ror.org/00wgdxy37 Appalachian Mountain Advocates'),
(12318, 'https://ror.org/04y1g1r77', 'no_lang_code', 1, 'https://ror.org/04y1g1r77 AppliCote Associates (United States)'),
(12319, 'https://ror.org/014b45274', 'en', 1, 'https://ror.org/014b45274 Catapult'),
(12320, 'https://ror.org/05sdm2149', 'no_lang_code', 1, 'https://ror.org/05sdm2149 Applied Biomics (United States)'),
(12321, 'https://ror.org/007vhwd23', 'en', 1, 'https://ror.org/007vhwd23 Cathedral Church of Saint John the Divine'),
(12322, 'https://ror.org/03xb0b587', 'no_lang_code', 1, 'https://ror.org/03xb0b587 CDG Therapeutics (United States)'),
(12323, 'https://ror.org/05wq9kf61', 'en', 1, 'https://ror.org/05wq9kf61 Alternative Opportunities'),
(12324, 'https://ror.org/01feaq157', 'en', 1, 'https://ror.org/01feaq157 Cathedral Health Services'),
(12325, 'https://ror.org/04f6n8s05', 'no_lang_code', 1, 'https://ror.org/04f6n8s05 Aptitude Medical Systems'),
(12326, 'https://ror.org/0252gzq20', 'en', 1, 'https://ror.org/0252gzq20 Aquinas College - Michigan'),
(12327, 'https://ror.org/0314gk942', 'en', 1, 'https://ror.org/0314gk942 Betty Jean Kerr People’s Health Centers'),
(12328, 'https://ror.org/0599afn45', 'en', 1, 'https://ror.org/0599afn45 Arkansas Spinal Cord Commission'),
(12329, 'https://ror.org/0586n3304', 'en', 1, 'https://ror.org/0586n3304 ARC Community Services'),
(12330, 'https://ror.org/03j091372', 'en', 1, 'https://ror.org/03j091372 Cecil County Health Department'),
(12331, 'https://ror.org/002m7jd84', 'en', 1, 'https://ror.org/002m7jd84 Catholic Charities'),
(12332, 'https://ror.org/04vtmen79', 'es', 1, 'https://ror.org/04vtmen79 CECOLFES'),
(12333, 'https://ror.org/05py5he32', 'en', 1, 'https://ror.org/05py5he32 Catholic Charities of the Archdiocese of Chicago'),
(12334, 'https://ror.org/02djyqb52', 'en', 1, 'https://ror.org/02djyqb52 Burn Institute'),
(12335, 'https://ror.org/01xgdvm53', 'en', 1, 'https://ror.org/01xgdvm53 Bhagwan Mahaveer Cancer Hospital and Research Centre'),
(12336, 'https://ror.org/044kgnr82', 'en', 1, 'https://ror.org/044kgnr82 Catholic Charities of the Diocese of St. Cloud'),
(12337, 'https://ror.org/048g5yp93', 'en', 1, 'https://ror.org/048g5yp93 Bhaktapur Cancer Hospital ą¤­ą¤•ą„ą¤¤ą¤Ŗą„ą¤° ą¤•ą„ą¤Æą¤¾ą¤Øą„ą¤øą¤° ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(12338, 'https://ror.org/01qavh626', 'en', 1, 'https://ror.org/01qavh626 Diocese of Lansing'),
(12339, 'https://ror.org/016jzy244', 'en', 1, 'https://ror.org/016jzy244 Catholic Family Center'),
(12340, 'https://ror.org/05qwb3m66', 'en', 1, 'https://ror.org/05qwb3m66 Celebration Stem Cell Centre'),
(12341, 'https://ror.org/0344pp695', 'en', 1, 'https://ror.org/0344pp695 Big Brothers Big Sisters of Vermilion County'),
(12342, 'https://ror.org/007k2q988', 'no_lang_code', 1, 'https://ror.org/007k2q988 Arecor (United Kingdom)'),
(12343, 'https://ror.org/03znvgc81', 'en', 1, 'https://ror.org/03znvgc81 Areufit Health Services'),
(12344, 'https://ror.org/053nagh38', 'en', 1, 'https://ror.org/053nagh38 Charlotte Maxwell Clinic'),
(12345, 'https://ror.org/0252zek10', 'en', 1, 'https://ror.org/0252zek10 Bike and Build'),
(12346, 'https://ror.org/02h9mq080', 'no_lang_code', 1, 'https://ror.org/02h9mq080 Argos Therapeutics (United States)'),
(12347, 'https://ror.org/04nstae51', 'en', 1, 'https://ror.org/04nstae51 Charlotte-Mecklenburg Schools'),
(12348, 'https://ror.org/01kstvd89', 'no_lang_code', 1, 'https://ror.org/01kstvd89 Bio-Nucleonics (United States)'),
(12349, 'https://ror.org/04mzbw652', 'no_lang_code', 1, 'https://ror.org/04mzbw652 Ariadne Diagnostics (United States)'),
(12350, 'https://ror.org/00s0xa683', 'en', 1, 'https://ror.org/00s0xa683 Journey Museum'),
(12351, 'https://ror.org/04enw2g11', 'en', 1, 'https://ror.org/04enw2g11 Arie Crown Hebrew Day School'),
(12352, 'https://ror.org/0476ayz92', 'no_lang_code', 1, 'https://ror.org/0476ayz92 Bioarray Genetics (United States)'),
(12353, 'https://ror.org/05yh2xc78', 'no_lang_code', 1, 'https://ror.org/05yh2xc78 Celladon Corporation (United States)'),
(12354, 'https://ror.org/042p1vp06', 'no_lang_code', 1, 'https://ror.org/042p1vp06 BioBlast Pharma (Israel)'),
(12355, 'https://ror.org/02yre5r83', 'en', 1, 'https://ror.org/02yre5r83 Chase Brexton Health Care'),
(12356, 'https://ror.org/03k8m9k22', 'en', 1, 'https://ror.org/03k8m9k22 Chase Foundation'),
(12357, 'https://ror.org/00km9rx91', 'no_lang_code', 1, 'https://ror.org/00km9rx91 Altos Therapeutics (United States)'),
(12358, 'https://ror.org/05rxdtg07', 'no_lang_code', 1, 'https://ror.org/05rxdtg07 BioCrea (Germany)'),
(12359, 'https://ror.org/01c3e9r47', 'no_lang_code', 1, 'https://ror.org/01c3e9r47 Biodel (United States)'),
(12360, 'https://ror.org/02gd18467', 'en', 1, 'https://ror.org/02gd18467 Chelsea and Westminster Hospital NHS Foundation Trust'),
(12361, 'https://ror.org/013h0sc84', 'no_lang_code', 1, 'https://ror.org/013h0sc84 Cellular Engineering Technologies (United States)'),
(12362, 'https://ror.org/035exww05', 'no_lang_code', 1, 'https://ror.org/035exww05 CheminPharma (United States)'),
(12363, 'https://ror.org/01rd6m198', 'en', 1, 'https://ror.org/01rd6m198 BioFact Environmental Health Research Center'),
(12364, 'https://ror.org/014fc3d26', 'en', 1, 'https://ror.org/014fc3d26 Chemo Comfort'),
(12365, 'https://ror.org/055qx1z79', 'en', 1, 'https://ror.org/055qx1z79 Chenango Health Network'),
(12366, 'https://ror.org/03rrgzq96', 'en', 1, 'https://ror.org/03rrgzq96 Cherokee Boys Club'),
(12367, 'https://ror.org/032d2f085', 'en', 1, 'https://ror.org/032d2f085 Cherokee Central Schools'),
(12368, 'https://ror.org/04hm3xx61', 'en', 1, 'https://ror.org/04hm3xx61 Arkansas Prostate Cancer Foundation'),
(12369, 'https://ror.org/023kbzw23', 'no_lang_code', 1, 'https://ror.org/023kbzw23 BioEnergetics (United States)'),
(12370, 'https://ror.org/03w6qq889', 'en', 1, 'https://ror.org/03w6qq889 College of the Ozarks'),
(12371, 'https://ror.org/05wkmd624', 'en', 1, 'https://ror.org/05wkmd624 Arlington Free Clinic'),
(12372, 'https://ror.org/047znxb10', 'no_lang_code', 1, 'https://ror.org/047znxb10 Biojenc (United States)'),
(12373, 'https://ror.org/00vxsqn95', 'en', 1, 'https://ror.org/00vxsqn95 Archdiocese of New Orleans'),
(12374, 'https://ror.org/02t21c861', 'en', 1, 'https://ror.org/02t21c861 Collinsville Area Recreation District'),
(12375, 'https://ror.org/05neag745', 'en', 1, 'https://ror.org/05neag745 Life Sciences Research Partners'),
(12376, 'https://ror.org/050c96876', 'no_lang_code', 1, 'https://ror.org/050c96876 Chersco (United States)'),
(12377, 'https://ror.org/017maz245', 'en', 1, 'https://ror.org/017maz245 Cheshire Home'),
(12378, 'https://ror.org/02xdt2g09', 'en', 1, 'https://ror.org/02xdt2g09 Center for Accessible Living'),
(12379, 'https://ror.org/0145t7b41', 'en', 1, 'https://ror.org/0145t7b41 Cheshire Medical Center'),
(12380, 'https://ror.org/003cpzf24', 'en', 1, 'https://ror.org/003cpzf24 Chess in the Schools'),
(12381, 'https://ror.org/04by0yr47', 'no_lang_code', 1, 'https://ror.org/04by0yr47 ARMGO Pharma (United States)'),
(12382, 'https://ror.org/05j2ppz60', 'en', 1, 'https://ror.org/05j2ppz60 Chest Medicine Associates'),
(12383, 'https://ror.org/04398v158', 'en', 1, 'https://ror.org/04398v158 Center for Advanced Diagnostics, Evaluation and Therapeutics'),
(12384, 'https://ror.org/024natw76', 'en', 1, 'https://ror.org/024natw76 Chez Panisse Restaurant and Cafe'),
(12385, 'https://ror.org/01bf0r740', 'en', 1, 'https://ror.org/01bf0r740 Arms Wide Open Community Development Corporation'),
(12386, 'https://ror.org/02bsxq855', 'en', 1, 'https://ror.org/02bsxq855 Chicago Association of Black Social Workers'),
(12387, 'https://ror.org/01qqbs339', 'en', 1, 'https://ror.org/01qqbs339 Chicago Child Care Society'),
(12388, 'https://ror.org/03bb2z510', 'en', 1, 'https://ror.org/03bb2z510 Cares Community Health'),
(12389, 'https://ror.org/04z947e46', 'en', 1, 'https://ror.org/04z947e46 Center for American Progress'),
(12390, 'https://ror.org/0436ezp29', 'en', 1, 'https://ror.org/0436ezp29 Chicago Heights Park District'),
(12391, 'https://ror.org/04zh7mt66', 'en', 1, 'https://ror.org/04zh7mt66 Army Hospital Research and Referral ą¤†ą¤°ą„ą¤®ą„€ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤ą¤‚ą¤” ą¤°ą„‡ą¤«ą„‡ą¤°ą„ą¤°ą¤²'),
(12392, 'https://ror.org/02yw9ws62', 'en', 1, 'https://ror.org/02yw9ws62 Center for Asthma, Allergy and Respiratory Disease'),
(12393, 'https://ror.org/01mkbdh17', 'en', 1, 'https://ror.org/01mkbdh17 Columbia County Commission on Children and Families'),
(12394, 'https://ror.org/0443bt978', 'en', 1, 'https://ror.org/0443bt978 Child Abuse Prevention Services of Tuscaloosa'),
(12395, 'https://ror.org/02szmkw66', 'en', 1, 'https://ror.org/02szmkw66 Child Aid Organization Kenya'),
(12396, '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'),
(12397, 'https://ror.org/057204j60', 'en', 1, 'https://ror.org/057204j60 Center for Black Women’s Wellness'),
(12398, 'https://ror.org/05rvv6a54', 'en', 1, 'https://ror.org/05rvv6a54 Columbus Community Clinical Oncology Program'),
(12399, 'https://ror.org/00878ar41', 'en', 1, 'https://ror.org/00878ar41 Comanche County Juvenile Bureau'),
(12400, 'https://ror.org/037d69x30', 'no_lang_code', 1, 'https://ror.org/037d69x30 Artemisia BioMedical (United States)'),
(12401, 'https://ror.org/039yg9v74', 'en', 1, 'https://ror.org/039yg9v74 Child and Family Services of New Hampshire'),
(12402, 'https://ror.org/00a98dc55', 'en', 1, 'https://ror.org/00a98dc55 CombiMatrix'),
(12403, 'https://ror.org/053v95q10', 'en', 1, 'https://ror.org/053v95q10 Child Care Resource & Referral'),
(12404, 'https://ror.org/00s16gd65', 'en', 1, 'https://ror.org/00s16gd65 Child Guidance Center'),
(12405, 'https://ror.org/00a0vzn71', 'en', 1, 'https://ror.org/00a0vzn71 Arthur Ashe Learning Center'),
(12406, 'https://ror.org/00s0zqz85', 'en', 1, 'https://ror.org/00s0zqz85 Child Health Corporation of America'),
(12407, 'https://ror.org/05ejsxx38', 'en', 1, 'https://ror.org/05ejsxx38 Florida Center for Change'),
(12408, 'https://ror.org/01wpszx77', 'en', 1, 'https://ror.org/01wpszx77 Combined Community Action'),
(12409, 'https://ror.org/02y96rp12', 'en', 1, 'https://ror.org/02y96rp12 Comer Children''s Hospital'),
(12410, 'https://ror.org/01ygt4x13', 'en', 1, 'https://ror.org/01ygt4x13 Child Protection Network'),
(12411, 'https://ror.org/035yg6030', 'en', 1, 'https://ror.org/035yg6030 Comer Family Foundation'),
(12412, 'https://ror.org/058dxr377', 'en', 1, 'https://ror.org/058dxr377 Florida Department of Juvenile Justice'),
(12413, 'https://ror.org/01q9b3c10', 'no_lang_code', 1, 'https://ror.org/01q9b3c10 COMHAR'),
(12414, 'https://ror.org/02n800c31', 'en', 1, 'https://ror.org/02n800c31 Nathan Adelson Hospice'),
(12415, 'https://ror.org/010wj4y69', 'en', 1, 'https://ror.org/010wj4y69 Childhood Leukemia Foundation'),
(12416, 'https://ror.org/02hbj0683', 'en', 1, 'https://ror.org/02hbj0683 Coming Home Connection'),
(12417, 'https://ror.org/020wan993', 'en', 1, 'https://ror.org/020wan993 Childline South Africa'),
(12418, 'https://ror.org/05tmpbz04', 'en', 1, 'https://ror.org/05tmpbz04 Creative Aging Network-NC'),
(12419, 'https://ror.org/04bac6g30', 'en', 1, 'https://ror.org/04bac6g30 Children with Cancer UK'),
(12420, 'https://ror.org/02n7gg832', 'en', 1, 'https://ror.org/02n7gg832 Children''s Aid Society'),
(12421, 'https://ror.org/0053krp57', 'en', 1, 'https://ror.org/0053krp57 Children''s Brain Tumor Foundation'),
(12422, 'https://ror.org/01p7z6793', 'en', 1, 'https://ror.org/01p7z6793 Children''s Cancer and Blood Foundation'),
(12423, 'https://ror.org/046xez992', 'en', 1, 'https://ror.org/046xez992 Children''s Cancer Association'),
(12424, 'https://ror.org/04gr7xf77', 'en', 1, 'https://ror.org/04gr7xf77 Center for Development Services'),
(12425, 'https://ror.org/053m1nc07', 'en', 1, 'https://ror.org/053m1nc07 Center for Health and Learning'),
(12426, 'https://ror.org/04rxd8128', 'en', 1, 'https://ror.org/04rxd8128 Children''s Cancer Center'),
(12427, 'https://ror.org/03xy06m93', 'en', 1, 'https://ror.org/03xy06m93 Memorial Health System'),
(12428, 'https://ror.org/0244gtc77', 'en', 1, 'https://ror.org/0244gtc77 Advanced ENT and Allergy'),
(12429, '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'),
(12430, 'https://ror.org/05qjv8h52', 'en', 1, 'https://ror.org/05qjv8h52 Artistic Realization Technologies'),
(12431, 'https://ror.org/029ebrw26', 'en', 1, 'https://ror.org/029ebrw26 Arts For Life'),
(12432, 'https://ror.org/00bzst557', 'en', 1, 'https://ror.org/00bzst557 Communities In Schools of Orange County'),
(12433, 'https://ror.org/03xh1py88', 'en', 1, 'https://ror.org/03xh1py88 ArtThread Foundation'),
(12434, 'https://ror.org/03rxx8g04', 'en', 1, 'https://ror.org/03rxx8g04 Community Access'),
(12435, 'https://ror.org/054dhw748', 'en', 1, 'https://ror.org/054dhw748 Children Cancer Hospital لمؤسسة مستؓفى سرطان الأطفال'),
(12436, 'https://ror.org/0483yhz54', 'en', 1, 'https://ror.org/0483yhz54 Children''s Center'),
(12437, 'https://ror.org/027hawx96', 'en', 1, 'https://ror.org/027hawx96 Children''s Health & Research Foundation'),
(12438, 'https://ror.org/05k0mz263', 'en', 1, 'https://ror.org/05k0mz263 CARE of Southeastern Michigan'),
(12439, 'https://ror.org/05qbngc87', 'en', 1, 'https://ror.org/05qbngc87 Ashby House'),
(12440, 'https://ror.org/01j9p4g53', 'en', 1, 'https://ror.org/01j9p4g53 Children''s Home and Aid'),
(12441, 'https://ror.org/04jnhp140', 'en', 1, 'https://ror.org/04jnhp140 Community Cancer Center'),
(12442, 'https://ror.org/0244yg551', 'en', 1, 'https://ror.org/0244yg551 Ashe Memorial Hospital'),
(12443, 'https://ror.org/01jw1z094', 'en', 1, 'https://ror.org/01jw1z094 Asheboro City Schools'),
(12444, 'https://ror.org/04nd20z29', 'en', 1, 'https://ror.org/04nd20z29 Community Cancer Services'),
(12445, 'https://ror.org/01kmgjw27', 'en', 1, 'https://ror.org/01kmgjw27 Children''s Home Association of Illinois'),
(12446, 'https://ror.org/015akvv41', 'en', 1, 'https://ror.org/015akvv41 Community Care Partners'),
(12447, 'https://ror.org/01gy3es16', 'no_lang_code', 1, 'https://ror.org/01gy3es16 Asher Consulting (United States)'),
(12448, 'https://ror.org/052bk3d94', 'en', 1, 'https://ror.org/052bk3d94 The University of Arizona Global Campus'),
(12449, 'https://ror.org/011724532', 'en', 1, 'https://ror.org/011724532 Center for Independent Living'),
(12450, 'https://ror.org/0320fhd53', 'en', 1, 'https://ror.org/0320fhd53 Community Development and Sustainability Organization'),
(12451, 'https://ror.org/034x1wg70', 'en', 1, 'https://ror.org/034x1wg70 Center for Independent Living of Broward'),
(12452, 'https://ror.org/03rm4za20', 'en', 1, 'https://ror.org/03rm4za20 Center for Independent Living of Central Pennsylvania'),
(12453, 'https://ror.org/02n71yc39', 'en', 1, 'https://ror.org/02n71yc39 Community Health Development'),
(12454, 'https://ror.org/01vajwv02', 'en', 1, 'https://ror.org/01vajwv02 Community Health and Emergency Services'),
(12455, 'https://ror.org/048z8v674', 'en', 1, 'https://ror.org/048z8v674 Asian American Community Services'),
(12456, 'https://ror.org/026hzcb48', 'en', 1, 'https://ror.org/026hzcb48 HOPE Clinic'),
(12457, 'https://ror.org/05ewbqm54', 'en', 1, 'https://ror.org/05ewbqm54 Community Health Center'),
(12458, 'https://ror.org/00vjdb429', 'en', 1, 'https://ror.org/00vjdb429 Community Health Centers of Pinellas'),
(12459, 'https://ror.org/000v2n186', 'en', 1, 'https://ror.org/000v2n186 Center for Information and Study on Clinical Research Participation'),
(12460, 'https://ror.org/04v0ewv31', 'en', 1, 'https://ror.org/04v0ewv31 Asian Health Services'),
(12461, 'https://ror.org/00yawqy54', 'en', 1, 'https://ror.org/00yawqy54 Community Health for Asian Americans'),
(12462, 'https://ror.org/054qc6v55', 'en', 1, 'https://ror.org/054qc6v55 Community Health Partnership'),
(12463, 'https://ror.org/0468wac55', 'en', 1, 'https://ror.org/0468wac55 Community Health Resource Center'),
(12464, 'https://ror.org/03s943089', 'en', 1, 'https://ror.org/03s943089 Asian Pacific AIDS Intervention Team'),
(12465, 'https://ror.org/04079cq52', 'en', 1, 'https://ror.org/04079cq52 Community Medical Centers'),
(12466, 'https://ror.org/04kq8yw60', 'en', 1, 'https://ror.org/04kq8yw60 Asian Services In Action'),
(12467, 'https://ror.org/03ncaex51', 'en', 1, 'https://ror.org/03ncaex51 Children''s Institute of Pittsburgh'),
(12468, 'https://ror.org/04aave390', 'en', 1, 'https://ror.org/04aave390 Children''s Leukaemia Research Project'),
(12469, 'https://ror.org/04x3k9185', 'en', 1, 'https://ror.org/04x3k9185 Community Impact'),
(12470, 'https://ror.org/00q1wqg27', 'en', 1, 'https://ror.org/00q1wqg27 Community In Action'),
(12471, 'https://ror.org/034pvzq21', 'es', 1, 'https://ror.org/034pvzq21 Asociación DemogrÔfica Costarricense'),
(12472, 'https://ror.org/015xega74', 'en', 1, 'https://ror.org/015xega74 Children''s Music Fund'),
(12473, 'https://ror.org/03crevx32', 'en', 1, 'https://ror.org/03crevx32 Center for Neurorehabilitation Services'),
(12474, 'https://ror.org/02ndts806', 'en', 1, 'https://ror.org/02ndts806 Center for Pan Asian Community Services'),
(12475, 'https://ror.org/03nt5p160', 'ro', 1, 'https://ror.org/03nt5p160 Asociaţia Femeilor de Afaceri'),
(12476, 'https://ror.org/04898mq89', 'en', 1, 'https://ror.org/04898mq89 Children''s Research Triangle'),
(12477, 'https://ror.org/024jz7t88', 'en', 1, 'https://ror.org/024jz7t88 Whittier Street Health Center'),
(12478, 'https://ror.org/01t2cn246', 'en', 1, 'https://ror.org/01t2cn246 Asociatia pentru libertate si egalitate de gen Association for Liberty and Equality of Gender'),
(12479, 'https://ror.org/006gmw843', 'en', 1, 'https://ror.org/006gmw843 Community Reach of Montgomery County'),
(12480, 'https://ror.org/055vn4q66', 'en', 1, 'https://ror.org/055vn4q66 Cancer Survivor Center'),
(12481, 'https://ror.org/01eg6rs81', 'en', 1, 'https://ror.org/01eg6rs81 Aspen University'),
(12482, 'https://ror.org/02p1zps28', 'en', 1, 'https://ror.org/02p1zps28 Asperger/Autism Network'),
(12483, 'https://ror.org/03d3a3a46', 'en', 1, 'https://ror.org/03d3a3a46 Community Rowing'),
(12484, 'https://ror.org/01k2xa905', 'en', 1, 'https://ror.org/01k2xa905 Integrate Autism Employment Advisors'),
(12485, 'https://ror.org/05nebqj51', 'en', 1, 'https://ror.org/05nebqj51 Community Service Council'),
(12486, 'https://ror.org/05v8mff05', 'en', 1, 'https://ror.org/05v8mff05 Children''s Specialized Hospital'),
(12487, 'https://ror.org/00afc1337', 'en', 1, 'https://ror.org/00afc1337 Aspira'),
(12488, 'https://ror.org/036tjv560', 'en', 1, 'https://ror.org/036tjv560 Children''s Specialty Group'),
(12489, 'https://ror.org/012xa3j60', 'en', 1, 'https://ror.org/012xa3j60 Children''s Therapy Center'),
(12490, 'https://ror.org/05f1at452', 'en', 1, 'https://ror.org/05f1at452 Community Service Society'),
(12491, 'https://ror.org/01mbq8h61', 'en', 1, 'https://ror.org/01mbq8h61 Palm Beach Children''s Hospital'),
(12492, 'https://ror.org/013q4fg29', 'en', 1, 'https://ror.org/013q4fg29 Community Servings'),
(12493, 'https://ror.org/04bsz5816', 'no_lang_code', 1, 'https://ror.org/04bsz5816 Rakuten (United States)'),
(12494, 'https://ror.org/00acg6793', 'en', 1, 'https://ror.org/00acg6793 Community Support Network'),
(12495, 'https://ror.org/01gy41z17', 'no_lang_code', 1, 'https://ror.org/01gy41z17 Compliment Corporation (United States)'),
(12496, 'https://ror.org/00rn8rb77', 'en', 1, 'https://ror.org/00rn8rb77 Comprehensive Autism and related Disabilities Education and Training'),
(12497, 'https://ror.org/03sg2cg73', 'en', 1, 'https://ror.org/03sg2cg73 Rowan-Salisbury School System'),
(12498, 'https://ror.org/01d2cs775', 'en', 1, 'https://ror.org/01d2cs775 Desert AIDS Project'),
(12499, 'https://ror.org/04w5z8h61', 'en', 1, 'https://ror.org/04w5z8h61 Adventist HealthCare Rehabilitation'),
(12500, 'https://ror.org/00566zb37', 'en', 1, 'https://ror.org/00566zb37 Desi Geestman Foundation'),
(12501, 'https://ror.org/04thxh256', 'en', 1, 'https://ror.org/04thxh256 Center for the Study of Healthcare Provider Behavior'),
(12502, 'https://ror.org/04epg3w34', 'en', 1, 'https://ror.org/04epg3w34 Detroit Clinical Research Center'),
(12503, 'https://ror.org/00ebf8055', 'en', 1, 'https://ror.org/00ebf8055 Chinese Christian Herald Crusades'),
(12504, 'https://ror.org/018sya243', 'en', 1, 'https://ror.org/018sya243 Deutsch Institute'),
(12505, 'https://ror.org/01qz23849', 'en', 1, 'https://ror.org/01qz23849 Center for Wellness and Achievement in Education'),
(12506, 'https://ror.org/03d3v3e93', 'no_lang_code', 1, 'https://ror.org/03d3v3e93 Evotec (Germany)'),
(12507, 'https://ror.org/02rgt2f70', 'en', 1, 'https://ror.org/02rgt2f70 Center for Women Policy'),
(12508, 'https://ror.org/04rcnty73', 'en', 1, 'https://ror.org/04rcnty73 Chinese Community Health Resource Center'),
(12509, 'https://ror.org/03mrx4w57', 'no_lang_code', 1, 'https://ror.org/03mrx4w57 Signal Genetics (United States)'),
(12510, 'https://ror.org/03wg7sa16', 'en', 1, 'https://ror.org/03wg7sa16 Choate Rosemary Hall');
INSERT INTO `rors` VALUES
(12511, 'https://ror.org/04e86te90', 'en', 1, 'https://ror.org/04e86te90 Assistive Technology of Alaska'),
(12512, 'https://ror.org/01h2bfe37', 'en', 1, 'https://ror.org/01h2bfe37 Chocowinity Primary School'),
(12513, 'https://ror.org/05yd4kq77', 'no_lang_code', 1, 'https://ror.org/05yd4kq77 Chondrial Therapeutics (United States)'),
(12514, 'https://ror.org/05pnr2f39', 'pt', 1, 'https://ror.org/05pnr2f39 Associação Ilumina'),
(12515, 'https://ror.org/0355qrc50', 'en', 1, 'https://ror.org/0355qrc50 Pathlight'),
(12516, 'https://ror.org/02ee9a524', 'en', 1, 'https://ror.org/02ee9a524 Christine M. Kleinert Institute'),
(12517, 'https://ror.org/002eet613', 'en', 1, 'https://ror.org/002eet613 Center Point'),
(12518, 'https://ror.org/000rkhy86', 'en', 1, 'https://ror.org/000rkhy86 Connecting to Care'),
(12519, 'https://ror.org/0430rna51', 'en', 1, 'https://ror.org/0430rna51 Christopher and Dana Reeve Foundation'),
(12520, 'https://ror.org/029hcca68', 'en', 1, 'https://ror.org/029hcca68 Centers for New Horizons'),
(12521, 'https://ror.org/00pwnqr91', 'en', 1, 'https://ror.org/00pwnqr91 Diagnostics For All'),
(12522, 'https://ror.org/0101ywa49', 'en', 1, 'https://ror.org/0101ywa49 ASK Childhood Cancer Foundation'),
(12523, 'https://ror.org/03zfet066', 'en', 1, 'https://ror.org/03zfet066 Association for Womens Rights in Development'),
(12524, 'https://ror.org/048f9wx47', 'en', 1, 'https://ror.org/048f9wx47 Association House of Chicago'),
(12525, 'https://ror.org/01smpy304', 'no_lang_code', 1, 'https://ror.org/01smpy304 Connexios (India)'),
(12526, 'https://ror.org/02dg8v926', 'en', 1, 'https://ror.org/02dg8v926 CHRISTUS Spohn Hospital Corpus Christi - Memorial'),
(12527, 'https://ror.org/00gnfkx95', 'no_lang_code', 1, 'https://ror.org/00gnfkx95 Sandvik (United States)'),
(12528, 'https://ror.org/04t99fj98', 'en', 1, 'https://ror.org/04t99fj98 CentraCare Health System'),
(12529, 'https://ror.org/00agqps10', 'en', 1, 'https://ror.org/00agqps10 Consolidated Tribal Health Project'),
(12530, 'https://ror.org/04xg79b82', 'en', 1, 'https://ror.org/04xg79b82 CHRISTUS St. Patrick Hospital'),
(12531, 'https://ror.org/02q7rpv07', 'en', 1, 'https://ror.org/02q7rpv07 Dillard Academy'),
(12532, 'https://ror.org/005r3ak92', 'es', 1, 'https://ror.org/005r3ak92 Fondo Centroamericano de Mujeres'),
(12533, 'https://ror.org/030j17642', 'en', 1, 'https://ror.org/030j17642 Direct Relief'),
(12534, 'https://ror.org/05b76jx43', 'en', 1, 'https://ror.org/05b76jx43 Consumers for Affordable Health Care'),
(12535, 'https://ror.org/04em0e964', 'en', 1, 'https://ror.org/04em0e964 Chronic Disease Fund'),
(12536, 'https://ror.org/01fx7my02', 'no_lang_code', 1, 'https://ror.org/01fx7my02 Contax (United States)'),
(12537, 'https://ror.org/04w7t8545', 'en', 1, 'https://ror.org/04w7t8545 Contra Costa County Office of Education'),
(12538, 'https://ror.org/010z5hk55', 'no_lang_code', 1, 'https://ror.org/010z5hk55 Controlled Chemicals (United States)'),
(12539, 'https://ror.org/029qsp363', 'en', 1, 'https://ror.org/029qsp363 DeWitt County Human Resource Center'),
(12540, 'https://ror.org/0033pqk03', 'en', 1, 'https://ror.org/0033pqk03 Tubman'),
(12541, 'https://ror.org/03pyrr968', 'en', 1, 'https://ror.org/03pyrr968 Disability Resource Association'),
(12542, 'https://ror.org/03yeddd43', 'en', 1, 'https://ror.org/03yeddd43 Central Arkansas Radiation Therapy Institute'),
(12543, 'https://ror.org/02hvj8973', 'en', 1, 'https://ror.org/02hvj8973 Disabled Athlete Sports Association'),
(12544, 'https://ror.org/019n7yz73', 'en', 1, 'https://ror.org/019n7yz73 Conway Regional Health System'),
(12545, 'https://ror.org/00zk9q198', 'en', 1, 'https://ror.org/00zk9q198 Disabled Sailing Association of British Columbia'),
(12546, 'https://ror.org/03vzz0n02', 'en', 1, 'https://ror.org/03vzz0n02 Disabled Sports Eastern Sierra'),
(12547, 'https://ror.org/058gs5s26', 'en', 1, 'https://ror.org/058gs5s26 Cook County Health and Hospitals System'),
(12548, 'https://ror.org/02bx9km76', 'en', 1, 'https://ror.org/02bx9km76 DĆ­a de la Mujer Latina'),
(12549, 'https://ror.org/045mt4m45', 'en', 1, 'https://ror.org/045mt4m45 Chula Vista Community Collaborative'),
(12550, 'https://ror.org/00y59j716', 'en', 1, 'https://ror.org/00y59j716 Central Asia Institute'),
(12551, 'https://ror.org/0255frr43', 'en', 1, 'https://ror.org/0255frr43 Cooke School and Institute'),
(12552, 'https://ror.org/01yvphs19', 'en', 1, 'https://ror.org/01yvphs19 Move United'),
(12553, 'https://ror.org/02bgf5h46', 'en', 1, 'https://ror.org/02bgf5h46 Cookeville Regional Medical Center'),
(12554, 'https://ror.org/01qc5zk84', 'no_lang_code', 1, 'https://ror.org/01qc5zk84 Chulabhorn Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøˆąøøąø¬ąø²ąø ąø£ąø“ą¹Œ'),
(12555, 'https://ror.org/00v859w32', 'en', 1, 'https://ror.org/00v859w32 Achieve Tahoe'),
(12556, 'https://ror.org/0507s5g02', 'en', 1, 'https://ror.org/0507s5g02 COPE Health Solutions'),
(12557, 'https://ror.org/034qt8m29', 'en', 1, 'https://ror.org/034qt8m29 Disabled Veterans Insurance Careers'),
(12558, 'https://ror.org/008s8js48', 'en', 1, 'https://ror.org/008s8js48 Central Coast Center for Independent Living'),
(12559, 'https://ror.org/04spsbn56', 'en', 1, 'https://ror.org/04spsbn56 Wayne County Public Schools'),
(12560, 'https://ror.org/03t8v2f28', 'en', 1, 'https://ror.org/03t8v2f28 Rush Copley Foundation'),
(12561, 'https://ror.org/04m21fy21', 'en', 1, 'https://ror.org/04m21fy21 Broward County Public Schools'),
(12562, 'https://ror.org/01hk1xf64', 'en', 1, 'https://ror.org/01hk1xf64 Central Connecticut Regional Planning Agency'),
(12563, 'https://ror.org/05c3j0k11', 'en', 1, 'https://ror.org/05c3j0k11 CORE Foundation'),
(12564, 'https://ror.org/04y35pz27', 'en', 1, 'https://ror.org/04y35pz27 Cornucopia Cancer Support Center'),
(12565, 'https://ror.org/03sbdx317', 'en', 1, 'https://ror.org/03sbdx317 Divers 4 Heroes'),
(12566, 'https://ror.org/013ze3m78', 'no_lang_code', 1, 'https://ror.org/013ze3m78 Cientive Group (United States)'),
(12567, 'https://ror.org/003dvmy85', 'en', 1, 'https://ror.org/003dvmy85 Central Council of the Tlingit and Haida Indian Tribes of Alaska'),
(12568, 'https://ror.org/01v5sfq52', 'en', 1, 'https://ror.org/01v5sfq52 Cigarette Butt Pollution Project'),
(12569, 'https://ror.org/03qa7aa58', 'no_lang_code', 1, 'https://ror.org/03qa7aa58 CIMA Software Corporation (United States)'),
(12570, 'https://ror.org/01vya7y20', 'en', 1, 'https://ror.org/01vya7y20 The Recovery Center'),
(12571, 'https://ror.org/057xaw849', 'en', 1, 'https://ror.org/057xaw849 Cottage Health'),
(12572, 'https://ror.org/002trzq62', 'en', 1, 'https://ror.org/002trzq62 Community Health Works'),
(12573, 'https://ror.org/05wpxj691', 'en', 1, 'https://ror.org/05wpxj691 Cotting School'),
(12574, 'https://ror.org/03awv4473', 'en', 1, 'https://ror.org/03awv4473 Council for Jewish Elderly'),
(12575, 'https://ror.org/053cfr159', 'en', 1, 'https://ror.org/053cfr159 Council for the Welfare of Children'),
(12576, 'https://ror.org/04jrqsq40', 'en', 1, 'https://ror.org/04jrqsq40 Council on Alcohol and Drug Abuse Coastal Bend'),
(12577, 'https://ror.org/04znqn582', 'en', 1, 'https://ror.org/04znqn582 HCG NCHRI Cancer Centre'),
(12578, 'https://ror.org/05jb7h445', 'en', 1, 'https://ror.org/05jb7h445 County of Sonoma Department of Health Services'),
(12579, 'https://ror.org/004y0gv29', 'en', 1, 'https://ror.org/004y0gv29 Community Breast Care Project'),
(12580, 'https://ror.org/00jtd6f03', 'en', 1, 'https://ror.org/00jtd6f03 Court Appointed Special Advocates of Union County'),
(12581, 'https://ror.org/007vvfj24', 'en', 1, 'https://ror.org/007vvfj24 CĆ­rculo de Vida'),
(12582, 'https://ror.org/048514v09', 'en', 1, 'https://ror.org/048514v09 Cuyahoga County Juvenile Court'),
(12583, 'https://ror.org/05c35qx73', 'en', 1, 'https://ror.org/05c35qx73 Cisco And Cisco Productions'),
(12584, 'https://ror.org/02mzffa46', 'no_lang_code', 1, 'https://ror.org/02mzffa46 Courtagen Life Sciences (United States)'),
(12585, 'https://ror.org/05g6deb76', 'en', 1, 'https://ror.org/05g6deb76 Doctors Without Borders Médecins Sans Frontières'),
(12586, 'https://ror.org/05ygzqx22', 'en', 1, 'https://ror.org/05ygzqx22 The Doe Fund'),
(12587, 'https://ror.org/04xcy3p78', 'en', 1, 'https://ror.org/04xcy3p78 CoxHealth Foundation'),
(12588, 'https://ror.org/00ycd5r70', 'no_lang_code', 1, 'https://ror.org/00ycd5r70 DonorsChoose'),
(12589, 'https://ror.org/04853qb43', 'en', 1, 'https://ror.org/04853qb43 Citizens Committee for New York City'),
(12590, 'https://ror.org/02m7zmm13', 'en', 1, 'https://ror.org/02m7zmm13 Council On Aging of Central Oregon'),
(12591, 'https://ror.org/0079ca173', 'en', 1, 'https://ror.org/0079ca173 Door to Hope'),
(12592, 'https://ror.org/018dp3302', 'en', 1, 'https://ror.org/018dp3302 Coyote Canyon Rehabilitation Center'),
(12593, 'https://ror.org/04rnc2b13', 'en', 1, 'https://ror.org/04rnc2b13 Citizens of Lake County for Health Care'),
(12594, 'https://ror.org/01awnfh35', 'en', 1, 'https://ror.org/01awnfh35 Citizens United for Research in Epilepsy'),
(12595, 'https://ror.org/01txw1935', 'no_lang_code', 1, 'https://ror.org/01txw1935 DormaTarg (United States)'),
(12596, 'https://ror.org/02yse6y23', 'en', 1, 'https://ror.org/02yse6y23 Central Park Conservancy'),
(12597, 'https://ror.org/00hxd4r57', 'en', 1, 'https://ror.org/00hxd4r57 Cradle of Forestry'),
(12598, 'https://ror.org/0299n0h85', 'en', 1, 'https://ror.org/0299n0h85 City Bar Justice Center'),
(12599, 'https://ror.org/05hxqtt35', 'en', 1, 'https://ror.org/05hxqtt35 Citymeals on Wheels'),
(12600, 'https://ror.org/01zpbb709', 'en', 1, 'https://ror.org/01zpbb709 CRDF Global'),
(12601, 'https://ror.org/03nw1ba02', 'no_lang_code', 1, 'https://ror.org/03nw1ba02 CreaGen (United States)'),
(12602, 'https://ror.org/00njrf990', 'en', 1, 'https://ror.org/00njrf990 Creating Hope'),
(12603, 'https://ror.org/03cew4h50', 'en', 1, 'https://ror.org/03cew4h50 EvergreenHealth'),
(12604, 'https://ror.org/01m03eg97', 'en', 1, 'https://ror.org/01m03eg97 Double ARC'),
(12605, 'https://ror.org/020ktq245', 'no_lang_code', 1, 'https://ror.org/020ktq245 Symphony Technology (United States)'),
(12606, 'https://ror.org/02ca63m84', 'no_lang_code', 1, 'https://ror.org/02ca63m84 Dose Safety (United States)'),
(12607, 'https://ror.org/04jxgzk07', 'no_lang_code', 1, 'https://ror.org/04jxgzk07 Creative Scientist (United States)'),
(12608, 'https://ror.org/03g0pmj13', 'no_lang_code', 1, 'https://ror.org/03g0pmj13 Exsulin (United States)'),
(12609, 'https://ror.org/01kc31v38', 'no_lang_code', 1, 'https://ror.org/01kc31v38 Exact Sciences (United States)'),
(12610, 'https://ror.org/05mw8jn36', 'en', 1, 'https://ror.org/05mw8jn36 Excelsior College'),
(12611, 'https://ror.org/00prewq47', 'en', 1, 'https://ror.org/00prewq47 Dr Dozo Laboratories'),
(12612, 'https://ror.org/05p26gw61', 'en', 1, 'https://ror.org/05p26gw61 Department of Health and Human Services'),
(12613, 'https://ror.org/05mggr586', 'en', 1, 'https://ror.org/05mggr586 Executive Frameworks'),
(12614, 'https://ror.org/059skcg45', 'en', 1, 'https://ror.org/059skcg45 Horizon Behavioral Health'),
(12615, 'https://ror.org/04thj7y95', 'en', 1, 'https://ror.org/04thj7y95 Department of Public Health'),
(12616, 'https://ror.org/01177md87', 'en', 1, 'https://ror.org/01177md87 EXPAND Beyond'),
(12617, 'https://ror.org/018dzn802', 'en', 1, 'https://ror.org/018dzn802 Bhubaneswar Borooah Cancer Institute'),
(12618, 'https://ror.org/04xqxea08', 'en', 1, 'https://ror.org/04xqxea08 Crescent Development Foundation'),
(12619, 'https://ror.org/0214aaw69', 'en', 1, 'https://ror.org/0214aaw69 City Parks Foundation'),
(12620, 'https://ror.org/030spt741', 'en', 1, 'https://ror.org/030spt741 Dragonfly Forest'),
(12621, 'https://ror.org/05fn46j05', 'no_lang_code', 1, 'https://ror.org/05fn46j05 Expression Drug Designs (United States)'),
(12622, 'https://ror.org/01crmyn45', 'en', 1, 'https://ror.org/01crmyn45 Dream Catchers Therapeutic Riding'),
(12623, 'https://ror.org/02fs0x831', 'en', 1, 'https://ror.org/02fs0x831 Cris Collinsworth ProScan Fund'),
(12624, 'https://ror.org/045895r06', 'en', 1, 'https://ror.org/045895r06 Dreams for Kids'),
(12625, 'https://ror.org/01xd2ey78', 'en', 1, 'https://ror.org/01xd2ey78 Crossroads Community Hospital'),
(12626, 'https://ror.org/01aznms81', 'en', 1, 'https://ror.org/01aznms81 CentraState Healthcare Foundation'),
(12627, 'https://ror.org/04v7m2q05', 'en', 1, 'https://ror.org/04v7m2q05 Crosswinds Equine Rescue'),
(12628, 'https://ror.org/03qyevp82', 'no_lang_code', 1, 'https://ror.org/03qyevp82 Eyenuk (United States)'),
(12629, 'https://ror.org/00e95rr56', 'en', 1, 'https://ror.org/00e95rr56 Eyes Wide Open International'),
(12630, 'https://ror.org/00hncq557', 'en', 1, 'https://ror.org/00hncq557 University of Maryland Charles Regional Medical Center'),
(12631, 'https://ror.org/004fch170', 'en', 1, 'https://ror.org/004fch170 Clara Martin Center'),
(12632, 'https://ror.org/03jmazk02', 'en', 1, 'https://ror.org/03jmazk02 Dup15q Alliance'),
(12633, 'https://ror.org/0399m8q49', 'en', 1, 'https://ror.org/0399m8q49 Faces of Courage Foundation'),
(12634, 'https://ror.org/04spj3m21', 'en', 1, 'https://ror.org/04spj3m21 Durham Public Schools'),
(12635, 'https://ror.org/01vaykv86', 'en', 1, 'https://ror.org/01vaykv86 Facial Plastics Surgery Associates'),
(12636, 'https://ror.org/01dxazx51', 'en', 1, 'https://ror.org/01dxazx51 Centre for Community Justice and Development'),
(12637, 'https://ror.org/02gsg9n78', 'en', 1, 'https://ror.org/02gsg9n78 Clark Family Breast Cancer Services'),
(12638, 'https://ror.org/04bcdzr74', 'en', 1, 'https://ror.org/04bcdzr74 Centre for Omic Sciences'),
(12639, 'https://ror.org/01jxhxv92', 'no_lang_code', 1, 'https://ror.org/01jxhxv92 CSL (United States)'),
(12640, 'https://ror.org/01fmdar07', 'nl', 1, 'https://ror.org/01fmdar07 Borstkankervereniging Nederland Breast Cancer Association Netherlands'),
(12641, 'https://ror.org/03941sr58', 'en', 1, 'https://ror.org/03941sr58 Claxton-Hepburn Medical Center'),
(12642, 'https://ror.org/01j5y9c13', 'en', 1, 'https://ror.org/01j5y9c13 Dwight School'),
(12643, 'https://ror.org/05jy4qt42', 'en', 1, 'https://ror.org/05jy4qt42 CSUF Auxiliary Services'),
(12644, 'https://ror.org/01zd0qk20', 'en', 1, 'https://ror.org/01zd0qk20 Clay County Health Department'),
(12645, 'https://ror.org/03q8c8138', 'en', 1, 'https://ror.org/03q8c8138 CSU Ventures'),
(12646, 'https://ror.org/03bg0vt52', 'en', 1, 'https://ror.org/03bg0vt52 Centre for Rights Education and Awareness'),
(12647, 'https://ror.org/054b1ew30', 'en', 1, 'https://ror.org/054b1ew30 Clean Needles Now'),
(12648, 'https://ror.org/03j36fp95', 'en', 1, 'https://ror.org/03j36fp95 Centre for Sexuality and Health Research and Policy'),
(12649, 'https://ror.org/03z55y406', 'en', 1, 'https://ror.org/03z55y406 Eagle Mount'),
(12650, 'https://ror.org/04qkg4668', 'en', 1, 'https://ror.org/04qkg4668 Centre for the AIDS Programme of Research in South Africa'),
(12651, 'https://ror.org/03pwdft33', 'no_lang_code', 1, 'https://ror.org/03pwdft33 AkibaUhaki Foundation'),
(12652, 'https://ror.org/00ebjwx84', 'en', 1, 'https://ror.org/00ebjwx84 Cultural Humanitarian Fund Sukhumi'),
(12653, 'https://ror.org/00s2g6856', 'en', 1, 'https://ror.org/00s2g6856 Fairmont City Library Center'),
(12654, 'https://ror.org/0586tb181', 'en', 1, 'https://ror.org/0586tb181 Faith Equestrian Therapeutic Center'),
(12655, 'https://ror.org/02gc8w463', 'en', 1, 'https://ror.org/02gc8w463 CLIC Sargent'),
(12656, 'https://ror.org/01g77xz63', 'no_lang_code', 1, 'https://ror.org/01g77xz63 Falcon Genomics (United States)'),
(12657, 'https://ror.org/051csrn64', 'en', 1, 'https://ror.org/051csrn64 Jackson County Public Schools'),
(12658, 'https://ror.org/02esvv741', 'en', 1, 'https://ror.org/02esvv741 Family Health Center of Worcester'),
(12659, 'https://ror.org/02mrrr189', 'en', 1, 'https://ror.org/02mrrr189 Adagio Health'),
(12660, 'https://ror.org/02m1pay40', 'en', 1, 'https://ror.org/02m1pay40 Clinica de Pneumologie Iaşi'),
(12661, 'https://ror.org/05a88n366', 'en', 1, 'https://ror.org/05a88n366 Alliance of Health Organizations'),
(12662, 'https://ror.org/05tqsj653', 'en', 1, 'https://ror.org/05tqsj653 Family Health Options Kenya'),
(12663, 'https://ror.org/02f7fr916', 'en', 1, 'https://ror.org/02f7fr916 ENT and Allergy Associates of Florida'),
(12664, 'https://ror.org/00x731t70', 'en', 1, 'https://ror.org/00x731t70 Clinica Sierra Vista'),
(12665, 'https://ror.org/02zwp3607', 'en', 1, 'https://ror.org/02zwp3607 Family Service Center of Galveston County'),
(12666, 'https://ror.org/00za5w074', 'en', 1, 'https://ror.org/00za5w074 Family Service League'),
(12667, 'https://ror.org/031acn267', 'en', 1, 'https://ror.org/031acn267 Clinical Directors Network'),
(12668, 'https://ror.org/0247j5w40', 'en', 1, 'https://ror.org/0247j5w40 NorthEast Ohio Neighborhood Health Services'),
(12669, 'https://ror.org/04ek2dh49', 'no_lang_code', 1, 'https://ror.org/04ek2dh49 CuraVac (United States)'),
(12670, 'https://ror.org/00r68c937', 'en', 1, 'https://ror.org/00r68c937 Evergreen Behavioral Health'),
(12671, 'https://ror.org/04csrvg63', 'en', 1, 'https://ror.org/04csrvg63 Exercise and Survivorship Education Cancer Foundation'),
(12672, 'https://ror.org/02z8d3d73', 'en', 1, 'https://ror.org/02z8d3d73 Faraja Cancer Support Trust'),
(12673, 'https://ror.org/0036jx294', 'no_lang_code', 1, 'https://ror.org/0036jx294 Farmington Pharma Development (United States)'),
(12674, 'https://ror.org/052rn8031', 'en', 1, 'https://ror.org/052rn8031 Clinicas de Salud del Pueblo'),
(12675, 'https://ror.org/036gb6b33', 'es', 1, 'https://ror.org/036gb6b33 Centro de Epilepsia y NeurocirugĆ­a Funcional'),
(12676, 'https://ror.org/04q2rtc89', 'en', 1, 'https://ror.org/04q2rtc89 CliniWorks'),
(12677, 'https://ror.org/05c4ary91', 'en', 1, 'https://ror.org/05c4ary91 Clinton Bush Haiti Fund'),
(12678, 'https://ror.org/02gb76937', 'no_lang_code', 1, 'https://ror.org/02gb76937 Domain Therapeutics (France)'),
(12679, 'https://ror.org/021t5mt46', 'es', 1, 'https://ror.org/021t5mt46 Centro de Información y Desarrollo de la Mujer'),
(12680, 'https://ror.org/057dz0532', 'en', 1, 'https://ror.org/057dz0532 Clonexpress'),
(12681, 'https://ror.org/00ykwy443', 'no_lang_code', 1, 'https://ror.org/00ykwy443 Curewize Health'),
(12682, 'https://ror.org/04gvjte09', 'en', 1, 'https://ror.org/04gvjte09 Faxton St. Luke''s Healthcare'),
(12683, 'https://ror.org/04hgfx704', 'no_lang_code', 1, 'https://ror.org/04hgfx704 CuriRx (United States)'),
(12684, 'https://ror.org/02pbsj156', 'no_lang_code', 1, 'https://ror.org/02pbsj156 OPKO Health (United States)'),
(12685, 'https://ror.org/0037f4615', 'no_lang_code', 1, 'https://ror.org/0037f4615 Cvergenx (United States)'),
(12686, 'https://ror.org/02x5wzm46', 'es', 1, 'https://ror.org/02x5wzm46 Fundacion Favaloro Hospital Universitario'),
(12687, 'https://ror.org/015v43a21', 'es', 1, 'https://ror.org/015v43a21 Centro de Investigación en Alimentación y Desarrollo'),
(12688, 'https://ror.org/01mfmr054', 'en', 1, 'https://ror.org/01mfmr054 Institute for Macromolecular Studies Istituto per lo Studio delle Macromolecole'),
(12689, 'https://ror.org/00wqp8t15', 'en', 1, 'https://ror.org/00wqp8t15 Federal College of Education, Kano'),
(12690, 'https://ror.org/040xhth73', 'en', 1, 'https://ror.org/040xhth73 Institute of Cell Biology and Neurobiology Istituto di Biologia Cellulare e Neurobiologia'),
(12691, 'https://ror.org/05w9g2j85', 'en', 1, 'https://ror.org/05w9g2j85 Institute of Cognitive Sciences and Technologies Istituto di Scienze e Tecnologie della Cognizione'),
(12692, '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'),
(12693, 'https://ror.org/02v2xvd66', 'en', 1, 'https://ror.org/02v2xvd66 San Ysidro Health'),
(12694, 'https://ror.org/0408zy315', 'en', 1, 'https://ror.org/0408zy315 Fieldstone Farm Therapeutic Riding Center'),
(12695, 'https://ror.org/04zmpx795', 'no_lang_code', 1, 'https://ror.org/04zmpx795 CytoSorbents (United States)'),
(12696, 'https://ror.org/02dr63s31', 'en', 1, 'https://ror.org/02dr63s31 Institute of Genetic and Biomedical Research Istituto di Ricerca Genetica e Biomedica'),
(12697, 'https://ror.org/01ynvwr63', 'es', 1, 'https://ror.org/01ynvwr63 HM Hospitales'),
(12698, 'https://ror.org/04vga2d07', 'it', 1, 'https://ror.org/04vga2d07 Centro Internazionale Studi Diabete'),
(12699, 'https://ror.org/03qmdb045', 'es', 1, 'https://ror.org/03qmdb045 Hospital Donación Francisco Santojanni'),
(12700, 'https://ror.org/02f6txw68', 'en', 1, 'https://ror.org/02f6txw68 East Georgia Cancer Coalition'),
(12701, 'https://ror.org/00s2j5046', 'en', 1, 'https://ror.org/00s2j5046 Institute of Molecular Bioimaging and Physiology Istituto di Bioimmagini e Fisiologia Molecolare'),
(12702, 'https://ror.org/03dewpe59', 'en', 1, 'https://ror.org/03dewpe59 East Harlem School'),
(12703, 'https://ror.org/01bbb9w98', 'en', 1, 'https://ror.org/01bbb9w98 East Harlem Tutorial Program'),
(12704, 'https://ror.org/00vke5218', 'en', 1, 'https://ror.org/00vke5218 East Palo Alto Kids Foundation'),
(12705, 'https://ror.org/00q6xg564', 'en', 1, 'https://ror.org/00q6xg564 Felicity House'),
(12706, 'https://ror.org/055werx92', 'no_lang_code', 1, 'https://ror.org/055werx92 Daiichi Sankyo (United States)'),
(12707, 'https://ror.org/04eawqd29', 'en', 1, 'https://ror.org/04eawqd29 Daily Bread Soup Kitchen'),
(12708, 'https://ror.org/02p5vjg42', 'en', 1, 'https://ror.org/02p5vjg42 Dalton School'),
(12709, 'https://ror.org/01j4j8g47', 'en', 1, 'https://ror.org/01j4j8g47 Dalton State College'),
(12710, 'https://ror.org/02cwbgy35', 'en', 1, 'https://ror.org/02cwbgy35 East Texas Baptist University'),
(12711, 'https://ror.org/04dsw2p33', 'en', 1, 'https://ror.org/04dsw2p33 Centro Paraguayo de Estudios de Población - Paraguayan Center for Population Studies'),
(12712, 'https://ror.org/03ta8pf33', 'it', 1, 'https://ror.org/03ta8pf33 Institute of Translational Pharmacology Istituto di Farmacologia Traslazionale'),
(12713, 'https://ror.org/01dwm7q20', 'en', 1, 'https://ror.org/01dwm7q20 DAWN Center for Independent Living'),
(12714, 'https://ror.org/04e3qnv29', 'en', 1, 'https://ror.org/04e3qnv29 Day Kimball Healthcare'),
(12715, 'https://ror.org/01gtk7283', 'en', 1, 'https://ror.org/01gtk7283 DC Cancer Consortium'),
(12716, 'https://ror.org/01gykcx29', 'en', 1, 'https://ror.org/01gykcx29 Minnesota Association of Deaf Citizens'),
(12717, 'https://ror.org/03vedwr79', 'no_lang_code', 1, 'https://ror.org/03vedwr79 Fidelity Biosciences (United States)'),
(12718, 'https://ror.org/02sfxxg21', 'en', 1, 'https://ror.org/02sfxxg21 Eastchester Center for Cancer Care'),
(12719, 'https://ror.org/017t18r89', 'en', 1, 'https://ror.org/017t18r89 Fighting Chance'),
(12720, 'https://ror.org/03by4xw59', 'en', 1, 'https://ror.org/03by4xw59 Cerebral Palsy Research Foundation'),
(12721, 'https://ror.org/05h5atq78', 'en', 1, 'https://ror.org/05h5atq78 Northeast Regional Cancer Institute'),
(12722, 'https://ror.org/03zk0kr46', 'en', 1, 'https://ror.org/03zk0kr46 Filmmakers Collaborative'),
(12723, 'https://ror.org/01y719f35', 'en', 1, 'https://ror.org/01y719f35 DeKalb County Health Department'),
(12724, 'https://ror.org/03xrs4d06', 'no_lang_code', 1, 'https://ror.org/03xrs4d06 Cerulean Pharma (United States)'),
(12725, 'https://ror.org/05cwssc79', 'en', 1, 'https://ror.org/05cwssc79 Chai Lifeline'),
(12726, 'https://ror.org/041edce82', 'en', 1, 'https://ror.org/041edce82 Eastern Nebraska Wheelchair Athletic Association'),
(12727, 'https://ror.org/04ff7ym80', 'en', 1, 'https://ror.org/04ff7ym80 Delaware Breast Cancer Coalition'),
(12728, 'https://ror.org/016g6pe62', 'en', 1, 'https://ror.org/016g6pe62 Challenge Alaska'),
(12729, 'https://ror.org/01exe5p59', 'en', 1, 'https://ror.org/01exe5p59 Eastern Oregon Center for Independent Living'),
(12730, 'https://ror.org/032c3ww89', 'en', 1, 'https://ror.org/032c3ww89 Challenge Aspen'),
(12731, 'https://ror.org/04dyz9n21', 'en', 1, 'https://ror.org/04dyz9n21 Challenged Athletes Foundation'),
(12732, 'https://ror.org/04dd80p04', 'en', 1, 'https://ror.org/04dd80p04 Champions Made From Adversity'),
(12733, 'https://ror.org/02hncwj35', 'en', 1, 'https://ror.org/02hncwj35 Dellon Institutes for Peripheral Nerve Surgery'),
(12734, 'https://ror.org/00xxrkp20', 'en', 1, 'https://ror.org/00xxrkp20 Delmont Public Library'),
(12735, 'https://ror.org/010a92934', 'en', 1, 'https://ror.org/010a92934 Champlain Valley Physicians Hospital'),
(12736, 'https://ror.org/01628rf48', 'en', 1, 'https://ror.org/01628rf48 ChangeLab Solutions'),
(12737, 'https://ror.org/05sxn9j28', 'en', 1, 'https://ror.org/05sxn9j28 Coalition For A Safe Environment'),
(12738, 'https://ror.org/03vkcbk24', 'en', 1, 'https://ror.org/03vkcbk24 Changing Life Education Initiative'),
(12739, 'https://ror.org/05hpthj59', 'en', 1, 'https://ror.org/05hpthj59 Demoiselle 2 Femme'),
(12740, 'https://ror.org/01wtk7843', 'en', 1, 'https://ror.org/01wtk7843 Chapel Haven Schleifer Center'),
(12741, 'https://ror.org/013p72785', 'en', 1, 'https://ror.org/013p72785 Chapel Hill Training Outreach Project'),
(12742, 'https://ror.org/04rh36p62', 'en', 1, 'https://ror.org/04rh36p62 Chapel Hill Carrboro City Schools'),
(12743, 'https://ror.org/038q96y60', 'en', 1, 'https://ror.org/038q96y60 Denver Indian Center'),
(12744, 'https://ror.org/043j8fa20', 'en', 1, 'https://ror.org/043j8fa20 Denver School of Nursing'),
(12745, 'https://ror.org/03kdc7091', 'en', 1, 'https://ror.org/03kdc7091 Coalition of Immokalee Workers'),
(12746, 'https://ror.org/007d8wc49', 'no_lang_code', 1, 'https://ror.org/007d8wc49 Coastal Anesthesiology Consultants (United States)'),
(12747, 'https://ror.org/02nycrb78', 'en', 1, 'https://ror.org/02nycrb78 Firefighter Cancer Support Network'),
(12748, 'https://ror.org/03a6ebh86', 'en', 1, 'https://ror.org/03a6ebh86 Coastal Health District'),
(12749, 'https://ror.org/02965na35', 'en', 1, 'https://ror.org/02965na35 Coastal Steward Long Island'),
(12750, 'https://ror.org/04kmmsx80', 'no_lang_code', 1, 'https://ror.org/04kmmsx80 Coastside Bio Resources (United States)'),
(12751, 'https://ror.org/03vk04b45', 'en', 1, 'https://ror.org/03vk04b45 Cobb and Douglas County Community Services Board'),
(12752, 'https://ror.org/01hfgte37', 'en', 1, 'https://ror.org/01hfgte37 Eastern Cooperative Oncology Group'),
(12753, 'https://ror.org/00esbrz24', 'en', 1, 'https://ror.org/00esbrz24 Coconino Community College Foundation'),
(12754, 'https://ror.org/05210wh26', 'en', 1, 'https://ror.org/05210wh26 Coda Alliance'),
(12755, 'https://ror.org/05hnp8y26', 'en', 1, 'https://ror.org/05hnp8y26 ARC of Oswego County'),
(12756, 'https://ror.org/00avzve25', 'no_lang_code', 1, 'https://ror.org/00avzve25 Edelweiss Gestão Empresarial (Brazil)'),
(12757, 'https://ror.org/059gpqq33', 'en', 1, 'https://ror.org/059gpqq33 Edgar County Public Health Department'),
(12758, 'https://ror.org/01m1s8509', 'no_lang_code', 1, 'https://ror.org/01m1s8509 Chaperone Therapeutics (United States)'),
(12759, 'https://ror.org/04g5a7819', 'en', 1, 'https://ror.org/04g5a7819 Firelands Regional Medical Center'),
(12760, 'https://ror.org/043f52r95', 'en', 1, 'https://ror.org/043f52r95 Lexington City Schools'),
(12761, 'https://ror.org/054yshy75', 'en', 1, 'https://ror.org/054yshy75 First Baptist Church-West'),
(12762, 'https://ror.org/01pabpn74', 'en', 1, 'https://ror.org/01pabpn74 Brickhouse Equestrian Center'),
(12763, 'https://ror.org/03f9sef34', 'en', 1, 'https://ror.org/03f9sef34 Charleston Breast Center'),
(12764, 'https://ror.org/033ns4t79', 'no_lang_code', 1, 'https://ror.org/033ns4t79 Cogito (United States)'),
(12765, 'https://ror.org/04j045513', 'en', 1, 'https://ror.org/04j045513 Foundation Medical Partners'),
(12766, 'https://ror.org/048fxk571', 'no_lang_code', 1, 'https://ror.org/048fxk571 Edison Pharmaceuticals (United States)'),
(12767, 'https://ror.org/03z2xqc96', 'no_lang_code', 1, 'https://ror.org/03z2xqc96 Cognition Therapeutics (United States)'),
(12768, 'https://ror.org/03scggx76', 'en', 1, 'https://ror.org/03scggx76 Fractured Atlas'),
(12769, 'https://ror.org/03hwm9p62', 'en', 1, 'https://ror.org/03hwm9p62 Hendrick Hospice Care'),
(12770, 'https://ror.org/0015k4a59', 'en', 1, 'https://ror.org/0015k4a59 Cognitive Systems Research Institute'),
(12771, 'https://ror.org/03s5rph93', 'no_lang_code', 1, 'https://ror.org/03s5rph93 Cognosci (United States)'),
(12772, 'https://ror.org/04fc1ay64', 'en', 1, 'https://ror.org/04fc1ay64 Edith P. Wright Breast Cancer Foundation'),
(12773, 'https://ror.org/01rprk677', 'en', 1, 'https://ror.org/01rprk677 First Descents'),
(12774, 'https://ror.org/03sx0k281', 'en', 1, 'https://ror.org/03sx0k281 Henry Street Settlement'),
(12775, 'https://ror.org/02y0pmx13', 'en', 1, 'https://ror.org/02y0pmx13 Cohoes Family Care'),
(12776, 'https://ror.org/046whjx61', 'en', 1, 'https://ror.org/046whjx61 Franklin County Schools'),
(12777, 'https://ror.org/04sx28p80', 'en', 1, 'https://ror.org/04sx28p80 Hephzibah Children’s Association'),
(12778, 'https://ror.org/01d8y3h50', 'en', 1, 'https://ror.org/01d8y3h50 First Giving'),
(12779, 'https://ror.org/04e3yr628', 'en', 1, 'https://ror.org/04e3yr628 HER2 Support Group'),
(12780, 'https://ror.org/0016qw586', 'en', 1, 'https://ror.org/0016qw586 First In Families of North Carolina'),
(12781, 'https://ror.org/05rwq6592', 'en', 1, 'https://ror.org/05rwq6592 The First Republican Clinical Hospital of the Ministry of Health of the Udmurt Republic ŠŸŠµŃ€Š²Š°Ń Ń€ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠ¾Š¹ Республики'),
(12782, 'https://ror.org/01w20ws49', 'en', 1, 'https://ror.org/01w20ws49 First Step Foundation'),
(12783, 'https://ror.org/03760g136', 'en', 1, 'https://ror.org/03760g136 First To Serve'),
(12784, 'https://ror.org/01qngz494', 'no_lang_code', 1, 'https://ror.org/01qngz494 Digital Development Communications International (United States)'),
(12785, 'https://ror.org/03qc4hj53', 'en', 1, 'https://ror.org/03qc4hj53 FirstHealth of the Carolinas'),
(12786, 'https://ror.org/029c3cd83', 'en', 1, 'https://ror.org/029c3cd83 Foundation for Rehabilitation Equipment and Endowment'),
(12787, 'https://ror.org/040xtvv41', 'no_lang_code', 1, 'https://ror.org/040xtvv41 Herbalife (Australia)'),
(12788, 'https://ror.org/01qn2q426', 'no_lang_code', 1, 'https://ror.org/01qn2q426 FirstString Research (United States)'),
(12789, 'https://ror.org/0333kge30', 'en', 1, 'https://ror.org/0333kge30 Fishing Has No Boundaries'),
(12790, 'https://ror.org/04wyzn311', 'en', 1, 'https://ror.org/04wyzn311 Freedom from Hunger'),
(12791, 'https://ror.org/01c3rah98', 'en', 1, 'https://ror.org/01c3rah98 Heroes on Horseback'),
(12792, 'https://ror.org/000kzf191', 'en', 1, 'https://ror.org/000kzf191 Burke County Public Schools'),
(12793, 'https://ror.org/04gfafs31', 'en', 1, 'https://ror.org/04gfafs31 Texas Freedom Network'),
(12794, 'https://ror.org/01d9fmv96', 'en', 1, 'https://ror.org/01d9fmv96 Girls Educational and Mentoring Services'),
(12795, 'https://ror.org/03w4h7282', 'en', 1, 'https://ror.org/03w4h7282 Freedom Service Dogs'),
(12796, 'https://ror.org/04ts0w644', 'en', 1, 'https://ror.org/04ts0w644 Joe DiMaggio Children''s Hospital'),
(12797, 'https://ror.org/024vgq576', 'en', 1, 'https://ror.org/024vgq576 Girls on the Run of Central Illinois'),
(12798, 'https://ror.org/05c6nxg16', 'en', 1, 'https://ror.org/05c6nxg16 St. Mary''s Medical Center'),
(12799, 'https://ror.org/02z972f25', 'en', 1, 'https://ror.org/02z972f25 Girls Power Initiative'),
(12800, 'https://ror.org/05qwgjf62', 'en', 1, 'https://ror.org/05qwgjf62 Pulmonary and Critical Care Associates'),
(12801, 'https://ror.org/03zmx1209', 'en', 1, 'https://ror.org/03zmx1209 Freeman Sheldon Research Group'),
(12802, 'https://ror.org/035zp5a51', 'en', 1, 'https://ror.org/035zp5a51 Golisano Children''s Hospital of Southwest Florida'),
(12803, 'https://ror.org/00g5s5c73', 'en', 1, 'https://ror.org/00g5s5c73 Fremont County Public Health'),
(12804, 'https://ror.org/04hma4w69', 'en', 1, 'https://ror.org/04hma4w69 Nemours Children''s Clinic'),
(12805, 'https://ror.org/00f76x039', 'en', 1, 'https://ror.org/00f76x039 Nemours Children’s Clinic'),
(12806, 'https://ror.org/04zzwzx41', 'en', 1, 'https://ror.org/04zzwzx41 Hertie Institute for Clinical Brain Research Hertie-Institut für klinische Hirnforschung'),
(12807, 'https://ror.org/01ycgxf29', 'en', 1, 'https://ror.org/01ycgxf29 Hertz Foundation'),
(12808, 'https://ror.org/05s1gzc45', 'en', 1, 'https://ror.org/05s1gzc45 Central Florida Pulmonary Group'),
(12809, 'https://ror.org/050wvj485', 'en', 1, 'https://ror.org/050wvj485 Reading and Beyond'),
(12810, 'https://ror.org/001vwrk73', 'en', 1, 'https://ror.org/001vwrk73 Flashes of Hope'),
(12811, 'https://ror.org/03f4rq368', 'en', 1, 'https://ror.org/03f4rq368 Flathead City County Health Department'),
(12812, 'https://ror.org/03hgkjm76', 'en', 1, 'https://ror.org/03hgkjm76 Frick Collection'),
(12813, 'https://ror.org/02yycpb11', 'en', 1, 'https://ror.org/02yycpb11 Higher Ground Sun Valley'),
(12814, 'https://ror.org/022ew7d45', 'en', 1, 'https://ror.org/022ew7d45 FRIDA The Young Feminist Fund'),
(12815, 'https://ror.org/010ypq317', 'en', 1, 'https://ror.org/010ypq317 NHS Highland'),
(12816, 'https://ror.org/04prt7y25', 'en', 1, 'https://ror.org/04prt7y25 Florida Alliance for Assistive Services and Technology'),
(12817, 'https://ror.org/04edgdk70', 'en', 1, 'https://ror.org/04edgdk70 Friedreich''s Ataxia Research Alliance'),
(12818, 'https://ror.org/02px37122', 'en', 1, 'https://ror.org/02px37122 Florida Cancer Specialists & Research Institute'),
(12819, 'https://ror.org/05r4ryw44', 'en', 1, 'https://ror.org/05r4ryw44 Baylor Scott and White Hillcrest Medical Center'),
(12820, 'https://ror.org/03kr0f697', 'en', 1, 'https://ror.org/03kr0f697 Adventist Health Glendale'),
(12821, 'https://ror.org/03jr2xy24', 'no_lang_code', 1, 'https://ror.org/03jr2xy24 EEG Info'),
(12822, 'https://ror.org/04yhn3690', 'en', 1, 'https://ror.org/04yhn3690 AdventHealth Foundation Central Florida'),
(12823, 'https://ror.org/04gsrry43', 'no_lang_code', 1, 'https://ror.org/04gsrry43 Hillhurst Biopharmaceuticals (United States)'),
(12824, 'https://ror.org/0446hjv79', 'en', 1, 'https://ror.org/0446hjv79 Florida Hospital Medical Group'),
(12825, 'https://ror.org/05j3gb586', 'en', 1, 'https://ror.org/05j3gb586 Friend for Life'),
(12826, 'https://ror.org/05j5w4198', 'en', 1, 'https://ror.org/05j5w4198 Hillsborough Jr. Raiders'),
(12827, 'https://ror.org/04435ns27', 'en', 1, 'https://ror.org/04435ns27 Florida Neuroscience Center'),
(12828, 'https://ror.org/0154hjf68', 'it', 1, 'https://ror.org/0154hjf68 Fondazione Mons Arrigo Mazzali'),
(12829, 'https://ror.org/037pbyt27', 'en', 1, 'https://ror.org/037pbyt27 Glens Falls Hospital'),
(12830, 'https://ror.org/05rgw8m46', 'no_lang_code', 1, 'https://ror.org/05rgw8m46 Efficient Pharma Management (Taiwan)'),
(12831, 'https://ror.org/04hwe7v53', 'en', 1, 'https://ror.org/04hwe7v53 Florida State Association of Rehabilitation Nurses'),
(12832, 'https://ror.org/01ej02438', 'en', 1, 'https://ror.org/01ej02438 Florida Technical College'),
(12833, 'https://ror.org/03agges87', 'en', 1, 'https://ror.org/03agges87 Third Judicial Circuit of Florida'),
(12834, 'https://ror.org/054mx2417', 'en', 1, 'https://ror.org/054mx2417 Himalayan Cataract Project'),
(12835, 'https://ror.org/00dn4v959', 'en', 1, 'https://ror.org/00dn4v959 Baptist Health Floyd'),
(12836, 'https://ror.org/05gp52j69', 'en', 1, 'https://ror.org/05gp52j69 Friends of Cancer Research'),
(12837, 'https://ror.org/008d28s71', 'en', 1, 'https://ror.org/008d28s71 Hinds Community College'),
(12838, 'https://ror.org/0435r6m82', 'no_lang_code', 1, 'https://ror.org/0435r6m82 Glialogix (United States)'),
(12839, 'https://ror.org/04p1hy645', 'no_lang_code', 1, 'https://ror.org/04p1hy645 FluGen (United States)'),
(12840, 'https://ror.org/037brtq48', 'en', 1, 'https://ror.org/037brtq48 Friends of Firefighters'),
(12841, 'https://ror.org/033tb1y80', 'en', 1, 'https://ror.org/033tb1y80 Hispanic Family Center of Southern New Jersey'),
(12842, 'https://ror.org/05d87j665', 'en', 1, 'https://ror.org/05d87j665 Historic House Trust'),
(12843, 'https://ror.org/01a70q325', 'no_lang_code', 1, 'https://ror.org/01a70q325 Fluidda (United States)'),
(12844, 'https://ror.org/052t8c018', 'en', 1, 'https://ror.org/052t8c018 HIV Education and Prevention Project of Alameda County'),
(12845, 'https://ror.org/02mh1s531', 'en', 1, 'https://ror.org/02mh1s531 Global Abilities Foundation'),
(12846, 'https://ror.org/03bsqcj22', 'no_lang_code', 1, 'https://ror.org/03bsqcj22 XCR Diagnostics (United States)'),
(12847, 'https://ror.org/028v5rf11', 'en', 1, 'https://ror.org/028v5rf11 Global AIDS Interfaith Alliance'),
(12848, 'https://ror.org/03kng9q02', 'en', 1, 'https://ror.org/03kng9q02 Friends of IHES'),
(12849, 'https://ror.org/055e7e256', 'en', 1, 'https://ror.org/055e7e256 Global Alliance Against Traffic in Women'),
(12850, 'https://ror.org/05sw0m628', 'en', 1, 'https://ror.org/05sw0m628 Hoag Orthopedic Institute'),
(12851, 'https://ror.org/032b2m661', 'en', 1, 'https://ror.org/032b2m661 Holos Institute'),
(12852, 'https://ror.org/01c93rd67', 'en', 1, 'https://ror.org/01c93rd67 The House of Praise'),
(12853, 'https://ror.org/04qjbd269', 'en', 1, 'https://ror.org/04qjbd269 Focused Ultrasound Foundation'),
(12854, 'https://ror.org/05s1xw009', 'en', 1, 'https://ror.org/05s1xw009 Fogarty Institute for Innovation'),
(12855, 'https://ror.org/02rrdqs77', 'en', 1, 'https://ror.org/02rrdqs77 Friends of Karen'),
(12856, 'https://ror.org/00zzgy689', 'en', 1, 'https://ror.org/00zzgy689 Global and Regional Asperger Syndrome Partnership'),
(12857, 'https://ror.org/02r7qvh89', 'en', 1, 'https://ror.org/02r7qvh89 Friends of L''Arche Long Island'),
(12858, 'https://ror.org/0236px434', 'no_lang_code', 1, 'https://ror.org/0236px434 Follica (United States)'),
(12859, 'https://ror.org/0067mxm07', 'en', 1, 'https://ror.org/0067mxm07 Global Autism Project'),
(12860, 'https://ror.org/035ttkd11', 'en', 1, 'https://ror.org/035ttkd11 Friends of Patan Hospital'),
(12861, 'https://ror.org/03cr60k70', 'no_lang_code', 1, 'https://ror.org/03cr60k70 Global Blood Therapeutics (United States)'),
(12862, 'https://ror.org/01myz2x40', 'en', 1, 'https://ror.org/01myz2x40 Akbaraly Foundation'),
(12863, 'https://ror.org/00st4js56', 'en', 1, 'https://ror.org/00st4js56 Friends of Scott'),
(12864, 'https://ror.org/02gp5xx45', 'en', 1, 'https://ror.org/02gp5xx45 Holy Redeemer'),
(12865, 'https://ror.org/00kb2qn83', 'en', 1, 'https://ror.org/00kb2qn83 Setauket Neighborhood House'),
(12866, 'https://ror.org/05e5x5788', 'en', 1, 'https://ror.org/05e5x5788 Holzer Heritage Foundation'),
(12867, 'https://ror.org/03821ge86', 'fr', 1, 'https://ror.org/03821ge86 Fondation Asile des Aveugles'),
(12868, 'https://ror.org/01czwga19', 'fr', 1, 'https://ror.org/01czwga19 Fondation Leducq Leducq Foundation'),
(12869, 'https://ror.org/02a2nzn96', 'en', 1, 'https://ror.org/02a2nzn96 Home for Little Wanderers'),
(12870, 'https://ror.org/02a3vgk42', 'en', 1, 'https://ror.org/02a3vgk42 Homes for Our Troops'),
(12871, 'https://ror.org/03ma7rr84', 'en', 1, 'https://ror.org/03ma7rr84 Egyptian American Medical Center'),
(12872, 'https://ror.org/05fa04208', 'it', 1, 'https://ror.org/05fa04208 Fondazione Humanitas per la Ricerca'),
(12873, 'https://ror.org/057xjcx32', 'en', 1, 'https://ror.org/057xjcx32 World Food Program USA'),
(12874, 'https://ror.org/02f64hv34', 'en', 1, 'https://ror.org/02f64hv34 No Barriers Youth'),
(12875, 'https://ror.org/054j7wb83', 'no_lang_code', 1, 'https://ror.org/054j7wb83 Eisai (United Kingdom)'),
(12876, 'https://ror.org/01kze5v62', 'no_lang_code', 1, 'https://ror.org/01kze5v62 WWOZ'),
(12877, 'https://ror.org/027xf9k42', 'no_lang_code', 1, 'https://ror.org/027xf9k42 DuPont (Norway)'),
(12878, 'https://ror.org/021zy4d72', 'en', 1, 'https://ror.org/021zy4d72 World Foundation for Medical Research and Prevention'),
(12879, 'https://ror.org/05kwxr504', 'en', 1, 'https://ror.org/05kwxr504 Home Free Home'),
(12880, 'https://ror.org/034xxbj70', 'en', 1, 'https://ror.org/034xxbj70 Global Health Council'),
(12881, 'https://ror.org/05rtjs925', 'no_lang_code', 1, 'https://ror.org/05rtjs925 Ekahau (Finland)'),
(12882, 'https://ror.org/05f9w5178', 'en', 1, 'https://ror.org/05f9w5178 Friends-4-Cures'),
(12883, 'https://ror.org/02mtpb511', 'no_lang_code', 1, 'https://ror.org/02mtpb511 Hoosier Cancer Research Network (United States)'),
(12884, 'https://ror.org/04w5mc055', 'en', 1, 'https://ror.org/04w5mc055 Global Health Research Center of Central Asia'),
(12885, 'https://ror.org/03kcr0m63', 'it', 1, 'https://ror.org/03kcr0m63 Fondazione Intergruppo Italiano Linfomi Onlus'),
(12886, 'https://ror.org/01vqw4208', 'no_lang_code', 1, 'https://ror.org/01vqw4208 Hope Afloat'),
(12887, 'https://ror.org/036baaz63', 'en', 1, 'https://ror.org/036baaz63 Front Line Defenders'),
(12888, 'https://ror.org/04r1s2546', 'en', 1, 'https://ror.org/04r1s2546 Agricultural Research Council of South Africa'),
(12889, 'https://ror.org/04vrtfy40', 'en', 1, 'https://ror.org/04vrtfy40 Global Ministries'),
(12890, 'https://ror.org/04smdqx37', 'it', 1, 'https://ror.org/04smdqx37 Fondazione IRET ONLUS'),
(12891, 'https://ror.org/02je5e910', 'en', 1, 'https://ror.org/02je5e910 Hope Chest for Breast Cancer'),
(12892, 'https://ror.org/03eq22881', 'en', 1, 'https://ror.org/03eq22881 Institute for Deciduous Fruit, Vines and Wine'),
(12893, 'https://ror.org/01qben656', 'en', 1, 'https://ror.org/01qben656 Global Opportunities Unlimited'),
(12894, 'https://ror.org/05yap4w73', 'en', 1, 'https://ror.org/05yap4w73 Frontier Community Services'),
(12895, 'https://ror.org/032dya782', 'en', 1, 'https://ror.org/032dya782 El Dorado County Health and Human Services Agency'),
(12896, 'https://ror.org/01dfd3f84', 'it', 1, 'https://ror.org/01dfd3f84 Fondazione Matilde Tettamanti Menotti De Marchi'),
(12897, 'https://ror.org/05eh8vk50', 'en', 1, 'https://ror.org/05eh8vk50 Hope HealthCare Services'),
(12898, 'https://ror.org/022ky1t43', 'en', 1, 'https://ror.org/022ky1t43 Hope House Ministries'),
(12899, 'https://ror.org/05kqphm40', 'en', 1, 'https://ror.org/05kqphm40 Hope in Bloom'),
(12900, 'https://ror.org/00gcnz094', 'en', 1, 'https://ror.org/00gcnz094 Global Technology Community'),
(12901, 'https://ror.org/02jb1pj89', 'en', 1, 'https://ror.org/02jb1pj89 HOPE Organization'),
(12902, 'https://ror.org/0165ws896', 'en', 1, 'https://ror.org/0165ws896 Hope Through Grace'),
(12903, 'https://ror.org/02mt8gf23', 'en', 1, 'https://ror.org/02mt8gf23 Hope Worldwide Monterrey'),
(12904, 'https://ror.org/01yex6672', 'no_lang_code', 1, 'https://ror.org/01yex6672 GlycoMimetics (United States)'),
(12905, 'https://ror.org/057zzzn17', 'en', 1, 'https://ror.org/057zzzn17 El/La Para TransLatinas'),
(12906, 'https://ror.org/03jtn8n67', 'es', 1, 'https://ror.org/03jtn8n67 Equipo Latinoamericano de Justicia y GƩnero'),
(12907, 'https://ror.org/014pnzp14', 'en', 1, 'https://ror.org/014pnzp14 Elder Services of the Merrimack Valley'),
(12908, 'https://ror.org/04e9vwv03', 'en', 1, 'https://ror.org/04e9vwv03 HopeLab'),
(12909, 'https://ror.org/0006xs696', 'en', 1, 'https://ror.org/0006xs696 Ele''s Place'),
(12910, 'https://ror.org/02we5km93', 'en', 1, 'https://ror.org/02we5km93 Fund for Park Avenue'),
(12911, 'https://ror.org/031hztf49', 'en', 1, 'https://ror.org/031hztf49 Fund for the City of New York'),
(12912, 'https://ror.org/01qeqe711', 'pt', 1, 'https://ror.org/01qeqe711 Fundação do Câncer'),
(12913, 'https://ror.org/02vjgqy71', 'en', 1, 'https://ror.org/02vjgqy71 Elijah House'),
(12914, 'https://ror.org/03nvkfb40', 'en', 1, 'https://ror.org/03nvkfb40 Elite Wellness'),
(12915, 'https://ror.org/041btzw22', 'en', 1, 'https://ror.org/041btzw22 God''s Love We Deliver'),
(12916, 'https://ror.org/00b37k984', 'en', 1, 'https://ror.org/00b37k984 Elixir Fund'),
(12917, 'https://ror.org/03q9kkf91', 'en', 1, 'https://ror.org/03q9kkf91 Goddard Riverside'),
(12918, 'https://ror.org/01d54xp37', 'pt', 1, 'https://ror.org/01d54xp37 Fundmed Pesquisa, Ensino e Inovacao'),
(12919, 'https://ror.org/057csh885', 'en', 1, 'https://ror.org/057csh885 Horizon Health Network'),
(12920, 'https://ror.org/01c7ad114', 'en', 1, 'https://ror.org/01c7ad114 Elizabeth City Pasquotank Public Schools'),
(12921, 'https://ror.org/012kq3b54', 'en', 1, 'https://ror.org/012kq3b54 Horizon Home Care and Hospice'),
(12922, 'https://ror.org/022de2f17', 'en', 1, 'https://ror.org/022de2f17 Elizabethtown Community Hospital'),
(12923, 'https://ror.org/044td5g81', 'en', 1, 'https://ror.org/044td5g81 Golden Valley Health Centers'),
(12924, 'https://ror.org/018dcfg43', 'en', 1, 'https://ror.org/018dcfg43 Penn Highlands Healthcare'),
(12925, 'https://ror.org/03jta4a35', 'en', 1, 'https://ror.org/03jta4a35 Barnes-Jewish College'),
(12926, 'https://ror.org/04cxspg15', 'it', 1, 'https://ror.org/04cxspg15 Fondazione Umberto Di Mario'),
(12927, 'https://ror.org/00a20h625', 'en', 1, 'https://ror.org/00a20h625 Capital Region Medical Center'),
(12928, 'https://ror.org/01mrv7b35', 'en', 1, 'https://ror.org/01mrv7b35 Golisano Foundation'),
(12929, 'https://ror.org/02nr1pp46', 'en', 1, 'https://ror.org/02nr1pp46 Food and Friends'),
(12930, 'https://ror.org/02y8rpf68', 'en', 1, 'https://ror.org/02y8rpf68 HorseAbility'),
(12931, 'https://ror.org/03g516j82', 'en', 1, 'https://ror.org/03g516j82 Food Outreach'),
(12932, 'https://ror.org/05jjek176', 'en', 1, 'https://ror.org/05jjek176 Hospice Austin'),
(12933, 'https://ror.org/03r177k09', 'en', 1, 'https://ror.org/03r177k09 Hospice Buffalo'),
(12934, 'https://ror.org/03wrq2n31', 'en', 1, 'https://ror.org/03wrq2n31 Hospice By The Bay'),
(12935, 'https://ror.org/00m783666', 'en', 1, 'https://ror.org/00m783666 WV Caring'),
(12936, 'https://ror.org/04ebrck23', 'en', 1, 'https://ror.org/04ebrck23 Hospice Nepal'),
(12937, 'https://ror.org/05ax4es29', 'en', 1, 'https://ror.org/05ax4es29 The Hospice of Baton Rouge'),
(12938, 'https://ror.org/01zgmxw25', 'en', 1, 'https://ror.org/01zgmxw25 Chapters Health System'),
(12939, 'https://ror.org/05nv29j63', 'no_lang_code', 1, 'https://ror.org/05nv29j63 EveryStep'),
(12940, 'https://ror.org/057jahg02', 'en', 1, 'https://ror.org/057jahg02 Good Shepherd Rehabilitation'),
(12941, 'https://ror.org/059jv7160', 'en', 1, 'https://ror.org/059jv7160 Cornerstone Community Development Corporation'),
(12942, 'https://ror.org/0337ytp02', 'en', 1, 'https://ror.org/0337ytp02 Hospice of Charles County'),
(12943, 'https://ror.org/026peqa79', 'en', 1, 'https://ror.org/026peqa79 Goodwill of Orange County'),
(12944, 'https://ror.org/029sxat24', 'en', 1, 'https://ror.org/029sxat24 AdventHealth Gordon'),
(12945, 'https://ror.org/01z528276', 'en', 1, 'https://ror.org/01z528276 Emilio Nares Foundation'),
(12946, 'https://ror.org/01z4ww589', 'en', 1, 'https://ror.org/01z4ww589 Chippewa County Health Department'),
(12947, 'https://ror.org/02fhdkr54', 'en', 1, 'https://ror.org/02fhdkr54 Ohio''s Hospice of Dayton'),
(12948, 'https://ror.org/013b70286', 'en', 1, 'https://ror.org/013b70286 Denver Hospice'),
(12949, 'https://ror.org/02sjyd344', 'en', 1, 'https://ror.org/02sjyd344 Fort Collins Rowing Association'),
(12950, 'https://ror.org/031j4es70', 'en', 1, 'https://ror.org/031j4es70 Hospice of Metropolitan Erie'),
(12951, 'https://ror.org/019knvq46', 'en', 1, 'https://ror.org/019knvq46 Emmanuel Cancer Foundation'),
(12952, 'https://ror.org/045e95p45', 'en', 1, 'https://ror.org/045e95p45 JourneyCare'),
(12953, 'https://ror.org/05031m633', 'en', 1, 'https://ror.org/05031m633 Employment Opportunity and Training Center'),
(12954, 'https://ror.org/0400k7f13', 'en', 1, 'https://ror.org/0400k7f13 Hospice of Orleans'),
(12955, 'https://ror.org/011728q79', 'en', 1, 'https://ror.org/011728q79 Foundation Fighting Blindness'),
(12956, 'https://ror.org/00nzvtd14', 'en', 1, 'https://ror.org/00nzvtd14 Bluegrass Care Navigators'),
(12957, 'https://ror.org/03crcmh94', 'en', 1, 'https://ror.org/03crcmh94 Governance Links Tanzania'),
(12958, 'https://ror.org/03r4w0b84', 'es', 1, 'https://ror.org/03r4w0b84 Fundación Arturo López Pérez Instituto Oncológico FALP'),
(12959, 'https://ror.org/01g5vqq31', 'es', 1, 'https://ror.org/01g5vqq31 FundAyuda'),
(12960, 'https://ror.org/019ksbk73', 'en', 1, 'https://ror.org/019ksbk73 Hospice of the Upstate'),
(12961, 'https://ror.org/042e1dy21', 'en', 1, 'https://ror.org/042e1dy21 Hospice of the Valley'),
(12962, 'https://ror.org/02vrwrw10', 'en', 1, 'https://ror.org/02vrwrw10 Hospice of the Western Reserve'),
(12963, 'https://ror.org/05jwzx688', 'en', 1, 'https://ror.org/05jwzx688 Governor''s Institute on Substance Abuse'),
(12964, 'https://ror.org/0417hfx81', 'en', 1, 'https://ror.org/0417hfx81 Foundation for Integrated Rural Development'),
(12965, 'https://ror.org/04tpy3f14', 'pt', 1, 'https://ror.org/04tpy3f14 Hospital Adventista Silvestre'),
(12966, 'https://ror.org/03byhfv76', 'en', 1, 'https://ror.org/03byhfv76 South Georgia Medical Center'),
(12967, 'https://ror.org/0391e3e29', 'en', 1, 'https://ror.org/0391e3e29 Grace Church of The Nazarene'),
(12968, 'https://ror.org/00k86s890', 'en', 1, 'https://ror.org/00k86s890 Foundation for the National Institutes of Health'),
(12969, 'https://ror.org/00jv1ms45', 'no_lang_code', 1, 'https://ror.org/00jv1ms45 Gradalis (United States)'),
(12970, 'https://ror.org/05902ma20', 'no_lang_code', 1, 'https://ror.org/05902ma20 Gradient Biomodeling (United States)'),
(12971, 'https://ror.org/04b59sp53', 'en', 1, 'https://ror.org/04b59sp53 UDAAN for the Disabled'),
(12972, 'https://ror.org/038syck06', 'es', 1, 'https://ror.org/038syck06 Casita de Mausi'),
(12973, 'https://ror.org/04npkmp39', 'en', 1, 'https://ror.org/04npkmp39 Empower Spinal Cord Injury'),
(12974, 'https://ror.org/01z89r872', 'en', 1, 'https://ror.org/01z89r872 EmpowerTech'),
(12975, 'https://ror.org/02d61wv82', 'pt', 1, 'https://ror.org/02d61wv82 Hospital SĆ£o Vicente'),
(12976, 'https://ror.org/019dhev54', 'en', 1, 'https://ror.org/019dhev54 Granite State Independent Living'),
(12977, 'https://ror.org/01p6hjg61', 'es', 1, 'https://ror.org/01p6hjg61 Fundación Ciencia and Vida'),
(12978, 'https://ror.org/0090j2029', 'en', 1, 'https://ror.org/0090j2029 Hospital Universiti Sains Malaysia Universiti Sains Malaysia School of Medical Science'),
(12979, 'https://ror.org/00h2d8k73', 'en', 1, 'https://ror.org/00h2d8k73 Hospitality Homes'),
(12980, 'https://ror.org/04w3cpz93', 'en', 1, 'https://ror.org/04w3cpz93 Grant A Wish'),
(12981, 'https://ror.org/01c6ycm57', 'no_lang_code', 1, 'https://ror.org/01c6ycm57 EnBiotix (United States)'),
(12982, 'https://ror.org/00d68nb44', 'en', 1, 'https://ror.org/00d68nb44 GrassrootsHealth');
INSERT INTO `rors` VALUES
(12983, 'https://ror.org/03gyze223', 'es', 1, 'https://ror.org/03gyze223 Fundacion de Neurociencias'),
(12984, 'https://ror.org/054bs2v13', 'en', 1, 'https://ror.org/054bs2v13 Mercy Health'),
(12985, 'https://ror.org/05j066y09', 'en', 1, 'https://ror.org/05j066y09 Hunstad Kortesis Bharti Cosmetic Surgery'),
(12986, 'https://ror.org/00a3hks83', 'no_lang_code', 1, 'https://ror.org/00a3hks83 Housey Pharmaceutical Research Laboratories'),
(12987, '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'),
(12988, 'https://ror.org/049qn2f85', 'en', 1, 'https://ror.org/049qn2f85 Hunts Point Alliance for Children'),
(12989, 'https://ror.org/01njr2r38', 'en', 1, 'https://ror.org/01njr2r38 Hurley Foundation'),
(12990, 'https://ror.org/05qp1m760', 'en', 1, 'https://ror.org/05qp1m760 Hurdle Jumpers'),
(12991, 'https://ror.org/00str1b42', 'en', 1, 'https://ror.org/00str1b42 Houston County'),
(12992, 'https://ror.org/0589fsc66', 'es', 1, 'https://ror.org/0589fsc66 Instituto Nacional del CƔncer'),
(12993, 'https://ror.org/01qp3cj59', 'en', 1, 'https://ror.org/01qp3cj59 International Network for Cancer Treatment and Research'),
(12994, 'https://ror.org/057ch9j82', 'en', 1, 'https://ror.org/057ch9j82 Great Plains Tribal Chairmen’s Health Board'),
(12995, 'https://ror.org/03sn2zf74', 'en', 1, 'https://ror.org/03sn2zf74 Greater Baden Medical Services'),
(12996, 'https://ror.org/05p9y3e72', 'en', 1, 'https://ror.org/05p9y3e72 Schneider Children''s Hospital'),
(12997, 'https://ror.org/04w4k4155', 'no_lang_code', 1, 'https://ror.org/04w4k4155 Hƶvding (Sweden)'),
(12998, 'https://ror.org/00abwfk08', 'en', 1, 'https://ror.org/00abwfk08 Howard Area Community Center'),
(12999, 'https://ror.org/04sawzq03', 'en', 1, 'https://ror.org/04sawzq03 Howard County Health Department'),
(13000, 'https://ror.org/0079phc76', 'en', 1, 'https://ror.org/0079phc76 Greater Faith Baptist Church'),
(13001, 'https://ror.org/012gye839', 'en', 1, 'https://ror.org/012gye839 Bwrdd Iechyd Lleol Hywel Dda Hywel Dda University Health Board'),
(13002, 'https://ror.org/007r56b43', 'en', 1, 'https://ror.org/007r56b43 Endeavor Charter School'),
(13003, 'https://ror.org/02t78v594', 'en', 1, 'https://ror.org/02t78v594 Greater Holy Temple Church Of God In Christ'),
(13004, 'https://ror.org/01efz0w18', 'en', 1, 'https://ror.org/01efz0w18 Greater Kansas City Spinal Cord Injury Association'),
(13005, 'https://ror.org/01k4vzb64', 'no_lang_code', 1, 'https://ror.org/01k4vzb64 Endo Pharmaceuticals (United States)'),
(13006, 'https://ror.org/03qm72t57', 'es', 1, 'https://ror.org/03qm72t57 Fundación Oncohematología Infantil'),
(13007, 'https://ror.org/00cvfgp24', 'no_lang_code', 1, 'https://ror.org/00cvfgp24 Endocrine Technology (United States)'),
(13008, 'https://ror.org/05p7whk93', 'en', 1, 'https://ror.org/05p7whk93 Energy Therapies Alliance of Central Illinois'),
(13009, 'https://ror.org/04ft04872', 'en', 1, 'https://ror.org/04ft04872 Greater Los Angeles Agency on Deafness'),
(13010, 'https://ror.org/043989r68', 'en', 1, 'https://ror.org/043989r68 Community Foundation for Northeast Michigan'),
(13011, 'https://ror.org/04xqgyf78', 'en', 1, 'https://ror.org/04xqgyf78 Greek Association of Alzheimer''s Disease and Related Disorders'),
(13012, 'https://ror.org/04eg60b20', 'en', 1, 'https://ror.org/04eg60b20 I''m Still Here Foundation'),
(13013, 'https://ror.org/055en7988', 'no_lang_code', 1, 'https://ror.org/055en7988 Ensemble Therapeutics (United States)'),
(13014, 'https://ror.org/01q3zpq21', 'en', 1, 'https://ror.org/01q3zpq21 Ibis Reproductive Health'),
(13015, 'https://ror.org/052rymf92', 'en', 1, 'https://ror.org/052rymf92 Ibaraki Children''s Hospital čŒØåŸŽēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(13016, 'https://ror.org/00thc5937', 'es', 1, 'https://ror.org/00thc5937 Fundación Ramón Domínguez'),
(13017, 'https://ror.org/041fc3q68', 'no_lang_code', 1, 'https://ror.org/041fc3q68 EnteraTech (United States)'),
(13018, 'https://ror.org/0160wm621', 'no_lang_code', 1, 'https://ror.org/0160wm621 Green Tech Labs (United States)'),
(13019, 'https://ror.org/05vj0gw61', 'no_lang_code', 1, 'https://ror.org/05vj0gw61 EntreChem (Spain)'),
(13020, 'https://ror.org/03y686t84', 'no_lang_code', 1, 'https://ror.org/03y686t84 Grenada National Organisation of Women'),
(13021, 'https://ror.org/00pnhy634', 'en', 1, 'https://ror.org/00pnhy634 The Entrepreneurs Foundation of Central Texas'),
(13022, 'https://ror.org/0252rqe04', 'en', 1, 'https://ror.org/0252rqe04 International Anesthesia Research Society'),
(13023, 'https://ror.org/002k2wg65', 'no_lang_code', 1, 'https://ror.org/002k2wg65 EntroGen (United States)'),
(13024, 'https://ror.org/03wbdxv85', 'en', 1, 'https://ror.org/03wbdxv85 Greyston'),
(13025, 'https://ror.org/02148sc68', 'en', 1, 'https://ror.org/02148sc68 Gaston County Schools'),
(13026, 'https://ror.org/0593sjj19', 'no_lang_code', 1, 'https://ror.org/0593sjj19 EpaleX (United States)'),
(13027, 'https://ror.org/00zwgqz39', 'es', 1, 'https://ror.org/00zwgqz39 Fundación Severo Ochoa'),
(13028, 'https://ror.org/0034r9358', 'en', 1, 'https://ror.org/0034r9358 Southeast Georgia Health System'),
(13029, 'https://ror.org/01zpsbf45', 'en', 1, 'https://ror.org/01zpsbf45 CHRISTUS St. Michael Health System'),
(13030, 'https://ror.org/02k1b4g33', 'no_lang_code', 1, 'https://ror.org/02k1b4g33 Grind For Life (United States)'),
(13031, 'https://ror.org/01c3w3270', 'en', 1, 'https://ror.org/01c3w3270 Institute of Cognitive and Brain Sciences'),
(13032, 'https://ror.org/01ge9a191', 'no_lang_code', 1, 'https://ror.org/01ge9a191 iCo Therapeutics (Canada)'),
(13033, 'https://ror.org/03ra41c26', 'no_lang_code', 1, 'https://ror.org/03ra41c26 Epigenetix (United States)'),
(13034, 'https://ror.org/02pwd4094', 'en', 1, 'https://ror.org/02pwd4094 Grossmont Hospital Foundation'),
(13035, 'https://ror.org/01pxre019', 'en', 1, 'https://ror.org/01pxre019 Epilepsy Foundation'),
(13036, 'https://ror.org/049qds964', 'en', 1, 'https://ror.org/049qds964 Wilshire Health and Community Services'),
(13037, 'https://ror.org/02m0cd826', 'en', 1, 'https://ror.org/02m0cd826 St. Luke''s Children''s Hospital'),
(13038, 'https://ror.org/05eygvb62', 'en', 1, 'https://ror.org/05eygvb62 Future Generations University'),
(13039, 'https://ror.org/03jk9qe20', 'no_lang_code', 1, 'https://ror.org/03jk9qe20 Epitel (United States)'),
(13040, 'https://ror.org/01ej5d124', 'pt', 1, 'https://ror.org/01ej5d124 Grupo Realizar'),
(13041, 'https://ror.org/03yv2v252', 'no_lang_code', 1, 'https://ror.org/03yv2v252 EpitoGenesis (United States)'),
(13042, 'https://ror.org/02cvw1988', 'en', 1, 'https://ror.org/02cvw1988 Equestrian Aid Foundation'),
(13043, 'https://ror.org/00d9pfn36', 'en', 1, 'https://ror.org/00d9pfn36 George Eliava Institute of Bacteriophage, Microbiology and Virology'),
(13044, 'https://ror.org/044vb2892', 'en', 1, 'https://ror.org/044vb2892 Erebouni Medical Center'),
(13045, 'https://ror.org/01fb4jv08', 'en', 1, 'https://ror.org/01fb4jv08 Guam Communications Network'),
(13046, 'https://ror.org/01f0ynj82', 'en', 1, 'https://ror.org/01f0ynj82 Erie Neighborhood House'),
(13047, 'https://ror.org/02gen5m31', 'en', 1, 'https://ror.org/02gen5m31 Erikson Institute'),
(13048, 'https://ror.org/02ewpgp84', 'en', 1, 'https://ror.org/02ewpgp84 ErinoakKids Centre for Treatment and Development'),
(13049, 'https://ror.org/03ryzec43', 'no_lang_code', 1, 'https://ror.org/03ryzec43 Bio, Tech and Beyond (United States)'),
(13050, 'https://ror.org/00bgp5g67', 'no_lang_code', 1, 'https://ror.org/00bgp5g67 iFyber (United States)'),
(13051, 'https://ror.org/04sz0rs34', 'en', 1, 'https://ror.org/04sz0rs34 Erlanger Health System'),
(13052, 'https://ror.org/05f19wy41', 'no_lang_code', 1, 'https://ror.org/05f19wy41 Igan Biosciences (United States)'),
(13053, 'https://ror.org/02rsq6w37', 'en', 1, 'https://ror.org/02rsq6w37 Ignite Adaptive Sports'),
(13054, 'https://ror.org/01mssdk07', 'no_lang_code', 1, 'https://ror.org/01mssdk07 Enterprise Science and Computing (United States)'),
(13055, 'https://ror.org/01anprz44', 'no_lang_code', 1, 'https://ror.org/01anprz44 Cell Machines (United States)'),
(13056, 'https://ror.org/04jqjaf29', 'en', 1, 'https://ror.org/04jqjaf29 EspeRare Foundation'),
(13057, 'https://ror.org/019ssje31', 'en', 1, 'https://ror.org/019ssje31 Essentia Health'),
(13058, 'https://ror.org/04e7m9p55', 'no_lang_code', 1, 'https://ror.org/04e7m9p55 Galapagos (Netherlands)'),
(13059, 'https://ror.org/051ansx96', 'no_lang_code', 1, 'https://ror.org/051ansx96 Eternity Bioscience (United States)'),
(13060, 'https://ror.org/008zr4d33', 'en', 1, 'https://ror.org/008zr4d33 Galilee Missionary Baptist Church'),
(13061, 'https://ror.org/03pyecx64', 'en', 1, 'https://ror.org/03pyecx64 Cumberland County Schools'),
(13062, 'https://ror.org/047qgrj71', 'en', 1, 'https://ror.org/047qgrj71 Illinois Action for Children'),
(13063, 'https://ror.org/02c31t502', 'en', 1, 'https://ror.org/02c31t502 Guangzhou Institutes of Biomedicine and Health äø­å›½ē§‘å­¦é™¢å¹æå·žē”Ÿē‰©åŒ»čÆäøŽå„åŗ·ē ”ē©¶é™¢'),
(13064, 'https://ror.org/03vfgta75', 'en', 1, 'https://ror.org/03vfgta75 Illinois CancerCare'),
(13065, 'https://ror.org/025j1vp15', 'en', 1, 'https://ror.org/025j1vp15 Guardian Angel Homes'),
(13066, 'https://ror.org/03ajn7m72', 'en', 1, 'https://ror.org/03ajn7m72 Illinois Central College'),
(13067, 'https://ror.org/02ys5x139', 'en', 1, 'https://ror.org/02ys5x139 Illinois College'),
(13068, 'https://ror.org/03834em22', 'en', 1, 'https://ror.org/03834em22 Illinois Public Health Institute'),
(13069, 'https://ror.org/0209vy811', 'en', 1, 'https://ror.org/0209vy811 Illinois Valley Ear Nose and Throat'),
(13070, 'https://ror.org/00hyf3k92', 'en', 1, 'https://ror.org/00hyf3k92 Ethiopian Community Development Council'),
(13071, 'https://ror.org/04hsm3t82', 'en', 1, 'https://ror.org/04hsm3t82 Gardner''s House'),
(13072, 'https://ror.org/05cdper96', 'no_lang_code', 1, 'https://ror.org/05cdper96 IMGENEX India (India)'),
(13073, 'https://ror.org/00qmezm19', 'en', 1, 'https://ror.org/00qmezm19 Europa Donna'),
(13074, 'https://ror.org/02g03w722', 'en', 1, 'https://ror.org/02g03w722 Guards of The Earth and The Vulnerable'),
(13075, 'https://ror.org/04dtc1m65', 'en', 1, 'https://ror.org/04dtc1m65 Immigrant and Refugee Community Organization'),
(13076, 'https://ror.org/00hn1zk59', 'en', 1, 'https://ror.org/00hn1zk59 Guiding Lights Caregiver Support Center'),
(13077, 'https://ror.org/05vgc9608', 'en', 1, 'https://ror.org/05vgc9608 Guilford County Schools'),
(13078, 'https://ror.org/03et3t032', 'en', 1, 'https://ror.org/03et3t032 Gulf Relief Foundation'),
(13079, 'https://ror.org/00x856k20', 'no_lang_code', 1, 'https://ror.org/00x856k20 ImmuneWorks (United States)'),
(13080, 'https://ror.org/04pxgkb44', 'en', 1, 'https://ror.org/04pxgkb44 Hudson Valley Youth Chorale'),
(13081, 'https://ror.org/012jq2614', 'en', 1, 'https://ror.org/012jq2614 Gateway Confluence Wheelchair Sports Foundation'),
(13082, 'https://ror.org/02x78ab05', 'en', 1, 'https://ror.org/02x78ab05 European Cancer Prevention'),
(13083, 'https://ror.org/030e2am13', 'en', 1, 'https://ror.org/030e2am13 Human Relief Foundation'),
(13084, 'https://ror.org/02nfs1v98', 'en', 1, 'https://ror.org/02nfs1v98 Gateways Hospital and Mental Health Center'),
(13085, 'https://ror.org/02babdz45', 'en', 1, 'https://ror.org/02babdz45 European Neuro Muscular Centre'),
(13086, 'https://ror.org/02bgway40', 'en', 1, 'https://ror.org/02bgway40 Gulu Women with Disabilities Union'),
(13087, 'https://ror.org/0208ywa45', 'en', 1, 'https://ror.org/0208ywa45 Gathering 4 Gardner'),
(13088, 'https://ror.org/02e2xy633', 'en', 1, 'https://ror.org/02e2xy633 Human Resources Development Institute'),
(13089, 'https://ror.org/04ttrjn35', 'en', 1, 'https://ror.org/04ttrjn35 The Center on Colfax'),
(13090, 'https://ror.org/022gwqv30', 'en', 1, 'https://ror.org/022gwqv30 Breast and GYN Health Project'),
(13091, 'https://ror.org/01m3xga44', 'en', 1, 'https://ror.org/01m3xga44 Evergreen Community Charter School'),
(13092, 'https://ror.org/0171n6z35', 'en', 1, 'https://ror.org/0171n6z35 EvergreenHealth Foundation'),
(13093, 'https://ror.org/03eqeqg74', 'en', 1, 'https://ror.org/03eqeqg74 Institute of Protein Biochemistry Istituto di Biochimica delle Proteine'),
(13094, 'https://ror.org/0258a2f50', 'en', 1, 'https://ror.org/0258a2f50 Institute of Software Systems Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ програмних систем'),
(13095, 'https://ror.org/01gpc1r56', 'en', 1, 'https://ror.org/01gpc1r56 H.Buniatian Institute of Biochemistry'),
(13096, 'https://ror.org/02ck4xq38', 'no_lang_code', 1, 'https://ror.org/02ck4xq38 Impel Neuropharma (United States)'),
(13097, 'https://ror.org/03nznsh21', 'en', 1, 'https://ror.org/03nznsh21 Gems of Hope'),
(13098, 'https://ror.org/0498rcw21', 'en', 1, 'https://ror.org/0498rcw21 Habilitative Systems'),
(13099, 'https://ror.org/04tv16z87', 'en', 1, 'https://ror.org/04tv16z87 Habitat for Humanity Fiji'),
(13100, 'https://ror.org/000rag760', 'en', 1, 'https://ror.org/000rag760 Habitat for Humanity of Greater Charlottesville'),
(13101, 'https://ror.org/05q5snp60', 'en', 1, 'https://ror.org/05q5snp60 St. Luke''s Cystic Fibrosis Center of Idaho'),
(13102, 'https://ror.org/05a19xw41', 'en', 1, 'https://ror.org/05a19xw41 Habitot Children''s Museum'),
(13103, 'https://ror.org/05wrev716', 'no_lang_code', 1, 'https://ror.org/05wrev716 Generex Biotechnology (Canada)'),
(13104, 'https://ror.org/04tst3481', 'no_lang_code', 1, 'https://ror.org/04tst3481 Hadassah'),
(13105, 'https://ror.org/02bfry065', 'no_lang_code', 1, 'https://ror.org/02bfry065 Hagar International'),
(13106, 'https://ror.org/0284hgn97', 'no_lang_code', 1, 'https://ror.org/0284hgn97 Genesis Biotechnologies (United States)'),
(13107, 'https://ror.org/00c6h1169', 'en', 1, 'https://ror.org/00c6h1169 Genesis Counseling Centers'),
(13108, 'https://ror.org/01nz9qm02', 'en', 1, 'https://ror.org/01nz9qm02 Genesis Foundation'),
(13109, 'https://ror.org/00618cy28', 'en', 1, 'https://ror.org/00618cy28 Haitian American Association Against Cancer'),
(13110, 'https://ror.org/059xcee45', 'en', 1, 'https://ror.org/059xcee45 Genesis Health System'),
(13111, 'https://ror.org/0226s8t61', 'en', 1, 'https://ror.org/0226s8t61 Halleck Creek Ranch'),
(13112, 'https://ror.org/04026qg09', 'en', 1, 'https://ror.org/04026qg09 Genesis HealthCare System'),
(13113, 'https://ror.org/002czwf36', 'en', 1, 'https://ror.org/002czwf36 MelroseWakefield Healthcare'),
(13114, 'https://ror.org/04hjhtb64', 'en', 1, 'https://ror.org/04hjhtb64 Elks Rehabilitation Hospital'),
(13115, 'https://ror.org/05ppten54', 'en', 1, 'https://ror.org/05ppten54 Genesys Hurley Cancer Institute'),
(13116, 'https://ror.org/02xnk0c33', 'no_lang_code', 1, 'https://ror.org/02xnk0c33 In Silico Biosciences (United States)'),
(13117, 'https://ror.org/02etp1027', 'en', 1, 'https://ror.org/02etp1027 In The Meantime Men’s Group'),
(13118, 'https://ror.org/05dmj1t18', 'no_lang_code', 1, 'https://ror.org/05dmj1t18 Akashi Therapeutics (United States)'),
(13119, 'https://ror.org/02d1x3182', 'en', 1, 'https://ror.org/02d1x3182 Genetic Research Institute of the Desert'),
(13120, 'https://ror.org/036pfxs78', 'en', 1, 'https://ror.org/036pfxs78 County Councils on Aging'),
(13121, 'https://ror.org/00brvts71', 'en', 1, 'https://ror.org/00brvts71 HP Family Medical Clinic'),
(13122, 'https://ror.org/01rxpfa84', 'en', 1, 'https://ror.org/01rxpfa84 IndependenceFirst'),
(13123, 'https://ror.org/05by9p696', 'no_lang_code', 1, 'https://ror.org/05by9p696 HansaBioMed (Estonia)'),
(13124, 'https://ror.org/01r3hzs43', 'es', 1, 'https://ror.org/01r3hzs43 Instituto de la Memoria Depresión y Enfermedades de Riesgo'),
(13125, 'https://ror.org/055b6zg31', 'en', 1, 'https://ror.org/055b6zg31 genHkids Coalition'),
(13126, 'https://ror.org/051yjgn28', 'no_lang_code', 1, 'https://ror.org/051yjgn28 Genkyotex (Switzerland)'),
(13127, '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'),
(13128, 'https://ror.org/01ay7an66', 'no_lang_code', 1, 'https://ror.org/01ay7an66 VERO Biotech (United States)'),
(13129, 'https://ror.org/03wcw5870', 'en', 1, 'https://ror.org/03wcw5870 India Health Action Trust'),
(13130, 'https://ror.org/017prpf68', 'no_lang_code', 1, 'https://ror.org/017prpf68 OneGift'),
(13131, 'https://ror.org/036pa7g20', 'en', 1, 'https://ror.org/036pa7g20 Harbor Beach Community Hospital'),
(13132, 'https://ror.org/01m417e54', 'en', 1, 'https://ror.org/01m417e54 Indiana Cancer Consortium'),
(13133, 'https://ror.org/00jg4ch48', 'en', 1, 'https://ror.org/00jg4ch48 Indiana Cancer Registrars Association'),
(13134, 'https://ror.org/0131c1w17', 'en', 1, 'https://ror.org/0131c1w17 Harlem Children''s Zone'),
(13135, 'https://ror.org/01x8pzm10', 'no_lang_code', 1, 'https://ror.org/01x8pzm10 Harley-Davidson (United States)'),
(13136, 'https://ror.org/05patbw61', 'en', 1, 'https://ror.org/05patbw61 Individual Differences'),
(13137, 'https://ror.org/033pn6473', 'en', 1, 'https://ror.org/033pn6473 Harm Reduction Services'),
(13138, 'https://ror.org/02d6wbq68', 'en', 1, 'https://ror.org/02d6wbq68 GeoHazards International'),
(13139, 'https://ror.org/014bgkg42', 'en', 1, 'https://ror.org/014bgkg42 George Mark Children''s House'),
(13140, 'https://ror.org/040e8a368', 'no_lang_code', 1, 'https://ror.org/040e8a368 Harmonex (United States)'),
(13141, 'https://ror.org/041p50967', 'pt', 1, 'https://ror.org/041p50967 Instituto Noos'),
(13142, 'https://ror.org/0009gvn90', 'en', 1, 'https://ror.org/0009gvn90 Georgia Breast Cancer Coalition Fund'),
(13143, 'https://ror.org/03qe0c470', 'en', 1, 'https://ror.org/03qe0c470 Indiana Minority Health Coalition'),
(13144, 'https://ror.org/02h606z41', 'en', 1, 'https://ror.org/02h606z41 Georgia Canines for Independence'),
(13145, 'https://ror.org/039whrd55', 'en', 1, 'https://ror.org/039whrd55 Harrington Regional Medical Center'),
(13146, 'https://ror.org/01qa6hr76', 'en', 1, 'https://ror.org/01qa6hr76 Institute for Clinical Social Work'),
(13147, 'https://ror.org/02zsk0y62', 'en', 1, 'https://ror.org/02zsk0y62 Harris County Hospital District Foundation'),
(13148, 'https://ror.org/00wzdat64', 'en', 1, 'https://ror.org/00wzdat64 Instituto Familiar de la Raza'),
(13149, 'https://ror.org/04q71jj82', 'en', 1, 'https://ror.org/04q71jj82 Institute for Development, Research, Advocacy and Applied Care'),
(13150, 'https://ror.org/02yrcx115', 'en', 1, 'https://ror.org/02yrcx115 Texas Health Harris Methodist Hospital Fort Worth'),
(13151, 'https://ror.org/03d7h4x42', 'en', 1, 'https://ror.org/03d7h4x42 Independent Living Resource Center San Francisco'),
(13152, 'https://ror.org/001s48x24', 'en', 1, 'https://ror.org/001s48x24 Independent Living Resources'),
(13153, 'https://ror.org/05y2vby93', 'en', 1, 'https://ror.org/05y2vby93 Texas Health Resources Foundation'),
(13154, 'https://ror.org/02rrpz836', 'en', 1, 'https://ror.org/02rrpz836 Institute for EthnoMedicine'),
(13155, 'https://ror.org/04masjv69', 'en', 1, 'https://ror.org/04masjv69 Harry Gregg Foundation'),
(13156, 'https://ror.org/03jgkmd81', 'en', 1, 'https://ror.org/03jgkmd81 i3gb Foundation'),
(13157, 'https://ror.org/01bhfvx80', 'pt', 1, 'https://ror.org/01bhfvx80 Gestos'),
(13158, 'https://ror.org/024fjxd56', 'en', 1, 'https://ror.org/024fjxd56 Gibson Area Hospital and Health Services'),
(13159, 'https://ror.org/05evayb02', 'en', 1, 'https://ror.org/05evayb02 Baruch S. Blumberg Institute'),
(13160, 'https://ror.org/04nq17x65', 'en', 1, 'https://ror.org/04nq17x65 Bioethics International'),
(13161, 'https://ror.org/0292ppt25', 'en', 1, 'https://ror.org/0292ppt25 Gifts to Share'),
(13162, 'https://ror.org/00yw8fx90', 'en', 1, 'https://ror.org/00yw8fx90 Indo-American Center'),
(13163, 'https://ror.org/01bwznq34', 'en', 1, 'https://ror.org/01bwznq34 Gila Regional Medical Center'),
(13164, 'https://ror.org/051434232', 'en', 1, 'https://ror.org/051434232 Harvey Brooks Motivation and Development Foundation'),
(13165, 'https://ror.org/03zff7r07', 'en', 1, 'https://ror.org/03zff7r07 Gila River Healthcare'),
(13166, 'https://ror.org/03jrk2631', 'en', 1, 'https://ror.org/03jrk2631 Have A Heart Community Trust'),
(13167, 'https://ror.org/0142es516', 'en', 1, 'https://ror.org/0142es516 Gillette Children''s Specialty Healthcare'),
(13168, 'https://ror.org/04wmv4g63', 'en', 1, 'https://ror.org/04wmv4g63 Hawaii Children''s Cancer Foundation'),
(13169, 'https://ror.org/03waww979', 'en', 1, 'https://ror.org/03waww979 Hays Medical Center'),
(13170, 'https://ror.org/00v60dj89', 'no_lang_code', 1, 'https://ror.org/00v60dj89 Indoor Biotechnologies (United States)'),
(13171, 'https://ror.org/05af39960', 'en', 1, 'https://ror.org/05af39960 Gillen Brewer School'),
(13172, 'https://ror.org/05x0fr110', 'no_lang_code', 1, 'https://ror.org/05x0fr110 HBLA (United States)'),
(13173, 'https://ror.org/05rsdpj72', 'no_lang_code', 1, 'https://ror.org/05rsdpj72 Indus Business Systems (India) ą°‡ą°‚ą°”ą°øą± ą°¬ą°æą°œą°æą°Øą±†ą°øą± ą°øą°æą°øą±ą°Ÿą°®ą±ą°øą± ą°²ą°æą°®ą°æą°Ÿą±†ą°”ą±'),
(13174, 'https://ror.org/04b43x362', 'en', 1, 'https://ror.org/04b43x362 International Center of New York'),
(13175, 'https://ror.org/04sxrc563', 'en', 1, 'https://ror.org/04sxrc563 Conversations! The International Ovarian Cancer Connection'),
(13176, 'https://ror.org/05fd2ss89', 'en', 1, 'https://ror.org/05fd2ss89 Chronic Condition Information Network'),
(13177, 'https://ror.org/014zp7s14', 'en', 1, 'https://ror.org/014zp7s14 Dream Foundation'),
(13178, 'https://ror.org/029255j70', 'en', 1, 'https://ror.org/029255j70 Cape Fear Valley Health System'),
(13179, 'https://ror.org/01107ae84', 'en', 1, 'https://ror.org/01107ae84 Des Moines University Osteopathic Medical Center'),
(13180, 'https://ror.org/015enq107', 'en', 1, 'https://ror.org/015enq107 Gallery North'),
(13181, 'https://ror.org/01749ew24', 'en', 1, 'https://ror.org/01749ew24 Friends of the North Carolina Maritime Museum'),
(13182, 'https://ror.org/04k8j6m55', 'no_lang_code', 1, 'https://ror.org/04k8j6m55 Napo Pharmaceuticals (United States)'),
(13183, 'https://ror.org/0382qx554', 'en', 1, 'https://ror.org/0382qx554 Head-Royce School'),
(13184, 'https://ror.org/045sppx81', 'en', 1, 'https://ror.org/045sppx81 HeadNorth'),
(13185, 'https://ror.org/03p2f7q52', 'en', 1, 'https://ror.org/03p2f7q52 Institut Rick Hansen Praxis Spinal Cord Institute'),
(13186, 'https://ror.org/03v7h1165', 'en', 1, 'https://ror.org/03v7h1165 Institute for Microstructural Sciences'),
(13187, 'https://ror.org/035h67p10', 'en', 1, 'https://ror.org/035h67p10 META Health'),
(13188, 'https://ror.org/04m0t0a79', 'pt', 1, 'https://ror.org/04m0t0a79 Promundo'),
(13189, 'https://ror.org/03xe5bc97', 'en', 1, 'https://ror.org/03xe5bc97 Institute for Music and Neurologic Function'),
(13190, 'https://ror.org/01q3p8f34', 'no_lang_code', 1, 'https://ror.org/01q3p8f34 Inflammatory Response Research (United States)'),
(13191, 'https://ror.org/05nmnr071', 'en', 1, 'https://ror.org/05nmnr071 Infrared Breast Health'),
(13192, 'https://ror.org/00cswhr36', 'no_lang_code', 1, 'https://ror.org/00cswhr36 ISA Pharmaceuticals (Netherlands)'),
(13193, 'https://ror.org/022c13n15', 'en', 1, 'https://ror.org/022c13n15 Health Alliance International'),
(13194, 'https://ror.org/05ckqx151', 'en', 1, 'https://ror.org/05ckqx151 Integris Health'),
(13195, 'https://ror.org/03s0p4v02', 'en', 1, 'https://ror.org/03s0p4v02 Health Choice Network'),
(13196, 'https://ror.org/01yq97131', 'no_lang_code', 1, 'https://ror.org/01yq97131 Intellicell Biosciences (United States)'),
(13197, 'https://ror.org/000hva629', 'no_lang_code', 1, 'https://ror.org/000hva629 Inhibikase Therapeutics (United States)'),
(13198, 'https://ror.org/03yew7168', 'en', 1, 'https://ror.org/03yew7168 Inter-Psy'),
(13199, 'https://ror.org/00jt1e157', 'en', 1, 'https://ror.org/00jt1e157 Institute for Reproductive Health'),
(13200, 'https://ror.org/008srgs73', 'en', 1, 'https://ror.org/008srgs73 Inland Empire Concerned African American Churches'),
(13201, 'https://ror.org/00w7vs376', 'en', 1, 'https://ror.org/00w7vs376 Inland Northwest Health Services'),
(13202, 'https://ror.org/00w4gjq77', 'en', 1, 'https://ror.org/00w4gjq77 Interfaith Center of New York'),
(13203, 'https://ror.org/00fd6f737', 'en', 1, 'https://ror.org/00fd6f737 Institute for Security Studies'),
(13204, 'https://ror.org/025kz2973', 'en', 1, 'https://ror.org/025kz2973 Punjab Technical University ਪੰਜਾਬ ąØŸą©ˆąØ•ąØØą©€ąØ•ąØ² ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(13205, 'https://ror.org/010c8ab15', 'en', 1, 'https://ror.org/010c8ab15 Health Education Council'),
(13206, 'https://ror.org/0347g7262', 'en', 1, 'https://ror.org/0347g7262 Islamic Shura Council of Southern California'),
(13207, 'https://ror.org/02ga6zq31', 'en', 1, 'https://ror.org/02ga6zq31 Israel Cancer Association USA'),
(13208, 'https://ror.org/01ykqc562', 'en', 1, 'https://ror.org/01ykqc562 Innocence Project'),
(13209, 'https://ror.org/01s1vhe62', 'en', 1, 'https://ror.org/01s1vhe62 International Alliance of ALS/MND Associations'),
(13210, 'https://ror.org/011adb956', 'fr', 1, 'https://ror.org/011adb956 Centre Hospito Universitaire de SƩtif'),
(13211, 'https://ror.org/022cany03', 'en', 1, 'https://ror.org/022cany03 Health Promotion Council'),
(13212, 'https://ror.org/04fv19769', 'en', 1, 'https://ror.org/04fv19769 Health Research Alliance'),
(13213, 'https://ror.org/040n23d23', 'no_lang_code', 1, 'https://ror.org/040n23d23 InnoPhage (Portugal)'),
(13214, 'https://ror.org/0040b6869', 'en', 1, 'https://ror.org/0040b6869 International Brain Research Organization Organisation internationale de recherche sur le cerveau'),
(13215, 'https://ror.org/05b2gms10', 'en', 1, 'https://ror.org/05b2gms10 International Breast Cancer Study Group'),
(13216, 'https://ror.org/02a9vnt59', 'en', 1, 'https://ror.org/02a9vnt59 Institute of Biochemistry and Genetics of Ufa Scientific Centre Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø генетики'),
(13217, 'https://ror.org/05bw8ek06', 'en', 1, 'https://ror.org/05bw8ek06 Innovation To End Neglected Diseases'),
(13218, 'https://ror.org/02zx9pq98', 'en', 1, 'https://ror.org/02zx9pq98 Innova HealthCare Services'),
(13219, 'https://ror.org/02vx92p56', 'en', 1, 'https://ror.org/02vx92p56 Clubhouse International'),
(13220, 'https://ror.org/01hv5h172', 'en', 1, 'https://ror.org/01hv5h172 Pfeiffer Medical Center'),
(13221, 'https://ror.org/04ehykb85', 'en', 1, 'https://ror.org/04ehykb85 Institute of Biomedical Technologies Istituto di Tecnologie Biomediche'),
(13222, 'https://ror.org/05av82888', 'en', 1, 'https://ror.org/05av82888 New Mexico Cancer Center Foundation'),
(13223, 'https://ror.org/0594bad20', 'en', 1, 'https://ror.org/0594bad20 International Centre for Reproductive Health Kenya'),
(13224, 'https://ror.org/05patmk97', 'en', 1, 'https://ror.org/05patmk97 Institute for Chemical and Physical Processes Istituto per i Processi Chimico Fisici'),
(13225, 'https://ror.org/023wxgq18', 'en', 1, 'https://ror.org/023wxgq18 Ivano-Frankivsk National Medical University Івано-Š¤Ń€Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(13226, 'https://ror.org/05mtv6b69', 'en', 1, 'https://ror.org/05mtv6b69 Ivy Hill Therapeutic Equestrian Center'),
(13227, 'https://ror.org/00kmz4377', 'en', 1, 'https://ror.org/00kmz4377 HealthEast Care System'),
(13228, 'https://ror.org/0088fqs38', 'en', 1, 'https://ror.org/0088fqs38 HealthNet TPO'),
(13229, 'https://ror.org/05b4fr068', 'en', 1, 'https://ror.org/05b4fr068 Iyengar Yoga Association of Greater New York'),
(13230, 'https://ror.org/05wmmcx08', 'en', 1, 'https://ror.org/05wmmcx08 HealthNow New York'),
(13231, 'https://ror.org/05sggp397', 'en', 1, 'https://ror.org/05sggp397 HealthPoint Communications'),
(13232, 'https://ror.org/01p3qv245', 'en', 1, 'https://ror.org/01p3qv245 HealthRight International'),
(13233, 'https://ror.org/034cg9v65', 'en', 1, 'https://ror.org/034cg9v65 Chatham County Schools'),
(13234, 'https://ror.org/01rf9hd69', 'en', 1, 'https://ror.org/01rf9hd69 Healthy African American Families II'),
(13235, 'https://ror.org/03j13ys91', 'en', 1, 'https://ror.org/03j13ys91 International Medical Corps'),
(13236, 'https://ror.org/04xpz8e97', 'en', 1, 'https://ror.org/04xpz8e97 Jack and Jill Late Stage Cancer Foundation'),
(13237, 'https://ror.org/00pgzg313', 'no_lang_code', 1, 'https://ror.org/00pgzg313 Ponimanie'),
(13238, 'https://ror.org/05mknav37', 'en', 1, 'https://ror.org/05mknav37 International Paralympic Committee Internationales Paralympisches Komitee'),
(13239, 'https://ror.org/04q8q8x21', 'en', 1, 'https://ror.org/04q8q8x21 Jacob''s Heart Children''s Cancer Support Services'),
(13240, 'https://ror.org/01akx8n77', 'no_lang_code', 1, 'https://ror.org/01akx8n77 Dendritic Cell Research (India)'),
(13241, 'https://ror.org/015cdqj77', 'en', 1, 'https://ror.org/015cdqj77 United Medical Center'),
(13242, 'https://ror.org/03rd74t51', 'en', 1, 'https://ror.org/03rd74t51 Healthy Functions'),
(13243, 'https://ror.org/00sj63039', 'en', 1, 'https://ror.org/00sj63039 International Partnership for Microbicides'),
(13244, 'https://ror.org/04pp26y21', 'en', 1, 'https://ror.org/04pp26y21 Healthy Start Coalition of Flagler & Volusia Counties'),
(13245, 'https://ror.org/0369m1a38', 'en', 1, 'https://ror.org/0369m1a38 International Pre-Autistic Network'),
(13246, 'https://ror.org/05yc3mk04', 'en', 1, 'https://ror.org/05yc3mk04 Healthy Start'),
(13247, 'https://ror.org/0103ez066', 'en', 1, 'https://ror.org/0103ez066 Jameson Memorial Hospital'),
(13248, 'https://ror.org/05t86hn44', 'no_lang_code', 1, 'https://ror.org/05t86hn44 InSpark Technologies (United States)'),
(13249, 'https://ror.org/00aanwc55', 'en', 1, 'https://ror.org/00aanwc55 International Society for Augmentative and Alternative Communication'),
(13250, 'https://ror.org/00myyb874', 'en', 1, 'https://ror.org/00myyb874 Heart of Passion'),
(13251, 'https://ror.org/02mmrmf21', 'no_lang_code', 1, 'https://ror.org/02mmrmf21 Janus Biotherapeutics (United States)'),
(13252, 'https://ror.org/022aswt06', 'en', 1, 'https://ror.org/022aswt06 Heartland Head Start'),
(13253, 'https://ror.org/01v28qr30', 'en', 1, 'https://ror.org/01v28qr30 Jazz Foundation of America'),
(13254, 'https://ror.org/03f3zda13', 'no_lang_code', 1, 'https://ror.org/03f3zda13 Heartsong'),
(13255, 'https://ror.org/05xvy6672', 'en', 1, 'https://ror.org/05xvy6672 International Society for Clinical Densitometry'),
(13256, 'https://ror.org/00qrgc437', 'en', 1, 'https://ror.org/00qrgc437 International Symposium on Neural Regeneration'),
(13257, 'https://ror.org/02ecfwn78', 'no_lang_code', 1, 'https://ror.org/02ecfwn78 JB Life Sciences (United States)'),
(13258, 'https://ror.org/02rae2f41', 'en', 1, 'https://ror.org/02rae2f41 International Women''s Development Agency'),
(13259, 'https://ror.org/05v6nmh25', 'no_lang_code', 1, 'https://ror.org/05v6nmh25 Heartspring'),
(13260, 'https://ror.org/034sbyx40', 'en', 1, 'https://ror.org/034sbyx40 Institute of Neurology, Psychiatry and Narcology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неврології, психіатрії та наркології ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń—'),
(13261, 'https://ror.org/02advfp87', 'no_lang_code', 1, 'https://ror.org/02advfp87 Corbus Pharmaceuticals (United States)'),
(13262, 'https://ror.org/05p6m4w34', 'no_lang_code', 1, 'https://ror.org/05p6m4w34 Heat Biologics (United States)'),
(13263, 'https://ror.org/05kkrdt60', 'en', 1, 'https://ror.org/05kkrdt60 Hebrew Health Care'),
(13264, 'https://ror.org/013pd3a75', 'en', 1, 'https://ror.org/013pd3a75 Jewish Community Center in Manhattan'),
(13265, 'https://ror.org/03bxr8x39', 'en', 1, 'https://ror.org/03bxr8x39 Jewish Community Center of Fort Lee'),
(13266, 'https://ror.org/021pq8x94', 'en', 1, 'https://ror.org/021pq8x94 JD Breast Cancer Foundation'),
(13267, 'https://ror.org/05fvbe809', 'en', 1, 'https://ror.org/05fvbe809 Youth+Tech+Health'),
(13268, 'https://ror.org/04pmfqr73', 'en', 1, 'https://ror.org/04pmfqr73 Heifer International'),
(13269, 'https://ror.org/04v46qt86', 'no_lang_code', 1, 'https://ror.org/04v46qt86 Intezyne (United States)'),
(13270, 'https://ror.org/037ebw447', 'en', 1, 'https://ror.org/037ebw447 Helen Hay Whitney Foundation'),
(13271, 'https://ror.org/01gf2gn61', 'en', 1, 'https://ror.org/01gf2gn61 VASCOG Society'),
(13272, 'https://ror.org/04qxbzf60', 'en', 1, 'https://ror.org/04qxbzf60 Helen Keller International'),
(13273, 'https://ror.org/02jwqhx24', 'en', 1, 'https://ror.org/02jwqhx24 Cancer Support Center'),
(13274, 'https://ror.org/04jxd1g84', 'en', 1, 'https://ror.org/04jxd1g84 Intractable Childhood Epilepsy Alliance'),
(13275, 'https://ror.org/01yt7p923', 'en', 1, 'https://ror.org/01yt7p923 Laboratory for Personalized Molecular Medicine'),
(13276, 'https://ror.org/031bn8887', 'no_lang_code', 1, 'https://ror.org/031bn8887 Jenrin Discovery (United States)'),
(13277, 'https://ror.org/01g02w781', 'en', 1, 'https://ror.org/01g02w781 Help Hope Live'),
(13278, 'https://ror.org/012t91r40', 'fr', 1, 'https://ror.org/012t91r40 Institut de Microbiologie de la MƩditerranƩe'),
(13279, 'https://ror.org/00pfg3v73', 'en', 1, 'https://ror.org/00pfg3v73 Paralyzed Veterans of America'),
(13280, 'https://ror.org/020qj1b53', 'en', 1, 'https://ror.org/020qj1b53 Helping Hand Society'),
(13281, 'https://ror.org/04n9mpx29', 'no_lang_code', 1, 'https://ror.org/04n9mpx29 IP Israel Patents (Israel)'),
(13282, 'https://ror.org/00hxw4g76', 'en', 1, 'https://ror.org/00hxw4g76 Helping Hands Monkey Helpers'),
(13283, 'https://ror.org/045hjpj39', 'en', 1, 'https://ror.org/045hjpj39 IPC Healthcare'),
(13284, 'https://ror.org/024vvee04', 'en', 1, 'https://ror.org/024vvee04 Hendrick Medical Center'),
(13285, 'https://ror.org/05678xp35', 'en', 1, 'https://ror.org/05678xp35 Iranian Homeopathic Association'),
(13286, 'https://ror.org/03rkvna13', 'en', 1, 'https://ror.org/03rkvna13 Jewish Family Service of San Diego'),
(13287, 'https://ror.org/027rtfv09', 'en', 1, 'https://ror.org/027rtfv09 Jewish Hospital and St. Mary''s HealthCare'),
(13288, 'https://ror.org/03rtkz951', 'en', 1, 'https://ror.org/03rtkz951 Jewish Women''s Archive'),
(13289, 'https://ror.org/02dh03d79', 'no_lang_code', 1, 'https://ror.org/02dh03d79 iRepertoire (United States)'),
(13290, 'https://ror.org/052tzd367', 'en', 1, 'https://ror.org/052tzd367 Granville County Public Schools'),
(13291, 'https://ror.org/051jg5p78', 'en', 1, 'https://ror.org/051jg5p78 First Affiliated Hospital of Soochow University č‹å·žå¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(13292, 'https://ror.org/05wjq4v91', 'en', 1, 'https://ror.org/05wjq4v91 Uganda Institute of Information & Communications Technology'),
(13293, 'https://ror.org/03n89wa68', 'en', 1, 'https://ror.org/03n89wa68 Los Angeles County Office of Education'),
(13294, 'https://ror.org/04dyr4x59', 'en', 1, 'https://ror.org/04dyr4x59 Kingsley House'),
(13295, 'https://ror.org/0112g6h79', 'en', 1, 'https://ror.org/0112g6h79 Iringa Development of Youth Disabled and Children Care'),
(13296, 'https://ror.org/05fkp1h83', 'en', 1, 'https://ror.org/05fkp1h83 Los Angeles LGBT Center'),
(13297, 'https://ror.org/041g4k048', 'en', 1, 'https://ror.org/041g4k048 Iringa Mercy Organization'),
(13298, 'https://ror.org/04crjc626', 'no_lang_code', 1, 'https://ror.org/04crjc626 Kivulini Women’s Rights Organisation'),
(13299, 'https://ror.org/0322wda97', 'en', 1, 'https://ror.org/0322wda97 Los Angeles Pink Dragons'),
(13300, 'https://ror.org/02h3g8t20', 'no_lang_code', 1, 'https://ror.org/02h3g8t20 Liberty Media (United States)'),
(13301, 'https://ror.org/03wqknk68', 'en', 1, 'https://ror.org/03wqknk68 Lou Ruvo Brain Institute'),
(13302, 'https://ror.org/02vdjrg05', 'en', 1, 'https://ror.org/02vdjrg05 Max Healthcare'),
(13303, 'https://ror.org/01nyatq71', 'en', 1, 'https://ror.org/01nyatq71 Institute of Molecular Biology and Pathology Istituto di Biologia e Patologia Molecolare'),
(13304, 'https://ror.org/02cs3k195', 'en', 1, 'https://ror.org/02cs3k195 Juvenile Myelomonocytic Leukemia Foundation'),
(13305, 'https://ror.org/03t8mqd25', 'en', 1, 'https://ror.org/03t8mqd25 Institute of Molecular Biology'),
(13306, 'https://ror.org/05ngknq10', 'no_lang_code', 1, 'https://ror.org/05ngknq10 JN Biosciences (United States)'),
(13307, 'https://ror.org/01fv8s797', 'no_lang_code', 1, 'https://ror.org/01fv8s797 JobTrain'),
(13308, 'https://ror.org/04zmjp854', 'en', 1, 'https://ror.org/04zmjp854 LRGHealthcare'),
(13309, 'https://ror.org/02b9ykk59', 'en', 1, 'https://ror.org/02b9ykk59 Lucas County Board of Developmental Disabilities'),
(13310, 'https://ror.org/04mza7j60', 'en', 1, 'https://ror.org/04mza7j60 Lucia''s Angels'),
(13311, 'https://ror.org/02s47bn48', 'en', 1, 'https://ror.org/02s47bn48 Meadows Regional Medical Center'),
(13312, 'https://ror.org/04wgbm466', 'en', 1, 'https://ror.org/04wgbm466 Kōkua Mau'),
(13313, 'https://ror.org/04afqbm81', 'en', 1, 'https://ror.org/04afqbm81 Mecosta County Medical Center'),
(13314, 'https://ror.org/04smrs866', 'en', 1, 'https://ror.org/04smrs866 Institute of Neurobiology and Molecular Medicine Istituto di Neurobiologia e Medicina Molecolare'),
(13315, 'https://ror.org/05q9yze82', 'en', 1, 'https://ror.org/05q9yze82 Institute of Neurobiology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š½ŠµŠ²Ń€Š¾Š±ŠøŠ¾Š»Š¾Š³ŠøŃ'),
(13316, 'https://ror.org/02vn2vd34', 'en', 1, 'https://ror.org/02vn2vd34 Columbus Regional Healthcare System'),
(13317, 'https://ror.org/047dyfk64', 'en', 1, 'https://ror.org/047dyfk64 Medanta The Medicity'),
(13318, 'https://ror.org/01r0ge295', 'en', 1, 'https://ror.org/01r0ge295 John F. Kennedy Memorial Foundation'),
(13319, 'https://ror.org/01yg57d71', 'en', 1, 'https://ror.org/01yg57d71 Institute of Neurological Sciences Istituto di Scienze Neurologiche'),
(13320, 'https://ror.org/05qrhgs40', 'en', 1, 'https://ror.org/05qrhgs40 Korean Community Service Center of Greater Washington'),
(13321, 'https://ror.org/02c4d2n77', 'en', 1, 'https://ror.org/02c4d2n77 Fitzgibbon Hospital'),
(13322, 'https://ror.org/03hznq239', 'en', 1, 'https://ror.org/03hznq239 Korean Community Services of Metropolitan New York'),
(13323, 'https://ror.org/04srfff60', 'en', 1, 'https://ror.org/04srfff60 Kanzius Cancer Research Foundation'),
(13324, 'https://ror.org/051xk8837', 'en', 1, 'https://ror.org/051xk8837 Korean Health Education, Information, and Research Center'),
(13325, 'https://ror.org/02jq3z767', 'en', 1, 'https://ror.org/02jq3z767 John Paul II Medical Research Institute'),
(13326, 'https://ror.org/04fgasy98', 'no_lang_code', 1, 'https://ror.org/04fgasy98 Express Scripts Holding Company (United States)'),
(13327, 'https://ror.org/05pda6j27', 'en', 1, 'https://ror.org/05pda6j27 Korean Resource Center'),
(13328, 'https://ror.org/031h57r44', 'fr', 1, 'https://ror.org/031h57r44 Doctors of the World MĆ©decins du Monde medsÉ›Ģƒ dy mÉ”Ģƒd'),
(13329, 'https://ror.org/00daztz68', 'no_lang_code', 1, 'https://ror.org/00daztz68 Kostopulos Dream Foundation'),
(13330, 'https://ror.org/01d1vqp66', 'en', 1, 'https://ror.org/01d1vqp66 Regional Health'),
(13331, 'https://ror.org/03n97yw06', 'no_lang_code', 1, 'https://ror.org/03n97yw06 MedGenesis Therapeutix (Canada)'),
(13332, 'https://ror.org/03rsse878', 'en', 1, 'https://ror.org/03rsse878 Media Arts Center San Diego'),
(13333, 'https://ror.org/00b0jb681', 'en', 1, 'https://ror.org/00b0jb681 Krasnoyarsk State Medical University Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени профессора Š’.Ф. Войно-Ясенецкого ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(13334, 'https://ror.org/00xaj7311', 'no_lang_code', 1, 'https://ror.org/00xaj7311 Lumicell (United States)'),
(13335, 'https://ror.org/03xpcbj56', 'en', 1, 'https://ror.org/03xpcbj56 Medical Care Development International'),
(13336, 'https://ror.org/01e2a5576', 'en', 1, 'https://ror.org/01e2a5576 Medical Center Hospital'),
(13337, 'https://ror.org/059rc1n32', 'en', 1, 'https://ror.org/059rc1n32 Medical City Dallas Hospital'),
(13338, 'https://ror.org/030x94n68', 'en', 1, 'https://ror.org/030x94n68 KVC Health Systems'),
(13339, 'https://ror.org/033b6cz88', 'en', 1, 'https://ror.org/033b6cz88 Lupus Foundation of America'),
(13340, 'https://ror.org/02zf97m15', 'en', 1, 'https://ror.org/02zf97m15 Johnston Memorial Hospital'),
(13341, 'https://ror.org/04b7haz84', 'en', 1, 'https://ror.org/04b7haz84 Lupus Research Institute'),
(13342, 'https://ror.org/01fvg1z63', 'en', 1, 'https://ror.org/01fvg1z63 Joint Muscle Medical Care and Research Institute'),
(13343, 'https://ror.org/05tcf2984', 'en', 1, 'https://ror.org/05tcf2984 Joliet Area Community Hospice'),
(13344, 'https://ror.org/03fa8g464', 'en', 1, 'https://ror.org/03fa8g464 Lutheran Family Health Centers'),
(13345, 'https://ror.org/02sk93007', 'no_lang_code', 1, 'https://ror.org/02sk93007 Jonah’s Just Begun'),
(13346, 'https://ror.org/049rgw923', 'en', 1, 'https://ror.org/049rgw923 Joni and Friends'),
(13347, 'https://ror.org/03jkda953', 'no_lang_code', 1, 'https://ror.org/03jkda953 Kirin (United States)'),
(13348, 'https://ror.org/0089q3791', 'no_lang_code', 1, 'https://ror.org/0089q3791 JosƩ Mateo Ballet Theatre (United States)'),
(13349, 'https://ror.org/03ahv9t97', 'en', 1, 'https://ror.org/03ahv9t97 Lymphatic Education & Research Network'),
(13350, 'https://ror.org/04g39xc83', 'en', 1, 'https://ror.org/04g39xc83 Journey Forward'),
(13351, 'https://ror.org/01nath242', 'en', 1, 'https://ror.org/01nath242 Joyce Theater'),
(13352, 'https://ror.org/011bjxg73', 'en', 1, 'https://ror.org/011bjxg73 La Casa Norte'),
(13353, 'https://ror.org/05xyx5995', 'en', 1, 'https://ror.org/05xyx5995 Medscape'),
(13354, 'https://ror.org/01w7r8m15', 'no_lang_code', 1, 'https://ror.org/01w7r8m15 QPS (Austria)'),
(13355, 'https://ror.org/014j38041', 'en', 1, 'https://ror.org/014j38041 La Clinica de La Raza'),
(13356, 'https://ror.org/02pp21x07', 'en', 1, 'https://ror.org/02pp21x07 La Crosse Medical Health Science Consortium'),
(13357, 'https://ror.org/01bjdg534', 'en', 1, 'https://ror.org/01bjdg534 Teens Living with Cancer'),
(13358, 'https://ror.org/02p210k88', 'en', 1, 'https://ror.org/02p210k88 John T. Mather Memorial Hospital'),
(13359, 'https://ror.org/01ec6j128', 'it', 1, 'https://ror.org/01ec6j128 La Forza del Silenzio'),
(13360, 'https://ror.org/05d9wka04', 'no_lang_code', 1, 'https://ror.org/05d9wka04 Mellitech (France)'),
(13361, 'https://ror.org/01phq2394', 'no_lang_code', 1, 'https://ror.org/01phq2394 JustGive'),
(13362, 'https://ror.org/02f0jr828', 'en', 1, 'https://ror.org/02f0jr828 Memorial Foundation'),
(13363, 'https://ror.org/02gf24d79', 'no_lang_code', 1, 'https://ror.org/02gf24d79 M.C. Townsend Associates (United States)'),
(13364, 'https://ror.org/01e1qb944', 'no_lang_code', 1, 'https://ror.org/01e1qb944 Athira Pharma (United States)'),
(13365, 'https://ror.org/00a06kx42', 'en', 1, 'https://ror.org/00a06kx42 La Porte Hospital'),
(13366, 'https://ror.org/02s8sn816', 'en', 1, 'https://ror.org/02s8sn816 Maasai Wilderness Conservation Trust'),
(13367, 'https://ror.org/049d9a475', 'en', 1, 'https://ror.org/049d9a475 Memorial Hermann'),
(13368, 'https://ror.org/0442mhq67', 'en', 1, 'https://ror.org/0442mhq67 Maintaining Active Citizens'),
(13369, 'https://ror.org/0051tdp65', 'en', 1, 'https://ror.org/0051tdp65 Beacon Health System'),
(13370, 'https://ror.org/008tsd037', 'en', 1, 'https://ror.org/008tsd037 Memorial Medical Center'),
(13371, 'https://ror.org/007bef738', 'no_lang_code', 1, 'https://ror.org/007bef738 Kala Pharmaceuticals (United States)'),
(13372, 'https://ror.org/01bbs9f03', 'no_lang_code', 1, 'https://ror.org/01bbs9f03 Celsus Therapeutics (United Kingdom)'),
(13373, 'https://ror.org/0107w4315', 'en', 1, 'https://ror.org/0107w4315 University of Colorado Health'),
(13374, 'https://ror.org/059k3db98', 'en', 1, 'https://ror.org/059k3db98 Morton Plant Mease'),
(13375, 'https://ror.org/02nh6s285', 'en', 1, 'https://ror.org/02nh6s285 Macoupin County Public Health Department'),
(13376, 'https://ror.org/02mfecp81', 'no_lang_code', 1, 'https://ror.org/02mfecp81 Mosaic'),
(13377, 'https://ror.org/005ypw517', 'en', 1, 'https://ror.org/005ypw517 Men''s Health Network'),
(13378, 'https://ror.org/0459hk790', 'en', 1, 'https://ror.org/0459hk790 Madison County Public Schools'),
(13379, 'https://ror.org/034673z17', 'en', 1, 'https://ror.org/034673z17 Epilepsy Support and Education Services'),
(13380, 'https://ror.org/035yccj48', 'en', 1, 'https://ror.org/035yccj48 Kansas City Hospice and Palliative Care'),
(13381, 'https://ror.org/02596hw49', 'en', 1, 'https://ror.org/02596hw49 Cancer Resource Centers of Mendocino County'),
(13382, 'https://ror.org/04f4mf723', 'en', 1, 'https://ror.org/04f4mf723 Mendocino Community Health Clinic'),
(13383, 'https://ror.org/00czgcw56', 'en', 1, 'https://ror.org/00czgcw56 Madras Diabetes Research Foundation'),
(13384, 'https://ror.org/04h8dqz12', 'en', 1, 'https://ror.org/04h8dqz12 Mendocino County AIDS / Viral Hepatitis Network'),
(13385, 'https://ror.org/05g3bg079', 'en', 1, 'https://ror.org/05g3bg079 KU Endowment'),
(13386, 'https://ror.org/03sq8r703', 'en', 1, 'https://ror.org/03sq8r703 Menoufia University Hospitals Ł…Ų³ŲŖŲ“ŁŁŠŲ§ŲŖ Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŁˆŁŁŠŲ©'),
(13387, 'https://ror.org/04h2wnp96', 'en', 1, 'https://ror.org/04h2wnp96 Motion Picture & Television Fund'),
(13388, 'https://ror.org/02fefk125', 'en', 1, 'https://ror.org/02fefk125 The Harris Center for Mental Health and IDD'),
(13389, 'https://ror.org/0518a5g43', 'no_lang_code', 1, 'https://ror.org/0518a5g43 MentiNova (United States)'),
(13390, 'https://ror.org/046r27a90', 'en', 1, 'https://ror.org/046r27a90 A.I Karaev Institute of Physiology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии имени А.И. ŠšŠ°Ń€Š°ŠµŠ²Š°'),
(13391, 'https://ror.org/01fpn5341', 'en', 1, 'https://ror.org/01fpn5341 Lady of the Sea General Hospital'),
(13392, 'https://ror.org/01xtprm05', 'en', 1, 'https://ror.org/01xtprm05 Mercer County Health Department'),
(13393, 'https://ror.org/01579r607', 'en', 1, 'https://ror.org/01579r607 Mahoning County Educational Service Center'),
(13394, 'https://ror.org/05gjjzd22', 'en', 1, 'https://ror.org/05gjjzd22 Settlement Music School'),
(13395, 'https://ror.org/00rhtct89', 'en', 1, 'https://ror.org/00rhtct89 McLaren Macomb'),
(13396, 'https://ror.org/03mzsqd80', 'en', 1, 'https://ror.org/03mzsqd80 Lakes Region General Hospital'),
(13397, 'https://ror.org/04patbs64', 'en', 1, 'https://ror.org/04patbs64 Lakeshore Foundation'),
(13398, 'https://ror.org/00s5rhn58', 'en', 1, 'https://ror.org/00s5rhn58 Karla J. Williams Foundation'),
(13399, 'https://ror.org/00c74hc78', 'en', 1, 'https://ror.org/00c74hc78 HaitiChildren'),
(13400, 'https://ror.org/028javr49', 'en', 1, 'https://ror.org/028javr49 Distrito Escolar Unificado de Long Beach Long Beach Unified School District'),
(13401, 'https://ror.org/002r82k07', 'en', 1, 'https://ror.org/002r82k07 Mercy Clinic Neurology'),
(13402, 'https://ror.org/00nw7tq55', 'en', 1, 'https://ror.org/00nw7tq55 Mount Nittany Medical Center'),
(13403, 'https://ror.org/00wecdr93', 'no_lang_code', 1, 'https://ror.org/00wecdr93 Lamellar Biomedical (United Kingdom)'),
(13404, 'https://ror.org/00d8qva59', 'en', 1, 'https://ror.org/00d8qva59 Maine Adaptive Sports & Recreation'),
(13405, 'https://ror.org/039gcd439', 'en', 1, 'https://ror.org/039gcd439 Lancaster County Medical Society'),
(13406, 'https://ror.org/04ndvz759', 'en', 1, 'https://ror.org/04ndvz759 Livestrong Foundation'),
(13407, 'https://ror.org/009c3x903', 'en', 1, 'https://ror.org/009c3x903 New England Cancer Specialists'),
(13408, 'https://ror.org/00w1a0259', 'en', 1, 'https://ror.org/00w1a0259 Mercy Hospital'),
(13409, 'https://ror.org/0011aqx02', 'en', 1, 'https://ror.org/0011aqx02 Maine Hospice Council'),
(13410, 'https://ror.org/03vmw1d16', 'en', 1, 'https://ror.org/03vmw1d16 Mercy Medical Center Sioux City'),
(13411, 'https://ror.org/00a9t7j25', 'en', 1, 'https://ror.org/00a9t7j25 Lars Research Institute'),
(13412, 'https://ror.org/05x9yy985', 'en', 1, 'https://ror.org/05x9yy985 University of Mount Olive'),
(13413, 'https://ror.org/02tdaj973', 'en', 1, 'https://ror.org/02tdaj973 Ascension Via Christi Hospital'),
(13414, 'https://ror.org/02rwjxz53', 'en', 1, 'https://ror.org/02rwjxz53 Lassen County'),
(13415, 'https://ror.org/05v6eh043', 'en', 1, 'https://ror.org/05v6eh043 Eastern Maine Healthcare Systems'),
(13416, 'https://ror.org/01jqc8e14', 'en', 1, 'https://ror.org/01jqc8e14 Kalpana Chawla Government Medical College and Hospital ą¤•ą¤²ą„ą¤Ŗą¤Øą¤¾ चावला ą¤—ą¤µą¤°ą„ą¤Øą¤®ą„‡ą¤‚ą¤Ÿ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ व ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(13417, 'https://ror.org/03y50wn05', 'en', 1, 'https://ror.org/03y50wn05 Mountain Empire Older Citizens'),
(13418, 'https://ror.org/031035t24', 'en', 1, 'https://ror.org/031035t24 Latinas Contra Cancer'),
(13419, 'https://ror.org/03rf3nd87', 'en', 1, 'https://ror.org/03rf3nd87 Mountain Home Montana'),
(13420, 'https://ror.org/00c26wt35', 'en', 1, 'https://ror.org/00c26wt35 Maine-Dartmouth Family Medicine Residency'),
(13421, 'https://ror.org/058ekqj56', 'en', 1, 'https://ror.org/058ekqj56 Mountain Park Health Center'),
(13422, 'https://ror.org/022nbxr62', 'en', 1, 'https://ror.org/022nbxr62 MaineGeneral Medical Center'),
(13423, 'https://ror.org/01vc5az52', 'no_lang_code', 1, 'https://ror.org/01vc5az52 Kasiak Research (India)'),
(13424, 'https://ror.org/017xncd55', 'en', 1, 'https://ror.org/017xncd55 MaineHealth'),
(13425, 'https://ror.org/04wy7mt46', 'en', 1, 'https://ror.org/04wy7mt46 Make A Hero'),
(13426, 'https://ror.org/00dqasn30', 'en', 1, 'https://ror.org/00dqasn30 Kathmandu Valley Preservation Trust'),
(13427, 'https://ror.org/057528053', 'no_lang_code', 1, 'https://ror.org/057528053 Mergenet Medical (United States)'),
(13428, 'https://ror.org/012yz6164', 'en', 1, 'https://ror.org/012yz6164 Make-A-Wish Foundation'),
(13429, 'https://ror.org/05qtmfe82', 'no_lang_code', 1, 'https://ror.org/05qtmfe82 Latitude Pharmaceuticals (United States)'),
(13430, 'https://ror.org/051rrn740', 'en', 1, 'https://ror.org/051rrn740 St. Luke''s Mountain States Tumor Institute'),
(13431, 'https://ror.org/0349vnh06', 'en', 1, 'https://ror.org/0349vnh06 Meridian Behavioral Healthcare'),
(13432, 'https://ror.org/05q34ws54', 'en', 1, 'https://ror.org/05q34ws54 Moveable Feast'),
(13433, 'https://ror.org/03wps7b22', 'en', 1, 'https://ror.org/03wps7b22 Movember');
INSERT INTO `rors` VALUES
(13434, 'https://ror.org/00hx55359', 'en', 1, 'https://ror.org/00hx55359 Meridian Plastic Surgeons'),
(13435, 'https://ror.org/00ka0dh64', 'en', 1, 'https://ror.org/00ka0dh64 Granada Hills Community Hospital'),
(13436, 'https://ror.org/00e0tnc81', 'en', 1, 'https://ror.org/00e0tnc81 ManageBGL'),
(13437, 'https://ror.org/03byzcq48', 'en', 1, 'https://ror.org/03byzcq48 Sanford Medical Center'),
(13438, 'https://ror.org/000skyh95', 'en', 1, 'https://ror.org/000skyh95 Manitoga'),
(13439, 'https://ror.org/05ekq4672', 'en', 1, 'https://ror.org/05ekq4672 Manovikas Kendra Rehabilitation and Research Institute'),
(13440, 'https://ror.org/00nkgjn49', 'no_lang_code', 1, 'https://ror.org/00nkgjn49 ManRos Therapeutics (France)'),
(13441, 'https://ror.org/02p96gg69', 'no_lang_code', 1, 'https://ror.org/02p96gg69 Marathon Kids'),
(13442, 'https://ror.org/05tg9b144', 'no_lang_code', 1, 'https://ror.org/05tg9b144 MSM Protein Technologies (United States)'),
(13443, 'https://ror.org/030635250', 'en', 1, 'https://ror.org/030635250 Lustgarten Foundation'),
(13444, 'https://ror.org/01rje5224', 'en', 1, 'https://ror.org/01rje5224 Marian Regional Medical Center'),
(13445, 'https://ror.org/01jaw0925', 'en', 1, 'https://ror.org/01jaw0925 Mount Sinai Queens'),
(13446, 'https://ror.org/02d9dbv29', 'en', 1, 'https://ror.org/02d9dbv29 Law and Advocacy for Women in Uganda'),
(13447, 'https://ror.org/0244v0536', 'en', 1, 'https://ror.org/0244v0536 Republican Oncological Clinical Dispensary Республиканский клинический онкологический Гиспансер'),
(13448, 'https://ror.org/035q6v129', 'en', 1, 'https://ror.org/035q6v129 League Against Cancer'),
(13449, 'https://ror.org/035sqzf61', 'en', 1, 'https://ror.org/035sqzf61 League of Conservation Voters'),
(13450, 'https://ror.org/01phpae37', 'en', 1, 'https://ror.org/01phpae37 Multidisciplinary Association for Psychedelic Studies'),
(13451, 'https://ror.org/01k5bte77', 'en', 1, 'https://ror.org/01k5bte77 Marshall Medical Center'),
(13452, 'https://ror.org/04r8nkv53', 'en', 1, 'https://ror.org/04r8nkv53 Rising Ground'),
(13453, 'https://ror.org/05pkbct74', 'no_lang_code', 1, 'https://ror.org/05pkbct74 Funk Production (Denmark)'),
(13454, 'https://ror.org/03ww1bx13', 'en', 1, 'https://ror.org/03ww1bx13 Multiple Myeloma Research Foundation'),
(13455, 'https://ror.org/034dw6775', 'no_lang_code', 1, 'https://ror.org/034dw6775 Merrimack Pharmaceuticals (United States)'),
(13456, 'https://ror.org/04nkhj168', 'en', 1, 'https://ror.org/04nkhj168 Leaps of Faith Adaptive Skiers'),
(13457, 'https://ror.org/04qn4s704', 'en', 1, 'https://ror.org/04qn4s704 Arizona Disabled Sports'),
(13458, 'https://ror.org/03s3q2469', 'no_lang_code', 1, 'https://ror.org/03s3q2469 Munogenics (United States)'),
(13459, 'https://ror.org/00yjpbd42', 'en', 1, 'https://ror.org/00yjpbd42 Ride 2 Recovery'),
(13460, 'https://ror.org/01s383j21', 'en', 1, 'https://ror.org/01s383j21 Keiser University'),
(13461, 'https://ror.org/03666ws89', 'en', 1, 'https://ror.org/03666ws89 Mesilla Valley Hospice'),
(13462, 'https://ror.org/02r2t8x54', 'it', 1, 'https://ror.org/02r2t8x54 Lega Italiana per la Lotta ai Tumori'),
(13463, 'https://ror.org/053ndkf46', 'en', 1, 'https://ror.org/053ndkf46 Kelsey Research Foundation'),
(13464, 'https://ror.org/02r4vbb57', 'no_lang_code', 1, 'https://ror.org/02r4vbb57 Metaclipse Therapeutics (United States)'),
(13465, 'https://ror.org/03hf0fw66', 'en', 1, 'https://ror.org/03hf0fw66 Murray Hill Neighborhood Association'),
(13466, 'https://ror.org/00d4wef72', 'en', 1, 'https://ror.org/00d4wef72 Kendra''s Kisses'),
(13467, 'https://ror.org/04gm0ky67', 'no_lang_code', 1, 'https://ror.org/04gm0ky67 Metallopharm (United States)'),
(13468, 'https://ror.org/00m2rg630', 'en', 1, 'https://ror.org/00m2rg630 Kenosha County Department of Human Services'),
(13469, 'https://ror.org/021m39404', 'en', 1, 'https://ror.org/021m39404 Legal Clinic for the Disabled'),
(13470, 'https://ror.org/017e5fj79', 'en', 1, 'https://ror.org/017e5fj79 Covenant Children''s Hospital'),
(13471, 'https://ror.org/012w2p114', 'en', 1, 'https://ror.org/012w2p114 Kent County Health Department'),
(13472, 'https://ror.org/05pjy6894', 'no_lang_code', 1, 'https://ror.org/05pjy6894 Mary’s Center'),
(13473, 'https://ror.org/050818891', 'en', 1, 'https://ror.org/050818891 VNA of Care New England'),
(13474, 'https://ror.org/01z63yw09', 'en', 1, 'https://ror.org/01z63yw09 Legacy of Legends Foundation'),
(13475, 'https://ror.org/01csgpy33', 'en', 1, 'https://ror.org/01csgpy33 Methodist Le Bonheur Healthcare'),
(13476, 'https://ror.org/02ktcxy40', 'en', 1, 'https://ror.org/02ktcxy40 Kentucky Court of Justice'),
(13477, 'https://ror.org/058c69y64', 'en', 1, 'https://ror.org/058c69y64 Museum of American Finance'),
(13478, 'https://ror.org/02sbnzn21', 'en', 1, 'https://ror.org/02sbnzn21 Massachusetts Pain Initiative'),
(13479, 'https://ror.org/00b9qa162', 'no_lang_code', 1, 'https://ror.org/00b9qa162 Keraplast Technologies (United States)'),
(13480, 'https://ror.org/05bggyp09', 'en', 1, 'https://ror.org/05bggyp09 Lenoir–Rhyne University'),
(13481, 'https://ror.org/044t1p926', 'en', 1, 'https://ror.org/044t1p926 Museum of Arts and Design'),
(13482, 'https://ror.org/03sdjgc51', 'en', 1, 'https://ror.org/03sdjgc51 National Museum of Mathematics'),
(13483, 'https://ror.org/05d6hsa78', 'en', 1, 'https://ror.org/05d6hsa78 Museum of Modern Art'),
(13484, 'https://ror.org/01aabt454', 'en', 1, 'https://ror.org/01aabt454 Mark Codner, MD Plastic Surgery'),
(13485, 'https://ror.org/01bcgtw38', 'en', 1, 'https://ror.org/01bcgtw38 St. Luke''s Clinic'),
(13486, 'https://ror.org/004b1aw93', 'no_lang_code', 1, 'https://ror.org/004b1aw93 Keshet Dance Company (United States)'),
(13487, 'https://ror.org/043xwqn65', 'en', 1, 'https://ror.org/043xwqn65 Muslim Community Center Medical Clinic'),
(13488, 'https://ror.org/036vmrn30', 'en', 1, 'https://ror.org/036vmrn30 Maryland Ravens'),
(13489, 'https://ror.org/000psz759', 'en', 1, 'https://ror.org/000psz759 Marymount Manhattan College'),
(13490, 'https://ror.org/055ksem72', 'en', 1, 'https://ror.org/055ksem72 Leonard J. Chabert Medical Center'),
(13491, 'https://ror.org/03zzh2n66', 'no_lang_code', 1, 'https://ror.org/03zzh2n66 M Welborn Group (United States)'),
(13492, 'https://ror.org/01gw93c31', 'en', 1, 'https://ror.org/01gw93c31 Mashantucket Pequot Tribal Nation'),
(13493, 'https://ror.org/04ry56g70', 'no_lang_code', 1, 'https://ror.org/04ry56g70 MetronomX (United States)'),
(13494, 'https://ror.org/04yh9ek66', 'no_lang_code', 1, 'https://ror.org/04yh9ek66 Keystone Nano (United States)'),
(13495, 'https://ror.org/007hxks16', 'en', 1, 'https://ror.org/007hxks16 Leonia Public Schools'),
(13496, 'https://ror.org/00m6wsr38', 'no_lang_code', 1, 'https://ror.org/00m6wsr38 Masilamea Press (New Zealand)'),
(13497, 'https://ror.org/03m3v4c71', 'no_lang_code', 1, 'https://ror.org/03m3v4c71 Genogen (United States)'),
(13498, 'https://ror.org/03d278m65', 'no_lang_code', 1, 'https://ror.org/03d278m65 MyeloRx (United States)'),
(13499, 'https://ror.org/01knvr232', 'en', 1, 'https://ror.org/01knvr232 Leonia United'),
(13500, 'https://ror.org/05sbcvy11', 'en', 1, 'https://ror.org/05sbcvy11 Massachusetts Compassionate Care Coalition'),
(13501, 'https://ror.org/000hmzc02', 'no_lang_code', 1, 'https://ror.org/000hmzc02 Myostin Therapeutics (Australia)'),
(13502, 'https://ror.org/01jtjy335', 'en', 1, 'https://ror.org/01jtjy335 Equal Hope'),
(13503, 'https://ror.org/03r8ta958', 'en', 1, 'https://ror.org/03r8ta958 Myotubular Myopathy Resource Group'),
(13504, 'https://ror.org/05p2frj96', 'en', 1, 'https://ror.org/05p2frj96 Borough of Leonia'),
(13505, 'https://ror.org/05yb3w112', 'en', 1, 'https://ror.org/05yb3w112 Singapore-MIT Alliance for Research and Technology'),
(13506, 'https://ror.org/05ffr8x96', 'en', 1, 'https://ror.org/05ffr8x96 Kidney Cancer Association'),
(13507, 'https://ror.org/05bj02613', 'en', 1, 'https://ror.org/05bj02613 Myrovlytis Trust'),
(13508, 'https://ror.org/04k1x7866', 'en', 1, 'https://ror.org/04k1x7866 Metropolitan Detroit Research and Education Foundation'),
(13509, 'https://ror.org/05dw6vm13', 'no_lang_code', 1, 'https://ror.org/05dw6vm13 Kids ''n Kamp'),
(13510, 'https://ror.org/02e0key02', 'en', 1, 'https://ror.org/02e0key02 Massachusetts School Nurse Research Network'),
(13511, 'https://ror.org/05dap4b42', 'en', 1, 'https://ror.org/05dap4b42 Kids Konnected'),
(13512, 'https://ror.org/0118wgv88', 'en', 1, 'https://ror.org/0118wgv88 New Hanover County Schools'),
(13513, 'https://ror.org/00sry8k12', 'no_lang_code', 1, 'https://ror.org/00sry8k12 MyTeam Triumph'),
(13514, 'https://ror.org/0024x0915', 'en', 1, 'https://ror.org/0024x0915 Math for America'),
(13515, 'https://ror.org/0042p7m09', 'no_lang_code', 1, 'https://ror.org/0042p7m09 Nivalis Therapeutics (United States)'),
(13516, 'https://ror.org/0098cf282', 'no_lang_code', 1, 'https://ror.org/0098cf282 N8 Medical (United States)'),
(13517, 'https://ror.org/00tw2t359', 'en', 1, 'https://ror.org/00tw2t359 Mathematics Foundation of America'),
(13518, 'https://ror.org/00w5mh812', 'no_lang_code', 1, 'https://ror.org/00w5mh812 Kineta (United States)'),
(13519, 'https://ror.org/037msyf12', 'en', 1, 'https://ror.org/037msyf12 MGH Institute of Health Professions'),
(13520, 'https://ror.org/034m9g361', 'no_lang_code', 1, 'https://ror.org/034m9g361 Athenex (United States)'),
(13521, 'https://ror.org/03nh59r74', 'en', 1, 'https://ror.org/03nh59r74 Mather LifeWays'),
(13522, 'https://ror.org/05x30r374', 'en', 1, 'https://ror.org/05x30r374 Mi Raza Community Center'),
(13523, 'https://ror.org/02n8vwz90', 'en', 1, 'https://ror.org/02n8vwz90 NAACP Legal Defense and Educational Fund'),
(13524, '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'),
(13525, 'https://ror.org/00renxe14', 'en', 1, 'https://ror.org/00renxe14 Services for Independent Living'),
(13526, 'https://ror.org/02rawbx68', 'en', 1, 'https://ror.org/02rawbx68 Disability Rights and Resources'),
(13527, 'https://ror.org/001zna302', 'no_lang_code', 1, 'https://ror.org/001zna302 NanoMed Targeting Systems (United States)'),
(13528, 'https://ror.org/05vsymj75', 'en', 1, 'https://ror.org/05vsymj75 Mayland Community College'),
(13529, 'https://ror.org/02yn37v47', 'en', 1, 'https://ror.org/02yn37v47 Douglas Gardens Hospital'),
(13530, 'https://ror.org/0414e3w08', 'en', 1, 'https://ror.org/0414e3w08 National Latina Institute for Reproductive Health'),
(13531, 'https://ror.org/054as9c11', 'en', 1, 'https://ror.org/054as9c11 Michael Ryan Pattison Foundation'),
(13532, 'https://ror.org/02te3sp65', 'en', 1, 'https://ror.org/02te3sp65 National Law Enforcement and Firefighters Children’s Foundation'),
(13533, 'https://ror.org/00fp8c217', 'en', 1, 'https://ror.org/00fp8c217 Mazor Mental Health Center ×”×ž×Ø×›×– הרפואי ×œ×‘×Ø×™××•×Ŗ הנפש ×ž×–×•×Ø'),
(13534, 'https://ror.org/00w18ah57', 'en', 1, 'https://ror.org/00w18ah57 Lesotho Planned Parenthood Association'),
(13535, 'https://ror.org/04v2rez45', 'no_lang_code', 1, 'https://ror.org/04v2rez45 MC2 Therapeutics (Denmark)'),
(13536, 'https://ror.org/00w4cxg78', 'no_lang_code', 1, 'https://ror.org/00w4cxg78 Breakthrough'),
(13537, 'https://ror.org/05vwzkh77', 'en', 1, 'https://ror.org/05vwzkh77 National LGBT Cancer Network'),
(13538, 'https://ror.org/04z5k1s77', 'en', 1, 'https://ror.org/04z5k1s77 McAlister Institute'),
(13539, 'https://ror.org/03019wv17', 'en', 1, 'https://ror.org/03019wv17 National Multiple Sclerosis Society'),
(13540, 'https://ror.org/05kqz6183', 'en', 1, 'https://ror.org/05kqz6183 Leukaemia Foundation of Queensland'),
(13541, 'https://ror.org/04m0xav37', 'en', 1, 'https://ror.org/04m0xav37 Leukemia and Lymphoma Society'),
(13542, 'https://ror.org/01tbz5160', 'en', 1, 'https://ror.org/01tbz5160 National Nurses Association of Kenya'),
(13543, 'https://ror.org/036wcgd38', 'en', 1, 'https://ror.org/036wcgd38 Leukemia Research Foundation'),
(13544, 'https://ror.org/031a8k913', 'en', 1, 'https://ror.org/031a8k913 McCabe Centre for Law and Cancer'),
(13545, 'https://ror.org/03t3bph36', 'no_lang_code', 1, 'https://ror.org/03t3bph36 Nanometics (United States)'),
(13546, 'https://ror.org/04rvc0m17', 'no_lang_code', 1, 'https://ror.org/04rvc0m17 Lewin Group (United States)'),
(13547, 'https://ror.org/00spbya24', 'no_lang_code', 1, 'https://ror.org/00spbya24 Lewis and Clark Pharmaceuticals (United States)'),
(13548, 'https://ror.org/05tn2bq24', 'en', 1, 'https://ror.org/05tn2bq24 Lewisham and Greenwich NHS Trust'),
(13549, 'https://ror.org/03fnvja86', 'no_lang_code', 1, 'https://ror.org/03fnvja86 Nanovis (United States)'),
(13550, 'https://ror.org/03z5t3857', 'en', 1, 'https://ror.org/03z5t3857 VA Fanarjian National Center of Oncology Վ.Ō±. Õ–Õ”Õ¶Õ”Ö€Õ»ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ուռուցքՔբՔնությՔն Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(13551, 'https://ror.org/01eywxa39', 'en', 1, 'https://ror.org/01eywxa39 Lexington Medical Center'),
(13552, 'https://ror.org/051wbhx61', 'no_lang_code', 1, 'https://ror.org/051wbhx61 McCarthy Modernization (United States)'),
(13553, 'https://ror.org/016yyk170', 'en', 1, 'https://ror.org/016yyk170 Lennox-Gastaut Syndrome Foundation'),
(13554, 'https://ror.org/03c84q386', 'en', 1, 'https://ror.org/03c84q386 McCarton Foundation'),
(13555, 'https://ror.org/05dmrvx33', 'no_lang_code', 1, 'https://ror.org/05dmrvx33 Microchips Biotech (United States)'),
(13556, 'https://ror.org/05kscmd46', 'en', 1, 'https://ror.org/05kscmd46 National Organization for Disorders of the Corpus Callosum'),
(13557, 'https://ror.org/05hbp5640', 'en', 1, 'https://ror.org/05hbp5640 McDonough County Health Department'),
(13558, 'https://ror.org/028h2sf55', 'en', 1, 'https://ror.org/028h2sf55 McDowell County Schools'),
(13559, 'https://ror.org/04ztvme64', 'en', 1, 'https://ror.org/04ztvme64 Texas Medical Association'),
(13560, 'https://ror.org/05g8ngg39', 'en', 1, 'https://ror.org/05g8ngg39 Lideres Campesinas'),
(13561, 'https://ror.org/007rawr89', 'en', 1, 'https://ror.org/007rawr89 Augusta University Health'),
(13562, 'https://ror.org/01cwv5f90', 'en', 1, 'https://ror.org/01cwv5f90 Northeast Health'),
(13563, 'https://ror.org/05m6rdh46', 'en', 1, 'https://ror.org/05m6rdh46 Microfinance and Community Development Institute'),
(13564, 'https://ror.org/00sp0dx83', 'en', 1, 'https://ror.org/00sp0dx83 National Rehabilitation Association'),
(13565, 'https://ror.org/02dz3em48', 'en', 1, 'https://ror.org/02dz3em48 Life Goes On-Home Improvement'),
(13566, 'https://ror.org/01fsfar50', 'no_lang_code', 1, 'https://ror.org/01fsfar50 Ascepion Pharmaceuticals (China)'),
(13567, 'https://ror.org/02k712m23', 'en', 1, 'https://ror.org/02k712m23 Life Rolls On Foundation'),
(13568, 'https://ror.org/01746zk69', 'en', 1, 'https://ror.org/01746zk69 National Advocates for Pregnant Women'),
(13569, 'https://ror.org/03fr5cc17', 'no_lang_code', 1, 'https://ror.org/03fr5cc17 Asklepios Asklepios Kliniken'),
(13570, 'https://ror.org/00evcdx62', 'es', 1, 'https://ror.org/00evcdx62 Asociación para el Desarrollo Integral Comunitario'),
(13571, 'https://ror.org/01dd6b484', 'en', 1, 'https://ror.org/01dd6b484 McLoughlin Consulting'),
(13572, 'https://ror.org/00200ya62', 'en', 1, 'https://ror.org/00200ya62 National Ageing Research Institute'),
(13573, 'https://ror.org/00zxhvp59', 'en', 1, 'https://ror.org/00zxhvp59 Mid Atlantic Wheelchair Athletic Association'),
(13574, 'https://ror.org/05d2zbe90', 'en', 1, 'https://ror.org/05d2zbe90 National Research Center for Maternal and Child Health Ана мен бала ұлттық ғылыми орталығы'),
(13575, 'https://ror.org/01z3wjy47', 'en', 1, 'https://ror.org/01z3wjy47 National Alliance on Mental Illness'),
(13576, 'https://ror.org/04saw1818', 'en', 1, 'https://ror.org/04saw1818 National Ambucs'),
(13577, 'https://ror.org/0013zhk30', 'en', 1, 'https://ror.org/0013zhk30 Institute of Food Science'),
(13578, 'https://ror.org/036vyc207', 'en', 1, 'https://ror.org/036vyc207 Mid Atlantic Epilepsy and Sleep Center'),
(13579, 'https://ror.org/00fvm0x93', 'en', 1, 'https://ror.org/00fvm0x93 National September 11 Memorial and Museum'),
(13580, 'https://ror.org/02ja4sy98', 'en', 1, 'https://ror.org/02ja4sy98 National Society of Genetic Counselors'),
(13581, 'https://ror.org/05g35d951', 'en', 1, 'https://ror.org/05g35d951 LifeBridge Health'),
(13582, 'https://ror.org/04qj9wg75', 'en', 1, 'https://ror.org/04qj9wg75 St. Joseph’s Children’s Hospital'),
(13583, 'https://ror.org/0153wm704', 'en', 1, 'https://ror.org/0153wm704 Goryeb Children''s Hospital'),
(13584, 'https://ror.org/031y9sy98', 'en', 1, 'https://ror.org/031y9sy98 National Aphasia Association'),
(13585, 'https://ror.org/02x6c2007', 'en', 1, 'https://ror.org/02x6c2007 Lifeline Hospital'),
(13586, 'https://ror.org/01qj1sq68', 'en', 1, 'https://ror.org/01qj1sq68 Center for Diagnosis and Research on Alzheimer''s Disease Centre Diagnostique & Recherche en Alzheimer'),
(13587, 'https://ror.org/03mvyyw83', 'no_lang_code', 1, 'https://ror.org/03mvyyw83 Novacule (United States)'),
(13588, 'https://ror.org/03jh2fn47', 'no_lang_code', 1, 'https://ror.org/03jh2fn47 LifeSplice Pharma (United States)'),
(13589, 'https://ror.org/05rb2ch24', 'en', 1, 'https://ror.org/05rb2ch24 National Sports Center for the Disabled'),
(13590, 'https://ror.org/040wa6e75', 'no_lang_code', 1, 'https://ror.org/040wa6e75 NKT Therapeutics (United States)'),
(13591, 'https://ror.org/01z9q0k32', 'en', 1, 'https://ror.org/01z9q0k32 LIFE/RUN Center for Independent Living'),
(13592, 'https://ror.org/04jgzeb83', 'en', 1, 'https://ror.org/04jgzeb83 National Association of E. E. Smith Alumni and Friends'),
(13593, 'https://ror.org/0246b8v59', 'en', 1, 'https://ror.org/0246b8v59 Linking Employment, Abilities and Potential'),
(13594, 'https://ror.org/00v3vnk20', 'en', 1, 'https://ror.org/00v3vnk20 National Wheelchair Basketball Association'),
(13595, 'https://ror.org/02k8rcn44', 'en', 1, 'https://ror.org/02k8rcn44 Light and Salt Association'),
(13596, 'https://ror.org/02rhh1947', 'en', 1, 'https://ror.org/02rhh1947 Barnert Temple'),
(13597, 'https://ror.org/021h49x90', 'en', 1, 'https://ror.org/021h49x90 No Wooden Nickels'),
(13598, 'https://ror.org/01mjpgb45', 'en', 1, 'https://ror.org/01mjpgb45 Native American Advocacy Program'),
(13599, 'https://ror.org/05hwnvh42', 'en', 1, 'https://ror.org/05hwnvh42 Midwest Wheelchair Sport and Social Club'),
(13600, 'https://ror.org/01j8hda60', 'no_lang_code', 1, 'https://ror.org/01j8hda60 Native American Cancer Initiatives (United States)'),
(13601, 'https://ror.org/01a2qtx28', 'en', 1, 'https://ror.org/01a2qtx28 Lili Claire Foundation'),
(13602, 'https://ror.org/004y9hm48', 'en', 1, 'https://ror.org/004y9hm48 Mighty4 Arts Foundation'),
(13603, 'https://ror.org/03j496302', 'en', 1, 'https://ror.org/03j496302 Limbs For Life Foundation'),
(13604, 'https://ror.org/007rmqd49', 'en', 1, 'https://ror.org/007rmqd49 National Bone Marrow Transplant Link'),
(13605, 'https://ror.org/043036461', 'en', 1, 'https://ror.org/043036461 CancerLINC'),
(13606, 'https://ror.org/05qcgr122', 'en', 1, 'https://ror.org/05qcgr122 Native American Kennels'),
(13607, 'https://ror.org/03b58r371', 'en', 1, 'https://ror.org/03b58r371 Noble'),
(13608, 'https://ror.org/051687e73', 'en', 1, 'https://ror.org/051687e73 National Brain Tumor Society'),
(13609, 'https://ror.org/02an78v51', 'en', 1, 'https://ror.org/02an78v51 Lincoln Center for the Performing Arts'),
(13610, 'https://ror.org/05n597h70', 'en', 1, 'https://ror.org/05n597h70 Native Americans for Community Action'),
(13611, 'https://ror.org/03n9jn918', 'en', 1, 'https://ror.org/03n9jn918 Lincoln Charter School'),
(13612, 'https://ror.org/04b85bq70', 'no_lang_code', 1, 'https://ror.org/04b85bq70 Nodality (United States)'),
(13613, 'https://ror.org/04a0v2b96', 'en', 1, 'https://ror.org/04a0v2b96 Migrant Clinicians Network'),
(13614, 'https://ror.org/00n5jbe50', 'en', 1, 'https://ror.org/00n5jbe50 Natividad Foundation'),
(13615, 'https://ror.org/05yf91t27', 'en', 1, 'https://ror.org/05yf91t27 Northwest Community Health Center'),
(13616, 'https://ror.org/05tff2467', 'en', 1, 'https://ror.org/05tff2467 Natural Resources Defense Council'),
(13617, 'https://ror.org/051p0n058', 'no_lang_code', 1, 'https://ror.org/051p0n058 Mikey’s Way Foundation'),
(13618, 'https://ror.org/04sz6k684', 'en', 1, 'https://ror.org/04sz6k684 Lincoln Fencing Club'),
(13619, 'https://ror.org/034k9nh67', 'en', 1, 'https://ror.org/034k9nh67 Greensboro Science Center'),
(13620, 'https://ror.org/046h4gy16', 'en', 1, 'https://ror.org/046h4gy16 Leonia Lions Club'),
(13621, 'https://ror.org/00msdr558', 'en', 1, 'https://ror.org/00msdr558 Miles Perret Cancer Services'),
(13622, 'https://ror.org/01wzjne83', 'en', 1, 'https://ror.org/01wzjne83 Mille Lacs Band of Ojibwe'),
(13623, 'https://ror.org/04wx7x176', 'en', 1, 'https://ror.org/04wx7x176 Psychiatric Medical Center'),
(13624, 'https://ror.org/01gt37935', 'no_lang_code', 1, 'https://ror.org/01gt37935 Linnet Biopharmaceuticals (United States)'),
(13625, 'https://ror.org/04adqta18', 'en', 1, 'https://ror.org/04adqta18 Millennium Charter Academy'),
(13626, 'https://ror.org/00qaxgn38', 'en', 1, 'https://ror.org/00qaxgn38 Millennium Health and Human Services'),
(13627, 'https://ror.org/01rw6jj79', 'no_lang_code', 1, 'https://ror.org/01rw6jj79 Lighting Innovation (United States)'),
(13628, 'https://ror.org/034trs204', 'en', 1, 'https://ror.org/034trs204 Mind Body Solutions'),
(13629, 'https://ror.org/00we1gw23', 'en', 1, 'https://ror.org/00we1gw23 MIND Research Institute'),
(13630, 'https://ror.org/03fat7v77', 'en', 1, 'https://ror.org/03fat7v77 Ministry of Gender and Development'),
(13631, 'https://ror.org/00bz7xw94', 'en', 1, 'https://ror.org/00bz7xw94 Literacy for Environmental Justice'),
(13632, 'https://ror.org/04ft4dj82', 'en', 1, 'https://ror.org/04ft4dj82 Minnesota Department of Corrections'),
(13633, 'https://ror.org/01yrms264', 'en', 1, 'https://ror.org/01yrms264 Little Angels Early Childhood Center'),
(13634, 'https://ror.org/02qnmmb02', 'en', 1, 'https://ror.org/02qnmmb02 Minnesota Epilepsy Group'),
(13635, 'https://ror.org/051r84t36', 'en', 1, 'https://ror.org/051r84t36 Little Bit Therapeutic Riding Center'),
(13636, 'https://ror.org/03f42pk91', 'en', 1, 'https://ror.org/03f42pk91 Norte Maar'),
(13637, 'https://ror.org/0585jt080', 'no_lang_code', 1, 'https://ror.org/0585jt080 It’s The Journey'),
(13638, 'https://ror.org/023xbxt82', 'en', 1, 'https://ror.org/023xbxt82 Live Healthy DeKalb County'),
(13639, 'https://ror.org/059re9458', 'en', 1, 'https://ror.org/059re9458 Professional Association of Therapeutic Horsemanship International'),
(13640, 'https://ror.org/02x7g2480', 'en', 1, 'https://ror.org/02x7g2480 Proof Alliance'),
(13641, 'https://ror.org/04hd0yz67', 'en', 1, 'https://ror.org/04hd0yz67 Egyptian Atomic Energy Authority'),
(13642, 'https://ror.org/02jzmxs17', 'en', 1, 'https://ror.org/02jzmxs17 North Bay Cancer Alliance'),
(13643, 'https://ror.org/04pw6fb54', 'en', 1, 'https://ror.org/04pw6fb54 National Center for Advancing Translational Sciences'),
(13644, 'https://ror.org/05acrxx45', 'en', 1, 'https://ror.org/05acrxx45 Broward Health'),
(13645, 'https://ror.org/01yxrjg25', 'en', 1, 'https://ror.org/01yxrjg25 National Center for Disease Control and Public Health įƒ“įƒįƒįƒ•įƒįƒ“įƒ”įƒ‘įƒįƒ—įƒ įƒ™įƒįƒœįƒ¢įƒ įƒįƒšįƒ˜įƒ”įƒ įƒ“įƒ įƒ”įƒįƒ–įƒįƒ’įƒįƒ“įƒįƒ”įƒ‘įƒ įƒ˜įƒ•įƒ˜ įƒÆįƒįƒœįƒ›įƒ įƒ—įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜'),
(13646, 'https://ror.org/02f8ezy79', 'en', 1, 'https://ror.org/02f8ezy79 Living Beyond Breast Cancer'),
(13647, 'https://ror.org/04kqb8t43', 'en', 1, 'https://ror.org/04kqb8t43 Living Classrooms'),
(13648, 'https://ror.org/03byj3662', 'en', 1, 'https://ror.org/03byj3662 National Center for Farmworker Health'),
(13649, 'https://ror.org/01c3fwx83', 'en', 1, 'https://ror.org/01c3fwx83 Miracle League of Blair County'),
(13650, 'https://ror.org/052teyb98', 'en', 1, 'https://ror.org/052teyb98 North Carolina Aquarium'),
(13651, 'https://ror.org/024n70r63', 'en', 1, 'https://ror.org/024n70r63 Living Independently Now Center'),
(13652, 'https://ror.org/03qkxep52', 'en', 1, 'https://ror.org/03qkxep52 Coastal Land Trust'),
(13653, 'https://ror.org/03ydqnc29', 'en', 1, 'https://ror.org/03ydqnc29 Miriam''s Kitchen'),
(13654, 'https://ror.org/04vjg0a23', 'en', 1, 'https://ror.org/04vjg0a23 National Center for Learning Disabilities'),
(13655, 'https://ror.org/04hp0sd20', 'en', 1, 'https://ror.org/04hp0sd20 Mission Neighborhood Health Center'),
(13656, 'https://ror.org/04z86nr40', 'en', 1, 'https://ror.org/04z86nr40 Living Springs Community Church'),
(13657, 'https://ror.org/026jj6489', 'en', 1, 'https://ror.org/026jj6489 Mission Children''s Hospital'),
(13658, 'https://ror.org/04533yy36', 'en', 1, 'https://ror.org/04533yy36 North Carolina Society of Hispanic Professionals'),
(13659, 'https://ror.org/007nfvg13', 'en', 1, 'https://ror.org/007nfvg13 LivingWell Cancer Resource Center'),
(13660, 'https://ror.org/030bhtx29', 'no_lang_code', 1, 'https://ror.org/030bhtx29 Lixte (United States)'),
(13661, 'https://ror.org/02g802m02', 'en', 1, 'https://ror.org/02g802m02 Mission Health'),
(13662, 'https://ror.org/05gc2z195', 'en', 1, 'https://ror.org/05gc2z195 North Carolina Virtual Public School'),
(13663, 'https://ror.org/007dpey41', 'en', 1, 'https://ror.org/007dpey41 NC Little Memorial Hospice'),
(13664, 'https://ror.org/059rk5f84', 'en', 1, 'https://ror.org/059rk5f84 North Carolina Zoo Society'),
(13665, 'https://ror.org/02tsp7733', 'en', 1, 'https://ror.org/02tsp7733 New York State Office of Children and Family Services'),
(13666, 'https://ror.org/040mcv449', 'no_lang_code', 1, 'https://ror.org/040mcv449 Lohocla Research Corporation (United States)'),
(13667, 'https://ror.org/03cw8xx58', 'en', 1, 'https://ror.org/03cw8xx58 North Colorado Medical Center Foundation'),
(13668, 'https://ror.org/00xhrnd80', 'en', 1, 'https://ror.org/00xhrnd80 North Country Home Health & Hospice Agency'),
(13669, 'https://ror.org/005spvz56', 'en', 1, 'https://ror.org/005spvz56 North Country Hospital'),
(13670, 'https://ror.org/00gd6jw56', 'en', 1, 'https://ror.org/00gd6jw56 Lone Star Paralysis Foundation'),
(13671, 'https://ror.org/02r7md321', 'en', 1, 'https://ror.org/02r7md321 North Florida/South Georgia Veterans Health System'),
(13672, 'https://ror.org/026jqpc47', 'en', 1, 'https://ror.org/026jqpc47 North Fork Breast Health Coalition'),
(13673, 'https://ror.org/04jh42846', 'en', 1, 'https://ror.org/04jh42846 North Central Florida Neurodiagnostic Services'),
(13674, 'https://ror.org/05853wp21', 'en', 1, 'https://ror.org/05853wp21 National Children''s Cancer Society'),
(13675, 'https://ror.org/024328p12', 'en', 1, 'https://ror.org/024328p12 Long Island Association'),
(13676, 'https://ror.org/00rt22t88', 'en', 1, 'https://ror.org/00rt22t88 St. Alexius Heart and Lung Clinic'),
(13677, 'https://ror.org/0149b4c62', 'en', 1, 'https://ror.org/0149b4c62 Long Island Junior Soccer League'),
(13678, 'https://ror.org/05h2v9w40', 'en', 1, 'https://ror.org/05h2v9w40 Tri-State Wheelchair Athletic Association'),
(13679, 'https://ror.org/008vgsq37', 'en', 1, 'https://ror.org/008vgsq37 National Council of Negro Women'),
(13680, 'https://ror.org/05h2tck38', 'en', 1, 'https://ror.org/05h2tck38 Misty Meadows Mitey Riders'),
(13681, 'https://ror.org/0596y7869', 'en', 1, 'https://ror.org/0596y7869 Necessities Bag'),
(13682, 'https://ror.org/01nb7ex83', 'no_lang_code', 1, 'https://ror.org/01nb7ex83 Longevity Biotech (United States)'),
(13683, 'https://ror.org/01qr8rz09', 'en', 1, 'https://ror.org/01qr8rz09 Lori Arquilla Andersen Foundation'),
(13684, 'https://ror.org/01bcnv283', 'en', 1, 'https://ror.org/01bcnv283 Los Angeles Centers for Alcohol and Drug Abuse'),
(13685, 'https://ror.org/047xg5527', 'en', 1, 'https://ror.org/047xg5527 National Council on Indepedent Living'),
(13686, 'https://ror.org/04xd7yt90', 'en', 1, 'https://ror.org/04xd7yt90 Neighborhood House Association'),
(13687, 'https://ror.org/04mz6rz07', 'en', 1, 'https://ror.org/04mz6rz07 North Shore Animal League America'),
(13688, 'https://ror.org/01jwz9x72', 'en', 1, 'https://ror.org/01jwz9x72 North Shore Child & Family Guidance Center'),
(13689, 'https://ror.org/00h741k48', 'no_lang_code', 1, 'https://ror.org/00h741k48 Mitergy (United States)'),
(13690, 'https://ror.org/04jbqg756', 'en', 1, 'https://ror.org/04jbqg756 North Shore Pro Musica'),
(13691, 'https://ror.org/04r74gg67', 'en', 1, 'https://ror.org/04r74gg67 Neil Squire Society'),
(13692, 'https://ror.org/03f82tr05', 'en', 1, 'https://ror.org/03f82tr05 National Domestic Workers Alliance'),
(13693, 'https://ror.org/05p52rc54', 'en', 1, 'https://ror.org/05p52rc54 National Eating Disorders Association'),
(13694, 'https://ror.org/02nkdpb96', 'en', 1, 'https://ror.org/02nkdpb96 Northeast Florida Healthy Start Coalition'),
(13695, 'https://ror.org/02qwkar08', 'no_lang_code', 1, 'https://ror.org/02qwkar08 Mitra Biotech (India)'),
(13696, 'https://ror.org/00tjsgg12', 'en', 1, 'https://ror.org/00tjsgg12 Mixteco IndĆ­gena Community Organizing Project'),
(13697, 'https://ror.org/020njkh42', 'en', 1, 'https://ror.org/020njkh42 NEOMED Institute'),
(13698, 'https://ror.org/01j043w21', 'en', 1, 'https://ror.org/01j043w21 Mitochondria Research and Medicine Society'),
(13699, 'https://ror.org/03wtkw294', 'en', 1, 'https://ror.org/03wtkw294 National Hispanic Council on Aging'),
(13700, 'https://ror.org/02qarj925', 'en', 1, 'https://ror.org/02qarj925 Michigan Institute for Neurological Disorders'),
(13701, 'https://ror.org/048j8nq91', 'en', 1, 'https://ror.org/048j8nq91 Nepal Cancer Hospital and Research Center ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą„ą¤Æą¤¾ą¤Øą„ą¤øą¤° ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² र ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(13702, 'https://ror.org/0330jdp03', 'en', 1, 'https://ror.org/0330jdp03 Nepal Ambulance Service'),
(13703, 'https://ror.org/03yskjj43', 'en', 1, 'https://ror.org/03yskjj43 Texas Neurology'),
(13704, 'https://ror.org/02k5trc82', 'no_lang_code', 1, 'https://ror.org/02k5trc82 Nereus Life Sciences (United States)'),
(13705, 'https://ror.org/003kb2e24', 'en', 1, 'https://ror.org/003kb2e24 National Hospice Foundation'),
(13706, 'https://ror.org/01ft5dd14', 'en', 1, 'https://ror.org/01ft5dd14 Netaji Subhas Chandra Bose Cancer Research Institute'),
(13707, 'https://ror.org/04gxzhg33', 'en', 1, 'https://ror.org/04gxzhg33 Mobility Unlimited'),
(13708, 'https://ror.org/05t918q20', 'en', 1, 'https://ror.org/05t918q20 Northeastern School District'),
(13709, 'https://ror.org/04pjxxd64', 'en', 1, 'https://ror.org/04pjxxd64 Alaska Neurology Center'),
(13710, 'https://ror.org/03rw9a524', 'en', 1, 'https://ror.org/03rw9a524 Northern California Indian Development Council'),
(13711, 'https://ror.org/04v566e62', 'no_lang_code', 1, 'https://ror.org/04v566e62 Netronix (United States)'),
(13712, 'https://ror.org/04g9q2h37', 'en', 1, 'https://ror.org/04g9q2h37 San Francisco VA Health Care System'),
(13713, 'https://ror.org/03rw5jc77', 'en', 1, 'https://ror.org/03rw5jc77 Benefis Health System Foundation'),
(13714, 'https://ror.org/046hxmc98', 'no_lang_code', 1, 'https://ror.org/046hxmc98 Modulation Therapeutics (United States)'),
(13715, 'https://ror.org/048et8x32', 'no_lang_code', 1, 'https://ror.org/048et8x32 Moerae Matrix (United States)'),
(13716, 'https://ror.org/01ryyex45', 'no_lang_code', 1, 'https://ror.org/01ryyex45 NeurAccel Biosciences (United States)'),
(13717, 'https://ror.org/0406ep819', 'en', 1, 'https://ror.org/0406ep819 Neural Repair Institute'),
(13718, 'https://ror.org/00mtnme46', 'en', 1, 'https://ror.org/00mtnme46 Northern Neurosciences'),
(13719, 'https://ror.org/05vksh612', 'en', 1, 'https://ror.org/05vksh612 Neuro Assistance Foundation'),
(13720, 'https://ror.org/00n5szt64', 'no_lang_code', 1, 'https://ror.org/00n5szt64 Neuro-Zone (Italy)'),
(13721, 'https://ror.org/01x25y074', 'en', 1, 'https://ror.org/01x25y074 Northern Nevada Children''s Cancer Foundation'),
(13722, 'https://ror.org/00vdcfb98', 'en', 1, 'https://ror.org/00vdcfb98 Kaiser Permanente Castle Medical Center'),
(13723, 'https://ror.org/02jbegc32', 'en', 1, 'https://ror.org/02jbegc32 Children’s Clinics'),
(13724, 'https://ror.org/050g6df85', 'en', 1, 'https://ror.org/050g6df85 National Institute of Cancer Research and Hospital ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦•ą§ą¦Æą¦¾ą¦Øą§ą¦øą¦¾ą¦° গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ ও হাসপাতাল'),
(13725, 'https://ror.org/05dngkv23', 'no_lang_code', 1, 'https://ror.org/05dngkv23 Neurochlore (France)'),
(13726, 'https://ror.org/04r0s0t24', 'en', 1, 'https://ror.org/04r0s0t24 NeuroDevNet'),
(13727, 'https://ror.org/00hh6j532', 'en', 1, 'https://ror.org/00hh6j532 National Institute of Child Health OrszÔgos Gyermek Egészségügyi Intézet'),
(13728, 'https://ror.org/01k0w6g34', 'no_lang_code', 1, 'https://ror.org/01k0w6g34 NeuroHealing Pharmaceuticals (United States)'),
(13729, 'https://ror.org/00q1c1v42', 'en', 1, 'https://ror.org/00q1c1v42 Opportunity Foundation of America'),
(13730, 'https://ror.org/03qrrfg84', 'en', 1, 'https://ror.org/03qrrfg84 NeuroLinx Research Institute'),
(13731, 'https://ror.org/04qg5nd35', 'en', 1, 'https://ror.org/04qg5nd35 Northwest Florida Hematology Oncology'),
(13732, 'https://ror.org/05a34gy67', 'no_lang_code', 1, 'https://ror.org/05a34gy67 Opsona Therapeutics (Ireland)'),
(13733, 'https://ror.org/009jmw315', 'en', 1, 'https://ror.org/009jmw315 Northwest Georgia Regional Cancer Coalition'),
(13734, 'https://ror.org/01xq50d72', 'en', 1, 'https://ror.org/01xq50d72 Community Medical Center'),
(13735, 'https://ror.org/03y260e28', 'en', 1, 'https://ror.org/03y260e28 Neurologic Disease Foundation'),
(13736, 'https://ror.org/02wtzjm20', 'en', 1, 'https://ror.org/02wtzjm20 Neurological Recovery House'),
(13737, 'https://ror.org/01eycqy43', 'en', 1, 'https://ror.org/01eycqy43 Northwest Hospital'),
(13738, 'https://ror.org/058wkc079', 'en', 1, 'https://ror.org/058wkc079 Cooper Clinic'),
(13739, 'https://ror.org/04q0ja294', 'en', 1, 'https://ror.org/04q0ja294 Covenant Health System'),
(13740, 'https://ror.org/013jy5726', 'en', 1, 'https://ror.org/013jy5726 Illinois Area Health Education Center'),
(13741, 'https://ror.org/05gbftj13', 'en', 1, 'https://ror.org/05gbftj13 Orange County Asian Pacific Islander Community Alliance'),
(13742, 'https://ror.org/05tns8e08', 'en', 1, 'https://ror.org/05tns8e08 Neurology Specialists of Monmouth County'),
(13743, 'https://ror.org/054pcbf42', 'en', 1, 'https://ror.org/054pcbf42 Orange County School'),
(13744, 'https://ror.org/03qqb4r64', 'no_lang_code', 1, 'https://ror.org/03qqb4r64 Neuron BioPharma (Spain)'),
(13745, 'https://ror.org/05ws79528', 'en', 1, 'https://ror.org/05ws79528 Oregon Adaptive Sports'),
(13746, 'https://ror.org/00cdtrb49', 'en', 1, 'https://ror.org/00cdtrb49 Oregon College of Oriental Medicine'),
(13747, 'https://ror.org/04jzh7r11', 'no_lang_code', 1, 'https://ror.org/04jzh7r11 NX PharmaGen (United States)'),
(13748, 'https://ror.org/04ypb9m04', 'no_lang_code', 1, 'https://ror.org/04ypb9m04 NeuroNascent (United States)'),
(13749, 'https://ror.org/047gyf089', 'en', 1, 'https://ror.org/047gyf089 Orelena Hawks Puckett Institute'),
(13750, 'https://ror.org/035jqr885', 'en', 1, 'https://ror.org/035jqr885 Elkhart Clinic'),
(13751, 'https://ror.org/00x8zak80', 'en', 1, 'https://ror.org/00x8zak80 National Institute of Population Studies'),
(13752, 'https://ror.org/04r8v5t40', 'en', 1, 'https://ror.org/04r8v5t40 Not-Me!'),
(13753, 'https://ror.org/00292bn75', 'en', 1, 'https://ror.org/00292bn75 Note-Able Music Therapy Services'),
(13754, 'https://ror.org/003e85j37', 'en', 1, 'https://ror.org/003e85j37 Nothing But Nets'),
(13755, 'https://ror.org/01gtybw70', 'en', 1, 'https://ror.org/01gtybw70 Georgia Regents Medical Center'),
(13756, 'https://ror.org/00b970z32', 'no_lang_code', 1, 'https://ror.org/00b970z32 Orion Genomics (United States)'),
(13757, 'https://ror.org/03kaj7n58', 'no_lang_code', 1, 'https://ror.org/03kaj7n58 NovaBay Pharmaceuticals (United States)'),
(13758, 'https://ror.org/033ek1554', 'en', 1, 'https://ror.org/033ek1554 Hamot Health Foundation'),
(13759, 'https://ror.org/01nf48187', 'en', 1, 'https://ror.org/01nf48187 Pike County Health Department'),
(13760, 'https://ror.org/00rn5y796', 'en', 1, 'https://ror.org/00rn5y796 Hillcrest Clinics'),
(13761, 'https://ror.org/04cj9pv40', 'en', 1, 'https://ror.org/04cj9pv40 Ormylia Foundation'),
(13762, 'https://ror.org/012vnhm21', 'no_lang_code', 1, 'https://ror.org/012vnhm21 OrphageniX (United States)'),
(13763, 'https://ror.org/01ert7s69', 'en', 1, 'https://ror.org/01ert7s69 Orpheus Chamber Orchestra'),
(13764, 'https://ror.org/04bw38x95', 'en', 1, 'https://ror.org/04bw38x95 Pike High School'),
(13765, 'https://ror.org/056fv9b21', 'no_lang_code', 1, 'https://ror.org/056fv9b21 Orpro Therapeutics (United States)'),
(13766, 'https://ror.org/007t1w466', 'en', 1, 'https://ror.org/007t1w466 Orthopaedic Research Laboratories'),
(13767, 'https://ror.org/02hp5at17', 'en', 1, 'https://ror.org/02hp5at17 Jupiter Medical Center'),
(13768, 'https://ror.org/0452rfk90', 'en', 1, 'https://ror.org/0452rfk90 Pilates of Marin'),
(13769, 'https://ror.org/051zae275', 'en', 1, 'https://ror.org/051zae275 Kadlec Regional Medical Center'),
(13770, 'https://ror.org/028gm7992', 'en', 1, 'https://ror.org/028gm7992 Jefferson University Hospitals'),
(13771, 'https://ror.org/04cfdk084', 'en', 1, 'https://ror.org/04cfdk084 OAK Orthopedics'),
(13772, 'https://ror.org/03d95mc27', 'no_lang_code', 1, 'https://ror.org/03d95mc27 Ortin Laboratories (India)'),
(13773, 'https://ror.org/05acvka91', 'no_lang_code', 1, 'https://ror.org/05acvka91 ViaCyte (United States)'),
(13774, 'https://ror.org/05pqs7520', 'en', 1, 'https://ror.org/05pqs7520 National Capital Baptist Convention'),
(13775, 'https://ror.org/02vpj2j75', 'no_lang_code', 1, 'https://ror.org/02vpj2j75 Neurotez (United States)'),
(13776, 'https://ror.org/00saxze38', 'en', 1, 'https://ror.org/00saxze38 Loma Linda University Health Care'),
(13777, 'https://ror.org/02stmg653', 'en', 1, 'https://ror.org/02stmg653 Pilipino Senior Resource Center'),
(13778, 'https://ror.org/02yer3h76', 'en', 1, 'https://ror.org/02yer3h76 Pine Cobble School'),
(13779, 'https://ror.org/057mcs327', 'no_lang_code', 1, 'https://ror.org/057mcs327 NeuroVigil (United States)'),
(13780, 'https://ror.org/0447c6e97', 'no_lang_code', 1, 'https://ror.org/0447c6e97 NeuroVista (United States)'),
(13781, 'https://ror.org/05404pa79', 'en', 1, 'https://ror.org/05404pa79 OSF Saint Anthony Medical Center'),
(13782, 'https://ror.org/034q5ae56', 'en', 1, 'https://ror.org/034q5ae56 Sound Rivers'),
(13783, 'https://ror.org/02j4a0n65', 'en', 1, 'https://ror.org/02j4a0n65 Nevada Cancer Research Foundation'),
(13784, 'https://ror.org/02svw4v94', 'en', 1, 'https://ror.org/02svw4v94 Hauppauge Public School'),
(13785, 'https://ror.org/02a5mvd52', 'en', 1, 'https://ror.org/02a5mvd52 OSF Saint Francis Foundation'),
(13786, 'https://ror.org/052b7db17', 'en', 1, 'https://ror.org/052b7db17 Nevada Childhood Cancer Foundation'),
(13787, 'https://ror.org/00s5ck612', 'en', 1, 'https://ror.org/00s5ck612 Accessible Space'),
(13788, 'https://ror.org/04gmz9460', 'en', 1, 'https://ror.org/04gmz9460 Lady Mavericks Wheelchair Basketball'),
(13789, 'https://ror.org/02eg1b280', 'en', 1, 'https://ror.org/02eg1b280 Novokuznetsk State Institute of Advanced Medical Education ŠŠ¾Š²Š¾ŠŗŃƒŠ·Š½ŠµŃ†ŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŃŠ¾Š²ŠµŃ€ŃˆŠµŠ½ŃŃ‚Š²Š¾Š²Š°Š½ŠøŃ врачей'),
(13790, 'https://ror.org/03h04vn96', 'no_lang_code', 1, 'https://ror.org/03h04vn96 Nymirum (United States)'),
(13791, 'https://ror.org/01bbba959', 'en', 1, 'https://ror.org/01bbba959 Pink Ribbons Project'),
(13792, 'https://ror.org/02zk14v48', 'en', 1, 'https://ror.org/02zk14v48 Our Family Services'),
(13793, 'https://ror.org/04g007714', 'no_lang_code', 1, 'https://ror.org/04g007714 Noxxon Pharma (Germany)'),
(13794, 'https://ror.org/008zvz098', 'en', 1, 'https://ror.org/008zvz098 New America'),
(13795, 'https://ror.org/05n6y2c30', 'en', 1, 'https://ror.org/05n6y2c30 Pioneer Network'),
(13796, 'https://ror.org/056x8jc78', 'en', 1, 'https://ror.org/056x8jc78 New Americans Community Services'),
(13797, 'https://ror.org/01fqs5523', 'en', 1, 'https://ror.org/01fqs5523 Pisgah Astronomical Research Institute'),
(13798, 'https://ror.org/025q2xt16', 'en', 1, 'https://ror.org/025q2xt16 Dean Health Systems'),
(13799, 'https://ror.org/04e89qg80', 'en', 1, 'https://ror.org/04e89qg80 Kennedy Memorial Hospital'),
(13800, 'https://ror.org/04hw25m76', 'en', 1, 'https://ror.org/04hw25m76 New Beginnings Community Center'),
(13801, 'https://ror.org/00k94y497', 'en', 1, 'https://ror.org/00k94y497 Onslow County School System'),
(13802, 'https://ror.org/05wd0fd11', 'no_lang_code', 1, 'https://ror.org/05wd0fd11 PixarBio (United States)'),
(13803, 'https://ror.org/05324s141', 'en', 1, 'https://ror.org/05324s141 Our Lady of Perpetual Help'),
(13804, 'https://ror.org/00dsh2014', 'en', 1, 'https://ror.org/00dsh2014 Placer School for Adults'),
(13805, 'https://ror.org/02zv5ec81', 'en', 1, 'https://ror.org/02zv5ec81 Ntengwe for Community Development'),
(13806, 'https://ror.org/025g9s518', 'en', 1, 'https://ror.org/025g9s518 New England Anti-Vivisection Society'),
(13807, 'https://ror.org/02ytj9t26', 'en', 1, 'https://ror.org/02ytj9t26 Plan International'),
(13808, 'https://ror.org/03p67qv16', 'en', 1, 'https://ror.org/03p67qv16 Plan International Regional Office of the Americas'),
(13809, 'https://ror.org/02p7ad522', 'en', 1, 'https://ror.org/02p7ad522 New England Coalition for Cancer Survivorship'),
(13810, 'https://ror.org/02p4mb484', 'en', 1, 'https://ror.org/02p4mb484 Plan International Tanzania'),
(13811, 'https://ror.org/0150zzy74', 'en', 1, 'https://ror.org/0150zzy74 New England Disabled Sports'),
(13812, 'https://ror.org/04n2m2v25', 'en', 1, 'https://ror.org/04n2m2v25 New England Handicapped Sports Association'),
(13813, 'https://ror.org/00m4fb445', 'en', 1, 'https://ror.org/00m4fb445 Neurology Associates of Arlington'),
(13814, 'https://ror.org/04y1z0v62', 'en', 1, 'https://ror.org/04y1z0v62 Ovar''coming Together'),
(13815, 'https://ror.org/04ks4f885', 'en', 1, 'https://ror.org/04ks4f885 Nueva Vida'),
(13816, 'https://ror.org/04et83a48', 'en', 1, 'https://ror.org/04et83a48 Ovarian Cancer Institute'),
(13817, 'https://ror.org/00qc61c04', 'en', 1, 'https://ror.org/00qc61c04 New Frontier'),
(13818, 'https://ror.org/01a81w125', 'en', 1, 'https://ror.org/01a81w125 Planned Parenthood Association of Liberia'),
(13819, 'https://ror.org/032ynh934', 'en', 1, 'https://ror.org/032ynh934 New Hampshire Hospice and Palliative Care Organization'),
(13820, 'https://ror.org/01n2sky78', 'en', 1, 'https://ror.org/01n2sky78 Ovarian Cancer National Alliance'),
(13821, 'https://ror.org/00wcraf05', 'en', 1, 'https://ror.org/00wcraf05 New Haven Family Alliance'),
(13822, 'https://ror.org/03xe1hd69', 'en', 1, 'https://ror.org/03xe1hd69 New Horizons Independent Living Center'),
(13823, 'https://ror.org/035z3t173', 'en', 1, 'https://ror.org/035z3t173 District scolaire de Philadelphie Distrito escolar de Filadelfia School District of Philadelphia'),
(13824, 'https://ror.org/0138k6z33', 'en', 1, 'https://ror.org/0138k6z33 Planned Parenthood Hudson Peconic'),
(13825, 'https://ror.org/03yx1gg75', 'en', 1, 'https://ror.org/03yx1gg75 Texas Nurses Association'),
(13826, 'https://ror.org/05k0fdc49', 'en', 1, 'https://ror.org/05k0fdc49 Oxfam America'),
(13827, 'https://ror.org/05xez8392', 'en', 1, 'https://ror.org/05xez8392 Nurse-Family Partnership'),
(13828, 'https://ror.org/00nrppk36', 'no_lang_code', 1, 'https://ror.org/00nrppk36 Ozmosis Research (Canada)'),
(13829, 'https://ror.org/01aqcn407', 'en', 1, 'https://ror.org/01aqcn407 New Orleans Musicians Assistance Foundation'),
(13830, 'https://ror.org/01knqhy07', 'en', 1, 'https://ror.org/01knqhy07 New Pisgah Community Service Organization'),
(13831, 'https://ror.org/028pcv110', 'en', 1, 'https://ror.org/028pcv110 Planned Parenthood of Metropolitan Washington'),
(13832, 'https://ror.org/046rga183', 'en', 1, 'https://ror.org/046rga183 Planned Parenthood Southeast'),
(13833, 'https://ror.org/05dy6te41', 'en', 1, 'https://ror.org/05dy6te41 Nursing Mothers Counsel'),
(13834, 'https://ror.org/04esec225', 'en', 1, 'https://ror.org/04esec225 Plaza Community Services'),
(13835, 'https://ror.org/03b66rp04', 'en', 1, 'https://ror.org/03b66rp04 Olive View-UCLA Medical Center'),
(13836, 'https://ror.org/05jpe9382', 'en', 1, 'https://ror.org/05jpe9382 Pleasant Hill Community Center'),
(13837, 'https://ror.org/00n4nbp68', 'en', 1, 'https://ror.org/00n4nbp68 OSF HealthCare'),
(13838, 'https://ror.org/05rg5kc24', 'en', 1, 'https://ror.org/05rg5kc24 Nutritional Oncology Research Institute'),
(13839, 'https://ror.org/021amba89', 'en', 1, 'https://ror.org/021amba89 New York Collaborates for Autism'),
(13840, 'https://ror.org/03tvp8c36', 'en', 1, 'https://ror.org/03tvp8c36 PA Breast Cancer Coalition'),
(13841, 'https://ror.org/03asvs429', 'en', 1, 'https://ror.org/03asvs429 New York Legal Assistance Group'),
(13842, 'https://ror.org/039j6d549', 'en', 1, 'https://ror.org/039j6d549 Providence Medford Medical Center'),
(13843, 'https://ror.org/05r5g1w07', 'en', 1, 'https://ror.org/05r5g1w07 Pennsylvania Center For Intuitive Studies'),
(13844, 'https://ror.org/05xvp5318', 'en', 1, 'https://ror.org/05xvp5318 Providence St. Peter Hospital'),
(13845, 'https://ror.org/04c0kq537', 'en', 1, 'https://ror.org/04c0kq537 Rapides Regional Medical Center'),
(13846, 'https://ror.org/056p4s391', 'en', 1, 'https://ror.org/056p4s391 New York Restoration Project'),
(13847, 'https://ror.org/04qkdt303', 'en', 1, 'https://ror.org/04qkdt303 New York Public Radio'),
(13848, 'https://ror.org/05sjffw91', 'en', 1, 'https://ror.org/05sjffw91 Encompass Health Rehabilitation Hospital of Tinton Falls'),
(13849, 'https://ror.org/008qy0g71', 'en', 1, 'https://ror.org/008qy0g71 Renown Children''s Hospital'),
(13850, 'https://ror.org/00w205b62', 'en', 1, 'https://ror.org/00w205b62 Renown Health'),
(13851, 'https://ror.org/03zecp235', 'no_lang_code', 1, 'https://ror.org/03zecp235 Plexcera Therapeutics (United States)'),
(13852, 'https://ror.org/01b3b0r57', 'en', 1, 'https://ror.org/01b3b0r57 Parent Advocacy Coalition for Educational Rights'),
(13853, 'https://ror.org/0381d4058', 'en', 1, 'https://ror.org/0381d4058 Renown South Meadows Medical Center'),
(13854, 'https://ror.org/03qzkbe13', 'en', 1, 'https://ror.org/03qzkbe13 New Yorkers for Parks'),
(13855, 'https://ror.org/03w9zd521', 'en', 1, 'https://ror.org/03w9zd521 St. David''s Round Rock Medical Center'),
(13856, 'https://ror.org/03e9g1572', 'no_lang_code', 1, 'https://ror.org/03e9g1572 Neuromathix (Australia)'),
(13857, 'https://ror.org/01b0md462', 'no_lang_code', 1, 'https://ror.org/01b0md462 Plumbline Coaching & Consulting (United States)'),
(13858, 'https://ror.org/05d3xvm78', 'en', 1, 'https://ror.org/05d3xvm78 Newark Academy'),
(13859, 'https://ror.org/04q8sg180', 'en', 1, 'https://ror.org/04q8sg180 Neurology Centers of the Carolinas'),
(13860, 'https://ror.org/04nt88t73', 'en', 1, 'https://ror.org/04nt88t73 PNA Center for Neurological Research'),
(13861, 'https://ror.org/04ak2vh38', 'en', 1, 'https://ror.org/04ak2vh38 Newark Community Health Centers'),
(13862, 'https://ror.org/04rzss152', 'no_lang_code', 1, 'https://ror.org/04rzss152 NewGen Therapeutics (United States)'),
(13863, 'https://ror.org/048fgvb33', 'no_lang_code', 1, 'https://ror.org/048fgvb33 Podiceps (Netherlands)'),
(13864, 'https://ror.org/03k6c3c61', 'en', 1, 'https://ror.org/03k6c3c61 St. Anthony’s Hospital'),
(13865, 'https://ror.org/058643s73', 'en', 1, 'https://ror.org/058643s73 Pachyonychia Congenita Project'),
(13866, 'https://ror.org/04jvcky17', 'en', 1, 'https://ror.org/04jvcky17 Newport Festivals Foundation'),
(13867, 'https://ror.org/03vy8yd42', 'en', 1, 'https://ror.org/03vy8yd42 St. Charles Hospital'),
(13868, 'https://ror.org/02rjkjw28', 'es', 1, 'https://ror.org/02rjkjw28 PoliclĆ­nica Gipuzkoa'),
(13869, 'https://ror.org/027176q05', 'en', 1, 'https://ror.org/027176q05 St. Francis Medical Center'),
(13870, 'https://ror.org/04arwvm64', 'en', 1, 'https://ror.org/04arwvm64 Pacific Cancer Foundation'),
(13871, 'https://ror.org/011c97447', 'en', 1, 'https://ror.org/011c97447 Newton Symphony Orchestra'),
(13872, 'https://ror.org/05cyed441', 'en', 1, 'https://ror.org/05cyed441 Pacific Center for Human Growth'),
(13873, 'https://ror.org/04k4qvz84', 'en', 1, 'https://ror.org/04k4qvz84 Poly Prep Country Day School'),
(13874, 'https://ror.org/04jf0dw52', 'en', 1, 'https://ror.org/04jf0dw52 Texoma Neurology Associates'),
(13875, 'https://ror.org/05yeqft47', 'en', 1, 'https://ror.org/05yeqft47 Baton Rouge Clinic'),
(13876, 'https://ror.org/056010s74', 'no_lang_code', 1, 'https://ror.org/056010s74 Polyphor (Switzerland)'),
(13877, 'https://ror.org/04d3q1d69', 'en', 1, 'https://ror.org/04d3q1d69 Newton-Conover Health and Science High School'),
(13878, 'https://ror.org/02mczt252', 'no_lang_code', 1, 'https://ror.org/02mczt252 NexImmune (United States)'),
(13879, 'https://ror.org/00ewj2q24', 'en', 1, 'https://ror.org/00ewj2q24 NextSteps Chicago'),
(13880, 'https://ror.org/020fhwg86', 'en', 1, 'https://ror.org/020fhwg86 NextStep Fitness'),
(13881, 'https://ror.org/02j2j3d46', 'en', 1, 'https://ror.org/02j2j3d46 Pacific Crest Trail Association'),
(13882, 'https://ror.org/020ccak28', 'en', 1, 'https://ror.org/020ccak28 Port Jefferson Lions Club'),
(13883, 'https://ror.org/01szw1r19', 'no_lang_code', 1, 'https://ror.org/01szw1r19 Pacific World Discovery (United States)'),
(13884, 'https://ror.org/05fhfxg73', 'en', 1, 'https://ror.org/05fhfxg73 Portland Fruit Tree Project'),
(13885, 'https://ror.org/00xwx2b45', 'en', 1, 'https://ror.org/00xwx2b45 Pushing Boundaries'),
(13886, 'https://ror.org/04nxjmy70', 'en', 1, 'https://ror.org/04nxjmy70 Possible Health'),
(13887, 'https://ror.org/018vx9t46', 'en', 1, 'https://ror.org/018vx9t46 Mazumdar Shaw Medical Centre'),
(13888, 'https://ror.org/053xb8h09', 'en', 1, 'https://ror.org/053xb8h09 Positive Resource Center'),
(13889, 'https://ror.org/00f70np64', 'en', 1, 'https://ror.org/00f70np64 Pain and Rehabilitation Medicine'),
(13890, 'https://ror.org/01srqm736', 'en', 1, 'https://ror.org/01srqm736 Nia Association'),
(13891, 'https://ror.org/03kmbzt92', 'en', 1, 'https://ror.org/03kmbzt92 Pain Clinic of India'),
(13892, 'https://ror.org/00j37m859', 'en', 1, 'https://ror.org/00j37m859 Pain Relief and Palliative Care Society'),
(13893, 'https://ror.org/00f0ppx79', 'en', 1, 'https://ror.org/00f0ppx79 O''Brien Institute');
INSERT INTO `rors` VALUES
(13894, 'https://ror.org/04ft21254', 'en', 1, 'https://ror.org/04ft21254 Pal-O-Mine Equestrian'),
(13895, 'https://ror.org/01j5c7b20', 'en', 1, 'https://ror.org/01j5c7b20 Potomac Massage Training Institute'),
(13896, 'https://ror.org/009s7cn04', 'en', 1, 'https://ror.org/009s7cn04 Nick Simons Institute'),
(13897, 'https://ror.org/04fg4sh42', 'en', 1, 'https://ror.org/04fg4sh42 St Peter''s Hospital'),
(13898, 'https://ror.org/05y9hde07', 'en', 1, 'https://ror.org/05y9hde07 Palo Alto Center for Pulmonary Disease Prevention'),
(13899, 'https://ror.org/03e2k6s26', 'en', 1, 'https://ror.org/03e2k6s26 Nigerian Christian Hospital'),
(13900, 'https://ror.org/008e03r59', 'en', 1, 'https://ror.org/008e03r59 Palo Alto Veterans Institute for Research'),
(13901, 'https://ror.org/032tjz442', 'en', 1, 'https://ror.org/032tjz442 Oakland Symphony'),
(13902, 'https://ror.org/018t53266', 'en', 1, 'https://ror.org/018t53266 Power Paws Assistance Dogs'),
(13903, 'https://ror.org/00sf0vm37', 'en', 1, 'https://ror.org/00sf0vm37 Oakville Public Library'),
(13904, 'https://ror.org/0022pfg65', 'en', 1, 'https://ror.org/0022pfg65 Nightingales Medical Trust'),
(13905, 'https://ror.org/02x3swg45', 'no_lang_code', 1, 'https://ror.org/02x3swg45 Oasis Diagnostics (United States)'),
(13906, 'https://ror.org/01yxtmr67', 'no_lang_code', 1, 'https://ror.org/01yxtmr67 Prana Biotechnology (Australia)'),
(13907, 'https://ror.org/05a6y6d35', 'en', 1, 'https://ror.org/05a6y6d35 Prayer of Faith International Ministries'),
(13908, 'https://ror.org/0192zc472', 'en', 1, 'https://ror.org/0192zc472 Ocean Classroom'),
(13909, 'https://ror.org/00pvgrv63', 'no_lang_code', 1, 'https://ror.org/00pvgrv63 Panasonic (United States)'),
(13910, 'https://ror.org/03ft4ac91', 'en', 1, 'https://ror.org/03ft4ac91 Ochin'),
(13911, 'https://ror.org/01pvdcq70', 'no_lang_code', 1, 'https://ror.org/01pvdcq70 Precision BioSciences (United States)'),
(13912, 'https://ror.org/05qwqv243', 'en', 1, 'https://ror.org/05qwqv243 Rebuilding All Goals Efficiently'),
(13913, 'https://ror.org/04mteaa42', 'en', 1, 'https://ror.org/04mteaa42 Rebuilding Together NYC'),
(13914, 'https://ror.org/009jz9e24', 'en', 1, 'https://ror.org/009jz9e24 Pangaea Global AIDS Foundation'),
(13915, 'https://ror.org/02a7k5x58', 'en', 1, 'https://ror.org/02a7k5x58 Reconstruction of a Survivor'),
(13916, 'https://ror.org/0434xpc34', 'no_lang_code', 1, 'https://ror.org/0434xpc34 Panorama Research (United States)'),
(13917, 'https://ror.org/05s171n88', 'en', 1, 'https://ror.org/05s171n88 Premier Health Care'),
(13918, 'https://ror.org/04hjd4w57', 'en', 1, 'https://ror.org/04hjd4w57 Odyssey School'),
(13919, 'https://ror.org/04ejz3m31', 'en', 1, 'https://ror.org/04ejz3m31 Red Cloud Indian School'),
(13920, 'https://ror.org/05nsscv85', 'en', 1, 'https://ror.org/05nsscv85 Red Feather Development Group'),
(13921, 'https://ror.org/05scb3e57', 'no_lang_code', 1, 'https://ror.org/05scb3e57 Paradigm Shift Therapeutics (United States)'),
(13922, 'https://ror.org/053z7dx55', 'en', 1, 'https://ror.org/053z7dx55 Maternal Child and Family Health'),
(13923, 'https://ror.org/05d3dxa83', 'en', 1, 'https://ror.org/05d3dxa83 National Office of Samoan Affairs'),
(13924, 'https://ror.org/03t0ndf94', 'en', 1, 'https://ror.org/03t0ndf94 Paralyzed Veterans of America, Cal-Diego Chapter'),
(13925, 'https://ror.org/03frdm317', 'en', 1, 'https://ror.org/03frdm317 Paraquad'),
(13926, 'https://ror.org/019g7bh20', 'no_lang_code', 1, 'https://ror.org/019g7bh20 Paratek Pharmaceuticals (United States)'),
(13927, 'https://ror.org/0022r5p04', 'en', 1, 'https://ror.org/0022r5p04 NeuroMedical Center'),
(13928, 'https://ror.org/02ayk3803', 'en', 1, 'https://ror.org/02ayk3803 Parelli Foundation'),
(13929, 'https://ror.org/00d1wxk10', 'en', 1, 'https://ror.org/00d1wxk10 Reel Recovery'),
(13930, 'https://ror.org/04smw2r26', 'en', 1, 'https://ror.org/04smw2r26 Prescott Center for the Arts'),
(13931, 'https://ror.org/05agqdj52', 'en', 1, 'https://ror.org/05agqdj52 Touch the Future'),
(13932, 'https://ror.org/006c8zj95', 'en', 1, 'https://ror.org/006c8zj95 President''s Council of Advisors on Science and Technology'),
(13933, 'https://ror.org/025n0cr27', 'en', 1, 'https://ror.org/025n0cr27 ProMedica Russell J. Ebeid Children''s Hospital'),
(13934, 'https://ror.org/03wbacc17', 'en', 1, 'https://ror.org/03wbacc17 Pressing On'),
(13935, 'https://ror.org/00wh1kc42', 'en', 1, 'https://ror.org/00wh1kc42 Community Partners of South Florida'),
(13936, 'https://ror.org/04z6pqc94', 'no_lang_code', 1, 'https://ror.org/04z6pqc94 Prestige World Genetics Pte (Singapore)'),
(13937, 'https://ror.org/04xanzq95', 'en', 1, 'https://ror.org/04xanzq95 The Parenting Cottage'),
(13938, 'https://ror.org/03jpt8f29', 'en', 1, 'https://ror.org/03jpt8f29 Prevent Cancer Foundation'),
(13939, 'https://ror.org/0355zfr67', 'en', 1, 'https://ror.org/0355zfr67 University of North Carolina Hospitals'),
(13940, 'https://ror.org/021enqb55', 'en', 1, 'https://ror.org/021enqb55 Parents With A Purpose'),
(13941, 'https://ror.org/052ed1t23', 'en', 1, 'https://ror.org/052ed1t23 Park Avenue Synagogue'),
(13942, 'https://ror.org/03gaatb02', 'en', 1, 'https://ror.org/03gaatb02 Primary Care Coalition of Montgomery County'),
(13943, 'https://ror.org/01wt1m959', 'en', 1, 'https://ror.org/01wt1m959 Prince George''s County Health Department'),
(13944, 'https://ror.org/02f588d44', 'en', 1, 'https://ror.org/02f588d44 University of Virginia Hospital'),
(13945, 'https://ror.org/01cc8wa14', 'en', 1, 'https://ror.org/01cc8wa14 Parker Jewish Institute for Health Care and Rehabilitation'),
(13946, 'https://ror.org/020g9v513', 'en', 1, 'https://ror.org/020g9v513 Ohio Pain Initiative'),
(13947, 'https://ror.org/025c4cf84', 'en', 1, 'https://ror.org/025c4cf84 Parkland Foundation'),
(13948, 'https://ror.org/00cqg9869', 'en', 1, 'https://ror.org/00cqg9869 Region One Mental Health'),
(13949, 'https://ror.org/0067eyh19', 'en', 1, 'https://ror.org/0067eyh19 LAND studio'),
(13950, 'https://ror.org/03fqsff15', 'en', 1, 'https://ror.org/03fqsff15 Community Counseling Services'),
(13951, 'https://ror.org/014ktjg17', 'en', 1, 'https://ror.org/014ktjg17 White Plains Hospital'),
(13952, 'https://ror.org/020x9tr75', 'en', 1, 'https://ror.org/020x9tr75 Pine Belt Mental Healthcare Resources'),
(13953, 'https://ror.org/012e9j548', 'en', 1, 'https://ror.org/012e9j548 OhioHealth'),
(13954, 'https://ror.org/011azg567', 'en', 1, 'https://ror.org/011azg567 Regional Cancer Center, Thiruvananthapuram'),
(13955, 'https://ror.org/05hfrjt79', 'en', 1, 'https://ror.org/05hfrjt79 Partners Asia'),
(13956, 'https://ror.org/002q0aa23', 'en', 1, 'https://ror.org/002q0aa23 Princeton Child Development Institute'),
(13957, 'https://ror.org/02kwrph79', 'en', 1, 'https://ror.org/02kwrph79 Partners for Cancer Care and Prevention'),
(13958, 'https://ror.org/0125xqd86', 'en', 1, 'https://ror.org/0125xqd86 INTEGRIS Southwest Medical Center'),
(13959, 'https://ror.org/02ta1dj76', 'en', 1, 'https://ror.org/02ta1dj76 The Princeton Festival'),
(13960, 'https://ror.org/02trd1e52', 'en', 1, 'https://ror.org/02trd1e52 Regional Arab Network against AIDS'),
(13961, 'https://ror.org/03veb6e23', 'no_lang_code', 1, 'https://ror.org/03veb6e23 Prism Biolab Corporation (Japan)'),
(13962, 'https://ror.org/04m1cey27', 'no_lang_code', 1, 'https://ror.org/04m1cey27 Privo Technologies (United States)'),
(13963, 'https://ror.org/017gjr957', 'en', 1, 'https://ror.org/017gjr957 Pro Bono Counseling Project'),
(13964, 'https://ror.org/01sydw166', 'en', 1, 'https://ror.org/01sydw166 Oklahoma Brain Tumor Foundation'),
(13965, 'https://ror.org/03fhv6a52', 'es', 1, 'https://ror.org/03fhv6a52 Supera'),
(13966, 'https://ror.org/059yw8356', 'no_lang_code', 1, 'https://ror.org/059yw8356 ProActive Solutions (United States)'),
(13967, 'https://ror.org/04nhfy784', 'no_lang_code', 1, 'https://ror.org/04nhfy784 ProCrysta Biologix (United States)'),
(13968, 'https://ror.org/04nqwjy64', 'en', 1, 'https://ror.org/04nqwjy64 Rehabilitation Institute of Michigan'),
(13969, 'https://ror.org/03qe7zj77', 'en', 1, 'https://ror.org/03qe7zj77 Carondelet Health'),
(13970, 'https://ror.org/023qcs349', 'en', 1, 'https://ror.org/023qcs349 Rehabilitation Institute of Kansas City'),
(13971, 'https://ror.org/052r0y739', 'no_lang_code', 1, 'https://ror.org/052r0y739 Prodo Laboratories (United States)'),
(13972, 'https://ror.org/028cpyy94', 'en', 1, 'https://ror.org/028cpyy94 Fundación Mercy Care Mercy Care Foundation'),
(13973, 'https://ror.org/033tn4q36', 'en', 1, 'https://ror.org/033tn4q36 Partners for Youth with Disabilities'),
(13974, 'https://ror.org/0132g7q26', 'en', 1, 'https://ror.org/0132g7q26 Old Westbury Gardens'),
(13975, 'https://ror.org/00xwb4n23', 'en', 1, 'https://ror.org/00xwb4n23 Partners In Care'),
(13976, 'https://ror.org/00975k008', 'no_lang_code', 1, 'https://ror.org/00975k008 Dancing Wheels (United States)'),
(13977, 'https://ror.org/00pqbn444', 'en', 1, 'https://ror.org/00pqbn444 Partners in Care Foundation'),
(13978, 'https://ror.org/01avjet51', 'en', 1, 'https://ror.org/01avjet51 St. Patrick Roman Catholic Church'),
(13979, 'https://ror.org/05cvht873', 'en', 1, 'https://ror.org/05cvht873 Professional Tutors of America'),
(13980, 'https://ror.org/0536q8754', 'no_lang_code', 1, 'https://ror.org/0536q8754 Olema Pharmaceuticals (United States)'),
(13981, 'https://ror.org/02tyjnv32', 'en', 1, 'https://ror.org/02tyjnv32 Saitama Medical University Hospital åŸ¼ēŽ‰åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(13982, 'https://ror.org/00qcztw05', 'en', 1, 'https://ror.org/00qcztw05 Ministry of Health of the Republic of Uzbekistan ŠŽŠ·Š±ŠµŠŗŠøŃŃ‚Š¾Š½ Республикаси Доғлиқни ŃŠ°Ņ›Š»Š°Ńˆ вазирлиги'),
(13983, 'https://ror.org/05haqd335', 'en', 1, 'https://ror.org/05haqd335 Research Advocacy Network'),
(13984, 'https://ror.org/05kbqyj25', 'no_lang_code', 1, 'https://ror.org/05kbqyj25 Saladax Biomedical (United States)'),
(13985, 'https://ror.org/05tynn421', 'no_lang_code', 1, 'https://ror.org/05tynn421 Progenitor Cell Therapy (United States)'),
(13986, 'https://ror.org/01qh9gp70', 'en', 1, 'https://ror.org/01qh9gp70 Partnership for Health Analytic Research'),
(13987, 'https://ror.org/044z3jj38', 'en', 1, 'https://ror.org/044z3jj38 OMNI Institute'),
(13988, 'https://ror.org/011cheg80', 'no_lang_code', 1, 'https://ror.org/011cheg80 Omniox (United States)'),
(13989, 'https://ror.org/05b5v0n31', 'en', 1, 'https://ror.org/05b5v0n31 Salinas Valley Memorial Healthcare System'),
(13990, 'https://ror.org/03bp9pt77', 'en', 1, 'https://ror.org/03bp9pt77 Salt Lake County Parks and Recreation'),
(13991, 'https://ror.org/05m92h626', 'en', 1, 'https://ror.org/05m92h626 Partnership Schools'),
(13992, 'https://ror.org/02wvp2z28', 'en', 1, 'https://ror.org/02wvp2z28 The Salvation Army United States'),
(13993, 'https://ror.org/032rwz169', 'no_lang_code', 1, 'https://ror.org/032rwz169 Oncoceutics (United States)'),
(13994, 'https://ror.org/03983h596', 'en', 1, 'https://ror.org/03983h596 Project Angel Heart'),
(13995, 'https://ror.org/032mwt045', 'en', 1, 'https://ror.org/032mwt045 Neurology Center of Southern California'),
(13996, 'https://ror.org/01en79h04', 'en', 1, 'https://ror.org/01en79h04 Sam Schmidt Paralysis Foundation'),
(13997, 'https://ror.org/02n9p9f13', 'en', 1, 'https://ror.org/02n9p9f13 Sama Resource Group for Women and Health'),
(13998, 'https://ror.org/022f21j22', 'en', 1, 'https://ror.org/022f21j22 Mount Hagen Provincial Hospital'),
(13999, 'https://ror.org/04ct03p83', 'no_lang_code', 1, 'https://ror.org/04ct03p83 Centus'),
(14000, 'https://ror.org/05scg1q91', 'en', 1, 'https://ror.org/05scg1q91 Samaritan Health Services'),
(14001, 'https://ror.org/02dngfz86', 'en', 1, 'https://ror.org/02dngfz86 Center for Courageous Kids'),
(14002, 'https://ror.org/04yd65q24', 'en', 1, 'https://ror.org/04yd65q24 Samaritan Healthcare and Hospice'),
(14003, 'https://ror.org/03vm7rm25', 'en', 1, 'https://ror.org/03vm7rm25 Project Concern International'),
(14004, 'https://ror.org/03myq7b49', 'en', 1, 'https://ror.org/03myq7b49 Samaritan Hospital'),
(14005, 'https://ror.org/04k7cse40', 'en', 1, 'https://ror.org/04k7cse40 Project Empower'),
(14006, 'https://ror.org/008rx8a22', 'en', 1, 'https://ror.org/008rx8a22 Sampson County Schools'),
(14007, 'https://ror.org/00d73ba28', 'no_lang_code', 1, 'https://ror.org/00d73ba28 Oncomatryx (Spain)'),
(14008, 'https://ror.org/03rret387', 'en', 1, 'https://ror.org/03rret387 Project Freedom'),
(14009, 'https://ror.org/01kpm1136', 'en', 1, 'https://ror.org/01kpm1136 Research Institute for Endocrine Sciences Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… ŲŗŲÆŲÆ ŲÆŲ±ŁˆŁ† ریز و Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŲ³Ł…'),
(14010, 'https://ror.org/01dns9649', 'en', 1, 'https://ror.org/01dns9649 Project Open Hand'),
(14011, 'https://ror.org/03hjnhg65', 'no_lang_code', 1, 'https://ror.org/03hjnhg65 Open Hand'),
(14012, 'https://ror.org/02q6q6m23', 'en', 1, 'https://ror.org/02q6q6m23 San Bernardino County Department of Public Health'),
(14013, 'https://ror.org/00b8bzq64', 'no_lang_code', 1, 'https://ror.org/00b8bzq64 Oncos Therapeutics (Finland)'),
(14014, 'https://ror.org/030xyk527', 'no_lang_code', 1, 'https://ror.org/030xyk527 Oncotide Pharmaceuticals (United States)'),
(14015, 'https://ror.org/049fjxn51', 'en', 1, 'https://ror.org/049fjxn51 San Diego American Indian Health Center'),
(14016, 'https://ror.org/03ns2tc75', 'en', 1, 'https://ror.org/03ns2tc75 Quest Center for Integrative Health'),
(14017, 'https://ror.org/01ww5qq62', 'en', 1, 'https://ror.org/01ww5qq62 Pathway School'),
(14018, 'https://ror.org/01ccwxx16', 'en', 1, 'https://ror.org/01ccwxx16 San Diego Hospice and The Institute for Palliative Medicine'),
(14019, 'https://ror.org/00frxwd04', 'en', 1, 'https://ror.org/00frxwd04 Pathways Behavioral Services'),
(14020, 'https://ror.org/054zpyd97', 'en', 1, 'https://ror.org/054zpyd97 San Diego Unified School District'),
(14021, 'https://ror.org/01xrr0m34', 'no_lang_code', 1, 'https://ror.org/01xrr0m34 One River Grants (United States)'),
(14022, 'https://ror.org/03r1vfk75', 'en', 1, 'https://ror.org/03r1vfk75 San Diego Youth Services'),
(14023, 'https://ror.org/0425feb41', 'en', 1, 'https://ror.org/0425feb41 Project Walk Orlando'),
(14024, 'https://ror.org/04ead8931', 'en', 1, 'https://ror.org/04ead8931 Project Walk Paralysis Recovery Centers'),
(14025, 'https://ror.org/02td5wn81', 'en', 1, 'https://ror.org/02td5wn81 Ono Academic College הקריה ×”××§×“×ž×™×Ŗ אונו'),
(14026, 'https://ror.org/03q97we10', 'en', 1, 'https://ror.org/03q97we10 SF LGBT Center'),
(14027, 'https://ror.org/052fdn272', 'en', 1, 'https://ror.org/052fdn272 San Francisco Unified School District'),
(14028, 'https://ror.org/04bgb0r98', 'en', 1, 'https://ror.org/04bgb0r98 San Joaquin County Public Health Services'),
(14029, 'https://ror.org/03mbj3p87', 'en', 1, 'https://ror.org/03mbj3p87 San Joaquin Valley Public Health Consortium'),
(14030, 'https://ror.org/04qw4yn54', 'en', 1, 'https://ror.org/04qw4yn54 Mothers’ Milk Bank'),
(14031, 'https://ror.org/04ng7mq07', 'en', 1, 'https://ror.org/04ng7mq07 Pathways'),
(14032, 'https://ror.org/04k9qym02', 'en', 1, 'https://ror.org/04k9qym02 Patient Advocate Foundation'),
(14033, 'https://ror.org/014q65q44', 'en', 1, 'https://ror.org/014q65q44 Patient-Centered Outcomes Research Institute'),
(14034, 'https://ror.org/01gxjn621', 'no_lang_code', 1, 'https://ror.org/01gxjn621 Prolong Pharmaceuticals (United States)'),
(14035, 'https://ror.org/02pkfda39', 'en', 1, 'https://ror.org/02pkfda39 Open Arms of Minnesota'),
(14036, 'https://ror.org/05r9by079', 'en', 1, 'https://ror.org/05r9by079 San Mateo County Health System'),
(14037, 'https://ror.org/01q9g5r39', 'fr', 1, 'https://ror.org/01q9g5r39 RƩseau Africain pour le DƩveloppement IntƩgrƩ'),
(14038, 'https://ror.org/01pcn0155', 'en', 1, 'https://ror.org/01pcn0155 Open Door Family Medical Center'),
(14039, 'https://ror.org/014b6hs81', 'no_lang_code', 1, 'https://ror.org/014b6hs81 Prometheus Research (United States)'),
(14040, 'https://ror.org/033g5xh94', 'en', 1, 'https://ror.org/033g5xh94 San Mateo County Probation'),
(14041, 'https://ror.org/0179d7111', 'en', 1, 'https://ror.org/0179d7111 Promise Project'),
(14042, 'https://ror.org/01nwrs673', 'en', 1, 'https://ror.org/01nwrs673 Reset Therapeutics'),
(14043, 'https://ror.org/02sgq5295', 'no_lang_code', 1, 'https://ror.org/02sgq5295 Pronto Diagnostics (Israel) חברת ×¤×Ø×•× ×˜×• דיאגנוהטיקה'),
(14044, 'https://ror.org/015drk921', 'en', 1, 'https://ror.org/015drk921 Patients First'),
(14045, 'https://ror.org/01y6mff13', 'en', 1, 'https://ror.org/01y6mff13 Resource Foundation'),
(14046, 'https://ror.org/032z7g248', 'en', 1, 'https://ror.org/032z7g248 Resources for Children with Special Needs'),
(14047, 'https://ror.org/004m17078', 'en', 1, 'https://ror.org/004m17078 Resources for Independence Central Valley'),
(14048, 'https://ror.org/02b9qqz94', 'en', 1, 'https://ror.org/02b9qqz94 Prosperity Gardens'),
(14049, 'https://ror.org/03a9cx059', 'en', 1, 'https://ror.org/03a9cx059 Restorative Justice Centre'),
(14050, 'https://ror.org/03th4vw55', 'en', 1, 'https://ror.org/03th4vw55 Operation Samahan'),
(14051, 'https://ror.org/047rbbf58', 'en', 1, 'https://ror.org/047rbbf58 Restorix Foundation'),
(14052, 'https://ror.org/0324fk698', 'no_lang_code', 1, 'https://ror.org/0324fk698 Open Window Productions (United States)'),
(14053, 'https://ror.org/00gf55f61', 'no_lang_code', 1, 'https://ror.org/00gf55f61 Opexa Therapeutics (United States)'),
(14054, 'https://ror.org/0593q3t13', 'en', 1, 'https://ror.org/0593q3t13 Prostate Cancer Prevention Foundation'),
(14055, 'https://ror.org/04nzdnk52', 'en', 1, 'https://ror.org/04nzdnk52 Restorix Health'),
(14056, 'https://ror.org/015mn5k65', 'en', 1, 'https://ror.org/015mn5k65 San Mateo Medical Center'),
(14057, 'https://ror.org/03y7gah37', 'no_lang_code', 1, 'https://ror.org/03y7gah37 Prothelia (United States)'),
(14058, 'https://ror.org/0315xr544', 'no_lang_code', 1, 'https://ror.org/0315xr544 ReveraGen BioPharma (United States)'),
(14059, 'https://ror.org/00jkncn63', 'en', 1, 'https://ror.org/00jkncn63 Beijing Sanbo Brain Hospital åŒ—äŗ¬äø‰åšč„‘ē§‘åŒ»é™¢'),
(14060, 'https://ror.org/018b8fj92', 'no_lang_code', 1, 'https://ror.org/018b8fj92 Protigen (United States)'),
(14061, 'https://ror.org/04mzgaa85', 'no_lang_code', 1, 'https://ror.org/04mzgaa85 PCAsso Diagnostics (United States)'),
(14062, 'https://ror.org/04n2fyr96', 'en', 1, 'https://ror.org/04n2fyr96 Presence Saint Joseph Hospital'),
(14063, 'https://ror.org/03wkdj490', 'no_lang_code', 1, 'https://ror.org/03wkdj490 RGenix (United States)'),
(14064, 'https://ror.org/0429rc964', 'en', 1, 'https://ror.org/0429rc964 Shoshone-Bannock Tribes'),
(14065, 'https://ror.org/01bts4z81', 'no_lang_code', 1, 'https://ror.org/01bts4z81 Rhenovia (France)'),
(14066, 'https://ror.org/03z0rr544', 'en', 1, 'https://ror.org/03z0rr544 Sanford Health Foundation'),
(14067, 'https://ror.org/00t310794', 'en', 1, 'https://ror.org/00t310794 ShowMe Aquatics & Fitness'),
(14068, 'https://ror.org/00sfn8y78', 'en', 1, 'https://ror.org/00sfn8y78 Sanford Research'),
(14069, 'https://ror.org/02npzsh43', 'en', 1, 'https://ror.org/02npzsh43 Providence Health Foundation'),
(14070, 'https://ror.org/05s52c121', 'en', 1, 'https://ror.org/05s52c121 Santa Clara County Behavioral Health Services'),
(14071, 'https://ror.org/03grwn392', 'en', 1, 'https://ror.org/03grwn392 Santa Clara County Probation Department'),
(14072, 'https://ror.org/030qje202', 'en', 1, 'https://ror.org/030qje202 Peace Winds America'),
(14073, 'https://ror.org/01450df76', 'en', 1, 'https://ror.org/01450df76 Hospitales Shriners para NiƱos Shriners Hospitals for Children - Mexico'),
(14074, 'https://ror.org/01jc57498', 'en', 1, 'https://ror.org/01jc57498 Retina Associates'),
(14075, 'https://ror.org/004jkmn11', 'en', 1, 'https://ror.org/004jkmn11 Rhino Ark United States of America'),
(14076, 'https://ror.org/03nmmp510', 'no_lang_code', 1, 'https://ror.org/03nmmp510 Saoirse (United States)'),
(14077, 'https://ror.org/01h3r2827', 'en', 1, 'https://ror.org/01h3r2827 Rhode Island Health Center Association'),
(14078, 'https://ror.org/04wzsj946', 'en', 1, 'https://ror.org/04wzsj946 Pediatric Brain Tumor Consortium Foundation'),
(14079, 'https://ror.org/04zzepa29', 'en', 1, 'https://ror.org/04zzepa29 Shriners Hospitals for Children - Salt Lake City'),
(14080, 'https://ror.org/03vqqr080', 'no_lang_code', 1, 'https://ror.org/03vqqr080 Sapna NYC'),
(14081, 'https://ror.org/00z9sw951', 'en', 1, 'https://ror.org/00z9sw951 Shriners Hospitals for Children - Shreveport'),
(14082, 'https://ror.org/03epk7q46', 'en', 1, 'https://ror.org/03epk7q46 Storrs Library'),
(14083, 'https://ror.org/02ejjtg26', 'en', 1, 'https://ror.org/02ejjtg26 Pediatric Oncology Support Team'),
(14084, 'https://ror.org/03xyjk354', 'en', 1, 'https://ror.org/03xyjk354 Peer Assistance Services'),
(14085, 'https://ror.org/0472rwr52', 'en', 1, 'https://ror.org/0472rwr52 Cancer Navigator'),
(14086, 'https://ror.org/047cyjw83', 'en', 1, 'https://ror.org/047cyjw83 Pender County Schools'),
(14087, 'https://ror.org/00w824191', 'en', 1, 'https://ror.org/00w824191 Shriners Hospitals for Children - Springfield'),
(14088, 'https://ror.org/00bbtmy92', 'en', 1, 'https://ror.org/00bbtmy92 Penfold Patterson Research Institute'),
(14089, 'https://ror.org/02qvjf193', 'en', 1, 'https://ror.org/02qvjf193 Shriners Hospitals for Children - Twin Cities'),
(14090, 'https://ror.org/045t28w66', 'en', 1, 'https://ror.org/045t28w66 Pennsylvania Academy of Family Physicians and Foundation'),
(14091, 'https://ror.org/056jn9s46', 'en', 1, 'https://ror.org/056jn9s46 Sibley Memorial Hospital'),
(14092, 'https://ror.org/01z5ce602', 'en', 1, 'https://ror.org/01z5ce602 Penrose-St. Francis Health Services'),
(14093, 'https://ror.org/00fyp5993', 'en', 1, 'https://ror.org/00fyp5993 Essential Partners'),
(14094, 'https://ror.org/04h1txa22', 'en', 1, 'https://ror.org/04h1txa22 Pentacle'),
(14095, 'https://ror.org/00dpx2d03', 'en', 1, 'https://ror.org/00dpx2d03 Sarasota Memorial Health Care System'),
(14096, 'https://ror.org/02706zn47', 'en', 1, 'https://ror.org/02706zn47 Public Health Dayton & Montgomery County'),
(14097, 'https://ror.org/0132f0t75', 'en', 1, 'https://ror.org/0132f0t75 Sarem Cell Research Center'),
(14098, 'https://ror.org/04366aw25', 'en', 1, 'https://ror.org/04366aw25 People for Parks'),
(14099, 'https://ror.org/02cwppe53', 'no_lang_code', 1, 'https://ror.org/02cwppe53 Savara Pharmaceuticals (United States)'),
(14100, 'https://ror.org/01mwzyk87', 'en', 1, 'https://ror.org/01mwzyk87 People Living Through Cancer'),
(14101, 'https://ror.org/052r5gz16', 'en', 1, 'https://ror.org/052r5gz16 People''s Clinic of Morehead'),
(14102, 'https://ror.org/0231yda83', 'en', 1, 'https://ror.org/0231yda83 Save Ourselves Breast Cancer Organization'),
(14103, 'https://ror.org/00en6p903', 'en', 1, 'https://ror.org/00en6p903 Jackson Health System'),
(14104, 'https://ror.org/04dzh1r95', 'en', 1, 'https://ror.org/04dzh1r95 Public School Forum of North Carolina'),
(14105, 'https://ror.org/03gtrve45', 'en', 1, 'https://ror.org/03gtrve45 Society for the Investigation of Early Pregnancy'),
(14106, 'https://ror.org/05tf37670', 'en', 1, 'https://ror.org/05tf37670 The Public Theater'),
(14107, 'https://ror.org/042w3r845', 'en', 1, 'https://ror.org/042w3r845 Scarsdale Public Schools'),
(14108, 'https://ror.org/00tprjh98', 'en', 1, 'https://ror.org/00tprjh98 Scheer Memorial Adventist Hospital ą¤¶ą„€ą¤° ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² ą¤¬ą¤Øą„‡ą¤Ŗą¤¾'),
(14109, 'https://ror.org/03yf4bd98', 'en', 1, 'https://ror.org/03yf4bd98 Sierra Institute for Community and Environment'),
(14110, 'https://ror.org/04g42c417', 'en', 1, 'https://ror.org/04g42c417 Perinatal Treatment Services'),
(14111, 'https://ror.org/02gbcwx62', 'no_lang_code', 1, 'https://ror.org/02gbcwx62 Pulmatrix (United States)'),
(14112, 'https://ror.org/01yvmqs58', 'en', 1, 'https://ror.org/01yvmqs58 The Schiele Museum of Natural History'),
(14113, 'https://ror.org/02yyaze44', 'no_lang_code', 1, 'https://ror.org/02yyaze44 Perle Bioscience (United States)'),
(14114, 'https://ror.org/02yxgbz14', 'no_lang_code', 1, 'https://ror.org/02yxgbz14 Perscitus Biosciences (United States)'),
(14115, 'https://ror.org/01ktvk109', 'en', 1, 'https://ror.org/01ktvk109 Peru Public Library'),
(14116, 'https://ror.org/043e96c15', 'en', 1, 'https://ror.org/043e96c15 Push to Walk'),
(14117, 'https://ror.org/014d2cv50', 'en', 1, 'https://ror.org/014d2cv50 Research Institute for Social and Health Improvement Foundation ಋಷಿ ą²«ą³Œą²‚ą²”ą³†ą³•ą²¶ą²Øą³'),
(14118, 'https://ror.org/04419vp62', 'en', 1, 'https://ror.org/04419vp62 Putnam County HomeCare & Hospice Auxiliary'),
(14119, 'https://ror.org/00hx26749', 'no_lang_code', 1, 'https://ror.org/00hx26749 Q Therapeutics (United States)'),
(14120, 'https://ror.org/03pja1237', 'en', 1, 'https://ror.org/03pja1237 Yuba City Unified School District'),
(14121, 'https://ror.org/03nzb9h73', 'no_lang_code', 1, 'https://ror.org/03nzb9h73 Riverkeeper'),
(14122, 'https://ror.org/04k2gbm60', 'en', 1, 'https://ror.org/04k2gbm60 Riverkids Pediatric Home Health'),
(14123, 'https://ror.org/04wv9b696', 'no_lang_code', 1, 'https://ror.org/04wv9b696 PetsDx Veterinary Imaging (United States)'),
(14124, 'https://ror.org/04zg0fn89', 'en', 1, 'https://ror.org/04zg0fn89 Sierra Nevada Memorial Hospital Foundation'),
(14125, 'https://ror.org/031m09z27', 'en', 1, 'https://ror.org/031m09z27 Riverside Unified School District'),
(14126, 'https://ror.org/01sm75b57', 'en', 1, 'https://ror.org/01sm75b57 Schwab Rehabilitation Hospital'),
(14127, 'https://ror.org/02nxb9495', 'en', 1, 'https://ror.org/02nxb9495 Riverside San Bernardino County Indian Health'),
(14128, 'https://ror.org/01qv13213', 'en', 1, 'https://ror.org/01qv13213 World Science Festival'),
(14129, 'https://ror.org/01c7at224', 'en', 1, 'https://ror.org/01c7at224 Riverstone Senior Life Services'),
(14130, 'https://ror.org/03gpg5f33', 'no_lang_code', 1, 'https://ror.org/03gpg5f33 RJS Biologics (United States)'),
(14131, 'https://ror.org/01e0aj966', 'no_lang_code', 1, 'https://ror.org/01e0aj966 QRx Pharma (United States)'),
(14132, 'https://ror.org/042r22f45', 'en', 1, 'https://ror.org/042r22f45 Quadriplegics United Against Dependency'),
(14133, 'https://ror.org/03zdah694', 'no_lang_code', 1, 'https://ror.org/03zdah694 Qualiber (United States)'),
(14134, 'https://ror.org/029pa0p32', 'en', 1, 'https://ror.org/029pa0p32 Sierra Streams Institute'),
(14135, 'https://ror.org/01n5pkr65', 'no_lang_code', 1, 'https://ror.org/01n5pkr65 Qualidigm (United States)'),
(14136, 'https://ror.org/03apr9j04', 'en', 1, 'https://ror.org/03apr9j04 Signature Research Institute'),
(14137, 'https://ror.org/022syee28', 'en', 1, 'https://ror.org/022syee28 Ministry of Health of the Republic of Kazakhstan ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ Š”ŠµŠ½ŃŠ°ŃƒŠ»Ń‹Ņ› ŃŠ°Ņ›Ń‚Š°Ńƒ министрлігі'),
(14138, 'https://ror.org/036x58c57', 'no_lang_code', 1, 'https://ror.org/036x58c57 PharmatrophiX (United States)'),
(14139, 'https://ror.org/00zt7j992', 'en', 1, 'https://ror.org/00zt7j992 Quality Living'),
(14140, 'https://ror.org/05vytj560', 'en', 1, 'https://ror.org/05vytj560 Scioto County Juvenile Court'),
(14141, 'https://ror.org/05rczw006', 'en', 1, 'https://ror.org/05rczw006 Scotland County Schools'),
(14142, 'https://ror.org/01n3jtg54', 'en', 1, 'https://ror.org/01n3jtg54 Silicon Valley Independent Living Center'),
(14143, 'https://ror.org/05h8v3e12', 'en', 1, 'https://ror.org/05h8v3e12 Scotland Memorial Hospital'),
(14144, 'https://ror.org/00gdzr170', 'en', 1, 'https://ror.org/00gdzr170 Baylor Scott & White - Central Texas Foundation'),
(14145, 'https://ror.org/01dy8dt32', 'no_lang_code', 1, 'https://ror.org/01dy8dt32 Quantason (United States)'),
(14146, 'https://ror.org/02wh1sf51', 'en', 1, 'https://ror.org/02wh1sf51 Roanoke Rapids Graded School District'),
(14147, 'https://ror.org/01bx41534', 'no_lang_code', 1, 'https://ror.org/01bx41534 Quantum Applied Science and Research (United States)'),
(14148, 'https://ror.org/033z0vf69', 'en', 1, 'https://ror.org/033z0vf69 Roanoke River Valley Education Consortium'),
(14149, 'https://ror.org/054xyc945', 'no_lang_code', 1, 'https://ror.org/054xyc945 Pharmaxis (Australia)'),
(14150, 'https://ror.org/019504w35', 'en', 1, 'https://ror.org/019504w35 Quantum Leap Healthcare Collaborative'),
(14151, 'https://ror.org/01typar55', 'en', 1, 'https://ror.org/01typar55 Screen'),
(14152, 'https://ror.org/03wbjgx32', 'en', 1, 'https://ror.org/03wbjgx32 Robert Louis Stevenson School'),
(14153, 'https://ror.org/035v7sk27', 'no_lang_code', 1, 'https://ror.org/035v7sk27 Pharminox (United Kingdom)'),
(14154, 'https://ror.org/00wqkgs27', 'en', 1, 'https://ror.org/00wqkgs27 Phelan-McDermid Syndrome Foundation'),
(14155, 'https://ror.org/03drnt809', 'no_lang_code', 1, 'https://ror.org/03drnt809 Scynexis (United States)'),
(14156, 'https://ror.org/050cc0966', 'en', 1, 'https://ror.org/050cc0966 Sanford Children''s Specialty Clinic'),
(14157, 'https://ror.org/015gv1k37', 'en', 1, 'https://ror.org/015gv1k37 Post Acute Partners'),
(14158, 'https://ror.org/030x0x547', 'no_lang_code', 1, 'https://ror.org/030x0x547 Sea Lane Biotechnologies (United States)'),
(14159, 'https://ror.org/04gz57z30', 'en', 1, 'https://ror.org/04gz57z30 Seabrook'),
(14160, 'https://ror.org/0239hhd94', 'en', 1, 'https://ror.org/0239hhd94 Quatela Center for Plastic Surgery'),
(14161, 'https://ror.org/05b8tgb13', 'en', 1, 'https://ror.org/05b8tgb13 Robin Hood Foundation'),
(14162, 'https://ror.org/00d08ne02', 'en', 1, 'https://ror.org/00d08ne02 Good Shepherd Penn Partners'),
(14163, 'https://ror.org/05jm4z849', 'en', 1, 'https://ror.org/05jm4z849 Pacific Breast Pathology'),
(14164, 'https://ror.org/02e7m0v19', 'en', 1, 'https://ror.org/02e7m0v19 Roc Institute for Arts and Sciences'),
(14165, 'https://ror.org/03jq88n71', 'en', 1, 'https://ror.org/03jq88n71 Seattle Cancer Care Alliance'),
(14166, 'https://ror.org/03k3w2a28', 'en', 1, 'https://ror.org/03k3w2a28 Philip Rogers Elementary School'),
(14167, 'https://ror.org/050rdvn58', 'en', 1, 'https://ror.org/050rdvn58 Philippine Heart Center'),
(14168, 'https://ror.org/02krpaf84', 'en', 1, 'https://ror.org/02krpaf84 Second Harvest Food Bank'),
(14169, 'https://ror.org/03wqd2h57', 'en', 1, 'https://ror.org/03wqd2h57 Phillips Graduate Institute'),
(14170, 'https://ror.org/034546p91', 'en', 1, 'https://ror.org/034546p91 Rochester City School District'),
(14171, 'https://ror.org/02dhj0p43', 'en', 1, 'https://ror.org/02dhj0p43 Sinha Institute of Medical Science & Technology'),
(14172, 'https://ror.org/04axpdp25', 'no_lang_code', 1, 'https://ror.org/04axpdp25 Sefacor (United States)'),
(14173, 'https://ror.org/03g0jst60', 'no_lang_code', 1, 'https://ror.org/03g0jst60 Selecta Biosciences (United States)'),
(14174, 'https://ror.org/02nmc8040', 'en', 1, 'https://ror.org/02nmc8040 Rochester Rehabilitation Center'),
(14175, 'https://ror.org/034czvt81', 'en', 1, 'https://ror.org/034czvt81 Rockefeller Philanthropy Advisors'),
(14176, 'https://ror.org/045q3sv53', 'no_lang_code', 1, 'https://ror.org/045q3sv53 Seneb BioSciences (United States)'),
(14177, 'https://ror.org/036pnqr73', 'en', 1, 'https://ror.org/036pnqr73 Sinnissippi Centers'),
(14178, 'https://ror.org/02d21rw53', 'en', 1, 'https://ror.org/02d21rw53 Rockingham County Schools'),
(14179, 'https://ror.org/05g4knm43', 'en', 1, 'https://ror.org/05g4knm43 Phoenix Indian Medical Center'),
(14180, 'https://ror.org/04tgdfs98', 'en', 1, 'https://ror.org/04tgdfs98 Sense of Security'),
(14181, 'https://ror.org/00ptywt76', 'en', 1, 'https://ror.org/00ptywt76 Queer African Youth Networking Center'),
(14182, 'https://ror.org/05n6ehk94', 'no_lang_code', 1, 'https://ror.org/05n6ehk94 SipNose (Israel)'),
(14183, 'https://ror.org/0591r7s41', 'en', 1, 'https://ror.org/0591r7s41 Sensory Processing Disorder Foundation'),
(14184, 'https://ror.org/02fnbv092', 'en', 1, 'https://ror.org/02fnbv092 Quest for Life Foundation'),
(14185, 'https://ror.org/05ja6kg22', 'en', 1, 'https://ror.org/05ja6kg22 Quietmind Foundation'),
(14186, 'https://ror.org/00j6whn75', 'en', 1, 'https://ror.org/00j6whn75 Rocky Boy Health Board'),
(14187, 'https://ror.org/04t059p48', 'en', 1, 'https://ror.org/04t059p48 Quinn Community Outreach Corporation'),
(14188, 'https://ror.org/02bm7dx75', 'en', 1, 'https://ror.org/02bm7dx75 SeriousFun Children''s Network'),
(14189, 'https://ror.org/001a4h086', 'no_lang_code', 1, 'https://ror.org/001a4h086 Serpin Pharma (United States)'),
(14190, 'https://ror.org/05ye51q48', 'no_lang_code', 1, 'https://ror.org/05ye51q48 Phylogeny (United States)'),
(14191, 'https://ror.org/03fkh3x71', 'en', 1, 'https://ror.org/03fkh3x71 Roger C. Peace Rehabilitation Hospital'),
(14192, 'https://ror.org/01qbkdg81', 'en', 1, 'https://ror.org/01qbkdg81 Rogerson Communities'),
(14193, 'https://ror.org/00n8yh935', 'en', 1, 'https://ror.org/00n8yh935 Serve Outdoors​ Texas Hill Country Chapter'),
(14194, 'https://ror.org/05x2sc041', 'en', 1, 'https://ror.org/05x2sc041 Project Walk-Austin'),
(14195, 'https://ror.org/02y220324', 'en', 1, 'https://ror.org/02y220324 Setauket Fire Department'),
(14196, 'https://ror.org/01053yy22', 'en', 1, 'https://ror.org/01053yy22 Seven Generations Ahead'),
(14197, 'https://ror.org/04aemx979', 'en', 1, 'https://ror.org/04aemx979 Roots Community Health Center'),
(14198, 'https://ror.org/003rxtd24', 'en', 1, 'https://ror.org/003rxtd24 Ronald McDonald House Charities'),
(14199, 'https://ror.org/027hwee24', 'en', 1, 'https://ror.org/027hwee24 Seward County Community College'),
(14200, 'https://ror.org/02v0zfv65', 'en', 1, 'https://ror.org/02v0zfv65 Sixteenth Street Community Health Center'),
(14201, 'https://ror.org/02ff7k505', 'en', 1, 'https://ror.org/02ff7k505 R.E. Kavetsky Institute of Experimental Pathology, Oncology and Radiobiology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠµŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Ń— патології, онкології і раГіобіології ім. Š .Š„. ŠšŠ°Š²ŠµŃ†ŃŒŠŗŠ¾Š³Š¾'),
(14202, 'https://ror.org/02pyj0w80', 'en', 1, 'https://ror.org/02pyj0w80 Room to Read'),
(14203, 'https://ror.org/031twcj28', 'en', 1, 'https://ror.org/031twcj28 Providence Pediatric Pulmonology & Cystic Fibrosis'),
(14204, 'https://ror.org/0452enn61', 'no_lang_code', 1, 'https://ror.org/0452enn61 Sri Ganapathi Sachchidananda Vagdevi Center'),
(14205, 'https://ror.org/030wwwa97', 'en', 1, 'https://ror.org/030wwwa97 Sail To Prevail'),
(14206, 'https://ror.org/03xsa3q34', 'en', 1, 'https://ror.org/03xsa3q34 Roper St. Francis Foundation'),
(14207, 'https://ror.org/0124zm423', 'en', 1, 'https://ror.org/0124zm423 Piers Park Sailing Center'),
(14208, 'https://ror.org/03kvbr153', 'en', 1, 'https://ror.org/03kvbr153 UF Health Shands Hospital'),
(14209, 'https://ror.org/039479p46', 'en', 1, 'https://ror.org/039479p46 Roper St. Francis Healthcare'),
(14210, 'https://ror.org/058ze9c42', 'en', 1, 'https://ror.org/058ze9c42 RadioIsotope Therapy of America Foundation'),
(14211, 'https://ror.org/049wsgv73', 'en', 1, 'https://ror.org/049wsgv73 UF Health Shands Rehab Hospital'),
(14212, 'https://ror.org/0338fxs55', 'en', 1, 'https://ror.org/0338fxs55 Skin Cancer Foundation'),
(14213, 'https://ror.org/034kfx415', 'en', 1, 'https://ror.org/034kfx415 Sky Tavern Junior Ski Program'),
(14214, 'https://ror.org/033spbm30', 'en', 1, 'https://ror.org/033spbm30 St. Joseph’s Candler Hospital'),
(14215, 'https://ror.org/04w00xm72', 'en', 1, 'https://ror.org/04w00xm72 Shanghai Municipal Center For Disease Control Prevention äøŠęµ·åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(14216, 'https://ror.org/00eq3r432', 'en', 1, 'https://ror.org/00eq3r432 Skyland Care Center'),
(14217, 'https://ror.org/029gpgj23', 'en', 1, 'https://ror.org/029gpgj23 Radiology Associates'),
(14218, 'https://ror.org/04wn64r03', 'en', 1, 'https://ror.org/04wn64r03 Slavic Assistance Center'),
(14219, 'https://ror.org/0520p3z27', 'en', 1, 'https://ror.org/0520p3z27 Rainbow Hospice and Palliative Care'),
(14220, 'https://ror.org/053q7dc62', 'en', 1, 'https://ror.org/053q7dc62 Shanta Foundation'),
(14221, 'https://ror.org/00mh8gk95', 'en', 1, 'https://ror.org/00mh8gk95 Shanti Project'),
(14222, 'https://ror.org/0314qpx15', 'en', 1, 'https://ror.org/0314qpx15 Share and Care Foundation'),
(14223, 'https://ror.org/05cvd4x54', 'en', 1, 'https://ror.org/05cvd4x54 SHARE'),
(14224, 'https://ror.org/04eqdqx09', 'no_lang_code', 1, 'https://ror.org/04eqdqx09 Smart Monitor (United States)'),
(14225, 'https://ror.org/037p72q74', 'en', 1, 'https://ror.org/037p72q74 Raise Hope Foundation'),
(14226, 'https://ror.org/05ba2cw74', 'en', 1, 'https://ror.org/05ba2cw74 Shared Adventures'),
(14227, 'https://ror.org/026a5wm88', 'en', 1, 'https://ror.org/026a5wm88 Public Schools of Robeson County'),
(14228, 'https://ror.org/02bbana41', 'en', 1, 'https://ror.org/02bbana41 Sharp HealthCare Foundation'),
(14229, 'https://ror.org/04k49td77', 'en', 1, 'https://ror.org/04k49td77 Shaw Regional Cancer Center'),
(14230, 'https://ror.org/0095r2297', 'en', 1, 'https://ror.org/0095r2297 Shawnee State University'),
(14231, 'https://ror.org/059eesf83', 'en', 1, 'https://ror.org/059eesf83 St. Laurent Institute'),
(14232, 'https://ror.org/03693et41', 'en', 1, 'https://ror.org/03693et41 Sheridan Technical College'),
(14233, 'https://ror.org/03gt1hw33', 'en', 1, 'https://ror.org/03gt1hw33 St. Mary’s Healthcare System for Children'),
(14234, 'https://ror.org/01bqy5z80', 'no_lang_code', 1, 'https://ror.org/01bqy5z80 Sorrento Therapeutics (United States)'),
(14235, 'https://ror.org/00x94td80', 'en', 1, 'https://ror.org/00x94td80 Smile Train'),
(14236, 'https://ror.org/02gncxw24', 'en', 1, 'https://ror.org/02gncxw24 Smith Center for Healing and the Arts'),
(14237, 'https://ror.org/027fvmc90', 'no_lang_code', 1, 'https://ror.org/027fvmc90 Rubicon Biotechnology (United States)'),
(14238, 'https://ror.org/04y80fq57', 'en', 1, 'https://ror.org/04y80fq57 St. Margaret Mary School'),
(14239, 'https://ror.org/058936h36', 'en', 1, 'https://ror.org/058936h36 SHIELDS for Families'),
(14240, 'https://ror.org/028xv5p07', 'en', 1, 'https://ror.org/028xv5p07 Raising Voices'),
(14241, 'https://ror.org/018pbhh11', 'en', 1, 'https://ror.org/018pbhh11 Rubin Museum of Art'),
(14242, 'https://ror.org/01s50yf06', 'en', 1, 'https://ror.org/01s50yf06 Society for Biomedical Diabetes Research'),
(14243, 'https://ror.org/02wgwxy44', 'en', 1, 'https://ror.org/02wgwxy44 Rajiv Poor People Welfare Society'),
(14244, 'https://ror.org/01tzmg414', 'en', 1, 'https://ror.org/01tzmg414 Society for Mucosal Immunology'),
(14245, 'https://ror.org/02ke8g602', 'en', 1, 'https://ror.org/02ke8g602 Ralph Lauren Center for Cancer Care and Prevention'),
(14246, 'https://ror.org/009dxxa13', 'no_lang_code', 1, 'https://ror.org/009dxxa13 RaNA Therapeutics (United States)'),
(14247, 'https://ror.org/04pkfgh33', 'no_lang_code', 1, 'https://ror.org/04pkfgh33 Tecnicas Cientificas Para Laboratorio (Spain)'),
(14248, 'https://ror.org/0114vcr39', 'no_lang_code', 1, 'https://ror.org/0114vcr39 Rancho BioSciences (United States)'),
(14249, 'https://ror.org/04q0te651', 'en', 1, 'https://ror.org/04q0te651 Society for Research on Nicotine and Tobacco'),
(14250, 'https://ror.org/00qvvtk35', 'en', 1, 'https://ror.org/00qvvtk35 St. Mary’s Health Care System'),
(14251, 'https://ror.org/05gxt5b76', 'en', 1, 'https://ror.org/05gxt5b76 Telluride Adaptive Sports Program'),
(14252, 'https://ror.org/04gafx689', 'en', 1, 'https://ror.org/04gafx689 Society for the Preservation of Long Island Antiquities'),
(14253, 'https://ror.org/04s7a0g31', 'en', 1, 'https://ror.org/04s7a0g31 Rancho Research Institute'),
(14254, 'https://ror.org/03277sm65', 'en', 1, 'https://ror.org/03277sm65 Society of Surgical Oncology'),
(14255, 'https://ror.org/05vdt4g65', 'no_lang_code', 1, 'https://ror.org/05vdt4g65 TeloVISION (United States)'),
(14256, 'https://ror.org/038s1ax16', 'en', 1, 'https://ror.org/038s1ax16 Temple College'),
(14257, 'https://ror.org/02ztc9f43', 'no_lang_code', 1, 'https://ror.org/02ztc9f43 Rare Disease Therapeutics (United States)'),
(14258, 'https://ror.org/058skdy22', 'en', 1, 'https://ror.org/058skdy22 Saint Paul’s Hospital Iloilo'),
(14259, 'https://ror.org/04zp3vy09', 'en', 1, 'https://ror.org/04zp3vy09 Temple Missionary Baptist Church'),
(14260, 'https://ror.org/05kre7h31', 'en', 1, 'https://ror.org/05kre7h31 St. Vincent''s HealthCare'),
(14261, 'https://ror.org/00yv40k20', 'no_lang_code', 1, 'https://ror.org/00yv40k20 Rare Partners (Italy)'),
(14262, 'https://ror.org/045wp1309', 'en', 1, 'https://ror.org/045wp1309 St. Vincent Hospital'),
(14263, 'https://ror.org/002zrf773', 'no_lang_code', 1, 'https://ror.org/002zrf773 Qualcomm (United States)'),
(14264, 'https://ror.org/05262hj55', 'en', 1, 'https://ror.org/05262hj55 RCAP Solutions'),
(14265, 'https://ror.org/03qw7se63', 'en', 1, 'https://ror.org/03qw7se63 Soledad Community Health Care District Foundation'),
(14266, 'https://ror.org/05fwz3716', 'en', 1, 'https://ror.org/05fwz3716 Soldiers'' Angels'),
(14267, 'https://ror.org/02tr0ps12', 'en', 1, 'https://ror.org/02tr0ps12 CHI St. Vincent'),
(14268, 'https://ror.org/02k0pxf68', 'en', 1, 'https://ror.org/02k0pxf68 Sacramento Asian Pacific Chamber of Commerce'),
(14269, 'https://ror.org/002wydw38', 'en', 1, 'https://ror.org/002wydw38 St. Luke''s International Hospital č–č·ÆåŠ å›½éš›ē—…é™¢'),
(14270, 'https://ror.org/01y9q0786', 'en', 1, 'https://ror.org/01y9q0786 Sacramento City Unified School District'),
(14271, 'https://ror.org/01wt37816', 'en', 1, 'https://ror.org/01wt37816 Foundation for Children with Cancer'),
(14272, 'https://ror.org/03akswg93', 'en', 1, 'https://ror.org/03akswg93 Safe Horizon'),
(14273, 'https://ror.org/013jm0v29', 'en', 1, 'https://ror.org/013jm0v29 Solutions of Artificial Intelligence Applications'),
(14274, 'https://ror.org/02xnhzs58', 'en', 1, 'https://ror.org/02xnhzs58 Solving Kids'' Cancer'),
(14275, 'https://ror.org/01q219r58', 'en', 1, 'https://ror.org/01q219r58 Tennessee Justice Center'),
(14276, 'https://ror.org/00dt2yt23', 'en', 1, 'https://ror.org/00dt2yt23 Reading Partners'),
(14277, 'https://ror.org/02mt4ht57', 'en', 1, 'https://ror.org/02mt4ht57 Saga Women''s Junior College ä½č³€å„³å­ēŸ­ęœŸå¤§å­¦'),
(14278, 'https://ror.org/05rdxva62', 'no_lang_code', 1, 'https://ror.org/05rdxva62 Terapio (United States)'),
(14279, 'https://ror.org/002eajg41', 'no_lang_code', 1, 'https://ror.org/002eajg41 Real Time Tomography (United States)'),
(14280, 'https://ror.org/00zk5d448', 'en', 1, 'https://ror.org/00zk5d448 Testaverde Fund for Spinal Cord Injury'),
(14281, 'https://ror.org/01kah5w88', 'en', 1, 'https://ror.org/01kah5w88 Realistic Education in Action Coalition to Foster Health'),
(14282, 'https://ror.org/02ydpvv49', 'en', 1, 'https://ror.org/02ydpvv49 Flint and Saginaw Odyssey House'),
(14283, 'https://ror.org/03ms86h56', 'en', 1, 'https://ror.org/03ms86h56 Tetra Society of North America'),
(14284, 'https://ror.org/00a8x0890', 'no_lang_code', 1, 'https://ror.org/00a8x0890 TetraLogic Pharmaceuticals (United States)'),
(14285, 'https://ror.org/04sp71t37', 'en', 1, 'https://ror.org/04sp71t37 Texans Care for Children'),
(14286, 'https://ror.org/033ns4d21', 'en', 1, 'https://ror.org/033ns4d21 Stairstep Foundation'),
(14287, 'https://ror.org/04d87y574', 'en', 1, 'https://ror.org/04d87y574 Sydney Children’s Hospitals Network'),
(14288, 'https://ror.org/05fzt6j85', 'en', 1, 'https://ror.org/05fzt6j85 Saint Anne''s Hospital'),
(14289, 'https://ror.org/01yf9rd65', 'en', 1, 'https://ror.org/01yf9rd65 Texas Health and Human Services Commission'),
(14290, 'https://ror.org/055zm4v44', 'en', 1, 'https://ror.org/055zm4v44 La Fondation Stan Cassidy Stan Cassidy Foundation'),
(14291, 'https://ror.org/05g5ny036', 'en', 1, 'https://ror.org/05g5ny036 Sonke Gender Justice'),
(14292, 'https://ror.org/01jr3js48', 'en', 1, 'https://ror.org/01jr3js48 Texas Partnership for End-of-Life Care'),
(14293, 'https://ror.org/03s1f5p42', 'en', 1, 'https://ror.org/03s1f5p42 Thohoyandou Victim Empowerment Programme'),
(14294, 'https://ror.org/01kkwkn88', 'en', 1, 'https://ror.org/01kkwkn88 Thai Health And Information Services'),
(14295, 'https://ror.org/03n027779', 'en', 1, 'https://ror.org/03n027779 Thyroid Head and Neck Cancer Foundation'),
(14296, 'https://ror.org/01dmpb598', 'en', 1, 'https://ror.org/01dmpb598 Entertainment Industry Foundation'),
(14297, 'https://ror.org/01c1b9s34', 'en', 1, 'https://ror.org/01c1b9s34 ABCD'),
(14298, 'https://ror.org/01vcdak53', 'en', 1, 'https://ror.org/01vcdak53 Ability Center of Greater Toledo'),
(14299, 'https://ror.org/000akah41', 'en', 1, 'https://ror.org/000akah41 Sound Choice Pharmaceutical Institute'),
(14300, 'https://ror.org/04pd0d926', 'no_lang_code', 1, 'https://ror.org/04pd0d926 TumorEnd (United States)'),
(14301, 'https://ror.org/04cg6c004', 'en', 1, 'https://ror.org/04cg6c004 Academic College of Tel Aviv-Yafo'),
(14302, 'https://ror.org/046nm0a12', 'en', 1, 'https://ror.org/046nm0a12 Adaptive Sports Foundation'),
(14303, 'https://ror.org/03de9mq04', 'en', 1, 'https://ror.org/03de9mq04 Tuomey Healthcare System'),
(14304, 'https://ror.org/02nn2g073', 'en', 1, 'https://ror.org/02nn2g073 Aesthetic Surgery Center'),
(14305, 'https://ror.org/037psbw62', 'en', 1, 'https://ror.org/037psbw62 Stanley Park'),
(14306, 'https://ror.org/01dz8hz75', 'en', 1, 'https://ror.org/01dz8hz75 American Geriatrics Society'),
(14307, 'https://ror.org/00mwp5989', 'en', 1, 'https://ror.org/00mwp5989 Amyotrophic Lateral Sclerosis Association'),
(14308, 'https://ror.org/01jq6p072', 'en', 1, 'https://ror.org/01jq6p072 Turnstone'),
(14309, 'https://ror.org/026zz8m94', 'en', 1, 'https://ror.org/026zz8m94 Angeles Clinic Foundation'),
(14310, 'https://ror.org/00ww7tv14', 'no_lang_code', 1, 'https://ror.org/00ww7tv14 Angiogenesis Foundation'),
(14311, 'https://ror.org/018dbr456', 'en', 1, 'https://ror.org/018dbr456 STAR Council'),
(14312, 'https://ror.org/03fkvkp40', 'en', 1, 'https://ror.org/03fkvkp40 Star Neuroscience Foundation'),
(14313, 'https://ror.org/04pwzxj71', 'no_lang_code', 1, 'https://ror.org/04pwzxj71 TVAX Biomedical (United States)'),
(14314, 'https://ror.org/054h7rn92', 'en', 1, 'https://ror.org/054h7rn92 Arc of High Point'),
(14315, 'https://ror.org/05kzy7y09', 'en', 1, 'https://ror.org/05kzy7y09 Arthritis Research Institute of America'),
(14316, 'https://ror.org/03dxy5y92', 'en', 1, 'https://ror.org/03dxy5y92 The Arthroplasty Patient Foundation'),
(14317, 'https://ror.org/02411tk93', 'en', 1, 'https://ror.org/02411tk93 Women’s Fund Asia'),
(14318, 'https://ror.org/0377xq834', 'en', 1, 'https://ror.org/0377xq834 Association of Black Women Physicians'),
(14319, 'https://ror.org/03e3kts03', 'en', 1, 'https://ror.org/03e3kts03 South Australian Health and Medical Research Institute'),
(14320, 'https://ror.org/03bcvxv20', 'en', 1, 'https://ror.org/03bcvxv20 Sisters of Providence Health System'),
(14321, 'https://ror.org/04bkhy554', 'en', 1, 'https://ror.org/04bkhy554 Changzhou No.2 People''s Hospital åøøå·žåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(14322, 'https://ror.org/02vjprr88', 'en', 1, 'https://ror.org/02vjprr88 Bachmann-Strauss Dystonia & Parkinson Foundation'),
(14323, 'https://ror.org/04v3cx114', 'en', 1, 'https://ror.org/04v3cx114 The Beautiful Gate'),
(14324, 'https://ror.org/018vpay05', 'en', 1, 'https://ror.org/018vpay05 South Carolina Cancer Alliance'),
(14325, 'https://ror.org/02cs65r11', 'en', 1, 'https://ror.org/02cs65r11 State Building & Construction Trades Council of California'),
(14326, 'https://ror.org/02eyp1631', 'en', 1, 'https://ror.org/02eyp1631 South Carolina Department of Corrections'),
(14327, 'https://ror.org/04q6gmg31', 'en', 1, 'https://ror.org/04q6gmg31 South Central Community Services'),
(14328, 'https://ror.org/01y461z74', 'en', 1, 'https://ror.org/01y461z74 Bone Marrow Foundation'),
(14329, 'https://ror.org/04y419f85', 'tr', 1, 'https://ror.org/04y419f85 Moleküler Biyoloji Derneği'),
(14330, 'https://ror.org/01fw88k98', 'en', 1, 'https://ror.org/01fw88k98 State of Connecticut Judicial Branch'),
(14331, 'https://ror.org/01j3ge177', 'en', 1, 'https://ror.org/01j3ge177 Christus Santa Rosa Health System'),
(14332, 'https://ror.org/03q7dzc06', 'en', 1, 'https://ror.org/03q7dzc06 Breakfast Club'),
(14333, 'https://ror.org/02ydpt711', 'en', 1, 'https://ror.org/02ydpt711 John D Bray MD'),
(14334, 'https://ror.org/03z2p9q19', 'en', 1, 'https://ror.org/03z2p9q19 Rhode Island Cancer Council'),
(14335, 'https://ror.org/04cgqw370', 'en', 1, 'https://ror.org/04cgqw370 Brearley School'),
(14336, 'https://ror.org/01vavtp12', 'en', 1, 'https://ror.org/01vavtp12 South Central Family Health Center'),
(14337, 'https://ror.org/05hwnvk36', 'no_lang_code', 1, 'https://ror.org/05hwnvk36 The Bridge (United States)'),
(14338, 'https://ror.org/023tdcb12', 'en', 1, 'https://ror.org/023tdcb12 Brod Group'),
(14339, 'https://ror.org/011mp8w48', 'en', 1, 'https://ror.org/011mp8w48 Bronx Health Link'),
(14340, 'https://ror.org/00bk31p84', 'en', 1, 'https://ror.org/00bk31p84 Blessing Hospital'),
(14341, 'https://ror.org/00x7hks54', 'en', 1, 'https://ror.org/00x7hks54 The Care Communities'),
(14342, 'https://ror.org/02rj64652', 'en', 1, 'https://ror.org/02rj64652 Heroes Foundation'),
(14343, 'https://ror.org/016t7ff42', 'en', 1, 'https://ror.org/016t7ff42 United States Power Soccer Association'),
(14344, 'https://ror.org/03694tx76', 'en', 1, 'https://ror.org/03694tx76 South Elgin FUNdation'),
(14345, 'https://ror.org/04jna0a58', 'en', 1, 'https://ror.org/04jna0a58 Center for Discovery'),
(14346, 'https://ror.org/00dd5gy70', 'en', 1, 'https://ror.org/00dd5gy70 Family Centre for Health and Wellness'),
(14347, 'https://ror.org/0263dyv44', 'en', 1, 'https://ror.org/0263dyv44 Kids Cancer Center'),
(14348, 'https://ror.org/058er4930', 'en', 1, 'https://ror.org/058er4930 Center for Health Justice'),
(14349, 'https://ror.org/04g6ht049', 'en', 1, 'https://ror.org/04g6ht049 South Florida Veterans Affairs Foundation for Research and Education'),
(14350, 'https://ror.org/002qqr512', 'en', 1, 'https://ror.org/002qqr512 South Puget Intertribal Planning Agency'),
(14351, 'https://ror.org/05cghfn11', 'en', 1, 'https://ror.org/05cghfn11 The Center for Mind-Body Medicine'),
(14352, 'https://ror.org/02y4rar07', 'en', 1, 'https://ror.org/02y4rar07 The Center for Pranic Healing'),
(14353, 'https://ror.org/011n1b487', 'en', 1, 'https://ror.org/011n1b487 The Center for the Biology of Chronic Disease'),
(14354, 'https://ror.org/05ry7ey09', 'en', 1, 'https://ror.org/05ry7ey09 Chanda Plan Foundation'),
(14355, 'https://ror.org/020yh1f96', 'en', 1, 'https://ror.org/020yh1f96 Ohio State University Hospital'),
(14356, 'https://ror.org/00c66jq56', 'en', 1, 'https://ror.org/00c66jq56 South Shore Hospital');
INSERT INTO `rors` VALUES
(14357, 'https://ror.org/0058y2432', 'en', 1, 'https://ror.org/0058y2432 Chester County Hospital'),
(14358, 'https://ror.org/04qh7gr18', 'en', 1, 'https://ror.org/04qh7gr18 South Shore YMCA'),
(14359, 'https://ror.org/05223j896', 'en', 1, 'https://ror.org/05223j896 Daniel Drake Center'),
(14360, 'https://ror.org/02z57jm04', 'en', 1, 'https://ror.org/02z57jm04 South Texas Institutes of Health'),
(14361, 'https://ror.org/03yhkgk91', 'en', 1, 'https://ror.org/03yhkgk91 South West Special Recreation Association'),
(14362, 'https://ror.org/03fsr8g81', 'en', 1, 'https://ror.org/03fsr8g81 Children’s Cause for Cancer Advocacy'),
(14363, 'https://ror.org/05mbb3v54', 'en', 1, 'https://ror.org/05mbb3v54 Children''s Home of Wheeling'),
(14364, 'https://ror.org/0485axj58', 'en', 1, 'https://ror.org/0485axj58 University Hospital Southampton NHS Foundation Trust'),
(14365, 'https://ror.org/031sed648', 'no_lang_code', 1, 'https://ror.org/031sed648 Stavros'),
(14366, 'https://ror.org/03kz78w44', 'en', 1, 'https://ror.org/03kz78w44 Uganda Health and Science Press Association'),
(14367, 'https://ror.org/05srg8k79', 'en', 1, 'https://ror.org/05srg8k79 Uganda Protestant Medical Bureau'),
(14368, 'https://ror.org/02ex8ca13', 'en', 1, 'https://ror.org/02ex8ca13 Southbury Clinic'),
(14369, 'https://ror.org/011bvxa88', 'en', 1, 'https://ror.org/011bvxa88 Heather Hill Care Communities'),
(14370, 'https://ror.org/0416ckt74', 'en', 1, 'https://ror.org/0416ckt74 Cancer Connection'),
(14371, 'https://ror.org/05m9m0021', 'en', 1, 'https://ror.org/05m9m0021 United Jewish Appeal Federation of New York'),
(14372, 'https://ror.org/04v76c606', 'en', 1, 'https://ror.org/04v76c606 Community Health Center Association of Mississippi'),
(14373, 'https://ror.org/012ea8q16', 'en', 1, 'https://ror.org/012ea8q16 Southeastern Community College - North Carolina'),
(14374, 'https://ror.org/051bvnz41', 'en', 1, 'https://ror.org/051bvnz41 Children''s Treehouse Foundation'),
(14375, 'https://ror.org/011gg5m49', 'en', 1, 'https://ror.org/011gg5m49 Ulman Cancer Fund for Young Adults'),
(14376, 'https://ror.org/02t5a9j90', 'no_lang_code', 1, 'https://ror.org/02t5a9j90 Ultradian Diagnostics (United States)'),
(14377, 'https://ror.org/003kgv736', 'en', 1, 'https://ror.org/003kgv736 University of the West Indies'),
(14378, 'https://ror.org/03esv2r68', 'no_lang_code', 1, 'https://ror.org/03esv2r68 Stealth Biosciences (United States)'),
(14379, 'https://ror.org/02v5tks88', 'no_lang_code', 1, 'https://ror.org/02v5tks88 Ultrawave Labs (United States)'),
(14380, 'https://ror.org/05hj3r720', 'en', 1, 'https://ror.org/05hj3r720 Clearity Foundation'),
(14381, 'https://ror.org/03wk52r49', 'no_lang_code', 1, 'https://ror.org/03wk52r49 Stella Therapeutics (United States)'),
(14382, 'https://ror.org/01yk1j737', 'en', 1, 'https://ror.org/01yk1j737 Cody Unser First Step Foundation'),
(14383, 'https://ror.org/0574rre95', 'en', 1, 'https://ror.org/0574rre95 Umpqua Community College'),
(14384, 'https://ror.org/04r49a107', 'en', 1, 'https://ror.org/04r49a107 Southern Illinois Healthcare'),
(14385, 'https://ror.org/02qd5rn34', 'en', 1, 'https://ror.org/02qd5rn34 Coexist Initiative'),
(14386, 'https://ror.org/00kmq0020', 'en', 1, 'https://ror.org/00kmq0020 Southern Maine Medical Center'),
(14387, 'https://ror.org/031npn793', 'en', 1, 'https://ror.org/031npn793 ComedyCures Foundation'),
(14388, 'https://ror.org/049kzbj92', 'en', 1, 'https://ror.org/049kzbj92 Commonwealth Fund'),
(14389, 'https://ror.org/01vb24668', 'en', 1, 'https://ror.org/01vb24668 Southern Poverty Law Center'),
(14390, 'https://ror.org/05691sn15', 'en', 1, 'https://ror.org/05691sn15 UN Women’s Office for India, Bhutan, Maldives and Sri Lanka'),
(14391, 'https://ror.org/00hxxb066', 'en', 1, 'https://ror.org/00hxxb066 Community Chest of Leonia'),
(14392, 'https://ror.org/02k1jxv55', 'en', 1, 'https://ror.org/02k1jxv55 Southern Rural Black Women''s Initiative'),
(14393, 'https://ror.org/05gxeae76', 'en', 1, 'https://ror.org/05gxeae76 Connecticut Center for Primary Care'),
(14394, 'https://ror.org/029y62y23', 'en', 1, 'https://ror.org/029y62y23 URSA Institute'),
(14395, 'https://ror.org/042h3a043', 'en', 1, 'https://ror.org/042h3a043 Southern Vermont College'),
(14396, 'https://ror.org/00ca0jp83', 'en', 1, 'https://ror.org/00ca0jp83 Uncas Health District'),
(14397, 'https://ror.org/04gbmxr55', 'en', 1, 'https://ror.org/04gbmxr55 Southerners on New Ground'),
(14398, 'https://ror.org/00p7gy719', 'en', 1, 'https://ror.org/00p7gy719 Southland Hispanic Leadership Council'),
(14399, 'https://ror.org/05btye950', 'en', 1, 'https://ror.org/05btye950 Southwest Autism Research & Resource Center'),
(14400, 'https://ror.org/0213abd61', 'no_lang_code', 1, 'https://ror.org/0213abd61 Velocity BioGroup (United States)'),
(14401, 'https://ror.org/02mhagg83', 'en', 1, 'https://ror.org/02mhagg83 Yaddo'),
(14402, 'https://ror.org/01fjxvf67', 'en', 1, 'https://ror.org/01fjxvf67 Southwest Center for Chronic Disease'),
(14403, 'https://ror.org/00ykgmf04', 'en', 1, 'https://ror.org/00ykgmf04 Counseling Center'),
(14404, 'https://ror.org/03rcdym39', 'en', 1, 'https://ror.org/03rcdym39 Empower Abilities'),
(14405, 'https://ror.org/027ns6m21', 'en', 1, 'https://ror.org/027ns6m21 Southwest Georgia Health Care'),
(14406, 'https://ror.org/02xvm3d98', 'no_lang_code', 1, 'https://ror.org/02xvm3d98 StemMed (United States)'),
(14407, 'https://ror.org/0531gz477', 'en', 1, 'https://ror.org/0531gz477 University Settlement'),
(14408, 'https://ror.org/020mn5703', 'no_lang_code', 1, 'https://ror.org/020mn5703 Stemnion (United States)'),
(14409, 'https://ror.org/044dzr604', 'en', 1, 'https://ror.org/044dzr604 Visiting Nurse Association of South Central Connecticut'),
(14410, 'https://ror.org/00hjfh776', 'no_lang_code', 1, 'https://ror.org/00hjfh776 StemSynergy Therapeutics (United States)'),
(14411, 'https://ror.org/02ejtm324', 'en', 1, 'https://ror.org/02ejtm324 Southwest Wheelchair Athletic Association'),
(14412, 'https://ror.org/02vc1x915', 'no_lang_code', 1, 'https://ror.org/02vc1x915 Sova Pharmaceuticals (United States)'),
(14413, 'https://ror.org/0210crt34', 'en', 1, 'https://ror.org/0210crt34 Wall Las Memorias Project'),
(14414, 'https://ror.org/02c8yyx65', 'en', 1, 'https://ror.org/02c8yyx65 Delaware Academy of Medicine'),
(14415, 'https://ror.org/00mcpwa21', 'en', 1, 'https://ror.org/00mcpwa21 Unicorn Children''s Foundation'),
(14416, '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'),
(14417, 'https://ror.org/057ppfc30', 'en', 1, 'https://ror.org/057ppfc30 The Donna Foundation'),
(14418, 'https://ror.org/05yh81666', 'en', 1, 'https://ror.org/05yh81666 Stephen Gaynor School'),
(14419, 'https://ror.org/01v9h0745', 'en', 1, 'https://ror.org/01v9h0745 SPARK Reproductive Justice NOW'),
(14420, 'https://ror.org/00xfhnx88', 'es', 1, 'https://ror.org/00xfhnx88 Unidad de Artritis y Reumatismo'),
(14421, 'https://ror.org/02pgrmd66', 'en', 1, 'https://ror.org/02pgrmd66 Wayside House'),
(14422, 'https://ror.org/00ze1bh94', 'en', 1, 'https://ror.org/00ze1bh94 Stephenson County Health Department'),
(14423, 'https://ror.org/056j7x372', 'en', 1, 'https://ror.org/056j7x372 Neuroworx'),
(14424, 'https://ror.org/01ktsgp73', 'en', 1, 'https://ror.org/01ktsgp73 Hospice Savannah'),
(14425, 'https://ror.org/01qts9y67', 'en', 1, 'https://ror.org/01qts9y67 Best Answer for Cancer Foundation'),
(14426, 'https://ror.org/04z3krz71', 'en', 1, 'https://ror.org/04z3krz71 Unio Recovery Center'),
(14427, 'https://ror.org/00n74s057', 'en', 1, 'https://ror.org/00n74s057 Energy Institute of the Healing Arts Foundation'),
(14428, 'https://ror.org/05p9w4h97', 'en', 1, 'https://ror.org/05p9w4h97 Union Graduate College'),
(14429, 'https://ror.org/01q222b25', 'en', 1, 'https://ror.org/01q222b25 Esther A. & Joseph Klingenstein Fund'),
(14430, 'https://ror.org/0516c4k86', 'en', 1, 'https://ror.org/0516c4k86 Union Hospital'),
(14431, 'https://ror.org/04xcy4533', 'en', 1, 'https://ror.org/04xcy4533 Eye Cancer Foundation'),
(14432, 'https://ror.org/031e8jz65', 'en', 1, 'https://ror.org/031e8jz65 The Family Center'),
(14433, 'https://ror.org/01eetqe63', 'en', 1, 'https://ror.org/01eetqe63 National Council for Gender Equality'),
(14434, 'https://ror.org/02bnjsr23', 'en', 1, 'https://ror.org/02bnjsr23 CancerConnects'),
(14435, 'https://ror.org/05dyc0249', 'en', 1, 'https://ror.org/05dyc0249 Papageno Foundation Stichting Papageno'),
(14436, 'https://ror.org/00rc8tb78', 'en', 1, 'https://ror.org/00rc8tb78 United American Indian Involvement'),
(14437, 'https://ror.org/00m3dfd98', 'en', 1, 'https://ror.org/00m3dfd98 VitaValley Foundation'),
(14438, 'https://ror.org/03ww5p627', 'en', 1, 'https://ror.org/03ww5p627 Florence Crittenton Agency'),
(14439, 'https://ror.org/03zbr5052', 'en', 1, 'https://ror.org/03zbr5052 Spectrum Neuroscience and Treatment Institute'),
(14440, 'https://ror.org/00qmzzn75', 'en', 1, 'https://ror.org/00qmzzn75 Florida Center for Early Childhood'),
(14441, 'https://ror.org/05etp2h92', 'en', 1, 'https://ror.org/05etp2h92 Stop Calling It Autism'),
(14442, 'https://ror.org/01xh29k31', 'en', 1, 'https://ror.org/01xh29k31 Cancer Resources for Elkhart County'),
(14443, 'https://ror.org/022zybs25', 'en', 1, 'https://ror.org/022zybs25 Foodbank'),
(14444, 'https://ror.org/04bgs8335', 'en', 1, 'https://ror.org/04bgs8335 Foresight Project'),
(14445, 'https://ror.org/01rpj9v06', 'en', 1, 'https://ror.org/01rpj9v06 Albany Stratton VA Medical Center Albany'),
(14446, 'https://ror.org/03dp7mk93', 'en', 1, 'https://ror.org/03dp7mk93 Whole Elephant Institute'),
(14447, 'https://ror.org/0459dq860', 'no_lang_code', 1, 'https://ror.org/0459dq860 SPEED BioSystems (United States)'),
(14448, 'https://ror.org/0078rjm63', 'en', 1, 'https://ror.org/0078rjm63 Strength For Life'),
(14449, 'https://ror.org/04exnj962', 'en', 1, 'https://ror.org/04exnj962 Wig Bank of Caldwell County'),
(14450, 'https://ror.org/04aby3d05', 'en', 1, 'https://ror.org/04aby3d05 Stretch to Kindergarten'),
(14451, 'https://ror.org/01wtdg175', 'en', 1, 'https://ror.org/01wtdg175 Speedway Fire Rescue'),
(14452, 'https://ror.org/05fxq1221', 'no_lang_code', 1, 'https://ror.org/05fxq1221 Spero Therapeutics (United States)'),
(14453, 'https://ror.org/0345va412', 'en', 1, 'https://ror.org/0345va412 Strides To Success'),
(14454, 'https://ror.org/01r3dw569', 'en', 1, 'https://ror.org/01r3dw569 Prevea Health'),
(14455, 'https://ror.org/05x45y691', 'en', 1, 'https://ror.org/05x45y691 United Fire Service Women'),
(14456, 'https://ror.org/00fgr8e68', 'no_lang_code', 1, 'https://ror.org/00fgr8e68 Strohl Medical Technologies (United States)'),
(14457, 'https://ror.org/00a5e6254', 'no_lang_code', 1, 'https://ror.org/00a5e6254 Structure Based Design (United States)'),
(14458, 'https://ror.org/04w4gg556', 'en', 1, 'https://ror.org/04w4gg556 Student Sponsor Partners'),
(14459, 'https://ror.org/024nhth42', 'en', 1, 'https://ror.org/024nhth42 United Health Services'),
(14460, 'https://ror.org/03j705z82', 'en', 1, 'https://ror.org/03j705z82 United Hospice'),
(14461, 'https://ror.org/04ss5f518', 'en', 1, 'https://ror.org/04ss5f518 Studio Museum in Harlem'),
(14462, 'https://ror.org/04ttp1a84', 'en', 1, 'https://ror.org/04ttp1a84 United States Association of Blind Athletes'),
(14463, 'https://ror.org/05qbjh804', 'en', 1, 'https://ror.org/05qbjh804 Spina Bifida Resource Network'),
(14464, 'https://ror.org/04mkdzx81', 'en', 1, 'https://ror.org/04mkdzx81 American Bowen Academy'),
(14465, 'https://ror.org/020m0j044', 'en', 1, 'https://ror.org/020m0j044 Gould Farm'),
(14466, 'https://ror.org/007q33p83', 'en', 1, 'https://ror.org/007q33p83 United States Handcycle Federation'),
(14467, 'https://ror.org/056zchc22', 'en', 1, 'https://ror.org/056zchc22 Women''s Center of Jacksonville'),
(14468, 'https://ror.org/05kj4rm74', 'en', 1, 'https://ror.org/05kj4rm74 Wood Hudson Cancer Research Laboratory'),
(14469, 'https://ror.org/000ch3x42', 'en', 1, 'https://ror.org/000ch3x42 United States Olympic & Paralympic Committee'),
(14470, 'https://ror.org/0085h5x07', 'en', 1, 'https://ror.org/0085h5x07 Wounded Artist Project'),
(14471, 'https://ror.org/05p21nc51', 'en', 1, 'https://ror.org/05p21nc51 United States Quad Rugby Association'),
(14472, 'https://ror.org/025drpn91', 'en', 1, 'https://ror.org/025drpn91 United Way of Greater Nashville'),
(14473, 'https://ror.org/04peavn87', 'en', 1, 'https://ror.org/04peavn87 Fund for Global Human Rights'),
(14474, 'https://ror.org/03952wq53', 'en', 1, 'https://ror.org/03952wq53 United Way of Southeastern Idaho'),
(14475, 'https://ror.org/01j1ref86', 'en', 1, 'https://ror.org/01j1ref86 Gathering Place'),
(14476, 'https://ror.org/02hkvad16', 'en', 1, 'https://ror.org/02hkvad16 Spinal Muscular Atrophy Foundation'),
(14477, 'https://ror.org/05ntqke24', 'en', 1, 'https://ror.org/05ntqke24 UnityPoint Health'),
(14478, 'https://ror.org/05mr17y43', 'en', 1, 'https://ror.org/05mr17y43 SUDEP Aware'),
(14479, 'https://ror.org/023xtbz44', 'en', 1, 'https://ror.org/023xtbz44 Spiral Foundation'),
(14480, 'https://ror.org/00nj98j61', 'en', 1, 'https://ror.org/00nj98j61 Sudha Hospital and Medical Research Centre'),
(14481, 'https://ror.org/02yn5by09', 'es', 1, 'https://ror.org/02yn5by09 Catholic University of Cuyo Universidad Católica de Cuyo'),
(14482, 'https://ror.org/054hr5a68', 'en', 1, 'https://ror.org/054hr5a68 Greg Foundation'),
(14483, 'https://ror.org/01e8nps30', 'en', 1, 'https://ror.org/01e8nps30 Spirituality For Kids International'),
(14484, 'https://ror.org/02j83q337', 'en', 1, 'https://ror.org/02j83q337 Gus Foundation'),
(14485, 'https://ror.org/03n0yd032', 'en', 1, 'https://ror.org/03n0yd032 Central American University Universidad Centroamericana'),
(14486, 'https://ror.org/0017y4h13', 'no_lang_code', 1, 'https://ror.org/0017y4h13 Theranova (United States)'),
(14487, 'https://ror.org/0327ybn08', 'en', 1, 'https://ror.org/0327ybn08 Summit School'),
(14488, 'https://ror.org/05kg0va65', 'en', 1, 'https://ror.org/05kg0va65 Healing Co-Operative'),
(14489, 'https://ror.org/01v64sy05', 'en', 1, 'https://ror.org/01v64sy05 Sportable'),
(14490, 'https://ror.org/00e32zj49', 'en', 1, 'https://ror.org/00e32zj49 Therapeutic Research Foundation'),
(14491, 'https://ror.org/03gf89e85', 'en', 1, 'https://ror.org/03gf89e85 SportsClub'),
(14492, 'https://ror.org/04d534064', 'en', 1, 'https://ror.org/04d534064 Children''s Cancer Connection'),
(14493, 'https://ror.org/01g022076', 'no_lang_code', 1, 'https://ror.org/01g022076 Therapure Biopharma (Canada)'),
(14494, 'https://ror.org/00y8jqa74', 'en', 1, 'https://ror.org/00y8jqa74 Springhouse'),
(14495, 'https://ror.org/0085nex47', 'en', 1, 'https://ror.org/0085nex47 Challenge Center'),
(14496, 'https://ror.org/004xzjm20', 'es', 1, 'https://ror.org/004xzjm20 Universidad Iberoamericana'),
(14497, 'https://ror.org/00xpcj002', 'no_lang_code', 1, 'https://ror.org/00xpcj002 TherimuneX Pharmaceuticals (United States)'),
(14498, 'https://ror.org/039vvqy75', 'en', 1, 'https://ror.org/039vvqy75 Phoebe Sumter Medical Center'),
(14499, 'https://ror.org/0261ts428', 'en', 1, 'https://ror.org/0261ts428 Sunset Hill Educational Institute'),
(14500, 'https://ror.org/04spw3a80', 'en', 1, 'https://ror.org/04spw3a80 Hope Light Foundation'),
(14501, 'https://ror.org/03fcx1h14', 'en', 1, 'https://ror.org/03fcx1h14 SSM Health Rehabilitation Hospital'),
(14502, 'https://ror.org/04j7dyy47', 'en', 1, 'https://ror.org/04j7dyy47 St. Charles Community College'),
(14503, 'https://ror.org/05qpe4e51', 'en', 1, 'https://ror.org/05qpe4e51 Secondopinion'),
(14504, 'https://ror.org/01bj8gp17', 'en', 1, 'https://ror.org/01bj8gp17 Hudson River Museum'),
(14505, 'https://ror.org/00nfc4433', 'en', 1, 'https://ror.org/00nfc4433 MidHudson Regional Hospital'),
(14506, 'https://ror.org/0451y5857', 'en', 1, 'https://ror.org/0451y5857 Infant Trust'),
(14507, 'https://ror.org/00mka9g75', 'en', 1, 'https://ror.org/00mka9g75 Positively Pink Packages'),
(14508, 'https://ror.org/0375z3382', 'en', 1, 'https://ror.org/0375z3382 Sundance Research Institute'),
(14509, 'https://ror.org/05b35wm26', 'en', 1, 'https://ror.org/05b35wm26 ThinkFirst Foundation'),
(14510, 'https://ror.org/00j3nqj92', 'en', 1, 'https://ror.org/00j3nqj92 Institute for Behavior Change'),
(14511, 'https://ror.org/022zhjf34', 'en', 1, 'https://ror.org/022zhjf34 Sunlight Nutrition and Health Research Center'),
(14512, 'https://ror.org/01v6pab41', 'en', 1, 'https://ror.org/01v6pab41 PeaceHealth St. John Medical Center'),
(14513, 'https://ror.org/00r59ab07', 'en', 1, 'https://ror.org/00r59ab07 Sunny Days Learning Center of Stickney'),
(14514, 'https://ror.org/02n80qr18', 'en', 1, 'https://ror.org/02n80qr18 Memorial Hermann Northwest Hospital'),
(14515, 'https://ror.org/02hk0z764', 'en', 1, 'https://ror.org/02hk0z764 Side by Side'),
(14516, 'https://ror.org/05eq12k28', 'en', 1, 'https://ror.org/05eq12k28 Thomas Edison State University'),
(14517, 'https://ror.org/058zs5j81', 'en', 1, 'https://ror.org/058zs5j81 Institute for Reproductive and Family Health'),
(14518, 'https://ror.org/03f0njg03', 'fr', 1, 'https://ror.org/03f0njg03 UniversitƩ des Sciences et Techniques de Masuku'),
(14519, 'https://ror.org/02kab2r08', 'en', 1, 'https://ror.org/02kab2r08 Health Wagon'),
(14520, 'https://ror.org/05qhdpg52', 'en', 1, 'https://ror.org/05qhdpg52 Thorax Foundation ĪŠĪ“ĻĻ…Ī¼Ī± Ī˜Ī©Ī”Ī‘Īž'),
(14521, 'https://ror.org/00agk7330', 'en', 1, 'https://ror.org/00agk7330 The Institute for Therapeutic Discovery'),
(14522, 'https://ror.org/02m0e8z16', 'en', 1, 'https://ror.org/02m0e8z16 Thousand Waves Foundation'),
(14523, 'https://ror.org/02rsszy23', 'en', 1, 'https://ror.org/02rsszy23 St. Rose Dominican Hospital'),
(14524, 'https://ror.org/035fm0b85', 'en', 1, 'https://ror.org/035fm0b85 St Vincent’s Private Hospital Brisbane'),
(14525, 'https://ror.org/02p43pa18', 'no_lang_code', 1, 'https://ror.org/02p43pa18 Out Front (United States)'),
(14526, 'https://ror.org/04ynv8j79', 'en', 1, 'https://ror.org/04ynv8j79 Three Village Garden Club'),
(14527, 'https://ror.org/04tsmgv27', 'en', 1, 'https://ror.org/04tsmgv27 St. Ann''s Episcopal Church'),
(14528, 'https://ror.org/03h1gea69', 'en', 1, 'https://ror.org/03h1gea69 St. Baldrick''s Foundation'),
(14529, 'https://ror.org/02v5dd905', 'en', 1, 'https://ror.org/02v5dd905 SunServe'),
(14530, 'https://ror.org/02bb3e325', 'no_lang_code', 1, 'https://ror.org/02bb3e325 Threshold Pharmaceuticals (United States)'),
(14531, 'https://ror.org/00wtwth26', 'en', 1, 'https://ror.org/00wtwth26 Access Health Louisiana'),
(14532, 'https://ror.org/01jbd8x32', 'en', 1, 'https://ror.org/01jbd8x32 Through the Looking Glass'),
(14533, 'https://ror.org/03q4r8597', 'en', 1, 'https://ror.org/03q4r8597 St. Charles Foundation'),
(14534, 'https://ror.org/0354gjj39', 'en', 1, 'https://ror.org/0354gjj39 St. Christopher Iba Mar Diop College of Medicine'),
(14535, 'https://ror.org/05wg6j504', 'en', 1, 'https://ror.org/05wg6j504 Catholic Community Services Of Southern Arizona'),
(14536, 'https://ror.org/038ja4880', 'en', 1, 'https://ror.org/038ja4880 Alex''s Lemonade Stand Foundation'),
(14537, 'https://ror.org/04sxwc885', 'en', 1, 'https://ror.org/04sxwc885 Super Stars Literacy'),
(14538, 'https://ror.org/04ez22252', 'en', 1, 'https://ror.org/04ez22252 International Rehabilitation Forum'),
(14539, 'https://ror.org/04b2p2059', 'en', 1, 'https://ror.org/04b2p2059 St. Elizabeth Healthcare'),
(14540, 'https://ror.org/0556b6g90', 'en', 1, 'https://ror.org/0556b6g90 St. Francis Hospital'),
(14541, 'https://ror.org/03rsh9n69', 'en', 1, 'https://ror.org/03rsh9n69 StarRecreation'),
(14542, 'https://ror.org/00qmny302', 'en', 1, 'https://ror.org/00qmny302 St. James AME Zion Church'),
(14543, 'https://ror.org/030zsh764', 'en', 1, 'https://ror.org/030zsh764 Worcestershire Acute Hospitals NHS Trust'),
(14544, 'https://ror.org/01fs5qc70', 'en', 1, 'https://ror.org/01fs5qc70 Tiburcio Vasquez Health Center'),
(14545, 'https://ror.org/017ydz008', 'en', 1, 'https://ror.org/017ydz008 Tigerlily Foundation'),
(14546, 'https://ror.org/01x92ja23', 'no_lang_code', 1, 'https://ror.org/01x92ja23 GeneticaLens (United States)'),
(14547, 'https://ror.org/04crav288', 'no_lang_code', 1, 'https://ror.org/04crav288 Surgisense'),
(14548, 'https://ror.org/02g6jra37', 'no_lang_code', 1, 'https://ror.org/02g6jra37 NJ International (United States)'),
(14549, 'https://ror.org/00bdqcv08', 'no_lang_code', 1, 'https://ror.org/00bdqcv08 Tivorsan Pharmaceuticals (United States)'),
(14550, 'https://ror.org/04yhme281', 'en', 1, 'https://ror.org/04yhme281 Jane Coffin Childs Memorial Fund for Medical Research'),
(14551, 'https://ror.org/00rdsgd78', 'en', 1, 'https://ror.org/00rdsgd78 Mercy Hospital Washington'),
(14552, 'https://ror.org/00bgcje57', 'en', 1, 'https://ror.org/00bgcje57 SAMFund'),
(14553, 'https://ror.org/05q398y82', 'en', 1, 'https://ror.org/05q398y82 St. John''s Riverside Hospital'),
(14554, 'https://ror.org/04c4tvj54', 'en', 1, 'https://ror.org/04c4tvj54 To Help Everyone Health and Wellness Centers'),
(14555, 'https://ror.org/04chs2v90', 'en', 1, 'https://ror.org/04chs2v90 Appalachian College of Pharmacy'),
(14556, 'https://ror.org/03ktbzq37', 'en', 1, 'https://ror.org/03ktbzq37 John A. Hartford Foundation'),
(14557, 'https://ror.org/018f82058', 'en', 1, 'https://ror.org/018f82058 The Kindness Connection'),
(14558, 'https://ror.org/0319d2e87', 'en', 1, 'https://ror.org/0319d2e87 St Helens Hospital'),
(14559, 'https://ror.org/01w2fzp56', 'en', 1, 'https://ror.org/01w2fzp56 Kolkata Municipal Corporation কলকাতা ą¦Ŗą§Œą¦°ą¦øą¦‚ą¦øą§ą¦„ą¦¾'),
(14560, 'https://ror.org/00p7ghc88', 'en', 1, 'https://ror.org/00p7ghc88 Larrabee Center'),
(14561, 'https://ror.org/01gf94c09', 'en', 1, 'https://ror.org/01gf94c09 Latina Center'),
(14562, 'https://ror.org/01f06p727', 'en', 1, 'https://ror.org/01f06p727 Survivorship A to Z'),
(14563, 'https://ror.org/01t9act85', 'en', 1, 'https://ror.org/01t9act85 Susan B Allen Memorial Hospital'),
(14564, 'https://ror.org/01v2q8e40', 'en', 1, 'https://ror.org/01v2q8e40 League of Dreams'),
(14565, 'https://ror.org/053sja846', 'en', 1, 'https://ror.org/053sja846 Susan G Komen Arkansas'),
(14566, 'https://ror.org/02b78e269', 'en', 1, 'https://ror.org/02b78e269 Susan G Komen Greater Atlanta'),
(14567, 'https://ror.org/01zdwaq18', 'no_lang_code', 1, 'https://ror.org/01zdwaq18 Illinois Ventures (United States)'),
(14568, 'https://ror.org/05e946j54', 'en', 1, 'https://ror.org/05e946j54 University of Louisville Physicians'),
(14569, 'https://ror.org/05nd73j43', 'en', 1, 'https://ror.org/05nd73j43 Libby Ross Foundation'),
(14570, 'https://ror.org/02rcc0516', 'en', 1, 'https://ror.org/02rcc0516 Liberty Church'),
(14571, 'https://ror.org/04kkgz961', 'en', 1, 'https://ror.org/04kkgz961 Life Monologue Project'),
(14572, 'https://ror.org/05gtsta03', 'en', 1, 'https://ror.org/05gtsta03 Life Raft Group'),
(14573, 'https://ror.org/04wgs4413', 'en', 1, 'https://ror.org/04wgs4413 Tomorrows Children’s Fund'),
(14574, 'https://ror.org/04y61qm95', 'en', 1, 'https://ror.org/04y61qm95 University Of Medicine 1 Yangon į€†į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ ၁ ရန်ကုန်'),
(14575, 'https://ror.org/00qd1fk85', 'en', 1, 'https://ror.org/00qd1fk85 Navicent Health'),
(14576, 'https://ror.org/00dyspc39', 'en', 1, 'https://ror.org/00dyspc39 Sutter Institute for Medical Research'),
(14577, 'https://ror.org/00s3q3549', 'en', 1, 'https://ror.org/00s3q3549 Mayor''s Fund to Advance New York City'),
(14578, 'https://ror.org/02kvbnm84', 'en', 1, 'https://ror.org/02kvbnm84 Sutter Santa Rosa Regional Hospital'),
(14579, 'https://ror.org/03mtqjg23', 'no_lang_code', 1, 'https://ror.org/03mtqjg23 Mary Maguire Foundation'),
(14580, 'https://ror.org/05hwfvk38', 'en', 1, 'https://ror.org/05hwfvk38 Touro College'),
(14581, 'https://ror.org/04f3yc598', 'en', 1, 'https://ror.org/04f3yc598 Lydia Project'),
(14582, 'https://ror.org/03s2y3a28', 'en', 1, 'https://ror.org/03s2y3a28 Touro Infirmary Foundation'),
(14583, 'https://ror.org/04vam3d04', 'no_lang_code', 1, 'https://ror.org/04vam3d04 Tracon Pharmaceuticals (United States)'),
(14584, 'https://ror.org/04rmmk944', 'no_lang_code', 1, 'https://ror.org/04rmmk944 SV Health Investors (United States)'),
(14585, 'https://ror.org/029n4n358', 'en', 1, 'https://ror.org/029n4n358 Swami Vivekanand College of Pharmacy'),
(14586, 'https://ror.org/036n5h252', 'no_lang_code', 1, 'https://ror.org/036n5h252 Trana Discovery (United States)'),
(14587, 'https://ror.org/02ee95325', 'en', 1, 'https://ror.org/02ee95325 Swedish Family Medicine Residency - Cherry Hill'),
(14588, 'https://ror.org/02cyrpr98', 'en', 1, 'https://ror.org/02cyrpr98 Trans Tasman Radiation Oncology Group'),
(14589, 'https://ror.org/04yk5p402', 'no_lang_code', 1, 'https://ror.org/04yk5p402 TransCure BioServices (Switzerland)'),
(14590, 'https://ror.org/03199wg76', 'en', 1, 'https://ror.org/03199wg76 PearlPoint Cancer Support'),
(14591, 'https://ror.org/01ffxpj85', 'no_lang_code', 1, 'https://ror.org/01ffxpj85 The Miracle Center (United States)'),
(14592, 'https://ror.org/02jfsex62', 'no_lang_code', 1, 'https://ror.org/02jfsex62 TransCure BioServices (France)'),
(14593, 'https://ror.org/03t95yr58', 'no_lang_code', 1, 'https://ror.org/03t95yr58 BioClinica (United States)'),
(14594, 'https://ror.org/01zesp542', 'no_lang_code', 1, 'https://ror.org/01zesp542 SynDevRx (United States)'),
(14595, 'https://ror.org/02vxh6382', 'en', 1, 'https://ror.org/02vxh6382 Pinky Swear Foundation'),
(14596, 'https://ror.org/02b108x81', 'en', 1, 'https://ror.org/02b108x81 University of St. Augustine for Health Sciences'),
(14597, 'https://ror.org/020y46h67', 'no_lang_code', 1, 'https://ror.org/020y46h67 Mifne Center'),
(14598, 'https://ror.org/02bspsv67', 'no_lang_code', 1, 'https://ror.org/02bspsv67 Synergenz BioScience (United States)'),
(14599, 'https://ror.org/004sf5z22', 'no_lang_code', 1, 'https://ror.org/004sf5z22 Synthena (Switzerland)'),
(14600, 'https://ror.org/000fyja13', 'en', 1, 'https://ror.org/000fyja13 Molecular Sciences Institute'),
(14601, 'https://ror.org/04dv7yp79', 'en', 1, 'https://ror.org/04dv7yp79 Montel Williams MS Foundation'),
(14602, 'https://ror.org/00qa1j177', 'en', 1, 'https://ror.org/00qa1j177 National Ability Center'),
(14603, 'https://ror.org/05k0zr802', 'en', 1, 'https://ror.org/05k0zr802 MultiCare Tacoma General Hospital'),
(14604, 'https://ror.org/01c2q3444', 'en', 1, 'https://ror.org/01c2q3444 Tacoma Pierce County Health Department'),
(14605, 'https://ror.org/048tfbp61', 'no_lang_code', 1, 'https://ror.org/048tfbp61 MobiLife (United States)'),
(14606, 'https://ror.org/01mxhss58', 'en', 1, 'https://ror.org/01mxhss58 eTraining Technology Academy'),
(14607, 'https://ror.org/01frxsf98', 'en', 1, 'https://ror.org/01frxsf98 Muscular Dystrophy Association'),
(14608, 'https://ror.org/025v9q431', 'en', 1, 'https://ror.org/025v9q431 Muscular Dystrophy Patients Welfare Association'),
(14609, 'https://ror.org/029x63s82', 'en', 1, 'https://ror.org/029x63s82 Nurse & Hospice of Fairfield County'),
(14610, 'https://ror.org/01464p409', 'en', 1, 'https://ror.org/01464p409 Disability Connection'),
(14611, 'https://ror.org/05szq2344', 'en', 1, 'https://ror.org/05szq2344 Pingjin Hospital å¹³ę“„åŒ»é™¢'),
(14612, 'https://ror.org/013h4ye17', 'en', 1, 'https://ror.org/013h4ye17 Stone Clinic'),
(14613, 'https://ror.org/04emmg248', 'en', 1, 'https://ror.org/04emmg248 Tahirih Justice Center'),
(14614, 'https://ror.org/03m4w0286', 'en', 1, 'https://ror.org/03m4w0286 Tahoe Forest Hospital'),
(14615, 'https://ror.org/05v9tzp52', 'en', 1, 'https://ror.org/05v9tzp52 National Physician and Family Referral'),
(14616, 'https://ror.org/03jwcxq96', 'en', 1, 'https://ror.org/03jwcxq96 Taiz University Ų¬Ų§Ł…Ų¹Ų© ŲŖŲ¹Ų²'),
(14617, 'https://ror.org/00187jv91', 'en', 1, 'https://ror.org/00187jv91 Lifelabs New York'),
(14618, 'https://ror.org/02bb6wb14', 'en', 1, 'https://ror.org/02bb6wb14 Translational Research in Oncology'),
(14619, 'https://ror.org/01aygtt64', 'en', 1, 'https://ror.org/01aygtt64 New York Says Thank You Foundation'),
(14620, 'https://ror.org/02z3rcy16', 'no_lang_code', 1, 'https://ror.org/02z3rcy16 Translational Therapeutics (United States)'),
(14621, 'https://ror.org/03n2a3p06', 'en', 1, 'https://ror.org/03n2a3p06 New York Stem Cell Foundation'),
(14622, 'https://ror.org/03n678n37', 'en', 1, 'https://ror.org/03n678n37 Greeneville Community Hospital West'),
(14623, 'https://ror.org/05d8pm274', 'en', 1, 'https://ror.org/05d8pm274 University of Guyana'),
(14624, 'https://ror.org/04ghttx68', 'en', 1, 'https://ror.org/04ghttx68 Nicholas Conor Institute'),
(14625, 'https://ror.org/04btmq148', 'en', 1, 'https://ror.org/04btmq148 Transylvania County Schools'),
(14626, 'https://ror.org/054tjx319', 'en', 1, 'https://ror.org/054tjx319 Tree House Humane Society'),
(14627, 'https://ror.org/049jrjb36', 'no_lang_code', 1, 'https://ror.org/049jrjb36 Treventis (United States)'),
(14628, 'https://ror.org/01vt83t39', 'en', 1, 'https://ror.org/01vt83t39 Obesity Society'),
(14629, 'https://ror.org/0050tts15', 'en', 1, 'https://ror.org/0050tts15 Tri-Cities Cancer Center'),
(14630, 'https://ror.org/0523sbv14', 'en', 1, 'https://ror.org/0523sbv14 Open Source Science Project'),
(14631, 'https://ror.org/011t8b496', 'en', 1, 'https://ror.org/011t8b496 Tri-City Health Center'),
(14632, 'https://ror.org/041ddw474', 'en', 1, 'https://ror.org/041ddw474 Tallahassee Memorial HealthCare'),
(14633, 'https://ror.org/035r27d93', 'es', 1, 'https://ror.org/035r27d93 Centro Dr. Belluscio'),
(14634, 'https://ror.org/00qqbzv64', 'en', 1, 'https://ror.org/00qqbzv64 The Painted Turtle'),
(14635, 'https://ror.org/00z90m725', 'no_lang_code', 1, 'https://ror.org/00z90m725 Talon Pharmaceuticals (Canada)'),
(14636, 'https://ror.org/00vtp6271', 'en', 1, 'https://ror.org/00vtp6271 Trinity County Office of Education'),
(14637, 'https://ror.org/04tf53s67', 'en', 1, 'https://ror.org/04tf53s67 People’s Community Baptist Church'),
(14638, 'https://ror.org/05mxdx712', 'en', 1, 'https://ror.org/05mxdx712 Trinity United Church of Christ Child Care Centers'),
(14639, 'https://ror.org/050bz3f23', 'en', 1, 'https://ror.org/050bz3f23 Wake County Human Services'),
(14640, 'https://ror.org/05px2re83', 'en', 1, 'https://ror.org/05px2re83 Tanner Health System'),
(14641, 'https://ror.org/025zgnz97', 'en', 1, 'https://ror.org/025zgnz97 Triumph Foundation'),
(14642, 'https://ror.org/03h7p3m59', 'en', 1, 'https://ror.org/03h7p3m59 Wake County Public School System'),
(14643, 'https://ror.org/022bs7z24', 'no_lang_code', 1, 'https://ror.org/022bs7z24 Pallium India'),
(14644, 'https://ror.org/05pr8kn76', 'no_lang_code', 1, 'https://ror.org/05pr8kn76 Tansna Theraputics (United States)'),
(14645, 'https://ror.org/00dky2106', 'en', 1, 'https://ror.org/00dky2106 Plastic Surgery Foundation'),
(14646, 'https://ror.org/008fn2468', 'en', 1, 'https://ror.org/008fn2468 Walk for Nepal'),
(14647, 'https://ror.org/00cpzjj86', 'en', 1, 'https://ror.org/00cpzjj86 Tapestri'),
(14648, 'https://ror.org/0306p6665', 'en', 1, 'https://ror.org/0306p6665 Play Group Theatre'),
(14649, 'https://ror.org/05hfas298', 'no_lang_code', 1, 'https://ror.org/05hfas298 Targepeutics (United States)'),
(14650, 'https://ror.org/02g5mks94', 'no_lang_code', 1, 'https://ror.org/02g5mks94 Targeted Cell Therapies (United States)'),
(14651, 'https://ror.org/031bxfd44', 'en', 1, 'https://ror.org/031bxfd44 Walking Miracles Family Foundation'),
(14652, 'https://ror.org/007k2zh72', 'en', 1, 'https://ror.org/007k2zh72 Walking With Anthony'),
(14653, 'https://ror.org/059pjy887', 'en', 1, 'https://ror.org/059pjy887 Tuality Healthcare'),
(14654, 'https://ror.org/052tawh47', 'en', 1, 'https://ror.org/052tawh47 Wallace-Kettering Neuroscience Institute'),
(14655, 'https://ror.org/015b22965', 'no_lang_code', 1, 'https://ror.org/015b22965 Taro Pharmaceuticals (United States)'),
(14656, 'https://ror.org/03jaw3x77', 'en', 1, 'https://ror.org/03jaw3x77 Quality of Life Plus'),
(14657, 'https://ror.org/053n5f413', 'en', 1, 'https://ror.org/053n5f413 Walnut Creek Hearing Aid Center'),
(14658, 'https://ror.org/02jcwe568', 'en', 1, 'https://ror.org/02jcwe568 Tarrant County Challenge'),
(14659, 'https://ror.org/04s84vw78', 'en', 1, 'https://ror.org/04s84vw78 Walton Foundation for Independence'),
(14660, 'https://ror.org/033pxr844', 'en', 1, 'https://ror.org/033pxr844 New York State PTA'),
(14661, 'https://ror.org/01abgvx97', 'en', 1, 'https://ror.org/01abgvx97 Ward Melville Heritage Organization'),
(14662, 'https://ror.org/02ps8wg39', 'en', 1, 'https://ror.org/02ps8wg39 Tashkent Institute Of Postgraduate Medical Education'),
(14663, 'https://ror.org/02zsfmb11', 'en', 1, 'https://ror.org/02zsfmb11 Ray of Hope Cancer Foundation'),
(14664, 'https://ror.org/03pr40c41', 'en', 1, 'https://ror.org/03pr40c41 Red Devils'),
(14665, 'https://ror.org/04eh72y51', 'en', 1, 'https://ror.org/04eh72y51 Weldon City Schools'),
(14666, 'https://ror.org/02p750640', 'en', 1, 'https://ror.org/02p750640 WellFlorida Council'),
(14667, 'https://ror.org/03br44f40', 'en', 1, 'https://ror.org/03br44f40 Unlimited Abilities Foundation'),
(14668, 'https://ror.org/027dakc19', 'en', 1, 'https://ror.org/027dakc19 Warren County Schools'),
(14669, 'https://ror.org/04f0jzg23', 'en', 1, 'https://ror.org/04f0jzg23 Wellness House'),
(14670, 'https://ror.org/03y5p2k10', 'en', 1, 'https://ror.org/03y5p2k10 Wellness House'),
(14671, 'https://ror.org/02ytbnx96', 'en', 1, 'https://ror.org/02ytbnx96 Wells Institute for Health Awareness'),
(14672, 'https://ror.org/05nsngn76', 'en', 1, 'https://ror.org/05nsngn76 WellShare International'),
(14673, 'https://ror.org/059hgmr83', 'no_lang_code', 1, 'https://ror.org/059hgmr83 Cavion (United States)'),
(14674, 'https://ror.org/01nknep14', 'en', 1, 'https://ror.org/01nknep14 WellSpan Health'),
(14675, 'https://ror.org/0365sd121', 'en', 1, 'https://ror.org/0365sd121 UPMC McKeesport'),
(14676, 'https://ror.org/002hxf953', 'en', 1, 'https://ror.org/002hxf953 Tazewell County Health Department'),
(14677, 'https://ror.org/01kaqt385', 'en', 1, 'https://ror.org/01kaqt385 WellStar Health System'),
(14678, 'https://ror.org/0073snb49', 'en', 1, 'https://ror.org/0073snb49 weSPARK Cancer Support Center'),
(14679, 'https://ror.org/00cnma114', 'en', 1, 'https://ror.org/00cnma114 Wasatch Adaptive Sports'),
(14680, 'https://ror.org/00wwwzh42', 'en', 1, 'https://ror.org/00wwwzh42 West Bay Pilipino Multi-Service Center'),
(14681, 'https://ror.org/02ha1gc65', 'en', 1, 'https://ror.org/02ha1gc65 West Central Georgia Cancer Coalition'),
(14682, 'https://ror.org/04a0kbv92', 'en', 1, 'https://ror.org/04a0kbv92 West County Health Centers'),
(14683, 'https://ror.org/03exh9a13', 'en', 1, 'https://ror.org/03exh9a13 West Humboldt Park Development Council'),
(14684, 'https://ror.org/00m1r1367', 'en', 1, 'https://ror.org/00m1r1367 National Association of Team Survivor'),
(14685, 'https://ror.org/02p92he45', 'en', 1, 'https://ror.org/02p92he45 Urgent Action Fund'),
(14686, 'https://ror.org/02h5f8v93', 'en', 1, 'https://ror.org/02h5f8v93 Regional Cancer Center'),
(14687, 'https://ror.org/01vq75n56', 'en', 1, 'https://ror.org/01vq75n56 Team Taylor County'),
(14688, 'https://ror.org/03t2egq54', 'en', 1, 'https://ror.org/03t2egq54 Regional Medical Center'),
(14689, 'https://ror.org/05rzk0426', 'en', 1, 'https://ror.org/05rzk0426 West Michigan Cancer Center'),
(14690, 'https://ror.org/01g2kx755', 'en', 1, 'https://ror.org/01g2kx755 West Town Bikes'),
(14691, 'https://ror.org/01m58p389', 'en', 1, 'https://ror.org/01m58p389 Washington County Schools'),
(14692, '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'),
(14693, 'https://ror.org/04ecbsf74', 'en', 1, 'https://ror.org/04ecbsf74 Westbury Friends School'),
(14694, 'https://ror.org/008sks094', 'en', 1, 'https://ror.org/008sks094 Urologic Research Institute'),
(14695, 'https://ror.org/01c4kzn98', 'en', 1, 'https://ror.org/01c4kzn98 Westchester Putnam Council'),
(14696, 'https://ror.org/03s727m55', 'en', 1, 'https://ror.org/03s727m55 Western DuPage Special Recreation Association'),
(14697, 'https://ror.org/05g5f7985', 'no_lang_code', 1, 'https://ror.org/05g5f7985 Western Oncolytics (United States)'),
(14698, 'https://ror.org/03tv3cs72', 'en', 1, 'https://ror.org/03tv3cs72 The Washington Institute for Near East Policy'),
(14699, 'https://ror.org/039xp9584', 'en', 1, 'https://ror.org/039xp9584 Westside Health Authority'),
(14700, 'https://ror.org/03ezean90', 'en', 1, 'https://ror.org/03ezean90 Washington Regional Medical Center'),
(14701, 'https://ror.org/04k6w8620', 'en', 1, 'https://ror.org/04k6w8620 Westside Institute for Science and Education'),
(14702, 'https://ror.org/03ztrsx19', 'en', 1, 'https://ror.org/03ztrsx19 Poway Unified School District'),
(14703, 'https://ror.org/02df22b40', 'en', 1, 'https://ror.org/02df22b40 US Human Rights Network'),
(14704, 'https://ror.org/047n2sq83', 'en', 1, 'https://ror.org/047n2sq83 Wicomico County Health Department'),
(14705, 'https://ror.org/01ynqd283', 'en', 1, 'https://ror.org/01ynqd283 United States Immunodeficiency Network'),
(14706, 'https://ror.org/055xrn550', 'en', 1, 'https://ror.org/055xrn550 Wheaton Franciscan Healthcare'),
(14707, 'https://ror.org/02ff93068', 'no_lang_code', 1, 'https://ror.org/02ff93068 Wigs 4 Kids'),
(14708, 'https://ror.org/02pzmpf65', 'en', 1, 'https://ror.org/02pzmpf65 Wheelchair and Ambulatory Sports USA'),
(14709, 'https://ror.org/026qvc471', 'en', 1, 'https://ror.org/026qvc471 Wheelchair Sports Federation'),
(14710, 'https://ror.org/02c4s5t61', 'en', 1, 'https://ror.org/02c4s5t61 Wild for Life'),
(14711, 'https://ror.org/057m2em33', 'en', 1, 'https://ror.org/057m2em33 Washington Hospital Healthcare System'),
(14712, 'https://ror.org/02ndetp66', 'en', 1, 'https://ror.org/02ndetp66 Wheelin'' Team 457'),
(14713, 'https://ror.org/05cdy0410', 'en', 1, 'https://ror.org/05cdy0410 Wild Lens'),
(14714, 'https://ror.org/00dy5by13', 'en', 1, 'https://ror.org/00dy5by13 Wheeling Forward'),
(14715, 'https://ror.org/04t0e1f58', 'en', 1, 'https://ror.org/04t0e1f58 Wilderness Inquiry'),
(14716, 'https://ror.org/056cdnf90', 'en', 1, 'https://ror.org/056cdnf90 Wheels of Progress'),
(14717, 'https://ror.org/05f29ae28', 'en', 1, 'https://ror.org/05f29ae28 Wilderness Matters'),
(14718, 'https://ror.org/0275xpz44', 'en', 1, 'https://ror.org/0275xpz44 The Memorial Foundation'),
(14719, 'https://ror.org/03p0exs25', 'en', 1, 'https://ror.org/03p0exs25 Will2Walk Foundation'),
(14720, 'https://ror.org/02jdjd592', 'en', 1, 'https://ror.org/02jdjd592 White Earth Nation'),
(14721, 'https://ror.org/03bc9tz11', 'en', 1, 'https://ror.org/03bc9tz11 USA Cares'),
(14722, 'https://ror.org/00pngmk50', 'en', 1, 'https://ror.org/00pngmk50 Whiteside County Health Department'),
(14723, 'https://ror.org/01aetv375', 'en', 1, 'https://ror.org/01aetv375 USA Hockey Foundation'),
(14724, 'https://ror.org/003xwgp31', 'en', 1, 'https://ror.org/003xwgp31 The Roumel Group'),
(14725, 'https://ror.org/03ar82423', 'en', 1, 'https://ror.org/03ar82423 Watauga Medical Center'),
(14726, 'https://ror.org/027hx5s14', 'en', 1, 'https://ror.org/027hx5s14 Willamette Valley Cancer Foundation'),
(14727, 'https://ror.org/051yn8276', 'en', 1, 'https://ror.org/051yn8276 Women''s Oncology Research and Dialogue'),
(14728, 'https://ror.org/00jrtvk29', 'en', 1, 'https://ror.org/00jrtvk29 UniversitƩ de Wilmington Wilmington University'),
(14729, 'https://ror.org/044s55g62', 'en', 1, 'https://ror.org/044s55g62 Women''s Refugee Commission'),
(14730, 'https://ror.org/0321gjx92', 'en', 1, 'https://ror.org/0321gjx92 The Salvation Army Zambia'),
(14731, 'https://ror.org/037cpgk40', 'en', 1, 'https://ror.org/037cpgk40 Women’s Rehabilitation Centre'),
(14732, 'https://ror.org/04q91nm90', 'en', 1, 'https://ror.org/04q91nm90 Wonders and Worries'),
(14733, 'https://ror.org/04b8h1p59', 'en', 1, 'https://ror.org/04b8h1p59 Wave Hill'),
(14734, 'https://ror.org/05f8df042', 'en', 1, 'https://ror.org/05f8df042 Usher III Initiative'),
(14735, 'https://ror.org/05n2hx334', 'en', 1, 'https://ror.org/05n2hx334 Wood River Ability Program'),
(14736, 'https://ror.org/04c6qad64', 'en', 1, 'https://ror.org/04c6qad64 USTA Intermountain Colorado'),
(14737, 'https://ror.org/010rmp704', 'en', 1, 'https://ror.org/010rmp704 Woodrow Wilson Rehabilitation Center Foundation'),
(14738, 'https://ror.org/0308zvy22', 'en', 1, 'https://ror.org/0308zvy22 USTA Foundation'),
(14739, 'https://ror.org/03m0aw686', 'en', 1, 'https://ror.org/03m0aw686 Winchester Hospital'),
(14740, 'https://ror.org/04yvx5a03', 'en', 1, 'https://ror.org/04yvx5a03 WORLD'),
(14741, 'https://ror.org/01khv4e51', 'en', 1, 'https://ror.org/01khv4e51 Wayne Country Day School'),
(14742, 'https://ror.org/040k7ca93', 'en', 1, 'https://ror.org/040k7ca93 World Education'),
(14743, 'https://ror.org/029e1wz89', 'en', 1, 'https://ror.org/029e1wz89 Wind River Cancer Wellness Retreats and Programs'),
(14744, 'https://ror.org/03w8j7142', 'en', 1, 'https://ror.org/03w8j7142 Windber Research Institute'),
(14745, 'https://ror.org/00maq2822', 'en', 1, 'https://ror.org/00maq2822 Self Determination Housing Project of Pennsylvania'),
(14746, 'https://ror.org/04twgwn91', 'en', 1, 'https://ror.org/04twgwn91 The Sherkow Center for Child Development and Autism Spectrum Disorder'),
(14747, 'https://ror.org/03g25vn60', 'en', 1, 'https://ror.org/03g25vn60 Wings Cancer Foundation'),
(14748, 'https://ror.org/044b6j563', 'en', 1, 'https://ror.org/044b6j563 Society of Thoracic Surgeons'),
(14749, 'https://ror.org/04ytszy78', 'en', 1, 'https://ror.org/04ytszy78 Wings of Hope Hospice'),
(14750, 'https://ror.org/02hswss60', 'en', 1, 'https://ror.org/02hswss60 Fairfax Neonatal Associates'),
(14751, 'https://ror.org/0337f4c15', 'en', 1, 'https://ror.org/0337f4c15 WCA Hospital'),
(14752, 'https://ror.org/03ktt9079', 'en', 1, 'https://ror.org/03ktt9079 Neurotech Networks'),
(14753, 'https://ror.org/05ngy7r54', 'en', 1, 'https://ror.org/05ngy7r54 Winning Wheels'),
(14754, 'https://ror.org/01esber41', 'en', 1, 'https://ror.org/01esber41 Wuesthoff Health System'),
(14755, 'https://ror.org/00atett69', 'en', 1, 'https://ror.org/00atett69 Wintergreen Adaptive Sports'),
(14756, 'https://ror.org/00g930198', 'en', 1, 'https://ror.org/00g930198 The Stillpoint Foundation'),
(14757, 'https://ror.org/04ztqy570', 'en', 1, 'https://ror.org/04ztqy570 Sacramento VA Medical Center'),
(14758, 'https://ror.org/0353cdc64', 'en', 1, 'https://ror.org/0353cdc64 The QuadW Foundation'),
(14759, 'https://ror.org/01yxgnz18', 'en', 1, 'https://ror.org/01yxgnz18 Catawba County Schools'),
(14760, 'https://ror.org/0378d7n06', 'en', 1, 'https://ror.org/0378d7n06 Wyoming Comprehensive Cancer Control Consortium'),
(14761, 'https://ror.org/02e1f2f58', 'en', 1, 'https://ror.org/02e1f2f58 Wyoming Services for Independent Living'),
(14762, 'https://ror.org/043n2ap46', 'en', 1, 'https://ror.org/043n2ap46 The School of Theoretical Modeling'),
(14763, 'https://ror.org/02j97b022', 'en', 1, 'https://ror.org/02j97b022 WISE & Healthy Aging'),
(14764, 'https://ror.org/05md44a87', 'en', 1, 'https://ror.org/05md44a87 Wyoming Valley Alcohol and Drug Services'),
(14765, 'https://ror.org/00reded37', 'no_lang_code', 1, 'https://ror.org/00reded37 Valentia Biopharma (Spain)'),
(14766, 'https://ror.org/056t81323', 'en', 1, 'https://ror.org/056t81323 The Seany Foundation'),
(14767, 'https://ror.org/00q6dj830', 'no_lang_code', 1, 'https://ror.org/00q6dj830 WeCanRow DC'),
(14768, 'https://ror.org/02x3e5q37', 'en', 1, 'https://ror.org/02x3e5q37 Weems Community Mental Health Center'),
(14769, 'https://ror.org/057gtbv76', 'en', 1, 'https://ror.org/057gtbv76 Wolfson Children''s Hospital'),
(14770, 'https://ror.org/03x86fq67', 'no_lang_code', 1, 'https://ror.org/03x86fq67 Xen Biofluidx (United States)'),
(14771, 'https://ror.org/01pb5g963', 'en', 1, 'https://ror.org/01pb5g963 Xenobe Research Institute'),
(14772, 'https://ror.org/001t4p955', 'no_lang_code', 1, 'https://ror.org/001t4p955 Xeris Pharmaceuticals (United States)'),
(14773, 'https://ror.org/020wewd22', 'en', 1, 'https://ror.org/020wewd22 Valley City State University'),
(14774, 'https://ror.org/03j22xd51', 'no_lang_code', 1, 'https://ror.org/03j22xd51 The SoundWell (United States)'),
(14775, 'https://ror.org/04rpkcv59', 'en', 1, 'https://ror.org/04rpkcv59 Star Center'),
(14776, 'https://ror.org/04vn0ra85', 'en', 1, 'https://ror.org/04vn0ra85 Vessel Work'),
(14777, 'https://ror.org/01ra40f04', 'en', 1, 'https://ror.org/01ra40f04 Veteran Homestead'),
(14778, 'https://ror.org/03prbmy37', 'en', 1, 'https://ror.org/03prbmy37 Women Against Rape'),
(14779, 'https://ror.org/018r09w17', 'en', 1, 'https://ror.org/018r09w17 Strategic Initiative for Women in the Horn of Africa'),
(14780, 'https://ror.org/017bzf706', 'no_lang_code', 1, 'https://ror.org/017bzf706 Summit Medical Group (United States)'),
(14781, 'https://ror.org/00etktf93', 'en', 1, 'https://ror.org/00etktf93 Sunshine Kids Foundation'),
(14782, 'https://ror.org/04fmvrn11', 'en', 1, 'https://ror.org/04fmvrn11 Susan Cohan Colon Cancer Foundation'),
(14783, 'https://ror.org/00zz3bk03', 'en', 1, 'https://ror.org/00zz3bk03 Scharp-Lacy Research Institute'),
(14784, 'https://ror.org/00r67vw60', 'en', 1, 'https://ror.org/00r67vw60 Women Alive'),
(14785, 'https://ror.org/02nxw7t86', 'en', 1, 'https://ror.org/02nxw7t86 UCHealth Yampa Valley Medical Center'),
(14786, 'https://ror.org/038enx362', 'en', 1, 'https://ror.org/038enx362 Vannie E. Cook Jr. Cancer Foundation'),
(14787, 'https://ror.org/01d735r83', 'no_lang_code', 1, 'https://ror.org/01d735r83 Vironika (United States)'),
(14788, 'https://ror.org/041khxm91', 'no_lang_code', 1, 'https://ror.org/041khxm91 Vanquish Oncology (United States)'),
(14789, 'https://ror.org/039g7zn40', 'en', 1, 'https://ror.org/039g7zn40 Veterans Education and Research Association of Northern New England'),
(14790, 'https://ror.org/03t496v77', 'no_lang_code', 1, 'https://ror.org/03t496v77 Virovek (United States)'),
(14791, 'https://ror.org/05dxcae66', 'no_lang_code', 1, 'https://ror.org/05dxcae66 Vantia (United Kingdom)'),
(14792, 'https://ror.org/058az4744', 'en', 1, 'https://ror.org/058az4744 Virtua Health'),
(14793, 'https://ror.org/03jbgaw48', 'en', 1, 'https://ror.org/03jbgaw48 Women for Peace and Democracy – Nepal'),
(14794, 'https://ror.org/017m4fy44', 'en', 1, 'https://ror.org/017m4fy44 Veterans Research Foundation of Pittsburgh'),
(14795, 'https://ror.org/00k1x1157', 'en', 1, 'https://ror.org/00k1x1157 Variety The Children''s Charity'),
(14796, 'https://ror.org/00gm39w38', 'en', 1, 'https://ror.org/00gm39w38 Women Involved in Nurturing, Giving, Sharing'),
(14797, 'https://ror.org/045zwy983', 'en', 1, 'https://ror.org/045zwy983 Women of Faith and Hope'),
(14798, 'https://ror.org/055rvqr15', 'en', 1, 'https://ror.org/055rvqr15 Visions'),
(14799, 'https://ror.org/045w5nd37', 'en', 1, 'https://ror.org/045w5nd37 Visitation Catholic School'),
(14800, 'https://ror.org/011dxht06', 'en', 1, 'https://ror.org/011dxht06 Women of W.O.R.T.H.'),
(14801, 'https://ror.org/02tbyrb23', 'en', 1, 'https://ror.org/02tbyrb23 Visiting Nurse Association of Erie County'),
(14802, 'https://ror.org/0492wg980', 'en', 1, 'https://ror.org/0492wg980 Women With A Vision'),
(14803, 'https://ror.org/04wpg4c25', 'en', 1, 'https://ror.org/04wpg4c25 The University of Vermont Health Network Home Health & Hospice'),
(14804, 'https://ror.org/05esks986', 'en', 1, 'https://ror.org/05esks986 Yankton Rural Area Health Education Center'),
(14805, 'https://ror.org/028658z74', 'en', 1, 'https://ror.org/028658z74 University of Maryland Upper Chesapeake Health'),
(14806, 'https://ror.org/01e2ynf23', 'en', 1, 'https://ror.org/01e2ynf23 Women''s and Children''s Health Network'),
(14807, 'https://ror.org/0480v3r94', 'en', 1, 'https://ror.org/0480v3r94 Torrance Memorial Medical Center'),
(14808, 'https://ror.org/01mqtae40', 'en', 1, 'https://ror.org/01mqtae40 Vista Community Clinic'),
(14809, 'https://ror.org/05pvkp656', 'en', 1, 'https://ror.org/05pvkp656 RiverStone Health'),
(14810, 'https://ror.org/00svqj211', 'en', 1, 'https://ror.org/00svqj211 Vital Research'),
(14811, 'https://ror.org/05x54c792', 'en', 1, 'https://ror.org/05x54c792 Women''s Cancer Resource Center'),
(14812, 'https://ror.org/007wqy698', 'no_lang_code', 1, 'https://ror.org/007wqy698 Vastrata (United Kingdom)'),
(14813, 'https://ror.org/0511egv62', 'no_lang_code', 1, 'https://ror.org/0511egv62 Viamet Pharmaceuticals (United States)'),
(14814, 'https://ror.org/05fwx1x78', 'no_lang_code', 1, 'https://ror.org/05fwx1x78 Vaxiion Therapeutics (United States)'),
(14815, 'https://ror.org/04kz5w381', 'en', 1, 'https://ror.org/04kz5w381 Family Health Enterprise'),
(14816, 'https://ror.org/01c2t8z64', 'en', 1, 'https://ror.org/01c2t8z64 Vector Physical Therapy & Aquatic Center'),
(14817, 'https://ror.org/042t7yh44', 'en', 1, 'https://ror.org/042t7yh44 Women''s Hospital, School of Medicine, Zhejiang University ęµ™ę±Ÿå¤§å­¦åŒ»å­¦é™¢é™„å±žå¦‡äŗ§ē§‘åŒ»é™¢'),
(14818, 'https://ror.org/05xfx3765', 'en', 1, 'https://ror.org/05xfx3765 Women''s International Leadership Institute'),
(14819, 'https://ror.org/03m0pn190', 'en', 1, 'https://ror.org/03m0pn190 Yo San University'),
(14820, 'https://ror.org/04jzz3236', 'en', 1, 'https://ror.org/04jzz3236 Victory Christian International Ministries'),
(14821, 'https://ror.org/01wt2ek55', 'en', 1, 'https://ror.org/01wt2ek55 Women''s International Network for Guatemalan Solutions'),
(14822, 'https://ror.org/026m45d12', 'en', 1, 'https://ror.org/026m45d12 Yonkers Partners in Education'),
(14823, 'https://ror.org/0218mdk53', 'en', 1, 'https://ror.org/0218mdk53 Victory Walk'),
(14824, 'https://ror.org/00kczx164', 'no_lang_code', 1, 'https://ror.org/00kczx164 Verda Bio (United States)'),
(14825, 'https://ror.org/056nnvc71', 'en', 1, 'https://ror.org/056nnvc71 Women''s Link Worldwide'),
(14826, 'https://ror.org/04k3etn62', 'en', 1, 'https://ror.org/04k3etn62 Vermont Cancer Support Network'),
(14827, 'https://ror.org/027cjrx78', 'en', 1, 'https://ror.org/027cjrx78 Vermont Program for Quality in Health Care'),
(14828, 'https://ror.org/033rkxx65', 'en', 1, 'https://ror.org/033rkxx65 Vermont Studio Center'),
(14829, 'https://ror.org/01w5m5321', 'en', 1, 'https://ror.org/01w5m5321 Young Adult Institute'),
(14830, 'https://ror.org/05406m268', 'no_lang_code', 1, 'https://ror.org/05406m268 Applied DNA Sciences (United States)'),
(14831, 'https://ror.org/02ba81j73', 'no_lang_code', 1, 'https://ror.org/02ba81j73 ViOptix (United States)'),
(14832, 'https://ror.org/02rxpm513', 'no_lang_code', 1, 'https://ror.org/02rxpm513 VLP Therapeutics (United States)'),
(14833, 'https://ror.org/04fq6zd17', 'en', 1, 'https://ror.org/04fq6zd17 Virginia Hospital Center');
INSERT INTO `rors` VALUES
(14834, 'https://ror.org/017aszj34', 'en', 1, 'https://ror.org/017aszj34 Voices Against Brain Cancer'),
(14835, 'https://ror.org/05tpcqx04', 'en', 1, 'https://ror.org/05tpcqx04 Volunteers of America Alaska'),
(14836, 'https://ror.org/044a2za73', 'en', 1, 'https://ror.org/044a2za73 Education of Young Leaders Society for Training and Development'),
(14837, 'https://ror.org/0466tpr53', 'en', 1, 'https://ror.org/0466tpr53 International Foundation of Employee Benefit Plans'),
(14838, 'https://ror.org/02k9d9y07', 'en', 1, 'https://ror.org/02k9d9y07 Academy of Management'),
(14839, 'https://ror.org/05cd3ee03', 'en', 1, 'https://ror.org/05cd3ee03 ACLS Humanities E-Book'),
(14840, 'https://ror.org/02ct8rs48', 'en', 1, 'https://ror.org/02ct8rs48 Young Survival Coalition'),
(14841, 'https://ror.org/00by5pn87', 'no_lang_code', 1, 'https://ror.org/00by5pn87 CUNA Mutual Group (United States)'),
(14842, 'https://ror.org/00jy1h085', 'en', 1, 'https://ror.org/00jy1h085 Young Women''s Christian Association'),
(14843, 'https://ror.org/014g11b23', 'en', 1, 'https://ror.org/014g11b23 University of Vermont Children’s Hospital'),
(14844, 'https://ror.org/00vdend65', 'en', 1, 'https://ror.org/00vdend65 International Union of Crystallography'),
(14845, 'https://ror.org/00ttyp561', 'en', 1, 'https://ror.org/00ttyp561 Addison Public Library'),
(14846, 'https://ror.org/019hqrp02', 'en', 1, 'https://ror.org/019hqrp02 Iron County Historical Museum'),
(14847, 'https://ror.org/015jw8x57', 'en', 1, 'https://ror.org/015jw8x57 Youth Alive Uganda'),
(14848, 'https://ror.org/02j42wf49', 'en', 1, 'https://ror.org/02j42wf49 Cuyahoga County Public Library'),
(14849, 'https://ror.org/00egpfv87', 'no_lang_code', 1, 'https://ror.org/00egpfv87 Adelphi Group (United Kingdom)'),
(14850, 'https://ror.org/004rj7d23', 'en', 1, 'https://ror.org/004rj7d23 Dance Heritage Coalition'),
(14851, 'https://ror.org/03t1snc02', 'en', 1, 'https://ror.org/03t1snc02 Advocate South Suburban Hospital'),
(14852, 'https://ror.org/008ja9m31', 'en', 1, 'https://ror.org/008ja9m31 IT''S TIME TEXAS'),
(14853, 'https://ror.org/03gqeqw02', 'en', 1, 'https://ror.org/03gqeqw02 Youth Net and Counselling'),
(14854, 'https://ror.org/00xvfm661', 'en', 1, 'https://ror.org/00xvfm661 Advocate Trinity Hospital'),
(14855, 'https://ror.org/006p15d12', 'en', 1, 'https://ror.org/006p15d12 Daughters of the American Revolution'),
(14856, 'https://ror.org/00g1w6p21', 'en', 1, 'https://ror.org/00g1w6p21 Youth & Opportunity United'),
(14857, 'https://ror.org/004jgdy75', 'en', 1, 'https://ror.org/004jgdy75 Youth Rights Media'),
(14858, 'https://ror.org/042656673', 'en', 1, 'https://ror.org/042656673 Agricultural Institute of Canada'),
(14859, 'https://ror.org/0374c0d66', 'en', 1, 'https://ror.org/0374c0d66 National Louis University'),
(14860, 'https://ror.org/05w0qtv14', 'en', 1, 'https://ror.org/05w0qtv14 American InterContinental University'),
(14861, 'https://ror.org/01yw7hk96', 'no_lang_code', 1, 'https://ror.org/01yw7hk96 Dragonfly Sales and Marketing Consulting (United States)'),
(14862, 'https://ror.org/056bwsz84', 'en', 1, 'https://ror.org/056bwsz84 Akron Art Museum'),
(14863, 'https://ror.org/05p403c12', 'en', 1, 'https://ror.org/05p403c12 Akron-Summit County Public Library'),
(14864, 'https://ror.org/05k7mmk88', 'en', 1, 'https://ror.org/05k7mmk88 Youth Unlimited Programs'),
(14865, 'https://ror.org/018xp1p31', 'en', 1, 'https://ror.org/018xp1p31 ITT Technical Institute'),
(14866, 'https://ror.org/03gg7kg14', 'en', 1, 'https://ror.org/03gg7kg14 youthSpark'),
(14867, 'https://ror.org/04sfrpz15', 'en', 1, 'https://ror.org/04sfrpz15 Dairyland Power Cooperative'),
(14868, 'https://ror.org/02gyj7q16', 'en', 1, 'https://ror.org/02gyj7q16 YouthWorks'),
(14869, 'https://ror.org/03rce1k45', 'en', 1, 'https://ror.org/03rce1k45 Daniel Boone Regional Library'),
(14870, 'https://ror.org/01y823z67', 'en', 1, 'https://ror.org/01y823z67 Danville Area Community College'),
(14871, 'https://ror.org/04ejmve12', 'no_lang_code', 1, 'https://ror.org/04ejmve12 J. J. Keller & Associates (United States)'),
(14872, 'https://ror.org/036hyk644', 'en', 1, 'https://ror.org/036hyk644 Nazarene Theological Seminary'),
(14873, 'https://ror.org/055e80y87', 'en', 1, 'https://ror.org/055e80y87 Davenport University'),
(14874, 'https://ror.org/03wfejh61', 'no_lang_code', 1, 'https://ror.org/03wfejh61 J.M. Smucker Company (United States)'),
(14875, 'https://ror.org/00x9bsj94', 'no_lang_code', 1, 'https://ror.org/00x9bsj94 Emirates NBD'),
(14876, 'https://ror.org/01w92sn15', 'en', 1, 'https://ror.org/01w92sn15 Jackson District Library'),
(14877, 'https://ror.org/05986z039', 'en', 1, 'https://ror.org/05986z039 Chancellor University'),
(14878, 'https://ror.org/00qmb6m92', 'en', 1, 'https://ror.org/00qmb6m92 The Nelson-Atkins Museum of Art'),
(14879, 'https://ror.org/03k3pk368', 'en', 1, 'https://ror.org/03k3pk368 Allen County Public Library'),
(14880, 'https://ror.org/010sn2g43', 'en', 1, 'https://ror.org/010sn2g43 Jasper County Public Library'),
(14881, 'https://ror.org/006k1vg57', 'no_lang_code', 1, 'https://ror.org/006k1vg57 Allen Press (United States)'),
(14882, 'https://ror.org/0435xdk58', 'en', 1, 'https://ror.org/0435xdk58 NERL Consortium'),
(14883, 'https://ror.org/043fmt380', 'en', 1, 'https://ror.org/043fmt380 Dayton Metro Library'),
(14884, 'https://ror.org/04stxdv93', 'en', 1, 'https://ror.org/04stxdv93 Jefferson County Library System'),
(14885, 'https://ror.org/02h1ae871', 'no_lang_code', 1, 'https://ror.org/02h1ae871 Alliant Energy (United States)'),
(14886, 'https://ror.org/007b60k22', 'en', 1, 'https://ror.org/007b60k22 Empire State Library Network'),
(14887, 'https://ror.org/02dzmwb51', 'en', 1, 'https://ror.org/02dzmwb51 Decatur Public Library'),
(14888, 'https://ror.org/01479wc11', 'en', 1, 'https://ror.org/01479wc11 Association of Learned and Professional Society Publishers'),
(14889, 'https://ror.org/00tf97v72', 'no_lang_code', 1, 'https://ror.org/00tf97v72 Zealand Pharma (Denmark)'),
(14890, 'https://ror.org/00wxk2s46', 'en', 1, 'https://ror.org/00wxk2s46 Newberry Library'),
(14891, 'https://ror.org/02vv13147', 'en', 1, 'https://ror.org/02vv13147 Deerfield Public Library'),
(14892, 'https://ror.org/040jdz280', 'en', 1, 'https://ror.org/040jdz280 National Federation of Advanced Information Services'),
(14893, 'https://ror.org/04kq9w562', 'en', 1, 'https://ror.org/04kq9w562 JKM Library'),
(14894, 'https://ror.org/03rjyn861', 'en', 1, 'https://ror.org/03rjyn861 Zekel Healthcare'),
(14895, 'https://ror.org/05q0wgb11', 'en', 1, 'https://ror.org/05q0wgb11 John A. Logan College'),
(14896, 'https://ror.org/02ph8mh81', 'no_lang_code', 1, 'https://ror.org/02ph8mh81 Zenobia Therapeutics (United States)'),
(14897, 'https://ror.org/01h49hc89', 'en', 1, 'https://ror.org/01h49hc89 Normal Public Library'),
(14898, 'https://ror.org/00gbzqw74', 'en', 1, 'https://ror.org/00gbzqw74 Wolf Park'),
(14899, 'https://ror.org/05jd76e15', 'en', 1, 'https://ror.org/05jd76e15 Zero Breast Cancer'),
(14900, 'https://ror.org/000jj6973', 'en', 1, 'https://ror.org/000jj6973 John Wood Community College'),
(14901, 'https://ror.org/010qzgm63', 'en', 1, 'https://ror.org/010qzgm63 Northbrook Public Library'),
(14902, 'https://ror.org/01pqc3561', 'en', 1, 'https://ror.org/01pqc3561 American Academy of Child and Adolescent Psychiatry'),
(14903, 'https://ror.org/022vf5950', 'en', 1, 'https://ror.org/022vf5950 Northcentral Technical College'),
(14904, 'https://ror.org/0024sf220', 'en', 1, 'https://ror.org/0024sf220 American Accounting Association'),
(14905, 'https://ror.org/03679qg67', 'en', 1, 'https://ror.org/03679qg67 Johnson County Public Library'),
(14906, 'https://ror.org/00mcbta55', 'en', 1, 'https://ror.org/00mcbta55 American Association for Clinical Chemistry'),
(14907, 'https://ror.org/016yz4963', 'en', 1, 'https://ror.org/016yz4963 Des Plaines Public Library'),
(14908, 'https://ror.org/02v6d7v96', 'en', 1, 'https://ror.org/02v6d7v96 Joliet Public Library'),
(14909, 'https://ror.org/02j798m12', 'en', 1, 'https://ror.org/02j798m12 American Bankers Association'),
(14910, 'https://ror.org/05gjd3067', 'en', 1, 'https://ror.org/05gjd3067 Youth Action on Tobacco Control and Health'),
(14911, 'https://ror.org/00a1rzv11', 'en', 1, 'https://ror.org/00a1rzv11 American Institute of Aeronautics and Astronautics'),
(14912, 'https://ror.org/05ecqm310', 'en', 1, 'https://ror.org/05ecqm310 Northwest State Community College'),
(14913, 'https://ror.org/05ngeh012', 'en', 1, 'https://ror.org/05ngeh012 Northwestern College - Illinois'),
(14914, 'https://ror.org/00f3ntm46', 'en', 1, 'https://ror.org/00f3ntm46 American Nuclear Society'),
(14915, 'https://ror.org/025e3bx20', 'en', 1, 'https://ror.org/025e3bx20 Northwestern Michigan College'),
(14916, 'https://ror.org/01np7wb66', 'en', 1, 'https://ror.org/01np7wb66 White Oak Library District'),
(14917, 'https://ror.org/03xr60403', 'en', 1, 'https://ror.org/03xr60403 Terra State Community College'),
(14918, 'https://ror.org/01nm0pb19', 'en', 1, 'https://ror.org/01nm0pb19 Judson University'),
(14919, 'https://ror.org/04zjxe411', 'en', 1, 'https://ror.org/04zjxe411 Detroit Public Library'),
(14920, 'https://ror.org/0444akq51', 'no_lang_code', 1, 'https://ror.org/0444akq51 Now Publishers (United States)'),
(14921, 'https://ror.org/00rw81y84', 'en', 1, 'https://ror.org/00rw81y84 Kalamazoo Valley Community College'),
(14922, 'https://ror.org/00g46nx55', 'en', 1, 'https://ror.org/00g46nx55 New York State Energy Research and Development Authority'),
(14923, 'https://ror.org/023hfjp48', 'en', 1, 'https://ror.org/023hfjp48 Kankakee Community College'),
(14924, 'https://ror.org/05kxwp233', 'en', 1, 'https://ror.org/05kxwp233 Oak Lawn Public Library'),
(14925, 'https://ror.org/04mk6vb04', 'en', 1, 'https://ror.org/04mk6vb04 Southeastern Wisconsin Information Technology Exchange Consortium'),
(14926, 'https://ror.org/0201vsb50', 'en', 1, 'https://ror.org/0201vsb50 Oak Park Public Library'),
(14927, 'https://ror.org/03zh9kr32', 'en', 1, 'https://ror.org/03zh9kr32 American Sokol'),
(14928, 'https://ror.org/02jatdd65', 'en', 1, 'https://ror.org/02jatdd65 American Theological Library Association'),
(14929, 'https://ror.org/03nsh5473', 'en', 1, 'https://ror.org/03nsh5473 Oakland Community College'),
(14930, 'https://ror.org/05kxs0h64', 'en', 1, 'https://ror.org/05kxs0h64 Kankakee County Museum'),
(14931, 'https://ror.org/04pwkqp57', 'en', 1, 'https://ror.org/04pwkqp57 Kansas City Public Library'),
(14932, 'https://ror.org/018pahb94', 'en', 1, 'https://ror.org/018pahb94 Texas Digital Library'),
(14933, 'https://ror.org/053pbpj30', 'en', 1, 'https://ror.org/053pbpj30 American Veterinary Medical Association'),
(14934, 'https://ror.org/00b132w65', 'en', 1, 'https://ror.org/00b132w65 Texas State Library and Archives Commission'),
(14935, 'https://ror.org/05cmkp264', 'en', 1, 'https://ror.org/05cmkp264 British Institute of Radiology'),
(14936, 'https://ror.org/028215596', 'en', 1, 'https://ror.org/028215596 Ontario Council of University Libraries'),
(14937, 'https://ror.org/02z38kp20', 'en', 1, 'https://ror.org/02z38kp20 DeVry University'),
(14938, 'https://ror.org/04b3zhw41', 'en', 1, 'https://ror.org/04b3zhw41 Kaskaskia College'),
(14939, 'https://ror.org/05pdgb763', 'no_lang_code', 1, 'https://ror.org/05pdgb763 Analog and Digital Peripherals (United States)'),
(14940, 'https://ror.org/05y26rr34', 'en', 1, 'https://ror.org/05y26rr34 Ancilla College'),
(14941, 'https://ror.org/05h8s0v03', 'en', 1, 'https://ror.org/05h8s0v03 The Ohio State University at Mansfield'),
(14942, 'https://ror.org/035bjd142', 'no_lang_code', 1, 'https://ror.org/035bjd142 Anheuser-Busch InBev (United States)'),
(14943, 'https://ror.org/05pbmky22', 'no_lang_code', 1, 'https://ror.org/05pbmky22 Dickinson Wright (United States)'),
(14944, 'https://ror.org/00mfsk397', 'en', 1, 'https://ror.org/00mfsk397 District of Columbia Public Library'),
(14945, 'https://ror.org/05r2g1b90', 'en', 1, 'https://ror.org/05r2g1b90 Annual Reviews'),
(14946, 'https://ror.org/0288es483', 'en', 1, 'https://ror.org/0288es483 Ewing Marion Kauffman Foundation'),
(14947, 'https://ror.org/03n4efr54', 'no_lang_code', 1, 'https://ror.org/03n4efr54 OhioNET'),
(14948, 'https://ror.org/01bwmqz48', 'en', 1, 'https://ror.org/01bwmqz48 One Earth Future Foundation'),
(14949, 'https://ror.org/004h3nh40', 'en', 1, 'https://ror.org/004h3nh40 Kendall College'),
(14950, 'https://ror.org/022pv2091', 'en', 1, 'https://ror.org/022pv2091 Appleton Public Library'),
(14951, 'https://ror.org/05jp8nm45', 'en', 1, 'https://ror.org/05jp8nm45 Open The Government'),
(14952, 'https://ror.org/005v5p387', 'en', 1, 'https://ror.org/005v5p387 Kent District Library'),
(14953, 'https://ror.org/04t3pzj12', 'en', 1, 'https://ror.org/04t3pzj12 Archdiocese of Chicago'),
(14954, 'https://ror.org/01b3cvv10', 'en', 1, 'https://ror.org/01b3cvv10 Archdiocese of St. Louis ArchidiocĆØse Catholique de St. Louis'),
(14955, 'https://ror.org/019p1xx37', 'en', 1, 'https://ror.org/019p1xx37 College des arts mƩdicaux de kettering Kettering College'),
(14956, 'https://ror.org/02amd0s90', 'en', 1, 'https://ror.org/02amd0s90 Tippecanoe County Public Library'),
(14957, 'https://ror.org/013ddcx26', 'en', 1, 'https://ror.org/013ddcx26 Orland Park Public Library'),
(14958, 'https://ror.org/00f3sby32', 'en', 1, 'https://ror.org/00f3sby32 Kirtland Community College'),
(14959, 'https://ror.org/00q25bx70', 'no_lang_code', 1, 'https://ror.org/00q25bx70 Doximity (United States)'),
(14960, 'https://ror.org/0303sda91', 'en', 1, 'https://ror.org/0303sda91 Kishwaukee College'),
(14961, 'https://ror.org/0101b3513', 'en', 1, 'https://ror.org/0101b3513 Toledo Museum of Art'),
(14962, 'https://ror.org/04np39c31', 'en', 1, 'https://ror.org/04np39c31 Oshkosh Public Library'),
(14963, 'https://ror.org/00mp1mt27', 'en', 1, 'https://ror.org/00mp1mt27 Knowledge Systems Institute'),
(14964, 'https://ror.org/03sb41874', 'en', 1, 'https://ror.org/03sb41874 Arlington Heights Memorial Library'),
(14965, 'https://ror.org/01cr6y145', 'en', 1, 'https://ror.org/01cr6y145 Toledo Lucas County Public Library'),
(14966, 'https://ror.org/02xfmex92', 'en', 1, 'https://ror.org/02xfmex92 Army and Navy Club'),
(14967, 'https://ror.org/04r50xh35', 'en', 1, 'https://ror.org/04r50xh35 Palatine Public Library District'),
(14968, 'https://ror.org/03kyqs312', 'en', 1, 'https://ror.org/03kyqs312 Art Institute of Chicago Institut d''Art de Chicago Instituto de Arte de Chicago'),
(14969, 'https://ror.org/02m6s1q30', 'en', 1, 'https://ror.org/02m6s1q30 Pennsylvania Academic Library Consortium'),
(14970, 'https://ror.org/04hmk0w62', 'en', 1, 'https://ror.org/04hmk0w62 Kokomo-Howard County Public Library'),
(14971, 'https://ror.org/00ntmzg98', 'no_lang_code', 1, 'https://ror.org/00ntmzg98 Meritor (United States)'),
(14972, 'https://ror.org/01avta769', 'en', 1, 'https://ror.org/01avta769 Trinity Christian College'),
(14973, 'https://ror.org/050hz4v21', 'no_lang_code', 1, 'https://ror.org/050hz4v21 A2Dominion'),
(14974, 'https://ror.org/0454dtg60', 'en', 1, 'https://ror.org/0454dtg60 Reaching Across Illinois Library System'),
(14975, 'https://ror.org/0151q7p66', 'en', 1, 'https://ror.org/0151q7p66 Assemblies of God Theological Seminary'),
(14976, 'https://ror.org/0382ee542', 'en', 1, 'https://ror.org/0382ee542 Park Ridge Public Library'),
(14977, 'https://ror.org/0497jzm12', 'no_lang_code', 1, 'https://ror.org/0497jzm12 Dykema (United States)'),
(14978, 'https://ror.org/025jta476', 'en', 1, 'https://ror.org/025jta476 Experimental Aircraft Association'),
(14979, 'https://ror.org/0251ehn88', 'en', 1, 'https://ror.org/0251ehn88 Trinity International University'),
(14980, 'https://ror.org/03cpyj611', 'en', 1, 'https://ror.org/03cpyj611 East Central College'),
(14981, 'https://ror.org/04qv87944', 'en', 1, 'https://ror.org/04qv87944 Trinity Lutheran Seminary'),
(14982, 'https://ror.org/04sn0fx55', 'en', 1, 'https://ror.org/04sn0fx55 Troy Public Library'),
(14983, 'https://ror.org/030148f67', 'en', 1, 'https://ror.org/030148f67 Tuscarawas County Public Library'),
(14984, 'https://ror.org/03hd9e620', 'en', 1, 'https://ror.org/03hd9e620 Pediatric Neurology Briefs'),
(14985, 'https://ror.org/03r8kkn98', 'en', 1, 'https://ror.org/03r8kkn98 L.E. Phillips Memorial Public Library'),
(14986, 'https://ror.org/058hrmf93', 'en', 1, 'https://ror.org/058hrmf93 La Crosse Public Library'),
(14987, 'https://ror.org/03kxew167', 'en', 1, 'https://ror.org/03kxew167 La Grange Public Library'),
(14988, 'https://ror.org/030z4b668', 'en', 1, 'https://ror.org/030z4b668 Assyrian Universal Alliance Foundation'),
(14989, 'https://ror.org/03x9snd86', 'no_lang_code', 1, 'https://ror.org/03x9snd86 PeerJ (United States)'),
(14990, 'https://ror.org/05rs7kt47', 'en', 1, 'https://ror.org/05rs7kt47 Peninsula Library and Historical Society'),
(14991, 'https://ror.org/00dsy9f04', 'no_lang_code', 1, 'https://ror.org/00dsy9f04 EBSCO Industries (United States) EBSCO Information Services Ebsco information services'),
(14992, 'https://ror.org/02h98mq12', 'en', 1, 'https://ror.org/02h98mq12 Peoria Public Library'),
(14993, 'https://ror.org/03gnfa870', 'en', 1, 'https://ror.org/03gnfa870 Athenaeum of Ohio'),
(14994, 'https://ror.org/012f6s028', 'en', 1, 'https://ror.org/012f6s028 Hormel Foundation'),
(14995, 'https://ror.org/02qmwve08', 'en', 1, 'https://ror.org/02qmwve08 Auburn Cord Duesenberg Automobile Museum'),
(14996, 'https://ror.org/041dgkx86', 'en', 1, 'https://ror.org/041dgkx86 Audrain County Historical Society'),
(14997, 'https://ror.org/03z3dqe20', 'en', 1, 'https://ror.org/03z3dqe20 Educopia Institute'),
(14998, 'https://ror.org/02jg7b497', 'en', 1, 'https://ror.org/02jg7b497 Ukrainian Museum-Archives'),
(14999, 'https://ror.org/019wcja80', 'en', 1, 'https://ror.org/019wcja80 Lake County Forest Preserves'),
(15000, 'https://ror.org/00dvjtq12', 'en', 1, 'https://ror.org/00dvjtq12 Lake Erie College'),
(15001, 'https://ror.org/00md6a739', 'en', 1, 'https://ror.org/00md6a739 Phillips Collection'),
(15002, 'https://ror.org/05n2bp911', 'en', 1, 'https://ror.org/05n2bp911 Eiteljorg Museum of American Indians and Western Art'),
(15003, 'https://ror.org/04bd74a48', 'en', 1, 'https://ror.org/04bd74a48 Lake Land College'),
(15004, 'https://ror.org/01tr8yj97', 'en', 1, 'https://ror.org/01tr8yj97 Aurora Public Library'),
(15005, 'https://ror.org/008zgvp64', 'en', 1, 'https://ror.org/008zgvp64 Public Library of Science'),
(15006, 'https://ror.org/019qrs910', 'en', 1, 'https://ror.org/019qrs910 Electronic Privacy Information Center'),
(15007, 'https://ror.org/04zagqw70', 'en', 1, 'https://ror.org/04zagqw70 Plymouth Historical Museum'),
(15008, 'https://ror.org/0510trc57', 'en', 1, 'https://ror.org/0510trc57 Lake Michigan College'),
(15009, 'https://ror.org/05w72d176', 'en', 1, 'https://ror.org/05w72d176 The People of the United Methodist Church'),
(15010, 'https://ror.org/02ep5c830', 'en', 1, 'https://ror.org/02ep5c830 Pontifical College Josephinum'),
(15011, 'https://ror.org/01j1n9y37', 'en', 1, 'https://ror.org/01j1n9y37 Ave Maria School of Law Escuela de Derecho Ave MarĆ­a'),
(15012, 'https://ror.org/02p30c858', 'en', 1, 'https://ror.org/02p30c858 Lakeland Library Cooperative'),
(15013, 'https://ror.org/01weqjw56', 'en', 1, 'https://ror.org/01weqjw56 Elk Grove Village Public Library'),
(15014, 'https://ror.org/048rsxe24', 'en', 1, 'https://ror.org/048rsxe24 Lakeshore Technical College'),
(15015, 'https://ror.org/05r830x40', 'en', 1, 'https://ror.org/05r830x40 Grand Forks Air Force Base'),
(15016, 'https://ror.org/01015b329', 'en', 1, 'https://ror.org/01015b329 Elkhart Public Library'),
(15017, 'https://ror.org/051tq1j63', 'en', 1, 'https://ror.org/051tq1j63 Elmhurst History Museum'),
(15018, 'https://ror.org/02yfbej13', 'en', 1, 'https://ror.org/02yfbej13 Elmhurst Public Library'),
(15019, 'https://ror.org/043bemg15', 'en', 1, 'https://ror.org/043bemg15 Lakeview College of Nursing'),
(15020, 'https://ror.org/01yc4ac23', 'en', 1, 'https://ror.org/01yc4ac23 Baldwin Public Library'),
(15021, 'https://ror.org/03p9p9g95', 'en', 1, 'https://ror.org/03p9p9g95 Balzekas Museum of Lithuanian Culture'),
(15022, 'https://ror.org/04vejaw21', 'en', 1, 'https://ror.org/04vejaw21 Portage County District Library'),
(15023, 'https://ror.org/02vpcxy68', 'en', 1, 'https://ror.org/02vpcxy68 Elyria Public Library System'),
(15024, 'https://ror.org/00s7qay03', 'en', 1, 'https://ror.org/00s7qay03 Portage County Public Library'),
(15025, 'https://ror.org/02nwxzm09', 'en', 1, 'https://ror.org/02nwxzm09 Lansing Community College'),
(15026, 'https://ror.org/040shh675', 'en', 1, 'https://ror.org/040shh675 Porter County Public Library System'),
(15027, 'https://ror.org/04sr9sh66', 'en', 1, 'https://ror.org/04sr9sh66 Bartlett Public Library District'),
(15028, 'https://ror.org/03084a880', 'no_lang_code', 1, 'https://ror.org/03084a880 Latham & Watkins (United States)'),
(15029, 'https://ror.org/04asmr016', 'en', 1, 'https://ror.org/04asmr016 Bay County Library System'),
(15030, 'https://ror.org/02ah3w196', 'en', 1, 'https://ror.org/02ah3w196 Leather Archives and Museum'),
(15031, 'https://ror.org/04fmn4153', 'en', 1, 'https://ror.org/04fmn4153 Leelanau Historical Society'),
(15032, 'https://ror.org/02wd3kv51', 'en', 1, 'https://ror.org/02wd3kv51 Leigh Yawkey Woodson Art Museum'),
(15033, 'https://ror.org/04axy2g94', 'en', 1, 'https://ror.org/04axy2g94 Euclid Public Library'),
(15034, 'https://ror.org/04ybtcs72', 'en', 1, 'https://ror.org/04ybtcs72 Eureka College'),
(15035, 'https://ror.org/0588atr11', 'en', 1, 'https://ror.org/0588atr11 Illinois Community College Board'),
(15036, 'https://ror.org/057tpct07', 'en', 1, 'https://ror.org/057tpct07 Lenawee District Library'),
(15037, 'https://ror.org/026tpeg39', 'en', 1, 'https://ror.org/026tpeg39 Evanston Public Library'),
(15038, 'https://ror.org/04pp47x89', 'en', 1, 'https://ror.org/04pp47x89 Evansville Vanderburgh Public Library'),
(15039, 'https://ror.org/02deb7v37', 'en', 1, 'https://ror.org/02deb7v37 Ohio Attorney General''s Office'),
(15040, 'https://ror.org/04tqs3t69', 'en', 1, 'https://ror.org/04tqs3t69 Bay College'),
(15041, 'https://ror.org/0029qcb02', 'no_lang_code', 1, 'https://ror.org/0029qcb02 Begell House (United States)'),
(15042, 'https://ror.org/034jtsg79', 'no_lang_code', 1, 'https://ror.org/034jtsg79 Evidentia Publishing (Netherlands)'),
(15043, 'https://ror.org/00gpg2q85', 'en', 1, 'https://ror.org/00gpg2q85 Lexington College'),
(15044, 'https://ror.org/00a25bg52', 'en', 1, 'https://ror.org/00a25bg52 BibliothĆØque et archives canada Library and Archives Canada'),
(15045, 'https://ror.org/002r6qy28', 'en', 1, 'https://ror.org/002r6qy28 Library of Michigan'),
(15046, 'https://ror.org/02h3mfv55', 'en', 1, 'https://ror.org/02h3mfv55 Lincoln Christian University'),
(15047, 'https://ror.org/051v7cd19', 'en', 1, 'https://ror.org/051v7cd19 Belmont College'),
(15048, 'https://ror.org/02x5wxx17', 'no_lang_code', 1, 'https://ror.org/02x5wxx17 Faculty of 1000 (United States)'),
(15049, 'https://ror.org/04hf9rd26', 'en', 1, 'https://ror.org/04hf9rd26 Preble County District Library'),
(15050, 'https://ror.org/00mdqpf86', 'no_lang_code', 1, 'https://ror.org/00mdqpf86 Bepress (United States)'),
(15051, 'https://ror.org/05wttv044', 'en', 1, 'https://ror.org/05wttv044 Berwyn Public Library'),
(15052, 'https://ror.org/02venxm51', 'en', 1, 'https://ror.org/02venxm51 Principia College'),
(15053, 'https://ror.org/025nqct78', 'en', 1, 'https://ror.org/025nqct78 Agencia de Inteligencia de la Defensa Defense Intelligence Agency'),
(15054, 'https://ror.org/0009s9p66', 'no_lang_code', 1, 'https://ror.org/0009s9p66 BioMed Central (United Kingdom)'),
(15055, 'https://ror.org/05kn3ey67', 'no_lang_code', 1, 'https://ror.org/05kn3ey67 EncyclopƦdia Britannica (United States)'),
(15056, 'https://ror.org/01nqk4x38', 'en', 1, 'https://ror.org/01nqk4x38 National Defense University Universidad Nacional de Defensa'),
(15057, 'https://ror.org/033whn587', 'en', 1, 'https://ror.org/033whn587 Lincoln Library'),
(15058, 'https://ror.org/00d8n5w16', 'no_lang_code', 1, 'https://ror.org/00d8n5w16 Bioscientifica (United Kingdom)'),
(15059, 'https://ror.org/05v7gv656', 'en', 1, 'https://ror.org/05v7gv656 Federal Energy Regulatory Commission'),
(15060, 'https://ror.org/03n7scr80', 'en', 1, 'https://ror.org/03n7scr80 Federal Reserve Bank of Chicago'),
(15061, 'https://ror.org/01wxdvj03', 'en', 1, 'https://ror.org/01wxdvj03 Federal Reserve Bank of Cleveland'),
(15062, 'https://ror.org/015h21b91', 'en', 1, 'https://ror.org/015h21b91 Federal Reserve Bank of Kansas City'),
(15063, 'https://ror.org/03wwts623', 'en', 1, 'https://ror.org/03wwts623 Public Libraries of Saginaw'),
(15064, 'https://ror.org/020kk1193', 'en', 1, 'https://ror.org/020kk1193 Black Metropolis Research Consortium'),
(15065, 'https://ror.org/03wk3n561', 'en', 1, 'https://ror.org/03wk3n561 Biblioteca PĆŗblica de Cincinnati Public Library of Cincinnati and Hamilton County'),
(15066, 'https://ror.org/047mzc334', 'en', 1, 'https://ror.org/047mzc334 Lisle Library District'),
(15067, 'https://ror.org/05g6nzm31', 'en', 1, 'https://ror.org/05g6nzm31 Bloomfield Township Public Library'),
(15068, 'https://ror.org/03nrmdg87', 'en', 1, 'https://ror.org/03nrmdg87 Public Library of Mount Vernon and Knox County'),
(15069, 'https://ror.org/02skhjj30', 'en', 1, 'https://ror.org/02skhjj30 Federal Reserve Bank of St. Louis'),
(15070, 'https://ror.org/03vqwnv59', 'en', 1, 'https://ror.org/03vqwnv59 Grand Rapids Public Museum'),
(15071, 'https://ror.org/0420ycb55', 'en', 1, 'https://ror.org/0420ycb55 Lithuanian Research and Studies Center'),
(15072, 'https://ror.org/05f9xnq60', 'en', 1, 'https://ror.org/05f9xnq60 Livonia Public Library'),
(15073, 'https://ror.org/027w3dq81', 'en', 1, 'https://ror.org/027w3dq81 Blue Mountain Community College'),
(15074, 'https://ror.org/02xa7j758', 'en', 1, 'https://ror.org/02xa7j758 Queensland Children’s Medical Research Institute'),
(15075, 'https://ror.org/02jpn1774', 'en', 1, 'https://ror.org/02jpn1774 Federal Trade Commission'),
(15076, 'https://ror.org/01q6bfj36', 'en', 1, 'https://ror.org/01q6bfj36 Blue Springs Historical Society'),
(15077, 'https://ror.org/00v448643', 'en', 1, 'https://ror.org/00v448643 Federal Reserve Board of Governors'),
(15078, 'https://ror.org/00xgafq27', 'en', 1, 'https://ror.org/00xgafq27 Comisión electoral federal Commission électorale fédérale Federal Election Commission'),
(15079, 'https://ror.org/02ecpn164', 'en', 1, 'https://ror.org/02ecpn164 Quincy Museum'),
(15080, 'https://ror.org/047xexk42', 'en', 1, 'https://ror.org/047xexk42 Lorain Public Library System'),
(15081, 'https://ror.org/05k551411', 'en', 1, 'https://ror.org/05k551411 Racine Art Museum'),
(15082, 'https://ror.org/020xpp268', 'en', 1, 'https://ror.org/020xpp268 Racine Heritage Museum'),
(15083, 'https://ror.org/02vawy993', 'en', 1, 'https://ror.org/02vawy993 United States Government Accountability Office'),
(15084, 'https://ror.org/05fjnk551', 'en', 1, 'https://ror.org/05fjnk551 Racine Public Library'),
(15085, 'https://ror.org/04jgrhh38', 'en', 1, 'https://ror.org/04jgrhh38 United States Government Publishing Office'),
(15086, 'https://ror.org/00g9xdc37', 'en', 1, 'https://ror.org/00g9xdc37 United States House of Representatives'),
(15087, 'https://ror.org/0156efr50', 'no_lang_code', 1, 'https://ror.org/0156efr50 Rand McNally (United States)'),
(15088, 'https://ror.org/05hsggr76', 'en', 1, 'https://ror.org/05hsggr76 Etats-unis. international trade commission United States International Trade Commission'),
(15089, 'https://ror.org/0376wcg10', 'en', 1, 'https://ror.org/0376wcg10 National Counterterrorism Center'),
(15090, 'https://ror.org/051659894', 'no_lang_code', 1, 'https://ror.org/051659894 BP (United States)'),
(15091, 'https://ror.org/006yg7y02', 'en', 1, 'https://ror.org/006yg7y02 Fond du Lac Historical Society'),
(15092, 'https://ror.org/05q0qkg33', 'en', 1, 'https://ror.org/05q0qkg33 Fontbonne University'),
(15093, 'https://ror.org/02qq5j437', 'en', 1, 'https://ror.org/02qq5j437 Brimfield Public Library'),
(15094, 'https://ror.org/03hndsz31', 'en', 1, 'https://ror.org/03hndsz31 British Editorial Society of Bone & Joint Surgery'),
(15095, 'https://ror.org/0351agv44', 'en', 1, 'https://ror.org/0351agv44 National Labor Relations Board'),
(15096, 'https://ror.org/01afspn38', 'en', 1, 'https://ror.org/01afspn38 Prairie State College'),
(15097, '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'),
(15098, 'https://ror.org/05ffhjy73', 'en', 1, 'https://ror.org/05ffhjy73 MacCormac College'),
(15099, 'https://ror.org/01ep4ry35', 'en', 1, 'https://ror.org/01ep4ry35 Madison County Historical Society'),
(15100, 'https://ror.org/0114yjq47', 'en', 1, 'https://ror.org/0114yjq47 Oficina de Patentes y Marcas de Estados Unidos United States Patent and Trademark Office'),
(15101, 'https://ror.org/05m09p369', 'en', 1, 'https://ror.org/05m09p369 Brown County Library'),
(15102, 'https://ror.org/04zyghr89', 'en', 1, 'https://ror.org/04zyghr89 Pension Benefit Guaranty Corporation'),
(15103, 'https://ror.org/04wzebn39', 'en', 1, 'https://ror.org/04wzebn39 Brown County Public Library'),
(15104, 'https://ror.org/04pfsgw07', 'en', 1, 'https://ror.org/04pfsgw07 Fort Wayne Museum of Art'),
(15105, 'https://ror.org/0507a9w72', 'en', 1, 'https://ror.org/0507a9w72 Brown Mackie College'),
(15106, 'https://ror.org/05spzbw39', 'en', 1, 'https://ror.org/05spzbw39 Brown Mackie College'),
(15107, 'https://ror.org/008g9p546', 'en', 1, 'https://ror.org/008g9p546 Servicio Postal de los Estados Unidos United States Postal Service'),
(15108, 'https://ror.org/00wfvsb96', 'en', 1, 'https://ror.org/00wfvsb96 Fountaindale Public Library'),
(15109, 'https://ror.org/055he6t71', 'en', 1, 'https://ror.org/055he6t71 Mansfield Richland County Public Library'),
(15110, 'https://ror.org/05x3t0w31', 'en', 1, 'https://ror.org/05x3t0w31 Richland Community College'),
(15111, 'https://ror.org/02rdpzb15', 'no_lang_code', 1, 'https://ror.org/02rdpzb15 Bloomberg (United States)'),
(15112, 'https://ror.org/03hr9ag95', 'no_lang_code', 1, 'https://ror.org/03hr9ag95 RMG Consultants (United States)'),
(15113, 'https://ror.org/0554emb10', 'en', 1, 'https://ror.org/0554emb10 Manufacturers’ Representatives Educational Research Foundation'),
(15114, 'https://ror.org/00tsj2f58', 'en', 1, 'https://ror.org/00tsj2f58 United States Senate Library'),
(15115, 'https://ror.org/0295yjh78', 'en', 1, 'https://ror.org/0295yjh78 Rock and Roll Hall of Fame and Museum'),
(15116, 'https://ror.org/032tkjf28', 'no_lang_code', 1, 'https://ror.org/032tkjf28 WPP (United States)'),
(15117, 'https://ror.org/051h5at53', 'en', 1, 'https://ror.org/051h5at53 Marathon County Public Library'),
(15118, 'https://ror.org/059kj1x27', 'en', 1, 'https://ror.org/059kj1x27 Rock County Historical Society'),
(15119, 'https://ror.org/0049d1v72', 'en', 1, 'https://ror.org/0049d1v72 United States Tax Court'),
(15120, 'https://ror.org/05jtwwy05', 'en', 1, 'https://ror.org/05jtwwy05 Rock Valley College'),
(15121, 'https://ror.org/01qwxyq54', 'en', 1, 'https://ror.org/01qwxyq54 Marinette County Libraries'),
(15122, 'https://ror.org/04w30qj40', 'en', 1, 'https://ror.org/04w30qj40 Free Methodist Church'),
(15123, 'https://ror.org/00dttrm27', 'en', 1, 'https://ror.org/00dttrm27 Rockford Public Library'),
(15124, 'https://ror.org/043b9gp27', 'en', 1, 'https://ror.org/043b9gp27 Architect of the Capitol'),
(15125, 'https://ror.org/0052bbe49', 'en', 1, 'https://ror.org/0052bbe49 Rocky River Public Library'),
(15126, 'https://ror.org/003wz8a04', 'en', 1, 'https://ror.org/003wz8a04 Friends of Historic Boonville'),
(15127, 'https://ror.org/02f6vcb37', 'en', 1, 'https://ror.org/02f6vcb37 Martin Township Public Library'),
(15128, 'https://ror.org/02em5fs68', 'en', 1, 'https://ror.org/02em5fs68 Rodman Public Library'),
(15129, 'https://ror.org/05ttdb909', 'en', 1, 'https://ror.org/05ttdb909 Max Perutz Library'),
(15130, 'https://ror.org/04vft5g71', 'en', 1, 'https://ror.org/04vft5g71 Ruth Mott Foundation'),
(15131, 'https://ror.org/0505c3j52', 'no_lang_code', 1, 'https://ror.org/0505c3j52 Sabinet (South Africa)'),
(15132, 'https://ror.org/054zgtc98', 'en', 1, 'https://ror.org/054zgtc98 Calumet College of Saint Joseph Calumet College of St. Joseph'),
(15133, 'https://ror.org/055s5z318', 'en', 1, 'https://ror.org/055s5z318 Sacred Heart Major Seminary'),
(15134, 'https://ror.org/04xqb6e91', 'en', 1, 'https://ror.org/04xqb6e91 Calvary Bible College'),
(15135, 'https://ror.org/0369thf37', 'en', 1, 'https://ror.org/0369thf37 Illinois Eastern Community Colleges'),
(15136, 'https://ror.org/00kf0ew11', 'en', 1, 'https://ror.org/00kf0ew11 University Center of Lake County'),
(15137, 'https://ror.org/046b74p91', 'no_lang_code', 1, 'https://ror.org/046b74p91 Mayer Brown (United States)'),
(15138, 'https://ror.org/05xdrja94', 'en', 1, 'https://ror.org/05xdrja94 Gail Borden Public Library District'),
(15139, 'https://ror.org/00w2b1v71', 'en', 1, 'https://ror.org/00w2b1v71 Hesburgh Libraries'),
(15140, 'https://ror.org/02qyarm48', 'en', 1, 'https://ror.org/02qyarm48 Cambridge Community Library'),
(15141, 'https://ror.org/02n43mq92', 'en', 1, 'https://ror.org/02n43mq92 St. Charles City County Library District'),
(15142, 'https://ror.org/02d13xg07', 'en', 1, 'https://ror.org/02d13xg07 Upper Arlington Public Library'),
(15143, 'https://ror.org/03xb7n045', 'en', 1, 'https://ror.org/03xb7n045 St. Clair County Community College'),
(15144, 'https://ror.org/03jsdjx34', 'no_lang_code', 1, 'https://ror.org/03jsdjx34 Cambridge University Press'),
(15145, 'https://ror.org/02t0mhb72', 'en', 1, 'https://ror.org/02t0mhb72 University of Saint Mary of the Lake'),
(15146, 'https://ror.org/02851yv23', 'no_lang_code', 1, 'https://ror.org/02851yv23 Interpublic Group (United States)'),
(15147, 'https://ror.org/016gahp64', 'en', 1, 'https://ror.org/016gahp64 St. Clair County Library System'),
(15148, 'https://ror.org/0467vhn46', 'en', 1, 'https://ror.org/0467vhn46 St. Joseph County Public Library'),
(15149, 'https://ror.org/048tktj22', 'en', 1, 'https://ror.org/048tktj22 McHenry County College'),
(15150, 'https://ror.org/02fs6en72', 'en', 1, 'https://ror.org/02fs6en72 St. Joseph''s College New York'),
(15151, 'https://ror.org/01k2x9g80', 'en', 1, 'https://ror.org/01k2x9g80 Saint Joseph''s College'),
(15152, 'https://ror.org/00c5d7t12', 'en', 1, 'https://ror.org/00c5d7t12 St. Louis County Library'),
(15153, 'https://ror.org/03y446t42', 'en', 1, 'https://ror.org/03y446t42 St. Louis Public Library'),
(15154, 'https://ror.org/03wykcx19', 'en', 1, 'https://ror.org/03wykcx19 Association ForestiĆØre Canadienne Canadian Forestry Association'),
(15155, 'https://ror.org/00ckv2g77', 'no_lang_code', 1, 'https://ror.org/00ckv2g77 Multidisciplinary Digital Publishing Institute (Switzerland)'),
(15156, 'https://ror.org/0390twm75', 'en', 1, 'https://ror.org/0390twm75 Canadian Institute of Public Health Inspectors'),
(15157, 'https://ror.org/03s593324', 'en', 1, 'https://ror.org/03s593324 Geauga County Public Library'),
(15158, 'https://ror.org/00ez32163', 'en', 1, 'https://ror.org/00ez32163 GeoScienceWorld'),
(15159, 'https://ror.org/00xr2nk27', 'en', 1, 'https://ror.org/00xr2nk27 Mead Public Library'),
(15160, 'https://ror.org/05jyxzj98', 'en', 1, 'https://ror.org/05jyxzj98 Meadville Lombard Theological School'),
(15161, 'https://ror.org/01bwbj624', 'no_lang_code', 1, 'https://ror.org/01bwbj624 AMN Healthcare (United States)'),
(15162, 'https://ror.org/01yykhb30', 'en', 1, 'https://ror.org/01yykhb30 Sauk County Historical Society'),
(15163, 'https://ror.org/019r00h23', 'en', 1, 'https://ror.org/019r00h23 Sauk Valley Community College'),
(15164, 'https://ror.org/04zp06k22', 'en', 1, 'https://ror.org/04zp06k22 Statewide California Electronic Library Consortium'),
(15165, 'https://ror.org/023bxn823', 'en', 1, 'https://ror.org/023bxn823 Glen Ellyn Public Library'),
(15166, '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'),
(15167, 'https://ror.org/03j2znq68', 'en', 1, 'https://ror.org/03j2znq68 Schoolcraft College'),
(15168, 'https://ror.org/02gj10y57', 'en', 1, 'https://ror.org/02gj10y57 Glenview Public Library'),
(15169, 'https://ror.org/00zbqg304', 'en', 1, 'https://ror.org/00zbqg304 Canadian Science Publishing'),
(15170, 'https://ror.org/01w2kt439', 'en', 1, 'https://ror.org/01w2kt439 Association canadienne des mƩdecins vƩtƩrinaires Canadian Veterinary Medical Association'),
(15171, 'https://ror.org/05wd26881', 'en', 1, 'https://ror.org/05wd26881 Gogebic Community College'),
(15172, 'https://ror.org/01nc8r848', 'no_lang_code', 1, 'https://ror.org/01nc8r848 Scribd (United States)'),
(15173, 'https://ror.org/05c1xmf93', 'en', 1, 'https://ror.org/05c1xmf93 Canton Public Library'),
(15174, 'https://ror.org/05dtcxa32', 'en', 1, 'https://ror.org/05dtcxa32 Capital Area District Libraries'),
(15175, 'https://ror.org/04dwtmx31', 'en', 1, 'https://ror.org/04dwtmx31 Career Education Corporation'),
(15176, 'https://ror.org/05ges7821', 'en', 1, 'https://ror.org/05ges7821 Carl Sandburg College'),
(15177, 'https://ror.org/02cjv3666', 'en', 1, 'https://ror.org/02cjv3666 Shaker Heights Public Library'),
(15178, 'https://ror.org/05qjv6v20', 'en', 1, 'https://ror.org/05qjv6v20 Medina County District Library'),
(15179, 'https://ror.org/02dhzaa20', 'en', 1, 'https://ror.org/02dhzaa20 Swope Art Museum'),
(15180, 'https://ror.org/01qxk5g75', 'no_lang_code', 1, 'https://ror.org/01qxk5g75 Medknow (India)'),
(15181, 'https://ror.org/004pdnb66', 'en', 1, 'https://ror.org/004pdnb66 Grace A. Dow Memorial Library'),
(15182, 'https://ror.org/029c3g514', 'no_lang_code', 1, 'https://ror.org/029c3g514 Mesoblast (United States)'),
(15183, 'https://ror.org/00w4hrb54', 'en', 1, 'https://ror.org/00w4hrb54 Shimer College'),
(15184, 'https://ror.org/04zd61g23', 'en', 1, 'https://ror.org/04zd61g23 The Urbana Free Library'),
(15185, 'https://ror.org/04kp3hw27', 'en', 1, 'https://ror.org/04kp3hw27 Urbana University'),
(15186, 'https://ror.org/02fhmsd26', 'en', 1, 'https://ror.org/02fhmsd26 Ursuline College'),
(15187, 'https://ror.org/01s6z0f52', 'en', 1, 'https://ror.org/01s6z0f52 Catholic Theological Union'),
(15188, 'https://ror.org/02breff74', 'no_lang_code', 1, 'https://ror.org/02breff74 Shook, Hardy & Bacon (United States)'),
(15189, 'https://ror.org/053sbf336', 'en', 1, 'https://ror.org/053sbf336 Grand Rapids Public Library'),
(15190, 'https://ror.org/03gamv550', 'en', 1, 'https://ror.org/03gamv550 U.S. Committee for Refugees and Immigrants'),
(15191, 'https://ror.org/05sv2w840', 'en', 1, 'https://ror.org/05sv2w840 Silver Lake College'),
(15192, 'https://ror.org/01kra6c87', 'en', 1, 'https://ror.org/01kra6c87 Cedarburg Public Library'),
(15193, 'https://ror.org/05t28nr70', 'en', 1, 'https://ror.org/05t28nr70 Cedarhurst Center For The Arts'),
(15194, 'https://ror.org/05c5nrc66', 'en', 1, 'https://ror.org/05c5nrc66 Methodist Theological School in Ohio'),
(15195, 'https://ror.org/059cb7973', 'no_lang_code', 1, 'https://ror.org/059cb7973 SIPX (United States)'),
(15196, 'https://ror.org/05k2n4n22', 'no_lang_code', 1, 'https://ror.org/05k2n4n22 RELX Group (United States)'),
(15197, 'https://ror.org/00p11e287', 'en', 1, 'https://ror.org/00p11e287 Metropolitan Community College'),
(15198, 'https://ror.org/03tjjy644', 'en', 1, 'https://ror.org/03tjjy644 Greater West Bloomfield Historical Society'),
(15199, 'https://ror.org/04rgj3y73', 'en', 1, 'https://ror.org/04rgj3y73 Skokie Public Library'),
(15200, 'https://ror.org/05dky1a08', 'en', 1, 'https://ror.org/05dky1a08 Center for Research Libraries'),
(15201, 'https://ror.org/03x497b72', 'en', 1, 'https://ror.org/03x497b72 Miami County Museum'),
(15202, 'https://ror.org/01hbh1z68', 'en', 1, 'https://ror.org/01hbh1z68 Sloan*Longway'),
(15203, 'https://ror.org/01v575k60', 'en', 1, 'https://ror.org/01v575k60 Michigan City Public Library'),
(15204, 'https://ror.org/02m0g1n06', 'en', 1, 'https://ror.org/02m0g1n06 VanderCook College of Music'),
(15205, 'https://ror.org/04zmm8y38', 'en', 1, 'https://ror.org/04zmm8y38 Central Methodist University'),
(15206, 'https://ror.org/052qpep46', 'en', 1, 'https://ror.org/052qpep46 Michigan History Center'),
(15207, 'https://ror.org/035280t21', 'en', 1, 'https://ror.org/035280t21 Greater Western Library Alliance'),
(15208, 'https://ror.org/018c2ap34', 'en', 1, 'https://ror.org/018c2ap34 Champaign County History Museum'),
(15209, 'https://ror.org/013rm7441', 'en', 1, 'https://ror.org/013rm7441 Champaign Public Library'),
(15210, 'https://ror.org/04rxhfh18', 'en', 1, 'https://ror.org/04rxhfh18 Grosse Pointe Public Library'),
(15211, 'https://ror.org/02g7ar447', 'en', 1, 'https://ror.org/02g7ar447 Chicago History Museum'),
(15212, 'https://ror.org/02easmg06', 'no_lang_code', 1, 'https://ror.org/02easmg06 Guilford Press (United States)'),
(15213, 'https://ror.org/059mcbz87', 'en', 1, 'https://ror.org/059mcbz87 Mid-Continent Public Library'),
(15214, 'https://ror.org/059ep5752', 'en', 1, 'https://ror.org/059ep5752 Hamilton East Public Library'),
(15215, 'https://ror.org/031mpj251', 'en', 1, 'https://ror.org/031mpj251 Mid-State Technical College'),
(15216, 'https://ror.org/03rxv1p12', 'en', 1, 'https://ror.org/03rxv1p12 Hannibal–LaGrange University'),
(15217, 'https://ror.org/05fh0g986', 'en', 1, 'https://ror.org/05fh0g986 Chicago Theological Seminary'),
(15218, 'https://ror.org/00g251176', 'en', 1, 'https://ror.org/00g251176 Middletown Public Library'),
(15219, 'https://ror.org/03m0njh07', 'en', 1, 'https://ror.org/03m0njh07 Midstate College'),
(15220, 'https://ror.org/0062tv278', 'en', 1, 'https://ror.org/0062tv278 Chicago Kent College of Law'),
(15221, 'https://ror.org/02s2j8b28', 'en', 1, 'https://ror.org/02s2j8b28 Chippewa Valley Museum'),
(15222, 'https://ror.org/03tngxx72', 'no_lang_code', 1, 'https://ror.org/03tngxx72 Midwest Tape (United States)'),
(15223, 'https://ror.org/04nxrgp88', 'en', 1, 'https://ror.org/04nxrgp88 South Asian American Digital Archive'),
(15224, 'https://ror.org/01f2td593', 'no_lang_code', 1, 'https://ror.org/01f2td593 Chiquita Brands International (United States)'),
(15225, 'https://ror.org/006kkkp25', 'no_lang_code', 1, 'https://ror.org/006kkkp25 Miller Canfield (United States)'),
(15226, 'https://ror.org/044h88456', 'en', 1, 'https://ror.org/044h88456 South Bend Museum of Art'),
(15227, 'https://ror.org/01vtmwg90', 'en', 1, 'https://ror.org/01vtmwg90 Vigo County Historical Society & Museum'),
(15228, 'https://ror.org/01v1wjv20', 'en', 1, 'https://ror.org/01v1wjv20 South Holland Public Library'),
(15229, 'https://ror.org/052j1gk85', 'en', 1, 'https://ror.org/052j1gk85 Milwaukee Public Library'),
(15230, 'https://ror.org/02v431325', 'en', 1, 'https://ror.org/02v431325 Harrington College of Design'),
(15231, 'https://ror.org/00342ps77', 'en', 1, 'https://ror.org/00342ps77 Cincinnati Christian University'),
(15232, 'https://ror.org/02xz7d723', 'en', 1, 'https://ror.org/02xz7d723 Harry Perkins Institute of Medical Research'),
(15233, 'https://ror.org/00sn5vc60', 'en', 1, 'https://ror.org/00sn5vc60 Vigo County Public Library'),
(15234, 'https://ror.org/01c6kab21', 'en', 1, 'https://ror.org/01c6kab21 South Suburban College'),
(15235, 'https://ror.org/01g5qva43', 'en', 1, 'https://ror.org/01g5qva43 Cincinnati State Technical and Community College'),
(15236, 'https://ror.org/05jkfya49', 'en', 1, 'https://ror.org/05jkfya49 Mishawaka-Penn-Harris Public Library'),
(15237, 'https://ror.org/05c9m3a41', 'en', 1, 'https://ror.org/05c9m3a41 South Suburban Genealogical and Historical Society'),
(15238, 'https://ror.org/05wfyqn93', 'en', 1, 'https://ror.org/05wfyqn93 Missouri Baptist University'),
(15239, 'https://ror.org/02f013h18', 'it', 1, 'https://ror.org/02f013h18 Cineca'),
(15240, 'https://ror.org/02894qy28', 'en', 1, 'https://ror.org/02894qy28 Hayner Public Library District'),
(15241, 'https://ror.org/04prb1696', 'en', 1, 'https://ror.org/04prb1696 Missouri History Museum'),
(15242, 'https://ror.org/02akpbq50', 'en', 1, 'https://ror.org/02akpbq50 Circus World Museum'),
(15243, 'https://ror.org/0287v3241', 'en', 1, 'https://ror.org/0287v3241 University Muslim Medical Association Community Clinic'),
(15244, 'https://ror.org/003013d40', 'en', 1, 'https://ror.org/003013d40 Citizens for Responsibility and Ethics in Washington'),
(15245, 'https://ror.org/01fq88m19', 'en', 1, 'https://ror.org/01fq88m19 Missouri River Regional Library'),
(15246, 'https://ror.org/03xaz7s88', 'en', 1, 'https://ror.org/03xaz7s88 Claremont Colleges'),
(15247, 'https://ror.org/017f49052', 'en', 1, 'https://ror.org/017f49052 Southeastern Illinois College'),
(15248, 'https://ror.org/02fkh1w66', 'en', 1, 'https://ror.org/02fkh1w66 Health Affairs'),
(15249, 'https://ror.org/02k16sh85', 'en', 1, 'https://ror.org/02k16sh85 Clark State Community College'),
(15250, 'https://ror.org/004xm6e62', 'en', 1, 'https://ror.org/004xm6e62 Heartland Community College'),
(15251, 'https://ror.org/04gzrkk07', 'en', 1, 'https://ror.org/04gzrkk07 Clay County Archives and Historical Library'),
(15252, 'https://ror.org/03gbwkj22', 'en', 1, 'https://ror.org/03gbwkj22 Vincennes University'),
(15253, 'https://ror.org/01g2p0822', 'en', 1, 'https://ror.org/01g2p0822 Hebrew Theological College'),
(15254, 'https://ror.org/00zq5bx90', 'en', 1, 'https://ror.org/00zq5bx90 Clermont County Public Library'),
(15255, 'https://ror.org/05kf1qd30', 'en', 1, 'https://ror.org/05kf1qd30 Hedberg Public Library'),
(15256, 'https://ror.org/02msncq66', 'en', 1, 'https://ror.org/02msncq66 Missouri Valley College'),
(15257, 'https://ror.org/03g0nfg79', 'en', 1, 'https://ror.org/03g0nfg79 Heritage Museum and Cultural Center'),
(15258, 'https://ror.org/02xaxz408', 'en', 1, 'https://ror.org/02xaxz408 Southern State Community College'),
(15259, 'https://ror.org/048z9aw23', 'en', 1, 'https://ror.org/048z9aw23 Monroe County Historical Museum'),
(15260, 'https://ror.org/01ndzp278', 'en', 1, 'https://ror.org/01ndzp278 Cleveland Heights University Heights Public Library'),
(15261, 'https://ror.org/02e2bht63', 'en', 1, 'https://ror.org/02e2bht63 Monroe County Library System'),
(15262, 'https://ror.org/02138yn89', 'en', 1, 'https://ror.org/02138yn89 Monroe County Public Library'),
(15263, 'https://ror.org/05wffnp93', 'en', 1, 'https://ror.org/05wffnp93 Institut biblique moody Moody Bible Institute'),
(15264, 'https://ror.org/04y17xm23', 'en', 1, 'https://ror.org/04y17xm23 Southwestern Illinois College'),
(15265, 'https://ror.org/03afd3b65', 'en', 1, 'https://ror.org/03afd3b65 Moraine Park Technical College'),
(15266, 'https://ror.org/041grwk58', 'en', 1, 'https://ror.org/041grwk58 Cleveland Law Library Association'),
(15267, 'https://ror.org/057j98494', 'en', 1, 'https://ror.org/057j98494 Cleveland Museum of Art'),
(15268, 'https://ror.org/04c0z3e83', 'no_lang_code', 1, 'https://ror.org/04c0z3e83 Morgan, Lewis & Bockius (United States)'),
(15269, 'https://ror.org/04426r665', 'en', 1, 'https://ror.org/04426r665 Morley Library'),
(15270, 'https://ror.org/02kybxa90', 'en', 1, 'https://ror.org/02kybxa90 Cleveland Public Library'),
(15271, 'https://ror.org/03wn0d080', 'en', 1, 'https://ror.org/03wn0d080 Morton College'),
(15272, 'https://ror.org/009vb3488', 'no_lang_code', 1, 'https://ror.org/009vb3488 CLOCKSS'),
(15273, 'https://ror.org/05488qq19', 'en', 1, 'https://ror.org/05488qq19 Highland County District Library'),
(15274, 'https://ror.org/05vs4fq96', 'en', 1, 'https://ror.org/05vs4fq96 Hillsdale College'),
(15275, 'https://ror.org/0012fsh60', 'en', 1, 'https://ror.org/0012fsh60 Hillwood Estate, Museum and Garden'),
(15276, 'https://ror.org/043fjtb89', 'en', 1, 'https://ror.org/043fjtb89 Coalition for Networked Information'),
(15277, 'https://ror.org/03fjxhp48', 'en', 1, 'https://ror.org/03fjxhp48 Hoard Historical Museum'),
(15278, 'https://ror.org/01tpw6659', 'en', 1, 'https://ror.org/01tpw6659 Hocking College'),
(15279, 'https://ror.org/0574bwf68', 'en', 1, 'https://ror.org/0574bwf68 Holy Cross College'),
(15280, 'https://ror.org/01g1dn598', 'en', 1, 'https://ror.org/01g1dn598 Southwestern Michigan College'),
(15281, 'https://ror.org/02wg4cc89', 'en', 1, 'https://ror.org/02wg4cc89 Holy Wisdom Monastery'),
(15282, 'https://ror.org/05te4ha46', 'no_lang_code', 1, 'https://ror.org/05te4ha46 Sparks & Co (France)'),
(15283, 'https://ror.org/010apsh61', 'en', 1, 'https://ror.org/010apsh61 Coles County Historical Society'),
(15284, 'https://ror.org/01jtsd542', 'en', 1, 'https://ror.org/01jtsd542 Mount Vernon Nazarene University'),
(15285, 'https://ror.org/01hxtdq06', 'en', 1, 'https://ror.org/01hxtdq06 Spertus Institute for Jewish Learning and Leadership'),
(15286, 'https://ror.org/03v8atx30', 'en', 1, 'https://ror.org/03v8atx30 College of Lake County'),
(15287, 'https://ror.org/025vzq165', 'en', 1, 'https://ror.org/025vzq165 Spoon River College'),
(15288, 'https://ror.org/052ahwq68', 'en', 1, 'https://ror.org/052ahwq68 Muskegon Area District Library'),
(15289, 'https://ror.org/02j8e5x02', 'en', 1, 'https://ror.org/02j8e5x02 Spring Arbor University'),
(15290, 'https://ror.org/01avfcx41', 'en', 1, 'https://ror.org/01avfcx41 Wadsworth Public Library'),
(15291, 'https://ror.org/04pzyxy68', 'en', 1, 'https://ror.org/04pzyxy68 Lakeshore Museum Center'),
(15292, 'https://ror.org/0159z5d03', 'en', 1, 'https://ror.org/0159z5d03 Springfield Greene County Library District'),
(15293, 'https://ror.org/03ntt6y47', 'en', 1, 'https://ror.org/03ntt6y47 SS. Cyril & Methodius Seminary'),
(15294, 'https://ror.org/048b14s48', 'en', 1, 'https://ror.org/048b14s48 Hudson Library and Historical Society'),
(15295, 'https://ror.org/05s4pg032', 'en', 1, 'https://ror.org/05s4pg032 Walsh College'),
(15296, 'https://ror.org/02vnjpj41', 'en', 1, 'https://ror.org/02vnjpj41 St. Joseph Museums'),
(15297, 'https://ror.org/009nkvj02', 'en', 1, 'https://ror.org/009nkvj02 Warren Newport Public Library'),
(15298, 'https://ror.org/02kajxp71', 'en', 1, 'https://ror.org/02kajxp71 National Archives of Hungary'),
(15299, 'https://ror.org/03b27e555', 'en', 1, 'https://ror.org/03b27e555 Warren-Trumbull County Public Library'),
(15300, 'https://ror.org/02a6ztn45', 'en', 1, 'https://ror.org/02a6ztn45 National Academies Press'),
(15301, 'https://ror.org/03mv52406', 'en', 1, 'https://ror.org/03mv52406 Stark County District Library'),
(15302, 'https://ror.org/00hasdx88', 'en', 1, 'https://ror.org/00hasdx88 Washington Research Foundation'),
(15303, 'https://ror.org/00v02jt04', 'en', 1, 'https://ror.org/00v02jt04 State Fair Community College'),
(15304, 'https://ror.org/03mbgzm57', 'en', 1, 'https://ror.org/03mbgzm57 Washington State Community College');
INSERT INTO `rors` VALUES
(15305, 'https://ror.org/03fwsh914', 'en', 1, 'https://ror.org/03fwsh914 State Library of Ohio'),
(15306, 'https://ror.org/03n6gc586', 'en', 1, 'https://ror.org/03n6gc586 Columbus College of Art and Design'),
(15307, 'https://ror.org/05nwva972', 'en', 1, 'https://ror.org/05nwva972 ICE Publishing'),
(15308, 'https://ror.org/017rrqa95', 'en', 1, 'https://ror.org/017rrqa95 National Association of Realtors'),
(15309, 'https://ror.org/03k77wm53', 'en', 1, 'https://ror.org/03k77wm53 Washtenaw Community College'),
(15310, 'https://ror.org/04t48m922', 'en', 1, 'https://ror.org/04t48m922 Wisconsin Legislative Reference Bureau'),
(15311, 'https://ror.org/03yxgvp63', 'no_lang_code', 1, 'https://ror.org/03yxgvp63 IGI Global (United States)'),
(15312, 'https://ror.org/01k2z4a60', 'en', 1, 'https://ror.org/01k2z4a60 Studebaker National Museum'),
(15313, 'https://ror.org/02py3es11', 'en', 1, 'https://ror.org/02py3es11 Illinois Supreme Court Library'),
(15314, 'https://ror.org/03dfsfy59', 'en', 1, 'https://ror.org/03dfsfy59 Waubonsee Community College'),
(15315, 'https://ror.org/008y25t13', 'en', 1, 'https://ror.org/008y25t13 Columbus Law Library Association'),
(15316, 'https://ror.org/01xvcx580', 'en', 1, 'https://ror.org/01xvcx580 Columbus Metropolitan Library'),
(15317, 'https://ror.org/02s8rep32', 'en', 1, 'https://ror.org/02s8rep32 Columbus State Community College'),
(15318, 'https://ror.org/02wyqrf98', 'en', 1, 'https://ror.org/02wyqrf98 National Association of School Psychologists'),
(15319, 'https://ror.org/00b1y8922', 'en', 1, 'https://ror.org/00b1y8922 Columbus Zoo and Aquarium'),
(15320, 'https://ror.org/01a53yy36', 'en', 1, 'https://ror.org/01a53yy36 Wauconda Area Library'),
(15321, 'https://ror.org/024xf4148', 'en', 1, 'https://ror.org/024xf4148 Illinois Mathematics and Science Academy'),
(15322, 'https://ror.org/022bt0g94', 'en', 1, 'https://ror.org/022bt0g94 National Center for Manufacturing Sciences'),
(15323, 'https://ror.org/01nww6879', 'en', 1, 'https://ror.org/01nww6879 Waukesha County Museum'),
(15324, 'https://ror.org/01rqrfd09', 'en', 1, 'https://ror.org/01rqrfd09 Illinois Railway Museum'),
(15325, 'https://ror.org/01hqrfw90', 'en', 1, 'https://ror.org/01hqrfw90 Waukesha County Technical College'),
(15326, 'https://ror.org/04hpt8s23', 'en', 1, 'https://ror.org/04hpt8s23 Supreme Court of Ohio'),
(15327, 'https://ror.org/01vryen79', 'en', 1, 'https://ror.org/01vryen79 Illinois State Archives'),
(15328, 'https://ror.org/003tgaf82', 'en', 1, 'https://ror.org/003tgaf82 Abraham Lincoln Presidential Library and Museum'),
(15329, 'https://ror.org/040730h60', 'en', 1, 'https://ror.org/040730h60 Waukesha Public Library'),
(15330, 'https://ror.org/02ntfsb56', 'en', 1, 'https://ror.org/02ntfsb56 Committee on Institutional Cooperation'),
(15331, 'https://ror.org/00q84em04', 'en', 1, 'https://ror.org/00q84em04 GalerĆ­a Nacional de Arte National Gallery of Art'),
(15332, 'https://ror.org/00fyvea65', 'en', 1, 'https://ror.org/00fyvea65 National Library of Education'),
(15333, 'https://ror.org/04v1k1t27', 'en', 1, 'https://ror.org/04v1k1t27 Illinois Valley Community College'),
(15334, 'https://ror.org/02qxvcs26', 'en', 1, 'https://ror.org/02qxvcs26 Illinois State Library'),
(15335, 'https://ror.org/02q002e44', 'en', 1, 'https://ror.org/02q002e44 National Museum of Women in the Arts'),
(15336, 'https://ror.org/05tq5tc82', 'en', 1, 'https://ror.org/05tq5tc82 Concordia Seminary Seminario Concordia'),
(15337, 'https://ror.org/02jvqj155', 'en', 1, 'https://ror.org/02jvqj155 Concordia University Chicago UniversitƩ concordia de chicago'),
(15338, 'https://ror.org/05bvf9f86', 'en', 1, 'https://ror.org/05bvf9f86 Raising Spirits Foundation'),
(15339, 'https://ror.org/05qm91k56', 'en', 1, 'https://ror.org/05qm91k56 International Network for Advancing Science and Policy'),
(15340, 'https://ror.org/03trkbn45', 'en', 1, 'https://ror.org/03trkbn45 Congressional Budget Office'),
(15341, 'https://ror.org/01dp8dw79', 'en', 1, 'https://ror.org/01dp8dw79 Consortium of Academic and Research Libraries in Illinois'),
(15342, 'https://ror.org/02bpry443', 'en', 1, 'https://ror.org/02bpry443 Indiana Historical Society'),
(15343, 'https://ror.org/04ky2re88', 'en', 1, 'https://ror.org/04ky2re88 Wesley Theological Seminary'),
(15344, 'https://ror.org/033hy7589', 'en', 1, 'https://ror.org/033hy7589 Cook County Law Library'),
(15345, 'https://ror.org/02hvkfj85', 'en', 1, 'https://ror.org/02hvkfj85 West Allis Public Library'),
(15346, 'https://ror.org/04cwntf34', 'en', 1, 'https://ror.org/04cwntf34 Indiana Archives and Records Administration'),
(15347, 'https://ror.org/0152xpa72', 'en', 1, 'https://ror.org/0152xpa72 Indiana State Library'),
(15348, 'https://ror.org/05kmsp524', 'en', 1, 'https://ror.org/05kmsp524 Indiana Supreme Court'),
(15349, 'https://ror.org/04fwa5r65', 'en', 1, 'https://ror.org/04fwa5r65 Cook Memorial Public Library District'),
(15350, 'https://ror.org/049kpjn93', 'en', 1, 'https://ror.org/049kpjn93 Westlake Porter Public Library'),
(15351, 'https://ror.org/046z54t28', 'en', 1, 'https://ror.org/046z54t28 Indiana University East'),
(15352, 'https://ror.org/04qx59376', 'en', 1, 'https://ror.org/04qx59376 Westmont Public Library'),
(15353, 'https://ror.org/04161kh40', 'en', 1, 'https://ror.org/04161kh40 Indiana University Kokomo'),
(15354, 'https://ror.org/057ydan45', 'en', 1, 'https://ror.org/057ydan45 Copyright Licensing Agency'),
(15355, 'https://ror.org/05kjfpp30', 'en', 1, 'https://ror.org/05kjfpp30 Westwood College'),
(15356, 'https://ror.org/04ttjs010', 'en', 1, 'https://ror.org/04ttjs010 Indianapolis Public Schools'),
(15357, 'https://ror.org/05bxa5v91', 'en', 1, 'https://ror.org/05bxa5v91 Indianapolis Public Library'),
(15358, 'https://ror.org/03b03v914', 'en', 1, 'https://ror.org/03b03v914 Wheaton Public Library'),
(15359, 'https://ror.org/04hfwsn29', 'no_lang_code', 1, 'https://ror.org/04hfwsn29 Information Today (United States)'),
(15360, 'https://ror.org/04qf1h664', 'en', 1, 'https://ror.org/04qf1h664 Williams County Public Library'),
(15361, 'https://ror.org/02xm60v03', 'en', 1, 'https://ror.org/02xm60v03 Wilmette Public Library'),
(15362, 'https://ror.org/045zcth28', 'en', 1, 'https://ror.org/045zcth28 McLaren Greater Lansing'),
(15363, 'https://ror.org/00r99m169', 'en', 1, 'https://ror.org/00r99m169 Council of State Archivists'),
(15364, 'https://ror.org/01k08ez36', 'en', 1, 'https://ror.org/01k08ez36 Wilmington College'),
(15365, 'https://ror.org/030prv062', 'en', 1, 'https://ror.org/030prv062 Institute of Museum and Library Services'),
(15366, 'https://ror.org/03kyxhh57', 'en', 1, 'https://ror.org/03kyxhh57 Wisconsin Historical Society'),
(15367, 'https://ror.org/05bhzk792', 'en', 1, 'https://ror.org/05bhzk792 Covington and Burling'),
(15368, 'https://ror.org/01r678s56', 'en', 1, 'https://ror.org/01r678s56 Wisconsin Indianhead Technical College'),
(15369, 'https://ror.org/00tdydz48', 'en', 1, 'https://ror.org/00tdydz48 Young Empowered Survivors'),
(15370, 'https://ror.org/00nve0j20', 'en', 1, 'https://ror.org/00nve0j20 Wisconsin Lutheran College'),
(15371, 'https://ror.org/04jwsnw10', 'en', 1, 'https://ror.org/04jwsnw10 CoxHealth'),
(15372, 'https://ror.org/0226w4e92', 'no_lang_code', 1, 'https://ror.org/0226w4e92 Credo Reference (United States)'),
(15373, 'https://ror.org/05rpt7y81', 'en', 1, 'https://ror.org/05rpt7y81 Wisconsin Maritime Museum'),
(15374, 'https://ror.org/02ccjyn18', 'en', 1, 'https://ror.org/02ccjyn18 Wisconsin Veterans Museum'),
(15375, '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'),
(15376, 'https://ror.org/03t1w6410', 'en', 1, 'https://ror.org/03t1w6410 WISPALS Library Consortium'),
(15377, 'https://ror.org/03gkhzn08', 'no_lang_code', 1, 'https://ror.org/03gkhzn08 Crowell & Moring (United States)'),
(15378, 'https://ror.org/03qemwx69', 'no_lang_code', 1, 'https://ror.org/03qemwx69 Wolters Kluwer (Netherlands)'),
(15379, 'https://ror.org/051hpv692', 'en', 1, 'https://ror.org/051hpv692 CSIRO Publishing'),
(15380, 'https://ror.org/00n855a93', 'en', 1, 'https://ror.org/00n855a93 Culver Stockton College Culver–Stockton College'),
(15381, 'https://ror.org/0102yc990', 'en', 1, 'https://ror.org/0102yc990 Warriors on Wheels of Metropolitan Detroit'),
(15382, 'https://ror.org/05e7tm136', 'no_lang_code', 1, 'https://ror.org/05e7tm136 World Scientific (Singapore)'),
(15383, 'https://ror.org/051940627', 'en', 1, 'https://ror.org/051940627 Wright Memorial Public Library'),
(15384, 'https://ror.org/0404q6692', 'en', 1, 'https://ror.org/0404q6692 Valley Medical Center Foundation'),
(15385, 'https://ror.org/017rwv354', 'en', 1, 'https://ror.org/017rwv354 Washington State Chinese Cancer Network Association'),
(15386, 'https://ror.org/01h5cth39', 'en', 1, 'https://ror.org/01h5cth39 Protestant Reformed Churches in America'),
(15387, 'https://ror.org/05xzrxq68', 'no_lang_code', 1, 'https://ror.org/05xzrxq68 Amos Media (United States)'),
(15388, 'https://ror.org/04mxgrm58', 'no_lang_code', 1, 'https://ror.org/04mxgrm58 Aquamarine Power (United Kingdom)'),
(15389, 'https://ror.org/04zj5m910', 'no_lang_code', 1, 'https://ror.org/04zj5m910 Actalia (France)'),
(15390, 'https://ror.org/02szfyr26', 'no_lang_code', 1, 'https://ror.org/02szfyr26 BioAssay Systems (United States)'),
(15391, 'https://ror.org/03g1bs356', 'no_lang_code', 1, 'https://ror.org/03g1bs356 BioAssessments (United States)'),
(15392, 'https://ror.org/03mr4tp73', 'no_lang_code', 1, 'https://ror.org/03mr4tp73 BioAtlantis (Ireland)'),
(15393, 'https://ror.org/004ayva68', 'no_lang_code', 1, 'https://ror.org/004ayva68 BioBullets (United Kingdom)'),
(15394, 'https://ror.org/01r8nn991', 'no_lang_code', 1, 'https://ror.org/01r8nn991 Biobyte Solutions (Germany)'),
(15395, 'https://ror.org/05fgmb597', 'no_lang_code', 1, 'https://ror.org/05fgmb597 Aitek (Italy)'),
(15396, 'https://ror.org/02hyrh851', 'no_lang_code', 1, 'https://ror.org/02hyrh851 Lallemand (United Kingdom)'),
(15397, 'https://ror.org/04ygec227', 'no_lang_code', 1, 'https://ror.org/04ygec227 Aixtooling (Germany)'),
(15398, 'https://ror.org/04hgy0088', 'no_lang_code', 1, 'https://ror.org/04hgy0088 Association of French Motorway Companies'),
(15399, 'https://ror.org/019szx567', 'fr', 1, 'https://ror.org/019szx567 Traces'),
(15400, 'https://ror.org/01h4hrx10', 'no_lang_code', 1, 'https://ror.org/01h4hrx10 Biocatalysts (United Kingdom)'),
(15401, 'https://ror.org/041b2r204', 'en', 1, 'https://ror.org/041b2r204 Association of Village Council Presidents'),
(15402, 'https://ror.org/03m8wps61', 'no_lang_code', 1, 'https://ror.org/03m8wps61 2 Sisters Food Group (United Kingdom)'),
(15403, 'https://ror.org/00fg75a18', 'no_lang_code', 1, 'https://ror.org/00fg75a18 2.-0 LCA Consultants (Denmark)'),
(15404, 'https://ror.org/01xdhsq08', 'en', 1, 'https://ror.org/01xdhsq08 Jefferson Parish District Attorney'),
(15405, 'https://ror.org/02a3sdd90', 'it', 1, 'https://ror.org/02a3sdd90 Associazione Festival della Scienz'),
(15406, 'https://ror.org/01f6f6n96', 'no_lang_code', 1, 'https://ror.org/01f6f6n96 Biochemtex (Italy)'),
(15407, 'https://ror.org/041d7g367', 'no_lang_code', 1, 'https://ror.org/041d7g367 Friuli Innovazione (Italy)'),
(15408, 'https://ror.org/02rf8xy04', 'it', 1, 'https://ror.org/02rf8xy04 2B'),
(15409, 'https://ror.org/014dgae50', 'no_lang_code', 1, 'https://ror.org/014dgae50 2i Industrial Informatics (Germany)'),
(15410, 'https://ror.org/008j0pa45', 'it', 1, 'https://ror.org/008j0pa45 AIAS Bologna'),
(15411, 'https://ror.org/0408c7e30', 'it', 1, 'https://ror.org/0408c7e30 Associazione Italiana Prove non Distruttive'),
(15412, 'https://ror.org/05c2wgj05', 'no_lang_code', 1, 'https://ror.org/05c2wgj05 Aquasium (United Kingdom)'),
(15413, 'https://ror.org/02gdsvx03', 'no_lang_code', 1, 'https://ror.org/02gdsvx03 3M (United Kingdom)'),
(15414, 'https://ror.org/05a628j96', 'no_lang_code', 1, 'https://ror.org/05a628j96 Aquatest (Czechia)'),
(15415, 'https://ror.org/008a3c408', 'it', 1, 'https://ror.org/008a3c408 Federazione ANIE Federazione Nazionale Imprese Elettroniche ed Elettrotecniche National Federation of Electrotechnical and Electronics'),
(15416, 'https://ror.org/004nrp689', 'no_lang_code', 1, 'https://ror.org/004nrp689 BioPredict (United States)'),
(15417, 'https://ror.org/0417eed32', 'it', 1, 'https://ror.org/0417eed32 Associazione per l''Alta Formazione Giuridico-Economica'),
(15418, 'https://ror.org/032wq4586', 'it', 1, 'https://ror.org/032wq4586 Associazione Regionale Allevatori della Lombardia'),
(15419, 'https://ror.org/00h653085', 'no_lang_code', 1, 'https://ror.org/00h653085 3C Research (United Kingdom)'),
(15420, 'https://ror.org/01nzc6q72', 'no_lang_code', 1, 'https://ror.org/01nzc6q72 Trento RISE (Italy)'),
(15421, 'https://ror.org/01ppcf422', 'no_lang_code', 1, 'https://ror.org/01ppcf422 3D Glass Solutions (United States)'),
(15422, 'https://ror.org/04x6q7861', 'it', 1, 'https://ror.org/04x6q7861 ASSTRA - Associazione Trasporti'),
(15423, 'https://ror.org/04tpfm663', 'no_lang_code', 1, 'https://ror.org/04tpfm663 Aktive Arc (Switzerland)'),
(15424, 'https://ror.org/05168x816', 'no_lang_code', 1, 'https://ror.org/05168x816 Biocrates Life Sciences (Austria)'),
(15425, 'https://ror.org/01nxbg690', 'no_lang_code', 1, 'https://ror.org/01nxbg690 Human Solutions (Germany)'),
(15426, 'https://ror.org/04akkw537', 'no_lang_code', 1, 'https://ror.org/04akkw537 Akira (France)'),
(15427, 'https://ror.org/034d0qf45', 'no_lang_code', 1, 'https://ror.org/034d0qf45 Assystem (France)'),
(15428, 'https://ror.org/01433ep44', 'no_lang_code', 1, 'https://ror.org/01433ep44 Assystem (United Kingdom)'),
(15429, 'https://ror.org/042bdjp78', 'no_lang_code', 1, 'https://ror.org/042bdjp78 Astato (France)'),
(15430, 'https://ror.org/036f8hp55', 'no_lang_code', 1, 'https://ror.org/036f8hp55 3D Industries (United Kingdom)'),
(15431, 'https://ror.org/00e52a384', 'no_lang_code', 1, 'https://ror.org/00e52a384 Biocrede (United States)'),
(15432, 'https://ror.org/05hz1rf52', 'no_lang_code', 1, 'https://ror.org/05hz1rf52 Astech Electronics (United Kingdom)'),
(15433, 'https://ror.org/037m11k76', 'no_lang_code', 1, 'https://ror.org/037m11k76 3d Scanners (United Kingdom)'),
(15434, 'https://ror.org/0504r6d12', 'en', 1, 'https://ror.org/0504r6d12 ASTER Aster, la station de vulgarisation et de loisirs scientifiques du Bas-Saint-Laurent'),
(15435, 'https://ror.org/04t4pcw17', 'en', 1, 'https://ror.org/04t4pcw17 Astronomical Observatory AstronomickĆ” Observatoř Bělehrad'),
(15436, 'https://ror.org/05c6smb53', 'no_lang_code', 1, 'https://ror.org/05c6smb53 Aqui-S (New Zealand)'),
(15437, 'https://ror.org/05jcb1s51', 'no_lang_code', 1, 'https://ror.org/05jcb1s51 Regio (Estonia)'),
(15438, 'https://ror.org/04y589z24', 'no_lang_code', 1, 'https://ror.org/04y589z24 3dMD (United Kingdom)'),
(15439, 'https://ror.org/00w3zcs06', 'no_lang_code', 1, 'https://ror.org/00w3zcs06 Sertifitseerimiskeskus'),
(15440, 'https://ror.org/047pgxk19', 'no_lang_code', 1, 'https://ror.org/047pgxk19 Aswega (Estonia)'),
(15441, 'https://ror.org/047acnn05', 'no_lang_code', 1, 'https://ror.org/047acnn05 Asymptote (United Kingdom)'),
(15442, 'https://ror.org/008h7g239', 'no_lang_code', 1, 'https://ror.org/008h7g239 Akyüz Plastik (Turkey)'),
(15443, 'https://ror.org/003rpah63', 'no_lang_code', 1, 'https://ror.org/003rpah63 AkzoNobel (Sweden)'),
(15444, 'https://ror.org/02k7wq289', 'no_lang_code', 1, 'https://ror.org/02k7wq289 3H Biomedical (Sweden)'),
(15445, 'https://ror.org/04ynpt476', 'no_lang_code', 1, 'https://ror.org/04ynpt476 Aquilus Pharmaceuticals (United States)'),
(15446, 'https://ror.org/04dngsc68', 'no_lang_code', 1, 'https://ror.org/04dngsc68 ALA Scientific Instruments (United States)'),
(15447, 'https://ror.org/02bbd5539', 'no_lang_code', 1, 'https://ror.org/02bbd5539 AT&T (United States)'),
(15448, 'https://ror.org/048kc5t54', 'en', 1, 'https://ror.org/048kc5t54 Faulkner University'),
(15449, 'https://ror.org/046qxc353', 'no_lang_code', 1, 'https://ror.org/046qxc353 Bioengineering Technology and Systems (Italy)'),
(15450, 'https://ror.org/033pbx564', 'no_lang_code', 1, 'https://ror.org/033pbx564 3S Photonics (France)'),
(15451, 'https://ror.org/02efxmp95', 'no_lang_code', 1, 'https://ror.org/02efxmp95 AT&T (Netherlands)'),
(15452, 'https://ror.org/03b92zg63', 'en', 1, 'https://ror.org/03b92zg63 Alabama Department of Agriculture and Industries'),
(15453, 'https://ror.org/01kss4073', 'en', 1, 'https://ror.org/01kss4073 Alamo Area Council of Governments'),
(15454, 'https://ror.org/03fqpp165', 'no_lang_code', 1, 'https://ror.org/03fqpp165 Bioergonomics (United States)'),
(15455, 'https://ror.org/056458z20', 'no_lang_code', 1, 'https://ror.org/056458z20 3T RPD (United Kingdom)'),
(15456, 'https://ror.org/034deqj96', 'en', 1, 'https://ror.org/034deqj96 Arab Center for the Studies of Arid Zones and Dry Lands'),
(15457, 'https://ror.org/00zrcp466', 'en', 1, 'https://ror.org/00zrcp466 Advanced Threat Analysis'),
(15458, 'https://ror.org/01kd78z21', 'no_lang_code', 1, 'https://ror.org/01kd78z21 01 Pliroforiki (Greece)'),
(15459, 'https://ror.org/02x20cn33', 'no_lang_code', 1, 'https://ror.org/02x20cn33 BioFluidix (Germany)'),
(15460, 'https://ror.org/03qnzan29', 'no_lang_code', 1, 'https://ror.org/03qnzan29 ATARD Defense and Aerospace Industry'),
(15461, 'https://ror.org/02ebmk238', 'sl', 1, 'https://ror.org/02ebmk238 Agencija za Radioaktivne Odpadke'),
(15462, 'https://ror.org/05s1dqz78', 'no_lang_code', 1, 'https://ror.org/05s1dqz78 451 Research (United Kingdom)'),
(15463, 'https://ror.org/05jqr8t95', 'no_lang_code', 1, 'https://ror.org/05jqr8t95 Biogas Fuel Cell (Spain)'),
(15464, 'https://ror.org/01gr48a54', 'en', 1, 'https://ror.org/01gr48a54 Alaska Marine Safety Education Association'),
(15465, 'https://ror.org/04b8jke36', 'no_lang_code', 1, 'https://ror.org/04b8jke36 enablingMNT (Germany)'),
(15466, 'https://ror.org/05mvb6w45', 'en', 1, 'https://ror.org/05mvb6w45 Alaska Network on Domestic Violence and Sexual Assault'),
(15467, 'https://ror.org/03c3kz798', 'fr', 1, 'https://ror.org/03c3kz798 ATECA - Applications Technologie AvancƩe'),
(15468, 'https://ror.org/02f4qmp67', 'no_lang_code', 1, 'https://ror.org/02f4qmp67 Aratome (United States)'),
(15469, 'https://ror.org/008yw1q74', 'no_lang_code', 1, 'https://ror.org/008yw1q74 PTC (France)'),
(15470, 'https://ror.org/00nrh3w24', 'no_lang_code', 1, 'https://ror.org/00nrh3w24 Aratos Technologies (Greece) Ī†Ī”Ī‘Ī¤ĪŸĪ£ Ī¤Ī•Ī§ĪĪŸĪ›ĪŸĪ“ĪŠĪ•Ī£'),
(15471, 'https://ror.org/02zwppv60', 'no_lang_code', 1, 'https://ror.org/02zwppv60 Ateknea Solutions (Malta)'),
(15472, 'https://ror.org/01j285b19', 'no_lang_code', 1, 'https://ror.org/01j285b19 AraVasc (United States)'),
(15473, 'https://ror.org/001vc2w94', 'en', 1, 'https://ror.org/001vc2w94 Alaska Department of Education and Early Development'),
(15474, 'https://ror.org/00ecmkm26', 'en', 1, 'https://ror.org/00ecmkm26 Alaska Youth and Family Network'),
(15475, 'https://ror.org/01jtkws96', 'no_lang_code', 1, 'https://ror.org/01jtkws96 Biographics (United States)'),
(15476, 'https://ror.org/00m08vr46', 'en', 1, 'https://ror.org/00m08vr46 Athens Chamber of Commerce and Industry'),
(15477, 'https://ror.org/03fmc9y65', 'no_lang_code', 1, 'https://ror.org/03fmc9y65 Albany Molecular Research (United Kingdom)'),
(15478, 'https://ror.org/03078rq26', 'en', 1, 'https://ror.org/03078rq26 Athens Medical Center Ī™Ī±Ļ„ĻĪ¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(15479, 'https://ror.org/027vwvv53', 'de', 1, 'https://ror.org/027vwvv53 Arbeitsgemeinschaft Sozialwissenschaftlicher Institute'),
(15480, 'https://ror.org/000ge9g13', 'en', 1, 'https://ror.org/000ge9g13 Athens Technical College'),
(15481, 'https://ror.org/02s347d15', 'no_lang_code', 1, 'https://ror.org/02s347d15 Albasolar (Spain)'),
(15482, 'https://ror.org/057qrfa57', 'no_lang_code', 1, 'https://ror.org/057qrfa57 Atlantec Enterprise Solutions (Germany)'),
(15483, 'https://ror.org/0411qha08', 'en', 1, 'https://ror.org/0411qha08 BioIndustry Association'),
(15484, 'https://ror.org/03tgxkn38', 'no_lang_code', 1, 'https://ror.org/03tgxkn38 Atlantic Industries (Canada)'),
(15485, 'https://ror.org/01se7j361', 'no_lang_code', 1, 'https://ror.org/01se7j361 nLIGHT (United States)'),
(15486, 'https://ror.org/047866h90', 'no_lang_code', 1, 'https://ror.org/047866h90 BioInvent (Sweden)'),
(15487, 'https://ror.org/02e3yqk73', 'no_lang_code', 1, 'https://ror.org/02e3yqk73 5M (Czechia)'),
(15488, 'https://ror.org/03aat3341', 'en', 1, 'https://ror.org/03aat3341 Atlantic Union College'),
(15489, 'https://ror.org/04apsy796', 'no_lang_code', 1, 'https://ror.org/04apsy796 BioInVision (United States)'),
(15490, 'https://ror.org/023366513', 'no_lang_code', 1, 'https://ror.org/023366513 Atlantis Consulting (Greece)'),
(15491, 'https://ror.org/04h6xfr41', 'no_lang_code', 1, 'https://ror.org/04h6xfr41 77 Elektronika (Hungary)'),
(15492, 'https://ror.org/03fs09n75', 'no_lang_code', 1, 'https://ror.org/03fs09n75 Aalborg Portland (Denmark)'),
(15493, 'https://ror.org/015rere91', 'no_lang_code', 1, 'https://ror.org/015rere91 Atlas Biolabs (Germany)'),
(15494, 'https://ror.org/02hwey921', 'no_lang_code', 1, 'https://ror.org/02hwey921 Biolitec (Germany)'),
(15495, 'https://ror.org/00gepdd80', 'en', 1, 'https://ror.org/00gepdd80 Atmosphere Systems and Services'),
(15496, 'https://ror.org/010e6tc72', 'no_lang_code', 1, 'https://ror.org/010e6tc72 Biolog Life Science Institute'),
(15497, 'https://ror.org/05ebj0z80', 'no_lang_code', 1, 'https://ror.org/05ebj0z80 VOCK Maschinen- und Stahlbau (Germany)'),
(15498, 'https://ror.org/04jjrwe69', 'no_lang_code', 1, 'https://ror.org/04jjrwe69 A E Solutions (United Kingdom)'),
(15499, 'https://ror.org/05bdy6z50', 'no_lang_code', 1, 'https://ror.org/05bdy6z50 AJ Plastic Components (Ireland)'),
(15500, 'https://ror.org/01q781422', 'no_lang_code', 1, 'https://ror.org/01q781422 Atomising Systems (United Kingdom)'),
(15501, 'https://ror.org/022mxs943', 'en', 1, 'https://ror.org/022mxs943 Canadian Women''s Health Network RƩseau Canadien pour la SantƩ des Femmes'),
(15502, 'https://ror.org/05bxrj827', 'no_lang_code', 1, 'https://ror.org/05bxrj827 ATON-HT (Poland)'),
(15503, 'https://ror.org/01q3fkf15', 'no_lang_code', 1, 'https://ror.org/01q3fkf15 Arccore (Sweden)'),
(15504, 'https://ror.org/0394awa03', 'no_lang_code', 1, 'https://ror.org/0394awa03 Atos (Turkey)'),
(15505, 'https://ror.org/053swdh51', 'no_lang_code', 1, 'https://ror.org/053swdh51 ADIRA (Portugal)'),
(15506, 'https://ror.org/04z1wkk88', 'no_lang_code', 1, 'https://ror.org/04z1wkk88 Atos (Italy)'),
(15507, 'https://ror.org/0273db185', 'no_lang_code', 1, 'https://ror.org/0273db185 Archeometra (Italy)'),
(15508, 'https://ror.org/03z7ay868', 'no_lang_code', 1, 'https://ror.org/03z7ay868 Atout Vent (France)'),
(15509, 'https://ror.org/05dmfnv36', 'fr', 1, 'https://ror.org/05dmfnv36 Alcimed'),
(15510, 'https://ror.org/01q283t76', 'no_lang_code', 1, 'https://ror.org/01q283t76 Atoutveille (France)'),
(15511, 'https://ror.org/01v07fn85', 'no_lang_code', 1, 'https://ror.org/01v07fn85 A. Brito (Portugal)'),
(15512, 'https://ror.org/04y2v5q05', 'no_lang_code', 1, 'https://ror.org/04y2v5q05 Alcoa (United Kingdom)'),
(15513, 'https://ror.org/03jzs4815', 'en', 1, 'https://ror.org/03jzs4815 A. N. Nesmeyanov Institute of Organoelement Compounds Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š¾Š¾Ń€Š³Š°Š½ŠøŃ‡ŠµŃŠŗŠøŃ… соеГинений им. А.Š.ŠŠµŃŠ¼ŠµŃŠ½Š¾Š²Š° Российской акаГемии наук'),
(15514, 'https://ror.org/01gc1ag70', 'en', 1, 'https://ror.org/01gc1ag70 Alcohol Drug Mental Health Board of Franklin County'),
(15515, 'https://ror.org/0274w9y45', 'en', 1, 'https://ror.org/0274w9y45 Minerva Educational Foundation'),
(15516, 'https://ror.org/04s87ky63', 'en', 1, 'https://ror.org/04s87ky63 A.P. Karpinsky Russian Geological Research Institute Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. А.П. ŠšŠ°Ń€ŠæŠøŠ½ŃŠŗŠ¾Š³Š¾'),
(15517, 'https://ror.org/04yejes77', 'no_lang_code', 1, 'https://ror.org/04yejes77 A.P.E. Research (Italy)'),
(15518, 'https://ror.org/03bqmf942', 'no_lang_code', 1, 'https://ror.org/03bqmf942 Atrium Innovations (Canada)'),
(15519, 'https://ror.org/0105gtj82', 'no_lang_code', 1, 'https://ror.org/0105gtj82 NORESCO (United States)'),
(15520, 'https://ror.org/011bas443', 'no_lang_code', 1, 'https://ror.org/011bas443 Biolytix (Switzerland)'),
(15521, 'https://ror.org/00qwmbr29', 'en', 1, 'https://ror.org/00qwmbr29 Architectural Research Centers Consortium'),
(15522, 'https://ror.org/00erc4w88', 'no_lang_code', 1, 'https://ror.org/00erc4w88 ATRP Solutions (United States)'),
(15523, 'https://ror.org/05e0yvq18', 'no_lang_code', 1, 'https://ror.org/05e0yvq18 DSVM Group (Denmark)'),
(15524, 'https://ror.org/01zkjwb76', 'no_lang_code', 1, 'https://ror.org/01zkjwb76 A.S.T. Group (Germany) Angewandte System Technik'),
(15525, 'https://ror.org/00bb3dm58', 'no_lang_code', 1, 'https://ror.org/00bb3dm58 Attagene'),
(15526, 'https://ror.org/05nhb7q85', 'no_lang_code', 1, 'https://ror.org/05nhb7q85 ALcontrol Laboratories'),
(15527, 'https://ror.org/04k7qsz50', 'en', 1, 'https://ror.org/04k7qsz50 Archmere Academy'),
(15528, 'https://ror.org/04qydbg58', 'no_lang_code', 1, 'https://ror.org/04qydbg58 Arcola Energy (United Kingdom)'),
(15529, 'https://ror.org/01h05fy77', 'no_lang_code', 1, 'https://ror.org/01h05fy77 ƅAC Microtec (Sweden)'),
(15530, 'https://ror.org/029hqwk21', 'no_lang_code', 1, 'https://ror.org/029hqwk21 Alcyomics (United Kingdom)'),
(15531, 'https://ror.org/01ceqc519', 'en', 1, 'https://ror.org/01ceqc519 United States Arctic Research Commission'),
(15532, 'https://ror.org/03t8x1c03', 'no_lang_code', 1, 'https://ror.org/03t8x1c03 Aalterpaint (Belgium)'),
(15533, 'https://ror.org/02nxmy513', 'en', 1, 'https://ror.org/02nxmy513 Samuel Simmonds Memorial Hospital'),
(15534, 'https://ror.org/00bkqxm79', 'en', 1, 'https://ror.org/00bkqxm79 Aldebaran Marine Research and Broadcast'),
(15535, 'https://ror.org/036n9m383', 'no_lang_code', 1, 'https://ror.org/036n9m383 AB Agri'),
(15536, 'https://ror.org/04zb7yk64', 'no_lang_code', 1, 'https://ror.org/04zb7yk64 Ardaco (Slovakia)'),
(15537, 'https://ror.org/030v6tx56', 'en', 1, 'https://ror.org/030v6tx56 THETA Uganda'),
(15538, 'https://ror.org/05nefdd87', 'no_lang_code', 1, 'https://ror.org/05nefdd87 BioMarck Pharmaceuticals (United States)'),
(15539, 'https://ror.org/03j4qkf39', 'no_lang_code', 1, 'https://ror.org/03j4qkf39 Attocube Systems (Germany)'),
(15540, 'https://ror.org/03px3wr77', 'en', 1, 'https://ror.org/03px3wr77 Danish Academy of Technical Sciences'),
(15541, 'https://ror.org/00jdtc447', 'no_lang_code', 1, 'https://ror.org/00jdtc447 Ab.Acus (Italy)'),
(15542, 'https://ror.org/02v11vt47', 'no_lang_code', 1, 'https://ror.org/02v11vt47 Biomay (Austria)'),
(15543, 'https://ror.org/0359nwj91', 'no_lang_code', 1, 'https://ror.org/0359nwj91 Abamotor Energia (Spain)'),
(15544, 'https://ror.org/02nnffk43', 'no_lang_code', 1, 'https://ror.org/02nnffk43 Audiofile (United States)'),
(15545, 'https://ror.org/025882322', 'no_lang_code', 1, 'https://ror.org/025882322 Ingram Content Group (United States)'),
(15546, 'https://ror.org/05qjkay50', 'no_lang_code', 1, 'https://ror.org/05qjkay50 ABB (Norway)'),
(15547, 'https://ror.org/02twn9v08', 'no_lang_code', 1, 'https://ror.org/02twn9v08 ABB (Canada)'),
(15548, 'https://ror.org/059j8wt77', 'en', 1, 'https://ror.org/059j8wt77 Alexandria Department of Community and Human Services'),
(15549, 'https://ror.org/04vnkt240', 'no_lang_code', 1, 'https://ror.org/04vnkt240 Alexza Pharmaceuticals (United States)'),
(15550, 'https://ror.org/01e09ge17', 'no_lang_code', 1, 'https://ror.org/01e09ge17 EasyCGI (United States)'),
(15551, 'https://ror.org/037aj8726', 'en', 1, 'https://ror.org/037aj8726 North Florida Area Agency on Aging'),
(15552, 'https://ror.org/02nrgrm49', 'no_lang_code', 1, 'https://ror.org/02nrgrm49 Alfa Imaging (Spain)'),
(15553, 'https://ror.org/03avx4w11', 'no_lang_code', 1, 'https://ror.org/03avx4w11 Costruzioni Apparecchiature Elettroniche Nucleari (Italy)'),
(15554, 'https://ror.org/012jkjf69', 'no_lang_code', 1, 'https://ror.org/012jkjf69 Alfa Laval (Sweden)'),
(15555, 'https://ror.org/03faeab35', 'no_lang_code', 1, 'https://ror.org/03faeab35 ABB (Finland)'),
(15556, 'https://ror.org/01jgjmr04', 'no_lang_code', 1, 'https://ror.org/01jgjmr04 Aurora Optics (United States)'),
(15557, 'https://ror.org/04wrzra57', 'en', 1, 'https://ror.org/04wrzra57 Biomedical Engineering Society'),
(15558, 'https://ror.org/01rt4qf18', 'en', 1, 'https://ror.org/01rt4qf18 Abbotsford Veterinary Clinic'),
(15559, 'https://ror.org/052dkve29', 'no_lang_code', 1, 'https://ror.org/052dkve29 Biomedical Enterprises (United States)'),
(15560, 'https://ror.org/019xzfh39', 'no_lang_code', 1, 'https://ror.org/019xzfh39 Huron Technologies (Canada)'),
(15561, 'https://ror.org/05bn6qf70', 'en', 1, 'https://ror.org/05bn6qf70 Aurora College'),
(15562, 'https://ror.org/036atcw47', 'en', 1, 'https://ror.org/036atcw47 Alfred Mann Foundation'),
(15563, 'https://ror.org/00fz5b994', 'no_lang_code', 1, 'https://ror.org/00fz5b994 AbilityNet (United Kingdom)'),
(15564, 'https://ror.org/040q70c97', 'no_lang_code', 1, 'https://ror.org/040q70c97 Aurrenak (Spain)'),
(15565, 'https://ror.org/00sskxf38', 'no_lang_code', 1, 'https://ror.org/00sskxf38 Algade (France)'),
(15566, 'https://ror.org/00h0js975', 'no_lang_code', 1, 'https://ror.org/00h0js975 ABIS (Poland)'),
(15567, 'https://ror.org/01g9rp025', 'en', 1, 'https://ror.org/01g9rp025 Austin Independent School District Distrito Escolar Independiente de Austin'),
(15568, 'https://ror.org/04vafcv05', 'no_lang_code', 1, 'https://ror.org/04vafcv05 AlgaPlus (Portugal)'),
(15569, 'https://ror.org/04m57ab39', 'en', 1, 'https://ror.org/04m57ab39 Austin Travis County Integral Care'),
(15570, 'https://ror.org/05eb0w304', 'no_lang_code', 1, 'https://ror.org/05eb0w304 ABM SOLID (Poland)'),
(15571, 'https://ror.org/00p0vea65', 'no_lang_code', 1, 'https://ror.org/00p0vea65 Abqmr (United States)'),
(15572, 'https://ror.org/04ph1ah53', 'no_lang_code', 1, 'https://ror.org/04ph1ah53 ARES Energiesysteme (Germany)'),
(15573, 'https://ror.org/01yyf4310', 'fr', 1, 'https://ror.org/01yyf4310 AlgoƩ'),
(15574, 'https://ror.org/05km9fv21', 'en', 1, 'https://ror.org/05km9fv21 National Stem Cell Foundation of Australia'),
(15575, 'https://ror.org/00ynx7r03', 'no_lang_code', 1, 'https://ror.org/00ynx7r03 Biomod (Canada)'),
(15576, 'https://ror.org/01dpsf321', 'no_lang_code', 1, 'https://ror.org/01dpsf321 On Telecoms (Greece)'),
(15577, 'https://ror.org/00cmpcq57', 'no_lang_code', 1, 'https://ror.org/00cmpcq57 AretƩ Associates (United States)'),
(15578, 'https://ror.org/05q4npq70', 'no_lang_code', 1, 'https://ror.org/05q4npq70 Absynth Biologics (United Kingdom)'),
(15579, 'https://ror.org/00vg4nv59', 'en', 1, 'https://ror.org/00vg4nv59 Austrian Foundry Research Institute'),
(15580, 'https://ror.org/04j47vk14', 'en', 1, 'https://ror.org/04j47vk14 Austrian Research Institute for Artificial Intelligence Ɩsterreichisches Forschungsinstitut für Artificial Intelligence'),
(15581, 'https://ror.org/057rd1163', 'no_lang_code', 1, 'https://ror.org/057rd1163 Biomol Informatics (Spain)'),
(15582, 'https://ror.org/05hzvxx71', 'en', 1, 'https://ror.org/05hzvxx71 Autism Society of America'),
(15583, 'https://ror.org/00g4cq821', 'no_lang_code', 1, 'https://ror.org/00g4cq821 Triple Point Technology (Canada)'),
(15584, 'https://ror.org/007cyr634', 'no_lang_code', 1, 'https://ror.org/007cyr634 AbTech (United States)'),
(15585, 'https://ror.org/022fx7a43', 'no_lang_code', 1, 'https://ror.org/022fx7a43 Biomolecular Research Genomics (Italy)'),
(15586, 'https://ror.org/010de7v16', 'no_lang_code', 1, 'https://ror.org/010de7v16 Orchid (Switzerland)'),
(15587, 'https://ror.org/0595qv417', 'no_lang_code', 1, 'https://ror.org/0595qv417 Abzyme Therapeutics (United States)'),
(15588, 'https://ror.org/01v56jr26', 'no_lang_code', 1, 'https://ror.org/01v56jr26 BioNanoNet'),
(15589, 'https://ror.org/0116eqt27', 'no_lang_code', 1, 'https://ror.org/0116eqt27 Bionex Pharmaceuticals (United States)'),
(15590, 'https://ror.org/040jnxh95', 'no_lang_code', 1, 'https://ror.org/040jnxh95 AliƩnorEU'),
(15591, 'https://ror.org/0549xxn78', 'no_lang_code', 1, 'https://ror.org/0549xxn78 Rusal (Ireland) РУДАЛ'),
(15592, 'https://ror.org/04p89va55', 'no_lang_code', 1, 'https://ror.org/04p89va55 TRW Automotive (France)'),
(15593, 'https://ror.org/0217vz783', 'no_lang_code', 1, 'https://ror.org/0217vz783 Autoflug (Germany)'),
(15594, 'https://ror.org/04mmhym95', 'no_lang_code', 1, 'https://ror.org/04mmhym95 Argans (United Kingdom)'),
(15595, 'https://ror.org/044b7f107', 'no_lang_code', 1, 'https://ror.org/044b7f107 BioPhage Pharma (Canada)'),
(15596, 'https://ror.org/00zsd7b19', 'no_lang_code', 1, 'https://ror.org/00zsd7b19 Alitalia (Italy)'),
(15597, 'https://ror.org/04ehgfn88', 'no_lang_code', 1, 'https://ror.org/04ehgfn88 Arge Vegetationsƶkologie und Landschaftsplanung'),
(15598, 'https://ror.org/05ktp5w69', 'no_lang_code', 1, 'https://ror.org/05ktp5w69 BioPharm (United Kingdom)'),
(15599, 'https://ror.org/035kfrg53', 'no_lang_code', 1, 'https://ror.org/035kfrg53 Argela (Turkey)'),
(15600, 'https://ror.org/04ny0re85', 'no_lang_code', 1, 'https://ror.org/04ny0re85 Biopharma Technology (United Kingdom)'),
(15601, 'https://ror.org/04kpvds24', 'no_lang_code', 1, 'https://ror.org/04kpvds24 Applied Logic Laboratory (Hungary)'),
(15602, 'https://ror.org/05shjdq49', 'no_lang_code', 1, 'https://ror.org/05shjdq49 Argo (Greece)'),
(15603, 'https://ror.org/03j4bbt02', 'no_lang_code', 1, 'https://ror.org/03j4bbt02 Biopolis (Spain)'),
(15604, 'https://ror.org/00qva7y21', 'en', 1, 'https://ror.org/00qva7y21 Academy for Healthcare Improvement'),
(15605, 'https://ror.org/01txxg691', 'no_lang_code', 1, 'https://ror.org/01txxg691 Automated Cells & Equipment (United States)'),
(15606, 'https://ror.org/051b3zp86', 'en', 1, 'https://ror.org/051b3zp86 Academy of Entrepreneurship'),
(15607, 'https://ror.org/05sfzsk90', 'en', 1, 'https://ror.org/05sfzsk90 College of Western Idaho'),
(15608, 'https://ror.org/038s1hq41', 'en', 1, 'https://ror.org/038s1hq41 All Russian Research Institute of Hydrometeorological information World Data Center Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ России гиГрометеорологической информации ŠœŠøŃ€Š¾Š²Š¾Š¹ центр Ганных'),
(15609, 'https://ror.org/00tg69j59', 'no_lang_code', 1, 'https://ror.org/00tg69j59 Argus International (United States)'),
(15610, 'https://ror.org/02s9zgk30', 'en', 1, 'https://ror.org/02s9zgk30 Allegheny County Department of Human Services'),
(15611, 'https://ror.org/03n8jr770', 'no_lang_code', 1, 'https://ror.org/03n8jr770 ACAL Energy (United Kingdom)'),
(15612, 'https://ror.org/00mynyp54', 'de', 1, 'https://ror.org/00mynyp54 Allgemeiner Deutscher Automobil Club General German Automobile Club'),
(15613, 'https://ror.org/013xgfd67', 'no_lang_code', 1, 'https://ror.org/013xgfd67 Biopredic (France)'),
(15614, 'https://ror.org/0079hf726', 'no_lang_code', 1, 'https://ror.org/0079hf726 ARIA Technologies'),
(15615, 'https://ror.org/04veekh32', 'en', 1, 'https://ror.org/04veekh32 Autonomous Undersea Systems Institute'),
(15616, 'https://ror.org/01922pt58', 'en', 1, 'https://ror.org/01922pt58 Alliance for Safe Kids'),
(15617, 'https://ror.org/04x4tst13', 'no_lang_code', 1, 'https://ror.org/04x4tst13 Bioprojet (France)'),
(15618, 'https://ror.org/03mg4b565', 'it', 1, 'https://ror.org/03mg4b565 AutoritĆ  di bacino dei fiumi Isonzo, Tagliamento, Livenza, Piave, Brenta-Bacchiglione'),
(15619, 'https://ror.org/04vtdnj65', 'no_lang_code', 1, 'https://ror.org/04vtdnj65 Aries Alliance (France)'),
(15620, 'https://ror.org/03m3an259', 'no_lang_code', 1, 'https://ror.org/03m3an259 Arisan Therapeutics (United States)'),
(15621, 'https://ror.org/00g8qdw34', 'no_lang_code', 1, 'https://ror.org/00g8qdw34 Arisaph Pharmaceuticals (United States)'),
(15622, 'https://ror.org/00xemxm68', 'no_lang_code', 1, 'https://ror.org/00xemxm68 All4tec (France)'),
(15623, 'https://ror.org/0248dnv50', 'no_lang_code', 1, 'https://ror.org/0248dnv50 Bioptix (United States)'),
(15624, 'https://ror.org/02jmfhf57', 'no_lang_code', 1, 'https://ror.org/02jmfhf57 Biopure (United States)'),
(15625, 'https://ror.org/05ch6rk19', 'no_lang_code', 1, 'https://ror.org/05ch6rk19 AvanSci Bio (United States)'),
(15626, 'https://ror.org/01zqwky61', 'no_lang_code', 1, 'https://ror.org/01zqwky61 Avantes (Netherlands)'),
(15627, 'https://ror.org/00r0f2n85', 'en', 1, 'https://ror.org/00r0f2n85 Accelerace'),
(15628, 'https://ror.org/01nnq1w58', 'no_lang_code', 1, 'https://ror.org/01nnq1w58 AvantiCell Science (United Kingdom)'),
(15629, 'https://ror.org/05fnat077', 'en', 1, 'https://ror.org/05fnat077 Arise'),
(15630, 'https://ror.org/02gwywt13', 'en', 1, 'https://ror.org/02gwywt13 Allies with Families'),
(15631, 'https://ror.org/03h80hk08', 'no_lang_code', 1, 'https://ror.org/03h80hk08 Alligator Bioscience (Sweden)'),
(15632, 'https://ror.org/050473r14', 'no_lang_code', 1, 'https://ror.org/050473r14 Spectrum Pharmaceuticals (United States)'),
(15633, 'https://ror.org/04e86kw41', 'en', 1, 'https://ror.org/04e86kw41 Arizona Youth Partnership'),
(15634, 'https://ror.org/03hz0jb14', 'no_lang_code', 1, 'https://ror.org/03hz0jb14 Avaxia Biologics (United States)'),
(15635, 'https://ror.org/00n19h079', 'no_lang_code', 1, 'https://ror.org/00n19h079 Arjowiggins (France)'),
(15636, 'https://ror.org/051c1hy38', 'no_lang_code', 1, 'https://ror.org/051c1hy38 Avecom (Belgium)'),
(15637, 'https://ror.org/04fkf4s26', 'no_lang_code', 1, 'https://ror.org/04fkf4s26 Intellijoint Surgical (Canada)'),
(15638, 'https://ror.org/00jh09798', 'no_lang_code', 1, 'https://ror.org/00jh09798 Acos Group (Germany)'),
(15639, 'https://ror.org/00415cn92', 'no_lang_code', 1, 'https://ror.org/00415cn92 Lehnsgaard (Denmark)'),
(15640, 'https://ror.org/04hb7mq03', 'no_lang_code', 1, 'https://ror.org/04hb7mq03 Accessible Designs (United States)'),
(15641, 'https://ror.org/03wde7j36', 'no_lang_code', 1, 'https://ror.org/03wde7j36 Averbis (Germany)'),
(15642, 'https://ror.org/00vm5ky05', 'en', 1, 'https://ror.org/00vm5ky05 Averett University'),
(15643, 'https://ror.org/049k1wy83', 'no_lang_code', 1, 'https://ror.org/049k1wy83 Acciai Speciali Terni (Italy)'),
(15644, 'https://ror.org/01k4bzh19', 'no_lang_code', 1, 'https://ror.org/01k4bzh19 Arjowiggins (United Kingdom)'),
(15645, 'https://ror.org/005szp141', 'no_lang_code', 1, 'https://ror.org/005szp141 ProterixBio (United States)'),
(15646, 'https://ror.org/021mz1r56', 'no_lang_code', 1, 'https://ror.org/021mz1r56 BioSciCon (United States)'),
(15647, 'https://ror.org/01rqt6394', 'en', 1, 'https://ror.org/01rqt6394 Arkansas Science & Technology'),
(15648, 'https://ror.org/020d95911', 'en', 1, 'https://ror.org/020d95911 Almaty University of Power Engineering and Telecommunications Алматинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠø Šø ŃŠ²ŃŠ·Šø Алматы ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠ° және байланыс ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(15649, 'https://ror.org/00zg9jh77', 'en', 1, 'https://ror.org/00zg9jh77 Arkansas State Hospital'),
(15650, 'https://ror.org/00dnz3441', 'no_lang_code', 1, 'https://ror.org/00dnz3441 Almex (Netherlands)'),
(15651, 'https://ror.org/04btmch86', 'no_lang_code', 1, 'https://ror.org/04btmch86 AccSys Technology (United States)'),
(15652, 'https://ror.org/01nms9j09', 'no_lang_code', 1, 'https://ror.org/01nms9j09 Alpes Lasers (Switzerland)'),
(15653, 'https://ror.org/04jfzmb35', 'no_lang_code', 1, 'https://ror.org/04jfzmb35 Biosensia (Ireland)'),
(15654, 'https://ror.org/01s2ng935', 'no_lang_code', 1, 'https://ror.org/01s2ng935 BioSensics (United States)'),
(15655, 'https://ror.org/04qjx1736', 'no_lang_code', 1, 'https://ror.org/04qjx1736 Biosensor Applications (Sweden)'),
(15656, 'https://ror.org/00dfbgk15', 'no_lang_code', 1, 'https://ror.org/00dfbgk15 AccuStrata (United States)'),
(15657, 'https://ror.org/02bymts86', 'en', 1, 'https://ror.org/02bymts86 Academic and Research Network of Slovenia'),
(15658, 'https://ror.org/04wr95t62', 'no_lang_code', 1, 'https://ror.org/04wr95t62 Alpex Technologies'),
(15659, 'https://ror.org/039g7yg54', 'no_lang_code', 1, 'https://ror.org/039g7yg54 Automobile Association (United Kingdom)'),
(15660, 'https://ror.org/00y0kp964', 'no_lang_code', 1, 'https://ror.org/00y0kp964 Outokumpu (Sweden)'),
(15661, 'https://ror.org/031x2yz16', 'no_lang_code', 1, 'https://ror.org/031x2yz16 Arri (Germany)'),
(15662, 'https://ror.org/00h2r3g41', 'no_lang_code', 1, 'https://ror.org/00h2r3g41 Ausa (Spain)'),
(15663, 'https://ror.org/03fxegb97', 'en', 1, 'https://ror.org/03fxegb97 Alpha Consulting Services'),
(15664, 'https://ror.org/047ac3d11', 'no_lang_code', 1, 'https://ror.org/047ac3d11 Alpha Marine (Greece)'),
(15665, 'https://ror.org/04w3v4n03', 'no_lang_code', 1, 'https://ror.org/04w3v4n03 Biostat (United States)'),
(15666, 'https://ror.org/02vxa5545', 'no_lang_code', 1, 'https://ror.org/02vxa5545 Haemonetics (United States)'),
(15667, 'https://ror.org/03a76f909', 'en', 1, 'https://ror.org/03a76f909 Autoridad Portuaria de Santander Santander Port Authority'),
(15668, 'https://ror.org/0222ak715', 'no_lang_code', 1, 'https://ror.org/0222ak715 ARServices (United States)'),
(15669, 'https://ror.org/03wdfz437', 'en', 1, 'https://ror.org/03wdfz437 Valencia Port'),
(15670, 'https://ror.org/01s6ka014', 'no_lang_code', 1, 'https://ror.org/01s6ka014 AlphaLabs (France)'),
(15671, 'https://ror.org/002g1fh49', 'no_lang_code', 1, 'https://ror.org/002g1fh49 AlphaMed (United States)'),
(15672, 'https://ror.org/00j1qfq25', 'no_lang_code', 1, 'https://ror.org/00j1qfq25 Aceites Malagon (Spain)'),
(15673, 'https://ror.org/01xy8wf83', 'ca', 1, 'https://ror.org/01xy8wf83 Reial Automòbil Club de Catalunya'),
(15674, 'https://ror.org/02f33fz20', 'no_lang_code', 1, 'https://ror.org/02f33fz20 AvidCare (United States)'),
(15675, 'https://ror.org/05g51bs78', 'no_lang_code', 1, 'https://ror.org/05g51bs78 Acelot (United States)'),
(15676, 'https://ror.org/02p2xd084', 'no_lang_code', 1, 'https://ror.org/02p2xd084 Avidity (United States)'),
(15677, 'https://ror.org/00z1gnf82', 'no_lang_code', 1, 'https://ror.org/00z1gnf82 Avilo Software (Canada)'),
(15678, 'https://ror.org/03nb0an85', 'no_lang_code', 1, 'https://ror.org/03nb0an85 Aviointeriors (Italy)'),
(15679, 'https://ror.org/03ve6sf73', 'no_lang_code', 1, 'https://ror.org/03ve6sf73 BioSystem (Germany)'),
(15680, 'https://ror.org/059q7ds12', 'no_lang_code', 1, 'https://ror.org/059q7ds12 Alpha Therm (Germany)'),
(15681, 'https://ror.org/00zndc617', 'no_lang_code', 1, 'https://ror.org/00zndc617 Art of Technology (Switzerland)'),
(15682, 'https://ror.org/01df52k09', 'no_lang_code', 1, 'https://ror.org/01df52k09 Artaic (United States)'),
(15683, 'https://ror.org/03yc4yk34', 'no_lang_code', 1, 'https://ror.org/03yc4yk34 Avitronics Research (Greece)'),
(15684, 'https://ror.org/023yhw405', 'no_lang_code', 1, 'https://ror.org/023yhw405 Aviv Biomedical (United States)'),
(15685, 'https://ror.org/03ct7hd51', 'no_lang_code', 1, 'https://ror.org/03ct7hd51 Henkel (Netherlands)'),
(15686, 'https://ror.org/01xnazj43', 'no_lang_code', 1, 'https://ror.org/01xnazj43 Alsitek (United Kingdom)'),
(15687, 'https://ror.org/05b023967', 'no_lang_code', 1, 'https://ror.org/05b023967 BioTechnica (United States)'),
(15688, 'https://ror.org/04xx5ce35', 'en', 1, 'https://ror.org/04xx5ce35 Fairfield Hospital'),
(15689, 'https://ror.org/02k9pbz03', 'no_lang_code', 1, 'https://ror.org/02k9pbz03 ACIC (Belgium)'),
(15690, 'https://ror.org/011r1ph27', 'no_lang_code', 1, 'https://ror.org/011r1ph27 Avonwood (United Kingdom)'),
(15691, 'https://ror.org/03py22436', 'no_lang_code', 1, 'https://ror.org/03py22436 Zodiac Aerospace (United States)'),
(15692, 'https://ror.org/00ybrvx84', 'no_lang_code', 1, 'https://ror.org/00ybrvx84 Awaiba (Portugal)'),
(15693, 'https://ror.org/033nt4y02', 'no_lang_code', 1, 'https://ror.org/033nt4y02 Advance Concepts for Interactive Technology (Germany)'),
(15694, 'https://ror.org/01x4yq975', 'no_lang_code', 1, 'https://ror.org/01x4yq975 Awite Bioenergie (Germany)'),
(15695, 'https://ror.org/0284a6m60', 'no_lang_code', 1, 'https://ror.org/0284a6m60 Axerion Therapeutics (United States)'),
(15696, 'https://ror.org/0389mec09', 'no_lang_code', 1, 'https://ror.org/0389mec09 Biothermica (Canada)'),
(15697, 'https://ror.org/03ws6g685', 'no_lang_code', 1, 'https://ror.org/03ws6g685 Aciturri (Spain)'),
(15698, 'https://ror.org/015g9cc75', 'no_lang_code', 1, 'https://ror.org/015g9cc75 BIOTECmarin (Germany)'),
(15699, 'https://ror.org/027zd6v59', 'no_lang_code', 1, 'https://ror.org/027zd6v59 Isomerase Therapeutics (United Kingdom)'),
(15700, 'https://ror.org/01j65ny98', 'no_lang_code', 1, 'https://ror.org/01j65ny98 Acktar (Israel)'),
(15701, 'https://ror.org/03d1aqs10', 'no_lang_code', 1, 'https://ror.org/03d1aqs10 ACMA Social Marketing'),
(15702, 'https://ror.org/05w8qnb04', 'no_lang_code', 1, 'https://ror.org/05w8qnb04 Axion Biosystems (United States)'),
(15703, 'https://ror.org/055e84666', 'no_lang_code', 1, 'https://ror.org/055e84666 Acme Express'),
(15704, 'https://ror.org/00vj7a915', 'no_lang_code', 1, 'https://ror.org/00vj7a915 Altair Engineering (France)'),
(15705, 'https://ror.org/01h6fqa13', 'no_lang_code', 1, 'https://ror.org/01h6fqa13 Axon Automotive (United Kingdom)'),
(15706, 'https://ror.org/00q3fka24', 'no_lang_code', 1, 'https://ror.org/00q3fka24 Altairnano (United States)'),
(15707, 'https://ror.org/01fzeeh76', 'no_lang_code', 1, 'https://ror.org/01fzeeh76 Artelys (France)'),
(15708, 'https://ror.org/00ab0d040', 'no_lang_code', 1, 'https://ror.org/00ab0d040 Axon (United States)'),
(15709, 'https://ror.org/04m8q0w70', 'no_lang_code', 1, 'https://ror.org/04m8q0w70 BioTransformations (United Kingdom)'),
(15710, 'https://ror.org/05fr4xz54', 'no_lang_code', 1, 'https://ror.org/05fr4xz54 Nitto (United States)'),
(15711, 'https://ror.org/02fhnan19', 'no_lang_code', 1, 'https://ror.org/02fhnan19 Acpharis'),
(15712, 'https://ror.org/05jkv6633', 'no_lang_code', 1, 'https://ror.org/05jkv6633 Artemis Intelligent Power (United Kingdom)'),
(15713, 'https://ror.org/05h70tr57', 'no_lang_code', 1, 'https://ror.org/05h70tr57 Altec Software (Greece)'),
(15714, 'https://ror.org/0085yms62', 'no_lang_code', 1, 'https://ror.org/0085yms62 AcQ Inducom'),
(15715, 'https://ror.org/05jmy3s26', 'no_lang_code', 1, 'https://ror.org/05jmy3s26 Artes Biotechnology (Germany)'),
(15716, 'https://ror.org/014rb1v48', 'no_lang_code', 1, 'https://ror.org/014rb1v48 AMREP (United States)'),
(15717, 'https://ror.org/023ccd616', 'no_lang_code', 1, 'https://ror.org/023ccd616 AcrossLimits'),
(15718, 'https://ror.org/054xwps40', 'no_lang_code', 1, 'https://ror.org/054xwps40 Axsym (United Kingdom)'),
(15719, 'https://ror.org/01fg04993', 'no_lang_code', 1, 'https://ror.org/01fg04993 ACS Biomarker (Netherlands)'),
(15720, 'https://ror.org/00ch9bs54', 'no_lang_code', 1, 'https://ror.org/00ch9bs54 Altec (United States)'),
(15721, 'https://ror.org/05yny8j84', 'en', 1, 'https://ror.org/05yny8j84 Americas Commercial Transportation Research'),
(15722, 'https://ror.org/00m96gg93', 'no_lang_code', 1, 'https://ror.org/00m96gg93 Altera (United Kingdom)'),
(15723, 'https://ror.org/0562rw148', 'no_lang_code', 1, 'https://ror.org/0562rw148 Biotronics 3D (United Kingdom)'),
(15724, 'https://ror.org/0376pw173', 'no_lang_code', 1, 'https://ror.org/0376pw173 Alteryx (United Kingdom)'),
(15725, 'https://ror.org/02bap3480', 'no_lang_code', 1, 'https://ror.org/02bap3480 BioTronics (United States)'),
(15726, 'https://ror.org/00d269r04', 'no_lang_code', 1, 'https://ror.org/00d269r04 Ayanda Biosystems (Switzerland)'),
(15727, 'https://ror.org/04kzfav20', 'no_lang_code', 1, 'https://ror.org/04kzfav20 Alterra Power (Canada)'),
(15728, 'https://ror.org/00v2kj637', 'no_lang_code', 1, 'https://ror.org/00v2kj637 BioVidria (United States)'),
(15729, 'https://ror.org/01m7s5539', 'no_lang_code', 1, 'https://ror.org/01m7s5539 Altoris (United States)'),
(15730, 'https://ror.org/01avyb607', 'no_lang_code', 1, 'https://ror.org/01avyb607 Artibal (Spain)'),
(15731, 'https://ror.org/01xtbck32', 'no_lang_code', 1, 'https://ror.org/01xtbck32 Actinix (United States)'),
(15732, 'https://ror.org/008abej30', 'no_lang_code', 1, 'https://ror.org/008abej30 Aylesford Newsprint (United Kingdom)'),
(15733, 'https://ror.org/031241j87', 'no_lang_code', 1, 'https://ror.org/031241j87 Artificial Cell Technologies (United States)'),
(15734, 'https://ror.org/044nkqy76', 'no_lang_code', 1, 'https://ror.org/044nkqy76 Ayogo (Canada)'),
(15735, 'https://ror.org/05fz04663', 'no_lang_code', 1, 'https://ror.org/05fz04663 Activation Laboratories'),
(15736, 'https://ror.org/016zn5019', 'no_lang_code', 1, 'https://ror.org/016zn5019 Altran (United Kingdom)'),
(15737, 'https://ror.org/006sr7078', 'no_lang_code', 1, 'https://ror.org/006sr7078 Regenerys (United Kingdom)'),
(15738, 'https://ror.org/02r1e6089', 'no_lang_code', 1, 'https://ror.org/02r1e6089 Lundin Mining (Ireland)'),
(15739, 'https://ror.org/00m51t454', 'no_lang_code', 1, 'https://ror.org/00m51t454 SavvyDox (Canada)'),
(15740, 'https://ror.org/025v2yp51', 'no_lang_code', 1, 'https://ror.org/025v2yp51 Altus Technologies (United States)'),
(15741, 'https://ror.org/05p590m36', 'no_lang_code', 1, 'https://ror.org/05p590m36 Artificial Intelligence in Medicine (Canada)'),
(15742, 'https://ror.org/02794f225', 'no_lang_code', 1, 'https://ror.org/02794f225 Acutech (Greece)'),
(15743, 'https://ror.org/004mx7t23', 'en', 1, 'https://ror.org/004mx7t23 Birmingham Bloomfield Community Coalition'),
(15744, 'https://ror.org/00gh58f75', 'en', 1, 'https://ror.org/00gh58f75 Library of Birmingham'),
(15745, 'https://ror.org/007422545', 'no_lang_code', 1, 'https://ror.org/007422545 Active Space Technologies (Germany)'),
(15746, 'https://ror.org/02qe2w544', 'en', 1, 'https://ror.org/02qe2w544 Birmingham Museum and Art Gallery'),
(15747, 'https://ror.org/05sa51379', 'en', 1, 'https://ror.org/05sa51379 Birmingham Repertory Theatre'),
(15748, 'https://ror.org/02qem3h74', 'en', 1, 'https://ror.org/02qem3h74 Birmingham Science City'),
(15749, 'https://ror.org/011mf7877', 'no_lang_code', 1, 'https://ror.org/011mf7877 Automatizace železničnĆ­ dopravy Praha AŽD Praha (Czechia)'),
(15750, 'https://ror.org/04hypbt36', 'no_lang_code', 1, 'https://ror.org/04hypbt36 BISDN (Germany)'),
(15751, 'https://ror.org/02jbnyk55', 'no_lang_code', 1, 'https://ror.org/02jbnyk55 Active Spectrum (United States)');
INSERT INTO `rors` VALUES
(15752, 'https://ror.org/04cqe3x57', 'no_lang_code', 1, 'https://ror.org/04cqe3x57 Arctur (Slovenia)'),
(15753, 'https://ror.org/04wmc0p46', 'en', 1, 'https://ror.org/04wmc0p46 Azerbaijan Research Educational Network Association'),
(15754, 'https://ror.org/012dd2p55', 'no_lang_code', 1, 'https://ror.org/012dd2p55 Arttic'),
(15755, 'https://ror.org/03zp7nb85', 'no_lang_code', 1, 'https://ror.org/03zp7nb85 Active Technologies (Italy)'),
(15756, 'https://ror.org/02p4mks29', 'no_lang_code', 1, 'https://ror.org/02p4mks29 Henry Schein (United States)'),
(15757, 'https://ror.org/03qm16g93', 'no_lang_code', 1, 'https://ror.org/03qm16g93 Aluminium Surface Engineering (United Kingdom)'),
(15758, 'https://ror.org/04thmk358', 'no_lang_code', 1, 'https://ror.org/04thmk358 Kyorin (United States)'),
(15759, 'https://ror.org/02teja790', 'no_lang_code', 1, 'https://ror.org/02teja790 Aruna Biomedical (United States)'),
(15760, 'https://ror.org/04mnq8476', 'en', 1, 'https://ror.org/04mnq8476 Aluminium Valley SociƩtƩ de la VallƩe de l''Aluminium'),
(15761, 'https://ror.org/01j93z975', 'no_lang_code', 1, 'https://ror.org/01j93z975 Azienda del Consorzio Trasporti Veneziano (Italy)'),
(15762, 'https://ror.org/01pr67x49', 'no_lang_code', 1, 'https://ror.org/01pr67x49 Arvia Technology (United Kingdom)'),
(15763, 'https://ror.org/05p29dk84', 'no_lang_code', 1, 'https://ror.org/05p29dk84 Bisiach & Carru (Italy)'),
(15764, 'https://ror.org/01ebn9j06', 'no_lang_code', 1, 'https://ror.org/01ebn9j06 Iren (Italy)'),
(15765, 'https://ror.org/05q6gmw98', 'en', 1, 'https://ror.org/05q6gmw98 Asatrem'),
(15766, 'https://ror.org/017k93810', 'no_lang_code', 1, 'https://ror.org/017k93810 Azienda Industriali Municipali di Vicenza (Italy)'),
(15767, 'https://ror.org/02r3v5z34', 'no_lang_code', 1, 'https://ror.org/02r3v5z34 AcXys Technologies (France)'),
(15768, 'https://ror.org/00be37468', 'no_lang_code', 1, 'https://ror.org/00be37468 Azienda MobilitĆ  e Trasporti'),
(15769, 'https://ror.org/04k7ty438', 'no_lang_code', 1, 'https://ror.org/04k7ty438 Bitecic (United Kingdom)'),
(15770, 'https://ror.org/04e3mez11', 'no_lang_code', 1, 'https://ror.org/04e3mez11 Immucor (United States)'),
(15771, 'https://ror.org/00fpt6s33', 'no_lang_code', 1, 'https://ror.org/00fpt6s33 AdaCore (France)'),
(15772, 'https://ror.org/00e90q161', 'no_lang_code', 1, 'https://ror.org/00e90q161 ASCOMP (Switzerland)'),
(15773, 'https://ror.org/0032ykz68', 'no_lang_code', 1, 'https://ror.org/0032ykz68 Ascora (Germany)'),
(15774, 'https://ror.org/0533m8w24', 'no_lang_code', 1, 'https://ror.org/0533m8w24 Advanced Simulation & Design (Germany)'),
(15775, 'https://ror.org/02xm6e195', 'no_lang_code', 1, 'https://ror.org/02xm6e195 Bitgear (Serbia)'),
(15776, 'https://ror.org/04201qf96', 'no_lang_code', 1, 'https://ror.org/04201qf96 as2con (Croatia)'),
(15777, 'https://ror.org/00sc4h441', 'no_lang_code', 1, 'https://ror.org/00sc4h441 AM Testing (Italy)'),
(15778, 'https://ror.org/03x4rma83', 'no_lang_code', 1, 'https://ror.org/03x4rma83 Aztec Systems (United States)'),
(15779, 'https://ror.org/04a3jpq51', 'no_lang_code', 1, 'https://ror.org/04a3jpq51 Adaptronica (Poland)'),
(15780, 'https://ror.org/01fshr394', 'no_lang_code', 1, 'https://ror.org/01fshr394 Adarza BioSystems (United States)'),
(15781, 'https://ror.org/01ts0we02', 'no_lang_code', 1, 'https://ror.org/01ts0we02 Walmart (United Kingdom)'),
(15782, 'https://ror.org/03qxmr865', 'no_lang_code', 1, 'https://ror.org/03qxmr865 Amanova (Slovenia)'),
(15783, 'https://ror.org/05135fy66', 'no_lang_code', 1, 'https://ror.org/05135fy66 Black & Veatch (United Kingdom)'),
(15784, 'https://ror.org/02k8ce792', 'no_lang_code', 1, 'https://ror.org/02k8ce792 Amantys (United Kingdom)'),
(15785, 'https://ror.org/03y83c407', 'no_lang_code', 1, 'https://ror.org/03y83c407 Babcock Power (United Kingdom)'),
(15786, 'https://ror.org/04knh8e66', 'no_lang_code', 1, 'https://ror.org/04knh8e66 Aselsan (Turkey) Askeri Elektronik Sanayi Military Electronic Industries'),
(15787, 'https://ror.org/02b4c4128', 'no_lang_code', 1, 'https://ror.org/02b4c4128 Babraham Bioscience Technologies (United Kingdom)'),
(15788, 'https://ror.org/04pqqac29', 'no_lang_code', 1, 'https://ror.org/04pqqac29 Bac2 (United Kingdom)'),
(15789, 'https://ror.org/05axffz73', 'no_lang_code', 1, 'https://ror.org/05axffz73 Amar International (United States)'),
(15790, 'https://ror.org/026a1h106', 'de', 1, 'https://ror.org/026a1h106 Verband kommunaler Unternehmen'),
(15791, 'https://ror.org/003fa5112', 'en', 1, 'https://ror.org/003fa5112 Black Sea NGO Network'),
(15792, 'https://ror.org/007rn0n34', 'no_lang_code', 1, 'https://ror.org/007rn0n34 Ashton & Moore (United Kingdom)'),
(15793, 'https://ror.org/006ryea96', 'no_lang_code', 1, 'https://ror.org/006ryea96 Ashwoods Automotive (United Kingdom)'),
(15794, 'https://ror.org/05fyshf19', 'no_lang_code', 1, 'https://ror.org/05fyshf19 Blastech (United Kingdom)'),
(15795, 'https://ror.org/012kxk780', 'en', 1, 'https://ror.org/012kxk780 Asia Foundation'),
(15796, 'https://ror.org/010tt0206', 'en', 1, 'https://ror.org/010tt0206 Asia Society'),
(15797, 'https://ror.org/00s2mdg70', 'en', 1, 'https://ror.org/00s2mdg70 Asian American Drug Abuse Program'),
(15798, 'https://ror.org/01hzp2x54', 'no_lang_code', 1, 'https://ror.org/01hzp2x54 Amber Waves Software (United States)'),
(15799, 'https://ror.org/05051a828', 'en', 1, 'https://ror.org/05051a828 Asian Community Mental Health Services'),
(15800, 'https://ror.org/03kp5tn18', 'no_lang_code', 1, 'https://ror.org/03kp5tn18 Blatraden (Sweden)'),
(15801, 'https://ror.org/00yt7g523', 'en', 1, 'https://ror.org/00yt7g523 Asian Health Coalition'),
(15802, 'https://ror.org/026s7y345', 'en', 1, 'https://ror.org/026s7y345 Blaufuss Multimedia'),
(15803, 'https://ror.org/01sxbnv57', 'no_lang_code', 1, 'https://ror.org/01sxbnv57 RealNetworks (Canada)'),
(15804, 'https://ror.org/01m12v471', 'no_lang_code', 1, 'https://ror.org/01m12v471 Ambient Systems (Netherlands)'),
(15805, 'https://ror.org/00ms70536', 'no_lang_code', 1, 'https://ror.org/00ms70536 Babcock & Wilcox (Spain)'),
(15806, 'https://ror.org/01k6asa13', 'no_lang_code', 1, 'https://ror.org/01k6asa13 Bactest (United Kingdom)'),
(15807, 'https://ror.org/01w8j2j71', 'no_lang_code', 1, 'https://ror.org/01w8j2j71 Ademtech (France)'),
(15808, 'https://ror.org/018tmag26', 'no_lang_code', 1, 'https://ror.org/018tmag26 Ambiental Technical Solutions (United Kingdom)'),
(15809, 'https://ror.org/00drde038', 'no_lang_code', 1, 'https://ror.org/00drde038 Blendics (United States)'),
(15810, 'https://ror.org/04dxb7m07', 'no_lang_code', 1, 'https://ror.org/04dxb7m07 Bactiguard (Sweden)'),
(15811, 'https://ror.org/04c8tnm64', 'ca', 1, 'https://ror.org/04c8tnm64 Badalona Serveis Assistencials'),
(15812, 'https://ror.org/03rqwpv17', 'no_lang_code', 1, 'https://ror.org/03rqwpv17 Amcor (Switzerland)'),
(15813, 'https://ror.org/02hc6j080', 'no_lang_code', 1, 'https://ror.org/02hc6j080 Blinq Network (Canada)'),
(15814, 'https://ror.org/05xcney74', 'it', 1, 'https://ror.org/05xcney74 Azienda Sanitaria Locale Roma 3'),
(15815, 'https://ror.org/046c16x31', 'en', 1, 'https://ror.org/046c16x31 Pacific Clinics'),
(15816, 'https://ror.org/00h2j5q24', 'it', 1, 'https://ror.org/00h2j5q24 Azienda UnitĆ  Sanitaria Locale 11 di Empoli'),
(15817, 'https://ror.org/05tf5t656', 'no_lang_code', 1, 'https://ror.org/05tf5t656 Baebies (United States)'),
(15818, 'https://ror.org/049yptc43', 'en', 1, 'https://ror.org/049yptc43 Asian Pacific Partners for Empowerment, Advocacy and Leadership'),
(15819, 'https://ror.org/03ajkmw94', 'en', 1, 'https://ror.org/03ajkmw94 British Academy of Film and Television Arts'),
(15820, 'https://ror.org/02hz47643', 'en', 1, 'https://ror.org/02hz47643 Asian Technology Information Program'),
(15821, 'https://ror.org/010em6d12', 'no_lang_code', 1, 'https://ror.org/010em6d12 Amec Foster Wheeler (Canada)'),
(15822, 'https://ror.org/02n27h954', 'en', 1, 'https://ror.org/02n27h954 American Academy of Allergy, Asthma and Immunology'),
(15823, 'https://ror.org/044q67424', 'no_lang_code', 1, 'https://ror.org/044q67424 Asius Technologies (United States)'),
(15824, 'https://ror.org/05s6yhj52', 'en', 1, 'https://ror.org/05s6yhj52 American Association for Higher Education and Accreditation'),
(15825, 'https://ror.org/05ds63q12', 'en', 1, 'https://ror.org/05ds63q12 Bakken Museum'),
(15826, 'https://ror.org/03qgqvs90', 'en', 1, 'https://ror.org/03qgqvs90 American Alliance of Museums'),
(15827, 'https://ror.org/03z9rt353', 'en', 1, 'https://ror.org/03z9rt353 American Association of State Colleges and Universities'),
(15828, 'https://ror.org/03yrced67', 'no_lang_code', 1, 'https://ror.org/03yrced67 Blue Wave Semiconductors (United States)'),
(15829, 'https://ror.org/03eg5yv61', 'no_lang_code', 1, 'https://ror.org/03eg5yv61 Neogen Europe (United Kingdom)'),
(15830, 'https://ror.org/05v4dhb64', 'no_lang_code', 1, 'https://ror.org/05v4dhb64 Bluefrog Design (United Kingdom)'),
(15831, 'https://ror.org/05qeark78', 'no_lang_code', 1, 'https://ror.org/05qeark78 Adicep Technologies (United States)'),
(15832, 'https://ror.org/04y4a7s50', 'en', 1, 'https://ror.org/04y4a7s50 American Board of Medical Specialties'),
(15833, 'https://ror.org/05rqggm48', 'en', 1, 'https://ror.org/05rqggm48 New Vista'),
(15834, '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'),
(15835, 'https://ror.org/017bw3q44', 'no_lang_code', 1, 'https://ror.org/017bw3q44 BMI Association'),
(15836, 'https://ror.org/01vhbxh90', 'no_lang_code', 1, 'https://ror.org/01vhbxh90 Advanced Integrated Technology Solutions & Services'),
(15837, 'https://ror.org/01kratx56', 'de', 1, 'https://ror.org/01kratx56 Federal Statistical Office Statistisches Bundesamt'),
(15838, 'https://ror.org/04t7syk29', 'en', 1, 'https://ror.org/04t7syk29 American Board of Nuclear Medicine'),
(15839, 'https://ror.org/05905mf04', 'no_lang_code', 1, 'https://ror.org/05905mf04 ACI Plastics (United States)'),
(15840, 'https://ror.org/001f7a930', 'it', 1, 'https://ror.org/001f7a930 Azienda Ospedaliera Citta'' della Salute e della Scienza di Torino'),
(15841, 'https://ror.org/05c2mz691', 'no_lang_code', 1, 'https://ror.org/05c2mz691 BMT Group (Germany)'),
(15842, 'https://ror.org/02fhjj867', 'en', 1, 'https://ror.org/02fhjj867 American Crystallographic Association'),
(15843, 'https://ror.org/05hdjr057', 'pt', 1, 'https://ror.org/05hdjr057 Administracao Central do Sistema de Saude'),
(15844, 'https://ror.org/013dmpa26', 'no_lang_code', 1, 'https://ror.org/013dmpa26 Greenvest (Italy)'),
(15845, 'https://ror.org/02md5ab07', 'en', 1, 'https://ror.org/02md5ab07 American Entomological Institute'),
(15846, 'https://ror.org/04976jw76', 'en', 1, 'https://ror.org/04976jw76 Missouri Department of Elementary and Secondary Education'),
(15847, 'https://ror.org/00zfafm43', 'no_lang_code', 1, 'https://ror.org/00zfafm43 APS Biocontrol (United Kingdom)'),
(15848, 'https://ror.org/047137m93', 'en', 1, 'https://ror.org/047137m93 Prince George''s County Public Schools'),
(15849, 'https://ror.org/04qp61r47', 'no_lang_code', 1, 'https://ror.org/04qp61r47 ADRIA DƩveloppement'),
(15850, 'https://ror.org/04nb68247', 'no_lang_code', 1, 'https://ror.org/04nb68247 Balcas (United Kingdom)'),
(15851, 'https://ror.org/05dww8f34', 'en', 1, 'https://ror.org/05dww8f34 Balm In Gilead'),
(15852, 'https://ror.org/028nqyn57', 'no_lang_code', 1, 'https://ror.org/028nqyn57 CGI (United States)'),
(15853, 'https://ror.org/029t2mw91', 'en', 1, 'https://ror.org/029t2mw91 Baltic Centre for Contemporary Art'),
(15854, 'https://ror.org/021n1yp58', 'en', 1, 'https://ror.org/021n1yp58 ADS Group'),
(15855, 'https://ror.org/0259f7s45', 'en', 1, 'https://ror.org/0259f7s45 Baltic Innovation Agency'),
(15856, 'https://ror.org/024p04k09', 'lv', 1, 'https://ror.org/024p04k09 Baltic Environmental Forum Baltijas Vides Forums'),
(15857, 'https://ror.org/02ttqft70', 'en', 1, 'https://ror.org/02ttqft70 American National Standards Institute'),
(15858, 'https://ror.org/01qjh7r74', 'no_lang_code', 1, 'https://ror.org/01qjh7r74 Adva Optical Networking (Poland)'),
(15859, 'https://ror.org/0504a7h38', 'en', 1, 'https://ror.org/0504a7h38 Baltic Energy Conservation Agency'),
(15860, 'https://ror.org/05dss5t31', 'no_lang_code', 1, 'https://ror.org/05dss5t31 Advance Composite Fibers (Spain)'),
(15861, 'https://ror.org/0438kyb38', 'en', 1, 'https://ror.org/0438kyb38 Association for Psychological Science'),
(15862, 'https://ror.org/00wk3qr85', 'no_lang_code', 1, 'https://ror.org/00wk3qr85 PerkinElmer (Germany)'),
(15863, 'https://ror.org/020r34245', 'en', 1, 'https://ror.org/020r34245 American Research Center in Egypt'),
(15864, 'https://ror.org/058ywcv06', 'no_lang_code', 1, 'https://ror.org/058ywcv06 Advanced Applications (United States)'),
(15865, 'https://ror.org/02bg8sy94', 'no_lang_code', 1, 'https://ror.org/02bg8sy94 BodiMojo'),
(15866, 'https://ror.org/03jr1w081', 'no_lang_code', 1, 'https://ror.org/03jr1w081 Bandvulc (United Kingdom)'),
(15867, 'https://ror.org/02y7e7h61', 'no_lang_code', 1, 'https://ror.org/02y7e7h61 Bodymetrics (United Kingdom)'),
(15868, 'https://ror.org/037807332', 'no_lang_code', 1, 'https://ror.org/037807332 Best High Pressure & Drilling Technology (Austria)'),
(15869, 'https://ror.org/01jcgc273', 'no_lang_code', 1, 'https://ror.org/01jcgc273 Advanced Coatings (Belgium)'),
(15870, 'https://ror.org/00tbmv503', 'en', 1, 'https://ror.org/00tbmv503 American Society of Law, Medicine and Ethics'),
(15871, 'https://ror.org/00bkf6345', 'en', 1, 'https://ror.org/00bkf6345 American Sexual Health Association'),
(15872, 'https://ror.org/01zqbp192', 'en', 1, 'https://ror.org/01zqbp192 Missouri Southern State University'),
(15873, 'https://ror.org/04g5xjh29', 'en', 1, 'https://ror.org/04g5xjh29 Bangkok Metropolitan Administration'),
(15874, 'https://ror.org/041v7ky66', 'en', 1, 'https://ror.org/041v7ky66 American Society for Photogrammetry and Remote Sensing'),
(15875, 'https://ror.org/02j3ntr89', 'fr', 1, 'https://ror.org/02j3ntr89 BoƮte Ơ science'),
(15876, 'https://ror.org/01yj92e08', 'no_lang_code', 1, 'https://ror.org/01yj92e08 Banpil Photonics (United States)'),
(15877, 'https://ror.org/02vpy2028', 'en', 1, 'https://ror.org/02vpy2028 American Society for Virology'),
(15878, 'https://ror.org/02hkdv109', 'no_lang_code', 1, 'https://ror.org/02hkdv109 BollorƩ (France)'),
(15879, 'https://ror.org/00r66br24', 'no_lang_code', 1, 'https://ror.org/00r66br24 Advanced Defence Materials (United Kingdom)'),
(15880, 'https://ror.org/04wck6395', 'no_lang_code', 1, 'https://ror.org/04wck6395 Aegis Rubber Engineering (United Kingdom)'),
(15881, 'https://ror.org/00pp1p071', 'no_lang_code', 1, 'https://ror.org/00pp1p071 Banss (Germany)'),
(15882, 'https://ror.org/021998h47', 'en', 1, 'https://ror.org/021998h47 Brookwood Baptist Health'),
(15883, 'https://ror.org/05rmcwb88', 'en', 1, 'https://ror.org/05rmcwb88 Barber–Scotia College'),
(15884, 'https://ror.org/01qa8rm62', 'es', 1, 'https://ror.org/01qa8rm62 Aspapel'),
(15885, 'https://ror.org/01few5909', 'no_lang_code', 1, 'https://ror.org/01few5909 Barclays (United Kingdom)'),
(15886, 'https://ror.org/03bngxz45', 'no_lang_code', 1, 'https://ror.org/03bngxz45 Advanced Energy Materials (United States)'),
(15887, 'https://ror.org/041ch6a11', 'no_lang_code', 1, 'https://ror.org/041ch6a11 Barilla (Italy)'),
(15888, 'https://ror.org/030c07a62', 'no_lang_code', 1, 'https://ror.org/030c07a62 Bombardier (Portugal)'),
(15889, 'https://ror.org/01w9gcz32', 'no_lang_code', 1, 'https://ror.org/01w9gcz32 Barnard Microsystems (United Kingdom)'),
(15890, 'https://ror.org/055et8y89', 'no_lang_code', 1, 'https://ror.org/055et8y89 Barnett Technical Services (United States)'),
(15891, 'https://ror.org/04rk35v57', 'no_lang_code', 1, 'https://ror.org/04rk35v57 Colt International (Germany)'),
(15892, 'https://ror.org/0512c6n60', 'no_lang_code', 1, 'https://ror.org/0512c6n60 Advent Technologies (Greece)'),
(15893, 'https://ror.org/021mk5n73', 'en', 1, 'https://ror.org/021mk5n73 Bonanza High School'),
(15894, 'https://ror.org/008jf2g02', 'en', 1, 'https://ror.org/008jf2g02 Barre Town Middle and Elementary School'),
(15895, 'https://ror.org/0402bxc90', 'no_lang_code', 1, 'https://ror.org/0402bxc90 Barriquand (France)'),
(15896, 'https://ror.org/0447b5h55', 'en', 1, 'https://ror.org/0447b5h55 Barrow Arctic Science Consortium'),
(15897, 'https://ror.org/02tty6654', 'no_lang_code', 1, 'https://ror.org/02tty6654 Base Materials (United Kingdom)'),
(15898, 'https://ror.org/016v9sa88', 'no_lang_code', 1, 'https://ror.org/016v9sa88 Base Protection (Italy)'),
(15899, 'https://ror.org/03g6j6055', 'no_lang_code', 1, 'https://ror.org/03g6j6055 BASF (Switzerland)'),
(15900, 'https://ror.org/04hf68923', 'en', 1, 'https://ror.org/04hf68923 Bath Labs'),
(15901, 'https://ror.org/000ygtd83', 'en', 1, 'https://ror.org/000ygtd83 American Trauma Society'),
(15902, 'https://ror.org/057r54s29', 'en', 1, 'https://ror.org/057r54s29 Baton Rouge Community College'),
(15903, 'https://ror.org/03afcx383', 'es', 1, 'https://ror.org/03afcx383 Asociación Española de Fabricantes de Equipos y Componentes para Automoción'),
(15904, 'https://ror.org/05qss3897', 'no_lang_code', 1, 'https://ror.org/05qss3897 Bord na Móna (Ireland)'),
(15905, 'https://ror.org/00crcaf72', 'en', 1, 'https://ror.org/00crcaf72 American Vacuum Society'),
(15906, 'https://ror.org/03t4qcg79', 'no_lang_code', 1, 'https://ror.org/03t4qcg79 Royal BAM Group (United Kingdom)'),
(15907, 'https://ror.org/00df0dn42', 'no_lang_code', 1, 'https://ror.org/00df0dn42 AMES Technology (United States)'),
(15908, 'https://ror.org/003rgf994', 'no_lang_code', 1, 'https://ror.org/003rgf994 Amethyst Research (United States)'),
(15909, 'https://ror.org/01rh7dh97', 'no_lang_code', 1, 'https://ror.org/01rh7dh97 Amethyst Technologies (United States)'),
(15910, 'https://ror.org/05v60wx04', 'no_lang_code', 1, 'https://ror.org/05v60wx04 Oryx International Growth Fund (Ireland)'),
(15911, 'https://ror.org/05269ja13', 'no_lang_code', 1, 'https://ror.org/05269ja13 Advanced Laser Technology (United Kingdom)'),
(15912, 'https://ror.org/05xr55z04', 'no_lang_code', 1, 'https://ror.org/05xr55z04 Angewandte Micro Messtechnik (Germany)'),
(15913, 'https://ror.org/036j9qe85', 'no_lang_code', 1, 'https://ror.org/036j9qe85 Agricen (United States)'),
(15914, 'https://ror.org/05p4ysp91', 'no_lang_code', 1, 'https://ror.org/05p4ysp91 Advanced Microwave Systems (Greece) Ī Ī”ĪŸĪ—Ī“ĪœĪ•ĪĪ‘ ĪœĪ™ĪšĪ”ĪŸĪšĪ„ĪœĪ‘Ī¤Ī™ĪšĪ‘ Ī£Ī„Ī£Ī¤Ī—ĪœĪ‘Ī¤Ī‘ IKE'),
(15915, 'https://ror.org/034qqhd60', 'no_lang_code', 1, 'https://ror.org/034qqhd60 Advanced Network and Services (United States)'),
(15916, 'https://ror.org/01f2xyc88', 'no_lang_code', 1, 'https://ror.org/01f2xyc88 Vintage Capital Group (United States)'),
(15917, 'https://ror.org/01xjsv217', 'no_lang_code', 1, 'https://ror.org/01xjsv217 Bauhaus Luftfahrt'),
(15918, 'https://ror.org/04esscd53', 'no_lang_code', 1, 'https://ror.org/04esscd53 Amires (Czechia)'),
(15919, 'https://ror.org/05bmabg32', 'no_lang_code', 1, 'https://ror.org/05bmabg32 Advanced Optics Solutions (Germany)'),
(15920, 'https://ror.org/01tzy4237', 'no_lang_code', 1, 'https://ror.org/01tzy4237 Amis (Slovenia)'),
(15921, 'https://ror.org/04573hn72', 'no_lang_code', 1, 'https://ror.org/04573hn72 Borit (Belgium)'),
(15922, 'https://ror.org/01zg9ry50', 'no_lang_code', 1, 'https://ror.org/01zg9ry50 Bavarian Nordic (Germany)'),
(15923, 'https://ror.org/03q4ysy37', 'en', 1, 'https://ror.org/03q4ysy37 Amistades'),
(15924, 'https://ror.org/00303dn90', 'no_lang_code', 1, 'https://ror.org/00303dn90 Advanced Process Combinatorics (United States)'),
(15925, 'https://ror.org/0557zev80', 'no_lang_code', 1, 'https://ror.org/0557zev80 Advirna (United States)'),
(15926, 'https://ror.org/004b61s59', 'no_lang_code', 1, 'https://ror.org/004b61s59 Advanced Science and Automation (United States)'),
(15927, 'https://ror.org/048y6cv72', 'no_lang_code', 1, 'https://ror.org/048y6cv72 Advanced Sensor Technologies (United States)'),
(15928, 'https://ror.org/00m08df59', 'no_lang_code', 1, 'https://ror.org/00m08df59 BDR Thermea (United Kingdom)'),
(15929, 'https://ror.org/040z8en63', 'en', 1, 'https://ror.org/040z8en63 Bay Area Tumor Institute'),
(15930, 'https://ror.org/00a67te62', 'en', 1, 'https://ror.org/00a67te62 Bay Area Video Coalition'),
(15931, 'https://ror.org/04gegbz50', 'en', 1, 'https://ror.org/04gegbz50 Bay Medical Center'),
(15932, 'https://ror.org/01cwg0069', 'it', 1, 'https://ror.org/01cwg0069 Amitie'),
(15933, 'https://ror.org/01znsh139', 'no_lang_code', 1, 'https://ror.org/01znsh139 British American Tobacco (United Kingdom)'),
(15934, 'https://ror.org/052567m16', 'no_lang_code', 1, 'https://ror.org/052567m16 Amorim Cork Composites (Portugal)'),
(15935, 'https://ror.org/00ysm1s19', 'no_lang_code', 1, 'https://ror.org/00ysm1s19 ELE Advanced Technologies (United Kingdom)'),
(15936, 'https://ror.org/020ak9w19', 'en', 1, 'https://ror.org/020ak9w19 Prof. Assen Zlatarov University'),
(15937, 'https://ror.org/007v6yg52', 'en', 1, 'https://ror.org/007v6yg52 Bay State Community Services'),
(15938, 'https://ror.org/00m4kzh57', 'no_lang_code', 1, 'https://ror.org/00m4kzh57 Amplitude Technologies (France)'),
(15939, 'https://ror.org/01fqg5k81', 'en', 1, 'https://ror.org/01fqg5k81 BayCare Health System'),
(15940, 'https://ror.org/04hf34n81', 'no_lang_code', 1, 'https://ror.org/04hf34n81 AmpTec (Germany)'),
(15941, 'https://ror.org/05b8s7b69', 'en', 1, 'https://ror.org/05b8s7b69 Advances in Mineral Metabolism'),
(15942, 'https://ror.org/038fwj823', 'en', 1, 'https://ror.org/038fwj823 Aspen Cancer Conference'),
(15943, 'https://ror.org/05yakbd29', 'no_lang_code', 1, 'https://ror.org/05yakbd29 Aspen Products Group (United States)'),
(15944, 'https://ror.org/04kjf4a42', 'no_lang_code', 1, 'https://ror.org/04kjf4a42 Amron (United States)'),
(15945, 'https://ror.org/05frh7832', 'no_lang_code', 1, 'https://ror.org/05frh7832 Eni (France)'),
(15946, 'https://ror.org/00v0haz73', 'no_lang_code', 1, 'https://ror.org/00v0haz73 Advantage Forensics (Canada)'),
(15947, 'https://ror.org/050rfr085', 'de', 1, 'https://ror.org/050rfr085 Bayerisches Landesamt für Denkmalpflege'),
(15948, 'https://ror.org/05206wn55', 'no_lang_code', 1, 'https://ror.org/05206wn55 Aspen Systems (United States)'),
(15949, 'https://ror.org/0174e3t82', 'en', 1, 'https://ror.org/0174e3t82 Aspen Institute'),
(15950, 'https://ror.org/00js7c390', 'no_lang_code', 1, 'https://ror.org/00js7c390 Amyris (United States)'),
(15951, 'https://ror.org/044xjyn25', 'no_lang_code', 1, 'https://ror.org/044xjyn25 Advantech AMT (Canada)'),
(15952, 'https://ror.org/02s4efn82', 'en', 1, 'https://ror.org/02s4efn82 Boys'' Club of New York'),
(15953, 'https://ror.org/017wnhb12', 'no_lang_code', 1, 'https://ror.org/017wnhb12 Avinet (Norway)'),
(15954, 'https://ror.org/03xfskc23', 'no_lang_code', 1, 'https://ror.org/03xfskc23 Advanced Environmental Technologies (Portugal)'),
(15955, 'https://ror.org/01wghc923', 'en', 1, 'https://ror.org/01wghc923 Anaerobic Digestion and Bioresources Association'),
(15956, 'https://ror.org/01rtxd659', 'no_lang_code', 1, 'https://ror.org/01rtxd659 Moog (Netherlands)'),
(15957, 'https://ror.org/03aydnn87', 'en', 1, 'https://ror.org/03aydnn87 Ars Electronica Center'),
(15958, 'https://ror.org/045nwkm81', 'no_lang_code', 1, 'https://ror.org/045nwkm81 Assing (Italy)'),
(15959, 'https://ror.org/04erj9z09', 'no_lang_code', 1, 'https://ror.org/04erj9z09 Bayessoft (United States)'),
(15960, 'https://ror.org/03nbnyc28', 'no_lang_code', 1, 'https://ror.org/03nbnyc28 Brain Innovation (Netherlands)'),
(15961, 'https://ror.org/04eg2gq66', 'no_lang_code', 1, 'https://ror.org/04eg2gq66 AEC3 (United Kingdom)'),
(15962, 'https://ror.org/01r6w7s48', 'en', 1, 'https://ror.org/01r6w7s48 Association of Environmental Health Academic Programs'),
(15963, 'https://ror.org/05ye48k35', 'no_lang_code', 1, 'https://ror.org/05ye48k35 Brainlab (Germany)'),
(15964, 'https://ror.org/021t53m47', 'no_lang_code', 1, 'https://ror.org/021t53m47 Aecom (Czechia)'),
(15965, 'https://ror.org/03z3n0g53', 'no_lang_code', 1, 'https://ror.org/03z3n0g53 Brainstorm (Spain)'),
(15966, 'https://ror.org/03fkfdh53', 'no_lang_code', 1, 'https://ror.org/03fkfdh53 AED-SICAD (Germany)'),
(15967, 'https://ror.org/03nzfjp98', 'no_lang_code', 1, 'https://ror.org/03nzfjp98 Keepmoat (United Kingdom)'),
(15968, 'https://ror.org/05wrxmc86', 'fr', 1, 'https://ror.org/05wrxmc86 Association des Communicateurs Scientifiques du QuƩbec'),
(15969, 'https://ror.org/046hz2n20', 'en', 1, 'https://ror.org/046hz2n20 Association of British HealthTech Industries'),
(15970, 'https://ror.org/03mzpfx25', 'pt', 1, 'https://ror.org/03mzpfx25 A Rocha'),
(15971, 'https://ror.org/04rj91175', 'no_lang_code', 1, 'https://ror.org/04rj91175 Braemar (United Kingdom)'),
(15972, 'https://ror.org/01176rr26', 'no_lang_code', 1, 'https://ror.org/01176rr26 Anaxsys (United Kingdom)'),
(15973, 'https://ror.org/02yvffa38', 'en', 1, 'https://ror.org/02yvffa38 Anchorage School District'),
(15974, 'https://ror.org/00kergy42', 'no_lang_code', 1, 'https://ror.org/00kergy42 Ancile (United States)'),
(15975, 'https://ror.org/02kq57h59', 'no_lang_code', 1, 'https://ror.org/02kq57h59 Anco Engineers (United States)'),
(15976, 'https://ror.org/01qd58v91', 'en', 1, 'https://ror.org/01qd58v91 Baylor School'),
(15977, 'https://ror.org/048jb8q77', 'en', 1, 'https://ror.org/048jb8q77 Brandywine Counseling & Community Services'),
(15978, 'https://ror.org/015facm29', 'en', 1, 'https://ror.org/015facm29 Aeras'),
(15979, 'https://ror.org/01m08j794', 'no_lang_code', 1, 'https://ror.org/01m08j794 Lürssen (Germany)'),
(15980, 'https://ror.org/05hqw0n54', 'no_lang_code', 1, 'https://ror.org/05hqw0n54 Corden Pharma (United States)'),
(15981, 'https://ror.org/02mxfc935', 'no_lang_code', 1, 'https://ror.org/02mxfc935 Andermatt Biocontrol (Switzerland)'),
(15982, 'https://ror.org/025cbpf27', 'no_lang_code', 1, 'https://ror.org/025cbpf27 Aereco (France)'),
(15983, 'https://ror.org/02xwe8780', 'no_lang_code', 1, 'https://ror.org/02xwe8780 PREtest Consult (United States)'),
(15984, 'https://ror.org/01fxncn81', 'no_lang_code', 1, 'https://ror.org/01fxncn81 Aeristech (United Kingdom)'),
(15985, 'https://ror.org/05k8fh812', 'no_lang_code', 1, 'https://ror.org/05k8fh812 Brechtel (United States)'),
(15986, 'https://ror.org/01xtkmv78', 'en', 1, 'https://ror.org/01xtkmv78 BC Non-Profit Housing Association'),
(15987, 'https://ror.org/058jaty48', 'no_lang_code', 1, 'https://ror.org/058jaty48 Breivoll Inspection Technologies (Norway)'),
(15988, 'https://ror.org/040mhcr37', 'no_lang_code', 1, 'https://ror.org/040mhcr37 Roland Mills United (Germany) Rolandmühle'),
(15989, 'https://ror.org/00y5de064', 'no_lang_code', 1, 'https://ror.org/00y5de064 BCN Biosciences (United States)'),
(15990, 'https://ror.org/001f6wc07', 'no_lang_code', 1, 'https://ror.org/001f6wc07 Aernnova (Spain)'),
(15991, 'https://ror.org/025008g77', 'no_lang_code', 1, 'https://ror.org/025008g77 Bremerhaven Dock (Germany)'),
(15992, 'https://ror.org/029nzwd26', 'no_lang_code', 1, 'https://ror.org/029nzwd26 Brenk Systemplanung (Germany)'),
(15993, 'https://ror.org/01x5cet75', 'no_lang_code', 1, 'https://ror.org/01x5cet75 Bcr Diagnostics (United States)'),
(15994, 'https://ror.org/05bmjxa33', 'no_lang_code', 1, 'https://ror.org/05bmjxa33 Aero Montreal (Canada)'),
(15995, 'https://ror.org/00wp5gz89', 'en', 1, 'https://ror.org/00wp5gz89 Business Council for Sustainable Development UK'),
(15996, 'https://ror.org/00kx89908', 'no_lang_code', 1, 'https://ror.org/00kx89908 Breonics (United States)'),
(15997, 'https://ror.org/02f5yhp51', 'no_lang_code', 1, 'https://ror.org/02f5yhp51 Aero Sekur (Italy)'),
(15998, 'https://ror.org/00fpmfs44', 'no_lang_code', 1, 'https://ror.org/00fpmfs44 Andritz (Finland)'),
(15999, 'https://ror.org/018vmtj90', 'no_lang_code', 1, 'https://ror.org/018vmtj90 Androme (Belgium)'),
(16000, 'https://ror.org/04v13n874', 'no_lang_code', 1, 'https://ror.org/04v13n874 AndroScience (United States)'),
(16001, 'https://ror.org/02q279j80', 'no_lang_code', 1, 'https://ror.org/02q279j80 Anect (Czechia)'),
(16002, 'https://ror.org/02evrz660', 'no_lang_code', 1, 'https://ror.org/02evrz660 Beacon Energy (United Kingdom)'),
(16003, 'https://ror.org/049d2y756', 'no_lang_code', 1, 'https://ror.org/049d2y756 Breyer Group (United Kingdom)'),
(16004, 'https://ror.org/036dfng96', 'en', 1, 'https://ror.org/036dfng96 Beamish Museum'),
(16005, 'https://ror.org/04n9ds574', 'no_lang_code', 1, 'https://ror.org/04n9ds574 Bridge 129 (Italy)'),
(16006, 'https://ror.org/05f935s79', 'no_lang_code', 1, 'https://ror.org/05f935s79 Ikusi (Spain)'),
(16007, 'https://ror.org/03es33149', 'no_lang_code', 1, 'https://ror.org/03es33149 SWAZ Potato Farms (United States)'),
(16008, 'https://ror.org/00kemap29', 'no_lang_code', 1, 'https://ror.org/00kemap29 Aeromechs (Italy)'),
(16009, 'https://ror.org/03xwmpp53', 'no_lang_code', 1, 'https://ror.org/03xwmpp53 Aeromet International (United Kingdom)'),
(16010, 'https://ror.org/00dhrp990', 'no_lang_code', 1, 'https://ror.org/00dhrp990 Associated Dental Products (United Kingdom)'),
(16011, 'https://ror.org/02gv17446', 'no_lang_code', 1, 'https://ror.org/02gv17446 Associated Bonded Cables (United Kingdom)'),
(16012, 'https://ror.org/04k8crc02', 'no_lang_code', 1, 'https://ror.org/04k8crc02 Bright Cloud International (United States)'),
(16013, 'https://ror.org/058bza610', 'no_lang_code', 1, 'https://ror.org/058bza610 Angiologica (Italy)'),
(16014, 'https://ror.org/00km0q180', 'no_lang_code', 1, 'https://ror.org/00km0q180 Brighten Optics (Canada)'),
(16015, 'https://ror.org/02e71h867', 'no_lang_code', 1, 'https://ror.org/02e71h867 Beckers (United Kingdom)'),
(16016, 'https://ror.org/05dh3w354', 'no_lang_code', 1, 'https://ror.org/05dh3w354 Quantum Spatial (United States)'),
(16017, 'https://ror.org/04y4jzv33', 'no_lang_code', 1, 'https://ror.org/04y4jzv33 Aeromics (United States)'),
(16018, 'https://ror.org/04d3r9p82', 'no_lang_code', 1, 'https://ror.org/04d3r9p82 Becs Technology (United States)'),
(16019, 'https://ror.org/03g9ch715', 'en', 1, 'https://ror.org/03g9ch715 National Center for Supercomputing Applications'),
(16020, 'https://ror.org/00nm6n237', 'no_lang_code', 1, 'https://ror.org/00nm6n237 Brighton Technologies Group (United States)'),
(16021, 'https://ror.org/04jfpc645', 'en', 1, 'https://ror.org/04jfpc645 Behavioral Health Network'),
(16022, 'https://ror.org/031nh9x49', 'en', 1, 'https://ror.org/031nh9x49 Animal Behavior Society'),
(16023, 'https://ror.org/0094j3d13', 'no_lang_code', 1, 'https://ror.org/0094j3d13 Brimson Laboratories (United States)'),
(16024, 'https://ror.org/0027ktx17', 'no_lang_code', 1, 'https://ror.org/0027ktx17 Oesterreichs Energie'),
(16025, 'https://ror.org/00txxwv34', 'en', 1, 'https://ror.org/00txxwv34 Agropolis International'),
(16026, 'https://ror.org/01kb5gr72', 'no_lang_code', 1, 'https://ror.org/01kb5gr72 Animal Monday (United Kingdom)'),
(16027, 'https://ror.org/002s66543', 'no_lang_code', 1, 'https://ror.org/002s66543 Aerospace & Advanced Composites (Austria)'),
(16028, 'https://ror.org/01wzy6m46', 'no_lang_code', 1, 'https://ror.org/01wzy6m46 Animal Vegetable Mineral (United Kingdom)'),
(16029, 'https://ror.org/03310m039', 'no_lang_code', 1, 'https://ror.org/03310m039 Brinker Technology (United Kingdom)'),
(16030, 'https://ror.org/02v3h7t65', 'en', 1, 'https://ror.org/02v3h7t65 Horizon Human Services'),
(16031, 'https://ror.org/014y9am47', 'en', 1, 'https://ror.org/014y9am47 Arnolfini'),
(16032, 'https://ror.org/02eat2165', 'no_lang_code', 1, 'https://ror.org/02eat2165 Bristol Industrial and Research Associates (United Kingdom)'),
(16033, 'https://ror.org/0531hmb77', 'en', 1, 'https://ror.org/0531hmb77 Behavioral Tech'),
(16034, 'https://ror.org/03emf1n04', 'no_lang_code', 1, 'https://ror.org/03emf1n04 Bristol-Myers Squibb (United Kingdom)'),
(16035, 'https://ror.org/03h5m5b13', 'no_lang_code', 1, 'https://ror.org/03h5m5b13 Acromas Holdings (United Kingdom)'),
(16036, 'https://ror.org/04ybbb927', 'no_lang_code', 1, 'https://ror.org/04ybbb927 Beicip Franlab (France)'),
(16037, 'https://ror.org/049png478', 'no_lang_code', 1, 'https://ror.org/049png478 Materion (United Kingdom)'),
(16038, 'https://ror.org/01n7rsn58', 'en', 1, 'https://ror.org/01n7rsn58 Association des Constructeurs EuropƩens d''Automobiles European Automobile Manufacturers Association'),
(16039, 'https://ror.org/00085w524', 'no_lang_code', 1, 'https://ror.org/00085w524 Beijing Software Enterprise Advisory Center (China) åŒ—äŗ¬č½Æåä¼äøšē®”ē†é”¾é—®äø­åæƒ'),
(16040, 'https://ror.org/028evh536', 'fr', 1, 'https://ror.org/028evh536 Association des Operateurs Postaux Publics Europeens Association of European Public Postal Operators'),
(16041, 'https://ror.org/00d3bct21', 'en', 1, 'https://ror.org/00d3bct21 Ann Arbor Hands On Museum'),
(16042, 'https://ror.org/03s25h048', 'en', 1, 'https://ror.org/03s25h048 European Steel Association'),
(16043, 'https://ror.org/00k3bk483', 'en', 1, 'https://ror.org/00k3bk483 Behavioral Health Systems'),
(16044, 'https://ror.org/03k10gx48', 'en', 1, 'https://ror.org/03k10gx48 British Empire and Commonwealth Museum'),
(16045, 'https://ror.org/00f7mq966', 'no_lang_code', 1, 'https://ror.org/00f7mq966 Vidavo (Greece)'),
(16046, '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'),
(16047, 'https://ror.org/03pydk223', 'en', 1, 'https://ror.org/03pydk223 Beijing Transportation Research Center'),
(16048, 'https://ror.org/028tzde05', 'no_lang_code', 1, 'https://ror.org/028tzde05 Anova IT Consulting (Spain)'),
(16049, 'https://ror.org/00ntmke92', 'en', 1, 'https://ror.org/00ntmke92 Artez and Innovatie'),
(16050, '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'),
(16051, 'https://ror.org/00hn3tc42', 'no_lang_code', 1, 'https://ror.org/00hn3tc42 AeroTex UK (United Kingdom)'),
(16052, 'https://ror.org/02vpzk077', 'no_lang_code', 1, 'https://ror.org/02vpzk077 BioMed Design (United States)'),
(16053, 'https://ror.org/03dr4sp04', 'en', 1, 'https://ror.org/03dr4sp04 AEROTRON Research'),
(16054, 'https://ror.org/019gvtj90', 'no_lang_code', 1, 'https://ror.org/019gvtj90 Puratos (Belgium)'),
(16055, 'https://ror.org/005mt8d46', 'no_lang_code', 1, 'https://ror.org/005mt8d46 Proximus (Belgium)'),
(16056, 'https://ror.org/054exvb85', 'en', 1, 'https://ror.org/054exvb85 British Nutrition Foundation'),
(16057, 'https://ror.org/03fw4vf13', 'no_lang_code', 1, 'https://ror.org/03fw4vf13 Total Quadran (France)'),
(16058, 'https://ror.org/01q65bj34', 'en', 1, 'https://ror.org/01q65bj34 European Association for Battery Hybrid and Fuel Cell Electric Vehicles'),
(16059, 'https://ror.org/02fq4p941', 'en', 1, 'https://ror.org/02fq4p941 Association EuropƩenne pour la Biomasse European Biomass Association'),
(16060, 'https://ror.org/00kn2ga67', 'en', 1, 'https://ror.org/00kn2ga67 British Poultry Council'),
(16061, 'https://ror.org/05th36098', 'en', 1, 'https://ror.org/05th36098 Association for the Advancement of Mexican Americans'),
(16062, 'https://ror.org/05bk7gd90', 'en', 1, 'https://ror.org/05bk7gd90 Association for Childrens Mental Health'),
(16063, 'https://ror.org/019sw1443', 'en', 1, 'https://ror.org/019sw1443 Association for Computational Linguistics'),
(16064, 'https://ror.org/05vs4ye41', 'no_lang_code', 1, 'https://ror.org/05vs4ye41 Ansmart (United Kingdom)'),
(16065, 'https://ror.org/045j3za34', 'no_lang_code', 1, 'https://ror.org/045j3za34 AnsuR Technologies (Norway)'),
(16066, 'https://ror.org/04kdd0e80', 'no_lang_code', 1, 'https://ror.org/04kdd0e80 Ansys (Canada)'),
(16067, 'https://ror.org/05sjz3b60', 'no_lang_code', 1, 'https://ror.org/05sjz3b60 British Standards Institution'),
(16068, 'https://ror.org/00gh98d15', 'no_lang_code', 1, 'https://ror.org/00gh98d15 Straumann (Sweden)'),
(16069, 'https://ror.org/038212696', 'en', 1, 'https://ror.org/038212696 Benaki Museum ĪœĪæĻ…ĻƒĪµĪÆĪæ ĪœĻ€ĪµĪ½Ī¬ĪŗĪ·'),
(16070, 'https://ror.org/04w96ag64', 'no_lang_code', 1, 'https://ror.org/04w96ag64 BioSentinel (United States)'),
(16071, 'https://ror.org/0125p4c40', 'no_lang_code', 1, 'https://ror.org/0125p4c40 Antea Group (Belgium)'),
(16072, 'https://ror.org/01ded9f36', 'en', 1, 'https://ror.org/01ded9f36 British Transport Police'),
(16073, 'https://ror.org/01bkjr271', 'no_lang_code', 1, 'https://ror.org/01bkjr271 Actigen (Norway)'),
(16074, 'https://ror.org/0073qme72', 'no_lang_code', 1, 'https://ror.org/0073qme72 Antec (Germany)'),
(16075, 'https://ror.org/04jh9y258', 'no_lang_code', 1, 'https://ror.org/04jh9y258 Global RNA (United States)'),
(16076, 'https://ror.org/005sp1511', 'no_lang_code', 1, 'https://ror.org/005sp1511 Antenova (United Kingdom)'),
(16077, 'https://ror.org/033523d69', 'en', 1, 'https://ror.org/033523d69 Association for Research in Vision and Ophthalmology'),
(16078, 'https://ror.org/03ej57906', 'no_lang_code', 1, 'https://ror.org/03ej57906 Belsim (Belgium)'),
(16079, 'https://ror.org/037588233', 'en', 1, 'https://ror.org/037588233 Association for the Promotion of Information on Science and Technology for All Countries'),
(16080, 'https://ror.org/026s7sx59', 'no_lang_code', 1, 'https://ror.org/026s7sx59 AnthroTronix (United States)'),
(16081, 'https://ror.org/053txhk38', 'no_lang_code', 1, 'https://ror.org/053txhk38 BroadBit (Slovakia)'),
(16082, 'https://ror.org/04xy11e47', 'fr', 1, 'https://ror.org/04xy11e47 Association Française de Médecine Morpho-Esthétique et anti-âge'),
(16083, 'https://ror.org/003dqcy46', 'no_lang_code', 1, 'https://ror.org/003dqcy46 AFrame Digital (United States)'),
(16084, 'https://ror.org/04nx30h94', 'en', 1, 'https://ror.org/04nx30h94 African Malaria Network Trust'),
(16085, 'https://ror.org/00hx47p69', 'fr', 1, 'https://ror.org/00hx47p69 Maiz''Europ'''),
(16086, 'https://ror.org/04xbnc005', 'en', 1, 'https://ror.org/04xbnc005 Ben Franklin Technology Partners'),
(16087, 'https://ror.org/00vpnca96', 'no_lang_code', 1, 'https://ror.org/00vpnca96 AFS Entwicklungs und Vertriebs (Germany)'),
(16088, 'https://ror.org/02zc4jh04', 'no_lang_code', 1, 'https://ror.org/02zc4jh04 AFT Automation (Germany)'),
(16089, 'https://ror.org/02appya76', 'no_lang_code', 1, 'https://ror.org/02appya76 Bayou Biolabs'),
(16090, 'https://ror.org/01addcj30', 'no_lang_code', 1, 'https://ror.org/01addcj30 Broadcom (Ireland)'),
(16091, 'https://ror.org/04tp44r29', 'no_lang_code', 1, 'https://ror.org/04tp44r29 Anton Paar (Austria)'),
(16092, 'https://ror.org/04bzc6m85', 'no_lang_code', 1, 'https://ror.org/04bzc6m85 Broadley James (United States)'),
(16093, 'https://ror.org/03mt07d61', 'fr', 1, 'https://ror.org/03mt07d61 Ag Quest'),
(16094, 'https://ror.org/02k3w5n89', 'en', 1, 'https://ror.org/02k3w5n89 Agder Research Agderforskning'),
(16095, 'https://ror.org/027v2gp98', 'no_lang_code', 1, 'https://ror.org/027v2gp98 Broadway Malyan (United Kingdom)'),
(16096, 'https://ror.org/002mr7c38', 'fr', 1, 'https://ror.org/002mr7c38 Laval Mayenne Technopole'),
(16097, 'https://ror.org/05bjnkp72', 'en', 1, 'https://ror.org/05bjnkp72 Broadway'),
(16098, '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'),
(16099, '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'),
(16100, 'https://ror.org/01fs6y727', 'no_lang_code', 1, 'https://ror.org/01fs6y727 Anvil Semiconductors (United Kingdom)'),
(16101, 'https://ror.org/03px39j76', 'en', 1, 'https://ror.org/03px39j76 Belgian Institute of Management Accountants & Controllers'),
(16102, 'https://ror.org/05150xp52', 'fr', 1, 'https://ror.org/05150xp52 Association Nationale de Parents d''Enfants DƩficients Auditifs'),
(16103, 'https://ror.org/03d2qa639', 'no_lang_code', 1, 'https://ror.org/03d2qa639 AnyWi Technologies (Netherlands)'),
(16104, 'https://ror.org/02q0d6f73', 'no_lang_code', 1, 'https://ror.org/02q0d6f73 Agence MTDA'),
(16105, 'https://ror.org/040shjw10', 'fr', 1, 'https://ror.org/040shjw10 Association Nationale pour la Formation Professionnelle des Adultes'),
(16106, 'https://ror.org/039y05x37', 'en', 1, 'https://ror.org/039y05x37 Association of American State Geologists'),
(16107, 'https://ror.org/00awr5166', 'no_lang_code', 1, 'https://ror.org/00awr5166 Benteler (Austria)'),
(16108, 'https://ror.org/01wsxjp84', 'no_lang_code', 1, 'https://ror.org/01wsxjp84 AP&T (Sweden)'),
(16109, 'https://ror.org/03d169816', 'no_lang_code', 1, 'https://ror.org/03d169816 Benten Technologies (United States)'),
(16110, 'https://ror.org/05hqxem06', 'en', 1, 'https://ror.org/05hqxem06 Association of British Science Writers'),
(16111, 'https://ror.org/034vn4e02', 'no_lang_code', 1, 'https://ror.org/034vn4e02 Volkswagen Group (United Kingdom)'),
(16112, 'https://ror.org/05bnfx215', 'no_lang_code', 1, 'https://ror.org/05bnfx215 Sumitomo Chemical (United States)'),
(16113, 'https://ror.org/05cy18k60', 'fr', 1, 'https://ror.org/05cy18k60 Agence Nationale des Technologies de l''Information et de la Communication'),
(16114, 'https://ror.org/03k90y290', 'en', 1, 'https://ror.org/03k90y290 Finnish Marine Industries'),
(16115, 'https://ror.org/00jaqhx10', 'no_lang_code', 1, 'https://ror.org/00jaqhx10 APDM (United States)'),
(16116, 'https://ror.org/02k9jm268', 'fr', 1, 'https://ror.org/02k9jm268 Agence RƩgionale d''Ʃvaluation Environnement et Climat'),
(16117, 'https://ror.org/00etec352', 'no_lang_code', 1, 'https://ror.org/00etec352 Beran Instruments (United Kingdom)'),
(16118, 'https://ror.org/00wtksj25', 'fr', 1, 'https://ror.org/00wtksj25 ARENE Agence rĆ©gionale de l’environnement et des nouvelles Ć©nergies'),
(16119, 'https://ror.org/05mrhv083', 'en', 1, 'https://ror.org/05mrhv083 Brookdale Community College'),
(16120, 'https://ror.org/04w16j270', 'en', 1, 'https://ror.org/04w16j270 Brooklyn Botanic Garden'),
(16121, 'https://ror.org/03gvvb706', 'en', 1, 'https://ror.org/03gvvb706 Association of Schools and Programs of Public Health'),
(16122, 'https://ror.org/05s1w1241', 'en', 1, 'https://ror.org/05s1w1241 Aplastic Anemia and MDS International Foundation'),
(16123, 'https://ror.org/00zycb197', 'ca', 1, 'https://ror.org/00zycb197 Departament de Territori i Sostenibilitat'),
(16124, 'https://ror.org/04ay93s32', 'lt', 1, 'https://ror.org/04ay93s32 Aplinkos Apsaugos Agentura Environmental Protection Agency'),
(16125, 'https://ror.org/02k733j94', 'en', 1, 'https://ror.org/02k733j94 Thrive Together'),
(16126, 'https://ror.org/05m15kh47', 'no_lang_code', 1, 'https://ror.org/05m15kh47 Diageo (Ireland)'),
(16127, 'https://ror.org/05mqvfk86', 'en', 1, 'https://ror.org/05mqvfk86 Association of State Public Health Nutritionists'),
(16128, 'https://ror.org/02sswdw89', 'no_lang_code', 1, 'https://ror.org/02sswdw89 Apotex Fermentation (Canada)'),
(16129, 'https://ror.org/01gf20981', 'en', 1, 'https://ror.org/01gf20981 Appalachian Regional Healthcare'),
(16130, 'https://ror.org/012d6re71', 'no_lang_code', 1, 'https://ror.org/012d6re71 Brotherhood (United States)'),
(16131, 'https://ror.org/040tnnq16', 'en', 1, 'https://ror.org/040tnnq16 Broward County Board'),
(16132, 'https://ror.org/029pncr02', 'no_lang_code', 1, 'https://ror.org/029pncr02 Appen (United States)'),
(16133, 'https://ror.org/03vtekn80', 'fr', 1, 'https://ror.org/03vtekn80 Association pour la Recherche-DƩveloppement de l''Enseignement MultimƩdia et Interactif'),
(16134, 'https://ror.org/027hwrj22', 'no_lang_code', 1, 'https://ror.org/027hwrj22 Bere (United Kingdom)'),
(16135, 'https://ror.org/013g95q71', 'no_lang_code', 1, 'https://ror.org/013g95q71 Broyce Control (United Kingdom)'),
(16136, 'https://ror.org/04ftykp35', 'fr', 1, 'https://ror.org/04ftykp35 Association pour le Developpement de l''Institut de la Viande'),
(16137, 'https://ror.org/01292e826', 'es', 1, 'https://ror.org/01292e826 Agencia de Servicios Sociales y Dependencia de AndalucĆ­a'),
(16138, 'https://ror.org/010j1tz71', 'no_lang_code', 1, 'https://ror.org/010j1tz71 Brugarolas (Spain)'),
(16139, 'https://ror.org/04v5a5910', 'no_lang_code', 1, 'https://ror.org/04v5a5910 Bruhn NewTech (Denmark)'),
(16140, 'https://ror.org/03ty9nf77', 'no_lang_code', 1, 'https://ror.org/03ty9nf77 Bruker (United Kingdom)'),
(16141, 'https://ror.org/02n226v23', 'no_lang_code', 1, 'https://ror.org/02n226v23 Bruxton (United States)'),
(16142, 'https://ror.org/05eazss97', 'en', 1, 'https://ror.org/05eazss97 Berkshire Record Office'),
(16143, 'https://ror.org/04dhhgk48', 'no_lang_code', 1, 'https://ror.org/04dhhgk48 Nuclea Biotechnologies (United States)'),
(16144, 'https://ror.org/05ey8y327', 'no_lang_code', 1, 'https://ror.org/05ey8y327 Berlin Energy Agency Berliner Energieagentur (Germany)'),
(16145, 'https://ror.org/0043ncq27', 'de', 1, 'https://ror.org/0043ncq27 Berliner Institut für Sozialforschung'),
(16146, 'https://ror.org/054gj9d11', 'no_lang_code', 1, 'https://ror.org/054gj9d11 Bay Glass (United States)'),
(16147, 'https://ror.org/037263y09', 'en', 1, 'https://ror.org/037263y09 Canadian Lung Association'),
(16148, 'https://ror.org/01q3gg283', 'no_lang_code', 1, 'https://ror.org/01q3gg283 BS Rotor Technic (United Kingdom)'),
(16149, 'https://ror.org/01cjny980', 'no_lang_code', 1, 'https://ror.org/01cjny980 Berlitz (Germany)'),
(16150, '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'),
(16151, 'https://ror.org/033zbpq04', 'no_lang_code', 1, 'https://ror.org/033zbpq04 Industrial Systems and Control (United Kingdom)'),
(16152, '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'),
(16153, 'https://ror.org/0506wz312', 'no_lang_code', 1, 'https://ror.org/0506wz312 AER Group (United States)'),
(16154, 'https://ror.org/00xp3pa76', 'en', 1, 'https://ror.org/00xp3pa76 Agency for Mobility and EU Programmes'),
(16155, 'https://ror.org/01dxs6p42', 'en', 1, 'https://ror.org/01dxs6p42 European Migration Centre EuropƤisches Migrationszentrum'),
(16156, 'https://ror.org/05ejpyv46', 'no_lang_code', 1, 'https://ror.org/05ejpyv46 Applied Materials (Germany)'),
(16157, 'https://ror.org/0065wa002', 'no_lang_code', 1, 'https://ror.org/0065wa002 Applied Functional Materials (United Kingdom)'),
(16158, 'https://ror.org/05x1fc249', 'no_lang_code', 1, 'https://ror.org/05x1fc249 Pyrexar Medical (United States)'),
(16159, 'https://ror.org/01c2kj137', 'en', 1, 'https://ror.org/01c2kj137 Agency for Electronic Communications'),
(16160, 'https://ror.org/0429xrf24', 'en', 1, 'https://ror.org/0429xrf24 Canadian Science Writers Association'),
(16161, 'https://ror.org/02sd8rm97', 'no_lang_code', 1, 'https://ror.org/02sd8rm97 BSH ElectrodomƩsticos (Spain)'),
(16162, 'https://ror.org/01a5r1q21', 'no_lang_code', 1, 'https://ror.org/01a5r1q21 Berry & Associates (United States)'),
(16163, 'https://ror.org/05qzdw571', 'no_lang_code', 1, 'https://ror.org/05qzdw571 Agentscape (Germany)'),
(16164, 'https://ror.org/01wtneg90', 'en', 1, 'https://ror.org/01wtneg90 Canadian Society for Exercise Physiology'),
(16165, 'https://ror.org/00n3hdp82', 'no_lang_code', 1, 'https://ror.org/00n3hdp82 Bsoft (Italy)'),
(16166, 'https://ror.org/019htj352', 'no_lang_code', 1, 'https://ror.org/019htj352 Dürr (Germany)'),
(16167, 'https://ror.org/00jjh2b95', 'no_lang_code', 1, 'https://ror.org/00jjh2b95 BST Bio Sensor Technology (Germany)'),
(16168, 'https://ror.org/05kyb8602', 'no_lang_code', 1, 'https://ror.org/05kyb8602 Bertec (United States)'),
(16169, 'https://ror.org/00m694d24', 'en', 1, 'https://ror.org/00m694d24 European Projects & Management Agency'),
(16170, 'https://ror.org/05a6z7k50', 'en', 1, 'https://ror.org/05a6z7k50 Canadore College'),
(16171, 'https://ror.org/01xzpd518', 'en', 1, 'https://ror.org/01xzpd518 BT Archives'),
(16172, 'https://ror.org/05kw43n08', 'no_lang_code', 1, 'https://ror.org/05kw43n08 Berufsfortbildungswerk'),
(16173, 'https://ror.org/05320rs34', 'en', 1, 'https://ror.org/05320rs34 Applied Information Management Institute'),
(16174, 'https://ror.org/01zn3s316', 'no_lang_code', 1, 'https://ror.org/01zn3s316 Buckland & Taylor (Canada)'),
(16175, 'https://ror.org/01gqg0b82', 'no_lang_code', 1, 'https://ror.org/01gqg0b82 Ecobat Technologies (Germany)'),
(16176, 'https://ror.org/001mf2769', 'no_lang_code', 1, 'https://ror.org/001mf2769 Berlin Schalltechnisches Büro'),
(16177, 'https://ror.org/000cgzf80', 'no_lang_code', 1, 'https://ror.org/000cgzf80 Nyrstar Budel (Netherlands)'),
(16178, 'https://ror.org/03wm8rh48', 'no_lang_code', 1, 'https://ror.org/03wm8rh48 Canam Group (Canada)'),
(16179, 'https://ror.org/01425vp67', 'no_lang_code', 1, 'https://ror.org/01425vp67 Applied Materials (Israel)'),
(16180, 'https://ror.org/04b699k03', 'no_lang_code', 1, 'https://ror.org/04b699k03 Canatu (Finland)'),
(16181, 'https://ror.org/006471y50', 'no_lang_code', 1, 'https://ror.org/006471y50 Applied Materials (United Kingdom)'),
(16182, 'https://ror.org/001h71z63', 'no_lang_code', 1, 'https://ror.org/001h71z63 Applied Medical Technology (United States)'),
(16183, 'https://ror.org/03hhmg705', 'no_lang_code', 1, 'https://ror.org/03hhmg705 Medvis (United States)'),
(16184, 'https://ror.org/05kv82629', 'no_lang_code', 1, 'https://ror.org/05kv82629 Applied Microengineering Limited (United Kingdom)'),
(16185, 'https://ror.org/05j6xg781', 'no_lang_code', 1, 'https://ror.org/05j6xg781 TeamBest (United States)'),
(16186, 'https://ror.org/00c68pc60', 'en', 1, 'https://ror.org/00c68pc60 Agenzia Sviluppo Milano Metropoli S.P.A. Milano Metropoli Development Agency'),
(16187, 'https://ror.org/01cakg179', 'no_lang_code', 1, 'https://ror.org/01cakg179 AGF Electronics (Italy)'),
(16188, 'https://ror.org/01hzn9j62', 'no_lang_code', 1, 'https://ror.org/01hzn9j62 Applied Nanodetectors (United Kingdom)'),
(16189, 'https://ror.org/044ddr125', 'no_lang_code', 1, 'https://ror.org/044ddr125 Agfa-Gevaert (Canada)'),
(16190, 'https://ror.org/01e3a4n81', 'en', 1, 'https://ror.org/01e3a4n81 Buffalo Society of Natural Sciences'),
(16191, 'https://ror.org/013x1fq42', 'no_lang_code', 1, 'https://ror.org/013x1fq42 Beta 80 Group (Italy)');
INSERT INTO `rors` VALUES
(16192, 'https://ror.org/00m4vn742', 'no_lang_code', 1, 'https://ror.org/00m4vn742 LafargeHolcim (United Kingdom)'),
(16193, 'https://ror.org/02qws0q96', 'no_lang_code', 1, 'https://ror.org/02qws0q96 Schenck Process (Norway)'),
(16194, 'https://ror.org/019qz2a14', 'no_lang_code', 1, 'https://ror.org/019qz2a14 Buildair (Spain)'),
(16195, 'https://ror.org/01hrz5b21', 'en', 1, 'https://ror.org/01hrz5b21 Building Bridges'),
(16196, 'https://ror.org/03q3bdj78', 'no_lang_code', 1, 'https://ror.org/03q3bdj78 Ericsson (United States)'),
(16197, 'https://ror.org/016qz7879', 'no_lang_code', 1, 'https://ror.org/016qz7879 Voith (United Kingdom)'),
(16198, 'https://ror.org/0286mhe32', 'no_lang_code', 1, 'https://ror.org/0286mhe32 Maxxam (Canada)'),
(16199, 'https://ror.org/04vwqra35', 'no_lang_code', 1, 'https://ror.org/04vwqra35 GF Machining Solutions (Switzerland)'),
(16200, 'https://ror.org/00ym0aw79', 'no_lang_code', 1, 'https://ror.org/00ym0aw79 Betah Associates'),
(16201, 'https://ror.org/057bk3f95', 'no_lang_code', 1, 'https://ror.org/057bk3f95 Cantine d''Alfonso del Sordo (Italy)'),
(16202, 'https://ror.org/005cag216', 'no_lang_code', 1, 'https://ror.org/005cag216 BetaStem Therapeutics (United States)'),
(16203, 'https://ror.org/0575kzg87', 'no_lang_code', 1, 'https://ror.org/0575kzg87 Applied Research Using OMIC Sciences (Spain)'),
(16204, 'https://ror.org/02v82mn77', 'no_lang_code', 1, 'https://ror.org/02v82mn77 Agilent Technologies (Italy)'),
(16205, 'https://ror.org/03sjv2g98', 'no_lang_code', 1, 'https://ror.org/03sjv2g98 Applied Resources (United States)'),
(16206, 'https://ror.org/02kmywe48', 'no_lang_code', 1, 'https://ror.org/02kmywe48 Agilent Technologies (Austria)'),
(16207, 'https://ror.org/058ysfr19', 'en', 1, 'https://ror.org/058ysfr19 Bulgarian European Community Studies Association'),
(16208, 'https://ror.org/03pbeak36', 'en', 1, 'https://ror.org/03pbeak36 Bulgarian Research and Education Network Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° изслеГователска Šø образователна мрежа'),
(16209, 'https://ror.org/03yh9bm54', 'no_lang_code', 1, 'https://ror.org/03yh9bm54 AGILIS Ī‘.Ī•. Ī£Ī¤Ī‘Ī¤Ī™Ī£Ī¤Ī™ĪšĪ—Ī£ ĪšĪ‘Ī™ Ī Ī›Ī—Ī”ĪŸĪ¦ĪŸĪ”Ī™ĪšĪ—Ī£ Agilis (Greece)'),
(16210, 'https://ror.org/04pavt865', 'en', 1, 'https://ror.org/04pavt865 Bulgarian Ship Hydrodynamics Centre Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠø Š¦ŠµŠ½Ń‚ŃŠŃ€ по хиГро- Šø аероГинамика'),
(16211, 'https://ror.org/01mge3v08', 'no_lang_code', 1, 'https://ror.org/01mge3v08 Capgemini (United States)'),
(16212, 'https://ror.org/02eqjce94', 'no_lang_code', 1, 'https://ror.org/02eqjce94 Betonsteinwerk Heide (Germany)'),
(16213, 'https://ror.org/05nrca761', 'no_lang_code', 1, 'https://ror.org/05nrca761 Capgemini (Italy)'),
(16214, 'https://ror.org/02w1skc55', 'en', 1, 'https://ror.org/02w1skc55 Cape Cod Community College'),
(16215, 'https://ror.org/04m41m709', 'no_lang_code', 1, 'https://ror.org/04m41m709 AppliFlex (United States)'),
(16216, 'https://ror.org/015daqq20', 'no_lang_code', 1, 'https://ror.org/015daqq20 APR (Italy)'),
(16217, 'https://ror.org/03qg0dp28', 'no_lang_code', 1, 'https://ror.org/03qg0dp28 Agora Conseil'),
(16218, 'https://ror.org/04h7d2806', 'no_lang_code', 1, 'https://ror.org/04h7d2806 Betrieb für InformationsTechnologie'),
(16219, 'https://ror.org/0546cha72', 'no_lang_code', 1, 'https://ror.org/0546cha72 Agoria (Belgium)'),
(16220, 'https://ror.org/03h0ffq42', 'no_lang_code', 1, 'https://ror.org/03h0ffq42 Elite Bread Industry (Greece)'),
(16221, 'https://ror.org/02q8ad752', 'no_lang_code', 1, 'https://ror.org/02q8ad752 Austria Personal Service (Austria)'),
(16222, 'https://ror.org/02d6dfr74', 'no_lang_code', 1, 'https://ror.org/02d6dfr74 Bettergy (United States)'),
(16223, 'https://ror.org/00rcs2c13', 'no_lang_code', 1, 'https://ror.org/00rcs2c13 BeTV (Belgium)'),
(16224, 'https://ror.org/0137xgw27', 'no_lang_code', 1, 'https://ror.org/0137xgw27 Bridgepoint (Germany)'),
(16225, 'https://ror.org/04qhdw391', 'en', 1, 'https://ror.org/04qhdw391 Beverly Hospital'),
(16226, 'https://ror.org/047kvxr97', 'no_lang_code', 1, 'https://ror.org/047kvxr97 Bexion Pharmaceuticals (United States)'),
(16227, 'https://ror.org/05mc3r439', 'en', 1, 'https://ror.org/05mc3r439 Cape Fear Community College'),
(16228, 'https://ror.org/011qe1419', 'en', 1, 'https://ror.org/011qe1419 RiverWatch Insitute of Alberta'),
(16229, 'https://ror.org/026qpk997', 'en', 1, 'https://ror.org/026qpk997 Cape Assist'),
(16230, 'https://ror.org/043fjaj52', 'no_lang_code', 1, 'https://ror.org/043fjaj52 Capita (United Kingdom)'),
(16231, 'https://ror.org/03myb1z84', 'no_lang_code', 1, 'https://ror.org/03myb1z84 Capita Translation and Interpreting (United Kingdom)'),
(16232, 'https://ror.org/05pdz8949', 'no_lang_code', 1, 'https://ror.org/05pdz8949 BFI Betriebstechnik (Germany)'),
(16233, 'https://ror.org/014a8dd26', 'en', 1, 'https://ror.org/014a8dd26 Capital Community College'),
(16234, 'https://ror.org/00cgfxr19', 'no_lang_code', 1, 'https://ror.org/00cgfxr19 ApprenNet (United States)'),
(16235, 'https://ror.org/010g4yg11', 'no_lang_code', 1, 'https://ror.org/010g4yg11 Aqon Water Solutions (Germany)'),
(16236, 'https://ror.org/05pvjgr61', 'no_lang_code', 1, 'https://ror.org/05pvjgr61 Biker Fashion Arena Hamburg'),
(16237, 'https://ror.org/04qktt137', 'no_lang_code', 1, 'https://ror.org/04qktt137 Bumaga (Netherlands)'),
(16238, 'https://ror.org/047jmhw86', 'no_lang_code', 1, 'https://ror.org/047jmhw86 Aqua Consult Ingenieur (Germany)'),
(16239, 'https://ror.org/0570x4g13', 'no_lang_code', 1, 'https://ror.org/0570x4g13 Aquamarijn (Netherlands)'),
(16240, 'https://ror.org/042seb440', 'de', 1, 'https://ror.org/042seb440 Berufsfƶrderungszentrum Essen'),
(16241, 'https://ror.org/04d06q394', 'no_lang_code', 1, 'https://ror.org/04d06q394 Google (Canada)'),
(16242, 'https://ror.org/038680g19', 'en', 1, 'https://ror.org/038680g19 Bundesamt für Eich- und Vermessungswesen Federal Office of Metrology and Surveying'),
(16243, 'https://ror.org/03aak0114', 'no_lang_code', 1, 'https://ror.org/03aak0114 Capital Technology Information Services'),
(16244, 'https://ror.org/00ztjw772', 'fr', 1, 'https://ror.org/00ztjw772 CƩgep de Sorel-Tracy'),
(16245, 'https://ror.org/02qyt2t35', 'no_lang_code', 1, 'https://ror.org/02qyt2t35 Capricorn Automotive (United Kingdom)'),
(16246, 'https://ror.org/05d2wqp79', 'en', 1, 'https://ror.org/05d2wqp79 Greenville Children''s Hospital'),
(16247, 'https://ror.org/02axw6z74', 'no_lang_code', 1, 'https://ror.org/02axw6z74 Biaffin (Germany)'),
(16248, 'https://ror.org/01y7a2b37', 'no_lang_code', 1, 'https://ror.org/01y7a2b37 Biametrics (Germany)'),
(16249, 'https://ror.org/03v7mmm26', 'en', 1, 'https://ror.org/03v7mmm26 Bundesamt für Sicherheit in der Informationstechnik Federal Office for Information Security'),
(16250, 'https://ror.org/02x4af624', 'en', 1, 'https://ror.org/02x4af624 Central Statistics Office'),
(16251, 'https://ror.org/00ehy3369', 'en', 1, 'https://ror.org/00ehy3369 Central Virginia Community College'),
(16252, 'https://ror.org/01xg23r53', 'it', 1, 'https://ror.org/01xg23r53 Biblioteca Italiana per i Ciechi "Regina Margherita" - ONLUS'),
(16253, 'https://ror.org/02jvwwy41', 'en', 1, 'https://ror.org/02jvwwy41 Biblioteca Nacional de Portugal National Library of Portugal'),
(16254, 'https://ror.org/01aa1sn70', 'en', 1, 'https://ror.org/01aa1sn70 Bundesanstalt für Arbeitsschutz und Arbeitsmedizin Federal Institute for Occupational Safety and Health'),
(16255, 'https://ror.org/03h42b392', 'en', 1, 'https://ror.org/03h42b392 Biblioteca Nazionale Centrale di Roma Rome National Central Library'),
(16256, 'https://ror.org/04nmrty73', 'en', 1, 'https://ror.org/04nmrty73 Biblioteca Nazionale Marciana National Library of St Mark'),
(16257, 'https://ror.org/02x8cxb12', 'no_lang_code', 1, 'https://ror.org/02x8cxb12 Clearfield (United States)'),
(16258, 'https://ror.org/026sdzz57', 'en', 1, 'https://ror.org/026sdzz57 Centralia College'),
(16259, 'https://ror.org/038n1rk38', 'en', 1, 'https://ror.org/038n1rk38 Business Innovation Centre'),
(16260, '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'),
(16261, 'https://ror.org/055jqqn57', 'no_lang_code', 1, 'https://ror.org/055jqqn57 Bundesdruckerei (Germany) Reichsdruckerei'),
(16262, 'https://ror.org/04md9sc62', 'en', 1, 'https://ror.org/04md9sc62 Bienvenidos Children''s Center'),
(16263, 'https://ror.org/03z97cd47', 'es', 1, 'https://ror.org/03z97cd47 Fundació Privada Centre CIM'),
(16264, 'https://ror.org/02edcq094', 'no_lang_code', 1, 'https://ror.org/02edcq094 Big Horn Valve'),
(16265, 'https://ror.org/05tbrqg27', 'no_lang_code', 1, 'https://ror.org/05tbrqg27 Agrobiogen (Germany)'),
(16266, 'https://ror.org/01qznp021', 'no_lang_code', 1, 'https://ror.org/01qznp021 CapSenze (Sweden)'),
(16267, 'https://ror.org/0588zzw94', 'no_lang_code', 1, 'https://ror.org/0588zzw94 Arranta Bio (United States)'),
(16268, 'https://ror.org/02p8p3n14', 'no_lang_code', 1, 'https://ror.org/02p8p3n14 Agrovegetal (Spain)'),
(16269, 'https://ror.org/0396vya75', 'no_lang_code', 1, 'https://ror.org/0396vya75 Bilfinger (Germany)'),
(16270, 'https://ror.org/05vp4ka74', 'en', 1, 'https://ror.org/05vp4ka74 Bundesministerium für Gesundheit Federal Ministry of Health'),
(16271, 'https://ror.org/01j6w4907', 'en', 1, 'https://ror.org/01j6w4907 Biloxi Public Schools'),
(16272, 'https://ror.org/00y3wq736', 'en', 1, 'https://ror.org/00y3wq736 Bundesministerium für Bildung und Frauen Federal Ministry for Education and Women'),
(16273, 'https://ror.org/03cf36w49', 'en', 1, 'https://ror.org/03cf36w49 Southern Wesleyan University'),
(16274, 'https://ror.org/05fc83474', 'no_lang_code', 1, 'https://ror.org/05fc83474 Ahlstrom-Munksjƶ (France)'),
(16275, 'https://ror.org/03wawr393', 'no_lang_code', 1, 'https://ror.org/03wawr393 CarboNix (United States)'),
(16276, 'https://ror.org/05y3agr14', 'no_lang_code', 1, 'https://ror.org/05y3agr14 Ai2 (United Kingdom)'),
(16277, 'https://ror.org/01rjjd360', 'no_lang_code', 1, 'https://ror.org/01rjjd360 KalVista Pharmaceuticals (United States)'),
(16278, 'https://ror.org/046yjek33', 'no_lang_code', 1, 'https://ror.org/046yjek33 Aicas (Germany)'),
(16279, 'https://ror.org/04mmdfz16', 'no_lang_code', 1, 'https://ror.org/04mmdfz16 Bio Med Sciences (United States)'),
(16280, 'https://ror.org/03qw1d968', 'no_lang_code', 1, 'https://ror.org/03qw1d968 PSI Group (Belgium)'),
(16281, 'https://ror.org/05h6qy815', 'en', 1, 'https://ror.org/05h6qy815 Bio Nano Consulting'),
(16282, 'https://ror.org/0476vb322', 'no_lang_code', 1, 'https://ror.org/0476vb322 Carcerano (Italy)'),
(16283, 'https://ror.org/00s1pj327', 'en', 1, 'https://ror.org/00s1pj327 AIDS Arms'),
(16284, 'https://ror.org/01e0wse52', 'de', 1, 'https://ror.org/01e0wse52 Bundesverband der deutschen Fischindustrie und des Fischgroßhandels'),
(16285, 'https://ror.org/053t4zs10', 'no_lang_code', 1, 'https://ror.org/053t4zs10 Bunnell (United States)'),
(16286, 'https://ror.org/0312ax070', 'no_lang_code', 1, 'https://ror.org/0312ax070 LifeWatch (Israel)'),
(16287, 'https://ror.org/03gwjxa72', 'en', 1, 'https://ror.org/03gwjxa72 Alliance for Positive Health'),
(16288, 'https://ror.org/04ecr4902', 'no_lang_code', 1, 'https://ror.org/04ecr4902 Bio S&T (Canada)'),
(16289, 'https://ror.org/00p121j58', 'no_lang_code', 1, 'https://ror.org/00p121j58 Cardboard Citizens (United Kingdom)'),
(16290, 'https://ror.org/04dsm0326', 'no_lang_code', 1, 'https://ror.org/04dsm0326 Bioiliberis Research and Development (Spain)'),
(16291, 'https://ror.org/01rbzk889', 'no_lang_code', 1, 'https://ror.org/01rbzk889 Bio-K+ International (Canada)'),
(16292, 'https://ror.org/01gkd7j47', 'no_lang_code', 1, 'https://ror.org/01gkd7j47 Bio Molecular Technology (United States)'),
(16293, 'https://ror.org/00g0gdw57', 'en', 1, 'https://ror.org/00g0gdw57 AIDS Research Consortium of Atlanta'),
(16294, 'https://ror.org/031me7t03', 'en', 1, 'https://ror.org/031me7t03 Cardiff Council'),
(16295, 'https://ror.org/05ka98816', 'no_lang_code', 1, 'https://ror.org/05ka98816 Bio-Prodict (Netherlands)'),
(16296, 'https://ror.org/01tgr6n47', 'en', 1, 'https://ror.org/01tgr6n47 AIDS Resource Center of Wisconsin'),
(16297, 'https://ror.org/04cgwch75', 'no_lang_code', 1, 'https://ror.org/04cgwch75 Bio-Quick (United States)'),
(16298, 'https://ror.org/0041zj605', 'en', 1, 'https://ror.org/0041zj605 AIDS Services of Austin'),
(16299, 'https://ror.org/03pnx3e94', 'fr', 1, 'https://ror.org/03pnx3e94 Centre d''Ɖtudes et de Recherches de l''Industrie du BĆ©ton'),
(16300, 'https://ror.org/05f3jmw47', 'en', 1, 'https://ror.org/05f3jmw47 Thrive'),
(16301, 'https://ror.org/01zav1s03', 'no_lang_code', 1, 'https://ror.org/01zav1s03 Bio-Technical Resources (United States)'),
(16302, 'https://ror.org/025dtrv42', 'fr', 1, 'https://ror.org/025dtrv42 Centre d''Ɖtudes et de Recherches Ɖconomiques sur l''Ɖnergie'),
(16303, 'https://ror.org/052z4yp15', 'no_lang_code', 1, 'https://ror.org/052z4yp15 BioActor (Netherlands)'),
(16304, 'https://ror.org/03me50s15', 'no_lang_code', 1, 'https://ror.org/03me50s15 Elekta (United States)'),
(16305, 'https://ror.org/056h1w707', 'no_lang_code', 1, 'https://ror.org/056h1w707 Onxeo (France)'),
(16306, 'https://ror.org/020hbh524', 'no_lang_code', 1, 'https://ror.org/020hbh524 Medtronic (United Kingdom)'),
(16307, 'https://ror.org/05avcpr91', 'en', 1, 'https://ror.org/05avcpr91 American Institute for Medical and Biological Engineering'),
(16308, 'https://ror.org/01xbt8t65', 'no_lang_code', 1, 'https://ror.org/01xbt8t65 AIMES Grid Services (United Kingdom)'),
(16309, 'https://ror.org/01g325629', 'en', 1, 'https://ror.org/01g325629 Aims Community College'),
(16310, 'https://ror.org/04f87d812', 'fr', 1, 'https://ror.org/04f87d812 Centre d''Etudes Superieures Industrielles'),
(16311, 'https://ror.org/01n04jf21', 'no_lang_code', 1, 'https://ror.org/01n04jf21 EagleBurgmann (Germany)'),
(16312, 'https://ror.org/03jhg3q89', 'en', 1, 'https://ror.org/03jhg3q89 Care Resource'),
(16313, 'https://ror.org/03prbp808', 'cs', 1, 'https://ror.org/03prbp808 Czech Television ČeskÔ televize'),
(16314, 'https://ror.org/04yctbp37', 'en', 1, 'https://ror.org/04yctbp37 Czech Centre for Science and Society'),
(16315, 'https://ror.org/019611881', 'no_lang_code', 1, 'https://ror.org/019611881 Burnbrae Farms (Canada)'),
(16316, 'https://ror.org/01dkzd737', 'en', 1, 'https://ror.org/01dkzd737 Air France Consulting'),
(16317, 'https://ror.org/038yk2262', 'no_lang_code', 1, 'https://ror.org/038yk2262 Burness (United States)'),
(16318, 'https://ror.org/02j4v2965', 'en', 1, 'https://ror.org/02j4v2965 Career Trek'),
(16319, 'https://ror.org/046y74b83', 'no_lang_code', 1, 'https://ror.org/046y74b83 Careers Europe'),
(16320, 'https://ror.org/00ktc0f44', 'no_lang_code', 1, 'https://ror.org/00ktc0f44 Air Products (Germany)'),
(16321, 'https://ror.org/03k952713', 'en', 1, 'https://ror.org/03k952713 Airborne Research Associates'),
(16322, 'https://ror.org/017z1kg06', 'no_lang_code', 1, 'https://ror.org/017z1kg06 Finlombarda (Italy)'),
(16323, 'https://ror.org/04gana571', 'no_lang_code', 1, 'https://ror.org/04gana571 AirBoss Defense (Canada)'),
(16324, 'https://ror.org/03vvh8670', 'en', 1, 'https://ror.org/03vvh8670 Complete Home Care'),
(16325, 'https://ror.org/04n664s92', 'no_lang_code', 1, 'https://ror.org/04n664s92 BPM (Greece)'),
(16326, 'https://ror.org/03m9nwe27', 'ca', 1, 'https://ror.org/03m9nwe27 Centre d''Innovació i Desenvolupament Empresarial'),
(16327, 'https://ror.org/02g3cdg42', 'en', 1, 'https://ror.org/02g3cdg42 Butte County Department of Behavioral Health'),
(16328, 'https://ror.org/05f624153', 'no_lang_code', 1, 'https://ror.org/05f624153 Cargill (France)'),
(16329, 'https://ror.org/03thqnc26', 'no_lang_code', 1, 'https://ror.org/03thqnc26 Aircraft Development and Systems Engineering (Netherlands)'),
(16330, 'https://ror.org/00kqt1k28', 'no_lang_code', 1, 'https://ror.org/00kqt1k28 Van Wees (Netherlands)'),
(16331, 'https://ror.org/00shhkw75', 'no_lang_code', 1, 'https://ror.org/00shhkw75 Airlan (Spain)'),
(16332, 'https://ror.org/05hphav28', 'fr', 1, 'https://ror.org/05hphav28 Airparif'),
(16333, 'https://ror.org/03g9n2p49', 'no_lang_code', 1, 'https://ror.org/03g9n2p49 Airtren (Spain)'),
(16334, 'https://ror.org/02eeqxc82', 'en', 1, 'https://ror.org/02eeqxc82 Centre de DƩveloppement des Energies Renouvelables Renewable Energy Development Center'),
(16335, 'https://ror.org/008g3nb29', 'no_lang_code', 1, 'https://ror.org/008g3nb29 BVT Technologies (Czechia)'),
(16336, 'https://ror.org/03btbhp73', 'no_lang_code', 1, 'https://ror.org/03btbhp73 Circulomics (United States)'),
(16337, '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'),
(16338, 'https://ror.org/05y10b138', 'pt', 1, 'https://ror.org/05y10b138 Centro Tecnológico da Pedra Natural de Portugal'),
(16339, 'https://ror.org/04jpf5f68', 'en', 1, 'https://ror.org/04jpf5f68 CaringFamily'),
(16340, 'https://ror.org/012pre389', 'no_lang_code', 1, 'https://ror.org/012pre389 České Energetické ZÔvody (Czechia)'),
(16341, 'https://ror.org/049qtwk65', 'no_lang_code', 1, 'https://ror.org/049qtwk65 Centre de Pyrolyse de Marienau (France)'),
(16342, 'https://ror.org/00fgt9h27', 'no_lang_code', 1, 'https://ror.org/00fgt9h27 Carl Cloos Schweißtechnik (Germany)'),
(16343, 'https://ror.org/03vd5fy29', 'no_lang_code', 1, 'https://ror.org/03vd5fy29 Cezanne (Italy)'),
(16344, 'https://ror.org/03h22yx22', 'no_lang_code', 1, 'https://ror.org/03h22yx22 C & L Instruments (United States)'),
(16345, 'https://ror.org/028ppep60', 'en', 1, 'https://ror.org/028ppep60 Standing Committee of European Doctors'),
(16346, 'https://ror.org/021y45972', 'no_lang_code', 1, 'https://ror.org/021y45972 Consultants for Environmental System Technologies'),
(16347, 'https://ror.org/02pw67e25', 'no_lang_code', 1, 'https://ror.org/02pw67e25 CE Technologies (United Kingdom)'),
(16348, 'https://ror.org/00vqkww48', 'no_lang_code', 1, 'https://ror.org/00vqkww48 Carley Technologies (United States)'),
(16349, 'https://ror.org/004mv3j76', 'no_lang_code', 1, 'https://ror.org/004mv3j76 CFN Precision'),
(16350, 'https://ror.org/03q9x9z62', 'pt', 1, 'https://ror.org/03q9x9z62 Centro de Formação Profissional para o Sector Alimentar'),
(16351, 'https://ror.org/02dgk8j41', 'fr', 1, 'https://ror.org/02dgk8j41 Centre de Recherche en Nutrition Humaine RhƓne-Alpes'),
(16352, 'https://ror.org/00bd5vn47', 'no_lang_code', 1, 'https://ror.org/00bd5vn47 Carlsberg Group (Denmark)'),
(16353, 'https://ror.org/03190vh75', 'no_lang_code', 1, 'https://ror.org/03190vh75 Carmell Therapeutics (United States)'),
(16354, 'https://ror.org/03nd0ms94', 'no_lang_code', 1, 'https://ror.org/03nd0ms94 Doris Engineering (France)'),
(16355, 'https://ror.org/0584ce792', 'fr', 1, 'https://ror.org/0584ce792 Chambre de Commerce et d''Industrie Auvergne-RhƓne-Alpes'),
(16356, 'https://ror.org/02pnyt573', 'fr', 1, 'https://ror.org/02pnyt573 Chambre de Commerce et d''Industrie Lyon MĆ©tropole Saint-Ɖtienne Roanne'),
(16357, 'https://ror.org/00bpwc735', 'en', 1, 'https://ror.org/00bpwc735 Centre of Technological Resources in Chemistry'),
(16358, 'https://ror.org/05kfxbf35', 'no_lang_code', 1, 'https://ror.org/05kfxbf35 Carnego Systems (United Kingdom)'),
(16359, 'https://ror.org/02z89wd67', 'fr', 1, 'https://ror.org/02z89wd67 ConfƩdƩration GƩnƩrale du Travail General Confederation of Labour'),
(16360, 'https://ror.org/04kxs9506', 'fr', 1, 'https://ror.org/04kxs9506 Centre de Suivi Ecologique'),
(16361, 'https://ror.org/001vrfy97', 'en', 1, 'https://ror.org/001vrfy97 Carrier Clinic'),
(16362, 'https://ror.org/05n3hnq20', 'fr', 1, 'https://ror.org/05n3hnq20 Centre de Transfert de Technologie du Mans'),
(16363, 'https://ror.org/01s9r5913', 'no_lang_code', 1, 'https://ror.org/01s9r5913 Carte Blanche Conseil'),
(16364, 'https://ror.org/04nmzan17', 'en', 1, 'https://ror.org/04nmzan17 Chabot–Las Positas Community College District'),
(16365, 'https://ror.org/04tbkx594', 'en', 1, 'https://ror.org/04tbkx594 European Centre for Executive Development'),
(16366, 'https://ror.org/01ds3sh29', 'en', 1, 'https://ror.org/01ds3sh29 Children and Adults with Attention Deficit/Hyperactivity Disorder'),
(16367, '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'),
(16368, 'https://ror.org/008j31926', 'en', 1, 'https://ror.org/008j31926 Cary Medical Center'),
(16369, 'https://ror.org/01qhxpv22', 'no_lang_code', 1, 'https://ror.org/01qhxpv22 Chalklabs (United States)'),
(16370, 'https://ror.org/028qwvc58', 'en', 1, 'https://ror.org/028qwvc58 Chamber of Commerce and Industry of Romania'),
(16371, 'https://ror.org/01kmkkm51', 'fr', 1, 'https://ror.org/01kmkkm51 Chambre de Commerce et d''Industrie Occitanie PyrƩnƩes-MƩditerranƩe'),
(16372, 'https://ror.org/02ebmva22', 'no_lang_code', 1, 'https://ror.org/02ebmva22 Global Phasing (United Kingdom)'),
(16373, 'https://ror.org/03z5q7c50', 'fr', 1, 'https://ror.org/03z5q7c50 Chambre de Commerce et d''Industrie Pays de la Loire'),
(16374, 'https://ror.org/057a9pj22', 'en', 1, 'https://ror.org/057a9pj22 Cabrini University'),
(16375, 'https://ror.org/003tn2r13', 'en', 1, 'https://ror.org/003tn2r13 Champlain Valley Union High School'),
(16376, 'https://ror.org/027f3vp75', 'no_lang_code', 1, 'https://ror.org/027f3vp75 Centre for Concepts in Mechatronics'),
(16377, 'https://ror.org/012xvbn21', 'no_lang_code', 1, 'https://ror.org/012xvbn21 CEA Systems (Netherlands)'),
(16378, 'https://ror.org/05f5tv502', 'en', 1, 'https://ror.org/05f5tv502 Temecula Valley Unified School District'),
(16379, 'https://ror.org/01b0dbj85', 'no_lang_code', 1, 'https://ror.org/01b0dbj85 Cascade Technologies (United Kingdom)'),
(16380, 'https://ror.org/01tpms519', 'no_lang_code', 1, 'https://ror.org/01tpms519 Cad Modelling Ergonomics (Italy)'),
(16381, 'https://ror.org/04rtc8031', 'no_lang_code', 1, 'https://ror.org/04rtc8031 WPP (United Kingdom)'),
(16382, 'https://ror.org/02dteh969', 'en', 1, 'https://ror.org/02dteh969 Centre For Development Studies'),
(16383, 'https://ror.org/03x67zn13', 'no_lang_code', 1, 'https://ror.org/03x67zn13 Cadauta Engineering (Italy)'),
(16384, 'https://ror.org/00np6sw71', 'no_lang_code', 1, 'https://ror.org/00np6sw71 CASON Engineering (Hungary)'),
(16385, 'https://ror.org/05keyq749', 'en', 1, 'https://ror.org/05keyq749 Virginia Community Action Partnership'),
(16386, 'https://ror.org/001s88f97', 'no_lang_code', 1, 'https://ror.org/001s88f97 Mondelēz International (United Kingdom)'),
(16387, 'https://ror.org/00d9ep044', 'no_lang_code', 1, 'https://ror.org/00d9ep044 Cadence Design Systems (Germany)'),
(16388, 'https://ror.org/055wera52', 'en', 1, 'https://ror.org/055wera52 Chapter Arts Centre'),
(16389, 'https://ror.org/03tkh4446', 'en', 1, 'https://ror.org/03tkh4446 College of Southern Maryland'),
(16390, 'https://ror.org/00dszq289', 'en', 1, 'https://ror.org/00dszq289 Community Bridges'),
(16391, 'https://ror.org/01cc7y984', 'en', 1, 'https://ror.org/01cc7y984 Centre for Environmental Management and Decision Support'),
(16392, 'https://ror.org/00xhk2y44', 'no_lang_code', 1, 'https://ror.org/00xhk2y44 Cadzow Communications Consulting (United Kingdom)'),
(16393, 'https://ror.org/02t08m694', 'no_lang_code', 1, 'https://ror.org/02t08m694 HeidelbergCement (United Kingdom)'),
(16394, 'https://ror.org/03rt32119', 'no_lang_code', 1, 'https://ror.org/03rt32119 Caesar Systems (United Kingdom)'),
(16395, 'https://ror.org/009a9gs26', 'en', 1, 'https://ror.org/009a9gs26 Community Colleges of Spokane'),
(16396, 'https://ror.org/0478xk890', 'en', 1, 'https://ror.org/0478xk890 Community Connections'),
(16397, 'https://ror.org/00sd1ey15', 'no_lang_code', 1, 'https://ror.org/00sd1ey15 Castle Rock Edinvar (United Kingdom)'),
(16398, 'https://ror.org/03s917094', 'en', 1, 'https://ror.org/03s917094 Community Counseling Institute'),
(16399, 'https://ror.org/05w93eq54', 'en', 1, 'https://ror.org/05w93eq54 Drug Free Charlotte County'),
(16400, 'https://ror.org/04g9a2k03', 'en', 1, 'https://ror.org/04g9a2k03 Community Education Group'),
(16401, 'https://ror.org/03pnd9115', 'en', 1, 'https://ror.org/03pnd9115 Community Foundation'),
(16402, 'https://ror.org/00mtv4c34', 'en', 1, 'https://ror.org/00mtv4c34 Community Health Councils'),
(16403, 'https://ror.org/05733ar04', 'en', 1, 'https://ror.org/05733ar04 Community Healthlink'),
(16404, 'https://ror.org/05d8hxw39', 'en', 1, 'https://ror.org/05d8hxw39 Community Mental Health Affiliates'),
(16405, 'https://ror.org/03adps494', 'en', 1, 'https://ror.org/03adps494 Community Network Services'),
(16406, 'https://ror.org/00zq1zj15', 'en', 1, 'https://ror.org/00zq1zj15 Community Prevention Partnership'),
(16407, 'https://ror.org/0503ft796', 'no_lang_code', 1, 'https://ror.org/0503ft796 Castrol (United Kingdom)'),
(16408, 'https://ror.org/0096gcw21', 'en', 1, 'https://ror.org/0096gcw21 Centre for Independent Social Research Центр независимых ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… исслеГований'),
(16409, 'https://ror.org/003y83p14', 'en', 1, 'https://ror.org/003y83p14 University of the Third Age'),
(16410, 'https://ror.org/038ctdt29', 'en', 1, 'https://ror.org/038ctdt29 Community Services Institute'),
(16411, 'https://ror.org/00p6dtr08', 'no_lang_code', 1, 'https://ror.org/00p6dtr08 Blatchford (United Kingdom)'),
(16412, 'https://ror.org/01a697543', 'en', 1, 'https://ror.org/01a697543 Chattanooga State Community College'),
(16413, 'https://ror.org/034tcbt19', 'no_lang_code', 1, 'https://ror.org/034tcbt19 Catalyse'),
(16414, 'https://ror.org/01djt4c90', 'no_lang_code', 1, 'https://ror.org/01djt4c90 Telefactor Robotics (United States)'),
(16415, 'https://ror.org/03ag8py18', 'fr', 1, 'https://ror.org/03ag8py18 AcadƩmie de Montpellier'),
(16416, 'https://ror.org/014e9vv52', 'en', 1, 'https://ror.org/014e9vv52 Cheboygan Otsego Presque Isle Educational Service District'),
(16417, 'https://ror.org/05b3qpf29', 'en', 1, 'https://ror.org/05b3qpf29 Community Resources for Justice'),
(16418, 'https://ror.org/021wrjw75', 'no_lang_code', 1, 'https://ror.org/021wrjw75 CalGavin (United Kingdom)'),
(16419, 'https://ror.org/024rfjv05', 'en', 1, 'https://ror.org/024rfjv05 Centre for Studies in Social Sciences Calcutta'),
(16420, 'https://ror.org/00mssm162', 'en', 1, 'https://ror.org/00mssm162 Community Link'),
(16421, 'https://ror.org/01bmvyk77', 'no_lang_code', 1, 'https://ror.org/01bmvyk77 Chematur Engineering (Sweden)'),
(16422, 'https://ror.org/013s1wp36', 'no_lang_code', 1, 'https://ror.org/013s1wp36 CATAS Catas Laboratorio Analisi Legno Arredo Agroalimentare'),
(16423, 'https://ror.org/0386d9c06', 'no_lang_code', 1, 'https://ror.org/0386d9c06 ChemDiv (United States)'),
(16424, 'https://ror.org/01de6vt88', 'no_lang_code', 1, 'https://ror.org/01de6vt88 Chemetall (Germany)'),
(16425, 'https://ror.org/002hjp317', 'no_lang_code', 1, 'https://ror.org/002hjp317 Compagnie EuropĆ©enne d’intelligence StratĆ©gique (France)'),
(16426, 'https://ror.org/02rhwc631', 'no_lang_code', 1, 'https://ror.org/02rhwc631 Chemical Dynamics (United States)'),
(16427, 'https://ror.org/04kfyt897', 'en', 1, 'https://ror.org/04kfyt897 Center for Theoretical Physics'),
(16428, 'https://ror.org/002atrf55', 'fr', 1, 'https://ror.org/002atrf55 Centre Hospitalier ChrƩtien'),
(16429, 'https://ror.org/014j0w741', 'en', 1, 'https://ror.org/014j0w741 Catholic Medical Mission Board'),
(16430, 'https://ror.org/02vc6t684', 'en', 1, 'https://ror.org/02vc6t684 Catlin Gabel School'),
(16431, 'https://ror.org/00bd6zx59', 'de', 1, 'https://ror.org/00bd6zx59 Chemisches und Veterinäruntersuchungsamt Münsterland-Emscher-Lippe'),
(16432, 'https://ror.org/053nwxy06', 'en', 1, 'https://ror.org/053nwxy06 Los Angeles County Arboretum and Botanic Garden'),
(16433, 'https://ror.org/01abfef94', 'no_lang_code', 1, 'https://ror.org/01abfef94 ChemRegen (United States)'),
(16434, 'https://ror.org/008s3dc19', 'no_lang_code', 1, 'https://ror.org/008s3dc19 ChemRoutes (Canada)'),
(16435, 'https://ror.org/03vcezw91', 'en', 1, 'https://ror.org/03vcezw91 California Coalition Against Sexual Assault'),
(16436, '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)'),
(16437, 'https://ror.org/00kgr1f83', 'no_lang_code', 1, 'https://ror.org/00kgr1f83 Chemviron Carbon (United Kingdom)'),
(16438, 'https://ror.org/04kxasy49', 'no_lang_code', 1, 'https://ror.org/04kxasy49 Exide Technologies (France)'),
(16439, 'https://ror.org/04a007b13', 'no_lang_code', 1, 'https://ror.org/04a007b13 Nissatech Innovation Centre (Serbia)'),
(16440, 'https://ror.org/0035qnb68', 'no_lang_code', 1, 'https://ror.org/0035qnb68 Compart (Germany)'),
(16441, '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'),
(16442, 'https://ror.org/01mz29f88', 'en', 1, 'https://ror.org/01mz29f88 Pasadera Behavioral Health Network'),
(16443, 'https://ror.org/02yvt1b82', 'no_lang_code', 1, 'https://ror.org/02yvt1b82 Chart Industries (United Kingdom)'),
(16444, 'https://ror.org/01wxvb586', 'no_lang_code', 1, 'https://ror.org/01wxvb586 Compass Systems (United States)'),
(16445, 'https://ror.org/05v2dq092', 'fr', 1, 'https://ror.org/05v2dq092 Centre International des Technologies de l''Environnement de Tunis'),
(16446, 'https://ror.org/03q5mqx63', 'en', 1, 'https://ror.org/03q5mqx63 California Health and Human Services Agency'),
(16447, 'https://ror.org/02jkzw668', 'no_lang_code', 1, 'https://ror.org/02jkzw668 CompleGen (United States)'),
(16448, 'https://ror.org/01pdcqg90', 'no_lang_code', 1, 'https://ror.org/01pdcqg90 Composite Integration (United Kingdom)'),
(16449, 'https://ror.org/02vzsb460', 'no_lang_code', 1, 'https://ror.org/02vzsb460 Cavitation-Control Technology'),
(16450, 'https://ror.org/04790m696', 'no_lang_code', 1, 'https://ror.org/04790m696 Composites Evolution (United Kingdom)'),
(16451, 'https://ror.org/003j7c961', 'fr', 1, 'https://ror.org/003j7c961 Centre de Culture Scientifique, Technique et Industrielle'),
(16452, 'https://ror.org/00a5raq24', 'no_lang_code', 1, 'https://ror.org/00a5raq24 A-Gas International (United Kingdom)'),
(16453, 'https://ror.org/01skhtc50', 'no_lang_code', 1, 'https://ror.org/01skhtc50 Hummingbird Diagnostics (Germany)'),
(16454, 'https://ror.org/03cev9t93', 'fr', 1, 'https://ror.org/03cev9t93 Centre National de l''Informatique'),
(16455, 'https://ror.org/029w47y50', 'en', 1, 'https://ror.org/029w47y50 Cheyenne River Sioux Tribe Council'),
(16456, 'https://ror.org/0579ray12', 'fr', 1, 'https://ror.org/0579ray12 Centre National de la Recherche AppliquƩe au Developpement Rural'),
(16457, 'https://ror.org/018azsp93', 'en', 1, 'https://ror.org/018azsp93 Children’s Cancer Foundation'),
(16458, 'https://ror.org/046467720', 'en', 1, 'https://ror.org/046467720 CB Wetlands & Environmental Specialists'),
(16459, 'https://ror.org/0565atc18', 'en', 1, 'https://ror.org/0565atc18 Calista Elders Council'),
(16460, 'https://ror.org/05me4xs24', 'no_lang_code', 1, 'https://ror.org/05me4xs24 Compugraphics (United Kingdom)'),
(16461, 'https://ror.org/01tjh5r18', 'en', 1, 'https://ror.org/01tjh5r18 Children''s Council'),
(16462, 'https://ror.org/00h86n631', 'en', 1, 'https://ror.org/00h86n631 Children''s Health Fund'),
(16463, 'https://ror.org/045gnpt57', 'no_lang_code', 1, 'https://ror.org/045gnpt57 LETIPharma (Spain)'),
(16464, 'https://ror.org/04bjh1v02', 'de', 1, 'https://ror.org/04bjh1v02 Business Upper Austria – OƖ Wirtschaftsagentur OƖ Wirtschaftsagentur GmbH'),
(16465, 'https://ror.org/05se6w266', 'en', 1, 'https://ror.org/05se6w266 Dutch Institute for Healthcare Improvement'),
(16466, 'https://ror.org/05939ef94', 'no_lang_code', 1, 'https://ror.org/05939ef94 Altair Engineering (United States)'),
(16467, 'https://ror.org/05pxff726', 'no_lang_code', 1, 'https://ror.org/05pxff726 CBRNE (United Kingdom)'),
(16468, 'https://ror.org/05s47z440', 'no_lang_code', 1, 'https://ror.org/05s47z440 Folder Media'),
(16469, 'https://ror.org/043pn0570', 'no_lang_code', 1, 'https://ror.org/043pn0570 Chilworth Technology (United Kingdom)'),
(16470, 'https://ror.org/00p8xx315', 'no_lang_code', 1, 'https://ror.org/00p8xx315 CCC Diagnostics (United States)'),
(16471, 'https://ror.org/038k3ws77', 'en', 1, 'https://ror.org/038k3ws77 Centre of Polymer and Carbon Materials'),
(16472, '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'),
(16473, 'https://ror.org/02szraw88', 'fr', 1, 'https://ror.org/02szraw88 Centre RƩgional Africain des Sciences et Technologies de l''Espace'),
(16474, 'https://ror.org/01s0wyf50', 'en', 1, 'https://ror.org/01s0wyf50 Computer Network Information Center č®”ē®—ęœŗē½‘ē»œäæ”ęÆäø­åæƒ'),
(16475, 'https://ror.org/033hv7h54', 'no_lang_code', 1, 'https://ror.org/033hv7h54 Cambridge Consultants (United Kingdom)'),
(16476, 'https://ror.org/04an1th16', 'en', 1, 'https://ror.org/04an1th16 Computer Professionals for Social Responsibility'),
(16477, 'https://ror.org/01e8py533', 'en', 1, 'https://ror.org/01e8py533 Agrhymet Regional Centre'),
(16478, 'https://ror.org/03k03ec42', 'no_lang_code', 1, 'https://ror.org/03k03ec42 Computer Technology Associates (United States)'),
(16479, 'https://ror.org/03fjxe887', 'no_lang_code', 1, 'https://ror.org/03fjxe887 Sumitomo Chemical (United Kingdom)'),
(16480, 'https://ror.org/04h79hz18', 'en', 1, 'https://ror.org/04h79hz18 Chimp Haven'),
(16481, 'https://ror.org/012f3dh63', 'en', 1, 'https://ror.org/012f3dh63 China Academy of Transportation Sciences äŗ¤é€ščæč¾“éƒØē§‘å­¦ē ”ē©¶é™¢'),
(16482, 'https://ror.org/0533xsy32', 'no_lang_code', 1, 'https://ror.org/0533xsy32 Computercraft (United States)'),
(16483, 'https://ror.org/00a6s8j26', 'no_lang_code', 1, 'https://ror.org/00a6s8j26 Comsa Emte (Spain)'),
(16484, 'https://ror.org/04ts3qa26', 'en', 1, 'https://ror.org/04ts3qa26 China Association of Rural Energy Industry'),
(16485, 'https://ror.org/034j4s684', 'en', 1, 'https://ror.org/034j4s684 European-Mediterranean Seismological Centre'),
(16486, 'https://ror.org/02fsh0r13', 'en', 1, 'https://ror.org/02fsh0r13 China National Center for Biotechnology Development'),
(16487, 'https://ror.org/03jd1w748', 'no_lang_code', 1, 'https://ror.org/03jd1w748 CCTV User Group (United Kingdom)'),
(16488, 'https://ror.org/005ac6938', 'no_lang_code', 1, 'https://ror.org/005ac6938 CDI Bioscience (United States)'),
(16489, 'https://ror.org/00q4gxb20', 'no_lang_code', 1, 'https://ror.org/00q4gxb20 OmniVision Technologies (United States)'),
(16490, 'https://ror.org/00wyrb732', 'no_lang_code', 1, 'https://ror.org/00wyrb732 Comsis (France)'),
(16491, 'https://ror.org/043648k83', 'en', 1, 'https://ror.org/043648k83 China National Health Development Research Center å«ē”ŸéƒØå«ē”Ÿå‘å±•ē ”ē©¶äø­åæƒ'),
(16492, 'https://ror.org/00sadm236', 'no_lang_code', 1, 'https://ror.org/00sadm236 Centro Studi Industriali'),
(16493, 'https://ror.org/048trsg90', 'no_lang_code', 1, 'https://ror.org/048trsg90 Cambustion (United Kingdom)'),
(16494, 'https://ror.org/04g2pxd54', 'en', 1, 'https://ror.org/04g2pxd54 Chipola College'),
(16495, 'https://ror.org/04nfv1e19', 'no_lang_code', 1, 'https://ror.org/04nfv1e19 ALPhANOV (France)'),
(16496, 'https://ror.org/01at47r33', 'no_lang_code', 1, 'https://ror.org/01at47r33 Cameca (France)'),
(16497, 'https://ror.org/04pjbp005', 'no_lang_code', 1, 'https://ror.org/04pjbp005 Camelot Biomedical Systems (Italy)'),
(16498, 'https://ror.org/009c1h633', 'no_lang_code', 1, 'https://ror.org/009c1h633 Concawe'),
(16499, 'https://ror.org/053qa4s13', 'it', 1, 'https://ror.org/053qa4s13 Camera di Commercio di Firenze Florence International Mediation Chamber'),
(16500, 'https://ror.org/0391yk308', 'no_lang_code', 1, 'https://ror.org/0391yk308 Altran (Austria)'),
(16501, 'https://ror.org/03z2rq360', 'no_lang_code', 1, 'https://ror.org/03z2rq360 Camfridge (United Kingdom)'),
(16502, 'https://ror.org/0370m6q82', 'no_lang_code', 1, 'https://ror.org/0370m6q82 Chipworks (Canada)'),
(16503, 'https://ror.org/03tdxyb14', 'no_lang_code', 1, 'https://ror.org/03tdxyb14 ChK Group (United States)'),
(16504, 'https://ror.org/017sazg79', 'no_lang_code', 1, 'https://ror.org/017sazg79 Mersen (France)'),
(16505, 'https://ror.org/05gyeb173', 'fr', 1, 'https://ror.org/05gyeb173 College of General and Vocational Education Cégep de Jonquière'),
(16506, 'https://ror.org/03vm0h048', 'no_lang_code', 1, 'https://ror.org/03vm0h048 Choc Edge (United Kingdom)'),
(16507, 'https://ror.org/05f8m5935', 'fr', 1, 'https://ror.org/05f8m5935 CƩgep de Rimouski'),
(16508, 'https://ror.org/01139ec29', 'no_lang_code', 1, 'https://ror.org/01139ec29 Thermo Fisher Scientific (Netherlands)'),
(16509, 'https://ror.org/03vghmn25', 'no_lang_code', 1, 'https://ror.org/03vghmn25 Cementec Industries (Canada)'),
(16510, 'https://ror.org/0055z4983', 'no_lang_code', 1, 'https://ror.org/0055z4983 Christmann Informationstechnik + Medien (Germany)'),
(16511, 'https://ror.org/05xn6v862', 'no_lang_code', 1, 'https://ror.org/05xn6v862 ChromaDex (United States)'),
(16512, 'https://ror.org/01bae3q52', 'no_lang_code', 1, 'https://ror.org/01bae3q52 Sanotron'),
(16513, 'https://ror.org/03f90wp03', 'en', 1, 'https://ror.org/03f90wp03 Canadian Association for Girls in Science'),
(16514, 'https://ror.org/03zm24q55', 'no_lang_code', 1, 'https://ror.org/03zm24q55 Canadian Bank Note Company (Canada)'),
(16515, 'https://ror.org/026kkhf56', 'en', 1, 'https://ror.org/026kkhf56 Shad'),
(16516, 'https://ror.org/00rdbkh09', 'en', 1, 'https://ror.org/00rdbkh09 Canadian Coalition for Seniors Mental Health'),
(16517, 'https://ror.org/04yga0669', 'no_lang_code', 1, 'https://ror.org/04yga0669 ChromoLogic (United States)'),
(16518, 'https://ror.org/05c2m7279', 'no_lang_code', 1, 'https://ror.org/05c2m7279 Companhia de Equipamentos Industriais'),
(16519, 'https://ror.org/0171psx92', 'en', 1, 'https://ror.org/0171psx92 Noranda Income Fund'),
(16520, 'https://ror.org/02hmgg345', 'it', 1, 'https://ror.org/02hmgg345 INiziative Conciarie ASsociate'),
(16521, 'https://ror.org/01zqkbt68', 'no_lang_code', 1, 'https://ror.org/01zqkbt68 Chronos Technology (United Kingdom)'),
(16522, 'https://ror.org/02kjgzx32', 'en', 1, 'https://ror.org/02kjgzx32 Chrysalis House'),
(16523, 'https://ror.org/04wkbmw59', 'en', 1, 'https://ror.org/04wkbmw59 Canadian Institute for the Relief of Pain and Disability'),
(16524, 'https://ror.org/01yma9m40', 'en', 1, 'https://ror.org/01yma9m40 Concordia University Ann Arbor Universidad Concordia'),
(16525, 'https://ror.org/03z1f5h46', 'no_lang_code', 1, 'https://ror.org/03z1f5h46 CompaƱƭa IbƩrica De Paneles SintƩticos (Spain)'),
(16526, 'https://ror.org/044v41k28', 'no_lang_code', 1, 'https://ror.org/044v41k28 Concrete Repairs (United Kingdom)'),
(16527, 'https://ror.org/00tspxb31', 'en', 1, 'https://ror.org/00tspxb31 Chartered Professional Accountants of Canada comptable professionnel agrƩƩ'),
(16528, 'https://ror.org/00y7e0f48', 'no_lang_code', 1, 'https://ror.org/00y7e0f48 Controle & Inspectie Bureau Brouwer (Netherlands)'),
(16529, 'https://ror.org/04wmwts90', 'no_lang_code', 1, 'https://ror.org/04wmwts90 Connexor (Finland)'),
(16530, 'https://ror.org/03s0stn41', 'it', 1, 'https://ror.org/03s0stn41 Confederazione Italiana della Piccola e Media Industria'),
(16531, 'https://ror.org/02qakpg42', 'no_lang_code', 1, 'https://ror.org/02qakpg42 Confederación de Empresarios de Zaragoza'),
(16532, 'https://ror.org/005cv6b38', 'fr', 1, 'https://ror.org/005cv6b38 Celabor'),
(16533, 'https://ror.org/04yqne831', 'es', 1, 'https://ror.org/04yqne831 Confederacion EspaƱola De Fabricantes De Alimentos Compuestos Para Animales'),
(16534, 'https://ror.org/03fw2bn12', 'fr', 1, 'https://ror.org/03fw2bn12 Centre d''Imagerie BioMedicale'),
(16535, 'https://ror.org/00yn4x364', 'pt', 1, 'https://ror.org/00yn4x364 Centro de Estudos de Cultura Contemporânea'),
(16536, 'https://ror.org/03pkvgf29', 'no_lang_code', 1, 'https://ror.org/03pkvgf29 Cyke (United States)'),
(16537, 'https://ror.org/047h1e475', 'no_lang_code', 1, 'https://ror.org/047h1e475 Celica (Slovenia)'),
(16538, 'https://ror.org/00qnwh567', 'es', 1, 'https://ror.org/00qnwh567 Federación Española de Padres de Niños con CÔncer'),
(16539, 'https://ror.org/02q7j8a46', 'en', 1, 'https://ror.org/02q7j8a46 Irish Business and Employers Confederation'),
(16540, 'https://ror.org/050rqx152', 'en', 1, 'https://ror.org/050rqx152 Confederation of Organisations in Road Transport Enforcement'),
(16541, 'https://ror.org/03v79p997', 'no_lang_code', 1, 'https://ror.org/03v79p997 Cidete (Spain)'),
(16542, 'https://ror.org/05atpj522', 'no_lang_code', 1, 'https://ror.org/05atpj522 Cyprus Chamber of Commerce and Industry (Cyprus)'),
(16543, 'https://ror.org/02p7kx729', 'en', 1, 'https://ror.org/02p7kx729 Conference for Food Protection'),
(16544, 'https://ror.org/01qckg962', 'no_lang_code', 1, 'https://ror.org/01qckg962 Conference Management Services'),
(16545, 'https://ror.org/03tgve420', 'en', 1, 'https://ror.org/03tgve420 Cielo Institute'),
(16546, 'https://ror.org/02htcra34', 'en', 1, 'https://ror.org/02htcra34 Conference of Radiation Control Program Directors'),
(16547, 'https://ror.org/008y40y60', 'en', 1, 'https://ror.org/008y40y60 Cyprus Police'),
(16548, 'https://ror.org/042bat638', 'no_lang_code', 1, 'https://ror.org/042bat638 ConfometRx (United States)'),
(16549, 'https://ror.org/03vttd812', 'en', 1, 'https://ror.org/03vttd812 Connecticut Education Association'),
(16550, 'https://ror.org/049s5qx48', 'en', 1, 'https://ror.org/049s5qx48 Connecticut State Department of Education'),
(16551, 'https://ror.org/041hy4p77', 'no_lang_code', 1, 'https://ror.org/041hy4p77 ConocoPhillips (United Kingdom)'),
(16552, 'https://ror.org/04r9xv549', 'no_lang_code', 1, 'https://ror.org/04r9xv549 Conoship International (Netherlands)'),
(16553, 'https://ror.org/01mde0021', 'no_lang_code', 1, 'https://ror.org/01mde0021 Cellectis (United States)'),
(16554, 'https://ror.org/05xc7zw37', 'no_lang_code', 1, 'https://ror.org/05xc7zw37 CIM Group (Serbia)'),
(16555, 'https://ror.org/01hhf0c93', 'en', 1, 'https://ror.org/01hhf0c93 Consorzio Armatori per la Ricerca Italian Shipowners Research Consortium'),
(16556, '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'),
(16557, 'https://ror.org/027q99w81', 'no_lang_code', 1, 'https://ror.org/027q99w81 Cell Medica (United Kingdom)'),
(16558, 'https://ror.org/044xhw248', 'no_lang_code', 1, 'https://ror.org/044xhw248 Cell Microsystems (United States)'),
(16559, 'https://ror.org/02wjdtq78', 'es', 1, 'https://ror.org/02wjdtq78 Agencia de EnergĆ­a Nuclear y TecnologĆ­as de Avanzada'),
(16560, 'https://ror.org/042th2969', 'no_lang_code', 1, 'https://ror.org/042th2969 Centro de Innovación de Infraestructuras Inteligentes (Spain)'),
(16561, 'https://ror.org/016phpf56', 'no_lang_code', 1, 'https://ror.org/016phpf56 Cella Energy (United Kingdom)'),
(16562, 'https://ror.org/03ssm0977', 'no_lang_code', 1, 'https://ror.org/03ssm0977 Cellbond (United Kingdom)'),
(16563, 'https://ror.org/03xsax711', 'cs', 1, 'https://ror.org/03xsax711 Cznic'),
(16564, 'https://ror.org/05p1q6h89', 'no_lang_code', 1, 'https://ror.org/05p1q6h89 D Addato Agroalimentare (Italy)'),
(16565, 'https://ror.org/054bssx30', 'en', 1, 'https://ror.org/054bssx30 Cincinnati Public Schools'),
(16566, 'https://ror.org/032wrwd21', 'no_lang_code', 1, 'https://ror.org/032wrwd21 Takara (France)'),
(16567, 'https://ror.org/009a0gk47', 'no_lang_code', 1, 'https://ror.org/009a0gk47 Fives Landis (United Kingdom)'),
(16568, 'https://ror.org/03ypjf385', 'no_lang_code', 1, 'https://ror.org/03ypjf385 Neos Resources (United Kingdom)'),
(16569, 'https://ror.org/05qq13q49', 'no_lang_code', 1, 'https://ror.org/05qq13q49 CISC Semiconductor (Austria)'),
(16570, 'https://ror.org/04wfsv479', 'no_lang_code', 1, 'https://ror.org/04wfsv479 Cisco Systems (United Kingdom)'),
(16571, 'https://ror.org/03dtd0v69', 'no_lang_code', 1, 'https://ror.org/03dtd0v69 Cellix (Ireland)'),
(16572, 'https://ror.org/04hh2pc08', 'no_lang_code', 1, 'https://ror.org/04hh2pc08 Daat Research (United States)'),
(16573, 'https://ror.org/005h05b25', 'no_lang_code', 1, 'https://ror.org/005h05b25 Circle (United States)'),
(16574, 'https://ror.org/04y7he712', 'no_lang_code', 1, 'https://ror.org/04y7he712 Dacon (Norway)'),
(16575, 'https://ror.org/02a3gzm90', 'en', 1, 'https://ror.org/02a3gzm90 Miami-Dade County Public Schools'),
(16576, 'https://ror.org/00kjw0r97', 'no_lang_code', 1, 'https://ror.org/00kjw0r97 CirComp (Germany)'),
(16577, 'https://ror.org/05s565w61', 'no_lang_code', 1, 'https://ror.org/05s565w61 MeaningCloud (Spain)'),
(16578, 'https://ror.org/054nctx58', 'no_lang_code', 1, 'https://ror.org/054nctx58 Cenex (United Kingdom)'),
(16579, 'https://ror.org/01gqmxc42', 'en', 1, 'https://ror.org/01gqmxc42 Deutsche Angestellten-Gewerkschaft German Union of Salaried Employees'),
(16580, 'https://ror.org/03c1rcd16', 'no_lang_code', 1, 'https://ror.org/03c1rcd16 Daher (France)'),
(16581, 'https://ror.org/04b4qa207', 'no_lang_code', 1, 'https://ror.org/04b4qa207 ZeptoMetrix (United States)'),
(16582, 'https://ror.org/054ykvg32', 'no_lang_code', 1, 'https://ror.org/054ykvg32 Heartware International (United States)'),
(16583, 'https://ror.org/05f3k0a16', 'no_lang_code', 1, 'https://ror.org/05f3k0a16 Consorzio CREO (Italy)'),
(16584, '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'),
(16585, 'https://ror.org/04jvb9y72', 'no_lang_code', 1, 'https://ror.org/04jvb9y72 Cellular Research (United States)'),
(16586, 'https://ror.org/02nv12n94', 'it', 1, 'https://ror.org/02nv12n94 Consorzio del Formaggio Parmigiano-Reggiano'),
(16587, 'https://ror.org/044w95594', 'it', 1, 'https://ror.org/044w95594 Consorzio di Bioingegneria e Informatica Medica'),
(16588, 'https://ror.org/027b52158', 'no_lang_code', 1, 'https://ror.org/027b52158 Plasma (Macedonia)'),
(16589, 'https://ror.org/04aza2289', 'no_lang_code', 1, 'https://ror.org/04aza2289 Celoxica (United Kingdom)'),
(16590, 'https://ror.org/002ev2d93', 'no_lang_code', 1, 'https://ror.org/002ev2d93 Ciris IngƩnierie (France)'),
(16591, 'https://ror.org/01pghxv94', 'no_lang_code', 1, 'https://ror.org/01pghxv94 Celsense (United States)'),
(16592, 'https://ror.org/05g4w0661', 'en', 1, 'https://ror.org/05g4w0661 Canmore Museum and Geoscience Centre'),
(16593, 'https://ror.org/0327mxq88', 'it', 1, 'https://ror.org/0327mxq88 Consorzio Italiano per la Ricerca in Medicina'),
(16594, 'https://ror.org/039kb9274', 'en', 1, 'https://ror.org/039kb9274 Center for Asbestos Related Disease'),
(16595, 'https://ror.org/0132exq81', 'no_lang_code', 1, 'https://ror.org/0132exq81 Smithfield BioScience (United States)'),
(16596, 'https://ror.org/00tgp6v56', 'en', 1, 'https://ror.org/00tgp6v56 Center for Clinical Care and Research in Nigeria'),
(16597, 'https://ror.org/02ftsrc92', 'no_lang_code', 1, 'https://ror.org/02ftsrc92 Celulose Beira Industrial (Portugal)'),
(16598, 'https://ror.org/03tap5z28', 'no_lang_code', 1, 'https://ror.org/03tap5z28 Dairygold Co-Operative Society (Ireland)'),
(16599, 'https://ror.org/03s538y47', 'en', 1, 'https://ror.org/03s538y47 Dallas Independent School District'),
(16600, 'https://ror.org/04h9m3j18', 'no_lang_code', 1, 'https://ror.org/04h9m3j18 CIT Energy Management (Sweden)'),
(16601, 'https://ror.org/013trv503', 'no_lang_code', 1, 'https://ror.org/013trv503 Damen Shipyards Group (Netherlands)'),
(16602, 'https://ror.org/05v0str08', 'en', 1, 'https://ror.org/05v0str08 Midland University'),
(16603, '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'),
(16604, 'https://ror.org/00jxjq872', 'no_lang_code', 1, 'https://ror.org/00jxjq872 Citard Services (Cyprus)'),
(16605, 'https://ror.org/043bxbz53', 'en', 1, 'https://ror.org/043bxbz53 Experimentarium'),
(16606, 'https://ror.org/01jfqyt17', 'no_lang_code', 1, 'https://ror.org/01jfqyt17 Danaos (Greece)'),
(16607, 'https://ror.org/013vksw20', 'en', 1, 'https://ror.org/013vksw20 Center for Governmental Research'),
(16608, 'https://ror.org/02g2wm361', 'es', 1, 'https://ror.org/02g2wm361 Centro de Investigacion de las Telecomunicaciones'),
(16609, 'https://ror.org/04997nh58', 'en', 1, 'https://ror.org/04997nh58 Center for Health Care Services'),
(16610, 'https://ror.org/01f5tnx94', 'en', 1, 'https://ror.org/01f5tnx94 Institute of Ionized Gas Istituto Gas Ionizzati'),
(16611, 'https://ror.org/02ng1r361', 'fr', 1, 'https://ror.org/02ng1r361 CitƩ des Sciences et de l''Industrie'),
(16612, 'https://ror.org/0519yw032', 'en', 1, 'https://ror.org/0519yw032 EcoSpark'),
(16613, 'https://ror.org/050kt0y53', 'no_lang_code', 1, 'https://ror.org/050kt0y53 Citrix (United Kingdom)'),
(16614, 'https://ror.org/02164rg35', 'en', 1, 'https://ror.org/02164rg35 Austin Health & Human Services Department'),
(16615, 'https://ror.org/02w3y1050', 'no_lang_code', 1, 'https://ror.org/02w3y1050 Arena Pharmaceuticals (United States)'),
(16616, 'https://ror.org/04ddx8z75', 'no_lang_code', 1, 'https://ror.org/04ddx8z75 Codema (Ireland)'),
(16617, 'https://ror.org/051qkf035', 'no_lang_code', 1, 'https://ror.org/051qkf035 Constellation Technology (United States)'),
(16618, 'https://ror.org/04606j127', 'no_lang_code', 1, 'https://ror.org/04606j127 GarcĆ­aRama (Spain)'),
(16619, 'https://ror.org/02afbgp72', 'no_lang_code', 1, 'https://ror.org/02afbgp72 Construcciones y Auxiliar de Ferrocarriles (Spain)'),
(16620, 'https://ror.org/04sjgrc77', 'no_lang_code', 1, 'https://ror.org/04sjgrc77 Danish Micro Engineering (Denmark)'),
(16621, 'https://ror.org/05b6bjd03', 'no_lang_code', 1, 'https://ror.org/05b6bjd03 Construction Solutions (United States)'),
(16622, 'https://ror.org/01nv7r365', 'no_lang_code', 1, 'https://ror.org/01nv7r365 Constructive Thinking Studio (United Kingdom)'),
(16623, 'https://ror.org/05mhp5f89', 'no_lang_code', 1, 'https://ror.org/05mhp5f89 Af-cityplan (Czechia)'),
(16624, 'https://ror.org/015p4e180', 'no_lang_code', 1, 'https://ror.org/015p4e180 DSB (Denmark)');
INSERT INTO `rors` VALUES
(16625, 'https://ror.org/03kf4k440', 'no_lang_code', 1, 'https://ror.org/03kf4k440 Danish Power Systems (Denmark)'),
(16626, 'https://ror.org/05q8m5985', 'en', 1, 'https://ror.org/05q8m5985 Center for Security Studies ĪšĪ­Ī½Ļ„ĻĪæ ĪœĪµĪ»ĪµĻ„ĻŽĪ½ Ī‘ĻƒĻ†Ī±Ī»ĪµĪÆĪ±Ļ‚'),
(16627, 'https://ror.org/05wrxrk69', 'en', 1, 'https://ror.org/05wrxrk69 Center For Social Innovation'),
(16628, 'https://ror.org/024p72773', 'no_lang_code', 1, 'https://ror.org/024p72773 Imathia Construcción (Spain)'),
(16629, 'https://ror.org/00305v037', 'en', 1, 'https://ror.org/00305v037 Center for Success and Independence'),
(16630, 'https://ror.org/05egsp010', 'en', 1, 'https://ror.org/05egsp010 Danish Ministry of Transport Transportministeriet'),
(16631, 'https://ror.org/02jx5cp03', 'no_lang_code', 1, 'https://ror.org/02jx5cp03 Cen Group (United Kingdom)'),
(16632, 'https://ror.org/01k6b8252', 'no_lang_code', 1, 'https://ror.org/01k6b8252 Container Finance (Finland)'),
(16633, 'https://ror.org/05qq44506', 'en', 1, 'https://ror.org/05qq44506 Contaminated Land: Applications in the Real Environments'),
(16634, 'https://ror.org/0199wh953', 'no_lang_code', 1, 'https://ror.org/0199wh953 Contech (Canada)'),
(16635, 'https://ror.org/04e5k0n06', 'no_lang_code', 1, 'https://ror.org/04e5k0n06 Civilized Software (United States)'),
(16636, 'https://ror.org/03bskcm82', 'no_lang_code', 1, 'https://ror.org/03bskcm82 Contextual Change (United States)'),
(16637, 'https://ror.org/02bah0q54', 'en', 1, 'https://ror.org/02bah0q54 Clackamas County Children''s Commission Head Start'),
(16638, 'https://ror.org/00ypwp112', 'it', 1, 'https://ror.org/00ypwp112 Centro di Cultura Scientifica Alessandro Volta'),
(16639, 'https://ror.org/04eyx5a65', 'en', 1, 'https://ror.org/04eyx5a65 Center for Transboundary Cooperation'),
(16640, 'https://ror.org/05jeb9h94', 'en', 1, 'https://ror.org/05jeb9h94 Cemit Center of Excellence in Medicine and IT'),
(16641, 'https://ror.org/05xhmq411', 'no_lang_code', 1, 'https://ror.org/05xhmq411 Control 2K'),
(16642, 'https://ror.org/04dt1y190', 'no_lang_code', 1, 'https://ror.org/04dt1y190 Claremont BioSolutions (United States)'),
(16643, 'https://ror.org/05kbent92', 'no_lang_code', 1, 'https://ror.org/05kbent92 Trust Control International (France)'),
(16644, 'https://ror.org/05ybzyq68', 'no_lang_code', 1, 'https://ror.org/05ybzyq68 Castor Technologies (Canada)'),
(16645, 'https://ror.org/02awt9052', 'no_lang_code', 1, 'https://ror.org/02awt9052 ControlVet (Portugal)'),
(16646, 'https://ror.org/02j0jan18', 'fr', 1, 'https://ror.org/02j0jan18 La CitƩ MƩdicale'),
(16647, 'https://ror.org/03c0cr114', 'en', 1, 'https://ror.org/03c0cr114 Center of Maritime Technologies'),
(16648, 'https://ror.org/033tw3v53', 'no_lang_code', 1, 'https://ror.org/033tw3v53 Skulpt (United States)'),
(16649, 'https://ror.org/00aj77a24', 'no_lang_code', 1, 'https://ror.org/00aj77a24 Danone (France)'),
(16650, 'https://ror.org/027a1ey92', 'en', 1, 'https://ror.org/027a1ey92 Department of Consumer Protection'),
(16651, 'https://ror.org/05qbzsj10', 'en', 1, 'https://ror.org/05qbzsj10 Danish Institute of Fire and Security Technology Danmarks videncenter for brand og sikring'),
(16652, 'https://ror.org/0084vrs13', 'no_lang_code', 1, 'https://ror.org/0084vrs13 Clariant (Germany)'),
(16653, 'https://ror.org/00zr01g13', 'no_lang_code', 1, 'https://ror.org/00zr01g13 Convex Electrical (Ireland)'),
(16654, 'https://ror.org/032891704', 'no_lang_code', 1, 'https://ror.org/032891704 Clarifica (Canada)'),
(16655, 'https://ror.org/05g65zz68', 'no_lang_code', 1, 'https://ror.org/05g65zz68 Conwal (United States)'),
(16656, 'https://ror.org/057pnws69', 'en', 1, 'https://ror.org/057pnws69 Centre for Planning and Economic Research'),
(16657, 'https://ror.org/04jmj5q32', 'no_lang_code', 1, 'https://ror.org/04jmj5q32 Clarity Biosolutions (United Kingdom)'),
(16658, 'https://ror.org/04ehq7g28', 'en', 1, 'https://ror.org/04ehq7g28 Clark County School District'),
(16659, 'https://ror.org/03tafg684', 'no_lang_code', 1, 'https://ror.org/03tafg684 Clark-MXR (United States)'),
(16660, 'https://ror.org/02trqpj90', 'sl', 1, 'https://ror.org/02trqpj90 Center za Kartografijo Favne in Flore Centre for Cartography of Fauna and Flora'),
(16661, 'https://ror.org/03ss97438', 'no_lang_code', 1, 'https://ror.org/03ss97438 CenterLine (Canada)'),
(16662, 'https://ror.org/05dpd3531', 'en', 1, 'https://ror.org/05dpd3531 Cooperative Educational Service Agencies'),
(16663, 'https://ror.org/03anw0996', 'no_lang_code', 1, 'https://ror.org/03anw0996 Coord3 Industries (Italy)'),
(16664, 'https://ror.org/033tgbx59', 'en', 1, 'https://ror.org/033tgbx59 The Centers'),
(16665, 'https://ror.org/00x9vvs05', 'no_lang_code', 1, 'https://ror.org/00x9vvs05 Dantec Dynamics (United Kingdom)'),
(16666, 'https://ror.org/05gexen20', 'en', 1, 'https://ror.org/05gexen20 Clatsop Community College'),
(16667, 'https://ror.org/034b4j008', 'no_lang_code', 1, 'https://ror.org/034b4j008 Centice (United States)'),
(16668, 'https://ror.org/040qe3166', 'no_lang_code', 1, 'https://ror.org/040qe3166 Class Editori (Italy)'),
(16669, 'https://ror.org/00e5y8987', 'no_lang_code', 1, 'https://ror.org/00e5y8987 CentMa (Germany)'),
(16670, 'https://ror.org/01h6t1j28', 'es', 1, 'https://ror.org/01h6t1j28 Centro de Referencia Estatal de Autonomƭa Personal y Ayudas TƩcnicas'),
(16671, 'https://ror.org/00htj2222', 'no_lang_code', 1, 'https://ror.org/00htj2222 Corac Group (United Kingdom)'),
(16672, 'https://ror.org/0258dhc73', 'en', 1, 'https://ror.org/0258dhc73 European Center for Nanostructured Polymers'),
(16673, 'https://ror.org/04absy687', 'no_lang_code', 1, 'https://ror.org/04absy687 DanTech (United Kingdom)'),
(16674, 'https://ror.org/05d30jn11', 'en', 1, 'https://ror.org/05d30jn11 Clean Air Action Group'),
(16675, 'https://ror.org/041g9dd66', 'it', 1, 'https://ror.org/041g9dd66 Centro Europeo Sviluppo Applicazioni Plastiche'),
(16676, 'https://ror.org/02ssz8y77', 'no_lang_code', 1, 'https://ror.org/02ssz8y77 Cleancarb (Luxembourg)'),
(16677, 'https://ror.org/03r51h682', 'no_lang_code', 1, 'https://ror.org/03r51h682 Clear Communication Associates'),
(16678, 'https://ror.org/05xmmkz88', 'no_lang_code', 1, 'https://ror.org/05xmmkz88 Clear Guide Medical (United States)'),
(16679, 'https://ror.org/03m233w73', 'no_lang_code', 1, 'https://ror.org/03m233w73 Michell Instruments (France)'),
(16680, 'https://ror.org/02qsexb35', 'no_lang_code', 1, 'https://ror.org/02qsexb35 Roshydromet'),
(16681, 'https://ror.org/003xs1762', 'en', 1, 'https://ror.org/003xs1762 Central Arizona College'),
(16682, 'https://ror.org/01fa9pv21', 'no_lang_code', 1, 'https://ror.org/01fa9pv21 Coretek (United States)'),
(16683, 'https://ror.org/037ch9n61', 'no_lang_code', 1, 'https://ror.org/037ch9n61 Collaborative Group (United States)'),
(16684, 'https://ror.org/01d061936', 'en', 1, 'https://ror.org/01d061936 Central City Concern'),
(16685, 'https://ror.org/049x3vp31', 'en', 1, 'https://ror.org/049x3vp31 Tuscaloosa City Schools'),
(16686, 'https://ror.org/01ghqfw43', 'no_lang_code', 1, 'https://ror.org/01ghqfw43 Coriant (Germany)'),
(16687, 'https://ror.org/02pfsqg38', 'en', 1, 'https://ror.org/02pfsqg38 Clearfield-Jefferson Drug and Alcohol Commission'),
(16688, 'https://ror.org/00dr9zd82', 'no_lang_code', 1, 'https://ror.org/00dr9zd82 Coris BioConcept (Belgium)'),
(16689, 'https://ror.org/05m615h78', 'en', 1, 'https://ror.org/05m615h78 Cork County Council'),
(16690, 'https://ror.org/00aaf6750', 'no_lang_code', 1, 'https://ror.org/00aaf6750 Cleopa (Germany)'),
(16691, 'https://ror.org/00a45e114', 'en', 1, 'https://ror.org/00a45e114 Virginia Community College System'),
(16692, 'https://ror.org/05nkc6r27', 'it', 1, 'https://ror.org/05nkc6r27 Centro Estero per l''Internazionalizzazione Piemonte Agency for Investments, Export and Tourism'),
(16693, 'https://ror.org/04t3kx162', 'no_lang_code', 1, 'https://ror.org/04t3kx162 Danya Institute'),
(16694, 'https://ror.org/01fhq9k82', 'no_lang_code', 1, 'https://ror.org/01fhq9k82 Daren Labs (Israel)'),
(16695, 'https://ror.org/03gtqhp76', 'en', 1, 'https://ror.org/03gtqhp76 Central Laboratory for Agricultural Climate المعمل Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ للمناخ Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠ'),
(16696, 'https://ror.org/04pgnnw35', 'no_lang_code', 1, 'https://ror.org/04pgnnw35 Darlow Smithson Productions (United Kingdom)'),
(16697, 'https://ror.org/04wbxh769', 'en', 1, 'https://ror.org/04wbxh769 Cornwall Council'),
(16698, 'https://ror.org/01x6q1934', 'en', 1, 'https://ror.org/01x6q1934 Cleveland Foundation'),
(16699, 'https://ror.org/048cmes41', 'en', 1, 'https://ror.org/048cmes41 Tempe Union High School District'),
(16700, 'https://ror.org/053833993', 'en', 1, 'https://ror.org/053833993 Institute of Optical Materials and Technologies Jordan Malinowski Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по оптически материали Šø технологии ā€œŠŠŗŠ°Š“. ЙорГан ŠœŠ°Š»ŠøŠ½Š¾Š²ŃŠŗŠøā€'),
(16701, 'https://ror.org/05b7n5w28', 'no_lang_code', 1, 'https://ror.org/05b7n5w28 Corpora Systems (United States)'),
(16702, 'https://ror.org/05d74m226', 'en', 1, 'https://ror.org/05d74m226 Central Laboratory of General Ecology Централна Š»Š°Š±Š¾Ń€Š°Ń‚Š¾Ń€ŠøŃ по обща ŠµŠŗŠ¾Š»Š¾Š³ŠøŃ'),
(16703, 'https://ror.org/04e4qaj02', 'en', 1, 'https://ror.org/04e4qaj02 Central Maine Community College'),
(16704, 'https://ror.org/01c9mdb24', 'en', 1, 'https://ror.org/01c9mdb24 Cleveland Hearing & Speech Center'),
(16705, 'https://ror.org/04xh10z69', 'en', 1, 'https://ror.org/04xh10z69 Cleveland Municipal Court'),
(16706, 'https://ror.org/04jr7pd40', 'en', 1, 'https://ror.org/04jr7pd40 Cleveland State Community College'),
(16707, 'https://ror.org/03xdnx124', 'no_lang_code', 1, 'https://ror.org/03xdnx124 Cortexica (United Kingdom)'),
(16708, 'https://ror.org/05g0sd071', 'no_lang_code', 1, 'https://ror.org/05g0sd071 Central Research Laboratories (United Kingdom)'),
(16709, 'https://ror.org/01jt99c87', 'no_lang_code', 1, 'https://ror.org/01jt99c87 Clevercherry (United Kingdom)'),
(16710, 'https://ror.org/026sbed30', 'no_lang_code', 1, 'https://ror.org/026sbed30 Corvinno Technology Transfer'),
(16711, 'https://ror.org/01w5y4543', 'en', 1, 'https://ror.org/01w5y4543 CIMA Research Foundation'),
(16712, 'https://ror.org/017j5za44', 'no_lang_code', 1, 'https://ror.org/017j5za44 Data Management (Italy)'),
(16713, 'https://ror.org/05vepfk90', 'no_lang_code', 1, 'https://ror.org/05vepfk90 Cosmas (United States)'),
(16714, 'https://ror.org/04wrzsj34', 'no_lang_code', 1, 'https://ror.org/04wrzsj34 Data-Mate (Finland)'),
(16715, 'https://ror.org/00a61fv14', 'no_lang_code', 1, 'https://ror.org/00a61fv14 Data Numerica Institute (United States)'),
(16716, 'https://ror.org/03gjpwc41', 'no_lang_code', 1, 'https://ror.org/03gjpwc41 Cosmetic (Greece)'),
(16717, 'https://ror.org/04zr95r14', 'it', 1, 'https://ror.org/04zr95r14 Centro Italiano Materiali di Applicazione Calzaturiera'),
(16718, 'https://ror.org/015fn7y55', 'no_lang_code', 1, 'https://ror.org/015fn7y55 Costa Edutainment'),
(16719, 'https://ror.org/02rv6pz93', 'no_lang_code', 1, 'https://ror.org/02rv6pz93 PixelMill (United Kingdom)'),
(16720, 'https://ror.org/017hnns59', 'en', 1, 'https://ror.org/017hnns59 Couleecap'),
(16721, 'https://ror.org/02v7ms182', 'en', 1, 'https://ror.org/02v7ms182 Clifford Beers Clinic'),
(16722, 'https://ror.org/00k6bf447', 'en', 1, 'https://ror.org/00k6bf447 Clifford Chance'),
(16723, 'https://ror.org/001nqp226', 'pt', 1, 'https://ror.org/001nqp226 Centro Operativo e de Tecnologia de Regadio'),
(16724, 'https://ror.org/01vjbt677', 'no_lang_code', 1, 'https://ror.org/01vjbt677 ClimateWell (Sweden)'),
(16725, 'https://ror.org/03yc87g51', 'en', 1, 'https://ror.org/03yc87g51 Council for Basic Education'),
(16726, 'https://ror.org/03gd10562', 'no_lang_code', 1, 'https://ror.org/03gd10562 Converspeech (United States)'),
(16727, 'https://ror.org/01da5x211', 'en', 1, 'https://ror.org/01da5x211 Center for Economic Research and Environmental Strategy'),
(16728, 'https://ror.org/00ykv8m38', 'no_lang_code', 1, 'https://ror.org/00ykv8m38 CCL Biomedical (United States)'),
(16729, 'https://ror.org/04kcbt127', 'no_lang_code', 1, 'https://ror.org/04kcbt127 CEDEO (Italy)'),
(16730, 'https://ror.org/00t60rc39', 'no_lang_code', 1, 'https://ror.org/00t60rc39 Clinical Innovations (United States)'),
(16731, 'https://ror.org/04f6xma27', 'no_lang_code', 1, 'https://ror.org/04f6xma27 ClinInfo (France)'),
(16732, 'https://ror.org/0127sq784', 'en', 1, 'https://ror.org/0127sq784 Council of State Science Supervisors'),
(16733, 'https://ror.org/01bs5w571', 'en', 1, 'https://ror.org/01bs5w571 Council on Alcoholism and Drug Abuse'),
(16734, 'https://ror.org/00y3dr645', 'no_lang_code', 1, 'https://ror.org/00y3dr645 CLMS (United Kingdom)'),
(16735, 'https://ror.org/04fpakc82', 'en', 1, 'https://ror.org/04fpakc82 Cliff Funnell Associates'),
(16736, 'https://ror.org/021c40092', 'en', 1, 'https://ror.org/021c40092 Association of Directors of Environment, Economy, Planning and Transport'),
(16737, 'https://ror.org/04s7djw12', 'en', 1, 'https://ror.org/04s7djw12 Gateway ImpACT Coalition'),
(16738, 'https://ror.org/0418rrk10', 'no_lang_code', 1, 'https://ror.org/0418rrk10 Creative Action (United States)'),
(16739, 'https://ror.org/000px4v03', 'no_lang_code', 1, 'https://ror.org/000px4v03 Clopinet'),
(16740, 'https://ror.org/050sbwe70', 'no_lang_code', 1, 'https://ror.org/050sbwe70 Romus (Spain)'),
(16741, 'https://ror.org/002qtbf65', 'no_lang_code', 1, 'https://ror.org/002qtbf65 Federal Mogul (Sweden)'),
(16742, 'https://ror.org/03yberd21', 'no_lang_code', 1, 'https://ror.org/03yberd21 DataFlow/Alaska (United States)'),
(16743, 'https://ror.org/034k91b65', 'no_lang_code', 1, 'https://ror.org/034k91b65 CloudSigma (Switzerland)'),
(16744, 'https://ror.org/00wyejx41', 'pt', 1, 'https://ror.org/00wyejx41 CĆ¢mara Municipal de Beja'),
(16745, 'https://ror.org/05h5q0a22', 'no_lang_code', 1, 'https://ror.org/05h5q0a22 CLU (Italy)'),
(16746, 'https://ror.org/0099crw67', 'en', 1, 'https://ror.org/0099crw67 Courtesy Associates'),
(16747, 'https://ror.org/04997dd62', 'es', 1, 'https://ror.org/04997dd62 Basque Energy Cluster Cluster de EnergĆ­a'),
(16748, 'https://ror.org/01q5ara80', 'pt', 1, 'https://ror.org/01q5ara80 CĆ¢mara Municipal do Porto'),
(16749, 'https://ror.org/00rke6v95', 'no_lang_code', 1, 'https://ror.org/00rke6v95 Covalab (France)'),
(16750, 'https://ror.org/03pcn5m15', 'no_lang_code', 1, 'https://ror.org/03pcn5m15 Datamat (Italy)'),
(16751, 'https://ror.org/04kte8x98', 'no_lang_code', 1, 'https://ror.org/04kte8x98 Datamed Systems Integration (Greece)'),
(16752, 'https://ror.org/04twxbp02', 'en', 1, 'https://ror.org/04twxbp02 Centro Ricerche Economico Sociali Economical and Social Research Centre'),
(16753, 'https://ror.org/009ghz987', 'no_lang_code', 1, 'https://ror.org/009ghz987 DataMED (Italy)'),
(16754, 'https://ror.org/05bjb2m32', 'no_lang_code', 1, 'https://ror.org/05bjb2m32 AAC Clyde Space (United Kingdom)'),
(16755, 'https://ror.org/00zxanb56', 'no_lang_code', 1, 'https://ror.org/00zxanb56 Beasy (United Kingdom)'),
(16756, 'https://ror.org/01tjxaw07', 'no_lang_code', 1, 'https://ror.org/01tjxaw07 Colorex Master Batch (Netherlands)'),
(16757, 'https://ror.org/01ygzf271', 'no_lang_code', 1, 'https://ror.org/01ygzf271 Covesion (United Kingdom)'),
(16758, 'https://ror.org/03adw6z89', 'no_lang_code', 1, 'https://ror.org/03adw6z89 Cox Analytical Systems (Sweden)'),
(16759, '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'),
(16760, 'https://ror.org/03hxyy911', 'en', 1, 'https://ror.org/03hxyy911 Day One'),
(16761, 'https://ror.org/0009gv735', 'it', 1, 'https://ror.org/0009gv735 Censis Foundation - Center for Social Studies Fondazione Censis - Centro Studi Investimenti Sociali'),
(16762, 'https://ror.org/024nbjg39', 'nl', 1, 'https://ror.org/024nbjg39 DCMR Milieudienst Rijnmond'),
(16763, 'https://ror.org/0213syy24', 'no_lang_code', 1, 'https://ror.org/0213syy24 Exide Technologies (United Kingdom)'),
(16764, 'https://ror.org/00qq34m93', 'no_lang_code', 1, 'https://ror.org/00qq34m93 Crabbe Consulting'),
(16765, 'https://ror.org/03hb5ht18', 'no_lang_code', 1, 'https://ror.org/03hb5ht18 Craftsman Tools (United Kingdom)'),
(16766, 'https://ror.org/0172ekt87', 'en', 1, 'https://ror.org/0172ekt87 Craftspace'),
(16767, 'https://ror.org/02ec2g004', 'en', 1, 'https://ror.org/02ec2g004 Cranbrook Institute of Science'),
(16768, 'https://ror.org/05c4ny054', 'no_lang_code', 1, 'https://ror.org/05c4ny054 De Neef Chemical Processing (Belgium)'),
(16769, 'https://ror.org/00n523x67', 'en', 1, 'https://ror.org/00n523x67 Crawley Borough Council'),
(16770, 'https://ror.org/02e10hc87', 'no_lang_code', 1, 'https://ror.org/02e10hc87 Centronic (United Kingdom)'),
(16771, 'https://ror.org/0462h0957', 'en', 1, 'https://ror.org/0462h0957 International Centre of Biodynamics'),
(16772, 'https://ror.org/02zqy3981', 'en', 1, 'https://ror.org/02zqy3981 Department for Digital, Culture, Media & Sport Yr Adran Ddigidol, Diwylliant, Cyfryngau a Chwaraeon'),
(16773, 'https://ror.org/007qfc639', 'no_lang_code', 1, 'https://ror.org/007qfc639 CNH Industrial (Belgium)'),
(16774, 'https://ror.org/0320bge18', 'en', 1, 'https://ror.org/0320bge18 Department for Education'),
(16775, 'https://ror.org/021bzfh90', 'en', 1, 'https://ror.org/021bzfh90 Deafinitely Theatre'),
(16776, 'https://ror.org/02pxet008', 'ro', 1, 'https://ror.org/02pxet008 Centrul pentru Promovarea Energiei Curate si Eficiente in Romania'),
(16777, 'https://ror.org/04ntvzq34', 'en', 1, 'https://ror.org/04ntvzq34 Hearing Health Foundation'),
(16778, 'https://ror.org/0092rcp79', 'en', 1, 'https://ror.org/0092rcp79 Dean Associates'),
(16779, 'https://ror.org/02jcwf181', 'en', 1, 'https://ror.org/02jcwf181 Creative Scotland'),
(16780, 'https://ror.org/01vx9hd92', 'no_lang_code', 1, 'https://ror.org/01vx9hd92 Creative Systems Engineering (Greece)'),
(16781, 'https://ror.org/00wh8js32', 'no_lang_code', 1, 'https://ror.org/00wh8js32 Dearman (United Kingdom)'),
(16782, 'https://ror.org/056ndgk74', 'no_lang_code', 1, 'https://ror.org/056ndgk74 Creme Global (Ireland)'),
(16783, 'https://ror.org/04hnb2h89', 'no_lang_code', 1, 'https://ror.org/04hnb2h89 Vinngroup (Sweden)'),
(16784, 'https://ror.org/00nry9f97', 'no_lang_code', 1, 'https://ror.org/00nry9f97 Gizelis Robotics (Greece)'),
(16785, 'https://ror.org/030fq6p50', 'en', 1, 'https://ror.org/030fq6p50 PreventionFirst'),
(16786, 'https://ror.org/05w1d3q28', 'en', 1, 'https://ror.org/05w1d3q28 Coastal Behavioral Healthcare'),
(16787, 'https://ror.org/05g2tt321', 'en', 1, 'https://ror.org/05g2tt321 Coastal Horizons Center'),
(16788, 'https://ror.org/05be7xx76', 'no_lang_code', 1, 'https://ror.org/05be7xx76 Sun Chemical (United Kingdom)'),
(16789, 'https://ror.org/02m388s04', 'en', 1, 'https://ror.org/02m388s04 Department of Atomic Energy ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤Šą¤°ą„ą¤œą¤¾ विभाग அணு ą®šą®•ąÆą®¤ą®æą®¤ąÆą®¤ąÆą®±ąÆˆ ą“†ą“£ą“µąµ‹ąµ¼ą“œąµą“œ ą“µą“•ąµą“Ŗąµą“Ŗąµ'),
(16790, 'https://ror.org/03wtwre51', 'en', 1, 'https://ror.org/03wtwre51 Decatur Memorial Hospital'),
(16791, 'https://ror.org/021y8w832', 'no_lang_code', 1, 'https://ror.org/021y8w832 Ceps (Czechia)'),
(16792, 'https://ror.org/00qv12s34', 'no_lang_code', 1, 'https://ror.org/00qv12s34 Coaxial Power Systems (United Kingdom)'),
(16793, 'https://ror.org/01k7x8h55', 'it', 1, 'https://ror.org/01k7x8h55 Centro Europa Ricerche'),
(16794, 'https://ror.org/01dmz5y14', 'en', 1, 'https://ror.org/01dmz5y14 Colby–Sawyer College'),
(16795, 'https://ror.org/05d0bdm05', 'en', 1, 'https://ror.org/05d0bdm05 Crimean Astrophysical Observatory ŠšŃ€Ń‹Š¼ŃŠŗŠ°Ń Š°ŃŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(16796, 'https://ror.org/01efjsc63', 'no_lang_code', 1, 'https://ror.org/01efjsc63 Codamotion (United Kingdom)'),
(16797, 'https://ror.org/03g46y557', 'no_lang_code', 1, 'https://ror.org/03g46y557 Codeplay (United Kingdom)'),
(16798, 'https://ror.org/028gmb220', 'nl', 1, 'https://ror.org/028gmb220 Crisisplan'),
(16799, 'https://ror.org/0405v6d59', 'no_lang_code', 1, 'https://ror.org/0405v6d59 Elektrobit (Austria)'),
(16800, 'https://ror.org/0461v4y70', 'no_lang_code', 1, 'https://ror.org/0461v4y70 Codrico (Netherlands)'),
(16801, 'https://ror.org/02qswaj55', 'no_lang_code', 1, 'https://ror.org/02qswaj55 CeramOptec (Germany)'),
(16802, 'https://ror.org/05w59af50', 'no_lang_code', 1, 'https://ror.org/05w59af50 Deimos Engenharia (Portugal)'),
(16803, 'https://ror.org/01r2man76', 'en', 1, 'https://ror.org/01r2man76 DeKalb County Board of Health'),
(16804, 'https://ror.org/04h4j7e88', 'no_lang_code', 1, 'https://ror.org/04h4j7e88 Critical Systems Labs'),
(16805, 'https://ror.org/01jkxsd71', 'no_lang_code', 1, 'https://ror.org/01jkxsd71 Dekati (Finland)'),
(16806, 'https://ror.org/00n28tr38', 'no_lang_code', 1, 'https://ror.org/00n28tr38 Coexpair (Belgium)'),
(16807, 'https://ror.org/016j39z10', 'no_lang_code', 1, 'https://ror.org/016j39z10 Croda (United Kingdom)'),
(16808, 'https://ror.org/00pm11v55', 'no_lang_code', 1, 'https://ror.org/00pm11v55 Dekimo (Belgium)'),
(16809, 'https://ror.org/02b3ny291', 'no_lang_code', 1, 'https://ror.org/02b3ny291 Dekra (Germany)'),
(16810, 'https://ror.org/02azyxf26', 'no_lang_code', 1, 'https://ror.org/02azyxf26 TechnipFMC (France)'),
(16811, 'https://ror.org/0358hkb18', 'en', 1, 'https://ror.org/0358hkb18 Cross-Border Research Association'),
(16812, 'https://ror.org/05tyn2m51', 'no_lang_code', 1, 'https://ror.org/05tyn2m51 COG Analytics (United States)'),
(16813, 'https://ror.org/04jj71316', 'no_lang_code', 1, 'https://ror.org/04jj71316 Delap & Waller (Ireland)'),
(16814, 'https://ror.org/01dpfdz03', 'no_lang_code', 1, 'https://ror.org/01dpfdz03 CrossLang (Belgium)'),
(16815, 'https://ror.org/04sq8d504', 'no_lang_code', 1, 'https://ror.org/04sq8d504 Cogent Technology (United Kingdom)'),
(16816, 'https://ror.org/00f0rkp64', 'en', 1, 'https://ror.org/00f0rkp64 Delaware Coalition Against Domestic Violence'),
(16817, 'https://ror.org/0085sdj13', 'no_lang_code', 1, 'https://ror.org/0085sdj13 Cerebral Diagnostics (Canada)'),
(16818, 'https://ror.org/017cr6139', 'no_lang_code', 1, 'https://ror.org/017cr6139 Ceremed (United States)'),
(16819, 'https://ror.org/04hnb7242', 'no_lang_code', 1, 'https://ror.org/04hnb7242 Cognia (United States)'),
(16820, 'https://ror.org/03645fg60', 'no_lang_code', 1, 'https://ror.org/03645fg60 Ceres Power (United Kingdom)'),
(16821, 'https://ror.org/02mkmrt04', 'no_lang_code', 1, 'https://ror.org/02mkmrt04 Cryogel (France)'),
(16822, 'https://ror.org/02y899687', 'no_lang_code', 1, 'https://ror.org/02y899687 Cohera Medical (United States)'),
(16823, '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'),
(16824, 'https://ror.org/04ae0v143', 'no_lang_code', 1, 'https://ror.org/04ae0v143 Delfoi (Finland)'),
(16825, 'https://ror.org/00ebjwr02', 'no_lang_code', 1, 'https://ror.org/00ebjwr02 New Hampshire Ball Bearings (Germany)'),
(16826, 'https://ror.org/0001tya14', 'no_lang_code', 1, 'https://ror.org/0001tya14 Crystal Research (United States)'),
(16827, 'https://ror.org/03khjbj61', 'en', 1, 'https://ror.org/03khjbj61 Cerritos College'),
(16828, 'https://ror.org/05rkgsm35', 'en', 1, 'https://ror.org/05rkgsm35 Delgado Community College'),
(16829, 'https://ror.org/05bzyzw86', 'en', 1, 'https://ror.org/05bzyzw86 Cimosa'),
(16830, 'https://ror.org/04hhzbh37', 'no_lang_code', 1, 'https://ror.org/04hhzbh37 CertiChem (United States)'),
(16831, 'https://ror.org/00c3ee991', 'no_lang_code', 1, 'https://ror.org/00c3ee991 Coherent (United Kingdom)'),
(16832, 'https://ror.org/033epb951', 'no_lang_code', 1, 'https://ror.org/033epb951 Powerway (United States)'),
(16833, 'https://ror.org/02tzpx885', 'no_lang_code', 1, 'https://ror.org/02tzpx885 CertiFlyer (Netherlands)'),
(16834, 'https://ror.org/01qke2p33', 'no_lang_code', 1, 'https://ror.org/01qke2p33 Deliverics (United Kingdom)'),
(16835, 'https://ror.org/03hwfnp11', 'en', 1, 'https://ror.org/03hwfnp11 Computer Emergency Response Team'),
(16836, 'https://ror.org/056ceb060', 'no_lang_code', 1, 'https://ror.org/056ceb060 Coillte (Ireland)'),
(16837, 'https://ror.org/05y742b63', 'no_lang_code', 1, 'https://ror.org/05y742b63 Delley Seeds and Plants (Switzerland)'),
(16838, 'https://ror.org/0256cmg21', 'no_lang_code', 1, 'https://ror.org/0256cmg21 Certus Technology (United Kingdom)'),
(16839, 'https://ror.org/05gxmbr45', 'no_lang_code', 1, 'https://ror.org/05gxmbr45 Crown Packaging (United Kingdom)'),
(16840, 'https://ror.org/00ebjse29', 'no_lang_code', 1, 'https://ror.org/00ebjse29 Delong Instruments (Czechia)'),
(16841, 'https://ror.org/02vvm5369', 'no_lang_code', 1, 'https://ror.org/02vvm5369 Aptiv (United Kingdom)'),
(16842, 'https://ror.org/04p90jr61', 'no_lang_code', 1, 'https://ror.org/04p90jr61 Delphinus Medical Technologies (United States)'),
(16843, 'https://ror.org/0562dax79', 'en', 1, 'https://ror.org/0562dax79 Colchester School District'),
(16844, 'https://ror.org/05afhka30', 'no_lang_code', 1, 'https://ror.org/05afhka30 Delsys (United States)'),
(16845, 'https://ror.org/057afqq06', 'en', 1, 'https://ror.org/057afqq06 Delta College'),
(16846, 'https://ror.org/02epzsg75', 'no_lang_code', 1, 'https://ror.org/02epzsg75 Domologic (Germany)'),
(16847, 'https://ror.org/0189swh59', 'no_lang_code', 1, 'https://ror.org/0189swh59 CSTI Acoustics (United States)'),
(16848, 'https://ror.org/04erezm33', 'no_lang_code', 1, 'https://ror.org/04erezm33 DompƩ (Italy)'),
(16849, 'https://ror.org/05m21we88', 'no_lang_code', 1, 'https://ror.org/05m21we88 Delta Extinguishers (Belgium)'),
(16850, 'https://ror.org/02jfa4f02', 'no_lang_code', 1, 'https://ror.org/02jfa4f02 Collagen Medical (United States)'),
(16851, 'https://ror.org/04kn99c11', 'en', 1, 'https://ror.org/04kn99c11 Domus Academy'),
(16852, 'https://ror.org/03ewz3a13', 'no_lang_code', 1, 'https://ror.org/03ewz3a13 Delta Technologies Sud Ouest (France)'),
(16853, 'https://ror.org/04jp86b51', 'no_lang_code', 1, 'https://ror.org/04jp86b51 Delta T Devices (United Kingdom)'),
(16854, 'https://ror.org/03ak9f780', 'en', 1, 'https://ror.org/03ak9f780 Harrington Cancer Center'),
(16855, 'https://ror.org/031hbfw38', 'no_lang_code', 1, 'https://ror.org/031hbfw38 Deltagen (United States)'),
(16856, 'https://ror.org/05td63169', 'no_lang_code', 1, 'https://ror.org/05td63169 Deltatec (Belgium)'),
(16857, 'https://ror.org/00xbe3815', 'no_lang_code', 1, 'https://ror.org/00xbe3815 DEMO Consultants'),
(16858, 'https://ror.org/01wsx6q69', 'en', 1, 'https://ror.org/01wsx6q69 Department of the Environment'),
(16859, 'https://ror.org/001b0ke69', 'en', 1, 'https://ror.org/001b0ke69 Democenter Fondazione Democenter'),
(16860, 'https://ror.org/01x1yxa13', 'no_lang_code', 1, 'https://ror.org/01x1yxa13 Hungarian Central Statistical Office'),
(16861, 'https://ror.org/009mt7c73', 'no_lang_code', 1, 'https://ror.org/009mt7c73 Demuris (United Kingdom)'),
(16862, 'https://ror.org/032tx7v10', 'en', 1, 'https://ror.org/032tx7v10 College of Saint Elizabeth'),
(16863, 'https://ror.org/01p3wmk50', 'en', 1, 'https://ror.org/01p3wmk50 College of Saint Mary'),
(16864, 'https://ror.org/012ddpg93', 'no_lang_code', 1, 'https://ror.org/012ddpg93 Denkstatt Bulgaria (Bulgaria)'),
(16865, 'https://ror.org/03wq0ts29', 'en', 1, 'https://ror.org/03wq0ts29 College of the Redwoods'),
(16866, 'https://ror.org/00m2wbw87', 'no_lang_code', 1, 'https://ror.org/00m2wbw87 Colligo (Canada)'),
(16867, 'https://ror.org/05xtrfa17', 'no_lang_code', 1, 'https://ror.org/05xtrfa17 Denso (Germany)'),
(16868, 'https://ror.org/04arpqr50', 'en', 1, 'https://ror.org/04arpqr50 Matanuska-Susitna Borough School District'),
(16869, 'https://ror.org/0466y0231', 'no_lang_code', 1, 'https://ror.org/0466y0231 Competitive Design Network (Spain)'),
(16870, 'https://ror.org/03rw5mv34', 'en', 1, 'https://ror.org/03rw5mv34 Colorado Coalition for the Homeless'),
(16871, 'https://ror.org/02r8sxg18', 'en', 1, 'https://ror.org/02r8sxg18 Colorado Neurological Institute'),
(16872, 'https://ror.org/024qs1y51', 'no_lang_code', 1, 'https://ror.org/024qs1y51 Rio Mobility (United States)'),
(16873, 'https://ror.org/000fdtb56', 'no_lang_code', 1, 'https://ror.org/000fdtb56 Corporate Communications Group (United States)'),
(16874, 'https://ror.org/02ff6cq09', 'no_lang_code', 1, 'https://ror.org/02ff6cq09 Crystallume (United States)'),
(16875, 'https://ror.org/042jr0j26', 'en', 1, 'https://ror.org/042jr0j26 Derby City Council'),
(16876, 'https://ror.org/04jmejg35', 'no_lang_code', 1, 'https://ror.org/04jmejg35 Dacord (United Kingdom)'),
(16877, 'https://ror.org/0334h0b13', 'no_lang_code', 1, 'https://ror.org/0334h0b13 Columbus NanoWorks (United States)'),
(16878, 'https://ror.org/00dq07t65', 'de', 1, 'https://ror.org/00dq07t65 Institut für Forschung und Transfer'),
(16879, 'https://ror.org/03b8hyb18', 'no_lang_code', 1, 'https://ror.org/03b8hyb18 Columbus Superconductors (Italy)'),
(16880, 'https://ror.org/053hexc75', 'no_lang_code', 1, 'https://ror.org/053hexc75 CS Communication & SystĆØmes (France)'),
(16881, 'https://ror.org/01mx9ck98', 'no_lang_code', 1, 'https://ror.org/01mx9ck98 Dotsoft (Greece)'),
(16882, 'https://ror.org/03y255h89', 'en', 1, 'https://ror.org/03y255h89 Washington Township Fire Department'),
(16883, 'https://ror.org/03mam1w77', 'no_lang_code', 1, 'https://ror.org/03mam1w77 CS Transport (France)'),
(16884, 'https://ror.org/05n7a7b34', 'no_lang_code', 1, 'https://ror.org/05n7a7b34 Moog CSA Engineering (United States)'),
(16885, 'https://ror.org/021sswk79', 'no_lang_code', 1, 'https://ror.org/021sswk79 ConStat'),
(16886, 'https://ror.org/05h0qhk33', 'no_lang_code', 1, 'https://ror.org/05h0qhk33 Double Helix (United States)'),
(16887, 'https://ror.org/00yrwcc77', 'no_lang_code', 1, 'https://ror.org/00yrwcc77 Double Delta (Hungary)'),
(16888, 'https://ror.org/045xce929', 'no_lang_code', 1, 'https://ror.org/045xce929 Double S Instructional Systems'),
(16889, 'https://ror.org/00wdz4w44', 'en', 1, 'https://ror.org/00wdz4w44 Derry City Council'),
(16890, 'https://ror.org/0157qrq16', 'no_lang_code', 1, 'https://ror.org/0157qrq16 Comelz (Italy)'),
(16891, 'https://ror.org/00n89wj26', 'no_lang_code', 1, 'https://ror.org/00n89wj26 Comexi Group (Spain)'),
(16892, 'https://ror.org/04s181d41', 'it', 1, 'https://ror.org/04s181d41 Ev-K2-Cnr'),
(16893, 'https://ror.org/05cpjy057', 'no_lang_code', 1, 'https://ror.org/05cpjy057 Edelweiss Connect (Switzerland)'),
(16894, 'https://ror.org/046nv5659', 'no_lang_code', 1, 'https://ror.org/046nv5659 Dsan Research Solutions'),
(16895, 'https://ror.org/004w4kw49', 'it', 1, 'https://ror.org/004w4kw49 Comitato Termotecnico Italiano Energia e Ambiente'),
(16896, 'https://ror.org/04ewcb322', 'fr', 1, 'https://ror.org/04ewcb322 RĆ©seau pour la Transition ƉnergĆ©tique'),
(16897, 'https://ror.org/01ag4vf25', 'no_lang_code', 1, 'https://ror.org/01ag4vf25 Anton Paar (Switzerland)'),
(16898, 'https://ror.org/0326f1w25', 'en', 1, 'https://ror.org/0326f1w25 Douglas County Health Department'),
(16899, 'https://ror.org/031s7jq69', 'de', 1, 'https://ror.org/031s7jq69 Leonardo Büro Sachsen Anhalt'),
(16900, 'https://ror.org/00yz0gw97', 'en', 1, 'https://ror.org/00yz0gw97 Design Business Association'),
(16901, 'https://ror.org/00cxhe745', 'no_lang_code', 1, 'https://ror.org/00cxhe745 Design Science (United States)'),
(16902, 'https://ror.org/025ekwj97', 'no_lang_code', 1, 'https://ror.org/025ekwj97 Element Materials Technology (Sweden)'),
(16903, 'https://ror.org/01pqwyc94', 'en', 1, 'https://ror.org/01pqwyc94 Danish Film Institute'),
(16904, 'https://ror.org/049px0x49', 'no_lang_code', 1, 'https://ror.org/049px0x49 Dow Chemical (Netherlands)'),
(16905, 'https://ror.org/03yhnhz23', 'pt', 1, 'https://ror.org/03yhnhz23 Centro InteruniversitÔrio de História das Ciências e da Tecnologia'),
(16906, 'https://ror.org/04b29ff96', 'no_lang_code', 1, 'https://ror.org/04b29ff96 Energetiq Technology (United States)'),
(16907, 'https://ror.org/01337fb30', 'no_lang_code', 1, 'https://ror.org/01337fb30 Dow Chemical (Belgium)'),
(16908, 'https://ror.org/028heaq12', 'no_lang_code', 1, 'https://ror.org/028heaq12 Dow Chemical (United Kingdom)'),
(16909, 'https://ror.org/00zdkew04', 'no_lang_code', 1, 'https://ror.org/00zdkew04 Bausch Health (United States)'),
(16910, 'https://ror.org/02wg88z59', 'no_lang_code', 1, 'https://ror.org/02wg88z59 Veolia (Italy)'),
(16911, 'https://ror.org/02y2yt761', 'no_lang_code', 1, 'https://ror.org/02y2yt761 Container Speditions und Transportgesellschaft (Germany)'),
(16912, 'https://ror.org/057r81391', 'no_lang_code', 1, 'https://ror.org/057r81391 Energidalen (Sweden)'),
(16913, 'https://ror.org/0400w6m91', 'no_lang_code', 1, 'https://ror.org/0400w6m91 Basler & Hofmann (Switzerland)'),
(16914, 'https://ror.org/0525npv05', 'no_lang_code', 1, 'https://ror.org/0525npv05 Dr Matzat & Co (Germany)'),
(16915, 'https://ror.org/0476zhn05', 'no_lang_code', 1, 'https://ror.org/0476zhn05 Lakka (Finland)'),
(16916, 'https://ror.org/04nkrm103', 'no_lang_code', 1, 'https://ror.org/04nkrm103 Energrid (Italy)'),
(16917, 'https://ror.org/01ctq0573', 'de', 1, 'https://ror.org/01ctq0573 Kulturrat Ɩsterreich'),
(16918, 'https://ror.org/01sw63p34', 'en', 1, 'https://ror.org/01sw63p34 Energy Agency of Plovdiv'),
(16919, 'https://ror.org/00e1jkn44', 'cs', 1, 'https://ror.org/00e1jkn44 Energy Centre Ceske Budejovice'),
(16920, 'https://ror.org/05apy4h12', 'no_lang_code', 1, 'https://ror.org/05apy4h12 Energy Consulting Network (Denmark)'),
(16921, 'https://ror.org/01yvyth17', 'no_lang_code', 1, 'https://ror.org/01yvyth17 Biomer (Germany)'),
(16922, 'https://ror.org/04931ty90', 'en', 1, 'https://ror.org/04931ty90 Detroit Recovery Project'),
(16923, 'https://ror.org/04mg5jx38', 'en', 1, 'https://ror.org/04mg5jx38 Dr Williams''s Library'),
(16924, 'https://ror.org/016nn6y69', 'en', 1, 'https://ror.org/016nn6y69 Carinthian Tech Research'),
(16925, 'https://ror.org/024t72v35', 'fr', 1, 'https://ror.org/024t72v35 Terre des Sciences'),
(16926, 'https://ror.org/04rkfpx64', 'en', 1, 'https://ror.org/04rkfpx64 Center for Community Health Education Research and Service'),
(16927, 'https://ror.org/05dxmfh27', 'en', 1, 'https://ror.org/05dxmfh27 Energy System Analysis and Planning'),
(16928, 'https://ror.org/05c2nqw49', 'no_lang_code', 1, 'https://ror.org/05c2nqw49 Deutsche Energy Agency (Germany)'),
(16929, 'https://ror.org/04s3t0375', 'no_lang_code', 1, 'https://ror.org/04s3t0375 CTVC (United Kingdom)'),
(16930, 'https://ror.org/01n3jdx02', 'no_lang_code', 1, 'https://ror.org/01n3jdx02 Dr. Hƶnle (Germany)'),
(16931, 'https://ror.org/02crf0z25', 'no_lang_code', 1, 'https://ror.org/02crf0z25 Herry Consult (Austria)'),
(16932, 'https://ror.org/05vjt2s15', 'no_lang_code', 1, 'https://ror.org/05vjt2s15 EnerSearch'),
(16933, 'https://ror.org/05wtnrd36', 'no_lang_code', 1, 'https://ror.org/05wtnrd36 Dr. SchƤr (Italy)'),
(16934, 'https://ror.org/04mpq0910', 'no_lang_code', 1, 'https://ror.org/04mpq0910 RTD Services (Austria)'),
(16935, 'https://ror.org/0425phg59', 'en', 1, 'https://ror.org/0425phg59 Cuesta College'),
(16936, 'https://ror.org/052hb4r33', 'no_lang_code', 1, 'https://ror.org/052hb4r33 EnerTech (United States)'),
(16937, 'https://ror.org/01jbqg059', 'no_lang_code', 1, 'https://ror.org/01jbqg059 Enervana Technologies (United States)'),
(16938, 'https://ror.org/0229g2g56', 'no_lang_code', 1, 'https://ror.org/0229g2g56 MVV Energie (Germany) MVV Energy'),
(16939, 'https://ror.org/01krfz017', 'en', 1, 'https://ror.org/01krfz017 Engage'),
(16940, 'https://ror.org/05kqy9x67', 'no_lang_code', 1, 'https://ror.org/05kqy9x67 Engage (Germany)'),
(16941, 'https://ror.org/00sgajx84', 'no_lang_code', 1, 'https://ror.org/00sgajx84 BASF (Netherlands)'),
(16942, 'https://ror.org/052bszm02', 'en', 1, 'https://ror.org/052bszm02 Culex Environmental'),
(16943, 'https://ror.org/001jxpk05', 'de', 1, 'https://ror.org/001jxpk05 Deutsche Gesellschaft für Galvano- und Oberflächentechnik'),
(16944, 'https://ror.org/05p90pk86', 'no_lang_code', 1, 'https://ror.org/05p90pk86 Culgi (Netherlands)'),
(16945, 'https://ror.org/010b2bg46', 'no_lang_code', 1, 'https://ror.org/010b2bg46 Culminatum Innovation (Finland)'),
(16946, 'https://ror.org/006g3h191', 'no_lang_code', 1, 'https://ror.org/006g3h191 EngeniusMicro (United States)'),
(16947, 'https://ror.org/0415p9s42', 'no_lang_code', 1, 'https://ror.org/0415p9s42 DrƤger (Germany)'),
(16948, 'https://ror.org/05ssz5085', 'no_lang_code', 1, 'https://ror.org/05ssz5085 Materials Technology (United Kingdom)'),
(16949, 'https://ror.org/006wz7f31', 'no_lang_code', 1, 'https://ror.org/006wz7f31 Engineering Acoustics (United States)'),
(16950, 'https://ror.org/04rghc237', 'en', 1, 'https://ror.org/04rghc237 Dream of Hattiesburg'),
(16951, 'https://ror.org/02q6x7761', 'no_lang_code', 1, 'https://ror.org/02q6x7761 Dresden Elektronik Ingenieurtechnik (Germany)'),
(16952, 'https://ror.org/04pyzzc05', 'en', 1, 'https://ror.org/04pyzzc05 Bacon Street'),
(16953, 'https://ror.org/04g1y2z78', 'no_lang_code', 1, 'https://ror.org/04g1y2z78 Engineering Arts (United States)'),
(16954, 'https://ror.org/05mq2xn70', 'no_lang_code', 1, 'https://ror.org/05mq2xn70 Drug Prevention Resources'),
(16955, 'https://ror.org/02y3dtg29', 'en', 1, 'https://ror.org/02y3dtg29 Deutsches Rotes Kreuz German Red Cross'),
(16956, 'https://ror.org/01611ny13', 'no_lang_code', 1, 'https://ror.org/01611ny13 EuroPhoton (Germany)'),
(16957, 'https://ror.org/01srz8p41', 'no_lang_code', 1, 'https://ror.org/01srz8p41 DRVision Technologies (United States)'),
(16958, 'https://ror.org/043rf9d68', 'no_lang_code', 1, 'https://ror.org/043rf9d68 Europlasma (Belgium)'),
(16959, 'https://ror.org/03stcpv37', 'no_lang_code', 1, 'https://ror.org/03stcpv37 Cummins (United Kingdom)'),
(16960, 'https://ror.org/023aczp72', 'no_lang_code', 1, 'https://ror.org/023aczp72 Cup 2000 (Italy)'),
(16961, 'https://ror.org/01y9v7727', 'no_lang_code', 1, 'https://ror.org/01y9v7727 Europliroforissi'),
(16962, 'https://ror.org/05c2ase32', 'no_lang_code', 1, 'https://ror.org/05c2ase32 Dynamic Systems Analysis (Canada)'),
(16963, 'https://ror.org/04hayh169', 'no_lang_code', 1, 'https://ror.org/04hayh169 DSI Informationstechnik (Germany)'),
(16964, 'https://ror.org/014fxpb13', 'no_lang_code', 1, 'https://ror.org/014fxpb13 Engineering Data Management'),
(16965, 'https://ror.org/02s5qve69', 'no_lang_code', 1, 'https://ror.org/02s5qve69 Rogers (Germany)'),
(16966, 'https://ror.org/03h41j949', 'no_lang_code', 1, 'https://ror.org/03h41j949 Cureveda (United States)'),
(16967, 'https://ror.org/0441w6k76', 'no_lang_code', 1, 'https://ror.org/0441w6k76 DTK Electronics (Bulgaria)'),
(16968, 'https://ror.org/040xsmt05', 'en', 1, 'https://ror.org/040xsmt05 Coating Development Coating DƩveloppement'),
(16969, 'https://ror.org/02tte3f94', 'en', 1, 'https://ror.org/02tte3f94 Engineering Employers'' Federation'),
(16970, 'https://ror.org/038147z68', 'no_lang_code', 1, 'https://ror.org/038147z68 Promotora de Informaciones (Spain)'),
(16971, 'https://ror.org/01fr56s57', 'no_lang_code', 1, 'https://ror.org/01fr56s57 Curious Directive (United Kingdom)'),
(16972, 'https://ror.org/04jdd6f04', 'no_lang_code', 1, 'https://ror.org/04jdd6f04 Curtumes Aveneda (Portugal)'),
(16973, 'https://ror.org/00zvn3z28', 'no_lang_code', 1, 'https://ror.org/00zvn3z28 Engineering Link (Canada)'),
(16974, 'https://ror.org/01yz68468', 'no_lang_code', 1, 'https://ror.org/01yz68468 Euroscreen (Belgium)'),
(16975, 'https://ror.org/03et11k80', 'no_lang_code', 1, 'https://ror.org/03et11k80 Eurosolare (Italy)'),
(16976, 'https://ror.org/02zvx4k42', 'no_lang_code', 1, 'https://ror.org/02zvx4k42 Eurospider Information Technology (Switzerland)'),
(16977, 'https://ror.org/035dh8y26', 'no_lang_code', 1, 'https://ror.org/035dh8y26 Developmental Technologies (United States)'),
(16978, 'https://ror.org/05k5b7r52', 'no_lang_code', 1, 'https://ror.org/05k5b7r52 Eurospital (Italy)'),
(16979, 'https://ror.org/00gk1z123', 'no_lang_code', 1, 'https://ror.org/00gk1z123 Euskaltel (Spain)'),
(16980, 'https://ror.org/02tga4733', 'no_lang_code', 1, 'https://ror.org/02tga4733 DTV Consultants (Netherlands)'),
(16981, 'https://ror.org/02sbf1347', 'en', 1, 'https://ror.org/02sbf1347 Devon County Council'),
(16982, 'https://ror.org/026mcys63', 'no_lang_code', 1, 'https://ror.org/026mcys63 Thinkpath Engineering Services (Canada)'),
(16983, 'https://ror.org/03mpcp089', 'no_lang_code', 1, 'https://ror.org/03mpcp089 DeWitt Tool (United States)'),
(16984, 'https://ror.org/05j9fmg63', 'no_lang_code', 1, 'https://ror.org/05j9fmg63 DuPont (Spain)'),
(16985, 'https://ror.org/03zd0v772', 'no_lang_code', 1, 'https://ror.org/03zd0v772 Cv Cryptovision (Germany)'),
(16986, 'https://ror.org/00trkpm41', 'no_lang_code', 1, 'https://ror.org/00trkpm41 Engineering Software Research and Development (United States)'),
(16987, 'https://ror.org/03ngsbp86', 'en', 1, 'https://ror.org/03ngsbp86 Dubuque County Safe Youth Coalition'),
(16988, 'https://ror.org/04k8qhz96', 'no_lang_code', 1, 'https://ror.org/04k8qhz96 EnginSoft (United Kingdom)'),
(16989, 'https://ror.org/04sj6pm22', 'no_lang_code', 1, 'https://ror.org/04sj6pm22 Volkswagen Group (Italy)'),
(16990, 'https://ror.org/00tha2n31', 'no_lang_code', 1, 'https://ror.org/00tha2n31 Engitech (Cyprus)'),
(16991, 'https://ror.org/049wyn804', 'no_lang_code', 1, 'https://ror.org/049wyn804 Data Fusion Research Center'),
(16992, 'https://ror.org/009n13a08', 'no_lang_code', 1, 'https://ror.org/009n13a08 Dg Technology Service'),
(16993, 'https://ror.org/0414m8677', 'no_lang_code', 1, 'https://ror.org/0414m8677 Duferco (Belgium)'),
(16994, 'https://ror.org/01x0pmb79', 'en', 1, 'https://ror.org/01x0pmb79 Washington Center for Psychoanalysis'),
(16995, 'https://ror.org/03g83ha52', 'en', 1, 'https://ror.org/03g83ha52 Ukrainian Anti Cancer Institute Ukrainisches Institut für Krebsbekämpfung'),
(16996, 'https://ror.org/041yv5j17', 'en', 1, 'https://ror.org/041yv5j17 Washington School for the Deaf'),
(16997, 'https://ror.org/03gb01811', 'en', 1, 'https://ror.org/03gb01811 Washington State Department of Ecology'),
(16998, 'https://ror.org/017t4sb47', 'en', 1, 'https://ror.org/017t4sb47 Wright Institute'),
(16999, 'https://ror.org/01xeyq157', 'no_lang_code', 1, 'https://ror.org/01xeyq157 DH Consultancy BVBA (Belgium)'),
(17000, 'https://ror.org/03cjp2c87', 'en', 1, 'https://ror.org/03cjp2c87 Glasgow Victoria Infirmary'),
(17001, 'https://ror.org/00k3gyk15', 'no_lang_code', 1, 'https://ror.org/00k3gyk15 China National Pharmaceutical Group Corporation (China) äø­å›½åŒ»čÆé›†å›¢ę€»å…¬åø'),
(17002, 'https://ror.org/005ynf375', 'en', 1, 'https://ror.org/005ynf375 Victorian Infectious Diseases Reference Laboratory'),
(17003, 'https://ror.org/01h8xv021', 'no_lang_code', 1, 'https://ror.org/01h8xv021 Waters (United States)'),
(17004, 'https://ror.org/05bacvf60', 'en', 1, 'https://ror.org/05bacvf60 Watson Clinic'),
(17005, 'https://ror.org/0377kyv52', 'en', 1, 'https://ror.org/0377kyv52 United Lincolnshire Hospitals NHS Trust'),
(17006, 'https://ror.org/01kr2nz80', 'en', 1, 'https://ror.org/01kr2nz80 Canterbury Medical Research Foundation'),
(17007, 'https://ror.org/05vcy2476', 'it', 1, 'https://ror.org/05vcy2476 Fondazione Vincenzo Pansadoro Vincenzo Pansadoro Foundation'),
(17008, 'https://ror.org/00tzssk35', 'no_lang_code', 1, 'https://ror.org/00tzssk35 Celsion (United States)'),
(17009, 'https://ror.org/02t83f864', 'en', 1, 'https://ror.org/02t83f864 Wessex Regional Genetics Laboratory'),
(17010, 'https://ror.org/05ntqkc30', 'en', 1, 'https://ror.org/05ntqkc30 Velindre NHS Trust'),
(17011, 'https://ror.org/03dh12p89', 'en', 1, 'https://ror.org/03dh12p89 Perinatal Institute'),
(17012, 'https://ror.org/02sxpcf54', 'en', 1, 'https://ror.org/02sxpcf54 J. Iverson Riddle Developmental Center'),
(17013, 'https://ror.org/04h6nb532', 'no_lang_code', 1, 'https://ror.org/04h6nb532 Cyberce (Greece)'),
(17014, 'https://ror.org/04hs88j18', 'en', 1, 'https://ror.org/04hs88j18 Yale Griffin Prevention Research Center'),
(17015, 'https://ror.org/01sfj3073', 'no_lang_code', 1, 'https://ror.org/01sfj3073 Cyberlightning (Finland)'),
(17016, 'https://ror.org/05ermrg42', 'en', 1, 'https://ror.org/05ermrg42 Vavilov Institute of General Genetics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей генетики им. Š.И. Вавилова Российской акаГемии наук'),
(17017, 'https://ror.org/044t8ez79', 'no_lang_code', 1, 'https://ror.org/044t8ez79 Cybermoor (United Kingdom)'),
(17018, 'https://ror.org/04t4e0r52', 'no_lang_code', 1, 'https://ror.org/04t4e0r52 Yamasa Corporation (Japan) ćƒ¤ćƒžć‚µé†¤ę²¹'),
(17019, 'https://ror.org/00qd7ns71', 'en', 1, 'https://ror.org/00qd7ns71 ViteroRetinal Surgery'),
(17020, 'https://ror.org/01e5x8t10', 'en', 1, 'https://ror.org/01e5x8t10 Vision Cooperative Research Centre'),
(17021, 'https://ror.org/050g4m073', 'no_lang_code', 1, 'https://ror.org/050g4m073 Crest Nicholson (United Kingdom)'),
(17022, 'https://ror.org/01cn3f357', 'no_lang_code', 1, 'https://ror.org/01cn3f357 Visioncare Research'),
(17023, 'https://ror.org/04zxtsh93', 'en', 1, 'https://ror.org/04zxtsh93 Wichita Clinic'),
(17024, 'https://ror.org/02ssn3c97', 'en', 1, 'https://ror.org/02ssn3c97 York College of Pennsylvania'),
(17025, 'https://ror.org/03kt5jr23', 'en', 1, 'https://ror.org/03kt5jr23 Department of Health and Social Affairs'),
(17026, 'https://ror.org/03kjp3580', 'pt', 1, 'https://ror.org/03kjp3580 Gabinete de Estudos Olisiponenses'),
(17027, 'https://ror.org/04v999613', 'en', 1, 'https://ror.org/04v999613 Wingate Institute מכון וינגייט'),
(17028, 'https://ror.org/01syxq867', 'en', 1, 'https://ror.org/01syxq867 William Thomas Grant Foundation'),
(17029, 'https://ror.org/01baeyq79', 'en', 1, 'https://ror.org/01baeyq79 William Alanson White Institute'),
(17030, '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'),
(17031, 'https://ror.org/04pk7g992', 'en', 1, 'https://ror.org/04pk7g992 Dorset Green Technology Park'),
(17032, 'https://ror.org/032685859', 'en', 1, 'https://ror.org/032685859 Vitiligo and Pigmentation Institute of Southern California'),
(17033, 'https://ror.org/027stek86', 'fr', 1, 'https://ror.org/027stek86 FƩdƩration de la Plasturgie'),
(17034, 'https://ror.org/02x4zab94', 'en', 1, 'https://ror.org/02x4zab94 Federation of European Publishers'),
(17035, 'https://ror.org/03c22w876', 'en', 1, 'https://ror.org/03c22w876 Vittal Mallya Scientific Research Foundation'),
(17036, 'https://ror.org/03j2pv534', 'en', 1, 'https://ror.org/03j2pv534 YR Gaitonde Centre for AIDS Research and Education'),
(17037, 'https://ror.org/05tvxb796', 'fr', 1, 'https://ror.org/05tvxb796 FƩdƩration des Parcs Naturels RƩgionaux'),
(17038, 'https://ror.org/05dpxhh36', 'ms', 1, 'https://ror.org/05dpxhh36 Institut Penyelidikan Veterinar'),
(17039, 'https://ror.org/04hf8j803', 'en', 1, 'https://ror.org/04hf8j803 European Federation of Nurses Associations'),
(17040, 'https://ror.org/054hm6j14', 'en', 1, 'https://ror.org/054hm6j14 Vollum Institute'),
(17041, 'https://ror.org/01mw2b749', 'no_lang_code', 1, 'https://ror.org/01mw2b749 Dassault SystĆØmes (Germany)'),
(17042, 'https://ror.org/00m9r8n64', 'en', 1, 'https://ror.org/00m9r8n64 Federation of American Scientists'),
(17043, 'https://ror.org/03zh9hp36', 'en', 1, 'https://ror.org/03zh9hp36 William S. Hall Psychiatric Institute'),
(17044, 'https://ror.org/048abfv28', 'en', 1, 'https://ror.org/048abfv28 Federation of European Motorcyclists Associations'),
(17045, 'https://ror.org/006q46c69', 'sr', 1, 'https://ror.org/006q46c69 Zdravstveni centar'),
(17046, 'https://ror.org/02h8ngt70', 'en', 1, 'https://ror.org/02h8ngt70 Institutul National Victor Babes Victor Babes Institute'),
(17047, 'https://ror.org/03gtcr185', 'en', 1, 'https://ror.org/03gtcr185 W.K. Kellogg Foundation'),
(17048, 'https://ror.org/0524j0t30', 'en', 1, 'https://ror.org/0524j0t30 National Federation of Families for Children''s Mental Health'),
(17049, 'https://ror.org/01tk40402', 'en', 1, 'https://ror.org/01tk40402 Federation of Families of South Carolina'),
(17050, 'https://ror.org/03cjt8a33', 'en', 1, 'https://ror.org/03cjt8a33 Wolfe Eye Clinic'),
(17051, 'https://ror.org/02qxyh493', 'en', 1, 'https://ror.org/02qxyh493 Wakefield Orthopaedic Clinic'),
(17052, 'https://ror.org/00vx6je85', 'no_lang_code', 1, 'https://ror.org/00vx6je85 Zenyaku Kogyo (Japan) å…Øč–¬å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(17053, 'https://ror.org/01x29t295', 'de', 1, 'https://ror.org/01x29t295 Vivantes Klinikum'),
(17054, 'https://ror.org/01s676r39', 'en', 1, 'https://ror.org/01s676r39 Hellenic Federation of Enterprises'),
(17055, 'https://ror.org/04bdtkb86', 'en', 1, 'https://ror.org/04bdtkb86 Federation of Greek Mariculture'),
(17056, 'https://ror.org/04anj6w22', 'en', 1, 'https://ror.org/04anj6w22 Federation of Industries of Northern Greece'),
(17057, 'https://ror.org/03f015z81', 'en', 1, 'https://ror.org/03f015z81 Zhejiang Center for Disease Control and Prevention ęµ™ę±Ÿēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(17058, 'https://ror.org/05vekkk95', 'no_lang_code', 1, 'https://ror.org/05vekkk95 Duffy Engineering and Associates (United States)'),
(17059, 'https://ror.org/04h92v005', 'en', 1, 'https://ror.org/04h92v005 Waldo County Healthcare'),
(17060, 'https://ror.org/03awk9p59', 'en', 1, 'https://ror.org/03awk9p59 Wallace Laboratories'),
(17061, 'https://ror.org/04pg25v93', 'no_lang_code', 1, 'https://ror.org/04pg25v93 Englekirk (United States)'),
(17062, 'https://ror.org/02711wx11', 'en', 1, 'https://ror.org/02711wx11 English Courtyards'),
(17063, 'https://ror.org/01rxaf991', 'en', 1, 'https://ror.org/01rxaf991 Zhejiang Police College ęµ™ę±Ÿč­¦åÆŸå­¦é™¢'),
(17064, 'https://ror.org/02v226c57', 'en', 1, 'https://ror.org/02v226c57 Federation of the European Sporting Goods Industry'),
(17065, 'https://ror.org/04mzr3655', 'en', 1, 'https://ror.org/04mzr3655 Zibo Vocational Institute'),
(17066, 'https://ror.org/00xfx7t79', 'no_lang_code', 1, 'https://ror.org/00xfx7t79 Enigma Diagnostics (United Kingdom)'),
(17067, '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'),
(17068, 'https://ror.org/05t7wym31', 'en', 1, 'https://ror.org/05t7wym31 Federation of Clinical Immunology Societies');
INSERT INTO `rors` VALUES
(17069, 'https://ror.org/01n5p4z29', 'no_lang_code', 1, 'https://ror.org/01n5p4z29 Stantec (United States)'),
(17070, 'https://ror.org/01g44f369', 'no_lang_code', 1, 'https://ror.org/01g44f369 DynaVox (United States)'),
(17071, 'https://ror.org/03tnncq39', 'no_lang_code', 1, 'https://ror.org/03tnncq39 Enkon (Turkey)'),
(17072, 'https://ror.org/054c8sq43', 'en', 1, 'https://ror.org/054c8sq43 Warren Clinic'),
(17073, 'https://ror.org/05dzxqx07', 'no_lang_code', 1, 'https://ror.org/05dzxqx07 KBC Advanced Technologies (United Kingdom)'),
(17074, 'https://ror.org/04nmnc538', 'no_lang_code', 1, 'https://ror.org/04nmnc538 FEIG Electronic (Germany)'),
(17075, 'https://ror.org/03r41zp91', 'no_lang_code', 1, 'https://ror.org/03r41zp91 DAS Environmental Expert (Germany)'),
(17076, 'https://ror.org/02m0s8558', 'no_lang_code', 1, 'https://ror.org/02m0s8558 Ennovatis (Germany)'),
(17077, 'https://ror.org/00t1gpd82', 'en', 1, 'https://ror.org/00t1gpd82 Evaluation and Training Institute'),
(17078, 'https://ror.org/0223cdp82', 'en', 1, 'https://ror.org/0223cdp82 Dupage County Health Department'),
(17079, 'https://ror.org/057fshk20', 'no_lang_code', 1, 'https://ror.org/057fshk20 IHS Markit (Canada)'),
(17080, 'https://ror.org/04z0xef73', 'no_lang_code', 1, 'https://ror.org/04z0xef73 Current Water Technologies (Canada)'),
(17081, 'https://ror.org/03n7edp26', 'no_lang_code', 1, 'https://ror.org/03n7edp26 Enpro Consult (Bulgaria)'),
(17082, 'https://ror.org/001fr6a82', 'en', 1, 'https://ror.org/001fr6a82 Union of Agricultural Cooperatives of Peza'),
(17083, 'https://ror.org/05hxvc906', 'no_lang_code', 1, 'https://ror.org/05hxvc906 Solvay (Netherlands)'),
(17084, 'https://ror.org/032pt1y71', 'no_lang_code', 1, 'https://ror.org/032pt1y71 Britwind (United Kingdom)'),
(17085, 'https://ror.org/01t2c1t51', 'no_lang_code', 1, 'https://ror.org/01t2c1t51 FemtoScale (United States)'),
(17086, 'https://ror.org/04bq4z840', 'en', 1, 'https://ror.org/04bq4z840 Washington Institute of Dermatologic Laser Surgery'),
(17087, 'https://ror.org/025agpj70', 'en', 1, 'https://ror.org/025agpj70 Washington Poison Center'),
(17088, 'https://ror.org/05177zd25', 'no_lang_code', 1, 'https://ror.org/05177zd25 Fenix TNT (Czechia)'),
(17089, 'https://ror.org/03w2zhm87', 'no_lang_code', 1, 'https://ror.org/03w2zhm87 DuPont (Germany)'),
(17090, 'https://ror.org/0139cja35', 'no_lang_code', 1, 'https://ror.org/0139cja35 Dura Vermeer (Netherlands)'),
(17091, 'https://ror.org/046z39w60', 'no_lang_code', 1, 'https://ror.org/046z39w60 EnSilica (United Kingdom)'),
(17092, 'https://ror.org/022enjj11', 'no_lang_code', 1, 'https://ror.org/022enjj11 Fent Innovative Software Solutions (Spain)'),
(17093, 'https://ror.org/02pxcrq67', 'no_lang_code', 1, 'https://ror.org/02pxcrq67 FEO Solutions (United States)'),
(17094, 'https://ror.org/04swvpw46', 'no_lang_code', 1, 'https://ror.org/04swvpw46 Ivanhoe Energy (Canada)'),
(17095, 'https://ror.org/05btx4z39', 'en', 1, 'https://ror.org/05btx4z39 Durham County Council'),
(17096, 'https://ror.org/000kvm359', 'it', 1, 'https://ror.org/000kvm359 National Park of Abruzzo Parco Nazionale d''Abruzzo'),
(17097, 'https://ror.org/040qfvc89', 'fr', 1, 'https://ror.org/040qfvc89 FƩdƩration des Plastiques et Alliances Composites'),
(17098, 'https://ror.org/02p5tqh12', 'no_lang_code', 1, 'https://ror.org/02p5tqh12 Kromek (United Kingdom)'),
(17099, 'https://ror.org/03pdkyj36', 'no_lang_code', 1, 'https://ror.org/03pdkyj36 Evening Star Productions (United States)'),
(17100, 'https://ror.org/05qm32213', 'it', 1, 'https://ror.org/05qm32213 Ente Nazionale ACLI Istruzione Professionale National Network OF Services for Training and Employment Promotion'),
(17101, 'https://ror.org/043affe91', 'no_lang_code', 1, 'https://ror.org/043affe91 Stryker (United States)'),
(17102, 'https://ror.org/0488q6085', 'it', 1, 'https://ror.org/0488q6085 Ente nazionale italiano di unificazione Italian National Unification'),
(17103, 'https://ror.org/032h1gp10', 'no_lang_code', 1, 'https://ror.org/032h1gp10 Fernando DomĆ­nguez (Spain)'),
(17104, 'https://ror.org/047etja20', 'no_lang_code', 1, 'https://ror.org/047etja20 Everis (Spain)'),
(17105, 'https://ror.org/018jzsh55', 'no_lang_code', 1, 'https://ror.org/018jzsh55 FernwƤrme-Verbund Saar (Germany)'),
(17106, 'https://ror.org/055qvd023', 'no_lang_code', 1, 'https://ror.org/055qvd023 Qualizyme (Austria)'),
(17107, 'https://ror.org/04yecmt82', 'no_lang_code', 1, 'https://ror.org/04yecmt82 InHand Electronics (United States)'),
(17108, 'https://ror.org/05e0mbv58', 'no_lang_code', 1, 'https://ror.org/05e0mbv58 Evestra (United States)'),
(17109, 'https://ror.org/03yxn7r03', 'no_lang_code', 1, 'https://ror.org/03yxn7r03 Pittini Group (Italy)'),
(17110, 'https://ror.org/002mh8q73', 'en', 1, 'https://ror.org/002mh8q73 Enterprise State Community College'),
(17111, 'https://ror.org/03qsq2n78', 'no_lang_code', 1, 'https://ror.org/03qsq2n78 DVC (Belgium)'),
(17112, 'https://ror.org/02f6qgf95', 'en', 1, 'https://ror.org/02f6qgf95 Entertainment Industries Council'),
(17113, 'https://ror.org/03xnb5h64', 'no_lang_code', 1, 'https://ror.org/03xnb5h64 FerRobotics Compliant Robot Technology (Austria)'),
(17114, 'https://ror.org/02zz4qz23', 'no_lang_code', 1, 'https://ror.org/02zz4qz23 DVST (United Kingdom)'),
(17115, 'https://ror.org/0320hew69', 'no_lang_code', 1, 'https://ror.org/0320hew69 Ferroday (United Kingdom)'),
(17116, 'https://ror.org/00zt8d340', 'no_lang_code', 1, 'https://ror.org/00zt8d340 DIAD (Italy)'),
(17117, 'https://ror.org/04vcmzn19', 'no_lang_code', 1, 'https://ror.org/04vcmzn19 Meggitt (Denmark)'),
(17118, 'https://ror.org/04hjxdv96', 'no_lang_code', 1, 'https://ror.org/04hjxdv96 Evidence (Italy)'),
(17119, 'https://ror.org/03sjyg353', 'no_lang_code', 1, 'https://ror.org/03sjyg353 Diagnostic Biochips (United States)'),
(17120, 'https://ror.org/00mfy6m96', 'no_lang_code', 1, 'https://ror.org/00mfy6m96 DxDiscovery (United States)'),
(17121, 'https://ror.org/04gewa138', 'no_lang_code', 1, 'https://ror.org/04gewa138 Evigia Systems (United States)'),
(17122, 'https://ror.org/01m1ems94', 'en', 1, 'https://ror.org/01m1ems94 Sector Skills Council for Science, Engineering and Manufacturing Technologies'),
(17123, 'https://ror.org/041c1w327', 'no_lang_code', 1, 'https://ror.org/041c1w327 DHL (Spain)'),
(17124, 'https://ror.org/00rgeck60', 'no_lang_code', 1, 'https://ror.org/00rgeck60 Evonik (United Kingdom)'),
(17125, 'https://ror.org/01gk96h18', 'no_lang_code', 1, 'https://ror.org/01gk96h18 GreatCell Solar (United Kingdom)'),
(17126, 'https://ror.org/023tfbg60', 'no_lang_code', 1, 'https://ror.org/023tfbg60 Import.io (United States)'),
(17127, 'https://ror.org/041nyfq10', 'no_lang_code', 1, 'https://ror.org/041nyfq10 Mistras Group (Greece)'),
(17128, 'https://ror.org/01w2at733', 'it', 1, 'https://ror.org/01w2at733 Casa di Cura Villa Pini d’Abruzzo'),
(17129, 'https://ror.org/05vzvmc30', 'no_lang_code', 1, 'https://ror.org/05vzvmc30 DE Technologies (United States)'),
(17130, 'https://ror.org/04gxaf668', 'en', 1, 'https://ror.org/04gxaf668 Fevered Sleep'),
(17131, 'https://ror.org/05tyymd87', 'no_lang_code', 1, 'https://ror.org/05tyymd87 DHL (Switzerland)'),
(17132, 'https://ror.org/03mj2tv58', 'no_lang_code', 1, 'https://ror.org/03mj2tv58 Ewos Innovation (Norway)'),
(17133, 'https://ror.org/05vs3ac92', 'no_lang_code', 1, 'https://ror.org/05vs3ac92 Postnova Analytics (United States)'),
(17134, 'https://ror.org/01c5g1574', 'no_lang_code', 1, 'https://ror.org/01c5g1574 Lattanzio Group (Italy)'),
(17135, 'https://ror.org/01d474d81', 'no_lang_code', 1, 'https://ror.org/01d474d81 Husqvarna (Belgium)'),
(17136, 'https://ror.org/03fpb6q62', 'no_lang_code', 1, 'https://ror.org/03fpb6q62 Exalos (Switzerland)'),
(17137, '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'),
(17138, 'https://ror.org/02g2wxz83', 'no_lang_code', 1, 'https://ror.org/02g2wxz83 ERBA Diagnostics (United States)'),
(17139, 'https://ror.org/03wxz7j86', 'no_lang_code', 1, 'https://ror.org/03wxz7j86 Diamond Aircraft Industries (Austria)'),
(17140, 'https://ror.org/001yh7w33', 'no_lang_code', 1, 'https://ror.org/001yh7w33 Dynamic Boosting Systems (United Kingdom)'),
(17141, 'https://ror.org/05r716r40', 'no_lang_code', 1, 'https://ror.org/05r716r40 Dynamic Concepts (United States)'),
(17142, 'https://ror.org/04kktsb78', 'en', 1, 'https://ror.org/04kktsb78 Excellence Community Education Welfare Scheme'),
(17143, 'https://ror.org/02t247e37', 'no_lang_code', 1, 'https://ror.org/02t247e37 Dynamic Contours (United States)'),
(17144, 'https://ror.org/020bbn883', 'no_lang_code', 1, 'https://ror.org/020bbn883 Excellims (United States)'),
(17145, 'https://ror.org/048zew673', 'no_lang_code', 1, 'https://ror.org/048zew673 Centrotherm Photovoltaics (Germany)'),
(17146, 'https://ror.org/031dsww89', 'no_lang_code', 1, 'https://ror.org/031dsww89 Becton Dickinson (Canada)'),
(17147, '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'),
(17148, 'https://ror.org/00xaant88', 'no_lang_code', 1, 'https://ror.org/00xaant88 Quadrise Canada Corporation (Canada)'),
(17149, 'https://ror.org/01434vk98', 'no_lang_code', 1, 'https://ror.org/01434vk98 GrafTech (United States)'),
(17150, 'https://ror.org/04mzgvt54', 'en', 1, 'https://ror.org/04mzgvt54 Environmental Research Institute'),
(17151, 'https://ror.org/04vvcpa15', 'no_lang_code', 1, 'https://ror.org/04vvcpa15 Fiberline Composites (Denmark)'),
(17152, 'https://ror.org/043vm9914', 'no_lang_code', 1, 'https://ror.org/043vm9914 Dynamic Systems (United States)'),
(17153, 'https://ror.org/03fgg2060', 'no_lang_code', 1, 'https://ror.org/03fgg2060 DIARC-Technology (Finland)'),
(17154, 'https://ror.org/00m6gc198', 'no_lang_code', 1, 'https://ror.org/00m6gc198 Diasa Industrial (Spain)'),
(17155, 'https://ror.org/04c4y1k56', 'no_lang_code', 1, 'https://ror.org/04c4y1k56 CoorsTek (United Kingdom)'),
(17156, 'https://ror.org/03zwh7x79', 'no_lang_code', 1, 'https://ror.org/03zwh7x79 Fibre Extrusion Technology (United Kingdom)'),
(17157, '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'),
(17158, 'https://ror.org/00rgwvs20', 'no_lang_code', 1, 'https://ror.org/00rgwvs20 Exel Composites (United Kingdom)'),
(17159, 'https://ror.org/03wadyw29', 'no_lang_code', 1, 'https://ror.org/03wadyw29 Parrot (France)'),
(17160, 'https://ror.org/00vggw919', 'no_lang_code', 1, 'https://ror.org/00vggw919 Fibroline (France)'),
(17161, 'https://ror.org/00c5abk38', 'no_lang_code', 1, 'https://ror.org/00c5abk38 Environmental Software and Services (Austria)'),
(17162, 'https://ror.org/03f22z049', 'en', 1, 'https://ror.org/03f22z049 Exeter City Council'),
(17163, 'https://ror.org/034kkc914', 'no_lang_code', 1, 'https://ror.org/034kkc914 Didael KTS (Italy)'),
(17164, 'https://ror.org/04nwdyy60', 'fr', 1, 'https://ror.org/04nwdyy60 Fidal'),
(17165, 'https://ror.org/006wb1h58', 'en', 1, 'https://ror.org/006wb1h58 Dystonia Medical Research Foundation'),
(17166, 'https://ror.org/02cfjxd09', 'no_lang_code', 1, 'https://ror.org/02cfjxd09 Fiday Gestion (France)'),
(17167, 'https://ror.org/01148hc54', 'no_lang_code', 1, 'https://ror.org/01148hc54 Envirup (United Kingdom)'),
(17168, 'https://ror.org/04ytq7468', 'no_lang_code', 1, 'https://ror.org/04ytq7468 Exfo Electro-Optical Engineering (Canada)'),
(17169, 'https://ror.org/05ykwy958', 'no_lang_code', 1, 'https://ror.org/05ykwy958 Dyson Technical Ceramics (United Kingdom)'),
(17170, 'https://ror.org/02wjcvj62', 'no_lang_code', 1, 'https://ror.org/02wjcvj62 Dytecna (United Kingdom)'),
(17171, 'https://ror.org/033cp0g08', 'no_lang_code', 1, 'https://ror.org/033cp0g08 Fidelity Systems (United States)'),
(17172, 'https://ror.org/02b3e4g90', 'no_lang_code', 1, 'https://ror.org/02b3e4g90 DZP Technologies (United Kingdom)'),
(17173, 'https://ror.org/03143bq61', 'no_lang_code', 1, 'https://ror.org/03143bq61 ANDalyze (United States)'),
(17174, 'https://ror.org/033gqy043', 'no_lang_code', 1, 'https://ror.org/033gqy043 Fiedler Optoelektronik (Germany) Fiedler optoelectronics'),
(17175, 'https://ror.org/03exwgf66', 'en', 1, 'https://ror.org/03exwgf66 Fife House'),
(17176, 'https://ror.org/0261s3g35', 'en', 1, 'https://ror.org/0261s3g35 Fife Council'),
(17177, 'https://ror.org/012eck451', 'no_lang_code', 1, 'https://ror.org/012eck451 Experian (United Kingdom)'),
(17178, 'https://ror.org/05pnx2m87', 'en', 1, 'https://ror.org/05pnx2m87 Fighting Back Partnership'),
(17179, 'https://ror.org/01h8srv03', 'no_lang_code', 1, 'https://ror.org/01h8srv03 Fiji Systems (United States)'),
(17180, 'https://ror.org/032by2j30', 'it', 1, 'https://ror.org/032by2j30 Fondazione Filarete'),
(17181, 'https://ror.org/05rx7ak81', 'no_lang_code', 1, 'https://ror.org/05rx7ak81 Eos Neuroscience (United States)'),
(17182, 'https://ror.org/04yk5j107', 'no_lang_code', 1, 'https://ror.org/04yk5j107 EOX IT Services (Austria)'),
(17183, 'https://ror.org/03x320790', 'no_lang_code', 1, 'https://ror.org/03x320790 Dieffe (Italy)'),
(17184, 'https://ror.org/045fjnt03', 'no_lang_code', 1, 'https://ror.org/045fjnt03 Eonic Systems (Belgium)'),
(17185, 'https://ror.org/00fjpbt79', 'no_lang_code', 1, 'https://ror.org/00fjpbt79 ePack (United States)'),
(17186, 'https://ror.org/032av0b93', 'no_lang_code', 1, 'https://ror.org/032av0b93 Expert System (Italy)'),
(17187, 'https://ror.org/05m029q63', 'it', 1, 'https://ror.org/05m029q63 Federazione Italiana Lavoratori Commercio Albergo Mensa e Servizi'),
(17188, 'https://ror.org/01qzakp85', 'no_lang_code', 1, 'https://ror.org/01qzakp85 Boart Longyear (United States)'),
(17189, 'https://ror.org/038729s57', 'no_lang_code', 1, 'https://ror.org/038729s57 ERS Steuerungstechnik (Germany)'),
(17190, 'https://ror.org/05gjytt71', 'en', 1, 'https://ror.org/05gjytt71 E-Connection'),
(17191, 'https://ror.org/012rthc43', 'no_lang_code', 1, 'https://ror.org/012rthc43 Explora (Italy)'),
(17192, 'https://ror.org/055ag5z32', 'no_lang_code', 1, 'https://ror.org/055ag5z32 DIERS International (Germany)'),
(17193, 'https://ror.org/03s5wqn16', 'no_lang_code', 1, 'https://ror.org/03s5wqn16 FilmLight (United Kingdom)'),
(17194, 'https://ror.org/041gnf006', 'no_lang_code', 1, 'https://ror.org/041gnf006 E-nema (Germany)'),
(17195, 'https://ror.org/03nygzm95', 'no_lang_code', 1, 'https://ror.org/03nygzm95 E-Semble (Netherlands)'),
(17196, 'https://ror.org/00gfwqa54', 'en', 1, 'https://ror.org/00gfwqa54 E-Seniors'),
(17197, 'https://ror.org/00e4m3f78', 'no_lang_code', 1, 'https://ror.org/00e4m3f78 Hood Laboratories (United States)'),
(17198, 'https://ror.org/03pt2cx46', 'no_lang_code', 1, 'https://ror.org/03pt2cx46 Films of Record'),
(17199, 'https://ror.org/017fxcy86', 'no_lang_code', 1, 'https://ror.org/017fxcy86 EXPORTech (United States)'),
(17200, 'https://ror.org/03x7vv863', 'no_lang_code', 1, 'https://ror.org/03x7vv863 Novocaptis (Greece)'),
(17201, 'https://ror.org/00vfscp04', 'no_lang_code', 1, 'https://ror.org/00vfscp04 OncoPlex Diagnostics (United States)'),
(17202, 'https://ror.org/05byg9k74', 'no_lang_code', 1, 'https://ror.org/05byg9k74 Filtronic (United Kingdom)'),
(17203, 'https://ror.org/00vxnww48', 'no_lang_code', 1, 'https://ror.org/00vxnww48 Exscien (United States)'),
(17204, 'https://ror.org/02b489s27', 'no_lang_code', 1, 'https://ror.org/02b489s27 Hunosa (Spain)'),
(17205, 'https://ror.org/044bdm595', 'no_lang_code', 1, 'https://ror.org/044bdm595 Hephaestus Holdings (United Kingdom)'),
(17206, 'https://ror.org/006ykk006', 'no_lang_code', 1, 'https://ror.org/006ykk006 Fimet (Finland)'),
(17207, 'https://ror.org/05thqfz72', 'no_lang_code', 1, 'https://ror.org/05thqfz72 Ultra Electronics (United Kingdom)'),
(17208, 'https://ror.org/04ca3hj20', 'no_lang_code', 1, 'https://ror.org/04ca3hj20 Haydale (United Kingdom)'),
(17209, 'https://ror.org/0582tp073', 'no_lang_code', 1, 'https://ror.org/0582tp073 Orflo Technologies (United States)'),
(17210, 'https://ror.org/01ne9en42', 'no_lang_code', 1, 'https://ror.org/01ne9en42 Deutsches Institut für Feuerfest und Keramik'),
(17211, 'https://ror.org/038fxe657', 'no_lang_code', 1, 'https://ror.org/038fxe657 Extended Home Living Services'),
(17212, 'https://ror.org/05rw40a45', 'no_lang_code', 1, 'https://ror.org/05rw40a45 Epleblomsten (Norway)'),
(17213, 'https://ror.org/0053v9m13', 'no_lang_code', 1, 'https://ror.org/0053v9m13 PXBioVisioN (Germany)'),
(17214, 'https://ror.org/00czybt24', 'no_lang_code', 1, 'https://ror.org/00czybt24 Ɖvaluation Technologique IngĆ©nierie and Applications (France)'),
(17215, 'https://ror.org/0431y1695', 'no_lang_code', 1, 'https://ror.org/0431y1695 Eppendorf (Belgium)'),
(17216, 'https://ror.org/02jv94t03', 'no_lang_code', 1, 'https://ror.org/02jv94t03 e2e Services (United Kingdom)'),
(17217, 'https://ror.org/03dgqxa26', 'no_lang_code', 1, 'https://ror.org/03dgqxa26 E2S (Belgium)'),
(17218, 'https://ror.org/0334ht072', 'no_lang_code', 1, 'https://ror.org/0334ht072 EyeRx Research (United States)'),
(17219, 'https://ror.org/001nr2c08', 'en', 1, 'https://ror.org/001nr2c08 Eyes of the World Media Group'),
(17220, 'https://ror.org/04gehpa59', 'no_lang_code', 1, 'https://ror.org/04gehpa59 Digipolis (Belgium)'),
(17221, 'https://ror.org/029kfqa89', 'no_lang_code', 1, 'https://ror.org/029kfqa89 Jotne (Norway)'),
(17222, 'https://ror.org/043mrfn25', 'no_lang_code', 1, 'https://ror.org/043mrfn25 Digirad (United States)'),
(17223, 'https://ror.org/029f77f71', 'no_lang_code', 1, 'https://ror.org/029f77f71 Equipment Simulations (United States)'),
(17224, 'https://ror.org/00t3nnr25', 'no_lang_code', 1, 'https://ror.org/00t3nnr25 Finisar (Israel)'),
(17225, 'https://ror.org/04pese132', 'no_lang_code', 1, 'https://ror.org/04pese132 Equipo de Tecnicos en Transporte y Territorio'),
(17226, 'https://ror.org/05es2h531', 'no_lang_code', 1, 'https://ror.org/05es2h531 Eagle Engineering (United States)'),
(17227, 'https://ror.org/00txgjp11', 'en', 1, 'https://ror.org/00txgjp11 Eagle Ridge Institute'),
(17228, 'https://ror.org/01vzz8w74', 'en', 1, 'https://ror.org/01vzz8w74 Finnish Real Estate Federation'),
(17229, 'https://ror.org/02wr4ty93', 'en', 1, 'https://ror.org/02wr4ty93 Zionsville Community High School'),
(17230, 'https://ror.org/05d5d9f59', 'no_lang_code', 1, 'https://ror.org/05d5d9f59 Licentia (Finland)'),
(17231, 'https://ror.org/02fxy5722', 'en', 1, 'https://ror.org/02fxy5722 One Nucleus'),
(17232, 'https://ror.org/023g5hk70', 'no_lang_code', 1, 'https://ror.org/023g5hk70 EaglePicher (Canada)'),
(17233, 'https://ror.org/030b24d60', 'no_lang_code', 1, 'https://ror.org/030b24d60 Erbicol (Switzerland)'),
(17234, 'https://ror.org/04j58pw68', 'no_lang_code', 1, 'https://ror.org/04j58pw68 Eaker Epidemiology Enterprises (United States)'),
(17235, 'https://ror.org/02kq40n08', 'no_lang_code', 1, 'https://ror.org/02kq40n08 Earlens (United States)'),
(17236, 'https://ror.org/02jn6na36', 'no_lang_code', 1, 'https://ror.org/02jn6na36 Finsa (Italy)'),
(17237, 'https://ror.org/01p35xr84', 'no_lang_code', 1, 'https://ror.org/01p35xr84 Fabes Forschungs (Germany)'),
(17238, 'https://ror.org/04ge7a533', 'no_lang_code', 1, 'https://ror.org/04ge7a533 Digital Video (Italy)'),
(17239, 'https://ror.org/03wdd2732', 'no_lang_code', 1, 'https://ror.org/03wdd2732 FIP Industriale (Italy)'),
(17240, 'https://ror.org/01j1bxw34', 'no_lang_code', 1, 'https://ror.org/01j1bxw34 FIRA International (United Kingdom)'),
(17241, 'https://ror.org/049xhbc08', 'no_lang_code', 1, 'https://ror.org/049xhbc08 FACET Innovations (United States)'),
(17242, 'https://ror.org/056yk1794', 'no_lang_code', 1, 'https://ror.org/056yk1794 Fire Safety Design'),
(17243, 'https://ror.org/04tqgg260', 'de', 1, 'https://ror.org/04tqgg260 FH Aachen'),
(17244, 'https://ror.org/022z2ef35', 'en', 1, 'https://ror.org/022z2ef35 Digital Europe'),
(17245, 'https://ror.org/04mavvr54', 'no_lang_code', 1, 'https://ror.org/04mavvr54 Ergo (Greece)'),
(17246, 'https://ror.org/00c9gjj68', 'no_lang_code', 1, 'https://ror.org/00c9gjj68 Ergon Consulting Group (Greece)'),
(17247, 'https://ror.org/02e1wjw63', 'no_lang_code', 1, 'https://ror.org/02e1wjw63 Abcam (United States)'),
(17248, 'https://ror.org/05wpve720', 'no_lang_code', 1, 'https://ror.org/05wpve720 AdCapital (Germany)'),
(17249, 'https://ror.org/01zy7ja20', 'en', 1, 'https://ror.org/01zy7ja20 Earthquake Planning and Protection Organization'),
(17250, 'https://ror.org/014nnvj65', 'en', 1, 'https://ror.org/014nnvj65 TH Kƶln TH Kƶln - University of Applied Sciences'),
(17251, 'https://ror.org/02xy96n81', 'no_lang_code', 1, 'https://ror.org/02xy96n81 Ericsson (Greece)'),
(17252, 'https://ror.org/017g88n73', 'no_lang_code', 1, 'https://ror.org/017g88n73 First Light Diagnostics (United States)'),
(17253, 'https://ror.org/059vymd37', 'de', 1, 'https://ror.org/059vymd37 Hochschule Osnabrück Osnabrück University of Applied Sciences'),
(17254, 'https://ror.org/04gc48f88', 'no_lang_code', 1, 'https://ror.org/04gc48f88 Earthwise Construction (United Kingdom)'),
(17255, 'https://ror.org/02e3hdx05', 'en', 1, 'https://ror.org/02e3hdx05 Hochschule Trier Trier University of Applied Sciences'),
(17256, 'https://ror.org/02xhmts30', 'no_lang_code', 1, 'https://ror.org/02xhmts30 Aerotek (Germany)'),
(17257, 'https://ror.org/05wbpnh19', 'en', 1, 'https://ror.org/05wbpnh19 Fishermen and Scientists Research Society'),
(17258, 'https://ror.org/0387prb75', 'en', 1, 'https://ror.org/0387prb75 FIZ Karlsruhe - Leibniz-Institut für Informationsinfrastruktur FIZ Karlsruhe – Leibniz Institute for Information Infrastructure'),
(17259, 'https://ror.org/045ced850', 'no_lang_code', 1, 'https://ror.org/045ced850 DILAS (Germany)'),
(17260, 'https://ror.org/01zn1kc16', 'de', 1, 'https://ror.org/01zn1kc16 Fachverband Elektronik Design'),
(17261, 'https://ror.org/0596xsc43', 'en', 1, 'https://ror.org/0596xsc43 EMH Group'),
(17262, 'https://ror.org/03hc96946', 'no_lang_code', 1, 'https://ror.org/03hc96946 Facilia (Sweden)'),
(17263, 'https://ror.org/001m53j08', 'en', 1, 'https://ror.org/001m53j08 East Thames Group'),
(17264, 'https://ror.org/048a46z74', 'no_lang_code', 1, 'https://ror.org/048a46z74 Facit Research (Germany)'),
(17265, 'https://ror.org/01tt73103', 'no_lang_code', 1, 'https://ror.org/01tt73103 Erlang Solutions (United Kingdom)'),
(17266, 'https://ror.org/04nt2zc43', 'no_lang_code', 1, 'https://ror.org/04nt2zc43 FIT Biotech (Finland)'),
(17267, 'https://ror.org/045cj2n31', 'no_lang_code', 1, 'https://ror.org/045cj2n31 FiveFocal (United States)'),
(17268, 'https://ror.org/04zatss13', 'no_lang_code', 1, 'https://ror.org/04zatss13 Eastern Analytical (United States)'),
(17269, 'https://ror.org/02nyatx59', 'no_lang_code', 1, 'https://ror.org/02nyatx59 Celanese (Germany)'),
(17270, 'https://ror.org/05mn3rr77', 'en', 1, 'https://ror.org/05mn3rr77 National Cancer Registration Service'),
(17271, 'https://ror.org/04txhk134', 'en', 1, 'https://ror.org/04txhk134 Eastern University'),
(17272, 'https://ror.org/027jm4436', 'en', 1, 'https://ror.org/027jm4436 Institute of Physical Energetics'),
(17273, 'https://ror.org/05vgm9d49', 'no_lang_code', 1, 'https://ror.org/05vgm9d49 FKuR Kunststoff (Germany)'),
(17274, 'https://ror.org/03xdg2f86', 'no_lang_code', 1, 'https://ror.org/03xdg2f86 Flame Spray (Italy)'),
(17275, 'https://ror.org/03k5mg797', 'no_lang_code', 1, 'https://ror.org/03k5mg797 Flanders Color (Belgium)'),
(17276, 'https://ror.org/01at7p410', 'no_lang_code', 1, 'https://ror.org/01at7p410 Ernst Basler + Partner (Switzerland)'),
(17277, 'https://ror.org/010984q05', 'no_lang_code', 1, 'https://ror.org/010984q05 Dioxide Materials (United States)'),
(17278, 'https://ror.org/058d74429', 'no_lang_code', 1, 'https://ror.org/058d74429 Ernst Wittner (Austria)'),
(17279, 'https://ror.org/05cend965', 'en', 1, 'https://ror.org/05cend965 Eurocarers'),
(17280, 'https://ror.org/0213bv924', 'pt', 1, 'https://ror.org/0213bv924 Direcção Regional de Cultura do Alentejo'),
(17281, 'https://ror.org/008bf8b33', 'en', 1, 'https://ror.org/008bf8b33 Flathead High School'),
(17282, 'https://ror.org/013n79s81', 'no_lang_code', 1, 'https://ror.org/013n79s81 Eblana Photonics (Ireland)'),
(17283, 'https://ror.org/04h71df97', 'no_lang_code', 1, 'https://ror.org/04h71df97 Flentrop Orgelbouw (Netherlands)'),
(17284, 'https://ror.org/036178197', 'no_lang_code', 1, 'https://ror.org/036178197 eBOS Technologies (Cyprus)'),
(17285, 'https://ror.org/0235hnd76', 'no_lang_code', 1, 'https://ror.org/0235hnd76 Alpiq (United Kingdom)'),
(17286, 'https://ror.org/0415j9862', 'no_lang_code', 1, 'https://ror.org/0415j9862 Institute for Renewable Energy (Poland)'),
(17287, 'https://ror.org/05pqvzr51', 'no_lang_code', 1, 'https://ror.org/05pqvzr51 FlexTech Systems (United States)'),
(17288, 'https://ror.org/0152arp12', 'en', 1, 'https://ror.org/0152arp12 Flint Community Schools'),
(17289, 'https://ror.org/0393dxb43', 'no_lang_code', 1, 'https://ror.org/0393dxb43 Flisom (Switzerland)'),
(17290, 'https://ror.org/00zv6x249', 'no_lang_code', 1, 'https://ror.org/00zv6x249 ECD Architects'),
(17291, 'https://ror.org/029nw1q67', 'en', 1, 'https://ror.org/029nw1q67 Circle Park'),
(17292, 'https://ror.org/00pfa9y72', 'no_lang_code', 1, 'https://ror.org/00pfa9y72 Ribbon Communications (Israel)'),
(17293, 'https://ror.org/024bp0560', 'en', 1, 'https://ror.org/024bp0560 Florida Alcohol and Drug Abuse Association'),
(17294, 'https://ror.org/04nx63b17', 'fr', 1, 'https://ror.org/04nx63b17 MinistĆØre de l''Ɖconomie et des Finances'),
(17295, 'https://ror.org/01ajshr89', 'en', 1, 'https://ror.org/01ajshr89 Florida Coalition Against Domestic Violence'),
(17296, 'https://ror.org/03dtjkc02', 'no_lang_code', 1, 'https://ror.org/03dtjkc02 Erothitan (Germany)'),
(17297, 'https://ror.org/0182pv508', 'en', 1, 'https://ror.org/0182pv508 Florida Hospital Association'),
(17298, 'https://ror.org/04pt73775', 'en', 1, 'https://ror.org/04pt73775 Executive Office of Governor'),
(17299, 'https://ror.org/00gbzwp97', 'no', 1, 'https://ror.org/00gbzwp97 Direktoratet for forvaltning og IKT'),
(17300, 'https://ror.org/030tp6t18', 'no_lang_code', 1, 'https://ror.org/030tp6t18 Discovery Air (Canada)'),
(17301, 'https://ror.org/02fs2bc65', 'no_lang_code', 1, 'https://ror.org/02fs2bc65 Discovery Laboratories (United States)'),
(17302, 'https://ror.org/05fa80v88', 'it', 1, 'https://ror.org/05fa80v88 Confederazione Nazionale dell''Artigianato e Della Piccola e Media Impresa'),
(17303, 'https://ror.org/05y64p741', 'no_lang_code', 1, 'https://ror.org/05y64p741 MP Biomedicals (United States)'),
(17304, 'https://ror.org/03p76jc78', 'no_lang_code', 1, 'https://ror.org/03p76jc78 ES Technology (United Kingdom)'),
(17305, 'https://ror.org/00fjjzm86', 'no_lang_code', 1, 'https://ror.org/00fjjzm86 Flucon Fluid Control (Germany)'),
(17306, 'https://ror.org/00n9hrm35', 'no_lang_code', 1, 'https://ror.org/00n9hrm35 Metrohm Autolab (Netherlands)'),
(17307, 'https://ror.org/02fwpc710', 'no_lang_code', 1, 'https://ror.org/02fwpc710 Esaote (Netherlands)'),
(17308, 'https://ror.org/035x4a178', 'no_lang_code', 1, 'https://ror.org/035x4a178 Fluential (United States)'),
(17309, 'https://ror.org/047bknx65', 'no_lang_code', 1, 'https://ror.org/047bknx65 Eco-Energy (NI) (United Kingdom)'),
(17310, 'https://ror.org/054x53k79', 'no_lang_code', 1, 'https://ror.org/054x53k79 Fluid Operations (Germany)'),
(17311, 'https://ror.org/0053aqt47', 'no_lang_code', 1, 'https://ror.org/0053aqt47 Fluidhouse (Finland)'),
(17312, 'https://ror.org/027vbvd36', 'no_lang_code', 1, 'https://ror.org/027vbvd36 Esciencia (Spain)'),
(17313, 'https://ror.org/01bag9d55', 'no_lang_code', 1, 'https://ror.org/01bag9d55 Fluigent (France)'),
(17314, 'https://ror.org/0177d4e55', 'no_lang_code', 1, 'https://ror.org/0177d4e55 Marvell (Spain)'),
(17315, 'https://ror.org/013pvbr04', 'no_lang_code', 1, 'https://ror.org/013pvbr04 Fluxim (Switzerland)'),
(17316, 'https://ror.org/05tmezz59', 'pt', 1, 'https://ror.org/05tmezz59 Agrupamento de Escolas de Caldas de Vizela'),
(17317, 'https://ror.org/00y93bb21', 'no_lang_code', 1, 'https://ror.org/00y93bb21 Flyby (Italy)'),
(17318, 'https://ror.org/058wdq771', 'pt', 1, 'https://ror.org/058wdq771 Escola SecundƔria de LoulƩ'),
(17319, 'https://ror.org/00fbzg557', 'no_lang_code', 1, 'https://ror.org/00fbzg557 Flying Bridge Technologies (United States)'),
(17320, 'https://ror.org/053aamg33', 'no_lang_code', 1, 'https://ror.org/053aamg33 Flying-Cam (Belgium)'),
(17321, 'https://ror.org/05bpzr679', 'no_lang_code', 1, 'https://ror.org/05bpzr679 FM Management Consultancy'),
(17322, 'https://ror.org/059fvx214', 'no_lang_code', 1, 'https://ror.org/059fvx214 Mƶssner (Germany)'),
(17323, 'https://ror.org/0048mw156', 'no_lang_code', 1, 'https://ror.org/0048mw156 FM Mattsson (Sweden)'),
(17324, 'https://ror.org/03eypca36', 'no_lang_code', 1, 'https://ror.org/03eypca36 FMC (Norway)'),
(17325, 'https://ror.org/007jkeb78', 'no_lang_code', 1, 'https://ror.org/007jkeb78 FocalCool (United States)'),
(17326, 'https://ror.org/03xznyg79', 'en', 1, 'https://ror.org/03xznyg79 Distance Expert'),
(17327, 'https://ror.org/05rxghr70', 'no_lang_code', 1, 'https://ror.org/05rxghr70 Receptors (United States)'),
(17328, 'https://ror.org/043xrkf48', 'no_lang_code', 1, 'https://ror.org/043xrkf48 Fomento de San SebastiƔn (Spain)'),
(17329, 'https://ror.org/02y8azp93', 'ca', 1, 'https://ror.org/02y8azp93 Foment del Treball Nacional'),
(17330, 'https://ror.org/03kf30874', 'en', 1, 'https://ror.org/03kf30874 District of Columbia Public School Ɖcoles publiques du district de Columbia'),
(17331, 'https://ror.org/02c3k1665', 'no_lang_code', 1, 'https://ror.org/02c3k1665 Fomterv (Hungary)'),
(17332, 'https://ror.org/0138rdd60', 'no_lang_code', 1, 'https://ror.org/0138rdd60 Eni (Belgium)'),
(17333, 'https://ror.org/00gy17c75', 'no_lang_code', 1, 'https://ror.org/00gy17c75 Fon (Spain)'),
(17334, 'https://ror.org/016hwk083', 'no_lang_code', 1, 'https://ror.org/016hwk083 Disy (Germany)'),
(17335, 'https://ror.org/0073dpj33', 'en', 1, 'https://ror.org/0073dpj33 Fond du Lac School District'),
(17336, 'https://ror.org/03vcgp521', 'no_lang_code', 1, 'https://ror.org/03vcgp521 Ripamonti'),
(17337, 'https://ror.org/04y4zad82', 'no_lang_code', 1, 'https://ror.org/04y4zad82 Perma-Fix (United States)'),
(17338, 'https://ror.org/0357b6665', 'fr', 1, 'https://ror.org/0357b6665 Centre d''Etudes des Transports pour la MƩditerranƩe Occidentale'),
(17339, 'https://ror.org/036gzc033', 'no_lang_code', 1, 'https://ror.org/036gzc033 DM-STAT (United States)'),
(17340, 'https://ror.org/05s1j9511', 'no_lang_code', 1, 'https://ror.org/05s1j9511 dMetrics (United States)'),
(17341, 'https://ror.org/03qc7cz08', 'no_lang_code', 1, 'https://ror.org/03qc7cz08 Diversified Maintenance Systems (United States)'),
(17342, 'https://ror.org/05ddxpg43', 'fr', 1, 'https://ror.org/05ddxpg43 Ɖcole Nationale SupĆ©rieure de Chimie, de Biologie et de Physique'),
(17343, 'https://ror.org/01m6mfc08', 'fr', 1, 'https://ror.org/01m6mfc08 Fondation MƩrieux'),
(17344, 'https://ror.org/03vcdbg75', 'no_lang_code', 1, 'https://ror.org/03vcdbg75 ATUM (United States)'),
(17345, 'https://ror.org/00sddvp48', 'no_lang_code', 1, 'https://ror.org/00sddvp48 DNAVision (Belgium)'),
(17346, 'https://ror.org/05hczjf77', 'no_lang_code', 1, 'https://ror.org/05hczjf77 DNAmicroarray (United States)'),
(17347, 'https://ror.org/05nkcfv27', 'fr', 1, 'https://ror.org/05nkcfv27 Fondation Sophia Antipolis'),
(17348, 'https://ror.org/01tqv6s24', 'en', 1, 'https://ror.org/01tqv6s24 Docklands Light Railway'),
(17349, 'https://ror.org/00gnq3g83', 'it', 1, 'https://ror.org/00gnq3g83 Accademia Nazionale di Santa Cecilia National Academy of St Cecilia'),
(17350, 'https://ror.org/001yzen24', 'no_lang_code', 1, 'https://ror.org/001yzen24 Docobo (United Kingdom)'),
(17351, 'https://ror.org/00ed3k275', 'en', 1, 'https://ror.org/00ed3k275 Documentary Educational Resources'),
(17352, 'https://ror.org/03yk73538', 'no_lang_code', 1, 'https://ror.org/03yk73538 Doduco (Germany)'),
(17353, 'https://ror.org/037jdf520', 'no_lang_code', 1, 'https://ror.org/037jdf520 Doimak (Spain)'),
(17354, 'https://ror.org/05c88z534', 'pl', 1, 'https://ror.org/05c88z534 Dolnośląski Park Innowacji i Nauki'),
(17355, 'https://ror.org/03bvw7q76', 'no_lang_code', 1, 'https://ror.org/03bvw7q76 Dolphin Design (France)'),
(17356, 'https://ror.org/054w4h840', 'no_lang_code', 1, 'https://ror.org/054w4h840 Enig Associates (United States)'),
(17357, 'https://ror.org/015dvz544', 'no_lang_code', 1, 'https://ror.org/015dvz544 European Safety Management Group'),
(17358, 'https://ror.org/0522v1289', 'it', 1, 'https://ror.org/0522v1289 Museo Nazionale della Scienza e della Tecnologia Leonardo da Vinci'),
(17359, 'https://ror.org/040y40f79', 'it', 1, 'https://ror.org/040y40f79 Fondazione per Adroterapia Oncologica'),
(17360, 'https://ror.org/04f6c7j28', 'no_lang_code', 1, 'https://ror.org/04f6c7j28 ESP Central (United Kingdom)'),
(17361, 'https://ror.org/02kf1n146', 'no_lang_code', 1, 'https://ror.org/02kf1n146 Poweo (France)'),
(17362, 'https://ror.org/03df4xq04', 'no_lang_code', 1, 'https://ror.org/03df4xq04 Espion (Ireland)'),
(17363, 'https://ror.org/00qq8tm81', 'en', 1, 'https://ror.org/00qq8tm81 Fairmont Senior High School'),
(17364, 'https://ror.org/04hsn8391', 'en', 1, 'https://ror.org/04hsn8391 Fairview Health Services'),
(17365, 'https://ror.org/00m35tp20', 'no_lang_code', 1, 'https://ror.org/00m35tp20 2D Formazione (Italy)'),
(17366, 'https://ror.org/027b8j852', 'no_lang_code', 1, 'https://ror.org/027b8j852 Domca (Spain)'),
(17367, 'https://ror.org/02w8ez808', 'it', 1, 'https://ror.org/02w8ez808 Fondazione Stella Maris'),
(17368, 'https://ror.org/035hs0289', 'en', 1, 'https://ror.org/035hs0289 e-Forum'),
(17369, 'https://ror.org/00xryfx14', 'no_lang_code', 1, 'https://ror.org/00xryfx14 Econet (Spain)'),
(17370, 'https://ror.org/0500x9g47', 'no_lang_code', 1, 'https://ror.org/0500x9g47 Senergy (United Kingdom)'),
(17371, 'https://ror.org/00sghps33', 'no_lang_code', 1, 'https://ror.org/00sghps33 Essen BioScience (United States)'),
(17372, 'https://ror.org/01zbqy906', 'no_lang_code', 1, 'https://ror.org/01zbqy906 Econolyst (United Kingdom)'),
(17373, 'https://ror.org/057n96m12', 'no_lang_code', 1, 'https://ror.org/057n96m12 Zanardi Fonderie (Italy)'),
(17374, 'https://ror.org/05vnht861', 'en', 1, 'https://ror.org/05vnht861 Essex County Council'),
(17375, 'https://ror.org/03qtxy027', 'en', 1, 'https://ror.org/03qtxy027 Fonds voor Wetenschappelijk Onderzoek - Vlaanderen Research Foundation - Flanders'),
(17376, 'https://ror.org/00nexz950', 'no_lang_code', 1, 'https://ror.org/00nexz950 Essrg (Hungary)'),
(17377, 'https://ror.org/02sdz5p32', 'no_lang_code', 1, 'https://ror.org/02sdz5p32 Fontanellas Y Marti (Spain)'),
(17378, 'https://ror.org/00v4pk551', 'no_lang_code', 1, 'https://ror.org/00v4pk551 Ecoplan (Switzerland)'),
(17379, 'https://ror.org/05deyvp19', 'no_lang_code', 1, 'https://ror.org/05deyvp19 Food Machinery EspaƱola (Spain)'),
(17380, 'https://ror.org/01a669d22', 'no_lang_code', 1, 'https://ror.org/01a669d22 Falex Tribology (Belgium)'),
(17381, 'https://ror.org/00bm89f36', 'en', 1, 'https://ror.org/00bm89f36 Food Safety Authority of Ireland ÚdarĆ”s SĆ”bhĆ”ilteachta Bia na hƉireann'),
(17382, 'https://ror.org/048mhm070', 'it', 1, 'https://ror.org/048mhm070 Famiglia Artigiana Fratelli Ruffatti'),
(17383, 'https://ror.org/01rgajx11', 'en', 1, 'https://ror.org/01rgajx11 Families Together in New York State'),
(17384, 'https://ror.org/0093px637', 'pl', 1, 'https://ror.org/0093px637 Fundacja Inkubator'),
(17385, 'https://ror.org/033j79j49', 'en', 1, 'https://ror.org/033j79j49 Family & Children’s Services'),
(17386, 'https://ror.org/010nr8d35', 'en', 1, 'https://ror.org/010nr8d35 Family Cafe'),
(17387, 'https://ror.org/02nf85c88', 'no_lang_code', 1, 'https://ror.org/02nf85c88 Estaleiros Navais de Peniche (Portugal)'),
(17388, 'https://ror.org/05k7amn53', 'no_lang_code', 1, 'https://ror.org/05k7amn53 ESTeam (Sweden)'),
(17389, 'https://ror.org/04d75wd27', 'en', 1, 'https://ror.org/04d75wd27 Estonian Educational and Research Network'),
(17390, 'https://ror.org/05veett18', 'en', 1, 'https://ror.org/05veett18 Technology Partners Foundation'),
(17391, 'https://ror.org/04zpv5q97', 'en', 1, 'https://ror.org/04zpv5q97 Stockholm Environment Institute SƤƤstva Eesti Instituut, Stockholmi Keskkonnainstituudi Tallinna Keskus'),
(17392, 'https://ror.org/01rvyy374', 'en', 1, 'https://ror.org/01rvyy374 Majandus- ja Kommunikatsiooniministeerium Ministry of Economic Affairs and Communications'),
(17393, 'https://ror.org/010wk5k38', 'en', 1, 'https://ror.org/010wk5k38 Foundation for Applied Information Technology in Environment, Agriculture and Global Change'),
(17394, 'https://ror.org/01cn9w853', 'no_lang_code', 1, 'https://ror.org/01cn9w853 FunderMax (Austria)'),
(17395, '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'),
(17396, 'https://ror.org/03s48cw66', 'en', 1, 'https://ror.org/03s48cw66 SBH Behavioral Health'),
(17397, 'https://ror.org/014vt6y07', 'no_lang_code', 1, 'https://ror.org/014vt6y07 Foreca (Finland)'),
(17398, 'https://ror.org/04z7a1k12', 'en', 1, 'https://ror.org/04z7a1k12 Family Support Network'),
(17399, 'https://ror.org/040cyhh47', 'no_lang_code', 1, 'https://ror.org/040cyhh47 Family Works'),
(17400, 'https://ror.org/05kg32t88', 'no_lang_code', 1, 'https://ror.org/05kg32t88 Estanda (Spain)'),
(17401, 'https://ror.org/04vfnb935', 'no_lang_code', 1, 'https://ror.org/04vfnb935 Foreco (Netherlands)'),
(17402, 'https://ror.org/02vm4nz81', 'no_lang_code', 1, 'https://ror.org/02vm4nz81 ECT Oekotoxikologie (Germany)'),
(17403, 'https://ror.org/02qfp2e06', 'no_lang_code', 1, 'https://ror.org/02qfp2e06 Edacentrum'),
(17404, 'https://ror.org/0520ezd47', 'no_lang_code', 1, 'https://ror.org/0520ezd47 Esys (United Kingdom)'),
(17405, 'https://ror.org/01kqydj80', 'es', 1, 'https://ror.org/01kqydj80 Fundación para el Desarrollo de la Función Social de las Comunicaciones'),
(17406, 'https://ror.org/041ad9g51', 'no_lang_code', 1, 'https://ror.org/041ad9g51 EDALab (Italy)'),
(17407, 'https://ror.org/00hsg6w24', 'no_lang_code', 1, 'https://ror.org/00hsg6w24 ET Enterprises (United Kingdom)'),
(17408, 'https://ror.org/05q482v10', 'no_lang_code', 1, 'https://ror.org/05q482v10 Ilunion Consulting (Spain)'),
(17409, 'https://ror.org/01m418p31', 'no_lang_code', 1, 'https://ror.org/01m418p31 Schmolz Bickenbach (Germany)'),
(17410, 'https://ror.org/030bsqk21', 'no_lang_code', 1, 'https://ror.org/030bsqk21 Plant Health Care (United States)'),
(17411, 'https://ror.org/04gk6e387', 'en', 1, 'https://ror.org/04gk6e387 Forest-based Sector Technology Platform'),
(17412, 'https://ror.org/029kpsy61', 'en', 1, 'https://ror.org/029kpsy61 Eden Project'),
(17413, 'https://ror.org/00d8t8t88', 'en', 1, 'https://ror.org/00d8t8t88 ETC International'),
(17414, 'https://ror.org/04xwa2949', 'no_lang_code', 1, 'https://ror.org/04xwa2949 ForestRe (United Kingdom)'),
(17415, 'https://ror.org/004fhx245', 'no_lang_code', 1, 'https://ror.org/004fhx245 Farasis Energy (United States)'),
(17416, 'https://ror.org/05e99em22', 'fi', 1, 'https://ror.org/05e99em22 EtelƤ-Karjalan sosiaali ja terveyspiiri South Karelia Social and Health Care District'),
(17417, 'https://ror.org/03ht7jd59', 'en', 1, 'https://ror.org/03ht7jd59 Edgewood Independent School District'),
(17418, 'https://ror.org/00czndn44', 'no_lang_code', 1, 'https://ror.org/00czndn44 Eaton (United States)'),
(17419, 'https://ror.org/018zhtp04', 'no_lang_code', 1, 'https://ror.org/018zhtp04 Manoir Industries (France)'),
(17420, 'https://ror.org/04ccq0223', 'no_lang_code', 1, 'https://ror.org/04ccq0223 Future Carbon (Germany)'),
(17421, 'https://ror.org/03q5psq50', 'no_lang_code', 1, 'https://ror.org/03q5psq50 EDI Group (United Kingdom)'),
(17422, 'https://ror.org/001gdnj66', 'no_lang_code', 1, 'https://ror.org/001gdnj66 Future Diagnostics (Netherlands)'),
(17423, 'https://ror.org/00dj8tn85', 'no_lang_code', 1, 'https://ror.org/00dj8tn85 Posti Group (Finland)'),
(17424, 'https://ror.org/03v5kxx62', 'en', 1, 'https://ror.org/03v5kxx62 Farmworker Justice'),
(17425, 'https://ror.org/04nvb1488', 'en', 1, 'https://ror.org/04nvb1488 FutureEverything'),
(17426, 'https://ror.org/03ee26z15', 'no_lang_code', 1, 'https://ror.org/03ee26z15 Formatec Technical Ceramics (Netherlands)'),
(17427, 'https://ror.org/033rk2n62', 'no_lang_code', 1, 'https://ror.org/033rk2n62 Etiometry (United States)'),
(17428, 'https://ror.org/01a50ww41', 'no_lang_code', 1, 'https://ror.org/01a50ww41 FVA New Media Research (Italy)'),
(17429, 'https://ror.org/01nehxb52', 'no_lang_code', 1, 'https://ror.org/01nehxb52 Etma (Greece)'),
(17430, 'https://ror.org/05cz9t057', 'no_lang_code', 1, 'https://ror.org/05cz9t057 Edinethics (United Kingdom)'),
(17431, 'https://ror.org/05amva544', 'no_lang_code', 1, 'https://ror.org/05amva544 Fyodor Biotechnologies (United States)'),
(17432, 'https://ror.org/03ekg6244', 'no_lang_code', 1, 'https://ror.org/03ekg6244 Etna Biotech (Italy)'),
(17433, 'https://ror.org/0063bq527', 'no_lang_code', 1, 'https://ror.org/0063bq527 Farran Technology (Ireland)'),
(17434, 'https://ror.org/051w1mx35', 'no_lang_code', 1, 'https://ror.org/051w1mx35 Thales (Portugal)'),
(17435, 'https://ror.org/00m57xb34', 'no_lang_code', 1, 'https://ror.org/00m57xb34 G24 Power (United Kingdom)'),
(17436, 'https://ror.org/03b01rf26', 'it', 1, 'https://ror.org/03b01rf26 Formedil'),
(17437, 'https://ror.org/03g4gca53', 'en', 1, 'https://ror.org/03g4gca53 Florida SouthWestern State College'),
(17438, 'https://ror.org/011e1gw30', 'no_lang_code', 1, 'https://ror.org/011e1gw30 Forming Technologies (Canada)'),
(17439, 'https://ror.org/04ywd9355', 'en', 1, 'https://ror.org/04ywd9355 EDItEUR'),
(17440, 'https://ror.org/03mfabb88', 'no_lang_code', 1, 'https://ror.org/03mfabb88 FormTech (Germany)'),
(17441, 'https://ror.org/01ejvy845', 'no_lang_code', 1, 'https://ror.org/01ejvy845 Edna Pasher Ph.D & Associates (Israel)'),
(17442, 'https://ror.org/05jqsyj76', 'en', 1, 'https://ror.org/05jqsyj76 German Games Industry Association'),
(17443, 'https://ror.org/04kbxxk13', 'en', 1, 'https://ror.org/04kbxxk13 Research Centre for Applied System Safety and Industrial Medicine'),
(17444, 'https://ror.org/010f6he14', 'no_lang_code', 1, 'https://ror.org/010f6he14 Techno-Membranes (France)'),
(17445, 'https://ror.org/032303h97', 'no_lang_code', 1, 'https://ror.org/032303h97 Geographic Information Management (Belgium)'),
(17446, 'https://ror.org/02by9nb62', 'en', 1, 'https://ror.org/02by9nb62 Diocese of Brooklyn'),
(17447, 'https://ror.org/038srqh25', 'fr', 1, 'https://ror.org/038srqh25 Ɖtudes MĆ©tallurgiques Traitements Thermiques'),
(17448, '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'),
(17449, 'https://ror.org/01pe3b474', 'no_lang_code', 1, 'https://ror.org/01pe3b474 Global Maritime Services (United Kingdom)'),
(17450, 'https://ror.org/014743444', 'de', 1, 'https://ror.org/014743444 Forschungsinstitut für Wärmeschutz München'),
(17451, 'https://ror.org/042zjqf83', 'en', 1, 'https://ror.org/042zjqf83 Hohenstein Institute'),
(17452, 'https://ror.org/03m6f8x93', 'no_lang_code', 1, 'https://ror.org/03m6f8x93 GTD System & Software Engineering (Spain)'),
(17453, 'https://ror.org/015x9tq79', 'de', 1, 'https://ror.org/015x9tq79 Forschungsinstitut Technologie und Behinderung Research Institute Technology and Disability'),
(17454, 'https://ror.org/03682w532', 'no_lang_code', 1, 'https://ror.org/03682w532 EUnited (Belgium)'),
(17455, 'https://ror.org/03t6r2q91', 'no_lang_code', 1, 'https://ror.org/03t6r2q91 Ec3 NetWorks (Austria)'),
(17456, 'https://ror.org/05kc20304', 'no_lang_code', 1, 'https://ror.org/05kc20304 Netsmart Technologies (United States)'),
(17457, 'https://ror.org/03jg2ja29', 'de', 1, 'https://ror.org/03jg2ja29 Forschungszentrum für Kältetechnik und Wärmepumpen'),
(17458, 'https://ror.org/01pv48e96', 'en', 1, 'https://ror.org/01pv48e96 Forschungszentrum für Medizintechnik und Biotechnologie Research Centre of Medical Technology and Biotechnology'),
(17459, 'https://ror.org/0039w6753', 'no_lang_code', 1, 'https://ror.org/0039w6753 Etas (Germany)'),
(17460, 'https://ror.org/010y19q47', 'en', 1, 'https://ror.org/010y19q47 Earth Cryosphere Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ криосферы Земли Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(17461, 'https://ror.org/03jtz4s80', 'no_lang_code', 1, 'https://ror.org/03jtz4s80 Microsoft (Norway)'),
(17462, 'https://ror.org/01ke24198', 'no_lang_code', 1, 'https://ror.org/01ke24198 EUrelations (Switzerland)'),
(17463, 'https://ror.org/03nw55154', 'no_lang_code', 1, 'https://ror.org/03nw55154 Fastcom Technology (Switzerland)'),
(17464, 'https://ror.org/00h4bkt10', 'no_lang_code', 1, 'https://ror.org/00h4bkt10 GALAB Laboratories (Germany)'),
(17465, 'https://ror.org/031evws22', 'no_lang_code', 1, 'https://ror.org/031evws22 Galaxy Biotech (United States)'),
(17466, 'https://ror.org/02qbjfj51', 'no_lang_code', 1, 'https://ror.org/02qbjfj51 Galdos Systems (Canada)'),
(17467, 'https://ror.org/053n8rm70', 'en', 1, 'https://ror.org/053n8rm70 European Patients Forum'),
(17468, 'https://ror.org/00e45j822', 'no_lang_code', 1, 'https://ror.org/00e45j822 Eduworks (United States)'),
(17469, 'https://ror.org/01nef6p29', 'no_lang_code', 1, 'https://ror.org/01nef6p29 Gale & Snowden Architects (United Kingdom)'),
(17470, 'https://ror.org/00yr71497', 'de', 1, 'https://ror.org/00yr71497 Institut für regionale Studien in Europa'),
(17471, 'https://ror.org/03f9kek24', 'no_lang_code', 1, 'https://ror.org/03f9kek24 Fatman (Finland)'),
(17472, 'https://ror.org/05k52qr71', 'no_lang_code', 1, 'https://ror.org/05k52qr71 Euroitalia (Italy)'),
(17473, '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'),
(17474, 'https://ror.org/041d53j42', 'en', 1, 'https://ror.org/041d53j42 Eesti Rahvusraamatukogu National Library of Estonia ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń библиотека Эстонии'),
(17475, 'https://ror.org/03kg1jt28', 'en', 1, 'https://ror.org/03kg1jt28 European Research Institute on Cooperative and Social Enterprise'),
(17476, 'https://ror.org/04syjst69', 'no_lang_code', 1, 'https://ror.org/04syjst69 GALLOP Corporation (United States)'),
(17477, 'https://ror.org/02dmsrt53', 'en', 1, 'https://ror.org/02dmsrt53 Eesti-Rootsi Vaimse Tervise ja Suitsidoloogia Instituut Estonian-Swedish Mental Health and Suicidology Institute'),
(17478, 'https://ror.org/039pwme76', 'no_lang_code', 1, 'https://ror.org/039pwme76 Viasat (United States)'),
(17479, 'https://ror.org/03dq1ad60', 'no_lang_code', 1, 'https://ror.org/03dq1ad60 Galorath (United Kingdom)'),
(17480, 'https://ror.org/004zaxy19', 'no_lang_code', 1, 'https://ror.org/004zaxy19 Faurecia (France)'),
(17481, 'https://ror.org/01p7pw236', 'no_lang_code', 1, 'https://ror.org/01p7pw236 Gamax (Hungary)'),
(17482, 'https://ror.org/04d3zk673', 'no_lang_code', 1, 'https://ror.org/04d3zk673 Faust & Backhaus Environmental Consulting'),
(17483, 'https://ror.org/00svj0p64', 'no_lang_code', 1, 'https://ror.org/00svj0p64 Eurix (Italy)'),
(17484, 'https://ror.org/00rqqd590', 'no_lang_code', 1, 'https://ror.org/00rqqd590 Efficient Innovation (France)'),
(17485, 'https://ror.org/00agrnm56', 'no_lang_code', 1, 'https://ror.org/00agrnm56 SKF (Italy)'),
(17486, 'https://ror.org/004bhtn60', 'no_lang_code', 1, 'https://ror.org/004bhtn60 Eftas Remote Sensing Technology Transfer (Germany)'),
(17487, 'https://ror.org/04qs86835', 'no_lang_code', 1, 'https://ror.org/04qs86835 Euro Projects (United Kingdom)'),
(17488, 'https://ror.org/05peac723', 'no_lang_code', 1, 'https://ror.org/05peac723 Gammastamp (Italy)'),
(17489, 'https://ror.org/00ad1q772', 'no_lang_code', 1, 'https://ror.org/00ad1q772 Eurodecision (France)'),
(17490, 'https://ror.org/04d0tnm02', 'no_lang_code', 1, 'https://ror.org/04d0tnm02 Euro Heat Pipes (Belgium)'),
(17491, 'https://ror.org/021zktr97', 'no_lang_code', 1, 'https://ror.org/021zktr97 Dinex (Finland)'),
(17492, 'https://ror.org/02f0m7778', 'no_lang_code', 1, 'https://ror.org/02f0m7778 Fomento de Construcciones y Contratas (Spain)'),
(17493, 'https://ror.org/051p1yx12', 'no_lang_code', 1, 'https://ror.org/051p1yx12 Egetaepper (Denmark)'),
(17494, 'https://ror.org/02s6qaw64', 'no_lang_code', 1, 'https://ror.org/02s6qaw64 Egnatia Odos (Greece)'),
(17495, 'https://ror.org/056z2mp63', 'fr', 1, 'https://ror.org/056z2mp63 Euro Inox'),
(17496, 'https://ror.org/04638h934', 'no_lang_code', 1, 'https://ror.org/04638h934 FCT Systeme (Germany)'),
(17497, 'https://ror.org/04dree482', 'en', 1, 'https://ror.org/04dree482 Euro Inter'),
(17498, 'https://ror.org/02ndzwq27', 'en', 1, 'https://ror.org/02ndzwq27 Foundation for Innovation and Technology Transfer'),
(17499, 'https://ror.org/0591zqj11', 'no_lang_code', 1, 'https://ror.org/0591zqj11 Gas Sensing Solutions (United Kingdom)'),
(17500, 'https://ror.org/05fea9w83', 'de', 1, 'https://ror.org/05fea9w83 Gas- und WƤrme-Institut Essen'),
(17501, 'https://ror.org/03t95vv46', 'no_lang_code', 1, 'https://ror.org/03t95vv46 Gate Fuels (United States)'),
(17502, 'https://ror.org/057w1af56', 'en', 1, 'https://ror.org/057w1af56 Gateway Community Services'),
(17503, 'https://ror.org/0176btp32', 'no_lang_code', 1, 'https://ror.org/0176btp32 Tribal Group'),
(17504, 'https://ror.org/02tzm9s47', 'en', 1, 'https://ror.org/02tzm9s47 Foundation for Research on Sexually Transmitted Diseases'),
(17505, 'https://ror.org/03pmf2g70', 'no_lang_code', 1, 'https://ror.org/03pmf2g70 Fdt Depuratori d'' Acqua (Italy)'),
(17506, 'https://ror.org/057x3a607', 'en', 1, 'https://ror.org/057x3a607 Foundation for Science Technology and Civilisation'),
(17507, 'https://ror.org/0033e0z76', 'no_lang_code', 1, 'https://ror.org/0033e0z76 Eidos (Italy)'),
(17508, 'https://ror.org/044nrx235', 'en', 1, 'https://ror.org/044nrx235 Gay-Straight Alliance Network'),
(17509, 'https://ror.org/05kmn9e50', 'en', 1, 'https://ror.org/05kmn9e50 Greater Bridgeport Area Prevention Program');
INSERT INTO `rors` VALUES
(17510, 'https://ror.org/054ckmy78', 'no_lang_code', 1, 'https://ror.org/054ckmy78 Cap Eiger (Spain)'),
(17511, 'https://ror.org/023dbr455', 'no_lang_code', 1, 'https://ror.org/023dbr455 Eidon (Italy)'),
(17512, 'https://ror.org/02v6nd536', 'en', 1, 'https://ror.org/02v6nd536 Federal Ministry of Health'),
(17513, 'https://ror.org/03n0ge846', 'no_lang_code', 1, 'https://ror.org/03n0ge846 Eight19 (United Kingdom)'),
(17514, 'https://ror.org/02bg76z40', 'no_lang_code', 1, 'https://ror.org/02bg76z40 Eikos (United States)'),
(17515, 'https://ror.org/043m8qc33', 'no_lang_code', 1, 'https://ror.org/043m8qc33 European Institute of Printed Circuits'),
(17516, 'https://ror.org/023kawg24', 'no_lang_code', 1, 'https://ror.org/023kawg24 Federal Mogul (France)'),
(17517, 'https://ror.org/015aet155', 'no_lang_code', 1, 'https://ror.org/015aet155 Euromedica'),
(17518, 'https://ror.org/03c8hnh70', 'en', 1, 'https://ror.org/03c8hnh70 German Breast group'),
(17519, 'https://ror.org/04kcn2w48', 'no_lang_code', 1, 'https://ror.org/04kcn2w48 Eisenmann (Germany)'),
(17520, 'https://ror.org/004hxvm93', 'no_lang_code', 1, 'https://ror.org/004hxvm93 Fractal Systems (United States)'),
(17521, 'https://ror.org/046a8r834', 'no_lang_code', 1, 'https://ror.org/046a8r834 Siamab Therapeutics (United States)'),
(17522, 'https://ror.org/05sy37k83', 'no_lang_code', 1, 'https://ror.org/05sy37k83 Eurofins (United States)'),
(17523, 'https://ror.org/047b7n641', 'no_lang_code', 1, 'https://ror.org/047b7n641 Gilardoni Vittorio (Italy)'),
(17524, 'https://ror.org/046etfw78', 'no_lang_code', 1, 'https://ror.org/046etfw78 Gilden Photonics (United Kingdom)'),
(17525, 'https://ror.org/00z2thw25', 'no_lang_code', 1, 'https://ror.org/00z2thw25 Ekspla (Lithuania)'),
(17526, 'https://ror.org/00sprgc32', 'no_lang_code', 1, 'https://ror.org/00sprgc32 Ekspobalta (Lithuania)'),
(17527, 'https://ror.org/02w7v5077', 'en', 1, 'https://ror.org/02w7v5077 El Centro Elementary School District'),
(17528, 'https://ror.org/00e1c8t20', 'en', 1, 'https://ror.org/00e1c8t20 EuroGeoSurveys'),
(17529, 'https://ror.org/048t7p270', 'fr', 1, 'https://ror.org/048t7p270 GDG Environnement'),
(17530, 'https://ror.org/025120d02', 'en', 1, 'https://ror.org/025120d02 European Ground Penetrating Radar Association'),
(17531, 'https://ror.org/02pw9b361', 'no_lang_code', 1, 'https://ror.org/02pw9b361 Francisco MuƱoz Irles (Spain)'),
(17532, 'https://ror.org/05qq9j971', 'no_lang_code', 1, 'https://ror.org/05qq9j971 Giotto Biotech (Italy)'),
(17533, 'https://ror.org/01d84q841', 'no_lang_code', 1, 'https://ror.org/01d84q841 Eurohelp Consulting'),
(17534, 'https://ror.org/01f6y4z59', 'en', 1, 'https://ror.org/01f6y4z59 Benjamin Franklin Institute of Technology'),
(17535, 'https://ror.org/03e1jqq60', 'en', 1, 'https://ror.org/03e1jqq60 Franklin Pierce University'),
(17536, 'https://ror.org/01bwmvz52', 'no_lang_code', 1, 'https://ror.org/01bwmvz52 Frantic Films (Canada)'),
(17537, 'https://ror.org/00matwt90', 'no_lang_code', 1, 'https://ror.org/00matwt90 Giraf PM (Germany)'),
(17538, 'https://ror.org/00p8rk339', 'no_lang_code', 1, 'https://ror.org/00p8rk339 Euroinks (Italy)'),
(17539, 'https://ror.org/054sw3365', 'en', 1, 'https://ror.org/054sw3365 GIS - Transfer Center Foundation'),
(17540, 'https://ror.org/05gv0a532', 'no_lang_code', 1, 'https://ror.org/05gv0a532 Fraport (Germany)'),
(17541, 'https://ror.org/02j3h8a82', 'no_lang_code', 1, 'https://ror.org/02j3h8a82 El Corte InglƩs (Portugal)'),
(17542, 'https://ror.org/04za13042', 'no_lang_code', 1, 'https://ror.org/04za13042 GL Chemtec International (Canada)'),
(17543, 'https://ror.org/03dyemd88', 'en', 1, 'https://ror.org/03dyemd88 Nunez Community College'),
(17544, 'https://ror.org/05hp30b06', 'en', 1, 'https://ror.org/05hp30b06 Exploration Place Museum and Science Centre'),
(17545, 'https://ror.org/05ghq7b13', 'no_lang_code', 1, 'https://ror.org/05ghq7b13 Vergnano (Italy)'),
(17546, 'https://ror.org/02c684e48', 'no_lang_code', 1, 'https://ror.org/02c684e48 Elbit Systems (Israel)'),
(17547, 'https://ror.org/02378t231', 'en', 1, 'https://ror.org/02378t231 Glamorgan-Gwent Archaeological Trust'),
(17548, 'https://ror.org/05fezbd26', 'no_lang_code', 1, 'https://ror.org/05fezbd26 Elcriton (United States)'),
(17549, 'https://ror.org/025xcha17', 'en', 1, 'https://ror.org/025xcha17 Glasgow City Council'),
(17550, 'https://ror.org/059vksz24', 'en', 1, 'https://ror.org/059vksz24 Glass Technology Services'),
(17551, 'https://ror.org/00m76dx40', 'no_lang_code', 1, 'https://ror.org/00m76dx40 Gliamed (United States)'),
(17552, 'https://ror.org/031mjy523', 'no_lang_code', 1, 'https://ror.org/031mjy523 Europa Media (Hungary)'),
(17553, 'https://ror.org/029pbd337', 'en', 1, 'https://ror.org/029pbd337 EuropaBio'),
(17554, 'https://ror.org/02np3th21', 'en', 1, 'https://ror.org/02np3th21 Europace'),
(17555, 'https://ror.org/04fbd2g40', 'no_lang_code', 1, 'https://ror.org/04fbd2g40 BioNTech (Germany)'),
(17556, 'https://ror.org/05yq10v05', 'en', 1, 'https://ror.org/05yq10v05 Global Alliance of Mental Illness Advocacy Networks-Europe'),
(17557, 'https://ror.org/00c9qbz52', 'en', 1, 'https://ror.org/00c9qbz52 European Foundation for Clinical Nanomedicine'),
(17558, 'https://ror.org/00xy4nn21', 'no_lang_code', 1, 'https://ror.org/00xy4nn21 FRE Composites (Canada)'),
(17559, 'https://ror.org/006nzxy18', 'no_lang_code', 1, 'https://ror.org/006nzxy18 Senso (Spain)'),
(17560, 'https://ror.org/01c4p0b96', 'no_lang_code', 1, 'https://ror.org/01c4p0b96 Global Digital Technologies (Greece)'),
(17561, 'https://ror.org/01kq87685', 'no_lang_code', 1, 'https://ror.org/01kq87685 Electricidade dos AƧores (Portugal)'),
(17562, 'https://ror.org/024awmw52', 'no_lang_code', 1, 'https://ror.org/024awmw52 GECO (Portugal)'),
(17563, 'https://ror.org/05hq14k73', 'en', 1, 'https://ror.org/05hq14k73 Advanced Lead Acid Battery Consortium'),
(17564, 'https://ror.org/0098vp187', 'en', 1, 'https://ror.org/0098vp187 Global Health Systems Solutions'),
(17565, 'https://ror.org/056vj7p55', 'no_lang_code', 1, 'https://ror.org/056vj7p55 ElectroCell (Sweden)'),
(17566, 'https://ror.org/0403wzz51', 'en', 1, 'https://ror.org/0403wzz51 European Aquaculture Technology and Innovation Platform'),
(17567, 'https://ror.org/04hv45e07', 'no_lang_code', 1, 'https://ror.org/04hv45e07 Gedex (Canada)'),
(17568, 'https://ror.org/03ztvfr23', 'no_lang_code', 1, 'https://ror.org/03ztvfr23 Global Inkjet Systems (United Kingdom)'),
(17569, 'https://ror.org/05xxwq927', 'en', 1, 'https://ror.org/05xxwq927 European Blind Union'),
(17570, 'https://ror.org/01msce522', 'en', 1, 'https://ror.org/01msce522 Contractor UK'),
(17571, 'https://ror.org/02395mz47', 'no_lang_code', 1, 'https://ror.org/02395mz47 GlobalSign (Belgium)'),
(17572, 'https://ror.org/04je8vh10', 'no_lang_code', 1, 'https://ror.org/04je8vh10 DryScrub (United States)'),
(17573, 'https://ror.org/0286c0965', 'en', 1, 'https://ror.org/0286c0965 LOBA - Customer Experience Design'),
(17574, 'https://ror.org/028ccnc13', 'no_lang_code', 1, 'https://ror.org/028ccnc13 Geltz Umwelt-Technologie (Germany)'),
(17575, 'https://ror.org/0499vqt91', 'no_lang_code', 1, 'https://ror.org/0499vqt91 Globe Water (Sweden)'),
(17576, 'https://ror.org/0498ppz55', 'no_lang_code', 1, 'https://ror.org/0498ppz55 Gel-Del Technologies (United States)'),
(17577, 'https://ror.org/05cxce809', 'no_lang_code', 1, 'https://ror.org/05cxce809 EcologicTech (United States)'),
(17578, 'https://ror.org/043cevr52', 'no_lang_code', 1, 'https://ror.org/043cevr52 Gem Pharmaceuticals (United States)'),
(17579, 'https://ror.org/01b5g7e71', 'en', 1, 'https://ror.org/01b5g7e71 SAFE consortium'),
(17580, 'https://ror.org/030rzq778', 'en', 1, 'https://ror.org/030rzq778 Fresh Pond Research Institute'),
(17581, 'https://ror.org/006hgn665', 'no_lang_code', 1, 'https://ror.org/006hgn665 Glotech (United States)'),
(17582, 'https://ror.org/0108xkp59', 'no_lang_code', 1, 'https://ror.org/0108xkp59 Gesellschaft für Mikroelektronikanwendung Chemnitz (Germany)'),
(17583, 'https://ror.org/0390pfr19', 'en', 1, 'https://ror.org/0390pfr19 European Association for the Study of Obesity'),
(17584, 'https://ror.org/00ja9zg03', 'de', 1, 'https://ror.org/00ja9zg03 Gematik Gesellschaft für Telematikanwendungen der Gesundheitskarte'),
(17585, 'https://ror.org/01xezpj37', 'en', 1, 'https://ror.org/01xezpj37 European Association of Development Agencies'),
(17586, 'https://ror.org/01atpvt41', 'no_lang_code', 1, 'https://ror.org/01atpvt41 Freshseal Limited (United Kingdom)'),
(17587, 'https://ror.org/03v1rmf39', 'no_lang_code', 1, 'https://ror.org/03v1rmf39 Electron Energy Corporation (United States)'),
(17588, 'https://ror.org/036ay9k05', 'en', 1, 'https://ror.org/036ay9k05 Fresno City College'),
(17589, 'https://ror.org/028a1kb39', 'nl', 1, 'https://ror.org/028a1kb39 Gemeente Helmond'),
(17590, 'https://ror.org/001te2382', 'no_lang_code', 1, 'https://ror.org/001te2382 Electronic Arts (United Kingdom)'),
(17591, 'https://ror.org/04q4pzv93', 'no_lang_code', 1, 'https://ror.org/04q4pzv93 Glottal Enterprises (United States)'),
(17592, 'https://ror.org/01g986079', 'no_lang_code', 1, 'https://ror.org/01g986079 Fresti (Portugal)'),
(17593, 'https://ror.org/051xf7e84', 'en', 1, 'https://ror.org/051xf7e84 Gloucestershire County Council'),
(17594, 'https://ror.org/04mw34986', 'en', 1, 'https://ror.org/04mw34986 Gloucestershire Hospitals NHS Foundation Trust'),
(17595, 'https://ror.org/05ecnxy68', 'no_lang_code', 1, 'https://ror.org/05ecnxy68 Electronic Systems Design (Malta)'),
(17596, 'https://ror.org/01cy78b58', 'en', 1, 'https://ror.org/01cy78b58 European Business Register'),
(17597, 'https://ror.org/031fm6b66', 'no_lang_code', 1, 'https://ror.org/031fm6b66 GlycoMar (United Kingdom)'),
(17598, 'https://ror.org/05ccmc339', 'no_lang_code', 1, 'https://ror.org/05ccmc339 Etra (Spain)'),
(17599, 'https://ror.org/03vyrpd61', 'no_lang_code', 1, 'https://ror.org/03vyrpd61 GFI InformƔtica (Spain)'),
(17600, 'https://ror.org/042fpk261', 'no_lang_code', 1, 'https://ror.org/042fpk261 Freudenberg (Germany)'),
(17601, 'https://ror.org/031xnh898', 'no_lang_code', 1, 'https://ror.org/031xnh898 Glycosyn (United States)'),
(17602, 'https://ror.org/031x5zp43', 'en', 1, 'https://ror.org/031x5zp43 European Centre for Knowledge and Technology Transfer'),
(17603, 'https://ror.org/01yhxf067', 'no_lang_code', 1, 'https://ror.org/01yhxf067 Kaiam Corporation (United States)'),
(17604, 'https://ror.org/015w14j53', 'no_lang_code', 1, 'https://ror.org/015w14j53 Gneuss (Germany)'),
(17605, 'https://ror.org/04wg1q828', 'en', 1, 'https://ror.org/04wg1q828 Goalistics'),
(17606, 'https://ror.org/05p0z2z51', 'en', 1, 'https://ror.org/05p0z2z51 Goddard College'),
(17607, 'https://ror.org/01k8bzw08', 'no_lang_code', 1, 'https://ror.org/01k8bzw08 Genalyte (United States)'),
(17608, 'https://ror.org/03f5avr03', 'en', 1, 'https://ror.org/03f5avr03 Electrotechnical Institute'),
(17609, 'https://ror.org/047t0gj04', 'en', 1, 'https://ror.org/047t0gj04 Friendship College'),
(17610, 'https://ror.org/059s01p87', 'no_lang_code', 1, 'https://ror.org/059s01p87 AFRY (United Kingdom)'),
(17611, 'https://ror.org/01zjyec98', 'no_lang_code', 1, 'https://ror.org/01zjyec98 goHDR (United Kingdom)'),
(17612, 'https://ror.org/05c56kx15', 'no_lang_code', 1, 'https://ror.org/05c56kx15 Fronius (Austria)'),
(17613, 'https://ror.org/00zk89346', 'no_lang_code', 1, 'https://ror.org/00zk89346 Biolinq (United States)'),
(17614, 'https://ror.org/029djx285', 'no_lang_code', 1, 'https://ror.org/029djx285 Front Edge Technology (United States)'),
(17615, 'https://ror.org/015reqs57', 'no_lang_code', 1, 'https://ror.org/015reqs57 Goknow (United States)'),
(17616, 'https://ror.org/032qg9c61', 'en', 1, 'https://ror.org/032qg9c61 European Community Shipowners'' Associations'),
(17617, 'https://ror.org/02e97q397', 'no_lang_code', 1, 'https://ror.org/02e97q397 Gƶkser Makina (Turkey)'),
(17618, 'https://ror.org/01ren5s60', 'no_lang_code', 1, 'https://ror.org/01ren5s60 Gold Biotechnology (United States)'),
(17619, 'https://ror.org/03z7rky51', 'no_lang_code', 1, 'https://ror.org/03z7rky51 CEI-Bois'),
(17620, 'https://ror.org/01mscn238', 'no_lang_code', 1, 'https://ror.org/01mscn238 GeneCopoeia (United States)'),
(17621, 'https://ror.org/03tb49961', 'no_lang_code', 1, 'https://ror.org/03tb49961 Elektrobit (Finland)'),
(17622, 'https://ror.org/04b6m8j66', 'no_lang_code', 1, 'https://ror.org/04b6m8j66 Goodman Research Group (United States)'),
(17623, 'https://ror.org/01fsr6x28', 'no_lang_code', 1, 'https://ror.org/01fsr6x28 Frutarom (United Kingdom)'),
(17624, 'https://ror.org/03jwfrf17', 'en', 1, 'https://ror.org/03jwfrf17 European Convention for Constructional Steelwork'),
(17625, 'https://ror.org/028mx4j81', 'en', 1, 'https://ror.org/028mx4j81 Ministry of Finance ΄πουργείο ĪŸĪ¹ĪŗĪæĪ½ĪæĪ¼Ī¹ĪŗĻŽĪ½ ΕλλάΓας'),
(17626, 'https://ror.org/00d7nha28', 'en', 1, 'https://ror.org/00d7nha28 European Council for Construction Research, Development and Innovation'),
(17627, 'https://ror.org/00frsr784', 'en', 1, 'https://ror.org/00frsr784 European Council of Applied Sciences and Engineering'),
(17628, 'https://ror.org/03w80jr87', 'no_lang_code', 1, 'https://ror.org/03w80jr87 Ecosil Technologies (United States)'),
(17629, 'https://ror.org/047cnmy82', 'no_lang_code', 1, 'https://ror.org/047cnmy82 3M (Germany)'),
(17630, 'https://ror.org/02tarpq30', 'no_lang_code', 1, 'https://ror.org/02tarpq30 General Electric (Germany)'),
(17631, 'https://ror.org/02wena850', 'en', 1, 'https://ror.org/02wena850 Forschungsinstitut für Telekommunikation Research Institute for Telecommunication Cooperation'),
(17632, 'https://ror.org/05v8rqa59', 'no_lang_code', 1, 'https://ror.org/05v8rqa59 FTL Systems (United Kingdom)'),
(17633, 'https://ror.org/04w2a0822', 'no_lang_code', 1, 'https://ror.org/04w2a0822 Element Six (Ireland)'),
(17634, 'https://ror.org/054gder17', 'en', 1, 'https://ror.org/054gder17 Elephant Thoughts'),
(17635, 'https://ror.org/04qf21777', 'no_lang_code', 1, 'https://ror.org/04qf21777 Fuchs (United Kingdom)'),
(17636, 'https://ror.org/0295epx19', 'no_lang_code', 1, 'https://ror.org/0295epx19 Fuchs (Germany)'),
(17637, 'https://ror.org/02r8n1b71', 'no_lang_code', 1, 'https://ror.org/02r8n1b71 General Innovations and Goods (United States)'),
(17638, 'https://ror.org/01zqmjs13', 'no_lang_code', 1, 'https://ror.org/01zqmjs13 Gordon Murray Design (United Kingdom)'),
(17639, 'https://ror.org/02jfqby89', 'en', 1, 'https://ror.org/02jfqby89 European Disability Forum'),
(17640, 'https://ror.org/016x3qj75', 'no_lang_code', 1, 'https://ror.org/016x3qj75 Nielsen (United States)'),
(17641, 'https://ror.org/058fftp70', 'no_lang_code', 1, 'https://ror.org/058fftp70 General Marble (Greece)'),
(17642, 'https://ror.org/04bq7yh11', 'no_lang_code', 1, 'https://ror.org/04bq7yh11 Fujifilm (United Kingdom)'),
(17643, 'https://ror.org/000tz2r96', 'en', 1, 'https://ror.org/000tz2r96 European Distributed Energy Resources Laboratories'),
(17644, 'https://ror.org/05b6fta51', 'no_lang_code', 1, 'https://ror.org/05b6fta51 Fujifilm (Netherlands)'),
(17645, 'https://ror.org/02vhrn167', 'en', 1, 'https://ror.org/02vhrn167 European Distribution System Operators for Smart Grids'),
(17646, 'https://ror.org/05q6k4747', 'no_lang_code', 1, 'https://ror.org/05q6k4747 Fullwell Mill (United Kingdom)'),
(17647, 'https://ror.org/037dhrw12', 'no_lang_code', 1, 'https://ror.org/037dhrw12 Fully Distributed Systems (United Kingdom)'),
(17648, 'https://ror.org/056rxwh87', 'no_lang_code', 1, 'https://ror.org/056rxwh87 General Paints (Ireland)'),
(17649, 'https://ror.org/006jrk197', 'no_lang_code', 1, 'https://ror.org/006jrk197 Goss Springs (United Kingdom)'),
(17650, 'https://ror.org/053y7vn39', 'no_lang_code', 1, 'https://ror.org/053y7vn39 European Dynamics (Greece)'),
(17651, 'https://ror.org/047atj319', 'no_lang_code', 1, 'https://ror.org/047atj319 Functional Technologies (United Kingdom)'),
(17652, 'https://ror.org/05q16h268', 'no_lang_code', 1, 'https://ror.org/05q16h268 Total (United Kingdom)'),
(17653, 'https://ror.org/039z65d40', 'en', 1, 'https://ror.org/039z65d40 European Welding Federation'),
(17654, 'https://ror.org/03tz7dc68', 'no_lang_code', 1, 'https://ror.org/03tz7dc68 Total (Italy)'),
(17655, 'https://ror.org/03fej8604', 'no_lang_code', 1, 'https://ror.org/03fej8604 Elforlight (United Kingdom)'),
(17656, 'https://ror.org/02j9tgd14', 'en', 1, 'https://ror.org/02j9tgd14 European Federation of Allergy and Airways Diseases Patients Associations'),
(17657, 'https://ror.org/02sz9bm21', 'no_lang_code', 1, 'https://ror.org/02sz9bm21 Elia Life Technology (United States)'),
(17658, 'https://ror.org/04gkw9q47', 'en', 1, 'https://ror.org/04gkw9q47 Direction GĆ©nĆ©rale Ɖnergie Directorate-General for Energy Generaldirektion der Kommission'),
(17659, 'https://ror.org/00ag93x16', 'nl', 1, 'https://ror.org/00ag93x16 Goudappel Coffeng'),
(17660, 'https://ror.org/01fbtw415', 'no_lang_code', 1, 'https://ror.org/01fbtw415 Generation Biotech (United States)'),
(17661, 'https://ror.org/03v5b4741', 'no_lang_code', 1, 'https://ror.org/03v5b4741 Ella-Cs (Czechia)'),
(17662, 'https://ror.org/02c1kz490', 'no_lang_code', 1, 'https://ror.org/02c1kz490 Ellemedia Technologies (Greece)'),
(17663, 'https://ror.org/04fhf9k38', 'no_lang_code', 1, 'https://ror.org/04fhf9k38 Generic Robotics (United Kingdom)'),
(17664, 'https://ror.org/02fj83z08', 'en', 1, 'https://ror.org/02fj83z08 Elmira College'),
(17665, 'https://ror.org/05b3fmb74', 'no_lang_code', 1, 'https://ror.org/05b3fmb74 Elmos Semiconductor (Germany)'),
(17666, 'https://ror.org/03y0c3933', 'no_lang_code', 1, 'https://ror.org/03y0c3933 Environmental and Life Support Technology (United States)'),
(17667, 'https://ror.org/01f2grr18', 'no_lang_code', 1, 'https://ror.org/01f2grr18 Elsyca (Belgium)'),
(17668, 'https://ror.org/00cyg5d40', 'es', 1, 'https://ror.org/00cyg5d40 Fundació Privada per a la Investigació Nutricional'),
(17669, 'https://ror.org/00q62px07', 'no_lang_code', 1, 'https://ror.org/00q62px07 Eltek Semiconductors (United Kingdom)'),
(17670, 'https://ror.org/00enk9f97', 'en', 1, 'https://ror.org/00enk9f97 European Federation of Railway Trackwork Contractors'),
(17671, 'https://ror.org/013h98003', 'en', 1, 'https://ror.org/013h98003 European Forum on Nature Conservation and Pastoralism'),
(17672, 'https://ror.org/04cvatx71', 'no_lang_code', 1, 'https://ror.org/04cvatx71 Elumotion (United Kingdom)'),
(17673, 'https://ror.org/04n30cc76', 'no_lang_code', 1, 'https://ror.org/04n30cc76 Guifi.net'),
(17674, 'https://ror.org/037es9x13', 'en', 1, 'https://ror.org/037es9x13 European Games Developer Federation'),
(17675, 'https://ror.org/04gbvx157', 'no_lang_code', 1, 'https://ror.org/04gbvx157 Elusys Therapeutics (United States)'),
(17676, 'https://ror.org/05r66pc04', 'no_lang_code', 1, 'https://ror.org/05r66pc04 Elviex (Greece)'),
(17677, 'https://ror.org/053g97n06', 'en', 1, 'https://ror.org/053g97n06 European Genetic Alliances Network'),
(17678, 'https://ror.org/03bvy3496', 'en', 1, 'https://ror.org/03bvy3496 European Geothermal Energy Council'),
(17679, 'https://ror.org/02a7s8340', 'no_lang_code', 1, 'https://ror.org/02a7s8340 Elvior (Estonia)'),
(17680, 'https://ror.org/05nw98r31', 'en', 1, 'https://ror.org/05nw98r31 European Gravitational Observatory'),
(17681, 'https://ror.org/01qdw1f80', 'no_lang_code', 1, 'https://ror.org/01qdw1f80 GeneSearch (United States)'),
(17682, 'https://ror.org/05cs67685', 'no_lang_code', 1, 'https://ror.org/05cs67685 Elwood Landscape Design (United Kingdom)'),
(17683, 'https://ror.org/01rr96195', 'en', 1, 'https://ror.org/01rr96195 Genesee/Orleans Council on Alcoholism and Substance Abuse'),
(17684, 'https://ror.org/045e9rn67', 'no_lang_code', 1, 'https://ror.org/045e9rn67 EmbedRF (United States)'),
(17685, 'https://ror.org/011r7ts05', 'en', 1, 'https://ror.org/011r7ts05 Advanced Technology Centre for Renewable Energies Centro Tecnológico Avanzado de Energías Renovables'),
(17686, 'https://ror.org/01xny3z34', 'en', 1, 'https://ror.org/01xny3z34 European Health Management Association'),
(17687, 'https://ror.org/02yyb7m34', 'no_lang_code', 1, 'https://ror.org/02yyb7m34 Embedded Access (Canada)'),
(17688, 'https://ror.org/05e7hwa20', 'en', 1, 'https://ror.org/05e7hwa20 European Heat Pump Association'),
(17689, 'https://ror.org/04xhv0r49', 'en', 1, 'https://ror.org/04xhv0r49 Graceland University'),
(17690, 'https://ror.org/02t8cb469', 'en', 1, 'https://ror.org/02t8cb469 European Institute for Advanced Studies in Management'),
(17691, 'https://ror.org/007j95w86', 'en', 1, 'https://ror.org/007j95w86 Greek Rescue Team'),
(17692, 'https://ror.org/02waqnt49', 'no_lang_code', 1, 'https://ror.org/02waqnt49 Grainger and Worral (United Kingdom)'),
(17693, 'https://ror.org/02ay1zt80', 'en', 1, 'https://ror.org/02ay1zt80 European Institute for Participatory Media'),
(17694, 'https://ror.org/014tp7304', 'en', 1, 'https://ror.org/014tp7304 European Institute of Public Administration'),
(17695, 'https://ror.org/05r5zsh59', 'en', 1, 'https://ror.org/05r5zsh59 Genetic Alliance'),
(17696, 'https://ror.org/000wx6j65', 'en', 1, 'https://ror.org/000wx6j65 European Institute of Women''s Health'),
(17697, 'https://ror.org/04apkgm45', 'en', 1, 'https://ror.org/04apkgm45 European Jewellery Technology Network'),
(17698, 'https://ror.org/0331p6r75', 'no_lang_code', 1, 'https://ror.org/0331p6r75 Emcien (United States)'),
(17699, 'https://ror.org/04s0wf777', 'pt', 1, 'https://ror.org/04s0wf777 Empresa Municipal de Mobilidade e Estacionamento de Lisboa'),
(17700, 'https://ror.org/02ff40f54', 'en', 1, 'https://ror.org/02ff40f54 Grand Rapids Community College'),
(17701, 'https://ror.org/03kxyq577', 'en', 1, 'https://ror.org/03kxyq577 Emerald Education Systems'),
(17702, 'https://ror.org/05w4kcm12', 'no_lang_code', 1, 'https://ror.org/05w4kcm12 Emergence Tech Limited (United Kingdom)'),
(17703, 'https://ror.org/02rbfgr17', 'no_lang_code', 1, 'https://ror.org/02rbfgr17 European Media Laboratory (Germany)'),
(17704, 'https://ror.org/056v90990', 'pl', 1, 'https://ror.org/056v90990 Fundusz Górnośląski S.A. Oddział w Katowicach'),
(17705, 'https://ror.org/052eb7a13', 'en', 1, 'https://ror.org/052eb7a13 European Membrane House'),
(17706, 'https://ror.org/00bh7p191', 'no_lang_code', 1, 'https://ror.org/00bh7p191 GMC (Italy)'),
(17707, 'https://ror.org/05ph11b68', 'no_lang_code', 1, 'https://ror.org/05ph11b68 Tunstall (Ireland)'),
(17708, 'https://ror.org/04wfr2810', 'en', 1, 'https://ror.org/04wfr2810 European Molecular Biology Organization'),
(17709, 'https://ror.org/039vz4177', 'no_lang_code', 1, 'https://ror.org/039vz4177 Granlund (Finland)'),
(17710, 'https://ror.org/03qpmfz94', 'no_lang_code', 1, 'https://ror.org/03qpmfz94 GenetiVision (United States)'),
(17711, 'https://ror.org/02aqjhx29', 'no_lang_code', 1, 'https://ror.org/02aqjhx29 Genewave (France)'),
(17712, 'https://ror.org/0510q5f30', 'no_lang_code', 1, 'https://ror.org/0510q5f30 European Multimedia Forum (United Kingdom)'),
(17713, 'https://ror.org/0584wbt59', 'en', 1, 'https://ror.org/0584wbt59 European Network for Cyber Security'),
(17714, 'https://ror.org/02qeyb550', 'no_lang_code', 1, 'https://ror.org/02qeyb550 GeneXplain (Germany)'),
(17715, 'https://ror.org/00rwgk448', 'es', 1, 'https://ror.org/00rwgk448 Fundación INTRAS'),
(17716, 'https://ror.org/00a83sz87', 'no_lang_code', 1, 'https://ror.org/00a83sz87 Grassroots Arts and Research (Germany)'),
(17717, 'https://ror.org/01zd9gz71', 'no_lang_code', 1, 'https://ror.org/01zd9gz71 Genfit (France)'),
(17718, 'https://ror.org/01xhkj350', 'no_lang_code', 1, 'https://ror.org/01xhkj350 GenHunter (United States)'),
(17719, 'https://ror.org/02r6qtd46', 'no_lang_code', 1, 'https://ror.org/02r6qtd46 GenIbet (Portugal)'),
(17720, 'https://ror.org/009xhdy29', 'no_lang_code', 1, 'https://ror.org/009xhdy29 E. Brƶll (Austria)'),
(17721, 'https://ror.org/045g6w049', 'no_lang_code', 1, 'https://ror.org/045g6w049 Eminate (United Kingdom)'),
(17722, 'https://ror.org/028m68j28', 'en', 1, 'https://ror.org/028m68j28 Fundacion Latinoamericana De Accion Social'),
(17723, 'https://ror.org/04g9wby70', 'en', 1, 'https://ror.org/04g9wby70 European Organisation for Research and Treatment of Cancer'),
(17724, 'https://ror.org/05509w645', 'en', 1, 'https://ror.org/05509w645 European Passengers'' Federation EuropƤische Fahrgastverband'),
(17725, 'https://ror.org/050pmr719', 'en', 1, 'https://ror.org/050pmr719 European Patent Organisation EuropƤische Patentorganisation'),
(17726, 'https://ror.org/04fx4e978', 'no_lang_code', 1, 'https://ror.org/04fx4e978 Graybug Vision (United States)'),
(17727, 'https://ror.org/00e386464', 'en', 1, 'https://ror.org/00e386464 European Photonics Industry Consortium'),
(17728, 'https://ror.org/02b1fy379', 'en', 1, 'https://ror.org/02b1fy379 European Centre for Soft Computing'),
(17729, 'https://ror.org/01n6jnf20', 'no_lang_code', 1, 'https://ror.org/01n6jnf20 Eminent Services Corporation (United States)'),
(17730, 'https://ror.org/04mvbrf96', 'no_lang_code', 1, 'https://ror.org/04mvbrf96 Emissions Reduzierungs Concepte (Germany)'),
(17731, 'https://ror.org/014fxzd16', 'en', 1, 'https://ror.org/014fxzd16 European Public Law Center'),
(17732, 'https://ror.org/01zjcq634', 'no_lang_code', 1, 'https://ror.org/01zjcq634 Newable (United Kingdom)'),
(17733, 'https://ror.org/025ezac93', 'en', 1, 'https://ror.org/025ezac93 European Science Events Association'),
(17734, 'https://ror.org/01pw3xa54', 'en', 1, 'https://ror.org/01pw3xa54 Greater Manchester Combined Authority'),
(17735, 'https://ror.org/03x0c7470', 'no_lang_code', 1, 'https://ror.org/03x0c7470 European Research Services'),
(17736, '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'),
(17737, 'https://ror.org/02dp3xf77', 'en', 1, 'https://ror.org/02dp3xf77 European Society for Therapeutic Radiology and Oncology'),
(17738, 'https://ror.org/02184kv08', 'en', 1, 'https://ror.org/02184kv08 European Solar Thermal Electricity Association'),
(17739, 'https://ror.org/0141hdg13', 'en', 1, 'https://ror.org/0141hdg13 European State Forest Association'),
(17740, 'https://ror.org/01zq3f511', 'no_lang_code', 1, 'https://ror.org/01zq3f511 European Thermodynamics (United Kingdom)'),
(17741, 'https://ror.org/02w5hgx58', 'en', 1, 'https://ror.org/02w5hgx58 Greek Solar Industry Association'),
(17742, 'https://ror.org/042qv2836', 'en', 1, 'https://ror.org/042qv2836 Empowerment Program'),
(17743, 'https://ror.org/03ypk5989', 'en', 1, 'https://ror.org/03ypk5989 Green Aviation Research and Development Network'),
(17744, 'https://ror.org/00m1br750', 'no_lang_code', 1, 'https://ror.org/00m1br750 GMSbiotech (United States)'),
(17745, 'https://ror.org/00r5yyv69', 'en', 1, 'https://ror.org/00r5yyv69 European Trade Union Institute'),
(17746, 'https://ror.org/053jctp32', 'no_lang_code', 1, 'https://ror.org/053jctp32 Green Biologics (United Kingdom)'),
(17747, 'https://ror.org/01rhsna23', 'en', 1, 'https://ror.org/01rhsna23 European Tyre Recycling Association'),
(17748, 'https://ror.org/00ygx9p32', 'no_lang_code', 1, 'https://ror.org/00ygx9p32 Data Fusion International (Ireland)'),
(17749, 'https://ror.org/04e6s6j73', 'no_lang_code', 1, 'https://ror.org/04e6s6j73 Genotype (Germany)'),
(17750, 'https://ror.org/047979f88', 'no_lang_code', 1, 'https://ror.org/047979f88 Ɓguas de Portugal (Portugal)'),
(17751, 'https://ror.org/01f8pxc90', 'en', 1, 'https://ror.org/01f8pxc90 Eurogas'),
(17752, 'https://ror.org/035dzyj47', 'de', 1, 'https://ror.org/035dzyj47 Emschergenossenschaft'),
(17753, 'https://ror.org/01dcwcs90', 'no_lang_code', 1, 'https://ror.org/01dcwcs90 Emtele (Finland)'),
(17754, 'https://ror.org/04gczvb13', 'en', 1, 'https://ror.org/04gczvb13 Illinois Archaeological Survey'),
(17755, 'https://ror.org/03dx84k02', 'no_lang_code', 1, 'https://ror.org/03dx84k02 AtriCure (United States)'),
(17756, 'https://ror.org/04gfner94', 'en', 1, 'https://ror.org/04gfner94 Green Mountain College'),
(17757, 'https://ror.org/01j7c2q87', 'no_lang_code', 1, 'https://ror.org/01j7c2q87 OnCore Biopharma (United States)'),
(17758, 'https://ror.org/0288ctx42', 'en', 1, 'https://ror.org/0288ctx42 Illinois General Assembly'),
(17759, 'https://ror.org/03ngn6116', 'no_lang_code', 1, 'https://ror.org/03ngn6116 Green Tide Turbines (United Kingdom)'),
(17760, 'https://ror.org/03mgga463', 'no_lang_code', 1, 'https://ror.org/03mgga463 Greenbank Group (United Kingdom)'),
(17761, 'https://ror.org/006sm2430', 'en', 1, 'https://ror.org/006sm2430 Illinois State Board of Education'),
(17762, 'https://ror.org/0258fpw94', 'no_lang_code', 1, 'https://ror.org/0258fpw94 TriStar Wellness Solutions (United States)'),
(17763, 'https://ror.org/03x5r0t69', 'no_lang_code', 1, 'https://ror.org/03x5r0t69 GreenField Specialty Alcolhols (Canada)'),
(17764, 'https://ror.org/04v8m3m69', 'no_lang_code', 1, 'https://ror.org/04v8m3m69 Enclavix (United States)'),
(17765, 'https://ror.org/027c2yv63', 'no_lang_code', 1, 'https://ror.org/027c2yv63 Illumina (United Kingdom)'),
(17766, 'https://ror.org/04f085c77', 'no_lang_code', 1, 'https://ror.org/04f085c77 Enco (Italy)'),
(17767, 'https://ror.org/00h6azh28', 'no_lang_code', 1, 'https://ror.org/00h6azh28 Encore Pharmaceuticals (United States)'),
(17768, 'https://ror.org/03v7zdq71', 'no_lang_code', 1, 'https://ror.org/03v7zdq71 Encraft (United Kingdom)'),
(17769, 'https://ror.org/0502g5y81', 'no_lang_code', 1, 'https://ror.org/0502g5y81 Endomag (United Kingdom)'),
(17770, 'https://ror.org/004csq624', 'no_lang_code', 1, 'https://ror.org/004csq624 Gentoo (United Kingdom)'),
(17771, 'https://ror.org/04yr9v708', 'no_lang_code', 1, 'https://ror.org/04yr9v708 HemoGenix (United States)'),
(17772, 'https://ror.org/00xk4wa49', 'en', 1, 'https://ror.org/00xk4wa49 Hemophilia Federation of America'),
(17773, 'https://ror.org/04f43m378', 'en', 1, 'https://ror.org/04f43m378 Greenhope Services for Women'),
(17774, 'https://ror.org/03t26ts93', 'no_lang_code', 1, 'https://ror.org/03t26ts93 Imatecno (Italy)'),
(17775, 'https://ror.org/04pthvp83', 'no_lang_code', 1, 'https://ror.org/04pthvp83 Henkel (Belgium)'),
(17776, 'https://ror.org/00cm6et23', 'en', 1, 'https://ror.org/00cm6et23 Haute Ɖcole Lucia de BrouckĆØre Higher Education Institution Lucia de BrouckĆØre'),
(17777, 'https://ror.org/05n13t702', 'en', 1, 'https://ror.org/05n13t702 Washington Radiology Associates'),
(17778, 'https://ror.org/032g1nc88', 'no_lang_code', 1, 'https://ror.org/032g1nc88 Albemarle (Belgium)'),
(17779, 'https://ror.org/00eb1tn47', 'no_lang_code', 1, 'https://ror.org/00eb1tn47 Greenspace Scotland (United Kingdom)'),
(17780, 'https://ror.org/04mekkj24', 'no_lang_code', 1, 'https://ror.org/04mekkj24 GeoAdvice Engineering (Canada)'),
(17781, 'https://ror.org/01a4jyf22', 'no_lang_code', 1, 'https://ror.org/01a4jyf22 imaGeau (France)'),
(17782, 'https://ror.org/00jb2qs89', 'no_lang_code', 1, 'https://ror.org/00jb2qs89 ImageCat (United Kingdom)'),
(17783, 'https://ror.org/011pv1j48', 'no_lang_code', 1, 'https://ror.org/011pv1j48 Greentronics (Romania)'),
(17784, 'https://ror.org/05t738f97', 'no_lang_code', 1, 'https://ror.org/05t738f97 Geoanalysis (Greece) Ī“Ī•Ī©Ī‘ĪĪ‘Ī›Ī„Ī£Ī—'),
(17785, 'https://ror.org/004wrwd64', 'no_lang_code', 1, 'https://ror.org/004wrwd64 Atlas Copco (United Kingdom)'),
(17786, 'https://ror.org/03vrea996', 'no_lang_code', 1, 'https://ror.org/03vrea996 Source BioScience (Germany)'),
(17787, 'https://ror.org/013kzw641', 'en', 1, 'https://ror.org/013kzw641 Greenwich Public Schools'),
(17788, 'https://ror.org/018zj0h25', 'fr', 1, 'https://ror.org/018zj0h25 Institut de l''Environnement et Recherches Agricoles'),
(17789, 'https://ror.org/020pq6t22', 'no_lang_code', 1, 'https://ror.org/020pq6t22 ImaginAb (United States)'),
(17790, 'https://ror.org/02pwp4n28', 'no_lang_code', 1, 'https://ror.org/02pwp4n28 Imagination Software Corporation (United States)'),
(17791, 'https://ror.org/011r6gp69', 'en', 1, 'https://ror.org/011r6gp69 University of Algiers Benyoucef Benkhedda Ų¬Ų§Ł…Ų¹Ų© الجزائر – بن يوسف بن خـدة'),
(17792, 'https://ror.org/03rf62a76', 'no_lang_code', 1, 'https://ror.org/03rf62a76 Imagination Technologies (United Kingdom)'),
(17793, 'https://ror.org/01bre8q37', 'no_lang_code', 1, 'https://ror.org/01bre8q37 Geocontrol (Spain)'),
(17794, 'https://ror.org/00702wg16', 'fr', 1, 'https://ror.org/00702wg16 Institut National d''Optique National Optics Institute'),
(17795, 'https://ror.org/055wrb292', 'no_lang_code', 1, 'https://ror.org/055wrb292 VizSeek (United States)'),
(17796, 'https://ror.org/015geds03', 'fr', 1, 'https://ror.org/015geds03 Greta Lac'),
(17797, 'https://ror.org/05xng4y02', 'no_lang_code', 1, 'https://ror.org/05xng4y02 Gridpoint solutions (United Kingdom)'),
(17798, 'https://ror.org/0442gk010', 'no_lang_code', 1, 'https://ror.org/0442gk010 ImaTx (United States)'),
(17799, 'https://ror.org/02tkbtm16', 'no_lang_code', 1, 'https://ror.org/02tkbtm16 Grimm Aerosol Technik (Germany)'),
(17800, 'https://ror.org/01mmrtt85', 'no_lang_code', 1, 'https://ror.org/01mmrtt85 Groenholland (Netherlands)'),
(17801, 'https://ror.org/049040e46', 'no_lang_code', 1, 'https://ror.org/049040e46 Imaging Biometrics (United States)'),
(17802, 'https://ror.org/02m39mw39', 'no_lang_code', 1, 'https://ror.org/02m39mw39 Geodiscover (Portugal)'),
(17803, 'https://ror.org/03s68kq02', 'en', 1, 'https://ror.org/03s68kq02 Grossmont Cuyamaca Community College District'),
(17804, 'https://ror.org/00yyva985', 'no_lang_code', 1, 'https://ror.org/00yyva985 HepatoSys (United States)'),
(17805, 'https://ror.org/02cn8ky49', 'fr', 1, 'https://ror.org/02cn8ky49 Groupe de Recherche en Agriculture Biologique'),
(17806, 'https://ror.org/04pzwwc57', 'no_lang_code', 1, 'https://ror.org/04pzwwc57 General Patent Corporation (United States)'),
(17807, 'https://ror.org/049e8me77', 'no_lang_code', 1, 'https://ror.org/049e8me77 Heraeus (United Kingdom)'),
(17808, 'https://ror.org/02718ec78', 'no_lang_code', 1, 'https://ror.org/02718ec78 KraussMaffei (Germany)'),
(17809, 'https://ror.org/01mf3rs17', 'no_lang_code', 1, 'https://ror.org/01mf3rs17 Geoloc Systems (France)'),
(17810, 'https://ror.org/00t4hhw32', 'no_lang_code', 1, 'https://ror.org/00t4hhw32 Hela Spice Canada (Canada)'),
(17811, 'https://ror.org/005haay02', 'fr', 1, 'https://ror.org/005haay02 Institut National de Recherche en SantƩ Publique'),
(17812, 'https://ror.org/05sadtq09', 'no_lang_code', 1, 'https://ror.org/05sadtq09 Sycamore Entertainment Group (United States)'),
(17813, 'https://ror.org/02we0q870', 'en', 1, 'https://ror.org/02we0q870 State Geological Institute of Dionýz Štúr'),
(17814, 'https://ror.org/00xdvzg58', 'no_lang_code', 1, 'https://ror.org/00xdvzg58 Hermia Business Development (Finland) Hermia Yrityskehitys'),
(17815, 'https://ror.org/01r14tp08', 'no_lang_code', 1, 'https://ror.org/01r14tp08 Ovako (Finland)'),
(17816, 'https://ror.org/04xncs852', 'en', 1, 'https://ror.org/04xncs852 Hernando Community Coalition'),
(17817, '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é'),
(17818, 'https://ror.org/04sm3yz09', 'no_lang_code', 1, 'https://ror.org/04sm3yz09 Marathon Oil (United States)'),
(17819, 'https://ror.org/03s1jks46', 'no_lang_code', 1, 'https://ror.org/03s1jks46 Hero EspaƱa (Spain)'),
(17820, 'https://ror.org/020z9nv72', 'no_lang_code', 1, 'https://ror.org/020z9nv72 Maritime Wirtschafts- und Schiffbauforschung (Germany)'),
(17821, 'https://ror.org/02ratyz17', 'no_lang_code', 1, 'https://ror.org/02ratyz17 Herzog + Partner (Germany)'),
(17822, 'https://ror.org/04ez98579', 'de', 1, 'https://ror.org/04ez98579 GründerRegio M'),
(17823, 'https://ror.org/03b2j7609', 'no_lang_code', 1, 'https://ror.org/03b2j7609 Geomer (Germany)'),
(17824, 'https://ror.org/0262b0b41', 'no_lang_code', 1, 'https://ror.org/0262b0b41 GeoMobile (Germany)'),
(17825, 'https://ror.org/01cvgrc03', 'fr', 1, 'https://ror.org/01cvgrc03 Hespul'),
(17826, 'https://ror.org/02tjxv890', 'de', 1, 'https://ror.org/02tjxv890 Hessen Mobil – Straßen- und Verkehrsmanagement'),
(17827, 'https://ror.org/05e1bqs36', 'no_lang_code', 1, 'https://ror.org/05e1bqs36 IMET Corporation (United States)'),
(17828, 'https://ror.org/02hmy2876', 'no_lang_code', 1, 'https://ror.org/02hmy2876 Aethlon Medical (United States)'),
(17829, 'https://ror.org/01cnprv20', 'en', 1, 'https://ror.org/01cnprv20 Institute for Management of Innovation and Technology'),
(17830, 'https://ror.org/05n1gam72', 'en', 1, 'https://ror.org/05n1gam72 Babbage Institute for Knowledge and Information Technologies'),
(17831, 'https://ror.org/01cegwx30', 'no_lang_code', 1, 'https://ror.org/01cegwx30 HƉTFA Research Institute'),
(17832, 'https://ror.org/05vkmhj10', 'en', 1, 'https://ror.org/05vkmhj10 Georgia Gwinnett College'),
(17833, 'https://ror.org/01q25wj29', 'en', 1, 'https://ror.org/01q25wj29 Georgia Mental Health Consumer Network'),
(17834, 'https://ror.org/05g12js95', 'no_lang_code', 1, 'https://ror.org/05g12js95 ImmersiveTouch (United States)'),
(17835, 'https://ror.org/03wy6f566', 'en', 1, 'https://ror.org/03wy6f566 Georgia Parent Support Network'),
(17836, 'https://ror.org/03x8f0b85', 'no_lang_code', 1, 'https://ror.org/03x8f0b85 Hi-Z Technology (United States)'),
(17837, 'https://ror.org/011smmt78', 'no_lang_code', 1, 'https://ror.org/011smmt78 GeoSAS (Ethiopia)'),
(17838, 'https://ror.org/02yakpb28', 'no_lang_code', 1, 'https://ror.org/02yakpb28 Hidromod (Portugal)'),
(17839, 'https://ror.org/02zrqj244', 'no_lang_code', 1, 'https://ror.org/02zrqj244 Hidrowatt (Spain)'),
(17840, 'https://ror.org/032dnw027', 'no_lang_code', 1, 'https://ror.org/032dnw027 HiETA Technologies (United Kingdom)'),
(17841, 'https://ror.org/0145xtn29', 'no_lang_code', 1, 'https://ror.org/0145xtn29 Geosat'),
(17842, 'https://ror.org/02eqp9f22', 'no_lang_code', 1, 'https://ror.org/02eqp9f22 Cartes Bancaires (France)'),
(17843, 'https://ror.org/007cgsn27', 'no_lang_code', 1, 'https://ror.org/007cgsn27 High Voltage Partial Discharge (United Kingdom)'),
(17844, 'https://ror.org/00q519868', 'en', 1, 'https://ror.org/00q519868 Grwp Llandrillo Menai'),
(17845, 'https://ror.org/0206kax92', 'en', 1, 'https://ror.org/0206kax92 L''Institut national du patrimoine National Heritage Institute المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ للتراث'),
(17846, 'https://ror.org/01hq5ez54', 'no_lang_code', 1, 'https://ror.org/01hq5ez54 Immuno-Mycologics'),
(17847, 'https://ror.org/00fsfag68', 'no_lang_code', 1, 'https://ror.org/00fsfag68 ImmBio (United Kingdom)'),
(17848, 'https://ror.org/009qm7w92', 'en', 1, 'https://ror.org/009qm7w92 Higher Institute for Applied Sciences and Technology المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(17849, 'https://ror.org/05wge1d25', 'en', 1, 'https://ror.org/05wge1d25 GS1 Germany'),
(17850, 'https://ror.org/01nsd9919', 'no_lang_code', 1, 'https://ror.org/01nsd9919 ImmuVen (United States)'),
(17851, 'https://ror.org/04xybmk80', 'en', 1, 'https://ror.org/04xybmk80 GS1 Belgium & Luxembourg'),
(17852, 'https://ror.org/0272r9772', 'en', 1, 'https://ror.org/0272r9772 Impact Research and Development Organization'),
(17853, 'https://ror.org/034wxzt12', 'no_lang_code', 1, 'https://ror.org/034wxzt12 Highland Biosciences (United Kingdom)'),
(17854, 'https://ror.org/00q87b836', 'no_lang_code', 1, 'https://ror.org/00q87b836 Impact Innovations (Germany)'),
(17855, 'https://ror.org/05debfj90', 'no_lang_code', 1, 'https://ror.org/05debfj90 Highland Fine Cheeses (United Kingdom)'),
(17856, 'https://ror.org/05t9f6t69', 'fr', 1, 'https://ror.org/05t9f6t69 Institut National d’HygiĆØne Publique'),
(17857, 'https://ror.org/03yvy0733', 'no_lang_code', 1, 'https://ror.org/03yvy0733 Hightec MC (Switzerland)'),
(17858, 'https://ror.org/026bqf280', 'no_lang_code', 1, 'https://ror.org/026bqf280 GSI Group (United Kingdom)'),
(17859, 'https://ror.org/0561r3x79', 'no_lang_code', 1, 'https://ror.org/0561r3x79 Geosciences Consultants'),
(17860, 'https://ror.org/05c9yxc90', 'no_lang_code', 1, 'https://ror.org/05c9yxc90 Hill+Knowlton Strategies (Estonia)'),
(17861, 'https://ror.org/0411vej12', 'no_lang_code', 1, 'https://ror.org/0411vej12 Hill Group (United States)'),
(17862, 'https://ror.org/0202yb607', 'en', 1, 'https://ror.org/0202yb607 Information Management Policies Assessment for City Transport Systems'),
(17863, 'https://ror.org/01491ht04', 'no_lang_code', 1, 'https://ror.org/01491ht04 GeoSpatiumLab (Spain)'),
(17864, 'https://ror.org/017hxta74', 'no_lang_code', 1, 'https://ror.org/017hxta74 GeoSpectrum Technologies (Canada)'),
(17865, 'https://ror.org/04cx6n327', 'en', 1, 'https://ror.org/04cx6n327 Cornell Scott-Hill Health Center'),
(17866, 'https://ror.org/045x59t40', 'en', 1, 'https://ror.org/045x59t40 Hillsborough County Anti Drug Alliance’s'),
(17867, 'https://ror.org/01kv9ne32', 'no_lang_code', 1, 'https://ror.org/01kv9ne32 Geostock (France)'),
(17868, 'https://ror.org/02qjgmm73', 'no_lang_code', 1, 'https://ror.org/02qjgmm73 HiQScreen (Switzerland)'),
(17869, 'https://ror.org/00aeba842', 'no_lang_code', 1, 'https://ror.org/00aeba842 Impetus Consultants'),
(17870, 'https://ror.org/01w9kqf90', 'no_lang_code', 1, 'https://ror.org/01w9kqf90 Geotechnics (United Kingdom)'),
(17871, 'https://ror.org/051jp6337', 'en', 1, 'https://ror.org/051jp6337 Impression 5 Science Center'),
(17872, 'https://ror.org/011ed2d57', 'fr', 1, 'https://ror.org/011ed2d57 French Polar Institute Institut Polaire FranƧais Paul Ɖmile Victor'),
(17873, 'https://ror.org/050t3rs25', 'no_lang_code', 1, 'https://ror.org/050t3rs25 HireGround (Canada)'),
(17874, 'https://ror.org/05mb9ke45', 'no_lang_code', 1, 'https://ror.org/05mb9ke45 GTC Kappelmeyer (Germany)'),
(17875, 'https://ror.org/00b2pba14', 'no_lang_code', 1, 'https://ror.org/00b2pba14 Imprima Costruzioni (Italy)'),
(17876, 'https://ror.org/01w4x2p98', 'en', 1, 'https://ror.org/01w4x2p98 Local Government Improvement and Development'),
(17877, 'https://ror.org/03zvc9c15', 'no_lang_code', 1, 'https://ror.org/03zvc9c15 Hirst Magnetic Instruments (United Kingdom)'),
(17878, 'https://ror.org/05gyk0k71', 'no_lang_code', 1, 'https://ror.org/05gyk0k71 IMS Nanofabrication (Austria)'),
(17879, 'https://ror.org/018te2y75', 'no_lang_code', 1, 'https://ror.org/018te2y75 Imstar (France)'),
(17880, 'https://ror.org/044csjs83', 'en', 1, 'https://ror.org/044csjs83 Hispanic Serving Health Professions Schools'),
(17881, 'https://ror.org/00as86q06', 'en', 1, 'https://ror.org/00as86q06 Historic Royal Palaces'),
(17882, 'https://ror.org/01wpyw903', 'no_lang_code', 1, 'https://ror.org/01wpyw903 GTP Technology'),
(17883, 'https://ror.org/045zhyc13', 'no_lang_code', 1, 'https://ror.org/045zhyc13 Imtech Marine (Netherlands)'),
(17884, 'https://ror.org/04vkzy908', 'no_lang_code', 1, 'https://ror.org/04vkzy908 GeoVax (United States)'),
(17885, 'https://ror.org/0207xt957', 'no_lang_code', 1, 'https://ror.org/0207xt957 Geowatt (Switzerland)'),
(17886, 'https://ror.org/040dbbn57', 'no_lang_code', 1, 'https://ror.org/040dbbn57 HIT09 (Italy)'),
(17887, 'https://ror.org/00d19bg72', 'no_lang_code', 1, 'https://ror.org/00d19bg72 GeoX (Hungary)'),
(17888, 'https://ror.org/02tbyk536', 'en', 1, 'https://ror.org/02tbyk536 International Medical Equipment Collaborative'),
(17889, 'https://ror.org/01bedg124', 'en', 1, 'https://ror.org/01bedg124 Sinano Institute'),
(17890, 'https://ror.org/00vj44q65', 'no_lang_code', 1, 'https://ror.org/00vj44q65 GEPRO (Germany)'),
(17891, 'https://ror.org/01ssr1j70', 'no_lang_code', 1, 'https://ror.org/01ssr1j70 In Silico Toxicology (Switzerland)'),
(17892, 'https://ror.org/01dd27934', 'en', 1, 'https://ror.org/01dd27934 IN Financing & Project Management'),
(17893, 'https://ror.org/01trbq046', 'en', 1, 'https://ror.org/01trbq046 German Research School for Simulation Sciences'),
(17894, 'https://ror.org/04ks3jq11', 'no_lang_code', 1, 'https://ror.org/04ks3jq11 HITEK Electronic Materials (United Kingdom)'),
(17895, 'https://ror.org/04f1fpz24', 'no_lang_code', 1, 'https://ror.org/04f1fpz24 InTouch (United Kingdom)'),
(17896, 'https://ror.org/01cncfq91', 'no_lang_code', 1, 'https://ror.org/01cncfq91 Gerstel (Germany)'),
(17897, 'https://ror.org/02w506a46', 'no_lang_code', 1, 'https://ror.org/02w506a46 Guardian Chemicals (Canada)'),
(17898, 'https://ror.org/00z2vba08', 'en', 1, 'https://ror.org/00z2vba08 In Vitro Testing Industrial Platform'),
(17899, 'https://ror.org/054hsde96', 'no_lang_code', 1, 'https://ror.org/054hsde96 Gesellschaft für Technologieförderung Itzehoe'),
(17900, 'https://ror.org/03wyknn52', 'no_lang_code', 1, 'https://ror.org/03wyknn52 Inaccess (Greece)'),
(17901, 'https://ror.org/046fjdw68', 'en', 1, 'https://ror.org/046fjdw68 Guerilla Science'),
(17902, 'https://ror.org/033pjdm33', 'no_lang_code', 1, 'https://ror.org/033pjdm33 Inael (Spain)'),
(17903, 'https://ror.org/038nw4939', 'fr', 1, 'https://ror.org/038nw4939 Institut Technique de l''Agriculture Biologique'),
(17904, 'https://ror.org/00spcac30', 'no_lang_code', 1, 'https://ror.org/00spcac30 Guidance (United Kingdom)'),
(17905, 'https://ror.org/023csce19', 'no_lang_code', 1, 'https://ror.org/023csce19 Measurement Specialties (Germany)'),
(17906, 'https://ror.org/029ga8k16', 'en', 1, 'https://ror.org/029ga8k16 Health Level Seven International'),
(17907, 'https://ror.org/03w08v283', 'no_lang_code', 1, 'https://ror.org/03w08v283 Gram & Juhl (Denmark)'),
(17908, 'https://ror.org/04p6spd57', 'no_lang_code', 1, 'https://ror.org/04p6spd57 Inbios (Italy)'),
(17909, 'https://ror.org/00hkb6y19', 'en', 1, 'https://ror.org/00hkb6y19 Her Majesty''s Revenue and Customs'),
(17910, 'https://ror.org/013gqjv35', 'no_lang_code', 1, 'https://ror.org/013gqjv35 HMGene (United States)'),
(17911, 'https://ror.org/03bq13516', 'en', 1, 'https://ror.org/03bq13516 Guilford Technical Community College'),
(17912, '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'),
(17913, 'https://ror.org/0044j1p74', 'no_lang_code', 1, 'https://ror.org/0044j1p74 HMJ Corporation (United States)'),
(17914, 'https://ror.org/022r03w28', 'en', 1, 'https://ror.org/022r03w28 Hochschule der Medien Stuttgart Media University'),
(17915, 'https://ror.org/05bvps080', 'de', 1, 'https://ror.org/05bvps080 Institut Wohnen und Umwelt'),
(17916, 'https://ror.org/03tx9qd31', 'en', 1, 'https://ror.org/03tx9qd31 Gulf of Maine Research Institute'),
(17917, 'https://ror.org/053vrw097', 'no_lang_code', 1, 'https://ror.org/053vrw097 Incogen (United States)'),
(17918, 'https://ror.org/04w12eh87', 'no_lang_code', 1, 'https://ror.org/04w12eh87 Incogna (Canada)'),
(17919, 'https://ror.org/05dez2x05', 'en', 1, 'https://ror.org/05dez2x05 Institute for Advanced Studies in Aging and Geriatric Medicine'),
(17920, 'https://ror.org/032dgyz67', 'no_lang_code', 1, 'https://ror.org/032dgyz67 IncreaseTime (Portugal)'),
(17921, 'https://ror.org/00ctdbf19', 'en', 1, 'https://ror.org/00ctdbf19 Social Work Policy Institute'),
(17922, 'https://ror.org/03xq46679', 'no_lang_code', 1, 'https://ror.org/03xq46679 Hochtief (Germany) Hochtief Aktiengesellschaft'),
(17923, 'https://ror.org/05becgp50', 'no_lang_code', 1, 'https://ror.org/05becgp50 Hocoma (Switzerland)'),
(17924, 'https://ror.org/04s68jp10', 'en', 1, 'https://ror.org/04s68jp10 Gulf Research Center'),
(17925, 'https://ror.org/034wzpw61', 'no_lang_code', 1, 'https://ror.org/034wzpw61 Hodos Media (United Kingdom)'),
(17926, 'https://ror.org/02698x773', 'en', 1, 'https://ror.org/02698x773 Indian Health Board'),
(17927, 'https://ror.org/031emjj03', 'en', 1, 'https://ror.org/031emjj03 Indian Hills Community College'),
(17928, 'https://ror.org/025jq6667', 'de', 1, 'https://ror.org/025jq6667 Gesellschaft für Bioanalytik Münster'),
(17929, 'https://ror.org/03tnb9s98', 'no_lang_code', 1, 'https://ror.org/03tnb9s98 Holo3'),
(17930, 'https://ror.org/04en4ww09', 'en', 1, 'https://ror.org/04en4ww09 Institute for Behavioral Medicine'),
(17931, 'https://ror.org/00cd95c65', 'de', 1, 'https://ror.org/00cd95c65 Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen'),
(17932, 'https://ror.org/04g6csw95', 'no_lang_code', 1, 'https://ror.org/04g6csw95 Holland Renewable Energy Technologies (Netherlands)'),
(17933, 'https://ror.org/041b3m426', 'en', 1, 'https://ror.org/041b3m426 Indigenous Peoples Task Force'),
(17934, 'https://ror.org/04fwrmd76', 'de', 1, 'https://ror.org/04fwrmd76 Gesellschaft zur Fƶrderung angewandter Informatik'),
(17935, 'https://ror.org/00td9nh08', 'no_lang_code', 1, 'https://ror.org/00td9nh08 Tronox (Netherlands)'),
(17936, 'https://ror.org/00ymae584', 'en', 1, 'https://ror.org/00ymae584 Institute for Breathing and Sleep'),
(17937, 'https://ror.org/02rkwhb32', 'it', 1, 'https://ror.org/02rkwhb32 Istituto Nazionale di Documentazione Innovazione e Ricerca Educativa'),
(17938, 'https://ror.org/02kxx1c93', 'en', 1, 'https://ror.org/02kxx1c93 Holmes Community College'),
(17939, 'https://ror.org/03t3ktm93', 'no_lang_code', 1, 'https://ror.org/03t3ktm93 Holonix (Italy)'),
(17940, 'https://ror.org/03zjprt16', 'en', 1, 'https://ror.org/03zjprt16 Institute for Cognitive Prosthetics'),
(17941, 'https://ror.org/00mp82g69', 'no_lang_code', 1, 'https://ror.org/00mp82g69 Holosonics (United States)'),
(17942, 'https://ror.org/01xwcs533', 'no_lang_code', 1, 'https://ror.org/01xwcs533 Hotpoint (United Kingdom)'),
(17943, 'https://ror.org/04drxvh51', 'no_lang_code', 1, 'https://ror.org/04drxvh51 Holscot Fluoroplastics (United Kingdom)'),
(17944, 'https://ror.org/04jyp8093', 'en', 1, 'https://ror.org/04jyp8093 National Healthcare Service Center Állami Egészségügyi EllÔtó Központ'),
(17945, 'https://ror.org/026jqgj23', 'en', 1, 'https://ror.org/026jqgj23 Holyoke Community College'),
(17946, 'https://ror.org/02qz22q09', 'no_lang_code', 1, 'https://ror.org/02qz22q09 GexCon (Norway)'),
(17947, 'https://ror.org/02s88ax77', 'en', 1, 'https://ror.org/02s88ax77 Institut für ökologische Wirtschaftsforschung Institute for Ecological Economy Research'),
(17948, 'https://ror.org/05eeps779', 'no_lang_code', 1, 'https://ror.org/05eeps779 Home Group (United Kingdom)'),
(17949, 'https://ror.org/03pca8c78', 'no_lang_code', 1, 'https://ror.org/03pca8c78 H-Cubed (United States)'),
(17950, 'https://ror.org/05m6bg654', 'en', 1, 'https://ror.org/05m6bg654 Help Committee');
INSERT INTO `rors` VALUES
(17951, 'https://ror.org/04a3nrb88', 'en', 1, 'https://ror.org/04a3nrb88 Institute of Energy Problems of Chemical Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… проблем химической физики им. Š’.Š›. Š¢Š°Š»ŃŒŃ€Š¾Š·Šµ Российской акаГемии наук'),
(17952, 'https://ror.org/05r1dd276', 'no_lang_code', 1, 'https://ror.org/05r1dd276 ICF International (United Kingdom)'),
(17953, 'https://ror.org/04yycxd24', 'no_lang_code', 1, 'https://ror.org/04yycxd24 Honeywell (Romania)'),
(17954, 'https://ror.org/03en68s56', 'no_lang_code', 1, 'https://ror.org/03en68s56 Haesevoets (Belgium)'),
(17955, 'https://ror.org/02e5q2963', 'en', 1, 'https://ror.org/02e5q2963 Institute for Higher Education Policy'),
(17956, 'https://ror.org/03a4hjz39', 'no_lang_code', 1, 'https://ror.org/03a4hjz39 Getas Petrogeo (Italy)'),
(17957, 'https://ror.org/05r4z9y47', 'no_lang_code', 1, 'https://ror.org/05r4z9y47 H2 Logic (Denmark)'),
(17958, 'https://ror.org/01x9dpc82', 'no_lang_code', 1, 'https://ror.org/01x9dpc82 HAYC3'),
(17959, 'https://ror.org/03tc4hb20', 'no_lang_code', 1, 'https://ror.org/03tc4hb20 Hessen Agentur (Germany)'),
(17960, 'https://ror.org/00b63pv67', 'no_lang_code', 1, 'https://ror.org/00b63pv67 Industrial Optical Measurement Systems (United States)'),
(17961, 'https://ror.org/03459qp74', 'no_lang_code', 1, 'https://ror.org/03459qp74 TRUMPF (Germany)'),
(17962, 'https://ror.org/01y86zv41', 'en', 1, 'https://ror.org/01y86zv41 Habitat Acquisition Trust'),
(17963, 'https://ror.org/02spsym66', 'en', 1, 'https://ror.org/02spsym66 Industrial Research Institute'),
(17964, 'https://ror.org/03t2hta05', 'fr', 1, 'https://ror.org/03t2hta05 Laboratoire d''Analyses Génétiques pour les Espèces Animales'),
(17965, 'https://ror.org/01y6v9r10', 'no_lang_code', 1, 'https://ror.org/01y6v9r10 Horta (Italy)'),
(17966, 'https://ror.org/014a84x66', 'no_lang_code', 1, 'https://ror.org/014a84x66 Denn (Spain)'),
(17967, 'https://ror.org/0238h3r90', 'no_lang_code', 1, 'https://ror.org/0238h3r90 Somelos (Portugal)'),
(17968, 'https://ror.org/01q87er94', 'no_lang_code', 1, 'https://ror.org/01q87er94 Horton Levi (United Kingdom)'),
(17969, 'https://ror.org/01nn2x953', 'en', 1, 'https://ror.org/01nn2x953 Industrial Association Yarns Fabric Technical Textiles Industry'),
(17970, 'https://ror.org/013bqfn71', 'en', 1, 'https://ror.org/013bqfn71 Institute for Market Economics'),
(17971, 'https://ror.org/05az64h21', 'no_lang_code', 1, 'https://ror.org/05az64h21 Grupo Lederval (Spain)'),
(17972, 'https://ror.org/01kcks752', 'en', 1, 'https://ror.org/01kcks752 Institute for Medical BioMathematics'),
(17973, 'https://ror.org/02afhdg85', 'no_lang_code', 1, 'https://ror.org/02afhdg85 Indutherm ErwƤrmungsanlagen (Germany)'),
(17974, 'https://ror.org/02s4pbe64', 'no_lang_code', 1, 'https://ror.org/02s4pbe64 Haines Lundberg and Waehler'),
(17975, 'https://ror.org/05ajme216', 'pt', 1, 'https://ror.org/05ajme216 Hospital de Santo Espirito de Angra do HeroĆ­smo'),
(17976, 'https://ror.org/05y9mxh13', 'pt', 1, 'https://ror.org/05y9mxh13 Hospital do Mar'),
(17977, 'https://ror.org/03r516865', 'no_lang_code', 1, 'https://ror.org/03r516865 Informatizacija Energetika Avtomatizacija (Slovenia)'),
(17978, 'https://ror.org/000gxrm11', 'en', 1, 'https://ror.org/000gxrm11 Hospital for Sick Children Pediatric Center'),
(17979, 'https://ror.org/00sdk9579', 'no_lang_code', 1, 'https://ror.org/00sdk9579 Hakkı Usta Ogulları Mak.San.Tic (Turkey)'),
(17980, 'https://ror.org/04r7d8a74', 'no_lang_code', 1, 'https://ror.org/04r7d8a74 Halevi Dweck (Israel)'),
(17981, 'https://ror.org/03185ph79', 'no_lang_code', 1, 'https://ror.org/03185ph79 Halliday James (United Kingdom)'),
(17982, 'https://ror.org/01z9k3j07', 'no_lang_code', 1, 'https://ror.org/01z9k3j07 Ramboll (United Kingdom)'),
(17983, 'https://ror.org/04hq7r724', 'no_lang_code', 1, 'https://ror.org/04hq7r724 INERCO (Spain)'),
(17984, 'https://ror.org/03xjr3d37', 'no_lang_code', 1, 'https://ror.org/03xjr3d37 HaloSource (United States)'),
(17985, 'https://ror.org/047n4sz26', 'en', 1, 'https://ror.org/047n4sz26 Institute of Non-ferrous and Rare Metals'),
(17986, 'https://ror.org/05mngvs08', 'no_lang_code', 1, 'https://ror.org/05mngvs08 HalTech'),
(17987, 'https://ror.org/03ws7wb17', 'no_lang_code', 1, 'https://ror.org/03ws7wb17 Hamakua-Kohala Health'),
(17988, 'https://ror.org/0237jrs86', 'en', 1, 'https://ror.org/0237jrs86 House Next Door'),
(17989, 'https://ror.org/0264zze35', 'en', 1, 'https://ror.org/0264zze35 General Confederation of Greek Workers'),
(17990, 'https://ror.org/04nb6x947', 'no_lang_code', 1, 'https://ror.org/04nb6x947 Hamamatsu Photonics (United Kingdom)'),
(17991, 'https://ror.org/0187pag34', 'en', 1, 'https://ror.org/0187pag34 Institute for Physical Research'),
(17992, 'https://ror.org/02xkzav80', 'en', 1, 'https://ror.org/02xkzav80 Housing & Care 21'),
(17993, 'https://ror.org/052w1b871', 'no_lang_code', 1, 'https://ror.org/052w1b871 Bellicum Pharmaceuticals (United States)'),
(17994, 'https://ror.org/04e472991', 'no_lang_code', 1, 'https://ror.org/04e472991 HQ-Dielectrics (Germany)'),
(17995, 'https://ror.org/0262rzr61', 'no_lang_code', 1, 'https://ror.org/0262rzr61 Hamilton Thorne (United States)'),
(17996, 'https://ror.org/00tt1dr37', 'no_lang_code', 1, 'https://ror.org/00tt1dr37 HRI Associates'),
(17997, 'https://ror.org/035vdar92', 'en', 1, 'https://ror.org/035vdar92 Hands on Science Outreach'),
(17998, 'https://ror.org/03rwh4x08', 'no_lang_code', 1, 'https://ror.org/03rwh4x08 HRS Spiratube (Spain)'),
(17999, 'https://ror.org/0300em778', 'en', 1, 'https://ror.org/0300em778 iNets South West'),
(18000, 'https://ror.org/02ygdtt22', 'en', 1, 'https://ror.org/02ygdtt22 HSBC Holdings'),
(18001, 'https://ror.org/05swz5441', 'en', 1, 'https://ror.org/05swz5441 Institute for Social Research'),
(18002, 'https://ror.org/03f1p6998', 'en', 1, 'https://ror.org/03f1p6998 Infectious Diseases Society of America'),
(18003, 'https://ror.org/05shefr17', 'de', 1, 'https://ror.org/05shefr17 Handwerkskammer Trier'),
(18004, 'https://ror.org/017ptvx95', 'no_lang_code', 1, 'https://ror.org/017ptvx95 Infineon Technologies (United Kingdom)'),
(18005, 'https://ror.org/04rpjz321', 'no_lang_code', 1, 'https://ror.org/04rpjz321 Handy Chemicals (Canada)'),
(18006, 'https://ror.org/04carjf23', 'en', 1, 'https://ror.org/04carjf23 Institute for Sustainability'),
(18007, 'https://ror.org/02x3nwd23', 'en', 1, 'https://ror.org/02x3nwd23 Institute for Sustainable Development'),
(18008, 'https://ror.org/054hpzj06', 'no_lang_code', 1, 'https://ror.org/054hpzj06 Infinium (United States)'),
(18009, 'https://ror.org/04ef4sc21', 'no_lang_code', 1, 'https://ror.org/04ef4sc21 HT Laser (Finland)'),
(18010, 'https://ror.org/05kb6er29', 'no_lang_code', 1, 'https://ror.org/05kb6er29 SOLIDpower (Switzerland)'),
(18011, 'https://ror.org/0500fyd17', 'no_lang_code', 1, 'https://ror.org/0500fyd17 Huawei Technologies (Sweden)'),
(18012, 'https://ror.org/01zy5b076', 'no_lang_code', 1, 'https://ror.org/01zy5b076 Infobyte (Italy)'),
(18013, 'https://ror.org/03mnfhy36', 'no_lang_code', 1, 'https://ror.org/03mnfhy36 Hanover Scotland Housing Association (United Kingdom)'),
(18014, 'https://ror.org/004fbgd98', 'no_lang_code', 1, 'https://ror.org/004fbgd98 InfoCamere (Italy)'),
(18015, 'https://ror.org/026bph638', 'no_lang_code', 1, 'https://ror.org/026bph638 Hueck Folien (Austria)'),
(18016, 'https://ror.org/005b83279', 'no_lang_code', 1, 'https://ror.org/005b83279 InfoConsult (Germany)'),
(18017, 'https://ror.org/03tg0tp84', 'en', 1, 'https://ror.org/03tg0tp84 Institute for the Study of Societies and Knowledge Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за изслеГване на обществата Šø знанието'),
(18018, 'https://ror.org/053pt1j04', 'no_lang_code', 1, 'https://ror.org/053pt1j04 Hugin Expert (Denmark)'),
(18019, 'https://ror.org/03f8z3m49', 'no_lang_code', 1, 'https://ror.org/03f8z3m49 InfoCulture (United States)'),
(18020, 'https://ror.org/05h60ts97', 'no_lang_code', 1, 'https://ror.org/05h60ts97 Infoport (Spain)'),
(18021, 'https://ror.org/01qsj6b37', 'en', 1, 'https://ror.org/01qsj6b37 Hugo''s Restaurant'),
(18022, 'https://ror.org/01sjyrz62', 'en', 1, 'https://ror.org/01sjyrz62 Hull City Council'),
(18023, 'https://ror.org/017c2y429', 'no_lang_code', 1, 'https://ror.org/017c2y429 Informa (Italy)'),
(18024, 'https://ror.org/012ctg788', 'no_lang_code', 1, 'https://ror.org/012ctg788 HULVERSHORN Eisengiesserei (Germany)'),
(18025, 'https://ror.org/00y0h2589', 'no_lang_code', 1, 'https://ror.org/00y0h2589 Hansa Industrie Mixer (Germany)'),
(18026, 'https://ror.org/05740ft58', 'no_lang_code', 1, 'https://ror.org/05740ft58 El Corte InglƩs (Spain)'),
(18027, 'https://ror.org/02dahmt29', 'no_lang_code', 1, 'https://ror.org/02dahmt29 Humacyte (United States)'),
(18028, 'https://ror.org/041dnb131', 'no_lang_code', 1, 'https://ror.org/041dnb131 CGI (Spain)'),
(18029, 'https://ror.org/04kcnzc28', 'no_lang_code', 1, 'https://ror.org/04kcnzc28 Hanzo Archives (United Kingdom)'),
(18030, 'https://ror.org/02p4ctz53', 'no_lang_code', 1, 'https://ror.org/02p4ctz53 Informatica Tecnologie e Servizi (Italy)'),
(18031, 'https://ror.org/01vg8sr12', 'en', 1, 'https://ror.org/01vg8sr12 Institut für Angewandte Systemtechnik Bremen Institute for Applied Systems Technology Bremen'),
(18032, 'https://ror.org/04fjz0k13', 'no_lang_code', 1, 'https://ror.org/04fjz0k13 Sicherheit, Informatik und Zentrale Services'),
(18033, 'https://ror.org/02ks97v71', 'no_lang_code', 1, 'https://ror.org/02ks97v71 Human Reliability (United Kingdom)'),
(18034, 'https://ror.org/02d7e3b90', 'en', 1, 'https://ror.org/02d7e3b90 Human Services Research Institute'),
(18035, 'https://ror.org/002vxyf08', 'no_lang_code', 1, 'https://ror.org/002vxyf08 Humanetics Corporation (United States)'),
(18036, 'https://ror.org/032vk7j62', 'no_lang_code', 1, 'https://ror.org/032vk7j62 Information & Image Management Systems (Spain)'),
(18037, 'https://ror.org/054y4pt02', 'no_lang_code', 1, 'https://ror.org/054y4pt02 Harineras Villamayor (Spain)'),
(18038, 'https://ror.org/044dnpj34', 'en', 1, 'https://ror.org/044dnpj34 Harlow College'),
(18039, 'https://ror.org/04a6kdq42', 'no_lang_code', 1, 'https://ror.org/04a6kdq42 Information Highway Group (Spain)'),
(18040, 'https://ror.org/023594t55', 'en', 1, 'https://ror.org/023594t55 Humber Bridge Board'),
(18041, 'https://ror.org/05r5gyx33', 'no_lang_code', 1, 'https://ror.org/05r5gyx33 Hummingbird Precision Machine (United States)'),
(18042, 'https://ror.org/02hnr5x72', 'no_lang_code', 1, 'https://ror.org/02hnr5x72 Harman (Germany)'),
(18043, 'https://ror.org/047527p77', 'no_lang_code', 1, 'https://ror.org/047527p77 Hummingbird Scientific (United States)'),
(18044, 'https://ror.org/04v4mek61', 'no_lang_code', 1, 'https://ror.org/04v4mek61 Harman Technology (United Kingdom)'),
(18045, 'https://ror.org/02k6x6h05', 'no_lang_code', 1, 'https://ror.org/02k6x6h05 Harmonia (United States)'),
(18046, 'https://ror.org/02wrd4h10', 'en', 1, 'https://ror.org/02wrd4h10 Instituto Multimedia'),
(18047, 'https://ror.org/04kwq4x05', 'no_lang_code', 1, 'https://ror.org/04kwq4x05 Harmonic Drive (Germany)'),
(18048, 'https://ror.org/04j1e5984', 'no_lang_code', 1, 'https://ror.org/04j1e5984 Magyar Posta'),
(18049, 'https://ror.org/04b76w231', 'no_lang_code', 1, 'https://ror.org/04b76w231 A.S.Sadykov Institute of Bioorganic Chemistry'),
(18050, 'https://ror.org/03tmcyr03', 'en', 1, 'https://ror.org/03tmcyr03 Hartford Public Schools'),
(18051, 'https://ror.org/0298rr784', 'en', 1, 'https://ror.org/0298rr784 Instituto Nacional de EstatĆ­stica National Statistical Institute of Portugal'),
(18052, 'https://ror.org/054hp8k77', 'no_lang_code', 1, 'https://ror.org/054hp8k77 Informed Horizons Education (United States)'),
(18053, 'https://ror.org/049sbzn78', 'en', 1, 'https://ror.org/049sbzn78 Institute of Chemical Engineering Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по инженерна Ń…ŠøŠ¼ŠøŃ'),
(18054, 'https://ror.org/01gnp4591', 'en', 1, 'https://ror.org/01gnp4591 Institute of Chemical Engineering'),
(18055, 'https://ror.org/004q3d116', 'en', 1, 'https://ror.org/004q3d116 Institute of Biopolymers and Chemical Fibres'),
(18056, 'https://ror.org/04hzk8845', 'en', 1, 'https://ror.org/04hzk8845 Institute of Chemistry'),
(18057, 'https://ror.org/02zpzxx25', 'en', 1, 'https://ror.org/02zpzxx25 Hunterdon Prevention Resources'),
(18058, 'https://ror.org/01egrn244', 'no_lang_code', 1, 'https://ror.org/01egrn244 Infrabel (Belgium)'),
(18059, 'https://ror.org/05td14x20', 'no_lang_code', 1, 'https://ror.org/05td14x20 Hunting Energy Services (United Kingdom)'),
(18060, 'https://ror.org/00byceh24', 'no_lang_code', 1, 'https://ror.org/00byceh24 Huntington Consultancy (United States)'),
(18061, 'https://ror.org/03w1c1p82', 'no_lang_code', 1, 'https://ror.org/03w1c1p82 Huntsman (Belgium)'),
(18062, 'https://ror.org/02ygxgy27', 'en', 1, 'https://ror.org/02ygxgy27 Hawaii State Department of Education'),
(18063, 'https://ror.org/02j3b8k57', 'en', 1, 'https://ror.org/02j3b8k57 Institute of Contemporary Arts'),
(18064, 'https://ror.org/05v7e2b49', 'no_lang_code', 1, 'https://ror.org/05v7e2b49 Hazen Research (United States)'),
(18065, 'https://ror.org/05f3yt521', 'en', 1, 'https://ror.org/05f3yt521 V. A. Trapeznikov Institute of Control Sciences W.A.Trapeznikow Institut für Steuerungswissenschaften Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ им. Š’. А. Трапезникова Российской акаГемии наук'),
(18066, 'https://ror.org/01rhrdz17', 'no_lang_code', 1, 'https://ror.org/01rhrdz17 InfraTec (Germany)'),
(18067, 'https://ror.org/01v5rbf40', 'en', 1, 'https://ror.org/01v5rbf40 Yu.G. Shafer Institute of Cosmophysical Research and Aeronomy Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космофизических исслеГований Šø Š°ŃŃ€Š¾Š½Š¾Š¼ŠøŠø им. Š®.Š“.Шафера Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(18068, 'https://ror.org/01ngcpv42', 'no_lang_code', 1, 'https://ror.org/01ngcpv42 Health Care Service Corporation'),
(18069, 'https://ror.org/049ecjx61', 'en', 1, 'https://ror.org/049ecjx61 A.V. Shubnikov Institute of Crystallography Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кристаллографии им. А.Š’. Шубникова Российской акаГемии наук'),
(18070, 'https://ror.org/024jak282', 'no_lang_code', 1, 'https://ror.org/024jak282 Blutip (Canada)'),
(18071, 'https://ror.org/011p6w039', 'no_lang_code', 1, 'https://ror.org/011p6w039 Hybrid Plastics (United States)'),
(18072, 'https://ror.org/04nj1pt13', 'no_lang_code', 1, 'https://ror.org/04nj1pt13 Hybrigenics (France)'),
(18073, 'https://ror.org/059et9981', 'en', 1, 'https://ror.org/059et9981 ING Bank Internationale Nederlanden Groep'),
(18074, 'https://ror.org/04r837x41', 'en', 1, 'https://ror.org/04r837x41 Institute of Economics'),
(18075, 'https://ror.org/03y2be923', 'en', 1, 'https://ror.org/03y2be923 Economic Research Institute Š˜ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š½Š°ŃƒŃ‡Š½Šø ŠøŠ·ŃŠ»ŠµŠ“Š²Š°Š½ŠøŃ'),
(18076, 'https://ror.org/012dtcx72', 'no_lang_code', 1, 'https://ror.org/012dtcx72 National Institute for Research and Development in Welding and Material Testing'),
(18077, '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'),
(18078, 'https://ror.org/00634z117', 'no_lang_code', 1, 'https://ror.org/00634z117 Checkit (United Kingdom)'),
(18079, 'https://ror.org/01e5vvr68', 'no_lang_code', 1, 'https://ror.org/01e5vvr68 HƤmosan (Austria)'),
(18080, 'https://ror.org/01agtnb56', 'no_lang_code', 1, 'https://ror.org/01agtnb56 Healionics (United States)'),
(18081, 'https://ror.org/04zc40243', 'en', 1, 'https://ror.org/04zc40243 Instituto Nacional de Medicina National Legal Medicine Institute'),
(18082, 'https://ror.org/01g853f75', 'en', 1, 'https://ror.org/01g853f75 Institute of Ion Plasma Laser Technologies'),
(18083, 'https://ror.org/0299eyn73', 'en', 1, 'https://ror.org/0299eyn73 Institute of Electronics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по електроника'),
(18084, 'https://ror.org/00sx2c320', 'en', 1, 'https://ror.org/00sx2c320 Health and Safety Authority'),
(18085, 'https://ror.org/04fv2f128', 'no_lang_code', 1, 'https://ror.org/04fv2f128 Krejci Engineering (Czechia)'),
(18086, 'https://ror.org/04k57j098', 'en', 1, 'https://ror.org/04k57j098 Health Initiatives for Youth'),
(18087, 'https://ror.org/01fp7rv25', 'no_lang_code', 1, 'https://ror.org/01fp7rv25 Ingegneria dei Trasporti (Italy)'),
(18088, 'https://ror.org/02rxp0j51', 'no_lang_code', 1, 'https://ror.org/02rxp0j51 Ingeniatrics TecnologĆ­as (Spain)'),
(18089, 'https://ror.org/01j4wpj84', 'en', 1, 'https://ror.org/01j4wpj84 Health On The Net Foundation'),
(18090, 'https://ror.org/053qf6056', 'no_lang_code', 1, 'https://ror.org/053qf6056 Ingenico (France)'),
(18091, 'https://ror.org/05k1e9879', 'en', 1, 'https://ror.org/05k1e9879 Health Promotion Services'),
(18092, 'https://ror.org/044j1gb67', 'no_lang_code', 1, 'https://ror.org/044j1gb67 Hycult Biotech (Netherlands)'),
(18093, 'https://ror.org/01ctnwa22', 'en', 1, 'https://ror.org/01ctnwa22 Health Resources in Action'),
(18094, 'https://ror.org/043y57f64', 'en', 1, 'https://ror.org/043y57f64 Hyde Housing Association'),
(18095, 'https://ror.org/01sm3jy79', 'no_lang_code', 1, 'https://ror.org/01sm3jy79 Health Technomics (United States)'),
(18096, 'https://ror.org/018fdr531', 'no_lang_code', 1, 'https://ror.org/018fdr531 Yara (Norway)'),
(18097, 'https://ror.org/05cewnq61', 'en', 1, 'https://ror.org/05cewnq61 HealthInsight'),
(18098, 'https://ror.org/01f9fz831', 'no_lang_code', 1, 'https://ror.org/01f9fz831 Ingenierƭa y Soluciones InformƔticas (Spain)'),
(18099, 'https://ror.org/00j4h9q86', 'no_lang_code', 1, 'https://ror.org/00j4h9q86 Ingenieurgesellschaft Auto und Verkehr (Germany)'),
(18100, 'https://ror.org/015m28b66', 'no_lang_code', 1, 'https://ror.org/015m28b66 Ingenieurgesellschaft für Technische Software (Germany)'),
(18101, 'https://ror.org/038dact55', 'no_lang_code', 1, 'https://ror.org/038dact55 Battery Ventures (United States)'),
(18102, 'https://ror.org/00zh01q02', 'no_lang_code', 1, 'https://ror.org/00zh01q02 Healthways (United States)'),
(18103, 'https://ror.org/05bc0ed68', 'en', 1, 'https://ror.org/05bc0ed68 Healthy Communities Initiative of St Joseph County'),
(18104, 'https://ror.org/01temjw93', 'en', 1, 'https://ror.org/01temjw93 Healthy Northeast Pennsylvania Initiative'),
(18105, 'https://ror.org/024dbdr63', 'no_lang_code', 1, 'https://ror.org/024dbdr63 Mowi (Norway)'),
(18106, 'https://ror.org/05krzb242', 'en', 1, 'https://ror.org/05krzb242 Healthy Teen Network'),
(18107, 'https://ror.org/02251ba66', 'no_lang_code', 1, 'https://ror.org/02251ba66 Institute of Forest Ecosystem Research'),
(18108, 'https://ror.org/03j84nv98', 'no_lang_code', 1, 'https://ror.org/03j84nv98 Heart Imaging Technologies (United States)'),
(18109, 'https://ror.org/04pgtsj35', 'en', 1, 'https://ror.org/04pgtsj35 Hearth'),
(18110, 'https://ror.org/02ydk7b78', 'en', 1, 'https://ror.org/02ydk7b78 Heartland Family Service'),
(18111, 'https://ror.org/05gqxfr13', 'en', 1, 'https://ror.org/05gqxfr13 Heartland Alliance'),
(18112, 'https://ror.org/01hy2c330', 'en', 1, 'https://ror.org/01hy2c330 NS Kurnakova Institute of General and Inorganic Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей Šø неорганической химии им. Š.Š”. ŠšŃƒŃ€Š½Š°ŠŗŠ¾Š²Š° Российской акаГемии наук'),
(18113, 'https://ror.org/02caxje77', 'no_lang_code', 1, 'https://ror.org/02caxje77 Van Putten-Gas Energy Observatory (Netherlands)'),
(18114, 'https://ror.org/014gd3j97', 'en', 1, 'https://ror.org/014gd3j97 Hebrew Home'),
(18115, 'https://ror.org/027p3g314', 'no_lang_code', 1, 'https://ror.org/027p3g314 Hydrocontrol (Italy)'),
(18116, 'https://ror.org/031213047', 'no_lang_code', 1, 'https://ror.org/031213047 Hebridean Seaweed (United Kingdom)'),
(18117, 'https://ror.org/03p4y9t51', 'no_lang_code', 1, 'https://ror.org/03p4y9t51 Probiodrug (Germany)'),
(18118, 'https://ror.org/05q0xtj32', 'no_lang_code', 1, 'https://ror.org/05q0xtj32 Hydrodata (Italy)'),
(18119, 'https://ror.org/025fy1n79', 'no_lang_code', 1, 'https://ror.org/025fy1n79 Hydrogen Solar (United Kingdom)'),
(18120, 'https://ror.org/00fpvt160', 'no_lang_code', 1, 'https://ror.org/00fpvt160 Inhouse Engineering (Germany)'),
(18121, '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'),
(18122, 'https://ror.org/04cj8sj38', 'no_lang_code', 1, 'https://ror.org/04cj8sj38 Hydrogenics (Belgium)'),
(18123, 'https://ror.org/03t2wy197', 'no_lang_code', 1, 'https://ror.org/03t2wy197 HydroLogic (Netherlands)'),
(18124, 'https://ror.org/01hmvx995', 'no_lang_code', 1, 'https://ror.org/01hmvx995 Hydrometeorological Innovative Solutions (Spain)'),
(18125, 'https://ror.org/01kwgtf21', 'en', 1, 'https://ror.org/01kwgtf21 Helena Public School District'),
(18126, 'https://ror.org/0424v9690', 'no_lang_code', 1, 'https://ror.org/0424v9690 Heliatek (Germany)'),
(18127, 'https://ror.org/01keyq725', 'en', 1, 'https://ror.org/01keyq725 Helicon Foundation'),
(18128, 'https://ror.org/03g0fjd93', 'no_lang_code', 1, 'https://ror.org/03g0fjd93 RM Education (United Kingdom)'),
(18129, 'https://ror.org/05qvwps75', 'en', 1, 'https://ror.org/05qvwps75 Helio International'),
(18130, 'https://ror.org/059m1rc96', 'no_lang_code', 1, 'https://ror.org/059m1rc96 Institut für Prüftechnik Gerätebau (Germany)'),
(18131, 'https://ror.org/02rnkgt97', 'no_lang_code', 1, 'https://ror.org/02rnkgt97 Hastoe Group (United Kingdom)'),
(18132, 'https://ror.org/02mn0vt57', 'fr', 1, 'https://ror.org/02mn0vt57 Institut de l''Information Scientifique et Technique Institute of Scientific and Technical Information'),
(18133, 'https://ror.org/01gzdh662', 'no_lang_code', 1, 'https://ror.org/01gzdh662 Hyperion (Ireland)'),
(18134, 'https://ror.org/01c68s590', 'no_lang_code', 1, 'https://ror.org/01c68s590 InLight Solutions (United States)'),
(18135, 'https://ror.org/02jxaxt71', 'no_lang_code', 1, 'https://ror.org/02jxaxt71 Hyperstone (Germany)'),
(18136, 'https://ror.org/013k3b019', 'no_lang_code', 1, 'https://ror.org/013k3b019 Acrion Technologies (United States)'),
(18137, 'https://ror.org/045ybeh27', 'no_lang_code', 1, 'https://ror.org/045ybeh27 Inmatec Technologies (Germany)'),
(18138, 'https://ror.org/0389pd205', 'no_lang_code', 1, 'https://ror.org/0389pd205 Helitune (United Kingdom)'),
(18139, 'https://ror.org/01fdnyw87', 'en', 1, 'https://ror.org/01fdnyw87 M. Nodia Institute of Geophysics'),
(18140, 'https://ror.org/02dsng071', 'no_lang_code', 1, 'https://ror.org/02dsng071 Inmatech (United States)'),
(18141, 'https://ror.org/01gq88837', 'no_lang_code', 1, 'https://ror.org/01gq88837 Hypertech (Greece)'),
(18142, 'https://ror.org/054rms077', 'no_lang_code', 1, 'https://ror.org/054rms077 Innegra Technologies (United States)'),
(18143, 'https://ror.org/03b4ksy95', 'en', 1, 'https://ror.org/03b4ksy95 Institute of Global Climate and Ecology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ глобального климата Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(18144, 'https://ror.org/02wf9ck77', 'pt', 1, 'https://ror.org/02wf9ck77 Instituto PortuguĆŖs de Malacologia'),
(18145, 'https://ror.org/051g2vd56', 'no_lang_code', 1, 'https://ror.org/051g2vd56 Lehigh Hanson (Canada)'),
(18146, 'https://ror.org/027f5w594', 'no_lang_code', 1, 'https://ror.org/027f5w594 InnerOptic Technology (United States)'),
(18147, 'https://ror.org/01nyd3116', 'no_lang_code', 1, 'https://ror.org/01nyd3116 Hysytech (Italy)'),
(18148, 'https://ror.org/01s2j5a22', 'no_lang_code', 1, 'https://ror.org/01s2j5a22 Hyundai Motors (Germany)'),
(18149, 'https://ror.org/04gns8903', 'en', 1, 'https://ror.org/04gns8903 Joint Institute for High Temperatures Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований Российской акаГемии наук'),
(18150, 'https://ror.org/036j3t423', 'no_lang_code', 1, 'https://ror.org/036j3t423 Piraeus Bank Τράπεζα Ī ĪµĪ¹ĻĪ±Ī¹ĻŽĻ‚'),
(18151, 'https://ror.org/007xvzw21', 'en', 1, 'https://ror.org/007xvzw21 Institute of Highway Engineers'),
(18152, 'https://ror.org/04j2j9782', 'en', 1, 'https://ror.org/04j2j9782 Institute of Ideas'),
(18153, 'https://ror.org/00p2bz193', 'no_lang_code', 1, 'https://ror.org/00p2bz193 I-Moss (Belgium)'),
(18154, 'https://ror.org/05s5kq870', 'en', 1, 'https://ror.org/05s5kq870 Institute of International Education'),
(18155, 'https://ror.org/05c0tak18', 'no_lang_code', 1, 'https://ror.org/05c0tak18 Inner Health'),
(18156, 'https://ror.org/04a1ad523', 'no_lang_code', 1, 'https://ror.org/04a1ad523 I.CO.P (Italy)'),
(18157, 'https://ror.org/05gmpv778', 'no_lang_code', 1, 'https://ror.org/05gmpv778 Innolume (Germany)'),
(18158, 'https://ror.org/004eh9171', 'no_lang_code', 1, 'https://ror.org/004eh9171 Helmed Spine Implants (Greece)'),
(18159, 'https://ror.org/04jqbzt84', 'en', 1, 'https://ror.org/04jqbzt84 I.I. Schmalhausen Institute of Zoology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ зоології ім. І. І. Шмальгаузена ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(18160, 'https://ror.org/053tcf519', 'no_lang_code', 1, 'https://ror.org/053tcf519 Innopole (Spain)'),
(18161, 'https://ror.org/00b5qjr76', 'en', 1, 'https://ror.org/00b5qjr76 Institute of Laser Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лазерной физики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(18162, 'https://ror.org/02337dt86', 'no_lang_code', 1, 'https://ror.org/02337dt86 Helmut Christmann (Germany)'),
(18163, 'https://ror.org/05qck2d60', 'no_lang_code', 1, 'https://ror.org/05qck2d60 I+ (Italy)'),
(18164, 'https://ror.org/033px5146', 'en', 1, 'https://ror.org/033px5146 Institute of Linguistics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ·Ń‹ŠŗŠ¾Š·Š½Š°Š½ŠøŃ Российской акаГемии наук'),
(18165, 'https://ror.org/04qwevz50', 'en', 1, 'https://ror.org/04qwevz50 Regional Innovation Agency of Central Hungary'),
(18166, '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'),
(18167, 'https://ror.org/00sqx4367', 'no_lang_code', 1, 'https://ror.org/00sqx4367 Innotec (Italy)'),
(18168, 'https://ror.org/04xtpdj18', 'en', 1, 'https://ror.org/04xtpdj18 Institute of Mathematical Problems of Biology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математических проблем биологии (Š˜ŠœŠŸŠ‘ Š ŠŠ)'),
(18169, 'https://ror.org/00b7zp807', 'no_lang_code', 1, 'https://ror.org/00b7zp807 International Marine and Dredging Consultants'),
(18170, 'https://ror.org/032gaeg66', 'no_lang_code', 1, 'https://ror.org/032gaeg66 Innoterm (Hungary)'),
(18171, 'https://ror.org/00fy4at53', 'en', 1, 'https://ror.org/00fy4at53 Institute of Mathematics and Computer Science'),
(18172, 'https://ror.org/034fpp998', 'no_lang_code', 1, 'https://ror.org/034fpp998 International Medias Data Services (Canada)'),
(18173, 'https://ror.org/052c3cf27', 'no_lang_code', 1, 'https://ror.org/052c3cf27 Oceaneering International (United Kingdom)'),
(18174, 'https://ror.org/05h443j18', 'no_lang_code', 1, 'https://ror.org/05h443j18 Innova (Hungary)'),
(18175, 'https://ror.org/00ab5b586', 'en', 1, 'https://ror.org/00ab5b586 Institute of Mathematics and Mechanics'),
(18176, 'https://ror.org/00m6hsp80', 'en', 1, 'https://ror.org/00m6hsp80 Herzliya Medical Center ×”×Ø×¦×œ×™×” מדיקל הנטר'),
(18177, 'https://ror.org/04aptxm88', 'en', 1, 'https://ror.org/04aptxm88 International Office for Water Office International de l’Eau Oficina Internacional del Agua'),
(18178, 'https://ror.org/00ybj8833', 'no_lang_code', 1, 'https://ror.org/00ybj8833 Innovatia (Canada)'),
(18179, 'https://ror.org/01a1qdv64', 'en', 1, 'https://ror.org/01a1qdv64 G.V. Kurdyumov Institute for Metal Physics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металофізики імені Š“. Š’. ŠšŃƒŃ€Š“ŃŽŠ¼Š¾Š²Š° ŠŠŠ України Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металлофизики ŠŠŠ Украины'),
(18180, 'https://ror.org/05kfe4t97', 'en', 1, 'https://ror.org/05kfe4t97 Innovation Initiatives Ontario North'),
(18181, 'https://ror.org/01368tg26', 'no_lang_code', 1, 'https://ror.org/01368tg26 IAPETOS (Greece)'),
(18182, 'https://ror.org/0062bek19', 'en', 1, 'https://ror.org/0062bek19 Irish Rail'),
(18183, 'https://ror.org/00p941317', 'no_lang_code', 1, 'https://ror.org/00p941317 Innovasjon Norge Innovation Norway (Norway)'),
(18184, 'https://ror.org/03aztvx54', 'en', 1, 'https://ror.org/03aztvx54 International Organization for Migration'),
(18185, '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'),
(18186, 'https://ror.org/04x29sy28', 'no_lang_code', 1, 'https://ror.org/04x29sy28 Innovation Strategies (Spain)'),
(18187, 'https://ror.org/05ws8g470', 'en', 1, 'https://ror.org/05ws8g470 Institute for Biotechnology and Bioengineering'),
(18188, 'https://ror.org/043dpct50', 'no_lang_code', 1, 'https://ror.org/043dpct50 Innovative Biologics (United States)'),
(18189, 'https://ror.org/002rgah83', 'no_lang_code', 1, 'https://ror.org/002rgah83 Rheonix (United States)'),
(18190, 'https://ror.org/0363g3q34', 'no_lang_code', 1, 'https://ror.org/0363g3q34 Innovative Design Labs (United States)'),
(18191, 'https://ror.org/054x1vp63', 'en', 1, 'https://ror.org/054x1vp63 International Primatological Society'),
(18192, 'https://ror.org/00aaafk57', 'no_lang_code', 1, 'https://ror.org/00aaafk57 International Project Management, Plating and Materials (France)'),
(18193, 'https://ror.org/04hsde529', 'en', 1, 'https://ror.org/04hsde529 Wisconsin Institute of Nutrition Research Foundation'),
(18194, 'https://ror.org/01jbwxs60', 'no_lang_code', 1, 'https://ror.org/01jbwxs60 IBC Advanced Technologies (United States)'),
(18195, 'https://ror.org/04dec0k98', 'no_lang_code', 1, 'https://ror.org/04dec0k98 Innovative Research (United States)'),
(18196, 'https://ror.org/030r0t953', 'es', 1, 'https://ror.org/030r0t953 Instituto Tecnológico de Materiales de Asturias'),
(18197, 'https://ror.org/04wbka248', 'en', 1, 'https://ror.org/04wbka248 International Security & Counter Terrorism Academy'),
(18198, 'https://ror.org/04sbqvh08', 'no_lang_code', 1, 'https://ror.org/04sbqvh08 Iberia (Spain)'),
(18199, 'https://ror.org/056635736', 'en', 1, 'https://ror.org/056635736 Institute of Oriental Studies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Š¾ŃŃ‚Š¾ŠŗŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(18200, 'https://ror.org/047k18g44', 'en', 1, 'https://ror.org/047k18g44 International Bureau for Environmental Studies'),
(18201, 'https://ror.org/04v074446', 'en', 1, 'https://ror.org/04v074446 Institute of Physical and Organic Chemistry'),
(18202, 'https://ror.org/01dz62b56', 'no_lang_code', 1, 'https://ror.org/01dz62b56 Innoprot (Spain)'),
(18203, 'https://ror.org/02ht8yh85', 'en', 1, 'https://ror.org/02ht8yh85 International Society for Environmental Protection'),
(18204, 'https://ror.org/01nfdb672', 'no_lang_code', 1, 'https://ror.org/01nfdb672 IBK (Germany)'),
(18205, 'https://ror.org/00eebj972', 'no_lang_code', 1, 'https://ror.org/00eebj972 Innovazione Automotive Metalmeccanica (Italy) Polo Innovazione Automotive'),
(18206, 'https://ror.org/03gkf9664', 'no_lang_code', 1, 'https://ror.org/03gkf9664 IBK-Innovation (Germany)'),
(18207, 'https://ror.org/00yywbq76', 'no_lang_code', 1, 'https://ror.org/00yywbq76 Innovia (United States)'),
(18208, 'https://ror.org/03vqa3g80', 'en', 1, 'https://ror.org/03vqa3g80 Species360'),
(18209, 'https://ror.org/034ahpr11', 'no_lang_code', 1, 'https://ror.org/034ahpr11 IBM (India)'),
(18210, 'https://ror.org/02nc81e13', 'no_lang_code', 1, 'https://ror.org/02nc81e13 IBM (Italy)'),
(18211, 'https://ror.org/031nang70', 'pl', 1, 'https://ror.org/031nang70 Innowacja Polska'),
(18212, 'https://ror.org/05r9zy719', 'no_lang_code', 1, 'https://ror.org/05r9zy719 Innowep (Germany)'),
(18213, 'https://ror.org/03jn58q55', 'no_lang_code', 1, 'https://ror.org/03jn58q55 Innu-Science (Canada)'),
(18214, 'https://ror.org/01wwe7a82', 'pt', 1, 'https://ror.org/01wwe7a82 Instituto Terra e Memória'),
(18215, 'https://ror.org/01sj5nb95', 'no_lang_code', 1, 'https://ror.org/01sj5nb95 Inova Pro (Czechia)'),
(18216, 'https://ror.org/04hvtwq28', 'no_lang_code', 1, 'https://ror.org/04hvtwq28 Inox Pneumatic (Denmark)'),
(18217, 'https://ror.org/013rnrt24', 'en', 1, 'https://ror.org/013rnrt24 Institute of Physics'),
(18218, 'https://ror.org/010n36m19', 'no_lang_code', 1, 'https://ror.org/010n36m19 IBSmm (Czechia)'),
(18219, 'https://ror.org/02k784406', 'no_lang_code', 1, 'https://ror.org/02k784406 Inpria (United States)'),
(18220, 'https://ror.org/00ayxy168', 'en', 1, 'https://ror.org/00ayxy168 Institute of Technical Acoustics Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Ń‚ŃŃ…Š½Ń–Ń‡Š½Š°Š¹ Š°ŠŗŃƒŃŃ‚Ń‹ŠŗŃ–'),
(18221, 'https://ror.org/00kv47y95', 'no_lang_code', 1, 'https://ror.org/00kv47y95 InRay Solutions (Bulgaria)'),
(18222, 'https://ror.org/01z1gfs52', 'no_lang_code', 1, 'https://ror.org/01z1gfs52 Tentnology (Canada)'),
(18223, 'https://ror.org/02jgekf05', 'no_lang_code', 1, 'https://ror.org/02jgekf05 Ibstock Brick (United Kingdom)'),
(18224, 'https://ror.org/00zmh3n37', 'de', 1, 'https://ror.org/00zmh3n37 Institut für Bildungsforschung der Wirtschaft'),
(18225, 'https://ror.org/037x4qk98', 'en', 1, 'https://ror.org/037x4qk98 International Union Against Tuberculosis and Lung Disease'),
(18226, 'https://ror.org/02na67p17', 'no_lang_code', 1, 'https://ror.org/02na67p17 IBZ - Salzchemie (Germany)'),
(18227, 'https://ror.org/05s3yra18', 'en', 1, 'https://ror.org/05s3yra18 International Union for Electricity applications'),
(18228, 'https://ror.org/02n5mme38', 'no_lang_code', 1, 'https://ror.org/02n5mme38 Topigs Norsvin (Netherlands)'),
(18229, 'https://ror.org/00vbmfk28', 'no_lang_code', 1, 'https://ror.org/00vbmfk28 Inro Consultants (Canada)'),
(18230, 'https://ror.org/04pvq8g37', 'no_lang_code', 1, 'https://ror.org/04pvq8g37 IC Consulenten Ziviltechniker (Austria)'),
(18231, 'https://ror.org/027vqky70', 'no_lang_code', 1, 'https://ror.org/027vqky70 Insiel (Italy)'),
(18232, 'https://ror.org/0416tx222', 'en', 1, 'https://ror.org/0416tx222 International Association for Cereal Science and Technology Internationale Gesellschaft für Getreidewissenschaft und -technologie'),
(18233, 'https://ror.org/04663qn06', 'no_lang_code', 1, 'https://ror.org/04663qn06 Insight Design Labs (Canada)'),
(18234, 'https://ror.org/05yhsbg08', 'no_lang_code', 1, 'https://ror.org/05yhsbg08 OS Alliance (Austria)'),
(18235, 'https://ror.org/020bzqr95', 'en', 1, 'https://ror.org/020bzqr95 Institute of Radio Astronomy РаГіоастрономічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(18236, 'https://ror.org/01pfrv343', 'en', 1, 'https://ror.org/01pfrv343 Ministry of the Interior İçişleri Bakanlığı'),
(18237, 'https://ror.org/04ee51h57', 'no_lang_code', 1, 'https://ror.org/04ee51h57 InSightec (Israel)'),
(18238, 'https://ror.org/056v1v664', 'no_lang_code', 1, 'https://ror.org/056v1v664 Insilico Biotechnology (Germany)'),
(18239, 'https://ror.org/004va3t80', 'no_lang_code', 1, 'https://ror.org/004va3t80 Internazionale Marmi e Macchine Carrara (Italy)'),
(18240, 'https://ror.org/02z468g17', 'en', 1, 'https://ror.org/02z468g17 Internet Archive'),
(18241, 'https://ror.org/03awv1y89', 'en', 1, 'https://ror.org/03awv1y89 Reproductive Medicine Institute'),
(18242, 'https://ror.org/0062wks65', 'no_lang_code', 1, 'https://ror.org/0062wks65 Internet Society Bulgaria'),
(18243, 'https://ror.org/02a61j498', 'no_lang_code', 1, 'https://ror.org/02a61j498 ICON Technology & Process Consulting (United Kingdom)'),
(18244, 'https://ror.org/00evbjw38', 'en', 1, 'https://ror.org/00evbjw38 Institute of Rural and Agricultural Development Instytut Rozwoju Wsi i Rolnictwa Polskiej Akademii Nauk'),
(18245, 'https://ror.org/003c9rw47', 'no_lang_code', 1, 'https://ror.org/003c9rw47 Icosagen (Estonia)'),
(18246, 'https://ror.org/03qa74b49', 'no_lang_code', 1, 'https://ror.org/03qa74b49 ICTS (United Kingdom)'),
(18247, 'https://ror.org/050bkn381', 'no_lang_code', 1, 'https://ror.org/050bkn381 Interoud Innovation (Spain)'),
(18248, 'https://ror.org/05n8b0n83', 'no_lang_code', 1, 'https://ror.org/05n8b0n83 Insoco (Spain)'),
(18249, 'https://ror.org/040ydq726', 'en', 1, 'https://ror.org/040ydq726 Idaho Federation of Families for Children''s Mental Health'),
(18250, 'https://ror.org/002wz1627', 'no_lang_code', 1, 'https://ror.org/002wz1627 Equens (Netherlands)'),
(18251, 'https://ror.org/05dah1e64', 'en', 1, 'https://ror.org/05dah1e64 Idaho State Department of Education'),
(18252, 'https://ror.org/01wpt0d29', 'en', 1, 'https://ror.org/01wpt0d29 IDConsortium'),
(18253, 'https://ror.org/0408zq502', 'en', 1, 'https://ror.org/0408zq502 Institute of Social Innovations'),
(18254, 'https://ror.org/04ycg6942', 'no_lang_code', 1, 'https://ror.org/04ycg6942 Interporto Bologna (Italy)'),
(18255, 'https://ror.org/006ng7z95', 'no_lang_code', 1, 'https://ror.org/006ng7z95 Interscience Communications (United Kingdom)'),
(18256, 'https://ror.org/01v9fd791', 'no_lang_code', 1, 'https://ror.org/01v9fd791 IDEA Bio-Medical (Israel)'),
(18257, 'https://ror.org/04t70d627', 'ro', 1, 'https://ror.org/04t70d627 Institutul Naţional de Cercetare Dezvoltare pentru Chimie si Petrochimie'),
(18258, 'https://ror.org/039se1n41', 'no_lang_code', 1, 'https://ror.org/039se1n41 Ideasis (Greece)'),
(18259, 'https://ror.org/003qafx79', 'no_lang_code', 1, 'https://ror.org/003qafx79 Ideko (Spain)'),
(18260, 'https://ror.org/05v0gvx94', 'en', 1, 'https://ror.org/05v0gvx94 National Institute for Research and Development of Isotopic and Molecular Technologies'),
(18261, 'https://ror.org/02wc7yv39', 'no_lang_code', 1, 'https://ror.org/02wc7yv39 ideXlab (France)'),
(18262, 'https://ror.org/012q2tk82', 'en', 1, 'https://ror.org/012q2tk82 Institute of Solar-Terrestrial Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ солнечно-земной физики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(18263, 'https://ror.org/057hsm867', 'en', 1, 'https://ror.org/057hsm867 Institute of Solid State Chemistry and Mechanochemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии тверГого тела Šø механохимии Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(18264, 'https://ror.org/00ty10b85', 'no_lang_code', 1, 'https://ror.org/00ty10b85 Institute of Spring Technology'),
(18265, 'https://ror.org/034vxep50', 'no_lang_code', 1, 'https://ror.org/034vxep50 Idio (United Kingdom)'),
(18266, 'https://ror.org/04z5qbc60', 'no_lang_code', 1, 'https://ror.org/04z5qbc60 InterSystems (United States)'),
(18267, 'https://ror.org/02h3q9f84', 'no_lang_code', 1, 'https://ror.org/02h3q9f84 Intertanko (Norway)'),
(18268, 'https://ror.org/00k9x6n46', 'en', 1, 'https://ror.org/00k9x6n46 Institute of Terrestrial Magnetism Ionosphere and Radio Wave Propagation Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ земного магнетизма, ионосферы Šø Ń€Š°ŃŠæŃ€Š¾ŃŃ‚Ń€Š°Š½ŠµŠ½ŠøŃ раГиоволн им. Š. Š’. Пушкова'),
(18269, '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'),
(18270, 'https://ror.org/04zy24864', 'en', 1, 'https://ror.org/04zy24864 Institute of Thermophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплофизики Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(18271, 'https://ror.org/03912g573', 'no_lang_code', 1, 'https://ror.org/03912g573 Idom (Spain)'),
(18272, 'https://ror.org/056wf8856', 'en', 1, 'https://ror.org/056wf8856 Kola Science Centre Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Кольского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(18273, 'https://ror.org/02yzsw326', 'en', 1, 'https://ror.org/02yzsw326 Institute for Applied Environmental Economics'),
(18274, 'https://ror.org/03wv11p67', 'no_lang_code', 1, 'https://ror.org/03wv11p67 InterveXion Therapeutics (United States)'),
(18275, 'https://ror.org/03h9pd916', 'no_lang_code', 1, 'https://ror.org/03h9pd916 Idrodepurazione (Italy)'),
(18276, 'https://ror.org/04p5jrq42', 'no_lang_code', 1, 'https://ror.org/04p5jrq42 Idropan dell’Orto Depuratori (Italy)'),
(18277, 'https://ror.org/01fypyt73', 'no_lang_code', 1, 'https://ror.org/01fypyt73 Instrument Design Technology (United Kingdom)'),
(18278, 'https://ror.org/04jqmw447', 'en', 1, 'https://ror.org/04jqmw447 Institute of World Economy and International Relations Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мировой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(18279, 'https://ror.org/02c2rwe77', 'no_lang_code', 1, 'https://ror.org/02c2rwe77 Innovation Energie DƩveloppement (France)'),
(18280, 'https://ror.org/03hnjq088', 'no_lang_code', 1, 'https://ror.org/03hnjq088 Informatique Electromagnetisme Electronique Analyse Numerique (France)'),
(18281, 'https://ror.org/03hb5cs16', 'en', 1, 'https://ror.org/03hb5cs16 Road and Bridge Research Institute'),
(18282, 'https://ror.org/00ye5fx14', 'ca', 1, 'https://ror.org/00ye5fx14 Institut d''EstadĆ­stica de Catalunya Statistical Institute of Catalonia'),
(18283, 'https://ror.org/05dwtb503', 'no_lang_code', 1, 'https://ror.org/05dwtb503 Silence Therapeutics (United States)'),
(18284, 'https://ror.org/04apv5y66', 'en', 1, 'https://ror.org/04apv5y66 Rensselaerville Institute'),
(18285, 'https://ror.org/0452jaa17', 'en', 1, 'https://ror.org/0452jaa17 Institute of Plasma Physics and Laser Microfusion'),
(18286, 'https://ror.org/01maah330', 'no_lang_code', 1, 'https://ror.org/01maah330 Intrinsic LifeSciences (United States)'),
(18287, 'https://ror.org/02tb28y24', 'no_lang_code', 1, 'https://ror.org/02tb28y24 Introversion Software (United Kingdom)'),
(18288, 'https://ror.org/05dpc2207', 'en', 1, 'https://ror.org/05dpc2207 Instytut Morski w Gdańsku Maritime Institute in Gdansk'),
(18289, 'https://ror.org/041w3g952', 'no_lang_code', 1, 'https://ror.org/041w3g952 Intune Networks (Ireland)'),
(18290, 'https://ror.org/03dpzam72', 'es', 1, 'https://ror.org/03dpzam72 Instituto Nacional del Agua'),
(18291, 'https://ror.org/05qaxe808', 'en', 1, 'https://ror.org/05qaxe808 Inuit Circumpolar Council'),
(18292, 'https://ror.org/056g2wd64', 'en', 1, 'https://ror.org/056g2wd64 Cervantes Institute Instituto Cervantes'),
(18293, 'https://ror.org/05fwffr47', 'no_lang_code', 1, 'https://ror.org/05fwffr47 inuTech (Germany)'),
(18294, 'https://ror.org/02v4nv830', 'en', 1, 'https://ror.org/02v4nv830 Institute for Fuels and Renewable Energy'),
(18295, 'https://ror.org/01prj3807', 'no_lang_code', 1, 'https://ror.org/01prj3807 Invenio Imaging (United States)'),
(18296, 'https://ror.org/04mb2v544', 'fr', 1, 'https://ror.org/04mb2v544 Institut de recherches Ʃconomiques et sociales'),
(18297, 'https://ror.org/03dwnrz57', 'no_lang_code', 1, 'https://ror.org/03dwnrz57 Insulcon (Netherlands)'),
(18298, 'https://ror.org/05wvn6j57', 'no_lang_code', 1, 'https://ror.org/05wvn6j57 Invent (Italy)'),
(18299, 'https://ror.org/056pr3z43', 'no_lang_code', 1, 'https://ror.org/056pr3z43 Rolled-Ribbon (United States)'),
(18300, 'https://ror.org/006ddrg17', 'no_lang_code', 1, 'https://ror.org/006ddrg17 ApplusVelosi (United Kingdom)'),
(18301, 'https://ror.org/02z3xdq04', 'pt', 1, 'https://ror.org/02z3xdq04 Instituto de CiĆŖncia e Tecnologia de PolĆ­meros Polymer Science and Technology Institute'),
(18302, 'https://ror.org/00np58203', 'no_lang_code', 1, 'https://ror.org/00np58203 Inventys Thermal Technologies (Canada)'),
(18303, 'https://ror.org/05eaem981', 'no_lang_code', 1, 'https://ror.org/05eaem981 Intecsea (Canada)'),
(18304, 'https://ror.org/01aj87c56', 'no_lang_code', 1, 'https://ror.org/01aj87c56 Fluvius (Belgium)'),
(18305, 'https://ror.org/040emvj36', 'no_lang_code', 1, 'https://ror.org/040emvj36 IDI Eikon (Spain)'),
(18306, 'https://ror.org/004bcda17', 'pt', 1, 'https://ror.org/004bcda17 Instituto de Desenvolvimento e Inovação Tecnológica do Minho'),
(18307, 'https://ror.org/02709ws31', 'no_lang_code', 1, 'https://ror.org/02709ws31 Invisible Dust (United Kingdom)'),
(18308, 'https://ror.org/0328hyd77', 'no_lang_code', 1, 'https://ror.org/0328hyd77 Invistics (United States)'),
(18309, 'https://ror.org/013pwk504', 'no_lang_code', 1, 'https://ror.org/013pwk504 Woodward (Switzerland)'),
(18310, 'https://ror.org/01s3s2b03', 'es', 1, 'https://ror.org/01s3s2b03 Instituto de Fomento de la Región de Murcia'),
(18311, 'https://ror.org/02k90w379', 'no_lang_code', 1, 'https://ror.org/02k90w379 Invoke Labs (Canada)'),
(18312, 'https://ror.org/048kt6872', 'no_lang_code', 1, 'https://ror.org/048kt6872 Amphenol (United Kingdom)'),
(18313, 'https://ror.org/00va3z958', 'en', 1, 'https://ror.org/00va3z958 Inwood Community Services'),
(18314, 'https://ror.org/03snc5898', 'no_lang_code', 1, 'https://ror.org/03snc5898 ioGenetics (United States)'),
(18315, 'https://ror.org/00s2jha28', 'fr', 1, 'https://ror.org/00s2jha28 Institut des Sciences Agronomiques du Burundi'),
(18316, 'https://ror.org/00strmx07', 'pt', 1, 'https://ror.org/00strmx07 Instituto de Linguística Teórica e Computacional'),
(18317, 'https://ror.org/052v6gh58', 'no_lang_code', 1, 'https://ror.org/052v6gh58 Integrated Micro Sensors (United States)'),
(18318, 'https://ror.org/00pwar297', 'fr', 1, 'https://ror.org/00pwar297 IFAPME'),
(18319, 'https://ror.org/01cv22w67', 'no_lang_code', 1, 'https://ror.org/01cv22w67 IHI Corporation (United Kingdom)'),
(18320, 'https://ror.org/02gt5pz54', 'no_lang_code', 1, 'https://ror.org/02gt5pz54 IonEdge Corporation (United States)'),
(18321, 'https://ror.org/05xqwqf73', 'en', 1, 'https://ror.org/05xqwqf73 European Embedded Control Institute Institut EuropƩen de ContrƓle EmbarquƩ'),
(18322, 'https://ror.org/01rb58919', 'no_lang_code', 1, 'https://ror.org/01rb58919 Ionic (United States)'),
(18323, 'https://ror.org/03jtym624', 'no_lang_code', 1, 'https://ror.org/03jtym624 Integrated Sensing Systems (United States)'),
(18324, 'https://ror.org/013wyvt46', 'en', 1, 'https://ror.org/013wyvt46 Institut für Angewandte Wirtschaftsforschung Institute for Applied Economic Research'),
(18325, 'https://ror.org/04yw9th96', 'no_lang_code', 1, 'https://ror.org/04yw9th96 Ionic Software (Belgium)'),
(18326, 'https://ror.org/01et00j38', 'no_lang_code', 1, 'https://ror.org/01et00j38 Integrated Systems Incorporation (United States)'),
(18327, 'https://ror.org/00ee3x048', 'no_lang_code', 1, 'https://ror.org/00ee3x048 IFU (Germany)'),
(18328, 'https://ror.org/03wjvv117', 'en', 1, 'https://ror.org/03wjvv117 IGAD Climate Prediction and Applications Center'),
(18329, 'https://ror.org/031h74a50', 'en', 1, 'https://ror.org/031h74a50 Iowa Federation of Families for Children''s Mental Health'),
(18330, 'https://ror.org/03ejd2z94', 'en', 1, 'https://ror.org/03ejd2z94 Iowa Department of Education'),
(18331, 'https://ror.org/05jye0b93', 'de', 1, 'https://ror.org/05jye0b93 Institut für Europäische Politik Institute for European Politics'),
(18332, 'https://ror.org/0515z7d79', 'no_lang_code', 1, 'https://ror.org/0515z7d79 IGE Therapeutics (United States)'),
(18333, 'https://ror.org/02khpps76', 'no_lang_code', 1, 'https://ror.org/02khpps76 Institut für Gebirgsmechanik (Germany)'),
(18334, 'https://ror.org/01bws2668', 'no_lang_code', 1, 'https://ror.org/01bws2668 IGEA Clinical Biophysics (Italy)'),
(18335, 'https://ror.org/042th8w18', 'en', 1, 'https://ror.org/042th8w18 Iowa Wesleyan College'),
(18336, 'https://ror.org/054j6z281', 'en', 1, 'https://ror.org/054j6z281 Integrity House'),
(18337, 'https://ror.org/042epbw18', 'no_lang_code', 1, 'https://ror.org/042epbw18 IP Group (United Kingdom)'),
(18338, 'https://ror.org/01s3w4134', 'no_lang_code', 1, 'https://ror.org/01s3w4134 IGI Technologies (United States)'),
(18339, 'https://ror.org/058cxws58', 'no_lang_code', 1, 'https://ror.org/058cxws58 Intel (United Kingdom)'),
(18340, 'https://ror.org/05gsw2536', 'no_lang_code', 1, 'https://ror.org/05gsw2536 IGNIS Innovation (Canada)'),
(18341, 'https://ror.org/00dgkkx07', 'no_lang_code', 1, 'https://ror.org/00dgkkx07 Institut für Getreideverarbeitung (Germany)'),
(18342, 'https://ror.org/013e7et93', 'de', 1, 'https://ror.org/013e7et93 Leipziger Institut für Energie'),
(18343, 'https://ror.org/037sqac13', 'no_lang_code', 1, 'https://ror.org/037sqac13 Intelen (Cyprus)'),
(18344, 'https://ror.org/001rww263', 'no_lang_code', 1, 'https://ror.org/001rww263 Murata (France)'),
(18345, 'https://ror.org/01wmp8x44', 'no_lang_code', 1, 'https://ror.org/01wmp8x44 Ikona (United States)'),
(18346, 'https://ror.org/05v5s8n75', 'no_lang_code', 1, 'https://ror.org/05v5s8n75 Ipec (United Kingdom)'),
(18347, 'https://ror.org/003aveg56', 'no_lang_code', 1, 'https://ror.org/003aveg56 Ilika (United Kingdom)'),
(18348, 'https://ror.org/03f9m1k43', 'no_lang_code', 1, 'https://ror.org/03f9m1k43 BP (France)'),
(18349, 'https://ror.org/05tzsrw37', 'en', 1, 'https://ror.org/05tzsrw37 Joint Nature Conservation Committee'),
(18350, 'https://ror.org/03gpg3e34', 'no_lang_code', 1, 'https://ror.org/03gpg3e34 Pillar (Ukraine)'),
(18351, 'https://ror.org/04hsqns05', 'no_lang_code', 1, 'https://ror.org/04hsqns05 IPCOS (Belgium)');
INSERT INTO `rors` VALUES
(18352, 'https://ror.org/034d3kf40', 'no_lang_code', 1, 'https://ror.org/034d3kf40 Telekom Srbija (Serbia)'),
(18353, 'https://ror.org/0277e9g92', 'no_lang_code', 1, 'https://ror.org/0277e9g92 iProov (United Kingdom)'),
(18354, 'https://ror.org/00jafye06', 'no_lang_code', 1, 'https://ror.org/00jafye06 Intelligentsia Consultants (Luxembourg)'),
(18355, 'https://ror.org/035eg8817', 'no_lang_code', 1, 'https://ror.org/035eg8817 Qiagen (France)'),
(18356, 'https://ror.org/04083zv18', 'no_lang_code', 1, 'https://ror.org/04083zv18 Intelligent Mechatronic Systems (United States)'),
(18357, 'https://ror.org/006xake10', 'en', 1, 'https://ror.org/006xake10 Jones County Junior College'),
(18358, 'https://ror.org/00e7ske31', 'no_lang_code', 1, 'https://ror.org/00e7ske31 Intellipro Group (United States)'),
(18359, 'https://ror.org/008qv5513', 'no_lang_code', 1, 'https://ror.org/008qv5513 Intellispeak (United States)'),
(18360, 'https://ror.org/044as9138', 'no_lang_code', 1, 'https://ror.org/044as9138 IntelliView Technologies (Canada)'),
(18361, 'https://ror.org/0260kc719', 'no_lang_code', 1, 'https://ror.org/0260kc719 Intempora (France)'),
(18362, 'https://ror.org/02gewd711', 'no_lang_code', 1, 'https://ror.org/02gewd711 Inter-Euro Technology'),
(18363, 'https://ror.org/0163xqp73', 'en', 1, 'https://ror.org/0163xqp73 IUF - Leibniz-Institut für umweltmedizinische Forschung Leibniz Institute of Environmental Medicine'),
(18364, 'https://ror.org/04r3h5j56', 'no_lang_code', 1, 'https://ror.org/04r3h5j56 Jowat (Germany)'),
(18365, 'https://ror.org/018ed3c32', 'no_lang_code', 1, 'https://ror.org/018ed3c32 Institut IGH (Croatia)'),
(18366, 'https://ror.org/0008zj958', 'no_lang_code', 1, 'https://ror.org/0008zj958 JPT Peptide Technologies (Germany)'),
(18367, 'https://ror.org/01h9s9j69', 'no_lang_code', 1, 'https://ror.org/01h9s9j69 JRI Orthopaedics (United Kingdom)'),
(18368, 'https://ror.org/056n4cb97', 'no_lang_code', 1, 'https://ror.org/056n4cb97 Jürging (Germany)'),
(18369, 'https://ror.org/04fax8843', 'no_lang_code', 1, 'https://ror.org/04fax8843 Juice Technology (United Kingdom)'),
(18370, 'https://ror.org/05gh88052', 'no_lang_code', 1, 'https://ror.org/05gh88052 iQur (United Kingdom)'),
(18371, 'https://ror.org/03xvpr131', 'no_lang_code', 1, 'https://ror.org/03xvpr131 Jule (United States)'),
(18372, 'https://ror.org/02t84dn55', 'en', 1, 'https://ror.org/02t84dn55 IRC International Water and Sanitation Centre'),
(18373, 'https://ror.org/02t5ee083', 'no_lang_code', 1, 'https://ror.org/02t5ee083 Interactive Flow Studies (United States)'),
(18374, 'https://ror.org/03cr5p796', 'no_lang_code', 1, 'https://ror.org/03cr5p796 Learning Express Toys (United States)'),
(18375, 'https://ror.org/05hmdkd37', 'no_lang_code', 1, 'https://ror.org/05hmdkd37 Learning Multi Systems (United States)'),
(18376, 'https://ror.org/03hcjbn12', 'no_lang_code', 1, 'https://ror.org/03hcjbn12 interactive instruments (Germany)'),
(18377, 'https://ror.org/03534h624', 'en', 1, 'https://ror.org/03534h624 JustCommunity'),
(18378, 'https://ror.org/034vz8e35', 'en', 1, 'https://ror.org/034vz8e35 Justice & Public Safety Cabinet'),
(18379, 'https://ror.org/044yv1k53', 'en', 1, 'https://ror.org/044yv1k53 Justice Resource Institute'),
(18380, 'https://ror.org/0188sk047', 'no_lang_code', 1, 'https://ror.org/0188sk047 Irecoop Emilia-Romagna (Italy)'),
(18381, 'https://ror.org/01xvfw287', 'no_lang_code', 1, 'https://ror.org/01xvfw287 Leuco Ledermann (Germany)'),
(18382, 'https://ror.org/04z08rc02', 'no_lang_code', 1, 'https://ror.org/04z08rc02 Iren Acqua Gas (Italy)'),
(18383, 'https://ror.org/0243mn861', 'no_lang_code', 1, 'https://ror.org/0243mn861 JXT Applications (United States)'),
(18384, 'https://ror.org/04svmrs70', 'no_lang_code', 1, 'https://ror.org/04svmrs70 Intercytex (United Kingdom)'),
(18385, 'https://ror.org/02wp9w043', 'en', 1, 'https://ror.org/02wp9w043 Leeds City Council'),
(18386, 'https://ror.org/04rd5j182', 'no_lang_code', 1, 'https://ror.org/04rd5j182 Leeoat (United States)'),
(18387, 'https://ror.org/04zssq864', 'no_lang_code', 1, 'https://ror.org/04zssq864 K&S Projektmanagement (Germany)'),
(18388, 'https://ror.org/00zg7c252', 'no_lang_code', 1, 'https://ror.org/00zg7c252 IRGO Consulting (Slovenia) InŔtitut za rudarstvo, geotehnologijo in okolje'),
(18389, 'https://ror.org/01611w595', 'en', 1, 'https://ror.org/01611w595 Iris House'),
(18390, 'https://ror.org/03v7mfg33', 'en', 1, 'https://ror.org/03v7mfg33 Legacy Community Health Services'),
(18391, 'https://ror.org/008rbpk15', 'no_lang_code', 1, 'https://ror.org/008rbpk15 Interface Biologics (Canada)'),
(18392, 'https://ror.org/05kxkjm75', 'no_lang_code', 1, 'https://ror.org/05kxkjm75 Interface Europe (Belgium)'),
(18393, 'https://ror.org/014q4ab21', 'it', 1, 'https://ror.org/014q4ab21 Legambiente'),
(18394, 'https://ror.org/03731r596', 'no_lang_code', 1, 'https://ror.org/03731r596 Legendary Games (United Kingdom)'),
(18395, 'https://ror.org/02dzg8324', 'no_lang_code', 1, 'https://ror.org/02dzg8324 Kaleido Technology (Denmark)'),
(18396, 'https://ror.org/03nte2z44', 'no_lang_code', 1, 'https://ror.org/03nte2z44 Iris (Italy)'),
(18397, 'https://ror.org/00vryq048', 'no_lang_code', 1, 'https://ror.org/00vryq048 KALGEn Consultants (United States)'),
(18398, 'https://ror.org/020zw1p93', 'no_lang_code', 1, 'https://ror.org/020zw1p93 Iris Vernici (Italy)'),
(18399, 'https://ror.org/05f2srq42', 'no_lang_code', 1, 'https://ror.org/05f2srq42 Stratasys (United States)'),
(18400, 'https://ror.org/03e491272', 'en', 1, 'https://ror.org/03e491272 Irish Congress of Trade Unions'),
(18401, 'https://ror.org/02brx1k43', 'no_lang_code', 1, 'https://ror.org/02brx1k43 Interfusion Services (Cyprus)'),
(18402, 'https://ror.org/02y1mqg45', 'no_lang_code', 1, 'https://ror.org/02y1mqg45 Irish Hydrodata (Ireland)'),
(18403, 'https://ror.org/02kg29r51', 'no_lang_code', 1, 'https://ror.org/02kg29r51 Kampakas (Greece)'),
(18404, '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'),
(18405, 'https://ror.org/02j809324', 'en', 1, 'https://ror.org/02j809324 Kanlo Consultants'),
(18406, 'https://ror.org/00hkhma91', 'en', 1, 'https://ror.org/00hkhma91 International Association of Environmental Mutagenesis and Genomics Societies'),
(18407, 'https://ror.org/05nx6m946', 'fi', 1, 'https://ror.org/05nx6m946 Arkistolaitos National Archives Service'),
(18408, 'https://ror.org/01fwrew07', 'no_lang_code', 1, 'https://ror.org/01fwrew07 Starlab (United States)'),
(18409, 'https://ror.org/01jb23d14', 'no_lang_code', 1, 'https://ror.org/01jb23d14 IMS Maxims (Ireland)'),
(18410, 'https://ror.org/014s9rr70', 'en', 1, 'https://ror.org/014s9rr70 Kansas City CARE Clinic'),
(18411, 'https://ror.org/05wbr5e76', 'en', 1, 'https://ror.org/05wbr5e76 Kansas Department for Aging and Disability Services'),
(18412, 'https://ror.org/00jvx3029', 'en', 1, 'https://ror.org/00jvx3029 Kansas State Department of Education'),
(18413, 'https://ror.org/00nan4c27', 'no_lang_code', 1, 'https://ror.org/00nan4c27 Inter Science Research Associates (United States)'),
(18414, 'https://ror.org/05w6jpy68', 'no_lang_code', 1, 'https://ror.org/05w6jpy68 Kanthal (Sweden)'),
(18415, 'https://ror.org/00gtfax65', 'en', 1, 'https://ror.org/00gtfax65 International Atomic Energy Agency'),
(18416, 'https://ror.org/05der9a39', 'no_lang_code', 1, 'https://ror.org/05der9a39 Lemvig VarmevƦrk (Denmark)'),
(18417, 'https://ror.org/043hjsp66', 'en', 1, 'https://ror.org/043hjsp66 P.L. Kapitza Institute for Physical Problems Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физических проблем имени П. Š›. ŠšŠ°ŠæŠøŃ†Ń‹ Š ŠŠ'),
(18418, 'https://ror.org/02fpfg069', 'no_lang_code', 1, 'https://ror.org/02fpfg069 International Automotive Desig (United Kingdom)'),
(18419, 'https://ror.org/03mh23547', 'no_lang_code', 1, 'https://ror.org/03mh23547 Ironbound Films (United States)'),
(18420, 'https://ror.org/05x6z3731', 'no_lang_code', 1, 'https://ror.org/05x6z3731 International Biomedical (United States)'),
(18421, 'https://ror.org/02rp48z36', 'no_lang_code', 1, 'https://ror.org/02rp48z36 Lenntech (Netherlands)'),
(18422, 'https://ror.org/02tk2gv85', 'no_lang_code', 1, 'https://ror.org/02tk2gv85 Kapsch (Austria)'),
(18423, 'https://ror.org/00vxbb377', 'no_lang_code', 1, 'https://ror.org/00vxbb377 Lenz Instruments (Spain)'),
(18424, 'https://ror.org/04s4agn64', 'en', 1, 'https://ror.org/04s4agn64 International Brotherhood of Teamsters'),
(18425, 'https://ror.org/010hax789', 'en', 1, 'https://ror.org/010hax789 International center for Advancement of Research Technology and Innovation'),
(18426, 'https://ror.org/019v3r356', 'no_lang_code', 1, 'https://ror.org/019v3r356 Karmic (Switzerland)'),
(18427, 'https://ror.org/00rk1ea29', 'en', 1, 'https://ror.org/00rk1ea29 International Centre for Black Sea Studies'),
(18428, 'https://ror.org/029508905', 'en', 1, 'https://ror.org/029508905 International Center for Minority Studies and Intercultural Relations'),
(18429, 'https://ror.org/01j73pp16', 'no_lang_code', 1, 'https://ror.org/01j73pp16 Leonardo Film (Germany)'),
(18430, 'https://ror.org/004vnf813', 'no_lang_code', 1, 'https://ror.org/004vnf813 Katchem (Czechia)'),
(18431, 'https://ror.org/02zk9yr48', 'no_lang_code', 1, 'https://ror.org/02zk9yr48 Leotech Rapid Prototyping und Werkzeugbau (Germany)'),
(18432, 'https://ror.org/05x3a2381', 'no_lang_code', 1, 'https://ror.org/05x3a2381 KCET'),
(18433, 'https://ror.org/02z2hxe94', 'it', 1, 'https://ror.org/02z2hxe94 Centre of Theoretical and Applied Ecology Centro di Ecologia Teorica ed Applicata'),
(18434, 'https://ror.org/02r2nj961', 'no_lang_code', 1, 'https://ror.org/02r2nj961 Irvine Sensors (United States)'),
(18435, 'https://ror.org/02k74w593', 'en', 1, 'https://ror.org/02k74w593 Irvine Unified School District'),
(18436, 'https://ror.org/006exzm93', 'no_lang_code', 1, 'https://ror.org/006exzm93 Morris Leslie Group (United Kingdom)'),
(18437, 'https://ror.org/01xyb4y13', 'fr', 1, 'https://ror.org/01xyb4y13 Espace pour la vie Space for Life'),
(18438, 'https://ror.org/004jpn268', 'no_lang_code', 1, 'https://ror.org/004jpn268 Lesprojekt (Czechia)'),
(18439, 'https://ror.org/02c7f4b44', 'no_lang_code', 1, 'https://ror.org/02c7f4b44 Lesswire (Germany)'),
(18440, 'https://ror.org/05np0jp17', 'en', 1, 'https://ror.org/05np0jp17 Lethbridge College'),
(18441, 'https://ror.org/03qyvqf30', 'en', 1, 'https://ror.org/03qyvqf30 IS practice'),
(18442, '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'),
(18443, 'https://ror.org/018x1vg82', 'no_lang_code', 1, 'https://ror.org/018x1vg82 KE-Works (Netherlands)'),
(18444, 'https://ror.org/03k3apd45', 'en', 1, 'https://ror.org/03k3apd45 International Commission on Radiological Protection'),
(18445, 'https://ror.org/006828x19', 'no_lang_code', 1, 'https://ror.org/006828x19 Level 7 Systems (United Kingdom)'),
(18446, 'https://ror.org/05vb5dy28', 'en', 1, 'https://ror.org/05vb5dy28 International Dark Sky Association'),
(18447, 'https://ror.org/02sm33451', 'no_lang_code', 1, 'https://ror.org/02sm33451 Keep Solutions (Portugal)'),
(18448, 'https://ror.org/05f5ae947', 'no_lang_code', 1, 'https://ror.org/05f5ae947 Levitronix (United States)'),
(18449, 'https://ror.org/03gzf5338', 'en', 1, 'https://ror.org/03gzf5338 International Ecological Engineering Society'),
(18450, 'https://ror.org/00n8ttd98', 'en', 1, 'https://ror.org/00n8ttd98 Institute of Atmospheric Sciences and Climate Istituto di Scienze dell''Atmosfera e del Clima'),
(18451, 'https://ror.org/03nqngt38', 'en', 1, 'https://ror.org/03nqngt38 International Fishmeal and Oil Manufacturers Association'),
(18452, 'https://ror.org/04p276q92', 'en', 1, 'https://ror.org/04p276q92 ISC Intelligence in Science'),
(18453, 'https://ror.org/023ew8649', 'no_lang_code', 1, 'https://ror.org/023ew8649 IDS Scheer (Czechia)'),
(18454, 'https://ror.org/036w35s91', 'no_lang_code', 1, 'https://ror.org/036w35s91 Kelliher & Associates (United States)'),
(18455, 'https://ror.org/020bpey71', 'no_lang_code', 1, 'https://ror.org/020bpey71 PoƧo Bravo Marbles (Portugal)'),
(18456, 'https://ror.org/050k5ft87', 'en', 1, 'https://ror.org/050k5ft87 Mars Hill University'),
(18457, 'https://ror.org/05vphmq64', 'en', 1, 'https://ror.org/05vphmq64 Natrona County School District'),
(18458, 'https://ror.org/031khrq71', 'no_lang_code', 1, 'https://ror.org/031khrq71 MARS Laser (Germany)'),
(18459, 'https://ror.org/05pt5rg11', 'no_lang_code', 1, 'https://ror.org/05pt5rg11 LexRite (United States)'),
(18460, 'https://ror.org/023man992', 'no_lang_code', 1, 'https://ror.org/023man992 Marshalls (United Kingdom)'),
(18461, 'https://ror.org/0408a5x16', 'no_lang_code', 1, 'https://ror.org/0408a5x16 Bühler (Germany)'),
(18462, 'https://ror.org/056vvdf79', 'no_lang_code', 1, 'https://ror.org/056vvdf79 Marsilio Editori (Italy)'),
(18463, 'https://ror.org/021n2jk87', 'no_lang_code', 1, 'https://ror.org/021n2jk87 Airwave Solutions (United Kingdom)'),
(18464, 'https://ror.org/02wghjg14', 'no_lang_code', 1, 'https://ror.org/02wghjg14 Integrated Systems Development (Greece)'),
(18465, 'https://ror.org/008h20257', 'no_lang_code', 1, 'https://ror.org/008h20257 Martech International (Belgium)'),
(18466, 'https://ror.org/03fadn241', 'no_lang_code', 1, 'https://ror.org/03fadn241 Martechnic (Germany)'),
(18467, 'https://ror.org/03hx2yz19', 'no_lang_code', 1, 'https://ror.org/03hx2yz19 Paccar (United Kingdom)'),
(18468, 'https://ror.org/02khq4z72', 'no_lang_code', 1, 'https://ror.org/02khq4z72 Kelvin Nanotechnology (United Kingdom)'),
(18469, 'https://ror.org/01j262e40', 'no_lang_code', 1, 'https://ror.org/01j262e40 Mouchel (United Kingdom)'),
(18470, 'https://ror.org/05j7s4w29', 'no_lang_code', 1, 'https://ror.org/05j7s4w29 SGH Martineau (United Kingdom)'),
(18471, 'https://ror.org/00m5yvh71', 'no_lang_code', 1, 'https://ror.org/00m5yvh71 Lhoist (United Kingdom)'),
(18472, 'https://ror.org/0343dap81', 'en', 1, 'https://ror.org/0343dap81 IEEE Information Theory Society'),
(18473, 'https://ror.org/05xvkjh87', 'no_lang_code', 1, 'https://ror.org/05xvkjh87 Metabolomx (United States)'),
(18474, 'https://ror.org/00vj8w868', 'en', 1, 'https://ror.org/00vj8w868 Marygrove College'),
(18475, 'https://ror.org/05vyrqa83', 'en', 1, 'https://ror.org/05vyrqa83 Marylhurst University'),
(18476, 'https://ror.org/01q44vc25', 'no_lang_code', 1, 'https://ror.org/01q44vc25 Kenaf Eco Fibers Italia (Italy)'),
(18477, 'https://ror.org/03w3w9873', 'en', 1, 'https://ror.org/03w3w9873 Maryland Public Television'),
(18478, 'https://ror.org/017e5zc16', 'no_lang_code', 1, 'https://ror.org/017e5zc16 Industrielle Steuerungstechnik (Germany)'),
(18479, 'https://ror.org/014g5ne65', 'no_lang_code', 1, 'https://ror.org/014g5ne65 Libertine FPE (United Kingdom)'),
(18480, 'https://ror.org/05w8pa285', 'no_lang_code', 1, 'https://ror.org/05w8pa285 Iron Pump (Denmark)'),
(18481, 'https://ror.org/00yhce098', 'no_lang_code', 1, 'https://ror.org/00yhce098 Librt (Netherlands)'),
(18482, 'https://ror.org/003nw0037', 'no_lang_code', 1, 'https://ror.org/003nw0037 Masmec (Italy)'),
(18483, 'https://ror.org/04e6e5356', 'en', 1, 'https://ror.org/04e6e5356 Masonry Society'),
(18484, 'https://ror.org/00dk3f710', 'no_lang_code', 1, 'https://ror.org/00dk3f710 Mass Spec Analytical (United Kingdom)'),
(18485, 'https://ror.org/01a99rs65', 'no_lang_code', 1, 'https://ror.org/01a99rs65 Kennametal (United Kingdom)'),
(18486, 'https://ror.org/02tab1h96', 'en', 1, 'https://ror.org/02tab1h96 Massachusetts Department of Elementary and Secondary Education'),
(18487, 'https://ror.org/03wbpr740', 'no_lang_code', 1, 'https://ror.org/03wbpr740 Innovative Solution In Space (Netherlands)'),
(18488, 'https://ror.org/03wgq5m90', 'en', 1, 'https://ror.org/03wgq5m90 Massachusetts Department of Higher Education'),
(18489, 'https://ror.org/04rfx4365', 'en', 1, 'https://ror.org/04rfx4365 Licking County Alcoholism Prevention Program'),
(18490, 'https://ror.org/02zm9fh11', 'en', 1, 'https://ror.org/02zm9fh11 Lietuvos dailės muziejus Lithuanian Art Museum'),
(18491, 'https://ror.org/04574r077', 'en', 1, 'https://ror.org/04574r077 Lietuvos Mokslininkų Sąjungos Lithuanian Scientific Society'),
(18492, 'https://ror.org/02jv9nh47', 'en', 1, 'https://ror.org/02jv9nh47 AcadƩmie de marine du massachusetts Massachusetts Maritime Academy'),
(18493, 'https://ror.org/038jkh114', 'no_lang_code', 1, 'https://ror.org/038jkh114 Kentech Instruments (United Kingdom)'),
(18494, 'https://ror.org/0018fr046', 'en', 1, 'https://ror.org/0018fr046 Life Lab'),
(18495, 'https://ror.org/05rtb6q31', 'no_lang_code', 1, 'https://ror.org/05rtb6q31 Life Length (Spain)'),
(18496, 'https://ror.org/009x4vx18', 'en', 1, 'https://ror.org/009x4vx18 Islenet'),
(18497, 'https://ror.org/050d44380', 'en', 1, 'https://ror.org/050d44380 Life Science Association of Manitoba'),
(18498, 'https://ror.org/010d6p438', 'no_lang_code', 1, 'https://ror.org/010d6p438 Life Systems (United States)'),
(18499, 'https://ror.org/0373f6s78', 'no_lang_code', 1, 'https://ror.org/0373f6s78 Innovative Technologies Center (Greece) ĪšĪ­Ī½Ļ„ĻĪæ ĪŗĪ±Ī¹Ī½ĪæĻ„ĻŒĪ¼Ļ‰Ī½ Ļ„ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĻŽĪ½'),
(18500, 'https://ror.org/05sz9r015', 'en', 1, 'https://ror.org/05sz9r015 Massachusetts General Court'),
(18501, 'https://ror.org/03gkfpj41', 'no_lang_code', 1, 'https://ror.org/03gkfpj41 Icelandic New Energy (Iceland)'),
(18502, 'https://ror.org/01hsff479', 'en', 1, 'https://ror.org/01hsff479 Kentucky Department of Education'),
(18503, 'https://ror.org/02w6ewz22', 'en', 1, 'https://ror.org/02w6ewz22 Iceland GeoSurvey ƍslenskar orkurannsóknir'),
(18504, 'https://ror.org/0069fh197', 'no_lang_code', 1, 'https://ror.org/0069fh197 Kepar Electronica (Spain)'),
(18505, 'https://ror.org/00vcrft92', 'no_lang_code', 1, 'https://ror.org/00vcrft92 Kepstrum (Canada)'),
(18506, 'https://ror.org/058f8dm33', 'no_lang_code', 1, 'https://ror.org/058f8dm33 LifeGlimmer (Germany)'),
(18507, 'https://ror.org/0040q1c48', 'no_lang_code', 1, 'https://ror.org/0040q1c48 Agrii (United Kingdom)'),
(18508, 'https://ror.org/00hq2z256', 'no_lang_code', 1, 'https://ror.org/00hq2z256 Keraben Grupo (Spain)'),
(18509, 'https://ror.org/03kdt9j02', 'no_lang_code', 1, 'https://ror.org/03kdt9j02 Keracol (United Kingdom)'),
(18510, 'https://ror.org/03mmsp106', 'no_lang_code', 1, 'https://ror.org/03mmsp106 KeraMed (United States)'),
(18511, 'https://ror.org/01dyrtb20', 'no_lang_code', 1, 'https://ror.org/01dyrtb20 Munich Re (United States)'),
(18512, 'https://ror.org/019evbm58', 'it', 1, 'https://ror.org/019evbm58 Istituto Sperimentale Modelli E Strutture'),
(18513, 'https://ror.org/03aajm102', 'no_lang_code', 1, 'https://ror.org/03aajm102 Keronite (United Kingdom)'),
(18514, 'https://ror.org/04f9m0784', 'no_lang_code', 1, 'https://ror.org/04f9m0784 LifeSensors (United States)'),
(18515, 'https://ror.org/03hx4fx74', 'en', 1, 'https://ror.org/03hx4fx74 Keuka College'),
(18516, 'https://ror.org/01qa19b44', 'no_lang_code', 1, 'https://ror.org/01qa19b44 Mars (United Kingdom)'),
(18517, 'https://ror.org/03v2e2v10', 'en', 1, 'https://ror.org/03v2e2v10 Nederland Voedsel- en Waren Autoriteit Netherlands Food and Consumer Product Safety Authority'),
(18518, 'https://ror.org/03t15zy94', 'no_lang_code', 1, 'https://ror.org/03t15zy94 LifeTec Group (Netherlands)'),
(18519, 'https://ror.org/05mchsq43', 'en', 1, 'https://ror.org/05mchsq43 Keweenaw Bay Ojibwa Community College'),
(18520, 'https://ror.org/05wx9za24', 'no_lang_code', 1, 'https://ror.org/05wx9za24 Ortec (France)'),
(18521, 'https://ror.org/03tx9ef16', 'no_lang_code', 1, 'https://ror.org/03tx9ef16 Materia (United States)'),
(18522, 'https://ror.org/004tefm87', 'no_lang_code', 1, 'https://ror.org/004tefm87 Isofoton (Spain)'),
(18523, 'https://ror.org/03m9crh17', 'no_lang_code', 1, 'https://ror.org/03m9crh17 III-N Technology (United States)'),
(18524, 'https://ror.org/01wekt990', 'no_lang_code', 1, 'https://ror.org/01wekt990 Light Prescriptions Innovators (Spain)'),
(18525, 'https://ror.org/034x1ve75', 'no_lang_code', 1, 'https://ror.org/034x1ve75 McGraw-Hill Education (United States)'),
(18526, 'https://ror.org/05tpn0h14', 'no_lang_code', 1, 'https://ror.org/05tpn0h14 LightForm (United States)'),
(18527, 'https://ror.org/05sjw7d59', 'no_lang_code', 1, 'https://ror.org/05sjw7d59 Key Industrial Software Systems (United Kingdom)'),
(18528, 'https://ror.org/02165q211', 'no_lang_code', 1, 'https://ror.org/02165q211 LightMachinery (Canada)'),
(18529, 'https://ror.org/0401a6w30', 'en', 1, 'https://ror.org/0401a6w30 Keys for Networking'),
(18530, 'https://ror.org/04zym2g32', 'no_lang_code', 1, 'https://ror.org/04zym2g32 Lightpoint Medical (United Kingdom)'),
(18531, 'https://ror.org/00marjb61', 'no_lang_code', 1, 'https://ror.org/00marjb61 Materials Innovation Technologies (United States)'),
(18532, 'https://ror.org/0050kdp78', 'no_lang_code', 1, 'https://ror.org/0050kdp78 Materials Science International Services (Germany)'),
(18533, 'https://ror.org/02w1sf669', 'no_lang_code', 1, 'https://ror.org/02w1sf669 Isovolta (Austria)'),
(18534, 'https://ror.org/0504yp647', 'no_lang_code', 1, 'https://ror.org/0504yp647 Materials Solutions (United Kingdom)'),
(18535, 'https://ror.org/02enqcp25', 'no_lang_code', 1, 'https://ror.org/02enqcp25 Limbs Alive (United Kingdom)'),
(18536, 'https://ror.org/05mgtkj71', 'no_lang_code', 1, 'https://ror.org/05mgtkj71 Limetec (United Kingdom)'),
(18537, 'https://ror.org/04nt8wd35', 'en', 1, 'https://ror.org/04nt8wd35 Comhairle Contae Luimnigh Limerick County Council'),
(18538, 'https://ror.org/0132r2f10', 'no_lang_code', 1, 'https://ror.org/0132r2f10 Kinedyne (United States)'),
(18539, 'https://ror.org/00k320b46', 'no_lang_code', 1, 'https://ror.org/00k320b46 Ion Linac Systems (United States)'),
(18540, 'https://ror.org/03pd1sq22', 'no_lang_code', 1, 'https://ror.org/03pd1sq22 Linagora (France)'),
(18541, 'https://ror.org/00mzrph17', 'en', 1, 'https://ror.org/00mzrph17 Lincoln Park Zoo'),
(18542, 'https://ror.org/0393dce17', 'no_lang_code', 1, 'https://ror.org/0393dce17 Maire Tecnimont (Italy)'),
(18543, 'https://ror.org/02d1pme30', 'no_lang_code', 1, 'https://ror.org/02d1pme30 Kirkstall (United Kingdom)'),
(18544, 'https://ror.org/05j59av97', 'en', 1, 'https://ror.org/05j59av97 Kista Photonics Research Center'),
(18545, 'https://ror.org/056xved97', 'en', 1, 'https://ror.org/056xved97 Lindamood-Bell'),
(18546, 'https://ror.org/050pc9c24', 'no_lang_code', 1, 'https://ror.org/050pc9c24 Kistler (Switzerland)'),
(18547, 'https://ror.org/00eakxg05', 'no_lang_code', 1, 'https://ror.org/00eakxg05 Mosaix Software (United States)'),
(18548, 'https://ror.org/01vyc5m15', 'no_lang_code', 1, 'https://ror.org/01vyc5m15 Kite Innovation (United Kingdom)'),
(18549, 'https://ror.org/019syv921', 'no_lang_code', 1, 'https://ror.org/019syv921 Linguamatics (United Kingdom)'),
(18550, 'https://ror.org/05x8aff37', 'no_lang_code', 1, 'https://ror.org/05x8aff37 Matrasur Composites (France)'),
(18551, 'https://ror.org/02b4afs97', 'pt', 1, 'https://ror.org/02b4afs97 IrRADIARE'),
(18552, 'https://ror.org/00mkw8c80', 'no_lang_code', 1, 'https://ror.org/00mkw8c80 KloƩ (France)'),
(18553, 'https://ror.org/03tzy5638', 'no_lang_code', 1, 'https://ror.org/03tzy5638 Link2Energy (United Kingdom)'),
(18554, 'https://ror.org/02fb3ta41', 'no_lang_code', 1, 'https://ror.org/02fb3ta41 Matres (Italy)'),
(18555, 'https://ror.org/02vzrk436', 'en', 1, 'https://ror.org/02vzrk436 Vibrant Emotional Health'),
(18556, 'https://ror.org/031mpgh04', 'no_lang_code', 1, 'https://ror.org/031mpgh04 Linkra (Italy)'),
(18557, 'https://ror.org/04a37aq75', 'no_lang_code', 1, 'https://ror.org/04a37aq75 Omnicom Group (United States)'),
(18558, 'https://ror.org/04pg24b43', 'en', 1, 'https://ror.org/04pg24b43 Links Incorporated'),
(18559, 'https://ror.org/01md11a61', 'no_lang_code', 1, 'https://ror.org/01md11a61 Kleinewefers Kunststoffanlagen (Germany)'),
(18560, 'https://ror.org/03gr38452', 'no_lang_code', 1, 'https://ror.org/03gr38452 Metallurgische Verfahrenstechnik (Germany)'),
(18561, 'https://ror.org/05mydvn22', 'en', 1, 'https://ror.org/05mydvn22 Massachusetts Technology Collaborative'),
(18562, 'https://ror.org/0190rg629', 'no_lang_code', 1, 'https://ror.org/0190rg629 Knauf (Germany)'),
(18563, 'https://ror.org/010c9nr19', 'no_lang_code', 1, 'https://ror.org/010c9nr19 Knorr-Bremse (Germany)'),
(18564, 'https://ror.org/01e35h870', 'en', 1, 'https://ror.org/01e35h870 European Learning Industry Group'),
(18565, 'https://ror.org/01d28vn04', 'no_lang_code', 1, 'https://ror.org/01d28vn04 KiNNO'),
(18566, 'https://ror.org/0137qt802', 'en', 1, 'https://ror.org/0137qt802 Knowledge Innovation Market'),
(18567, 'https://ror.org/001kwas94', 'no_lang_code', 1, 'https://ror.org/001kwas94 Knowledge Integration (United Kingdom)'),
(18568, 'https://ror.org/01me3dp58', 'no_lang_code', 1, 'https://ror.org/01me3dp58 Knowledge Now (United Kingdom)'),
(18569, 'https://ror.org/05yapj268', 'en', 1, 'https://ror.org/05yapj268 Education Scotland Foghlam Alba'),
(18570, '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'),
(18571, 'https://ror.org/05fahdk25', 'no_lang_code', 1, 'https://ror.org/05fahdk25 Knudsen Plast (Denmark)'),
(18572, 'https://ror.org/014cycx13', 'it', 1, 'https://ror.org/014cycx13 Istituto Centrale per la Ricerca Scientifica e Tecnologica Applicata al Mare'),
(18573, 'https://ror.org/02trhs052', 'no_lang_code', 1, 'https://ror.org/02trhs052 KOAC'),
(18574, 'https://ror.org/0166gt567', 'no_lang_code', 1, 'https://ror.org/0166gt567 Koba Institute'),
(18575, 'https://ror.org/041554441', 'no_lang_code', 1, 'https://ror.org/041554441 ConMed (Finland)'),
(18576, 'https://ror.org/0378pjg29', 'no_lang_code', 1, 'https://ror.org/0378pjg29 Kombiverkehr (Germany)'),
(18577, 'https://ror.org/01pk3tm20', 'no_lang_code', 1, 'https://ror.org/01pk3tm20 Kommunedata (Denmark)'),
(18578, 'https://ror.org/029znv963', 'en', 1, 'https://ror.org/029znv963 Kommunenes Sentralforbund Norwegian Association of Local and Regional Authorities'),
(18579, 'https://ror.org/05vnnaf55', 'no_lang_code', 1, 'https://ror.org/05vnnaf55 Kompania Węglowa (Poland)'),
(18580, 'https://ror.org/056g65q42', 'en', 1, 'https://ror.org/056g65q42 Berlin Centre of Competence for Water Kompetenzzentrum Wasser Berlin'),
(18581, 'https://ror.org/03f8sb410', 'no_lang_code', 1, 'https://ror.org/03f8sb410 Maus (Germany)'),
(18582, 'https://ror.org/00x5h0d60', 'no_lang_code', 1, 'https://ror.org/00x5h0d60 KITH (Norway) Norwegian Centre for Informatics in Health and Social Care'),
(18583, 'https://ror.org/0329n2y83', 'no_lang_code', 1, 'https://ror.org/0329n2y83 Max Fordham (United Kingdom)'),
(18584, 'https://ror.org/02yh73909', 'no_lang_code', 1, 'https://ror.org/02yh73909 ImaSight (Canada)'),
(18585, 'https://ror.org/022eec223', 'no_lang_code', 1, 'https://ror.org/022eec223 LiqTech (Denmark)'),
(18586, 'https://ror.org/003fmz167', 'it', 1, 'https://ror.org/003fmz167 Istituto di Ricerche Economiche e Sociali'),
(18587, 'https://ror.org/03ve07f57', 'no_lang_code', 1, 'https://ror.org/03ve07f57 Kongsberg Gruppen (Norway)'),
(18588, 'https://ror.org/02j6gm739', 'en', 1, 'https://ror.org/02j6gm739 Max Planck Institute for Solar System Research Max-Planck-Institut für Sonnensystemforschung'),
(18589, 'https://ror.org/0060zp422', 'no_lang_code', 1, 'https://ror.org/0060zp422 Koninklijke BAM Groep Royal BAM Group (Netherlands)'),
(18590, 'https://ror.org/04dszkr43', 'no_lang_code', 1, 'https://ror.org/04dszkr43 De Agostini (Italy)'),
(18591, 'https://ror.org/0317phh79', 'no_lang_code', 1, 'https://ror.org/0317phh79 MaxCyte (United States)'),
(18592, 'https://ror.org/05ym5dp96', 'en', 1, 'https://ror.org/05ym5dp96 Liverpool City Council'),
(18593, 'https://ror.org/03hm54n21', 'it', 1, 'https://ror.org/03hm54n21 Istituto Italiano della Saldatura Italian Institute of Welding'),
(18594, 'https://ror.org/0466zcr09', 'en', 1, 'https://ror.org/0466zcr09 SkyTeam'),
(18595, 'https://ror.org/02svcmy74', 'no_lang_code', 1, 'https://ror.org/02svcmy74 LiveU (Israel)'),
(18596, 'https://ror.org/05sft7551', 'no_lang_code', 1, 'https://ror.org/05sft7551 Living Systems (United States)'),
(18597, 'https://ror.org/03qfyes53', 'no_lang_code', 1, 'https://ror.org/03qfyes53 Interaction Design (United Kingdom)'),
(18598, 'https://ror.org/02ys6ht81', 'no_lang_code', 1, 'https://ror.org/02ys6ht81 Livos (Germany)'),
(18599, 'https://ror.org/05kxf7578', 'no_lang_code', 1, 'https://ror.org/05kxf7578 Sphinx (Netherlands)'),
(18600, 'https://ror.org/01eppzd87', 'no_lang_code', 1, 'https://ror.org/01eppzd87 LKSoftWare (Germany)'),
(18601, 'https://ror.org/04ss7ct16', 'no_lang_code', 1, 'https://ror.org/04ss7ct16 LLA Instruments (Germany)'),
(18602, 'https://ror.org/03kq2rg86', 'no_lang_code', 1, 'https://ror.org/03kq2rg86 Konrad Fischer (Austria)'),
(18603, 'https://ror.org/03ta6rc77', 'no_lang_code', 1, 'https://ror.org/03ta6rc77 Lloyds Banking Group (United Kingdom)'),
(18604, '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'),
(18605, 'https://ror.org/00jd34n28', 'no_lang_code', 1, 'https://ror.org/00jd34n28 Charter Kontron (United Kingdom)'),
(18606, 'https://ror.org/03pmmsa77', 'de', 1, 'https://ror.org/03pmmsa77 Kooperationsstelle Hamburg'),
(18607, 'https://ror.org/00gs0ax16', 'en', 1, 'https://ror.org/00gs0ax16 Institut pour les Ʃtudes de politique internationale Institute for International Political Studies'),
(18608, 'https://ror.org/05dzkb247', 'it', 1, 'https://ror.org/05dzkb247 Environmental and Ethical Certification Institute Istituto per la Certificazione Etica ed Ambientale'),
(18609, 'https://ror.org/00n7jbm43', 'no_lang_code', 1, 'https://ror.org/00n7jbm43 Kopitarna Sevnica (Slovenia)'),
(18610, 'https://ror.org/02gnhjw76', 'no_lang_code', 1, 'https://ror.org/02gnhjw76 Lockheed Martin (United Kingdom)'),
(18611, 'https://ror.org/02x6t2s89', 'no_lang_code', 1, 'https://ror.org/02x6t2s89 Kopoos Consulting (France)'),
(18612, 'https://ror.org/02dnajs12', 'no_lang_code', 1, 'https://ror.org/02dnajs12 Koppert (Netherlands)'),
(18613, 'https://ror.org/02bg3j696', 'no_lang_code', 1, 'https://ror.org/02bg3j696 Maxtech (Canada)'),
(18614, 'https://ror.org/015w1qa96', 'en', 1, 'https://ror.org/015w1qa96 Korea Institute for Advancement of Technology'),
(18615, 'https://ror.org/008j6jh18', 'no_lang_code', 1, 'https://ror.org/008j6jh18 Korona (Slovenia)'),
(18616, 'https://ror.org/03p14zg79', 'no_lang_code', 1, 'https://ror.org/03p14zg79 Loake Shoemakers (United Kingdom)'),
(18617, 'https://ror.org/03sarta97', 'no_lang_code', 1, 'https://ror.org/03sarta97 Maxwell Technologies (Switzerland)'),
(18618, 'https://ror.org/02av6zw72', 'en', 1, 'https://ror.org/02av6zw72 Danish Geodata Agency'),
(18619, 'https://ror.org/01q527f83', 'en', 1, 'https://ror.org/01q527f83 Kozloduy Nuclear Power Plant'),
(18620, 'https://ror.org/05rjsp326', 'no_lang_code', 1, 'https://ror.org/05rjsp326 KPMG (United Kingdom)'),
(18621, 'https://ror.org/00sqg3532', 'no_lang_code', 1, 'https://ror.org/00sqg3532 Maxygen (United States)'),
(18622, 'https://ror.org/04mf4f618', 'no_lang_code', 1, 'https://ror.org/04mf4f618 IS Instruments (United Kingdom)'),
(18623, 'https://ror.org/015vhyq37', 'no_lang_code', 1, 'https://ror.org/015vhyq37 Mayer Brown (United Kingdom)'),
(18624, 'https://ror.org/049ngdd28', 'no_lang_code', 1, 'https://ror.org/049ngdd28 KPMG (United States)'),
(18625, 'https://ror.org/018270v17', 'en', 1, 'https://ror.org/018270v17 Mazzoni Center'),
(18626, 'https://ror.org/04tv3wg24', 'no_lang_code', 1, 'https://ror.org/04tv3wg24 Henkel (Ireland)'),
(18627, 'https://ror.org/00z0jwm84', 'no_lang_code', 1, 'https://ror.org/00z0jwm84 Locus Systems (United States)'),
(18628, 'https://ror.org/01g00ps54', 'no_lang_code', 1, 'https://ror.org/01g00ps54 Kraken Sonar (Canada)'),
(18629, 'https://ror.org/05td2ja26', 'no_lang_code', 1, 'https://ror.org/05td2ja26 MBC Research (United States)'),
(18630, 'https://ror.org/04xwjzk13', 'no_lang_code', 1, 'https://ror.org/04xwjzk13 LogControl (Germany)'),
(18631, 'https://ror.org/00afj9w65', 'no_lang_code', 1, 'https://ror.org/00afj9w65 MBDA (United Kingdom)'),
(18632, 'https://ror.org/05bbhmq49', 'no_lang_code', 1, 'https://ror.org/05bbhmq49 McBride and Associates (United States)'),
(18633, 'https://ror.org/05hgx8167', 'en', 1, 'https://ror.org/05hgx8167 Massachusetts Department of Mental Health'),
(18634, 'https://ror.org/02mh9jb68', 'sr', 1, 'https://ror.org/02mh9jb68 Creative Educational Centre Kreativno Edukativni Centar'),
(18635, 'https://ror.org/04g0yyw61', 'no_lang_code', 1, 'https://ror.org/04g0yyw61 Krones (Germany)'),
(18636, 'https://ror.org/00c0vk765', 'no_lang_code', 1, 'https://ror.org/00c0vk765 Logisticon (Netherlands)'),
(18637, 'https://ror.org/04dfr9g69', 'no_lang_code', 1, 'https://ror.org/04dfr9g69 KSB (Germany)'),
(18638, 'https://ror.org/04pvwy558', 'en', 1, 'https://ror.org/04pvwy558 Leuven Security Excellence Consortium'),
(18639, 'https://ror.org/01pv4sc22', 'no_lang_code', 1, 'https://ror.org/01pv4sc22 KSE (United States)'),
(18640, 'https://ror.org/028v5rv72', 'no_lang_code', 1, 'https://ror.org/028v5rv72 McBurney (United Kingdom)'),
(18641, 'https://ror.org/01svjmt78', 'no_lang_code', 1, 'https://ror.org/01svjmt78 McCann Associates (United States)'),
(18642, 'https://ror.org/02ppzqx84', 'no_lang_code', 1, 'https://ror.org/02ppzqx84 Logit Systems (Belgium)'),
(18643, 'https://ror.org/023d8gn94', 'no_lang_code', 1, 'https://ror.org/023d8gn94 IT+Robotics (Italy)'),
(18644, 'https://ror.org/031ytbe94', 'no_lang_code', 1, 'https://ror.org/031ytbe94 Mahlo (Germany)'),
(18645, 'https://ror.org/049bcjd44', 'en', 1, 'https://ror.org/049bcjd44 International Transports & Cargo Agency'),
(18646, 'https://ror.org/01w74xd96', 'no_lang_code', 1, 'https://ror.org/01w74xd96 Lohmann Tierzucht (Germany)'),
(18647, 'https://ror.org/04zfyj091', 'no_lang_code', 1, 'https://ror.org/04zfyj091 McMillan and Moss Research'),
(18648, 'https://ror.org/039xd5z05', 'no_lang_code', 1, 'https://ror.org/039xd5z05 LogĆ­stica y Acondicionamientos Industriales (Spain)'),
(18649, 'https://ror.org/01pmvz131', 'no_lang_code', 1, 'https://ror.org/01pmvz131 Eli Lilly (Germany)'),
(18650, 'https://ror.org/058qk8f51', 'no_lang_code', 1, 'https://ror.org/058qk8f51 Innovative Sensor Technology (Switzerland)'),
(18651, 'https://ror.org/008mkmw26', 'no_lang_code', 1, 'https://ror.org/008mkmw26 Kubota Research Associates (United States)'),
(18652, 'https://ror.org/02d33yc31', 'no_lang_code', 1, 'https://ror.org/02d33yc31 Smartrac (Germany)'),
(18653, 'https://ror.org/00amm9s20', 'en', 1, 'https://ror.org/00amm9s20 London Borough of Islington'),
(18654, 'https://ror.org/02spkns44', 'en', 1, 'https://ror.org/02spkns44 London Borough of Tower Hamlets'),
(18655, 'https://ror.org/00kjw1h22', 'no_lang_code', 1, 'https://ror.org/00kjw1h22 Itasca Consultants (Germany)'),
(18656, 'https://ror.org/034ca3821', 'en', 1, 'https://ror.org/034ca3821 London Regional Children''s Museum'),
(18657, 'https://ror.org/01nb9ks67', 'no_lang_code', 1, 'https://ror.org/01nb9ks67 Itasca Consultants (France)'),
(18658, 'https://ror.org/04x32t337', 'en', 1, 'https://ror.org/04x32t337 London TravelWatch'),
(18659, 'https://ror.org/00mcjxw34', 'en', 1, 'https://ror.org/00mcjxw34 Itawamba Community College'),
(18660, 'https://ror.org/02mz79w21', 'en', 1, 'https://ror.org/02mz79w21 Austrian Road Safety Board Kuratorium fuer Verkehrssicherheit'),
(18661, 'https://ror.org/02xptb358', 'no_lang_code', 1, 'https://ror.org/02xptb358 Lonix (Finland)'),
(18662, 'https://ror.org/00a7vez14', 'no_lang_code', 1, 'https://ror.org/00a7vez14 Looking Glass Analytics (United States)'),
(18663, 'https://ror.org/0217b1f02', 'no_lang_code', 1, 'https://ror.org/0217b1f02 Limaging (United States)'),
(18664, 'https://ror.org/01wh99039', 'en', 1, 'https://ror.org/01wh99039 Lord Fairfax Community College'),
(18665, 'https://ror.org/002kwhf16', 'no_lang_code', 1, 'https://ror.org/002kwhf16 5N Plus (United Kingdom)'),
(18666, 'https://ror.org/05svz4z02', 'en', 1, 'https://ror.org/05svz4z02 Los Alamos Public Schools'),
(18667, 'https://ror.org/02tbw9n11', 'en', 1, 'https://ror.org/02tbw9n11 Los Angeles County Department of Mental Health'),
(18668, 'https://ror.org/00wr6qv54', 'en', 1, 'https://ror.org/00wr6qv54 Los Angeles Southwest College'),
(18669, 'https://ror.org/02tdf3b18', 'no_lang_code', 1, 'https://ror.org/02tdf3b18 McPhy Energy (France)'),
(18670, 'https://ror.org/01p3zag48', 'no_lang_code', 1, 'https://ror.org/01p3zag48 Aker (United Kingdom)'),
(18671, 'https://ror.org/043422d20', 'no_lang_code', 1, 'https://ror.org/043422d20 Itelsa (Spain)'),
(18672, 'https://ror.org/055k4r149', 'no_lang_code', 1, 'https://ror.org/055k4r149 ITEMS International'),
(18673, 'https://ror.org/05t0e1a79', 'no_lang_code', 1, 'https://ror.org/05t0e1a79 Mannesmann Demag (Germany)'),
(18674, 'https://ror.org/035k7ej72', 'no_lang_code', 1, 'https://ror.org/035k7ej72 Kompetente Werthaltige Ingenieurleistung (Austria)'),
(18675, 'https://ror.org/02pqv9m23', 'no_lang_code', 1, 'https://ror.org/02pqv9m23 Lufthansa Technical Training (Germany)'),
(18676, 'https://ror.org/04png2m53', 'en', 1, 'https://ror.org/04png2m53 Maryland Coalition of Families'),
(18677, 'https://ror.org/04qaypf21', 'no_lang_code', 1, 'https://ror.org/04qaypf21 Trapeze (United Kingdom)'),
(18678, 'https://ror.org/00vnsbt24', 'no_lang_code', 1, 'https://ror.org/00vnsbt24 KWJ Engineering (United States)'),
(18679, 'https://ror.org/01499pn86', 'no_lang_code', 1, 'https://ror.org/01499pn86 Kyos (Switzerland)'),
(18680, 'https://ror.org/022sp9r28', 'no_lang_code', 1, 'https://ror.org/022sp9r28 ITLink'),
(18681, 'https://ror.org/045pqzn81', 'no_lang_code', 1, 'https://ror.org/045pqzn81 MƩcanique et Engrenage Moderne (France)'),
(18682, 'https://ror.org/00bn7ex21', 'no_lang_code', 1, 'https://ror.org/00bn7ex21 Mecanizados Escribano'),
(18683, 'https://ror.org/05s48v759', 'no_lang_code', 1, 'https://ror.org/05s48v759 Meccanica Nova (Italy)'),
(18684, 'https://ror.org/03sb44z08', 'no_lang_code', 1, 'https://ror.org/03sb44z08 Quantum Design (Germany)'),
(18685, 'https://ror.org/03qgkkv45', 'en', 1, 'https://ror.org/03qgkkv45 Police Scotland'),
(18686, 'https://ror.org/01q54vk58', 'no_lang_code', 1, 'https://ror.org/01q54vk58 ITRB (Cyprus)'),
(18687, 'https://ror.org/04swdfh12', 'no_lang_code', 1, 'https://ror.org/04swdfh12 Ericsson (Ireland)'),
(18688, 'https://ror.org/026hk8y88', 'en', 1, 'https://ror.org/026hk8y88 International Tin Research Institute'),
(18689, 'https://ror.org/022fhy294', 'no_lang_code', 1, 'https://ror.org/022fhy294 Mechatronic Systemtechnik (Austria)'),
(18690, 'https://ror.org/01p1jgk06', 'no_lang_code', 1, 'https://ror.org/01p1jgk06 Mecos Traxler (Switzerland)'),
(18691, 'https://ror.org/04tsbwh72', 'fr', 1, 'https://ror.org/04tsbwh72 CRƉ de MontrĆ©al'),
(18692, 'https://ror.org/04xfc5120', 'no_lang_code', 1, 'https://ror.org/04xfc5120 Itrust Consulting'),
(18693, 'https://ror.org/0058kkn34', 'en', 1, 'https://ror.org/0058kkn34 Lottolab Studio'),
(18694, 'https://ror.org/01prxxc82', 'it', 1, 'https://ror.org/01prxxc82 Lega Italiana Protezione Uccelli'),
(18695, 'https://ror.org/02sdvza63', 'fr', 1, 'https://ror.org/02sdvza63 La Maison LƩon-Provancher'),
(18696, 'https://ror.org/031yp1y05', 'no_lang_code', 1, 'https://ror.org/031yp1y05 Loufakis (Greece) Ī›ĪŸĪ„Ī¦Ī‘ĪšĪ—Ī£ Ī§Ī—ĪœĪ™ĪšĪ‘'),
(18697, 'https://ror.org/00rvn7j03', 'en', 1, 'https://ror.org/00rvn7j03 Santa Fe Public Schools'),
(18698, 'https://ror.org/01xgyw658', 'en', 1, 'https://ror.org/01xgyw658 Louisburg College'),
(18699, 'https://ror.org/03h60kq84', 'no_lang_code', 1, 'https://ror.org/03h60kq84 Medennium (United States)'),
(18700, 'https://ror.org/0433tpc78', 'en', 1, 'https://ror.org/0433tpc78 La Palma Research Centre for Future Studies'),
(18701, 'https://ror.org/04czczm92', 'no_lang_code', 1, 'https://ror.org/04czczm92 Medes (France)'),
(18702, 'https://ror.org/004hpvt45', 'no_lang_code', 1, 'https://ror.org/004hpvt45 Mediamobile (Finland)'),
(18703, 'https://ror.org/01m29p162', 'no_lang_code', 1, 'https://ror.org/01m29p162 Median SCP (Spain)'),
(18704, 'https://ror.org/04y3nvy62', 'no_lang_code', 1, 'https://ror.org/04y3nvy62 Lablogic Systems (United Kingdom)'),
(18705, 'https://ror.org/04r13g438', 'en', 1, 'https://ror.org/04r13g438 Louisiana Federation of Families for Children''s Mental Health'),
(18706, 'https://ror.org/00eq8n589', 'it', 1, 'https://ror.org/00eq8n589 ASL Roma'),
(18707, 'https://ror.org/02ype5435', 'en', 1, 'https://ror.org/02ype5435 Louisiana Department of Education'),
(18708, 'https://ror.org/05xyrf554', 'de', 1, 'https://ror.org/05xyrf554 Intelligent Transport Systems Niedersachsen'),
(18709, 'https://ror.org/055hv2t95', 'no_lang_code', 1, 'https://ror.org/055hv2t95 Imagina (Spain)'),
(18710, 'https://ror.org/01nw59437', 'en', 1, 'https://ror.org/01nw59437 Louth County Council'),
(18711, 'https://ror.org/01gd1dh27', 'fr', 1, 'https://ror.org/01gd1dh27 Laboratoire de Recherche des Monuments Historiques'),
(18712, 'https://ror.org/02mzsdx16', 'no_lang_code', 1, 'https://ror.org/02mzsdx16 Lowri Beck (United Kingdom)'),
(18713, 'https://ror.org/04sd5y079', 'no_lang_code', 1, 'https://ror.org/04sd5y079 LS Plant Breeding (United Kingdom)'),
(18714, 'https://ror.org/0491wxq94', 'no_lang_code', 1, 'https://ror.org/0491wxq94 LSVT Global (United States)'),
(18715, 'https://ror.org/02qtpb069', 'no_lang_code', 1, 'https://ror.org/02qtpb069 Medica (Italy)'),
(18716, 'https://ror.org/02wb36b75', 'en', 1, 'https://ror.org/02wb36b75 Lubbock Christian University'),
(18717, 'https://ror.org/048dpf041', 'no_lang_code', 1, 'https://ror.org/048dpf041 Lucchini (Italy)'),
(18718, 'https://ror.org/04r2khh81', 'no_lang_code', 1, 'https://ror.org/04r2khh81 IVU Traffic Technologies (Germany)'),
(18719, 'https://ror.org/01d530j85', 'no_lang_code', 1, 'https://ror.org/01d530j85 Luceome Biotechnologies (United States)'),
(18720, 'https://ror.org/01q5wx109', 'no_lang_code', 1, 'https://ror.org/01q5wx109 IVV Automação (Portugal)'),
(18721, 'https://ror.org/047tbwy41', 'no_lang_code', 1, 'https://ror.org/047tbwy41 Lucid Technologies (United States)'),
(18722, 'https://ror.org/01xar0e72', 'no_lang_code', 1, 'https://ror.org/01xar0e72 IX-Factory (Germany)'),
(18723, 'https://ror.org/003gfpb19', 'no_lang_code', 1, 'https://ror.org/003gfpb19 Caliber Imaging and Diagnostics (United States)'),
(18724, 'https://ror.org/05hzwst11', 'no_lang_code', 1, 'https://ror.org/05hzwst11 Lucite International (United Kingdom)'),
(18725, 'https://ror.org/05bm86k51', 'no_lang_code', 1, 'https://ror.org/05bm86k51 Ludger (United Kingdom)'),
(18726, 'https://ror.org/03mz5a533', 'no_lang_code', 1, 'https://ror.org/03mz5a533 iXpressGenes (United States)'),
(18727, 'https://ror.org/02vx35127', 'en', 1, 'https://ror.org/02vx35127 Medical Data Exchange'),
(18728, 'https://ror.org/00stasw52', 'no_lang_code', 1, 'https://ror.org/00stasw52 General Society of Surveillance SGS (France)'),
(18729, 'https://ror.org/02p19yx96', 'no_lang_code', 1, 'https://ror.org/02p19yx96 Luminomics (United States)'),
(18730, 'https://ror.org/05cmaqt93', 'no_lang_code', 1, 'https://ror.org/05cmaqt93 Lumiphore (United States)'),
(18731, 'https://ror.org/01fhvk277', 'no_lang_code', 1, 'https://ror.org/01fhvk277 Medical Engineering Innovations (United States)'),
(18732, 'https://ror.org/01sfgr903', 'no_lang_code', 1, 'https://ror.org/01sfgr903 Mediri (Germany)'),
(18733, 'https://ror.org/04ht12d51', 'en', 1, 'https://ror.org/04ht12d51 Lunaria Association'),
(18734, 'https://ror.org/04bn6e003', 'no_lang_code', 1, 'https://ror.org/04bn6e003 Medical Indicators (United States)'),
(18735, 'https://ror.org/043esfj33', 'en', 1, 'https://ror.org/043esfj33 Medical Institute for Sexual Health'),
(18736, 'https://ror.org/026xpx458', 'de', 1, 'https://ror.org/026xpx458 Institut für ZukunftsEnergie- und Stoffstromsysteme'),
(18737, 'https://ror.org/0380g9t27', 'en', 1, 'https://ror.org/0380g9t27 Lurleen B Wallace Community College'),
(18738, 'https://ror.org/01s9da178', 'no_lang_code', 1, 'https://ror.org/01s9da178 Iznab (Poland)'),
(18739, 'https://ror.org/053dpzm93', 'pt', 1, 'https://ror.org/053dpzm93 Lusa AgĆŖncia de NotĆ­cias de Portugal'),
(18740, 'https://ror.org/00t4n3812', 'en', 1, 'https://ror.org/00t4n3812 J.F. Drake State Community and Technical College'),
(18741, 'https://ror.org/00c5ttz44', 'no_lang_code', 1, 'https://ror.org/00c5ttz44 Lusotufo (Portugal)'),
(18742, 'https://ror.org/005x6m040', 'en', 1, 'https://ror.org/005x6m040 International Virtual Laboratory for Enterprise Interoperability'),
(18743, 'https://ror.org/00ta0bp18', 'no_lang_code', 1, 'https://ror.org/00ta0bp18 LUX Assure (United Kingdom)'),
(18744, 'https://ror.org/00bt32k84', 'no_lang_code', 1, 'https://ror.org/00bt32k84 Luxcontrol (Luxembourg)'),
(18745, 'https://ror.org/0576t9y10', 'no_lang_code', 1, 'https://ror.org/0576t9y10 JR Technology (United Kingdom)'),
(18746, 'https://ror.org/02pbwqv79', 'en', 1, 'https://ror.org/02pbwqv79 Reynolds Community College'),
(18747, 'https://ror.org/02806kr08', 'no_lang_code', 1, 'https://ror.org/02806kr08 Jablite (United Kingdom)'),
(18748, 'https://ror.org/05ecr8233', 'no_lang_code', 1, 'https://ror.org/05ecr8233 Mectron (Italy)'),
(18749, 'https://ror.org/010qn8y93', 'no_lang_code', 1, 'https://ror.org/010qn8y93 LVD (Belgium)'),
(18750, 'https://ror.org/00hq40871', 'no_lang_code', 1, 'https://ror.org/00hq40871 Jacobson Holman (United States)'),
(18751, 'https://ror.org/00crrhx33', 'no_lang_code', 1, 'https://ror.org/00crrhx33 Laitek (United States)'),
(18752, 'https://ror.org/0433seb41', 'no_lang_code', 1, 'https://ror.org/0433seb41 Lybradyn (United States)'),
(18753, 'https://ror.org/048c9kr85', 'no_lang_code', 1, 'https://ror.org/048c9kr85 AXYS Technologies (Canada)'),
(18754, 'https://ror.org/01f9j1315', 'no_lang_code', 1, 'https://ror.org/01f9j1315 Lymba (United States)'),
(18755, 'https://ror.org/039vmq038', 'no_lang_code', 1, 'https://ror.org/039vmq038 Lyncean Technologies (United States)'),
(18756, 'https://ror.org/05chgd482', 'no_lang_code', 1, 'https://ror.org/05chgd482 LyngsĆø Marine (Denmark)'),
(18757, 'https://ror.org/03k8cn029', 'no_lang_code', 1, 'https://ror.org/03k8cn029 Lynkeus (Italy)'),
(18758, 'https://ror.org/05frrjn34', 'no_lang_code', 1, 'https://ror.org/05frrjn34 Lynx (Italy)'),
(18759, 'https://ror.org/056krdw94', 'no_lang_code', 1, 'https://ror.org/056krdw94 JÔfi-Autókut (Hungary)'),
(18760, 'https://ror.org/048hrra09', 'no_lang_code', 1, 'https://ror.org/048hrra09 Medicon (United States)'),
(18761, 'https://ror.org/03a9d3647', 'en', 1, 'https://ror.org/03a9d3647 Rhodes State College'),
(18762, 'https://ror.org/020gmsm27', 'no_lang_code', 1, 'https://ror.org/020gmsm27 James Agee Film Project'),
(18763, 'https://ror.org/019faqe83', 'en', 1, 'https://ror.org/019faqe83 Lac du Flambeau Band of Lake Superior Chippewa Indians'),
(18764, 'https://ror.org/04mya7254', 'no_lang_code', 1, 'https://ror.org/04mya7254 James Kent (United Kingdom)'),
(18765, 'https://ror.org/00z51f924', 'no_lang_code', 1, 'https://ror.org/00z51f924 Lypro Biosciences (United States)'),
(18766, 'https://ror.org/02kx1jy33', 'no_lang_code', 1, 'https://ror.org/02kx1jy33 Lyven (France)'),
(18767, 'https://ror.org/00tmg8x76', 'no_lang_code', 1, 'https://ror.org/00tmg8x76 MVSystems (United States)'),
(18768, 'https://ror.org/0399jq845', 'no_lang_code', 1, 'https://ror.org/0399jq845 Lafer (Italy)'),
(18769, 'https://ror.org/00mww6988', 'no_lang_code', 1, 'https://ror.org/00mww6988 KBR (United Kingdom)'),
(18770, 'https://ror.org/02mkscs58', 'no_lang_code', 1, 'https://ror.org/02mkscs58 Viasat (Switzerland)'),
(18771, 'https://ror.org/052jw4t43', 'no_lang_code', 1, 'https://ror.org/052jw4t43 M Wright and Sons (United Kingdom)'),
(18772, 'https://ror.org/04g544j85', 'no_lang_code', 1, 'https://ror.org/04g544j85 M.A. Turbo Engine (Canada)'),
(18773, 'https://ror.org/00ecpkf08', 'no_lang_code', 1, 'https://ror.org/00ecpkf08 Ljubljana Passenger Transport'),
(18774, 'https://ror.org/02b76pd77', 'no_lang_code', 1, 'https://ror.org/02b76pd77 M3 Systems (France)'),
(18775, 'https://ror.org/00dcstt96', 'en', 1, 'https://ror.org/00dcstt96 Mediterranean Information Office for Environment Culture and Sustainable Development'),
(18776, 'https://ror.org/0064gh735', 'en', 1, 'https://ror.org/0064gh735 Mediterranean Institute of Fundamental Physics'),
(18777, 'https://ror.org/002jks503', 'no_lang_code', 1, 'https://ror.org/002jks503 Medivir (Sweden)'),
(18778, 'https://ror.org/00q3qq605', 'no_lang_code', 1, 'https://ror.org/00q3qq605 MA Systems and Control (United Kingdom)'),
(18779, 'https://ror.org/04yrw5p64', 'no_lang_code', 1, 'https://ror.org/04yrw5p64 MedPharm (United Kingdom)'),
(18780, 'https://ror.org/006b89x83', 'no_lang_code', 1, 'https://ror.org/006b89x83 JBS Science (United States)'),
(18781, 'https://ror.org/023wx1945', 'no_lang_code', 1, 'https://ror.org/023wx1945 Mace (United Kingdom)'),
(18782, 'https://ror.org/035rr6c23', 'en', 1, 'https://ror.org/035rr6c23 MacGillivray Freeman Films'),
(18783, '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'),
(18784, 'https://ror.org/046q8mv93', 'no_lang_code', 1, 'https://ror.org/046q8mv93 Mitel (Ireland)'),
(18785, 'https://ror.org/05gcmgp11', 'no_lang_code', 1, 'https://ror.org/05gcmgp11 Jefar-Indústria De Calçado'),
(18786, 'https://ror.org/05y20sz16', 'pt', 1, 'https://ror.org/05y20sz16 Ministry of National Defense MinistƩrio da Defesa Nacional'),
(18787, 'https://ror.org/05thfaz05', 'en', 1, 'https://ror.org/05thfaz05 Mach4 Lab'),
(18788, 'https://ror.org/05vg3p333', 'no_lang_code', 1, 'https://ror.org/05vg3p333 Lakeshore Group (United States)'),
(18789, 'https://ror.org/008hr1h38', 'en', 1, 'https://ror.org/008hr1h38 Century College'),
(18790, 'https://ror.org/00p7jhx04', 'no_lang_code', 1, 'https://ror.org/00p7jhx04 Medtrac Technologies (United States)'),
(18791, 'https://ror.org/02hrr9v50', 'en', 1, 'https://ror.org/02hrr9v50 Machine Science'),
(18792, 'https://ror.org/02kxemb23', 'en', 1, 'https://ror.org/02kxemb23 Jefferson County Department of Health'),
(18793, 'https://ror.org/05dmmmj28', 'no_lang_code', 1, 'https://ror.org/05dmmmj28 Machinefabriek Otto Schouten (Netherlands)');
INSERT INTO `rors` VALUES
(18794, 'https://ror.org/0325p1j31', 'no_lang_code', 1, 'https://ror.org/0325p1j31 Coherent (Germany)'),
(18795, 'https://ror.org/03snfqm79', 'en', 1, 'https://ror.org/03snfqm79 Lancashire County Council'),
(18796, 'https://ror.org/03ywb2q15', 'en', 1, 'https://ror.org/03ywb2q15 Lafayette School Corporation'),
(18797, 'https://ror.org/0387ev146', 'en', 1, 'https://ror.org/0387ev146 Lancaster City Council'),
(18798, 'https://ror.org/0013kfc53', 'en', 1, 'https://ror.org/0013kfc53 Land Quality Management'),
(18799, 'https://ror.org/056j0ka11', 'no_lang_code', 1, 'https://ror.org/056j0ka11 JenLab (Germany)'),
(18800, 'https://ror.org/00z65ng94', 'en', 1, 'https://ror.org/00z65ng94 Landau Institute for Theoretical Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической физики им. Š›. Š”. Š›Š°Š½Š“Š°Ńƒ'),
(18801, 'https://ror.org/05g7t5c49', 'no_lang_code', 1, 'https://ror.org/05g7t5c49 Jenoptik (Germany)'),
(18802, 'https://ror.org/04fvsd280', 'en', 1, 'https://ror.org/04fvsd280 Danish Agriculture and Food Council'),
(18803, 'https://ror.org/04eb8df09', 'no_lang_code', 1, 'https://ror.org/04eb8df09 Orano (United States)'),
(18804, 'https://ror.org/0437g4y96', 'no_lang_code', 1, 'https://ror.org/0437g4y96 Mega Electronics (Finland)'),
(18805, 'https://ror.org/02qya6g42', 'no_lang_code', 1, 'https://ror.org/02qya6g42 Boeing (Germany)'),
(18806, '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'),
(18807, 'https://ror.org/0481ybd91', 'en', 1, 'https://ror.org/0481ybd91 Jewish Home'),
(18808, 'https://ror.org/05w1nn565', 'en', 1, 'https://ror.org/05w1nn565 Ministerstvo vnitra Ministry of the Interior'),
(18809, 'https://ror.org/0221ghv91', 'en', 1, 'https://ror.org/0221ghv91 Ministria e Arsimit dhe Shkencƫs Ministry of Education and Science'),
(18810, 'https://ror.org/01hdcyq69', 'no_lang_code', 1, 'https://ror.org/01hdcyq69 Meggitt (United Kingdom)'),
(18811, 'https://ror.org/022059r74', 'no_lang_code', 1, 'https://ror.org/022059r74 Meggitt (Switzerland)'),
(18812, 'https://ror.org/03tmjzy81', 'en', 1, 'https://ror.org/03tmjzy81 Ministerstwo Kultury i Dziedzictwa Narodowego Ministry of Culture and National Heritage'),
(18813, 'https://ror.org/00ct8ya87', 'en', 1, 'https://ror.org/00ct8ya87 Living with Disability'),
(18814, 'https://ror.org/03jkjqx69', 'no_lang_code', 1, 'https://ror.org/03jkjqx69 Helliniki Meletitiki (Greece)'),
(18815, 'https://ror.org/02zt74990', 'no_lang_code', 1, 'https://ror.org/02zt74990 Joel Popkin and Company'),
(18816, 'https://ror.org/01j45tp19', 'no_lang_code', 1, 'https://ror.org/01j45tp19 Joensuu Science Park'),
(18817, 'https://ror.org/0369g1y44', 'en', 1, 'https://ror.org/0369g1y44 Ministry of Agriculture Forestry and Food'),
(18818, 'https://ror.org/04c9wtt72', 'no_lang_code', 1, 'https://ror.org/04c9wtt72 MagArray (United States)'),
(18819, 'https://ror.org/031cs6d58', 'no_lang_code', 1, 'https://ror.org/031cs6d58 Toshiba (Switzerland)'),
(18820, 'https://ror.org/01gj24y87', 'en', 1, 'https://ror.org/01gj24y87 Ministrstvo za Kulturo Ministry of Culture'),
(18821, 'https://ror.org/03w60e920', 'no_lang_code', 1, 'https://ror.org/03w60e920 Magee Scientific (United States)'),
(18822, 'https://ror.org/02mf2qw78', 'no_lang_code', 1, 'https://ror.org/02mf2qw78 Toshiba (France)'),
(18823, 'https://ror.org/058gk5394', 'en', 1, 'https://ror.org/058gk5394 Ministrstvo za pravosodje Ministry of Justice'),
(18824, 'https://ror.org/04vv4v570', 'en', 1, 'https://ror.org/04vv4v570 Landmark College'),
(18825, 'https://ror.org/047d3ep63', 'en', 1, 'https://ror.org/047d3ep63 Ministry for Education and Employment'),
(18826, 'https://ror.org/03gb5pj65', 'no_lang_code', 1, 'https://ror.org/03gb5pj65 Fuchs (Austria)'),
(18827, 'https://ror.org/016a8y628', 'no_lang_code', 1, 'https://ror.org/016a8y628 Magma (Germany)'),
(18828, 'https://ror.org/00yy6km68', 'en', 1, 'https://ror.org/00yy6km68 Ministry for Sustainable Development the Environment and Climate change'),
(18829, 'https://ror.org/05p3we513', 'no_lang_code', 1, 'https://ror.org/05p3we513 Melodea (Israel)'),
(18830, 'https://ror.org/052b68304', 'no_lang_code', 1, 'https://ror.org/052b68304 Magna Parva (United Kingdom)'),
(18831, 'https://ror.org/0580j1464', 'no_lang_code', 1, 'https://ror.org/0580j1464 Meloni Vini (Italy)'),
(18832, 'https://ror.org/02wfzks91', 'de', 1, 'https://ror.org/02wfzks91 Landwirtschaftliche Fachschule Tulln professional school for agriculture Tulln'),
(18833, 'https://ror.org/00e7vgg86', 'en', 1, 'https://ror.org/00e7vgg86 Lane College'),
(18834, 'https://ror.org/05x76z110', 'no_lang_code', 1, 'https://ror.org/05x76z110 John Caunt Scientific (United Kingdom)'),
(18835, 'https://ror.org/04qx8er17', 'no_lang_code', 1, 'https://ror.org/04qx8er17 Magnetfabrik Bonn (Germany)'),
(18836, 'https://ror.org/01f43e063', 'no_lang_code', 1, 'https://ror.org/01f43e063 Magneti Ljubljana (Slovenia)'),
(18837, 'https://ror.org/01zcb7j14', 'no_lang_code', 1, 'https://ror.org/01zcb7j14 Nuance Communications (Belgium)'),
(18838, 'https://ror.org/01vqxw943', 'no_lang_code', 1, 'https://ror.org/01vqxw943 The Meltech (United Kingdom)'),
(18839, 'https://ror.org/013mgh495', 'no_lang_code', 1, 'https://ror.org/013mgh495 Language Computer (United States)'),
(18840, 'https://ror.org/00xe53w23', 'no_lang_code', 1, 'https://ror.org/00xe53w23 John Gill Technology (United Kingdom)'),
(18841, 'https://ror.org/048gzej48', 'no_lang_code', 1, 'https://ror.org/048gzej48 Lanner Group (United Kingdom)'),
(18842, 'https://ror.org/052vb0z63', 'no_lang_code', 1, 'https://ror.org/052vb0z63 Tokyo Electron (Ireland)'),
(18843, 'https://ror.org/03p6bvv51', 'no_lang_code', 1, 'https://ror.org/03p6bvv51 Revlon (United States)'),
(18844, 'https://ror.org/01zm94433', 'no_lang_code', 1, 'https://ror.org/01zm94433 John Wiley & Sons (United Kingdom)'),
(18845, 'https://ror.org/04v1xq350', 'no_lang_code', 1, 'https://ror.org/04v1xq350 SunEdison (Italy)'),
(18846, 'https://ror.org/0132f5d22', 'no_lang_code', 1, 'https://ror.org/0132f5d22 Magnomatics (United Kingdom)'),
(18847, 'https://ror.org/00wgpww39', 'en', 1, 'https://ror.org/00wgpww39 Hungarian Association of Content Industry'),
(18848, 'https://ror.org/05xhvxn93', 'no_lang_code', 1, 'https://ror.org/05xhvxn93 MemEx (Italy)'),
(18849, 'https://ror.org/00fgmmg43', 'no_lang_code', 1, 'https://ror.org/00fgmmg43 UniCredit (Italy) UniCredito Italiano'),
(18850, 'https://ror.org/043z38488', 'no_lang_code', 1, 'https://ror.org/043z38488 Laryngograph (United Kingdom)'),
(18851, 'https://ror.org/05cvky844', 'en', 1, 'https://ror.org/05cvky844 Ministry of Transport and Communications'),
(18852, 'https://ror.org/01brbem53', 'en', 1, 'https://ror.org/01brbem53 Ministry of Communications Science and Technology'),
(18853, 'https://ror.org/04vsqr388', 'no_lang_code', 1, 'https://ror.org/04vsqr388 Deutsche Telekom (Hungary)'),
(18854, 'https://ror.org/04bac3z79', 'en', 1, 'https://ror.org/04bac3z79 Shelby County Schools'),
(18855, 'https://ror.org/00x4hs846', 'no_lang_code', 1, 'https://ror.org/00x4hs846 MemPro (United States)'),
(18856, 'https://ror.org/00see0y83', 'en', 1, 'https://ror.org/00see0y83 Ministry of Education, Arts and Culture'),
(18857, 'https://ror.org/034c9fe80', 'no_lang_code', 1, 'https://ror.org/034c9fe80 Rofin (Switzerland)'),
(18858, 'https://ror.org/048pz4a95', 'no_lang_code', 1, 'https://ror.org/048pz4a95 Vionyx (United States)'),
(18859, 'https://ror.org/01wj8sy84', 'en', 1, 'https://ror.org/01wj8sy84 Laser Institute of America'),
(18860, 'https://ror.org/0327edc10', 'no_lang_code', 1, 'https://ror.org/0327edc10 Laser Optical Engineering (United Kingdom)'),
(18861, 'https://ror.org/00f53v221', 'no_lang_code', 1, 'https://ror.org/00f53v221 Laser Tissue Welding (United States)'),
(18862, 'https://ror.org/0270k0c71', 'en', 1, 'https://ror.org/0270k0c71 Ministry of Education Science and Technology'),
(18863, 'https://ror.org/03j1srb55', 'no_lang_code', 1, 'https://ror.org/03j1srb55 Laser- und Medizin-Technologie (Germany)'),
(18864, 'https://ror.org/03fqqns24', 'fr', 1, 'https://ror.org/03fqqns24 Missions Publiques'),
(18865, 'https://ror.org/04es3ne34', 'en', 1, 'https://ror.org/04es3ne34 Ministry of Health Ministério da Saúde'),
(18866, 'https://ror.org/04jt2r126', 'no_lang_code', 1, 'https://ror.org/04jt2r126 LaserLeap Technologies (Portugal)'),
(18867, 'https://ror.org/0181arg19', 'en', 1, 'https://ror.org/0181arg19 Mississippi Band of Choctaw Indians'),
(18868, 'https://ror.org/04yadxf37', 'en', 1, 'https://ror.org/04yadxf37 Ministry of Health'),
(18869, 'https://ror.org/00s6jcp09', 'no_lang_code', 1, 'https://ror.org/00s6jcp09 Laserlith (United States)'),
(18870, 'https://ror.org/05mhnzk71', 'en', 1, 'https://ror.org/05mhnzk71 Hungarian Chemical Industry Association'),
(18871, 'https://ror.org/04ksf9y74', 'no_lang_code', 1, 'https://ror.org/04ksf9y74 MEMX (United States)'),
(18872, 'https://ror.org/03b1p5875', 'fr', 1, 'https://ror.org/03b1p5875 Ministère de la Santé Publique et de la Population'),
(18873, 'https://ror.org/033yatp22', 'en', 1, 'https://ror.org/033yatp22 Ministerstvo VnĆŗtra Slovenskej Republiky Ministry of Interior'),
(18874, 'https://ror.org/00f42c411', 'no_lang_code', 1, 'https://ror.org/00f42c411 Lab_Bell (Canada)'),
(18875, 'https://ror.org/05n686b12', 'no_lang_code', 1, 'https://ror.org/05n686b12 Maillefer (Switzerland)'),
(18876, 'https://ror.org/051aeqp85', 'en', 1, 'https://ror.org/051aeqp85 Mississippi Department of Education'),
(18877, 'https://ror.org/02st8gf30', 'no_lang_code', 1, 'https://ror.org/02st8gf30 LSI Solutions (United States)'),
(18878, 'https://ror.org/0042p6c32', 'no_lang_code', 1, 'https://ror.org/0042p6c32 IVL Audio (Canada)'),
(18879, 'https://ror.org/033env547', 'en', 1, 'https://ror.org/033env547 Laskeek Bay Conservation Society'),
(18880, 'https://ror.org/04nzhmg91', 'en', 1, 'https://ror.org/04nzhmg91 Ministerie van Justitie en Veiligheid Ministry of Security and Justice'),
(18881, 'https://ror.org/01ptfqt82', 'no_lang_code', 1, 'https://ror.org/01ptfqt82 Lassila & Tikanoja (Finland)'),
(18882, 'https://ror.org/02kexh790', 'no_lang_code', 1, 'https://ror.org/02kexh790 Missouri Breaks Industries Research (United States)'),
(18883, 'https://ror.org/003g29k51', 'no_lang_code', 1, 'https://ror.org/003g29k51 Latécoère (France)'),
(18884, 'https://ror.org/01zbnj927', 'en', 1, 'https://ror.org/01zbnj927 Missouri Department of Social Services'),
(18885, 'https://ror.org/00epfzn27', 'en', 1, 'https://ror.org/00epfzn27 Mental Health America of Oregon'),
(18886, 'https://ror.org/03r2fj775', 'en', 1, 'https://ror.org/03r2fj775 Maine Audubon'),
(18887, 'https://ror.org/02qr36w40', 'fr', 1, 'https://ror.org/02qr36w40 MinistĆØre de l''Agriculture'),
(18888, 'https://ror.org/046dybe93', 'en', 1, 'https://ror.org/046dybe93 Office of Missouri Governor'),
(18889, 'https://ror.org/034szbq97', 'no_lang_code', 1, 'https://ror.org/034szbq97 Soltigua (Italy)'),
(18890, 'https://ror.org/01f15gz68', 'no_lang_code', 1, 'https://ror.org/01f15gz68 GVS (United States)'),
(18891, 'https://ror.org/049twep74', 'no_lang_code', 1, 'https://ror.org/049twep74 Lati Industria Termoplastici (Italy)'),
(18892, 'https://ror.org/010qx2c09', 'en', 1, 'https://ror.org/010qx2c09 Latino Community Services'),
(18893, 'https://ror.org/048vgks49', 'en', 1, 'https://ror.org/048vgks49 Maine Parent Federation'),
(18894, 'https://ror.org/047m6hg73', 'no_lang_code', 1, 'https://ror.org/047m6hg73 Management Intelligenter Technologien (Germany)'),
(18895, 'https://ror.org/01p3fa845', 'en', 1, 'https://ror.org/01p3fa845 Laucks Foundation'),
(18896, 'https://ror.org/02b173w12', 'no_lang_code', 1, 'https://ror.org/02b173w12 MiTeGen (United States)'),
(18897, 'https://ror.org/04t5w6b17', 'no_lang_code', 1, 'https://ror.org/04t5w6b17 Lavrentyev Institute of Hydrodynamics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГроГинамики им. М.А. Š›Š°Š²Ń€ŠµŠ½Ń‚ŃŒŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(18898, 'https://ror.org/00jccxv75', 'en', 1, 'https://ror.org/00jccxv75 Law and Internet Foundation'),
(18899, 'https://ror.org/036grjg58', 'en', 1, 'https://ror.org/036grjg58 Ministry of the Interior SisƤministeriƶ'),
(18900, 'https://ror.org/05khkqa44', 'en', 1, 'https://ror.org/05khkqa44 Lietuvos Respublikos vidaus reikalų ministerija Ministry of the Interior of the Republic of Lithuania'),
(18901, 'https://ror.org/04q2p9044', 'no_lang_code', 1, 'https://ror.org/04q2p9044 MakeBelieve Arts (United Kingdom)'),
(18902, 'https://ror.org/00emwta72', 'en', 1, 'https://ror.org/00emwta72 Makin It Happen Coalition for Resilient Youth'),
(18903, 'https://ror.org/04c1zgk38', 'no_lang_code', 1, 'https://ror.org/04c1zgk38 MAKScientific (United States)'),
(18904, 'https://ror.org/00r9rdf15', 'en', 1, 'https://ror.org/00r9rdf15 Ministry of Transport and Communications kommunikationsministeriet liikenne- ja viestintƤministeriƶ'),
(18905, 'https://ror.org/01cz7pz66', 'no_lang_code', 1, 'https://ror.org/01cz7pz66 MitoHealth (United States)'),
(18906, 'https://ror.org/025bepc78', 'no_lang_code', 1, 'https://ror.org/025bepc78 3D Systems (Belgium)'),
(18907, 'https://ror.org/04yzd5a95', 'en', 1, 'https://ror.org/04yzd5a95 Mental Health Consumer Survivor Network'),
(18908, 'https://ror.org/02abh5f58', 'no_lang_code', 1, 'https://ror.org/02abh5f58 LC Vision (United States)'),
(18909, 'https://ror.org/0023n7k70', 'en', 1, 'https://ror.org/0023n7k70 Memorial Blood Centers'),
(18910, 'https://ror.org/01ygx6877', 'en', 1, 'https://ror.org/01ygx6877 Mind'),
(18911, 'https://ror.org/048v4wb07', 'en', 1, 'https://ror.org/048v4wb07 Minnesota Association for Children''s Mental Health'),
(18912, 'https://ror.org/0558fr586', 'en', 1, 'https://ror.org/0558fr586 Mental Health Systems'),
(18913, 'https://ror.org/03p72cz81', 'no_lang_code', 1, 'https://ror.org/03p72cz81 LDK (Greece)'),
(18914, 'https://ror.org/01kf1n431', 'en', 1, 'https://ror.org/01kf1n431 Minnesota Educational Computing Consortium'),
(18915, 'https://ror.org/05c9nwr56', 'en', 1, 'https://ror.org/05c9nwr56 Riverland Community College'),
(18916, 'https://ror.org/04bhzjf61', 'en', 1, 'https://ror.org/04bhzjf61 Minnesota Department of Education'),
(18917, 'https://ror.org/03jq5gp77', 'en', 1, 'https://ror.org/03jq5gp77 Minnesota Zoo'),
(18918, 'https://ror.org/0317pbn61', 'en', 1, 'https://ror.org/0317pbn61 Minot Public Schools'),
(18919, 'https://ror.org/0536ye693', 'en', 1, 'https://ror.org/0536ye693 Mental Health and Recovery Services Board'),
(18920, 'https://ror.org/048aq6484', 'no_lang_code', 1, 'https://ror.org/048aq6484 Intersand (Canada)'),
(18921, 'https://ror.org/02zkph911', 'no_lang_code', 1, 'https://ror.org/02zkph911 AVL (France)'),
(18922, 'https://ror.org/04qpp5q81', 'en', 1, 'https://ror.org/04qpp5q81 Minuteman High School'),
(18923, 'https://ror.org/0344tkb11', 'no_lang_code', 1, 'https://ror.org/0344tkb11 Los Alamos Technical Associates (United States)'),
(18924, 'https://ror.org/04z8j8871', 'en', 1, 'https://ror.org/04z8j8871 Mental Health Mental Retardation of Tarrant County'),
(18925, 'https://ror.org/01btem129', 'no_lang_code', 1, 'https://ror.org/01btem129 LeadScope (United States)'),
(18926, 'https://ror.org/019nfqa94', 'no_lang_code', 1, 'https://ror.org/019nfqa94 Biotage (Sweden)'),
(18927, 'https://ror.org/01s12hv96', 'no_lang_code', 1, 'https://ror.org/01s12hv96 Miraculins (Canada)'),
(18928, 'https://ror.org/05m3mzx29', 'no_lang_code', 1, 'https://ror.org/05m3mzx29 Gnubila Technology (France)'),
(18929, 'https://ror.org/029nxc858', 'en', 1, 'https://ror.org/029nxc858 Maine Department of Education'),
(18930, 'https://ror.org/01j7j0055', 'no_lang_code', 1, 'https://ror.org/01j7j0055 Lear (Spain)'),
(18931, 'https://ror.org/05nq31604', 'no_lang_code', 1, 'https://ror.org/05nq31604 Mirari Biosciences (United States)'),
(18932, 'https://ror.org/04sgryq04', 'no_lang_code', 1, 'https://ror.org/04sgryq04 Mirasys (Finland)'),
(18933, 'https://ror.org/0024fc285', 'en', 1, 'https://ror.org/0024fc285 FrontLine Service'),
(18934, 'https://ror.org/05wvb7e41', 'no_lang_code', 1, 'https://ror.org/05wvb7e41 Mentor InterActive (United States)'),
(18935, 'https://ror.org/058t6q245', 'no_lang_code', 1, 'https://ror.org/058t6q245 Chemsupply (Switzerland)'),
(18936, 'https://ror.org/04etart85', 'no_lang_code', 1, 'https://ror.org/04etart85 Guideline Geo (Sweden)'),
(18937, 'https://ror.org/04xhwje32', 'no_lang_code', 1, 'https://ror.org/04xhwje32 Mirriad (United Kingdom)'),
(18938, 'https://ror.org/0589vxh51', 'no_lang_code', 1, 'https://ror.org/0589vxh51 Datacorp (United States)'),
(18939, 'https://ror.org/055mawj54', 'en', 1, 'https://ror.org/055mawj54 Mercy Medical Center Merced'),
(18940, 'https://ror.org/04n3nh595', 'en', 1, 'https://ror.org/04n3nh595 Department of Forestry'),
(18941, 'https://ror.org/04eerm638', 'en', 1, 'https://ror.org/04eerm638 Mercer Island School District'),
(18942, 'https://ror.org/02xhybk62', 'en', 1, 'https://ror.org/02xhybk62 National AIDS Commission'),
(18943, 'https://ror.org/05sdess02', 'no_lang_code', 1, 'https://ror.org/05sdess02 mLED (United Kingdom)'),
(18944, 'https://ror.org/04w0krt75', 'no_lang_code', 1, 'https://ror.org/04w0krt75 MLS Multimedia (Greece)'),
(18945, 'https://ror.org/044sxgs38', 'en', 1, 'https://ror.org/044sxgs38 National Foundation for Educational Research'),
(18946, 'https://ror.org/02xxmeg14', 'en', 1, 'https://ror.org/02xxmeg14 MyFace'),
(18947, 'https://ror.org/00ck9ex56', 'en', 1, 'https://ror.org/00ck9ex56 Malta Enterprise'),
(18948, 'https://ror.org/02gk90651', 'no_lang_code', 1, 'https://ror.org/02gk90651 Mobics (Greece)'),
(18949, 'https://ror.org/02r1ykk72', 'no_lang_code', 1, 'https://ror.org/02r1ykk72 Mobilaps (United States)'),
(18950, 'https://ror.org/01c983z55', 'no_lang_code', 1, 'https://ror.org/01c983z55 New World Medical (United States)'),
(18951, 'https://ror.org/03k3dgs02', 'no_lang_code', 1, 'https://ror.org/03k3dgs02 Orange (Belgium)'),
(18952, 'https://ror.org/01yf3k683', 'en', 1, 'https://ror.org/01yf3k683 New York City Fire Department'),
(18953, 'https://ror.org/001bj3k32', 'en', 1, 'https://ror.org/001bj3k32 Administration for Children''s Services'),
(18954, 'https://ror.org/048b34d51', 'en', 1, 'https://ror.org/048b34d51 National Hospital for Neurology and Neurosurgery'),
(18955, 'https://ror.org/04h6f0y45', 'no_lang_code', 1, 'https://ror.org/04h6f0y45 National Hyperbaric Centre'),
(18956, 'https://ror.org/02bf8nh75', 'no_lang_code', 1, 'https://ror.org/02bf8nh75 ModellTechnik Rapid Prototyping (Germany)'),
(18957, 'https://ror.org/04jjpme94', 'no_lang_code', 1, 'https://ror.org/04jjpme94 Meridian Bioscience (United States)'),
(18958, 'https://ror.org/02jy5b122', 'en', 1, 'https://ror.org/02jy5b122 Management and Development for Health'),
(18959, 'https://ror.org/0079mgn81', 'no_lang_code', 1, 'https://ror.org/0079mgn81 Modelon (Sweden)'),
(18960, 'https://ror.org/022ps9t53', 'en', 1, 'https://ror.org/022ps9t53 New York State Senate'),
(18961, 'https://ror.org/049f03n31', 'en', 1, 'https://ror.org/049f03n31 Meridian Community College'),
(18962, 'https://ror.org/055c5vt19', 'no_lang_code', 1, 'https://ror.org/055c5vt19 EnServe Group (United Kingdom)'),
(18963, 'https://ror.org/059b0jm33', 'no_lang_code', 1, 'https://ror.org/059b0jm33 Management Science Associates (United States)'),
(18964, 'https://ror.org/00wf4pt88', 'en', 1, 'https://ror.org/00wf4pt88 Management Sciences for Health'),
(18965, 'https://ror.org/046xprq08', 'no_lang_code', 1, 'https://ror.org/046xprq08 Management Support Technology (United States)'),
(18966, 'https://ror.org/04n76m431', 'no_lang_code', 1, 'https://ror.org/04n76m431 Meridian Medical Systems (United States)'),
(18967, 'https://ror.org/02f25xq68', 'no_lang_code', 1, 'https://ror.org/02f25xq68 Modern Water (United Kingdom)'),
(18968, 'https://ror.org/05r8m9m38', 'no_lang_code', 1, 'https://ror.org/05r8m9m38 Newbiotechnic (Spain)'),
(18969, 'https://ror.org/009axdy66', 'no_lang_code', 1, 'https://ror.org/009axdy66 Erka Group (Turkey)'),
(18970, 'https://ror.org/020gp5z38', 'en', 1, 'https://ror.org/020gp5z38 Newburgh Enlarged City School District'),
(18971, 'https://ror.org/02zb8tm77', 'en', 1, 'https://ror.org/02zb8tm77 Yosemite Community College District'),
(18972, 'https://ror.org/05qf4x681', 'en', 1, 'https://ror.org/05qf4x681 Manchester Digital Laboratory'),
(18973, 'https://ror.org/027x71w42', 'no_lang_code', 1, 'https://ror.org/027x71w42 Mandala Biosciences (United States)'),
(18974, 'https://ror.org/04c97xg15', 'no_lang_code', 1, 'https://ror.org/04c97xg15 Modular Robotics (United States)'),
(18975, 'https://ror.org/0266khk21', 'no_lang_code', 1, 'https://ror.org/0266khk21 Merlin Circuit Technology (United Kingdom)'),
(18976, 'https://ror.org/01rtq8t93', 'en', 1, 'https://ror.org/01rtq8t93 National Institute for Research and Development in Microtechnologies'),
(18977, 'https://ror.org/04240b022', 'no_lang_code', 1, 'https://ror.org/04240b022 Feonic Technology (United Kingdom)'),
(18978, 'https://ror.org/032cxyf89', 'no_lang_code', 1, 'https://ror.org/032cxyf89 Maniero Elettronica (Italy)'),
(18979, 'https://ror.org/009ng5f87', 'no_lang_code', 1, 'https://ror.org/009ng5f87 Modulex (Denmark)'),
(18980, 'https://ror.org/02dy89791', 'no_lang_code', 1, 'https://ror.org/02dy89791 Manifattura Italiana del Brembo (Italy)'),
(18981, 'https://ror.org/04syg1z63', 'en', 1, 'https://ror.org/04syg1z63 Maniilaq Association'),
(18982, 'https://ror.org/05spz0x25', 'en', 1, 'https://ror.org/05spz0x25 National Institute of Building Sciences'),
(18983, 'https://ror.org/01am32j78', 'no_lang_code', 1, 'https://ror.org/01am32j78 New Metals and Chemicals (United Kingdom)'),
(18984, 'https://ror.org/03vtyzs10', 'en', 1, 'https://ror.org/03vtyzs10 Mersey Care NHS Trust'),
(18985, 'https://ror.org/00pprbn54', 'no_lang_code', 1, 'https://ror.org/00pprbn54 Newomics (United States)'),
(18986, 'https://ror.org/02mp6w091', 'en', 1, 'https://ror.org/02mp6w091 NewOpera'),
(18987, 'https://ror.org/000qn5756', 'en', 1, 'https://ror.org/000qn5756 Newport News Public Schools'),
(18988, 'https://ror.org/01r9fck11', 'en', 1, 'https://ror.org/01r9fck11 Manitoba Environmental Industries Association'),
(18989, 'https://ror.org/01wbcv120', 'en', 1, 'https://ror.org/01wbcv120 Manchester Airport'),
(18990, 'https://ror.org/05r7wgd74', 'no_lang_code', 1, 'https://ror.org/05r7wgd74 Nexans (Germany)'),
(18991, 'https://ror.org/026a52219', 'no_lang_code', 1, 'https://ror.org/026a52219 Moixa (United Kingdom)'),
(18992, 'https://ror.org/035vgnr05', 'no_lang_code', 1, 'https://ror.org/035vgnr05 Nexcis (France)'),
(18993, 'https://ror.org/05azmgh93', 'en', 1, 'https://ror.org/05azmgh93 Merseytravel'),
(18994, 'https://ror.org/01sab8554', 'no_lang_code', 1, 'https://ror.org/01sab8554 Moixa Technology (United Kingdom)'),
(18995, 'https://ror.org/01gvkyp03', 'en', 1, 'https://ror.org/01gvkyp03 National Institute of Oceanography ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„ą¤¦ą„ą¤° ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®¤ąÆ‡ą®šą®æą®Æ ą®•ą®Ÿą®²ą®æą®Æą®²ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ ą“Øą“¾ą“·ą“£ąµ½ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą““ą“·ąµą“Æą“¾ą“Øąµ‹ą“—ąµą“°ą“«ą“æ'),
(18996, 'https://ror.org/024am6q88', 'no_lang_code', 1, 'https://ror.org/024am6q88 HBW-Gubesch Kunststoff-Engineering (Germany)'),
(18997, 'https://ror.org/01b6bqq51', 'no_lang_code', 1, 'https://ror.org/01b6bqq51 Mesa Analytics & Computing (United States)'),
(18998, 'https://ror.org/02ch5h698', 'no_lang_code', 1, 'https://ror.org/02ch5h698 Nexor (United Kingdom)'),
(18999, 'https://ror.org/01ct8rs42', 'en', 1, 'https://ror.org/01ct8rs42 National Institute of Public Health įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‡įž¶įžįž·įžŸįž»įžįž—įž¶įž–įžŸįž¶įž’įž¶įžšįžŽįŸˆ'),
(19000, 'https://ror.org/01wchfr56', 'no_lang_code', 1, 'https://ror.org/01wchfr56 Mesolight (United States)'),
(19001, 'https://ror.org/00tww8m46', 'no_lang_code', 1, 'https://ror.org/00tww8m46 Next Ingegneria dei Sistemi (Italy)'),
(19002, 'https://ror.org/01zhpfy26', 'no_lang_code', 1, 'https://ror.org/01zhpfy26 Next Limit Technologies (Spain)'),
(19003, 'https://ror.org/03mzgz227', 'no_lang_code', 1, 'https://ror.org/03mzgz227 Meso (United States)'),
(19004, 'https://ror.org/04ecsax77', 'no_lang_code', 1, 'https://ror.org/04ecsax77 Message Pharmaceuticals (United States)'),
(19005, 'https://ror.org/053qp6k29', 'no_lang_code', 1, 'https://ror.org/053qp6k29 MAN (Denmark)'),
(19006, 'https://ror.org/05aq6yn88', 'en', 1, 'https://ror.org/05aq6yn88 Office of Extramural Research'),
(19007, 'https://ror.org/00dymss37', 'no_lang_code', 1, 'https://ror.org/00dymss37 Safran (United Kingdom)'),
(19008, 'https://ror.org/05wj4em96', 'no_lang_code', 1, 'https://ror.org/05wj4em96 NextInput (United States)'),
(19009, 'https://ror.org/02hsk2p49', 'en', 1, 'https://ror.org/02hsk2p49 United States Conference of Mayors'),
(19010, 'https://ror.org/027ng0s03', 'no_lang_code', 1, 'https://ror.org/027ng0s03 META Group'),
(19011, 'https://ror.org/00wb3z218', 'no_lang_code', 1, 'https://ror.org/00wb3z218 MammaCare (United States)'),
(19012, 'https://ror.org/01pp7vs05', 'no_lang_code', 1, 'https://ror.org/01pp7vs05 Nexture Consulting'),
(19013, 'https://ror.org/00mxv8r67', 'en', 1, 'https://ror.org/00mxv8r67 Latvijas Nacionālā bibliotēka National Library of Latvia'),
(19014, 'https://ror.org/04980c792', 'no_lang_code', 1, 'https://ror.org/04980c792 MOL Group (Hungary)'),
(19015, 'https://ror.org/008yv5115', 'no_lang_code', 1, 'https://ror.org/008yv5115 MetaSystem (Italy)'),
(19016, 'https://ror.org/02p9tsq18', 'en', 1, 'https://ror.org/02p9tsq18 Nexus Research'),
(19017, 'https://ror.org/02se5xj66', 'en', 1, 'https://ror.org/02se5xj66 National Medical Association'),
(19018, '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'),
(19019, 'https://ror.org/03jem4j71', 'no_lang_code', 1, 'https://ror.org/03jem4j71 Meta Vision Systems (United Kingdom)'),
(19020, 'https://ror.org/04qctfn73', 'no_lang_code', 1, 'https://ror.org/04qctfn73 Nexus Engineering (Bulgaria)'),
(19021, 'https://ror.org/01299qg41', 'en', 1, 'https://ror.org/01299qg41 Nez Perce Tribal Executive Committee'),
(19022, 'https://ror.org/00dksv941', 'no_lang_code', 1, 'https://ror.org/00dksv941 METabolic Explorer (France)'),
(19023, 'https://ror.org/0295q2p17', 'no_lang_code', 1, 'https://ror.org/0295q2p17 Metabolic Solutions Development Company (United States)'),
(19024, 'https://ror.org/0227qpa16', 'en', 1, 'https://ror.org/0227qpa16 NHS Blood and Transplant'),
(19025, 'https://ror.org/02vhqqh86', 'no_lang_code', 1, 'https://ror.org/02vhqqh86 Rio Tinto (United States)'),
(19026, 'https://ror.org/001xgg719', 'no_lang_code', 1, 'https://ror.org/001xgg719 Metal Matrix Cast Composites (United States)'),
(19027, 'https://ror.org/00m6mew50', 'hu', 1, 'https://ror.org/00m6mew50 OrszÔgos Gyógyintézeti Központ'),
(19028, 'https://ror.org/010vry420', 'en', 1, 'https://ror.org/010vry420 National Merit Scholarship Corporation'),
(19029, 'https://ror.org/024wfy702', 'no_lang_code', 1, 'https://ror.org/024wfy702 Niadyne Pharma (United States)'),
(19030, 'https://ror.org/03sj17n32', 'no_lang_code', 1, 'https://ror.org/03sj17n32 Molecular Innovations (United States)'),
(19031, 'https://ror.org/03tjw1547', 'en', 1, 'https://ror.org/03tjw1547 Innovate Niagara'),
(19032, 'https://ror.org/0393z2b10', 'en', 1, 'https://ror.org/0393z2b10 Institute of Fisheries and Aquaculture'),
(19033, 'https://ror.org/003kfm697', 'no_lang_code', 1, 'https://ror.org/003kfm697 Niagara Scientific Products (United States)'),
(19034, 'https://ror.org/00qvg6x21', 'en', 1, 'https://ror.org/00qvg6x21 Molecular Medicine Ireland'),
(19035, 'https://ror.org/04rtnbn65', 'no_lang_code', 1, 'https://ror.org/04rtnbn65 Molecular Networks (Germany)'),
(19036, 'https://ror.org/047vmzn25', 'no_lang_code', 1, 'https://ror.org/047vmzn25 Digital Equipment (Germany)'),
(19037, 'https://ror.org/05hpsdw90', 'no_lang_code', 1, 'https://ror.org/05hpsdw90 Nice Systems (Israel)'),
(19038, 'https://ror.org/04a4v0j95', 'en', 1, 'https://ror.org/04a4v0j95 National Museum of Natural History ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ ŠæŃ€ŠøŃ€Š¾Š“Š¾Š½Š°ŃƒŃ‡ŠµŠ½ музей'),
(19039, 'https://ror.org/03gs3ft47', 'en', 1, 'https://ror.org/03gs3ft47 Science Museum Group'),
(19040, 'https://ror.org/01pe51140', 'no_lang_code', 1, 'https://ror.org/01pe51140 Molecular Sensing (United States)'),
(19041, 'https://ror.org/01stdbz34', 'en', 1, 'https://ror.org/01stdbz34 National Native American AIDS Prevention Center'),
(19042, 'https://ror.org/0345azg35', 'no_lang_code', 1, 'https://ror.org/0345azg35 Entellexi (Ireland)'),
(19043, 'https://ror.org/03w40bm70', 'no_lang_code', 1, 'https://ror.org/03w40bm70 Manufacturas Serviplast (Spain)'),
(19044, 'https://ror.org/03n0qh685', 'en', 1, 'https://ror.org/03n0qh685 National Patient Safety Agency'),
(19045, 'https://ror.org/01df6fw27', 'en', 1, 'https://ror.org/01df6fw27 National Patient Safety Foundation'),
(19046, 'https://ror.org/006s85q77', 'no_lang_code', 1, 'https://ror.org/006s85q77 Michelin (France)'),
(19047, 'https://ror.org/00bcwc583', 'en', 1, 'https://ror.org/00bcwc583 Molina Center for Energy and the Environment'),
(19048, 'https://ror.org/004hn8266', 'en', 1, 'https://ror.org/004hn8266 Danish National Police'),
(19049, 'https://ror.org/01gsm0s82', 'en', 1, 'https://ror.org/01gsm0s82 National Postdoctoral Association'),
(19050, 'https://ror.org/01t47ze65', 'no_lang_code', 1, 'https://ror.org/01t47ze65 Manus Bio (United States)'),
(19051, 'https://ror.org/05dnz5861', 'no_lang_code', 1, 'https://ror.org/05dnz5861 Metalografica (Spain)'),
(19052, 'https://ror.org/00g0b5e28', 'no_lang_code', 1, 'https://ror.org/00g0b5e28 Engie (United Kingdom)'),
(19053, 'https://ror.org/01ngsex56', 'no_lang_code', 1, 'https://ror.org/01ngsex56 Mologic (United Kingdom)'),
(19054, 'https://ror.org/007gsak37', 'en', 1, 'https://ror.org/007gsak37 National Public Health Information Coalition'),
(19055, 'https://ror.org/034taa614', 'no_lang_code', 1, 'https://ror.org/034taa614 MetaSensing (Netherlands)'),
(19056, 'https://ror.org/03w52sy75', 'no_lang_code', 1, 'https://ror.org/03w52sy75 Moma (Italy)'),
(19057, 'https://ror.org/00yfj3947', 'no_lang_code', 1, 'https://ror.org/00yfj3947 Momatec (Germany)'),
(19058, 'https://ror.org/04fbzsy15', 'no_lang_code', 1, 'https://ror.org/04fbzsy15 Manus Neurodynamica (United Kingdom)'),
(19059, 'https://ror.org/05yede386', 'no_lang_code', 1, 'https://ror.org/05yede386 Manz (Germany)'),
(19060, 'https://ror.org/012mfm969', 'no_lang_code', 1, 'https://ror.org/012mfm969 NIL Technology (Denmark)'),
(19061, 'https://ror.org/03t7ag653', 'ro', 1, 'https://ror.org/03t7ag653 Institutul National de Cercetare Dezvoltare pentru Tehnologii Criogenice si Izotopice'),
(19062, 'https://ror.org/05py7h914', 'no_lang_code', 1, 'https://ror.org/05py7h914 Nimbus (Italy)'),
(19063, 'https://ror.org/00zc7cw49', 'no_lang_code', 1, 'https://ror.org/00zc7cw49 Momentum (United Kingdom)'),
(19064, 'https://ror.org/00158bh81', 'no_lang_code', 1, 'https://ror.org/00158bh81 Monarch Media (United States)'),
(19065, 'https://ror.org/05q2fkx40', 'no_lang_code', 1, 'https://ror.org/05q2fkx40 Mondeca (France)'),
(19066, 'https://ror.org/05y8ejc62', 'no_lang_code', 1, 'https://ror.org/05y8ejc62 Mellon Technologies (Greece)'),
(19067, 'https://ror.org/00mt2q647', 'no_lang_code', 1, 'https://ror.org/00mt2q647 Nimesis Technology (France)'),
(19068, 'https://ror.org/01kpbz654', 'en', 1, 'https://ror.org/01kpbz654 National School Boards Association'),
(19069, 'https://ror.org/0119z9797', 'no_lang_code', 1, 'https://ror.org/0119z9797 Cybernet Systems Corporation (Canada)'),
(19070, 'https://ror.org/051mkpw87', 'en', 1, 'https://ror.org/051mkpw87 Nipomo Health Center'),
(19071, 'https://ror.org/02r42y861', 'no_lang_code', 1, 'https://ror.org/02r42y861 Monition (United Kingdom)'),
(19072, 'https://ror.org/04eg77e50', 'no_lang_code', 1, 'https://ror.org/04eg77e50 Texas Instruments (United Kingdom)'),
(19073, 'https://ror.org/035e3w906', 'no_lang_code', 1, 'https://ror.org/035e3w906 Mapper Lithography (Netherlands)'),
(19074, 'https://ror.org/00rdvc274', 'no_lang_code', 1, 'https://ror.org/00rdvc274 Metec (Germany)'),
(19075, 'https://ror.org/02abn3h81', 'en', 1, 'https://ror.org/02abn3h81 National Society of Black Physicists'),
(19076, 'https://ror.org/01hpjfm62', 'en', 1, 'https://ror.org/01hpjfm62 National Society of Professional Engineers'),
(19077, 'https://ror.org/00g56d382', 'en', 1, 'https://ror.org/00g56d382 Metec Innovation Consulting'),
(19078, 'https://ror.org/037mdcp74', 'no_lang_code', 1, 'https://ror.org/037mdcp74 NIS (United Kingdom)'),
(19079, 'https://ror.org/004ckc033', 'en', 1, 'https://ror.org/004ckc033 National Stroke Foundation'),
(19080, 'https://ror.org/019kdps70', 'no_lang_code', 1, 'https://ror.org/019kdps70 Marben (France)'),
(19081, 'https://ror.org/02q3acz97', 'no_lang_code', 1, 'https://ror.org/02q3acz97 Materialise (Germany)'),
(19082, 'https://ror.org/005430417', 'no_lang_code', 1, 'https://ror.org/005430417 Arqiva (United Kingdom)'),
(19083, 'https://ror.org/01ekj9t27', 'no_lang_code', 1, 'https://ror.org/01ekj9t27 Nissan (Switzerland)'),
(19084, 'https://ror.org/009e19j97', 'no_lang_code', 1, 'https://ror.org/009e19j97 Nissan (United Kingdom)'),
(19085, 'https://ror.org/02bftc014', 'no_lang_code', 1, 'https://ror.org/02bftc014 Audiprel (Spain)'),
(19086, 'https://ror.org/027m8k660', 'en', 1, 'https://ror.org/027m8k660 Monroe County Department of Human Services'),
(19087, 'https://ror.org/048e56r52', 'no_lang_code', 1, 'https://ror.org/048e56r52 NexusAB (United Kingdom)'),
(19088, 'https://ror.org/0441qm375', 'no_lang_code', 1, 'https://ror.org/0441qm375 Meteotest (Switzerland)'),
(19089, 'https://ror.org/02440j369', 'no_lang_code', 1, 'https://ror.org/02440j369 NiTech Solutions (United Kingdom)'),
(19090, 'https://ror.org/04zqv4n59', 'no_lang_code', 1, 'https://ror.org/04zqv4n59 MetraLabs (Germany)'),
(19091, 'https://ror.org/024nrkt38', 'no_lang_code', 1, 'https://ror.org/024nrkt38 Diebold Nixdorf (Germany)'),
(19092, 'https://ror.org/02nbhy609', 'en', 1, 'https://ror.org/02nbhy609 Monroe County Department of Public Health'),
(19093, 'https://ror.org/026x43f05', 'no_lang_code', 1, 'https://ror.org/026x43f05 NKE Instrumentation (France)'),
(19094, 'https://ror.org/057stj941', 'en', 1, 'https://ror.org/057stj941 National Trust for Scotland'),
(19095, 'https://ror.org/00mbjzh15', 'no_lang_code', 1, 'https://ror.org/00mbjzh15 Montana Molecular (United States)'),
(19096, 'https://ror.org/0231kjt76', 'en', 1, 'https://ror.org/0231kjt76 Montana Office of Public Instruction'),
(19097, 'https://ror.org/0466m5p44', 'no_lang_code', 1, 'https://ror.org/0466m5p44 ACOEM (France)'),
(19098, 'https://ror.org/02c3ywg26', 'no_lang_code', 1, 'https://ror.org/02c3ywg26 Edison (Italy)'),
(19099, 'https://ror.org/02qmp6f83', 'en', 1, 'https://ror.org/02qmp6f83 Office of the Bronx District Attorney'),
(19100, 'https://ror.org/01yt8p082', 'no_lang_code', 1, 'https://ror.org/01yt8p082 Nobatek'),
(19101, 'https://ror.org/04rqchc36', 'en', 1, 'https://ror.org/04rqchc36 Native Health'),
(19102, 'https://ror.org/01902pd86', 'en', 1, 'https://ror.org/01902pd86 Manchester Digital Development Agency'),
(19103, 'https://ror.org/00qzyfa72', 'en', 1, 'https://ror.org/00qzyfa72 Native American Management Services'),
(19104, 'https://ror.org/04dabmn58', 'en', 1, 'https://ror.org/04dabmn58 Monterey Institute for Research in Astronomy'),
(19105, 'https://ror.org/05w9m5a46', 'en', 1, 'https://ror.org/05w9m5a46 National Blood Clot Alliance'),
(19106, 'https://ror.org/03jf8k683', 'en', 1, 'https://ror.org/03jf8k683 Monterey Peninsula Unified School District'),
(19107, 'https://ror.org/03syqx014', 'no_lang_code', 1, 'https://ror.org/03syqx014 Marie Curie Association'),
(19108, 'https://ror.org/0473emp75', 'no_lang_code', 1, 'https://ror.org/0473emp75 Moor Instruments (United Kingdom)'),
(19109, 'https://ror.org/059cxs985', 'no_lang_code', 1, 'https://ror.org/059cxs985 MariLim (Germany)'),
(19110, 'https://ror.org/03zaddr67', 'en', 1, 'https://ror.org/03zaddr67 Moorfields Eye Hospital NHS Foundation Trust'),
(19111, 'https://ror.org/006tpsn23', 'en', 1, 'https://ror.org/006tpsn23 College of Marin'),
(19112, 'https://ror.org/00ms2t790', 'en', 1, 'https://ror.org/00ms2t790 Moorpark College'),
(19113, 'https://ror.org/0106ne629', 'no_lang_code', 1, 'https://ror.org/0106ne629 Metronix (Germany)'),
(19114, 'https://ror.org/056kd2x19', 'en', 1, 'https://ror.org/056kd2x19 Moors for the Future Partnership'),
(19115, 'https://ror.org/05thgyd14', 'en', 1, 'https://ror.org/05thgyd14 Metropolitan Interdenominational Church'),
(19116, 'https://ror.org/047t0bc17', 'no_lang_code', 1, 'https://ror.org/047t0bc17 Moravek Biochemicals (United States)'),
(19117, 'https://ror.org/015yk4694', 'no_lang_code', 1, 'https://ror.org/015yk4694 Noesis Solutions (Belgium)'),
(19118, 'https://ror.org/04fg9yv80', 'en', 1, 'https://ror.org/04fg9yv80 Nature Conservancy of Canada'),
(19119, 'https://ror.org/00b787347', 'de', 1, 'https://ror.org/00b787347 Naturland'),
(19120, 'https://ror.org/051ewjv50', 'no_lang_code', 1, 'https://ror.org/051ewjv50 Nohms Technologies (United States)'),
(19121, 'https://ror.org/007n30b05', 'en', 1, 'https://ror.org/007n30b05 MPC Corporation'),
(19122, 'https://ror.org/05qqnvx16', 'no_lang_code', 1, 'https://ror.org/05qqnvx16 Metropolitana Milanese (Italy)'),
(19123, 'https://ror.org/01vspgn73', 'no_lang_code', 1, 'https://ror.org/01vspgn73 Morgan Innovation and Technology (United Kingdom)'),
(19124, 'https://ror.org/0423djy10', 'no_lang_code', 1, 'https://ror.org/0423djy10 Naturstoff-Technik (Germany)'),
(19125, 'https://ror.org/00zpf0626', 'no_lang_code', 1, 'https://ror.org/00zpf0626 Nokia (United Kingdom)'),
(19126, 'https://ror.org/00v8f0m76', 'no_lang_code', 1, 'https://ror.org/00v8f0m76 Accenture (Italy)'),
(19127, 'https://ror.org/01f0k6s82', 'en', 1, 'https://ror.org/01f0k6s82 Morgantown High School'),
(19128, 'https://ror.org/02b2dcj06', 'no_lang_code', 1, 'https://ror.org/02b2dcj06 Nokian Renkaat Nokian Tyres (Finland)'),
(19129, 'https://ror.org/02ehsaf86', 'no_lang_code', 1, 'https://ror.org/02ehsaf86 Mark Group (United Kingdom)'),
(19130, 'https://ror.org/01sde3g80', 'no_lang_code', 1, 'https://ror.org/01sde3g80 Nomad Tech (Portugal)'),
(19131, 'https://ror.org/00xxtbb12', 'no_lang_code', 1, 'https://ror.org/00xxtbb12 Naval Architecture Progress (Greece)'),
(19132, 'https://ror.org/039gx9203', 'en', 1, 'https://ror.org/039gx9203 Navarro College'),
(19133, 'https://ror.org/04qhjq449', 'no_lang_code', 1, 'https://ror.org/04qhjq449 Nomisma (Italy)'),
(19134, 'https://ror.org/04z6mea27', 'no_lang_code', 1, 'https://ror.org/04z6mea27 Mexel (France)'),
(19135, 'https://ror.org/04j5b4618', 'no_lang_code', 1, 'https://ror.org/04j5b4618 Navidea Biopharmaceuticals (United States)'),
(19136, 'https://ror.org/04727qm97', 'no_lang_code', 1, 'https://ror.org/04727qm97 Nomor Research (Germany)'),
(19137, 'https://ror.org/053tj6993', 'no_lang_code', 1, 'https://ror.org/053tj6993 Schauenburg (United Kingdom)'),
(19138, 'https://ror.org/01gfmr708', 'no_lang_code', 1, 'https://ror.org/01gfmr708 MHG Systems (Finland)'),
(19139, 'https://ror.org/03kw02y34', 'no_lang_code', 1, 'https://ror.org/03kw02y34 Navimetric (Spain)'),
(19140, 'https://ror.org/02k52c211', 'en', 1, 'https://ror.org/02k52c211 Marketing Science Institute'),
(19141, 'https://ror.org/045zca936', 'no_lang_code', 1, 'https://ror.org/045zca936 Mosaic Films (United Kingdom)'),
(19142, 'https://ror.org/022nmct36', 'en', 1, 'https://ror.org/022nmct36 Michigan Coalition to End Domestic and Sexual Violence'),
(19143, 'https://ror.org/03f6phn52', 'no_lang_code', 1, 'https://ror.org/03f6phn52 CompaƱƭa Mexicana de Radiologƭa (United States)'),
(19144, 'https://ror.org/008ggzb67', 'no_lang_code', 1, 'https://ror.org/008ggzb67 Navtech Radar (United Kingdom)'),
(19145, 'https://ror.org/00fv12b26', 'en', 1, 'https://ror.org/00fv12b26 Nazareth Hospital'),
(19146, 'https://ror.org/042a0mn98', 'no_lang_code', 1, 'https://ror.org/042a0mn98 Essent (Netherlands)'),
(19147, 'https://ror.org/05k5g2d46', 'no_lang_code', 1, 'https://ror.org/05k5g2d46 NBE Tech (United States)'),
(19148, 'https://ror.org/04p6k7180', 'no_lang_code', 1, 'https://ror.org/04p6k7180 Marksman Cellject (Canada)'),
(19149, 'https://ror.org/01qgxr245', 'no_lang_code', 1, 'https://ror.org/01qgxr245 NCR (United Kingdom)'),
(19150, 'https://ror.org/05f6vdg41', 'no_lang_code', 1, 'https://ror.org/05f6vdg41 Noray Bioinformatics (Spain)'),
(19151, 'https://ror.org/021xsee05', 'no_lang_code', 1, 'https://ror.org/021xsee05 Norac Pharma (United States)'),
(19152, 'https://ror.org/05884e364', 'no_lang_code', 1, 'https://ror.org/05884e364 nsm Norbert SchlƤfli (Switzerland)'),
(19153, 'https://ror.org/04vf94f14', 'no_lang_code', 1, 'https://ror.org/04vf94f14 Northern Lipids (Canada)'),
(19154, 'https://ror.org/02hf6mx60', 'en', 1, 'https://ror.org/02hf6mx60 National Research University of Electronic Technology ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ МИЭТ'),
(19155, 'https://ror.org/056s99406', 'no_lang_code', 1, 'https://ror.org/056s99406 Norcada (Canada)'),
(19156, 'https://ror.org/00mcdb425', 'no_lang_code', 1, 'https://ror.org/00mcdb425 HeidelbergCement (Norway)'),
(19157, 'https://ror.org/05gqfmc91', 'en', 1, 'https://ror.org/05gqfmc91 Nebraska Department of Agriculture'),
(19158, 'https://ror.org/02jpv5m37', 'no_lang_code', 1, 'https://ror.org/02jpv5m37 NorChip (Norway)'),
(19159, 'https://ror.org/04v3zn617', 'no_lang_code', 1, 'https://ror.org/04v3zn617 Fungisem (Spain)'),
(19160, 'https://ror.org/02agt5758', 'no_lang_code', 1, 'https://ror.org/02agt5758 Northern Technologies International (United States)'),
(19161, 'https://ror.org/03xyda961', 'en', 1, 'https://ror.org/03xyda961 Northland Pioneer College'),
(19162, 'https://ror.org/02hevb853', 'en', 1, 'https://ror.org/02hevb853 Nebraska Educational Telecommunications'),
(19163, 'https://ror.org/00hc1y308', 'no_lang_code', 1, 'https://ror.org/00hc1y308 VivoSight (United Kingdom)'),
(19164, 'https://ror.org/01c3gx397', 'en', 1, 'https://ror.org/01c3gx397 Nederlands Jeugdinstituut Netherlands Youth Institute'),
(19165, 'https://ror.org/00ge7mp65', 'en', 1, 'https://ror.org/00ge7mp65 Thatcham Research'),
(19166, 'https://ror.org/01vw04q95', 'no_lang_code', 1, 'https://ror.org/01vw04q95 Motor Oil (Greece)'),
(19167, 'https://ror.org/01gddze50', 'en', 1, 'https://ror.org/01gddze50 Central Michigan University Research Corporation'),
(19168, 'https://ror.org/01tm8wm67', 'no_lang_code', 1, 'https://ror.org/01tm8wm67 Motorola Solutions (Israel)'),
(19169, 'https://ror.org/052e8ag96', 'en', 1, 'https://ror.org/052e8ag96 Northwest Florida State College'),
(19170, 'https://ror.org/04f0w3t91', 'no_lang_code', 1, 'https://ror.org/04f0w3t91 Vestas (Netherlands)'),
(19171, 'https://ror.org/01n9x4465', 'no_lang_code', 1, 'https://ror.org/01n9x4465 Nordeconsult (Sweden)'),
(19172, 'https://ror.org/00nx2d878', 'en', 1, 'https://ror.org/00nx2d878 Mount Washington Observatory'),
(19173, 'https://ror.org/05esb3126', 'en', 1, 'https://ror.org/05esb3126 Mountain Comprehensive Care Centre'),
(19174, 'https://ror.org/031tysd23', 'no_lang_code', 1, 'https://ror.org/031tysd23 Coherent (United States)'),
(19175, 'https://ror.org/03nr54n68', 'no_lang_code', 1, 'https://ror.org/03nr54n68 Nordic Bioscience (Denmark)'),
(19176, 'https://ror.org/03jafxc29', 'no_lang_code', 1, 'https://ror.org/03jafxc29 Micro Photon Devices'),
(19177, 'https://ror.org/04pvywd96', 'no_lang_code', 1, 'https://ror.org/04pvywd96 Microsystems (United Kingdom)'),
(19178, 'https://ror.org/03kfrqx27', 'no_lang_code', 1, 'https://ror.org/03kfrqx27 Nemaura Pharma (United Kingdom)'),
(19179, 'https://ror.org/045na4q63', 'no_lang_code', 1, 'https://ror.org/045na4q63 Nemetschek (Germany)'),
(19180, 'https://ror.org/02svrcw68', 'no_lang_code', 1, 'https://ror.org/02svrcw68 Micro Systems Engineering (Germany)'),
(19181, 'https://ror.org/03pz77m13', 'no_lang_code', 1, 'https://ror.org/03pz77m13 Nemetschek Allplan (Slovakia)'),
(19182, 'https://ror.org/03jvxy171', 'no_lang_code', 1, 'https://ror.org/03jvxy171 Micro Optics Technologies (United States)'),
(19183, 'https://ror.org/01ppn2r43', 'no_lang_code', 1, 'https://ror.org/01ppn2r43 Nemko (Norway) Norges Elektriske Materiellkontroll'),
(19184, 'https://ror.org/04es4vf69', 'no_lang_code', 1, 'https://ror.org/04es4vf69 Nemucore Medical Innovations (United States)'),
(19185, 'https://ror.org/04dkmxz35', 'no_lang_code', 1, 'https://ror.org/04dkmxz35 NorthWestNET'),
(19186, 'https://ror.org/04yhwpc24', 'no_lang_code', 1, 'https://ror.org/04yhwpc24 Microbial ID (United States)'),
(19187, 'https://ror.org/04hsnt894', 'no_lang_code', 1, 'https://ror.org/04hsnt894 Microbial Insights (United States)'),
(19188, 'https://ror.org/010gr4v10', 'no_lang_code', 1, 'https://ror.org/010gr4v10 Nenuphar (France)'),
(19189, 'https://ror.org/014ydfp77', 'no_lang_code', 1, 'https://ror.org/014ydfp77 Neoceram (Belgium)'),
(19190, 'https://ror.org/01p542m48', 'no_lang_code', 1, 'https://ror.org/01p542m48 NeoCytex Biopharma (United States)'),
(19191, 'https://ror.org/04de4xn59', 'no_lang_code', 1, 'https://ror.org/04de4xn59 Neogen (United States)'),
(19192, 'https://ror.org/01hy5h819', 'no_lang_code', 1, 'https://ror.org/01hy5h819 First Sensor (Canada)'),
(19193, 'https://ror.org/03zvhsj76', 'no_lang_code', 1, 'https://ror.org/03zvhsj76 Microcosm (United States)'),
(19194, 'https://ror.org/048mdnr65', 'no_lang_code', 1, 'https://ror.org/048mdnr65 Nortis (United States)'),
(19195, 'https://ror.org/034fwy907', 'no_lang_code', 1, 'https://ror.org/034fwy907 Mountain View Clinical Research'),
(19196, 'https://ror.org/01cqxqw57', 'no_lang_code', 1, 'https://ror.org/01cqxqw57 Norton Aluminium (United Kingdom)'),
(19197, 'https://ror.org/05y0ts542', 'no_lang_code', 1, 'https://ror.org/05y0ts542 Norton Cast Products (United Kingdom)'),
(19198, 'https://ror.org/053x1t631', 'no_lang_code', 1, 'https://ror.org/053x1t631 Neotherix (United Kingdom)'),
(19199, 'https://ror.org/05q1nwf35', 'sv', 1, 'https://ror.org/05q1nwf35 NordGen'),
(19200, 'https://ror.org/002wz8j95', 'no_lang_code', 1, 'https://ror.org/002wz8j95 Norton Hydraulics (United Kingdom)'),
(19201, 'https://ror.org/00sn5j281', 'no_lang_code', 1, 'https://ror.org/00sn5j281 Move Entwicklungs Infrastruktur und Service (Germany)'),
(19202, 'https://ror.org/03y7n6m87', 'en', 1, 'https://ror.org/03y7n6m87 Norton Sound Health Corporation'),
(19203, 'https://ror.org/02y7tka90', 'no_lang_code', 1, 'https://ror.org/02y7tka90 MicroDiscovery (Germany)'),
(19204, 'https://ror.org/039pz2z06', 'en', 1, 'https://ror.org/039pz2z06 Norwalk Community College'),
(19205, 'https://ror.org/003srnj92', 'no_lang_code', 1, 'https://ror.org/003srnj92 MicroDish (Netherlands)'),
(19206, 'https://ror.org/0295ktr04', 'no_lang_code', 1, 'https://ror.org/0295ktr04 Nordic Transport Development'),
(19207, 'https://ror.org/01dx3d866', 'no_lang_code', 1, 'https://ror.org/01dx3d866 Nesch (United States)'),
(19208, 'https://ror.org/04f6j3x86', 'en', 1, 'https://ror.org/04f6j3x86 Nordic Innovation'),
(19209, 'https://ror.org/02rqc5533', 'en', 1, 'https://ror.org/02rqc5533 Nesta'),
(19210, 'https://ror.org/01keak954', 'no_lang_code', 1, 'https://ror.org/01keak954 Microelectronica (Romania)'),
(19211, 'https://ror.org/01rd9jd59', 'en', 1, 'https://ror.org/01rd9jd59 MRB Forschungszentrum für Magnet-Resonanz-Bayern MRB Research Center for Magnetic Resonance Bavaria'),
(19212, 'https://ror.org/03zj6v943', 'en', 1, 'https://ror.org/03zj6v943 Norfolk County Council'),
(19213, 'https://ror.org/05j75hk11', 'no_lang_code', 1, 'https://ror.org/05j75hk11 Masermic (Spain)'),
(19214, 'https://ror.org/04v9sac23', 'no_lang_code', 1, 'https://ror.org/04v9sac23 Microflown Technologies (Netherlands)'),
(19215, 'https://ror.org/037fxwm47', 'no_lang_code', 1, 'https://ror.org/037fxwm47 Iron Mountain (United States)'),
(19216, 'https://ror.org/02wcat891', 'no_lang_code', 1, 'https://ror.org/02wcat891 MRC Holland (Netherlands)'),
(19217, 'https://ror.org/00evp8v92', 'no_lang_code', 1, 'https://ror.org/00evp8v92 Lab21 (United Kingdom)'),
(19218, 'https://ror.org/01kse2t29', 'no_lang_code', 1, 'https://ror.org/01kse2t29 Microgen (United States)'),
(19219, 'https://ror.org/00knakc29', 'no_lang_code', 1, 'https://ror.org/00knakc29 NestlƩ (United Kingdom)'),
(19220, 'https://ror.org/0086t2w58', 'no_lang_code', 1, 'https://ror.org/0086t2w58 Dustin (Norway)'),
(19221, 'https://ror.org/02y600b55', 'no_lang_code', 1, 'https://ror.org/02y600b55 Microlab Devices (United Kingdom)'),
(19222, 'https://ror.org/00rnxjt19', 'no_lang_code', 1, 'https://ror.org/00rnxjt19 Federation of Norwegian Industries Norsk Industri (Norway)'),
(19223, 'https://ror.org/01e6b1w57', 'no_lang_code', 1, 'https://ror.org/01e6b1w57 MicroLS (Germany)'),
(19224, 'https://ror.org/04ymsjg74', 'no_lang_code', 1, 'https://ror.org/04ymsjg74 MRK Systeme (Germany)'),
(19225, 'https://ror.org/055x1j102', 'en', 1, 'https://ror.org/055x1j102 Norwegian Shipowners'' Association'),
(19226, 'https://ror.org/02y6w3696', 'en', 1, 'https://ror.org/02y6w3696 Norwegian Seafood Association'),
(19227, 'https://ror.org/00eqfbw40', 'no_lang_code', 1, 'https://ror.org/00eqfbw40 Microsoft (Portugal)'),
(19228, 'https://ror.org/02syy7986', 'en', 1, 'https://ror.org/02syy7986 Norwegian Water Resources and Energy Directorate'),
(19229, 'https://ror.org/01avsfs85', 'no_lang_code', 1, 'https://ror.org/01avsfs85 Micromath (United States)'),
(19230, 'https://ror.org/00sag0k61', 'en', 1, 'https://ror.org/00sag0k61 North American Association for Environmental Education'),
(19231, 'https://ror.org/0523w1957', 'no_lang_code', 1, 'https://ror.org/0523w1957 Micromatica (Italy)'),
(19232, 'https://ror.org/00h642n86', 'no_lang_code', 1, 'https://ror.org/00h642n86 Noterik (Netherlands)'),
(19233, 'https://ror.org/01gxw4h97', 'en', 1, 'https://ror.org/01gxw4h97 Nottingham Community Housing Association'),
(19234, 'https://ror.org/034g8wg77', 'no_lang_code', 1, 'https://ror.org/034g8wg77 Vandurit (Italy)'),
(19235, 'https://ror.org/01mhzw324', 'no_lang_code', 1, 'https://ror.org/01mhzw324 Nottingham Express Transit (United Kingdom)'),
(19236, 'https://ror.org/018cwj358', 'no_lang_code', 1, 'https://ror.org/018cwj358 Micromega Dynamics (Belgium)');
INSERT INTO `rors` VALUES
(19237, 'https://ror.org/038tkhb28', 'no_lang_code', 1, 'https://ror.org/038tkhb28 MicronOptics (United States)'),
(19238, 'https://ror.org/02ff3pb56', 'no_lang_code', 1, 'https://ror.org/02ff3pb56 NetSmart (Greece)'),
(19239, 'https://ror.org/04avwdy85', 'en', 1, 'https://ror.org/04avwdy85 Nottinghamshire County Council'),
(19240, 'https://ror.org/02v996210', 'no_lang_code', 1, 'https://ror.org/02v996210 NetUnion (Switzerland)'),
(19241, 'https://ror.org/01wnj5m91', 'no_lang_code', 1, 'https://ror.org/01wnj5m91 Bonnier Technology Group (Germany)'),
(19242, 'https://ror.org/02day0j61', 'no_lang_code', 1, 'https://ror.org/02day0j61 Nova Medical (United States)'),
(19243, 'https://ror.org/00pbka429', 'no_lang_code', 1, 'https://ror.org/00pbka429 NETvisor (Hungary)'),
(19244, 'https://ror.org/015snna87', 'no_lang_code', 1, 'https://ror.org/015snna87 NOVA Scientific (United States)'),
(19245, 'https://ror.org/01ry0d141', 'no_lang_code', 1, 'https://ror.org/01ry0d141 Müller BBM (Germany)'),
(19246, 'https://ror.org/04s1zn642', 'no_lang_code', 1, 'https://ror.org/04s1zn642 Notox (Denmark)'),
(19247, 'https://ror.org/047dr9v36', 'en', 1, 'https://ror.org/047dr9v36 Network Human Services'),
(19248, 'https://ror.org/040tj8752', 'no_lang_code', 1, 'https://ror.org/040tj8752 Multicert (Portugal)'),
(19249, 'https://ror.org/00r1erk38', 'no_lang_code', 1, 'https://ror.org/00r1erk38 MultiD Analyses (Sweden)'),
(19250, 'https://ror.org/04peg0q52', 'en', 1, 'https://ror.org/04peg0q52 Network of Aquaculture Centres in Asia-Pacific'),
(19251, 'https://ror.org/00cxaqd06', 'no_lang_code', 1, 'https://ror.org/00cxaqd06 Exceet Group (Germany)'),
(19252, 'https://ror.org/050e4js82', 'no_lang_code', 1, 'https://ror.org/050e4js82 Neumedicines (United States)'),
(19253, 'https://ror.org/03hyrhe39', 'no_lang_code', 1, 'https://ror.org/03hyrhe39 Novacta (United Kingdom)'),
(19254, 'https://ror.org/00pmf8m46', 'no_lang_code', 1, 'https://ror.org/00pmf8m46 Neuro Kinetics (United States)'),
(19255, 'https://ror.org/02wmz0223', 'no_lang_code', 1, 'https://ror.org/02wmz0223 Micropore Technologies (United Kingdom)'),
(19256, 'https://ror.org/004wx9438', 'no_lang_code', 1, 'https://ror.org/004wx9438 Micropyretics Heater International (United States)'),
(19257, 'https://ror.org/018d33y89', 'en', 1, 'https://ror.org/018d33y89 Neurobehavioral Systems'),
(19258, 'https://ror.org/05m25x550', 'no_lang_code', 1, 'https://ror.org/05m25x550 Microsens (Switzerland)'),
(19259, 'https://ror.org/05xnzvx23', 'no_lang_code', 1, 'https://ror.org/05xnzvx23 Multimatic ILSA (Germany)'),
(19260, 'https://ror.org/04s4k6s39', 'no_lang_code', 1, 'https://ror.org/04s4k6s39 Samsung (Germany)'),
(19261, 'https://ror.org/00h4x2v81', 'no_lang_code', 1, 'https://ror.org/00h4x2v81 Netivei Israel (Israel) החברה ×”×œ××•×ž×™×Ŗ ×œ×“×Ø×›×™× ×‘×™×©×Ø××œ'),
(19262, 'https://ror.org/05xjh4a29', 'no_lang_code', 1, 'https://ror.org/05xjh4a29 Mine Safety Appliances (United States)'),
(19263, 'https://ror.org/01znzmx53', 'no_lang_code', 1, 'https://ror.org/01znzmx53 Multimeric Biotherapeutics (United States)'),
(19264, 'https://ror.org/03wwn0z54', 'no_lang_code', 1, 'https://ror.org/03wwn0z54 NovaMechanics (Cyprus)'),
(19265, 'https://ror.org/00m4w5c43', 'no_lang_code', 1, 'https://ror.org/00m4w5c43 Novarials (United States)'),
(19266, 'https://ror.org/05afs3z13', 'no_lang_code', 1, 'https://ror.org/05afs3z13 Novartis (Canada)'),
(19267, 'https://ror.org/00x4mmh13', 'no_lang_code', 1, 'https://ror.org/00x4mmh13 Nonwovens Innovation & Research Institute'),
(19268, 'https://ror.org/016r60a96', 'no_lang_code', 1, 'https://ror.org/016r60a96 NOVASiC (France)'),
(19269, 'https://ror.org/047dmk096', 'en', 1, 'https://ror.org/047dmk096 Metro Wellness and Community Centers'),
(19270, 'https://ror.org/048j6y202', 'no_lang_code', 1, 'https://ror.org/048j6y202 Novatea (Italy)'),
(19271, 'https://ror.org/03pge2g16', 'no_lang_code', 1, 'https://ror.org/03pge2g16 NovAtel (Canada)'),
(19272, 'https://ror.org/027x7jn80', 'no_lang_code', 1, 'https://ror.org/027x7jn80 NeuroSearch (Denmark)'),
(19273, 'https://ror.org/01k42ef11', 'en', 1, 'https://ror.org/01k42ef11 Department of County ​Human Services'),
(19274, 'https://ror.org/00n7se427', 'no_lang_code', 1, 'https://ror.org/00n7se427 NeuroSigma (United States)'),
(19275, 'https://ror.org/05qj4gz58', 'no_lang_code', 1, 'https://ror.org/05qj4gz58 MicroSurfaces (United States)'),
(19276, 'https://ror.org/03a17f132', 'no_lang_code', 1, 'https://ror.org/03a17f132 Light Chain Bioscience (Switzerland)'),
(19277, 'https://ror.org/00b6drk25', 'en', 1, 'https://ror.org/00b6drk25 Government Finance Officers Association'),
(19278, 'https://ror.org/014gamn09', 'no_lang_code', 1, 'https://ror.org/014gamn09 Novomer (United States)'),
(19279, 'https://ror.org/02eney694', 'en', 1, 'https://ror.org/02eney694 Nevada PEP'),
(19280, 'https://ror.org/030zrse19', 'en', 1, 'https://ror.org/030zrse19 New and Renewable Energy Authority'),
(19281, 'https://ror.org/03etyp213', 'no_lang_code', 1, 'https://ror.org/03etyp213 Municipality of Athens Development Agency'),
(19282, 'https://ror.org/01ajhw692', 'no_lang_code', 1, 'https://ror.org/01ajhw692 NP Photonics (United States)'),
(19283, 'https://ror.org/01r49jb64', 'no_lang_code', 1, 'https://ror.org/01r49jb64 MicroTEC (Germany)'),
(19284, 'https://ror.org/059aewc73', 'en', 1, 'https://ror.org/059aewc73 New England College'),
(19285, 'https://ror.org/03hhk3369', 'fr', 1, 'https://ror.org/03hhk3369 Armand Frappier Museum'),
(19286, 'https://ror.org/038s37067', 'pt', 1, 'https://ror.org/038s37067 Museu de Arte Pré-Histórica de Mação'),
(19287, 'https://ror.org/00dheky92', 'en', 1, 'https://ror.org/00dheky92 New England Institute of Addiction Studies'),
(19288, 'https://ror.org/008jpgg46', 'en', 1, 'https://ror.org/008jpgg46 New England Wild Flower Society'),
(19289, 'https://ror.org/002p5mx82', 'no_lang_code', 1, 'https://ror.org/002p5mx82 Microtest (United Kingdom)'),
(19290, 'https://ror.org/0415cr103', 'no_lang_code', 1, 'https://ror.org/0415cr103 Novo Nordisk (United Kingdom)'),
(19291, 'https://ror.org/00gytzf17', 'no_lang_code', 1, 'https://ror.org/00gytzf17 SMS Siemag (Germany)'),
(19292, 'https://ror.org/01m274k23', 'no_lang_code', 1, 'https://ror.org/01m274k23 Zoetis (Canada)'),
(19293, 'https://ror.org/03ksty822', 'no_lang_code', 1, 'https://ror.org/03ksty822 New Generation Biogas'),
(19294, 'https://ror.org/03ceam220', 'pt', 1, 'https://ror.org/03ceam220 Museu da PresidĆŖncia da RepĆŗblica'),
(19295, 'https://ror.org/01q06dd50', 'en', 1, 'https://ror.org/01q06dd50 New Hampshire Department of Education'),
(19296, 'https://ror.org/05ntbjw82', 'no_lang_code', 1, 'https://ror.org/05ntbjw82 Microtest (Spain)'),
(19297, 'https://ror.org/05htkw892', 'no_lang_code', 1, 'https://ror.org/05htkw892 Hemanext (United States)'),
(19298, 'https://ror.org/02xtk7r80', 'en', 1, 'https://ror.org/02xtk7r80 New Horizons Community Service Board'),
(19299, 'https://ror.org/02y88x190', 'en', 1, 'https://ror.org/02y88x190 Museu Nacional de Arqueologia National Archaeology Museum'),
(19300, 'https://ror.org/04xxqrf38', 'no_lang_code', 1, 'https://ror.org/04xxqrf38 New Jersey Microsystems (United States)'),
(19301, 'https://ror.org/03hm2pw19', 'no_lang_code', 1, 'https://ror.org/03hm2pw19 NRU PrƤzisionstechnologie (Germany)'),
(19302, 'https://ror.org/018ekew90', 'en', 1, 'https://ror.org/018ekew90 New Jersey Department of Corrections'),
(19303, 'https://ror.org/04tsj5e88', 'no_lang_code', 1, 'https://ror.org/04tsj5e88 New Light Industries (United States)'),
(19304, 'https://ror.org/03fcyzf82', 'en', 1, 'https://ror.org/03fcyzf82 New Mexico Family Network'),
(19305, 'https://ror.org/02engqd33', 'en', 1, 'https://ror.org/02engqd33 Museum of New Mexico'),
(19306, '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'),
(19307, 'https://ror.org/03e5ggr08', 'no_lang_code', 1, 'https://ror.org/03e5ggr08 Kelme (Spain)'),
(19308, 'https://ror.org/03xbt0w63', 'en', 1, 'https://ror.org/03xbt0w63 New Orleans AIDS Task Force'),
(19309, 'https://ror.org/03mqxhm40', 'en', 1, 'https://ror.org/03mqxhm40 Museums Association'),
(19310, 'https://ror.org/04dt01t51', 'en', 1, 'https://ror.org/04dt01t51 Orleans Parish School Board'),
(19311, 'https://ror.org/03tbnx652', 'en', 1, 'https://ror.org/03tbnx652 Missouri Area Health Education Center'),
(19312, 'https://ror.org/036qcnh52', 'en', 1, 'https://ror.org/036qcnh52 Education Northwest'),
(19313, 'https://ror.org/02h1mkm69', 'en', 1, 'https://ror.org/02h1mkm69 Musicians Union'),
(19314, 'https://ror.org/03hj4jr80', 'en', 1, 'https://ror.org/03hj4jr80 North Carolina Biotechnology Center'),
(19315, 'https://ror.org/02rdhze40', 'en', 1, 'https://ror.org/02rdhze40 Middlesex Community College'),
(19316, 'https://ror.org/017t65n61', 'en', 1, 'https://ror.org/017t65n61 North Carolina Families United'),
(19317, 'https://ror.org/03ymdz715', 'no_lang_code', 1, 'https://ror.org/03ymdz715 MIDI (United States)'),
(19318, 'https://ror.org/00w940402', 'no_lang_code', 1, 'https://ror.org/00w940402 MuthƩn & MuthƩn (United States)'),
(19319, 'https://ror.org/010vqh084', 'en', 1, 'https://ror.org/010vqh084 North Carolina Public Schools'),
(19320, 'https://ror.org/05x8hy709', 'en', 1, 'https://ror.org/05x8hy709 North Carolina Wesleyan College'),
(19321, 'https://ror.org/04bs93498', 'en', 1, 'https://ror.org/04bs93498 North Country Health Consortium'),
(19322, 'https://ror.org/02dbkpn67', 'no_lang_code', 1, 'https://ror.org/02dbkpn67 Nutech Industries (United States)'),
(19323, 'https://ror.org/02cv67x09', 'en', 1, 'https://ror.org/02cv67x09 North Dakota Legislative Council'),
(19324, 'https://ror.org/023njmx50', 'no_lang_code', 1, 'https://ror.org/023njmx50 Midland Valley Exploration (United Kingdom)'),
(19325, 'https://ror.org/01pshz178', 'no_lang_code', 1, 'https://ror.org/01pshz178 Nuance Communications (Canada)'),
(19326, 'https://ror.org/01emh3a91', 'no_lang_code', 1, 'https://ror.org/01emh3a91 Midlands Aerospace Alliance'),
(19327, 'https://ror.org/02hfw7a32', 'en', 1, 'https://ror.org/02hfw7a32 North Hennepin Community College'),
(19328, 'https://ror.org/02d7rnk16', 'en', 1, 'https://ror.org/02d7rnk16 North Seattle College'),
(19329, 'https://ror.org/04mfr9y95', 'en', 1, 'https://ror.org/04mfr9y95 Midlands Technical College'),
(19330, 'https://ror.org/00yeg5v71', 'no_lang_code', 1, 'https://ror.org/00yeg5v71 Nubad (United States)'),
(19331, 'https://ror.org/01qjejj07', 'no_lang_code', 1, 'https://ror.org/01qjejj07 Bƶrsenverein des Deutschen Buchhandels (Germany)'),
(19332, 'https://ror.org/03yy8w025', 'en', 1, 'https://ror.org/03yy8w025 Nuclear Safety Research Institute NukleÔris BiztonsÔgi Kutatóintézet'),
(19333, 'https://ror.org/024j02139', 'en', 1, 'https://ror.org/024j02139 Northeast Communities Against Substance Abuse'),
(19334, 'https://ror.org/0413w0z02', 'en', 1, 'https://ror.org/0413w0z02 Northeast Document Conservation Center'),
(19335, 'https://ror.org/04g934a02', 'no_lang_code', 1, 'https://ror.org/04g934a02 Mierij Meteo'),
(19336, 'https://ror.org/03fzvpt97', 'en', 1, 'https://ror.org/03fzvpt97 Northeast Iowa Dairy Foundation'),
(19337, 'https://ror.org/030wrns14', 'no_lang_code', 1, 'https://ror.org/030wrns14 Northern Digital (Canada)'),
(19338, 'https://ror.org/04as3by48', 'no_lang_code', 1, 'https://ror.org/04as3by48 Electricity Supply Board (United Kingdom)'),
(19339, 'https://ror.org/003sfv155', 'en', 1, 'https://ror.org/003sfv155 Nuclear Physics European Collaboration Committee'),
(19340, 'https://ror.org/03v8pzh67', 'no_lang_code', 1, 'https://ror.org/03v8pzh67 Eurofins (Germany)'),
(19341, 'https://ror.org/04pat0b95', 'no_lang_code', 1, 'https://ror.org/04pat0b95 OnTo Technology (United States)'),
(19342, 'https://ror.org/0597mp424', 'no_lang_code', 1, 'https://ror.org/0597mp424 Myasishchev Design Bureau (Russia)'),
(19343, 'https://ror.org/04y086814', 'no_lang_code', 1, 'https://ror.org/04y086814 Onyx Solar (Spain)'),
(19344, 'https://ror.org/01d0ans39', 'en', 1, 'https://ror.org/01d0ans39 Nuclear Regulatory Authority of the Slovak Republic'),
(19345, 'https://ror.org/04cz2yk65', 'en', 1, 'https://ror.org/04cz2yk65 Myndigheten fƶr samhƤllsskydd och beredskap Swedish Civil Contingencies Agency'),
(19346, 'https://ror.org/05m0z9f45', 'no_lang_code', 1, 'https://ror.org/05m0z9f45 Duro Felguera (Spain)'),
(19347, 'https://ror.org/04artyh12', 'no_lang_code', 1, 'https://ror.org/04artyh12 Opalux (Canada)'),
(19348, 'https://ror.org/044qmzh69', 'pt', 1, 'https://ror.org/044qmzh69 NĆŗcleo Interactivo de Astronomia'),
(19349, 'https://ror.org/0595jb241', 'no_lang_code', 1, 'https://ror.org/0595jb241 Mikron (Germany)'),
(19350, 'https://ror.org/02jndq195', 'no_lang_code', 1, 'https://ror.org/02jndq195 Vixar (United States)'),
(19351, 'https://ror.org/01mkymc65', 'no_lang_code', 1, 'https://ror.org/01mkymc65 N.A.Software (United Kingdom)'),
(19352, 'https://ror.org/03yz6x113', 'no_lang_code', 1, 'https://ror.org/03yz6x113 Cisco Systems (Israel)'),
(19353, 'https://ror.org/04pcnys31', 'no_lang_code', 1, 'https://ror.org/04pcnys31 Numerical Algorithms Group (United Kingdom)'),
(19354, 'https://ror.org/03kvekp81', 'no_lang_code', 1, 'https://ror.org/03kvekp81 Turkish Electro Technology (Turkey)'),
(19355, 'https://ror.org/02hr72y72', 'en', 1, 'https://ror.org/02hr72y72 Open Data Institute'),
(19356, 'https://ror.org/03jv4cw45', 'no_lang_code', 1, 'https://ror.org/03jv4cw45 AudioCodes (Israel)'),
(19357, 'https://ror.org/02sh2xr17', 'no_lang_code', 1, 'https://ror.org/02sh2xr17 MIL Corporation (United States)'),
(19358, 'https://ror.org/036yfjc53', 'en', 1, 'https://ror.org/036yfjc53 Nassau Alcohol Crime Drug Abatement Coalition'),
(19359, 'https://ror.org/05h2ydr55', 'no_lang_code', 1, 'https://ror.org/05h2ydr55 Milagen (United States)'),
(19360, 'https://ror.org/01wzp0b05', 'en', 1, 'https://ror.org/01wzp0b05 Milford Elementary School'),
(19361, 'https://ror.org/023ys3x64', 'no_lang_code', 1, 'https://ror.org/023ys3x64 Thermo Fisher Scientific (Denmark)'),
(19362, 'https://ror.org/04sbdyg82', 'no_lang_code', 1, 'https://ror.org/04sbdyg82 Piaggio (Spain)'),
(19363, 'https://ror.org/01w41ag04', 'no_lang_code', 1, 'https://ror.org/01w41ag04 Millab Consult (Norway)'),
(19364, 'https://ror.org/0042ycb06', 'no_lang_code', 1, 'https://ror.org/0042ycb06 Naftosol (Greece)'),
(19365, 'https://ror.org/001z81t90', 'no_lang_code', 1, 'https://ror.org/001z81t90 OPeNDAP'),
(19366, 'https://ror.org/00c12ad68', 'no_lang_code', 1, 'https://ror.org/00c12ad68 Opera North (United Kingdom)'),
(19367, 'https://ror.org/012m7et47', 'no_lang_code', 1, 'https://ror.org/012m7et47 Naneum (United Kingdom)'),
(19368, 'https://ror.org/04bm0js74', 'no_lang_code', 1, 'https://ror.org/04bm0js74 Cristal (United Kingdom)'),
(19369, 'https://ror.org/05h2czb21', 'no_lang_code', 1, 'https://ror.org/05h2czb21 Nutech (Germany)'),
(19370, 'https://ror.org/033dcc869', 'no_lang_code', 1, 'https://ror.org/033dcc869 Nano Liquid Devices (United States)'),
(19371, 'https://ror.org/05v8evh13', 'no_lang_code', 1, 'https://ror.org/05v8evh13 Nutra Canada (Canada)'),
(19372, 'https://ror.org/04f254318', 'no_lang_code', 1, 'https://ror.org/04f254318 Skretting (Norway)'),
(19373, 'https://ror.org/04cb36z24', 'ro', 1, 'https://ror.org/04cb36z24 Opinia'),
(19374, 'https://ror.org/04ny69498', 'no_lang_code', 1, 'https://ror.org/04ny69498 Millidyne (Finland)'),
(19375, 'https://ror.org/04qcmbz41', 'no_lang_code', 1, 'https://ror.org/04qcmbz41 NanOasis Technologies (United States)'),
(19376, 'https://ror.org/04jb7ky60', 'no_lang_code', 1, 'https://ror.org/04jb7ky60 Nanocerox (United States)'),
(19377, 'https://ror.org/041vrah58', 'no_lang_code', 1, 'https://ror.org/041vrah58 Nanocopoeia (United States)'),
(19378, 'https://ror.org/03njz2k95', 'no_lang_code', 1, 'https://ror.org/03njz2k95 Optech (Canada)'),
(19379, 'https://ror.org/05y8sjx72', 'no_lang_code', 1, 'https://ror.org/05y8sjx72 Nanofiber Solutions (United States)'),
(19380, 'https://ror.org/02wtt8e62', 'no_lang_code', 1, 'https://ror.org/02wtt8e62 OpTek Systems (United Kingdom)'),
(19381, 'https://ror.org/00wyga863', 'no_lang_code', 1, 'https://ror.org/00wyga863 Nanoforce Technology (United Kingdom)'),
(19382, 'https://ror.org/02hz1w568', 'no_lang_code', 1, 'https://ror.org/02hz1w568 Nanogap Sub-NM-Powder (Spain)'),
(19383, 'https://ror.org/01x8f1980', 'no_lang_code', 1, 'https://ror.org/01x8f1980 NanoGriptech (United States)'),
(19384, 'https://ror.org/01d12jx16', 'no_lang_code', 1, 'https://ror.org/01d12jx16 Nanohmics (United States)'),
(19385, 'https://ror.org/00s6c1066', 'en', 1, 'https://ror.org/00s6c1066 NanoImaging Services'),
(19386, 'https://ror.org/05sngcy82', 'no_lang_code', 1, 'https://ror.org/05sngcy82 STEAG (Germany) Steinkohlen-ElektrizitƤt'),
(19387, 'https://ror.org/05jf4s961', 'no_lang_code', 1, 'https://ror.org/05jf4s961 NanoIntegris (United States)'),
(19388, 'https://ror.org/04smrv092', 'no_lang_code', 1, 'https://ror.org/04smrv092 KLA (Ireland)'),
(19389, 'https://ror.org/00q2rr681', 'no_lang_code', 1, 'https://ror.org/00q2rr681 Nuvation (Canada)'),
(19390, 'https://ror.org/037y00t77', 'en', 1, 'https://ror.org/037y00t77 Milton Keynes Council'),
(19391, 'https://ror.org/00rskqs20', 'no_lang_code', 1, 'https://ror.org/00rskqs20 Nuvera (Italy)'),
(19392, 'https://ror.org/00cwcb431', 'no_lang_code', 1, 'https://ror.org/00cwcb431 Opticology (United States)'),
(19393, 'https://ror.org/04dwrr446', 'no_lang_code', 1, 'https://ror.org/04dwrr446 Optics Technology (United States)'),
(19394, 'https://ror.org/05htw5381', 'no_lang_code', 1, 'https://ror.org/05htw5381 Organogenesis (United States)'),
(19395, 'https://ror.org/03hbnch67', 'en', 1, 'https://ror.org/03hbnch67 Social Development Commission'),
(19396, 'https://ror.org/03vvfjv50', 'en', 1, 'https://ror.org/03vvfjv50 OpticsValley'),
(19397, 'https://ror.org/00w0dra04', 'no_lang_code', 1, 'https://ror.org/00w0dra04 NanoMEMS Research (United States)'),
(19398, 'https://ror.org/05w5qjg18', 'en', 1, 'https://ror.org/05w5qjg18 Milwaukee Public Schools'),
(19399, 'https://ror.org/00185f784', 'no_lang_code', 1, 'https://ror.org/00185f784 OptiEnz Sensors (United States)'),
(19400, 'https://ror.org/01sv65921', 'no_lang_code', 1, 'https://ror.org/01sv65921 Optima Neuroscience (United States)'),
(19401, 'https://ror.org/02bpb1j41', 'en', 1, 'https://ror.org/02bpb1j41 Nye Communities Coalition'),
(19402, 'https://ror.org/04rnd5t03', 'no_lang_code', 1, 'https://ror.org/04rnd5t03 Nanomotion (Israel)'),
(19403, 'https://ror.org/02d3f2520', 'no_lang_code', 1, 'https://ror.org/02d3f2520 Nanonex (United States)'),
(19404, 'https://ror.org/039he1k03', 'no_lang_code', 1, 'https://ror.org/039he1k03 Nanoparticle BioChem (United States)'),
(19405, 'https://ror.org/01jrywz31', 'no_lang_code', 1, 'https://ror.org/01jrywz31 Optimare (Germany)'),
(19406, 'https://ror.org/05pqt0f15', 'no_lang_code', 1, 'https://ror.org/05pqt0f15 NanoPET Pharma (Germany)'),
(19407, 'https://ror.org/047865819', 'fr', 1, 'https://ror.org/047865819 NanoQuƩbec (Canada)'),
(19408, 'https://ror.org/001pw8x48', 'no_lang_code', 1, 'https://ror.org/001pw8x48 NZI (Spain)'),
(19409, 'https://ror.org/00w8szr09', 'no_lang_code', 1, 'https://ror.org/00w8szr09 NanoTecCenter Weiz Forschungsgesellschaft (Austria)'),
(19410, 'https://ror.org/025ebgz81', 'no_lang_code', 1, 'https://ror.org/025ebgz81 NanoTechLabs (United States)'),
(19411, 'https://ror.org/00rtryt44', 'no_lang_code', 1, 'https://ror.org/00rtryt44 Nzytech (Portugal)'),
(19412, 'https://ror.org/02vbm2f39', 'no_lang_code', 1, 'https://ror.org/02vbm2f39 Nanova Biomaterials (United States)'),
(19413, 'https://ror.org/03gy7zk94', 'no_lang_code', 1, 'https://ror.org/03gy7zk94 O-Ray Pharma (United States)'),
(19414, 'https://ror.org/05mwf7z25', 'no_lang_code', 1, 'https://ror.org/05mwf7z25 Refind (Sweden)'),
(19415, 'https://ror.org/03bq93t15', 'no_lang_code', 1, 'https://ror.org/03bq93t15 NanoVir (United States)'),
(19416, 'https://ror.org/05mjwb095', 'no_lang_code', 1, 'https://ror.org/05mjwb095 NanoWave (United States)'),
(19417, 'https://ror.org/02mfqq252', 'no_lang_code', 1, 'https://ror.org/02mfqq252 Optivision (United States)'),
(19418, 'https://ror.org/01x2g0m45', 'no_lang_code', 1, 'https://ror.org/01x2g0m45 Ocean Atmosphere Systems (Germany)'),
(19419, 'https://ror.org/022fzky59', 'no_lang_code', 1, 'https://ror.org/022fzky59 Optiwave Systems (Canada)'),
(19420, 'https://ror.org/04retwk85', 'no_lang_code', 1, 'https://ror.org/04retwk85 O.D. 260 (United States)'),
(19421, 'https://ror.org/017kqf203', 'no_lang_code', 1, 'https://ror.org/017kqf203 Napper Architects (United Kingdom)'),
(19422, 'https://ror.org/046e9gn41', 'no_lang_code', 1, 'https://ror.org/046e9gn41 Offshore Monitoring (Cyprus)'),
(19423, 'https://ror.org/05jrasj33', 'no_lang_code', 1, 'https://ror.org/05jrasj33 Optocap (United Kingdom)'),
(19424, 'https://ror.org/04p8px794', 'no_lang_code', 1, 'https://ror.org/04p8px794 Optomec (United States)'),
(19425, 'https://ror.org/01c7gck54', 'en', 1, 'https://ror.org/01c7gck54 Natural Procreative Technology'),
(19426, 'https://ror.org/041g8ev90', 'no_lang_code', 1, 'https://ror.org/041g8ev90 Optomesures (France)'),
(19427, 'https://ror.org/02gs9j702', 'no_lang_code', 1, 'https://ror.org/02gs9j702 Narco Freedom (United States)'),
(19428, 'https://ror.org/034mv9n91', 'en', 1, 'https://ror.org/034mv9n91 National Health Information Center NƔrodnƩ Centrum Zdravotnƭckych InformƔciƭ'),
(19429, 'https://ror.org/042ge2m79', 'no_lang_code', 1, 'https://ror.org/042ge2m79 OptoNet (United States)'),
(19430, 'https://ror.org/04pqyhc66', 'no_lang_code', 1, 'https://ror.org/04pqyhc66 OptoSci (United Kingdom)'),
(19431, 'https://ror.org/04k9y3p96', 'no_lang_code', 1, 'https://ror.org/04k9y3p96 Optoscribe (United Kingdom)'),
(19432, 'https://ror.org/018kks649', 'no_lang_code', 1, 'https://ror.org/018kks649 Optotek (Slovenia)'),
(19433, 'https://ror.org/00v9tt762', 'no_lang_code', 1, 'https://ror.org/00v9tt762 Telefónica (United Kingdom)'),
(19434, 'https://ror.org/03zay0n25', 'no_lang_code', 1, 'https://ror.org/03zay0n25 Nasfine Photonics (United States)'),
(19435, 'https://ror.org/00j83d509', 'en', 1, 'https://ror.org/00j83d509 Nashua School District'),
(19436, 'https://ror.org/0094fh067', 'no_lang_code', 1, 'https://ror.org/0094fh067 Manpower Employment Organisation'),
(19437, 'https://ror.org/05k120s23', 'en', 1, 'https://ror.org/05k120s23 Nasson College'),
(19438, 'https://ror.org/02x14ne40', 'no_lang_code', 1, 'https://ror.org/02x14ne40 Optrak (United Kingdom)'),
(19439, 'https://ror.org/01f3f2284', 'en', 1, 'https://ror.org/01f3f2284 National Council for Voluntary Organisations'),
(19440, 'https://ror.org/009n3eh62', 'en', 1, 'https://ror.org/009n3eh62 Oakland Family Services'),
(19441, 'https://ror.org/01vp1fv93', 'no_lang_code', 1, 'https://ror.org/01vp1fv93 OAS (Germany)'),
(19442, 'https://ror.org/00gerpx08', 'no_lang_code', 1, 'https://ror.org/00gerpx08 Obducat (Sweden)'),
(19443, 'https://ror.org/04kwdvd47', 'no_lang_code', 1, 'https://ror.org/04kwdvd47 Optronics Technologies (Greece)'),
(19444, 'https://ror.org/03e4w4b74', 'no_lang_code', 1, 'https://ror.org/03e4w4b74 OptTek Systems (United States)'),
(19445, 'https://ror.org/01hwhvh84', 'no_lang_code', 1, 'https://ror.org/01hwhvh84 ObjectSecurity (United Kingdom)'),
(19446, 'https://ror.org/040ycw505', 'no_lang_code', 1, 'https://ror.org/040ycw505 Oracle (Belgium)'),
(19447, 'https://ror.org/04sc7sk27', 'en', 1, 'https://ror.org/04sc7sk27 European Social Observatory'),
(19448, 'https://ror.org/01rqzkn19', 'no_lang_code', 1, 'https://ror.org/01rqzkn19 Oerlikon (Liechtenstein)'),
(19449, 'https://ror.org/03k42h168', 'en', 1, 'https://ror.org/03k42h168 Indspire'),
(19450, 'https://ror.org/04qxyd889', 'en', 1, 'https://ror.org/04qxyd889 Ocean County College'),
(19451, 'https://ror.org/021rhh009', 'no_lang_code', 1, 'https://ror.org/021rhh009 Oracle (Germany)'),
(19452, 'https://ror.org/034dk5y08', 'en', 1, 'https://ror.org/034dk5y08 Ocean Discovery Institute'),
(19453, 'https://ror.org/00vr8yd88', 'no_lang_code', 1, 'https://ror.org/00vr8yd88 Oragenics (United States)'),
(19454, 'https://ror.org/02htmyh81', 'en', 1, 'https://ror.org/02htmyh81 Slovak Business Agency'),
(19455, 'https://ror.org/00pz2dk38', 'en', 1, 'https://ror.org/00pz2dk38 Orange Coast College'),
(19456, 'https://ror.org/05htddj49', 'en', 1, 'https://ror.org/05htddj49 Orange County Board of Commissioners'),
(19457, 'https://ror.org/01bcan022', 'en', 1, 'https://ror.org/01bcan022 National Aids Education and Services for Minorities'),
(19458, 'https://ror.org/04wpttf67', 'no_lang_code', 1, 'https://ror.org/04wpttf67 Orbital Biosciences (United States)'),
(19459, 'https://ror.org/054ja5q23', 'en', 1, 'https://ror.org/054ja5q23 National Alliance for Partnerships in Equity'),
(19460, 'https://ror.org/01znas443', 'en', 1, 'https://ror.org/01znas443 Ministry of Education, Science and Technological Development'),
(19461, 'https://ror.org/02cz4sf27', 'en', 1, 'https://ror.org/02cz4sf27 National Alliance for Medication Assisted Recovery'),
(19462, 'https://ror.org/000s9mk50', 'no_lang_code', 1, 'https://ror.org/000s9mk50 Ordecsys (Switzerland)'),
(19463, 'https://ror.org/01xexqx38', 'en', 1, 'https://ror.org/01xexqx38 Ministarstvo Prosvjete Ministry of Education'),
(19464, 'https://ror.org/04vck0k59', 'en', 1, 'https://ror.org/04vck0k59 Ministry of Agriculture وزارة الفلاحة'),
(19465, 'https://ror.org/01egjwb26', 'fr', 1, 'https://ror.org/01egjwb26 MinistĆØre de l’Éducation nationale, de l’Enfance et de la Jeunesse'),
(19466, 'https://ror.org/00tcvgn28', 'en', 1, 'https://ror.org/00tcvgn28 Oregon Coast Community College'),
(19467, 'https://ror.org/001gc6461', 'en', 1, 'https://ror.org/001gc6461 Oregon Public Broadcasting'),
(19468, 'https://ror.org/05atnc387', 'no_lang_code', 1, 'https://ror.org/05atnc387 O.N. Diagnostics (United States)'),
(19469, 'https://ror.org/02qpg3d02', 'no_lang_code', 1, 'https://ror.org/02qpg3d02 Safran (Germany)'),
(19470, 'https://ror.org/00ypv0m95', 'en', 1, 'https://ror.org/00ypv0m95 Ministry of Culture MinistĆØre de la Culture'),
(19471, 'https://ror.org/02j3yv935', 'en', 1, 'https://ror.org/02j3yv935 Oceanites'),
(19472, 'https://ror.org/02qqh1v44', 'no_lang_code', 1, 'https://ror.org/02qqh1v44 OceanWaveS (Germany)'),
(19473, 'https://ror.org/03vcjwt28', 'en', 1, 'https://ror.org/03vcjwt28 Organisation for International Dialogue and Conflict Management'),
(19474, 'https://ror.org/03z157k13', 'no_lang_code', 1, 'https://ror.org/03z157k13 OceanWorks International (Canada)'),
(19475, 'https://ror.org/04ks7cj51', 'no_lang_code', 1, 'https://ror.org/04ks7cj51 Petroleum of Venezuela (Venezuela) Petróleos de Venezuela'),
(19476, 'https://ror.org/04zj5v917', 'en', 1, 'https://ror.org/04zj5v917 Peabody'),
(19477, 'https://ror.org/020e47v47', 'no_lang_code', 1, 'https://ror.org/020e47v47 Organovo (United States)'),
(19478, 'https://ror.org/0201by934', 'en', 1, 'https://ror.org/0201by934 Octavia Housing'),
(19479, 'https://ror.org/0465dww62', 'no_lang_code', 1, 'https://ror.org/0465dww62 Acentia (United States)'),
(19480, 'https://ror.org/05bep5d95', 'no_lang_code', 1, 'https://ror.org/05bep5d95 Schumacher Orgelbau (Belgium)'),
(19481, 'https://ror.org/02hg69287', 'no_lang_code', 1, 'https://ror.org/02hg69287 Peacocks Medical Group (United Kingdom)'),
(19482, 'https://ror.org/00f149504', 'no_lang_code', 1, 'https://ror.org/00f149504 Pearlhill Technologies (United States)'),
(19483, 'https://ror.org/046gbzb64', 'no_lang_code', 1, 'https://ror.org/046gbzb64 A.P. MĆøller–MƦrsk A/S Maersk (Denmark)'),
(19484, 'https://ror.org/048kzgs94', 'no_lang_code', 1, 'https://ror.org/048kzgs94 Orla Protein Technologies (United Kingdom)'),
(19485, 'https://ror.org/024xe4a86', 'no_lang_code', 1, 'https://ror.org/024xe4a86 Oros (France)'),
(19486, 'https://ror.org/03twmm656', 'da', 1, 'https://ror.org/03twmm656 Syddansk Erhvervsskole'),
(19487, 'https://ror.org/010dms986', 'no_lang_code', 1, 'https://ror.org/010dms986 ORT Israel'),
(19488, 'https://ror.org/051ny1b38', 'no_lang_code', 1, 'https://ror.org/051ny1b38 Orthogonal (United States)'),
(19489, 'https://ror.org/00zgqfa58', 'en', 1, 'https://ror.org/00zgqfa58 Odyssey House Louisiana'),
(19490, 'https://ror.org/032h5dn41', 'no_lang_code', 1, 'https://ror.org/032h5dn41 Orthox (United Kingdom)'),
(19491, 'https://ror.org/02t8gc695', 'en', 1, 'https://ror.org/02t8gc695 Odyssey House'),
(19492, 'https://ror.org/03n5zh241', 'no_lang_code', 1, 'https://ror.org/03n5zh241 Oryzon Genomics (Spain)'),
(19493, 'https://ror.org/00wkvq828', 'en', 1, 'https://ror.org/00wkvq828 Osborne Association'),
(19494, 'https://ror.org/04jjy0g33', 'pt', 1, 'https://ror.org/04jjy0g33 Hospital Braga Hospital de Braga'),
(19495, 'https://ror.org/05nkfrm56', 'fr', 1, 'https://ror.org/05nkfrm56 MinistĆØre de l''Enseignement Superieur et de la Recherche'),
(19496, 'https://ror.org/04xb8zj39', 'no_lang_code', 1, 'https://ror.org/04xb8zj39 Mincon (Ireland)'),
(19497, 'https://ror.org/007e25j64', 'no_lang_code', 1, 'https://ror.org/007e25j64 NanoPhos (Greece)'),
(19498, 'https://ror.org/0314vzp76', 'en', 1, 'https://ror.org/0314vzp76 Orkney Fisheries Association'),
(19499, 'https://ror.org/00spvm362', 'no_lang_code', 1, 'https://ror.org/00spvm362 ORME (France)'),
(19500, 'https://ror.org/03r8s5x58', 'no_lang_code', 1, 'https://ror.org/03r8s5x58 Osiris Therapeutics (United States)'),
(19501, 'https://ror.org/04f77nk30', 'en', 1, 'https://ror.org/04f77nk30 National Asian Pacific American Families Against Substance Abuse'),
(19502, 'https://ror.org/05w9cds44', 'no_lang_code', 1, 'https://ror.org/05w9cds44 Oelheld (Germany)'),
(19503, 'https://ror.org/00ygc7g86', 'en', 1, 'https://ror.org/00ygc7g86 National Association of Local Boards of Health'),
(19504, 'https://ror.org/001zajz59', 'no_lang_code', 1, 'https://ror.org/001zajz59 Canadian Malartic (Canada)'),
(19505, 'https://ror.org/02arcr276', 'en', 1, 'https://ror.org/02arcr276 National Association of State Departments of Agriculture'),
(19506, 'https://ror.org/04qt1cz93', 'en', 1, 'https://ror.org/04qt1cz93 National Association of EMS Physicians'),
(19507, 'https://ror.org/022vfdk28', 'no_lang_code', 1, 'https://ror.org/022vfdk28 OSM DAN (Israel) או.אה.אמ. - דן בע"מ'),
(19508, 'https://ror.org/03r0ajw35', 'en', 1, 'https://ror.org/03r0ajw35 National Association of Research and Educational e-Infrastructures'),
(19509, 'https://ror.org/008wxtx05', 'no_lang_code', 1, 'https://ror.org/008wxtx05 Ossidian Technologies (Ireland)'),
(19510, 'https://ror.org/01awap711', 'en', 1, 'https://ror.org/01awap711 Office of Naval Research'),
(19511, 'https://ror.org/05jk5p721', 'no_lang_code', 1, 'https://ror.org/05jk5p721 Pedro Roquet (Spain)'),
(19512, 'https://ror.org/01r01qv34', 'no_lang_code', 1, 'https://ror.org/01r01qv34 OsteoGeneX (United States)'),
(19513, 'https://ror.org/03qv51n94', 'en', 1, 'https://ror.org/03qv51n94 National Authority for Remote Sensing and Space Sciences'),
(19514, 'https://ror.org/04wmg9c19', 'en', 1, 'https://ror.org/04wmg9c19 Office of Rail Regulation'),
(19515, 'https://ror.org/00yf1b023', 'no_lang_code', 1, 'https://ror.org/00yf1b023 Verbund (Austria)'),
(19516, 'https://ror.org/001ym8t39', 'en', 1, 'https://ror.org/001ym8t39 Peer Services'),
(19517, 'https://ror.org/037ampg77', 'en', 1, 'https://ror.org/037ampg77 Office of Science & Technology Austria'),
(19518, 'https://ror.org/057j7ch92', 'no_lang_code', 1, 'https://ror.org/057j7ch92 National Bank of Greece (Greece) Εθνική Τράπεζα της ΕλλάΓος'),
(19519, '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)'),
(19520, 'https://ror.org/014nw6h77', 'en', 1, 'https://ror.org/014nw6h77 Regional Energy Agency of Crete'),
(19521, 'https://ror.org/03b243z64', 'no_lang_code', 1, 'https://ror.org/03b243z64 Pellet Productions (United States)'),
(19522, 'https://ror.org/01pmnjq51', 'no_lang_code', 1, 'https://ror.org/01pmnjq51 Otoconsult (Belgium)'),
(19523, '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'),
(19524, 'https://ror.org/0424nxb97', 'en', 1, 'https://ror.org/0424nxb97 National Alliance of Healthcare Purchaser Coalitions'),
(19525, 'https://ror.org/048tcp333', 'no_lang_code', 1, 'https://ror.org/048tcp333 Polysolar (United Kingdom)'),
(19526, 'https://ror.org/033z3xa85', 'en', 1, 'https://ror.org/033z3xa85 Invest Canada'),
(19527, 'https://ror.org/04pyty074', 'en', 1, 'https://ror.org/04pyty074 Pennsylvania Coalition Against Rape'),
(19528, 'https://ror.org/02zmzxn38', 'en', 1, 'https://ror.org/02zmzxn38 Pennsylvania Institute of Technology'),
(19529, 'https://ror.org/01b3ar606', 'no_lang_code', 1, 'https://ror.org/01b3ar606 Eliko Tehnoloogia Arenduskeskus'),
(19530, 'https://ror.org/01k1qm960', 'no_lang_code', 1, 'https://ror.org/01k1qm960 Polytronix (United States)'),
(19531, 'https://ror.org/01znaqx63', 'no_lang_code', 1, 'https://ror.org/01znaqx63 Pensoft Publishers (Bulgaria)'),
(19532, 'https://ror.org/022wsx863', 'et', 1, 'https://ror.org/022wsx863 Miksike'),
(19533, 'https://ror.org/056z4ss26', 'no_lang_code', 1, 'https://ror.org/056z4ss26 People Designs (United States)'),
(19534, 'https://ror.org/05ye5k232', 'no_lang_code', 1, 'https://ror.org/05ye5k232 Pontydysgu'),
(19535, 'https://ror.org/02z1yy887', 'no_lang_code', 1, 'https://ror.org/02z1yy887 Population and Social Policy Consultants'),
(19536, 'https://ror.org/02ca38p84', 'no_lang_code', 1, 'https://ror.org/02ca38p84 Quretec (Estonia)'),
(19537, 'https://ror.org/03098ta78', 'no_lang_code', 1, 'https://ror.org/03098ta78 Optical Fiber Solutions (Denmark)'),
(19538, 'https://ror.org/05qgtj846', 'no_lang_code', 1, 'https://ror.org/05qgtj846 Ogenx Therapeutics (United States)'),
(19539, 'https://ror.org/00gc3zx13', 'en', 1, 'https://ror.org/00gc3zx13 Ounce of Prevention Fund'),
(19540, 'https://ror.org/004zfsx81', 'no_lang_code', 1, 'https://ror.org/004zfsx81 Embraer (Portugal)'),
(19541, 'https://ror.org/006bj3v15', 'no_lang_code', 1, 'https://ror.org/006bj3v15 Peppermint (Germany)'),
(19542, 'https://ror.org/0586wsk08', 'no_lang_code', 1, 'https://ror.org/0586wsk08 OHB (Germany)'),
(19543, 'https://ror.org/03ddtra52', 'en', 1, 'https://ror.org/03ddtra52 Mikocheni Agricultural Research Institute'),
(19544, 'https://ror.org/05qd85289', 'no_lang_code', 1, 'https://ror.org/05qd85289 Outotec (Finland)'),
(19545, 'https://ror.org/04avzvx04', 'en', 1, 'https://ror.org/04avzvx04 National Community Health Partners'),
(19546, 'https://ror.org/013etyn53', 'en', 1, 'https://ror.org/013etyn53 National Communication Association'),
(19547, 'https://ror.org/02ekfze92', 'en', 1, 'https://ror.org/02ekfze92 Ohio County Together We Care Coalition'),
(19548, 'https://ror.org/00bpwbx65', 'en', 1, 'https://ror.org/00bpwbx65 National Composites Centre'),
(19549, 'https://ror.org/00grwm276', 'no_lang_code', 1, 'https://ror.org/00grwm276 Peptides International (United States)'),
(19550, 'https://ror.org/05gptew44', 'no_lang_code', 1, 'https://ror.org/05gptew44 National Computing Centre (United Kingdom)'),
(19551, 'https://ror.org/03cyvf362', 'no_lang_code', 1, 'https://ror.org/03cyvf362 Immune Regulation (United Kingdom)'),
(19552, 'https://ror.org/045bf1m77', 'no_lang_code', 1, 'https://ror.org/045bf1m77 CJR Propulsion (United Kingdom)'),
(19553, 'https://ror.org/024xrts92', 'en', 1, 'https://ror.org/024xrts92 Port Gamble S''Klallam Tribal Council'),
(19554, 'https://ror.org/005a4vt43', 'en', 1, 'https://ror.org/005a4vt43 Ohio Domestic Violence Network'),
(19555, 'https://ror.org/04zcv8n51', 'no_lang_code', 1, 'https://ror.org/04zcv8n51 Ohmatex (Denmark)'),
(19556, 'https://ror.org/0486mwv16', 'en', 1, 'https://ror.org/0486mwv16 Portbase'),
(19557, 'https://ror.org/01388jj23', 'en', 1, 'https://ror.org/01388jj23 National Consumers League'),
(19558, 'https://ror.org/00awfcg31', 'no_lang_code', 1, 'https://ror.org/00awfcg31 Oval Window Audio (United States)'),
(19559, 'https://ror.org/01kb1df65', 'en', 1, 'https://ror.org/01kb1df65 National Council for Geographic Education'),
(19560, 'https://ror.org/03gfza185', 'no_lang_code', 1, 'https://ror.org/03gfza185 EduHintOVD (Netherlands)'),
(19561, 'https://ror.org/02et1jt70', 'no_lang_code', 1, 'https://ror.org/02et1jt70 Peraso Technologies (Canada)'),
(19562, 'https://ror.org/05r7p7m46', 'no_lang_code', 1, 'https://ror.org/05r7p7m46 Offshore Installation Services (United Kingdom)'),
(19563, 'https://ror.org/039deg344', 'no_lang_code', 1, 'https://ror.org/039deg344 OJ-Bio (United Kingdom)'),
(19564, 'https://ror.org/044dman78', 'en', 1, 'https://ror.org/044dman78 National Counter Terrorism Security Office'),
(19565, 'https://ror.org/00p15zq72', 'en', 1, 'https://ror.org/00p15zq72 Okanagan Science Centre'),
(19566, 'https://ror.org/04hcrmf43', 'en', 1, 'https://ror.org/04hcrmf43 National Down Syndrome Society'),
(19567, 'https://ror.org/05y3ab566', 'en', 1, 'https://ror.org/05y3ab566 Okayama Ceramics Research Foundation å²”å±±ć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(19568, 'https://ror.org/01n22w217', 'en', 1, 'https://ror.org/01n22w217 Oklahoma City Community College'),
(19569, 'https://ror.org/00kdx6519', 'no_lang_code', 1, 'https://ror.org/00kdx6519 Applied Science Laboratories (United States)'),
(19570, 'https://ror.org/05qep9y26', 'no_lang_code', 1, 'https://ror.org/05qep9y26 Perceptive Engineering (United Kingdom)'),
(19571, 'https://ror.org/03s9etx54', 'en', 1, 'https://ror.org/03s9etx54 National Economists Club'),
(19572, 'https://ror.org/03r16h820', 'en', 1, 'https://ror.org/03r16h820 Oklahoma Department of Agriculture Food and Forestry'),
(19573, 'https://ror.org/015byt818', 'en', 1, 'https://ror.org/015byt818 National Energy Research Center'),
(19574, 'https://ror.org/0147bee55', 'no_lang_code', 1, 'https://ror.org/0147bee55 Mondragon Corporation (Germany)'),
(19575, 'https://ror.org/007bkwj81', 'no_lang_code', 1, 'https://ror.org/007bkwj81 Oktal (France)'),
(19576, 'https://ror.org/04s1c7214', 'no_lang_code', 1, 'https://ror.org/04s1c7214 Pretexo (France)'),
(19577, 'https://ror.org/02xq7yj60', 'no_lang_code', 1, 'https://ror.org/02xq7yj60 Overspeed (Germany)'),
(19578, 'https://ror.org/0457w0821', 'en', 1, 'https://ror.org/0457w0821 OW2 Consortium'),
(19579, 'https://ror.org/02nysre97', 'en', 1, 'https://ror.org/02nysre97 Olathe Public Schools'),
(19580, 'https://ror.org/019h09n30', 'no_lang_code', 1, 'https://ror.org/019h09n30 Positron Systems (United States)'),
(19581, 'https://ror.org/001d74r65', 'en', 1, 'https://ror.org/001d74r65 Post and Telecom Administration Póst og Fjarskiptastofnun'),
(19582, 'https://ror.org/05qtb1210', 'no_lang_code', 1, 'https://ror.org/05qtb1210 Poste Italiane (Italy)'),
(19583, 'https://ror.org/00ehhcx69', 'no_lang_code', 1, 'https://ror.org/00ehhcx69 Performance Communications'),
(19584, 'https://ror.org/02h1gvb73', 'no_lang_code', 1, 'https://ror.org/02h1gvb73 Oliver Crispin Robotics (United Kingdom)'),
(19585, 'https://ror.org/022283x63', 'no_lang_code', 1, 'https://ror.org/022283x63 Oxfam'),
(19586, 'https://ror.org/01ybgev21', 'no_lang_code', 1, 'https://ror.org/01ybgev21 Prevas (Norway)'),
(19587, 'https://ror.org/03dp0vf82', 'no_lang_code', 1, 'https://ror.org/03dp0vf82 Oxford BioMedica (United Kingdom)'),
(19588, 'https://ror.org/0305q4m96', 'no_lang_code', 1, 'https://ror.org/0305q4m96 PostScriptum (Greece)'),
(19589, 'https://ror.org/052b1ym09', 'en', 1, 'https://ror.org/052b1ym09 Oxford City Council'),
(19590, 'https://ror.org/01rh2am22', 'no_lang_code', 1, 'https://ror.org/01rh2am22 Pericle Communications (United States)'),
(19591, 'https://ror.org/01e3wqt79', 'en', 1, 'https://ror.org/01e3wqt79 Prevent of Brevard'),
(19592, 'https://ror.org/00q7btw65', 'en', 1, 'https://ror.org/00q7btw65 Prevention Connections'),
(19593, 'https://ror.org/0370r0855', 'en', 1, 'https://ror.org/0370r0855 Prevention Links'),
(19594, 'https://ror.org/01rhgps79', 'no_lang_code', 1, 'https://ror.org/01rhgps79 Oltis Group (Czechia)'),
(19595, 'https://ror.org/05152r856', 'no_lang_code', 1, 'https://ror.org/05152r856 Socotec (France)'),
(19596, 'https://ror.org/031601h81', 'no_lang_code', 1, 'https://ror.org/031601h81 PricewaterhouseCoopers (Netherlands)'),
(19597, 'https://ror.org/02ds0wa60', 'en', 1, 'https://ror.org/02ds0wa60 Olympic Athletic Center of Athens "Spiros Louis"'),
(19598, 'https://ror.org/04scjv535', 'no_lang_code', 1, 'https://ror.org/04scjv535 Hedgeye (United States)'),
(19599, 'https://ror.org/048q8cd91', 'en', 1, 'https://ror.org/048q8cd91 Omaha Nation Community Response Team'),
(19600, 'https://ror.org/00bn8y738', 'en', 1, 'https://ror.org/00bn8y738 Primary Care Development Corporation'),
(19601, 'https://ror.org/00njayd33', 'no_lang_code', 1, 'https://ror.org/00njayd33 Omax (United States)'),
(19602, 'https://ror.org/02n84y322', 'no_lang_code', 1, 'https://ror.org/02n84y322 OXGENE (United Kingdom)'),
(19603, 'https://ror.org/01s9fwc30', 'no_lang_code', 1, 'https://ror.org/01s9fwc30 Permanova Lasersystem (Sweden)'),
(19604, 'https://ror.org/02wxh6849', 'no_lang_code', 1, 'https://ror.org/02wxh6849 SQW Group (United Kingdom)'),
(19605, 'https://ror.org/057ewam52', 'no_lang_code', 1, 'https://ror.org/057ewam52 Oxford Intelligent Machines (United Kingdom)'),
(19606, 'https://ror.org/02y8qpa51', 'no_lang_code', 1, 'https://ror.org/02y8qpa51 JDA Software (Canada)'),
(19607, 'https://ror.org/03kvy9649', 'fr', 1, 'https://ror.org/03kvy9649 Pour la SolidaritƩ'),
(19608, 'https://ror.org/034zz5290', 'no_lang_code', 1, 'https://ror.org/034zz5290 Perseus (Belgium)'),
(19609, 'https://ror.org/03mmsj102', 'no_lang_code', 1, 'https://ror.org/03mmsj102 Personal Space Technologies (Netherlands)'),
(19610, 'https://ror.org/044zqfh96', 'no_lang_code', 1, 'https://ror.org/044zqfh96 Oxford Metrics (United Kingdom)'),
(19611, 'https://ror.org/04hyfx005', 'no_lang_code', 1, 'https://ror.org/04hyfx005 Oxford Nanopore Technologies (United Kingdom)'),
(19612, 'https://ror.org/04f3y7g60', 'no_lang_code', 1, 'https://ror.org/04f3y7g60 Omgatech (Italy)'),
(19613, 'https://ror.org/02ch8xp61', 'no_lang_code', 1, 'https://ror.org/02ch8xp61 Oxford NanoSystems (United Kingdom)'),
(19614, 'https://ror.org/01fmzkf37', 'no_lang_code', 1, 'https://ror.org/01fmzkf37 Pervatech (Netherlands)'),
(19615, 'https://ror.org/047m46r71', 'no_lang_code', 1, 'https://ror.org/047m46r71 Oxford Technologies (United Kingdom)'),
(19616, 'https://ror.org/01qjpbj62', 'no_lang_code', 1, 'https://ror.org/01qjpbj62 Omm Scientific (United States)'),
(19617, 'https://ror.org/042vkw919', 'no_lang_code', 1, 'https://ror.org/042vkw919 Oxis Energy (United Kingdom)'),
(19618, 'https://ror.org/054w60c75', 'no_lang_code', 1, 'https://ror.org/054w60c75 Touchstone Exploration (Canada)'),
(19619, 'https://ror.org/04020mn90', 'no_lang_code', 1, 'https://ror.org/04020mn90 Oxitec (United Kingdom)'),
(19620, 'https://ror.org/05x9bmy83', 'no_lang_code', 1, 'https://ror.org/05x9bmy83 Ommic (France)'),
(19621, 'https://ror.org/04da2f798', 'no_lang_code', 1, 'https://ror.org/04da2f798 Prime Photonics (United States)'),
(19622, 'https://ror.org/01z55tz06', 'no_lang_code', 1, 'https://ror.org/01z55tz06 Oxsensis (United Kingdom)'),
(19623, 'https://ror.org/01z02vf77', 'no_lang_code', 1, 'https://ror.org/01z02vf77 Oxyrase (United States)'),
(19624, 'https://ror.org/01nzeya05', 'no_lang_code', 1, 'https://ror.org/01nzeya05 Polska Grupa Energetyczna (Poland)'),
(19625, 'https://ror.org/01yb9sv02', 'no_lang_code', 1, 'https://ror.org/01yb9sv02 Petroleum Helicopters International (United States)'),
(19626, 'https://ror.org/05rga6m50', 'no_lang_code', 1, 'https://ror.org/05rga6m50 OmniActive Health Technologies (Canada)'),
(19627, 'https://ror.org/04nhyde41', 'no_lang_code', 1, 'https://ror.org/04nhyde41 Premix (Finland)'),
(19628, 'https://ror.org/02pzx2c51', 'no_lang_code', 1, 'https://ror.org/02pzx2c51 OyaGen (United States)'),
(19629, 'https://ror.org/04pp32a12', 'no_lang_code', 1, 'https://ror.org/04pp32a12 Pfaff Industriemaschinen (Germany)'),
(19630, 'https://ror.org/03cx5n871', 'no_lang_code', 1, 'https://ror.org/03cx5n871 OZ Biosciences (France)'),
(19631, 'https://ror.org/01nscpg76', 'no_lang_code', 1, 'https://ror.org/01nscpg76 OZ Optics (Canada)'),
(19632, 'https://ror.org/00e4rzw98', 'no_lang_code', 1, 'https://ror.org/00e4rzw98 OmniGuide (United States)'),
(19633, 'https://ror.org/051gp5616', 'no_lang_code', 1, 'https://ror.org/051gp5616 Teledyne Princeton Instruments (United States)'),
(19634, 'https://ror.org/00t6yq161', 'no_lang_code', 1, 'https://ror.org/00t6yq161 Powerline Technologies (United Kingdom)'),
(19635, 'https://ror.org/05jtjvf20', 'no_lang_code', 1, 'https://ror.org/05jtjvf20 Omnisense (United Kingdom)'),
(19636, 'https://ror.org/006ghrq92', 'no_lang_code', 1, 'https://ror.org/006ghrq92 Principia Ingenieros Consultores'),
(19637, 'https://ror.org/05072ws38', 'no_lang_code', 1, 'https://ror.org/05072ws38 Omtaş (Turkey)'),
(19638, 'https://ror.org/03vd9ca20', 'no_lang_code', 1, 'https://ror.org/03vd9ca20 Pflegewerk (Germany)'),
(19639, 'https://ror.org/03jh7vc52', 'no_lang_code', 1, 'https://ror.org/03jh7vc52 PA Consulting Group'),
(19640, 'https://ror.org/04h484195', 'no_lang_code', 1, 'https://ror.org/04h484195 Printed Electronics (United Kingdom)'),
(19641, 'https://ror.org/052j5y866', 'no_lang_code', 1, 'https://ror.org/052j5y866 On Our Own of Maryland (United States)'),
(19642, 'https://ror.org/00gpdh364', 'no_lang_code', 1, 'https://ror.org/00gpdh364 OncoMark (Ireland)'),
(19643, 'https://ror.org/02zy1d441', 'no_lang_code', 1, 'https://ror.org/02zy1d441 Sensap (Greece)'),
(19644, 'https://ror.org/02h0hx086', 'no_lang_code', 1, 'https://ror.org/02h0hx086 Predict (France)'),
(19645, 'https://ror.org/00qfm6q04', 'en', 1, 'https://ror.org/00qfm6q04 Pennsylvania Department of Drug and Alcohol Programs'),
(19646, 'https://ror.org/00smnxt90', 'no_lang_code', 1, 'https://ror.org/00smnxt90 pH Matter (United States)'),
(19647, 'https://ror.org/039neah40', 'en', 1, 'https://ror.org/039neah40 Practical Action'),
(19648, 'https://ror.org/051544512', 'no_lang_code', 1, 'https://ror.org/051544512 Oncovir (United States)'),
(19649, 'https://ror.org/01b755e19', 'no_lang_code', 1, 'https://ror.org/01b755e19 Pacbrake (Canada)'),
(19650, 'https://ror.org/04t5n6k60', 'no_lang_code', 1, 'https://ror.org/04t5n6k60 Praevium Research (United States)'),
(19651, 'https://ror.org/04fxhkj84', 'no_lang_code', 1, 'https://ror.org/04fxhkj84 Adlink (United Kingdom)'),
(19652, 'https://ror.org/00ykc7z09', 'no_lang_code', 1, 'https://ror.org/00ykc7z09 PragmatIC (United Kingdom)'),
(19653, 'https://ror.org/02zy3sy39', 'no_lang_code', 1, 'https://ror.org/02zy3sy39 Pacific Biomarkers (United States)'),
(19654, 'https://ror.org/00qs3ke40', 'no_lang_code', 1, 'https://ror.org/00qs3ke40 Ecolyse (United States)'),
(19655, 'https://ror.org/04x85at27', 'en', 1, 'https://ror.org/04x85at27 Pacific Environment'),
(19656, 'https://ror.org/01g9vka88', 'en', 1, 'https://ror.org/01g9vka88 College Medical Center'),
(19657, 'https://ror.org/05pbbmz23', 'en', 1, 'https://ror.org/05pbbmz23 Bureau du Conseil privƩ Privy Council Office'),
(19658, 'https://ror.org/02ktv4k43', 'no_lang_code', 1, 'https://ror.org/02ktv4k43 Pacific Insight Electronics (Canada)'),
(19659, 'https://ror.org/03kytw120', 'no_lang_code', 1, 'https://ror.org/03kytw120 Pro Optica (Romania)'),
(19660, 'https://ror.org/0576nnr74', 'en', 1, 'https://ror.org/0576nnr74 Pacific Union College'),
(19661, 'https://ror.org/044wgre19', 'no_lang_code', 1, 'https://ror.org/044wgre19 Octane Wireless (United States)'),
(19662, 'https://ror.org/05ehb7y93', 'no_lang_code', 1, 'https://ror.org/05ehb7y93 PageFlip (United States)'),
(19663, 'https://ror.org/0063qh129', 'no_lang_code', 1, 'https://ror.org/0063qh129 Hungarian Electricity Private (Hungary)'),
(19664, 'https://ror.org/00wtp2z59', 'en', 1, 'https://ror.org/00wtp2z59 Palestinian Energy and Environment Research Center'),
(19665, 'https://ror.org/03txgdk33', 'no_lang_code', 1, 'https://ror.org/03txgdk33 Probetex (United States)'),
(19666, 'https://ror.org/00ekyfe59', 'en', 1, 'https://ror.org/00ekyfe59 Palestinian Hydrology Group Ł…Ų¬Ł…ŁˆŲ¹Ų© Ų§Ł„Ł‡ŁŠŲÆŲ±ŁˆŁ„ŁˆŲ¬ŁŠŁŠŁ† Ų§Ł„ŁŁ„Ų³Ų·ŁŠŁ†ŁŠŁŠŁ†'),
(19667, 'https://ror.org/01mw43m66', 'no_lang_code', 1, 'https://ror.org/01mw43m66 Pallas (Germany)'),
(19668, 'https://ror.org/010m84w02', 'no_lang_code', 1, 'https://ror.org/010m84w02 Helix Biopharma (Canada)'),
(19669, 'https://ror.org/01qd74814', 'no_lang_code', 1, 'https://ror.org/01qd74814 Porifera (United States)'),
(19670, 'https://ror.org/04hmkr267', 'no_lang_code', 1, 'https://ror.org/04hmkr267 Onefive (Switzerland)'),
(19671, 'https://ror.org/01c1hh988', 'no_lang_code', 1, 'https://ror.org/01c1hh988 PalmSens (Netherlands)'),
(19672, 'https://ror.org/05fhkjk84', 'no_lang_code', 1, 'https://ror.org/05fhkjk84 Onteca (United Kingdom)'),
(19673, 'https://ror.org/00n2m9w05', 'no_lang_code', 1, 'https://ror.org/00n2m9w05 ProBiotix (United States)'),
(19674, 'https://ror.org/02sj6gg16', 'no_lang_code', 1, 'https://ror.org/02sj6gg16 Pharmaplant (Germany)'),
(19675, 'https://ror.org/02t1zaz23', 'no_lang_code', 1, 'https://ror.org/02t1zaz23 Procarta Biosystems (United Kingdom)'),
(19676, 'https://ror.org/043f17j87', 'no_lang_code', 1, 'https://ror.org/043f17j87 Pre Chasm Research Limited (United Kingdom)'),
(19677, 'https://ror.org/0232v5h12', 'no_lang_code', 1, 'https://ror.org/0232v5h12 PharmaReview Corporation'),
(19678, 'https://ror.org/05552se64', 'no_lang_code', 1, 'https://ror.org/05552se64 Proceed (United States)'),
(19679, 'https://ror.org/02xf01n45', 'en', 1, 'https://ror.org/02xf01n45 Palo Alto Institute'),
(19680, 'https://ror.org/03me22p27', 'no_lang_code', 1, 'https://ror.org/03me22p27 ProCertus BioPharm (United States)'),
(19681, 'https://ror.org/04c2yfj62', 'no_lang_code', 1, 'https://ror.org/04c2yfj62 Precision BioLogic (Canada)'),
(19682, 'https://ror.org/00crwr158', 'en', 1, 'https://ror.org/00crwr158 Palomar College'),
(19683, 'https://ror.org/001qp3c53', 'no_lang_code', 1, 'https://ror.org/001qp3c53 Procoat Tecnologias (Spain)'),
(19684, 'https://ror.org/034frgp20', 'no_lang_code', 1, 'https://ror.org/034frgp20 TE Connectivity (United States)'),
(19685, 'https://ror.org/01yj2ng88', 'no_lang_code', 1, 'https://ror.org/01yj2ng88 ProControl (Italy)');
INSERT INTO `rors` VALUES
(19686, 'https://ror.org/00t0n4y22', 'no_lang_code', 1, 'https://ror.org/00t0n4y22 PaneraTech (United States)'),
(19687, 'https://ror.org/04djzg510', 'no_lang_code', 1, 'https://ror.org/04djzg510 Procter & Gamble (Switzerland)'),
(19688, 'https://ror.org/01tdcdz60', 'no_lang_code', 1, 'https://ror.org/01tdcdz60 Procter & Gamble (Italy)'),
(19689, 'https://ror.org/05k1xfg56', 'no_lang_code', 1, 'https://ror.org/05k1xfg56 Pharos International (Belgium)'),
(19690, 'https://ror.org/00xpsm226', 'no_lang_code', 1, 'https://ror.org/00xpsm226 Grupo Panorama (Spain)'),
(19691, 'https://ror.org/0197se455', 'no_lang_code', 1, 'https://ror.org/0197se455 Product Innovation and Engineering (United States)'),
(19692, 'https://ror.org/04yytzs50', 'no_lang_code', 1, 'https://ror.org/04yytzs50 Avaya (Israel)'),
(19693, 'https://ror.org/04y784b90', 'no_lang_code', 1, 'https://ror.org/04y784b90 Precision Research (United States)'),
(19694, 'https://ror.org/018a3we97', 'no_lang_code', 1, 'https://ror.org/018a3we97 RAFT Solutions (United Kingdom)'),
(19695, 'https://ror.org/02g6vys92', 'no_lang_code', 1, 'https://ror.org/02g6vys92 PFP Cybersecurity (United States)'),
(19696, 'https://ror.org/01f51hc20', 'en', 1, 'https://ror.org/01f51hc20 State Agency for the Prevention of Alcohol Related Problems'),
(19697, 'https://ror.org/0593ysv62', 'no_lang_code', 1, 'https://ror.org/0593ysv62 Rainbow Photonics (Switzerland)'),
(19698, 'https://ror.org/02wnmt242', 'no_lang_code', 1, 'https://ror.org/02wnmt242 PhaseBio Pharmaceuticals (United States)'),
(19699, 'https://ror.org/00n4nbk77', 'en', 1, 'https://ror.org/00n4nbk77 National Archives of Estonia Rahvusarhiiv'),
(19700, 'https://ror.org/01s3yh696', 'no_lang_code', 1, 'https://ror.org/01s3yh696 Phase Motion Control (Italy)'),
(19701, 'https://ror.org/020vpzw85', 'no_lang_code', 1, 'https://ror.org/020vpzw85 PhaseSpace (United Kingdom)'),
(19702, 'https://ror.org/03bd77x85', 'no_lang_code', 1, 'https://ror.org/03bd77x85 Raisio (Finland)'),
(19703, 'https://ror.org/03gz60y52', 'pt', 1, 'https://ror.org/03gz60y52 Raiz - Instituto De Investigação Da Floresta E Papel'),
(19704, 'https://ror.org/041xceh77', 'no_lang_code', 1, 'https://ror.org/041xceh77 Paques (Netherlands)'),
(19705, 'https://ror.org/044hjch50', 'no_lang_code', 1, 'https://ror.org/044hjch50 Phasex (United States)'),
(19706, 'https://ror.org/00w3adw05', 'no_lang_code', 1, 'https://ror.org/00w3adw05 Ramboll (Denmark)'),
(19707, 'https://ror.org/04yzhbz69', 'no_lang_code', 1, 'https://ror.org/04yzhbz69 Produtec (Germany)'),
(19708, 'https://ror.org/05cckd696', 'no_lang_code', 1, 'https://ror.org/05cckd696 PCAS (France)'),
(19709, 'https://ror.org/03j2kra17', 'no_lang_code', 1, 'https://ror.org/03j2kra17 Prodyne (United States)'),
(19710, 'https://ror.org/0551j4575', 'no_lang_code', 1, 'https://ror.org/0551j4575 Parabon Computation (United States)'),
(19711, 'https://ror.org/027z1kr85', 'no_lang_code', 1, 'https://ror.org/027z1kr85 PhenoSystems (Belgium)'),
(19712, 'https://ror.org/00g5nn676', 'en', 1, 'https://ror.org/00g5nn676 Phi Theta Kappa Honor Society'),
(19713, 'https://ror.org/05av3kx76', 'no_lang_code', 1, 'https://ror.org/05av3kx76 Ramon.Space (Israel)'),
(19714, 'https://ror.org/03cze4377', 'no_lang_code', 1, 'https://ror.org/03cze4377 Power Curbers (United States)'),
(19715, 'https://ror.org/04f8nq106', 'no_lang_code', 1, 'https://ror.org/04f8nq106 PHIMECA (France)'),
(19716, 'https://ror.org/02krbtc48', 'no_lang_code', 1, 'https://ror.org/02krbtc48 Paradigm Pharmaceuticals (United States)'),
(19717, 'https://ror.org/02jewd384', 'no_lang_code', 1, 'https://ror.org/02jewd384 Phil Jones Associates (United Kingdom)'),
(19718, 'https://ror.org/00w84v084', 'no_lang_code', 1, 'https://ror.org/00w84v084 PSA (United States)'),
(19719, 'https://ror.org/05gtkhg75', 'no_lang_code', 1, 'https://ror.org/05gtkhg75 Predictek (United States)'),
(19720, 'https://ror.org/05jybk243', 'en', 1, 'https://ror.org/05jybk243 Professional Engineers Ontario'),
(19721, 'https://ror.org/05pgmqf50', 'no_lang_code', 1, 'https://ror.org/05pgmqf50 Profile Associates (United States)'),
(19722, 'https://ror.org/05sfyk691', 'en', 1, 'https://ror.org/05sfyk691 Department of Behavioral Health and Intellectual Disability Services'),
(19723, 'https://ror.org/01cs05k22', 'no_lang_code', 1, 'https://ror.org/01cs05k22 Belit (Serbia)'),
(19724, 'https://ror.org/03cssbw37', 'no_lang_code', 1, 'https://ror.org/03cssbw37 Parallel Consulting (United States)'),
(19725, 'https://ror.org/03pca2t30', 'en', 1, 'https://ror.org/03pca2t30 Presbyterian Medical Services'),
(19726, 'https://ror.org/04gka6q50', 'en', 1, 'https://ror.org/04gka6q50 Presbyterian St. Luke''s Medical Center'),
(19727, 'https://ror.org/04rktjw27', 'no_lang_code', 1, 'https://ror.org/04rktjw27 Profusa (United States)'),
(19728, 'https://ror.org/04pf6mc33', 'en', 1, 'https://ror.org/04pf6mc33 Maine School Administrative District 1'),
(19729, 'https://ror.org/05yd5nz87', 'no_lang_code', 1, 'https://ror.org/05yd5nz87 Glintt (Portugal)'),
(19730, 'https://ror.org/006zfr810', 'en', 1, 'https://ror.org/006zfr810 Philippine Educational Theater Association'),
(19731, 'https://ror.org/00qq0vj26', 'no_lang_code', 1, 'https://ror.org/00qq0vj26 Paraytec (United Kingdom)'),
(19732, 'https://ror.org/015avwq19', 'no_lang_code', 1, 'https://ror.org/015avwq19 Resoltech (France)'),
(19733, 'https://ror.org/040cwqt59', 'no_lang_code', 1, 'https://ror.org/040cwqt59 Pemu (Hungary)'),
(19734, 'https://ror.org/03njk0639', 'no_lang_code', 1, 'https://ror.org/03njk0639 Rangen (United States)'),
(19735, 'https://ror.org/05wgv9z07', 'no_lang_code', 1, 'https://ror.org/05wgv9z07 Resonant Sensors (United States)'),
(19736, 'https://ror.org/05q2q5n15', 'no_lang_code', 1, 'https://ror.org/05q2q5n15 Progis Software (Austria)'),
(19737, 'https://ror.org/01hhm9k47', 'en', 1, 'https://ror.org/01hhm9k47 Parent Project Muscular Dystrophy'),
(19738, 'https://ror.org/02zrx8k78', 'no_lang_code', 1, 'https://ror.org/02zrx8k78 Resonon (United States)'),
(19739, 'https://ror.org/03c922h13', 'no_lang_code', 1, 'https://ror.org/03c922h13 Xerox (United Kingdom)'),
(19740, 'https://ror.org/01rswjc57', 'no_lang_code', 1, 'https://ror.org/01rswjc57 Philips (Spain)'),
(19741, 'https://ror.org/039szfp14', 'en', 1, 'https://ror.org/039szfp14 Ranken Technical College'),
(19742, 'https://ror.org/05j7bes85', 'no_lang_code', 1, 'https://ror.org/05j7bes85 Progress Printing (United States)'),
(19743, 'https://ror.org/03ct1tp35', 'no_lang_code', 1, 'https://ror.org/03ct1tp35 Progressive Energy (United Kingdom)'),
(19744, 'https://ror.org/002sg8b56', 'no_lang_code', 1, 'https://ror.org/002sg8b56 Resource (United States)'),
(19745, 'https://ror.org/00r8rhe65', 'en', 1, 'https://ror.org/00r8rhe65 Progressive Life Center'),
(19746, 'https://ror.org/05qqqz947', 'en', 1, 'https://ror.org/05qqqz947 Ohio Development Services Agency'),
(19747, 'https://ror.org/01e8sqr65', 'en', 1, 'https://ror.org/01e8sqr65 Parent Support Network of Rhode Island'),
(19748, 'https://ror.org/03xaemp51', 'no_lang_code', 1, 'https://ror.org/03xaemp51 Phoebus Optoelectronics (United States)'),
(19749, 'https://ror.org/00shp5a81', 'no_lang_code', 1, 'https://ror.org/00shp5a81 Rapanelli Fioravante (Italy)'),
(19750, 'https://ror.org/01n1wka83', 'en', 1, 'https://ror.org/01n1wka83 Parent/Professional Advocacy League'),
(19751, 'https://ror.org/059srqj16', 'en', 1, 'https://ror.org/059srqj16 Responsive Centers For Psychology & Learning'),
(19752, 'https://ror.org/01p5m8335', 'no_lang_code', 1, 'https://ror.org/01p5m8335 Rapp (Switzerland)'),
(19753, 'https://ror.org/00sa21z63', 'no_lang_code', 1, 'https://ror.org/00sa21z63 Rapport (United States)'),
(19754, 'https://ror.org/05323ve69', 'no_lang_code', 1, 'https://ror.org/05323ve69 RetroVirox (United States)'),
(19755, 'https://ror.org/02sr8z564', 'no_lang_code', 1, 'https://ror.org/02sr8z564 Northrop Grumman (Norway)'),
(19756, 'https://ror.org/02vdg3j11', 'no_lang_code', 1, 'https://ror.org/02vdg3j11 Rational Biotechnology (United States)'),
(19757, 'https://ror.org/01sg34z40', 'fr', 1, 'https://ror.org/01sg34z40 RƩunion des musƩes nationaux Grand Palais'),
(19758, 'https://ror.org/04z7k0065', 'no_lang_code', 1, 'https://ror.org/04z7k0065 Phoenix Contact (Germany)'),
(19759, 'https://ror.org/036z4j470', 'no_lang_code', 1, 'https://ror.org/036z4j470 Systems, Applications & Products in Data Processing (Switzerland)'),
(19760, 'https://ror.org/02vmfn041', 'en', 1, 'https://ror.org/02vmfn041 Phoenix Programs'),
(19761, 'https://ror.org/02cdhc958', 'no_lang_code', 1, 'https://ror.org/02cdhc958 Parker Hannifin (United Kingdom)'),
(19762, 'https://ror.org/055214t07', 'no_lang_code', 1, 'https://ror.org/055214t07 ProImmune (United Kingdom)'),
(19763, 'https://ror.org/015pd1843', 'no_lang_code', 1, 'https://ror.org/015pd1843 Phoenix Scientific Industries (United Kingdom)'),
(19764, 'https://ror.org/03gh8yg14', 'en', 1, 'https://ror.org/03gh8yg14 Project Oceanology'),
(19765, 'https://ror.org/04789m930', 'no_lang_code', 1, 'https://ror.org/04789m930 SNL (Sweden)'),
(19766, 'https://ror.org/04c5rqn31', 'no_lang_code', 1, 'https://ror.org/04c5rqn31 Projection Plasma SystĆØme (France)'),
(19767, 'https://ror.org/04ceqtd27', 'no_lang_code', 1, 'https://ror.org/04ceqtd27 Phoenix Systems (United States)'),
(19768, 'https://ror.org/00pefpf42', 'no_lang_code', 1, 'https://ror.org/00pefpf42 RH Lyon (United States)'),
(19769, 'https://ror.org/01crqqh49', 'en', 1, 'https://ror.org/01crqqh49 Parmenides Foundation'),
(19770, 'https://ror.org/03y3mds25', 'no_lang_code', 1, 'https://ror.org/03y3mds25 Phoenix Technologies (Canada)'),
(19771, 'https://ror.org/036dhjm48', 'no_lang_code', 1, 'https://ror.org/036dhjm48 Pars Makina (Turkey)'),
(19772, 'https://ror.org/046dsb945', 'no_lang_code', 1, 'https://ror.org/046dsb945 Cicor (Germany)'),
(19773, 'https://ror.org/02s3p6s69', 'en', 1, 'https://ror.org/02s3p6s69 Projects in Motion'),
(19774, 'https://ror.org/02pse8162', 'en', 1, 'https://ror.org/02pse8162 RWI – Leibniz Institute for Economic Research RWI – Leibniz-Institut für Wirtschaftsforschung'),
(19775, 'https://ror.org/01wa93237', 'no_lang_code', 1, 'https://ror.org/01wa93237 Raymor (Canada)'),
(19776, 'https://ror.org/01ep0vp31', 'no_lang_code', 1, 'https://ror.org/01ep0vp31 Rheinmetall (Germany)'),
(19777, 'https://ror.org/03fzdf593', 'de', 1, 'https://ror.org/03fzdf593 PROJEKTkompetenz'),
(19778, 'https://ror.org/02rj52618', 'no_lang_code', 1, 'https://ror.org/02rj52618 RheoSense (United States)'),
(19779, 'https://ror.org/01f1vsw14', 'no_lang_code', 1, 'https://ror.org/01f1vsw14 Raytek (Germany)'),
(19780, 'https://ror.org/01fk6s398', 'no_lang_code', 1, 'https://ror.org/01fk6s398 Gilead Sciences (Canada)'),
(19781, 'https://ror.org/015yks327', 'en', 1, 'https://ror.org/015yks327 Rhode Island Coalition Against Domestic Violence'),
(19782, 'https://ror.org/035r6p857', 'en', 1, 'https://ror.org/035r6p857 Rhode Island League of Cities and Towns'),
(19783, 'https://ror.org/010wna455', 'no_lang_code', 1, 'https://ror.org/010wna455 ELFE Group (Greece) Ελληνικά Ī›Ī¹Ļ€Ī¬ĻƒĪ¼Ī±Ļ„Ī± και Χημικά'),
(19784, 'https://ror.org/00s35gs08', 'no_lang_code', 1, 'https://ror.org/00s35gs08 Couniniotis Group (Greece)'),
(19785, 'https://ror.org/01g9fy909', 'no_lang_code', 1, 'https://ror.org/01g9fy909 ProAmpac (Canada)'),
(19786, 'https://ror.org/04zvx4d72', 'en', 1, 'https://ror.org/04zvx4d72 Royal Commission on the Ancient and Historical Monuments of Wales'),
(19787, 'https://ror.org/044g7e667', 'no_lang_code', 1, 'https://ror.org/044g7e667 R-Biopharm (United Kingdom)'),
(19788, 'https://ror.org/03r885q17', 'no_lang_code', 1, 'https://ror.org/03r885q17 Prolog Development Center'),
(19789, 'https://ror.org/038k3z155', 'no_lang_code', 1, 'https://ror.org/038k3z155 RDM Group (United Kingdom)'),
(19790, 'https://ror.org/038qg8k28', 'no_lang_code', 1, 'https://ror.org/038qg8k28 Prologia (France)'),
(19791, 'https://ror.org/041r3wk12', 'en', 1, 'https://ror.org/041r3wk12 Partnership for Food Safety Education'),
(19792, 'https://ror.org/05v3gve10', 'no_lang_code', 1, 'https://ror.org/05v3gve10 Prolon Control Systems (Denmark)'),
(19793, 'https://ror.org/04e9s0y96', 'en', 1, 'https://ror.org/04e9s0y96 Partnership for Prevention'),
(19794, 'https://ror.org/059q1xd66', 'no_lang_code', 1, 'https://ror.org/059q1xd66 RE Hydrogen (United Kingdom)'),
(19795, 'https://ror.org/05t6b6536', 'no_lang_code', 1, 'https://ror.org/05t6b6536 PhotoBiotics (United Kingdom)'),
(19796, 'https://ror.org/05sd0rs38', 'no_lang_code', 1, 'https://ror.org/05sd0rs38 Reach Technologies (Canada)'),
(19797, 'https://ror.org/04t57g552', 'no_lang_code', 1, 'https://ror.org/04t57g552 Reaction Engines (United Kingdom)'),
(19798, 'https://ror.org/038m8ky73', 'no_lang_code', 1, 'https://ror.org/038m8ky73 Promau Engineering (Italy)'),
(19799, 'https://ror.org/00jkh1375', 'no_lang_code', 1, 'https://ror.org/00jkh1375 Prometheus Biosciences (United States)'),
(19800, 'https://ror.org/01t8zd103', 'en', 1, 'https://ror.org/01t8zd103 Reading Borough Council'),
(19801, 'https://ror.org/046f4dc56', 'en', 1, 'https://ror.org/046f4dc56 Dynastee'),
(19802, 'https://ror.org/00qnt7d66', 'no_lang_code', 1, 'https://ror.org/00qnt7d66 Photometrics (United States)'),
(19803, 'https://ror.org/02tg03m61', 'no_lang_code', 1, 'https://ror.org/02tg03m61 Photon Design (United Kingdom)'),
(19804, 'https://ror.org/031xrtf85', 'no_lang_code', 1, 'https://ror.org/031xrtf85 PassivSystems (United Kingdom)'),
(19805, 'https://ror.org/00h0zfe78', 'no_lang_code', 1, 'https://ror.org/00h0zfe78 Prometni institut Ljubljana'),
(19806, 'https://ror.org/039je2z22', 'no_lang_code', 1, 'https://ror.org/039je2z22 PathoFinder (Netherlands)'),
(19807, 'https://ror.org/02bwmj336', 'no_lang_code', 1, 'https://ror.org/02bwmj336 NSK (United Kingdom)'),
(19808, 'https://ror.org/0138xww93', 'no_lang_code', 1, 'https://ror.org/0138xww93 Prism Informatics (Italy)'),
(19809, 'https://ror.org/02bz32326', 'en', 1, 'https://ror.org/02bz32326 Philadelphia Education Fund'),
(19810, 'https://ror.org/008v1x891', 'en', 1, 'https://ror.org/008v1x891 Pathways to Housing'),
(19811, 'https://ror.org/05ref2c25', 'no_lang_code', 1, 'https://ror.org/05ref2c25 Valacta (Canada)'),
(19812, 'https://ror.org/01gdx5384', 'no_lang_code', 1, 'https://ror.org/01gdx5384 Ribocon (Germany)'),
(19813, 'https://ror.org/009b3qm07', 'en', 1, 'https://ror.org/009b3qm07 PAU Education'),
(19814, 'https://ror.org/04t6erm02', 'no_lang_code', 1, 'https://ror.org/04t6erm02 Infor (United States)'),
(19815, 'https://ror.org/00phhaz14', 'no_lang_code', 1, 'https://ror.org/00phhaz14 Rizzo International (United States)'),
(19816, 'https://ror.org/02kqgpw05', 'no_lang_code', 1, 'https://ror.org/02kqgpw05 Photonic Knowledge (Canada)'),
(19817, 'https://ror.org/0106dk572', 'nl', 1, 'https://ror.org/0106dk572 Promotie Binnenvaart Vlaanderen Promotion Office for Inland Navigation in Flanders'),
(19818, 'https://ror.org/055zfv570', 'no_lang_code', 1, 'https://ror.org/055zfv570 Brookes Publishing (United States)'),
(19819, 'https://ror.org/03pxrb028', 'no_lang_code', 1, 'https://ror.org/03pxrb028 Photonic Science (United Kingdom)'),
(19820, 'https://ror.org/05v4wt877', 'en', 1, 'https://ror.org/05v4wt877 Paul Watkiss Associates'),
(19821, 'https://ror.org/025tyv665', 'no_lang_code', 1, 'https://ror.org/025tyv665 Pavemetrics Systems (Canada)'),
(19822, 'https://ror.org/05ba61w94', 'no_lang_code', 1, 'https://ror.org/05ba61w94 Photonics Bretagne (France)'),
(19823, 'https://ror.org/058xhgv89', 'no_lang_code', 1, 'https://ror.org/058xhgv89 Railinfratrust (Netherlands)'),
(19824, 'https://ror.org/04btw2k35', 'no_lang_code', 1, 'https://ror.org/04btw2k35 Reagecon (Ireland)'),
(19825, 'https://ror.org/04pbdwx95', 'no_lang_code', 1, 'https://ror.org/04pbdwx95 Opway (Portugal)'),
(19826, 'https://ror.org/0142kd761', 'it', 1, 'https://ror.org/0142kd761 Ricerca e Progetto'),
(19827, 'https://ror.org/0425hsv68', 'no_lang_code', 1, 'https://ror.org/0425hsv68 PaxVax (United States)'),
(19828, 'https://ror.org/05nvnp350', 'en', 1, 'https://ror.org/05nvnp350 Richmond Area Multi-Services'),
(19829, 'https://ror.org/0271jbv59', 'no_lang_code', 1, 'https://ror.org/0271jbv59 Proactive Oral Solutions (United States)'),
(19830, 'https://ror.org/05q9vjc76', 'no_lang_code', 1, 'https://ror.org/05q9vjc76 Richmond Chemical (United States)'),
(19831, 'https://ror.org/03pwm1612', 'no_lang_code', 1, 'https://ror.org/03pwm1612 Allied Vision Technologies (Canada)'),
(19832, 'https://ror.org/015b1qg33', 'no_lang_code', 1, 'https://ror.org/015b1qg33 PBL Assay Science (United States)'),
(19833, 'https://ror.org/00v6srm21', 'no_lang_code', 1, 'https://ror.org/00v6srm21 PBLH International Consulting'),
(19834, 'https://ror.org/024h3kh50', 'no_lang_code', 1, 'https://ror.org/024h3kh50 Ridan (Poland)'),
(19835, 'https://ror.org/05jthnf79', 'no_lang_code', 1, 'https://ror.org/05jthnf79 PBS Turbo (Czechia)'),
(19836, 'https://ror.org/02s47bv30', 'no_lang_code', 1, 'https://ror.org/02s47bv30 Prosolia (United States)'),
(19837, 'https://ror.org/04ppn0b98', 'no_lang_code', 1, 'https://ror.org/04ppn0b98 Rebellion (United Kingdom)'),
(19838, 'https://ror.org/05bzhd221', 'no_lang_code', 1, 'https://ror.org/05bzhd221 Ridge and Partners (United Kingdom)'),
(19839, 'https://ror.org/018krw812', 'no_lang_code', 1, 'https://ror.org/018krw812 Ridgeback (Italy)'),
(19840, 'https://ror.org/036bprp03', 'en', 1, 'https://ror.org/036bprp03 Ridgeview'),
(19841, 'https://ror.org/04776hp32', 'en', 1, 'https://ror.org/04776hp32 Prospectors & Developers Association of Canada'),
(19842, 'https://ror.org/04yd2kr04', 'no_lang_code', 1, 'https://ror.org/04yd2kr04 PCB Piezotronics (United States)'),
(19843, 'https://ror.org/053qrc350', 'no_lang_code', 1, 'https://ror.org/053qrc350 Riegger Diamantwerkzeuge (Germany)'),
(19844, 'https://ror.org/02by1h611', 'no_lang_code', 1, 'https://ror.org/02by1h611 Prospektiker (Spain)'),
(19845, 'https://ror.org/033a14h05', 'no_lang_code', 1, 'https://ror.org/033a14h05 Ball (Germany)'),
(19846, 'https://ror.org/04zg05e03', 'no_lang_code', 1, 'https://ror.org/04zg05e03 Autoneum (Switzerland)'),
(19847, 'https://ror.org/05wh3xd46', 'en', 1, 'https://ror.org/05wh3xd46 Riga Graduate School of Law Rygos aukÅ”toji teisės mokykla Š ŠøŠ¶ŃŠŗŠ°Ń Š²Ń‹ŃŃˆŠ°Ń школа права'),
(19848, 'https://ror.org/05xeh0r58', 'no_lang_code', 1, 'https://ror.org/05xeh0r58 PhytoCeutica (United States)'),
(19849, 'https://ror.org/01qv0ss31', 'no_lang_code', 1, 'https://ror.org/01qv0ss31 Reconnecting Youth (United States)'),
(19850, 'https://ror.org/03endhe31', 'en', 1, 'https://ror.org/03endhe31 PDC-ARGOS'),
(19851, 'https://ror.org/05q1xcs51', 'no_lang_code', 1, 'https://ror.org/05q1xcs51 PDS Biotechnology (United States)'),
(19852, 'https://ror.org/0465f2g39', 'no_lang_code', 1, 'https://ror.org/0465f2g39 RBC Investor & Treasury Services (France)'),
(19853, 'https://ror.org/01zv5dm50', 'no_lang_code', 1, 'https://ror.org/01zv5dm50 PDS (United States)'),
(19854, 'https://ror.org/001f54z88', 'no_lang_code', 1, 'https://ror.org/001f54z88 Phytodata'),
(19855, 'https://ror.org/05f1mgb50', 'no_lang_code', 1, 'https://ror.org/05f1mgb50 Phytolutions (Germany)'),
(19856, 'https://ror.org/027g41b71', 'no_lang_code', 1, 'https://ror.org/027g41b71 Picanol (Belgium)'),
(19857, 'https://ror.org/02pr9jr80', 'no_lang_code', 1, 'https://ror.org/02pr9jr80 Prosys (Germany)'),
(19858, 'https://ror.org/027df5686', 'en', 1, 'https://ror.org/027df5686 Learning Ally'),
(19859, 'https://ror.org/008am1c32', 'no_lang_code', 1, 'https://ror.org/008am1c32 Recore Systems (Netherlands)'),
(19860, 'https://ror.org/03z9psf49', 'no_lang_code', 1, 'https://ror.org/03z9psf49 Protabit (United States)'),
(19861, 'https://ror.org/03kcc1a98', 'no_lang_code', 1, 'https://ror.org/03kcc1a98 Recupyl (France)'),
(19862, 'https://ror.org/01fx4ky02', 'no_lang_code', 1, 'https://ror.org/01fx4ky02 Protagen (Germany)'),
(19863, 'https://ror.org/03ex17v30', 'no_lang_code', 1, 'https://ror.org/03ex17v30 RMC Research (United States)'),
(19864, 'https://ror.org/024pjcr93', 'no_lang_code', 1, 'https://ror.org/024pjcr93 Red Electrica de Espana (Spain)'),
(19865, 'https://ror.org/00s730510', 'no_lang_code', 1, 'https://ror.org/00s730510 Soitec (France)'),
(19866, 'https://ror.org/0500ysm83', 'no_lang_code', 1, 'https://ror.org/0500ysm83 RoadNarrows (United States)'),
(19867, 'https://ror.org/025tf9d31', 'no_lang_code', 1, 'https://ror.org/025tf9d31 Red Hat (Ireland)'),
(19868, 'https://ror.org/03vyvsr30', 'en', 1, 'https://ror.org/03vyvsr30 Roane County Anti-Drug Coalition'),
(19869, 'https://ror.org/00f9r7e77', 'en', 1, 'https://ror.org/00f9r7e77 Roane State Community College'),
(19870, 'https://ror.org/013vgsx18', 'no_lang_code', 1, 'https://ror.org/013vgsx18 Protein Express (United States)'),
(19871, 'https://ror.org/02av9qc14', 'no_lang_code', 1, 'https://ror.org/02av9qc14 Protein Metrics (United States)'),
(19872, 'https://ror.org/05pbmhp44', 'en', 1, 'https://ror.org/05pbmhp44 Mediterranean Network of Basin Organisations'),
(19873, 'https://ror.org/04hy3rc65', 'no_lang_code', 1, 'https://ror.org/04hy3rc65 Red Tail Hawk Corporation (United States)'),
(19874, 'https://ror.org/028m0e381', 'no_lang_code', 1, 'https://ror.org/028m0e381 Protein Technologies (United Kingdom)'),
(19875, 'https://ror.org/03v8ncw80', 'no_lang_code', 1, 'https://ror.org/03v8ncw80 Robinson Brothers (United Kingdom)'),
(19876, 'https://ror.org/00tsz2810', 'no_lang_code', 1, 'https://ror.org/00tsz2810 Affini Technology (United Kingdom)'),
(19877, 'https://ror.org/05gfgee67', 'no_lang_code', 1, 'https://ror.org/05gfgee67 ProteinLogic (United Kingdom)'),
(19878, 'https://ror.org/04aszsx88', 'no_lang_code', 1, 'https://ror.org/04aszsx88 Robotronics (United States)'),
(19879, 'https://ror.org/043hwx747', 'no_lang_code', 1, 'https://ror.org/043hwx747 Proteome Sciences (United Kingdom)'),
(19880, 'https://ror.org/03t1pvr70', 'en', 1, 'https://ror.org/03t1pvr70 Roca'),
(19881, 'https://ror.org/009dw2t03', 'en', 1, 'https://ror.org/009dw2t03 Pima County Health Department'),
(19882, 'https://ror.org/033g2f326', 'en', 1, 'https://ror.org/033g2f326 Pima County Juvenile Court'),
(19883, 'https://ror.org/0583cna36', 'no_lang_code', 1, 'https://ror.org/0583cna36 Rochal Industries (United States)'),
(19884, 'https://ror.org/02pfzx187', 'no_lang_code', 1, 'https://ror.org/02pfzx187 Norwegian Veterinary Centre for Contract Research and Commercial Services'),
(19885, 'https://ror.org/02gwnf178', 'en', 1, 'https://ror.org/02gwnf178 Swedish Chemicals Agency'),
(19886, 'https://ror.org/05fafcp48', 'no_lang_code', 1, 'https://ror.org/05fafcp48 Golder Associates (United Kingdom)'),
(19887, 'https://ror.org/01q74hp50', 'no_lang_code', 1, 'https://ror.org/01q74hp50 Blackstone (United States)'),
(19888, 'https://ror.org/00wz3h896', 'no_lang_code', 1, 'https://ror.org/00wz3h896 RedZinc (Ireland)'),
(19889, 'https://ror.org/00axfqm84', 'en', 1, 'https://ror.org/00axfqm84 Rockland County Department of Mental Health'),
(19890, 'https://ror.org/04gs1nw86', 'no_lang_code', 1, 'https://ror.org/04gs1nw86 FiberLogix (United Kingdom)'),
(19891, 'https://ror.org/03jd2c182', 'no_lang_code', 1, 'https://ror.org/03jd2c182 REFAMED (Italy)'),
(19892, 'https://ror.org/00xag4a20', 'ca', 1, 'https://ror.org/00xag4a20 Petita i Mitjana Empresa de Catalunya'),
(19893, 'https://ror.org/02mxrwx85', 'en', 1, 'https://ror.org/02mxrwx85 Pinal Hispanic Council'),
(19894, 'https://ror.org/00k9phg42', 'no_lang_code', 1, 'https://ror.org/00k9phg42 Rockwell Automation (United Kingdom)'),
(19895, 'https://ror.org/03ktccz26', 'no_lang_code', 1, 'https://ror.org/03ktccz26 PinMed (United States)'),
(19896, 'https://ror.org/03s746s06', 'no_lang_code', 1, 'https://ror.org/03s746s06 Pinnacle Pharmaceuticals (United States)'),
(19897, 'https://ror.org/015mtjx14', 'no_lang_code', 1, 'https://ror.org/015mtjx14 RegeneMed (United States)'),
(19898, 'https://ror.org/05ejj5g23', 'no_lang_code', 1, 'https://ror.org/05ejj5g23 Pipistrel (Slovenia)'),
(19899, 'https://ror.org/05wq53m96', 'no_lang_code', 1, 'https://ror.org/05wq53m96 Rockwood Lithium (Germany)'),
(19900, 'https://ror.org/03x0e3627', 'no_lang_code', 1, 'https://ror.org/03x0e3627 Regens (Hungary)'),
(19901, 'https://ror.org/0090bh305', 'no_lang_code', 1, 'https://ror.org/0090bh305 Proveca (United Kingdom)'),
(19902, 'https://ror.org/05mbcxm36', 'no_lang_code', 1, 'https://ror.org/05mbcxm36 Almina (Portugal)'),
(19903, 'https://ror.org/02eftbv72', 'en', 1, 'https://ror.org/02eftbv72 Rocky Mountain Virology Club'),
(19904, 'https://ror.org/046107172', 'en', 1, 'https://ror.org/046107172 Providence Center'),
(19905, 'https://ror.org/059gprs28', 'no_lang_code', 1, 'https://ror.org/059gprs28 Rocky Research (United States)'),
(19906, 'https://ror.org/01bgs7g74', 'no_lang_code', 1, 'https://ror.org/01bgs7g74 Roctest (Canada)'),
(19907, 'https://ror.org/0570cz029', 'no_lang_code', 1, 'https://ror.org/0570cz029 Rodenburg Biopolymers (Netherlands)'),
(19908, 'https://ror.org/019qrvs61', 'no_lang_code', 1, 'https://ror.org/019qrvs61 Pittards (United Kingdom)'),
(19909, 'https://ror.org/026b2vr33', 'no_lang_code', 1, 'https://ror.org/026b2vr33 Rofin (United Kingdom)'),
(19910, 'https://ror.org/05dgxmx67', 'en', 1, 'https://ror.org/05dgxmx67 Romanian Authority For Nuclear Activities'),
(19911, 'https://ror.org/01rzvxf60', 'en', 1, 'https://ror.org/01rzvxf60 Pittsburgh AIDS Task Force'),
(19912, 'https://ror.org/03ms28n48', 'no_lang_code', 1, 'https://ror.org/03ms28n48 Pixelligent (United States)'),
(19913, 'https://ror.org/01m9ht412', 'no_lang_code', 1, 'https://ror.org/01m9ht412 PrvnĆ­ BrněnskĆ” StrojĆ­rna VelkĆ” BĆ­teÅ” (Czechia)'),
(19914, 'https://ror.org/0502t5s28', 'en', 1, 'https://ror.org/0502t5s28 International Research Institute of Stavanger'),
(19915, 'https://ror.org/01kh3en48', 'no_lang_code', 1, 'https://ror.org/01kh3en48 Prysmian Group (Italy)'),
(19916, 'https://ror.org/04j6csa16', 'en', 1, 'https://ror.org/04j6csa16 Rogers County Volunteers for Youth'),
(19917, 'https://ror.org/03nhf7k19', 'no_lang_code', 1, 'https://ror.org/03nhf7k19 PJH (United Kingdom)'),
(19918, 'https://ror.org/02znknb21', 'no_lang_code', 1, 'https://ror.org/02znknb21 Prysmian Group (United Kingdom)'),
(19919, 'https://ror.org/036nzz613', 'en', 1, 'https://ror.org/036nzz613 Places For People'),
(19920, 'https://ror.org/02fm5cr50', 'no_lang_code', 1, 'https://ror.org/02fm5cr50 Rohrer (Switzerland)'),
(19921, 'https://ror.org/03ghr6q93', 'no_lang_code', 1, 'https://ror.org/03ghr6q93 PLANCO Consulting (Germany)'),
(19922, 'https://ror.org/02fwj4283', 'pl', 1, 'https://ror.org/02fwj4283 Geoscience and Marine Research & Consulting Przedsiębiorstwo Badań i Doradztwa'),
(19923, 'https://ror.org/02nanqt16', 'no_lang_code', 1, 'https://ror.org/02nanqt16 Planer (United Kingdom)'),
(19924, 'https://ror.org/0294yf460', 'no_lang_code', 1, 'https://ror.org/0294yf460 France Rol (France)'),
(19925, 'https://ror.org/01rr8w476', 'no_lang_code', 1, 'https://ror.org/01rr8w476 Przedsiębiorstwo Innowacyjno Wdrożeniowe Complex (Poland)'),
(19926, 'https://ror.org/02ekwm539', 'no_lang_code', 1, 'https://ror.org/02ekwm539 Planet'),
(19927, 'https://ror.org/03rhn0886', 'en', 1, 'https://ror.org/03rhn0886 Regional Youth Adult Social Action Partnership'),
(19928, 'https://ror.org/04tzj1935', 'no_lang_code', 1, 'https://ror.org/04tzj1935 Planet'),
(19929, 'https://ror.org/05d4tza70', 'no_lang_code', 1, 'https://ror.org/05d4tza70 Roland Hill (United Kingdom)'),
(19930, 'https://ror.org/02cpp6046', 'en', 1, 'https://ror.org/02cpp6046 Regional Advisory and Information Centre Presov'),
(19931, 'https://ror.org/02vsbhs07', 'no_lang_code', 1, 'https://ror.org/02vsbhs07 Planetek Hellas (Greece)'),
(19932, 'https://ror.org/005s79z43', 'no_lang_code', 1, 'https://ror.org/005s79z43 Rolatube Technology (United Kingdom)'),
(19933, 'https://ror.org/04344z734', 'no_lang_code', 1, 'https://ror.org/04344z734 Romax Technology (United Kingdom)'),
(19934, 'https://ror.org/034p8wt80', 'no_lang_code', 1, 'https://ror.org/034p8wt80 Industrial Solar (Germany)'),
(19935, 'https://ror.org/04v7h0g25', 'no_lang_code', 1, 'https://ror.org/04v7h0g25 Plant Bioscience Limited (United Kingdom)'),
(19936, 'https://ror.org/00nn34t03', 'no_lang_code', 1, 'https://ror.org/00nn34t03 Innovation Ecology (Israel)'),
(19937, 'https://ror.org/0334dng85', 'no_lang_code', 1, 'https://ror.org/0334dng85 Agroknow (Greece)'),
(19938, 'https://ror.org/04spmxm14', 'en', 1, 'https://ror.org/04spmxm14 Plant Protection Institute'),
(19939, 'https://ror.org/04dge0m73', 'no_lang_code', 1, 'https://ror.org/04dge0m73 Psutec (Belgium)'),
(19940, 'https://ror.org/009ephb22', 'no_lang_code', 1, 'https://ror.org/009ephb22 Rood Wit Blauw Water Services (Netherlands)'),
(19941, 'https://ror.org/039f5pg25', 'it', 1, 'https://ror.org/039f5pg25 Azienda Sanitaria Locale Alessandria'),
(19942, 'https://ror.org/05g223j58', 'no_lang_code', 1, 'https://ror.org/05g223j58 Plant (United States)'),
(19943, 'https://ror.org/031vt9q97', 'en', 1, 'https://ror.org/031vt9q97 BrĆønnĆøysund Register Centre'),
(19944, 'https://ror.org/03pq0dv21', 'no_lang_code', 1, 'https://ror.org/03pq0dv21 Vecima Technology (United Kingdom)'),
(19945, 'https://ror.org/03wtgv294', 'no_lang_code', 1, 'https://ror.org/03wtgv294 Regulus (Czechia)'),
(19946, 'https://ror.org/042dcve90', 'en', 1, 'https://ror.org/042dcve90 Rose State College'),
(19947, 'https://ror.org/03kytre74', 'no_lang_code', 1, 'https://ror.org/03kytre74 Roslin Cells (United Kingdom)'),
(19948, 'https://ror.org/0493fng90', 'no_lang_code', 1, 'https://ror.org/0493fng90 Rosti (Denmark)'),
(19949, 'https://ror.org/027qm5t47', 'no_lang_code', 1, 'https://ror.org/027qm5t47 FitzGerald Nurseries (Ireland)'),
(19950, 'https://ror.org/05vmcgv71', 'no_lang_code', 1, 'https://ror.org/05vmcgv71 Dana (Germany)'),
(19951, 'https://ror.org/05sps8h71', 'no_lang_code', 1, 'https://ror.org/05sps8h71 Reischauer (Germany)'),
(19952, 'https://ror.org/00vspj326', 'no_lang_code', 1, 'https://ror.org/00vspj326 Plantechno (Italy)'),
(19953, 'https://ror.org/04jxt9a41', 'no_lang_code', 1, 'https://ror.org/04jxt9a41 Plasma Clean (United Kingdom)'),
(19954, 'https://ror.org/0311x3t35', 'no_lang_code', 1, 'https://ror.org/0311x3t35 REL (United States)'),
(19955, 'https://ror.org/02tdw9g37', 'no_lang_code', 1, 'https://ror.org/02tdw9g37 Release Mobile (United Kingdom)'),
(19956, 'https://ror.org/02j7qhm81', 'no_lang_code', 1, 'https://ror.org/02j7qhm81 Alu-Releco Oy (Finland)'),
(19957, 'https://ror.org/04811ff34', 'en', 1, 'https://ror.org/04811ff34 Public Entity Risk Institute'),
(19958, 'https://ror.org/01f7yhe80', 'no_lang_code', 1, 'https://ror.org/01f7yhe80 Relight (Italy)'),
(19959, 'https://ror.org/02zmc3h95', 'en', 1, 'https://ror.org/02zmc3h95 Public Health Foundation'),
(19960, 'https://ror.org/025pjyp02', 'no_lang_code', 1, 'https://ror.org/025pjyp02 Plasma Coatings (United Kingdom)'),
(19961, 'https://ror.org/00gfbsa94', 'no_lang_code', 1, 'https://ror.org/00gfbsa94 Plasma Quest (United Kingdom)'),
(19962, 'https://ror.org/04f9fry73', 'no_lang_code', 1, 'https://ror.org/04f9fry73 Plassys (France)'),
(19963, 'https://ror.org/0174fh497', 'no_lang_code', 1, 'https://ror.org/0174fh497 Remmers Bouwchemie (Netherlands)'),
(19964, 'https://ror.org/029rkt035', 'en', 1, 'https://ror.org/029rkt035 Remote Sensing Application Center'),
(19965, 'https://ror.org/00gfany95', 'en', 1, 'https://ror.org/00gfany95 Royal Agricultural Society of England'),
(19966, 'https://ror.org/04bp6s359', 'en', 1, 'https://ror.org/04bp6s359 Association of European Science and Technology Transfer Professionals'),
(19967, 'https://ror.org/03t2yqt79', 'no_lang_code', 1, 'https://ror.org/03t2yqt79 Plastal (Italy)'),
(19968, 'https://ror.org/023cs4y60', 'no_lang_code', 1, 'https://ror.org/023cs4y60 Remote Sensing Solutions (Germany)'),
(19969, 'https://ror.org/010jcak55', 'no_lang_code', 1, 'https://ror.org/010jcak55 Plastia (Spain)'),
(19970, 'https://ror.org/04hb77r84', 'no_lang_code', 1, 'https://ror.org/04hb77r84 Plastic Electronic (Austria)'),
(19971, 'https://ror.org/0543r8412', 'en', 1, 'https://ror.org/0543r8412 Public Technology Institute'),
(19972, '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'),
(19973, 'https://ror.org/03qgxnq88', 'no_lang_code', 1, 'https://ror.org/03qgxnq88 Redes EnergƩticas Nacionais (Portugal)'),
(19974, 'https://ror.org/05sbphk63', 'no_lang_code', 1, 'https://ror.org/05sbphk63 Plastic Flow (United States)'),
(19975, 'https://ror.org/02sh10804', 'no_lang_code', 1, 'https://ror.org/02sh10804 Future Electronics (Netherlands)'),
(19976, 'https://ror.org/01zcwem74', 'no_lang_code', 1, 'https://ror.org/01zcwem74 Post Brenhinol Royal Mail Group (United Kingdom) a'' Phuist RƬoghail'),
(19977, 'https://ror.org/02bn5bg05', 'no_lang_code', 1, 'https://ror.org/02bn5bg05 Plasticell (United Kingdom)'),
(19978, 'https://ror.org/032g46r36', 'en', 1, 'https://ror.org/032g46r36 Renal Research Institute'),
(19979, 'https://ror.org/05m4hh157', 'no_lang_code', 1, 'https://ror.org/05m4hh157 Pulkovo Observatory ŠŸŃƒŠ»ŠŗŠ¾Š²ŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(19980, 'https://ror.org/03gex3a30', 'en', 1, 'https://ror.org/03gex3a30 PlasticsEurope'),
(19981, 'https://ror.org/003r53j91', 'en', 1, 'https://ror.org/003r53j91 Royal Navy'),
(19982, 'https://ror.org/051t2wp85', 'no_lang_code', 1, 'https://ror.org/051t2wp85 Pulmotect (United States)'),
(19983, 'https://ror.org/01je02926', 'en', 1, 'https://ror.org/01je02926 Liverpool Heart and Chest Hospital NHS Trust'),
(19984, 'https://ror.org/04kpzy923', 'en', 1, 'https://ror.org/04kpzy923 Princess Alexandra Hospital NHS Trust'),
(19985, 'https://ror.org/01e9g9p17', 'en', 1, 'https://ror.org/01e9g9p17 Ysbyty Gwynedd Hospital NHS Trust'),
(19986, 'https://ror.org/04qkkdk37', 'en', 1, 'https://ror.org/04qkkdk37 Royal Oak Community Coalition'),
(19987, 'https://ror.org/03zhs2308', 'en', 1, 'https://ror.org/03zhs2308 Royal Society of Tropical Medicine and Hygiene'),
(19988, 'https://ror.org/00gknw275', 'en', 1, 'https://ror.org/00gknw275 Responsible Retailing Forum'),
(19989, 'https://ror.org/028tdwj14', 'no_lang_code', 1, 'https://ror.org/028tdwj14 RSscan International (Belgium)'),
(19990, 'https://ror.org/04ax1v403', 'no_lang_code', 1, 'https://ror.org/04ax1v403 Renson (Belgium)'),
(19991, 'https://ror.org/00sh40694', 'no_lang_code', 1, 'https://ror.org/00sh40694 RÔdio e Televisão de Portugal (Portugal)'),
(19992, 'https://ror.org/02t5bjk31', 'no_lang_code', 1, 'https://ror.org/02t5bjk31 Pulsotronic (Germany)'),
(19993, 'https://ror.org/00w0e7243', 'en', 1, 'https://ror.org/00w0e7243 Renz Addiction Counseling Center'),
(19994, 'https://ror.org/05wt11w07', 'no_lang_code', 1, 'https://ror.org/05wt11w07 Pultrall (Canada)'),
(19995, 'https://ror.org/03fdxqq72', 'no_lang_code', 1, 'https://ror.org/03fdxqq72 Puracyp (United States)'),
(19996, 'https://ror.org/02m8e4g04', 'no_lang_code', 1, 'https://ror.org/02m8e4g04 RTZ Associates (United States)'),
(19997, 'https://ror.org/04zc4t851', 'en', 1, 'https://ror.org/04zc4t851 Ruby Lake Lagoon Nature Reserve Society'),
(19998, 'https://ror.org/02za70122', 'no_lang_code', 1, 'https://ror.org/02za70122 Ruhrverband (Germany)'),
(19999, 'https://ror.org/01hnk4t11', 'no_lang_code', 1, 'https://ror.org/01hnk4t11 Repotec (Austria)'),
(20000, 'https://ror.org/05abphe57', 'no_lang_code', 1, 'https://ror.org/05abphe57 Runcom Technologies (Israel)'),
(20001, 'https://ror.org/019wfwn56', 'no_lang_code', 1, 'https://ror.org/019wfwn56 Putzier OberflƤchentechnik (Germany)'),
(20002, 'https://ror.org/037p78440', 'no_lang_code', 1, 'https://ror.org/037p78440 Rups Consultancy and Project Management'),
(20003, 'https://ror.org/01ehwm037', 'no_lang_code', 1, 'https://ror.org/01ehwm037 Ruskinn Technology (United Kingdom)'),
(20004, 'https://ror.org/028r5k665', 'no_lang_code', 1, 'https://ror.org/028r5k665 Platit (Switzerland)'),
(20005, 'https://ror.org/05h2sfb33', 'de', 1, 'https://ror.org/05h2sfb33 Platte Consult'),
(20006, 'https://ror.org/04pfq1012', 'no_lang_code', 1, 'https://ror.org/04pfq1012 Pyramid Technical Consultants (United States)'),
(20007, 'https://ror.org/048t8tm52', 'no_lang_code', 1, 'https://ror.org/048t8tm52 Q Bioanalytic (Germany)'),
(20008, 'https://ror.org/05j35dh88', 'no_lang_code', 1, 'https://ror.org/05j35dh88 Q Bot (United Kingdom)'),
(20009, 'https://ror.org/000wpdz03', 'no_lang_code', 1, 'https://ror.org/000wpdz03 Plaxica (United Kingdom)'),
(20010, 'https://ror.org/02h400990', 'no_lang_code', 1, 'https://ror.org/02h400990 Q linea (Sweden)'),
(20011, 'https://ror.org/022w8nz24', 'no_lang_code', 1, 'https://ror.org/022w8nz24 PlayGen (United Kingdom)'),
(20012, 'https://ror.org/04dew2c51', 'en', 1, 'https://ror.org/04dew2c51 Russian State Hydrometeorological University Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Российский Š³Š¾ŃŃƒŠ“арственный гиГрометеорологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(20013, 'https://ror.org/01mv7kb54', 'no_lang_code', 1, 'https://ror.org/01mv7kb54 Rescon Technologies (United Kingdom)'),
(20014, 'https://ror.org/02kpejc28', 'no_lang_code', 1, 'https://ror.org/02kpejc28 Siemens (Greece)'),
(20015, 'https://ror.org/03ddhqc48', 'no_lang_code', 1, 'https://ror.org/03ddhqc48 Q Sphere (United Kingdom)'),
(20016, 'https://ror.org/01j8j8a87', 'no_lang_code', 1, 'https://ror.org/01j8j8a87 Nanothinx (Greece)'),
(20017, 'https://ror.org/03gq1kz58', 'no_lang_code', 1, 'https://ror.org/03gq1kz58 Research & Diagnostic Antibodies (United States)'),
(20018, 'https://ror.org/04kxxrj13', 'no_lang_code', 1, 'https://ror.org/04kxxrj13 QCMetrix (United States)'),
(20019, 'https://ror.org/00rp9y493', 'en', 1, 'https://ror.org/00rp9y493 Rutherford + Chekene'),
(20020, 'https://ror.org/021gxmd22', 'no_lang_code', 1, 'https://ror.org/021gxmd22 RVJ - Editores (Portugal)'),
(20021, 'https://ror.org/03a8wcj58', 'en', 1, 'https://ror.org/03a8wcj58 Research Circle Associates'),
(20022, 'https://ror.org/04wz8fg60', 'no_lang_code', 1, 'https://ror.org/04wz8fg60 QED Technologies (United States)'),
(20023, 'https://ror.org/02p48rd74', 'no_lang_code', 1, 'https://ror.org/02p48rd74 Research Detectors (United States)'),
(20024, 'https://ror.org/034kn0n30', 'no_lang_code', 1, 'https://ror.org/034kn0n30 Phio Pharmaceuticals (United States)'),
(20025, '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'),
(20026, 'https://ror.org/0235cda14', 'no_lang_code', 1, 'https://ror.org/0235cda14 Qserve Group (Netherlands)'),
(20027, 'https://ror.org/04dj4k716', 'no_lang_code', 1, 'https://ror.org/04dj4k716 S&F Systemtechnik (Germany)'),
(20028, 'https://ror.org/00dcb6288', 'no_lang_code', 1, 'https://ror.org/00dcb6288 ProSensing (United States)'),
(20029, 'https://ror.org/042jnea65', 'en', 1, 'https://ror.org/042jnea65 Institute of Agricultural Economics and Information'),
(20030, 'https://ror.org/037ya9w12', 'hu', 1, 'https://ror.org/037ya9w12 Állattenyésztési és TakarmÔnyozÔsi Kutatóintézet'),
(20031, 'https://ror.org/00c6kkt76', 'no_lang_code', 1, 'https://ror.org/00c6kkt76 PLS Consult (Denmark)'),
(20032, 'https://ror.org/026cgfq41', 'no_lang_code', 1, 'https://ror.org/026cgfq41 Quality Electrodynamics (United States)'),
(20033, 'https://ror.org/01g79at26', 'en', 1, 'https://ror.org/01g79at26 Research Institute for Tropical Medicine'),
(20034, 'https://ror.org/03s2p3287', 'no_lang_code', 1, 'https://ror.org/03s2p3287 Pluservice (Italy)'),
(20035, 'https://ror.org/059vkfm47', 'it', 1, 'https://ror.org/059vkfm47 Agenzia Regionale di SanitĆ  della Toscana'),
(20036, 'https://ror.org/054e03k79', 'no_lang_code', 1, 'https://ror.org/054e03k79 PML Applications (United Kingdom)'),
(20037, 'https://ror.org/04p58r664', 'no_lang_code', 1, 'https://ror.org/04p58r664 Ratos (Sweden)'),
(20038, 'https://ror.org/05rtxtk57', 'en', 1, 'https://ror.org/05rtxtk57 Pocatello High School'),
(20039, 'https://ror.org/01bhb2k54', 'en', 1, 'https://ror.org/01bhb2k54 Quality Meat Scotland'),
(20040, 'https://ror.org/04tqy5b82', 'no_lang_code', 1, 'https://ror.org/04tqy5b82 QuanTech (United States)'),
(20041, 'https://ror.org/03ge13j80', 'no_lang_code', 1, 'https://ror.org/03ge13j80 Analogic (United States)'),
(20042, 'https://ror.org/00n93ay28', 'no_lang_code', 1, 'https://ror.org/00n93ay28 RR Donnelley (United States)'),
(20043, 'https://ror.org/00jtt2n09', 'no_lang_code', 1, 'https://ror.org/00jtt2n09 Poeton Industries (United Kingdom)'),
(20044, 'https://ror.org/03ht5e806', 'en', 1, 'https://ror.org/03ht5e806 Northern Ostrobothnia Hospital District Pohjois-Pohjanmaan Sairaanhoitopiiri'),
(20045, 'https://ror.org/01we5we17', 'no_lang_code', 1, 'https://ror.org/01we5we17 S. B. Barnes Associates (United States)'),
(20046, 'https://ror.org/019v2dz26', 'no_lang_code', 1, 'https://ror.org/019v2dz26 Point L (Bulgaria)'),
(20047, 'https://ror.org/00dd4r039', 'no_lang_code', 1, 'https://ror.org/00dd4r039 Quantemol (United Kingdom)'),
(20048, 'https://ror.org/02mp26y45', 'no_lang_code', 1, 'https://ror.org/02mp26y45 Precical (Belgium)'),
(20049, 'https://ror.org/014hygp17', 'no_lang_code', 1, 'https://ror.org/014hygp17 Vitkovice - Research and Development (Czechia)'),
(20050, 'https://ror.org/0215hrs79', 'no_lang_code', 1, 'https://ror.org/0215hrs79 Plasmaterm (Romania)'),
(20051, 'https://ror.org/01s4hhr68', 'no_lang_code', 1, 'https://ror.org/01s4hhr68 Polar Mobile (Canada)'),
(20052, 'https://ror.org/038h1j843', 'no_lang_code', 1, 'https://ror.org/038h1j843 SGG (Italy)'),
(20053, 'https://ror.org/044zpm314', 'no_lang_code', 1, 'https://ror.org/044zpm314 PolarOnyx (United States)'),
(20054, 'https://ror.org/05n8nz691', 'no_lang_code', 1, 'https://ror.org/05n8nz691 SOLID (Austria)'),
(20055, 'https://ror.org/05rp7bv68', 'no_lang_code', 1, 'https://ror.org/05rp7bv68 Polatis (United Kingdom)'),
(20056, 'https://ror.org/05x1tpn63', 'fr', 1, 'https://ror.org/05x1tpn63 PƓle VƩhicule du Futur'),
(20057, 'https://ror.org/0599s7z02', 'no_lang_code', 1, 'https://ror.org/0599s7z02 QuantLogic (United States)'),
(20058, 'https://ror.org/039rc8x03', 'no_lang_code', 1, 'https://ror.org/039rc8x03 Polgenix (United States)'),
(20059, 'https://ror.org/05wnzmz28', 'no_lang_code', 1, 'https://ror.org/05wnzmz28 S2 Corporation (United States)'),
(20060, 'https://ror.org/05bvt3s14', 'no_lang_code', 1, 'https://ror.org/05bvt3s14 S2 Grupo (Spain)'),
(20061, 'https://ror.org/01af87512', 'en', 1, 'https://ror.org/01af87512 National Policing Improvement Agency'),
(20062, 'https://ror.org/04wkq2s46', 'en', 1, 'https://ror.org/04wkq2s46 Police University College Poliisiammattikorkeakoulu'),
(20063, 'https://ror.org/05jj78523', 'no_lang_code', 1, 'https://ror.org/05jj78523 Polinter (Spain)'),
(20064, 'https://ror.org/03zw9a495', 'no_lang_code', 1, 'https://ror.org/03zw9a495 Quantos (France)'),
(20065, 'https://ror.org/03hbpmj07', 'no_lang_code', 1, 'https://ror.org/03hbpmj07 ResearchWorks (United States)'),
(20066, 'https://ror.org/032bb5546', 'en', 1, 'https://ror.org/032bb5546 Polis'),
(20067, 'https://ror.org/01v8tdd80', 'no_lang_code', 1, 'https://ror.org/01v8tdd80 QuantumBio (United States)'),
(20068, 'https://ror.org/04vva3h08', 'fr', 1, 'https://ror.org/04vva3h08 RĆ©seau Trans-Tech’s'),
(20069, 'https://ror.org/02m4skm46', 'no_lang_code', 1, 'https://ror.org/02m4skm46 National Electric Vehicle Sweden (Sweden)'),
(20070, 'https://ror.org/0408ee822', 'en', 1, 'https://ror.org/0408ee822 Quebec Labrador Foundation'),
(20071, 'https://ror.org/024xqxd02', 'no_lang_code', 1, 'https://ror.org/024xqxd02 RUAG (Sweden)'),
(20072, 'https://ror.org/027pap738', 'no_lang_code', 1, 'https://ror.org/027pap738 Resensys (United States)'),
(20073, 'https://ror.org/00v2w0a04', 'en', 1, 'https://ror.org/00v2w0a04 Polk State College'),
(20074, 'https://ror.org/0106g1z72', 'no_lang_code', 1, 'https://ror.org/0106g1z72 Quercus X-ray Technologies (United States)'),
(20075, 'https://ror.org/03154z139', 'no_lang_code', 1, 'https://ror.org/03154z139 Creation Technologies (United States)'),
(20076, 'https://ror.org/05szy4c49', 'en', 1, 'https://ror.org/05szy4c49 San Diego City College'),
(20077, 'https://ror.org/050bn6e97', 'no_lang_code', 1, 'https://ror.org/050bn6e97 SƤchsische BinnenhƤfen Oberelbe (Germany)'),
(20078, 'https://ror.org/05afmgm93', 'no_lang_code', 1, 'https://ror.org/05afmgm93 Sachtleben Bergbau (Germany)'),
(20079, 'https://ror.org/045e6gk66', 'no_lang_code', 1, 'https://ror.org/045e6gk66 Queues Enforth Development (United States)'),
(20080, 'https://ror.org/00wv4gv48', 'no_lang_code', 1, 'https://ror.org/00wv4gv48 Quick Reaction Corporation (United States)'),
(20081, 'https://ror.org/02fky0856', 'pt', 1, 'https://ror.org/02fky0856 Madeira Tecnopolo'),
(20082, 'https://ror.org/015n5ef16', 'en', 1, 'https://ror.org/015n5ef16 Quinsigamond Community College'),
(20083, 'https://ror.org/04xjm9m94', 'en', 1, 'https://ror.org/04xjm9m94 Swedish National Police Board'),
(20084, 'https://ror.org/02mb9ff20', 'no_lang_code', 1, 'https://ror.org/02mb9ff20 QuSpin (United States)'),
(20085, 'https://ror.org/05q10zf45', 'no_lang_code', 1, 'https://ror.org/05q10zf45 Quviq (Sweden)'),
(20086, 'https://ror.org/05k887p27', 'no_lang_code', 1, 'https://ror.org/05k887p27 R&D Systems (United States)'),
(20087, 'https://ror.org/04qnw1866', 'no_lang_code', 1, 'https://ror.org/04qnw1866 Polycom (Slovenia)'),
(20088, 'https://ror.org/00nb2fk45', 'no_lang_code', 1, 'https://ror.org/00nb2fk45 RiNA (Germany)'),
(20089, 'https://ror.org/058t5ay13', 'no_lang_code', 1, 'https://ror.org/058t5ay13 RGB Medical Devices (Spain)'),
(20090, 'https://ror.org/04kdk6h75', 'no_lang_code', 1, 'https://ror.org/04kdk6h75 Registro Internacional Naval (Portugal)'),
(20091, 'https://ror.org/04cvncw24', 'no_lang_code', 1, 'https://ror.org/04cvncw24 Rinicom (United Kingdom)'),
(20092, 'https://ror.org/044j72x94', 'no_lang_code', 1, 'https://ror.org/044j72x94 PolyGene'),
(20093, 'https://ror.org/019hr5954', 'en', 1, 'https://ror.org/019hr5954 Safe Blood for Africa Foundation'),
(20094, 'https://ror.org/02m9n8819', 'no_lang_code', 1, 'https://ror.org/02m9n8819 Polykemi (Sweden)'),
(20095, 'https://ror.org/044vb6b87', 'no_lang_code', 1, 'https://ror.org/044vb6b87 Polymark (Netherlands)'),
(20096, 'https://ror.org/05j53g380', 'no_lang_code', 1, 'https://ror.org/05j53g380 Innovation Pharmaceuticals (United States)'),
(20097, 'https://ror.org/04m8jeb72', 'no_lang_code', 1, 'https://ror.org/04m8jeb72 Polymem (France)'),
(20098, 'https://ror.org/040ppgc54', 'no_lang_code', 1, 'https://ror.org/040ppgc54 R-Biopharm (Germany)'),
(20099, 'https://ror.org/0077djf60', 'no_lang_code', 1, 'https://ror.org/0077djf60 Landauer (United States)'),
(20100, 'https://ror.org/05ax6jr03', 'no_lang_code', 1, 'https://ror.org/05ax6jr03 Polymer Chemistry Innovations (United States)'),
(20101, 'https://ror.org/05rrwve30', 'no_lang_code', 1, 'https://ror.org/05rrwve30 Ripple (United States)'),
(20102, 'https://ror.org/04q23nr55', 'en', 1, 'https://ror.org/04q23nr55 Safe States Alliance'),
(20103, 'https://ror.org/03pmd4r81', 'no_lang_code', 1, 'https://ror.org/03pmd4r81 R&R Systems (Netherlands)'),
(20104, 'https://ror.org/04mfx2z51', 'no_lang_code', 1, 'https://ror.org/04mfx2z51 Replicon (United States)'),
(20105, 'https://ror.org/0017nar98', 'no_lang_code', 1, 'https://ror.org/0017nar98 Safe Engineering Services & Technologies (Canada)'),
(20106, 'https://ror.org/00kjvy846', 'no_lang_code', 1, 'https://ror.org/00kjvy846 PolyPeptide Group (United States)'),
(20107, 'https://ror.org/02j3x9q40', 'no_lang_code', 1, 'https://ror.org/02j3x9q40 Polyphotonix (United Kingdom)'),
(20108, 'https://ror.org/016xjr028', 'no_lang_code', 1, 'https://ror.org/016xjr028 Rad Data Communications (Israel)'),
(20109, 'https://ror.org/051e4zg07', 'no_lang_code', 1, 'https://ror.org/051e4zg07 Risk Engineering (Bulgaria) Риск инженеринг'),
(20110, 'https://ror.org/03b80zh39', 'en', 1, 'https://ror.org/03b80zh39 Saskatchewan Science Centre'),
(20111, 'https://ror.org/05pa5kt82', 'en', 1, 'https://ror.org/05pa5kt82 Radioactive Waste Repository Authority'),
(20112, 'https://ror.org/03ctf4s64', 'no_lang_code', 1, 'https://ror.org/03ctf4s64 Safoso (Switzerland)'),
(20113, 'https://ror.org/0089sg868', 'no_lang_code', 1, 'https://ror.org/0089sg868 Risk Management Solutions (United Kingdom)'),
(20114, 'https://ror.org/05x3h8029', 'no_lang_code', 1, 'https://ror.org/05x3h8029 Gruppo Trombini (Italy)'),
(20115, 'https://ror.org/02pc02b40', 'no_lang_code', 1, 'https://ror.org/02pc02b40 Saturn Bioponics (United Kingdom)'),
(20116, 'https://ror.org/03ndmx042', 'en', 1, 'https://ror.org/03ndmx042 Riverside County Department of Environmental Health'),
(20117, 'https://ror.org/02vj2b283', 'en', 1, 'https://ror.org/02vj2b283 Setting Priorities for Retirement Years Foundation'),
(20118, 'https://ror.org/02xtrpd94', 'no_lang_code', 1, 'https://ror.org/02xtrpd94 Seureco (France)'),
(20119, 'https://ror.org/0577sef82', 'en', 1, 'https://ror.org/0577sef82 Severtsov Institute of Ecology and Evolution Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø ŃŠ²Š¾Š»ŃŽŃ†ŠøŠø им.А.Š. Деверцова Российской акаГемии наук'),
(20120, 'https://ror.org/02f73m916', 'no_lang_code', 1, 'https://ror.org/02f73m916 Sauf Consulting'),
(20121, 'https://ror.org/00n7jqz22', 'no_lang_code', 1, 'https://ror.org/00n7jqz22 Sagentia (United Kingdom)'),
(20122, 'https://ror.org/02k1p7q76', 'no_lang_code', 1, 'https://ror.org/02k1p7q76 RJ Lee Group (United States)'),
(20123, 'https://ror.org/01k7x2c64', 'en', 1, 'https://ror.org/01k7x2c64 Riverside County Superior Court'),
(20124, 'https://ror.org/009jr9909', 'no_lang_code', 1, 'https://ror.org/009jr9909 Sagivtech (Israel)'),
(20125, 'https://ror.org/04rb4x926', 'no_lang_code', 1, 'https://ror.org/04rb4x926 ShapeSpace (United Kingdom)'),
(20126, 'https://ror.org/03984t928', 'en', 1, 'https://ror.org/03984t928 Science Health Allied Research Education'),
(20127, 'https://ror.org/0289zbq28', 'en', 1, 'https://ror.org/0289zbq28 Shasta County Chemical People'),
(20128, 'https://ror.org/02x2yhv10', 'en', 1, 'https://ror.org/02x2yhv10 Shawnee Health Service and Development Corporation');
INSERT INTO `rors` VALUES
(20129, 'https://ror.org/01v3kn215', 'en', 1, 'https://ror.org/01v3kn215 Shawnee Mission Northwest High School'),
(20130, 'https://ror.org/0027kz691', 'no_lang_code', 1, 'https://ror.org/0027kz691 Sbs Byfornyelse'),
(20131, 'https://ror.org/02wfc0z28', 'en', 1, 'https://ror.org/02wfc0z28 Shawnee Mission South High School'),
(20132, 'https://ror.org/02pj05f64', 'no_lang_code', 1, 'https://ror.org/02pj05f64 Etegent Technologies (United States)'),
(20133, 'https://ror.org/04dthhc71', 'no_lang_code', 1, 'https://ror.org/04dthhc71 RODAX Impex (Romania)'),
(20134, 'https://ror.org/00p9b8g15', 'no_lang_code', 1, 'https://ror.org/00p9b8g15 Shellcase (Israel)'),
(20135, 'https://ror.org/01t2ccy50', 'en', 1, 'https://ror.org/01t2ccy50 Shellfish Association of Great Britain'),
(20136, 'https://ror.org/04eqf8242', 'no_lang_code', 1, 'https://ror.org/04eqf8242 SKF (France)'),
(20137, 'https://ror.org/038q56410', 'fr', 1, 'https://ror.org/038q56410 Société de Protection des Forêts contre les Insectes et Maladies'),
(20138, 'https://ror.org/056cpmr59', 'no_lang_code', 1, 'https://ror.org/056cpmr59 Aluminium Refining, Degassing and Filtering (Canada)'),
(20139, 'https://ror.org/04pf4cg46', 'no_lang_code', 1, 'https://ror.org/04pf4cg46 Speech Processing Solutions (United States)'),
(20140, 'https://ror.org/04ch7mp32', 'no_lang_code', 1, 'https://ror.org/04ch7mp32 PY Automation (France)'),
(20141, 'https://ror.org/01awd1q38', 'en', 1, 'https://ror.org/01awd1q38 Saint Martin''s University'),
(20142, 'https://ror.org/02k87s158', 'no_lang_code', 1, 'https://ror.org/02k87s158 Sherbrooke Innopole (Canada)'),
(20143, 'https://ror.org/03zxhtw58', 'no_lang_code', 1, 'https://ror.org/03zxhtw58 Manufacture d''Orgues Muhleisen (France)'),
(20144, 'https://ror.org/05sr81t86', 'no_lang_code', 1, 'https://ror.org/05sr81t86 Scan Messtechnik (Austria)'),
(20145, 'https://ror.org/004k51631', 'en', 1, 'https://ror.org/004k51631 Sheridan College'),
(20146, 'https://ror.org/02gs7pb27', 'no_lang_code', 1, 'https://ror.org/02gs7pb27 ScanArc Plasma Technologies (Sweden)'),
(20147, 'https://ror.org/05x1e2z17', 'no_lang_code', 1, 'https://ror.org/05x1e2z17 Sherwood Scientific (United Kingdom)'),
(20148, 'https://ror.org/041h8y823', 'en', 1, 'https://ror.org/041h8y823 Ecomuseum Zoo Zoo Ecomuseum'),
(20149, 'https://ror.org/020ek1893', 'no_lang_code', 1, 'https://ror.org/020ek1893 Salsnes Filter (Norway)'),
(20150, 'https://ror.org/02ahe3232', 'en', 1, 'https://ror.org/02ahe3232 European Society of Cardiology'),
(20151, 'https://ror.org/01ry2m115', 'no_lang_code', 1, 'https://ror.org/01ry2m115 Samaritan Pharmaceuticals (United States)'),
(20152, 'https://ror.org/01jmxjw73', 'no_lang_code', 1, 'https://ror.org/01jmxjw73 Cabot Microelectronics (United States)'),
(20153, 'https://ror.org/012v8ks77', 'en', 1, 'https://ror.org/012v8ks77 San Luis Obispo County Drug and Alcohol Services'),
(20154, 'https://ror.org/00e6d8m49', 'no_lang_code', 1, 'https://ror.org/00e6d8m49 Scanimetrics (Canada)'),
(20155, 'https://ror.org/03ybzg790', 'en', 1, 'https://ror.org/03ybzg790 Shoreline Community College'),
(20156, 'https://ror.org/025xt6a66', 'no_lang_code', 1, 'https://ror.org/025xt6a66 Samo (Italy)'),
(20157, 'https://ror.org/0567d0m75', 'en', 1, 'https://ror.org/0567d0m75 Shropshire Council'),
(20158, 'https://ror.org/02phxrh78', 'no_lang_code', 1, 'https://ror.org/02phxrh78 Samputensili (Italy)'),
(20159, 'https://ror.org/01kz0v978', 'no_lang_code', 1, 'https://ror.org/01kz0v978 eBaltics (Latvia)'),
(20160, 'https://ror.org/0557nfa06', 'no_lang_code', 1, 'https://ror.org/0557nfa06 SociĆ©tĆ© Tunisienne de l''ElectricitĆ© et du Gaz (Tunisia) Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„ŲŖŁˆŁ†Ų³ŁŠŲ© Ł„Ł„ŁƒŁ‡Ų±ŲØŲ§Ų” و الغاز'),
(20161, 'https://ror.org/04e5ccf06', 'en', 1, 'https://ror.org/04e5ccf06 Society for Muscle Biology'),
(20162, 'https://ror.org/05r7x7136', 'en', 1, 'https://ror.org/05r7x7136 Society for Mathematical Psychology'),
(20163, 'https://ror.org/008kv0w14', 'en', 1, 'https://ror.org/008kv0w14 Siberian Center for Environmental Research and Training Дибирский центр климато-ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований Šø Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(20164, 'https://ror.org/04dkzbv90', 'en', 1, 'https://ror.org/04dkzbv90 Society for Personality and Social Psychology'),
(20165, 'https://ror.org/05hjs5k87', 'no_lang_code', 1, 'https://ror.org/05hjs5k87 Sick (Germany)'),
(20166, 'https://ror.org/00v7w6310', 'no_lang_code', 1, 'https://ror.org/00v7w6310 Questel (France)'),
(20167, 'https://ror.org/022j77113', 'en', 1, 'https://ror.org/022j77113 San Juan County Partnership'),
(20168, 'https://ror.org/05b724e43', 'en', 1, 'https://ror.org/05b724e43 Society of Behavioral Medicine'),
(20169, 'https://ror.org/00nsta845', 'no_lang_code', 1, 'https://ror.org/00nsta845 Sico Technology (Austria)'),
(20170, 'https://ror.org/052yb5x42', 'en', 1, 'https://ror.org/052yb5x42 San Luis Obispo County Mental Health Services'),
(20171, 'https://ror.org/0049xjz07', 'en', 1, 'https://ror.org/0049xjz07 San Luis Obispo County Public Health Department'),
(20172, 'https://ror.org/0348e5q84', 'en', 1, 'https://ror.org/0348e5q84 Society of Indian Automobile Manufacturers'),
(20173, 'https://ror.org/04cw56e87', 'no_lang_code', 1, 'https://ror.org/04cw56e87 Sidasa Engineering (Spain)'),
(20174, 'https://ror.org/02k5gcb44', 'en', 1, 'https://ror.org/02k5gcb44 Society of Nuclear Medicine and Molecular Imaging'),
(20175, 'https://ror.org/032tne230', 'en', 1, 'https://ror.org/032tne230 Society of Wetland Scientists'),
(20176, 'https://ror.org/027pq2t86', 'no_lang_code', 1, 'https://ror.org/027pq2t86 Sidac (Italy)'),
(20177, 'https://ror.org/02qfb0f37', 'en', 1, 'https://ror.org/02qfb0f37 San Mateo County Human Services'),
(20178, 'https://ror.org/023kh3y84', 'no_lang_code', 1, 'https://ror.org/023kh3y84 Sidekick Studios (United Kingdom)'),
(20179, 'https://ror.org/053x7m526', 'no_lang_code', 1, 'https://ror.org/053x7m526 Renewable Energy Corporation (Norway)'),
(20180, 'https://ror.org/00ypzqf67', 'en', 1, 'https://ror.org/00ypzqf67 Sanexen Environmental Services'),
(20181, 'https://ror.org/037xpb040', 'en', 1, 'https://ror.org/037xpb040 Sanford Medical Center'),
(20182, 'https://ror.org/03zrqq643', 'en', 1, 'https://ror.org/03zrqq643 Santa Barbara County Public Health Department'),
(20183, 'https://ror.org/0095wd727', 'no_lang_code', 1, 'https://ror.org/0095wd727 Robbe (France)'),
(20184, 'https://ror.org/011y4d392', 'en', 1, 'https://ror.org/011y4d392 Superior Court of California'),
(20185, 'https://ror.org/04wwnad27', 'en', 1, 'https://ror.org/04wwnad27 Santa Fe Indian School'),
(20186, 'https://ror.org/03njhn887', 'en', 1, 'https://ror.org/03njhn887 Society of Wood Science and Technology'),
(20187, 'https://ror.org/01dxdky35', 'en', 1, 'https://ror.org/01dxdky35 Sidwell Friends School'),
(20188, 'https://ror.org/00hth7971', 'en', 1, 'https://ror.org/00hth7971 Danish Maritime Authority'),
(20189, 'https://ror.org/03sb6zx08', 'no_lang_code', 1, 'https://ror.org/03sb6zx08 Scanwel (United Kingdom)'),
(20190, 'https://ror.org/019r04q09', 'no_lang_code', 1, 'https://ror.org/019r04q09 SOLIDpower (Italy)'),
(20191, 'https://ror.org/0281w2821', 'no_lang_code', 1, 'https://ror.org/0281w2821 Sofie Biosciences (United States)'),
(20192, 'https://ror.org/03bjqrv17', 'no_lang_code', 1, 'https://ror.org/03bjqrv17 SeaOwl Technology Solutions (France)'),
(20193, 'https://ror.org/036j17m86', 'no_lang_code', 1, 'https://ror.org/036j17m86 Soft dB (Canada)'),
(20194, 'https://ror.org/03v7qgt03', 'no_lang_code', 1, 'https://ror.org/03v7qgt03 Siemens (Sweden)'),
(20195, 'https://ror.org/03m033p80', 'no_lang_code', 1, 'https://ror.org/03m033p80 Sappi (Netherlands)'),
(20196, 'https://ror.org/01z1mg159', 'no_lang_code', 1, 'https://ror.org/01z1mg159 Schafer-N (Denmark)'),
(20197, 'https://ror.org/02mt4w922', 'no_lang_code', 1, 'https://ror.org/02mt4w922 Siemens (Netherlands)'),
(20198, 'https://ror.org/02vbc1t40', 'no_lang_code', 1, 'https://ror.org/02vbc1t40 Softing (Germany)'),
(20199, 'https://ror.org/04pyajs57', 'no_lang_code', 1, 'https://ror.org/04pyajs57 Inspecta (Sweden)'),
(20200, 'https://ror.org/02vcffh37', 'en', 1, 'https://ror.org/02vcffh37 Sarah Bush Lincoln Health System'),
(20201, 'https://ror.org/003jrsn97', 'no_lang_code', 1, 'https://ror.org/003jrsn97 Software AG (Italy)'),
(20202, 'https://ror.org/03qn4hk51', 'no_lang_code', 1, 'https://ror.org/03qn4hk51 Xilinx (Canada)'),
(20203, 'https://ror.org/01w8n3n62', 'no_lang_code', 1, 'https://ror.org/01w8n3n62 Schneider Electric (Germany)'),
(20204, 'https://ror.org/00racmn62', 'no_lang_code', 1, 'https://ror.org/00racmn62 Schneider Electric (United Kingdom)'),
(20205, 'https://ror.org/055a3gx21', 'no_lang_code', 1, 'https://ror.org/055a3gx21 Schoenfabriek Wed. J.P. van Bommel (Netherlands)'),
(20206, 'https://ror.org/0405vqf70', 'no_lang_code', 1, 'https://ror.org/0405vqf70 Scholastic Corporation (United States)'),
(20207, 'https://ror.org/02em67c34', 'no_lang_code', 1, 'https://ror.org/02em67c34 Siet (Italy)'),
(20208, 'https://ror.org/0509k2n94', 'en', 1, 'https://ror.org/0509k2n94 Society for Research on Biological Rhythms'),
(20209, 'https://ror.org/04pdbrh74', 'no_lang_code', 1, 'https://ror.org/04pdbrh74 Sievi (Finland)'),
(20210, 'https://ror.org/05mcefa73', 'no_lang_code', 1, 'https://ror.org/05mcefa73 Sifam Tinsley (United Kingdom)'),
(20211, 'https://ror.org/031km1t38', 'no_lang_code', 1, 'https://ror.org/031km1t38 Software for Critical Systems (Spain)'),
(20212, 'https://ror.org/040v4pr09', 'no_lang_code', 1, 'https://ror.org/040v4pr09 RSK Assessments (United States)'),
(20213, 'https://ror.org/004b3k735', 'no_lang_code', 1, 'https://ror.org/004b3k735 Sigma Engineering (Germany)'),
(20214, 'https://ror.org/00mehg084', 'no_lang_code', 1, 'https://ror.org/00mehg084 Spectris (United States)'),
(20215, 'https://ror.org/01h8pq181', 'no_lang_code', 1, 'https://ror.org/01h8pq181 Ailleron (Poland)'),
(20216, 'https://ror.org/01phrhn87', 'no_lang_code', 1, 'https://ror.org/01phrhn87 Acobiom (France)'),
(20217, 'https://ror.org/05czwfr97', 'no_lang_code', 1, 'https://ror.org/05czwfr97 Innovalia (Spain)'),
(20218, 'https://ror.org/013r61763', 'no_lang_code', 1, 'https://ror.org/013r61763 SignaBlok (United States)'),
(20219, 'https://ror.org/043753e82', 'no_lang_code', 1, 'https://ror.org/043753e82 Sarmap (Switzerland)'),
(20220, 'https://ror.org/054446c79', 'no_lang_code', 1, 'https://ror.org/054446c79 SAS Institute (United Kingdom)'),
(20221, 'https://ror.org/01fnv4f45', 'no_lang_code', 1, 'https://ror.org/01fnv4f45 Sogesca (Italy)'),
(20222, 'https://ror.org/00axnmm79', 'no_lang_code', 1, 'https://ror.org/00axnmm79 Signo Motus (Italy)'),
(20223, 'https://ror.org/05rye6v40', 'en', 1, 'https://ror.org/05rye6v40 Saskatchewan Conservation Learning Centre'),
(20224, 'https://ror.org/04cqvxz08', 'no_lang_code', 1, 'https://ror.org/04cqvxz08 Signum Computer (Germany)'),
(20225, 'https://ror.org/01pjkhn78', 'en', 1, 'https://ror.org/01pjkhn78 School District of Palm Beach County'),
(20226, 'https://ror.org/0282d8z17', 'no_lang_code', 1, 'https://ror.org/0282d8z17 Coesia (Italy)'),
(20227, 'https://ror.org/04qkww785', 'en', 1, 'https://ror.org/04qkww785 Saskatchewan Environment Industry and Managers Association'),
(20228, 'https://ror.org/034pxmg95', 'no_lang_code', 1, 'https://ror.org/034pxmg95 Silanis Technology (Canada)'),
(20229, 'https://ror.org/01zgv1x24', 'en', 1, 'https://ror.org/01zgv1x24 Portland Public Schools'),
(20230, 'https://ror.org/0483w8753', 'no_lang_code', 1, 'https://ror.org/0483w8753 Silex Microsystems (Sweden)'),
(20231, 'https://ror.org/029gksr15', 'no_lang_code', 1, 'https://ror.org/029gksr15 SilicoLife (Portugal)'),
(20232, 'https://ror.org/02t51xq98', 'no_lang_code', 1, 'https://ror.org/02t51xq98 SoilVision Systems (Canada)'),
(20233, 'https://ror.org/05qdfs727', 'no_lang_code', 1, 'https://ror.org/05qdfs727 Silicon Audio (United States)'),
(20234, 'https://ror.org/02st14b97', 'no_lang_code', 1, 'https://ror.org/02st14b97 SokolovskĆ” UhelnĆ” (Czechia)'),
(20235, 'https://ror.org/019af7775', 'en', 1, 'https://ror.org/019af7775 St. Joseph Youth Alliance'),
(20236, 'https://ror.org/0394e4913', 'no_lang_code', 1, 'https://ror.org/0394e4913 Silicon Radar (Germany)'),
(20237, 'https://ror.org/0565tfh19', 'no_lang_code', 1, 'https://ror.org/0565tfh19 Sol-Gel Solutions (United States)'),
(20238, 'https://ror.org/02nz79p21', 'no_lang_code', 1, 'https://ror.org/02nz79p21 Solagro'),
(20239, 'https://ror.org/03x4dqr80', 'no_lang_code', 1, 'https://ror.org/03x4dqr80 SiliCycle (Canada)'),
(20240, 'https://ror.org/0260zag83', 'en', 1, 'https://ror.org/0260zag83 St. Lawrence College'),
(20241, 'https://ror.org/01zy04g55', 'no_lang_code', 1, 'https://ror.org/01zy04g55 Silios Technologies (France)'),
(20242, 'https://ror.org/02fz88323', 'no_lang_code', 1, 'https://ror.org/02fz88323 SP Group (Denmark)'),
(20243, 'https://ror.org/00qj1mf81', 'no_lang_code', 1, 'https://ror.org/00qj1mf81 Schulman, Ronca & Bucuvalas'),
(20244, 'https://ror.org/0261fx274', 'no_lang_code', 1, 'https://ror.org/0261fx274 Schüßler-Plan (Germany)'),
(20245, 'https://ror.org/003g85c66', 'en', 1, 'https://ror.org/003g85c66 Silver Buffalo Consulting'),
(20246, 'https://ror.org/059r07p39', 'no_lang_code', 1, 'https://ror.org/059r07p39 Silver Lake Research (United States)'),
(20247, 'https://ror.org/03s7e5303', 'no_lang_code', 1, 'https://ror.org/03s7e5303 SGF International (Germany)'),
(20248, 'https://ror.org/02qdw7f92', 'no_lang_code', 1, 'https://ror.org/02qdw7f92 Solari (Italy)'),
(20249, 'https://ror.org/05f57qd45', 'no_lang_code', 1, 'https://ror.org/05f57qd45 Simbiente (Portugal)'),
(20250, 'https://ror.org/0497ykj02', 'no_lang_code', 1, 'https://ror.org/0497ykj02 Simcon kunststofftechnische Software (Germany)'),
(20251, 'https://ror.org/05k35b119', 'de', 1, 'https://ror.org/05k35b119 Staatliches Museum für Naturkunde Stuttgart State Museum of Natural History Stuttgart'),
(20252, 'https://ror.org/04fyd6s73', 'no_lang_code', 1, 'https://ror.org/04fyd6s73 Fiat Chrysler Automobiles (France)'),
(20253, 'https://ror.org/02j65kc59', 'no_lang_code', 1, 'https://ror.org/02j65kc59 Simcyp (United Kingdom)'),
(20254, 'https://ror.org/00vnvj755', 'no_lang_code', 1, 'https://ror.org/00vnvj755 Simmetrix (United States)'),
(20255, 'https://ror.org/04d9b4k91', 'no_lang_code', 1, 'https://ror.org/04d9b4k91 Sciarra Laboratories'),
(20256, 'https://ror.org/01w21ky57', 'no_lang_code', 1, 'https://ror.org/01w21ky57 SiMPore (United States)'),
(20257, 'https://ror.org/00fkes842', 'no_lang_code', 1, 'https://ror.org/00fkes842 Solarplan (Denmark)'),
(20258, 'https://ror.org/02akgnc95', 'no_lang_code', 1, 'https://ror.org/02akgnc95 Solems (France)'),
(20259, 'https://ror.org/03f4xfe90', 'no_lang_code', 1, 'https://ror.org/03f4xfe90 Simulation Solutions (United Kingdom)'),
(20260, 'https://ror.org/03c4na604', 'no_lang_code', 1, 'https://ror.org/03c4na604 Soliani Emc (Italy)'),
(20261, 'https://ror.org/031gdw727', 'no_lang_code', 1, 'https://ror.org/031gdw727 SimulConsult'),
(20262, 'https://ror.org/03pmvds50', 'en', 1, 'https://ror.org/03pmvds50 MindFuel'),
(20263, 'https://ror.org/0580hfn92', 'no_lang_code', 1, 'https://ror.org/0580hfn92 Solidica (United States)'),
(20264, 'https://ror.org/02rpp4n56', 'en', 1, 'https://ror.org/02rpp4n56 Science and Technology Interactive Center'),
(20265, 'https://ror.org/019b9yp12', 'en', 1, 'https://ror.org/019b9yp12 SINE-Institut Sine Institute Süddeutsches Institut für Empirische Sozialforschung'),
(20266, 'https://ror.org/00kdf6750', 'no_lang_code', 1, 'https://ror.org/00kdf6750 Solidus Biosciences (United States)'),
(20267, 'https://ror.org/01sg12c31', 'no_lang_code', 1, 'https://ror.org/01sg12c31 Stabilitech BioPharma (United Kingdom)'),
(20268, 'https://ror.org/01qpqce32', 'en', 1, 'https://ror.org/01qpqce32 Connecticut Science Center'),
(20269, 'https://ror.org/01kavk215', 'no_lang_code', 1, 'https://ror.org/01kavk215 Sineurop Nanotech (Germany)'),
(20270, 'https://ror.org/02esyae02', 'en', 1, 'https://ror.org/02esyae02 Science Fair Foundation of BC'),
(20271, 'https://ror.org/04ns7jw88', 'no_lang_code', 1, 'https://ror.org/04ns7jw88 Solo Kleinmotoren (Germany)'),
(20272, 'https://ror.org/00wwfjc16', 'no_lang_code', 1, 'https://ror.org/00wwfjc16 Singleton Birch (United Kingdom)'),
(20273, 'https://ror.org/04bdwem21', 'no_lang_code', 1, 'https://ror.org/04bdwem21 Energieversorgungs und Verkehrsgesellschaft Aachen (Germany)'),
(20274, 'https://ror.org/05ay71920', 'no_lang_code', 1, 'https://ror.org/05ay71920 Solpros (Finland)'),
(20275, 'https://ror.org/0476nv437', 'no_lang_code', 1, 'https://ror.org/0476nv437 Sinhatech (United States)'),
(20276, 'https://ror.org/0562efv25', 'de', 1, 'https://ror.org/0562efv25 Stadtwerke Bad Urach (Germany)'),
(20277, 'https://ror.org/04qrbj889', 'no_lang_code', 1, 'https://ror.org/04qrbj889 Stadtwerke Bochum (Germany)'),
(20278, 'https://ror.org/01baz4g36', 'no_lang_code', 1, 'https://ror.org/01baz4g36 Gfi Informatique (France)'),
(20279, 'https://ror.org/0023x8n30', 'no_lang_code', 1, 'https://ror.org/0023x8n30 Science Wares (United States)'),
(20280, 'https://ror.org/0489rhw98', 'no_lang_code', 1, 'https://ror.org/0489rhw98 Sintec (Italy)'),
(20281, 'https://ror.org/04q1p4j28', 'no_lang_code', 1, 'https://ror.org/04q1p4j28 Solvo Biotechnology (Hungary)'),
(20282, 'https://ror.org/00yvkcc48', 'no_lang_code', 1, 'https://ror.org/00yvkcc48 SomaLogic (United States)'),
(20283, 'https://ror.org/02na5hw74', 'no_lang_code', 1, 'https://ror.org/02na5hw74 Sciences Computers Consultants (France)'),
(20284, 'https://ror.org/02cyaf297', 'no_lang_code', 1, 'https://ror.org/02cyaf297 Sonic Concepts (United States)'),
(20285, 'https://ror.org/01dh1ha31', 'no_lang_code', 1, 'https://ror.org/01dh1ha31 Stan''s Cafe (United Kingdom)'),
(20286, 'https://ror.org/027a72a41', 'no_lang_code', 1, 'https://ror.org/027a72a41 Sioux Manufacturing (United States)'),
(20287, 'https://ror.org/03ckrc057', 'no_lang_code', 1, 'https://ror.org/03ckrc057 Norsk Hydro (Sweden)'),
(20288, 'https://ror.org/02qjcp783', 'en', 1, 'https://ror.org/02qjcp783 Services, Industrial, Professional and Technical Union'),
(20289, 'https://ror.org/02123w421', 'no_lang_code', 1, 'https://ror.org/02123w421 Sir Robert McAlpine (United Kingdom)'),
(20290, 'https://ror.org/008g13a47', 'ms', 1, 'https://ror.org/008g13a47 Sirim Berhad'),
(20291, 'https://ror.org/04wrajv07', 'no_lang_code', 1, 'https://ror.org/04wrajv07 Sirius Thinking (United States)'),
(20292, 'https://ror.org/050znhp97', 'no_lang_code', 1, 'https://ror.org/050znhp97 Sirtres (Italy)'),
(20293, 'https://ror.org/025tsch51', 'no_lang_code', 1, 'https://ror.org/025tsch51 Scientific Computing & Modelling (Netherlands)'),
(20294, 'https://ror.org/03wgc9z97', 'en', 1, 'https://ror.org/03wgc9z97 Stanley Park Ecology Society'),
(20295, 'https://ror.org/050m55h61', 'no_lang_code', 1, 'https://ror.org/050m55h61 Stansted Fluid Power (United Kingdom)'),
(20296, 'https://ror.org/01vp66713', 'es', 1, 'https://ror.org/01vp66713 Sistemas Expertos'),
(20297, 'https://ror.org/04r5d4283', 'no_lang_code', 1, 'https://ror.org/04r5d4283 Starfire Industries (United States)'),
(20298, 'https://ror.org/04vvfch80', 'es', 1, 'https://ror.org/04vvfch80 Sistemas Genómicos'),
(20299, 'https://ror.org/018xv9w84', 'no_lang_code', 1, 'https://ror.org/018xv9w84 Starpharma (Australia)'),
(20300, 'https://ror.org/01w0d2z22', 'no_lang_code', 1, 'https://ror.org/01w0d2z22 Sonnenkraft (Austria)'),
(20301, 'https://ror.org/021q7b987', 'no_lang_code', 1, 'https://ror.org/021q7b987 Tadiran Batteries (Germany)'),
(20302, 'https://ror.org/05vwr6v04', 'no_lang_code', 1, 'https://ror.org/05vwr6v04 Sistemas Y Redes Telematicas (Spain)'),
(20303, 'https://ror.org/055agmx53', 'en', 1, 'https://ror.org/055agmx53 Michigan Department of Education'),
(20304, 'https://ror.org/02y535c02', 'en', 1, 'https://ror.org/02y535c02 State College of Florida Manatee-Sarasota'),
(20305, 'https://ror.org/0102bpa71', 'no_lang_code', 1, 'https://ror.org/0102bpa71 Sisteplant (Spain)'),
(20306, 'https://ror.org/02t8vgv97', 'no_lang_code', 1, 'https://ror.org/02t8vgv97 Sony (Sweden)'),
(20307, 'https://ror.org/01hftn006', 'no_lang_code', 1, 'https://ror.org/01hftn006 Scientific Software International (United States)'),
(20308, 'https://ror.org/00z72df47', 'no_lang_code', 1, 'https://ror.org/00z72df47 Scientifica (United Kingdom)'),
(20309, 'https://ror.org/044ht0n88', 'en', 1, 'https://ror.org/044ht0n88 State Hydrological Institute Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ гиГрологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(20310, 'https://ror.org/0594b8154', 'no_lang_code', 1, 'https://ror.org/0594b8154 SiteOne Therapeutics (United States)'),
(20311, 'https://ror.org/01mhfg188', 'en', 1, 'https://ror.org/01mhfg188 Public Health Authority of the Slovak Republic'),
(20312, 'https://ror.org/023r30q21', 'no_lang_code', 1, 'https://ror.org/023r30q21 Sitex 45 (Romania)'),
(20313, 'https://ror.org/05h017e13', 'no_lang_code', 1, 'https://ror.org/05h017e13 Sciperio (United States)'),
(20314, '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'),
(20315, 'https://ror.org/0302zgk11', 'en', 1, 'https://ror.org/0302zgk11 Zubov State Oceanographic Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ океанографический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š.Š.Š—ŃƒŠ±Š¾Š²Š°'),
(20316, 'https://ror.org/02bt72x97', 'no_lang_code', 1, 'https://ror.org/02bt72x97 Sciprom (Switzerland)'),
(20317, 'https://ror.org/01d8h9b46', 'en', 1, 'https://ror.org/01d8h9b46 Voyager Sopris Learning'),
(20318, 'https://ror.org/05nrv0z71', 'no_lang_code', 1, 'https://ror.org/05nrv0z71 Sorain Cecchini Tecno (Italy)'),
(20319, 'https://ror.org/037bs9x45', 'no_lang_code', 1, 'https://ror.org/037bs9x45 Sivers IMA (Sweden)'),
(20320, 'https://ror.org/05sxd8019', 'en', 1, 'https://ror.org/05sxd8019 Six County Association of Governments'),
(20321, 'https://ror.org/01cwv3a06', 'no_lang_code', 1, 'https://ror.org/01cwv3a06 Sixteen Films (United Kingdom)'),
(20322, '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'),
(20323, 'https://ror.org/018dcz204', 'en', 1, 'https://ror.org/018dcz204 Scope'),
(20324, 'https://ror.org/025rxqy43', 'da', 1, 'https://ror.org/025rxqy43 Danish National Archives Statens Arkivers'),
(20325, 'https://ror.org/00jc5t317', 'no_lang_code', 1, 'https://ror.org/00jc5t317 SKA Polska (Poland)'),
(20326, 'https://ror.org/01s5zad14', 'no_lang_code', 1, 'https://ror.org/01s5zad14 Skanska (Sweden)'),
(20327, 'https://ror.org/056bwcz71', 'en', 1, 'https://ror.org/056bwcz71 Scottish Funding Council'),
(20328, 'https://ror.org/04rtr9n62', 'en', 1, 'https://ror.org/04rtr9n62 Scottish Qualifications Authority'),
(20329, 'https://ror.org/02rgx8605', 'en', 1, 'https://ror.org/02rgx8605 Scottsdale Community College'),
(20330, 'https://ror.org/01mk0yp55', 'en', 1, 'https://ror.org/01mk0yp55 Soul City Institute for Health & Development Communication'),
(20331, 'https://ror.org/04jzb8h35', 'no_lang_code', 1, 'https://ror.org/04jzb8h35 Sound&Fury'),
(20332, 'https://ror.org/042c61z58', 'no_lang_code', 1, 'https://ror.org/042c61z58 SimuTech Group (United States)'),
(20333, 'https://ror.org/01jg4cx18', 'no_lang_code', 1, 'https://ror.org/01jg4cx18 Statiflo International (United Kingdom)'),
(20334, 'https://ror.org/02tp9ep96', 'en', 1, 'https://ror.org/02tp9ep96 Statistical Office of the Republic of Slovenia'),
(20335, 'https://ror.org/00sfq3g82', 'it', 1, 'https://ror.org/00sfq3g82 Sinform'),
(20336, 'https://ror.org/03q1mhb89', 'no_lang_code', 1, 'https://ror.org/03q1mhb89 Scour Prevention Systems (United Kingdom)'),
(20337, 'https://ror.org/03kswc577', 'no_lang_code', 1, 'https://ror.org/03kswc577 Statistics Collaborative'),
(20338, 'https://ror.org/000f7jy90', 'en', 1, 'https://ror.org/000f7jy90 Danmarks Statistik Statistics Denmark'),
(20339, 'https://ror.org/047dz7p79', 'fr', 1, 'https://ror.org/047dz7p79 OcƩanopolis'),
(20340, 'https://ror.org/05ccyg372', 'en', 1, 'https://ror.org/05ccyg372 National Institute for Nuclear, Chemical and Biological Protection'),
(20341, 'https://ror.org/019ryn279', 'en', 1, 'https://ror.org/019ryn279 State and University Library'),
(20342, 'https://ror.org/0475dfc79', 'no_lang_code', 1, 'https://ror.org/0475dfc79 Stavanger Installasjon (Norway)'),
(20343, 'https://ror.org/02r6y1x03', 'no_lang_code', 1, 'https://ror.org/02r6y1x03 STC Group (Netherlands)'),
(20344, 'https://ror.org/046w1bq45', 'en', 1, 'https://ror.org/046w1bq45 SkellefteƄ Municipality'),
(20345, 'https://ror.org/04t8nza80', 'no_lang_code', 1, 'https://ror.org/04t8nza80 MathWorks (United Kingdom)'),
(20346, 'https://ror.org/01mkrzp48', 'no_lang_code', 1, 'https://ror.org/01mkrzp48 SKF (Germany)'),
(20347, 'https://ror.org/048g63s89', 'no_lang_code', 1, 'https://ror.org/048g63s89 Soundprint Media Center'),
(20348, 'https://ror.org/03rnv3v52', 'no_lang_code', 1, 'https://ror.org/03rnv3v52 Source BioScience (United Kingdom)'),
(20349, 'https://ror.org/004qdne14', 'no_lang_code', 1, 'https://ror.org/004qdne14 Source Production & Equipment Company (United States)'),
(20350, 'https://ror.org/0148chp23', 'no_lang_code', 1, 'https://ror.org/0148chp23 Cortech Solutions (United States)'),
(20351, 'https://ror.org/04nxy6d06', 'no_lang_code', 1, 'https://ror.org/04nxy6d06 Stelar (Italy)'),
(20352, 'https://ror.org/01qw5dj60', 'no_lang_code', 1, 'https://ror.org/01qw5dj60 Stellar Biotechnologies (United States)'),
(20353, 'https://ror.org/046k0vn34', 'no_lang_code', 1, 'https://ror.org/046k0vn34 SKF (United Kingdom)'),
(20354, 'https://ror.org/03paspt34', 'no_lang_code', 1, 'https://ror.org/03paspt34 Microlime (Portugal)'),
(20355, 'https://ror.org/01pakje56', 'no_lang_code', 1, 'https://ror.org/01pakje56 Stellarray (United States)'),
(20356, 'https://ror.org/01cxaar63', 'no_lang_code', 1, 'https://ror.org/01cxaar63 Skunkwerks Software (Canada)'),
(20357, 'https://ror.org/02b50et21', 'no_lang_code', 1, 'https://ror.org/02b50et21 Souriau (France)'),
(20358, 'https://ror.org/0393pnh14', 'en', 1, 'https://ror.org/0393pnh14 Skyline High School'),
(20359, 'https://ror.org/05f560223', 'no_lang_code', 1, 'https://ror.org/05f560223 Skymark (United Kingdom)'),
(20360, 'https://ror.org/049cnc419', 'no_lang_code', 1, 'https://ror.org/049cnc419 Stemina Biomarker Discovery (United States)'),
(20361, 'https://ror.org/024mfhp94', 'no_lang_code', 1, 'https://ror.org/024mfhp94 Scytl (Spain)'),
(20362, 'https://ror.org/0280gjv27', 'no_lang_code', 1, 'https://ror.org/0280gjv27 GMV Innovating Solutions (Portugal)'),
(20363, 'https://ror.org/00985q454', 'en', 1, 'https://ror.org/00985q454 Science, Technology, Engineering and Mathematics Network'),
(20364, 'https://ror.org/05rfgws98', 'en', 1, 'https://ror.org/05rfgws98 Department of Health'),
(20365, 'https://ror.org/00qasm074', 'no_lang_code', 1, 'https://ror.org/00qasm074 Skyworks Solutions (United Kingdom)'),
(20366, 'https://ror.org/00rm12d62', 'no_lang_code', 1, 'https://ror.org/00rm12d62 Stena (Sweden)'),
(20367, 'https://ror.org/00pcpzq46', 'en', 1, 'https://ror.org/00pcpzq46 Danish Meat Trade College'),
(20368, 'https://ror.org/03477ff34', 'en', 1, 'https://ror.org/03477ff34 Drug-Free NC'),
(20369, 'https://ror.org/03ev3zx04', 'no_lang_code', 1, 'https://ror.org/03ev3zx04 Slider Studio (United Kingdom)'),
(20370, 'https://ror.org/01my97204', 'no_lang_code', 1, 'https://ror.org/01my97204 WIND Hellas (Greece)'),
(20371, 'https://ror.org/03zzjgp12', 'en', 1, 'https://ror.org/03zzjgp12 South Carolina Sea Grant Consortium'),
(20372, 'https://ror.org/049yar178', 'en', 1, 'https://ror.org/049yar178 South Carolina Department of Education'),
(20373, 'https://ror.org/02atwwv43', 'en', 1, 'https://ror.org/02atwwv43 Slovenian Institute for Adult Education'),
(20374, 'https://ror.org/0281stt89', 'no_lang_code', 1, 'https://ror.org/0281stt89 Gruppo Scienzia Machinale (Italy)'),
(20375, 'https://ror.org/05w0r7981', 'no_lang_code', 1, 'https://ror.org/05w0r7981 Steven Winter Associates (United States)'),
(20376, 'https://ror.org/04dfd2922', 'en', 1, 'https://ror.org/04dfd2922 South Great Plain Regional Innovation Agency'),
(20377, 'https://ror.org/035cxwv94', 'en', 1, 'https://ror.org/035cxwv94 South Side Help Center'),
(20378, 'https://ror.org/02bs1me11', 'en', 1, 'https://ror.org/02bs1me11 Sea Studios Foundation'),
(20379, 'https://ror.org/047dkfr85', 'en', 1, 'https://ror.org/047dkfr85 South East Texas Council on Alcohol and Drug Abuse'),
(20380, 'https://ror.org/05bh64v90', 'en', 1, 'https://ror.org/05bh64v90 South Thames College'),
(20381, 'https://ror.org/03r4mvw95', 'no_lang_code', 1, 'https://ror.org/03r4mvw95 South Yorkshire Passenger Transport Executive'),
(20382, 'https://ror.org/02g14hj64', 'no_lang_code', 1, 'https://ror.org/02g14hj64 Smart Reamer Drilling Systems (United Kingdom)'),
(20383, 'https://ror.org/03qjxzd42', 'en', 1, 'https://ror.org/03qjxzd42 South West Regional Authority'),
(20384, 'https://ror.org/00emq8v37', 'no_lang_code', 1, 'https://ror.org/00emq8v37 Smart Software (United States)'),
(20385, 'https://ror.org/01d646h83', 'no_lang_code', 1, 'https://ror.org/01d646h83 Smartec (Switzerland)'),
(20386, 'https://ror.org/039b6fr04', 'no_lang_code', 1, 'https://ror.org/039b6fr04 SEA-invest (France)'),
(20387, 'https://ror.org/01sa7gm83', 'en', 1, 'https://ror.org/01sa7gm83 South Eastern Europe Telecommunications Academy'),
(20388, 'https://ror.org/04jaxd697', 'no_lang_code', 1, 'https://ror.org/04jaxd697 SeaChange Pharmaceuticals (United States)'),
(20389, 'https://ror.org/007pfmx21', 'no_lang_code', 1, 'https://ror.org/007pfmx21 Seafarm (Netherlands)'),
(20390, 'https://ror.org/02fdpxr39', 'no_lang_code', 1, 'https://ror.org/02fdpxr39 Southern Biotechnology Associates'),
(20391, 'https://ror.org/01qbtys04', 'no_lang_code', 1, 'https://ror.org/01qbtys04 Stichting Accessibility'),
(20392, 'https://ror.org/04ag0vk97', 'no_lang_code', 1, 'https://ror.org/04ag0vk97 Stichting AlmereGrid'),
(20393, 'https://ror.org/031qqmw72', 'no_lang_code', 1, 'https://ror.org/031qqmw72 SmileSonica (Canada)'),
(20394, 'https://ror.org/04xafps82', 'en', 1, 'https://ror.org/04xafps82 Southern Adventist University'),
(20395, 'https://ror.org/03agge938', 'no_lang_code', 1, 'https://ror.org/03agge938 Smith & Nephew (United Kingdom)'),
(20396, 'https://ror.org/04hqh3a23', 'nl', 1, 'https://ror.org/04hqh3a23 Stichting Bouwresearch'),
(20397, 'https://ror.org/01hf4z573', 'no_lang_code', 1, 'https://ror.org/01hf4z573 Smithers Group (United Kingdom)'),
(20398, 'https://ror.org/04pm6wp87', 'no_lang_code', 1, 'https://ror.org/04pm6wp87 Smiths Detection (Canada)'),
(20399, 'https://ror.org/03wjfkr41', 'no_lang_code', 1, 'https://ror.org/03wjfkr41 Smiths Group (Germany)'),
(20400, 'https://ror.org/017d8cr03', 'nl', 1, 'https://ror.org/017d8cr03 Centre for Agriculture and Environment Foundation Centrum voor Landbouw en Milieu'),
(20401, 'https://ror.org/03v1e0p66', 'no_lang_code', 1, 'https://ror.org/03v1e0p66 Smiths Detection (France)'),
(20402, 'https://ror.org/04709y508', 'no_lang_code', 1, 'https://ror.org/04709y508 Seagate (United Kingdom)'),
(20403, 'https://ror.org/015135f27', 'en', 1, 'https://ror.org/015135f27 Sealaska Heritage Institute'),
(20404, 'https://ror.org/041deym60', 'en', 1, 'https://ror.org/041deym60 Center for Technology & Innovation Management'),
(20405, 'https://ror.org/002sayz20', 'no_lang_code', 1, 'https://ror.org/002sayz20 SMST Designers & Constructors (Netherlands)'),
(20406, 'https://ror.org/00j7zhd55', 'no_lang_code', 1, 'https://ror.org/00j7zhd55 SMT Machine (Sweden)'),
(20407, 'https://ror.org/055622428', 'en', 1, 'https://ror.org/055622428 Digital Heritage Netherlands'),
(20408, 'https://ror.org/05gp0bv85', 'no_lang_code', 1, 'https://ror.org/05gp0bv85 SEAS-NVE (Denmark)'),
(20409, 'https://ror.org/01m71fs94', 'en', 1, 'https://ror.org/01m71fs94 Dutch Polymer Institute'),
(20410, 'https://ror.org/03qgjv684', 'no_lang_code', 1, 'https://ror.org/03qgjv684 SeaSpace (United States)'),
(20411, 'https://ror.org/02c9ztd98', 'en', 1, 'https://ror.org/02c9ztd98 Seattle Public Schools'),
(20412, 'https://ror.org/01w7yex89', 'no_lang_code', 1, 'https://ror.org/01w7yex89 Exechon (Sweden)'),
(20413, 'https://ror.org/05xk81g65', 'no_lang_code', 1, 'https://ror.org/05xk81g65 SR Technics (Ireland)'),
(20414, 'https://ror.org/04h2hb382', 'en', 1, 'https://ror.org/04h2hb382 Southwest Georgia Area Health Education Center'),
(20415, 'https://ror.org/03hxjwt59', 'en', 1, 'https://ror.org/03hxjwt59 Southwest Louisiana Area Health Education Center'),
(20416, 'https://ror.org/03aynys49', 'en', 1, 'https://ror.org/03aynys49 Southwest Texas Junior College'),
(20417, 'https://ror.org/00qd4hy53', 'en', 1, 'https://ror.org/00qd4hy53 Southwest Virginia Community College'),
(20418, 'https://ror.org/04t104d61', 'en', 1, 'https://ror.org/04t104d61 Southwestern College - Kansas'),
(20419, 'https://ror.org/0334n7472', 'nl', 1, 'https://ror.org/0334n7472 Stichting Ecobaby'),
(20420, 'https://ror.org/02dzc0673', 'en', 1, 'https://ror.org/02dzc0673 Alliance for Permanent Access'),
(20421, 'https://ror.org/02za9ff59', 'en', 1, 'https://ror.org/02za9ff59 European Rail Research Institute'),
(20422, 'https://ror.org/010fb5010', 'pt', 1, 'https://ror.org/010fb5010 Secretaria Regional do Ambiente e Recursos Naturais'),
(20423, 'https://ror.org/04azdj983', 'en', 1, 'https://ror.org/04azdj983 Snow College'),
(20424, 'https://ror.org/01gdg5y72', 'no_lang_code', 1, 'https://ror.org/01gdg5y72 Syntesa (Faroe Islands)'),
(20425, 'https://ror.org/0472pbn77', 'no_lang_code', 1, 'https://ror.org/0472pbn77 NTN-SNR (France)'),
(20426, 'https://ror.org/01sw8gj26', 'no_lang_code', 1, 'https://ror.org/01sw8gj26 Space Environment Corporation (United States)'),
(20427, 'https://ror.org/017gvys12', 'no_lang_code', 1, 'https://ror.org/017gvys12 Sogin (Italy)'),
(20428, 'https://ror.org/044jjd544', 'nl', 1, 'https://ror.org/044jjd544 Dedicon Federatie Nederlandse Blindenbibliotheken'),
(20429, 'https://ror.org/02wa2k617', 'no_lang_code', 1, 'https://ror.org/02wa2k617 Space Syntax (United Kingdom)'),
(20430, 'https://ror.org/02wdrwh83', 'en', 1, 'https://ror.org/02wdrwh83 Space Telescope European Coordinating Facility'),
(20431, 'https://ror.org/04vv3qe07', 'en', 1, 'https://ror.org/04vv3qe07 Social and Environmental Research Institute'),
(20432, 'https://ror.org/052matx73', 'no_lang_code', 1, 'https://ror.org/052matx73 Span'),
(20433, 'https://ror.org/05ppgmq25', 'no_lang_code', 1, 'https://ror.org/05ppgmq25 Socialdata (Germany)'),
(20434, 'https://ror.org/00qq5ag78', 'no_lang_code', 1, 'https://ror.org/00qq5ag78 Sociedad Anónima Industrias Celulosa Aragonesa (Spain)'),
(20435, 'https://ror.org/05ke08a35', 'no_lang_code', 1, 'https://ror.org/05ke08a35 Air Products (Spain)'),
(20436, 'https://ror.org/04hdfdt60', 'no_lang_code', 1, 'https://ror.org/04hdfdt60 Spartan Solutions (United Kingdom)'),
(20437, 'https://ror.org/04vp8rw50', 'en', 1, 'https://ror.org/04vp8rw50 Green IT Amsterdam'),
(20438, 'https://ror.org/03ks3fa41', 'no_lang_code', 1, 'https://ror.org/03ks3fa41 SpazioDati (Italy)'),
(20439, 'https://ror.org/02dyjqg10', 'es', 1, 'https://ror.org/02dyjqg10 Sociedad Hispano Mundial'),
(20440, 'https://ror.org/034hr8t11', 'no_lang_code', 1, 'https://ror.org/034hr8t11 SecurityMatters (Netherlands)'),
(20441, 'https://ror.org/010tvj547', 'no_lang_code', 1, 'https://ror.org/010tvj547 Sedia Biosciences (United States)'),
(20442, 'https://ror.org/01e2brw58', 'no_lang_code', 1, 'https://ror.org/01e2brw58 Seecon (Switzerland)'),
(20443, 'https://ror.org/04pys4598', 'en', 1, 'https://ror.org/04pys4598 Internet Memory Foundation'),
(20444, 'https://ror.org/048t5j590', 'no_lang_code', 1, 'https://ror.org/048t5j590 Seedri Puukool'),
(20445, 'https://ror.org/02z7t7h39', 'no_lang_code', 1, 'https://ror.org/02z7t7h39 SocietĆ  Italiana Apparecchi Scientifici (Italy)'),
(20446, 'https://ror.org/05w7nha79', 'no_lang_code', 1, 'https://ror.org/05w7nha79 Seekda (Austria)'),
(20447, 'https://ror.org/055133v13', 'no_lang_code', 1, 'https://ror.org/055133v13 Segasist Technologies (Canada)'),
(20448, 'https://ror.org/01kyqk585', 'en', 1, 'https://ror.org/01kyqk585 Sejet Plant Breeding'),
(20449, 'https://ror.org/00c4rk012', 'no_lang_code', 1, 'https://ror.org/00c4rk012 Selcom (Italy)'),
(20450, 'https://ror.org/05wn3nd60', 'no_lang_code', 1, 'https://ror.org/05wn3nd60 Specto Natura'),
(20451, 'https://ror.org/02tfgas26', 'no_lang_code', 1, 'https://ror.org/02tfgas26 SĆØleco (Italy)'),
(20452, 'https://ror.org/05gwq9m97', 'no_lang_code', 1, 'https://ror.org/05gwq9m97 SpectraGenetics (United States)'),
(20453, 'https://ror.org/02zkpaw44', 'en', 1, 'https://ror.org/02zkpaw44 Herbs for Horses'),
(20454, 'https://ror.org/04ekw4q78', 'no_lang_code', 1, 'https://ror.org/04ekw4q78 Selective Genetics (United States)'),
(20455, 'https://ror.org/009rrq568', 'nl', 1, 'https://ror.org/009rrq568 Kenniscentrum Papier en Karton'),
(20456, 'https://ror.org/04e53n160', 'no_lang_code', 1, 'https://ror.org/04e53n160 SocietĆ  Industrie Chimiche ITaliane (Italy)'),
(20457, 'https://ror.org/050qdy167', 'en', 1, 'https://ror.org/050qdy167 Knowledge Centre Wind turbine Materials and Constructions'),
(20458, 'https://ror.org/05y7nb940', 'nl', 1, 'https://ror.org/05y7nb940 Stichting Lettinga Associates'),
(20459, 'https://ror.org/04g2nab09', 'no_lang_code', 1, 'https://ror.org/04g2nab09 Snam (Italy)'),
(20460, 'https://ror.org/052heck55', 'no_lang_code', 1, 'https://ror.org/052heck55 SelenBio (United States)'),
(20461, 'https://ror.org/03kvq4w45', 'nl', 1, 'https://ror.org/03kvq4w45 Nationaal ICT Instituut in de Zorg'),
(20462, 'https://ror.org/04gpr3c11', 'no_lang_code', 1, 'https://ror.org/04gpr3c11 SocietĆ  Italiana Trasporti Automobilistici (Italy)'),
(20463, 'https://ror.org/039j29a96', 'no_lang_code', 1, 'https://ror.org/039j29a96 Plastic Electronics (Netherlands)'),
(20464, 'https://ror.org/04d5w6769', 'en', 1, 'https://ror.org/04d5w6769 STM Association'),
(20465, '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)'),
(20466, 'https://ror.org/018skgq22', 'no_lang_code', 1, 'https://ror.org/018skgq22 Sellafield (United Kingdom)'),
(20467, 'https://ror.org/02p5b1x56', 'no_lang_code', 1, 'https://ror.org/02p5b1x56 Spirent Communications (United Kingdom)'),
(20468, 'https://ror.org/04h80zb52', 'no_lang_code', 1, 'https://ror.org/04h80zb52 International Game Technology (Canada)'),
(20469, 'https://ror.org/01myfyr56', 'no_lang_code', 1, 'https://ror.org/01myfyr56 Spok'),
(20470, 'https://ror.org/05e3env38', 'no_lang_code', 1, 'https://ror.org/05e3env38 Sintex (Czechia)'),
(20471, 'https://ror.org/01nap1w14', 'no_lang_code', 1, 'https://ror.org/01nap1w14 Transnet (South Africa)'),
(20472, 'https://ror.org/02wqh6z44', 'fr', 1, 'https://ror.org/02wqh6z44 Chateau Guiraud'),
(20473, 'https://ror.org/010frds68', 'no_lang_code', 1, 'https://ror.org/010frds68 Seluxit (Denmark)'),
(20474, 'https://ror.org/00c8emq34', 'nl', 1, 'https://ror.org/00c8emq34 Vilans'),
(20475, 'https://ror.org/057tq3593', 'en', 1, 'https://ror.org/057tq3593 Technologiestichting STW Technology Foundation STW'),
(20476, 'https://ror.org/03vgpfk89', 'nl', 1, 'https://ror.org/03vgpfk89 Waste'),
(20477, 'https://ror.org/04td9e852', 'en', 1, 'https://ror.org/04td9e852 Wetlands International'),
(20478, 'https://ror.org/03f419588', 'no_lang_code', 1, 'https://ror.org/03f419588 Confers (United Kingdom)'),
(20479, 'https://ror.org/018322479', 'en', 1, 'https://ror.org/018322479 Sullivan Veterinary Clinic'),
(20480, 'https://ror.org/05e8ym512', 'en', 1, 'https://ror.org/05e8ym512 Stockholm International Peace Research Institute'),
(20481, 'https://ror.org/01b0z6r56', 'sv', 1, 'https://ror.org/01b0z6r56 Teknikens Hus The Technology House'),
(20482, 'https://ror.org/02hg9tz16', 'no_lang_code', 1, 'https://ror.org/02hg9tz16 Spree NDT'),
(20483, 'https://ror.org/0106g8w88', 'no_lang_code', 1, 'https://ror.org/0106g8w88 Spring Bank Pharmaceuticals (United States)'),
(20484, 'https://ror.org/02g5n6964', 'no_lang_code', 1, 'https://ror.org/02g5n6964 Sembiosys Genetics (Canada)'),
(20485, 'https://ror.org/0282rt868', 'en', 1, 'https://ror.org/0282rt868 Deutsches Hygiene-Museum German Hygiene Museum'),
(20486, 'https://ror.org/004rjvc46', 'no_lang_code', 1, 'https://ror.org/004rjvc46 Home Bank (United States)'),
(20487, 'https://ror.org/03ex76y18', 'no_lang_code', 1, 'https://ror.org/03ex76y18 Spring Techno (Germany)'),
(20488, 'https://ror.org/013ykv656', 'en', 1, 'https://ror.org/013ykv656 SEMI'),
(20489, 'https://ror.org/030raqa76', 'no_lang_code', 1, 'https://ror.org/030raqa76 Stirling Cryogenics (Netherlands)'),
(20490, 'https://ror.org/01e9c5p79', 'no_lang_code', 1, 'https://ror.org/01e9c5p79 Stirling Dynamics (United Kingdom)'),
(20491, 'https://ror.org/022rmxm39', 'no_lang_code', 1, 'https://ror.org/022rmxm39 Sprout Design (United Kingdom)'),
(20492, 'https://ror.org/01e78mv37', 'en', 1, 'https://ror.org/01e78mv37 Seminole State College Oklahoma'),
(20493, 'https://ror.org/0413qrt75', 'no_lang_code', 1, 'https://ror.org/0413qrt75 Stirling Technology (United States)'),
(20494, 'https://ror.org/01nmkhv89', 'no_lang_code', 1, 'https://ror.org/01nmkhv89 Squaris'),
(20495, 'https://ror.org/05mqxwn60', 'no_lang_code', 1, 'https://ror.org/05mqxwn60 Star-Oddi (Iceland)'),
(20496, 'https://ror.org/029d6y387', 'no_lang_code', 1, 'https://ror.org/029d6y387 STM Products (Italy)'),
(20497, 'https://ror.org/04mfpk422', 'no_lang_code', 1, 'https://ror.org/04mfpk422 Srico (United States)'),
(20498, 'https://ror.org/02peb2h94', 'en', 1, 'https://ror.org/02peb2h94 Stockport Metropolitan Borough Council'),
(20499, 'https://ror.org/001gmby50', 'no_lang_code', 1, 'https://ror.org/001gmby50 Oracle (Spain)'),
(20500, 'https://ror.org/03p7psc15', 'no_lang_code', 1, 'https://ror.org/03p7psc15 Stocznia Gdynia (Poland)'),
(20501, 'https://ror.org/04zvs4n17', 'no_lang_code', 1, 'https://ror.org/04zvs4n17 SRM Reti e MobilitĆ  (Italy)'),
(20502, 'https://ror.org/02by00s02', 'no_lang_code', 1, 'https://ror.org/02by00s02 SunPower (Germany)'),
(20503, 'https://ror.org/05mpv2p10', 'no_lang_code', 1, 'https://ror.org/05mpv2p10 Sunamp (United Kingdom)'),
(20504, 'https://ror.org/01rdkm032', 'no_lang_code', 1, 'https://ror.org/01rdkm032 SSBV Aerospace & Technology Group (United Kingdom)'),
(20505, 'https://ror.org/02wdfve94', 'no_lang_code', 1, 'https://ror.org/02wdfve94 Stokast (Canada)'),
(20506, 'https://ror.org/03zvd4k21', 'no_lang_code', 1, 'https://ror.org/03zvd4k21 CFI Technologies (United States)'),
(20507, 'https://ror.org/04mptne15', 'no_lang_code', 1, 'https://ror.org/04mptne15 Strategic Solutions Consulting (United States)'),
(20508, 'https://ror.org/00j91ek55', 'no_lang_code', 1, 'https://ror.org/00j91ek55 Sundew Technologies (United States)'),
(20509, 'https://ror.org/03pgf7z08', 'no_lang_code', 1, 'https://ror.org/03pgf7z08 SSM Computer Systems (Cyprus)'),
(20510, 'https://ror.org/048maqj86', 'no_lang_code', 1, 'https://ror.org/048maqj86 Stone Ridge Technology (United States)'),
(20511, 'https://ror.org/01ep8zz70', 'no_lang_code', 1, 'https://ror.org/01ep8zz70 SSPA (Sweden)'),
(20512, 'https://ror.org/02e9j2825', 'en', 1, 'https://ror.org/02e9j2825 St. Albans School'),
(20513, 'https://ror.org/02pfxyr52', 'no_lang_code', 1, 'https://ror.org/02pfxyr52 Sunfire (Germany)'),
(20514, 'https://ror.org/04hect109', 'en', 1, 'https://ror.org/04hect109 Saint Gregory''s Catholic College'),
(20515, 'https://ror.org/05x786n86', 'no_lang_code', 1, 'https://ror.org/05x786n86 Stopford Energy & Environment (United Kingdom)'),
(20516, 'https://ror.org/00y8cbr22', 'no_lang_code', 1, 'https://ror.org/00y8cbr22 Senceive (United Kingdom)'),
(20517, 'https://ror.org/014fgst40', 'no_lang_code', 1, 'https://ror.org/014fgst40 Suni Medical Imaging (United States)'),
(20518, 'https://ror.org/04hvybk54', 'no_lang_code', 1, 'https://ror.org/04hvybk54 Seneca Productions (United Kingdom)'),
(20519, 'https://ror.org/013wfcy24', 'no_lang_code', 1, 'https://ror.org/013wfcy24 Storvik (Norway)'),
(20520, 'https://ror.org/00bq8y167', 'no_lang_code', 1, 'https://ror.org/00bq8y167 Arcadis (Canada)'),
(20521, 'https://ror.org/03cacct79', 'no', 1, 'https://ror.org/03cacct79 Seniornett'),
(20522, 'https://ror.org/0572yqv42', 'no_lang_code', 1, 'https://ror.org/0572yqv42 Sunplugged (Austria)'),
(20523, 'https://ror.org/01yp0v682', 'no_lang_code', 1, 'https://ror.org/01yp0v682 StrateCision (United States)'),
(20524, 'https://ror.org/01t1wnw38', 'en', 1, 'https://ror.org/01t1wnw38 Strategic Community Services'),
(20525, 'https://ror.org/04g6ar987', 'no_lang_code', 1, 'https://ror.org/04g6ar987 S-Solar (Sweden)'),
(20526, 'https://ror.org/011va6w40', 'no_lang_code', 1, 'https://ror.org/011va6w40 Stratophase (United Kingdom)'),
(20527, 'https://ror.org/03aa02381', 'en', 1, 'https://ror.org/03aa02381 Bulgarian Association of Software Companies'),
(20528, 'https://ror.org/04454sk28', 'no_lang_code', 1, 'https://ror.org/04454sk28 Aer Lingus (Ireland)'),
(20529, 'https://ror.org/00eq1d260', 'no_lang_code', 1, 'https://ror.org/00eq1d260 Suttle-Straus (United States)'),
(20530, 'https://ror.org/02401m575', 'no_lang_code', 1, 'https://ror.org/02401m575 Supanetics (United Kingdom)'),
(20531, 'https://ror.org/04f8bz958', 'no_lang_code', 1, 'https://ror.org/04f8bz958 Super Pulse (United States)'),
(20532, 'https://ror.org/00g1vdf17', 'en', 1, 'https://ror.org/00g1vdf17 TeamPatent'),
(20533, 'https://ror.org/03cdvzq70', 'no_lang_code', 1, 'https://ror.org/03cdvzq70 Kƶrber (Germany)'),
(20534, 'https://ror.org/05rvmn457', 'no_lang_code', 1, 'https://ror.org/05rvmn457 Visual Health Information'),
(20535, 'https://ror.org/01xq6at75', 'no_lang_code', 1, 'https://ror.org/01xq6at75 Team (Italy)'),
(20536, 'https://ror.org/01bb1ac21', 'no_lang_code', 1, 'https://ror.org/01bb1ac21 SCI Engineered Materials (United States)'),
(20537, 'https://ror.org/02kwxw490', 'no_lang_code', 1, 'https://ror.org/02kwxw490 Superform (United Kingdom)'),
(20538, 'https://ror.org/04g3q2c19', 'no_lang_code', 1, 'https://ror.org/04g3q2c19 Stromatec (United States)'),
(20539, 'https://ror.org/03rk04a05', 'no_lang_code', 1, 'https://ror.org/03rk04a05 Tecan (United Kingdom)'),
(20540, 'https://ror.org/000t5z820', 'no_lang_code', 1, 'https://ror.org/000t5z820 SensoMotoric Instruments (Germany)'),
(20541, 'https://ror.org/0372scc98', 'no_lang_code', 1, 'https://ror.org/0372scc98 Supply Network Shannon (Ireland)'),
(20542, 'https://ror.org/036jygv32', 'en', 1, 'https://ror.org/036jygv32 Supreme Council of Antiquities'),
(20543, 'https://ror.org/02c8ytn85', 'no_lang_code', 1, 'https://ror.org/02c8ytn85 SMART Group (United Kingdom)'),
(20544, 'https://ror.org/0519xb662', 'no_lang_code', 1, 'https://ror.org/0519xb662 Sensor Coating Systems (United Kingdom)'),
(20545, 'https://ror.org/007hw9631', 'no_lang_code', 1, 'https://ror.org/007hw9631 Surface Phenomena Researches Group (Russia)'),
(20546, 'https://ror.org/04ha7mv34', 'no_lang_code', 1, 'https://ror.org/04ha7mv34 Surface Transforms (United Kingdom)'),
(20547, 'https://ror.org/000kgrw24', 'no_lang_code', 1, 'https://ror.org/000kgrw24 Savcor (Finland)'),
(20548, 'https://ror.org/02scrd410', 'no_lang_code', 1, 'https://ror.org/02scrd410 Techin (Poland)'),
(20549, 'https://ror.org/05jv51744', 'no_lang_code', 1, 'https://ror.org/05jv51744 Surflay Nanotec (Germany)'),
(20550, 'https://ror.org/012tc8p52', 'no_lang_code', 1, 'https://ror.org/012tc8p52 Techint (Italy)'),
(20551, 'https://ror.org/016jwxj93', 'en', 1, 'https://ror.org/016jwxj93 Surrey County Council'),
(20552, 'https://ror.org/03z7yy926', 'no_lang_code', 1, 'https://ror.org/03z7yy926 Techneat Engineering (United Kingdom)'),
(20553, 'https://ror.org/00hm42c93', 'no_lang_code', 1, 'https://ror.org/00hm42c93 Sensor Developments (United States)'),
(20554, 'https://ror.org/0293hjc54', 'no_lang_code', 1, 'https://ror.org/0293hjc54 Sustainable Energy Systems (United Kingdom)'),
(20555, 'https://ror.org/03f750x06', 'en', 1, 'https://ror.org/03f750x06 Technical Chamber of Greece'),
(20556, 'https://ror.org/00bda6055', 'no_lang_code', 1, 'https://ror.org/00bda6055 Sensor-Technik Wiedemann (Germany)'),
(20557, 'https://ror.org/02zjv1c92', 'no_lang_code', 1, 'https://ror.org/02zjv1c92 Sustainable Venture Development Partners (United Kingdom)'),
(20558, 'https://ror.org/01v1gc487', 'no_lang_code', 1, 'https://ror.org/01v1gc487 Technical Database Services (United States)'),
(20559, 'https://ror.org/00cbzxk82', 'no_lang_code', 1, 'https://ror.org/00cbzxk82 Econova (Sweden)'),
(20560, 'https://ror.org/03pnxfz55', 'no_lang_code', 1, 'https://ror.org/03pnxfz55 Boehringer Ingelheim (Sweden)'),
(20561, 'https://ror.org/00nwez256', 'no_lang_code', 1, 'https://ror.org/00nwez256 Sviluppo Toscana (Italy)'),
(20562, 'https://ror.org/04gptps55', 'no_lang_code', 1, 'https://ror.org/04gptps55 Senstar (Canada)'),
(20563, 'https://ror.org/01rdrt489', 'en', 1, 'https://ror.org/01rdrt489 Development of Research and Technologies for Sustainable and Seismically Safe Building'),
(20564, 'https://ror.org/0120t7422', 'no_lang_code', 1, 'https://ror.org/0120t7422 Sensys Networks (United States)'),
(20565, 'https://ror.org/00g342m42', 'no_lang_code', 1, 'https://ror.org/00g342m42 SVUM (Czechia)'),
(20566, 'https://ror.org/034j4d090', 'no_lang_code', 1, 'https://ror.org/034j4d090 Sentinel Oncology (United Kingdom)'),
(20567, 'https://ror.org/02g4dgx92', 'no_lang_code', 1, 'https://ror.org/02g4dgx92 Separation Design Group'),
(20568, 'https://ror.org/02bczys52', 'en', 1, 'https://ror.org/02bczys52 Society for Science & the Public'),
(20569, 'https://ror.org/03dy61e04', 'no_lang_code', 1, 'https://ror.org/03dy61e04 ScienCentral (United States)'),
(20570, 'https://ror.org/03t0xat23', 'no_lang_code', 1, 'https://ror.org/03t0xat23 Paralab (Portugal)'),
(20571, 'https://ror.org/05e9egp81', 'no_lang_code', 1, 'https://ror.org/05e9egp81 Swamp Optics (United States)'),
(20572, 'https://ror.org/00x37ty92', 'en', 1, 'https://ror.org/00x37ty92 Student Biotechnology Network'),
(20573, 'https://ror.org/01jq32a23', 'no_lang_code', 1, 'https://ror.org/01jq32a23 Swanbarton (United Kingdom)');
INSERT INTO `rors` VALUES
(20574, 'https://ror.org/02mgbaa73', 'en', 1, 'https://ror.org/02mgbaa73 Students on Ice'),
(20575, 'https://ror.org/03rb80v65', 'no_lang_code', 1, 'https://ror.org/03rb80v65 Sequenom (United States)'),
(20576, 'https://ror.org/00zd3hh13', 'no_lang_code', 1, 'https://ror.org/00zd3hh13 SEQUOIA (Italy)'),
(20577, 'https://ror.org/0387p5v08', 'en', 1, 'https://ror.org/0387p5v08 Research Association for Tunnels and Transport Facilities Studiengesellschaft für Tunnel und Verkehrsanlagen'),
(20578, 'https://ror.org/00mseky10', 'no_lang_code', 1, 'https://ror.org/00mseky10 Sequoia Environmental Remediation (Canada)'),
(20579, 'https://ror.org/05ndyzk28', 'no_lang_code', 1, 'https://ror.org/05ndyzk28 Luftfartsverket (Sweden) Swedish Civil Aviation Administration'),
(20580, 'https://ror.org/004nw8z31', 'no_lang_code', 1, 'https://ror.org/004nw8z31 Studiengesellschaft für Eisenerzaufbereitung (Germany)'),
(20581, 'https://ror.org/000hc8n84', 'no_lang_code', 1, 'https://ror.org/000hc8n84 Sequoia Scientific (United States)'),
(20582, 'https://ror.org/00erf1y78', 'it', 1, 'https://ror.org/00erf1y78 Studio Ricerche Sociali'),
(20583, 'https://ror.org/006sw6d69', 'en', 1, 'https://ror.org/006sw6d69 Scottish Agricultural Science Agency'),
(20584, 'https://ror.org/03c8qq315', 'en', 1, 'https://ror.org/03c8qq315 Tver State University Тверской Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(20585, 'https://ror.org/038tfyw56', 'no_lang_code', 1, 'https://ror.org/038tfyw56 Sequoyah (Belgium)'),
(20586, 'https://ror.org/03k7v9g07', 'no_lang_code', 1, 'https://ror.org/03k7v9g07 Seratec (Germany)'),
(20587, 'https://ror.org/02rna7j18', 'no_lang_code', 1, 'https://ror.org/02rna7j18 Abzena (United Kingdom)'),
(20588, 'https://ror.org/05367pr87', 'no_lang_code', 1, 'https://ror.org/05367pr87 Smart Polymers Research Corporation (United States)'),
(20589, 'https://ror.org/04c1jfd27', 'en', 1, 'https://ror.org/04c1jfd27 Substance Abuse Free Environment'),
(20590, 'https://ror.org/040747t72', 'no_lang_code', 1, 'https://ror.org/040747t72 Substrakt (United Kingdom)'),
(20591, 'https://ror.org/02s12gd46', 'en', 1, 'https://ror.org/02s12gd46 Sjofartsverket Swedish Maritime Administration'),
(20592, 'https://ror.org/04xnj7444', 'no_lang_code', 1, 'https://ror.org/04xnj7444 Südwestrundfunk (Germany)'),
(20593, 'https://ror.org/049xny288', 'no_lang_code', 1, 'https://ror.org/049xny288 SERE-Tech Innovation (United Kingdom)'),
(20594, 'https://ror.org/02e3fqh84', 'no_lang_code', 1, 'https://ror.org/02e3fqh84 Serim Research Corporation (United States)'),
(20595, 'https://ror.org/00hzf4v26', 'no_lang_code', 1, 'https://ror.org/00hzf4v26 Sermes CRO (Spain)'),
(20596, 'https://ror.org/03c8a9g31', 'no_lang_code', 1, 'https://ror.org/03c8a9g31 Power Lake (Sweden)'),
(20597, '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'),
(20598, 'https://ror.org/05ppcbv70', 'no_lang_code', 1, 'https://ror.org/05ppcbv70 Meggitt (France)'),
(20599, 'https://ror.org/04adde783', 'no_lang_code', 1, 'https://ror.org/04adde783 Unisign (Netherlands)'),
(20600, 'https://ror.org/02h9dhk84', 'no_lang_code', 1, 'https://ror.org/02h9dhk84 SweTree Technologies (Sweden)'),
(20601, 'https://ror.org/0260r5f51', 'en', 1, 'https://ror.org/0260r5f51 Swindon Borough Council'),
(20602, 'https://ror.org/02jybwh86', 'nl', 1, 'https://ror.org/02jybwh86 Stichting Technisch Centrum vd Keramische Industrie'),
(20603, 'https://ror.org/03wsag231', 'en', 1, 'https://ror.org/03wsag231 Bureau suisse de prƩvention des accidents Swiss Council for Accident Prevention'),
(20604, 'https://ror.org/00k62pe27', 'en', 1, 'https://ror.org/00k62pe27 Technical University of Applied Sciences Wildau Technische Hochschule Wildau'),
(20605, 'https://ror.org/04vev9295', 'de', 1, 'https://ror.org/04vev9295 Technisches Museum Wien Vienna Technical Museum'),
(20606, 'https://ror.org/03z30sy43', 'no_lang_code', 1, 'https://ror.org/03z30sy43 Imenco (Norway)'),
(20607, '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'),
(20608, 'https://ror.org/03w3fxa59', 'no_lang_code', 1, 'https://ror.org/03w3fxa59 Technodyne International (United Kingdom)'),
(20609, 'https://ror.org/03qm7cd09', 'no_lang_code', 1, 'https://ror.org/03qm7cd09 TechnoFirst (France)'),
(20610, 'https://ror.org/04w32pe18', 'no_lang_code', 1, 'https://ror.org/04w32pe18 Thalia Design Automation (United Kingdom)'),
(20611, 'https://ror.org/02nwd3v30', 'no_lang_code', 1, 'https://ror.org/02nwd3v30 Groupe Lacroix (France)'),
(20612, 'https://ror.org/0144xq035', 'en', 1, 'https://ror.org/0144xq035 FOD FinanciĆ«n FƖD Finanzen SPF Finances Service Public Federal Finances'),
(20613, 'https://ror.org/04j539t95', 'no_lang_code', 1, 'https://ror.org/04j539t95 Meyer Burger Technology (Switzerland)'),
(20614, 'https://ror.org/03h362x79', 'en', 1, 'https://ror.org/03h362x79 Missoula County Public Schools'),
(20615, 'https://ror.org/0178yne88', 'es', 1, 'https://ror.org/0178yne88 Servicio AragonƩs de Salud'),
(20616, 'https://ror.org/031jtdj18', 'no_lang_code', 1, 'https://ror.org/031jtdj18 Technologie Agentur Struktur Keramik (Germany)'),
(20617, 'https://ror.org/01vp36a05', 'en', 1, 'https://ror.org/01vp36a05 Swiss Internet Security Alliance'),
(20618, 'https://ror.org/05t197591', 'en', 1, 'https://ror.org/05t197591 American University of Paris'),
(20619, 'https://ror.org/02c2fvd82', 'en', 1, 'https://ror.org/02c2fvd82 Association for Science and Discovery Centres'),
(20620, 'https://ror.org/02598xm52', 'no_lang_code', 1, 'https://ror.org/02598xm52 Services and Studies for Air Navigation and Aeronautical Safety'),
(20621, 'https://ror.org/01jrpnz59', 'en', 1, 'https://ror.org/01jrpnz59 Serviciul Hidrmetrologic de Stat State Hydrometeorological Service'),
(20622, 'https://ror.org/04zwbxk42', 'en', 1, 'https://ror.org/04zwbxk42 Switchboard of Miami'),
(20623, 'https://ror.org/013jc2p81', 'en', 1, 'https://ror.org/013jc2p81 Swope Health Services'),
(20624, 'https://ror.org/04k7gd586', 'no_lang_code', 1, 'https://ror.org/04k7gd586 Systems, Applications & Products in Data Processing (United Kingdom)'),
(20625, 'https://ror.org/029jcrc31', 'en', 1, 'https://ror.org/029jcrc31 British Constructional Steelwork Association'),
(20626, 'https://ror.org/04danph04', 'en', 1, 'https://ror.org/04danph04 British School at Rome'),
(20627, 'https://ror.org/0568rcd29', 'no_lang_code', 1, 'https://ror.org/0568rcd29 Kharkov Technologies'),
(20628, 'https://ror.org/058m4x348', 'no_lang_code', 1, 'https://ror.org/058m4x348 Setas (Turkey)'),
(20629, 'https://ror.org/04na4ar59', 'en', 1, 'https://ror.org/04na4ar59 Center of Informatization in the Sphere of Culture'),
(20630, 'https://ror.org/03e4qp353', 'en', 1, 'https://ror.org/03e4qp353 Sylvia Lawry Centre for Multiple Sclerosis Research'),
(20631, 'https://ror.org/011wegm62', 'no_lang_code', 1, 'https://ror.org/011wegm62 Technomar (Germany)'),
(20632, 'https://ror.org/05mzsjr54', 'no_lang_code', 1, 'https://ror.org/05mzsjr54 TechnoPhage (Portugal)'),
(20633, 'https://ror.org/02m0mz421', 'en', 1, 'https://ror.org/02m0mz421 Children''s Society'),
(20634, 'https://ror.org/05qc8r157', 'no_lang_code', 1, 'https://ror.org/05qc8r157 Portic Barcelona'),
(20635, 'https://ror.org/00narfz77', 'en', 1, 'https://ror.org/00narfz77 New Mexico Museum of Natural History and Science'),
(20636, 'https://ror.org/03mwysa89', 'en', 1, 'https://ror.org/03mwysa89 The Concrete Centre'),
(20637, 'https://ror.org/02mrv4556', 'en', 1, 'https://ror.org/02mrv4556 Technopolis'),
(20638, 'https://ror.org/04f79ny61', 'no_lang_code', 1, 'https://ror.org/04f79ny61 Symetrica Security (United Kingdom)'),
(20639, 'https://ror.org/03n3q3154', 'en', 1, 'https://ror.org/03n3q3154 Concrete Society'),
(20640, 'https://ror.org/0463w2783', 'en', 1, 'https://ror.org/0463w2783 Confederation of British Metalforming'),
(20641, 'https://ror.org/05jsyda60', 'no_lang_code', 1, 'https://ror.org/05jsyda60 Technoport (Luxembourg)'),
(20642, 'https://ror.org/03skmn868', 'no_lang_code', 1, 'https://ror.org/03skmn868 Saltworks Technologies (Canada)'),
(20643, 'https://ror.org/04yvhah88', 'no_lang_code', 1, 'https://ror.org/04yvhah88 SymTrend (United States)'),
(20644, 'https://ror.org/01caave54', 'no_lang_code', 1, 'https://ror.org/01caave54 Technostics (United Kingdom)'),
(20645, 'https://ror.org/00p5rpb50', 'no_lang_code', 1, 'https://ror.org/00p5rpb50 Synapse Biomedical (United States)'),
(20646, 'https://ror.org/01930h994', 'no_lang_code', 1, 'https://ror.org/01930h994 TechnoVax (United States)'),
(20647, 'https://ror.org/008nycg72', 'no_lang_code', 1, 'https://ror.org/008nycg72 SynChem (United States)'),
(20648, 'https://ror.org/02jz9yj75', 'no_lang_code', 1, 'https://ror.org/02jz9yj75 Tecmic (Portugal)'),
(20649, 'https://ror.org/006gmnk03', 'no_lang_code', 1, 'https://ror.org/006gmnk03 Tecnia'),
(20650, 'https://ror.org/04dmp9d90', 'no_lang_code', 1, 'https://ror.org/04dmp9d90 Teinsa (Spain)'),
(20651, 'https://ror.org/04m5tys43', 'it', 1, 'https://ror.org/04m5tys43 Tecnoalimenti'),
(20652, 'https://ror.org/04eq9z946', 'no_lang_code', 1, 'https://ror.org/04eq9z946 Synergetics (Belgium)'),
(20653, 'https://ror.org/05j9gf041', 'no_lang_code', 1, 'https://ror.org/05j9gf041 Merinova (Finland)'),
(20654, 'https://ror.org/01jyyrs78', 'en', 1, 'https://ror.org/01jyyrs78 Dr Edward Koch Foundation'),
(20655, 'https://ror.org/038r0hg73', 'en', 1, 'https://ror.org/038r0hg73 Environmental and Sustainable Construction Association'),
(20656, 'https://ror.org/01whdh078', 'no_lang_code', 1, 'https://ror.org/01whdh078 Positron (United States)'),
(20657, 'https://ror.org/03gvct920', 'no_lang_code', 1, 'https://ror.org/03gvct920 Tecnologia e Engenharia de Materiais (Portugal)'),
(20658, 'https://ror.org/014hb3529', 'no_lang_code', 1, 'https://ror.org/014hb3529 Synome (United Kingdom)'),
(20659, 'https://ror.org/05gx5rk78', 'no_lang_code', 1, 'https://ror.org/05gx5rk78 Spolchemie (Czechia) Spolek pro chemickou a hutní výrobu'),
(20660, 'https://ror.org/049s20792', 'en', 1, 'https://ror.org/049s20792 European Committee of Environmental Technology Suppliers Associations'),
(20661, 'https://ror.org/0233by794', 'no_lang_code', 1, 'https://ror.org/0233by794 ReNeuron (United Kingdom)'),
(20662, 'https://ror.org/00gmnqd91', 'no_lang_code', 1, 'https://ror.org/00gmnqd91 Ipsen (United Kingdom)'),
(20663, 'https://ror.org/000hzts19', 'no_lang_code', 1, 'https://ror.org/000hzts19 Synthesia Group (Spain)'),
(20664, 'https://ror.org/03zsfdv59', 'no_lang_code', 1, 'https://ror.org/03zsfdv59 TecnologĆ­as y Equipos para el Medio Ambiente (Spain)'),
(20665, 'https://ror.org/02c8rf527', 'no_lang_code', 1, 'https://ror.org/02c8rf527 Synthesis and Research (Greece)'),
(20666, 'https://ror.org/044zf4559', 'no_lang_code', 1, 'https://ror.org/044zf4559 Food Machinery Company (United Kingdom)'),
(20667, 'https://ror.org/0494t4v58', 'no_lang_code', 1, 'https://ror.org/0494t4v58 Synthesites (Greece)'),
(20668, 'https://ror.org/03f1b8d27', 'no_lang_code', 1, 'https://ror.org/03f1b8d27 Foundry (United Kingdom)'),
(20669, 'https://ror.org/0429kgt51', 'en', 1, 'https://ror.org/0429kgt51 Geophysical Institute of Israel המכון הגיאופיהי ×œ×™×©×Ø××œ'),
(20670, 'https://ror.org/019496w77', 'en', 1, 'https://ror.org/019496w77 Getty Conservation Institute'),
(20671, 'https://ror.org/01zdej617', 'no_lang_code', 1, 'https://ror.org/01zdej617 SyntheZyme (United States)'),
(20672, 'https://ror.org/03mjm4596', 'no_lang_code', 1, 'https://ror.org/03mjm4596 TYPSA Group (Spain)'),
(20673, 'https://ror.org/002ze7e15', 'no_lang_code', 1, 'https://ror.org/002ze7e15 Syntiron (United States)'),
(20674, 'https://ror.org/032qvyh31', 'en', 1, 'https://ror.org/032qvyh31 Goulandris Natural History Museum ĪœĪæĻ…ĻƒĪµĪÆĪæ ΓουλανΓρή Ī¦Ļ…ĻƒĪ¹ĪŗĪ®Ļ‚ Ī™ĻƒĻ„ĪæĻĪÆĪ±Ļ‚'),
(20675, 'https://ror.org/02141x466', 'no_lang_code', 1, 'https://ror.org/02141x466 Subsea 7 (United Kingdom)'),
(20676, 'https://ror.org/0345me483', 'no_lang_code', 1, 'https://ror.org/0345me483 Origo (Iceland)'),
(20677, 'https://ror.org/03fbb4j63', 'no_lang_code', 1, 'https://ror.org/03fbb4j63 Finisar (Sweden)'),
(20678, 'https://ror.org/04bkge991', 'no_lang_code', 1, 'https://ror.org/04bkge991 Next Technology Tecnotessile (Italy)'),
(20679, 'https://ror.org/05eqgj969', 'en', 1, 'https://ror.org/05eqgj969 Austrian Society for Environment and Technology Ɩsterreichische Gesellschaft für Umwelt und Technik'),
(20680, 'https://ror.org/00xhnny30', 'en', 1, 'https://ror.org/00xhnny30 Ideas Foundation'),
(20681, 'https://ror.org/024q7v561', 'no_lang_code', 1, 'https://ror.org/024q7v561 Synyo (Austria)'),
(20682, 'https://ror.org/0156q9695', 'no_lang_code', 1, 'https://ror.org/0156q9695 Tecsol'),
(20683, 'https://ror.org/01vyfs773', 'no_lang_code', 1, 'https://ror.org/01vyfs773 NETE (United States)'),
(20684, 'https://ror.org/02t80dd48', 'no_lang_code', 1, 'https://ror.org/02t80dd48 Teem Photonics (France)'),
(20685, 'https://ror.org/01rxwxv45', 'no_lang_code', 1, 'https://ror.org/01rxwxv45 Miba (United Kingdom)'),
(20686, 'https://ror.org/03atgj124', 'en', 1, 'https://ror.org/03atgj124 World Obesity Federation'),
(20687, 'https://ror.org/03673ew24', 'lv', 1, 'https://ror.org/03673ew24 Tehnoloģiju Attīstības Forums'),
(20688, 'https://ror.org/02zax3c17', 'en', 1, 'https://ror.org/02zax3c17 Jerusalem Institute for Israel Studies'),
(20689, 'https://ror.org/011w61724', 'no_lang_code', 1, 'https://ror.org/011w61724 Sysgo (Czechia)'),
(20690, 'https://ror.org/05v8dd891', 'no_lang_code', 1, 'https://ror.org/05v8dd891 Tekkva Consult (Denmark)'),
(20691, 'https://ror.org/00s6gwy34', 'no_lang_code', 1, 'https://ror.org/00s6gwy34 Team Neurodynamics (United States)'),
(20692, 'https://ror.org/015mnn720', 'en', 1, 'https://ror.org/015mnn720 Learning Partnership'),
(20693, 'https://ror.org/02zyq5q98', 'no_lang_code', 1, 'https://ror.org/02zyq5q98 Meyer Turku (Finland)'),
(20694, 'https://ror.org/02fg51t11', 'en', 1, 'https://ror.org/02fg51t11 Safe Drinking Water Foundation'),
(20695, 'https://ror.org/04eq6c443', 'no_lang_code', 1, 'https://ror.org/04eq6c443 The Maltsters'' Association of Great Britain (United Kingdom)'),
(20696, 'https://ror.org/05g0b4875', 'no_lang_code', 1, 'https://ror.org/05g0b4875 Teknimed (France)'),
(20697, 'https://ror.org/00skbbq95', 'sv', 1, 'https://ror.org/00skbbq95 LantmƤteriet Swedish National Land Survey'),
(20698, 'https://ror.org/012k6p920', 'no_lang_code', 1, 'https://ror.org/012k6p920 National Microelectronics Applications Centre (Ireland)'),
(20699, 'https://ror.org/040nc8096', 'no_lang_code', 1, 'https://ror.org/040nc8096 Teknoloji Arastirma ve Gelistirme Endustriyel Urunler Bilisim Teknolojileri San Tic'),
(20700, 'https://ror.org/00eqcpt58', 'no_lang_code', 1, 'https://ror.org/00eqcpt58 NAVSYS (United States)'),
(20701, 'https://ror.org/011nrx077', 'no_lang_code', 1, 'https://ror.org/011nrx077 Systematic (Netherlands)'),
(20702, 'https://ror.org/01skbhc43', 'no_lang_code', 1, 'https://ror.org/01skbhc43 Ogilvy (Greece)'),
(20703, 'https://ror.org/059n14w82', 'no_lang_code', 1, 'https://ror.org/059n14w82 TomTom (Belgium)'),
(20704, 'https://ror.org/05tjt1495', 'no_lang_code', 1, 'https://ror.org/05tjt1495 Systèmes d''Information à Référence Spatiale (France)'),
(20705, 'https://ror.org/02pvy4b66', 'no_lang_code', 1, 'https://ror.org/02pvy4b66 TomTom (Germany)'),
(20706, 'https://ror.org/04xfzjn96', 'no_lang_code', 1, 'https://ror.org/04xfzjn96 Polytec Research (Norway)'),
(20707, 'https://ror.org/056j3a225', 'no_lang_code', 1, 'https://ror.org/056j3a225 Tele-Rilevamento Europa (Italy)'),
(20708, 'https://ror.org/00ydqb522', 'no_lang_code', 1, 'https://ror.org/00ydqb522 Systemexpert Consulting'),
(20709, 'https://ror.org/05g269s74', 'no_lang_code', 1, 'https://ror.org/05g269s74 Systemite (Sweden)'),
(20710, 'https://ror.org/02t5kd339', 'en', 1, 'https://ror.org/02t5kd339 Ontario Aggregate Resources Corporation'),
(20711, 'https://ror.org/0552sh187', 'no_lang_code', 1, 'https://ror.org/0552sh187 Cohort (United Kingdom)'),
(20712, 'https://ror.org/05nm1mf61', 'no_lang_code', 1, 'https://ror.org/05nm1mf61 Cegos (Italy)'),
(20713, 'https://ror.org/05sjfxm32', 'en', 1, 'https://ror.org/05sjfxm32 Orders of St John Care Trust'),
(20714, 'https://ror.org/03dqd5c54', 'en', 1, 'https://ror.org/03dqd5c54 Telecommunications Policy Research Conference'),
(20715, 'https://ror.org/05v3fv602', 'no_lang_code', 1, 'https://ror.org/05v3fv602 Endeavour (United Kingdom)'),
(20716, 'https://ror.org/04d567260', 'en', 1, 'https://ror.org/04d567260 Protein Society'),
(20717, 'https://ror.org/05bhh5n73', 'no_lang_code', 1, 'https://ror.org/05bhh5n73 Utility Systems Science and Software (United States)'),
(20718, 'https://ror.org/0335wvc55', 'no_lang_code', 1, 'https://ror.org/0335wvc55 Teledyne Technologies (Canada)'),
(20719, 'https://ror.org/03rt6nv56', 'no_lang_code', 1, 'https://ror.org/03rt6nv56 PowerCell (Sweden)'),
(20720, 'https://ror.org/04sjj9841', 'no_lang_code', 1, 'https://ror.org/04sjj9841 Avid (Germany)'),
(20721, 'https://ror.org/00vqfx781', 'no_lang_code', 1, 'https://ror.org/00vqfx781 Systran (France)'),
(20722, 'https://ror.org/02cj2g073', 'no_lang_code', 1, 'https://ror.org/02cj2g073 Syzygy Memory Plastics (United States)'),
(20723, 'https://ror.org/024gy8x37', 'en', 1, 'https://ror.org/024gy8x37 Population Reference Bureau'),
(20724, 'https://ror.org/00z4t3785', 'en', 1, 'https://ror.org/00z4t3785 The Rotherham NHS Foundation Trust'),
(20725, 'https://ror.org/04s4egp92', 'no', 1, 'https://ror.org/04s4egp92 Tel-Tek'),
(20726, 'https://ror.org/05war1b27', 'no_lang_code', 1, 'https://ror.org/05war1b27 TQ Environmental (United Kingdom)'),
(20727, 'https://ror.org/024w5t184', 'en', 1, 'https://ror.org/024w5t184 Runnymede Trust'),
(20728, 'https://ror.org/04a52t496', 'no_lang_code', 1, 'https://ror.org/04a52t496 Teleprime (United States)'),
(20729, 'https://ror.org/022y4t490', 'en', 1, 'https://ror.org/022y4t490 Sarah Samuels Center for Public Health & Evaluation'),
(20730, 'https://ror.org/05hk9ey90', 'en', 1, 'https://ror.org/05hk9ey90 Sage Gateshead'),
(20731, 'https://ror.org/02hxnx131', 'no_lang_code', 1, 'https://ror.org/02hxnx131 T-Connect (Italy)'),
(20732, 'https://ror.org/04xmxqq10', 'no_lang_code', 1, 'https://ror.org/04xmxqq10 Teles (Germany)'),
(20733, 'https://ror.org/02f28xw52', 'no_lang_code', 1, 'https://ror.org/02f28xw52 Verisante Technology (Canada)'),
(20734, 'https://ror.org/01sx0ab33', 'no_lang_code', 1, 'https://ror.org/01sx0ab33 Technology Transfer and Innovation (Italy) Trasferimento Tecnologico e Innovazione'),
(20735, 'https://ror.org/04qd9zx60', 'no_lang_code', 1, 'https://ror.org/04qd9zx60 Swatch Group (Switzerland)'),
(20736, 'https://ror.org/030tx1703', 'no_lang_code', 1, 'https://ror.org/030tx1703 Tacchella Macchine (Italy)'),
(20737, 'https://ror.org/03rt1dc30', 'en', 1, 'https://ror.org/03rt1dc30 Swedish Foundry Association'),
(20738, 'https://ror.org/03etsty64', 'no_lang_code', 1, 'https://ror.org/03etsty64 Tadiso (United States)'),
(20739, 'https://ror.org/02vbxvt28', 'en', 1, 'https://ror.org/02vbxvt28 Swedish Institute of Assistive Technology'),
(20740, 'https://ror.org/032wwjz85', 'no_lang_code', 1, 'https://ror.org/032wwjz85 TELINT RTD Consultancy Services (United Kingdom)'),
(20741, 'https://ror.org/03x2gtw59', 'no_lang_code', 1, 'https://ror.org/03x2gtw59 TagArray (United States)'),
(20742, 'https://ror.org/03kk6t048', 'no_lang_code', 1, 'https://ror.org/03kk6t048 Taitech (United States)'),
(20743, 'https://ror.org/03s9xhv46', 'no_lang_code', 1, 'https://ror.org/03s9xhv46 Take The Wind (Portugal)'),
(20744, 'https://ror.org/047fp1735', 'en', 1, 'https://ror.org/047fp1735 Mineral Products Association'),
(20745, 'https://ror.org/04ttx6h98', 'en', 1, 'https://ror.org/04ttx6h98 Talcott Mountain Science Center for Student Involvement'),
(20746, 'https://ror.org/00qthcq23', 'no_lang_code', 1, 'https://ror.org/00qthcq23 Talent Systems (Greece)'),
(20747, 'https://ror.org/00w31we65', 'no_lang_code', 1, 'https://ror.org/00w31we65 Talisman (United States)'),
(20748, 'https://ror.org/01g8wqh49', 'no_lang_code', 1, 'https://ror.org/01g8wqh49 Talkamatic (Sweden)'),
(20749, 'https://ror.org/046m09909', 'no_lang_code', 1, 'https://ror.org/046m09909 Venture Chemicals (United States)'),
(20750, 'https://ror.org/052j6vb86', 'no_lang_code', 1, 'https://ror.org/052j6vb86 WPP (Belgium)'),
(20751, 'https://ror.org/00kxa2r20', 'no_lang_code', 1, 'https://ror.org/00kxa2r20 Talking Fingers (United States)'),
(20752, 'https://ror.org/01wnnzc43', 'no_lang_code', 1, 'https://ror.org/01wnnzc43 Tobii (Sweden)'),
(20753, 'https://ror.org/05sj65q02', 'no_lang_code', 1, 'https://ror.org/05sj65q02 THAP Group (United States)'),
(20754, 'https://ror.org/003wrb977', 'en', 1, 'https://ror.org/003wrb977 Toiyabe Indian Health Project'),
(20755, 'https://ror.org/059ymwe78', 'no_lang_code', 1, 'https://ror.org/059ymwe78 Tangerine (United Kingdom)'),
(20756, 'https://ror.org/04a2tdz26', 'no_lang_code', 1, 'https://ror.org/04a2tdz26 TheraTarget (United States)'),
(20757, 'https://ror.org/01rhd8q72', 'no_lang_code', 1, 'https://ror.org/01rhd8q72 Tolsa (Spain)'),
(20758, 'https://ror.org/00h7v7847', 'no_lang_code', 1, 'https://ror.org/00h7v7847 Tanneries du Puy (France)'),
(20759, 'https://ror.org/01qyk0172', 'no_lang_code', 1, 'https://ror.org/01qyk0172 Tantalus Systems (United States)'),
(20760, 'https://ror.org/02wp8az94', 'no_lang_code', 1, 'https://ror.org/02wp8az94 HolidayCheck Group (Germany)'),
(20761, 'https://ror.org/03d8nc804', 'en', 1, 'https://ror.org/03d8nc804 Tantramar Wetlands Centre'),
(20762, 'https://ror.org/00dhh3h17', 'no_lang_code', 1, 'https://ror.org/00dhh3h17 Tokamak Energy (United Kingdom)'),
(20763, 'https://ror.org/03891kb88', 'en', 1, 'https://ror.org/03891kb88 Tanzania Youth Alliance'),
(20764, 'https://ror.org/01a8rv278', 'no_lang_code', 1, 'https://ror.org/01a8rv278 Thermacore (United Kingdom)'),
(20765, 'https://ror.org/0490r6s77', 'en', 1, 'https://ror.org/0490r6s77 Tapestry Institute'),
(20766, 'https://ror.org/036h2g521', 'no_lang_code', 1, 'https://ror.org/036h2g521 Tony Gee and Partners'),
(20767, 'https://ror.org/00wrkkt81', 'no_lang_code', 1, 'https://ror.org/00wrkkt81 Kemrock Industries And Exports (Italy)'),
(20768, 'https://ror.org/0591ezr39', 'no_lang_code', 1, 'https://ror.org/0591ezr39 Desso (Belgium)'),
(20769, 'https://ror.org/013n8jm40', 'no_lang_code', 1, 'https://ror.org/013n8jm40 ThƩsame (France)'),
(20770, 'https://ror.org/0148s0r28', 'no_lang_code', 1, 'https://ror.org/0148s0r28 Pharmaxis (Canada)'),
(20771, 'https://ror.org/01hwpsz06', 'en', 1, 'https://ror.org/01hwpsz06 Federal Food Safety and Veterinary Office'),
(20772, 'https://ror.org/02h7txh22', 'en', 1, 'https://ror.org/02h7txh22 Sage Colleges'),
(20773, 'https://ror.org/039br8e21', 'fr', 1, 'https://ror.org/039br8e21 Topos Aquitaine'),
(20774, 'https://ror.org/04bhtgq69', 'no_lang_code', 1, 'https://ror.org/04bhtgq69 Thien eDrives (Austria)'),
(20775, 'https://ror.org/05hpjvd22', 'en', 1, 'https://ror.org/05hpjvd22 Republican Research and Practical Center for Epidemiology and Microbiology Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(20776, 'https://ror.org/0399cww89', 'no_lang_code', 1, 'https://ror.org/0399cww89 Toppan (United Kingdom)'),
(20777, 'https://ror.org/02szcd955', 'no_lang_code', 1, 'https://ror.org/02szcd955 Positive Action'),
(20778, 'https://ror.org/03cn75x12', 'no_lang_code', 1, 'https://ror.org/03cn75x12 Elwyn'),
(20779, 'https://ror.org/02yzpv617', 'no_lang_code', 1, 'https://ror.org/02yzpv617 Piramal (Canada)'),
(20780, 'https://ror.org/02q65bp28', 'no_lang_code', 1, 'https://ror.org/02q65bp28 Tordivel (Norway)'),
(20781, 'https://ror.org/02hjh3741', 'no_lang_code', 1, 'https://ror.org/02hjh3741 THINK3 (France)'),
(20782, 'https://ror.org/04kmxp840', 'no_lang_code', 1, 'https://ror.org/04kmxp840 Target (Germany)'),
(20783, 'https://ror.org/01sj9rw78', 'no_lang_code', 1, 'https://ror.org/01sj9rw78 Torrecid (Spain)'),
(20784, 'https://ror.org/03g5fjs36', 'no_lang_code', 1, 'https://ror.org/03g5fjs36 Third Dimension Technologies (United States)'),
(20785, 'https://ror.org/0231mbz86', 'no_lang_code', 1, 'https://ror.org/0231mbz86 Anglo American (United Kingdom)'),
(20786, 'https://ror.org/02dchwm66', 'no_lang_code', 1, 'https://ror.org/02dchwm66 Third Eye Diagnostics (United States)'),
(20787, 'https://ror.org/00sp59e90', 'no_lang_code', 1, 'https://ror.org/00sp59e90 Toscana Biomarkers (Italy)'),
(20788, 'https://ror.org/02kh2f959', 'en', 1, 'https://ror.org/02kh2f959 Marine Scotland'),
(20789, 'https://ror.org/03v1s7z10', 'no_lang_code', 1, 'https://ror.org/03v1s7z10 Norcontel'),
(20790, 'https://ror.org/03hqvaq14', 'en', 1, 'https://ror.org/03hqvaq14 Thomas Nelson Community College'),
(20791, 'https://ror.org/026enhk32', 'no_lang_code', 1, 'https://ror.org/026enhk32 Tarp (United States)'),
(20792, 'https://ror.org/02emk4871', 'no_lang_code', 1, 'https://ror.org/02emk4871 Polyraz (Israel)'),
(20793, 'https://ror.org/016eqnh03', 'en', 1, 'https://ror.org/016eqnh03 Tartu Biotechnology Park'),
(20794, 'https://ror.org/0096wds27', 'en', 1, 'https://ror.org/0096wds27 Tartu Science Park'),
(20795, 'https://ror.org/02vt0t860', 'no_lang_code', 1, 'https://ror.org/02vt0t860 In-Situ (United States)'),
(20796, 'https://ror.org/019dk7w11', 'no_lang_code', 1, 'https://ror.org/019dk7w11 Touch Graphics (United States)'),
(20797, 'https://ror.org/05ppr9v64', 'no_lang_code', 1, 'https://ror.org/05ppr9v64 Posit Science (United States)'),
(20798, 'https://ror.org/00h4fan47', 'no_lang_code', 1, 'https://ror.org/00h4fan47 Tauw Group (Netherlands)'),
(20799, 'https://ror.org/04wdzge25', 'no_lang_code', 1, 'https://ror.org/04wdzge25 Semapa (Portugal)'),
(20800, 'https://ror.org/03q2kkx59', 'no_lang_code', 1, 'https://ror.org/03q2kkx59 Touchstone Research Laboratory (United States)'),
(20801, 'https://ror.org/01n2czj98', 'en', 1, 'https://ror.org/01n2czj98 Touring Club Italiano'),
(20802, 'https://ror.org/00hgk2d63', 'fr', 1, 'https://ror.org/00hgk2d63 Tourisme Transports Territoires Environnement Conseil'),
(20803, 'https://ror.org/05qteks55', 'no_lang_code', 1, 'https://ror.org/05qteks55 Ametek (United Kingdom)'),
(20804, 'https://ror.org/0297hyv43', 'en', 1, 'https://ror.org/0297hyv43 National Cancer Registrars Association'),
(20805, 'https://ror.org/05xmgd629', 'en', 1, 'https://ror.org/05xmgd629 TB HIV Care Association'),
(20806, 'https://ror.org/023wbcv08', 'no_lang_code', 1, 'https://ror.org/023wbcv08 TP Vision (Belgium)'),
(20807, 'https://ror.org/052gehj09', 'no_lang_code', 1, 'https://ror.org/052gehj09 TBC Innovations (France)'),
(20808, 'https://ror.org/00nk1fh63', 'no_lang_code', 1, 'https://ror.org/00nk1fh63 TBZ PARIV (Germany)'),
(20809, 'https://ror.org/05h3nqt19', 'no_lang_code', 1, 'https://ror.org/05h3nqt19 TC Scientific (Canada)'),
(20810, 'https://ror.org/01q2xjy72', 'no_lang_code', 1, 'https://ror.org/01q2xjy72 ReProtect (United States)'),
(20811, 'https://ror.org/042647v76', 'en', 1, 'https://ror.org/042647v76 Together Enhancing Awareness Coalition'),
(20812, 'https://ror.org/01mc2bj25', 'no_lang_code', 1, 'https://ror.org/01mc2bj25 Thor Technologies (United States)'),
(20813, 'https://ror.org/0395v5z30', 'en', 1, 'https://ror.org/0395v5z30 Austrian Institute of Spatial Planning'),
(20814, 'https://ror.org/03f511537', 'no_lang_code', 1, 'https://ror.org/03f511537 Zumtobel Group (United Kingdom)'),
(20815, 'https://ror.org/02sca6s74', 'no_lang_code', 1, 'https://ror.org/02sca6s74 Tracasa (Spain)'),
(20816, 'https://ror.org/04nt4km71', 'no_lang_code', 1, 'https://ror.org/04nt4km71 Ventiva (United States)'),
(20817, 'https://ror.org/02q5k5n31', 'en', 1, 'https://ror.org/02q5k5n31 Colorado Women''s College'),
(20818, 'https://ror.org/03v96p621', 'no_lang_code', 1, 'https://ror.org/03v96p621 TenCate (Netherlands)'),
(20819, 'https://ror.org/014m3pp97', 'en', 1, 'https://ror.org/014m3pp97 San Diego Mesa College'),
(20820, 'https://ror.org/02b34td92', 'no_lang_code', 1, 'https://ror.org/02b34td92 Ai Corporation (United Kingdom)'),
(20821, 'https://ror.org/05p5dfv61', 'en', 1, 'https://ror.org/05p5dfv61 Tennessee Voices for Children'),
(20822, 'https://ror.org/0563nxn44', 'en', 1, 'https://ror.org/0563nxn44 Tennessee Wesleyan College'),
(20823, 'https://ror.org/03tqyjq53', 'no_lang_code', 1, 'https://ror.org/03tqyjq53 Burness Corlett Three Quays (United Kingdom)'),
(20824, 'https://ror.org/05kzvw994', 'en', 1, 'https://ror.org/05kzvw994 Three Rivers Community College'),
(20825, 'https://ror.org/014pn4247', 'no_lang_code', 1, 'https://ror.org/014pn4247 FitBionic (United States)'),
(20826, 'https://ror.org/00qsw2f44', 'no_lang_code', 1, 'https://ror.org/00qsw2f44 Industrins Kraft Abp Teollisuuden Voima (Finland)'),
(20827, 'https://ror.org/02mvdhz93', 'no_lang_code', 1, 'https://ror.org/02mvdhz93 Aqua Metrology Systems (United States)'),
(20828, 'https://ror.org/03zttj648', 'no_lang_code', 1, 'https://ror.org/03zttj648 Tractell (United States)'),
(20829, 'https://ror.org/01ms7ay74', 'no_lang_code', 1, 'https://ror.org/01ms7ay74 Permobil (United States)'),
(20830, 'https://ror.org/01dp3s597', 'en', 1, 'https://ror.org/01dp3s597 Thresholds'),
(20831, 'https://ror.org/03hh4xv28', 'en', 1, 'https://ror.org/03hh4xv28 Trades Union Congress'),
(20832, 'https://ror.org/04f1w1v43', 'no_lang_code', 1, 'https://ror.org/04f1w1v43 Teracom (Sweden)'),
(20833, 'https://ror.org/0489xkg05', 'no_lang_code', 1, 'https://ror.org/0489xkg05 Traficon (Finland)'),
(20834, 'https://ror.org/01093z329', 'no_lang_code', 1, 'https://ror.org/01093z329 SAS Institute (United States)'),
(20835, 'https://ror.org/03efy3764', 'no_lang_code', 1, 'https://ror.org/03efy3764 THT Control Oy (Finland)'),
(20836, 'https://ror.org/05eg6hv92', 'no_lang_code', 1, 'https://ror.org/05eg6hv92 Thunderhead Engineering (United States)'),
(20837, 'https://ror.org/01e2rnt89', 'en', 1, 'https://ror.org/01e2rnt89 Trans European Policy Studies Association'),
(20838, 'https://ror.org/00f5s9131', 'no_lang_code', 1, 'https://ror.org/00f5s9131 TeraPore Technologies (United States)'),
(20839, 'https://ror.org/03d1dz577', 'no_lang_code', 1, 'https://ror.org/03d1dz577 WSP Sverige (Sweden)'),
(20840, 'https://ror.org/02zy8pf47', 'no_lang_code', 1, 'https://ror.org/02zy8pf47 TransƉnergie (France)'),
(20841, 'https://ror.org/02nc4gn73', 'da', 1, 'https://ror.org/02nc4gn73 Thomas B Thriges Fond'),
(20842, 'https://ror.org/05a2d1861', 'no_lang_code', 1, 'https://ror.org/05a2d1861 Transfaction (United Kingdom)'),
(20843, 'https://ror.org/009q43145', 'no_lang_code', 1, 'https://ror.org/009q43145 Transfer Devices (United States)'),
(20844, 'https://ror.org/02ddk7s51', 'es', 1, 'https://ror.org/02ddk7s51 TICBioMed'),
(20845, 'https://ror.org/0294g4w14', 'no_lang_code', 1, 'https://ror.org/0294g4w14 TerOpta (United Kingdom)'),
(20846, 'https://ror.org/006gxfz55', 'no_lang_code', 1, 'https://ror.org/006gxfz55 Terminal San Giorgio (Italy)'),
(20847, 'https://ror.org/01z0qcv19', 'en', 1, 'https://ror.org/01z0qcv19 Oakwater Laboratories'),
(20848, 'https://ror.org/03egsqc60', 'no_lang_code', 1, 'https://ror.org/03egsqc60 TiConUno (Italy)'),
(20849, 'https://ror.org/0523dv891', 'no_lang_code', 1, 'https://ror.org/0523dv891 3R Agrocarbon (Hungary)'),
(20850, 'https://ror.org/04x2ven38', 'en', 1, 'https://ror.org/04x2ven38 Tidewater Community College'),
(20851, 'https://ror.org/00jtwxn03', 'pt', 1, 'https://ror.org/00jtwxn03 Terra Scenica'),
(20852, 'https://ror.org/02q8ggc38', 'en', 1, 'https://ror.org/02q8ggc38 Transnational Family Research Institute'),
(20853, 'https://ror.org/00m8jfr10', 'no_lang_code', 1, 'https://ror.org/00m8jfr10 Destia'),
(20854, 'https://ror.org/056twcg53', 'en', 1, 'https://ror.org/056twcg53 Terros'),
(20855, 'https://ror.org/00ghtc020', 'no_lang_code', 1, 'https://ror.org/00ghtc020 Data Sciences International (United States)'),
(20856, 'https://ror.org/02e9hj615', 'no_lang_code', 1, 'https://ror.org/02e9hj615 Transpire (United States)'),
(20857, 'https://ror.org/02a6j1h04', 'fi', 1, 'https://ror.org/02a6j1h04 Tietotalo'),
(20858, 'https://ror.org/00e2dwm47', 'no_lang_code', 1, 'https://ror.org/00e2dwm47 RenaSci (United Kingdom)'),
(20859, 'https://ror.org/01ghjfc28', 'en', 1, 'https://ror.org/01ghjfc28 Tigard-Tualatin School District'),
(20860, 'https://ror.org/03bmvpf93', 'no_lang_code', 1, 'https://ror.org/03bmvpf93 Tesco (United Kingdom)'),
(20861, 'https://ror.org/00m4tdv39', 'no_lang_code', 1, 'https://ror.org/00m4tdv39 TeselaGen Biotechnology (United States)'),
(20862, 'https://ror.org/01mzcg363', 'no_lang_code', 1, 'https://ror.org/01mzcg363 Tiger Optics (United States)'),
(20863, 'https://ror.org/02enncp58', 'no_lang_code', 1, 'https://ror.org/02enncp58 Tigerlily Films (United Kingdom)'),
(20864, 'https://ror.org/00tymhf19', 'en', 1, 'https://ror.org/00tymhf19 Technology Innovation International'),
(20865, 'https://ror.org/04pyed255', 'en', 1, 'https://ror.org/04pyed255 Transport Systems Catapult'),
(20866, 'https://ror.org/05gzs4q18', 'no_lang_code', 1, 'https://ror.org/05gzs4q18 Tesla Engineering (United Kingdom)'),
(20867, 'https://ror.org/04t3bd569', 'no_lang_code', 1, 'https://ror.org/04t3bd569 Power Plus Communications (Germany)'),
(20868, 'https://ror.org/02e2avb86', 'en', 1, 'https://ror.org/02e2avb86 Information Technology Foundation for Education'),
(20869, 'https://ror.org/00fpcwp04', 'no_lang_code', 1, 'https://ror.org/00fpcwp04 Tessella (United Kingdom)'),
(20870, 'https://ror.org/0272t8w72', 'no_lang_code', 1, 'https://ror.org/0272t8w72 Naeva Tec (Spain)'),
(20871, 'https://ror.org/022vq0k77', 'no_lang_code', 1, 'https://ror.org/022vq0k77 Test Labs International (Canada)'),
(20872, 'https://ror.org/05sed7d42', 'no_lang_code', 1, 'https://ror.org/05sed7d42 Tingtun (Norway)'),
(20873, 'https://ror.org/05r2h7161', 'en', 1, 'https://ror.org/05r2h7161 Test Positive Aware Network'),
(20874, 'https://ror.org/05ddtd277', 'no_lang_code', 1, 'https://ror.org/05ddtd277 Tinsley Bridge Group'),
(20875, 'https://ror.org/0474evh54', 'en', 1, 'https://ror.org/0474evh54 Tioga County Partnership for Community Health'),
(20876, 'https://ror.org/00aqcbq31', 'no_lang_code', 1, 'https://ror.org/00aqcbq31 Testmark Laboratories (Canada)'),
(20877, 'https://ror.org/021wwet11', 'no_lang_code', 1, 'https://ror.org/021wwet11 Transvalor (France)'),
(20878, 'https://ror.org/04yeh8h63', 'en', 1, 'https://ror.org/04yeh8h63 General Secretariat for Research and Technology'),
(20879, 'https://ror.org/01z947v86', 'no_lang_code', 1, 'https://ror.org/01z947v86 Tetra Corporation (United States)'),
(20880, 'https://ror.org/02mmf4x63', 'no_lang_code', 1, 'https://ror.org/02mmf4x63 Tetra Therapeutics (United States)'),
(20881, 'https://ror.org/027xm5n95', 'en', 1, 'https://ror.org/027xm5n95 National Research and Education Network'),
(20882, 'https://ror.org/054gfsx77', 'no_lang_code', 1, 'https://ror.org/054gfsx77 Techno Innovation South Tyrol (Italy)'),
(20883, 'https://ror.org/03t8fag37', 'no_lang_code', 1, 'https://ror.org/03t8fag37 Tiscali (Italy)'),
(20884, 'https://ror.org/01necnd72', 'no_lang_code', 1, 'https://ror.org/01necnd72 Tisec (Canada)'),
(20885, 'https://ror.org/015c3k777', 'en', 1, 'https://ror.org/015c3k777 Texans Standing Tall'),
(20886, 'https://ror.org/02p4t4z91', 'no_lang_code', 1, 'https://ror.org/02p4t4z91 Ori Martin (Italy)'),
(20887, 'https://ror.org/008rp3t36', 'no_lang_code', 1, 'https://ror.org/008rp3t36 Ocera Therapeutics (United States)'),
(20888, 'https://ror.org/04rtgz764', 'en', 1, 'https://ror.org/04rtgz764 Texas Center for Infectious Disease'),
(20889, 'https://ror.org/03a1a6r50', 'no_lang_code', 1, 'https://ror.org/03a1a6r50 Trasys International (Belgium)'),
(20890, 'https://ror.org/01mdqeh78', 'en', 1, 'https://ror.org/01mdqeh78 Agricultural University of Georgia'),
(20891, 'https://ror.org/005zc2807', 'no_lang_code', 1, 'https://ror.org/005zc2807 Tissue Regeneration Systems (United States)'),
(20892, 'https://ror.org/01anxpp02', 'no_lang_code', 1, 'https://ror.org/01anxpp02 TissueVision (United States)'),
(20893, 'https://ror.org/05as1qb59', 'en', 1, 'https://ror.org/05as1qb59 Texas Higher Education Coordinating Board'),
(20894, 'https://ror.org/00kcqj673', 'no_lang_code', 1, 'https://ror.org/00kcqj673 Grupo TTT (Spain)'),
(20895, 'https://ror.org/0485xdc86', 'no_lang_code', 1, 'https://ror.org/0485xdc86 Texas MicroPower (United States)'),
(20896, 'https://ror.org/052f9ak76', 'no_lang_code', 1, 'https://ror.org/052f9ak76 Recylex (France)'),
(20897, 'https://ror.org/05x92kx88', 'en', 1, 'https://ror.org/05x92kx88 North Dakota State Board of Higher Education'),
(20898, 'https://ror.org/050m0fd20', 'no_lang_code', 1, 'https://ror.org/050m0fd20 Texilia (Italy)'),
(20899, 'https://ror.org/02k8yy996', 'no_lang_code', 1, 'https://ror.org/02k8yy996 TLS Technik Spezialpulver (Germany)'),
(20900, 'https://ror.org/048tcym87', 'no_lang_code', 1, 'https://ror.org/048tcym87 Treibacher (Austria)'),
(20901, 'https://ror.org/03862pz95', 'no_lang_code', 1, 'https://ror.org/03862pz95 Trellis Bioscience (United States)'),
(20902, 'https://ror.org/03q8k9q03', 'no_lang_code', 1, 'https://ror.org/03q8k9q03 Huntsman (United Kingdom)'),
(20903, 'https://ror.org/056w4rq63', 'no_lang_code', 1, 'https://ror.org/056w4rq63 Trentino Network (Italy)'),
(20904, 'https://ror.org/02rrrky22', 'no_lang_code', 1, 'https://ror.org/02rrrky22 Development Delivery International'),
(20905, 'https://ror.org/02b1nt179', 'no_lang_code', 1, 'https://ror.org/02b1nt179 Harvard Bioscience (United States)'),
(20906, 'https://ror.org/05skzv947', 'no_lang_code', 1, 'https://ror.org/05skzv947 CTT Group (Canada)'),
(20907, 'https://ror.org/059g9tt96', 'no_lang_code', 1, 'https://ror.org/059g9tt96 Finisar (Germany)'),
(20908, 'https://ror.org/00m8gx614', 'no_lang_code', 1, 'https://ror.org/00m8gx614 Palomino System Innovations (Canada)'),
(20909, 'https://ror.org/02aye8x76', 'no_lang_code', 1, 'https://ror.org/02aye8x76 Triarii (Netherlands)'),
(20910, 'https://ror.org/02a9dqv95', 'no_lang_code', 1, 'https://ror.org/02a9dqv95 Trias (Greece)'),
(20911, 'https://ror.org/02cs9t297', 'no_lang_code', 1, 'https://ror.org/02cs9t297 Thales (Austria)'),
(20912, 'https://ror.org/01x74qw27', 'no_lang_code', 1, 'https://ror.org/01x74qw27 Tribo Flow Separations (United States)'),
(20913, 'https://ror.org/02d994c36', 'no_lang_code', 1, 'https://ror.org/02d994c36 Aerogeodezijos institutas Institute of Aerial Geodesy (Lithuania)'),
(20914, 'https://ror.org/02mhr7958', 'en', 1, 'https://ror.org/02mhr7958 Positive Impact'),
(20915, 'https://ror.org/017056r72', 'no_lang_code', 1, 'https://ror.org/017056r72 Thales (Belgium)'),
(20916, 'https://ror.org/02fb1gt16', 'no_lang_code', 1, 'https://ror.org/02fb1gt16 Tribosonics (United Kingdom)'),
(20917, 'https://ror.org/04wsphp71', 'en', 1, 'https://ror.org/04wsphp71 Port of Gothenburg'),
(20918, 'https://ror.org/0529f2p24', 'no_lang_code', 1, 'https://ror.org/0529f2p24 Trillium Therapeutics (Canada)'),
(20919, 'https://ror.org/02cmcc109', 'no_lang_code', 1, 'https://ror.org/02cmcc109 TRIM edicine (United States)'),
(20920, 'https://ror.org/01b06j989', 'no_lang_code', 1, 'https://ror.org/01b06j989 Ubiquitous Energy (United States)'),
(20921, 'https://ror.org/05gj0xf20', 'no_lang_code', 1, 'https://ror.org/05gj0xf20 Ubisense'),
(20922, 'https://ror.org/031q3mt20', 'no_lang_code', 1, 'https://ror.org/031q3mt20 UbiVac (United States)'),
(20923, 'https://ror.org/02fpgs304', 'no_lang_code', 1, 'https://ror.org/02fpgs304 Trimek (Spain)'),
(20924, 'https://ror.org/04qsyx010', 'no_lang_code', 1, 'https://ror.org/04qsyx010 TriOS Mess und Datentechnik (Germany)'),
(20925, 'https://ror.org/04f33ym80', 'no_lang_code', 1, 'https://ror.org/04f33ym80 Triple Ring Technologies (United States)'),
(20926, 'https://ror.org/03ytfqd86', 'no_lang_code', 1, 'https://ror.org/03ytfqd86 UD-GenoMed (Hungary)'),
(20927, 'https://ror.org/0093xx764', 'no_lang_code', 1, 'https://ror.org/0093xx764 Moog (United Kingdom)'),
(20928, 'https://ror.org/03d7x2a93', 'no_lang_code', 1, 'https://ror.org/03d7x2a93 Tritech Group (United Kingdom)'),
(20929, 'https://ror.org/05cydna96', 'no_lang_code', 1, 'https://ror.org/05cydna96 TPF (Poland)'),
(20930, 'https://ror.org/04bn7c421', 'no_lang_code', 1, 'https://ror.org/04bn7c421 Trivella (Italy)'),
(20931, 'https://ror.org/05tkd5f92', 'no_lang_code', 1, 'https://ror.org/05tkd5f92 UGN-Umwelttechnik (Germany)'),
(20932, 'https://ror.org/02pkcfj18', 'no_lang_code', 1, 'https://ror.org/02pkcfj18 Trivisio Prototyping (Germany)'),
(20933, 'https://ror.org/0060wre92', 'en', 1, 'https://ror.org/0060wre92 Troitsk Institute for Innovation and Fusion Research Троицкий ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инновационных Šø Ń‚ŠµŃ€Š¼Š¾ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(20934, 'https://ror.org/01mqmer16', 'no_lang_code', 1, 'https://ror.org/01mqmer16 Hoffmann-La Roche Roche (France)'),
(20935, 'https://ror.org/03xgtvr81', 'it', 1, 'https://ror.org/03xgtvr81 Italian Labour Union Unione Italiana del Lavoro'),
(20936, 'https://ror.org/046k1jz27', 'no_lang_code', 1, 'https://ror.org/046k1jz27 Troux Technologies (Norway)'),
(20937, 'https://ror.org/05tdgzn66', 'en', 1, 'https://ror.org/05tdgzn66 Troy Community Coalition'),
(20938, 'https://ror.org/04pan0z69', 'no_lang_code', 1, 'https://ror.org/04pan0z69 Trueflaw (Finland)'),
(20939, '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'),
(20940, 'https://ror.org/02rzbnj22', 'no_lang_code', 1, 'https://ror.org/02rzbnj22 Trusted Positioning (Canada)'),
(20941, 'https://ror.org/03k0tfa09', 'no_lang_code', 1, 'https://ror.org/03k0tfa09 Trusted Renewables (United Kingdom)'),
(20942, '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'),
(20943, 'https://ror.org/03dpd7s60', 'no_lang_code', 1, 'https://ror.org/03dpd7s60 Trustor Precision Components (Sweden)'),
(20944, 'https://ror.org/0319ch597', 'no_lang_code', 1, 'https://ror.org/0319ch597 Floralis (France)'),
(20945, 'https://ror.org/01jzgmh92', 'no_lang_code', 1, 'https://ror.org/01jzgmh92 TRW Automotive (United States)'),
(20946, 'https://ror.org/04y087m76', 'no_lang_code', 1, 'https://ror.org/04y087m76 TRX Systems (United States)'),
(20947, 'https://ror.org/001eqnp72', 'no_lang_code', 1, 'https://ror.org/001eqnp72 Transeuropean Consultants for Transport, Development and Information Technology (Greece) Ī“Ī¹ĪµĻ…ĻĻ‰Ļ€Ī±ĻŠĪŗĻŽĪ½ Ī£Ļ…Ī¼Ī²ĪæĻĪ»Ļ‰Ī½ ĪœĪµĻ„Ī±Ļ†ĪæĻĻŽĪ½, Ανάπτυξης και Πληροφορικής'),
(20948, 'https://ror.org/05bkfzh58', 'en', 1, 'https://ror.org/05bkfzh58 Surfactant Associates'),
(20949, 'https://ror.org/00238wh69', 'no_lang_code', 1, 'https://ror.org/00238wh69 TSD Projects (Italy)'),
(20950, 'https://ror.org/00h3hvd98', 'no_lang_code', 1, 'https://ror.org/00h3hvd98 Linamar (Canada)'),
(20951, 'https://ror.org/01npmjh66', 'no_lang_code', 1, 'https://ror.org/01npmjh66 Team Defence Information (United Kingdom)'),
(20952, 'https://ror.org/03fknw408', 'en', 1, 'https://ror.org/03fknw408 UK Data Archive'),
(20953, 'https://ror.org/04yfnda77', 'en', 1, 'https://ror.org/04yfnda77 UK Energy Research Centre'),
(20954, 'https://ror.org/048d6we82', 'no_lang_code', 1, 'https://ror.org/048d6we82 TSM Control Systems (Ireland)'),
(20955, 'https://ror.org/05nqrfj72', 'no_lang_code', 1, 'https://ror.org/05nqrfj72 UK Power Networks'),
(20956, 'https://ror.org/03hm6e417', 'en', 1, 'https://ror.org/03hm6e417 Radiation Protection Institute'),
(20957, 'https://ror.org/024yfg990', 'en', 1, 'https://ror.org/024yfg990 Ukrainian Scientific and Research Institute of Ecological Problems'),
(20958, 'https://ror.org/0303yjn29', 'en', 1, 'https://ror.org/0303yjn29 Ukrainian scientific center of Ecology of Sea'),
(20959, 'https://ror.org/03s5kf753', 'no_lang_code', 1, 'https://ror.org/03s5kf753 ULMA Embedded Solutions'),
(20960, 'https://ror.org/01zfx2510', 'it', 1, 'https://ror.org/01zfx2510 TTS Italia'),
(20961, 'https://ror.org/01r7j6e08', 'no_lang_code', 1, 'https://ror.org/01r7j6e08 Ultima Foods (Canada)'),
(20962, 'https://ror.org/0068fs539', 'no_lang_code', 1, 'https://ror.org/0068fs539 TTS (Sweden)'),
(20963, 'https://ror.org/05s08zz66', 'no_lang_code', 1, 'https://ror.org/05s08zz66 Ultrasion (Spain)'),
(20964, 'https://ror.org/04h1c0m97', 'no_lang_code', 1, 'https://ror.org/04h1c0m97 Umweltsensortechnik (Germany)'),
(20965, 'https://ror.org/04ckzt204', 'en', 1, 'https://ror.org/04ckzt204 Distrito Escolar Unificado de Tucson Tucson Unified School District'),
(20966, 'https://ror.org/05hkcdk24', 'en', 1, 'https://ror.org/05hkcdk24 Union of Dairy Beef Food Industrialists and Producers of Turkey'),
(20967, 'https://ror.org/051ff2v60', 'en', 1, 'https://ror.org/051ff2v60 House of Experiments'),
(20968, 'https://ror.org/00xfvkq36', 'en', 1, 'https://ror.org/00xfvkq36 Vasyl'' Stus Donetsk National University Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’Š°ŃŠøŠ»Ń Š”Ń‚ŃƒŃŠ°'),
(20969, 'https://ror.org/015gsp051', 'en', 1, 'https://ror.org/015gsp051 Tuesdays Children'),
(20970, 'https://ror.org/054v95b28', 'en', 1, 'https://ror.org/054v95b28 Tufts Health Care Institute'),
(20971, 'https://ror.org/00p7b2q74', 'no_lang_code', 1, 'https://ror.org/00p7b2q74 Tunitas Therapeutics (United States)'),
(20972, 'https://ror.org/00d90r471', 'tr', 1, 'https://ror.org/00d90r471 Uluslararası Nakliyeciler Derneği'),
(20973, 'https://ror.org/02e2j2x69', 'no_lang_code', 1, 'https://ror.org/02e2j2x69 Tunstall Healthcare (United Kingdom)'),
(20974, 'https://ror.org/048xkyz52', 'no_lang_code', 1, 'https://ror.org/048xkyz52 Umbria Filler (Italy)'),
(20975, 'https://ror.org/00cedjf57', 'no_lang_code', 1, 'https://ror.org/00cedjf57 Turbocoating (Italy)'),
(20976, 'https://ror.org/009x26v36', 'no_lang_code', 1, 'https://ror.org/009x26v36 Mitsubishi Heavy Industries (Italy)'),
(20977, 'https://ror.org/05gn43523', 'no_lang_code', 1, 'https://ror.org/05gn43523 Smart Metering Systems (United Kingdom)'),
(20978, 'https://ror.org/00zthth08', 'no_lang_code', 1, 'https://ror.org/00zthth08 Uvasol (United Kingdom)'),
(20979, 'https://ror.org/03z3p7a13', 'no_lang_code', 1, 'https://ror.org/03z3p7a13 Turbowinds (Belgium)'),
(20980, 'https://ror.org/0151s7v18', 'no_lang_code', 1, 'https://ror.org/0151s7v18 Umicore (Germany)'),
(20981, 'https://ror.org/051vt5y84', 'no_lang_code', 1, 'https://ror.org/051vt5y84 Turkcell (Turkey)'),
(20982, 'https://ror.org/001szys49', 'en', 1, 'https://ror.org/001szys49 Turkish Society of HVAC and Sanitary Engineers'),
(20983, '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ı'),
(20984, 'https://ror.org/00vcz1s14', 'no_lang_code', 1, 'https://ror.org/00vcz1s14 Turner Designs (United States)'),
(20985, 'https://ror.org/03wbhaj27', 'no_lang_code', 1, 'https://ror.org/03wbhaj27 VIB Isolatietechniek (Netherlands)'),
(20986, 'https://ror.org/04e43jr31', 'no_lang_code', 1, 'https://ror.org/04e43jr31 Turris (Canada)'),
(20987, 'https://ror.org/04vq1gm90', 'en', 1, 'https://ror.org/04vq1gm90 V. Bakul Institute for Superhard Materials'),
(20988, 'https://ror.org/0532a6411', 'no_lang_code', 1, 'https://ror.org/0532a6411 Twickenham Plating Group (United Kingdom)'),
(20989, 'https://ror.org/017qp3084', 'no_lang_code', 1, 'https://ror.org/017qp3084 Vaasaett (Finland)'),
(20990, 'https://ror.org/01v7jqw26', 'en', 1, 'https://ror.org/01v7jqw26 Department of General Services'),
(20991, 'https://ror.org/01svw4c36', 'no_lang_code', 1, 'https://ror.org/01svw4c36 TwistDx (United Kingdom)'),
(20992, 'https://ror.org/00y0cw843', 'no_lang_code', 1, 'https://ror.org/00y0cw843 Scanogen (United States)'),
(20993, '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'),
(20994, 'https://ror.org/026y0w292', 'en', 1, 'https://ror.org/026y0w292 Twyford Church of England High School'),
(20995, 'https://ror.org/05yhgzh28', 'no_lang_code', 1, 'https://ror.org/05yhgzh28 Vaisala (Finland) ʋæiĢÆsƦlƦ'),
(20996, 'https://ror.org/04dd14e02', 'no_lang_code', 1, 'https://ror.org/04dd14e02 Tymora Analytical Operations (United States)'),
(20997, 'https://ror.org/01yrvea59', 'no_lang_code', 1, 'https://ror.org/01yrvea59 Valdez & Associates (United States)'),
(20998, 'https://ror.org/05h4nz838', 'no_lang_code', 1, 'https://ror.org/05h4nz838 UCO Raymond Denim (Belgium)'),
(20999, 'https://ror.org/04v85zm05', 'no_lang_code', 1, 'https://ror.org/04v85zm05 Valencell (United States)'),
(21000, 'https://ror.org/01hf1y767', 'no_lang_code', 1, 'https://ror.org/01hf1y767 Valeport (United Kingdom)'),
(21001, 'https://ror.org/01h5hcg91', 'no_lang_code', 1, 'https://ror.org/01h5hcg91 Valitor (United States)'),
(21002, 'https://ror.org/02d1znh19', 'no_lang_code', 1, 'https://ror.org/02d1znh19 Vallon (Germany)'),
(21003, 'https://ror.org/01xqc8g04', 'en', 1, 'https://ror.org/01xqc8g04 Un-Convention'),
(21004, 'https://ror.org/01bnn5p02', 'en', 1, 'https://ror.org/01bnn5p02 Uplift'),
(21005, 'https://ror.org/0256nsb38', 'no_lang_code', 1, 'https://ror.org/0256nsb38 Urba 2000'),
(21006, 'https://ror.org/04dhsfx79', 'en', 1, 'https://ror.org/04dhsfx79 Maritime Administration of Latvia'),
(21007, 'https://ror.org/056cswn75', 'no_lang_code', 1, 'https://ror.org/056cswn75 Tesi (Italy)'),
(21008, 'https://ror.org/03x3ydk90', 'en', 1, 'https://ror.org/03x3ydk90 Finansministeriet Ministry of Finance Valtiovarainministeriƶ'),
(21009, 'https://ror.org/05yat8w11', 'no_lang_code', 1, 'https://ror.org/05yat8w11 Valtronic (Switzerland)'),
(21010, 'https://ror.org/00qjwgg65', 'en', 1, 'https://ror.org/00qjwgg65 Value-Driven Design Institute'),
(21011, 'https://ror.org/00qhqx688', 'no_lang_code', 1, 'https://ror.org/00qhqx688 Ursit (Bulgaria)'),
(21012, 'https://ror.org/02pygx129', 'pl', 1, 'https://ror.org/02pygx129 Urząd Miasta Krakowa'),
(21013, 'https://ror.org/02de9p942', 'no_lang_code', 1, 'https://ror.org/02de9p942 ValveXchange (United States)'),
(21014, 'https://ror.org/02jvezs96', 'no_lang_code', 1, 'https://ror.org/02jvezs96 Vamp Tech (Italy)');
INSERT INTO `rors` VALUES
(21015, 'https://ror.org/01f0erc76', 'no_lang_code', 1, 'https://ror.org/01f0erc76 Uncopiers'),
(21016, 'https://ror.org/03daw3m97', 'no_lang_code', 1, 'https://ror.org/03daw3m97 Schlumberger (Netherlands)'),
(21017, 'https://ror.org/05w0kdr76', 'en', 1, 'https://ror.org/05w0kdr76 Us Helping Us People Into Living'),
(21018, 'https://ror.org/0004h8z94', 'en', 1, 'https://ror.org/0004h8z94 US Ignite'),
(21019, 'https://ror.org/035ennw33', 'no_lang_code', 1, 'https://ror.org/035ennw33 Vanchem Performance Chemicals (Canada)'),
(21020, 'https://ror.org/05y5wb377', 'no_lang_code', 1, 'https://ror.org/05y5wb377 Vanderpol''s Eggs (Canada)'),
(21021, 'https://ror.org/01j0sjc77', 'no_lang_code', 1, 'https://ror.org/01j0sjc77 Vanguard Foundry (United Kingdom)'),
(21022, 'https://ror.org/00m448187', 'no_lang_code', 1, 'https://ror.org/00m448187 Vantage Power (United Kingdom)'),
(21023, 'https://ror.org/04jbqz480', 'no_lang_code', 1, 'https://ror.org/04jbqz480 Variation Biotechnologies (Canada)'),
(21024, 'https://ror.org/00143hx31', 'no_lang_code', 1, 'https://ror.org/00143hx31 Varsi (Slovenia)'),
(21025, 'https://ror.org/023jjn461', 'no_lang_code', 1, 'https://ror.org/023jjn461 Varta Microbattery (Germany)'),
(21026, 'https://ror.org/00k8q6b24', 'no_lang_code', 1, 'https://ror.org/00k8q6b24 Vasade Biosciences (United States)'),
(21027, 'https://ror.org/03dwthp43', 'no_lang_code', 1, 'https://ror.org/03dwthp43 Vascular Pharmaceuticals (United States)'),
(21028, 'https://ror.org/00jat8r15', 'no_lang_code', 1, 'https://ror.org/00jat8r15 VasGene Therapeutics (United States)'),
(21029, 'https://ror.org/04t50sy53', 'sv', 1, 'https://ror.org/04t50sy53 VƤsterbottens LƤns Landsting'),
(21030, 'https://ror.org/00ejs3f24', 'no_lang_code', 1, 'https://ror.org/00ejs3f24 Unilever (Portugal)'),
(21031, 'https://ror.org/03qecha53', 'no_lang_code', 1, 'https://ror.org/03qecha53 Vaxart (United States)'),
(21032, 'https://ror.org/0198hft79', 'no_lang_code', 1, 'https://ror.org/0198hft79 Vaxcel (United States)'),
(21033, 'https://ror.org/0384gj524', 'no_lang_code', 1, 'https://ror.org/0384gj524 Diazyme (United States)'),
(21034, 'https://ror.org/04p0rqr57', 'no_lang_code', 1, 'https://ror.org/04p0rqr57 Unimetrik (Spain)'),
(21035, 'https://ror.org/05xz7ye37', 'no_lang_code', 1, 'https://ror.org/05xz7ye37 Union Biometrica (United States)'),
(21036, 'https://ror.org/056e22e24', 'en', 1, 'https://ror.org/056e22e24 Vaughn College of Aeronautics and Technology'),
(21037, 'https://ror.org/00kjgj482', 'no_lang_code', 1, 'https://ror.org/00kjgj482 VaxInnate (United States)'),
(21038, 'https://ror.org/00wjxpj07', 'en', 1, 'https://ror.org/00wjxpj07 Union County College'),
(21039, 'https://ror.org/01p12g133', 'no_lang_code', 1, 'https://ror.org/01p12g133 VBC Group (United Kingdom)'),
(21040, 'https://ror.org/014hye081', 'no_lang_code', 1, 'https://ror.org/014hye081 Maxam (Spain)'),
(21041, 'https://ror.org/05aydvg23', 'de', 1, 'https://ror.org/05aydvg23 Verband Deutscher Maschinen- und Anlagenbau'),
(21042, 'https://ror.org/04kn30428', 'no_lang_code', 1, 'https://ror.org/04kn30428 BSD Crown (Israel)'),
(21043, 'https://ror.org/018hwj434', 'en', 1, 'https://ror.org/018hwj434 Flemish Public Employment Service Vlaamse Dienst voor Arbeidsbemiddeling en Beroepsopleiding'),
(21044, 'https://ror.org/01b4rx434', 'en', 1, 'https://ror.org/01b4rx434 Union of the Baltic Cities'),
(21045, 'https://ror.org/00yn7fh07', 'en', 1, 'https://ror.org/00yn7fh07 International Union of Radioecology'),
(21046, 'https://ror.org/01vxy3v29', 'en', 1, 'https://ror.org/01vxy3v29 Eurelectric'),
(21047, 'https://ror.org/01nyfcf47', 'it', 1, 'https://ror.org/01nyfcf47 Unioncamere Piemonte'),
(21048, 'https://ror.org/01r3ms014', 'no_lang_code', 1, 'https://ror.org/01r3ms014 U-Hopper (Italy)'),
(21049, 'https://ror.org/02vvsd246', 'no_lang_code', 1, 'https://ror.org/02vvsd246 Vorbeck (United States)'),
(21050, 'https://ror.org/0504g5x95', 'no_lang_code', 1, 'https://ror.org/0504g5x95 Vornia Biomaterials (Ireland)'),
(21051, 'https://ror.org/00fxhtz28', 'no_lang_code', 1, 'https://ror.org/00fxhtz28 VORtech (Netherlands)'),
(21052, 'https://ror.org/05x9r8j38', 'no_lang_code', 1, 'https://ror.org/05x9r8j38 Vector Fabrics (Netherlands)'),
(21053, 'https://ror.org/02wr25f53', 'no_lang_code', 1, 'https://ror.org/02wr25f53 Unisense (Denmark)'),
(21054, 'https://ror.org/015a43103', 'no_lang_code', 1, 'https://ror.org/015a43103 Unisoft (Romania)'),
(21055, 'https://ror.org/00qnqcd72', 'no_lang_code', 1, 'https://ror.org/00qnqcd72 Vorwerk (Germany)'),
(21056, 'https://ror.org/0220q4w51', 'en', 1, 'https://ror.org/0220q4w51 WEGEMT'),
(21057, 'https://ror.org/032j67572', 'no_lang_code', 1, 'https://ror.org/032j67572 Vossloh (Spain)'),
(21058, 'https://ror.org/02hgg3s41', 'no_lang_code', 1, 'https://ror.org/02hgg3s41 Veiki-VNL (Hungary)'),
(21059, 'https://ror.org/03yff7e55', 'no_lang_code', 1, 'https://ror.org/03yff7e55 Unisys (Belgium)'),
(21060, 'https://ror.org/031rhf983', 'no_lang_code', 1, 'https://ror.org/031rhf983 Veeco (United Kingdom)'),
(21061, 'https://ror.org/00vbbfz92', 'en', 1, 'https://ror.org/00vbbfz92 Welding Research Institute - Industrial Institute SR'),
(21062, 'https://ror.org/05rnpra73', 'no_lang_code', 1, 'https://ror.org/05rnpra73 Tapecon (United States)'),
(21063, 'https://ror.org/021mz4j77', 'no_lang_code', 1, 'https://ror.org/021mz4j77 Velcourt (United Kingdom)'),
(21064, 'https://ror.org/022awwm23', 'en', 1, 'https://ror.org/022awwm23 Wellcome Collection'),
(21065, 'https://ror.org/05t3rbf71', 'no_lang_code', 1, 'https://ror.org/05t3rbf71 Voxiva (United States)'),
(21066, 'https://ror.org/00g20ky41', 'no_lang_code', 1, 'https://ror.org/00g20ky41 Vipap (Slovenia)'),
(21067, 'https://ror.org/05h85dx49', 'no_lang_code', 1, 'https://ror.org/05h85dx49 Vipem Hackert (Germany)'),
(21068, 'https://ror.org/04qkxwh87', 'no_lang_code', 1, 'https://ror.org/04qkxwh87 Wellcore'),
(21069, 'https://ror.org/03tdxj229', 'no_lang_code', 1, 'https://ror.org/03tdxj229 VPIphotonics (Germany)'),
(21070, 'https://ror.org/04n2k3w88', 'en', 1, 'https://ror.org/04n2k3w88 Welsh Centre for Printing and Coating'),
(21071, 'https://ror.org/03twab133', 'no_lang_code', 1, 'https://ror.org/03twab133 Viper RF (United Kingdom)'),
(21072, 'https://ror.org/03v11kp57', 'no_lang_code', 1, 'https://ror.org/03v11kp57 Merlexi (United States)'),
(21073, 'https://ror.org/01vy2y168', 'no_lang_code', 1, 'https://ror.org/01vy2y168 SimulTOF Systems (United States)'),
(21074, 'https://ror.org/00k859c30', 'no_lang_code', 1, 'https://ror.org/00k859c30 United Biscuits (United Kingdom)'),
(21075, 'https://ror.org/04ar26726', 'en', 1, 'https://ror.org/04ar26726 Wesley College'),
(21076, 'https://ror.org/01rb66x86', 'no_lang_code', 1, 'https://ror.org/01rb66x86 Veneto Innovazione (Italy)'),
(21077, 'https://ror.org/02f7sfa33', 'en', 1, 'https://ror.org/02f7sfa33 John F. Kennedy Center for the Performing Arts'),
(21078, 'https://ror.org/01kfgca96', 'no_lang_code', 1, 'https://ror.org/01kfgca96 VersuchsStollen Hagerbach (Switzerland)'),
(21079, 'https://ror.org/030rphv15', 'en', 1, 'https://ror.org/030rphv15 Virtual Dimension Center'),
(21080, 'https://ror.org/00t7nkj63', 'no_lang_code', 1, 'https://ror.org/00t7nkj63 Ashmore Energy International (United Kingdom)'),
(21081, 'https://ror.org/00h486367', 'en', 1, 'https://ror.org/00h486367 United Hospital Center'),
(21082, 'https://ror.org/02mpd6q30', 'no_lang_code', 1, 'https://ror.org/02mpd6q30 Velcura Therapeutics (United States)'),
(21083, 'https://ror.org/0431htb77', 'no_lang_code', 1, 'https://ror.org/0431htb77 Vukov Extra (Slovakia)'),
(21084, 'https://ror.org/05wxraw41', 'no_lang_code', 1, 'https://ror.org/05wxraw41 Nortek (Canada)'),
(21085, 'https://ror.org/0018h5d52', 'en', 1, 'https://ror.org/0018h5d52 Virginia Western Community College'),
(21086, 'https://ror.org/00dyyan63', 'no_lang_code', 1, 'https://ror.org/00dyyan63 Vennsa Technologies (Canada)'),
(21087, 'https://ror.org/02wh0by57', 'no_lang_code', 1, 'https://ror.org/02wh0by57 Vybion (United States)'),
(21088, 'https://ror.org/05xq4sr56', 'lv', 1, 'https://ror.org/05xq4sr56 Ventspils Digitālais Centrs'),
(21089, 'https://ror.org/0582rgx13', 'no_lang_code', 1, 'https://ror.org/0582rgx13 Veolia (United Kingdom)'),
(21090, 'https://ror.org/03gfrak98', 'en', 1, 'https://ror.org/03gfrak98 West Liberty University'),
(21091, 'https://ror.org/047gmeb26', 'no_lang_code', 1, 'https://ror.org/047gmeb26 VeraChem (United States)'),
(21092, 'https://ror.org/05a8pa318', 'no_lang_code', 1, 'https://ror.org/05a8pa318 Vertex Pharmaceuticals (Canada)'),
(21093, 'https://ror.org/00kqye711', 'en', 1, 'https://ror.org/00kqye711 W.E. Upjohn Institute for Employment Research'),
(21094, 'https://ror.org/05by3c979', 'no_lang_code', 1, 'https://ror.org/05by3c979 Verax Biomedical (United States)'),
(21095, 'https://ror.org/041drhd97', 'no_lang_code', 1, 'https://ror.org/041drhd97 United Medix Laboratories (Finland) Yhtyneet Medix Laboratoriot'),
(21096, 'https://ror.org/019dka583', 'en', 1, 'https://ror.org/019dka583 Petal School District'),
(21097, 'https://ror.org/04qd8km43', 'en', 1, 'https://ror.org/04qd8km43 West Valley College'),
(21098, 'https://ror.org/05n7j1m63', 'en', 1, 'https://ror.org/05n7j1m63 West Valley High School'),
(21099, 'https://ror.org/03bvdp262', 'en', 1, 'https://ror.org/03bvdp262 Farrington High School'),
(21100, 'https://ror.org/00kf9rx15', 'en', 1, 'https://ror.org/00kf9rx15 West Yorkshire Police'),
(21101, 'https://ror.org/03bwvnd45', 'no_lang_code', 1, 'https://ror.org/03bwvnd45 TecPart Verband Technische Kunststoff-Produkte e.V.'),
(21102, 'https://ror.org/04r3ghh39', 'no_lang_code', 1, 'https://ror.org/04r3ghh39 Virtici (United States)'),
(21103, 'https://ror.org/05mb0rj41', 'no_lang_code', 1, 'https://ror.org/05mb0rj41 Virtual Brands (United States)'),
(21104, 'https://ror.org/05st2e578', 'no_lang_code', 1, 'https://ror.org/05st2e578 Verdezyne (United States)'),
(21105, 'https://ror.org/02tvd9h19', 'no_lang_code', 1, 'https://ror.org/02tvd9h19 Virtual Corporation (United States)'),
(21106, 'https://ror.org/01138at48', 'no_lang_code', 1, 'https://ror.org/01138at48 Virtual Open Systems (France)'),
(21107, 'https://ror.org/04rs46204', 'no_lang_code', 1, 'https://ror.org/04rs46204 United Science'),
(21108, 'https://ror.org/02evkff51', 'no_lang_code', 1, 'https://ror.org/02evkff51 J.Schneeberger Maschinen (Switzerland)'),
(21109, 'https://ror.org/04fg67f94', 'en', 1, 'https://ror.org/04fg67f94 German Machine Tool Builders Association Verein Deutscher Werkzeugmaschinenfabriken'),
(21110, 'https://ror.org/0048r6h17', 'no_lang_code', 1, 'https://ror.org/0048r6h17 United Silicon Carbide (United States)'),
(21111, 'https://ror.org/04ptyy568', 'en', 1, 'https://ror.org/04ptyy568 Western Iowa Tech Community College'),
(21112, 'https://ror.org/05smwx616', 'no_lang_code', 1, 'https://ror.org/05smwx616 Schneeberger (Switzerland)'),
(21113, 'https://ror.org/016bj9f63', 'en', 1, 'https://ror.org/016bj9f63 United Way of Anchorage'),
(21114, 'https://ror.org/019s0ax51', 'en', 1, 'https://ror.org/019s0ax51 United Way of the Ozarks'),
(21115, 'https://ror.org/00c1w3156', 'en', 1, 'https://ror.org/00c1w3156 Maryland Area Health Education Center West'),
(21116, 'https://ror.org/02q0kr716', 'en', 1, 'https://ror.org/02q0kr716 United Way of Yellowstone County'),
(21117, 'https://ror.org/051tn6h07', 'no_lang_code', 1, 'https://ror.org/051tn6h07 Heraeus (Germany) Heraeus Konzern'),
(21118, 'https://ror.org/045z19p32', 'no_lang_code', 1, 'https://ror.org/045z19p32 Virtual Trip (Greece)'),
(21119, 'https://ror.org/00eagt536', 'no_lang_code', 1, 'https://ror.org/00eagt536 W.F. Baird & Associates Coastal Engineers (Canada)'),
(21120, 'https://ror.org/05f7acz87', 'no_lang_code', 1, 'https://ror.org/05f7acz87 W/E Consultants'),
(21121, 'https://ror.org/04ky74j22', 'en', 1, 'https://ror.org/04ky74j22 Technologie-Transfer-Zentrum Bremerhaven Technology Transfer Center Bremerhaven'),
(21122, 'https://ror.org/041d0jh94', 'en', 1, 'https://ror.org/041d0jh94 Western Massachusetts Training Consortium'),
(21123, 'https://ror.org/03hhjm063', 'en', 1, 'https://ror.org/03hhjm063 Western Piedmont Community College'),
(21124, 'https://ror.org/02yeqtv37', 'no_lang_code', 1, 'https://ror.org/02yeqtv37 WƤrtsilƤ (Netherlands)'),
(21125, 'https://ror.org/02g8ybs83', 'no_lang_code', 1, 'https://ror.org/02g8ybs83 AstenJohnson (Belgium)'),
(21126, 'https://ror.org/039nqq780', 'no_lang_code', 1, 'https://ror.org/039nqq780 Virtualware Group (Spain)'),
(21127, 'https://ror.org/05pq96t26', 'no_lang_code', 1, 'https://ror.org/05pq96t26 Association of the Austrian Cement Industry Vereinigung der Ɩsterreichischen Zementindustrie'),
(21128, 'https://ror.org/05wwhcb10', 'no_lang_code', 1, 'https://ror.org/05wwhcb10 Western Systems Research (United States)'),
(21129, 'https://ror.org/029nhgs15', 'no_lang_code', 1, 'https://ror.org/029nhgs15 WesTest Engineering (United States)'),
(21130, 'https://ror.org/037ksca52', 'no_lang_code', 1, 'https://ror.org/037ksca52 PerkinElmer (Finland)'),
(21131, 'https://ror.org/022hr6a87', 'en', 1, 'https://ror.org/022hr6a87 Veria Central Public Library Γημόσια κεντρική βιβλιοθήκη βέροιας'),
(21132, 'https://ror.org/023mbkk92', 'no_lang_code', 1, 'https://ror.org/023mbkk92 Tektronix (Canada)'),
(21133, 'https://ror.org/01a35x275', 'en', 1, 'https://ror.org/01a35x275 Westminster City Council'),
(21134, 'https://ror.org/051dyvc17', 'en', 1, 'https://ror.org/051dyvc17 Technical College of Applied Sciences'),
(21135, 'https://ror.org/04rg2ce06', 'no_lang_code', 1, 'https://ror.org/04rg2ce06 VistaMed (Ireland)'),
(21136, 'https://ror.org/04we7sp72', 'no_lang_code', 1, 'https://ror.org/04we7sp72 Visual Acuity (United Kingdom)'),
(21137, 'https://ror.org/00rhh8s91', 'no_lang_code', 1, 'https://ror.org/00rhh8s91 Wallenius Lines (Sweden)'),
(21138, 'https://ror.org/01zjsj463', 'no_lang_code', 1, 'https://ror.org/01zjsj463 Walter Frank & Sons (United Kingdom)'),
(21139, 'https://ror.org/005cdk606', 'no_lang_code', 1, 'https://ror.org/005cdk606 Visual Awareness Research Group (United States)'),
(21140, 'https://ror.org/01c3gv589', 'en', 1, 'https://ror.org/01c3gv589 Walters Public Schools'),
(21141, 'https://ror.org/02pn8ds72', 'no_lang_code', 1, 'https://ror.org/02pn8ds72 Wetlands Incubator (Belgium)'),
(21142, 'https://ror.org/05sjmgm82', 'en', 1, 'https://ror.org/05sjmgm82 World Agency of Planetary Monitoring & Earthquake Risk Reduction'),
(21143, 'https://ror.org/015pwzh41', 'no_lang_code', 1, 'https://ror.org/015pwzh41 Weyerhaeuser (United States)'),
(21144, 'https://ror.org/02vttnw51', 'en', 1, 'https://ror.org/02vttnw51 Verification Research, Training and Information Centre'),
(21145, 'https://ror.org/02hqgsn65', 'no_lang_code', 1, 'https://ror.org/02hqgsn65 Visual Dimension (Belgium)'),
(21146, 'https://ror.org/03y0ep822', 'en', 1, 'https://ror.org/03y0ep822 World Health Organization - Zambia'),
(21147, 'https://ror.org/03y69cp37', 'no_lang_code', 1, 'https://ror.org/03y69cp37 Veris Technologies (United States)'),
(21148, 'https://ror.org/0524gsp03', 'no_lang_code', 1, 'https://ror.org/0524gsp03 Visup (Italy)'),
(21149, 'https://ror.org/03ga86b15', 'en', 1, 'https://ror.org/03ga86b15 Living on Earth'),
(21150, 'https://ror.org/02aethq11', 'no_lang_code', 1, 'https://ror.org/02aethq11 Wapice (Finland)'),
(21151, 'https://ror.org/00sv59x24', 'no_lang_code', 1, 'https://ror.org/00sv59x24 Warburtons (United Kingdom)'),
(21152, 'https://ror.org/00wpwke06', 'en', 1, 'https://ror.org/00wpwke06 wfk - Cleaning Technology Institute'),
(21153, 'https://ror.org/01ahgwn58', 'no_lang_code', 1, 'https://ror.org/01ahgwn58 Eckert & Ziegler (United States)'),
(21154, 'https://ror.org/0468knt27', 'no_lang_code', 1, 'https://ror.org/0468knt27 Worldsensing (Spain)'),
(21155, 'https://ror.org/05y6c0296', 'no_lang_code', 1, 'https://ror.org/05y6c0296 Tetra Tech (Canada)'),
(21156, 'https://ror.org/045pr1e07', 'no_lang_code', 1, 'https://ror.org/045pr1e07 Vitalus Nutrition (Canada)'),
(21157, 'https://ror.org/04vt0z780', 'en', 1, 'https://ror.org/04vt0z780 Warren Wilson College'),
(21158, 'https://ror.org/00vzfja08', 'en', 1, 'https://ror.org/00vzfja08 Vermont Agency of Education'),
(21159, 'https://ror.org/02zw4ny56', 'no_lang_code', 1, 'https://ror.org/02zw4ny56 Vitamib (France)'),
(21160, 'https://ror.org/04enbdz15', 'no_lang_code', 1, 'https://ror.org/04enbdz15 Worldwide Fruit (United Kingdom)'),
(21161, 'https://ror.org/02ef5kc35', 'no_lang_code', 1, 'https://ror.org/02ef5kc35 Vitas (Norway)'),
(21162, 'https://ror.org/01b2wke14', 'no_lang_code', 1, 'https://ror.org/01b2wke14 Wowbagger Productions'),
(21163, 'https://ror.org/02r34kc48', 'no_lang_code', 1, 'https://ror.org/02r34kc48 WheelRight (United Kingdom)'),
(21164, 'https://ror.org/01brx0y03', 'no_lang_code', 1, 'https://ror.org/01brx0y03 Vitec (France)'),
(21165, 'https://ror.org/05k6ewa71', 'no_lang_code', 1, 'https://ror.org/05k6ewa71 Where''s Everybody (Malta)'),
(21166, 'https://ror.org/04aw3a105', 'no_lang_code', 1, 'https://ror.org/04aw3a105 Vitech Systems (United States)'),
(21167, 'https://ror.org/053pwmv60', 'en', 1, 'https://ror.org/053pwmv60 V.I. Vernadsky Institute of Geochemistry and Analytical Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠžŃ€Š“ена Ленина Šø ŠžŃ€Š“ŠµŠ½Š° ŠžŠŗŃ‚ŃŠ±Ń€ŃŒŃŠŗŠ¾Š¹ Š ŠµŠ²Š¾Š»ŃŽŃ†ŠøŠø Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геохимии Šø аналитической химии им. Š’.И. ВернаГского Российской акаГемии наук'),
(21168, 'https://ror.org/00fa1k613', 'no_lang_code', 1, 'https://ror.org/00fa1k613 Wrap (United Kingdom)'),
(21169, 'https://ror.org/03faefq04', 'no_lang_code', 1, 'https://ror.org/03faefq04 Warwick Analytics (United Kingdom)'),
(21170, 'https://ror.org/034pc0d25', 'no_lang_code', 1, 'https://ror.org/034pc0d25 Versarien Technologies (United Kingdom)'),
(21171, 'https://ror.org/04e7cmm10', 'no_lang_code', 1, 'https://ror.org/04e7cmm10 Wherry & Sons (United Kingdom)'),
(21172, 'https://ror.org/05e29fw09', 'en', 1, 'https://ror.org/05e29fw09 Wright House Wellness Center'),
(21173, 'https://ror.org/026xnjn61', 'no_lang_code', 1, 'https://ror.org/026xnjn61 Whirlpool (Italy)'),
(21174, 'https://ror.org/008ksm830', 'en', 1, 'https://ror.org/008ksm830 Valley City Public School District'),
(21175, 'https://ror.org/0241ard09', 'no_lang_code', 1, 'https://ror.org/0241ard09 Vertellus Specialties (United Kingdom)'),
(21176, 'https://ror.org/02d07sw41', 'no_lang_code', 1, 'https://ror.org/02d07sw41 WS Energia (Portugal)'),
(21177, 'https://ror.org/00kdbj440', 'no_lang_code', 1, 'https://ror.org/00kdbj440 Glencore (Canada)'),
(21178, 'https://ror.org/00qmq1337', 'en', 1, 'https://ror.org/00qmq1337 Stiftung Verum Verum - Foundation for Behaviour and Environment'),
(21179, 'https://ror.org/05j857112', 'no_lang_code', 1, 'https://ror.org/05j857112 WS (Germany)'),
(21180, 'https://ror.org/02gdq7j49', 'en', 1, 'https://ror.org/02gdq7j49 White Balance Projects Pool Agency'),
(21181, 'https://ror.org/02rxdft45', 'en', 1, 'https://ror.org/02rxdft45 Water Authority of Jordan'),
(21182, 'https://ror.org/00bgp5503', 'no_lang_code', 1, 'https://ror.org/00bgp5503 Water & Earth Technologie (United States)'),
(21183, 'https://ror.org/04ce08670', 'no_lang_code', 1, 'https://ror.org/04ce08670 IHS Markit (Germany)'),
(21184, 'https://ror.org/0110g7c84', 'no_lang_code', 1, 'https://ror.org/0110g7c84 WHM Group'),
(21185, 'https://ror.org/03sz3nv18', 'no_lang_code', 1, 'https://ror.org/03sz3nv18 VHsquared (United Kingdom)'),
(21186, 'https://ror.org/00b3e0r50', 'no_lang_code', 1, 'https://ror.org/00b3e0r50 Water Services Corporation (Malta)'),
(21187, 'https://ror.org/041ftcz16', 'en', 1, 'https://ror.org/041ftcz16 Naugatuck Valley Community College'),
(21188, 'https://ror.org/01997ht09', 'no_lang_code', 1, 'https://ror.org/01997ht09 Virtuelle Fabrik (Switzerland)'),
(21189, 'https://ror.org/013g3g638', 'no_lang_code', 1, 'https://ror.org/013g3g638 Vertically Integrated Systems (Germany)'),
(21190, 'https://ror.org/01q48h373', 'no_lang_code', 1, 'https://ror.org/01q48h373 Glanbia (Ireland)'),
(21191, 'https://ror.org/01r2zsa88', 'no_lang_code', 1, 'https://ror.org/01r2zsa88 Vivid Technologies (United States)'),
(21192, 'https://ror.org/05h877m37', 'no_lang_code', 1, 'https://ror.org/05h877m37 WaterstofNet (Belgium)'),
(21193, 'https://ror.org/032ycrz75', 'no_lang_code', 1, 'https://ror.org/032ycrz75 WiCell'),
(21194, 'https://ror.org/05m3wdv79', 'en', 1, 'https://ror.org/05m3wdv79 Wichita Community Foundation'),
(21195, 'https://ror.org/02abxwv41', 'en', 1, 'https://ror.org/02abxwv41 Wyoming Department of Education'),
(21196, 'https://ror.org/05ggndd89', 'no_lang_code', 1, 'https://ror.org/05ggndd89 eLEAF (Netherlands)'),
(21197, 'https://ror.org/01e2apd69', 'en', 1, 'https://ror.org/01e2apd69 Wytheville Community College'),
(21198, 'https://ror.org/00ms25z94', 'no_lang_code', 1, 'https://ror.org/00ms25z94 Wates (United Kingdom)'),
(21199, 'https://ror.org/01w3f6g06', 'no_lang_code', 1, 'https://ror.org/01w3f6g06 Wieland (Germany)'),
(21200, 'https://ror.org/01rebhs43', 'en', 1, 'https://ror.org/01rebhs43 Watts Health Center'),
(21201, 'https://ror.org/01h0jwd72', 'no_lang_code', 1, 'https://ror.org/01h0jwd72 Alfa Laval (France)'),
(21202, 'https://ror.org/01qx5e557', 'no_lang_code', 1, 'https://ror.org/01qx5e557 Vicinay Cadenas (Spain)'),
(21203, 'https://ror.org/00pew5z05', 'no_lang_code', 1, 'https://ror.org/00pew5z05 Vicon (United Kingdom)'),
(21204, 'https://ror.org/01a583453', 'en', 1, 'https://ror.org/01a583453 Victoria Heart Institute Foundation'),
(21205, 'https://ror.org/01v5hvs93', 'en', 1, 'https://ror.org/01v5hvs93 Victorian Aboriginal Health Service'),
(21206, 'https://ror.org/02a809t02', 'no_lang_code', 1, 'https://ror.org/02a809t02 Vizzuality (Spain)'),
(21207, 'https://ror.org/001y71q13', 'no_lang_code', 1, 'https://ror.org/001y71q13 Wave Dragon (Denmark)'),
(21208, 'https://ror.org/00pnzak35', 'no_lang_code', 1, 'https://ror.org/00pnzak35 Victrex (United Kingdom)'),
(21209, 'https://ror.org/03htt2d69', 'no_lang_code', 1, 'https://ror.org/03htt2d69 Pfizer (Italy)'),
(21210, 'https://ror.org/020ck1591', 'en', 1, 'https://ror.org/020ck1591 Police Academy in Szczytno'),
(21211, 'https://ror.org/052am5598', 'no_lang_code', 1, 'https://ror.org/052am5598 Vida Diagnostics (United States)'),
(21212, 'https://ror.org/01vbx2754', 'no_lang_code', 1, 'https://ror.org/01vbx2754 Unis (Czechia)'),
(21213, 'https://ror.org/02dx4w725', 'de', 1, 'https://ror.org/02dx4w725 Wirtschaftsfƶrderungsinstitut'),
(21214, 'https://ror.org/02rs30x67', 'no_lang_code', 1, 'https://ror.org/02rs30x67 Melexis (Germany)'),
(21215, 'https://ror.org/04g86yb67', 'no_lang_code', 1, 'https://ror.org/04g86yb67 VLP Biotech (United States)'),
(21216, 'https://ror.org/024ccd889', 'en', 1, 'https://ror.org/024ccd889 Wayland Baptist University'),
(21217, 'https://ror.org/02h2m5t91', 'no_lang_code', 1, 'https://ror.org/02h2m5t91 WIGeoGIS (Austria)'),
(21218, 'https://ror.org/051g6zc94', 'no_lang_code', 1, 'https://ror.org/051g6zc94 VM Discovery (United States)'),
(21219, 'https://ror.org/02evz6a53', 'no_lang_code', 1, 'https://ror.org/02evz6a53 X Flow (Netherlands)'),
(21220, 'https://ror.org/01esc3z41', 'en', 1, 'https://ror.org/01esc3z41 Wildlife Conservation Society Canada'),
(21221, 'https://ror.org/02kzda898', 'no_lang_code', 1, 'https://ror.org/02kzda898 Videometer (Denmark)'),
(21222, 'https://ror.org/00tsqpx02', 'no_lang_code', 1, 'https://ror.org/00tsqpx02 VocaLink (United Kingdom)'),
(21223, 'https://ror.org/01amy5q57', 'en', 1, 'https://ror.org/01amy5q57 Viewpoints Research Institute'),
(21224, 'https://ror.org/055vanj37', 'no_lang_code', 1, 'https://ror.org/055vanj37 Shift (United Kingdom)'),
(21225, 'https://ror.org/00nk33e27', 'no_lang_code', 1, 'https://ror.org/00nk33e27 X-Treme Creations (Netherlands)'),
(21226, 'https://ror.org/03q0k8124', 'no_lang_code', 1, 'https://ror.org/03q0k8124 Xaar (United Kingdom)'),
(21227, 'https://ror.org/0105bs557', 'no_lang_code', 1, 'https://ror.org/0105bs557 De Lijn (Belgium)'),
(21228, 'https://ror.org/05vn6by16', 'no_lang_code', 1, 'https://ror.org/05vn6by16 Viewrope'),
(21229, 'https://ror.org/04gse8s13', 'no_lang_code', 1, 'https://ror.org/04gse8s13 Xactagen (United States)'),
(21230, 'https://ror.org/02ecccn63', 'no_lang_code', 1, 'https://ror.org/02ecccn63 Xandem Technology (United States)'),
(21231, 'https://ror.org/05k2ek264', 'no_lang_code', 1, 'https://ror.org/05k2ek264 Vigo System (Poland)'),
(21232, 'https://ror.org/04mgp5b41', 'no_lang_code', 1, 'https://ror.org/04mgp5b41 Sarossa (United States)'),
(21233, 'https://ror.org/030f3em06', 'no_lang_code', 1, 'https://ror.org/030f3em06 XData Corporation (United States)'),
(21234, 'https://ror.org/043kj4v41', 'en', 1, 'https://ror.org/043kj4v41 William F Ryan Community Health Center'),
(21235, 'https://ror.org/03sja0d46', 'en', 1, 'https://ror.org/03sja0d46 Village for Families and Children'),
(21236, 'https://ror.org/03dbt2x59', 'no_lang_code', 1, 'https://ror.org/03dbt2x59 Villeroy & Boch (Germany)'),
(21237, 'https://ror.org/01fgnkn65', 'en', 1, 'https://ror.org/01fgnkn65 Euro-Mediterranean Water Information System MƩditerranƩen d''Information sur les Savoir'),
(21238, 'https://ror.org/003s4cb46', 'no_lang_code', 1, 'https://ror.org/003s4cb46 YIT (Finland)'),
(21239, 'https://ror.org/02jakhr06', 'no_lang_code', 1, 'https://ror.org/02jakhr06 Voicekey (United Kingdom)'),
(21240, 'https://ror.org/0431re516', 'no_lang_code', 1, 'https://ror.org/0431re516 Ylec Consultants'),
(21241, 'https://ror.org/04g9r9c91', 'no_lang_code', 1, 'https://ror.org/04g9r9c91 Volcano Corporation (United States)'),
(21242, 'https://ror.org/02g5t8y66', 'no_lang_code', 1, 'https://ror.org/02g5t8y66 Yole DƩveloppement (France)'),
(21243, 'https://ror.org/056qmem13', 'en', 1, 'https://ror.org/056qmem13 Xenobiotic Detection Systems'),
(21244, 'https://ror.org/03a7vht50', 'no_lang_code', 1, 'https://ror.org/03a7vht50 Grenson (United Kingdom)'),
(21245, 'https://ror.org/01hg95g34', 'en', 1, 'https://ror.org/01hg95g34 York Archaeological Trust'),
(21246, 'https://ror.org/05teaww98', 'en', 1, 'https://ror.org/05teaww98 York Technical College'),
(21247, 'https://ror.org/02f38w092', 'no_lang_code', 1, 'https://ror.org/02f38w092 Xeros Technologies (United Kingdom)'),
(21248, 'https://ror.org/011zf9m55', 'no_lang_code', 1, 'https://ror.org/011zf9m55 William Ross (United Kingdom)'),
(21249, 'https://ror.org/02336q433', 'no_lang_code', 1, 'https://ror.org/02336q433 Enghouse Interactive (United Kingdom)'),
(21250, 'https://ror.org/005kb9y44', 'no_lang_code', 1, 'https://ror.org/005kb9y44 Vinidea'),
(21251, 'https://ror.org/027f5z015', 'no_lang_code', 1, 'https://ror.org/027f5z015 Xigen (Switzerland)'),
(21252, 'https://ror.org/03rk9dw54', 'en', 1, 'https://ror.org/03rk9dw54 Williams Unified School District'),
(21253, 'https://ror.org/04vt6h473', 'no_lang_code', 1, 'https://ror.org/04vt6h473 Vioryl (Greece)'),
(21254, 'https://ror.org/01jncky63', 'en', 1, 'https://ror.org/01jncky63 Williams & Associates'),
(21255, 'https://ror.org/042xxm757', 'no_lang_code', 1, 'https://ror.org/042xxm757 Viotech Communications (France)'),
(21256, 'https://ror.org/02ec5fm39', 'no_lang_code', 1, 'https://ror.org/02ec5fm39 First Innovation Park'),
(21257, 'https://ror.org/03vfey433', 'no_lang_code', 1, 'https://ror.org/03vfey433 Lion Capital (United Kingdom)'),
(21258, 'https://ror.org/04yewpw08', 'no_lang_code', 1, 'https://ror.org/04yewpw08 Xim (United Kingdom)'),
(21259, 'https://ror.org/0396gjt51', 'no_lang_code', 1, 'https://ror.org/0396gjt51 Volterra (United Kingdom)'),
(21260, 'https://ror.org/04htkzn50', 'en', 1, 'https://ror.org/04htkzn50 Youth & Family Services'),
(21261, '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'),
(21262, 'https://ror.org/03bhas793', 'en', 1, 'https://ror.org/03bhas793 Youth Development'),
(21263, 'https://ror.org/0391kcn80', 'no_lang_code', 1, 'https://ror.org/0391kcn80 Zentrum für Rationelle Energieanwendung und Umwelt (Germany)'),
(21264, 'https://ror.org/05fejsj94', 'en', 1, 'https://ror.org/05fejsj94 Volunteer Behavioral Health Care System'),
(21265, 'https://ror.org/039ardd72', 'no_lang_code', 1, 'https://ror.org/039ardd72 Xintek (United States)'),
(21266, 'https://ror.org/045gpd643', 'en', 1, 'https://ror.org/045gpd643 Volunteers of America Oregon'),
(21267, 'https://ror.org/048jjtk40', 'no_lang_code', 1, 'https://ror.org/048jjtk40 Youth Radio (United States)'),
(21268, 'https://ror.org/0381mdg49', 'no_lang_code', 1, 'https://ror.org/0381mdg49 XiO Photonics (Netherlands)'),
(21269, 'https://ror.org/04t60r196', 'no_lang_code', 1, 'https://ror.org/04t60r196 Xiros (United Kingdom)'),
(21270, 'https://ror.org/0134twj05', 'en', 1, 'https://ror.org/0134twj05 Youth Service Project'),
(21271, 'https://ror.org/03s13ge81', 'en', 1, 'https://ror.org/03s13ge81 Youth and Family Services of Haddam Killingworth'),
(21272, 'https://ror.org/05r4ezy10', 'no_lang_code', 1, 'https://ror.org/05r4ezy10 XMOS (United Kingdom)'),
(21273, 'https://ror.org/05keb2d81', 'no_lang_code', 1, 'https://ror.org/05keb2d81 Yprema (France)'),
(21274, 'https://ror.org/01egpew89', 'no_lang_code', 1, 'https://ror.org/01egpew89 YTKO (United Kingdom)'),
(21275, 'https://ror.org/05q1et630', 'no_lang_code', 1, 'https://ror.org/05q1et630 Prototal (Sweden)'),
(21276, 'https://ror.org/02380m508', 'en', 1, 'https://ror.org/02380m508 Medway Maritime Hospital'),
(21277, 'https://ror.org/04fqgk073', 'en', 1, 'https://ror.org/04fqgk073 Yuba Community College District'),
(21278, 'https://ror.org/041geh851', 'en', 1, 'https://ror.org/041geh851 Melksham Community Hospital'),
(21279, 'https://ror.org/02xzt0b24', 'no_lang_code', 1, 'https://ror.org/02xzt0b24 Yuzhnoye State Design Office (Ukraine) Державне ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŃŒŠŗŠµ Š±ŃŽŃ€Š¾ Ā«ŠŸŃ–Š²Š“ŠµŠ½Š½ŠµĀ» ім. М. К. ŠÆŠ½Š³ŠµŠ»Ń'),
(21280, 'https://ror.org/019rfn866', 'en', 1, 'https://ror.org/019rfn866 Melton Mowbray Hospital'),
(21281, 'https://ror.org/00ffjew77', 'no_lang_code', 1, 'https://ror.org/00ffjew77 Wiener Stadtwerke (Austria)'),
(21282, 'https://ror.org/045ct3157', 'no_lang_code', 1, 'https://ror.org/045ct3157 Zabala Innovation Consulting (Spain)'),
(21283, 'https://ror.org/039e57198', 'no_lang_code', 1, 'https://ror.org/039e57198 XSB (United States)'),
(21284, 'https://ror.org/0280r7h11', 'en', 1, 'https://ror.org/0280r7h11 Mid Essex Hospital Services NHS Trust'),
(21285, 'https://ror.org/05db2n282', 'no_lang_code', 1, 'https://ror.org/05db2n282 Willmott Dixon (United Kingdom)'),
(21286, 'https://ror.org/03tx9kw79', 'en', 1, 'https://ror.org/03tx9kw79 The Hydrogen and Fuel Cell Center The Zentrum für BrennstoffzellenTechnik'),
(21287, 'https://ror.org/0399msg87', 'no_lang_code', 1, 'https://ror.org/0399msg87 Grammer (Germany)'),
(21288, 'https://ror.org/05g23q746', 'en', 1, 'https://ror.org/05g23q746 Mid Yorkshire Hospitals NHS Trust'),
(21289, 'https://ror.org/02yy98a98', 'en', 1, 'https://ror.org/02yy98a98 Zero Carbon Hub'),
(21290, 'https://ror.org/03vn3wv31', 'en', 1, 'https://ror.org/03vn3wv31 Midhurst Community Hospital'),
(21291, 'https://ror.org/045n1e339', 'en', 1, 'https://ror.org/045n1e339 Mile End Hospital'),
(21292, 'https://ror.org/045a17r54', 'no_lang_code', 1, 'https://ror.org/045a17r54 Xyken (United States)'),
(21293, 'https://ror.org/00m1cca61', 'en', 1, 'https://ror.org/00m1cca61 Milford Hospital'),
(21294, 'https://ror.org/001n2yb14', 'no_lang_code', 1, 'https://ror.org/001n2yb14 Zadig (Italy)'),
(21295, 'https://ror.org/05f1yv317', 'no_lang_code', 1, 'https://ror.org/05f1yv317 Zansors (United States)'),
(21296, 'https://ror.org/02wyktf69', 'en', 1, 'https://ror.org/02wyktf69 Mill View Hospital'),
(21297, 'https://ror.org/026jsye16', 'no_lang_code', 1, 'https://ror.org/026jsye16 Y-Stress (United States)'),
(21298, 'https://ror.org/0333kwv03', 'en', 1, 'https://ror.org/0333kwv03 Millom Hospital'),
(21299, 'https://ror.org/02xd7yj05', 'no_lang_code', 1, 'https://ror.org/02xd7yj05 Yamaha (Netherlands)'),
(21300, 'https://ror.org/05r5dcc67', 'en', 1, 'https://ror.org/05r5dcc67 Mold Community Hospital Ysbyty Cymuned yr Wyddgrug'),
(21301, 'https://ror.org/0554vw273', 'en', 1, 'https://ror.org/0554vw273 Molesey Hospital'),
(21302, 'https://ror.org/03rkhvp51', 'en', 1, 'https://ror.org/03rkhvp51 Yamhill County Public Health'),
(21303, 'https://ror.org/02xbagc94', 'no_lang_code', 1, 'https://ror.org/02xbagc94 Yankee Environmental System (United States)'),
(21304, 'https://ror.org/050pakd64', 'no_lang_code', 1, 'https://ror.org/050pakd64 Diodes (United Kingdom)'),
(21305, 'https://ror.org/028301226', 'en', 1, 'https://ror.org/028301226 West Virginia Department of Education'),
(21306, 'https://ror.org/04gvwsw92', 'no_lang_code', 1, 'https://ror.org/04gvwsw92 Yantric (United States)'),
(21307, 'https://ror.org/05d10zv92', 'en', 1, 'https://ror.org/05d10zv92 Monkton Hall Hospital'),
(21308, 'https://ror.org/0047ad446', 'no_lang_code', 1, 'https://ror.org/0047ad446 Yara (United Kingdom)'),
(21309, 'https://ror.org/05bmme985', 'en', 1, 'https://ror.org/05bmme985 Monkwearmouth Hospital'),
(21310, 'https://ror.org/01pk3g458', 'en', 1, 'https://ror.org/01pk3g458 Westchester County Department of Public Safety'),
(21311, 'https://ror.org/02xbmha33', 'en', 1, 'https://ror.org/02xbmha33 Montagu Hospital'),
(21312, 'https://ror.org/02mvn1p69', 'no_lang_code', 1, 'https://ror.org/02mvn1p69 Ivchenko Progress (Ukraine) Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠµ Š¼Š°ŃˆŠøŠ½Š¾Š±ŃƒŠ“Ń–Š²Š½Šµ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŃŒŠŗŠµ Š±ŃŽŃ€Š¾'),
(21313, 'https://ror.org/04r5hpa11', 'no_lang_code', 1, 'https://ror.org/04r5hpa11 YDreams (Portugal)'),
(21314, 'https://ror.org/056ct0w58', 'en', 1, 'https://ror.org/056ct0w58 George Moore Community Clinic'),
(21315, 'https://ror.org/00ryba775', 'en', 1, 'https://ror.org/00ryba775 Yellowhawk Tribal Health Center'),
(21316, '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'),
(21317, 'https://ror.org/01qq4rp48', 'en', 1, 'https://ror.org/01qq4rp48 Wiltshire Council'),
(21318, 'https://ror.org/010n3pg47', 'no_lang_code', 1, 'https://ror.org/010n3pg47 Zeus Scientific (United States)'),
(21319, 'https://ror.org/02a7ztw78', 'no_lang_code', 1, 'https://ror.org/02a7ztw78 Microsemi (United Kingdom)'),
(21320, 'https://ror.org/03f6smv36', 'no_lang_code', 1, 'https://ror.org/03f6smv36 Wind Technologies (United Kingdom)'),
(21321, 'https://ror.org/00d337t51', 'no_lang_code', 1, 'https://ror.org/00d337t51 Wind (Italy)'),
(21322, 'https://ror.org/010e34m27', 'no_lang_code', 1, 'https://ror.org/010e34m27 Zayer (Spain)'),
(21323, 'https://ror.org/00wpr8n40', 'en', 1, 'https://ror.org/00wpr8n40 Morpeth Cottage Hospital'),
(21324, 'https://ror.org/03a0s3r85', 'no_lang_code', 1, 'https://ror.org/03a0s3r85 Ziena Optimization (United States)'),
(21325, 'https://ror.org/037fz4341', 'en', 1, 'https://ror.org/037fz4341 Moseley Hall Hospital'),
(21326, 'https://ror.org/05smvaw93', 'no_lang_code', 1, 'https://ror.org/05smvaw93 Zigpos (Germany)'),
(21327, 'https://ror.org/031swr525', 'en', 1, 'https://ror.org/031swr525 Mossley Hill Hospital'),
(21328, 'https://ror.org/0259yjc90', 'en', 1, 'https://ror.org/0259yjc90 Zimbabwe Association of Church-Related Hospitals'),
(21329, 'https://ror.org/029vb5696', 'en', 1, 'https://ror.org/029vb5696 Zimbabwe National Quality Assurance Program'),
(21330, 'https://ror.org/01ty9p111', 'en', 1, 'https://ror.org/01ty9p111 Mount Alvernia Hospital'),
(21331, 'https://ror.org/01yb75b63', 'no_lang_code', 1, 'https://ror.org/01yb75b63 Zeeko (United Kingdom)'),
(21332, 'https://ror.org/007b4bn60', 'no_lang_code', 1, 'https://ror.org/007b4bn60 McWane Technology (United Kingdom)'),
(21333, 'https://ror.org/00wz8ne48', 'no_lang_code', 1, 'https://ror.org/00wz8ne48 Zipalog (United States)'),
(21334, 'https://ror.org/01btzfj32', 'en', 1, 'https://ror.org/01btzfj32 BMI Healthcare'),
(21335, 'https://ror.org/00w9htx78', 'en', 1, 'https://ror.org/00w9htx78 Mount Vernon Hospital'),
(21336, 'https://ror.org/00f20wb28', 'no_lang_code', 1, 'https://ror.org/00f20wb28 Ziplast (Italy)'),
(21337, 'https://ror.org/03pj63790', 'no_lang_code', 1, 'https://ror.org/03pj63790 ZirChrom Separations (United States)'),
(21338, 'https://ror.org/007phxq15', 'en', 1, 'https://ror.org/007phxq15 N.D. Zelinsky Institute of Organic Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органической химии им. Š.Š”. Зелинского Российской акаГемии наук'),
(21339, 'https://ror.org/041z9yd20', 'en', 1, 'https://ror.org/041z9yd20 InsPIRE Network for Environment'),
(21340, 'https://ror.org/02rrq8748', 'no_lang_code', 1, 'https://ror.org/02rrq8748 Descartes (Belgium)'),
(21341, 'https://ror.org/054mek730', 'no_lang_code', 1, 'https://ror.org/054mek730 Zoo Digital (United Kingdom)'),
(21342, 'https://ror.org/05t156v90', 'no_lang_code', 1, 'https://ror.org/05t156v90 ZS-Handling (Germany)'),
(21343, 'https://ror.org/01na7zr61', 'no_lang_code', 1, 'https://ror.org/01na7zr61 ZTS Výskumno-Vývojový Ústav (Slovakia)'),
(21344, 'https://ror.org/03esg6y90', 'no_lang_code', 1, 'https://ror.org/03esg6y90 Zenalux Biomedical (United States)'),
(21345, 'https://ror.org/02g102751', 'en', 1, 'https://ror.org/02g102751 Wisconsin Department of Public Instruction'),
(21346, 'https://ror.org/01hsdm129', 'en', 1, 'https://ror.org/01hsdm129 Wisconsin State Office of the Governor'),
(21347, 'https://ror.org/03jyntf28', 'no_lang_code', 1, 'https://ror.org/03jyntf28 Zubiola (Spain)'),
(21348, 'https://ror.org/052hs4w81', 'no_lang_code', 1, 'https://ror.org/052hs4w81 Bonn Science Shop Wissenschaftsladen'),
(21349, 'https://ror.org/01wze9664', 'no_lang_code', 1, 'https://ror.org/01wze9664 Zeno Semiconductor (United States)'),
(21350, 'https://ror.org/00mb2j026', 'no_lang_code', 1, 'https://ror.org/00mb2j026 Zenotech (United Kingdom)'),
(21351, 'https://ror.org/047ej6x83', 'no_lang_code', 1, 'https://ror.org/047ej6x83 Within Technologies (United Kingdom)'),
(21352, 'https://ror.org/04gx8zb05', 'de', 1, 'https://ror.org/04gx8zb05 Zentralinstitut für die Kassenärztliche Versorgung in der Bundesrepublik Deutschland'),
(21353, 'https://ror.org/01j3wmr10', 'en', 1, 'https://ror.org/01j3wmr10 Accrington Victoria Hospital'),
(21354, 'https://ror.org/046c75y25', 'no_lang_code', 1, 'https://ror.org/046c75y25 Witt Industrial Electronics (Germany)'),
(21355, 'https://ror.org/02km87d05', 'no_lang_code', 1, 'https://ror.org/02km87d05 Wittmann (Austria)'),
(21356, 'https://ror.org/02191hv61', 'no_lang_code', 1, 'https://ror.org/02191hv61 Zyberwear (United States)'),
(21357, 'https://ror.org/026v6r221', 'en', 1, 'https://ror.org/026v6r221 Tewkesbury Community Hospital'),
(21358, 'https://ror.org/05j8nkz58', 'no_lang_code', 1, 'https://ror.org/05j8nkz58 Innovation Enterprise Impuls (Poland)'),
(21359, 'https://ror.org/04nqhm289', 'en', 1, 'https://ror.org/04nqhm289 New Victoria Hospital'),
(21360, 'https://ror.org/002j43z05', 'no_lang_code', 1, 'https://ror.org/002j43z05 Wolframcarb (Italy)'),
(21361, 'https://ror.org/05wch2w55', 'no_lang_code', 1, 'https://ror.org/05wch2w55 Zylon (United States)'),
(21362, 'https://ror.org/03ewnz430', 'en', 1, 'https://ror.org/03ewnz430 Women Accepting Responsibility'),
(21363, 'https://ror.org/03s1cky33', 'en', 1, 'https://ror.org/03s1cky33 Newark Hospital'),
(21364, 'https://ror.org/030bs8t82', 'no_lang_code', 1, 'https://ror.org/030bs8t82 Zymera (United States)'),
(21365, 'https://ror.org/045r28721', 'en', 1, 'https://ror.org/045r28721 Newham University Hospital'),
(21366, 'https://ror.org/0057f6x09', 'en', 1, 'https://ror.org/0057f6x09 Airedale NHS Foundation Trust'),
(21367, 'https://ror.org/017f0cd82', 'no_lang_code', 1, 'https://ror.org/017f0cd82 Continental (United Kingdom)'),
(21368, 'https://ror.org/024v03d05', 'en', 1, 'https://ror.org/024v03d05 Bradwell Community Hospital'),
(21369, 'https://ror.org/01yjpe866', 'en', 1, 'https://ror.org/01yjpe866 Women in Government'),
(21370, 'https://ror.org/04hvez104', 'en', 1, 'https://ror.org/04hvez104 Ross on Wye Hospital'),
(21371, 'https://ror.org/05dyv4r79', 'en', 1, 'https://ror.org/05dyv4r79 Women In Need'),
(21372, 'https://ror.org/04t93g058', 'en', 1, 'https://ror.org/04t93g058 Rossall Hospital'),
(21373, 'https://ror.org/027a5xq62', 'en', 1, 'https://ror.org/027a5xq62 Women in Resource Development'),
(21374, 'https://ror.org/00z9hsx23', 'en', 1, 'https://ror.org/00z9hsx23 Rothbury Community Hospital'),
(21375, 'https://ror.org/05sagpq04', 'en', 1, 'https://ror.org/05sagpq04 Women in Science and Engineering Newfoundland and Labrador'),
(21376, 'https://ror.org/00yb46674', 'en', 1, 'https://ror.org/00yb46674 Newquay Community Hospital'),
(21377, 'https://ror.org/03mq8zc85', 'en', 1, 'https://ror.org/03mq8zc85 Central Middlesex Hospital'),
(21378, 'https://ror.org/05vv75456', 'en', 1, 'https://ror.org/05vv75456 Alcoholism Center for Women'),
(21379, 'https://ror.org/00n2vs911', 'en', 1, 'https://ror.org/00n2vs911 Newton Abbot Community Hospital'),
(21380, 'https://ror.org/02canyd30', 'en', 1, 'https://ror.org/02canyd30 Newton Community Hospital'),
(21381, 'https://ror.org/02qy5zc16', 'en', 1, 'https://ror.org/02qy5zc16 Women''s Health In Women''s Hands'),
(21382, 'https://ror.org/00r6gb998', 'en', 1, 'https://ror.org/00r6gb998 Chalfonts and Gerrards Cross Hospital'),
(21383, 'https://ror.org/0262yf988', 'en', 1, 'https://ror.org/0262yf988 Alderney Hospital'),
(21384, 'https://ror.org/03nycav22', 'en', 1, 'https://ror.org/03nycav22 Roxbourne Medical Centre'),
(21385, 'https://ror.org/00xkkpn05', 'en', 1, 'https://ror.org/00xkkpn05 Norfolk Community Health and Care NHS Trust'),
(21386, 'https://ror.org/01h4zj733', 'en', 1, 'https://ror.org/01h4zj733 North Cambridgeshire Hospital'),
(21387, 'https://ror.org/025s2ay93', 'en', 1, 'https://ror.org/025s2ay93 North Cotswolds Hospital'),
(21388, 'https://ror.org/056zqx422', 'en', 1, 'https://ror.org/056zqx422 Chantry House Day Hospital'),
(21389, 'https://ror.org/00cv4n034', 'en', 1, 'https://ror.org/00cv4n034 Royal Brompton Hospital'),
(21390, 'https://ror.org/03rrvgg66', 'en', 1, 'https://ror.org/03rrvgg66 Women''s Treatment Center'),
(21391, 'https://ror.org/04kmnk678', 'en', 1, 'https://ror.org/04kmnk678 Woodstock Union High School & Middle School'),
(21392, 'https://ror.org/03pf5zs64', 'en', 1, 'https://ror.org/03pf5zs64 Royal National Throat Nose and Ear Hospital'),
(21393, 'https://ror.org/01dx1mr58', 'en', 1, 'https://ror.org/01dx1mr58 Royal Stoke University Hospital'),
(21394, 'https://ror.org/04n037429', 'en', 1, 'https://ror.org/04n037429 Chard & District Hospital'),
(21395, 'https://ror.org/05ygpsa84', 'en', 1, 'https://ror.org/05ygpsa84 North Downs Hospital'),
(21396, 'https://ror.org/04shzs249', 'en', 1, 'https://ror.org/04shzs249 Hampshire Hospitals NHS Foundation Trust'),
(21397, 'https://ror.org/00eph4903', 'en', 1, 'https://ror.org/00eph4903 North Middlesex Hospital'),
(21398, 'https://ror.org/01wx3s220', 'en', 1, 'https://ror.org/01wx3s220 Alton Community Hospital'),
(21399, 'https://ror.org/01dhpn446', 'no_lang_code', 1, 'https://ror.org/01dhpn446 Worgas Bruciatori (Italy)'),
(21400, 'https://ror.org/048919h66', 'en', 1, 'https://ror.org/048919h66 North Middlesex University Hospital NHS Trust'),
(21401, 'https://ror.org/028f2wx05', 'en', 1, 'https://ror.org/028f2wx05 Chartwell Diagnostic and Imaging Centre'),
(21402, 'https://ror.org/04z26gb41', 'no_lang_code', 1, 'https://ror.org/04z26gb41 Workbook Publishing'),
(21403, 'https://ror.org/02d5d0r05', 'en', 1, 'https://ror.org/02d5d0r05 North Staffordshire Combined Healthcare NHS Trust'),
(21404, 'https://ror.org/01jtws262', 'en', 1, 'https://ror.org/01jtws262 Chase Acute Outpatients Hospital'),
(21405, 'https://ror.org/00fryxp10', 'en', 1, 'https://ror.org/00fryxp10 Cymdeithas Addysg y Gweithwyr Workers Educational Association'),
(21406, 'https://ror.org/00ak30749', 'en', 1, 'https://ror.org/00ak30749 Cheadle Community Hospital'),
(21407, 'https://ror.org/01v09hh66', 'en', 1, 'https://ror.org/01v09hh66 Rowley Regis Hospital'),
(21408, 'https://ror.org/02gm74063', 'en', 1, 'https://ror.org/02gm74063 Priory Hospital Cheadle Royal'),
(21409, 'https://ror.org/04d87jn14', 'en', 1, 'https://ror.org/04d87jn14 Royston Hospital'),
(21410, 'https://ror.org/05jjyv308', 'en', 1, 'https://ror.org/05jjyv308 Chelmsford and Essex Hospital'),
(21411, 'https://ror.org/02jtgw663', 'en', 1, 'https://ror.org/02jtgw663 North Walsham and District War Memorial Hospital'),
(21412, 'https://ror.org/018qh5t24', 'en', 1, 'https://ror.org/018qh5t24 North West Ambulance Service NHS Trust'),
(21413, 'https://ror.org/013qbng65', 'en', 1, 'https://ror.org/013qbng65 Andover War Memorial Hospital'),
(21414, 'https://ror.org/038zxea36', 'en', 1, 'https://ror.org/038zxea36 Chelsea and Westminster Hospital'),
(21415, 'https://ror.org/02e3jby32', 'en', 1, 'https://ror.org/02e3jby32 BMI The Runnymede Hospital'),
(21416, 'https://ror.org/043djj103', 'en', 1, 'https://ror.org/043djj103 Goole and District Hospital'),
(21417, 'https://ror.org/00mp5cm68', 'en', 1, 'https://ror.org/00mp5cm68 Arrowe Park Hospital'),
(21418, 'https://ror.org/03pq34j38', 'en', 1, 'https://ror.org/03pq34j38 BMI Goring Hall Hospital'),
(21419, 'https://ror.org/01vh0ja39', 'en', 1, 'https://ror.org/01vh0ja39 Northgate Hospital'),
(21420, 'https://ror.org/02e5pwb51', 'en', 1, 'https://ror.org/02e5pwb51 Rochford Community Hospital'),
(21421, 'https://ror.org/055sezq52', 'en', 1, 'https://ror.org/055sezq52 Northumbria Specialist Emergency Care Hospital'),
(21422, 'https://ror.org/04ehjk122', 'en', 1, 'https://ror.org/04ehjk122 Nottinghamshire Healthcare NHS Foundation Trust'),
(21423, 'https://ror.org/055qs4r72', 'en', 1, 'https://ror.org/055qs4r72 Gosport War Memorial Hospital'),
(21424, 'https://ror.org/017b62a57', 'en', 1, 'https://ror.org/017b62a57 Ashburton and Buckfastleigh Health and Wellbeing Centre'),
(21425, 'https://ror.org/01z5z6p69', 'en', 1, 'https://ror.org/01z5z6p69 Alston Community Hospital'),
(21426, 'https://ror.org/04d7nv189', 'en', 1, 'https://ror.org/04d7nv189 Wolverhampton Hospital'),
(21427, 'https://ror.org/02w91w637', 'en', 1, 'https://ror.org/02w91w637 Newcastle upon Tyne Hospital'),
(21428, 'https://ror.org/02nz5n617', 'en', 1, 'https://ror.org/02nz5n617 Oaklands Hospital'),
(21429, 'https://ror.org/03fqttr31', 'en', 1, 'https://ror.org/03fqttr31 Odiham Cottage Hospital'),
(21430, 'https://ror.org/00q2cvp40', 'en', 1, 'https://ror.org/00q2cvp40 Cheshunt Minor Injuries Unit'),
(21431, 'https://ror.org/05d9zj517', 'en', 1, 'https://ror.org/05d9zj517 Ormskirk District General Hospital'),
(21432, 'https://ror.org/03afd0v14', 'en', 1, 'https://ror.org/03afd0v14 Orpington Hospital'),
(21433, 'https://ror.org/05k21nx54', 'en', 1, 'https://ror.org/05k21nx54 Samuel Johnson Community Hospital'),
(21434, 'https://ror.org/0436f0775', 'en', 1, 'https://ror.org/0436f0775 Ashford Hospital'),
(21435, 'https://ror.org/00dqxgc74', 'en', 1, 'https://ror.org/00dqxgc74 Orsett Hospital'),
(21436, 'https://ror.org/0210zq234', 'en', 1, 'https://ror.org/0210zq234 Savernake Community Hospital'),
(21437, 'https://ror.org/04mb3yn31', 'en', 1, 'https://ror.org/04mb3yn31 Wansbeck General Hospital'),
(21438, 'https://ror.org/00npj8037', 'en', 1, 'https://ror.org/00npj8037 Paddocks Hospital'),
(21439, 'https://ror.org/040ngxe09', 'en', 1, 'https://ror.org/040ngxe09 Ashtead Hospital'),
(21440, 'https://ror.org/04vb14m12', 'en', 1, 'https://ror.org/04vb14m12 Paignton Health and Wellbeing Centre'),
(21441, 'https://ror.org/01ba6zt09', 'no_lang_code', 1, 'https://ror.org/01ba6zt09 Meritor (Germany)'),
(21442, 'https://ror.org/058tjhm78', 'en', 1, 'https://ror.org/058tjhm78 Grays Court Community Hospital'),
(21443, 'https://ror.org/03g16s487', 'en', 1, 'https://ror.org/03g16s487 Palmer Community Hospital'),
(21444, 'https://ror.org/01yssfs05', 'en', 1, 'https://ror.org/01yssfs05 Green Lane Hospital'),
(21445, 'https://ror.org/01ywnqg74', 'en', 1, 'https://ror.org/01ywnqg74 Chichester Hospital'),
(21446, 'https://ror.org/058gc3944', 'en', 1, 'https://ror.org/058gc3944 The Chiltern Hospital'),
(21447, 'https://ror.org/055vv6n72', 'en', 1, 'https://ror.org/055vv6n72 Sevenoaks Hospital'),
(21448, 'https://ror.org/02gyrfm31', 'en', 1, 'https://ror.org/02gyrfm31 Sheppey Community Hospital'),
(21449, 'https://ror.org/04ssgxk51', 'en', 1, 'https://ror.org/04ssgxk51 Ashworth Hospital'),
(21450, 'https://ror.org/05vhbmg11', 'en', 1, 'https://ror.org/05vhbmg11 Auckland Park Hospital'),
(21451, 'https://ror.org/039s4ex98', 'en', 1, 'https://ror.org/039s4ex98 Patrick Stead Hospital'),
(21452, 'https://ror.org/02mgaej21', 'en', 1, 'https://ror.org/02mgaej21 Guest Hospital'),
(21453, 'https://ror.org/04evvaq96', 'en', 1, 'https://ror.org/04evvaq96 Shirley Oaks Hospital'),
(21454, 'https://ror.org/0142g0j16', 'en', 1, 'https://ror.org/0142g0j16 Pendle Community Hospital'),
(21455, 'https://ror.org/047feaw16', 'en', 1, 'https://ror.org/047feaw16 Shrewsbury and Telford Hospital NHS Trust'),
(21456, 'https://ror.org/0379k6g72', 'en', 1, 'https://ror.org/0379k6g72 Avon and Wiltshire Mental Health Partnership NHS Trust'),
(21457, 'https://ror.org/033wn7604', 'en', 1, 'https://ror.org/033wn7604 Babington Hospital'),
(21458, 'https://ror.org/03t59pc95', 'en', 1, 'https://ror.org/03t59pc95 Pennine Care NHS Foundation Trust'),
(21459, 'https://ror.org/02fpcgg22', 'en', 1, 'https://ror.org/02fpcgg22 Penrith Community Hospital'),
(21460, 'https://ror.org/027wvv544', 'en', 1, 'https://ror.org/027wvv544 Pershore Community Hospital'),
(21461, 'https://ror.org/05td7ze90', 'en', 1, 'https://ror.org/05td7ze90 GB Hunter Memorial Hospital'),
(21462, 'https://ror.org/05xekmj63', 'en', 1, 'https://ror.org/05xekmj63 Sir Robert Peel Community Hospital'),
(21463, 'https://ror.org/05j2jar38', 'en', 1, 'https://ror.org/05j2jar38 Peterlee Community Hospital'),
(21464, 'https://ror.org/01bnxkh93', 'en', 1, 'https://ror.org/01bnxkh93 Petersfield Community Hospital'),
(21465, 'https://ror.org/03snwcw72', 'en', 1, 'https://ror.org/03snwcw72 Sittingbourne Memorial Hospital'),
(21466, 'https://ror.org/00hwjda20', 'en', 1, 'https://ror.org/00hwjda20 Barking Community Hospital'),
(21467, 'https://ror.org/0240exq58', 'en', 1, 'https://ror.org/0240exq58 Skegness Hospital');
INSERT INTO `rors` VALUES
(21468, 'https://ror.org/017cs0m08', 'en', 1, 'https://ror.org/017cs0m08 Guisborough Primary Care Hospital'),
(21469, 'https://ror.org/043tekr24', 'en', 1, 'https://ror.org/043tekr24 Skipton General Hospital'),
(21470, 'https://ror.org/03xnr5143', 'en', 1, 'https://ror.org/03xnr5143 Barking, Havering And Redbridge University Hospitals NHS Trust'),
(21471, 'https://ror.org/04q4vw719', 'en', 1, 'https://ror.org/04q4vw719 Plymouth Hospital'),
(21472, 'https://ror.org/05dfkf260', 'en', 1, 'https://ror.org/05dfkf260 Cirencester Hospital'),
(21473, 'https://ror.org/03z02dh69', 'en', 1, 'https://ror.org/03z02dh69 The South Cheshire Private Hospital'),
(21474, 'https://ror.org/00dwsv166', 'en', 1, 'https://ror.org/00dwsv166 Poltair Community Hospital'),
(21475, 'https://ror.org/05tfkwc03', 'en', 1, 'https://ror.org/05tfkwc03 Barnes Hospital'),
(21476, 'https://ror.org/0343mqp27', 'en', 1, 'https://ror.org/0343mqp27 The Portland Hospital'),
(21477, 'https://ror.org/01kwj6g62', 'en', 1, 'https://ror.org/01kwj6g62 South Hams Hospital'),
(21478, 'https://ror.org/0174ygc67', 'en', 1, 'https://ror.org/0174ygc67 Potters Bar Community Hospital'),
(21479, 'https://ror.org/05epxhz73', 'en', 1, 'https://ror.org/05epxhz73 South Molton Medical Centre'),
(21480, 'https://ror.org/00d2v4e22', 'en', 1, 'https://ror.org/00d2v4e22 Barnet Enfield and Haringey Mental Health Trust'),
(21481, 'https://ror.org/003pb1s55', 'en', 1, 'https://ror.org/003pb1s55 South West London and St George''s Mental Health NHS Trust'),
(21482, 'https://ror.org/015xhb971', 'en', 1, 'https://ror.org/015xhb971 Primrose Hill Hospital'),
(21483, 'https://ror.org/05mxhk636', 'en', 1, 'https://ror.org/05mxhk636 Princess of Wales Community Hospital'),
(21484, 'https://ror.org/00ncdw424', 'en', 1, 'https://ror.org/00ncdw424 Southlands Hospital'),
(21485, 'https://ror.org/02sx8r245', 'en', 1, 'https://ror.org/02sx8r245 Southwold Hospital'),
(21486, 'https://ror.org/03gd99924', 'en', 1, 'https://ror.org/03gd99924 Spire Alexandra Hospital'),
(21487, 'https://ror.org/05acryg85', 'en', 1, 'https://ror.org/05acryg85 Claremont Private Hospital'),
(21488, 'https://ror.org/004zb6b85', 'en', 1, 'https://ror.org/004zb6b85 Spire Cheshire Hospital'),
(21489, 'https://ror.org/05mcdgy79', 'en', 1, 'https://ror.org/05mcdgy79 Spire Clare Park Hospital'),
(21490, 'https://ror.org/056r32056', 'en', 1, 'https://ror.org/056r32056 Spire Manchester Hospital'),
(21491, 'https://ror.org/00pb1mx67', 'en', 1, 'https://ror.org/00pb1mx67 Spire Hull and East Riding Hospital'),
(21492, 'https://ror.org/05myvnr67', 'en', 1, 'https://ror.org/05myvnr67 Romsey Hospital'),
(21493, 'https://ror.org/02de7mm40', 'en', 1, 'https://ror.org/02de7mm40 Basildon Hospital'),
(21494, 'https://ror.org/0513sfw33', 'en', 1, 'https://ror.org/0513sfw33 BMI The Princess Margaret Hospital'),
(21495, 'https://ror.org/01m6agm53', 'en', 1, 'https://ror.org/01m6agm53 Prospect Park Hospital'),
(21496, 'https://ror.org/0144zzh56', 'en', 1, 'https://ror.org/0144zzh56 Bassetlaw Hospital'),
(21497, 'https://ror.org/01btmgx36', 'en', 1, 'https://ror.org/01btmgx36 Spire Cambridge Lea Hospital'),
(21498, 'https://ror.org/053f59471', 'en', 1, 'https://ror.org/053f59471 Haltwhistle War Memorial Hospital'),
(21499, 'https://ror.org/025bx6p27', 'en', 1, 'https://ror.org/025bx6p27 St Pancras Hospital'),
(21500, 'https://ror.org/00knds943', 'en', 1, 'https://ror.org/00knds943 Tolworth Hospital'),
(21501, 'https://ror.org/0287cjk10', 'en', 1, 'https://ror.org/0287cjk10 Spire Little Aston Hospital'),
(21502, 'https://ror.org/016vdk046', 'en', 1, 'https://ror.org/016vdk046 Whipps Cross University Hospital'),
(21503, 'https://ror.org/0463j8f36', 'en', 1, 'https://ror.org/0463j8f36 Spire Regency Hospital'),
(21504, 'https://ror.org/04vpw3947', 'en', 1, 'https://ror.org/04vpw3947 Spire Southampton Hospital'),
(21505, 'https://ror.org/05x5xt830', 'en', 1, 'https://ror.org/05x5xt830 Spire Washington Hospital'),
(21506, 'https://ror.org/010nb2b07', 'en', 1, 'https://ror.org/010nb2b07 Purley War Memorial Hospital'),
(21507, 'https://ror.org/02pc4ce72', 'en', 1, 'https://ror.org/02pc4ce72 Richardson Hospital'),
(21508, 'https://ror.org/02p1s6n26', 'en', 1, 'https://ror.org/02p1s6n26 Spire Wellesley Hospital'),
(21509, 'https://ror.org/02kss3272', 'en', 1, 'https://ror.org/02kss3272 Newcastle Dental Hospital'),
(21510, 'https://ror.org/05j49wk85', 'en', 1, 'https://ror.org/05j49wk85 Springfield University Hospital'),
(21511, 'https://ror.org/03af1tj71', 'en', 1, 'https://ror.org/03af1tj71 Queen Charlotte''s and Chelsea Hospital'),
(21512, 'https://ror.org/051ar9e27', 'en', 1, 'https://ror.org/051ar9e27 St Albans City Hospital'),
(21513, 'https://ror.org/00p6q5476', 'en', 1, 'https://ror.org/00p6q5476 Queen Elizabeth Hospital'),
(21514, 'https://ror.org/05nw3yr55', 'en', 1, 'https://ror.org/05nw3yr55 St Ann’s Hospital'),
(21515, 'https://ror.org/04389kb95', 'en', 1, 'https://ror.org/04389kb95 Queen Mary''s Hospital'),
(21516, 'https://ror.org/02jjcbg38', 'en', 1, 'https://ror.org/02jjcbg38 St Ann''s Hospital'),
(21517, 'https://ror.org/020vke347', 'en', 1, 'https://ror.org/020vke347 Queen Mary''s Hospital For Children'),
(21518, 'https://ror.org/00k478g59', 'en', 1, 'https://ror.org/00k478g59 Bealey Community Hospital'),
(21519, 'https://ror.org/014x14082', 'en', 1, 'https://ror.org/014x14082 Queen Victoria Hospital'),
(21520, 'https://ror.org/04qnyww97', 'en', 1, 'https://ror.org/04qnyww97 Spire St Anthony’s Hospital'),
(21521, 'https://ror.org/02se1sp19', 'en', 1, 'https://ror.org/02se1sp19 Harplands Hospital'),
(21522, 'https://ror.org/02ync6318', 'en', 1, 'https://ror.org/02ync6318 The Beardwood Hospital'),
(21523, 'https://ror.org/02tk9ek40', 'en', 1, 'https://ror.org/02tk9ek40 Clitheroe Community Hospital'),
(21524, 'https://ror.org/045yxgc38', 'en', 1, 'https://ror.org/045yxgc38 The Beaumont Hospital'),
(21525, 'https://ror.org/05m58vw43', 'en', 1, 'https://ror.org/05m58vw43 St Austell Community Hospital'),
(21526, 'https://ror.org/05b6t0504', 'en', 1, 'https://ror.org/05b6t0504 Queen Victoria Memorial Hospital'),
(21527, 'https://ror.org/012g3p565', 'en', 1, 'https://ror.org/012g3p565 St Barnabas Hospital'),
(21528, 'https://ror.org/011k2tc02', 'en', 1, 'https://ror.org/011k2tc02 Beccles & District War Memorial Hospital'),
(21529, 'https://ror.org/00n974j89', 'en', 1, 'https://ror.org/00n974j89 St Charles Hospital'),
(21530, 'https://ror.org/046rmzh87', 'en', 1, 'https://ror.org/046rmzh87 Bensham Hospital'),
(21531, 'https://ror.org/01en9z723', 'en', 1, 'https://ror.org/01en9z723 Redcar Primary Care Hospital'),
(21532, 'https://ror.org/0579ze136', 'en', 1, 'https://ror.org/0579ze136 Havant War Memorial Hospital'),
(21533, 'https://ror.org/04h6m2g55', 'en', 1, 'https://ror.org/04h6m2g55 Cobham Community Hospital'),
(21534, 'https://ror.org/03caevp73', 'en', 1, 'https://ror.org/03caevp73 Renacres Hospital'),
(21535, 'https://ror.org/015swn341', 'en', 1, 'https://ror.org/015swn341 Hawkhurst Community Hospital'),
(21536, 'https://ror.org/04f4nzq23', 'en', 1, 'https://ror.org/04f4nzq23 Retford Hospital'),
(21537, 'https://ror.org/05535qr20', 'en', 1, 'https://ror.org/05535qr20 New Selby War Memorial Hospital'),
(21538, 'https://ror.org/03t542436', 'en', 1, 'https://ror.org/03t542436 Berkshire Healthcare NHS Foundation Trust'),
(21539, 'https://ror.org/02606ke74', 'en', 1, 'https://ror.org/02606ke74 Richmond Royal Hospital'),
(21540, 'https://ror.org/00tgz5618', 'en', 1, 'https://ror.org/00tgz5618 Cockermouth Community Hospital'),
(21541, 'https://ror.org/02dhmwy14', 'en', 1, 'https://ror.org/02dhmwy14 The Berkshire Independent Hospital'),
(21542, 'https://ror.org/01bpk4154', 'en', 1, 'https://ror.org/01bpk4154 St Clement''s Hospital'),
(21543, 'https://ror.org/03zbds496', 'en', 1, 'https://ror.org/03zbds496 Berrywood Hospital'),
(21544, 'https://ror.org/0279qd249', 'en', 1, 'https://ror.org/0279qd249 Bexhill Hospital'),
(21545, 'https://ror.org/032kn8622', 'en', 1, 'https://ror.org/032kn8622 Colman Hospital'),
(21546, 'https://ror.org/05s293m17', 'en', 1, 'https://ror.org/05s293m17 Congleton War Memorial Hospital'),
(21547, 'https://ror.org/00f147v33', 'en', 1, 'https://ror.org/00f147v33 Corbett Hospital'),
(21548, 'https://ror.org/00ekntx28', 'en', 1, 'https://ror.org/00ekntx28 Rutson Hospital'),
(21549, 'https://ror.org/01g96h026', 'en', 1, 'https://ror.org/01g96h026 Corby Community Hospital'),
(21550, 'https://ror.org/02507sy82', 'en', 1, 'https://ror.org/02507sy82 St George''s Hospital'),
(21551, 'https://ror.org/04e0p7290', 'en', 1, 'https://ror.org/04e0p7290 Cossham Hospital'),
(21552, 'https://ror.org/0547wea53', 'en', 1, 'https://ror.org/0547wea53 St George''s Park'),
(21553, 'https://ror.org/02e6wxz44', 'en', 1, 'https://ror.org/02e6wxz44 St Helens and Knowsley Teaching Hospitals NHS Trust'),
(21554, 'https://ror.org/02xphqm22', 'en', 1, 'https://ror.org/02xphqm22 County Hospital'),
(21555, 'https://ror.org/00b43q041', 'en', 1, 'https://ror.org/00b43q041 County Hospital Louth'),
(21556, 'https://ror.org/01y9fq553', 'en', 1, 'https://ror.org/01y9fq553 St Helen''s Rehabilitation Hospital'),
(21557, 'https://ror.org/04r10g051', 'en', 1, 'https://ror.org/04r10g051 Birmingham Community Healthcare NHS Trust'),
(21558, 'https://ror.org/00cants75', 'en', 1, 'https://ror.org/00cants75 Bishop''s Castle Community Hospital'),
(21559, 'https://ror.org/02vh6gg23', 'en', 1, 'https://ror.org/02vh6gg23 Crawley Hospital'),
(21560, 'https://ror.org/00cfsj734', 'en', 1, 'https://ror.org/00cfsj734 St. Joseph''s Hospital'),
(21561, 'https://ror.org/03jytqt55', 'en', 1, 'https://ror.org/03jytqt55 BMI Bishops Wood Hospital'),
(21562, 'https://ror.org/0038dsf96', 'en', 1, 'https://ror.org/0038dsf96 St Leonards Community Hospital'),
(21563, 'https://ror.org/0457fah73', 'en', 1, 'https://ror.org/0457fah73 Cromer Hospital'),
(21564, 'https://ror.org/059c7vm29', 'en', 1, 'https://ror.org/059c7vm29 St Lukes Hospital'),
(21565, 'https://ror.org/05jn5y837', 'en', 1, 'https://ror.org/05jn5y837 Cross Lane Hospital'),
(21566, 'https://ror.org/0340p7w89', 'en', 1, 'https://ror.org/0340p7w89 Crowborough War Memorial Hospital'),
(21567, 'https://ror.org/00sh7p618', 'en', 1, 'https://ror.org/00sh7p618 Croydon Health Services NHS Trust'),
(21568, 'https://ror.org/00ajy2k49', 'en', 1, 'https://ror.org/00ajy2k49 Cygnet Hospital Beckton'),
(21569, 'https://ror.org/059jz3381', 'en', 1, 'https://ror.org/059jz3381 Cygnet Hospital Wyke'),
(21570, 'https://ror.org/04jr90994', 'en', 1, 'https://ror.org/04jr90994 St Martin''s Hospital'),
(21571, 'https://ror.org/02ckzhz90', 'en', 1, 'https://ror.org/02ckzhz90 Blackberry Hill Hospital'),
(21572, 'https://ror.org/053xzd705', 'en', 1, 'https://ror.org/053xzd705 St Martins Hospital'),
(21573, 'https://ror.org/003dyzj34', 'en', 1, 'https://ror.org/003dyzj34 Danetre Hospital'),
(21574, 'https://ror.org/024mswg55', 'en', 1, 'https://ror.org/024mswg55 Blakelands Hospital'),
(21575, 'https://ror.org/03rm88931', 'en', 1, 'https://ror.org/03rm88931 Blandford Community Hospital'),
(21576, 'https://ror.org/011c78869', 'en', 1, 'https://ror.org/011c78869 Hemel Hempstead Hospital'),
(21577, 'https://ror.org/02b27c547', 'en', 1, 'https://ror.org/02b27c547 Dartford And Gravesham NHS Trust'),
(21578, 'https://ror.org/02j3qj605', 'en', 1, 'https://ror.org/02j3qj605 Dartmouth Hospital'),
(21579, 'https://ror.org/03jjx5w61', 'en', 1, 'https://ror.org/03jjx5w61 Rathbone Hospital'),
(21580, 'https://ror.org/04nx23795', 'en', 1, 'https://ror.org/04nx23795 Blyth Community Hospital'),
(21581, 'https://ror.org/036dpa939', 'en', 1, 'https://ror.org/036dpa939 Dawlish Community Hospital'),
(21582, 'https://ror.org/03kea0d35', 'en', 1, 'https://ror.org/03kea0d35 St Mary''s Hospital'),
(21583, 'https://ror.org/02q2vkv24', 'en', 1, 'https://ror.org/02q2vkv24 Bodmin Hospital'),
(21584, 'https://ror.org/02jv2qv86', 'en', 1, 'https://ror.org/02jv2qv86 St Mary''s Hospital'),
(21585, 'https://ror.org/02xnefk61', 'en', 1, 'https://ror.org/02xnefk61 Ridge Lea Hospital'),
(21586, 'https://ror.org/03qyvw759', 'en', 1, 'https://ror.org/03qyvw759 St Mary''s Hospital'),
(21587, 'https://ror.org/049q27a79', 'en', 1, 'https://ror.org/049q27a79 Dereham Hospital'),
(21588, 'https://ror.org/00w9tyd30', 'en', 1, 'https://ror.org/00w9tyd30 Devizes Community Hospital'),
(21589, 'https://ror.org/04d78jp86', 'en', 1, 'https://ror.org/04d78jp86 Ripon Community Hospital'),
(21590, 'https://ror.org/04fkxrb51', 'en', 1, 'https://ror.org/04fkxrb51 Devon Partnership NHS Trust'),
(21591, 'https://ror.org/01fd10471', 'en', 1, 'https://ror.org/01fd10471 Didcot Community Hospital'),
(21592, 'https://ror.org/0154ejv33', 'en', 1, 'https://ror.org/0154ejv33 Herts and Essex Hospital'),
(21593, 'https://ror.org/03d8xva75', 'en', 1, 'https://ror.org/03d8xva75 Dilke Memorial Hospital'),
(21594, 'https://ror.org/013sryf19', 'en', 1, 'https://ror.org/013sryf19 Hertfordshire Community NHS Trust'),
(21595, 'https://ror.org/05w3scj59', 'en', 1, 'https://ror.org/05w3scj59 Doddington Hospital'),
(21596, 'https://ror.org/04jyr6737', 'en', 1, 'https://ror.org/04jyr6737 Hexham General Hospital'),
(21597, 'https://ror.org/038n73266', 'en', 1, 'https://ror.org/038n73266 St Michael''s Hospital'),
(21598, 'https://ror.org/05e1n7415', 'en', 1, 'https://ror.org/05e1n7415 Highbury Hospital'),
(21599, 'https://ror.org/046wsbf61', 'en', 1, 'https://ror.org/046wsbf61 St Michael''s Hospital'),
(21600, 'https://ror.org/04dj8vz80', 'en', 1, 'https://ror.org/04dj8vz80 Doncaster Gate Hospital'),
(21601, 'https://ror.org/01yxt3w38', 'en', 1, 'https://ror.org/01yxt3w38 Dorking Community Hospital'),
(21602, 'https://ror.org/03m3n7e70', 'en', 1, 'https://ror.org/03m3n7e70 Braintree Community Hospital'),
(21603, 'https://ror.org/041105s88', 'en', 1, 'https://ror.org/041105s88 Dovedale Day Hospital'),
(21604, 'https://ror.org/053mas820', 'en', 1, 'https://ror.org/053mas820 The Holly Private Hospital'),
(21605, 'https://ror.org/02mzn3c26', 'en', 1, 'https://ror.org/02mzn3c26 Holmevalley Memorial Hospital'),
(21606, 'https://ror.org/02yvak009', 'en', 1, 'https://ror.org/02yvak009 Holsworthy Community Hospital'),
(21607, 'https://ror.org/007dt0z55', 'en', 1, 'https://ror.org/007dt0z55 Holy Cross Hospital'),
(21608, 'https://ror.org/00x444s43', 'en', 1, 'https://ror.org/00x444s43 Homerton University Hospital'),
(21609, 'https://ror.org/053gqad93', 'en', 1, 'https://ror.org/053gqad93 Swaffham Community Hospital'),
(21610, 'https://ror.org/003fj3t94', 'en', 1, 'https://ror.org/003fj3t94 Swanage Community Hospital'),
(21611, 'https://ror.org/01gyar131', 'en', 1, 'https://ror.org/01gyar131 Tarporley War Memorial Hospital'),
(21612, 'https://ror.org/0003ccc38', 'en', 1, 'https://ror.org/0003ccc38 St Monicas Hospital'),
(21613, 'https://ror.org/055k5br96', 'en', 1, 'https://ror.org/055k5br96 Bridgewater Hospital'),
(21614, 'https://ror.org/00h8etg68', 'en', 1, 'https://ror.org/00h8etg68 Tavistock Hospital'),
(21615, 'https://ror.org/0579rm888', 'en', 1, 'https://ror.org/0579rm888 St Nicholas Hospital'),
(21616, 'https://ror.org/04p861642', 'en', 1, 'https://ror.org/04p861642 Dulwich Community Hospital'),
(21617, 'https://ror.org/04nz0sd46', 'en', 1, 'https://ror.org/04nz0sd46 Teddington Memorial Hospital'),
(21618, 'https://ror.org/00dee9m47', 'en', 1, 'https://ror.org/00dee9m47 St. Oswald''s Hospital'),
(21619, 'https://ror.org/04s03zf45', 'en', 1, 'https://ror.org/04s03zf45 Tees, Esk and Wear Valleys NHS Foundation Trust'),
(21620, 'https://ror.org/04amyvf24', 'en', 1, 'https://ror.org/04amyvf24 St Peter''s Hospital'),
(21621, 'https://ror.org/02pt8pf90', 'en', 1, 'https://ror.org/02pt8pf90 Horncastle War Memorial Hospital'),
(21622, 'https://ror.org/029xkyf70', 'en', 1, 'https://ror.org/029xkyf70 Spire Dunedin Hospital'),
(21623, 'https://ror.org/0098w0b67', 'en', 1, 'https://ror.org/0098w0b67 Teignmouth Community Hospital'),
(21624, 'https://ror.org/02gfnab20', 'en', 1, 'https://ror.org/02gfnab20 Bridgnorth Community Hospital'),
(21625, 'https://ror.org/03kce8684', 'en', 1, 'https://ror.org/03kce8684 Tenbury Community Hospital'),
(21626, 'https://ror.org/00kckms84', 'en', 1, 'https://ror.org/00kckms84 Tetbury Hospital'),
(21627, 'https://ror.org/00a8ct372', 'en', 1, 'https://ror.org/00a8ct372 Bridlington Hospital'),
(21628, 'https://ror.org/01eh8k851', 'en', 1, 'https://ror.org/01eh8k851 Bridport Community Hospital'),
(21629, 'https://ror.org/04ze4qf38', 'en', 1, 'https://ror.org/04ze4qf38 Thame Community Hospital'),
(21630, 'https://ror.org/058mq4s80', 'en', 1, 'https://ror.org/058mq4s80 Stamford and Rutland Hospital'),
(21631, 'https://ror.org/0010vn771', 'en', 1, 'https://ror.org/0010vn771 Dunston Hill Hospital'),
(21632, 'https://ror.org/01xew6m16', 'en', 1, 'https://ror.org/01xew6m16 Nuffield Health Bristol Hospital'),
(21633, 'https://ror.org/02dt8zs37', 'en', 1, 'https://ror.org/02dt8zs37 The Foscote Hospital'),
(21634, 'https://ror.org/0220rp185', 'en', 1, 'https://ror.org/0220rp185 Stockport NHS Foundation Trust'),
(21635, 'https://ror.org/04g3zjj79', 'en', 1, 'https://ror.org/04g3zjj79 Stratford Hospital'),
(21636, 'https://ror.org/02ryc4y44', 'en', 1, 'https://ror.org/02ryc4y44 East and North Hertfordshire NHS Trust'),
(21637, 'https://ror.org/04h6jt451', 'en', 1, 'https://ror.org/04h6jt451 Stratton Community Hospital'),
(21638, 'https://ror.org/0200b5370', 'en', 1, 'https://ror.org/0200b5370 The Gordon Hospital'),
(21639, 'https://ror.org/01j64ar73', 'en', 1, 'https://ror.org/01j64ar73 East Cheshire NHS Trust'),
(21640, 'https://ror.org/00rzjv003', 'en', 1, 'https://ror.org/00rzjv003 Stretford Memorial Hospital'),
(21641, 'https://ror.org/054wcm905', 'en', 1, 'https://ror.org/054wcm905 Stroud General Hospital'),
(21642, 'https://ror.org/017ah0j38', 'en', 1, 'https://ror.org/017ah0j38 Horsham Hospital'),
(21643, 'https://ror.org/04bd41p10', 'en', 1, 'https://ror.org/04bd41p10 Bristol Homeopathic Hospital'),
(21644, 'https://ror.org/02xex0f63', 'en', 1, 'https://ror.org/02xex0f63 Stroud Maternity Hospital'),
(21645, 'https://ror.org/03t9xp890', 'en', 1, 'https://ror.org/03t9xp890 East Cleveland Primary Care Hospital'),
(21646, 'https://ror.org/03tarqk49', 'en', 1, 'https://ror.org/03tarqk49 Hospital of St. Cross'),
(21647, 'https://ror.org/00ffqn037', 'en', 1, 'https://ror.org/00ffqn037 Hospital of St John & St Elizabeth'),
(21648, 'https://ror.org/01ngyvd83', 'en', 1, 'https://ror.org/01ngyvd83 Brixham Community Hospital'),
(21649, 'https://ror.org/01gcsh020', 'en', 1, 'https://ror.org/01gcsh020 Hounslow and Richmond Community Healthcare NHS Trust'),
(21650, 'https://ror.org/00f83h470', 'en', 1, 'https://ror.org/00f83h470 Surrey and Borders Partnership NHS Foundation Trust'),
(21651, 'https://ror.org/0480vrj36', 'en', 1, 'https://ror.org/0480vrj36 Surrey and Sussex Healthcare NHS Trust'),
(21652, 'https://ror.org/002pa9318', 'en', 1, 'https://ror.org/002pa9318 East Lancashire Hospitals NHS Trust'),
(21653, 'https://ror.org/055pdxb86', 'en', 1, 'https://ror.org/055pdxb86 East Midlands Ambulance Service NHS Trust'),
(21654, 'https://ror.org/03f7qhc68', 'en', 1, 'https://ror.org/03f7qhc68 Broadgreen Hospital'),
(21655, 'https://ror.org/01p6fsx62', 'en', 1, 'https://ror.org/01p6fsx62 Spire Bristol Hospital'),
(21656, 'https://ror.org/00zdr6w59', 'en', 1, 'https://ror.org/00zdr6w59 Sutton Hospital'),
(21657, 'https://ror.org/00cepga67', 'en', 1, 'https://ror.org/00cepga67 Lambeth Hospital'),
(21658, 'https://ror.org/05anzrg13', 'en', 1, 'https://ror.org/05anzrg13 East of England Ambulance Service NHS Trust'),
(21659, 'https://ror.org/055wnve73', 'en', 1, 'https://ror.org/055wnve73 Bromyard Community Hospital'),
(21660, 'https://ror.org/04sx1q420', 'en', 1, 'https://ror.org/04sx1q420 East Riding Community Hospital'),
(21661, 'https://ror.org/007f12622', 'en', 1, 'https://ror.org/007f12622 Bognor Regis War Memorial Hospital'),
(21662, 'https://ror.org/033z99h42', 'en', 1, 'https://ror.org/033z99h42 Montefiore Hospital'),
(21663, 'https://ror.org/03c4aza49', 'en', 1, 'https://ror.org/03c4aza49 HRH Princess Christian''s Hospital'),
(21664, 'https://ror.org/04tvjvp97', 'en', 1, 'https://ror.org/04tvjvp97 East Sussex Healthcare NHS Trust'),
(21665, 'https://ror.org/055jskg35', 'en', 1, 'https://ror.org/055jskg35 Eastman Dental Hospital'),
(21666, 'https://ror.org/006jqh454', 'en', 1, 'https://ror.org/006jqh454 Brookfields Hospital'),
(21667, 'https://ror.org/05fnsjm04', 'en', 1, 'https://ror.org/05fnsjm04 Brooklands Hospital'),
(21668, 'https://ror.org/016sj4q14', 'en', 1, 'https://ror.org/016sj4q14 Buckingham Community Hospital'),
(21669, 'https://ror.org/036tx2n48', 'en', 1, 'https://ror.org/036tx2n48 Edenbridge and District War Memorial Hospital'),
(21670, 'https://ror.org/01y661f36', 'en', 1, 'https://ror.org/01y661f36 Wantage Community Hospital'),
(21671, 'https://ror.org/04j9g4c85', 'en', 1, 'https://ror.org/04j9g4c85 Wareham Community Hospital'),
(21672, 'https://ror.org/037f2xv36', 'en', 1, 'https://ror.org/037f2xv36 Buckinghamshire Healthcare NHS Trust'),
(21673, 'https://ror.org/057trv649', 'en', 1, 'https://ror.org/057trv649 Edgware Community Hospital'),
(21674, 'https://ror.org/024tpjw43', 'en', 1, 'https://ror.org/024tpjw43 The Princess Grace Hospital'),
(21675, 'https://ror.org/03gr30s78', 'en', 1, 'https://ror.org/03gr30s78 Buckland Hospital'),
(21676, 'https://ror.org/01pw31s78', 'en', 1, 'https://ror.org/01pw31s78 Huntercombe Hospital'),
(21677, 'https://ror.org/01m4ay116', 'en', 1, 'https://ror.org/01m4ay116 Edward Hain Community Hospital'),
(21678, 'https://ror.org/0272v4z91', 'en', 1, 'https://ror.org/0272v4z91 Warminster Community Hospital'),
(21679, 'https://ror.org/0411fwb51', 'en', 1, 'https://ror.org/0411fwb51 Ellen Badger Hospital'),
(21680, 'https://ror.org/05pvtn103', 'en', 1, 'https://ror.org/05pvtn103 Hythe Hospital'),
(21681, 'https://ror.org/055qatb41', 'en', 1, 'https://ror.org/055qatb41 Royal London Hospital for Integrated Medicine'),
(21682, 'https://ror.org/05pjd0m90', 'en', 1, 'https://ror.org/05pjd0m90 The Royal Wolverhampton NHS Trust'),
(21683, 'https://ror.org/003e62q52', 'en', 1, 'https://ror.org/003e62q52 Ellesmere Port Hospital'),
(21684, 'https://ror.org/00swtqd36', 'en', 1, 'https://ror.org/00swtqd36 Vale Community Hospital'),
(21685, 'https://ror.org/04fb0yn25', 'en', 1, 'https://ror.org/04fb0yn25 The Wellington Hospital'),
(21686, 'https://ror.org/0465c2k31', 'en', 1, 'https://ror.org/0465c2k31 Bupa Cromwell Hospital'),
(21687, 'https://ror.org/04xg7ga92', 'en', 1, 'https://ror.org/04xg7ga92 Wathwood Hospital'),
(21688, 'https://ror.org/04ny9jk61', 'en', 1, 'https://ror.org/04ny9jk61 Clevedon Hospital'),
(21689, 'https://ror.org/03c8kha54', 'en', 1, 'https://ror.org/03c8kha54 Spire Hartswood Hospital'),
(21690, 'https://ror.org/05t1w2321', 'en', 1, 'https://ror.org/05t1w2321 Wells Community Hospital'),
(21691, 'https://ror.org/01m53p035', 'en', 1, 'https://ror.org/01m53p035 Tickhill Road Hospital'),
(21692, 'https://ror.org/00nct2329', 'en', 1, 'https://ror.org/00nct2329 New Epsom and Ewell Community Hospital'),
(21693, 'https://ror.org/00c7sr793', 'en', 1, 'https://ror.org/00c7sr793 Tonbridge Cottage Hospital'),
(21694, 'https://ror.org/026cn0061', 'en', 1, 'https://ror.org/026cn0061 Erith and District Hospital'),
(21695, 'https://ror.org/036p7xd52', 'en', 1, 'https://ror.org/036p7xd52 West Berkshire Community Hospital'),
(21696, 'https://ror.org/022jsgk59', 'en', 1, 'https://ror.org/022jsgk59 West Cornwall Hospital'),
(21697, 'https://ror.org/00crq8079', 'en', 1, 'https://ror.org/00crq8079 Euxton Hall Hospital'),
(21698, 'https://ror.org/04b3gg905', 'en', 1, 'https://ror.org/04b3gg905 Evesham Community Hospital'),
(21699, 'https://ror.org/01h7rq191', 'en', 1, 'https://ror.org/01h7rq191 Torrington Hospital'),
(21700, 'https://ror.org/03e4g1593', 'en', 1, 'https://ror.org/03e4g1593 West Hertfordshire Hospitals NHS Trust'),
(21701, 'https://ror.org/0368bwa14', 'en', 1, 'https://ror.org/0368bwa14 West Lane Hospital'),
(21702, 'https://ror.org/05a5dkj17', 'en', 1, 'https://ror.org/05a5dkj17 Exeter Hospital'),
(21703, 'https://ror.org/05fgy3p67', 'en', 1, 'https://ror.org/05fgy3p67 West London Mental Health NHS Trust'),
(21704, 'https://ror.org/00z1wsn64', 'en', 1, 'https://ror.org/00z1wsn64 Bushey Fields Hospital'),
(21705, 'https://ror.org/05x1mdb86', 'en', 1, 'https://ror.org/05x1mdb86 Totnes Community Hospital'),
(21706, 'https://ror.org/00ezmxr80', 'en', 1, 'https://ror.org/00ezmxr80 Fairfield Independent Hospital'),
(21707, 'https://ror.org/05xhfc919', 'en', 1, 'https://ror.org/05xhfc919 Fairford Hospital'),
(21708, 'https://ror.org/00f574b02', 'en', 1, 'https://ror.org/00f574b02 West Park Hospital'),
(21709, 'https://ror.org/02kkv7f68', 'en', 1, 'https://ror.org/02kkv7f68 Falmouth Community Hospital'),
(21710, 'https://ror.org/043zhb260', 'en', 1, 'https://ror.org/043zhb260 Buxton Hospital'),
(21711, 'https://ror.org/05ymj3g35', 'en', 1, 'https://ror.org/05ymj3g35 Trowbridge Community Hospital'),
(21712, 'https://ror.org/02ckk6855', 'en', 1, 'https://ror.org/02ckk6855 Kent Community Health NHS Foundation Trust'),
(21713, 'https://ror.org/03v330a52', 'en', 1, 'https://ror.org/03v330a52 Tunbridge Wells Hospital'),
(21714, 'https://ror.org/05xwfa541', 'en', 1, 'https://ror.org/05xwfa541 Keswick Community Hospital'),
(21715, 'https://ror.org/03774pf85', 'en', 1, 'https://ror.org/03774pf85 Fareham Community Hospital'),
(21716, 'https://ror.org/000kfx178', 'en', 1, 'https://ror.org/000kfx178 Calderstones Partnership NHS Foundation Trust'),
(21717, 'https://ror.org/03gdfyp04', 'en', 1, 'https://ror.org/03gdfyp04 Farnham Hospital & Centre For Health'),
(21718, 'https://ror.org/01zhzx806', 'en', 1, 'https://ror.org/01zhzx806 Callington Road Hospital'),
(21719, 'https://ror.org/049d3ch40', 'en', 1, 'https://ror.org/049d3ch40 Kidderminster Hospital and Treatment Centre'),
(21720, 'https://ror.org/03rhw7p81', 'en', 1, 'https://ror.org/03rhw7p81 Camborne Redruth Community Hospital'),
(21721, 'https://ror.org/04fham916', 'en', 1, 'https://ror.org/04fham916 Farnham Road Hospital'),
(21722, 'https://ror.org/041q37h40', 'en', 1, 'https://ror.org/041q37h40 Cambridgeshire Community Services NHS Trust'),
(21723, 'https://ror.org/05e4e0g07', 'en', 1, 'https://ror.org/05e4e0g07 Westbourne Green Community Hospital'),
(21724, 'https://ror.org/022brwp40', 'en', 1, 'https://ror.org/022brwp40 Cannock Chase Hospital'),
(21725, 'https://ror.org/0325v0r75', 'en', 1, 'https://ror.org/0325v0r75 Faversham Cottage Hospital'),
(21726, 'https://ror.org/00xjnse39', 'en', 1, 'https://ror.org/00xjnse39 Oaks Hospital'),
(21727, 'https://ror.org/03pqmqc37', 'en', 1, 'https://ror.org/03pqmqc37 St. Margaret''s Hospital'),
(21728, 'https://ror.org/02ekga339', 'en', 1, 'https://ror.org/02ekga339 Duchy Hospital'),
(21729, 'https://ror.org/006sa3014', 'en', 1, 'https://ror.org/006sa3014 Rivers Hospital'),
(21730, 'https://ror.org/04atxr455', 'en', 1, 'https://ror.org/04atxr455 BMI Fawkham Manor Hospital'),
(21731, 'https://ror.org/03dww3s84', 'en', 1, 'https://ror.org/03dww3s84 Springfield Hospital'),
(21732, 'https://ror.org/03qc71575', 'en', 1, 'https://ror.org/03qc71575 Western Community Hospital'),
(21733, 'https://ror.org/0410akr80', 'en', 1, 'https://ror.org/0410akr80 Esperance Hospital'),
(21734, 'https://ror.org/04g0t2d47', 'en', 1, 'https://ror.org/04g0t2d47 Western Eye Hospital'),
(21735, 'https://ror.org/02ndvaj90', 'en', 1, 'https://ror.org/02ndvaj90 Westhaven Hospital'),
(21736, 'https://ror.org/01k2edc04', 'en', 1, 'https://ror.org/01k2edc04 Carter Bequest Primary Care Hospital'),
(21737, 'https://ror.org/02tg3d712', 'en', 1, 'https://ror.org/02tg3d712 Lambert Memorial Community Hospital'),
(21738, 'https://ror.org/03zefc030', 'en', 1, 'https://ror.org/03zefc030 Lancashire Care NHS Foundation Trust'),
(21739, 'https://ror.org/013veys68', 'en', 1, 'https://ror.org/013veys68 Cassel Hospital'),
(21740, 'https://ror.org/01wx7k245', 'en', 1, 'https://ror.org/01wx7k245 Langdon Hospital'),
(21741, 'https://ror.org/02pgzvy52', 'en', 1, 'https://ror.org/02pgzvy52 Westmorland General Hospital'),
(21742, 'https://ror.org/01tnf8c58', 'en', 1, 'https://ror.org/01tnf8c58 Feilding Palmer Hospital'),
(21743, 'https://ror.org/010exe056', 'en', 1, 'https://ror.org/010exe056 Ilfracombe Tyrrell Hospital'),
(21744, 'https://ror.org/048vvpr19', 'en', 1, 'https://ror.org/048vvpr19 Felixstowe Community Hospital'),
(21745, 'https://ror.org/03ztzw430', 'en', 1, 'https://ror.org/03ztzw430 Uckfield Community Hospital'),
(21746, 'https://ror.org/013wphc16', 'en', 1, 'https://ror.org/013wphc16 Castleberg Hospital'),
(21747, 'https://ror.org/01brsq570', 'en', 1, 'https://ror.org/01brsq570 Weymouth Community Hospital'),
(21748, 'https://ror.org/00wrevg56', 'en', 1, 'https://ror.org/00wrevg56 University College Hospital'),
(21749, 'https://ror.org/002yssj28', 'en', 1, 'https://ror.org/002yssj28 Wharfedale Hospital'),
(21750, 'https://ror.org/00z1y4j19', 'en', 1, 'https://ror.org/00z1y4j19 University Hospital of Hartlepool'),
(21751, 'https://ror.org/03g47g866', 'en', 1, 'https://ror.org/03g47g866 University Hospitals of North Midlands NHS Trust'),
(21752, 'https://ror.org/04q1zdg40', 'en', 1, 'https://ror.org/04q1zdg40 Caterham Dene Hospital'),
(21753, 'https://ror.org/007bv1h22', 'en', 1, 'https://ror.org/007bv1h22 The Edgbaston Hospital'),
(21754, 'https://ror.org/041gzn235', 'en', 1, 'https://ror.org/041gzn235 Hendon Hospital'),
(21755, 'https://ror.org/02n6vx076', 'en', 1, 'https://ror.org/02n6vx076 BMI The Highfield Hospital'),
(21756, 'https://ror.org/022ejqa41', 'en', 1, 'https://ror.org/022ejqa41 BMI The Ridgeway Hospital'),
(21757, 'https://ror.org/0116kk067', 'en', 1, 'https://ror.org/0116kk067 Leatherhead Community Hospital'),
(21758, 'https://ror.org/05vkg6y29', 'en', 1, 'https://ror.org/05vkg6y29 Fieldhead Hospital'),
(21759, 'https://ror.org/01776ep11', 'en', 1, 'https://ror.org/01776ep11 Leeds Community Healthcare NHS Trust'),
(21760, 'https://ror.org/00tq70902', 'en', 1, 'https://ror.org/00tq70902 Finchley Memorial Hospital'),
(21761, 'https://ror.org/01nefj689', 'en', 1, 'https://ror.org/01nefj689 Rye Winchelsea and District Memorial Hospital'),
(21762, 'https://ror.org/008ngcp91', 'en', 1, 'https://ror.org/008ngcp91 Central London Community Healthcare NHS Trust'),
(21763, 'https://ror.org/04rxffs27', 'en', 1, 'https://ror.org/04rxffs27 Fleet Community Hospital'),
(21764, 'https://ror.org/05x6t5z92', 'en', 1, 'https://ror.org/05x6t5z92 Fleetwood Hospital'),
(21765, 'https://ror.org/01my6jy29', 'en', 1, 'https://ror.org/01my6jy29 Helston Community Hospital'),
(21766, 'https://ror.org/002ekrn29', 'en', 1, 'https://ror.org/002ekrn29 Abingdon Community Hospital'),
(21767, 'https://ror.org/05be09h62', 'en', 1, 'https://ror.org/05be09h62 Fordingbridge Hospital'),
(21768, 'https://ror.org/00n0m9p12', 'en', 1, 'https://ror.org/00n0m9p12 The Acre'),
(21769, 'https://ror.org/021qf1j15', 'en', 1, 'https://ror.org/021qf1j15 Townlands Memorial Hospital'),
(21770, 'https://ror.org/03k6wst68', 'en', 1, 'https://ror.org/03k6wst68 Hopewood Park Hospital'),
(21771, 'https://ror.org/043kgww95', 'en', 1, 'https://ror.org/043kgww95 Fowey Hospital'),
(21772, 'https://ror.org/02vpjdc07', 'en', 1, 'https://ror.org/02vpjdc07 Franklyn Community Hospital'),
(21773, 'https://ror.org/04vndy634', 'en', 1, 'https://ror.org/04vndy634 Friary Community Hospital'),
(21774, 'https://ror.org/00rqys923', 'en', 1, 'https://ror.org/00rqys923 Victoria Community Hospital'),
(21775, 'https://ror.org/02c3a1v05', 'en', 1, 'https://ror.org/02c3a1v05 Spire Gatwick Park Hospital'),
(21776, 'https://ror.org/03khznd17', 'en', 1, 'https://ror.org/03khznd17 Gloucestershire Health and Care NHS Foundation Trust'),
(21777, 'https://ror.org/05641j286', 'en', 1, 'https://ror.org/05641j286 Leek Moorlands Hospital'),
(21778, 'https://ror.org/00x0j8257', 'en', 1, 'https://ror.org/00x0j8257 Goodmayes Hospital'),
(21779, 'https://ror.org/0233tck35', 'en', 1, 'https://ror.org/0233tck35 Wallingford Community Hospital'),
(21780, 'https://ror.org/02ewbw974', 'en', 1, 'https://ror.org/02ewbw974 Leigh House Hospital'),
(21781, 'https://ror.org/039sdwk42', 'en', 1, 'https://ror.org/039sdwk42 Leominster Community Hospital'),
(21782, 'https://ror.org/01ketq791', 'en', 1, 'https://ror.org/01ketq791 Aldeburgh Hospital'),
(21783, 'https://ror.org/05fsnfd13', 'en', 1, 'https://ror.org/05fsnfd13 Lewes Victoria Hospital'),
(21784, 'https://ror.org/04vgz8j88', 'en', 1, 'https://ror.org/04vgz8j88 University Hospital Lewisham'),
(21785, 'https://ror.org/01vz7g950', 'en', 1, 'https://ror.org/01vz7g950 Seaford Day Hospital'),
(21786, 'https://ror.org/03zs39p74', 'en', 1, 'https://ror.org/03zs39p74 Altrincham Hospital'),
(21787, 'https://ror.org/00r5ys630', 'en', 1, 'https://ror.org/00r5ys630 Amberstone Hospital'),
(21788, 'https://ror.org/057jy1g44', 'en', 1, 'https://ror.org/057jy1g44 Liskeard Community Hospital'),
(21789, 'https://ror.org/01bc2jm91', 'en', 1, 'https://ror.org/01bc2jm91 Haywards Heath Hospital'),
(21790, 'https://ror.org/005jzz257', 'en', 1, 'https://ror.org/005jzz257 Liverpool Community Health NHS Trust'),
(21791, 'https://ror.org/044t6xx36', 'en', 1, 'https://ror.org/044t6xx36 Chippenham Community Hospital'),
(21792, 'https://ror.org/00n293x32', 'en', 1, 'https://ror.org/00n293x32 Clay Cross Hospital'),
(21793, 'https://ror.org/03srdnd02', 'en', 1, 'https://ror.org/03srdnd02 Livingstone Community Hospital'),
(21794, 'https://ror.org/04scsxq13', 'en', 1, 'https://ror.org/04scsxq13 Newholme Hospital'),
(21795, 'https://ror.org/01hk5ha98', 'en', 1, 'https://ror.org/01hk5ha98 St Mary''s Hospital'),
(21796, 'https://ror.org/04jzrvb03', 'en', 1, 'https://ror.org/04jzrvb03 Walsall Healthcare NHS Trust'),
(21797, 'https://ror.org/04cd78k07', 'en', 1, 'https://ror.org/04cd78k07 London Ambulance Service NHS Trust'),
(21798, 'https://ror.org/00d8sh725', 'en', 1, 'https://ror.org/00d8sh725 Coalville Community Hospital'),
(21799, 'https://ror.org/0103jrh39', 'en', 1, 'https://ror.org/0103jrh39 BMI The London Independent Hospital'),
(21800, 'https://ror.org/04cntmc13', 'en', 1, 'https://ror.org/04cntmc13 London North West Healthcare NHS Trust'),
(21801, 'https://ror.org/04py01q17', 'en', 1, 'https://ror.org/04py01q17 BMI The Droitwich Spa Hospital'),
(21802, 'https://ror.org/02htksw11', 'en', 1, 'https://ror.org/02htksw11 Longridge Community Hospital'),
(21803, 'https://ror.org/03vbb1674', 'en', 1, 'https://ror.org/03vbb1674 Longton Cottage Hospital'),
(21804, 'https://ror.org/000ttz716', 'en', 1, 'https://ror.org/000ttz716 Ludlow Community Hospital'),
(21805, 'https://ror.org/03ms5t516', 'en', 1, 'https://ror.org/03ms5t516 Lydney and District Hospital'),
(21806, 'https://ror.org/048knqr75', 'en', 1, 'https://ror.org/048knqr75 Bicester Community Hospital'),
(21807, 'https://ror.org/04bk3rn37', 'en', 1, 'https://ror.org/04bk3rn37 Lytham Hospital'),
(21808, 'https://ror.org/024n99014', 'en', 1, 'https://ror.org/024n99014 Thames Valley Hospital'),
(21809, 'https://ror.org/02yq33n72', 'en', 1, 'https://ror.org/02yq33n72 Maidstone and Tunbridge Wells NHS Trust'),
(21810, 'https://ror.org/01j9fyk40', 'en', 1, 'https://ror.org/01j9fyk40 Chester le Street Community Hospital'),
(21811, 'https://ror.org/01zk9kz10', 'en', 1, 'https://ror.org/01zk9kz10 Nelson Hospital'),
(21812, 'https://ror.org/05smxxj12', 'en', 1, 'https://ror.org/05smxxj12 Malton Community Hospital'),
(21813, 'https://ror.org/01ar9ff23', 'en', 1, 'https://ror.org/01ar9ff23 Malvern Community Hospital'),
(21814, 'https://ror.org/04pt7tz26', 'en', 1, 'https://ror.org/04pt7tz26 West Heath Hospital'),
(21815, 'https://ror.org/05sq6ae13', 'en', 1, 'https://ror.org/05sq6ae13 Manor Hospital'),
(21816, 'https://ror.org/03df6me86', 'en', 1, 'https://ror.org/03df6me86 West View Integrated Care Centre'),
(21817, 'https://ror.org/04t7w7h11', 'en', 1, 'https://ror.org/04t7w7h11 Alfred Bean Hospital'),
(21818, 'https://ror.org/04t83hz09', 'en', 1, 'https://ror.org/04t83hz09 Mansfield Community Hospital'),
(21819, 'https://ror.org/02r8zc629', 'en', 1, 'https://ror.org/02r8zc629 Market Drayton Cottage Hospital'),
(21820, 'https://ror.org/00kaped05', 'en', 1, 'https://ror.org/00kaped05 Chipping Norton War Memorial Community Hospital'),
(21821, 'https://ror.org/00h1cg828', 'en', 1, 'https://ror.org/00h1cg828 Marlow Community Hospital'),
(21822, 'https://ror.org/02bwd6p34', 'en', 1, 'https://ror.org/02bwd6p34 Ashfield Community Hospital'),
(21823, 'https://ror.org/05tfp2303', 'en', 1, 'https://ror.org/05tfp2303 Clacton Hospital'),
(21824, 'https://ror.org/0395ge265', 'en', 1, 'https://ror.org/0395ge265 Weybridge Community Hospital'),
(21825, 'https://ror.org/04xjs5g68', 'en', 1, 'https://ror.org/04xjs5g68 Spire London East Hospital'),
(21826, 'https://ror.org/02d0hr347', 'en', 1, 'https://ror.org/02d0hr347 Maryport Victoria Cottage Hospital'),
(21827, 'https://ror.org/02788t795', 'en', 1, 'https://ror.org/02788t795 Maudsley Hospital'),
(21828, 'https://ror.org/01t881g83', 'en', 1, 'https://ror.org/01t881g83 Saffron Walden Community Hospital'),
(21829, 'https://ror.org/029y8px13', 'en', 1, 'https://ror.org/029y8px13 Newmarket Hospital'),
(21830, 'https://ror.org/05a9xrg77', 'en', 1, 'https://ror.org/05a9xrg77 Mayfair Day Hospital'),
(21831, 'https://ror.org/00p5pgq41', 'en', 1, 'https://ror.org/00p5pgq41 Elmleigh Hospital'),
(21832, 'https://ror.org/01ztsjv38', 'en', 1, 'https://ror.org/01ztsjv38 Mayflower Community Hospital'),
(21833, 'https://ror.org/01d97fd71', 'en', 1, 'https://ror.org/01d97fd71 Sedgefield Community Hospital'),
(21834, 'https://ror.org/058y6mx80', 'en', 1, 'https://ror.org/058y6mx80 Shipley Hospital'),
(21835, 'https://ror.org/051bw0z52', 'en', 1, 'https://ror.org/051bw0z52 Emsworth Hospital'),
(21836, 'https://ror.org/041mj3y24', 'en', 1, 'https://ror.org/041mj3y24 Eccleshill Community Hospital'),
(21837, 'https://ror.org/02h43kn72', 'en', 1, 'https://ror.org/02h43kn72 St. Leonards Hospital'),
(21838, 'https://ror.org/054ysee23', 'en', 1, 'https://ror.org/054ysee23 Barton Community Health & Care Centre'),
(21839, 'https://ror.org/04sahz302', 'en', 1, 'https://ror.org/04sahz302 Newtown Hospital'),
(21840, 'https://ror.org/027ep7e51', 'en', 1, 'https://ror.org/027ep7e51 Sutton Cottage Hospital'),
(21841, 'https://ror.org/00h2car28', 'en', 1, 'https://ror.org/00h2car28 Walton Community Hospital'),
(21842, 'https://ror.org/00gk22h75', 'en', 1, 'https://ror.org/00gk22h75 Walton Hospital'),
(21843, 'https://ror.org/00kgv1q58', 'en', 1, 'https://ror.org/00kgv1q58 Grantham and District Hospital'),
(21844, 'https://ror.org/0372w8x42', 'en', 1, 'https://ror.org/0372w8x42 Bideford Medical Centre'),
(21845, 'https://ror.org/01fpdz014', 'en', 1, 'https://ror.org/01fpdz014 Biggleswade Hospital Spring House'),
(21846, 'https://ror.org/02846rb74', 'en', 1, 'https://ror.org/02846rb74 Whitby Hospital'),
(21847, 'https://ror.org/00qx46v42', 'en', 1, 'https://ror.org/00qx46v42 Bispham Hospital'),
(21848, 'https://ror.org/00gfqxe82', 'en', 1, 'https://ror.org/00gfqxe82 Wilson Hospital'),
(21849, 'https://ror.org/00g3ea624', 'en', 1, 'https://ror.org/00g3ea624 Bletchley Community Hospital'),
(21850, 'https://ror.org/01zfccs95', 'en', 1, 'https://ror.org/01zfccs95 Gravesham Community Hospital'),
(21851, 'https://ror.org/00jw4j947', 'en', 1, 'https://ror.org/00jw4j947 Bolsover Hospital'),
(21852, 'https://ror.org/02vxbf684', 'en', 1, 'https://ror.org/02vxbf684 Winfield Hospital'),
(21853, 'https://ror.org/05f9e0404', 'en', 1, 'https://ror.org/05f9e0404 Paulton Hospital'),
(21854, 'https://ror.org/00s9rtw68', 'en', 1, 'https://ror.org/00s9rtw68 Peasley Cross Hospital'),
(21855, 'https://ror.org/021wnqb35', 'en', 1, 'https://ror.org/021wnqb35 Withernsea Hospital'),
(21856, 'https://ror.org/04bqa8v55', 'en', 1, 'https://ror.org/04bqa8v55 Bowmere Hospital'),
(21857, 'https://ror.org/01jmwv231', 'en', 1, 'https://ror.org/01jmwv231 Witney Community Hospital'),
(21858, 'https://ror.org/01pggea98', 'en', 1, 'https://ror.org/01pggea98 Johnson Community Hospital'),
(21859, 'https://ror.org/05d4aam89', 'en', 1, 'https://ror.org/05d4aam89 Woking Community Hospital'),
(21860, 'https://ror.org/03dw0z746', 'en', 1, 'https://ror.org/03dw0z746 Halstead Hospital'),
(21861, 'https://ror.org/03cej9w90', 'en', 1, 'https://ror.org/03cej9w90 Wokingham Hospital'),
(21862, 'https://ror.org/0026b6z69', 'en', 1, 'https://ror.org/0026b6z69 Whitchurch Community Hospital'),
(21863, 'https://ror.org/05dktpm65', 'en', 1, 'https://ror.org/05dktpm65 White Cross Court Rehabilitation Hospital'),
(21864, 'https://ror.org/01pyd3y08', 'en', 1, 'https://ror.org/01pyd3y08 Brampton War Memorial Hospital'),
(21865, 'https://ror.org/051dv4419', 'en', 1, 'https://ror.org/051dv4419 Woodlands Hospital'),
(21866, 'https://ror.org/02x5def49', 'en', 1, 'https://ror.org/02x5def49 Whitstable and Tankerton Hospital'),
(21867, 'https://ror.org/05p2fta25', 'en', 1, 'https://ror.org/05p2fta25 Harwich And District Hospital'),
(21868, 'https://ror.org/04t3wh438', 'en', 1, 'https://ror.org/04t3wh438 Haslemere Hospital'),
(21869, 'https://ror.org/05f4fmq20', 'en', 1, 'https://ror.org/05f4fmq20 Brentwood Community Hospital'),
(21870, 'https://ror.org/04ygf3832', 'en', 1, 'https://ror.org/04ygf3832 Whitworth Hospital'),
(21871, 'https://ror.org/04n6z1w07', 'en', 1, 'https://ror.org/04n6z1w07 Bridgeways Day Hospital'),
(21872, 'https://ror.org/01k322j33', 'en', 1, 'https://ror.org/01k322j33 Hellesdon Hospital'),
(21873, 'https://ror.org/04c5em741', 'en', 1, 'https://ror.org/04c5em741 Wigton Community Hospital'),
(21874, 'https://ror.org/050j7sq19', 'en', 1, 'https://ror.org/050j7sq19 Woodlands Hospital'),
(21875, 'https://ror.org/05h9ysj75', 'en', 1, 'https://ror.org/05h9ysj75 Willesden Community Rehabilitation Hospital'),
(21876, 'https://ror.org/02bsvz023', 'en', 1, 'https://ror.org/02bsvz023 Hinckley and Bosworth Community Hospital'),
(21877, 'https://ror.org/031mc4w27', 'en', 1, 'https://ror.org/031mc4w27 Hinckley and District Hospital'),
(21878, 'https://ror.org/04gp23z26', 'en', 1, 'https://ror.org/04gp23z26 Prudhoe Hospital'),
(21879, 'https://ror.org/043tt0v89', 'en', 1, 'https://ror.org/043tt0v89 Calderstones Hospital'),
(21880, 'https://ror.org/03acae918', 'en', 1, 'https://ror.org/03acae918 Hitchin Hospital'),
(21881, 'https://ror.org/01cbxe745', 'en', 1, 'https://ror.org/01cbxe745 Queen Victoria Memorial Hospital'),
(21882, 'https://ror.org/05n1t5q87', 'en', 1, 'https://ror.org/05n1t5q87 Ripley Hospital'),
(21883, 'https://ror.org/03bnqh738', 'en', 1, 'https://ror.org/03bnqh738 Castleford, Normanton and District Hospital'),
(21884, 'https://ror.org/05yd61k38', 'en', 1, 'https://ror.org/05yd61k38 Hollins Park Hospital'),
(21885, 'https://ror.org/01gnx5040', 'en', 1, 'https://ror.org/01gnx5040 Cavendish Hospital'),
(21886, 'https://ror.org/04epv6m25', 'en', 1, 'https://ror.org/04epv6m25 Hornsea Cottage Hospital'),
(21887, 'https://ror.org/02s1b7x83', 'en', 1, 'https://ror.org/02s1b7x83 Workington Community Hospital'),
(21888, 'https://ror.org/051s9as34', 'en', 1, 'https://ror.org/051s9as34 Hundens Lane Day Hospital'),
(21889, 'https://ror.org/05q7b6a32', 'en', 1, 'https://ror.org/05q7b6a32 Orchards Day Hospital'),
(21890, 'https://ror.org/030p4ph45', 'en', 1, 'https://ror.org/030p4ph45 Wotton Lawn Hospital'),
(21891, 'https://ror.org/03yk2q786', 'en', 1, 'https://ror.org/03yk2q786 Wye Valley NHS Trust'),
(21892, 'https://ror.org/04xamr707', 'en', 1, 'https://ror.org/04xamr707 Ilkeston Hospital'),
(21893, 'https://ror.org/027e4g787', 'en', 1, 'https://ror.org/027e4g787 York Teaching Hospital NHS Foundation Trust'),
(21894, 'https://ror.org/01sawky49', 'en', 1, 'https://ror.org/01sawky49 Yorkshire Ambulance Service NHS Trust'),
(21895, 'https://ror.org/02jxcp012', 'en', 1, 'https://ror.org/02jxcp012 Ida Darwin hospital'),
(21896, 'https://ror.org/01fc8vj32', 'en', 1, 'https://ror.org/01fc8vj32 Zachary Merton Hospital'),
(21897, 'https://ror.org/03egk3v94', 'en', 1, 'https://ror.org/03egk3v94 Advanced Applied Physics Solutions'),
(21898, 'https://ror.org/03b5r4s12', 'en', 1, 'https://ror.org/03b5r4s12 Victoria Central Hospital'),
(21899, 'https://ror.org/03hcgzj74', 'en', 1, 'https://ror.org/03hcgzj74 Isebrook Hospital'),
(21900, 'https://ror.org/02g77ac10', 'en', 1, 'https://ror.org/02g77ac10 Red Crow Community College'),
(21901, 'https://ror.org/03ygyva39', 'en', 1, 'https://ror.org/03ygyva39 Walnut Tree Hospital'),
(21902, 'https://ror.org/048sa9h54', 'en', 1, 'https://ror.org/048sa9h54 John Black Day Hospital'),
(21903, 'https://ror.org/04k34dm23', 'en', 1, 'https://ror.org/04k34dm23 John Coupland Hospital'),
(21904, 'https://ror.org/02f622w49', 'en', 1, 'https://ror.org/02f622w49 Kelling Hospital'),
(21905, 'https://ror.org/024epr358', 'en', 1, 'https://ror.org/024epr358 Kendray Hospital'),
(21906, 'https://ror.org/05bk70695', 'fr', 1, 'https://ror.org/05bk70695 Association Canadienne d''Education de Langue FranƧaise'),
(21907, 'https://ror.org/02e6tdc21', 'en', 1, 'https://ror.org/02e6tdc21 Association Canadienne de Linguistique Canadian Linguistic Association'),
(21908, 'https://ror.org/055k1rd14', 'en', 1, 'https://ror.org/055k1rd14 GreenCentre Canada'),
(21909, 'https://ror.org/04z5n3121', 'en', 1, 'https://ror.org/04z5n3121 Kings Park Hospital'),
(21910, 'https://ror.org/01pjc8p36', 'en', 1, 'https://ror.org/01pjc8p36 Historical Studies in Education Revue d''histoire de l''Ʃducation'),
(21911, 'https://ror.org/00pf6z250', 'en', 1, 'https://ror.org/00pf6z250 Knutsford and District Community Hospital'),
(21912, 'https://ror.org/05shyvt50', 'en', 1, 'https://ror.org/05shyvt50 Langley Green Hospital'),
(21913, 'https://ror.org/0392yzq14', 'no_lang_code', 1, 'https://ror.org/0392yzq14 Inanna Publications and Education (Canada)'),
(21914, 'https://ror.org/03fpnp855', 'fr', 1, 'https://ror.org/03fpnp855 Association Canadienne des Sociologues et Anthropologues de Langue FranƧaise'),
(21915, 'https://ror.org/05we8km13', 'en', 1, 'https://ror.org/05we8km13 Leeds Dental Hospital'),
(21916, 'https://ror.org/02c18bt40', 'en', 1, 'https://ror.org/02c18bt40 Leicester Frith Hospital'),
(21917, 'https://ror.org/05ha03268', 'en', 1, 'https://ror.org/05ha03268 Lincolnshire Community Health Services NHS Trust'),
(21918, 'https://ror.org/01zzt6n55', 'fr', 1, 'https://ror.org/01zzt6n55 Institut d''Histoire de l''AmƩrique FranƧaise'),
(21919, 'https://ror.org/01wgb4d05', 'en', 1, 'https://ror.org/01wgb4d05 Lings Bar Hospital'),
(21920, 'https://ror.org/0127drs35', 'en', 1, 'https://ror.org/0127drs35 Little Plumstead Hospital'),
(21921, 'https://ror.org/04jxq7458', 'fr', 1, 'https://ror.org/04jxq7458 Association des DƩmographes du QuƩbec'),
(21922, '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'),
(21923, 'https://ror.org/04qtafx02', 'en', 1, 'https://ror.org/04qtafx02 Informal logic (Canada)'),
(21924, 'https://ror.org/03q83c436', 'en', 1, 'https://ror.org/03q83c436 Association for Canadian Studies'),
(21925, 'https://ror.org/000qwnj69', 'en', 1, 'https://ror.org/000qwnj69 Institute of Public Administration of Canada'),
(21926, 'https://ror.org/04jwm9504', 'en', 1, 'https://ror.org/04jwm9504 International Council for Canadian Studies'),
(21927, 'https://ror.org/04wwsjb72', 'en', 1, 'https://ror.org/04wwsjb72 Canadian Cartographic Association L''Association Canadienne de Cartographie'),
(21928, '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'),
(21929, 'https://ror.org/04snjkd04', 'en', 1, 'https://ror.org/04snjkd04 Association Canadienne pour la Recherche Théâtrale Canadian Association for Theatre Research'),
(21930, 'https://ror.org/00rgatc64', 'en', 1, 'https://ror.org/00rgatc64 Kamloops Art Gallery'),
(21931, 'https://ror.org/05f8ahf97', 'en', 1, 'https://ror.org/05f8ahf97 Llandrindod Wells Hospital'),
(21932, 'https://ror.org/05dj7ef89', 'en', 1, 'https://ror.org/05dj7ef89 Canadian Network for Innovation in Education RƩseau Canadien Pour l''innovation en Education'),
(21933, 'https://ror.org/03pkrx282', 'en', 1, 'https://ror.org/03pkrx282 Loughborough Hospital'),
(21934, 'https://ror.org/035xbae69', 'en', 1, 'https://ror.org/035xbae69 Lymington New Forest Hospital'),
(21935, 'https://ror.org/04kw8a006', 'en', 1, 'https://ror.org/04kw8a006 Julian Hospital'),
(21936, 'https://ror.org/00pk39639', 'en', 1, 'https://ror.org/00pk39639 Canadian Centre for Community Renewal'),
(21937, 'https://ror.org/02hvxe361', 'en', 1, 'https://ror.org/02hvxe361 Queen''s Hospital'),
(21938, 'https://ror.org/03tz9dg23', 'fr', 1, 'https://ror.org/03tz9dg23 La BoƮte Ơ lettres'),
(21939, 'https://ror.org/00knefa62', 'en', 1, 'https://ror.org/00knefa62 Canadian Centre for Policy Alternatives'),
(21940, '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'),
(21941, 'https://ror.org/04kw0xk03', 'en', 1, 'https://ror.org/04kw0xk03 Canadian Co-operative Association'),
(21942, 'https://ror.org/017bt7t72', 'en', 1, 'https://ror.org/017bt7t72 Leamington Spa Hospital'),
(21943, 'https://ror.org/00h2art69', 'fr', 1, 'https://ror.org/00h2art69 SociƩtƩ Canadienne de Science Economique'),
(21944, 'https://ror.org/05cq1w341', 'fr', 1, 'https://ror.org/05cq1w341 SociƩtƩ Canadienne de ThƩologie'),
(21945, 'https://ror.org/004z6x951', 'en', 1, 'https://ror.org/004z6x951 CollĆØge marianopolis Marianopolis College'),
(21946, 'https://ror.org/04ns19e26', 'en', 1, 'https://ror.org/04ns19e26 Association of Canadian College and University Teachers of English'),
(21947, 'https://ror.org/0460r5302', 'en', 1, 'https://ror.org/0460r5302 MaRS Innovation'),
(21948, 'https://ror.org/00h0zws58', 'en', 1, 'https://ror.org/00h0zws58 McCord Museum MusƩe McCord'),
(21949, 'https://ror.org/03v02jr28', 'no_lang_code', 1, 'https://ror.org/03v02jr28 Amerindian Research in Quebec (Canada)'),
(21950, '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'),
(21951, 'https://ror.org/00se0qw52', 'en', 1, 'https://ror.org/00se0qw52 Canadian Society for Digital Humanities SociƩtƩ Canadienne pour les HumanitƩs NumƩriques.'),
(21952, 'https://ror.org/0102ea670', 'en', 1, 'https://ror.org/0102ea670 Society for Socialist Studies SociƩtƩ dƩtudes socialistes'),
(21953, 'https://ror.org/01t2ez611', 'fr', 1, 'https://ror.org/01t2ez611 Association pour le DƩveloppement de la Mesure et de l''Evaluation en Education');
INSERT INTO `rors` VALUES
(21954, 'https://ror.org/015z05t63', 'en', 1, 'https://ror.org/015z05t63 MƩtis National Council Ralliement national des MƩtis'),
(21955, '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'),
(21956, 'https://ror.org/03pgvsr43', 'en', 1, 'https://ror.org/03pgvsr43 Mining Industry Human Resources Council'),
(21957, 'https://ror.org/01xs3h851', 'en', 1, 'https://ror.org/01xs3h851 Society for the Study of Egyptian Antiquities'),
(21958, 'https://ror.org/00j8x2c33', 'fr', 1, 'https://ror.org/00j8x2c33 Sociologie et SociƩtƩs'),
(21959, 'https://ror.org/03jnhsd98', 'en', 1, 'https://ror.org/03jnhsd98 Bioindustrial Innovation Canada'),
(21960, 'https://ror.org/04ky2sd92', 'en', 1, 'https://ror.org/04ky2sd92 Squamish Nation'),
(21961, 'https://ror.org/02mdd6971', 'en', 1, 'https://ror.org/02mdd6971 Canadian Society of Church History SociĆ©tĆ© Canadienne d’Histoire de l’Eglise'),
(21962, 'https://ror.org/031903y12', 'en', 1, 'https://ror.org/031903y12 Canadian Council on Social Development'),
(21963, 'https://ror.org/05drjbx41', 'en', 1, 'https://ror.org/05drjbx41 MiningWatch Canada'),
(21964, 'https://ror.org/00y0x8k49', 'en', 1, 'https://ror.org/00y0x8k49 Association Canadienne de Counseling et de PsychothƩrapie Canadian Counselling and Psychotherapy Association'),
(21965, 'https://ror.org/03pkwvf72', 'en', 1, 'https://ror.org/03pkwvf72 Campion College'),
(21966, 'https://ror.org/04vq5b176', 'en', 1, 'https://ror.org/04vq5b176 TESL Canada Federation'),
(21967, 'https://ror.org/04zhcfg57', 'en', 1, 'https://ror.org/04zhcfg57 Avataq Cultural Institute'),
(21968, 'https://ror.org/05ge25h32', 'en', 1, 'https://ror.org/05ge25h32 National Circus School Ɖcole nationale de cirque'),
(21969, 'https://ror.org/005tyn647', 'en', 1, 'https://ror.org/005tyn647 Bibliographical Society of Canada La SociƩtƩ Bibliographique du Canada'),
(21970, 'https://ror.org/05fhgtk93', 'en', 1, 'https://ror.org/05fhgtk93 La commission des Ʃtudiants Students Commission'),
(21971, 'https://ror.org/00nfht809', 'en', 1, 'https://ror.org/00nfht809 Association Canadienne de Justice PƩnale Canadian Criminal Justice Association'),
(21972, 'https://ror.org/006nw5s10', 'en', 1, 'https://ror.org/006nw5s10 Wellesley Institute'),
(21973, 'https://ror.org/01q7nv767', 'en', 1, 'https://ror.org/01q7nv767 Toronto Arts Foundation'),
(21974, 'https://ror.org/04ax9w078', 'en', 1, 'https://ror.org/04ax9w078 Canadian Anthropology Society'),
(21975, 'https://ror.org/034msqq35', 'fr', 1, 'https://ror.org/034msqq35 UniversitƩ Sainte-Anne'),
(21976, 'https://ror.org/05fsfff09', 'en', 1, 'https://ror.org/05fsfff09 L''Association d''art des universitƩs du Canada Universities Art Association of Canada'),
(21977, 'https://ror.org/05ty6tb10', 'en', 1, 'https://ror.org/05ty6tb10 Native Women''s Association of Canada'),
(21978, 'https://ror.org/00t0mzb74', 'fr', 1, 'https://ror.org/00t0mzb74 UniversitƩ de Hearst'),
(21979, 'https://ror.org/01kgmdj61', 'en', 1, 'https://ror.org/01kgmdj61 Canadian Arctic Resources Committee'),
(21980, 'https://ror.org/00nd98w52', 'en', 1, 'https://ror.org/00nd98w52 Canadian Arthritis Network'),
(21981, 'https://ror.org/019dhar59', 'en', 1, 'https://ror.org/019dhar59 Trinity College'),
(21982, 'https://ror.org/03a98ms41', 'no_lang_code', 1, 'https://ror.org/03a98ms41 New Dawn Enterprises (Canada)'),
(21983, 'https://ror.org/035bfyh12', 'en', 1, 'https://ror.org/035bfyh12 Canadian Association for Business Economics'),
(21984, 'https://ror.org/0422ksx61', 'en', 1, 'https://ror.org/0422ksx61 Prostate Centre’s Translational Research Initiative for Accelerated Discovery and Development'),
(21985, 'https://ror.org/011pn8n48', 'en', 1, 'https://ror.org/011pn8n48 Canadian Association for Commonwealth Literature and Language Studies'),
(21986, 'https://ror.org/00skx0050', 'en', 1, 'https://ror.org/00skx0050 Canadian Association for Graduate Studies'),
(21987, 'https://ror.org/01wca3r14', 'en', 1, 'https://ror.org/01wca3r14 Wavefront Wireless Commercialization Centre'),
(21988, 'https://ror.org/05dsrdr13', 'en', 1, 'https://ror.org/05dsrdr13 Canadian Forum on Civil Justice'),
(21989, 'https://ror.org/04pvj3017', 'en', 1, 'https://ror.org/04pvj3017 Wycliffe College'),
(21990, 'https://ror.org/04p77ts85', 'en', 1, 'https://ror.org/04p77ts85 Canadian Historical Association SociƩtƩ historique du Canada'),
(21991, 'https://ror.org/02czb6c47', 'en', 1, 'https://ror.org/02czb6c47 Association canadienne d''Ʃtudes en loisir Canadian Association for Leisure Studies'),
(21992, 'https://ror.org/04z5gvs07', 'en', 1, 'https://ror.org/04z5gvs07 Bureau des Services Ć  la Jeunesse Youth Services Bureau of Ottawa'),
(21993, 'https://ror.org/02465cd10', 'fr', 1, 'https://ror.org/02465cd10 Women''s and Gender Studies et Recherches FƩministes'),
(21994, 'https://ror.org/02zrdtc90', 'en', 1, 'https://ror.org/02zrdtc90 McMaster Divinity College'),
(21995, 'https://ror.org/03bpj1h80', 'en', 1, 'https://ror.org/03bpj1h80 Centre for Community Based Research'),
(21996, 'https://ror.org/014v77g24', 'en', 1, 'https://ror.org/014v77g24 Centre for Drug Research and Development'),
(21997, 'https://ror.org/03qx9j992', 'en', 1, 'https://ror.org/03qx9j992 Association Canadienne de Communication Canadian Communication Association'),
(21998, 'https://ror.org/013p2c441', 'no_lang_code', 1, 'https://ror.org/013p2c441 Centre for Imaging Technology Commercialization'),
(21999, 'https://ror.org/025zz8754', 'en', 1, 'https://ror.org/025zz8754 NWT Literacy Council'),
(22000, 'https://ror.org/01crx9472', 'en', 1, 'https://ror.org/01crx9472 Canadian Association for Social Work Education'),
(22001, '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'),
(22002, 'https://ror.org/03pmj9e82', 'en', 1, 'https://ror.org/03pmj9e82 Centre for Probe Development and Commercialization'),
(22003, 'https://ror.org/03n8k5298', 'en', 1, 'https://ror.org/03n8k5298 Association canadienne des industrielles Canadian Industrial Relations Association'),
(22004, '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'),
(22005, 'https://ror.org/02d640813', 'en', 1, 'https://ror.org/02d640813 International Centre for Comparative Criminology'),
(22006, 'https://ror.org/037mvh302', 'en', 1, 'https://ror.org/037mvh302 Canadian Association for the Study of Adult Education'),
(22007, 'https://ror.org/035s9ab89', 'en', 1, 'https://ror.org/035s9ab89 Canadiana.org'),
(22008, 'https://ror.org/05e1h7h42', 'en', 1, 'https://ror.org/05e1h7h42 Pan-Provincial Vaccine Enterprise'),
(22009, 'https://ror.org/01mgm2h35', 'en', 1, 'https://ror.org/01mgm2h35 Center of Excellence in Energy Efficiency'),
(22010, 'https://ror.org/00frndg15', 'en', 1, 'https://ror.org/00frndg15 Association des MusƩes Canadiens Canadian Museums Association'),
(22011, 'https://ror.org/007b5mw80', 'en', 1, 'https://ror.org/007b5mw80 Physicians for a Smoke-Free Canada'),
(22012, 'https://ror.org/04zzdbj59', 'en', 1, 'https://ror.org/04zzdbj59 Canadian Nautical Research Society SociƩtƩ Canadienne Pour la Recherche Nautique'),
(22013, 'https://ror.org/019w06c66', 'en', 1, 'https://ror.org/019w06c66 Association canadienne des revues savantes Canadian Association of Learned Journals'),
(22014, 'https://ror.org/01649ww56', 'en', 1, 'https://ror.org/01649ww56 Institut Pontifical d''Ɖtudes MĆ©diĆ©vales Pontifical Institute of Mediaeval Studies'),
(22015, 'https://ror.org/01v1t8x37', 'en', 1, 'https://ror.org/01v1t8x37 Providence University College and Theological Seminary'),
(22016, 'https://ror.org/02dv1n029', 'fr', 1, 'https://ror.org/02dv1n029 SantƩ Mentale au QuƩbec'),
(22017, 'https://ror.org/051tv6j02', 'en', 1, 'https://ror.org/051tv6j02 Canadian Bioethics Society SociƩtƩ Canadienne de la BioƩthique MƩdicale'),
(22018, 'https://ror.org/05ffyfw07', 'en', 1, 'https://ror.org/05ffyfw07 Association canadienne de science politique Canadian Political Science Association'),
(22019, 'https://ror.org/02znd6t60', 'en', 1, 'https://ror.org/02znd6t60 Canadian Psychological Association'),
(22020, 'https://ror.org/019sq5g45', 'fr', 1, 'https://ror.org/019sq5g45 CollĆØge de Valleyfield'),
(22021, 'https://ror.org/017bynh47', 'en', 1, 'https://ror.org/017bynh47 Hospital La Paz Institute for Health Research'),
(22022, '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'),
(22023, 'https://ror.org/010j3wg85', 'en', 1, 'https://ror.org/010j3wg85 Communitech'),
(22024, 'https://ror.org/02bgm5h12', 'en', 1, 'https://ror.org/02bgm5h12 Community Living Welland Pelham'),
(22025, 'https://ror.org/02558h854', 'es', 1, 'https://ror.org/02558h854 Hospital Quirónsalud Barcelona'),
(22026, 'https://ror.org/001yzzh53', 'en', 1, 'https://ror.org/001yzzh53 Hyogo Chuo National Hospital 兵庫中央病院'),
(22027, 'https://ror.org/023gbp227', 'en', 1, 'https://ror.org/023gbp227 Community Sector Council Newfoundland and Labrador'),
(22028, 'https://ror.org/00v60f727', 'en', 1, 'https://ror.org/00v60f727 Conference Board of Canada Le Conference Board du Canada'),
(22029, 'https://ror.org/02brpgm25', 'en', 1, 'https://ror.org/02brpgm25 Canadian Evaluation Society SociƩtƩ Canadienne d''Ʃvaluation'),
(22030, 'https://ror.org/02xt2gf57', 'no_lang_code', 1, 'https://ror.org/02xt2gf57 Imamura Hospital ä»Šę‘ē—…é™¢'),
(22031, 'https://ror.org/04k2k1k52', 'no_lang_code', 1, 'https://ror.org/04k2k1k52 Isesaki Fukushima Hospital ä¼Šå‹¢å“Žē¦å³¶ē—…é™¢'),
(22032, 'https://ror.org/00ppcg417', 'en', 1, 'https://ror.org/00ppcg417 Congress of Aboriginal Peoples'),
(22033, 'https://ror.org/02akddf79', 'en', 1, 'https://ror.org/02akddf79 Canadian Catholic Historical Association'),
(22034, 'https://ror.org/02dhn4e70', 'en', 1, 'https://ror.org/02dhn4e70 Itami City Hospital åø‚ē«‹ä¼Šäø¹ē—…é™¢'),
(22035, 'https://ror.org/03t7c1217', 'en', 1, 'https://ror.org/03t7c1217 Keiju Medical Center ęµåÆæē·åˆē—…é™¢'),
(22036, 'https://ror.org/03w4vm615', 'en', 1, 'https://ror.org/03w4vm615 Kitakashiwa Rehabilitation General Hospital åŒ—ęŸćƒŖćƒćƒ“ćƒŖē·åˆē—…é™¢'),
(22037, 'https://ror.org/05cwdc397', 'es', 1, 'https://ror.org/05cwdc397 Hospital Posadas'),
(22038, 'https://ror.org/027yy2w57', 'en', 1, 'https://ror.org/027yy2w57 Kobatake Hospital å°ē• ē—…é™¢'),
(22039, 'https://ror.org/0241a4222', 'es', 1, 'https://ror.org/0241a4222 Hospital Provincial de Rosario'),
(22040, 'https://ror.org/00ay59j04', 'en', 1, 'https://ror.org/00ay59j04 Koujin Hospital ē“˜ä»ē—…é™¢'),
(22041, 'https://ror.org/01cysch38', 'en', 1, 'https://ror.org/01cysch38 Quebec Federation of University Students'),
(22042, 'https://ror.org/0210qe842', 'no_lang_code', 1, 'https://ror.org/0210qe842 Mannari Hospital äø‡ęˆē—…é™¢'),
(22043, 'https://ror.org/00x6s3a91', 'en', 1, 'https://ror.org/00x6s3a91 Saint Gƶran Hospital Sankt Gƶrans sjukhus'),
(22044, 'https://ror.org/02haqm712', 'en', 1, 'https://ror.org/02haqm712 Matsubara Mayflower Hospital ę¾åŽŸćƒ”ć‚¤ćƒ•ćƒ©ćƒÆćƒ¼ē—…'),
(22045, 'https://ror.org/05dj7d812', 'en', 1, 'https://ror.org/05dj7d812 Midorigaoka Hospital ćæć©ć‚Šćƒ¶äø˜ē—…é™¢'),
(22046, 'https://ror.org/01e0nt744', 'en', 1, 'https://ror.org/01e0nt744 Naga Municipal Hospital 公立那賀病院'),
(22047, 'https://ror.org/04qwwm875', 'en', 1, 'https://ror.org/04qwwm875 Nanao hospital äøƒå°¾ē—…é™¢'),
(22048, 'https://ror.org/01tm7nw04', 'fr', 1, 'https://ror.org/01tm7nw04 Corporation d’AmĆ©nagement et de Protection de la Sainte-Anne'),
(22049, 'https://ror.org/021rpyr13', 'en', 1, 'https://ror.org/021rpyr13 Canadian Society for Italian Studies SociĆ©tĆ© Canadienne pour les Ɖtudes Italiennes'),
(22050, 'https://ror.org/00qbkg805', 'en', 1, 'https://ror.org/00qbkg805 Cabrini Hospital'),
(22051, 'https://ror.org/02h3p3q22', 'en', 1, 'https://ror.org/02h3p3q22 Canadian Society for Mesopotamian Studies SociƩtƩ Canadienne des Etudes MƩsopotamiennes'),
(22052, 'https://ror.org/00se67j64', 'en', 1, 'https://ror.org/00se67j64 Ehime Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ ę„›åŖ›åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(22053, 'https://ror.org/02nwsnt47', 'en', 1, 'https://ror.org/02nwsnt47 Council of Canadians with Disabilities'),
(22054, 'https://ror.org/00161f548', 'en', 1, 'https://ror.org/00161f548 Kobe Medical Center ē„žęˆøåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(22055, 'https://ror.org/0376t7t08', 'sv', 1, 'https://ror.org/0376t7t08 SƶdertƤlje Hospital SƶdertƤlje Sjukhus'),
(22056, 'https://ror.org/05te51965', 'en', 1, 'https://ror.org/05te51965 Kure Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹å‘‰åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(22057, 'https://ror.org/029v2wj86', 'en', 1, 'https://ror.org/029v2wj86 Council of Ministers of Education'),
(22058, 'https://ror.org/035hn9w86', 'en', 1, 'https://ror.org/035hn9w86 Canadian Society for the Study of Higher Education'),
(22059, 'https://ror.org/05pzh4402', 'sv', 1, 'https://ror.org/05pzh4402 Visby lasarett'),
(22060, 'https://ror.org/044q21j42', 'en', 1, 'https://ror.org/044q21j42 Ureshino Medical Center å¬‰é‡ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(22061, 'https://ror.org/0422kxg07', 'nl', 1, 'https://ror.org/0422kxg07 Mariaziekenhuis'),
(22062, 'https://ror.org/011w66729', 'en', 1, 'https://ror.org/011w66729 Daniel Langlois Foundation for Art Science and Technology'),
(22063, 'https://ror.org/00b747122', 'de', 1, 'https://ror.org/00b747122 Kantonsspital Baselland'),
(22064, 'https://ror.org/001zdzp98', 'en', 1, 'https://ror.org/001zdzp98 CollĆØge universitaire dominicain Dominican University College'),
(22065, 'https://ror.org/01q8pr365', 'en', 1, 'https://ror.org/01q8pr365 Hirslanden Private Hospital Group Privatklinikgruppe Hirslanden'),
(22066, 'https://ror.org/044wksr86', 'no_lang_code', 1, 'https://ror.org/044wksr86 Okayama Saidaiji Hospital 岔山脿大寺病院'),
(22067, 'https://ror.org/04d77zt55', 'en', 1, 'https://ror.org/04d77zt55 Multiprofile Hospital for Active Treatment in Neurology and Psychiatry St. Naum'),
(22068, 'https://ror.org/01safxj67', 'en', 1, 'https://ror.org/01safxj67 Markham Stouffville Hospital'),
(22069, 'https://ror.org/016g07382', 'no_lang_code', 1, 'https://ror.org/016g07382 Saiseikai Takaoka Hospital ęøˆē”Ÿä¼šé«˜å²”ē—…é™¢'),
(22070, 'https://ror.org/02crzj551', 'en', 1, 'https://ror.org/02crzj551 HƓpital Montfort Montfort Hospital'),
(22071, 'https://ror.org/02g5dr532', 'no_lang_code', 1, 'https://ror.org/02g5dr532 Seirei Sakura Citizen Hospital č–éš·ä½å€‰åø‚ę°‘ē—…é™¢'),
(22072, 'https://ror.org/05c016d08', 'no_lang_code', 1, 'https://ror.org/05c016d08 ECW Press (Canada)'),
(22073, 'https://ror.org/0535vdn91', 'en', 1, 'https://ror.org/0535vdn91 Soma Central Hospital čŒ¶ē•‘ä¼š 相馬中央病院'),
(22074, 'https://ror.org/00my1td19', 'en', 1, 'https://ror.org/00my1td19 En''owkin Centre'),
(22075, 'https://ror.org/05wwm0q58', 'en', 1, 'https://ror.org/05wwm0q58 Chung Shan Hospital 中山醫院'),
(22076, 'https://ror.org/0347vza26', 'en', 1, 'https://ror.org/0347vza26 Association Canadienne d''Etudes Environnementales Environmental Studies Association of Canada'),
(22077, 'https://ror.org/04z95ym83', 'no_lang_code', 1, 'https://ror.org/04z95ym83 Takao Hospital ć™ć‚€ć®ć•ćØé«˜å°¾ē—…é™¢'),
(22078, 'https://ror.org/02xv0d283', 'en', 1, 'https://ror.org/02xv0d283 Essays on Canadian Writing'),
(22079, 'https://ror.org/01swdcs64', 'en', 1, 'https://ror.org/01swdcs64 Tokyo-Kita Medical Center ę±äŗ¬åŒ—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(22080, 'https://ror.org/01a7g4m79', 'no_lang_code', 1, 'https://ror.org/01a7g4m79 Anyang Eye Hospital å®‰é˜³åø‚ēœ¼ē§‘åŒ»é™¢'),
(22081, 'https://ror.org/00m8adh64', 'no_lang_code', 1, 'https://ror.org/00m8adh64 Municipal Tsuruga Hospital 市立敦賀病院'),
(22082, 'https://ror.org/0548ncv24', 'fr', 1, 'https://ror.org/0548ncv24 Federation of Canadian Demographers FƩdƩration Canadienne de DƩmographie'),
(22083, 'https://ror.org/01hs21r74', 'en', 1, 'https://ror.org/01hs21r74 Anyang Tumor Hospital å®‰é˜³åø‚č‚æē˜¤åŒ»é™¢'),
(22084, 'https://ror.org/016ec0748', 'no_lang_code', 1, 'https://ror.org/016ec0748 Naval Hospital Yokosuka Japan ęØŖé ˆč³€ē±³ęµ·č»ē—…é™¢'),
(22085, 'https://ror.org/050nfgr37', 'en', 1, 'https://ror.org/050nfgr37 Beijing Tsinghua Chang Gung Hospital åŒ—äŗ¬ęø…åŽé•æåŗšåŒ»é™¢'),
(22086, 'https://ror.org/05c0hj959', 'en', 1, 'https://ror.org/05c0hj959 Hospital Tengku Ampuan Rahimah Tengku Ampuan Rahimah Hospital'),
(22087, 'https://ror.org/05aargr36', 'en', 1, 'https://ror.org/05aargr36 Association Canadienne d’études CinĆ©matographiques Film Studies Association of Canada'),
(22088, 'https://ror.org/02sd61b37', 'no_lang_code', 1, 'https://ror.org/02sd61b37 Yangon ENT Hospital ရန်ကုန် နား နှာခေါင်း į€œį€Šį€ŗį€į€»į€±į€¬į€„į€ŗį€ø ဆေးရုံ'),
(22089, 'https://ror.org/02vp0x259', 'en', 1, 'https://ror.org/02vp0x259 Association Canadienne d''Ethnologie et de Folklore Folklore Studies Association of Canada'),
(22090, 'https://ror.org/027cgen28', 'en', 1, 'https://ror.org/027cgen28 Shanghai Guanghua Hospital of Integrated Traditional Chinese and Western Medicine äøŠęµ·åø‚å…‰åŽäø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(22091, 'https://ror.org/04qs2sz84', 'en', 1, 'https://ror.org/04qs2sz84 Central Hospital of Wuhan ę­¦ę±‰åø‚äø­åæƒåŒ»é™¢'),
(22092, 'https://ror.org/006zn6z18', 'en', 1, 'https://ror.org/006zn6z18 Xinxiang Central Hospital ę–°ä¹”åø‚äø­åæƒåŒ»é™¢'),
(22093, 'https://ror.org/029s29983', 'en', 1, 'https://ror.org/029s29983 Genome Canada'),
(22094, 'https://ror.org/02q28q956', 'en', 1, 'https://ror.org/02q28q956 Chengdu Second People''s Hospital ęˆéƒ½åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(22095, 'https://ror.org/030nfm877', 'no_lang_code', 1, 'https://ror.org/030nfm877 Saigata National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹ć•ć„ćŒćŸē—…é™¢'),
(22096, 'https://ror.org/01nqa4s53', 'no_lang_code', 1, 'https://ror.org/01nqa4s53 Nihonkai General Hospital ę—„ęœ¬ęµ·ē·åˆē—…é™¢'),
(22097, 'https://ror.org/051p4rr20', 'en', 1, 'https://ror.org/051p4rr20 Ashford and St Peter''s Hospitals NHS Foundation Trust'),
(22098, 'https://ror.org/00d4qgb23', 'en', 1, 'https://ror.org/00d4qgb23 GPI Atlantic'),
(22099, 'https://ror.org/02hx18343', 'en', 1, 'https://ror.org/02hx18343 Pudong New Area People''s Hospital'),
(22100, 'https://ror.org/03444yt49', 'en', 1, 'https://ror.org/03444yt49 Blackpool Teaching Hospitals NHS Foundation Trust'),
(22101, 'https://ror.org/029mrrs96', 'en', 1, 'https://ror.org/029mrrs96 Noah''s Ark Children''s Hospital for Wales Ysbyty Arch Noa Plant Cymru'),
(22102, 'https://ror.org/04nckd528', 'en', 1, 'https://ror.org/04nckd528 Dorset County Hospital NHS Foundation Trust'),
(22103, 'https://ror.org/04g6v3637', 'en', 1, 'https://ror.org/04g6v3637 Great Western Hospitals NHS Foundation Trust'),
(22104, 'https://ror.org/00yb8k233', 'en', 1, 'https://ror.org/00yb8k233 Shanghai Second People''s Hospital äøŠęµ·åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(22105, 'https://ror.org/01ta56j94', 'no_lang_code', 1, 'https://ror.org/01ta56j94 Dalian Dermatosis Hospital å¤§čæžåø‚ēš®č‚¤ē—…åŒ»é™¢'),
(22106, 'https://ror.org/022s5gm85', 'en', 1, 'https://ror.org/022s5gm85 Dongguan People’s Hospital äøœčŽžåø‚äŗŗę°‘åŒ»é™¢'),
(22107, 'https://ror.org/004pedq54', 'de', 1, 'https://ror.org/004pedq54 Katholisches Kinderkrankenhaus Wilhelmstift'),
(22108, 'https://ror.org/02rbkz523', 'en', 1, 'https://ror.org/02rbkz523 Yancheng First People''s Hospital ē›åŸŽåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(22109, 'https://ror.org/03r1qk590', 'en', 1, 'https://ror.org/03r1qk590 Milton Keynes Hospital NHS Foundation Trust'),
(22110, 'https://ror.org/039g8ab81', 'en', 1, 'https://ror.org/039g8ab81 Fourth People''s Hospital of Shenzhen ę·±åœ³åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(22111, 'https://ror.org/011m1x742', 'en', 1, 'https://ror.org/011m1x742 First People''s Hospital of Chongqing é‡åŗ†åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(22112, 'https://ror.org/00xteb469', 'en', 1, 'https://ror.org/00xteb469 Shanghai Huangpu District Central Hospital é»„ęµ¦åŒŗäø­åæƒåŒ»é™¢'),
(22113, 'https://ror.org/016ntyy59', 'no_lang_code', 1, 'https://ror.org/016ntyy59 Noble’s Hospital'),
(22114, 'https://ror.org/038thw008', 'en', 1, 'https://ror.org/038thw008 Fujian Provincial People''s Hospital ē¦å»ŗēœäŗŗę°‘åŒ»é™¢'),
(22115, 'https://ror.org/01ep18d71', 'en', 1, 'https://ror.org/01ep18d71 Northern Lincolnshire and Goole Hospitals NHS Foundation Trust'),
(22116, 'https://ror.org/02js17r36', 'en', 1, 'https://ror.org/02js17r36 South Tees Hospitals NHS Foundation Trust'),
(22117, 'https://ror.org/03xmq9934', 'en', 1, 'https://ror.org/03xmq9934 Han Dan City Eye Hospital - The Third Hospital of Handan é‚Æéƒøåø‚ēœ¼ē§‘åŒ»é™¢ļ¼ˆé‚Æéƒøåø‚ē¬¬äø‰åŒ»é™¢ļ¼‰'),
(22118, 'https://ror.org/03k95y741', 'en', 1, 'https://ror.org/03k95y741 South Warwickshire NHS Foundation Trust'),
(22119, 'https://ror.org/02zq48n91', 'en', 1, 'https://ror.org/02zq48n91 Hanzhong People''s Hospital ę±‰äø­åø‚äŗŗę°‘åŒ»é™¢'),
(22120, 'https://ror.org/05hawxe81', 'en', 1, 'https://ror.org/05hawxe81 YangPu Geriatric Hospital äøŠęµ·åø‚ęØęµ¦č€å¹“åŒ»é™¢'),
(22121, 'https://ror.org/04v0as660', 'en', 1, 'https://ror.org/04v0as660 Hillingdon Hospitals NHS Foundation Trust'),
(22122, 'https://ror.org/048s0v676', 'en', 1, 'https://ror.org/048s0v676 Abu Dhabi Falcon Hospital مستؓفى أبو ظبي Ł„Ł„ŲµŁ‚ŁˆŲ±'),
(22123, 'https://ror.org/030pd1x82', 'de', 1, 'https://ror.org/030pd1x82 Kreiskliniken Reutlingen'),
(22124, 'https://ror.org/042bpn241', 'en', 1, 'https://ror.org/042bpn241 Bayside Hospital for Animals'),
(22125, 'https://ror.org/01nv7k942', 'en', 1, 'https://ror.org/01nv7k942 Hebei General Hospital ę²³åŒ—ēœäŗŗę°‘åŒ»é™¢'),
(22126, 'https://ror.org/05msnze33', 'de', 1, 'https://ror.org/05msnze33 Agaplesion Diakonieklinikum Rotenburg'),
(22127, 'https://ror.org/05ncqj764', 'en', 1, 'https://ror.org/05ncqj764 Huangshi Central Hospital é»„ēŸ³åø‚äø­åæƒåŒ»é™¢'),
(22128, 'https://ror.org/042ry7b85', 'en', 1, 'https://ror.org/042ry7b85 Shanxi Provincial Children''s Hospital å±±č„æēœå¦‡å¹¼äæå„é™¢'),
(22129, 'https://ror.org/037hxym60', 'de', 1, 'https://ror.org/037hxym60 Evangelisches Krankenhaus Bethesda Mƶnchengladbach'),
(22130, 'https://ror.org/01hcefx46', 'en', 1, 'https://ror.org/01hcefx46 ShenZhen People’s Hospital ę·±åœ³åø‚äŗŗę°‘åŒ»é™¢'),
(22131, 'https://ror.org/010s9qs41', 'en', 1, 'https://ror.org/010s9qs41 Shijiazhuang Great Wall Hospital ēŸ³å®¶åŗ„é•æåŸŽåŒ»é™¢'),
(22132, 'https://ror.org/03323pz98', 'en', 1, 'https://ror.org/03323pz98 Hubei Provincial Women and Children''s Hospital ę¹–åŒ—ēœå¦‡å¹¼äæå„é™¢'),
(22133, 'https://ror.org/03e207173', 'en', 1, 'https://ror.org/03e207173 Hunan Children''s Hospital ę¹–å—ēœå„æē«„åŒ»é™¢'),
(22134, 'https://ror.org/00hmfe493', 'en', 1, 'https://ror.org/00hmfe493 Doctors Hospital of Laredo'),
(22135, 'https://ror.org/00q3p9p08', 'en', 1, 'https://ror.org/00q3p9p08 Suizhou Central Hospital éšå·žåø‚äø­åæƒåŒ»é™¢'),
(22136, 'https://ror.org/02cdyrc89', 'en', 1, 'https://ror.org/02cdyrc89 Suzhou Municipal Hospital č‹å·žåø‚ē«‹åŒ»é™¢'),
(22137, 'https://ror.org/05km9hp38', 'en', 1, 'https://ror.org/05km9hp38 Jefferson Hospital for Neuroscience'),
(22138, 'https://ror.org/02yng3249', 'en', 1, 'https://ror.org/02yng3249 Inner Mongolia People''s Hospital å†…č’™å¤č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(22139, 'https://ror.org/00vgek070', 'en', 1, 'https://ror.org/00vgek070 Jilin Province Tumor Hospital å‰ęž—ēœč‚æē˜¤åŒ»é™¢'),
(22140, 'https://ror.org/04btmx930', 'en', 1, 'https://ror.org/04btmx930 Kaiser Permanente San Leandro Medical Center'),
(22141, 'https://ror.org/043yfh051', 'de', 1, 'https://ror.org/043yfh051 Prof. Hess Kinderklinik'),
(22142, 'https://ror.org/0264gtk20', 'en', 1, 'https://ror.org/0264gtk20 Marion General Hospital'),
(22143, 'https://ror.org/05d944x37', 'en', 1, 'https://ror.org/05d944x37 Jimo District Qingdao Hospital of Traditional Chinese Medicine é’å²›åø‚å³å¢ØåŒŗäø­åŒ»åŒ»é™¢'),
(22144, 'https://ror.org/00e96sn98', 'en', 1, 'https://ror.org/00e96sn98 Peyton Manning Children’s Hospital at St.Vincent'),
(22145, 'https://ror.org/00sr40296', 'no_lang_code', 1, 'https://ror.org/00sr40296 Tangshan Gongren Hospital'),
(22146, 'https://ror.org/04ct9as78', 'en', 1, 'https://ror.org/04ct9as78 Jinzhou Kangning Hospital é”¦å·žåø‚åŗ·å®åŒ»é™¢'),
(22147, 'https://ror.org/04fefzq80', 'en', 1, 'https://ror.org/04fefzq80 Javon Bea Hospital-Rockton'),
(22148, 'https://ror.org/01k0q5v34', 'en', 1, 'https://ror.org/01k0q5v34 PLA 306 Hospital 解放军306医院'),
(22149, 'https://ror.org/02x1vjb06', 'en', 1, 'https://ror.org/02x1vjb06 Nakagawanosato Hospital for the Disabled'),
(22150, 'https://ror.org/05vh9vp33', 'en', 1, 'https://ror.org/05vh9vp33 Zucker Hillside Hospital'),
(22151, 'https://ror.org/05yj9kv10', 'de', 1, 'https://ror.org/05yj9kv10 Salus-Fachklinikum Uchtspringe Klinik für Allgemeine Psychiatrie und Psychotherapie'),
(22152, 'https://ror.org/00vvmxh39', 'en', 1, 'https://ror.org/00vvmxh39 Bugshan Hospital مستؓفى بقؓان'),
(22153, 'https://ror.org/00t93jj79', 'en', 1, 'https://ror.org/00t93jj79 Wuhu Fourth People Hospital čŠœę¹–åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(22154, 'https://ror.org/058n7kw16', 'en', 1, 'https://ror.org/058n7kw16 Netcare Jakaranda Hospital'),
(22155, 'https://ror.org/01ypqqm93', 'en', 1, 'https://ror.org/01ypqqm93 Port Elizabeth Provincial Hospital'),
(22156, 'https://ror.org/019jjbt65', 'en', 1, 'https://ror.org/019jjbt65 St. Josefs Hospital'),
(22157, 'https://ror.org/01v9zh240', 'en', 1, 'https://ror.org/01v9zh240 Bệnh viện Nhi đồng 2 Children''s Hospital 2'),
(22158, 'https://ror.org/04f5epv26', 'en', 1, 'https://ror.org/04f5epv26 Weskoppies Psychiatric Hospital'),
(22159, 'https://ror.org/04y735546', 'en', 1, 'https://ror.org/04y735546 Bệnh Viện Đa Khoa Đồng ThĆ”p Dong Thap Hospital'),
(22160, 'https://ror.org/02k4qm934', 'ca', 1, 'https://ror.org/02k4qm934 Hospital General de Catalunya'),
(22161, 'https://ror.org/04tccz814', 'no_lang_code', 1, 'https://ror.org/04tccz814 Hua chiew hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø«ąø±ąø§ą¹€ąø‰ąøµąø¢ąø§'),
(22162, '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'),
(22163, 'https://ror.org/00wydr975', 'en', 1, 'https://ror.org/00wydr975 Northwest Women''s and Children''s Hospital č„æåŒ—å¦‡å„³å„æē«„åŒ»é™¢'),
(22164, 'https://ror.org/019nf3y14', 'en', 1, 'https://ror.org/019nf3y14 General Hospital of Jinan Military Command'),
(22165, 'https://ror.org/00rd5z074', 'en', 1, 'https://ror.org/00rd5z074 Fifth Hospital of Shijiazhuang'),
(22166, 'https://ror.org/01b8x5j53', 'en', 1, 'https://ror.org/01b8x5j53 Bệnh viện Trung ĘÆĘ”ng Huįŗæ Hue Central Hospital'),
(22167, 'https://ror.org/00xdrzy17', 'en', 1, 'https://ror.org/00xdrzy17 National Institute of Hospital Administration å«ē”ŸéƒØåŒ»é™¢ē®”ē†ē ”ē©¶ę‰€'),
(22168, 'https://ror.org/04qrwnv94', 'en', 1, 'https://ror.org/04qrwnv94 Bệnh viện Hùng Vʰʔng Hung Vuong Hospital'),
(22169, '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'),
(22170, 'https://ror.org/025gwsg11', 'en', 1, 'https://ror.org/025gwsg11 Shangqiu First People''s Hospital å•†äø˜åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(22171, 'https://ror.org/05yevm258', 'en', 1, 'https://ror.org/05yevm258 Bệnh viện Phįŗ”m Ngį»c Thįŗ”ch Pham Ngoc Thach Hospital'),
(22172, 'https://ror.org/018w5ms25', 'en', 1, 'https://ror.org/018w5ms25 Second Hospital of Liaohe Oilfield'),
(22173, 'https://ror.org/00gmbx398', 'en', 1, 'https://ror.org/00gmbx398 Urumqi 4th People''s Hospital ä¹Œé²ęœØé½åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(22174, 'https://ror.org/01j5awv26', 'en', 1, 'https://ror.org/01j5awv26 Prince Mohammed bin Abdulaziz Hospital'),
(22175, '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'),
(22176, 'https://ror.org/03784bx86', 'en', 1, 'https://ror.org/03784bx86 Zhuhai Hospital of Integrated Traditional Chinese and Western Medicine ē ęµ·åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(22177, 'https://ror.org/01p51xv55', 'en', 1, 'https://ror.org/01p51xv55 St. Marien Hospital'),
(22178, 'https://ror.org/00p1jee13', 'en', 1, 'https://ror.org/00p1jee13 Fuyang City People''s Hospital ęæ®é˜³åø‚äŗŗę°‘åŒ»é™¢'),
(22179, 'https://ror.org/0264qnp36', 'en', 1, 'https://ror.org/0264qnp36 Second Artillery General Hospital of Chinese People''s Liberation Army äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬äŗŒē‚®å…µę€»åŒ»é™¢'),
(22180, 'https://ror.org/038p55355', 'de', 1, 'https://ror.org/038p55355 Altonaer Kinderkrankenhaus'),
(22181, 'https://ror.org/0555qme52', 'en', 1, 'https://ror.org/0555qme52 Third People''s Hospital of Yunnan Province äŗ‘å—ēœē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(22182, 'https://ror.org/04a0xmf69', 'en', 1, 'https://ror.org/04a0xmf69 General Hospital of Nafplio Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΑργολίΓας'),
(22183, 'https://ror.org/04v5gcw55', 'en', 1, 'https://ror.org/04v5gcw55 Shanghai Pudong New Area Gongli Hospital äøŠęµ·åø‚ęµ¦äøœę–°åŒŗå…¬åˆ©åŒ»é™¢'),
(22184, 'https://ror.org/02xse0b92', 'en', 1, 'https://ror.org/02xse0b92 NIU Observatory'),
(22185, 'https://ror.org/011n2s048', 'en', 1, 'https://ror.org/011n2s048 Tianjin Anding Hospital å¤©ę“„åø‚å®‰å®šåŒ»é™¢'),
(22186, 'https://ror.org/009czp143', 'en', 1, 'https://ror.org/009czp143 Shaanxi Provincial People''s Hospital é™•č„æēœäŗŗę°‘åŒ»é™¢'),
(22187, 'https://ror.org/04jdjn903', 'en', 1, 'https://ror.org/04jdjn903 Jingning County People''s Hospital ę™Æå®ē•²ę—č‡Ŗę²»åŽæäŗŗę°‘åŒ»é™¢'),
(22188, 'https://ror.org/03raf0607', 'en', 1, 'https://ror.org/03raf0607 Linzhou Cancer Hospital ęž—å·žåø‚č‚æē˜¤åŒ»é™¢'),
(22189, 'https://ror.org/03b135v89', 'en', 1, 'https://ror.org/03b135v89 Moscow Regional Psychiatry Hospital No.5 ŠŸŃŠøŃ…ŠøŠ°Ń‚Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–5'),
(22190, 'https://ror.org/0010mjy66', 'en', 1, 'https://ror.org/0010mjy66 Byurakan Astrophysical Observatory'),
(22191, 'https://ror.org/0399zkh42', 'en', 1, 'https://ror.org/0399zkh42 Wuxi No.2 People''s Hospital ę— é””åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(22192, 'https://ror.org/042g3qa69', 'en', 1, 'https://ror.org/042g3qa69 Xian Yang Central Hospital å’øé˜³åø‚äø­åæƒåŒ»é™¢'),
(22193, 'https://ror.org/02cgt3c05', 'en', 1, 'https://ror.org/02cgt3c05 Guangxi Zhuang Autonomous Region Brain Hospital å¹æč„æå£®ę—č‡Ŗę²»åŒŗč„‘ē§‘åŒ»é™¢'),
(22194, 'https://ror.org/00nmyjn66', 'no_lang_code', 1, 'https://ror.org/00nmyjn66 iTelescope.Net'),
(22195, 'https://ror.org/033hgw744', 'en', 1, 'https://ror.org/033hgw744 Hebei Eye Hospital ę²³åŒ—ēœēœ¼ē§‘åŒ»é™¢'),
(22196, 'https://ror.org/04yhr9792', 'ca', 1, 'https://ror.org/04yhr9792 Fundació Observatori Esteve Duran'),
(22197, 'https://ror.org/03mg4mw05', 'es', 1, 'https://ror.org/03mg4mw05 Grupo de Observadores Astronómicos de Tenerife'),
(22198, 'https://ror.org/02k20ry04', 'en', 1, 'https://ror.org/02k20ry04 Guadarrama Observatory'),
(22199, 'https://ror.org/00amxdy06', 'en', 1, 'https://ror.org/00amxdy06 La CaƱada Observatory Observatorio de La CaƱada'),
(22200, 'https://ror.org/05yprsb81', 'en', 1, 'https://ror.org/05yprsb81 The Chagrin Valley Astronomical Society'),
(22201, 'https://ror.org/0028r9r35', 'en', 1, 'https://ror.org/0028r9r35 Akureyri Hospital Sjúkrahúsið Ô Akureyri'),
(22202, 'https://ror.org/01kmcym32', 'en', 1, 'https://ror.org/01kmcym32 Ellinbank Observatory'),
(22203, 'https://ror.org/027e1wk64', 'en', 1, 'https://ror.org/027e1wk64 Hunters Hill Observatory'),
(22204, 'https://ror.org/01ned1220', 'en', 1, 'https://ror.org/01ned1220 Ispat General Hospital ą¤‡ą¤øą¤Ŗą¤Ÿ जनरल ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(22205, 'https://ror.org/030w7x329', 'es', 1, 'https://ror.org/030w7x329 Observatorio astronómico municipal de Murcia "La Murta"'),
(22206, 'https://ror.org/03tgm5090', 'en', 1, 'https://ror.org/03tgm5090 Observatorio Astronómico Nacional de España Spanish National Observatory'),
(22207, 'https://ror.org/03hqvqf51', 'no_lang_code', 1, 'https://ror.org/03hqvqf51 Xinyang Central Hospital äæ”é˜³åø‚äø­åæƒåŒ»é™¢'),
(22208, 'https://ror.org/02y2zxx30', 'en', 1, 'https://ror.org/02y2zxx30 Lizard Hollow Observatory'),
(22209, 'https://ror.org/04dga5e65', 'en', 1, 'https://ror.org/04dga5e65 Lifeline Hospital ą“²ąµˆą“«ąµ ą“²ąµˆąµ» ą“¹ąµ‡ą“¾ą“øąµą“Ŗą“æą“±ąµą“±ąµ½'),
(22210, 'https://ror.org/05vawe413', 'no_lang_code', 1, 'https://ror.org/05vawe413 Yuhuangding Hospital ēƒŸå°ęÆ“ē’œé”¶åŒ»é™¢'),
(22211, 'https://ror.org/006a4jj40', 'en', 1, 'https://ror.org/006a4jj40 Mount Stromlo Observatory'),
(22212, 'https://ror.org/0117rgr12', 'en', 1, 'https://ror.org/0117rgr12 Perth Exoplanet Survey Telescope Observatory'),
(22213, 'https://ror.org/039401462', 'en', 1, 'https://ror.org/039401462 Yuxian People''s Hospital ē›‚åŽæäŗŗę°‘åŒ»é™¢'),
(22214, 'https://ror.org/053sksp51', 'en', 1, 'https://ror.org/053sksp51 Perth Observatory'),
(22215, 'https://ror.org/03xvqcz58', 'en', 1, 'https://ror.org/03xvqcz58 Mount Wilson Observatory Observatoire du mont wilson Observatorio Monte Wilson'),
(22216, 'https://ror.org/01nvdh647', 'en', 1, 'https://ror.org/01nvdh647 Zaozhuang Municipal Hospital ęž£åŗ„åø‚ē«‹åŒ»é™¢'),
(22217, 'https://ror.org/04skaq459', 'es', 1, 'https://ror.org/04skaq459 Hospital Nacional de NiƱos'),
(22218, 'https://ror.org/00bk35j03', 'en', 1, 'https://ror.org/00bk35j03 NF Observatory'),
(22219, 'https://ror.org/04mma9b71', 'en', 1, 'https://ror.org/04mma9b71 Shri Siddhivinayak Ganapati Cancer Hospital ą¤¶ą„ą¤°ą„€ ą¤øą¤æą¤¦ą„ą¤§ą¤æą¤µą¤æą¤Øą¤¾ą¤Æą¤• ą¤—ą¤£ą¤Ŗą¤¤ą„€ ą¤•ą„…ą¤Øą„ą¤øą¤° ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(22220, 'https://ror.org/04jj8zx97', 'no_lang_code', 1, 'https://ror.org/04jj8zx97 Shahid Motahari Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ Ł…Ų·Ł‡Ų±ŪŒ'),
(22221, 'https://ror.org/03x43nn58', 'de', 1, 'https://ror.org/03x43nn58 Bagnoud Observatory Observatoire FranƧois-Xavier Bagnoud'),
(22222, 'https://ror.org/03ee58b76', 'en', 1, 'https://ror.org/03ee58b76 Kellokosken Sairaala Kellokoski Hospital'),
(22223, 'https://ror.org/05wgye104', 'no_lang_code', 1, 'https://ror.org/05wgye104 143-Gnosca Osservatorio Astronomico di Gnosca'),
(22224, 'https://ror.org/035r9vd46', 'en', 1, 'https://ror.org/035r9vd46 OspidƩal Naomh Fionnbarra St. Finbarr''s Hospital'),
(22225, 'https://ror.org/02a46sb39', 'en', 1, 'https://ror.org/02a46sb39 Tetoora Road Observatory'),
(22226, 'https://ror.org/02gad0c63', 'en', 1, 'https://ror.org/02gad0c63 Polaris Observatory Association'),
(22227, 'https://ror.org/00hz94r37', 'en', 1, 'https://ror.org/00hz94r37 Rolling Hills Observatory'),
(22228, 'https://ror.org/017j8hh08', 'de', 1, 'https://ror.org/017j8hh08 Schweizerisches Forschungsinstitut für Hochgebirgsklima und Medizin'),
(22229, 'https://ror.org/00xfgvj95', 'en', 1, 'https://ror.org/00xfgvj95 TÜBİTAK National Observatory TÜBİTAK Ulusal Gözlemevi'),
(22230, 'https://ror.org/052hkvj39', 'en', 1, 'https://ror.org/052hkvj39 Spot Observatory'),
(22231, 'https://ror.org/008xh4d89', 'en', 1, 'https://ror.org/008xh4d89 Brixiis Astronomical Observatory'),
(22232, 'https://ror.org/05bpqke85', 'en', 1, 'https://ror.org/05bpqke85 Coddenham Astronomical Observatory'),
(22233, 'https://ror.org/010xbqa75', 'de', 1, 'https://ror.org/010xbqa75 Krankenhaus Bruneck'),
(22234, 'https://ror.org/01mdg2p21', 'en', 1, 'https://ror.org/01mdg2p21 Oregon Observatory'),
(22235, 'https://ror.org/03w0prb16', 'es', 1, 'https://ror.org/03w0prb16 Observatorio San Calixto'),
(22236, 'https://ror.org/03d47z838', 'en', 1, 'https://ror.org/03d47z838 National Observatory Observatório Nacional'),
(22237, 'https://ror.org/048s2rn92', 'en', 1, 'https://ror.org/048s2rn92 United States Naval Observatory'),
(22238, 'https://ror.org/016kj2436', 'en', 1, 'https://ror.org/016kj2436 Royal Observatory'),
(22239, 'https://ror.org/026tvqe20', 'no_lang_code', 1, 'https://ror.org/026tvqe20 Astronomical Observatory Nicolaus Copernicus астрономическа Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ Šø ŠæŠ»Š°Š½ŠµŃ‚Š°Ń€ŠøŃƒŠ¼ ā€žŠŠøŠŗŠ¾Š»Š°Š¹ ŠšŠ¾ŠæŠµŃ€Š½ŠøŠŗā€œ'),
(22240, 'https://ror.org/04zzpgm55', 'en', 1, 'https://ror.org/04zzpgm55 Abbey Ridge Observatory'),
(22241, 'https://ror.org/006yr9253', 'es', 1, 'https://ror.org/006yr9253 Campo Catino Astronomical Observatory Osservatorio Astronomico di Campo Catino'),
(22242, 'https://ror.org/03g33jp38', 'en', 1, 'https://ror.org/03g33jp38 Los Algarrobos Observatory Observatorio Los Algarrobos'),
(22243, 'https://ror.org/00ajddz62', 'en', 1, 'https://ror.org/00ajddz62 Amateur Telescope Makers of Boston'),
(22244, 'https://ror.org/03rmnkv16', 'en', 1, 'https://ror.org/03rmnkv16 Antelope Hills Observatory'),
(22245, 'https://ror.org/02r084d93', 'fr', 1, 'https://ror.org/02r084d93 Centre Hospitalier AndrƩe Rosemon'),
(22246, 'https://ror.org/01663mv64', 'fr', 1, 'https://ror.org/01663mv64 Centre hospitalier Bretagne Atlantique'),
(22247, 'https://ror.org/04ahb7r80', 'no_lang_code', 1, 'https://ror.org/04ahb7r80 Chienkuo Technology University å»ŗåœ‹ē§‘ęŠ€å¤§å­ø'),
(22248, 'https://ror.org/0377t1328', 'en', 1, 'https://ror.org/0377t1328 European Southern Observatory'),
(22249, 'https://ror.org/04nk1k821', 'en', 1, 'https://ror.org/04nk1k821 Kao Yuan University é«˜č‹‘ē§‘ęŠ€å¤§å­ø'),
(22250, 'https://ror.org/03fv6f056', 'fr', 1, 'https://ror.org/03fv6f056 Centre Hospitalier d''Arras'),
(22251, 'https://ror.org/02zqg7m89', 'fr', 1, 'https://ror.org/02zqg7m89 Centre Hospitalier de BƩthune'),
(22252, 'https://ror.org/054etzm63', 'en', 1, 'https://ror.org/054etzm63 Minghsin University of Science and Technology ę˜Žę–°ē§‘ęŠ€å¤§å­ø'),
(22253, 'https://ror.org/02vm0aw48', 'fr', 1, 'https://ror.org/02vm0aw48 Centre Hospitalier de Troyes'),
(22254, 'https://ror.org/02qykes20', 'fr', 1, 'https://ror.org/02qykes20 Centre Hospitalier de Valence'),
(22255, 'https://ror.org/05gcakm88', 'en', 1, 'https://ror.org/05gcakm88 Association of Lunar and Planetary Observers'),
(22256, 'https://ror.org/01sqy6j62', 'fr', 1, 'https://ror.org/01sqy6j62 Centre Hospitalier Intercommunal AndrƩ GrƩgoire Montreuil'),
(22257, 'https://ror.org/01wpjrj73', 'fr', 1, 'https://ror.org/01wpjrj73 Centre Hospitalier de Niort'),
(22258, 'https://ror.org/05c815e48', 'fr', 1, 'https://ror.org/05c815e48 Centre Hospitalier Intercommunal de FrƩjus Saint-Raphaƫl'),
(22259, 'https://ror.org/05jm9mh74', 'fr', 1, 'https://ror.org/05jm9mh74 Centre Hospitalier RenƩ-Dubos'),
(22260, 'https://ror.org/05tk74w54', 'fr', 1, 'https://ror.org/05tk74w54 Fédération Hospitalière de France'),
(22261, 'https://ror.org/02jn32p79', 'it', 1, 'https://ror.org/02jn32p79 Ospedale Madonna Delle Grazie'),
(22262, 'https://ror.org/00b06cz11', 'de', 1, 'https://ror.org/00b06cz11 Kinderkrankenhaus auf der Bult'),
(22263, 'https://ror.org/03mj51g65', 'it', 1, 'https://ror.org/03mj51g65 Ospedaliero Santa Barbara'),
(22264, 'https://ror.org/04gfxe325', 'en', 1, 'https://ror.org/04gfxe325 Black Swamp Bird Observatory'),
(22265, 'https://ror.org/03fxxpd92', 'en', 1, 'https://ror.org/03fxxpd92 National Penghu University of Science and Technology åœ‹ē«‹ę¾Žę¹–ē§‘ęŠ€å¤§å­ø'),
(22266, 'https://ror.org/01e6j9276', 'en', 1, 'https://ror.org/01e6j9276 Caltech Submillimeter Observatory'),
(22267, 'https://ror.org/05w4mbn40', 'en', 1, 'https://ror.org/05w4mbn40 Aichi Developmental Disability Center ę„›ēŸ„ēœŒåŒ»ē™‚ē™‚č‚²ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(22268, 'https://ror.org/02r6k7132', 'no_lang_code', 1, 'https://ror.org/02r6k7132 Chiang Mai Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(22269, 'https://ror.org/05xq4gr47', 'en', 1, 'https://ror.org/05xq4gr47 Canada–France–Hawaii Telescope'),
(22270, 'https://ror.org/0116akb37', 'en', 1, 'https://ror.org/0116akb37 Chiba Kaihin Municipal Hospital åƒč‘‰åø‚ē«‹ęµ·ęµœē—…é™¢'),
(22271, 'https://ror.org/00259c050', 'no_lang_code', 1, 'https://ror.org/00259c050 Chibaken Saiseikai Narashino Hospital åƒč‘‰ēœŒęøˆē”Ÿä¼šēæ’åæ—é‡Žē—…é™¢'),
(22272, 'https://ror.org/015cbgp91', 'en', 1, 'https://ror.org/015cbgp91 Chibune General Hospital åƒčˆ¹ē—…é™¢'),
(22273, 'https://ror.org/01bcjx771', 'en', 1, 'https://ror.org/01bcjx771 Southern Astrophysical Research Telescope'),
(22274, 'https://ror.org/031dgzs07', 'no_lang_code', 1, 'https://ror.org/031dgzs07 Dogo Onsen Hospital é“å¾Œęø©ę³‰ē—…é™¢'),
(22275, 'https://ror.org/0446qvy77', 'en', 1, 'https://ror.org/0446qvy77 Fuji Heavy Industries Health Insurance Society Ota Memorial Hospital ē·åˆå¤Ŗē”°ē—…é™¢'),
(22276, 'https://ror.org/0180ay989', 'no_lang_code', 1, 'https://ror.org/0180ay989 Fukushimura Hospital ä¼Šå‹¢å“Žē¦å³¶ē—…é™¢'),
(22277, 'https://ror.org/049wrh220', 'no_lang_code', 1, 'https://ror.org/049wrh220 Hashimoto Municipal Hospital ę©‹ęœ¬åø‚ę°‘ē—…é™¢'),
(22278, 'https://ror.org/01cxg6q60', 'no_lang_code', 1, 'https://ror.org/01cxg6q60 Hidaka Hospital ひだか病院'),
(22279, 'https://ror.org/019vdbe39', 'en', 1, 'https://ror.org/019vdbe39 Ishigaki Local Meteorological Observatory'),
(22280, 'https://ror.org/00zdyy359', 'en', 1, 'https://ror.org/00zdyy359 Abdullah Gül University Abdullah Gül Üniversitesi'),
(22281, 'https://ror.org/01rfam919', 'en', 1, 'https://ror.org/01rfam919 Inner Mongolia Autonomous Region Meteorological Bureau å†…č’™å¤č‡Ŗę²»åŒŗę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(22282, 'https://ror.org/01k80zh77', 'en', 1, 'https://ror.org/01k80zh77 Xingming Observatory'),
(22283, 'https://ror.org/03g407536', 'en', 1, 'https://ror.org/03g407536 University of Toliara UniversitƩ de Toliara'),
(22284, 'https://ror.org/044sckz61', 'no_lang_code', 1, 'https://ror.org/044sckz61 Matsushiro Seismological Observatory ę°—č±”åŗę¾ä»£åœ°éœ‡č¦³ęø¬ę‰€'),
(22285, 'https://ror.org/038n50j48', 'en', 1, 'https://ror.org/038n50j48 Altan Observatory'),
(22286, 'https://ror.org/03s9hs139', 'en', 1, 'https://ror.org/03s9hs139 International Islamic University Malaysia Universiti Islam Antarabangsa Malaysia ą“‡ąµ»ą“±ąµ¼ą“Øą“¾ą“·ą“Øąµ½ ą“‡ą“øąµā€ą“²ą“¾ą“®ą“æą“•ąµ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµā€ą“øą“æą“±ąµą“±ą“æ ą“®ą“²ąµ‡ą“·ąµą“Æ'),
(22287, 'https://ror.org/05h22s698', 'fi', 1, 'https://ror.org/05h22s698 Hankasalmen observatorio Hankasalmi Observatory'),
(22288, 'https://ror.org/03wcr7550', 'en', 1, 'https://ror.org/03wcr7550 Sendai Astronomical Observatory'),
(22289, 'https://ror.org/00sdawg68', 'en', 1, 'https://ror.org/00sdawg68 Stardome Observatory'),
(22290, 'https://ror.org/03szqsq92', 'en', 1, 'https://ror.org/03szqsq92 Carter Observatory'),
(22291, 'https://ror.org/02a97td45', 'fr', 1, 'https://ror.org/02a97td45 Observatoire de Dauban'),
(22292, 'https://ror.org/00gb7zg29', 'en', 1, 'https://ror.org/00gb7zg29 Farm Cove Observatory'),
(22293, 'https://ror.org/03339q147', 'en', 1, 'https://ror.org/03339q147 HƄRKƄMƄEN OBSERVATORIO Taurus Hill Observatory'),
(22294, 'https://ror.org/01827cp44', 'en', 1, 'https://ror.org/01827cp44 Geyserland Observatory'),
(22295, 'https://ror.org/00b8g9t96', 'en', 1, 'https://ror.org/00b8g9t96 Kumeu Observatory'),
(22296, 'https://ror.org/05x6q7t13', 'no_lang_code', 1, 'https://ror.org/05x6q7t13 Alberoni University دانؓگاه Ų§Ł„ŲØŪŒŲ±ŁˆŁ†ŪŒ'),
(22297, 'https://ror.org/042xfk211', 'es', 1, 'https://ror.org/042xfk211 Universidad PolitƩcnica de Baja California'),
(22298, 'https://ror.org/02cqr9y77', 'en', 1, 'https://ror.org/02cqr9y77 Possum Observatory'),
(22299, 'https://ror.org/059zvbg42', 'en', 1, 'https://ror.org/059zvbg42 Balkh University Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† بلخ'),
(22300, 'https://ror.org/0157yqb81', 'en', 1, 'https://ror.org/0157yqb81 Kandahar University دانؓگاه قندهار'),
(22301, 'https://ror.org/02shmve39', 'en', 1, 'https://ror.org/02shmve39 Mongolian University of Science and Technology ŠØŠøŠ½Š¶Š»ŃŃ… Ухаан Технологийн Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(22302, 'https://ror.org/03r7b1f79', 'en', 1, 'https://ror.org/03r7b1f79 Turgut Ɩzal University Turgut Ɩzal Ɯniversitesi'),
(22303, 'https://ror.org/016jrh007', 'en', 1, 'https://ror.org/016jrh007 Khost University دانؓگاه خوست'),
(22304, 'https://ror.org/05n47cs30', 'en', 1, 'https://ror.org/05n47cs30 Nangarhar University دانؓگاه ننگرهار'),
(22305, 'https://ror.org/0451w9n55', 'en', 1, 'https://ror.org/0451w9n55 Polytechnical University of Kabul دکابل Ł¾ŁˆŁ„ŪŒ ŲŖŲ®Ł†ŪŒŚ© Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(22306, 'https://ror.org/032e59714', 'en', 1, 'https://ror.org/032e59714 Olsztyn Planetarium and Astronomical Observatory Olsztyńskiego Planetarium i Obserwatorium Astronomicznego'),
(22307, 'https://ror.org/03kkfk814', 'en', 1, 'https://ror.org/03kkfk814 University of Jijel Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŲ¬Ł„'),
(22308, 'https://ror.org/01tkmq646', 'es', 1, 'https://ror.org/01tkmq646 Universidad Maimónides'),
(22309, 'https://ror.org/05baf4s06', 'en', 1, 'https://ror.org/05baf4s06 Ussuriysk Astrophysical Observatory Š£ŃŃŃƒŃ€ŠøŠ¹ŃŠŗŠ°Ń Š°ŃŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ Š”Š’Šž Š ŠŠ'),
(22310, 'https://ror.org/03cyqfb07', 'sk', 1, 'https://ror.org/03cyqfb07 TekovskÔ HvezdÔreň TekovskÔ hvezdÔreň v Leviciach'),
(22311, 'https://ror.org/04t730v47', 'en', 1, 'https://ror.org/04t730v47 National Technological University Universidad Tecnológica Nacional'),
(22312, 'https://ror.org/00vfhjf66', 'no_lang_code', 1, 'https://ror.org/00vfhjf66 Vihorlat Observatory VihorlatskÔ hvezdÔreň'),
(22313, 'https://ror.org/05hhc1155', 'en', 1, 'https://ror.org/05hhc1155 Bronberg Observatory'),
(22314, 'https://ror.org/030xx9n34', 'en', 1, 'https://ror.org/030xx9n34 Mandalay University į€™į€”į€¹į€į€œį€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(22315, 'https://ror.org/03cgbtn12', 'en', 1, 'https://ror.org/03cgbtn12 Pyay Technological University į€•į€¼į€Šį€ŗį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(22316, 'https://ror.org/03qxvyy35', 'en', 1, 'https://ror.org/03qxvyy35 Dhaka University of Engineering & Technology ঢাকা ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(22317, 'https://ror.org/03b7kxh09', 'en', 1, 'https://ror.org/03b7kxh09 Balearic Islands Coastal Observing and Forecasting System'),
(22318, 'https://ror.org/05fa42p74', 'en', 1, 'https://ror.org/05fa42p74 Southend University Hospital NHS Foundation Trust'),
(22319, 'https://ror.org/02zp2wx66', 'en', 1, 'https://ror.org/02zp2wx66 Schnƶrringen Telescope Science Institute'),
(22320, 'https://ror.org/031ph8d53', 'en', 1, 'https://ror.org/031ph8d53 Hochschule Worms University of Applied Sciences Worms'),
(22321, 'https://ror.org/04ymc1w90', 'en', 1, 'https://ror.org/04ymc1w90 Admiral Makarov National University of Shipbuilding ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŠ¾Ń€Š°Š±Š»ŠµŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ имени аГмирала ŠœŠ°ŠŗŠ°Ń€Š¾Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŠ¾Ń€Š°Š±Š»ŠµŠ±ŃƒŠ“ŃƒŠ²Š°Š½Š½Ń імені аГмірала ŠœŠ°ŠŗŠ°Ń€Š¾Š²Š°'),
(22322, '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'),
(22323, 'https://ror.org/03b9y4e65', 'en', 1, 'https://ror.org/03b9y4e65 Abdul Wali Khan University Mardan'),
(22324, 'https://ror.org/009apaj69', 'en', 1, 'https://ror.org/009apaj69 Cherkasy National University Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(22325, 'https://ror.org/01vf56d70', 'en', 1, 'https://ror.org/01vf56d70 Balochistan University of Information Technology, Engineering and Management Sciences'),
(22326, 'https://ror.org/02t4nyn12', 'en', 1, 'https://ror.org/02t4nyn12 Aryabhatta Research Institute of Observational Sciences'),
(22327, 'https://ror.org/05pv4jg27', 'en', 1, 'https://ror.org/05pv4jg27 Udaipur Solar Observatory'),
(22328, 'https://ror.org/018y22094', 'en', 1, 'https://ror.org/018y22094 Hazara University جامعہ ہزارہ'),
(22329, 'https://ror.org/007h7f935', 'en', 1, 'https://ror.org/007h7f935 State University of Haiti University of Haiti UniversitĆ© d''Ɖtat d''haĆÆti'),
(22330, 'https://ror.org/0202f7m63', 'it', 1, 'https://ror.org/0202f7m63 Osservatorio Astronomico Armenzano'),
(22331, 'https://ror.org/02anx2442', 'en', 1, 'https://ror.org/02anx2442 Simon Kuznets Kharkiv National University of Economics Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22332, 'https://ror.org/01w17ks16', 'en', 1, 'https://ror.org/01w17ks16 Gabriel René Moreno Autonomous University Universidad Autónoma Gabriel René Moreno'),
(22333, 'https://ror.org/01hnk0667', 'en', 1, 'https://ror.org/01hnk0667 Zrínyi Miklós National Defence University'),
(22334, 'https://ror.org/00j0prg66', 'en', 1, 'https://ror.org/00j0prg66 TomÔs Frías Autonomous University Universidad Autónoma TomÔs Frías'),
(22335, 'https://ror.org/05db8zr24', 'en', 1, 'https://ror.org/05db8zr24 NED University of Engineering and Technology Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś± Ū½ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ جي جامعہ Ų§ŁŠŁ† اي ŚŠŁŠā€Ž جامعہ Ų§ŪŒŁ† ای ڈی ŲØŲ±Ų§Ų¦Ū’ انجنئرنگ اور Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(22336, 'https://ror.org/01vn2rt83', 'pt', 1, 'https://ror.org/01vn2rt83 Centro UniversitƔrio de Volta Redonda'),
(22337, 'https://ror.org/05ycegt40', 'en', 1, 'https://ror.org/05ycegt40 Banasthali University ą¤µą¤Øą¤øą„ą¤„ą¤²ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(22338, 'https://ror.org/035zn2q74', 'en', 1, 'https://ror.org/035zn2q74 Pir Mehr Ali Shah Arid Agriculture University پیر مہر Ų¹Ł„ŪŒ ؓاہ ŲØŲ§Ų±Ų§Ł†ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(22339, 'https://ror.org/04ndj7y66', 'it', 1, 'https://ror.org/04ndj7y66 Osservatorio Astronomico della Regione Autonoma Valle d''Aosta'),
(22340, 'https://ror.org/04dcx0979', 'pt', 1, 'https://ror.org/04dcx0979 Centro UniversitƔrio Una'),
(22341, 'https://ror.org/03ag0xf08', 'en', 1, 'https://ror.org/03ag0xf08 Bassano Bresciano Astronomical Observatory Osservatorio Astronomico di Bassano Bresciano'),
(22342, 'https://ror.org/0485yr844', 'en', 1, 'https://ror.org/0485yr844 Bellatrix Astronomical Observatory'),
(22343, 'https://ror.org/051jrjw38', 'en', 1, 'https://ror.org/051jrjw38 University of Lahore جامعہ Ł„Ų§ŪŁˆŲ±'),
(22344, 'https://ror.org/05akcf597', 'en', 1, 'https://ror.org/05akcf597 Geological Observatory of Coldigioco Osservatorio Geologico di Coldigioco'),
(22345, 'https://ror.org/04be2dn15', 'en', 1, 'https://ror.org/04be2dn15 University of Science and Technology Bannu ŲØŁ†ŁˆŚŗ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف سائنس Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ');
INSERT INTO `rors` VALUES
(22346, 'https://ror.org/036t2wx59', 'it', 1, 'https://ror.org/036t2wx59 Osservatorio Astronomico di Monte Agliale'),
(22347, 'https://ror.org/05h279t85', 'en', 1, 'https://ror.org/05h279t85 Observatoire du vatican Specola Vaticana Vatican Observatory Vatikanische Sternwarte'),
(22348, 'https://ror.org/02r8frq60', 'en', 1, 'https://ror.org/02r8frq60 Bisei Astronomical Observatory'),
(22349, 'https://ror.org/01ee0g236', 'pt', 1, 'https://ror.org/01ee0g236 Universidade do Estado do Rio Grande do Norte'),
(22350, 'https://ror.org/04jmsq731', 'en', 1, 'https://ror.org/04jmsq731 Arab American University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© - Ų¬Ł†ŁŠŁ†'),
(22351, 'https://ror.org/047bp1713', 'en', 1, 'https://ror.org/047bp1713 North University of China äø­åŒ—å¤§å­¦'),
(22352, 'https://ror.org/0086db414', 'en', 1, 'https://ror.org/0086db414 HƓpital Ignace Deen Ignace Deen Hospital'),
(22353, 'https://ror.org/04e118j07', 'en', 1, 'https://ror.org/04e118j07 Dallas Baptist University'),
(22354, 'https://ror.org/03wwspn40', 'en', 1, 'https://ror.org/03wwspn40 Palestine Polytechnic University Ų¬Ų§Ł…Ų¹Ų© ŲØŁˆŁ„ŁŠŲŖŁƒŁ†Łƒ ŁŁ„Ų³Ų·ŁŠŁ†'),
(22355, 'https://ror.org/047vkpj90', 'en', 1, 'https://ror.org/047vkpj90 San Cristóbal of Huamanga University Universidad Nacional de San Cristóbal de Huamanga'),
(22356, 'https://ror.org/05h6yvy73', 'es', 1, 'https://ror.org/05h6yvy73 Universidad Nacional de la AmazonĆ­a Peruana'),
(22357, 'https://ror.org/01ry6r150', 'en', 1, 'https://ror.org/01ry6r150 Pamantasang Silliman Silliman University'),
(22358, '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'),
(22359, 'https://ror.org/03kkjyb15', 'en', 1, 'https://ror.org/03kkjyb15 Peking University Shenzhen Hospital åŒ—äŗ¬å¤§å­¦ę·±åœ³åŒ»é™¢'),
(22360, 'https://ror.org/03gq1d339', 'en', 1, 'https://ror.org/03gq1d339 University of NgaoundƩrƩ UniversitƩ de NgaoundƩrƩ'),
(22361, 'https://ror.org/02gdc3814', 'en', 1, 'https://ror.org/02gdc3814 Lipscomb University'),
(22362, 'https://ror.org/02hx0yn76', 'en', 1, 'https://ror.org/02hx0yn76 Quest University Canada'),
(22363, 'https://ror.org/058vzj997', 'en', 1, 'https://ror.org/058vzj997 MidAmerica Nazarene University'),
(22364, 'https://ror.org/05r2yk395', 'en', 1, 'https://ror.org/05r2yk395 TƤhtitieteellinen yhdistys Ursa ry Ursa Astronomical Association'),
(22365, 'https://ror.org/044pany34', 'en', 1, 'https://ror.org/044pany34 Sanming University äø‰ę˜Žå­¦é™¢'),
(22366, 'https://ror.org/01gbfax37', 'en', 1, 'https://ror.org/01gbfax37 Shandong Jianzhu University å±±äøœå»ŗē­‘å¤§å­¦'),
(22367, 'https://ror.org/01hnrbb29', 'en', 1, 'https://ror.org/01hnrbb29 Financial University Финансовый ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ при ŠŸŃ€Š°Š²ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Šµ Российской ФеГерации'),
(22368, 'https://ror.org/03p7g4h78', 'en', 1, 'https://ror.org/03p7g4h78 Gorno-Altaisk State University Горно-Алтайский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22369, 'https://ror.org/04fjxr127', 'en', 1, 'https://ror.org/04fjxr127 The Silesian Planetarium Śląskie Planetarium i Obserwatorium Astronomiczne'),
(22370, 'https://ror.org/03s8xc553', 'en', 1, 'https://ror.org/03s8xc553 Shanxi Datong University 山脿大同大学'),
(22371, 'https://ror.org/001rahr89', 'en', 1, 'https://ror.org/001rahr89 Affiliated Hospital of Nantong University 南通大学附属医院'),
(22372, 'https://ror.org/028rmam09', 'no_lang_code', 1, 'https://ror.org/028rmam09 Shijiazhuang University ēŸ³å®¶åŗ„å­¦é™¢'),
(22373, 'https://ror.org/00erq7915', 'en', 1, 'https://ror.org/00erq7915 Sichuan University of Arts and Science å››å·ę–‡ē†å­¦é™¢'),
(22374, 'https://ror.org/01kdzej58', 'en', 1, 'https://ror.org/01kdzej58 Bohai University 渤海大学'),
(22375, 'https://ror.org/054nkx469', 'en', 1, 'https://ror.org/054nkx469 Capital University of Physical Education and Sports é¦–éƒ½ä½“č‚²å­¦é™¢'),
(22376, 'https://ror.org/00yfjng44', 'en', 1, 'https://ror.org/00yfjng44 Universities at Shady Grove'),
(22377, 'https://ror.org/035cyhw15', 'en', 1, 'https://ror.org/035cyhw15 Changchun University of Chinese Medicine'),
(22378, 'https://ror.org/04mw1zx86', 'en', 1, 'https://ror.org/04mw1zx86 Karachay-Cherkess State Pedagogical University ŠšŠ°Ń€Š°Ń‡Š°ŠµŠ²Š¾-Черкесский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22379, 'https://ror.org/03yph8055', 'en', 1, 'https://ror.org/03yph8055 Changsha University of Science and Technology 长沙理巄大学'),
(22380, 'https://ror.org/04ymgwq66', 'en', 1, 'https://ror.org/04ymgwq66 Changzhou University åøøå·žå¤§å­¦'),
(22381, 'https://ror.org/05petvd47', 'en', 1, 'https://ror.org/05petvd47 Tibet University č„æč—å¤§å­¦'),
(22382, 'https://ror.org/00ax83b61', 'en', 1, 'https://ror.org/00ax83b61 Triangle Universities Nuclear Laboratory'),
(22383, 'https://ror.org/04bssxt85', 'no_lang_code', 1, 'https://ror.org/04bssxt85 Universal Technology Corporation (United States)'),
(22384, 'https://ror.org/02msjvh03', 'en', 1, 'https://ror.org/02msjvh03 Govind Ballabh Pant University of Agriculture and Technology ą¤—ą„‹ą¤µą¤æą¤Øą„ą¤¦ ą¤¬ą¤²ą„ą¤²ą¤­ ą¤Ŗą¤Øą„ą¤¤ ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(22385, 'https://ror.org/00ab9nq73', 'en', 1, 'https://ror.org/00ab9nq73 Indian Maritime University ą®‡ą®ØąÆą®¤ą®æą®Æą®•ąÆ ą®•ą®Ÿą®²ąÆą®šą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(22386, 'https://ror.org/05f5j6225', 'en', 1, 'https://ror.org/05f5j6225 University Town of Shenzhen ę·±åœ³å¤§å­¦åŸŽ'),
(22387, 'https://ror.org/05g1k4d79', 'en', 1, 'https://ror.org/05g1k4d79 North-Caucasus Federal University Деверо-Кавказский Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22388, 'https://ror.org/013qfkw58', 'en', 1, 'https://ror.org/013qfkw58 Maharishi Markandeshwar University, Mullana ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤®ą¤°ą„ą¤•ą¤‚ą¤¦ą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤®ą„ą¤²ą¤¾ą¤Øą¤¾'),
(22389, 'https://ror.org/02p6aa271', 'en', 1, 'https://ror.org/02p6aa271 North-Eastern Federal University Деверо-Восточный Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22390, 'https://ror.org/05b0f8e85', 'en', 1, 'https://ror.org/05b0f8e85 Orenburg State University ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22391, 'https://ror.org/0481cg432', 'en', 1, 'https://ror.org/0481cg432 Pandit Ravishankar Shukla University पंऔित रविशंकर ą¤¶ą„ą¤•ą„ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(22392, 'https://ror.org/05mnjs436', 'en', 1, 'https://ror.org/05mnjs436 Dezhou University 德州学院'),
(22393, 'https://ror.org/036x6w630', 'en', 1, 'https://ror.org/036x6w630 Shri Mata Vaishno Devi University ą¤¶ą„ą¤°ą„€ माता ą¤µą„ˆą¤·ą„ą¤£ą„‹ ą¤¦ą„‡ą¤µą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(22394, 'https://ror.org/02rh4fw73', 'en', 1, 'https://ror.org/02rh4fw73 University of Minnesota Rochester'),
(22395, 'https://ror.org/05c0ns027', 'en', 1, 'https://ror.org/05c0ns027 Perm National Research Polytechnic University Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22396, 'https://ror.org/0176aa147', 'en', 1, 'https://ror.org/0176aa147 Petrozavodsk State University ŠŸŠµŃ‚Ń€Š¾Š·Š°Š²Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22397, 'https://ror.org/02fj6b627', 'en', 1, 'https://ror.org/02fj6b627 Guangxi University of Science and Technology å¹æč„æē§‘ęŠ€å¤§å­¦'),
(22398, 'https://ror.org/05arjae42', 'en', 1, 'https://ror.org/05arjae42 Guilin University of Electronic Technology ę”‚ęž—ē”µå­ē§‘ęŠ€å¤§å­¦'),
(22399, 'https://ror.org/040c7js64', 'no_lang_code', 1, 'https://ror.org/040c7js64 Xi''an Shiyou University č„æå®‰ēŸ³ę²¹å¤§å­¦'),
(22400, 'https://ror.org/04wegbp55', 'en', 1, 'https://ror.org/04wegbp55 Tambov State Technical University Тамбовский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22401, 'https://ror.org/01zzmf129', 'en', 1, 'https://ror.org/01zzmf129 Xi’an University 脿安文理学院'),
(22402, 'https://ror.org/02m4a5582', 'en', 1, 'https://ror.org/02m4a5582 Voronezh State Pedagogical University Воронежский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22403, 'https://ror.org/04qzrw529', 'en', 1, 'https://ror.org/04qzrw529 Yaroslav-the-Wise Novgorod State University ŠŠ¾Š²Š³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ярослава ŠœŃƒŠ“рого'),
(22404, 'https://ror.org/02fsk5c21', 'en', 1, 'https://ror.org/02fsk5c21 University Pathologists'),
(22405, 'https://ror.org/01dyr7034', 'en', 1, 'https://ror.org/01dyr7034 Yan''an University 延安大学'),
(22406, 'https://ror.org/05xc4qj60', 'en', 1, 'https://ror.org/05xc4qj60 Libertador Experimental Pedagogical University Universidad Pedagógica Experimental Libertador'),
(22407, 'https://ror.org/00qseeb08', 'es', 1, 'https://ror.org/00qseeb08 Universidad Nacional Experimental de Guayana'),
(22408, 'https://ror.org/00k5x6r15', 'id', 1, 'https://ror.org/00k5x6r15 Universitas Ma Chung'),
(22409, 'https://ror.org/011adk382', 'en', 1, 'https://ror.org/011adk382 Yanbu University College ŁƒŁ„ŁŠŲ© ŁŠŁ†ŲØŲ¹ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(22410, 'https://ror.org/03951zg45', 'es', 1, 'https://ror.org/03951zg45 Universidad Nacional Experimental Simón Rodríguez'),
(22411, 'https://ror.org/01xprs690', 'en', 1, 'https://ror.org/01xprs690 UniversitƩ de ziguinchor Ziguinchor University'),
(22412, 'https://ror.org/019htgm96', 'en', 1, 'https://ror.org/019htgm96 Yili Normal University ä¼ŠēŠåøˆčŒƒå­¦é™¢'),
(22413, 'https://ror.org/01ggnn306', 'en', 1, 'https://ror.org/01ggnn306 Hunan University of Arts and Science ę¹–å—ę–‡ē†å­¦é™¢'),
(22414, 'https://ror.org/00s7jmd98', 'en', 1, 'https://ror.org/00s7jmd98 Hunan University of Humanities, Science and Technology ę¹–å—äŗŗę–‡ē§‘ęŠ€å­¦é™¢'),
(22415, 'https://ror.org/046nf9z89', 'en', 1, 'https://ror.org/046nf9z89 Golestan University دانؓگاه گلستان'),
(22416, 'https://ror.org/00zyh6d22', 'no_lang_code', 1, 'https://ror.org/00zyh6d22 Hakim Sabzevari University دانؓگاه Ų­Ś©ŪŒŁ… سبزواری'),
(22417, 'https://ror.org/02t54e151', 'en', 1, 'https://ror.org/02t54e151 Icesi University Universidad Icesi'),
(22418, 'https://ror.org/024nbxn35', 'en', 1, 'https://ror.org/024nbxn35 Jiaozuo University ē„¦ä½œå¤§å­¦'),
(22419, 'https://ror.org/051rngw70', 'no_lang_code', 1, 'https://ror.org/051rngw70 Shahrekord University دانؓگاه ؓهرکرد'),
(22420, 'https://ror.org/0506tgm76', 'en', 1, 'https://ror.org/0506tgm76 Shahrekord University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکي ؓهرکرد'),
(22421, 'https://ror.org/04wgyjv21', 'en', 1, 'https://ror.org/04wgyjv21 Le Quy Don Technical University ĐẔi hį»c Kỹ thuįŗ­t LĆŖ Quý ĐƓn'),
(22422, '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'),
(22423, 'https://ror.org/04tc27d43', 'es', 1, 'https://ror.org/04tc27d43 Escuela Universitaria de Fisioterapia de la ONCE'),
(22424, 'https://ror.org/0066vpg85', 'en', 1, 'https://ror.org/0066vpg85 Jiujiang University ä¹ę±Ÿå­¦é™¢'),
(22425, 'https://ror.org/02hzqbc55', 'en', 1, 'https://ror.org/02hzqbc55 Kaili University å‡Æé‡Œå­¦é™¢'),
(22426, 'https://ror.org/04tqrbk66', 'es', 1, 'https://ror.org/04tqrbk66 Hospital Universitario de Móstoles'),
(22427, 'https://ror.org/05ay23762', 'en', 1, 'https://ror.org/05ay23762 Liaoning University of Technology 辽宁巄业大学'),
(22428, 'https://ror.org/03ddeer04', 'en', 1, 'https://ror.org/03ddeer04 University of Qom دانؓگاه قم'),
(22429, 'https://ror.org/01y38kk41', 'en', 1, 'https://ror.org/01y38kk41 Logistics University of People''s Armed Police Force äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜ŸåŽå‹¤å­¦é™¢'),
(22430, 'https://ror.org/04mk5mk38', 'en', 1, 'https://ror.org/04mk5mk38 Cyprus International University Uluslararası Kıbrıs Üniversitesi'),
(22431, 'https://ror.org/04xp48827', 'en', 1, 'https://ror.org/04xp48827 European University Cyprus Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(22432, 'https://ror.org/02fwtg066', 'en', 1, 'https://ror.org/02fwtg066 Sudan University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(22433, 'https://ror.org/02m8qhj08', 'en', 1, 'https://ror.org/02m8qhj08 Anton de Kom Universiteit van Suriname Anton de Kom University of Suriname'),
(22434, 'https://ror.org/031y8am81', 'en', 1, 'https://ror.org/031y8am81 Nanjing University of Finance and Economics å—äŗ¬č“¢ē»å¤§å­¦'),
(22435, 'https://ror.org/02j2yhq26', 'en', 1, 'https://ror.org/02j2yhq26 Naval Aeronautical and Astronautical University äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›čˆŖē©ŗå·„ēØ‹å­¦é™¢'),
(22436, 'https://ror.org/026efkc57', 'en', 1, 'https://ror.org/026efkc57 Scottish Universities Physics Alliance'),
(22437, 'https://ror.org/05478zz46', 'es', 1, 'https://ror.org/05478zz46 Autonomous University of Santo Domingo Universidad Autónoma de Santo Domingo'),
(22438, 'https://ror.org/03s8c2x09', 'en', 1, 'https://ror.org/03s8c2x09 Future University in Egypt Ų¬Ų§Ł…Ų¹Ų© المستقبل ŲØŁ…ŲµŲ±'),
(22439, 'https://ror.org/0364c8r59', 'no_lang_code', 1, 'https://ror.org/0364c8r59 Chubu Gakuin University äø­éƒØå­¦é™¢å¤§å­¦'),
(22440, 'https://ror.org/04a3htt14', 'it', 1, 'https://ror.org/04a3htt14 Consorzio Interuniversitario Fisica Spaziale'),
(22441, 'https://ror.org/02cntp233', 'en', 1, 'https://ror.org/02cntp233 Daido University 大同大学'),
(22442, 'https://ror.org/005vfwz38', 'no_lang_code', 1, 'https://ror.org/005vfwz38 Gifu Kyoritsu University å²é˜œå”ē«‹å¤§å­¦'),
(22443, 'https://ror.org/05h9h0e34', 'en', 1, 'https://ror.org/05h9h0e34 Hokkai Gakuen University åŒ—ęµ·å­¦åœ’å¤§å­¦'),
(22444, 'https://ror.org/05debfq75', 'en', 1, 'https://ror.org/05debfq75 Misr University for Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ± Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(22445, 'https://ror.org/00nyxpe17', 'en', 1, 'https://ror.org/00nyxpe17 Hokkaido Information University åŒ—ęµ·é“ęƒ…å ±å¤§å­¦'),
(22446, 'https://ror.org/01vx5yq44', 'en', 1, 'https://ror.org/01vx5yq44 Port Said University Ų¬Ų§Ł…Ų¹Ų© بورسعيد'),
(22447, 'https://ror.org/022b6b871', 'en', 1, 'https://ror.org/022b6b871 Jobu University 上武大学'),
(22448, 'https://ror.org/02xjxgz53', 'en', 1, 'https://ror.org/02xjxgz53 Joetsu University of Education äøŠč¶Šę•™č‚²å¤§å­¦'),
(22449, 'https://ror.org/039pch476', 'en', 1, 'https://ror.org/039pch476 Josai International University åŸŽč„æå›½éš›å¤§å­¦'),
(22450, 'https://ror.org/004dan487', 'fr', 1, 'https://ror.org/004dan487 Centre Hospitalier Universitaire de La RƩunion'),
(22451, 'https://ror.org/044bdx604', 'en', 1, 'https://ror.org/044bdx604 Tokyo University of Information Sciences ę±äŗ¬ęƒ…å ±å¤§å­¦'),
(22452, 'https://ror.org/055khg266', 'fr', 1, 'https://ror.org/055khg266 Institut Universitaire de France'),
(22453, 'https://ror.org/04qcq6322', 'en', 1, 'https://ror.org/04qcq6322 Yamagata Prefectural University of Health Sciences å±±å½¢ēœŒē«‹äæå„åŒ»ē™‚å¤§å­¦'),
(22454, 'https://ror.org/02jgpyd84', 'en', 1, 'https://ror.org/02jgpyd84 German Jordanian University الجامعة Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ© Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(22455, 'https://ror.org/00rghrr56', 'en', 1, 'https://ror.org/00rghrr56 Kochi University of Technology é«˜ēŸ„å·„ē§‘å¤§å­¦'),
(22456, 'https://ror.org/05q041y44', 'no_lang_code', 1, 'https://ror.org/05q041y44 Kokugakuin University åœ‹å­øé™¢å¤§å­ø'),
(22457, 'https://ror.org/05tjaf288', 'en', 1, 'https://ror.org/05tjaf288 Komazawa University 駒澤大学'),
(22458, 'https://ror.org/04h794874', 'en', 1, 'https://ror.org/04h794874 Koriyama Women''s University 郔山儳子大学'),
(22459, 'https://ror.org/04xtvq436', 'en', 1, 'https://ror.org/04xtvq436 Kurashiki University of Science and the Arts å€‰ę•·čŠøč”“ē§‘å­¦å¤§å­¦'),
(22460, 'https://ror.org/05qs31q25', 'en', 1, 'https://ror.org/05qs31q25 Kyoto University Research Reactor Institute äŗ¬éƒ½å¤§å­¦č¤‡åˆåŽŸå­åŠ›ē§‘å­¦ē ”ē©¶ę‰€'),
(22461, 'https://ror.org/038jdep47', 'en', 1, 'https://ror.org/038jdep47 Kyushu Nutrition Welfare University ä¹å·žę „é¤Šē¦ē„‰å¤§å­¦'),
(22462, 'https://ror.org/03f099r71', 'fr', 1, 'https://ror.org/03f099r71 Institut universitaire de technologie Instituts Universitaires de Technologie'),
(22463, 'https://ror.org/03wkbyb17', 'en', 1, 'https://ror.org/03wkbyb17 Morioka University 盛岔大学'),
(22464, 'https://ror.org/03a42q045', 'en', 1, 'https://ror.org/03a42q045 Nara University å„ˆč‰Æå¤§å­¦'),
(22465, 'https://ror.org/05rr3y439', 'en', 1, 'https://ror.org/05rr3y439 Free University of Tbilisi ДвобоГный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Тбилиси įƒ—įƒįƒ•įƒ˜įƒ”įƒ£įƒ¤įƒįƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(22466, 'https://ror.org/0004r6b85', 'en', 1, 'https://ror.org/0004r6b85 Hochschule Biberach University of Applied Sciences Biberach'),
(22467, 'https://ror.org/01h2m4f20', 'en', 1, 'https://ror.org/01h2m4f20 Osaka Sangyo University å¤§é˜Ŗē”£ę„­å¤§å­¦'),
(22468, 'https://ror.org/01t4pxy10', 'en', 1, 'https://ror.org/01t4pxy10 Dresden International University'),
(22469, 'https://ror.org/05v1ekw79', 'en', 1, 'https://ror.org/05v1ekw79 Dongyang University ė™ģ–‘ėŒ€ķ•™źµ'),
(22470, 'https://ror.org/059r50h13', 'en', 1, 'https://ror.org/059r50h13 Gyeongnam National University of Science and Technology ź²½ė‚Øź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(22471, 'https://ror.org/01xjgpq49', 'no_lang_code', 1, 'https://ror.org/01xjgpq49 Sakushin Gakuin University ä½œę–°å­¦é™¢å¤§å­¦'),
(22472, 'https://ror.org/03jzxkg37', 'en', 1, 'https://ror.org/03jzxkg37 Senshu University 専修大学'),
(22473, 'https://ror.org/05jvh0739', 'en', 1, 'https://ror.org/05jvh0739 Sonoda Women''s University åœ’ē”°å­¦åœ’å„³å­å¤§å­¦'),
(22474, 'https://ror.org/05qh38f12', 'en', 1, 'https://ror.org/05qh38f12 Takushoku University ę‹“ę®– 大学'),
(22475, 'https://ror.org/01fzsd381', 'en', 1, 'https://ror.org/01fzsd381 HafenCity University Hamburg HafenCity UniversitƤt Hamburg'),
(22476, 'https://ror.org/034zkkc78', 'no_lang_code', 1, 'https://ror.org/034zkkc78 Teikyo Heisei University åøäŗ¬å¹³ęˆå¤§å­¦'),
(22477, 'https://ror.org/048yn7628', 'en', 1, 'https://ror.org/048yn7628 Harz University of Applied Sciences Hochschule Harz'),
(22478, 'https://ror.org/050mgpz97', 'en', 1, 'https://ror.org/050mgpz97 Jungwon University'),
(22479, 'https://ror.org/0504dfg48', 'no_lang_code', 1, 'https://ror.org/0504dfg48 Tohoku Gakuin University ę±åŒ—å­¦é™¢å¤§å­¦'),
(22480, 'https://ror.org/03c9fpk55', 'en', 1, 'https://ror.org/03c9fpk55 Korea National University of Education ķ•œźµ­źµģ›ėŒ€ķ•™źµ'),
(22481, 'https://ror.org/03xe7w214', 'en', 1, 'https://ror.org/03xe7w214 East–West University'),
(22482, 'https://ror.org/01c8qhb70', 'en', 1, 'https://ror.org/01c8qhb70 College of The Bahamas'),
(22483, 'https://ror.org/02nv0qb16', 'en', 1, 'https://ror.org/02nv0qb16 Ohio Christian University'),
(22484, 'https://ror.org/04j351e79', 'en', 1, 'https://ror.org/04j351e79 Hochschule Koblenz Koblenz University of Applied Sciences'),
(22485, 'https://ror.org/00fgcap50', 'en', 1, 'https://ror.org/00fgcap50 Universidad de Belice University of Belize'),
(22486, 'https://ror.org/05xbyzq55', 'en', 1, 'https://ror.org/05xbyzq55 Tokyo Kasei University ę±äŗ¬å®¶ę”æå¤§å­¦'),
(22487, 'https://ror.org/053nycv62', 'en', 1, 'https://ror.org/053nycv62 Korea University of Technology and Education ķ•œźµ­źø°ģˆ źµģœ”ėŒ€ķ•™źµ'),
(22488, 'https://ror.org/03b0ym704', 'en', 1, 'https://ror.org/03b0ym704 Tokyo Keizai University ę±äŗ¬ēµŒęøˆå¤§å­¦'),
(22489, 'https://ror.org/024kwvm84', 'en', 1, 'https://ror.org/024kwvm84 Kyungil University'),
(22490, 'https://ror.org/037pkxm09', 'en', 1, 'https://ror.org/037pkxm09 Kyungnam University ź²½ė‚ØėŒ€ķ•™źµ'),
(22491, 'https://ror.org/02qch8k63', 'en', 1, 'https://ror.org/02qch8k63 Briercrest College and Seminary'),
(22492, 'https://ror.org/00ncqx842', 'en', 1, 'https://ror.org/00ncqx842 Seowon University ģ„œģ›ėŒ€ķ•™źµ'),
(22493, 'https://ror.org/04vjfp916', 'de', 1, 'https://ror.org/04vjfp916 Hochschule Magdeburg-Stendal Magdeburg-Stendal University of Applied Sciences'),
(22494, 'https://ror.org/02k98xb21', 'en', 1, 'https://ror.org/02k98xb21 Kim Il-sung University ź¹€ģ¼ģ„±ģ¢…ķ•©ėŒ€ķ•™'),
(22495, 'https://ror.org/01js8h045', 'en', 1, 'https://ror.org/01js8h045 Bērnu klīniskā universitātes slimnīca Children''s Clinical University Hospital'),
(22496, 'https://ror.org/04t8wxc05', 'en', 1, 'https://ror.org/04t8wxc05 Yorkville University'),
(22497, 'https://ror.org/00br73y72', 'en', 1, 'https://ror.org/00br73y72 Atlantic School of Theology'),
(22498, 'https://ror.org/01xzw5f75', 'es', 1, 'https://ror.org/01xzw5f75 Universidad de San Pedro Sula University of San Pedro Sula'),
(22499, 'https://ror.org/057g08s23', 'es', 1, 'https://ror.org/057g08s23 Universidad AnƔhuac MƩxico Sur Universidad AnƔhuac del Sur'),
(22500, 'https://ror.org/01agfbd76', 'es', 1, 'https://ror.org/01agfbd76 Universidad de las Californias'),
(22501, 'https://ror.org/03qzc6q48', 'es', 1, 'https://ror.org/03qzc6q48 Universidad de Tijuana'),
(22502, 'https://ror.org/00j5cb536', 'es', 1, 'https://ror.org/00j5cb536 Universidad Tecnológica de Honduras'),
(22503, 'https://ror.org/03mcgtd30', 'es', 1, 'https://ror.org/03mcgtd30 Centro de Diseño, Arquitectura y Construcción'),
(22504, 'https://ror.org/04m0bzb15', 'en', 1, 'https://ror.org/04m0bzb15 Rogers State University UniversitĆ© d''Ɖtat de rogers'),
(22505, 'https://ror.org/00dsfsy77', 'es', 1, 'https://ror.org/00dsfsy77 Universidad Chapultepec'),
(22506, 'https://ror.org/02y28sc20', 'en', 1, 'https://ror.org/02y28sc20 Visva-Bharati University ą¤µą¤æą¤¶ą„ą¤µ-ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦­ą¦¾ą¦°ą¦¤ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ਵਿਸ਼ਵ ਭਾਰਤੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą“µą“æą“¶ąµą“µą“­ą“¾ą“°ą“¤ą“æ ą“øąµ¼ ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(22507, 'https://ror.org/05j8jw743', 'es', 1, 'https://ror.org/05j8jw743 Universidad de la Comunicación'),
(22508, 'https://ror.org/02j003371', 'es', 1, 'https://ror.org/02j003371 Universidad de las AmƩricas'),
(22509, 'https://ror.org/01kt2cx88', 'en', 1, 'https://ror.org/01kt2cx88 Escuela AgrĆ­cola Panamericana Zamorano Zamorano Pan-American Agricultural School'),
(22510, 'https://ror.org/04f2wck35', 'en', 1, 'https://ror.org/04f2wck35 St. Stephen''s University'),
(22511, 'https://ror.org/00gcm2421', 'es', 1, 'https://ror.org/00gcm2421 Universidad Emilio CƔrdenas'),
(22512, 'https://ror.org/03befxt38', 'en', 1, 'https://ror.org/03befxt38 Everest University'),
(22513, 'https://ror.org/0414fnh91', 'en', 1, 'https://ror.org/0414fnh91 Huntington University'),
(22514, 'https://ror.org/0003ahp46', 'es', 1, 'https://ror.org/0003ahp46 Universidad ETAC'),
(22515, 'https://ror.org/05wc21r71', 'es', 1, 'https://ror.org/05wc21r71 Universidad de Negocios ISEC'),
(22516, 'https://ror.org/00tsxbx86', 'es', 1, 'https://ror.org/00tsxbx86 Universidad Interamericana para el Desarrollo'),
(22517, 'https://ror.org/01p2bvc62', 'en', 1, 'https://ror.org/01p2bvc62 Columbia International University'),
(22518, 'https://ror.org/02pgkhq67', 'es', 1, 'https://ror.org/02pgkhq67 Universidad del Altiplano'),
(22519, 'https://ror.org/05c9jga87', 'en', 1, 'https://ror.org/05c9jga87 Assumption University'),
(22520, 'https://ror.org/02te4t940', 'en', 1, 'https://ror.org/02te4t940 Universidad del Claustro de Sor Juana University of the Cloister of Sor Juana'),
(22521, 'https://ror.org/02fnq4841', 'es', 1, 'https://ror.org/02fnq4841 Universidad Católica de Honduras Nuestra Señora Reina de la Paz'),
(22522, 'https://ror.org/050h4qj76', 'es', 1, 'https://ror.org/050h4qj76 Universidad del Desarrollo Empresarial y Pedagógico'),
(22523, 'https://ror.org/02fgyh323', 'es', 1, 'https://ror.org/02fgyh323 Universidad del Valle de Toluca'),
(22524, 'https://ror.org/0335q7x18', 'es', 1, 'https://ror.org/0335q7x18 Universidad JosƩ Cecilio del Valle'),
(22525, 'https://ror.org/00a3sq030', 'en', 1, 'https://ror.org/00a3sq030 Franklin University'),
(22526, 'https://ror.org/00ydm7519', 'es', 1, 'https://ror.org/00ydm7519 Universidad Isidro Fabela de Toluca'),
(22527, 'https://ror.org/04d6bgk38', 'es', 1, 'https://ror.org/04d6bgk38 Universidad del Distrito Federal'),
(22528, 'https://ror.org/04j2q1352', 'es', 1, 'https://ror.org/04j2q1352 Instituto Centroamericano de Administración de Empresas'),
(22529, 'https://ror.org/05ede8r89', 'en', 1, 'https://ror.org/05ede8r89 Central American Adventist University Universidad Adventista de Centro America'),
(22530, 'https://ror.org/04vbnwv73', 'es', 1, 'https://ror.org/04vbnwv73 Universidad del EjƩrcito y Fuerza AƩrea'),
(22531, 'https://ror.org/03dnnq935', 'en', 1, 'https://ror.org/03dnnq935 Antioch University Los Angeles'),
(22532, 'https://ror.org/010c6zy12', 'en', 1, 'https://ror.org/010c6zy12 Trident University International'),
(22533, 'https://ror.org/05rsfnx05', 'es', 1, 'https://ror.org/05rsfnx05 Universidad Pedagógica Nacional Francisco MorazÔn'),
(22534, 'https://ror.org/04bwwvv47', 'es', 1, 'https://ror.org/04bwwvv47 National Police of Honduras PolicĆ­a Nacional de Honduras'),
(22535, 'https://ror.org/052egrr51', 'es', 1, 'https://ror.org/052egrr51 Universidad del Pedregal'),
(22536, 'https://ror.org/05spgdz37', 'es', 1, 'https://ror.org/05spgdz37 Universidad Autónoma de La Laguna'),
(22537, 'https://ror.org/03w44ry84', 'en', 1, 'https://ror.org/03w44ry84 Mico University College'),
(22538, 'https://ror.org/05h9c3z20', 'es', 1, 'https://ror.org/05h9c3z20 Universidad del Valle de MƩxico'),
(22539, 'https://ror.org/02w1kdc51', 'en', 1, 'https://ror.org/02w1kdc51 University of Technology, Jamaica'),
(22540, 'https://ror.org/02pfwd463', 'es', 1, 'https://ror.org/02pfwd463 Universidad Gestalt'),
(22541, 'https://ror.org/04yv47b75', 'en', 1, 'https://ror.org/04yv47b75 Northern Caribbean University'),
(22542, 'https://ror.org/0078tmr20', 'es', 1, 'https://ror.org/0078tmr20 Universidad Hebraica'),
(22543, 'https://ror.org/01mx1hz05', 'en', 1, 'https://ror.org/01mx1hz05 Schiller International University'),
(22544, 'https://ror.org/00e9yqc18', 'es', 1, 'https://ror.org/00e9yqc18 Universidad Tollancingo'),
(22545, 'https://ror.org/00exe2989', 'es', 1, 'https://ror.org/00exe2989 Centro Universitario del PacĆ­fico Sur'),
(22546, 'https://ror.org/04f1s1f80', 'es', 1, 'https://ror.org/04f1s1f80 Universidad Florencio del Castillo'),
(22547, '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'),
(22548, 'https://ror.org/038d7xb21', 'es', 1, 'https://ror.org/038d7xb21 Universidad ICEL'),
(22549, 'https://ror.org/01v8mkp61', 'es', 1, 'https://ror.org/01v8mkp61 Universidad Santa Paula'),
(22550, 'https://ror.org/01gxfn525', 'es', 1, 'https://ror.org/01gxfn525 Universidad de Ciencias y Artes de Chiapas'),
(22551, 'https://ror.org/03z0m9f65', 'es', 1, 'https://ror.org/03z0m9f65 Universidad Pablo Guardado ChƔvez'),
(22552, 'https://ror.org/04qm2hq24', 'es', 1, 'https://ror.org/04qm2hq24 Universidad Insurgentes'),
(22553, 'https://ror.org/04ena6v85', 'es', 1, 'https://ror.org/04ena6v85 Universidad PolitƩcnica de Chiapas'),
(22554, 'https://ror.org/021njs178', 'es', 1, 'https://ror.org/021njs178 Intercontinental University Universidad Intercontinental'),
(22555, 'https://ror.org/028dfkq31', 'es', 1, 'https://ror.org/028dfkq31 Universidad Americana de Acapulco'),
(22556, 'https://ror.org/03qg1ka05', 'es', 1, 'https://ror.org/03qg1ka05 Universidad Loyola del PacĆ­fico'),
(22557, 'https://ror.org/03tz0hf33', 'es', 1, 'https://ror.org/03tz0hf33 Universidad Internacional San Isidro Labrador'),
(22558, 'https://ror.org/00cxp1a86', 'es', 1, 'https://ror.org/00cxp1a86 Universidad Internacional'),
(22559, 'https://ror.org/04mvrqy78', 'es', 1, 'https://ror.org/04mvrqy78 Universidad del Desarrollo Profesional'),
(22560, 'https://ror.org/03pnptn66', 'es', 1, 'https://ror.org/03pnptn66 Universidad Internacional de Profesiones y Escuela Internacional de Turismo'),
(22561, 'https://ror.org/059p0a776', 'en', 1, 'https://ror.org/059p0a776 American Sentinel University'),
(22562, 'https://ror.org/04cnaq122', 'es', 1, 'https://ror.org/04cnaq122 Universidad Madero Papaloapan'),
(22563, 'https://ror.org/047hq4296', 'es', 1, 'https://ror.org/047hq4296 Universidad Valle del Grijalva'),
(22564, 'https://ror.org/01gaavs46', 'en', 1, 'https://ror.org/01gaavs46 Justo Sierra University Universidad Justo Sierra'),
(22565, 'https://ror.org/00bmh7e34', 'es', 1, 'https://ror.org/00bmh7e34 Universidad Autónoma de Centro América'),
(22566, 'https://ror.org/04ychh985', 'es', 1, 'https://ror.org/04ychh985 Universidad del Valle de Tlaxcala'),
(22567, 'https://ror.org/04k2dc025', 'es', 1, 'https://ror.org/04k2dc025 Universidad Don Vasco'),
(22568, 'https://ror.org/035tcgz88', 'es', 1, 'https://ror.org/035tcgz88 Universidad Marista'),
(22569, 'https://ror.org/02p06pt44', 'es', 1, 'https://ror.org/02p06pt44 Universidad Mexicana'),
(22570, 'https://ror.org/04be5z192', 'es', 1, 'https://ror.org/04be5z192 Universidad BĆ­blica Latinoamericana'),
(22571, 'https://ror.org/05xg5y175', 'es', 1, 'https://ror.org/05xg5y175 Polytechnic University of Aguascalientes Universidad PolitƩcnica de Aguascalientes'),
(22572, 'https://ror.org/02jhx4860', 'en', 1, 'https://ror.org/02jhx4860 Upper Iowa University'),
(22573, 'https://ror.org/0426xa281', 'es', 1, 'https://ror.org/0426xa281 Universidad Tecnológica de Aguascalientes'),
(22574, 'https://ror.org/023m5rq87', 'en', 1, 'https://ror.org/023m5rq87 National Pedagogic University Universidad Pedagógica Nacional'),
(22575, 'https://ror.org/01sv41c41', 'es', 1, 'https://ror.org/01sv41c41 Universidad Villasunción'),
(22576, 'https://ror.org/04arhmz60', 'en', 1, 'https://ror.org/04arhmz60 Heritage Christian University'),
(22577, 'https://ror.org/02s93t850', 'es', 1, 'https://ror.org/02s93t850 Universidad Pontificia de MƩxico'),
(22578, 'https://ror.org/03b80ms04', 'es', 1, 'https://ror.org/03b80ms04 Universidad Jean Piaget'),
(22579, 'https://ror.org/038s91v75', 'en', 1, 'https://ror.org/038s91v75 L''UniversitƩ du Maine Ơ Fort Kent University of Maine at Fort Kent'),
(22580, 'https://ror.org/00x76st93', 'es', 1, 'https://ror.org/00x76st93 Universidad Católica de Costa Rica'),
(22581, 'https://ror.org/04vhngq09', 'en', 1, 'https://ror.org/04vhngq09 Salesian University Universidad Salesiana'),
(22582, 'https://ror.org/01f00fn77', 'en', 1, 'https://ror.org/01f00fn77 Fresno Pacific University'),
(22583, 'https://ror.org/039207457', 'es', 1, 'https://ror.org/039207457 Centro Universitario Hispano Mexicano'),
(22584, 'https://ror.org/02rzpp332', 'es', 1, 'https://ror.org/02rzpp332 Universidad Cristóbal Colón'),
(22585, 'https://ror.org/01wnb0b83', 'es', 1, 'https://ror.org/01wnb0b83 Universidad Central'),
(22586, 'https://ror.org/01r6bea41', 'es', 1, 'https://ror.org/01r6bea41 Universidad Centroamericana de Ciencias Sociales'),
(22587, 'https://ror.org/0297n1v45', 'en', 1, 'https://ror.org/0297n1v45 Amberton University Universidad Amberton'),
(22588, 'https://ror.org/02z191186', 'es', 1, 'https://ror.org/02z191186 Universidad Tecnológica Americana'),
(22589, 'https://ror.org/00jyxmj57', 'es', 1, 'https://ror.org/00jyxmj57 Universidad Westhill'),
(22590, 'https://ror.org/03001j263', 'es', 1, 'https://ror.org/03001j263 Universidad Continental de las Ciencias las Artes'),
(22591, 'https://ror.org/056nda222', 'en', 1, 'https://ror.org/056nda222 Kentucky Christian University'),
(22592, 'https://ror.org/03aqsxt86', 'es', 1, 'https://ror.org/03aqsxt86 Universidad Creativa'),
(22593, 'https://ror.org/01ebkw403', 'es', 1, 'https://ror.org/01ebkw403 Universidad YMCA'),
(22594, 'https://ror.org/03rj1yh85', 'en', 1, 'https://ror.org/03rj1yh85 Bob Jones University'),
(22595, 'https://ror.org/05htw0667', 'en', 1, 'https://ror.org/05htw0667 Finlandia University UniversitƩ finlandia'),
(22596, 'https://ror.org/01w9xxr98', 'en', 1, 'https://ror.org/01w9xxr98 Freed–Hardeman University'),
(22597, 'https://ror.org/05773jf61', 'es', 1, 'https://ror.org/05773jf61 Universidad Olmeca'),
(22598, 'https://ror.org/03fhhje23', 'en', 1, 'https://ror.org/03fhhje23 Cleary University'),
(22599, 'https://ror.org/033fgr632', 'es', 1, 'https://ror.org/033fgr632 Universidad de Ciencias Medicas'),
(22600, 'https://ror.org/02aneaq95', 'es', 1, 'https://ror.org/02aneaq95 Universidad de Xalapa'),
(22601, 'https://ror.org/02gj6ck68', 'en', 1, 'https://ror.org/02gj6ck68 Iberoamerican University Universidad de IberoamƩrica'),
(22602, 'https://ror.org/03beypq35', 'es', 1, 'https://ror.org/03beypq35 Universidad HernƔn CortƩs'),
(22603, 'https://ror.org/01h39r951', 'es', 1, 'https://ror.org/01h39r951 Universidad Paccioli Xalapa'),
(22604, 'https://ror.org/04djera41', 'es', 1, 'https://ror.org/04djera41 Universidad La Salle Costa Rica'),
(22605, 'https://ror.org/02kha8k84', 'es', 1, 'https://ror.org/02kha8k84 Universidad de la Sierra'),
(22606, 'https://ror.org/03q03s114', 'es', 1, 'https://ror.org/03q03s114 Universidad de las Ciencias y el Arte de Costa Rica'),
(22607, 'https://ror.org/04j9vr008', 'es', 1, 'https://ror.org/04j9vr008 Centro UniversitƔrio Internacional'),
(22608, 'https://ror.org/01thvz382', 'es', 1, 'https://ror.org/01thvz382 Universidad de San Jose'),
(22609, 'https://ror.org/048yh2980', 'es', 1, 'https://ror.org/048yh2980 Universidad Villa Rica'),
(22610, 'https://ror.org/04aaq2k96', 'en', 1, 'https://ror.org/04aaq2k96 Martin University'),
(22611, 'https://ror.org/0028kf729', 'en', 1, 'https://ror.org/0028kf729 Concordia University Irvine'),
(22612, 'https://ror.org/053d5gs04', 'es', 1, 'https://ror.org/053d5gs04 Universidad Filadelfia de MƩxico'),
(22613, 'https://ror.org/01jxhzn15', 'es', 1, 'https://ror.org/01jxhzn15 Centro Universitario MƩxico Valle'),
(22614, 'https://ror.org/02c561939', 'en', 1, 'https://ror.org/02c561939 Union University'),
(22615, 'https://ror.org/04nfs2483', 'en', 1, 'https://ror.org/04nfs2483 Universidad de St. Francis University of St. Francis'),
(22616, 'https://ror.org/003gh8k45', 'es', 1, 'https://ror.org/003gh8k45 Universidad Tecnológica del Sureste de Veracruz'),
(22617, 'https://ror.org/03g0mt494', 'es', 1, 'https://ror.org/03g0mt494 Universidad AnÔhuac de Cancún'),
(22618, 'https://ror.org/03yy7hq10', 'en', 1, 'https://ror.org/03yy7hq10 Grantham University'),
(22619, 'https://ror.org/04hm3y828', 'es', 1, 'https://ror.org/04hm3y828 Universidad del Caribe'),
(22620, 'https://ror.org/05d7z0p34', 'es', 1, 'https://ror.org/05d7z0p34 Instituto Universitario en Sistemas Administrativos de Monterrey'),
(22621, 'https://ror.org/00y7snj24', 'en', 1, 'https://ror.org/00y7snj24 Northwest University'),
(22622, 'https://ror.org/035t09566', 'en', 1, 'https://ror.org/035t09566 Universidad del Turismo University of Tourism'),
(22623, 'https://ror.org/00hcsja64', 'en', 1, 'https://ror.org/00hcsja64 Allied American University'),
(22624, 'https://ror.org/008bzz504', 'es', 1, 'https://ror.org/008bzz504 Universidad Xicotepetl'),
(22625, 'https://ror.org/05mcesg65', 'en', 1, 'https://ror.org/05mcesg65 Colorado Christian University'),
(22626, 'https://ror.org/02xw8cw23', 'es', 1, 'https://ror.org/02xw8cw23 Universidad del Valle'),
(22627, 'https://ror.org/01109d775', 'en', 1, 'https://ror.org/01109d775 Cairn University'),
(22628, 'https://ror.org/019fz0m35', 'es', 1, 'https://ror.org/019fz0m35 Universidad Maya de las AmƩricas'),
(22629, 'https://ror.org/02wtemq51', 'en', 1, 'https://ror.org/02wtemq51 Cumberland University'),
(22630, 'https://ror.org/0145cvg83', 'en', 1, 'https://ror.org/0145cvg83 Business University of Costa Rica Universidad Empresarial de Costa Rica'),
(22631, 'https://ror.org/02gm6vn88', 'es', 1, 'https://ror.org/02gm6vn88 Consorcio Educativo Oxford'),
(22632, 'https://ror.org/03rp0q895', 'es', 1, 'https://ror.org/03rp0q895 Universidad Albert Einstein'),
(22633, 'https://ror.org/016wh5q48', 'es', 1, 'https://ror.org/016wh5q48 Centro Universitario del Valle de Zacapu'),
(22634, 'https://ror.org/057nkmn52', 'es', 1, 'https://ror.org/057nkmn52 Universidad Escuela Libre de Derecho'),
(22635, 'https://ror.org/027q6qt05', 'es', 1, 'https://ror.org/027q6qt05 Universidad EvangƩlica de las AmƩricas'),
(22636, 'https://ror.org/059m1x137', 'en', 1, 'https://ror.org/059m1x137 Universidad de Celaya University of Celaya'),
(22637, 'https://ror.org/04edxwx83', 'en', 1, 'https://ror.org/04edxwx83 FidƩlitas University Universidad FidƩlitas'),
(22638, 'https://ror.org/05hjyfv39', 'es', 1, 'https://ror.org/05hjyfv39 Universidad del Centro del BajĆ­o'),
(22639, 'https://ror.org/02mczgx58', 'es', 1, 'https://ror.org/02mczgx58 Universidad Latina de MƩxico'),
(22640, 'https://ror.org/03979gq82', 'es', 1, 'https://ror.org/03979gq82 Universidad Fundepos'),
(22641, 'https://ror.org/01r98zz61', 'es', 1, 'https://ror.org/01r98zz61 Universidad Azteca Universidad Azteca de Chalco'),
(22642, 'https://ror.org/0350h3282', 'es', 1, 'https://ror.org/0350h3282 Universidad del Norte'),
(22643, 'https://ror.org/02j5qmn70', 'en', 1, 'https://ror.org/02j5qmn70 Dongguk University Los Angeles'),
(22644, 'https://ror.org/01gsj8877', 'es', 1, 'https://ror.org/01gsj8877 Universidad Hispanoamericana'),
(22645, 'https://ror.org/055wq3834', 'en', 1, 'https://ror.org/055wq3834 Samra University of Oriental Medicine'),
(22646, 'https://ror.org/00krqj642', 'es', 1, 'https://ror.org/00krqj642 Universidad Humanista de las AmƩricas'),
(22647, 'https://ror.org/021jdc910', 'es', 1, 'https://ror.org/021jdc910 Universidad Regional del Norte'),
(22648, 'https://ror.org/02kx72w21', 'en', 1, 'https://ror.org/02kx72w21 University of Philosophical Research'),
(22649, 'https://ror.org/04jj38x11', 'en', 1, 'https://ror.org/04jj38x11 West Coast University'),
(22650, 'https://ror.org/030ncfx10', 'es', 1, 'https://ror.org/030ncfx10 Universidad Metropolitana de Monterrey'),
(22651, 'https://ror.org/0175p1a50', 'es', 1, 'https://ror.org/0175p1a50 Universidad Latinoamericana de Ciencia y TecnologĆ­a'),
(22652, 'https://ror.org/03q0gmx50', 'es', 1, 'https://ror.org/03q0gmx50 Universidad Libre de Costa Rica'),
(22653, 'https://ror.org/01pjrq695', 'es', 1, 'https://ror.org/01pjrq695 Universidad Magister'),
(22654, 'https://ror.org/021s39r20', 'es', 1, 'https://ror.org/021s39r20 Colegio Metodista de Costa Rica'),
(22655, 'https://ror.org/04s65rw96', 'es', 1, 'https://ror.org/04s65rw96 Universidad Regiomontana'),
(22656, 'https://ror.org/01b9q6e25', 'es', 1, 'https://ror.org/01b9q6e25 Universidad Valle Continental'),
(22657, 'https://ror.org/00tnb2p82', 'es', 1, 'https://ror.org/00tnb2p82 Universidad de Morelia University of Morelia'),
(22658, 'https://ror.org/0575c3z81', 'en', 1, 'https://ror.org/0575c3z81 Sullivan University'),
(22659, 'https://ror.org/0259tmr25', 'es', 1, 'https://ror.org/0259tmr25 Centro Universitario Juana de Asbaje'),
(22660, 'https://ror.org/03hr7f472', 'es', 1, 'https://ror.org/03hr7f472 Centro Universitario de Ciudad JuƔrez'),
(22661, 'https://ror.org/05j2xah23', 'es', 1, 'https://ror.org/05j2xah23 Universidad Latina de AmƩrica'),
(22662, 'https://ror.org/04zgwt671', 'es', 1, 'https://ror.org/04zgwt671 Universidad Vasco de Quiroga'),
(22663, 'https://ror.org/00cxrw595', 'en', 1, 'https://ror.org/00cxrw595 Universidad para la Paz University for Peace'),
(22664, 'https://ror.org/017m8hp04', 'en', 1, 'https://ror.org/017m8hp04 University of Northern Virginia'),
(22665, 'https://ror.org/04svzdw14', 'es', 1, 'https://ror.org/04svzdw14 Centro Universitario de Mercadotecnia y Publicidad'),
(22666, 'https://ror.org/013fgjz36', 'es', 1, 'https://ror.org/013fgjz36 Universidad Lux'),
(22667, 'https://ror.org/04t718460', 'en', 1, 'https://ror.org/04t718460 Southern New Hampshire University UniversitƩ du sud du new hampshire'),
(22668, 'https://ror.org/00b1c0c11', 'es', 1, 'https://ror.org/00b1c0c11 Universidad Santa LucĆ­a'),
(22669, 'https://ror.org/03m69ak30', 'es', 1, 'https://ror.org/03m69ak30 Universidad de NorteamƩrica'),
(22670, 'https://ror.org/04tjmjk63', 'es', 1, 'https://ror.org/04tjmjk63 Universidad de Zamora'),
(22671, 'https://ror.org/0189yfh12', 'es', 1, 'https://ror.org/0189yfh12 Franco Mexican University Universidad Franco Mexicana'),
(22672, 'https://ror.org/04kwrcn69', 'es', 1, 'https://ror.org/04kwrcn69 Universidad Tecnológica Costarricense'),
(22673, 'https://ror.org/0006g9r95', 'es', 1, 'https://ror.org/0006g9r95 Universidad AmƩrica Latina'),
(22674, 'https://ror.org/026p1jb43', 'en', 1, 'https://ror.org/026p1jb43 Universidad del Valle de Atemajac University of the Valley of Atemajac'),
(22675, 'https://ror.org/049sdnw14', 'es', 1, 'https://ror.org/049sdnw14 Universidad Veritas'),
(22676, 'https://ror.org/049tfqy31', 'es', 1, 'https://ror.org/049tfqy31 Universidad MƩxico Americana del Norte'),
(22677, 'https://ror.org/05q6sxg43', 'es', 1, 'https://ror.org/05q6sxg43 Universidad Interamericana del Norte'),
(22678, 'https://ror.org/04caqsq71', 'es', 1, 'https://ror.org/04caqsq71 Universidad Marista de Guadalajara'),
(22679, 'https://ror.org/04yd0ad61', 'en', 1, 'https://ror.org/04yd0ad61 Latin University of Costa Rica Universidad Latina de Costa Rica'),
(22680, 'https://ror.org/04pggra29', 'en', 1, 'https://ror.org/04pggra29 Miami International University of Art & Design Universidad Internacional de Miami de Arte & DiseƱo'),
(22681, 'https://ror.org/01hk15q16', 'en', 1, 'https://ror.org/01hk15q16 Northwood University'),
(22682, 'https://ror.org/02gk19b80', 'en', 1, 'https://ror.org/02gk19b80 North Central University'),
(22683, 'https://ror.org/00gjr9m44', 'en', 1, 'https://ror.org/00gjr9m44 Amridge University'),
(22684, 'https://ror.org/05dm1m153', 'es', 1, 'https://ror.org/05dm1m153 International University of America Universidad Internacional de AmƩrica'),
(22685, 'https://ror.org/05x0fca68', 'en', 1, 'https://ror.org/05x0fca68 Universidad de Navojoa University of Navojoa'),
(22686, 'https://ror.org/015h3ax78', 'en', 1, 'https://ror.org/015h3ax78 Trevecca Nazarene University'),
(22687, 'https://ror.org/058znsm64', 'en', 1, 'https://ror.org/058znsm64 Bluefields Indian and Caribbean University'),
(22688, 'https://ror.org/0501n4373', 'es', 1, 'https://ror.org/0501n4373 Grupo Universitario Modelo'),
(22689, 'https://ror.org/02qchka04', 'es', 1, 'https://ror.org/02qchka04 Instituto Universitario de Oaxaca'),
(22690, 'https://ror.org/00epbww69', 'en', 1, 'https://ror.org/00epbww69 Patten University'),
(22691, 'https://ror.org/01pj4rr81', 'en', 1, 'https://ror.org/01pj4rr81 Mid-America Christian University'),
(22692, 'https://ror.org/00sb61x57', 'es', 1, 'https://ror.org/00sb61x57 Universidad Lucerna'),
(22693, 'https://ror.org/034sakr12', 'es', 1, 'https://ror.org/034sakr12 Universidad Anahuac Oaxaca'),
(22694, 'https://ror.org/02wmzx058', 'es', 1, 'https://ror.org/02wmzx058 Universidad JosƩ Vasconcelos de Oaxaca'),
(22695, 'https://ror.org/04c7brx88', 'es', 1, 'https://ror.org/04c7brx88 Centro Universitario de Coatzacoalcos'),
(22696, 'https://ror.org/05xpg8a23', 'en', 1, 'https://ror.org/05xpg8a23 Grace University'),
(22697, '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'),
(22698, 'https://ror.org/057ngt219', 'es', 1, 'https://ror.org/057ngt219 Universidad de Sotavento'),
(22699, 'https://ror.org/0084en736', 'es', 1, 'https://ror.org/0084en736 Universidad Regional del Sureste'),
(22700, 'https://ror.org/04xx19x53', 'es', 1, 'https://ror.org/04xx19x53 Universidad del Sureste'),
(22701, 'https://ror.org/04ft55h12', 'es', 1, 'https://ror.org/04ft55h12 Universidad del Norte de Nicaragua'),
(22702, 'https://ror.org/01axmcb72', 'es', 1, 'https://ror.org/01axmcb72 Universidad Dorados'),
(22703, 'https://ror.org/05s8ae250', 'es', 1, 'https://ror.org/05s8ae250 American Isthmus University Universidad Istmo Americana'),
(22704, 'https://ror.org/03m7qwy32', 'en', 1, 'https://ror.org/03m7qwy32 William Penn University'),
(22705, 'https://ror.org/02djp1y08', 'es', 1, 'https://ror.org/02djp1y08 Universidad TajĆ­n'),
(22706, 'https://ror.org/02bzvpv63', 'es', 1, 'https://ror.org/02bzvpv63 Universidad Autónoma del Pacífico'),
(22707, 'https://ror.org/05m031e17', 'en', 1, 'https://ror.org/05m031e17 Universidad de Cienfuegos University of Cienfuegos'),
(22708, 'https://ror.org/056az9397', 'es', 1, 'https://ror.org/056az9397 Universidad Santo Tomas de Oriente y Medio DĆ­a'),
(22709, 'https://ror.org/015ahgd08', 'en', 1, 'https://ror.org/015ahgd08 Brescia University'),
(22710, 'https://ror.org/03q8g2x76', 'es', 1, 'https://ror.org/03q8g2x76 Universidad Cristiana Autónoma de Nicaragua'),
(22711, 'https://ror.org/002rcs021', 'es', 1, 'https://ror.org/002rcs021 Universidad Partenón de Cozumel'),
(22712, 'https://ror.org/031y39h26', 'es', 1, 'https://ror.org/031y39h26 Universidad del Valle de Orizaba'),
(22713, 'https://ror.org/03wa0f361', 'es', 1, 'https://ror.org/03wa0f361 Instituto Latinoamericano de Computación'),
(22714, 'https://ror.org/05a9wb080', 'es', 1, 'https://ror.org/05a9wb080 Universidad Adventista de Nicaragua'),
(22715, 'https://ror.org/016aq4f67', 'es', 1, 'https://ror.org/016aq4f67 Centro de Estudios Universitarios Horacio ZuƱiga'),
(22716, 'https://ror.org/05bf5jb12', 'es', 1, 'https://ror.org/05bf5jb12 Universidad Alzate de Ozumba'),
(22717, 'https://ror.org/00m0tz504', 'en', 1, 'https://ror.org/00m0tz504 Central University of Nicaragua Universidad Central de Nicaragua'),
(22718, 'https://ror.org/04zccg612', 'es', 1, 'https://ror.org/04zccg612 Universidad Centroamericana de Ciencias Empresariales'),
(22719, 'https://ror.org/0351rxv20', 'en', 1, 'https://ror.org/0351rxv20 Universidad de Ciencias Comerciales University of Commercial Sciences'),
(22720, 'https://ror.org/00fn3n594', 'es', 1, 'https://ror.org/00fn3n594 Centro Universitario Hidalguense'),
(22721, 'https://ror.org/05radvt19', 'en', 1, 'https://ror.org/05radvt19 University of Hawaii–West Oahu'),
(22722, 'https://ror.org/00nrr4d03', 'es', 1, 'https://ror.org/00nrr4d03 Universidad de CuautitlƔn Izcalli'),
(22723, 'https://ror.org/0182jhx89', 'no_lang_code', 1, 'https://ror.org/0182jhx89 Dunlap-Stone University'),
(22724, 'https://ror.org/01ysbeb83', 'es', 1, 'https://ror.org/01ysbeb83 Universidad de Ciencias Pedagógicas José de la Luz Caballero'),
(22725, 'https://ror.org/03e398g80', 'es', 1, 'https://ror.org/03e398g80 Centro Universitario Americano del Estado de Morelos'),
(22726, 'https://ror.org/040w1dr55', 'en', 1, 'https://ror.org/040w1dr55 University of the Arts'),
(22727, 'https://ror.org/01xpzce83', 'es', 1, 'https://ror.org/01xpzce83 Centro Universitario Siglo XXI'),
(22728, 'https://ror.org/00z1pf798', 'es', 1, 'https://ror.org/00z1pf798 Universidad de Managua'),
(22729, 'https://ror.org/00y13f984', 'es', 1, 'https://ror.org/00y13f984 Universidad CientĆ­fica Latinoamericana de Hidalgo'),
(22730, 'https://ror.org/017mfww27', 'en', 1, 'https://ror.org/017mfww27 Point Park University'),
(22731, 'https://ror.org/03c0n7870', 'es', 1, 'https://ror.org/03c0n7870 Universidad de TecnologĆ­a y Comercio'),
(22732, 'https://ror.org/01nvgv947', 'es', 1, 'https://ror.org/01nvgv947 Universidad Evangelica Nicaraguense'),
(22733, 'https://ror.org/001m8k465', 'es', 1, 'https://ror.org/001m8k465 Universidad Iberoamericana de Ciencias y TecnologĆ­a'),
(22734, 'https://ror.org/02a7np905', 'es', 1, 'https://ror.org/02a7np905 Centro Universitario Latinoamericano de Morelos'),
(22735, 'https://ror.org/05r754v60', 'es', 1, 'https://ror.org/05r754v60 Universidad Autónoma de Piedras Negras'),
(22736, 'https://ror.org/04fcs7q74', 'es', 1, 'https://ror.org/04fcs7q74 Universidad de la CiƩnega'),
(22737, 'https://ror.org/02cf9zs75', 'es', 1, 'https://ror.org/02cf9zs75 Universidad Americana de Morelos'),
(22738, 'https://ror.org/04wvr4b69', 'es', 1, 'https://ror.org/04wvr4b69 Universidad Internacional de la Integración de América Latina'),
(22739, 'https://ror.org/030jtw105', 'es', 1, 'https://ror.org/030jtw105 Universidad CuauhnƔhuac'),
(22740, 'https://ror.org/01deq2m43', 'es', 1, 'https://ror.org/01deq2m43 Universidad Del Valle De Cuernavaca'),
(22741, 'https://ror.org/0544vva66', 'es', 1, 'https://ror.org/0544vva66 Universidad Fray Luca Paccioli'),
(22742, 'https://ror.org/02fxyjz60', 'es', 1, 'https://ror.org/02fxyjz60 Universidad Interamericana'),
(22743, 'https://ror.org/057ckep42', 'es', 1, 'https://ror.org/057ckep42 Universidad Jean-Jacques Rousseau'),
(22744, 'https://ror.org/0150qbw95', 'es', 1, 'https://ror.org/0150qbw95 Universidad Mexicana de Educación a Distancia'),
(22745, 'https://ror.org/0573cnq15', 'es', 1, 'https://ror.org/0573cnq15 Instituto Superior PolitƩcnico JosƩ Antonio Echeverrƭa Polytechnic JosƩ Antonio Echeverrƭa'),
(22746, 'https://ror.org/04xf6c905', 'en', 1, 'https://ror.org/04xf6c905 Northcentral University'),
(22747, 'https://ror.org/00brc6r59', 'en', 1, 'https://ror.org/00brc6r59 National University of Engineering Universidad Nacional de IngenierĆ­a'),
(22748, 'https://ror.org/02s2a9m37', 'en', 1, 'https://ror.org/02s2a9m37 Agricultural University of Havana'),
(22749, 'https://ror.org/0106sxj39', 'es', 1, 'https://ror.org/0106sxj39 Universidad Casa Blanca'),
(22750, 'https://ror.org/01bxyhb88', 'en', 1, 'https://ror.org/01bxyhb88 Nicaraguan University of Science and Technology Universidad Nicaragüense de Ciencia y Tecnologia'),
(22751, 'https://ror.org/022camr20', 'en', 1, 'https://ror.org/022camr20 Universidad de las Ciencias InformƔticas University of Information Science'),
(22752, 'https://ror.org/05jnqz832', 'es', 1, 'https://ror.org/05jnqz832 Catholic University of Culiacan Universidad Católica de CuliacÔn'),
(22753, 'https://ror.org/04ea6sw58', 'es', 1, 'https://ror.org/04ea6sw58 Universidad Nicaragüense de Estudios Humanisticos'),
(22754, 'https://ror.org/04b9js332', 'es', 1, 'https://ror.org/04b9js332 Universidad de San Miguel'),
(22755, 'https://ror.org/051vg7x60', 'en', 1, 'https://ror.org/051vg7x60 Simpson University'),
(22756, 'https://ror.org/02sghbs34', 'en', 1, 'https://ror.org/02sghbs34 University of Rio Grande and Rio Grande Community College');
INSERT INTO `rors` VALUES
(22757, 'https://ror.org/02wk2dc91', 'en', 1, 'https://ror.org/02wk2dc91 William Jessup University'),
(22758, 'https://ror.org/01pkd0t05', 'es', 1, 'https://ror.org/01pkd0t05 Colegio Libre de Estudios Universitarios'),
(22759, 'https://ror.org/045k6gy12', 'es', 1, 'https://ror.org/045k6gy12 Instituto Universitario Anglo EspaƱol'),
(22760, 'https://ror.org/00grdkt08', 'es', 1, 'https://ror.org/00grdkt08 Universidad TƩcnica de Comercio'),
(22761, 'https://ror.org/04wd2n987', 'en', 1, 'https://ror.org/04wd2n987 Autonomous University of Durango Universidad Autónoma de Durango'),
(22762, 'https://ror.org/008rn4f38', 'es', 1, 'https://ror.org/008rn4f38 Universidad Tecnológica Nicaragüense'),
(22763, 'https://ror.org/01xhcza12', 'en', 1, 'https://ror.org/01xhcza12 University of the West'),
(22764, 'https://ror.org/02vg7rh06', 'es', 1, 'https://ror.org/02vg7rh06 Thomas More Universitas Universidad Thomas More'),
(22765, 'https://ror.org/03gtw5096', 'es', 1, 'https://ror.org/03gtw5096 Universidad Xilotzingo'),
(22766, 'https://ror.org/054phan86', 'en', 1, 'https://ror.org/054phan86 Independence University'),
(22767, 'https://ror.org/022qam104', 'es', 1, 'https://ror.org/022qam104 Spanish Autonomous University of Durango Universidad Autónoma España de Durango'),
(22768, 'https://ror.org/02drgk151', 'en', 1, 'https://ror.org/02drgk151 Coleman University'),
(22769, 'https://ror.org/04jr0a134', 'en', 1, 'https://ror.org/04jr0a134 Academy of Art University'),
(22770, 'https://ror.org/01t573x46', 'es', 1, 'https://ror.org/01t573x46 Universidad del Valle de Guadiana'),
(22771, 'https://ror.org/002gezp78', 'es', 1, 'https://ror.org/002gezp78 Instituto Universitario de Tecnologia y Humanidades'),
(22772, 'https://ror.org/04p2g8a33', 'es', 1, 'https://ror.org/04p2g8a33 Instituto Universitario Puebla'),
(22773, 'https://ror.org/05vm4ac48', 'es', 1, 'https://ror.org/05vm4ac48 Universidad Alva Edison'),
(22774, 'https://ror.org/02t22fn57', 'es', 1, 'https://ror.org/02t22fn57 Universidad Anglohispanomexicana'),
(22775, 'https://ror.org/04ny3nx36', 'es', 1, 'https://ror.org/04ny3nx36 Universidad Benito JuƔrez Garcƭa'),
(22776, 'https://ror.org/04vq0vq60', 'es', 1, 'https://ror.org/04vq0vq60 Universidad Estatal del Valle de Ecatepec'),
(22777, 'https://ror.org/032tej786', 'es', 1, 'https://ror.org/032tej786 Centro Universitario Oparin'),
(22778, 'https://ror.org/05d6fm330', 'es', 1, 'https://ror.org/05d6fm330 Universidad Privada del Estado de MƩxico'),
(22779, 'https://ror.org/03z59cm68', 'en', 1, 'https://ror.org/03z59cm68 Henley-Putnam School of Strategic Security'),
(22780, 'https://ror.org/04axt3e70', 'en', 1, 'https://ror.org/04axt3e70 Autonomous Intercultural University of Sinaloa Universidad Autónoma Intercultural de Sinaloa'),
(22781, 'https://ror.org/007chxf81', 'en', 1, 'https://ror.org/007chxf81 Universidad de Pinar del RĆ­o University of Pinar del RĆ­o'),
(22782, 'https://ror.org/00zy9qe71', 'en', 1, 'https://ror.org/00zy9qe71 Centro de Estudios Universitarios Xochicalco Xochicalco University'),
(22783, 'https://ror.org/04jk6hn97', 'en', 1, 'https://ror.org/04jk6hn97 Silicon Valley University Universidad de Silicon Valley'),
(22784, 'https://ror.org/05k19bk82', 'es', 1, 'https://ror.org/05k19bk82 Universidad Cristiana de PanamĆ”'),
(22785, 'https://ror.org/039emag51', 'es', 1, 'https://ror.org/039emag51 Autonomous University of Fresnillo Universidad Autónoma de Fresnillo'),
(22786, 'https://ror.org/01z110311', 'es', 1, 'https://ror.org/01z110311 Universidad Especializada de las AmƩricas'),
(22787, 'https://ror.org/04dz93c71', 'es', 1, 'https://ror.org/04dz93c71 Universidad Central de MƩxico'),
(22788, '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'),
(22789, 'https://ror.org/039n74540', 'es', 1, 'https://ror.org/039n74540 Centro Universitario de Occidente'),
(22790, 'https://ror.org/03k9hrc16', 'en', 1, 'https://ror.org/03k9hrc16 Florida State University-Panama'),
(22791, 'https://ror.org/01r99ca40', 'es', 1, 'https://ror.org/01r99ca40 Universidad Abierta y a Distancia de PanamĆ”'),
(22792, 'https://ror.org/01yczqg15', 'es', 1, 'https://ror.org/01yczqg15 Universidad Enrique Díaz de León'),
(22793, 'https://ror.org/03m1s4j75', 'es', 1, 'https://ror.org/03m1s4j75 Universidad de Oriente'),
(22794, 'https://ror.org/02rsx0d74', 'es', 1, 'https://ror.org/02rsx0d74 Universidad de Puebla'),
(22795, 'https://ror.org/05xrt2s12', 'es', 1, 'https://ror.org/05xrt2s12 Universidad del Desarrollo del Estado de Puebla'),
(22796, 'https://ror.org/01eyjev41', 'es', 1, 'https://ror.org/01eyjev41 Universidad Europea'),
(22797, 'https://ror.org/03rsfqa52', 'es', 1, 'https://ror.org/03rsfqa52 Universidad de Especialidades'),
(22798, 'https://ror.org/044ypyq07', 'es', 1, 'https://ror.org/044ypyq07 Universidad Hispana'),
(22799, 'https://ror.org/01rdh6z55', 'en', 1, 'https://ror.org/01rdh6z55 Columbus University'),
(22800, 'https://ror.org/007m7ww56', 'es', 1, 'https://ror.org/007m7ww56 Lamar Universidad'),
(22801, 'https://ror.org/031m3tz43', 'es', 1, 'https://ror.org/031m3tz43 Universidad Mesoamericana'),
(22802, 'https://ror.org/047qtjs73', 'es', 1, 'https://ror.org/047qtjs73 Universidad Metropolitana Latin Campus'),
(22803, 'https://ror.org/016k08642', 'es', 1, 'https://ror.org/016k08642 Universidad SƤmann de Jalisco'),
(22804, 'https://ror.org/04htacw13', 'es', 1, 'https://ror.org/04htacw13 Universidad PolitƩcnica Hispano Mexicana'),
(22805, 'https://ror.org/03y42nm11', 'es', 1, 'https://ror.org/03y42nm11 Universidad de Ciencias Pedagógicas Félix Varela Morales'),
(22806, 'https://ror.org/00njxm476', 'es', 1, 'https://ror.org/00njxm476 Universidad Popular Autónoma del Estado de Puebla'),
(22807, 'https://ror.org/05fnph064', 'es', 1, 'https://ror.org/05fnph064 Universidad Realƭstica de MƩxico'),
(22808, 'https://ror.org/03hhd1t97', 'es', 1, 'https://ror.org/03hhd1t97 Universidad Tec De Oriente'),
(22809, 'https://ror.org/03cj80e19', 'es', 1, 'https://ror.org/03cj80e19 Universitario Bauhaus'),
(22810, 'https://ror.org/05e812q79', 'es', 1, 'https://ror.org/05e812q79 Universidad Católica Tecnológica de Barahona'),
(22811, 'https://ror.org/00erejq84', 'es', 1, 'https://ror.org/00erejq84 Universidad Univer'),
(22812, 'https://ror.org/05myvyk91', 'es', 1, 'https://ror.org/05myvyk91 Universidad del Arte Ganexa'),
(22813, 'https://ror.org/00kyx8y88', 'es', 1, 'https://ror.org/00kyx8y88 Universidad del Mar'),
(22814, 'https://ror.org/05hjjhn63', 'es', 1, 'https://ror.org/05hjjhn63 Centro de Estudios Universitarios Arkos'),
(22815, 'https://ror.org/01kyn4312', 'es', 1, 'https://ror.org/01kyn4312 Universidad Agroforestal Fernando Arturo de MeriƱo'),
(22816, 'https://ror.org/0085ewn55', 'es', 1, 'https://ror.org/0085ewn55 Universidad del Istmo University of the Isthmus'),
(22817, 'https://ror.org/026s89d26', 'en', 1, 'https://ror.org/026s89d26 William Howard Taft University'),
(22818, 'https://ror.org/0358d0w14', 'en', 1, 'https://ror.org/0358d0w14 Antioch University Santa Barbara'),
(22819, 'https://ror.org/000mgxg22', 'es', 1, 'https://ror.org/000mgxg22 Universidad AnƔhuac QuerƩtaro'),
(22820, 'https://ror.org/054tzxc20', 'es', 1, 'https://ror.org/054tzxc20 Universidad Católica Nordestana'),
(22821, 'https://ror.org/025d3w458', 'es', 1, 'https://ror.org/025d3w458 Universidad Interamericana de Educación a Distancia de PanamÔ'),
(22822, 'https://ror.org/044jexg93', 'es', 1, 'https://ror.org/044jexg93 Universidad ContemporƔnea'),
(22823, 'https://ror.org/03grmx823', 'es', 1, 'https://ror.org/03grmx823 Universidad Interamericana de PanamĆ”'),
(22824, 'https://ror.org/03chmh893', 'es', 1, 'https://ror.org/03chmh893 Universidad Santa Fe'),
(22825, 'https://ror.org/03myyx716', 'es', 1, 'https://ror.org/03myyx716 Universidad ISA'),
(22826, 'https://ror.org/0019g1982', 'es', 1, 'https://ror.org/0019g1982 Universidad de Hermosillo'),
(22827, 'https://ror.org/042xekv98', 'es', 1, 'https://ror.org/042xekv98 Universidad Tamaulipeca'),
(22828, 'https://ror.org/02ahky613', 'es', 1, 'https://ror.org/02ahky613 Northeastern University Universidad del Noreste'),
(22829, 'https://ror.org/04en6gs70', 'es', 1, 'https://ror.org/04en6gs70 Universidad Kino'),
(22830, 'https://ror.org/04x8q5j40', 'es', 1, 'https://ror.org/04x8q5j40 Technological University of Hermosillo Universidad Tecnológica de Hermosillo'),
(22831, 'https://ror.org/05jthsa98', 'es', 1, 'https://ror.org/05jthsa98 Universidad Abierta Para Adultos'),
(22832, 'https://ror.org/058gcv483', 'en', 1, 'https://ror.org/058gcv483 Antioch University Seattle'),
(22833, 'https://ror.org/03nvtfm43', 'en', 1, 'https://ror.org/03nvtfm43 Concordia University'),
(22834, 'https://ror.org/03f08pf79', 'en', 1, 'https://ror.org/03f08pf79 St. Gregory''s University'),
(22835, 'https://ror.org/00w62r976', 'en', 1, 'https://ror.org/00w62r976 Briar Cliff University'),
(22836, 'https://ror.org/0138bxv06', 'es', 1, 'https://ror.org/0138bxv06 Centro Universitario Luis Donaldo Colosio Murrieta'),
(22837, 'https://ror.org/04dxan340', 'en', 1, 'https://ror.org/04dxan340 Neumont University'),
(22838, 'https://ror.org/02c6xtt27', 'en', 1, 'https://ror.org/02c6xtt27 University of East-West Medicine'),
(22839, 'https://ror.org/01v9kmn87', 'es', 1, 'https://ror.org/01v9kmn87 Centro Universitario Vasco de Quiroga de Huejutla'),
(22840, 'https://ror.org/03wb76824', 'es', 1, 'https://ror.org/03wb76824 The New World University Universidad Nuevo Mundo'),
(22841, 'https://ror.org/02e4cmf45', 'es', 1, 'https://ror.org/02e4cmf45 Universidad Liceo Cervantino'),
(22842, 'https://ror.org/00taf6c38', 'es', 1, 'https://ror.org/00taf6c38 Instituto Superior de Formación Docente Salomé Ureña'),
(22843, 'https://ror.org/05d8vt634', 'en', 1, 'https://ror.org/05d8vt634 Harrison Middleton University'),
(22844, 'https://ror.org/01bqp7k56', 'en', 1, 'https://ror.org/01bqp7k56 University of Advancing Technology'),
(22845, 'https://ror.org/05kkct931', 'es', 1, 'https://ror.org/05kkct931 Universidad APEC Universidad Acción Pro-Educación y Cultura'),
(22846, 'https://ror.org/0263kr214', 'es', 1, 'https://ror.org/0263kr214 Universidad del Valle de Santiago'),
(22847, 'https://ror.org/00v9kaj80', 'es', 1, 'https://ror.org/00v9kaj80 Universidad MƩxico ContemporƔneo'),
(22848, 'https://ror.org/04b28td81', 'en', 1, 'https://ror.org/04b28td81 Latin University of Panama Universidad Latina de PanamĆ”'),
(22849, 'https://ror.org/03wz3nt64', 'es', 1, 'https://ror.org/03wz3nt64 Universidad Autónoma del Noreste'),
(22850, 'https://ror.org/05vr9w866', 'en', 1, 'https://ror.org/05vr9w866 Latin American University of Science and Technology Universidad Latinoamericana de Ciencia y TecnologĆ­a'),
(22851, 'https://ror.org/02c5he528', 'en', 1, 'https://ror.org/02c5he528 International Maritime University of Panama Universidad MarĆ­tima Internacional de PanamĆ”'),
(22852, 'https://ror.org/040hyy284', 'es', 1, 'https://ror.org/040hyy284 Universidad Experimental Felix Adam Universidad Experimental FƩlix Adam'),
(22853, 'https://ror.org/0053y3939', 'es', 1, 'https://ror.org/0053y3939 Universidad del Futbol y Ciencias del Deporte'),
(22854, 'https://ror.org/0250q0m17', 'es', 1, 'https://ror.org/0250q0m17 Universidad Interamericana'),
(22855, 'https://ror.org/03ad1cn37', 'es', 1, 'https://ror.org/03ad1cn37 Universidad Nacional Pedro Henrƭquez UreƱa'),
(22856, 'https://ror.org/02p6gmn22', 'es', 1, 'https://ror.org/02p6gmn22 Universidad AnƔhuac Puebla'),
(22857, 'https://ror.org/02k7ven88', 'es', 1, 'https://ror.org/02k7ven88 Universidad Metropolitana del Centro'),
(22858, 'https://ror.org/017g3c465', 'es', 1, 'https://ror.org/017g3c465 Universidad Metropolitana de Ciencia y TecnologĆ­a'),
(22859, 'https://ror.org/00mq34s35', 'es', 1, 'https://ror.org/00mq34s35 Universidad de Los Altos de Chiapas'),
(22860, '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'),
(22861, 'https://ror.org/04rhjk233', 'es', 1, 'https://ror.org/04rhjk233 Universidad Instituto Nacional de Ciencias Exactas'),
(22862, 'https://ror.org/040p70661', 'es', 1, 'https://ror.org/040p70661 Universidad Intercultural de Chiapas'),
(22863, 'https://ror.org/018zgbn57', 'es', 1, 'https://ror.org/018zgbn57 Universidad del Istmo'),
(22864, 'https://ror.org/01ggm0w72', 'es', 1, 'https://ror.org/01ggm0w72 Universidad Internacional de La Paz'),
(22865, 'https://ror.org/043h8xk50', 'es', 1, 'https://ror.org/043h8xk50 Universidad Maya'),
(22866, 'https://ror.org/05kvc3j25', 'es', 1, 'https://ror.org/05kvc3j25 Universidad Mundial'),
(22867, 'https://ror.org/004kq1w56', 'en', 1, 'https://ror.org/004kq1w56 Mesoamerican University Universidad Mesoamericana'),
(22868, 'https://ror.org/02e7h1n39', 'es', 1, 'https://ror.org/02e7h1n39 Universidad Intercultural del Estado de MƩxico'),
(22869, 'https://ror.org/043xyyp36', 'en', 1, 'https://ror.org/043xyyp36 Bethesda University'),
(22870, 'https://ror.org/0197qh103', 'en', 1, 'https://ror.org/0197qh103 South Baylo University'),
(22871, 'https://ror.org/02kpy6370', 'es', 1, 'https://ror.org/02kpy6370 Universidad Alfred Nobel de Mexico'),
(22872, 'https://ror.org/04szbq460', 'es', 1, 'https://ror.org/04szbq460 Universidad Abierta'),
(22873, 'https://ror.org/02g236n66', 'fr', 1, 'https://ror.org/02g236n66 UniversitƩ Roi Henri Christophe'),
(22874, 'https://ror.org/00rkfyy45', 'en', 1, 'https://ror.org/00rkfyy45 Ohio Valley University UniversitƩ de la vallƩe de l''ohio'),
(22875, 'https://ror.org/00x835z16', 'fr', 1, 'https://ror.org/00x835z16 UniversitĆ© ChrĆ©tienne du Nord d’HaĆÆti'),
(22876, 'https://ror.org/04eeb2398', 'en', 1, 'https://ror.org/04eeb2398 Post University'),
(22877, 'https://ror.org/05jz3sn81', 'en', 1, 'https://ror.org/05jz3sn81 University of the Cumberlands'),
(22878, 'https://ror.org/051nhdr80', 'es', 1, 'https://ror.org/051nhdr80 Universidad del Centro de MƩxico'),
(22879, 'https://ror.org/04hx5st34', 'en', 1, 'https://ror.org/04hx5st34 University of Virginia''s College at Wise'),
(22880, 'https://ror.org/024et1e33', 'en', 1, 'https://ror.org/024et1e33 Polytechnic University of San Luis Potosƭ Universidad PolitƩcnica de San Luis Potosƭ'),
(22881, 'https://ror.org/01fvz3c20', 'es', 1, 'https://ror.org/01fvz3c20 Universidad del Valle del Fuerte'),
(22882, 'https://ror.org/02g21fq05', 'fr', 1, 'https://ror.org/02g21fq05 Institut des Hautes Ɖtudes Commerciales et Ɖconomiques'),
(22883, 'https://ror.org/04s3hp788', 'es', 1, 'https://ror.org/04s3hp788 Centro Universitario del Noreste'),
(22884, 'https://ror.org/02d75a424', 'en', 1, 'https://ror.org/02d75a424 University of Management and Technology'),
(22885, 'https://ror.org/043gn8060', 'en', 1, 'https://ror.org/043gn8060 Adventist University of Haiti Université Adventiste d''Haïti'),
(22886, 'https://ror.org/041gqhg24', 'en', 1, 'https://ror.org/041gqhg24 University of Maine at Augusta'),
(22887, 'https://ror.org/05yh2rr37', 'en', 1, 'https://ror.org/05yh2rr37 Caribbean University Université Caraïbe'),
(22888, 'https://ror.org/028177t76', 'en', 1, 'https://ror.org/028177t76 Concordia University Texas Universidad Concordia Texas'),
(22889, 'https://ror.org/023cpce20', 'en', 1, 'https://ror.org/023cpce20 Universidad Internacional Webber Webber International University'),
(22890, 'https://ror.org/044evsy53', 'es', 1, 'https://ror.org/044evsy53 Universidad San Pablo'),
(22891, 'https://ror.org/0072e5x58', 'fr', 1, 'https://ror.org/0072e5x58 University Notre Dame of Haiti Université Notre Dame d''Haïti'),
(22892, 'https://ror.org/05twga530', 'en', 1, 'https://ror.org/05twga530 Oklahoma Wesleyan University'),
(22893, 'https://ror.org/058cq2c73', 'es', 1, 'https://ror.org/058cq2c73 Centro Universitario de Sonora'),
(22894, 'https://ror.org/02tq8vz07', 'en', 1, 'https://ror.org/02tq8vz07 Quisqueya University UniversitƩ Quisqueya'),
(22895, 'https://ror.org/05b51m931', 'es', 1, 'https://ror.org/05b51m931 Universidad Nacional de Agricultura'),
(22896, 'https://ror.org/00dtsyq89', 'es', 1, 'https://ror.org/00dtsyq89 Universidad Pedro de Gante'),
(22897, 'https://ror.org/05p9dka41', 'es', 1, 'https://ror.org/05p9dka41 Universidad de Matehuala'),
(22898, 'https://ror.org/00sy2m382', 'es', 1, 'https://ror.org/00sy2m382 Instituto Universitario Escuela Superior de Economía y Administración de Empresas'),
(22899, 'https://ror.org/0473v0343', 'es', 1, 'https://ror.org/0473v0343 Center of Higher University Studies Centro de Estudios Superiores Universitarios'),
(22900, 'https://ror.org/05xw5kw49', 'es', 1, 'https://ror.org/05xw5kw49 Universidad de Tamazunchale'),
(22901, 'https://ror.org/05t6bf545', 'es', 1, 'https://ror.org/05t6bf545 Centro Universitario Interamericano'),
(22902, 'https://ror.org/04qgx7b19', 'es', 1, 'https://ror.org/04qgx7b19 Universidad de Relaciones y Estudios Internacionales'),
(22903, 'https://ror.org/001nq7s39', 'en', 1, 'https://ror.org/001nq7s39 American Jewish University'),
(22904, 'https://ror.org/03t1bjt91', 'es', 1, 'https://ror.org/03t1bjt91 Universidad del Golfo'),
(22905, 'https://ror.org/0436xg366', 'es', 1, 'https://ror.org/0436xg366 Instituto Universitario de Ciencias de la Salud - Fundación Héctor A. Barceló'),
(22906, 'https://ror.org/0384p7414', 'es', 1, 'https://ror.org/0384p7414 Instituto Universitario de la PolicĆ­a Federal Argentina'),
(22907, 'https://ror.org/05hpc6k82', 'es', 1, 'https://ror.org/05hpc6k82 Universidad Marista de MƩrida'),
(22908, 'https://ror.org/057pbd488', 'es', 1, 'https://ror.org/057pbd488 Universidad Mesoamericana de San AgustĆ­n'),
(22909, 'https://ror.org/01ykn4h51', 'es', 1, 'https://ror.org/01ykn4h51 Universidad del Soconusco'),
(22910, 'https://ror.org/0029df882', 'es', 1, 'https://ror.org/0029df882 Universidad Modelo'),
(22911, 'https://ror.org/03cqn2k13', 'es', 1, 'https://ror.org/03cqn2k13 Universidad del Tacana'),
(22912, 'https://ror.org/03nm76w91', 'es', 1, 'https://ror.org/03nm76w91 Universidad Instituto Universitario del Estado de MƩxico'),
(22913, 'https://ror.org/03wwbgv53', 'es', 1, 'https://ror.org/03wwbgv53 Escuela Argentina de Negocios'),
(22914, 'https://ror.org/02f3t1d20', 'es', 1, 'https://ror.org/02f3t1d20 Instituto Universitario Franco InglƩs de MƩxico'),
(22915, 'https://ror.org/05dx64395', 'en', 1, 'https://ror.org/05dx64395 National University of the Arts Universidad Nacional de las Artes'),
(22916, 'https://ror.org/05qj15q72', 'en', 1, 'https://ror.org/05qj15q72 Southwestern Christian University'),
(22917, 'https://ror.org/05t9gqf54', 'en', 1, 'https://ror.org/05t9gqf54 New Charter University'),
(22918, 'https://ror.org/02w7b8538', 'es', 1, 'https://ror.org/02w7b8538 Centro Universitario de Tenango del Valle'),
(22919, 'https://ror.org/03e47dk66', 'es', 1, 'https://ror.org/03e47dk66 Universidad Argentina John F. Kennedy'),
(22920, 'https://ror.org/05rqdkd73', 'es', 1, 'https://ror.org/05rqdkd73 Centro Universitario Columbia'),
(22921, 'https://ror.org/000rhjc77', 'es', 1, 'https://ror.org/000rhjc77 Universidad Centro de Altos Estudios en Ciencias Exactas'),
(22922, 'https://ror.org/015jgm839', 'es', 1, 'https://ror.org/015jgm839 Centro Universitario Emmanuel Kant'),
(22923, 'https://ror.org/03n2yg143', 'es', 1, 'https://ror.org/03n2yg143 Centro Universitario en Periodismo y Publicidad'),
(22924, 'https://ror.org/00v2tva64', 'es', 1, 'https://ror.org/00v2tva64 Centro de Estudios Universitarios de Baja California'),
(22925, 'https://ror.org/03v5ycz03', 'en', 1, 'https://ror.org/03v5ycz03 Universidad de Belgrano University of Belgrano UniversitƩ de belgrano'),
(22926, 'https://ror.org/02gj0v433', 'en', 1, 'https://ror.org/02gj0v433 Gardner–Webb University'),
(22927, 'https://ror.org/03qsw6f66', 'es', 1, 'https://ror.org/03qsw6f66 Universidad del Alica'),
(22928, 'https://ror.org/02hsdts66', 'es', 1, 'https://ror.org/02hsdts66 Universidad de Flores'),
(22929, 'https://ror.org/03wgh3441', 'es', 1, 'https://ror.org/03wgh3441 Colegio FrancƩs Hidalgo de MƩxico'),
(22930, 'https://ror.org/03g867362', 'es', 1, 'https://ror.org/03g867362 Universidad de la Marina Mercante'),
(22931, 'https://ror.org/016b8st17', 'es', 1, 'https://ror.org/016b8st17 Universidad Vizcaya de las AmƩricas'),
(22932, 'https://ror.org/04j3tef82', 'es', 1, 'https://ror.org/04j3tef82 Centro Universitario Incarnate Word'),
(22933, 'https://ror.org/02nv68711', 'es', 1, 'https://ror.org/02nv68711 Universidad del Cine'),
(22934, 'https://ror.org/02gqhnf32', 'es', 1, 'https://ror.org/02gqhnf32 Centro Universitario Oriente de MƩxico'),
(22935, 'https://ror.org/02n094r49', 'en', 1, 'https://ror.org/02n094r49 Universidad del Museo Social Argentino University of Argentine Social Museum'),
(22936, 'https://ror.org/04v9get85', 'es', 1, 'https://ror.org/04v9get85 Centro Universitario Patria'),
(22937, 'https://ror.org/013fs2498', 'en', 1, 'https://ror.org/013fs2498 Woodbury University'),
(22938, 'https://ror.org/03jfhm487', 'en', 1, 'https://ror.org/03jfhm487 National University of Chilecito Universidad Nacional de Chilecito'),
(22939, 'https://ror.org/00b37sa87', 'es', 1, 'https://ror.org/00b37sa87 Universidad de Concepción del Uruguay'),
(22940, 'https://ror.org/02p303e31', 'es', 1, 'https://ror.org/02p303e31 Universidad Tecnológica Iberoamericana'),
(22941, 'https://ror.org/054s7hj41', 'en', 1, 'https://ror.org/054s7hj41 Jones International University'),
(22942, 'https://ror.org/00d7rqp94', 'es', 1, 'https://ror.org/00d7rqp94 Universidad de la Cuenca del Plata University of Cuenca del Plata'),
(22943, 'https://ror.org/05wrc0w56', 'en', 1, 'https://ror.org/05wrc0w56 National University of Formosa Universidad Nacional de Formosa'),
(22944, 'https://ror.org/02nf34254', 'en', 1, 'https://ror.org/02nf34254 Queens University of Charlotte'),
(22945, 'https://ror.org/04hdj2902', 'en', 1, 'https://ror.org/04hdj2902 Tennessee Temple University'),
(22946, 'https://ror.org/030b93p62', 'es', 1, 'https://ror.org/030b93p62 Universidad Champagnat'),
(22947, 'https://ror.org/038t6d126', 'es', 1, 'https://ror.org/038t6d126 Instituto Universitario AeronƔutico'),
(22948, 'https://ror.org/03z0f3m78', 'es', 1, 'https://ror.org/03z0f3m78 Universidad del PacĆ­fico'),
(22949, 'https://ror.org/004nxe453', 'es', 1, 'https://ror.org/004nxe453 Universidad EvangƩlica del Paraguay'),
(22950, 'https://ror.org/02arzvn48', 'es', 1, 'https://ror.org/02arzvn48 Instituto de Ciencias Tecnológicas'),
(22951, 'https://ror.org/01j3b2975', 'es', 1, 'https://ror.org/01j3b2975 Universidad Metropolitana de Asunción'),
(22952, 'https://ror.org/04jyjz861', 'pt', 1, 'https://ror.org/04jyjz861 Centro UniversitÔrio Módulo'),
(22953, 'https://ror.org/03k552p43', 'es', 1, 'https://ror.org/03k552p43 Universidad Católica de La Plata'),
(22954, 'https://ror.org/03r487h15', 'es', 1, 'https://ror.org/03r487h15 Universidad Notarial Argentina'),
(22955, 'https://ror.org/0122g5k54', 'pt', 1, 'https://ror.org/0122g5k54 Centro UniversitƔrio de Caratinga'),
(22956, 'https://ror.org/00mkdrs62', 'es', 1, 'https://ror.org/00mkdrs62 Universidad PolitƩcnica y Artƭstica del Paraguay'),
(22957, 'https://ror.org/05tv4xd72', 'es', 1, 'https://ror.org/05tv4xd72 Universidad Tecnológica Intercontinental'),
(22958, 'https://ror.org/00xwv4z20', 'es', 1, 'https://ror.org/00xwv4z20 Universidad Nacional del Este'),
(22959, 'https://ror.org/0371t1780', 'es', 1, 'https://ror.org/0371t1780 Universidad Nacional de ItapĆŗa'),
(22960, 'https://ror.org/03p5xhb29', 'es', 1, 'https://ror.org/03p5xhb29 Universidad Nacional de Pilar'),
(22961, 'https://ror.org/013m3my89', 'es', 1, 'https://ror.org/013m3my89 Universidad Nacional Micaela Bastidas de Apurimac'),
(22962, 'https://ror.org/0030hgr47', 'es', 1, 'https://ror.org/0030hgr47 Universidad Nacional JosƩ Marƭa Arguedas'),
(22963, 'https://ror.org/01pxyx032', 'es', 1, 'https://ror.org/01pxyx032 Fundación Universitaria Colombo Internacional'),
(22964, 'https://ror.org/05yq37p91', 'pt', 1, 'https://ror.org/05yq37p91 Centro UniversitƔrio do Leste de Minas Gerais'),
(22965, 'https://ror.org/043vxnh96', 'en', 1, 'https://ror.org/043vxnh96 Universidade de Cruz Alta University of Cruz Alta'),
(22966, 'https://ror.org/03db1hz44', 'es', 1, 'https://ror.org/03db1hz44 Universidad Católica San Pablo'),
(22967, 'https://ror.org/03a5kqj07', 'pt', 1, 'https://ror.org/03a5kqj07 Centro UniversitƔrio Unirondon'),
(22968, 'https://ror.org/004fs0e42', 'en', 1, 'https://ror.org/004fs0e42 National University of Cajamarca Universidad Nacional de Cajamarca'),
(22969, 'https://ror.org/02k5yax48', 'es', 1, 'https://ror.org/02k5yax48 Universidad Rural de Guatemala'),
(22970, 'https://ror.org/05e2jbm26', 'es', 1, 'https://ror.org/05e2jbm26 Universidad Privada Antonio Guillermo Urrelo'),
(22971, 'https://ror.org/059hjnz30', 'es', 1, 'https://ror.org/059hjnz30 Fundación de Estudios Superiores Comfanorte Universidad FESC'),
(22972, 'https://ror.org/02rabtj57', 'es', 1, 'https://ror.org/02rabtj57 Instituto Profesional de Chile'),
(22973, 'https://ror.org/02dd4nc12', 'es', 1, 'https://ror.org/02dd4nc12 Centro Diocesano de Estudio y Reflexión'),
(22974, 'https://ror.org/01vwm8t51', 'en', 1, 'https://ror.org/01vwm8t51 Francisco de Paula Santander University Universidad Francisco de Paula Santander'),
(22975, 'https://ror.org/01yztcr70', 'pt', 1, 'https://ror.org/01yztcr70 Universidade de CuiabĆ”'),
(22976, 'https://ror.org/04wwz3282', 'en', 1, 'https://ror.org/04wwz3282 EIA University Universidad EIA'),
(22977, 'https://ror.org/029qjm428', 'es', 1, 'https://ror.org/029qjm428 Instituto Profesional de Ciencias de la Computación'),
(22978, 'https://ror.org/00x51ts23', 'pt', 1, 'https://ror.org/00x51ts23 Centro UniversitƔrio Campos de Andrade'),
(22979, 'https://ror.org/00r54sf44', 'es', 1, 'https://ror.org/00r54sf44 Universidad de Morón'),
(22980, 'https://ror.org/05jj6ma85', 'es', 1, 'https://ror.org/05jj6ma85 Institución Universitaria de Envigado'),
(22981, 'https://ror.org/029jgxb70', 'pt', 1, 'https://ror.org/029jgxb70 Centro UniversitƔrio Curitiba'),
(22982, 'https://ror.org/03aawc123', 'es', 1, 'https://ror.org/03aawc123 Fundación Universitaria del Espinal'),
(22983, 'https://ror.org/01h558915', 'es', 1, 'https://ror.org/01h558915 Universidad Católica Santo Toribio de Mogrovejo'),
(22984, 'https://ror.org/05qxc8r48', 'es', 1, 'https://ror.org/05qxc8r48 Instituto Profesional De Ciencias Y Artes'),
(22985, 'https://ror.org/046vjzm79', 'es', 1, 'https://ror.org/046vjzm79 Universidad Gastón Dachary'),
(22986, 'https://ror.org/01h1szm41', 'es', 1, 'https://ror.org/01h1szm41 Universidad de Chiclayo'),
(22987, 'https://ror.org/03e79yx85', 'es', 1, 'https://ror.org/03e79yx85 Instituto Tolimense de Formación Técnica Profesional'),
(22988, 'https://ror.org/02e8s3123', 'es', 1, 'https://ror.org/02e8s3123 Instituto Universitario Italiano de Rosario'),
(22989, 'https://ror.org/05p4rzq96', 'es', 1, 'https://ror.org/05p4rzq96 Universidad SeƱor de SipƔn'),
(22990, 'https://ror.org/01za8kp04', 'en', 1, 'https://ror.org/01za8kp04 National University of Catamarca Universidad Nacional de Catamarca'),
(22991, 'https://ror.org/03gsgk545', 'en', 1, 'https://ror.org/03gsgk545 Universidad de la Amazonia University of the Amazon'),
(22992, 'https://ror.org/0198n3j25', 'en', 1, 'https://ror.org/0198n3j25 Saint Thomas Aquinas North University Universidad del Norte Santo TomƔs de Aquino'),
(22993, 'https://ror.org/040tqqd15', 'en', 1, 'https://ror.org/040tqqd15 Universidad de Cundinamarca University of Cundinamarca'),
(22994, 'https://ror.org/02gashc76', 'es', 1, 'https://ror.org/02gashc76 Instituto Profesional Eatri'),
(22995, 'https://ror.org/02b7n7v15', 'es', 1, 'https://ror.org/02b7n7v15 Universidad Católica de Santa Fe'),
(22996, 'https://ror.org/027840k02', 'en', 1, 'https://ror.org/027840k02 Catholic University of Santiago del Estero Universidad Católica de Santiago del Estero'),
(22997, 'https://ror.org/012mmaq80', 'pt', 1, 'https://ror.org/012mmaq80 Centro UniversitƔrio Franciscano do ParanƔ'),
(22998, 'https://ror.org/03hendk30', 'es', 1, 'https://ror.org/03hendk30 Enac Instituto Profesional'),
(22999, 'https://ror.org/00te64c61', 'pt', 1, 'https://ror.org/00te64c61 Universidade Tuiuti do ParanĆ”'),
(23000, 'https://ror.org/03fehwj53', 'es', 1, 'https://ror.org/03fehwj53 Universidad San Pedro'),
(23001, 'https://ror.org/05net6471', 'pt', 1, 'https://ror.org/05net6471 Centro UniversitƔrio da Grande Dourados'),
(23002, 'https://ror.org/00jfare13', 'es', 1, 'https://ror.org/00jfare13 Autonomous University of Manizales Universidad Autonoma de Manizales'),
(23003, 'https://ror.org/0283d6p96', 'es', 1, 'https://ror.org/0283d6p96 Instituto Profesional Escuela De Contadores Auditores De Santiago'),
(23004, 'https://ror.org/058aanc53', 'es', 1, 'https://ror.org/058aanc53 Escuela Moderna de MĆŗsica y Danza Instituto Profesional Escuela Moderna De Musica'),
(23005, 'https://ror.org/05bnh4739', 'pt', 1, 'https://ror.org/05bnh4739 Universidade Regional Integrada do Alto Uruguai e das MissƵes'),
(23006, 'https://ror.org/0577hrn12', 'es', 1, 'https://ror.org/0577hrn12 Instituto Profesional Esucomex'),
(23007, 'https://ror.org/02q4bdb50', 'pt', 1, 'https://ror.org/02q4bdb50 Centro Regional UniversitƔrio de Espƭrito Santo do Pinhal'),
(23008, 'https://ror.org/040akr227', 'es', 1, 'https://ror.org/040akr227 Universidad Nacional José Faustino SÔnchez Carrión'),
(23009, 'https://ror.org/012wtwr40', 'pt', 1, 'https://ror.org/012wtwr40 Centro UniversitƔrio Newton Paiva'),
(23010, 'https://ror.org/043eemy38', 'pt', 1, 'https://ror.org/043eemy38 Centro UniversitƔrio de Formiga'),
(23011, 'https://ror.org/01adb4m49', 'pt', 1, 'https://ror.org/01adb4m49 Centro UniversitƔrio de Franca'),
(23012, 'https://ror.org/00r8xnn14', 'es', 1, 'https://ror.org/00r8xnn14 Instituto Guillermo Subercaseaux'),
(23013, 'https://ror.org/00arjnt84', 'pt', 1, 'https://ror.org/00arjnt84 Centro UniversitƔrio de GoiƔs'),
(23014, 'https://ror.org/03hefp680', 'es', 1, 'https://ror.org/03hefp680 Universidad Nacional de Huancavelica'),
(23015, 'https://ror.org/02x6tcp11', 'en', 1, 'https://ror.org/02x6tcp11 Bolivia Adventist University Universidad Adventista de Bolivia'),
(23016, 'https://ror.org/02d6evb60', 'es', 1, 'https://ror.org/02d6evb60 Instituto Profesional La Araucana'),
(23017, 'https://ror.org/03bzmm215', 'pt', 1, 'https://ror.org/03bzmm215 Centro UniversitÔrio da Fundação Educacional Guaxupé'),
(23018, 'https://ror.org/05rcf8d17', 'es', 1, 'https://ror.org/05rcf8d17 Universidad Continental'),
(23019, 'https://ror.org/03pxqyk55', 'pt', 1, 'https://ror.org/03pxqyk55 Universidade Regional do Noroeste do Estado do Rio Grande do Sul'),
(23020, 'https://ror.org/01kyyzm82', 'es', 1, 'https://ror.org/01kyyzm82 Universidad Central'),
(23021, 'https://ror.org/0289gr697', 'es', 1, 'https://ror.org/0289gr697 Institución Universitaria Colegio Mayor de Antioquia'),
(23022, 'https://ror.org/01380h596', 'es', 1, 'https://ror.org/01380h596 Instituto Profesional Latinoamericano de Comercio Exterior'),
(23023, 'https://ror.org/022t9bz35', 'es', 1, 'https://ror.org/022t9bz35 Instituto Profesional Los Leones'),
(23024, 'https://ror.org/009kktb11', 'en', 1, 'https://ror.org/009kktb11 Los Andes Peruvian University Universidad Peruana Los Andes'),
(23025, 'https://ror.org/00tfjp359', 'pt', 1, 'https://ror.org/00tfjp359 Centro UniversitƔrio Leonardo da Vinci'),
(23026, 'https://ror.org/03g6mxw58', 'es', 1, 'https://ror.org/03g6mxw58 Universidad IndĆ­gena Quechua Boliviana Casimiro Huanca'),
(23027, 'https://ror.org/015cent83', 'es', 1, 'https://ror.org/015cent83 Instituto Profesional Providencia'),
(23028, 'https://ror.org/01fgscm92', 'es', 1, 'https://ror.org/01fgscm92 Universidad de HuƔnuco'),
(23029, 'https://ror.org/03ge8ff34', 'es', 1, 'https://ror.org/03ge8ff34 Universidad Latinoamericana'),
(23030, 'https://ror.org/053ctwk70', 'pt', 1, 'https://ror.org/053ctwk70 Centro UniversitÔrio Assunção'),
(23031, 'https://ror.org/0565qcy75', 'es', 1, 'https://ror.org/0565qcy75 Universidad Privada Abierta Latinoamericana'),
(23032, 'https://ror.org/02vbtzd72', 'es', 1, 'https://ror.org/02vbtzd72 Universidad Santo TomƔs'),
(23033, 'https://ror.org/03758j340', 'es', 1, 'https://ror.org/03758j340 Universidad Privada Boliviana'),
(23034, 'https://ror.org/028gkvf62', 'pt', 1, 'https://ror.org/028gkvf62 Centro UniversitƔrio Nossa Senhora do Patrocƭnio'),
(23035, 'https://ror.org/03wjn2094', 'es', 1, 'https://ror.org/03wjn2094 Universidad Privada del Valle'),
(23036, 'https://ror.org/00fx5h019', 'es', 1, 'https://ror.org/00fx5h019 Universidad Andina NƩstor CƔceres VelƔsquez'),
(23037, 'https://ror.org/05gaa6j70', 'en', 1, 'https://ror.org/05gaa6j70 Bolivarian University of Chile Universidad Bolivariana de Chile'),
(23038, 'https://ror.org/05khdc453', 'es', 1, 'https://ror.org/05khdc453 Universidad PĆŗblica de El Alto'),
(23039, 'https://ror.org/003mpdt17', 'es', 1, 'https://ror.org/003mpdt17 Universidad Católica Silva Henríquez'),
(23040, 'https://ror.org/02dm3hc63', 'pt', 1, 'https://ror.org/02dm3hc63 Centro UniversitƔrio de Jales'),
(23041, 'https://ror.org/027y3mp05', 'es', 1, 'https://ror.org/027y3mp05 Universidad Chileno BritƔnica de Cultura'),
(23042, 'https://ror.org/04vh21716', 'es', 1, 'https://ror.org/04vh21716 Universidad Unión Bolivariana'),
(23043, 'https://ror.org/02cs9pv18', 'en', 1, 'https://ror.org/02cs9pv18 Universidad Ciencias de la InformƔtica University Ucinf'),
(23044, 'https://ror.org/005xdc256', 'es', 1, 'https://ror.org/005xdc256 Fundación Universitaria Bellas Artes'),
(23045, 'https://ror.org/055d5bf90', 'es', 1, 'https://ror.org/055d5bf90 Universidad Católica Luis Amigó'),
(23046, 'https://ror.org/03n7nwh86', 'es', 1, 'https://ror.org/03n7nwh86 Universidad Católica Sedes Sapientiae'),
(23047, 'https://ror.org/00j31gd42', 'pt', 1, 'https://ror.org/00j31gd42 Centro UniversitƔrio de JaraguƔ do Sul'),
(23048, 'https://ror.org/03deqdj72', 'es', 1, 'https://ror.org/03deqdj72 Universidad de San MartĆ­n de Porres University of San MartĆ­n de Porres'),
(23049, 'https://ror.org/00fc5ew81', 'es', 1, 'https://ror.org/00fc5ew81 Universidad de la Cordillera'),
(23050, 'https://ror.org/03463y591', 'es', 1, 'https://ror.org/03463y591 Instituto Gamma'),
(23051, 'https://ror.org/04pnqcx66', 'pt', 1, 'https://ror.org/04pnqcx66 Centro UniversitÔrio de João Pessoa'),
(23052, 'https://ror.org/04pqpvr75', 'es', 1, 'https://ror.org/04pqpvr75 Universidad de Los Andes'),
(23053, 'https://ror.org/00je1p681', 'pt', 1, 'https://ror.org/00je1p681 Universidade da Região de Joinville'),
(23054, 'https://ror.org/011ebne09', 'pt', 1, 'https://ror.org/011ebne09 Centro UniversitƔrio Padre Anchieta'),
(23055, 'https://ror.org/05xs36f43', 'es', 1, 'https://ror.org/05xs36f43 Universidad La RepĆŗblica'),
(23056, 'https://ror.org/05ap1zt54', 'en', 1, 'https://ror.org/05ap1zt54 Miguel de Cervantes University Universidad Miguel de Cervantes'),
(23057, 'https://ror.org/03sdg3x20', 'es', 1, 'https://ror.org/03sdg3x20 Universidad Femenina del Sagrado Corazón'),
(23058, 'https://ror.org/01ef0g096', 'pt', 1, 'https://ror.org/01ef0g096 Universidade do Planalto Catarinense'),
(23059, 'https://ror.org/04bpsn575', 'en', 1, 'https://ror.org/04bpsn575 Metropolitan University of Technology Universidad Tecnológica Metropolitana'),
(23060, 'https://ror.org/010r9dy59', 'es', 1, 'https://ror.org/010r9dy59 Universidad Autónoma de Chile'),
(23061, 'https://ror.org/01ybmjm77', 'es', 1, 'https://ror.org/01ybmjm77 Instituto Profesional Helen Keller'),
(23062, 'https://ror.org/0527rwj48', 'es', 1, 'https://ror.org/0527rwj48 Colegiatura Colombiana Institución Universitaria'),
(23063, 'https://ror.org/01wfnf418', 'es', 1, 'https://ror.org/01wfnf418 Universidad Loyola'),
(23064, 'https://ror.org/00txsqk22', 'en', 1, 'https://ror.org/00txsqk22 Universidad ViƱa del Mar ViƱa del Mar University'),
(23065, 'https://ror.org/0184kye93', 'es', 1, 'https://ror.org/0184kye93 Universidad del Mar'),
(23066, 'https://ror.org/03kqywj10', 'es', 1, 'https://ror.org/03kqywj10 Universidad Nuestra SeƱora de La Paz'),
(23067, 'https://ror.org/03pxqf194', 'pt', 1, 'https://ror.org/03pxqf194 Centro UniversitƔrio Anhanguera'),
(23068, 'https://ror.org/007qdam28', 'pt', 1, 'https://ror.org/007qdam28 Centro UniversitƔrio de Lins'),
(23069, 'https://ror.org/04m5pzk31', 'es', 1, 'https://ror.org/04m5pzk31 Fundación Universitaria Autónoma De Las Américas'),
(23070, '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'),
(23071, 'https://ror.org/04cyft771', 'es', 1, 'https://ror.org/04cyft771 Fundación de Estudios Superiores Universitarios de UrabÔ'),
(23072, 'https://ror.org/024wgn240', 'pt', 1, 'https://ror.org/024wgn240 Centro UniversitƔrio de Desenvolvimento do Centro Oeste'),
(23073, 'https://ror.org/03pze9w21', 'es', 1, 'https://ror.org/03pze9w21 Corporación Universitaria Americana'),
(23074, 'https://ror.org/0566ns265', 'es', 1, 'https://ror.org/0566ns265 PolitƩcnico de la Costa AtlƔntica'),
(23075, 'https://ror.org/01v5nhr20', 'en', 1, 'https://ror.org/01v5nhr20 Universidad de la Costa University of the Coast'),
(23076, 'https://ror.org/0352jg241', 'es', 1, 'https://ror.org/0352jg241 Corporación Universitaria Empresarial de Salamanca'),
(23077, 'https://ror.org/02nq1ed11', 'es', 1, 'https://ror.org/02nq1ed11 Corporación Universitaria Reformada'),
(23078, 'https://ror.org/05gqfsf87', 'es', 1, 'https://ror.org/05gqfsf87 Universidad Autónoma del Caribe'),
(23079, 'https://ror.org/00cey1j90', 'es', 1, 'https://ror.org/00cey1j90 Universidad Metropolitana'),
(23080, 'https://ror.org/02njbw696', 'es', 1, 'https://ror.org/02njbw696 Simón Bolívar University Universidad Simón Bolívar'),
(23081, 'https://ror.org/007drf487', 'es', 1, 'https://ror.org/007drf487 Centro de Investigación Docencia y Consultoria Administrativa'),
(23082, 'https://ror.org/00gm52g34', 'es', 1, 'https://ror.org/00gm52g34 Colegio de Estudios Superiores de Administración'),
(23083, 'https://ror.org/05ss0jg28', 'es', 1, 'https://ror.org/05ss0jg28 Institución Tecnológica Cedesistemas'),
(23084, 'https://ror.org/022sn3k05', 'es', 1, 'https://ror.org/022sn3k05 Universidad Peruana de Ciencias e InformƔtica'),
(23085, 'https://ror.org/04p47he44', 'pt', 1, 'https://ror.org/04p47he44 Sociedade de Ensino UniversitƔrio do Nordeste'),
(23086, 'https://ror.org/00d5d1v82', 'es', 1, 'https://ror.org/00d5d1v82 Institución Universitaria Esumer'),
(23087, 'https://ror.org/00vh0dr83', 'es', 1, 'https://ror.org/00vh0dr83 Universidad Salesiana de Bolivia'),
(23088, 'https://ror.org/01a81wk68', 'pt', 1, 'https://ror.org/01a81wk68 Centro UniversitƔrio de Ensino Superior do Amazonas'),
(23089, 'https://ror.org/047xxr477', 'es', 1, 'https://ror.org/047xxr477 Institución Universitaria Salazar y Herrera'),
(23090, 'https://ror.org/041wsqp45', 'es', 1, 'https://ror.org/041wsqp45 Institución Universitaria Colegios de Colombia'),
(23091, 'https://ror.org/018mj2m06', 'pt', 1, 'https://ror.org/018mj2m06 Centro UniversitƔrio do Norte'),
(23092, 'https://ror.org/04wj0w424', 'pt', 1, 'https://ror.org/04wj0w424 Universidade Nilton Lins'),
(23093, 'https://ror.org/01w96sp43', 'pt', 1, 'https://ror.org/01w96sp43 Universidade de MarĆ­lia'),
(23094, 'https://ror.org/01skkym94', 'es', 1, 'https://ror.org/01skkym94 Corporación Escuela de Artes y Letras'),
(23095, 'https://ror.org/00d6gkv56', 'es', 1, 'https://ror.org/00d6gkv56 Universidad Tecnológica Boliviana'),
(23096, 'https://ror.org/03byjr489', 'pt', 1, 'https://ror.org/03byjr489 Centro UniversitƔrio Cesumar'),
(23097, 'https://ror.org/056g73y51', 'es', 1, 'https://ror.org/056g73y51 PolitƩcnico Colombiano Jaime Isaza Cadavid'),
(23098, 'https://ror.org/04abrpb32', 'es', 1, 'https://ror.org/04abrpb32 Universidad Norbert Wiener'),
(23099, 'https://ror.org/00fyj0e42', 'pt', 1, 'https://ror.org/00fyj0e42 Universidade Braz Cubas'),
(23100, 'https://ror.org/00315pw02', 'pt', 1, 'https://ror.org/00315pw02 Universidade Potiguar'),
(23101, 'https://ror.org/0540xtx50', 'es', 1, 'https://ror.org/0540xtx50 Corporación Internacional para el Desarrollo Educativo'),
(23102, 'https://ror.org/015x6xa25', 'es', 1, 'https://ror.org/015x6xa25 Corporación John F. Kennedy'),
(23103, 'https://ror.org/01q4mdv90', 'es', 1, 'https://ror.org/01q4mdv90 Universidad Privada de Oruro'),
(23104, 'https://ror.org/03qtxpc80', 'pt', 1, 'https://ror.org/03qtxpc80 Centro UniversitƔrio Plƭnio Leite'),
(23105, 'https://ror.org/019c89h28', 'en', 1, 'https://ror.org/019c89h28 Oruro Technical University Universidad TƩcnica de Oruro'),
(23106, 'https://ror.org/05tkb8v92', 'es', 1, 'https://ror.org/05tkb8v92 Universidad Autónoma Latinoamericana'),
(23107, 'https://ror.org/0152e2z91', 'pt', 1, 'https://ror.org/0152e2z91 Universidade IguaƧu'),
(23108, 'https://ror.org/007ywk955', 'es', 1, 'https://ror.org/007ywk955 Universidad Bethesda'),
(23109, 'https://ror.org/04afz7s27', 'pt', 1, 'https://ror.org/04afz7s27 Centro UniversitƔrio Barriga Verde'),
(23110, 'https://ror.org/028w3g135', 'es', 1, 'https://ror.org/028w3g135 Universidad JosƩ Carlos Mariategui'),
(23111, 'https://ror.org/05v2asf50', 'es', 1, 'https://ror.org/05v2asf50 Universidad Nacional de Moquegua'),
(23112, 'https://ror.org/03fjqhm56', 'es', 1, 'https://ror.org/03fjqhm56 Universidad Cristiana de Bolivia'),
(23113, 'https://ror.org/05f46p870', 'pt', 1, 'https://ror.org/05f46p870 Centro UniversitÔrio Católico do Sudoeste do ParanÔ'),
(23114, 'https://ror.org/01yg3gs77', 'es', 1, 'https://ror.org/01yg3gs77 Corporación Politécnico Colombo Andino'),
(23115, 'https://ror.org/04s2jq961', 'es', 1, 'https://ror.org/04s2jq961 Universidad Nacional del Oriente'),
(23116, 'https://ror.org/013ys5k90', 'es', 1, 'https://ror.org/013ys5k90 Universidad del SinĆŗ'),
(23117, 'https://ror.org/031vfrf75', 'es', 1, 'https://ror.org/031vfrf75 Universidad Nacional de Piura'),
(23118, 'https://ror.org/04nen0q36', 'es', 1, 'https://ror.org/04nen0q36 Corporación Tecnológica de BogotÔ'),
(23119, 'https://ror.org/02rp4gd98', 'es', 1, 'https://ror.org/02rp4gd98 Universidad Nacional de Ucayali'),
(23120, 'https://ror.org/01jgs5r19', 'es', 1, 'https://ror.org/01jgs5r19 Universidad Privada de Pucallpa'),
(23121, 'https://ror.org/01jc1nc57', 'es', 1, 'https://ror.org/01jc1nc57 Corporación Universitaria del Huila'),
(23122, 'https://ror.org/01h62a972', 'es', 1, 'https://ror.org/01h62a972 Corporación Universitaria de Ciencia y Desarrollo'),
(23123, 'https://ror.org/01gah9v52', 'pt', 1, 'https://ror.org/01gah9v52 Centro UniversitƔrio de Patos de Minas'),
(23124, 'https://ror.org/03kqcyw85', 'es', 1, 'https://ror.org/03kqcyw85 Universidad Nacional del Altiplano'),
(23125, 'https://ror.org/050j0b044', 'es', 1, 'https://ror.org/050j0b044 Universidad Privada Cumbre'),
(23126, 'https://ror.org/0025p3069', 'es', 1, 'https://ror.org/0025p3069 Corporación Universitaria de Colombia Ideas'),
(23127, 'https://ror.org/00z6nh165', 'es', 1, 'https://ror.org/00z6nh165 Universidad Privada San Carlos'),
(23128, 'https://ror.org/01sm8xv65', 'es', 1, 'https://ror.org/01sm8xv65 Universidad Tecnológica Privada de Santa Cruz'),
(23129, 'https://ror.org/04dfr7a85', 'en', 1, 'https://ror.org/04dfr7a85 Universidad de Pamplona University of Pamplona'),
(23130, 'https://ror.org/004nyzb81', 'es', 1, 'https://ror.org/004nyzb81 Universidad Privada de Santa Cruz de la Sierra'),
(23131, 'https://ror.org/015rec412', 'es', 1, 'https://ror.org/015rec412 Corporación Universitaria Autónoma de Nariño'),
(23132, 'https://ror.org/015wdp703', 'en', 1, 'https://ror.org/015wdp703 Federico Villarreal National University Universidad Nacional Federico Villarreal'),
(23133, 'https://ror.org/04331z002', 'es', 1, 'https://ror.org/04331z002 Corporación Universitaria Iberoamericana'),
(23134, 'https://ror.org/03nfzc873', 'es', 1, 'https://ror.org/03nfzc873 Universidad Boliviana de InformƔtica'),
(23135, 'https://ror.org/0087jna26', 'en', 1, 'https://ror.org/0087jna26 Jorge Basadre Grohmann National University Universidad Nacional Jorge Basadre Grohmann'),
(23136, 'https://ror.org/029ccny38', 'es', 1, 'https://ror.org/029ccny38 Universidad Católica de Pereira'),
(23137, 'https://ror.org/027pwvz62', 'es', 1, 'https://ror.org/027pwvz62 Universidad Pedagógica Mariscal Sucre'),
(23138, 'https://ror.org/04eeanr22', 'es', 1, 'https://ror.org/04eeanr22 Universidad Unidad'),
(23139, 'https://ror.org/05ggcs531', 'en', 1, 'https://ror.org/05ggcs531 Catholic University of Trujillo Universidad Católica de Trujillo'),
(23140, 'https://ror.org/0087wh857', 'es', 1, 'https://ror.org/0087wh857 Institución Universitaria Colegio Mayor del Cauca'),
(23141, 'https://ror.org/055k73q58', 'es', 1, 'https://ror.org/055k73q58 Corporación Universitaria Autónoma del Cauca'),
(23142, 'https://ror.org/00qtapa42', 'pt', 1, 'https://ror.org/00qtapa42 Centro UniversitÔrio Barão de MauÔ'),
(23143, 'https://ror.org/03p7h8068', 'es', 1, 'https://ror.org/03p7h8068 Fundación Universitaria de PopayÔn'),
(23144, 'https://ror.org/05956p547', 'pt', 1, 'https://ror.org/05956p547 Centro UniversitƔrio Moura Lacerda'),
(23145, 'https://ror.org/04thy0g29', 'es', 1, 'https://ror.org/04thy0g29 Universitaria Agustiniana'),
(23146, 'https://ror.org/03wbarw78', 'es', 1, 'https://ror.org/03wbarw78 Universidad Nacional de Tumbes'),
(23147, 'https://ror.org/029z5ap77', 'es', 1, 'https://ror.org/029z5ap77 Corporación Universitaria Republicana'),
(23148, 'https://ror.org/05dyy5830', 'es', 1, 'https://ror.org/05dyy5830 Corporación Universitaria Unitec'),
(23149, 'https://ror.org/00p1j0r66', 'pt', 1, 'https://ror.org/00p1j0r66 ColƩgio Metodista Bennett'),
(23150, 'https://ror.org/01555fr96', 'pt', 1, 'https://ror.org/01555fr96 Centro UniversitƔrio Amparense'),
(23151, 'https://ror.org/02ab1bc46', 'en', 1, 'https://ror.org/02ab1bc46 University Center Augusto Motta'),
(23152, 'https://ror.org/04qtcz169', 'es', 1, 'https://ror.org/04qtcz169 Universitario Francisco de AsĆ­s'),
(23153, 'https://ror.org/02pzxyp49', 'es', 1, 'https://ror.org/02pzxyp49 Universidad Católica de Oriente'),
(23154, 'https://ror.org/05kpdq249', 'pt', 1, 'https://ror.org/05kpdq249 Centro UniversitƔrio Celso Lisboa'),
(23155, 'https://ror.org/032bg8m67', 'pt', 1, 'https://ror.org/032bg8m67 Centro UniversitƔrio da Cidade'),
(23156, 'https://ror.org/003wm4260', 'es', 1, 'https://ror.org/003wm4260 Universitario Crandon'),
(23157, 'https://ror.org/003ct7658', 'pt', 1, 'https://ror.org/003ct7658 Centro UniversitÔrio Católico Salesiano Auxilium'),
(23158, 'https://ror.org/02e0n1919', 'es', 1, 'https://ror.org/02e0n1919 Instituto Universitario Centro de Estudio y Diagnóstico de las Disgnacias del Uruguay'),
(23159, 'https://ror.org/02854zp38', 'pt', 1, 'https://ror.org/02854zp38 Centro Universitario Toledo'),
(23160, 'https://ror.org/01pn2rg09', 'pt', 1, 'https://ror.org/01pn2rg09 Universidade Castelo Branco'),
(23161, 'https://ror.org/04qxpma28', 'pt', 1, 'https://ror.org/04qxpma28 Centro UniversitƔrio de Araraquara'),
(23162, 'https://ror.org/01zw0xy27', 'es', 1, 'https://ror.org/01zw0xy27 Escuela de Cadetes de PolicĆ­a General Santander'),
(23163, 'https://ror.org/001fypf81', 'pt', 1, 'https://ror.org/001fypf81 Universidade Unigranrio'),
(23164, 'https://ror.org/019fhz939', 'es', 1, 'https://ror.org/019fhz939 Escuela Superior de Ciencias Empresariales'),
(23165, 'https://ror.org/00aq5m079', 'pt', 1, 'https://ror.org/00aq5m079 Centro Universitario de Araras Dr Edmunso Ulson'),
(23166, 'https://ror.org/00ct7kr02', 'es', 1, 'https://ror.org/00ct7kr02 Universidad Mariana'),
(23167, 'https://ror.org/02q3wgj37', 'es', 1, 'https://ror.org/02q3wgj37 Instituto Barraquer de AmƩrica'),
(23168, 'https://ror.org/04z7f4v54', 'pt', 1, 'https://ror.org/04z7f4v54 Centro UniversitƔrio Herminio Ometto de Araras'),
(23169, 'https://ror.org/03836f632', 'pt', 1, 'https://ror.org/03836f632 Centro UniversitƔrio do Planalto de AraxƔ'),
(23170, 'https://ror.org/009ytxb56', 'es', 1, 'https://ror.org/009ytxb56 Asociación Psicoanalítica del Uruguay'),
(23171, 'https://ror.org/056nq5k92', 'pt', 1, 'https://ror.org/056nq5k92 Universidade Presidente AntƓnio Carlos'),
(23172, 'https://ror.org/04kdk0s45', 'es', 1, 'https://ror.org/04kdk0s45 Corporación Universitaria Santa Rosa de Cabal'),
(23173, 'https://ror.org/02h5n6z77', 'en', 1, 'https://ror.org/02h5n6z77 Centro UniversitƔrio Jorge Amado Jorge Amado University Center'),
(23174, 'https://ror.org/03x53c263', 'es', 1, 'https://ror.org/03x53c263 Facultad de Teologƭa del Uruguay MonseƱor Mariano Soler'),
(23175, 'https://ror.org/04k1c4v44', 'pt', 1, 'https://ror.org/04k1c4v44 Centro UniversitƔrio de Barra Mansa'),
(23176, 'https://ror.org/019mnh256', 'es', 1, 'https://ror.org/019mnh256 Fundación Centro de Educación Superior Investigación y Profesionalización'),
(23177, 'https://ror.org/006zzfd13', 'pt', 1, 'https://ror.org/006zzfd13 Centro UniversitÔrio da Fundação Educacional de Barretos'),
(23178, 'https://ror.org/02yke5x89', 'es', 1, 'https://ror.org/02yke5x89 Universidad de la Empresa'),
(23179, 'https://ror.org/02604an77', 'es', 1, 'https://ror.org/02604an77 Escuela Colombiana de Rehabilitación'),
(23180, 'https://ror.org/05q37wj74', 'es', 1, 'https://ror.org/05q37wj74 Fundación Universitaria de San Gil'),
(23181, 'https://ror.org/00cvckk37', 'pt', 1, 'https://ror.org/00cvckk37 Centro UniversitƔrio Claretiano'),
(23182, 'https://ror.org/051xvqh87', 'es', 1, 'https://ror.org/051xvqh87 Católica del Norte Fundación Universitaria'),
(23183, 'https://ror.org/012835d77', 'pt', 1, 'https://ror.org/012835d77 Centro UniversitƔrio do ParƔ'),
(23184, 'https://ror.org/003vxvw45', 'pt', 1, 'https://ror.org/003vxvw45 Universidade da AmazƓnia'),
(23185, 'https://ror.org/02b2yz332', 'es', 1, 'https://ror.org/02b2yz332 Universidad Nororiental Privada Gran Mariscal de Ayacucho'),
(23186, 'https://ror.org/03mnvhz29', 'es', 1, 'https://ror.org/03mnvhz29 Universidad Nacional Experimental PolitƩcnica "Antonio JosƩ de Sucre"'),
(23187, 'https://ror.org/028fpac96', 'es', 1, 'https://ror.org/028fpac96 Fundación Interamericana Técnica'),
(23188, 'https://ror.org/01afz2176', 'pt', 1, 'https://ror.org/01afz2176 Universidade Salvador'),
(23189, 'https://ror.org/01zstgj41', 'es', 1, 'https://ror.org/01zstgj41 Universidad Nacional Experimental Rafael MarĆ­a Baralt'),
(23190, 'https://ror.org/03ba09a49', 'es', 1, 'https://ror.org/03ba09a49 Fundación Tecnológica Autónoma de BogotÔ'),
(23191, 'https://ror.org/017snsh34', 'es', 1, 'https://ror.org/017snsh34 Institución Universitaria Latina');
INSERT INTO `rors` VALUES
(23192, 'https://ror.org/03whcj350', 'en', 1, 'https://ror.org/03whcj350 Universidad FermĆ­n Toro University FermĆ­n Toro'),
(23193, 'https://ror.org/00ffq6216', 'en', 1, 'https://ror.org/00ffq6216 Central University of Valle del Cauca Unidad Central del Valle del Cauca'),
(23194, 'https://ror.org/03et5bx91', 'es', 1, 'https://ror.org/03et5bx91 Fundación Universitaria Juan de Castellanos'),
(23195, 'https://ror.org/01x2szn70', 'es', 1, 'https://ror.org/01x2szn70 Universidad Cervantina'),
(23196, 'https://ror.org/00amt5186', 'pt', 1, 'https://ror.org/00amt5186 Centro UniversitƔrio Lusƭada'),
(23197, 'https://ror.org/01hb6tn62', 'es', 1, 'https://ror.org/01hb6tn62 Fundación Universitaria del Área Andina'),
(23198, 'https://ror.org/01n4hzf84', 'pt', 1, 'https://ror.org/01n4hzf84 Uniabeu Centro UniversitƔrio'),
(23199, 'https://ror.org/03ye93e96', 'pt', 1, 'https://ror.org/03ye93e96 Centro UniversitÔrio Monte Serrat São Judas Campus Unimonte'),
(23200, 'https://ror.org/055kzt142', 'es', 1, 'https://ror.org/055kzt142 Fundación Universitaria Internacional del Tropico Américano'),
(23201, 'https://ror.org/030vkw561', 'es', 1, 'https://ror.org/030vkw561 Universidad Alejandro de Humboldt'),
(23202, 'https://ror.org/035mpnm25', 'pt', 1, 'https://ror.org/035mpnm25 Universidade Metropolitana de Santos'),
(23203, 'https://ror.org/00vfxd102', 'pt', 1, 'https://ror.org/00vfxd102 Instituto Metodista Izabela Hendrix'),
(23204, 'https://ror.org/02rrha849', 'pt', 1, 'https://ror.org/02rrha849 Universidade Santa CecĆ­lia'),
(23205, 'https://ror.org/013pajk64', 'pt', 1, 'https://ror.org/013pajk64 FUMEC University Universidade Fundação Mineira de Educação e Cultura'),
(23206, 'https://ror.org/01em71b57', 'es', 1, 'https://ror.org/01em71b57 Universidad Católica Santa Rosa'),
(23207, 'https://ror.org/01crvtj80', 'pt', 1, 'https://ror.org/01crvtj80 Instituto MauĆ” de Tecnologia'),
(23208, 'https://ror.org/02zkjb195', 'es', 1, 'https://ror.org/02zkjb195 Universidad JosƩ Marƭa Vargas'),
(23209, 'https://ror.org/00h547294', 'pt', 1, 'https://ror.org/00h547294 Centro UniversitƔrio Euroamericano'),
(23210, 'https://ror.org/046np5693', 'en', 1, 'https://ror.org/046np5693 Metropolitan University Universidad Metropolitana'),
(23211, 'https://ror.org/05pm0vd24', 'es', 1, 'https://ror.org/05pm0vd24 Fundación Universitaria Los Libertadores University Foundation Los Libertadores'),
(23212, 'https://ror.org/017qtn133', 'es', 1, 'https://ror.org/017qtn133 Universidad MonteƔvila'),
(23213, 'https://ror.org/02gz76y84', 'es', 1, 'https://ror.org/02gz76y84 Universidad Nacional Abierta'),
(23214, 'https://ror.org/031h0qv85', 'es', 1, 'https://ror.org/031h0qv85 Universidad Nacional Experimental de las Artes'),
(23215, 'https://ror.org/02bb0ey42', 'es', 1, 'https://ror.org/02bb0ey42 Universidad Nueva Esparta'),
(23216, 'https://ror.org/0570zmv60', 'es', 1, 'https://ror.org/0570zmv60 Universidad TƩcnica de Babahoyo'),
(23217, 'https://ror.org/05avmn224', 'es', 1, 'https://ror.org/05avmn224 Fundación Universitaria San Alfonso'),
(23218, 'https://ror.org/010ps5r85', 'en', 1, 'https://ror.org/010ps5r85 Fundación Universitaria San Martín Saint Martin University'),
(23219, 'https://ror.org/051kdrm61', 'es', 1, 'https://ror.org/051kdrm61 Universidad Santa MarĆ­a'),
(23220, 'https://ror.org/03mvpvm42', 'en', 1, 'https://ror.org/03mvpvm42 Center Technological University Universidad Tecnológica del Centro'),
(23221, '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'),
(23222, 'https://ror.org/0568p5w10', 'pt', 1, 'https://ror.org/0568p5w10 Centro UniversitƔrio Central Paulista'),
(23223, 'https://ror.org/0305nje64', 'pt', 1, 'https://ror.org/0305nje64 Universidade Salgado de Oliveira'),
(23224, 'https://ror.org/049r7sn84', 'es', 1, 'https://ror.org/049r7sn84 Universidad Rafael Belloso ChacĆ­n'),
(23225, 'https://ror.org/031j8q670', 'en', 1, 'https://ror.org/031j8q670 Rafael Urdaneta University Universidad Rafael Urdaneta'),
(23226, 'https://ror.org/04f6dd023', 'pt', 1, 'https://ror.org/04f6dd023 Centro UniversitÔrio Municipal de São José'),
(23227, 'https://ror.org/05cqge031', 'es', 1, 'https://ror.org/05cqge031 Universidad Católica del TÔchira'),
(23228, 'https://ror.org/00fr68j09', 'es', 1, 'https://ror.org/00fr68j09 Universidad Nacional Experimental del TƔchira'),
(23229, 'https://ror.org/05f2jr081', 'pt', 1, 'https://ror.org/05f2jr081 Centro UniversitƔrio de Rio Preto'),
(23230, 'https://ror.org/04f6sbc78', 'pt', 1, 'https://ror.org/04f6sbc78 Centro Universitario Fluminense'),
(23231, 'https://ror.org/005cgg117', 'es', 1, 'https://ror.org/005cgg117 Universidad Estatal de BolĆ­var'),
(23232, 'https://ror.org/03g8egf97', 'pt', 1, 'https://ror.org/03g8egf97 Centro UniversitƔrio do Norte Paulista'),
(23233, 'https://ror.org/04kbsj707', 'es', 1, 'https://ror.org/04kbsj707 Escuela Tecnológica Instituto Técnico Central'),
(23234, 'https://ror.org/01dzqrq04', 'pt', 1, 'https://ror.org/01dzqrq04 Universidade La Salle'),
(23235, 'https://ror.org/00n7m6g17', 'es', 1, 'https://ror.org/00n7m6g17 Institución Universitaria Politecnico Grancolombiano Politécnico Grancolombiano'),
(23236, 'https://ror.org/00hbwk525', 'en', 1, 'https://ror.org/00hbwk525 Anhanguera-Uniderp University Universidade Anhanguera Uniderp'),
(23237, 'https://ror.org/02np1f094', 'es', 1, 'https://ror.org/02np1f094 Unión Americana de Educación Superior'),
(23238, 'https://ror.org/0576s0350', 'es', 1, 'https://ror.org/0576s0350 Universidad Autónoma de Colombia'),
(23239, 'https://ror.org/011bd9v54', 'es', 1, 'https://ror.org/011bd9v54 Universidad Casa Grande'),
(23240, 'https://ror.org/01scwqh06', 'en', 1, 'https://ror.org/01scwqh06 Catholic University of Colombia Universidad Católica de Colombia'),
(23241, 'https://ror.org/01mdm1v36', 'en', 1, 'https://ror.org/01mdm1v36 Central University Universidad Central'),
(23242, 'https://ror.org/055mabf46', 'es', 1, 'https://ror.org/055mabf46 Universidad Colegio Mayor de Cundinamarca'),
(23243, 'https://ror.org/047kyg834', 'en', 1, 'https://ror.org/047kyg834 Universidad de Guayaquil University of Guayaquil'),
(23244, 'https://ror.org/0474gxy81', 'en', 1, 'https://ror.org/0474gxy81 Universidad de La Salle (BogotĆ”) University of La Salle'),
(23245, 'https://ror.org/00vtwt580', 'pt', 1, 'https://ror.org/00vtwt580 Centro UniversitÔrio Adventista de São Paulo'),
(23246, 'https://ror.org/009fkxv41', 'en', 1, 'https://ror.org/009fkxv41 Arturo Michelena University Universidad Arturo Michelena'),
(23247, 'https://ror.org/000xmhb57', 'es', 1, 'https://ror.org/000xmhb57 Universidad Incca de Colombia'),
(23248, 'https://ror.org/03d6w0229', 'es', 1, 'https://ror.org/03d6w0229 Universidad JosƩ Antonio PƔez'),
(23249, 'https://ror.org/01r5afm23', 'en', 1, 'https://ror.org/01r5afm23 La Gran Colombia University Universidad La Gran Colombia'),
(23250, 'https://ror.org/02hm6zw53', 'pt', 1, 'https://ror.org/02hm6zw53 Centro UniversitÔrio Belas Artes de São Paulo'),
(23251, 'https://ror.org/03yzht074', 'es', 1, 'https://ror.org/03yzht074 Universidad Valle del Momboy'),
(23252, 'https://ror.org/04bjr9m61', 'es', 1, 'https://ror.org/04bjr9m61 Manuela BeltrƔn University Universidad Manuela BeltrƔn'),
(23253, 'https://ror.org/040tkk892', 'es', 1, 'https://ror.org/040tkk892 Universidad Nacional Experimental MarĆ­tima del Caribe'),
(23254, 'https://ror.org/01w37vv29', 'pt', 1, 'https://ror.org/01w37vv29 Centro UniversitƔrio Capital'),
(23255, 'https://ror.org/038bgqv50', 'es', 1, 'https://ror.org/038bgqv50 Universidad Laica Vicente Rocafuerte de Guayaquil'),
(23256, 'https://ror.org/02sqp5835', 'es', 1, 'https://ror.org/02sqp5835 Universidad de los Hemisferios'),
(23257, 'https://ror.org/03c1bg807', 'pt', 1, 'https://ror.org/03c1bg807 Centro UniversitƔrio de Votuporanga'),
(23258, 'https://ror.org/03ykx6g33', 'pt', 1, 'https://ror.org/03ykx6g33 Centro Universitario FIAM FAAM'),
(23259, 'https://ror.org/02ckere89', 'en', 1, 'https://ror.org/02ckere89 Sergio Arboleda University Universidad Sergio Arboleda'),
(23260, 'https://ror.org/0046y6b22', 'pt', 1, 'https://ror.org/0046y6b22 Centro UniversitĆ”rio ƍtalo Brasileiro'),
(23261, 'https://ror.org/038j0b276', 'es', 1, 'https://ror.org/038j0b276 Universidad Adventista de Chile'),
(23262, 'https://ror.org/00eg5dk50', 'es', 1, 'https://ror.org/00eg5dk50 Universidad Del PacĆ­fico Ecuador'),
(23263, 'https://ror.org/02bnw0f54', 'es', 1, 'https://ror.org/02bnw0f54 Universidad de Investigación y Desarrollo Universitaria de Investigación y Desarrollo'),
(23264, 'https://ror.org/04gq65788', 'pt', 1, 'https://ror.org/04gq65788 Centro UniversitƔrio Paulistano'),
(23265, 'https://ror.org/01z675j45', 'es', 1, 'https://ror.org/01z675j45 Unidades Tecnológicas de Santander'),
(23266, 'https://ror.org/016967s24', 'es', 1, 'https://ror.org/016967s24 Instituto Profesional Valle Central'),
(23267, 'https://ror.org/05pnzjf85', 'es', 1, 'https://ror.org/05pnzjf85 Universidad Estatal del Sur de Manabi'),
(23268, 'https://ror.org/02ed69v98', 'es', 1, 'https://ror.org/02ed69v98 Instituto Profesional Diego Portales'),
(23269, 'https://ror.org/04553p226', 'es', 1, 'https://ror.org/04553p226 Instituto TƩcnico Agrƭcola'),
(23270, 'https://ror.org/00hysm292', 'pt', 1, 'https://ror.org/00hysm292 Centro UniversitĆ”rio Sant’Anna'),
(23271, 'https://ror.org/00aa17k52', 'es', 1, 'https://ror.org/00aa17k52 Instituto Profesional Ipg'),
(23272, 'https://ror.org/015hsqv25', 'es', 1, 'https://ror.org/015hsqv25 Corporación Escuela Superior de Administración y Estudios Tecnológicos'),
(23273, 'https://ror.org/03a5x6z77', 'es', 1, 'https://ror.org/03a5x6z77 Universidad Nacional de Loja'),
(23274, 'https://ror.org/04p83bg23', 'es', 1, 'https://ror.org/04p83bg23 Instituto Profesional Libertador de Los Andes'),
(23275, 'https://ror.org/04031z735', 'pt', 1, 'https://ror.org/04031z735 Universidade Brasil'),
(23276, 'https://ror.org/05p8sx023', 'es', 1, 'https://ror.org/05p8sx023 Corporación Universitaria Centro Superior'),
(23277, 'https://ror.org/00ttbwp87', 'pt', 1, 'https://ror.org/00ttbwp87 Universidade SĆ£o Judas Tadeu'),
(23278, 'https://ror.org/021zm0v94', 'es', 1, 'https://ror.org/021zm0v94 Instituto Profesional Agrario Adolfo Matthei'),
(23279, 'https://ror.org/02sfdnr59', 'pt', 1, 'https://ror.org/02sfdnr59 Universidade SĆ£o Marcos'),
(23280, 'https://ror.org/04azbjd07', 'pt', 1, 'https://ror.org/04azbjd07 Centro UniversitƔrio de Sete Lagoas'),
(23281, 'https://ror.org/038ddjp72', 'en', 1, 'https://ror.org/038ddjp72 State University of Vale do AcaraĆŗ Universidade Estadual Vale do AcaraĆŗ'),
(23282, 'https://ror.org/0139vf833', 'es', 1, 'https://ror.org/0139vf833 Universidad San Gregorio de Portoviejo'),
(23283, 'https://ror.org/028380v12', 'es', 1, 'https://ror.org/028380v12 Fundación Academia de Dibujo Profesional'),
(23284, 'https://ror.org/02qgahb88', 'es', 1, 'https://ror.org/02qgahb88 Universidad TƩcnica de Manabƭ'),
(23285, 'https://ror.org/030v7ct83', 'es', 1, 'https://ror.org/030v7ct83 Institución Universitaria Antonio José Camacho'),
(23286, 'https://ror.org/03rjhfb18', 'es', 1, 'https://ror.org/03rjhfb18 Universidad de Aconcagua'),
(23287, 'https://ror.org/02b4apg34', 'es', 1, 'https://ror.org/02b4apg34 Escuela PolitƩcnica Javeriana del Ecuador'),
(23288, 'https://ror.org/03rdgye13', 'pt', 1, 'https://ror.org/03rdgye13 Centro UniversitƔrio do Sul de Minas'),
(23289, 'https://ror.org/00dxj9a45', 'es', 1, 'https://ror.org/00dxj9a45 Universidad Santiago de Cali'),
(23290, 'https://ror.org/00emh4n53', 'es', 1, 'https://ror.org/00emh4n53 Instituto Profesional AlemƔn Wilhelm von Humboldt'),
(23291, 'https://ror.org/02ech7z91', 'es', 1, 'https://ror.org/02ech7z91 Corporación Universitaria Rafael Nuñez'),
(23292, 'https://ror.org/031pdhx80', 'es', 1, 'https://ror.org/031pdhx80 Escuela Superior Politécnica Ecológica Amazónica'),
(23293, 'https://ror.org/00rpjcd45', 'pt', 1, 'https://ror.org/00rpjcd45 Centro UniversitƔrio de VƔrzea Grande'),
(23294, 'https://ror.org/04yrw8521', 'es', 1, 'https://ror.org/04yrw8521 Instituto Profesional Carlos Casanueva'),
(23295, 'https://ror.org/04msd0t92', 'es', 1, 'https://ror.org/04msd0t92 Universidad PolitƩcnica Estatal del Carchi'),
(23296, 'https://ror.org/037h6n733', 'es', 1, 'https://ror.org/037h6n733 Corporación Universitaria Regional del Caribe'),
(23297, 'https://ror.org/029zzvq50', 'es', 1, 'https://ror.org/029zzvq50 Universidad Israel'),
(23298, 'https://ror.org/0498fb204', 'es', 1, 'https://ror.org/0498fb204 Instituto Nacional de Educación Superior Dr. Raúl Peña'),
(23299, 'https://ror.org/02f6q5s54', 'es', 1, 'https://ror.org/02f6q5s54 Universidad Americana'),
(23300, 'https://ror.org/007t9h129', 'en', 1, 'https://ror.org/007t9h129 Universidade de Vassouras University of Vassouras'),
(23301, 'https://ror.org/04yexcn51', 'no_lang_code', 1, 'https://ror.org/04yexcn51 Ghana Institute of Management and Public Administration'),
(23302, 'https://ror.org/04dvk9y30', 'es', 1, 'https://ror.org/04dvk9y30 Universidad Autónoma de Asunción'),
(23303, 'https://ror.org/03x653m21', 'es', 1, 'https://ror.org/03x653m21 Universidad Autónoma del Paraguay'),
(23304, 'https://ror.org/043e0fg15', 'en', 1, 'https://ror.org/043e0fg15 Chartered Institute of Marketing Ghana'),
(23305, 'https://ror.org/04r8gaf17', 'pt', 1, 'https://ror.org/04r8gaf17 Universidade Vila Velha'),
(23306, 'https://ror.org/05a9sj961', 'en', 1, 'https://ror.org/05a9sj961 Methodist University College Ghana'),
(23307, 'https://ror.org/04jst1j84', 'es', 1, 'https://ror.org/04jst1j84 Universidad Columbia del Paraguay'),
(23308, 'https://ror.org/00t7chh67', 'fr', 1, 'https://ror.org/00t7chh67 Institut Facultaire des Sciences de l''Information et de la Communication'),
(23309, 'https://ror.org/0285v1m71', 'es', 1, 'https://ror.org/0285v1m71 Universidad Comunera'),
(23310, 'https://ror.org/05xrwp171', 'pt', 1, 'https://ror.org/05xrwp171 Centro UniversitƔrio Geraldo Di Biase'),
(23311, 'https://ror.org/02tgqv590', 'en', 1, 'https://ror.org/02tgqv590 Regent University College of Science and Technology'),
(23312, 'https://ror.org/05r9r2h28', 'es', 1, 'https://ror.org/05r9r2h28 Universidad de la Integración de las Américas'),
(23313, 'https://ror.org/03791dn70', 'en', 1, 'https://ror.org/03791dn70 Regional Maritime University'),
(23314, 'https://ror.org/01jthvx19', 'en', 1, 'https://ror.org/01jthvx19 University College of Management Studies'),
(23315, 'https://ror.org/01h8yp048', 'es', 1, 'https://ror.org/01h8yp048 Universidad del Cono Sur de las AmƩricas'),
(23316, 'https://ror.org/03xe86v46', 'en', 1, 'https://ror.org/03xe86v46 Wisconsin International University College'),
(23317, 'https://ror.org/03jjrt588', 'en', 1, 'https://ror.org/03jjrt588 Zenith University College'),
(23318, 'https://ror.org/02rbr5948', 'no_lang_code', 1, 'https://ror.org/02rbr5948 Ghana Christian University College'),
(23319, 'https://ror.org/05x21v161', 'fr', 1, 'https://ror.org/05x21v161 Institut SupĆ©rieur d’Informatique, Programmation et Analyse'),
(23320, 'https://ror.org/0482ajw49', 'en', 1, 'https://ror.org/0482ajw49 Ghana Baptist University College'),
(23321, 'https://ror.org/04cat5h68', 'fr', 1, 'https://ror.org/04cat5h68 Institut des Hautes Ɖtudes de Management Institute for Advanced Studies in Management'),
(23322, 'https://ror.org/045rztm55', 'en', 1, 'https://ror.org/045rztm55 University of Sierra Leone'),
(23323, 'https://ror.org/05ncmk960', 'fr', 1, 'https://ror.org/05ncmk960 Institut National d''AmƩnagement et d''Urbanisme'),
(23324, 'https://ror.org/02g8ke585', 'fr', 1, 'https://ror.org/02g8ke585 Institut National de Statistique et d''Economie AppliquĆ©e المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ لل؄حصاؔ ŁˆŲ§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŲ§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠ'),
(23325, 'https://ror.org/0398jd975', 'en', 1, 'https://ror.org/0398jd975 IMM Graduate School of Marketing'),
(23326, 'https://ror.org/03mcm6a50', 'fr', 1, 'https://ror.org/03mcm6a50 Institut SupƩrieur de Statistiques de Kinshasa'),
(23327, 'https://ror.org/03gca2v38', 'en', 1, 'https://ror.org/03gca2v38 Production Management Institute of Southern Africa'),
(23328, 'https://ror.org/0502vxg14', 'en', 1, 'https://ror.org/0502vxg14 Catholic University College of Ghana'),
(23329, 'https://ror.org/03gqwjw57', 'en', 1, 'https://ror.org/03gqwjw57 Damelin'),
(23330, 'https://ror.org/056jc8s48', 'en', 1, 'https://ror.org/056jc8s48 Regent Business School'),
(23331, 'https://ror.org/03f5kyb42', 'en', 1, 'https://ror.org/03f5kyb42 Greenside Design Center College of Design'),
(23332, 'https://ror.org/00v13f844', 'fr', 1, 'https://ror.org/00v13f844 Institut SupĆ©rieur d’Art Dramatique et d’Animation Culturelle'),
(23333, 'https://ror.org/005bfja03', 'en', 1, 'https://ror.org/005bfja03 Regenesys Business School'),
(23334, 'https://ror.org/05awwc719', 'fr', 1, 'https://ror.org/05awwc719 Institut SupƩrieur de l''Information et de la Communication'),
(23335, 'https://ror.org/013p21z46', 'fr', 1, 'https://ror.org/013p21z46 Institut supĆ©rieur de la Magistrature المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للقضاؔ'),
(23336, 'https://ror.org/03mxhve08', 'fr', 1, 'https://ror.org/03mxhve08 Institut SupƩrieur PƩdagogique Technique'),
(23337, 'https://ror.org/0400yw722', 'en', 1, 'https://ror.org/0400yw722 South African College of Applied Psychology'),
(23338, 'https://ror.org/0170ffh34', 'fr', 1, 'https://ror.org/0170ffh34 Institut SupƩrieur du GƩnie AppliquƩ'),
(23339, 'https://ror.org/0160m7k04', 'fr', 1, 'https://ror.org/0160m7k04 Institut SupƩrieur de Technique MƩdicale'),
(23340, 'https://ror.org/02b2fgs53', 'en', 1, 'https://ror.org/02b2fgs53 St Augustine College of South Africa'),
(23341, 'https://ror.org/049ta3d96', 'en', 1, 'https://ror.org/049ta3d96 Institute For Leadership And Communication Studies'),
(23342, 'https://ror.org/04xbsst68', 'fr', 1, 'https://ror.org/04xbsst68 Higher National Agronomic School Ɖcole Nationale SupĆ©rieure Agronomique لمدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للفلاحة'),
(23343, 'https://ror.org/042y9a646', 'en', 1, 'https://ror.org/042y9a646 International Institute for Higher Education in Morocco'),
(23344, 'https://ror.org/01agq7t95', 'en', 1, 'https://ror.org/01agq7t95 Open Window School of Visual Communication'),
(23345, 'https://ror.org/00qfxgm20', 'es', 1, 'https://ror.org/00qfxgm20 Universidad Real'),
(23346, 'https://ror.org/02pbyff74', 'fr', 1, 'https://ror.org/02pbyff74 Institut Royal de Formation des Cadres de la Jeunesse et des Sports المعهد Ų§Ł„Ł…Ł„ŁƒŁŠ Ł„ŲŖŁƒŁˆŁŠŁ† Ų£Ų·Ų± Ų§Ł„Ų“ŲØŁŠŲØŲ© و Ų§Ł„Ų±ŁŠŲ§Ų¶Ų©'),
(23347, 'https://ror.org/05hsgxf19', 'en', 1, 'https://ror.org/05hsgxf19 Milpark Education'),
(23348, 'https://ror.org/04dj1dn66', 'fr', 1, 'https://ror.org/04dj1dn66 Ɖcole Nationale SupĆ©rieure d''Informatique المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ لل؄علام Ų§Ł„Ų£Ł„ŁŠ'),
(23349, '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'),
(23350, 'https://ror.org/024yaae06', 'fr', 1, 'https://ror.org/024yaae06 UniversitƩ Catholique du Congo'),
(23351, 'https://ror.org/03q1ded50', 'en', 1, 'https://ror.org/03q1ded50 Midrand Graduate Institute'),
(23352, 'https://ror.org/00zxsnd45', 'en', 1, 'https://ror.org/00zxsnd45 Cranefield College'),
(23353, 'https://ror.org/02nm3nh05', 'fr', 1, 'https://ror.org/02nm3nh05 Ɖcole des Hautes Ɖtudes Commerciales Techniques et Informatiques'),
(23354, 'https://ror.org/02rjekw63', 'fr', 1, 'https://ror.org/02rjekw63 Institut SupĆ©rieur des Sciences de l''Ɖducation de GuinĆ©e'),
(23355, 'https://ror.org/02g9gg448', 'fr', 1, 'https://ror.org/02g9gg448 Ɖcole Nationale de Management et de l''Administration de la SantĆ©'),
(23356, 'https://ror.org/01svbr712', 'fr', 1, 'https://ror.org/01svbr712 UniversitƩ GƩnƩral Lansana ContƩ'),
(23357, 'https://ror.org/03yj8bt58', 'fr', 1, 'https://ror.org/03yj8bt58 Ɖcole Nationale de Commerce et de Gestion de Tanger المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للتجارة ŁˆŲ§Ł„ŲŖŲ³ŁŠŁŠŲ± بطنجة'),
(23358, 'https://ror.org/008v08256', 'fr', 1, 'https://ror.org/008v08256 UniversitƩ de Cepromad'),
(23359, 'https://ror.org/01517we84', 'fr', 1, 'https://ror.org/01517we84 Institut SupĆ©rieur International du Tourisme de Tanger المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠ Ł„Ł„Ų³ŁŠŲ§Ų­Ų©'),
(23360, 'https://ror.org/025tvnr06', 'en', 1, 'https://ror.org/025tvnr06 National School of Built and Ground Works Engineering'),
(23361, 'https://ror.org/01wnxx236', 'en', 1, 'https://ror.org/01wnxx236 Blue Nile University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„ الأزرق'),
(23362, 'https://ror.org/04pry7b16', 'fr', 1, 'https://ror.org/04pry7b16 Ɖcole Normale SupĆ©rieure de TĆ©touan'),
(23363, 'https://ror.org/03ea76440', 'fr', 1, 'https://ror.org/03ea76440 UniversitƩ Libre de Kinshasa'),
(23364, 'https://ror.org/0432yv872', 'fr', 1, 'https://ror.org/0432yv872 UniversitƩ PƩdagogique Nationale'),
(23365, 'https://ror.org/0117q7625', 'fr', 1, 'https://ror.org/0117q7625 Protestant University in Congo UniversitƩ Protestante au Congo'),
(23366, 'https://ror.org/02jk75847', 'en', 1, 'https://ror.org/02jk75847 Higher National Veterinary School المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„ŲØŁŠŲ·Ų±Ų©'),
(23367, 'https://ror.org/03hfh6394', 'pt', 1, 'https://ror.org/03hfh6394 Instituto Superior Cristão'),
(23368, 'https://ror.org/02657e607', 'pt', 1, 'https://ror.org/02657e607 Instituto Superior de CiĆŖncias e Tecnologia Alberto Chipande'),
(23369, 'https://ror.org/05y7edy46', 'no_lang_code', 1, 'https://ror.org/05y7edy46 West Kordofan University Ų¬Ų§Ł…Ų¹Ų© ŲŗŲ±ŲØ ŁƒŲ±ŲÆŁŲ§Ł†'),
(23370, 'https://ror.org/02azgvq37', 'pt', 1, 'https://ror.org/02azgvq37 Universidade Zambeze'),
(23371, 'https://ror.org/054ky9h60', 'en', 1, 'https://ror.org/054ky9h60 Bel Campus Technological University UniversitƩ Technologique Bel Campus'),
(23372, 'https://ror.org/02hy1ey22', 'fr', 1, 'https://ror.org/02hy1ey22 Ɖcole Polytechnique d''Architecture et d''Urbanisme'),
(23373, 'https://ror.org/03j6adw74', 'en', 1, 'https://ror.org/03j6adw74 Gadarif University Ų¬Ų§Ł…Ų¹Ų© القضارف'),
(23374, 'https://ror.org/03ws9cb65', 'fr', 1, 'https://ror.org/03ws9cb65 Ɖcole SupĆ©rieure AlgĆ©rienne des Affaires'),
(23375, 'https://ror.org/03ydszt61', 'fr', 1, 'https://ror.org/03ydszt61 Ɖcole SupĆ©rieure de Banque المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للمصرفة'),
(23376, 'https://ror.org/02ayk5126', 'no_lang_code', 1, 'https://ror.org/02ayk5126 Dalanj University Ų¬Ų§Ł…Ų¹Ų© الدلنج'),
(23377, 'https://ror.org/018v0f754', 'fr', 1, 'https://ror.org/018v0f754 Ɖcole SupĆ©rieure de la Magistrature المدرســـــة Ų§Ł„Ų¹Ł„ŁŠŁ€Ł€Ł€Ł€Ł€Ų§ للقضــــاؔ'),
(23378, 'https://ror.org/0040db356', 'en', 1, 'https://ror.org/0040db356 Al Fashir University Ų¬Ų§Ł…Ų¹Ų© الفاؓر'),
(23379, 'https://ror.org/03pkpht31', 'fr', 1, 'https://ror.org/03pkpht31 Institut SupƩrieur de Commerce de Kinshasa'),
(23380, 'https://ror.org/04fd5vj08', 'pt', 1, 'https://ror.org/04fd5vj08 Instituto Superior PolitƩcnico de Manica'),
(23381, 'https://ror.org/02cxvat25', 'en', 1, 'https://ror.org/02cxvat25 University of Bakhtalruda Ų¬Ų§Ł…Ų¹Ų© ŲØŲ®ŲŖ الرضا'),
(23382, 'https://ror.org/00hw53j55', 'pt', 1, 'https://ror.org/00hw53j55 Escola Superior de Jornalismo'),
(23383, 'https://ror.org/00cepgz04', 'en', 1, 'https://ror.org/00cepgz04 National Higher School of Statistics and Applied Economy المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للاحصاؔ و الاقتصاد Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠ الجزائر'),
(23384, 'https://ror.org/00p4jn321', 'en', 1, 'https://ror.org/00p4jn321 Sudan International University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(23385, 'https://ror.org/02n4khb55', 'en', 1, 'https://ror.org/02n4khb55 Open University of Sudan Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(23386, 'https://ror.org/04n6hyy67', 'pt', 1, 'https://ror.org/04n6hyy67 Instituto Superior de Artes e Cultura'),
(23387, '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 المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŲØŲ±ŁŠŲÆ ŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ŲŖ ال؄علام ŁˆŲ§Ł„Ų§ŲŖŲµŲ§Ł„'),
(23388, 'https://ror.org/04dqppw26', 'pt', 1, 'https://ror.org/04dqppw26 Instituto Superior de Ciencias de Saude'),
(23389, 'https://ror.org/02y7rg150', 'pt', 1, 'https://ror.org/02y7rg150 Instituto Superior de Ciências e Tecnologia de Moçambique'),
(23390, 'https://ror.org/029jt9a82', 'en', 1, 'https://ror.org/029jt9a82 International University of Africa Ų¬Ų§Ł…Ų¹Ų© Ų„ŁŲ±ŁŠŁ‚ŁŠŲ§ Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(23391, 'https://ror.org/00dx9f181', 'pt', 1, 'https://ror.org/00dx9f181 Instituto Superior de Comunicação e Imagem de Moçambique'),
(23392, 'https://ror.org/048aa3w78', 'fr', 1, 'https://ror.org/048aa3w78 Institut SupƩrieur Agronomique et VƩtƩrinaire ValƩry Giscard d''Estaing'),
(23393, 'https://ror.org/038cq1h45', 'en', 1, 'https://ror.org/038cq1h45 Khartoum International Institute for Arabic Languague معهد Ų§Ł„Ų®Ų±Ų·ŁˆŁ… Ų§Ł„ŲÆŁˆŁ„ŁŠ للغة Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(23394, 'https://ror.org/01hhbtp58', 'en', 1, 'https://ror.org/01hhbtp58 Julius Nyerere University of Kankan UniversitƩ Julius Nyerere de Kankan'),
(23395, 'https://ror.org/01j7x7d84', 'no_lang_code', 1, 'https://ror.org/01j7x7d84 Alzaiem Alazhari University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ų¹ŁŠŁ… Ų§Ł„Ų£Ų²Ł‡Ų±ŁŠ'),
(23396, 'https://ror.org/01b0sca09', 'en', 1, 'https://ror.org/01b0sca09 University of El Imam El Mahdi Ų¬Ų§Ł…Ų¹Ų© الامام Ų§Ł„Ł…Ł‡ŲÆŁŠ'),
(23397, 'https://ror.org/02k7y2v57', 'fr', 1, 'https://ror.org/02k7y2v57 UniversitƩ Protestante de Lubumbashi'),
(23398, 'https://ror.org/03275xe23', 'en', 1, 'https://ror.org/03275xe23 University of Nyala Ų¬Ų§Ł…Ų¹Ų© Ł†ŁŠŲ§Ł„Ų§'),
(23399, 'https://ror.org/00vww8g40', 'fr', 1, 'https://ror.org/00vww8g40 Centre Universitaire de LabƩ'),
(23400, 'https://ror.org/03h1y5m90', 'fr', 1, 'https://ror.org/03h1y5m90 Institut SupƩrieur de Statistique de Lubumbashi'),
(23401, 'https://ror.org/01g5skz36', 'en', 1, 'https://ror.org/01g5skz36 Ahfad University for Women Ų¬Ų§Ł…Ų¹Ų© الأحفاد للبنات'),
(23402, 'https://ror.org/01hjdgr63', 'pt', 1, 'https://ror.org/01hjdgr63 Instituto Superior de Transportes e ComunicaƧƵe'),
(23403, 'https://ror.org/02dveg925', 'en', 1, 'https://ror.org/02dveg925 University of Boumerdes Ų¬Ų§Ł…Ų¹Ų© Ų§Ł…Ų­Ł…ŲÆ بوڤرة ŲØŁˆŁ…Ų±ŲÆŲ§Ų³'),
(23404, 'https://ror.org/04egxam60', 'fr', 1, 'https://ror.org/04egxam60 Institut Universitaire du Congo'),
(23405, 'https://ror.org/0239tnv53', 'no_lang_code', 1, 'https://ror.org/0239tnv53 Omdurman Ahlia University Ų¬Ų§Ł…Ų¹Ų© أم درمان Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(23406, 'https://ror.org/025qja684', 'en', 1, 'https://ror.org/025qja684 Omdurman Islamic University Ų¬Ų§Ł…Ų¹Ų© أم درمان Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(23407, 'https://ror.org/02z5k4q74', 'fr', 1, 'https://ror.org/02z5k4q74 UniversitƩ Libre de Luozi'),
(23408, 'https://ror.org/04k46b490', 'en', 1, 'https://ror.org/04k46b490 Red Sea University Ų¬Ų§Ł…Ų¹Ų© البحر الأحمر'),
(23409, 'https://ror.org/03xz4j444', 'fr', 1, 'https://ror.org/03xz4j444 Ɖcole Normale SupĆ©rieure de Constantine'),
(23410, 'https://ror.org/03rqy4d08', 'en', 1, 'https://ror.org/03rqy4d08 Emir Abdelkader University of Islamic Sciences Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± Ų¹ŲØŲÆ القادر'),
(23411, 'https://ror.org/000jvv118', 'en', 1, 'https://ror.org/000jvv118 Ziane Achour University of Djelfa Ų¬Ų§Ł…Ų¹Ų© Ų²ŁŠŲ§Ł† عاؓور-الجلفة'),
(23412, 'https://ror.org/00vyjaz76', 'pt', 1, 'https://ror.org/00vyjaz76 Universidade Jean Piaget de MoƧambique'),
(23413, 'https://ror.org/04j9dfg85', 'en', 1, 'https://ror.org/04j9dfg85 Kongo University UniversitƩ Kongo'),
(23414, 'https://ror.org/042x9qq51', 'en', 1, 'https://ror.org/042x9qq51 University of Zalingei Ų¬Ų§Ł…Ų¹Ų© Ų²Ų§Ł„Ł†Ų¬ŁŠ'),
(23415, 'https://ror.org/02e2ve941', 'en', 1, 'https://ror.org/02e2ve941 Mount Meru University'),
(23416, 'https://ror.org/020wq5714', 'en', 1, 'https://ror.org/020wq5714 Chuo Kikuu cha Arusha University of Arusha'),
(23417, 'https://ror.org/00fp42952', 'en', 1, 'https://ror.org/00fp42952 University of Mbuji Mayi'),
(23418, 'https://ror.org/0331kj160', 'en', 1, 'https://ror.org/0331kj160 Pedagogical University Universidade Pedagógica'),
(23419, 'https://ror.org/044ce3082', 'pt', 1, 'https://ror.org/044ce3082 Universidade São TomÔs de Moçambique'),
(23420, 'https://ror.org/041f1nz98', 'pt', 1, 'https://ror.org/041f1nz98 Universidade TƩcnica de MoƧambique'),
(23421, 'https://ror.org/01vy3hr18', 'en', 1, 'https://ror.org/01vy3hr18 Chuo Kikuu cha Kumbukumbu cha Hubert Kairuki Hubert Kairuki Memorial University'),
(23422, 'https://ror.org/02hh51f62', 'en', 1, 'https://ror.org/02hh51f62 International Medical and Technological University'),
(23423, 'https://ror.org/05n2gzs35', 'fr', 1, 'https://ror.org/05n2gzs35 UniversitĆ© Djilali Bounaama Khemis Miliana Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ„Ų§Ł„ŁŠ ŲØŁˆŁ†Ų¹Ų§Ł…Ų© Ų®Ł…ŁŠŲ³ Ł…Ł„ŁŠŲ§Ł†Ų©'),
(23424, 'https://ror.org/02jmk1h66', 'en', 1, 'https://ror.org/02jmk1h66 Chuo Kikuu cha Mtakatifu Yohana Tanzania St. John''s University of Tanzania'),
(23425, 'https://ror.org/0338q3942', 'en', 1, 'https://ror.org/0338q3942 Akhbar El Yom Academy Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ų®ŲØŲ§Ų± Ų§Ł„ŁŠŁˆŁ…'),
(23426, 'https://ror.org/01c8vqx53', 'pt', 1, 'https://ror.org/01c8vqx53 Instituto Superior PolitƩcnico de Songo'),
(23427, 'https://ror.org/05tv80m53', 'pt', 1, 'https://ror.org/05tv80m53 Instituto Superior Politecnico de Tete'),
(23428, 'https://ror.org/02t055680', 'en', 1, 'https://ror.org/02t055680 Ahram Canadian University Ų¬Ų§Ł…Ų¹Ų© الأهرام Ų§Ł„ŁƒŁ†ŲÆŁŠŲ©'),
(23429, 'https://ror.org/025xjs150', 'en', 1, 'https://ror.org/025xjs150 El Shorouk Academy'),
(23430, 'https://ror.org/02qrvdj69', 'en', 1, 'https://ror.org/02qrvdj69 Chuo Kikuu cha Mzumbe Mzumbe University'),
(23431, 'https://ror.org/03aam4v69', 'pt', 1, 'https://ror.org/03aam4v69 Universidade Colinas de BoƩ'),
(23432, 'https://ror.org/00e2rng16', 'en', 1, 'https://ror.org/00e2rng16 University of Eastern Africa, Baraton'),
(23433, 'https://ror.org/026pfmg90', 'fr', 1, 'https://ror.org/026pfmg90 Ɖcole Africaine de la MĆ©tĆ©orologie et de l''Aviation Civile'),
(23434, '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'),
(23435, 'https://ror.org/04tcyer40', 'en', 1, 'https://ror.org/04tcyer40 High Institute for Management Sciences المعهد العالى Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ© ŲØŲ§Ł„Ł‚Ų·Ų§Ł…ŁŠŲ©'),
(23436, 'https://ror.org/00aze9982', 'en', 1, 'https://ror.org/00aze9982 St. Paul''s University'),
(23437, 'https://ror.org/05sd11n59', 'fr', 1, 'https://ror.org/05sd11n59 Ɖcole Nationale d''Administration et de Magistrature'),
(23438, 'https://ror.org/03kn6cb12', 'en', 1, 'https://ror.org/03kn6cb12 October High Institute For Enginnering and Technology معهد أكتوبر Ų§Ł„Ų¹Ų§Ł„ŁŠ للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(23439, 'https://ror.org/02e2yc259', 'en', 1, 'https://ror.org/02e2yc259 University Yahia Fares of Medea Ų¬Ų§Ł…Ų¹Ų© يحي فارس ŲØŲ§Ł„Ł…ŲÆŁŠŲ©'),
(23440, 'https://ror.org/033tvp994', 'en', 1, 'https://ror.org/033tvp994 Kenya Methodist University'),
(23441, 'https://ror.org/00htzc939', 'en', 1, 'https://ror.org/00htzc939 Crescent University'),
(23442, 'https://ror.org/05twfp995', 'en', 1, 'https://ror.org/05twfp995 Africa Nazarene University'),
(23443, 'https://ror.org/001pma463', 'en', 1, 'https://ror.org/001pma463 University of Kara UniversitƩ de Kara'),
(23444, 'https://ror.org/00jjtmm83', 'en', 1, 'https://ror.org/00jjtmm83 Kiriri Women''s University of Science and Technology'),
(23445, 'https://ror.org/05rcqrz41', 'en', 1, 'https://ror.org/05rcqrz41 African Institute of Science and Technology'),
(23446, 'https://ror.org/02xyh0e61', 'fr', 1, 'https://ror.org/02xyh0e61 Ɖcole Africaine des MĆ©tiers de l''Architecture et de l''Urbanisme'),
(23447, 'https://ror.org/00v11es25', 'fr', 1, 'https://ror.org/00v11es25 Ɖcole Nationale d''Administration'),
(23448, 'https://ror.org/03p823x35', 'en', 1, 'https://ror.org/03p823x35 Caritas University'),
(23449, 'https://ror.org/05qj64q37', 'en', 1, 'https://ror.org/05qj64q37 United States International University Africa'),
(23450, 'https://ror.org/02nbj1r55', 'fr', 1, 'https://ror.org/02nbj1r55 UniversitƩ des Sciences et de la Technologie d''Oran Mohamed Boudiaf'),
(23451, 'https://ror.org/01zw9zg68', 'no_lang_code', 1, 'https://ror.org/01zw9zg68 African Methodist Episcopal University'),
(23452, 'https://ror.org/058qd2v11', 'en', 1, 'https://ror.org/058qd2v11 Auchi Polytechnic'),
(23453, 'https://ror.org/05589zr38', 'en', 1, 'https://ror.org/05589zr38 Cuttington University'),
(23454, 'https://ror.org/01a203m72', 'en', 1, 'https://ror.org/01a203m72 Benson Idahosa University'),
(23455, 'https://ror.org/000g0zm60', 'en', 1, 'https://ror.org/000g0zm60 University of Jendouba UniversitĆ© de jendouba Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł†ŲÆŁˆŲØŲ©'),
(23456, 'https://ror.org/041rwsw06', 'en', 1, 'https://ror.org/041rwsw06 Igbinedion University'),
(23457, 'https://ror.org/02nwh8244', 'no_lang_code', 1, 'https://ror.org/02nwh8244 Federal Polytechnic Nekede'),
(23458, 'https://ror.org/05amrd548', 'en', 1, 'https://ror.org/05amrd548 University of Ouargla Ų¬Ų§Ł…Ų¹Ų© Ł‚Ų§ŲµŲÆŁŠ Ł…Ų±ŲØŲ§Ų­'),
(23459, 'https://ror.org/050swxx85', 'en', 1, 'https://ror.org/050swxx85 Plateau State University'),
(23460, 'https://ror.org/024mpte60', 'en', 1, 'https://ror.org/024mpte60 University of Kairouan UniversitĆ© de kairouan Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚ŁŠŲ±ŁˆŲ§Ł†'),
(23461, 'https://ror.org/005ywxj74', 'en', 1, 'https://ror.org/005ywxj74 Yobe State University'),
(23462, 'https://ror.org/02571vj15', 'no_lang_code', 1, 'https://ror.org/02571vj15 University of Skikda UniversitƩ of 20 aoƻt 1955 of Skikda'),
(23463, 'https://ror.org/04ntynb59', 'en', 1, 'https://ror.org/04ntynb59 Enugu State University of Science and Technology'),
(23464, 'https://ror.org/05f93c840', 'en', 1, 'https://ror.org/05f93c840 International Academy for Engineering and Media Science Ų§Ł„Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© للهندسة ŁˆŲ¹Ł„ŁˆŁ… الاعلام'),
(23465, 'https://ror.org/020w9wy05', 'en', 1, 'https://ror.org/020w9wy05 Renaissance University'),
(23466, 'https://ror.org/052vng007', 'en', 1, 'https://ror.org/052vng007 University of Mkar'),
(23467, 'https://ror.org/00rxcsz93', 'fr', 1, 'https://ror.org/00rxcsz93 UniversitƩ PrivƩe du Sud'),
(23468, 'https://ror.org/03k6gj822', 'en', 1, 'https://ror.org/03k6gj822 Ajayi Crowther University'),
(23469, 'https://ror.org/043z5qa52', 'en', 1, 'https://ror.org/043z5qa52 Lead City University'),
(23470, 'https://ror.org/02acc9e56', 'fr', 1, 'https://ror.org/02acc9e56 Institut des Hautes Ɖtudes de Tunis Institute of Advanced Studies of Tunis'),
(23471, 'https://ror.org/03y2yf271', 'fr', 1, 'https://ror.org/03y2yf271 Time UniversitƩ'),
(23472, 'https://ror.org/00tnac320', 'fr', 1, 'https://ror.org/00tnac320 UniversitƩ Larbi TƩbessi'),
(23473, 'https://ror.org/038ajm817', 'fr', 1, 'https://ror.org/038ajm817 UniversitƩ Arabe des Sciences'),
(23474, 'https://ror.org/02j07fr50', 'fr', 1, 'https://ror.org/02j07fr50 UniversitĆ© Centrale de Tunis الجامعة Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠŲ© الخاصة'),
(23475, 'https://ror.org/01v0we819', 'en', 1, 'https://ror.org/01v0we819 Redeemer''s University'),
(23476, 'https://ror.org/04t9p4363', 'en', 1, 'https://ror.org/04t9p4363 Joseph Ayo Babalola University'),
(23477, 'https://ror.org/01fv8ny24', 'fr', 1, 'https://ror.org/01fv8ny24 Ɖcole SupĆ©rieure des Ɖtudes Administratives et Commerciales'),
(23478, 'https://ror.org/04sh4pf16', 'pt', 1, 'https://ror.org/04sh4pf16 Instituto Superior de Ciencias Sociais e RelaƧƵes Internacionais'),
(23479, 'https://ror.org/04m1ha467', 'en', 1, 'https://ror.org/04m1ha467 Sebha University Ų¬Ų§Ł…Ų¹Ų© سبها'),
(23480, 'https://ror.org/0057ag334', 'pt', 1, 'https://ror.org/0057ag334 Agostinho Neto University Universidade Agostinho Neto'),
(23481, 'https://ror.org/0547s4559', 'en', 1, 'https://ror.org/0547s4559 Catholic University of Angola Universidade Católica de Angola'),
(23482, 'https://ror.org/04sk00116', 'en', 1, 'https://ror.org/04sk00116 Higher Knowledge Institute of Languages ​​and Translation'),
(23483, 'https://ror.org/04ebnqc56', 'en', 1, 'https://ror.org/04ebnqc56 Egyptian Institute of Alexandria Academy for Administration & Accounting المعهد Ų§Ł„Ł…ŲµŲ±ŁŠ Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ© لل؄دارة ŁˆŲ§Ł„Ł…Ų­Ų§Ų³ŲØŲ©'),
(23484, 'https://ror.org/01g03yb06', 'pt', 1, 'https://ror.org/01g03yb06 Universidade Gregório Semedo'),
(23485, 'https://ror.org/02ghs4671', 'pt', 1, 'https://ror.org/02ghs4671 Universidade Independente de Angola'),
(23486, 'https://ror.org/02y4de895', 'en', 1, 'https://ror.org/02y4de895 Methodist University of Angola Universidade Metodista de Angola'),
(23487, 'https://ror.org/01sh4dd92', 'pt', 1, 'https://ror.org/01sh4dd92 Universidade Ɠscar Ribas'),
(23488, 'https://ror.org/000848h33', 'fr', 1, 'https://ror.org/000848h33 Hautes Ɖtudes ChrĆ©tiennes de Management et de MathĆ©matiques AppliquĆ©es'),
(23489, 'https://ror.org/00g7skf89', 'en', 1, 'https://ror.org/00g7skf89 Private University of Angola Universidade Privada de Angola'),
(23490, 'https://ror.org/01gnc7759', 'en', 1, 'https://ror.org/01gnc7759 Technical University of Angola Universidade TƩcnica de Angola'),
(23491, 'https://ror.org/01vwap211', 'fr', 1, 'https://ror.org/01vwap211 Institut National des Sciences Comptables et de l’Administration d’Entreprises'),
(23492, 'https://ror.org/01erhpg17', 'en', 1, 'https://ror.org/01erhpg17 Catholic University of Madagascar Oniversite Katolika eto Madagasikara UniversitƩ Catholique de Madagascar'),
(23493, 'https://ror.org/001v8xr05', 'fr', 1, 'https://ror.org/001v8xr05 Institut SupƩrieur de la Communication, des Affaires et du Management'),
(23494, 'https://ror.org/00pd4qq98', 'fr', 1, 'https://ror.org/00pd4qq98 UniversitĆ© d’Antsiranana'),
(23495, 'https://ror.org/00hhvp820', 'fr', 1, 'https://ror.org/00hhvp820 UniversitƩ de Mahajanga'),
(23496, 'https://ror.org/03vr42a56', 'en', 1, 'https://ror.org/03vr42a56 Oniversite Toamasina University of Toamasina UniversitƩ de Toamasina'),
(23497, 'https://ror.org/02ar7jm50', 'en', 1, 'https://ror.org/02ar7jm50 Kwara State Polytechnic'),
(23498, 'https://ror.org/03a0zrg31', 'fr', 1, 'https://ror.org/03a0zrg31 UniversitĆ© Internationale de Tunis الجامعة Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„ŲŖŁˆŁ†Ų³'),
(23499, 'https://ror.org/03y5bfq47', 'en', 1, 'https://ror.org/03y5bfq47 Health International Private University'),
(23500, 'https://ror.org/033xhzd30', 'en', 1, 'https://ror.org/033xhzd30 Tunisia Private University UniversitƩ libre de tunis'),
(23501, 'https://ror.org/03smwm886', 'en', 1, 'https://ror.org/03smwm886 Higher Institute for Tourism, Hotels and Computer المعهد العالى Ł„Ł„Ų³ŁŠŲ§Ų­Ų© ŁˆŲ§Ł„ŁŁ†Ų§ŲÆŁ‚ ŁˆŲ§Ł„Ų­Ų§Ų³ŲØ الآلى - Ų§Ł„Ų³ŁŠŁˆŁ / Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(23502, 'https://ror.org/05cdryb21', 'fr', 1, 'https://ror.org/05cdryb21 UniversitƩ Montplaisir Tunis'),
(23503, 'https://ror.org/04cgmbd24', 'en', 1, 'https://ror.org/04cgmbd24 Pharos University in Alexandria Ų¬Ų§Ł…Ų¹Ų© فاروس ŲØŲ§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(23504, 'https://ror.org/033vzfc66', 'fr', 1, 'https://ror.org/033vzfc66 Ɖcole Normale SupĆ©rieure de Nouakchott'),
(23505, 'https://ror.org/03spqk736', 'fr', 1, 'https://ror.org/03spqk736 Haute Ɖcole de Commerce et de Management'),
(23506, 'https://ror.org/00f3apt60', 'en', 1, 'https://ror.org/00f3apt60 Kaduna Polytechnic'),
(23507, 'https://ror.org/0063tkv49', 'en', 1, 'https://ror.org/0063tkv49 Kaduna State University'),
(23508, 'https://ror.org/03pys9888', 'en', 1, 'https://ror.org/03pys9888 High-Tech Rabat-Agdal'),
(23509, 'https://ror.org/02fyv5292', 'en', 1, 'https://ror.org/02fyv5292 Mediterranean School of Business المدرسة Ų§Ł„Ł…ŲŖŁˆŲ³Ų·ŁŠŲ© للأعمال'),
(23510, 'https://ror.org/01g37t325', 'fr', 1, 'https://ror.org/01g37t325 UniversitĆ© Ibn Khaldoun Ų¬Ų§Ł…Ų¹Ų© ؄بن Ų®Ł„ŲÆŁˆŁ† الخاصّة'),
(23511, 'https://ror.org/05gwcqj56', 'en', 1, 'https://ror.org/05gwcqj56 Umaru Musa Yar''adua University'),
(23512, 'https://ror.org/01cw3ja29', 'en', 1, 'https://ror.org/01cw3ja29 Higher Institute of Social Service'),
(23513, 'https://ror.org/0105bda30', 'en', 1, 'https://ror.org/0105bda30 Virtual University of Tunis Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³ Ų§Ł„Ų§ŁŲŖŲ±Ų§Ų¶ŁŠŲ©'),
(23514, 'https://ror.org/009tveq15', 'en', 1, 'https://ror.org/009tveq15 National Open University of Nigeria'),
(23515, 'https://ror.org/02tythz78', 'en', 1, 'https://ror.org/02tythz78 Pan-Atlantic University'),
(23516, 'https://ror.org/03s5r1026', 'en', 1, 'https://ror.org/03s5r1026 Mountains of the Moon University'),
(23517, 'https://ror.org/05chrxg27', 'en', 1, 'https://ror.org/05chrxg27 Ibrahim Badamasi Babangida University'),
(23518, 'https://ror.org/05s29c959', 'en', 1, 'https://ror.org/05s29c959 Nahda University Ų¬Ų§Ł…Ų¹Ų© النهضة'),
(23519, 'https://ror.org/05397ce75', 'en', 1, 'https://ror.org/05397ce75 Busoga University'),
(23520, 'https://ror.org/02fgfjw51', 'en', 1, 'https://ror.org/02fgfjw51 Mauritius Institute of Education'),
(23521, 'https://ror.org/056e30g48', 'en', 1, 'https://ror.org/056e30g48 Salem University'),
(23522, 'https://ror.org/02trpe492', 'en', 1, 'https://ror.org/02trpe492 Bugema University'),
(23523, 'https://ror.org/031ra7072', 'fr', 1, 'https://ror.org/031ra7072 Universiapolis - UniversitƩ Internationale d''Agadir'),
(23524, 'https://ror.org/0568y3j03', 'en', 1, 'https://ror.org/0568y3j03 Federal University of Technology Minna'),
(23525, 'https://ror.org/01t11nq62', 'en', 1, 'https://ror.org/01t11nq62 Adamawa State University'),
(23526, 'https://ror.org/03jfsyd35', 'en', 1, 'https://ror.org/03jfsyd35 Clarke International University'),
(23527, 'https://ror.org/014khff20', 'en', 1, 'https://ror.org/014khff20 Kampala University'),
(23528, 'https://ror.org/04dbvvk55', 'en', 1, 'https://ror.org/04dbvvk55 Bingham University'),
(23529, 'https://ror.org/05pvbk494', 'en', 1, 'https://ror.org/05pvbk494 Western Delta University'),
(23530, 'https://ror.org/05yh37w40', 'en', 1, 'https://ror.org/05yh37w40 Uganda Management Institute'),
(23531, 'https://ror.org/00zqfkn54', 'en', 1, 'https://ror.org/00zqfkn54 Wesley University'),
(23532, 'https://ror.org/052mp5r63', 'fr', 1, 'https://ror.org/052mp5r63 Pigier BƩnin'),
(23533, 'https://ror.org/00ah3j950', 'en', 1, 'https://ror.org/00ah3j950 Fountain University'),
(23534, 'https://ror.org/00xb81q67', 'fr', 1, 'https://ror.org/00xb81q67 Ɖcole SupĆ©rieure de Gestion'),
(23535, '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 Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ł…Ų­Ł…ŲÆ السادس Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„Ų·ŁŠŲ±Ų§Ł† Ų§Ł„Ł…ŲÆŁ†ŁŠ'),
(23536, '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'),
(23537, 'https://ror.org/009drq556', 'en', 1, 'https://ror.org/009drq556 Bells University of Technology'),
(23538, 'https://ror.org/02vmcxs72', 'no_lang_code', 1, 'https://ror.org/02vmcxs72 Mulungushi University'),
(23539, 'https://ror.org/000bkwn04', 'fr', 1, 'https://ror.org/000bkwn04 UniversitƩ Protestante d''Afrique de l''Ouest'),
(23540, 'https://ror.org/050850526', 'en', 1, 'https://ror.org/050850526 Michael Okpara University of Agriculture'),
(23541, 'https://ror.org/02045bf64', 'en', 1, 'https://ror.org/02045bf64 Tansian University'),
(23542, 'https://ror.org/03fgtjr33', 'en', 1, 'https://ror.org/03fgtjr33 Copperbelt University'),
(23543, 'https://ror.org/037bdd431', 'en', 1, 'https://ror.org/037bdd431 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(23544, 'https://ror.org/002z77y34', 'en', 1, 'https://ror.org/002z77y34 Copperstone University'),
(23545, 'https://ror.org/008t11f85', 'fr', 1, 'https://ror.org/008t11f85 UniversitƩ Ouaga II'),
(23546, 'https://ror.org/02fjyx055', 'fr', 1, 'https://ror.org/02fjyx055 Institut SupƩrieur de Gestion des Entreprises'),
(23547, 'https://ror.org/05g3wdh84', 'en', 1, 'https://ror.org/05g3wdh84 Akwa Ibom State University'),
(23548, 'https://ror.org/01p81kj40', 'fr', 1, 'https://ror.org/01p81kj40 UniversitƩ des Grands Lacs'),
(23549, 'https://ror.org/03nmehh68', 'fr', 1, 'https://ror.org/03nmehh68 UniversitƩ du Lac Tanganyika'),
(23550, 'https://ror.org/02w4pz848', 'en', 1, 'https://ror.org/02w4pz848 Light University of Bujumbur Université lLumière de Bujumbura'),
(23551, 'https://ror.org/01z6f4063', 'en', 1, 'https://ror.org/01z6f4063 DMI St. Eugene University'),
(23552, 'https://ror.org/036m3h813', 'en', 1, 'https://ror.org/036m3h813 University of Ngozi UniversitƩ de Ngozi'),
(23553, 'https://ror.org/05wt6nv93', 'en', 1, 'https://ror.org/05wt6nv93 University College of Technology'),
(23554, 'https://ror.org/045rvh172', 'en', 1, 'https://ror.org/045rvh172 Cairo Higher Institute'),
(23555, 'https://ror.org/057943037', 'no_lang_code', 1, 'https://ror.org/057943037 National Institute of Public Administration'),
(23556, 'https://ror.org/04xrk2k91', 'en', 1, 'https://ror.org/04xrk2k91 University of Africa'),
(23557, 'https://ror.org/00603mc70', 'no_lang_code', 1, 'https://ror.org/00603mc70 University of Lusaka'),
(23558, 'https://ror.org/02j0dnv45', 'en', 1, 'https://ror.org/02j0dnv45 Zambia Centre for Accountancy Studies'),
(23559, 'https://ror.org/029me2q51', 'en', 1, 'https://ror.org/029me2q51 Egyptian Russian University الجامعة Ų§Ł„Ų±ŁˆŲ³ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(23560, 'https://ror.org/05srxwy94', 'en', 1, 'https://ror.org/05srxwy94 Higher Institute of Applied Arts المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„ŁŁ†ŁˆŁ† Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(23561, 'https://ror.org/00vz50m28', 'en', 1, 'https://ror.org/00vz50m28 Zambian Open University'),
(23562, 'https://ror.org/04nsmrq40', 'en', 1, 'https://ror.org/04nsmrq40 Kwararafa University'),
(23563, 'https://ror.org/0522zyy65', 'no_lang_code', 1, 'https://ror.org/0522zyy65 Rusangu University'),
(23564, 'https://ror.org/026vdme11', 'en', 1, 'https://ror.org/026vdme11 Higher Institute for Cooperative and Administrative Studies'),
(23565, 'https://ror.org/03pwcr767', 'en', 1, 'https://ror.org/03pwcr767 Niger Delta University'),
(23566, 'https://ror.org/03vgyhc77', 'en', 1, 'https://ror.org/03vgyhc77 Northrise University'),
(23567, 'https://ror.org/02kv8bx48', 'en', 1, 'https://ror.org/02kv8bx48 American University of Nigeria'),
(23568, 'https://ror.org/00d1mmk36', 'en', 1, 'https://ror.org/00d1mmk36 High Institute of Management and Entrepreneurship Institut de Management et de l'' Entrepreunariat'),
(23569, 'https://ror.org/04f9bf414', 'en', 1, 'https://ror.org/04f9bf414 Niger State Polytechnic'),
(23570, 'https://ror.org/047353127', 'fr', 1, 'https://ror.org/047353127 Institut SupƩrieur PƩdagogique de Gitwe'),
(23571, 'https://ror.org/02fwenk18', 'en', 1, 'https://ror.org/02fwenk18 Thebes Academy Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų·ŁŠŲØŁ‡'),
(23572, 'https://ror.org/03e7f5c12', 'fr', 1, 'https://ror.org/03e7f5c12 Institut Universitaire de la CƓte'),
(23573, 'https://ror.org/05cqf3m25', 'en', 1, 'https://ror.org/05cqf3m25 Adventist University Cosendai UniversitƩ Adventiste Cosendai'),
(23574, 'https://ror.org/028th4269', 'fr', 1, 'https://ror.org/028th4269 Ɖcole des Hautes Ɖtudes de Biotechnologie et de SantĆ©'),
(23575, 'https://ror.org/02hx2nv16', 'fr', 1, 'https://ror.org/02hx2nv16 Ɖcole des Hautes Ɖtudes en IngĆ©nierie des SystĆØmes d''Information'),
(23576, 'https://ror.org/02exeb428', 'en', 1, 'https://ror.org/02exeb428 Modern Academy'),
(23577, 'https://ror.org/05g82f642', 'en', 1, 'https://ror.org/05g82f642 National Telecommunications Institute المعهد Ų§Ł„Ł‚ŁˆŁ…Ł‰ للاتصالات'),
(23578, 'https://ror.org/035a99w03', 'fr', 1, 'https://ror.org/035a99w03 Ɖcole Nationale d''Administration et de Magistrature'),
(23579, 'https://ror.org/04scnnc07', 'en', 1, 'https://ror.org/04scnnc07 Sadat Academy for Management Sciences Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© السادات Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ©'),
(23580, 'https://ror.org/05c2yb215', 'fr', 1, 'https://ror.org/05c2yb215 Ɖcole des Hautes Ɖtudes Ɖconomiques et Commerciales'),
(23581, 'https://ror.org/01dd13a92', 'en', 1, 'https://ror.org/01dd13a92 Sinai University Ų¬Ų§Ł…Ų¹Ų© Ų³ŁŠŁ†Ų§Ų”'),
(23582, 'https://ror.org/01w1jmq84', 'fr', 1, 'https://ror.org/01w1jmq84 Ɖcole Normale SupĆ©rieure - Marrakech'),
(23583, 'https://ror.org/05eq5hq62', 'en', 1, 'https://ror.org/05eq5hq62 Tabbin Institute for Metallurgical Studies معهد Ų§Ł„ŲŖŲØŁŠŁ† للدراسات Ų§Ł„Ł…Ų¹ŲÆŁ†ŁŠŲ©'),
(23584, 'https://ror.org/03njp5837', 'fr', 1, 'https://ror.org/03njp5837 Ɖcole Royale de l''Air de Marrakech المدرسة Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ų§Ł„Ų¬ŁˆŁŠŲ©'),
(23585, 'https://ror.org/001msrs66', 'fr', 1, 'https://ror.org/001msrs66 Institut Panafricain pour le DƩveloppement Afrique Centrale'),
(23586, 'https://ror.org/02n0het18', 'en', 1, 'https://ror.org/02n0het18 Adventist University of Central Africa Universite Adventiste d''Afrique Central'),
(23587, 'https://ror.org/04g124k93', 'fr', 1, 'https://ror.org/04g124k93 Ɖcole SupĆ©rieure d''Informatique AppliquĆ©e Ć  la Gestion'),
(23588, 'https://ror.org/03ez88s78', 'fr', 1, 'https://ror.org/03ez88s78 Sup de Co Marrakech Ɖcole SupĆ©rieure de Commerce de Marrakech'),
(23589, 'https://ror.org/017wwgg26', 'en', 1, 'https://ror.org/017wwgg26 Kigali Independent University UniversitƩ libre de kigali'),
(23590, 'https://ror.org/01d1pbg09', 'fr', 1, 'https://ror.org/01d1pbg09 Ɖcole Marocaine des Sciences de l''IngĆ©nieur المدرسة Ų§Ł„Ł…ŲŗŲ±ŲØŁŠŲ© Ł„Ų¹Ł„ŁˆŁ… الهندسة'),
(23591, 'https://ror.org/0052qvr31', 'fr', 1, 'https://ror.org/0052qvr31 Ɖcole Normale SupĆ©rieure Casablanca'),
(23592, 'https://ror.org/03zkf9p37', 'fr', 1, 'https://ror.org/03zkf9p37 Ɖcole SupĆ©rieure de Management AppliquĆ©'),
(23593, 'https://ror.org/02pyw9g57', 'en', 1, 'https://ror.org/02pyw9g57 Higher Institute of Engineering المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للهندسة'),
(23594, 'https://ror.org/05p811391', 'en', 1, 'https://ror.org/05p811391 National Advanced School of Public Works Ɖcole Nationale SupĆ©rieure des Travaux Publics'),
(23595, 'https://ror.org/0480jab46', 'fr', 1, 'https://ror.org/0480jab46 Institut International des Assurances'),
(23596, 'https://ror.org/02rq1qj48', 'fr', 1, 'https://ror.org/02rq1qj48 Institut National de la Jeunesse et des Sports'),
(23597, 'https://ror.org/059dwew39', 'fr', 1, 'https://ror.org/059dwew39 Ɖcole SupĆ©rieure des Sciences de l''IngĆ©nierie Commerciale');
INSERT INTO `rors` VALUES
(23598, 'https://ror.org/04aen0982', 'fr', 1, 'https://ror.org/04aen0982 Centre Africain d''Ɖtudes SupĆ©rieures en Gestion'),
(23599, 'https://ror.org/02jwdjd44', 'fr', 1, 'https://ror.org/02jwdjd44 Institut Universitaire Siantou'),
(23600, 'https://ror.org/02ddjw503', 'en', 1, 'https://ror.org/02ddjw503 Academy of Arts Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„ŁŁ†ŁˆŁ†ā€Ž'),
(23601, 'https://ror.org/02v8m8m62', 'fr', 1, 'https://ror.org/02v8m8m62 Ɖcole Inter-Ɖtats des Sciences et MĆ©decine VĆ©tĆ©rinaires de Dakar'),
(23602, 'https://ror.org/03arr3t82', 'fr', 1, 'https://ror.org/03arr3t82 Institut Sous-RƩgional de Statistique et d''Economie AppliquƩe'),
(23603, 'https://ror.org/03x6w2s62', 'fr', 1, 'https://ror.org/03x6w2s62 UniversitƩ Protestante d''Afrique Centrale'),
(23604, 'https://ror.org/00x4mq261', 'fr', 1, 'https://ror.org/00x4mq261 Ɖcole Nationale d''Administration'),
(23605, 'https://ror.org/001fphc23', 'en', 1, 'https://ror.org/001fphc23 Universidade de Cabo Verde University of Cape Verde'),
(23606, 'https://ror.org/04arj7s97', 'fr', 1, 'https://ror.org/04arj7s97 Groupe Ɖcole SupĆ©rieure de Commerce de Dakar'),
(23607, 'https://ror.org/01nvnhx40', 'en', 1, 'https://ror.org/01nvnhx40 October University of Modern Sciences and Arts Ų¬Ų§Ł…Ų¹Ų© أكتوبر Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų­ŲÆŁŠŲ«Ų© ŁˆŲ§Ł„Ų¢ŲÆŲ§ŲØ'),
(23608, 'https://ror.org/035pp4j25', 'fr', 1, 'https://ror.org/035pp4j25 Ɖcole Normale SupĆ©rieure de l''Enseignement Technique de Mohammedia'),
(23609, 'https://ror.org/047vq0f11', 'fr', 1, 'https://ror.org/047vq0f11 UniversitƩ du Sahel'),
(23610, 'https://ror.org/004y9tt39', 'pt', 1, 'https://ror.org/004y9tt39 Instituto Superior de Ciências Económicas e Empresariais'),
(23611, 'https://ror.org/05m7smv12', 'en', 1, 'https://ror.org/05m7smv12 Egyptian Aviation Academy Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŁŠŲ±Ų§Ł†'),
(23612, 'https://ror.org/05pa24340', 'fr', 1, 'https://ror.org/05pa24340 Ɖcole Royale Navale'),
(23613, 'https://ror.org/03fgj8421', 'fr', 1, 'https://ror.org/03fgj8421 Ɖcole d''Architecture de Casablanca'),
(23614, 'https://ror.org/01gdk5c28', 'fr', 1, 'https://ror.org/01gdk5c28 Institut des Hautes Ɖtudes Bancaires et FinanciĆØres'),
(23615, 'https://ror.org/047e7td90', 'fr', 1, 'https://ror.org/047e7td90 Ɖcole SupĆ©rieure d''Informatique AppliquĆ©e'),
(23616, 'https://ror.org/016fjr533', 'fr', 1, 'https://ror.org/016fjr533 Université du Sine Saloum El-Hâdj Ibrahima NIASS'),
(23617, 'https://ror.org/01yt1q538', 'fr', 1, 'https://ror.org/01yt1q538 Institut International des Sciences et de Technologie'),
(23618, 'https://ror.org/0235m5777', 'fr', 1, 'https://ror.org/0235m5777 Ɖcole SupĆ©rieure de Communication et de PublicitĆ©'),
(23619, 'https://ror.org/0279yv972', 'en', 1, 'https://ror.org/0279yv972 Pharaohs Higher Institute of Computer Information Systems and Management معهد الفراعنة العالى للحاسب الألى ŁˆŁ†ŲøŁ… Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ ŁˆŲ§Ł„Ų„ŲÆŲ§Ų±Ų©'),
(23620, 'https://ror.org/01e7fkm87', 'fr', 1, 'https://ror.org/01e7fkm87 Ɖcole SupĆ©rieure de Design et des Arts Visuels'),
(23621, 'https://ror.org/01913dg57', 'fr', 1, 'https://ror.org/01913dg57 Ɖcole SupĆ©rieure Multinationale des TĆ©lĆ©communications'),
(23622, 'https://ror.org/023zc1f33', 'fr', 1, 'https://ror.org/023zc1f33 Ɖtablissement Dar El Hadith El Hassania Ł…Ų¤Ų³Ų³Ų© ŲÆŲ§Ų± Ų§Ł„Ų­ŲÆŁŠŲ« Ų§Ł„Ų­Ų³Ł†ŁŠŲ©'),
(23623, 'https://ror.org/00jb25p80', 'fr', 1, 'https://ror.org/00jb25p80 Ecole SupĆ©rieure d’Economie AppliquĆ©e'),
(23624, 'https://ror.org/04q8seb48', 'fr', 1, 'https://ror.org/04q8seb48 Ɖcole SupĆ©rieure de Management'),
(23625, 'https://ror.org/036gt0m92', 'en', 1, 'https://ror.org/036gt0m92 Jean Piaget University of Cape Verde Universidade Jean Piaget de Cabo Verde'),
(23626, 'https://ror.org/01ddvnr27', 'fr', 1, 'https://ror.org/01ddvnr27 Ɖcole SupĆ©rieure de Psychologie'),
(23627, 'https://ror.org/01jp0tk64', 'fr', 1, 'https://ror.org/01jp0tk64 Gaston Berger University UniversitƩ Gaston Berger'),
(23628, 'https://ror.org/00160a123', 'fr', 1, 'https://ror.org/00160a123 Ɖcole SupĆ©rieure des MultimĆ©dia, Informatique & RĆ©seaux'),
(23629, 'https://ror.org/04h86q851', 'fr', 1, 'https://ror.org/04h86q851 Ɖcole SupĆ©rieure Internationale de Gestion'),
(23630, 'https://ror.org/02kpg0b77', 'fr', 1, 'https://ror.org/02kpg0b77 Institut des Hautes Ɖtudes Bancaires, FinanciĆØres et ManagĆ©riale'),
(23631, 'https://ror.org/04wx25x02', 'fr', 1, 'https://ror.org/04wx25x02 Ɖcole des Sciences de I''information Ł…ŲÆŲ±Ų³Ų© Ų¹Ł„ŁˆŁ… Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ'),
(23632, 'https://ror.org/00m4aft17', 'fr', 1, 'https://ror.org/00m4aft17 UniversitƩ Adam Barka d''AbƩchƩ'),
(23633, 'https://ror.org/05e2hx460', 'fr', 1, 'https://ror.org/05e2hx460 Ɖcole Marocaine de Banque et de Commerce International'),
(23634, 'https://ror.org/02qn44j35', 'fr', 1, 'https://ror.org/02qn44j35 UniversitƩ de Moundou'),
(23635, 'https://ror.org/00cacz449', 'fr', 1, 'https://ror.org/00cacz449 Institut SupƩrieur d''Etudes Sociales'),
(23636, 'https://ror.org/03374t109', 'en', 1, 'https://ror.org/03374t109 Canadian International College Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁ†ŲÆŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(23637, 'https://ror.org/0158yx659', 'fr', 1, 'https://ror.org/0158yx659 Groupe Institut des Hautes Ɖtudes Ɖconomiques et Sociales'),
(23638, 'https://ror.org/01x7pha69', 'fr', 1, 'https://ror.org/01x7pha69 Institut Marocain de Management'),
(23639, 'https://ror.org/02ns7ka34', 'en', 1, 'https://ror.org/02ns7ka34 Arab Studies and Research Institute معهد Ų§Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(23640, 'https://ror.org/05t8m1733', 'en', 1, 'https://ror.org/05t8m1733 Social Work Institute in Cairo'),
(23641, 'https://ror.org/01whrhv58', 'fr', 1, 'https://ror.org/01whrhv58 Institut SupĆ©rieur d’Electronique et des RĆ©seaux & TĆ©lĆ©communications'),
(23642, 'https://ror.org/05cedyx57', 'fr', 1, 'https://ror.org/05cedyx57 Institut SupƩrieur de Commerce et d''Administration des Entreprises'),
(23643, 'https://ror.org/02z0zz187', 'fr', 1, 'https://ror.org/02z0zz187 Institut SupƩrieur de comptabilitƩ Audit et Finance'),
(23644, 'https://ror.org/00j6k1v44', 'fr', 1, 'https://ror.org/00j6k1v44 Institut SupƩrieur de Formation en Technologie Alimentaire'),
(23645, 'https://ror.org/05g9kje37', 'fr', 1, 'https://ror.org/05g9kje37 Institut SupƩrieur de Gestion'),
(23646, 'https://ror.org/00wx3ns38', 'fr', 1, 'https://ror.org/00wx3ns38 Institut SupĆ©rieur d''Ɖtudes Maritimes المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲØŲ­Ų±ŁŠŲ©'),
(23647, 'https://ror.org/03mexge56', 'fr', 1, 'https://ror.org/03mexge56 Ɖcole SupĆ©rieure d''Informatique et de Management des Affaires'),
(23648, 'https://ror.org/04700yz30', 'fr', 1, 'https://ror.org/04700yz30 UniversitƩ libre des Pays des Grands Lacs'),
(23649, 'https://ror.org/04y12vd76', 'fr', 1, 'https://ror.org/04y12vd76 Ɖcole Nationale SupĆ©rieure de l''Administration المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ لل؄دارة'),
(23650, 'https://ror.org/00n7n3773', 'en', 1, 'https://ror.org/00n7n3773 Ecole Nationale d''Architecture National School of Architecture المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للهندسة Ų§Ł„Ł…Ų¹Ł…Ų§Ų±ŁŠŲ©'),
(23651, 'https://ror.org/00ychtq28', 'fr', 1, 'https://ror.org/00ychtq28 Ɖcole des Hautes Ɖtudes Commerciales'),
(23652, 'https://ror.org/04j6ssn11', 'en', 1, 'https://ror.org/04j6ssn11 Sinai Higher Institute for Tourism and Hotels المعهد المصرى العالى Ł„Ł„Ų³ŁŠŲ§Ų­Ų© ŁˆŲ§Ł„ŁŁ†Ų§ŲÆŁ‚'),
(23653, 'https://ror.org/05pnejf26', 'fr', 1, 'https://ror.org/05pnejf26 Ɖcole Polyvalente SupĆ©rieure d''Informatique et d''Ɖlectronique'),
(23654, 'https://ror.org/03dt5t405', 'fr', 1, 'https://ror.org/03dt5t405 Ɖcole SupĆ©rieure d''Architecture d''IntĆ©rieur'),
(23655, 'https://ror.org/04r8t4c49', 'en', 1, 'https://ror.org/04r8t4c49 Sup Management سيب مناجمنت'),
(23656, 'https://ror.org/02xt59385', 'fr', 1, 'https://ror.org/02xt59385 Ɖcole SupĆ©rieure de Gestion et des Sciences de l''Informatique'),
(23657, 'https://ror.org/018vhc422', 'fr', 1, 'https://ror.org/018vhc422 Ɖcole SupĆ©rieure des TĆ©lĆ©communications'),
(23658, 'https://ror.org/00tt5kf04', 'en', 1, 'https://ror.org/00tt5kf04 Marien Ngouabi University UniversitƩ Marien Ngouabi'),
(23659, 'https://ror.org/019y83h24', 'fr', 1, 'https://ror.org/019y83h24 Ɖcole SupĆ©rieure Vinci'),
(23660, 'https://ror.org/0306pcd50', 'fr', 1, 'https://ror.org/0306pcd50 UniversitƩ EvangƩlique en Afrique'),
(23661, 'https://ror.org/02pad2v09', 'fr', 1, 'https://ror.org/02pad2v09 UniversitƩ Officielle de Bukavu'),
(23662, 'https://ror.org/04sd0cj41', 'fr', 1, 'https://ror.org/04sd0cj41 AcadƩmie des Beaux-Arts'),
(23663, 'https://ror.org/00wbbfv86', 'fr', 1, 'https://ror.org/00wbbfv86 UniversitƩ Catholique du Graben'),
(23664, 'https://ror.org/04s6jxt38', 'en', 1, 'https://ror.org/04s6jxt38 Sindh Agriculture University Ų³Ł†ŚŒ زرعي ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ Ł½Ł†ŚŠŁˆ ڄام'),
(23665, 'https://ror.org/00fh84p67', 'fr', 1, 'https://ror.org/00fh84p67 Ɖcole d''Informatique, d''Ɖlectronique et d''Expertise Comptable'),
(23666, 'https://ror.org/045m93336', 'en', 1, 'https://ror.org/045m93336 National University of Equatorial Guinea Universidad Nacional de Guinea Ecuatorial'),
(23667, 'https://ror.org/00409ce90', 'en', 1, 'https://ror.org/00409ce90 Ethiopian Civil Service University į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆ²į‰Ŗįˆ įˆ°įˆ­į‰Ŗįˆµ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(23668, 'https://ror.org/00ssp9h11', 'en', 1, 'https://ror.org/00ssp9h11 Arba Minch University į‹ØįŠ įˆ­į‰£ įˆįŠ•įŒ­ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(23669, 'https://ror.org/01670bg46', 'en', 1, 'https://ror.org/01670bg46 Bahir Dar University į‰£įˆ…įˆ­ į‹³įˆ­ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(23670, 'https://ror.org/05jnrzf43', 'en', 1, 'https://ror.org/05jnrzf43 Unity University College į‹©įŠ’į‰² į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(23671, 'https://ror.org/01pk8rb11', 'en', 1, 'https://ror.org/01pk8rb11 University of Kirkuk Ų¬Ų§Ł…Ų¹Ų© كركوك'),
(23672, 'https://ror.org/0486gbb16', 'en', 1, 'https://ror.org/0486gbb16 Higher Institute of Computer Science and Management Technology'),
(23673, 'https://ror.org/029sbsp57', 'en', 1, 'https://ror.org/029sbsp57 Badakhshan University Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲØŲÆŲ®Ų“Ų§Ł†ā€Ž'),
(23674, 'https://ror.org/01s4pfm44', 'fr', 1, 'https://ror.org/01s4pfm44 Institut Africain d''Informatique'),
(23675, 'https://ror.org/0212pqc18', 'en', 1, 'https://ror.org/0212pqc18 Lasbela University of Agriculture Water and Marine Science'),
(23676, 'https://ror.org/02ht5pq60', 'en', 1, 'https://ror.org/02ht5pq60 Kabul University دانؓگاه کابل'),
(23677, 'https://ror.org/03ajsbp04', 'en', 1, 'https://ror.org/03ajsbp04 Accra Institute of Technology'),
(23678, 'https://ror.org/037732v94', 'en', 1, 'https://ror.org/037732v94 Central University'),
(23679, 'https://ror.org/020we4134', 'en', 1, 'https://ror.org/020we4134 University of Wah واہ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(23680, 'https://ror.org/01qe1a488', 'en', 1, 'https://ror.org/01qe1a488 Azerbaijan Technical University Azərbaycan Texniki Universiteti АзербайГжанский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(23681, 'https://ror.org/050r2qc20', 'en', 1, 'https://ror.org/050r2qc20 Kyushu University of Nursing and Social Welfare ä¹å·žēœ‹č­·ē¦ē„‰å¤§å­¦'),
(23682, 'https://ror.org/00d440w27', 'no_lang_code', 1, 'https://ror.org/00d440w27 Tenri University 天理大学'),
(23683, 'https://ror.org/01znwv148', 'en', 1, 'https://ror.org/01znwv148 Azerbaijan State Marine Academy Azərbaycan Dƶvlət Dəniz Akademiyası ŠŠ·ŠµŃ€Š±Š°Š¹Š“Š¶Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼Š¾Ń€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(23684, 'https://ror.org/02mpq1w39', 'en', 1, 'https://ror.org/02mpq1w39 Suamandeep Vidyapeeth University સુમનદીપ વિધાપીઠ'),
(23685, 'https://ror.org/058e7px26', 'en', 1, 'https://ror.org/058e7px26 Azerbaijan State Pedagogical University Azərbaycan Dƶvlət Pedaqoji Universiteti'),
(23686, 'https://ror.org/00vr9xx71', 'en', 1, 'https://ror.org/00vr9xx71 Central University of Tibetan Studies'),
(23687, '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 АзербайГжанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(23688, 'https://ror.org/050dyg448', 'en', 1, 'https://ror.org/050dyg448 Azerbaijan University of Languages Azərbaycan Dillər Universiteti АзербайГжанский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ·Ń‹ŠŗŠ¾Š²'),
(23689, 'https://ror.org/01px61q40', 'fr', 1, 'https://ror.org/01px61q40 Institut PrivƩ de Gestion Institut SupƩrieur de Technologie Industrielle'),
(23690, 'https://ror.org/04cgn5q20', 'en', 1, 'https://ror.org/04cgn5q20 Al-Quds Open University Ų¬Ų§Ł…Ų¹Ų© القدس Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(23691, 'https://ror.org/03jeahd70', 'no_lang_code', 1, 'https://ror.org/03jeahd70 Shikoku University 四国大学'),
(23692, 'https://ror.org/00rq5kg69', 'en', 1, 'https://ror.org/00rq5kg69 Azerbaijan International University'),
(23693, 'https://ror.org/017nqsd88', 'no_lang_code', 1, 'https://ror.org/017nqsd88 Sampurnanand Sanskrit Vishwavidyalaya ą¤øą¤®ą„ą¤Ŗą„‚ą¤°ą„ą¤£ą¤¾ą¤Øą¤Øą„ą¤¦ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®šą®®ąÆą®ŖąÆ‚ą®°ąÆą®£ą®¾ą®©ą®ØąÆą®¤ąÆ ą®šą®®ą®šąÆą®•ą®æą®°ąÆą®¤ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(23694, 'https://ror.org/02shm3a27', 'en', 1, 'https://ror.org/02shm3a27 Azerbaijan University of Architecture and Construction Azərbaycan Memarlıq və İnşaat Universiteti'),
(23695, 'https://ror.org/053h75930', 'en', 1, 'https://ror.org/053h75930 Bunkyo University 文教大学'),
(23696, 'https://ror.org/00g1psz15', 'en', 1, 'https://ror.org/00g1psz15 Azerbaijan University Azərbaycan Universiteti'),
(23697, 'https://ror.org/02erz7116', 'no_lang_code', 1, 'https://ror.org/02erz7116 GakushÅ«in School Corporation 学栔法人 学習院'),
(23698, 'https://ror.org/03x1wer98', 'en', 1, 'https://ror.org/03x1wer98 Kaetsu University å˜‰ę‚¦å¤§å­¦'),
(23699, 'https://ror.org/03e99kh24', 'en', 1, 'https://ror.org/03e99kh24 Al-Aqsa University Ų¬Ų§Ł…Ų¹Ų© الأقصى'),
(23700, 'https://ror.org/027dkjg03', 'en', 1, 'https://ror.org/027dkjg03 Keisen University ęµę³‰å„³å­¦åœ’å¤§å­¦'),
(23701, 'https://ror.org/02gfhhc90', 'en', 1, 'https://ror.org/02gfhhc90 Komazawa Women''s University 駒沢儳子大学'),
(23702, 'https://ror.org/00sew4x53', 'en', 1, 'https://ror.org/00sew4x53 Odlar Yurdu Universiteti Odlar Yurdu University'),
(23703, 'https://ror.org/008bb2h75', 'no_lang_code', 1, 'https://ror.org/008bb2h75 Musashino Academia Musicae ę­¦č”µé‡ŽéŸ³ę„½å¤§å­¦'),
(23704, 'https://ror.org/04wwgp209', 'en', 1, 'https://ror.org/04wwgp209 Hebron University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŁ„'),
(23705, 'https://ror.org/0538j0209', 'en', 1, 'https://ror.org/0538j0209 Qafqaz Universiteti Qafqaz University'),
(23706, 'https://ror.org/04csdwy58', 'no_lang_code', 1, 'https://ror.org/04csdwy58 Mahatma Gandhi Antarrashtriya Hindi Vishwavidyalaya Mahatma Gandhi International Hindi University ą¤®ą¤¹ą¤¾ą¤¤ą„ą¤®ą¤¾ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤…ą¤Øą„ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤¹ą¤æą¤Øą„ą¤¦ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(23707, 'https://ror.org/02gpy8g87', 'en', 1, 'https://ror.org/02gpy8g87 Western Philippines University'),
(23708, 'https://ror.org/04mdk1103', 'en', 1, 'https://ror.org/04mdk1103 Angeles University Foundation Pundasyong Pamantasang Angeles'),
(23709, 'https://ror.org/05cgtjz78', 'en', 1, 'https://ror.org/05cgtjz78 Qərbi Kaspi Universiteti Western Caspian University'),
(23710, 'https://ror.org/01x1bp495', 'en', 1, 'https://ror.org/01x1bp495 Holy Angel University Pamantasang Holy Angel'),
(23711, 'https://ror.org/00bgzqr58', 'id', 1, 'https://ror.org/00bgzqr58 Universitas Sains dan Teknologi Jayapura'),
(23712, 'https://ror.org/02c37r983', 'en', 1, 'https://ror.org/02c37r983 University of Negros Occidental – Recoletos'),
(23713, 'https://ror.org/00pdwbh96', 'en', 1, 'https://ror.org/00pdwbh96 University of St. La Salle'),
(23714, 'https://ror.org/05y9enm95', 'en', 1, 'https://ror.org/05y9enm95 Baguio Central University'),
(23715, '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'),
(23716, 'https://ror.org/0451bvc41', 'en', 1, 'https://ror.org/0451bvc41 Ganja State University Gəncə Dƶvlət Universiteti Š“ŃŠ½Š“Š¶ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(23717, 'https://ror.org/00yrjw682', 'id', 1, 'https://ror.org/00yrjw682 Universitas Darussalam Ambon'),
(23718, 'https://ror.org/056d32z48', 'en', 1, 'https://ror.org/056d32z48 Pamantasan ng Baguio University of Baguio'),
(23719, 'https://ror.org/0518w5j31', 'en', 1, 'https://ror.org/0518w5j31 Lankaran State University Lənkəran Dƶvlət Universiteti'),
(23720, 'https://ror.org/02wne9d91', 'en', 1, 'https://ror.org/02wne9d91 Nakhchivan State University NaxƧıvan Dƶvlət Universiteti ŠŠ°Ń…ŠøŃ‡ŠµŠ²Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(23721, 'https://ror.org/03rwzd843', 'id', 1, 'https://ror.org/03rwzd843 Universitas Kristen Indonesia Maluku'),
(23722, 'https://ror.org/03yca6a35', 'id', 1, 'https://ror.org/03yca6a35 Universitas Ratu Samban'),
(23723, 'https://ror.org/05dj31k33', 'id', 1, 'https://ror.org/05dj31k33 Universitas Balikpapan'),
(23724, 'https://ror.org/02eg6d927', 'en', 1, 'https://ror.org/02eg6d927 University of the Cordilleras'),
(23725, 'https://ror.org/02f3j0q24', 'en', 1, 'https://ror.org/02f3j0q24 Baliuag University'),
(23726, 'https://ror.org/0496p0503', 'en', 1, 'https://ror.org/0496p0503 Rissho University 立正大学'),
(23727, 'https://ror.org/002rphp73', 'id', 1, 'https://ror.org/002rphp73 Universitas Tri Dharma'),
(23728, 'https://ror.org/02bprcs59', 'en', 1, 'https://ror.org/02bprcs59 Mariano Marcos State University Pambansang Pamantasan ng Mariano Marcos'),
(23729, 'https://ror.org/04q5p4a74', 'no_lang_code', 1, 'https://ror.org/04q5p4a74 Seisen University 清泉儳子大学'),
(23730, 'https://ror.org/04qszbx34', 'en', 1, 'https://ror.org/04qszbx34 University of the Sacred Heart č–åæƒå„³å­å¤§å­¦'),
(23731, 'https://ror.org/005z3e143', 'id', 1, 'https://ror.org/005z3e143 Universitas Abulyatama'),
(23732, 'https://ror.org/00rt3cy21', 'en', 1, 'https://ror.org/00rt3cy21 Visayas State University'),
(23733, 'https://ror.org/05e5m9w32', 'en', 1, 'https://ror.org/05e5m9w32 Nueva Vizcaya State University'),
(23734, 'https://ror.org/004drcv69', 'id', 1, 'https://ror.org/004drcv69 Universitas Iskandar Muda'),
(23735, 'https://ror.org/00jkdhd30', 'en', 1, 'https://ror.org/00jkdhd30 Saint Mary''s University'),
(23736, 'https://ror.org/037wmkw40', 'en', 1, 'https://ror.org/037wmkw40 Benguet State University'),
(23737, 'https://ror.org/02yyxkw16', 'en', 1, 'https://ror.org/02yyxkw16 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(23738, 'https://ror.org/011rv5893', 'en', 1, 'https://ror.org/011rv5893 Delmon University for Science & Technology Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ„Ł…ŁˆŁ† Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(23739, 'https://ror.org/04g3hr176', 'en', 1, 'https://ror.org/04g3hr176 Kingdom University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł…Ł„ŁƒŲ©'),
(23740, 'https://ror.org/03ga61755', 'id', 1, 'https://ror.org/03ga61755 Universitas Bandar Lampung'),
(23741, 'https://ror.org/04zskzc62', 'en', 1, 'https://ror.org/04zskzc62 Eastern Samar State University'),
(23742, 'https://ror.org/051j9rm73', 'en', 1, 'https://ror.org/051j9rm73 Father Saturnino Urios University Pamantasang Padre Saturnino Urios'),
(23743, 'https://ror.org/021yq0b87', 'en', 1, 'https://ror.org/021yq0b87 Wesleyan University Philippines'),
(23744, 'https://ror.org/00567j574', 'id', 1, 'https://ror.org/00567j574 Universitas Malahayati'),
(23745, 'https://ror.org/050hatp65', 'en', 1, 'https://ror.org/050hatp65 Capitol University'),
(23746, 'https://ror.org/04x499113', 'en', 1, 'https://ror.org/04x499113 Pundra University of Science and Technology ą¦Ŗą§ą¦Øą§ą¦”ą§ą¦° ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(23747, 'https://ror.org/05s2ecw65', 'en', 1, 'https://ror.org/05s2ecw65 BGC Trust University Bangladesh বিজিসি ą¦Ÿą§ą¦°ą¦¾ą¦øą§ą¦Ÿ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ বাংলাদেশ'),
(23748, 'https://ror.org/03zf73d71', 'id', 1, 'https://ror.org/03zf73d71 Universitas Muhammadiyah Lampung'),
(23749, 'https://ror.org/021anqv82', 'no_lang_code', 1, 'https://ror.org/021anqv82 Shirayuri University ē™½ē™¾åˆå„³å­å¤§å­¦'),
(23750, 'https://ror.org/053gxvt69', 'id', 1, 'https://ror.org/053gxvt69 Universitas Saburai'),
(23751, 'https://ror.org/05bg0c903', 'en', 1, 'https://ror.org/05bg0c903 Southern University ą¦øą¦¾ą¦°ą§ą¦¦ą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(23752, 'https://ror.org/00jcrsy58', 'en', 1, 'https://ror.org/00jcrsy58 Sugino Fashion College ę‰é‡Žęœé£¾å¤§å­¦'),
(23753, 'https://ror.org/02c733g32', 'id', 1, 'https://ror.org/02c733g32 Universitas Tulang Bawang Lampung'),
(23754, 'https://ror.org/02j8ga255', 'en', 1, 'https://ror.org/02j8ga255 American International University-Bangladesh আমেরিকান ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ-বাংলাদেশ'),
(23755, 'https://ror.org/00c2t9540', 'en', 1, 'https://ror.org/00c2t9540 Taisho University 大正大学'),
(23756, 'https://ror.org/01mm32049', 'en', 1, 'https://ror.org/01mm32049 Pamantasan ng Lungsod ng Kalookan University of Caloocan City'),
(23757, 'https://ror.org/01qq6yz91', 'en', 1, 'https://ror.org/01qq6yz91 Manila Central University'),
(23758, 'https://ror.org/00dwyn417', 'en', 1, 'https://ror.org/00dwyn417 Takachiho University é«˜åƒē©‚å¤§å­¦'),
(23759, 'https://ror.org/05w5r2e40', 'en', 1, 'https://ror.org/05w5r2e40 Atish Dipankar University of Science and Technology অতীশ ą¦¦ą§€ą¦Ŗą¦™ą§ą¦•ą¦° ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(23760, 'https://ror.org/05pzp6855', 'en', 1, 'https://ror.org/05pzp6855 Samar State University'),
(23761, 'https://ror.org/01044vd48', 'en', 1, 'https://ror.org/01044vd48 Tama Art University å¤šę‘©ē¾Žč”“å¤§å­¦'),
(23762, 'https://ror.org/01743b883', 'en', 1, 'https://ror.org/01743b883 Central Women''s University ą¦•ą§‡ą¦Øą§ą¦¦ą§ą¦°ą§€ą¦Æą¦¼ মহিলা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(23763, 'https://ror.org/00y809n33', 'en', 1, 'https://ror.org/00y809n33 Tokyo University of the Arts ę±äŗ¬čŠøč”“å¤§å­¦'),
(23764, 'https://ror.org/011tc6n71', 'en', 1, 'https://ror.org/011tc6n71 Cebu Doctors'' University'),
(23765, 'https://ror.org/01vg6n598', 'en', 1, 'https://ror.org/01vg6n598 Darul Ihsan University দারুল ইহসান ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(23766, 'https://ror.org/05nsh7a69', 'en', 1, 'https://ror.org/05nsh7a69 Dhaka International University ঢাকা ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(23767, 'https://ror.org/05wawev23', 'en', 1, 'https://ror.org/05wawev23 Southwestern University'),
(23768, 'https://ror.org/034xkmw20', 'en', 1, 'https://ror.org/034xkmw20 Pamantasan ng Cebu University of Cebu'),
(23769, 'https://ror.org/05e2ncr14', 'en', 1, 'https://ror.org/05e2ncr14 Eastern University ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(23770, 'https://ror.org/03ryjp350', 'en', 1, 'https://ror.org/03ryjp350 Pamantasan sa Bisayas University of the Visayas'),
(23771, 'https://ror.org/049jpg876', 'en', 1, 'https://ror.org/049jpg876 Higher Institute for Qualitative Studies المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„Ł†ŁˆŲ¹ŁŠŲ©'),
(23772, 'https://ror.org/01c5aqg65', 'en', 1, 'https://ror.org/01c5aqg65 Bulacan State University Pamantasang Pampamahalaang Bulacan'),
(23773, 'https://ror.org/009sv4j63', 'en', 1, 'https://ror.org/009sv4j63 La Consolacion University Philippines Pamantasang La Consolacion sa Pilipinas'),
(23774, 'https://ror.org/024hcay96', 'en', 1, 'https://ror.org/024hcay96 Achva Academic College המכללה ×”××§×“×ž×™×Ŗ אחוה'),
(23775, 'https://ror.org/01khe0643', 'en', 1, 'https://ror.org/01khe0643 Harapan Bangsa Institute of Technology Institut Teknologi Harapan Bangsa'),
(23776, 'https://ror.org/05rce5g70', 'en', 1, 'https://ror.org/05rce5g70 Manarat International University মানারাত ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(23777, 'https://ror.org/01pc8bt60', 'en', 1, 'https://ror.org/01pc8bt60 Higher Institute of Islamic Studies المعهد العالى للدراسات Ų§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠŲ©'),
(23778, 'https://ror.org/01jc1xp35', 'en', 1, 'https://ror.org/01jc1xp35 Northern University Bangladesh ą¦Øą¦°ą§ą¦¦ą¦¾ą¦°ą§ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(23779, 'https://ror.org/03a2yg438', 'id', 1, 'https://ror.org/03a2yg438 Institut Seni Budaya Indonesia Bandung'),
(23780, 'https://ror.org/03vzjn737', 'en', 1, 'https://ror.org/03vzjn737 Presidency University ą¦Ŗą§ą¦°ą§‡ą¦øą¦æą¦”ą§‡ą¦Øą§ą¦øą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(23781, 'https://ror.org/00strmv13', 'en', 1, 'https://ror.org/00strmv13 Queens University ą¦•ą§ą¦‡ą¦Øą§ą¦ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(23782, 'https://ror.org/00b718e82', 'en', 1, 'https://ror.org/00b718e82 Shanto-Mariam University of Creative Technology ą¦¶ą¦¾ą¦Øą§ą¦¤-মরিয়ম ą¦øą§ƒą¦œą¦Øą¦¶ą§€ą¦² ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(23783, 'https://ror.org/04mwhg379', 'en', 1, 'https://ror.org/04mwhg379 Notre Dame University Pamantasang Notre Dame'),
(23784, 'https://ror.org/00cf0ab87', 'en', 1, 'https://ror.org/00cf0ab87 Southeast University ą¦øą¦¾ą¦‰ą¦„ą¦‡ą¦øą§ą¦Ÿ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(23785, 'https://ror.org/03xfjma97', 'en', 1, 'https://ror.org/03xfjma97 Lyceum-Northwestern University'),
(23786, 'https://ror.org/01g14tq52', 'en', 1, 'https://ror.org/01g14tq52 State University of Bangladesh ą¦øą§ą¦Ÿą§‡ą¦Ÿ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(23787, 'https://ror.org/050nxyk29', 'en', 1, 'https://ror.org/050nxyk29 Tokyo College of Music ę±äŗ¬éŸ³ę„½å¤§å­¦'),
(23788, 'https://ror.org/04n6bbc07', 'en', 1, 'https://ror.org/04n6bbc07 The Millennium University মিলেনিয়াম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(23789, 'https://ror.org/03zzekj93', 'en', 1, 'https://ror.org/03zzekj93 University of Luzon'),
(23790, 'https://ror.org/00194tb08', 'en', 1, 'https://ror.org/00194tb08 People''s University of Bangladesh ą¦¦ą§ą¦Æ পিপলস ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(23791, 'https://ror.org/0549zdk35', 'en', 1, 'https://ror.org/0549zdk35 Pamantasan ng Pangasinan University of Pangasinan'),
(23792, 'https://ror.org/02yzsqk70', 'id', 1, 'https://ror.org/02yzsqk70 Universitas Al-Ghifari'),
(23793, 'https://ror.org/00mpnf546', 'en', 1, 'https://ror.org/00mpnf546 Unibersidad ng Mindanaw University of Mindanao'),
(23794, 'https://ror.org/0204b4294', 'en', 1, 'https://ror.org/0204b4294 Pamantasang Imaculada Conception University of the Immaculate Conception'),
(23795, 'https://ror.org/04j1zjr14', 'no_lang_code', 1, 'https://ror.org/04j1zjr14 Lander Institute'),
(23796, 'https://ror.org/00we17t20', 'en', 1, 'https://ror.org/00we17t20 Foundation University'),
(23797, 'https://ror.org/00syjsq54', 'en', 1, 'https://ror.org/00syjsq54 Bezalel Academy of Arts and Design בצלאל, אקדמיה ×œ××ž× ×•×Ŗ ועיצוב'),
(23798, 'https://ror.org/00e26jr92', 'id', 1, 'https://ror.org/00e26jr92 Universitas Bale Bandung'),
(23799, 'https://ror.org/0444jhh32', 'en', 1, 'https://ror.org/0444jhh32 Bandung Raya University Universitas Bandung Raya'),
(23800, 'https://ror.org/016t28114', 'en', 1, 'https://ror.org/016t28114 Negros Oriental State University Pamantasang Estatal ng Negros Oriental'),
(23801, 'https://ror.org/05yge8w48', 'en', 1, 'https://ror.org/05yge8w48 Ueno Gakuen University äøŠé‡Žå­¦åœ’å¤§å­¦'),
(23802, 'https://ror.org/00sxnz850', 'en', 1, 'https://ror.org/00sxnz850 University of Development Alternative ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦”ą§‡ą¦­ą¦²ą¦Ŗą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦…ą¦²ą§ą¦Ÿą¦¾ą¦°ą¦Øą§‡ą¦Ÿą¦æą¦­'),
(23803, 'https://ror.org/012br3z79', 'en', 1, 'https://ror.org/012br3z79 University of Liberal Arts Bangladesh ą¦‡ą¦‰ą¦Øą¦æą¦°ą§ą¦­ą¦¾ą¦øą¦æą¦Ÿą¦æ অব লিবারেল ą¦†ą¦°ą§ą¦Ÿą¦ø বাংলাদেশ'),
(23804, 'https://ror.org/035zypg15', 'en', 1, 'https://ror.org/035zypg15 Uttara University ą¦‰ą¦¤ą§ą¦¤ą¦°ą¦¾ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(23805, 'https://ror.org/04m2r0735', 'en', 1, 'https://ror.org/04m2r0735 Schechter Institute of Jewish Studies מכון ×©×›×˜×Ø למדעי היהדות'),
(23806, 'https://ror.org/0054vex45', 'en', 1, 'https://ror.org/0054vex45 Victoria University of Bangladesh ą¦­ą¦æą¦•ą§ą¦Ÿą§‹ą¦°ą¦æą¦Æą¦¼ą¦¾ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(23807, 'https://ror.org/01g9q1f24', 'id', 1, 'https://ror.org/01g9q1f24 Universitas Informatika dan Bisnis Indonesia'),
(23808, 'https://ror.org/0150mxn38', 'en', 1, 'https://ror.org/0150mxn38 President Ramon Magsaysay State University'),
(23809, 'https://ror.org/0238cf984', 'en', 1, 'https://ror.org/0238cf984 Central Philippine University Pamantasang Sentral ng Pilipinas'),
(23810, 'https://ror.org/05s3ca234', 'en', 1, 'https://ror.org/05s3ca234 Bangladesh Open University বাংলাদেশ ą¦‰ą¦Øą§ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(23811, 'https://ror.org/049fvjs25', 'en', 1, 'https://ror.org/049fvjs25 Tokyo University of Social Welfare ę±äŗ¬ē¦ē„‰å¤§å­¦'),
(23812, 'https://ror.org/0090dta57', 'id', 1, 'https://ror.org/0090dta57 Universitas Islam Nusantara'),
(23813, 'https://ror.org/057gnqw22', 'en', 1, 'https://ror.org/057gnqw22 Islamic University of Technology ইসলামিক ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(23814, 'https://ror.org/0575dme84', 'en', 1, 'https://ror.org/0575dme84 Tottori University of Environmental Studies é³„å–ē’°å¢ƒå¤§å­¦'),
(23815, 'https://ror.org/009kcw598', 'en', 1, 'https://ror.org/009kcw598 Jatiya Kabi Kazi Nazrul Islam University ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ কবি ą¦•ą¦¾ą¦œą§€ নজরুল ইসলাম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(23816, 'https://ror.org/05g7zxm15', 'id', 1, 'https://ror.org/05g7zxm15 Universitas Kebangsaan Republik Indonesia'),
(23817, 'https://ror.org/0172hvg27', 'en', 1, 'https://ror.org/0172hvg27 Aichi University ę„›ēŸ„å¤§å­¦'),
(23818, 'https://ror.org/01kyajw84', 'en', 1, 'https://ror.org/01kyajw84 Pamantasan ng Iloilo University of Iloilo'),
(23819, 'https://ror.org/03bdv1r55', 'en', 1, 'https://ror.org/03bdv1r55 Hadassah Academic College מכללה ××§×“×ž×™×Ŗ הדהה ×™×Ø×•×©×œ×™×'),
(23820, 'https://ror.org/04zrzwm74', 'id', 1, 'https://ror.org/04zrzwm74 Universitas Langlangbuana'),
(23821, 'https://ror.org/02hda4733', 'en', 1, 'https://ror.org/02hda4733 Pamantasan ng San Agustin University of San Agustin'),
(23822, 'https://ror.org/02wbzep73', 'en', 1, 'https://ror.org/02wbzep73 West Visayas State University'),
(23823, 'https://ror.org/043say313', 'en', 1, 'https://ror.org/043say313 Cavite State University'),
(23824, 'https://ror.org/05v4xtv52', 'id', 1, 'https://ror.org/05v4xtv52 Universitas Nasional Pasim'),
(23825, 'https://ror.org/054e0wg16', 'en', 1, 'https://ror.org/054e0wg16 University of Northeastern Philippines'),
(23826, 'https://ror.org/015t4c879', 'id', 1, 'https://ror.org/015t4c879 Universitas Nurtanio'),
(23827, 'https://ror.org/059cs8z68', 'id', 1, 'https://ror.org/059cs8z68 Universitas Pasundan'),
(23828, 'https://ror.org/03bktwf13', 'no_lang_code', 1, 'https://ror.org/03bktwf13 Aichi Gakusen University ę„›ēŸ„å­¦ę³‰å¤§å­¦'),
(23829, 'https://ror.org/044b0xj37', 'en', 1, 'https://ror.org/044b0xj37 Indonesia University of Education Universitas Pendidikan Indonesia'),
(23830, 'https://ror.org/04mtcj695', 'en', 1, 'https://ror.org/04mtcj695 Unibersidad ng Katimugang Mindanao University of Southern Mindanao'),
(23831, 'https://ror.org/01bp4wd47', 'en', 1, 'https://ror.org/01bp4wd47 Aklan State University'),
(23832, 'https://ror.org/004hnyk37', 'en', 1, 'https://ror.org/004hnyk37 Rangamati Science and Technology University ą¦°ą¦¾ą¦™ą§ą¦—ą¦¾ą¦®ą¦¾ą¦Ÿą¦æ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(23833, 'https://ror.org/0163dw893', 'en', 1, 'https://ror.org/0163dw893 Aichi Mizuho College ę„›ēŸ„ćæćšć»å¤§å­¦'),
(23834, 'https://ror.org/03q5fwy02', 'en', 1, 'https://ror.org/03q5fwy02 Notre Dame of Marbel University Pamantasang Notre Dame ng Marbel'),
(23835, 'https://ror.org/0300khg14', 'fr', 1, 'https://ror.org/0300khg14 Institut Supérieur de Formation aĢ€ Distance'),
(23836, 'https://ror.org/01k604769', 'en', 1, 'https://ror.org/01k604769 University of Santo Tomas–Legazpi'),
(23837, 'https://ror.org/04hdrrs71', 'en', 1, 'https://ror.org/04hdrrs71 Metropolitan University ą¦®ą¦Ÿą§ą¦°ą§‹ą¦Ŗą¦²ą¦æą¦Ÿą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(23838, 'https://ror.org/01jdzvf98', 'en', 1, 'https://ror.org/01jdzvf98 Pamantasang Estado ng Pangasinan Pangasinan State University'),
(23839, 'https://ror.org/05y4r9290', 'en', 1, 'https://ror.org/05y4r9290 Sylhet International University ą¦øą¦æą¦²ą§‡ą¦Ÿ ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(23840, 'https://ror.org/0036qse20', 'no_lang_code', 1, 'https://ror.org/0036qse20 Ohkagakuen University ę”œčŠ±å­¦åœ’å¤§å­¦'),
(23841, 'https://ror.org/053g25f89', 'id', 1, 'https://ror.org/053g25f89 Universitas Sangga Buana YPKP'),
(23842, 'https://ror.org/01y80n017', 'id', 1, 'https://ror.org/01y80n017 Universitas Achmad Yani'),
(23843, 'https://ror.org/03d7p8g51', 'en', 1, 'https://ror.org/03d7p8g51 Netanya Academic College ŁƒŁ„ŁŠŲ© Ł†ŲŖŲ§Ł†ŁŠŲ§ Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(23844, 'https://ror.org/04r30sv87', 'id', 1, 'https://ror.org/04r30sv87 Universitas Islam Kalimantan Muhammad Arsyad Al Banjary'),
(23845, 'https://ror.org/00473rv55', 'en', 1, 'https://ror.org/00473rv55 Pamantasan ng Makati University of Makati'),
(23846, 'https://ror.org/00na8b236', 'en', 1, 'https://ror.org/00na8b236 De La Salle Araneta University Pamantasang De La Salle Araneta'),
(23847, 'https://ror.org/01wz7zs96', 'no_lang_code', 1, 'https://ror.org/01wz7zs96 Mimasaka University ē¾Žä½œå¤§å­¦'),
(23848, 'https://ror.org/03sgcr744', 'en', 1, 'https://ror.org/03sgcr744 Ube Frontier University å®‡éƒØćƒ•ćƒ­ćƒ³ćƒ†ć‚£ć‚¢å¤§å­¦'),
(23849, 'https://ror.org/01nbgfe29', 'en', 1, 'https://ror.org/01nbgfe29 Build Bright University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž”įŸ€įž›įž”įŸ’įžšįž¶įž™ įžšįž¶įž‡įž’įž¶įž“įžøįž—įŸ’įž“įŸ†įž–įŸįž‰'),
(23850, 'https://ror.org/01y2mxy57', 'en', 1, 'https://ror.org/01y2mxy57 JosƩ Rizal University Pamantasang JosƩ Rizal'),
(23851, 'https://ror.org/03aptyv62', 'en', 1, 'https://ror.org/03aptyv62 Nagano University 長野大学'),
(23852, 'https://ror.org/011vbeg19', 'en', 1, 'https://ror.org/011vbeg19 Rizal Technological University'),
(23853, 'https://ror.org/0037an472', 'en', 1, 'https://ror.org/0037an472 Kyoto Bunkyo University äŗ¬éƒ½ę–‡ę•™å¤§å­¦'),
(23854, 'https://ror.org/04nmr9340', 'en', 1, 'https://ror.org/04nmr9340 Kyoto Saga University of Arts äŗ¬éƒ½åµÆå³ØčŠøč”“å¤§å­¦'),
(23855, 'https://ror.org/04janbd12', 'no_lang_code', 1, 'https://ror.org/04janbd12 Centro Escolar University Pamantasang Centro Escolar'),
(23856, 'https://ror.org/00ge2jh15', 'en', 1, 'https://ror.org/00ge2jh15 Peres Academic Center ×”×ž×Ø×›×– האקדמי ×¤×Ø×”ā€Ž'),
(23857, 'https://ror.org/04nawkn69', 'en', 1, 'https://ror.org/04nawkn69 Bunsei University of Art ę–‡ę˜ŸčŠøč”“å¤§å­ø'),
(23858, 'https://ror.org/02knr1992', 'en', 1, 'https://ror.org/02knr1992 International University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž“įŸ’įžįžšįž‡įž¶įžįž·'),
(23859, 'https://ror.org/059gxc315', 'en', 1, 'https://ror.org/059gxc315 Cambodian Mekong University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž˜įŸįž‚įž„įŸ’įž‚įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(23860, 'https://ror.org/05qby2688', 'id', 1, 'https://ror.org/05qby2688 Universitas Baturaja'),
(23861, 'https://ror.org/05t56qd09', 'id', 1, 'https://ror.org/05t56qd09 Dayanu Ikhsanuddin University Universitas Dayanu Ikhsanuddin'),
(23862, 'https://ror.org/02xwcny57', 'id', 1, 'https://ror.org/02xwcny57 Universitas Muhammadiyah Buton'),
(23863, 'https://ror.org/02mh3at17', 'en', 1, 'https://ror.org/02mh3at17 Royal University of Law and Economics UniversitĆ© royale de droit et des sciences economiques įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įž“įžøįžįž·įžŸįž¶įžŸįŸ’įžįŸ’įžšįž“įž·įž„įžœįž·įž‘įŸ’įž™įž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšįžŸįŸįžŠįŸ’įž‹įž€įž·įž…įŸ’įž…'),
(23864, 'https://ror.org/03cv1mx62', 'id', 1, 'https://ror.org/03cv1mx62 Universitas Islam 45 Bekasi'),
(23865, 'https://ror.org/0034wme67', 'id', 1, 'https://ror.org/0034wme67 Universitas Muhammadiyah Bengkulu'),
(23866, 'https://ror.org/00cyrx553', 'id', 1, 'https://ror.org/00cyrx553 Universitas Prof. Dr. Hazairin SH.'),
(23867, 'https://ror.org/05kw9ye22', 'id', 1, 'https://ror.org/05kw9ye22 Institut Ilmu Sosial dan Ilmu Politik Yapis Biak'),
(23868, 'https://ror.org/02f49t952', 'id', 1, 'https://ror.org/02f49t952 Universitas Almuslim'),
(23869, 'https://ror.org/01j5wgc53', 'id', 1, 'https://ror.org/01j5wgc53 Universitas Djuanda'),
(23870, 'https://ror.org/025q3xb93', 'en', 1, 'https://ror.org/025q3xb93 FEATI University'),
(23871, 'https://ror.org/00atcgp07', 'en', 1, 'https://ror.org/00atcgp07 Manuel L. Quezon University Pamantasang Manuel L. Quezon'),
(23872, 'https://ror.org/02v91zq07', 'no_lang_code', 1, 'https://ror.org/02v91zq07 Wakkanai Hokusei Gakuen College ēØšå†…åŒ—ę˜Ÿå­¦åœ’å¤§å­¦'),
(23873, 'https://ror.org/01e8byp18', 'en', 1, 'https://ror.org/01e8byp18 Pamantasang Kristiyano ng Pilipinas Philippine Christian University'),
(23874, 'https://ror.org/019n6wd93', 'en', 1, 'https://ror.org/019n6wd93 St. Paul University Manila'),
(23875, 'https://ror.org/01qw7a563', 'no_lang_code', 1, 'https://ror.org/01qw7a563 Tokyo Seitoku University ę±äŗ¬ęˆå¾³å¤§å­¦'),
(23876, 'https://ror.org/00v4vjb95', 'en', 1, 'https://ror.org/00v4vjb95 Technological University of the Philippines Teknolohikal na Unibersidad ng Pilipinas'),
(23877, 'https://ror.org/05933aq68', 'en', 1, 'https://ror.org/05933aq68 Shizuoka University of Welfare é™å²”ē¦ē„‰å¤§å­¦'),
(23878, 'https://ror.org/03dxh7253', 'id', 1, 'https://ror.org/03dxh7253 Universitas Bojonegoro'),
(23879, 'https://ror.org/01bq81t66', 'en', 1, 'https://ror.org/01bq81t66 Philippine Women''s University'),
(23880, 'https://ror.org/00v3ejk86', 'en', 1, 'https://ror.org/00v3ejk86 National Institute of Business įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‡įž¶įžįž·įž–įž¶įžŽįž·įž‡įŸ’įž‡įžŸįž¶įžŸįŸ’įžšįŸ’įžŠ'),
(23881, 'https://ror.org/01539v588', 'en', 1, 'https://ror.org/01539v588 Oranim Academic College of Education ××•×Ø× ×™× - המכללה ×”××§×“×ž×™×Ŗ לחינוך Ų§ŁˆŲ±Ł†ŁŠŁ…'),
(23882, 'https://ror.org/0318kta67', 'en', 1, 'https://ror.org/0318kta67 Tohoku University of Art and Design ę±åŒ—čŠøč”“å·„ē§‘å¤§å­¦'),
(23883, 'https://ror.org/008xj1y67', 'en', 1, 'https://ror.org/008xj1y67 National Technical Training Institute įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‡įž¶įžįž·įž”įžŽįŸ’įžįž»įŸ‡įž”įžŽįŸ’įžįž¶įž›įž”įž…įŸ’įž…įŸįž€įž‘įŸįžŸ'),
(23884, 'https://ror.org/04c9af145', 'en', 1, 'https://ror.org/04c9af145 University of Manila'),
(23885, 'https://ror.org/009st3569', 'en', 1, 'https://ror.org/009st3569 Tel Hai Academic College המכללה ×”××§×“×ž×™×Ŗ תל-חי'),
(23886, 'https://ror.org/05xeme822', 'no_lang_code', 1, 'https://ror.org/05xeme822 PaƱƱāsāstra University of Cambodia įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ā€‹įž”įž‰įŸ’įž‰įž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšā€‹įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(23887, 'https://ror.org/03zfwg795', 'no_lang_code', 1, 'https://ror.org/03zfwg795 Chuo Gakuin University 中央学院大学'),
(23888, 'https://ror.org/0285m7689', 'en', 1, 'https://ror.org/0285m7689 Phnom Penh International University'),
(23889, 'https://ror.org/03yz74e78', 'no_lang_code', 1, 'https://ror.org/03yz74e78 Shiseikan University 至誠館大学'),
(23890, 'https://ror.org/00xbjad38', 'en', 1, 'https://ror.org/00xbjad38 Adamson University Pamantasang Adamson'),
(23891, 'https://ror.org/011m7wt79', 'id', 1, 'https://ror.org/011m7wt79 Universitas Trunajaya Bontang'),
(23892, 'https://ror.org/03sqexp58', 'en', 1, 'https://ror.org/03sqexp58 Kawamura Gakuen Women''s University å·ę‘å­¦åœ’å„³å­å¤§å­¦'),
(23893, 'https://ror.org/00rspdh33', 'en', 1, 'https://ror.org/00rspdh33 Asia Euro University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ įž¢įž¶įžŸįŸŠįžø įž¢įžŗįžšįŸ‰įž»įž”'),
(23894, 'https://ror.org/019qp0530', 'id', 1, 'https://ror.org/019qp0530 Universitas Boyolali'),
(23895, 'https://ror.org/04mdddd78', 'en', 1, 'https://ror.org/04mdddd78 Minobusan University 身延山大学'),
(23896, 'https://ror.org/01r3kcg18', 'en', 1, 'https://ror.org/01r3kcg18 Osaka University of Economics and Law å¤§é˜ŖēµŒęøˆę³•ē§‘å¤§å­¦'),
(23897, 'https://ror.org/047rtk203', 'en', 1, 'https://ror.org/047rtk203 Swiss German University Universitas Swiss German'),
(23898, 'https://ror.org/0556naa44', 'en', 1, 'https://ror.org/0556naa44 Yokkaichi University 四旄市大学'),
(23899, 'https://ror.org/0184f3p11', 'en', 1, 'https://ror.org/0184f3p11 Central Mindanao University'),
(23900, 'https://ror.org/02re6fe17', 'en', 1, 'https://ror.org/02re6fe17 Norton University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ įž“įŸįžšįžįž»įž“'),
(23901, 'https://ror.org/0314zyy82', 'en', 1, 'https://ror.org/0314zyy82 Ferris University ćƒ•ć‚§ćƒŖć‚¹å„³å­¦é™¢å¤§å­¦'),
(23902, 'https://ror.org/02yz8wm13', 'en', 1, 'https://ror.org/02yz8wm13 Tokyo Future University ę±äŗ¬ęœŖę„å¤§å­¦'),
(23903, 'https://ror.org/021tsqw04', 'en', 1, 'https://ror.org/021tsqw04 Ateneo de Naga University Pamantasang Ateneo de Naga'),
(23904, 'https://ror.org/04p9zgs78', 'no_lang_code', 1, 'https://ror.org/04p9zgs78 Seigakuin University 聖学院大学'),
(23905, 'https://ror.org/05n4r2p88', 'es', 1, 'https://ror.org/05n4r2p88 Universidad de Sta. Isabel'),
(23906, 'https://ror.org/02pht8w30', 'en', 1, 'https://ror.org/02pht8w30 Universidad de Nueva Caceres University of Nueva Caceres'),
(23907, 'https://ror.org/059t51t95', 'en', 1, 'https://ror.org/059t51t95 Misamis University'),
(23908, 'https://ror.org/00hny2n79', 'en', 1, 'https://ror.org/00hny2n79 Pamantasan ng Asya at Pasipiko University of Asia and the Pacific'),
(23909, 'https://ror.org/05x5g1486', 'en', 1, 'https://ror.org/05x5g1486 Palawan State University'),
(23910, 'https://ror.org/001r73k91', 'en', 1, 'https://ror.org/001r73k91 AMA Computer University Pamantasang Pangkompyuter ng AMA'),
(23911, 'https://ror.org/053kevk63', 'en', 1, 'https://ror.org/053kevk63 Ateneo de Manila University'),
(23912, 'https://ror.org/01yv6y468', 'no_lang_code', 1, 'https://ror.org/01yv6y468 Setec Institute įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“ā€‹ įžŸįŸŠįž·įžįž·įž€'),
(23913, 'https://ror.org/01r4khx38', 'en', 1, 'https://ror.org/01r4khx38 Aichi Prefectural University of Fine Arts and Music ę„›ēŸ„ēœŒē«‹čŠøč”“å¤§å­¦'),
(23914, 'https://ror.org/002m6kk35', 'no_lang_code', 1, 'https://ror.org/002m6kk35 Vanda Institute įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“ įžœįŸ‰įž¶įž“įŸ‹įžŠįž¶'),
(23915, 'https://ror.org/02agqkc58', 'en', 1, 'https://ror.org/02agqkc58 Western University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžœįŸįžŸįŸ’įž‘įž¾įž“'),
(23916, 'https://ror.org/0071art98', 'no_lang_code', 1, 'https://ror.org/0071art98 Angkor University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž„įŸ’įž‚įžš'),
(23917, 'https://ror.org/024b38m94', 'en', 1, 'https://ror.org/024b38m94 St. Paul University Quezon City'),
(23918, 'https://ror.org/05ga5zc50', 'no_lang_code', 1, 'https://ror.org/05ga5zc50 Aikoku Gakuen University ę„›å›½å­¦åœ’å¤§å­¦'),
(23919, 'https://ror.org/010nsc013', 'no_lang_code', 1, 'https://ror.org/010nsc013 Svay Rieng University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ā€‹įžŸįŸ’įžœįž¶įž™įžšįŸ€įž„'),
(23920, 'https://ror.org/0224tgs93', 'en', 1, 'https://ror.org/0224tgs93 Pamantasang Trinitas ng Asya Trinity University of Asia'),
(23921, 'https://ror.org/003w6kb85', 'no_lang_code', 1, 'https://ror.org/003w6kb85 Shikoku Gakuin University 四国学院大学'),
(23922, 'https://ror.org/0085wxm22', 'no_lang_code', 1, 'https://ror.org/0085wxm22 Seijoh University ę˜ŸåŸŽå¤§å­¦'),
(23923, 'https://ror.org/036fndg97', 'en', 1, 'https://ror.org/036fndg97 Madina Academy Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ł…ŲÆŁŠŁ†Ł‡'),
(23924, 'https://ror.org/05202v862', 'en', 1, 'https://ror.org/05202v862 Tarim University å””é‡ŒęœØå¤§å­¦'),
(23925, 'https://ror.org/01djkf495', 'en', 1, 'https://ror.org/01djkf495 BaiCheng Normal University ē™½åŸŽåøˆčŒƒå­¦é™¢'),
(23926, 'https://ror.org/02g3wgj66', 'en', 1, 'https://ror.org/02g3wgj66 Beijing Dance Academy åŒ—äŗ¬čˆžč¹ˆå­¦é™¢'),
(23927, 'https://ror.org/03y0w9190', 'en', 1, 'https://ror.org/03y0w9190 Beijing Film Academy åŒ—äŗ¬ē”µå½±å­¦é™¢'),
(23928, 'https://ror.org/05s0z8a66', 'en', 1, 'https://ror.org/05s0z8a66 Yokohama University of Pharmacy ęØŖęµœč–¬ē§‘å¤§å­¦'),
(23929, 'https://ror.org/02s5d1b23', 'en', 1, 'https://ror.org/02s5d1b23 Yokohama College of Commerce ęØŖęµœå•†ē§‘å¤§å­¦'),
(23930, 'https://ror.org/01mq0zx57', 'en', 1, 'https://ror.org/01mq0zx57 Virgen Milagrosa University Foundation'),
(23931, 'https://ror.org/03zwesg40', 'en', 1, 'https://ror.org/03zwesg40 Indonesia Open University Universitas Terbuka'),
(23932, 'https://ror.org/03te2zs36', 'en', 1, 'https://ror.org/03te2zs36 Beijing Language and Culture University åŒ—äŗ¬čÆ­čØ€å¤§å­¦'),
(23933, 'https://ror.org/02bn7h511', 'en', 1, 'https://ror.org/02bn7h511 University of La Salette'),
(23934, 'https://ror.org/02qf7df19', 'en', 1, 'https://ror.org/02qf7df19 Central Luzon State University Pamantasang Estado sa Gitnang Luzon'),
(23935, 'https://ror.org/02hssg709', 'en', 1, 'https://ror.org/02hssg709 Adventist University of the Philippines'),
(23936, 'https://ror.org/01nsv4k44', 'id', 1, 'https://ror.org/01nsv4k44 Universitas Swadaya Gunung Jati'),
(23937, 'https://ror.org/03hkga097', 'en', 1, 'https://ror.org/03hkga097 Central Academy of Drama äø­å¤®ęˆå‰§å­¦é™¢'),
(23938, 'https://ror.org/056rhyt66', 'en', 1, 'https://ror.org/056rhyt66 Saint Paul University Surigao'),
(23939, 'https://ror.org/00nbyv331', 'en', 1, 'https://ror.org/00nbyv331 Central Academy of Fine Arts äø­å¤®ē¾ŽęœÆå­¦é™¢'),
(23940, 'https://ror.org/00kxb1h72', 'en', 1, 'https://ror.org/00kxb1h72 China Foreign Affairs University 外交学院'),
(23941, 'https://ror.org/01e0p8e37', 'en', 1, 'https://ror.org/01e0p8e37 China Youth University for Political Sciences äø­å›½é’å¹“ę”æę²»å­¦é™¢'),
(23942, 'https://ror.org/011xrgv27', 'en', 1, 'https://ror.org/011xrgv27 Leyte Normal University'),
(23943, 'https://ror.org/01c81a459', 'en', 1, 'https://ror.org/01c81a459 Holy Name University'),
(23944, 'https://ror.org/009323b35', 'id', 1, 'https://ror.org/009323b35 Universitas Sultan Fatah'),
(23945, 'https://ror.org/052q2t745', 'en', 1, 'https://ror.org/052q2t745 China Conservatory äø­å›½éŸ³ä¹å­¦é™¢'),
(23946, 'https://ror.org/05khqpb71', 'en', 1, 'https://ror.org/05khqpb71 University of International Business and Economics åÆ¹å¤–ē»ęµŽč“øę˜“å¤§å­¦'),
(23947, 'https://ror.org/01efqy167', 'en', 1, 'https://ror.org/01efqy167 Pambansang Pamantasan ng Tarlac Tarlac State University'),
(23948, 'https://ror.org/054m41m41', 'fr', 1, 'https://ror.org/054m41m41 Institut National du BĆ¢timent et des Travaux Publics'),
(23949, 'https://ror.org/05ms4pv23', 'en', 1, 'https://ror.org/05ms4pv23 Cagayan State University Pamantasang Estado sa Cagayan'),
(23950, 'https://ror.org/05djmm265', 'id', 1, 'https://ror.org/05djmm265 Universitas Hindu Indonesia'),
(23951, 'https://ror.org/007avbc90', 'en', 1, 'https://ror.org/007avbc90 Kansai University of Social Welfare é–¢č„æē¦ē„‰å¤§å­¦'),
(23952, 'https://ror.org/00cbhey71', 'en', 1, 'https://ror.org/00cbhey71 Changchun Normal University é•æę˜„åøˆčŒƒå¤§å­¦'),
(23953, 'https://ror.org/02xpf0x05', 'en', 1, 'https://ror.org/02xpf0x05 St. Paul University Philippines'),
(23954, 'https://ror.org/04az9eh24', 'en', 1, 'https://ror.org/04az9eh24 Jilin University of Finance and Economics å‰ęž—č“¢ē»å¤§å­¦'),
(23955, 'https://ror.org/059jntb51', 'en', 1, 'https://ror.org/059jntb51 Unibersidad ng Saint Louis University of Saint Louis'),
(23956, 'https://ror.org/025kxab11', 'en', 1, 'https://ror.org/025kxab11 Jilin College of the Arts å‰ęž—č‰ŗęœÆå­¦é™¢'),
(23957, 'https://ror.org/026k26b95', 'no_lang_code', 1, 'https://ror.org/026k26b95 Aomori Chuo Gakuin University é’ę£®äø­å¤®å­¦é™¢å¤§å­¦'),
(23958, 'https://ror.org/05sykgj25', 'en', 1, 'https://ror.org/05sykgj25 Pamantasan ng Hilagang Pilipinas University of Northern Philippines'),
(23959, 'https://ror.org/02asgt557', 'en', 1, 'https://ror.org/02asgt557 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų© / الأردن'),
(23960, 'https://ror.org/02wqs2q29', 'en', 1, 'https://ror.org/02wqs2q29 Western Mindanao State University'),
(23961, 'https://ror.org/018vvrr03', 'id', 1, 'https://ror.org/018vvrr03 Universitas Gajayana Malang'),
(23962, 'https://ror.org/01mz1bm43', 'id', 1, 'https://ror.org/01mz1bm43 Universitas Flores'),
(23963, 'https://ror.org/002hbfc50', 'en', 1, 'https://ror.org/002hbfc50 Jilin Jianzhu University å‰ęž—å»ŗē­‘å¤§å­¦'),
(23964, 'https://ror.org/05417j740', 'en', 1, 'https://ror.org/05417j740 State University of Gorontalo Universitas Negeri Gorontalo'),
(23965, 'https://ror.org/039xekb14', 'en', 1, 'https://ror.org/039xekb14 Amman Arab University Ų¬Ų§Ł…Ų¹Ų© عمان Ų§Ł„Ų¹Ų±ŲØŁŠŲ© للدراسات Ų§Ł„Ų¹Ł„ŁŠŲ§ الخاصة'),
(23966, 'https://ror.org/03q9g2k63', 'id', 1, 'https://ror.org/03q9g2k63 Universitas Muhammadiyah Gorontalo'),
(23967, 'https://ror.org/01hq9q866', 'no_lang_code', 1, 'https://ror.org/01hq9q866 Hirosaki Gakuin University 弘前学院大学'),
(23968, 'https://ror.org/00f8d9297', 'id', 1, 'https://ror.org/00f8d9297 Universitas Muhammadiyah Gresik'),
(23969, 'https://ror.org/020mrfq61', 'en', 1, 'https://ror.org/020mrfq61 Changzhou Institute of Technology åøøå·žå·„å­¦é™¢'),
(23970, 'https://ror.org/013mk4f48', 'id', 1, 'https://ror.org/013mk4f48 Universitas Wiralodra'),
(23971, 'https://ror.org/029zx7z39', 'en', 1, 'https://ror.org/029zx7z39 Aomori Public University é’ę£®å…¬ē«‹å¤§å­¦');
INSERT INTO `rors` VALUES
(23972, 'https://ror.org/04ke9yr06', 'en', 1, 'https://ror.org/04ke9yr06 Seisa University ę˜Ÿę§Žå¤§å­¦'),
(23973, 'https://ror.org/0330rc745', 'en', 1, 'https://ror.org/0330rc745 Ashikaga University 足利巄愭大学'),
(23974, 'https://ror.org/056fhh809', 'en', 1, 'https://ror.org/056fhh809 Ashiya University čŠ¦å±‹å¤§å­¦'),
(23975, 'https://ror.org/01d357781', 'en', 1, 'https://ror.org/01d357781 Institut Bisnis dan Informatika Kwik Kian Gie Kwik Kian Gie School of Business'),
(23976, 'https://ror.org/01jra8x56', 'id', 1, 'https://ror.org/01jra8x56 Institut Kesenian Jakarta'),
(23977, 'https://ror.org/02x3ztz93', 'en', 1, 'https://ror.org/02x3ztz93 Shoin University ę¾č”­å¤§å­¦'),
(23978, 'https://ror.org/05j412v70', 'en', 1, 'https://ror.org/05j412v70 Beppu University 刄府大学'),
(23979, 'https://ror.org/03vfnky71', 'en', 1, 'https://ror.org/03vfnky71 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(23980, 'https://ror.org/05580ht21', 'en', 1, 'https://ror.org/05580ht21 Chengdu Sport University ęˆéƒ½ä½“č‚²å­¦é™¢'),
(23981, 'https://ror.org/01khb1c27', 'en', 1, 'https://ror.org/01khb1c27 Sichuan Conservatory of Music 四川音乐学院'),
(23982, 'https://ror.org/03xyq7v33', 'en', 1, 'https://ror.org/03xyq7v33 Bunkyo Gakuin University 文京学院大学'),
(23983, 'https://ror.org/047mw5m74', 'en', 1, 'https://ror.org/047mw5m74 Jerash University Ų¬Ų§Ł…Ų¹Ų© Ų¬Ų±Ų“'),
(23984, 'https://ror.org/05wr48765', 'en', 1, 'https://ror.org/05wr48765 Chifeng University 赤峰学院'),
(23985, 'https://ror.org/04bmm0q23', 'en', 1, 'https://ror.org/04bmm0q23 Sichuan Fine Arts Institute å››å·ē¾ŽęœÆå­¦é™¢'),
(23986, 'https://ror.org/04pbams03', 'en', 1, 'https://ror.org/04pbams03 Perbanas Institute'),
(23987, 'https://ror.org/05db1pj03', 'en', 1, 'https://ror.org/05db1pj03 Dongbei University of Finance and Economics äøœåŒ—č“¢ē»å¤§å­¦'),
(23988, 'https://ror.org/04s8jdf66', 'en', 1, 'https://ror.org/04s8jdf66 LASALLE College of the Arts Maktab Seni Lasalle ę‹‰čØå°”č‰ŗęœÆå­¦é™¢'),
(23989, 'https://ror.org/00cae8n39', 'en', 1, 'https://ror.org/00cae8n39 Yessenov University ŠØ. Есенов атынГағы Университет'),
(23990, 'https://ror.org/01pjme364', 'en', 1, 'https://ror.org/01pjme364 Nanyang Academy of Fine Arts ą®Øą®©ąÆą®Æą®¾ą®™ąÆ ą®…ą®•ą®¾ą®Ÿą®®ą®æ ą®†ą®ƒą®ŖąÆ ą®ƒą®ŖąÆˆą®©ąÆ ą®†ą®°ąÆą®ŸąÆą®øąÆ'),
(23991, 'https://ror.org/05540h853', 'no_lang_code', 1, 'https://ror.org/05540h853 Chiba Keizai University åƒč‘‰ēµŒęøˆå¤§å­¦'),
(23992, 'https://ror.org/03rmfrm44', 'en', 1, 'https://ror.org/03rmfrm44 Institute of Information Security ęƒ…å ±ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£å¤§å­¦é™¢å¤§å­¦'),
(23993, 'https://ror.org/04bs5h869', 'id', 1, 'https://ror.org/04bs5h869 Institut Teknologi dan Bisnis Kalbe'),
(23994, 'https://ror.org/00g0t4m04', 'en', 1, 'https://ror.org/00g0t4m04 Japanese Red Cross College of Nursing ę—„ęœ¬čµ¤åå­—ēœ‹č­·å¤§å­¦'),
(23995, 'https://ror.org/01wx5mw98', 'en', 1, 'https://ror.org/01wx5mw98 Buddhist and Pali University of Sri Lanka ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶¶ą·žą¶Æą·Šą¶° ą·„ą· ą¶“ą·ą¶½ą·’ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(23996, 'https://ror.org/046r6pk12', 'en', 1, 'https://ror.org/046r6pk12 Guangzhou Sport University å¹æå·žä½“č‚²å­¦é™¢'),
(23997, 'https://ror.org/04hx9jj82', 'en', 1, 'https://ror.org/04hx9jj82 Kanda University of International Studies ē„žē”°å¤–čŖžå¤§å­¦'),
(23998, 'https://ror.org/056nwn519', 'en', 1, 'https://ror.org/056nwn519 Keiai University 敬愛大学'),
(23999, 'https://ror.org/02wmsc916', 'en', 1, 'https://ror.org/02wmsc916 Guizhou University č“µå·žå¤§å­¦'),
(24000, 'https://ror.org/00kgrdz47', 'en', 1, 'https://ror.org/00kgrdz47 Digital Hollywood University ćƒ‡ć‚øć‚æćƒ«ćƒćƒŖć‚¦ćƒƒćƒ‰å¤§å­¦'),
(24001, 'https://ror.org/004eeze55', 'en', 1, 'https://ror.org/004eeze55 Hainan Medical University ęµ·å—åŒ»å­¦é™¢'),
(24002, 'https://ror.org/01r61sr78', 'en', 1, 'https://ror.org/01r61sr78 China Academy of Art äø­å›½ē¾ŽęœÆå­¦é™¢'),
(24003, 'https://ror.org/01ch6q924', 'en', 1, 'https://ror.org/01ch6q924 Globis University Graduate School of Management ć‚°ćƒ­ćƒ¼ćƒ“ć‚¹ēµŒå–¶å¤§å­¦é™¢å¤§å­¦'),
(24004, 'https://ror.org/043vmz451', 'en', 1, 'https://ror.org/043vmz451 Syrian Virtual University الجامعة Ų§Ł„Ų§ŁŲŖŲ±Ų§Ų¶ŁŠŲ© Ų§Ł„Ų³ŁˆŲ±ŁŠŲ©'),
(24005, 'https://ror.org/00ey9xa07', 'en', 1, 'https://ror.org/00ey9xa07 Harbin University å“ˆå°”ę»Øå­¦é™¢'),
(24006, 'https://ror.org/04whwem28', 'en', 1, 'https://ror.org/04whwem28 Japan College of Social Work ę—„ęœ¬ē¤¾ä¼šäŗ‹ę„­å¤§å­¦'),
(24007, 'https://ror.org/0005k2a75', 'id', 1, 'https://ror.org/0005k2a75 Universitas Suryadarma'),
(24008, 'https://ror.org/02vx41k98', 'en', 1, 'https://ror.org/02vx41k98 Hulunbuir University å‘¼ä¼¦č“å°”å­¦é™¢'),
(24009, 'https://ror.org/04ehpm154', 'en', 1, 'https://ror.org/04ehpm154 West Kazakhstan Marat Ospanov State Medical University М.ŠžŃŠæŠ°Š½Š¾Š² атынГағы Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ мемлекеттік меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(24010, 'https://ror.org/02e2nnq08', 'en', 1, 'https://ror.org/02e2nnq08 Shandong University of Finance and Economics å±±äøœč“¢ē»å¤§å­¦'),
(24011, 'https://ror.org/00cwwxh37', 'id', 1, 'https://ror.org/00cwwxh37 Universitas Esa Unggul'),
(24012, 'https://ror.org/00td5v713', 'en', 1, 'https://ror.org/00td5v713 National Institute of Public Administration المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ لل؄دارة العامة'),
(24013, 'https://ror.org/00qjgk605', 'en', 1, 'https://ror.org/00qjgk605 Mercu Buana University Universitas Mercu Buana'),
(24014, 'https://ror.org/00hnq3t35', 'id', 1, 'https://ror.org/00hnq3t35 Universitas Satyagama'),
(24015, 'https://ror.org/02q35ve03', 'en', 1, 'https://ror.org/02q35ve03 Kazakh Ablai Khan University of International Relations and World Languages ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹ Šø мировых ŃŠ·Ń‹ŠŗŠ¾Š² имени Абылай хана ŅšŠ°Š·Š°Ņ› халықаралық қатынастар және әлем тілГері ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(24016, 'https://ror.org/00vb9c215', 'en', 1, 'https://ror.org/00vb9c215 Universitas Bunda Mulia University of Bunda Mulia'),
(24017, 'https://ror.org/03wcw7m36', 'en', 1, 'https://ror.org/03wcw7m36 Business Breakthrough University ćƒ“ć‚øćƒć‚¹ćƒ»ćƒ–ćƒ¬ćƒ¼ć‚Æć‚¹ćƒ«ćƒ¼å¤§å­¦'),
(24018, 'https://ror.org/03a8rwx10', 'en', 1, 'https://ror.org/03a8rwx10 Universitas YARSI Yarsi University'),
(24019, 'https://ror.org/04ztbty92', 'id', 1, 'https://ror.org/04ztbty92 Institut Ilmu Sosial dan Ilmu Politik Jakarta'),
(24020, 'https://ror.org/04nn8h763', 'id', 1, 'https://ror.org/04nn8h763 Universitas Azzahra'),
(24021, 'https://ror.org/02g847680', 'en', 1, 'https://ror.org/02g847680 University of Kalamoon Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ł„Ł…ŁˆŁ† الخاصة'),
(24022, 'https://ror.org/05a4v8r91', 'en', 1, 'https://ror.org/05a4v8r91 Yunnan Arts University äŗ‘å—č‰ŗęœÆå­¦é™¢'),
(24023, 'https://ror.org/05vzasa79', 'en', 1, 'https://ror.org/05vzasa79 Kurmangazy Kazakh National Conservatory ŅšŠ°Š·Š°Ņ› ұлттық ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃŃŃ‹'),
(24024, 'https://ror.org/05vewjh97', 'en', 1, 'https://ror.org/05vewjh97 Ministry of Internal Affairs of the Republic of Tajikistan Вазорати корҳои Гохилии Ņ¶ŃƒŠ¼Ņ³ŃƒŃ€ŠøŠø Тоҷикистон'),
(24025, 'https://ror.org/02m71k567', 'no_lang_code', 1, 'https://ror.org/02m71k567 Nishogakusha University äŗŒę¾å­øčˆå¤§å­¦'),
(24026, 'https://ror.org/008cmk776', 'id', 1, 'https://ror.org/008cmk776 Universitas Islam Attahiriyah'),
(24027, 'https://ror.org/04ysgxa85', 'en', 1, 'https://ror.org/04ysgxa85 Toho Gakuen School of Music ę”ęœ‹å­¦åœ’ éŸ³ę„½éƒØé–€'),
(24028, 'https://ror.org/02avqnk51', 'en', 1, 'https://ror.org/02avqnk51 Kazakh Academy of Sport and Tourism ŅšŠ°Š·Š°Ņ› спорт және Ń‚ŃƒŃ€ŠøŠ·Š¼ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(24029, 'https://ror.org/031px5f40', 'id', 1, 'https://ror.org/031px5f40 Universitas Muhammadiyah Jakarta'),
(24030, 'https://ror.org/05pc6w891', 'en', 1, 'https://ror.org/05pc6w891 Kazakh National Medical University ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. Š”. ŠŃŃ„ŠµŠ½Š“ŠøŃŃ€Š¾Š²Š° ŅšŠ°Š·Š°Ņ› ұлттық меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(24031, 'https://ror.org/01wqn3353', 'id', 1, 'https://ror.org/01wqn3353 Universitas Muhammadiyah Prof Dr Hamka'),
(24032, 'https://ror.org/05hfpw879', 'en', 1, 'https://ror.org/05hfpw879 Chiba Institute of Science åƒč‘‰ē§‘å­¦å¤§å­¦'),
(24033, 'https://ror.org/04g8bba17', 'id', 1, 'https://ror.org/04g8bba17 Universitas Paramadina'),
(24034, 'https://ror.org/025km4h87', 'en', 1, 'https://ror.org/025km4h87 Gansu Institute of Political Science and Law ē”˜č‚ƒę”æę³•å­¦é™¢'),
(24035, 'https://ror.org/05w6dwp35', 'no_lang_code', 1, 'https://ror.org/05w6dwp35 Chikushi Jogakuen University ē­‘ē“«å„³å­¦åœ’å¤§å­¦'),
(24036, 'https://ror.org/04v7yv031', 'en', 1, 'https://ror.org/04v7yv031 Lanzhou University of Finance and Economics å…°å·žč“¢ē»å¤§å­¦'),
(24037, 'https://ror.org/01rn0fp76', 'en', 1, 'https://ror.org/01rn0fp76 Kazakh-British Technical University ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾-Британский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½-Британ техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(24038, 'https://ror.org/05f211872', 'en', 1, 'https://ror.org/05f211872 LEC Tokyo Legal Mind University LECę±äŗ¬ćƒŖćƒ¼ć‚¬ćƒ«ćƒžć‚¤ćƒ³ćƒ‰å¤§å­¦é™¢å¤§å­¦'),
(24039, 'https://ror.org/04q9yc293', 'id', 1, 'https://ror.org/04q9yc293 Universitas Tama Jagakarsa'),
(24040, 'https://ror.org/02bvvhn54', 'en', 1, 'https://ror.org/02bvvhn54 Abai Kazakh National Pedagogical University Абай атынГағы ŅšŠ°Š·Š°Ņ› ұлттық пеГагогика ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(24041, 'https://ror.org/058w2q710', 'id', 1, 'https://ror.org/058w2q710 Universitas Wiraswasta Indonesia'),
(24042, 'https://ror.org/01pt4x202', 'en', 1, 'https://ror.org/01pt4x202 Kyushu Institute of Information Sciences ä¹å·žęƒ…å ±å¤§å­¦'),
(24043, 'https://ror.org/04z484c04', 'id', 1, 'https://ror.org/04z484c04 Universitas Borobudur'),
(24044, 'https://ror.org/03jqhsn85', 'no_lang_code', 1, 'https://ror.org/03jqhsn85 Seinan Gakuin University č„æå—å­¦é™¢å¤§å­¦'),
(24045, 'https://ror.org/04yntn793', 'id', 1, 'https://ror.org/04yntn793 Universitas Darma Persada'),
(24046, 'https://ror.org/046xqdg50', 'id', 1, 'https://ror.org/046xqdg50 Universitas Ibnu Chaldun Jakarta'),
(24047, 'https://ror.org/0476td389', 'en', 1, 'https://ror.org/0476td389 Tibet Autonomous Region People''s Hospital č„æč—č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(24048, 'https://ror.org/023ntbt15', 'en', 1, 'https://ror.org/023ntbt15 Japanese Red Cross Toyota College of Nursing ę—„ęœ¬čµ¤åå­—č±Šē”°ēœ‹č­·å¤§å­¦'),
(24049, 'https://ror.org/00rhgqg04', 'en', 1, 'https://ror.org/00rhgqg04 Almaty Management University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ бизнеса Єалықаралық бизнес Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(24050, 'https://ror.org/02s8x5a25', 'en', 1, 'https://ror.org/02s8x5a25 Suleyman Demirel University Дүлейман Демирел атынГағы Университет'),
(24051, 'https://ror.org/018jdfk45', 'en', 1, 'https://ror.org/018jdfk45 Jiaying University å˜‰åŗ”å­¦é™¢'),
(24052, 'https://ror.org/045mxyc94', 'en', 1, 'https://ror.org/045mxyc94 Turan University Тұран Университеті Университет Š¢ŃƒŃ€Š°Š½'),
(24053, 'https://ror.org/036prgm77', 'en', 1, 'https://ror.org/036prgm77 Honghe University'),
(24054, 'https://ror.org/03xqzzq44', 'id', 1, 'https://ror.org/03xqzzq44 Christian University of Indonesia Universitas Kristen Indonesia'),
(24055, 'https://ror.org/03g8fqe42', 'id', 1, 'https://ror.org/03g8fqe42 Universitas Mpu Tantular'),
(24056, 'https://ror.org/02pd46y72', 'id', 1, 'https://ror.org/02pd46y72 Universitas Respati Indonesia'),
(24057, 'https://ror.org/04htq1b81', 'id', 1, 'https://ror.org/04htq1b81 Universitas Surapati'),
(24058, 'https://ror.org/031bayg24', 'en', 1, 'https://ror.org/031bayg24 Cenderawasih University Universitas Cenderawasih'),
(24059, 'https://ror.org/03k44kp71', 'id', 1, 'https://ror.org/03k44kp71 Universitas Darul Ulum'),
(24060, 'https://ror.org/00fqfkm54', 'no_lang_code', 1, 'https://ror.org/00fqfkm54 Matsuyama Shinonome College ę¾å±±ę±é›²å„³å­å¤§å­¦'),
(24061, 'https://ror.org/01km1t027', 'id', 1, 'https://ror.org/01km1t027 Universitas Pesantren Tinggi Darul Ulum Jombang'),
(24062, 'https://ror.org/01rkrzs64', 'en', 1, 'https://ror.org/01rkrzs64 Hokkaido Bunkyo University åŒ—ęµ·é“ę–‡ę•™å¤§å­¦'),
(24063, 'https://ror.org/05j1vt166', 'no_lang_code', 1, 'https://ror.org/05j1vt166 Fuji Tokoha University åÆŒå£«åøøč‘‰å¤§å­¦'),
(24064, 'https://ror.org/01pkeax38', 'en', 1, 'https://ror.org/01pkeax38 Saitama Institute of Technology åŸ¼ēŽ‰å·„ę„­å¤§å­¦'),
(24065, 'https://ror.org/01845nt85', 'id', 1, 'https://ror.org/01845nt85 Universitas Pendidikan Putra Indonesia Cianjur'),
(24066, 'https://ror.org/0457pxg28', 'en', 1, 'https://ror.org/0457pxg28 Nanjing University of the Arts å—äŗ¬č‰ŗęœÆå­¦é™¢'),
(24067, 'https://ror.org/01k9bqa11', 'en', 1, 'https://ror.org/01k9bqa11 Ehime Prefectural University of Health Science ę„›åŖ›ēœŒē«‹åŒ»ē™‚ęŠ€č”“å¤§å­¦'),
(24068, 'https://ror.org/04gy42h78', 'en', 1, 'https://ror.org/04gy42h78 Nanjing Sport Institute å—äŗ¬ä½“č‚²å­¦é™¢'),
(24069, 'https://ror.org/02scgt846', 'id', 1, 'https://ror.org/02scgt846 Universitas Ngurah Rai'),
(24070, 'https://ror.org/03cjmb844', 'no_lang_code', 1, 'https://ror.org/03cjmb844 Fukuoka Jo Gakuin University ē¦å²”å„³å­¦é™¢å¤§å­¦'),
(24071, 'https://ror.org/0302nvj93', 'id', 1, 'https://ror.org/0302nvj93 Universitas Nusa Lontar Rote'),
(24072, 'https://ror.org/01h8y6y39', 'en', 1, 'https://ror.org/01h8y6y39 Panzhihua University ę”€ęžčŠ±å­¦é™¢'),
(24073, 'https://ror.org/05081wb05', 'no_lang_code', 1, 'https://ror.org/05081wb05 Yang-En University 仰恩大学'),
(24074, 'https://ror.org/024etxn40', 'en', 1, 'https://ror.org/024etxn40 S.Seifullin Kazakh Agro Technical University Š”. Š”ŠµŠ¹Ń„ŃƒŠ»Š»ŠøŠ½ атынГағы қазақ агротехникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(24075, 'https://ror.org/01k1ffv36', 'en', 1, 'https://ror.org/01k1ffv36 Finance and Economics Institute of Tajikistan'),
(24076, 'https://ror.org/03mw9fr44', 'en', 1, 'https://ror.org/03mw9fr44 Atyrau University of Oil and Gas ŠŃ‚Ń‹Ń€Š°Ńƒ мұнай және газ Университеті'),
(24077, 'https://ror.org/02k517853', 'en', 1, 'https://ror.org/02k517853 Luxun Academy of Fine Arts'),
(24078, 'https://ror.org/04z3jpx43', 'en', 1, 'https://ror.org/04z3jpx43 Shenyang Conservatory of Music ę²ˆé˜³éŸ³ä¹å­¦é™¢'),
(24079, 'https://ror.org/02pfsj857', 'en', 1, 'https://ror.org/02pfsj857 Shenyang Institute of Engineering ę²ˆé˜³å·„ēØ‹å­¦é™¢'),
(24080, 'https://ror.org/00m77t269', 'id', 1, 'https://ror.org/00m77t269 Institut Ilmu Kesehatan Bhakti Wiyata'),
(24081, 'https://ror.org/048bfyy22', 'id', 1, 'https://ror.org/048bfyy22 Universitas Islam Kadiri'),
(24082, 'https://ror.org/040n9c877', 'id', 1, 'https://ror.org/040n9c877 Universitas Kadiri'),
(24083, 'https://ror.org/03zjb7z20', 'en', 1, 'https://ror.org/03zjb7z20 Fukushima University ē¦å³¶å¤§å­¦'),
(24084, 'https://ror.org/015dapv07', 'en', 1, 'https://ror.org/015dapv07 Tajik State Pedagogical University Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии омӯзгории Тоҷикистон ба номи ДаГриГГин Айнӣ ТаГжикский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š”.Айни'),
(24085, 'https://ror.org/01exjg943', 'no_lang_code', 1, 'https://ror.org/01exjg943 Fukuyama Heisei University ē¦å±±å¹³ęˆå¤§å­¦'),
(24086, 'https://ror.org/05kz9ez20', 'id', 1, 'https://ror.org/05kz9ez20 Universitas Pawyatan Daha Kediri'),
(24087, 'https://ror.org/00v76vw28', 'en', 1, 'https://ror.org/00v76vw28 Tajik State University of Commerce Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии тиҷорати Тоҷикистон ТаГжикский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ коммерции'),
(24088, 'https://ror.org/05kz0b404', 'en', 1, 'https://ror.org/05kz0b404 Shenyang Sport University ę²ˆé˜³ä½“č‚²å­¦é™¢'),
(24089, 'https://ror.org/02bvwpb24', 'en', 1, 'https://ror.org/02bvwpb24 Kokshetau State University ŠšŠ¾ŠŗŃˆŠµŃ‚Š°ŃƒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠšÓ©ŠŗŃˆŠµŃ‚Š°Ńƒ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(24090, 'https://ror.org/024ba6473', 'en', 1, 'https://ror.org/024ba6473 Hebei Institute of Physical Education ę²³åŒ—ä½“č‚²å­¦é™¢'),
(24091, 'https://ror.org/018jek817', 'no_lang_code', 1, 'https://ror.org/018jek817 Shuchiin University 種智院大学'),
(24092, 'https://ror.org/032f9e998', 'id', 1, 'https://ror.org/032f9e998 Universitas Muhammadiyah Kendari'),
(24093, 'https://ror.org/024d7eg57', 'id', 1, 'https://ror.org/024d7eg57 Universitas Sulawesi Tenggara'),
(24094, 'https://ror.org/045cv1381', 'no_lang_code', 1, 'https://ror.org/045cv1381 Tajik Agrarian University Shirinsho Shotemur Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø аграрии Тоҷикистон ТаГжикский аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(24095, 'https://ror.org/02emvsg33', 'en', 1, 'https://ror.org/02emvsg33 Tajik State Medical University Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии тиббии Тоҷикистон ба номи Абӯалӣ Ибни Дино ТаГжикский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(24096, 'https://ror.org/00pqc4v87', 'id', 1, 'https://ror.org/00pqc4v87 Universitas Widya Dharma Klaten'),
(24097, 'https://ror.org/04bccg972', 'en', 1, 'https://ror.org/04bccg972 Tajik National University Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии миллии Тоҷикистон ТаГжикский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(24098, 'https://ror.org/01xydej26', 'id', 1, 'https://ror.org/01xydej26 Universitas Mahaputra Muhammad Yamin'),
(24099, 'https://ror.org/059pgr720', 'en', 1, 'https://ror.org/059pgr720 Gifu Women''s University 岐阜儳子大学'),
(24100, 'https://ror.org/00rfn0469', 'en', 1, 'https://ror.org/00rfn0469 Tangshan College 唐山学院'),
(24101, 'https://ror.org/02jdm8069', 'en', 1, 'https://ror.org/02jdm8069 Tangshan Normal University å”å±±åøˆčŒƒå¤§å­¦'),
(24102, 'https://ror.org/04155gf20', 'en', 1, 'https://ror.org/04155gf20 Institute of Technologists ć‚‚ć®ć¤ćć‚Šå¤§å­¦'),
(24103, 'https://ror.org/039dz9590', 'en', 1, 'https://ror.org/039dz9590 Tianjin Conservatory of Music å¤©ę“„éŸ³ä¹å­¦é™¢'),
(24104, 'https://ror.org/05pg3mb97', 'en', 1, 'https://ror.org/05pg3mb97 Muria Kudus University Universitas Muria Kudus'),
(24105, 'https://ror.org/05wj18248', 'en', 1, 'https://ror.org/05wj18248 Hachinohe Institute of Technology å…«ęˆøå·„ę„­å¤§å­¦'),
(24106, 'https://ror.org/0417k2898', 'en', 1, 'https://ror.org/0417k2898 Innovative University of Eurasia Š˜Š½Š½Š¾Š²Š°Ń†ŠøŠ¾Š½Š½Ń‹Š¹ Евразийский Университет'),
(24107, 'https://ror.org/05c6ejt42', 'en', 1, 'https://ror.org/05c6ejt42 Nihon Bunka University ę—„ęœ¬ę–‡åŒ–å¤§å­¦'),
(24108, 'https://ror.org/0194nje30', 'id', 1, 'https://ror.org/0194nje30 Universitas Kuningan'),
(24109, 'https://ror.org/042aj7s67', 'id', 1, 'https://ror.org/042aj7s67 Universitas Muhammadiyah Kupang'),
(24110, 'https://ror.org/025p4jf48', 'en', 1, 'https://ror.org/025p4jf48 Tokyo Junshin University ę±äŗ¬ē“”åæƒå¤§å­¦'),
(24111, 'https://ror.org/02tc9zr52', 'en', 1, 'https://ror.org/02tc9zr52 Darul Ulum Islamic University Universitas Islam Darul Ulum Lamongan'),
(24112, 'https://ror.org/059nxy021', 'en', 1, 'https://ror.org/059nxy021 Tokyo Zokei University ę±äŗ¬é€ å½¢å¤§å­¦'),
(24113, 'https://ror.org/005j4qv80', 'no_lang_code', 1, 'https://ror.org/005j4qv80 Xinjiang Petroleum Society äø­å›½ēŸ³ę²¹å­¦ä¼š'),
(24114, 'https://ror.org/01sgknf35', 'en', 1, 'https://ror.org/01sgknf35 Hakodate University 函館大学'),
(24115, 'https://ror.org/052crx470', 'id', 1, 'https://ror.org/052crx470 Universitas Islam Lamongan'),
(24116, 'https://ror.org/005k0q572', 'en', 1, 'https://ror.org/005k0q572 Tajik State University of Law Business and Politics Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Давлатии Ņ²ŃƒŅ›ŃƒŅ›, Бизнес, ва Диёсати Тоҷикистон'),
(24117, 'https://ror.org/04frsmv44', 'no_lang_code', 1, 'https://ror.org/04frsmv44 Hamamatsu Gakuin University ęµœę¾å­¦é™¢å¤§å­¦'),
(24118, 'https://ror.org/01gpyzk95', 'en', 1, 'https://ror.org/01gpyzk95 Samudra University Universitas Samudra'),
(24119, 'https://ror.org/010kbv636', 'en', 1, 'https://ror.org/010kbv636 Hubei Institute of Fine Arts ę¹–åŒ—ē¾ŽęœÆå­¦é™¢'),
(24120, 'https://ror.org/03c21xx79', 'en', 1, 'https://ror.org/03c21xx79 Malikussaleh University Universitas Malikussaleh'),
(24121, 'https://ror.org/02cd6sx47', 'en', 1, 'https://ror.org/02cd6sx47 Seirei Christopher University č–éš·ć‚ÆćƒŖć‚¹ćƒˆćƒ•ć‚”ćƒ¼å¤§å­¦'),
(24122, 'https://ror.org/04q1n2n82', 'en', 1, 'https://ror.org/04q1n2n82 Shizuoka University of Art and Culture é™å²”ę–‡åŒ–čŠøč”“å¤§å­¦'),
(24123, 'https://ror.org/00dgyv454', 'en', 1, 'https://ror.org/00dgyv454 Fuji University 富士大学'),
(24124, 'https://ror.org/00c4wmy51', 'no_lang_code', 1, 'https://ror.org/00c4wmy51 Surugadai University é§æę²³å°å¤§å­¦'),
(24125, 'https://ror.org/025hwk980', 'en', 1, 'https://ror.org/025hwk980 South Kazakhstan Medical Academy ŠžŅ£Ń‚ŅÆŃŃ‚Ń–Šŗ ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ меГицина Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(24126, 'https://ror.org/05008jp45', 'en', 1, 'https://ror.org/05008jp45 Northwest University of Politics and Law č„æåŒ—ę”æę³•å¤§å­¦'),
(24127, 'https://ror.org/03nff2e18', 'en', 1, 'https://ror.org/03nff2e18 Kulyab State University named after Abuabdullo Rudaki Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии Кӯлоб ба номи АбӯабГуллоҳи РӯГакӣ ŠšŃƒŠ»ŃŠ±ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(24128, 'https://ror.org/01bb96d76', 'id', 1, 'https://ror.org/01bb96d76 Universitas Musi Rawas'),
(24129, 'https://ror.org/04ebe6j88', 'en', 1, 'https://ror.org/04ebe6j88 Xi''an Academy of Fine Arts č„æå®‰ē¾ŽęœÆå­¦é™¢'),
(24130, 'https://ror.org/05xzaq362', 'en', 1, 'https://ror.org/05xzaq362 M.Auezov South Kazakhstan State University М.Ó˜Š£Š•Š—ŠžŠ’ ŠŠ¢Š«ŠŠ”ŠŅ’Š« ŠžŅ¢Š¢Ņ®Š”Š¢Š†Šš ŅšŠŠ—ŠŅšŠ”Š¢ŠŠ ŠœŠ•ŠœŠ›Š•ŠšŠ•Š¢Š¢Š†Šš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š†'),
(24131, 'https://ror.org/039xv0h05', 'en', 1, 'https://ror.org/039xv0h05 Xi''an Conservatory of Music č„æå®‰éŸ³ä¹å­¦é™¢'),
(24132, 'https://ror.org/029smmd76', 'en', 1, 'https://ror.org/029smmd76 University of Human Environments äŗŗé–“ē’°å¢ƒå¤§å­¦'),
(24133, 'https://ror.org/00pt5by23', 'en', 1, 'https://ror.org/00pt5by23 Xi''an Physical Education University 脿安体育学院'),
(24134, 'https://ror.org/05gcme754', 'en', 1, 'https://ror.org/05gcme754 Xi''an International Studies University 脿安外国语大学'),
(24135, 'https://ror.org/05c1r5z64', 'en', 1, 'https://ror.org/05c1r5z64 Xingtai University 邢台学院'),
(24136, 'https://ror.org/05tvatp40', 'no_lang_code', 1, 'https://ror.org/05tvatp40 Gifu Shotoku Gakuen University å²é˜œč–å¾³å­¦åœ’å¤§å­¦'),
(24137, 'https://ror.org/04yh6v913', 'en', 1, 'https://ror.org/04yh6v913 North Asia University ćƒŽćƒ¼ć‚¹ć‚¢ć‚øć‚¢å¤§å­¦'),
(24138, 'https://ror.org/042k5fe81', 'en', 1, 'https://ror.org/042k5fe81 Yancheng Teachers University'),
(24139, 'https://ror.org/030290415', 'en', 1, 'https://ror.org/030290415 Gifu College of Nursing å²é˜œēœŒē«‹ēœ‹č­·å¤§å­¦'),
(24140, 'https://ror.org/028h95t32', 'en', 1, 'https://ror.org/028h95t32 Ludong University 鲁东大学'),
(24141, 'https://ror.org/03rrkrc24', 'en', 1, 'https://ror.org/03rrkrc24 Shandong Institute of Business and Technology å±±äøœå·„å•†å­¦é™¢'),
(24142, 'https://ror.org/05hd9py65', 'id', 1, 'https://ror.org/05hd9py65 Universitas Merdeka Madiun'),
(24143, 'https://ror.org/04qa18r22', 'id', 1, 'https://ror.org/04qa18r22 Universitas Tidar'),
(24144, 'https://ror.org/00qgg7097', 'id', 1, 'https://ror.org/00qgg7097 Universitas Majalengka'),
(24145, 'https://ror.org/01gtvs751', 'no_lang_code', 1, 'https://ror.org/01gtvs751 Ahmet Yesevi University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ казахско-Ń‚ŃƒŃ€ŠµŃ†ŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š„. А. Яссави Єалықаралық қазақ-түрік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(24146, 'https://ror.org/058ange06', 'en', 1, 'https://ror.org/058ange06 Hebei University of Architecture ę²³åŒ—å»ŗē­‘å·„ēØ‹å­¦é™¢'),
(24147, 'https://ror.org/0033gxm08', 'en', 1, 'https://ror.org/0033gxm08 Mahambet Otemiusly West Kazakhstan University ŠœŠ°Ń…Š°Š¼Š±ŠµŃ‚ Өтемісов атынГағы Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ ŠœŠµŠ¼Š»ŠµŠŗŠµŃ‚Ń‚Ń–Šŗ Университеті'),
(24148, 'https://ror.org/01n7wbg90', 'no_lang_code', 1, 'https://ror.org/01n7wbg90 Higashiosaka College & Higashiosaka Junior College ę±å¤§é˜Ŗå¤§å­¦ćƒ»ę±å¤§é˜Ŗå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(24149, 'https://ror.org/01k12f283', 'no_lang_code', 1, 'https://ror.org/01k12f283 Dhurakij Pundit University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø˜ąøøąø£ąøąø“ąøˆąøšąø±ąø“ąø‘ąø“ąø•ąø¢ą¹Œ'),
(24150, 'https://ror.org/00krt8g98', 'id', 1, 'https://ror.org/00krt8g98 Institut Kesenian Makassar'),
(24151, 'https://ror.org/05xc0dy80', 'en', 1, 'https://ror.org/05xc0dy80 Osaka University of Commerce å¤§é˜Ŗå•†ę„­å¤§å­¦'),
(24152, 'https://ror.org/04bwss030', 'no_lang_code', 1, 'https://ror.org/04bwss030 Zhezkazgan Baikonurov University Жезказганский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Šž.А. Š‘Š°Š¹ŠŗŠ¾Š½ŃƒŃ€Š¾Š²Š°'),
(24153, 'https://ror.org/05t0s7273', 'en', 1, 'https://ror.org/05t0s7273 Kansai Gaidai University é–¢č„æå¤–å›½čŖžå¤§å­¦'),
(24154, 'https://ror.org/02dqf3w62', 'en', 1, 'https://ror.org/02dqf3w62 Osaka International University å¤§é˜Ŗå›½éš›å¤§å­¦'),
(24155, 'https://ror.org/03gvw6m91', 'en', 1, 'https://ror.org/03gvw6m91 Higher Institute of Business Administration المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ لادارة الاعمال'),
(24156, 'https://ror.org/03kc2e209', 'en', 1, 'https://ror.org/03kc2e209 Muhammadiyah University of Makassar Universitas Muhammadiyah Makassar'),
(24157, 'https://ror.org/03m7a5q02', 'en', 1, 'https://ror.org/03m7a5q02 University of the Thai Chamber of Commerce ดหาวณทยาคัยหอการค้าไทย'),
(24158, 'https://ror.org/00f5esq17', 'en', 1, 'https://ror.org/00f5esq17 Hijiyama University 比治山大学'),
(24159, 'https://ror.org/05fzw1z08', 'en', 1, 'https://ror.org/05fzw1z08 State University of Makassar Universitas Negeri Makassar'),
(24160, 'https://ror.org/039rewm17', 'en', 1, 'https://ror.org/039rewm17 Kasem Bundit University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøąø©ąø”ąøšąø±ąø“ąø‘ąø“ąø•'),
(24161, 'https://ror.org/05cn6ne53', 'id', 1, 'https://ror.org/05cn6ne53 Universitas Pancasakti Makassar'),
(24162, 'https://ror.org/002qeva03', 'en', 1, 'https://ror.org/002qeva03 Bangkok University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(24163, 'https://ror.org/04d8yqq70', 'en', 1, 'https://ror.org/04d8yqq70 Krirk University ดหาวณทยาคัยเกรณก'),
(24164, 'https://ror.org/02yypjn06', 'no_lang_code', 1, 'https://ror.org/02yypjn06 Hiroshima Jogakuin University åŗƒå³¶å„³å­¦é™¢å¤§å­¦'),
(24165, 'https://ror.org/03e0h3d81', 'en', 1, 'https://ror.org/03e0h3d81 Bansomdejchaopraya Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøšą¹‰ąø²ąø™ąøŖąø”ą¹€ąø”ą¹‡ąøˆą¹€ąøˆą¹‰ąø²ąøžąø£ąø°ąø¢ąø²'),
(24166, 'https://ror.org/02g8brk88', 'no_lang_code', 1, 'https://ror.org/02g8brk88 Phranakhon Si Ayutthaya Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøžąø£ąø°ąø™ąø„ąø£ąøØąø£ąøµąø­ąø¢ąøøąø˜ąø¢ąø²'),
(24167, 'https://ror.org/04a8tp355', 'id', 1, 'https://ror.org/04a8tp355 Universitas Teknologi Sulawesi'),
(24168, 'https://ror.org/00mns7418', 'no_lang_code', 1, 'https://ror.org/00mns7418 Hiroshima Kokusai Gakuin University åŗƒå³¶å›½éš›å­¦é™¢å¤§å­¦'),
(24169, 'https://ror.org/00et93377', 'en', 1, 'https://ror.org/00et93377 Rattana Bundit University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø±ąø•ąø™ąøšąø±ąø“ąø‘ąø“ąø•'),
(24170, 'https://ror.org/001et4e78', 'en', 1, 'https://ror.org/001et4e78 Hiroshima City University åŗƒå³¶åø‚ē«‹å¤§å­¦'),
(24171, 'https://ror.org/05n757p35', 'en', 1, 'https://ror.org/05n757p35 Hiroshima Shudo University åŗƒå³¶äæ®é“å¤§å­¦'),
(24172, 'https://ror.org/04ec26n40', 'en', 1, 'https://ror.org/04ec26n40 Saint John''s University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø‹ąø™ąø•ą¹Œąøˆąø­ąø«ą¹Œąø™'),
(24173, 'https://ror.org/00g0p9k78', 'en', 1, 'https://ror.org/00g0p9k78 Onomichi City University 尾道市立大学'),
(24174, 'https://ror.org/00g9rmg66', 'en', 1, 'https://ror.org/00g9rmg66 Institut Pertanian Malang'),
(24175, 'https://ror.org/0311whq26', 'en', 1, 'https://ror.org/0311whq26 St Theresa International College ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ ą¹€ąø‹ąø™ąø•ą¹Œą¹€ąø—ą¹€ąø£ąø‹ąø²'),
(24176, 'https://ror.org/00r6nzx24', 'en', 1, 'https://ror.org/00r6nzx24 Ibaraki Christian University čŒØåŸŽć‚­ćƒŖć‚¹ćƒˆę•™å¤§å­¦'),
(24177, 'https://ror.org/0212gyx73', 'en', 1, 'https://ror.org/0212gyx73 Batumi Shota Rustaveli State University Š‘Š°Ń‚ŃƒŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шота Š ŃƒŃŃ‚авели įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒØįƒįƒ—įƒ įƒ įƒ£įƒ”įƒ—įƒįƒ•įƒ”įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24178, 'https://ror.org/01qne9c81', 'en', 1, 'https://ror.org/01qne9c81 St. Catherine University č–ć‚«ć‚æćƒŖćƒŠå¤§å­¦'),
(24179, 'https://ror.org/001wjeh94', 'en', 1, 'https://ror.org/001wjeh94 Hokusho University åŒ—ēæ”å¤§å­¦'),
(24180, 'https://ror.org/035367g48', 'no_lang_code', 1, 'https://ror.org/035367g48 Tomakomai Komazawa University č‹«å°ē‰§é§’ę¾¤å¤§å­¦'),
(24181, 'https://ror.org/01bdmvf66', 'id', 1, 'https://ror.org/01bdmvf66 Institut Teknologi Nasional Malang'),
(24182, 'https://ror.org/05ghynn27', 'id', 1, 'https://ror.org/05ghynn27 Universitas Islam Malang'),
(24183, 'https://ror.org/02kvrk655', 'en', 1, 'https://ror.org/02kvrk655 Universitas Katolik Widya Karya Malang Widya Karya Catholic University'),
(24184, 'https://ror.org/01s0tbs34', 'en', 1, 'https://ror.org/01s0tbs34 Sukhishvili Teaching University'),
(24185, 'https://ror.org/01rtkeb16', 'id', 1, 'https://ror.org/01rtkeb16 Universitas Merdeka Malang'),
(24186, 'https://ror.org/01j1wt659', 'id', 1, 'https://ror.org/01j1wt659 Universitas Muhammadiyah Malang'),
(24187, 'https://ror.org/015k56t61', 'id', 1, 'https://ror.org/015k56t61 Universitas Tribhuwana Tunggadewi'),
(24188, 'https://ror.org/02dzzka09', 'no_lang_code', 1, 'https://ror.org/02dzzka09 Sungkyul University'),
(24189, 'https://ror.org/0509ndt57', 'en', 1, 'https://ror.org/0509ndt57 Namseoul University ė‚Øģ„œģšøėŒ€ķ•™źµ'),
(24190, 'https://ror.org/03nfkpr39', 'en', 1, 'https://ror.org/03nfkpr39 Cheongju National University of Education ģ²­ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(24191, 'https://ror.org/04fy6jb97', 'en', 1, 'https://ror.org/04fy6jb97 King Mongkut''s University of Technology North Bangkok ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ąøžąø£ąø°ąø™ąø„ąø£ą¹€ąø«ąø™ąø·ąø­'),
(24192, 'https://ror.org/05wgsx832', 'en', 1, 'https://ror.org/05wgsx832 Kkottongnae University'),
(24193, 'https://ror.org/01b1rvg28', 'en', 1, 'https://ror.org/01b1rvg28 Daegu Arts University ėŒ€źµ¬ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(24194, 'https://ror.org/042jsgw44', 'en', 1, 'https://ror.org/042jsgw44 Chinju National University of Education ģ§„ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(24195, 'https://ror.org/05986n320', 'en', 1, 'https://ror.org/05986n320 Akaki Tsereteli State University Ō±ÕÆÕ”ÕÆÕ« Ō¾Õ„Ö€Õ„Õ©Õ„Õ¬Õ«Õ« Õ”Õ¶Õ¾Õ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ įƒ„įƒ£įƒ—įƒįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24196, 'https://ror.org/04hjv8v27', 'id', 1, 'https://ror.org/04hjv8v27 Universitas Nusantara Manado'),
(24197, 'https://ror.org/03j0zym75', 'en', 1, 'https://ror.org/03j0zym75 Rajapark Institute ąøŖąø–ąø²ąøšąø±ąø™ąø£ąø±ąøŠąø•ą¹Œąø ąø²ąø„ąø¢ą¹Œ'),
(24198, 'https://ror.org/008bbzm95', 'en', 1, 'https://ror.org/008bbzm95 Korea Nazarene University ė‚˜ģ‚¬ė ›ėŒ€ķ•™źµ'),
(24199, 'https://ror.org/04gpajp33', 'id', 1, 'https://ror.org/04gpajp33 North Sulawesi University of Technology Universitas Teknologi Sulawesi Utara'),
(24200, 'https://ror.org/03016c374', 'en', 1, 'https://ror.org/03016c374 Chungwoon University ģ²­ģš“ėŒ€ķ•™źµ'),
(24201, 'https://ror.org/01y56kp76', 'en', 1, 'https://ror.org/01y56kp76 Southeast Bangkok College ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø‹ąø²ąø˜ą¹Œąø­ąøµąøŖąø—ą¹Œąøšąø²ąø‡ąøąø­ąø'),
(24202, 'https://ror.org/02s5s5e14', 'en', 1, 'https://ror.org/02s5s5e14 Daegu National University of Education ėŒ€źµ¬źµģœ”ėŒ€ķ•™źµ'),
(24203, 'https://ror.org/05ehpzq05', 'en', 1, 'https://ror.org/05ehpzq05 Korea Baptist Theological University and Seminary ģ¹Øė”€ģ‹ ķ•™ėŒ€ķ•™źµ'),
(24204, 'https://ror.org/05k4ves29', 'en', 1, 'https://ror.org/05k4ves29 University of Marketing and Distribution Sciences ęµé€šē§‘å­¦å¤§å­¦'),
(24205, 'https://ror.org/02kqv7v54', 'en', 1, 'https://ror.org/02kqv7v54 Baika Women''s University ę¢…čŠ±å„³å­å¤§å­¦'),
(24206, 'https://ror.org/009mysd22', 'no_lang_code', 1, 'https://ror.org/009mysd22 Otemon Gakuin University 追手門学院大学'),
(24207, 'https://ror.org/04na2vb51', 'no_lang_code', 1, 'https://ror.org/04na2vb51 Tsukuba Gakuin University 筑波学院大学'),
(24208, 'https://ror.org/0473nvz85', 'en', 1, 'https://ror.org/0473nvz85 Hanbuk University'),
(24209, 'https://ror.org/01pxek286', 'en', 1, 'https://ror.org/01pxek286 Thongsook College วณทยาคัยทองสุข'),
(24210, 'https://ror.org/05y7b4225', 'en', 1, 'https://ror.org/05y7b4225 Hanzhong University ķ•œģ¤‘ėŒ€ķ•™źµ'),
(24211, 'https://ror.org/04a03m737', 'id', 1, 'https://ror.org/04a03m737 Universitas 45 Mataram'),
(24212, 'https://ror.org/015q2z284', 'en', 1, 'https://ror.org/015q2z284 Tsukuba International University ć¤ćć°å›½éš›å¤§å­¦'),
(24213, 'https://ror.org/021p07t45', 'id', 1, 'https://ror.org/021p07t45 Universitas Gunung Rinjani'),
(24214, 'https://ror.org/02qn0vb48', 'en', 1, 'https://ror.org/02qn0vb48 Chiba University of Commerce åƒč‘‰å•†ē§‘å¤§å­¦'),
(24215, 'https://ror.org/04hah6r58', 'en', 1, 'https://ror.org/04hah6r58 Asian University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø­ą¹€ąøŠąøµąø¢ąø™'),
(24216, 'https://ror.org/00cgkxv41', 'en', 1, 'https://ror.org/00cgkxv41 Buriram Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøšąøøąø£ąøµąø£ąø±ąø”ąø¢ą¹Œ'),
(24217, 'https://ror.org/03sf7t726', 'en', 1, 'https://ror.org/03sf7t726 Gongju National University of Education ź³µģ£¼źµģœ”ėŒ€ķ•™źµ'),
(24218, 'https://ror.org/05yqeww58', 'en', 1, 'https://ror.org/05yqeww58 Rajabhat Rajanagarindra University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø£ąø²ąøŠąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(24219, 'https://ror.org/01tqhyj40', 'en', 1, 'https://ror.org/01tqhyj40 Chaiyaphum Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŠąø±ąø¢ąø ąø¹ąø”ąø“'),
(24220, 'https://ror.org/02qedp211', 'en', 1, 'https://ror.org/02qedp211 Kyungdong University'),
(24221, 'https://ror.org/01bxsr356', 'en', 1, 'https://ror.org/01bxsr356 Hansei University ķ•œģ„øėŒ€ķ•™źµ'),
(24222, 'https://ror.org/01w7c9759', 'id', 1, 'https://ror.org/01w7c9759 Universitas Islam Al-Azhar Mataram'),
(24223, 'https://ror.org/04s6e0d17', 'no_lang_code', 1, 'https://ror.org/04s6e0d17 Nagoya Keizai University åå¤å±‹ēµŒęøˆå¤§å­¦'),
(24224, 'https://ror.org/035bxea77', 'en', 1, 'https://ror.org/035bxea77 Bunka Gakuen University ę–‡åŒ–å­¦åœ’å¤§å­¦'),
(24225, 'https://ror.org/02y6r1c45', 'en', 1, 'https://ror.org/02y6r1c45 Kogakkan University ēš‡å­øé¤Øå¤§å­¦'),
(24226, 'https://ror.org/051et2y58', 'en', 1, 'https://ror.org/051et2y58 Joong-Ang Sangha University'),
(24227, 'https://ror.org/00331xs95', 'en', 1, 'https://ror.org/00331xs95 Howon University ķ˜øģ›ėŒ€ķ•™źµ'),
(24228, 'https://ror.org/059hy2f55', 'en', 1, 'https://ror.org/059hy2f55 Gwangju National University of Education ź“‘ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(24229, 'https://ror.org/04synqw60', 'en', 1, 'https://ror.org/04synqw60 Rajamangala University of Technology Lanna ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø„ą¹‰ąø²ąø™ąø™ąø²'),
(24230, 'https://ror.org/01gcnxt20', 'no_lang_code', 1, 'https://ror.org/01gcnxt20 Gwangju University ź“‘ģ£¼ėŒ€ķ•™źµ'),
(24231, 'https://ror.org/0037nyg09', 'en', 1, 'https://ror.org/0037nyg09 UNIVERSITAS MUHAMMADIYAH MATARAM University of Muhammadiyah Mataram'),
(24232, 'https://ror.org/04xz43j90', 'en', 1, 'https://ror.org/04xz43j90 Kwangju Women''s University ź“‘ģ£¼ģ—¬ģžėŒ€ķ•™źµ'),
(24233, 'https://ror.org/02f9rwx65', 'en', 1, 'https://ror.org/02f9rwx65 Honam Theological University and Seminary ķ˜øė‚Øģ‹ ķ•™ėŒ€ķ•™źµ'),
(24234, 'https://ror.org/0035dw758', 'en', 1, 'https://ror.org/0035dw758 Rustavi Academy of Higher Education'),
(24235, 'https://ror.org/055mbnd94', 'no_lang_code', 1, 'https://ror.org/055mbnd94 Sanno University ē”£ę„­čƒ½ēŽ‡å¤§å­¦'),
(24236, 'https://ror.org/04vj5r404', 'en', 1, 'https://ror.org/04vj5r404 Honam University ķ˜øė‚ØėŒ€ķ•™źµ'),
(24237, 'https://ror.org/048t58j41', 'en', 1, 'https://ror.org/048t58j41 Kwangshin University'),
(24238, 'https://ror.org/02a7kg544', 'no_lang_code', 1, 'https://ror.org/02a7kg544 Seoul Jangsin University'),
(24239, 'https://ror.org/036swew50', 'en', 1, 'https://ror.org/036swew50 Chiangrai College ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøŠąøµąø¢ąø‡ąø£ąø²ąø¢'),
(24240, 'https://ror.org/03xf99d80', 'en', 1, 'https://ror.org/03xf99d80 Hanlyo University ķ•œė ¤ėŒ€ķ•™źµ'),
(24241, 'https://ror.org/00p8em311', 'en', 1, 'https://ror.org/00p8em311 Gyeongju University ź²½ģ£¼ėŒ€ķ•™źµ'),
(24242, 'https://ror.org/02e8yt306', 'id', 1, 'https://ror.org/02e8yt306 Nusa Tenggara Barat University Universitas Nusa Tenggara Barat'),
(24243, 'https://ror.org/01jt32312', 'en', 1, 'https://ror.org/01jt32312 Uiduk University ģœ„ė•ėŒ€ķ•™źµ'),
(24244, 'https://ror.org/05w61br16', 'en', 1, 'https://ror.org/05w61br16 Ekvtime Takaishvili Teaching University įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ ā€žįƒ įƒ•įƒįƒšįƒ˜ā€œ'),
(24245, 'https://ror.org/03k922132', 'id', 1, 'https://ror.org/03k922132 Universitas Nusa Nipa Maumere'),
(24246, 'https://ror.org/04yff2m38', 'id', 1, 'https://ror.org/04yff2m38 Institut Sains dan Teknologi TD Pardede TD Pardede Institute of Science and Technology'),
(24247, 'https://ror.org/045qyjz25', 'no_lang_code', 1, 'https://ror.org/045qyjz25 Baekseok University ė°±ģ„ėŒ€ķ•™źµ'),
(24248, 'https://ror.org/03tc2j669', 'id', 1, 'https://ror.org/03tc2j669 Institut Teknologi Medan'),
(24249, 'https://ror.org/03hd23385', 'en', 1, 'https://ror.org/03hd23385 Sokhumi State University ÕÕøÖ‚Õ­ÕøÖ‚Õ“Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ įƒ”įƒįƒ®įƒ£įƒ›įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24250, 'https://ror.org/03ewepe58', 'en', 1, 'https://ror.org/03ewepe58 Al-Azhar University Universitas Al-Azhar'),
(24251, 'https://ror.org/02g702008', 'en', 1, 'https://ror.org/02g702008 Kalasin University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø²ąø¬ąøŖąø“ąø™ąø˜ąøøą¹Œ'),
(24252, 'https://ror.org/02s6q6726', 'id', 1, 'https://ror.org/02s6q6726 Universitas Al Washliyah'),
(24253, 'https://ror.org/020ja6z54', 'en', 1, 'https://ror.org/020ja6z54 Kamphaeng Phet Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøąø³ą¹ąøžąø‡ą¹€ąøžąøŠąø£'),
(24254, 'https://ror.org/03r1pm171', 'en', 1, 'https://ror.org/03r1pm171 Kanchanaburi Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøąø²ąøąøˆąø™ąøšąøøąø£ąøµ'),
(24255, 'https://ror.org/018pdh902', 'en', 1, 'https://ror.org/018pdh902 Anyang University ģ•ˆģ–‘ėŒ€ķ•™źµ'),
(24256, 'https://ror.org/01q6w5x52', 'en', 1, 'https://ror.org/01q6w5x52 North Eastern University ดหาวณทยาคัยภาคตะวันออกเฉียงเหนือ'),
(24257, 'https://ror.org/02zrz7n38', 'id', 1, 'https://ror.org/02zrz7n38 Universitas Dian Nusantara'),
(24258, 'https://ror.org/038t7hz69', 'en', 1, 'https://ror.org/038t7hz69 IB Euro-Caucasus University'),
(24259, 'https://ror.org/00tas1680', 'en', 1, 'https://ror.org/00tas1680 North Sumatra Islamic University Universitas Islam Sumatera Utara'),
(24260, 'https://ror.org/01m877795', 'en', 1, 'https://ror.org/01m877795 Museum of Contemporary Art Chicago'),
(24261, 'https://ror.org/01bwbjs64', 'id', 1, 'https://ror.org/01bwbjs64 Universitas Katolik Santo Thomas'),
(24262, 'https://ror.org/01a6gjq30', 'id', 1, 'https://ror.org/01a6gjq30 Universitas Methodist Indonesia'),
(24263, 'https://ror.org/010cbg926', 'en', 1, 'https://ror.org/010cbg926 Hyupsung University ķ˜‘ģ„±ėŒ€ķ•™źµ'),
(24264, 'https://ror.org/03ve0eh58', 'id', 1, 'https://ror.org/03ve0eh58 Universitas Muhammadiyah Sumatera Utara'),
(24265, 'https://ror.org/02t3h6354', 'en', 1, 'https://ror.org/02t3h6354 Suwon Catholic University'),
(24266, 'https://ror.org/037gx5d02', 'en', 1, 'https://ror.org/037gx5d02 Yewon Arts University ģ˜ˆģ›ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(24267, 'https://ror.org/0357f5c77', 'en', 1, 'https://ror.org/0357f5c77 Bangkok Business College ą¹‚ąø£ąø‡ą¹€ąø£ąøµąø¢ąø™ąøąø£ąøøąø‡ą¹€ąø—ąøžąøąø²ąø£ąøšąø±ąøąøŠąøµąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(24268, 'https://ror.org/007s7qx27', 'en', 1, 'https://ror.org/007s7qx27 Gyeongin National University of Education ź²½ģøźµģœ”ėŒ€ķ•™źµ'),
(24269, 'https://ror.org/0014xm371', 'en', 1, 'https://ror.org/0014xm371 Foundation for Research on Information Technologies in Society'),
(24270, 'https://ror.org/029t3me68', 'en', 1, 'https://ror.org/029t3me68 Mary Bridge Children''s Health Center'),
(24271, 'https://ror.org/04x4bgc51', 'fr', 1, 'https://ror.org/04x4bgc51 Institut du Sahel'),
(24272, 'https://ror.org/02h8tmh67', 'it', 1, 'https://ror.org/02h8tmh67 Istituto Guglielmo Tagliacarne'),
(24273, 'https://ror.org/03sfxyd37', 'en', 1, 'https://ror.org/03sfxyd37 HopeHealth'),
(24274, 'https://ror.org/02jx61y97', 'no_lang_code', 1, 'https://ror.org/02jx61y97 Eurocarbon (Netherlands)'),
(24275, 'https://ror.org/01136x372', 'en', 1, 'https://ror.org/01136x372 Institute of Nuclear Physics'),
(24276, 'https://ror.org/0212sa234', 'no_lang_code', 1, 'https://ror.org/0212sa234 Cybula (United Kingdom)'),
(24277, 'https://ror.org/03ayd8t59', 'en', 1, 'https://ror.org/03ayd8t59 Qidong Liver Cancer Prevention Research'),
(24278, 'https://ror.org/056p61s65', 'no_lang_code', 1, 'https://ror.org/056p61s65 Horiba (United Kingdom)'),
(24279, 'https://ror.org/02kja7485', 'en', 1, 'https://ror.org/02kja7485 Hopa Mountain'),
(24280, 'https://ror.org/00v8sj862', 'en', 1, 'https://ror.org/00v8sj862 Cure 4 The Kids Foundation'),
(24281, 'https://ror.org/045kcbr23', 'en', 1, 'https://ror.org/045kcbr23 Friendship House'),
(24282, 'https://ror.org/020kyg948', 'en', 1, 'https://ror.org/020kyg948 Health Charities Coalition of Canada'),
(24283, 'https://ror.org/05xz4d742', 'mt', 1, 'https://ror.org/05xz4d742 Fondazzjoni Temi Zammit'),
(24284, 'https://ror.org/053wp5j10', 'no_lang_code', 1, 'https://ror.org/053wp5j10 International Technology Products'),
(24285, 'https://ror.org/02t0s0z58', 'en', 1, 'https://ror.org/02t0s0z58 LUNGevity Foundation'),
(24286, 'https://ror.org/01ea9yh77', 'en', 1, 'https://ror.org/01ea9yh77 Magic Valley Arts Council'),
(24287, 'https://ror.org/001575385', 'en', 1, 'https://ror.org/001575385 International Centre for Genetic Engineering and Biotechnology'),
(24288, 'https://ror.org/01a3wy042', 'es', 1, 'https://ror.org/01a3wy042 Fundación Vía Libre'),
(24289, 'https://ror.org/05mzp7213', 'en', 1, 'https://ror.org/05mzp7213 WYSO Radio Station'),
(24290, 'https://ror.org/018ey4p62', 'no_lang_code', 1, 'https://ror.org/018ey4p62 Advanced Hall Sensors (United Kingdom)'),
(24291, 'https://ror.org/03mkgng06', 'en', 1, 'https://ror.org/03mkgng06 NorthEast Independent Living Services'),
(24292, 'https://ror.org/020hftg31', 'en', 1, 'https://ror.org/020hftg31 Institute for Schools of the Future'),
(24293, 'https://ror.org/01xh0rq67', 'no_lang_code', 1, 'https://ror.org/01xh0rq67 Lajovic Tuba Embalaža (Slovenia)'),
(24294, 'https://ror.org/059dyfn28', 'en', 1, 'https://ror.org/059dyfn28 Center for Prevention Services'),
(24295, 'https://ror.org/048d6j696', 'en', 1, 'https://ror.org/048d6j696 Kennedy–King College'),
(24296, 'https://ror.org/00j8vky29', 'no_lang_code', 1, 'https://ror.org/00j8vky29 Euroalarm (Czechia)'),
(24297, 'https://ror.org/04ty4mp95', 'en', 1, 'https://ror.org/04ty4mp95 Jorvik Viking Centre'),
(24298, 'https://ror.org/02xs4jc78', 'en', 1, 'https://ror.org/02xs4jc78 Algerian Petroleum Institute Institut AlgƩrien du PƩtrole'),
(24299, 'https://ror.org/019cqkm24', 'en', 1, 'https://ror.org/019cqkm24 Cannon Cancer Ministry'),
(24300, 'https://ror.org/01jqhew41', 'no_lang_code', 1, 'https://ror.org/01jqhew41 Svar Life Science (Netherlands)'),
(24301, 'https://ror.org/03kfrc103', 'no_lang_code', 1, 'https://ror.org/03kfrc103 Deutsche Montan Technologie (Germany)'),
(24302, 'https://ror.org/05a33p325', 'no_lang_code', 1, 'https://ror.org/05a33p325 NovaTarg Therapeutics (United States)'),
(24303, 'https://ror.org/00t12nc24', 'no_lang_code', 1, 'https://ror.org/00t12nc24 Pfeiffer Vacuum (France)'),
(24304, 'https://ror.org/058tztn15', 'no_lang_code', 1, 'https://ror.org/058tztn15 Hydro International (Ireland)'),
(24305, 'https://ror.org/018cmez05', 'en', 1, 'https://ror.org/018cmez05 Adventist HealthCare Shady Grove Medical Center'),
(24306, 'https://ror.org/02kfn1p21', 'no_lang_code', 1, 'https://ror.org/02kfn1p21 Cybergenetics (United States)'),
(24307, 'https://ror.org/027vj6z88', 'en', 1, 'https://ror.org/027vj6z88 International College of Applied Kinesiology-USA'),
(24308, 'https://ror.org/02er6sh59', 'en', 1, 'https://ror.org/02er6sh59 Suncoast Health Council'),
(24309, 'https://ror.org/03qtr7n72', 'fr', 1, 'https://ror.org/03qtr7n72 Agence Nationale des FrƩquences'),
(24310, 'https://ror.org/02hrvn918', 'no_lang_code', 1, 'https://ror.org/02hrvn918 Hydrion (Netherlands)'),
(24311, 'https://ror.org/03v43ry70', 'no_lang_code', 1, 'https://ror.org/03v43ry70 Hybrizyme (United States)'),
(24312, 'https://ror.org/01zxjwg19', 'no_lang_code', 1, 'https://ror.org/01zxjwg19 Lymphedema Therapy (United States)'),
(24313, 'https://ror.org/04hb2sf66', 'no_lang_code', 1, 'https://ror.org/04hb2sf66 Kypha (United States)'),
(24314, 'https://ror.org/02cpgzn10', 'no_lang_code', 1, 'https://ror.org/02cpgzn10 AI Biosciences (United States)'),
(24315, 'https://ror.org/00kvgk775', 'en', 1, 'https://ror.org/00kvgk775 Rise Adventures'),
(24316, 'https://ror.org/037bsar61', 'de', 1, 'https://ror.org/037bsar61 Bundeskriminalamt Federal Criminal Police Office'),
(24317, 'https://ror.org/00mhsjf71', 'en', 1, 'https://ror.org/00mhsjf71 Lake Simcoe Region Conservation Authority'),
(24318, 'https://ror.org/02dwjjq70', 'no_lang_code', 1, 'https://ror.org/02dwjjq70 Cycleco (France)'),
(24319, 'https://ror.org/02hf81m35', 'en', 1, 'https://ror.org/02hf81m35 Riordan Clinic'),
(24320, 'https://ror.org/00xz8jv85', 'en', 1, 'https://ror.org/00xz8jv85 Richard J. Daley College'),
(24321, 'https://ror.org/01zskeg15', 'en', 1, 'https://ror.org/01zskeg15 Animal Production Institute'),
(24322, 'https://ror.org/003wx9n05', 'en', 1, 'https://ror.org/003wx9n05 Stony Brook School'),
(24323, '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'),
(24324, 'https://ror.org/01z3yjr32', 'en', 1, 'https://ror.org/01z3yjr32 El Paso Children''s Hospital'),
(24325, 'https://ror.org/01zgmhv16', 'no_lang_code', 1, 'https://ror.org/01zgmhv16 Danaher (Belgium)'),
(24326, 'https://ror.org/01wsre374', 'en', 1, 'https://ror.org/01wsre374 Olive–Harvey College'),
(24327, 'https://ror.org/01fcxf261', 'en', 1, 'https://ror.org/01fcxf261 Caulfield Hospital'),
(24328, 'https://ror.org/03bvtqh46', 'en', 1, 'https://ror.org/03bvtqh46 Department of Embryology'),
(24329, 'https://ror.org/04pqedt90', 'en', 1, 'https://ror.org/04pqedt90 Baton Rouge Area Foundation'),
(24330, 'https://ror.org/025h0r574', 'es', 1, 'https://ror.org/025h0r574 Fundación Pública Galega de Medicina Xenómica Genomic Medicine Group'),
(24331, 'https://ror.org/04eba5983', 'en', 1, 'https://ror.org/04eba5983 Biotechnology Research Institute'),
(24332, 'https://ror.org/053v5zb41', 'en', 1, 'https://ror.org/053v5zb41 Harry S Truman College'),
(24333, 'https://ror.org/02e46xh50', 'en', 1, 'https://ror.org/02e46xh50 International Documentary Association'),
(24334, 'https://ror.org/01a3vkf51', 'en', 1, 'https://ror.org/01a3vkf51 Harold Washington College'),
(24335, 'https://ror.org/04s0vw952', 'no_lang_code', 1, 'https://ror.org/04s0vw952 Nuova Quasco (Italy)'),
(24336, 'https://ror.org/00t5e6645', 'no_lang_code', 1, 'https://ror.org/00t5e6645 Debiopharm Group (Canada)'),
(24337, 'https://ror.org/01dssfj41', 'en', 1, 'https://ror.org/01dssfj41 University Memory and Aging Center'),
(24338, 'https://ror.org/050z7kr33', 'it', 1, 'https://ror.org/050z7kr33 Fondazione Lelio e Lisli Basso'),
(24339, 'https://ror.org/01azf6k87', 'en', 1, 'https://ror.org/01azf6k87 Malcolm X College'),
(24340, 'https://ror.org/01ryxs984', 'en', 1, 'https://ror.org/01ryxs984 NorthEast Regional Epilepsy Group'),
(24341, 'https://ror.org/03txeq812', 'no_lang_code', 1, 'https://ror.org/03txeq812 Maurer (Germany)'),
(24342, 'https://ror.org/030zy2k76', 'en', 1, 'https://ror.org/030zy2k76 Wilbur Wright College'),
(24343, 'https://ror.org/05h7zf334', 'no_lang_code', 1, 'https://ror.org/05h7zf334 Bombardier (United Kingdom)'),
(24344, 'https://ror.org/011tvp436', 'en', 1, 'https://ror.org/011tvp436 Iona Senior Services'),
(24345, 'https://ror.org/01cewnk49', 'no_lang_code', 1, 'https://ror.org/01cewnk49 Associated British Foods (United Kingdom)'),
(24346, 'https://ror.org/03an54s92', 'en', 1, 'https://ror.org/03an54s92 Summit County Juvenile Court'),
(24347, 'https://ror.org/04c244340', 'no_lang_code', 1, 'https://ror.org/04c244340 Era-Maptec (Ireland)'),
(24348, 'https://ror.org/04fe55288', 'es', 1, 'https://ror.org/04fe55288 Asociación de Empresarios Textiles de la Comunidad Valenciana'),
(24349, 'https://ror.org/02w34pv31', 'en', 1, 'https://ror.org/02w34pv31 International Community of Women Living with HIV'),
(24350, 'https://ror.org/045a1m333', 'no_lang_code', 1, 'https://ror.org/045a1m333 Lumos Pharma (United States)');
INSERT INTO `rors` VALUES
(24351, 'https://ror.org/05j0yvv31', 'no_lang_code', 1, 'https://ror.org/05j0yvv31 Rigel (United States)'),
(24352, 'https://ror.org/023k50a48', 'it', 1, 'https://ror.org/023k50a48 Fondazione Italiana per la Ricerca in Agricoltura Biologica e Biodinamica'),
(24353, 'https://ror.org/04bfjqy79', 'en', 1, 'https://ror.org/04bfjqy79 Incheon Catholic University ģøģ²œź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(24354, 'https://ror.org/00hvwkt50', 'en', 1, 'https://ror.org/00hvwkt50 Leibniz Institute for the German Language Leibniz-Institut für Deutsche Sprache'),
(24355, 'https://ror.org/01wacaj92', 'en', 1, 'https://ror.org/01wacaj92 Nation University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø™ąøŠąø±ą¹ˆąø™'),
(24356, 'https://ror.org/025vqqa73', 'no_lang_code', 1, 'https://ror.org/025vqqa73 J P Kenny'),
(24357, 'https://ror.org/04p9hvh53', 'en', 1, 'https://ror.org/04p9hvh53 Loei Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąø„ąø¢'),
(24358, 'https://ror.org/02ehsvt70', 'pt', 1, 'https://ror.org/02ehsvt70 Hospital do Divino EspĆ­rito Santo'),
(24359, 'https://ror.org/05a61hj73', 'en', 1, 'https://ror.org/05a61hj73 Thepsatri Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąø—ąøžąøŖąø•ąø£ąøµąø„ąøžąøšąøøąø£ąøµ'),
(24360, 'https://ror.org/00bhzt187', 'id', 1, 'https://ror.org/00bhzt187 Universitas Pembinaan Masyarakat Indonesia Medan'),
(24361, 'https://ror.org/04zvt5792', 'no_lang_code', 1, 'https://ror.org/04zvt5792 Four Elements Capital (United Kingdom)'),
(24362, 'https://ror.org/03k5bgb88', 'no_lang_code', 1, 'https://ror.org/03k5bgb88 Bombardier (Italy)'),
(24363, 'https://ror.org/02hph8r17', 'en', 1, 'https://ror.org/02hph8r17 Grigol Robakidze University įƒ’įƒ įƒ˜įƒ’įƒįƒš įƒ įƒįƒ‘įƒįƒ„įƒ˜įƒ«įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24364, 'https://ror.org/01vbp3w59', 'no_lang_code', 1, 'https://ror.org/01vbp3w59 Instantview (United Kingdom)'),
(24365, 'https://ror.org/03r9v0161', 'no_lang_code', 1, 'https://ror.org/03r9v0161 Elektro Ljubljana (Slovenia)'),
(24366, 'https://ror.org/00tzrs836', 'no_lang_code', 1, 'https://ror.org/00tzrs836 Stahl-Zentrum (Germany)'),
(24367, 'https://ror.org/054e4t190', 'en', 1, 'https://ror.org/054e4t190 Jeonju National University of Education ģ „ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(24368, 'https://ror.org/01nm0nj94', 'en', 1, 'https://ror.org/01nm0nj94 Jesus University'),
(24369, 'https://ror.org/013s89d74', 'en', 1, 'https://ror.org/013s89d74 St James''s University Hospital'),
(24370, 'https://ror.org/057jpqa22', 'en', 1, 'https://ror.org/057jpqa22 Christian University of Thailand ดหาวณทยาคัยครณสเตียน'),
(24371, 'https://ror.org/00k6ffj36', 'en', 1, 'https://ror.org/00k6ffj36 Caucasus Academic Centre'),
(24372, 'https://ror.org/01mj1hb53', 'it', 1, 'https://ror.org/01mj1hb53 Consorzio Interuniversitario per la Ricerca Tecnologica Nucleare'),
(24373, 'https://ror.org/03y12yp46', 'en', 1, 'https://ror.org/03y12yp46 Nakhon Pathom Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąø›ąøąø”'),
(24374, 'https://ror.org/00atp1s12', 'en', 1, 'https://ror.org/00atp1s12 Caucasus International University'),
(24375, 'https://ror.org/003h4kj85', 'en', 1, 'https://ror.org/003h4kj85 Rajamangala University of Technology Rattanakosin ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø£ąø±ąø•ąø™ą¹‚ąøąøŖąø“ąø™ąø—ąø£ą¹Œ'),
(24376, 'https://ror.org/02tc4et63', 'en', 1, 'https://ror.org/02tc4et63 Caucasus University įƒ™įƒįƒ•įƒ™įƒįƒ”įƒ˜įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24377, 'https://ror.org/03js77h61', 'en', 1, 'https://ror.org/03js77h61 Classical and Traditional Medicine Academy'),
(24378, 'https://ror.org/01msfnj86', 'id', 1, 'https://ror.org/01msfnj86 Universitas Sisingamangaraja XII'),
(24379, 'https://ror.org/0341e8845', 'en', 1, 'https://ror.org/0341e8845 Saengtham College ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąøŖąø‡ąø˜ąø£ąø£ąø”'),
(24380, 'https://ror.org/00x3gtf37', 'en', 1, 'https://ror.org/00x3gtf37 Shizuoka Sangyo University é™å²”ē”£ę„­å¤§å­¦'),
(24381, 'https://ror.org/02532pm14', 'en', 1, 'https://ror.org/02532pm14 International University of Korea ķ•œźµ­źµ­ģ œėŒ€ķ•™źµ'),
(24382, 'https://ror.org/054dx8336', 'en', 1, 'https://ror.org/054dx8336 Iwate Prefectural University å²©ę‰‹ēœŒē«‹å¤§å­¦'),
(24383, 'https://ror.org/04m59hw59', 'en', 1, 'https://ror.org/04m59hw59 Musamus Merauke University Universitas Musamus Merauke'),
(24384, 'https://ror.org/03ne5hn26', 'en', 1, 'https://ror.org/03ne5hn26 Samtskhe-Javakheti State University įƒ”įƒįƒ›įƒŖįƒ®įƒ”-įƒÆįƒįƒ•įƒįƒ®įƒ”įƒ—įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24385, 'https://ror.org/01ngjj893', 'en', 1, 'https://ror.org/01ngjj893 University of Human Arts and Sciences äŗŗé–“ē·åˆē§‘å­¦å¤§å­¦'),
(24386, 'https://ror.org/00peyn760', 'no_lang_code', 1, 'https://ror.org/00peyn760 Vongchavalitkul University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø§ąø‡ąø©ą¹ŒąøŠąø§ąø„ąø“ąø•ąøąøøąø„'),
(24387, 'https://ror.org/048z9th72', 'no_lang_code', 1, 'https://ror.org/048z9th72 Momoyama Gakuin University ę”ƒå±±å­¦é™¢å¤§å­¦'),
(24388, 'https://ror.org/03sq7qp22', 'en', 1, 'https://ror.org/03sq7qp22 Kutaisi Institute of Medicine'),
(24389, 'https://ror.org/01h6cr239', 'en', 1, 'https://ror.org/01h6cr239 International University of Kagoshima é¹æå…å³¶å›½éš›å¤§å­¦'),
(24390, 'https://ror.org/04688a324', 'en', 1, 'https://ror.org/04688a324 Nakhon Ratchasima Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąø£ąø²ąøŠąøŖąøµąø”ąø²'),
(24391, 'https://ror.org/00n6web48', 'en', 1, 'https://ror.org/00n6web48 Georgian State University of Subtropical Agriculture Š“Ń€ŃƒŠ·ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃƒŠ±Ń‚Ń€Š¾ŠæŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(24392, 'https://ror.org/03ckbnn72', 'en', 1, 'https://ror.org/03ckbnn72 Transnational Law and Business University źµ­ģ œė²•ė„ ź²½ģ˜ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(24393, 'https://ror.org/0478mxw43', 'en', 1, 'https://ror.org/0478mxw43 Kamakura Women''s University 鎌倉儳子大学'),
(24394, 'https://ror.org/04gyfd783', 'no_lang_code', 1, 'https://ror.org/04gyfd783 Chaopraya University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøˆą¹‰ąø²ąøžąø£ąø°ąø¢ąø²'),
(24395, 'https://ror.org/00kkavr87', 'en', 1, 'https://ror.org/00kkavr87 Heisei College of Music 平成音愽大学'),
(24396, 'https://ror.org/03373tb44', 'en', 1, 'https://ror.org/03373tb44 Toyama University of International Studies åÆŒå±±å›½éš›å¤§å­¦'),
(24397, 'https://ror.org/01mys8c02', 'en', 1, 'https://ror.org/01mys8c02 Niigata University of Management ę–°ę½ŸēµŒå–¶å¤§å­¦'),
(24398, 'https://ror.org/01n6wkv11', 'id', 1, 'https://ror.org/01n6wkv11 Universitas Muara Bungo'),
(24399, 'https://ror.org/050n8gz83', 'en', 1, 'https://ror.org/050n8gz83 University of Central Thailand ดหาวณทยาคัยภาคกคาง'),
(24400, 'https://ror.org/04m8f9392', 'en', 1, 'https://ror.org/04m8f9392 Youngnam Foreign Language College ģ˜ė‚Ø 외국얓 ėŒ€ķ•™'),
(24401, 'https://ror.org/03dhz6n86', 'en', 1, 'https://ror.org/03dhz6n86 Kanagawa University of Human Services ē„žå„ˆå·ēœŒē«‹äæå„ē¦ē„‰å¤§å­¦'),
(24402, 'https://ror.org/032pgwm02', 'en', 1, 'https://ror.org/032pgwm02 Petre Shotadze Tbilisi Medical Academy įƒžįƒ”įƒ¢įƒ įƒ” įƒØįƒįƒ—įƒįƒ«įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(24403, 'https://ror.org/03hnckv05', 'en', 1, 'https://ror.org/03hnckv05 Mokpo Catholic University ėŖ©ķ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(24404, 'https://ror.org/01vpt4w06', 'id', 1, 'https://ror.org/01vpt4w06 Universitas Iqra Buru'),
(24405, 'https://ror.org/00nv3pd93', 'en', 1, 'https://ror.org/00nv3pd93 Kanazawa College of Art é‡‘ę²¢ē¾Žč”“å·„čŠøå¤§å­¦'),
(24406, 'https://ror.org/023jsyh61', 'en', 1, 'https://ror.org/023jsyh61 Mokpo National Maritime University ėŖ©ķ¬ķ•“ģ–‘ėŒ€ķ•™źµ'),
(24407, 'https://ror.org/04cymw545', 'en', 1, 'https://ror.org/04cymw545 Shota Rustaveli Theatre and Film Georgia State University įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒØįƒįƒ—įƒ įƒ įƒ£įƒ”įƒ—įƒįƒ•įƒ”įƒšįƒ˜įƒ” įƒ—įƒ”įƒįƒ¢įƒ įƒ˜įƒ” įƒ“įƒ įƒ™įƒ˜įƒœįƒįƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24408, 'https://ror.org/0408gh695', 'en', 1, 'https://ror.org/0408gh695 Nakhon Sawan Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąøŖąø§ąø£ąø£ąø„ą¹Œ'),
(24409, 'https://ror.org/00yezxw87', 'no_lang_code', 1, 'https://ror.org/00yezxw87 Chodang University ģ“ˆė‹¹ėŒ€ķ•™źµ'),
(24410, 'https://ror.org/000ks8283', 'id', 1, 'https://ror.org/000ks8283 Universitas Soerjo Ngawi'),
(24411, 'https://ror.org/03vhwes25', 'en', 1, 'https://ror.org/03vhwes25 Gwangju Catholic University ź“‘ģ£¼ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(24412, 'https://ror.org/05qx3ve03', 'en', 1, 'https://ror.org/05qx3ve03 Geumgang University źøˆź°•ėŒ€ķ•™źµ'),
(24413, 'https://ror.org/039fgyk85', 'en', 1, 'https://ror.org/039fgyk85 Hanshin University ķ•œģ‹ ėŒ€ķ•™źµ'),
(24414, 'https://ror.org/03xpxn276', 'en', 1, 'https://ror.org/03xpxn276 David Agmashenebeli University of Georgia įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ“įƒįƒ•įƒ˜įƒ— įƒįƒ¦įƒ›įƒįƒØįƒ”įƒœįƒ”įƒ‘įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24415, 'https://ror.org/03tawch75', 'en', 1, 'https://ror.org/03tawch75 Catholic University of Pusan ė¶€ģ‚°ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(24416, 'https://ror.org/01rf04680', 'en', 1, 'https://ror.org/01rf04680 Busan National University of Education ė¶€ģ‚°źµģœ”ėŒ€ķ•™źµ'),
(24417, 'https://ror.org/0455zdm83', 'en', 1, 'https://ror.org/0455zdm83 Busan University of Foreign Studies ė¶€ģ‚°ģ™øźµ­ģ–“ėŒ€ķ•™źµ'),
(24418, 'https://ror.org/01asa8g02', 'en', 1, 'https://ror.org/01asa8g02 Tongmyong University ė™ėŖ… ėŒ€ķ•™źµ'),
(24419, 'https://ror.org/05yhrkh78', 'no_lang_code', 1, 'https://ror.org/05yhrkh78 Nishikyushu University č„æä¹å·žå¤§å­¦'),
(24420, 'https://ror.org/01s5kvh23', 'en', 1, 'https://ror.org/01s5kvh23 Youngsan University ģ˜ģ‚°ėŒ€ķ•™źµ'),
(24421, 'https://ror.org/01n0ym997', 'en', 1, 'https://ror.org/01n0ym997 Kaichi International University é–‹ę™ŗå›½éš›å¤§å­¦'),
(24422, 'https://ror.org/02rwyg032', 'no_lang_code', 1, 'https://ror.org/02rwyg032 Reitaku University 麗澤大学'),
(24423, 'https://ror.org/04gqpx257', 'en', 1, 'https://ror.org/04gqpx257 Niigata Sangyo University ę–°ę½Ÿē”£ę„­å¤§å­¦'),
(24424, 'https://ror.org/04f7wmd40', 'en', 1, 'https://ror.org/04f7wmd40 Pyeongtaek University ķ‰ķƒėŒ€ķ•™źµ'),
(24425, 'https://ror.org/01gtgc095', 'en', 1, 'https://ror.org/01gtgc095 Kyoei University 共栄大学'),
(24426, 'https://ror.org/04pqmjc38', 'id', 1, 'https://ror.org/04pqmjc38 Universitas Putra Indonesia "YPTK"'),
(24427, 'https://ror.org/004th3s59', 'en', 1, 'https://ror.org/004th3s59 International Budo University å›½éš›ę­¦é“å¤§å­¦'),
(24428, 'https://ror.org/0100d8y50', 'id', 1, 'https://ror.org/0100d8y50 Universitas Tamansiswa Universitas Tamansiswa Padang'),
(24429, 'https://ror.org/0395g0930', 'en', 1, 'https://ror.org/0395g0930 Toho College of Music ę±é‚¦éŸ³ę„½å¤§å­¦'),
(24430, 'https://ror.org/02ewm5p09', 'en', 1, 'https://ror.org/02ewm5p09 Saitama Gakuen University åŸ¼ēŽ‰å­¦åœ’å¤§å­¦'),
(24431, 'https://ror.org/05kc0qv85', 'en', 1, 'https://ror.org/05kc0qv85 Berea International Theological Seminary ė² ė¢°ģ•„źµ­ģ œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(24432, 'https://ror.org/04mbnaz72', 'en', 1, 'https://ror.org/04mbnaz72 Georgian Aviation University įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒįƒ•įƒ˜įƒįƒŖįƒ˜įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24433, 'https://ror.org/026qx6917', 'en', 1, 'https://ror.org/026qx6917 Chongshin University ģ“ģ‹ ėŒ€ķ•™źµ'),
(24434, 'https://ror.org/01bzvkv54', 'en', 1, 'https://ror.org/01bzvkv54 Chugye University for the Arts ģ¶”ź³„ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(24435, 'https://ror.org/05gz40769', 'en', 1, 'https://ror.org/05gz40769 Den-en Chofu University ē”°åœ’čŖæåøƒå­¦åœ’å¤§å­¦'),
(24436, 'https://ror.org/03mkcyk72', 'en', 1, 'https://ror.org/03mkcyk72 Heisei International University å¹³ęˆå›½éš›å¤§å­¦'),
(24437, 'https://ror.org/03bya9897', 'en', 1, 'https://ror.org/03bya9897 Seiwa University ęø…å’Œå¤§å­¦'),
(24438, 'https://ror.org/03s336c88', 'en', 1, 'https://ror.org/03s336c88 Princess of Naradhiwas University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø£ąø²ąø˜ąø“ąø§ąø²ąøŖąø£ąø²ąøŠąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(24439, 'https://ror.org/05v56p320', 'id', 1, 'https://ror.org/05v56p320 Universitas Muhammadiyah Tapanuli Selatan'),
(24440, 'https://ror.org/00hdt0550', 'en', 1, 'https://ror.org/00hdt0550 Kagawa Prefectural College of Health Sciences é¦™å·ēœŒē«‹äæå„åŒ»ē™‚å¤§å­¦'),
(24441, 'https://ror.org/03m60k875', 'en', 1, 'https://ror.org/03m60k875 Kyushu Women''s University 九州儳子大学'),
(24442, 'https://ror.org/02579k123', 'id', 1, 'https://ror.org/02579k123 Universitas Bina Darma'),
(24443, 'https://ror.org/05ar41694', 'en', 1, 'https://ror.org/05ar41694 Korea Christian University'),
(24444, 'https://ror.org/00s2dgg43', 'id', 1, 'https://ror.org/00s2dgg43 Universitas Iba'),
(24445, 'https://ror.org/05f06q946', 'id', 1, 'https://ror.org/05f06q946 Universitas Kader Bangsa'),
(24446, 'https://ror.org/05w462p65', 'id', 1, 'https://ror.org/05w462p65 Universitas Muhammadiyah Palembang'),
(24447, 'https://ror.org/02f7nxk86', 'id', 1, 'https://ror.org/02f7nxk86 Universitas Palembang'),
(24448, 'https://ror.org/05h6xaj60', 'en', 1, 'https://ror.org/05h6xaj60 Korean Bible University'),
(24449, 'https://ror.org/01wmc1580', 'en', 1, 'https://ror.org/01wmc1580 Methodist Theological University'),
(24450, 'https://ror.org/04vxqfe68', 'en', 1, 'https://ror.org/04vxqfe68 Pathumthani University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø›ąø—ąøøąø”ąø˜ąø²ąø™ąøµ'),
(24451, 'https://ror.org/02s22e816', 'en', 1, 'https://ror.org/02s22e816 Kyushu International University 九州国際大学'),
(24452, 'https://ror.org/02hngjw26', 'en', 1, 'https://ror.org/02hngjw26 Seoul Christian University'),
(24453, 'https://ror.org/01xts9v65', 'en', 1, 'https://ror.org/01xts9v65 Seoul National University of Education ģ„œģšøźµģœ”ėŒ€ķ•™źµ'),
(24454, 'https://ror.org/003ag3w45', 'en', 1, 'https://ror.org/003ag3w45 Saint Andrew First-Called Georgian University of the Patriarchate of Georgia įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒžįƒįƒ¢įƒ įƒ˜įƒįƒ įƒ„įƒįƒ” įƒ¬įƒ›įƒ˜įƒ“įƒ įƒįƒœįƒ“įƒ įƒ˜įƒ įƒžįƒ˜įƒ įƒ•įƒ”įƒšįƒ¬įƒįƒ“įƒ”įƒ‘įƒ£įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24455, 'https://ror.org/01ah0xq26', 'id', 1, 'https://ror.org/01ah0xq26 Universitas Sjakhyakirti'),
(24456, 'https://ror.org/04hp7kk26', 'no_lang_code', 1, 'https://ror.org/04hp7kk26 Valaya Alongkorn Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø§ą¹„ąø„ąø¢ąø­ąø„ąø‡ąøąø£ąø“ą¹Œ ą¹ƒąø™ąøžąø£ąø°ąøšąø£ąø”ąø£ąø²ąøŠąø¹ąø›ąø–ąø±ąø”ąø ą¹Œ'),
(24457, 'https://ror.org/02p76dr31', 'id', 1, 'https://ror.org/02p76dr31 Universitas Tridinanti Palembang'),
(24458, 'https://ror.org/04ctw6466', 'en', 1, 'https://ror.org/04ctw6466 Seoul Social Welfare Graduate University ģ„œģšøģ‚¬ķšŒė³µģ§€ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(24459, 'https://ror.org/0018jvy55', 'id', 1, 'https://ror.org/0018jvy55 Universitas Alkhairaat'),
(24460, 'https://ror.org/00e4pwa85', 'en', 1, 'https://ror.org/00e4pwa85 Rudny Industrial Institute Š ŃƒŠ“Š½Ń‹Š¹ Š˜Š½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»Š“Ń‹Ņ› Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(24461, 'https://ror.org/024j7nb58', 'en', 1, 'https://ror.org/024j7nb58 Pavlodar State Pedagogical University ŠŸŠ°Š²Š»Š¾Š“Š°Ń€ мемлекеттік пеГагогикалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(24462, 'https://ror.org/04rg3qa61', 'no_lang_code', 1, 'https://ror.org/04rg3qa61 Sungkonghoe University ģ„±ź³µķšŒėŒ€ķ•™źµ'),
(24463, 'https://ror.org/051xzna40', 'id', 1, 'https://ror.org/051xzna40 Universitas Muhammadiyah Palu'),
(24464, 'https://ror.org/01crwkz66', 'en', 1, 'https://ror.org/01crwkz66 Fatoni University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŸąø²ąøąø­ąø™ąøµ'),
(24465, 'https://ror.org/053fxhf38', 'en', 1, 'https://ror.org/053fxhf38 International Black Sea University įƒØįƒįƒ•įƒ˜ įƒ–įƒ¦įƒ•įƒ˜įƒ” įƒ”įƒįƒ”įƒ įƒ—įƒįƒØįƒįƒ įƒ˜įƒ”įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24466, 'https://ror.org/004emtb57', 'en', 1, 'https://ror.org/004emtb57 Phetchabun Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøŽą¹€ąøžąøŠąø£ąøšąø¹ąø£ąø“ą¹Œ'),
(24467, 'https://ror.org/01d3jsk91', 'en', 1, 'https://ror.org/01d3jsk91 Phetchaburi Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąøžąøŠąø£ąøšąøøąø£ąøµ'),
(24468, 'https://ror.org/015n4ka04', 'en', 1, 'https://ror.org/015n4ka04 Webster University Thailand ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø§ąøšąøŖą¹€ąø•ąø­ąø£ą¹Œ'),
(24469, 'https://ror.org/05j2ycs33', 'id', 1, 'https://ror.org/05j2ycs33 Universitas Mathla''ul Anwar Banten'),
(24470, 'https://ror.org/04v7cww51', 'id', 1, 'https://ror.org/04v7cww51 Universitas Antakusuma'),
(24471, 'https://ror.org/04zbaj011', 'no_lang_code', 1, 'https://ror.org/04zbaj011 Seinan Jo Gakuin University č„æå—å„³å­¦é™¢å¤§å­¦'),
(24472, 'https://ror.org/01fwksc03', 'en', 1, 'https://ror.org/01fwksc03 Far East University'),
(24473, 'https://ror.org/02x7w2961', 'en', 1, 'https://ror.org/02x7w2961 Pibulsongkram Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøžąø“ąøšąø¹ąø„ąøŖąø‡ąø„ąø£ąø²ąø”'),
(24474, 'https://ror.org/03kw5ag50', 'en', 1, 'https://ror.org/03kw5ag50 Halla University ķ•œė¼ėŒ€ķ•™źµ'),
(24475, 'https://ror.org/03xbq6057', 'en', 1, 'https://ror.org/03xbq6057 Kobe Institute Of Computing ē„žęˆøęƒ…å ±å¤§å­¦é™¢å¤§å­¦'),
(24476, 'https://ror.org/040kwjv41', 'en', 1, 'https://ror.org/040kwjv41 Kobe Kaisei College ē„žęˆøęµ·ę˜Ÿå„³å­å­¦é™¢å¤§å­¦'),
(24477, 'https://ror.org/01xy1dh32', 'en', 1, 'https://ror.org/01xy1dh32 Kobe International University ē„žęˆøå›½éš›å¤§å­¦'),
(24478, 'https://ror.org/00xwryd04', 'en', 1, 'https://ror.org/00xwryd04 Kobe Shinwa Women''s University ē„žęˆøč¦Ŗå’Œå„³å­å¤§å­¦'),
(24479, 'https://ror.org/00bt0h739', 'id', 1, 'https://ror.org/00bt0h739 Universitas Muhammadiyah Parepare'),
(24480, 'https://ror.org/03bwsp312', 'en', 1, 'https://ror.org/03bwsp312 Kobe Shoin Women''s University ē„žęˆøę¾č”­å„³å­å­¦é™¢å¤§å­¦'),
(24481, 'https://ror.org/00fnry208', 'en', 1, 'https://ror.org/00fnry208 Daejeon Catholic University'),
(24482, 'https://ror.org/058bps337', 'id', 1, 'https://ror.org/058bps337 Universitas Pasir Pangaraian'),
(24483, 'https://ror.org/03meq3t09', 'en', 1, 'https://ror.org/03meq3t09 Kobe Yamate University ē„žęˆøå±±ę‰‹å¤§å­¦'),
(24484, 'https://ror.org/05055ck28', 'en', 1, 'https://ror.org/05055ck28 Calvin University ģ¹¼ė¹ˆėŒ€ķ•™źµ'),
(24485, 'https://ror.org/00ea13906', 'en', 1, 'https://ror.org/00ea13906 Kangnam University ź°•ė‚ØėŒ€ķ•™źµ'),
(24486, 'https://ror.org/008wkze26', 'en', 1, 'https://ror.org/008wkze26 Phitsanulok University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø“ąø©ąø“ąøøą¹‚ąø„ąø'),
(24487, 'https://ror.org/037a1p293', 'id', 1, 'https://ror.org/037a1p293 Universitas Merdeka Pasuruan'),
(24488, 'https://ror.org/03mh64g46', 'en', 1, 'https://ror.org/03mh64g46 Phuket Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø ąø¹ą¹€ąøą¹‡ąø•'),
(24489, 'https://ror.org/020peey21', 'en', 1, 'https://ror.org/020peey21 Kobe City University of Foreign Studies ē„žęˆøåø‚å¤–å›½čŖžå¤§å­¦'),
(24490, 'https://ror.org/016n6yn28', 'id', 1, 'https://ror.org/016n6yn28 Universitas Yudharta Pasuruan'),
(24491, 'https://ror.org/049v2fv58', 'en', 1, 'https://ror.org/049v2fv58 Muban Chombueng Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø«ąø”ąø¹ą¹ˆąøšą¹‰ąø²ąø™ąøˆąø­ąø”ąøšąø¶ąø‡'),
(24492, 'https://ror.org/01ryrzh03', 'en', 1, 'https://ror.org/01ryrzh03 Kobe City College of Nursing ē„žęˆøåø‚ēœ‹č­·å¤§å­¦'),
(24493, 'https://ror.org/051zns832', 'en', 1, 'https://ror.org/051zns832 Konan Women''s University ē”²å—å„³å­å¤§å­¦'),
(24494, 'https://ror.org/02v1sf687', 'en', 1, 'https://ror.org/02v1sf687 University of Kochi é«˜ēŸ„ēœŒē«‹å¤§å­¦'),
(24495, 'https://ror.org/02wq2gg07', 'no_lang_code', 1, 'https://ror.org/02wq2gg07 Huachiew Chalermprakiet University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø«ąø±ąø§ą¹€ąø‰ąøµąø¢ąø§ą¹€ąø‰ąø„ąø“ąø”ąøžąø£ąø°ą¹€ąøąøµąø¢ąø£ąø•ąø“'),
(24496, 'https://ror.org/04qb0r423', 'en', 1, 'https://ror.org/04qb0r423 Georgian American University įƒ„įƒįƒ įƒ—įƒ£įƒš-įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ£įƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24497, 'https://ror.org/00m2sk374', 'en', 1, 'https://ror.org/00m2sk374 Asia Pacific International University Asia-Pacific International University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ą¹€ąø­ą¹€ąøŠąøµąø¢-ą¹ąø›ąø‹ąø“ąøŸąø“ąø'),
(24498, 'https://ror.org/032392f02', 'en', 1, 'https://ror.org/032392f02 Sisaket Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąø ศรีสะเกษ'),
(24499, 'https://ror.org/015dhy417', 'en', 1, 'https://ror.org/015dhy417 Luther University ė£Øķ„°ėŒ€ķ•™źµ'),
(24500, 'https://ror.org/04qdzzb42', 'en', 1, 'https://ror.org/04qdzzb42 Musashino Art University ę­¦č”µé‡Žē¾Žč”“å¤§å­¦'),
(24501, 'https://ror.org/0283yy536', 'id', 1, 'https://ror.org/0283yy536 Universitas Lancang Kuning'),
(24502, 'https://ror.org/049q7vv14', 'id', 1, 'https://ror.org/049q7vv14 Universitas Muhammadiyah Riau'),
(24503, 'https://ror.org/00nk7p507', 'en', 1, 'https://ror.org/00nk7p507 Riau University Universitas Riau'),
(24504, 'https://ror.org/027mg2511', 'en', 1, 'https://ror.org/027mg2511 Tsuda University 擄田唾大学'),
(24505, 'https://ror.org/035qaq447', 'en', 1, 'https://ror.org/035qaq447 Yong In University ģš©ģøėŒ€ķ•™źµ'),
(24506, 'https://ror.org/00ey2ce45', 'id', 1, 'https://ror.org/00ey2ce45 Universitas Simalungun'),
(24507, 'https://ror.org/030fd1j28', 'no_lang_code', 1, 'https://ror.org/030fd1j28 Yamanashi Eiwa College å±±ę¢Øč‹±å’Œå¤§å­¦'),
(24508, 'https://ror.org/05rxs7517', 'en', 1, 'https://ror.org/05rxs7517 Songkhla Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąø‡ąø‚ąø„ąø²'),
(24509, 'https://ror.org/04ka27d61', 'en', 1, 'https://ror.org/04ka27d61 Al Asyariah Mandar University Universitas Al Asyariah Mandar'),
(24510, 'https://ror.org/04p9k4b15', 'id', 1, 'https://ror.org/04p9k4b15 Universitas Merdeka Ponorogo'),
(24511, 'https://ror.org/04xampv42', 'en', 1, 'https://ror.org/04xampv42 Sehan University ģ„øķ•œėŒ€ķ•™źµ'),
(24512, 'https://ror.org/01jbjw881', 'en', 1, 'https://ror.org/01jbjw881 Youngdong University ģ˜ė™ėŒ€ķ•™źµ'),
(24513, 'https://ror.org/04rbrkq32', 'en', 1, 'https://ror.org/04rbrkq32 Yamanashi Prefectural University å±±ę¢ØēœŒē«‹å¤§å­¦'),
(24514, 'https://ror.org/03zrfs389', 'en', 1, 'https://ror.org/03zrfs389 Aichi Bunkyo University ę„›ēŸ„ę–‡ę•™å¤§å­¦'),
(24515, 'https://ror.org/05aymst21', 'en', 1, 'https://ror.org/05aymst21 Minami Kyushu University 南九州大学'),
(24516, 'https://ror.org/02byy8g27', 'en', 1, 'https://ror.org/02byy8g27 Kyushu Lutheran College ä¹å·žćƒ«ćƒ¼ćƒ†ćƒ«å­¦é™¢å¤§å­¦'),
(24517, 'https://ror.org/04r04yh88', 'no_lang_code', 1, 'https://ror.org/04r04yh88 Shokei College å°šēµ…å¤§å­¦'),
(24518, 'https://ror.org/0287qtx49', 'id', 1, 'https://ror.org/0287qtx49 Universitas Sintuwu Maroso'),
(24519, 'https://ror.org/05dx9zk73', 'en', 1, 'https://ror.org/05dx9zk73 Tokyo Women''s College of Physical Education ę±äŗ¬å„³å­ä½“č‚²å¤§å­¦'),
(24520, 'https://ror.org/0538g0d09', 'no_lang_code', 1, 'https://ror.org/0538g0d09 Kurashiki Sakuyo University ćć‚‰ć—ćä½œé™½å¤§å­¦'),
(24521, 'https://ror.org/05byzd324', 'no_lang_code', 1, 'https://ror.org/05byzd324 Hiroshima Bunka Gakuen University åŗƒå³¶ę–‡åŒ–å­¦åœ’å¤§å­¦'),
(24522, 'https://ror.org/00wptnt05', 'en', 1, 'https://ror.org/00wptnt05 Utsunomiya Kyowa University 宇都宮共和大学'),
(24523, 'https://ror.org/03cvxzw02', 'en', 1, 'https://ror.org/03cvxzw02 Rajamangala University of Technology Tawan-ok ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø•ąø°ąø§ąø±ąø™ąø­ąø­ąø'),
(24524, 'https://ror.org/047vj8n35', 'en', 1, 'https://ror.org/047vj8n35 Tapee University วณทยาคัยตาปี'),
(24525, 'https://ror.org/04d3gck32', 'id', 1, 'https://ror.org/04d3gck32 Universitas Wijayakusuma Purwokerto'),
(24526, 'https://ror.org/03866db80', 'en', 1, 'https://ror.org/03866db80 Kushiro Public University of Economics 釧路公立大学'),
(24527, 'https://ror.org/00myp7129', 'en', 1, 'https://ror.org/00myp7129 Youngsan University of Son Studies ģ˜ģ‚°ģ„ ķ•™ėŒ€ķ•™źµ'),
(24528, 'https://ror.org/04wv2vw16', 'en', 1, 'https://ror.org/04wv2vw16 Surindra Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąøøąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(24529, 'https://ror.org/014bk4g26', 'en', 1, 'https://ror.org/014bk4g26 International Teaching University of Georgia įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ "įƒ’įƒįƒ įƒ’įƒįƒ”įƒįƒšįƒ˜"'),
(24530, 'https://ror.org/02p6jga18', 'en', 1, 'https://ror.org/02p6jga18 Doshisha Women''s College of Liberal Arts åŒåæ—ē¤¾å„³å­å¤§å­¦'),
(24531, 'https://ror.org/03s0nek04', 'no_lang_code', 1, 'https://ror.org/03s0nek04 Lumnamping College ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø„ąøøą¹ˆąø”ąø™ą¹‰ąø³ąø›ąø“ąø‡'),
(24532, 'https://ror.org/01kq1we52', 'en', 1, 'https://ror.org/01kq1we52 Eastern Asia University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø­ąøµąøŖą¹€ąø—ąø“ąø£ą¹Œąø™ą¹€ąø­ą¹€ąøŠąøµąø¢'),
(24533, 'https://ror.org/04629sk87', 'en', 1, 'https://ror.org/04629sk87 Bukkyo University 佛教大学'),
(24534, 'https://ror.org/00ebk5277', 'en', 1, 'https://ror.org/00ebk5277 Tbilisi Humanitarian Teaching University įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ°įƒ£įƒ›įƒįƒœįƒ˜įƒ¢įƒįƒ įƒ£įƒšįƒ˜ įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24535, 'https://ror.org/03mzvzx07', 'en', 1, 'https://ror.org/03mzvzx07 Dhonburi Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø˜ąø™ąøšąøøąø£ąøµ'),
(24536, 'https://ror.org/010vxxa64', 'en', 1, 'https://ror.org/010vxxa64 Kyrgyz State National University И.Арабаев атынГагы ŠšŃ‹Ń€Š³Ń‹Š· мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(24537, 'https://ror.org/0247pbj10', 'en', 1, 'https://ror.org/0247pbj10 Ubon Ratchathani Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(24538, 'https://ror.org/04t1qn077', 'en', 1, 'https://ror.org/04t1qn077 Kyoto Koka Women''s University äŗ¬éƒ½å…‰čÆå„³å­å¤§å­¦'),
(24539, 'https://ror.org/04mfefe23', 'en', 1, 'https://ror.org/04mfefe23 Kyoto Notre Dame University äŗ¬éƒ½ćƒŽćƒ¼ćƒˆćƒ«ćƒ€ćƒ å„³å­å¤§å­¦'),
(24540, 'https://ror.org/02hxajc23', 'en', 1, 'https://ror.org/02hxajc23 Kyoto City University of Arts äŗ¬éƒ½åø‚ē«‹čŠøč”“å¤§å­¦'),
(24541, 'https://ror.org/001hawd46', 'id', 1, 'https://ror.org/001hawd46 Universitas Al-washliyah Labuhanbatu'),
(24542, 'https://ror.org/04xs0cw05', 'en', 1, 'https://ror.org/04xs0cw05 Kyoto University of Art and Design äŗ¬éƒ½é€ å½¢čŠøč”“å¤§å­¦'),
(24543, 'https://ror.org/02s5jck73', 'en', 1, 'https://ror.org/02s5jck73 J. F. Oberlin University ę”œē¾Žęž—å¤§å­¦'),
(24544, 'https://ror.org/05h6yt550', 'en', 1, 'https://ror.org/05h6yt550 Udon Thani Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø­ąøøąø”ąø£ąø˜ąø²ąø™ąøµ'),
(24545, 'https://ror.org/02nc54350', 'id', 1, 'https://ror.org/02nc54350 Universitas Sawerigading Makassar'),
(24546, 'https://ror.org/009m17x95', 'en', 1, 'https://ror.org/009m17x95 Kyrgyz Economic University ŠšŃ‹Ń€Š³Ń‹Š· Экономика ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø М. Š Ń‹ŃŠŗŃƒŠ»Š±ŠµŠŗŠ¾Š² ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. М. Š Ń‹ŃŠŗŃƒŠ»Š±ŠµŠŗŠ¾Š²Š°'),
(24547, 'https://ror.org/04a698174', 'no_lang_code', 1, 'https://ror.org/04a698174 Tokyo Kasei Gakuin University ę±äŗ¬å®¶ę”æå­¦é™¢å¤§å­¦'),
(24548, 'https://ror.org/01c4p4327', 'id', 1, 'https://ror.org/01c4p4327 Universitas Darwan Ali'),
(24549, 'https://ror.org/059hx7q04', 'en', 1, 'https://ror.org/059hx7q04 Gunma University of Health and Welfare ē¾¤é¦¬åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(24550, 'https://ror.org/03ncgps69', 'no_lang_code', 1, 'https://ror.org/03ncgps69 Maebashi Kyoai Gakuen College å…±ę„›å­¦åœ’å‰ę©‹å›½éš›å¤§å­¦'),
(24551, 'https://ror.org/03rfp4q66', 'en', 1, 'https://ror.org/03rfp4q66 Santapol College ąø™ąø“ąø•ąø“ąøØąø²ąøŖąø•ąø£ą¹Œ ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŖąø±ąø™ąø•ąøžąø„'),
(24552, 'https://ror.org/01x05rm94', 'en', 1, 'https://ror.org/01x05rm94 Maebashi Institute of Technology å‰ę©‹å·„ē§‘å¤§å­¦'),
(24553, 'https://ror.org/01rs03g07', 'en', 1, 'https://ror.org/01rs03g07 Uttaradit Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø­ąøøąø•ąø£ąø”ąø“ąø•ąø–ą¹Œ'),
(24554, 'https://ror.org/05ke4ws41', 'en', 1, 'https://ror.org/05ke4ws41 Yala Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøŽąø¢ąø°ąø„ąø²'),
(24555, 'https://ror.org/0441s6w50', 'no_lang_code', 1, 'https://ror.org/0441s6w50 Seitoku University 聖徳大学'),
(24556, 'https://ror.org/02rttk866', 'en', 1, 'https://ror.org/02rttk866 Matsumoto University ę¾ęœ¬å¤§å­¦'),
(24557, 'https://ror.org/00379n634', 'en', 1, 'https://ror.org/00379n634 Kyrgyz State University of Construction, Transport and Architecture named after N. Isanov ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š°, транспорта Šø Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ им.Š.Исанова Š.Исанов атынГагы ŠšŃ‹Ń€Š³Ń‹Š· мамлекеттик ŠŗŃƒŃ€ŃƒŠ»ŃƒŃˆ, транспорт жана Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š° ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(24558, 'https://ror.org/0267k9n61', 'no_lang_code', 1, 'https://ror.org/0267k9n61 Kinjo University 金城大学'),
(24559, 'https://ror.org/04atzpa02', 'en', 1, 'https://ror.org/04atzpa02 Aichi Toho University ę„›ēŸ„ę±é‚¦å¤§å­¦'),
(24560, 'https://ror.org/02csxcg02', 'id', 1, 'https://ror.org/02csxcg02 Universitas Dian Nuswantoro'),
(24561, 'https://ror.org/05xkw0e31', 'en', 1, 'https://ror.org/05xkw0e31 V. Sarajishvili Tbilisi State Conservation įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ•.įƒ”įƒįƒ įƒįƒÆįƒ˜įƒØįƒ•įƒ˜įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ™įƒįƒœįƒ”įƒ”įƒ įƒ•įƒįƒ¢įƒįƒ įƒ˜įƒ'),
(24562, 'https://ror.org/0238qsm25', 'en', 1, 'https://ror.org/0238qsm25 Nihon Fukushi University ę—„ęœ¬ē¦ē„‰å¤§å­¦'),
(24563, 'https://ror.org/03qcg1j33', 'no_lang_code', 1, 'https://ror.org/03qcg1j33 Taisei Gakuin University å¤Ŗęˆå­¦é™¢å¤§å­¦'),
(24564, 'https://ror.org/05hra0856', 'id', 1, 'https://ror.org/05hra0856 Universitas Muhammadiyah Semarang'),
(24565, 'https://ror.org/020qfzf72', 'en', 1, 'https://ror.org/020qfzf72 Kyrgyz-Russian Slavic University named after B.N. Yeltsin ŠšŠøŃ€Š³ŠøŠ·ŃŠŗŠ¾-российский ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Бориса Š•Š»ŃŒŃ†ŠøŠ½Š°'),
(24566, 'https://ror.org/05qbvwf88', 'en', 1, 'https://ror.org/05qbvwf88 Osaka University of Arts å¤§é˜ŖčŠøč”“å¤§å­¦'),
(24567, 'https://ror.org/04w893s72', 'en', 1, 'https://ror.org/04w893s72 David Tvildiani Medical University įƒ“įƒįƒ•įƒ˜įƒ— įƒ¢įƒ•įƒ˜įƒšįƒ“įƒ˜įƒįƒœįƒ˜įƒ” ეახ. įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24568, 'https://ror.org/03wya1h47', 'id', 1, 'https://ror.org/03wya1h47 Universitas Pandanaran'),
(24569, 'https://ror.org/04gtsq315', 'id', 1, 'https://ror.org/04gtsq315 Universitas Wahid Hasyim'),
(24570, 'https://ror.org/01dafqj83', 'en', 1, 'https://ror.org/01dafqj83 Japan Lutheran College ćƒ«ćƒ¼ćƒ†ćƒ«å­¦é™¢å¤§å­¦'),
(24571, 'https://ror.org/0051kz410', 'en', 1, 'https://ror.org/0051kz410 Tokiwa University 常磐大学'),
(24572, 'https://ror.org/022xhck05', 'en', 1, 'https://ror.org/022xhck05 Haliç University Haliç Üniversitesi'),
(24573, 'https://ror.org/01qheje62', 'no_lang_code', 1, 'https://ror.org/01qheje62 Shokei Gakuin University å°šēµ…å­¦é™¢å¤§å­¦'),
(24574, 'https://ror.org/01gm99y36', 'hi', 1, 'https://ror.org/01gm99y36 Gujarat Vidyapith ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖŖą«€ąŖ  ą®•ąÆą®œą®°ą®¾ą®¤ąÆ ą®µą®æą®¤ąÆą®Æą®¾ą®ŖąÆ€ą®Ÿą®®ąÆ'),
(24575, 'https://ror.org/04k4re972', 'id', 1, 'https://ror.org/04k4re972 Universitas Sisingamangaraja XII Tapanuli'),
(24576, 'https://ror.org/05nsdjj25', 'en', 1, 'https://ror.org/05nsdjj25 Miyagi University 宮城大学'),
(24577, 'https://ror.org/0229k3q35', 'en', 1, 'https://ror.org/0229k3q35 Maharshi Dayanand Saraswati University ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤¦ą¤Æą¤¾ą¤Øą¤Øą„ą¤¦ ą¤øą¤°ą¤øą„ą¤µą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤…ą¤œą¤®ą„‡ą¤°'),
(24578, 'https://ror.org/030wwj796', 'id', 1, 'https://ror.org/030wwj796 Universitas Jabal Ghafur'),
(24579, 'https://ror.org/04jty2903', 'en', 1, 'https://ror.org/04jty2903 Nishinippon Institute of Technology č„æę—„ęœ¬å·„ę„­å¤§å­¦'),
(24580, 'https://ror.org/04vh2cv64', 'en', 1, 'https://ror.org/04vh2cv64 Miyazaki Prefectural Nursing University å®®å“ŽēœŒē«‹ēœ‹č­·å¤§å­¦'),
(24581, 'https://ror.org/03jr06221', 'en', 1, 'https://ror.org/03jr06221 Dr Panjabrao Deshmukh Krishi Vidyapeeth ą¤”ą„‰. ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ą¤°ą¤¾ą¤µ ą¤¦ą„‡ą¤¶ą¤®ą„ą¤– ą¤•ą„ƒą¤·ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(24582, 'https://ror.org/05e8ahe21', 'en', 1, 'https://ror.org/05e8ahe21 Miyazaki International College 宮哎国際大学'),
(24583, 'https://ror.org/01gfny940', 'en', 1, 'https://ror.org/01gfny940 Miyazaki Municipal University å®®å“Žå…¬ē«‹å¤§å­¦'),
(24584, 'https://ror.org/05frh4635', 'no_lang_code', 1, 'https://ror.org/05frh4635 Miyazaki Sangyo-keiei University å®®å“Žē”£ę„­ēµŒå–¶å¤§å­¦'),
(24585, 'https://ror.org/0567mpb57', 'id', 1, 'https://ror.org/0567mpb57 Universitas Abdurahman Saleh Situbondo'),
(24586, 'https://ror.org/024p3pn20', 'no_lang_code', 1, 'https://ror.org/024p3pn20 Seisa Dohto University ę˜Ÿę§Žé“éƒ½å¤§å­¦'),
(24587, 'https://ror.org/00g0n6t22', 'en', 1, 'https://ror.org/00g0n6t22 Fakir Mohan University'),
(24588, 'https://ror.org/01h9zz434', 'en', 1, 'https://ror.org/01h9zz434 Japanese Red Cross Kyushu International College of Nursing ę—„ęœ¬čµ¤åå­—ä¹å·žå›½éš›ēœ‹č­·å¤§å­¦'),
(24589, 'https://ror.org/03q750z50', 'en', 1, 'https://ror.org/03q750z50 Lebanese Canadian University UniversitƩ Libano-Canadienne'),
(24590, 'https://ror.org/02sfa0g63', 'id', 1, 'https://ror.org/02sfa0g63 Universitas Muhamadiyah Sorong'),
(24591, 'https://ror.org/02dvskw32', 'en', 1, 'https://ror.org/02dvskw32 Makhanlal Chaturvedi National University of Journalism and Communication माखनलाल ą¤šą¤¤ą„ą¤°ą„ą¤µą„‡ą¤¦ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą¤¤ą„ą¤°ą¤•ą¤¾ą¤°ą¤æą¤¤ą¤¾ ą¤ą¤µą¤‚ ą¤øą¤‚ą¤šą¤¾ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24592, 'https://ror.org/031gj7m30', 'id', 1, 'https://ror.org/031gj7m30 Universitas Kristen Papua'),
(24593, 'https://ror.org/02q3t9m57', 'en', 1, 'https://ror.org/02q3t9m57 National Law Institute University'),
(24594, 'https://ror.org/04spwz235', 'en', 1, 'https://ror.org/04spwz235 American University of Science and Technology UniversitĆ© amĆ©ricaine de sciences et technologie الجامعة Ų§Ł„Ų£Ł…ŁŠŲ±ŁƒŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ā€Ž'),
(24595, 'https://ror.org/05c5yp582', 'id', 1, 'https://ror.org/05c5yp582 Universitas Subang'),
(24596, 'https://ror.org/038hwvh16', 'fr', 1, 'https://ror.org/038hwvh16 Ɖcole SupĆ©rieure des Affaires Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ų§Ł„ŁŠŲ© لادارة الاعمال'),
(24597, 'https://ror.org/033243786', 'id', 1, 'https://ror.org/033243786 Universitas Muhammadiyah Sukabumi'),
(24598, 'https://ror.org/04sjvrk20', 'no_lang_code', 1, 'https://ror.org/04sjvrk20 Maharaja Ganga Singh University महाराजा गंगा सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą¤¾ą¤²ą¤Æ'),
(24599, 'https://ror.org/01kyzdy66', 'fr', 1, 'https://ror.org/01kyzdy66 Al Imam Al Ouzai University Ų¬Ų§Ł…Ų¹Ų© ال؄مام Ų§Ł„Ų£ŁˆŲ²Ų§Ų¹ŁŠ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(24600, 'https://ror.org/01cyq8n55', 'en', 1, 'https://ror.org/01cyq8n55 Asia University 亜瓰亜大学'),
(24601, 'https://ror.org/00a8hpd04', 'en', 1, 'https://ror.org/00a8hpd04 Niigata University of Rehabilitation ę–°ę½ŸćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å¤§å­¦'),
(24602, 'https://ror.org/01a3w2x24', 'no_lang_code', 1, 'https://ror.org/01a3w2x24 Magadh University मगध ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24603, 'https://ror.org/04k0d3t24', 'no_lang_code', 1, 'https://ror.org/04k0d3t24 Al-KafaĆ t University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁŲ§Ų”Ų§ŲŖ'),
(24604, 'https://ror.org/02vc4jb94', 'en', 1, 'https://ror.org/02vc4jb94 Ministry of Foreign Affairs of Turkmenistan ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Šž Š˜ŠŠžŠ”Š¢Š ŠŠŠŠ«Š„ ДЕЛ Š¢Š£Š ŠšŠœŠ•ŠŠ˜Š”Š¢ŠŠŠ'),
(24605, 'https://ror.org/00mqpp445', 'id', 1, 'https://ror.org/00mqpp445 Universitas Samawa'),
(24606, 'https://ror.org/010nsv610', 'no_lang_code', 1, 'https://ror.org/010nsv610 Seisen Jogakuin College 清泉儳学院大学'),
(24607, 'https://ror.org/04byxj259', 'id', 1, 'https://ror.org/04byxj259 Universitas Winaya Mukti'),
(24608, 'https://ror.org/02dg6na50', 'en', 1, 'https://ror.org/02dg6na50 Halkara Türkmen-Türk uniwersiteti International Turkmen-Turkish University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Ń‚ŃƒŃ€ŠŗŠ¼ŠµŠ½Š¾-Ń‚ŃƒŃ€ŠµŃ†ŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(24609, 'https://ror.org/002grtm11', 'no_lang_code', 1, 'https://ror.org/002grtm11 Dakshina Bharat Hindi Prachar Sabha'),
(24610, 'https://ror.org/053hsst90', 'en', 1, 'https://ror.org/053hsst90 Dr. M.G.R. Educational and Research Institute'),
(24611, 'https://ror.org/00yydx071', 'no_lang_code', 1, 'https://ror.org/00yydx071 Osaka Seikei University 大阪成蹊大学'),
(24612, 'https://ror.org/048c1xv24', 'en', 1, 'https://ror.org/048c1xv24 Toyo Gakuen University ę±ę“‹å­¦åœ’å¤§å­¦'),
(24613, 'https://ror.org/04jdy5g59', 'en', 1, 'https://ror.org/04jdy5g59 Meenakshi Academy of Higher Education and Research'),
(24614, 'https://ror.org/006c2dp67', 'en', 1, 'https://ror.org/006c2dp67 Kwassui Women''s University 擻氓儳子大学'),
(24615, 'https://ror.org/01ypcyq30', 'en', 1, 'https://ror.org/01ypcyq30 Nagasaki University of Foreign Studies é•·å“Žå¤–å›½čŖžå¤§å­¦'),
(24616, 'https://ror.org/04756ha57', 'en', 1, 'https://ror.org/04756ha57 Nagasaki Junshin Catholic University é•·å“Žē“”åæƒå¤§å­¦'),
(24617, 'https://ror.org/04zqz4f11', 'id', 1, 'https://ror.org/04zqz4f11 Universitas Wiraraja'),
(24618, 'https://ror.org/01r3zxa49', 'id', 1, 'https://ror.org/01r3zxa49 Indonesian Institute of Informatics Institut Informatika Indonesia'),
(24619, 'https://ror.org/011x6fh62', 'en', 1, 'https://ror.org/011x6fh62 Tamil Nadu Dr. Ambedkar Law University ą®Ÿą®¾ą®•ąÆą®Ÿą®°ąÆ ą®…ą®®ąÆą®ŖąÆ‡ą®¤ąÆą®•ą®°ąÆ ą®šą®ŸąÆą®Ÿą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(24620, 'https://ror.org/01qc33y56', 'en', 1, 'https://ror.org/01qc33y56 National Institute of Sports and Tourism of Turkmenistan'),
(24621, 'https://ror.org/014bbcf72', 'en', 1, 'https://ror.org/014bbcf72 Nagasaki Wesleyan University é•·å“Žć‚¦ć‚Øć‚¹ćƒ¬ćƒ¤ćƒ³å¤§å­¦'),
(24622, 'https://ror.org/00ca12a38', 'hi', 1, 'https://ror.org/00ca12a38 Mahatma Gandhi Chitrakoot Gramodaya Vishwavidyalaya'),
(24623, 'https://ror.org/05d0pgx42', 'en', 1, 'https://ror.org/05d0pgx42 Meio University åę”œå¤§å­¦'),
(24624, 'https://ror.org/051jm0x83', 'en', 1, 'https://ror.org/051jm0x83 Jalalabad State University Жалал-АбаГ мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(24625, 'https://ror.org/05007jy86', 'id', 1, 'https://ror.org/05007jy86 Institut Teknologi Adhi Tama Surabaya'),
(24626, 'https://ror.org/03s2yse38', 'en', 1, 'https://ror.org/03s2yse38 Turkmen National Institute of Foreign Languages named after D. Azadi'),
(24627, 'https://ror.org/03hn03h23', 'fr', 1, 'https://ror.org/03hn03h23 UniversitĆ© La Sagesse Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŁƒŁ…Ų©'),
(24628, 'https://ror.org/026j13a09', 'en', 1, 'https://ror.org/026j13a09 Doho University åŒęœ‹å¤§å­¦'),
(24629, 'https://ror.org/02xrm8562', 'id', 1, 'https://ror.org/02xrm8562 Universitas 17 Agustus 1945 Surabaya'),
(24630, 'https://ror.org/05hjapd30', 'en', 1, 'https://ror.org/05hjapd30 State Academy of Arts of Turkmenistan Türkmenistanyň Döwlet çeperçilik akademiýasy'),
(24631, 'https://ror.org/03aet8853', 'no_lang_code', 1, 'https://ror.org/03aet8853 Tokai Gakuen University ę±ęµ·å­¦åœ’å¤§å­¦'),
(24632, 'https://ror.org/042vvq103', 'en', 1, 'https://ror.org/042vvq103 Makassed University Ų¬Ų§Ł…Ų¹Ų© المقاصد في بيروت'),
(24633, 'https://ror.org/04s03g948', 'id', 1, 'https://ror.org/04s03g948 Universitas Dr. Soetomo'),
(24634, 'https://ror.org/046zepm61', 'en', 1, 'https://ror.org/046zepm61 Okinawa University 沖縄大学'),
(24635, 'https://ror.org/05yk27p37', 'en', 1, 'https://ror.org/05yk27p37 Elisabeth University of Music ć‚ØćƒŖć‚¶ćƒ™ćƒˆéŸ³ę„½å¤§å­¦'),
(24636, 'https://ror.org/03gb3sn92', 'no_lang_code', 1, 'https://ror.org/03gb3sn92 Dr. Balasaheb Sawant Konkan Krishi Vidyapeeth'),
(24637, 'https://ror.org/02mwnfc70', 'en', 1, 'https://ror.org/02mwnfc70 Turkmen State Institute of Culture'),
(24638, 'https://ror.org/05h0pqw77', 'id', 1, 'https://ror.org/05h0pqw77 Universitas Hang Tuah'),
(24639, 'https://ror.org/03d8nmh82', 'en', 1, 'https://ror.org/03d8nmh82 Kameshwar Singh Darbhanga Sanskrit University ą¤•ą¤¾ą¤®ą„‡ą¤¶ą„ą¤µą¤° सिंह दरभंगा ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24640, 'https://ror.org/03t0fy352', 'en', 1, 'https://ror.org/03t0fy352 Okinawa Christian University ę²–ēø„ć‚­ćƒŖć‚¹ćƒˆę•™å­¦é™¢å¤§å­¦'),
(24641, 'https://ror.org/037thy319', 'id', 1, 'https://ror.org/037thy319 Kartini University Universitas Kartini'),
(24642, 'https://ror.org/02saqjz85', 'no_lang_code', 1, 'https://ror.org/02saqjz85 Chukyo Gakuin University 中京学院大学'),
(24643, 'https://ror.org/039pzne76', 'en', 1, 'https://ror.org/039pzne76 Beirut Islamic University الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© في لبنان'),
(24644, 'https://ror.org/03m5h1s11', 'en', 1, 'https://ror.org/03m5h1s11 Turkmen State Institute of Economics and Management Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(24645, 'https://ror.org/03ydd9q52', 'en', 1, 'https://ror.org/03ydd9q52 Nara Prefectural University å„ˆč‰ÆēœŒē«‹å¤§å­¦'),
(24646, 'https://ror.org/00e936y53', 'en', 1, 'https://ror.org/00e936y53 Turkmen State Institute of Transport and Communication'),
(24647, 'https://ror.org/051wzgj54', 'id', 1, 'https://ror.org/051wzgj54 Universitas Narotama'),
(24648, 'https://ror.org/02vh85b91', 'no_lang_code', 1, 'https://ror.org/02vh85b91 Sido Kanhu Murmu University ą¤øą¤æą¤¦ą„‹ ą¤•ą¤¾ą¤Øą„ą¤¹ą„‚ ą¤®ą„ą¤°ą„ą¤®ą„‚ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(24649, 'https://ror.org/01x24z916', 'en', 1, 'https://ror.org/01x24z916 Turkmen State Institute of Architecture and Construction'),
(24650, 'https://ror.org/034agrd14', 'en', 1, 'https://ror.org/034agrd14 Lebanese International University UniversitĆ© internationale libanaise الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(24651, 'https://ror.org/00gjmav90', 'id', 1, 'https://ror.org/00gjmav90 Universitas Sunan Giri'),
(24652, 'https://ror.org/00vnpja80', 'en', 1, 'https://ror.org/00vnpja80 Modern University for Business and Science الجامعة Ų§Ł„Ų­ŲÆŁŠŲ«Ų© لل؄دارة ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ…'),
(24653, 'https://ror.org/0272csn50', 'en', 1, 'https://ror.org/0272csn50 Lakshmibai National Institute of Physical Education'),
(24654, 'https://ror.org/05x5rpn21', 'en', 1, 'https://ror.org/05x5rpn21 American University of Technology دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ ŁŁ†Ų§ŁˆŲ±ŪŒ'),
(24655, 'https://ror.org/040eqhp13', 'en', 1, 'https://ror.org/040eqhp13 Islamic University of Lebanon الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© في لبنان'),
(24656, 'https://ror.org/013609965', 'en', 1, 'https://ror.org/013609965 City University Ų¬Ų§Ł…Ų¹Ų© المنار في طرابلس'),
(24657, 'https://ror.org/025ee3160', 'id', 1, 'https://ror.org/025ee3160 Universitas WR Supratman'),
(24658, 'https://ror.org/0210pwe06', 'en', 1, 'https://ror.org/0210pwe06 Tezukayama University åøå”šå±±å¤§å­¦'),
(24659, 'https://ror.org/0149y8a98', 'en', 1, 'https://ror.org/0149y8a98 Turkmen State Power Engineering Institute Türkmenistanyñ Döwlet Energetika Instituty'),
(24660, 'https://ror.org/05qp61e83', 'en', 1, 'https://ror.org/05qp61e83 Musashi University 武蔵大学'),
(24661, 'https://ror.org/005gjt698', 'en', 1, 'https://ror.org/005gjt698 University Geomedi įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ įƒ’įƒ”įƒįƒ›įƒ”įƒ“įƒ˜'),
(24662, 'https://ror.org/020an1644', 'en', 1, 'https://ror.org/020an1644 Maulana Azad National Urdu University Ł…ŁˆŁ„Ų§Ł†Ų§ Ų¢Ų²Ų§ŲÆ Ł†ŪŒŲ“Ł†Ł„ اردو ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ மவுலானா ą®†ą®šą®¾ą®¤ąÆ ą®¤ąÆ‡ą®šą®æą®Æ உருது ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°šą°°ą±ą°š:మౌలానా ą°…ą°¬ą±ą°²ą± ą°•ą°²ą°¾ą°®ą± ą°†ą°œą°¾ą°¦ą± ą“®ąµŒą“²ą“¾ą“Øą“¾ ą“†ą“øą“¾ą“¦ąµ ą“Øą“¾ą“·ą“Øąµ½ ą“‰ąµ¼ą“¦ąµ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ਮੌਲਾਨਾ ąØ†ąØœąØ¼ąØ¾ąØ¦ ਨੈਸ਼ਨਲ ਉਰਦੂ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(24663, 'https://ror.org/0539zen48', 'en', 1, 'https://ror.org/0539zen48 Nalsar University of Law'),
(24664, 'https://ror.org/056bksm23', 'en', 1, 'https://ror.org/056bksm23 Osaka Electro-Communication University å¤§é˜Ŗé›»ę°—é€šäæ”å¤§å­¦'),
(24665, 'https://ror.org/01mh73q44', 'en', 1, 'https://ror.org/01mh73q44 Potti Sreeramulu Telugu University ą®¤ąÆ†ą®²ąÆą®™ąÆą®•ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°Ŗą±Šą°Ÿą±ą°Ÿą°æ ą°¶ą±ą°°ą±€ą°°ą°¾ą°®ą±ą°²ą± తెలుగు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(24666, 'https://ror.org/02cgbcj98', 'en', 1, 'https://ror.org/02cgbcj98 Limkokwing University of Creative Technology Universiti Teknologi Kreatif Limkokwing'),
(24667, 'https://ror.org/05ebt7533', 'en', 1, 'https://ror.org/05ebt7533 Turkmen State Pedagogical Institute named Seidnazar Seydi Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Дейитназара ДейГи'),
(24668, 'https://ror.org/00qmy9z88', 'en', 1, 'https://ror.org/00qmy9z88 Higher Colleges of Technology ŁƒŁ„ŁŠŁ‘Ų§ŲŖ Ų§Ł„ŲŖŁ‚Ł†ŁŠŁ‘Ų© Ų§Ł„Ų¹Ł„ŁŠŲ§'),
(24669, 'https://ror.org/01zwh2149', 'no_lang_code', 1, 'https://ror.org/01zwh2149 Jawaharlal Nehru Krishi Vishwa Vidyalaya जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24670, 'https://ror.org/019787q29', 'en', 1, 'https://ror.org/019787q29 UCSI University Universiti UCSI'),
(24671, 'https://ror.org/03jp7rg16', 'en', 1, 'https://ror.org/03jp7rg16 LNM Institute of Information Technology'),
(24672, 'https://ror.org/04n3n6d60', 'en', 1, 'https://ror.org/04n3n6d60 Sher-e-Kashmir University of Agricultural Sciences and Technology of Jammu'),
(24673, 'https://ror.org/05qmfqe91', 'id', 1, 'https://ror.org/05qmfqe91 Universitas Yos Soedarso'),
(24674, 'https://ror.org/05y8x6h30', 'en', 1, 'https://ror.org/05y8x6h30 Al Ghurair University'),
(24675, 'https://ror.org/03yta1g89', 'en', 1, 'https://ror.org/03yta1g89 Niigata College of Nursing ę–°ę½ŸēœŒē«‹ēœ‹č­·å¤§å­¦'),
(24676, 'https://ror.org/03w6mtb84', 'en', 1, 'https://ror.org/03w6mtb84 Niigata Institute of Technology ę–°ę½Ÿå·„ē§‘å¤§å­¦'),
(24677, 'https://ror.org/018tkrn90', 'id', 1, 'https://ror.org/018tkrn90 Universitas Islam Batik'),
(24678, 'https://ror.org/03nskz175', 'en', 1, 'https://ror.org/03nskz175 Niigata University of International and Information Studies ę–°ę½Ÿå›½éš›ęƒ…å ±å¤§å­¦'),
(24679, 'https://ror.org/00nqcp204', 'no_lang_code', 1, 'https://ror.org/00nqcp204 Niigata Seiryo University ę–°ę½Ÿé’é™µå¤§å­¦'),
(24680, 'https://ror.org/04frcff47', 'en', 1, 'https://ror.org/04frcff47 Malaysia University of Science and Technology Universiti Sains dan Teknologi Malaysia'),
(24681, 'https://ror.org/04kjpwa96', 'en', 1, 'https://ror.org/04kjpwa96 Atomi University č·”č¦‹å­¦åœ’å„³å­å¤§å­¦'),
(24682, 'https://ror.org/00y5xdc54', 'id', 1, 'https://ror.org/00y5xdc54 Universitas Nahdlatul Ulama Surakarta'),
(24683, 'https://ror.org/03068df82', 'en', 1, 'https://ror.org/03068df82 Jumonji University åę–‡å­—å­¦åœ’å„³å­å¤§å­¦'),
(24684, 'https://ror.org/05h0z7c09', 'en', 1, 'https://ror.org/05h0z7c09 University of Dubai Ų¬Ų§Ł…Ų¹Ų© دبي'),
(24685, 'https://ror.org/054sr2w55', 'en', 1, 'https://ror.org/054sr2w55 Binary University of Management & Entrepreneurship'),
(24686, 'https://ror.org/0560jvm78', 'en', 1, 'https://ror.org/0560jvm78 Veer Bahadur Singh Purvanchal University ą¤µą„€ą¤° ą¤¬ą¤¹ą¤¾ą¤¦ą„ą¤° सिंह ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤‚ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®µąÆ€ą®°ąÆ ą®Ŗą®•ą®¤ąÆ‚ą®°ąÆ ą®šą®æą®™ąÆ ą®ŖąÆ‚ą®°ąÆą®µą®¾ą®žąÆą®šą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(24687, 'https://ror.org/02pxsrh16', 'en', 1, 'https://ror.org/02pxsrh16 Singhania University ą¤øą¤æą¤‚ą¤˜ą¤¾ą¤Øą¤æą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24688, 'https://ror.org/01q00vp39', 'en', 1, 'https://ror.org/01q00vp39 Nagoya University of Arts åå¤å±‹čŠøč”“å¤§å­¦'),
(24689, 'https://ror.org/03qnpty21', 'en', 1, 'https://ror.org/03qnpty21 Jai Narain Vyas University जयनारायण ą¤µą„ą¤Æą¤¾ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24690, 'https://ror.org/005bjd415', 'en', 1, 'https://ror.org/005bjd415 Sultan Idris Education University Universiti Pendidikan Sultan Idris ą®ŖąÆ†ą®£ąÆą®Ÿą®æą®Ÿą®æą®•ąÆą®•ą®¾ą®©ąÆ ą®šąÆą®²ąÆą®¤ą®¾ą®©ąÆ ą®‡ą®¤ąÆą®°ąÆ€ą®šąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(24691, 'https://ror.org/014phfv49', 'en', 1, 'https://ror.org/014phfv49 Kobe College ē„žęˆøå„³å­¦é™¢å¤§å­¦'),
(24692, 'https://ror.org/04kc6x746', 'no_lang_code', 1, 'https://ror.org/04kc6x746 Otemae University å¤§ę‰‹å‰å¤§å­¦'),
(24693, 'https://ror.org/03k9f1n96', 'en', 1, 'https://ror.org/03k9f1n96 Nagoya University of Foreign Studies åå¤å±‹å¤–å›½čŖžå¤§å­¦'),
(24694, 'https://ror.org/054jv7347', 'en', 1, 'https://ror.org/054jv7347 Kannada University ą²•ą²Øą³ą²Øą²” ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(24695, 'https://ror.org/04n1has83', 'id', 1, 'https://ror.org/04n1has83 Universitas Sahid Surakarta'),
(24696, 'https://ror.org/021hq5q33', 'en', 1, 'https://ror.org/021hq5q33 Sebelas Maret University Universitas Sebelas Maret'),
(24697, 'https://ror.org/03gn53446', 'id', 1, 'https://ror.org/03gn53446 Universitas Setia Budi'),
(24698, 'https://ror.org/05g48k331', 'en', 1, 'https://ror.org/05g48k331 Hamdan Bin Mohammed Smart University Ų¬Ų§Ł…Ų¹Ų© حمدان بن Ł…Ų­Ł…ŲÆ Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†ŁŠŲ©');
INSERT INTO `rors` VALUES
(24699, 'https://ror.org/0403ytw22', 'en', 1, 'https://ror.org/0403ytw22 Chandra Shekhar Azad University of Agriculture and Technology ą¤šą¤‚ą¤¦ą„ą¤° ą¤¶ą„‡ą¤–ą¤° ą¤†ą¤œą¤¾ą¤¦ ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24700, 'https://ror.org/01t79g318', 'id', 1, 'https://ror.org/01t79g318 Universitas Slamet Riyadi'),
(24701, 'https://ror.org/02c8fr539', 'en', 1, 'https://ror.org/02c8fr539 North Bengal Agricultural University Uttar Banga Krishi Viswavidyalaya'),
(24702, 'https://ror.org/00mc18523', 'en', 1, 'https://ror.org/00mc18523 British University in Dubai'),
(24703, 'https://ror.org/0447ajy94', 'en', 1, 'https://ror.org/0447ajy94 University of Wollongong in Dubai Ų¬Ų§Ł…Ų¹Ų© ŁˆŁ„ŁˆŁ†ŲŗŁˆŁ†Ųŗ في دبي'),
(24704, 'https://ror.org/02a7zg443', 'en', 1, 'https://ror.org/02a7zg443 University of the Humanities Š„ŅÆŠ¼ŅÆŅÆŠ½Š»ŃŠ³ŠøŠ¹Š½ Ухааны Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(24705, 'https://ror.org/01zte6c10', 'id', 1, 'https://ror.org/01zte6c10 Universitas Cordova'),
(24706, 'https://ror.org/03pkka491', 'id', 1, 'https://ror.org/03pkka491 Universitas Islam Syekh Yusuf'),
(24707, 'https://ror.org/04zj95y60', 'en', 1, 'https://ror.org/04zj95y60 Dravidian University ą¤¦ą„ą¤°ą¤µą¤æą¤”ą¤¼ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®¤ą®æą®°ą®¾ą®µą®æą®Ÿą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°¦ą±ą°°ą°µą°æą°” ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą± ą²¦ą³ą²°ą²¾ą²µą²æą²” ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(24708, 'https://ror.org/03tqe1x88', 'en', 1, 'https://ror.org/03tqe1x88 Andijan Institute of Agricultural Andijon qishloq xo''jalik instituti'),
(24709, 'https://ror.org/02rbqkj03', 'id', 1, 'https://ror.org/02rbqkj03 Universitas Pramita Indonesia'),
(24710, 'https://ror.org/01wmn7w14', 'en', 1, 'https://ror.org/01wmn7w14 Institute of Advanced Media Arts and Sciences ęƒ…å ±ē§‘å­¦čŠøč”“å¤§å­¦é™¢å¤§å­¦'),
(24711, 'https://ror.org/01nkqk925', 'en', 1, 'https://ror.org/01nkqk925 Jain Vishva Bharati University ą¤œą„ˆą¤Ø ą¤µą¤æą¤¶ą„ą¤µ ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24712, 'https://ror.org/02z7pfr92', 'en', 1, 'https://ror.org/02z7pfr92 Oita University of Nursing and Health Sciences å¤§åˆ†ēœŒē«‹ēœ‹č­·ē§‘å­¦å¤§å­¦'),
(24713, 'https://ror.org/040gghh09', 'no_lang_code', 1, 'https://ror.org/040gghh09 Chugoku Gakuen University äø­å›½å­¦åœ’å¤§å­¦'),
(24714, 'https://ror.org/05999pw96', 'id', 1, 'https://ror.org/05999pw96 Universitas Pancasakti Tegal'),
(24715, 'https://ror.org/0085esk58', 'id', 1, 'https://ror.org/0085esk58 Universitas Kutai Kartanegara'),
(24716, 'https://ror.org/01ga8zd22', 'en', 1, 'https://ror.org/01ga8zd22 Andijan State Medical Institute Andijon Davlat Tibbiyot Instituti'),
(24717, 'https://ror.org/011w3dy65', 'no_lang_code', 1, 'https://ror.org/011w3dy65 Bhupendra Narayan Mandal University ą¤­ą„‚ą¤Ŗą„‡ą¤‚ą¤¦ą„ą¤° नारायण मंऔल ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24718, 'https://ror.org/05rap1m08', 'no_lang_code', 1, 'https://ror.org/05rap1m08 Maharaja Sriram Chandra Bhanja Deo University ମହାରାଜା ą¬¶ą­ą¬°ą­€ą¬°ą¬¾ą¬® ą¬šą¬Øą­ą¬¦ą­ą¬° ą¬­ą¬žą­ą¬œ ଦେଓ ą¬‡ą¬‰ą¬Øą¬æą¬­ą¬°ą­ą¬øą¬æą¬Ÿą¬æ'),
(24719, 'https://ror.org/00bad4666', 'en', 1, 'https://ror.org/00bad4666 Andijan State University Andijon davlat universiteti'),
(24720, 'https://ror.org/03pqde616', 'en', 1, 'https://ror.org/03pqde616 Okayama Shoka University 岔山商科大学'),
(24721, 'https://ror.org/010pkba38', 'en', 1, 'https://ror.org/010pkba38 Sanyo Gakuen University 山陽学園大学'),
(24722, 'https://ror.org/01r27v904', 'en', 1, 'https://ror.org/01r27v904 Sardar Vallabhbhai Patel University of Agriculture & Technology सरदार ą¤µą¤²ą„ą¤²ą¤­ą¤­ą¤¾ą¤ˆ ą¤Ŗą¤Ÿą„‡ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤—ą„ą¤°ą„€ą¤•ą¤²ą„ą¤šą¤° & ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(24723, 'https://ror.org/007hp0t61', 'en', 1, 'https://ror.org/007hp0t61 Muhammadiyah University of North Maluku Universitas Muhammadiyah Maluku Utara'),
(24724, 'https://ror.org/05f0cs849', 'en', 1, 'https://ror.org/05f0cs849 Aichi Sangyo University ę„›ēŸ„ē”£ę„­å¤§å­¦'),
(24725, 'https://ror.org/04gz2h231', 'en', 1, 'https://ror.org/04gz2h231 Okinawa Prefectural College of Nursing ę²–ēø„ēœŒē«‹ēœ‹č­·å¤§å­¦'),
(24726, 'https://ror.org/04jpmwt24', 'no_lang_code', 1, 'https://ror.org/04jpmwt24 Bidhan Chandra Krishi Viswavidyalaya बिधान ą¤šą¤Øą„ą¤¦ą„ą¤° ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¬ą¦æą¦§ą¦¾ą¦Øą¦šą¦Øą§ą¦¦ą§ą¦° ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(24727, 'https://ror.org/04b4kxc62', 'id', 1, 'https://ror.org/04b4kxc62 Universitas Halmahera'),
(24728, 'https://ror.org/02zp6e752', 'en', 1, 'https://ror.org/02zp6e752 Osaka University of Tourism å¤§é˜Ŗč¦³å…‰å¤§å­¦'),
(24729, 'https://ror.org/03qfmrs34', 'en', 1, 'https://ror.org/03qfmrs34 Central Institute of Fisheries Education'),
(24730, 'https://ror.org/00k729t32', 'id', 1, 'https://ror.org/00k729t32 Institut Teknologi Minaesa'),
(24731, 'https://ror.org/02whw1h12', 'id', 1, 'https://ror.org/02whw1h12 Universitas Kristen Indonesia Tomohon'),
(24732, 'https://ror.org/04n1dph88', 'id', 1, 'https://ror.org/04n1dph88 Universitas Sariputra Indonesia Tomohon'),
(24733, 'https://ror.org/05dybcw48', 'id', 1, 'https://ror.org/05dybcw48 Universitas Tulungagung'),
(24734, 'https://ror.org/04n731m62', 'en', 1, 'https://ror.org/04n731m62 Osaka Shoin Women''s University å¤§é˜ŖęØŸč”­å„³å­å¤§å­¦'),
(24735, 'https://ror.org/04q5v8a44', 'en', 1, 'https://ror.org/04q5v8a44 Ulaanbaatar International University ŠžŠ»Š¾Š½ ŃƒŠ»ŃŃ‹Š½ ŃƒŠ»Š°Š°Š½Š±Š°Š°Ń‚Š°Ń€Ń‹Š½ ŠøŃ… ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(24736, 'https://ror.org/03zjy9626', 'en', 1, 'https://ror.org/03zjy9626 Jizzakh Polytechnic Institute Jizzax Poltexnika Instituti'),
(24737, 'https://ror.org/02fm1my09', 'id', 1, 'https://ror.org/02fm1my09 Universitas Kristen Indonesia Paulus'),
(24738, 'https://ror.org/045qb5273', 'en', 1, 'https://ror.org/045qb5273 D.Y. Patil University'),
(24739, 'https://ror.org/00m2v3519', 'no_lang_code', 1, 'https://ror.org/00m2v3519 Zasagt Khan institute'),
(24740, 'https://ror.org/059fmyk31', 'en', 1, 'https://ror.org/059fmyk31 Soai University 相愛大学'),
(24741, 'https://ror.org/00efgh409', 'en', 1, 'https://ror.org/00efgh409 Indian Institute of Foreign Trade ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤¦ą„‡ą¤¶ ą¤µą„ą¤Æą¤¾ą¤Ŗą¤¾ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(24742, 'https://ror.org/03nw47j70', 'no_lang_code', 1, 'https://ror.org/03nw47j70 Kanto Gakuen University é–¢ę±å­¦åœ’å¤§å­¦'),
(24743, 'https://ror.org/02bbvzp74', 'en', 1, 'https://ror.org/02bbvzp74 Indian Law Institute'),
(24744, 'https://ror.org/05bsrqh80', 'en', 1, 'https://ror.org/05bsrqh80 University of Medicine Magway'),
(24745, 'https://ror.org/00d7gza76', 'id', 1, 'https://ror.org/00d7gza76 Universitas Darul Ulum Islamic Centre Sudirman'),
(24746, 'https://ror.org/02z5xhm28', 'id', 1, 'https://ror.org/02z5xhm28 Universitas Gunung Kidul'),
(24747, 'https://ror.org/01268am16', 'en', 1, 'https://ror.org/01268am16 National Museum Institute of the History of Art, Conservation and Museology ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø कला इतिहास, ą¤øą¤‚ą¤°ą¤•ą„ą¤·ą¤£ ą¤ą¤µą¤‚ ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø'),
(24748, 'https://ror.org/01gwmqw64', 'en', 1, 'https://ror.org/01gwmqw64 Mandalay Technological University į€™į€”į€¹į€į€œį€±į€øį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(24749, 'https://ror.org/008jssb69', 'en', 1, 'https://ror.org/008jssb69 University of Computer Studies Mandalay'),
(24750, 'https://ror.org/03s3x9r14', 'en', 1, 'https://ror.org/03s3x9r14 Shri Lal Bahadur Shastri Rashtriya Sanskrit Vidyapeetha ą¤¶ą„ą¤°ą„€ लाल ą¤¬ą¤¹ą¤¾ą¤¦ą„ą¤°ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤°ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(24751, 'https://ror.org/00pbv8y11', 'en', 1, 'https://ror.org/00pbv8y11 Otaru University of Commerce å°ęØ½å•†ē§‘å¤§å­¦'),
(24752, 'https://ror.org/04sb3zx15', 'id', 1, 'https://ror.org/04sb3zx15 Institut Pertanian Intan'),
(24753, 'https://ror.org/03gz88214', 'en', 1, 'https://ror.org/03gz88214 University of Medicine Mandalay į€™į€”į€¹į€į€œį€±į€øį€†į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(24754, 'https://ror.org/022b23347', 'en', 1, 'https://ror.org/022b23347 Seian University of Art and Design ęˆå®‰é€ å½¢å¤§å­¦'),
(24755, 'https://ror.org/00dcg0248', 'no_lang_code', 1, 'https://ror.org/00dcg0248 Yadanabon University ရတနာပုံ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(24756, 'https://ror.org/02m0d6s97', 'id', 1, 'https://ror.org/02m0d6s97 Institut Sains & Teknologi Akprind Yogyakarta'),
(24757, 'https://ror.org/037wmsn67', 'en', 1, 'https://ror.org/037wmsn67 Nagoya Sangyo University åå¤å±‹ē”£ę„­å¤§å­¦'),
(24758, 'https://ror.org/01rckwh32', 'en', 1, 'https://ror.org/01rckwh32 Mawlamyine University į€™į€±į€¬į€ŗį€œį€™į€¼į€­į€Æį€„į€ŗ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(24759, 'https://ror.org/05vkk5g69', 'en', 1, 'https://ror.org/05vkk5g69 Hakuoh University ē™½é“Žå¤§å­¦'),
(24760, 'https://ror.org/04pad1p35', 'id', 1, 'https://ror.org/04pad1p35 Universitas Cokroaminoto Ngayogyakarta Universitas Cokroaminoto Yogyakarta'),
(24761, 'https://ror.org/05j20qz36', 'en', 1, 'https://ror.org/05j20qz36 Janabadra University'),
(24762, 'https://ror.org/0520yg777', 'no_lang_code', 1, 'https://ror.org/0520yg777 MindSet Rx (United States)'),
(24763, 'https://ror.org/02dhd8054', 'no_lang_code', 1, 'https://ror.org/02dhd8054 Arqball (United States)'),
(24764, 'https://ror.org/0350qvj56', 'en', 1, 'https://ror.org/0350qvj56 Karshi State University Qarshi Davlat Universiteti'),
(24765, 'https://ror.org/0362r6n51', 'en', 1, 'https://ror.org/0362r6n51 Kokand State Pedagogical Institute named after Mukimi Muqimiy nomidagi Qo''qon davlat pedagogika instituti'),
(24766, 'https://ror.org/049sxg896', 'en', 1, 'https://ror.org/049sxg896 Hemchandracharya North Gujarat University'),
(24767, 'https://ror.org/0264cyj93', 'en', 1, 'https://ror.org/0264cyj93 Sagami Women''s University 相樔儳子大学'),
(24768, 'https://ror.org/05arzt710', 'en', 1, 'https://ror.org/05arzt710 Sri Sathya Sai Institute of Higher Learning'),
(24769, 'https://ror.org/00megt644', 'en', 1, 'https://ror.org/00megt644 Namangan Engineering Pedagogical Institute Namangan muhandislik-pedagogika instituti'),
(24770, 'https://ror.org/03k5q1m42', 'no_lang_code', 1, 'https://ror.org/03k5q1m42 Poole Gakuin University å­¦ę ”ę³•äŗŗćƒ—ćƒ¼ćƒ«å­¦é™¢'),
(24771, 'https://ror.org/039aamd19', 'en', 1, 'https://ror.org/039aamd19 Nihon Pharmaceutical University ę—„ęœ¬č–¬ē§‘å¤§å­¦'),
(24772, 'https://ror.org/04xc7z697', 'en', 1, 'https://ror.org/04xc7z697 Navoi State Mining Institute'),
(24773, 'https://ror.org/025q7w350', 'en', 1, 'https://ror.org/025q7w350 Yezin Agricultural University į€›į€±į€†į€„į€ŗį€øį€…į€­į€Æį€€į€ŗį€•į€»į€­į€Æį€øį€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(24774, 'https://ror.org/03zgadm16', 'en', 1, 'https://ror.org/03zgadm16 Bunri University of Hospitality 脿武文理大学'),
(24775, 'https://ror.org/00wtb8g49', 'en', 1, 'https://ror.org/00wtb8g49 Shobi University å°šē¾Žå­¦åœ’å¤§å­¦'),
(24776, 'https://ror.org/02em1tr51', 'en', 1, 'https://ror.org/02em1tr51 University of Petroleum'),
(24777, 'https://ror.org/046st9p05', 'en', 1, 'https://ror.org/046st9p05 Taunggyi University တောင်ကြီး į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(24778, 'https://ror.org/0207r1190', 'en', 1, 'https://ror.org/0207r1190 Urawa University ęµ¦å’Œå¤§å­¦'),
(24779, 'https://ror.org/003ktzf45', 'id', 1, 'https://ror.org/003ktzf45 Universitas Respati Yogyakarta'),
(24780, 'https://ror.org/01b54nd92', 'en', 1, 'https://ror.org/01b54nd92 AJINIYOZ NOMIDAGI NUKUS DAVLAT PEDAGOGIKA INSTITUTI Nukus State Pedagogical Institute named after Ajiniyaz'),
(24781, 'https://ror.org/05rn78z96', 'en', 1, 'https://ror.org/05rn78z96 Dagon University ဒဂုံ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(24782, 'https://ror.org/049gff252', 'en', 1, 'https://ror.org/049gff252 Universitas Sarjanawiyata Tamansiswa University of Sarjanawiyata Tamansiswa'),
(24783, 'https://ror.org/04x8bys48', 'id', 1, 'https://ror.org/04x8bys48 Universitas Widya Mataram Yogyakarta'),
(24784, 'https://ror.org/01y7t5s25', 'en', 1, 'https://ror.org/01y7t5s25 Samarkand State Architectural and Civil-Engineering Institute Samarqand davlat arxitektura qurilish instituti'),
(24785, 'https://ror.org/05mzj8a56', 'en', 1, 'https://ror.org/05mzj8a56 Kyoto College of Graduate Studies for Informatics äŗ¬éƒ½ęƒ…å ±å¤§å­¦é™¢å¤§å­¦'),
(24786, 'https://ror.org/03ksn2k92', 'en', 1, 'https://ror.org/03ksn2k92 University of Dental Medicine'),
(24787, 'https://ror.org/00azgtq24', 'en', 1, 'https://ror.org/00azgtq24 Shri Jagannath Sanskrit University ą¤¶ą„ą¤°ą„€ ą¤œą¤—ą¤Øą„ą¤Øą¤¾ą¤„ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¬¶ą­ą¬°ą­€ ą¬œą¬—ą¬Øą­ą¬Øą¬¾ą¬„ ą¬øą¬‚ą¬øą­ą¬•ą­ƒą¬¤ ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(24788, 'https://ror.org/05g4f0342', 'en', 1, 'https://ror.org/05g4f0342 Kyoto Seika University äŗ¬éƒ½ē²¾čÆå¤§å­¦'),
(24789, 'https://ror.org/00mcwq335', 'en', 1, 'https://ror.org/00mcwq335 Indira Gandhi Agricultural University इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24790, 'https://ror.org/03hja9k84', 'en', 1, 'https://ror.org/03hja9k84 Fuji Women''s University 藤儳子大学'),
(24791, 'https://ror.org/03sb1j698', 'no_lang_code', 1, 'https://ror.org/03sb1j698 Indira Kala Sangeet University इंदिरा कला ą¤øą¤‚ą¤—ą„€ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24792, 'https://ror.org/0483fxt86', 'en', 1, 'https://ror.org/0483fxt86 Samarkand State Institute of Foreign Languages Samarqand davlat chet tillar instituti'),
(24793, 'https://ror.org/03c824k52', 'en', 1, 'https://ror.org/03c824k52 Samarkand State Medical Institute Š”ŠŠœŠŠ ŠšŠŠŠ”Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(24794, 'https://ror.org/0391xbs96', 'en', 1, 'https://ror.org/0391xbs96 Hokkai School of Commerce åŒ—ęµ·å•†ē§‘å¤§å­¦'),
(24795, 'https://ror.org/01hhetk66', 'no_lang_code', 1, 'https://ror.org/01hhetk66 Kavikulaguru Kalidas Sanskrit University ą¤•ą¤µą¤æą¤•ą„ą¤²ą¤—ą„ą¤°ą„ कालिदास ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24796, 'https://ror.org/03a7ksb41', 'en', 1, 'https://ror.org/03a7ksb41 Birsa Agricultural University बिरसा ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24797, 'https://ror.org/05gqsa340', 'en', 1, 'https://ror.org/05gqsa340 Hokkaido University of Science åŒ—ęµ·é“ē§‘å­¦å¤§å­¦'),
(24798, 'https://ror.org/05028dx30', 'en', 1, 'https://ror.org/05028dx30 University of Medicine 2 Yangon į€†į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗį‚ ရန်ကုန်'),
(24799, 'https://ror.org/00ae65a65', 'en', 1, 'https://ror.org/00ae65a65 Samarkand Institute of Economics and Service Samarqand iqtisodiyot va servis instituti'),
(24800, 'https://ror.org/04bz6gw73', 'en', 1, 'https://ror.org/04bz6gw73 Sapporo University 札幌大学'),
(24801, 'https://ror.org/01xapxe37', 'en', 1, 'https://ror.org/01xapxe37 Dr. Hari Singh Gour University ą¤”ą„‰. हरिसिंह ą¤—ą„Œą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24802, 'https://ror.org/03wt62c10', 'en', 1, 'https://ror.org/03wt62c10 Vinayaka Missions University விநாயகா ą®®ą®æą®·ą®©ąÆą®øąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(24803, 'https://ror.org/0490a2476', 'en', 1, 'https://ror.org/0490a2476 Sapporo International University ęœ­å¹Œå›½éš›å¤§å­¦'),
(24804, 'https://ror.org/01981np70', 'en', 1, 'https://ror.org/01981np70 Tenshi College 天使大学'),
(24805, 'https://ror.org/0056jkv70', 'en', 1, 'https://ror.org/0056jkv70 Dr. Rajendra Prasad Central Agriculture University ą¤”ą„‰. ą¤°ą¤¾ą¤œą„‡ą¤‚ą¤¦ą„ą¤° ą¤Ŗą„ą¤°ą¤øą¤¾ą¤¦ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24806, 'https://ror.org/03ppx1p25', 'en', 1, 'https://ror.org/03ppx1p25 University of Nagasaki é•·å“ŽēœŒē«‹å¤§å­¦'),
(24807, 'https://ror.org/04s222234', 'en', 1, 'https://ror.org/04s222234 Sambalpur University ą¬øą¬®ą­ą¬¬ą¬²ą¬Ŗą­ą¬° ą¬¬ą¬æą¬¶ą­ą¬¬ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(24808, 'https://ror.org/016hp9x85', 'en', 1, 'https://ror.org/016hp9x85 Gunma Prefectural Women''s University ē¾¤é¦¬ēœŒē«‹å„³å­å¤§å­¦'),
(24809, 'https://ror.org/05cqdcg79', 'no_lang_code', 1, 'https://ror.org/05cqdcg79 Musashino Gakuin University ę­¦č”µé‡Žå­¦é™¢å¤§å­¦'),
(24810, 'https://ror.org/048mwn423', 'en', 1, 'https://ror.org/048mwn423 Sardarkrushinagar Dantiwada Agricultural University ąŖ•ą«ƒąŖ·ąŖæ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, ąŖøąŖ°ąŖ¦ąŖ¾ąŖ°ąŖ•ą«ƒąŖ·ąŖæąŖØąŖ—ąŖ° દાંતીવાઔા'),
(24811, 'https://ror.org/016bpc336', 'en', 1, 'https://ror.org/016bpc336 International Pacific University 環太平擋大学'),
(24812, 'https://ror.org/00jgwn197', 'en', 1, 'https://ror.org/00jgwn197 Sher-e-Kashmir University of Agricultural Sciences and Technology of Kashmir ą¤¶ą„‡ą¤°-ą¤-ą¤•ą¤¶ą„ą¤®ą„€ą¤° ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24813, 'https://ror.org/02y394t43', 'en', 1, 'https://ror.org/02y394t43 Sardar Vallabhbhai National Institute of Technology Surat सरदार ą¤µą¤²ą„ą¤²ą¤­ą¤­ą¤¾ą¤ˆ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤øą„‚ą¤°ą¤¤'),
(24814, 'https://ror.org/05g910a37', 'en', 1, 'https://ror.org/05g910a37 Yangon University of Education į€›į€”į€ŗį€€į€Æį€”į€ŗį€•į€Šį€¬į€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(24815, 'https://ror.org/008pxsf13', 'en', 1, 'https://ror.org/008pxsf13 Yangon Technological University į€›į€”į€ŗį€€į€Æį€”į€ŗį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(24816, 'https://ror.org/034k66c68', 'en', 1, 'https://ror.org/034k66c68 Yangon University Of Distance Education į€”į€į€±į€øį€žį€„į€ŗ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(24817, 'https://ror.org/02et39n43', 'no_lang_code', 1, 'https://ror.org/02et39n43 Kerala Kalamandalam ą®•ą®²ą®¾ą®®ą®£ąÆą®Ÿą®²ą®®ąÆ ą“•ąµ‡ą“°ą“³ą“•ą“²ą“¾ą“®ą“£ąµą“”ą“²ą“‚'),
(24818, 'https://ror.org/041xnqz41', 'en', 1, 'https://ror.org/041xnqz41 Rashtriya Sanskrit Vidyapeetha ą°°ą°¾ą°·ą±ą°Ÿą±ą°°ą±€ą°Æ ą°øą°‚ą°øą±ą°•ą±ƒą°¤ ą°µą°æą°¦ą±ą°Æą°¾ą°Ŗą±€ą° ą°‚'),
(24819, 'https://ror.org/00abagg24', 'en', 1, 'https://ror.org/00abagg24 Janardan Rai Nagar Rajasthan Vidyapeeth University ą¤œą¤Øą¤¾ą¤°ą„ą¤¦ą¤Ø राय नागर ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24820, 'https://ror.org/03pwq8a06', 'en', 1, 'https://ror.org/03pwq8a06 Yangon University of Foreign Languages'),
(24821, 'https://ror.org/05jhq2w18', 'en', 1, 'https://ror.org/05jhq2w18 Maharana Pratap University of Agriculture and Technology'),
(24822, 'https://ror.org/02nbq4b63', 'en', 1, 'https://ror.org/02nbq4b63 Maharishi Mahesh Yogi Vedic University ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤®ą¤¹ą„‡ą¤¶ ą¤Æą„‹ą¤—ą„€ ą¤µą„ˆą¤¦ą¤æą¤• ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24823, 'https://ror.org/04ebscd73', 'en', 1, 'https://ror.org/04ebscd73 European University College Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£ŁˆŲ±ŁˆŲØŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(24824, 'https://ror.org/033kwjh11', 'no_lang_code', 1, 'https://ror.org/033kwjh11 Nepal Sanskrit University ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(24825, 'https://ror.org/01amn0803', 'en', 1, 'https://ror.org/01amn0803 Waljat Colleges of Applied Sciences ŁƒŁ„ŁŠŲ©ŁˆŁ„Ų¬Ų§ŲŖ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(24826, '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'),
(24827, 'https://ror.org/02sqfdy44', 'en', 1, 'https://ror.org/02sqfdy44 Kagoshima Immaculate Heart University é¹æå…å³¶ē“”åæƒå„³å­å¤§å­¦'),
(24828, 'https://ror.org/036feze91', 'no_lang_code', 1, 'https://ror.org/036feze91 Miyagi Gakuin Women''s University 宮城学院儳子大学'),
(24829, 'https://ror.org/02bc24n80', 'en', 1, 'https://ror.org/02bc24n80 Sendai Shirayuri Women''s College ä»™å°ē™½ē™¾åˆå„³å­å¤§å­¦'),
(24830, 'https://ror.org/01wmx5158', 'no_lang_code', 1, 'https://ror.org/01wmx5158 Tohoku Bunka Gakuen University ę±åŒ—ę–‡åŒ–å­¦åœ’å¤§å­¦'),
(24831, 'https://ror.org/03p7vg590', 'en', 1, 'https://ror.org/03p7vg590 Al-Zahra College for Women ŁƒŁ„ŁŠŲ© الزهراؔ للبنات'),
(24832, 'https://ror.org/022ckte53', 'en', 1, 'https://ror.org/022ckte53 Institute of Chartered Financial Analysts of India ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤šą¤¾ą¤°ą„ą¤Ÿą¤°ą„ą¤” ą¤µą¤æą¤¤ą„ą¤¤ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤²ą„‡ą¤·ą¤• ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(24833, 'https://ror.org/01phqre83', 'en', 1, 'https://ror.org/01phqre83 Tohoku Institute of Technology ę±åŒ—å·„ę„­å¤§å­¦'),
(24834, 'https://ror.org/03byfn584', 'en', 1, 'https://ror.org/03byfn584 Academy of Arts of Uzbekistan Oā€˜zbekiston Badiiy akademiyasi ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š² Узбекистана'),
(24835, 'https://ror.org/03aqgee13', 'en', 1, 'https://ror.org/03aqgee13 Isfahan University of Art دانؓگاه هنر اصفهان'),
(24836, 'https://ror.org/03472k602', 'no_lang_code', 1, 'https://ror.org/03472k602 Tohoku Seikatsu Bunka University ę±åŒ—ē”Ÿę“»ę–‡åŒ–å¤§å­¦'),
(24837, 'https://ror.org/00ggmmz77', 'en', 1, 'https://ror.org/00ggmmz77 Iakob Gogebashvili Telavi State University įƒ˜įƒįƒ™įƒįƒ‘ įƒ’įƒįƒ’įƒ”įƒ‘įƒįƒØįƒ•įƒ˜įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ—įƒ”įƒšįƒįƒ•įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ¢įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24838, 'https://ror.org/030dak672', 'en', 1, 'https://ror.org/030dak672 National Textile University Ł†ŪŒŲ“Ł†Ł„ Ł¹ŪŒŚ©Ų³Ł¹Ų§Ų¦Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(24839, 'https://ror.org/03dc0dy65', 'en', 1, 'https://ror.org/03dc0dy65 Kashan University of Medical Sciences'),
(24840, 'https://ror.org/03gsvvm69', 'no_lang_code', 1, 'https://ror.org/03gsvvm69 Nagoya Gakuin University 名古屋学院大学'),
(24841, 'https://ror.org/05cp38y47', 'en', 1, 'https://ror.org/05cp38y47 Osaka University of Human Sciences å¤§é˜Ŗäŗŗé–“ē§‘å­¦å¤§å­¦'),
(24842, 'https://ror.org/026q96n20', 'en', 1, 'https://ror.org/026q96n20 Keiwa College ę•¬å’Œå­¦åœ’å¤§å­¦'),
(24843, 'https://ror.org/00pxasb28', 'en', 1, 'https://ror.org/00pxasb28 Bunka Fashion Graduate University ę–‡åŒ–ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³å¤§å­¦é™¢å¤§å­¦'),
(24844, 'https://ror.org/01e0ns064', 'en', 1, 'https://ror.org/01e0ns064 University of East ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ آف Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś±ŲŒ آرٽس، سائنس Ų§ŁŠŁ†ŚŠ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠā€Ž'),
(24845, 'https://ror.org/03yfe9v83', 'en', 1, 'https://ror.org/03yfe9v83 Air University جامعہ فضایہ'),
(24846, 'https://ror.org/01hxe3g21', 'en', 1, 'https://ror.org/01hxe3g21 Hanoi University of Culture ĐẔi hį»c Văn hóa HĆ  Nį»™i'),
(24847, 'https://ror.org/04edybc52', 'no_lang_code', 1, 'https://ror.org/04edybc52 Biwako Seikei Sport College ć³ć‚ć“ęˆč¹Šć‚¹ćƒćƒ¼ćƒ„å¤§å­¦'),
(24848, 'https://ror.org/0130a6s10', 'en', 1, 'https://ror.org/0130a6s10 Foundation University Islamabad ŁŲ§Ų¤Ł†ŚˆŪŒŲ“Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ اسلام Ų¢ŲØŲ§ŲÆ'),
(24849, 'https://ror.org/01tmmzv45', 'en', 1, 'https://ror.org/01tmmzv45 Institute of Space Technology Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ آف اسپیس Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(24850, 'https://ror.org/059cjcr63', 'no_lang_code', 1, 'https://ror.org/059cjcr63 Baiko Gakuin University 梅光学院大学'),
(24851, 'https://ror.org/02xx4jg88', 'en', 1, 'https://ror.org/02xx4jg88 Mohammad Ali Jinnah University جامعہ Ł…Ų­Ł…ŲÆ Ų¹Ł„ŪŒ جناح'),
(24852, 'https://ror.org/008dh2426', 'en', 1, 'https://ror.org/008dh2426 National University of Modern Languages Ł‚ŁˆŁ…ŪŒ جامعہ ŲØŲ±Ų§Ų¦Ū’ جدید Ł„Ų³Ų§Ł†ŪŒŲ§ŲŖ'),
(24853, 'https://ror.org/055688f96', 'en', 1, 'https://ror.org/055688f96 State Conservatory of Uzbekistan'),
(24854, 'https://ror.org/04f9apy08', 'en', 1, 'https://ror.org/04f9apy08 Advanced Institute of Industrial Technology ē”£ę„­ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(24855, 'https://ror.org/047wxqn68', 'en', 1, 'https://ror.org/047wxqn68 Mejiro University 目白大学'),
(24856, 'https://ror.org/0480pdg65', 'no_lang_code', 1, 'https://ror.org/0480pdg65 Shizuoka Eiwa Gakuin University é™å²”č‹±å’Œå­¦é™¢å¤§å­¦'),
(24857, 'https://ror.org/03mq68c95', 'no_lang_code', 1, 'https://ror.org/03mq68c95 Tokoha Gakuen University åøøč‘‰å­¦åœ’å¤§å­¦'),
(24858, 'https://ror.org/05dsae220', 'en', 1, 'https://ror.org/05dsae220 Khayyam University دانؓگاه Ų®ŪŒŲ§Ł…'),
(24859, 'https://ror.org/03fvscn16', 'en', 1, 'https://ror.org/03fvscn16 Okinawa Prefectural University of Arts ę²–ēø„ēœŒē«‹čŠøč”“å¤§å­¦'),
(24860, 'https://ror.org/01s5r7k60', 'en', 1, 'https://ror.org/01s5r7k60 Razavi University of Islamic Sciences دانؓگاه Ų¹Ł„ŁˆŁ… Ų§Ų³Ł„Ų§Ł…ŪŒ رضوی'),
(24861, 'https://ror.org/02bdt4v11', 'en', 1, 'https://ror.org/02bdt4v11 Pakistan Institute of Development Economics'),
(24862, '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'),
(24863, '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'),
(24864, 'https://ror.org/0247ag655', 'id', 1, 'https://ror.org/0247ag655 Universitas Islam Indragiri'),
(24865, 'https://ror.org/00q15p987', 'en', 1, 'https://ror.org/00q15p987 Dadabhoy Institute of Higher Education ŲÆŲ§ŲÆŲ§Ś€ŁˆŲ¦ŁŠ Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف Ł‡Ų§Ų¦ŁŠŲ± Ų§ŁŠŲ¬ŁˆŚŖŁŠŲ“Ł†'),
(24866, 'https://ror.org/01avkfv81', 'en', 1, 'https://ror.org/01avkfv81 Baqir Al-Olum University دانؓگاه ŲØŲ§Ł‚Ų±Ų§Ł„Ų¹Ł„ŁˆŁ…'),
(24867, 'https://ror.org/02azr0g93', 'en', 1, 'https://ror.org/02azr0g93 Khairun University Universitas Khairun'),
(24868, 'https://ror.org/05f92a127', 'en', 1, 'https://ror.org/05f92a127 Myitkyina University မြစ်ကြီးနား į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(24869, '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'),
(24870, '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'),
(24871, 'https://ror.org/044tdw637', 'en', 1, 'https://ror.org/044tdw637 Mofid University دانؓگاه Ł…ŁŪŒŲÆ'),
(24872, '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'),
(24873, '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'),
(24874, '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'),
(24875, 'https://ror.org/02a1v1364', 'id', 1, 'https://ror.org/02a1v1364 Universitas Lakidende'),
(24876, 'https://ror.org/03fbdat12', 'en', 1, 'https://ror.org/03fbdat12 Greenwich University'),
(24877, 'https://ror.org/00hqpmg61', 'en', 1, 'https://ror.org/00hqpmg61 Indus University Ų§Ł†ŚŠŲ³ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(24878, 'https://ror.org/02m04pz98', 'en', 1, 'https://ror.org/02m04pz98 Tashkent State Higher School of National Dance and Choreography'),
(24879, 'https://ror.org/0191rk783', 'id', 1, 'https://ror.org/0191rk783 Universitas Sains Al-Qur''an'),
(24880, 'https://ror.org/0179yft03', 'en', 1, 'https://ror.org/0179yft03 Indus Valley School of Art and Architecture Ų§Ł†ŚŠŲ³ ŁˆŁŠŁ„ŁŠ Ų§Ų³ŚŖŁˆŁ„ آف آرٽ Ų§ŁŠŁ†ŚŠ Ų¢Ų±ŚŖŁŠŁ½ŁŠŚŖŚ†Ų±'),
(24881, 'https://ror.org/04a8t1e98', 'no_lang_code', 1, 'https://ror.org/04a8t1e98 Osaka Gakuin University å¤§é˜Ŗå­¦é™¢å¤§å­¦'),
(24882, 'https://ror.org/056xnk046', 'en', 1, 'https://ror.org/056xnk046 Vali Asr University of Rafsanjan'),
(24883, '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'),
(24884, 'https://ror.org/022rp9q74', 'en', 1, 'https://ror.org/022rp9q74 Senri Kinran University åƒé‡Œé‡‘č˜­å¤§å­¦'),
(24885, 'https://ror.org/028vh3r56', 'en', 1, 'https://ror.org/028vh3r56 Suzuka University éˆ“é¹æå›½éš›å¤§å­¦'),
(24886, 'https://ror.org/056gdnv76', 'en', 1, 'https://ror.org/056gdnv76 Kunitachi College of Music å›½ē«‹éŸ³ę„½å¤§å­¦'),
(24887, 'https://ror.org/014jyaw47', 'en', 1, 'https://ror.org/014jyaw47 Fukuoka Prefectural University ē¦å²”ēœŒē«‹å¤§å­¦'),
(24888, 'https://ror.org/03egfpm06', 'en', 1, 'https://ror.org/03egfpm06 Institute of Business Administration Karachi Ų§Ł†Ų³Ł¹ŁŠŁ¹ŁŠŁˆŁ¹ آف بزنس Ų§ŁŠŚˆŁ…Ł†Ų³Ł¹Ų±ŁŠŲ“Ł†'),
(24889, 'https://ror.org/004684q56', 'en', 1, 'https://ror.org/004684q56 Takamatsu University é«˜ę¾å¤§å­¦'),
(24890, 'https://ror.org/023crty50', 'en', 1, 'https://ror.org/023crty50 Shahroud University of Medical Sciences'),
(24891, 'https://ror.org/04bxa3v83', 'en', 1, 'https://ror.org/04bxa3v83 Shiraz University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ ؓیراز'),
(24892, 'https://ror.org/016grcy95', 'en', 1, 'https://ror.org/016grcy95 Takaoka University of Law é«˜å²”ę³•ē§‘å¤§å­¦'),
(24893, 'https://ror.org/03j9sfh72', 'en', 1, 'https://ror.org/03j9sfh72 Takarazuka University of Arts & Crafts å®å”šé€ å½¢čŠøč”“å¤§å­¦'),
(24894, 'https://ror.org/02sdmkj94', 'en', 1, 'https://ror.org/02sdmkj94 Karachi Institute of Economics and Technology'),
(24895, 'https://ror.org/018mf9d35', 'en', 1, 'https://ror.org/018mf9d35 Tashkent Financial Institute Toshkent Moliya Instituti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Финансовый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(24896, 'https://ror.org/04jte2n37', 'en', 1, 'https://ror.org/04jte2n37 Khadim Ali Shah Bukhari Institute of Technology Ų®Ų§ŲÆŁ… Ų¹Ł„ŁŠ ؓاه بخاري Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف ŲŖŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ'),
(24897, 'https://ror.org/04h4y6q56', 'en', 1, 'https://ror.org/04h4y6q56 Quy Nhon University TrĘ°į»ng ĐẔi Hį»c Quy NhĘ”n'),
(24898, 'https://ror.org/05m6adj80', 'en', 1, 'https://ror.org/05m6adj80 Takasaki City University of Economics é«˜å“ŽēµŒęøˆå¤§å­¦'),
(24899, 'https://ror.org/045z05062', 'en', 1, 'https://ror.org/045z05062 St. Agnes University 平安儳学院大学'),
(24900, 'https://ror.org/03shzqb14', 'en', 1, 'https://ror.org/03shzqb14 Newports Institute of Communications and Economics Ł†ŁŠŁˆ پورٽس Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف ŚŖŁ…ŁŠŁˆŁ†ŁŠŚŖŁŠŲ“Ł†Ų³ Ų§ŁŠŁ† Ų§ŁŠŚŖŲ§Ł†Ų§Ł…ŚŖŲ³'),
(24901, 'https://ror.org/01kt71615', 'en', 1, 'https://ror.org/01kt71615 TOSHKENT TO''QIMACHILIK VA YENGIL SANOAT INSTITUTI Tashkent Institute of Textile and Light Industry Š¢ŠŠØŠšŠ•ŠŠ¢Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š•ŠšŠ”Š¢Š˜Š›Š¬ŠŠžŠ™ И Š›Š•Š“ŠšŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(24902, 'https://ror.org/02we77t30', 'en', 1, 'https://ror.org/02we77t30 Preston Institute of Management Science and Technology'),
(24903, 'https://ror.org/05dp8mg49', 'en', 1, 'https://ror.org/05dp8mg49 Hồng Đức University TrĘ°į»ng ĐẔi Hį»c Hồng Đức 擪德大学'),
(24904, 'https://ror.org/05yfc2w21', 'en', 1, 'https://ror.org/05yfc2w21 Shaheed Zulfiqar Ali Bhutto Institute of Science and Technology ؓہید Ų°ŁˆŲ§Ł„ŁŁ‚Ų§Ų± Ų¹Ł„ŪŒ بھٹو Ų§Ł†Ų³Ł¹ŪŒŁ¹ŪŒŁˆŁ¹ آف سائنس Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(24905, 'https://ror.org/04rkxwr48', 'en', 1, 'https://ror.org/04rkxwr48 Jin-ai University 仁愛大学'),
(24906, 'https://ror.org/02n4kqn31', 'en', 1, 'https://ror.org/02n4kqn31 Sir Syed University of Engineering and Technology Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś± Ū½ Ł½ŁŠŚŖŁ†ŁŠŚ€ŁŠŲ§Ų³ جي جامعہ Ų³Ų± Ų³ŁŠŲÆā€Ž'),
(24907, 'https://ror.org/02cc4gc68', 'en', 1, 'https://ror.org/02cc4gc68 Allameh Tabataba''i University دانؓگاه علامه طباطبایی'),
(24908, 'https://ror.org/04ft9rp47', 'en', 1, 'https://ror.org/04ft9rp47 Textile Institute of Pakistan پاکستان کی Ł¹ŪŒŚ©Ų³Ł¹Ų§Ų¦Ł„ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(24909, 'https://ror.org/02s232b27', 'en', 1, 'https://ror.org/02s232b27 Shah Abdul Latif University جامعہ ؓاہ Ų¹ŲØŲÆŲ§Ł„Ł„Ų·ŪŒŁā€Ž ؓاه Ų¹ŲØŲÆŲ§Ł„Ł„Ų·ŁŠŁ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠā€Ž'),
(24910, 'https://ror.org/053wftt74', 'en', 1, 'https://ror.org/053wftt74 Arak University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ų±Ų§Ś©'),
(24911, 'https://ror.org/02gdq8g56', 'en', 1, 'https://ror.org/02gdq8g56 Tama University å¤šę‘©å¤§å­¦'),
(24912, 'https://ror.org/041qsth84', 'en', 1, 'https://ror.org/041qsth84 Balochistan University of Engineering and Technology ŲØŁ„ŁˆŚ†Ų³ŲŖŲ§Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ Ų®Ų¶ŲÆŲ§Ų±'),
(24913, 'https://ror.org/05p7xfk26', 'en', 1, 'https://ror.org/05p7xfk26 Preston University Ł¾Ų±ŪŒŲ³Ł¹Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(24914, 'https://ror.org/04bad2882', 'en', 1, 'https://ror.org/04bad2882 Civil Aviation Technology College دانؓکده ŁŁ†Ų§ŁˆŲ±ŪŒ Ł‡ŁˆŲ§Ł¾ŪŒŁ…Ų§ŪŒŪŒ Ł‡ŁˆŲ§Ł¾ŪŒŁ…Ų§ŪŒŪŒ'),
(24915, 'https://ror.org/03e6rv013', 'en', 1, 'https://ror.org/03e6rv013 Beaconhouse National University ŲØŪŒŚ©Ł† ہاؤس Ł†ŪŒŲ“Ł†Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(24916, 'https://ror.org/048e0p659', 'en', 1, 'https://ror.org/048e0p659 University of Science and Culture دانؓگاه علم و فرهنگ'),
(24917, 'https://ror.org/014cke235', 'en', 1, 'https://ror.org/014cke235 Dalat University TrĘ°į»ng ĐẔi hį»c ĐƠ Lįŗ”t UniversitĆ© de Dalat 大叻大学'),
(24918, 'https://ror.org/05fkpm735', 'en', 1, 'https://ror.org/05fkpm735 Hodeidah University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŲÆŁŠŲÆŲ©'),
(24919, 'https://ror.org/01d6nwa88', 'no_lang_code', 1, 'https://ror.org/01d6nwa88 Hajvery University جامعہ ہجویری'),
(24920, 'https://ror.org/00fhcxc56', 'en', 1, 'https://ror.org/00fhcxc56 Ibb University Ų¬Ų§Ł…Ų¹Ų© Ų„ŲØ'),
(24921, 'https://ror.org/04r58gt57', 'en', 1, 'https://ror.org/04r58gt57 University of Applied Science and Technology دانؓگاه Ų¬Ų§Ł…Ų¹ Ų¹Ł„Ł…ŪŒ-کاربردی جهاد ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(24922, 'https://ror.org/02ggnbj54', 'en', 1, 'https://ror.org/02ggnbj54 Tehran University of Art دانؓگاه هنر'),
(24923, 'https://ror.org/04ajy5s58', 'en', 1, 'https://ror.org/04ajy5s58 Iman University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų„ŁŠŁ…Ų§Ł†'),
(24924, 'https://ror.org/051kvhx87', 'en', 1, 'https://ror.org/051kvhx87 Saba University Ų¬Ų§Ł…Ų¹Ų© Ų³ŲØŲ£'),
(24925, 'https://ror.org/01rnr2315', 'en', 1, 'https://ror.org/01rnr2315 Institute of Management Sciences Lahore'),
(24926, 'https://ror.org/022jg8f66', 'en', 1, 'https://ror.org/022jg8f66 Yemenia University الجامعة Ų§Ł„ŁŠŁ…Ł†ŁŠŲ©'),
(24927, 'https://ror.org/05jhvw838', 'en', 1, 'https://ror.org/05jhvw838 Imperial College of Business Studies بزنس سٹڈیز کے Ų§Ł…Ł¾ŪŒŲ±ŪŒŁ„ کالج'),
(24928, 'https://ror.org/0175kt397', 'en', 1, 'https://ror.org/0175kt397 Lahore School of Economics'),
(24929, 'https://ror.org/00grh1m39', 'en', 1, 'https://ror.org/00grh1m39 National College of Arts Ł†ŪŒŲ“Ł†Ł„ کالج آف آرٹس'),
(24930, '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'),
(24931, 'https://ror.org/02v319z25', 'en', 1, 'https://ror.org/02v319z25 Urmia University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(24932, 'https://ror.org/03c19jm06', 'en', 1, 'https://ror.org/03c19jm06 Universiteti i Elbasanit University of Elbasan'),
(24933, 'https://ror.org/0095xcq10', 'en', 1, 'https://ror.org/0095xcq10 University of Management and Technology ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŁ†Ų¬Ł…Ł†Ł¹ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(24934, 'https://ror.org/01sfz7q36', 'en', 1, 'https://ror.org/01sfz7q36 University of South Asia جامعہ Ų¬Ł†ŁˆŲØŪŒ ایؓیا'),
(24935, 'https://ror.org/030rcn265', 'en', 1, 'https://ror.org/030rcn265 University of Arts'),
(24936, 'https://ror.org/03psjxz30', 'en', 1, 'https://ror.org/03psjxz30 Hanoi University of Pharmacy TrĘ°į»ng ĐẔi hį»c Dược HĆ  Nį»™i'),
(24937, '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'),
(24938, 'https://ror.org/021zagz69', 'en', 1, 'https://ror.org/021zagz69 Slavic Business Institute'),
(24939, 'https://ror.org/01t0d1m90', 'en', 1, 'https://ror.org/01t0d1m90 Iran Banking Institute مؤسسه Ų¹Ų§Ł„ŪŒ ŲØŲ§Ł†Ś©ŲÆŲ§Ų±ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(24940, 'https://ror.org/00vfdqg37', 'en', 1, 'https://ror.org/00vfdqg37 Modern University for the Humanities Š”Š¾Š²Ń€ŠµŠ¼ŠµŠ½Š½Š°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(24941, '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'),
(24942, 'https://ror.org/0563xp259', 'en', 1, 'https://ror.org/0563xp259 Sports University of Tirana Universiteti i Sporteve tƫ Tiranƫs'),
(24943, 'https://ror.org/02mkkqv65', 'en', 1, 'https://ror.org/02mkkqv65 Imam Sadiq University دانؓگاه Ų§Ł…Ų§Ł… ŲµŲ§ŲÆŁ‚'),
(24944, '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'),
(24945, 'https://ror.org/03a8q7p75', 'en', 1, 'https://ror.org/03a8q7p75 Foreign Trade University ĐẔi hį»c Ngoįŗ”i Thʰʔng'),
(24946, 'https://ror.org/00r0xhf81', 'en', 1, 'https://ror.org/00r0xhf81 Petroleum University of Technology دانؓگاه صنعت نفت'),
(24947, 'https://ror.org/05rjmhp95', 'en', 1, 'https://ror.org/05rjmhp95 Academy of Film & Multimedia ā€œMARUBIā€ Akademia e Filmit dhe Multimedias Marubi'),
(24948, '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'),
(24949, 'https://ror.org/00hvbx079', 'en', 1, 'https://ror.org/00hvbx079 School of International Relations دانؓکده روابط ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ وزارت Ų§Ł…ŁˆŲ± Ų®Ų§Ų±Ų¬Ł‡ā€Ž'),
(24950, 'https://ror.org/02pk0yz95', 'en', 1, 'https://ror.org/02pk0yz95 Al Mansour University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ł…Ł†ŲµŁˆŲ± الجامعة'),
(24951, 'https://ror.org/05qwfk367', 'en', 1, 'https://ror.org/05qwfk367 Luarasi University Universiteti Luarasi'),
(24952, 'https://ror.org/01wfhkb67', 'en', 1, 'https://ror.org/01wfhkb67 Iraqi University الجامعة Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ©'),
(24953, 'https://ror.org/00s18am05', 'en', 1, 'https://ror.org/00s18am05 Everglades University'),
(24954, 'https://ror.org/01d3tej48', 'en', 1, 'https://ror.org/01d3tej48 University of New York Tirana'),
(24955, 'https://ror.org/02d2yjc53', 'en', 1, 'https://ror.org/02d2yjc53 University of the Russian Academy of Education Университет Российской АкаГемии ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(24956, 'https://ror.org/021s7kp67', 'en', 1, 'https://ror.org/021s7kp67 Gorsky State Agrarian University Горский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(24957, 'https://ror.org/03dd8b657', 'en', 1, 'https://ror.org/03dd8b657 Mohi-ud-Din Islamic University Ł…Ų­ŪŒ Ų§Ł„ŲÆŪŒŁ† Ų§Ų³Ł„Ų§Ł…ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒŪ”'),
(24958, '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ƫ"'),
(24959, 'https://ror.org/03xtc7g80', 'en', 1, 'https://ror.org/03xtc7g80 Industrial Management Institute سازمان Ł…ŲÆŁŠŲ±ŁŠŲŖ ŲµŁ†Ų¹ŲŖŁŠ'),
(24960, 'https://ror.org/02at53m79', 'en', 1, 'https://ror.org/02at53m79 Northern University ناردرن Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ł†ŁˆŚšŲ§Ų± ناردرن ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ Ł†ŁˆŲ“ŪŲ±Ū'),
(24961, 'https://ror.org/00vk7w211', 'en', 1, 'https://ror.org/00vk7w211 North Ossetian State University Деверо-ŠžŃŠµŃ‚ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. Š›. Š„ŠµŃ‚Š°Š³ŃƒŃ€Š¾Š²Š°'),
(24962, 'https://ror.org/05ws11813', 'no_lang_code', 1, 'https://ror.org/05ws11813 Abasyn University Ų§ŲØŲ§Ų³ŪŒŁ† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(24963, 'https://ror.org/01xyxtp53', 'en', 1, 'https://ror.org/01xyxtp53 CECOS University'),
(24964, 'https://ror.org/013cp5728', 'en', 1, 'https://ror.org/013cp5728 Vladikavkaz Institute of Management ВлаГикавказский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(24965, 'https://ror.org/02jsdya97', 'en', 1, 'https://ror.org/02jsdya97 City University of Science and Information Technology سٹی ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف سائنس Ų§ŪŒŁ†Śˆ Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(24966, 'https://ror.org/00kp9ef37', 'en', 1, 'https://ror.org/00kp9ef37 Shahid Sattari University of Aeronautical Engineering دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† Ł‡ŁˆŲ§ŪŒŪŒ Ų“Ł‡ŪŒŲÆ ستاری'),
(24967, 'https://ror.org/05qyt4p67', 'en', 1, 'https://ror.org/05qyt4p67 Sardar Bahadur Khan Women''s University Ų³Ų±ŲÆŲ§Ų± بہادر خان Ų®ŁˆŲ§ŲŖŪŒŁ† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(24968, 'https://ror.org/04jscf286', 'en', 1, 'https://ror.org/04jscf286 Ottawa University'),
(24969, 'https://ror.org/05m2gft34', 'en', 1, 'https://ror.org/05m2gft34 Vladimir Institute of Business ВлаГимирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(24970, 'https://ror.org/04x60fh82', 'en', 1, 'https://ror.org/04x60fh82 Akademia Muzyczna im. Feliksa Nowowiejskiego w Bydgoszczy Feliks Nowowiejski Academy of Music in Bydgoszcz'),
(24971, 'https://ror.org/043nk9b40', 'en', 1, 'https://ror.org/043nk9b40 Vladimir Law Institute Š’Š›ŠŠ”Š˜ŠœŠ˜Š Š”ŠšŠ˜Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š”Š˜Š Š ŠžŠ”Š”Š˜Š˜'),
(24972, 'https://ror.org/023t8mt09', 'en', 1, 'https://ror.org/023t8mt09 Hong Kong Shue Yan University 香港樹仁大學'),
(24973, 'https://ror.org/050fbe140', 'en', 1, 'https://ror.org/050fbe140 Hong Kong Academy for Performing Arts é¦™ęøÆę¼”č—å­øé™¢'),
(24974, 'https://ror.org/01mt0cc57', 'en', 1, 'https://ror.org/01mt0cc57 Kiang Wu Nursing College of Macau ę¾³é—Øę±Ÿę¹–ęŠ¤ē†å­¦é™¢'),
(24975, 'https://ror.org/03aj6fx58', 'en', 1, 'https://ror.org/03aj6fx58 Far Eastern State Technical Fisheries University'),
(24976, 'https://ror.org/01m6ap410', 'en', 1, 'https://ror.org/01m6ap410 Universidade de SĆ£o JosĆ© University of Saint Joseph č–č‹„ē‘Ÿå¤§å­ø'),
(24977, 'https://ror.org/0505vt318', 'en', 1, 'https://ror.org/0505vt318 Siberian Academy of Law, Economics and Management Š”ŠøŠ±ŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ права, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(24978, 'https://ror.org/03c6e8r26', 'en', 1, 'https://ror.org/03c6e8r26 Dayeh University 大葉大學'),
(24979, 'https://ror.org/01nrk6j30', 'en', 1, 'https://ror.org/01nrk6j30 MingDao University ę˜Žé“å¤§å­ø'),
(24980, 'https://ror.org/04hjmn382', 'en', 1, 'https://ror.org/04hjmn382 University of Economy in Bydgoszcz Wyższa Szkoła Gospodarki w Bydgoszczy'),
(24981, 'https://ror.org/04za16w58', 'en', 1, 'https://ror.org/04za16w58 Open Institute of Law ŠžŃ‚ŠŗŃ€Ń‹Ń‚Ń‹Š¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(24982, 'https://ror.org/01tfbz441', 'no_lang_code', 1, 'https://ror.org/01tfbz441 Nanhua University å—čÆå¤§å­ø'),
(24983, 'https://ror.org/03qvnw793', 'pl', 1, 'https://ror.org/03qvnw793 Wyższa Szkoła Ekonomii i Administracji w Bytomiu'),
(24984, 'https://ror.org/05d293n36', 'en', 1, 'https://ror.org/05d293n36 WuFeng University å³é³³ē§‘ęŠ€å¤§å­ø'),
(24985, 'https://ror.org/05smtc341', 'en', 1, 'https://ror.org/05smtc341 Irkutsk State Transport University Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(24986, 'https://ror.org/03a0cvz60', 'en', 1, 'https://ror.org/03a0cvz60 Hsuan Chuang University ēŽ„å„˜å¤§å­ø'),
(24987, 'https://ror.org/046wjy580', 'en', 1, 'https://ror.org/046wjy580 Fo Guang University 佛光大學'),
(24988, 'https://ror.org/00602gv86', 'en', 1, 'https://ror.org/00602gv86 Akademia Polonijna Polonia University'),
(24989, 'https://ror.org/05fbv4544', 'en', 1, 'https://ror.org/05fbv4544 Chien Hsin University of Science and Technology å„č”Œē§‘ęŠ€å¤§å­ø'),
(24990, 'https://ror.org/0047xfd47', 'en', 1, 'https://ror.org/0047xfd47 National Kaohsiung University of Hospitality and Tourism åœ‹ē«‹é«˜é›„é¤ę—…å¤§å­ø'),
(24991, 'https://ror.org/004wnty12', 'en', 1, 'https://ror.org/004wnty12 Open University of Kaohsiung é«˜é›„åø‚ē«‹ē©ŗäø­å¤§å­ø'),
(24992, 'https://ror.org/02ypf3368', 'no_lang_code', 1, 'https://ror.org/02ypf3368 Tsaritsyn Orthodox University of St. Sergius of Radonezh Царицынский православный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ препоГобного Š”ŠµŃ€Š³ŠøŃ РаГонежского'),
(24993, 'https://ror.org/03pcb1m79', 'en', 1, 'https://ror.org/03pcb1m79 Shu-Te University ęØ¹å¾·ē§‘ęŠ€å¤§å­ø'),
(24994, 'https://ror.org/04xak9f33', 'en', 1, 'https://ror.org/04xak9f33 University College of Social Sciences Wyższa Szkoła Lingwistyczna'),
(24995, 'https://ror.org/003aj1676', 'en', 1, 'https://ror.org/003aj1676 Volgograd Academy of the Russian Internal Affairs Ministry Š’Š¾Š»Š³Š¾Š³Ń€Š°Š“ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(24996, 'https://ror.org/00hmh4f17', 'en', 1, 'https://ror.org/00hmh4f17 Volgograd State Academy of Physical Culture Š’Š¾Š»Š³Š¾Š³Ń€Š°Š“ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(24997, 'https://ror.org/01d81q939', 'en', 1, 'https://ror.org/01d81q939 National Open University åœ‹ē«‹ē©ŗäø­å¤§å­ø'),
(24998, 'https://ror.org/00zk06669', 'en', 1, 'https://ror.org/00zk06669 Songho University ģ†”ķ˜øėŒ€ķ•™źµ'),
(24999, 'https://ror.org/03z698x91', 'en', 1, 'https://ror.org/03z698x91 National Pingtung University åœ‹ē«‹å±ę±å¤§å­ø'),
(25000, 'https://ror.org/041szz343', 'en', 1, 'https://ror.org/041szz343 Volgograd State Technical University Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ВолгограГский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25001, 'https://ror.org/006tnfe02', 'en', 1, 'https://ror.org/006tnfe02 National Taichung University of Education åœ‹ē«‹č‡ŗäø­ę•™č‚²å¤§å­ø'),
(25002, 'https://ror.org/040q3y035', 'en', 1, 'https://ror.org/040q3y035 Volgograd Institute of Economics, Sociology and Law ВолгограГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, социологии Šø права'),
(25003, 'https://ror.org/010s58a40', 'en', 1, 'https://ror.org/010s58a40 Volgograd Municipal Institute of Arts Š’Š¾Š»Š³Š¾Š³Ń€Š°Š“ŃŠŗŠ°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени П. А. Š”ŠµŃ€ŠµŠ±Ń€ŃŠŗŠ¾Š²Š° [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(25004, 'https://ror.org/00gq3pb70', 'en', 1, 'https://ror.org/00gq3pb70 Vologda State Milk Academy named after NV Vereshchagina'),
(25005, 'https://ror.org/03ms7mr17', 'en', 1, 'https://ror.org/03ms7mr17 Far East University é ę±ē§‘ęŠ€å¤§å­ø'),
(25006, 'https://ror.org/04rf83d41', 'en', 1, 'https://ror.org/04rf83d41 East-Siberian Institute of the Ministry of Internal Affairs of the Russian Federation восточно-сибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ министерства Š²Š½ŃƒŃ‚ренних Гел российской феГерации'),
(25007, 'https://ror.org/04dmnxh66', 'en', 1, 'https://ror.org/04dmnxh66 CTBC Business School äø­äæ”é‡‘čžē®”ē†å­øé™¢'),
(25008, 'https://ror.org/02vgg4e89', 'en', 1, 'https://ror.org/02vgg4e89 Tainan National University of the Arts åœ‹ē«‹č‡ŗå—č—č”“å¤§å­ø'),
(25009, 'https://ror.org/03967fe87', 'en', 1, 'https://ror.org/03967fe87 Tainan University of Technology å°å—ę‡‰ē”Øē§‘ęŠ€å¤§å­ø'),
(25010, 'https://ror.org/00ke8ye77', 'en', 1, 'https://ror.org/00ke8ye77 Aletheia University ēœŸē†å¤§å­ø'),
(25011, 'https://ror.org/02x5hb316', 'en', 1, 'https://ror.org/02x5hb316 Huafan University čÆę¢µå¤§å­ø'),
(25012, 'https://ror.org/02bzpph30', 'en', 1, 'https://ror.org/02bzpph30 National Taipei University of Education åœ‹ē«‹č‡ŗåŒ—ę•™č‚²å¤§å­ø'),
(25013, 'https://ror.org/00wy14q17', 'en', 1, 'https://ror.org/00wy14q17 National Taiwan University of Arts åœ‹ē«‹č‡ŗē£č—č”“å¤§å­ø'),
(25014, 'https://ror.org/028qksx08', 'en', 1, 'https://ror.org/028qksx08 Institute of Economics and Law Воронежский ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-правовой ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25015, 'https://ror.org/036gxc260', 'en', 1, 'https://ror.org/036gxc260 Institute of Management, Marketing and Finance Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента, маркетинга Šø финансов'),
(25016, 'https://ror.org/03ynprv96', 'en', 1, 'https://ror.org/03ynprv96 Shih Hsin University 世新大學'),
(25017, 'https://ror.org/02kdbxe33', 'en', 1, 'https://ror.org/02kdbxe33 International Institute of Computer Technologies ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŠ¾Š¼ŠæŃŒŃŽŃ‚ŠµŃ€Š½Ń‹Ń… технологий'),
(25018, 'https://ror.org/05kvm7n82', 'en', 1, 'https://ror.org/05kvm7n82 Soochow University ę±å³å¤§å­ø'),
(25019, 'https://ror.org/01kdeza40', 'en', 1, 'https://ror.org/01kdeza40 Taipei National University of the Arts åœ‹ē«‹č‡ŗåŒ—č—č”“å¤§å­ø'),
(25020, 'https://ror.org/04f9eby28', 'en', 1, 'https://ror.org/04f9eby28 Voronezh Institute of High Technologies Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ высоких технологий'),
(25021, 'https://ror.org/00jn77c36', 'en', 1, 'https://ror.org/00jn77c36 Voronezh State Academy of Arts Š’Š¾Ń€Š¾Š½ŠµŠ¶ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(25022, 'https://ror.org/01mebf576', 'en', 1, 'https://ror.org/01mebf576 Voronezh State University of Engineering Technologies Воронежский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ инженерных технологий'),
(25023, 'https://ror.org/05b7g7730', 'en', 1, 'https://ror.org/05b7g7730 Tungnan University ę±å—ē§‘ęŠ€å¤§å­ø'),
(25024, 'https://ror.org/018p1hd91', 'en', 1, 'https://ror.org/018p1hd91 Kainan University é–‹å—å¤§å­ø'),
(25025, 'https://ror.org/05kce7016', 'en', 1, 'https://ror.org/05kce7016 Voronezh State Medical Academy named after N.N. Burdenko Воронежский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š.Š. Š‘ŃƒŃ€Š“ŠµŠ½ŠŗŠ¾'),
(25026, 'https://ror.org/001y2wd07', 'en', 1, 'https://ror.org/001y2wd07 Lunghwa University of Science and Technology é¾čÆē§‘ęŠ€å¤§å­ø');
INSERT INTO `rors` VALUES
(25027, 'https://ror.org/02gf32v67', 'en', 1, 'https://ror.org/02gf32v67 Voronezh State Agrarian University named after Emperor Peter the Great Воро́нежский Š³Š¾ŃŃƒŠ“а́рственный агра́рный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ и́мени импера́тора ŠŸŠµŃ‚ра́ I'),
(25028, 'https://ror.org/04r3dny05', 'no_lang_code', 1, 'https://ror.org/04r3dny05 Vanung University č¬čƒ½ē§‘ęŠ€å¤§å­ø'),
(25029, 'https://ror.org/01m20f643', 'en', 1, 'https://ror.org/01m20f643 Voronezh State Technical University Š’ŠžŠ ŠžŠŠ•Š–Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ Š¢Š•Š„ŠŠ˜Š§Š•Š”ŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(25030, 'https://ror.org/02d19m529', 'en', 1, 'https://ror.org/02d19m529 Tianjin Open University 天擄开放大学'),
(25031, 'https://ror.org/00q798164', 'en', 1, 'https://ror.org/00q798164 Voronezh Institute of Economics and Social Management Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25032, 'https://ror.org/002xvag29', 'en', 1, 'https://ror.org/002xvag29 Moscow Regional Institute of Management and Law Московский областной ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(25033, 'https://ror.org/002xc5p11', 'en', 1, 'https://ror.org/002xc5p11 Dr. Babasaheb Ambedkar Open University ઔો. બાબાસાહેબ આંબેઔકર ąŖ“ąŖŖąŖØ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(25034, 'https://ror.org/05w387x59', 'en', 1, 'https://ror.org/05w387x59 Voronezh Institute of Ministry of Internal Affairs Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š”'),
(25035, 'https://ror.org/03sna8255', 'en', 1, 'https://ror.org/03sna8255 Izhevsk State Medical Academy Š˜Š¶ŠµŠ²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25036, 'https://ror.org/02j3w7f30', 'en', 1, 'https://ror.org/02j3w7f30 Madhya Pradesh Bhoj Open University ą¤®ą¤§ą„ą¤Æ ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤­ą„‹ą¤œ ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25037, 'https://ror.org/002qkam19', 'en', 1, 'https://ror.org/002qkam19 Izhevsk State Agricultural Academy Š˜Š¶ŠµŠ²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25038, 'https://ror.org/04hdbtc84', 'en', 1, 'https://ror.org/04hdbtc84 Netaji Subhas Open University ą¦Øą§‡ą¦¤ą¦¾ą¦œą¦æ সুভাষ ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(25039, 'https://ror.org/04w00w616', 'en', 1, 'https://ror.org/04w00w616 Vardhaman Mahaveer Open University ą¤µą¤°ą„ą¤§ą¤®ą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤–ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25040, 'https://ror.org/01kxpxf76', 'en', 1, 'https://ror.org/01kxpxf76 Yashwantrao Chavan Maharashtra Open University यशवंतराव ą¤šą¤µą„ą¤¹ą¤¾ą¤£ ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(25041, 'https://ror.org/02mfr8m15', 'en', 1, 'https://ror.org/02mfr8m15 Kamsky Institute of Humanitarian and Engineering Technologies Камский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… Šø инженерных технологий'),
(25042, 'https://ror.org/039hcn695', 'en', 1, 'https://ror.org/039hcn695 Nalanda Open University ą¤Øą¤¾ą¤²ą¤Øą„ą¤¦ą¤¾ ą¤–ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25043, 'https://ror.org/03efg7b93', 'no_lang_code', 1, 'https://ror.org/03efg7b93 The Egyptian General Company for Tourism and Hotels (Egypt) ايجوث - Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© العامة Ł„Ł„Ų³ŁŠŲ§Ų­Ų© ŁˆŲ§Ł„ŁŁ†Ų§ŲÆŁ‚'),
(25044, 'https://ror.org/00gjkwr85', 'en', 1, 'https://ror.org/00gjkwr85 Hanoi Open University TrĘ°į»ng ĐẔi hį»c Mở HĆ  Nį»™i'),
(25045, 'https://ror.org/02b2qz884', 'no_lang_code', 1, 'https://ror.org/02b2qz884 Sinar Mas (Indonesia)'),
(25046, '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'),
(25047, 'https://ror.org/031t0qj16', 'pl', 1, 'https://ror.org/031t0qj16 Wyższa Szkoła Zarządzania w Częstochowie'),
(25048, 'https://ror.org/02y7be508', 'en', 1, 'https://ror.org/02y7be508 Gomel Engineering Institute Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ инженерный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ МЧД Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(25049, 'https://ror.org/04y99m182', 'en', 1, 'https://ror.org/04y99m182 Belarusian State Agricultural Academy Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ°Š³Š°ŃŠæŠ°Š“Š°Ń€Ń‡Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń'),
(25050, 'https://ror.org/051f6n260', 'en', 1, 'https://ror.org/051f6n260 Yaroslavl State Agricultural Academy ŠÆŃ€Š¾ŃŠ»Š°Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25051, 'https://ror.org/02n3d5p55', 'en', 1, 'https://ror.org/02n3d5p55 Yaroslavl State Pedagogical University Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ярославский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. К.Š”. Ушинского'),
(25052, 'https://ror.org/00andm809', 'pl', 1, 'https://ror.org/00andm809 Akademia Sztuk Pięknych w Gdańsku'),
(25053, 'https://ror.org/033ddqa09', 'en', 1, 'https://ror.org/033ddqa09 Yaroslavl State Theatre Institute Ярославский Š³Š¾ŃŃƒŠ“арственный Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25054, 'https://ror.org/03pv9jn63', 'en', 1, 'https://ror.org/03pv9jn63 Grodno State Agrarian University ГроГзенскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ аграрны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(25055, 'https://ror.org/01zmze177', 'pl', 1, 'https://ror.org/01zmze177 Gdańska Wyższa Szkoła Humanistyczna'),
(25056, 'https://ror.org/01pn1ra92', 'en', 1, 'https://ror.org/01pn1ra92 International Institute of Management LINK ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента Š›Š˜ŠŠš'),
(25057, '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'),
(25058, 'https://ror.org/02ffca462', 'en', 1, 'https://ror.org/02ffca462 Megatrend University ŠœŠµŠ³Š°Ń‚Ń€ŠµŠ½Š“ ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚'),
(25059, 'https://ror.org/03scay082', 'en', 1, 'https://ror.org/03scay082 University of Arts in Belgrade Univerzitet umetnosti u Beogradu Универзитет ŃƒŠ¼ŠµŃ‚Š½Š¾ŃŃ‚Šø у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ'),
(25060, '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'),
(25061, '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 Š‘ŠµŠ»Š°Ń€ŃƒĢŃŃŒ'),
(25062, 'https://ror.org/03ys49e51', 'en', 1, 'https://ror.org/03ys49e51 Volga State University of Technology Поволжский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25063, 'https://ror.org/01dv2a529', 'no_lang_code', 1, 'https://ror.org/01dv2a529 University of Novi Pazar Univerzitet u Novom Pazaru'),
(25064, 'https://ror.org/017v7rz39', 'no_lang_code', 1, 'https://ror.org/017v7rz39 Singidunum University Универзитет ДингиГунум'),
(25065, 'https://ror.org/00s4gpc71', 'no_lang_code', 1, 'https://ror.org/00s4gpc71 HELP International Corporation (Malaysia)'),
(25066, 'https://ror.org/01yjw8d43', 'en', 1, 'https://ror.org/01yjw8d43 Mari State University ŠœŠ°Ń€ŠøŠ¹ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25067, 'https://ror.org/024ckfb15', 'en', 1, 'https://ror.org/024ckfb15 Academy of the Police Force in Bratislava AkadƩmia PolicajnƩho zboru v Bratislave'),
(25068, 'https://ror.org/04pejce58', 'en', 1, 'https://ror.org/04pejce58 Academy of the Interior Ministry of the Republic of Belarus ŠŠŗŠ°Š“ŃŠ¼Ń–Ń ŠœŃ–Š½Ń–ŃŃ‚ŃŃ€ŃŃ‚Š²Š° ŃžŠ½ŃƒŃ‚Ń€Š°Š½Ń‹Ń… ŃŠæŃ€Š°Ńž Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(25069, 'https://ror.org/01m631n05', 'en', 1, 'https://ror.org/01m631n05 Southern Sakhalin Institute of Economics, Law and Computer Science'),
(25070, 'https://ror.org/01w1er029', 'en', 1, 'https://ror.org/01w1er029 International University College Of Technology Kolej Universiti Teknologi Antarabangsa Twintech'),
(25071, 'https://ror.org/03ttsq905', 'en', 1, 'https://ror.org/03ttsq905 Baltic State Academy of the Fishing Fleet Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ рыбопромыслового флота'),
(25072, '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'),
(25073, 'https://ror.org/0108chx74', 'en', 1, 'https://ror.org/0108chx74 Akademia Muzyczna im. Karola Szymanowskiego w Katowicach Karol Szymanowski Academy of Music'),
(25074, 'https://ror.org/050901n67', 'en', 1, 'https://ror.org/050901n67 Belarusian State Academy of Music Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š¼ŃƒŠ·Ń‹ŠŗŃ– Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø'),
(25075, 'https://ror.org/028ptjw77', 'en', 1, 'https://ror.org/028ptjw77 Baltic Institute of Economics and Finance Балтийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø финансов'),
(25076, 'https://ror.org/05hna7313', 'en', 1, 'https://ror.org/05hna7313 Academy of Performing Arts in Bratislava VysokÔ Ŕkola múzických umení v Bratislave'),
(25077, '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'),
(25078, 'https://ror.org/05dr87s20', 'no_lang_code', 1, 'https://ror.org/05dr87s20 Dupres Group (Slovakia)'),
(25079, 'https://ror.org/003sxhp42', 'en', 1, 'https://ror.org/003sxhp42 Higher Institute of Management Š’Ń‹ŃŃˆŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25080, 'https://ror.org/000zprs97', 'en', 1, 'https://ror.org/000zprs97 Kaliningrad Law Institute Ministry of Internal Affairs of the Russian Federation ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“ŃŠŗŠøŠ¹ Филиал Данкт - ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Š³Š¾ Университета ŠœŠ’Š” России'),
(25081, 'https://ror.org/01pytr632', 'en', 1, 'https://ror.org/01pytr632 Murmansk Arctic State University ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠøŠ¹ арктический Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25082, 'https://ror.org/02vwdd886', 'en', 1, 'https://ror.org/02vwdd886 Belarusian State University of Physical Culture Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ фізічнай ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25083, 'https://ror.org/0514m3k39', 'en', 1, 'https://ror.org/0514m3k39 Stredoeurópska vysokÔ Ŕkola v Skalici University of Central Europe in Skalica'),
(25084, 'https://ror.org/01p6xxb83', 'en', 1, 'https://ror.org/01p6xxb83 Belarusian State University of Culture and Arts Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ і Š¼Š°ŃŃ‚Š°Ń†Ń‚Š²Š°Ńž Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(25085, 'https://ror.org/046y60k23', 'pl', 1, 'https://ror.org/046y60k23 Wyższa Szkoła Bankowości i Finansów w Katowicach'),
(25086, 'https://ror.org/03cg3mb71', 'en', 1, 'https://ror.org/03cg3mb71 Moscow Humanitarian Institute of E. Dashkova Московский Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š•.Š . Š”Š°ŃˆŠŗŠ¾Š²Š¾Š¹'),
(25087, 'https://ror.org/026katm53', 'pl', 1, 'https://ror.org/026katm53 Wyższa Szkoła Zarządzania Marketingowego i Języków Obcych'),
(25088, 'https://ror.org/05yq59a96', 'en', 1, 'https://ror.org/05yq59a96 International Institute of Economics and Law ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(25089, 'https://ror.org/02qnwnc62', 'en', 1, 'https://ror.org/02qnwnc62 IEDC-Bled School of Management'),
(25090, 'https://ror.org/04pfrr552', 'en', 1, 'https://ror.org/04pfrr552 International Institute of Business Education ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнес-Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(25091, 'https://ror.org/044b9hy83', 'en', 1, 'https://ror.org/044b9hy83 Faculty of Commercial and Business Sciences Fakultete za Komercialne in Poslovne Vede'),
(25092, 'https://ror.org/054n82381', 'en', 1, 'https://ror.org/054n82381 Russian University of Cooperation Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ кооперации'),
(25093, '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'),
(25094, 'https://ror.org/046wccx89', 'en', 1, 'https://ror.org/046wccx89 Angela BoŔkin Faculty of Health Care Fakulteta za zdravstvo Angele BoŔkin'),
(25095, 'https://ror.org/004cg6a95', 'pl', 1, 'https://ror.org/004cg6a95 Wyższa Szkoła Ekonomii, Prawa i Nauk Medycznych im. prof. Edwarda Lipińskiego'),
(25096, 'https://ror.org/04jj9d877', 'en', 1, 'https://ror.org/04jj9d877 Graduate School of Government and European Studies'),
(25097, 'https://ror.org/00s8r8p14', 'en', 1, 'https://ror.org/00s8r8p14 Faculty of Media Fakulteta za medije'),
(25098, 'https://ror.org/01xr78s65', 'pl', 1, 'https://ror.org/01xr78s65 Wyższa Szkoła Kultury Prawa i Sztuki Marketingu'),
(25099, 'https://ror.org/028a67802', 'no_lang_code', 1, 'https://ror.org/028a67802 Alma Mater Europaea'),
(25100, 'https://ror.org/040skpd26', 'pl', 1, 'https://ror.org/040skpd26 Wyższa Szkoła Umiejętności im. Stanisława Staszica w Kielcach'),
(25101, 'https://ror.org/04mgy5815', 'en', 1, 'https://ror.org/04mgy5815 Kamsky Institute'),
(25102, 'https://ror.org/01p4pqq97', 'sl', 1, 'https://ror.org/01p4pqq97 Å ola za Risanje in Slikanje'),
(25103, 'https://ror.org/04vympt94', 'en', 1, 'https://ror.org/04vympt94 Allama Iqbal Open University علامہ اقبال Ų§ŁˆŁ¾Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(25104, 'https://ror.org/03mpxe722', 'en', 1, 'https://ror.org/03mpxe722 Academy of Social Education'),
(25105, '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'),
(25106, 'https://ror.org/01bz4gq06', 'en', 1, 'https://ror.org/01bz4gq06 University of Management TISBI Университет Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ "Š¢Š˜Š”Š‘Š˜"'),
(25107, 'https://ror.org/033g82k60', 'en', 1, 'https://ror.org/033g82k60 Institute of Parliamentarism and Entrepreneurship Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ парламентаризма Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(25108, 'https://ror.org/00yf8nr88', 'en', 1, 'https://ror.org/00yf8nr88 Institute of Technology and Business'),
(25109, 'https://ror.org/0165s9m45', 'en', 1, 'https://ror.org/0165s9m45 Kabardino-Balkar State Agrarian University ŠšŠ°Š±Š°Ń€Š“ŠøŠ½Š¾-Балкарский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. М. Кокова'),
(25110, 'https://ror.org/05swzm262', 'en', 1, 'https://ror.org/05swzm262 Institute of Social and Humanities Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Šø Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… наук'),
(25111, 'https://ror.org/02n78dn25', 'en', 1, 'https://ror.org/02n78dn25 Higher School of Applied Sciences Visoka Ŕola za storitve'),
(25112, 'https://ror.org/03fxpr782', 'en', 1, 'https://ror.org/03fxpr782 North-Caucasian State Institute of Arts Деверо-Кавказский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(25113, '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'),
(25114, 'https://ror.org/02wtp9k17', 'en', 1, 'https://ror.org/02wtp9k17 Legnica University of Management Wyższa Szkoła Menedżerska w Legnicy'),
(25115, 'https://ror.org/01sy57r11', 'en', 1, 'https://ror.org/01sy57r11 Kazan State Conservatoire named after N. Zhiganov ŠšŠ°Š·Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń консерватории им. Š.Š“.Жиганова'),
(25116, 'https://ror.org/045m60334', 'en', 1, 'https://ror.org/045m60334 Kazan State University of Culture and Arts'),
(25117, 'https://ror.org/04nxym641', 'en', 1, 'https://ror.org/04nxym641 Kazan State Agrarian University Казанский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Аграрный Университет'),
(25118, 'https://ror.org/04b25wb90', 'no_lang_code', 1, 'https://ror.org/04b25wb90 Anhanguera (Brazil)'),
(25119, 'https://ror.org/00df8wr13', 'no_lang_code', 1, 'https://ror.org/00df8wr13 Education Management Corporation (United States)'),
(25120, 'https://ror.org/032sgfc78', 'en', 1, 'https://ror.org/032sgfc78 Ivanovo State Medical Academy Š˜Š²Š°Š½Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25121, 'https://ror.org/04bmtez11', 'en', 1, 'https://ror.org/04bmtez11 DOBA Business School DOBA Fakulteta'),
(25122, 'https://ror.org/01sby4e06', 'en', 1, 'https://ror.org/01sby4e06 Nizhny Novgorod State Conservatory named after M.I. Glinka ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени М. И. Глинки [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(25123, 'https://ror.org/00ak23720', 'en', 1, 'https://ror.org/00ak23720 Higher Education Centre Novo Mesto VisokoŔolsko SrediŔče Novo Mesto'),
(25124, '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'),
(25125, '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'),
(25126, 'https://ror.org/05mfk1s45', 'en', 1, 'https://ror.org/05mfk1s45 Nizhny Novgorod State Agricultural Academy'),
(25127, 'https://ror.org/05198a862', 'en', 1, 'https://ror.org/05198a862 International Sakharov Environmental Institute ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½Ń‹ Š”Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Ń–Š¼Ń А.Š”. Дахарава БДУ'),
(25128, 'https://ror.org/03avqt992', 'en', 1, 'https://ror.org/03avqt992 Nizhny Novgorod State University of Architecture and Civil Engineering ŠŠ˜Š–Š•Š“ŠžŠ ŠžŠ”Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŠ Š„Š˜Š¢Š•ŠšŠ¢Š£Š ŠŠž-Š”Š¢Š ŠžŠ˜Š¢Š•Š›Š¬ŠŠ«Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(25129, 'https://ror.org/01r2j4a39', 'en', 1, 'https://ror.org/01r2j4a39 GEA College'),
(25130, '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'),
(25131, 'https://ror.org/013gnjn86', 'en', 1, 'https://ror.org/013gnjn86 Linguistics University of Nizhny Novgorod ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. А. Š”Š¾Š±Ń€Š¾Š»ŃŽŠ±Š¾Š²Š°'),
(25132, 'https://ror.org/03761pf32', 'en', 1, 'https://ror.org/03761pf32 Euro Mediterranean University Evro-sredozemska univerza'),
(25133, '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'),
(25134, 'https://ror.org/0198m6535', 'en', 1, 'https://ror.org/0198m6535 Faculty of Polymer Technology Fakulteta za Tehnologijo Polimerov'),
(25135, 'https://ror.org/04nz95741', 'en', 1, 'https://ror.org/04nz95741 Tatar State University of Humanities and Education Татар Гәүләт Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€-пеГагогика ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹ Татарский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25136, 'https://ror.org/018qe6n41', 'en', 1, 'https://ror.org/018qe6n41 International Humanitarian and Economic Institute ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25137, 'https://ror.org/030q11033', 'en', 1, 'https://ror.org/030q11033 Nizhny Novgorod Institute of Management and Business ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента Šø бизнеса'),
(25138, 'https://ror.org/02yac4e68', 'pl', 1, 'https://ror.org/02yac4e68 Masurian University in Olecko Wszechnica Mazurska w Olecku'),
(25139, 'https://ror.org/00gxe6p18', 'en', 1, 'https://ror.org/00gxe6p18 Nizhny Novgorod Commercial Institute ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ коммерческий ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25140, 'https://ror.org/04t2ykm02', 'en', 1, 'https://ror.org/04t2ykm02 Minsk State Linguistic University Минский Š³Š¾ŃŃƒŠ“арственный лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŃ–Š½ŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ лінгвістычны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(25141, 'https://ror.org/02kqed404', 'en', 1, 'https://ror.org/02kqed404 College of Environmental Protection Visoka Ŕola za varstvo okolja'),
(25142, 'https://ror.org/05qrjdq75', 'en', 1, 'https://ror.org/05qrjdq75 Volga State University of Water Transport Волжский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного транспорта'),
(25143, 'https://ror.org/03yzt0f97', 'pl', 1, 'https://ror.org/03yzt0f97 Olsztyńska Szkoła Wyższa im. Józefa Rusieckiego'),
(25144, 'https://ror.org/02cxy7q30', 'en', 1, 'https://ror.org/02cxy7q30 Belarusian State Aviation Academy Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ авиации'),
(25145, 'https://ror.org/04nxx3p41', 'en', 1, 'https://ror.org/04nxx3p41 Minsk Radioengineering College Минский РаГиотехнический коллеГж ŠœŃ–́нскі Š Š°Š“Ń‹Ń‘Ń‚ŃŃ…Š½Ń–ĢŃ‡Š½Ń‹ Кале́Гж'),
(25146, 'https://ror.org/047dxs002', 'en', 1, 'https://ror.org/047dxs002 Minsk Institute of Management Минский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ ŠœŃ–Š½ŃŠŗŃ– Ń–Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ ŠŗŃ–Ń€Š°Š²Š°Š½Š½Ń'),
(25147, 'https://ror.org/00ghshv09', 'en', 1, 'https://ror.org/00ghshv09 Kotarbinski University of Information Technology and Management in Olsztyn'),
(25148, 'https://ror.org/0551qsw90', 'en', 1, 'https://ror.org/0551qsw90 Belarusian Russian University Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ¾-Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25149, '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'),
(25150, 'https://ror.org/03j3t7793', 'en', 1, 'https://ror.org/03j3t7793 Institute of Economics, Management and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(25151, 'https://ror.org/02bqzgt47', 'en', 1, 'https://ror.org/02bqzgt47 Dans- och Cirkushƶgskolan University of Dance and Circus'),
(25152, 'https://ror.org/01cyvd251', 'pl', 1, 'https://ror.org/01cyvd251 Wyższa Szkoła Zarządzania i Administracji w Opolu'),
(25153, 'https://ror.org/034172q61', 'pl', 1, 'https://ror.org/034172q61 Akademia Muzyczna im. Ignacego Jana Paderewskiego w Poznaniu'),
(25154, 'https://ror.org/04r5nt755', 'en', 1, 'https://ror.org/04r5nt755 Stockholm Academy of Dramatic Arts Stockholms dramatiska hƶgskola'),
(25155, 'https://ror.org/05wwvg270', 'en', 1, 'https://ror.org/05wwvg270 Kazan Law Institute Казанский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š” России'),
(25156, 'https://ror.org/04jtrvy64', 'en', 1, 'https://ror.org/04jtrvy64 Mozyr State Pedagogical University named after I.P.Shamyakin ŠœŠ°Š·Ń‹Ń€ŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ пеГагагічны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ‹Ń‚ŃŃ‚ Ń–Š¼Ń І.П.ŠØŠ°Š¼ŃŠŗŃ–Š½Š°'),
(25157, 'https://ror.org/02746y325', 'en', 1, 'https://ror.org/02746y325 Operahƶgskolan i Stockholm Tukholman oopperakorkeakoulu University College of Opera in Stockholm'),
(25158, 'https://ror.org/01zdsw203', 'en', 1, 'https://ror.org/01zdsw203 Tatar American Regional Institute Татарско-американский Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25159, 'https://ror.org/02ttmd632', 'en', 1, 'https://ror.org/02ttmd632 Polessky State University ŠŸŠ°Š»ŠµŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Полесский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25160, 'https://ror.org/02d8ecr17', 'en', 1, 'https://ror.org/02d8ecr17 Vitebsk State Medical University Віцебскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃžŠ½Ń–Š²ŃŃ€ŃŃ–Ń‚ŃŃ‚'),
(25161, 'https://ror.org/02ephqy68', 'en', 1, 'https://ror.org/02ephqy68 Don State Agrarian University Донской Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25162, 'https://ror.org/04bn3r984', 'en', 1, 'https://ror.org/04bn3r984 Kemerovo State University of Culture and the Arts ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25163, 'https://ror.org/00q96wx12', 'en', 1, 'https://ror.org/00q96wx12 Vitebsk State Technological University Витебский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Віцебскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Š°Š»Š°Š³Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(25164, 'https://ror.org/0531m2867', 'en', 1, 'https://ror.org/0531m2867 Kemerovo State Agricultural Institute ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25165, 'https://ror.org/01erfz980', 'en', 1, 'https://ror.org/01erfz980 Donbas State Technical University Донбасский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š”Š¾Š½Š±Š°ŃŃŒŠŗŠøŠ¹ Гержавний технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25166, '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'),
(25167, 'https://ror.org/04p1p1388', 'en', 1, 'https://ror.org/04p1p1388 Civil Defense Academy ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ гражГанской защиты МЧД России'),
(25168, 'https://ror.org/04wjmn281', 'en', 1, 'https://ror.org/04wjmn281 Kemerovo Institute of Food Science and Technology ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пищевой ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(25169, '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'),
(25170, 'https://ror.org/02hfhf494', 'en', 1, 'https://ror.org/02hfhf494 Kuzbass State Technical University Кузбасский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25171, 'https://ror.org/00hb0gy21', 'en', 1, 'https://ror.org/00hb0gy21 Kuzbass Institute of Economics and Law Кузбасский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(25172, 'https://ror.org/01d763831', 'en', 1, 'https://ror.org/01d763831 Siberian State Industrial University Дибирский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25173, 'https://ror.org/032pkq250', 'en', 1, 'https://ror.org/032pkq250 Admiral Ushakov State Maritime University'),
(25174, 'https://ror.org/034mgds22', 'en', 1, 'https://ror.org/034mgds22 Siberian State University of Water Transport Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного транспорта'),
(25175, 'https://ror.org/041bgnt86', 'no_lang_code', 1, 'https://ror.org/041bgnt86 Bila Tserkva National Agrarian University Š‘Ń–Š»Š¾Ń†ŠµŃ€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25176, 'https://ror.org/02ke44656', 'en', 1, 'https://ror.org/02ke44656 Collegium Da Vinci'),
(25177, 'https://ror.org/04ck9y280', 'en', 1, 'https://ror.org/04ck9y280 Poznan University of Social Sciences Wyższa Szkoła Umiejętności Społecznych'),
(25178, 'https://ror.org/01zvpbb37', 'pl', 1, 'https://ror.org/01zvpbb37 Wyższa Szkoła Zarządzania i Bankowości w Poznaniu'),
(25179, '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'),
(25180, 'https://ror.org/00d167n54', 'en', 1, 'https://ror.org/00d167n54 Novosibirsk State Medical University ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25181, 'https://ror.org/01m54ds80', 'en', 1, 'https://ror.org/01m54ds80 Cherkasy State Technological University Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠøŠ¹ Гержавний технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25182, 'https://ror.org/01hgeey64', 'en', 1, 'https://ror.org/01hgeey64 Novosibirsk State Agricultural University ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25183, 'https://ror.org/05wsqqr12', 'en', 1, 'https://ror.org/05wsqqr12 Novosibirsk State University of Architecture and Civil Engineering ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25184, 'https://ror.org/00k0bzz46', 'en', 1, 'https://ror.org/00k0bzz46 Far-Eastern Academy of Public Service Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹'),
(25185, 'https://ror.org/000nj1063', 'en', 1, 'https://ror.org/000nj1063 Akademia Humanistyczna im. Aleksandra Gieysztora w Pułtusku Pułtusk Academy of Humanities'),
(25186, 'https://ror.org/05m7h6793', 'en', 1, 'https://ror.org/05m7h6793 Academy of Music, Dance and Fine Arts ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ за музикални танци Šø изобразителни ŠøŠ·ŠŗŃƒŃŃ‚ва'),
(25187, 'https://ror.org/03x2fyc79', 'no_lang_code', 1, 'https://ror.org/03x2fyc79 Novosibirsk State Pedagogical University ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25188, 'https://ror.org/00nnwpb90', 'no_lang_code', 1, 'https://ror.org/00nnwpb90 Novosibirsk Humanitarian Institute ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25189, 'https://ror.org/03v63wq09', 'en', 1, 'https://ror.org/03v63wq09 Novosibirsk Institute of Economy, Psychology and Law ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Экономики ŠŸŃŠøŃ…ологии Šø ŠŸŃ€Š°Š²Š°'),
(25190, 'https://ror.org/02tt49y26', 'en', 1, 'https://ror.org/02tt49y26 Far Eastern State Transport University'),
(25191, 'https://ror.org/052qf7p09', 'en', 1, 'https://ror.org/052qf7p09 Far Eastern Law Institute of Ministry of Internal Affairs of Russia Š”ŠŠ›Š¬ŠŠ•Š’ŠžŠ”Š¢ŠžŠ§ŠŠ«Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(25192, 'https://ror.org/034jwk961', 'pl', 1, 'https://ror.org/034jwk961 Wyższa Szkoła Wychowania Fizycznego i Turystyki w Białymstoku'),
(25193, 'https://ror.org/0562ytb14', 'en', 1, 'https://ror.org/0562ytb14 Bukovinian State Medical University Š‘ŃƒŠŗŠ¾Š²ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š‘ŃƒŠŗŠ¾Š²ŠøŠ½ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25194, 'https://ror.org/0091wgk69', 'en', 1, 'https://ror.org/0091wgk69 Khabarovsk State Institute of Arts and Culture Єабаровский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25195, 'https://ror.org/02khw0n64', 'en', 1, 'https://ror.org/02khw0n64 Dniprovsk State Technical University Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25196, 'https://ror.org/05fj5jw51', 'en', 1, 'https://ror.org/05fj5jw51 Vyatka State Agricultural Academy Š’ŃŃ‚ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25197, 'https://ror.org/02g6px103', 'en', 1, 'https://ror.org/02g6px103 Vologda Institute of Law and Economics ВологоГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ права Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(25198, 'https://ror.org/01anxqg21', 'en', 1, 'https://ror.org/01anxqg21 Vyatka State University Š’ŃŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25199, 'https://ror.org/02v157r64', 'en', 1, 'https://ror.org/02v157r64 Siberian Transport University Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(25200, 'https://ror.org/00gz03w45', 'pl', 1, 'https://ror.org/00gz03w45 West Pomeranian Business School in Szczecin Zachodniopomorska Szkoła Biznesu w Szczecinie'),
(25201, 'https://ror.org/02kx91r96', 'pl', 1, 'https://ror.org/02kx91r96 Małopolska Wyższa Szkoła Ekonomiczna'),
(25202, 'https://ror.org/05ykq3c56', 'no_lang_code', 1, 'https://ror.org/05ykq3c56 Alfred Nobel University Университет имени ŠŠ»ŃŒŃ„реГа ŠŠ¾Š±ŠµŠ»Ń Університет імені ŠŠ»ŃŒŃ„Ń€ŠµŠ“Š° ŠŠ¾Š±ŠµŠ»Ń'),
(25203, 'https://ror.org/03tb4ym49', 'no_lang_code', 1, 'https://ror.org/03tb4ym49 Vjatka Social Economics Institute Š’ŃŃ‚ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25204, 'https://ror.org/04czac457', 'en', 1, 'https://ror.org/04czac457 Siberian Academy of Finance and Banking Š”ŠøŠ±ŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ финансов Šø банковского Гела'),
(25205, 'https://ror.org/03g1eje15', 'en', 1, 'https://ror.org/03g1eje15 Siberian Independent Institute Дибирский независимый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25206, 'https://ror.org/037gcmv13', 'en', 1, 'https://ror.org/037gcmv13 Siberian University of Consumer Cooperatives Дибирский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŠ¾Ń‚Ń€ŠµŠ±ŠøŃ‚ŠµŠ»ŃŒŃŠŗŠ¾Š¹ кооперации'),
(25207, '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'),
(25208, 'https://ror.org/045wqtv91', 'en', 1, 'https://ror.org/045wqtv91 Kislovodsk Humanitarian and Technical Institute КисловоГский Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-Технический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25209, 'https://ror.org/04nnm2t84', 'en', 1, 'https://ror.org/04nnm2t84 Institute of Information Technologies, Economy and Management Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š˜ŠŠ¤ŠžŠ ŠœŠŠ¦Š˜ŠžŠŠŠ«Š„ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š™, Š­ŠšŠžŠŠžŠœŠ˜ŠšŠ˜ И ŠœŠ•ŠŠ•Š”Š–ŠœŠ•ŠŠ¢Š'),
(25210, 'https://ror.org/05fvbwq75', 'en', 1, 'https://ror.org/05fvbwq75 Academy of Fine Arts In ŁódÅŗ Władysław Strzemiński'),
(25211, 'https://ror.org/035h3f182', 'en', 1, 'https://ror.org/035h3f182 Moscow State Regional Socio-Humanitarian Institute'),
(25212, 'https://ror.org/04z3dv266', 'en', 1, 'https://ror.org/04z3dv266 Kostroma State Agricultural Academy ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25213, 'https://ror.org/02rntm597', 'en', 1, 'https://ror.org/02rntm597 Omsk Academy of the Russian Interior Ministry ŠžŠ¼ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠœŠ’Š” России'),
(25214, 'https://ror.org/041maek06', 'pl', 1, 'https://ror.org/041maek06 Wyższa Szkoła Edukacji Zdrowotnej i Nauk Społecznych w Łodzi'),
(25215, 'https://ror.org/027n8z047', 'en', 1, 'https://ror.org/027n8z047 St. Cyril and St. Methodius University of Veliko Tarnovo Š’ŠµŠ»ŠøŠŗŠ¾Ń‚ŃŠŃ€Š½Š¾Š²ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25216, 'https://ror.org/006ks2460', 'en', 1, 'https://ror.org/006ks2460 Juraj Dobrila University of Pula SveučiliÅ”te Jurja Dobrile u Puli Универзитет ŠˆŃƒŃ€Š°Ń˜Š° Добриле у Пули'),
(25217, 'https://ror.org/05kfm7k22', 'en', 1, 'https://ror.org/05kfm7k22 Omsk State Agrarian University ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П. А. Дтолыпина'),
(25218, 'https://ror.org/050bktx08', 'en', 1, 'https://ror.org/050bktx08 Kovrov State Technological Academy named after V A Degtyarev ŠšŠ¾Š²Ń€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25219, 'https://ror.org/00zqbkp20', 'en', 1, 'https://ror.org/00zqbkp20 Omsk State Institute of Service ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сервиса'),
(25220, 'https://ror.org/010bdvy81', 'en', 1, 'https://ror.org/010bdvy81 Omsk State Pedagogical University ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25221, 'https://ror.org/02bnkm316', 'en', 1, 'https://ror.org/02bnkm316 University of Computer Sciences and Skills Wyższa Szkoła Informatyki w Łodzi'),
(25222, 'https://ror.org/02mfskv37', 'en', 1, 'https://ror.org/02mfskv37 Omsk State Transport University ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(25223, 'https://ror.org/01r8s1c93', 'en', 1, 'https://ror.org/01r8s1c93 Siberian State University of Physical Education and Sport Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(25224, 'https://ror.org/05swf4h71', 'en', 1, 'https://ror.org/05swf4h71 Siberian Institute of Business and Information Technologies Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса Šø информационных технологий'),
(25225, 'https://ror.org/033hwa625', 'pl', 1, 'https://ror.org/033hwa625 Wyższa Szkoła Pedagogiczna w Łodzi'),
(25226, 'https://ror.org/038xsq518', 'en', 1, 'https://ror.org/038xsq518 Lviv National Agrarian University Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Аграрний Університет'),
(25227, 'https://ror.org/04kv23141', 'en', 1, 'https://ror.org/04kv23141 Institute of Marketing and Social Information Technology ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ маркетинга Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-информационных технологий'),
(25228, 'https://ror.org/00pajwz74', 'en', 1, 'https://ror.org/00pajwz74 Lodz International Studies Academy Wyższa Szkoła Studiów Międzynarodowych w Łodzi'),
(25229, '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'),
(25230, 'https://ror.org/01jyn4427', 'en', 1, 'https://ror.org/01jyn4427 Cyprus College of Art'),
(25231, 'https://ror.org/04mb01w79', 'en', 1, 'https://ror.org/04mb01w79 Moscow State Regional Institute of Humanities'),
(25232, 'https://ror.org/037r7e845', 'en', 1, 'https://ror.org/037r7e845 Institute of International Law, Economy, Humanitarian Sciences and Management named after K.V. Rossinskogo Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ•Š–Š”Š£ŠŠŠ ŠžŠ”ŠŠžŠ“Šž ŠŸŠ ŠŠ’Š, Š­ŠšŠžŠŠžŠœŠ˜ŠšŠ˜, Š“Š£ŠœŠŠŠ˜Š¢ŠŠ ŠŠ«Š„ ŠŠŠ£Šš И Š£ŠŸŠ ŠŠ’Š›Š•ŠŠ˜ŠÆ Š˜ŠœŠ•ŠŠ˜ К.Š’. Š ŠžŠ”Š”Š˜ŠŠ”ŠšŠžŠ“Šž'),
(25233, 'https://ror.org/044sqta95', 'en', 1, 'https://ror.org/044sqta95 Uczelnia Vistula Vistula University'),
(25234, 'https://ror.org/014hxxb31', 'en', 1, 'https://ror.org/014hxxb31 Oryol State University of Economics and Trade ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø торговли'),
(25235, 'https://ror.org/017tesn46', 'en', 1, 'https://ror.org/017tesn46 Orel State Agrarian University ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25236, 'https://ror.org/01f1ses45', 'en', 1, 'https://ror.org/01f1ses45 Ivano-Frankivsk National Technical University of Oil and Gas Івано-Š¤Ń€Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ нафти і газу'),
(25237, 'https://ror.org/03t7x0f36', 'en', 1, 'https://ror.org/03t7x0f36 Orel State Institute of Arts and Culture ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25238, 'https://ror.org/05bp24h68', 'en', 1, 'https://ror.org/05bp24h68 Mediterranean Institute of Management Μεσογειακό Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī”Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ·Ļ‚'),
(25239, 'https://ror.org/02gnwrw46', 'en', 1, 'https://ror.org/02gnwrw46 Cyprus Institute of Marketing'),
(25240, 'https://ror.org/02w6v9q55', 'en', 1, 'https://ror.org/02w6v9q55 Akademia Pedagogiki Specjalnej im. Marii Grzegorzewskiej Maria Grzegorzewska Academy of Special Education'),
(25241, 'https://ror.org/00cyrce09', 'en', 1, 'https://ror.org/00cyrce09 Akademie Sting Sting Academy'),
(25242, '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'),
(25243, 'https://ror.org/004s6ct47', 'en', 1, 'https://ror.org/004s6ct47 Orenburg State Agrarian University ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25244, 'https://ror.org/05xw54w34', 'cs', 1, 'https://ror.org/05xw54w34 Academia Rerum Civilium - VysokĆ” Skola Politických a Společenských Věd'),
(25245, 'https://ror.org/05e3sxn28', 'en', 1, 'https://ror.org/05e3sxn28 Orenburg Institute of Economics and Culture ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25246, 'https://ror.org/02zry2p95', 'en', 1, 'https://ror.org/02zry2p95 Almamer University'),
(25247, 'https://ror.org/00s1rmw18', 'en', 1, 'https://ror.org/00s1rmw18 Christian Theological Academy in Warsaw Warsaw Chrześcijańska Akademia Teologiczna w Warszawie'),
(25248, 'https://ror.org/010m6ab92', 'en', 1, 'https://ror.org/010m6ab92 Kuzbass State Pedagogical Academy Novokuzneckij Gosudarstvennyj Pedagogičeskij Institut'),
(25249, 'https://ror.org/018kzpw73', 'en', 1, 'https://ror.org/018kzpw73 Krasnodar University of Ministry of Internal Affairs of Russia ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ’Š” России'),
(25250, 'https://ror.org/05ha0y974', 'pl', 1, 'https://ror.org/05ha0y974 Europejska Akademia Sztuk w Warszawie'),
(25251, 'https://ror.org/02r9h1127', 'en', 1, 'https://ror.org/02r9h1127 Kharkiv State Academy of Culture'),
(25252, 'https://ror.org/03kht9y85', 'en', 1, 'https://ror.org/03kht9y85 Krasnodar Municipal Medical Institute of Higher Nursing Education ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š¼ŃƒŠ½ŠøŃ†ŠøŠæŠ°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŃˆŠµŠ³Š¾ сестринского Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(25253, 'https://ror.org/058jafb94', 'en', 1, 'https://ror.org/058jafb94 Kuban State Agrarian University Кубанский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25254, 'https://ror.org/05e0g3c64', 'en', 1, 'https://ror.org/05e0g3c64 Kuban Institute of International Business and Management'),
(25255, 'https://ror.org/04fh2kz81', 'pl', 1, 'https://ror.org/04fh2kz81 Papieski Wydział Teologiczny w Warszawie Pontifical Faculty of Theology in Warsaw'),
(25256, 'https://ror.org/002jtmt62', 'en', 1, 'https://ror.org/002jtmt62 Business School Ostrava'),
(25257, 'https://ror.org/04ybx1t57', 'en', 1, 'https://ror.org/04ybx1t57 Krasnoyarsk State Academy of Music and Theatre ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø Šø театра'),
(25258, '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'),
(25259, 'https://ror.org/05p3gfq61', 'en', 1, 'https://ror.org/05p3gfq61 Krasnoyarsk State Agrarian University ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25260, 'https://ror.org/01q5jse34', 'en', 1, 'https://ror.org/01q5jse34 Krasnoyarsk State Institute of Art ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(25261, 'https://ror.org/00nszah81', 'en', 1, 'https://ror.org/00nszah81 Krasnoyarsk State Pedagogical University ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25262, 'https://ror.org/03djm2720', 'en', 1, 'https://ror.org/03djm2720 Siberian State Technological University Дибирский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25263, 'https://ror.org/02wbhea49', 'en', 1, 'https://ror.org/02wbhea49 Academy of Federal Security Guard Service of Russian Federation ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ охраны Российской ФеГерации'),
(25264, 'https://ror.org/04ekepb72', 'pl', 1, 'https://ror.org/04ekepb72 Szkoła Wyższa im. Bogdana Jańskiego'),
(25265, 'https://ror.org/02xjmhc17', 'cs', 1, 'https://ror.org/02xjmhc17 VysokĆ” Skola Logistiky'),
(25266, 'https://ror.org/02375ts60', 'en', 1, 'https://ror.org/02375ts60 New Siberian Institute ŠŠ¾Š²Ń‹Š¹ сибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25267, 'https://ror.org/02n4s8f32', 'pl', 1, 'https://ror.org/02n4s8f32 Uczelnia Warszawska im. Marii Skłodowskiej-Curie'),
(25268, 'https://ror.org/03pjs2912', 'en', 1, 'https://ror.org/03pjs2912 Warsaw University of Technology Business School'),
(25269, 'https://ror.org/05r50mj29', 'en', 1, 'https://ror.org/05r50mj29 Siberian State Aerospace University Дибирский Š³Š¾ŃŃƒŠ“арственный Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика М. Ф. Š ŠµŃˆŠµŃ‚Š½Ń‘Š²Š°'),
(25270, 'https://ror.org/03h67v482', 'en', 1, 'https://ror.org/03h67v482 Orsk Humanitarian Technology Institute ŠžŃ€ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25271, 'https://ror.org/015jqsk41', 'en', 1, 'https://ror.org/015jqsk41 Penza State Agricultural Academy Пензенский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25272, 'https://ror.org/00v8szc63', 'pl', 1, 'https://ror.org/00v8szc63 Warszawska Szkoła Zarządzania - Szkoła Wyższa'),
(25273, 'https://ror.org/01z23y265', 'en', 1, 'https://ror.org/01z23y265 Kharkiv National Agrarian University named after V.V.Dokuchajev Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ім. Š’.Š’. Š”Š¾ŠŗŃƒŃ‡Š°Ń”Š²Š°'),
(25274, 'https://ror.org/01473qm81', 'en', 1, 'https://ror.org/01473qm81 Siberian Institute of Business Management and Psychology Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø психологии'),
(25275, 'https://ror.org/04eck9c32', 'en', 1, 'https://ror.org/04eck9c32 International Art Campus Prague'),
(25276, 'https://ror.org/03dw9f533', 'pl', 1, 'https://ror.org/03dw9f533 Warszawska Wyższa Szkoła Humanistyczna im. Bolesława Prusa'),
(25277, 'https://ror.org/00ecy3w15', 'en', 1, 'https://ror.org/00ecy3w15 Jan Amos Komensky University Univerzita Jana Amose KomenskƩho Praha'),
(25278, 'https://ror.org/042r33k66', 'en', 1, 'https://ror.org/042r33k66 University of Pereslavl Университет гороГа ŠŸŠµŃ€ŠµŃŠ»Š°Š²Š»Ń имени А. К. ŠŠ¹Š»Š°Š¼Š°Š·ŃŠ½Š°'),
(25279, 'https://ror.org/02vbq0s06', 'en', 1, 'https://ror.org/02vbq0s06 Siberian Law Institute of Russian Federal Drug Control Service Дибирский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¤Š”ŠšŠ России'),
(25280, 'https://ror.org/03enayd48', 'en', 1, 'https://ror.org/03enayd48 Perm State Agricultural Academy ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрно-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25281, 'https://ror.org/02te2cv05', 'en', 1, 'https://ror.org/02te2cv05 Perm State Pharmaceutical Academy ŠŸŠµŃ€Š¼ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń„Š°Ń€Š¼Š°Ń†ŠµŠ²Ń‚ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25282, 'https://ror.org/04srpf911', 'en', 1, 'https://ror.org/04srpf911 Kharkiv Petro Vasylenko National Technical University of Agriculture Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ім. ŠŸŠµŃ‚Ń€Š° Василенка Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° имени ŠŸŠµŃ‚ра Василенко'),
(25283, 'https://ror.org/057db3962', 'pl', 1, 'https://ror.org/057db3962 Wyższa Szkoła Gospodarowania Nieruchomościami'),
(25284, 'https://ror.org/03ckcj843', 'en', 1, 'https://ror.org/03ckcj843 Perm State Institute of Arts and Culture ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š˜ŃŠŗŃƒŃŃŃ‚Š²Š° Šø ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25285, 'https://ror.org/01kbx8t50', 'pl', 1, 'https://ror.org/01kbx8t50 Wyższa Szkoła Handlu i Finansów Międzynarodowych im. Fryderyka Skarbka'),
(25286, 'https://ror.org/00e42hf98', 'en', 1, 'https://ror.org/00e42hf98 Kurgan State Agricultural Academy by T S Maltsev ŠšŃƒŃ€Š³Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Š¢.Š”'),
(25287, 'https://ror.org/0097mbe50', 'en', 1, 'https://ror.org/0097mbe50 Kharkiv National University of Construction and Architecture Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° й Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(25288, 'https://ror.org/010hy3w58', 'en', 1, 'https://ror.org/010hy3w58 Kharkiv State University of Food Technology and Trade Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń…Š°Ń€Ń‡ŃƒŠ²Š°Š½Š½Ń та торгівлі Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŠøŃ‚Š°Š½ŠøŃ Šø торговли'),
(25289, 'https://ror.org/0375f2x73', 'pl', 1, 'https://ror.org/0375f2x73 Uczelnia Łazarskiego'),
(25290, 'https://ror.org/010x2s304', 'en', 1, 'https://ror.org/010x2s304 Krasnodar State University of Culture and Arts ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25291, 'https://ror.org/04zbzhb67', 'en', 1, 'https://ror.org/04zbzhb67 Danish National Academy of Music'),
(25292, 'https://ror.org/00a6ywr91', 'en', 1, 'https://ror.org/00a6ywr91 Szkoła Główna Turystyki i Hotelarstwa Vistula Vistula School of Hospitality'),
(25293, 'https://ror.org/00zxz8845', 'en', 1, 'https://ror.org/00zxz8845 National University of Pharmacy ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ фармацевтичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚');
INSERT INTO `rors` VALUES
(25294, 'https://ror.org/01yyzg640', 'en', 1, 'https://ror.org/01yyzg640 West Ural Institute of Economics and Law ЗапаГно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(25295, 'https://ror.org/01xhsfb21', 'en', 1, 'https://ror.org/01xhsfb21 Kursk State Agricultural Academy named after Professor II Ivanova ŠšŃƒŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени профессора Иванова II'),
(25296, 'https://ror.org/01k5wet88', 'en', 1, 'https://ror.org/01k5wet88 Institute of Theology of Estonian Evangelical Lutheran Church'),
(25297, 'https://ror.org/02wbgfm85', 'en', 1, 'https://ror.org/02wbgfm85 Warsaw School of Information Technology Wyższa Szkoła Informatyki Stosowanej i Zarządzania'),
(25298, 'https://ror.org/05yjqdn82', 'en', 1, 'https://ror.org/05yjqdn82 Kursk State University ŠšŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25299, 'https://ror.org/05bamwv87', 'en', 1, 'https://ror.org/05bamwv87 Ukrainian Engineering Pedagogics Academy Š£ŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń инженерно-ŠæŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° інженерно-пеГагогічна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(25300, 'https://ror.org/04mzk2m46', 'en', 1, 'https://ror.org/04mzk2m46 Kamskij State Institute of Physical Culture Камский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25301, 'https://ror.org/05grw1m33', 'en', 1, 'https://ror.org/05grw1m33 Yaroslav Mudryi National Law University ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Ярослава ŠœŃƒŠ“рого'),
(25302, 'https://ror.org/01ewram45', 'en', 1, 'https://ror.org/01ewram45 International University of Business and Law ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±Ń–Š·Š½ŠµŃŃƒ і права'),
(25303, 'https://ror.org/05h831e18', 'en', 1, 'https://ror.org/05h831e18 Kursk Institute of Management, Economics and Busines ŠšŃƒŃ€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø бизнеса'),
(25304, 'https://ror.org/02p0nzs51', 'pl', 1, 'https://ror.org/02p0nzs51 Wyższa Szkoła Komunikowania i Mediów Społecznych im. Jerzego Giedroycia'),
(25305, 'https://ror.org/05e8bfc57', 'en', 1, 'https://ror.org/05e8bfc57 Regional Open Social Institute Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ открытый ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25306, 'https://ror.org/038vzfq40', 'en', 1, 'https://ror.org/038vzfq40 Tuvan State University Тувинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25307, 'https://ror.org/02hb34304', 'en', 1, 'https://ror.org/02hb34304 EuroAcademy Euroakadeemia'),
(25308, 'https://ror.org/00gdqcd57', 'en', 1, 'https://ror.org/00gdqcd57 Lipeck Ecology-Humanitarian Institute Липецкий ŃŠŗŠ¾Š»Š¾Š³Š¾-Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25309, 'https://ror.org/02d12kw26', 'en', 1, 'https://ror.org/02d12kw26 Eesti EttevƵtluskƵrgkool Mainor Estonian Entrepreneurship University of Applied Sciences'),
(25310, 'https://ror.org/03sx66s94', 'en', 1, 'https://ror.org/03sx66s94 KƵrgem Kunstikool Pallas Tartu Art College'),
(25311, 'https://ror.org/03t43c845', 'pl', 1, 'https://ror.org/03t43c845 Wyższa Szkoła Pedagogiczna Związku Nauczycielstwa Polskiego'),
(25312, 'https://ror.org/05cqf4668', 'en', 1, 'https://ror.org/05cqf4668 Haaga-Helia University of Applied Sciences Haaga-Helia ammattikorkeakoulu'),
(25313, 'https://ror.org/0506j4s84', 'pl', 1, 'https://ror.org/0506j4s84 Wyższa Szkoła Promocji w Warszawie'),
(25314, 'https://ror.org/01sm6nn11', 'en', 1, 'https://ror.org/01sm6nn11 Central Ukrainian National Technical University Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25315, 'https://ror.org/02k14cb26', 'en', 1, 'https://ror.org/02k14cb26 Donbass State Engineering Academy Š”Š¾Š½Š±Š°ŃŃŒŠŗŠ° Гержавна Š¼Š°ŃˆŠøŠ½Š¾Š±ŃƒŠ“івна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(25316, 'https://ror.org/000rak666', 'en', 1, 'https://ror.org/000rak666 Humak University of Applied Sciences Humanistinen ammattikorkeakoulu'),
(25317, 'https://ror.org/05jv80548', 'en', 1, 'https://ror.org/05jv80548 Kremenchuk Mykhailo Ostrohradskyi National University ŠšŃ€ŠµŠ¼ŠµŠ½Ń‡ŃƒŠ³ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠšŃ€ŠµŠ¼ŠµŠ½Ń‡ŃƒŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠœŠøŃ…Š°Š¹Š»Š° ŠžŃŃ‚Ń€Š¾Š³Ń€Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(25318, 'https://ror.org/005059r08', 'no_lang_code', 1, 'https://ror.org/005059r08 Naberezhnye Chelny State Pedagogical Institute ŠŠ°Š±ŠµŃ€ŠµŠ¶Š½Š¾Ń‡ŠµŠ»Š½ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25319, 'https://ror.org/051bwkh16', 'pl', 1, 'https://ror.org/051bwkh16 Wyższa Szkoła Stosunków Międzynarodowych i Amerykanistyki'),
(25320, 'https://ror.org/02pns7e61', 'en', 1, 'https://ror.org/02pns7e61 Magnitogorsk State Conservatory named after M I Glinka ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени М. И. Глинки'),
(25321, 'https://ror.org/02md2kv66', 'en', 1, 'https://ror.org/02md2kv66 Kryvyi Rih National University ŠšŃ€ŠøŠ²Š¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25322, 'https://ror.org/044gnjv68', 'en', 1, 'https://ror.org/044gnjv68 Pyatigorsk State University ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25323, 'https://ror.org/04dbkth95', 'en', 1, 'https://ror.org/04dbkth95 Academy of Municipal Management ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń Š¼ŃƒŠ½Ń–Ń†ŠøŠæŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(25324, 'https://ror.org/01ky50t09', 'pl', 1, 'https://ror.org/01ky50t09 Uczelnia Techniczno-Handlowa im. Heleny Chodkowskiej'),
(25325, 'https://ror.org/01a4bey28', 'en', 1, 'https://ror.org/01a4bey28 Polish Open University Wyższa Szkoła Zarządzania'),
(25326, 'https://ror.org/05veqwc59', 'en', 1, 'https://ror.org/05veqwc59 Academy of Labour Social Relations and Tourism ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń праці, ŃŠ¾Ń†Ń–Š°Š»ŃŒŠ½ŠøŃ… віГносин і Ń‚ŃƒŃ€ŠøŠ·Š¼Ńƒ'),
(25327, 'https://ror.org/05xezqk59', 'en', 1, 'https://ror.org/05xezqk59 AndrÔssy Gyula Budapesti Német Nyelvű Egyetem AndrÔssy University Budapest'),
(25328, 'https://ror.org/042jp8q52', 'en', 1, 'https://ror.org/042jp8q52 Pskov State Pedagogical Institute Псковский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25329, 'https://ror.org/00r4zhc79', 'no_lang_code', 1, 'https://ror.org/00r4zhc79 Pskov Volny Institute Псковский Š’Š¾Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25330, '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'),
(25331, 'https://ror.org/01ntwgd63', 'en', 1, 'https://ror.org/01ntwgd63 Nosov Magnitogorsk State Technical University ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25332, 'https://ror.org/00z6fwj27', 'en', 1, 'https://ror.org/00z6fwj27 Magnitogorsk State University ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25333, 'https://ror.org/021hqjd76', 'en', 1, 'https://ror.org/021hqjd76 Dagestan State Medical Academy Дагестанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25334, 'https://ror.org/005qr1k22', 'no_lang_code', 1, 'https://ror.org/005qr1k22 Bhaktivedanta College Bhaktivedanta HittudomĆ”nyi Főiskola'),
(25335, 'https://ror.org/02vncvd63', 'en', 1, 'https://ror.org/02vncvd63 Philological School of Higher Education Wyższa Szkoła Filologiczna'),
(25336, 'https://ror.org/00ebesp71', 'en', 1, 'https://ror.org/00ebesp71 Dagestan State Agricultural Academy'),
(25337, 'https://ror.org/00frg6v09', 'en', 1, 'https://ror.org/00frg6v09 Budapest Contemporary Dance Academy Budapest KortĆ”rstĆ”nc Főiskola'),
(25338, 'https://ror.org/04wf8g409', 'en', 1, 'https://ror.org/04wf8g409 Pushkin Leningrad State University ЛенинграГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š”. Пушкина'),
(25339, 'https://ror.org/04314q855', 'en', 1, 'https://ror.org/04314q855 Academy of Physiotheray in Wrocław Wyższa Szkoła Fizjoterapii'),
(25340, 'https://ror.org/04k15jp43', 'en', 1, 'https://ror.org/04k15jp43 Russian State University of Tourism and Service Российский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŃƒŃ€ŠøŠ·Š¼Š° Šø сервиса'),
(25341, 'https://ror.org/04qxzae03', 'en', 1, 'https://ror.org/04qxzae03 University of Business in Wrocław Wyższa Szkoła Handlowa we Wrocławiu'),
(25342, 'https://ror.org/02j5fab28', 'en', 1, 'https://ror.org/02j5fab28 Institute of Economics and Management Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ (г. ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗ)'),
(25343, 'https://ror.org/00fcxqx79', 'en', 1, 'https://ror.org/00fcxqx79 Budapesti Metropolitan Egyetem University of Applied Science Budapest'),
(25344, 'https://ror.org/03grptj54', 'en', 1, 'https://ror.org/03grptj54 Federal Penitentiary Service Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба ŠøŃŠæŠ¾Š»Š½ŠµŠ½ŠøŃ наказаний'),
(25345, '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'),
(25346, 'https://ror.org/03tgn8d86', 'en', 1, 'https://ror.org/03tgn8d86 Dennis Gabor College GABOR DENES FOISKOLA'),
(25347, 'https://ror.org/05q4zgq93', 'en', 1, 'https://ror.org/05q4zgq93 Ryazan State Agrotechnological University Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ агротехнологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П.А.ŠšŠ¾ŃŃ‚Ń‹Ń‡ŠµŠ²Š°'),
(25348, 'https://ror.org/00x5je630', 'en', 1, 'https://ror.org/00x5je630 Don State Technical University ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Донской Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25349, 'https://ror.org/04ew6mz46', 'en', 1, 'https://ror.org/04ew6mz46 Reklamy Institute ŠšŠ°Ń„ŠµŠ“Ń€Š° веб Гизайна, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рекламы'),
(25350, 'https://ror.org/03v3y9g34', 'en', 1, 'https://ror.org/03v3y9g34 International Solomon University ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ Доломонів ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25351, 'https://ror.org/04yh8vz11', 'ro', 1, 'https://ror.org/04yh8vz11 Universitatea George Bacovia Bacau'),
(25352, 'https://ror.org/0562zzt06', 'en', 1, 'https://ror.org/0562zzt06 Ryazan State University Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”.А. Есенина'),
(25353, 'https://ror.org/03x3axr33', 'en', 1, 'https://ror.org/03x3axr33 Universitatea "Vasile Alecsandri" din Bacău University of Bacău'),
(25354, 'https://ror.org/028bztp57', 'en', 1, 'https://ror.org/028bztp57 Institute of Modern Technologies and Economy ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ современных технологий Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(25355, 'https://ror.org/053z1kb20', 'en', 1, 'https://ror.org/053z1kb20 Komsomolsk-on-Amur State Technical University Комсомольский-на-ŠŠ¼ŃƒŃ€Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25356, 'https://ror.org/02376g836', 'en', 1, 'https://ror.org/02376g836 Franz Liszt Academy of Music'),
(25357, 'https://ror.org/03y3an855', 'en', 1, 'https://ror.org/03y3an855 Academia Națională de Informații National Intelligence Academy'),
(25358, 'https://ror.org/03vganq87', 'en', 1, 'https://ror.org/03vganq87 National Academy of Internal Affairs'),
(25359, 'https://ror.org/02zzdhn44', 'en', 1, 'https://ror.org/02zzdhn44 Kyiv Institute of Traditional Medicine'),
(25360, 'https://ror.org/042vq5636', 'en', 1, 'https://ror.org/042vq5636 Krasnoyarsk State Trade and Economic Institute ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ торгово-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25361, 'https://ror.org/0572trk36', 'ro', 1, 'https://ror.org/0572trk36 Institutul Teologic Baptist din București'),
(25362, 'https://ror.org/019cy2194', 'en', 1, 'https://ror.org/019cy2194 Kyiv International University ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ міжнароГний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25363, 'https://ror.org/020hbs629', 'en', 1, 'https://ror.org/020hbs629 Kyiv National Linguistic University Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ лінгвістичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25364, 'https://ror.org/051mkpe32', 'en', 1, 'https://ror.org/051mkpe32 Bioterra University Bucharest Universitatea Bioterra din București'),
(25365, 'https://ror.org/03wxwxe24', 'en', 1, 'https://ror.org/03wxwxe24 Budapest University of Jewish Studies OrszĆ”gos RabbikĆ©pző – Zsidó Egyetem'),
(25366, 'https://ror.org/02k11zt98', 'en', 1, 'https://ror.org/02k11zt98 Daghestan State Pedagogical University Дагестанский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25367, 'https://ror.org/04v071k95', 'en', 1, 'https://ror.org/04v071k95 Dagestan State Technical University Дагестанский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25368, 'https://ror.org/05d9d4d82', 'en', 1, 'https://ror.org/05d9d4d82 Kyiv University of Law ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ права'),
(25369, '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'),
(25370, '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 Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВаГима Š“ŠµŃ‚ŃŒŠ¼Š°Š½Š°'),
(25371, 'https://ror.org/03an7d434', 'en', 1, 'https://ror.org/03an7d434 Hyperion University Universitatea Hyperion din Bucureşti'),
(25372, 'https://ror.org/01wr29484', 'en', 1, 'https://ror.org/01wr29484 Rostov State Rakhmaninov Conservatory Š Š¾ŃŃ‚Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. Š”.Š’. Рахманинова'),
(25373, 'https://ror.org/02qp15436', 'en', 1, 'https://ror.org/02qp15436 Kijowski Narodowy Uniwersytet Budownictwa i Architektury Kyiv National University of Construction and Architecture Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š° Šø Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(25374, 'https://ror.org/047183794', 'en', 1, 'https://ror.org/047183794 Moscow State Academy of Physical Education ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25375, 'https://ror.org/046a1ah60', 'en', 1, 'https://ror.org/046a1ah60 Rostov State Medical University Ростовский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25376, 'https://ror.org/04gb4k866', 'en', 1, 'https://ror.org/04gb4k866 Rostov State University of Civil Engineering Ростовский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š”Ń‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Университет'),
(25377, 'https://ror.org/002xnzp34', 'en', 1, 'https://ror.org/002xnzp34 Rostov State Transport University Ростовский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(25378, 'https://ror.org/052j3fv27', 'en', 1, 'https://ror.org/052j3fv27 Rostov Institute of Law of the Ministry of Internal Affairs of the Russian Federation Ростовский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(25379, 'https://ror.org/05gp0dh20', 'hu', 1, 'https://ror.org/05gp0dh20 Sola Scriptura Teológiai Főiskola'),
(25380, '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ā€'),
(25381, 'https://ror.org/01qkq8c66', 'en', 1, 'https://ror.org/01qkq8c66 Spiru Haret University Universitatea Spiru Haret'),
(25382, 'https://ror.org/047wxqh80', 'en', 1, 'https://ror.org/047wxqh80 International Christian University ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ Š„Ń€ŠøŃŃ‚ŠøŃŠ½ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚-ŠšŠøŃ—Š²'),
(25383, 'https://ror.org/020p0cm86', 'en', 1, 'https://ror.org/020p0cm86 Ryazan Institute of Management and Law Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(25384, 'https://ror.org/00m1jj386', 'en', 1, 'https://ror.org/00m1jj386 Rybinsk State Aviation Technological Academy'),
(25385, 'https://ror.org/00va6jd32', 'en', 1, 'https://ror.org/00va6jd32 Academician Yuriy Bugay International Scientific and Technical University ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ науково-технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені акаГеміка Š®Ń€Ń–я Š‘ŃƒŠ³Š°Ń'),
(25386, 'https://ror.org/00hn38v76', 'hu', 1, 'https://ror.org/00hn38v76 John Wesley Theological College Wesley JĆ”nos LelkĆ©szkĆ©pző Főiskola'),
(25387, 'https://ror.org/01ezcv773', 'en', 1, 'https://ror.org/01ezcv773 Interregional Academy of Personnel Management Międzyregionalna Akademia Zarządzania Personelem w Kijowie ŠœŠµŠ¶Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ персоналом ŠœŃ–Š¶Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń персоналом'),
(25388, 'https://ror.org/0367qb939', 'en', 1, 'https://ror.org/0367qb939 Titu Maiorescu University Universitatea Titu Maiorescu'),
(25389, 'https://ror.org/03cpgdf16', 'en', 1, 'https://ror.org/03cpgdf16 National Academy of Management ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(25390, 'https://ror.org/05mzn8a55', 'en', 1, 'https://ror.org/05mzn8a55 King Sigismund Business School'),
(25391, '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'),
(25392, 'https://ror.org/01jm65960', 'en', 1, 'https://ror.org/01jm65960 Academia de Muzică Gheorghe Dima Gheorghe Dima Music Academy'),
(25393, 'https://ror.org/0475cfj29', 'en', 1, 'https://ror.org/0475cfj29 Michurinsk State Agrarian University ŠœŠøŃ‡ŃƒŃ€ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25394, 'https://ror.org/02152vc29', 'en', 1, 'https://ror.org/02152vc29 Bogdan Voda University Universitatea ā€žBogdan VodÄƒā€'),
(25395, 'https://ror.org/02xhk8637', 'en', 1, 'https://ror.org/02xhk8637 International Market Institute ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рынка'),
(25396, 'https://ror.org/00pzf4g66', 'en', 1, 'https://ror.org/00pzf4g66 Academia Navală Mircea cel Bătrân Mircea cel Batran Naval Academy'),
(25397, 'https://ror.org/02d6sp246', 'en', 1, 'https://ror.org/02d6sp246 Karoly Robert Foiskola KÔroly Róbert University College'),
(25398, 'https://ror.org/04t09e441', 'en', 1, 'https://ror.org/04t09e441 Volga Business Institute'),
(25399, 'https://ror.org/02nh5kj96', 'en', 1, 'https://ror.org/02nh5kj96 National Academy of Fine Art and Architecture ŠŠ°Ń†Ń–Š¾Š½Š°ĢŠ»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµĢŠ¼Ń–Ń образотво́рчого мисте́цтва і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒĢŃ€Šø'),
(25400, 'https://ror.org/031p96b92', 'ro', 1, 'https://ror.org/031p96b92 Universitatea Andrei Şaguna'),
(25401, 'https://ror.org/034f9zy16', 'en', 1, 'https://ror.org/034f9zy16 Samara State Institute of Culture Дамарский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25402, 'https://ror.org/05m9bzv71', 'en', 1, 'https://ror.org/05m9bzv71 Samara State Transport University Дамарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(25403, 'https://ror.org/0593bd590', 'hu', 1, 'https://ror.org/0593bd590 Szent AtanĆ”z Gƶrƶgkatolikus HittudomĆ”nyi Főiskola'),
(25404, 'https://ror.org/02qfzwh20', 'en', 1, 'https://ror.org/02qfzwh20 Samara Humanitarian Academy Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25405, 'https://ror.org/01tz4vf62', 'en', 1, 'https://ror.org/01tz4vf62 Kyiv National I. K. Karpenko-Kary Theatre, Cinema and Television University ŠšŠøĢŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°ĢŠ»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ Ń‚ŠµŠ°ĢŃ‚Ń€Ńƒ, кіно́ і Ń‚ŠµŠ»ŠµŠ±Š°ĢŃ‡ŠµŠ½Š½Ń і́мені Іва́на ŠšŠ°ĢŃ€ŠæŠ¾Š²ŠøŃ‡Š° ŠšŠ°Ń€ŠæŠµĢŠ½ŠŗŠ°-ŠšŠ°ĢŃ€Š¾Š³Š¾ Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ театра, кино Šø Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ имени И. К. ŠšŠ°Ń€ŠæŠµŠ½ŠŗŠ¾-ŠšŠ°Ń€Š¾Š³Š¾'),
(25406, 'https://ror.org/02wf2mv31', 'en', 1, 'https://ror.org/02wf2mv31 Mihail Kogălniceanu University Universitatea Mihail Kogălniceanu'),
(25407, 'https://ror.org/00rb8n537', 'en', 1, 'https://ror.org/00rb8n537 University of Structural Engineering and Architecture Lyuben Karavelov Š’ŠøŃŃˆŠµ строително ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ "Š›ŃŽŠ±ŠµŠ½ ŠšŠ°Ń€Š°Š²ŠµŠ»Š¾Š²"'),
(25408, 'https://ror.org/05txf9q94', 'en', 1, 'https://ror.org/05txf9q94 Academy of Economic Security ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Š¹ безопасности'),
(25409, 'https://ror.org/02wsba348', 'en', 1, 'https://ror.org/02wsba348 Samara State University of Economics Дамарский Š³Š¾ŃŃƒŠ“арственный ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25410, 'https://ror.org/02z5czc07', 'en', 1, 'https://ror.org/02z5czc07 Samara State Medical University Дамарский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Университет'),
(25411, 'https://ror.org/03w9qt084', 'en', 1, 'https://ror.org/03w9qt084 Ukrainian-American Concordia University Š’Ń–ŃŠŗŠ¾Š½ŃŠøŠ½ŃŃŒŠŗŠøŠ¹ міжнароГний Університет (ДША) в Україні'),
(25412, 'https://ror.org/024nn8203', 'hu', 1, 'https://ror.org/024nn8203 Adventista Teológiai Fõiskola Hungarian Adventist Theological College'),
(25413, 'https://ror.org/02aayd667', 'en', 1, 'https://ror.org/02aayd667 Emanuel University Universitatea Emanuel'),
(25414, 'https://ror.org/03jnxyq69', 'en', 1, 'https://ror.org/03jnxyq69 Banking University Університет Š±Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠ¾Ń— справи'),
(25415, 'https://ror.org/05g7nkm73', 'en', 1, 'https://ror.org/05g7nkm73 Constantin Brâncoveanu University Universitatea Constantin Brâncoveanu'),
(25416, 'https://ror.org/04rdq3258', 'en', 1, 'https://ror.org/04rdq3258 University "Eftimie Murgu" of Reşiţa'),
(25417, 'https://ror.org/044h3my24', 'en', 1, 'https://ror.org/044h3my24 Shadrinsk State Pedagogical Institute ШаГринский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25418, 'https://ror.org/00g1zds18', 'en', 1, 'https://ror.org/00g1zds18 Samara State University of Social Sciences and Education Дамарский Š³Š¾ŃŃƒŠ“арственный ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25419, 'https://ror.org/05t58bx13', 'en', 1, 'https://ror.org/05t58bx13 Samara State Technical University Дамарский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25420, 'https://ror.org/00takby20', 'hu', 1, 'https://ror.org/00takby20 GĆ”l Ferenc Főiskola'),
(25421, 'https://ror.org/01gw7yt49', 'en', 1, 'https://ror.org/01gw7yt49 Samara Institute of Management Дамарский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25422, 'https://ror.org/00tm62b95', 'no_lang_code', 1, 'https://ror.org/00tm62b95 Samara Medical Institute Reaviz Дамарский меГицинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Reavis'),
(25423, 'https://ror.org/00shnh382', 'en', 1, 'https://ror.org/00shnh382 Lugansk National Agrarian University Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25424, 'https://ror.org/03js41c71', 'hu', 1, 'https://ror.org/03js41c71 VeszprĆ©mi Ɖrseki HittudomĆ”nyi FƵiskola'),
(25425, 'https://ror.org/01xz43q57', 'en', 1, 'https://ror.org/01xz43q57 Academy of Choral Arts named after V Popov ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ хорового ŠøŃŠŗŃƒŃŃŃ‚ва'),
(25426, 'https://ror.org/021b48m83', 'en', 1, 'https://ror.org/021b48m83 Luhansk State University of Internal Affairs named after E.O.Didorenko Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел имени Š­. А. ДиГоренко Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ імені Š•Š“ŃƒŠ°Ń€Š“Š° ДіГоренка'),
(25427, 'https://ror.org/04aw3qn55', 'en', 1, 'https://ror.org/04aw3qn55 Latvian Christian Academy Latvijas Kristīgā akadēmija'),
(25428, 'https://ror.org/01gzemj61', 'en', 1, 'https://ror.org/01gzemj61 Liepājas Universitāte University of Liepāja'),
(25429, 'https://ror.org/0461hph98', 'en', 1, 'https://ror.org/0461hph98 Academy of Social and Economic Development ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø произвоГства'),
(25430, 'https://ror.org/05nrxes70', 'en', 1, 'https://ror.org/05nrxes70 Academy of Innovation Management ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ менеГжмента инноваций'),
(25431, 'https://ror.org/05kt2wq49', 'en', 1, 'https://ror.org/05kt2wq49 Academy of the Federal Security Service of the Russian Federation ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ безопасности Российской ФеГерации'),
(25432, 'https://ror.org/0058xhs49', 'en', 1, 'https://ror.org/0058xhs49 Constantin BrĆ¢ncuși University of Targu Jiu'),
(25433, 'https://ror.org/04jesgk52', 'en', 1, 'https://ror.org/04jesgk52 Baltic Institute of Ecology, Politics and Law Балтийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø, политики Šø права'),
(25434, 'https://ror.org/0502vx353', 'en', 1, 'https://ror.org/0502vx353 Lviv National Academy of Arts Lwowska Narodowa Akademia Sztuki Š›ŃŒŠ²Š¾Š²ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š² Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń мистецтв'),
(25435, 'https://ror.org/03r9b8045', 'en', 1, 'https://ror.org/03r9b8045 Academy of the State Fire Service EMERCOM of Russia ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ противопожарной ŃŠ»ŃƒŠ¶Š±Ń‹ МЧД России'),
(25436, 'https://ror.org/05yh8pq36', 'en', 1, 'https://ror.org/05yh8pq36 Baltic Institute of Foreign Languages and International Intercultural Cooperation Балтийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иностранных ŃŠ·Ń‹ŠŗŠ¾Š² Šø Š¼ŠµŠ¶ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½Š¾Š³Š¾ ŃŠ¾Ń‚Ń€ŃƒŠ“Š½ŠøŃ‡ŠµŃŃ‚Š²Š°'),
(25437, 'https://ror.org/05ykvq143', 'en', 1, 'https://ror.org/05ykvq143 Dimitrie Cantemir University Universitatea Dimitrie Cantemir'),
(25438, 'https://ror.org/00t30sg60', 'en', 1, 'https://ror.org/00t30sg60 Baltic International Institute of Tourism Балтийский Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(25439, 'https://ror.org/020ywsx42', 'en', 1, 'https://ror.org/020ywsx42 Moscow Academy of Education Natalia Nesterova ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠŠ°Ń‚Š°Š»ŃŒŠø ŠŠµŃŃ‚ŠµŃ€Š¾Š²Š¾Š¹'),
(25440, 'https://ror.org/044k1rn02', 'en', 1, 'https://ror.org/044k1rn02 Institute of Business and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса Šø права'),
(25441, 'https://ror.org/01mjqan41', 'en', 1, 'https://ror.org/01mjqan41 Moscow Institute of State Management and Law Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(25442, 'https://ror.org/01hhj0x41', 'en', 1, 'https://ror.org/01hhj0x41 Biznesa augstskola Turība Turība University'),
(25443, 'https://ror.org/034nbgh40', 'en', 1, 'https://ror.org/034nbgh40 Academy of Labour and Social Relations ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń‚Ń€ŃƒŠ“Š° Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(25444, 'https://ror.org/00dyv5995', 'en', 1, 'https://ror.org/00dyv5995 Institute of Foreign Languages Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иностранных ŃŠ·Ń‹ŠŗŠ¾Š²'),
(25445, 'https://ror.org/04cfhgb79', 'en', 1, 'https://ror.org/04cfhgb79 Diplomatic Academy of the Russian Foreign Ministry Š”ŠøŠæŠ»Š¾Š¼Š°Ń‚ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠœŠ˜Š” России'),
(25446, 'https://ror.org/05qr5xz39', 'en', 1, 'https://ror.org/05qr5xz39 Institute of Law and Business Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса Šø права'),
(25447, 'https://ror.org/05tyb9s14', 'en', 1, 'https://ror.org/05tyb9s14 EKA University of Applied Sciences Ekonomikas un kultƻras augstskola'),
(25448, 'https://ror.org/019v5rt51', 'en', 1, 'https://ror.org/019v5rt51 Wallenberg Institute of Special Education and Psychology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ пеГагогики Šø психологии'),
(25449, 'https://ror.org/05sfaa624', 'en', 1, 'https://ror.org/05sfaa624 Tibiscus University of Timișoara Universitatea Tibiscus din Timișoara'),
(25450, 'https://ror.org/03mhzg809', 'en', 1, 'https://ror.org/03mhzg809 ISMA University Informācijas Sistēmu Menedžmenta Augstskola Š’Ń‹ŃŃˆŠ°Ń школа менеГжмента Šø информационных систем'),
(25451, 'https://ror.org/01491yv14', 'en', 1, 'https://ror.org/01491yv14 Ukrainian Academy of Printing Š£ŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ печати Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š“Ń€ŃƒŠŗŠ°Ń€ŃŃ‚Š²Š°'),
(25452, '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 Š›Š°Ń‚Š²ŠøŠ¹ŃŠŗŠ°Ń Š¼ŃƒŠ·Ń‹ŠŗŠ°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Язепа Витола'),
(25453, 'https://ror.org/05tt5nr09', 'en', 1, 'https://ror.org/05tt5nr09 Ukrainian Catholic University Ukraiński Uniwersytet Katolicki Украинский католический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ ŠŗŠ°Ń‚Š¾Š»ŠøŃ†ŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25454, 'https://ror.org/02we34e32', 'en', 1, 'https://ror.org/02we34e32 Khakass Institute of Business Єакасский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(25455, 'https://ror.org/05neg3k91', 'en', 1, 'https://ror.org/05neg3k91 State Musical Pedagogical Institute named M.M.Ippolitova-Ivanov Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š¼ŃƒŠ·Ń‹ŠŗŠ°Š»ŃŒŠ½Š¾-пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени М. М. Š˜ŠæŠæŠ¾Š»ŠøŃ‚Š¾Š²Š°-Иванова'),
(25456, 'https://ror.org/00rwcdf75', 'en', 1, 'https://ror.org/00rwcdf75 Narodowy Uniwersytet Leśnictwa Ukrainy Ukrainian National Forestry University ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украины ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ лісотехнічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ України'),
(25457, 'https://ror.org/00g1je163', 'en', 1, 'https://ror.org/00g1je163 Almetyevsk State Oil Institute ŠŠ»ŃŒŠ¼ŠµŃ‚ŃŒŠµŠ²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25458, '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'),
(25459, 'https://ror.org/00xxekd18', 'en', 1, 'https://ror.org/00xxekd18 Latvian Maritime Academy Latvijas Jūras Akadēmija'),
(25460, 'https://ror.org/00zabvw84', 'en', 1, 'https://ror.org/00zabvw84 Russian State Specialized Academy of Arts Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠæŠµŃ†ŠøŠ°Š»ŠøŠ·ŠøŃ€Š¾Š²Š°Š½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(25461, 'https://ror.org/03f18y477', 'en', 1, 'https://ror.org/03f18y477 Latvian Academy of Culture Latvijas Kulturas akademija'),
(25462, 'https://ror.org/015j3ky41', 'en', 1, 'https://ror.org/015j3ky41 Art Academy of Latvia Latvijas Mākslas akadēmija Latvijos dailės akademija Š›Š°Ń‚Š²ŠøŠ¹ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²'),
(25463, 'https://ror.org/01qxgsr72', 'en', 1, 'https://ror.org/01qxgsr72 Latvijas Nacionālā Aizsardzības Akadēmija National Defence Academy of Latvia'),
(25464, 'https://ror.org/04rep4w03', 'en', 1, 'https://ror.org/04rep4w03 Izmail State University of Humanities Š†Š·Š¼Š°Ń—Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний Š³ŃƒŠ¼Š°Š½Ń–тарний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25465, 'https://ror.org/02h9hn661', 'en', 1, 'https://ror.org/02h9hn661 Latvian Academy of Sport Education Latvijas Sporta Pedagoģijas Akadēmija'),
(25466, 'https://ror.org/010btwb70', 'en', 1, 'https://ror.org/010btwb70 Donbas National Academy of Civil Engineering and Architecture Š”Š¾Š½Š±Š°ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(25467, 'https://ror.org/01c3xmp59', 'en', 1, 'https://ror.org/01c3xmp59 State University of Land Use Planning Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ по Š·ŠµŠ¼Š»ŠµŃƒŃŃ‚Ń€Š¾Š¹ŃŃ‚Š²Ńƒ'),
(25468, 'https://ror.org/04fpqn730', 'en', 1, 'https://ror.org/04fpqn730 International Banking Institute ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ банковский ŠøŠ½ŃŃ‚ŠøŃ‚Ńƒ'),
(25469, 'https://ror.org/04hsm1w74', 'en', 1, 'https://ror.org/04hsm1w74 Moscow Humanitarian Economic Institute Московский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25470, 'https://ror.org/03zjsm671', 'en', 1, 'https://ror.org/03zjsm671 Riga Aeronautical Institute Rīgas Aeronavigācijas institūts'),
(25471, 'https://ror.org/049nmp689', 'en', 1, 'https://ror.org/049nmp689 Nevsky Institute of Management and Design ŠŠµŠ²ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø Гизайна'),
(25472, 'https://ror.org/00vk44673', 'en', 1, 'https://ror.org/00vk44673 Petro Mohyla Black Sea National University Черноморский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ŠŸŠµŃ‚ра ŠœŠ¾Š³ŠøŠ»Ń‹ Š§Š¾Ń€Š½Š¾Š¼Š¾Ń€ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠŸŠµŃ‚Ń€Š° Могили'),
(25473, 'https://ror.org/03zjvmt75', 'en', 1, 'https://ror.org/03zjvmt75 Mykolayiv National Agrarian University ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŠøŠŗŠ¾Š»Š°ŠµŠ²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25474, 'https://ror.org/00qqptx17', 'en', 1, 'https://ror.org/00qqptx17 St. Petersburg Institute of Jewish Studies ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ИуГаики'),
(25475, 'https://ror.org/01z75n202', 'en', 1, 'https://ror.org/01z75n202 Institute of Contemporary Education "YurInfoR-MGU"'),
(25476, 'https://ror.org/05jbbr095', 'en', 1, 'https://ror.org/05jbbr095 Higher School of Social Technologies SOCIĀLO TEHNOLOĢIJU AUGSTSKOLA'),
(25477, 'https://ror.org/00skfd876', 'en', 1, 'https://ror.org/00skfd876 International Higher School of Practical Psychology Starptautiskā Praktiskās Psiholoģijas Augstskola'),
(25478, 'https://ror.org/04fbh8j71', 'en', 1, 'https://ror.org/04fbh8j71 Arkhangelsk State Technical University ŠŃ€Ń…Š°Š½Š³ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25479, 'https://ror.org/015va4q78', 'en', 1, 'https://ror.org/015va4q78 Humanitarian Institute of Television and Broadcasting M.A. LitovĆØina Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ Šø Ń€Š°Š“ŠøŠ¾Š²ŠµŃ‰Š°Š½ŠøŃ'),
(25480, 'https://ror.org/005da4z68', 'en', 1, 'https://ror.org/005da4z68 Mykolaiv V.O. Sukhomlynskyi National University ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’.Šž. Š”ŃƒŃ…Š¾Š¼Š»ŠøŠ½ŃŃŒŠŗŠ¾Š³Š¾'),
(25481, 'https://ror.org/05ta60489', 'en', 1, 'https://ror.org/05ta60489 International Institute of Management Arkhangelsk Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25482, 'https://ror.org/01628w679', 'en', 1, 'https://ror.org/01628w679 Transport and Telecommunication Institute Transporta un Sakaru InstitÅ«ts Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Транспорта Šø Š”Š²ŃŠ·Šø'),
(25483, 'https://ror.org/04zjz7s05', 'en', 1, 'https://ror.org/04zjz7s05 Nizhyn Gogol State University ŠŠµŠ¶ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ŠŠøŠŗŠ¾Š»Š°Ń Š“Š¾Š³Š¾Š»Ń ŠŃ–Š¶ŠøŠ½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Миколи Š“Š¾Š³Š¾Š»Ń'),
(25484, 'https://ror.org/021m3j510', 'en', 1, 'https://ror.org/021m3j510 International Academy of Philosophy Internationale Akademie für Philosophie'),
(25485, 'https://ror.org/01m0m3p30', 'en', 1, 'https://ror.org/01m0m3p30 Saint Petersburg State Theatre Arts Academy Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠøŃŠŗŃƒŃŃŃ‚Š²Š°'),
(25486, 'https://ror.org/01nrsdg41', 'en', 1, 'https://ror.org/01nrsdg41 Saint - Petersburg State Chemical Pharmaceutical Academy Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń химико-Ń„Š°Ń€Š¼Š°Ń†ŠµŠ²Ń‚ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25487, 'https://ror.org/02pg2aq98', 'en', 1, 'https://ror.org/02pg2aq98 Private University in the Principality of Liechtenstein Private Universität im Fürstentum Liechtenstein'),
(25488, 'https://ror.org/0282prk66', 'en', 1, 'https://ror.org/0282prk66 National University Odesa Law Academy ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Университет ŠžŠ“ŠµŃŃŠŗŠ°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŠ“ŠµŃŃŒŠŗŠ° ŃŽŃ€ŠøŠ“ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(25489, 'https://ror.org/047ypym59', 'en', 1, 'https://ror.org/047ypym59 Saint Petersburg Stieglitz State Academy of Art and Design Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š¾-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени А.Š›. Штиглица'),
(25490, 'https://ror.org/033rfce62', 'en', 1, 'https://ror.org/033rfce62 Uniwersytet Szawelski Šiauliai University Šiaulių universitetas'),
(25491, 'https://ror.org/04kfg7139', 'en', 1, 'https://ror.org/04kfg7139 Saint Petersburg State Conservatory named after N.A. Rimsky-Korsakov Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени Š. А. Римского-ŠšŠ¾Ń€ŃŠ°ŠŗŠ¾Š²Š°'),
(25492, 'https://ror.org/034882z59', 'en', 1, 'https://ror.org/034882z59 Saint Petersburg State Forest Technical University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25493, 'https://ror.org/000tee703', 'en', 1, 'https://ror.org/000tee703 Northeastern State University Деверный Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25494, 'https://ror.org/01vk4fh57', 'en', 1, 'https://ror.org/01vk4fh57 Armavir State Pedagogical Academy Армавирский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25495, 'https://ror.org/05p8tp630', 'en', 1, 'https://ror.org/05p8tp630 International Business School at Vilnius University Vilniaus universiteto Tarptautinio verslo mokykla'),
(25496, 'https://ror.org/01pjy1768', 'en', 1, 'https://ror.org/01pjy1768 Armavir Linguistic Social Institution Армавирский лингвистический ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25497, 'https://ror.org/02tj4bx84', 'en', 1, 'https://ror.org/02tj4bx84 Armavir Orthodox-Social Institute Армавирский ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Š¾-Š”Š¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25498, 'https://ror.org/056ad8q42', 'en', 1, 'https://ror.org/056ad8q42 Kazimieras Simonavičius University Vilniaus Verslo Teisės Akademija'),
(25499, 'https://ror.org/043rtjx90', 'en', 1, 'https://ror.org/043rtjx90 Odessa National A. V. Nezhdanova Academy of Music ŠžŠ“ŠµŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŃƒŠ·ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń імені А. Š’. ŠŠµŠ¶Š“Š°Š½Š¾Š²Š¾Ń—'),
(25500, 'https://ror.org/048d53c31', 'en', 1, 'https://ror.org/048d53c31 Dagestan State Institute of National Economy Дагестанский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нароГного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(25501, 'https://ror.org/04gpw1v92', 'en', 1, 'https://ror.org/04gpw1v92 European University Европски ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚'),
(25502, 'https://ror.org/042160f93', 'en', 1, 'https://ror.org/042160f93 Astrakhan State Conservatory ŠŃŃ‚Ń€Š°Ń…Š°Š½ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠšŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(25503, 'https://ror.org/01yvmh709', 'en', 1, 'https://ror.org/01yvmh709 Astrakhan State Medical University Астраханский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Университет'),
(25504, 'https://ror.org/00ghx1590', 'en', 1, 'https://ror.org/00ghx1590 International Balkan University'),
(25505, '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 Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ акаГемический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ живописи ŃŠŗŃƒŠ»ŃŒŠæŃ‚ŃƒŃ€Ń‹ Šø Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ имени И.Š•. Репин'),
(25506, 'https://ror.org/03xzjyz35', 'en', 1, 'https://ror.org/03xzjyz35 Odessa National Economics University ŠžŠ“ŠµŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25507, 'https://ror.org/041fmvm66', 'en', 1, 'https://ror.org/041fmvm66 Astrakhan Institute of Civil Engineering Астраханский инженерно-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25508, 'https://ror.org/01favr389', 'en', 1, 'https://ror.org/01favr389 Saint Petersburg State University of Architecture and Civil Engineering Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25509, 'https://ror.org/022a4es02', 'en', 1, 'https://ror.org/022a4es02 Institute of Economics and Culture Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25510, 'https://ror.org/04e529t38', 'en', 1, 'https://ror.org/04e529t38 Altai State Pedagogical University ŠŠ»Ń‚Š°Š¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25511, '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 Š‘ŠµŠ»ŃŒŃ†ŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25512, 'https://ror.org/0578kb180', 'en', 1, 'https://ror.org/0578kb180 Altai State Medical University Алтайский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25513, 'https://ror.org/02rsxaa93', 'en', 1, 'https://ror.org/02rsxaa93 Saint Petersburg State University of Aerospace and Instrumentation Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(25514, 'https://ror.org/000p7dd29', 'en', 1, 'https://ror.org/000p7dd29 Trade Co-operative University of Moldova Universitatea Cooperatist-Comerciala din Moldova'),
(25515, 'https://ror.org/007vwze84', 'en', 1, 'https://ror.org/007vwze84 Saint Petersburg State University of Cinema and Television Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кино Šø Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ'),
(25516, 'https://ror.org/02ktptg11', 'en', 1, 'https://ror.org/02ktptg11 Saint Petersburg State University of Culture and Arts ственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(25517, 'https://ror.org/04wd4rg36', 'ro', 1, 'https://ror.org/04wd4rg36 Universitatea de Stat din Tiraspol'),
(25518, 'https://ror.org/02rrx7g18', 'en', 1, 'https://ror.org/02rrx7g18 Barnaul Law Institute of the Russian Interior Ministry Š‘Š°Ń€Š½Š°ŃƒŠ»ŃŒŃŠŗŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(25519, 'https://ror.org/00nf68x61', 'en', 1, 'https://ror.org/00nf68x61 Belgorod State Agricultural University БелгороГский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25520, 'https://ror.org/01pcwfm43', 'en', 1, 'https://ror.org/01pcwfm43 Saint-Petersburg Institute of Economy and Management Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25521, 'https://ror.org/05shy2j49', 'en', 1, 'https://ror.org/05shy2j49 Saint-Petersburg Institute of Hospitality Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гостеприимства'),
(25522, 'https://ror.org/02v40vz65', 'en', 1, 'https://ror.org/02v40vz65 Belgorod State Technological University БелгороГский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š’. Š“. ŠØŃƒŃ…Š¾Š²Š°'),
(25523, 'https://ror.org/02stszq80', 'no_lang_code', 1, 'https://ror.org/02stszq80 Poltava V.G. Korolenko National Pedagogical University ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’.Š“.ŠšŠ¾Ń€Š¾Š»ŠµŠ½ŠŗŠ°'),
(25524, 'https://ror.org/054jx1t36', 'en', 1, 'https://ror.org/054jx1t36 Free International University of Moldova Universitatea Liberă Internaţională din Moldova'),
(25525, 'https://ror.org/044cm3z84', 'en', 1, 'https://ror.org/044cm3z84 Belgorod National Research University БелгороГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25526, 'https://ror.org/02bn3q971', 'en', 1, 'https://ror.org/02bn3q971 Rivne State University of Humanities Š Ń–Š²Š½ŠµŠ½ŃŃŒŠŗŠøŠ¹ Гержавний Š³ŃƒŠ¼Š°Š½Ń–тарний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25527, 'https://ror.org/032eyg648', 'en', 1, 'https://ror.org/032eyg648 Belgorod Law Institute of the Russian Interior Ministry БелгороГский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(25528, 'https://ror.org/05cwvy572', 'en', 1, 'https://ror.org/05cwvy572 Belgorod University of Cooperation, Economics and Law БелгороГский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ кооперации, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(25529, 'https://ror.org/057y1pm64', 'en', 1, 'https://ror.org/057y1pm64 Institute of Art Restoration Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² реставрации'),
(25530, 'https://ror.org/02nfx9606', 'en', 1, 'https://ror.org/02nfx9606 Altai State Humanities Pedagogical University Алтайский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. М. Шукшина'),
(25531, 'https://ror.org/02836fb11', 'en', 1, 'https://ror.org/02836fb11 Univers Moldova'),
(25532, 'https://ror.org/024zspx22', 'en', 1, 'https://ror.org/024zspx22 Comrat State University Komrat Devlet Üniversitesi Universitatea de Stat din Comrat ŠšŠ¾Š¼Ń€Š°Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25533, 'https://ror.org/04zttnq06', 'en', 1, 'https://ror.org/04zttnq06 Nakhimov Naval Academy Š§Š’Š’ŠœŠ£ им П.Š”. ŠŠ°Ń…ŠøŠ¼Š¾Š²Š°'),
(25534, 'https://ror.org/041b0hx46', 'en', 1, 'https://ror.org/041b0hx46 Institute of State Administration Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŠŠ“Š¼ŠøŠ½ŠøŃŃ‚Ń€ŠøŃ€Š¾Š²Š°Š½ŠøŃ'),
(25535, 'https://ror.org/01rd41j61', 'en', 1, 'https://ror.org/01rd41j61 Sevastopol National University of Nuclear Energy and Industry Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ ŃŠ½ŠµŃ€Š³ŠøŠø Šø ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ“ŠµŃ€Š½Š¾Ń— енергії та промисловості'),
(25536, 'https://ror.org/04e1g5k93', 'en', 1, 'https://ror.org/04e1g5k93 Saint Petersburg Institute of Law named after Prince P. Oldenburg Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ права имени ŠŸŃ€ŠøŠ½Ń†Š° П.Š“.ŠžŠ»ŃŒŠ“ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠ¾Š³Š¾'),
(25537, 'https://ror.org/05jcsvh64', 'en', 1, 'https://ror.org/05jcsvh64 Institute Unic ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ Гистанционного Š¾Š±ŃƒŃ‡ŠµŠ½ŠøŃ'),
(25538, 'https://ror.org/026qjzt27', 'en', 1, 'https://ror.org/026qjzt27 Saint - Petersburg Institute of Management and Law Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŠŸŃ€Š°Š²Š°'),
(25539, 'https://ror.org/029hynv20', 'en', 1, 'https://ror.org/029hynv20 Saint Petersburg Medical Technical Institute Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинских'),
(25540, 'https://ror.org/01jy7a082', 'en', 1, 'https://ror.org/01jy7a082 Institute for Languages ​​and Cultures Leo Tolstoy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ·Ń‹ŠŗŠ¾Š² Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ имени Š›ŃŒŠ²Š° Толстого'),
(25541, 'https://ror.org/03yyde753', 'en', 1, 'https://ror.org/03yyde753 International Management Institute Saint Petersburg ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента'),
(25542, 'https://ror.org/05j7wmw44', 'en', 1, 'https://ror.org/05j7wmw44 Saint Petersburg Social and Economic Institute Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25543, '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'),
(25544, 'https://ror.org/01vap5e49', 'en', 1, 'https://ror.org/01vap5e49 Saint Petersburg Institute of International Economic Relations, Economics and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒĢŃ‚ Š²Š½ŠµŃˆŠ½ŠµŃŠŗŠ¾Š½Š¾Š¼ŠøĢŃ‡ŠµŃŠŗŠøŃ… ŃŠ²ŃĢŠ·ŠµŠ¹, ŃŠŗŠ¾Š½Š¾ĢŠ¼ŠøŠŗŠø Šø пра́ва, Š˜Š’Š­Š”Š­ĢŠŸ'),
(25545, 'https://ror.org/05p5fjx25', 'en', 1, 'https://ror.org/05p5fjx25 Crimean Agrotechnological University ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠøŠ¹ агротехнологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25546, 'https://ror.org/01x8ank07', 'en', 1, 'https://ror.org/01x8ank07 Kyiv Slavonic University ŠšŠøŃ—Š²ŃŃŒŠ¾Š³Š¾ славістичного ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ');
INSERT INTO `rors` VALUES
(25547, 'https://ror.org/04qfewz28', 'en', 1, 'https://ror.org/04qfewz28 Crimea State Medical University named after S. I. Georgievsky ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ім. Š”. І. Š“ŠµŠ¾Ń€Š³Ń–Ń”Š²ŃŃŒŠŗŠ¾Š³Š¾ ŠšŃ€Ń‹ĢŠ¼ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøĢŠ½ŃŠŗŠøŠ¹ Университе́т и́мени Š”. И. Гео́ргиевского'),
(25548, 'https://ror.org/00pz8ca62', 'en', 1, 'https://ror.org/00pz8ca62 University of Donja Gorica Univerzitet Donja Gorica Универзитет Š”Š¾ŃšŠ° Горица'),
(25549, 'https://ror.org/05x21mt76', 'en', 1, 'https://ror.org/05x21mt76 Amur State Medical Academy ŠŠ¼ŃƒŃ€ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25550, 'https://ror.org/051czz811', 'en', 1, 'https://ror.org/051czz811 National Academy of Environmental and Resort Construction ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń прироГоохоронного і ŠŗŃƒŃ€Š¾Ń€Ń‚Š½Š¾Š³Š¾ Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š°'),
(25551, 'https://ror.org/03fws8b96', 'en', 1, 'https://ror.org/03fws8b96 Amur State University ŠŠ¼ŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25552, 'https://ror.org/01w60n236', 'en', 1, 'https://ror.org/01w60n236 Sumy State University Думский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Думський Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25553, 'https://ror.org/00tfv9y59', 'en', 1, 'https://ror.org/00tfv9y59 Ukrainian Academy of Banking of the National Bank of Ukraine ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠ¾Ń— справи ŠŠ‘Š£'),
(25554, 'https://ror.org/041990296', 'en', 1, 'https://ror.org/041990296 Bratsk State University Братский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25555, 'https://ror.org/045hmbf04', 'en', 1, 'https://ror.org/045hmbf04 Ternopil Ivan Pului National Technical University Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана ŠŸŃƒŠ»ŃŽŃ'),
(25556, 'https://ror.org/02j98rq95', 'en', 1, 'https://ror.org/02j98rq95 Ternopil Volodymyr Hnatiuk National Pedagogical University Š¢ŠµŃ€Š½Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ВлаГимира Š“Š½Š°Ń‚ŃŽŠŗŠ° Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВолоГимира Š“Š½Š°Ń‚ŃŽŠŗŠ°'),
(25557, 'https://ror.org/04z4g6e62', 'en', 1, 'https://ror.org/04z4g6e62 Pavlo Tychyna Uman State Pedagogical University Уманский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Павла Тычины Уманський Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Павла Тичини'),
(25558, 'https://ror.org/022ktzz27', 'en', 1, 'https://ror.org/022ktzz27 Uman National University of Horticulture Уманський Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ саГівництва'),
(25559, 'https://ror.org/05vs2an33', 'en', 1, 'https://ror.org/05vs2an33 Bryansk State Engineering and Technological Academy Š‘Ń€ŃŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń инженерно-Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25560, 'https://ror.org/05kknm922', 'en', 1, 'https://ror.org/05kknm922 Bryansk State Technical University Š‘Ń€ŃŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25561, 'https://ror.org/0115qty58', 'en', 1, 'https://ror.org/0115qty58 St. Petersburg University of the Ministry of Internal Affairs of Russia Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ’Š” России'),
(25562, 'https://ror.org/0266qh788', 'en', 1, 'https://ror.org/0266qh788 North-West Institute of Management Деверо-ЗапаГный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25563, 'https://ror.org/00xf20k05', 'en', 1, 'https://ror.org/00xf20k05 Institute of Natural Sciences and Ecology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ естественных наук Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(25564, 'https://ror.org/00nagev26', 'en', 1, 'https://ror.org/00nagev26 Vinnytsia National Technical University Winnicki Narodowy Uniwersytet Techniczny Š’Ń–Š½Š½ŠøŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25565, 'https://ror.org/006sv2266', 'en', 1, 'https://ror.org/006sv2266 Classic Private University ŠšŠ»Š°ŃŠøŃ‡Š½ŠøŠ¹ приватний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25566, 'https://ror.org/0438jm029', 'en', 1, 'https://ror.org/0438jm029 Northwest Open Technical University Деверо-ЗапаГный открытый технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25567, 'https://ror.org/0525x3k72', 'en', 1, 'https://ror.org/0525x3k72 Zaporizhzhya State Engineering Academy Інженерний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ¾Š³Š¾ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(25568, 'https://ror.org/05tkmsd51', 'en', 1, 'https://ror.org/05tkmsd51 East European Institute of Psychoanalysis Восточно-Европейский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŸŃŠøŃ…Š¾Š°Š½Š°Š»ŠøŠ·Š°'),
(25569, 'https://ror.org/05bemmp19', 'en', 1, 'https://ror.org/05bemmp19 Institute of International Business Education Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾Š³Š¾ бизнес-Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(25570, 'https://ror.org/05vqqhk28', 'en', 1, 'https://ror.org/05vqqhk28 Institute of International Law and Economics named after AS Griboedova Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾Š³Š¾ права Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø имени А.Š”. ГрибоеГова'),
(25571, 'https://ror.org/05rn18y04', 'en', 1, 'https://ror.org/05rn18y04 Institute of Business, Psychology and Management Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса, психологии Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25572, 'https://ror.org/048rfph76', 'en', 1, 'https://ror.org/048rfph76 Institute of International Trade and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾Š¹ торговли Šø права'),
(25573, 'https://ror.org/00pbj0581', 'en', 1, 'https://ror.org/00pbj0581 Institute of Management and Business Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента Šø бизнеса'),
(25574, 'https://ror.org/0310pe913', 'en', 1, 'https://ror.org/0310pe913 Institute of World Civilizations'),
(25575, 'https://ror.org/024jjwz66', 'en', 1, 'https://ror.org/024jjwz66 Regional Communal Higher Educational Institution Institute of Entrepreneurship Strategy ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ траГиційної меГицини'),
(25576, 'https://ror.org/01z1xpx75', 'en', 1, 'https://ror.org/01z1xpx75 Mordovia State Pedagogical Institute named after ME Evseveva Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ "ŠœŠ¾Ń€Š“Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени М. Š•. Š•Š²ŃŠµŠ²ŃŒŠµŠ²Š°"'),
(25577, 'https://ror.org/04r5xzk86', 'en', 1, 'https://ror.org/04r5xzk86 Zhytomyr Polytechnic State University Š–ŠøŃ‚Š¾Š¼ŠøŃ€ŃŃŒŠŗŠøŠ¹ Гержавний технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25578, 'https://ror.org/04h8sfe51', 'en', 1, 'https://ror.org/04h8sfe51 Institute of World Economy and Information Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŃ€Š¾Š²Š¾Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø информатизации'),
(25579, 'https://ror.org/044ghaj56', 'no_lang_code', 1, 'https://ror.org/044ghaj56 Zhytomyr Ivan Franko State University Š–ŠøŃ‚Š¾Š¼ŠøŃ€ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана Франка'),
(25580, 'https://ror.org/017vp5k51', 'en', 1, 'https://ror.org/017vp5k51 Saratov State Academy of Law Š”Š°Ń€Š°Ń‚Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25581, 'https://ror.org/03r9jhj30', 'en', 1, 'https://ror.org/03r9jhj30 Saratov State Conservatory named after L. V. Sobinov Š”Š°Ń€Š°Ń‚Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени Š›. Š’. Добинова'),
(25582, 'https://ror.org/020z26690', 'en', 1, 'https://ror.org/020z26690 Moscow State Linguistic University Московский Š³Š¾ŃŃƒŠ“арственный лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25583, 'https://ror.org/01qafy255', 'en', 1, 'https://ror.org/01qafy255 MF Norwegian School of Theology, Religion and Society'),
(25584, 'https://ror.org/018h19434', 'en', 1, 'https://ror.org/018h19434 Institute of Practical Oriental Studies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ практического Š²Š¾ŃŃ‚Š¾ŠŗŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(25585, 'https://ror.org/057vdbk84', 'en', 1, 'https://ror.org/057vdbk84 Saratov State Socio-Economic University Даратовский ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š Š­Š£ им. Š“. Š’. ŠŸŠ»ŠµŃ…Š°Š½Š¾Š²Š°'),
(25586, 'https://ror.org/04bgrkn57', 'en', 1, 'https://ror.org/04bgrkn57 Moscow State University of Medicine and Dentistry Московский Š³Š¾ŃŃƒŠ“арственный меГико-стоматологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25587, 'https://ror.org/05nj64045', 'en', 1, 'https://ror.org/05nj64045 Institute of Practical Psychology and Psychoanalysis Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ практической психологии Šø психоанализа'),
(25588, 'https://ror.org/00d55g310', 'en', 1, 'https://ror.org/00d55g310 Transbaikal State University Š—Š°Š±Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25589, 'https://ror.org/00zv9ny53', 'en', 1, 'https://ror.org/00zv9ny53 Moscow Region State University Московский Š³Š¾ŃŃƒŠ“арственный областной ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25590, 'https://ror.org/05jcsqx24', 'en', 1, 'https://ror.org/05jcsqx24 Saratov State University Даратовский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š“. Š§ŠµŃ€Š½Ń‹ŃˆŠµŠ²ŃŠŗŠ¾Š³Š¾'),
(25591, 'https://ror.org/049e2jc83', 'en', 1, 'https://ror.org/049e2jc83 Institute of Legal Economics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ правовой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(25592, 'https://ror.org/02qd5e669', 'en', 1, 'https://ror.org/02qd5e669 Moscow State Open University'),
(25593, 'https://ror.org/034f9gk34', 'en', 1, 'https://ror.org/034f9gk34 Institute of Professional Innovations Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠ¤Š•Š”Š”Š˜ŠžŠŠŠ›Š¬ŠŠ«Š„ Š˜ŠŠŠžŠ’ŠŠ¦Š˜Š™'),
(25594, 'https://ror.org/020extk17', 'en', 1, 'https://ror.org/020extk17 Institute of Professional Evaluation Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ оценки'),
(25595, 'https://ror.org/02rsbkz45', 'en', 1, 'https://ror.org/02rsbkz45 Institute of Psychology and Pedagogy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологии Šø пеГагогики'),
(25596, 'https://ror.org/05pvab842', 'en', 1, 'https://ror.org/05pvab842 Institute of Market Economy, Social Policy and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыночной ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ политики Šø права'),
(25597, 'https://ror.org/052dy9793', 'en', 1, 'https://ror.org/052dy9793 Norges musikkhĆøgskole Norjan valtiollinen musiikkikorkeakoulu Norwegian Academy of Music'),
(25598, 'https://ror.org/02erjps28', 'en', 1, 'https://ror.org/02erjps28 Moscow Institute of Modern Business Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ современного бизнеса'),
(25599, 'https://ror.org/05ksgvj69', 'en', 1, 'https://ror.org/05ksgvj69 Institute of Contemporary Art Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Довременного Š˜ŃŠŗŃƒŃŃŃ‚ва'),
(25600, 'https://ror.org/03paz2a60', 'en', 1, 'https://ror.org/03paz2a60 Moscow Polytechnic University Московский Š³Š¾ŃŃƒŠ“арственный Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25601, 'https://ror.org/04xhj8132', 'en', 1, 'https://ror.org/04xhj8132 Moscow State Technical University of Civil Aviation Московский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ гражГанской авиации'),
(25602, 'https://ror.org/048yz1t88', 'no_lang_code', 1, 'https://ror.org/048yz1t88 Sergiyev Posad Humanitarian Institute Дергиево-ПосаГский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25603, 'https://ror.org/020frqf17', 'en', 1, 'https://ror.org/020frqf17 Gorky Institute of World Literature Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мировой Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ имени А. М. Š“Š¾Ń€ŃŒŠŗŠ¾Š³Š¾ Š ŠŠ'),
(25604, 'https://ror.org/050k36w08', 'en', 1, 'https://ror.org/050k36w08 Tchaikovsky State Institute of Physical Culture Чайковский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25605, 'https://ror.org/054xjq184', 'en', 1, 'https://ror.org/054xjq184 A. N. Kosygin Moscow State Textile University Московский Š³Š¾ŃŃƒŠ“арственный Ń‚ŠµŠŗŃŃ‚ŠøŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š. ŠšŠ¾ŃŃ‹Š³ŠøŠ½Š°'),
(25606, 'https://ror.org/03ewvg219', 'en', 1, 'https://ror.org/03ewvg219 International Institute of Hotel Management and Tourism ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гостиничного менеГжмента Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(25607, 'https://ror.org/00jrqwc52', 'en', 1, 'https://ror.org/00jrqwc52 Shuya State Pedagogical University Шуйский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(25608, 'https://ror.org/05q6eez19', 'en', 1, 'https://ror.org/05q6eez19 International Academy of Marketing and Management ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ маркетинга Šø менеГжмента'),
(25609, 'https://ror.org/042xdvf13', 'en', 1, 'https://ror.org/042xdvf13 Chuvash State Agricultural Academy Š§ŃƒŠ²Š°ŃˆŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25610, 'https://ror.org/04gf7nc77', 'en', 1, 'https://ror.org/04gf7nc77 International Law Institute ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25611, 'https://ror.org/02weq6r62', 'en', 1, 'https://ror.org/02weq6r62 Smolensk State Academy of Physical Culture, Sport and Tourism Š”Š¼Š¾Š»ŠµŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(25612, 'https://ror.org/02e16wz39', 'en', 1, 'https://ror.org/02e16wz39 Moscow State University of Printing Arts Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ печати'),
(25613, 'https://ror.org/00x9nm172', 'en', 1, 'https://ror.org/00x9nm172 Chuvash State Pedagogical University Чувашский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. ŠÆ. Яковлева'),
(25614, 'https://ror.org/02wwnew71', 'en', 1, 'https://ror.org/02wwnew71 Smolensk State Medical University смоленский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25615, 'https://ror.org/034jfs648', 'en', 1, 'https://ror.org/034jfs648 MNEPU Academy ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠŠµŠ·Š°Š²ŠøŃŠøŠ¼Ń‹Š¹ Эколого-ŠŸŠ¾Š»ŠøŃ‚Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(25616, 'https://ror.org/042mxm271', 'en', 1, 'https://ror.org/042mxm271 Moscow State University of Food Production Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ пищевых произвоГств'),
(25617, 'https://ror.org/05b4sem27', 'en', 1, 'https://ror.org/05b4sem27 International Slavic Institute ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Š”Š»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25618, 'https://ror.org/02rzsmv54', 'en', 1, 'https://ror.org/02rzsmv54 Smolensk State Institute of Fine Arts Дмоленский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(25619, 'https://ror.org/04v9hhn38', 'en', 1, 'https://ror.org/04v9hhn38 International Academy of Business and Management ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Бизнеса Šø Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25620, 'https://ror.org/01bkha031', 'en', 1, 'https://ror.org/01bkha031 International University in Moscow ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Москве'),
(25621, 'https://ror.org/02k6mtm19', 'en', 1, 'https://ror.org/02k6mtm19 Moscow Academy of Economics and Law ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(25622, 'https://ror.org/035z20t37', 'en', 1, 'https://ror.org/035z20t37 Chelyabinsk State Institute of Culture Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25623, 'https://ror.org/00v9n6a67', 'en', 1, 'https://ror.org/00v9n6a67 Moscow University of Finance and Law Московский финансово-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25624, 'https://ror.org/007a2j788', 'en', 1, 'https://ror.org/007a2j788 Smolensk State Agricultural Academy Š”Š¼Š¾Š»ŠµŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25625, 'https://ror.org/02dn6hy62', 'en', 1, 'https://ror.org/02dn6hy62 Moscow State University of Environmental Engineering Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ инженерной ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(25626, 'https://ror.org/04ez6kn43', 'en', 1, 'https://ror.org/04ez6kn43 Moscow State Academy of Choreography ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ хореографии'),
(25627, 'https://ror.org/0095v1k44', 'en', 1, 'https://ror.org/0095v1k44 Chelyabinsk State Agroengineering Academy Южно-Š£Ń€Š°ĢŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ агра́рный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚'),
(25628, 'https://ror.org/05n436p02', 'en', 1, 'https://ror.org/05n436p02 South Ural State Humanitarian Pedagogical University Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25629, 'https://ror.org/014yxjm16', 'en', 1, 'https://ror.org/014yxjm16 Moscow State Academy of Water Transport ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ воГного транспорта'),
(25630, 'https://ror.org/0211wgq19', 'en', 1, 'https://ror.org/0211wgq19 Tver State Agricultural Academy Тверской Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25631, 'https://ror.org/02gqmg750', 'en', 1, 'https://ror.org/02gqmg750 State Classical Academy named after Maimonides Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ»Š°ŃŃŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени МаймониГа'),
(25632, 'https://ror.org/04vk90r05', 'en', 1, 'https://ror.org/04vk90r05 Sochi Institute of Economics and Information Technology Дочинский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Экономики И Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Ń‹Ń… Технологий'),
(25633, 'https://ror.org/02dbzr904', 'no_lang_code', 1, 'https://ror.org/02dbzr904 Solikamsk State Pedagogical Institute'),
(25634, 'https://ror.org/05vkeks90', 'en', 1, 'https://ror.org/05vkeks90 Moscow Conservatory ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. П. И. Чайковского'),
(25635, 'https://ror.org/05q6gjh32', 'en', 1, 'https://ror.org/05q6gjh32 North Caucasian Social Institute Деверо-Кавказский ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25636, 'https://ror.org/05v4ecv43', 'en', 1, 'https://ror.org/05v4ecv43 Tver Institute of Ecology and Law Тверской ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø права'),
(25637, 'https://ror.org/009bn4527', 'en', 1, 'https://ror.org/009bn4527 Moscow International Higher Business School ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š²Ń‹ŃŃˆŠ°Ń школа бизнеса'),
(25638, 'https://ror.org/01y6vee45', 'en', 1, 'https://ror.org/01y6vee45 Chelyabinsk Institute of Economics and Law named after M.V.Ladoshin Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права имени M.V.Ladoshin'),
(25639, 'https://ror.org/05pabrc30', 'en', 1, 'https://ror.org/05pabrc30 Stavropol Finance and Economics Institute'),
(25640, 'https://ror.org/02ne6gz21', 'en', 1, 'https://ror.org/02ne6gz21 Stavropol State Agrarian University Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25641, 'https://ror.org/0485fyg31', 'en', 1, 'https://ror.org/0485fyg31 Russian State Agrarian University - Moscow Timiryazev Agricultural Academy Российский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ — МДЄА имени К.А. Š¢ŠøŠ¼ŠøŃ€ŃŠ·ŠµŠ²Š°'),
(25642, 'https://ror.org/00nncg672', 'en', 1, 'https://ror.org/00nncg672 Moscow Financial Legal Institution Московский финансово-правовой ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25643, 'https://ror.org/0424c1c69', 'en', 1, 'https://ror.org/0424c1c69 Stavropol State University'),
(25644, 'https://ror.org/03k883a47', 'en', 1, 'https://ror.org/03k883a47 Moscow Architectural Institute Московский ŠŃ€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25645, 'https://ror.org/03jtxwz22', 'en', 1, 'https://ror.org/03jtxwz22 Stavropol Institute of VD Chursina Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š’.Š”. Š§ŃƒŃ€ŃŠøŠ½Š°'),
(25646, 'https://ror.org/02whebm50', 'en', 1, 'https://ror.org/02whebm50 Moscow Institute of Economics Politics and Law Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, политики Šø права'),
(25647, 'https://ror.org/024mdxt30', 'en', 1, 'https://ror.org/024mdxt30 Moscow Institute of Foreign Languages Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иностранных ŃŠ·Ń‹ŠŗŠ¾Š²'),
(25648, 'https://ror.org/04zn7jb34', 'en', 1, 'https://ror.org/04zn7jb34 Moscow State Institute of International Relations Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(25649, 'https://ror.org/03jbv9f50', 'en', 1, 'https://ror.org/03jbv9f50 Institute of Friendship of the People of Caucasus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Ń€ŃƒŠ¶Š±Ń‹ нароГов Кавказа'),
(25650, 'https://ror.org/02hpvf222', 'en', 1, 'https://ror.org/02hpvf222 Moscow Institute of Medical and Social Rehabilitologists Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГико-ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ реабилитологии'),
(25651, 'https://ror.org/04ye9fj05', 'en', 1, 'https://ror.org/04ye9fj05 Surgut State Pedagogical University Š”ŃƒŃ€Š³ŃƒŃ‚ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(25652, 'https://ror.org/05bbh2585', 'en', 1, 'https://ror.org/05bbh2585 Ministry of Internal Affairs of the Russian Federation ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Šž Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(25653, 'https://ror.org/05re0wz96', 'en', 1, 'https://ror.org/05re0wz96 Surgut ''Planet'' Institute of World Economics and Business Š”ŃƒŃ€Š³ŃƒŃ‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мировой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø бизнеса'),
(25654, '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 Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при Главе Республики Š‘Š°ŃˆŠŗŠ¾Ń€Ń‚Š¾ŃŃ‚Š°Š½'),
(25655, 'https://ror.org/020m36v47', 'en', 1, 'https://ror.org/020m36v47 South Ural State Institute of Arts named after P.I. Tchaikovsky Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² им. П.И. Чайковского'),
(25656, 'https://ror.org/00g6nvj03', 'en', 1, 'https://ror.org/00g6nvj03 Institute of State and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²Š° Šø права Российской акаГемии наук'),
(25657, 'https://ror.org/016tn3814', 'en', 1, 'https://ror.org/016tn3814 Komi State Pedagogical Institute Коми Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25658, 'https://ror.org/0119xjz67', 'en', 1, 'https://ror.org/0119xjz67 Moscow Banking Institute Московский банковский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25659, 'https://ror.org/03bxk9355', 'no_lang_code', 1, 'https://ror.org/03bxk9355 Syktyvkar State University Дыктывкарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25660, 'https://ror.org/02y6ewg31', 'en', 1, 'https://ror.org/02y6ewg31 Bashkir State Agrarian University Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25661, 'https://ror.org/01q2ngy08', 'en', 1, 'https://ror.org/01q2ngy08 Moscow Institute of Entrepreneurship and Law Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° Šø права'),
(25662, 'https://ror.org/05rdty581', 'en', 1, 'https://ror.org/05rdty581 Taganrog State Pedagogical Institute Таганрогский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени А.П. Чехова'),
(25663, 'https://ror.org/0378r5x41', 'en', 1, 'https://ror.org/0378r5x41 Tambov State Music and Pedagogical Institute named after S.V. Rachmaninov Š¢ŠŠœŠ‘ŠžŠ’Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠœŠ£Š—Š«ŠšŠŠ›Š¬ŠŠž-ŠŸŠ•Š”ŠŠ“ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ИМ. Š”.Š’. Š ŠŠ„ŠœŠŠŠ˜ŠŠžŠ’Š'),
(25664, 'https://ror.org/03kzg4d82', 'en', 1, 'https://ror.org/03kzg4d82 Chelyabinsk Law institute of Ministry of Internal Affairs of Russia Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ ЮриГический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š” России'),
(25665, 'https://ror.org/057qzst49', 'en', 1, 'https://ror.org/057qzst49 Moscow Humanitarian-Technical Academy ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-Š¢ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25666, 'https://ror.org/02mewhb28', 'en', 1, 'https://ror.org/02mewhb28 Economic and Law Institute in Moscow ŠœŠžŠ”ŠšŠžŠ’Š”ŠšŠ˜Š™ Š­ŠšŠžŠŠžŠœŠ˜ŠšŠž-ŠŸŠ ŠŠ’ŠžŠ’ŠžŠ™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(25667, 'https://ror.org/05qcjpk30', 'en', 1, 'https://ror.org/05qcjpk30 M. Akmullah Bashkir State Pedagogical University Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. ŠŠŗŠ¼ŃƒŠ»Š»Ń‹'),
(25668, 'https://ror.org/05qbwsp96', 'en', 1, 'https://ror.org/05qbwsp96 Tyumen State Medical University Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25669, 'https://ror.org/024xmp423', 'en', 1, 'https://ror.org/024xmp423 Ural State University of Physical Culture'),
(25670, 'https://ror.org/01bhqx716', 'en', 1, 'https://ror.org/01bhqx716 Moscow New Law Institute Московский ŠŠ¾Š²Ń‹Š¹ ЮриГический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25671, 'https://ror.org/05cc9dz89', 'en', 1, 'https://ror.org/05cc9dz89 Moscow Financial and Economic Institute Московский финансово-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25672, 'https://ror.org/03s5p4g14', 'en', 1, 'https://ror.org/03s5p4g14 Agrarian State University of Northern Zauralye Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Деверного Š—Š°ŃƒŃ€Š°Š»ŃŒŃ'),
(25673, 'https://ror.org/05cy1av38', 'en', 1, 'https://ror.org/05cy1av38 Moscow City University Московский гороГской ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25674, 'https://ror.org/01eqf3s47', 'en', 1, 'https://ror.org/01eqf3s47 Tyumen State Academy of World Economics, Management and Law Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ мировой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(25675, 'https://ror.org/02zqv0c70', 'en', 1, 'https://ror.org/02zqv0c70 Ufa State Institute of Arts Уфимский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² имени Загира Исмагилова'),
(25676, 'https://ror.org/05vehv290', 'en', 1, 'https://ror.org/05vehv290 University of Tyumen Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25677, 'https://ror.org/02b4gv182', 'en', 1, 'https://ror.org/02b4gv182 Moscow State Agroengineering University named after V.P. Goryachkin Московский Š³Š¾ŃŃƒŠ“арственный агроинженерный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. П. Š“Š¾Ń€ŃŃ‡ŠŗŠøŠ½Š°'),
(25678, 'https://ror.org/04hfxwy37', 'en', 1, 'https://ror.org/04hfxwy37 Tyumen Law Institute of the Russian Interior Ministry Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š” России'),
(25679, 'https://ror.org/015zw2f19', 'en', 1, 'https://ror.org/015zw2f19 Moscow Technical University of Communication and Informatics Московский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ²ŃŠ·Šø Šø информатики'),
(25680, 'https://ror.org/05960ca78', 'en', 1, 'https://ror.org/05960ca78 Russian Academy of Arts Š Š¾ŃŃŠøĢŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµĢŠ¼ŠøŃ Ń…ŃƒŠ“Š¾ĢŠ¶ŠµŃŃ‚Š²'),
(25681, 'https://ror.org/02pppmh23', 'en', 1, 'https://ror.org/02pppmh23 Moscow University Touro Московский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¢Š£Š Šž'),
(25682, 'https://ror.org/058svg759', 'en', 1, 'https://ror.org/058svg759 National Institute of Business ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š‘Š˜Š—ŠŠ•Š”Š'),
(25683, 'https://ror.org/01x4bmq04', 'en', 1, 'https://ror.org/01x4bmq04 Ekaterinburg State Theatre Institute Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25684, 'https://ror.org/00yctqd52', 'en', 1, 'https://ror.org/00yctqd52 Eastern Economics and Law Humanities Š’Š¾ŃŃ‚Š¾Ń‡Š½Š°Ń ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25685, 'https://ror.org/014napr78', 'en', 1, 'https://ror.org/014napr78 Moscow State Mining University Московский Š³Š¾ŃŃƒŠ“арственный горный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25686, 'https://ror.org/0443ap166', 'en', 1, 'https://ror.org/0443ap166 First Moscow Law Institute ŠŸŠµŃ€Š²Ń‹Š¹ московский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25687, 'https://ror.org/05mjn5p90', 'en', 1, 'https://ror.org/05mjn5p90 Tobolsk Pedagogical Institute named after D. I. Mendeleev Тобольский пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š”.И. МенГелеева'),
(25688, 'https://ror.org/0437a7n31', 'en', 1, 'https://ror.org/0437a7n31 Liberal Arts University Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25689, 'https://ror.org/03sew6f18', 'en', 1, 'https://ror.org/03sew6f18 Institute of International Relations Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… ŃŠ²ŃŠ·ŠµŠ¹'),
(25690, 'https://ror.org/00e7n9517', 'en', 1, 'https://ror.org/00e7n9517 Pryazovskyi State Technical University Przyazowski Państwowy Uniwersytet Techniczny ŠŸŃ€ŠøŠ°Š·Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŸŃ€ŠøŠ°Š·Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25691, 'https://ror.org/01c2d8v48', 'en', 1, 'https://ror.org/01c2d8v48 International Association for Continuing Engineering Education Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ•ŠŠ•Š”Š–ŠœŠ•ŠŠ¢Š И Š Š«ŠŠšŠ'),
(25692, 'https://ror.org/01a233t53', 'en', 1, 'https://ror.org/01a233t53 Moscow State Art and Industry Academy named after SG Stroganov ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š¾-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Š”. Š“. Дтроганова'),
(25693, 'https://ror.org/01ewxsd47', 'en', 1, 'https://ror.org/01ewxsd47 Russian State Vocational Pedagogical University Российский Š³Š¾ŃŃƒŠ“арственный ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25694, 'https://ror.org/047zrsx48', 'en', 1, 'https://ror.org/047zrsx48 Moscow State Industrial University Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25695, 'https://ror.org/05hq64n33', 'en', 1, 'https://ror.org/05hq64n33 Odessa State University of Internal Affairs ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(25696, 'https://ror.org/016p6a998', 'en', 1, 'https://ror.org/016p6a998 Ukhta State Technical University'),
(25697, 'https://ror.org/05dhkbw86', 'en', 1, 'https://ror.org/05dhkbw86 Moscow State Institute of Electronics and Mathematics Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø Šø математики'),
(25698, 'https://ror.org/009e66y24', 'en', 1, 'https://ror.org/009e66y24 Urals Institute of Management Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25699, 'https://ror.org/05henrr38', 'en', 1, 'https://ror.org/05henrr38 Togliatti Academy of Management'),
(25700, 'https://ror.org/03e2ja558', 'en', 1, 'https://ror.org/03e2ja558 Togliatti State University Š¢Š¾Š»ŃŒŃŃ‚Ń‚ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25701, 'https://ror.org/057p7pc42', 'en', 1, 'https://ror.org/057p7pc42 Ural State Mining University Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ горный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25702, 'https://ror.org/04wdw1j96', 'en', 1, 'https://ror.org/04wdw1j96 Volzhsky University after V.N. Tatischev Волжский Университет им. Š’.Š. Татищева'),
(25703, 'https://ror.org/04wewdt41', 'en', 1, 'https://ror.org/04wewdt41 Russian Academy of Advocacy and Notaries Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š°Š“Š²Š¾ŠŗŠ°Ń‚ŃƒŃ€Ń‹ Šø нотариата'),
(25704, 'https://ror.org/05g0wzd49', 'en', 1, 'https://ror.org/05g0wzd49 Ural State Law University Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25705, 'https://ror.org/00jzdyg03', 'en', 1, 'https://ror.org/00jzdyg03 Buryat State Academy of Agriculture Š‘ŃƒŃ€ŃŃ‚ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(25706, 'https://ror.org/04gvm8679', 'en', 1, 'https://ror.org/04gvm8679 Tomsk Institute of Economics and Law Томский ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25707, 'https://ror.org/04rfsd440', 'en', 1, 'https://ror.org/04rfsd440 Buryat State University Š‘ŃƒŃ€ŃŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25708, 'https://ror.org/025kkqh74', 'en', 1, 'https://ror.org/025kkqh74 Ural State Conservatory named after M.P. Mussorgsky Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени М. П. ŠœŃƒŃŠ¾Ń€Š³ŃŠŗŠ¾Š³Š¾'),
(25709, 'https://ror.org/03y0kgv22', 'en', 1, 'https://ror.org/03y0kgv22 Ural State Academy of Veterinary Medicine'),
(25710, 'https://ror.org/001w4ps18', 'en', 1, 'https://ror.org/001w4ps18 Tula State Pedagogical University named after L.N. Tolstoy Тульский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š›. Š. Толстого'),
(25711, 'https://ror.org/02xddbh84', 'en', 1, 'https://ror.org/02xddbh84 Russian Academy of Entrepreneurship Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŸŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(25712, 'https://ror.org/02sknrf76', 'en', 1, 'https://ror.org/02sknrf76 East Siberian Academy of Culture and Arts Восточно- Дибирский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25713, 'https://ror.org/00cnm9016', 'no_lang_code', 1, 'https://ror.org/00cnm9016 Upper Volga Institute'),
(25714, 'https://ror.org/00jpcnb73', 'en', 1, 'https://ror.org/00jpcnb73 Russian Institute of Theatre Arts Российский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠøŃŠŗŃƒŃŃŃ‚Š²Š°'),
(25715, 'https://ror.org/01kn8x502', 'en', 1, 'https://ror.org/01kn8x502 Ural State Agrarian University Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25716, 'https://ror.org/05ssws785', 'en', 1, 'https://ror.org/05ssws785 Ulyanovsk State Agricultural Academy named after PA Stolypin Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25717, 'https://ror.org/02rzsax38', 'en', 1, 'https://ror.org/02rzsax38 Ural Institute of Finance and Law Š£Š ŠŠ›Š¬Š”ŠšŠ˜Š™ Š¤Š˜ŠŠŠŠ”ŠžŠ’Šž-Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(25718, 'https://ror.org/00j0x9b96', 'en', 1, 'https://ror.org/00j0x9b96 Ulyanovsk State Pedagogical University Named After I. Ulyanov Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. Š. Š£Š»ŃŒŃŠ½Š¾Š²Š°'),
(25719, 'https://ror.org/041r0kq89', 'en', 1, 'https://ror.org/041r0kq89 Russian School of Private Law Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń школа частного права'),
(25720, 'https://ror.org/00ksn4909', 'en', 1, 'https://ror.org/00ksn4909 Ulyanovsk State Technical University Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25721, 'https://ror.org/0473ch268', 'en', 1, 'https://ror.org/0473ch268 Russian State University for the Humanities Российский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25722, 'https://ror.org/014qdh252', 'en', 1, 'https://ror.org/014qdh252 Ural State Forestry Engineering University Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25723, 'https://ror.org/01akgs808', 'en', 1, 'https://ror.org/01akgs808 National Transport University ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ транспортний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25724, 'https://ror.org/039r94y94', 'en', 1, 'https://ror.org/039r94y94 Ulyanovsk Higher Civil Aviation School Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ авиационное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ гражГанской авиации'),
(25725, 'https://ror.org/02sdhsy65', 'en', 1, 'https://ror.org/02sdhsy65 National Academy for Public Administration under the President of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Гержавного ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(25726, 'https://ror.org/0461yj464', 'en', 1, 'https://ror.org/0461yj464 Ural State University of Railway Transport Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(25727, 'https://ror.org/04gj47650', 'en', 1, 'https://ror.org/04gj47650 Primorskaya State Academy of Agriculture ŠŸŃ€ŠøŠ¼Š¾Ń€ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š”ŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25728, 'https://ror.org/057j5m475', 'en', 1, 'https://ror.org/057j5m475 Ural Institute for the Humanities Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25729, 'https://ror.org/04hzqbs28', 'en', 1, 'https://ror.org/04hzqbs28 Ural Institute of Business Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(25730, 'https://ror.org/002zjz985', 'en', 1, 'https://ror.org/002zjz985 Ural Institute of Economics, Management and Law Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(25731, 'https://ror.org/05ph49593', 'en', 1, 'https://ror.org/05ph49593 Ural Institute of the Stock Market Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ФонГового Рынка'),
(25732, 'https://ror.org/02gyp0j55', 'en', 1, 'https://ror.org/02gyp0j55 Ural Institute of Commerce and Law Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коммерции Šø права'),
(25733, 'https://ror.org/00fkjwd61', 'en', 1, 'https://ror.org/00fkjwd61 Ural Law Institute Russian Ministry of Internal Affairs Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25734, 'https://ror.org/01gktk238', 'en', 1, 'https://ror.org/01gktk238 Velikie Luki State Academy of Physical Culture and Sports Š’ŠµŠ»ŠøŠŗŠ¾Š»ŃƒŠŗŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(25735, 'https://ror.org/02kw8bv11', 'en', 1, 'https://ror.org/02kw8bv11 Moscow Regional Socio-Economic Institute Московский Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25736, 'https://ror.org/05jfsf459', 'en', 1, 'https://ror.org/05jfsf459 Kalmyk State University ŠšŠ°Š»Š¼Ń‹Ń†ŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25737, 'https://ror.org/02t3bgg27', 'no_lang_code', 1, 'https://ror.org/02t3bgg27 Russian Orthodox Institute Sacred Ioann Bogolslov Российский православный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ²ŃŃ‚Š¾Š³Š¾ Иоанна Богослова'),
(25738, 'https://ror.org/05cphcd65', 'en', 1, 'https://ror.org/05cphcd65 Essentuki Institute of Management Business and Law Š•ŃŃŠµŠ½Ń‚ŃƒŠŗŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ, бизнеса Šø права'),
(25739, 'https://ror.org/02cne5608', 'en', 1, 'https://ror.org/02cne5608 Glazov State Pedagogical Institute Named after VG Korolenko Š“Š›ŠŠ—ŠžŠ’Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŸŠ•Š”ŠŠ“ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š˜ŠœŠ•ŠŠ˜ Š’.Š“. ŠšŠžŠ ŠžŠ›Š•ŠŠšŠž'),
(25740, 'https://ror.org/03evcb553', 'en', 1, 'https://ror.org/03evcb553 Chechen State Pedagogical Institute Чеченский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25741, 'https://ror.org/01b8htz39', 'en', 1, 'https://ror.org/01b8htz39 Poltava University of Economics and Trade ŠŸŠ¾Š»Ń‚Š°Š²ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø торговли ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ економіки і торгівлі'),
(25742, 'https://ror.org/05xqgz809', 'en', 1, 'https://ror.org/05xqgz809 Moscow State Institute of Culture Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(25743, 'https://ror.org/00y47bm46', 'en', 1, 'https://ror.org/00y47bm46 Crimean State Engineering Pedagogical University ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠøŠ¹ інженерно-пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠšŃ€Ń‹Š¼ŃŠŗŠøŠ¹ инженерно-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25744, 'https://ror.org/05qwrn075', 'en', 1, 'https://ror.org/05qwrn075 Irkutsk State Medical University Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25745, 'https://ror.org/01t4e0y16', 'en', 1, 'https://ror.org/01t4e0y16 North Enterprise Institute Деверный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(25746, 'https://ror.org/03pyzpf78', 'en', 1, 'https://ror.org/03pyzpf78 Ural State Pedagogical University Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25747, 'https://ror.org/02z9b5492', 'en', 1, 'https://ror.org/02z9b5492 Institute of Commerce and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коммерции Šø праваWebsiteDirections'),
(25748, 'https://ror.org/0163jwc47', 'en', 1, 'https://ror.org/0163jwc47 Kutafin Moscow State Law University Московский Š³Š¾ŃŃƒŠ“арственный ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Šž. Š•. ŠšŃƒŃ‚Š°Ń„ŠøŠ½Š°'),
(25749, 'https://ror.org/05xp8d869', 'en', 1, 'https://ror.org/05xp8d869 Bibliographical Society of America'),
(25750, 'https://ror.org/01cj4g713', 'no_lang_code', 1, 'https://ror.org/01cj4g713 Ashiwi Awan Museum and Heritage Center'),
(25751, 'https://ror.org/02fney094', 'en', 1, 'https://ror.org/02fney094 Billerica Public Library'),
(25752, 'https://ror.org/01mz8f913', 'en', 1, 'https://ror.org/01mz8f913 Abbe Museum'),
(25753, 'https://ror.org/05mp05a58', 'en', 1, 'https://ror.org/05mp05a58 Billings Farm & Museum'),
(25754, 'https://ror.org/00fqce595', 'en', 1, 'https://ror.org/00fqce595 Birmingham Civil Rights Institute'),
(25755, 'https://ror.org/030y6zg68', 'en', 1, 'https://ror.org/030y6zg68 Birmingham Museum of Art'),
(25756, 'https://ror.org/05czff141', 'en', 1, 'https://ror.org/05czff141 Birmingham Public Library'),
(25757, 'https://ror.org/027rk0w58', 'en', 1, 'https://ror.org/027rk0w58 Heritage Center of the Union League of Philadelphia'),
(25758, 'https://ror.org/053em4g68', 'en', 1, 'https://ror.org/053em4g68 Anderson Public Library'),
(25759, 'https://ror.org/034m42x03', 'en', 1, 'https://ror.org/034m42x03 Abraham Lincoln Presidential Library Foundation'),
(25760, 'https://ror.org/020y85m88', 'en', 1, 'https://ror.org/020y85m88 Andover Historical Society'),
(25761, 'https://ror.org/01j33wn03', 'en', 1, 'https://ror.org/01j33wn03 Andrew County Museum'),
(25762, 'https://ror.org/05xvq6g12', 'en', 1, 'https://ror.org/05xvq6g12 Ackley Heritage Center'),
(25763, 'https://ror.org/02v7gew56', 'en', 1, 'https://ror.org/02v7gew56 Adair County Historical Society'),
(25764, 'https://ror.org/00fkkrz35', 'en', 1, 'https://ror.org/00fkkrz35 Adirondack Museum'),
(25765, 'https://ror.org/03hgqv564', 'en', 1, 'https://ror.org/03hgqv564 Association of African American Museums'),
(25766, 'https://ror.org/02zm6mf23', 'en', 1, 'https://ror.org/02zm6mf23 Bisbee Mining & Historical Museums'),
(25767, 'https://ror.org/02pxamv84', 'en', 1, 'https://ror.org/02pxamv84 Black Mountain College Museum and Arts Center'),
(25768, 'https://ror.org/04v86ht05', 'en', 1, 'https://ror.org/04v86ht05 The Animas Museum'),
(25769, 'https://ror.org/0440wca55', 'en', 1, 'https://ror.org/0440wca55 Bloomington Public Library'),
(25770, 'https://ror.org/031j5va63', 'en', 1, 'https://ror.org/031j5va63 Blount County Government'),
(25771, 'https://ror.org/02gxh9k41', 'en', 1, 'https://ror.org/02gxh9k41 Bullock Museum'),
(25772, 'https://ror.org/033ajm422', 'en', 1, 'https://ror.org/033ajm422 Boot Hill Museum'),
(25773, 'https://ror.org/02xfdng11', 'en', 1, 'https://ror.org/02xfdng11 Boricua College'),
(25774, 'https://ror.org/00dgmek64', 'en', 1, 'https://ror.org/00dgmek64 Anthology Film Archives'),
(25775, 'https://ror.org/00172cb16', 'en', 1, 'https://ror.org/00172cb16 Boston Athenaeum'),
(25776, 'https://ror.org/01khmmn16', 'en', 1, 'https://ror.org/01khmmn16 Boston Latin Academy'),
(25777, 'https://ror.org/00n5y3d41', 'en', 1, 'https://ror.org/00n5y3d41 Boston Public Library'),
(25778, 'https://ror.org/00r6f6s13', 'en', 1, 'https://ror.org/00r6f6s13 Bostonian Society'),
(25779, 'https://ror.org/00mmgjm27', 'en', 1, 'https://ror.org/00mmgjm27 Museum of Boulder'),
(25780, 'https://ror.org/0571tcv43', 'en', 1, 'https://ror.org/0571tcv43 Alabama Department of Archives and History'),
(25781, 'https://ror.org/017wcen79', 'en', 1, 'https://ror.org/017wcen79 Alabama Public Library Service'),
(25782, 'https://ror.org/02vd4ns12', 'en', 1, 'https://ror.org/02vd4ns12 Warren County Public Library'),
(25783, 'https://ror.org/01c2m5m96', 'en', 1, 'https://ror.org/01c2m5m96 Alaska State Library'),
(25784, 'https://ror.org/02wajwy78', 'en', 1, 'https://ror.org/02wajwy78 Brazos Valley Museum of Natural History'),
(25785, 'https://ror.org/001wq6b70', 'en', 1, 'https://ror.org/001wq6b70 Appalachian Mountain Club'),
(25786, 'https://ror.org/02e6yym45', 'en', 1, 'https://ror.org/02e6yym45 Apprend Foundation'),
(25787, 'https://ror.org/03ew6av42', 'en', 1, 'https://ror.org/03ew6av42 Arab Community Center for Economic and Social Services'),
(25788, 'https://ror.org/03k4a4h69', 'en', 1, 'https://ror.org/03k4a4h69 Brigham City Library'),
(25789, 'https://ror.org/045cem663', 'en', 1, 'https://ror.org/045cem663 Albany Institute of History & Art'),
(25790, 'https://ror.org/03ss0k162', 'en', 1, 'https://ror.org/03ss0k162 Aldrich Public Library'),
(25791, 'https://ror.org/031mwx454', 'en', 1, 'https://ror.org/031mwx454 Brigham City Museum-Gallery'),
(25792, 'https://ror.org/04rwm8k47', 'en', 1, 'https://ror.org/04rwm8k47 Bronx County Historical Society'),
(25793, 'https://ror.org/00rpbm450', 'en', 1, 'https://ror.org/00rpbm450 Bronx Museum of the Arts'),
(25794, 'https://ror.org/01j8m3g31', 'en', 1, 'https://ror.org/01j8m3g31 Brookings Public Library'),
(25795, 'https://ror.org/03rhsqw80', 'en', 1, 'https://ror.org/03rhsqw80 Alexandria Museum of Art'),
(25796, 'https://ror.org/0596j8n35', 'en', 1, 'https://ror.org/0596j8n35 Brookline Public Schools'),
(25797, 'https://ror.org/05fpqxw78', 'en', 1, 'https://ror.org/05fpqxw78 Brooklyn Museum'),
(25798, 'https://ror.org/00xngee30', 'en', 1, 'https://ror.org/00xngee30 Alice Lloyd College'),
(25799, 'https://ror.org/023ra7e85', 'en', 1, 'https://ror.org/023ra7e85 Allen Public Library'),
(25800, 'https://ror.org/05tha3a95', 'en', 1, 'https://ror.org/05tha3a95 Allentown Art Museum'),
(25801, 'https://ror.org/0513d6k55', 'en', 1, 'https://ror.org/0513d6k55 Allentown Public Library'),
(25802, 'https://ror.org/04yvwfh57', 'en', 1, 'https://ror.org/04yvwfh57 Alpena Community College'),
(25803, 'https://ror.org/00sftz254', 'en', 1, 'https://ror.org/00sftz254 Archaeological Conservancy'),
(25804, 'https://ror.org/04vfzt688', 'en', 1, 'https://ror.org/04vfzt688 Archaeological Institute of America'),
(25805, 'https://ror.org/01aa0f770', 'en', 1, 'https://ror.org/01aa0f770 Archaeology Society of Staten Island'),
(25806, 'https://ror.org/02vjjqw44', 'en', 1, 'https://ror.org/02vjjqw44 Broward County Library'),
(25807, 'https://ror.org/02vdy9f86', 'en', 1, 'https://ror.org/02vdy9f86 Broward Public Library Foundation'),
(25808, 'https://ror.org/00gpcst68', 'en', 1, 'https://ror.org/00gpcst68 Brunswick-Glynn County Library'),
(25809, 'https://ror.org/030p1h383', 'en', 1, 'https://ror.org/030p1h383 Buckingham Browne & Nichols'),
(25810, 'https://ror.org/01nf6pr96', 'en', 1, 'https://ror.org/01nf6pr96 Buffalo History Museum'),
(25811, 'https://ror.org/04q5kpf78', 'no_lang_code', 1, 'https://ror.org/04q5kpf78 Archimedia Workshop (United States)'),
(25812, 'https://ror.org/01pf23a70', 'en', 1, 'https://ror.org/01pf23a70 YIVO Institute for Jewish Research'),
(25813, 'https://ror.org/02bkc9a40', 'en', 1, 'https://ror.org/02bkc9a40 American Academy of Religion'),
(25814, 'https://ror.org/0351dnm69', 'en', 1, 'https://ror.org/0351dnm69 American Antiquarian Society'),
(25815, 'https://ror.org/04239hb35', 'en', 1, 'https://ror.org/04239hb35 Arena Stage'),
(25816, 'https://ror.org/05fp00270', 'en', 1, 'https://ror.org/05fp00270 American Architectural Foundation'),
(25817, 'https://ror.org/01b5krq60', 'en', 1, 'https://ror.org/01b5krq60 Arhoolie Foundation'),
(25818, 'https://ror.org/02m5g6p84', 'en', 1, 'https://ror.org/02m5g6p84 Arizona Historical Society'),
(25819, 'https://ror.org/00g3q3z36', 'en', 1, 'https://ror.org/00g3q3z36 Arizona State Museum'),
(25820, 'https://ror.org/05eyk3846', 'en', 1, 'https://ror.org/05eyk3846 American Association for State and Local History');
INSERT INTO `rors` VALUES
(25821, 'https://ror.org/04mtaww72', 'en', 1, 'https://ror.org/04mtaww72 Kansas Oil Museum'),
(25822, 'https://ror.org/036d5d592', 'en', 1, 'https://ror.org/036d5d592 Butte-Silver Bow Public Archives'),
(25823, 'https://ror.org/01m5bd961', 'en', 1, 'https://ror.org/01m5bd961 Cabell County Public Library'),
(25824, 'https://ror.org/019jcfv68', 'en', 1, 'https://ror.org/019jcfv68 American Bar Association Fund for Justice and Education'),
(25825, 'https://ror.org/005qzg609', 'en', 1, 'https://ror.org/005qzg609 University of Arkansas Community College at Batesville'),
(25826, 'https://ror.org/000rmbn42', 'en', 1, 'https://ror.org/000rmbn42 American Conservatory Theater'),
(25827, 'https://ror.org/044g8hq51', 'en', 1, 'https://ror.org/044g8hq51 American Council on the Teaching of Foreign Languages'),
(25828, 'https://ror.org/042kvvy70', 'en', 1, 'https://ror.org/042kvvy70 American Councils for International Education'),
(25829, 'https://ror.org/05xq38r07', 'en', 1, 'https://ror.org/05xq38r07 Calcasieu Parish Public Library'),
(25830, 'https://ror.org/03f31yy77', 'en', 1, 'https://ror.org/03f31yy77 California African American Museum'),
(25831, 'https://ror.org/01mmcf932', 'en', 1, 'https://ror.org/01mmcf932 California College of the Arts'),
(25832, 'https://ror.org/00qgfa553', 'en', 1, 'https://ror.org/00qgfa553 California Historical Society'),
(25833, 'https://ror.org/01kqsbg21', 'en', 1, 'https://ror.org/01kqsbg21 American Federation of Arts'),
(25834, 'https://ror.org/024e4df17', 'en', 1, 'https://ror.org/024e4df17 California Institute of the Arts Instituto de Artes de California'),
(25835, 'https://ror.org/01drxfn09', 'en', 1, 'https://ror.org/01drxfn09 American Film Institute'),
(25836, 'https://ror.org/04xgmcn83', 'en', 1, 'https://ror.org/04xgmcn83 American Folklore Society'),
(25837, 'https://ror.org/0496rd968', 'en', 1, 'https://ror.org/0496rd968 California State Railroad Museum'),
(25838, 'https://ror.org/04hks3g45', 'en', 1, 'https://ror.org/04hks3g45 Arkansas Museum of Discovery'),
(25839, 'https://ror.org/01ayynt22', 'en', 1, 'https://ror.org/01ayynt22 Calvert Marine Museum'),
(25840, 'https://ror.org/0118mmr39', 'en', 1, 'https://ror.org/0118mmr39 Institute for American Indian Studies'),
(25841, 'https://ror.org/04n7td094', 'en', 1, 'https://ror.org/04n7td094 Calvin Coolidge Presidential Foundation'),
(25842, 'https://ror.org/022j0r779', 'en', 1, 'https://ror.org/022j0r779 American Institute for Conservation of Historic & Artistic Works'),
(25843, 'https://ror.org/016xtkd46', 'en', 1, 'https://ror.org/016xtkd46 Cambridge Arts Council'),
(25844, 'https://ror.org/03s513359', 'en', 1, 'https://ror.org/03s513359 American Institute for Maghrib Studies'),
(25845, 'https://ror.org/00vsh5s78', 'en', 1, 'https://ror.org/00vsh5s78 Arts and Science Center for Southeast Arkansas'),
(25846, 'https://ror.org/016w0gt88', 'en', 1, 'https://ror.org/016w0gt88 American Institute for Yemeni Studies'),
(25847, 'https://ror.org/00p61n467', 'en', 1, 'https://ror.org/00p61n467 Cambridge Public School'),
(25848, 'https://ror.org/00jenrw75', 'en', 1, 'https://ror.org/00jenrw75 American Jewish Archives'),
(25849, 'https://ror.org/00rgtms46', 'en', 1, 'https://ror.org/00rgtms46 American Jewish Committee'),
(25850, 'https://ror.org/01egc7v56', 'en', 1, 'https://ror.org/01egc7v56 Camden County Historical Society'),
(25851, 'https://ror.org/04829c483', 'en', 1, 'https://ror.org/04829c483 Asian American Asian Research Institute'),
(25852, 'https://ror.org/01qp4wa34', 'en', 1, 'https://ror.org/01qp4wa34 Asian Art Museum'),
(25853, 'https://ror.org/050058296', 'en', 1, 'https://ror.org/050058296 Wake County Government'),
(25854, 'https://ror.org/01feqhy89', 'en', 1, 'https://ror.org/01feqhy89 Campbell Center for Historic Preservation Studies'),
(25855, 'https://ror.org/0276taz87', 'en', 1, 'https://ror.org/0276taz87 Association for Computers and the Humanities'),
(25856, 'https://ror.org/00vd44543', 'en', 1, 'https://ror.org/00vd44543 American Jewish Historical Society'),
(25857, 'https://ror.org/04haawm62', 'en', 1, 'https://ror.org/04haawm62 Association for Core Texts and Courses'),
(25858, 'https://ror.org/05pv2w409', 'en', 1, 'https://ror.org/05pv2w409 American Numismatic Society'),
(25859, 'https://ror.org/00kd3pe49', 'en', 1, 'https://ror.org/00kd3pe49 Association for Documentary Editing'),
(25860, 'https://ror.org/008phw744', 'en', 1, 'https://ror.org/008phw744 Canal Corridor Association'),
(25861, 'https://ror.org/00f2nse09', 'en', 1, 'https://ror.org/00f2nse09 Cape Ann Museum'),
(25862, 'https://ror.org/03r5vbq81', 'en', 1, 'https://ror.org/03r5vbq81 Cape Cod Museum of Natural History'),
(25863, 'https://ror.org/03ya6rh87', 'en', 1, 'https://ror.org/03ya6rh87 American Repertory Theater'),
(25864, 'https://ror.org/05hs3x327', 'en', 1, 'https://ror.org/05hs3x327 American Research Institute in Turkey'),
(25865, 'https://ror.org/00qjr8462', 'en', 1, 'https://ror.org/00qjr8462 Association for Public Art'),
(25866, 'https://ror.org/018av9q43', 'en', 1, 'https://ror.org/018av9q43 Association for Recorded Sound Collections'),
(25867, 'https://ror.org/05mk2v788', 'en', 1, 'https://ror.org/05mk2v788 American Scandinavian Foundation'),
(25868, 'https://ror.org/007y61a09', 'en', 1, 'https://ror.org/007y61a09 Carbon County Museum'),
(25869, 'https://ror.org/0435nmp91', 'en', 1, 'https://ror.org/0435nmp91 Preservation Virginia'),
(25870, 'https://ror.org/04v0eyc78', 'en', 1, 'https://ror.org/04v0eyc78 Carlsbad City Library'),
(25871, 'https://ror.org/00zvja711', 'en', 1, 'https://ror.org/00zvja711 Carlyle House Historic Park'),
(25872, 'https://ror.org/05ftpbf89', 'en', 1, 'https://ror.org/05ftpbf89 Carmel Clay Public Library'),
(25873, 'https://ror.org/02jaw4a32', 'en', 1, 'https://ror.org/02jaw4a32 Carnegie Council for Ethics in International Affairs'),
(25874, 'https://ror.org/05mvafw22', 'en', 1, 'https://ror.org/05mvafw22 Association for the Study of African American Life and History'),
(25875, 'https://ror.org/029bnc353', 'en', 1, 'https://ror.org/029bnc353 American Shakespeare Center'),
(25876, 'https://ror.org/02a7s0q69', 'en', 1, 'https://ror.org/02a7s0q69 American Swedish Historical Museum'),
(25877, 'https://ror.org/0262acg06', 'en', 1, 'https://ror.org/0262acg06 American Textile History Museum'),
(25878, 'https://ror.org/05wx6v148', 'en', 1, 'https://ror.org/05wx6v148 Carnegie Hall'),
(25879, 'https://ror.org/05gechm64', 'en', 1, 'https://ror.org/05gechm64 Carnegie Library of Pittsburgh'),
(25880, 'https://ror.org/026wj5m95', 'en', 1, 'https://ror.org/026wj5m95 South Carolina Association of Public Library Administration'),
(25881, 'https://ror.org/037t55w20', 'en', 1, 'https://ror.org/037t55w20 American Writers Museum'),
(25882, 'https://ror.org/04rhkrb43', 'en', 1, 'https://ror.org/04rhkrb43 Caroline County Public Library'),
(25883, 'https://ror.org/017qmqm77', 'en', 1, 'https://ror.org/017qmqm77 Americas Society'),
(25884, 'https://ror.org/00nsejf36', 'no_lang_code', 1, 'https://ror.org/00nsejf36 Museum of Casa Grande'),
(25885, 'https://ror.org/0282stx37', 'en', 1, 'https://ror.org/0282stx37 Aston Magna Foundation'),
(25886, 'https://ror.org/03rcc6237', 'en', 1, 'https://ror.org/03rcc6237 Athenaeum of Philadelphia'),
(25887, 'https://ror.org/011bzep68', 'en', 1, 'https://ror.org/011bzep68 Catticus Corporation'),
(25888, 'https://ror.org/00nzbtt45', 'en', 1, 'https://ror.org/00nzbtt45 Cazenovia College'),
(25889, 'https://ror.org/03zkv1382', 'en', 1, 'https://ror.org/03zkv1382 Amherst Pelham Regional School District'),
(25890, 'https://ror.org/05k3n5g92', 'en', 1, 'https://ror.org/05k3n5g92 Amistad Research Center'),
(25891, 'https://ror.org/00ap81005', 'en', 1, 'https://ror.org/00ap81005 Amon Carter Museum of American Art'),
(25892, 'https://ror.org/04xg2vm10', 'en', 1, 'https://ror.org/04xg2vm10 Atlanta History Center'),
(25893, 'https://ror.org/044wjg020', 'en', 1, 'https://ror.org/044wjg020 Atlanta-Fulton County Library System'),
(25894, 'https://ror.org/015f81693', 'en', 1, 'https://ror.org/015f81693 Atlantic Council'),
(25895, 'https://ror.org/00afkg479', 'en', 1, 'https://ror.org/00afkg479 Anchorage Museum'),
(25896, 'https://ror.org/034ghyw40', 'en', 1, 'https://ror.org/034ghyw40 Ancient Biblical Manuscript Center'),
(25897, 'https://ror.org/04x7zja85', 'en', 1, 'https://ror.org/04x7zja85 Cedar Rapids Museum of Art'),
(25898, 'https://ror.org/01f3q9353', 'en', 1, 'https://ror.org/01f3q9353 Cedar Rapids Public Library'),
(25899, 'https://ror.org/000cpw023', 'en', 1, 'https://ror.org/000cpw023 Philadelphia History Museum'),
(25900, 'https://ror.org/03w0tq079', 'en', 1, 'https://ror.org/03w0tq079 Colonial Williamsburg Foundation'),
(25901, 'https://ror.org/009ryyp22', 'en', 1, 'https://ror.org/009ryyp22 Auburn City Schools'),
(25902, 'https://ror.org/04swndt45', 'en', 1, 'https://ror.org/04swndt45 History Colorado Center'),
(25903, 'https://ror.org/01c2b7840', 'en', 1, 'https://ror.org/01c2b7840 Center for Anti-Slavery Studies'),
(25904, 'https://ror.org/01f42q428', 'en', 1, 'https://ror.org/01f42q428 Center for Asian American Media'),
(25905, 'https://ror.org/05654m147', 'en', 1, 'https://ror.org/05654m147 Center for Civic Education'),
(25906, 'https://ror.org/016mg6236', 'en', 1, 'https://ror.org/016mg6236 Columbia County Historical Society'),
(25907, 'https://ror.org/04m8vnf64', 'en', 1, 'https://ror.org/04m8vnf64 Historical Society of Washington'),
(25908, 'https://ror.org/01sczx256', 'en', 1, 'https://ror.org/01sczx256 Athens Regional Library System'),
(25909, 'https://ror.org/024w08x16', 'en', 1, 'https://ror.org/024w08x16 Columbia River Maritime Museum'),
(25910, 'https://ror.org/00qkjg138', 'en', 1, 'https://ror.org/00qkjg138 Center for Independent Documentary'),
(25911, 'https://ror.org/04e45e551', 'en', 1, 'https://ror.org/04e45e551 Columbia State Community College'),
(25912, 'https://ror.org/05e2tqm03', 'en', 1, 'https://ror.org/05e2tqm03 Center for Puppetry Arts'),
(25913, 'https://ror.org/00cqxck67', 'en', 1, 'https://ror.org/00cqxck67 Center for Southern Folklore'),
(25914, 'https://ror.org/04cns1483', 'en', 1, 'https://ror.org/04cns1483 Center for the Study of Community Colleges'),
(25915, 'https://ror.org/02srtfa27', 'en', 1, 'https://ror.org/02srtfa27 B&O Railroad Museum'),
(25916, 'https://ror.org/01p48z987', 'en', 1, 'https://ror.org/01p48z987 Columbus Museum of Art'),
(25917, 'https://ror.org/057jstn88', 'en', 1, 'https://ror.org/057jstn88 Center for the Study of the Presidency and Congress'),
(25918, 'https://ror.org/02dhkpg18', 'no_lang_code', 1, 'https://ror.org/02dhkpg18 Center for Visual Communication (United States)'),
(25919, 'https://ror.org/02hgdn135', 'en', 1, 'https://ror.org/02hgdn135 Center for Wooden Boats'),
(25920, 'https://ror.org/045a0wr43', 'en', 1, 'https://ror.org/045a0wr43 Comanche Nation College'),
(25921, 'https://ror.org/045c2a463', 'en', 1, 'https://ror.org/045c2a463 Comanche National Museum and Cultural Center'),
(25922, 'https://ror.org/05vqg2q68', 'en', 1, 'https://ror.org/05vqg2q68 Balboa Art Conservation Center'),
(25923, 'https://ror.org/01qvty264', 'en', 1, 'https://ror.org/01qvty264 Central Agency for Jewish Education'),
(25924, 'https://ror.org/01zmykx63', 'en', 1, 'https://ror.org/01zmykx63 Central Arkansas Library System'),
(25925, 'https://ror.org/01w4nn703', 'en', 1, 'https://ror.org/01w4nn703 Central Community College'),
(25926, 'https://ror.org/01pewms44', 'en', 1, 'https://ror.org/01pewms44 Balch Institute for Ethnic Studies'),
(25927, 'https://ror.org/04n6g3874', 'en', 1, 'https://ror.org/04n6g3874 Central Rappahannock Regional Library'),
(25928, 'https://ror.org/0220wbr36', 'en', 1, 'https://ror.org/0220wbr36 Community College Humanities Association'),
(25929, 'https://ror.org/0113dxj57', 'en', 1, 'https://ror.org/0113dxj57 Baltimore City Life Museums'),
(25930, 'https://ror.org/00d18mr25', 'en', 1, 'https://ror.org/00d18mr25 Chabot College'),
(25931, 'https://ror.org/04cyzbs29', 'en', 1, 'https://ror.org/04cyzbs29 Chaffey College'),
(25932, 'https://ror.org/00qacgj85', 'en', 1, 'https://ror.org/00qacgj85 Chappaqua Central School District'),
(25933, 'https://ror.org/03rb61q14', 'en', 1, 'https://ror.org/03rb61q14 Baltimore Museum of Art'),
(25934, 'https://ror.org/00rfz2d73', 'en', 1, 'https://ror.org/00rfz2d73 Baltimore Museum of Industry'),
(25935, 'https://ror.org/00sx18m30', 'en', 1, 'https://ror.org/00sx18m30 Charles River Museum of Industry & Innovation'),
(25936, 'https://ror.org/0116q3567', 'en', 1, 'https://ror.org/0116q3567 Community Renewal Society'),
(25937, 'https://ror.org/01w9gwk84', 'en', 1, 'https://ror.org/01w9gwk84 Charleston County Public Library'),
(25938, 'https://ror.org/018gqjy33', 'en', 1, 'https://ror.org/018gqjy33 Charleston Museum'),
(25939, 'https://ror.org/011p6p421', 'en', 1, 'https://ror.org/011p6p421 Barrington Area Historical Society'),
(25940, 'https://ror.org/04ncvza93', 'en', 1, 'https://ror.org/04ncvza93 Charlotte-Mecklenburg Historic Landmarks Commission'),
(25941, 'https://ror.org/00t4hq413', 'en', 1, 'https://ror.org/00t4hq413 Barrington Public Library'),
(25942, 'https://ror.org/00k9d9279', 'en', 1, 'https://ror.org/00k9d9279 Bass Museum'),
(25943, 'https://ror.org/01ysajg40', 'en', 1, 'https://ror.org/01ysajg40 Conception Seminary College'),
(25944, 'https://ror.org/04bj64g74', 'en', 1, 'https://ror.org/04bj64g74 Cherokee Heritage Center'),
(25945, 'https://ror.org/013164r34', 'en', 1, 'https://ror.org/013164r34 Chesapeake Bay Maritime Museum'),
(25946, 'https://ror.org/01131jt26', 'en', 1, 'https://ror.org/01131jt26 Chester County Historical Society'),
(25947, 'https://ror.org/05c1a5t19', 'en', 1, 'https://ror.org/05c1a5t19 Chesterfield County Public Library'),
(25948, 'https://ror.org/00wswag56', 'en', 1, 'https://ror.org/00wswag56 Concord Museum'),
(25949, 'https://ror.org/05e1s8h08', 'en', 1, 'https://ror.org/05e1s8h08 Chicago Architecture Foundation'),
(25950, 'https://ror.org/035m5dp49', 'en', 1, 'https://ror.org/035m5dp49 Concord Free Public Library'),
(25951, 'https://ror.org/03qpq3659', 'en', 1, 'https://ror.org/03qpq3659 Peninsula Library System'),
(25952, 'https://ror.org/055tbsg25', 'en', 1, 'https://ror.org/055tbsg25 Bay Area Radio Drama'),
(25953, 'https://ror.org/04y7f2054', 'en', 1, 'https://ror.org/04y7f2054 Concord Public Schools and Concord-Carlisle Regional School District'),
(25954, 'https://ror.org/01jk54m37', 'en', 1, 'https://ror.org/01jk54m37 WTTW'),
(25955, 'https://ror.org/01h2mws14', 'en', 1, 'https://ror.org/01h2mws14 Chicago Film Archives'),
(25956, 'https://ror.org/05d4cjq55', 'en', 1, 'https://ror.org/05d4cjq55 Congress for the New Urbanism'),
(25957, 'https://ror.org/02cm0sv45', 'en', 1, 'https://ror.org/02cm0sv45 Chicago Filmmakers'),
(25958, 'https://ror.org/00jxh3a14', 'en', 1, 'https://ror.org/00jxh3a14 Chicago Humanities Festival'),
(25959, 'https://ror.org/04d1kkx94', 'en', 1, 'https://ror.org/04d1kkx94 Connecticut Historical Society'),
(25960, 'https://ror.org/05tkaf051', 'en', 1, 'https://ror.org/05tkaf051 Beatrice Public Library'),
(25961, 'https://ror.org/00qcawn35', 'en', 1, 'https://ror.org/00qcawn35 Chicago Metro History Education Center'),
(25962, 'https://ror.org/00w19nh03', 'en', 1, 'https://ror.org/00w19nh03 Biblioteca PĆŗblica de Chicago Chicago Public Library'),
(25963, 'https://ror.org/04h5pm325', 'en', 1, 'https://ror.org/04h5pm325 Children''s Museum of Manhattan'),
(25964, 'https://ror.org/028bh4q69', 'en', 1, 'https://ror.org/028bh4q69 Bell County Museum'),
(25965, 'https://ror.org/05gya9x53', 'en', 1, 'https://ror.org/05gya9x53 Belleville Public Library'),
(25966, 'https://ror.org/04mfba740', 'en', 1, 'https://ror.org/04mfba740 Connecticut State Library'),
(25967, 'https://ror.org/04zvxqj76', 'en', 1, 'https://ror.org/04zvxqj76 Benicia Public Library'),
(25968, 'https://ror.org/0297ekn51', 'en', 1, 'https://ror.org/0297ekn51 Bergenfield Public Library'),
(25969, 'https://ror.org/003e2cn37', 'en', 1, 'https://ror.org/003e2cn37 Chinese Historical Society of America'),
(25970, 'https://ror.org/05bg8js23', 'en', 1, 'https://ror.org/05bg8js23 Conservation Center for Art and Historic Artifacts'),
(25971, 'https://ror.org/01bndk311', 'en', 1, 'https://ror.org/01bndk311 Berkeley Public Library'),
(25972, 'https://ror.org/00c0mqp91', 'en', 1, 'https://ror.org/00c0mqp91 Christian Business Faculty Association'),
(25973, 'https://ror.org/01aqm4b31', 'en', 1, 'https://ror.org/01aqm4b31 Chrysler Museum of Art'),
(25974, 'https://ror.org/0300ggk05', 'en', 1, 'https://ror.org/0300ggk05 Berkshire Community College'),
(25975, 'https://ror.org/00s8wpn62', 'en', 1, 'https://ror.org/00s8wpn62 Consortium of Universities of the Washington Metropolitan Area'),
(25976, 'https://ror.org/00mzm0g64', 'en', 1, 'https://ror.org/00mzm0g64 Berkshire Museum'),
(25977, 'https://ror.org/04nyq6w82', 'en', 1, 'https://ror.org/04nyq6w82 Constitutional Rights Foundation Chicago'),
(25978, 'https://ror.org/01j11yw06', 'en', 1, 'https://ror.org/01j11yw06 ConVida - Popular Arts of the Americas'),
(25979, 'https://ror.org/052q00364', 'en', 1, 'https://ror.org/052q00364 Berkshire Theatre Group'),
(25980, 'https://ror.org/003ajks37', 'en', 1, 'https://ror.org/003ajks37 Bessemer Historical Society'),
(25981, 'https://ror.org/0415bcp90', 'en', 1, 'https://ror.org/0415bcp90 Churchill Centre'),
(25982, 'https://ror.org/048c5qr58', 'en', 1, 'https://ror.org/048c5qr58 Ciesla Foundation'),
(25983, 'https://ror.org/00gpmpm48', 'en', 1, 'https://ror.org/00gpmpm48 Morton Museum'),
(25984, 'https://ror.org/008hty861', 'en', 1, 'https://ror.org/008hty861 Cincinnati Art Museum'),
(25985, 'https://ror.org/01g5vrq32', 'en', 1, 'https://ror.org/01g5vrq32 Cincinnati Fire Museum'),
(25986, 'https://ror.org/05wnc7373', 'en', 1, 'https://ror.org/05wnc7373 Bethel University'),
(25987, 'https://ror.org/05qxr6b81', 'en', 1, 'https://ror.org/05qxr6b81 Bethlehem Area School District'),
(25988, 'https://ror.org/0431sew76', 'en', 1, 'https://ror.org/0431sew76 Copper Queen Library'),
(25989, 'https://ror.org/05mk17154', 'en', 1, 'https://ror.org/05mk17154 Bettendorf Public Library and Information Center'),
(25990, 'https://ror.org/03f82ns94', 'en', 1, 'https://ror.org/03f82ns94 Tippecanoe County Historical Association'),
(25991, 'https://ror.org/00r8vrd74', 'en', 1, 'https://ror.org/00r8vrd74 Poplar Forest'),
(25992, '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'),
(25993, 'https://ror.org/0015fn754', 'en', 1, 'https://ror.org/0015fn754 Corpus Christi Public Libraries'),
(25994, 'https://ror.org/04nwnby06', 'en', 1, 'https://ror.org/04nwnby06 Bayshore Center at Bivalve'),
(25995, 'https://ror.org/00f7p4623', 'en', 1, 'https://ror.org/00f7p4623 City Lore the New York Center for Urban Culture'),
(25996, 'https://ror.org/02drbka58', 'en', 1, 'https://ror.org/02drbka58 Council of the Southern Mountains'),
(25997, 'https://ror.org/03pa4ph68', 'en', 1, 'https://ror.org/03pa4ph68 City of Greeley Museums'),
(25998, 'https://ror.org/04y1dd550', 'en', 1, 'https://ror.org/04y1dd550 Philadelphia Department of Records'),
(25999, 'https://ror.org/05sqep420', 'en', 1, 'https://ror.org/05sqep420 Claremont Institute'),
(26000, 'https://ror.org/0361pb971', 'en', 1, 'https://ror.org/0361pb971 CuriOdyssey'),
(26001, 'https://ror.org/035tsca78', 'en', 1, 'https://ror.org/035tsca78 Craft Contemporary'),
(26002, 'https://ror.org/047pn4f69', 'en', 1, 'https://ror.org/047pn4f69 San JosƩ Public Library'),
(26003, 'https://ror.org/03p1p7q28', 'en', 1, 'https://ror.org/03p1p7q28 Dance Perspectives Foundation'),
(26004, 'https://ror.org/038mrg284', 'en', 1, 'https://ror.org/038mrg284 Dane County Library Service'),
(26005, 'https://ror.org/01t027h44', 'en', 1, 'https://ror.org/01t027h44 Clark County Museum'),
(26006, 'https://ror.org/020jhxv22', 'en', 1, 'https://ror.org/020jhxv22 Clarksburg-Harrison Public Library'),
(26007, 'https://ror.org/00mxaqt17', 'en', 1, 'https://ror.org/00mxaqt17 Cleveland Community College'),
(26008, 'https://ror.org/05r4ftt49', 'en', 1, 'https://ror.org/05r4ftt49 The Dane G. Hansen Museum'),
(26009, 'https://ror.org/05jbnbs36', 'en', 1, 'https://ror.org/05jbnbs36 Danforth at Framingham State University'),
(26010, 'https://ror.org/030ew6d86', 'en', 1, 'https://ror.org/030ew6d86 Museum of Danish America'),
(26011, 'https://ror.org/05k887869', 'en', 1, 'https://ror.org/05k887869 Cleveland Police Museum'),
(26012, 'https://ror.org/05e1j4h71', 'en', 1, 'https://ror.org/05e1j4h71 Dauphin County Library System'),
(26013, 'https://ror.org/01wx9h016', 'en', 1, 'https://ror.org/01wx9h016 Clinton-Macomb Public Library'),
(26014, 'https://ror.org/04pj3k910', 'no_lang_code', 1, 'https://ror.org/04pj3k910 CultureWorks (United States)'),
(26015, 'https://ror.org/01a1mkv71', 'en', 1, 'https://ror.org/01a1mkv71 Dayton Art Institute'),
(26016, 'https://ror.org/03ffqk344', 'en', 1, 'https://ror.org/03ffqk344 Coastal Georgia Historical Society'),
(26017, 'https://ror.org/002gjns90', 'en', 1, 'https://ror.org/002gjns90 Collaborative for Educational Services'),
(26018, 'https://ror.org/01qa01910', 'en', 1, 'https://ror.org/01qa01910 Currier Museum of Art'),
(26019, 'https://ror.org/02sxwqc72', 'en', 1, 'https://ror.org/02sxwqc72 Decorah Public Library'),
(26020, 'https://ror.org/051v0c125', 'en', 1, 'https://ror.org/051v0c125 DeCordova Sculpture Park and Museum'),
(26021, 'https://ror.org/031yzhe66', 'en', 1, 'https://ror.org/031yzhe66 Cyprus American Archaeological Research Institute'),
(26022, 'https://ror.org/00gh5bn60', 'en', 1, 'https://ror.org/00gh5bn60 Deep Springs College'),
(26023, 'https://ror.org/00fxdpg38', 'en', 1, 'https://ror.org/00fxdpg38 Defiant Requiem Foundation'),
(26024, 'https://ror.org/02f5k4n77', 'en', 1, 'https://ror.org/02f5k4n77 DeKalb County Public Library'),
(26025, 'https://ror.org/03chx4004', 'en', 1, 'https://ror.org/03chx4004 DeKalb Library Foundation'),
(26026, 'https://ror.org/04nxx3204', 'en', 1, 'https://ror.org/04nxx3204 Delaware Agricultural Museum'),
(26027, 'https://ror.org/009jymh91', 'en', 1, 'https://ror.org/009jymh91 Dallas Heritage Village'),
(26028, 'https://ror.org/04x72rc30', 'en', 1, 'https://ror.org/04x72rc30 Delaware Art Museum'),
(26029, 'https://ror.org/047a39447', 'en', 1, 'https://ror.org/047a39447 Fayetteville Public Library'),
(26030, 'https://ror.org/006qbbs65', 'en', 1, 'https://ror.org/006qbbs65 Dallas Historical Society'),
(26031, 'https://ror.org/01far4758', 'en', 1, 'https://ror.org/01far4758 Delaware County Historical Association'),
(26032, 'https://ror.org/026r2c210', 'en', 1, 'https://ror.org/026r2c210 Dallas Institute of Humanities and Culture'),
(26033, 'https://ror.org/021tdez87', 'en', 1, 'https://ror.org/021tdez87 Dallas Museum of Art'),
(26034, 'https://ror.org/04arxdw58', 'en', 1, 'https://ror.org/04arxdw58 Delaware Division of Historical and Cultural Affairs'),
(26035, 'https://ror.org/00h4y9r32', 'en', 1, 'https://ror.org/00h4y9r32 Dallas Public Library'),
(26036, 'https://ror.org/01z5b9q11', 'en', 1, 'https://ror.org/01z5b9q11 Dance Notation Bureau'),
(26037, 'https://ror.org/02kgkbv06', 'en', 1, 'https://ror.org/02kgkbv06 Delaware Library Association'),
(26038, 'https://ror.org/01gpjtj97', 'en', 1, 'https://ror.org/01gpjtj97 Delhi Historical Society'),
(26039, 'https://ror.org/02hs3et22', 'en', 1, 'https://ror.org/02hs3et22 Grand View University'),
(26040, 'https://ror.org/011tkrr13', 'en', 1, 'https://ror.org/011tkrr13 Federation of State Humanities Councils'),
(26041, 'https://ror.org/04pjsje19', 'en', 1, 'https://ror.org/04pjsje19 Great Books Foundation'),
(26042, 'https://ror.org/01vwk0k32', 'en', 1, 'https://ror.org/01vwk0k32 John L. Miller Great Neck North High School'),
(26043, 'https://ror.org/026nzdq35', 'no_lang_code', 1, 'https://ror.org/026nzdq35 Feminist Press'),
(26044, 'https://ror.org/03ys01s76', 'en', 1, 'https://ror.org/03ys01s76 Public Media Connect'),
(26045, 'https://ror.org/05tk3y812', 'en', 1, 'https://ror.org/05tk3y812 Denver Art Museum'),
(26046, 'https://ror.org/03tnbmz91', 'en', 1, 'https://ror.org/03tnbmz91 Greater New Orleans Educational Television Foundation'),
(26047, 'https://ror.org/05b2fjs73', 'en', 1, 'https://ror.org/05b2fjs73 Ferguson Library'),
(26048, 'https://ror.org/03rsg0091', 'en', 1, 'https://ror.org/03rsg0091 Greater Southwest Historical Museum'),
(26049, 'https://ror.org/03ah0ss28', 'en', 1, 'https://ror.org/03ah0ss28 Denver Public Library'),
(26050, 'https://ror.org/02gb3y251', 'en', 1, 'https://ror.org/02gb3y251 Denver Seminary'),
(26051, 'https://ror.org/05fscpd23', 'en', 1, 'https://ror.org/05fscpd23 Greenville County Library System'),
(26052, 'https://ror.org/03wevch29', 'en', 1, 'https://ror.org/03wevch29 Grinnell Newburg Community School District'),
(26053, 'https://ror.org/01gq8b646', 'en', 1, 'https://ror.org/01gq8b646 Griot Museum of Black History & Culture'),
(26054, 'https://ror.org/035v8gz14', 'en', 1, 'https://ror.org/035v8gz14 Fifth Maine Regiment Museum'),
(26055, 'https://ror.org/04mdwrg75', 'en', 1, 'https://ror.org/04mdwrg75 Des Moines Art Center'),
(26056, 'https://ror.org/00hzk4n75', 'en', 1, 'https://ror.org/00hzk4n75 WTVS Detroit Public Television'),
(26057, 'https://ror.org/01agfg023', 'en', 1, 'https://ror.org/01agfg023 Detroit Historical Society'),
(26058, 'https://ror.org/05pfgty20', 'en', 1, 'https://ror.org/05pfgty20 Guilderland Public Library'),
(26059, 'https://ror.org/03zfb6x57', 'en', 1, 'https://ror.org/03zfb6x57 Detroit Institute of Arts'),
(26060, 'https://ror.org/05sh1ye34', 'en', 1, 'https://ror.org/05sh1ye34 History Center in Tompkins County'),
(26061, 'https://ror.org/04r8v5797', 'en', 1, 'https://ror.org/04r8v5797 Hagley Museum and Library'),
(26062, 'https://ror.org/018zgez30', 'en', 1, 'https://ror.org/018zgez30 Hammond Castle Museum'),
(26063, 'https://ror.org/059edgr15', 'en', 1, 'https://ror.org/059edgr15 Donnelly College'),
(26064, 'https://ror.org/02kht3n03', 'en', 1, 'https://ror.org/02kht3n03 Fitchburg Art Museum'),
(26065, 'https://ror.org/03w78wk23', 'en', 1, 'https://ror.org/03w78wk23 Duluth Public Library'),
(26066, 'https://ror.org/0239rpj17', 'en', 1, 'https://ror.org/0239rpj17 ImagineIF Libraries'),
(26067, 'https://ror.org/03ag2jv25', 'en', 1, 'https://ror.org/03ag2jv25 Flint Public Library'),
(26068, 'https://ror.org/04a2eet46', 'en', 1, 'https://ror.org/04a2eet46 Duxbury Free Library'),
(26069, 'https://ror.org/0221rj138', 'en', 1, 'https://ror.org/0221rj138 Hanford Mills Museum'),
(26070, 'https://ror.org/02vbwxp10', 'en', 1, 'https://ror.org/02vbwxp10 Dyer Library / Saco Museum'),
(26071, 'https://ror.org/0016yxd93', 'en', 1, 'https://ror.org/0016yxd93 Early Manuscripts Electronic Library'),
(26072, 'https://ror.org/03q14nt21', 'en', 1, 'https://ror.org/03q14nt21 Harriet Beecher Stowe Center'),
(26073, 'https://ror.org/01xnx1y03', 'en', 1, 'https://ror.org/01xnx1y03 Hartford Seminary'),
(26074, 'https://ror.org/013mrxa54', 'en', 1, 'https://ror.org/013mrxa54 East Baton Rouge Parish Library'),
(26075, 'https://ror.org/015t2rt70', 'en', 1, 'https://ror.org/015t2rt70 East Hampton Historical Society'),
(26076, 'https://ror.org/012752q54', 'en', 1, 'https://ror.org/012752q54 East Meadow Public Library'),
(26077, 'https://ror.org/006v7bf86', 'en', 1, 'https://ror.org/006v7bf86 Harvard University Press'),
(26078, 'https://ror.org/04qpsed22', 'en', 1, 'https://ror.org/04qpsed22 East Tennessee Historical Society'),
(26079, 'https://ror.org/058zc6h57', 'en', 1, 'https://ror.org/058zc6h57 Northwest Museum of Arts and Culture'),
(26080, 'https://ror.org/004tqq928', 'en', 1, 'https://ror.org/004tqq928 Haverford Township Free Library'),
(26081, 'https://ror.org/037wq3107', 'en', 1, 'https://ror.org/037wq3107 Henry Ford Museum'),
(26082, 'https://ror.org/023jtzw61', 'en', 1, 'https://ror.org/023jtzw61 Flowerdew Hundred Foundation'),
(26083, 'https://ror.org/04mz77s40', 'en', 1, 'https://ror.org/04mz77s40 El Paso Museum of History'),
(26084, 'https://ror.org/054b9aj21', 'en', 1, 'https://ror.org/054b9aj21 El Paso Public Library'),
(26085, 'https://ror.org/01gevtd65', 'en', 1, 'https://ror.org/01gevtd65 Electronic Literature Organization'),
(26086, 'https://ror.org/039qk4d23', 'en', 1, 'https://ror.org/039qk4d23 Ella Sharp Museum'),
(26087, 'https://ror.org/03vw0pp31', 'en', 1, 'https://ror.org/03vw0pp31 Forbes Library'),
(26088, 'https://ror.org/04bk45c77', 'en', 1, 'https://ror.org/04bk45c77 Ford''s Theatre'),
(26089, 'https://ror.org/00et8e744', 'en', 1, 'https://ror.org/00et8e744 English Speaking Union'),
(26090, 'https://ror.org/01704t520', 'en', 1, 'https://ror.org/01704t520 Foreign Policy Association'),
(26091, 'https://ror.org/01a9q0j25', 'en', 1, 'https://ror.org/01a9q0j25 Enoch Pratt Free Library'),
(26092, 'https://ror.org/01wfs6j95', 'en', 1, 'https://ror.org/01wfs6j95 U.S. Association of Former Members of Congress'),
(26093, 'https://ror.org/04qreff64', 'en', 1, 'https://ror.org/04qreff64 Episcopal Academy'),
(26094, 'https://ror.org/013ye6h36', 'en', 1, 'https://ror.org/013ye6h36 Fort Bend Museum'),
(26095, 'https://ror.org/0374ybm50', 'en', 1, 'https://ror.org/0374ybm50 Erie Canal Museum'),
(26096, 'https://ror.org/0451e0x59', 'en', 1, 'https://ror.org/0451e0x59 Episcopal Diocese of Pennsylvania'),
(26097, 'https://ror.org/035b5r707', 'en', 1, 'https://ror.org/035b5r707 Essex County College'),
(26098, 'https://ror.org/04mtx7258', 'en', 1, 'https://ror.org/04mtx7258 Peabody Essex Museum'),
(26099, 'https://ror.org/02z7csx58', 'en', 1, 'https://ror.org/02z7csx58 Hawaiian Historical Society'),
(26100, 'https://ror.org/02pky3s76', 'en', 1, 'https://ror.org/02pky3s76 Heard Museum'),
(26101, 'https://ror.org/00bn59524', 'en', 1, 'https://ror.org/00bn59524 Ethics and Public Policy Center'),
(26102, 'https://ror.org/05y3p3k12', 'en', 1, 'https://ror.org/05y3p3k12 Hebrew College'),
(26103, 'https://ror.org/04rgv1h10', 'en', 1, 'https://ror.org/04rgv1h10 Hebrew Immigrant Aid Society'),
(26104, 'https://ror.org/05dap7r06', 'en', 1, 'https://ror.org/05dap7r06 Fort Collins Museum of Discovery'),
(26105, 'https://ror.org/00wnxn610', 'en', 1, 'https://ror.org/00wnxn610 ETV Endowment of South Carolina'),
(26106, 'https://ror.org/034cgwt87', 'en', 1, 'https://ror.org/034cgwt87 Eugene O''Neill Theater Center'),
(26107, 'https://ror.org/00w8pm168', 'en', 1, 'https://ror.org/00w8pm168 Everson Museum of Art'),
(26108, 'https://ror.org/016ty7524', 'en', 1, 'https://ror.org/016ty7524 Fort Mason Center'),
(26109, 'https://ror.org/02jwrhw59', 'en', 1, 'https://ror.org/02jwrhw59 Excelsior Springs Museum & Archives'),
(26110, 'https://ror.org/00fpr8c10', 'en', 1, 'https://ror.org/00fpr8c10 Fort Ross Conservancy'),
(26111, 'https://ror.org/044mjsc46', 'en', 1, 'https://ror.org/044mjsc46 Facing History and Ourselves'),
(26112, 'https://ror.org/03evnn851', 'en', 1, 'https://ror.org/03evnn851 Fairbanks Museum and Planetarium'),
(26113, 'https://ror.org/00vhkhz92', 'en', 1, 'https://ror.org/00vhkhz92 Fairbanks North Star Borough Library'),
(26114, 'https://ror.org/02bx4hs93', 'en', 1, 'https://ror.org/02bx4hs93 Buffalo and Erie County Public Library'),
(26115, 'https://ror.org/014mbfe79', 'en', 1, 'https://ror.org/014mbfe79 Fairfax County Park Authority'),
(26116, 'https://ror.org/02wyv1n88', 'en', 1, 'https://ror.org/02wyv1n88 Fairfax County Public Library'),
(26117, 'https://ror.org/022v6g479', 'en', 1, 'https://ror.org/022v6g479 Henderson County Public Library'),
(26118, 'https://ror.org/04nrt0320', 'en', 1, 'https://ror.org/04nrt0320 Fairfax County Public Schools'),
(26119, 'https://ror.org/04rnnme19', 'en', 1, 'https://ror.org/04rnnme19 Fairfield County District Library'),
(26120, 'https://ror.org/02x0s3f55', 'en', 1, 'https://ror.org/02x0s3f55 Fauquier County Public Library'),
(26121, 'https://ror.org/00d54pv09', 'en', 1, 'https://ror.org/00d54pv09 Henry Morrison Flagler Museum'),
(26122, 'https://ror.org/03a2jdj94', 'en', 1, 'https://ror.org/03a2jdj94 Heritage Museums and Gardens'),
(26123, 'https://ror.org/04byvwj54', 'en', 1, 'https://ror.org/04byvwj54 Heritage Preservation'),
(26124, 'https://ror.org/02peanc96', 'en', 1, 'https://ror.org/02peanc96 Four County Library System'),
(26125, 'https://ror.org/00wez3666', 'en', 1, 'https://ror.org/00wez3666 Joslyn Art Museum'),
(26126, 'https://ror.org/05nwf9e60', 'en', 1, 'https://ror.org/05nwf9e60 Journey Through Hallowed Ground Partnership'),
(26127, 'https://ror.org/04arqjy59', 'en', 1, 'https://ror.org/04arqjy59 Hermann Grima House'),
(26128, 'https://ror.org/028t56857', 'en', 1, 'https://ror.org/028t56857 Magnes Collection of Jewish Art and Life'),
(26129, 'https://ror.org/00fx6sd20', 'en', 1, 'https://ror.org/00fx6sd20 Frank Lloyd Wright Trust'),
(26130, 'https://ror.org/05tmh5a95', 'en', 1, 'https://ror.org/05tmh5a95 Hermitage Museum'),
(26131, 'https://ror.org/03mf58h04', 'en', 1, 'https://ror.org/03mf58h04 Roosevelt Institute'),
(26132, 'https://ror.org/02ydm7k86', 'en', 1, 'https://ror.org/02ydm7k86 Hawaii State Judiciary'),
(26133, 'https://ror.org/00pj6qg65', 'en', 1, 'https://ror.org/00pj6qg65 Franklin County Historical and Museum Society'),
(26134, 'https://ror.org/04g449w06', 'en', 1, 'https://ror.org/04g449w06 Escuela Juilliard Juilliard School'),
(26135, 'https://ror.org/02ym28w56', 'en', 1, 'https://ror.org/02ym28w56 Fraunces Tavern Museum'),
(26136, 'https://ror.org/05vp0jk15', 'en', 1, 'https://ror.org/05vp0jk15 Juneau Public Libraries'),
(26137, 'https://ror.org/004rj5351', 'en', 1, 'https://ror.org/004rj5351 Herndon Home Museum'),
(26138, 'https://ror.org/02dndas03', 'en', 1, 'https://ror.org/02dndas03 Kandiyohi County Historical Society'),
(26139, 'https://ror.org/01gdhra86', 'en', 1, 'https://ror.org/01gdhra86 Hewlett Woodmere Public Library'),
(26140, 'https://ror.org/010zm1770', 'en', 1, 'https://ror.org/010zm1770 Kansas City Museum'),
(26141, 'https://ror.org/01cn1fp33', 'en', 1, 'https://ror.org/01cn1fp33 Hibbing Public Library'),
(26142, 'https://ror.org/05kka2g19', 'en', 1, 'https://ror.org/05kka2g19 John W. Higgins Armory'),
(26143, 'https://ror.org/025ze7j58', 'en', 1, 'https://ror.org/025ze7j58 Kansas City, Kansas Public Library'),
(26144, 'https://ror.org/05c0t8x83', 'en', 1, 'https://ror.org/05c0t8x83 Frederick Community College'),
(26145, 'https://ror.org/05rqmax46', 'en', 1, 'https://ror.org/05rqmax46 High Desert Museum'),
(26146, 'https://ror.org/00h6mz496', 'en', 1, 'https://ror.org/00h6mz496 High Museum of Art'),
(26147, 'https://ror.org/02wsqx654', 'en', 1, 'https://ror.org/02wsqx654 Highland Park Public Library'),
(26148, 'https://ror.org/0515swv60', 'en', 1, 'https://ror.org/0515swv60 Kartemquin Films'),
(26149, 'https://ror.org/054t85f27', 'en', 1, 'https://ror.org/054t85f27 Hingham Public Library'),
(26150, 'https://ror.org/03cyyx472', 'no_lang_code', 1, 'https://ror.org/03cyyx472 Katahdin Productions'),
(26151, 'https://ror.org/01h37vy24', 'en', 1, 'https://ror.org/01h37vy24 Wake County Public Libraries'),
(26152, 'https://ror.org/009fpea76', 'en', 1, 'https://ror.org/009fpea76 Katonah Museum of Art'),
(26153, 'https://ror.org/02ts93992', 'en', 1, 'https://ror.org/02ts93992 Kaw Nation'),
(26154, 'https://ror.org/04d5c0f12', 'en', 1, 'https://ror.org/04d5c0f12 Hispanic Society of America'),
(26155, 'https://ror.org/00pcrgz71', 'en', 1, 'https://ror.org/00pcrgz71 Historians of Netherlandish Art'),
(26156, 'https://ror.org/00n3kap46', 'en', 1, 'https://ror.org/00n3kap46 KCRW Foundation'),
(26157, 'https://ror.org/048tnx725', 'en', 1, 'https://ror.org/048tnx725 Biblioteca PĆŗblica de Filadelfia Free Library of Philadelphia'),
(26158, 'https://ror.org/048yye826', 'en', 1, 'https://ror.org/048yye826 Keene Public Library'),
(26159, 'https://ror.org/016ezn892', 'en', 1, 'https://ror.org/016ezn892 Freedom Trail Foundation'),
(26160, 'https://ror.org/042sm6918', 'en', 1, 'https://ror.org/042sm6918 Historic Annapolis Foundation'),
(26161, 'https://ror.org/0033tjv05', 'en', 1, 'https://ror.org/0033tjv05 Freeport Art Museum'),
(26162, 'https://ror.org/058h4f948', 'no_lang_code', 1, 'https://ror.org/058h4f948 Keeneland Association'),
(26163, 'https://ror.org/00q709v87', 'en', 1, 'https://ror.org/00q709v87 Kellogg Community College'),
(26164, 'https://ror.org/036s8jv96', 'en', 1, 'https://ror.org/036s8jv96 Historic Charleston Foundation'),
(26165, 'https://ror.org/0326y8887', 'en', 1, 'https://ror.org/0326y8887 Kent Memorial Library'),
(26166, 'https://ror.org/0233vx723', 'en', 1, 'https://ror.org/0233vx723 Freeport Historical Society'),
(26167, 'https://ror.org/03a5bb278', 'en', 1, 'https://ror.org/03a5bb278 Kent State University, East Liverpool'),
(26168, 'https://ror.org/01wcf4732', 'en', 1, 'https://ror.org/01wcf4732 Kenton County Public Library'),
(26169, 'https://ror.org/03hc6qf46', 'en', 1, 'https://ror.org/03hc6qf46 Historic Cherry Hill'),
(26170, 'https://ror.org/04c3gsq51', 'en', 1, 'https://ror.org/04c3gsq51 Frelinghuysen Morris House And Studio'),
(26171, 'https://ror.org/02em0x482', 'en', 1, 'https://ror.org/02em0x482 Kentucky Department for Libraries and Archives'),
(26172, 'https://ror.org/05q2ap552', 'en', 1, 'https://ror.org/05q2ap552 Historic Hawaii Foundation'),
(26173, 'https://ror.org/0038d9d86', 'en', 1, 'https://ror.org/0038d9d86 Kentucky Historical Society'),
(26174, 'https://ror.org/00s817895', 'en', 1, 'https://ror.org/00s817895 French-American Foundation'),
(26175, 'https://ror.org/05hcd4f69', 'en', 1, 'https://ror.org/05hcd4f69 Historic Lexington Foundation'),
(26176, 'https://ror.org/00hcj4147', 'en', 1, 'https://ror.org/00hcj4147 Kidscommons Columbus Community Children''s Museum'),
(26177, 'https://ror.org/01w6bk780', 'en', 1, 'https://ror.org/01w6bk780 Historic New England'),
(26178, 'https://ror.org/01txxd494', 'en', 1, 'https://ror.org/01txxd494 French Cultural Center'),
(26179, 'https://ror.org/05e3v4r58', 'en', 1, 'https://ror.org/05e3v4r58 Kirkwood Public Library'),
(26180, 'https://ror.org/05f321t07', 'en', 1, 'https://ror.org/05f321t07 Kitchen Sisters Productions'),
(26181, 'https://ror.org/01dnm0v11', 'en', 1, 'https://ror.org/01dnm0v11 Historic Northampton'),
(26182, 'https://ror.org/04dr3nj83', 'en', 1, 'https://ror.org/04dr3nj83 Fresno County Public Library'),
(26183, 'https://ror.org/00avk7342', 'en', 1, 'https://ror.org/00avk7342 Friends of Fellows Riverside Gardens'),
(26184, 'https://ror.org/00whryr74', 'en', 1, 'https://ror.org/00whryr74 Knox County Public Library'),
(26185, 'https://ror.org/047hk4n08', 'en', 1, 'https://ror.org/047hk4n08 Koahnic Broadcast Corporation'),
(26186, 'https://ror.org/0287pc187', 'en', 1, 'https://ror.org/0287pc187 Mount Auburn Cemetery'),
(26187, 'https://ror.org/04n3hjx90', 'en', 1, 'https://ror.org/04n3hjx90 Association for Slavic East European and Eurasian Studies'),
(26188, 'https://ror.org/04k5ae675', 'en', 1, 'https://ror.org/04k5ae675 Friends of Peralta Hacienda Historical Park'),
(26189, 'https://ror.org/01f4b0a81', 'en', 1, 'https://ror.org/01f4b0a81 Friends of the Saint Paul Public Library'),
(26190, 'https://ror.org/00h8svb48', 'en', 1, 'https://ror.org/00h8svb48 Fruitlands Museum'),
(26191, 'https://ror.org/0393qmm36', 'en', 1, 'https://ror.org/0393qmm36 Fuller Craft Museum'),
(26192, 'https://ror.org/02vme4x02', 'no_lang_code', 1, 'https://ror.org/02vme4x02 HistoryMiami'),
(26193, 'https://ror.org/00sx9nz72', 'en', 1, 'https://ror.org/00sx9nz72 American Council for Southern Asian Art'),
(26194, 'https://ror.org/022ef1r75', 'en', 1, 'https://ror.org/022ef1r75 Delaware Historical Society'),
(26195, 'https://ror.org/05j23np60', 'en', 1, 'https://ror.org/05j23np60 Galesburg Public Library'),
(26196, 'https://ror.org/05n41yg77', 'en', 1, 'https://ror.org/05n41yg77 Historical Society of Frankford'),
(26197, 'https://ror.org/05at4t633', 'en', 1, 'https://ror.org/05at4t633 Historical Society of Pennsylvania'),
(26198, 'https://ror.org/0491jx134', 'en', 1, 'https://ror.org/0491jx134 Garfield County Libraries'),
(26199, 'https://ror.org/00pkb2403', 'en', 1, 'https://ror.org/00pkb2403 Historical Society of Rockland County'),
(26200, 'https://ror.org/02a9gfy77', 'en', 1, 'https://ror.org/02a9gfy77 Gaston County Public Library'),
(26201, 'https://ror.org/05n0nb142', 'en', 1, 'https://ror.org/05n0nb142 FamilySearch'),
(26202, 'https://ror.org/0058h2h62', 'en', 1, 'https://ror.org/0058h2h62 Museum of History & Industry'),
(26203, 'https://ror.org/03271bg65', 'en', 1, 'https://ror.org/03271bg65 General John A Logan Museum'),
(26204, 'https://ror.org/04a1ctn52', 'en', 1, 'https://ror.org/04a1ctn52 General Lew Wallace Study and Museum'),
(26205, 'https://ror.org/05tnbbj36', 'en', 1, 'https://ror.org/05tnbbj36 Geneva Historical Society'),
(26206, 'https://ror.org/0444rfc43', 'en', 1, 'https://ror.org/0444rfc43 George C Marshall Foundation'),
(26207, 'https://ror.org/00x481437', 'en', 1, 'https://ror.org/00x481437 George Eastman House'),
(26208, 'https://ror.org/04fr5jq93', 'en', 1, 'https://ror.org/04fr5jq93 Georgetown County Library'),
(26209, 'https://ror.org/0425ee430', 'en', 1, 'https://ror.org/0425ee430 Kona Historical Society'),
(26210, 'https://ror.org/005kyzk28', 'en', 1, 'https://ror.org/005kyzk28 Kurt Weill Foundation for Music'),
(26211, 'https://ror.org/018nbkm47', 'en', 1, 'https://ror.org/018nbkm47 L. C. Bates Museum'),
(26212, 'https://ror.org/05hm3gb11', 'en', 1, 'https://ror.org/05hm3gb11 Talbot Historical Society'),
(26213, 'https://ror.org/01xmbc541', 'en', 1, 'https://ror.org/01xmbc541 Lafayette Science Museum'),
(26214, 'https://ror.org/0148bwv84', 'en', 1, 'https://ror.org/0148bwv84 Lafayette Public Library'),
(26215, 'https://ror.org/046zty610', 'en', 1, 'https://ror.org/046zty610 Lake County Public Library'),
(26216, 'https://ror.org/05grcng38', 'en', 1, 'https://ror.org/05grcng38 Lake Region State College'),
(26217, 'https://ror.org/04tj7ta70', 'en', 1, 'https://ror.org/04tj7ta70 Historical Society of Western Pennsylvania'),
(26218, 'https://ror.org/01awa7g66', 'en', 1, 'https://ror.org/01awa7g66 Lakeland College'),
(26219, 'https://ror.org/05wh3vf38', 'en', 1, 'https://ror.org/05wh3vf38 HistoryMakers'),
(26220, 'https://ror.org/01mp0jc41', 'en', 1, 'https://ror.org/01mp0jc41 Language Conservancy'),
(26221, 'https://ror.org/04q6vjy48', 'en', 1, 'https://ror.org/04q6vjy48 Holyoke Public Library'),
(26222, 'https://ror.org/05vkc0567', 'en', 1, 'https://ror.org/05vkc0567 Language of Dance Centre'),
(26223, 'https://ror.org/00wzhrk33', 'en', 1, 'https://ror.org/00wzhrk33 Pratt Museum'),
(26224, 'https://ror.org/04ce9mt19', 'en', 1, 'https://ror.org/04ce9mt19 Hoover Institution'),
(26225, 'https://ror.org/04y821h28', 'en', 1, 'https://ror.org/04y821h28 Georgia Historical Society'),
(26226, 'https://ror.org/0540ez438', 'en', 1, 'https://ror.org/0540ez438 Laramie County Library'),
(26227, 'https://ror.org/0451vzh57', 'en', 1, 'https://ror.org/0451vzh57 Laramie Plains Museum'),
(26228, 'https://ror.org/05jneht64', 'en', 1, 'https://ror.org/05jneht64 Hot Springs County Museum and Cultural Center'),
(26229, 'https://ror.org/0406kzg67', 'en', 1, 'https://ror.org/0406kzg67 Georgia OKeeffe Museum'),
(26230, 'https://ror.org/03dgxrg98', 'en', 1, 'https://ror.org/03dgxrg98 Germanna Virginia Community College'),
(26231, 'https://ror.org/002h08g67', 'en', 1, 'https://ror.org/002h08g67 Las Vegas Convention and Visitors Authority'),
(26232, 'https://ror.org/007fy8586', 'en', 1, 'https://ror.org/007fy8586 Houghton Lake Public Library'),
(26233, 'https://ror.org/01kr68e52', 'en', 1, 'https://ror.org/01kr68e52 Germantown Historical Society'),
(26234, 'https://ror.org/04ma34w27', 'en', 1, 'https://ror.org/04ma34w27 Latah County Historical Society'),
(26235, 'https://ror.org/00qb4ds53', 'en', 1, 'https://ror.org/00qb4ds53 Getty Research Institute'),
(26236, 'https://ror.org/05dd5tz10', 'en', 1, 'https://ror.org/05dd5tz10 Gibbes Museum of Art'),
(26237, 'https://ror.org/04q1vc929', 'en', 1, 'https://ror.org/04q1vc929 Latin American Youth Center'),
(26238, 'https://ror.org/05nh9h876', 'en', 1, 'https://ror.org/05nh9h876 House of the Seven Gables'),
(26239, 'https://ror.org/053k06e94', 'en', 1, 'https://ror.org/053k06e94 Lauren Rogers Museum of Art'),
(26240, 'https://ror.org/02se7pe38', 'en', 1, 'https://ror.org/02se7pe38 League of Women Voters'),
(26241, 'https://ror.org/05j1kzp43', 'en', 1, 'https://ror.org/05j1kzp43 Gilder Lehrman Institute of American History'),
(26242, 'https://ror.org/01yq8nk56', 'en', 1, 'https://ror.org/01yq8nk56 Learning Through an Expanded Arts Program'),
(26243, 'https://ror.org/03gshtw15', 'no_lang_code', 1, 'https://ror.org/03gshtw15 Global Village Media'),
(26244, 'https://ror.org/04qj7fy53', 'en', 1, 'https://ror.org/04qj7fy53 Leavenworth Public Library'),
(26245, 'https://ror.org/043gwkh50', 'en', 1, 'https://ror.org/043gwkh50 Biblioteca PĆŗblica de Houston Houston Public Library'),
(26246, 'https://ror.org/010qmx075', 'en', 1, 'https://ror.org/010qmx075 Howard County Library System'),
(26247, 'https://ror.org/04mvvs945', 'en', 1, 'https://ror.org/04mvvs945 Leeds Jane Culbreth Library'),
(26248, 'https://ror.org/05g1rz111', 'en', 1, 'https://ror.org/05g1rz111 Lees McRae College'),
(26249, 'https://ror.org/04dheyn57', 'en', 1, 'https://ror.org/04dheyn57 Hull Lifesaving Museum'),
(26250, 'https://ror.org/0400qtr36', 'en', 1, 'https://ror.org/0400qtr36 Lehigh County Historical Society'),
(26251, 'https://ror.org/0481fx056', 'en', 1, 'https://ror.org/0481fx056 Gold Nugget Museum'),
(26252, 'https://ror.org/04xpe4755', 'en', 1, 'https://ror.org/04xpe4755 Lehman College Art Gallery'),
(26253, 'https://ror.org/02x0vsr17', 'en', 1, 'https://ror.org/02x0vsr17 Grass Roots Art and Community Effort'),
(26254, 'https://ror.org/041kq1b88', 'en', 1, 'https://ror.org/041kq1b88 Lenox Library Association'),
(26255, 'https://ror.org/01k7msp60', 'en', 1, 'https://ror.org/01k7msp60 Leominster Public Library'),
(26256, 'https://ror.org/03znmxh49', 'en', 1, 'https://ror.org/03znmxh49 Grail Movement'),
(26257, 'https://ror.org/03hc2rf16', 'en', 1, 'https://ror.org/03hc2rf16 Metropolitan Indianapolis Public Broadcasting'),
(26258, 'https://ror.org/05xases12', 'en', 1, 'https://ror.org/05xases12 Lepanto Foundation'),
(26259, 'https://ror.org/01qzzz835', 'en', 1, 'https://ror.org/01qzzz835 Levine Museum of the New South'),
(26260, 'https://ror.org/02x8vxm77', 'en', 1, 'https://ror.org/02x8vxm77 Mexic-Arte Museum'),
(26261, 'https://ror.org/02cknsb32', 'en', 1, 'https://ror.org/02cknsb32 WQED'),
(26262, 'https://ror.org/01992n513', 'en', 1, 'https://ror.org/01992n513 Lexington Historical Society'),
(26263, 'https://ror.org/02qq9kc45', 'en', 1, 'https://ror.org/02qq9kc45 Lexington Public Library'),
(26264, 'https://ror.org/01dfsmx55', 'en', 1, 'https://ror.org/01dfsmx55 De Anza College'),
(26265, 'https://ror.org/03bj7cd20', 'en', 1, 'https://ror.org/03bj7cd20 Liberty Memorial'),
(26266, 'https://ror.org/02w982447', 'en', 1, 'https://ror.org/02w982447 Library Company of Philadelphia'),
(26267, 'https://ror.org/05k7kyd84', 'en', 1, 'https://ror.org/05k7kyd84 Library of America'),
(26268, 'https://ror.org/04dsq1c96', 'en', 1, 'https://ror.org/04dsq1c96 Library of Hattiesburg, Petal and Forrest County'),
(26269, 'https://ror.org/04sysb357', 'en', 1, 'https://ror.org/04sysb357 Library of Virginia'),
(26270, 'https://ror.org/05a30nk74', 'en', 1, 'https://ror.org/05a30nk74 Foundation for Lincoln City Libraries'),
(26271, 'https://ror.org/00cz1vp94', 'en', 1, 'https://ror.org/00cz1vp94 Linebaugh Public Library'),
(26272, 'https://ror.org/01h4b7m22', 'en', 1, 'https://ror.org/01h4b7m22 Litchfield Historical Society'),
(26273, 'https://ror.org/050a69869', 'en', 1, 'https://ror.org/050a69869 Little Compton Historical Society'),
(26274, 'https://ror.org/021hrr735', 'en', 1, 'https://ror.org/021hrr735 Huntington Museum of Art'),
(26275, 'https://ror.org/00zc2km17', 'en', 1, 'https://ror.org/00zc2km17 Living History Farms'),
(26276, 'https://ror.org/05ptzyt43', 'en', 1, 'https://ror.org/05ptzyt43 Mexican American Catholic College'),
(26277, 'https://ror.org/043hwa340', 'en', 1, 'https://ror.org/043hwa340 Huntington Theatre Company'),
(26278, 'https://ror.org/022nh8g63', 'en', 1, 'https://ror.org/022nh8g63 Huntsville Museum of Art'),
(26279, 'https://ror.org/04zykg256', 'en', 1, 'https://ror.org/04zykg256 Miami-Dade Public Library System'),
(26280, 'https://ror.org/01jsqmy50', 'en', 1, 'https://ror.org/01jsqmy50 Longmont Museum'),
(26281, 'https://ror.org/025dv5233', 'en', 1, 'https://ror.org/025dv5233 Iberia Parish Library'),
(26282, 'https://ror.org/05x852w19', 'en', 1, 'https://ror.org/05x852w19 Longue Vue House and Gardens'),
(26283, 'https://ror.org/0064m4x84', 'en', 1, 'https://ror.org/0064m4x84 Colorado Heights University'),
(26284, 'https://ror.org/01p68kb80', 'en', 1, 'https://ror.org/01p68kb80 Idaho Department of Parks and Recreation'),
(26285, 'https://ror.org/052xmwh44', 'en', 1, 'https://ror.org/052xmwh44 Idaho Falls Public Library'),
(26286, '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'),
(26287, 'https://ror.org/03xcvt065', 'en', 1, 'https://ror.org/03xcvt065 Los Medanos College'),
(26288, 'https://ror.org/01za4nr66', 'en', 1, 'https://ror.org/01za4nr66 Loudoun County Public Library'),
(26289, 'https://ror.org/006hvb134', 'en', 1, 'https://ror.org/006hvb134 Idaho State Historical Society'),
(26290, 'https://ror.org/020b0tc15', 'en', 1, 'https://ror.org/020b0tc15 Louisiana Library Association'),
(26291, 'https://ror.org/0483p3z75', 'en', 1, 'https://ror.org/0483p3z75 Louisiana Museum Foundation'),
(26292, 'https://ror.org/0223jhh02', 'en', 1, 'https://ror.org/0223jhh02 Louisiana State Museum'),
(26293, 'https://ror.org/02d0jmr12', 'en', 1, 'https://ror.org/02d0jmr12 Louisville Free Public Library'),
(26294, 'https://ror.org/041dv9q58', 'en', 1, 'https://ror.org/041dv9q58 Lourdes University'),
(26295, 'https://ror.org/02s9exq69', 'en', 1, 'https://ror.org/02s9exq69 Midwest Art Conservation Center'),
(26296, 'https://ror.org/001ksx577', 'en', 1, 'https://ror.org/001ksx577 Milligan College'),
(26297, 'https://ror.org/05f7ph084', 'en', 1, 'https://ror.org/05f7ph084 Illinois Historic Preservation Agency'),
(26298, 'https://ror.org/02t6ppt32', 'en', 1, 'https://ror.org/02t6ppt32 Milwaukee Art Museum'),
(26299, 'https://ror.org/019xw1562', 'en', 1, 'https://ror.org/019xw1562 Instituto de Arte de MineƔpolis Minneapolis Institute of Arts'),
(26300, 'https://ror.org/02ht85z18', 'en', 1, 'https://ror.org/02ht85z18 Illinois State Historical Society'),
(26301, 'https://ror.org/0246ges37', 'en', 1, 'https://ror.org/0246ges37 Independence Seaport Museum'),
(26302, 'https://ror.org/00avnw427', 'en', 1, 'https://ror.org/00avnw427 Minnesota Historical Society');
INSERT INTO `rors` VALUES
(26303, 'https://ror.org/010299218', 'en', 1, 'https://ror.org/010299218 Minnesota Public Radio'),
(26304, 'https://ror.org/01afz1h27', 'en', 1, 'https://ror.org/01afz1h27 Minnesota State Community and Technical College'),
(26305, 'https://ror.org/040vydp62', 'en', 1, 'https://ror.org/040vydp62 Mint Museum'),
(26306, 'https://ror.org/00rn8t694', 'en', 1, 'https://ror.org/00rn8t694 Lushootseed Research'),
(26307, 'https://ror.org/00cfc2e66', 'en', 1, 'https://ror.org/00cfc2e66 Mission Inn Foundation'),
(26308, 'https://ror.org/054b7a787', 'en', 1, 'https://ror.org/054b7a787 Mississippi Public Broadcasting'),
(26309, 'https://ror.org/03rc8sv47', 'en', 1, 'https://ror.org/03rc8sv47 Lutheran Archives Center at Philadelphia'),
(26310, 'https://ror.org/0060bz664', 'en', 1, 'https://ror.org/0060bz664 Mississippi Department of Archives and History'),
(26311, 'https://ror.org/0210srm80', 'en', 1, 'https://ror.org/0210srm80 Lutheran School of Theology at Chicago'),
(26312, 'https://ror.org/056zvg634', 'en', 1, 'https://ror.org/056zvg634 Independent Production Fund'),
(26313, 'https://ror.org/02ymwej51', 'en', 1, 'https://ror.org/02ymwej51 Lyman Museum'),
(26314, 'https://ror.org/04w97d535', 'en', 1, 'https://ror.org/04w97d535 Independent Filmmaker Project'),
(26315, 'https://ror.org/03vvasf30', 'en', 1, 'https://ror.org/03vvasf30 Lyndon Baines Johnson Foundation'),
(26316, 'https://ror.org/02bkjet92', 'en', 1, 'https://ror.org/02bkjet92 Mississippi Library Commission'),
(26317, 'https://ror.org/04heq0532', 'en', 1, 'https://ror.org/04heq0532 Missoula Public Library'),
(26318, 'https://ror.org/059fpzy63', 'en', 1, 'https://ror.org/059fpzy63 Muriel L. MacGregor Charitable Trust'),
(26319, 'https://ror.org/056q8mg35', 'en', 1, 'https://ror.org/056q8mg35 Missouri Historical Society'),
(26320, 'https://ror.org/03yr0v123', 'en', 1, 'https://ror.org/03yr0v123 Mackinac State Historic Parks'),
(26321, 'https://ror.org/04d4xzq24', 'en', 1, 'https://ror.org/04d4xzq24 Indiana Library Federation'),
(26322, 'https://ror.org/0008aac48', 'en', 1, 'https://ror.org/0008aac48 Confederated Tribes of Warm Springs'),
(26323, 'https://ror.org/02jpbb755', 'en', 1, 'https://ror.org/02jpbb755 Mobile Public Library'),
(26324, 'https://ror.org/00ag8ns14', 'en', 1, 'https://ror.org/00ag8ns14 Modern Language Association'),
(26325, 'https://ror.org/03rmb5927', 'en', 1, 'https://ror.org/03rmb5927 Poetry Foundation'),
(26326, 'https://ror.org/02bk4fc75', 'en', 1, 'https://ror.org/02bk4fc75 International Conference for the Study of Political Thought'),
(26327, 'https://ror.org/01k073v05', 'en', 1, 'https://ror.org/01k073v05 Macon County History Museum'),
(26328, 'https://ror.org/04x0kmc95', 'en', 1, 'https://ror.org/04x0kmc95 Indianapolis Museum of Art'),
(26329, 'https://ror.org/00h9f3r10', 'en', 1, 'https://ror.org/00h9f3r10 Historic Macon Foundation'),
(26330, 'https://ror.org/030c9z695', 'en', 1, 'https://ror.org/030c9z695 Madison Museum of Contemporary Art'),
(26331, 'https://ror.org/0308w0t08', 'en', 1, 'https://ror.org/0308w0t08 Institute for Architecture and Urban Studies'),
(26332, 'https://ror.org/02sxhaw47', 'en', 1, 'https://ror.org/02sxhaw47 YWCA Madison'),
(26333, 'https://ror.org/00m9qmh56', 'en', 1, 'https://ror.org/00m9qmh56 Moffatt-Ladd House and Garden'),
(26334, 'https://ror.org/05yayh717', 'en', 1, 'https://ror.org/05yayh717 Maiden Voyage Productions'),
(26335, 'https://ror.org/05p70qs58', 'en', 1, 'https://ror.org/05p70qs58 Maine Classical Association'),
(26336, 'https://ror.org/05xdt2n12', 'en', 1, 'https://ror.org/05xdt2n12 Walter Elwood Museum'),
(26337, 'https://ror.org/0369c2s29', 'en', 1, 'https://ror.org/0369c2s29 Maine Historical Society'),
(26338, 'https://ror.org/000hf9438', 'en', 1, 'https://ror.org/000hf9438 Monmouth Museum'),
(26339, 'https://ror.org/03t3xs666', 'en', 1, 'https://ror.org/03t3xs666 Institute for Historical Study'),
(26340, 'https://ror.org/03vfdas15', 'en', 1, 'https://ror.org/03vfdas15 Maine Library Association'),
(26341, 'https://ror.org/03vp0e929', 'en', 1, 'https://ror.org/03vp0e929 Monroe County History Center'),
(26342, 'https://ror.org/0277k6k46', 'en', 1, 'https://ror.org/0277k6k46 Maine Maritime Museum'),
(26343, 'https://ror.org/02jf4jr88', 'en', 1, 'https://ror.org/02jf4jr88 Montana Historical Society'),
(26344, 'https://ror.org/03zy1r264', 'en', 1, 'https://ror.org/03zy1r264 Montclair Art Museum'),
(26345, 'https://ror.org/02qxynb76', 'en', 1, 'https://ror.org/02qxynb76 Montgomery County Historical Society'),
(26346, 'https://ror.org/053zwkn78', 'en', 1, 'https://ror.org/053zwkn78 Montgomery County-Norristown Public Library'),
(26347, 'https://ror.org/00tnt9w66', 'en', 1, 'https://ror.org/00tnt9w66 Montpelier Foundation'),
(26348, 'https://ror.org/0464k6747', 'en', 1, 'https://ror.org/0464k6747 Maine State Archives'),
(26349, 'https://ror.org/00vetxt84', 'en', 1, 'https://ror.org/00vetxt84 Maine State Museum'),
(26350, 'https://ror.org/01yapab09', 'en', 1, 'https://ror.org/01yapab09 Moravian Music Foundation'),
(26351, 'https://ror.org/05d3sbc55', 'en', 1, 'https://ror.org/05d3sbc55 Morris College'),
(26352, 'https://ror.org/01phypy63', 'en', 1, 'https://ror.org/01phypy63 Motlow State Community College'),
(26353, 'https://ror.org/04yz5fm13', 'en', 1, 'https://ror.org/04yz5fm13 Mount Ida College'),
(26354, 'https://ror.org/03t0van71', 'en', 1, 'https://ror.org/03t0van71 Makah Cultural and Research Center'),
(26355, 'https://ror.org/00mjyx438', 'en', 1, 'https://ror.org/00mjyx438 Mount Vernon Hotel Museum & Garden'),
(26356, 'https://ror.org/01jaj0217', 'en', 1, 'https://ror.org/01jaj0217 Manchester Historic Association'),
(26357, 'https://ror.org/04fdxfa12', 'en', 1, 'https://ror.org/04fdxfa12 Mangalam Research Center for Buddhist Languages'),
(26358, 'https://ror.org/05r7e6j86', 'en', 1, 'https://ror.org/05r7e6j86 Multnomah County Library'),
(26359, 'https://ror.org/03tmvjq86', 'en', 1, 'https://ror.org/03tmvjq86 Manhattan High School'),
(26360, 'https://ror.org/0390yrq93', 'en', 1, 'https://ror.org/0390yrq93 Mariners'' Museum'),
(26361, 'https://ror.org/03apehb04', 'en', 1, 'https://ror.org/03apehb04 Muncie Public Library'),
(26362, 'https://ror.org/00v8gq385', 'en', 1, 'https://ror.org/00v8gq385 Marist School'),
(26363, 'https://ror.org/01bawjd60', 'en', 1, 'https://ror.org/01bawjd60 Municipal Art Society of New York'),
(26364, 'https://ror.org/01xn8m022', 'en', 1, 'https://ror.org/01xn8m022 Mark Twain House and Museum'),
(26365, 'https://ror.org/028bz2q30', 'en', 1, 'https://ror.org/028bz2q30 Marlboro College'),
(26366, 'https://ror.org/03f059y22', 'en', 1, 'https://ror.org/03f059y22 Institute of Andean Studies'),
(26367, 'https://ror.org/01setje54', 'en', 1, 'https://ror.org/01setje54 Institute of Contemporary Art'),
(26368, 'https://ror.org/0003nwf42', 'en', 1, 'https://ror.org/0003nwf42 Martha''s Vineyard Museum'),
(26369, 'https://ror.org/05e30xz71', 'en', 1, 'https://ror.org/05e30xz71 LeRoy Collins Leon County Public Library'),
(26370, 'https://ror.org/00ymx4t37', 'en', 1, 'https://ror.org/00ymx4t37 MUSE Film and Television'),
(26371, 'https://ror.org/05fz3qx12', 'en', 1, 'https://ror.org/05fz3qx12 Institute of Nautical Archaeology'),
(26372, 'https://ror.org/00he2gv62', 'en', 1, 'https://ror.org/00he2gv62 Africa Center'),
(26373, 'https://ror.org/01dw2jw22', 'en', 1, 'https://ror.org/01dw2jw22 National Museum of African Art'),
(26374, 'https://ror.org/01vgnaz04', 'en', 1, 'https://ror.org/01vgnaz04 Carnegie Museum of Art'),
(26375, 'https://ror.org/043spm784', 'en', 1, 'https://ror.org/043spm784 Institute of the Black World'),
(26376, 'https://ror.org/01wj9kt25', 'en', 1, 'https://ror.org/01wj9kt25 Museum of Contemporary Art, Los Angeles'),
(26377, 'https://ror.org/04je1d793', 'en', 1, 'https://ror.org/04je1d793 Institute of the Rockies'),
(26378, 'https://ror.org/04gsm6763', 'en', 1, 'https://ror.org/04gsm6763 Museum of Contemporary Art San Diego'),
(26379, 'https://ror.org/00nsa3x45', 'en', 1, 'https://ror.org/00nsa3x45 Museum of Fine Arts, Boston'),
(26380, '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'),
(26381, 'https://ror.org/05d75ah03', 'en', 1, 'https://ror.org/05d75ah03 International Center of Medieval Art'),
(26382, 'https://ror.org/015es7f77', 'en', 1, 'https://ror.org/015es7f77 Centre international de la photographie Centro internacional de FotografĆ­a International Center of Photography'),
(26383, 'https://ror.org/00ceabv15', 'en', 1, 'https://ror.org/00ceabv15 International Coalition of Sites of Conscience'),
(26384, 'https://ror.org/02p3kxs50', 'en', 1, 'https://ror.org/02p3kxs50 Museum of International Folk Art'),
(26385, 'https://ror.org/00nvmb859', 'en', 1, 'https://ror.org/00nvmb859 International Research & Exchanges Board'),
(26386, 'https://ror.org/019j0kq88', 'en', 1, 'https://ror.org/019j0kq88 International Tennis Hall of Fame'),
(26387, 'https://ror.org/03697kk98', 'en', 1, 'https://ror.org/03697kk98 Intrepid Sea Air & Space Museum'),
(26388, 'https://ror.org/0129z1286', 'en', 1, 'https://ror.org/0129z1286 Ipswich Historical Society'),
(26389, 'https://ror.org/02bf1c960', 'en', 1, 'https://ror.org/02bf1c960 Isabella Stewart Gardner Museum'),
(26390, 'https://ror.org/015mnqg92', 'en', 1, 'https://ror.org/015mnqg92 Italian Cultural Society of Washington D.C.'),
(26391, 'https://ror.org/05cbbv691', 'en', 1, 'https://ror.org/05cbbv691 Martinsburg - Berkeley County Public Libraries'),
(26392, 'https://ror.org/03qef3650', 'en', 1, 'https://ror.org/03qef3650 Michele & Donald D’Amour Museum of Fine Arts'),
(26393, 'https://ror.org/013812419', 'en', 1, 'https://ror.org/013812419 Jack Straw Cultural Center'),
(26394, 'https://ror.org/05ban2t96', 'en', 1, 'https://ror.org/05ban2t96 Jackson County Historical Society'),
(26395, 'https://ror.org/05gzb7v46', 'en', 1, 'https://ror.org/05gzb7v46 Museum of New Mexico Foundation'),
(26396, 'https://ror.org/03c0rtn49', 'en', 1, 'https://ror.org/03c0rtn49 Maryland Historical Society'),
(26397, 'https://ror.org/038h9k518', 'en', 1, 'https://ror.org/038h9k518 Museum of History and Art'),
(26398, 'https://ror.org/04j1sf085', 'en', 1, 'https://ror.org/04j1sf085 Maryland State Archives'),
(26399, 'https://ror.org/04a5aqx80', 'en', 1, 'https://ror.org/04a5aqx80 Museum of Indian Arts and Culture'),
(26400, 'https://ror.org/029w8yh46', 'en', 1, 'https://ror.org/029w8yh46 Jacksonville Public Library'),
(26401, 'https://ror.org/050b5gf77', 'en', 1, 'https://ror.org/050b5gf77 Museum of Photographic Arts'),
(26402, 'https://ror.org/0033vjp52', 'en', 1, 'https://ror.org/0033vjp52 Museum of the Cherokee Indian'),
(26403, 'https://ror.org/054m2gy59', 'en', 1, 'https://ror.org/054m2gy59 Jacques Marchais Center of Tibetan Art'),
(26404, 'https://ror.org/00mct1g07', 'en', 1, 'https://ror.org/00mct1g07 Museum of the City of New York'),
(26405, 'https://ror.org/01rx5pn96', 'en', 1, 'https://ror.org/01rx5pn96 Mashantucket Pequot Museum and Research Center'),
(26406, 'https://ror.org/01f5z6908', 'en', 1, 'https://ror.org/01f5z6908 Massachusetts Archives'),
(26407, 'https://ror.org/01k21s024', 'en', 1, 'https://ror.org/01k21s024 Caldwell West Caldwell Public Schools'),
(26408, 'https://ror.org/0316yxf08', 'en', 1, 'https://ror.org/0316yxf08 Museum of the Gulf Coast'),
(26409, 'https://ror.org/0173s1z72', 'en', 1, 'https://ror.org/0173s1z72 Museum of the Moving Image'),
(26410, 'https://ror.org/0423bpd98', 'en', 1, 'https://ror.org/0423bpd98 James Sprunt Community College'),
(26411, 'https://ror.org/00vx77439', 'en', 1, 'https://ror.org/00vx77439 National Association for Equal Opportunity in Higher Education'),
(26412, 'https://ror.org/01eq17163', 'en', 1, 'https://ror.org/01eq17163 James V Brown Library'),
(26413, 'https://ror.org/03sk68310', 'en', 1, 'https://ror.org/03sk68310 Larz Anderson Auto Museum'),
(26414, 'https://ror.org/01ka28180', 'en', 1, 'https://ror.org/01ka28180 Massachusetts College of Liberal Arts'),
(26415, 'https://ror.org/05knchj06', 'en', 1, 'https://ror.org/05knchj06 National Afro-American Museum and Cultural Center'),
(26416, 'https://ror.org/02rc7w578', 'en', 1, 'https://ror.org/02rc7w578 National Alliance of Black School Educators'),
(26417, 'https://ror.org/02nct1437', 'en', 1, 'https://ror.org/02nct1437 Japanese American National Museum'),
(26418, 'https://ror.org/031rbbf63', 'en', 1, 'https://ror.org/031rbbf63 Japanese American Service Committee'),
(26419, 'https://ror.org/040nnqy18', 'en', 1, 'https://ror.org/040nnqy18 National Baseball Hall of Fame and Museum'),
(26420, 'https://ror.org/017mhpd33', 'en', 1, 'https://ror.org/017mhpd33 Massachusetts Library Association'),
(26421, 'https://ror.org/040pya631', 'en', 1, 'https://ror.org/040pya631 State Library of Massachusetts'),
(26422, 'https://ror.org/018cj0796', 'en', 1, 'https://ror.org/018cj0796 Japanese American Citizens League'),
(26423, 'https://ror.org/03yp2sd38', 'en', 1, 'https://ror.org/03yp2sd38 Massanutten Regional Library'),
(26424, 'https://ror.org/04c16pd38', 'en', 1, 'https://ror.org/04c16pd38 Jeffco Public Schools'),
(26425, 'https://ror.org/02kmhbb12', 'en', 1, 'https://ror.org/02kmhbb12 Mattatuck Museum'),
(26426, 'https://ror.org/037mm8r94', 'en', 1, 'https://ror.org/037mm8r94 National Building Museum'),
(26427, 'https://ror.org/00znvr495', 'en', 1, 'https://ror.org/00znvr495 Mattress Factory'),
(26428, 'https://ror.org/02q22s572', 'en', 1, 'https://ror.org/02q22s572 National Catholic Educational Association'),
(26429, 'https://ror.org/05qk89p66', 'en', 1, 'https://ror.org/05qk89p66 Jefferson Patterson Park and Museum'),
(26430, 'https://ror.org/008vs4b49', 'en', 1, 'https://ror.org/008vs4b49 Maymont Foundation'),
(26431, 'https://ror.org/00j2vzg50', 'en', 1, 'https://ror.org/00j2vzg50 McArthur Public Library'),
(26432, 'https://ror.org/00a2bsk55', 'en', 1, 'https://ror.org/00a2bsk55 Jewish Historical Society of Greater Washington'),
(26433, 'https://ror.org/0456fjb45', 'en', 1, 'https://ror.org/0456fjb45 Jewish Museum'),
(26434, 'https://ror.org/01hvh9s85', 'en', 1, 'https://ror.org/01hvh9s85 Jewish Museum of Maryland'),
(26435, 'https://ror.org/02m3g8h90', 'en', 1, 'https://ror.org/02m3g8h90 National Children''s Museum'),
(26436, 'https://ror.org/02z51gq92', 'en', 1, 'https://ror.org/02z51gq92 National Civil Rights Museum'),
(26437, 'https://ror.org/015zf4p69', 'en', 1, 'https://ror.org/015zf4p69 Jewish Publication Society'),
(26438, 'https://ror.org/01aj86x04', 'en', 1, 'https://ror.org/01aj86x04 National Constitution Center'),
(26439, 'https://ror.org/05fybaw10', 'en', 1, 'https://ror.org/05fybaw10 National Council for History Education'),
(26440, 'https://ror.org/00z6fc259', 'en', 1, 'https://ror.org/00z6fc259 Jewish Theological Seminary'),
(26441, 'https://ror.org/04kn82687', 'en', 1, 'https://ror.org/04kn82687 McLean County Museum of History'),
(26442, 'https://ror.org/02vpqss43', 'en', 1, 'https://ror.org/02vpqss43 Meadville Public Library'),
(26443, 'https://ror.org/0274ane14', 'en', 1, 'https://ror.org/0274ane14 John Carter Brown Library'),
(26444, 'https://ror.org/00jycx546', 'en', 1, 'https://ror.org/00jycx546 John Jermain Memorial Library'),
(26445, 'https://ror.org/04p11wc95', 'en', 1, 'https://ror.org/04p11wc95 National Council for the Traditional Arts'),
(26446, 'https://ror.org/02fyfj503', 'en', 1, 'https://ror.org/02fyfj503 Media Working Group'),
(26447, 'https://ror.org/01rbtc528', 'en', 1, 'https://ror.org/01rbtc528 National Council of La Raza'),
(26448, 'https://ror.org/04zax5940', 'en', 1, 'https://ror.org/04zax5940 National Council on Public History'),
(26449, 'https://ror.org/01mqdq746', 'en', 1, 'https://ror.org/01mqdq746 Johnstown Area Heritage Association'),
(26450, 'https://ror.org/01yarzs52', 'en', 1, 'https://ror.org/01yarzs52 Medici Archive Project'),
(26451, 'https://ror.org/02c1wsz97', 'en', 1, 'https://ror.org/02c1wsz97 National Foundation for Jewish Culture'),
(26452, 'https://ror.org/04a5pdm93', 'no_lang_code', 1, 'https://ror.org/04a5pdm93 GuideStar'),
(26453, 'https://ror.org/04g3e3p90', 'en', 1, 'https://ror.org/04g3e3p90 Medieval Academy of America'),
(26454, 'https://ror.org/01pebx748', 'en', 1, 'https://ror.org/01pebx748 National Farmers Union'),
(26455, 'https://ror.org/05jg3qp42', 'en', 1, 'https://ror.org/05jg3qp42 New York Studio School of Drawing Painting and Sculpture'),
(26456, 'https://ror.org/03bg9er42', 'en', 1, 'https://ror.org/03bg9er42 New York Transit Museum'),
(26457, 'https://ror.org/01rz15025', 'en', 1, 'https://ror.org/01rz15025 New York University Press'),
(26458, 'https://ror.org/01ntn7t82', 'en', 1, 'https://ror.org/01ntn7t82 Newark Public Library'),
(26459, 'https://ror.org/0564x5q33', 'en', 1, 'https://ror.org/0564x5q33 Menaul Historical Library of the Southwest'),
(26460, 'https://ror.org/057q3ez97', 'en', 1, 'https://ror.org/057q3ez97 Newport Art Museum'),
(26461, 'https://ror.org/05wknye49', 'en', 1, 'https://ror.org/05wknye49 Center for Fiction'),
(26462, 'https://ror.org/04jxdd920', 'en', 1, 'https://ror.org/04jxdd920 Newport Beach Public Library'),
(26463, 'https://ror.org/05xyqje95', 'en', 1, 'https://ror.org/05xyqje95 Newport Historical Society'),
(26464, 'https://ror.org/03zcb0w86', 'en', 1, 'https://ror.org/03zcb0w86 Mercer Museum and Fonthill Castle'),
(26465, 'https://ror.org/00rswnr18', 'en', 1, 'https://ror.org/00rswnr18 Newport Public Library'),
(26466, 'https://ror.org/02kr5r375', 'en', 1, 'https://ror.org/02kr5r375 Meridian International Center'),
(26467, 'https://ror.org/01dk2f490', 'en', 1, 'https://ror.org/01dk2f490 Newton Public Schools'),
(26468, 'https://ror.org/03sey0f76', 'en', 1, 'https://ror.org/03sey0f76 National Nordic Museum'),
(26469, 'https://ror.org/03fmejp65', 'en', 1, 'https://ror.org/03fmejp65 Norfolk Academy'),
(26470, 'https://ror.org/05rfp8442', 'en', 1, 'https://ror.org/05rfp8442 Norman Rockwell Museum'),
(26471, 'https://ror.org/00xgkd576', 'en', 1, 'https://ror.org/00xgkd576 Mescalero Apache Tribe'),
(26472, 'https://ror.org/05rvftf63', 'en', 1, 'https://ror.org/05rvftf63 National History Center'),
(26473, 'https://ror.org/00mhtk149', 'en', 1, 'https://ror.org/00mhtk149 National History Day'),
(26474, 'https://ror.org/03syp9w72', 'en', 1, 'https://ror.org/03syp9w72 North Carolina Department of Natural and Cultural Resources'),
(26475, 'https://ror.org/02dq9yd39', 'en', 1, 'https://ror.org/02dq9yd39 North Carolina Museum of History'),
(26476, 'https://ror.org/00r9zdb57', 'en', 1, 'https://ror.org/00r9zdb57 Pueblo of Pojoaque'),
(26477, 'https://ror.org/05sk22f46', 'en', 1, 'https://ror.org/05sk22f46 Mahayana Sutra & Tantra Center'),
(26478, 'https://ror.org/050xprb61', 'en', 1, 'https://ror.org/050xprb61 Pueblo of Zuni'),
(26479, 'https://ror.org/03fgpgg24', 'en', 1, 'https://ror.org/03fgpgg24 Putnam Museum'),
(26480, 'https://ror.org/01cayw543', 'en', 1, 'https://ror.org/01cayw543 North Dakota Superintendent of Public Instruction'),
(26481, 'https://ror.org/02ct4rh41', 'en', 1, 'https://ror.org/02ct4rh41 Biblioteca PĆŗblica de Queens Queens Public Library'),
(26482, 'https://ror.org/03zcd8242', 'en', 1, 'https://ror.org/03zcd8242 Queens Museum'),
(26483, 'https://ror.org/035tbm153', 'en', 1, 'https://ror.org/035tbm153 North Star Museum of Boy Scouting and Girl Scouting'),
(26484, 'https://ror.org/03yezd949', 'en', 1, 'https://ror.org/03yezd949 Quinebaug Valley Community College'),
(26485, 'https://ror.org/01q4jy609', 'en', 1, 'https://ror.org/01q4jy609 Radio America'),
(26486, 'https://ror.org/03emyn761', 'en', 1, 'https://ror.org/03emyn761 Radio Diaries'),
(26487, 'https://ror.org/02mq5h296', 'en', 1, 'https://ror.org/02mq5h296 Communal Societies Association'),
(26488, 'https://ror.org/02vwn4357', 'en', 1, 'https://ror.org/02vwn4357 National Humanities Center'),
(26489, 'https://ror.org/01ct2zf81', 'en', 1, 'https://ror.org/01ct2zf81 North Dakota State Railroad Museum'),
(26490, 'https://ror.org/00kza6883', 'en', 1, 'https://ror.org/00kza6883 National Italian American Foundation'),
(26491, 'https://ror.org/00cwqzv43', 'en', 1, 'https://ror.org/00cwqzv43 Northeast Historic Film'),
(26492, 'https://ror.org/0558rq776', 'en', 1, 'https://ror.org/0558rq776 Ramsey County Historical Society'),
(26493, 'https://ror.org/053bxpc30', 'en', 1, 'https://ror.org/053bxpc30 National Japanese American Historical Society'),
(26494, 'https://ror.org/042v18a02', 'en', 1, 'https://ror.org/042v18a02 Northern Seminary'),
(26495, 'https://ror.org/00dj68t85', 'en', 1, 'https://ror.org/00dj68t85 Bishop John T. Walker National Learning Center'),
(26496, 'https://ror.org/04zxxm138', 'en', 1, 'https://ror.org/04zxxm138 Reading Area Community College'),
(26497, 'https://ror.org/0210z5p53', 'en', 1, 'https://ror.org/0210z5p53 Northern Virginia Regional Park Authority'),
(26498, 'https://ror.org/00jy45w85', 'en', 1, 'https://ror.org/00jy45w85 Northland Community and Technical College'),
(26499, 'https://ror.org/021myjd74', 'en', 1, 'https://ror.org/021myjd74 National Museum of Mexican Art'),
(26500, 'https://ror.org/04981wd25', 'en', 1, 'https://ror.org/04981wd25 Reconstructionist Rabbinical College'),
(26501, 'https://ror.org/02r3m1966', 'en', 1, 'https://ror.org/02r3m1966 National Museum of Wildlife Art'),
(26502, 'https://ror.org/02j123a71', 'en', 1, 'https://ror.org/02j123a71 National Park Foundation'),
(26503, 'https://ror.org/02x8vnm69', 'en', 1, 'https://ror.org/02x8vnm69 Noyes Museum'),
(26504, 'https://ror.org/05bmd4n09', 'en', 1, 'https://ror.org/05bmd4n09 Redwood Library and Athenaeum'),
(26505, 'https://ror.org/04rmm3734', 'en', 1, 'https://ror.org/04rmm3734 National Radio Theater'),
(26506, 'https://ror.org/00656df32', 'en', 1, 'https://ror.org/00656df32 National Society of The Colonial Dames of America'),
(26507, 'https://ror.org/00j11hr96', 'en', 1, 'https://ror.org/00j11hr96 National Symphony Orchestra'),
(26508, 'https://ror.org/055pc7h14', 'en', 1, 'https://ror.org/055pc7h14 New York City Department of Records and Information Services'),
(26509, 'https://ror.org/01qnswy10', 'en', 1, 'https://ror.org/01qnswy10 University Press of Kansas'),
(26510, 'https://ror.org/03bch0x53', 'en', 1, 'https://ror.org/03bch0x53 Oakland Museum of California'),
(26511, 'https://ror.org/021djka98', 'en', 1, 'https://ror.org/021djka98 National Underground Railroad Freedom Center'),
(26512, 'https://ror.org/04b5fcb71', 'en', 1, 'https://ror.org/04b5fcb71 Oakland Public Library'),
(26513, 'https://ror.org/01t085091', 'en', 1, 'https://ror.org/01t085091 Native American Center for the Living Arts'),
(26514, 'https://ror.org/031pz1630', 'no_lang_code', 1, 'https://ror.org/031pz1630 Crawford & Stearns (United States)'),
(26515, 'https://ror.org/0191vmf59', 'en', 1, 'https://ror.org/0191vmf59 Ocean County Library'),
(26516, 'https://ror.org/03x858v16', 'en', 1, 'https://ror.org/03x858v16 Oceanside Public Library'),
(26517, 'https://ror.org/05wx7ah15', 'en', 1, 'https://ror.org/05wx7ah15 Renaissance Society of America'),
(26518, 'https://ror.org/05ak6yg81', 'en', 1, 'https://ror.org/05ak6yg81 Reno County Museum'),
(26519, 'https://ror.org/01ysyyn95', 'en', 1, 'https://ror.org/01ysyyn95 Rensselaer County Historical Society'),
(26520, 'https://ror.org/041gg4s51', 'en', 1, 'https://ror.org/041gg4s51 Natrona County Public Library'),
(26521, 'https://ror.org/00qa31321', 'en', 1, 'https://ror.org/00qa31321 The Ohio State University at Lima'),
(26522, 'https://ror.org/0020vtt98', 'en', 1, 'https://ror.org/0020vtt98 Ohr-O''Keefe Museum Of Art'),
(26523, 'https://ror.org/03chcr159', 'en', 1, 'https://ror.org/03chcr159 Vision Maker Media'),
(26524, 'https://ror.org/02vbtbv10', 'en', 1, 'https://ror.org/02vbtbv10 Oklahoma Christian University'),
(26525, 'https://ror.org/00ca5f112', 'en', 1, 'https://ror.org/00ca5f112 Oklahoma Historical Society'),
(26526, 'https://ror.org/021fekh57', 'en', 1, 'https://ror.org/021fekh57 Rhode Island Black Heritage Society'),
(26527, 'https://ror.org/02g50bf58', 'en', 1, 'https://ror.org/02g50bf58 Natural History Museum of Utah'),
(26528, 'https://ror.org/054q67042', 'en', 1, 'https://ror.org/054q67042 Nebraska State Historical Society'),
(26529, 'https://ror.org/04bzgnv13', 'en', 1, 'https://ror.org/04bzgnv13 Oklahoma Library Association'),
(26530, 'https://ror.org/03texeh34', 'en', 1, 'https://ror.org/03texeh34 State of Rhode Island Office of Library and Information Services'),
(26531, 'https://ror.org/0431j8w40', 'en', 1, 'https://ror.org/0431j8w40 Rhode Island Historical Society'),
(26532, 'https://ror.org/05y9wk989', 'en', 1, 'https://ror.org/05y9wk989 Old Dartmouth Historical Society'),
(26533, 'https://ror.org/033ga7d50', 'en', 1, 'https://ror.org/033ga7d50 Old Independence Regional Museum'),
(26534, 'https://ror.org/01edg5683', 'en', 1, 'https://ror.org/01edg5683 Nevada Department of Tourism and Cultural Affairs'),
(26535, 'https://ror.org/03jj8rb41', 'en', 1, 'https://ror.org/03jj8rb41 Nevada State Library, Archives, and Public Records'),
(26536, 'https://ror.org/00ntmy339', 'en', 1, 'https://ror.org/00ntmy339 New Bedford Whaling Museum'),
(26537, 'https://ror.org/01v4enb76', 'en', 1, 'https://ror.org/01v4enb76 Richard Bland College'),
(26538, 'https://ror.org/02wz4qt92', 'en', 1, 'https://ror.org/02wz4qt92 New Brunswick Free Public Library'),
(26539, 'https://ror.org/04er67t26', 'en', 1, 'https://ror.org/04er67t26 Old Red Museum of Dallas County History and Culture'),
(26540, 'https://ror.org/04zwvmd78', 'en', 1, 'https://ror.org/04zwvmd78 New Castle Historical Society'),
(26541, 'https://ror.org/04v5m9m10', 'en', 1, 'https://ror.org/04v5m9m10 New England Conservatory of Music'),
(26542, 'https://ror.org/03q05qn16', 'en', 1, 'https://ror.org/03q05qn16 Richard I. Bong Veterans Historical Center'),
(26543, 'https://ror.org/05bdemk73', 'en', 1, 'https://ror.org/05bdemk73 Old South Association'),
(26544, 'https://ror.org/051bbhe61', 'en', 1, 'https://ror.org/051bbhe61 Old Stone House'),
(26545, 'https://ror.org/0232btn91', 'en', 1, 'https://ror.org/0232btn91 New England Historic Genealogical Society'),
(26546, 'https://ror.org/04bxdha50', 'en', 1, 'https://ror.org/04bxdha50 New England Quilt Museum'),
(26547, 'https://ror.org/017b2mp08', 'en', 1, 'https://ror.org/017b2mp08 Old Sturbridge Village'),
(26548, 'https://ror.org/02ggacn82', 'en', 1, 'https://ror.org/02ggacn82 New Hampshire Historical Society'),
(26549, 'https://ror.org/05vgwdg09', 'en', 1, 'https://ror.org/05vgwdg09 Richards Free Library'),
(26550, 'https://ror.org/014bfp158', 'en', 1, 'https://ror.org/014bfp158 OASIS Institute'),
(26551, 'https://ror.org/00wzykr41', 'en', 1, 'https://ror.org/00wzykr41 New Hampshire State Library'),
(26552, 'https://ror.org/02fprm943', 'en', 1, 'https://ror.org/02fprm943 Oberlin Heritage Center'),
(26553, 'https://ror.org/05y7mt438', 'en', 1, 'https://ror.org/05y7mt438 Richmond Public Library'),
(26554, 'https://ror.org/04jta8a45', 'en', 1, 'https://ror.org/04jta8a45 Ohio History Connection'),
(26555, 'https://ror.org/014tq2r65', 'en', 1, 'https://ror.org/014tq2r65 Imaginarium of South Texas'),
(26556, 'https://ror.org/04pvpk743', 'en', 1, 'https://ror.org/04pvpk743 University of New Hampshire at Manchester'),
(26557, 'https://ror.org/03e7c0529', 'en', 1, 'https://ror.org/03e7c0529 Ridgewood Public Schools'),
(26558, 'https://ror.org/01e9k5563', 'en', 1, 'https://ror.org/01e9k5563 New Hanover County Public Library'),
(26559, 'https://ror.org/05s1mjj45', 'en', 1, 'https://ror.org/05s1mjj45 Retrospective Index to Music Periodicals'),
(26560, 'https://ror.org/00x7x0z13', 'en', 1, 'https://ror.org/00x7x0z13 New Jersey Community College Consortium For Workforce & Economic Development'),
(26561, 'https://ror.org/00fnehe27', 'en', 1, 'https://ror.org/00fnehe27 Riverside Metropolitan Museum'),
(26562, 'https://ror.org/00sxgks21', 'en', 1, 'https://ror.org/00sxgks21 New Jersey Historical Society'),
(26563, 'https://ror.org/02xbkp909', 'en', 1, 'https://ror.org/02xbkp909 Riverside County Parks'),
(26564, 'https://ror.org/025yf4572', 'en', 1, 'https://ror.org/025yf4572 New Jersey State Library'),
(26565, 'https://ror.org/04bx7h761', 'en', 1, 'https://ror.org/04bx7h761 Museums of Old York'),
(26566, 'https://ror.org/027ngh677', 'en', 1, 'https://ror.org/027ngh677 Roberson Museum and Science Center'),
(26567, 'https://ror.org/055q7hq94', 'en', 1, 'https://ror.org/055q7hq94 New Mexico Commission of Public Records'),
(26568, 'https://ror.org/03w99kr42', 'en', 1, 'https://ror.org/03w99kr42 New Orleans Jazz & Heritage Festival and Foundation'),
(26569, 'https://ror.org/010j1fa26', 'en', 1, 'https://ror.org/010j1fa26 History Center of Olmsted County'),
(26570, 'https://ror.org/030z21q40', 'en', 1, 'https://ror.org/030z21q40 Orleans Parish Civil Clerk of Court'),
(26571, 'https://ror.org/01v6rb042', 'en', 1, 'https://ror.org/01v6rb042 New Orleans Public Library'),
(26572, 'https://ror.org/05y3w6z74', 'en', 1, 'https://ror.org/05y3w6z74 Omaha Public Library'),
(26573, 'https://ror.org/03gqgr248', 'en', 1, 'https://ror.org/03gqgr248 New Rochelle Public Library'),
(26574, 'https://ror.org/0457r1112', 'en', 1, 'https://ror.org/0457r1112 New York City Municipal Archives'),
(26575, 'https://ror.org/00n357243', 'en', 1, 'https://ror.org/00n357243 New York Folklore Society'),
(26576, 'https://ror.org/03xnq6b79', 'en', 1, 'https://ror.org/03xnq6b79 New York State Historical Association'),
(26577, 'https://ror.org/04fmzje57', 'en', 1, 'https://ror.org/04fmzje57 Rare Book School'),
(26578, 'https://ror.org/02afr7y67', 'en', 1, 'https://ror.org/02afr7y67 Onondaga County Public Library'),
(26579, 'https://ror.org/008p8p838', 'en', 1, 'https://ror.org/008p8p838 Ontario County Historical Society'),
(26580, 'https://ror.org/002yd0837', 'en', 1, 'https://ror.org/002yd0837 New York State Office of Parks, Recreation and Historic Preservation'),
(26581, 'https://ror.org/030jhgm36', 'en', 1, 'https://ror.org/030jhgm36 Rappahannock Community College'),
(26582, 'https://ror.org/04xbyac61', 'en', 1, 'https://ror.org/04xbyac61 Danville Community College'),
(26583, 'https://ror.org/041dvv921', 'en', 1, 'https://ror.org/041dvv921 Orange County Library System'),
(26584, 'https://ror.org/037gzsw41', 'en', 1, 'https://ror.org/037gzsw41 Robert S. Peabody Museum of Archaeology'),
(26585, 'https://ror.org/01y9hq132', 'en', 1, 'https://ror.org/01y9hq132 Oregon Historical Society'),
(26586, 'https://ror.org/05fz45v32', 'en', 1, 'https://ror.org/05fz45v32 Boundless Readers'),
(26587, 'https://ror.org/04v55rk33', 'en', 1, 'https://ror.org/04v55rk33 St. Louis Public Schools'),
(26588, 'https://ror.org/01bnbne13', 'en', 1, 'https://ror.org/01bnbne13 Rochester Hills Public Library'),
(26589, 'https://ror.org/00869mm41', 'en', 1, 'https://ror.org/00869mm41 Rochester Historical Society'),
(26590, 'https://ror.org/054j84f79', 'en', 1, 'https://ror.org/054j84f79 St. Louis University High School'),
(26591, 'https://ror.org/05vk02k31', 'en', 1, 'https://ror.org/05vk02k31 St. Lucie County Regional History Center'),
(26592, 'https://ror.org/01rvscc63', 'en', 1, 'https://ror.org/01rvscc63 Ossabaw Island Foundation'),
(26593, 'https://ror.org/03qba2h82', 'en', 1, 'https://ror.org/03qba2h82 Ouachita Parish Public Library'),
(26594, 'https://ror.org/05xdrya09', 'en', 1, 'https://ror.org/05xdrya09 Rock Point Community School'),
(26595, 'https://ror.org/05gb7hz97', 'en', 1, 'https://ror.org/05gb7hz97 Oxnard Public Library'),
(26596, 'https://ror.org/0324psq83', 'en', 1, 'https://ror.org/0324psq83 National Center for Jewish Film'),
(26597, 'https://ror.org/04j14gs18', 'en', 1, 'https://ror.org/04j14gs18 Rockland Memorial Library'),
(26598, 'https://ror.org/01aacw488', 'en', 1, 'https://ror.org/01aacw488 Historic St. Mary’s City Commission'),
(26599, 'https://ror.org/03dwyrh96', 'en', 1, 'https://ror.org/03dwyrh96 Rocky Mount Museum'),
(26600, 'https://ror.org/04q7z3j57', 'en', 1, 'https://ror.org/04q7z3j57 Saint Paul Public Library'),
(26601, 'https://ror.org/04w11h594', 'en', 1, 'https://ror.org/04w11h594 Pacific Science Center'),
(26602, 'https://ror.org/02exm7r59', 'en', 1, 'https://ror.org/02exm7r59 Rokeby Museum'),
(26603, 'https://ror.org/03q5knn53', 'en', 1, 'https://ror.org/03q5knn53 Pacifica Foundation'),
(26604, 'https://ror.org/0500dec37', 'en', 1, 'https://ror.org/0500dec37 Packwood House Museum'),
(26605, 'https://ror.org/02y0s5375', 'en', 1, 'https://ror.org/02y0s5375 Roland Park Country School'),
(26606, 'https://ror.org/009yykm50', 'en', 1, 'https://ror.org/009yykm50 Palm Springs Art Museum'),
(26607, 'https://ror.org/046k2tb30', 'en', 1, 'https://ror.org/046k2tb30 Washington State Board for Community and Technical Colleges'),
(26608, 'https://ror.org/00qqt8p51', 'en', 1, 'https://ror.org/00qqt8p51 Rolling Hills Library'),
(26609, 'https://ror.org/027thw408', 'en', 1, 'https://ror.org/027thw408 Palo Alto Unified School District'),
(26610, 'https://ror.org/03s0h5h67', 'en', 1, 'https://ror.org/03s0h5h67 Panhandle Plains Historical Museum'),
(26611, 'https://ror.org/02gkave86', 'en', 1, 'https://ror.org/02gkave86 Rosenbach Museum and Library'),
(26612, 'https://ror.org/000zjjz42', 'en', 1, 'https://ror.org/000zjjz42 Russell Library'),
(26613, 'https://ror.org/025ycfy09', 'en', 1, 'https://ror.org/025ycfy09 Iowa Department of Cultural Affairs'),
(26614, 'https://ror.org/003pkj597', 'en', 1, 'https://ror.org/003pkj597 State Historical Society of North Dakota'),
(26615, 'https://ror.org/01xq9f254', 'en', 1, 'https://ror.org/01xq9f254 State Legislative Leaders Foundation'),
(26616, 'https://ror.org/00axxxt35', 'en', 1, 'https://ror.org/00axxxt35 Parkway School District'),
(26617, 'https://ror.org/05fzsym71', 'en', 1, 'https://ror.org/05fzsym71 Billings Public Library'),
(26618, 'https://ror.org/03f4hkk83', 'en', 1, 'https://ror.org/03f4hkk83 Rutherford B. Hayes Presidential Center'),
(26619, 'https://ror.org/05f3by596', 'en', 1, 'https://ror.org/05f3by596 Parrish Art Museum'),
(26620, 'https://ror.org/043519573', 'en', 1, 'https://ror.org/043519573 Rutland Free Library'),
(26621, 'https://ror.org/0519z5y48', 'en', 1, 'https://ror.org/0519z5y48 Staten Island Children''s Museum'),
(26622, 'https://ror.org/02cmz8k74', 'en', 1, 'https://ror.org/02cmz8k74 Parsons School of Design'),
(26623, 'https://ror.org/025p05r74', 'en', 1, 'https://ror.org/025p05r74 Sachem Public Library'),
(26624, 'https://ror.org/01pr3g631', 'en', 1, 'https://ror.org/01pr3g631 Staten Island Historical Society'),
(26625, 'https://ror.org/050ky8958', 'en', 1, 'https://ror.org/050ky8958 Stearns History Museum'),
(26626, 'https://ror.org/018cbs791', 'en', 1, 'https://ror.org/018cbs791 Salt Lake City Public Library'),
(26627, 'https://ror.org/059fxrr07', 'en', 1, 'https://ror.org/059fxrr07 Partners for Livable Places'),
(26628, 'https://ror.org/03v2fas56', 'en', 1, 'https://ror.org/03v2fas56 Paul Quinn College'),
(26629, 'https://ror.org/01d1mtx18', 'en', 1, 'https://ror.org/01d1mtx18 Stillwater Public Library'),
(26630, 'https://ror.org/004h6zh49', 'en', 1, 'https://ror.org/004h6zh49 Samuel S. Fleisher Art Memorial'),
(26631, 'https://ror.org/023y0xv72', 'en', 1, 'https://ror.org/023y0xv72 Paul Revere Memorial Association'),
(26632, 'https://ror.org/03jhw8y69', 'en', 1, 'https://ror.org/03jhw8y69 Stockbridge Library Association'),
(26633, 'https://ror.org/02vz8g891', 'en', 1, 'https://ror.org/02vz8g891 San Antonio Museum of Art'),
(26634, 'https://ror.org/00syfh407', 'en', 1, 'https://ror.org/00syfh407 Strawbery Banke Museum'),
(26635, 'https://ror.org/01atxym92', 'en', 1, 'https://ror.org/01atxym92 Peabody Institute Library'),
(26636, 'https://ror.org/0244fjs95', 'en', 1, 'https://ror.org/0244fjs95 San Antonio Public Library'),
(26637, 'https://ror.org/0204dk470', 'en', 1, 'https://ror.org/0204dk470 Stuhr Museum'),
(26638, 'https://ror.org/00zs3p911', 'en', 1, 'https://ror.org/00zs3p911 San Antonio Public Library Foundation'),
(26639, 'https://ror.org/01224kh78', 'en', 1, 'https://ror.org/01224kh78 Sunflower County Library'),
(26640, 'https://ror.org/04j59hx92', 'en', 1, 'https://ror.org/04j59hx92 William Peace University'),
(26641, 'https://ror.org/05hpa0166', 'en', 1, 'https://ror.org/05hpa0166 Pejepscot Historical Society'),
(26642, 'https://ror.org/003nhtz06', 'en', 1, 'https://ror.org/003nhtz06 Pekin Public Library'),
(26643, 'https://ror.org/04phxhf89', 'en', 1, 'https://ror.org/04phxhf89 San Francisco Museum of Modern Art'),
(26644, 'https://ror.org/01qkgph35', 'en', 1, 'https://ror.org/01qkgph35 Pennsbury Manor'),
(26645, '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'),
(26646, 'https://ror.org/005qaye06', 'en', 1, 'https://ror.org/005qaye06 Beaux-arts de pennsylvanie Pennsylvania Academy of the Fine Arts'),
(26647, 'https://ror.org/054ff8869', 'en', 1, 'https://ror.org/054ff8869 San Francisco Symphony'),
(26648, 'https://ror.org/03txa8766', 'en', 1, 'https://ror.org/03txa8766 Supreme Court Historical Society'),
(26649, 'https://ror.org/01jwftv68', 'en', 1, 'https://ror.org/01jwftv68 San Joaquin County Historical Society & Museum'),
(26650, 'https://ror.org/02fcwvm90', 'en', 1, 'https://ror.org/02fcwvm90 Suquamish Museum'),
(26651, 'https://ror.org/00402nc75', 'en', 1, 'https://ror.org/00402nc75 Pennsylvania Historical and Museum Commission'),
(26652, 'https://ror.org/01zzs2082', 'en', 1, 'https://ror.org/01zzs2082 Swedish American Historical Society'),
(26653, 'https://ror.org/02btq3988', 'en', 1, 'https://ror.org/02btq3988 Sweetwater County Historical Museum'),
(26654, 'https://ror.org/02j1b8103', 'en', 1, 'https://ror.org/02j1b8103 San Mateo County History Museum'),
(26655, 'https://ror.org/03a367103', 'en', 1, 'https://ror.org/03a367103 Sandusky Library'),
(26656, 'https://ror.org/01n85yk97', 'en', 1, 'https://ror.org/01n85yk97 Stephen Phillips Memorial Trust House in Salem'),
(26657, 'https://ror.org/02wy0t670', 'en', 1, 'https://ror.org/02wy0t670 Talladega Public Library'),
(26658, 'https://ror.org/00711xr15', 'en', 1, 'https://ror.org/00711xr15 Tallahassee Museum'),
(26659, 'https://ror.org/01y82bt90', 'no_lang_code', 1, 'https://ror.org/01y82bt90 TamƔstslikt Cultural Institute'),
(26660, 'https://ror.org/01563cr83', 'en', 1, 'https://ror.org/01563cr83 Santa Barbara Museum of Art'),
(26661, 'https://ror.org/001jzfx32', 'en', 1, 'https://ror.org/001jzfx32 Santa Barbara Trust for Historic Preservation'),
(26662, 'https://ror.org/01scq9q08', 'no_lang_code', 1, 'https://ror.org/01scq9q08 Tanadgusix (United States)'),
(26663, 'https://ror.org/031eg3302', 'en', 1, 'https://ror.org/031eg3302 Teaneck Public Library'),
(26664, 'https://ror.org/01sg1cf32', 'en', 1, 'https://ror.org/01sg1cf32 Santa Monica Public Library'),
(26665, 'https://ror.org/00aahf144', 'en', 1, 'https://ror.org/00aahf144 Telfair Museum of Art'),
(26666, 'https://ror.org/01jyq0293', 'en', 1, 'https://ror.org/01jyq0293 Tennessee Historical Society'),
(26667, 'https://ror.org/009jm4h46', 'en', 1, 'https://ror.org/009jm4h46 Sara Hightower Regional Library System'),
(26668, 'https://ror.org/00bt5t811', 'en', 1, 'https://ror.org/00bt5t811 Tennessee State Museum'),
(26669, 'https://ror.org/01295by53', 'en', 1, 'https://ror.org/01295by53 Terrebonne Parish Library'),
(26670, 'https://ror.org/04h2cjt54', 'no_lang_code', 1, 'https://ror.org/04h2cjt54 Brookside Museum'),
(26671, 'https://ror.org/0192kva73', 'en', 1, 'https://ror.org/0192kva73 Teton County Library'),
(26672, 'https://ror.org/026g5rw93', 'en', 1, 'https://ror.org/026g5rw93 Pensacola Historical Society'),
(26673, 'https://ror.org/04gbh9h57', 'en', 1, 'https://ror.org/04gbh9h57 Perkins School for Blind'),
(26674, 'https://ror.org/030hvht91', 'en', 1, 'https://ror.org/030hvht91 Texas Folklife Resources'),
(26675, 'https://ror.org/018g81q42', 'en', 1, 'https://ror.org/018g81q42 Comisión Histórica de Texas Texas Historical Commission'),
(26676, 'https://ror.org/02ra15158', 'en', 1, 'https://ror.org/02ra15158 Persian Heritage Foundation'),
(26677, 'https://ror.org/00msaq364', 'en', 1, 'https://ror.org/00msaq364 Sault Ste. Marie Area Public Schools'),
(26678, 'https://ror.org/030wf7z82', 'en', 1, 'https://ror.org/030wf7z82 Texas State Historical Association'),
(26679, 'https://ror.org/04yhjzf92', 'en', 1, 'https://ror.org/04yhjzf92 Savannah College of Art and Design'),
(26680, 'https://ror.org/01s1qps03', 'en', 1, 'https://ror.org/01s1qps03 American Academic Research Institute in Iraq'),
(26681, 'https://ror.org/05077g455', 'en', 1, 'https://ror.org/05077g455 Save Ellis Island'),
(26682, 'https://ror.org/01t588655', 'no_lang_code', 1, 'https://ror.org/01t588655 Theatre for a New Audience'),
(26683, 'https://ror.org/03whgpr22', 'en', 1, 'https://ror.org/03whgpr22 Scarsdale Historical Society'),
(26684, 'https://ror.org/03mnd3q76', 'en', 1, 'https://ror.org/03mnd3q76 Thomas Aquinas College'),
(26685, 'https://ror.org/050041j09', 'en', 1, 'https://ror.org/050041j09 Philadelphia Museum of Art'),
(26686, 'https://ror.org/040yze711', 'en', 1, 'https://ror.org/040yze711 Schenectady County Historical Society'),
(26687, 'https://ror.org/004yhfd32', 'en', 1, 'https://ror.org/004yhfd32 Museum of Innovation and Science'),
(26688, 'https://ror.org/01eqdrh28', 'en', 1, 'https://ror.org/01eqdrh28 Thousand Islands Museum'),
(26689, 'https://ror.org/015ndca91', 'en', 1, 'https://ror.org/015ndca91 Three Village Historical Society'),
(26690, 'https://ror.org/050yj3e54', 'en', 1, 'https://ror.org/050yj3e54 Tohono O''odham Nation'),
(26691, 'https://ror.org/006r53q22', 'en', 1, 'https://ror.org/006r53q22 Tom Lea Institute'),
(26692, 'https://ror.org/05jqxc143', 'en', 1, 'https://ror.org/05jqxc143 School District of Lee County'),
(26693, 'https://ror.org/03xywcv04', 'en', 1, 'https://ror.org/03xywcv04 Phoenix Art Museum'),
(26694, 'https://ror.org/03b3s2n43', 'en', 1, 'https://ror.org/03b3s2n43 Piedmont Community College'),
(26695, 'https://ror.org/02egpvc59', 'en', 1, 'https://ror.org/02egpvc59 Pierce County Library System'),
(26696, 'https://ror.org/03ekmr487', 'en', 1, 'https://ror.org/03ekmr487 Morgan Library and Museum'),
(26697, 'https://ror.org/02fs2ee62', 'en', 1, 'https://ror.org/02fs2ee62 University of Pikeville UniversitƩ de pikeville'),
(26698, 'https://ror.org/000wbnn77', 'en', 1, 'https://ror.org/000wbnn77 Texarkana Regional Arts and Humanities Council'),
(26699, 'https://ror.org/05ddme474', 'en', 1, 'https://ror.org/05ddme474 Tucson Museum of Art'),
(26700, 'https://ror.org/02aq38w28', 'en', 1, 'https://ror.org/02aq38w28 Lackawanna County Library System'),
(26701, 'https://ror.org/016ck0282', 'en', 1, 'https://ror.org/016ck0282 Pima County Public Library'),
(26702, 'https://ror.org/03zyppr86', 'en', 1, 'https://ror.org/03zyppr86 Tulsa City-County Library'),
(26703, 'https://ror.org/04swmc963', 'en', 1, 'https://ror.org/04swmc963 Pilgrim Hall Museum'),
(26704, 'https://ror.org/03ct11z80', 'en', 1, 'https://ror.org/03ct11z80 Scurry County Museum'),
(26705, 'https://ror.org/005mtxn43', 'en', 1, 'https://ror.org/005mtxn43 Tunica Museum'),
(26706, 'https://ror.org/01x7y0t66', 'en', 1, 'https://ror.org/01x7y0t66 Tuscaloosa Public Library'),
(26707, 'https://ror.org/01qg39d38', 'en', 1, 'https://ror.org/01qg39d38 Old Swedes Foundation'),
(26708, 'https://ror.org/01fzwn388', 'no_lang_code', 1, 'https://ror.org/01fzwn388 Józef Piłsudski Institute of America'),
(26709, 'https://ror.org/021wtff78', 'en', 1, 'https://ror.org/021wtff78 Seattle Art Museum'),
(26710, 'https://ror.org/05marek63', 'en', 1, 'https://ror.org/05marek63 Colorado Springs Pioneers Museum'),
(26711, 'https://ror.org/03t7yan60', 'en', 1, 'https://ror.org/03t7yan60 Seattle Public Library'),
(26712, 'https://ror.org/0236zx722', 'no_lang_code', 1, 'https://ror.org/0236zx722 Gundalow (United States)'),
(26713, 'https://ror.org/01x5f7a18', 'en', 1, 'https://ror.org/01x5f7a18 Byzantine Studies Association of North America'),
(26714, 'https://ror.org/02x04jw38', 'en', 1, 'https://ror.org/02x04jw38 Children''s Museum of Pittsburgh'),
(26715, 'https://ror.org/03j5g0n26', 'en', 1, 'https://ror.org/03j5g0n26 USS Constitution Museum'),
(26716, 'https://ror.org/008642w33', 'en', 1, 'https://ror.org/008642w33 Plains Art Museum'),
(26717, 'https://ror.org/02p4ap272', 'en', 1, 'https://ror.org/02p4ap272 Seneca Falls Historical Society'),
(26718, 'https://ror.org/0174xeh18', 'en', 1, 'https://ror.org/0174xeh18 Plains Indians & Pioneers Museum'),
(26719, 'https://ror.org/024t55b22', 'en', 1, 'https://ror.org/024t55b22 Ulysses S. Grant Association'),
(26720, 'https://ror.org/05jesdm52', 'en', 1, 'https://ror.org/05jesdm52 Union Theological Seminary'),
(26721, 'https://ror.org/0365emg19', 'en', 1, 'https://ror.org/0365emg19 Captain Avery Museum'),
(26722, 'https://ror.org/00v8tm605', 'en', 1, 'https://ror.org/00v8tm605 United South End Settlements'),
(26723, 'https://ror.org/01asxey89', 'en', 1, 'https://ror.org/01asxey89 Please Touch Museum'),
(26724, 'https://ror.org/03vwtwp93', 'en', 1, 'https://ror.org/03vwtwp93 Pocumtuck Valley Memorial Association'),
(26725, 'https://ror.org/03r1fjj85', 'en', 1, 'https://ror.org/03r1fjj85 Shaker Museum Mount Lebanon'),
(26726, 'https://ror.org/01kcmgv15', 'en', 1, 'https://ror.org/01kcmgv15 Shakespeare and Company'),
(26727, 'https://ror.org/00ghnnz67', 'en', 1, 'https://ror.org/00ghnnz67 Unity Productions Foundation'),
(26728, 'https://ror.org/033z56h08', 'en', 1, 'https://ror.org/033z56h08 Polish American Historical Association'),
(26729, 'https://ror.org/00g8avn41', 'en', 1, 'https://ror.org/00g8avn41 Portland Art Museum'),
(26730, 'https://ror.org/03dj8sp02', 'en', 1, 'https://ror.org/03dj8sp02 Providence Montana Health Foundation'),
(26731, 'https://ror.org/00ft99q05', 'en', 1, 'https://ror.org/00ft99q05 Portland Museum'),
(26732, 'https://ror.org/05jk8qm79', 'en', 1, 'https://ror.org/05jk8qm79 Portland Public Library'),
(26733, 'https://ror.org/0367q9f19', 'no_lang_code', 1, 'https://ror.org/0367q9f19 Shakespeare Theatre Company'),
(26734, 'https://ror.org/00xmaxz39', 'no_lang_code', 1, 'https://ror.org/00xmaxz39 Portland Stage (United States)'),
(26735, 'https://ror.org/0324chf70', 'en', 1, 'https://ror.org/0324chf70 Sheffield Historical Society'),
(26736, 'https://ror.org/01dtz7721', 'en', 1, 'https://ror.org/01dtz7721 Shelburne Museum'),
(26737, 'https://ror.org/001vaag74', 'en', 1, 'https://ror.org/001vaag74 Poughkeepsie Public Library District'),
(26738, 'https://ror.org/00xe94w55', 'en', 1, 'https://ror.org/00xe94w55 Pre Columbian Art Research Institute'),
(26739, 'https://ror.org/05t7j2034', 'en', 1, 'https://ror.org/05t7j2034 Preble County Historical Society'),
(26740, 'https://ror.org/038j0hg40', 'en', 1, 'https://ror.org/038j0hg40 Shelton History Center'),
(26741, 'https://ror.org/013yz2z49', 'en', 1, 'https://ror.org/013yz2z49 Presbyterian Historical Society'),
(26742, 'https://ror.org/015vt5466', 'en', 1, 'https://ror.org/015vt5466 Preservation Society of Newport County'),
(26743, 'https://ror.org/01x3s6v81', 'en', 1, 'https://ror.org/01x3s6v81 Primary Source'),
(26744, 'https://ror.org/02hpqxd69', 'en', 1, 'https://ror.org/02hpqxd69 Slater Mill'),
(26745, 'https://ror.org/003gx4r22', 'en', 1, 'https://ror.org/003gx4r22 University of Georgia Press'),
(26746, 'https://ror.org/01d4s2403', 'en', 1, 'https://ror.org/01d4s2403 Prince William County Public Schools'),
(26747, 'https://ror.org/004j0wk96', 'en', 1, 'https://ror.org/004j0wk96 Princeton Theological Seminary'),
(26748, 'https://ror.org/05xwxh996', 'en', 1, 'https://ror.org/05xwxh996 Snug Harbor Cultural Center & Botanical Garden'),
(26749, 'https://ror.org/02dzk6f82', 'en', 1, 'https://ror.org/02dzk6f82 Providence Athenaeum'),
(26750, 'https://ror.org/00fc27062', 'en', 1, 'https://ror.org/00fc27062 Providence Public Library'),
(26751, 'https://ror.org/02450sh88', 'en', 1, 'https://ror.org/02450sh88 Society for American Music'),
(26752, 'https://ror.org/017fw5s62', 'en', 1, 'https://ror.org/017fw5s62 Des Moines Public Library'),
(26753, 'https://ror.org/00k82dv87', 'en', 1, 'https://ror.org/00k82dv87 Society for Classical Studies'),
(26754, 'https://ror.org/01y5jsp78', 'en', 1, 'https://ror.org/01y5jsp78 Public Radio International'),
(26755, 'https://ror.org/0019bf448', 'en', 1, 'https://ror.org/0019bf448 University of Pittsburgh at Bradford'),
(26756, 'https://ror.org/04kj21e96', 'en', 1, 'https://ror.org/04kj21e96 Society for Historians of the Early American Republic'),
(26757, 'https://ror.org/02b394754', 'en', 1, 'https://ror.org/02b394754 University of Pittsburgh at Greensburg'),
(26758, 'https://ror.org/04nk82x68', 'en', 1, 'https://ror.org/04nk82x68 University of South Carolina Sumter'),
(26759, 'https://ror.org/01ng7yw81', 'en', 1, 'https://ror.org/01ng7yw81 Society for Values in Higher Education'),
(26760, 'https://ror.org/036y50s64', 'en', 1, 'https://ror.org/036y50s64 University Press of Kentucky'),
(26761, 'https://ror.org/0062skg93', 'en', 1, 'https://ror.org/0062skg93 University of South Florida Sarasota–Manatee'),
(26762, 'https://ror.org/016gp6x28', 'en', 1, 'https://ror.org/016gp6x28 University of South Florida St. Petersburg'),
(26763, 'https://ror.org/02czn2d69', 'en', 1, 'https://ror.org/02czn2d69 Society of Architectural Historians'),
(26764, 'https://ror.org/02ntrvv07', 'en', 1, 'https://ror.org/02ntrvv07 University Press of New England'),
(26765, 'https://ror.org/05v0vxa20', 'en', 1, 'https://ror.org/05v0vxa20 Los Angeles Education Partnership'),
(26766, 'https://ror.org/0029qfe93', 'en', 1, 'https://ror.org/0029qfe93 Society of Biblical Literature'),
(26767, 'https://ror.org/03qmqe950', 'en', 1, 'https://ror.org/03qmqe950 Utah Library Association'),
(26768, 'https://ror.org/057m8sk45', 'en', 1, 'https://ror.org/057m8sk45 Society of Early Americanists'),
(26769, 'https://ror.org/02pxj5t37', 'en', 1, 'https://ror.org/02pxj5t37 Utah State Historical Society'),
(26770, 'https://ror.org/01d606394', 'en', 1, 'https://ror.org/01d606394 Shoshone Episcopal Mission'),
(26771, 'https://ror.org/02wq67465', 'en', 1, 'https://ror.org/02wq67465 Solomon R. Guggenheim Museum'),
(26772, 'https://ror.org/052d5p297', 'en', 1, 'https://ror.org/052d5p297 Somerville Museum'),
(26773, 'https://ror.org/02wsybq15', 'en', 1, 'https://ror.org/02wsybq15 Museum of Ventura County'),
(26774, 'https://ror.org/00e5rqn68', 'en', 1, 'https://ror.org/00e5rqn68 Sonoma County Library'),
(26775, 'https://ror.org/01hw7a574', 'en', 1, 'https://ror.org/01hw7a574 Vermilion Parish Library'),
(26776, 'https://ror.org/03wpvxm81', 'en', 1, 'https://ror.org/03wpvxm81 Windward Community College'),
(26777, 'https://ror.org/00y64xg88', 'en', 1, 'https://ror.org/00y64xg88 Vermont Folklife Center'),
(26778, 'https://ror.org/020t5em76', 'en', 1, 'https://ror.org/020t5em76 Museum of Sonoma County'),
(26779, 'https://ror.org/01zdg1s07', 'en', 1, 'https://ror.org/01zdg1s07 Vermont Historical Society');
INSERT INTO `rors` VALUES
(26780, 'https://ror.org/0024s9602', 'en', 1, 'https://ror.org/0024s9602 Vermont Public Radio'),
(26781, 'https://ror.org/04345w666', 'en', 1, 'https://ror.org/04345w666 Vermont Ski and Snowboard Museum'),
(26782, 'https://ror.org/04q3ga974', 'en', 1, 'https://ror.org/04q3ga974 Leeward Community College'),
(26783, 'https://ror.org/02m7y2120', 'en', 1, 'https://ror.org/02m7y2120 Kapiolani Community College'),
(26784, 'https://ror.org/046k1gm58', 'en', 1, 'https://ror.org/046k1gm58 Verona Public Library'),
(26785, 'https://ror.org/03keyse18', 'en', 1, 'https://ror.org/03keyse18 Vesterheim Norwegian American Museum'),
(26786, 'https://ror.org/01gffqk05', 'en', 1, 'https://ror.org/01gffqk05 Victorian Society in America'),
(26787, 'https://ror.org/02nz5n326', 'en', 1, 'https://ror.org/02nz5n326 South Carolina Historical Society'),
(26788, 'https://ror.org/01nfka669', 'en', 1, 'https://ror.org/01nfka669 South Carolina State Museum'),
(26789, 'https://ror.org/02cbm8069', 'en', 1, 'https://ror.org/02cbm8069 South Coast Railroad Museum'),
(26790, 'https://ror.org/050nj1e51', 'en', 1, 'https://ror.org/050nj1e51 Virginia Department of Historic Resources'),
(26791, 'https://ror.org/001t9zn91', 'en', 1, 'https://ror.org/001t9zn91 South Dakota Department of Tourism'),
(26792, 'https://ror.org/02rvdqw36', 'en', 1, 'https://ror.org/02rvdqw36 Virginia Sesquicentennial of the American Civil War Commission'),
(26793, 'https://ror.org/02b3jvc59', 'en', 1, 'https://ror.org/02b3jvc59 South Dakota State Historical Society'),
(26794, 'https://ror.org/00a7q4w79', 'en', 1, 'https://ror.org/00a7q4w79 Caribbean Cultural Center African Diaspora Institute'),
(26795, 'https://ror.org/0123ya521', 'en', 1, 'https://ror.org/0123ya521 South Dakota Library Association'),
(26796, 'https://ror.org/050cz4220', 'en', 1, 'https://ror.org/050cz4220 Vizcaya Museum & Gardens'),
(26797, 'https://ror.org/023rme066', 'en', 1, 'https://ror.org/023rme066 South Puget Sound Community College'),
(26798, 'https://ror.org/024psbf52', 'en', 1, 'https://ror.org/024psbf52 W. F. Albright Institute of Archaeological Research'),
(26799, 'https://ror.org/00648rz05', 'en', 1, 'https://ror.org/00648rz05 W. H. Over Museum'),
(26800, 'https://ror.org/01h7dw523', 'en', 1, 'https://ror.org/01h7dw523 South Street Seaport Museum'),
(26801, 'https://ror.org/03pdpfa44', 'en', 1, 'https://ror.org/03pdpfa44 Wadsworth Atheneum Museum of Art'),
(26802, 'https://ror.org/00bfxmt28', 'en', 1, 'https://ror.org/00bfxmt28 Washington National Opera'),
(26803, 'https://ror.org/01e3ztx72', 'en', 1, 'https://ror.org/01e3ztx72 Oregon Zoo'),
(26804, 'https://ror.org/00chesn46', 'en', 1, 'https://ror.org/00chesn46 Olney Carnegie Library'),
(26805, 'https://ror.org/00k9qqk71', 'en', 1, 'https://ror.org/00k9qqk71 Washington Performing Arts'),
(26806, 'https://ror.org/00ndyyr79', 'en', 1, 'https://ror.org/00ndyyr79 Walker Art Center'),
(26807, 'https://ror.org/03h79eg54', 'en', 1, 'https://ror.org/03h79eg54 Wallingford Public Library'),
(26808, 'https://ror.org/05h99gf82', 'en', 1, 'https://ror.org/05h99gf82 Walters Art Museum'),
(26809, 'https://ror.org/00f99ht56', 'en', 1, 'https://ror.org/00f99ht56 Washington State Historical Society'),
(26810, 'https://ror.org/00wx9pc76', 'en', 1, 'https://ror.org/00wx9pc76 Washakie Museum & Cultural Center'),
(26811, 'https://ror.org/00dbgmf72', 'en', 1, 'https://ror.org/00dbgmf72 Washburn Norlands Living History Center'),
(26812, 'https://ror.org/03gpmrn65', 'en', 1, 'https://ror.org/03gpmrn65 Waterloo Public Library'),
(26813, 'https://ror.org/023gw3p07', 'no_lang_code', 1, 'https://ror.org/023gw3p07 Washington Ballet (United States)'),
(26814, 'https://ror.org/01ak8sk10', 'en', 1, 'https://ror.org/01ak8sk10 Wayne County Community College District'),
(26815, 'https://ror.org/02syb3g35', 'en', 1, 'https://ror.org/02syb3g35 Washington County Museum'),
(26816, 'https://ror.org/030nhjt85', 'en', 1, 'https://ror.org/030nhjt85 Webb School of Knoxville'),
(26817, 'https://ror.org/05jq6y977', 'en', 1, 'https://ror.org/05jq6y977 Webster Museum and Historical Society'),
(26818, 'https://ror.org/04htfrz79', 'en', 1, 'https://ror.org/04htfrz79 Wenham Museum'),
(26819, 'https://ror.org/01pxd1c06', 'en', 1, 'https://ror.org/01pxd1c06 Southern Maryland Regional Library Association'),
(26820, 'https://ror.org/04drdpz74', 'en', 1, 'https://ror.org/04drdpz74 Wisconsin Educational Communications Board'),
(26821, 'https://ror.org/0140mkx22', 'en', 1, 'https://ror.org/0140mkx22 West Baton Rouge Museum'),
(26822, 'https://ror.org/023cthp32', 'en', 1, 'https://ror.org/023cthp32 Witherspoon Institute'),
(26823, 'https://ror.org/00xqebk56', 'en', 1, 'https://ror.org/00xqebk56 West Los Angeles College'),
(26824, 'https://ror.org/0045h2h15', 'en', 1, 'https://ror.org/0045h2h15 Southern Ute Museum'),
(26825, 'https://ror.org/0456pvf72', 'en', 1, 'https://ror.org/0456pvf72 WMHT Educational Telecommunications'),
(26826, 'https://ror.org/008q9az43', 'en', 1, 'https://ror.org/008q9az43 Western Heritage Center'),
(26827, 'https://ror.org/00kr4pg87', 'en', 1, 'https://ror.org/00kr4pg87 Durham Museum'),
(26828, 'https://ror.org/00angtv54', 'en', 1, 'https://ror.org/00angtv54 Western Museum of Mining & Industry'),
(26829, 'https://ror.org/004j2ry26', 'en', 1, 'https://ror.org/004j2ry26 Women''s Studio Workshop'),
(26830, 'https://ror.org/04aamwz87', 'en', 1, 'https://ror.org/04aamwz87 Woodlawn Museum Gardens & Park'),
(26831, 'https://ror.org/003y2vw22', 'en', 1, 'https://ror.org/003y2vw22 Worcester Art Museum'),
(26832, 'https://ror.org/02g9ex009', 'en', 1, 'https://ror.org/02g9ex009 Worcester Historical Museum'),
(26833, 'https://ror.org/01jfxry94', 'en', 1, 'https://ror.org/01jfxry94 Worcester Public Library'),
(26834, 'https://ror.org/0302dpf35', 'en', 1, 'https://ror.org/0302dpf35 Western New York Public Broadcasting Association'),
(26835, 'https://ror.org/0423p3470', 'en', 1, 'https://ror.org/0423p3470 Western Pocono Community Library'),
(26836, 'https://ror.org/04rjm0720', 'en', 1, 'https://ror.org/04rjm0720 Spartanburg County Public Libraries'),
(26837, 'https://ror.org/05rtb3z04', 'en', 1, 'https://ror.org/05rtb3z04 Western Reserve Historical Society'),
(26838, 'https://ror.org/0072em063', 'en', 1, 'https://ror.org/0072em063 World Music Productions'),
(26839, 'https://ror.org/01c07rv55', 'en', 1, 'https://ror.org/01c07rv55 Spring Lake District Library'),
(26840, 'https://ror.org/00vgj0470', 'en', 1, 'https://ror.org/00vgj0470 American World University'),
(26841, 'https://ror.org/000ta0r04', 'en', 1, 'https://ror.org/000ta0r04 Springdale Public Library'),
(26842, 'https://ror.org/05n04ff42', 'en', 1, 'https://ror.org/05n04ff42 Operation Opportunity Foundation'),
(26843, 'https://ror.org/03p8px109', 'en', 1, 'https://ror.org/03p8px109 Worthington City School District'),
(26844, 'https://ror.org/035t6en21', 'en', 1, 'https://ror.org/035t6en21 Westfield Center for Historical Keyboard Studies'),
(26845, 'https://ror.org/04s45sk16', 'en', 1, 'https://ror.org/04s45sk16 Rhode Island PBS Foundation'),
(26846, 'https://ror.org/00p092380', 'en', 1, 'https://ror.org/00p092380 Wyoming State Archives'),
(26847, 'https://ror.org/02ar8my54', 'en', 1, 'https://ror.org/02ar8my54 Yakima Valley Museum'),
(26848, 'https://ror.org/02rt36v36', 'en', 1, 'https://ror.org/02rt36v36 Organization of American Historians'),
(26849, 'https://ror.org/02y676g76', 'en', 1, 'https://ror.org/02y676g76 Springfield Museums'),
(26850, 'https://ror.org/05tndeq88', 'en', 1, 'https://ror.org/05tndeq88 Yakima Valley Libraries'),
(26851, 'https://ror.org/05hgcp219', 'en', 1, 'https://ror.org/05hgcp219 B.S. Ricks Memorial Library'),
(26852, 'https://ror.org/003rjf961', 'en', 1, 'https://ror.org/003rjf961 WGBH Educational Foundation'),
(26853, 'https://ror.org/03rs7bk48', 'en', 1, 'https://ror.org/03rs7bk48 Yeshiva University Museum'),
(26854, 'https://ror.org/0372dx737', 'en', 1, 'https://ror.org/0372dx737 Wheelwright Museum of the American Indian'),
(26855, 'https://ror.org/01e438y82', 'en', 1, 'https://ror.org/01e438y82 White House Historical Association'),
(26856, 'https://ror.org/01g1t6g78', 'en', 1, 'https://ror.org/01g1t6g78 Whitney Museum of American Art'),
(26857, 'https://ror.org/05ttt8934', 'en', 1, 'https://ror.org/05ttt8934 Wichita Public Library'),
(26858, 'https://ror.org/00571jt67', 'en', 1, 'https://ror.org/00571jt67 St. Francis College'),
(26859, 'https://ror.org/01chwg263', 'en', 1, 'https://ror.org/01chwg263 St. George''s School'),
(26860, 'https://ror.org/047p4k652', 'en', 1, 'https://ror.org/047p4k652 Willa Cather Foundation'),
(26861, 'https://ror.org/00qp7zm97', 'en', 1, 'https://ror.org/00qp7zm97 Ypsilanti District Library'),
(26862, 'https://ror.org/04bwfnh43', 'en', 1, 'https://ror.org/04bwfnh43 Willamette Heritage Center'),
(26863, 'https://ror.org/004140w27', 'en', 1, 'https://ror.org/004140w27 Park City Museum'),
(26864, 'https://ror.org/05hw4nf80', 'en', 1, 'https://ror.org/05hw4nf80 William K. Sanford Town Library'),
(26865, 'https://ror.org/054qmd302', 'en', 1, 'https://ror.org/054qmd302 Williamsburg Regional Library'),
(26866, 'https://ror.org/020bck234', 'en', 1, 'https://ror.org/020bck234 Philadelphia Zoo'),
(26867, 'https://ror.org/04gqfff71', 'en', 1, 'https://ror.org/04gqfff71 William F. Laman Public Library System'),
(26868, 'https://ror.org/00nm35319', 'en', 1, 'https://ror.org/00nm35319 St. Johnsbury Athenaeum'),
(26869, 'https://ror.org/03gveh102', 'en', 1, 'https://ror.org/03gveh102 University of Wisconsin–Fond du Lac'),
(26870, 'https://ror.org/05682nv68', 'en', 1, 'https://ror.org/05682nv68 Pennsylvania Heritage Society'),
(26871, 'https://ror.org/04qw45d53', 'en', 1, 'https://ror.org/04qw45d53 Saint Louis Art Museum'),
(26872, 'https://ror.org/01x3sga45', 'en', 1, 'https://ror.org/01x3sga45 St. Louis County Missouri'),
(26873, 'https://ror.org/00v2ecp17', 'en', 1, 'https://ror.org/00v2ecp17 St. Louis County Department of Parks and Recreation'),
(26874, 'https://ror.org/00rqx7a67', 'en', 1, 'https://ror.org/00rqx7a67 St. Louis County Historical Society'),
(26875, 'https://ror.org/03ta5f363', 'en', 1, 'https://ror.org/03ta5f363 Sons of Union Veterans of the Civil War'),
(26876, 'https://ror.org/0538qav07', 'en', 1, 'https://ror.org/0538qav07 Pacific Symphony'),
(26877, 'https://ror.org/00rjhzp80', 'en', 1, 'https://ror.org/00rjhzp80 Peter Yegen Jr. Yellowstone County Museum'),
(26878, 'https://ror.org/058sshm54', 'en', 1, 'https://ror.org/058sshm54 Institute of Oceanology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¾ŠŗŠµŠ°Š½Š¾Š»Š¾Š³ŠøŃ'),
(26879, 'https://ror.org/05c3m0811', 'en', 1, 'https://ror.org/05c3m0811 Central Laboratory of Solar Energy and New Energy Sources Централна Š»Š°Š±Š¾Ń€Š°Ń‚Š¾Ń€ŠøŃ по ŃŠ»ŃŠŠ½Ń‡ŠµŠ²Š° ŠµŠ½ŠµŃ€Š³ŠøŃ Šø нови енергийни източници'),
(26880, 'https://ror.org/01y3mxb71', 'no_lang_code', 1, 'https://ror.org/01y3mxb71 Central European Data Agency (Czechia)'),
(26881, 'https://ror.org/04999ka44', 'no_lang_code', 1, 'https://ror.org/04999ka44 Medipo ZT (Czechia)'),
(26882, 'https://ror.org/00v1asp42', 'no_lang_code', 1, 'https://ror.org/00v1asp42 Eldis Pardubice (Czechia)'),
(26883, 'https://ror.org/030sr3j49', 'no_lang_code', 1, 'https://ror.org/030sr3j49 Medistyl (Czechia)'),
(26884, 'https://ror.org/01tycan35', 'no_lang_code', 1, 'https://ror.org/01tycan35 Elis Plzen (Czechia)'),
(26885, 'https://ror.org/04j3yrr96', 'no_lang_code', 1, 'https://ror.org/04j3yrr96 Imos Brno (Czechia)'),
(26886, 'https://ror.org/059kfxy53', 'no_lang_code', 1, 'https://ror.org/059kfxy53 Elitex Machinery (Czechia)'),
(26887, 'https://ror.org/00kjtwf88', 'no_lang_code', 1, 'https://ror.org/00kjtwf88 Medtec VOP (Czechia)'),
(26888, 'https://ror.org/036cktz33', 'no_lang_code', 1, 'https://ror.org/036cktz33 Inco Engineering (Czechia)'),
(26889, 'https://ror.org/01e5xrj50', 'no_lang_code', 1, 'https://ror.org/01e5xrj50 Elko Ep (Czechia)'),
(26890, 'https://ror.org/0500bxx34', 'no_lang_code', 1, 'https://ror.org/0500bxx34 Elmarco (Czechia)'),
(26891, 'https://ror.org/01jvfs579', 'no_lang_code', 1, 'https://ror.org/01jvfs579 MEgA Measuring Energy Apparatus (Czechia)'),
(26892, 'https://ror.org/02gmebg52', 'no_lang_code', 1, 'https://ror.org/02gmebg52 Mega (Czechia)'),
(26893, 'https://ror.org/03ve83257', 'no_lang_code', 1, 'https://ror.org/03ve83257 Centre for Organic Chemistry (Czechia) Centrum OrganickƩ Chemie'),
(26894, 'https://ror.org/042p6cb87', 'no_lang_code', 1, 'https://ror.org/042p6cb87 Infram (Czechia)'),
(26895, 'https://ror.org/05ad1hb84', 'no_lang_code', 1, 'https://ror.org/05ad1hb84 Meopta Optika (Czechia)'),
(26896, 'https://ror.org/05kypfq19', 'cs', 1, 'https://ror.org/05kypfq19 Centrum Pro Komunitnƭ PrƔci'),
(26897, 'https://ror.org/04p9d0t65', 'no_lang_code', 1, 'https://ror.org/04p9d0t65 Mesing (Czechia)'),
(26898, 'https://ror.org/04m1rgc79', 'no_lang_code', 1, 'https://ror.org/04m1rgc79 Hagemann (Czechia)'),
(26899, 'https://ror.org/01bf2c792', 'no_lang_code', 1, 'https://ror.org/01bf2c792 ING Corporation (Czechia)'),
(26900, 'https://ror.org/03cg4ry50', 'no_lang_code', 1, 'https://ror.org/03cg4ry50 Eltodo (Czechia)'),
(26901, 'https://ror.org/04cj4w646', 'no_lang_code', 1, 'https://ror.org/04cj4w646 Magneton (Czechia)'),
(26902, 'https://ror.org/009wgvk87', 'en', 1, 'https://ror.org/009wgvk87 Centre for Higher Education Studies'),
(26903, 'https://ror.org/021f6t344', 'no_lang_code', 1, 'https://ror.org/021f6t344 Elvac Ekotechnika (Czechia)'),
(26904, 'https://ror.org/05hc66959', 'no_lang_code', 1, 'https://ror.org/05hc66959 Centre of Civil Engineering (Czechia) Centrum Stavebního Inženýrství'),
(26905, 'https://ror.org/05735s737', 'no_lang_code', 1, 'https://ror.org/05735s737 Embitron (Czechia)'),
(26906, 'https://ror.org/02vf5zz47', 'no_lang_code', 1, 'https://ror.org/02vf5zz47 Ford Motor Company (Czechia)'),
(26907, 'https://ror.org/02r0jqm23', 'no_lang_code', 1, 'https://ror.org/02r0jqm23 Microrisc (Czechia)'),
(26908, 'https://ror.org/01dgmap57', 'en', 1, 'https://ror.org/01dgmap57 Saskatchewan Registered Nurses Association'),
(26909, 'https://ror.org/050trak22', 'no_lang_code', 1, 'https://ror.org/050trak22 Cervenka Consulting (Czechia)'),
(26910, 'https://ror.org/02djb3912', 'no_lang_code', 1, 'https://ror.org/02djb3912 Enacon (Czechia)'),
(26911, 'https://ror.org/0505t6e30', 'no_lang_code', 1, 'https://ror.org/0505t6e30 MikroChem LKT (Czechia)'),
(26912, 'https://ror.org/03em3tg48', 'en', 1, 'https://ror.org/03em3tg48 Czech Concrete Society'),
(26913, 'https://ror.org/05raa0j17', 'no_lang_code', 1, 'https://ror.org/05raa0j17 Mikropur (Czechia)'),
(26914, 'https://ror.org/00ww0x553', 'no_lang_code', 1, 'https://ror.org/00ww0x553 Energie - Stavební a BÔňskÔ (Czechia)'),
(26915, 'https://ror.org/02t8zwv43', 'no_lang_code', 1, 'https://ror.org/02t8zwv43 Milcom (Czechia)'),
(26916, 'https://ror.org/016rpxr13', 'no_lang_code', 1, 'https://ror.org/016rpxr13 Ing. Ivo Herman (Czechia)'),
(26917, 'https://ror.org/03wmttm35', 'no_lang_code', 1, 'https://ror.org/03wmttm35 2N Telecommunications (Czechia) 2N Telekomunikace'),
(26918, 'https://ror.org/00x4r3w91', 'no_lang_code', 1, 'https://ror.org/00x4r3w91 Vakar (Czechia)'),
(26919, 'https://ror.org/0106zg078', 'no_lang_code', 1, 'https://ror.org/0106zg078 ENKI (Czechia)'),
(26920, 'https://ror.org/056mtf007', 'en', 1, 'https://ror.org/056mtf007 Czech Space Office'),
(26921, '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ě'),
(26922, 'https://ror.org/02hqgw034', 'no_lang_code', 1, 'https://ror.org/02hqgw034 Envinet (Czechia)'),
(26923, 'https://ror.org/04v4fdz58', 'no_lang_code', 1, 'https://ror.org/04v4fdz58 Advanced Technology Group (Czechia)'),
(26924, 'https://ror.org/05cyzhb83', 'no_lang_code', 1, 'https://ror.org/05cyzhb83 Envisan GEM (Czechia)'),
(26925, 'https://ror.org/01kk80q05', 'no_lang_code', 1, 'https://ror.org/01kk80q05 Envites (Czechia)'),
(26926, 'https://ror.org/03s7g5q07', 'no_lang_code', 1, 'https://ror.org/03s7g5q07 ModelƔrna Liaz (Czechia)'),
(26927, 'https://ror.org/05mg79n26', 'no_lang_code', 1, 'https://ror.org/05mg79n26 ABB (Czechia)'),
(26928, 'https://ror.org/01kghnd85', 'en', 1, 'https://ror.org/01kghnd85 Czech Society for Oriental Studies'),
(26929, 'https://ror.org/02bxk9349', 'no_lang_code', 1, 'https://ror.org/02bxk9349 Miracle (Czechia)'),
(26930, 'https://ror.org/04r5ttx52', 'no_lang_code', 1, 'https://ror.org/04r5ttx52 Eprona (Czechia)'),
(26931, 'https://ror.org/055nq3844', 'no_lang_code', 1, 'https://ror.org/055nq3844 Electronic Product Services (Czechia)'),
(26932, 'https://ror.org/01r1xp191', 'no_lang_code', 1, 'https://ror.org/01r1xp191 AEC (Czechia)'),
(26933, 'https://ror.org/007s0q763', 'no_lang_code', 1, 'https://ror.org/007s0q763 ERA (Czechia)'),
(26934, 'https://ror.org/03p5y6k26', 'cs', 1, 'https://ror.org/03p5y6k26 ČeskĆ” Společnost AntropologickĆ”'),
(26935, 'https://ror.org/04fc8m485', 'no_lang_code', 1, 'https://ror.org/04fc8m485 Monet (Czechia)'),
(26936, 'https://ror.org/04v42p132', 'no_lang_code', 1, 'https://ror.org/04v42p132 ETC Consulting'),
(26937, 'https://ror.org/04096bn69', 'no_lang_code', 1, 'https://ror.org/04096bn69 Dürr Systems (Czechia)'),
(26938, 'https://ror.org/040cb6934', 'cs', 1, 'https://ror.org/040cb6934 ČeskĆ” Společnost ChemickĆ”'),
(26939, 'https://ror.org/04taat540', 'no_lang_code', 1, 'https://ror.org/04taat540 ČeskĆ” BioklimatologickĆ” Společnost (Czechia)'),
(26940, 'https://ror.org/04anxb269', 'en', 1, 'https://ror.org/04anxb269 Czech Society for New Materials and Technologies'),
(26941, 'https://ror.org/02dbhfj05', 'no_lang_code', 1, 'https://ror.org/02dbhfj05 Euro Support (Czechia)'),
(26942, 'https://ror.org/04hfx2z08', 'cs', 1, 'https://ror.org/04hfx2z08 ČeskĆ” Společnost pro PolitickĆ© Vědy'),
(26943, 'https://ror.org/02k884a42', 'no_lang_code', 1, 'https://ror.org/02k884a42 Montstav (Czechia)'),
(26944, 'https://ror.org/03x8jsf97', 'no_lang_code', 1, 'https://ror.org/03x8jsf97 Elitex slƩvƔrna (Czechia)'),
(26945, 'https://ror.org/0556q6716', 'no_lang_code', 1, 'https://ror.org/0556q6716 AGRO-EKO (Czechia)'),
(26946, 'https://ror.org/03x19vt79', 'cs', 1, 'https://ror.org/03x19vt79 Institut Pro Studium Literatury'),
(26947, 'https://ror.org/01tkgk805', 'en', 1, 'https://ror.org/01tkgk805 Moravian Gallery in Brno'),
(26948, 'https://ror.org/05md7gj74', 'en', 1, 'https://ror.org/05md7gj74 Czech Zoological Society'),
(26949, 'https://ror.org/024jn1h80', 'en', 1, 'https://ror.org/024jn1h80 Arts and Theatre Institute'),
(26950, 'https://ror.org/03y1f1208', 'no_lang_code', 1, 'https://ror.org/03y1f1208 Railway Research Institute (Czechia) Výzkumný Ústav ŽelezničnĆ­'),
(26951, 'https://ror.org/02dfcd792', 'no_lang_code', 1, 'https://ror.org/02dfcd792 Intens (Czechia)'),
(26952, 'https://ror.org/056hsts40', 'no_lang_code', 1, 'https://ror.org/056hsts40 Evolving Systems Consulting Aerospace (Czechia)'),
(26953, 'https://ror.org/0053ash76', 'no_lang_code', 1, 'https://ror.org/0053ash76 Aero (Czechia)'),
(26954, 'https://ror.org/00fshqt18', 'no_lang_code', 1, 'https://ror.org/00fshqt18 Exbio (Czechia)'),
(26955, 'https://ror.org/05v056h48', 'no_lang_code', 1, 'https://ror.org/05v056h48 Explosia (Czechia)'),
(26956, 'https://ror.org/031grv787', 'no_lang_code', 1, 'https://ror.org/031grv787 AHT Energetics (Czechia) AHT Energetika'),
(26957, 'https://ror.org/01wy81410', 'no_lang_code', 1, 'https://ror.org/01wy81410 Fite (Czechia)'),
(26958, 'https://ror.org/017yg8081', 'no_lang_code', 1, 'https://ror.org/017yg8081 PPM Factum Research'),
(26959, 'https://ror.org/033mv0745', 'no_lang_code', 1, 'https://ror.org/033mv0745 Mott MacDonald (Czechia)'),
(26960, 'https://ror.org/044es9645', 'no_lang_code', 1, 'https://ror.org/044es9645 ČeskomoravskĆ” Kolben Daněk (Czechia)'),
(26961, 'https://ror.org/049m9e566', 'en', 1, 'https://ror.org/049m9e566 Czech Railways'),
(26962, 'https://ror.org/05agbef66', 'no_lang_code', 1, 'https://ror.org/05agbef66 MSR Engines (Czechia)'),
(26963, 'https://ror.org/04p4fx257', 'no_lang_code', 1, 'https://ror.org/04p4fx257 MSV Elektronika (Czechia)'),
(26964, 'https://ror.org/050ngd429', 'no_lang_code', 1, 'https://ror.org/050ngd429 Akademie (Czechia)'),
(26965, 'https://ror.org/036swtt68', 'cs', 1, 'https://ror.org/036swtt68 České Ekologické Manažerské Centrum'),
(26966, 'https://ror.org/014e5wn40', 'no_lang_code', 1, 'https://ror.org/014e5wn40 MSV Systems (Czechia)'),
(26967, 'https://ror.org/04df59d52', 'no_lang_code', 1, 'https://ror.org/04df59d52 Ceske Lupkove Zavody (Czechia)'),
(26968, 'https://ror.org/0133zej97', 'cs', 1, 'https://ror.org/0133zej97 MuzejnĆ­ a VlastivědnĆ” Společnost v Brně'),
(26969, 'https://ror.org/00h4vp021', 'no_lang_code', 1, 'https://ror.org/00h4vp021 Hexagon (Czechia)'),
(26970, 'https://ror.org/02d04zk75', 'no_lang_code', 1, 'https://ror.org/02d04zk75 Fans (Czechia)'),
(26971, 'https://ror.org/04teq3d43', 'no_lang_code', 1, 'https://ror.org/04teq3d43 Akustika Praha (Czechia)'),
(26972, 'https://ror.org/00gzbxs44', 'no_lang_code', 1, 'https://ror.org/00gzbxs44 Invos (Czechia)'),
(26973, 'https://ror.org/002dnpc64', 'cs', 1, 'https://ror.org/002dnpc64 Muzeum a Galerie Orlických Hor'),
(26974, 'https://ror.org/01fqmwr23', 'en', 1, 'https://ror.org/01fqmwr23 Czech Moravian Psychological Society Czech-Moravian Psychological Society'),
(26975, 'https://ror.org/004z40955', 'no_lang_code', 1, 'https://ror.org/004z40955 Alfa Union (Czechia)'),
(26976, 'https://ror.org/010pg3352', 'cs', 1, 'https://ror.org/010pg3352 Comenius Museum in Přerov Muzeum KomenskĆ©ho v Přerově'),
(26977, 'https://ror.org/02ym98p07', 'no_lang_code', 1, 'https://ror.org/02ym98p07 AMF Reece (Czechia)'),
(26978, 'https://ror.org/04dea3c58', 'en', 1, 'https://ror.org/04dea3c58 Engineering Academy of the Czech Republic'),
(26979, 'https://ror.org/04g5en476', 'no_lang_code', 1, 'https://ror.org/04g5en476 Ammann (Czechia)'),
(26980, 'https://ror.org/00my96x13', 'no_lang_code', 1, 'https://ror.org/00my96x13 Farmet (Czechia)'),
(26981, 'https://ror.org/024h65n23', 'no_lang_code', 1, 'https://ror.org/024h65n23 Favea (Czechia)'),
(26982, 'https://ror.org/001tgea40', 'cs', 1, 'https://ror.org/001tgea40 Muzeum Vysočiny Jihlava'),
(26983, 'https://ror.org/029vq3n45', 'no_lang_code', 1, 'https://ror.org/029vq3n45 Thermo Fisher Scientific (Czechia)'),
(26984, 'https://ror.org/03rte5t08', 'cs', 1, 'https://ror.org/03rte5t08 ČeskoslovenskĆ” BiologickĆ” Společnost'),
(26985, 'https://ror.org/05238qm85', 'no_lang_code', 1, 'https://ror.org/05238qm85 Amaranth (Czechia)'),
(26986, 'https://ror.org/03fvtf211', 'en', 1, 'https://ror.org/03fvtf211 Institute for Structural Policy'),
(26987, 'https://ror.org/05dh0m347', 'cs', 1, 'https://ror.org/05dh0m347 Nadace pro Dějiny kultury ve StřednĆ­ Evropě'),
(26988, 'https://ror.org/05mhcm605', 'en', 1, 'https://ror.org/05mhcm605 Czech Union for Nature Conservation'),
(26989, 'https://ror.org/02jazz476', 'en', 1, 'https://ror.org/02jazz476 National Centre of Social Studies'),
(26990, 'https://ror.org/00rnbsz17', 'no_lang_code', 1, 'https://ror.org/00rnbsz17 ISATech (Czechia)'),
(26991, 'https://ror.org/020rm6403', 'no_lang_code', 1, 'https://ror.org/020rm6403 National Cell and Tissue Centre (Czechia)'),
(26992, 'https://ror.org/02cxtyv10', 'cs', 1, 'https://ror.org/02cxtyv10 Český Svaz Stavebních Inženýrů'),
(26993, 'https://ror.org/02ahzqq48', 'no_lang_code', 1, 'https://ror.org/02ahzqq48 Fer Kladno (Czechia)'),
(26994, 'https://ror.org/0266ryr82', 'no_lang_code', 1, 'https://ror.org/0266ryr82 ApS Brno (Czechia)'),
(26995, 'https://ror.org/012mcha64', 'en', 1, 'https://ror.org/012mcha64 Czech Association of Scientific and Technical Societies'),
(26996, 'https://ror.org/00xjfn370', 'no_lang_code', 1, 'https://ror.org/00xjfn370 JAP Industries (Czechia)'),
(26997, 'https://ror.org/02ykdqq93', 'no_lang_code', 1, 'https://ror.org/02ykdqq93 APS (Czechia)'),
(26998, 'https://ror.org/01a2dv184', 'no_lang_code', 1, 'https://ror.org/01a2dv184 Fine (Czechia)'),
(26999, 'https://ror.org/000jexb59', 'no_lang_code', 1, 'https://ror.org/000jexb59 Chemcomex (Czechia)'),
(27000, 'https://ror.org/035xy4n68', 'no_lang_code', 1, 'https://ror.org/035xy4n68 Jawa (Czechia)'),
(27001, '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'),
(27002, 'https://ror.org/04304vh75', 'no_lang_code', 1, 'https://ror.org/04304vh75 ArcelorMittal (Czechia)'),
(27003, 'https://ror.org/02j1sgb41', 'no_lang_code', 1, 'https://ror.org/02j1sgb41 Jerid (Czechia)'),
(27004, 'https://ror.org/01pzyyx54', 'en', 1, 'https://ror.org/01pzyyx54 National Information and Consulting Centre for Culture'),
(27005, 'https://ror.org/00ccd8760', 'no_lang_code', 1, 'https://ror.org/00ccd8760 Formdesign (Czechia)'),
(27006, 'https://ror.org/03pkef045', 'no_lang_code', 1, 'https://ror.org/03pkef045 Skyleader (Czechia)'),
(27007, 'https://ror.org/01062jn59', 'no_lang_code', 1, 'https://ror.org/01062jn59 Archaia Brno (Czechia)'),
(27008, 'https://ror.org/00sz2vy62', 'no_lang_code', 1, 'https://ror.org/00sz2vy62 Foton (Czechia)'),
(27009, 'https://ror.org/02g4rm341', 'no_lang_code', 1, 'https://ror.org/02g4rm341 G Impuls Praha (Czechia)'),
(27010, 'https://ror.org/04hk5r056', 'no_lang_code', 1, 'https://ror.org/04hk5r056 Jihlavan (Czechia)'),
(27011, 'https://ror.org/00hj5kv86', 'no_lang_code', 1, 'https://ror.org/00hj5kv86 CKD Blansko Engineering (Czechia)'),
(27012, 'https://ror.org/02rts6b12', 'cs', 1, 'https://ror.org/02rts6b12 NÔrodní Klimatický Program'),
(27013, 'https://ror.org/03dmxq167', 'no_lang_code', 1, 'https://ror.org/03dmxq167 GaREP (Czechia)'),
(27014, 'https://ror.org/006eggh59', 'cs', 1, 'https://ror.org/006eggh59 JihomoravskĆ© muzeum ve Znojmě South Moravian Museum in Znojmo'),
(27015, 'https://ror.org/004fm2e78', 'no_lang_code', 1, 'https://ror.org/004fm2e78 Gascontrol (Czechia)'),
(27016, 'https://ror.org/01y3cgz33', 'no_lang_code', 1, 'https://ror.org/01y3cgz33 Jihostroj (Czechia)'),
(27017, 'https://ror.org/007528s45', 'no_lang_code', 1, 'https://ror.org/007528s45 CKD Elektrotechnika (Czechia)'),
(27018, 'https://ror.org/02dmq8z55', 'no_lang_code', 1, 'https://ror.org/02dmq8z55 General Electric (Czechia)'),
(27019, 'https://ror.org/018wdpk10', 'no_lang_code', 1, 'https://ror.org/018wdpk10 GeneProof (Czechia)'),
(27020, 'https://ror.org/00c3r5g90', 'no_lang_code', 1, 'https://ror.org/00c3r5g90 Generi Biotech (Czechia)'),
(27021, 'https://ror.org/05nt5pw88', 'no_lang_code', 1, 'https://ror.org/05nt5pw88 GeneTiCA (Czechia)'),
(27022, 'https://ror.org/01ra0jf88', 'no_lang_code', 1, 'https://ror.org/01ra0jf88 Aseko (Czechia)'),
(27023, 'https://ror.org/03b5fdt21', 'no_lang_code', 1, 'https://ror.org/03b5fdt21 Juta (Czechia)'),
(27024, 'https://ror.org/018vp6382', 'no_lang_code', 1, 'https://ror.org/018vp6382 ASICentrum (Czechia)'),
(27025, 'https://ror.org/02dgqz246', 'no_lang_code', 1, 'https://ror.org/02dgqz246 Cominfo (Czechia)'),
(27026, 'https://ror.org/005adyv40', 'no_lang_code', 1, 'https://ror.org/005adyv40 Coming Plus (Czechia)'),
(27027, 'https://ror.org/002e3gt76', 'no_lang_code', 1, 'https://ror.org/002e3gt76 Compureg Plzen (Czechia)'),
(27028, '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)'),
(27029, 'https://ror.org/02vmeq302', 'no_lang_code', 1, 'https://ror.org/02vmeq302 JULI Motorenwerk (Czechia)'),
(27030, 'https://ror.org/038ahjw20', 'en', 1, 'https://ror.org/038ahjw20 Association for International Affairs'),
(27031, 'https://ror.org/04r2bzn21', 'no_lang_code', 1, 'https://ror.org/04r2bzn21 Geomedia (Czechia)'),
(27032, 'https://ror.org/01pahsa11', 'no_lang_code', 1, 'https://ror.org/01pahsa11 KM Trade (Czechia)'),
(27033, 'https://ror.org/02dnt2x11', 'en', 1, 'https://ror.org/02dnt2x11 National Training Fund'),
(27034, 'https://ror.org/04a98ab79', 'en', 1, 'https://ror.org/04a98ab79 National Museum of Agriculture NĆ”rodnĆ­ zemědělskĆ© muzeum'),
(27035, 'https://ror.org/0520cy215', 'no_lang_code', 1, 'https://ror.org/0520cy215 GEOtest (Czechia)'),
(27036, 'https://ror.org/007mjrc64', 'cs', 1, 'https://ror.org/007mjrc64 GerontologickƩ Centrum'),
(27037, 'https://ror.org/03156th50', 'no_lang_code', 1, 'https://ror.org/03156th50 Koexpro Ostrava (Czechia)'),
(27038, 'https://ror.org/049345g13', 'no_lang_code', 1, 'https://ror.org/049345g13 NDCon (Czechia)'),
(27039, 'https://ror.org/049wy2009', 'no_lang_code', 1, 'https://ror.org/049wy2009 GF Machinery (Czechia)'),
(27040, 'https://ror.org/0498bq185', 'no_lang_code', 1, 'https://ror.org/0498bq185 GIS-Geoindustry (Czechia)'),
(27041, 'https://ror.org/0354d9t07', 'cs', 1, 'https://ror.org/0354d9t07 Nemocnice PodlesĆ­'),
(27042, 'https://ror.org/03hbktk11', 'no_lang_code', 1, 'https://ror.org/03hbktk11 GiTy (Czechia)'),
(27043, 'https://ror.org/00d059615', 'no_lang_code', 1, 'https://ror.org/00d059615 Komfi (Czechia)'),
(27044, 'https://ror.org/02wcxpr65', 'no_lang_code', 1, 'https://ror.org/02wcxpr65 ATAS (Czechia) ATAS elektromotory NƔchod'),
(27045, 'https://ror.org/020rxmm63', 'no_lang_code', 1, 'https://ror.org/020rxmm63 KovƔrna VIVA (Czechia)'),
(27046, 'https://ror.org/04e6rv019', 'no_lang_code', 1, 'https://ror.org/04e6rv019 Ateko (Czechia)'),
(27047, 'https://ror.org/05p2jqf06', 'no_lang_code', 1, 'https://ror.org/05p2jqf06 Continental (Czechia)'),
(27048, 'https://ror.org/01v53ec59', 'no_lang_code', 1, 'https://ror.org/01v53ec59 OCHI Inženýring (Czechia)'),
(27049, 'https://ror.org/0420yxq36', 'no_lang_code', 1, 'https://ror.org/0420yxq36 Demonta Trade (Czechia)'),
(27050, 'https://ror.org/013rj3567', 'en', 1, 'https://ror.org/013rj3567 Studio of Ecological Models'),
(27051, 'https://ror.org/01jcts315', 'no_lang_code', 1, 'https://ror.org/01jcts315 Green Gas (Czechia)'),
(27052, 'https://ror.org/02cfjr625', 'no_lang_code', 1, 'https://ror.org/02cfjr625 Kovohutě Příbram NĆ”stupnickĆ” (Czechia)'),
(27053, 'https://ror.org/03z4aa977', 'no_lang_code', 1, 'https://ror.org/03z4aa977 Atmos (Czechia)'),
(27054, 'https://ror.org/04hz6bt63', 'no_lang_code', 1, 'https://ror.org/04hz6bt63 Kovohutě Rokycany (Czechia)'),
(27055, 'https://ror.org/03h7hxc46', 'no_lang_code', 1, 'https://ror.org/03h7hxc46 OEZ (Czechia)'),
(27056, 'https://ror.org/01vtcxa47', 'no_lang_code', 1, 'https://ror.org/01vtcxa47 CoorsTek (Czechia)'),
(27057, 'https://ror.org/03sdmkg09', 'no_lang_code', 1, 'https://ror.org/03sdmkg09 ATOMA TepelnĆ” Technika (Czechia)'),
(27058, 'https://ror.org/009w67677', 'no_lang_code', 1, 'https://ror.org/009w67677 Cross ZlĆ­n (Czechia)'),
(27059, 'https://ror.org/01pdmef49', 'no_lang_code', 1, 'https://ror.org/01pdmef49 KKCG (Czechia)'),
(27060, 'https://ror.org/0456z6869', 'no_lang_code', 1, 'https://ror.org/0456z6869 Crytur (Czechia)'),
(27061, 'https://ror.org/041a5qb18', 'no_lang_code', 1, 'https://ror.org/041a5qb18 KPM Consult (Czechia)'),
(27062, 'https://ror.org/02yse4t33', 'no_lang_code', 1, 'https://ror.org/02yse4t33 Ham-Final (Czechia)'),
(27063, 'https://ror.org/0495bs219', 'no_lang_code', 1, 'https://ror.org/0495bs219 OKsystem (Czechia)'),
(27064, 'https://ror.org/02jywrv14', 'no_lang_code', 1, 'https://ror.org/02jywrv14 ON Semiconductor (Czechia)'),
(27065, 'https://ror.org/03q6c2121', 'no_lang_code', 1, 'https://ror.org/03q6c2121 CZ Loko (Czechia)'),
(27066, 'https://ror.org/05vqb6078', 'no_lang_code', 1, 'https://ror.org/05vqb6078 Oprox (Czechia)'),
(27067, 'https://ror.org/04bnhs754', 'no_lang_code', 1, 'https://ror.org/04bnhs754 Attl (Czechia)'),
(27068, 'https://ror.org/03ssg8h30', 'no_lang_code', 1, 'https://ror.org/03ssg8h30 Optaglio (Czechia)'),
(27069, 'https://ror.org/03e8pcr67', 'cs', 1, 'https://ror.org/03e8pcr67 KrajskÔ HygienickÔ Stanice Plzeňského Kraje se Sídlem v Plzni'),
(27070, 'https://ror.org/00fchwr06', 'no_lang_code', 1, 'https://ror.org/00fchwr06 Optokon (Czechia)'),
(27071, 'https://ror.org/05bqtq669', 'no_lang_code', 1, 'https://ror.org/05bqtq669 Royal HaskoningDHV (Czechia)'),
(27072, 'https://ror.org/04nxva438', 'no_lang_code', 1, 'https://ror.org/04nxva438 Czech Consult (Czechia)'),
(27073, 'https://ror.org/029ykak92', 'cs', 1, 'https://ror.org/029ykak92 KrajskĆ” HygienickĆ” Stanice StředočeskĆ©ho Kraje se SĆ­dlem v Praze'),
(27074, 'https://ror.org/029cdgh07', 'no_lang_code', 1, 'https://ror.org/029cdgh07 HBH Projekt (Czechia)'),
(27075, 'https://ror.org/03hmxxh50', 'en', 1, 'https://ror.org/03hmxxh50 Czech RE Agency'),
(27076, 'https://ror.org/04jhq1580', 'no_lang_code', 1, 'https://ror.org/04jhq1580 Azin (Czechia)'),
(27077, 'https://ror.org/059a0tw60', 'en', 1, 'https://ror.org/059a0tw60 DAPHNE Institute of Applied Ecology'),
(27078, 'https://ror.org/03hdcss70', 'cs', 1, 'https://ror.org/03hdcss70 KrajskĆ” ZdravotnĆ­'),
(27079, 'https://ror.org/05pnt1244', 'no_lang_code', 1, 'https://ror.org/05pnt1244 dataPartner (Czechia)'),
(27080, 'https://ror.org/03cd9qk80', 'no_lang_code', 1, 'https://ror.org/03cd9qk80 Heluz (Czechia)'),
(27081, 'https://ror.org/045101r15', 'no_lang_code', 1, 'https://ror.org/045101r15 B & M InterNets (Czechia)'),
(27082, 'https://ror.org/02hbg0y44', 'no_lang_code', 1, 'https://ror.org/02hbg0y44 Hofmeister (Czechia)'),
(27083, 'https://ror.org/03592wg71', 'no_lang_code', 1, 'https://ror.org/03592wg71 Decomkov Praha (Czechia)'),
(27084, 'https://ror.org/05pr0sx93', 'no_lang_code', 1, 'https://ror.org/05pr0sx93 Orgrez (Czechia)'),
(27085, 'https://ror.org/05ahk0y26', 'no_lang_code', 1, 'https://ror.org/05ahk0y26 KrÔtký Film Praha (Czechia)'),
(27086, 'https://ror.org/016mnyy39', 'no_lang_code', 1, 'https://ror.org/016mnyy39 Dekra (Czechia)'),
(27087, 'https://ror.org/00a7f9203', 'no_lang_code', 1, 'https://ror.org/00a7f9203 KRD (Czechia)'),
(27088, 'https://ror.org/03n38sb51', 'no_lang_code', 1, 'https://ror.org/03n38sb51 HornickĆ© muzeum Příbram Mining Museum Pribram'),
(27089, 'https://ror.org/01wgqyk09', 'no_lang_code', 1, 'https://ror.org/01wgqyk09 B&C Dopravnƭ SystƩmy (Czechia)'),
(27090, 'https://ror.org/027a68c09', 'no_lang_code', 1, 'https://ror.org/027a68c09 Oritest Group (Czechia)'),
(27091, 'https://ror.org/02nas7g61', 'en', 1, 'https://ror.org/02nas7g61 Czech and Slovak Crystallographic Association'),
(27092, 'https://ror.org/01aebfd38', 'no_lang_code', 1, 'https://ror.org/01aebfd38 Ortep (Czechia)'),
(27093, 'https://ror.org/02abkvw08', 'no_lang_code', 1, 'https://ror.org/02abkvw08 Linet (Czechia)'),
(27094, 'https://ror.org/03tekv166', 'no_lang_code', 1, 'https://ror.org/03tekv166 HOST vydavatelstvĆ­ (Czechia)'),
(27095, 'https://ror.org/00yc4pf20', 'no_lang_code', 1, 'https://ror.org/00yc4pf20 BD Sensors (Czechia)'),
(27096, 'https://ror.org/05fv5ah77', 'no_lang_code', 1, 'https://ror.org/05fv5ah77 LA Composite (Czechia)'),
(27097, 'https://ror.org/04srwt726', 'no_lang_code', 1, 'https://ror.org/04srwt726 HPH (Czechia)'),
(27098, 'https://ror.org/03a586v96', 'no_lang_code', 1, 'https://ror.org/03a586v96 Best - Business (Czechia)'),
(27099, 'https://ror.org/0058n8150', 'no_lang_code', 1, 'https://ror.org/0058n8150 Lasak (Czechia)'),
(27100, 'https://ror.org/033rd6g83', 'no_lang_code', 1, 'https://ror.org/033rd6g83 Beta Control (Czechia)'),
(27101, 'https://ror.org/022jkh022', 'no_lang_code', 1, 'https://ror.org/022jkh022 Hradecký Písek (Czechia)'),
(27102, 'https://ror.org/03yv6sb54', 'no_lang_code', 1, 'https://ror.org/03yv6sb54 OT Energy Services (Czechia)'),
(27103, 'https://ror.org/0379e1d13', 'no_lang_code', 1, 'https://ror.org/0379e1d13 Oseva Pro (Czechia)'),
(27104, 'https://ror.org/02x3whk24', 'no_lang_code', 1, 'https://ror.org/02x3whk24 Betosan (Czechia)'),
(27105, 'https://ror.org/002jehj87', 'no_lang_code', 1, 'https://ror.org/002jehj87 Hussite Museum Tabor'),
(27106, 'https://ror.org/02tb9dy59', 'no_lang_code', 1, 'https://ror.org/02tb9dy59 P-D Refractories (Czechia)'),
(27107, 'https://ror.org/01yjjdm95', 'no_lang_code', 1, 'https://ror.org/01yjjdm95 Lenam (Czechia)'),
(27108, 'https://ror.org/04ag50w09', 'no_lang_code', 1, 'https://ror.org/04ag50w09 Beznoska (Czechia)'),
(27109, 'https://ror.org/02bwv2c23', 'no_lang_code', 1, 'https://ror.org/02bwv2c23 Letecke Pristroje Praha (Czechia)'),
(27110, 'https://ror.org/01t2k5x76', 'no_lang_code', 1, 'https://ror.org/01t2k5x76 Deona Medi (Czechia)'),
(27111, 'https://ror.org/04mtv9h48', 'no_lang_code', 1, 'https://ror.org/04mtv9h48 Level (Czechia)'),
(27112, 'https://ror.org/00smk4k22', 'cs', 1, 'https://ror.org/00smk4k22 Observatory and planetarium ČeskĆ© Budějovice and Klet'' Observatory'),
(27113, 'https://ror.org/01km3r089', 'no_lang_code', 1, 'https://ror.org/01km3r089 Lias Vintířov (Czechia)'),
(27114, 'https://ror.org/05th78b98', 'cs', 1, 'https://ror.org/05th78b98 HvězdĆ”rna v Úpici Observatory Úpice'),
(27115, 'https://ror.org/00hbg5c91', 'no_lang_code', 1, 'https://ror.org/00hbg5c91 Business Innovation Centre (Czechia) PodnikatelskĆ© InovačnĆ­ Centrum'),
(27116, 'https://ror.org/01bq0zt34', 'no_lang_code', 1, 'https://ror.org/01bq0zt34 HVM Plasma (Czechia)'),
(27117, 'https://ror.org/05teadr95', 'cs', 1, 'https://ror.org/05teadr95 PamƔtnƭk NƔrodnƭho Pƭsemnictvƭ'),
(27118, 'https://ror.org/02k3bdy11', 'no_lang_code', 1, 'https://ror.org/02k3bdy11 Litmas (Czechia)'),
(27119, 'https://ror.org/050t9a084', 'no_lang_code', 1, 'https://ror.org/050t9a084 BIOPHARM (Czechia)'),
(27120, 'https://ror.org/02y561s55', 'no_lang_code', 1, 'https://ror.org/02y561s55 LOM Praha (Czechia)'),
(27121, 'https://ror.org/01r35da74', 'no_lang_code', 1, 'https://ror.org/01r35da74 Lƶw & Spol (Czechia)'),
(27122, 'https://ror.org/05cahxq83', 'no_lang_code', 1, 'https://ror.org/05cahxq83 Patron Bohemia (Czechia)'),
(27123, 'https://ror.org/025b8gs35', 'no_lang_code', 1, 'https://ror.org/025b8gs35 Bioveta (Czechia)'),
(27124, 'https://ror.org/00k5dse37', 'no_lang_code', 1, 'https://ror.org/00k5dse37 LučebnĆ­ ZĆ”vody Draslovka (Czechia)'),
(27125, 'https://ror.org/03sfj2c48', 'no_lang_code', 1, 'https://ror.org/03sfj2c48 Pegas Nonwovens (Czechia)'),
(27126, 'https://ror.org/035047r89', 'no_lang_code', 1, 'https://ror.org/035047r89 Hydrosystem Project (Czechia)'),
(27127, 'https://ror.org/03b4bdb78', 'no_lang_code', 1, 'https://ror.org/03b4bdb78 BLOCK (Czechia)'),
(27128, 'https://ror.org/038840v63', 'cs', 1, 'https://ror.org/038840v63 HygienickĆ” stanice hlavnĆ­ho města Prahy'),
(27129, 'https://ror.org/03qrxs205', 'no_lang_code', 1, 'https://ror.org/03qrxs205 Blumenbecker (Czechia)'),
(27130, 'https://ror.org/05tcz5141', 'no_lang_code', 1, 'https://ror.org/05tcz5141 BMT Medical Technology (Czechia)'),
(27131, 'https://ror.org/00k5yxn79', 'no_lang_code', 1, 'https://ror.org/00k5yxn79 Applus+ IDIADA (Czechia)'),
(27132, 'https://ror.org/02gxppt96', 'no_lang_code', 1, 'https://ror.org/02gxppt96 MateriÔlový A Metalurgický Výzkum (Czechia)'),
(27133, 'https://ror.org/020rnar76', 'no_lang_code', 1, 'https://ror.org/020rnar76 Bochemie (Czechia)'),
(27134, 'https://ror.org/05a4gt120', 'no_lang_code', 1, 'https://ror.org/05a4gt120 SQS Fiber Optics (Czechia) SQS VlƔknovƔ optika'),
(27135, 'https://ror.org/05r250n95', 'no_lang_code', 1, 'https://ror.org/05r250n95 Precheza (Czechia)'),
(27136, 'https://ror.org/01k93bx74', 'no_lang_code', 1, 'https://ror.org/01k93bx74 Borcad (Czechia)'),
(27137, 'https://ror.org/023b1vx40', 'no_lang_code', 1, 'https://ror.org/023b1vx40 MathAn Praha (Czechia)'),
(27138, 'https://ror.org/03sj6v857', 'cs', 1, 'https://ror.org/03sj6v857 Diagnostický Ústav pro MlÔdež'),
(27139, 'https://ror.org/05bqmct97', 'no_lang_code', 1, 'https://ror.org/05bqmct97 BorsodChem (Czechia)'),
(27140, 'https://ror.org/03jtq9874', 'no_lang_code', 1, 'https://ror.org/03jtq9874 STAPPA mix (Czechia)'),
(27141, 'https://ror.org/04q98sg39', 'en', 1, 'https://ror.org/04q98sg39 Prague Botanical Garden'),
(27142, 'https://ror.org/05mnfh623', 'no_lang_code', 1, 'https://ror.org/05mnfh623 STARMANS electronics (Czechia)'),
(27143, 'https://ror.org/01nsk9g93', 'cs', 1, 'https://ror.org/01nsk9g93 Matice MoravskĆ”'),
(27144, 'https://ror.org/02216ze18', 'no_lang_code', 1, 'https://ror.org/02216ze18 Pilsen Tools (Czechia)'),
(27145, 'https://ror.org/00fky1y76', 'no_lang_code', 1, 'https://ror.org/00fky1y76 MBT Metal (Czechia)'),
(27146, 'https://ror.org/000z6yg06', 'no_lang_code', 1, 'https://ror.org/000z6yg06 Brano Group (Czechia)'),
(27147, 'https://ror.org/00eqtt103', 'no_lang_code', 1, 'https://ror.org/00eqtt103 Pneukom (Czechia)'),
(27148, 'https://ror.org/01aq4v448', 'no_lang_code', 1, 'https://ror.org/01aq4v448 Dias Turnov (Czechia)'),
(27149, 'https://ror.org/00ay49j69', 'no_lang_code', 1, 'https://ror.org/00ay49j69 HlasovƩ centrum Praha Medical Healthcom (Czechia)'),
(27150, 'https://ror.org/05rgwjj62', 'no_lang_code', 1, 'https://ror.org/05rgwjj62 Medical Technologies (Czechia)'),
(27151, 'https://ror.org/002f6by15', 'no_lang_code', 1, 'https://ror.org/002f6by15 Dicom (Czechia)'),
(27152, 'https://ror.org/00kzy6m08', 'no_lang_code', 1, 'https://ror.org/00kzy6m08 PoličskĆ© StrojĆ­rny (Czechia)'),
(27153, 'https://ror.org/058qbcf90', 'no_lang_code', 1, 'https://ror.org/058qbcf90 PolyComp (Czechia)'),
(27154, 'https://ror.org/00wftzf58', 'no_lang_code', 1, 'https://ror.org/00wftzf58 Chepos (Czechia)'),
(27155, 'https://ror.org/04myyf417', 'en', 1, 'https://ror.org/04myyf417 State Institute for Drug Control StĆ”tnĆ­ Ústav pro Kontrolu LĆ©Äiv'),
(27156, 'https://ror.org/057makt82', 'en', 1, 'https://ror.org/057makt82 Institute of Applied Mechanics Instituts für angewandte Mechanik'),
(27157, 'https://ror.org/0475wjv32', 'no_lang_code', 1, 'https://ror.org/0475wjv32 Polygra (Czechia)'),
(27158, 'https://ror.org/03qcbea07', 'no_lang_code', 1, 'https://ror.org/03qcbea07 BTL ZdravotnickĆ” Technika (Czechia)'),
(27159, 'https://ror.org/009ty3557', 'no_lang_code', 1, 'https://ror.org/009ty3557 Stavexis (Czechia)'),
(27160, 'https://ror.org/01fjc2t47', 'no_lang_code', 1, 'https://ror.org/01fjc2t47 Stavus (Czechia)'),
(27161, 'https://ror.org/03ryzhm22', 'en', 1, 'https://ror.org/03ryzhm22 Czech Association of Geophysicists'),
(27162, 'https://ror.org/01mkmmc36', 'no_lang_code', 1, 'https://ror.org/01mkmmc36 Hop Research Institute (Czechia)'),
(27163, 'https://ror.org/02byvvk38', 'no_lang_code', 1, 'https://ror.org/02byvvk38 Disk (Czechia)'),
(27164, 'https://ror.org/00qte7767', 'no_lang_code', 1, 'https://ror.org/00qte7767 Camea (Czechia)'),
(27165, 'https://ror.org/05de33361', 'no_lang_code', 1, 'https://ror.org/05de33361 STEM (Czechia)'),
(27166, 'https://ror.org/05mx3tz05', 'no_lang_code', 1, 'https://ror.org/05mx3tz05 Polymer Institute Brno (Czechia)'),
(27167, 'https://ror.org/03zg21k42', 'en', 1, 'https://ror.org/03zg21k42 Sports Research Institute Of Czech Armed Forces'),
(27168, 'https://ror.org/002rp1x36', 'no_lang_code', 1, 'https://ror.org/002rp1x36 Siemens (Czechia)'),
(27169, 'https://ror.org/01yzd1685', 'no_lang_code', 1, 'https://ror.org/01yzd1685 Stomix (Czechia)'),
(27170, 'https://ror.org/0303m8c17', 'no_lang_code', 1, 'https://ror.org/0303m8c17 Pontex (Czechia)'),
(27171, 'https://ror.org/05t178043', 'no_lang_code', 1, 'https://ror.org/05t178043 Vyrtych (Czechia)'),
(27172, 'https://ror.org/00p08ff25', 'no_lang_code', 1, 'https://ror.org/00p08ff25 PortƔl (Czechia)'),
(27173, 'https://ror.org/01abd7j14', 'cs', 1, 'https://ror.org/01abd7j14 Ústav ArcheologickĆ© PamĆ”tkovĆ© PĆ©Äe SeverozĆ”padnĆ­ch Čech'),
(27174, 'https://ror.org/00grg8947', 'cs', 1, 'https://ror.org/00grg8947 Ústav ArcheologickĆ© PamĆ”tkovĆ© PĆ©Äe StřednĆ­ch Čech'),
(27175, 'https://ror.org/00v6e9296', 'no_lang_code', 1, 'https://ror.org/00v6e9296 Dormer Pramet Tools (Czechia)'),
(27176, 'https://ror.org/04qhg3f29', 'cs', 1, 'https://ror.org/04qhg3f29 StřednĆ­ uměleckoprÅÆmyslovĆ” Å”kola sklÔřskĆ” ValaÅ”skĆ© MeziÅ™Ć­ÄĆ­'),
(27177, 'https://ror.org/02dp3m016', 'no_lang_code', 1, 'https://ror.org/02dp3m016 Prefa Brno (Czechia)'),
(27178, 'https://ror.org/03cmqyv16', 'cs', 1, 'https://ror.org/03cmqyv16 StředočeskĆ© Muzeum v RoztokĆ”ch u Prahy'),
(27179, 'https://ror.org/03kmzs707', 'no_lang_code', 1, 'https://ror.org/03kmzs707 Strix Chomutov (Czechia)'),
(27180, 'https://ror.org/05ek5cn41', 'no_lang_code', 1, 'https://ror.org/05ek5cn41 Cogebi (Czechia)'),
(27181, 'https://ror.org/02mh2b743', 'no_lang_code', 1, 'https://ror.org/02mh2b743 Princip (Czechia)'),
(27182, 'https://ror.org/01cczbd45', 'no_lang_code', 1, 'https://ror.org/01cczbd45 PrimeCell Therapeutics (Czechia)'),
(27183, 'https://ror.org/02221cp63', 'no_lang_code', 1, 'https://ror.org/02221cp63 PROCES - Centre for Municipal and Regional Development (Czechia)'),
(27184, 'https://ror.org/045c1s446', 'en', 1, 'https://ror.org/045c1s446 Research and Breeding Institute of Pomology Holovousy'),
(27185, 'https://ror.org/05fwqpw07', 'no_lang_code', 1, 'https://ror.org/05fwqpw07 ProjectSoft (Czechia)'),
(27186, 'https://ror.org/01gq85p89', 'no_lang_code', 1, 'https://ror.org/01gq85p89 RPC Promens (Czechia)'),
(27187, 'https://ror.org/0351h0721', 'no_lang_code', 1, 'https://ror.org/0351h0721 ProSpon (Czechia)'),
(27188, 'https://ror.org/0587qta27', 'no_lang_code', 1, 'https://ror.org/0587qta27 Prototypa (Czechia)'),
(27189, 'https://ror.org/0165g4976', 'no_lang_code', 1, 'https://ror.org/0165g4976 Selton (Czechia) Výzkumné Centrum Selton'),
(27190, 'https://ror.org/04a3e3p04', 'no_lang_code', 1, 'https://ror.org/04a3e3p04 Doosan (Czechia)'),
(27191, 'https://ror.org/01a0xg480', 'no_lang_code', 1, 'https://ror.org/01a0xg480 STV Group (Czechia)'),
(27192, 'https://ror.org/036cz4488', 'no_lang_code', 1, 'https://ror.org/036cz4488 Sudop Praha (Czechia)'),
(27193, 'https://ror.org/01apvpc22', 'no_lang_code', 1, 'https://ror.org/01apvpc22 Summa (Czechia)'),
(27194, 'https://ror.org/02ad4my11', 'no_lang_code', 1, 'https://ror.org/02ad4my11 DopravnĆ­ RozvojovĆ© Středisko (Czechia)'),
(27195, 'https://ror.org/03yqhqq55', 'no_lang_code', 1, 'https://ror.org/03yqhqq55 SurfaceTreat (Czechia)'),
(27196, 'https://ror.org/0377t7h89', 'no_lang_code', 1, 'https://ror.org/0377t7h89 PrvnĆ­ ŽelezÔřskĆ” Společnost Kladno (Czechia)'),
(27197, 'https://ror.org/00ez0sd51', 'en', 1, 'https://ror.org/00ez0sd51 Institute for Environmental Policy'),
(27198, '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'),
(27199, 'https://ror.org/02fy2kw04', 'no_lang_code', 1, 'https://ror.org/02fy2kw04 Dufonev (Czechia)'),
(27200, 'https://ror.org/05t4srr46', 'en', 1, 'https://ror.org/05t4srr46 Centre for International Cooperation in Education'),
(27201, 'https://ror.org/048f9ne85', 'en', 1, 'https://ror.org/048f9ne85 Research Institute of Inorganic Chemistry Výzkumný ústav anorganické chemie, a.s.'),
(27202, 'https://ror.org/00ps2tb42', 'en', 1, 'https://ror.org/00ps2tb42 Confederation of Industry of the Czech Republic'),
(27203, 'https://ror.org/01tze4598', 'no_lang_code', 1, 'https://ror.org/01tze4598 SVCS Process Innovation (Czechia)'),
(27204, 'https://ror.org/04fgffc11', 'en', 1, 'https://ror.org/04fgffc11 Research Institute of Geodesy, Topography and Cartography'),
(27205, 'https://ror.org/05w61xa76', 'no_lang_code', 1, 'https://ror.org/05w61xa76 Delinfo (Czechia)'),
(27206, 'https://ror.org/028r0g017', 'no_lang_code', 1, 'https://ror.org/028r0g017 EMP (Czechia)'),
(27207, 'https://ror.org/04kc1rn33', 'no_lang_code', 1, 'https://ror.org/04kc1rn33 Rcd Radiokomunikace (Czechia)'),
(27208, 'https://ror.org/03nb5h994', 'no_lang_code', 1, 'https://ror.org/03nb5h994 EBIS (Czechia)'),
(27209, 'https://ror.org/04hfvq252', 'no_lang_code', 1, 'https://ror.org/04hfvq252 Research Institute of Binding Materials Prague (Czechia) Výzkumný ústav maltovin Praha'),
(27210, 'https://ror.org/0229a7v30', 'no_lang_code', 1, 'https://ror.org/0229a7v30 SVM Microwaves (Czechia)'),
(27211, 'https://ror.org/03tmd6r11', 'no_lang_code', 1, 'https://ror.org/03tmd6r11 ECO Trend (Czechia)'),
(27212, 'https://ror.org/050evx807', 'no_lang_code', 1, 'https://ror.org/050evx807 SVOS (Czechia)'),
(27213, 'https://ror.org/03w6h1q24', 'no_lang_code', 1, 'https://ror.org/03w6h1q24 UVB Technik (Czechia)'),
(27214, 'https://ror.org/039xc0449', 'no_lang_code', 1, 'https://ror.org/039xc0449 Ecofluid Group (Czechia)'),
(27215, 'https://ror.org/02vvanv81', 'no_lang_code', 1, 'https://ror.org/02vvanv81 Ecosond (Czechia)'),
(27216, 'https://ror.org/04e035w81', 'no_lang_code', 1, 'https://ror.org/04e035w81 Reflex (Czechia)'),
(27217, 'https://ror.org/04xxbqf41', 'no_lang_code', 1, 'https://ror.org/04xxbqf41 Symbiom (Czechia)'),
(27218, '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'),
(27219, 'https://ror.org/00m6vcy72', 'no_lang_code', 1, 'https://ror.org/00m6vcy72 Edip (Czechia)'),
(27220, 'https://ror.org/04x2nbf55', 'no_lang_code', 1, 'https://ror.org/04x2nbf55 Synthesia (Czechia)'),
(27221, 'https://ror.org/04mez0d16', 'en', 1, 'https://ror.org/04mez0d16 Regional Museum in Teplice RegionƔlnƭ muzeum v Teplicƭch'),
(27222, 'https://ror.org/012w6mj89', 'cs', 1, 'https://ror.org/012w6mj89 RegionĆ”lnĆ­ muzeum ve VysokĆ©m Mýtě VysokĆ© Mýto Regional Museum'),
(27223, 'https://ror.org/023gma697', 'no_lang_code', 1, 'https://ror.org/023gma697 Synthos Group (Czechia)'),
(27224, 'https://ror.org/04chene87', 'no_lang_code', 1, 'https://ror.org/04chene87 Eeip (Czechia)'),
(27225, 'https://ror.org/02tr3dx87', 'no_lang_code', 1, 'https://ror.org/02tr3dx87 Vakos XT (Czechia)'),
(27226, 'https://ror.org/01mhwy230', 'no_lang_code', 1, 'https://ror.org/01mhwy230 Řepařský Institut Semčice (Czechia)'),
(27227, 'https://ror.org/02a67c878', 'no_lang_code', 1, 'https://ror.org/02a67c878 Vakuum Praha (Czechia)'),
(27228, 'https://ror.org/049aaxv89', 'no_lang_code', 1, 'https://ror.org/049aaxv89 Sysnet (Czechia)'),
(27229, 'https://ror.org/0450r7s53', 'no_lang_code', 1, 'https://ror.org/0450r7s53 T-CZ (Czechia)'),
(27230, 'https://ror.org/05nv0ff14', 'no_lang_code', 1, 'https://ror.org/05nv0ff14 Retia (Czechia)'),
(27231, 'https://ror.org/02bwrhb42', 'no_lang_code', 1, 'https://ror.org/02bwrhb42 EnerGoConsult (Czechia)'),
(27232, 'https://ror.org/02k8qat92', 'cs', 1, 'https://ror.org/02k8qat92 ValaÅ”skĆ© Muzeum v Přírodě'),
(27233, 'https://ror.org/01e15b368', 'no_lang_code', 1, 'https://ror.org/01e15b368 ƚVP Běchovice (Czechia)'),
(27234, 'https://ror.org/012pr3y94', 'no_lang_code', 1, 'https://ror.org/012pr3y94 Variel (Czechia)'),
(27235, 'https://ror.org/04p5w4d81', 'no_lang_code', 1, 'https://ror.org/04p5w4d81 Vinci (Czechia)');
INSERT INTO `rors` VALUES
(27236, '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.'),
(27237, 'https://ror.org/006rbkq36', 'no_lang_code', 1, 'https://ror.org/006rbkq36 T-MAPY (Czechia)'),
(27238, 'https://ror.org/03p94a441', 'no_lang_code', 1, 'https://ror.org/03p94a441 Rieter (Czechia)'),
(27239, 'https://ror.org/00w2phz39', 'no_lang_code', 1, 'https://ror.org/00w2phz39 Rigaku Innovative Technologies Europe (Czechia)'),
(27240, 'https://ror.org/02j6rby23', 'no_lang_code', 1, 'https://ror.org/02j6rby23 Ekola (Czechia)'),
(27241, 'https://ror.org/051gphn80', 'no_lang_code', 1, 'https://ror.org/051gphn80 Pneuven (Czechia)'),
(27242, 'https://ror.org/04xbzq724', 'no_lang_code', 1, 'https://ror.org/04xbzq724 VF (Czechia)'),
(27243, 'https://ror.org/02dh37d82', 'no_lang_code', 1, 'https://ror.org/02dh37d82 Vidia (Czechia)'),
(27244, 'https://ror.org/013gnym04', 'no_lang_code', 1, 'https://ror.org/013gnym04 Tanger computersystems'),
(27245, 'https://ror.org/05vayj190', 'en', 1, 'https://ror.org/05vayj190 Bee Research Institute Institut für Bienenforschung'),
(27246, 'https://ror.org/05jyzsv32', 'no_lang_code', 1, 'https://ror.org/05jyzsv32 Ekotoxa (Czechia)'),
(27247, 'https://ror.org/00rb9a558', 'en', 1, 'https://ror.org/00rb9a558 Technical museum in Brno TechnickĆ© muzeum v Brně'),
(27248, 'https://ror.org/00p70j486', 'no_lang_code', 1, 'https://ror.org/00p70j486 Romotop (Czechia)'),
(27249, 'https://ror.org/025gjwv49', 'no_lang_code', 1, 'https://ror.org/025gjwv49 Ekowatt (Czechia)'),
(27250, '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'),
(27251, 'https://ror.org/025s3sg85', 'no_lang_code', 1, 'https://ror.org/025s3sg85 Elceram (Czechia)'),
(27252, 'https://ror.org/029nrcq47', 'no_lang_code', 1, 'https://ror.org/029nrcq47 RS Dynamics (Czechia)'),
(27253, 'https://ror.org/04szbnb37', 'no_lang_code', 1, 'https://ror.org/04szbnb37 Vision Consulting Automotive (Czechia)'),
(27254, 'https://ror.org/02m4xf424', 'no_lang_code', 1, 'https://ror.org/02m4xf424 WAK System (Czechia)'),
(27255, 'https://ror.org/014q5e672', 'no_lang_code', 1, 'https://ror.org/014q5e672 Tedom (Czechia)'),
(27256, 'https://ror.org/016jek077', 'no_lang_code', 1, 'https://ror.org/016jek077 VĆ­tkovice Machinery Group (Czechia)'),
(27257, 'https://ror.org/00x705929', 'no_lang_code', 1, 'https://ror.org/00x705929 VƭtkovickƩ SlƩvƔrny (Czechia)'),
(27258, 'https://ror.org/05vng4613', 'no_lang_code', 1, 'https://ror.org/05vng4613 Wastech (Czechia)'),
(27259, 'https://ror.org/04v6fdx75', 'no_lang_code', 1, 'https://ror.org/04v6fdx75 Sako Brno (Czechia)'),
(27260, 'https://ror.org/05h9b8280', 'cs', 1, 'https://ror.org/05h9b8280 VlastivědnĆ© Muzeum Dr. HostaÅ”e v Klatovech'),
(27261, 'https://ror.org/047ref397', 'no_lang_code', 1, 'https://ror.org/047ref397 Telematix Group (Czechia)'),
(27262, 'https://ror.org/00beege11', 'no_lang_code', 1, 'https://ror.org/00beege11 Webnode (Czechia)'),
(27263, 'https://ror.org/014qh1461', 'cs', 1, 'https://ror.org/014qh1461 Regional Museum in Olomouc VlastivědnĆ© Muzeum v Olomouci'),
(27264, 'https://ror.org/00kswsq18', 'no_lang_code', 1, 'https://ror.org/00kswsq18 Sand Team (Czechia)'),
(27265, 'https://ror.org/002ec3041', 'no_lang_code', 1, 'https://ror.org/002ec3041 Vodni Zdroje (Czechia)'),
(27266, 'https://ror.org/05yjmg052', 'no_lang_code', 1, 'https://ror.org/05yjmg052 Temex (Czechia)'),
(27267, 'https://ror.org/000qred46', 'no_lang_code', 1, 'https://ror.org/000qred46 Zero Liquid Discharge (Czechia)'),
(27268, 'https://ror.org/032xpkz45', 'no_lang_code', 1, 'https://ror.org/032xpkz45 Tenza (Czechia)'),
(27269, 'https://ror.org/00jwjhn70', 'no_lang_code', 1, 'https://ror.org/00jwjhn70 Satturn HoleŔov (Czechia)'),
(27270, 'https://ror.org/05c951c38', 'no_lang_code', 1, 'https://ror.org/05c951c38 Termizo (Czechia)'),
(27271, 'https://ror.org/01d5d9q11', 'no_lang_code', 1, 'https://ror.org/01d5d9q11 VodohospodÔřský Rozvoj a Výstavba'),
(27272, 'https://ror.org/017ybv328', 'no_lang_code', 1, 'https://ror.org/017ybv328 TES Vsetƍn (Czechia)'),
(27273, 'https://ror.org/00kvxyg87', 'no_lang_code', 1, 'https://ror.org/00kvxyg87 Tesla Blatna (Czechia)'),
(27274, 'https://ror.org/01jwyc227', 'no_lang_code', 1, 'https://ror.org/01jwyc227 VOP (Czechia)'),
(27275, 'https://ror.org/020czch62', 'no_lang_code', 1, 'https://ror.org/020czch62 TESLA (Czechia)'),
(27276, 'https://ror.org/03ef2km18', 'no_lang_code', 1, 'https://ror.org/03ef2km18 SBP Consult'),
(27277, 'https://ror.org/01e0a6275', 'no_lang_code', 1, 'https://ror.org/01e0a6275 Military Research Institute Vojenský Výzkumný Ústav'),
(27278, 'https://ror.org/01ba09j13', 'no_lang_code', 1, 'https://ror.org/01ba09j13 Edinburgh Instruments (United Kingdom)'),
(27279, 'https://ror.org/03zz2hh98', 'no_lang_code', 1, 'https://ror.org/03zz2hh98 VR Group (Czechia)'),
(27280, 'https://ror.org/02esqkz27', 'no_lang_code', 1, 'https://ror.org/02esqkz27 ZĆ”vod AutomatizačnĆ­ Techniky (Czechia)'),
(27281, 'https://ror.org/04qvy9k41', 'no_lang_code', 1, 'https://ror.org/04qvy9k41 Evotec (United Kingdom)'),
(27282, 'https://ror.org/056rqtp72', 'no_lang_code', 1, 'https://ror.org/056rqtp72 VRL Praha (Czechia)'),
(27283, 'https://ror.org/019nq5750', 'no_lang_code', 1, 'https://ror.org/019nq5750 Tieto (Czechia)'),
(27284, 'https://ror.org/004mb3588', 'no_lang_code', 1, 'https://ror.org/004mb3588 TL Ultralight (Czechia)'),
(27285, 'https://ror.org/02hhqwv47', 'no_lang_code', 1, 'https://ror.org/02hhqwv47 Tonak (Czechia)'),
(27286, 'https://ror.org/052bawr89', 'no_lang_code', 1, 'https://ror.org/052bawr89 TOS Kuřim (Czechia)'),
(27287, 'https://ror.org/03ymnzh47', 'no_lang_code', 1, 'https://ror.org/03ymnzh47 TOS Varnsdorf (Czechia)'),
(27288, 'https://ror.org/02ggx8458', 'no_lang_code', 1, 'https://ror.org/02ggx8458 Vuab Pharma (Czechia)'),
(27289, 'https://ror.org/02xzh7w80', 'no_lang_code', 1, 'https://ror.org/02xzh7w80 SE-MI Technology (Czechia)'),
(27290, 'https://ror.org/05apvj660', 'no_lang_code', 1, 'https://ror.org/05apvj660 Toshulin (Czechia)'),
(27291, 'https://ror.org/04bcyx979', 'cs', 1, 'https://ror.org/04bcyx979 VŔeobecnÔ UverovÔ Banka'),
(27292, 'https://ror.org/014pw6s10', 'en', 1, 'https://ror.org/014pw6s10 Public Health Institute Ostrava ZdravotnĆ­ Ćŗstav se sĆ­dlem v Ostravě'),
(27293, 'https://ror.org/05t7wa168', 'no_lang_code', 1, 'https://ror.org/05t7wa168 Trakce (Czechia)'),
(27294, 'https://ror.org/05ybw7k58', 'no_lang_code', 1, 'https://ror.org/05ybw7k58 VUC Praha (Czechia)'),
(27295, 'https://ror.org/00b52zb38', 'no_lang_code', 1, 'https://ror.org/00b52zb38 Tramaz (Czechia)'),
(27296, 'https://ror.org/05g59rq62', 'no_lang_code', 1, 'https://ror.org/05g59rq62 VUES Brno (Czechia)'),
(27297, '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'),
(27298, 'https://ror.org/01ntg7h46', 'no_lang_code', 1, 'https://ror.org/01ntg7h46 VÚHŽ (Czechia)'),
(27299, 'https://ror.org/01bw8k626', 'no_lang_code', 1, 'https://ror.org/01bw8k626 SHM (Czechia)'),
(27300, 'https://ror.org/04515fs89', 'no_lang_code', 1, 'https://ror.org/04515fs89 Vuje (Czechia)'),
(27301, 'https://ror.org/04nvvrb20', 'no_lang_code', 1, 'https://ror.org/04nvvrb20 Dakel (Czechia)'),
(27302, 'https://ror.org/00wwdre49', 'no_lang_code', 1, 'https://ror.org/00wwdre49 Trexima (Czechia)'),
(27303, 'https://ror.org/04ahqr359', 'en', 1, 'https://ror.org/04ahqr359 Jewish Museum in Prague Židovské muzeum v Praze'),
(27304, 'https://ror.org/02e8gsm88', 'no_lang_code', 1, 'https://ror.org/02e8gsm88 ZKL (Czechia)'),
(27305, 'https://ror.org/04dq6em15', 'no_lang_code', 1, 'https://ror.org/04dq6em15 Tribotec (Czechia)'),
(27306, 'https://ror.org/04wv1t552', 'no_lang_code', 1, 'https://ror.org/04wv1t552 T-Soft (Czechia)'),
(27307, 'https://ror.org/05qdadx80', 'no_lang_code', 1, 'https://ror.org/05qdadx80 Prague Research Institute of Railway Rolling Stock VUKV (Czechia)'),
(27308, 'https://ror.org/05rbemn16', 'no_lang_code', 1, 'https://ror.org/05rbemn16 Tajmac-zps (Czechia)'),
(27309, 'https://ror.org/00p29dt33', 'no_lang_code', 1, 'https://ror.org/00p29dt33 SIGMA Výzkumný a Vývojový Ústav (Czechia)'),
(27310, 'https://ror.org/0231s0n71', 'no_lang_code', 1, 'https://ror.org/0231s0n71 Watrad (Czechia)'),
(27311, 'https://ror.org/041c53527', 'no_lang_code', 1, 'https://ror.org/041c53527 Třinec Iron and Steel Works TřineckĆ© ŽelezĆ”rny (Czechia)'),
(27312, 'https://ror.org/01aa9v197', 'no_lang_code', 1, 'https://ror.org/01aa9v197 Zbrojovka VsetĆ­n (Czechia)'),
(27313, 'https://ror.org/02bkptf71', 'no_lang_code', 1, 'https://ror.org/02bkptf71 SilničnĆ­ Vývoj (Czechia)'),
(27314, 'https://ror.org/03455qw25', 'no_lang_code', 1, 'https://ror.org/03455qw25 Trumf International (Czechia)'),
(27315, 'https://ror.org/032dg3327', 'no_lang_code', 1, 'https://ror.org/032dg3327 Trystom (Czechia)'),
(27316, 'https://ror.org/010xtt879', 'no_lang_code', 1, 'https://ror.org/010xtt879 VUP Medical (Czechia) Výzkumný Ústav Pletařský'),
(27317, '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.'),
(27318, 'https://ror.org/02c875652', 'no_lang_code', 1, 'https://ror.org/02c875652 Research Institute of Textile Machinery VUTS (Czechia)'),
(27319, 'https://ror.org/03rzxvn19', 'no_lang_code', 1, 'https://ror.org/03rzxvn19 Crystalite Bohemia (Czechia)'),
(27320, 'https://ror.org/03kjjdy81', 'no_lang_code', 1, 'https://ror.org/03kjjdy81 ŽĎAS (Czechia)'),
(27321, 'https://ror.org/01mr2n737', 'no_lang_code', 1, 'https://ror.org/01mr2n737 Å koda (Czechia)'),
(27322, 'https://ror.org/01mtmt650', 'no_lang_code', 1, 'https://ror.org/01mtmt650 TTC Telekomunikace (Czechia)'),
(27323, 'https://ror.org/01yk0dg70', 'no_lang_code', 1, 'https://ror.org/01yk0dg70 VVUU (Czechia)'),
(27324, 'https://ror.org/04mfnn392', 'no_lang_code', 1, 'https://ror.org/04mfnn392 VVV Most (Czechia)'),
(27325, 'https://ror.org/00vnfjq11', 'no_lang_code', 1, 'https://ror.org/00vnfjq11 CereProc (United Kingdom)'),
(27326, 'https://ror.org/01hzjbc83', 'no_lang_code', 1, 'https://ror.org/01hzjbc83 TÜV SÜD (Czechia)'),
(27327, 'https://ror.org/00dh8qa61', 'en', 1, 'https://ror.org/00dh8qa61 East Bohemian Museum in Pardubice VýchodočeskĆ© muzeum v PardubicĆ­ch'),
(27328, 'https://ror.org/01n0ygw36', 'en', 1, 'https://ror.org/01n0ygw36 Slamka Consulting'),
(27329, 'https://ror.org/01xc8qy31', 'no_lang_code', 1, 'https://ror.org/01xc8qy31 Ujp Praha (Czechia)'),
(27330, 'https://ror.org/01083gz70', 'no_lang_code', 1, 'https://ror.org/01083gz70 Daiichi Sankyo (United Kingdom)'),
(27331, 'https://ror.org/01nsvrs46', 'no_lang_code', 1, 'https://ror.org/01nsvrs46 UniControls (Czechia)'),
(27332, 'https://ror.org/03d94a118', 'no_lang_code', 1, 'https://ror.org/03d94a118 SatisGeo (Czechia)'),
(27333, 'https://ror.org/00fmwma48', 'en', 1, 'https://ror.org/00fmwma48 Alaska Fisheries Development Foundation'),
(27334, 'https://ror.org/006sy0h18', 'no_lang_code', 1, 'https://ror.org/006sy0h18 Unit Plus (Czechia)'),
(27335, 'https://ror.org/008wejk32', 'en', 1, 'https://ror.org/008wejk32 Trauma Hospital of Brno ÚrazovÔ nemocnice'),
(27336, 'https://ror.org/05j159d85', 'no_lang_code', 1, 'https://ror.org/05j159d85 Å meral Brno (Czechia)'),
(27337, 'https://ror.org/03k3r1802', 'no_lang_code', 1, 'https://ror.org/03k3r1802 URC Systems (Czechia)'),
(27338, 'https://ror.org/033kqn293', 'no_lang_code', 1, 'https://ror.org/033kqn293 SMS (Czechia)'),
(27339, 'https://ror.org/016wtjs52', 'no_lang_code', 1, 'https://ror.org/016wtjs52 Sobriety (Czechia) Střízlivost'),
(27340, 'https://ror.org/03gz4ds16', 'no_lang_code', 1, 'https://ror.org/03gz4ds16 ÚRS Praha (Czechia)'),
(27341, 'https://ror.org/05avebb86', 'en', 1, 'https://ror.org/05avebb86 Alaska Native Harbor Seal Commission'),
(27342, 'https://ror.org/02jb0mk52', 'no_lang_code', 1, 'https://ror.org/02jb0mk52 International Data Group (United States)'),
(27343, 'https://ror.org/03decxd42', 'no_lang_code', 1, 'https://ror.org/03decxd42 Software602 (Czechia)'),
(27344, 'https://ror.org/05mjgmf63', 'en', 1, 'https://ror.org/05mjgmf63 Aleut Marine Mammal Commission'),
(27345, 'https://ror.org/007jmf435', 'en', 1, 'https://ror.org/007jmf435 Ecology Action'),
(27346, 'https://ror.org/014jej306', 'en', 1, 'https://ror.org/014jej306 Alice Ferguson Foundation'),
(27347, 'https://ror.org/05ex3a966', 'en', 1, 'https://ror.org/05ex3a966 Ecotrust'),
(27348, 'https://ror.org/034teep98', 'no_lang_code', 1, 'https://ror.org/034teep98 SOMA Engineering (Czechia)'),
(27349, 'https://ror.org/00d8vfy18', 'no_lang_code', 1, 'https://ror.org/00d8vfy18 Seawater Greenhouse (United Kingdom)'),
(27350, 'https://ror.org/00swfpj56', 'no_lang_code', 1, 'https://ror.org/00swfpj56 Alu Like'),
(27351, 'https://ror.org/032zdh829', 'no_lang_code', 1, 'https://ror.org/032zdh829 Soning (Czechia)'),
(27352, 'https://ror.org/01a26qd14', 'en', 1, 'https://ror.org/01a26qd14 American Littoral Society'),
(27353, 'https://ror.org/01jseqj92', 'en', 1, 'https://ror.org/01jseqj92 Elkhorn Slough Foundation'),
(27354, 'https://ror.org/04n0gan09', 'no_lang_code', 1, 'https://ror.org/04n0gan09 Hakel (Czechia)'),
(27355, 'https://ror.org/01w0a0q45', 'no_lang_code', 1, 'https://ror.org/01w0a0q45 Speel Praha (Czechia)'),
(27356, 'https://ror.org/03ntmq932', 'en', 1, 'https://ror.org/03ntmq932 American Rivers'),
(27357, 'https://ror.org/0236n1k26', 'en', 1, 'https://ror.org/0236n1k26 Association of the Innovation Center of Electronics'),
(27358, 'https://ror.org/0183bt791', 'en', 1, 'https://ror.org/0183bt791 Rhode Island Department of Environmental Management'),
(27359, 'https://ror.org/0242zbf37', 'en', 1, 'https://ror.org/0242zbf37 Alaska Seafood Marketing Institute'),
(27360, 'https://ror.org/04zs74560', 'no_lang_code', 1, 'https://ror.org/04zs74560 Společnost pro Obnovu Vesnice a MalĆ©ho Města'),
(27361, 'https://ror.org/0234wz714', 'no_lang_code', 1, 'https://ror.org/0234wz714 Environmental Technologies (United States)'),
(27362, 'https://ror.org/03dbkxb13', 'en', 1, 'https://ror.org/03dbkxb13 Erie MetroParks'),
(27363, 'https://ror.org/046d7bv94', 'no_lang_code', 1, 'https://ror.org/046d7bv94 Lodestar Research Corporation (United States)'),
(27364, 'https://ror.org/00s4n9v76', 'no_lang_code', 1, 'https://ror.org/00s4n9v76 Sasol (United Kingdom)'),
(27365, 'https://ror.org/0459j6s55', 'no_lang_code', 1, 'https://ror.org/0459j6s55 Intertek (United Kingdom)'),
(27366, 'https://ror.org/02cmw6227', 'cs', 1, 'https://ror.org/02cmw6227 KrkonoŔe Mountains National Park SprÔva KrkonoŔského NÔrodního Parku'),
(27367, 'https://ror.org/03nw44p55', 'cs', 1, 'https://ror.org/03nw44p55 Å umava National Park'),
(27368, 'https://ror.org/02s9hd024', 'no_lang_code', 1, 'https://ror.org/02s9hd024 Spur (Czechia)'),
(27369, 'https://ror.org/05rbe6d26', 'en', 1, 'https://ror.org/05rbe6d26 Anacostia Watershed Society'),
(27370, 'https://ror.org/058afab11', 'en', 1, 'https://ror.org/058afab11 Exploring New Horizons'),
(27371, 'https://ror.org/025qjtp52', 'en', 1, 'https://ror.org/025qjtp52 Annapolis Maritime Museum'),
(27372, 'https://ror.org/02sqe5a64', 'en', 1, 'https://ror.org/02sqe5a64 Puget Sound Restoration Fund'),
(27373, 'https://ror.org/03dxr8478', 'en', 1, 'https://ror.org/03dxr8478 Farallones Marine Sanctuary Association'),
(27374, 'https://ror.org/024v1qn33', 'en', 1, 'https://ror.org/024v1qn33 Arizona State Land Department'),
(27375, 'https://ror.org/020stct92', 'en', 1, 'https://ror.org/020stct92 Department of Conservation and Recreation'),
(27376, 'https://ror.org/05f2ywb48', 'no_lang_code', 1, 'https://ror.org/05f2ywb48 Regenstrief Institute'),
(27377, 'https://ror.org/001rxva70', 'en', 1, 'https://ror.org/001rxva70 Recreation and Conservation Office'),
(27378, 'https://ror.org/04c9fd109', 'en', 1, 'https://ror.org/04c9fd109 Reef Environmental Education Foundation'),
(27379, 'https://ror.org/04dmdc523', 'en', 1, 'https://ror.org/04dmdc523 Association of Environmental and Resource Economists'),
(27380, 'https://ror.org/04rry3397', 'en', 1, 'https://ror.org/04rry3397 Massachusetts Energy and Environmental Affairs'),
(27381, 'https://ror.org/0057j2q22', 'en', 1, 'https://ror.org/0057j2q22 Pennsylvania Fish and Boat Commission'),
(27382, 'https://ror.org/05v8e1c02', 'en', 1, 'https://ror.org/05v8e1c02 Massachusetts Department of Fish & Game'),
(27383, 'https://ror.org/01xcp0546', 'no_lang_code', 1, 'https://ror.org/01xcp0546 Fishmaster (United States)'),
(27384, 'https://ror.org/02ngpcc15', 'no_lang_code', 1, 'https://ror.org/02ngpcc15 CompX (United States)'),
(27385, 'https://ror.org/003042j23', 'en', 1, 'https://ror.org/003042j23 Gulf of Maine Association'),
(27386, 'https://ror.org/04n9bkr44', 'no_lang_code', 1, 'https://ror.org/04n9bkr44 Micronesia Conservation Trust'),
(27387, 'https://ror.org/05btp4k45', 'en', 1, 'https://ror.org/05btp4k45 FishAmerica Foundation'),
(27388, 'https://ror.org/044w7r064', 'en', 1, 'https://ror.org/044w7r064 Restore America''s Estuaries'),
(27389, 'https://ror.org/02yx5w936', 'en', 1, 'https://ror.org/02yx5w936 Bering Sea Fishermen’s Association'),
(27390, 'https://ror.org/00dpn5080', 'en', 1, 'https://ror.org/00dpn5080 Coastal Resources Management Council'),
(27391, 'https://ror.org/03q6r4119', 'en', 1, 'https://ror.org/03q6r4119 Transportation Corridor Agencies'),
(27392, 'https://ror.org/037fds271', 'en', 1, 'https://ror.org/037fds271 Boxerwood Nature Center and Woodland Garden'),
(27393, 'https://ror.org/042cy6c15', 'en', 1, 'https://ror.org/042cy6c15 Salish Sea Expeditions'),
(27394, 'https://ror.org/02bk71j42', 'en', 1, 'https://ror.org/02bk71j42 Alaska Department of Military and Veterans Affairs'),
(27395, 'https://ror.org/00qf4ya40', 'en', 1, 'https://ror.org/00qf4ya40 EarthCorps'),
(27396, 'https://ror.org/04wn0mt15', 'en', 1, 'https://ror.org/04wn0mt15 Washington Military Department'),
(27397, 'https://ror.org/02bhpc673', 'en', 1, 'https://ror.org/02bhpc673 Bristol Bay Native Association'),
(27398, 'https://ror.org/025vabz67', 'en', 1, 'https://ror.org/025vabz67 California Coastal Commission'),
(27399, 'https://ror.org/005fbjb88', 'en', 1, 'https://ror.org/005fbjb88 San Diego Unified Port District'),
(27400, 'https://ror.org/007dt0y58', 'en', 1, 'https://ror.org/007dt0y58 Pacific Marine Mammal Center'),
(27401, 'https://ror.org/02ddvb580', 'en', 1, 'https://ror.org/02ddvb580 Oregon Department of Geology and Mineral Industries'),
(27402, 'https://ror.org/02ywx2b39', 'en', 1, 'https://ror.org/02ywx2b39 Resource Conservation District of Santa Cruz County'),
(27403, 'https://ror.org/056vcnr65', 'en', 1, 'https://ror.org/056vcnr65 Minnesota Department of Natural Resources'),
(27404, 'https://ror.org/001tjgg88', 'en', 1, 'https://ror.org/001tjgg88 Save the Bay'),
(27405, 'https://ror.org/0563jgr23', 'en', 1, 'https://ror.org/0563jgr23 Save the Whales'),
(27406, 'https://ror.org/04vzsq290', 'en', 1, 'https://ror.org/04vzsq290 Mississippi Alabama Sea Grant Consortium'),
(27407, 'https://ror.org/0097e1k27', 'en', 1, 'https://ror.org/0097e1k27 Wright-Patterson Air Force Base'),
(27408, 'https://ror.org/01z91qx97', 'en', 1, 'https://ror.org/01z91qx97 Sea Research Foundation'),
(27409, 'https://ror.org/015tjr078', 'en', 1, 'https://ror.org/015tjr078 California Marine Sanctuary Foundation'),
(27410, 'https://ror.org/05n4v6b27', 'en', 1, 'https://ror.org/05n4v6b27 Maritime Gloucester'),
(27411, 'https://ror.org/02aps7m22', 'en', 1, 'https://ror.org/02aps7m22 Golden Gate National Parks Conservancy'),
(27412, 'https://ror.org/05yay2120', 'en', 1, 'https://ror.org/05yay2120 Monk Seal Foundation'),
(27413, 'https://ror.org/02sz0ks17', 'en', 1, 'https://ror.org/02sz0ks17 Canaan Valley Institute'),
(27414, 'https://ror.org/05dpjef75', 'en', 1, 'https://ror.org/05dpjef75 Seacoast Science Center'),
(27415, 'https://ror.org/05fqwcn05', 'en', 1, 'https://ror.org/05fqwcn05 SeaWeb'),
(27416, 'https://ror.org/01txr9233', 'en', 1, 'https://ror.org/01txr9233 Great Lakes Commission'),
(27417, 'https://ror.org/04zwjnc85', 'en', 1, 'https://ror.org/04zwjnc85 Carmel Unified School District'),
(27418, 'https://ror.org/04z1ced74', 'en', 1, 'https://ror.org/04z1ced74 Cascadia Research Collective'),
(27419, 'https://ror.org/04qbhz780', 'no_lang_code', 1, 'https://ror.org/04qbhz780 Mrag Americas (United States)'),
(27420, 'https://ror.org/0299k9v97', 'en', 1, 'https://ror.org/0299k9v97 Hudson River Valley Greenway'),
(27421, 'https://ror.org/03tsq7092', 'en', 1, 'https://ror.org/03tsq7092 Shedd Aquarium'),
(27422, 'https://ror.org/03wzf8z32', 'en', 1, 'https://ror.org/03wzf8z32 Center for Alaskan Coastal Studies'),
(27423, 'https://ror.org/039sshh33', 'no_lang_code', 1, 'https://ror.org/039sshh33 Children of the Sea Na Kama Kai'),
(27424, 'https://ror.org/00eqjev45', 'en', 1, 'https://ror.org/00eqjev45 Society for the Protection of New Hampshire Forests'),
(27425, 'https://ror.org/04h8p1q11', 'en', 1, 'https://ror.org/04h8p1q11 South Atlantic Fishery Management Council'),
(27426, 'https://ror.org/05jhzfe38', 'en', 1, 'https://ror.org/05jhzfe38 Southwest Wetlands Interpretive Association'),
(27427, 'https://ror.org/04km2jv85', 'en', 1, 'https://ror.org/04km2jv85 National Estuarine Research Reserve Association Sistema Nacional de Reservas de Investigación Estuarina'),
(27428, 'https://ror.org/045fn2c25', 'en', 1, 'https://ror.org/045fn2c25 St.Tammany Parish Government'),
(27429, 'https://ror.org/01250xt95', 'en', 1, 'https://ror.org/01250xt95 National Fish and Wildlife Foundation'),
(27430, 'https://ror.org/05ew8ve77', 'en', 1, 'https://ror.org/05ew8ve77 Gulf & South Atlantic Fisheries Foundation'),
(27431, 'https://ror.org/02d4sgc96', 'en', 1, 'https://ror.org/02d4sgc96 Oyster Recovery Partnership'),
(27432, 'https://ror.org/03tvrky57', 'en', 1, 'https://ror.org/03tvrky57 Chesapeake Bay Foundation'),
(27433, 'https://ror.org/04c89v556', 'en', 1, 'https://ror.org/04c89v556 National Fisheries Institute'),
(27434, 'https://ror.org/04sfqar89', 'en', 1, 'https://ror.org/04sfqar89 National Marine Life Center'),
(27435, 'https://ror.org/03yj9h174', 'en', 1, 'https://ror.org/03yj9h174 Gulf and Caribbean Fisheries Institute'),
(27436, 'https://ror.org/03c7trt86', 'en', 1, 'https://ror.org/03c7trt86 Center for Social and Environmental Stewardship'),
(27437, 'https://ror.org/00gxhrz08', 'en', 1, 'https://ror.org/00gxhrz08 Gulf of Alaska Coastal Communities Coalition'),
(27438, 'https://ror.org/037wnwd29', 'no_lang_code', 1, 'https://ror.org/037wnwd29 Safina (Czechia)'),
(27439, 'https://ror.org/03jm2w382', 'en', 1, 'https://ror.org/03jm2w382 Gulf of Alaska Keeper'),
(27440, 'https://ror.org/01k0nxd36', 'en', 1, 'https://ror.org/01k0nxd36 Gulf of Maine Lobster Foundation'),
(27441, 'https://ror.org/0247jm624', 'en', 1, 'https://ror.org/0247jm624 Gulf of Mexico Foundation'),
(27442, 'https://ror.org/036b8hr27', 'en', 1, 'https://ror.org/036b8hr27 Michigan State Police'),
(27443, 'https://ror.org/015bdn754', 'no_lang_code', 1, 'https://ror.org/015bdn754 Hanalei Watershed Hui'),
(27444, 'https://ror.org/009tdqt52', 'en', 1, 'https://ror.org/009tdqt52 National Maritime Museum of the Gulf of Mexico'),
(27445, 'https://ror.org/02232tv51', 'en', 1, 'https://ror.org/02232tv51 Buzzards Bay Coalition'),
(27446, 'https://ror.org/00jpcea69', 'en', 1, 'https://ror.org/00jpcea69 Hawaii Nature Center'),
(27447, 'https://ror.org/00zvtrm48', 'en', 1, 'https://ror.org/00zvtrm48 Delaware Department of Natural Resources and Environmental Control'),
(27448, 'https://ror.org/0359yqb07', 'en', 1, 'https://ror.org/0359yqb07 Hawaii Seafood Council'),
(27449, 'https://ror.org/0067y8s97', 'en', 1, 'https://ror.org/0067y8s97 Texas Marine Mammal Stranding Network'),
(27450, 'https://ror.org/02b5k3s39', 'en', 1, 'https://ror.org/02b5k3s39 Texas Parks and Wildlife Department'),
(27451, 'https://ror.org/02a4ky105', 'en', 1, 'https://ror.org/02a4ky105 Hawai''i Wildlife Fund'),
(27452, 'https://ror.org/047g2hq96', 'en', 1, 'https://ror.org/047g2hq96 Illinois Department of Natural Resources'),
(27453, 'https://ror.org/0467jmw31', 'no_lang_code', 1, 'https://ror.org/0467jmw31 ET International (United States)'),
(27454, 'https://ror.org/02bgarq81', 'en', 1, 'https://ror.org/02bgarq81 Bay Institute'),
(27455, 'https://ror.org/03n7hja66', 'en', 1, 'https://ror.org/03n7hja66 Louisiana Department of Natural Resources'),
(27456, 'https://ror.org/009z6a066', 'en', 1, 'https://ror.org/009z6a066 California State Coastal Conservancy'),
(27457, 'https://ror.org/05ackpy69', 'no_lang_code', 1, 'https://ror.org/05ackpy69 Northeastern Regional Association of Coastal and Ocean Observing Systems (United States)'),
(27458, 'https://ror.org/04a07c178', 'en', 1, 'https://ror.org/04a07c178 Louisiana Coastal Protection and Restoration Authority'),
(27459, 'https://ror.org/01kbgns38', 'en', 1, 'https://ror.org/01kbgns38 Coastal Society'),
(27460, 'https://ror.org/044fdxc08', 'en', 1, 'https://ror.org/044fdxc08 Coastal States Organization'),
(27461, 'https://ror.org/0265z5881', 'en', 1, 'https://ror.org/0265z5881 Elizabeth River Project'),
(27462, 'https://ror.org/02w1psy08', 'en', 1, 'https://ror.org/02w1psy08 New England Fishery Management Council'),
(27463, 'https://ror.org/04ryb0b77', 'en', 1, 'https://ror.org/04ryb0b77 Coastal States Stewardship Foundation'),
(27464, 'https://ror.org/0328gjw85', 'en', 1, 'https://ror.org/0328gjw85 Florida Aquarium'),
(27465, 'https://ror.org/056xmjm50', 'en', 1, 'https://ror.org/056xmjm50 New Hampshire Lakes Association'),
(27466, 'https://ror.org/050mny455', 'no_lang_code', 1, 'https://ror.org/050mny455 Polymath Research (United States)'),
(27467, 'https://ror.org/04w8r2k84', 'no_lang_code', 1, 'https://ror.org/04w8r2k84 Nova Photonics (United States)'),
(27468, 'https://ror.org/04haaft31', 'en', 1, 'https://ror.org/04haaft31 New Jersey Sea Grant Consortium'),
(27469, 'https://ror.org/03p7fww37', 'en', 1, 'https://ror.org/03p7fww37 New York State Department of Environmental Conservation'),
(27470, 'https://ror.org/039byrc41', 'en', 1, 'https://ror.org/039byrc41 Herring Gut Learning Center'),
(27471, 'https://ror.org/01wbbse44', 'en', 1, 'https://ror.org/01wbbse44 Marine Mammal Center'),
(27472, 'https://ror.org/002t87n17', 'en', 1, 'https://ror.org/002t87n17 Hawaiian Islands Land Trust'),
(27473, 'https://ror.org/04004q467', 'en', 1, 'https://ror.org/04004q467 Ocean Conservancy'),
(27474, 'https://ror.org/006a84f66', 'en', 1, 'https://ror.org/006a84f66 Humane Society of the United States'),
(27475, 'https://ror.org/05tt1bq68', 'en', 1, 'https://ror.org/05tt1bq68 Commercial Fisheries Research Foundation'),
(27476, 'https://ror.org/05k8s5247', 'en', 1, 'https://ror.org/05k8s5247 North Carolina Coastal Federation'),
(27477, 'https://ror.org/00fjsz467', 'en', 1, 'https://ror.org/00fjsz467 North Carolina Wildlife Resources Commission'),
(27478, 'https://ror.org/02y7yba16', 'en', 1, 'https://ror.org/02y7yba16 North Pacific Fishery Management Council'),
(27479, 'https://ror.org/02j60s620', 'en', 1, 'https://ror.org/02j60s620 North Pacific Marine Science Foundation'),
(27480, 'https://ror.org/051m28f53', 'no_lang_code', 1, 'https://ror.org/051m28f53 Jensen Management Service (United States)'),
(27481, 'https://ror.org/01wy5em73', 'en', 1, 'https://ror.org/01wy5em73 North Slope Borough'),
(27482, 'https://ror.org/042rwda30', 'en', 1, 'https://ror.org/042rwda30 North Coast Marine Mammal Center'),
(27483, 'https://ror.org/00jfh4f20', 'en', 1, 'https://ror.org/00jfh4f20 Northwest Indian Fisheries Commission'),
(27484, 'https://ror.org/01wk6nt82', 'en', 1, 'https://ror.org/01wk6nt82 Northwest Maritime Center'),
(27485, 'https://ror.org/05drg8934', 'en', 1, 'https://ror.org/05drg8934 Riverhead Foundation for Marine Research and Preservation'),
(27486, 'https://ror.org/047tfmf12', 'en', 1, 'https://ror.org/047tfmf12 Indigenous People''s Council for Marine Mammals'),
(27487, 'https://ror.org/01cxrck43', 'en', 1, 'https://ror.org/01cxrck43 Connecticut River Joint Commissions'),
(27488, 'https://ror.org/057rq6p34', 'en', 1, 'https://ror.org/057rq6p34 National Maritime Center'),
(27489, 'https://ror.org/00bdm1273', 'en', 1, 'https://ror.org/00bdm1273 Institute for Marine Mammal Studies'),
(27490, 'https://ror.org/0304weq09', 'en', 1, 'https://ror.org/0304weq09 California Conservation Corps'),
(27491, 'https://ror.org/01mt0f775', 'en', 1, 'https://ror.org/01mt0f775 Northwest Straits Foundation'),
(27492, 'https://ror.org/02e2kkf63', 'en', 1, 'https://ror.org/02e2kkf63 Ocean Trust'),
(27493, 'https://ror.org/049yjjv56', 'en', 1, 'https://ror.org/049yjjv56 Institute for Social and Environmental Transition-International'),
(27494, 'https://ror.org/0476g9w78', 'en', 1, 'https://ror.org/0476g9w78 International Marinelife Alliance'),
(27495, 'https://ror.org/00mwkta11', 'en', 1, 'https://ror.org/00mwkta11 Coonamessett Farm Foundation'),
(27496, 'https://ror.org/04edbcc27', 'en', 1, 'https://ror.org/04edbcc27 James River Association'),
(27497, 'https://ror.org/04kep9f40', 'en', 1, 'https://ror.org/04kep9f40 Whale Museum'),
(27498, 'https://ror.org/036ppfa42', 'en', 1, 'https://ror.org/036ppfa42 Kenai Peninsula Borough'),
(27499, 'https://ror.org/01ncpsy43', 'en', 1, 'https://ror.org/01ncpsy43 Wisconsin Department of Administration'),
(27500, 'https://ror.org/02nnvm683', 'en', 1, 'https://ror.org/02nnvm683 Trout Unlimited'),
(27501, 'https://ror.org/00t7tpg38', 'no_lang_code', 1, 'https://ror.org/00t7tpg38 Zetor (Czechia)'),
(27502, 'https://ror.org/02c2rwt41', 'en', 1, 'https://ror.org/02c2rwt41 Coral Reef Alliance'),
(27503, 'https://ror.org/05vxw9r04', 'en', 1, 'https://ror.org/05vxw9r04 Klamath River Inter-Tribal Fish and Water Commission'),
(27504, 'https://ror.org/03cvm1z63', 'en', 1, 'https://ror.org/03cvm1z63 Office of the Mississippi Secretary of State'),
(27505, 'https://ror.org/02t903v50', 'en', 1, 'https://ror.org/02t903v50 Copper River Watershed Project'),
(27506, 'https://ror.org/02xg13584', 'en', 1, 'https://ror.org/02xg13584 Alabama Department of Revenue'),
(27507, 'https://ror.org/0581e0971', 'en', 1, 'https://ror.org/0581e0971 Cornell Cooperative Extension of Suffolk County'),
(27508, 'https://ror.org/04cwkhw19', 'en', 1, 'https://ror.org/04cwkhw19 Council for Native Hawaiian Advancement'),
(27509, 'https://ror.org/02qjzgf79', 'en', 1, 'https://ror.org/02qjzgf79 Lake Champlain Maritime Museum'),
(27510, 'https://ror.org/02w7eph15', 'en', 1, 'https://ror.org/02w7eph15 New Hampshire Fish and Game Department'),
(27511, 'https://ror.org/02grx1n44', 'en', 1, 'https://ror.org/02grx1n44 New Haven Unified School District'),
(27512, 'https://ror.org/03a752p22', 'en', 1, 'https://ror.org/03a752p22 Department of Land and Natural Resources'),
(27513, 'https://ror.org/04dh87p33', 'en', 1, 'https://ror.org/04dh87p33 New York State Department of State'),
(27514, 'https://ror.org/03gqzqb15', 'en', 1, 'https://ror.org/03gqzqb15 Louisiana Department of Wildlife and Fisheries'),
(27515, 'https://ror.org/05vkm7r79', 'en', 1, 'https://ror.org/05vkm7r79 Lower Columbia Estuary Partnership'),
(27516, 'https://ror.org/0195p5j91', 'en', 1, 'https://ror.org/0195p5j91 Hawaii Department of Defense'),
(27517, 'https://ror.org/05d5hbz44', 'en', 1, 'https://ror.org/05d5hbz44 Department of Energy and Environment'),
(27518, 'https://ror.org/05s86mf83', 'en', 1, 'https://ror.org/05s86mf83 Vermont Fish & Wildlife Department'),
(27519, 'https://ror.org/01xe4n390', 'en', 1, 'https://ror.org/01xe4n390 Downeast Institute'),
(27520, 'https://ror.org/009565791', 'en', 1, 'https://ror.org/009565791 Orca Network'),
(27521, 'https://ror.org/01vkmy441', 'en', 1, 'https://ror.org/01vkmy441 Earth Force'),
(27522, 'https://ror.org/005y2a635', 'en', 1, 'https://ror.org/005y2a635 Earth Island Institute'),
(27523, 'https://ror.org/03qw80h61', 'en', 1, 'https://ror.org/03qw80h61 Eastern Kentucky Pride'),
(27524, 'https://ror.org/00w64gh11', 'en', 1, 'https://ror.org/00w64gh11 Oregon Department of Fish and Wildlife'),
(27525, 'https://ror.org/00s71kj23', 'en', 1, 'https://ror.org/00s71kj23 Oregon Department of Land Conservation and Development'),
(27526, 'https://ror.org/01etj5m31', 'en', 1, 'https://ror.org/01etj5m31 Oregon Department of State Lands'),
(27527, 'https://ror.org/00cjtj637', 'en', 1, 'https://ror.org/00cjtj637 Abraham Lincoln University'),
(27528, 'https://ror.org/03jyrpv84', 'en', 1, 'https://ror.org/03jyrpv84 Oregon Parks and Recreation Department'),
(27529, 'https://ror.org/00amtww28', 'en', 1, 'https://ror.org/00amtww28 Lummi Indian Business Council'),
(27530, 'https://ror.org/02ndmzk78', 'en', 1, 'https://ror.org/02ndmzk78 Virginia Department of Environmental Quality'),
(27531, 'https://ror.org/00mm4ys28', 'en', 1, 'https://ror.org/00mm4ys28 Bitlis Eren University Bitlis Eren Üniversitesi'),
(27532, 'https://ror.org/00xpev657', 'en', 1, 'https://ror.org/00xpev657 Pacific American Foundation'),
(27533, 'https://ror.org/030t96b35', 'en', 1, 'https://ror.org/030t96b35 Lebanese French University الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ© للأعمال و ال؄دارة في Ų§Ų±ŲØŁŠŁ„'),
(27534, 'https://ror.org/03k882j22', 'en', 1, 'https://ror.org/03k882j22 Pacific Education Institute'),
(27535, 'https://ror.org/01se2zd78', 'no_lang_code', 1, 'https://ror.org/01se2zd78 Adikavi Nannaya University ఆదికవి ą°Øą°Øą±ą°Øą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(27536, 'https://ror.org/00hnkz789', 'en', 1, 'https://ror.org/00hnkz789 Bohol Island State University'),
(27537, 'https://ror.org/04yk1tp18', 'en', 1, 'https://ror.org/04yk1tp18 Bost University دانؓگاه ŲØŲ³ŲŖ'),
(27538, 'https://ror.org/03gghxt23', 'en', 1, 'https://ror.org/03gghxt23 Pacific Islands Fisheries Group'),
(27539, 'https://ror.org/02866re76', 'en', 1, 'https://ror.org/02866re76 Boston University Academy'),
(27540, 'https://ror.org/04t98w133', 'en', 1, 'https://ror.org/04t98w133 Pacific Salmon Commission'),
(27541, 'https://ror.org/00tf0yk25', 'en', 1, 'https://ror.org/00tf0yk25 Adyghe State University АГыгейский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(27542, 'https://ror.org/008a62c70', 'en', 1, 'https://ror.org/008a62c70 Pacific Shellfish Institute'),
(27543, 'https://ror.org/02vpfbn76', 'en', 1, 'https://ror.org/02vpfbn76 Boston University Brussels'),
(27544, 'https://ror.org/013922990', 'en', 1, 'https://ror.org/013922990 Brandman University'),
(27545, 'https://ror.org/045v19n13', 'en', 1, 'https://ror.org/045v19n13 Breyer State Theology University'),
(27546, 'https://ror.org/01d0v9064', 'en', 1, 'https://ror.org/01d0v9064 Virginia Department of Conservation and Recreation'),
(27547, 'https://ror.org/00ys4cv94', 'en', 1, 'https://ror.org/00ys4cv94 Agora University Universitatea Agora'),
(27548, 'https://ror.org/05b0v1a86', 'en', 1, 'https://ror.org/05b0v1a86 Makah Tribal Council'),
(27549, 'https://ror.org/04bqj0966', 'en', 1, 'https://ror.org/04bqj0966 Broadview University'),
(27550, 'https://ror.org/00exza086', 'en', 1, 'https://ror.org/00exza086 Malama Kai Foundation'),
(27551, 'https://ror.org/04fswdh23', 'en', 1, 'https://ror.org/04fswdh23 Malama Learning Center'),
(27552, 'https://ror.org/03jd7ez57', 'no_lang_code', 1, 'https://ror.org/03jd7ez57 Malama na Honu'),
(27553, 'https://ror.org/03w9szr81', 'en', 1, 'https://ror.org/03w9szr81 Bucheon University ė¶€ģ²œėŒ€ķ•™źµ'),
(27554, 'https://ror.org/04knmnr48', 'en', 1, 'https://ror.org/04knmnr48 Bukidnon State University'),
(27555, 'https://ror.org/05erxm859', 'no_lang_code', 1, 'https://ror.org/05erxm859 Skanska (Czechia)'),
(27556, 'https://ror.org/005e2k071', 'en', 1, 'https://ror.org/005e2k071 Burao University Jaamacada Burco'),
(27557, 'https://ror.org/030kbv745', 'en', 1, 'https://ror.org/030kbv745 Watsonville Wetlands Watch'),
(27558, 'https://ror.org/00wd70b02', 'en', 1, 'https://ror.org/00wd70b02 Pennsylvania Department of Environmental Protection'),
(27559, 'https://ror.org/04zvnyb42', 'en', 1, 'https://ror.org/04zvnyb42 Bursa Orhangazi University Bursa Orhangazi Üniversitesi'),
(27560, 'https://ror.org/042asde39', 'en', 1, 'https://ror.org/042asde39 Pennsylvania Emergency Management Agency'),
(27561, 'https://ror.org/01szxxe12', 'en', 1, 'https://ror.org/01szxxe12 Busan Presbyterian University ė¶€ģ‚°ģž„ģ‹ ėŒ€ķ•™źµ'),
(27562, 'https://ror.org/01tmv6x44', 'en', 1, 'https://ror.org/01tmv6x44 Marine Animal Rescue Society'),
(27563, 'https://ror.org/03bhnt079', 'en', 1, 'https://ror.org/03bhnt079 Penobscot River Restoration Trust'),
(27564, 'https://ror.org/04mj88k68', 'en', 1, 'https://ror.org/04mj88k68 Perry Institute for Marine Science'),
(27565, 'https://ror.org/01qhq4s12', 'en', 1, 'https://ror.org/01qhq4s12 Wells National Estuarine Research Reserve'),
(27566, 'https://ror.org/04hfdwy10', 'en', 1, 'https://ror.org/04hfdwy10 Pfleger Institute of Environmental Research'),
(27567, 'https://ror.org/043223922', 'en', 1, 'https://ror.org/043223922 Aino University č—é‡Žå¤§å­¦'),
(27568, 'https://ror.org/04x1rx451', 'en', 1, 'https://ror.org/04x1rx451 Calicut University Employees Union ą“•ą“¾ą“²ą“æą“•ąµą“•ą“±ąµą“±ąµ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą“Žą“‚ą“Ŗąµą“²ąµ‡ą“¾ą“Æąµ€ą“øąµ ą“Æąµ‚ą“£ą“æą“Æąµ»'),
(27569, 'https://ror.org/01m28kg79', 'en', 1, 'https://ror.org/01m28kg79 Ajloun National University Ų¬Ų§Ł…Ų¹Ų© Ų¹Ų¬Ł„ŁˆŁ† Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(27570, 'https://ror.org/03414dm82', 'en', 1, 'https://ror.org/03414dm82 Western Pacific Regional Fishery Management Council'),
(27571, 'https://ror.org/01ffhnr70', 'en', 1, 'https://ror.org/01ffhnr70 Cambridge University Health Partners'),
(27572, 'https://ror.org/03m96yn13', 'en', 1, 'https://ror.org/03m96yn13 Marine Mammal Care Center'),
(27573, 'https://ror.org/02q9yhv11', 'en', 1, 'https://ror.org/02q9yhv11 Chesapeake Bay Environmental Center'),
(27574, 'https://ror.org/0568p5n31', 'en', 1, 'https://ror.org/0568p5n31 Akita University of Art ē§‹ē”°å…¬ē«‹ē¾Žč”“å¤§å­¦'),
(27575, 'https://ror.org/03b2rjh82', 'en', 1, 'https://ror.org/03b2rjh82 Marine Conservation Alliance'),
(27576, 'https://ror.org/044c3e517', 'en', 1, 'https://ror.org/044c3e517 Wildlife Research Team'),
(27577, 'https://ror.org/030a9rt17', 'en', 1, 'https://ror.org/030a9rt17 Marine Conservation Institute'),
(27578, 'https://ror.org/02543bv68', 'en', 1, 'https://ror.org/02543bv68 Akita University of Nursing and Welfare ē§‹ē”°ēœ‹č­·ē¦ē„‰å¤§å­¦'),
(27579, 'https://ror.org/029zgsn59', 'en', 1, 'https://ror.org/029zgsn59 Canadian University of Dubai الجامعة Ų§Ł„ŁƒŁ†ŲÆŁŠŲ© دبي'),
(27580, 'https://ror.org/01ede0v48', 'en', 1, 'https://ror.org/01ede0v48 Potomac River Fisheries Commission'),
(27581, 'https://ror.org/00gkfj461', 'en', 1, 'https://ror.org/00gkfj461 Marine Mammal Stranding Center'),
(27582, 'https://ror.org/03pgsk336', 'en', 1, 'https://ror.org/03pgsk336 Marine Resources Council'),
(27583, 'https://ror.org/054yvqw54', 'en', 1, 'https://ror.org/054yvqw54 Maryland Association for Environmental and Outdoor Education'),
(27584, 'https://ror.org/029e8g588', 'en', 1, 'https://ror.org/029e8g588 Akobo Heritage and Memorial University'),
(27585, 'https://ror.org/04ccfjy89', 'en', 1, 'https://ror.org/04ccfjy89 Center for Coastal Studies'),
(27586, 'https://ror.org/03k3yk915', 'en', 1, 'https://ror.org/03k3yk915 Duluth Business University'),
(27587, 'https://ror.org/04ff49a90', 'en', 1, 'https://ror.org/04ff49a90 Amicable Knowledge Solution University ą¤ ą¤•ą„‡ ą¤ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27588, 'https://ror.org/044dnwe52', 'en', 1, 'https://ror.org/044dnwe52 Minnesota Department of Public Safety'),
(27589, 'https://ror.org/022j25y55', 'en', 1, 'https://ror.org/022j25y55 East Delta University ą¦‡ą¦øą§ą¦Ÿ ą¦”ą§‡ą¦²ą§ą¦Ÿą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27590, 'https://ror.org/058c2zn82', 'en', 1, 'https://ror.org/058c2zn82 East Africa University Ų¬Ų§Ł…Ų¹Ų© ؓرق Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§'),
(27591, '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'),
(27592, 'https://ror.org/01gneb536', 'en', 1, 'https://ror.org/01gneb536 Wolf Hollow Wildlife Rehabilitation Center'),
(27593, 'https://ror.org/01a4wvs18', 'en', 1, 'https://ror.org/01a4wvs18 Eastern Liaoning University č¾½äøœå­¦é™¢'),
(27594, 'https://ror.org/04rf2gx08', 'en', 1, 'https://ror.org/04rf2gx08 Alabama Law Enforcement Agency'),
(27595, 'https://ror.org/01a4tb013', 'en', 1, 'https://ror.org/01a4tb013 World Turtle Trust'),
(27596, 'https://ror.org/05mh02w22', 'no_lang_code', 1, 'https://ror.org/05mh02w22 Eckernforde Tanga University'),
(27597, 'https://ror.org/052zrr036', 'en', 1, 'https://ror.org/052zrr036 Canik Başarı University Canik Başarı Üniversitesi'),
(27598, 'https://ror.org/011y7xt38', 'en', 1, 'https://ror.org/011y7xt38 Ƈankırı Karatekin University Ƈankırı Karatekin Üniversitesi'),
(27599, 'https://ror.org/00rcpgp95', 'en', 1, 'https://ror.org/00rcpgp95 Capitol University Medical Center'),
(27600, 'https://ror.org/00erb5q72', 'en', 1, 'https://ror.org/00erb5q72 Caraga State University'),
(27601, 'https://ror.org/040rjhz75', 'en', 1, 'https://ror.org/040rjhz75 Yukon River Drainage Fisheries Association'),
(27602, 'https://ror.org/03gqevz94', 'en', 1, 'https://ror.org/03gqevz94 Herguan University'),
(27603, 'https://ror.org/00ds41r10', 'en', 1, 'https://ror.org/00ds41r10 Carnegie Mellon University Australia'),
(27604, 'https://ror.org/0025x8m44', 'en', 1, 'https://ror.org/0025x8m44 SeaWorld Entertainment'),
(27605, 'https://ror.org/02tp47674', 'en', 1, 'https://ror.org/02tp47674 Karaite Jewish University'),
(27606, 'https://ror.org/032fhk095', 'en', 1, 'https://ror.org/032fhk095 Karaj Payam Noor University دانؓگاه Ł¾ŪŒŲ§Ł… Ł†ŁˆŲ± کرج'),
(27607, 'https://ror.org/00dfrzy25', 'en', 1, 'https://ror.org/00dfrzy25 Carnegie Trust for the Universities of Scotland'),
(27608, 'https://ror.org/02c7fax93', 'en', 1, 'https://ror.org/02c7fax93 Al Furat University Ų¬Ų§Ł…Ų¹Ų© الفرات'),
(27609, 'https://ror.org/03qfy7r49', 'en', 1, 'https://ror.org/03qfy7r49 Carol I National Defence University Universitatea Națională de Apărare ā€žCarol Iā€'),
(27610, 'https://ror.org/042967d53', 'en', 1, 'https://ror.org/042967d53 El Asher University Ų¬Ų§Ł…Ų¹Ų© العاؓر من Ų±Ł…Ų¶Ų§Ł†ā€Žā€Ž'),
(27611, 'https://ror.org/05bhsrq51', 'en', 1, 'https://ror.org/05bhsrq51 Carson Newman University'),
(27612, 'https://ror.org/04gr21t50', 'en', 1, 'https://ror.org/04gr21t50 Al Madinah International University Universiti Antarabangsa Al-Madinah'),
(27613, 'https://ror.org/048633e68', 'en', 1, 'https://ror.org/048633e68 Higashi Nippon International University ę±ę—„ęœ¬å›½éš›å¤§å­¦'),
(27614, 'https://ror.org/00db2vc28', 'en', 1, 'https://ror.org/00db2vc28 Karelia University of Applied Sciences Karelia-ammattikorkeakoulu'),
(27615, 'https://ror.org/05m0ggf57', 'en', 1, 'https://ror.org/05m0ggf57 Catholic University of Applied Sciences Katholische Hochschule Mainz'),
(27616, 'https://ror.org/01p4b7n26', 'en', 1, 'https://ror.org/01p4b7n26 Electric Power University TrĘ°į»ng ĐẔi hį»c Điện lį»±c'),
(27617, 'https://ror.org/00156qz84', 'no_lang_code', 1, 'https://ror.org/00156qz84 Al-Shahbaa University Ų¬Ų§Ł…Ų¹Ų© الؓهباؔ'),
(27618, 'https://ror.org/01sw9sf76', 'en', 1, 'https://ror.org/01sw9sf76 Ellis University'),
(27619, 'https://ror.org/036b03a90', 'en', 1, 'https://ror.org/036b03a90 Al Yamamah University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŁ…Ų§Ł…Ų©'),
(27620, 'https://ror.org/04z37sn09', 'en', 1, 'https://ror.org/04z37sn09 Eurasia International University ŌµÕ¾Ö€Õ”Õ½Õ«Õ” Õ„Õ«Õ»Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ€Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(27621, 'https://ror.org/021m4bd11', 'en', 1, 'https://ror.org/021m4bd11 European Peace University'),
(27622, 'https://ror.org/03fqmz304', 'en', 1, 'https://ror.org/03fqmz304 European University of Bangladesh ইউরোপিয়ান ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27623, 'https://ror.org/0019h0z47', 'en', 1, 'https://ror.org/0019h0z47 AlAlamein International University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„Ł…ŁŠŁ†'),
(27624, 'https://ror.org/04y6y6h45', 'en', 1, 'https://ror.org/04y6y6h45 Karnataka State Law University ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ಕಾನೂನು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(27625, 'https://ror.org/013d87239', 'en', 1, 'https://ror.org/013d87239 HITEC University'),
(27626, 'https://ror.org/00ybfzj27', 'en', 1, 'https://ror.org/00ybfzj27 Karnataka State Dr.Gangubai Hanagal Music and Performing Arts University ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ಔಾ. ಗಂಗೂಬಾಯಿ ą²¹ą²¾ą²Øą²—ą²²ą³ ಸಂಗೀತ ą²®ą²¤ą³ą²¤ą³ ą²Ŗą³ą²°ą²¦ą²°ą³ą²¶ą²• ಕಲೆಗಳ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(27627, 'https://ror.org/05kr6gy36', 'en', 1, 'https://ror.org/05kr6gy36 Karnataka State Women''s University ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ಮಹಿಳಾ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(27628, 'https://ror.org/039akp542', 'en', 1, 'https://ror.org/039akp542 Oleksandr Dovzhenko Hlukhiv National Pedagogical University Š“Š»ŃƒŃ…Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени АлексанГра Довженко Š“Š»ŃƒŃ…Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠžŠ»ŠµŠŗŃŠ°Š½Š“Ń€Š° Довженка'),
(27629, 'https://ror.org/0552kp582', 'en', 1, 'https://ror.org/0552kp582 Catholic University of South Sudan'),
(27630, 'https://ror.org/01epw0x06', 'en', 1, 'https://ror.org/01epw0x06 Fahd bin Sultan University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± فهد بن سلطان'),
(27631, 'https://ror.org/00vadgf54', 'no_lang_code', 1, 'https://ror.org/00vadgf54 Kaziranga University'),
(27632, 'https://ror.org/01w0fb867', 'en', 1, 'https://ror.org/01w0fb867 Alanus Hochschule für Kunst und Gesellschaft Alanus University of Arts and Social Sciences'),
(27633, 'https://ror.org/047khpn70', 'en', 1, 'https://ror.org/047khpn70 Keio University Shonan Fujisawa ę…¶ę‡‰ē¾©å”¾å¤§å­¦ę¹˜å—č—¤ę²¢ć‚­ćƒ£ćƒ³ćƒ‘ć‚¹'),
(27634, 'https://ror.org/05az7em54', 'en', 1, 'https://ror.org/05az7em54 Kent State University at Ashtabula'),
(27635, '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'),
(27636, 'https://ror.org/05pq46g90', 'en', 1, 'https://ror.org/05pq46g90 Hoa Sen University TrĘ°į»ng ĐẔi hį»c Hoa Sen čŽ²čŠ±å¤§å­¦'),
(27637, 'https://ror.org/00s8h5d08', 'en', 1, 'https://ror.org/00s8h5d08 Hodges University'),
(27638, 'https://ror.org/0058jyq07', 'en', 1, 'https://ror.org/0058jyq07 Holy Trinity University'),
(27639, 'https://ror.org/02a6jmr02', 'en', 1, 'https://ror.org/02a6jmr02 Cebu Institute of Technology University'),
(27640, 'https://ror.org/016e0xz09', 'en', 1, 'https://ror.org/016e0xz09 Kent State University at Salem'),
(27641, 'https://ror.org/00gxmhc57', 'en', 1, 'https://ror.org/00gxmhc57 Kent State University at Stark'),
(27642, 'https://ror.org/01652va36', 'en', 1, 'https://ror.org/01652va36 Kenya Highlands University'),
(27643, 'https://ror.org/00fkbtp02', 'en', 1, 'https://ror.org/00fkbtp02 Alhosn University Ų¬Ų§Ł…Ų¹Ų© الحصن'),
(27644, 'https://ror.org/01zpp3d44', 'en', 1, 'https://ror.org/01zpp3d44 Homerton University Hospital NHS Foundation Trust'),
(27645, 'https://ror.org/04x649j07', 'en', 1, 'https://ror.org/04x649j07 Cebu Technological University'),
(27646, 'https://ror.org/023mp3m37', 'en', 1, 'https://ror.org/023mp3m37 Hong Kong Virtual University 香港虛擬大學'),
(27647, 'https://ror.org/02vg1a239', 'en', 1, 'https://ror.org/02vg1a239 Alkauthar Islamic University Ų¬Ų§Ł…Ų¹Ūƒ Ų§Ł„Ś©ŁˆŲ«Ų±'),
(27648, 'https://ror.org/017hfdc92', 'en', 1, 'https://ror.org/017hfdc92 Kharkiv University of Humanities People’s Ukrainian Academy Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠŠ°Ń€Š¾Š“Š½Š° ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ» Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠŠ°Ń€Š¾Š“Š½Š°Ń ŃƒŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃĀ»'),
(27649, 'https://ror.org/02r6cx512', 'en', 1, 'https://ror.org/02r6cx512 Khujand State University Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии ЄуҷанГ ба номи акаГемик Š‘. Ņ’Š°Ń„ŃƒŃ€Š¾Š² ЄуГжанГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27650, 'https://ror.org/05kvcy688', 'en', 1, 'https://ror.org/05kvcy688 Hope University'),
(27651, 'https://ror.org/01jdxxe39', 'en', 1, 'https://ror.org/01jdxxe39 Central Bicol State University of Agriculture'),
(27652, 'https://ror.org/05bja5p94', 'en', 1, 'https://ror.org/05bja5p94 All Saints University Lango'),
(27653, 'https://ror.org/04vew1z32', 'en', 1, 'https://ror.org/04vew1z32 Kim Chaek University of Technology ź¹€ģ±…ź³µģ—…ģ¢…ķ•©ėŒ€ķ•™'),
(27654, 'https://ror.org/01z1zmc91', 'en', 1, 'https://ror.org/01z1zmc91 Moscow State Forest University Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ леса'),
(27655, 'https://ror.org/00eqgy272', 'en', 1, 'https://ror.org/00eqgy272 Allameh Mohaddes Nouri University دانؓگاه علامه Ł…Ų­ŲÆŲ« Ł†ŁˆŲ±ŪŒ'),
(27656, 'https://ror.org/0292j7348', 'en', 1, 'https://ror.org/0292j7348 Kingswood University'),
(27657, 'https://ror.org/0367ee363', 'fr', 1, 'https://ror.org/0367ee363 Centre Hospitalier Universitaire Notre Dame des Secours مستؓفى سيدة Ų§Ł„Ł…Ų¹ŁˆŁ†Ų§ŲŖ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(27658, 'https://ror.org/02zy6f603', 'tl', 1, 'https://ror.org/02zy6f603 Centro Escolar University Makati'),
(27659, 'https://ror.org/00ybawk55', 'en', 1, 'https://ror.org/00ybawk55 Florida International University Alumni Association'),
(27660, 'https://ror.org/03b657f73', 'en', 1, 'https://ror.org/03b657f73 Kio University 畿央大学'),
(27661, 'https://ror.org/004n8kf32', 'en', 1, 'https://ror.org/004n8kf32 Idaho Governors Office of Species Conservation'),
(27662, 'https://ror.org/029aq5550', 'no_lang_code', 1, 'https://ror.org/029aq5550 Jaamacada Kismaayo Kismayo University'),
(27663, 'https://ror.org/03q6jrh90', 'pt', 1, 'https://ror.org/03q6jrh90 Centro UniversitƔrio das Faculdades Metropolitanas Unidas'),
(27664, 'https://ror.org/01aepry57', 'en', 1, 'https://ror.org/01aepry57 AlMughtaribeen University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŲŗŲŖŲ±ŲØŁŠŁ†'),
(27665, 'https://ror.org/05vv4xn30', 'en', 1, 'https://ror.org/05vv4xn30 Kobe Tokiwa University ē„žęˆøåøøē›¤å¤§å­¦');
INSERT INTO `rors` VALUES
(27666, 'https://ror.org/00txwbc30', 'en', 1, 'https://ror.org/00txwbc30 Chanakya National Law University ą¤šą¤¾ą¤£ą¤•ą„ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27667, 'https://ror.org/05w92f868', 'fr', 1, 'https://ror.org/05w92f868 Fondation UniversitĆ© FranƧaise en ArmĆ©nie Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶ÕøÖ‚Õ“ Ö†Ö€Õ”Õ¶Õ½Õ«Õ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(27668, 'https://ror.org/02z79er63', 'en', 1, 'https://ror.org/02z79er63 Al Assad University Hospital مستؓفى الأسد Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(27669, 'https://ror.org/011d8sm39', 'en', 1, 'https://ror.org/011d8sm39 Changsha University 长沙学院'),
(27670, 'https://ror.org/0483r5v56', 'en', 1, 'https://ror.org/0483r5v56 Changshin University ģ°½ģ‹ ėŒ€ķ•™źµ'),
(27671, 'https://ror.org/03y1hrs26', 'en', 1, 'https://ror.org/03y1hrs26 Kolhan University'),
(27672, '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'),
(27673, 'https://ror.org/00h15ta02', 'en', 1, 'https://ror.org/00h15ta02 AMA International University Ų¬Ų§Ł…Ų¹Ų© أما Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ų§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(27674, 'https://ror.org/05t1bc854', 'en', 1, 'https://ror.org/05t1bc854 Korea National Defense University źµ­ė°©ėŒ€ķ•™źµ'),
(27675, 'https://ror.org/01jc4j574', 'en', 1, 'https://ror.org/01jc4j574 Chaudhary Devi Lal University ą¤šą„Œą¤§ą¤°ą„€ ą¤¦ą„‡ą¤µą„€ लाल ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(27676, 'https://ror.org/0168zcn11', 'en', 1, 'https://ror.org/0168zcn11 Korea National University of Arts ķ•œźµ­ģ˜ˆģˆ ģ¢…ķ•©ķ•™źµ'),
(27677, 'https://ror.org/04szp2m52', 'en', 1, 'https://ror.org/04szp2m52 Hsiuping University of Science and Technology äæ®å¹³ē§‘ęŠ€å¤§å­ø'),
(27678, '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'),
(27679, 'https://ror.org/0217vcy92', 'en', 1, 'https://ror.org/0217vcy92 Franklin University Switzerland'),
(27680, 'https://ror.org/043q5er54', 'en', 1, 'https://ror.org/043q5er54 Frederick Taylor University'),
(27681, 'https://ror.org/02r11sv96', 'en', 1, 'https://ror.org/02r11sv96 Free University of Ireland Saor-Ollscoil na hƉireann'),
(27682, 'https://ror.org/038rep477', 'en', 1, 'https://ror.org/038rep477 Friedensau Adventist University Theologische Hochschule Friedensau'),
(27683, 'https://ror.org/033v1q508', 'en', 1, 'https://ror.org/033v1q508 Frontier Nursing University'),
(27684, 'https://ror.org/039jmdw40', 'en', 1, 'https://ror.org/039jmdw40 America Bangladesh University আমেরিকা বাংলাদেশ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(27685, 'https://ror.org/006wqrx41', 'en', 1, 'https://ror.org/006wqrx41 Korea National University of Cultural Heritage ķ•œźµ­ģ „ķ†µė¬øķ™”ėŒ€ķ•™źµ'),
(27686, 'https://ror.org/025sb3367', 'en', 1, 'https://ror.org/025sb3367 Gavar State University Ō³Õ”Õ¾Õ”Õ¼Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(27687, 'https://ror.org/05m1gnk07', 'en', 1, 'https://ror.org/05m1gnk07 Korea University ęœé®®å¤§å­¦ę ”'),
(27688, 'https://ror.org/02keg3263', 'no_lang_code', 1, 'https://ror.org/02keg3263 Cheju Halla University ģ œģ£¼ķ•œė¼ėŒ€ķ•™źµ'),
(27689, 'https://ror.org/058tx1a56', 'en', 1, 'https://ror.org/058tx1a56 Heriot-Watt University Dubai Ų¬Ų§Ł…Ų¹Ų© Ł‡ŁŠŲ±ŁŠŁˆŲŖ-وات دبي'),
(27690, 'https://ror.org/04jx76k82', 'en', 1, 'https://ror.org/04jx76k82 Korean Council for University Education ķ•œźµ­ėŒ€ķ•™źµģœ”ķ˜‘ģ˜ķšŒ'),
(27691, 'https://ror.org/00byxyj96', 'en', 1, 'https://ror.org/00byxyj96 Gemological Centers'),
(27692, 'https://ror.org/02s89kd69', 'en', 1, 'https://ror.org/02s89kd69 Korean National Police University ź²½ģ°°ėŒ€ķ•™'),
(27693, 'https://ror.org/01bjw7k75', 'en', 1, 'https://ror.org/01bjw7k75 Gelato University'),
(27694, 'https://ror.org/026b9sf88', 'no_lang_code', 1, 'https://ror.org/026b9sf88 KR Mangalam University ą¤•ą„‡.आर. मंगलम ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27695, 'https://ror.org/02wdfg707', 'en', 1, 'https://ror.org/02wdfg707 Chhattisgarh Swami Vivekanand Technical University ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼ ą¤øą„ą¤µą¤¾ą¤®ą„€ ą¤µą¤æą¤µą„‡ą¤•ą¤¾ą¤Øą¤‚ą¤¦ ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦›ą¦¤ą§ą¦¤ą§€ą¦øą¦—ą¦¢ą¦¼ ą¦øą§ą¦¬ą¦¾ą¦®ą§€ ą¦¬ą¦æą¦¬ą§‡ą¦•ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27696, 'https://ror.org/006cjk069', 'en', 1, 'https://ror.org/006cjk069 Krishna Kanta Handiqui State Open University ą¦•ą§ƒą¦·ą§ą¦£ą¦•ą¦¾ą¦Øą§ą¦¤ ą¦øą¦Øą§ą¦¦ą¦æą¦•ą§ˆ ą¦°ą¦¾ą¦œą§ą¦Æą¦æą¦• ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27697, 'https://ror.org/04rc9cg08', 'en', 1, 'https://ror.org/04rc9cg08 American International University West Africa'),
(27698, 'https://ror.org/020756q03', 'en', 1, 'https://ror.org/020756q03 Chiba Prefectural University of Health Sciences åƒč‘‰ēœŒē«‹äæå„åŒ»ē™‚å¤§å­¦'),
(27699, 'https://ror.org/002c8b395', 'en', 1, 'https://ror.org/002c8b395 Christian Bilingual University of Congo UniversitƩ ChrƩtienne Bilingue du Congo'),
(27700, 'https://ror.org/02890tv09', 'en', 1, 'https://ror.org/02890tv09 American Public University System'),
(27701, 'https://ror.org/05cqafq62', 'en', 1, 'https://ror.org/05cqafq62 Chuka University'),
(27702, 'https://ror.org/00rz4p908', 'en', 1, 'https://ror.org/00rz4p908 American Sports University'),
(27703, 'https://ror.org/04sdbjc29', 'en', 1, 'https://ror.org/04sdbjc29 Kristal University Universiteti Kristal'),
(27704, 'https://ror.org/00z9cn431', 'en', 1, 'https://ror.org/00z9cn431 Kühne Logistics University'),
(27705, 'https://ror.org/00erv7q04', 'en', 1, 'https://ror.org/00erv7q04 Kumar Bhaskar Varma Sanskrit and Ancient Studies University ą¤•ą„ą¤®ą¤¾ą¤° ą¤­ą¤¾ą¤øą„ą¤•ą¤° ą¤µą¤°ą„ą¤®ą¤¾ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¾ą¤¤ą¤Ø ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ কুমাৰ ą¦­ą¦¾ą¦øą§ą¦•ą§° ą¦¬ą§°ą§ą¦®ą¦¾ ą¦øą¦‚ą¦øą§ą¦•ą§ƒą¦¤ আৰু পুৰাতন ą¦…ą¦§ą§ą¦Æą¦Æą¦¼ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27706, 'https://ror.org/03kytj789', 'en', 1, 'https://ror.org/03kytj789 Chung Chou University of Science and Technology äø­å·žē§‘ęŠ€å¤§å­ø'),
(27707, 'https://ror.org/03n3y7285', 'en', 1, 'https://ror.org/03n3y7285 American University in Bosnia and Herzegovina Američki univerzitet u Bosni i Hercegovini'),
(27708, 'https://ror.org/05kvq4b11', 'en', 1, 'https://ror.org/05kvq4b11 Kumi University'),
(27709, 'https://ror.org/03r6cc113', 'en', 1, 'https://ror.org/03r6cc113 Kundong University ź±“ė™ėŒ€ķ•™źµ'),
(27710, 'https://ror.org/03v7b1458', 'en', 1, 'https://ror.org/03v7b1458 Chunnam Techno University ģ „ė‚Øź³¼ķ•™ėŒ€ķ•™źµ'),
(27711, 'https://ror.org/03ms79854', 'en', 1, 'https://ror.org/03ms79854 George Washington University Virginia Campus'),
(27712, 'https://ror.org/02c385802', 'en', 1, 'https://ror.org/02c385802 George Wythe University'),
(27713, 'https://ror.org/00xtqnh37', 'en', 1, 'https://ror.org/00xtqnh37 Rochester Institute of Technology Kosovo'),
(27714, 'https://ror.org/02mfjgm25', 'en', 1, 'https://ror.org/02mfjgm25 Hwa Hsia University of Technology čÆå¤ē§‘ęŠ€å¤§å­ø'),
(27715, 'https://ror.org/0075h8406', 'no_lang_code', 1, 'https://ror.org/0075h8406 Ghazni University دانؓگاه ŲŗŲ²Ł†ŪŒ'),
(27716, 'https://ror.org/056c6h780', 'en', 1, 'https://ror.org/056c6h780 American University in the Emirates الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في ال؄مارات'),
(27717, 'https://ror.org/03k7qz240', 'en', 1, 'https://ror.org/03k7qz240 Maharaja Ranjit Singh Punjab Technical University'),
(27718, 'https://ror.org/04fe8b875', 'en', 1, 'https://ror.org/04fe8b875 American University of Afghanistan دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ افغانستان'),
(27719, 'https://ror.org/02y1pga23', 'no_lang_code', 1, 'https://ror.org/02y1pga23 Kushabhau Thakre Patrakarita Avam Jansanchar University ą¤•ą„ą¤¶ą¤¾ą¤­ą¤¾ą¤Š ą¤ ą¤¾ą¤•ą¤°ą„‡ ą¤Ŗą¤¤ą„ą¤°ą¤•ą¤¾ą¤°ą¤æą¤¤ą¤¾ ą¤ą¤µą¤‚ ą¤øą¤‚ą¤šą¤¾ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27720, 'https://ror.org/02fg4j559', 'en', 1, 'https://ror.org/02fg4j559 Gimcheon University ź¹€ģ²œėŒ€ķ•™źµ'),
(27721, 'https://ror.org/026b8w395', 'en', 1, 'https://ror.org/026b8w395 Girne American University Girne Amerikan Üniversitesi'),
(27722, 'https://ror.org/03se13x79', 'en', 1, 'https://ror.org/03se13x79 Claremont Lincoln University'),
(27723, 'https://ror.org/02twyz205', 'en', 1, 'https://ror.org/02twyz205 CMJ University ą¤øą„€ą¤ą¤®ą¤œą„‡ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27724, 'https://ror.org/02wra6g16', 'en', 1, 'https://ror.org/02wra6g16 Glendale University College of Law'),
(27725, 'https://ror.org/04ah8rj19', 'en', 1, 'https://ror.org/04ah8rj19 Kyoto International University äŗ¬éƒ½ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«ćƒ¦ćƒ‹ćƒćƒ¼ć‚·ćƒ†ć‚£ćƒ¼'),
(27726, 'https://ror.org/04frhb927', 'en', 1, 'https://ror.org/04frhb927 Global University الجامعة Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(27727, 'https://ror.org/03sy3gw53', 'en', 1, 'https://ror.org/03sy3gw53 Coalition of Urban and Metropolitan Universities'),
(27728, 'https://ror.org/035gqys29', 'en', 1, 'https://ror.org/035gqys29 Coastland University'),
(27729, 'https://ror.org/04japw488', 'en', 1, 'https://ror.org/04japw488 Godfrey Okoye University'),
(27730, 'https://ror.org/037ykcx09', 'en', 1, 'https://ror.org/037ykcx09 Gollis University Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁˆŁ„Ų³'),
(27731, 'https://ror.org/04tgeej53', 'en', 1, 'https://ror.org/04tgeej53 American University of Madaba الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ł…Ų§ŲÆŲØŲ§'),
(27732, 'https://ror.org/01e8b7f16', 'en', 1, 'https://ror.org/01e8b7f16 La Salle University Pamantasang La Salle ng Ozamis'),
(27733, 'https://ror.org/01wwdyj49', 'en', 1, 'https://ror.org/01wwdyj49 ICFAI University, Mizoram'),
(27734, 'https://ror.org/023czz272', 'en', 1, 'https://ror.org/023czz272 American University of Rome Amerikanische UniversitƤt Rom UniversitƩ amƩricaine de Rome'),
(27735, 'https://ror.org/02mgerj62', 'en', 1, 'https://ror.org/02mgerj62 Great Lakes University of Kisumu'),
(27736, 'https://ror.org/03kzpe032', 'en', 1, 'https://ror.org/03kzpe032 IEC University'),
(27737, 'https://ror.org/056c31v05', 'en', 1, 'https://ror.org/056c31v05 Gregory University Uturu'),
(27738, 'https://ror.org/00rm3g179', 'en', 1, 'https://ror.org/00rm3g179 Ifugao State University Pamantasang Estado ng Ifugao'),
(27739, 'https://ror.org/01ccvyq03', 'en', 1, 'https://ror.org/01ccvyq03 Gretsa University'),
(27740, 'https://ror.org/00q6pka22', 'en', 1, 'https://ror.org/00q6pka22 Gujarat National Law University'),
(27741, 'https://ror.org/00a08ze66', 'en', 1, 'https://ror.org/00a08ze66 Laurel University'),
(27742, 'https://ror.org/05910xk89', 'no_lang_code', 1, 'https://ror.org/05910xk89 Gukje Cyber University źµ­ģ œģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(27743, 'https://ror.org/03x9g7m54', 'en', 1, 'https://ror.org/03x9g7m54 Lebanese German University الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ©'),
(27744, 'https://ror.org/04d9rzd67', 'en', 1, 'https://ror.org/04d9rzd67 Gulf University for Science & Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(27745, 'https://ror.org/027anng05', 'en', 1, 'https://ror.org/027anng05 Lebanese International University الجامعة Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ©'),
(27746, 'https://ror.org/034a2ss16', 'en', 1, 'https://ror.org/034a2ss16 Amoud University Jaamacadda Camuud Ų¬Ų§Ł…Ų¹Ų© Ų¹Ł…ŁˆŲÆ'),
(27747, 'https://ror.org/04gndk045', 'en', 1, 'https://ror.org/04gndk045 IMADEC University'),
(27748, 'https://ror.org/015ve7h33', 'en', 1, 'https://ror.org/015ve7h33 Iloilo Science and Technology University Universitas Technologiae et Scientiarum Iloilensis'),
(27749, 'https://ror.org/00eaycp31', 'en', 1, 'https://ror.org/00eaycp31 IMC Fachhochschule Krems IMC University of Applied Sciences Krems'),
(27750, 'https://ror.org/053nvxd25', 'en', 1, 'https://ror.org/053nvxd25 Guru Kashi University ਗੁਰੂ ਕਾਸ਼ੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(27751, 'https://ror.org/04m7rat64', 'en', 1, 'https://ror.org/04m7rat64 Guru Ravidas Ayurved University ਗੁਰੂ ਰਵੀਦਾਸ ਆਯੂਰਵੇਦ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(27752, 'https://ror.org/05b2prn24', 'en', 1, 'https://ror.org/05b2prn24 Leman University'),
(27753, 'https://ror.org/04c8h8q45', 'en', 1, 'https://ror.org/04c8h8q45 Leonardo Da Vinci University Universidad Privada Leonardo da Vinci'),
(27754, 'https://ror.org/048q3sh29', 'en', 1, 'https://ror.org/048q3sh29 Gyan Vihar University'),
(27755, 'https://ror.org/03gskda23', 'en', 1, 'https://ror.org/03gskda23 LUM Jean Monnet University Libera UniversitĆ  Mediterranea'),
(27756, 'https://ror.org/04ftkte05', 'en', 1, 'https://ror.org/04ftkte05 Libyan International Medical University الجامعة Ų§Ł„Ł„ŁŠŲØŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ©'),
(27757, 'https://ror.org/04tp2w352', 'en', 1, 'https://ror.org/04tp2w352 Hagoromo International University ē¾½č”£å›½éš›å¤§å­¦'),
(27758, 'https://ror.org/0033b8372', 'en', 1, 'https://ror.org/0033b8372 Hallmark University'),
(27759, 'https://ror.org/01qxhf360', 'en', 1, 'https://ror.org/01qxhf360 Concordia University'),
(27760, 'https://ror.org/052w7db62', 'en', 1, 'https://ror.org/052w7db62 HamhÅ­ng University of Chemical Industry ķ•Øķ„ķ™”ķ•™ź³µģ—…ėŒ€ķ•™'),
(27761, 'https://ror.org/014y22g21', 'en', 1, 'https://ror.org/014y22g21 Conseil des universitƩs de l''Ontario Council of Ontario Universities'),
(27762, 'https://ror.org/057p3dx48', 'en', 1, 'https://ror.org/057p3dx48 Hanil University ķ•œģ¼ģž„ģ‹ ėŒ€ķ•™źµ'),
(27763, 'https://ror.org/01rcq3q20', 'en', 1, 'https://ror.org/01rcq3q20 Hankou University ę±‰å£å­¦é™¢'),
(27764, 'https://ror.org/013kf9t32', 'en', 1, 'https://ror.org/013kf9t32 Hanseatic University Rostock Private HanseuniversitƤt'),
(27765, 'https://ror.org/056fjw561', 'no_lang_code', 1, 'https://ror.org/056fjw561 Induk University ģøė•ėŒ€ķ•™źµ'),
(27766, 'https://ror.org/00qyadr13', 'en', 1, 'https://ror.org/00qyadr13 Hanyang Women''s University ķ•œģ–‘ģ—¬ģžėŒ€ķ•™źµ'),
(27767, 'https://ror.org/02syyrn67', 'en', 1, 'https://ror.org/02syyrn67 PLA Army Service Academy äø­å›½äŗŗę°‘č§£ę”¾å†›åŽå‹¤å·„ēØ‹å­¦é™¢'),
(27768, 'https://ror.org/04zzths72', 'en', 1, 'https://ror.org/04zzths72 Ansan University ģ•ˆģ‚°ėŒ€ķ•™źµ'),
(27769, 'https://ror.org/038sdcw17', 'en', 1, 'https://ror.org/038sdcw17 Cyber University ć‚µć‚¤ćƒćƒ¼å¤§å­¦'),
(27770, 'https://ror.org/02311bm93', 'en', 1, 'https://ror.org/02311bm93 Inner Mongolia University of Finance and Economics å†…č’™å¤č“¢ē»å¤§å­¦'),
(27771, 'https://ror.org/01egvzq87', 'en', 1, 'https://ror.org/01egvzq87 Louisiana Baptist University'),
(27772, 'https://ror.org/0586y4s33', 'no_lang_code', 1, 'https://ror.org/0586y4s33 Inoorero University'),
(27773, 'https://ror.org/0167rnj42', 'en', 1, 'https://ror.org/0167rnj42 Ansbach University of Applied Sciences Hochschule Ansbach'),
(27774, 'https://ror.org/01nevky14', 'en', 1, 'https://ror.org/01nevky14 Hayfield University'),
(27775, 'https://ror.org/04a9xrr47', 'en', 1, 'https://ror.org/04a9xrr47 Hebei Finance University ę²³åŒ—é‡‘čžå­¦é™¢'),
(27776, 'https://ror.org/027yf1g97', 'en', 1, 'https://ror.org/027yf1g97 Daegu Cyber University ėŒ€źµ¬ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(27777, 'https://ror.org/00frehm74', 'en', 1, 'https://ror.org/00frehm74 Daegu Technical University ėŒ€źµ¬ź³µģ—…ėŒ€ķ•™źµ'),
(27778, 'https://ror.org/01smbry50', 'en', 1, 'https://ror.org/01smbry50 Daehan Theological University ėŒ€ķ•œģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(27779, 'https://ror.org/02tme6r37', 'en', 1, 'https://ror.org/02tme6r37 Heliopolis University Ų¬Ų§Ł…Ų¹Ų© Ł‡Ł„ŁŠŁˆŲØŁˆŁ„ŁŠŲ³'),
(27780, 'https://ror.org/04qwasw26', 'en', 1, 'https://ror.org/04qwasw26 Daekyeung University ėŒ€ź²½ėŒ€ķ•™źµ'),
(27781, 'https://ror.org/0423r3m86', 'en', 1, 'https://ror.org/0423r3m86 Hellenic American University'),
(27782, 'https://ror.org/03xvjtz09', 'en', 1, 'https://ror.org/03xvjtz09 Hengshui University 蔔氓学院'),
(27783, 'https://ror.org/026mhap18', 'en', 1, 'https://ror.org/026mhap18 Apollonia University Universitatea Apollonia'),
(27784, 'https://ror.org/05xjspa12', 'en', 1, 'https://ror.org/05xjspa12 Darul Huda Islamic University UniversitĆ© islamique darul huda Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± الهدى Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ą“¦ą“¾ą“±ąµąµ½ą“¹ąµą“¦ą“¾ ą“‡ą“øąµą“²ą“¾ą“®ą“æą“•ąµ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(27785, 'https://ror.org/05qp5sg69', 'en', 1, 'https://ror.org/05qp5sg69 Luther Rice College and Seminary'),
(27786, 'https://ror.org/03eczrc37', 'en', 1, 'https://ror.org/03eczrc37 Dawat University ŲÆ دعوت Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(27787, 'https://ror.org/030xw6n96', 'en', 1, 'https://ror.org/030xw6n96 Dawood University of Engineering and Technology ŲÆŲ§Ų¤ŲÆ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(27788, 'https://ror.org/04f8x5b20', 'en', 1, 'https://ror.org/04f8x5b20 Hochschule Merseburg Merseburg University of Applied Sciences'),
(27789, 'https://ror.org/03yhyb689', 'no_lang_code', 1, 'https://ror.org/03yhyb689 Maakhir University Ų¬Ų§Ł…Ų¹Ų© Ł…Ų§Ų®Ų±ā€Ž'),
(27790, 'https://ror.org/002dktj83', 'en', 1, 'https://ror.org/002dktj83 Meru University of Science and Technology'),
(27791, 'https://ror.org/029pyt764', 'en', 1, 'https://ror.org/029pyt764 Inter-University Center for Japanese Language Studies ć‚¢ćƒ”ćƒŖć‚«ćƒ»ć‚«ćƒŠćƒ€å¤§å­¦é€£åˆę—„ęœ¬ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(27792, 'https://ror.org/04h1w2j35', 'en', 1, 'https://ror.org/04h1w2j35 Madan Mohan Malaviya University of Technology मदन ą¤®ą„‹ą¤¹ą¤Ø ą¤®ą¤¾ą¤²ą¤µą„€ą¤Æ ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą„€ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤—ą„‹ą¤°ą¤–ą¤Ŗą„ą¤°'),
(27793, 'https://ror.org/040cm8d21', 'en', 1, 'https://ror.org/040cm8d21 International Burch University Međunarodni univerzitet Burch'),
(27794, 'https://ror.org/059zrbe49', 'en', 1, 'https://ror.org/059zrbe49 Applied Science University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(27795, 'https://ror.org/050m5b118', 'en', 1, 'https://ror.org/050m5b118 Mahamakut Buddhist University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø”ąø«ąø²ąø”ąøąøøąøąø£ąø²ąøŠąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(27796, 'https://ror.org/01mcrnj60', 'en', 1, 'https://ror.org/01mcrnj60 Majmaah University Ų¬Ų§Ł…Ų¹Ų© المجمعة'),
(27797, 'https://ror.org/012tb7473', 'en', 1, 'https://ror.org/012tb7473 Malawi Adventist University'),
(27798, 'https://ror.org/00dbrh564', 'en', 1, 'https://ror.org/00dbrh564 Maldives National University Ž‹ŽØŽˆŽ¬Ž€ŽØŽƒŽ§Ž‡Ž°Ž–Ž­ŽŽŽ¬ ޤައުމީ Ž”ŽŖŽ‚ŽØŽˆŽ¦ŽƒŽŽØŽ“Ž©'),
(27799, 'https://ror.org/01r097937', 'en', 1, 'https://ror.org/01r097937 Defense Acquisition University'),
(27800, 'https://ror.org/02htv7m79', 'en', 1, 'https://ror.org/02htv7m79 Araullo University'),
(27801, 'https://ror.org/042dtza69', 'en', 1, 'https://ror.org/042dtza69 International Information Technologies University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ информационных технологий Єалықаралық ақпараттық Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃŠ»Š°Ń€ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27802, 'https://ror.org/02x3m5z11', 'en', 1, 'https://ror.org/02x3m5z11 Delta International University'),
(27803, 'https://ror.org/04ty8dh37', 'en', 1, 'https://ror.org/04ty8dh37 Delta State University'),
(27804, 'https://ror.org/01fyxr563', 'no_lang_code', 1, 'https://ror.org/01fyxr563 DHA Suffa University ڊي Ų§ŁŠŚ‡ اي سفا ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(27805, 'https://ror.org/045rmvd16', 'en', 1, 'https://ror.org/045rmvd16 Dhammakaya Open University'),
(27806, 'https://ror.org/0563h0629', 'no_lang_code', 1, 'https://ror.org/0563h0629 Mangalayatan University मंगलायतन ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(27807, 'https://ror.org/04xt0wn96', 'en', 1, 'https://ror.org/04xt0wn96 Diamond Harbour Women''s University ą¦”ą¦¾ą¦Æą¦¼ą¦®ą¦Øą§ą¦” হারবার মহিলা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27808, 'https://ror.org/00a686c80', 'en', 1, 'https://ror.org/00a686c80 Maranatha Baptist University'),
(27809, 'https://ror.org/01wfzer83', 'en', 1, 'https://ror.org/01wfzer83 Dire Dawa University'),
(27810, 'https://ror.org/05dg8sq97', 'en', 1, 'https://ror.org/05dg8sq97 International University in Geneva'),
(27811, 'https://ror.org/05cr38245', 'en', 1, 'https://ror.org/05cr38245 Dixon University Center'),
(27812, 'https://ror.org/03d88a580', 'en', 1, 'https://ror.org/03d88a580 Marin Barleti University Universiteti Marin Barleti'),
(27813, 'https://ror.org/042jrxd70', 'en', 1, 'https://ror.org/042jrxd70 International University of Chabahar دانؓگاه ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ چابهار'),
(27814, 'https://ror.org/02kj9vk28', 'en', 1, 'https://ror.org/02kj9vk28 International University of East Africa'),
(27815, 'https://ror.org/05xvhyj32', 'en', 1, 'https://ror.org/05xvhyj32 Armenian National Agrarian University Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ”Õ£Ö€Õ”Ö€Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(27816, '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'),
(27817, 'https://ror.org/03zhqv657', 'en', 1, 'https://ror.org/03zhqv657 Marshall B. Ketchum University'),
(27818, 'https://ror.org/009c3s802', 'en', 1, 'https://ror.org/009c3s802 Martin Luther Christian University'),
(27819, 'https://ror.org/01rk9d029', 'en', 1, 'https://ror.org/01rk9d029 Albanian:Universiteti NdĆ«rkombetar i StrugĆ«s International University of Struga ŠœŠµŃ“ŃƒŠ½Š°Ń€Š¾Š“ŠµŠ½ Универзитет Š”Ń‚Ń€ŃƒŠ³Š°'),
(27820, 'https://ror.org/00ytmwg30', 'en', 1, 'https://ror.org/00ytmwg30 Donga College of Health ė™ģ•„ė³“ź±“ėŒ€ķ•™źµ'),
(27821, 'https://ror.org/02rv57d03', 'en', 1, 'https://ror.org/02rv57d03 International University of the Caribbean'),
(27822, 'https://ror.org/01nvm2856', 'en', 1, 'https://ror.org/01nvm2856 Maryland University of Integrative Health'),
(27823, 'https://ror.org/00j78xh95', 'no_lang_code', 1, 'https://ror.org/00j78xh95 Dongyang Mirae University ė™ģ–‘ėÆøėž˜ėŒ€ķ•™źµ'),
(27824, 'https://ror.org/046ha1n26', 'en', 1, 'https://ror.org/046ha1n26 International Vedic Hindu University'),
(27825, 'https://ror.org/04hv8rm39', 'en', 1, 'https://ror.org/04hv8rm39 Maulana Mazharul Haque Arabic and Persian University ą¤®ą„Œą¤²ą¤¾ą¤Øą¤¾ ą¤®ą¤œą¤¹ą¤°ą„‚ą¤² हक ą¤…ą¤°ą¤¬ą„€ व ą¤«ą¤¾ą¤°ą¤øą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27826, 'https://ror.org/01e6gz331', 'en', 1, 'https://ror.org/01e6gz331 Armenian State University of Economics Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ ÕæÕ¶ÕæÕ„Õ½Õ”Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(27827, 'https://ror.org/016yc1h10', 'en', 1, 'https://ror.org/016yc1h10 Doon University ą¤¦ą„‚ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27828, 'https://ror.org/018sv0913', 'en', 1, 'https://ror.org/018sv0913 McGill-Queen''s University Press'),
(27829, 'https://ror.org/03dv91853', 'en', 1, 'https://ror.org/03dv91853 Dortmund University of Applied Sciences and Arts Fachhochschule Dortmund'),
(27830, 'https://ror.org/03zcb2d36', 'en', 1, 'https://ror.org/03zcb2d36 McPherson University'),
(27831, 'https://ror.org/04zxaa490', 'en', 1, 'https://ror.org/04zxaa490 Invertis University'),
(27832, 'https://ror.org/05rt7ve48', 'en', 1, 'https://ror.org/05rt7ve48 Mindanao University of Science and Technology'),
(27833, 'https://ror.org/01f51gm92', 'en', 1, 'https://ror.org/01f51gm92 Mindanao State University Naawan'),
(27834, 'https://ror.org/02ma9y414', 'en', 1, 'https://ror.org/02ma9y414 Medical University of the Americas'),
(27835, 'https://ror.org/02barjc38', 'en', 1, 'https://ror.org/02barjc38 Arni University ą¤…ą¤°ą„ą¤Øą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27836, 'https://ror.org/04bcsz239', 'en', 1, 'https://ror.org/04bcsz239 Dr. Ram Manohar Lohia National Law University ą¤”ą„‰ राम ą¤®ą¤Øą„‹ą¤¹ą¤° ą¤²ą„‹ą¤¹ą¤æą¤Æą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27837, 'https://ror.org/03bs4te22', 'no_lang_code', 1, 'https://ror.org/03bs4te22 Mizan Tepi University'),
(27838, 'https://ror.org/053yxat32', 'en', 1, 'https://ror.org/053yxat32 Dr. Sarvepalli Radhakrishnan Rajasthan Ayurved University ą¤”ą„‰ ą¤øą¤°ą„ą¤µą¤Ŗą¤²ą„ą¤²ą„€ ą¤°ą¤¾ą¤§ą¤¾ą¤•ą„ƒą¤·ą„ą¤£ą¤Ø ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27839, 'https://ror.org/04jq39t97', 'en', 1, 'https://ror.org/04jq39t97 Mohammad Ali Jauhar University ą¤®ą„‹ą¤¹ą¤®ą„ą¤®ą¤¦ ą¤…ą¤²ą„€ ą¤œą„Œą¤¹ą¤° ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(27840, 'https://ror.org/04kxzy525', 'en', 1, 'https://ror.org/04kxzy525 Dr. Shakuntala Misra National Rehabilitation University ą¤”ą„‰ ą¤¶ą¤•ą„ą¤‚ą¤¤ą¤²ą¤¾ ą¤®ą¤æą¤¶ą„ą¤°ą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤Øą¤°ą„ą¤µą¤¾ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27841, 'https://ror.org/0056fa628', 'en', 1, 'https://ror.org/0056fa628 Monad University'),
(27842, 'https://ror.org/00tngcb91', 'en', 1, 'https://ror.org/00tngcb91 Oregon State University Cascades'),
(27843, 'https://ror.org/00qcnss81', 'en', 1, 'https://ror.org/00qcnss81 Mongolian National University Монгол Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(27844, 'https://ror.org/00bzckd95', 'en', 1, 'https://ror.org/00bzckd95 Arts, Sciences and Technology University in Lebanon'),
(27845, 'https://ror.org/04gqmrb58', 'en', 1, 'https://ror.org/04gqmrb58 Centre Hospitalier Universitaire Dr-Georges-L.-Dumont Dr. Georges-L.-Dumont University Hospital Centre'),
(27846, 'https://ror.org/05prjmm12', 'en', 1, 'https://ror.org/05prjmm12 Moscow University for the Humanities Московский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27847, 'https://ror.org/04bn56254', 'en', 1, 'https://ror.org/04bn56254 Osaka Kawasaki Rehabilitation University å¤§é˜Ŗę²³å“ŽćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å¤§å­¦'),
(27848, 'https://ror.org/01q2ncb61', 'en', 1, 'https://ror.org/01q2ncb61 Osaka University of Comprehensive Children Education å¤§é˜Ŗē·åˆäæč‚²å¤§å­¦'),
(27849, 'https://ror.org/03pzk6650', 'en', 1, 'https://ror.org/03pzk6650 CƩsar Ritz Colleges'),
(27850, 'https://ror.org/009mf3820', 'en', 1, 'https://ror.org/009mf3820 Artsakh State University Арцахский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ԱրցՔխի ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶Õ« Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ ÕæÕ„Õ²Õ„ÕÆÕ”Õ£Õ«Ö€'),
(27851, 'https://ror.org/00xfxvy87', 'en', 1, 'https://ror.org/00xfxvy87 Irbid National University Ų¬Ų§Ł…Ų¹Ų© Ų„Ų±ŲØŲÆ Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(27852, 'https://ror.org/03p4md298', 'en', 1, 'https://ror.org/03p4md298 Shibuya University Network ć‚·ćƒ–ćƒ¤å¤§å­¦'),
(27853, 'https://ror.org/03h8sa373', 'en', 1, 'https://ror.org/03h8sa373 Osmaniye Korkut Ata University Osmaniye Korkut Ata Üniversitesi'),
(27854, 'https://ror.org/00m5dhe11', 'en', 1, 'https://ror.org/00m5dhe11 Arunai Engineering College ą®…ą®°ąÆą®£ąÆˆ ą®ŖąÆ†ą®¾ą®±ą®æą®Æą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(27855, 'https://ror.org/01qadzk38', 'en', 1, 'https://ror.org/01qadzk38 Pacific Coast University'),
(27856, 'https://ror.org/028kehd60', 'en', 1, 'https://ror.org/028kehd60 Ashesi University'),
(27857, 'https://ror.org/03g873n36', 'en', 1, 'https://ror.org/03g873n36 Pacific University Oregon'),
(27858, 'https://ror.org/02j1xr113', 'en', 1, 'https://ror.org/02j1xr113 Ashoka University ą¤…ą¤¶ą„‹ą¤•ą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(27859, 'https://ror.org/02re2pw48', 'en', 1, 'https://ror.org/02re2pw48 Paktia University دانؓگاه پکتیا'),
(27860, 'https://ror.org/00z50sv45', 'en', 1, 'https://ror.org/00z50sv45 Shin Ansan University ģ‹ ģ•ˆģ‚°ėŒ€ķ•™źµ'),
(27861, 'https://ror.org/001x6y413', 'no_lang_code', 1, 'https://ror.org/001x6y413 Palamuru University పాలమూరు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(27862, 'https://ror.org/00y611a79', 'en', 1, 'https://ror.org/00y611a79 Shiraz University of Arts دانؓگاه هنر ؓیراز'),
(27863, 'https://ror.org/023wavd33', 'en', 1, 'https://ror.org/023wavd33 Pampanga State Agricultural University'),
(27864, 'https://ror.org/04kf25f32', 'en', 1, 'https://ror.org/04kf25f32 Shree Guru Gobind Singh Tricentenary University'),
(27865, 'https://ror.org/05bxxrz27', 'en', 1, 'https://ror.org/05bxxrz27 Asia Life University ė³µģŒģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(27866, 'https://ror.org/01wp52t96', 'en', 1, 'https://ror.org/01wp52t96 Asian University for Women ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ ফর উইমেন'),
(27867, 'https://ror.org/00g49fd96', 'en', 1, 'https://ror.org/00g49fd96 Pandit Deendayal Upadhyaya Shekhawati University पंऔित ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤‰ą¤Ŗą¤¾ą¤§ą„ą¤Æą¤¾ą¤Æ ą¤¶ą„‡ą¤–ą¤¾ą¤µą¤¾ą¤Ÿą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27868, 'https://ror.org/0204f9621', 'en', 1, 'https://ror.org/0204f9621 Muhammad University of Islam'),
(27869, 'https://ror.org/028r4zr88', 'en', 1, 'https://ror.org/028r4zr88 Multimedia University of Kenya'),
(27870, 'https://ror.org/00xh8va68', 'no_lang_code', 1, 'https://ror.org/00xh8va68 Shri Venkateshwara University ą¤¶ą„ą¤°ą„€ ą¤µą„‡ą¤‚ą¤•ą¤Ÿą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27871, 'https://ror.org/048j6n969', 'en', 1, 'https://ror.org/048j6n969 Shubun University 修文大学'),
(27872, 'https://ror.org/01qzkbq71', 'en', 1, 'https://ror.org/01qzkbq71 Multnomah University'),
(27873, 'https://ror.org/05dxvt507', 'en', 1, 'https://ror.org/05dxvt507 Pandit Sundarlal Sharma Open University ą¤Ŗą¤£ą„ą¤”ą¤æą¤¤ ą¤øą„ą¤Øą„ą¤¦ą¤°ą¤²ą¤¾ą¤² ą¤¶ą¤°ą„ą¤®ą¤¾ (ą¤®ą„ą¤•ą„ą¤¤) ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27874, 'https://ror.org/04sw18p91', 'en', 1, 'https://ror.org/04sw18p91 Murmansk State Technical University ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27875, 'https://ror.org/03hamks61', 'en', 1, 'https://ror.org/03hamks61 American University of the Caribbean'),
(27876, 'https://ror.org/02a86ry03', 'en', 1, 'https://ror.org/02a86ry03 Chuo Kikuu cha Waislamu Morogoro Muslim University of Morogoro'),
(27877, 'https://ror.org/01hnnne31', 'en', 1, 'https://ror.org/01hnnne31 Siddhartha University'),
(27878, 'https://ror.org/000etct68', 'en', 1, 'https://ror.org/000etct68 Muteesa I Royal University'),
(27879, 'https://ror.org/03gdf8x58', 'en', 1, 'https://ror.org/03gdf8x58 Şifa University Şifa Üniversitesi'),
(27880, 'https://ror.org/03bnp9h65', 'en', 1, 'https://ror.org/03bnp9h65 Islamic Azad University, Bandar Anzali Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد Ų§Ł†Ų²Ł„ŪŒ'),
(27881, 'https://ror.org/00rmfj856', 'en', 1, 'https://ror.org/00rmfj856 Assam Don Bosco University অসম ą¦”ą¦Øą¦¬ā€™ą¦øą§ą¦•ā€™ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27882, 'https://ror.org/052xves36', 'en', 1, 'https://ror.org/052xves36 Myanmar Aerospace Engineering University မြန်မာနိုင်ငံ į€œį€±į€€į€¼į€±į€¬į€„į€ŗį€øį€”į€¾į€„į€·į€ŗį€”į€¬į€€į€¬į€žį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(27883, 'https://ror.org/05fbv2v73', 'en', 1, 'https://ror.org/05fbv2v73 Islamic Azad University of Arsanjan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ارسنجان'),
(27884, 'https://ror.org/012g45386', 'en', 1, 'https://ror.org/012g45386 Papua New Guinea University of Technology'),
(27885, 'https://ror.org/023bes347', 'en', 1, 'https://ror.org/023bes347 Sikkim Manipal University'),
(27886, 'https://ror.org/02p42am41', 'en', 1, 'https://ror.org/02p42am41 Islamic Azad University of Birjand دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ ŲØŪŒŲ±Ų¬Ł†ŲÆ'),
(27887, 'https://ror.org/039p5s648', 'en', 1, 'https://ror.org/039p5s648 Assam Down Town University'),
(27888, 'https://ror.org/00z249n13', 'no_lang_code', 1, 'https://ror.org/00z249n13 Nagoya Bunri University åå¤å±‹ę–‡ē†å¤§å­¦'),
(27889, 'https://ror.org/03e1ymy32', 'en', 1, 'https://ror.org/03e1ymy32 Sorbonne University Abu Dhabi Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲ±ŲØŁˆŁ† أبوظبي'),
(27890, 'https://ror.org/02jkgrk30', 'en', 1, 'https://ror.org/02jkgrk30 Parwan University دانؓگاه Ł¾Ų±ŁˆŲ§Ł†'),
(27891, 'https://ror.org/00thekh91', 'en', 1, 'https://ror.org/00thekh91 Nagoya University of Commerce and Business åå¤å±‹å•†ē§‘å¤§å­¦'),
(27892, 'https://ror.org/001nzxd62', 'en', 1, 'https://ror.org/001nzxd62 Nagoya Women''s University 名古屋儳子大学'),
(27893, 'https://ror.org/0516eyx49', 'en', 1, 'https://ror.org/0516eyx49 Islamic Azad University of Damavand دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲÆŁ…Ų§ŁˆŁ†ŲÆ'),
(27894, 'https://ror.org/03kd43413', 'en', 1, 'https://ror.org/03kd43413 Nagoya Zokei University 名古屋造形大学'),
(27895, 'https://ror.org/02n0ams94', 'en', 1, 'https://ror.org/02n0ams94 Patriot Bible University'),
(27896, 'https://ror.org/03j999y97', 'en', 1, 'https://ror.org/03j999y97 Nakhon Phanom University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø„ąø£ąøžąø™ąø”'),
(27897, 'https://ror.org/025p0rk11', 'en', 1, 'https://ror.org/025p0rk11 Islamic Azad University of Garmsar دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گرمسار'),
(27898, 'https://ror.org/02865ms07', 'en', 1, 'https://ror.org/02865ms07 Islamic Azad University of Gorgan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گرگان'),
(27899, 'https://ror.org/0403tv949', 'en', 1, 'https://ror.org/0403tv949 Nalanda University नालंदा ą¤†ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą¤Øą¤¾ą¤²ą¤Øą„ą¤¦ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਨਾਲੰਦਾ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®Øą®¾ą®²ą®ØąÆą®¤ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ నలందా ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(27900, 'https://ror.org/02m77cm13', 'en', 1, 'https://ror.org/02m77cm13 Nan Jeon University of Science and Technology å—ę¦®ē§‘ęŠ€å¤§å­ø'),
(27901, 'https://ror.org/05q8wsh46', 'en', 1, 'https://ror.org/05q8wsh46 PEF Private University of Management Vienna PEF Privatuniversität für Management'),
(27902, 'https://ror.org/05v3pg621', 'en', 1, 'https://ror.org/05v3pg621 Nan Kai University of Technology å—é–‹ē§‘ęŠ€å¤§å­ø'),
(27903, 'https://ror.org/01hdcfr51', 'en', 1, 'https://ror.org/01hdcfr51 Islamic Azad University, Komijan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ś©Ł…ŪŒŲ¬Ų§Ł†'),
(27904, 'https://ror.org/028ecsj10', 'en', 1, 'https://ror.org/028ecsj10 Periyar Maniammai Institute of Science & Technology ą®ŖąÆ†ą®°ą®æą®Æą®¾ą®°ąÆ ą®®ą®£ą®æą®Æą®®ąÆą®®ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(27905, 'https://ror.org/026qypj38', 'en', 1, 'https://ror.org/026qypj38 Petre Andrei University of Iași Universitatea "Petre Andrei" din Iasi'),
(27906, 'https://ror.org/043zh9f19', 'en', 1, 'https://ror.org/043zh9f19 Islamic Azad University of Sabzevar دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سبزوار'),
(27907, 'https://ror.org/023tdry64', 'en', 1, 'https://ror.org/023tdry64 Sirjan University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų³ŪŒŲ±Ų¬Ų§Ł†'),
(27908, 'https://ror.org/00zxty319', 'no_lang_code', 1, 'https://ror.org/00zxty319 Naragakuen University å„ˆč‰Æē”£ę„­å¤§å­¦'),
(27909, 'https://ror.org/05qdq6h40', 'en', 1, 'https://ror.org/05qdq6h40 Naresuan University Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ą¹€ąø£ąøØąø§ąø£'),
(27910, 'https://ror.org/00zh3gn22', 'en', 1, 'https://ror.org/00zh3gn22 Auro University'),
(27911, 'https://ror.org/04t50yw64', 'en', 1, 'https://ror.org/04t50yw64 Islamic Azad University, Shahinshahr Branch Ų“Ų§Ł‡ŁŠŁ† Ų“Ł‡Ų±ŲŒŲ“Ų§ŪŒŪŒŁ† ؓهر'),
(27912, 'https://ror.org/04yrwqa21', 'en', 1, 'https://ror.org/04yrwqa21 Islamic Azad University Shahr-e-Rey دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“Ł‡Ų±Ų±ŪŒ'),
(27913, 'https://ror.org/02ytxkh27', 'en', 1, 'https://ror.org/02ytxkh27 Sirte University Ų¬Ų§Ł…Ų¹Ų© Ų³Ų±ŲŖ'),
(27914, 'https://ror.org/03xbchh53', 'en', 1, 'https://ror.org/03xbchh53 Islamic Azad University of Shiraz دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓیراز'),
(27915, 'https://ror.org/02bcg1976', 'en', 1, 'https://ror.org/02bcg1976 Islamic Azad University of Tafresh دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تفرؓ'),
(27916, 'https://ror.org/02gne5439', 'en', 1, 'https://ror.org/02gne5439 National Agrarian University Universidad Nacional Agraria'),
(27917, 'https://ror.org/03d5rbb25', 'en', 1, 'https://ror.org/03d5rbb25 Pamantasang Normal ng Pilipinas Philippine Normal University'),
(27918, 'https://ror.org/05h20p340', 'en', 1, 'https://ror.org/05h20p340 Piedmont International University'),
(27919, 'https://ror.org/05x1g5662', 'en', 1, 'https://ror.org/05x1g5662 Piedmont University'),
(27920, 'https://ror.org/03vh2mm87', 'en', 1, 'https://ror.org/03vh2mm87 Pinchot University'),
(27921, 'https://ror.org/00fp2m518', 'en', 1, 'https://ror.org/00fp2m518 Baba Ghulam Shah Badshah University ŲØŲ§ŲØŲ§ ŲŗŁŁ„Ų§Ł… ؓاہ بادؓاہ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ बाबा ą¤—ą¤¼ą„ą¤²ą¤¾ą¤® शाह बादशाह ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(27922, 'https://ror.org/01m00b434', 'en', 1, 'https://ror.org/01m00b434 Islamic University of Niger UniversitƩ islamique de say'),
(27923, 'https://ror.org/047r2sc84', 'no_lang_code', 1, 'https://ror.org/047r2sc84 Slobomir P University Slobomir P Univerzitet Длобомир П Универзитет'),
(27924, 'https://ror.org/03prw2k14', 'en', 1, 'https://ror.org/03prw2k14 Baba Mastnath University बाबा ą¤®ą¤øą„ą¤¤ą¤Øą¤¾ą¤„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27925, 'https://ror.org/01e249g49', 'en', 1, 'https://ror.org/01e249g49 Point University'),
(27926, 'https://ror.org/001ekgz09', 'no_lang_code', 1, 'https://ror.org/001ekgz09 Babu Banarasi Das University బాబు బనారసీ ą°¦ą°¾ą°øą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(27927, '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Ć '),
(27928, 'https://ror.org/01etvnv23', 'en', 1, 'https://ror.org/01etvnv23 Polish University Abroad'),
(27929, 'https://ror.org/01js4x705', 'en', 1, 'https://ror.org/01js4x705 Fƶrsvarshƶgskolan Maanpuolustuskorkeakoulu National Defence University'),
(27930, 'https://ror.org/0089fq749', 'en', 1, 'https://ror.org/0089fq749 Baddi University of Emerging Sciences and Technologies ą¤¬ą¤¦ą„ą¤¦ą„€ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤®ą„‡ą¤°ą„ą¤—ą¤æą¤‚ą¤— ą¤øą¤¾ą¤‡ą¤‚ą¤øą„‡ą¤ø और ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(27931, 'https://ror.org/039t4sn90', 'en', 1, 'https://ror.org/039t4sn90 Soegijapranata Catholic University Universitas Katolik Soegijapranata'),
(27932, 'https://ror.org/045vxh980', 'en', 1, 'https://ror.org/045vxh980 National Defence University Ł†ŪŒŲ“Ł†Ł„ ŚˆŪŒŁŁ†Ų³ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒā€Ž'),
(27933, 'https://ror.org/00zgr4s34', 'en', 1, 'https://ror.org/00zgr4s34 Sokoto State University'),
(27934, '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'),
(27935, 'https://ror.org/05ey1ky02', 'en', 1, 'https://ror.org/05ey1ky02 Apollos University'),
(27936, 'https://ror.org/00y184b33', 'en', 1, 'https://ror.org/00y184b33 Jaamacadda Teknoolajiyadda Somaliland Somaliland University of Technology'),
(27937, 'https://ror.org/006gp7f65', 'no_lang_code', 1, 'https://ror.org/006gp7f65 Baekseok Arts University ė°±ģ„ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(27938, 'https://ror.org/00jpxtg25', 'en', 1, 'https://ror.org/00jpxtg25 Baekseok Culture University ė°±ģ„ė¬øķ™”ėŒ€ķ•™źµ'),
(27939, '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'),
(27940, 'https://ror.org/02sd77t30', 'en', 1, 'https://ror.org/02sd77t30 Baewha Women''s University ė°°ķ™”ģ—¬ģžėŒ€ķ•™źµ'),
(27941, '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'),
(27942, 'https://ror.org/049sfwc36', 'en', 1, 'https://ror.org/049sfwc36 National Intelligence University'),
(27943, 'https://ror.org/04b4rre17', 'en', 1, 'https://ror.org/04b4rre17 National Law University and Judicial Academy'),
(27944, 'https://ror.org/024s2tr48', 'en', 1, 'https://ror.org/024s2tr48 Bakke Graduate University'),
(27945, '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'),
(27946, 'https://ror.org/01hd68v37', 'en', 1, 'https://ror.org/01hd68v37 Ittihad University'),
(27947, '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'),
(27948, 'https://ror.org/026gk3798', 'en', 1, 'https://ror.org/026gk3798 Baku Slavic University Bakı Slavyan Universiteti Бакинский ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27949, 'https://ror.org/01yjpt684', 'en', 1, 'https://ror.org/01yjpt684 Pontifical Urban University Pontificia UniversitƠ Urbaniana PƤpstliche UniversitƤt Urbaniana UniversitƩ pontificale urbaniana'),
(27950, 'https://ror.org/01p3ehe02', 'no_lang_code', 1, 'https://ror.org/01p3ehe02 Souphanouvong University ąŗ”ąŗ°ąŗ«ąŗ²ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ą»„ąŗ„ąŗŖąŗøąŗžąŗ²ąŗ™ąŗøąŗ§ąŗ»ąŗ‡'),
(27951, 'https://ror.org/00ege8681', 'en', 1, 'https://ror.org/00ege8681 Bamyan University ŲÆŲØŲ§Ł…ŪŒŲ§Ł† Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲØŲ§Ł…ŪŒŲ§Ł†ā€Ž'),
(27952, 'https://ror.org/01x7yyx87', 'en', 1, 'https://ror.org/01x7yyx87 National Ribat University Ų¬Ų§Ł…Ų¹Ų© الرباط Ų§Ł„ŁˆŲ·Ł†ŁŠ'),
(27953, 'https://ror.org/029hrv109', 'en', 1, 'https://ror.org/029hrv109 National Taipei University of Business åœ‹ē«‹č‡ŗåŒ—å•†ę„­å¤§å­ø'),
(27954, 'https://ror.org/01pqsf698', 'en', 1, 'https://ror.org/01pqsf698 Bangladesh Islami University বাংলাদেশ ইসলামী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27955, 'https://ror.org/03kgy0531', 'en', 1, 'https://ror.org/03kgy0531 Presbyterian University of East Africa'),
(27956, 'https://ror.org/02w403504', 'en', 1, 'https://ror.org/02w403504 South Eastern Kenya University'),
(27957, 'https://ror.org/00x4epv84', 'en', 1, 'https://ror.org/00x4epv84 Southern Luzon State University'),
(27958, 'https://ror.org/013h3xr51', 'en', 1, 'https://ror.org/013h3xr51 Izmir University İzmir Üniversitesi'),
(27959, 'https://ror.org/05kptcy79', 'en', 1, 'https://ror.org/05kptcy79 National Universities Commission'),
(27960, 'https://ror.org/02q9fse63', 'en', 1, 'https://ror.org/02q9fse63 Southern University Law Center'),
(27961, 'https://ror.org/016848p13', 'en', 1, 'https://ror.org/016848p13 Baptist University of the AmƩricas'),
(27962, 'https://ror.org/008mz8m34', 'en', 1, 'https://ror.org/008mz8m34 Jagadguru Rambhadracharya Handicapped University ą¤œą¤—ą¤¦ą„ą¤—ą„ą¤°ą„ ą¤°ą¤¾ą¤®ą¤­ą¤¦ą„ą¤°ą¤¾ą¤šą¤¾ą¤°ą„ą¤Æ विकलांग ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ąŖœąŖ—ąŖ¦ą«ąŖ—ą«ąŖ°ą« ąŖ°ąŖ¾ąŖ®ąŖ­ąŖ¦ą«ąŖ°ąŖ¾ąŖšąŖ¾ąŖ°ą«ąŖÆ વિકલાંગ ąŖµąŖæąŖ¶ą«ąŖµąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖ²ąŖÆ'),
(27963, 'https://ror.org/019kr0669', 'en', 1, 'https://ror.org/019kr0669 Southwest University of Visual Arts'),
(27964, 'https://ror.org/01cnqpt53', 'en', 1, 'https://ror.org/01cnqpt53 Jain University'),
(27965, 'https://ror.org/03yahhs20', 'en', 1, 'https://ror.org/03yahhs20 Bastar University ą¤¬ą¤øą„ą¤¤ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27966, 'https://ror.org/01g0ns998', 'en', 1, 'https://ror.org/01g0ns998 Private University of Trujillo Universidad Privada de Trujillo'),
(27967, 'https://ror.org/01jswq303', 'en', 1, 'https://ror.org/01jswq303 Spartan Health Sciences University'),
(27968, 'https://ror.org/01rb75107', 'en', 1, 'https://ror.org/01rb75107 National University of Advanced Legal Studies'),
(27969, 'https://ror.org/018gzjd49', 'en', 1, 'https://ror.org/018gzjd49 Bataan Peninsula State University'),
(27970, 'https://ror.org/0530t2h81', 'en', 1, 'https://ror.org/0530t2h81 Spicer Adventist University'),
(27971, 'https://ror.org/05brr5h08', 'en', 1, 'https://ror.org/05brr5h08 Jaamacada Jamhuriya Jamhuriya University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł…Ł‡ŁˆŲ±ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(27972, 'https://ror.org/02c2her03', 'en', 1, 'https://ror.org/02c2her03 Sri Guru Granth Sahib World University ąØøą©ąØ°ą©€ ਗੁਰੂ ąØ—ą©ąØ°ą©°ąØ„ ਸਾਹਿਬ ਵਰਲਔ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(27973, 'https://ror.org/04hsp7g83', 'en', 1, 'https://ror.org/04hsp7g83 Jaamacadda Puntland Puntland State University'),
(27974, 'https://ror.org/02952pd71', 'en', 1, 'https://ror.org/02952pd71 Pwani University'),
(27975, 'https://ror.org/04hj33b78', 'en', 1, 'https://ror.org/04hj33b78 National University of Music Bucharest Universitatea Națională de Muzică București'),
(27976, 'https://ror.org/01mkm2y61', 'en', 1, 'https://ror.org/01mkm2y61 Sri Sai University'),
(27977, 'https://ror.org/05pkzsx39', 'no_lang_code', 1, 'https://ror.org/05pkzsx39 Janus University'),
(27978, 'https://ror.org/05wkq5518', 'en', 1, 'https://ror.org/05wkq5518 Pyongyang Medical University ķ‰ģ–‘ģ˜ķ•™ėŒ€ķ•™'),
(27979, 'https://ror.org/0090r4223', 'en', 1, 'https://ror.org/0090r4223 St. John International University'),
(27980, 'https://ror.org/039k5fe46', 'en', 1, 'https://ror.org/039k5fe46 Japan University of Economics ę—„ęœ¬ēµŒęøˆå¤§å­¦'),
(27981, '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'),
(27982, 'https://ror.org/006pnw132', 'en', 1, 'https://ror.org/006pnw132 Le Iunivesite Aoao o Samoa National University of Samoa'),
(27983, 'https://ror.org/03ffvb852', 'en', 1, 'https://ror.org/03ffvb852 Jaramogi Oginga Odinga University of Science and Technology'),
(27984, 'https://ror.org/000vgrb22', 'en', 1, 'https://ror.org/000vgrb22 Pyongyang University of Science and Technology ķ‰ģ–‘ź³¼ķ•™źø°ģˆ ėŒ€ķ•™'),
(27985, 'https://ror.org/0538gj066', 'en', 1, 'https://ror.org/0538gj066 National University of the Chaco Austral Universidad Nacional del Chaco Austral'),
(27986, 'https://ror.org/03hakcq28', 'en', 1, 'https://ror.org/03hakcq28 Qarshi University Ł‚Ų±Ų“ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(27987, 'https://ror.org/02h7g1s38', 'en', 1, 'https://ror.org/02h7g1s38 Jawaharlal Nehru Architecture and Fine Arts University जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤µą¤¾ą¤øą„ą¤¤ą„ą¤•ą¤²ą¤¾ तऄा ललितकला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27988, 'https://ror.org/00wyq5s37', 'en', 1, 'https://ror.org/00wyq5s37 St. John''s University č–ē“„ēæ°ē§‘ęŠ€å¤§å­ø'),
(27989, 'https://ror.org/04mvbr723', 'en', 1, 'https://ror.org/04mvbr723 Chuo Kikuu cha Mtakatifu Joseph Tanzania St. Joseph University In Tanzania'),
(27990, 'https://ror.org/01y5fjx51', 'en', 1, 'https://ror.org/01y5fjx51 Hainan Tropical Ocean University ęµ·å—ēƒ­åø¦ęµ·ę“‹å­¦é™¢'),
(27991, 'https://ror.org/029d56x50', 'en', 1, 'https://ror.org/029d56x50 St. Lawrence University'),
(27992, 'https://ror.org/01n7ngw29', 'en', 1, 'https://ror.org/01n7ngw29 NationsUniversity'),
(27993, 'https://ror.org/0382vme49', 'en', 1, 'https://ror.org/0382vme49 Quality Leadership University Panama'),
(27994, 'https://ror.org/04hjsag95', 'en', 1, 'https://ror.org/04hjsag95 JECRC University'),
(27995, 'https://ror.org/045jvzr81', 'en', 1, 'https://ror.org/045jvzr81 Quįŗ£ng BƬnh University TrĘ°į»ng ĐẔi hį»c Quįŗ£ng BƬnh'),
(27996, 'https://ror.org/04ft1xc20', 'en', 1, 'https://ror.org/04ft1xc20 St. Martinus University'),
(27997, 'https://ror.org/00n34gb90', 'en', 1, 'https://ror.org/00n34gb90 St. Mary''s Seminary and University'),
(27998, 'https://ror.org/03jxhcr96', 'en', 1, 'https://ror.org/03jxhcr96 Peking University International Hospital 北大国际医院'),
(27999, 'https://ror.org/049te8947', 'en', 1, 'https://ror.org/049te8947 Nayanova University Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(28000, 'https://ror.org/03k5j0a08', 'en', 1, 'https://ror.org/03k5j0a08 Nayoro City University ååÆ„åø‚ē«‹å¤§å­¦'),
(28001, 'https://ror.org/01bt5mj78', 'en', 1, 'https://ror.org/01bt5mj78 Quchan University of Advanced Technology دانؓگاه Ł…Ł‡Ł†ŲÆŲ³ŪŒ ŁŁ†Ų§ŁˆŲ±ŪŒā€ŒŁ‡Ų§ŪŒ Ł†ŁˆŪŒŁ† Ł‚ŁˆŚ†Ų§Ł†'),
(28002, 'https://ror.org/04qdhg582', 'en', 1, 'https://ror.org/04qdhg582 Jharkhand Rai University'),
(28003, 'https://ror.org/02nfjwv95', 'en', 1, 'https://ror.org/02nfjwv95 St. Paul University Dumaguete'),
(28004, 'https://ror.org/040p5b123', 'en', 1, 'https://ror.org/040p5b123 Neisse University'),
(28005, 'https://ror.org/033v2cg93', 'no_lang_code', 1, 'https://ror.org/033v2cg93 Jig Jiga Jigjiga University'),
(28006, 'https://ror.org/013tad429', 'en', 1, 'https://ror.org/013tad429 Benadir University Jaamacada Banaadir جامعـــة ŲØŁ†Ł€Ł€Ł€Ų§ŲÆŲ±ā€Ž'),
(28007, 'https://ror.org/03dr26375', 'en', 1, 'https://ror.org/03dr26375 Jinwen University of Science and Technology ę™Æę–‡ē§‘ęŠ€å¤§å­ø'),
(28008, 'https://ror.org/056bber35', 'en', 1, 'https://ror.org/056bber35 Rajasthan Technical University ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą¤¾ą¤²ą¤Æ'),
(28009, 'https://ror.org/04sxw1w14', 'en', 1, 'https://ror.org/04sxw1w14 St. Theresa''s Medical University of Yerevan'),
(28010, 'https://ror.org/02bmams93', 'en', 1, 'https://ror.org/02bmams93 St. Thomas University'),
(28011, 'https://ror.org/03rm49h74', 'en', 1, 'https://ror.org/03rm49h74 Jodhpur National University ą¤œą„‹ą¤§ą¤Ŗą„ą¤° ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28012, 'https://ror.org/05e8t3y83', 'en', 1, 'https://ror.org/05e8t3y83 Rajin University of Marine Transport ė‚˜ģ§„ķ•“ģš“ėŒ€ķ•™ ė§Œė“¤źø°'),
(28013, 'https://ror.org/01fjdq469', 'en', 1, 'https://ror.org/01fjdq469 John Cabot University'),
(28014, 'https://ror.org/05pc6nk51', 'en', 1, 'https://ror.org/05pc6nk51 New Era University'),
(28015, 'https://ror.org/02qrax274', 'en', 1, 'https://ror.org/02qrax274 Ras al-Khaimah Medical and Health Sciences University'),
(28016, 'https://ror.org/01kbvt179', 'en', 1, 'https://ror.org/01kbvt179 New Mexico State University Carlsbad'),
(28017, 'https://ror.org/03p5fh293', 'en', 1, 'https://ror.org/03p5fh293 Bethany Global University');
INSERT INTO `rors` VALUES
(28018, 'https://ror.org/014cnmj57', 'en', 1, 'https://ror.org/014cnmj57 Duale Hochschule Baden-Württemberg Ravensburg Ravensburg University of Cooperative Education'),
(28019, 'https://ror.org/02y1frf83', 'en', 1, 'https://ror.org/02y1frf83 John Garang Memorial University of Science and Technology'),
(28020, 'https://ror.org/00nphdr35', 'en', 1, 'https://ror.org/00nphdr35 Rayalaseema University రాయలసీమ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(28021, 'https://ror.org/00wtwp073', 'en', 1, 'https://ror.org/00wtwp073 St. Matthew''s University'),
(28022, 'https://ror.org/00jkprj19', 'en', 1, 'https://ror.org/00jkprj19 John Paul the Great Catholic University'),
(28023, 'https://ror.org/03dcvf827', 'en', 1, 'https://ror.org/03dcvf827 Beykent University Beykent Üniversitesi'),
(28024, 'https://ror.org/030c1ef86', 'en', 1, 'https://ror.org/030c1ef86 Bhagwant University भगवंत ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(28025, 'https://ror.org/04dpnfr42', 'en', 1, 'https://ror.org/04dpnfr42 Johnson University'),
(28026, 'https://ror.org/0430hbm78', 'en', 1, 'https://ror.org/0430hbm78 Nigerian University Games Association'),
(28027, 'https://ror.org/020kbv448', 'en', 1, 'https://ror.org/020kbv448 Johnson University Florida'),
(28028, 'https://ror.org/0378gm372', 'en', 1, 'https://ror.org/0378gm372 Hochschule RheinMain RheinMain University of Applied Sciences'),
(28029, 'https://ror.org/01m67jf71', 'en', 1, 'https://ror.org/01m67jf71 NIILM University ą¤Øą„€ą¤²ą¤® ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(28030, 'https://ror.org/037zqsm37', 'en', 1, 'https://ror.org/037zqsm37 Nilai University Universiti Nilai'),
(28031, 'https://ror.org/04wdt0z89', 'en', 1, 'https://ror.org/04wdt0z89 Hochschule Rhein-Waal Rhine-Waal University of Applied Sciences'),
(28032, 'https://ror.org/02pzqs694', 'en', 1, 'https://ror.org/02pzqs694 Riara University'),
(28033, 'https://ror.org/02s3pgd18', 'en', 1, 'https://ror.org/02s3pgd18 Rivier University UniversitƩ rivier'),
(28034, 'https://ror.org/057ap5t09', 'en', 1, 'https://ror.org/057ap5t09 RK University'),
(28035, 'https://ror.org/04se5tt51', 'en', 1, 'https://ror.org/04se5tt51 Bikaner Technical University ą¤¬ą„€ą¤•ą¤¾ą¤Øą„‡ą¤° ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28036, 'https://ror.org/03ewyw715', 'en', 1, 'https://ror.org/03ewyw715 Jose Rizal Memorial State University'),
(28037, 'https://ror.org/014e7p840', 'en', 1, 'https://ror.org/014e7p840 Robert Morris University Illinois'),
(28038, 'https://ror.org/04dn9wj23', 'en', 1, 'https://ror.org/04dn9wj23 Romblon State University'),
(28039, 'https://ror.org/04mgf6n79', 'en', 1, 'https://ror.org/04mgf6n79 Junagadh Agricultural University ąŖ•ą«ƒąŖ·ąŖæ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, ąŖœą«‚ąŖØąŖ¾ąŖ—ąŖ¢'),
(28040, 'https://ror.org/031yv7164', 'en', 1, 'https://ror.org/031yv7164 Hochschule für Musik und Theater Rostock Rostock University of Music and Theatre'),
(28041, 'https://ror.org/02pnhcc10', 'en', 1, 'https://ror.org/02pnhcc10 Hochschule für Forstwirtschaft Rottenburg Rottenburg University of Applied Forest Sciences'),
(28042, 'https://ror.org/05q9we431', 'en', 1, 'https://ror.org/05q9we431 Noakhali Science and Technology University নোয়াখালী ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(28043, 'https://ror.org/01w33af17', 'en', 1, 'https://ror.org/01w33af17 Royal University of Fine Arts UniversitĆ© royale des beaux-arts įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įžœįž·įž…įž·įžįŸ’įžšįžŸįž·įž›įŸ’įž”įŸˆ'),
(28044, 'https://ror.org/04yjdkj62', 'en', 1, 'https://ror.org/04yjdkj62 Sultan Kudarat State University'),
(28045, 'https://ror.org/02g97km06', 'en', 1, 'https://ror.org/02g97km06 Russian Islamic University Российский исламский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(28046, 'https://ror.org/014cjmc76', 'en', 1, 'https://ror.org/014cjmc76 Swinburne University of Technology Sarawak Campus'),
(28047, 'https://ror.org/007w4fd36', 'en', 1, 'https://ror.org/007w4fd36 Japan Center for Michigan Universities ćƒŸć‚·ć‚¬ćƒ³å·žē«‹å¤§å­¦é€£åˆę—„ęœ¬ć‚»ćƒ³ć‚æćƒ¼'),
(28048, 'https://ror.org/02p5gkq58', 'en', 1, 'https://ror.org/02p5gkq58 King’s University'),
(28049, 'https://ror.org/02tsdk069', 'en', 1, 'https://ror.org/02tsdk069 North Greenville University'),
(28050, 'https://ror.org/05k3sdc46', 'en', 1, 'https://ror.org/05k3sdc46 North Sichuan Medical University 川北医学院'),
(28051, 'https://ror.org/04abjgr86', 'en', 1, 'https://ror.org/04abjgr86 Sacred Heart University'),
(28052, 'https://ror.org/044r99091', 'en', 1, 'https://ror.org/044r99091 Saigon Technology University ĐẔi hį»c CĆ“ng nghệ SĆ i Gòn'),
(28053, 'https://ror.org/01f1fsr30', 'en', 1, 'https://ror.org/01f1fsr30 Saigon University TrĘ°į»ng ĐẔi hį»c SĆ i Gòn UniversitĆ© de saigon 脿蓔大学'),
(28054, 'https://ror.org/049c2kr37', 'en', 1, 'https://ror.org/049c2kr37 Kalaidos Fachhochschule Kalaidos University of Applied Sciences'),
(28055, 'https://ror.org/040acyg58', 'en', 1, 'https://ror.org/040acyg58 Saint Patrick''s Seminary and University'),
(28056, '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'),
(28057, 'https://ror.org/0398ex766', 'en', 1, 'https://ror.org/0398ex766 Saint Petersburg State University of Economics Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ сервиса Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(28058, 'https://ror.org/01sbmsw53', 'no_lang_code', 1, 'https://ror.org/01sbmsw53 Saku University 佐久大学'),
(28059, 'https://ror.org/048a4ax84', 'en', 1, 'https://ror.org/048a4ax84 Northland International University'),
(28060, '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 Кам''ŃŠ½ŠµŃ†ŃŒ-ŠŸŠ¾Š“Ń–Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана ŠžŠ³Ń–єнка ŠšŠ°Š¼ŠµŠ½ŠµŃ†-ПоГольский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28061, 'https://ror.org/0008taf66', 'en', 1, 'https://ror.org/0008taf66 Bushnell University'),
(28062, 'https://ror.org/01g0sat63', 'en', 1, 'https://ror.org/01g0sat63 Salam University سلام Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†ā€Ž Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų³Ł„Ų§Ł…ā€Ž)'),
(28063, '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'),
(28064, 'https://ror.org/009f6yv14', 'en', 1, 'https://ror.org/009f6yv14 Kansai University of Nursing and Health Sciences é–¢č„æēœ‹č­·åŒ»ē™‚å¤§å­¦'),
(28065, 'https://ror.org/009yjbg58', 'en', 1, 'https://ror.org/009yjbg58 Notre Dame of Dadiangas University'),
(28066, 'https://ror.org/016epqy31', 'en', 1, 'https://ror.org/016epqy31 Kansai University of Welfare Sciences é–¢č„æē¦ē„‰ē§‘å­¦å¤§å­¦'),
(28067, 'https://ror.org/0539t2e91', 'en', 1, 'https://ror.org/0539t2e91 Thorneloe University'),
(28068, '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'),
(28069, 'https://ror.org/03wm74n81', 'en', 1, 'https://ror.org/03wm74n81 Jaamacadda Nugaal Nugaal University'),
(28070, 'https://ror.org/018528593', 'en', 1, 'https://ror.org/018528593 Nyenrode Business Universiteit Nyenrode Business University'),
(28071, 'https://ror.org/030kg2v23', 'en', 1, 'https://ror.org/030kg2v23 Oaksterdam University'),
(28072, 'https://ror.org/02d9d7j52', 'en', 1, 'https://ror.org/02d9d7j52 Thunchath Ezhuthachan Malayalam University ą®¤ąÆą®žąÆą®šą®¤ąÆą®¤ąÆ ą®Žą®“ąÆą®¤ąÆą®¤ą®šąÆą®šą®©ąÆ மலையாள ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“¤ąµą“žąµą“šą“¤ąµą“¤ąµ ą“Žą““ąµą“¤ąµą“¤ą“šąµą“›ąµ» ą“®ą“²ą“Æą“¾ą“³ą“‚ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(28073, 'https://ror.org/01h8c9041', 'en', 1, 'https://ror.org/01h8c9041 Syrian Private University الجامعة Ų§Ł„Ų³ŁˆŲ±ŁŠŲ© الخاصة'),
(28074, 'https://ror.org/04fa2qd52', 'en', 1, 'https://ror.org/04fa2qd52 Sanya University äø‰äŗšå­¦é™¢'),
(28075, 'https://ror.org/04ppdmy96', 'en', 1, 'https://ror.org/04ppdmy96 Tabarestan University مؤسسه Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ طبرستان'),
(28076, 'https://ror.org/023jw8186', 'no_lang_code', 1, 'https://ror.org/023jw8186 Sapporo Ōtani University 札幌大谷大学'),
(28077, 'https://ror.org/044f1sg93', 'en', 1, 'https://ror.org/044f1sg93 Oduduwa University'),
(28078, 'https://ror.org/05y8j9f75', 'en', 1, 'https://ror.org/05y8j9f75 Sarguja University ą¤øą¤°ą¤—ą„ą¤œą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28079, 'https://ror.org/00f3w5j61', 'no_lang_code', 1, 'https://ror.org/00f3w5j61 Oikos University'),
(28080, 'https://ror.org/05696d323', 'en', 1, 'https://ror.org/05696d323 Tokyo Christian University ę±äŗ¬åŸŗē£ę•™å¤§å­¦'),
(28081, 'https://ror.org/00kj4zk54', 'en', 1, 'https://ror.org/00kj4zk54 Tabriz Islamic Arts University دانؓگاه هنر Ų§Ų³Ł„Ų§Ł…ŪŒ تبریز'),
(28082, 'https://ror.org/027n9q071', 'fr', 1, 'https://ror.org/027n9q071 UniversitƩ des Montagnes'),
(28083, 'https://ror.org/02rcadd38', 'en', 1, 'https://ror.org/02rcadd38 Nagaoka University 長岔大学'),
(28084, 'https://ror.org/01etn5q21', 'en', 1, 'https://ror.org/01etn5q21 Tokyo Fuji University ę±äŗ¬åÆŒå£«å¤§å­¦'),
(28085, 'https://ror.org/04eqy7d03', 'en', 1, 'https://ror.org/04eqy7d03 Oklahoma State University Institute of Technology'),
(28086, 'https://ror.org/04jd89h35', 'en', 1, 'https://ror.org/04jd89h35 Olivet University'),
(28087, 'https://ror.org/05wvke928', 'en', 1, 'https://ror.org/05wvke928 Tokyo Health Care University ę±äŗ¬åŒ»ē™‚äæå„å¤§å­¦'),
(28088, 'https://ror.org/04jzmk773', 'en', 1, 'https://ror.org/04jzmk773 Tafila Technical University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų·ŁŁŠŁ„Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(28089, 'https://ror.org/048cnkq84', 'en', 1, 'https://ror.org/048cnkq84 Ontario Confederation of University Faculty Associations'),
(28090, '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'),
(28091, 'https://ror.org/05dzbpx12', 'fr', 1, 'https://ror.org/05dzbpx12 European University of Scents and Flavors UniversitƩ EuropƩenne des Senteurs & Saveur'),
(28092, 'https://ror.org/02ee19461', 'en', 1, 'https://ror.org/02ee19461 Open Universities Australia'),
(28093, 'https://ror.org/040f6ar92', 'en', 1, 'https://ror.org/040f6ar92 Tafresh University دانؓگاه تفرؓ'),
(28094, 'https://ror.org/037yy5v69', 'en', 1, 'https://ror.org/037yy5v69 Open University Malaysia Universiti Terbuka Malaysia é©¬ę„č„æäŗšå¼€ę”¾å¤§å­¦'),
(28095, 'https://ror.org/05rgcq967', 'en', 1, 'https://ror.org/05rgcq967 Torch Trinity Graduate University ķšƒė¶ˆķŠøė¦¬ė‹ˆķ‹°ģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(28096, 'https://ror.org/00nvwb533', 'fr', 1, 'https://ror.org/00nvwb533 UniversitƩ Internationale de Casablanca'),
(28097, 'https://ror.org/04p3ez076', 'en', 1, 'https://ror.org/04p3ez076 Taipei City University of Science and Technology č‡ŗåŒ—åŸŽåø‚ē§‘ęŠ€å¤§å­ø'),
(28098, 'https://ror.org/01sr63h27', 'en', 1, 'https://ror.org/01sr63h27 Chuo Kikuu cha Kumbukumbu cha Sebastian Kolowa Sebastian Kolowa Memorial University'),
(28099, 'https://ror.org/0406t3m57', 'fr', 1, 'https://ror.org/0406t3m57 UniversitƩ Nantes Angers Le Mans'),
(28100, 'https://ror.org/02tjjy347', 'en', 1, 'https://ror.org/02tjjy347 Taiwan Comprehensive University System å°ē£ē¶œåˆå¤§å­øē³»ēµ±'),
(28101, 'https://ror.org/0351xae06', 'en', 1, 'https://ror.org/0351xae06 Torrens University Australia'),
(28102, 'https://ror.org/05crr5s63', 'en', 1, 'https://ror.org/05crr5s63 SEGi University Universiti SEGi'),
(28103, 'https://ror.org/02zfq4z39', 'en', 1, 'https://ror.org/02zfq4z39 Taiwan Hospitality and Tourism University 臺灣觀光學院'),
(28104, 'https://ror.org/04w7k2121', 'no_lang_code', 1, 'https://ror.org/04w7k2121 University of Fukuchiyama ē¦ēŸ„å±±å…¬ē«‹å¤§å­¦'),
(28105, 'https://ror.org/055zdhj54', 'zh', 1, 'https://ror.org/055zdhj54 Taiwan Shoufu University å°ē£é¦–åŗœå¤§å­ø'),
(28106, 'https://ror.org/05dg6kp30', 'en', 1, 'https://ror.org/05dg6kp30 Universiteti Pavarƫsia Vlorƫ University Pavaresia Vlore'),
(28107, 'https://ror.org/00m4aws33', 'en', 1, 'https://ror.org/00m4aws33 Seoul Theological University ģ„œģšøģ‹ ķ•™ėŒ€ķ•™źµ'),
(28108, 'https://ror.org/03nw0tx25', 'en', 1, 'https://ror.org/03nw0tx25 Shaheed Mohtarma Benazir Bhutto Medical University Ų“Ł‡ŁŠŲÆ محترمه ŲØŁŠŁ†ŲøŁŠŲ± Ś€Ł½Łˆ Ł…ŁŠŚŠŁŠŚŖŁ„ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ ؓہید محترمہ ŲØŪ’ Ł†ŲøŪŒŲ± بھٹو Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(28109, 'https://ror.org/02gvn8796', 'en', 1, 'https://ror.org/02gvn8796 Sultan Sharif Ali Islamic University Universiti Islam Sultan Sharif Ali'),
(28110, 'https://ror.org/03fx09x73', 'en', 1, 'https://ror.org/03fx09x73 Shaoyang University'),
(28111, 'https://ror.org/05hawb687', 'no_lang_code', 1, 'https://ror.org/05hawb687 Shaqra University Ų¬Ų§Ł…Ų¹Ų© ؓقراؔ'),
(28112, 'https://ror.org/00y792711', 'en', 1, 'https://ror.org/00y792711 Technological University of Tajikistan Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø техникии Тоҷикистон ба номи М.ŠžŃŠøŠ¼Ó£ ТаГжикский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. ŠžŃŠøŠ¼Šø'),
(28113, 'https://ror.org/0486ta465', 'en', 1, 'https://ror.org/0486ta465 Shenzhen Radio and TV University ę·±åœ³å¹æę’­ē”µč§†å¤§å­¦'),
(28114, 'https://ror.org/01xmbf059', 'en', 1, 'https://ror.org/01xmbf059 Universities at Medway'),
(28115, 'https://ror.org/02kpzs615', 'en', 1, 'https://ror.org/02kpzs615 University Academy Holbeach'),
(28116, 'https://ror.org/049d63v97', 'en', 1, 'https://ror.org/049d63v97 Takasaki University of Commerce é«˜å“Žå•†ē§‘å¤§å­¦'),
(28117, 'https://ror.org/002xar614', 'en', 1, 'https://ror.org/002xar614 Takming University of Science and Technology å¾·ę˜Žč²”ē¶“ē§‘ęŠ€å¤§å­ø'),
(28118, 'https://ror.org/0314ahf24', 'en', 1, 'https://ror.org/0314ahf24 TransWorld University ē’°ēƒē§‘ęŠ€å¤§å­ø'),
(28119, 'https://ror.org/02cbb2q94', 'en', 1, 'https://ror.org/02cbb2q94 Trinity Southwest University'),
(28120, 'https://ror.org/05nnaxh18', 'en', 1, 'https://ror.org/05nnaxh18 University of East Yangon ရန်ကုန် နရှေ့ပိုင်း į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(28121, 'https://ror.org/00zyp8708', 'en', 1, 'https://ror.org/00zyp8708 Shevchenko Transnistria State University Universitatea de Stat din Transnistria ŠŸŃ€ŠøŠ“Š½ŠµŃŃ‚Ń€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Тараса Шевченко'),
(28122, 'https://ror.org/012a85e51', 'en', 1, 'https://ror.org/012a85e51 University of Economics and Innovation Wyższa Szkoła Ekonomii i Innowacjii w Lublinie'),
(28123, 'https://ror.org/007qxz427', 'en', 1, 'https://ror.org/007qxz427 Tamil Nadu Teachers Education University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®†ą®šą®æą®°ą®æą®Æą®°ąÆ ą®•ą®²ąÆą®µą®æą®Æą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(28124, 'https://ror.org/00bwtjf83', 'en', 1, 'https://ror.org/00bwtjf83 Tampere University of Applied Sciences Tampereen Ammattikorkeakoulu'),
(28125, 'https://ror.org/05r9rzb75', 'en', 1, 'https://ror.org/05r9rzb75 University of Energy and Natural Resources'),
(28126, 'https://ror.org/00v23bh67', 'en', 1, 'https://ror.org/00v23bh67 University of Fairfax'),
(28127, 'https://ror.org/03q6f0894', 'en', 1, 'https://ror.org/03q6f0894 TrĘ°į»ng ĐẔi hį»c TĆ¢n Tįŗ”o TĆ¢n Tįŗ”o University'),
(28128, 'https://ror.org/002x5gq86', 'en', 1, 'https://ror.org/002x5gq86 Turkmen Agricultural University Named after S.A. Niyazov Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. А. ŠŠøŃŠ·Š¾Š²Š°'),
(28129, 'https://ror.org/01m9cz451', 'en', 1, 'https://ror.org/01m9cz451 Tanzania Commission for Universities'),
(28130, 'https://ror.org/01a7snz60', 'en', 1, 'https://ror.org/01a7snz60 Hochschule für Fernsehen und Film München University of Television and Film Munich'),
(28131, 'https://ror.org/00p04vc15', 'en', 1, 'https://ror.org/00p04vc15 U15 Group of Canadian Research Universities'),
(28132, 'https://ror.org/00xhtpg39', 'en', 1, 'https://ror.org/00xhtpg39 Taungoo University į€į€±į€¬į€„į€ŗį€„į€°į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(28133, 'https://ror.org/03vejgn42', 'no_lang_code', 1, 'https://ror.org/03vejgn42 Uekusa Gakuen University ę¤č‰å­¦åœ’å¤§å­¦'),
(28134, 'https://ror.org/02vw63h19', 'en', 1, 'https://ror.org/02vw63h19 Uganda Pentecostal University'),
(28135, 'https://ror.org/01rxjzf54', 'en', 1, 'https://ror.org/01rxjzf54 University of the East Ramon Magsaysay Memorial Medical Center'),
(28136, 'https://ror.org/01fxfpm96', 'en', 1, 'https://ror.org/01fxfpm96 Techno Global University ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ ą¤—ą„ą¤²ą„‹ą¤¬ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€, ą¤øą¤æą¤°ą„‹ą¤‚ą¤œ'),
(28137, 'https://ror.org/00r664k32', 'en', 1, 'https://ror.org/00r664k32 University Hospital'),
(28138, 'https://ror.org/02ywmkj38', 'en', 1, 'https://ror.org/02ywmkj38 Ukrainian Free University Ukrainische Freie Universität München'),
(28139, 'https://ror.org/04v84zt52', 'en', 1, 'https://ror.org/04v84zt52 Children''s Hospital of Western Ontario'),
(28140, 'https://ror.org/01b8wwr26', 'no_lang_code', 1, 'https://ror.org/01b8wwr26 University Hospital Center Dr DragiÅ”a MiÅ”ović ŠšŠ»ŠøŠ½ŠøŃ‡ŠŗŠ¾-болнички центар Др Š”Ń€Š°Š³ŠøŃˆŠ° ŠœŠøŃˆŠ¾Š²ŠøŃ›-Š”ŠµŠ“ŠøŃšŠµ'),
(28141, 'https://ror.org/023d4z626', 'en', 1, 'https://ror.org/023d4z626 University Hospital of Oran مستؓفى ŁˆŁ‡Ų±Ų§Ł† Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(28142, 'https://ror.org/03a6cpb51', 'en', 1, 'https://ror.org/03a6cpb51 University of Goma UniversitƩ de goma'),
(28143, 'https://ror.org/044qb6z05', 'no_lang_code', 1, 'https://ror.org/044qb6z05 University of Goroka'),
(28144, 'https://ror.org/03srgbm67', 'en', 1, 'https://ror.org/03srgbm67 University of Guelph-Humber'),
(28145, 'https://ror.org/023tegq12', 'en', 1, 'https://ror.org/023tegq12 Jaamacadda Hargeysa University of Hargeisa Ų¬Ų§Ł…Ų¹Ų© Ł‡Ų±Ų¬ŁŠŲ³Ų§'),
(28146, 'https://ror.org/001889b65', 'en', 1, 'https://ror.org/001889b65 University of the Holy Quran and Islamic Sciences Ų¬Ų§Ł…Ų¹Ų© القرآن Ų§Ł„ŁƒŲ±ŁŠŁ… ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(28147, 'https://ror.org/03fgk0a27', 'en', 1, 'https://ror.org/03fgk0a27 United Methodist University'),
(28148, 'https://ror.org/00k27aj44', 'en', 1, 'https://ror.org/00k27aj44 University of the Philippines Open University'),
(28149, 'https://ror.org/05r8r3608', 'en', 1, 'https://ror.org/05r8r3608 United States University'),
(28150, 'https://ror.org/047qsc013', 'no_lang_code', 1, 'https://ror.org/047qsc013 Telangana University తెలంగాణ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(28151, 'https://ror.org/024ytaq06', 'en', 1, 'https://ror.org/024ytaq06 Field Studies Council'),
(28152, 'https://ror.org/00ynatg20', 'no_lang_code', 1, 'https://ror.org/00ynatg20 Universal Research Group (Pakistan)'),
(28153, 'https://ror.org/036pt7h44', 'en', 1, 'https://ror.org/036pt7h44 University Medical Center'),
(28154, 'https://ror.org/01zr7q119', 'es', 1, 'https://ror.org/01zr7q119 Universidad Autónoma de Santa Ana'),
(28155, 'https://ror.org/01wdhap14', 'en', 1, 'https://ror.org/01wdhap14 University of Health Sciences Antigua'),
(28156, 'https://ror.org/05yjy4360', 'en', 1, 'https://ror.org/05yjy4360 University of Applied Arts Vienna Universität für angewandte Kunst Wien'),
(28157, 'https://ror.org/03v7fdr41', 'en', 1, 'https://ror.org/03v7fdr41 Tenri Health Care University å¤©ē†åŒ»ē™‚å¤§å­¦'),
(28158, 'https://ror.org/02ahyfq08', 'en', 1, 'https://ror.org/02ahyfq08 University of the Potomac'),
(28159, 'https://ror.org/01846yk50', 'no_lang_code', 1, 'https://ror.org/01846yk50 Chuo Kikuu cha Teofilo Kisanji Teofilo Kisanji University'),
(28160, 'https://ror.org/02nctxr05', 'en', 1, 'https://ror.org/02nctxr05 University of Horticultural Sciences Bagalkote ą²¤ą³‹ą²Ÿą²—ą²¾ą²°ą²æą²•ą³† ą²µą²æą²œą³ą²žą²¾ą²Øą²—ą²³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ą²¬ą²¾ą²—ą²²ą²•ą³‹ą²Ÿą³†'),
(28161, 'https://ror.org/04q5vv384', 'en', 1, 'https://ror.org/04q5vv384 Hochschule für Angewandte Wissenschaften Hof Hof University of Applied Sciences'),
(28162, 'https://ror.org/056z5bx32', 'en', 1, 'https://ror.org/056z5bx32 Hochschule für angewandte Wissenschaften Landshut University of Applied Sciences Landshut'),
(28163, 'https://ror.org/03zka7717', 'en', 1, 'https://ror.org/03zka7717 University of Tifariti Ų¬Ų§Ł…Ų¹Ų© تيفاريتي'),
(28164, 'https://ror.org/02m0m4f58', 'en', 1, 'https://ror.org/02m0m4f58 Novi Sad Open University ŠŠ¾Š²Š¾ŃŠ°Š“ŃŠŗŠø отворени ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚'),
(28165, 'https://ror.org/0274gjx61', 'en', 1, 'https://ror.org/0274gjx61 University of Traditional Medicine, Mandalay į€į€­į€Æį€„į€ŗį€øį€›į€„į€ŗį€øā€Œį€†į€±į€øį€žį€­į€•į€¹į€•į€¶ā€Œį€€į€»į€±į€¬į€„į€ŗį€ø'),
(28166, 'https://ror.org/02azpgf48', 'en', 1, 'https://ror.org/02azpgf48 American University of Iraq Sulaimani الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ų§Ł„Ų³Ł„ŁŠŁ…Ų§Ł†ŁŠŲ©'),
(28167, 'https://ror.org/00vab0213', 'en', 1, 'https://ror.org/00vab0213 University of Tripoli Lebanon Ų¬Ų§Ł…Ų¹Ų© طرابلس لبنان'),
(28168, 'https://ror.org/05nnnck56', 'en', 1, 'https://ror.org/05nnnck56 The American University of Vietnam ĐẔi hį»c Mỹ tįŗ”i Việt Nam'),
(28169, 'https://ror.org/00cbm0437', 'en', 1, 'https://ror.org/00cbm0437 Bridge University'),
(28170, 'https://ror.org/03zkjvs45', 'es', 1, 'https://ror.org/03zkjvs45 Universidad del Tepeyac'),
(28171, 'https://ror.org/04f9r2a11', 'en', 1, 'https://ror.org/04f9r2a11 East African University'),
(28172, 'https://ror.org/0092t1z08', 'en', 1, 'https://ror.org/0092t1z08 The Future University Ų¬Ų§Ł…Ų¹Ų© المستقبل'),
(28173, 'https://ror.org/04sfnmc71', 'en', 1, 'https://ror.org/04sfnmc71 Glocal University ą¤—ą„ą¤²ą„‹ą¤•ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(28174, 'https://ror.org/03cb6na95', 'en', 1, 'https://ror.org/03cb6na95 University of International Golden Indonesia'),
(28175, 'https://ror.org/035rzdj42', 'en', 1, 'https://ror.org/035rzdj42 University of Asmara'),
(28176, 'https://ror.org/0051sgx15', 'en', 1, 'https://ror.org/0051sgx15 University of Bagamoyo'),
(28177, 'https://ror.org/031ahrf94', 'en', 1, 'https://ror.org/031ahrf94 University of Bamenda UniversitƩ de Bamenda'),
(28178, 'https://ror.org/03y601s20', 'en', 1, 'https://ror.org/03y601s20 University of Bihać Univerzitet u Bihaću Универзитет у Š‘ŠøŃ…Š°Ń›Ńƒ'),
(28179, 'https://ror.org/03rk9qf06', 'en', 1, 'https://ror.org/03rk9qf06 University of Kabianga'),
(28180, 'https://ror.org/02xr3yb07', 'en', 1, 'https://ror.org/02xr3yb07 University of Bijeljina Univerzitet Bijeljina Универзитет Š‘ŠøŃ˜ŠµŃ™ŠøŠ½Š°'),
(28181, 'https://ror.org/03ws6sq43', 'en', 1, 'https://ror.org/03ws6sq43 University of Kalemie UniversitƩ de kalemie'),
(28182, 'https://ror.org/01q0sjp54', 'en', 1, 'https://ror.org/01q0sjp54 University of Buraimi Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ±ŁŠŁ…ŁŠ'),
(28183, 'https://ror.org/01ff1ev27', 'en', 1, 'https://ror.org/01ff1ev27 University of Kamina UniversitƩ de Kamina'),
(28184, 'https://ror.org/05cv4zg26', 'en', 1, 'https://ror.org/05cv4zg26 Wirral University Teaching Hospital NHS Foundation Trust'),
(28185, 'https://ror.org/02ee2t316', 'en', 1, 'https://ror.org/02ee2t316 University of Wasit Ų¬Ų§Ł…Ų¹Ų© واسط'),
(28186, 'https://ror.org/020z55s31', 'en', 1, 'https://ror.org/020z55s31 Hogeschool Wittenborg Wittenborg University'),
(28187, 'https://ror.org/045zwes19', 'en', 1, 'https://ror.org/045zwes19 University of West Los Angeles'),
(28188, 'https://ror.org/005b14v72', 'es', 1, 'https://ror.org/005b14v72 Universidad Interglobal'),
(28189, 'https://ror.org/01x5kh380', 'en', 1, 'https://ror.org/01x5kh380 University of West Yangon ရန်ကုန် နနောက်ပိုင်း į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(28190, 'https://ror.org/025e3rc84', 'en', 1, 'https://ror.org/025e3rc84 University of Cambodia įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(28191, 'https://ror.org/03k1g6m92', 'en', 1, 'https://ror.org/03k1g6m92 University of Kindu UniversitƩ de kindu'),
(28192, 'https://ror.org/04r5d0y92', 'en', 1, 'https://ror.org/04r5d0y92 University of Kota ą¤•ą„‹ą¤Ÿą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28193, 'https://ror.org/0457fn135', 'en', 1, 'https://ror.org/0457fn135 University of Community Health Magway į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(28194, 'https://ror.org/01aadv713', 'en', 1, 'https://ror.org/01aadv713 Herzegovina University SveučiliŔte Hercegovina'),
(28195, 'https://ror.org/032se3k78', 'en', 1, 'https://ror.org/032se3k78 Yanbian University of Science and Technology å»¶č¾¹ē§‘ęŠ€å¤§å­¦'),
(28196, 'https://ror.org/05v8v7d33', 'en', 1, 'https://ror.org/05v8v7d33 Yangtze Normal University é•æę±ŸåøˆčŒƒå­¦é™¢'),
(28197, 'https://ror.org/02ykntn67', 'en', 1, 'https://ror.org/02ykntn67 University Press of Mississippi'),
(28198, 'https://ror.org/045svrn73', 'en', 1, 'https://ror.org/045svrn73 Institut de l''UniversitƩ de Londres Ơ Paris University of London Institute in Paris'),
(28199, 'https://ror.org/03s49rs22', 'en', 1, 'https://ror.org/03s49rs22 University of Public Health Yangon į€•į€¼į€Šį€ŗį€žį€°į€·į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(ရန်ကုန်)'),
(28200, 'https://ror.org/0561zqn56', 'en', 1, 'https://ror.org/0561zqn56 University System of Ohio'),
(28201, 'https://ror.org/04z33a802', 'en', 1, 'https://ror.org/04z33a802 Istanbul Yeni Yüzyıl University Yeni Yüzyıl Üniversitesi'),
(28202, 'https://ror.org/00ztyd753', 'en', 1, 'https://ror.org/00ztyd753 University of Puthisastra įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ā€‹ įž–įž»įž‘įŸ’įž’įž·įžŸįž¶įžŸįŸ’įžįŸ’įžš'),
(28203, 'https://ror.org/00sxtta05', 'en', 1, 'https://ror.org/00sxtta05 University of Ragusa UniversitĆ  di Ragusa'),
(28204, 'https://ror.org/03mc8zn46', 'en', 1, 'https://ror.org/03mc8zn46 Yeonsung University ģ—°ģ„±ėŒ€ķ•™źµ'),
(28205, 'https://ror.org/042acmv76', 'en', 1, 'https://ror.org/042acmv76 Centre Hospitalier et Universitaire de YaoundƩ University Teaching Hospital of Yaounde'),
(28206, 'https://ror.org/008836v19', 'pt', 1, 'https://ror.org/008836v19 Universidade Sénior Contemporânea'),
(28207, 'https://ror.org/05h4th693', 'en', 1, 'https://ror.org/05h4th693 Yichun University å®œę˜„å­¦é™¢'),
(28208, 'https://ror.org/017fqwn34', 'en', 1, 'https://ror.org/017fqwn34 Upper Nile University'),
(28209, 'https://ror.org/00fs9wb06', 'en', 1, 'https://ror.org/00fs9wb06 University of Raparin Ų¬Ų§Ł…Ų¹Ų© Ų±Ų§ŲØŲ±ŁŠŁ†'),
(28210, 'https://ror.org/051sa4h84', 'en', 1, 'https://ror.org/051sa4h84 University of Maroua UniversitƩ de Maroua'),
(28211, 'https://ror.org/014jqnm52', 'en', 1, 'https://ror.org/014jqnm52 J.C. Bose University of Science & Technology, YMCA'),
(28212, 'https://ror.org/00jyqx898', 'en', 1, 'https://ror.org/00jyqx898 University of Maryland Baltimore Washington Medical Center'),
(28213, 'https://ror.org/05p2q6194', 'en', 1, 'https://ror.org/05p2q6194 University of Sadat City Ų¬Ų§Ł…Ų¹Ų© Ł…ŲÆŁŠŁ†Ų© السادات'),
(28214, 'https://ror.org/02exegz49', 'en', 1, 'https://ror.org/02exegz49 Yokkaichi Nursing and Medical Care University å››ę—„åø‚ēœ‹č­·åŒ»ē™‚å¤§å­¦'),
(28215, 'https://ror.org/03626nk78', 'en', 1, 'https://ror.org/03626nk78 Pamantasang Lungsod ng Urdaneta Urdaneta City University'),
(28216, 'https://ror.org/03k0fhh26', 'en', 1, 'https://ror.org/03k0fhh26 University of Maryland Medical Center Midtown Campus'),
(28217, 'https://ror.org/004qjck53', 'en', 1, 'https://ror.org/004qjck53 University of Science and Technology Omdurman Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ų§Ł†Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł†ŁŠŲ©'),
(28218, 'https://ror.org/0593kfr97', 'en', 1, 'https://ror.org/0593kfr97 Urganch davlat universiteti Urgench State University'),
(28219, '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'),
(28220, 'https://ror.org/03bej0y93', 'en', 1, 'https://ror.org/03bej0y93 Yu Da University č‚²é”ē§‘ęŠ€å¤§å­ø'),
(28221, 'https://ror.org/01041e172', 'en', 1, 'https://ror.org/01041e172 University of Maryland Rehabilitation & Orthopaedic Institute'),
(28222, 'https://ror.org/020jv3j52', 'en', 1, 'https://ror.org/020jv3j52 Zaoksky Adventist University Заокский аГвентистский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28223, 'https://ror.org/0454rb348', 'en', 1, 'https://ror.org/0454rb348 University of Science and Technology of Togo UniversitƩ des Sciences et Technologies du Togo'),
(28224, 'https://ror.org/058v42s42', 'en', 1, 'https://ror.org/058v42s42 Utah State University Eastern'),
(28225, 'https://ror.org/0461r7q95', 'en', 1, 'https://ror.org/0461r7q95 University of Seychelles'),
(28226, 'https://ror.org/04t7gxr16', 'en', 1, 'https://ror.org/04t7gxr16 Communication University of Zhejiang ęµ™ę±Ÿä¼ åŖ’å­¦é™¢'),
(28227, 'https://ror.org/05qgc6h44', 'en', 1, 'https://ror.org/05qgc6h44 Utkal University of Culture'),
(28228, 'https://ror.org/01rec3330', 'no_lang_code', 1, 'https://ror.org/01rec3330 University of Mbandaka UniversitƩ de mbandaka'),
(28229, 'https://ror.org/04wvk1327', 'en', 1, 'https://ror.org/04wvk1327 Uttarakhand Open University ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤£ą„ą¤” ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28230, 'https://ror.org/000b7ms85', 'en', 1, 'https://ror.org/000b7ms85 Zhongkai University of Agriculture and Engineering ä»²ęŗå†œäøšå·„ēØ‹å­¦é™¢'),
(28231, 'https://ror.org/02m2dej40', 'en', 1, 'https://ror.org/02m2dej40 University of South Asia ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ সাউ঄ ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾'),
(28232, 'https://ror.org/03ms8m606', 'en', 1, 'https://ror.org/03ms8m606 Uttarakhand Technical University ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤‚ą¤” ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28233, 'https://ror.org/0289me815', 'en', 1, 'https://ror.org/0289me815 University of South Carolina Lancaster'),
(28234, 'https://ror.org/03nx1r778', 'en', 1, 'https://ror.org/03nx1r778 Zirve University Zirve Üniversitesi'),
(28235, 'https://ror.org/03bha2k34', 'en', 1, 'https://ror.org/03bha2k34 University of Medical Technology Mandalay'),
(28236, 'https://ror.org/03qd80k21', 'en', 1, 'https://ror.org/03qd80k21 Jaamacadda Koonfurta Soomaaliya University of Southern Somalia'),
(28237, 'https://ror.org/013dqcj88', 'en', 1, 'https://ror.org/013dqcj88 University of Medical Technology Yangon'),
(28238, 'https://ror.org/01gz5zx42', 'it', 1, 'https://ror.org/01gz5zx42 UniversitĆ  per Stranieri Dante Alighieri UniversitĆ© pour Ɖtrangers de Reggio de Calabre'),
(28239, 'https://ror.org/04daenq52', 'en', 1, 'https://ror.org/04daenq52 Valley View University'),
(28240, 'https://ror.org/040knvs26', 'en', 1, 'https://ror.org/040knvs26 Akdeniz Karpaz Üniversitesi University of Mediterranean Karpasia'),
(28241, 'https://ror.org/04w6xt508', 'en', 1, 'https://ror.org/04w6xt508 University of Minnesota Crookston'),
(28242, 'https://ror.org/05b5sds65', 'en', 1, 'https://ror.org/05b5sds65 University of Misan Ų¬Ų§Ł…Ų¹Ų© Ł…ŁŠŲ³Ų§Ł†'),
(28243, 'https://ror.org/02jwe8b72', 'fr', 1, 'https://ror.org/02jwe8b72 UniversitƩ Alassane Ouattara'),
(28244, 'https://ror.org/026rmnx29', 'en', 1, 'https://ror.org/026rmnx29 Via Vinci Academy'),
(28245, 'https://ror.org/03yvdgx21', 'en', 1, 'https://ror.org/03yvdgx21 Victoria School of Management'),
(28246, 'https://ror.org/01jxtqc31', 'en', 1, 'https://ror.org/01jxtqc31 TrĘ°į»ng ĐẔi hį»c Việt - Đức Vietnamese-German University'),
(28247, 'https://ror.org/03phees55', 'en', 1, 'https://ror.org/03phees55 Vikrama Simhapuri University ą°µą°æą°•ą±ą°°ą°® సింహపురి ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(28248, 'https://ror.org/05bd7aq21', 'en', 1, 'https://ror.org/05bd7aq21 TrĘ°į»ng ĐẔi hį»c Y khoa Vinh Vinh Medical University'),
(28249, 'https://ror.org/05pgz6x52', 'en', 1, 'https://ror.org/05pgz6x52 Virginia International University'),
(28250, 'https://ror.org/03x2r5572', 'en', 1, 'https://ror.org/03x2r5572 Virginia University of Lynchburg'),
(28251, 'https://ror.org/058p2fn24', 'no_lang_code', 1, 'https://ror.org/058p2fn24 Vitrina University'),
(28252, 'https://ror.org/00edm2h72', 'en', 1, 'https://ror.org/00edm2h72 Wadi International University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© الخاصة'),
(28253, 'https://ror.org/025acyt23', 'en', 1, 'https://ror.org/025acyt23 Warner University'),
(28254, 'https://ror.org/02weg9v26', 'en', 1, 'https://ror.org/02weg9v26 Universiti Terbuka Wawasan Wawasan Open University å®ę„æå¼€ę”¾å¤§å­¦'),
(28255, 'https://ror.org/0533m8c72', 'en', 1, 'https://ror.org/0533m8c72 Webster University Geneva'),
(28256, 'https://ror.org/05jtyp735', 'en', 1, 'https://ror.org/05jtyp735 Webster University Ghana'),
(28257, 'https://ror.org/014k07p29', 'en', 1, 'https://ror.org/014k07p29 Wenzao Ursuline University of Languages ę–‡č—»å¤–čŖžå¤§å­ø'),
(28258, 'https://ror.org/014ngq634', 'en', 1, 'https://ror.org/014ngq634 Australian Federation of Graduate Women New South Wales'),
(28259, 'https://ror.org/01bfcjz55', 'en', 1, 'https://ror.org/01bfcjz55 West Yangon Technological University į€›į€”į€ŗį€€į€Æį€”į€ŗį€”į€”į€±į€¬į€€į€ŗį€•į€­į€Æį€„į€ŗį€øį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(28260, 'https://ror.org/02vfebb84', 'en', 1, 'https://ror.org/02vfebb84 Westbrook University'),
(28261, 'https://ror.org/01rcvq140', 'en', 1, 'https://ror.org/01rcvq140 Chongqing University of Arts and Sciences é‡åŗ†ę–‡ē†å­¦é™¢'),
(28262, 'https://ror.org/00cafxy65', 'en', 1, 'https://ror.org/00cafxy65 University of Missouri Women''s and Children''s Hospital'),
(28263, 'https://ror.org/00c1q0x03', 'en', 1, 'https://ror.org/00c1q0x03 Teikyo University of Japan in Durham'),
(28264, 'https://ror.org/05x0qkj16', 'en', 1, 'https://ror.org/05x0qkj16 Technological University Hpa-An'),
(28265, 'https://ror.org/04mr67481', 'en', 1, 'https://ror.org/04mr67481 Technological University Kyaukse į€€į€»į€±į€¬į€€į€ŗį€†į€Šį€ŗ į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(28266, 'https://ror.org/04e5g4k17', 'en', 1, 'https://ror.org/04e5g4k17 Technological University Myitkyina į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ (မြစ်ကြီးနား)'),
(28267, 'https://ror.org/010h1b677', 'en', 1, 'https://ror.org/010h1b677 Technological University Pakokku'),
(28268, 'https://ror.org/0569jas47', 'en', 1, 'https://ror.org/0569jas47 Laguna Department of Education'),
(28269, 'https://ror.org/004tze884', 'en', 1, 'https://ror.org/004tze884 Institute of Natural Science ė¦¬ź³¼ėŒ€ķ•™'),
(28270, 'https://ror.org/01syrqz32', 'en', 1, 'https://ror.org/01syrqz32 University of North Korean Studies ė¶ķ•œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(28271, 'https://ror.org/05gdz9864', 'en', 1, 'https://ror.org/05gdz9864 University of Nursing Mandalay į€žį€°į€”į€¬į€•į€¼į€Æį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(į€™į€”į€¹į€į€œį€±į€ø)'),
(28272, 'https://ror.org/02hdk9s78', 'en', 1, 'https://ror.org/02hdk9s78 University of Nursing Yangon į€žį€°į€”į€¬į€•į€¼į€Æį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(ရန်ကုန်)'),
(28273, 'https://ror.org/04yhapk09', 'en', 1, 'https://ror.org/04yhapk09 University of Palestine Ų¬Ų§Ł…Ų¹Ų© ŁŁ„Ų³Ų·ŁŠŁ†'),
(28274, 'https://ror.org/00ndnda10', 'en', 1, 'https://ror.org/00ndnda10 University of Pharmacy Mandalay į€†į€±į€øį€į€«į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(į€™į€”į€¹į€į€œį€±į€ø)'),
(28275, 'https://ror.org/02f36qr48', 'en', 1, 'https://ror.org/02f36qr48 University of Pharmacy Yangon į€†į€±į€øį€į€«į€ø į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ ရန်ကုန်'),
(28276, 'https://ror.org/0242vta36', 'en', 1, 'https://ror.org/0242vta36 University of Pittsburgh at Titusville'),
(28277, 'https://ror.org/03xbccz06', 'en', 1, 'https://ror.org/03xbccz06 Wellcome Centre for Cell Biology'),
(28278, 'https://ror.org/0094tm228', 'en', 1, 'https://ror.org/0094tm228 Wellcome Centre for Cell-Matrix Research'),
(28279, 'https://ror.org/00m7w8s72', 'en', 1, 'https://ror.org/00m7w8s72 Wellcome Centre for Molecular Parasitology'),
(28280, 'https://ror.org/02704qw51', 'en', 1, 'https://ror.org/02704qw51 Wellcome Centre for Human Neuroimaging'),
(28281, 'https://ror.org/01jgp6d54', 'it', 1, 'https://ror.org/01jgp6d54 Istituto di Astrofisica Spaziale e Fisica Cosmica di Milano'),
(28282, 'https://ror.org/03qafph14', 'it', 1, 'https://ror.org/03qafph14 Istituto di Astrofisica Spaziale e Fisica cosmica di Palermo'),
(28283, 'https://ror.org/054y9c036', 'it', 1, 'https://ror.org/054y9c036 Telescopio Nazionale Galileo'),
(28284, 'https://ror.org/02my7ff12', 'it', 1, 'https://ror.org/02my7ff12 Catania Astrophysical Observatory Osservatorio Astrofisico di Catania'),
(28285, 'https://ror.org/00e5h6e42', 'no_lang_code', 1, 'https://ror.org/00e5h6e42 1366 Technologies (United States)'),
(28286, 'https://ror.org/01m0js248', 'no_lang_code', 1, 'https://ror.org/01m0js248 24M (United States)'),
(28287, 'https://ror.org/01p369f26', 'nl', 1, 'https://ror.org/01p369f26 AA Brediusstichting'),
(28288, 'https://ror.org/03ef4eh86', 'no_lang_code', 1, 'https://ror.org/03ef4eh86 KPC Group (Netherlands)'),
(28289, 'https://ror.org/0287gd772', 'no_lang_code', 1, 'https://ror.org/0287gd772 New Potato Technologies (United States)'),
(28290, 'https://ror.org/00efjh764', 'no_lang_code', 1, 'https://ror.org/00efjh764 Kyma Technologies (United States)'),
(28291, 'https://ror.org/01p232496', 'la', 1, 'https://ror.org/01p232496 Fons Vitae Lyceum'),
(28292, 'https://ror.org/03ftv5p16', 'no_lang_code', 1, 'https://ror.org/03ftv5p16 Newton Energy Group (United States)'),
(28293, 'https://ror.org/02j7y6936', 'en', 1, 'https://ror.org/02j7y6936 Centre for BioSystems Genomics'),
(28294, 'https://ror.org/04pk3vt21', 'no_lang_code', 1, 'https://ror.org/04pk3vt21 Nexant (United States)'),
(28295, 'https://ror.org/00c19d043', 'no_lang_code', 1, 'https://ror.org/00c19d043 Foro Energy (United States)'),
(28296, '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'),
(28297, 'https://ror.org/05p8yat86', 'en', 1, 'https://ror.org/05p8yat86 Acent Laboratories'),
(28298, 'https://ror.org/05dbptw67', 'en', 1, 'https://ror.org/05dbptw67 Landelijke Onderzoekschool Taalwetenschap Netherlands Graduate School of Linguistics'),
(28299, 'https://ror.org/00pavee11', 'en', 1, 'https://ror.org/00pavee11 CSG Centre for Society and the Life Sciences'),
(28300, 'https://ror.org/0027t6e72', 'no_lang_code', 1, 'https://ror.org/0027t6e72 G&S Titanium (United States)'),
(28301, 'https://ror.org/020b8ew17', 'no_lang_code', 1, 'https://ror.org/020b8ew17 Gannon Motor and Controls (United States)'),
(28302, 'https://ror.org/00t46nv75', 'fr', 1, 'https://ror.org/00t46nv75 Actions pour l’Environnement et le DĆ©veloppement Durable'),
(28303, 'https://ror.org/03ekv5207', 'no_lang_code', 1, 'https://ror.org/03ekv5207 Acumentrics (United States)'),
(28304, 'https://ror.org/016ykaq31', 'no_lang_code', 1, 'https://ror.org/016ykaq31 Nissan (United States)'),
(28305, 'https://ror.org/007s7bj48', 'no_lang_code', 1, 'https://ror.org/007s7bj48 ADA-ES (United States)'),
(28306, 'https://ror.org/02yk12g97', 'no_lang_code', 1, 'https://ror.org/02yk12g97 Hexagon Lincoln (United States)'),
(28307, 'https://ror.org/00g5z0e60', 'en', 1, 'https://ror.org/00g5z0e60 Center for Research on Inter-group Relations and Conflict Resolution'),
(28308, 'https://ror.org/020z47w89', 'no_lang_code', 1, 'https://ror.org/020z47w89 Novici Biotech (United States)'),
(28309, 'https://ror.org/009va1d27', 'no_lang_code', 1, 'https://ror.org/009va1d27 ADMA Products (United States)'),
(28310, 'https://ror.org/04y9pdp40', 'no_lang_code', 1, 'https://ror.org/04y9pdp40 General Compression (United States)'),
(28311, 'https://ror.org/02gd5t807', 'nl', 1, 'https://ror.org/02gd5t807 Christelijk Gymnasium Utrecht'),
(28312, 'https://ror.org/037t16559', 'no_lang_code', 1, 'https://ror.org/037t16559 Nuvotronics (United States)'),
(28313, 'https://ror.org/024w82g14', 'no_lang_code', 1, 'https://ror.org/024w82g14 GeneSiC Semiconductor (United States)'),
(28314, 'https://ror.org/028vf7c32', 'en', 1, 'https://ror.org/028vf7c32 Africa Innovations Institute'),
(28315, 'https://ror.org/03snnmr62', 'no_lang_code', 1, 'https://ror.org/03snnmr62 Glint Photonics (United States)'),
(28316, 'https://ror.org/02rdwwh89', 'nl', 1, 'https://ror.org/02rdwwh89 Christelijke Scholengemeenschap Walcheren'),
(28317, 'https://ror.org/00ma2r948', 'en', 1, 'https://ror.org/00ma2r948 African Studies Centre Afrika Studiecentrum'),
(28318, 'https://ror.org/03nz4ge59', 'no_lang_code', 1, 'https://ror.org/03nz4ge59 Global Seawater Extraction Technologies (United States)'),
(28319, 'https://ror.org/042kkhb55', 'no_lang_code', 1, 'https://ror.org/042kkhb55 Malibu IQ (United States)'),
(28320, 'https://ror.org/0549cht89', 'en', 1, 'https://ror.org/0549cht89 Algaeventure Systems'),
(28321, 'https://ror.org/041mwxn09', 'no_lang_code', 1, 'https://ror.org/041mwxn09 Onboard Dynamics (United States)'),
(28322, 'https://ror.org/00dztkz65', 'en', 1, 'https://ror.org/00dztkz65 Graduate School Experimental Plant Sciences'),
(28323, 'https://ror.org/035jt5x02', 'nl', 1, 'https://ror.org/035jt5x02 CINOP'),
(28324, 'https://ror.org/004wfw106', 'no_lang_code', 1, 'https://ror.org/004wfw106 AllCell (United States)'),
(28325, 'https://ror.org/05wx5rz20', 'nl', 1, 'https://ror.org/05wx5rz20 Onderzoekschool Ethiek'),
(28326, 'https://ror.org/04bdm2a74', 'en', 1, 'https://ror.org/04bdm2a74 CUNY Energy Institute'),
(28327, 'https://ror.org/03pdfag88', 'nl', 1, 'https://ror.org/03pdfag88 Marecollege'),
(28328, 'https://ror.org/03czazr10', 'en', 1, 'https://ror.org/03czazr10 Grid Protection Alliance'),
(28329, 'https://ror.org/04rjn7856', 'no_lang_code', 1, 'https://ror.org/04rjn7856 Clipper Windpower (United States)'),
(28330, 'https://ror.org/02jp14137', 'no_lang_code', 1, 'https://ror.org/02jp14137 Halotechnics (United States)'),
(28331, 'https://ror.org/05rd5v488', 'no_lang_code', 1, 'https://ror.org/05rd5v488 CMTech (Australia)'),
(28332, 'https://ror.org/01h1amn32', 'no_lang_code', 1, 'https://ror.org/01h1amn32 Hazenberg Archeologie (Netherlands)'),
(28333, 'https://ror.org/0288xhz86', 'no_lang_code', 1, 'https://ror.org/0288xhz86 Evolva Holding (United States)'),
(28334, 'https://ror.org/00sfcfc45', 'no_lang_code', 1, 'https://ror.org/00sfcfc45 Heliotrope Technologies (United States)'),
(28335, 'https://ror.org/00my5vx03', 'id', 1, 'https://ror.org/00my5vx03 Yayasan Masyarakat Dan Perikanan Indonesia'),
(28336, 'https://ror.org/01w0rme55', 'no_lang_code', 1, 'https://ror.org/01w0rme55 AmberWave (United States)'),
(28337, 'https://ror.org/02zg7gg26', 'no_lang_code', 1, 'https://ror.org/02zg7gg26 MC10 (United States)'),
(28338, 'https://ror.org/02ptcjs87', 'no_lang_code', 1, 'https://ror.org/02ptcjs87 Air Liquide (United States)'),
(28339, 'https://ror.org/03e5r3h78', 'no_lang_code', 1, 'https://ror.org/03e5r3h78 Cogenra Solar (United States)'),
(28340, 'https://ror.org/01f00bj82', 'no_lang_code', 1, 'https://ror.org/01f00bj82 American Lithium Energy (United States)'),
(28341, 'https://ror.org/05kaxyq51', 'en', 1, 'https://ror.org/05kaxyq51 Meertens Institute Meertens Instituut'),
(28342, 'https://ror.org/03zf72497', 'no_lang_code', 1, 'https://ror.org/03zf72497 Consol Energy (United States)'),
(28343, 'https://ror.org/03bkq6a07', 'en', 1, 'https://ror.org/03bkq6a07 Research School for Medieval Studies'),
(28344, 'https://ror.org/03ftf4376', 'no_lang_code', 1, 'https://ror.org/03ftf4376 Ammono (Poland)'),
(28345, 'https://ror.org/03qekm213', 'no_lang_code', 1, 'https://ror.org/03qekm213 Cosine (Netherlands)'),
(28346, 'https://ror.org/034wc9785', 'no_lang_code', 1, 'https://ror.org/034wc9785 Coskata (United States)'),
(28347, 'https://ror.org/053gdty29', 'en', 1, 'https://ror.org/053gdty29 Creative Thermal Solutions'),
(28348, 'https://ror.org/00gnbgz55', 'no_lang_code', 1, 'https://ror.org/00gnbgz55 AMN (Netherlands)'),
(28349, 'https://ror.org/03wyamy27', 'nl', 1, 'https://ror.org/03wyamy27 Huizinga Instituut'),
(28350, 'https://ror.org/05mfxbk05', 'no_lang_code', 1, 'https://ror.org/05mfxbk05 MIB Engineers (United States)'),
(28351, 'https://ror.org/0276qgf45', 'no_lang_code', 1, 'https://ror.org/0276qgf45 iBeam Materials (United States)'),
(28352, 'https://ror.org/01c2zcv46', 'no_lang_code', 1, 'https://ror.org/01c2zcv46 OPX Biotechnologies (United States)'),
(28353, 'https://ror.org/039ryse59', 'en', 1, 'https://ror.org/039ryse59 Ichthus College'),
(28354, 'https://ror.org/03xw8f892', 'no_lang_code', 1, 'https://ror.org/03xw8f892 Q Free (Netherlands)'),
(28355, 'https://ror.org/041n69t03', 'no_lang_code', 1, 'https://ror.org/041n69t03 Dacom (Netherlands)'),
(28356, 'https://ror.org/05re5hn81', 'no_lang_code', 1, 'https://ror.org/05re5hn81 Ideal Power (United States)'),
(28357, 'https://ror.org/05cj5gd51', 'nl', 1, 'https://ror.org/05cj5gd51 Amsterdam Museum'),
(28358, 'https://ror.org/03pv43p79', 'en', 1, 'https://ror.org/03pv43p79 Ministry of Forests and Soil Conservation'),
(28359, 'https://ror.org/01t931b89', 'no_lang_code', 1, 'https://ror.org/01t931b89 Dais Analytic Corporation (United States)'),
(28360, 'https://ror.org/05ppvf150', 'no_lang_code', 1, 'https://ror.org/05ppvf150 Impact Technology Development (United States)'),
(28361, 'https://ror.org/008za0b72', 'nl', 1, 'https://ror.org/008za0b72 Openbare Scholengemeenschap De Hogeberg'),
(28362, 'https://ror.org/05ekh0s13', 'no_lang_code', 1, 'https://ror.org/05ekh0s13 MOgene (United States)'),
(28363, 'https://ror.org/01nv5t982', 'no_lang_code', 1, 'https://ror.org/01nv5t982 IncSys (United States)'),
(28364, 'https://ror.org/00sjx7d61', 'no_lang_code', 1, 'https://ror.org/00sjx7d61 Vencore (United States)'),
(28365, 'https://ror.org/05awrjz19', 'no_lang_code', 1, 'https://ror.org/05awrjz19 Monolith Semiconductor (United States)'),
(28366, 'https://ror.org/011qdcn44', 'no_lang_code', 1, 'https://ror.org/011qdcn44 Infinia Technology Corporation (United States)'),
(28367, 'https://ror.org/0538jkx44', 'no_lang_code', 1, 'https://ror.org/0538jkx44 Diversified Energy (United States)'),
(28368, 'https://ror.org/02esv1036', 'no_lang_code', 1, 'https://ror.org/02esv1036 Ingenieursburo Balvers (Netherlands)'),
(28369, 'https://ror.org/00rxhq344', 'de', 1, 'https://ror.org/00rxhq344 Innoventor'),
(28370, 'https://ror.org/058nd7377', 'nl', 1, 'https://ror.org/058nd7377 Museum Boerhaave'),
(28371, 'https://ror.org/01xjjmp17', 'nl', 1, 'https://ror.org/01xjjmp17 Museum Catharijneconvent'),
(28372, 'https://ror.org/018tnrf75', 'no_lang_code', 1, 'https://ror.org/018tnrf75 Inorganic Specialists (United States)'),
(28373, 'https://ror.org/01sr6x298', 'en', 1, 'https://ror.org/01sr6x298 Pastoral and Environmental Network in the Horn of Africa'),
(28374, 'https://ror.org/00ts92g58', 'nl', 1, 'https://ror.org/00ts92g58 Dunea'),
(28375, 'https://ror.org/030ms0k96', 'en', 1, 'https://ror.org/030ms0k96 Alfa College'),
(28376, 'https://ror.org/04jrdcy74', 'en', 1, 'https://ror.org/04jrdcy74 Dutch Network of Systems and Control'),
(28377, 'https://ror.org/05x74wc07', 'en', 1, 'https://ror.org/05x74wc07 Dutch Inspectorate of Education Inspectie van het Onderwijs'),
(28378, 'https://ror.org/01kqc7c98', 'no_lang_code', 1, 'https://ror.org/01kqc7c98 Pellion Technologies (United States)'),
(28379, 'https://ror.org/01a961x31', 'no_lang_code', 1, 'https://ror.org/01a961x31 Nano Terra (United States)'),
(28380, 'https://ror.org/055d8gs64', 'en', 1, 'https://ror.org/055d8gs64 Dutch Techcentre for Life Sciences'),
(28381, 'https://ror.org/045x7cm28', 'nl', 1, 'https://ror.org/045x7cm28 Archeologisch Diensten Centrum (Netherlands)'),
(28382, 'https://ror.org/00ryd3444', 'no_lang_code', 1, 'https://ror.org/00ryd3444 Dynalloy (United States)'),
(28383, 'https://ror.org/039je3989', 'no_lang_code', 1, 'https://ror.org/039je3989 Dynapower (United States)'),
(28384, 'https://ror.org/02qn7c872', 'no_lang_code', 1, 'https://ror.org/02qn7c872 Phononic Devices (United States)'),
(28385, 'https://ror.org/03hxrmn64', 'en', 1, 'https://ror.org/03hxrmn64 Institute for the Study of Education and Human Development'),
(28386, 'https://ror.org/04hqrkw15', 'no_lang_code', 1, 'https://ror.org/04hqrkw15 Architectural Applications (United States)'),
(28387, 'https://ror.org/015xhag49', 'no_lang_code', 1, 'https://ror.org/015xhag49 Archol (Netherlands)'),
(28388, 'https://ror.org/01261x550', 'no_lang_code', 1, 'https://ror.org/01261x550 Planar Energy (United States)'),
(28389, 'https://ror.org/02c53vf48', 'no_lang_code', 1, 'https://ror.org/02c53vf48 Plant Sensory Systems (United States)'),
(28390, 'https://ror.org/0223gf763', 'no_lang_code', 1, 'https://ror.org/0223gf763 Easel Biotechnologies (United States)'),
(28391, 'https://ror.org/01jp7k726', 'en', 1, 'https://ror.org/01jp7k726 Asian Development Research Institute'),
(28392, 'https://ror.org/01vb92e72', 'no_lang_code', 1, 'https://ror.org/01vb92e72 Polaris Systems Optimization (United States)'),
(28393, 'https://ror.org/03ve2m955', 'en', 1, 'https://ror.org/03ve2m955 Association for the Integrated Development-Comilla'),
(28394, 'https://ror.org/04md3b668', 'no_lang_code', 1, 'https://ror.org/04md3b668 Astronautics Corporation of America'),
(28395, 'https://ror.org/00kw7bx58', 'no_lang_code', 1, 'https://ror.org/00kw7bx58 ATC New Technologies (United States)'),
(28396, 'https://ror.org/03jgkwp62', 'no_lang_code', 1, 'https://ror.org/03jgkwp62 Electrical Distribution Design (United States)'),
(28397, 'https://ror.org/000z6n336', 'no_lang_code', 1, 'https://ror.org/000z6n336 Polartec (United States)'),
(28398, 'https://ror.org/02y114t67', 'no_lang_code', 1, 'https://ror.org/02y114t67 Autogrid Systems (United States)'),
(28399, 'https://ror.org/014xar778', 'no_lang_code', 1, 'https://ror.org/014xar778 PolyPlus Battery Company (United States)'),
(28400, 'https://ror.org/02gtdm304', 'no_lang_code', 1, 'https://ror.org/02gtdm304 Avogy (United States)'),
(28401, 'https://ror.org/04tz9fd40', 'en', 1, 'https://ror.org/04tz9fd40 International Institute for Asian Studies'),
(28402, 'https://ror.org/001mpn042', 'no_lang_code', 1, 'https://ror.org/001mpn042 Baldor Electric (United States)'),
(28403, 'https://ror.org/0206mzz42', 'en', 1, 'https://ror.org/0206mzz42 International Center for Human Sciences'),
(28404, 'https://ror.org/04q61p086', 'no_lang_code', 1, 'https://ror.org/04q61p086 Emcore (United States)');
INSERT INTO `rors` VALUES
(28405, 'https://ror.org/05p5fe205', 'nl', 1, 'https://ror.org/05p5fe205 Internationale Vereniging voor Neerlandistiek'),
(28406, 'https://ror.org/05c6fpb26', 'no_lang_code', 1, 'https://ror.org/05c6fpb26 EnerDel (United States)'),
(28407, 'https://ror.org/0567f1w19', 'en', 1, 'https://ror.org/0567f1w19 Nederlands Instituut voor Onderzoek in de Katalyse Netherlands Institute for Catalysis Research'),
(28408, 'https://ror.org/02v63pq94', 'no_lang_code', 1, 'https://ror.org/02v63pq94 Power Standards Lab (United States)'),
(28409, 'https://ror.org/04hcen254', 'no_lang_code', 1, 'https://ror.org/04hcen254 Energy Research Company (United States)'),
(28410, 'https://ror.org/00k54xy93', 'no_lang_code', 1, 'https://ror.org/00k54xy93 PowerData (United States)'),
(28411, 'https://ror.org/01rq0mb28', 'no_lang_code', 1, 'https://ror.org/01rq0mb28 Energy Storage Systems (United States)'),
(28412, 'https://ror.org/00c0exh17', 'no_lang_code', 1, 'https://ror.org/00c0exh17 Enova (United States)'),
(28413, 'https://ror.org/05rxmpb48', 'nl', 1, 'https://ror.org/05rxmpb48 BC Broekhin Roermond'),
(28414, 'https://ror.org/020yran20', 'no_lang_code', 1, 'https://ror.org/020yran20 Primus Power (United States)'),
(28415, 'https://ror.org/020hsr785', 'nl', 1, 'https://ror.org/020hsr785 Nederlands Instituut voor Wetenschappelijke Informatiediensten'),
(28416, 'https://ror.org/05nb4dd58', 'no_lang_code', 1, 'https://ror.org/05nb4dd58 Envia Systems (United States)'),
(28417, 'https://ror.org/02chwny87', 'no_lang_code', 1, 'https://ror.org/02chwny87 Rockland Capital (United States)'),
(28418, 'https://ror.org/05t0mvy43', 'no_lang_code', 1, 'https://ror.org/05t0mvy43 Princeton Optronics (United States)'),
(28419, 'https://ror.org/05przbs16', 'no_lang_code', 1, 'https://ror.org/05przbs16 Beckett Energy Systems'),
(28420, 'https://ror.org/051affp12', 'no_lang_code', 1, 'https://ror.org/051affp12 K2 Energy Solutions (United States)'),
(28421, 'https://ror.org/030p6wg21', 'no_lang_code', 1, 'https://ror.org/030p6wg21 EnZinc (United States)'),
(28422, 'https://ror.org/002g6sj22', 'en', 1, 'https://ror.org/002g6sj22 Bertrand Russell College'),
(28423, 'https://ror.org/055pf8065', 'en', 1, 'https://ror.org/055pf8065 ERA-NET Plant Genomics'),
(28424, 'https://ror.org/03829z108', 'no', 1, 'https://ror.org/03829z108 Norlandia'),
(28425, 'https://ror.org/048z8ts16', 'no_lang_code', 1, 'https://ror.org/048z8ts16 Kiverdi (United States)'),
(28426, 'https://ror.org/03symbb61', 'no_lang_code', 1, 'https://ror.org/03symbb61 Quanta Technology (United States)'),
(28427, 'https://ror.org/05m93m079', 'en', 1, 'https://ror.org/05m93m079 Oakwood Academy'),
(28428, 'https://ror.org/013456141', 'no_lang_code', 1, 'https://ror.org/013456141 Spang (United States)'),
(28429, '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'),
(28430, 'https://ror.org/00f1hrs84', 'no_lang_code', 1, 'https://ror.org/00f1hrs84 Ergenics (United States)'),
(28431, 'https://ror.org/02h83nc26', 'nl', 1, 'https://ror.org/02h83nc26 Koninklijke Landmacht'),
(28432, 'https://ror.org/027hreq63', 'nl', 1, 'https://ror.org/027hreq63 Koninklijke Scholengemeenschap'),
(28433, 'https://ror.org/01pp7nc38', 'no_lang_code', 1, 'https://ror.org/01pp7nc38 Redox Power Systems (United States)'),
(28434, 'https://ror.org/03gx28593', 'en', 1, 'https://ror.org/03gx28593 Dutch Language Union Nederlandse Taalunie'),
(28435, 'https://ror.org/045wyyr37', 'no_lang_code', 1, 'https://ror.org/045wyyr37 Evans Capacitor (United States)'),
(28436, 'https://ror.org/01r0k6965', 'en', 1, 'https://ror.org/01r0k6965 Netherlands Bioinformatics Centre'),
(28437, 'https://ror.org/04p1set31', 'no_lang_code', 1, 'https://ror.org/04p1set31 Platinum Equity (United States)'),
(28438, 'https://ror.org/051wxy155', 'no_lang_code', 1, 'https://ror.org/051wxy155 SAFCell (United States)'),
(28439, 'https://ror.org/04z3wz653', 'en', 1, 'https://ror.org/04z3wz653 Netherlands Institute for Advanced Study in the Humanities and Social Sciences'),
(28440, 'https://ror.org/020dsfj21', 'no_lang_code', 1, 'https://ror.org/020dsfj21 FastCAP Systems (United States)'),
(28441, 'https://ror.org/00kj8tn74', 'no_lang_code', 1, 'https://ror.org/00kj8tn74 EcoCatalytic Technologies (United States)'),
(28442, 'https://ror.org/05f5h9j45', 'no_lang_code', 1, 'https://ror.org/05f5h9j45 Sentech Corporation (United States)'),
(28443, 'https://ror.org/02z0ywx65', 'nl', 1, 'https://ror.org/02z0ywx65 Regionale scholengemeenschap Goeree-Overflakkee'),
(28444, 'https://ror.org/00q8efx07', 'no_lang_code', 1, 'https://ror.org/00q8efx07 FloDesign (United States)'),
(28445, 'https://ror.org/02h8kp866', 'no_lang_code', 1, 'https://ror.org/02h8kp866 Polpharma Biologics (Netherlands)'),
(28446, 'https://ror.org/0241w9k67', 'ro', 1, 'https://ror.org/0241w9k67 Institutul de Cercetare-Dezvoltare pentru Protecţia Plantelor'),
(28447, 'https://ror.org/00dyskt91', 'no_lang_code', 1, 'https://ror.org/00dyskt91 Sheetak (United States)'),
(28448, 'https://ror.org/03cyq8t52', 'no_lang_code', 1, 'https://ror.org/03cyq8t52 Fluidic Energy (United States)'),
(28449, 'https://ror.org/029jacn25', 'no_lang_code', 1, 'https://ror.org/029jacn25 SiEnergy Systems (United States)'),
(28450, 'https://ror.org/00w77y420', 'no_lang_code', 1, 'https://ror.org/00w77y420 BlackPak (United States)'),
(28451, 'https://ror.org/03nk3sc73', 'nl', 1, 'https://ror.org/03nk3sc73 Bonaventuracollege'),
(28452, 'https://ror.org/03a4a4y95', 'nl', 1, 'https://ror.org/03a4a4y95 Stichting Cultureel Erfgoed Zeeland'),
(28453, 'https://ror.org/01ygzxb58', 'en', 1, 'https://ror.org/01ygzxb58 Rijksakademie van beeldende kunsten Royal Academy of Visual Arts'),
(28454, 'https://ror.org/00r7zrn27', 'nl', 1, 'https://ror.org/00r7zrn27 Museum of the Tropics Tropenmuseum'),
(28455, 'https://ror.org/03mb73f47', 'no_lang_code', 1, 'https://ror.org/03mb73f47 TVN Systems (United States)'),
(28456, 'https://ror.org/005brkn65', 'no_lang_code', 1, 'https://ror.org/005brkn65 Silicon Power Corporation (United States)'),
(28457, 'https://ror.org/049p9kt19', 'en', 1, 'https://ror.org/049p9kt19 Netherlands Institute for Art History'),
(28458, 'https://ror.org/02kx1hs47', 'en', 1, 'https://ror.org/02kx1hs47 Brera Astronomical Observatory Observatoire astronomique de brera osservatorio astronomico di Brera'),
(28459, 'https://ror.org/01079a392', 'en', 1, 'https://ror.org/01079a392 National Museum of Antiquities Rijksmuseum van Oudheden'),
(28460, 'https://ror.org/045h1za13', 'nl', 1, 'https://ror.org/045h1za13 Stichting voor Christelijke Filosofie'),
(28461, 'https://ror.org/01xt0a511', 'en', 1, 'https://ror.org/01xt0a511 National Museum of Ethnology Rijksmuseum Volkenkunde'),
(28462, 'https://ror.org/05skev209', 'no_lang_code', 1, 'https://ror.org/05skev209 SixPoint Materials (United States)'),
(28463, 'https://ror.org/02dv36z82', 'no_lang_code', 1, 'https://ror.org/02dv36z82 NatriSoft (Netherlands)'),
(28464, 'https://ror.org/037wdp291', 'no_lang_code', 1, 'https://ror.org/037wdp291 Stone Mountain Technologies (United States)'),
(28465, 'https://ror.org/04ryr8437', 'en', 1, 'https://ror.org/04ryr8437 Udens College'),
(28466, 'https://ror.org/04tf4mr55', 'nl', 1, 'https://ror.org/04tf4mr55 SNS Reaal'),
(28467, 'https://ror.org/00ypx8t52', 'en', 1, 'https://ror.org/00ypx8t52 Sociaal Historisch Centrum voor Limburg Social Historic Centre for Limburg'),
(28468, 'https://ror.org/002fzqp75', 'en', 1, 'https://ror.org/002fzqp75 University for Peace'),
(28469, 'https://ror.org/027xe4b29', 'no_lang_code', 1, 'https://ror.org/027xe4b29 Renco Group (United States)'),
(28470, 'https://ror.org/00rf4tg97', 'no_lang_code', 1, 'https://ror.org/00rf4tg97 Suniva (United States)'),
(28471, 'https://ror.org/020dp5a36', 'en', 1, 'https://ror.org/020dp5a36 C.T. de Wit Graduate School for Production Ecology and Resource Conservation'),
(28472, 'https://ror.org/05a2v3w63', 'no_lang_code', 1, 'https://ror.org/05a2v3w63 Under Armour (United States)'),
(28473, 'https://ror.org/01v4jww63', 'en', 1, 'https://ror.org/01v4jww63 Value Addition Institute'),
(28474, 'https://ror.org/0178rhq59', 'no_lang_code', 1, 'https://ror.org/0178rhq59 Varentec (United States)'),
(28475, 'https://ror.org/000896j91', 'no_lang_code', 1, 'https://ror.org/000896j91 Tai Yang Research Company (United States)'),
(28476, 'https://ror.org/04jt8tp60', 'no_lang_code', 1, 'https://ror.org/04jt8tp60 Southeast Nonwovens (United States)'),
(28477, 'https://ror.org/033958n71', 'en', 1, 'https://ror.org/033958n71 Nederlandse School voor Openbaar Bestuur Netherlands School of Public Administration'),
(28478, 'https://ror.org/03q0f4n26', 'no_lang_code', 1, 'https://ror.org/03q0f4n26 Edison International (United States)'),
(28479, 'https://ror.org/01pcq0j68', 'no_lang_code', 1, 'https://ror.org/01pcq0j68 Cargill (United States)'),
(28480, 'https://ror.org/016e1rp63', 'no_lang_code', 1, 'https://ror.org/016e1rp63 Tango Systems (United States)'),
(28481, 'https://ror.org/050vtbc65', 'no_lang_code', 1, 'https://ror.org/050vtbc65 Vestigia'),
(28482, 'https://ror.org/03sry2h30', 'en', 1, 'https://ror.org/03sry2h30 Max Planck Institute for Gravitational Physics Max-Planck-Institut für Gravitationsphysik'),
(28483, 'https://ror.org/00teqnm16', 'no_lang_code', 1, 'https://ror.org/00teqnm16 SPX Transformer Solutions (United States)'),
(28484, 'https://ror.org/040657n65', 'nl', 1, 'https://ror.org/040657n65 Ons Middelbaar Onderwijs'),
(28485, 'https://ror.org/04wrx4c64', 'no_lang_code', 1, 'https://ror.org/04wrx4c64 Wildcat Discovery Technologies (United States)'),
(28486, 'https://ror.org/02be22443', 'de', 1, 'https://ror.org/02be22443 Ferdinand-Braun-Institut Leibniz-Institut für Höchstfrequenztechnik'),
(28487, 'https://ror.org/0363anr51', 'en', 1, 'https://ror.org/0363anr51 Hague Institute for Global Justice'),
(28488, 'https://ror.org/0481e1q24', 'en', 1, 'https://ror.org/0481e1q24 Hogeschool Rotterdam Rotterdam University of Applied Sciences'),
(28489, 'https://ror.org/03nawc604', 'en', 1, 'https://ror.org/03nawc604 TNO Management Consultants'),
(28490, 'https://ror.org/03n0yn137', 'no_lang_code', 1, 'https://ror.org/03n0yn137 X-Fab (United States)'),
(28491, 'https://ror.org/039shy520', 'en', 1, 'https://ror.org/039shy520 Institut für Hochenergiephysik Institute of High Energy Physics'),
(28492, 'https://ror.org/03x8rhq63', 'en', 1, 'https://ror.org/03x8rhq63 Institute of Modern Physics 中国科学院近代物理研究所'),
(28493, 'https://ror.org/023pdrd93', 'no_lang_code', 1, 'https://ror.org/023pdrd93 ZOA (Uganda)'),
(28494, 'https://ror.org/01eznm763', 'no_lang_code', 1, 'https://ror.org/01eznm763 TreadStone Technologies (United States)'),
(28495, 'https://ror.org/01r376258', 'en', 1, 'https://ror.org/01r376258 Netherlands Architecture Institute'),
(28496, 'https://ror.org/043qkx395', 'en', 1, 'https://ror.org/043qkx395 Centre for Ultrahigh Bandwidth Devices for Optical Systems'),
(28497, 'https://ror.org/00e4bwe12', 'en', 1, 'https://ror.org/00e4bwe12 Max Planck Institute for Extraterrestrial Physics Max-Planck-Institut für Extraterrestrische Physik'),
(28498, 'https://ror.org/02rzw6h69', 'en', 1, 'https://ror.org/02rzw6h69 Helmholtz Institute Jena Helmholtz-Institut Jena'),
(28499, 'https://ror.org/05esem239', 'en', 1, 'https://ror.org/05esem239 Max Planck Institute for Meteorology Max-Planck-Institut für Meteorologie'),
(28500, 'https://ror.org/00qyat195', 'en', 1, 'https://ror.org/00qyat195 National Centre for Nuclear Energy, Science and Technology'),
(28501, 'https://ror.org/0095xwr23', 'en', 1, 'https://ror.org/0095xwr23 Max Planck Institute of Microstructure Physics Max-Planck-Institut für Mikrostrukturphysik'),
(28502, 'https://ror.org/02qs0dv08', 'en', 1, 'https://ror.org/02qs0dv08 Hungarian Astronomical Association'),
(28503, 'https://ror.org/02w6gr951', 'en', 1, 'https://ror.org/02w6gr951 Shanghai Institute of Applied Physics äø­å›½ē§‘å­¦é™¢äøŠęµ·åŗ”ē”Øē‰©ē†ē ”ē©¶ę‰€'),
(28504, 'https://ror.org/02jktn113', 'en', 1, 'https://ror.org/02jktn113 International Center for Relativistic Astrophysics'),
(28505, 'https://ror.org/00ypx0z29', 'en', 1, 'https://ror.org/00ypx0z29 Institute of Physics and Technology'),
(28506, 'https://ror.org/0046r4y62', 'no_lang_code', 1, 'https://ror.org/0046r4y62 Complete Genomics (United States)'),
(28507, 'https://ror.org/034gcgw60', 'en', 1, 'https://ror.org/034gcgw60 Institute of Space and Astronautical Science 宇宙科学研究所'),
(28508, 'https://ror.org/02ty5cy83', 'no_lang_code', 1, 'https://ror.org/02ty5cy83 Infinera (United States)'),
(28509, 'https://ror.org/00he98j14', 'en', 1, 'https://ror.org/00he98j14 Institute for Laser Technology å…¬ē›Šč²”å›£ę³•äŗŗ ćƒ¬ćƒ¼ć‚¶ćƒ¼ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(28510, 'https://ror.org/03sc5te70', 'en', 1, 'https://ror.org/03sc5te70 Sunvapor'),
(28511, 'https://ror.org/01snw6n75', 'en', 1, 'https://ror.org/01snw6n75 International Genomics Consortium'),
(28512, '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'),
(28513, 'https://ror.org/003aea848', 'en', 1, 'https://ror.org/003aea848 Columbia Region Healthcare Engineers Association'),
(28514, 'https://ror.org/058pyyv44', 'en', 1, 'https://ror.org/058pyyv44 National Astronomical Observatories äø­å›½ē§‘å­¦é™¢å›½å®¶å¤©ę–‡å°'),
(28515, 'https://ror.org/02av38n71', 'de', 1, 'https://ror.org/02av38n71 HELIOS St. Elisabeth Klinik Oberhausen'),
(28516, 'https://ror.org/050qmck25', 'no_lang_code', 1, 'https://ror.org/050qmck25 TE SubCom (United States)'),
(28517, 'https://ror.org/0165d9303', 'en', 1, 'https://ror.org/0165d9303 Harish-Chandra Research Institute ą¤¹ą¤°ą„€ą¤¶ą¤šą¤‚ą¤¦ą„ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(28518, 'https://ror.org/03c0wvm84', 'no_lang_code', 1, 'https://ror.org/03c0wvm84 OFS (United States)'),
(28519, 'https://ror.org/03napcw37', 'en', 1, 'https://ror.org/03napcw37 Institute of Semiconductor Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики ŠæŠ¾Š»ŃƒŠæŃ€Š¾Š²Š¾Š“Š½ŠøŠŗŠ¾Š² им. А.Š’. Ржанова Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(28520, 'https://ror.org/01fqmah26', 'en', 1, 'https://ror.org/01fqmah26 Photonics Electronics Technology Research Association ćƒ•ć‚©ćƒˆćƒ‹ć‚Æć‚¹ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(28521, 'https://ror.org/04b12nt82', 'no_lang_code', 1, 'https://ror.org/04b12nt82 PNSensor (Germany)'),
(28522, 'https://ror.org/04b9sdb26', 'no_lang_code', 1, 'https://ror.org/04b9sdb26 Tri Alpha Energy (United States)'),
(28523, 'https://ror.org/003n8re58', 'en', 1, 'https://ror.org/003n8re58 Shanghai Astronomical Observatory äø­å›½ē§‘å­¦é™¢äøŠęµ·å¤©ę–‡å°'),
(28524, 'https://ror.org/055pgv213', 'de', 1, 'https://ror.org/055pgv213 Halbleiterlabor der Max-Planck-Gesellschaft Halbleiterlabor of the Max-Planck-Society'),
(28525, 'https://ror.org/04rpteb42', 'no_lang_code', 1, 'https://ror.org/04rpteb42 Pranalytica (United States)'),
(28526, 'https://ror.org/052kdcb58', 'en', 1, 'https://ror.org/052kdcb58 Institute for Nuclear Research Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(28527, 'https://ror.org/04v3xs363', 'en', 1, 'https://ror.org/04v3xs363 Alberta Chicken Producers (Canada)'),
(28528, 'https://ror.org/00wh57194', 'en', 1, 'https://ror.org/00wh57194 Alberta Energy'),
(28529, 'https://ror.org/03j4sms74', 'en', 1, 'https://ror.org/03j4sms74 Alberta Farm Animal Care Association'),
(28530, 'https://ror.org/05b9w0m88', 'pt', 1, 'https://ror.org/05b9w0m88 Laboratório Interinstitucional de e-Astronomia'),
(28531, 'https://ror.org/023rnh198', 'en', 1, 'https://ror.org/023rnh198 Alberta Livestock and Meat Agency'),
(28532, 'https://ror.org/02jj42f67', 'en', 1, 'https://ror.org/02jj42f67 Alberta Oil Sands Technology and Research Authority'),
(28533, 'https://ror.org/05a45xc26', 'no_lang_code', 1, 'https://ror.org/05a45xc26 Alberta Pork (Canada)'),
(28534, 'https://ror.org/03kyjez48', 'no_lang_code', 1, 'https://ror.org/03kyjez48 Adelan (United Kingdom)'),
(28535, 'https://ror.org/011av7236', 'no_lang_code', 1, 'https://ror.org/011av7236 Advanced BioRefinery (Canada)'),
(28536, 'https://ror.org/04749me90', 'no_lang_code', 1, 'https://ror.org/04749me90 AmeriPrint (United States)'),
(28537, 'https://ror.org/024tm3y55', 'no_lang_code', 1, 'https://ror.org/024tm3y55 Glonatech (Greece)'),
(28538, 'https://ror.org/05j8j0w49', 'no_lang_code', 1, 'https://ror.org/05j8j0w49 Advanced Glazings (Canada)'),
(28539, 'https://ror.org/01tgakh12', 'no_lang_code', 1, 'https://ror.org/01tgakh12 Alcoa (Canada)'),
(28540, 'https://ror.org/00mnqcr93', 'no_lang_code', 1, 'https://ror.org/00mnqcr93 Alcohol Countermeasure Systems (Canada)'),
(28541, 'https://ror.org/03fffdr10', 'no_lang_code', 1, 'https://ror.org/03fffdr10 3D Technology Laboratories (United States)'),
(28542, 'https://ror.org/02ae4zw82', 'en', 1, 'https://ror.org/02ae4zw82 American Precision Museum'),
(28543, 'https://ror.org/05j3a2m34', 'en', 1, 'https://ror.org/05j3a2m34 Analytical Center MNiOP'),
(28544, 'https://ror.org/056xwsc46', 'no_lang_code', 1, 'https://ror.org/056xwsc46 American Water (Canada)'),
(28545, 'https://ror.org/03g8hqd12', 'no_lang_code', 1, 'https://ror.org/03g8hqd12 Amica Science Eeig (United Kingdom)'),
(28546, 'https://ror.org/01e7j1q59', 'no_lang_code', 1, 'https://ror.org/01e7j1q59 Advanced Practical Diagnostics (Belgium)'),
(28547, 'https://ror.org/01gjmdw96', 'no_lang_code', 1, 'https://ror.org/01gjmdw96 Alfa Products and Technologies (Belgium)'),
(28548, 'https://ror.org/0043qk943', 'en', 1, 'https://ror.org/0043qk943 A-R Editions'),
(28549, 'https://ror.org/03vdweg30', 'no_lang_code', 1, 'https://ror.org/03vdweg30 Essar Steel Algoma (Canada)'),
(28550, 'https://ror.org/02ske4z75', 'no_lang_code', 1, 'https://ror.org/02ske4z75 Aquatic Systems (United States)'),
(28551, 'https://ror.org/035684d86', 'en', 1, 'https://ror.org/035684d86 Voeikov Main Geophysical Observatory Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š“Š»Š°Š²Š½Š°Ń Š³ŠµŠ¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. А.И.Воейкова'),
(28552, 'https://ror.org/00emrap86', 'no_lang_code', 1, 'https://ror.org/00emrap86 Entrust (Canada)'),
(28553, 'https://ror.org/05xsw6b79', 'no_lang_code', 1, 'https://ror.org/05xsw6b79 Aralia Systems (United Kingdom)'),
(28554, 'https://ror.org/04a7ab069', 'no_lang_code', 1, 'https://ror.org/04a7ab069 AEF Global (Canada)'),
(28555, 'https://ror.org/02s06cq86', 'no_lang_code', 1, 'https://ror.org/02s06cq86 Arbec Forest Products (Canada)'),
(28556, 'https://ror.org/04acx6166', 'no_lang_code', 1, 'https://ror.org/04acx6166 Lassonde Industries (Canada)'),
(28557, 'https://ror.org/00k5wwd38', 'no_lang_code', 1, 'https://ror.org/00k5wwd38 Aeroconseil (France)'),
(28558, 'https://ror.org/04nkjmp39', 'no_lang_code', 1, 'https://ror.org/04nkjmp39 AeroDNA (United Kingdom)'),
(28559, 'https://ror.org/0038bns95', 'no_lang_code', 1, 'https://ror.org/0038bns95 Amsen Technologies (United States)'),
(28560, 'https://ror.org/02by97j27', 'no_lang_code', 1, 'https://ror.org/02by97j27 Arca Progetti (Italy)'),
(28561, 'https://ror.org/052h4sm36', 'no_lang_code', 1, 'https://ror.org/052h4sm36 Abel Manufacturing Company (United States)'),
(28562, 'https://ror.org/00z58wj40', 'no_lang_code', 1, 'https://ror.org/00z58wj40 Allstate (United States)'),
(28563, 'https://ror.org/04ttpa220', 'no_lang_code', 1, 'https://ror.org/04ttpa220 Abreos Biosciences (United States)'),
(28564, 'https://ror.org/00hprwh76', 'no_lang_code', 1, 'https://ror.org/00hprwh76 Absiskey (France)'),
(28565, 'https://ror.org/01044pa52', 'no_lang_code', 1, 'https://ror.org/01044pa52 Lonza (Canada)'),
(28566, 'https://ror.org/05021m385', 'no_lang_code', 1, 'https://ror.org/05021m385 Arclay (Canada) Arclay Technologies Naturelles'),
(28567, 'https://ror.org/00rmxs729', 'no_lang_code', 1, 'https://ror.org/00rmxs729 Acadian Peat Moss (Canada)'),
(28568, 'https://ror.org/05cs9vc86', 'no_lang_code', 1, 'https://ror.org/05cs9vc86 Tesoro (United States)'),
(28569, 'https://ror.org/04wd0my56', 'no_lang_code', 1, 'https://ror.org/04wd0my56 Ardoran (Estonia)'),
(28570, 'https://ror.org/03tbhyj83', 'en', 1, 'https://ror.org/03tbhyj83 Area ''A'' Crab Association'),
(28571, 'https://ror.org/05c4phg25', 'no_lang_code', 1, 'https://ror.org/05c4phg25 AS Composite (Canada)'),
(28572, 'https://ror.org/00zsvs615', 'en', 1, 'https://ror.org/00zsvs615 AccessMatters'),
(28573, 'https://ror.org/01jtfaj68', 'no_lang_code', 1, 'https://ror.org/01jtfaj68 Andec Manufacturing (Canada)'),
(28574, 'https://ror.org/01wnead86', 'no_lang_code', 1, 'https://ror.org/01wnead86 Arius3D (Canada)'),
(28575, 'https://ror.org/02svyk642', 'no_lang_code', 1, 'https://ror.org/02svyk642 Arkema (Canada)'),
(28576, 'https://ror.org/059xraf34', 'no_lang_code', 1, 'https://ror.org/059xraf34 Alstom (Canada)'),
(28577, 'https://ror.org/010t10c49', 'no_lang_code', 1, 'https://ror.org/010t10c49 Alta Precision (Canada)'),
(28578, 'https://ror.org/01d4xtf25', 'no_lang_code', 1, 'https://ror.org/01d4xtf25 Agribrands Purina (Canada)'),
(28579, 'https://ror.org/03jp5g380', 'en', 1, 'https://ror.org/03jp5g380 Agence de promotion Ʃconomique du Canada atlantique Atlantic Canada Opportunities Agency'),
(28580, 'https://ror.org/04ea6k136', 'no_lang_code', 1, 'https://ror.org/04ea6k136 Assocalzaturifici (Italy)'),
(28581, 'https://ror.org/00bhae667', 'no_lang_code', 1, 'https://ror.org/00bhae667 Aluminerie Alouette (Canada)'),
(28582, 'https://ror.org/04hx9nd03', 'no_lang_code', 1, 'https://ror.org/04hx9nd03 Atlantic Hydrogen (Canada)'),
(28583, 'https://ror.org/05vfxqe03', 'no_lang_code', 1, 'https://ror.org/05vfxqe03 Devon Energy (Canada)'),
(28584, 'https://ror.org/00cpm4162', 'no_lang_code', 1, 'https://ror.org/00cpm4162 Ascent Technology (United States)'),
(28585, 'https://ror.org/023q7ek24', 'no_lang_code', 1, 'https://ror.org/023q7ek24 Stornoway Diamond (Canada)'),
(28586, 'https://ror.org/0593qvg67', 'no_lang_code', 1, 'https://ror.org/0593qvg67 Anger Machining (Austria)'),
(28587, 'https://ror.org/05dpb2x88', 'no_lang_code', 1, 'https://ror.org/05dpb2x88 Tolmar (United States)'),
(28588, 'https://ror.org/04rc5xe97', 'no_lang_code', 1, 'https://ror.org/04rc5xe97 Agpyme (Spain)'),
(28589, 'https://ror.org/04eanvj85', 'no_lang_code', 1, 'https://ror.org/04eanvj85 Audio Analytic (United Kingdom)'),
(28590, 'https://ror.org/000p6bx44', 'no_lang_code', 1, 'https://ror.org/000p6bx44 Anglo American (Canada)'),
(28591, 'https://ror.org/04nmx3106', 'no_lang_code', 1, 'https://ror.org/04nmx3106 AngloGold Ashanti (South Africa)'),
(28592, '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'),
(28593, 'https://ror.org/02q84p957', 'no_lang_code', 1, 'https://ror.org/02q84p957 Parmalat (Canada)'),
(28594, 'https://ror.org/0206q6m49', 'no_lang_code', 1, 'https://ror.org/0206q6m49 Angstrom Engineering (Canada)'),
(28595, 'https://ror.org/04tebqy16', 'no_lang_code', 1, 'https://ror.org/04tebqy16 Air Fuel Synthesis (United Kingdom)'),
(28596, 'https://ror.org/02p47zr16', 'en', 1, 'https://ror.org/02p47zr16 BC Greenhouse Growers Association'),
(28597, 'https://ror.org/014yfah54', 'no_lang_code', 1, 'https://ror.org/014yfah54 Aurel Systems (Canada)'),
(28598, 'https://ror.org/01x6ma944', 'no_lang_code', 1, 'https://ror.org/01x6ma944 BC Hydro (Canada)'),
(28599, 'https://ror.org/01zc1hx59', 'en', 1, 'https://ror.org/01zc1hx59 Animal Nutrition Association of Canada'),
(28600, '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'),
(28601, 'https://ror.org/05n22dr57', 'en', 1, 'https://ror.org/05n22dr57 BC Innovation Council'),
(28602, 'https://ror.org/031a6e068', 'it', 1, 'https://ror.org/031a6e068 Associazione Nazionale per l’Isolamento Termico e Acustico'),
(28603, 'https://ror.org/03v6fak96', 'no_lang_code', 1, 'https://ror.org/03v6fak96 AIR Worldwide (United Kingdom)'),
(28604, 'https://ror.org/04g507h60', 'no_lang_code', 1, 'https://ror.org/04g507h60 AirScience Technologies (Canada)'),
(28605, 'https://ror.org/022w59k49', 'en', 1, 'https://ror.org/022w59k49 Alaska State Museum'),
(28606, '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'),
(28607, 'https://ror.org/05d3gq009', 'no_lang_code', 1, 'https://ror.org/05d3gq009 Alberco Construction (Canada)'),
(28608, 'https://ror.org/000w5kn77', 'en', 1, 'https://ror.org/000w5kn77 Ministry of Environment'),
(28609, 'https://ror.org/02sr74r45', 'en', 1, 'https://ror.org/02sr74r45 Biopterre'),
(28610, 'https://ror.org/04c66ah90', 'no_lang_code', 1, 'https://ror.org/04c66ah90 Antex Western (Canada)'),
(28611, 'https://ror.org/03kqbjd86', 'en', 1, 'https://ror.org/03kqbjd86 Plastics Recyclers Europe'),
(28612, 'https://ror.org/05txqkd02', 'en', 1, 'https://ror.org/05txqkd02 Association for Asian Studies'),
(28613, 'https://ror.org/01rkdw075', 'no_lang_code', 1, 'https://ror.org/01rkdw075 AnyBody Technology (Denmark)'),
(28614, 'https://ror.org/01b3dk794', 'no_lang_code', 1, 'https://ror.org/01b3dk794 Autodesk (Canada)'),
(28615, 'https://ror.org/02tyyce58', 'no_lang_code', 1, 'https://ror.org/02tyyce58 Bcn Cambra Logica De Projectes'),
(28616, 'https://ror.org/00sdxex41', 'en', 1, 'https://ror.org/00sdxex41 Autograph ABP'),
(28617, 'https://ror.org/00p6c4n60', 'no_lang_code', 1, 'https://ror.org/00p6c4n60 Autoline Insurance (United Kingdom)'),
(28618, 'https://ror.org/044s7x198', 'en', 1, 'https://ror.org/044s7x198 Association of Professional Engineers and Geoscientists of Manitoba'),
(28619, 'https://ror.org/05kmh8z64', 'en', 1, 'https://ror.org/05kmh8z64 Apicha Community Health Center'),
(28620, 'https://ror.org/03f9gsg45', 'en', 1, 'https://ror.org/03f9gsg45 Beef Cattle Research Council'),
(28621, 'https://ror.org/01b556x61', 'no_lang_code', 1, 'https://ror.org/01b556x61 Apollo Microwaves (Canada)'),
(28622, 'https://ror.org/05vj6nt70', 'en', 1, 'https://ror.org/05vj6nt70 Appalshop'),
(28623, 'https://ror.org/004whvh21', 'no_lang_code', 1, 'https://ror.org/004whvh21 Applied Bio-nomics (Canada)'),
(28624, 'https://ror.org/01845n260', 'no_lang_code', 1, 'https://ror.org/01845n260 BIOX (Canada)'),
(28625, 'https://ror.org/02gsyjh62', 'fr', 1, 'https://ror.org/02gsyjh62 UP-Tex'),
(28626, 'https://ror.org/05sydm958', 'no_lang_code', 1, 'https://ror.org/05sydm958 ATS Automation Tooling Systems (Canada)'),
(28627, 'https://ror.org/01tj74z64', 'it', 1, 'https://ror.org/01tj74z64 Associazione Italiana per l''Agricoltura Biologica'),
(28628, 'https://ror.org/00cjeg736', 'en', 1, 'https://ror.org/00cjeg736 Birmingham and Solihull Mental Health NHS Foundation Trust'),
(28629, 'https://ror.org/00hjjbv09', 'no_lang_code', 1, 'https://ror.org/00hjjbv09 Applied Nanotools (Canada)'),
(28630, 'https://ror.org/01t6xjs55', 'no_lang_code', 1, 'https://ror.org/01t6xjs55 Exmar (Belgium)'),
(28631, 'https://ror.org/01y5xsj54', 'en', 1, 'https://ror.org/01y5xsj54 Black Hills Center for American Indian Health'),
(28632, 'https://ror.org/058pbt095', 'no_lang_code', 1, 'https://ror.org/058pbt095 Avalon Rare Metals (Canada)'),
(28633, 'https://ror.org/00mn56c32', 'en', 1, 'https://ror.org/00mn56c32 British Red Cross'),
(28634, 'https://ror.org/05wdmgk52', 'no_lang_code', 1, 'https://ror.org/05wdmgk52 Avatar Medical (United States)'),
(28635, 'https://ror.org/058agte50', 'no_lang_code', 1, 'https://ror.org/058agte50 Blücher (Germany)'),
(28636, 'https://ror.org/05rwjrt81', 'no_lang_code', 1, 'https://ror.org/05rwjrt81 Berger (Canada)'),
(28637, 'https://ror.org/02q6ekp33', 'no_lang_code', 1, 'https://ror.org/02q6ekp33 Blue Bear (United Kingdom)'),
(28638, 'https://ror.org/03055qx94', 'en', 1, 'https://ror.org/03055qx94 Canada Economic Development for Quebec Regions'),
(28639, 'https://ror.org/01wc7km43', 'no_lang_code', 1, 'https://ror.org/01wc7km43 Canada Malting (Canada)'),
(28640, 'https://ror.org/01ztrqp26', 'no_lang_code', 1, 'https://ror.org/01ztrqp26 Blue Pencil Group (United States)'),
(28641, 'https://ror.org/01ebst690', 'no_lang_code', 1, 'https://ror.org/01ebst690 Axela (Canada)'),
(28642, 'https://ror.org/04zt3wx35', 'en', 1, 'https://ror.org/04zt3wx35 Canada Mortgage and Housing Corporation Societe canadienne d''hypotheque et du logement'),
(28643, 'https://ror.org/01znwdd95', 'no_lang_code', 1, 'https://ror.org/01znwdd95 AxioMx (United States)'),
(28644, 'https://ror.org/01vn8wp97', 'en', 1, 'https://ror.org/01vn8wp97 Brown County Historical Society'),
(28645, 'https://ror.org/02eqsb844', 'en', 1, 'https://ror.org/02eqsb844 Canada West Ski Areas Association'),
(28646, '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'),
(28647, 'https://ror.org/01y6tnr87', 'no_lang_code', 1, 'https://ror.org/01y6tnr87 Blue-O Technology (Canada)'),
(28648, 'https://ror.org/0237x2s28', 'no_lang_code', 1, 'https://ror.org/0237x2s28 Axis Photonique (Canada)'),
(28649, 'https://ror.org/04f6m0p71', 'no_lang_code', 1, 'https://ror.org/04f6m0p71 AOSOL (Portugal)'),
(28650, 'https://ror.org/03bmxpp39', 'no_lang_code', 1, 'https://ror.org/03bmxpp39 Boeing (Canada)'),
(28651, 'https://ror.org/04e10gs59', 'no_lang_code', 1, 'https://ror.org/04e10gs59 Boisaco (Canada)'),
(28652, 'https://ror.org/04p61m296', 'no_lang_code', 1, 'https://ror.org/04p61m296 Minacs (Canada)'),
(28653, 'https://ror.org/05130dm31', 'en', 1, 'https://ror.org/05130dm31 Bonnie Walker and Associates'),
(28654, 'https://ror.org/03wy95943', 'no_lang_code', 1, 'https://ror.org/03wy95943 B-Con Engineering (Canada)'),
(28655, 'https://ror.org/045hsta97', 'no_lang_code', 1, 'https://ror.org/045hsta97 Progressive Waste Solutions (Canada)'),
(28656, 'https://ror.org/05p4j2138', 'no_lang_code', 1, 'https://ror.org/05p4j2138 Bunge (Canada)'),
(28657, 'https://ror.org/01kc9n234', 'no_lang_code', 1, 'https://ror.org/01kc9n234 BGC Engineering (Canada)'),
(28658, 'https://ror.org/04ztfpt34', 'no_lang_code', 1, 'https://ror.org/04ztfpt34 Boreal Laser (Canada)'),
(28659, 'https://ror.org/05rt6q248', 'no_lang_code', 1, 'https://ror.org/05rt6q248 Toyota Motor Corporation (Canada)'),
(28660, 'https://ror.org/03hxk2a16', 'no_lang_code', 1, 'https://ror.org/03hxk2a16 BHP (Canada)'),
(28661, 'https://ror.org/057e7ah68', 'no_lang_code', 1, 'https://ror.org/057e7ah68 Badrilla (United Kingdom)'),
(28662, 'https://ror.org/00ny54t68', 'no_lang_code', 1, 'https://ror.org/00ny54t68 BI Pure Water (Canada)'),
(28663, 'https://ror.org/0532ef257', 'no_lang_code', 1, 'https://ror.org/0532ef257 Cargill (Canada)'),
(28664, 'https://ror.org/00b60bj84', 'no_lang_code', 1, 'https://ror.org/00b60bj84 Borregaard (Norway)'),
(28665, 'https://ror.org/05b8hvw73', 'no_lang_code', 1, 'https://ror.org/05b8hvw73 Borregaard (United Kingdom)'),
(28666, 'https://ror.org/024p99359', 'no_lang_code', 1, 'https://ror.org/024p99359 BainUltra (Canada)'),
(28667, 'https://ror.org/03rb2qm14', 'en', 1, 'https://ror.org/03rb2qm14 Canadian Avalanche Association'),
(28668, 'https://ror.org/04ne7ew72', 'no_lang_code', 1, 'https://ror.org/04ne7ew72 Canadian Bio-Systems (Canada)'),
(28669, 'https://ror.org/05vpf1q78', 'no_lang_code', 1, 'https://ror.org/05vpf1q78 Baker Hughes (Canada)'),
(28670, 'https://ror.org/03krz3n62', 'en', 1, 'https://ror.org/03krz3n62 Canadian Cattlemen''s Association'),
(28671, 'https://ror.org/05pcb3x66', 'no_lang_code', 1, 'https://ror.org/05pcb3x66 C-Therm Technologies (Canada)'),
(28672, 'https://ror.org/03rcg4460', 'en', 1, 'https://ror.org/03rcg4460 American Guild of Organists'),
(28673, 'https://ror.org/02h1stz09', 'en', 1, 'https://ror.org/02h1stz09 Boston Symphony Orchestra'),
(28674, 'https://ror.org/00wcmt229', 'no_lang_code', 1, 'https://ror.org/00wcmt229 C. van ''t Riet Dairy Technology (Netherlands)'),
(28675, 'https://ror.org/017wp8650', 'no_lang_code', 1, 'https://ror.org/017wp8650 BioTillion (United States)'),
(28676, 'https://ror.org/03h71cc02', 'fr', 1, 'https://ror.org/03h71cc02 Bouthillette Parizeau'),
(28677, 'https://ror.org/051177492', 'no_lang_code', 1, 'https://ror.org/051177492 BP (Canada)'),
(28678, 'https://ror.org/03rwxcx12', 'en', 1, 'https://ror.org/03rwxcx12 Bath and North East Somerset Council'),
(28679, 'https://ror.org/03pt6pg29', 'en', 1, 'https://ror.org/03pt6pg29 Canadian Chlorine Chemistry Council'),
(28680, 'https://ror.org/000x43d10', 'no_lang_code', 1, 'https://ror.org/000x43d10 Cadcamation (Switzerland)'),
(28681, 'https://ror.org/054h84g22', 'en', 1, 'https://ror.org/054h84g22 Canadian Council of Professional Fish Harvesters'),
(28682, 'https://ror.org/03cahhx41', 'no_lang_code', 1, 'https://ror.org/03cahhx41 CadScan (United Kingdom)'),
(28683, 'https://ror.org/05vjvk624', 'en', 1, 'https://ror.org/05vjvk624 Architects Council of Europe Conseil des Architectes d''Europe'),
(28684, 'https://ror.org/02facr303', 'en', 1, 'https://ror.org/02facr303 Canadian Federation of Humane Societies'),
(28685, 'https://ror.org/01w3dn975', 'no_lang_code', 1, 'https://ror.org/01w3dn975 Canadian General-Tower (Canada)'),
(28686, 'https://ror.org/03p3fax91', 'no_lang_code', 1, 'https://ror.org/03p3fax91 Caerus Molecular Diagnostics (United States)'),
(28687, 'https://ror.org/05396f476', 'no_lang_code', 1, 'https://ror.org/05396f476 BioDetection Systems (Netherlands)'),
(28688, 'https://ror.org/04x5rgv88', 'en', 1, 'https://ror.org/04x5rgv88 Canadian Honey Council'),
(28689, 'https://ror.org/05h887517', 'en', 1, 'https://ror.org/05h887517 Canadian Horticultural Council'),
(28690, 'https://ror.org/010zr5r54', 'en', 1, 'https://ror.org/010zr5r54 Calgary Construction Association'),
(28691, 'https://ror.org/03jbxjn08', 'en', 1, 'https://ror.org/03jbxjn08 BiodƓme de MontrƩal Montreal Biodome'),
(28692, 'https://ror.org/015z1mm31', 'no_lang_code', 1, 'https://ror.org/015z1mm31 Kuraray (Canada)'),
(28693, 'https://ror.org/02q8pz475', 'en', 1, 'https://ror.org/02q8pz475 Photons Canada'),
(28694, 'https://ror.org/04zkm8r02', 'en', 1, 'https://ror.org/04zkm8r02 Brewing and Malting Barley Research Institute'),
(28695, 'https://ror.org/02hc2ra25', 'en', 1, 'https://ror.org/02hc2ra25 Canadian International Grains Institute'),
(28696, 'https://ror.org/051s8tq24', 'en', 1, 'https://ror.org/051s8tq24 Canadian Mining Industry Research Organization'),
(28697, 'https://ror.org/01frgsc79', 'en', 1, 'https://ror.org/01frgsc79 Association canadienne des carburants Canadian Fuels Association'),
(28698, 'https://ror.org/00a83t181', 'no_lang_code', 1, 'https://ror.org/00a83t181 BioForest Technologies (Canada)'),
(28699, 'https://ror.org/02878nd97', 'no_lang_code', 1, 'https://ror.org/02878nd97 Canadian Pacific Railway (Canada)'),
(28700, 'https://ror.org/00hm4yk03', 'en', 1, 'https://ror.org/00hm4yk03 92nd Street Young Men''s and Young Women''s Hebrew Association'),
(28701, 'https://ror.org/0302x4x02', 'no_lang_code', 1, 'https://ror.org/0302x4x02 Biogas Barth (Germany)'),
(28702, 'https://ror.org/0286gjk84', 'en', 1, 'https://ror.org/0286gjk84 Canadian Seed Growers Association'),
(28703, 'https://ror.org/0365vfb57', 'en', 1, 'https://ror.org/0365vfb57 Canadian Sheet Steel Building Institute'),
(28704, 'https://ror.org/05vab6055', 'no_lang_code', 1, 'https://ror.org/05vab6055 Air Liquide (Canada)'),
(28705, 'https://ror.org/013x6aj18', 'no_lang_code', 1, 'https://ror.org/013x6aj18 Alpine Helicopters (Canada)'),
(28706, 'https://ror.org/00nyhq937', 'en', 1, 'https://ror.org/00nyhq937 Association Canadienne des Producteurs d''Acier Canadian Steel Producers Association'),
(28707, 'https://ror.org/020r9kq92', 'no_lang_code', 1, 'https://ror.org/020r9kq92 CelluForce (Canada)'),
(28708, 'https://ror.org/02k55qr52', 'no_lang_code', 1, 'https://ror.org/02k55qr52 Cambridge Cognition (United Kingdom)'),
(28709, 'https://ror.org/050yj7e58', 'en', 1, 'https://ror.org/050yj7e58 Cement Association of Canada'),
(28710, 'https://ror.org/013x6g466', 'en', 1, 'https://ror.org/013x6g466 Canadian Turfgrass Research Foundation'),
(28711, 'https://ror.org/04mjpn004', 'no_lang_code', 1, 'https://ror.org/04mjpn004 Athena Environmental Sciences (United States)'),
(28712, 'https://ror.org/00j81st88', 'no_lang_code', 1, 'https://ror.org/00j81st88 Cenovus Energy (Canada)'),
(28713, 'https://ror.org/01th8rf13', 'no_lang_code', 1, 'https://ror.org/01th8rf13 Cambridge Life Sciences (United Kingdom)'),
(28714, 'https://ror.org/029k5s383', 'en', 1, 'https://ror.org/029k5s383 Association canadienne des tƩlƩcommunications sans fil Canadian Wireless Telecommunications Association'),
(28715, 'https://ror.org/02na09p21', 'en', 1, 'https://ror.org/02na09p21 Bristol Clinical Commissioning Group'),
(28716, 'https://ror.org/00tn07286', 'en', 1, 'https://ror.org/00tn07286 Canadian Wood Council Conseil canadien du bois'),
(28717, 'https://ror.org/0289akc76', 'no_lang_code', 1, 'https://ror.org/0289akc76 Canatec (Canada)'),
(28718, 'https://ror.org/01r00g076', 'no_lang_code', 1, 'https://ror.org/01r00g076 Bristol-Myers Squibb (Canada)'),
(28719, 'https://ror.org/0142xw417', 'no_lang_code', 1, 'https://ror.org/0142xw417 CanBiocin (Canada)'),
(28720, 'https://ror.org/021g7ye04', 'no_lang_code', 1, 'https://ror.org/021g7ye04 Kaer Biotherapeutics (United States)'),
(28721, 'https://ror.org/040ch0e11', 'en', 1, 'https://ror.org/040ch0e11 Cambridgeshire and Peterborough NHS Foundation Trust'),
(28722, 'https://ror.org/03ekq2173', 'en', 1, 'https://ror.org/03ekq2173 Camden and Islington NHS Foundation Trust'),
(28723, 'https://ror.org/00m35h465', 'en', 1, 'https://ror.org/00m35h465 Center for New American Media'),
(28724, 'https://ror.org/05ppvc341', 'en', 1, 'https://ror.org/05ppvc341 Third World Newsreel'),
(28725, 'https://ror.org/031fs4257', 'en', 1, 'https://ror.org/031fs4257 British Columbia Blueberry Council'),
(28726, 'https://ror.org/023zamm70', 'en', 1, 'https://ror.org/023zamm70 CANDU Owners Group'),
(28727, 'https://ror.org/0497dq098', 'en', 1, 'https://ror.org/0497dq098 British Columbia Broiler Hatching Egg Commission'),
(28728, 'https://ror.org/00qys8f30', 'no_lang_code', 1, 'https://ror.org/00qys8f30 Penn West Exploration (Canada)'),
(28729, 'https://ror.org/02951hv89', 'no_lang_code', 1, 'https://ror.org/02951hv89 Campbell Scientific (Canada)'),
(28730, 'https://ror.org/009fhna20', 'en', 1, 'https://ror.org/009fhna20 British Columbia Dairy Association'),
(28731, 'https://ror.org/041emnb33', 'en', 1, 'https://ror.org/041emnb33 Biomedical Research Foundation of Northwest Louisiana'),
(28732, 'https://ror.org/01szvzc53', 'no_lang_code', 1, 'https://ror.org/01szvzc53 Biomer Technology (United Kingdom)'),
(28733, 'https://ror.org/00s9t5z05', 'no_lang_code', 1, 'https://ror.org/00s9t5z05 Canetique (Canada)'),
(28734, 'https://ror.org/05c20s821', 'en', 1, 'https://ror.org/05c20s821 Canadian Concrete Masonry Producers Association'),
(28735, 'https://ror.org/05drfg619', 'en', 1, 'https://ror.org/05drfg619 Central and North West London NHS Foundation Trust'),
(28736, 'https://ror.org/05hpdky94', 'en', 1, 'https://ror.org/05hpdky94 British Columbia Salmon Farmers Association'),
(28737, 'https://ror.org/0156qw326', 'no_lang_code', 1, 'https://ror.org/0156qw326 VƩtoquinol (Canada)'),
(28738, 'https://ror.org/02vzczv80', 'en', 1, 'https://ror.org/02vzczv80 College of Veterinarians of British Columbia'),
(28739, 'https://ror.org/02gsap059', 'no_lang_code', 1, 'https://ror.org/02gsap059 CarrƩ Technologies (Canada)'),
(28740, 'https://ror.org/023a30207', 'no_lang_code', 1, 'https://ror.org/023a30207 Telesta Therapeutics (Canada)'),
(28741, 'https://ror.org/0143z3t44', 'en', 1, 'https://ror.org/0143z3t44 Canterbury Shaker Village'),
(28742, 'https://ror.org/04wgdyk95', 'no_lang_code', 1, 'https://ror.org/04wgdyk95 Biopeak Corporation (Canada)'),
(28743, 'https://ror.org/02j43hc79', 'no_lang_code', 1, 'https://ror.org/02j43hc79 Biophotonic Solutions (United States)'),
(28744, 'https://ror.org/0192jzd36', 'no_lang_code', 1, 'https://ror.org/0192jzd36 Cartiere Modesto Cardella (Italy)'),
(28745, 'https://ror.org/05848kk30', 'no_lang_code', 1, 'https://ror.org/05848kk30 Cascades (Canada)'),
(28746, 'https://ror.org/0326cx138', 'no_lang_code', 1, 'https://ror.org/0326cx138 Philips (Canada)'),
(28747, 'https://ror.org/055aaqn82', 'fr', 1, 'https://ror.org/055aaqn82 Centre d''expertise et de recherche en infrastructures urbaines'),
(28748, 'https://ror.org/00f2vm529', 'en', 1, 'https://ror.org/00f2vm529 Artificial Insemination Center of Quebec Centre d''InsƩmination artificielle du QuƩbec'),
(28749, 'https://ror.org/021pv6792', 'en', 1, 'https://ror.org/021pv6792 CATAAlliance'),
(28750, 'https://ror.org/04kmn0d38', 'no_lang_code', 1, 'https://ror.org/04kmn0d38 Catalyst Paper (Canada)'),
(28751, 'https://ror.org/057cz4c58', 'fr', 1, 'https://ror.org/057cz4c58 Centre de DƩveloppement du Porc du QuƩbec'),
(28752, 'https://ror.org/045a2mc38', 'en', 1, 'https://ror.org/045a2mc38 Cape Breton Development Corporation'),
(28753, 'https://ror.org/016fy5v41', 'fr', 1, 'https://ror.org/016fy5v41 Association QuƩbƩcoise des Fournisseurs et Utilisateurs de Bitume Bitume QuƩbec'),
(28754, 'https://ror.org/056q60969', 'en', 1, 'https://ror.org/056q60969 Cattle Industry Development Council'),
(28755, 'https://ror.org/02vbx3q13', 'no_lang_code', 1, 'https://ror.org/02vbx3q13 CH Four Biogas (Canada)'),
(28756, 'https://ror.org/04dv8zc45', 'no_lang_code', 1, 'https://ror.org/04dv8zc45 Capital Power (Canada)'),
(28757, 'https://ror.org/00z8w4e54', 'no_lang_code', 1, 'https://ror.org/00z8w4e54 CBC (Canada) SociƩtƩ Radio-Canada'),
(28758, 'https://ror.org/04tbxet45', 'no_lang_code', 1, 'https://ror.org/04tbxet45 Jacobs (Canada)'),
(28759, 'https://ror.org/048r2d478', 'en', 1, 'https://ror.org/048r2d478 Computer Based Training for Cognitive Behavioral Therapy'),
(28760, 'https://ror.org/02g0mbf40', 'no_lang_code', 1, 'https://ror.org/02g0mbf40 Chai-Na-Ta (Canada)'),
(28761, 'https://ror.org/01b4acr91', 'fr', 1, 'https://ror.org/01b4acr91 Centre de Recherche en Sciences Animales de Deschambault'),
(28762, 'https://ror.org/02eq82485', 'no_lang_code', 1, 'https://ror.org/02eq82485 Combined Computer Services (Netherlands)'),
(28763, 'https://ror.org/03dfstc27', 'no_lang_code', 1, 'https://ror.org/03dfstc27 Commonwealth Plywood (Canada)'),
(28764, 'https://ror.org/01ssww473', 'en', 1, 'https://ror.org/01ssww473 Clarity Films'),
(28765, 'https://ror.org/02qy4hb70', 'no_lang_code', 1, 'https://ror.org/02qy4hb70 Clayburn Refractories (Canada)'),
(28766, 'https://ror.org/012e7ew08', 'en', 1, 'https://ror.org/012e7ew08 Centre de la SƩcuritƩ des TƩlƩcommunications Communications Security Establishment'),
(28767, 'https://ror.org/03n6w3476', 'no_lang_code', 1, 'https://ror.org/03n6w3476 CLC (Italy)'),
(28768, 'https://ror.org/05ryv2g97', 'no_lang_code', 1, 'https://ror.org/05ryv2g97 Compagnie Industrielle de la Matière Végétale (France)'),
(28769, 'https://ror.org/000ycm570', 'no_lang_code', 1, 'https://ror.org/000ycm570 Credo Interactive (Canada)'),
(28770, 'https://ror.org/04ad94n97', 'no_lang_code', 1, 'https://ror.org/04ad94n97 Comptoir Agricole Sabrevois (Canada)'),
(28771, 'https://ror.org/020r9sg22', 'no_lang_code', 1, 'https://ror.org/020r9sg22 Chevron (Canada)'),
(28772, 'https://ror.org/00cqb7125', 'no_lang_code', 1, 'https://ror.org/00cqb7125 CM Labs Simulations (Canada)'),
(28773, 'https://ror.org/02jfa8730', 'no_lang_code', 1, 'https://ror.org/02jfa8730 Chevron (United States)'),
(28774, 'https://ror.org/04hjgjc21', 'en', 1, 'https://ror.org/04hjgjc21 Canadian Hydrogen and Fuel Cell Association'),
(28775, 'https://ror.org/01t2e5682', 'no_lang_code', 1, 'https://ror.org/01t2e5682 CNH Industrial (Canada)'),
(28776, 'https://ror.org/04z6hjp93', 'en', 1, 'https://ror.org/04z6hjp93 Chinese Culture Center of San Francisco'),
(28777, 'https://ror.org/027epca68', 'en', 1, 'https://ror.org/027epca68 China Institute in America'),
(28778, 'https://ror.org/04dft6z85', 'en', 1, 'https://ror.org/04dft6z85 Conner Prairie'),
(28779, 'https://ror.org/04hvmsy06', 'no_lang_code', 1, 'https://ror.org/04hvmsy06 Cochlear (Australia)'),
(28780, 'https://ror.org/03z192g48', 'no_lang_code', 1, 'https://ror.org/03z192g48 CrossWing (Canada)'),
(28781, 'https://ror.org/03n5g6138', 'en', 1, 'https://ror.org/03n5g6138 Digital Catapult'),
(28782, 'https://ror.org/03nqxn280', 'en', 1, 'https://ror.org/03nqxn280 Christian Aid'),
(28783, 'https://ror.org/00k5eg781', 'en', 1, 'https://ror.org/00k5eg781 Canadian Heritage Patrimoine Canadien'),
(28784, 'https://ror.org/02pvd7916', 'en', 1, 'https://ror.org/02pvd7916 CODAC Behavioral Health Services'),
(28785, 'https://ror.org/01aa99w95', 'no_lang_code', 1, 'https://ror.org/01aa99w95 Austro Control (Austria) Ɩsterreichische Gesellschaft für Zivilluftfahrt'),
(28786, 'https://ror.org/02fym2550', 'no_lang_code', 1, 'https://ror.org/02fym2550 Codagenix (United States)'),
(28787, 'https://ror.org/0320gnw44', 'it', 1, 'https://ror.org/0320gnw44 Consorzio Futuro in Ricerca'),
(28788, 'https://ror.org/002z5ed28', 'en', 1, 'https://ror.org/002z5ed28 Cumulative Environmental Management Association'),
(28789, 'https://ror.org/05ed9kb76', 'no_lang_code', 1, 'https://ror.org/05ed9kb76 Curadel (United States)'),
(28790, 'https://ror.org/04kshqx58', 'no_lang_code', 1, 'https://ror.org/04kshqx58 Mtekvision (Canada)'),
(28791, 'https://ror.org/05agqdk49', 'no_lang_code', 1, 'https://ror.org/05agqdk49 Ciena (Canada)'),
(28792, 'https://ror.org/00qd48t56', 'no_lang_code', 1, 'https://ror.org/00qd48t56 Cognizant (United Kingdom)'),
(28793, 'https://ror.org/007b0pc67', 'no_lang_code', 1, 'https://ror.org/007b0pc67 Gooch & Housego (Greece)'),
(28794, 'https://ror.org/00n4kpm21', 'en', 1, 'https://ror.org/00n4kpm21 Construction Owners Association of Alberta'),
(28795, 'https://ror.org/02ajj7j73', 'no_lang_code', 1, 'https://ror.org/02ajj7j73 BIO (Canada)'),
(28796, 'https://ror.org/05k37cq18', 'no_lang_code', 1, 'https://ror.org/05k37cq18 Custom Security Industries (Canada)'),
(28797, 'https://ror.org/01t0hys38', 'no_lang_code', 1, 'https://ror.org/01t0hys38 Ciment QuƩbec (Canada)'),
(28798, 'https://ror.org/01yktd853', 'en', 1, 'https://ror.org/01yktd853 Consumer Commission on the Accreditation of Health Services'),
(28799, 'https://ror.org/01bt34y59', 'en', 1, 'https://ror.org/01bt34y59 College Art Association'),
(28800, 'https://ror.org/04rx5dj17', 'es', 1, 'https://ror.org/04rx5dj17 Contactica'),
(28801, 'https://ror.org/03ktab054', 'fr', 1, 'https://ror.org/03ktab054 ConfƩrence RƩgionale des EluEs du Bas-Saint-Laurent'),
(28802, 'https://ror.org/03daevf76', 'no_lang_code', 1, 'https://ror.org/03daevf76 Contango Strategies (Canada)'),
(28803, 'https://ror.org/01xtd5c13', 'en', 1, 'https://ror.org/01xtd5c13 CIS Scientific'),
(28804, 'https://ror.org/00j935m10', 'no_lang_code', 1, 'https://ror.org/00j935m10 Cismet (Germany)'),
(28805, 'https://ror.org/02y5ra618', 'no_lang_code', 1, 'https://ror.org/02y5ra618 Bacher Energie (Switzerland)'),
(28806, 'https://ror.org/01y8hgg23', 'no_lang_code', 1, 'https://ror.org/01y8hgg23 Cistel Technology (Canada)'),
(28807, 'https://ror.org/01mj08x55', 'en', 1, 'https://ror.org/01mj08x55 College of Policing'),
(28808, 'https://ror.org/01kkxsr20', 'no_lang_code', 1, 'https://ror.org/01kkxsr20 Staal Technisch Centrum (Netherlands)'),
(28809, 'https://ror.org/045mtcs38', 'no_lang_code', 1, 'https://ror.org/045mtcs38 CorActive (Canada)'),
(28810, 'https://ror.org/00dtxmk25', 'en', 1, 'https://ror.org/00dtxmk25 Colorado Springs Fine Arts Center'),
(28811, 'https://ror.org/0537cvg39', 'no_lang_code', 1, 'https://ror.org/0537cvg39 Magna International (Canada)'),
(28812, 'https://ror.org/02s21g398', 'en', 1, 'https://ror.org/02s21g398 Coral Reef Research Foundation'),
(28813, 'https://ror.org/00xz1k913', 'no_lang_code', 1, 'https://ror.org/00xz1k913 Cerpotech (Norway)'),
(28814, 'https://ror.org/03vrnre28', 'en', 1, 'https://ror.org/03vrnre28 Innov & Export PME'),
(28815, 'https://ror.org/05s7mx240', 'no_lang_code', 1, 'https://ror.org/05s7mx240 Cyrium Technologies (Canada)'),
(28816, 'https://ror.org/04mr81w67', 'no_lang_code', 1, 'https://ror.org/04mr81w67 Ceska Astronomicka Spolecnost'),
(28817, 'https://ror.org/01ekca690', 'no_lang_code', 1, 'https://ror.org/01ekca690 Solvay (Canada)'),
(28818, 'https://ror.org/02y47bf73', 'no_lang_code', 1, 'https://ror.org/02y47bf73 Evonik (Canada)'),
(28819, 'https://ror.org/02fd77q25', 'en', 1, 'https://ror.org/02fd77q25 Council of Forest Industries'),
(28820, 'https://ror.org/001tp4w71', 'en', 1, 'https://ror.org/001tp4w71 Crafts Council'),
(28821, 'https://ror.org/00j65sp23', 'no_lang_code', 1, 'https://ror.org/00j65sp23 CanKids KidsCan'),
(28822, 'https://ror.org/05eb69c53', 'no_lang_code', 1, 'https://ror.org/05eb69c53 Dynamotive Energy Systems (Canada)'),
(28823, 'https://ror.org/01cgkw709', 'no_lang_code', 1, 'https://ror.org/01cgkw709 Delastek (Canada)'),
(28824, 'https://ror.org/01bat1a85', 'no_lang_code', 1, 'https://ror.org/01bat1a85 Cytodiagnostics (Canada)'),
(28825, 'https://ror.org/014hhab16', 'en', 1, 'https://ror.org/014hhab16 Chadacre Agricultural Trust'),
(28826, 'https://ror.org/02zydys88', 'no_lang_code', 1, 'https://ror.org/02zydys88 Delta-Q Technologies (Canada)'),
(28827, 'https://ror.org/005gfkp44', 'no_lang_code', 1, 'https://ror.org/005gfkp44 Denison Mines (Canada)'),
(28828, 'https://ror.org/02ytn5d60', 'no_lang_code', 1, 'https://ror.org/02ytn5d60 Ferring Pharmaceuticals (United States)'),
(28829, 'https://ror.org/038twcm90', 'no_lang_code', 1, 'https://ror.org/038twcm90 Center For Innovative Food Technology (United States)'),
(28830, 'https://ror.org/03rj7b697', 'no_lang_code', 1, 'https://ror.org/03rj7b697 Enerworks (Canada)'),
(28831, 'https://ror.org/02n77yt92', 'no_lang_code', 1, 'https://ror.org/02n77yt92 Enmax (Canada)'),
(28832, 'https://ror.org/00h8ny829', 'no_lang_code', 1, 'https://ror.org/00h8ny829 Ingredion (Canada)'),
(28833, 'https://ror.org/025cy1d38', 'en', 1, 'https://ror.org/025cy1d38 Department of Health Social Services and Public Safety'),
(28834, 'https://ror.org/04skcvp73', 'en', 1, 'https://ror.org/04skcvp73 European Research Institute of Catalysis');
INSERT INTO `rors` VALUES
(28835, 'https://ror.org/04t871j63', 'no_lang_code', 1, 'https://ror.org/04t871j63 Eacom Timber Corporation (Canada)'),
(28836, 'https://ror.org/04v0pva46', 'no_lang_code', 1, 'https://ror.org/04v0pva46 Dalton Pharma Services (Canada)'),
(28837, 'https://ror.org/002g2cw45', 'no_lang_code', 1, 'https://ror.org/002g2cw45 D2L (Canada)'),
(28838, 'https://ror.org/04ppfc921', 'no_lang_code', 1, 'https://ror.org/04ppfc921 Earthmaster Environmental Strategies (Canada)'),
(28839, 'https://ror.org/01q0vs094', 'en', 1, 'https://ror.org/01q0vs094 East London NHS Foundation Trust'),
(28840, 'https://ror.org/002kffq59', 'no_lang_code', 1, 'https://ror.org/002kffq59 Evolva (Denmark)'),
(28841, 'https://ror.org/01qr4jt84', 'no_lang_code', 1, 'https://ror.org/01qr4jt84 EnWave Corporation (Canada)'),
(28842, 'https://ror.org/05n7hc005', 'no_lang_code', 1, 'https://ror.org/05n7hc005 EVRAZ (United States)'),
(28843, 'https://ror.org/05qty9v66', 'no_lang_code', 1, 'https://ror.org/05qty9v66 Dessau-Soprin (Canada)'),
(28844, 'https://ror.org/05xf0vz59', 'no_lang_code', 1, 'https://ror.org/05xf0vz59 Easy Global Market (France)'),
(28845, 'https://ror.org/03cnssq44', 'en', 1, 'https://ror.org/03cnssq44 Danish Science Factory'),
(28846, 'https://ror.org/05pzwgc51', 'no_lang_code', 1, 'https://ror.org/05pzwgc51 Devices for Dignity'),
(28847, 'https://ror.org/03htdje54', 'no_lang_code', 1, 'https://ror.org/03htdje54 Oerlikon (United Kingdom)'),
(28848, 'https://ror.org/01hyee328', 'da', 1, 'https://ror.org/01hyee328 Dansk RĆøde Kors'),
(28849, 'https://ror.org/016mr6c68', 'no_lang_code', 1, 'https://ror.org/016mr6c68 Akka Technologies (Italy)'),
(28850, 'https://ror.org/02e998f13', 'en', 1, 'https://ror.org/02e998f13 Equal Arts'),
(28851, 'https://ror.org/00nn4h902', 'en', 1, 'https://ror.org/00nn4h902 Ecancer'),
(28852, 'https://ror.org/01knxge52', 'no_lang_code', 1, 'https://ror.org/01knxge52 Ericsson (United Kingdom)'),
(28853, 'https://ror.org/05qbc4793', 'no_lang_code', 1, 'https://ror.org/05qbc4793 Diacarbon Energy (Canada)'),
(28854, 'https://ror.org/04dhm2b57', 'no_lang_code', 1, 'https://ror.org/04dhm2b57 Ericsson (Denmark)'),
(28855, 'https://ror.org/05dmw9n70', 'no_lang_code', 1, 'https://ror.org/05dmw9n70 Gold Peak Industries (China)'),
(28856, 'https://ror.org/03n17tr67', 'no_lang_code', 1, 'https://ror.org/03n17tr67 F. MƩnard (Canada)'),
(28857, 'https://ror.org/02btef130', 'no_lang_code', 1, 'https://ror.org/02btef130 F6S Network (United Kingdom)'),
(28858, 'https://ror.org/038e15474', 'no_lang_code', 1, 'https://ror.org/038e15474 Fabris (Canada)'),
(28859, 'https://ror.org/01jbchh45', 'no_lang_code', 1, 'https://ror.org/01jbchh45 Essilor (Canada)'),
(28860, 'https://ror.org/024dc0f12', 'no_lang_code', 1, 'https://ror.org/024dc0f12 HeidelbergCement (Canada)'),
(28861, 'https://ror.org/04315yv37', 'en', 1, 'https://ror.org/04315yv37 Edinburgh International Science Festival'),
(28862, 'https://ror.org/05rrq0b46', 'no_lang_code', 1, 'https://ror.org/05rrq0b46 Fafard et FrĆØres (Canada)'),
(28863, 'https://ror.org/02hrn9a05', 'no_lang_code', 1, 'https://ror.org/02hrn9a05 IHS Markit (United States)'),
(28864, 'https://ror.org/02scsee13', 'no_lang_code', 1, 'https://ror.org/02scsee13 Etalon (Germany)'),
(28865, 'https://ror.org/02we8bf02', 'no_lang_code', 1, 'https://ror.org/02we8bf02 NewMarket Corporation (United States)'),
(28866, 'https://ror.org/01w4p7624', 'no_lang_code', 1, 'https://ror.org/01w4p7624 Eticas Research & Consulting (Spain)'),
(28867, 'https://ror.org/01kvhrk82', 'no_lang_code', 1, 'https://ror.org/01kvhrk82 PTC (Canada)'),
(28868, 'https://ror.org/01rswrs24', 'no_lang_code', 1, 'https://ror.org/01rswrs24 Ɖtudes-Recherches-MatĆ©riaux (France)'),
(28869, 'https://ror.org/01b4ex890', 'no_lang_code', 1, 'https://ror.org/01b4ex890 Digital Scientific (United Kingdom)'),
(28870, 'https://ror.org/01tmp4163', 'no_lang_code', 1, 'https://ror.org/01tmp4163 Datec Coating (Canada)'),
(28871, 'https://ror.org/03334wr17', 'en', 1, 'https://ror.org/03334wr17 Museum at Eldridge Street'),
(28872, 'https://ror.org/01pcpwp52', 'no_lang_code', 1, 'https://ror.org/01pcpwp52 RPM International (Canada)'),
(28873, 'https://ror.org/02ckxxf86', 'no_lang_code', 1, 'https://ror.org/02ckxxf86 Digital Specialty Chemicals (Canada)'),
(28874, 'https://ror.org/02kbyb945', 'no_lang_code', 1, 'https://ror.org/02kbyb945 Electrik Box (Canada)'),
(28875, 'https://ror.org/01x6hat91', 'en', 1, 'https://ror.org/01x6hat91 Coating Consultancy'),
(28876, 'https://ror.org/055arfx13', 'no_lang_code', 1, 'https://ror.org/055arfx13 Electronic Arts (Canada)'),
(28877, 'https://ror.org/02zqqn969', 'no_lang_code', 1, 'https://ror.org/02zqqn969 Dillon Consulting'),
(28878, 'https://ror.org/01trb8031', 'en', 1, 'https://ror.org/01trb8031 European Global Ocean Observing System'),
(28879, 'https://ror.org/046t0ph31', 'no_lang_code', 1, 'https://ror.org/046t0ph31 Elevance Renewable Sciences (United States)'),
(28880, 'https://ror.org/01wq1xf82', 'en', 1, 'https://ror.org/01wq1xf82 European Academy of Technology and Innovation Assessment'),
(28881, 'https://ror.org/02a5smf05', 'en', 1, 'https://ror.org/02a5smf05 Cockcroft Institute'),
(28882, 'https://ror.org/030trv569', 'no_lang_code', 1, 'https://ror.org/030trv569 Aecom (Canada)'),
(28883, 'https://ror.org/02tc9fx21', 'it', 1, 'https://ror.org/02tc9fx21 Dipartimento per le pari opportunitĆ '),
(28884, 'https://ror.org/024e9aw38', 'en', 1, 'https://ror.org/024e9aw38 European CanCer Organisation'),
(28885, 'https://ror.org/02s9z8855', 'no_lang_code', 1, 'https://ror.org/02s9z8855 Firalis (France)'),
(28886, 'https://ror.org/01bstzn19', 'en', 1, 'https://ror.org/01bstzn19 European Cooperation in Science and Technology'),
(28887, 'https://ror.org/055j5f215', 'en', 1, 'https://ror.org/055j5f215 Earthgen'),
(28888, 'https://ror.org/00w5q8f78', 'en', 1, 'https://ror.org/00w5q8f78 Canadian Standards Association'),
(28889, 'https://ror.org/048p52p98', 'en', 1, 'https://ror.org/048p52p98 Canada Auto Workers'),
(28890, 'https://ror.org/04rr8j290', 'no_lang_code', 1, 'https://ror.org/04rr8j290 Construction DJL (Canada)'),
(28891, 'https://ror.org/021wdam30', 'no_lang_code', 1, 'https://ror.org/021wdam30 DK-SPEC (Canada)'),
(28892, 'https://ror.org/03x725c05', 'no_lang_code', 1, 'https://ror.org/03x725c05 Federated Co-operatives (Canada)'),
(28893, 'https://ror.org/055mrxn09', 'no_lang_code', 1, 'https://ror.org/055mrxn09 Early Warning (United States)'),
(28894, 'https://ror.org/034pgmb82', 'no_lang_code', 1, 'https://ror.org/034pgmb82 Dolphin Computer Access (United Kingdom)'),
(28895, 'https://ror.org/018xr7s92', 'no_lang_code', 1, 'https://ror.org/018xr7s92 EllisDon (Canada)'),
(28896, 'https://ror.org/04yxh1b11', 'en', 1, 'https://ror.org/04yxh1b11 Fundy Tidal'),
(28897, 'https://ror.org/05k9vtj41', 'no_lang_code', 1, 'https://ror.org/05k9vtj41 Fuseforward (Canada)'),
(28898, 'https://ror.org/059n53q30', 'no_lang_code', 1, 'https://ror.org/059n53q30 Doric Lenses (Canada)'),
(28899, 'https://ror.org/007jev255', 'no_lang_code', 1, 'https://ror.org/007jev255 Future-Shape (Germany)'),
(28900, 'https://ror.org/04cvg8m78', 'no_lang_code', 1, 'https://ror.org/04cvg8m78 Future Vehicle Technologies (Canada)'),
(28901, 'https://ror.org/023zmfm94', 'fr', 1, 'https://ror.org/023zmfm94 SociƩtƩ GƩologique de France'),
(28902, 'https://ror.org/03qsax043', 'no_lang_code', 1, 'https://ror.org/03qsax043 FISO Technologies (Canada)'),
(28903, 'https://ror.org/03c864431', 'en', 1, 'https://ror.org/03c864431 Federation of European Aquaculture Producers'),
(28904, 'https://ror.org/05cp7zh43', 'no_lang_code', 1, 'https://ror.org/05cp7zh43 Gamma Dynamics (United States)'),
(28905, 'https://ror.org/012x04f41', 'no_lang_code', 1, 'https://ror.org/012x04f41 DELL (Ireland)'),
(28906, 'https://ror.org/00yxhwc11', 'en', 1, 'https://ror.org/00yxhwc11 Dundee City Council'),
(28907, 'https://ror.org/05xsj9862', 'no_lang_code', 1, 'https://ror.org/05xsj9862 Emerging Concepts (United States)'),
(28908, 'https://ror.org/003vejz32', 'en', 1, 'https://ror.org/003vejz32 Flowers Canada Growers'),
(28909, 'https://ror.org/05dtjn343', 'no_lang_code', 1, 'https://ror.org/05dtjn343 Feldan (Canada)'),
(28910, 'https://ror.org/04vj0np78', 'no_lang_code', 1, 'https://ror.org/04vj0np78 GlobVision (Canada)'),
(28911, 'https://ror.org/04a95cm55', 'no_lang_code', 1, 'https://ror.org/04a95cm55 FMB Feinwerk- und Messtechnik (Germany)'),
(28912, 'https://ror.org/00sebb670', 'no_lang_code', 1, 'https://ror.org/00sebb670 Clinique d''OptomĆ©trie l’Émerillon (Canada)'),
(28913, 'https://ror.org/00bhnj053', 'en', 1, 'https://ror.org/00bhnj053 Felix Thornley Cobbold Agricultural Trust'),
(28914, 'https://ror.org/01qpq3w78', 'no_lang_code', 1, 'https://ror.org/01qpq3w78 Golder Associates (United States)'),
(28915, 'https://ror.org/00ampbq92', 'en', 1, 'https://ror.org/00ampbq92 Guysborough County Inshore Fishermen''s Association'),
(28916, 'https://ror.org/05gte4h93', 'en', 1, 'https://ror.org/05gte4h93 Walsh Associates'),
(28917, 'https://ror.org/00wqzbn30', 'no_lang_code', 1, 'https://ror.org/00wqzbn30 KGHM Polska MiedÅŗ (Poland)'),
(28918, 'https://ror.org/02gtcat87', 'no_lang_code', 1, 'https://ror.org/02gtcat87 Focus Microwaves (Canada)'),
(28919, 'https://ror.org/04hezhj72', 'no_lang_code', 1, 'https://ror.org/04hezhj72 Fibercryst (France)'),
(28920, 'https://ror.org/0113m2308', 'no_lang_code', 1, 'https://ror.org/0113m2308 General Dynamics (Canada)'),
(28921, 'https://ror.org/00jqraq76', 'fr', 1, 'https://ror.org/00jqraq76 Fondation de la Faune du QuƩbec'),
(28922, 'https://ror.org/04ap8m727', 'no_lang_code', 1, 'https://ror.org/04ap8m727 FiberSensing (Portugal)'),
(28923, 'https://ror.org/04ybhpd24', 'no_lang_code', 1, 'https://ror.org/04ybhpd24 Enbio (United States)'),
(28924, 'https://ror.org/03es0vc41', 'no_lang_code', 1, 'https://ror.org/03es0vc41 FiberTech Optica (Canada)'),
(28925, 'https://ror.org/00gqn7179', 'no_lang_code', 1, 'https://ror.org/00gqn7179 Gorman Bros Lumber (Canada)'),
(28926, 'https://ror.org/05dxk7523', 'no_lang_code', 1, 'https://ror.org/05dxk7523 Fibics (Canada)'),
(28927, 'https://ror.org/017w8ej57', 'no_lang_code', 1, 'https://ror.org/017w8ej57 Genetec (United States)'),
(28928, 'https://ror.org/03h1r4p85', 'no_lang_code', 1, 'https://ror.org/03h1r4p85 Film Odyssey (United States)'),
(28929, 'https://ror.org/05addyx39', 'no_lang_code', 1, 'https://ror.org/05addyx39 GeneFirst (United Kingdom)'),
(28930, 'https://ror.org/0374ebf38', 'en', 1, 'https://ror.org/0374ebf38 FilmOntario'),
(28931, 'https://ror.org/05yekth54', 'no_lang_code', 1, 'https://ror.org/05yekth54 Finning (Canada)'),
(28932, 'https://ror.org/00xr6ce64', 'no_lang_code', 1, 'https://ror.org/00xr6ce64 Food Dudes (United Kingdom)'),
(28933, 'https://ror.org/0101kca69', 'no_lang_code', 1, 'https://ror.org/0101kca69 Grace (Canada)'),
(28934, 'https://ror.org/05p20a626', 'en', 1, 'https://ror.org/05p20a626 Food Standards Agency'),
(28935, 'https://ror.org/03td1t893', 'no_lang_code', 1, 'https://ror.org/03td1t893 Hitachi (Canada)'),
(28936, 'https://ror.org/04h38r646', 'en', 1, 'https://ror.org/04h38r646 FoodDrinkEurope'),
(28937, 'https://ror.org/04pmctd13', 'en', 1, 'https://ror.org/04pmctd13 Haliburton Forest & Wild Life Reserve'),
(28938, 'https://ror.org/02ygftm07', 'no_lang_code', 1, 'https://ror.org/02ygftm07 Pharmachem Laboratories (United States)'),
(28939, 'https://ror.org/017b5z472', 'en', 1, 'https://ror.org/017b5z472 Halifax Regional Water Commission'),
(28940, 'https://ror.org/00v84va72', 'no_lang_code', 1, 'https://ror.org/00v84va72 Ford Motor Company (Canada) Ford du Canada LimitƩe'),
(28941, 'https://ror.org/03v918835', 'no_lang_code', 1, 'https://ror.org/03v918835 Grainseed (United Kingdom)'),
(28942, 'https://ror.org/02vzzw378', 'en', 1, 'https://ror.org/02vzzw378 Hancock Shaker Village'),
(28943, 'https://ror.org/004735h66', 'en', 1, 'https://ror.org/004735h66 Hydrogen Link Denmark Association'),
(28944, 'https://ror.org/023ckfc30', 'en', 1, 'https://ror.org/023ckfc30 Grand River Conservation Authority'),
(28945, 'https://ror.org/049b7hm56', 'en', 1, 'https://ror.org/049b7hm56 Horse Council BC'),
(28946, 'https://ror.org/01qa3q834', 'no_lang_code', 1, 'https://ror.org/01qa3q834 Hardy Pictures (United Kingdom)'),
(28947, 'https://ror.org/01ye2hc74', 'en', 1, 'https://ror.org/01ye2hc74 Grape Growers of Ontario'),
(28948, 'https://ror.org/03rj6e862', 'no_lang_code', 1, 'https://ror.org/03rj6e862 Graphenea (Spain)'),
(28949, 'https://ror.org/05sfwv538', 'en', 1, 'https://ror.org/05sfwv538 Great Lakes Fishery Commission'),
(28950, 'https://ror.org/00r4d5d70', 'no_lang_code', 1, 'https://ror.org/00r4d5d70 Hazelett (United States)'),
(28951, 'https://ror.org/05d8hvk64', 'en', 1, 'https://ror.org/05d8hvk64 Global Medical Excellence Cluster'),
(28952, 'https://ror.org/02wx5p869', 'no_lang_code', 1, 'https://ror.org/02wx5p869 Howden (United Kingdom)'),
(28953, 'https://ror.org/04asd3g14', 'en', 1, 'https://ror.org/04asd3g14 Greater Portland Landmarks'),
(28954, 'https://ror.org/01v82v626', 'no_lang_code', 1, 'https://ror.org/01v82v626 FoundCare'),
(28955, 'https://ror.org/026venb53', 'no_lang_code', 1, 'https://ror.org/026venb53 Huawei Technologies (Canada)'),
(28956, 'https://ror.org/04gacff49', 'no_lang_code', 1, 'https://ror.org/04gacff49 GreenValue (Switzerland)'),
(28957, 'https://ror.org/02vx8p498', 'no_lang_code', 1, 'https://ror.org/02vx8p498 Hudbay Minerals (Canada)'),
(28958, 'https://ror.org/02hsr5c48', 'no_lang_code', 1, 'https://ror.org/02hsr5c48 ImmerVision (Canada)'),
(28959, 'https://ror.org/03e48bt75', 'no_lang_code', 1, 'https://ror.org/03e48bt75 Heat Trace (United Kingdom)'),
(28960, 'https://ror.org/025q90g47', 'no_lang_code', 1, 'https://ror.org/025q90g47 Grieg Seafood (Canada)'),
(28961, 'https://ror.org/04b0s8g05', 'no_lang_code', 1, 'https://ror.org/04b0s8g05 Husky Energy (Canada)'),
(28962, 'https://ror.org/014xzez86', 'no_lang_code', 1, 'https://ror.org/014xzez86 Immunocore (United Kingdom)'),
(28963, 'https://ror.org/04mypf355', 'en', 1, 'https://ror.org/04mypf355 HeliCat Canada'),
(28964, 'https://ror.org/00kdyte44', 'no_lang_code', 1, 'https://ror.org/00kdyte44 Huys Industries (Canada)'),
(28965, 'https://ror.org/01rr16k76', 'en', 1, 'https://ror.org/01rr16k76 Friends School of Baltimore'),
(28966, 'https://ror.org/02j8w6q81', 'no_lang_code', 1, 'https://ror.org/02j8w6q81 Gruppo Formula (Italy)'),
(28967, 'https://ror.org/05vagkn68', 'cs', 1, 'https://ror.org/05vagkn68 PlanetƔrium Praha'),
(28968, 'https://ror.org/02tm9s162', 'en', 1, 'https://ror.org/02tm9s162 Imperial War Museum'),
(28969, 'https://ror.org/00p77cm62', 'no_lang_code', 1, 'https://ror.org/00p77cm62 Fugro (United Kingdom)'),
(28970, 'https://ror.org/00h7q8720', 'no_lang_code', 1, 'https://ror.org/00h7q8720 Guelph Utility Pole (Canada)'),
(28971, 'https://ror.org/02y720j55', 'no_lang_code', 1, 'https://ror.org/02y720j55 Guild Hall'),
(28972, 'https://ror.org/002jd6n35', 'en', 1, 'https://ror.org/002jd6n35 Gulf of Mexico University Research Collaborative'),
(28973, 'https://ror.org/00neqwx86', 'no_lang_code', 1, 'https://ror.org/00neqwx86 Hydromantis Environmental Software Solutions (Canada)'),
(28974, 'https://ror.org/045xnm641', 'no_lang_code', 1, 'https://ror.org/045xnm641 GlycoScientific (United States)'),
(28975, 'https://ror.org/04f5ngh80', 'en', 1, 'https://ror.org/04f5ngh80 Independent Broadcasting Associates'),
(28976, 'https://ror.org/05gggm169', 'en', 1, 'https://ror.org/05gggm169 HelpAge India'),
(28977, 'https://ror.org/04hkp7874', 'no_lang_code', 1, 'https://ror.org/04hkp7874 Eurorad (France)'),
(28978, 'https://ror.org/022d46z41', 'no_lang_code', 1, 'https://ror.org/022d46z41 Kraft Heinz (Canada)'),
(28979, 'https://ror.org/05c4twb82', 'no_lang_code', 1, 'https://ror.org/05c4twb82 AMS (Finland)'),
(28980, 'https://ror.org/02syy6g64', 'no_lang_code', 1, 'https://ror.org/02syy6g64 Armacell (Canada)'),
(28981, 'https://ror.org/051fk5x88', 'no_lang_code', 1, 'https://ror.org/051fk5x88 Heptares Therapeutics (United Kingdom)'),
(28982, 'https://ror.org/0173t5b71', 'no_lang_code', 1, 'https://ror.org/0173t5b71 Hyteon (Canada)'),
(28983, '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'),
(28984, 'https://ror.org/059z1vb17', 'no_lang_code', 1, 'https://ror.org/059z1vb17 Hackett Publishing (United States)'),
(28985, 'https://ror.org/02tm5n709', 'no_lang_code', 1, 'https://ror.org/02tm5n709 Heraeus (Canada)'),
(28986, 'https://ror.org/025pqzv51', 'en', 1, 'https://ror.org/025pqzv51 QMedic'),
(28987, 'https://ror.org/04f919z92', 'no_lang_code', 1, 'https://ror.org/04f919z92 Perrigo (Belgium)'),
(28988, 'https://ror.org/057b2ek35', 'en', 1, 'https://ror.org/057b2ek35 Intensive Care National Audit & Research Centre'),
(28989, 'https://ror.org/0128dmh12', 'en', 1, 'https://ror.org/0128dmh12 Hertfordshire Partnership University NHS Foundation Trust'),
(28990, 'https://ror.org/04cxwzs93', 'en', 1, 'https://ror.org/04cxwzs93 IT Foundation for the Visually Impaired'),
(28991, 'https://ror.org/0333dtq15', 'no_lang_code', 1, 'https://ror.org/0333dtq15 Hewlett-Packard (Canada)'),
(28992, 'https://ror.org/02q0s1x22', 'no_lang_code', 1, 'https://ror.org/02q0s1x22 Hitachi Global Storage Technologies (United States)'),
(28993, 'https://ror.org/03jes3672', 'hu', 1, 'https://ror.org/03jes3672 Informatikai, TƔvkƶzlƩsi Ʃs Elektronikai VƔllalkozƔsok SzƶvetsƩge'),
(28994, 'https://ror.org/0267nkd62', 'en', 1, 'https://ror.org/0267nkd62 Higher Education Academy'),
(28995, 'https://ror.org/00qjb4236', 'en', 1, 'https://ror.org/00qjb4236 Association Canadienne de la Technologie de l''Information Information Technology Association of Canada'),
(28996, 'https://ror.org/05mn41x71', 'no_lang_code', 1, 'https://ror.org/05mn41x71 Highview Power Storage (United Kingdom)'),
(28997, 'https://ror.org/0235ynz50', 'no_lang_code', 1, 'https://ror.org/0235ynz50 Informer (Greece)'),
(28998, 'https://ror.org/00p3k1n22', 'no_lang_code', 1, 'https://ror.org/00p3k1n22 AkzoNobel (Canada)'),
(28999, 'https://ror.org/01a8wwc80', 'no_lang_code', 1, 'https://ror.org/01a8wwc80 Rutter (Canada)'),
(29000, 'https://ror.org/02168q889', 'no_lang_code', 1, 'https://ror.org/02168q889 InteraXon (Canada)'),
(29001, 'https://ror.org/01xx86r77', 'no_lang_code', 1, 'https://ror.org/01xx86r77 Biolin Scientific (United Kingdom)'),
(29002, 'https://ror.org/030vh3375', 'no_lang_code', 1, 'https://ror.org/030vh3375 IDELIX Software (Canada)'),
(29003, 'https://ror.org/03f6tf726', 'en', 1, 'https://ror.org/03f6tf726 Initiative for Automotive Manufacturing Innovation'),
(29004, 'https://ror.org/0321tjn48', 'es', 1, 'https://ror.org/0321tjn48 Instituto de Formación y Estudios Sociales'),
(29005, 'https://ror.org/00691gs61', 'en', 1, 'https://ror.org/00691gs61 Institute for Research and Development'),
(29006, 'https://ror.org/04bac2365', 'en', 1, 'https://ror.org/04bac2365 Interface Symposia'),
(29007, 'https://ror.org/04n95h407', 'it', 1, 'https://ror.org/04n95h407 Istituto Italiano per l''Africa e l''Oriente'),
(29008, 'https://ror.org/01ew1f053', 'no_lang_code', 1, 'https://ror.org/01ew1f053 Genias Software (Germany)'),
(29009, 'https://ror.org/0375ygm12', 'no_lang_code', 1, 'https://ror.org/0375ygm12 Constellation Brands (Canada)'),
(29010, 'https://ror.org/040cjbv15', 'en', 1, 'https://ror.org/040cjbv15 Interior Lumber Manufacturers Association'),
(29011, 'https://ror.org/00p8x9d62', 'no_lang_code', 1, 'https://ror.org/00p8x9d62 Kemira (Canada)'),
(29012, 'https://ror.org/024efz335', 'no_lang_code', 1, 'https://ror.org/024efz335 Innovative Energy Solution (United States)'),
(29013, 'https://ror.org/00mrdc589', 'en', 1, 'https://ror.org/00mrdc589 Institute of Clinical Research'),
(29014, 'https://ror.org/02s9h8g68', 'ro', 1, 'https://ror.org/02s9h8g68 Poliția de Frontieră RomĆ¢nă'),
(29015, 'https://ror.org/04qamdm65', 'en', 1, 'https://ror.org/04qamdm65 International Cinematographers Guild'),
(29016, 'https://ror.org/01h7phx34', 'no_lang_code', 1, 'https://ror.org/01h7phx34 ITS Electronics (Canada)'),
(29017, 'https://ror.org/0302b4677', 'en', 1, 'https://ror.org/0302b4677 British Academy'),
(29018, 'https://ror.org/0558bzs02', 'no_lang_code', 1, 'https://ror.org/0558bzs02 Iron Ore Company (Canada)'),
(29019, 'https://ror.org/02x2xf445', 'en', 1, 'https://ror.org/02x2xf445 Institute of Nature Conservation Instytut Ochrony Przyrody'),
(29020, 'https://ror.org/00gvcmw36', 'en', 1, 'https://ror.org/00gvcmw36 Kent County Council'),
(29021, 'https://ror.org/0298xnj14', 'en', 1, 'https://ror.org/0298xnj14 Kentucky Educational Television'),
(29022, 'https://ror.org/037na0x96', 'no_lang_code', 1, 'https://ror.org/037na0x96 Kerr Wood Leidal Associates (Canada)'),
(29023, 'https://ror.org/02hkywq03', 'no_lang_code', 1, 'https://ror.org/02hkywq03 Kinectrics (Canada)'),
(29024, 'https://ror.org/01g2jxv60', 'no_lang_code', 1, 'https://ror.org/01g2jxv60 KPM Industries (Canada)'),
(29025, 'https://ror.org/00gg9m594', 'en', 1, 'https://ror.org/00gg9m594 Landscape Institute'),
(29026, 'https://ror.org/02bax5p58', 'no_lang_code', 1, 'https://ror.org/02bax5p58 Ionic Systems (United States)'),
(29027, 'https://ror.org/00tmnnm82', 'no_lang_code', 1, 'https://ror.org/00tmnnm82 Kingston Software Factory (Canada)'),
(29028, 'https://ror.org/012bjmg46', 'no_lang_code', 1, 'https://ror.org/012bjmg46 Kinova (Canada)'),
(29029, 'https://ror.org/01rvfwh35', 'no_lang_code', 1, 'https://ror.org/01rvfwh35 Laricina Energy (Canada)'),
(29030, 'https://ror.org/054tbbe35', 'en', 1, 'https://ror.org/054tbbe35 International Council on Mining and Metals'),
(29031, 'https://ror.org/044gr8720', 'en', 1, 'https://ror.org/044gr8720 Heythrop College, University of London'),
(29032, 'https://ror.org/001htc678', 'en', 1, 'https://ror.org/001htc678 Ravensbourne University London'),
(29033, 'https://ror.org/032p34689', 'no_lang_code', 1, 'https://ror.org/032p34689 KnowCharge (Canada)'),
(29034, 'https://ror.org/00zjtrn44', 'no_lang_code', 1, 'https://ror.org/00zjtrn44 Jackson Laboratories (India)'),
(29035, 'https://ror.org/00fdawj48', 'en', 1, 'https://ror.org/00fdawj48 Leo Baeck Institute'),
(29036, 'https://ror.org/050tq6t62', 'en', 1, 'https://ror.org/050tq6t62 International Solar Energy Research Center Konstanz'),
(29037, 'https://ror.org/042ssda85', 'no_lang_code', 1, 'https://ror.org/042ssda85 Chantiers Chibougamau (Canada)'),
(29038, 'https://ror.org/02zbnnb30', 'no_lang_code', 1, 'https://ror.org/02zbnnb30 Knowledge Broadband Services (Greece)'),
(29039, 'https://ror.org/00rceb094', 'no_lang_code', 1, 'https://ror.org/00rceb094 International Submarine Engineering (Canada)'),
(29040, 'https://ror.org/02jtc9v47', 'no_lang_code', 1, 'https://ror.org/02jtc9v47 Norleaf Networks (Canada)'),
(29041, 'https://ror.org/03586p284', 'no_lang_code', 1, 'https://ror.org/03586p284 J. D. Irving (Canada)'),
(29042, 'https://ror.org/046v2xt32', 'no_lang_code', 1, 'https://ror.org/046v2xt32 Lexicon Technologies (United States)'),
(29043, 'https://ror.org/0144hyz50', 'no_lang_code', 1, 'https://ror.org/0144hyz50 Island Timberlands (Canada)'),
(29044, 'https://ror.org/00scm8y78', 'en', 1, 'https://ror.org/00scm8y78 Life Science Governance Institute'),
(29045, 'https://ror.org/01q8wz079', 'no_lang_code', 1, 'https://ror.org/01q8wz079 Komet Group (Austria)'),
(29046, 'https://ror.org/05191c058', 'en', 1, 'https://ror.org/05191c058 Japan Society'),
(29047, 'https://ror.org/046ep5e79', 'no_lang_code', 1, 'https://ror.org/046ep5e79 KGS Group (Canada)'),
(29048, 'https://ror.org/01rbmhr75', 'en', 1, 'https://ror.org/01rbmhr75 Istanbul Metropolitan Municipality'),
(29049, 'https://ror.org/05f1qm765', 'en', 1, 'https://ror.org/05f1qm765 Kopint-TƔrki Institute for Economic Research'),
(29050, 'https://ror.org/00hm8vh37', 'no_lang_code', 1, 'https://ror.org/00hm8vh37 Tolko (Canada)'),
(29051, 'https://ror.org/022sa0k38', 'no_lang_code', 1, 'https://ror.org/022sa0k38 Kronos (Canada)'),
(29052, 'https://ror.org/02wpr4m51', 'no_lang_code', 1, 'https://ror.org/02wpr4m51 Kumetrix (United States)'),
(29053, 'https://ror.org/00wkyd235', 'no_lang_code', 1, 'https://ror.org/00wkyd235 Louisiana-Pacific (Canada)'),
(29054, 'https://ror.org/04jrey505', 'no_lang_code', 1, 'https://ror.org/04jrey505 Kurt J. Lesker (United Kingdom)'),
(29055, 'https://ror.org/01yjd3664', 'no_lang_code', 1, 'https://ror.org/01yjd3664 Link Microtek (United Kingdom)'),
(29056, 'https://ror.org/00n1x4x37', 'no_lang_code', 1, 'https://ror.org/00n1x4x37 Linnaeus Plant Sciences (Canada)'),
(29057, 'https://ror.org/033g7w111', 'no_lang_code', 1, 'https://ror.org/033g7w111 Accel Brands (United States)'),
(29058, 'https://ror.org/03qqngv96', 'en', 1, 'https://ror.org/03qqngv96 Living Streets'),
(29059, 'https://ror.org/035gbh774', 'no_lang_code', 1, 'https://ror.org/035gbh774 Lumerical Solutions (Canada)'),
(29060, 'https://ror.org/02ea4nx72', 'en', 1, 'https://ror.org/02ea4nx72 East Asian Observatory'),
(29061, 'https://ror.org/04yr2wm37', 'no_lang_code', 1, 'https://ror.org/04yr2wm37 Logrotex (Spain)'),
(29062, 'https://ror.org/04ptp8872', 'en', 1, 'https://ror.org/04ptp8872 London Centre for Nanotechnology'),
(29063, 'https://ror.org/028pagn69', 'en', 1, 'https://ror.org/028pagn69 London Metropolitan Archives'),
(29064, 'https://ror.org/04chpf767', 'fr', 1, 'https://ror.org/04chpf767 SociƩtƩ de DƩveloppement de I''industrie Maricole'),
(29065, 'https://ror.org/00fh0k280', 'en', 1, 'https://ror.org/00fh0k280 Morning Sun'),
(29066, 'https://ror.org/04h2r8894', 'no_lang_code', 1, 'https://ror.org/04h2r8894 LuminUltra Technologies (Canada)'),
(29067, 'https://ror.org/05t4zqc79', 'no_lang_code', 1, 'https://ror.org/05t4zqc79 GeoInformation (United Kingdom)'),
(29068, 'https://ror.org/03mj2b997', 'no_lang_code', 1, 'https://ror.org/03mj2b997 Hutchinson (Canada)'),
(29069, 'https://ror.org/00jz0gc70', 'no_lang_code', 1, 'https://ror.org/00jz0gc70 JV Driver Projects (Canada)'),
(29070, 'https://ror.org/048m3cq30', 'no_lang_code', 1, 'https://ror.org/048m3cq30 Paladin Labs (Canada)'),
(29071, 'https://ror.org/015yp6v32', 'en', 1, 'https://ror.org/015yp6v32 Maritime Fishermen''s Union'),
(29072, 'https://ror.org/033rwdt55', 'no_lang_code', 1, 'https://ror.org/033rwdt55 McAsphalt Industries (Canada)'),
(29073, 'https://ror.org/03hgpat49', 'no_lang_code', 1, 'https://ror.org/03hgpat49 Kalesnikoff Lumber (Canada)'),
(29074, 'https://ror.org/0587xtk95', 'no_lang_code', 1, 'https://ror.org/0587xtk95 Kalite Sistem Group (Turkey)'),
(29075, 'https://ror.org/0371kdw96', 'en', 1, 'https://ror.org/0371kdw96 The Liverpool Institute for Performing Arts'),
(29076, 'https://ror.org/00ejeex29', 'en', 1, 'https://ror.org/00ejeex29 Institute of Physical-Chemical and Biological Problems in Soil Science Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физико-химических Šø биологических проблем ŠæŠ¾Ń‡Š²Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(29077, 'https://ror.org/04cn82p68', 'no_lang_code', 1, 'https://ror.org/04cn82p68 Manning Diversified Forest Products (Canada)'),
(29078, 'https://ror.org/053jbrv80', 'en', 1, 'https://ror.org/053jbrv80 Manitoba Forage Seed Association'),
(29079, 'https://ror.org/011pv9p44', 'en', 1, 'https://ror.org/011pv9p44 Kootenay Association for Science & Technology'),
(29080, 'https://ror.org/03hq8dt79', 'no_lang_code', 1, 'https://ror.org/03hq8dt79 Materium Innovations (Canada)'),
(29081, 'https://ror.org/05gzybf15', 'en', 1, 'https://ror.org/05gzybf15 Lake Huron & Elgin Area Primary Water Supply Systems'),
(29082, 'https://ror.org/05w5dvb13', 'no_lang_code', 1, 'https://ror.org/05w5dvb13 General Society of Surveillance SGS (Canada)'),
(29083, 'https://ror.org/0236x7636', 'no_lang_code', 1, 'https://ror.org/0236x7636 KBL Group International (United States)'),
(29084, 'https://ror.org/031yy4354', 'no_lang_code', 1, 'https://ror.org/031yy4354 MediWiSe (United Kingdom)'),
(29085, 'https://ror.org/023egja51', 'no_lang_code', 1, 'https://ror.org/023egja51 Lyndon Fish Hatcheries'),
(29086, 'https://ror.org/04za2jd50', 'no_lang_code', 1, 'https://ror.org/04za2jd50 Mabarex (Canada)'),
(29087, 'https://ror.org/00texw081', 'no_lang_code', 1, 'https://ror.org/00texw081 Magellium (United Kingdom)'),
(29088, 'https://ror.org/04w25gn33', 'no_lang_code', 1, 'https://ror.org/04w25gn33 Lambert Peat Moss (Canada)'),
(29089, 'https://ror.org/03f4rhz75', 'no_lang_code', 1, 'https://ror.org/03f4rhz75 Metamaterial Technologies (Canada)'),
(29090, 'https://ror.org/04sbdgk59', 'no_lang_code', 1, 'https://ror.org/04sbdgk59 Medicyte (Germany)'),
(29091, 'https://ror.org/0092sq867', 'no_lang_code', 1, 'https://ror.org/0092sq867 MAHLE Filter Systems (Canada)'),
(29092, 'https://ror.org/03338g593', 'no_lang_code', 1, 'https://ror.org/03338g593 Lamda Technology (Greece)'),
(29093, 'https://ror.org/02pscrx27', 'no_lang_code', 1, 'https://ror.org/02pscrx27 Karolinska Development (Sweden)'),
(29094, 'https://ror.org/01jjrt576', 'no_lang_code', 1, 'https://ror.org/01jjrt576 Sun Gro Horticulture (Canada)'),
(29095, 'https://ror.org/04wxx2b44', 'no_lang_code', 1, 'https://ror.org/04wxx2b44 Maibec (Canada)'),
(29096, 'https://ror.org/059b4v909', 'en', 1, 'https://ror.org/059b4v909 Michigan Manufacturing Technology Center'),
(29097, 'https://ror.org/00cxa0895', 'no_lang_code', 1, 'https://ror.org/00cxa0895 InterDigital (Canada)'),
(29098, 'https://ror.org/00hw5ad77', 'no_lang_code', 1, 'https://ror.org/00hw5ad77 Cermaq (Canada)'),
(29099, 'https://ror.org/02y751y19', 'no_lang_code', 1, 'https://ror.org/02y751y19 Kellogg''s (Canada)'),
(29100, 'https://ror.org/043r2f182', 'no_lang_code', 1, 'https://ror.org/043r2f182 IDEAconsult'),
(29101, 'https://ror.org/01bzmx018', 'no_lang_code', 1, 'https://ror.org/01bzmx018 Morgan Solar (Canada)'),
(29102, 'https://ror.org/01mwnwc77', 'en', 1, 'https://ror.org/01mwnwc77 Manchester Art Gallery'),
(29103, 'https://ror.org/05391qc94', 'en', 1, 'https://ror.org/05391qc94 National Coal Mining Museum for England'),
(29104, 'https://ror.org/01gdspj25', 'en', 1, 'https://ror.org/01gdspj25 Manitoba Canola Growers Association'),
(29105, 'https://ror.org/04k09rt14', 'en', 1, 'https://ror.org/04k09rt14 National Council on Aging'),
(29106, 'https://ror.org/036g4a137', 'en', 1, 'https://ror.org/036g4a137 Manitoba Aerospace Association'),
(29107, 'https://ror.org/05b0j5x36', 'en', 1, 'https://ror.org/05b0j5x36 Mother and Infant Research Activities'),
(29108, 'https://ror.org/008yned87', 'en', 1, 'https://ror.org/008yned87 National Farmers Union'),
(29109, 'https://ror.org/01c7dcx25', 'no_lang_code', 1, 'https://ror.org/01c7dcx25 Motion Metrics International (Canada)'),
(29110, 'https://ror.org/041y97z83', 'no_lang_code', 1, 'https://ror.org/041y97z83 Mike Wiegele Helicopter Skiing (Canada)'),
(29111, 'https://ror.org/05ev63k17', 'no_lang_code', 1, 'https://ror.org/05ev63k17 Mikro-Tek (Canada)'),
(29112, 'https://ror.org/02byc7177', 'no_lang_code', 1, 'https://ror.org/02byc7177 Motor Design (United Kingdom)'),
(29113, 'https://ror.org/038qb7y28', 'no_lang_code', 1, 'https://ror.org/038qb7y28 Millar Western (Canada)'),
(29114, 'https://ror.org/047zhzq42', 'no_lang_code', 1, 'https://ror.org/047zhzq42 Motorola (Canada)'),
(29115, 'https://ror.org/02fp2rz53', 'en', 1, 'https://ror.org/02fp2rz53 New Hampshire Farm Museum'),
(29116, 'https://ror.org/0540t6b85', 'no_lang_code', 1, 'https://ror.org/0540t6b85 Metaara Medical Technologies (Canada)'),
(29117, 'https://ror.org/02bck4b72', 'no_lang_code', 1, 'https://ror.org/02bck4b72 AMT Die Casting (Canada) Moulage sous pression AMT'),
(29118, 'https://ror.org/026p72y65', 'no_lang_code', 1, 'https://ror.org/026p72y65 Material (Belgium)'),
(29119, 'https://ror.org/002fy4y97', 'no_lang_code', 1, 'https://ror.org/002fy4y97 Metso (Canada)'),
(29120, 'https://ror.org/02zqq5p14', 'no_lang_code', 1, 'https://ror.org/02zqq5p14 Michelin (Canada)'),
(29121, 'https://ror.org/05b85tk06', 'no_lang_code', 1, 'https://ror.org/05b85tk06 Microcide (United States)'),
(29122, 'https://ror.org/050d4yq46', 'fr', 1, 'https://ror.org/050d4yq46 Desjardins Mouvement des caisses Desjardins'),
(29123, 'https://ror.org/05ftq9h16', 'no_lang_code', 1, 'https://ror.org/05ftq9h16 Micromolding Solutions (Canada)'),
(29124, 'https://ror.org/01rm6ad42', 'no_lang_code', 1, 'https://ror.org/01rm6ad42 Nalcor Energy (Canada)'),
(29125, 'https://ror.org/0553q3w79', 'en', 1, 'https://ror.org/0553q3w79 National Society for the Prevention of Cruelty to Children'),
(29126, 'https://ror.org/01mqvzc02', 'en', 1, 'https://ror.org/01mqvzc02 Newfoundland Aquaculture Industry Association'),
(29127, 'https://ror.org/023s10w93', 'en', 1, 'https://ror.org/023s10w93 Ministry of Sustainable Development, Environment and the Fight against Climate Change'),
(29128, 'https://ror.org/04ww0w091', 'no_lang_code', 1, 'https://ror.org/04ww0w091 Microsoft (India)'),
(29129, 'https://ror.org/04j4a6x59', 'en', 1, 'https://ror.org/04j4a6x59 MRC Lifecourse Epidemiology Unit'),
(29130, 'https://ror.org/03mp67a46', 'en', 1, 'https://ror.org/03mp67a46 Centre des Technologies du Gaz Naturel Natural Gas Technologies Centre'),
(29131, 'https://ror.org/01zg1tt02', 'en', 1, 'https://ror.org/01zg1tt02 MRC Protein Phosphorylation and Ubiquitylation Unit'),
(29132, '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'),
(29133, 'https://ror.org/057qbe640', 'en', 1, 'https://ror.org/057qbe640 Southern Regional Assembly'),
(29134, 'https://ror.org/05fp2zb41', 'en', 1, 'https://ror.org/05fp2zb41 Midwest Biomedical Research Foundation'),
(29135, 'https://ror.org/0168eqd84', 'no_lang_code', 1, 'https://ror.org/0168eqd84 North American Construction Group (Canada)'),
(29136, 'https://ror.org/03v6x9115', 'en', 1, 'https://ror.org/03v6x9115 Ministry of Health and Public Hygiene'),
(29137, 'https://ror.org/05503d050', 'en', 1, 'https://ror.org/05503d050 Ministry of the Interior of the Republic of Latvia'),
(29138, 'https://ror.org/05rbrm011', 'no_lang_code', 1, 'https://ror.org/05rbrm011 Multimatic (Canada)'),
(29139, 'https://ror.org/00x3xyg66', 'en', 1, 'https://ror.org/00x3xyg66 North Staffordshire Clinical Commissioning Group'),
(29140, 'https://ror.org/01tmp3s87', 'no_lang_code', 1, 'https://ror.org/01tmp3s87 ModuleWorks (Romania)'),
(29141, 'https://ror.org/003b9xn19', 'no_lang_code', 1, 'https://ror.org/003b9xn19 Neptec Design Group (Canada)'),
(29142, 'https://ror.org/000nz1091', 'no_lang_code', 1, 'https://ror.org/000nz1091 Modine Manufacturing (United States)'),
(29143, 'https://ror.org/0199b8691', 'no_lang_code', 1, 'https://ror.org/0199b8691 NestlƩ (Canada)'),
(29144, 'https://ror.org/01gpy1v41', 'no_lang_code', 1, 'https://ror.org/01gpy1v41 ExxonMobil (Canada)'),
(29145, 'https://ror.org/00dz87637', 'no_lang_code', 1, 'https://ror.org/00dz87637 Nexterra (Canada)'),
(29146, 'https://ror.org/01gfeyd95', 'en', 1, 'https://ror.org/01gfeyd95 Northumbria Healthcare NHS Foundation Trust'),
(29147, 'https://ror.org/04ez3hr33', 'en', 1, 'https://ror.org/04ez3hr33 Athens City'),
(29148, 'https://ror.org/03kq24308', 'en', 1, 'https://ror.org/03kq24308 NHS Ayrshire and Arran'),
(29149, 'https://ror.org/00j4a0m56', 'no_lang_code', 1, 'https://ror.org/00j4a0m56 Mistik Management (Canada)'),
(29150, 'https://ror.org/0031n1577', 'en', 1, 'https://ror.org/0031n1577 Leeds Arts University'),
(29151, 'https://ror.org/001vezc41', 'en', 1, 'https://ror.org/001vezc41 Administration rƩgionale Kativik Kativik Regional Government'),
(29152, 'https://ror.org/023h32w18', 'no_lang_code', 1, 'https://ror.org/023h32w18 McLaren Honda (United Kingdom)'),
(29153, 'https://ror.org/00bw19968', 'en', 1, 'https://ror.org/00bw19968 Molly Brown House Museum'),
(29154, 'https://ror.org/03n8at419', 'no_lang_code', 1, 'https://ror.org/03n8at419 Monitor Coatings (United Kingdom)'),
(29155, 'https://ror.org/011ye7p58', 'en', 1, 'https://ror.org/011ye7p58 NHS Education for Scotland'),
(29156, 'https://ror.org/02q2m1930', 'no_lang_code', 1, 'https://ror.org/02q2m1930 Monsanto (Canada)'),
(29157, 'https://ror.org/049prb569', 'en', 1, 'https://ror.org/049prb569 NHS Lanarkshire'),
(29158, 'https://ror.org/01r49ds17', 'en', 1, 'https://ror.org/01r49ds17 Nova Scotia Department of Agriculture'),
(29159, 'https://ror.org/02f9pmn17', 'no_lang_code', 1, 'https://ror.org/02f9pmn17 Gibson Energy (Canada)'),
(29160, 'https://ror.org/02r8axs93', 'no_lang_code', 1, 'https://ror.org/02r8axs93 NeuroRx Research (Canada)'),
(29161, 'https://ror.org/05at2ry89', 'en', 1, 'https://ror.org/05at2ry89 Nichols House Museum'),
(29162, 'https://ror.org/009yzbm74', 'en', 1, 'https://ror.org/009yzbm74 Office of Gas and Electricity Markets'),
(29163, 'https://ror.org/01hkbh902', 'en', 1, 'https://ror.org/01hkbh902 Scottish Rite Masonic Museum and Library'),
(29164, 'https://ror.org/016y8yf14', 'no_lang_code', 1, 'https://ror.org/016y8yf14 OLA Display (Canada)'),
(29165, 'https://ror.org/055w1jz52', 'no_lang_code', 1, 'https://ror.org/055w1jz52 Sosei Group Corporation (United Kingdom)'),
(29166, 'https://ror.org/02jsxtf08', 'no_lang_code', 1, 'https://ror.org/02jsxtf08 Pacific Street Films (United States)'),
(29167, 'https://ror.org/00shj4079', 'no_lang_code', 1, 'https://ror.org/00shj4079 Noveltis (France)'),
(29168, 'https://ror.org/05y5f7345', 'en', 1, 'https://ror.org/05y5f7345 Oxfordshire Clinical Commissioning Group'),
(29169, 'https://ror.org/04rvgdt43', 'no_lang_code', 1, 'https://ror.org/04rvgdt43 NquiringMinds (United Kingdom)'),
(29170, 'https://ror.org/00bgn4761', 'no_lang_code', 1, 'https://ror.org/00bgn4761 MW Canada (Canada)'),
(29171, 'https://ror.org/03snw9541', 'no_lang_code', 1, 'https://ror.org/03snw9541 Pageau Morel and Associates (Canada)'),
(29172, 'https://ror.org/00wjr1b41', 'no_lang_code', 1, 'https://ror.org/00wjr1b41 Nu-Tech Precision Metals (Canada)'),
(29173, 'https://ror.org/04xf33703', 'no_lang_code', 1, 'https://ror.org/04xf33703 Nalco (Canada)'),
(29174, 'https://ror.org/02m14pj94', 'no_lang_code', 1, 'https://ror.org/02m14pj94 Palcan Energy Corporation (Canada)'),
(29175, 'https://ror.org/04gswc637', 'no_lang_code', 1, 'https://ror.org/04gswc637 STR Europe (France)'),
(29176, 'https://ror.org/04830x266', 'en', 1, 'https://ror.org/04830x266 Paracel Laboratories'),
(29177, 'https://ror.org/051eek848', 'no_lang_code', 1, 'https://ror.org/051eek848 Paradigm Productions (United States)'),
(29178, 'https://ror.org/033zd2x30', 'no_lang_code', 1, 'https://ror.org/033zd2x30 O/E Land (Canada)'),
(29179, 'https://ror.org/05t2esn81', 'no_lang_code', 1, 'https://ror.org/05t2esn81 ParetoLogic (Canada)'),
(29180, 'https://ror.org/0530w0388', 'no_lang_code', 1, 'https://ror.org/0530w0388 Object Research Systems (Canada)'),
(29181, 'https://ror.org/008s0t457', 'no_lang_code', 1, 'https://ror.org/008s0t457 Nokia (Canada)'),
(29182, 'https://ror.org/00zzaq393', 'no_lang_code', 1, 'https://ror.org/00zzaq393 Ocean Power Technologies (United Kingdom)'),
(29183, 'https://ror.org/04ssneh08', 'no_lang_code', 1, 'https://ror.org/04ssneh08 Parrheim Foods (Canada)'),
(29184, 'https://ror.org/05d1yjv69', 'no_lang_code', 1, 'https://ror.org/05d1yjv69 InnoVactiv (Canada)'),
(29185, 'https://ror.org/01kv42962', 'en', 1, 'https://ror.org/01kv42962 Asparagus Farmers of Ontario'),
(29186, 'https://ror.org/05ttfpv30', 'en', 1, 'https://ror.org/05ttfpv30 Ontario Bean Growers'),
(29187, 'https://ror.org/02ga6ke46', 'en', 1, 'https://ror.org/02ga6ke46 Parteq Innovations (Canada)'),
(29188, 'https://ror.org/01e5ksw89', 'en', 1, 'https://ror.org/01e5ksw89 Ontario Clean Water Agency'),
(29189, 'https://ror.org/03400ft78', 'en', 1, 'https://ror.org/03400ft78 Norfolk and Suffolk NHS Foundation Trust'),
(29190, 'https://ror.org/02t0nms65', 'no_lang_code', 1, 'https://ror.org/02t0nms65 Novozymes (Canada)'),
(29191, 'https://ror.org/01yqb3s19', 'en', 1, 'https://ror.org/01yqb3s19 Ontario Commercial Fisheries'' Association'),
(29192, 'https://ror.org/02031zf96', 'en', 1, 'https://ror.org/02031zf96 Particle Data Group'),
(29193, 'https://ror.org/050pyja33', 'no_lang_code', 1, 'https://ror.org/050pyja33 Phoenix Canada Oil Company (Canada)'),
(29194, 'https://ror.org/05krx3x83', 'en', 1, 'https://ror.org/05krx3x83 Ontario Dairy Council'),
(29195, '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'),
(29196, 'https://ror.org/04yrdyp94', 'no_lang_code', 1, 'https://ror.org/04yrdyp94 Quantic EMC (Canada)'),
(29197, 'https://ror.org/03e7ywm06', 'no_lang_code', 1, 'https://ror.org/03e7ywm06 Magnus Chemicals (Canada) Produits Chimiques Magnus'),
(29198, 'https://ror.org/04gqzc140', 'no_lang_code', 1, 'https://ror.org/04gqzc140 Paton (Canada)'),
(29199, 'https://ror.org/002n46c33', 'no_lang_code', 1, 'https://ror.org/002n46c33 Olin (Canada)'),
(29200, 'https://ror.org/00c4zhw53', 'en', 1, 'https://ror.org/00c4zhw53 Open Group'),
(29201, 'https://ror.org/00hjkzk85', 'no_lang_code', 1, 'https://ror.org/00hjkzk85 Open Text (Canada)'),
(29202, 'https://ror.org/04vpw9y87', 'no_lang_code', 1, 'https://ror.org/04vpw9y87 PCL Construction (Canada)'),
(29203, 'https://ror.org/0003gmg65', 'no_lang_code', 1, 'https://ror.org/0003gmg65 Osaka Gas (United States)'),
(29204, 'https://ror.org/03w6wcs90', 'no_lang_code', 1, 'https://ror.org/03w6wcs90 Quattriuum (Canada)'),
(29205, 'https://ror.org/03gsrqx39', 'no_lang_code', 1, 'https://ror.org/03gsrqx39 Premium Brands Holdings (Canada)'),
(29206, 'https://ror.org/053pbaz76', 'no_lang_code', 1, 'https://ror.org/053pbaz76 RPC Bebo (United Kingdom)'),
(29207, 'https://ror.org/05ae2mx22', 'no_lang_code', 1, 'https://ror.org/05ae2mx22 Opsun Technologies (Canada)'),
(29208, 'https://ror.org/0046st885', 'no_lang_code', 1, 'https://ror.org/0046st885 Ortelio (United Kingdom)'),
(29209, 'https://ror.org/01szhjj90', 'no_lang_code', 1, 'https://ror.org/01szhjj90 Xebec (Canada)'),
(29210, 'https://ror.org/04anrg987', 'en', 1, 'https://ror.org/04anrg987 Plimoth Plantation'),
(29211, 'https://ror.org/04yxhmf18', 'en', 1, 'https://ror.org/04yxhmf18 Poets House'),
(29212, 'https://ror.org/01fda9e47', 'no_lang_code', 1, 'https://ror.org/01fda9e47 Prolysis (United Kingdom)'),
(29213, 'https://ror.org/03kqv8w58', 'no_lang_code', 1, 'https://ror.org/03kqv8w58 Peregrine Diamonds (Canada)'),
(29214, 'https://ror.org/047j0y804', 'no_lang_code', 1, 'https://ror.org/047j0y804 Radiant Genomics (United States)'),
(29215, 'https://ror.org/0219rxc78', 'no_lang_code', 1, 'https://ror.org/0219rxc78 Polisilk (Spain)'),
(29216, 'https://ror.org/00jx5ax65', 'no_lang_code', 1, 'https://ror.org/00jx5ax65 Osemi (Canada)'),
(29217, 'https://ror.org/00x3ywr72', 'no_lang_code', 1, 'https://ror.org/00x3ywr72 Ostara Nutrient Recovery Technologies (Canada)'),
(29218, 'https://ror.org/02p0fq023', 'no_lang_code', 1, 'https://ror.org/02p0fq023 Prompt (Canada)'),
(29219, 'https://ror.org/016znkc94', 'no_lang_code', 1, 'https://ror.org/016znkc94 Rainford Precision (United Kingdom)'),
(29220, 'https://ror.org/00p82qb91', 'no_lang_code', 1, 'https://ror.org/00p82qb91 Polymer Research Technologies (Canada)'),
(29221, 'https://ror.org/02z95aw27', 'no_lang_code', 1, 'https://ror.org/02z95aw27 Peterborough Utilities Service (Canada)'),
(29222, 'https://ror.org/03yc06y43', 'no_lang_code', 1, 'https://ror.org/03yc06y43 Petrel Robertson Consulting (Canada)'),
(29223, 'https://ror.org/0565gth98', 'fr', 1, 'https://ror.org/0565gth98 Ouranos'),
(29224, 'https://ror.org/020bmkg54', 'no_lang_code', 1, 'https://ror.org/020bmkg54 Outotec (Canada)'),
(29225, 'https://ror.org/01c1aet04', 'no_lang_code', 1, 'https://ror.org/01c1aet04 OSI Systems (United Kingdom)'),
(29226, 'https://ror.org/056nspe91', 'en', 1, 'https://ror.org/056nspe91 Federation of the Food and Drink Industries of the Czech Republic'),
(29227, 'https://ror.org/0322ccw15', 'no_lang_code', 1, 'https://ror.org/0322ccw15 Prototek (United States)'),
(29228, 'https://ror.org/001yh3598', 'no_lang_code', 1, 'https://ror.org/001yh3598 Linde (Canada)'),
(29229, 'https://ror.org/02tn54y74', 'no_lang_code', 1, 'https://ror.org/02tn54y74 Read Jones Christoffersen (Canada)'),
(29230, 'https://ror.org/0007mw271', 'no_lang_code', 1, 'https://ror.org/0007mw271 Pacific Safety Products (Canada)'),
(29231, 'https://ror.org/00thz8j39', 'no_lang_code', 1, 'https://ror.org/00thz8j39 Gleason (Italy)'),
(29232, 'https://ror.org/02x3pxw11', 'no_lang_code', 1, 'https://ror.org/02x3pxw11 Precision Varionic International (United Kingdom)'),
(29233, 'https://ror.org/05m2de985', 'no_lang_code', 1, 'https://ror.org/05m2de985 Exchange Income (Canada)'),
(29234, 'https://ror.org/01jvd8304', 'en', 1, 'https://ror.org/01jvd8304 Provincial Health Services Authority'),
(29235, 'https://ror.org/0245w0f92', 'no_lang_code', 1, 'https://ror.org/0245w0f92 Phantom Design (United States)'),
(29236, 'https://ror.org/01v67s579', 'no_lang_code', 1, 'https://ror.org/01v67s579 Natrix Separations (Canada)'),
(29237, 'https://ror.org/01qynr066', 'en', 1, 'https://ror.org/01qynr066 Red Cliff Band of Lake Superior Chippewa'),
(29238, 'https://ror.org/0099f7q64', 'no_lang_code', 1, 'https://ror.org/0099f7q64 Phillips 66 (United States)'),
(29239, 'https://ror.org/00rvf1k93', 'no_lang_code', 1, 'https://ror.org/00rvf1k93 Upsher-Smith Laboratories (United States)'),
(29240, 'https://ror.org/03jkv2r60', 'no_lang_code', 1, 'https://ror.org/03jkv2r60 Pressure BioSciences (United States)'),
(29241, 'https://ror.org/046ejs207', 'no_lang_code', 1, 'https://ror.org/046ejs207 Red Ninja (United Kingdom)'),
(29242, 'https://ror.org/007jk3r28', 'no_lang_code', 1, 'https://ror.org/007jk3r28 Presteve Foods (Canada)'),
(29243, 'https://ror.org/050w3c487', 'no_lang_code', 1, 'https://ror.org/050w3c487 RedBite (United Kingdom)'),
(29244, 'https://ror.org/03vcepm09', 'no_lang_code', 1, 'https://ror.org/03vcepm09 Rosstech Signals (Canada)'),
(29245, 'https://ror.org/039kp3w51', 'no_lang_code', 1, 'https://ror.org/039kp3w51 Rotite Technologies (United Kingdom)'),
(29246, 'https://ror.org/04qjz4x37', 'en', 1, 'https://ror.org/04qjz4x37 Redcar and Cleveland Borough Council'),
(29247, 'https://ror.org/007hq6h29', 'en', 1, 'https://ror.org/007hq6h29 Quebec Intensive Silviculture Network RƩseau Ligniculture QuƩbec'),
(29248, 'https://ror.org/02dfarm97', 'it', 1, 'https://ror.org/02dfarm97 Procoat'),
(29249, 'https://ror.org/00rs1n196', 'no_lang_code', 1, 'https://ror.org/00rs1n196 Restek (United States)'),
(29250, 'https://ror.org/02hj7hh93', 'no_lang_code', 1, 'https://ror.org/02hj7hh93 Schneider Electric (Canada)'),
(29251, 'https://ror.org/036c4jb90', 'en', 1, 'https://ror.org/036c4jb90 Royal Air Force Museum'),
(29252, 'https://ror.org/048r9g705', 'en', 1, 'https://ror.org/048r9g705 Royal Albert Memorial Museum'),
(29253, 'https://ror.org/04dvghk72', 'no_lang_code', 1, 'https://ror.org/04dvghk72 Wireless 2000 RF & UWB Technologies (Canada)'),
(29254, 'https://ror.org/01q8h4282', 'en', 1, 'https://ror.org/01q8h4282 Regional Council in Kalmar County'),
(29255, 'https://ror.org/02dr9de73', 'no_lang_code', 1, 'https://ror.org/02dr9de73 Brantford Energy (Canada)'),
(29256, 'https://ror.org/04gg6xa16', 'no_lang_code', 1, 'https://ror.org/04gg6xa16 Monnaie royale canadienne Royal Canadian Mint (Canada)'),
(29257, 'https://ror.org/03bnsxq66', 'en', 1, 'https://ror.org/03bnsxq66 Public Works and Government Services Canada Travaux publics et Services gouvernementaux Canada'),
(29258, 'https://ror.org/04vgqqp29', 'en', 1, 'https://ror.org/04vgqqp29 Gendarmerie royale du Canada Royal Canadian Mounted Police'),
(29259, 'https://ror.org/02q5vez72', 'no_lang_code', 1, 'https://ror.org/02q5vez72 Schwarzwaldmilch Freiburg (Germany)'),
(29260, 'https://ror.org/01gdbf303', 'en', 1, 'https://ror.org/01gdbf303 Royal College of General Practitioners'),
(29261, 'https://ror.org/03wn6yq26', 'no_lang_code', 1, 'https://ror.org/03wn6yq26 Relay Software (United Kingdom)'),
(29262, 'https://ror.org/00sjtsn56', 'no_lang_code', 1, 'https://ror.org/00sjtsn56 Pulse Energy (New Zealand)'),
(29263, 'https://ror.org/030wt4r64', 'no_lang_code', 1, 'https://ror.org/030wt4r64 Sci-Tec (United States)'),
(29264, 'https://ror.org/03kx2pj14', 'en', 1, 'https://ror.org/03kx2pj14 Royal Society of Edinburgh'),
(29265, 'https://ror.org/011400c72', 'no_lang_code', 1, 'https://ror.org/011400c72 Purelink (Canada)'),
(29266, 'https://ror.org/02dcjej90', 'no_lang_code', 1, 'https://ror.org/02dcjej90 RTDS Technologies (Canada)'),
(29267, 'https://ror.org/04rtm4g41', 'no_lang_code', 1, 'https://ror.org/04rtm4g41 PV3 Technologies (United Kingdom)'),
(29268, 'https://ror.org/048116458', 'en', 1, 'https://ror.org/048116458 Department of Transportation, Infrastructure and Energy'),
(29269, 'https://ror.org/00seqvw16', 'no_lang_code', 1, 'https://ror.org/00seqvw16 Replify (United Kingdom)'),
(29270, 'https://ror.org/04qk3p464', 'no_lang_code', 1, 'https://ror.org/04qk3p464 PVOH Polymers (United Kingdom)'),
(29271, 'https://ror.org/04h2sqw81', 'no_lang_code', 1, 'https://ror.org/04h2sqw81 Aguettant (France)'),
(29272, 'https://ror.org/04rc4nw15', 'no_lang_code', 1, 'https://ror.org/04rc4nw15 Enseco Energy Services (Canada)'),
(29273, 'https://ror.org/03t61s708', 'en', 1, 'https://ror.org/03t61s708 Parliament of United Kingdom TÅ·''r Arglwyddi'),
(29274, 'https://ror.org/05cn4v910', 'en', 1, 'https://ror.org/05cn4v910 Sheffield Health and Social Care NHS Foundation Trust'),
(29275, 'https://ror.org/05tvcyg29', 'en', 1, 'https://ror.org/05tvcyg29 Government of Manitoba'),
(29276, 'https://ror.org/05k969473', 'en', 1, 'https://ror.org/05k969473 Sheldon Museum and Cultural Center'),
(29277, 'https://ror.org/02wk8wx53', 'en', 1, 'https://ror.org/02wk8wx53 Gouvernement du Nouveau-Brunswick Government of New Brunswick'),
(29278, 'https://ror.org/018723a84', 'no_lang_code', 1, 'https://ror.org/018723a84 Qpoint Composite (Germany)'),
(29279, 'https://ror.org/05bp6d935', 'no_lang_code', 1, 'https://ror.org/05bp6d935 Sealite (United States)'),
(29280, 'https://ror.org/02mp0vf47', 'en', 1, 'https://ror.org/02mp0vf47 National Cancer Research Institute'),
(29281, 'https://ror.org/03pty3341', 'no_lang_code', 1, 'https://ror.org/03pty3341 QPS Photronics (Canada)'),
(29282, 'https://ror.org/03811dk14', 'no_lang_code', 1, 'https://ror.org/03811dk14 Sherritt (Canada)'),
(29283, 'https://ror.org/01pn5vj05', 'no_lang_code', 1, 'https://ror.org/01pn5vj05 Search-Lab (Hungary)');
INSERT INTO `rors` VALUES
(29284, 'https://ror.org/00q534t73', 'no_lang_code', 1, 'https://ror.org/00q534t73 SeCan (Canada)'),
(29285, 'https://ror.org/02bssr922', 'no_lang_code', 1, 'https://ror.org/02bssr922 Shoestring Press (United States)'),
(29286, 'https://ror.org/01fn80642', 'no_lang_code', 1, 'https://ror.org/01fn80642 PepsiCo (Canada)'),
(29287, 'https://ror.org/05anqp385', 'en', 1, 'https://ror.org/05anqp385 Seeper'),
(29288, 'https://ror.org/04ch2gv47', 'en', 1, 'https://ror.org/04ch2gv47 Government of Saskatchewan'),
(29289, 'https://ror.org/04c2kcw65', 'no_lang_code', 1, 'https://ror.org/04c2kcw65 Seibersdorf Laboratories (Austria)'),
(29290, 'https://ror.org/02ae31880', 'no_lang_code', 1, 'https://ror.org/02ae31880 Qualcomm (Canada)'),
(29291, 'https://ror.org/01ent8r08', 'no_lang_code', 1, 'https://ror.org/01ent8r08 Castolin Eutectic (United Kingdom)'),
(29292, 'https://ror.org/025jhd967', 'no_lang_code', 1, 'https://ror.org/025jhd967 Systems, Applications & Products in Data Processing (Canada)'),
(29293, 'https://ror.org/012daz151', 'en', 1, 'https://ror.org/012daz151 Government of The Gambia'),
(29294, 'https://ror.org/01nh4s312', 'en', 1, 'https://ror.org/01nh4s312 Government of Slovakia'),
(29295, 'https://ror.org/01g9ye888', 'no_lang_code', 1, 'https://ror.org/01g9ye888 Toray International Europe (Germany)'),
(29296, 'https://ror.org/05qcvcp08', 'no_lang_code', 1, 'https://ror.org/05qcvcp08 Sika (Canada)'),
(29297, 'https://ror.org/03at87b18', 'en', 1, 'https://ror.org/03at87b18 Saskatchewan Pork Development Board'),
(29298, 'https://ror.org/04vyqcg16', 'no_lang_code', 1, 'https://ror.org/04vyqcg16 Somfy (Canada)'),
(29299, 'https://ror.org/00dqs9848', 'no_lang_code', 1, 'https://ror.org/00dqs9848 Sensor Development (United States)'),
(29300, 'https://ror.org/00f1fk963', 'no_lang_code', 1, 'https://ror.org/00f1fk963 Servier (Canada)'),
(29301, 'https://ror.org/05mffvf70', 'no_lang_code', 1, 'https://ror.org/05mffvf70 SiliconPro (Canada)'),
(29302, 'https://ror.org/05npdkv31', 'no_lang_code', 1, 'https://ror.org/05npdkv31 Sonaca (Canada)'),
(29303, 'https://ror.org/01aktk249', 'en', 1, 'https://ror.org/01aktk249 Seven'),
(29304, 'https://ror.org/01wg5gq86', 'no_lang_code', 1, 'https://ror.org/01wg5gq86 Simplot (United States)'),
(29305, 'https://ror.org/04jvq2733', 'no_lang_code', 1, 'https://ror.org/04jvq2733 Soquem (Canada)'),
(29306, 'https://ror.org/02qm4q539', 'no_lang_code', 1, 'https://ror.org/02qm4q539 Rockwell Automation (Canada)'),
(29307, 'https://ror.org/0567fxj77', 'no_lang_code', 1, 'https://ror.org/0567fxj77 Hog Administrative Marketing Services (Canada)'),
(29308, 'https://ror.org/032bte841', 'no_lang_code', 1, 'https://ror.org/032bte841 Rogers Communications (Canada)'),
(29309, 'https://ror.org/02jc9yx83', 'no_lang_code', 1, 'https://ror.org/02jc9yx83 Hendrix Genetics (Canada)'),
(29310, 'https://ror.org/0548bd853', 'no_lang_code', 1, 'https://ror.org/0548bd853 Roli (United Kingdom)'),
(29311, 'https://ror.org/025v1gy78', 'no_lang_code', 1, 'https://ror.org/025v1gy78 Crown Investments Corporation (Canada)'),
(29312, 'https://ror.org/02y2gng66', 'en', 1, 'https://ror.org/02y2gng66 Save the Children'),
(29313, 'https://ror.org/04c767n32', 'en', 1, 'https://ror.org/04c767n32 Southern Regional Council'),
(29314, 'https://ror.org/01jn0jb26', 'no_lang_code', 1, 'https://ror.org/01jn0jb26 Colas (Canada)'),
(29315, 'https://ror.org/001b82544', 'no_lang_code', 1, 'https://ror.org/001b82544 Sovar (Canada)'),
(29316, 'https://ror.org/03ks2qn81', 'no_lang_code', 1, 'https://ror.org/03ks2qn81 Sioen Industries (Belgium)'),
(29317, 'https://ror.org/0572j2882', 'no_lang_code', 1, 'https://ror.org/0572j2882 Schlumberger (Canada)'),
(29318, 'https://ror.org/04gtbbw62', 'no_lang_code', 1, 'https://ror.org/04gtbbw62 Equinor (Canada)'),
(29319, 'https://ror.org/02akadd86', 'no_lang_code', 1, 'https://ror.org/02akadd86 Stedfast (Canada)'),
(29320, 'https://ror.org/047406z28', 'no_lang_code', 1, 'https://ror.org/047406z28 RHI Magnesita (Canada)'),
(29321, 'https://ror.org/04kevy945', 'no_lang_code', 1, 'https://ror.org/04kevy945 Tecnologie Avanzate (Italy)'),
(29322, 'https://ror.org/04q8pt676', 'no_lang_code', 1, 'https://ror.org/04q8pt676 Tecrea (United Kingdom)'),
(29323, 'https://ror.org/03zefh326', 'no_lang_code', 1, 'https://ror.org/03zefh326 Siva (Italy)'),
(29324, 'https://ror.org/04xya2p21', 'no_lang_code', 1, 'https://ror.org/04xya2p21 ATS Automation Tooling Systems (United States)'),
(29325, 'https://ror.org/00gnm3617', 'en', 1, 'https://ror.org/00gnm3617 Skeena Fisheries Commission'),
(29326, 'https://ror.org/040vbkv27', 'no_lang_code', 1, 'https://ror.org/040vbkv27 Telus (Canada)'),
(29327, 'https://ror.org/03w8zjq15', 'en', 1, 'https://ror.org/03w8zjq15 The Audio Recording Academy'),
(29328, 'https://ror.org/00wmrqg59', 'no_lang_code', 1, 'https://ror.org/00wmrqg59 West Fraser (Canada)'),
(29329, 'https://ror.org/044awgt66', 'en', 1, 'https://ror.org/044awgt66 Joint Implementation Network'),
(29330, 'https://ror.org/03ajebt28', 'no_lang_code', 1, 'https://ror.org/03ajebt28 Smart Skin (Canada)'),
(29331, 'https://ror.org/02nd7ks20', 'no_lang_code', 1, 'https://ror.org/02nd7ks20 Schrader International (United Kingdom)'),
(29332, 'https://ror.org/0056wjq13', 'en', 1, 'https://ror.org/0056wjq13 Stone Lantern Films'),
(29333, 'https://ror.org/013qcs149', 'no_lang_code', 1, 'https://ror.org/013qcs149 Snook (United Kingdom)'),
(29334, 'https://ror.org/056z8k029', 'no_lang_code', 1, 'https://ror.org/056z8k029 SST Wireless (Canada)'),
(29335, 'https://ror.org/006bvpc76', 'no_lang_code', 1, 'https://ror.org/006bvpc76 Terahertz Technology Solutions (Canada)'),
(29336, 'https://ror.org/016qa9g64', 'en', 1, 'https://ror.org/016qa9g64 Straight Ahead Pictures'),
(29337, 'https://ror.org/00h4tvg43', 'no_lang_code', 1, 'https://ror.org/00h4tvg43 Systems Engineering and Assessment (United Kingdom)'),
(29338, 'https://ror.org/00dbz8197', 'no_lang_code', 1, 'https://ror.org/00dbz8197 Teratech Components (United Kingdom)'),
(29339, 'https://ror.org/050cwt049', 'no_lang_code', 1, 'https://ror.org/050cwt049 TeraXion (Canada)'),
(29340, 'https://ror.org/0240caq72', 'no_lang_code', 1, 'https://ror.org/0240caq72 Contship Italia (Italy)'),
(29341, 'https://ror.org/02q2gmw58', 'no_lang_code', 1, 'https://ror.org/02q2gmw58 Teshmont (Canada)'),
(29342, 'https://ror.org/031z84p26', 'no_lang_code', 1, 'https://ror.org/031z84p26 Agbar (Spain) Sociedad General de Aguas de Barcelona'),
(29343, 'https://ror.org/016s9js25', 'no_lang_code', 1, 'https://ror.org/016s9js25 Tecnologia e Ricerca Italiana (Italy)'),
(29344, 'https://ror.org/03vn7pd98', 'en', 1, 'https://ror.org/03vn7pd98 Nanotechnology Industries Association'),
(29345, 'https://ror.org/03smbm342', 'no_lang_code', 1, 'https://ror.org/03smbm342 Surgical Specialties (United States)'),
(29346, 'https://ror.org/01qdy0382', 'no_lang_code', 1, 'https://ror.org/01qdy0382 Tafisa (Canada)'),
(29347, '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'),
(29348, 'https://ror.org/001jdxs64', 'no_lang_code', 1, 'https://ror.org/001jdxs64 Stuart Olson (Canada)'),
(29349, 'https://ror.org/05c0v3585', 'no_lang_code', 1, 'https://ror.org/05c0v3585 Takeda (United Kingdom)'),
(29350, 'https://ror.org/04c31tk69', 'no_lang_code', 1, 'https://ror.org/04c31tk69 Texel (Canada)'),
(29351, 'https://ror.org/003x4qs37', 'en', 1, 'https://ror.org/003x4qs37 St. Lawrence Seaway Management'),
(29352, 'https://ror.org/00jz36n32', 'no_lang_code', 1, 'https://ror.org/00jz36n32 Miller Group (Canada)'),
(29353, 'https://ror.org/00nnd3206', 'no_lang_code', 1, 'https://ror.org/00nnd3206 Thales (Canada)'),
(29354, 'https://ror.org/03zvsh960', 'no_lang_code', 1, 'https://ror.org/03zvsh960 Oracle (Canada)'),
(29355, 'https://ror.org/03xvqgb25', 'fr', 1, 'https://ror.org/03xvqgb25 Montreal Transit Corporation SociƩtƩ de Transport de MontrƩal'),
(29356, 'https://ror.org/035m9f342', 'en', 1, 'https://ror.org/035m9f342 Beth Johnson Foundation'),
(29357, 'https://ror.org/03ww55028', 'en', 1, 'https://ror.org/03ww55028 Joint BioEnergy Institute'),
(29358, 'https://ror.org/057eesj13', 'no_lang_code', 1, 'https://ror.org/057eesj13 Shermag (Canada)'),
(29359, 'https://ror.org/05p0ja512', 'en', 1, 'https://ror.org/05p0ja512 Chemistry Industry Association of Canada'),
(29360, 'https://ror.org/02s7bp606', 'en', 1, 'https://ror.org/02s7bp606 Chartered Institute of Plumbing and Heating Engineering'),
(29361, 'https://ror.org/002famp79', 'no_lang_code', 1, 'https://ror.org/002famp79 Türk Telekom (Turkey)'),
(29362, 'https://ror.org/00yc8qw13', 'no_lang_code', 1, 'https://ror.org/00yc8qw13 Coca Cola (United States)'),
(29363, 'https://ror.org/03ym3x587', 'no_lang_code', 1, 'https://ror.org/03ym3x587 Tydock Pharma (Italy)'),
(29364, 'https://ror.org/03pdzzh36', 'no_lang_code', 1, 'https://ror.org/03pdzzh36 TYK America (United States)'),
(29365, 'https://ror.org/03336v443', 'no_lang_code', 1, 'https://ror.org/03336v443 Solana Networks (Canada)'),
(29366, 'https://ror.org/02d54v010', 'en', 1, 'https://ror.org/02d54v010 Black Sea Commission'),
(29367, 'https://ror.org/01hmp5p66', 'no_lang_code', 1, 'https://ror.org/01hmp5p66 Ubisoft (Canada)'),
(29368, 'https://ror.org/04tnbqb63', 'en', 1, 'https://ror.org/04tnbqb63 The Francis Crick Institute'),
(29369, 'https://ror.org/00xrqbp98', 'no_lang_code', 1, 'https://ror.org/00xrqbp98 Solink (Canada)'),
(29370, 'https://ror.org/034rss031', 'en', 1, 'https://ror.org/034rss031 Holstein Association of Canada'),
(29371, 'https://ror.org/02bvjeb84', 'en', 1, 'https://ror.org/02bvjeb84 Techmania Science Center'),
(29372, 'https://ror.org/01nacxm37', 'en', 1, 'https://ror.org/01nacxm37 Somerset County Council'),
(29373, 'https://ror.org/0158ck073', 'en', 1, 'https://ror.org/0158ck073 King''s Fund'),
(29374, 'https://ror.org/03659b965', 'no_lang_code', 1, 'https://ror.org/03659b965 Solinst (Canada)'),
(29375, 'https://ror.org/01q28w082', 'no_lang_code', 1, 'https://ror.org/01q28w082 Team Aquatic (Canada)'),
(29376, 'https://ror.org/02r7s3859', 'no_lang_code', 1, 'https://ror.org/02r7s3859 Vernon Seed Orchard Company (Canada)'),
(29377, 'https://ror.org/015j3sb07', 'en', 1, 'https://ror.org/015j3sb07 Sustainable Energy Authority of Ireland'),
(29378, 'https://ror.org/00tjfzj89', 'no_lang_code', 1, 'https://ror.org/00tjfzj89 Sustainable Home Survey (United Kingdom)'),
(29379, 'https://ror.org/04mwmd860', 'en', 1, 'https://ror.org/04mwmd860 SaskWater'),
(29380, 'https://ror.org/03b0bkp29', 'no_lang_code', 1, 'https://ror.org/03b0bkp29 Vicon (United States)'),
(29381, 'https://ror.org/04mwe1m14', 'en', 1, 'https://ror.org/04mwe1m14 Victim Support'),
(29382, 'https://ror.org/05fytb963', 'no_lang_code', 1, 'https://ror.org/05fytb963 Windsor Utilities Commission (Canada)'),
(29383, 'https://ror.org/04xem0k66', 'no_lang_code', 1, 'https://ror.org/04xem0k66 Vignet (United States)'),
(29384, 'https://ror.org/03pmb4h38', 'pt', 1, 'https://ror.org/03pmb4h38 Instituto Nacional de Tecnologias de Informação e Comunicação'),
(29385, 'https://ror.org/00p2jsg72', 'no_lang_code', 1, 'https://ror.org/00p2jsg72 Unilever (Canada)'),
(29386, 'https://ror.org/02b6qtv44', 'no_lang_code', 1, 'https://ror.org/02b6qtv44 Thermal Electronics (United States)'),
(29387, 'https://ror.org/04cs8dp04', 'en', 1, 'https://ror.org/04cs8dp04 West Coast Trollers Association'),
(29388, 'https://ror.org/01g0b8d40', 'no_lang_code', 1, 'https://ror.org/01g0b8d40 Trend Micro (Canada)'),
(29389, 'https://ror.org/02dxgtw53', 'no_lang_code', 1, 'https://ror.org/02dxgtw53 Unitechnologies (Switzerland)'),
(29390, 'https://ror.org/02vkwpj59', 'no_lang_code', 1, 'https://ror.org/02vkwpj59 West of England Local Enterprise Partnership (United Kingdom)'),
(29391, 'https://ror.org/038g1k790', 'en', 1, 'https://ror.org/038g1k790 Thomas Cole Historic House'),
(29392, 'https://ror.org/0233s9736', 'en', 1, 'https://ror.org/0233s9736 United Community Center'),
(29393, 'https://ror.org/046k8b628', 'en', 1, 'https://ror.org/046k8b628 United Indian Health Services'),
(29394, 'https://ror.org/028s8e034', 'no_lang_code', 1, 'https://ror.org/028s8e034 Utilities Kingston (Canada)'),
(29395, 'https://ror.org/026xacc21', 'no_lang_code', 1, 'https://ror.org/026xacc21 Thoth Technology (Canada)'),
(29396, 'https://ror.org/0327ade70', 'no_lang_code', 1, 'https://ror.org/0327ade70 Spectra Energy (Canada)'),
(29397, 'https://ror.org/01gbbz114', 'en', 1, 'https://ror.org/01gbbz114 Westcountry Rivers Trust'),
(29398, 'https://ror.org/01zbqc597', 'no_lang_code', 1, 'https://ror.org/01zbqc597 ThyssenKrupp (Italy) ThyssenKrupp Italia'),
(29399, 'https://ror.org/02x9spt42', 'no_lang_code', 1, 'https://ror.org/02x9spt42 WestGen (Canada)'),
(29400, 'https://ror.org/05ngf5n66', 'en', 1, 'https://ror.org/05ngf5n66 UNStudio'),
(29401, 'https://ror.org/03s6fxf66', 'no_lang_code', 1, 'https://ror.org/03s6fxf66 Timber Specialties (Canada)'),
(29402, 'https://ror.org/01xnpjk23', 'no_lang_code', 1, 'https://ror.org/01xnpjk23 Vanderwell Contractors (Canada)'),
(29403, 'https://ror.org/05hzpah25', 'no_lang_code', 1, 'https://ror.org/05hzpah25 TimberWest Forest (Canada)'),
(29404, 'https://ror.org/00ffka868', 'no_lang_code', 1, 'https://ror.org/00ffka868 Western Power Distribution (United Kingdom)'),
(29405, 'https://ror.org/04j48qz06', 'en', 1, 'https://ror.org/04j48qz06 VISTA Science & Technology'),
(29406, 'https://ror.org/0153e3n79', 'no_lang_code', 1, 'https://ror.org/0153e3n79 Varian Medical Systems (Canada)'),
(29407, 'https://ror.org/01fj3w057', 'no_lang_code', 1, 'https://ror.org/01fj3w057 ViTRAK Systems (Canada)'),
(29408, 'https://ror.org/01w98nb39', 'no_lang_code', 1, 'https://ror.org/01w98nb39 TM4 (Canada)'),
(29409, 'https://ror.org/01jeg6k27', 'no_lang_code', 1, 'https://ror.org/01jeg6k27 Varta Micro Innovation (Austria)'),
(29410, 'https://ror.org/0440s3562', 'no_lang_code', 1, 'https://ror.org/0440s3562 Viventia Bio (Canada)'),
(29411, 'https://ror.org/03vtm2512', 'no_lang_code', 1, 'https://ror.org/03vtm2512 TECO-Westinghouse (Canada)'),
(29412, 'https://ror.org/00xw46r83', 'no_lang_code', 1, 'https://ror.org/00xw46r83 Top Notch Building Maintenance (Canada)'),
(29413, 'https://ror.org/01j8arr96', 'no_lang_code', 1, 'https://ror.org/01j8arr96 Union Gas (Canada)'),
(29414, 'https://ror.org/04gm72267', 'no_lang_code', 1, 'https://ror.org/04gm72267 VoiceAge (Canada)'),
(29415, 'https://ror.org/033we5h36', 'no_lang_code', 1, 'https://ror.org/033we5h36 Vaxine (Australia)'),
(29416, 'https://ror.org/03pngmk68', 'no_lang_code', 1, 'https://ror.org/03pngmk68 Total (Canada)'),
(29417, 'https://ror.org/012cgww08', 'fr', 1, 'https://ror.org/012cgww08 Univalor'),
(29418, 'https://ror.org/0156t7498', 'en', 1, 'https://ror.org/0156t7498 Wildlife Habitat Canada (Canada)'),
(29419, 'https://ror.org/05j577q42', 'no_lang_code', 1, 'https://ror.org/05j577q42 Vectos (United Kingdom)'),
(29420, 'https://ror.org/04jnjav79', 'no_lang_code', 1, 'https://ror.org/04jnjav79 Vónin (Canada)'),
(29421, 'https://ror.org/05k037b50', 'en', 1, 'https://ror.org/05k037b50 Women Make Movies'),
(29422, 'https://ror.org/003sjbp72', 'no_lang_code', 1, 'https://ror.org/003sjbp72 Waiward Steel (Canada)'),
(29423, 'https://ror.org/007fycn42', 'en', 1, 'https://ror.org/007fycn42 Walkerton Clean Water Centre'),
(29424, 'https://ror.org/03wrrj239', 'no_lang_code', 1, 'https://ror.org/03wrrj239 Wallbridge Mining (Canada)'),
(29425, 'https://ror.org/02z02cv32', 'en', 1, 'https://ror.org/02z02cv32 Institut de l’Énergie Ɖolienne du Canada Wind Energy Institute of Canada'),
(29426, 'https://ror.org/040nbcv84', 'en', 1, 'https://ror.org/040nbcv84 Trace Crossings Elementary School'),
(29427, 'https://ror.org/00rp11x24', 'no_lang_code', 1, 'https://ror.org/00rp11x24 Walsh Medical Devices (Canada)'),
(29428, 'https://ror.org/025jq2275', 'no_lang_code', 1, 'https://ror.org/025jq2275 TransAlta (Canada)'),
(29429, 'https://ror.org/0174sz637', 'nl', 1, 'https://ror.org/0174sz637 NuGO'),
(29430, 'https://ror.org/01q437m46', 'de', 1, 'https://ror.org/01q437m46 Wasser Cluster Lunz'),
(29431, 'https://ror.org/034wh4067', 'en', 1, 'https://ror.org/034wh4067 Wine Council of Ontario'),
(29432, 'https://ror.org/05v981p28', 'no_lang_code', 1, 'https://ror.org/05v981p28 Water and Earth Science Associates (Canada)'),
(29433, 'https://ror.org/003tbr369', 'no_lang_code', 1, 'https://ror.org/003tbr369 Alten (Sweden)'),
(29434, 'https://ror.org/04wx1rb43', 'en', 1, 'https://ror.org/04wx1rb43 Winona County Historical Society'),
(29435, 'https://ror.org/04mqxq306', 'no_lang_code', 1, 'https://ror.org/04mqxq306 TransMIT (Germany)'),
(29436, 'https://ror.org/018qgs575', 'no_lang_code', 1, 'https://ror.org/018qgs575 Wireless Edge (Canada)'),
(29437, 'https://ror.org/025whmn93', 'en', 1, 'https://ror.org/025whmn93 Transport for Greater Manchester'),
(29438, 'https://ror.org/05wn9at08', 'no_lang_code', 1, 'https://ror.org/05wn9at08 Yellow Island Aquaculture (Canada)'),
(29439, 'https://ror.org/00xtnmz27', 'no_lang_code', 1, 'https://ror.org/00xtnmz27 Hain Celestial (Canada)'),
(29440, 'https://ror.org/040fdbg50', 'no_lang_code', 1, 'https://ror.org/040fdbg50 Wave Control Systems (Canada)'),
(29441, 'https://ror.org/01gjtys23', 'no', 1, 'https://ror.org/01gjtys23 Trondheim Kommune'),
(29442, 'https://ror.org/02qjep944', 'en', 1, 'https://ror.org/02qjep944 Waverly Consort'),
(29443, 'https://ror.org/04tw2wg46', 'en', 1, 'https://ror.org/04tw2wg46 Wood Industry Cluster'),
(29444, 'https://ror.org/03z8rmr27', 'en', 1, 'https://ror.org/03z8rmr27 Tudor Place'),
(29445, 'https://ror.org/00c10fm85', 'no_lang_code', 1, 'https://ror.org/00c10fm85 Wedgestone Press (United States)'),
(29446, 'https://ror.org/03pvq9f35', 'en', 1, 'https://ror.org/03pvq9f35 Regional Municipality of Ottawa'),
(29447, 'https://ror.org/001c1ff51', 'no_lang_code', 1, 'https://ror.org/001c1ff51 Weetabix (Canada)'),
(29448, 'https://ror.org/02q87d656', 'no_lang_code', 1, 'https://ror.org/02q87d656 Trademco (Greece)'),
(29449, 'https://ror.org/05eapnn11', 'no_lang_code', 1, 'https://ror.org/05eapnn11 Zetec (United States)'),
(29450, 'https://ror.org/01rj6x283', 'en', 1, 'https://ror.org/01rj6x283 Regional Municipality of Durham'),
(29451, 'https://ror.org/05r04zn83', 'en', 1, 'https://ror.org/05r04zn83 Regional Municipality of Niagara'),
(29452, 'https://ror.org/01c4g5a09', 'no_lang_code', 1, 'https://ror.org/01c4g5a09 HERION Systemtechnik (Germany)'),
(29453, 'https://ror.org/05wf4cy96', 'no_lang_code', 1, 'https://ror.org/05wf4cy96 YTL (United Kingdom)'),
(29454, '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'),
(29455, 'https://ror.org/02zmcw850', 'no_lang_code', 1, 'https://ror.org/02zmcw850 Treviso Tecnologia (Italy)'),
(29456, 'https://ror.org/05mzf7c50', 'no_lang_code', 1, 'https://ror.org/05mzf7c50 Tri-Con Concrete Finishing (Canada)'),
(29457, 'https://ror.org/053qcv951', 'en', 1, 'https://ror.org/053qcv951 European Association of Distance Teaching Universities'),
(29458, 'https://ror.org/00aw7vf84', 'it', 1, 'https://ror.org/00aw7vf84 Fondazione Crui'),
(29459, 'https://ror.org/00xn7zn29', 'en', 1, 'https://ror.org/00xn7zn29 Kazakh-American University'),
(29460, 'https://ror.org/032srmw97', 'bs', 1, 'https://ror.org/032srmw97 Svjetski Univerzitetski Bosne i Hercegovine'),
(29461, 'https://ror.org/02q6wz850', 'no_lang_code', 1, 'https://ror.org/02q6wz850 Proteus (United Kingdom)'),
(29462, 'https://ror.org/00fmts116', 'es', 1, 'https://ror.org/00fmts116 Fundación José Ortega y Gasset-Gregorio Marañón'),
(29463, 'https://ror.org/04nf1vj74', 'no_lang_code', 1, 'https://ror.org/04nf1vj74 Zenterio (Sweden)'),
(29464, 'https://ror.org/02tenpc86', 'en', 1, 'https://ror.org/02tenpc86 Scottish Universities Life Sciences Alliance'),
(29465, 'https://ror.org/042gbet74', 'no_lang_code', 1, 'https://ror.org/042gbet74 AB Realisator (Sweden)'),
(29466, 'https://ror.org/04q7mb252', 'no_lang_code', 1, 'https://ror.org/04q7mb252 Samarkand2015 (Sweden)'),
(29467, 'https://ror.org/00r178r74', 'no_lang_code', 1, 'https://ror.org/00r178r74 TvƄ Punkt Ett (Sweden)'),
(29468, 'https://ror.org/036yap806', 'no_lang_code', 1, 'https://ror.org/036yap806 Abera Bioscience (Sweden)'),
(29469, 'https://ror.org/01xcf8q67', 'no_lang_code', 1, 'https://ror.org/01xcf8q67 BlockMaster (Sweden)'),
(29470, 'https://ror.org/01cmstr73', 'no_lang_code', 1, 'https://ror.org/01cmstr73 Combain Mobile (Sweden)'),
(29471, 'https://ror.org/02dhhsj48', 'no_lang_code', 1, 'https://ror.org/02dhhsj48 Blue Institute (Sweden)'),
(29472, 'https://ror.org/0037zd360', 'no_lang_code', 1, 'https://ror.org/0037zd360 CombiQ (Sweden)'),
(29473, 'https://ror.org/01ypjv288', 'no_lang_code', 1, 'https://ror.org/01ypjv288 Absolicon Solar Collector (Sweden)'),
(29474, 'https://ror.org/015z2kc86', 'no_lang_code', 1, 'https://ror.org/015z2kc86 Acconeer (Sweden)'),
(29475, 'https://ror.org/02c944e82', 'en', 1, 'https://ror.org/02c944e82 St. Elizabeth Youngstown Hospital'),
(29476, 'https://ror.org/02eha7521', 'no_lang_code', 1, 'https://ror.org/02eha7521 Blue Mobile Systems (Sweden)'),
(29477, 'https://ror.org/04ykewa84', 'no_lang_code', 1, 'https://ror.org/04ykewa84 Acosense (Sweden)'),
(29478, 'https://ror.org/04w6n1v49', 'en', 1, 'https://ror.org/04w6n1v49 National Urban League'),
(29479, 'https://ror.org/027qmp433', 'no_lang_code', 1, 'https://ror.org/027qmp433 Conlogic (Sweden)'),
(29480, 'https://ror.org/04e9fmf35', 'no_lang_code', 1, 'https://ror.org/04e9fmf35 EQUA Simulation (Sweden)'),
(29481, 'https://ror.org/015m1y186', 'no_lang_code', 1, 'https://ror.org/015m1y186 Bonnier (Sweden)'),
(29482, 'https://ror.org/03z0yfj91', 'no_lang_code', 1, 'https://ror.org/03z0yfj91 AcousticAgree (Sweden)'),
(29483, 'https://ror.org/01jw22w13', 'no_lang_code', 1, 'https://ror.org/01jw22w13 ContextVision (Sweden)'),
(29484, 'https://ror.org/043hpt843', 'no_lang_code', 1, 'https://ror.org/043hpt843 BorgWarner (Sweden)'),
(29485, 'https://ror.org/054njw727', 'no_lang_code', 1, 'https://ror.org/054njw727 Ergolab (Sweden)'),
(29486, 'https://ror.org/01v6nvw72', 'de', 1, 'https://ror.org/01v6nvw72 StifterHaus'),
(29487, 'https://ror.org/037ba3b98', 'no_lang_code', 1, 'https://ror.org/037ba3b98 Corline Systems (Sweden)'),
(29488, 'https://ror.org/059s50x31', 'no_lang_code', 1, 'https://ror.org/059s50x31 Brainglass (Sweden)'),
(29489, 'https://ror.org/01fjfh042', 'no_lang_code', 1, 'https://ror.org/01fjfh042 ƅF (Sweden)'),
(29490, 'https://ror.org/02syf5698', 'no_lang_code', 1, 'https://ror.org/02syf5698 Business Region Gƶteborg (Sweden)'),
(29491, 'https://ror.org/05w9s5139', 'no_lang_code', 1, 'https://ror.org/05w9s5139 Affibody (Sweden)'),
(29492, 'https://ror.org/03jbr4b58', 'no_lang_code', 1, 'https://ror.org/03jbr4b58 Munktell Science Park (Sweden)'),
(29493, 'https://ror.org/02fcst635', 'no_lang_code', 1, 'https://ror.org/02fcst635 AFreeze (Austria)'),
(29494, 'https://ror.org/05rxftm59', 'no_lang_code', 1, 'https://ror.org/05rxftm59 Colloidal Resource (Sweden)'),
(29495, 'https://ror.org/04nqft813', 'no_lang_code', 1, 'https://ror.org/04nqft813 Ahrens (Sweden)'),
(29496, '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'),
(29497, 'https://ror.org/03hxbcz95', 'no_lang_code', 1, 'https://ror.org/03hxbcz95 Airec (Sweden)'),
(29498, 'https://ror.org/04chtc989', 'no_lang_code', 1, 'https://ror.org/04chtc989 Crearum (Sweden)'),
(29499, 'https://ror.org/01xv22m76', 'de', 1, 'https://ror.org/01xv22m76 Bundesmobilienverwaltung'),
(29500, 'https://ror.org/047btv285', 'no_lang_code', 1, 'https://ror.org/047btv285 Sydney Steel (Canada)'),
(29501, 'https://ror.org/00fzkzp38', 'no_lang_code', 1, 'https://ror.org/00fzkzp38 CNS Systems (Sweden)'),
(29502, 'https://ror.org/00djgx116', 'no_lang_code', 1, 'https://ror.org/00djgx116 Eurostep (Sweden)'),
(29503, 'https://ror.org/03eg9e545', 'no_lang_code', 1, 'https://ror.org/03eg9e545 Airwatergreen (Sweden)'),
(29504, 'https://ror.org/01z63c948', 'no_lang_code', 1, 'https://ror.org/01z63c948 Actuant (Sweden)'),
(29505, 'https://ror.org/04xe6vy97', 'no_lang_code', 1, 'https://ror.org/04xe6vy97 Evidente (Sweden)'),
(29506, 'https://ror.org/05a4edg92', 'no_lang_code', 1, 'https://ror.org/05a4edg92 CathPrint (Sweden)'),
(29507, 'https://ror.org/01w1ayy11', 'no_lang_code', 1, 'https://ror.org/01w1ayy11 Glucox Biotech (Sweden)'),
(29508, 'https://ror.org/018pb7a22', 'no_lang_code', 1, 'https://ror.org/018pb7a22 Excillum (Sweden)'),
(29509, 'https://ror.org/010s3fx23', 'no_lang_code', 1, 'https://ror.org/010s3fx23 Crunchfish (Sweden)'),
(29510, 'https://ror.org/03tdxa512', 'no_lang_code', 1, 'https://ror.org/03tdxa512 Exencotech (Sweden)'),
(29511, 'https://ror.org/04x6taa57', 'no_lang_code', 1, 'https://ror.org/04x6taa57 CBL (Germany)'),
(29512, 'https://ror.org/03n7hz788', 'no_lang_code', 1, 'https://ror.org/03n7hz788 GoalArt (Sweden)'),
(29513, 'https://ror.org/01e507517', 'no_lang_code', 1, 'https://ror.org/01e507517 CBot (Sweden)'),
(29514, 'https://ror.org/00y6d1y15', 'en', 1, 'https://ror.org/00y6d1y15 ƅkroken Science Park'),
(29515, 'https://ror.org/0383eqy30', 'no_lang_code', 1, 'https://ror.org/0383eqy30 Exibea (Sweden)'),
(29516, 'https://ror.org/03e673w40', 'no_lang_code', 1, 'https://ror.org/03e673w40 CybAero (Sweden)'),
(29517, 'https://ror.org/03zejnj81', 'no_lang_code', 1, 'https://ror.org/03zejnj81 Cyclicor (Sweden)'),
(29518, 'https://ror.org/03xpb8754', 'no_lang_code', 1, 'https://ror.org/03xpb8754 CCT Intermodal (Sweden)'),
(29519, 'https://ror.org/01avpmh18', 'no_lang_code', 1, 'https://ror.org/01avpmh18 Cdup (Sweden)'),
(29520, 'https://ror.org/005p6bw54', 'en', 1, 'https://ror.org/005p6bw54 Albertina'),
(29521, 'https://ror.org/02py10784', 'no_lang_code', 1, 'https://ror.org/02py10784 Albireo (Sweden)'),
(29522, 'https://ror.org/00dwh5a52', 'no_lang_code', 1, 'https://ror.org/00dwh5a52 CellaVision (Sweden)'),
(29523, 'https://ror.org/03k4ert93', 'no_lang_code', 1, 'https://ror.org/03k4ert93 Googol (Sweden)'),
(29524, 'https://ror.org/04h174r26', 'no_lang_code', 1, 'https://ror.org/04h174r26 Dafo Fomtec (Sweden)'),
(29525, 'https://ror.org/02vt8b034', 'no_lang_code', 1, 'https://ror.org/02vt8b034 Algoryx Simulation (Sweden)'),
(29526, 'https://ror.org/0349d5t97', 'no_lang_code', 1, 'https://ror.org/0349d5t97 Alkit Communications (Sweden)'),
(29527, 'https://ror.org/04tvsxd59', 'sv', 1, 'https://ror.org/04tvsxd59 Almega'),
(29528, 'https://ror.org/03cfat183', 'en', 1, 'https://ror.org/03cfat183 Fiber Optic Valley'),
(29529, 'https://ror.org/03nh07n18', 'en', 1, 'https://ror.org/03nh07n18 Center for the Study of Issues in Public Mental Health'),
(29530, 'https://ror.org/04pm25196', 'no_lang_code', 1, 'https://ror.org/04pm25196 Datachassi (Sweden)'),
(29531, 'https://ror.org/01m90ba17', 'de', 1, 'https://ror.org/01m90ba17 Filmarchiv Austria'),
(29532, 'https://ror.org/002dzmc91', 'no_lang_code', 1, 'https://ror.org/002dzmc91 Almi (Sweden)'),
(29533, 'https://ror.org/020rmhj69', 'no_lang_code', 1, 'https://ror.org/020rmhj69 Findout Technologies (Sweden)'),
(29534, 'https://ror.org/01chx4j35', 'no_lang_code', 1, 'https://ror.org/01chx4j35 DEKRA Industrial (Sweden)'),
(29535, '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'),
(29536, 'https://ror.org/05e7gcx12', 'no_lang_code', 1, 'https://ror.org/05e7gcx12 Dellcron (Sweden)'),
(29537, 'https://ror.org/03x3v9r72', 'no_lang_code', 1, 'https://ror.org/03x3v9r72 Denator (Sweden)'),
(29538, 'https://ror.org/010xz5h94', 'no_lang_code', 1, 'https://ror.org/010xz5h94 Mivac Development (Sweden)'),
(29539, 'https://ror.org/005t93q82', 'no_lang_code', 1, 'https://ror.org/005t93q82 Findwise (Sweden)'),
(29540, 'https://ror.org/01gqc4379', 'no_lang_code', 1, 'https://ror.org/01gqc4379 Detectify (Sweden)'),
(29541, 'https://ror.org/0442ywx89', 'no_lang_code', 1, 'https://ror.org/0442ywx89 Gƶteborg & Co TrƤffpunkt (Sweden)'),
(29542, 'https://ror.org/056r4cj44', 'en', 1, 'https://ror.org/056r4cj44 Charity Storm'),
(29543, 'https://ror.org/00yt9y116', 'no_lang_code', 1, 'https://ror.org/00yt9y116 Findus (Sweden)'),
(29544, 'https://ror.org/00804ej42', 'no_lang_code', 1, 'https://ror.org/00804ej42 Chockie Group International (United States)'),
(29545, 'https://ror.org/018hw2e85', 'no_lang_code', 1, 'https://ror.org/018hw2e85 Fingerprint Cards (Sweden)'),
(29546, 'https://ror.org/02p5wcj62', 'no_lang_code', 1, 'https://ror.org/02p5wcj62 Diamorph (Sweden)'),
(29547, 'https://ror.org/051d8c692', 'no_lang_code', 1, 'https://ror.org/051d8c692 Single Technologies (Sweden)'),
(29548, 'https://ror.org/02xy94a15', 'no_lang_code', 1, 'https://ror.org/02xy94a15 ChromoGenics (Sweden)'),
(29549, 'https://ror.org/046y2e354', 'no_lang_code', 1, 'https://ror.org/046y2e354 Cinside (Sweden)'),
(29550, 'https://ror.org/04he8ec30', 'no_lang_code', 1, 'https://ror.org/04he8ec30 Finja (Sweden)'),
(29551, 'https://ror.org/0203am321', 'en', 1, 'https://ror.org/0203am321 Gƶteborg Region Association of Local Authorities'),
(29552, 'https://ror.org/03t810x25', 'no_lang_code', 1, 'https://ror.org/03t810x25 Disruptive Materials (Sweden)'),
(29553, 'https://ror.org/01tasjp55', 'no_lang_code', 1, 'https://ror.org/01tasjp55 Cipherstone Technologies (Sweden)'),
(29554, 'https://ror.org/0353v0664', 'no_lang_code', 1, 'https://ror.org/0353v0664 Clinical Laserthermia Systems (Sweden)'),
(29555, 'https://ror.org/05005pp50', 'no_lang_code', 1, 'https://ror.org/05005pp50 Division By Zero (Sweden)'),
(29556, 'https://ror.org/0587gk311', 'no_lang_code', 1, 'https://ror.org/0587gk311 Flexenclosure (Sweden)'),
(29557, 'https://ror.org/00fmqk596', 'no_lang_code', 1, 'https://ror.org/00fmqk596 Cobolt (Sweden)'),
(29558, 'https://ror.org/006h41552', 'no_lang_code', 1, 'https://ror.org/006h41552 Appear Networks (Sweden)'),
(29559, 'https://ror.org/0321f3g84', 'no_lang_code', 1, 'https://ror.org/0321f3g84 Doberman (Sweden)'),
(29560, 'https://ror.org/0290taq42', 'no_lang_code', 1, 'https://ror.org/0290taq42 Applied Nano Surfaces (Sweden)'),
(29561, 'https://ror.org/021ccwy92', 'no_lang_code', 1, 'https://ror.org/021ccwy92 APR Technologies (Sweden)'),
(29562, 'https://ror.org/01e98vj82', 'no_lang_code', 1, 'https://ror.org/01e98vj82 Flexiwaggon (Sweden)'),
(29563, 'https://ror.org/05xxpak83', 'no_lang_code', 1, 'https://ror.org/05xxpak83 Cognimatics (Sweden)'),
(29564, 'https://ror.org/04jrge359', 'no_lang_code', 1, 'https://ror.org/04jrge359 FlexProp (Sweden)'),
(29565, 'https://ror.org/002xt7430', 'no_lang_code', 1, 'https://ror.org/002xt7430 Cold Cut Systems (Sweden)'),
(29566, 'https://ror.org/04hx50087', 'no_lang_code', 1, 'https://ror.org/04hx50087 ScoreCloud (Sweden)'),
(29567, 'https://ror.org/04y0mk629', 'no_lang_code', 1, 'https://ror.org/04y0mk629 Blackwing (Sweden)'),
(29568, 'https://ror.org/03j7gdq44', 'no_lang_code', 1, 'https://ror.org/03j7gdq44 Aqua-Q (Sweden)'),
(29569, 'https://ror.org/04be58j18', 'no_lang_code', 1, 'https://ror.org/04be58j18 Folke RydƩn Production (Sweden)'),
(29570, 'https://ror.org/01yncvq70', 'no_lang_code', 1, 'https://ror.org/01yncvq70 Aventia (Spain)'),
(29571, 'https://ror.org/01g8r3j92', 'no_lang_code', 1, 'https://ror.org/01g8r3j92 Follicum (Sweden)'),
(29572, 'https://ror.org/01j7tpx52', 'no_lang_code', 1, 'https://ror.org/01j7tpx52 DSM (Austria)'),
(29573, 'https://ror.org/03gyay052', 'sv', 1, 'https://ror.org/03gyay052 Fƶrbundet Unga Forskare'),
(29574, 'https://ror.org/04yvxfz47', 'no_lang_code', 1, 'https://ror.org/04yvxfz47 American Axle & Manufacturing (Sweden)'),
(29575, 'https://ror.org/05nq2wt36', 'no_lang_code', 1, 'https://ror.org/05nq2wt36 EasyMining (Sweden)'),
(29576, 'https://ror.org/00vyw7j44', 'en', 1, 'https://ror.org/00vyw7j44 Swedish Institute for Studies in Education and Research'),
(29577, 'https://ror.org/00pftnv23', 'sv', 1, 'https://ror.org/00pftnv23 Association of Heavy Vehicles Tunga Fordon'),
(29578, 'https://ror.org/05drtms27', 'no_lang_code', 1, 'https://ror.org/05drtms27 Aqwary (Sweden)'),
(29579, 'https://ror.org/02rf1sg12', 'no_lang_code', 1, 'https://ror.org/02rf1sg12 Ecoloop (Sweden)'),
(29580, 'https://ror.org/03rn5p709', 'de', 1, 'https://ror.org/03rn5p709 Architekturzentrum Wien'),
(29581, 'https://ror.org/059tmdq14', 'de', 1, 'https://ror.org/059tmdq14 Institut für den Donauraum und Mitteleuropa'),
(29582, 'https://ror.org/00tktp346', 'no_lang_code', 1, 'https://ror.org/00tktp346 Effectus But Different (Sweden)'),
(29583, 'https://ror.org/03k5mtb95', 'de', 1, 'https://ror.org/03k5mtb95 Archiv der Erzdiƶzese Salzburg'),
(29584, 'https://ror.org/05bzq4y23', 'no_lang_code', 1, 'https://ror.org/05bzq4y23 Efficax Energy (Sweden)'),
(29585, 'https://ror.org/031kbs337', 'en', 1, 'https://ror.org/031kbs337 Institut für jüdische Geschichte Ɩsterreichs Institute for Jewish History in Austria'),
(29586, 'https://ror.org/02wr53m35', 'no_lang_code', 1, 'https://ror.org/02wr53m35 Arboritec (Sweden)'),
(29587, 'https://ror.org/051g4aa15', 'no_lang_code', 1, 'https://ror.org/051g4aa15 Arcticus Systems (Sweden)'),
(29588, 'https://ror.org/05vbajd50', 'no_lang_code', 1, 'https://ror.org/05vbajd50 EkoBalans Fenix (Sweden)'),
(29589, 'https://ror.org/03fjcpp91', 'no_lang_code', 1, 'https://ror.org/03fjcpp91 Ariterm (Sweden)'),
(29590, 'https://ror.org/01tqp0709', 'en', 1, 'https://ror.org/01tqp0709 Austrian Institute of Historical Research Institut für Ɩsterreichische Geschichtsforschung'),
(29591, 'https://ror.org/05qphs016', 'no_lang_code', 1, 'https://ror.org/05qphs016 Fotonic (Sweden)'),
(29592, 'https://ror.org/04hgyes27', 'no_lang_code', 1, 'https://ror.org/04hgyes27 Ideus (Sweden)'),
(29593, 'https://ror.org/05vdzgj37', 'sv', 1, 'https://ror.org/05vdzgj37 Drivhuset'),
(29594, 'https://ror.org/05225qa62', 'no_lang_code', 1, 'https://ror.org/05225qa62 Ascatron (Sweden)'),
(29595, 'https://ror.org/035af0m16', 'no_lang_code', 1, 'https://ror.org/035af0m16 Icellate (Sweden)'),
(29596, 'https://ror.org/01gtwn585', 'no_lang_code', 1, 'https://ror.org/01gtwn585 Athera (Sweden)'),
(29597, 'https://ror.org/00bscyw28', 'en', 1, 'https://ror.org/00bscyw28 International Bureau of Fiscal Documentation'),
(29598, 'https://ror.org/052xa3526', 'sv', 1, 'https://ror.org/052xa3526 FoU Sƶdertƶrn'),
(29599, 'https://ror.org/01cwt3h50', 'no_lang_code', 1, 'https://ror.org/01cwt3h50 Gothia Innovation (Sweden)'),
(29600, 'https://ror.org/05f7x7e62', 'no_lang_code', 1, 'https://ror.org/05f7x7e62 Gotmic (Sweden)'),
(29601, 'https://ror.org/02kq93n74', 'no_lang_code', 1, 'https://ror.org/02kq93n74 Gradientech (Sweden)'),
(29602, 'https://ror.org/04vfnc742', 'no_lang_code', 1, 'https://ror.org/04vfnc742 Founders Alliance (Sweden)'),
(29603, 'https://ror.org/05cjzsz62', 'de', 1, 'https://ror.org/05cjzsz62 Institut für Volkskultur und Kulturentwicklung'),
(29604, 'https://ror.org/025z7wk46', 'no_lang_code', 1, 'https://ror.org/025z7wk46 Gu Holding (Sweden)'),
(29605, 'https://ror.org/024wcbg54', 'no_lang_code', 1, 'https://ror.org/024wcbg54 Free2move (Sweden)'),
(29606, 'https://ror.org/030hmhj85', 'de', 1, 'https://ror.org/030hmhj85 Institut für Wissenschaft und Kunst'),
(29607, 'https://ror.org/011j46d86', 'no_lang_code', 1, 'https://ror.org/011j46d86 FriGeo (Sweden)'),
(29608, 'https://ror.org/03w6bzp59', 'no_lang_code', 1, 'https://ror.org/03w6bzp59 Fujitsu (Sweden)'),
(29609, 'https://ror.org/04587tq63', 'sv', 1, 'https://ror.org/04587tq63 Eksjƶ Municipality'),
(29610, 'https://ror.org/026tvjz61', 'sv', 1, 'https://ror.org/026tvjz61 ATK Arbetstagarkonsultation'),
(29611, 'https://ror.org/056rhtj86', 'sv', 1, 'https://ror.org/056rhtj86 HƤlsans Nya Verktyg'),
(29612, 'https://ror.org/045w2qd40', 'no_lang_code', 1, 'https://ror.org/045w2qd40 ElectroHeat (Sweden)'),
(29613, 'https://ror.org/03advjx75', 'en', 1, 'https://ror.org/03advjx75 Future Position X'),
(29614, 'https://ror.org/05q9hkp18', 'en', 1, 'https://ror.org/05q9hkp18 Austrian Institute for International Affairs Ɩsterreichische Institut für Internationale Politik'),
(29615, 'https://ror.org/03k09ka51', 'en', 1, 'https://ror.org/03k09ka51 Institute for Financial Research'),
(29616, 'https://ror.org/05d8zhh23', 'no_lang_code', 1, 'https://ror.org/05d8zhh23 Elfarm (Sweden)'),
(29617, 'https://ror.org/02t5vgv32', 'no_lang_code', 1, 'https://ror.org/02t5vgv32 GasPorOx (Sweden)'),
(29618, 'https://ror.org/021zf9412', 'no_lang_code', 1, 'https://ror.org/021zf9412 Gavagai (Sweden)'),
(29619, 'https://ror.org/02d9kar35', 'no_lang_code', 1, 'https://ror.org/02d9kar35 Ellen (Sweden)'),
(29620, 'https://ror.org/02bjb1a43', 'no_lang_code', 1, 'https://ror.org/02bjb1a43 GearWheel (Sweden)'),
(29621, 'https://ror.org/05vf4zc90', 'en', 1, 'https://ror.org/05vf4zc90 Austrian Political Science Association Ɩsterreichische Gesellschaft für Politikwissenschaft'),
(29622, 'https://ror.org/02gs17047', 'no_lang_code', 1, 'https://ror.org/02gs17047 HelioCaminus (Sweden)'),
(29623, 'https://ror.org/04e77ta80', 'no_lang_code', 1, 'https://ror.org/04e77ta80 Genovis (Sweden)'),
(29624, 'https://ror.org/02jd1mn89', 'no_lang_code', 1, 'https://ror.org/02jd1mn89 Emstone (Sweden)'),
(29625, 'https://ror.org/01qa8hz22', 'no_lang_code', 1, 'https://ror.org/01qa8hz22 Aventure (Sweden)'),
(29626, 'https://ror.org/01ss1ax86', 'no_lang_code', 1, 'https://ror.org/01ss1ax86 Geosigma (Sweden)'),
(29627, 'https://ror.org/04fphdf97', 'no_lang_code', 1, 'https://ror.org/04fphdf97 Avtech (Sweden)'),
(29628, 'https://ror.org/056154p75', 'no_lang_code', 1, 'https://ror.org/056154p75 Gestamp (Sweden)'),
(29629, 'https://ror.org/04jnypc35', 'no_lang_code', 1, 'https://ror.org/04jnypc35 Integrum (Sweden)'),
(29630, 'https://ror.org/04c326720', 'no_lang_code', 1, 'https://ror.org/04c326720 Axcentua (Sweden)'),
(29631, 'https://ror.org/017ry0003', 'no_lang_code', 1, 'https://ror.org/017ry0003 Hermes Medical Solutions (Sweden)'),
(29632, 'https://ror.org/00ywaqr80', 'sv', 1, 'https://ror.org/00ywaqr80 Chalmersinvest'),
(29633, 'https://ror.org/05nzk9q32', 'no_lang_code', 1, 'https://ror.org/05nzk9q32 Intelligent Machines (Sweden)'),
(29634, 'https://ror.org/032sd8787', 'no_lang_code', 1, 'https://ror.org/032sd8787 Axiomatics (Sweden)'),
(29635, 'https://ror.org/02j5aza86', 'en', 1, 'https://ror.org/02j5aza86 Swedish History Museum'),
(29636, 'https://ror.org/03bxfwk92', 'no_lang_code', 1, 'https://ror.org/03bxfwk92 Enmesh (Sweden)'),
(29637, 'https://ror.org/024gx1m25', 'no_lang_code', 1, 'https://ror.org/024gx1m25 IntelliWork (Sweden)'),
(29638, 'https://ror.org/009tdmt49', 'no_lang_code', 1, 'https://ror.org/009tdmt49 Hoa''s Tool Shop (Sweden)'),
(29639, 'https://ror.org/02gsfxh78', 'no_lang_code', 1, 'https://ror.org/02gsfxh78 Envic Sense (Sweden)'),
(29640, 'https://ror.org/04hk68s94', 'no_lang_code', 1, 'https://ror.org/04hk68s94 Gipeco (Sweden)'),
(29641, 'https://ror.org/03y3tpz14', 'no_lang_code', 1, 'https://ror.org/03y3tpz14 Inteno (Sweden)'),
(29642, 'https://ror.org/02g70zk77', 'no_lang_code', 1, 'https://ror.org/02g70zk77 BioEnergy International (Austria)'),
(29643, 'https://ror.org/03aqvdh64', 'no_lang_code', 1, 'https://ror.org/03aqvdh64 Mecdon (Sweden)'),
(29644, 'https://ror.org/015dbac72', 'no_lang_code', 1, 'https://ror.org/015dbac72 Hot Disk (Sweden)'),
(29645, 'https://ror.org/033y13v84', 'no_lang_code', 1, 'https://ror.org/033y13v84 Hotswaps (Sweden)'),
(29646, 'https://ror.org/021t57y21', 'no_lang_code', 1, 'https://ror.org/021t57y21 HUI Research (Sweden)'),
(29647, 'https://ror.org/012494h40', 'no_lang_code', 1, 'https://ror.org/012494h40 Mercene Labs (Sweden)'),
(29648, 'https://ror.org/010z1he39', 'no_lang_code', 1, 'https://ror.org/010z1he39 Hulteberg (Sweden)'),
(29649, 'https://ror.org/007kcsb16', 'no_lang_code', 1, 'https://ror.org/007kcsb16 Hultsteins (Sweden)'),
(29650, 'https://ror.org/04f5qb772', 'no_lang_code', 1, 'https://ror.org/04f5qb772 Inventech Europe (Sweden)'),
(29651, 'https://ror.org/02ayh6y70', 'no_lang_code', 1, 'https://ror.org/02ayh6y70 Husqvarna (Sweden)'),
(29652, 'https://ror.org/05atbz571', 'no_lang_code', 1, 'https://ror.org/05atbz571 Mentor Communication (Sweden)'),
(29653, 'https://ror.org/03q854t26', 'en', 1, 'https://ror.org/03q854t26 Höhere Bundeslehr- und Forschungsanstalt für Landwirtschaft, Landtechnik und Lebensmitteltechnologie Josephinum Research'),
(29654, 'https://ror.org/036cxc626', 'no_lang_code', 1, 'https://ror.org/036cxc626 Inwido (Sweden)'),
(29655, 'https://ror.org/03cns3576', 'no_lang_code', 1, 'https://ror.org/03cns3576 BehavioSec (Sweden)'),
(29656, 'https://ror.org/02zh9ta75', 'no_lang_code', 1, 'https://ror.org/02zh9ta75 BeeMobile (Sweden)'),
(29657, 'https://ror.org/01ary0143', 'no_lang_code', 1, 'https://ror.org/01ary0143 Kairos Future (Sweden)'),
(29658, 'https://ror.org/00835s883', 'no_lang_code', 1, 'https://ror.org/00835s883 Ionautics (Sweden)'),
(29659, 'https://ror.org/00cpqht96', 'no_lang_code', 1, 'https://ror.org/00cpqht96 Bencar (Sweden)'),
(29660, 'https://ror.org/03sxag889', 'no_lang_code', 1, 'https://ror.org/03sxag889 MetaSolutions (Sweden)'),
(29661, 'https://ror.org/00361m323', 'no_lang_code', 1, 'https://ror.org/00361m323 Micro Delta T (Sweden)'),
(29662, 'https://ror.org/01x87db24', 'en', 1, 'https://ror.org/01x87db24 Sunder Lal Jain Hospital'),
(29663, 'https://ror.org/040046r87', 'no_lang_code', 1, 'https://ror.org/040046r87 KƤllbergs Industri (Sweden)'),
(29664, 'https://ror.org/02vhq0d75', 'en', 1, 'https://ror.org/02vhq0d75 Mid Sweden Science Park'),
(29665, 'https://ror.org/054kjk513', 'no_lang_code', 1, 'https://ror.org/054kjk513 IRnova (Sweden)'),
(29666, 'https://ror.org/02n74s845', 'sv', 1, 'https://ror.org/02n74s845 Kalmar Art Museum Kalmar Konstmuseum'),
(29667, 'https://ror.org/05vgnmj77', 'no_lang_code', 1, 'https://ror.org/05vgnmj77 Innovation Management Consulting Group (Sweden)'),
(29668, 'https://ror.org/04v4hfj66', 'no_lang_code', 1, 'https://ror.org/04v4hfj66 Image Intelligence (Sweden)'),
(29669, 'https://ror.org/04882a678', 'no_lang_code', 1, 'https://ror.org/04882a678 MidDec Scandinavia (Sweden)'),
(29670, 'https://ror.org/05cbz1141', 'no_lang_code', 1, 'https://ror.org/05cbz1141 Irras (Sweden)'),
(29671, 'https://ror.org/01dbg2h54', 'no_lang_code', 1, 'https://ror.org/01dbg2h54 Immunsystem (Sweden)'),
(29672, 'https://ror.org/05xpbrb70', 'en', 1, 'https://ror.org/05xpbrb70 Karl-Adam Bonnier Foundation'),
(29673, 'https://ror.org/0559w8070', 'no_lang_code', 1, 'https://ror.org/0559w8070 Immune Therapy Holdings (Sweden)'),
(29674, 'https://ror.org/05deh3d91', 'no_lang_code', 1, 'https://ror.org/05deh3d91 HeidelbergCement (Sweden)'),
(29675, 'https://ror.org/01mttx554', 'no_lang_code', 1, 'https://ror.org/01mttx554 Immunicum (Sweden)'),
(29676, 'https://ror.org/01ja2b492', 'no_lang_code', 1, 'https://ror.org/01ja2b492 Besab (Sweden)'),
(29677, 'https://ror.org/00mepd532', 'en', 1, 'https://ror.org/00mepd532 Catholic Theological Private University Linz Katholische Privat-UniversitƤt Linz'),
(29678, 'https://ror.org/05198nw13', 'no_lang_code', 1, 'https://ror.org/05198nw13 Immunovia (Sweden)'),
(29679, 'https://ror.org/00xyx0e45', 'no_lang_code', 1, 'https://ror.org/00xyx0e45 ITS (Sweden)'),
(29680, 'https://ror.org/02qv4je94', 'no_lang_code', 1, 'https://ror.org/02qv4je94 Impact Coatings (Sweden)'),
(29681, 'https://ror.org/03shhge35', 'no_lang_code', 1, 'https://ror.org/03shhge35 BioArctic Neuroscience (Sweden)'),
(29682, 'https://ror.org/03c2x7w83', 'no_lang_code', 1, 'https://ror.org/03c2x7w83 BioLamina (Sweden)'),
(29683, 'https://ror.org/02w5xx833', 'no_lang_code', 1, 'https://ror.org/02w5xx833 Biomotif (Sweden)'),
(29684, 'https://ror.org/00ekapt69', 'no_lang_code', 1, 'https://ror.org/00ekapt69 Mƶbelriket (Swedenā€Ž)'),
(29685, 'https://ror.org/02wvrmv25', 'no_lang_code', 1, 'https://ror.org/02wvrmv25 Industrial Development Center (Sweden)'),
(29686, 'https://ror.org/025yjyh61', 'no_lang_code', 1, 'https://ror.org/025yjyh61 Bioprocess Control (Sweden)'),
(29687, 'https://ror.org/05k2cam34', 'no_lang_code', 1, 'https://ror.org/05k2cam34 Impact Hub (Sweden)'),
(29688, 'https://ror.org/00kchf187', 'no_lang_code', 1, 'https://ror.org/00kchf187 Moberg Pharma (Sweden)'),
(29689, 'https://ror.org/04rwrjk88', 'no_lang_code', 1, 'https://ror.org/04rwrjk88 Bioptech (Sweden)'),
(29690, 'https://ror.org/05bthpx67', 'no_lang_code', 1, 'https://ror.org/05bthpx67 Indusec (Sweden)'),
(29691, 'https://ror.org/00vnh7v52', 'en', 1, 'https://ror.org/00vnh7v52 Johanneberg Science Park'),
(29692, 'https://ror.org/03ngd3730', 'no_lang_code', 1, 'https://ror.org/03ngd3730 Mobergs (Sweden)'),
(29693, 'https://ror.org/0481zh362', 'no_lang_code', 1, 'https://ror.org/0481zh362 Preeye Solutions (Sweden)'),
(29694, 'https://ror.org/03zqd9158', 'no_lang_code', 1, 'https://ror.org/03zqd9158 BioResonator (Sweden)'),
(29695, 'https://ror.org/014yc4v19', 'no_lang_code', 1, 'https://ror.org/014yc4v19 Inera (Sweden)'),
(29696, 'https://ror.org/02wyf5v78', 'no_lang_code', 1, 'https://ror.org/02wyf5v78 JonDeTech (Sweden)'),
(29697, 'https://ror.org/03v7cee73', 'no_lang_code', 1, 'https://ror.org/03v7cee73 Bioservo Technologies (Sweden)'),
(29698, 'https://ror.org/016cc6840', 'no_lang_code', 1, 'https://ror.org/016cc6840 Mobile Heights (Sweden)'),
(29699, 'https://ror.org/057xcq908', 'no_lang_code', 1, 'https://ror.org/057xcq908 Inerventions (Sweden)'),
(29700, 'https://ror.org/00xtdda21', 'no_lang_code', 1, 'https://ror.org/00xtdda21 Monocl (Sweden)'),
(29701, 'https://ror.org/01kxxsk90', 'no_lang_code', 1, 'https://ror.org/01kxxsk90 Klimator (Sweden)'),
(29702, 'https://ror.org/039qv4027', 'no_lang_code', 1, 'https://ror.org/039qv4027 Biovica (Sweden)'),
(29703, 'https://ror.org/02r6tx669', 'no_lang_code', 1, 'https://ror.org/02r6tx669 Biteam (Sweden)'),
(29704, 'https://ror.org/03c1ky010', 'no_lang_code', 1, 'https://ror.org/03c1ky010 MRT System (Sweden)'),
(29705, 'https://ror.org/01nk5jw70', 'no_lang_code', 1, 'https://ror.org/01nk5jw70 Bjarga (Sweden)'),
(29706, 'https://ror.org/04jnb5p59', 'no_lang_code', 1, 'https://ror.org/04jnb5p59 OpiFlex (Sweden)'),
(29707, 'https://ror.org/03bz02915', 'no_lang_code', 1, 'https://ror.org/03bz02915 Infobric (Sweden)'),
(29708, 'https://ror.org/04dxp6p61', 'no_lang_code', 1, 'https://ror.org/04dxp6p61 Koenigsegg Automotive (Sweden)'),
(29709, 'https://ror.org/03kcnwv71', 'no_lang_code', 1, 'https://ror.org/03kcnwv71 Bjƶrkemar Construction & Consulting (Sweden)'),
(29710, 'https://ror.org/022t09m69', 'no_lang_code', 1, 'https://ror.org/022t09m69 Optea (Sweden)'),
(29711, 'https://ror.org/049c6rx58', 'en', 1, 'https://ror.org/049c6rx58 MTO Safety'),
(29712, 'https://ror.org/03nscdm67', 'no_lang_code', 1, 'https://ror.org/03nscdm67 OptiCall Software (Sweden)'),
(29713, 'https://ror.org/03qe79b76', 'no_lang_code', 1, 'https://ror.org/03qe79b76 Optiplan (Sweden)'),
(29714, 'https://ror.org/03g37tj89', 'no_lang_code', 1, 'https://ror.org/03g37tj89 Premune (Sweden)'),
(29715, 'https://ror.org/017gd8s27', 'de', 1, 'https://ror.org/017gd8s27 Initiative Minderheiten Tirol'),
(29716, 'https://ror.org/013ybys37', 'en', 1, 'https://ror.org/013ybys37 Museum für angewandte Kunst Museum of Applied Arts'),
(29717, 'https://ror.org/038y74z78', 'no_lang_code', 1, 'https://ror.org/038y74z78 Inkubatorn i BorƄs (Sweden)'),
(29718, 'https://ror.org/05t7fez51', 'no_lang_code', 1, 'https://ror.org/05t7fez51 Danaher (Sweden)'),
(29719, 'https://ror.org/017xy1565', 'no_lang_code', 1, 'https://ror.org/017xy1565 Optistring (Sweden)'),
(29720, 'https://ror.org/0567jp802', 'no_lang_code', 1, 'https://ror.org/0567jp802 Mutewatch (Sweden)'),
(29721, 'https://ror.org/0424rzx44', 'no_lang_code', 1, 'https://ror.org/0424rzx44 Innospire Systems (United States)'),
(29722, 'https://ror.org/00h6yfh70', 'no_lang_code', 1, 'https://ror.org/00h6yfh70 Innovation Impact (Sweden)'),
(29723, 'https://ror.org/00ab43a31', 'no_lang_code', 1, 'https://ror.org/00ab43a31 Optronic (Sweden)'),
(29724, 'https://ror.org/052f1qm24', 'no_lang_code', 1, 'https://ror.org/052f1qm24 Mw-innovation (Sweden)'),
(29725, 'https://ror.org/057s7cs58', 'no_lang_code', 1, 'https://ror.org/057s7cs58 Primateria (Sweden)'),
(29726, 'https://ror.org/03s99w274', 'no_lang_code', 1, 'https://ror.org/03s99w274 Innovation Pioneers (Sweden)'),
(29727, 'https://ror.org/028jkr794', 'no_lang_code', 1, 'https://ror.org/028jkr794 PrimeKey Solutions (Sweden)'),
(29728, 'https://ror.org/05pj1wk28', 'no_lang_code', 1, 'https://ror.org/05pj1wk28 Orbital Systems (Sweden)'),
(29729, 'https://ror.org/00wtk6m97', 'en', 1, 'https://ror.org/00wtk6m97 Growth Analysis'),
(29730, 'https://ror.org/01x3s6t84', 'no_lang_code', 1, 'https://ror.org/01x3s6t84 Innovatum (Sweden)'),
(29731, 'https://ror.org/0025qh018', 'no_lang_code', 1, 'https://ror.org/0025qh018 Procera Networks (Sweden)'),
(29732, 'https://ror.org/012njsm94', 'no_lang_code', 1, 'https://ror.org/012njsm94 PositiveID (United States)'),
(29733, 'https://ror.org/00anzjr50', 'en', 1, 'https://ror.org/00anzjr50 Ɩrebro Municipality'),
(29734, 'https://ror.org/03pt05741', 'en', 1, 'https://ror.org/03pt05741 Business Sweden'),
(29735, 'https://ror.org/02dcwa654', 'en', 1, 'https://ror.org/02dcwa654 Nacka Municipality'),
(29736, 'https://ror.org/0060v6x94', 'no_lang_code', 1, 'https://ror.org/0060v6x94 Nanexa (Sweden)'),
(29737, 'https://ror.org/010p72t82', 'no_lang_code', 1, 'https://ror.org/010p72t82 Processkontroll (Sweden)'),
(29738, 'https://ror.org/01cf25767', 'no_lang_code', 1, 'https://ror.org/01cf25767 Orexo (Sweden)'),
(29739, 'https://ror.org/019nmk183', 'no_lang_code', 1, 'https://ror.org/019nmk183 Promimic (Sweden)'),
(29740, 'https://ror.org/02w7ppq59', 'no_lang_code', 1, 'https://ror.org/02w7ppq59 Narrative (Sweden)'),
(29741, 'https://ror.org/00n7wkq71', 'no_lang_code', 1, 'https://ror.org/00n7wkq71 Orexplore (Sweden)'),
(29742, 'https://ror.org/024hwtz39', 'no_lang_code', 1, 'https://ror.org/024hwtz39 SenseAir (Sweden)'),
(29743, 'https://ror.org/02rrbkd45', 'no_lang_code', 1, 'https://ror.org/02rrbkd45 OrganoClick (Sweden)'),
(29744, 'https://ror.org/00a3trs85', 'no_lang_code', 1, 'https://ror.org/00a3trs85 Kunskapsbolaget (Sweden)'),
(29745, 'https://ror.org/0165bgf07', 'no_lang_code', 1, 'https://ror.org/0165bgf07 Provexa (Sweden)'),
(29746, 'https://ror.org/03860nf78', 'no_lang_code', 1, 'https://ror.org/03860nf78 SenseGraphics (Sweden)'),
(29747, 'https://ror.org/01qrenj43', 'en', 1, 'https://ror.org/01qrenj43 Ɩrnskƶldsvik Municipality'),
(29748, 'https://ror.org/01abtbz07', 'no_lang_code', 1, 'https://ror.org/01abtbz07 Sensible Solutions (Sweden)');
INSERT INTO `rors` VALUES
(29749, 'https://ror.org/057kca452', 'no_lang_code', 1, 'https://ror.org/057kca452 SenSic (Sweden)'),
(29750, 'https://ror.org/03m099247', 'no_lang_code', 1, 'https://ror.org/03m099247 Proximion (Sweden)'),
(29751, 'https://ror.org/04mtxrz85', 'no_lang_code', 1, 'https://ror.org/04mtxrz85 Ortoma (Sweden)'),
(29752, 'https://ror.org/010zsv180', 'en', 1, 'https://ror.org/010zsv180 Network for Transport Measures'),
(29753, 'https://ror.org/040d40q10', 'de', 1, 'https://ror.org/040d40q10 Kunstakademie Düsseldorf'),
(29754, 'https://ror.org/01p7q7732', 'no_lang_code', 1, 'https://ror.org/01p7q7732 Senzime (Sweden)'),
(29755, 'https://ror.org/049tk1906', 'no_lang_code', 1, 'https://ror.org/049tk1906 Flex (Sweden)'),
(29756, 'https://ror.org/00twq6n75', 'no_lang_code', 1, 'https://ror.org/00twq6n75 OssDsign (Sweden)'),
(29757, 'https://ror.org/00bn9mm21', 'no_lang_code', 1, 'https://ror.org/00bn9mm21 Publit (Sweden)'),
(29758, 'https://ror.org/0095xxn33', 'no_lang_code', 1, 'https://ror.org/0095xxn33 SEPS Technologies (Sweden)'),
(29759, 'https://ror.org/00gtgme55', 'no_lang_code', 1, 'https://ror.org/00gtgme55 Qlucore (Sweden)'),
(29760, 'https://ror.org/01qcn4432', 'no_lang_code', 1, 'https://ror.org/01qcn4432 Serendipity Innovations (Sweden)'),
(29761, 'https://ror.org/02n2kz479', 'no_lang_code', 1, 'https://ror.org/02n2kz479 Kvarnstrands (Sweden)'),
(29762, 'https://ror.org/00269y122', 'no_lang_code', 1, 'https://ror.org/00269y122 Serstech (Sweden)'),
(29763, 'https://ror.org/05ptj5165', 'no_lang_code', 1, 'https://ror.org/05ptj5165 Needs Drive (Swedenā€Ž)'),
(29764, 'https://ror.org/02h15pd98', 'no_lang_code', 1, 'https://ror.org/02h15pd98 Osstell (Sweden)'),
(29765, 'https://ror.org/001abtb92', 'no_lang_code', 1, 'https://ror.org/001abtb92 NeoDynamics (Sweden)'),
(29766, 'https://ror.org/05x91m338', 'en', 1, 'https://ror.org/05x91m338 Norwegian Labour Movement Archives and Library'),
(29767, 'https://ror.org/04rxwag77', 'no_lang_code', 1, 'https://ror.org/04rxwag77 Setek Elektronik (Sweden)'),
(29768, 'https://ror.org/04wazj198', 'en', 1, 'https://ror.org/04wazj198 Steel Structures Education Foundation'),
(29769, 'https://ror.org/00twmc436', 'no_lang_code', 1, 'https://ror.org/00twmc436 Setrab (Sweden)'),
(29770, 'https://ror.org/02aeyw607', 'no_lang_code', 1, 'https://ror.org/02aeyw607 Qrodo (Sweden)'),
(29771, 'https://ror.org/047p1nv89', 'no_lang_code', 1, 'https://ror.org/047p1nv89 Neonode (Sweden)'),
(29772, 'https://ror.org/0000m8h16', 'no_lang_code', 1, 'https://ror.org/0000m8h16 QRtech (Sweden)'),
(29773, 'https://ror.org/00gprmt59', 'en', 1, 'https://ror.org/00gprmt59 NetPort Science Park'),
(29774, 'https://ror.org/01fs6c127', 'no_lang_code', 1, 'https://ror.org/01fs6c127 Signal Processing Devices (Sweden)'),
(29775, 'https://ror.org/05d5rz672', 'no_lang_code', 1, 'https://ror.org/05d5rz672 Quantum Technologies (Sweden)'),
(29776, 'https://ror.org/02gtbcv54', 'no_lang_code', 1, 'https://ror.org/02gtbcv54 Nexam Chemical (Sweden)'),
(29777, 'https://ror.org/03jcmr522', 'no_lang_code', 1, 'https://ror.org/03jcmr522 re8 Bioplastics (Sweden)'),
(29778, 'https://ror.org/02zhy2e32', 'no_lang_code', 1, 'https://ror.org/02zhy2e32 Sigolis (Sweden)'),
(29779, 'https://ror.org/04cj0jk63', 'de', 1, 'https://ror.org/04cj0jk63 Landesmuseum KƤrnten'),
(29780, 'https://ror.org/03516qg53', 'no_lang_code', 1, 'https://ror.org/03516qg53 Ngenic (Sweden)'),
(29781, 'https://ror.org/01ks4mk39', 'no_lang_code', 1, 'https://ror.org/01ks4mk39 Realtime Embedded (Sweden)'),
(29782, 'https://ror.org/058hg4545', 'no_lang_code', 1, 'https://ror.org/058hg4545 Simris Alg (Sweden)'),
(29783, 'https://ror.org/03fb0b548', 'en', 1, 'https://ror.org/03fb0b548 Austrian State Archives Ɩsterreichisches Staatsarchiv'),
(29784, 'https://ror.org/00hcek131', 'no_lang_code', 1, 'https://ror.org/00hcek131 SimWay (Sweden)'),
(29785, 'https://ror.org/02wkxng78', 'no_lang_code', 1, 'https://ror.org/02wkxng78 RecondOil (Sweden)'),
(29786, 'https://ror.org/05g5zwf18', 'no_lang_code', 1, 'https://ror.org/05g5zwf18 Sioxmachines (Sweden)'),
(29787, 'https://ror.org/02fmdkd55', 'no_lang_code', 1, 'https://ror.org/02fmdkd55 Nibie Ab (Sweden)'),
(29788, 'https://ror.org/037v60n25', 'no_lang_code', 1, 'https://ror.org/037v60n25 Recorded Future (Sweden)'),
(29789, 'https://ror.org/01b242r72', 'no_lang_code', 1, 'https://ror.org/01b242r72 Sirona Health Solutions (Sweden)'),
(29790, 'https://ror.org/0463x0716', 'no_lang_code', 1, 'https://ror.org/0463x0716 Red Glead Discovery (Sweden)'),
(29791, 'https://ror.org/01ajjyg96', 'en', 1, 'https://ror.org/01ajjyg96 Swedish Standards Institute'),
(29792, 'https://ror.org/035tsx707', 'en', 1, 'https://ror.org/035tsx707 Swedish Incubators & Science Parks'),
(29793, 'https://ror.org/00snhrb56', 'sv', 1, 'https://ror.org/00snhrb56 SkƄne Food Innovation Network SkƄnes Livsmedelsakademi'),
(29794, 'https://ror.org/02vmvtc06', 'no_lang_code', 1, 'https://ror.org/02vmvtc06 Redoxis (Sweden)'),
(29795, 'https://ror.org/03v5h9q93', 'no_lang_code', 1, 'https://ror.org/03v5h9q93 Redsense Medical (Sweden)'),
(29796, 'https://ror.org/02pse1737', 'no_lang_code', 1, 'https://ror.org/02pse1737 Redwood Pharma (Sweden)'),
(29797, 'https://ror.org/00zsnqw46', 'en', 1, 'https://ror.org/00zsnqw46 Austrian Museum of Folk Life and Folk Art Ɩsterreichisches Museum für Volkskunde'),
(29798, 'https://ror.org/05e4gqg94', 'en', 1, 'https://ror.org/05e4gqg94 County Administrative Board of Stockholm'),
(29799, 'https://ror.org/01a2jte10', 'en', 1, 'https://ror.org/01a2jte10 Skƶvde Municipality'),
(29800, 'https://ror.org/01r8d0v51', 'no_lang_code', 1, 'https://ror.org/01r8d0v51 Nobel Museum'),
(29801, 'https://ror.org/038h81468', 'no_lang_code', 1, 'https://ror.org/038h81468 ReformTech (Sweden)'),
(29802, 'https://ror.org/01k8fjb77', 'no_lang_code', 1, 'https://ror.org/01k8fjb77 OverHorizon (Sweden)'),
(29803, 'https://ror.org/01zcfag54', 'no_lang_code', 1, 'https://ror.org/01zcfag54 Smart Eye (Sweden)'),
(29804, 'https://ror.org/034csv258', 'sv', 1, 'https://ror.org/034csv258 ƖvertorneĆ„ Municipality'),
(29805, 'https://ror.org/04a0z4y72', 'no_lang_code', 1, 'https://ror.org/04a0z4y72 Nordic Aircraft (Sweden)'),
(29806, 'https://ror.org/01f5v9z11', 'en', 1, 'https://ror.org/01f5v9z11 Swedish Network for Innovation & Technology Transfer Support'),
(29807, 'https://ror.org/045yq4549', 'no_lang_code', 1, 'https://ror.org/045yq4549 LC-Tec Displays (Sweden)'),
(29808, 'https://ror.org/026yx1y36', 'no_lang_code', 1, 'https://ror.org/026yx1y36 Ozma (Sweden)'),
(29809, 'https://ror.org/042zqj962', 'no_lang_code', 1, 'https://ror.org/042zqj962 Nordic Medcom (Sweden)'),
(29810, 'https://ror.org/011hf9620', 'no_lang_code', 1, 'https://ror.org/011hf9620 Nordic Paper (Sweden)'),
(29811, 'https://ror.org/028g62054', 'no_lang_code', 1, 'https://ror.org/028g62054 Replisaurus Technologies (Sweden)'),
(29812, 'https://ror.org/053met561', 'no_lang_code', 1, 'https://ror.org/053met561 RetCorr (Sweden)'),
(29813, 'https://ror.org/01e5nrv58', 'no_lang_code', 1, 'https://ror.org/01e5nrv58 Parans (Sweden)'),
(29814, 'https://ror.org/0193tbt93', 'no_lang_code', 1, 'https://ror.org/0193tbt93 Nordiq (Sweden)'),
(29815, 'https://ror.org/03ejgvq45', 'no_lang_code', 1, 'https://ror.org/03ejgvq45 ReTreck (Sweden)'),
(29816, 'https://ror.org/019gpcj13', 'en', 1, 'https://ror.org/019gpcj13 Patent- och registreringsverket Ruotsin patentti- ja rekisterivirasto Swedish Patent and Registration Office'),
(29817, 'https://ror.org/0467qa071', 'en', 1, 'https://ror.org/0467qa071 Nordic Museum'),
(29818, 'https://ror.org/05b09zv71', 'no_lang_code', 1, 'https://ror.org/05b09zv71 Lembke Elektromekaniska Verkstad (Sweden)'),
(29819, 'https://ror.org/02a9kj848', 'en', 1, 'https://ror.org/02a9kj848 SƶdertƤlje Municipality'),
(29820, 'https://ror.org/031422186', 'sv', 1, 'https://ror.org/031422186 Norrkƶping Science Park'),
(29821, 'https://ror.org/051mn7g75', 'en', 1, 'https://ror.org/051mn7g75 Peepoople'),
(29822, 'https://ror.org/04xh4sy96', 'no_lang_code', 1, 'https://ror.org/04xh4sy96 Sƶdra SkogsƤgarna (Sweden)'),
(29823, 'https://ror.org/04d9sry41', 'no_lang_code', 1, 'https://ror.org/04d9sry41 Novosense (Sweden)'),
(29824, 'https://ror.org/03xrrsn68', 'no_lang_code', 1, 'https://ror.org/03xrrsn68 Riksteatern (Sweden)'),
(29825, 'https://ror.org/00td2g412', 'no_lang_code', 1, 'https://ror.org/00td2g412 Softronic (Sweden)'),
(29826, 'https://ror.org/02b2hzg62', 'sv', 1, 'https://ror.org/02b2hzg62 Rinkebyakademien'),
(29827, 'https://ror.org/01gffq935', 'no_lang_code', 1, 'https://ror.org/01gffq935 Nyfors (Sweden)'),
(29828, 'https://ror.org/02vs70k74', 'en', 1, 'https://ror.org/02vs70k74 Malmƶ Municipality'),
(29829, 'https://ror.org/02p3nxd53', 'no_lang_code', 1, 'https://ror.org/02p3nxd53 Penny (Sweden)'),
(29830, 'https://ror.org/00gtk7t05', 'no_lang_code', 1, 'https://ror.org/00gtk7t05 RLS Global (Sweden)'),
(29831, 'https://ror.org/00be47m52', 'no_lang_code', 1, 'https://ror.org/00be47m52 Perimed (Sweden)'),
(29832, 'https://ror.org/03tz2a620', 'en', 1, 'https://ror.org/03tz2a620 Lund Municipality'),
(29833, 'https://ror.org/01dhnm219', 'no_lang_code', 1, 'https://ror.org/01dhnm219 Solvatten (Sweden)'),
(29834, 'https://ror.org/03d7pcc67', 'no_lang_code', 1, 'https://ror.org/03d7pcc67 Oatly (Sweden)'),
(29835, 'https://ror.org/02f7dt951', 'no_lang_code', 1, 'https://ror.org/02f7dt951 RTI (Sweden)'),
(29836, 'https://ror.org/03fkfs504', 'en', 1, 'https://ror.org/03fkfs504 LuleƄ Municipality'),
(29837, 'https://ror.org/02q3ges18', 'no_lang_code', 1, 'https://ror.org/02q3ges18 Ɩhlins (Sweden)'),
(29838, 'https://ror.org/058bh7p93', 'de', 1, 'https://ror.org/058bh7p93 Pflanzensoziologische Institut'),
(29839, 'https://ror.org/054ym8s18', 'no_lang_code', 1, 'https://ror.org/054ym8s18 SƄgCenter (Sweden)'),
(29840, 'https://ror.org/04wcab306', 'no_lang_code', 1, 'https://ror.org/04wcab306 Photidify (Sweden)'),
(29841, 'https://ror.org/019naky64', 'no_lang_code', 1, 'https://ror.org/019naky64 PricewaterhouseCoopers (Sweden)'),
(29842, 'https://ror.org/01ddf6k31', 'no_lang_code', 1, 'https://ror.org/01ddf6k31 Omnisys Instruments (Sweden)'),
(29843, 'https://ror.org/05em4qg89', 'no_lang_code', 1, 'https://ror.org/05em4qg89 Piab (Sweden)'),
(29844, 'https://ror.org/05h6bgs51', 'no_lang_code', 1, 'https://ror.org/05h6bgs51 Samtrafiken (Sweden)'),
(29845, 'https://ror.org/03vcrdp23', 'no_lang_code', 1, 'https://ror.org/03vcrdp23 Oneday Wall (Sweden)'),
(29846, 'https://ror.org/019r2ty74', 'no_lang_code', 1, 'https://ror.org/019r2ty74 OpenEye (Sweden)'),
(29847, 'https://ror.org/01sbpwv26', 'no_lang_code', 1, 'https://ror.org/01sbpwv26 Plasmatrix (Sweden)'),
(29848, 'https://ror.org/03jvnsg56', 'no_lang_code', 1, 'https://ror.org/03jvnsg56 Saplo (Sweden)'),
(29849, 'https://ror.org/00md1r011', 'no_lang_code', 1, 'https://ror.org/00md1r011 SARomics Biostructures (Sweden)'),
(29850, 'https://ror.org/04y3y3z32', 'no_lang_code', 1, 'https://ror.org/04y3y3z32 ScandiDos (Sweden)'),
(29851, 'https://ror.org/00mh3mf48', 'no_lang_code', 1, 'https://ror.org/00mh3mf48 Centriair (Sweden)'),
(29852, 'https://ror.org/05mc52190', 'no_lang_code', 1, 'https://ror.org/05mc52190 Polymer Factory (Sweden)'),
(29853, 'https://ror.org/03vftr423', 'en', 1, 'https://ror.org/03vftr423 Entrepreneurship and Small Business Research Institute'),
(29854, 'https://ror.org/015dgkc47', 'en', 1, 'https://ror.org/015dgkc47 Mathleaks'),
(29855, 'https://ror.org/002av1788', 'no_lang_code', 1, 'https://ror.org/002av1788 Scanscot Technology (Sweden)'),
(29856, 'https://ror.org/02tr21n67', 'en', 1, 'https://ror.org/02tr21n67 Internet Foundation In Sweden'),
(29857, 'https://ror.org/019a9pq44', 'no_lang_code', 1, 'https://ror.org/019a9pq44 Schemagi (Sweden)'),
(29858, 'https://ror.org/0226hy875', 'no_lang_code', 1, 'https://ror.org/0226hy875 Minesto (Sweden)'),
(29859, 'https://ror.org/022t45q87', 'no_lang_code', 1, 'https://ror.org/022t45q87 Marstrom Composite (Sweden)'),
(29860, 'https://ror.org/04kqrq649', 'no_lang_code', 1, 'https://ror.org/04kqrq649 PP Polymer (Sweden)'),
(29861, 'https://ror.org/03ye3kp90', 'no_lang_code', 1, 'https://ror.org/03ye3kp90 Sciss (Sweden)'),
(29862, 'https://ror.org/008dxar67', 'no_lang_code', 1, 'https://ror.org/008dxar67 Scint-X (Sweden)'),
(29863, 'https://ror.org/05na5dm15', 'no_lang_code', 1, 'https://ror.org/05na5dm15 Precise Biometrics (Sweden) ē²¾ęŗ–ē”Ÿē‰©č­˜åˆ„å…¬'),
(29864, 'https://ror.org/025nk1308', 'no_lang_code', 1, 'https://ror.org/025nk1308 Sectra (Sweden)'),
(29865, 'https://ror.org/05x6xky11', 'no_lang_code', 1, 'https://ror.org/05x6xky11 Predect (Sweden)'),
(29866, 'https://ror.org/04jeg4294', 'en', 1, 'https://ror.org/04jeg4294 Ideon Agro Food'),
(29867, 'https://ror.org/05e1qed59', 'en', 1, 'https://ror.org/05e1qed59 Leading Health Care'),
(29868, 'https://ror.org/01rckyv04', 'en', 1, 'https://ror.org/01rckyv04 Austrian Society for Cybernetic Studies Ɩsterreichische Studiengesellschaft für Kybernetik'),
(29869, 'https://ror.org/038fabn80', 'sv', 1, 'https://ror.org/038fabn80 Stiftelsen Marknadstekniskt Centrum'),
(29870, 'https://ror.org/0327kb204', 'no_lang_code', 1, 'https://ror.org/0327kb204 Limes Audio (Sweden)'),
(29871, 'https://ror.org/04r3dvv20', 'no_lang_code', 1, 'https://ror.org/04r3dvv20 Selden Mast (Sweden)'),
(29872, 'https://ror.org/021jhha43', 'no_lang_code', 1, 'https://ror.org/021jhha43 Senionlab (Sweden)'),
(29873, 'https://ror.org/010ees266', 'no_lang_code', 1, 'https://ror.org/010ees266 Sweco (Sweden)'),
(29874, 'https://ror.org/03rkwjs94', 'no_lang_code', 1, 'https://ror.org/03rkwjs94 SensAbues (Sweden)'),
(29875, 'https://ror.org/00np88202', 'en', 1, 'https://ror.org/00np88202 Swedish Industrial Design Foundation'),
(29876, 'https://ror.org/01aefzx37', 'en', 1, 'https://ror.org/01aefzx37 Sweden-Japan Foundation'),
(29877, 'https://ror.org/03ksgnr33', 'en', 1, 'https://ror.org/03ksgnr33 SwedenBIO'),
(29878, 'https://ror.org/05w9z6s63', 'sv', 1, 'https://ror.org/05w9z6s63 Swecare'),
(29879, 'https://ror.org/05100e415', 'en', 1, 'https://ror.org/05100e415 Venture Cup'),
(29880, 'https://ror.org/0235jt055', 'no_lang_code', 1, 'https://ror.org/0235jt055 Swedish Electroforming Technology (Sweden)'),
(29881, 'https://ror.org/04g0qyf70', 'no_lang_code', 1, 'https://ror.org/04g0qyf70 TopVisible (Sweden)'),
(29882, 'https://ror.org/04dz3dj65', 'no_lang_code', 1, 'https://ror.org/04dz3dj65 Totech (Sweden)'),
(29883, 'https://ror.org/0313w9h47', 'en', 1, 'https://ror.org/0313w9h47 Swedish House of Finance'),
(29884, 'https://ror.org/04rcsw002', 'no_lang_code', 1, 'https://ror.org/04rcsw002 Lumina (Sweden)'),
(29885, 'https://ror.org/04az2a138', 'en', 1, 'https://ror.org/04az2a138 Stockholm Science City Foundation'),
(29886, 'https://ror.org/03fcp6428', 'no_lang_code', 1, 'https://ror.org/03fcp6428 Low Vision International (Sweden)'),
(29887, 'https://ror.org/00p3jpt93', 'no_lang_code', 1, 'https://ror.org/00p3jpt93 Touchtech (Sweden)'),
(29888, 'https://ror.org/01a1mp446', 'en', 1, 'https://ror.org/01a1mp446 Stockholm Innovation & Growth'),
(29889, 'https://ror.org/04b621m59', 'en', 1, 'https://ror.org/04b621m59 Stockholm School of Entrepreneurship'),
(29890, 'https://ror.org/02aj8hb75', 'no_lang_code', 1, 'https://ror.org/02aj8hb75 Trade Extensions (Sweden)'),
(29891, 'https://ror.org/02zh48v40', 'no_lang_code', 1, 'https://ror.org/02zh48v40 Magle (Sweden)'),
(29892, 'https://ror.org/04q6d4d25', 'en', 1, 'https://ror.org/04q6d4d25 Istituto Svedese di studi classici a Roma Swedish Institute in Rome'),
(29893, 'https://ror.org/050dxn033', 'no_lang_code', 1, 'https://ror.org/050dxn033 Street Smart Equipment (Sweden)'),
(29894, 'https://ror.org/005rnxx75', 'en', 1, 'https://ror.org/005rnxx75 Swedish Medtech'),
(29895, 'https://ror.org/05emypz02', 'no_lang_code', 1, 'https://ror.org/05emypz02 Transformator Design (Sweden)'),
(29896, 'https://ror.org/03fqmv203', 'no_lang_code', 1, 'https://ror.org/03fqmv203 Starmonde Publishing Group'),
(29897, 'https://ror.org/04zgyz643', 'no_lang_code', 1, 'https://ror.org/04zgyz643 Uppdragshuset (Sweden)'),
(29898, 'https://ror.org/01a0wa442', 'en', 1, 'https://ror.org/01a0wa442 Student Competitions'),
(29899, 'https://ror.org/03snrcf80', 'no_lang_code', 1, 'https://ror.org/03snrcf80 Staccato Technologies (Sweden)'),
(29900, 'https://ror.org/021yrfz74', 'no_lang_code', 1, 'https://ror.org/021yrfz74 SemLab (Netherlands)'),
(29901, 'https://ror.org/033khx691', 'no_lang_code', 1, 'https://ror.org/033khx691 Uson Marine (Sweden)'),
(29902, 'https://ror.org/05ea73r86', 'no_lang_code', 1, 'https://ror.org/05ea73r86 Spotscale (Sweden)'),
(29903, 'https://ror.org/04ms6qb33', 'no_lang_code', 1, 'https://ror.org/04ms6qb33 STUNS'),
(29904, 'https://ror.org/03t00e535', 'en', 1, 'https://ror.org/03t00e535 Sport Support Center'),
(29905, 'https://ror.org/01vyraz80', 'no_lang_code', 1, 'https://ror.org/01vyraz80 DSM (Sweden)'),
(29906, 'https://ror.org/01jwwmn11', 'no_lang_code', 1, 'https://ror.org/01jwwmn11 SwedNanoTech (Sweden)'),
(29907, 'https://ror.org/04904kp41', 'no_lang_code', 1, 'https://ror.org/04904kp41 Spiber Technologies (Sweden)'),
(29908, 'https://ror.org/04ngjd421', 'no_lang_code', 1, 'https://ror.org/04ngjd421 Uminova Innovation (Sweden)'),
(29909, 'https://ror.org/03x41sw74', 'no_lang_code', 1, 'https://ror.org/03x41sw74 Surgical Science (Sweden)'),
(29910, 'https://ror.org/00pyb4029', 'no_lang_code', 1, 'https://ror.org/00pyb4029 Sustainable Business Hub (Sweden)'),
(29911, 'https://ror.org/00awy7q97', 'en', 1, 'https://ror.org/00awy7q97 Swedish Institute of International Affairs'),
(29912, 'https://ror.org/013g40c36', 'no_lang_code', 1, 'https://ror.org/013g40c36 Sysav South Scania Waste (Sweden)'),
(29913, 'https://ror.org/00ng3qf76', 'no_lang_code', 1, 'https://ror.org/00ng3qf76 Uv Tech (Sweden)'),
(29914, 'https://ror.org/02e9qns56', 'no_lang_code', 1, 'https://ror.org/02e9qns56 Sustainable Innovation (Sweden)'),
(29915, 'https://ror.org/03a96q734', 'no_lang_code', 1, 'https://ror.org/03a96q734 Syntronic (Sweden)'),
(29916, 'https://ror.org/01zgavk21', 'no_lang_code', 1, 'https://ror.org/01zgavk21 Tacton Systems (Sweden)'),
(29917, 'https://ror.org/043v5mq85', 'en', 1, 'https://ror.org/043v5mq85 Sustainable Sweden Southeast'),
(29918, 'https://ror.org/04yz0ht31', 'no_lang_code', 1, 'https://ror.org/04yz0ht31 SpaceTime Communication (Sweden)'),
(29919, 'https://ror.org/0135d5q90', 'no_lang_code', 1, 'https://ror.org/0135d5q90 Valueguard (Sweden)'),
(29920, 'https://ror.org/04t2cp653', 'no_lang_code', 1, 'https://ror.org/04t2cp653 Spacescape (Sweden)'),
(29921, 'https://ror.org/01tgdj837', 'no_lang_code', 1, 'https://ror.org/01tgdj837 Taiga (Sweden)'),
(29922, 'https://ror.org/01m05qy31', 'sv', 1, 'https://ror.org/01m05qy31 Svensk FƄgel Service'),
(29923, 'https://ror.org/04f4r6066', 'no_lang_code', 1, 'https://ror.org/04f4r6066 Talentum (Sweden)'),
(29924, 'https://ror.org/01ngvra90', 'no_lang_code', 1, 'https://ror.org/01ngvra90 Sony Digital Audio Disc Corporation (Austria)'),
(29925, 'https://ror.org/001c1n781', 'no_lang_code', 1, 'https://ror.org/001c1n781 TƤrnsjƶ Garveri (Sweden)'),
(29926, 'https://ror.org/02fm3s653', 'sv', 1, 'https://ror.org/02fm3s653 Svensk Form'),
(29927, 'https://ror.org/03yw8ff53', 'no_lang_code', 1, 'https://ror.org/03yw8ff53 TechMarket (Sweden)'),
(29928, 'https://ror.org/00gfsxd52', 'sv', 1, 'https://ror.org/00gfsxd52 Svensk Kollektivtrafik'),
(29929, 'https://ror.org/025t5fr72', 'no_lang_code', 1, 'https://ror.org/025t5fr72 Viscogel (Sweden)'),
(29930, 'https://ror.org/015wjxy04', 'no_lang_code', 1, 'https://ror.org/015wjxy04 Teknikfƶretagen (Sweden)'),
(29931, 'https://ror.org/014vgfm17', 'no_lang_code', 1, 'https://ror.org/014vgfm17 Unomaly (Sweden)'),
(29932, 'https://ror.org/0566crb40', 'en', 1, 'https://ror.org/0566crb40 French-Swedish Research Association'),
(29933, 'https://ror.org/00wz44k82', 'no_lang_code', 1, 'https://ror.org/00wz44k82 VBN Components (Sweden)'),
(29934, 'https://ror.org/0519hrc61', 'sv', 1, 'https://ror.org/0519hrc61 Tekniska Hƶgskolans StudentkƄr'),
(29935, 'https://ror.org/058b4nw61', 'sv', 1, 'https://ror.org/058b4nw61 Teknopol'),
(29936, 'https://ror.org/0353xr267', 'no_lang_code', 1, 'https://ror.org/0353xr267 Visita Service (Sweden)'),
(29937, 'https://ror.org/05gc32295', 'no_lang_code', 1, 'https://ror.org/05gc32295 Telcred (Sweden)'),
(29938, 'https://ror.org/04mgr5526', 'no_lang_code', 1, 'https://ror.org/04mgr5526 Svenska Aerogel (Sweden)'),
(29939, 'https://ror.org/01f55nv10', 'no_lang_code', 1, 'https://ror.org/01f55nv10 Vitrolife (Sweden)'),
(29940, 'https://ror.org/02rf9jr43', 'en', 1, 'https://ror.org/02rf9jr43 Austrian Association of Women Artists Vereinigung bildender Künstlerinnen Ɩsterreichs'),
(29941, 'https://ror.org/00mag5698', 'no_lang_code', 1, 'https://ror.org/00mag5698 Vivoline Medical (Sweden)'),
(29942, 'https://ror.org/0586v7c76', 'no_lang_code', 1, 'https://ror.org/0586v7c76 Thermal Systems Technology (Sweden)'),
(29943, 'https://ror.org/047hn5n73', 'no_lang_code', 1, 'https://ror.org/047hn5n73 Elforsk (Sweden)'),
(29944, 'https://ror.org/03x50jr04', 'no_lang_code', 1, 'https://ror.org/03x50jr04 Terrigio (Sweden)'),
(29945, 'https://ror.org/00ks8df69', 'no_lang_code', 1, 'https://ror.org/00ks8df69 Verendus System (Sweden)'),
(29946, 'https://ror.org/01pwte708', 'no_lang_code', 1, 'https://ror.org/01pwte708 Verlag Holzhausen (Austria)'),
(29947, 'https://ror.org/02gw53818', 'no_lang_code', 1, 'https://ror.org/02gw53818 Veryday (Sweden)'),
(29948, 'https://ror.org/02mkhvn23', 'no_lang_code', 1, 'https://ror.org/02mkhvn23 Voxway (Sweden)'),
(29949, 'https://ror.org/015jn0h55', 'en', 1, 'https://ror.org/015jn0h55 Public and Science'),
(29950, 'https://ror.org/030417565', 'no_lang_code', 1, 'https://ror.org/030417565 VSL Systems (Sweden)'),
(29951, 'https://ror.org/050enm509', 'no_lang_code', 1, 'https://ror.org/050enm509 Watersprint (Sweden)'),
(29952, 'https://ror.org/02ry1ef38', 'no_lang_code', 1, 'https://ror.org/02ry1ef38 Vigor Wave Energy (Sweden)'),
(29953, 'https://ror.org/00qc9cw63', 'no_lang_code', 1, 'https://ror.org/00qc9cw63 Vironova (Sweden)'),
(29954, 'https://ror.org/00m3nhd65', 'en', 1, 'https://ror.org/00m3nhd65 The Natural Step'),
(29955, 'https://ror.org/036wp9g51', 'en', 1, 'https://ror.org/036wp9g51 Vienna Wiesenthal Institute for Holocaust Studies'),
(29956, 'https://ror.org/028hvvb93', 'sv', 1, 'https://ror.org/028hvvb93 Svenska Uppfinnarefƶreningen'),
(29957, 'https://ror.org/02r1k0x59', 'en', 1, 'https://ror.org/02r1k0x59 Packaging Arena'),
(29958, 'https://ror.org/05d54dv30', 'no_lang_code', 1, 'https://ror.org/05d54dv30 Viscando Traffic Systems (Sweden)'),
(29959, 'https://ror.org/034gqf495', 'no_lang_code', 1, 'https://ror.org/034gqf495 Wattguard (Sweden)'),
(29960, 'https://ror.org/0364wnh23', 'en', 1, 'https://ror.org/0364wnh23 Swedish Maritime Technology Forum'),
(29961, 'https://ror.org/05kz03q36', 'no_lang_code', 1, 'https://ror.org/05kz03q36 WindVector'),
(29962, 'https://ror.org/00ktc0z93', 'no_lang_code', 1, 'https://ror.org/00ktc0z93 Timars (Sweden)'),
(29963, 'https://ror.org/04nderh91', 'no_lang_code', 1, 'https://ror.org/04nderh91 Time Critical Networks (Sweden)'),
(29964, 'https://ror.org/04wgeqw93', 'no_lang_code', 1, 'https://ror.org/04wgeqw93 Winterkvist.com (Sweden)'),
(29965, 'https://ror.org/016n3e076', 'no_lang_code', 1, 'https://ror.org/016n3e076 Wiotech (Sweden)'),
(29966, 'https://ror.org/048qkq105', 'en', 1, 'https://ror.org/048qkq105 Wolfgang Pauli Institute'),
(29967, 'https://ror.org/00y9e9y23', 'no_lang_code', 1, 'https://ror.org/00y9e9y23 4C Strategies (Sweden)'),
(29968, 'https://ror.org/01zyxxc50', 'no_lang_code', 1, 'https://ror.org/01zyxxc50 Wolfram MathCore (Sweden)'),
(29969, 'https://ror.org/03r0pj309', 'en', 1, 'https://ror.org/03r0pj309 Wolf Science Center'),
(29970, 'https://ror.org/004znts92', 'no_lang_code', 1, 'https://ror.org/004znts92 Tomologic (Sweden)'),
(29971, 'https://ror.org/01v01a242', 'no_lang_code', 1, 'https://ror.org/01v01a242 Xbrane Biopharma (Sweden)'),
(29972, 'https://ror.org/03e8kpv69', 'no_lang_code', 1, 'https://ror.org/03e8kpv69 XCounter (Sweden)'),
(29973, 'https://ror.org/02asacd21', 'no_lang_code', 1, 'https://ror.org/02asacd21 QPS (Netherlands)'),
(29974, 'https://ror.org/05qxk3m85', 'no_lang_code', 1, 'https://ror.org/05qxk3m85 Xylophane (Sweden)'),
(29975, 'https://ror.org/049g9p164', 'en', 1, 'https://ror.org/049g9p164 Austrian Research Agency for Post-War Justice'),
(29976, 'https://ror.org/0389wyq54', 'no_lang_code', 1, 'https://ror.org/0389wyq54 Aerocrine (Sweden)'),
(29977, 'https://ror.org/036e45z28', 'sv', 1, 'https://ror.org/036e45z28 AffƤrsutveckling fƶr BesƶksnƤringen'),
(29978, 'https://ror.org/0391xj275', 'no_lang_code', 1, 'https://ror.org/0391xj275 CoreCode International (Sweden)'),
(29979, 'https://ror.org/05k1j9p68', 'en', 1, 'https://ror.org/05k1j9p68 Scandinavian Automotive Supplier Association'),
(29980, 'https://ror.org/05snkc171', 'no_lang_code', 1, 'https://ror.org/05snkc171 IMPETUS Afea (Sweden)'),
(29981, 'https://ror.org/01687ga56', 'en', 1, 'https://ror.org/01687ga56 Museum of Work'),
(29982, 'https://ror.org/04nk9a874', 'no_lang_code', 1, 'https://ror.org/04nk9a874 Scandinavian Leadership (Sweden)'),
(29983, 'https://ror.org/03vt5je06', 'no_lang_code', 1, 'https://ror.org/03vt5je06 Scienta Scientific (Sweden)'),
(29984, 'https://ror.org/00c9zyz36', 'no_lang_code', 1, 'https://ror.org/00c9zyz36 Hive Streaming (Sweden)'),
(29985, 'https://ror.org/02jwtre75', 'sv', 1, 'https://ror.org/02jwtre75 Stiftelsen SKAPA'),
(29986, 'https://ror.org/02fa0f492', 'en', 1, 'https://ror.org/02fa0f492 United Nations University Institute on Comparative Regional Integration Studies'),
(29987, 'https://ror.org/02qy4xp49', 'no_lang_code', 1, 'https://ror.org/02qy4xp49 Stena Recycling (Sweden)'),
(29988, 'https://ror.org/02h67vt10', 'en', 1, 'https://ror.org/02h67vt10 Aintree University Hospitals NHS Foundation Trust'),
(29989, 'https://ror.org/040mzvg39', 'en', 1, 'https://ror.org/040mzvg39 PHI University Psychiatric Clinic - Skopje'),
(29990, 'https://ror.org/04bjdr366', 'en', 1, 'https://ror.org/04bjdr366 Institut Fur Friedensforschung Und Sicherheitspolitik Institute for Peace Research and Security Policy'),
(29991, 'https://ror.org/058a12170', 'en', 1, 'https://ror.org/058a12170 Royal Swedish Academy of Engineering Sciences'),
(29992, 'https://ror.org/044d35368', 'hu', 1, 'https://ror.org/044d35368 Damjanich JÔnos Múzeum'),
(29993, 'https://ror.org/00qtxnd58', 'en', 1, 'https://ror.org/00qtxnd58 Hungarian National Blood Transfusion Service'),
(29994, 'https://ror.org/03bvys615', 'hu', 1, 'https://ror.org/03bvys615 RÔday Gyűjtemény'),
(29995, 'https://ror.org/0119mwr04', 'en', 1, 'https://ror.org/0119mwr04 Hungarian Open air Museum'),
(29996, 'https://ror.org/00bdga736', 'no_lang_code', 1, 'https://ror.org/00bdga736 ImmunoGenes (Hungary)'),
(29997, 'https://ror.org/0317zr716', 'no_lang_code', 1, 'https://ror.org/0317zr716 Ethnographic Museum'),
(29998, 'https://ror.org/00sdyry80', 'en', 1, 'https://ror.org/00sdyry80 Museum of Hungarian Agriculture'),
(29999, 'https://ror.org/00x8a1s60', 'no_lang_code', 1, 'https://ror.org/00x8a1s60 Andritz (Canada)'),
(30000, 'https://ror.org/00epkt019', 'no_lang_code', 1, 'https://ror.org/00epkt019 Akadémiai Kiadó (Hungary)'),
(30001, 'https://ror.org/024vtv124', 'hu', 1, 'https://ror.org/024vtv124 Enciklopédia Kiadó'),
(30002, 'https://ror.org/03edyst18', 'en', 1, 'https://ror.org/03edyst18 Museum of Applied Arts'),
(30003, 'https://ror.org/00rd9q776', 'en', 1, 'https://ror.org/00rd9q776 Museum of Literature'),
(30004, 'https://ror.org/04yxrg865', 'no_lang_code', 1, 'https://ror.org/04yxrg865 Nap Kiadó (Hungary) Sun Publishing'),
(30005, 'https://ror.org/00snt7e27', 'no_lang_code', 1, 'https://ror.org/00snt7e27 FIKRA'),
(30006, 'https://ror.org/04mpce960', 'no_lang_code', 1, 'https://ror.org/04mpce960 NapvilƔg (Hungary)'),
(30007, 'https://ror.org/03fytgw96', 'no_lang_code', 1, 'https://ror.org/03fytgw96 Cegteszt (Hungary)'),
(30008, 'https://ror.org/04edzrx46', 'hu', 1, 'https://ror.org/04edzrx46 Forster Kƶzpont'),
(30009, 'https://ror.org/05g8eqe22', 'en', 1, 'https://ror.org/05g8eqe22 Federation of Technical and Scientific Societies'),
(30010, 'https://ror.org/010pdkv94', 'hu', 1, 'https://ror.org/010pdkv94 NógrÔd Megyei Múzeumi Szervezet'),
(30011, 'https://ror.org/05d3xzj88', 'hu', 1, 'https://ror.org/05d3xzj88 Jósa AndrÔs Múzeum'),
(30012, 'https://ror.org/00a4h2c62', 'en', 1, 'https://ror.org/00a4h2c62 Rippl-Rónai Museum'),
(30013, 'https://ror.org/013r6rv26', 'en', 1, 'https://ror.org/013r6rv26 Foundation for Market Economy'),
(30014, 'https://ror.org/05hvam844', 'en', 1, 'https://ror.org/05hvam844 Anti-Doping Laboratory'),
(30015, 'https://ror.org/02aadsr63', 'en', 1, 'https://ror.org/02aadsr63 Independent Ecological Centre'),
(30016, 'https://ror.org/02tvhnn50', 'hu', 1, 'https://ror.org/02tvhnn50 KÔrolyi SÔndor KórhÔz'),
(30017, 'https://ror.org/00e2yw845', 'no_lang_code', 1, 'https://ror.org/00e2yw845 Archaeolingua Foundation'),
(30018, 'https://ror.org/047an3241', 'en', 1, 'https://ror.org/047an3241 Supreme Council Of Health'),
(30019, 'https://ror.org/01yykey67', 'no_lang_code', 1, 'https://ror.org/01yykey67 General Electric (Qatar)'),
(30020, 'https://ror.org/01q5qh616', 'hu', 1, 'https://ror.org/01q5qh616 Kecskeméti Katona József Múzeum'),
(30021, 'https://ror.org/0267rbx05', 'hu', 1, 'https://ror.org/0267rbx05 BaƔr-Madas ReformƔtus GimnƔzium'),
(30022, 'https://ror.org/029e47x73', 'en', 1, 'https://ror.org/029e47x73 Georgetown University in Qatar Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁˆŲ±Ų¬ŲŖŲ§ŁˆŁ†'),
(30023, 'https://ror.org/040kxva36', 'hu', 1, 'https://ror.org/040kxva36 Atlantisz AlapƭtvƔny'),
(30024, 'https://ror.org/054586n40', 'en', 1, 'https://ror.org/054586n40 Gƶcseji Museum'),
(30025, 'https://ror.org/043ydgy90', 'no_lang_code', 1, 'https://ror.org/043ydgy90 Gondolat Publishing (Hungary)'),
(30026, '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'),
(30027, 'https://ror.org/042a7gm30', 'hu', 1, 'https://ror.org/042a7gm30 Korall TÔrsadalomtörténeti Folyóirat'),
(30028, 'https://ror.org/00jdqa737', 'en', 1, 'https://ror.org/00jdqa737 Research and Development for Silicates and Ceramics'),
(30029, 'https://ror.org/0337t4k55', 'hu', 1, 'https://ror.org/0337t4k55 OrszƔgos LelkipƔsztori IntƩzet'),
(30030, 'https://ror.org/04dzt3j15', 'no_lang_code', 1, 'https://ror.org/04dzt3j15 Osiris (Hungary)'),
(30031, 'https://ror.org/032he5k36', 'no_lang_code', 1, 'https://ror.org/032he5k36 KortÔrs Könyvkiadói (Hungary)'),
(30032, 'https://ror.org/05evyfq09', 'en', 1, 'https://ror.org/05evyfq09 Balassi Institute'),
(30033, 'https://ror.org/006kyfp82', 'hu', 1, 'https://ror.org/006kyfp82 Deri Muzeum'),
(30034, 'https://ror.org/00jf79q69', 'no_lang_code', 1, 'https://ror.org/00jf79q69 Financial Research (Hungary)'),
(30035, 'https://ror.org/04sa7fj09', 'hu', 1, 'https://ror.org/04sa7fj09 Teleki LÔszló AlapítvÔny'),
(30036, 'https://ror.org/03k5d2j20', 'no_lang_code', 1, 'https://ror.org/03k5d2j20 Balassi Kiadó (Hungary)'),
(30037, 'https://ror.org/041h2kk78', 'hu', 1, 'https://ror.org/041h2kk78 Pest Megyei Múzeumok IgazgatósÔga'),
(30038, 'https://ror.org/04qrrwn88', 'hu', 1, 'https://ror.org/04qrrwn88 Piarista Rend Magyar TartomƔnya'),
(30039, 'https://ror.org/01f8jdn16', 'en', 1, 'https://ror.org/01f8jdn16 Historical Archives'),
(30040, 'https://ror.org/02z4rpq04', 'en', 1, 'https://ror.org/02z4rpq04 Ottó Herman Museum'),
(30041, 'https://ror.org/0256rxv90', 'en', 1, 'https://ror.org/0256rxv90 Economic Review Foundation'),
(30042, 'https://ror.org/048jjce41', 'hu', 1, 'https://ror.org/048jjce41 Hadtörténeti Intézet és Múzeum'),
(30043, 'https://ror.org/01t8r8650', 'no_lang_code', 1, 'https://ror.org/01t8r8650 Tinta (Hungary)'),
(30044, 'https://ror.org/002e77370', 'no_lang_code', 1, 'https://ror.org/002e77370 Brainvest (Hungary)'),
(30045, 'https://ror.org/05px8wc91', 'hu', 1, 'https://ror.org/05px8wc91 Tokaji BorvidĆ©k SzőlĆ©szeti Ć©s BorĆ”szati KutatóintĆ©zet'),
(30046, 'https://ror.org/05tw77m82', 'hu', 1, 'https://ror.org/05tw77m82 HortobƔgy National Park Directorate'),
(30047, 'https://ror.org/049835d66', 'no_lang_code', 1, 'https://ror.org/049835d66 Institute of Political History (Hungary)'),
(30048, 'https://ror.org/04kk7gt95', 'no_lang_code', 1, 'https://ror.org/04kk7gt95 Libri Kiadó (Hungary)'),
(30049, 'https://ror.org/05k78d918', 'no_lang_code', 1, 'https://ror.org/05k78d918 Typotex (Hungary)'),
(30050, 'https://ror.org/050hvq478', 'en', 1, 'https://ror.org/050hvq478 Budapest Institute'),
(30051, 'https://ror.org/05srg5036', 'en', 1, 'https://ror.org/05srg5036 Hungarian Institute for Educational Research and Development'),
(30052, 'https://ror.org/02ztj8667', 'en', 1, 'https://ror.org/02ztj8667 Royal Irgalmasrendi Hospital'),
(30053, 'https://ror.org/019ejtj82', 'en', 1, 'https://ror.org/019ejtj82 Budapest History Museum'),
(30054, 'https://ror.org/00sfss216', 'hu', 1, 'https://ror.org/00sfss216 Magyar KƶzgazdasƔgi TƔrsasƔg'),
(30055, 'https://ror.org/00az5dt38', 'en', 1, 'https://ror.org/00az5dt38 Carnegie Mellon University Qatar'),
(30056, 'https://ror.org/02vbgbc26', 'en', 1, 'https://ror.org/02vbgbc26 Hungarian National Gallery'),
(30057, 'https://ror.org/038vyt185', 'en', 1, 'https://ror.org/038vyt185 Qatar Cardiovascular Research Center'),
(30058, 'https://ror.org/0050hxg48', 'en', 1, 'https://ror.org/0050hxg48 Hungarian Sociological Association'),
(30059, 'https://ror.org/03axpa761', 'hu', 1, 'https://ror.org/03axpa761 Budapest City Archives'),
(30060, 'https://ror.org/04ehqrw09', 'en', 1, 'https://ror.org/04ehqrw09 Institute for Foreign Affairs and Trade'),
(30061, 'https://ror.org/01k999n94', 'en', 1, 'https://ror.org/01k999n94 University of Calgary in Qatar'),
(30062, 'https://ror.org/058k59m52', 'en', 1, 'https://ror.org/058k59m52 Queen Medical'),
(30063, 'https://ror.org/036mae937', 'no_lang_code', 1, 'https://ror.org/036mae937 Cereal Research (Hungary)'),
(30064, 'https://ror.org/02xqtsp69', 'hu', 1, 'https://ror.org/02xqtsp69 Móra Ferenc Múzeum'),
(30065, 'https://ror.org/0052cdv44', 'no_lang_code', 1, 'https://ror.org/0052cdv44 RÔció Kiadói (Hungary)'),
(30066, 'https://ror.org/027npbp21', 'hu', 1, 'https://ror.org/027npbp21 Vas Megyei KormƔnyhivatalt'),
(30067, 'https://ror.org/02nmsd267', 'en', 1, 'https://ror.org/02nmsd267 Coastal Oceans Research and Development in the Indian Ocean'),
(30068, 'https://ror.org/05pqqge35', 'en', 1, 'https://ror.org/05pqqge35 Anhui Mental Health Center å®‰å¾½ēœē²¾ē„žå«ē”Ÿé˜²ę²»äø­åæƒ'),
(30069, 'https://ror.org/03g39em38', 'hu', 1, 'https://ror.org/03g39em38 Vermes Miklós OrszÔgos Fizikus TehetségÔpoló és Kutató AlapítvÔny'),
(30070, 'https://ror.org/020hpsx21', 'hu', 1, 'https://ror.org/020hpsx21 Civil RÔdió'),
(30071, 'https://ror.org/00k6x1e94', 'no_lang_code', 1, 'https://ror.org/00k6x1e94 VCUQatar'),
(30072, 'https://ror.org/01np3hz61', 'no_lang_code', 1, 'https://ror.org/01np3hz61 Silatech'),
(30073, 'https://ror.org/03wnqyy64', 'en', 1, 'https://ror.org/03wnqyy64 Netherlands Consortium for Healthy Ageing'),
(30074, 'https://ror.org/049fnxe71', 'en', 1, 'https://ror.org/049fnxe71 Bioprocessing Technology Institute'),
(30075, 'https://ror.org/042qrnq11', 'hu', 1, 'https://ror.org/042qrnq11 Society for the Dissemination of Scientific Knowledge TudomĆ”nyos Ismeretterjesztő TĆ”rsulat'),
(30076, 'https://ror.org/01j6fq995', 'en', 1, 'https://ror.org/01j6fq995 Wosinsky Mór County Museum'),
(30077, 'https://ror.org/00dpszj83', 'hu', 1, 'https://ror.org/00dpszj83 Magyar NyelvtudomƔnyi TƔrsasƔgot Society of Hungarian Linguistics'),
(30078, 'https://ror.org/01hgpf702', 'en', 1, 'https://ror.org/01hgpf702 Pan African Tsetse and Trypanosomiasis Eradication Campaign'),
(30079, 'https://ror.org/04kc9j928', 'no_lang_code', 1, 'https://ror.org/04kc9j928 Zöldségtermesztési Kutató Intézet (Hungary)'),
(30080, 'https://ror.org/03m3hse57', 'en', 1, 'https://ror.org/03m3hse57 Department of Environment, Land, Water and Planning'),
(30081, 'https://ror.org/048q23a93', 'en', 1, 'https://ror.org/048q23a93 Xuzhou Central Hospital'),
(30082, 'https://ror.org/004eknx63', 'en', 1, 'https://ror.org/004eknx63 Third Hospital of Hebei Medical University'),
(30083, 'https://ror.org/0132wmv23', 'en', 1, 'https://ror.org/0132wmv23 Changsha Central Hospital'),
(30084, 'https://ror.org/053staa05', 'en', 1, 'https://ror.org/053staa05 Anti Filariasis Campaign'),
(30085, 'https://ror.org/05eagc649', 'en', 1, 'https://ror.org/05eagc649 Central Institute for Experimental Animals å®ŸéØ“å‹•ē‰©äø­å¤®ē ”ē©¶ę‰€'),
(30086, 'https://ror.org/01wtjj434', 'en', 1, 'https://ror.org/01wtjj434 SKA Telescope, South Africa'),
(30087, 'https://ror.org/04ze64w44', 'en', 1, 'https://ror.org/04ze64w44 Changzhou Third People''s Hospital'),
(30088, 'https://ror.org/05b2t8s27', 'en', 1, 'https://ror.org/05b2t8s27 Bavarian Forest National Park Nationalpark Bayerischer Wald'),
(30089, 'https://ror.org/04gp12571', 'no_lang_code', 1, 'https://ror.org/04gp12571 ChemoCentryx (United States)'),
(30090, 'https://ror.org/00344m990', 'no_lang_code', 1, 'https://ror.org/00344m990 Chenomx (Canada)'),
(30091, 'https://ror.org/03npats33', 'en', 1, 'https://ror.org/03npats33 Blue Ventures'),
(30092, 'https://ror.org/01zmzpt10', 'en', 1, 'https://ror.org/01zmzpt10 Bangladesh Rice Research Institute বাংলাদেশ ধান গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(30093, 'https://ror.org/014zxhb96', 'en', 1, 'https://ror.org/014zxhb96 Accordia Global Health Foundation'),
(30094, 'https://ror.org/01448m136', 'en', 1, 'https://ror.org/01448m136 Bombay Veterinary College'),
(30095, 'https://ror.org/03s4kpx37', 'en', 1, 'https://ror.org/03s4kpx37 Chest Hospital, Ministry of Health and Welfare'),
(30096, 'https://ror.org/02krbn758', 'en', 1, 'https://ror.org/02krbn758 Botanical Society of Britain and Ireland'),
(30097, 'https://ror.org/031drvr68', 'en', 1, 'https://ror.org/031drvr68 Bali Psychiatric Center'),
(30098, 'https://ror.org/00m9ba392', 'no_lang_code', 1, 'https://ror.org/00m9ba392 Bahawal Victoria Hospital ŲØŪŲ§ŁˆŁ„ وکٹوریہ Ų³Ł¾ŲŖŲ§Ł„ā€¬ā€Ž,'),
(30099, 'https://ror.org/0315yxm36', 'no_lang_code', 1, 'https://ror.org/0315yxm36 BroadReach Healthcare (South Africa)'),
(30100, 'https://ror.org/05qyxnj95', 'fr', 1, 'https://ror.org/05qyxnj95 Centre d’Infectiologie Christophe MĆ©rieux of Laos'),
(30101, 'https://ror.org/04fszpp16', 'en', 1, 'https://ror.org/04fszpp16 Dongyang People''s Hospital'),
(30102, 'https://ror.org/03gddmx06', 'en', 1, 'https://ror.org/03gddmx06 Calmette Hospital HƓpital calmette'),
(30103, 'https://ror.org/038djf877', 'en', 1, 'https://ror.org/038djf877 Department of Health Services'),
(30104, 'https://ror.org/00gn3nj37', 'en', 1, 'https://ror.org/00gn3nj37 Binzhou Medical College Hospital'),
(30105, 'https://ror.org/04650gr34', 'en', 1, 'https://ror.org/04650gr34 Centre for Research in Astrophysics of QuƩbec'),
(30106, 'https://ror.org/03r24h131', 'en', 1, 'https://ror.org/03r24h131 Kaifeng City Children''s Hospital'),
(30107, 'https://ror.org/02kstas42', 'en', 1, 'https://ror.org/02kstas42 Affiliated Hospital of Guizhou Medical University'),
(30108, 'https://ror.org/028pgd321', 'en', 1, 'https://ror.org/028pgd321 Affiliated Hospital of Jiangsu University'),
(30109, 'https://ror.org/00bchtj94', 'en', 1, 'https://ror.org/00bchtj94 B. J. Medical College & Sassoon Hospital'),
(30110, 'https://ror.org/01884b046', 'it', 1, 'https://ror.org/01884b046 Azienda Ospedaliera di Cosenza'),
(30111, 'https://ror.org/00zgdb249', 'en', 1, 'https://ror.org/00zgdb249 Science and Engineering Research Council'),
(30112, 'https://ror.org/04b3ehq94', 'en', 1, 'https://ror.org/04b3ehq94 Australian Wildlife Conservancy'),
(30113, 'https://ror.org/05e8kbn88', 'en', 1, 'https://ror.org/05e8kbn88 Affiliated Hospital of Jining Medical University'),
(30114, 'https://ror.org/05a9skj35', 'en', 1, 'https://ror.org/05a9skj35 Children''s Hospital of Suzhou University'),
(30115, 'https://ror.org/05vf01n02', 'en', 1, 'https://ror.org/05vf01n02 Fourth People''s Hospital of Changzhou'),
(30116, 'https://ror.org/00gwv7d20', 'en', 1, 'https://ror.org/00gwv7d20 China Animal Disease Control Center äø­å›½åŠØē‰©ē–«ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(30117, 'https://ror.org/005z7vs15', 'en', 1, 'https://ror.org/005z7vs15 First Affiliated Hospital of Sichuan Medical University'),
(30118, 'https://ror.org/01wd8pa65', 'en', 1, 'https://ror.org/01wd8pa65 China Medical University Beigang Hospital'),
(30119, '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'),
(30120, 'https://ror.org/00qb1n040', 'fr', 1, 'https://ror.org/00qb1n040 Centre de Recherche MƩdicale et Sanitaire'),
(30121, 'https://ror.org/030d08e08', 'en', 1, 'https://ror.org/030d08e08 China Tobacco å›½å®¶ēƒŸč‰äø“å–å±€'),
(30122, 'https://ror.org/05gf3n961', 'en', 1, 'https://ror.org/05gf3n961 Tomsk Cancer Research Institute Томский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ онкологии'),
(30123, 'https://ror.org/030qdbw52', 'en', 1, 'https://ror.org/030qdbw52 Association Vahatra'),
(30124, 'https://ror.org/015p9va32', 'en', 1, 'https://ror.org/015p9va32 Singapore Institute for Clinical Sciences'),
(30125, 'https://ror.org/01x5t2m44', 'it', 1, 'https://ror.org/01x5t2m44 Fondazione Edo ed Elvo Tempia'),
(30126, 'https://ror.org/00hg9t388', 'en', 1, 'https://ror.org/00hg9t388 Campus Science Support Facilities'),
(30127, 'https://ror.org/044hmkx85', 'en', 1, 'https://ror.org/044hmkx85 Singapore Stem Cell Consortium'),
(30128, 'https://ror.org/036v5qv16', 'no_lang_code', 1, 'https://ror.org/036v5qv16 General Hospital Asklepieio Voulas'),
(30129, 'https://ror.org/016m2r485', 'no_lang_code', 1, 'https://ror.org/016m2r485 Cangzhou Central Hospital'),
(30130, 'https://ror.org/00pbgsg09', 'de', 1, 'https://ror.org/00pbgsg09 Asklepios Klinik Altona'),
(30131, 'https://ror.org/02rfzns68', 'en', 1, 'https://ror.org/02rfzns68 A*STAR-NUS Clinical Imaging Research Centre'),
(30132, 'https://ror.org/01kzsq416', 'en', 1, 'https://ror.org/01kzsq416 First People''s Hospital of Kunshan ę˜†å±±åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(30133, 'https://ror.org/03k5xes38', 'en', 1, 'https://ror.org/03k5xes38 Data Storage Institute'),
(30134, 'https://ror.org/01cbwn720', 'en', 1, 'https://ror.org/01cbwn720 Institute of Chemical and Engineering Sciences'),
(30135, 'https://ror.org/009rw8n36', 'en', 1, 'https://ror.org/009rw8n36 Institute of Microelectronics'),
(30136, 'https://ror.org/00f44np30', 'en', 1, 'https://ror.org/00f44np30 Singapore Institute of Manufacturing Technology'),
(30137, 'https://ror.org/035gbps25', 'en', 1, 'https://ror.org/035gbps25 National Metrology Centre'),
(30138, 'https://ror.org/059yjzn93', 'en', 1, 'https://ror.org/059yjzn93 A*STAR Graduate Academy'),
(30139, 'https://ror.org/04rekk491', 'en', 1, 'https://ror.org/04rekk491 Bavarian State Collection of Zoology Zoologische Staatssammlung München'),
(30140, 'https://ror.org/042kgb568', 'en', 1, 'https://ror.org/042kgb568 AgriBio'),
(30141, 'https://ror.org/04wpn1218', 'de', 1, 'https://ror.org/04wpn1218 Kantonsspital Graubünden'),
(30142, 'https://ror.org/02zxyre23', 'en', 1, 'https://ror.org/02zxyre23 Beijing Aerospace General Hospital'),
(30143, 'https://ror.org/021ky1s64', 'en', 1, 'https://ror.org/021ky1s64 Beijing Anding Hospital åŒ—äŗ¬å®‰å®šåŒ»é™¢'),
(30144, 'https://ror.org/01k3hq685', 'en', 1, 'https://ror.org/01k3hq685 Zhongda Hospital Southeast University'),
(30145, 'https://ror.org/00fs71k85', 'no_lang_code', 1, 'https://ror.org/00fs71k85 Cape Eleuthera Institute'),
(30146, 'https://ror.org/02damtp46', 'no_lang_code', 1, 'https://ror.org/02damtp46 AFFiRiS (Austria)'),
(30147, 'https://ror.org/01jcqzd89', 'en', 1, 'https://ror.org/01jcqzd89 Chongqing City Mental Health Center'),
(30148, 'https://ror.org/00vb2a765', 'de', 1, 'https://ror.org/00vb2a765 ISAAC Gesellschaft für Unterstützte Kommunikation'),
(30149, 'https://ror.org/02ewzby52', 'en', 1, 'https://ror.org/02ewzby52 Berlin Brandenburg Institute of Advanced Biodiversity Research Berlin-Brandenburgisches Institut für Biodiversitätsforschung'),
(30150, 'https://ror.org/05y1kkq06', 'en', 1, 'https://ror.org/05y1kkq06 Centre for Health Equity Studies'),
(30151, 'https://ror.org/00n8pjn35', 'en', 1, 'https://ror.org/00n8pjn35 National Bernstein Network Computational Neuroscience Nationale Bernstein Netzwerk Computational Neuroscience'),
(30152, 'https://ror.org/017ky5708', 'en', 1, 'https://ror.org/017ky5708 Centre for Healthy Start Initiative'),
(30153, 'https://ror.org/038tfqe91', 'no_lang_code', 1, 'https://ror.org/038tfqe91 FumoPrep (Hungary)'),
(30154, 'https://ror.org/02fjj1z35', 'en', 1, 'https://ror.org/02fjj1z35 Caribbean Research and Management of Biodiversity Foundation'),
(30155, 'https://ror.org/03qp5ww24', 'en', 1, 'https://ror.org/03qp5ww24 Centre for Immunity, Infection and Evolution'),
(30156, 'https://ror.org/02zez7725', 'en', 1, 'https://ror.org/02zez7725 Bimini Biological Field Station Foundation'),
(30157, 'https://ror.org/03t857d14', 'en', 1, 'https://ror.org/03t857d14 AIDS Foundation East-West'),
(30158, 'https://ror.org/000f8rg73', 'hu', 1, 'https://ror.org/000f8rg73 OroshĆ”za VĆ”rosi ƖnkormĆ”nyzat KórhĆ”za'),
(30159, 'https://ror.org/0066jxm83', 'en', 1, 'https://ror.org/0066jxm83 Albion Centre'),
(30160, 'https://ror.org/03fq30e75', 'no_lang_code', 1, 'https://ror.org/03fq30e75 Aldevron (United States)'),
(30161, 'https://ror.org/05m38qe70', 'en', 1, 'https://ror.org/05m38qe70 Ministry of Defence'),
(30162, 'https://ror.org/054bzew20', 'no_lang_code', 1, 'https://ror.org/054bzew20 Cellular Dynamics International (United States)'),
(30163, 'https://ror.org/00q2mch05', 'no_lang_code', 1, 'https://ror.org/00q2mch05 Charles River Laboratories (United Kingdom)'),
(30164, 'https://ror.org/01tasya06', 'no_lang_code', 1, 'https://ror.org/01tasya06 Charles River Laboratories (Netherlands)'),
(30165, 'https://ror.org/026zxn394', 'en', 1, 'https://ror.org/026zxn394 Centre for Integrated Research in the Rural Environment'),
(30166, 'https://ror.org/03fvqqb90', 'no_lang_code', 1, 'https://ror.org/03fvqqb90 AltheaDx (United States)'),
(30167, 'https://ror.org/01x33g729', 'no_lang_code', 1, 'https://ror.org/01x33g729 Bioglobe (Germany)'),
(30168, 'https://ror.org/01skhd946', 'en', 1, 'https://ror.org/01skhd946 Center for Disease Dynamics, Economics & Policy'),
(30169, 'https://ror.org/00t7fmg72', 'en', 1, 'https://ror.org/00t7fmg72 Centre for Research on Brain Language and Music'),
(30170, 'https://ror.org/04b102659', 'de', 1, 'https://ror.org/04b102659 Klinik Barmelweid'),
(30171, 'https://ror.org/02y3cnq68', 'en', 1, 'https://ror.org/02y3cnq68 Biomedical Informatics Research Center Antwerp'),
(30172, 'https://ror.org/026mgjd21', 'no_lang_code', 1, 'https://ror.org/026mgjd21 bioMƩrieux (India)'),
(30173, 'https://ror.org/00wk05f95', 'en', 1, 'https://ror.org/00wk05f95 CeNTech'),
(30174, 'https://ror.org/04r8fwm85', 'en', 1, 'https://ror.org/04r8fwm85 Evangelical Lutheran Church'),
(30175, 'https://ror.org/03x1jt541', 'en', 1, 'https://ror.org/03x1jt541 Le Centre Hospitalier Princesse Grace Princess Grace Hospital Centre'),
(30176, 'https://ror.org/00kwjx418', 'en', 1, 'https://ror.org/00kwjx418 Cataract Foundation of the Philippines'),
(30177, 'https://ror.org/01n6v0a11', 'no_lang_code', 1, 'https://ror.org/01n6v0a11 Dalian Municipal Central Hospital å¤§čæžåø‚äø­åæƒåŒ»é™¢'),
(30178, 'https://ror.org/03734kr33', 'en', 1, 'https://ror.org/03734kr33 Taiwan Livestock Research Institute ē•œē”¢č©¦é©—ę‰€'),
(30179, 'https://ror.org/03mynna02', 'es', 1, 'https://ror.org/03mynna02 Centre Nacional d''Anàlisi Genòmica Centro Nacional de AnÔlisis Genómico'),
(30180, 'https://ror.org/01dzyb381', 'en', 1, 'https://ror.org/01dzyb381 Sabah Wildlife Department'),
(30181, 'https://ror.org/05t3ccn58', 'en', 1, 'https://ror.org/05t3ccn58 Qatar Faculty of Islamic Studies'),
(30182, 'https://ror.org/013mr5k03', 'en', 1, 'https://ror.org/013mr5k03 Clinton Health Access Initiative'),
(30183, 'https://ror.org/039rgny44', 'en', 1, 'https://ror.org/039rgny44 Clinton Foundation'),
(30184, 'https://ror.org/045205d09', 'en', 1, 'https://ror.org/045205d09 Clinton Foundation'),
(30185, 'https://ror.org/00vrd0936', 'en', 1, 'https://ror.org/00vrd0936 307th Hospital of Chinese People’s Liberation Army 307医院'),
(30186, 'https://ror.org/00ttqn045', 'en', 1, 'https://ror.org/00ttqn045 Danish Ramazzini Center'),
(30187, 'https://ror.org/01ey7we33', 'en', 1, 'https://ror.org/01ey7we33 Daqing Oilfield General Hospital'),
(30188, 'https://ror.org/00mzj5z57', 'en', 1, 'https://ror.org/00mzj5z57 Centre Tecnològic de Nutrició i Salut Technological Center of Nutrition and Health'),
(30189, 'https://ror.org/05tppc012', 'en', 1, 'https://ror.org/05tppc012 Dasman Diabetes Institute'),
(30190, 'https://ror.org/036vnbc76', 'ro', 1, 'https://ror.org/036vnbc76 Spitalul Clinic Judetean de Urgentã Craiova'),
(30191, 'https://ror.org/03f1en951', 'en', 1, 'https://ror.org/03f1en951 Delfos Hospital'),
(30192, 'https://ror.org/049vf5c24', 'en', 1, 'https://ror.org/049vf5c24 Endangered Wildlife Trust'),
(30193, 'https://ror.org/02rv73z09', 'no_lang_code', 1, 'https://ror.org/02rv73z09 Enoshima Aquarium'),
(30194, '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'),
(30195, 'https://ror.org/00z4nbg03', 'en', 1, 'https://ror.org/00z4nbg03 National Environment Agency'),
(30196, 'https://ror.org/02q5qpb12', 'en', 1, 'https://ror.org/02q5qpb12 Conservation and Ecosystem Health Alliance'),
(30197, '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'),
(30198, 'https://ror.org/0506t0t42', 'fr', 1, 'https://ror.org/0506t0t42 Doctors Without Borders Médecins Sans Frontières'),
(30199, 'https://ror.org/03sxnxp24', 'en', 1, 'https://ror.org/03sxnxp24 Hangzhou Wanxiang Polytechnic'),
(30200, 'https://ror.org/0455ha759', 'da', 1, 'https://ror.org/0455ha759 Filadelfia'),
(30201, 'https://ror.org/04b1cqt16', 'no_lang_code', 1, 'https://ror.org/04b1cqt16 DNA Chip Research (Japan) ę Ŗå¼ä¼šē¤¾DNAćƒćƒƒćƒ—ē ”ē©¶ę‰€'),
(30202, 'https://ror.org/059xf0t91', 'no_lang_code', 1, 'https://ror.org/059xf0t91 Dominion Diagnostics (United States)');
INSERT INTO `rors` VALUES
(30203, 'https://ror.org/023kmdf41', 'es', 1, 'https://ror.org/023kmdf41 Centro Dermatológico Federico Lleras Acosta'),
(30204, 'https://ror.org/04fb6qy86', 'no_lang_code', 1, 'https://ror.org/04fb6qy86 Dongfeng General Hospital'),
(30205, 'https://ror.org/02rxjkx06', 'es', 1, 'https://ror.org/02rxjkx06 Centro Nacional de Enfermedades Tropicales'),
(30206, 'https://ror.org/01vmfza15', 'tr', 1, 'https://ror.org/01vmfza15 Erciyes Üniversitesi Tıp Fakültesi Hastaneleri'),
(30207, 'https://ror.org/0080e5892', 'en', 1, 'https://ror.org/0080e5892 Centro Oncologico Veterinario Veterinary Oncological Center'),
(30208, 'https://ror.org/05mrev375', 'en', 1, 'https://ror.org/05mrev375 Etosha Ecological Institute'),
(30209, 'https://ror.org/00rbdec72', 'en', 1, 'https://ror.org/00rbdec72 Dyer Island Conservation Trust'),
(30210, 'https://ror.org/0186h8060', 'en', 1, 'https://ror.org/0186h8060 DWI – Leibniz Institute for Interactive Materials DWI – Leibniz-Institut für Interaktive Materialien'),
(30211, 'https://ror.org/02v6jgb22', 'no_lang_code', 1, 'https://ror.org/02v6jgb22 Creativ-Ceutical (France)'),
(30212, 'https://ror.org/041qyrj45', 'fr', 1, 'https://ror.org/041qyrj45 Doctors Without Borders Médecins Sans Frontières'),
(30213, 'https://ror.org/027qy6d19', 'es', 1, 'https://ror.org/027qy6d19 Centro Regional de Selección y Reproducción Animal'),
(30214, 'https://ror.org/05gw5ee29', 'en', 1, 'https://ror.org/05gw5ee29 Edogawa Hospital ę±Ÿęˆøå·ē—…é™¢'),
(30215, 'https://ror.org/00yx8y731', 'no_lang_code', 1, 'https://ror.org/00yx8y731 Excet (United States)'),
(30216, 'https://ror.org/03wj61f53', 'en', 1, 'https://ror.org/03wj61f53 Colegio Nacional National College'),
(30217, 'https://ror.org/00t6b3b82', 'no_lang_code', 1, 'https://ror.org/00t6b3b82 EXcorLab (Germany)'),
(30218, 'https://ror.org/00my25942', 'en', 1, 'https://ror.org/00my25942 Fudan University Shanghai Cancer Center'),
(30219, 'https://ror.org/01d7y2240', 'en', 1, 'https://ror.org/01d7y2240 Ministry of Home Affairs'),
(30220, 'https://ror.org/003392690', 'en', 1, 'https://ror.org/003392690 Dr. Hasan Sadikin General Hospital'),
(30221, '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'),
(30222, 'https://ror.org/01sfsq511', 'no_lang_code', 1, 'https://ror.org/01sfsq511 Infinity Pharmaceuticals (United States)'),
(30223, 'https://ror.org/00m9dbm09', 'en', 1, 'https://ror.org/00m9dbm09 Public Health Department'),
(30224, 'https://ror.org/017d7xm97', 'en', 1, 'https://ror.org/017d7xm97 Fanjingshan National Nature Reserve'),
(30225, 'https://ror.org/02phhfw40', 'en', 1, 'https://ror.org/02phhfw40 Innovative Vector Control Consortium'),
(30226, 'https://ror.org/03qepc107', 'en', 1, 'https://ror.org/03qepc107 Federal Almazov North-West Medical Research Centre Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Деверо-ЗапаГный Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр имени Š’.А. Алмазова ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(30227, 'https://ror.org/03xw80974', 'es', 1, 'https://ror.org/03xw80974 EcoCiencia'),
(30228, 'https://ror.org/04nne1357', 'en', 1, 'https://ror.org/04nne1357 Henan Provincial Health Bureau'),
(30229, 'https://ror.org/03wnrsb51', 'en', 1, 'https://ror.org/03wnrsb51 Shandong Provincial QianFoShan Hospital å±±äøœēœåƒä½›å±±åŒ»é™¢'),
(30230, 'https://ror.org/02yv7gj50', 'no_lang_code', 1, 'https://ror.org/02yv7gj50 SNP Genetics (South Korea)'),
(30231, 'https://ror.org/058c5yh92', 'no_lang_code', 1, 'https://ror.org/058c5yh92 Shanghai Fenghe Information Technology (China)'),
(30232, 'https://ror.org/045yjpn53', 'en', 1, 'https://ror.org/045yjpn53 Hebei Mental Health Center'),
(30233, 'https://ror.org/00mh7ne83', 'en', 1, 'https://ror.org/00mh7ne83 Fergusson College'),
(30234, 'https://ror.org/02prx6004', 'no_lang_code', 1, 'https://ror.org/02prx6004 Generic Assays (Germany)'),
(30235, 'https://ror.org/00ckb9008', 'en', 1, 'https://ror.org/00ckb9008 Heze Medical College'),
(30236, 'https://ror.org/003wq4h14', 'en', 1, 'https://ror.org/003wq4h14 Gansu Province Computing Center'),
(30237, 'https://ror.org/045thge14', 'en', 1, 'https://ror.org/045thge14 Finnish Red Cross'),
(30238, 'https://ror.org/055w74b96', 'en', 1, 'https://ror.org/055w74b96 First Affiliated Hospital of Dalian Medical University å¤§čæžåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(30239, 'https://ror.org/040gnq226', 'en', 1, 'https://ror.org/040gnq226 First Affiliated Hospital of Gannan Medical University'),
(30240, 'https://ror.org/02tbvhh96', 'en', 1, 'https://ror.org/02tbvhh96 First Affiliated Hospital of Xi''an Jiaotong University'),
(30241, 'https://ror.org/040aks519', 'en', 1, 'https://ror.org/040aks519 Bethune International Peace Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ē™½ę±‚ę©å›½é™…å’Œå¹³åŒ»é™¢'),
(30242, 'https://ror.org/022vy2r94', 'no_lang_code', 1, 'https://ror.org/022vy2r94 Decipher Biosciences (Canada)'),
(30243, 'https://ror.org/050azj708', 'no_lang_code', 1, 'https://ror.org/050azj708 GenUs BioSystems (United States)'),
(30244, 'https://ror.org/058nry849', 'en', 1, 'https://ror.org/058nry849 Geological Survey of Israel'),
(30245, 'https://ror.org/05skxzn48', 'en', 1, 'https://ror.org/05skxzn48 Georgian National Museum įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒ›įƒ£įƒ–įƒ”'),
(30246, 'https://ror.org/051c4bd82', 'en', 1, 'https://ror.org/051c4bd82 First Bethune Hospital of Jilin University å‰ęž—å¤§å­¦ē¬¬äø€åŒ»é™¢ē§‘ē ”ę•™å­¦ę„¼'),
(30247, 'https://ror.org/017a18y80', 'es', 1, 'https://ror.org/017a18y80 Hospital de Poniente'),
(30248, 'https://ror.org/05xd8w204', 'en', 1, 'https://ror.org/05xd8w204 Fuzhou Neuro Psychiatric Hospital'),
(30249, 'https://ror.org/04z3aby64', 'en', 1, 'https://ror.org/04z3aby64 First Affiliated Hospital of Hebei Medical University'),
(30250, 'https://ror.org/04n404y68', 'fr', 1, 'https://ror.org/04n404y68 Institut de Recherche en RƩadaptation-RƩinsertion'),
(30251, 'https://ror.org/02vzqaq35', 'en', 1, 'https://ror.org/02vzqaq35 First Hospital of Shanxi Medical University'),
(30252, 'https://ror.org/02s9hwc03', 'es', 1, 'https://ror.org/02s9hwc03 Hospital Infantil Manuel de JesĆŗs Rivera'),
(30253, 'https://ror.org/056r88m65', 'pt', 1, 'https://ror.org/056r88m65 Fundação Hospitalar do Estado de Minas Gerais'),
(30254, 'https://ror.org/035wmq455', 'en', 1, 'https://ror.org/035wmq455 Deutsche Leberstiftung German Liver Foundation'),
(30255, 'https://ror.org/02vtcvw94', 'no_lang_code', 1, 'https://ror.org/02vtcvw94 Gilasio Coding (Israel)'),
(30256, 'https://ror.org/0068xq694', 'en', 1, 'https://ror.org/0068xq694 Hospital of Southern Norway'),
(30257, 'https://ror.org/03ejqwd09', 'en', 1, 'https://ror.org/03ejqwd09 Diabetes Foundation'),
(30258, 'https://ror.org/00jqwr190', 'en', 1, 'https://ror.org/00jqwr190 Dignitas International'),
(30259, 'https://ror.org/00ny76115', 'en', 1, 'https://ror.org/00ny76115 Forage Genetics International'),
(30260, 'https://ror.org/00t7jb983', 'es', 1, 'https://ror.org/00t7jb983 Consorcio Hospitalario Provincial de Castellón'),
(30261, 'https://ror.org/030rdap26', 'ms', 1, 'https://ror.org/030rdap26 Hospital Sungai Buloh'),
(30262, 'https://ror.org/03sfqvm15', 'en', 1, 'https://ror.org/03sfqvm15 Sabah Forestry Department'),
(30263, 'https://ror.org/05xkzd182', 'en', 1, 'https://ror.org/05xkzd182 Directorate General of Health Services'),
(30264, 'https://ror.org/03nfexg07', 'fr', 1, 'https://ror.org/03nfexg07 Institut National de SantƩ Publique'),
(30265, 'https://ror.org/01q3by234', 'no_lang_code', 1, 'https://ror.org/01q3by234 Ekjut'),
(30266, 'https://ror.org/03jcj5d12', 'no_lang_code', 1, 'https://ror.org/03jcj5d12 Fortis Flt. Lt. Rajan Dhall Hospital'),
(30267, 'https://ror.org/02gysew38', 'en', 1, 'https://ror.org/02gysew38 Global Fund to Fight AIDS, Tuberculosis and Malaria'),
(30268, 'https://ror.org/01kjq0112', 'en', 1, 'https://ror.org/01kjq0112 Foundation for Advancement of International Science å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(30269, 'https://ror.org/04whx4k53', 'en', 1, 'https://ror.org/04whx4k53 Global Initiative on Psychiatry'),
(30270, 'https://ror.org/05y0vh566', 'en', 1, 'https://ror.org/05y0vh566 Global Solutions for Infectious Diseases'),
(30271, 'https://ror.org/01j4h9t83', 'fr', 1, 'https://ror.org/01j4h9t83 Institut de Recherche pour le DƩveloppement Institute of Research for the Development'),
(30272, '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'),
(30273, 'https://ror.org/02g4e1v18', 'no_lang_code', 1, 'https://ror.org/02g4e1v18 Metabiota (Cameroon)'),
(30274, 'https://ror.org/030sbze61', 'en', 1, 'https://ror.org/030sbze61 Institute for Molecular Medicine Finland'),
(30275, 'https://ror.org/04yw8y022', 'no_lang_code', 1, 'https://ror.org/04yw8y022 Hunan New Wellful (China)'),
(30276, 'https://ror.org/04b9y0b76', 'en', 1, 'https://ror.org/04b9y0b76 Government Hospital of Thoracic Medicine'),
(30277, 'https://ror.org/03n3qwf37', 'en', 1, 'https://ror.org/03n3qwf37 Third People''s Hospital of Huzhou'),
(30278, 'https://ror.org/01mpknn43', 'no_lang_code', 1, 'https://ror.org/01mpknn43 iAnalysis (Japan)'),
(30279, 'https://ror.org/02egtfm54', 'pt', 1, 'https://ror.org/02egtfm54 Instituto de Biologia do ExƩrcito'),
(30280, 'https://ror.org/05mqewt50', 'en', 1, 'https://ror.org/05mqewt50 Jiangjin Central Hospital'),
(30281, 'https://ror.org/03zts9g74', 'no_lang_code', 1, 'https://ror.org/03zts9g74 Idera Pharmaceuticals (United States)'),
(30282, 'https://ror.org/05pf1p208', 'fr', 1, 'https://ror.org/05pf1p208 Institut FranƧais du Cheval et de l''Ɖquitation'),
(30283, 'https://ror.org/04pge2a40', 'en', 1, 'https://ror.org/04pge2a40 Second Affiliated Hospital of Nanjing Medical University'),
(30284, 'https://ror.org/02aj9jk84', 'en', 1, 'https://ror.org/02aj9jk84 Jiangsu Provincial Authorities Hospital ę±Ÿč‹ēœēœēŗ§ęœŗå…³åŒ»é™¢'),
(30285, 'https://ror.org/002qb2q37', 'en', 1, 'https://ror.org/002qb2q37 Hainan Tranquility Hospital'),
(30286, 'https://ror.org/034npc439', 'en', 1, 'https://ror.org/034npc439 Sixth Hospital of Changchun City'),
(30287, 'https://ror.org/01xrzxy63', 'es', 1, 'https://ror.org/01xrzxy63 Museo de San Isidro'),
(30288, 'https://ror.org/01w5pm594', 'no_lang_code', 1, 'https://ror.org/01w5pm594 Jiangsu Nhwa Pharmaceutical (China)'),
(30289, 'https://ror.org/03qxwkk89', 'no_lang_code', 1, 'https://ror.org/03qxwkk89 Lipidomix (Germany)'),
(30290, 'https://ror.org/05sm6p196', 'en', 1, 'https://ror.org/05sm6p196 Jiangsu Provincial Hospital of Traditional Chinese Medicine ę±Ÿč‹ēœäø­åŒ»čÆē ”ē©¶é™¢'),
(30291, 'https://ror.org/05n3asa33', 'es', 1, 'https://ror.org/05n3asa33 Instituto de Investigación Biomédica de MÔlaga'),
(30292, 'https://ror.org/05ry90052', 'fr', 1, 'https://ror.org/05ry90052 Alphabio'),
(30293, 'https://ror.org/05808qp03', 'en', 1, 'https://ror.org/05808qp03 Jiangxi Academy of Forestry ę±Ÿč„æēœęž—äøšē§‘å­¦é™¢'),
(30294, 'https://ror.org/04e209f39', 'en', 1, 'https://ror.org/04e209f39 Loewe Center for Synthetic Microbiology Loewe-Zentrum für Synthetische Mikrobiologie'),
(30295, 'https://ror.org/00v8g0168', 'en', 1, 'https://ror.org/00v8g0168 Jiangxi Provincial Cancer Hospital ę±Ÿč„æēœč‚æē˜¤åŒ»é™¢'),
(30296, 'https://ror.org/0300cef81', 'no_lang_code', 1, 'https://ror.org/0300cef81 Lola ya Bonobo'),
(30297, 'https://ror.org/03y46gc61', 'no_lang_code', 1, 'https://ror.org/03y46gc61 Megmilk Snow Brand (Japan) é›Ŗå°ä¹³ę„­ę Ŗå¼ä¼šē¤¾'),
(30298, 'https://ror.org/00j5y7k81', 'no_lang_code', 1, 'https://ror.org/00j5y7k81 Longgang Central Hospital'),
(30299, 'https://ror.org/0109nma88', 'en', 1, 'https://ror.org/0109nma88 Min-Hwei College of Health Care Management'),
(30300, 'https://ror.org/0152xm391', 'en', 1, 'https://ror.org/0152xm391 Minerva Foundation'),
(30301, 'https://ror.org/04x1arp29', 'en', 1, 'https://ror.org/04x1arp29 Brain Hospital of Jilin'),
(30302, 'https://ror.org/033xtdz52', 'pt', 1, 'https://ror.org/033xtdz52 Instituto de Pesquisas Jardim Botânico do Rio de Janeiro'),
(30303, 'https://ror.org/00p0n9a62', 'en', 1, 'https://ror.org/00p0n9a62 Minhang District Central Hospital'),
(30304, 'https://ror.org/01gbk3827', 'es', 1, 'https://ror.org/01gbk3827 Instituto del Mar del Peru'),
(30305, 'https://ror.org/02dbz7n48', 'en', 1, 'https://ror.org/02dbz7n48 Ministry of Public Health Ministère de la Santé Publique'),
(30306, 'https://ror.org/05chjan92', 'en', 1, 'https://ror.org/05chjan92 Jinan Military General Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ęµŽå—å†›åŒŗę€»åŒ»é™¢'),
(30307, 'https://ror.org/03hz8wd80', 'en', 1, 'https://ror.org/03hz8wd80 Lundbeck Foundation'),
(30308, 'https://ror.org/03j2mew82', 'en', 1, 'https://ror.org/03j2mew82 Jinan Stomatological Hospital ęµŽå—åø‚å£č…”åŒ»é™¢'),
(30309, 'https://ror.org/024h8p458', 'es', 1, 'https://ror.org/024h8p458 Ministerio de Salud'),
(30310, 'https://ror.org/057s3rs39', 'no_lang_code', 1, 'https://ror.org/057s3rs39 Mabtech (Sweden)'),
(30311, 'https://ror.org/03jhz9k05', 'en', 1, 'https://ror.org/03jhz9k05 Mission to Save the Helpless'),
(30312, 'https://ror.org/04z13ha89', 'no_lang_code', 1, 'https://ror.org/04z13ha89 Jinhua Central Hospital é‡‘åŽåø‚äø­åæƒåŒ»é™¢'),
(30313, 'https://ror.org/02s4dhq46', 'en', 1, 'https://ror.org/02s4dhq46 Instituto Nacional de Biodiversidad National Biodiversity Institute'),
(30314, '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'),
(30315, 'https://ror.org/01a2d7067', 'es', 1, 'https://ror.org/01a2d7067 Instituto Nacional de Salud del NiƱo'),
(30316, 'https://ror.org/03h4e4c54', 'en', 1, 'https://ror.org/03h4e4c54 Model Animal Research Center'),
(30317, 'https://ror.org/01wjew854', 'en', 1, 'https://ror.org/01wjew854 Joint Space Science Institute'),
(30318, 'https://ror.org/05v6b0t46', 'es', 1, 'https://ror.org/05v6b0t46 Magdalena Villegas de MartĆ­nez el Hospital'),
(30319, 'https://ror.org/0138q7t80', 'en', 1, 'https://ror.org/0138q7t80 Malaysia Genome Institute'),
(30320, 'https://ror.org/00wj1b221', 'no_lang_code', 1, 'https://ror.org/00wj1b221 Integrated Statistics (United States)'),
(30321, 'https://ror.org/04jg69j33', 'en', 1, 'https://ror.org/04jg69j33 Hainan Medical College Hospital'),
(30322, 'https://ror.org/02r5m5t30', 'fr', 1, 'https://ror.org/02r5m5t30 Doctors Without Borders MĆ©decins Sans FrontiĆØresā€Ž'),
(30323, 'https://ror.org/00w1v8g84', 'pt', 1, 'https://ror.org/00w1v8g84 Laboratório Nacional de Ciência e Tecnologia do Bioetanol'),
(30324, 'https://ror.org/01k0xxh86', 'no_lang_code', 1, 'https://ror.org/01k0xxh86 Green Cross (South Korea)'),
(30325, 'https://ror.org/0069sam62', 'en', 1, 'https://ror.org/0069sam62 Kalahari Meerkat Project'),
(30326, 'https://ror.org/05y957z51', 'en', 1, 'https://ror.org/05y957z51 Marwell Zoo'),
(30327, 'https://ror.org/0576dtf44', 'no_lang_code', 1, 'https://ror.org/0576dtf44 Molecular Discovery (United Kingdom)'),
(30328, 'https://ror.org/000cs1t14', 'en', 1, 'https://ror.org/000cs1t14 Harvard NeuroDiscovery Center'),
(30329, 'https://ror.org/01mdjbm03', 'en', 1, 'https://ror.org/01mdjbm03 Fourth Hospital of Hebei Medical University ę²³åŒ—åŒ»ē§‘å¤§å­¦ē¬¬å››åŒ»é™¢'),
(30330, 'https://ror.org/05dxas544', 'no_lang_code', 1, 'https://ror.org/05dxas544 Moon Express (United States)'),
(30331, 'https://ror.org/05kxcj202', 'en', 1, 'https://ror.org/05kxcj202 French Institute of Pondicherry Institut FranƧais de PondichĆ©ry ą®Ŗą®¾ą®£ąÆą®Ÿą®æą®šąÆą®šąÆ‡ą®°ą®æ ą®Ŗą®æą®°ąÆ†ą®žąÆą®šąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(30332, 'https://ror.org/0113ps589', 'es', 1, 'https://ror.org/0113ps589 KarumbƩ'),
(30333, 'https://ror.org/04abk6t05', 'en', 1, 'https://ror.org/04abk6t05 Department of Biodiversity, Conservation and Attractions'),
(30334, 'https://ror.org/0399xk126', 'en', 1, 'https://ror.org/0399xk126 International Trachoma Initiative'),
(30335, 'https://ror.org/045jt2189', 'en', 1, 'https://ror.org/045jt2189 International Trachoma Initiative'),
(30336, 'https://ror.org/03rfn9b75', 'fr', 1, 'https://ror.org/03rfn9b75 Artsen Zonder Grenzen Doctors Without Borders Médecins Sans Frontières'),
(30337, 'https://ror.org/02ktfc112', 'no_lang_code', 1, 'https://ror.org/02ktfc112 Digital Science (United Kingdom)'),
(30338, 'https://ror.org/01v4vcm68', 'fr', 1, 'https://ror.org/01v4vcm68 Labex Corail'),
(30339, 'https://ror.org/039cbfe54', 'no_lang_code', 1, 'https://ror.org/039cbfe54 Invicro (United States)'),
(30340, 'https://ror.org/00v6g9845', 'no_lang_code', 1, 'https://ror.org/00v6g9845 Siemens (China)'),
(30341, 'https://ror.org/058a2pj71', 'it', 1, 'https://ror.org/058a2pj71 Fondazione Toscana Gabriele Monasterio'),
(30342, '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'),
(30343, 'https://ror.org/020h4b682', 'no_lang_code', 1, 'https://ror.org/020h4b682 Digital Science (United States)'),
(30344, 'https://ror.org/00p9jf779', 'en', 1, 'https://ror.org/00p9jf779 Medicines for Malaria Venture'),
(30345, 'https://ror.org/02675s371', 'en', 1, 'https://ror.org/02675s371 Japan BCG Laboratory ę—„ęœ¬ćƒ“ćƒ¼ć‚·ćƒ¼ć‚øćƒ¼č£½é€ ę Ŗå¼ä¼šē¤¾'),
(30346, 'https://ror.org/04d8ywj90', 'en', 1, 'https://ror.org/04d8ywj90 Multiple Sclerosis Society of Canada SociƩtƩ canadienne de la sclƩrose en plaques'),
(30347, 'https://ror.org/0052kfx70', 'no_lang_code', 1, 'https://ror.org/0052kfx70 KMT Hepatech (Canada)'),
(30348, 'https://ror.org/047yqrk88', 'no_lang_code', 1, 'https://ror.org/047yqrk88 Metabiota (United States)'),
(30349, 'https://ror.org/05bem9j20', 'no_lang_code', 1, 'https://ror.org/05bem9j20 Crabion (Italy)'),
(30350, 'https://ror.org/00kztq733', 'en', 1, 'https://ror.org/00kztq733 Isaac Newton Institute'),
(30351, 'https://ror.org/030f5x630', 'no_lang_code', 1, 'https://ror.org/030f5x630 Labormedizinische Zentrum Dr Risch (Switzerland)'),
(30352, 'https://ror.org/01bcxbz42', 'en', 1, 'https://ror.org/01bcxbz42 Shantou University Mental Health Center'),
(30353, 'https://ror.org/006arvw77', 'en', 1, 'https://ror.org/006arvw77 Landseed Hospital'),
(30354, 'https://ror.org/05dtvab05', 'no_lang_code', 1, 'https://ror.org/05dtvab05 Konica Minolta (Japan) ć‚³ćƒ‹ć‚«ćƒŸćƒŽćƒ«ć‚æćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(30355, 'https://ror.org/0392tq432', 'en', 1, 'https://ror.org/0392tq432 National Consortium for Zoonosis Research'),
(30356, 'https://ror.org/01v7qfc32', 'en', 1, 'https://ror.org/01v7qfc32 National Department of Health'),
(30357, 'https://ror.org/006w9n065', 'en', 1, 'https://ror.org/006w9n065 Mercer County Mosquito Control'),
(30358, 'https://ror.org/03j5jkz79', 'en', 1, 'https://ror.org/03j5jkz79 Jiangxi Mental Health Center'),
(30359, 'https://ror.org/02r14vp15', 'no_lang_code', 1, 'https://ror.org/02r14vp15 National Influenza Center'),
(30360, 'https://ror.org/01hht6e57', 'en', 1, 'https://ror.org/01hht6e57 Bethune Second Hospital'),
(30361, 'https://ror.org/02fsqa093', 'en', 1, 'https://ror.org/02fsqa093 Korea Institute of Drug Safety and Risk Management'),
(30362, 'https://ror.org/03qyfje32', 'en', 1, 'https://ror.org/03qyfje32 Institut national de recherche biomƩdicale National Institute of Biomedical Research'),
(30363, 'https://ror.org/01p92gv96', 'en', 1, 'https://ror.org/01p92gv96 Fourth People''s Hospital of Liaocheng'),
(30364, 'https://ror.org/02mgm5r23', 'en', 1, 'https://ror.org/02mgm5r23 Makerere University Walter Reed Project'),
(30365, 'https://ror.org/01m5zqn93', 'no_lang_code', 1, 'https://ror.org/01m5zqn93 Ipso Facto (France)'),
(30366, 'https://ror.org/05n50qc07', 'en', 1, 'https://ror.org/05n50qc07 Nanchong Central Hospital å—å……åø‚äø­åæƒåŒ»é™¢'),
(30367, 'https://ror.org/035zntx80', 'en', 1, 'https://ror.org/035zntx80 Queensland Museum'),
(30368, 'https://ror.org/01wcx2305', 'en', 1, 'https://ror.org/01wcx2305 Nanjing Brain Hospital'),
(30369, 'https://ror.org/02x81h069', 'en', 1, 'https://ror.org/02x81h069 Organization for Tropical Studies'),
(30370, 'https://ror.org/04q9kfc05', 'en', 1, 'https://ror.org/04q9kfc05 Nanjing Chest Hospital'),
(30371, 'https://ror.org/02ad7ap24', 'en', 1, 'https://ror.org/02ad7ap24 Qujing Normal University ę›²é–åøˆčŒƒå­¦é™¢'),
(30372, 'https://ror.org/01cv9mb69', 'en', 1, 'https://ror.org/01cv9mb69 Ruxmaniben Deepchand Gardi Medical College'),
(30373, 'https://ror.org/000xvke80', 'en', 1, 'https://ror.org/000xvke80 Nanjing Children''s Hospital å—äŗ¬åø‚å„æē«„åŒ»é™¢'),
(30374, 'https://ror.org/02ap4eq27', 'no_lang_code', 1, 'https://ror.org/02ap4eq27 Origin Energy (Australia)'),
(30375, 'https://ror.org/00v7z6m55', 'en', 1, 'https://ror.org/00v7z6m55 Limassol General Hospital'),
(30376, 'https://ror.org/052q3cn21', 'en', 1, 'https://ror.org/052q3cn21 National Institute of Malariology, Parasitology and Entomology'),
(30377, 'https://ror.org/0026h4837', 'en', 1, 'https://ror.org/0026h4837 Nanjing Institute of Vegetable Science'),
(30378, 'https://ror.org/004qfqh71', 'en', 1, 'https://ror.org/004qfqh71 National Museum'),
(30379, 'https://ror.org/05m1p5x56', 'en', 1, 'https://ror.org/05m1p5x56 First Affiliated Hospital Zhejiang University'),
(30380, 'https://ror.org/0105p2j56', 'en', 1, 'https://ror.org/0105p2j56 National Museum of Natural Science åœ‹ē«‹č‡Ŗē„¶ē§‘å­øåšē‰©é¤Ø'),
(30381, 'https://ror.org/026djmp70', 'no_lang_code', 1, 'https://ror.org/026djmp70 RayBiotech (China)'),
(30382, 'https://ror.org/04j0ce487', 'en', 1, 'https://ror.org/04j0ce487 Nasarawa State Ministry of Health'),
(30383, 'https://ror.org/04pw0tr28', 'nl', 1, 'https://ror.org/04pw0tr28 Refaja Ziekenhuis'),
(30384, 'https://ror.org/05p4yqc22', 'en', 1, 'https://ror.org/05p4yqc22 PanAmerican Bioinformatics Institute'),
(30385, 'https://ror.org/03aq7kf18', 'en', 1, 'https://ror.org/03aq7kf18 Second Affiliated Hospital of Xi''an Jiaotong University'),
(30386, 'https://ror.org/04rhtf097', 'en', 1, 'https://ror.org/04rhtf097 Nanjing Second Hospital'),
(30387, 'https://ror.org/00h7j7m14', 'fr', 1, 'https://ror.org/00h7j7m14 ComitƩ National de Lutte contre le SIDA'),
(30388, 'https://ror.org/04p0nk708', 'en', 1, 'https://ror.org/04p0nk708 Regional Hospital West Jutland'),
(30389, 'https://ror.org/02q7ym472', 'de', 1, 'https://ror.org/02q7ym472 Helios Park-Klinikum Leipzig'),
(30390, 'https://ror.org/00k2gdw14', 'en', 1, 'https://ror.org/00k2gdw14 National Institute for Research in Tribal Health'),
(30391, 'https://ror.org/057w9fs93', 'it', 1, 'https://ror.org/057w9fs93 Istituto di Genomica Applicata'),
(30392, 'https://ror.org/03d3r6333', 'no_lang_code', 1, 'https://ror.org/03d3r6333 NeoChemir (Japan) ćƒć‚Ŗć‚±ćƒŸć‚¢'),
(30393, 'https://ror.org/02swwnp83', 'en', 1, 'https://ror.org/02swwnp83 Nepal Health Research Council'),
(30394, 'https://ror.org/040rwep31', 'en', 1, 'https://ror.org/040rwep31 Peking University Shougang Hospital åŒ—äŗ¬å¤§å­¦é¦–é‹¼åŒ»é™¢'),
(30395, 'https://ror.org/010eef547', 'en', 1, 'https://ror.org/010eef547 Pathologist Bio-Medical Laboratories'),
(30396, 'https://ror.org/04spw8212', 'en', 1, 'https://ror.org/04spw8212 New Delhi Tuberculosis Center'),
(30397, 'https://ror.org/02vbdk750', 'no_lang_code', 1, 'https://ror.org/02vbdk750 Patrys (Germany)'),
(30398, 'https://ror.org/05cnf4c39', 'en', 1, 'https://ror.org/05cnf4c39 Changzhi Medical College Peace Hospital'),
(30399, 'https://ror.org/01fd86n56', 'en', 1, 'https://ror.org/01fd86n56 Second Hospital of Shandong University'),
(30400, 'https://ror.org/02q36eh13', 'en', 1, 'https://ror.org/02q36eh13 National Center for HIV/AIDS, Dermatology and STD'),
(30401, 'https://ror.org/03p65m515', 'en', 1, 'https://ror.org/03p65m515 New York Consortium in Evolutionary Primatology'),
(30402, 'https://ror.org/03bznzd25', 'en', 1, 'https://ror.org/03bznzd25 Cambodia National Malaria Center'),
(30403, 'https://ror.org/053v2gh09', 'en', 1, 'https://ror.org/053v2gh09 Second Xiangya Hospital of Central South University'),
(30404, 'https://ror.org/05mt9p027', 'en', 1, 'https://ror.org/05mt9p027 Research Foundation ITSUU Laboratory ä¹™åÆē ”ē©¶ę‰€'),
(30405, 'https://ror.org/00hkdgr14', 'en', 1, 'https://ror.org/00hkdgr14 Seiwa Hospital é’å’Œē—…é™¢'),
(30406, 'https://ror.org/025gg5e98', 'en', 1, 'https://ror.org/025gg5e98 Healis Sekhsaria Institute For Public Health'),
(30407, 'https://ror.org/00vkb8q56', 'en', 1, 'https://ror.org/00vkb8q56 Ningbo City College of Vocational Technology'),
(30408, 'https://ror.org/02fkt1r75', 'no_lang_code', 1, 'https://ror.org/02fkt1r75 Pharmatest (Finland)'),
(30409, 'https://ror.org/021nfay74', 'en', 1, 'https://ror.org/021nfay74 Ningbo Kangning Hospital'),
(30410, 'https://ror.org/02cybaz37', 'en', 1, 'https://ror.org/02cybaz37 PHG Foundation'),
(30411, 'https://ror.org/038kpzv03', 'en', 1, 'https://ror.org/038kpzv03 Retina Vitreous Associates Medical Group'),
(30412, 'https://ror.org/002m0p291', 'en', 1, 'https://ror.org/002m0p291 Beihai People''s Hospital'),
(30413, 'https://ror.org/039f5ga37', 'no_lang_code', 1, 'https://ror.org/039f5ga37 Pingtung Hospital'),
(30414, 'https://ror.org/02xxx6w64', 'en', 1, 'https://ror.org/02xxx6w64 81th Hospital of PLA äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬å…«äø€åŒ»é™¢'),
(30415, 'https://ror.org/02nc46417', 'en', 1, 'https://ror.org/02nc46417 Sony Computer Science Laboratories ć‚½ćƒ‹ćƒ¼ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶ę‰€'),
(30416, 'https://ror.org/04r9x9n80', 'no_lang_code', 1, 'https://ror.org/04r9x9n80 Shanxi Zhendong Pharmaceutical (China) å±±č„æęŒÆäøœåˆ¶čÆč‚”ä»½ęœ‰é™å…¬åø'),
(30417, 'https://ror.org/03xcvwx77', 'no_lang_code', 1, 'https://ror.org/03xcvwx77 Pojen General Hospital'),
(30418, 'https://ror.org/02wh8xm70', 'en', 1, 'https://ror.org/02wh8xm70 Shanxi Eye Hospital'),
(30419, 'https://ror.org/04zhd1705', 'it', 1, 'https://ror.org/04zhd1705 Policlinico Casilino'),
(30420, 'https://ror.org/01w1vg437', 'fr', 1, 'https://ror.org/01w1vg437 Doctors Without Borders Médecins Sans Frontières'),
(30421, 'https://ror.org/005r3tp02', 'en', 1, 'https://ror.org/005r3tp02 South African National Biodiversity Institute'),
(30422, 'https://ror.org/0376mq589', 'en', 1, 'https://ror.org/0376mq589 Royal Tyrrell Museum'),
(30423, 'https://ror.org/010j7cb18', 'no_lang_code', 1, 'https://ror.org/010j7cb18 Sardegna Ricerche (Italy)'),
(30424, 'https://ror.org/03yhn1973', 'en', 1, 'https://ror.org/03yhn1973 Praxis Institute for Participatory Practices'),
(30425, 'https://ror.org/05jmh8x88', 'en', 1, 'https://ror.org/05jmh8x88 Shanghai Zhabei District Shibei Hospital'),
(30426, 'https://ror.org/02ryfff02', 'en', 1, 'https://ror.org/02ryfff02 Songjiang District Central Hospital'),
(30427, 'https://ror.org/04gz17b59', 'en', 1, 'https://ror.org/04gz17b59 Northern Jiangsu People''s Hospital ę±Ÿč‹ēœč‹åŒ—äŗŗę°‘åŒ»é™¢'),
(30428, 'https://ror.org/020qxnz74', 'en', 1, 'https://ror.org/020qxnz74 Dhaka Community Hospital Trust'),
(30429, 'https://ror.org/045vwy185', 'en', 1, 'https://ror.org/045vwy185 Seventh People''s Hospital of Shanghai'),
(30430, 'https://ror.org/03p31hk68', 'en', 1, 'https://ror.org/03p31hk68 Shanghai Traditional Chinese Medicine Hospital'),
(30431, 'https://ror.org/03731ze76', 'fr', 1, 'https://ror.org/03731ze76 Nouvelles Cliniques Nantaises'),
(30432, 'https://ror.org/01485rp97', 'no_lang_code', 1, 'https://ror.org/01485rp97 Shanghai Hi-Tech joint biotechnology R & D (China)'),
(30433, 'https://ror.org/0048a4976', 'en', 1, 'https://ror.org/0048a4976 Shanghai Eye Disease Prevention & Treatment Center'),
(30434, 'https://ror.org/038xmzj21', 'en', 1, 'https://ror.org/038xmzj21 Shanghai East Hospital'),
(30435, 'https://ror.org/024x8v141', 'en', 1, 'https://ror.org/024x8v141 Shandong Mental Health Center'),
(30436, 'https://ror.org/03dr0ny42', 'no_lang_code', 1, 'https://ror.org/03dr0ny42 NovaCell Technology (South Korea) ė…øė°”ģ…€ķ…Œķ¬ė†€ė”œģ§€'),
(30437, 'https://ror.org/01fbgjv04', 'en', 1, 'https://ror.org/01fbgjv04 Shandong Academy of Agricultural Sciences å±±äøœēœčŠ±ē”Ÿē ”ē©¶ę‰€'),
(30438, 'https://ror.org/03dgngj22', 'en', 1, 'https://ror.org/03dgngj22 Andover College'),
(30439, 'https://ror.org/01qdbbk19', 'en', 1, 'https://ror.org/01qdbbk19 Special Astrophysical Observatory Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š”ŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š°Ń Š°ŃŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ Российской акаГемии наук'),
(30440, 'https://ror.org/01kmmtp84', 'en', 1, 'https://ror.org/01kmmtp84 Programs for Assessment of Technology in Health Research Institute'),
(30441, 'https://ror.org/011y67d23', 'no_lang_code', 1, 'https://ror.org/011y67d23 Novo Nordisk (United States)'),
(30442, 'https://ror.org/03nb8cd76', 'en', 1, 'https://ror.org/03nb8cd76 Shanghai Chenshan Plant Science Research Center äøŠęµ·č¾°å±±ę¤ē‰©ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(30443, 'https://ror.org/015qzwq73', 'en', 1, 'https://ror.org/015qzwq73 Henan Psychiatric Hospital'),
(30444, 'https://ror.org/01eb9tc45', 'it', 1, 'https://ror.org/01eb9tc45 Ospedale Sant Antonio'),
(30445, 'https://ror.org/03kvh2f84', 'en', 1, 'https://ror.org/03kvh2f84 National Office of Mines'),
(30446, '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'),
(30447, 'https://ror.org/04re59v49', 'no_lang_code', 1, 'https://ror.org/04re59v49 St. Martin de Porres Hospital'),
(30448, 'https://ror.org/05dqm7k77', 'en', 1, 'https://ror.org/05dqm7k77 Onderstepoort Veterinary Institute'),
(30449, 'https://ror.org/0524pqp96', 'en', 1, 'https://ror.org/0524pqp96 Sexual Health Clinic'),
(30450, 'https://ror.org/04pnhdn93', 'fr', 1, 'https://ror.org/04pnhdn93 ONG Karkara'),
(30451, 'https://ror.org/01qr5zh59', 'en', 1, 'https://ror.org/01qr5zh59 Public Health Laboratory Ivo de Carneri'),
(30452, 'https://ror.org/01v99n607', 'en', 1, 'https://ror.org/01v99n607 Shark Spotters'),
(30453, 'https://ror.org/04237en35', 'fr', 1, 'https://ror.org/04237en35 Artsen zonder Grenzen Doctors Without Borders Médecins Sans Frontières'),
(30454, 'https://ror.org/03sm03s92', 'no_lang_code', 1, 'https://ror.org/03sm03s92 OpGen (United States)'),
(30455, 'https://ror.org/01z8tr155', 'en', 1, 'https://ror.org/01z8tr155 China Aerospace Science and Technology Corporation äø­å›½čˆŖå¤©ē§‘ęŠ€é›†å›¢'),
(30456, 'https://ror.org/01wm7qx64', 'en', 1, 'https://ror.org/01wm7qx64 Shenyang Environmental Protection Bureau'),
(30457, 'https://ror.org/03557jp84', 'en', 1, 'https://ror.org/03557jp84 Orangutan Information Centre'),
(30458, 'https://ror.org/03teef091', 'en', 1, 'https://ror.org/03teef091 Samueli Institute'),
(30459, 'https://ror.org/0409k5a27', 'en', 1, 'https://ror.org/0409k5a27 Shenzhen Children''s Hospital ę·±åœ³åø‚å„æē«„åŒ»é™¢'),
(30460, 'https://ror.org/00mj90n62', 'en', 1, 'https://ror.org/00mj90n62 Qingdao Mental Health Center'),
(30461, 'https://ror.org/01mynms41', 'en', 1, 'https://ror.org/01mynms41 Temeke Municipal Council'),
(30462, 'https://ror.org/01wfv3m53', 'no_lang_code', 1, 'https://ror.org/01wfv3m53 Teva Pharmaceuticals (Israel) טבע תעשיות ×¤×Ø×ž×¦×‘×˜×™×•×Ŗ בע"מ صناعات تيفا Ų§Ł„ŲµŁŠŲÆŁ„ŁŠŲ©'),
(30463, 'https://ror.org/03gkadw36', 'no_lang_code', 1, 'https://ror.org/03gkadw36 Sappasithiprasong Hospital'),
(30464, 'https://ror.org/05x9zm716', 'en', 1, 'https://ror.org/05x9zm716 Fourth Affiliated Hospital of Anhui Medical University å®‰å¾½åŒ»ē§‘å¤§å­¦ē¬¬å››é™„å±žåŒ»é™¢'),
(30465, 'https://ror.org/039c4fg18', 'en', 1, 'https://ror.org/039c4fg18 Gibraltar Museum'),
(30466, 'https://ror.org/05qp6pd10', 'no_lang_code', 1, 'https://ror.org/05qp6pd10 Wuxi Taihu Hospital'),
(30467, 'https://ror.org/041yj5753', 'en', 1, 'https://ror.org/041yj5753 Stomatology Hospital'),
(30468, 'https://ror.org/00dpgqt54', 'en', 1, 'https://ror.org/00dpgqt54 Mianyang Third People''s Hospital'),
(30469, 'https://ror.org/02ddfy797', 'en', 1, 'https://ror.org/02ddfy797 82th Hospital of Pla'),
(30470, 'https://ror.org/02g8tfh80', 'ms', 1, 'https://ror.org/02g8tfh80 Hospital Sarikei'),
(30471, 'https://ror.org/03cmqpr17', 'en', 1, 'https://ror.org/03cmqpr17 Affiliated Hospital of Guilin Medical College'),
(30472, 'https://ror.org/03bxtpd68', 'no_lang_code', 1, 'https://ror.org/03bxtpd68 Sigma Tau (Italy)'),
(30473, 'https://ror.org/03fx0xk26', 'en', 1, 'https://ror.org/03fx0xk26 The Jane Goodall Institute'),
(30474, 'https://ror.org/03aceaw85', 'en', 1, 'https://ror.org/03aceaw85 Sihanouk Hospital Center of HOPE'),
(30475, 'https://ror.org/01nsg6818', 'no_lang_code', 1, 'https://ror.org/01nsg6818 Simpson Biotech Company (Taiwan)'),
(30476, 'https://ror.org/01wn7w598', 'en', 1, 'https://ror.org/01wn7w598 Affiliated Hospital of Taishan Medical University'),
(30477, 'https://ror.org/05c27bs83', 'en', 1, 'https://ror.org/05c27bs83 Singapore Clinical Research Institute'),
(30478, 'https://ror.org/01n3v7c44', 'en', 1, 'https://ror.org/01n3v7c44 Liaoning Provincial People''s Hospital č¾½å®ēœäŗŗę°‘åŒ»é™¢'),
(30479, 'https://ror.org/01khmxb55', 'en', 1, 'https://ror.org/01khmxb55 Jiangyin People''s Hospital'),
(30480, 'https://ror.org/0454gfp30', 'nl', 1, 'https://ror.org/0454gfp30 Sint Maartenskliniek'),
(30481, 'https://ror.org/05wga2g83', 'ms', 1, 'https://ror.org/05wga2g83 Hospital Sultanah Bahiyah'),
(30482, 'https://ror.org/01pwgd096', 'en', 1, 'https://ror.org/01pwgd096 SKA Observatory'),
(30483, 'https://ror.org/02qkhx131', 'en', 1, 'https://ror.org/02qkhx131 Jiangxi Pingxiang People''s Hospital'),
(30484, 'https://ror.org/01erc2q10', 'en', 1, 'https://ror.org/01erc2q10 Suzhou Guangji Hospital'),
(30485, 'https://ror.org/05ctyj936', 'en', 1, 'https://ror.org/05ctyj936 Yan''an Hospital Affiliated To Kunming Medical University ę˜†ę˜Žåø‚å»¶å®‰åŒ»é™¢'),
(30486, 'https://ror.org/012f2cn18', 'en', 1, 'https://ror.org/012f2cn18 Second Affiliated Hospital of Dalian Medical University'),
(30487, 'https://ror.org/00e0w3260', 'en', 1, 'https://ror.org/00e0w3260 Arcus Foundation'),
(30488, 'https://ror.org/02wwt0d68', 'no_lang_code', 1, 'https://ror.org/02wwt0d68 Shinsera Technologies (Japan)'),
(30489, 'https://ror.org/04e6jcd64', 'en', 1, 'https://ror.org/04e6jcd64 Thrombosis Research Institute'),
(30490, 'https://ror.org/035rs9v13', 'en', 1, 'https://ror.org/035rs9v13 Second Affiliated Hospital of Shantou University Medical College'),
(30491, 'https://ror.org/03ky42c33', 'en', 1, 'https://ror.org/03ky42c33 Taichung Hospital'),
(30492, 'https://ror.org/0569vjj73', 'en', 1, 'https://ror.org/0569vjj73 Australian Wine Research Institute'),
(30493, 'https://ror.org/00hpwje09', 'de', 1, 'https://ror.org/00hpwje09 Tierärztliche Praxis für Neurologie'),
(30494, 'https://ror.org/04mm8xb27', 'no_lang_code', 1, 'https://ror.org/04mm8xb27 SciGenom Labs (India)'),
(30495, 'https://ror.org/026bqfq17', 'en', 1, 'https://ror.org/026bqfq17 Second Affiliated Hospital of Zhengzhou University'),
(30496, 'https://ror.org/03dx9c487', 'en', 1, 'https://ror.org/03dx9c487 Supreme Commission for Tourism and Antiquities'),
(30497, 'https://ror.org/00ryamr02', 'en', 1, 'https://ror.org/00ryamr02 Sea to Shore Alliance'),
(30498, 'https://ror.org/03tn5kh37', 'en', 1, 'https://ror.org/03tn5kh37 Second Hospital of Shanxi Medical University å±±č„æåŒ»ē§‘å¤§å­¦ē¬¬äŗŒåŒ»é™¢'),
(30499, 'https://ror.org/02ftdsn70', 'no_lang_code', 1, 'https://ror.org/02ftdsn70 Taihe Hospital'),
(30500, 'https://ror.org/02b4me685', 'no_lang_code', 1, 'https://ror.org/02b4me685 Tokatsu Hospital'),
(30501, 'https://ror.org/04fc5qm41', 'no_lang_code', 1, 'https://ror.org/04fc5qm41 Toyota Kosei Hospital č±Šē”°åŽšē”Ÿē—…é™¢'),
(30502, 'https://ror.org/032hk6448', 'en', 1, 'https://ror.org/032hk6448 Changshu No.1 People''s Hospital'),
(30503, 'https://ror.org/00qy2eq52', 'en', 1, 'https://ror.org/00qy2eq52 Universities Federation for Animal Welfare'),
(30504, 'https://ror.org/02ykcmr55', 'en', 1, 'https://ror.org/02ykcmr55 Shandong Province Animal Husbandry and Veterinary Bureau'),
(30505, 'https://ror.org/023te5r95', 'en', 1, 'https://ror.org/023te5r95 Fifth Affiliated Hospital of Sun Yat-sen University'),
(30506, 'https://ror.org/0421ba211', 'en', 1, 'https://ror.org/0421ba211 Turku Centre for Biotechnology'),
(30507, 'https://ror.org/04bxn2127', 'en', 1, 'https://ror.org/04bxn2127 Japan Food Research Laboratories ę—„ęœ¬é£Ÿå“ē ”ē©¶ę‰€'),
(30508, 'https://ror.org/01djnt473', 'en', 1, 'https://ror.org/01djnt473 First Affiliated Hospital of Jiamusi University'),
(30509, 'https://ror.org/00yx0s761', 'en', 1, 'https://ror.org/00yx0s761 First Affiliated Hospital of Liaoning Medical University'),
(30510, 'https://ror.org/03zeqmc64', 'en', 1, 'https://ror.org/03zeqmc64 High Energy Materials Research Laboratory ą¤‰ą¤šą„ą¤š ą¤‰ą¤°ą„ą¤œą¤¾ ą¤Ŗą¤¦ą¤¾ą¤°ą„ą¤„ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(30511, 'https://ror.org/04sv7km52', 'en', 1, 'https://ror.org/04sv7km52 Tanzania Wildlife Research Institute'),
(30512, 'https://ror.org/00x75mt56', 'en', 1, 'https://ror.org/00x75mt56 Tzu Hui Institute of Technology'),
(30513, 'https://ror.org/04bzg5466', 'en', 1, 'https://ror.org/04bzg5466 University of Chicago Research Bangladesh'),
(30514, 'https://ror.org/02qmhct90', 'en', 1, 'https://ror.org/02qmhct90 The Second Nanning People''s Hospital å—å®åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(30515, 'https://ror.org/05pmkqv04', 'en', 1, 'https://ror.org/05pmkqv04 First Hospital of Qinhuangdao'),
(30516, 'https://ror.org/01cqwmh55', 'en', 1, 'https://ror.org/01cqwmh55 First People''s Hospital of Foshan'),
(30517, 'https://ror.org/057wkj006', 'en', 1, 'https://ror.org/057wkj006 Center for Excellence in Basic Sciences ą¤®ą„Œą¤²ą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤•ą¤°ą„ą¤· ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(30518, 'https://ror.org/0421p8j22', 'en', 1, 'https://ror.org/0421p8j22 Wuxi Third People''s Hospital'),
(30519, 'https://ror.org/02f8z2f57', 'en', 1, 'https://ror.org/02f8z2f57 First People’s Hospital of Zunyi'),
(30520, 'https://ror.org/011b9vp56', 'en', 1, 'https://ror.org/011b9vp56 Ruian People''s Hospital ē‘žå®‰åø‚äŗŗę°‘åŒ»é™¢'),
(30521, 'https://ror.org/01h439d80', 'en', 1, 'https://ror.org/01h439d80 Third Hospital of Nanchang'),
(30522, 'https://ror.org/0462xwv27', 'fr', 1, 'https://ror.org/0462xwv27 UniversitƩ Nangui Abrogoua'),
(30523, 'https://ror.org/04kx2vh28', 'en', 1, 'https://ror.org/04kx2vh28 Programa Mundial de Alimentos Programma Alimentare Mondiale Programme Alimentaire Mondial World Food Programme'),
(30524, 'https://ror.org/00h4nzs54', 'en', 1, 'https://ror.org/00h4nzs54 Zhumadian Central Hospital'),
(30525, 'https://ror.org/02skpkw64', 'en', 1, 'https://ror.org/02skpkw64 Shenzhen KangNing Hospital'),
(30526, 'https://ror.org/058qtt435', 'en', 1, 'https://ror.org/058qtt435 United Nations Population Fund'),
(30527, 'https://ror.org/01c9rqr26', 'en', 1, 'https://ror.org/01c9rqr26 VA Tennessee Valley Healthcare System'),
(30528, 'https://ror.org/04595zj73', 'en', 1, 'https://ror.org/04595zj73 Xi’an Children’s Hospital'),
(30529, 'https://ror.org/01y96v851', 'no_lang_code', 1, 'https://ror.org/01y96v851 Viron Therapeutics (Canada)'),
(30530, 'https://ror.org/0056qvz32', 'no_lang_code', 1, 'https://ror.org/0056qvz32 Vision Engineering (Italy)'),
(30531, 'https://ror.org/020299x40', 'en', 1, 'https://ror.org/020299x40 Xian Mental Health Center'),
(30532, 'https://ror.org/02dx2xm20', 'en', 1, 'https://ror.org/02dx2xm20 Xiangyang Central Hospital'),
(30533, 'https://ror.org/017t6fa07', 'en', 1, 'https://ror.org/017t6fa07 Xinyang College of Agriculture and Forestry äæ”é˜³å†œęž—å­¦é™¢'),
(30534, 'https://ror.org/01kt8dn14', 'en', 1, 'https://ror.org/01kt8dn14 Weihai City Mental Health Center'),
(30535, 'https://ror.org/01a3yyc70', 'en', 1, 'https://ror.org/01a3yyc70 Western Australian Museum'),
(30536, 'https://ror.org/02wdwnk04', 'en', 1, 'https://ror.org/02wdwnk04 British Heart Foundation'),
(30537, 'https://ror.org/03xg85719', 'en', 1, 'https://ror.org/03xg85719 Institute for Advanced Study Wissenschaftskolleg zu Berlin'),
(30538, 'https://ror.org/00gws9676', 'en', 1, 'https://ror.org/00gws9676 YaoundƩ General Hospital'),
(30539, 'https://ror.org/05wbpaf14', 'en', 1, 'https://ror.org/05wbpaf14 First Affiliated Hospital of Wannan Medical College'),
(30540, 'https://ror.org/01k1x3b35', 'en', 1, 'https://ror.org/01k1x3b35 Zhuhai People''s Hospital ē ęµ·åø‚äŗŗę°‘åŒ»é™¢'),
(30541, 'https://ror.org/0514w0t77', 'en', 1, 'https://ror.org/0514w0t77 Yixing Tumor Hospital'),
(30542, 'https://ror.org/055gka453', 'en', 1, 'https://ror.org/055gka453 State Administration of Foreign Experts Affairs'),
(30543, 'https://ror.org/04q6fz931', 'en', 1, 'https://ror.org/04q6fz931 Zoological Park Organization'),
(30544, 'https://ror.org/00znyv691', 'en', 1, 'https://ror.org/00znyv691 Danish National Research Foundation'),
(30545, 'https://ror.org/01gb56c55', 'it', 1, 'https://ror.org/01gb56c55 Cariplo Foundation Fondazione Cariplo'),
(30546, 'https://ror.org/03bt48876', 'no_lang_code', 1, 'https://ror.org/03bt48876 Yantaishan Hospital ēƒŸå°å±±åŒ»é™¢'),
(30547, 'https://ror.org/04aqat463', 'en', 1, 'https://ror.org/04aqat463 Zhejiang Provincial Natural Science Foundation ęµ™ę±Ÿēœč‡Ŗē„¶ē§‘å­¦åŸŗé‡‘å§”å‘˜ä¼š'),
(30548, 'https://ror.org/00afrj253', 'en', 1, 'https://ror.org/00afrj253 International Telecommunication Union'),
(30549, 'https://ror.org/0005jpy03', 'en', 1, 'https://ror.org/0005jpy03 Israel National Institute for Health Policy Research'),
(30550, 'https://ror.org/04wtq2305', 'en', 1, 'https://ror.org/04wtq2305 China Geological Survey äø­å›½åœ°č“Øč°ƒęŸ„å±€ę°“ę–‡åœ°č“ØēŽÆå¢ƒåœ°č“Øč°ƒęŸ„äø­åæƒ'),
(30551, 'https://ror.org/01kcva023', 'en', 1, 'https://ror.org/01kcva023 Ministry of Education ę–°åŠ å”ę•™č‚²éƒØ'),
(30552, 'https://ror.org/01822d048', 'en', 1, 'https://ror.org/01822d048 Norwegian Nurses Organisation'),
(30553, 'https://ror.org/05jc9p859', 'en', 1, 'https://ror.org/05jc9p859 NeuroSurgical Research Foundation'),
(30554, 'https://ror.org/027gw7s27', 'no_lang_code', 1, 'https://ror.org/027gw7s27 Taizhou Municipal Hospital'),
(30555, 'https://ror.org/012mzw131', 'en', 1, 'https://ror.org/012mzw131 Leverhulme Trust'),
(30556, 'https://ror.org/03z9cwa38', 'en', 1, 'https://ror.org/03z9cwa38 Korea Evaluation Institute of Industrial Technology'),
(30557, 'https://ror.org/03bsmfz84', 'en', 1, 'https://ror.org/03bsmfz84 Volkswagen Foundation VolkswagenStiftung'),
(30558, 'https://ror.org/00nc55f03', 'pt', 1, 'https://ror.org/00nc55f03 Fundação de Amparo à Pesquisa do Estado de Minas Gerais'),
(30559, 'https://ror.org/044vr6g03', 'en', 1, 'https://ror.org/044vr6g03 Science and Technology Development Fund'),
(30560, '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 ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ της Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĪ®Ļ‚ ĪˆĪ½Ļ‰ĻƒĪ·Ļ‚ για την Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī± Ī”Ī¹ĪŗĻ„ĻĻ‰Ī½ και Ī Ī»Ī·ĻĪæĻ†ĪæĻĪ¹ĻŽĪ½'),
(30561, 'https://ror.org/04x3cxs03', 'en', 1, 'https://ror.org/04x3cxs03 National Medical Research Council'),
(30562, 'https://ror.org/01pqy3846', 'en', 1, 'https://ror.org/01pqy3846 Larry Ellison Foundation'),
(30563, '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'),
(30564, 'https://ror.org/00tntzp09', 'en', 1, 'https://ror.org/00tntzp09 German-Israeli Foundation for Scientific Research and Development'),
(30565, 'https://ror.org/03f2xnj73', 'es', 1, 'https://ror.org/03f2xnj73 Consejo de Ciencia y TecnologĆ­a del Estado de Tabasco'),
(30566, 'https://ror.org/037nx0e70', 'en', 1, 'https://ror.org/037nx0e70 Slovak Research and Development Agency'),
(30567, 'https://ror.org/0003xa228', 'en', 1, 'https://ror.org/0003xa228 Cancer Prevention and Research Institute of Texas'),
(30568, 'https://ror.org/00jp8d455', 'en', 1, 'https://ror.org/00jp8d455 Research Corporation for Science Advancement'),
(30569, 'https://ror.org/03jc1ps31', 'no_lang_code', 1, 'https://ror.org/03jc1ps31 Exide Technologies (United States)'),
(30570, 'https://ror.org/04w6kn183', 'fr', 1, 'https://ror.org/04w6kn183 Fondation pour la Recherche MƩdicale'),
(30571, 'https://ror.org/00j8z2m73', 'en', 1, 'https://ror.org/00j8z2m73 United States-Israel Binational Science Foundation'),
(30572, 'https://ror.org/012kf4317', 'en', 1, 'https://ror.org/012kf4317 Alexander von Humboldt Foundation Alexander von Humboldt-Stiftung'),
(30573, 'https://ror.org/01c3dm486', 'no_lang_code', 1, 'https://ror.org/01c3dm486 MetLife (United States)'),
(30574, 'https://ror.org/05eg49r29', 'en', 1, 'https://ror.org/05eg49r29 Bulgarian Science Fund'),
(30575, 'https://ror.org/00kxash64', 'en', 1, 'https://ror.org/00kxash64 Belarusian Republican Foundation for Fundamental Research'),
(30576, 'https://ror.org/00zbf3d93', 'en', 1, 'https://ror.org/00zbf3d93 Health Research Council of New Zealand'),
(30577, 'https://ror.org/026v53e29', 'en', 1, 'https://ror.org/026v53e29 National IT industry Promotion Agency ģ •ė³“ķ†µģ‹ ģ‚°ģ—…ģ§„ķ„ģ›'),
(30578, 'https://ror.org/039d9wr27', 'en', 1, 'https://ror.org/039d9wr27 National Heart Foundation of Australia'),
(30579, 'https://ror.org/04wyg6495', 'en', 1, 'https://ror.org/04wyg6495 Australian Centre for International Agricultural Research'),
(30580, 'https://ror.org/01gd7b947', 'en', 1, 'https://ror.org/01gd7b947 Damon Runyon Cancer Research Foundation'),
(30581, 'https://ror.org/019p8h045', 'en', 1, 'https://ror.org/019p8h045 Camille and Henry Dreyfus Foundation'),
(30582, 'https://ror.org/012y9zp98', 'en', 1, 'https://ror.org/012y9zp98 Commission for Technology and Innovation Kommission für Technologie und Innovation'),
(30583, 'https://ror.org/012s3r374', 'en', 1, 'https://ror.org/012s3r374 Ministry of Science, Technology and Innovation'),
(30584, 'https://ror.org/04drjs621', 'en', 1, 'https://ror.org/04drjs621 Research to Prevent Blindness'),
(30585, 'https://ror.org/00y6khe77', 'en', 1, 'https://ror.org/00y6khe77 Ministerstvo zdravotnictví České republiky Ministry of Health'),
(30586, 'https://ror.org/04bpasa69', 'en', 1, 'https://ror.org/04bpasa69 Appalachian Regional Commission'),
(30587, 'https://ror.org/00ra24d41', 'en', 1, 'https://ror.org/00ra24d41 National Science and Technology Entrepreneurship Development Board'),
(30588, 'https://ror.org/02wv5fj21', 'en', 1, 'https://ror.org/02wv5fj21 Children''s Cancer Research Fund'),
(30589, 'https://ror.org/02xey9a22', 'en', 1, 'https://ror.org/02xey9a22 Fogarty International Center'),
(30590, 'https://ror.org/05exfab56', 'en', 1, 'https://ror.org/05exfab56 Neurosciences Research Foundation'),
(30591, 'https://ror.org/04n65rp89', 'en', 1, 'https://ror.org/04n65rp89 Doris Duke Charitable Foundation'),
(30592, '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'),
(30593, 'https://ror.org/0368jnd28', 'en', 1, 'https://ror.org/0368jnd28 Dutch Cancer Society KWF Kankerbestrijding'),
(30594, 'https://ror.org/05w7kkt66', 'en', 1, 'https://ror.org/05w7kkt66 American Roentgen Ray Society'),
(30595, 'https://ror.org/03z2py885', 'en', 1, 'https://ror.org/03z2py885 National Eye Research Centre'),
(30596, 'https://ror.org/0028hgc48', 'en', 1, 'https://ror.org/0028hgc48 Utah Space Grant Consortium'),
(30597, 'https://ror.org/05pg13f04', 'en', 1, 'https://ror.org/05pg13f04 Morris Animal Foundation'),
(30598, 'https://ror.org/04d8cf622', 'en', 1, 'https://ror.org/04d8cf622 International Partnership for the Hydrogen and Fuel Cell in the Economy'),
(30599, 'https://ror.org/050rgn017', 'en', 1, 'https://ror.org/050rgn017 Diabetes UK'),
(30600, 'https://ror.org/01kpjmx04', 'en', 1, 'https://ror.org/01kpjmx04 Carlsberg Foundation'),
(30601, 'https://ror.org/052261q33', 'en', 1, 'https://ror.org/052261q33 Swedish Heart-Lung Foundation'),
(30602, 'https://ror.org/00xcd7y72', 'en', 1, 'https://ror.org/00xcd7y72 All India Council for Technical Education'),
(30603, 'https://ror.org/02vt3b359', 'en', 1, 'https://ror.org/02vt3b359 Government of Jilin Province'),
(30604, 'https://ror.org/038j4hz26', 'en', 1, 'https://ror.org/038j4hz26 Partnership for Advanced Computing in Europe'),
(30605, 'https://ror.org/035rrps97', 'en', 1, 'https://ror.org/035rrps97 National Research Council'),
(30606, 'https://ror.org/04rn1rm44', 'en', 1, 'https://ror.org/04rn1rm44 Education Department of Heilongjiang Province'),
(30607, 'https://ror.org/027xav248', 'en', 1, 'https://ror.org/027xav248 Finnish Cultural Foundation'),
(30608, 'https://ror.org/014pyq554', 'en', 1, 'https://ror.org/014pyq554 Australian Historical Association'),
(30609, 'https://ror.org/01cvsyf94', 'no_lang_code', 1, 'https://ror.org/01cvsyf94 Labex (Sweden)'),
(30610, 'https://ror.org/00dxczh48', 'en', 1, 'https://ror.org/00dxczh48 John D. and Catherine T. MacArthur Foundation'),
(30611, 'https://ror.org/02jpa9x52', 'en', 1, 'https://ror.org/02jpa9x52 China Medical Board'),
(30612, 'https://ror.org/054a0at43', 'en', 1, 'https://ror.org/054a0at43 Michigan Department of Licensing and Regulatory Affairs'),
(30613, 'https://ror.org/0120ky124', 'en', 1, 'https://ror.org/0120ky124 National Breast Cancer Foundation'),
(30614, 'https://ror.org/00dzbg839', 'en', 1, 'https://ror.org/00dzbg839 Royal Astronomical Society'),
(30615, 'https://ror.org/0561xc723', 'en', 1, 'https://ror.org/0561xc723 Swedish Foundation for International Cooperation in Research and Higher Education'),
(30616, 'https://ror.org/020k6v967', 'nl', 1, 'https://ror.org/020k6v967 Nierstichting'),
(30617, 'https://ror.org/0429te836', 'en', 1, 'https://ror.org/0429te836 Ministry of Education'),
(30618, 'https://ror.org/0526snb40', 'en', 1, 'https://ror.org/0526snb40 Royal Academy of Engineering'),
(30619, 'https://ror.org/00v3jqn19', 'en', 1, 'https://ror.org/00v3jqn19 Agence mondiale antidopage World Anti-Doping Agency'),
(30620, 'https://ror.org/0210rze73', 'en', 1, 'https://ror.org/0210rze73 Stavros Niarchos Foundation'),
(30621, 'https://ror.org/01njdr168', 'en', 1, 'https://ror.org/01njdr168 Finnish Academy of Science and Letters');
INSERT INTO `rors` VALUES
(30622, 'https://ror.org/00rdpwj76', 'en', 1, 'https://ror.org/00rdpwj76 Spencer Foundation'),
(30623, 'https://ror.org/03epg4e71', 'en', 1, 'https://ror.org/03epg4e71 Esperantic Studies Foundation'),
(30624, 'https://ror.org/00zc1hf95', 'en', 1, 'https://ror.org/00zc1hf95 National Sleep Foundation'),
(30625, 'https://ror.org/02kna3n95', 'en', 1, 'https://ror.org/02kna3n95 Prostate Cancer Foundation of Australia'),
(30626, 'https://ror.org/03zcxha54', 'de', 1, 'https://ror.org/03zcxha54 Else Krƶner-Fresenius-Stiftung'),
(30627, 'https://ror.org/02swwpp84', 'en', 1, 'https://ror.org/02swwpp84 Juvenile Diabetes Research Foundation'),
(30628, 'https://ror.org/01fn7me06', 'en', 1, 'https://ror.org/01fn7me06 Ruotsin kansainvƤlisen kehitysyhteistyƶn keskusvirasto Swedish International Development Cooperation Agency'),
(30629, 'https://ror.org/00emnts94', 'en', 1, 'https://ror.org/00emnts94 Bavarian Research Foundation Bayerische Forschungsstiftung'),
(30630, 'https://ror.org/04e98j339', 'en', 1, 'https://ror.org/04e98j339 United States-Israel Binational Agricultural Research and Development Fund'),
(30631, 'https://ror.org/008qp6e21', 'en', 1, 'https://ror.org/008qp6e21 Rehabilitation Research and Development Service'),
(30632, 'https://ror.org/01vb6q136', 'en', 1, 'https://ror.org/01vb6q136 Netherlands Space Office'),
(30633, 'https://ror.org/00f3sc705', 'en', 1, 'https://ror.org/00f3sc705 Fritz Thyssen Foundation Fritz Thyssen Stiftung'),
(30634, 'https://ror.org/04a3gjw65', 'en', 1, 'https://ror.org/04a3gjw65 Ministry of Education ą¦¶ą¦æą¦•ą§ą¦·ą¦¾ ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(30635, 'https://ror.org/02417p338', 'en', 1, 'https://ror.org/02417p338 Parkinson''s UK'),
(30636, 'https://ror.org/01npwtv09', 'en', 1, 'https://ror.org/01npwtv09 Prostate Cancer Foundation'),
(30637, 'https://ror.org/03xr9q522', 'en', 1, 'https://ror.org/03xr9q522 Kuwait Foundation for the Advancement of Sciences'),
(30638, 'https://ror.org/05pmq5w14', 'de', 1, 'https://ror.org/05pmq5w14 Deutsche Bundesstiftung Umwelt'),
(30639, 'https://ror.org/04hd1y677', 'en', 1, 'https://ror.org/04hd1y677 Hewlett Foundation'),
(30640, 'https://ror.org/03cvfxv40', 'en', 1, 'https://ror.org/03cvfxv40 BrightFocus Foundation'),
(30641, 'https://ror.org/04v83ky93', 'en', 1, 'https://ror.org/04v83ky93 National Foundation for Cancer Research'),
(30642, 'https://ror.org/03z7xev21', 'en', 1, 'https://ror.org/03z7xev21 Asthma UK'),
(30643, 'https://ror.org/00agy5a68', 'it', 1, 'https://ror.org/00agy5a68 Fondazione Cassa Risparmio Perugia'),
(30644, 'https://ror.org/05fb9ak14', 'en', 1, 'https://ror.org/05fb9ak14 Robert Schalkenbach Foundation'),
(30645, 'https://ror.org/019c00g57', 'en', 1, 'https://ror.org/019c00g57 Academy of Television Arts and Sciences'),
(30646, 'https://ror.org/02nqj0b62', 'en', 1, 'https://ror.org/02nqj0b62 Economic Development Board'),
(30647, 'https://ror.org/0302v9k70', 'en', 1, 'https://ror.org/0302v9k70 Connecticut State Emergency Response Commission'),
(30648, 'https://ror.org/0045x2741', 'en', 1, 'https://ror.org/0045x2741 Agency for Toxic Substances and Disease Registry'),
(30649, 'https://ror.org/02e1fjy29', 'no_lang_code', 1, 'https://ror.org/02e1fjy29 AFA Insurance (Sweden)'),
(30650, 'https://ror.org/051n9kx09', 'en', 1, 'https://ror.org/051n9kx09 National Emergency Management Agency'),
(30651, 'https://ror.org/037nbwt68', 'en', 1, 'https://ror.org/037nbwt68 Fulbright Commission'),
(30652, 'https://ror.org/01hj26z68', 'en', 1, 'https://ror.org/01hj26z68 Richmond County Savings Foundation'),
(30653, 'https://ror.org/01r1e1h27', 'en', 1, 'https://ror.org/01r1e1h27 London Mathematical Society'),
(30654, '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'),
(30655, 'https://ror.org/002sgqx17', 'en', 1, 'https://ror.org/002sgqx17 Western Economic Diversification Canada'),
(30656, 'https://ror.org/01gycsq30', 'en', 1, 'https://ror.org/01gycsq30 Epilepsy Research UK'),
(30657, 'https://ror.org/05dbx6743', 'en', 1, 'https://ror.org/05dbx6743 Department of Veterans Affairs'),
(30658, 'https://ror.org/01wcqa315', 'en', 1, 'https://ror.org/01wcqa315 Action Medical Research'),
(30659, 'https://ror.org/018kdpd27', 'en', 1, 'https://ror.org/018kdpd27 Leakey Foundation'),
(30660, 'https://ror.org/01zcf4n33', 'en', 1, 'https://ror.org/01zcf4n33 American Foundation for Suicide Prevention'),
(30661, 'https://ror.org/0290hax27', 'en', 1, 'https://ror.org/0290hax27 Gatsby Charitable Foundation'),
(30662, 'https://ror.org/04j68sw28', 'en', 1, 'https://ror.org/04j68sw28 Heart Research UK'),
(30663, 'https://ror.org/02h43gk75', 'en', 1, 'https://ror.org/02h43gk75 Israel Cancer Research Fund'),
(30664, 'https://ror.org/022t7q367', 'en', 1, 'https://ror.org/022t7q367 Indiana Clinical and Translational Sciences Institute'),
(30665, 'https://ror.org/03wrep505', 'it', 1, 'https://ror.org/03wrep505 Ente Cassa di Risparmio di Firenze'),
(30666, 'https://ror.org/00d1b1c41', 'it', 1, 'https://ror.org/00d1b1c41 Compagnia di San Paolo'),
(30667, 'https://ror.org/02a4k9d45', 'en', 1, 'https://ror.org/02a4k9d45 Blooms Syndrome Foundation'),
(30668, 'https://ror.org/02zxqxw53', 'en', 1, 'https://ror.org/02zxqxw53 AXA Research Fund'),
(30669, 'https://ror.org/00ybhm522', 'en', 1, 'https://ror.org/00ybhm522 Flight Attendant Medical Research Institute'),
(30670, 'https://ror.org/03a6gjz18', 'en', 1, 'https://ror.org/03a6gjz18 Society of Hospital Pharmacists of Australia'),
(30671, 'https://ror.org/01y4ah893', 'en', 1, 'https://ror.org/01y4ah893 Michigan Economic Development Corporation'),
(30672, 'https://ror.org/02g1cyr24', 'no_lang_code', 1, 'https://ror.org/02g1cyr24 Moody''s Corporation (United States)'),
(30673, 'https://ror.org/03zkdcr67', 'en', 1, 'https://ror.org/03zkdcr67 Academy of American Poets'),
(30674, 'https://ror.org/05qvpbw57', 'en', 1, 'https://ror.org/05qvpbw57 Danida Fellowship Centre'),
(30675, 'https://ror.org/046eh8t80', 'en', 1, 'https://ror.org/046eh8t80 CHDI Foundation'),
(30676, 'https://ror.org/02zkxjz73', 'fr', 1, 'https://ror.org/02zkxjz73 Fondation de France'),
(30677, 'https://ror.org/0562vg232', 'en', 1, 'https://ror.org/0562vg232 Ernest C. Manning Awards Foundation La Fondation des Prix Ernest C. Manning'),
(30678, 'https://ror.org/047egay20', 'en', 1, 'https://ror.org/047egay20 Maj and Tor Nessling Foundation'),
(30679, 'https://ror.org/037dz3r63', 'en', 1, 'https://ror.org/037dz3r63 UK-India Education and Research Initiative'),
(30680, 'https://ror.org/049j2m240', 'en', 1, 'https://ror.org/049j2m240 Department of Health of Guangdong Province'),
(30681, 'https://ror.org/03yqfnv74', 'en', 1, 'https://ror.org/03yqfnv74 Cure Cancer Australia'),
(30682, 'https://ror.org/02r7nkw81', 'pt', 1, 'https://ror.org/02r7nkw81 Araucaria Foundation Fundação AraucÔria'),
(30683, 'https://ror.org/031wq1t38', 'en', 1, 'https://ror.org/031wq1t38 Ministry of Transport'),
(30684, 'https://ror.org/05qk3ge34', 'en', 1, 'https://ror.org/05qk3ge34 Nuclear Safety And Security Commission'),
(30685, 'https://ror.org/05avmtm72', 'en', 1, 'https://ror.org/05avmtm72 Arnold and Mabel Beckman Foundation'),
(30686, 'https://ror.org/023wx0t90', 'en', 1, 'https://ror.org/023wx0t90 Ministry of Environment, Forests and Climate Change'),
(30687, 'https://ror.org/0489qz649', 'fr', 1, 'https://ror.org/0489qz649 Fondation ARC pour la Recherche sur le Cancer'),
(30688, 'https://ror.org/01ma57r88', 'en', 1, 'https://ror.org/01ma57r88 Smith Richardson Foundation'),
(30689, 'https://ror.org/05257z229', 'en', 1, 'https://ror.org/05257z229 Human Growth Foundation'),
(30690, 'https://ror.org/05mcyt529', 'en', 1, 'https://ror.org/05mcyt529 Korea Federation of Science and Technology Societies ķ•œźµ­ź³¼ķ•™źø°ģˆ ė‹Øģ²“ģ“ģ—°ķ•©ķšŒ'),
(30691, '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'),
(30692, 'https://ror.org/02gc7qc02', 'en', 1, 'https://ror.org/02gc7qc02 World Cancer Research Fund UK'),
(30693, 'https://ror.org/043bpky34', 'en', 1, 'https://ror.org/043bpky34 Nanjing University of Posts and Telecommunications å—äŗ¬é‚®ē”µå¤§å­¦'),
(30694, 'https://ror.org/02hcxaq60', 'en', 1, 'https://ror.org/02hcxaq60 Ministry of Education and Science'),
(30695, 'https://ror.org/04pkb2v55', 'en', 1, 'https://ror.org/04pkb2v55 EsmƩe Fairbairn Foundation'),
(30696, 'https://ror.org/00n20jq68', 'en', 1, 'https://ror.org/00n20jq68 British Ecological Society'),
(30697, 'https://ror.org/00zwq0r67', 'en', 1, 'https://ror.org/00zwq0r67 Texas Commission on Environmental Quality'),
(30698, 'https://ror.org/0001ew531', 'en', 1, 'https://ror.org/0001ew531 Adelson Foundation'),
(30699, 'https://ror.org/05n4wp011', 'en', 1, 'https://ror.org/05n4wp011 Society of Abdominal Radiology'),
(30700, 'https://ror.org/02f3xk561', 'en', 1, 'https://ror.org/02f3xk561 Cancer Research Institute'),
(30701, 'https://ror.org/04jpp6j90', 'en', 1, 'https://ror.org/04jpp6j90 Rothamsted International'),
(30702, 'https://ror.org/02mv9sr91', 'en', 1, 'https://ror.org/02mv9sr91 Academy of Motion Picture Arts and Sciences'),
(30703, 'https://ror.org/01etdvs72', 'en', 1, 'https://ror.org/01etdvs72 Wellbeing of Women'),
(30704, 'https://ror.org/03atssj74', 'en', 1, 'https://ror.org/03atssj74 Eli and Edythe Broad Foundation'),
(30705, 'https://ror.org/02ff5rr83', 'en', 1, 'https://ror.org/02ff5rr83 National Society for Histotechnology'),
(30706, 'https://ror.org/011x6n313', 'en', 1, 'https://ror.org/011x6n313 Leona M. and Harry B. Helmsley Charitable Trust'),
(30707, 'https://ror.org/02kx7se86', 'en', 1, 'https://ror.org/02kx7se86 Kidney Research UK'),
(30708, 'https://ror.org/02p7svq74', 'en', 1, 'https://ror.org/02p7svq74 Guy''s and St Thomas'' Charity'),
(30709, 'https://ror.org/0015x1k58', 'en', 1, 'https://ror.org/0015x1k58 National Center for Injury Prevention and Control'),
(30710, 'https://ror.org/04b7xxn32', 'en', 1, 'https://ror.org/04b7xxn32 United States Social Security Administration'),
(30711, 'https://ror.org/04cmszv87', 'en', 1, 'https://ror.org/04cmszv87 Wallace H. Coulter Foundation'),
(30712, 'https://ror.org/03p641z80', 'en', 1, 'https://ror.org/03p641z80 Prostate Cancer Canada'),
(30713, 'https://ror.org/04e3zg361', 'en', 1, 'https://ror.org/04e3zg361 Rosetrees Trust'),
(30714, 'https://ror.org/00xr9yb90', 'en', 1, 'https://ror.org/00xr9yb90 Great Lakes Fishery Trust'),
(30715, 'https://ror.org/05rbdsb19', 'en', 1, 'https://ror.org/05rbdsb19 Water Research Foundation'),
(30716, 'https://ror.org/03benss35', 'en', 1, 'https://ror.org/03benss35 Alzheimer Society of Canada SociƩtƩ Alzheimer du Canada'),
(30717, 'https://ror.org/03gne5057', 'en', 1, 'https://ror.org/03gne5057 Genome British Columbia'),
(30718, 'https://ror.org/03v7a9n80', 'en', 1, 'https://ror.org/03v7a9n80 CS Fund'),
(30719, 'https://ror.org/02h291k47', 'en', 1, 'https://ror.org/02h291k47 Horticulture Innovation Australia'),
(30720, 'https://ror.org/02t1yaf39', 'en', 1, 'https://ror.org/02t1yaf39 Fetzer Institute'),
(30721, 'https://ror.org/05e4d7a97', 'en', 1, 'https://ror.org/05e4d7a97 Queensland Emergency Medicine Research Foundation'),
(30722, 'https://ror.org/058bgdt55', 'no_lang_code', 1, 'https://ror.org/058bgdt55 Cotton (United States)'),
(30723, 'https://ror.org/043fwdk81', 'en', 1, 'https://ror.org/043fwdk81 Multiple Sclerosis Society'),
(30724, 'https://ror.org/04enz2k98', 'en', 1, 'https://ror.org/04enz2k98 Chengdu Normal University'),
(30725, 'https://ror.org/02z2a9w02', 'en', 1, 'https://ror.org/02z2a9w02 Horserace Betting Levy Board'),
(30726, 'https://ror.org/0115hrs73', 'en', 1, 'https://ror.org/0115hrs73 Gulf of Mexico Research Initiative'),
(30727, 'https://ror.org/015x8jm48', 'en', 1, 'https://ror.org/015x8jm48 Ministry of Housing and Urban-Rural Development äø­åŽäŗŗę°‘å…±å’Œå›½ä½ęˆæå’ŒåŸŽä¹”å»ŗč®¾éƒØ'),
(30728, 'https://ror.org/05pgnn319', 'en', 1, 'https://ror.org/05pgnn319 Cambridge Healthtech Institute'),
(30729, 'https://ror.org/03nt1ca89', 'en', 1, 'https://ror.org/03nt1ca89 Maritime and Port Authority of Singapore'),
(30730, 'https://ror.org/03844ds60', 'en', 1, 'https://ror.org/03844ds60 Irish Cancer Society'),
(30731, 'https://ror.org/00dkye506', 'de', 1, 'https://ror.org/00dkye506 Boehringer Ingelheim Fonds Stiftung für Medizinische Grundlagenforschung'),
(30732, 'https://ror.org/05bqzfg94', 'no', 1, 'https://ror.org/05bqzfg94 NordForsk'),
(30733, 'https://ror.org/041nhp446', 'en', 1, 'https://ror.org/041nhp446 Women''s Fund for Health Education and Research'),
(30734, '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'),
(30735, 'https://ror.org/03tcppy59', 'en', 1, 'https://ror.org/03tcppy59 The Research Council'),
(30736, 'https://ror.org/04ecck436', 'en', 1, 'https://ror.org/04ecck436 Public Utilities Board'),
(30737, 'https://ror.org/05ev3vr27', 'en', 1, 'https://ror.org/05ev3vr27 Quanzhou Institute of Equipment Manufacturing Haixi Institute äø­å›½ē§‘å­¦é™¢ęµ·č„æē ”ē©¶é™¢ę³‰å·žč£…å¤‡åˆ¶é€ ē ”ē©¶ę‰€'),
(30738, 'https://ror.org/026d6ma13', 'pt', 1, 'https://ror.org/026d6ma13 Fundação de Amparo à Pesquisa do Estado do Amazonas'),
(30739, 'https://ror.org/00ssgrj25', 'en', 1, 'https://ror.org/00ssgrj25 Amazon Research Foundation Fundação AmazÓnia Paraense de Amparo à Pesquisa'),
(30740, 'https://ror.org/02gp85x20', 'en', 1, 'https://ror.org/02gp85x20 Carnegie Corporation of New York'),
(30741, 'https://ror.org/00gxct719', 'es', 1, 'https://ror.org/00gxct719 Asociación Española Contra el CÔncer Spanish Association Against Cancer'),
(30742, 'https://ror.org/02jesmk44', 'en', 1, 'https://ror.org/02jesmk44 American Foundation for AIDS Research'),
(30743, 'https://ror.org/03q4zw938', 'en', 1, 'https://ror.org/03q4zw938 Institute of Current World Affairs'),
(30744, 'https://ror.org/006ss0h52', 'en', 1, 'https://ror.org/006ss0h52 Oak Foundation'),
(30745, 'https://ror.org/04cwxh229', 'en', 1, 'https://ror.org/04cwxh229 Nova Scotia Department of Energy'),
(30746, 'https://ror.org/001yrmh12', 'en', 1, 'https://ror.org/001yrmh12 Defense Logistics Agency'),
(30747, 'https://ror.org/04q5n7269', 'en', 1, 'https://ror.org/04q5n7269 Carolina Institute for NanoMedicine'),
(30748, 'https://ror.org/00kbbk236', 'en', 1, 'https://ror.org/00kbbk236 V Foundation for Cancer Research'),
(30749, 'https://ror.org/034ezwg26', 'en', 1, 'https://ror.org/034ezwg26 National Chung Shan Institute of Science and Technology'),
(30750, 'https://ror.org/0172fj584', 'es', 1, 'https://ror.org/0172fj584 Canary Islands Government Gobierno de Canarias'),
(30751, 'https://ror.org/02e2erp81', 'en', 1, 'https://ror.org/02e2erp81 Grayson-Jockey Club Research Foundation'),
(30752, 'https://ror.org/01xpmbc27', 'en', 1, 'https://ror.org/01xpmbc27 Thomson Reuters Foundation'),
(30753, 'https://ror.org/02axhzy41', 'en', 1, 'https://ror.org/02axhzy41 American Society for Laser Medicine and Surgery'),
(30754, 'https://ror.org/02htdjb57', 'no_lang_code', 1, 'https://ror.org/02htdjb57 Bial (Portugal)'),
(30755, 'https://ror.org/005rhrm66', 'en', 1, 'https://ror.org/005rhrm66 Australian Renewable Energy Agency'),
(30756, 'https://ror.org/03yhprz62', 'en', 1, 'https://ror.org/03yhprz62 John S. Dunn Foundation'),
(30757, 'https://ror.org/01pj5nn22', 'en', 1, 'https://ror.org/01pj5nn22 Stanley Medical Research Institute'),
(30758, 'https://ror.org/010mtd283', 'en', 1, 'https://ror.org/010mtd283 Elizabeth R. Griffin Research Foundation'),
(30759, 'https://ror.org/03ak9vt35', 'en', 1, 'https://ror.org/03ak9vt35 Gemeinnützige Hertie-Stiftung Hertie Foundation'),
(30760, 'https://ror.org/03yvcwz92', 'no_lang_code', 1, 'https://ror.org/03yvcwz92 Suzuken (Japan)'),
(30761, 'https://ror.org/00rgzpv08', 'en', 1, 'https://ror.org/00rgzpv08 Fujian Provincial Department of Science and Technology'),
(30762, 'https://ror.org/02cmxdd33', 'en', 1, 'https://ror.org/02cmxdd33 Kate''s Foundation'),
(30763, 'https://ror.org/05nzwyq50', 'en', 1, 'https://ror.org/05nzwyq50 JPB Foundation'),
(30764, 'https://ror.org/007pgtp80', 'pt', 1, 'https://ror.org/007pgtp80 Fundação Cearense de Apoio ao Desenvolvimento Científico e Tecnológico'),
(30765, 'https://ror.org/01wxdd722', 'en', 1, 'https://ror.org/01wxdd722 Deutsche Krebshilfe German Cancer Aid'),
(30766, 'https://ror.org/04p0je704', 'en', 1, 'https://ror.org/04p0je704 Korean Cancer Association'),
(30767, 'https://ror.org/004qxz190', 'en', 1, 'https://ror.org/004qxz190 Fondation ontarienne de neurotraumatologie Ontario Neurotrauma Foundation'),
(30768, 'https://ror.org/03xpj4h50', 'no_lang_code', 1, 'https://ror.org/03xpj4h50 Bioland (South Korea)'),
(30769, 'https://ror.org/00dpq7q77', 'en', 1, 'https://ror.org/00dpq7q77 Alcohol Research UK'),
(30770, 'https://ror.org/00cjrc276', 'fr', 1, 'https://ror.org/00cjrc276 Mitacs'),
(30771, 'https://ror.org/017cs1c33', 'en', 1, 'https://ror.org/017cs1c33 Chiang Ching-kuo Foundation'),
(30772, 'https://ror.org/04t48sm91', 'en', 1, 'https://ror.org/04t48sm91 Bundesamt für Umwelt Federal Office for the Environment'),
(30773, 'https://ror.org/03xqpdg50', 'da', 1, 'https://ror.org/03xqpdg50 Danish Rheumatism Association Gigtforeningen'),
(30774, 'https://ror.org/01qmxzb47', 'en', 1, 'https://ror.org/01qmxzb47 Top Institute Pharma'),
(30775, 'https://ror.org/02h7g2017', 'en', 1, 'https://ror.org/02h7g2017 British Skin Foundation'),
(30776, 'https://ror.org/00byz6s18', 'fr', 1, 'https://ror.org/00byz6s18 Geneva League Against Cancer Ligue Genevoise Contre le Cancer'),
(30777, 'https://ror.org/03xsjat94', 'en', 1, 'https://ror.org/03xsjat94 Natural Resources Data Management System'),
(30778, 'https://ror.org/027754r66', 'en', 1, 'https://ror.org/027754r66 Novo Nordisk UK Research Foundation'),
(30779, 'https://ror.org/05qnwyb92', 'en', 1, 'https://ror.org/05qnwyb92 British Lung Foundation'),
(30780, 'https://ror.org/048xjjh50', 'en', 1, 'https://ror.org/048xjjh50 Ministre du dĆ©veloppement des ressources humaines Ministry of Human Resource Development मानव संसाधन विकास ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ மனிதவள ą®®ąÆ‡ą®®ąÆą®Ŗą®¾ą®ŸąÆą®ŸąÆ ą®…ą®®ąÆˆą®šąÆą®šą®•ą®®ąÆ'),
(30781, 'https://ror.org/03133qe46', 'en', 1, 'https://ror.org/03133qe46 Fight for Sight'),
(30782, 'https://ror.org/02snbhr24', 'en', 1, 'https://ror.org/02snbhr24 Grand Challenges Canada'),
(30783, 'https://ror.org/02caat392', 'en', 1, 'https://ror.org/02caat392 Multiple Sclerosis Research Australia'),
(30784, 'https://ror.org/031756c24', 'es', 1, 'https://ror.org/031756c24 Consejo Estatal de Ciencia, Tecnología e Innovación de Chihuahua'),
(30785, 'https://ror.org/04jsh2530', 'en', 1, 'https://ror.org/04jsh2530 Andrew W. Mellon Foundation'),
(30786, 'https://ror.org/00qnfvz68', 'en', 1, 'https://ror.org/00qnfvz68 Open Society Foundations'),
(30787, 'https://ror.org/03yxd7304', 'en', 1, 'https://ror.org/03yxd7304 Israel Cancer Association'),
(30788, 'https://ror.org/02seeba69', 'en', 1, 'https://ror.org/02seeba69 Walther Cancer Foundation'),
(30789, 'https://ror.org/01dtadb22', 'en', 1, 'https://ror.org/01dtadb22 Christensen Fund'),
(30790, 'https://ror.org/05k0v5t92', 'de', 1, 'https://ror.org/05k0v5t92 ForschungsĀ­kuratorium Textil'),
(30791, 'https://ror.org/056pabz88', 'en', 1, 'https://ror.org/056pabz88 Nathan Cummings Foundation'),
(30792, 'https://ror.org/0592vaq06', 'en', 1, 'https://ror.org/0592vaq06 Channel 7 Children''s Research Foundation'),
(30793, 'https://ror.org/048nn3q69', 'fr', 1, 'https://ror.org/048nn3q69 France AgriMer Ɖtablissement National des Produits de l''Agriculture et de la Mer'),
(30794, 'https://ror.org/03x0rzg54', 'no_lang_code', 1, 'https://ror.org/03x0rzg54 Shenhua Group (China)'),
(30795, 'https://ror.org/011rzkg17', 'en', 1, 'https://ror.org/011rzkg17 Endocrine Society of Australia'),
(30796, 'https://ror.org/00mkdan60', 'no_lang_code', 1, 'https://ror.org/00mkdan60 Volvo (United States)'),
(30797, 'https://ror.org/05mwvz623', 'en', 1, 'https://ror.org/05mwvz623 Beyondblue'),
(30798, 'https://ror.org/0202czp82', 'no_lang_code', 1, 'https://ror.org/0202czp82 Connecticut Innovations (United States)'),
(30799, 'https://ror.org/03cgjk195', 'en', 1, 'https://ror.org/03cgjk195 Roche Organ Transplantation Research Foundation'),
(30800, 'https://ror.org/01pd7my79', 'en', 1, 'https://ror.org/01pd7my79 Krebsliga Schweiz Ligue Suisse Contre le Cancer Swiss Cancer League'),
(30801, 'https://ror.org/05j70cm37', 'en', 1, 'https://ror.org/05j70cm37 Jewish Community Foundation of Greater MetroWest NJ'),
(30802, 'https://ror.org/02d540t02', 'en', 1, 'https://ror.org/02d540t02 Poliomyelitis Research Foundation'),
(30803, 'https://ror.org/02b1qyv69', 'en', 1, 'https://ror.org/02b1qyv69 Devlet Planlama Teşkilatı State Planning Organization'),
(30804, 'https://ror.org/048gf2b30', 'de', 1, 'https://ror.org/048gf2b30 AllerGen'),
(30805, 'https://ror.org/029xgej46', 'en', 1, 'https://ror.org/029xgej46 Orthopaedic Research and Education Foundation'),
(30806, 'https://ror.org/05g0xkn45', 'en', 1, 'https://ror.org/05g0xkn45 Polycystic Kidney Disease Foundation'),
(30807, 'https://ror.org/032nbqb04', 'en', 1, 'https://ror.org/032nbqb04 Illinois Department of Commerce and Economic Opportunity'),
(30808, 'https://ror.org/05ewr7t48', 'en', 1, 'https://ror.org/05ewr7t48 Cure Alzheimer’s Fund'),
(30809, 'https://ror.org/04xy3z086', 'en', 1, 'https://ror.org/04xy3z086 Dermatology Foundation'),
(30810, 'https://ror.org/02ebg5q27', 'en', 1, 'https://ror.org/02ebg5q27 Glenn Foundation for Medical Research'),
(30811, 'https://ror.org/04g20q935', 'en', 1, 'https://ror.org/04g20q935 Scleroderma Foundation'),
(30812, 'https://ror.org/03kcmdr33', 'en', 1, 'https://ror.org/03kcmdr33 Susan G. Komen Wyoming'),
(30813, 'https://ror.org/02rvm6b03', 'en', 1, 'https://ror.org/02rvm6b03 Defence Science and Technology Agency'),
(30814, 'https://ror.org/021asz590', 'en', 1, 'https://ror.org/021asz590 National Center on Birth Defects and Developmental Disabilities'),
(30815, 'https://ror.org/01722g748', 'en', 1, 'https://ror.org/01722g748 Aircast Foundation'),
(30816, 'https://ror.org/01g6g9h28', 'en', 1, 'https://ror.org/01g6g9h28 Li Ka Shing Foundation'),
(30817, 'https://ror.org/00trnds81', 'en', 1, 'https://ror.org/00trnds81 Saskatchewan Health Research Foundation'),
(30818, 'https://ror.org/02jecj653', 'it', 1, 'https://ror.org/02jecj653 Fondazione Cassa di Risparmio di Padova e Rovigo'),
(30819, 'https://ror.org/00saj4962', 'en', 1, 'https://ror.org/00saj4962 Medical Research Scotland'),
(30820, 'https://ror.org/03gzf0d03', 'en', 1, 'https://ror.org/03gzf0d03 Alabama Commission on Higher Education'),
(30821, 'https://ror.org/04fskt963', 'en', 1, 'https://ror.org/04fskt963 Bupa UK Foundation'),
(30822, 'https://ror.org/057t8sx48', 'en', 1, 'https://ror.org/057t8sx48 Pacific Northwest Foundation'),
(30823, 'https://ror.org/01ppg1t70', 'en', 1, 'https://ror.org/01ppg1t70 British Association for Psychopharmacology'),
(30824, 'https://ror.org/021aawt29', 'en', 1, 'https://ror.org/021aawt29 Great Britain Sasakawa Foundation'),
(30825, 'https://ror.org/04q644746', 'en', 1, 'https://ror.org/04q644746 Giovanni Armenise-Harvard Foundation'),
(30826, 'https://ror.org/040v79746', 'en', 1, 'https://ror.org/040v79746 Research Capacity Building Collaboration Wales'),
(30827, 'https://ror.org/04pke7819', 'en', 1, 'https://ror.org/04pke7819 National Centre for Vocational Education Research'),
(30828, 'https://ror.org/054dq0621', 'no_lang_code', 1, 'https://ror.org/054dq0621 China National Offshore Oil Corporation (China) äø­ęµ·ēŸ³ę²¹ē ”ē©¶äø­åæƒ'),
(30829, 'https://ror.org/02yyzvz79', 'en', 1, 'https://ror.org/02yyzvz79 Texas Emerging Technology Fund'),
(30830, 'https://ror.org/04dyhjr58', 'no_lang_code', 1, 'https://ror.org/04dyhjr58 Medtronic (Ireland)'),
(30831, 'https://ror.org/020w7x032', 'en', 1, 'https://ror.org/020w7x032 Sir Halley Stewart Trust'),
(30832, 'https://ror.org/03jsnw290', 'en', 1, 'https://ror.org/03jsnw290 Australian College of Nursing'),
(30833, 'https://ror.org/03c6c9520', 'en', 1, 'https://ror.org/03c6c9520 Israel Academy of Sciences and Humanities האקדמיה ×”×œ××•×ž×™×Ŗ ×”×™×©×Ø××œ×™×Ŗ למדעים'),
(30834, 'https://ror.org/044g35w58', 'es', 1, 'https://ror.org/044g35w58 Ibercaja Banco'),
(30835, 'https://ror.org/00xtpbs68', 'en', 1, 'https://ror.org/00xtpbs68 Claude Leon Foundation'),
(30836, 'https://ror.org/023wsvq95', 'en', 1, 'https://ror.org/023wsvq95 Department of Foreign Affairs and Trade'),
(30837, 'https://ror.org/04bxzgg25', 'fr', 1, 'https://ror.org/04bxzgg25 Cemsuisse'),
(30838, 'https://ror.org/04600bt44', 'en', 1, 'https://ror.org/04600bt44 Ministry for Culture and Heritage'),
(30839, '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'),
(30840, 'https://ror.org/05sfep667', 'en', 1, 'https://ror.org/05sfep667 Ministerio de Agricultura y Desarrollo Rural Ministry of Agriculture and Rural Development'),
(30841, 'https://ror.org/03rybxa06', 'en', 1, 'https://ror.org/03rybxa06 Ministry of the Environment ē’°å¢ƒēœ'),
(30842, 'https://ror.org/02g9c9v38', 'en', 1, 'https://ror.org/02g9c9v38 Aetna Foundation'),
(30843, 'https://ror.org/0584kkb18', 'en', 1, 'https://ror.org/0584kkb18 Gerda Henkel Foundation Gerda Henkel Stiftung'),
(30844, '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'),
(30845, 'https://ror.org/01thcx676', 'de', 1, 'https://ror.org/01thcx676 Stiftung Rheinland-Pfalz für Innovation'),
(30846, 'https://ror.org/00vt3ry76', 'en', 1, 'https://ror.org/00vt3ry76 Nutricia Research Foundation'),
(30847, 'https://ror.org/01wtjyf13', 'en', 1, 'https://ror.org/01wtjyf13 Office of Dietary Supplements'),
(30848, 'https://ror.org/009axkg17', 'en', 1, 'https://ror.org/009axkg17 Indian Council of Social Science Research'),
(30849, 'https://ror.org/01n28jn45', 'en', 1, 'https://ror.org/01n28jn45 Swedish National Bank'),
(30850, 'https://ror.org/04t269f15', 'en', 1, 'https://ror.org/04t269f15 National Endowment for the Arts'),
(30851, 'https://ror.org/01xmtfq82', 'en', 1, 'https://ror.org/01xmtfq82 Northwest Health Foundation'),
(30852, 'https://ror.org/020ddnn22', 'en', 1, 'https://ror.org/020ddnn22 Bundesamt für Energie Swiss Federal Office of Energy'),
(30853, 'https://ror.org/03w2v9593', 'en', 1, 'https://ror.org/03w2v9593 Israeli Centers for Research Excellence'),
(30854, 'https://ror.org/03p9d3z47', 'en', 1, 'https://ror.org/03p9d3z47 American Breast Cancer Foundation'),
(30855, 'https://ror.org/001ader08', 'en', 1, 'https://ror.org/001ader08 Silicon Valley Community Foundation'),
(30856, 'https://ror.org/03k1e3764', 'en', 1, 'https://ror.org/03k1e3764 American Physical Therapy Association'),
(30857, 'https://ror.org/03qh32912', 'en', 1, 'https://ror.org/03qh32912 Food and Health Bureau é£Ÿē‰©åŠč”žē”Ÿå±€'),
(30858, 'https://ror.org/01g3ss027', 'en', 1, 'https://ror.org/01g3ss027 Kerr Foundation'),
(30859, 'https://ror.org/029acmk59', 'en', 1, 'https://ror.org/029acmk59 Baptist Community Ministries'),
(30860, 'https://ror.org/02vz62k77', 'en', 1, 'https://ror.org/02vz62k77 Republic of Burundi RƩpublique du Burundi'),
(30861, 'https://ror.org/02d58c802', 'en', 1, 'https://ror.org/02d58c802 Kidney & Urology Foundation of America'),
(30862, 'https://ror.org/01wt3vs82', 'en', 1, 'https://ror.org/01wt3vs82 Dana Foundation'),
(30863, 'https://ror.org/047wvvg23', 'en', 1, 'https://ror.org/047wvvg23 Center for Translational Molecular Medicine'),
(30864, 'https://ror.org/00rbj3548', 'en', 1, 'https://ror.org/00rbj3548 Diabetes Research Institute Foundation'),
(30865, 'https://ror.org/05357zt36', 'en', 1, 'https://ror.org/05357zt36 Ministry of Justice'),
(30866, 'https://ror.org/05bmt7297', 'no_lang_code', 1, 'https://ror.org/05bmt7297 Consolidated Edison (United States)'),
(30867, 'https://ror.org/02dtjfs50', 'en', 1, 'https://ror.org/02dtjfs50 Merck Institute for Science Education'),
(30868, 'https://ror.org/05ygyjd33', 'en', 1, 'https://ror.org/05ygyjd33 Virginia Environmental Endowment'),
(30869, 'https://ror.org/00p7ds424', 'en', 1, 'https://ror.org/00p7ds424 Discovery Eye Foundation'),
(30870, 'https://ror.org/0592h9m82', 'en', 1, 'https://ror.org/0592h9m82 Department of Emergency Services and Public Protection'),
(30871, 'https://ror.org/01mcwn339', 'en', 1, 'https://ror.org/01mcwn339 Hope for Depression Research Foundation'),
(30872, 'https://ror.org/04zq3xb25', 'en', 1, 'https://ror.org/04zq3xb25 Illinois Environmental Protection Agency'),
(30873, 'https://ror.org/03krqra54', 'en', 1, 'https://ror.org/03krqra54 Wisconsin Department of Workforce Development'),
(30874, 'https://ror.org/02j0q7e02', 'en', 1, 'https://ror.org/02j0q7e02 Departamento de Transporte de Pensilvania Pennsylvania Department of Transportation'),
(30875, 'https://ror.org/05qmfyw56', 'en', 1, 'https://ror.org/05qmfyw56 International Myeloma Foundation'),
(30876, 'https://ror.org/0125jx070', 'en', 1, 'https://ror.org/0125jx070 Henry Luce Foundation'),
(30877, 'https://ror.org/01kae7563', 'en', 1, 'https://ror.org/01kae7563 DƩpartement des transports du michigan Michigan Department of Transportation'),
(30878, 'https://ror.org/05wvxzm41', 'en', 1, 'https://ror.org/05wvxzm41 Society for Imaging Informatics in Medicine'),
(30879, 'https://ror.org/01fz2rj87', 'nl', 1, 'https://ror.org/01fz2rj87 Nederlandse Brandwonden Stichting'),
(30880, 'https://ror.org/01cn04b23', 'en', 1, 'https://ror.org/01cn04b23 Minnesota Pollution Control Agency'),
(30881, 'https://ror.org/008vgd385', 'en', 1, 'https://ror.org/008vgd385 International Association for Dental Research'),
(30882, 'https://ror.org/014rsed66', 'en', 1, 'https://ror.org/014rsed66 Belgian American Educational Foundation'),
(30883, 'https://ror.org/0173k6h24', 'en', 1, 'https://ror.org/0173k6h24 Bugher Foundation'),
(30884, 'https://ror.org/02r0g0093', 'no_lang_code', 1, 'https://ror.org/02r0g0093 Southern Company (United States)'),
(30885, 'https://ror.org/01hwjc346', 'en', 1, 'https://ror.org/01hwjc346 Concern Foundation'),
(30886, 'https://ror.org/04etphg07', 'en', 1, 'https://ror.org/04etphg07 Conservation Leadership Programme'),
(30887, 'https://ror.org/04vrv9h08', 'en', 1, 'https://ror.org/04vrv9h08 Diabetes Action Research and Education Foundation'),
(30888, 'https://ror.org/029a84r94', 'no_lang_code', 1, 'https://ror.org/029a84r94 Psi Chi'),
(30889, 'https://ror.org/04hadnb81', 'no_lang_code', 1, 'https://ror.org/04hadnb81 ConocoPhillips (United States)'),
(30890, 'https://ror.org/045k5vt03', 'en', 1, 'https://ror.org/045k5vt03 International Society for Optics and Photonics'),
(30891, 'https://ror.org/00821cz13', 'en', 1, 'https://ror.org/00821cz13 Batten Disease Support and Research Association'),
(30892, 'https://ror.org/02ssn9g91', 'en', 1, 'https://ror.org/02ssn9g91 U.S. Poultry and Egg Association'),
(30893, 'https://ror.org/041t5x242', 'en', 1, 'https://ror.org/041t5x242 Tenovus Cancer Care'),
(30894, 'https://ror.org/006dn3r34', 'en', 1, 'https://ror.org/006dn3r34 American Foundation for Pharmaceutical Education'),
(30895, 'https://ror.org/02bzj4420', 'en', 1, 'https://ror.org/02bzj4420 Health Foundation'),
(30896, 'https://ror.org/013grne12', 'en', 1, 'https://ror.org/013grne12 Intensive Care Society'),
(30897, 'https://ror.org/014kx8q82', 'en', 1, 'https://ror.org/014kx8q82 Blue Cross and Blue Shield of North Carolina Foundation'),
(30898, 'https://ror.org/045jyg234', 'de', 1, 'https://ror.org/045jyg234 Verein für Krebsforschung'),
(30899, 'https://ror.org/01b7fm202', 'en', 1, 'https://ror.org/01b7fm202 Bowel Disease Research Foundation'),
(30900, 'https://ror.org/02rj0as03', 'en', 1, 'https://ror.org/02rj0as03 Josiah Macy Jr Foundation'),
(30901, 'https://ror.org/02vf3h353', 'en', 1, 'https://ror.org/02vf3h353 Le Conseil mƩdical du Canada Medical Council of Canada'),
(30902, 'https://ror.org/04gmhya03', 'en', 1, 'https://ror.org/04gmhya03 Pelican Cancer Foundation'),
(30903, 'https://ror.org/03sdr0263', 'en', 1, 'https://ror.org/03sdr0263 Rheumatology Research Foundation'),
(30904, 'https://ror.org/00t6svq33', 'en', 1, 'https://ror.org/00t6svq33 Canadian Anesthesiologists'' Society'),
(30905, 'https://ror.org/011fjkk76', 'en', 1, 'https://ror.org/011fjkk76 Indian Association for Cancer Research'),
(30906, 'https://ror.org/0459phn12', 'en', 1, 'https://ror.org/0459phn12 Australian Cancer Research Foundation'),
(30907, 'https://ror.org/00kz6zq32', 'no_lang_code', 1, 'https://ror.org/00kz6zq32 Higher Education Press (China)'),
(30908, 'https://ror.org/0131mn086', 'en', 1, 'https://ror.org/0131mn086 Manitoba Arts Council'),
(30909, 'https://ror.org/05tqbd879', 'en', 1, 'https://ror.org/05tqbd879 Energy Market Authority'),
(30910, 'https://ror.org/0537h0h72', 'en', 1, 'https://ror.org/0537h0h72 Housing and Development Board 组屋'),
(30911, 'https://ror.org/01yeyxy55', 'no_lang_code', 1, 'https://ror.org/01yeyxy55 Intercontinental Exchange (United States)'),
(30912, 'https://ror.org/05sn2fr43', 'en', 1, 'https://ror.org/05sn2fr43 Marine Mammal Commission'),
(30913, 'https://ror.org/03ntprd85', 'en', 1, 'https://ror.org/03ntprd85 Sir Jules Thorn Charitable Trust'),
(30914, 'https://ror.org/03xeae684', 'en', 1, 'https://ror.org/03xeae684 Cystic Fibrosis Trust'),
(30915, 'https://ror.org/024ctqw02', 'en', 1, 'https://ror.org/024ctqw02 Korea Military Academy ėŒ€ķ•œėÆ¼źµ­ ģœ”źµ°ģ‚¬ź“€ķ•™źµ'),
(30916, 'https://ror.org/01bk8ee93', 'en', 1, 'https://ror.org/01bk8ee93 Cancer Society of New Zealand'),
(30917, 'https://ror.org/02xwkbq98', 'en', 1, 'https://ror.org/02xwkbq98 National Heart Foundation of New Zealand'),
(30918, 'https://ror.org/04n2jeh03', 'en', 1, 'https://ror.org/04n2jeh03 Oticon Foundation in New Zealand'),
(30919, 'https://ror.org/016p59286', 'en', 1, 'https://ror.org/016p59286 Jinan City Science and Technology Bureau'),
(30920, 'https://ror.org/05vd00053', 'en', 1, 'https://ror.org/05vd00053 Terry Fox Foundation'),
(30921, 'https://ror.org/019s18q02', 'en', 1, 'https://ror.org/019s18q02 Inspire Foundation'),
(30922, 'https://ror.org/05q5yzt24', 'en', 1, 'https://ror.org/05q5yzt24 Wellington Medical Research Foundation'),
(30923, 'https://ror.org/052cqpt62', 'en', 1, 'https://ror.org/052cqpt62 Australian Society for Parasitology'),
(30924, 'https://ror.org/03qk82695', 'no_lang_code', 1, 'https://ror.org/03qk82695 Newport Coachworks (United States)'),
(30925, 'https://ror.org/03ev2fp74', 'no_lang_code', 1, 'https://ror.org/03ev2fp74 Dairy Innovation Australia (Australia)'),
(30926, 'https://ror.org/02gq0fg61', 'en', 1, 'https://ror.org/02gq0fg61 Motor Neurone Disease Association'),
(30927, 'https://ror.org/03z1vf588', 'en', 1, 'https://ror.org/03z1vf588 South-South Exchange Programme for Research on the History of Development'),
(30928, 'https://ror.org/02xvp8z16', 'en', 1, 'https://ror.org/02xvp8z16 Ministry of Higher Education Ministère de l''Enseignement Supérieur'),
(30929, 'https://ror.org/03356n642', 'en', 1, 'https://ror.org/03356n642 Lister Institute of Preventive Medicine'),
(30930, 'https://ror.org/05r2ts661', 'en', 1, 'https://ror.org/05r2ts661 Fulbright Foundation'),
(30931, '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'),
(30932, 'https://ror.org/00ejq3005', 'en', 1, 'https://ror.org/00ejq3005 Foyle Foundation'),
(30933, 'https://ror.org/01es9dw61', 'en', 1, 'https://ror.org/01es9dw61 Ministry of Micro, Small and Medium Enterprises ą¤øą„‚ą¤•ą„ą¤·ą„ą¤® , ą¤²ą¤˜ą„ और ą¤®ą¤§ą„ą¤Æą¤® ą¤‰ą¤¦ą„ą¤Æą¤® ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(30934, 'https://ror.org/02dj61c35', 'en', 1, 'https://ror.org/02dj61c35 British Society for Rheumatology'),
(30935, 'https://ror.org/0248qb926', 'es', 1, 'https://ror.org/0248qb926 Fundación Mapfre'),
(30936, 'https://ror.org/03jfjvh87', 'en', 1, 'https://ror.org/03jfjvh87 Health Promotion Agency'),
(30937, 'https://ror.org/037tx1q23', 'en', 1, 'https://ror.org/037tx1q23 Pathological Society'),
(30938, 'https://ror.org/00y81cg83', 'en', 1, 'https://ror.org/00y81cg83 Home Office Y Swyddfa Gartref'),
(30939, 'https://ror.org/018vkvj59', 'fr', 1, 'https://ror.org/018vkvj59 Conseil RƩgional de Champagne-Ardenne'),
(30940, 'https://ror.org/05az3m671', 'de', 1, 'https://ror.org/05az3m671 Evangelisches Studienwerk Villigst Protestant Academic Foundation'),
(30941, 'https://ror.org/0503xdx77', 'pt', 1, 'https://ror.org/0503xdx77 Fundação de Amparo à Pesquisa e Inovação do Estado de Santa Catarina'),
(30942, 'https://ror.org/0585vsm16', 'en', 1, 'https://ror.org/0585vsm16 Earthwatch Institute'),
(30943, 'https://ror.org/00m3wrz48', 'en', 1, 'https://ror.org/00m3wrz48 Institut des Ɖtats-unis pour la paix United States Institute of Peace'),
(30944, 'https://ror.org/04gvkax77', 'en', 1, 'https://ror.org/04gvkax77 Hangzhou Science and Technology Commission'),
(30945, 'https://ror.org/02a3z0p48', 'en', 1, 'https://ror.org/02a3z0p48 Federal Council'),
(30946, 'https://ror.org/05bakh610', 'en', 1, 'https://ror.org/05bakh610 Healthway'),
(30947, 'https://ror.org/04mh2zc60', 'en', 1, 'https://ror.org/04mh2zc60 John E. Fetzer Memorial Trust'),
(30948, 'https://ror.org/02ayg6516', 'en', 1, 'https://ror.org/02ayg6516 Guangxi University of Finance and Economics å¹æč„æč“¢ē»å­¦é™¢'),
(30949, 'https://ror.org/058qtek75', 'en', 1, 'https://ror.org/058qtek75 Flinn Foundation'),
(30950, 'https://ror.org/028e6y556', 'en', 1, 'https://ror.org/028e6y556 Tumour Institute of Tuscany'),
(30951, 'https://ror.org/03qadc961', 'da', 1, 'https://ror.org/03qadc961 Nordea-fonden'),
(30952, 'https://ror.org/04ssevy49', 'en', 1, 'https://ror.org/04ssevy49 Addenbrooke''s Charitable Trust'),
(30953, 'https://ror.org/01kjwqy11', 'en', 1, 'https://ror.org/01kjwqy11 Ministry of Human Resources and Social Security äø­åŽäŗŗę°‘å…±å’Œå›½äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœéƒØ'),
(30954, 'https://ror.org/02hq6wv21', 'de', 1, 'https://ror.org/02hq6wv21 Deutsche Herzstiftung'),
(30955, 'https://ror.org/02fkk6k65', 'en', 1, 'https://ror.org/02fkk6k65 Ministry of Culture, Sports and Tourism ėŒ€ķ•œėÆ¼źµ­ ė¬øķ™”ģ²“ģœ”ź“€ź“‘ė¶€'),
(30956, 'https://ror.org/026zht694', 'pt', 1, 'https://ror.org/026zht694 Fundação de Amparo à Pesquisa do Estado do Piauí'),
(30957, 'https://ror.org/01ka9rn66', 'en', 1, 'https://ror.org/01ka9rn66 Ministry of Gender Equality and Family ėŒ€ķ•œėÆ¼źµ­ 여성가씱부'),
(30958, 'https://ror.org/02xa5f497', 'en', 1, 'https://ror.org/02xa5f497 Healthcare Georgia Foundation'),
(30959, 'https://ror.org/04bk4t231', 'en', 1, 'https://ror.org/04bk4t231 National Tax Service'),
(30960, 'https://ror.org/04kg99k11', 'en', 1, 'https://ror.org/04kg99k11 John Innes Foundation'),
(30961, 'https://ror.org/04j0y0e37', 'en', 1, 'https://ror.org/04j0y0e37 Brown Foundation'),
(30962, 'https://ror.org/01js9sf40', 'en', 1, 'https://ror.org/01js9sf40 Maine Health Access Foundation'),
(30963, 'https://ror.org/03qevzg44', 'en', 1, 'https://ror.org/03qevzg44 Richard King Mellon Foundation'),
(30964, 'https://ror.org/01qwawt17', 'en', 1, 'https://ror.org/01qwawt17 William Penn Foundation'),
(30965, 'https://ror.org/04f097438', 'en', 1, 'https://ror.org/04f097438 National Evidenc- based healthcare Collaborating Agency'),
(30966, 'https://ror.org/04gk5xv95', 'en', 1, 'https://ror.org/04gk5xv95 National Organization for Rare Disorders'),
(30967, 'https://ror.org/03s96de24', 'en', 1, 'https://ror.org/03s96de24 Hearst Foundations'),
(30968, 'https://ror.org/01shbv660', 'en', 1, 'https://ror.org/01shbv660 Agricultural Research Development Agency ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąøžąø±ąø’ąø™ąø²ąøąø²ąø£ąø§ąø“ąøˆąø±ąø¢ąøąø²ąø£ą¹€ąøąø©ąø•ąø£'),
(30969, 'https://ror.org/02z681y43', 'en', 1, 'https://ror.org/02z681y43 National Rifle Association of America'),
(30970, 'https://ror.org/025qv0671', 'en', 1, 'https://ror.org/025qv0671 North West Cancer Research'),
(30971, 'https://ror.org/05apbp152', 'sv', 1, 'https://ror.org/05apbp152 Signhild Engkvists Stiftelse'),
(30972, 'https://ror.org/05snapr15', 'en', 1, 'https://ror.org/05snapr15 Mary Kay Foundation'),
(30973, 'https://ror.org/05bq4ms81', 'en', 1, 'https://ror.org/05bq4ms81 Britton Fund'),
(30974, 'https://ror.org/004p56m59', 'en', 1, 'https://ror.org/004p56m59 Center for Health Care Strategies'),
(30975, 'https://ror.org/02c9tf451', 'en', 1, 'https://ror.org/02c9tf451 Charles H. Revson Foundation'),
(30976, 'https://ror.org/02se70931', 'en', 1, 'https://ror.org/02se70931 California HealthCare Foundation'),
(30977, 'https://ror.org/02cwr7s69', 'nl', 1, 'https://ror.org/02cwr7s69 Stichting Astma Bestrijding'),
(30978, 'https://ror.org/02p745c92', 'en', 1, 'https://ror.org/02p745c92 Swedish Farmers’ Foundation for Agricultural Research'),
(30979, 'https://ror.org/018w7fz66', 'en', 1, 'https://ror.org/018w7fz66 Royal Free Charity'),
(30980, 'https://ror.org/02pqmy074', 'en', 1, 'https://ror.org/02pqmy074 Winthrop Rockefeller Foundation'),
(30981, 'https://ror.org/008bs5r20', 'en', 1, 'https://ror.org/008bs5r20 Fisher Center for Alzheimer''s Research Foundation'),
(30982, 'https://ror.org/03s9xxw55', 'en', 1, 'https://ror.org/03s9xxw55 National Ataxia Foundation'),
(30983, 'https://ror.org/02kstzn75', 'en', 1, 'https://ror.org/02kstzn75 Institute for Medical Biology Instytut Biologii Medycznej Polskiej Akademii Nauk'),
(30984, 'https://ror.org/03fcvqn57', 'en', 1, 'https://ror.org/03fcvqn57 Graham Foundation'),
(30985, 'https://ror.org/02qva2y28', 'en', 1, 'https://ror.org/02qva2y28 Samuel Waxman Cancer Research Foundation'),
(30986, 'https://ror.org/02bffdv67', 'en', 1, 'https://ror.org/02bffdv67 Ministry of Education of the Republic of Belarus'),
(30987, 'https://ror.org/02sba6v14', 'no_lang_code', 1, 'https://ror.org/02sba6v14 West Pharmaceutical Services (United States)'),
(30988, 'https://ror.org/02a3w7r50', 'en', 1, 'https://ror.org/02a3w7r50 Hereditary Disease Foundation'),
(30989, 'https://ror.org/04t838f48', 'en', 1, 'https://ror.org/04t838f48 Central Norway Regional Health Authority'),
(30990, 'https://ror.org/000b2tt25', 'en', 1, 'https://ror.org/000b2tt25 Wilburforce Foundation'),
(30991, 'https://ror.org/00hwxbz16', 'en', 1, 'https://ror.org/00hwxbz16 Wisconsin Alumni Research Foundation'),
(30992, 'https://ror.org/03g38ta48', 'en', 1, 'https://ror.org/03g38ta48 Council for Learning Disabilities'),
(30993, 'https://ror.org/02dfyb978', 'en', 1, 'https://ror.org/02dfyb978 American Liver Foundation'),
(30994, 'https://ror.org/03wpppw84', 'no_lang_code', 1, 'https://ror.org/03wpppw84 Bridgestone (United States)'),
(30995, 'https://ror.org/04wehyc39', 'en', 1, 'https://ror.org/04wehyc39 International Council of Shopping Centers'),
(30996, 'https://ror.org/02fsqj683', 'en', 1, 'https://ror.org/02fsqj683 Accelerate Brain Cancer Cure'),
(30997, 'https://ror.org/05rbbc072', 'en', 1, 'https://ror.org/05rbbc072 Kosciuszko Foundation'),
(30998, 'https://ror.org/01z81gq54', 'en', 1, 'https://ror.org/01z81gq54 American Association of Endodontists'),
(30999, 'https://ror.org/00kwhq089', 'en', 1, 'https://ror.org/00kwhq089 American Institute of Indian Studies'),
(31000, 'https://ror.org/02v5pea97', 'en', 1, 'https://ror.org/02v5pea97 American Porphyria Foundation'),
(31001, 'https://ror.org/00z74sn08', 'en', 1, 'https://ror.org/00z74sn08 Departamento de Transporte de Nueva Jersey New Jersey Department of Transportation'),
(31002, 'https://ror.org/01g7c0g45', 'en', 1, 'https://ror.org/01g7c0g45 Parapsychology Foundation'),
(31003, 'https://ror.org/00q2zjc87', 'en', 1, 'https://ror.org/00q2zjc87 Blue Cross Blue Shield of Michigan Foundation'),
(31004, 'https://ror.org/056hf9h18', 'en', 1, 'https://ror.org/056hf9h18 New York State Department of Agriculture and Markets'),
(31005, 'https://ror.org/03k8x7365', 'en', 1, 'https://ror.org/03k8x7365 American Skin Association'),
(31006, 'https://ror.org/037qe5327', 'en', 1, 'https://ror.org/037qe5327 Carroll Shelby Foundation'),
(31007, 'https://ror.org/05xd9aq52', 'en', 1, 'https://ror.org/05xd9aq52 Ohio Environmental Protection Agency'),
(31008, 'https://ror.org/02na1q715', 'en', 1, 'https://ror.org/02na1q715 Friendly Sons of St. Patrick'),
(31009, 'https://ror.org/015wjhp16', 'en', 1, 'https://ror.org/015wjhp16 New York State Department of Labor'),
(31010, 'https://ror.org/0058p7h33', 'no_lang_code', 1, 'https://ror.org/0058p7h33 MassMutual Financial Group (United States)'),
(31011, 'https://ror.org/05m4rmw09', 'en', 1, 'https://ror.org/05m4rmw09 Fondo Monetario Internacional Fonds monƩtaire international International Monetary Fund'),
(31012, 'https://ror.org/04b4rxp95', 'en', 1, 'https://ror.org/04b4rxp95 Nuts, Bolts and Thingamajigs'),
(31013, 'https://ror.org/03pbzwf28', 'no_lang_code', 1, 'https://ror.org/03pbzwf28 Tellabs (United States)'),
(31014, 'https://ror.org/04f9t1x17', 'en', 1, 'https://ror.org/04f9t1x17 Novartis Foundation'),
(31015, 'https://ror.org/0434af134', 'en', 1, 'https://ror.org/0434af134 Michigan Public Service Commission'),
(31016, 'https://ror.org/01er75989', 'en', 1, 'https://ror.org/01er75989 Fraternal Order of Eagles'),
(31017, 'https://ror.org/05qcea723', 'no_lang_code', 1, 'https://ror.org/05qcea723 Nike (United States)'),
(31018, 'https://ror.org/012w91b90', 'en', 1, 'https://ror.org/012w91b90 Foundation for the Advancement of Mesoamerican Studies'),
(31019, 'https://ror.org/03dwefb78', 'en', 1, 'https://ror.org/03dwefb78 Minnesota Department of Employment and Economic Development'),
(31020, 'https://ror.org/031p7wh32', 'en', 1, 'https://ror.org/031p7wh32 European Association for Cancer Research'),
(31021, 'https://ror.org/040pmcr47', 'en', 1, 'https://ror.org/040pmcr47 Maryland Higher Education Commission'),
(31022, 'https://ror.org/05fckk939', 'en', 1, 'https://ror.org/05fckk939 Institute of Turkish Studies'),
(31023, 'https://ror.org/05xnsh975', 'en', 1, 'https://ror.org/05xnsh975 Maddie''s Fund'),
(31024, 'https://ror.org/0285fde08', 'en', 1, 'https://ror.org/0285fde08 Jain Foundation'),
(31025, 'https://ror.org/02agp0d04', 'en', 1, 'https://ror.org/02agp0d04 Link Foundation'),
(31026, 'https://ror.org/02kesxz96', 'en', 1, 'https://ror.org/02kesxz96 Longer Life Foundation'),
(31027, 'https://ror.org/048tdcg16', 'en', 1, 'https://ror.org/048tdcg16 Ohio Lake Erie Commission'),
(31028, 'https://ror.org/048b0ns33', 'en', 1, 'https://ror.org/048b0ns33 Aga Khan Foundation'),
(31029, 'https://ror.org/02qh9e431', 'no_lang_code', 1, 'https://ror.org/02qh9e431 JF Kapnek Trust'),
(31030, 'https://ror.org/05jnjmr07', 'en', 1, 'https://ror.org/05jnjmr07 Virginia Department of Education'),
(31031, 'https://ror.org/005gjjf63', 'en', 1, 'https://ror.org/005gjjf63 National Psoriasis Foundation'),
(31032, 'https://ror.org/05f7khr13', 'en', 1, 'https://ror.org/05f7khr13 Women''s Health Initiative'),
(31033, 'https://ror.org/03sjs8573', 'en', 1, 'https://ror.org/03sjs8573 Canon Foundation in Europe'),
(31034, 'https://ror.org/004r22g79', 'en', 1, 'https://ror.org/004r22g79 Orangutan Conservancy'),
(31035, 'https://ror.org/02r8tn769', 'en', 1, 'https://ror.org/02r8tn769 Asia-Pacific Network for Global Change Research'),
(31036, 'https://ror.org/05dg7rt55', 'no_lang_code', 1, 'https://ror.org/05dg7rt55 Mazda (United States)'),
(31037, 'https://ror.org/015vnk029', 'no_lang_code', 1, 'https://ror.org/015vnk029 Hillrom (United States)'),
(31038, 'https://ror.org/05te4e461', 'en', 1, 'https://ror.org/05te4e461 American College of Veterinary Internal Medicine Foundation'),
(31039, 'https://ror.org/01mrzcs29', 'no_lang_code', 1, 'https://ror.org/01mrzcs29 UniCredit (United States)'),
(31040, 'https://ror.org/00rkkzx80', 'no_lang_code', 1, 'https://ror.org/00rkkzx80 Houghton Mifflin Harcourt (United States)'),
(31041, 'https://ror.org/04v9v0986', 'en', 1, 'https://ror.org/04v9v0986 CFA Institute'),
(31042, 'https://ror.org/05xj3t215', 'en', 1, 'https://ror.org/05xj3t215 American Neurotology Society'),
(31043, 'https://ror.org/00sne9z79', 'en', 1, 'https://ror.org/00sne9z79 ResMed Foundation'),
(31044, 'https://ror.org/04gffem11', 'en', 1, 'https://ror.org/04gffem11 American Orthopaedic Association'),
(31045, 'https://ror.org/03f455d91', 'en', 1, 'https://ror.org/03f455d91 School Nutrition Association'),
(31046, 'https://ror.org/0379w2016', 'en', 1, 'https://ror.org/0379w2016 Healthwise'),
(31047, 'https://ror.org/00zf1g010', 'en', 1, 'https://ror.org/00zf1g010 Waitt Foundation'),
(31048, 'https://ror.org/01gejm974', 'en', 1, 'https://ror.org/01gejm974 American Academy of Audiology Foundation'),
(31049, 'https://ror.org/00rt0xj75', 'fr', 1, 'https://ror.org/00rt0xj75 Agence ThƩmatique de Recherche en Science de la SantƩ'),
(31050, 'https://ror.org/03hp51383', 'en', 1, 'https://ror.org/03hp51383 Center for Ecoliteracy'),
(31051, 'https://ror.org/059gy7s73', 'en', 1, 'https://ror.org/059gy7s73 American Society of Echocardiography'),
(31052, 'https://ror.org/01sv5w039', 'en', 1, 'https://ror.org/01sv5w039 Tinker Foundation'),
(31053, 'https://ror.org/05q1b6223', 'en', 1, 'https://ror.org/05q1b6223 Wallace Foundation'),
(31054, 'https://ror.org/03eecgp81', 'en', 1, 'https://ror.org/03eecgp81 Office of Under Secretary of Energy for Science'),
(31055, 'https://ror.org/04r5s4b52', 'en', 1, 'https://ror.org/04r5s4b52 Center for Scientific Review'),
(31056, 'https://ror.org/01pkpj777', 'en', 1, 'https://ror.org/01pkpj777 Sontag Foundation'),
(31057, 'https://ror.org/04jp6nz39', 'en', 1, 'https://ror.org/04jp6nz39 Bat Conservation International'),
(31058, 'https://ror.org/03d9g2g58', 'en', 1, 'https://ror.org/03d9g2g58 American Association of Orthodontists'),
(31059, 'https://ror.org/00cxc2y95', 'en', 1, 'https://ror.org/00cxc2y95 Klingenstein Third Generation Foundation'),
(31060, 'https://ror.org/04ddd7237', 'en', 1, 'https://ror.org/04ddd7237 Congress of Neurological Surgeons'),
(31061, 'https://ror.org/04rk0sp93', 'en', 1, 'https://ror.org/04rk0sp93 Institute of Management Accountants'),
(31062, 'https://ror.org/02zdz9d52', 'en', 1, 'https://ror.org/02zdz9d52 Association for Behavior Analysis International'),
(31063, 'https://ror.org/009xj7f03', 'en', 1, 'https://ror.org/009xj7f03 Oneida Indian Nation'),
(31064, 'https://ror.org/00y65x556', 'en', 1, 'https://ror.org/00y65x556 American Gastroenterological Association'),
(31065, 'https://ror.org/03s9h8898', 'en', 1, 'https://ror.org/03s9h8898 Garden Club of America'),
(31066, 'https://ror.org/046zezr58', 'en', 1, 'https://ror.org/046zezr58 Office of Disease Prevention');
INSERT INTO `rors` VALUES
(31067, 'https://ror.org/02yz1n812', 'en', 1, 'https://ror.org/02yz1n812 AIDS Clinical Trials Group'),
(31068, 'https://ror.org/00pngyt39', 'en', 1, 'https://ror.org/00pngyt39 Hemostasis and Thrombosis Research Society'),
(31069, 'https://ror.org/04x0tcn90', 'en', 1, 'https://ror.org/04x0tcn90 Hudson River Foundation'),
(31070, 'https://ror.org/023xrdj21', 'en', 1, 'https://ror.org/023xrdj21 International Mental Health Research Organization'),
(31071, 'https://ror.org/014ys2k69', 'en', 1, 'https://ror.org/014ys2k69 American Society for Clinical Laboratory Science'),
(31072, 'https://ror.org/01kjwc090', 'en', 1, 'https://ror.org/01kjwc090 Musicians Emergency Fund'),
(31073, 'https://ror.org/040d52e71', 'en', 1, 'https://ror.org/040d52e71 IEEE Foundation'),
(31074, 'https://ror.org/03va2bz55', 'en', 1, 'https://ror.org/03va2bz55 International Society for Heart and Lung Transplantation'),
(31075, 'https://ror.org/00mn6be63', 'en', 1, 'https://ror.org/00mn6be63 John S. and James L. Knight Foundation'),
(31076, 'https://ror.org/0370d4798', 'en', 1, 'https://ror.org/0370d4798 Legacy Heritage Fund'),
(31077, 'https://ror.org/05ybkj905', 'en', 1, 'https://ror.org/05ybkj905 Cetacean Society International'),
(31078, 'https://ror.org/01xvbqz61', 'en', 1, 'https://ror.org/01xvbqz61 National Council on Disability'),
(31079, 'https://ror.org/00x9kww32', 'en', 1, 'https://ror.org/00x9kww32 Jackson College'),
(31080, 'https://ror.org/04hg0kz24', 'en', 1, 'https://ror.org/04hg0kz24 Van Ameringen Foundation'),
(31081, 'https://ror.org/01s5k1048', 'no_lang_code', 1, 'https://ror.org/01s5k1048 Norfolk Southern (United States)'),
(31082, 'https://ror.org/00v7akn72', 'en', 1, 'https://ror.org/00v7akn72 Women Helping Others Foundation'),
(31083, 'https://ror.org/01xsmpb09', 'en', 1, 'https://ror.org/01xsmpb09 Autism Research Institute'),
(31084, 'https://ror.org/01evwk382', 'en', 1, 'https://ror.org/01evwk382 American Bureau of Shipping'),
(31085, 'https://ror.org/02vxk8v76', 'en', 1, 'https://ror.org/02vxk8v76 Ladies Leukemia League'),
(31086, 'https://ror.org/056a3nr23', 'en', 1, 'https://ror.org/056a3nr23 Advertising Educational Foundation'),
(31087, 'https://ror.org/038cgyc59', 'en', 1, 'https://ror.org/038cgyc59 Hartwell Foundation'),
(31088, 'https://ror.org/04mnkdm02', 'en', 1, 'https://ror.org/04mnkdm02 Aeronautics Research and Development Board'),
(31089, 'https://ror.org/006qwnw28', 'en', 1, 'https://ror.org/006qwnw28 Hawaii Invasive Species Council'),
(31090, 'https://ror.org/03f9wqe45', 'en', 1, 'https://ror.org/03f9wqe45 Vasculitis Foundation'),
(31091, 'https://ror.org/01dbyqv08', 'en', 1, 'https://ror.org/01dbyqv08 Alabama Farmers Federation'),
(31092, 'https://ror.org/00h5ca650', 'fr', 1, 'https://ror.org/00h5ca650 Fondation Lefoulon-Delalande'),
(31093, 'https://ror.org/0316wrd42', 'en', 1, 'https://ror.org/0316wrd42 Victorian Cancer Agency'),
(31094, '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'),
(31095, 'https://ror.org/01eb22z31', 'en', 1, 'https://ror.org/01eb22z31 German-Russian Interdisciplinary Science Center'),
(31096, 'https://ror.org/00fahmw72', 'en', 1, 'https://ror.org/00fahmw72 Canadian Occupational Therapy Foundation'),
(31097, 'https://ror.org/00skv9577', 'es', 1, 'https://ror.org/00skv9577 Fundación Mutua Madrileña'),
(31098, 'https://ror.org/030689123', 'en', 1, 'https://ror.org/030689123 Georgia Research Alliance'),
(31099, 'https://ror.org/03ye0w166', 'en', 1, 'https://ror.org/03ye0w166 Canadian Wildlife Federation FƩdƩration Canadienne de la Faune'),
(31100, 'https://ror.org/0031hzx04', 'en', 1, 'https://ror.org/0031hzx04 Florida Agency for Health Care Administration'),
(31101, 'https://ror.org/02qxv7b63', 'en', 1, 'https://ror.org/02qxv7b63 Cryptobranchid Interest Group'),
(31102, 'https://ror.org/01ch4jq10', 'en', 1, 'https://ror.org/01ch4jq10 Chemical Institute of Canada Institut de Chimie du Canada'),
(31103, 'https://ror.org/03tzb7t51', 'en', 1, 'https://ror.org/03tzb7t51 Meningitis Research Foundation'),
(31104, 'https://ror.org/04gyrp304', 'fr', 1, 'https://ror.org/04gyrp304 Fondation d''Aide pour la Recherche sur la Sclerose en Plaques'),
(31105, 'https://ror.org/05b6dcx13', 'en', 1, 'https://ror.org/05b6dcx13 Cystic Fibrosis Canada Fibrose kystique Canada'),
(31106, 'https://ror.org/03cen5169', 'it', 1, 'https://ror.org/03cen5169 Fondazione Cassa di Risparmio di Modena'),
(31107, 'https://ror.org/047jywd74', 'en', 1, 'https://ror.org/047jywd74 Kids Kidney Research'),
(31108, 'https://ror.org/01984jp66', 'en', 1, 'https://ror.org/01984jp66 British Interplanetary Society'),
(31109, 'https://ror.org/0375vv569', 'da', 1, 'https://ror.org/0375vv569 Hjerteforeningen'),
(31110, 'https://ror.org/0216whp02', 'en', 1, 'https://ror.org/0216whp02 Canadian Hemophilia Society SociƩtƩ Canadienne de l''HƩmophilie'),
(31111, 'https://ror.org/057rnbw54', 'en', 1, 'https://ror.org/057rnbw54 Ivy Foundation'),
(31112, 'https://ror.org/01je3h843', 'en', 1, 'https://ror.org/01je3h843 Institute for New Economic Thinking'),
(31113, 'https://ror.org/04fr9je54', 'en', 1, 'https://ror.org/04fr9je54 Chartered Institute of Logistics and Transport'),
(31114, 'https://ror.org/04ptmx344', 'en', 1, 'https://ror.org/04ptmx344 Arkansas Biosciences Institute'),
(31115, 'https://ror.org/019a0gk53', 'en', 1, 'https://ror.org/019a0gk53 Kidney Foundation of Canada La Fondation Canadienne du Rein'),
(31116, 'https://ror.org/046secg30', 'en', 1, 'https://ror.org/046secg30 Lee Foundation'),
(31117, 'https://ror.org/02bmd7x67', 'en', 1, 'https://ror.org/02bmd7x67 British Pharmacological Society'),
(31118, 'https://ror.org/03htnqd27', 'sv', 1, 'https://ror.org/03htnqd27 ƅke Wibergs Stiftelse'),
(31119, 'https://ror.org/050kwa993', 'en', 1, 'https://ror.org/050kwa993 British Society of Animal Science'),
(31120, 'https://ror.org/04wrhjz25', 'en', 1, 'https://ror.org/04wrhjz25 Society for Reproduction and Fertility'),
(31121, 'https://ror.org/01adk7m17', 'en', 1, 'https://ror.org/01adk7m17 Associated Medical Services'),
(31122, 'https://ror.org/04bjytq67', 'sv', 1, 'https://ror.org/04bjytq67 Jan Wallanders och Tom Hedelius stiftelse'),
(31123, 'https://ror.org/05bz3w661', 'en', 1, 'https://ror.org/05bz3w661 Canadian Liver Foundation Fondation Canadienne du Foie'),
(31124, 'https://ror.org/00ev6sa36', 'en', 1, 'https://ror.org/00ev6sa36 Daiwa Anglo-Japanese Foundation'),
(31125, 'https://ror.org/00yepf257', 'en', 1, 'https://ror.org/00yepf257 Ovarian Cancer Action'),
(31126, 'https://ror.org/00env1778', 'en', 1, 'https://ror.org/00env1778 Canadian Dermatology Foundation'),
(31127, 'https://ror.org/056y81r79', 'en', 1, 'https://ror.org/056y81r79 Higher Education Funding Council for Wales'),
(31128, 'https://ror.org/03573qv54', 'en', 1, 'https://ror.org/03573qv54 Orthopaedic Research'),
(31129, 'https://ror.org/02m24xz19', 'en', 1, 'https://ror.org/02m24xz19 Multiple Sclerosis Trust'),
(31130, 'https://ror.org/05nzkcm44', 'en', 1, 'https://ror.org/05nzkcm44 Australian Seafood Cooperative Research Center'),
(31131, 'https://ror.org/04390vz03', 'en', 1, 'https://ror.org/04390vz03 National Arts Council of South Africa'),
(31132, 'https://ror.org/02k4b9v70', 'en', 1, 'https://ror.org/02k4b9v70 Det Europæiske Miljøagentur European Environment Agency Europäische Umweltagentur'),
(31133, 'https://ror.org/0577j0g35', 'en', 1, 'https://ror.org/0577j0g35 Human Resource Development Group'),
(31134, 'https://ror.org/036ve4657', 'en', 1, 'https://ror.org/036ve4657 Building and Construction Authority'),
(31135, 'https://ror.org/0434keq61', 'en', 1, 'https://ror.org/0434keq61 Ministry of Social and Family Development ę–°åŠ å”ē¤¾ä¼šåŠå®¶åŗ­å‘å±•éƒØ'),
(31136, 'https://ror.org/03b4y8811', 'en', 1, 'https://ror.org/03b4y8811 Cancer Council Tasmania'),
(31137, 'https://ror.org/04gvcex51', 'en', 1, 'https://ror.org/04gvcex51 Ministry of National Development'),
(31138, 'https://ror.org/0018peh15', 'en', 1, 'https://ror.org/0018peh15 Tote Board'),
(31139, 'https://ror.org/00bwwrk44', 'en', 1, 'https://ror.org/00bwwrk44 Royal Pharmaceutical Society'),
(31140, 'https://ror.org/05dsr2a44', 'en', 1, 'https://ror.org/05dsr2a44 High Blood Pressure Research Council of Australia'),
(31141, 'https://ror.org/04n80xp42', 'en', 1, 'https://ror.org/04n80xp42 Gastroenterological Society of Australia'),
(31142, 'https://ror.org/01q5v7e13', 'en', 1, 'https://ror.org/01q5v7e13 Lowe Syndrome Trust'),
(31143, 'https://ror.org/0108bjm70', 'no_lang_code', 1, 'https://ror.org/0108bjm70 GlaxoSmithKline (Australia)'),
(31144, 'https://ror.org/05k1jx057', 'en', 1, 'https://ror.org/05k1jx057 Texas Space Grant Consortium'),
(31145, 'https://ror.org/035hx7715', 'en', 1, 'https://ror.org/035hx7715 Wisconsin Sea Grant'),
(31146, 'https://ror.org/022nyme12', 'en', 1, 'https://ror.org/022nyme12 Alaska Space Grant Program'),
(31147, 'https://ror.org/00j8gx359', 'en', 1, 'https://ror.org/00j8gx359 Group of Eight'),
(31148, 'https://ror.org/0014w1417', 'en', 1, 'https://ror.org/0014w1417 Georgia Sea Grant'),
(31149, 'https://ror.org/03hjnwv43', 'en', 1, 'https://ror.org/03hjnwv43 Arkansas Space Grant Consortium'),
(31150, 'https://ror.org/04j23ff69', 'en', 1, 'https://ror.org/04j23ff69 Alaska Sea Grant'),
(31151, 'https://ror.org/01m5ew684', 'en', 1, 'https://ror.org/01m5ew684 Education New Zealand'),
(31152, 'https://ror.org/01th7sf79', 'en', 1, 'https://ror.org/01th7sf79 Connecticut Space Grant Consortium'),
(31153, 'https://ror.org/01bfczx74', 'en', 1, 'https://ror.org/01bfczx74 Washington Space Grant Consortium'),
(31154, 'https://ror.org/047fr0y29', 'en', 1, 'https://ror.org/047fr0y29 Washington Sea Grant'),
(31155, 'https://ror.org/02jy9d058', 'en', 1, 'https://ror.org/02jy9d058 Florida Space Grant Consortium'),
(31156, 'https://ror.org/01n6agm35', 'en', 1, 'https://ror.org/01n6agm35 Minnesota Sea Grant'),
(31157, 'https://ror.org/01cewrs34', 'en', 1, 'https://ror.org/01cewrs34 Menzies Foundation'),
(31158, 'https://ror.org/00xfvky15', 'en', 1, 'https://ror.org/00xfvky15 Ohio Sea Grant College Program'),
(31159, 'https://ror.org/012d8w472', 'en', 1, 'https://ror.org/012d8w472 Australia and New Zealand Banking Group'),
(31160, 'https://ror.org/01ds51411', 'en', 1, 'https://ror.org/01ds51411 Texas Sea Grant College Program'),
(31161, 'https://ror.org/046107075', 'en', 1, 'https://ror.org/046107075 Oregon Sea Grant'),
(31162, 'https://ror.org/02kzdnj79', 'en', 1, 'https://ror.org/02kzdnj79 South African Thoracic Society'),
(31163, 'https://ror.org/0218hya98', 'en', 1, 'https://ror.org/0218hya98 Department of Higher Education'),
(31164, 'https://ror.org/03ek62e72', 'en', 1, 'https://ror.org/03ek62e72 Public Health Agency'),
(31165, 'https://ror.org/04evq8811', 'en', 1, 'https://ror.org/04evq8811 State Library of New South Wales'),
(31166, 'https://ror.org/05vje5x10', 'en', 1, 'https://ror.org/05vje5x10 Vision Australia'),
(31167, 'https://ror.org/022d1jx60', 'en', 1, 'https://ror.org/022d1jx60 Lung Foundation Australia'),
(31168, 'https://ror.org/01q6vb404', 'en', 1, 'https://ror.org/01q6vb404 Department of Chemicals and Petrochemicals'),
(31169, 'https://ror.org/03fafnr39', 'en', 1, 'https://ror.org/03fafnr39 Transport Accident Commission'),
(31170, 'https://ror.org/020kdtk66', 'en', 1, 'https://ror.org/020kdtk66 Recruitment and Assesment Centre'),
(31171, 'https://ror.org/03zwkr441', 'en', 1, 'https://ror.org/03zwkr441 Association canadienne des optomƩtristes Canadian Association Of Optometrists'),
(31172, 'https://ror.org/033r93f52', 'no_lang_code', 1, 'https://ror.org/033r93f52 Clothworkers Company (United Kingdom)'),
(31173, 'https://ror.org/0333xzh65', 'en', 1, 'https://ror.org/0333xzh65 Wolfson Foundation'),
(31174, 'https://ror.org/026m4hd24', 'en', 1, 'https://ror.org/026m4hd24 Kidney Health Australia'),
(31175, 'https://ror.org/03antpb48', 'en', 1, 'https://ror.org/03antpb48 Stem Cells Australia'),
(31176, 'https://ror.org/044446k52', 'en', 1, 'https://ror.org/044446k52 Beijing Academy of Food Sciences åŒ—äŗ¬é£Ÿå“ē§‘å­¦ē ”ē©¶é™¢'),
(31177, 'https://ror.org/00yaw3b91', 'en', 1, 'https://ror.org/00yaw3b91 Arts and Culture Trust'),
(31178, 'https://ror.org/05fe24682', 'en', 1, 'https://ror.org/05fe24682 Northern Territory Environment Protection Authority'),
(31179, 'https://ror.org/02xbjfn31', 'en', 1, 'https://ror.org/02xbjfn31 Middle East Fertility Society'),
(31180, 'https://ror.org/01swjvn57', 'no_lang_code', 1, 'https://ror.org/01swjvn57 Qatari Diar (Qatar)'),
(31181, 'https://ror.org/04f786589', 'no_lang_code', 1, 'https://ror.org/04f786589 Chunghwa Telecom (Taiwan)'),
(31182, 'https://ror.org/058smmw67', 'en', 1, 'https://ror.org/058smmw67 Ian Potter Foundation'),
(31183, 'https://ror.org/045dnqy78', 'fr', 1, 'https://ror.org/045dnqy78 Conseil RƩgional du Languedoc-Roussillon'),
(31184, 'https://ror.org/044panr52', 'en', 1, 'https://ror.org/044panr52 Egyptian Petroleum Research Institute'),
(31185, 'https://ror.org/04m1j1t24', 'en', 1, 'https://ror.org/04m1j1t24 Australian Institute of Criminology'),
(31186, 'https://ror.org/03562m240', 'en', 1, 'https://ror.org/03562m240 Housing and Building National Research Center'),
(31187, 'https://ror.org/040gfwf91', 'no_lang_code', 1, 'https://ror.org/040gfwf91 EWE (Germany)'),
(31188, 'https://ror.org/03kgcsq08', 'no_lang_code', 1, 'https://ror.org/03kgcsq08 China State Construction Engineering (China) äø­å›½å»ŗē­‘č„æå—č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(31189, 'https://ror.org/0106d7657', 'en', 1, 'https://ror.org/0106d7657 Korea International Cooperation Agency ķ•œźµ­źµ­ģ œķ˜‘ė „ė‹Ø'),
(31190, 'https://ror.org/05sprqy15', 'en', 1, 'https://ror.org/05sprqy15 Cambridge Commonwealth European and International Trust'),
(31191, 'https://ror.org/015rq8k57', 'no_lang_code', 1, 'https://ror.org/015rq8k57 Doosan Heavy Industries & Construction (South Korea)'),
(31192, 'https://ror.org/00chnhh80', 'en', 1, 'https://ror.org/00chnhh80 Carbon Management Canada'),
(31193, 'https://ror.org/04380ve97', 'en', 1, 'https://ror.org/04380ve97 Korea Communications Commission'),
(31194, 'https://ror.org/0444fnd49', 'en', 1, 'https://ror.org/0444fnd49 University of Southern California Sea Grant'),
(31195, 'https://ror.org/05vq9wd94', 'en', 1, 'https://ror.org/05vq9wd94 Gongju National Hospital 국립공주병원'),
(31196, 'https://ror.org/01zwr3j29', 'en', 1, 'https://ror.org/01zwr3j29 Nordic Joint Committee for Agricultural and Food Research'),
(31197, 'https://ror.org/03w805n83', 'fr', 1, 'https://ror.org/03w805n83 Conseil rƩgional de Haute-Normandie'),
(31198, 'https://ror.org/04nr5bm84', 'en', 1, 'https://ror.org/04nr5bm84 Social Security Information Service'),
(31199, 'https://ror.org/01gpyzq83', 'fi', 1, 'https://ror.org/01gpyzq83 Jenny and Antti Wihuri Foundation Jenny ja Antti Wihurin Rahasto'),
(31200, 'https://ror.org/02ms27492', 'en', 1, 'https://ror.org/02ms27492 California Rice Research Board'),
(31201, 'https://ror.org/01kgxxx41', 'en', 1, 'https://ror.org/01kgxxx41 North Carolina Sea Grant'),
(31202, 'https://ror.org/01ksx6c70', 'en', 1, 'https://ror.org/01ksx6c70 Connecticut Sea Grant'),
(31203, 'https://ror.org/05efm5n07', 'en', 1, 'https://ror.org/05efm5n07 National Health Insurance Service'),
(31204, 'https://ror.org/029dygd35', 'en', 1, 'https://ror.org/029dygd35 National Institutes of Biotechnology Malaysia'),
(31205, 'https://ror.org/05370mv03', 'en', 1, 'https://ror.org/05370mv03 Woods Hole Sea Grant'),
(31206, 'https://ror.org/00hth4774', 'no_lang_code', 1, 'https://ror.org/00hth4774 HeyStaks Technologies (Ireland)'),
(31207, 'https://ror.org/0296ss903', 'en', 1, 'https://ror.org/0296ss903 Alberta Children’s Hospital Foundation'),
(31208, 'https://ror.org/0198c2b48', 'no_lang_code', 1, 'https://ror.org/0198c2b48 Japan Medi- Mental Institute'),
(31209, 'https://ror.org/01h8vbd96', 'en', 1, 'https://ror.org/01h8vbd96 Korea Drug Development Fund'),
(31210, 'https://ror.org/02vk7w417', 'en', 1, 'https://ror.org/02vk7w417 Welsh National College'),
(31211, 'https://ror.org/01n54ck79', 'en', 1, 'https://ror.org/01n54ck79 Dutch Dairy Association Nederlandse Zuivel Organisatie'),
(31212, 'https://ror.org/01tyn7n29', 'en', 1, 'https://ror.org/01tyn7n29 Prime Minister''s Office'),
(31213, 'https://ror.org/00f08y308', 'sv', 1, 'https://ror.org/00f08y308 Wilhelm & Martina Lundgrens Stiftelser'),
(31214, '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'),
(31215, 'https://ror.org/03bgwd624', 'en', 1, 'https://ror.org/03bgwd624 Ministry of Foreign Affairs ėŒ€ķ•œėÆ¼źµ­ 외교부'),
(31216, 'https://ror.org/02wx79d08', 'no_lang_code', 1, 'https://ror.org/02wx79d08 Taiwan Semiconductor Manufacturing Company (Taiwan) å°ē£ē©é«”é›»č·Æč£½é€ å…¬åø'),
(31217, 'https://ror.org/01axmbr32', 'de', 1, 'https://ror.org/01axmbr32 Thüringer Aufbaubank'),
(31218, 'https://ror.org/00azj3a07', 'en', 1, 'https://ror.org/00azj3a07 Ministry of Security and Public Administration'),
(31219, 'https://ror.org/02z0nsb22', 'en', 1, 'https://ror.org/02z0nsb22 Institute of Mountain Hazards and Environment äø­å›½ē§‘å­¦é™¢ę°“åˆ©éƒØęˆéƒ½å±±åœ°ē¾å®³äøŽēŽÆå¢ƒē ”ē©¶ę‰€'),
(31220, 'https://ror.org/00rmvjy83', 'en', 1, 'https://ror.org/00rmvjy83 Ministry of Civil Affairs äø­åŽäŗŗę°‘å…±å’Œå›½ę°‘ę”æéƒØ'),
(31221, 'https://ror.org/036p7gy85', 'en', 1, 'https://ror.org/036p7gy85 Secretariat of Environment and Natural Resources SecretarĆ­a del Medio Ambiente y Recursos Naturales'),
(31222, 'https://ror.org/0435dvj48', 'en', 1, 'https://ror.org/0435dvj48 Cultural Heritage Administration ė¬øķ™”ģž¬ģ²­'),
(31223, 'https://ror.org/04gmrm344', 'it', 1, 'https://ror.org/04gmrm344 Fondazione Monte di Bologna and Ravenna'),
(31224, 'https://ror.org/05j0gfp71', 'no_lang_code', 1, 'https://ror.org/05j0gfp71 Daewoong Pharmaceutical (South Korea) ėŒ€ģ›…ģ œģ•½'),
(31225, 'https://ror.org/05xwwfy96', 'en', 1, 'https://ror.org/05xwwfy96 German National Academic Foundation Studienstiftung des deutschen Volkes'),
(31226, 'https://ror.org/005rt3g54', 'fi', 1, 'https://ror.org/005rt3g54 Emil Aaltosen SƤƤtiƶ'),
(31227, 'https://ror.org/05mx11h55', 'en', 1, 'https://ror.org/05mx11h55 Ministry of Agriculture and Agro Based Industry'),
(31228, 'https://ror.org/02p89gk05', 'en', 1, 'https://ror.org/02p89gk05 Swedish Municipal Workers'' Union'),
(31229, 'https://ror.org/01xsqqn76', 'en', 1, 'https://ror.org/01xsqqn76 Ministry of Education and Science of Perm Region'),
(31230, 'https://ror.org/04xbqmj23', 'en', 1, 'https://ror.org/04xbqmj23 Indian National Centre for Ocean Information Services'),
(31231, 'https://ror.org/031zfq432', 'no_lang_code', 1, 'https://ror.org/031zfq432 Ferring Pharmaceuticals (Switzerland)'),
(31232, 'https://ror.org/03b7vrw33', 'fr', 1, 'https://ror.org/03b7vrw33 Conseil RƩgional d''Auvergne'),
(31233, 'https://ror.org/00yp7b787', 'en', 1, 'https://ror.org/00yp7b787 Applied Scientific Research Fund'),
(31234, 'https://ror.org/019xtsv53', 'en', 1, 'https://ror.org/019xtsv53 Assar Gabrielsson Foundation Stiftelsen Assar Gabrielssons Fond'),
(31235, 'https://ror.org/0211vdk93', 'en', 1, 'https://ror.org/0211vdk93 Belgian Development Agency'),
(31236, 'https://ror.org/03hkh9419', 'no_lang_code', 1, 'https://ror.org/03hkh9419 China Southern Power Grid (China)'),
(31237, 'https://ror.org/054kvr030', 'en', 1, 'https://ror.org/054kvr030 University System of Taiwan'),
(31238, 'https://ror.org/02qx2s478', 'en', 1, 'https://ror.org/02qx2s478 Southern and Eastern Norway Regional Health Authority'),
(31239, 'https://ror.org/04djvx395', 'en', 1, 'https://ror.org/04djvx395 Foundation for Research Support of the Federal District'),
(31240, 'https://ror.org/04ene8p36', 'en', 1, 'https://ror.org/04ene8p36 Commission for Scientific Investigations in Greenland Kommissionen for Videnskabelige UndersĆøgelser i GrĆønland'),
(31241, 'https://ror.org/04g6qfd94', 'en', 1, 'https://ror.org/04g6qfd94 European Foundation for Alcohol Research'),
(31242, 'https://ror.org/02d9dkk61', 'en', 1, 'https://ror.org/02d9dkk61 Gout Research Foundation'),
(31243, 'https://ror.org/01mre6t58', 'en', 1, 'https://ror.org/01mre6t58 Pan African Urological Surgeons Association'),
(31244, 'https://ror.org/020dg9f27', 'en', 1, 'https://ror.org/020dg9f27 Keelung Chang Gung Memorial Hospital'),
(31245, 'https://ror.org/00fk9d670', 'en', 1, 'https://ror.org/00fk9d670 Taoyuan Chang Gung Memorial Hospital'),
(31246, 'https://ror.org/047gav625', 'no_lang_code', 1, 'https://ror.org/047gav625 Skyonic (United States)'),
(31247, 'https://ror.org/0268acg39', 'no_lang_code', 1, 'https://ror.org/0268acg39 SCS Energy (United States)'),
(31248, 'https://ror.org/050fxb616', 'no_lang_code', 1, 'https://ror.org/050fxb616 Solidia Technologies (United States)'),
(31249, 'https://ror.org/01a2pr469', 'en', 1, 'https://ror.org/01a2pr469 Naval Research Board ą¤Øą„Œą¤øą„‡ą¤Øą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤¬ą„‹ą¤°ą„ą¤”'),
(31250, 'https://ror.org/03vtpmc73', 'en', 1, 'https://ror.org/03vtpmc73 Institute of Archaeology'),
(31251, 'https://ror.org/046nkt812', 'no_lang_code', 1, 'https://ror.org/046nkt812 8 Rivers Capital (United States)'),
(31252, 'https://ror.org/0153ngy95', 'en', 1, 'https://ror.org/0153ngy95 Southern Research Institute'),
(31253, 'https://ror.org/047kyy460', 'no_lang_code', 1, 'https://ror.org/047kyy460 Advanced Resources International (United States)'),
(31254, 'https://ror.org/00tqhym28', 'en', 1, 'https://ror.org/00tqhym28 Institute of Croatian Language and Linguistics'),
(31255, 'https://ror.org/00wmm1d15', 'en', 1, 'https://ror.org/00wmm1d15 Institute of Art History'),
(31256, 'https://ror.org/039872b94', 'no_lang_code', 1, 'https://ror.org/039872b94 Summit Power Group (United States)'),
(31257, 'https://ror.org/01ydrx675', 'no_lang_code', 1, 'https://ror.org/01ydrx675 Air Products (United States)'),
(31258, 'https://ror.org/04kzdy639', 'en', 1, 'https://ror.org/04kzdy639 Institute for Development and International Relations'),
(31259, 'https://ror.org/02ajxzc79', 'no_lang_code', 1, 'https://ror.org/02ajxzc79 Thar Energy (United States)'),
(31260, 'https://ror.org/02pvr8q36', 'de', 1, 'https://ror.org/02pvr8q36 Berufbildungsschule Winterthur'),
(31261, 'https://ror.org/01140r423', 'en', 1, 'https://ror.org/01140r423 Israel Institute for Advanced Studies'),
(31262, 'https://ror.org/03ycz8v76', 'en', 1, 'https://ror.org/03ycz8v76 Bosque School'),
(31263, 'https://ror.org/00tf8zn82', 'no_lang_code', 1, 'https://ror.org/00tf8zn82 Altex Technologies Corporation (United States)'),
(31264, 'https://ror.org/04g99jx54', 'en', 1, 'https://ror.org/04g99jx54 Fachhochschule Stralsund University of Applied Sciences Stralsund'),
(31265, 'https://ror.org/0499r1e09', 'no_lang_code', 1, 'https://ror.org/0499r1e09 Archer Daniels Midland (United States)'),
(31266, 'https://ror.org/041jx2z70', 'en', 1, 'https://ror.org/041jx2z70 Triangle Research and Development Center'),
(31267, 'https://ror.org/01gehdq90', 'no_lang_code', 1, 'https://ror.org/01gehdq90 Yad Ben Zvi'),
(31268, 'https://ror.org/00wgjgc44', 'no_lang_code', 1, 'https://ror.org/00wgjgc44 Cellworks Research (India)'),
(31269, 'https://ror.org/028kxkn33', 'no_lang_code', 1, 'https://ror.org/028kxkn33 Brayton Energy (United States)'),
(31270, 'https://ror.org/02qmw3e81', 'en', 1, 'https://ror.org/02qmw3e81 Centre of Plasma Physics - Institute for Plasma Research ą¤Ŗą„ą¤²ą¤¾ą¤œą„ą¤®ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø பிளாசுமா ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(31271, 'https://ror.org/008q5qf73', 'en', 1, 'https://ror.org/008q5qf73 Edison Welding Institute'),
(31272, 'https://ror.org/014nyvw32', 'pt', 1, 'https://ror.org/014nyvw32 Centro de Educação Profissional em Tecnologia da Informação de Petrópolis'),
(31273, 'https://ror.org/01t75ff47', 'en', 1, 'https://ror.org/01t75ff47 Fernfachhochschule Schweiz Swiss Distance University of Applied Sciences'),
(31274, 'https://ror.org/05rwjyj14', 'en', 1, 'https://ror.org/05rwjyj14 Fusion Academy'),
(31275, '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'),
(31276, 'https://ror.org/031zdk170', 'no_lang_code', 1, 'https://ror.org/031zdk170 Florida Turbine Technologies (United States)'),
(31277, 'https://ror.org/01j78w442', 'en', 1, 'https://ror.org/01j78w442 Germantown Academy'),
(31278, 'https://ror.org/00kj8fh75', 'no_lang_code', 1, 'https://ror.org/00kj8fh75 Multi-Phase Technologies (United States)'),
(31279, 'https://ror.org/02gp2h315', 'no_lang_code', 1, 'https://ror.org/02gp2h315 FuelCell Energy (United States)'),
(31280, 'https://ror.org/03htsh285', 'no_lang_code', 1, 'https://ror.org/03htsh285 Sigma³ (United States)'),
(31281, 'https://ror.org/00s8ey170', 'no_lang_code', 1, 'https://ror.org/00s8ey170 Paulsson (United States)'),
(31282, 'https://ror.org/040nxjw81', 'fr', 1, 'https://ror.org/040nxjw81 Haute Ɖcole de Bruxelles'),
(31283, 'https://ror.org/05j7hv850', 'no_lang_code', 1, 'https://ror.org/05j7hv850 GeoMechanics Technologies (United States)'),
(31284, 'https://ror.org/01jg6rj30', 'en', 1, 'https://ror.org/01jg6rj30 College of the Albemarle'),
(31285, 'https://ror.org/01cx8sm26', 'pt', 1, 'https://ror.org/01cx8sm26 Universidade Sociedade Educacional de Santa Catarina'),
(31286, 'https://ror.org/007vkx321', 'en', 1, 'https://ror.org/007vkx321 Energy Industries of Ohio'),
(31287, 'https://ror.org/00py6j950', 'no_lang_code', 1, 'https://ror.org/00py6j950 QuesTek (United States)'),
(31288, 'https://ror.org/032tyv240', 'en', 1, 'https://ror.org/032tyv240 Institute of Molecular Science and Technologies Istituto di Scienze e Tecnologie Molecolari'),
(31289, 'https://ror.org/04b4jcw62', 'no_lang_code', 1, 'https://ror.org/04b4jcw62 Geostock (United States)'),
(31290, 'https://ror.org/01nz9v648', 'no_lang_code', 1, 'https://ror.org/01nz9v648 HiFunda (United States)'),
(31291, 'https://ror.org/05cxkpp05', 'en', 1, 'https://ror.org/05cxkpp05 DigiPen Institute of Technology'),
(31292, 'https://ror.org/0436y2h42', 'de', 1, 'https://ror.org/0436y2h42 Hermann Staudinger Gymnasium'),
(31293, 'https://ror.org/057mh7566', 'en', 1, 'https://ror.org/057mh7566 MiraCosta College'),
(31294, 'https://ror.org/00hvk3c79', 'en', 1, 'https://ror.org/00hvk3c79 Maharaj Vijayaram Gajapathi Raj College of Engineering'),
(31295, 'https://ror.org/019axjh19', 'fr', 1, 'https://ror.org/019axjh19 ECAM Institut SupƩrieur Industriel'),
(31296, 'https://ror.org/009fatj68', 'en', 1, 'https://ror.org/009fatj68 Riga High Tech University'),
(31297, 'https://ror.org/040bs6h16', 'en', 1, 'https://ror.org/040bs6h16 National Chin-Yi University of Technology'),
(31298, 'https://ror.org/04gwzr713', 'fr', 1, 'https://ror.org/04gwzr713 IngƩsup'),
(31299, 'https://ror.org/021t0p839', 'en', 1, 'https://ror.org/021t0p839 Santa Rosa Junior College'),
(31300, 'https://ror.org/033904843', 'en', 1, 'https://ror.org/033904843 New Economic School Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń школа'),
(31301, 'https://ror.org/017ef8252', 'en', 1, 'https://ror.org/017ef8252 Institute for System Programming Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ системного ŠæŃ€Š¾Š³Ń€Š°Š¼Š¼ŠøŃ€Š¾Š²Š°Š½ŠøŃ'),
(31302, 'https://ror.org/02nkxrq89', 'en', 1, 'https://ror.org/02nkxrq89 Hochschule Ruhr West Ruhr West University of Applied Sciences'),
(31303, 'https://ror.org/03f9nc143', 'en', 1, 'https://ror.org/03f9nc143 Skolkovo Institute of Science and Technology Дколковский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ науки Šø технологий'),
(31304, 'https://ror.org/05mh8bc44', 'en', 1, 'https://ror.org/05mh8bc44 Manchester Grammar School'),
(31305, 'https://ror.org/025n1fp68', 'pt', 1, 'https://ror.org/025n1fp68 Institute of Aeronautics and Space Instituto de AeronƔutica e EspaƧo'),
(31306, 'https://ror.org/03yfnx990', 'no_lang_code', 1, 'https://ror.org/03yfnx990 Advanced Emissions Solutions (United States)'),
(31307, 'https://ror.org/05jf1ma54', 'de', 1, 'https://ror.org/05jf1ma54 Bern University of Teacher Education PƤdagogische Hochschule Bern'),
(31308, 'https://ror.org/04nnrzq56', 'en', 1, 'https://ror.org/04nnrzq56 Sextures Institute'),
(31309, 'https://ror.org/05xzvxw52', 'es', 1, 'https://ror.org/05xzvxw52 Universidad AeronƔutica en QuerƩtaro'),
(31310, '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'),
(31311, 'https://ror.org/03w6rv149', 'pt', 1, 'https://ror.org/03w6rv149 Instituto Federal de Educação Ciência e Tecnologia do Norte de Minas Gerais'),
(31312, 'https://ror.org/00c6qf472', 'pt', 1, 'https://ror.org/00c6qf472 Instituto Infnet'),
(31313, 'https://ror.org/02g36m681', 'es', 1, 'https://ror.org/02g36m681 Instituto Tecnológico de Soledad AtlÔntico'),
(31314, 'https://ror.org/04r8wdj07', 'en', 1, 'https://ror.org/04r8wdj07 Kansas Public Schools'),
(31315, 'https://ror.org/057m37z25', 'en', 1, 'https://ror.org/057m37z25 Maine School of Science and Mathematics'),
(31316, 'https://ror.org/0023ydp64', 'en', 1, 'https://ror.org/0023ydp64 Malden Public Schools'),
(31317, 'https://ror.org/02np5p423', 'no_lang_code', 1, 'https://ror.org/02np5p423 Uganda Clays (Uganda)'),
(31318, 'https://ror.org/04s4s0979', 'en', 1, 'https://ror.org/04s4s0979 NIHR Leicester Respiratory Biomedical Research Unit'),
(31319, 'https://ror.org/05kt92j68', 'en', 1, 'https://ror.org/05kt92j68 Access Technologies'),
(31320, 'https://ror.org/02jx81v73', 'no_lang_code', 1, 'https://ror.org/02jx81v73 Academic Software (United States)'),
(31321, 'https://ror.org/059hh8s03', 'en', 1, 'https://ror.org/059hh8s03 Arc of the United States'),
(31322, 'https://ror.org/05tmhhz44', 'en', 1, 'https://ror.org/05tmhhz44 Access Technologies Group'),
(31323, 'https://ror.org/04mhnz122', 'en', 1, 'https://ror.org/04mhnz122 Assistive Technology Resource Centers of Hawaii'),
(31324, 'https://ror.org/007xevs95', 'no_lang_code', 1, 'https://ror.org/007xevs95 Metalite Industries (United States)'),
(31325, 'https://ror.org/031zhyz22', 'en', 1, 'https://ror.org/031zhyz22 Institute for Human Centered Design'),
(31326, 'https://ror.org/04q2v3586', 'en', 1, 'https://ror.org/04q2v3586 Devereux'),
(31327, 'https://ror.org/04rnkb958', 'en', 1, 'https://ror.org/04rnkb958 Hillside Rehabilitation Hospital'),
(31328, 'https://ror.org/03th3y983', 'en', 1, 'https://ror.org/03th3y983 Chicago House and Social Service Agency'),
(31329, 'https://ror.org/059nraq63', 'no_lang_code', 1, 'https://ror.org/059nraq63 Automatic Sync Technologies (United States)'),
(31330, 'https://ror.org/01y0rg445', 'no_lang_code', 1, 'https://ror.org/01y0rg445 AventuSoft (United States)'),
(31331, 'https://ror.org/0018p0n86', 'en', 1, 'https://ror.org/0018p0n86 Alabama Department of Rehabilitation Services'),
(31332, 'https://ror.org/02m0sxt16', 'en', 1, 'https://ror.org/02m0sxt16 Illinois Assistive Technology Program'),
(31333, 'https://ror.org/05f6k3t36', 'en', 1, 'https://ror.org/05f6k3t36 Henry Viscardi School'),
(31334, 'https://ror.org/02zz5ef94', 'en', 1, 'https://ror.org/02zz5ef94 Clarke Schools for Hearing and Speech'),
(31335, 'https://ror.org/05pc4pd06', 'en', 1, 'https://ror.org/05pc4pd06 Alaska Department of Labor and Workforce Development'),
(31336, 'https://ror.org/00c9pzm73', 'en', 1, 'https://ror.org/00c9pzm73 Easterseals'),
(31337, 'https://ror.org/02nkwwe88', 'en', 1, 'https://ror.org/02nkwwe88 Minerva Brooks Memorial Library'),
(31338, 'https://ror.org/04nk31t13', 'no_lang_code', 1, 'https://ror.org/04nk31t13 Community Options (United States)'),
(31339, 'https://ror.org/02nz03g03', 'en', 1, 'https://ror.org/02nz03g03 American Foundation for the Blind'),
(31340, 'https://ror.org/01scb6a48', 'no_lang_code', 1, 'https://ror.org/01scb6a48 EM Photonics (United States)'),
(31341, 'https://ror.org/035w40502', 'en', 1, 'https://ror.org/035w40502 Institute for Learning and Development'),
(31342, 'https://ror.org/03n9v8v45', 'en', 1, 'https://ror.org/03n9v8v45 Community Services for Autistic Adults and Children'),
(31343, 'https://ror.org/021g6m489', 'en', 1, 'https://ror.org/021g6m489 American Printing House for the Blind'),
(31344, 'https://ror.org/00ad2fh66', 'no_lang_code', 1, 'https://ror.org/00ad2fh66 Dental Rat (United States)'),
(31345, 'https://ror.org/05cp34c97', 'en', 1, 'https://ror.org/05cp34c97 ENDependence Center of Northern Virginia'),
(31346, 'https://ror.org/05jfe3192', 'en', 1, 'https://ror.org/05jfe3192 Connecticut Department of Social Services'),
(31347, 'https://ror.org/04vnmgz72', 'no_lang_code', 1, 'https://ror.org/04vnmgz72 Anholt Technologies (United States)'),
(31348, 'https://ror.org/00ryqe969', 'no_lang_code', 1, 'https://ror.org/00ryqe969 Engineering Associates (United States)'),
(31349, 'https://ror.org/02qkmsm66', 'no_lang_code', 1, 'https://ror.org/02qkmsm66 Control Systems Research (United States)'),
(31350, 'https://ror.org/02vvx3p07', 'no_lang_code', 1, 'https://ror.org/02vvx3p07 TeachTown (United States)'),
(31351, 'https://ror.org/0052sz171', 'no_lang_code', 1, 'https://ror.org/0052sz171 Enhanced Vision (United States)'),
(31352, 'https://ror.org/00dqyqs74', 'en', 1, 'https://ror.org/00dqyqs74 California Foundation for Independent Living Centers'),
(31353, 'https://ror.org/051w9pj35', 'en', 1, 'https://ror.org/051w9pj35 Integrated Behavioral Technologies'),
(31354, 'https://ror.org/0268nwh16', 'en', 1, 'https://ror.org/0268nwh16 Carroll Center for the Blind'),
(31355, 'https://ror.org/05014nn74', 'no_lang_code', 1, 'https://ror.org/05014nn74 CreateAbility Concepts (United States)'),
(31356, 'https://ror.org/03p0jv517', 'en', 1, 'https://ror.org/03p0jv517 Eugene Research Institute'),
(31357, 'https://ror.org/02fd57127', 'no_lang_code', 1, 'https://ror.org/02fd57127 Criterion Health (United States)'),
(31358, 'https://ror.org/04f1s4r56', 'en', 1, 'https://ror.org/04f1s4r56 Psychiatric Rehabilitation Association'),
(31359, 'https://ror.org/00rqzt374', 'no_lang_code', 1, 'https://ror.org/00rqzt374 Dane Technologies (United States)'),
(31360, 'https://ror.org/00gq9jc61', 'no_lang_code', 1, 'https://ror.org/00gq9jc61 Custom Technology (United States)'),
(31361, 'https://ror.org/02r5jp158', 'en', 1, 'https://ror.org/02r5jp158 Center for International Rehabilitation'),
(31362, 'https://ror.org/05qwshn40', 'no_lang_code', 1, 'https://ror.org/05qwshn40 CYBER Learning Corporation (United States)'),
(31363, 'https://ror.org/00f012347', 'no_lang_code', 1, 'https://ror.org/00f012347 InternetSpeech (United States)'),
(31364, 'https://ror.org/005570a84', 'no_lang_code', 1, 'https://ror.org/005570a84 DakotaLink (United States)'),
(31365, 'https://ror.org/02pr6am85', 'en', 1, 'https://ror.org/02pr6am85 Arkansas Department of Career Education'),
(31366, 'https://ror.org/055n66f64', 'no_lang_code', 1, 'https://ror.org/055n66f64 Dancing Dots (United States)'),
(31367, 'https://ror.org/00w8gjz75', 'en', 1, 'https://ror.org/00w8gjz75 Iowa Department for the Blind'),
(31368, 'https://ror.org/01rg81308', 'no_lang_code', 1, 'https://ror.org/01rg81308 Flint Rehabilitation Devices (United States)'),
(31369, 'https://ror.org/031m8pd59', 'en', 1, 'https://ror.org/031m8pd59 South Carolina Vocational Rehabilitation Department'),
(31370, 'https://ror.org/00g5vpp27', 'en', 1, 'https://ror.org/00g5vpp27 Iowa Finance Authority'),
(31371, 'https://ror.org/02knm8c59', 'en', 1, 'https://ror.org/02knm8c59 Departamento de Educación de la Florida Florida Department of Education'),
(31372, 'https://ror.org/00vc5fc11', 'no_lang_code', 1, 'https://ror.org/00vc5fc11 Data Harbor (United States)'),
(31373, 'https://ror.org/055e0bc90', 'en', 1, 'https://ror.org/055e0bc90 JEVS Human Services'),
(31374, 'https://ror.org/00j9qx055', 'en', 1, 'https://ror.org/00j9qx055 Maryland Department of Disabilities'),
(31375, 'https://ror.org/03tcfa010', 'en', 1, 'https://ror.org/03tcfa010 Nevada Department of Employment Training and Rehabilitation'),
(31376, 'https://ror.org/05c7nfs29', 'en', 1, 'https://ror.org/05c7nfs29 Commission on Rehabilitation Counselor Certification'),
(31377, 'https://ror.org/01ehxp168', 'en', 1, 'https://ror.org/01ehxp168 Kentucky Assistive Technology Services Network'),
(31378, 'https://ror.org/03pwapz26', 'en', 1, 'https://ror.org/03pwapz26 American Foundation for Children with AIDS'),
(31379, 'https://ror.org/02np0kc30', 'en', 1, 'https://ror.org/02np0kc30 CESSI'),
(31380, 'https://ror.org/05m0n6v74', 'en', 1, 'https://ror.org/05m0n6v74 Kentucky Office of Vocational Rehabilitation'),
(31381, 'https://ror.org/012dbxn21', 'no_lang_code', 1, 'https://ror.org/012dbxn21 Marucco Stoddard Ferenbach and Walsh (United States)'),
(31382, 'https://ror.org/05q5vb956', 'no_lang_code', 1, 'https://ror.org/05q5vb956 Learnimation (United States)'),
(31383, 'https://ror.org/0220qmg06', 'no_lang_code', 1, 'https://ror.org/0220qmg06 Charmtech Labs (United States)'),
(31384, 'https://ror.org/05jjpbn70', 'en', 1, 'https://ror.org/05jjpbn70 Alliance for Technology Access'),
(31385, 'https://ror.org/03fa61n31', 'no_lang_code', 1, 'https://ror.org/03fa61n31 PR & Company (United States)'),
(31386, 'https://ror.org/00yj47665', 'en', 1, 'https://ror.org/00yj47665 Lee County Board of Commissioners'),
(31387, 'https://ror.org/04erqh270', 'no_lang_code', 1, 'https://ror.org/04erqh270 Liberating Technologies (United States)'),
(31388, 'https://ror.org/01tdhf121', 'en', 1, 'https://ror.org/01tdhf121 Parent Information Center'),
(31389, 'https://ror.org/00kzn0453', 'en', 1, 'https://ror.org/00kzn0453 Viscardi Center'),
(31390, 'https://ror.org/02xx4aw44', 'en', 1, 'https://ror.org/02xx4aw44 Peak Parent Center'),
(31391, 'https://ror.org/051xfvw62', 'no_lang_code', 1, 'https://ror.org/051xfvw62 Futures in Rehabilitation Management (United States)'),
(31392, 'https://ror.org/04qysqs39', 'en', 1, 'https://ror.org/04qysqs39 Georgia Department of Labor'),
(31393, 'https://ror.org/016qjmh37', 'no_lang_code', 1, 'https://ror.org/016qjmh37 LINC Design (United States)'),
(31394, 'https://ror.org/038h9a412', 'en', 1, 'https://ror.org/038h9a412 National League of Cities'),
(31395, 'https://ror.org/012gvd160', 'no_lang_code', 1, 'https://ror.org/012gvd160 Good Nutrition Ideas (United States)'),
(31396, 'https://ror.org/00zwndh37', 'no_lang_code', 1, 'https://ror.org/00zwndh37 Amtrak (United States)'),
(31397, 'https://ror.org/05249qj80', 'en', 1, 'https://ror.org/05249qj80 Positive Behavioral Solutions'),
(31398, 'https://ror.org/03fn5kb59', 'no_lang_code', 1, 'https://ror.org/03fn5kb59 PresenceLearning (United States)'),
(31399, 'https://ror.org/059bes354', 'en', 1, 'https://ror.org/059bes354 Minnesota Department of Administration'),
(31400, 'https://ror.org/038mg2014', 'en', 1, 'https://ror.org/038mg2014 Maine CITE Coordinating Center'),
(31401, 'https://ror.org/04ysbng93', 'en', 1, 'https://ror.org/04ysbng93 RAF Models & Displays'),
(31402, 'https://ror.org/041n00p08', 'no_lang_code', 1, 'https://ror.org/041n00p08 Ready Set Sign (United States)'),
(31403, 'https://ror.org/01scetz04', 'en', 1, 'https://ror.org/01scetz04 National Disability Institute'),
(31404, 'https://ror.org/043bbp842', 'no_lang_code', 1, 'https://ror.org/043bbp842 EyeTalk Systems (United States)'),
(31405, 'https://ror.org/03pfyd630', 'en', 1, 'https://ror.org/03pfyd630 Lourie Center for Children''s Social & Emotional Wellness'),
(31406, 'https://ror.org/023844j81', 'en', 1, 'https://ror.org/023844j81 Massachusetts Rehabilitation Commission'),
(31407, 'https://ror.org/043egek32', 'en', 1, 'https://ror.org/043egek32 Neighborhood Legal Services'),
(31408, 'https://ror.org/059xj7p12', 'en', 1, 'https://ror.org/059xj7p12 Matheny Hospital'),
(31409, 'https://ror.org/03xc04149', 'no_lang_code', 1, 'https://ror.org/03xc04149 Numotion (United States)'),
(31410, 'https://ror.org/04vc8w180', 'no_lang_code', 1, 'https://ror.org/04vc8w180 New Editions Consulting (United States)'),
(31411, 'https://ror.org/05ar16409', 'no_lang_code', 1, 'https://ror.org/05ar16409 Med Graph (United States)'),
(31412, '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'),
(31413, 'https://ror.org/01an3s209', 'no_lang_code', 1, 'https://ror.org/01an3s209 Technical Resource Group (United States)'),
(31414, 'https://ror.org/047t8cy26', 'no_lang_code', 1, 'https://ror.org/047t8cy26 Research Solutions International (United States)'),
(31415, 'https://ror.org/04y9h8038', 'no_lang_code', 1, 'https://ror.org/04y9h8038 Seamless Solutions (United States)'),
(31416, 'https://ror.org/05bwra959', 'no_lang_code', 1, 'https://ror.org/05bwra959 Nian-Crae (United States)'),
(31417, 'https://ror.org/02n9m6n25', 'no_lang_code', 1, 'https://ror.org/02n9m6n25 Meeting the Challenge (United States)'),
(31418, 'https://ror.org/01ceg2d52', 'en', 1, 'https://ror.org/01ceg2d52 Rhode Island Department of Human Services'),
(31419, 'https://ror.org/04ebjet06', 'en', 1, 'https://ror.org/04ebjet06 Michigan Disability Rights Coalition'),
(31420, 'https://ror.org/05qnvg564', 'no_lang_code', 1, 'https://ror.org/05qnvg564 Rehab Ideas (United States)'),
(31421, 'https://ror.org/029ke3y74', 'en', 1, 'https://ror.org/029ke3y74 SEE Center'),
(31422, 'https://ror.org/00yv7ry10', 'en', 1, 'https://ror.org/00yv7ry10 Mississippi Department of Rehabilitation Services'),
(31423, 'https://ror.org/02syt4h28', 'no_lang_code', 1, 'https://ror.org/02syt4h28 Sendero Group (United States)'),
(31424, 'https://ror.org/03pdrba07', 'no_lang_code', 1, 'https://ror.org/03pdrba07 Sandbox Learning (United States)'),
(31425, 'https://ror.org/03f89nr30', 'en', 1, 'https://ror.org/03f89nr30 Sensory Access Foundation'),
(31426, 'https://ror.org/02djzdr35', 'no_lang_code', 1, 'https://ror.org/02djzdr35 Synfonica (United States)'),
(31427, 'https://ror.org/033zf9867', 'en', 1, 'https://ror.org/033zf9867 Missouri Department of Labor and Industrial Relations'),
(31428, 'https://ror.org/0339vy375', 'en', 1, 'https://ror.org/0339vy375 TransCen'),
(31429, 'https://ror.org/03s8rh204', 'en', 1, 'https://ror.org/03s8rh204 University Legal Services'),
(31430, 'https://ror.org/033cz6738', 'en', 1, 'https://ror.org/033cz6738 Oklahoma Department of Rehabilitation Services'),
(31431, 'https://ror.org/04xwjyh18', 'en', 1, 'https://ror.org/04xwjyh18 SKIP of New York'),
(31432, 'https://ror.org/039zy9n12', 'no_lang_code', 1, 'https://ror.org/039zy9n12 OmegaWare (United States)'),
(31433, 'https://ror.org/04xt42358', 'en', 1, 'https://ror.org/04xt42358 Tennessee Department of Human Services'),
(31434, 'https://ror.org/021kp0270', 'no_lang_code', 1, 'https://ror.org/021kp0270 SoarTech (United States)'),
(31435, 'https://ror.org/02vz36p73', 'no_lang_code', 1, 'https://ror.org/02vz36p73 Prevention Group'),
(31436, 'https://ror.org/008g2yb06', 'no_lang_code', 1, 'https://ror.org/008g2yb06 Opus Technologies (United States)'),
(31437, 'https://ror.org/0143g4710', 'en', 1, 'https://ror.org/0143g4710 Lexington School for the Deaf'),
(31438, 'https://ror.org/04pyyzw22', 'en', 1, 'https://ror.org/04pyyzw22 Western Pennsylvania School for Blind Children'),
(31439, 'https://ror.org/03f0wr475', 'no_lang_code', 1, 'https://ror.org/03f0wr475 Veritune (United States)'),
(31440, 'https://ror.org/001rv3303', 'en', 1, 'https://ror.org/001rv3303 Vermont Center for Independent Living'),
(31441, 'https://ror.org/04089t965', 'en', 1, 'https://ror.org/04089t965 Abraham Baldwin Agricultural College'),
(31442, 'https://ror.org/04zmvq270', 'no_lang_code', 1, 'https://ror.org/04zmvq270 Wizdom Systems (United States)'),
(31443, 'https://ror.org/0046kpv26', 'en', 1, 'https://ror.org/0046kpv26 World Institute on Disability'),
(31444, 'https://ror.org/04bbq7097', 'no_lang_code', 1, 'https://ror.org/04bbq7097 Spirit Lake Consulting (United States)'),
(31445, 'https://ror.org/027g2v939', 'en', 1, 'https://ror.org/027g2v939 Vermont Department of Disabilities Aging and Independent Living'),
(31446, 'https://ror.org/02thhxe24', 'en', 1, 'https://ror.org/02thhxe24 Alaska Bible College'),
(31447, 'https://ror.org/03kmh7v63', 'en', 1, 'https://ror.org/03kmh7v63 Virginia Department for Aging and Rehabilitative Services'),
(31448, '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'),
(31449, 'https://ror.org/00vapxw25', 'en', 1, 'https://ror.org/00vapxw25 American Academy of Art'),
(31450, 'https://ror.org/04hgt1t77', 'en', 1, 'https://ror.org/04hgt1t77 Centenary College of New Jersey'),
(31451, 'https://ror.org/02kt0tf86', 'en', 1, 'https://ror.org/02kt0tf86 Davis College - New York'),
(31452, 'https://ror.org/043mcwe63', 'en', 1, 'https://ror.org/043mcwe63 Lake Forest Graduate School of Management'),
(31453, 'https://ror.org/00b44sj21', 'en', 1, 'https://ror.org/00b44sj21 Dean College'),
(31454, 'https://ror.org/05w4c2r57', 'en', 1, 'https://ror.org/05w4c2r57 Digital Media Arts College'),
(31455, 'https://ror.org/04cey8951', 'en', 1, 'https://ror.org/04cey8951 Lancaster Bible College'),
(31456, 'https://ror.org/04n4x0209', 'en', 1, 'https://ror.org/04n4x0209 College for Creative Studies'),
(31457, 'https://ror.org/04fexsb73', 'en', 1, 'https://ror.org/04fexsb73 Emmaus Bible College'),
(31458, 'https://ror.org/033jxn043', 'en', 1, 'https://ror.org/033jxn043 Washington State Department of Commerce'),
(31459, 'https://ror.org/04dnqhj72', 'en', 1, 'https://ror.org/04dnqhj72 Central Christian College of Kansas'),
(31460, 'https://ror.org/01gsckf69', 'en', 1, 'https://ror.org/01gsckf69 Central Christian College of the Bible'),
(31461, 'https://ror.org/05jthwf86', 'no_lang_code', 1, 'https://ror.org/05jthwf86 KWI Group (United States)'),
(31462, 'https://ror.org/04jhpx964', 'en', 1, 'https://ror.org/04jhpx964 Washington Employment Security Department'),
(31463, 'https://ror.org/01r494568', 'en', 1, 'https://ror.org/01r494568 Life Pacific College'),
(31464, 'https://ror.org/04kczqa55', 'en', 1, 'https://ror.org/04kczqa55 Central Penn College'),
(31465, 'https://ror.org/05npsjk50', 'en', 1, 'https://ror.org/05npsjk50 Limestone College'),
(31466, 'https://ror.org/04x12sm71', 'en', 1, 'https://ror.org/04x12sm71 Century University'),
(31467, 'https://ror.org/010bgev76', 'en', 1, 'https://ror.org/010bgev76 Florida College'),
(31468, 'https://ror.org/026hjc247', 'en', 1, 'https://ror.org/026hjc247 Florida Southern College Universidad de Florida del Sur'),
(31469, 'https://ror.org/04j8pdt93', 'en', 1, 'https://ror.org/04j8pdt93 Chadwick University'),
(31470, 'https://ror.org/04fves619', 'en', 1, 'https://ror.org/04fves619 Forest Institute'),
(31471, 'https://ror.org/03xj38z92', 'en', 1, 'https://ror.org/03xj38z92 Welch College'),
(31472, 'https://ror.org/01g790094', 'en', 1, 'https://ror.org/01g790094 American University for Humanities'),
(31473, 'https://ror.org/007hqhx04', 'en', 1, 'https://ror.org/007hqhx04 New Saint Andrews College'),
(31474, 'https://ror.org/02jy5yr69', 'en', 1, 'https://ror.org/02jy5yr69 Golden State Baptist College'),
(31475, 'https://ror.org/0226byw17', 'en', 1, 'https://ror.org/0226byw17 Charter Oak State College'),
(31476, 'https://ror.org/04hhyx074', 'en', 1, 'https://ror.org/04hhyx074 Goldey–Beacom College'),
(31477, 'https://ror.org/00z7yba83', 'en', 1, 'https://ror.org/00z7yba83 New York Academy of Art'),
(31478, 'https://ror.org/00bd4cb30', 'en', 1, 'https://ror.org/00bd4cb30 Appalachian School of Law'),
(31479, 'https://ror.org/03d3pnq21', 'en', 1, 'https://ror.org/03d3pnq21 Christendom College'),
(31480, 'https://ror.org/01pckwj65', 'en', 1, 'https://ror.org/01pckwj65 Escuela de Cine de Nueva York New York Film Academy'),
(31481, 'https://ror.org/007735r88', 'en', 1, 'https://ror.org/007735r88 Arlington Baptist College'),
(31482, 'https://ror.org/02qxp9a05', 'en', 1, 'https://ror.org/02qxp9a05 Granite State College'),
(31483, 'https://ror.org/00dds9q45', 'en', 1, 'https://ror.org/00dds9q45 Maine College of Art'),
(31484, 'https://ror.org/021jv3185', 'en', 1, 'https://ror.org/021jv3185 Globe Institute of Technology'),
(31485, 'https://ror.org/003rdc798', 'en', 1, 'https://ror.org/003rdc798 Baker College'),
(31486, 'https://ror.org/041db3c58', 'en', 1, 'https://ror.org/041db3c58 Greenleaf University'),
(31487, 'https://ror.org/02p4b3a61', 'en', 1, 'https://ror.org/02p4b3a61 Christian Bible College and Seminary'),
(31488, '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'),
(31489, 'https://ror.org/02nxjps75', 'en', 1, 'https://ror.org/02nxjps75 Summit University'),
(31490, 'https://ror.org/0498yg883', 'en', 1, 'https://ror.org/0498yg883 Gutenberg College'),
(31491, 'https://ror.org/040wesb37', 'en', 1, 'https://ror.org/040wesb37 Barclay College'),
(31492, 'https://ror.org/008a9hf75', 'en', 1, 'https://ror.org/008a9hf75 City University of Seattle'),
(31493, 'https://ror.org/00k71kh37', 'en', 1, 'https://ror.org/00k71kh37 Clark College'),
(31494, 'https://ror.org/029yy5f63', 'en', 1, 'https://ror.org/029yy5f63 Northwest College of Art & Design'),
(31495, 'https://ror.org/04e2ah412', 'en', 1, 'https://ror.org/04e2ah412 University of Atlanta'),
(31496, 'https://ror.org/00d27f502', 'en', 1, 'https://ror.org/00d27f502 McPherson College'),
(31497, 'https://ror.org/04gbjf340', 'en', 1, 'https://ror.org/04gbjf340 Nyack College'),
(31498, 'https://ror.org/01m7awg34', 'en', 1, 'https://ror.org/01m7awg34 Clayton College of Natural Health'),
(31499, 'https://ror.org/021j0xm63', 'en', 1, 'https://ror.org/021j0xm63 Medaille College'),
(31500, 'https://ror.org/0002yq607', 'en', 1, 'https://ror.org/0002yq607 Henry Cogswell College'),
(31501, 'https://ror.org/04h1em726', 'en', 1, 'https://ror.org/04h1em726 Mount Washington College'),
(31502, 'https://ror.org/05d23rn59', 'en', 1, 'https://ror.org/05d23rn59 Clear Creek Baptist Bible College'),
(31503, 'https://ror.org/03dhrm424', 'en', 1, 'https://ror.org/03dhrm424 Mercy College of Health Sciences'),
(31504, 'https://ror.org/04sdnwd65', 'en', 1, 'https://ror.org/04sdnwd65 Hesston College'),
(31505, 'https://ror.org/0499es143', 'en', 1, 'https://ror.org/0499es143 Olivet College'),
(31506, 'https://ror.org/00cmjga69', 'en', 1, 'https://ror.org/00cmjga69 Clearwater Christian College'),
(31507, 'https://ror.org/054t0wk73', 'en', 1, 'https://ror.org/054t0wk73 Hilbert College'),
(31508, 'https://ror.org/012saek46', 'en', 1, 'https://ror.org/012saek46 Metropolitan College of New York');
INSERT INTO `rors` VALUES
(31509, 'https://ror.org/03z2kds18', 'en', 1, 'https://ror.org/03z2kds18 Bethany Lutheran College'),
(31510, 'https://ror.org/05p275942', 'en', 1, 'https://ror.org/05p275942 Pacific College of Oriental Medicine'),
(31511, 'https://ror.org/03ct0rb34', 'en', 1, 'https://ror.org/03ct0rb34 Michigan Jewish Institute'),
(31512, 'https://ror.org/02zwjvm55', 'en', 1, 'https://ror.org/02zwjvm55 Blue Mountain College'),
(31513, 'https://ror.org/05grkcd68', 'en', 1, 'https://ror.org/05grkcd68 Cleveland Institute of Art'),
(31514, 'https://ror.org/04sr9vb86', 'en', 1, 'https://ror.org/04sr9vb86 Pacific Northwest College of Art'),
(31515, 'https://ror.org/03zkhjb46', 'en', 1, 'https://ror.org/03zkhjb46 Midwestern Baptist College'),
(31516, 'https://ror.org/01zf2fw60', 'en', 1, 'https://ror.org/01zf2fw60 Bluefield College'),
(31517, 'https://ror.org/02pj6m510', 'en', 1, 'https://ror.org/02pj6m510 Pacific Oaks College'),
(31518, 'https://ror.org/01my2ss20', 'en', 1, 'https://ror.org/01my2ss20 Hult International Business School'),
(31519, 'https://ror.org/053cbsa02', 'en', 1, 'https://ror.org/053cbsa02 Cleveland Institute of Music'),
(31520, 'https://ror.org/03f1xkz75', 'en', 1, 'https://ror.org/03f1xkz75 Bluefield State College'),
(31521, 'https://ror.org/01b72rt03', 'en', 1, 'https://ror.org/01b72rt03 Patrick Henry College'),
(31522, 'https://ror.org/0274e5q02', 'en', 1, 'https://ror.org/0274e5q02 Boston Conservatory Conservatoire de boston'),
(31523, 'https://ror.org/036yv4y78', 'en', 1, 'https://ror.org/036yv4y78 Cogswell Polytechnical College'),
(31524, 'https://ror.org/020ct4t61', 'en', 1, 'https://ror.org/020ct4t61 Pensacola Christian College'),
(31525, 'https://ror.org/01qqfah13', 'en', 1, 'https://ror.org/01qqfah13 Brewton-Parker College'),
(31526, 'https://ror.org/05xkm9j63', 'en', 1, 'https://ror.org/05xkm9j63 Institute for Christian Works'),
(31527, 'https://ror.org/007736j10', 'en', 1, 'https://ror.org/007736j10 Mitchell College'),
(31528, 'https://ror.org/01t04bt85', 'en', 1, 'https://ror.org/01t04bt85 Brooks Institute'),
(31529, 'https://ror.org/02sz42a76', 'en', 1, 'https://ror.org/02sz42a76 Monroe College'),
(31530, 'https://ror.org/031v6xt50', 'en', 1, 'https://ror.org/031v6xt50 Pine Manor College'),
(31531, 'https://ror.org/022xj6v07', 'en', 1, 'https://ror.org/022xj6v07 Monterey College of Law'),
(31532, 'https://ror.org/03gappd85', 'en', 1, 'https://ror.org/03gappd85 Mount Aloysius College'),
(31533, 'https://ror.org/0251djz27', 'en', 1, 'https://ror.org/0251djz27 Cabarrus College of Health Sciences'),
(31534, 'https://ror.org/03f516154', 'en', 1, 'https://ror.org/03f516154 Rasmussen College'),
(31535, 'https://ror.org/02t171j61', 'en', 1, 'https://ror.org/02t171j61 California Institute for Human Science'),
(31536, 'https://ror.org/00mpfdw74', 'en', 1, 'https://ror.org/00mpfdw74 Remington College'),
(31537, 'https://ror.org/02ngn2w22', 'en', 1, 'https://ror.org/02ngn2w22 Mt. Sierra College'),
(31538, 'https://ror.org/036qj5r13', 'en', 1, 'https://ror.org/036qj5r13 Cambridge College'),
(31539, 'https://ror.org/05q8ckj10', 'en', 1, 'https://ror.org/05q8ckj10 Nazarene Bible College'),
(31540, 'https://ror.org/010wj6161', 'en', 1, 'https://ror.org/010wj6161 Saint Anthony College of Nursing'),
(31541, 'https://ror.org/03af2bn79', 'en', 1, 'https://ror.org/03af2bn79 New Brunswick Theological Seminary'),
(31542, 'https://ror.org/05pmf3t53', 'en', 1, 'https://ror.org/05pmf3t53 New England Institute of Technology'),
(31543, 'https://ror.org/019mrv168', 'en', 1, 'https://ror.org/019mrv168 New England Law'),
(31544, 'https://ror.org/04ysmca02', 'en', 1, 'https://ror.org/04ysmca02 Irvine University'),
(31545, 'https://ror.org/01n673471', 'en', 1, 'https://ror.org/01n673471 Corcoran College of Art and Design'),
(31546, 'https://ror.org/0169by476', 'en', 1, 'https://ror.org/0169by476 St. Louis Christian College'),
(31547, 'https://ror.org/00zvm9z02', 'en', 1, 'https://ror.org/00zvm9z02 Tabor College'),
(31548, 'https://ror.org/01ja11s84', 'en', 1, 'https://ror.org/01ja11s84 School of the Museum of Fine Arts'),
(31549, 'https://ror.org/020t0kf33', 'en', 1, 'https://ror.org/020t0kf33 Cornish College of the Arts'),
(31550, 'https://ror.org/0437v2m88', 'en', 1, 'https://ror.org/0437v2m88 School of Visual Arts'),
(31551, 'https://ror.org/02vtff553', 'en', 1, 'https://ror.org/02vtff553 Texas Chiropractic College'),
(31552, 'https://ror.org/05txzf778', 'en', 1, 'https://ror.org/05txzf778 Jones College'),
(31553, 'https://ror.org/05tbkx115', 'en', 1, 'https://ror.org/05tbkx115 Kansas City Art Institute'),
(31554, 'https://ror.org/04725j767', 'en', 1, 'https://ror.org/04725j767 Shasta Bible College and Graduate School'),
(31555, 'https://ror.org/059617j81', 'en', 1, 'https://ror.org/059617j81 Crown College'),
(31556, 'https://ror.org/03b1dn215', 'en', 1, 'https://ror.org/03b1dn215 New York Institute of Art and Design'),
(31557, 'https://ror.org/011a33g95', 'en', 1, 'https://ror.org/011a33g95 Baptist College of Florida'),
(31558, 'https://ror.org/036qcm975', 'en', 1, 'https://ror.org/036qcm975 San Francisco Art Institute'),
(31559, 'https://ror.org/036adea75', 'en', 1, 'https://ror.org/036adea75 Sherman College of Chiropractic'),
(31560, 'https://ror.org/039fwv620', 'en', 1, 'https://ror.org/039fwv620 Sierra Nevada College'),
(31561, 'https://ror.org/01w466f66', 'en', 1, 'https://ror.org/01w466f66 Trinity College of Florida'),
(31562, 'https://ror.org/01qa8aw24', 'en', 1, 'https://ror.org/01qa8aw24 Smith Chapel Bible University'),
(31563, 'https://ror.org/01p7x7924', 'en', 1, 'https://ror.org/01p7x7924 San Joaquin College of Law'),
(31564, 'https://ror.org/04vnww336', 'en', 1, 'https://ror.org/04vnww336 College of Metaphysical Studies'),
(31565, 'https://ror.org/01y922f71', 'en', 1, 'https://ror.org/01y922f71 Academia de la Guardia Costera de Estados Unidos United States Coast Guard Academy'),
(31566, 'https://ror.org/04wgp8f82', 'en', 1, 'https://ror.org/04wgp8f82 South Texas College of Law'),
(31567, 'https://ror.org/03qn8x345', 'en', 1, 'https://ror.org/03qn8x345 SIT Graduate Institute'),
(31568, 'https://ror.org/001r6dj72', 'en', 1, 'https://ror.org/001r6dj72 Southeastern Bible College'),
(31569, 'https://ror.org/02dphc844', 'en', 1, 'https://ror.org/02dphc844 United States Sports Academy'),
(31570, 'https://ror.org/04fn4g645', 'en', 1, 'https://ror.org/04fn4g645 Master''s College'),
(31571, 'https://ror.org/03mdeq638', 'en', 1, 'https://ror.org/03mdeq638 University of Natural Medicine'),
(31572, 'https://ror.org/056544713', 'en', 1, 'https://ror.org/056544713 National Graduate School of Quality Management'),
(31573, 'https://ror.org/026fd2357', 'en', 1, 'https://ror.org/026fd2357 Southwest Bible College and Seminary'),
(31574, 'https://ror.org/0071xq104', 'no_lang_code', 1, 'https://ror.org/0071xq104 Advanced Biomass R&D Center (South Korea)'),
(31575, 'https://ror.org/01xmtac13', 'en', 1, 'https://ror.org/01xmtac13 Stefan University'),
(31576, 'https://ror.org/016bks835', 'en', 1, 'https://ror.org/016bks835 Spartanburg Methodist College'),
(31577, 'https://ror.org/05jbwz743', 'en', 1, 'https://ror.org/05jbwz743 Sarasota University'),
(31578, 'https://ror.org/02de0za51', 'en', 1, 'https://ror.org/02de0za51 Vanguard University'),
(31579, 'https://ror.org/01qpf3c64', 'en', 1, 'https://ror.org/01qpf3c64 Waldorf College'),
(31580, 'https://ror.org/03sjenh86', 'en', 1, 'https://ror.org/03sjenh86 Warner Pacific College'),
(31581, 'https://ror.org/00msnw430', 'en', 1, 'https://ror.org/00msnw430 Watkins College of Art Design and Film'),
(31582, 'https://ror.org/00z6yks89', 'en', 1, 'https://ror.org/00z6yks89 Thomas College'),
(31583, 'https://ror.org/00ed7qw32', 'en', 1, 'https://ror.org/00ed7qw32 Western Michigan University Cooley Law School'),
(31584, 'https://ror.org/032j0xp45', 'en', 1, 'https://ror.org/032j0xp45 Toccoa Falls College'),
(31585, 'https://ror.org/01yasd238', 'en', 1, 'https://ror.org/01yasd238 Trinity Baptist College'),
(31586, 'https://ror.org/02gv7j358', 'en', 1, 'https://ror.org/02gv7j358 Westminster Seminary California'),
(31587, 'https://ror.org/044ym4p17', 'en', 1, 'https://ror.org/044ym4p17 Climate and Energy Fund Klima und Energiefonds'),
(31588, 'https://ror.org/01qpebh25', 'en', 1, 'https://ror.org/01qpebh25 Central Armed Police Forces'),
(31589, 'https://ror.org/01ptpr676', 'en', 1, 'https://ror.org/01ptpr676 State Committee of Science Ō³Õ«ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ ÕÆÕøÕ“Õ«ÕæÕ„'),
(31590, 'https://ror.org/04b6jkz71', 'en', 1, 'https://ror.org/04b6jkz71 China Ocean Mineral Resource R&D Association'),
(31591, 'https://ror.org/05te6r535', 'en', 1, 'https://ror.org/05te6r535 New World School of the Arts'),
(31592, 'https://ror.org/05s1c4z27', 'en', 1, 'https://ror.org/05s1c4z27 Sichuan Provincial Department of Education'),
(31593, 'https://ror.org/02bnr9368', 'en', 1, 'https://ror.org/02bnr9368 Southern Technical College'),
(31594, 'https://ror.org/031nm5713', 'en', 1, 'https://ror.org/031nm5713 Chongqing Municipality Education Commission'),
(31595, 'https://ror.org/01arsa478', 'en', 1, 'https://ror.org/01arsa478 Stevens–Henager College'),
(31596, 'https://ror.org/01p30rj34', 'en', 1, 'https://ror.org/01p30rj34 Calcutta State Transport Corporation'),
(31597, 'https://ror.org/006j36p28', 'es', 1, 'https://ror.org/006j36p28 Comisión Interministerial de Ciencia y Tecnología'),
(31598, 'https://ror.org/05qedhe85', 'no_lang_code', 1, 'https://ror.org/05qedhe85 ITER China'),
(31599, 'https://ror.org/03bh94f16', 'en', 1, 'https://ror.org/03bh94f16 Centre of the Region HanĆ” for Biotechnical and Agricultural Research'),
(31600, 'https://ror.org/05gfwht30', 'en', 1, 'https://ror.org/05gfwht30 Civil Aviation Administration of China äø­å›½ę°‘ē”ØčˆŖē©ŗå±€'),
(31601, 'https://ror.org/03myqtf56', 'es', 1, 'https://ror.org/03myqtf56 Programa Iberoamericano de Ciencia y TecnologĆ­a para el Desarrollo'),
(31602, 'https://ror.org/04s346m05', 'en', 1, 'https://ror.org/04s346m05 Commission on Higher Education'),
(31603, 'https://ror.org/02te5rf52', 'pt', 1, 'https://ror.org/02te5rf52 Fundação de Amparo à Ciência e Tecnologia de Pernambuco'),
(31604, 'https://ror.org/050jqn596', 'en', 1, 'https://ror.org/050jqn596 South Bohemia research center of aquaculture and biodiversity of hydrocenoses'),
(31605, 'https://ror.org/0473khm44', 'pt', 1, 'https://ror.org/0473khm44 Fundação de Amparo à Pesquisa do Estado da Bahia'),
(31606, 'https://ror.org/01wzzs254', 'en', 1, 'https://ror.org/01wzzs254 Foreign Investment Review Board'),
(31607, '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'),
(31608, 'https://ror.org/016en1t86', 'en', 1, 'https://ror.org/016en1t86 Foundational Questions Institute'),
(31609, 'https://ror.org/0225asj53', 'en', 1, 'https://ror.org/0225asj53 Department of Health'),
(31610, 'https://ror.org/03y315f21', 'en', 1, 'https://ror.org/03y315f21 Government of Malaysia Kerajaan Persekutuan Malaysia'),
(31611, 'https://ror.org/030w99567', 'pt', 1, 'https://ror.org/030w99567 Financiadora de Estudos e Projetos Funding Authority for Studies and Projects'),
(31612, 'https://ror.org/02hchde94', 'en', 1, 'https://ror.org/02hchde94 Government of Russia ŠŸŃ€Š°Š²ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š¾ Российской ФеГерации'),
(31613, 'https://ror.org/00mq1v554', 'en', 1, 'https://ror.org/00mq1v554 Environment Research and Technology Development Fund'),
(31614, 'https://ror.org/050yqvv05', 'es', 1, 'https://ror.org/050yqvv05 Fondo Nacional de Ciencia Tecnología e Innovación'),
(31615, 'https://ror.org/051qp9k68', 'no_lang_code', 1, 'https://ror.org/051qp9k68 Texila American University'),
(31616, 'https://ror.org/05fm0gf36', 'en', 1, 'https://ror.org/05fm0gf36 Danish Working Environment Authority'),
(31617, 'https://ror.org/004bdz679', 'en', 1, 'https://ror.org/004bdz679 Ministry of Health'),
(31618, 'https://ror.org/036ymgf08', 'en', 1, 'https://ror.org/036ymgf08 Fuel Cells and Hydrogen'),
(31619, 'https://ror.org/00bame609', 'en', 1, 'https://ror.org/00bame609 Integrative Neuroscience Initiative on Alcoholism'),
(31620, 'https://ror.org/046n57345', 'en', 1, 'https://ror.org/046n57345 Hefei Institutes of Physical Science åˆč‚„ē‰©č“Øē§‘å­¦ē ”ē©¶é™¢'),
(31621, 'https://ror.org/0462e7n29', 'en', 1, 'https://ror.org/0462e7n29 Heilongjiang Postdoctoral Fund'),
(31622, 'https://ror.org/03aeyg892', 'en', 1, 'https://ror.org/03aeyg892 Japan Science Society'),
(31623, 'https://ror.org/02zq38y32', 'en', 1, 'https://ror.org/02zq38y32 Korea Institute of Energy Technology Evaluation and Planning'),
(31624, 'https://ror.org/02wdjff78', 'en', 1, 'https://ror.org/02wdjff78 State Studies Foundation'),
(31625, 'https://ror.org/04xrr3c79', 'en', 1, 'https://ror.org/04xrr3c79 Environmental Protection Department of Jiangsu Province'),
(31626, 'https://ror.org/04gq2fa58', 'en', 1, 'https://ror.org/04gq2fa58 Zhejiang Institute of Science and Technology Information'),
(31627, 'https://ror.org/035vmht26', 'en', 1, 'https://ror.org/035vmht26 China Association for Science and Technology'),
(31628, 'https://ror.org/0121dpf30', 'en', 1, 'https://ror.org/0121dpf30 Health Resources and Services Administration'),
(31629, 'https://ror.org/006ndaj41', 'en', 1, 'https://ror.org/006ndaj41 Planetary Data System'),
(31630, 'https://ror.org/00safct20', 'en', 1, 'https://ror.org/00safct20 National Pork Board'),
(31631, 'https://ror.org/04731xt44', 'en', 1, 'https://ror.org/04731xt44 National Space Biomedical Research Institute'),
(31632, 'https://ror.org/03cpyc314', 'en', 1, 'https://ror.org/03cpyc314 National Research Foundation'),
(31633, 'https://ror.org/00825gt63', 'pt', 1, 'https://ror.org/00825gt63 Quadro de Referência Estratégico Nacional'),
(31634, 'https://ror.org/027c2h907', 'es', 1, 'https://ror.org/027c2h907 Red de Investigación Cardiovascular'),
(31635, 'https://ror.org/016mfjj65', 'es', 1, 'https://ror.org/016mfjj65 Red TemÔtica de Investigación Cooperativa en CÔncer'),
(31636, 'https://ror.org/00e6nys21', 'en', 1, 'https://ror.org/00e6nys21 Government of Romania'),
(31637, 'https://ror.org/02q578v20', 'en', 1, 'https://ror.org/02q578v20 Oklahoma Center for the Advancement of Science and Technology'),
(31638, 'https://ror.org/03y2gwe85', 'en', 1, 'https://ror.org/03y2gwe85 Russian Science Foundation'),
(31639, 'https://ror.org/03ypap427', 'no_lang_code', 1, 'https://ror.org/03ypap427 Saudi Aramco (Saudi Arabia)'),
(31640, 'https://ror.org/050dp5763', 'en', 1, 'https://ror.org/050dp5763 Professional Staff Congress'),
(31641, 'https://ror.org/003cpqh10', 'en', 1, 'https://ror.org/003cpqh10 State Administration of Traditional Chinese Medicine of the People''s Republic of China å›½å®¶äø­åŒ»čÆē®”ē†å±€'),
(31642, 'https://ror.org/01j0cm669', 'en', 1, 'https://ror.org/01j0cm669 China Space Foundation'),
(31643, 'https://ror.org/03ckpzr37', 'en', 1, 'https://ror.org/03ckpzr37 State Key Joint Laboratory of Environment Simulation and Pollution Control'),
(31644, 'https://ror.org/05072yv34', 'sv', 1, 'https://ror.org/05072yv34 Barncancerfonden Swedish Childhood Cancer Foundation'),
(31645, 'https://ror.org/001rfde81', 'no_lang_code', 1, 'https://ror.org/001rfde81 Henan Tianguan Group (China)'),
(31646, 'https://ror.org/02nwht553', 'es', 1, 'https://ror.org/02nwht553 Red Espanola de Investigacion en Patologia Infecciosa'),
(31647, 'https://ror.org/02gmy7y33', 'en', 1, 'https://ror.org/02gmy7y33 Temasek Defence Systems Institute'),
(31648, 'https://ror.org/02q83sc19', 'de', 1, 'https://ror.org/02q83sc19 Wilhelm Sander Stiftung'),
(31649, 'https://ror.org/02edr8z79', 'en', 1, 'https://ror.org/02edr8z79 Thailand Graduate Institute of Science and Technology ą¹‚ąø„ąø£ąø‡ąøąø²ąø£ąø—ąøøąø™ąøŖąø–ąø²ąøšąø±ąø™ąøšąø±ąø“ąø‘ąø“ąø•ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œą¹ąø„ąø°ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹„ąø—ąø¢'),
(31650, 'https://ror.org/016s74507', 'en', 1, 'https://ror.org/016s74507 Wuhan Science and Technology Bureau'),
(31651, 'https://ror.org/04jpeqm39', 'no_lang_code', 1, 'https://ror.org/04jpeqm39 EsFem'),
(31652, 'https://ror.org/04jpp2r68', 'sk', 1, 'https://ror.org/04jpp2r68 Szenczi MolnƔr Albert Alapiskola'),
(31653, 'https://ror.org/02ymk8b69', 'en', 1, 'https://ror.org/02ymk8b69 Xi''an University of Science and Education Foundation'),
(31654, 'https://ror.org/036nq5137', 'en', 1, 'https://ror.org/036nq5137 Ministry of Education'),
(31655, 'https://ror.org/006cta510', 'no_lang_code', 1, 'https://ror.org/006cta510 CELIM'),
(31656, 'https://ror.org/02wbbzx11', 'en', 1, 'https://ror.org/02wbbzx11 New School for Jewish Studies'),
(31657, 'https://ror.org/02et2g954', 'sk', 1, 'https://ror.org/02et2g954 Centrum Voľného Casu'),
(31658, 'https://ror.org/05b5j3m40', 'en', 1, 'https://ror.org/05b5j3m40 Academic Ranking and Rating Agency'),
(31659, 'https://ror.org/04gkgzp76', 'sk', 1, 'https://ror.org/04gkgzp76 Centire'),
(31660, 'https://ror.org/048mg0d76', 'sk', 1, 'https://ror.org/048mg0d76 ÚstrednÔ VojenskÔ Nemocnica Ružomberok'),
(31661, 'https://ror.org/04bbzfz74', 'sk', 1, 'https://ror.org/04bbzfz74 Stredoslovenské múzeum'),
(31662, 'https://ror.org/00kh19327', 'no_lang_code', 1, 'https://ror.org/00kh19327 AEH (Slovakia)'),
(31663, 'https://ror.org/01g9kt839', 'en', 1, 'https://ror.org/01g9kt839 Estonian National Museum'),
(31664, 'https://ror.org/014zq2g68', 'no_lang_code', 1, 'https://ror.org/014zq2g68 Cestné stavby Žilina (Slovakia)'),
(31665, 'https://ror.org/02q79aa51', 'no_lang_code', 1, 'https://ror.org/02q79aa51 Chemosvit Fibrochem (Slovakia)'),
(31666, 'https://ror.org/01qqbx440', 'sk', 1, 'https://ror.org/01qqbx440 Roľnícke družstvo Moravany'),
(31667, 'https://ror.org/03r0qv641', 'en', 1, 'https://ror.org/03r0qv641 Slovak Public Health Association'),
(31668, 'https://ror.org/00fcfxd73', 'no_lang_code', 1, 'https://ror.org/00fcfxd73 Eurea'),
(31669, 'https://ror.org/01pey0n03', 'et', 1, 'https://ror.org/01pey0n03 VƤhiuuringute Tehnoloogia Arenduskeskus'),
(31670, 'https://ror.org/00y8dmj81', 'no_lang_code', 1, 'https://ror.org/00y8dmj81 ƚstav Radiačnej Ochrany (Slovakia)'),
(31671, 'https://ror.org/05fs2rz39', 'en', 1, 'https://ror.org/05fs2rz39 Zilina International Airport'),
(31672, 'https://ror.org/041dzw371', 'en', 1, 'https://ror.org/041dzw371 Eesti Keele Instituut Institute of the Estonian Language'),
(31673, 'https://ror.org/02bhsam28', 'no_lang_code', 1, 'https://ror.org/02bhsam28 Computer Control Technology (Slovakia)'),
(31674, 'https://ror.org/041q4rp74', 'no_lang_code', 1, 'https://ror.org/041q4rp74 Eurofins (Slovakia)'),
(31675, 'https://ror.org/031md1b10', 'en', 1, 'https://ror.org/031md1b10 Cord Blood Center'),
(31676, 'https://ror.org/04yznky14', 'no_lang_code', 1, 'https://ror.org/04yznky14 Intech (Slovakia)'),
(31677, 'https://ror.org/0111qwn65', 'sk', 1, 'https://ror.org/0111qwn65 European Legal Center Európske PrĆ”vne Centrum Občianske Združenie'),
(31678, 'https://ror.org/03wjh4t84', 'en', 1, 'https://ror.org/03wjh4t84 National Agricultural and Food Centre'),
(31679, 'https://ror.org/03hkwwc75', 'no_lang_code', 1, 'https://ror.org/03hkwwc75 IPM Engineering (Slovakia)'),
(31680, 'https://ror.org/02vrn1720', 'sk', 1, 'https://ror.org/02vrn1720 Výskumný Ústav Mliekarenský'),
(31681, 'https://ror.org/01hb8gc46', 'no_lang_code', 1, 'https://ror.org/01hb8gc46 Danubia NanoTech (Slovakia)'),
(31682, 'https://ror.org/04a579b24', 'no_lang_code', 1, 'https://ror.org/04a579b24 Alpha Medical (Slovakia)'),
(31683, 'https://ror.org/05943ep32', 'no_lang_code', 1, 'https://ror.org/05943ep32 Anasoft (Slovakia)'),
(31684, 'https://ror.org/033f0gp46', 'no_lang_code', 1, 'https://ror.org/033f0gp46 Datalan (Slovakia)'),
(31685, 'https://ror.org/04vxrmy57', 'no_lang_code', 1, 'https://ror.org/04vxrmy57 Kushing (Slovakia)'),
(31686, 'https://ror.org/03q5bhc14', 'sk', 1, 'https://ror.org/03q5bhc14 GymnĆ”zium Andreja SlĆ”dkoviča'),
(31687, 'https://ror.org/03xhps368', 'no_lang_code', 1, 'https://ror.org/03xhps368 DB Biotech (Slovakia)'),
(31688, 'https://ror.org/027yna928', 'no_lang_code', 1, 'https://ror.org/027yna928 Natures (Slovakia)'),
(31689, 'https://ror.org/01bshdg19', 'no_lang_code', 1, 'https://ror.org/01bshdg19 Vinci (Slovakia)'),
(31690, 'https://ror.org/01eqzew76', 'no_lang_code', 1, 'https://ror.org/01eqzew76 Antik Telecom (Slovakia)'),
(31691, 'https://ror.org/01z2za656', 'no_lang_code', 1, 'https://ror.org/01z2za656 Dekonta (Slovakia)'),
(31692, 'https://ror.org/04tqkwm17', 'no_lang_code', 1, 'https://ror.org/04tqkwm17 APIS (Slovakia)'),
(31693, 'https://ror.org/0329q1430', 'en', 1, 'https://ror.org/0329q1430 Estonian Association for Applied Linguistics'),
(31694, 'https://ror.org/01kw00110', 'no_lang_code', 1, 'https://ror.org/01kw00110 Applied Precision (Slovakia)'),
(31695, 'https://ror.org/04fzzvb87', 'sk', 1, 'https://ror.org/04fzzvb87 Aqua Vita - ŽivÔ voda'),
(31696, 'https://ror.org/012fc2585', 'no_lang_code', 1, 'https://ror.org/012fc2585 Development Services Security Innovations (Slovakia)'),
(31697, 'https://ror.org/010hd8e46', 'no_lang_code', 1, 'https://ror.org/010hd8e46 Areta (Slovakia)'),
(31698, 'https://ror.org/02d794w74', 'no_lang_code', 1, 'https://ror.org/02d794w74 Duslo (Slovakia)'),
(31699, 'https://ror.org/00bx7wr94', 'sk', 1, 'https://ror.org/00bx7wr94 ZÔkladnÔ umeleckÔ Ŕkola Jozefa Rosinského'),
(31700, 'https://ror.org/04b6d3182', 'no_lang_code', 1, 'https://ror.org/04b6d3182 Western Slovakian Energy Corporation ZƔpadoslovenskƔ Energetika (Slovakia)'),
(31701, 'https://ror.org/00r95sc10', 'no_lang_code', 1, 'https://ror.org/00r95sc10 Fires (Slovakia)'),
(31702, 'https://ror.org/019ys4329', 'en', 1, 'https://ror.org/019ys4329 Observatory and Planetarium of Maximilian Hell'),
(31703, 'https://ror.org/01x91c597', 'en', 1, 'https://ror.org/01x91c597 Association for Youth, Science and Technology'),
(31704, 'https://ror.org/00wpg5z42', 'en', 1, 'https://ror.org/00wpg5z42 East Tallinn Central Hospital'),
(31705, 'https://ror.org/02vzkf466', 'en', 1, 'https://ror.org/02vzkf466 Judicial Academy of the Slovak Republic'),
(31706, 'https://ror.org/045aka220', 'no_lang_code', 1, 'https://ror.org/045aka220 Ecoland (Slovakia)'),
(31707, 'https://ror.org/04btpac66', 'no_lang_code', 1, 'https://ror.org/04btpac66 KWD (Slovakia)'),
(31708, 'https://ror.org/02h0mx958', 'no_lang_code', 1, 'https://ror.org/02h0mx958 Education Training & Consulting Company (Slovakia)'),
(31709, 'https://ror.org/04szzqs55', 'sk', 1, 'https://ror.org/04szzqs55 FakultnÔ nemocnica s poliklinikou Žilina'),
(31710, 'https://ror.org/010gk9n67', 'no_lang_code', 1, 'https://ror.org/010gk9n67 Avantek (Slovakia)'),
(31711, 'https://ror.org/0511ejf03', 'no_lang_code', 1, 'https://ror.org/0511ejf03 OMS Lighting (Slovakia)'),
(31712, 'https://ror.org/01nf1vh59', 'en', 1, 'https://ror.org/01nf1vh59 EDUCON'),
(31713, 'https://ror.org/04x0cn975', 'no_lang_code', 1, 'https://ror.org/04x0cn975 Axxence (Slovakia)'),
(31714, 'https://ror.org/03e2zdg56', 'no_lang_code', 1, 'https://ror.org/03e2zdg56 Elcom (Slovakia)'),
(31715, 'https://ror.org/04ps3wn70', 'no_lang_code', 1, 'https://ror.org/04ps3wn70 Op -Tim (Slovakia)'),
(31716, 'https://ror.org/00w3ghh40', 'en', 1, 'https://ror.org/00w3ghh40 Central European House of Photography'),
(31717, 'https://ror.org/03br03g05', 'no_lang_code', 1, 'https://ror.org/03br03g05 Bakomi'),
(31718, 'https://ror.org/01fpe8896', 'no_lang_code', 1, 'https://ror.org/01fpe8896 P-mat'),
(31719, 'https://ror.org/04wqpp325', 'no_lang_code', 1, 'https://ror.org/04wqpp325 Betamont (Slovakia)'),
(31720, 'https://ror.org/04r2pjg84', 'sk', 1, 'https://ror.org/04r2pjg84 Forests of the Slovak Republic Lesy Slovenskej Republiky'),
(31721, 'https://ror.org/02mv2m613', 'no_lang_code', 1, 'https://ror.org/02mv2m613 Elektrokarbon (Slovakia)'),
(31722, 'https://ror.org/02z4q1r45', 'en', 1, 'https://ror.org/02z4q1r45 PƤrnu Museum'),
(31723, 'https://ror.org/02yg6th19', 'no_lang_code', 1, 'https://ror.org/02yg6th19 Elteco (Slovakia)'),
(31724, 'https://ror.org/049e28v28', 'da', 1, 'https://ror.org/049e28v28 National Science Ethics Committee Nationale Videnskabsetiske KomitƩ'),
(31725, 'https://ror.org/04vba8s95', 'no_lang_code', 1, 'https://ror.org/04vba8s95 International BEZ Group (Slovakia)'),
(31726, 'https://ror.org/03vasz419', 'no_lang_code', 1, 'https://ror.org/03vasz419 KM System (Slovakia)'),
(31727, 'https://ror.org/02xdb6745', 'et', 1, 'https://ror.org/02xdb6745 Emakeele Selts'),
(31728, 'https://ror.org/041g2v089', 'no_lang_code', 1, 'https://ror.org/041g2v089 Ekospol (Slovakia)'),
(31729, 'https://ror.org/02evahm41', 'en', 1, 'https://ror.org/02evahm41 Biomasa Association'),
(31730, 'https://ror.org/02s7h1n35', 'no_lang_code', 1, 'https://ror.org/02s7h1n35 Emel (Slovakia)'),
(31731, 'https://ror.org/015vz5m81', 'no_lang_code', 1, 'https://ror.org/015vz5m81 Konstrukta - Industry (Slovakia)'),
(31732, 'https://ror.org/00q9zmg67', 'no_lang_code', 1, 'https://ror.org/00q9zmg67 Envirocare (Slovakia)'),
(31733, 'https://ror.org/03zwpmf03', 'no_lang_code', 1, 'https://ror.org/03zwpmf03 Biont (Slovakia)'),
(31734, 'https://ror.org/035z4sk50', 'no_lang_code', 1, 'https://ror.org/035z4sk50 Perfekt (Slovakia)'),
(31735, 'https://ror.org/04ezkb708', 'no_lang_code', 1, 'https://ror.org/04ezkb708 Biorealis (Slovakia)'),
(31736, 'https://ror.org/02tggj648', 'no_lang_code', 1, 'https://ror.org/02tggj648 KraussMaffei (Slovakia)'),
(31737, 'https://ror.org/05xv7s149', 'no_lang_code', 1, 'https://ror.org/05xv7s149 Bioscience (Slovakia)'),
(31738, 'https://ror.org/03xjasx48', 'no_lang_code', 1, 'https://ror.org/03xjasx48 Semikron (Slovakia)'),
(31739, 'https://ror.org/051sz9w49', 'no_lang_code', 1, 'https://ror.org/051sz9w49 G-trend (Slovakia)'),
(31740, 'https://ror.org/05yj6x102', 'no_lang_code', 1, 'https://ror.org/05yj6x102 Biotika (Slovakia)'),
(31741, 'https://ror.org/05h7a4r64', 'no_lang_code', 1, 'https://ror.org/05h7a4r64 Phostec (Slovakia)'),
(31742, 'https://ror.org/0085gp855', 'no_lang_code', 1, 'https://ror.org/0085gp855 SEZ Krompachy (Slovakia)'),
(31743, 'https://ror.org/030sqdt03', 'no_lang_code', 1, 'https://ror.org/030sqdt03 BPM Consulting (Slovakia)'),
(31744, 'https://ror.org/010bx4f33', 'no_lang_code', 1, 'https://ror.org/010bx4f33 KRD Molecular Technologies (Slovakia)'),
(31745, 'https://ror.org/04bxtw313', 'no_lang_code', 1, 'https://ror.org/04bxtw313 SfƩra (Slovakia)'),
(31746, 'https://ror.org/02ch6zk08', 'en', 1, 'https://ror.org/02ch6zk08 Plant Production Research Institute'),
(31747, 'https://ror.org/00px7ap78', 'en', 1, 'https://ror.org/00px7ap78 Building Testing and Research Institute'),
(31748, 'https://ror.org/03x0p3p41', 'no_lang_code', 1, 'https://ror.org/03x0p3p41 GA Drilling (Slovakia)'),
(31749, 'https://ror.org/02gfyfp86', 'no_lang_code', 1, 'https://ror.org/02gfyfp86 Calendula (Slovakia)'),
(31750, 'https://ror.org/00etg9b89', 'sk', 1, 'https://ror.org/00etg9b89 SlovenskÔ LegÔlna Metrológia'),
(31751, 'https://ror.org/05ry92539', 'no_lang_code', 1, 'https://ror.org/05ry92539 Powertec (Slovakia)'),
(31752, 'https://ror.org/00jkz6g04', 'sk', 1, 'https://ror.org/00jkz6g04 GymnÔzium Ľudovíta Štúra'),
(31753, 'https://ror.org/03v559f24', 'no_lang_code', 1, 'https://ror.org/03v559f24 PPS Group (Slovakia)'),
(31754, 'https://ror.org/051nezy81', 'no_lang_code', 1, 'https://ror.org/051nezy81 Geneton (Slovakia)'),
(31755, 'https://ror.org/037xt7q95', 'no_lang_code', 1, 'https://ror.org/037xt7q95 CEIT Consulting (Slovakia)'),
(31756, 'https://ror.org/02qx2bv92', 'no_lang_code', 1, 'https://ror.org/02qx2bv92 Geoexperts (Slovakia)'),
(31757, 'https://ror.org/04r7x1v43', 'no_lang_code', 1, 'https://ror.org/04r7x1v43 MAT-Obaly (Slovakia)'),
(31758, 'https://ror.org/04rad3358', 'no_lang_code', 1, 'https://ror.org/04rad3358 Prefa Alfa (Slovakia)'),
(31759, 'https://ror.org/03acd6h82', 'no_lang_code', 1, 'https://ror.org/03acd6h82 GeoModel Solar (Slovakia)'),
(31760, 'https://ror.org/03fhmzh26', 'no_lang_code', 1, 'https://ror.org/03fhmzh26 Mate (Slovakia)'),
(31761, 'https://ror.org/03f4vz666', 'no_lang_code', 1, 'https://ror.org/03f4vz666 Vusapl (Slovakia)'),
(31762, 'https://ror.org/01cvt5v65', 'no_lang_code', 1, 'https://ror.org/01cvt5v65 MBM Group (Slovakia)'),
(31763, 'https://ror.org/04v9rq331', 'no_lang_code', 1, 'https://ror.org/04v9rq331 ProcesnƔ AutomatizƔcia (Slovakia)'),
(31764, 'https://ror.org/0158pg778', 'no_lang_code', 1, 'https://ror.org/0158pg778 SPINEA (Slovakia)'),
(31765, 'https://ror.org/0041dx816', 'no_lang_code', 1, 'https://ror.org/0041dx816 Vutch-Chemitex (Slovakia)'),
(31766, 'https://ror.org/05vmgsb62', 'no_lang_code', 1, 'https://ror.org/05vmgsb62 Procont (Slovakia)'),
(31767, 'https://ror.org/04h893p85', 'no_lang_code', 1, 'https://ror.org/04h893p85 Protobios (Estonia)'),
(31768, 'https://ror.org/029zfr186', 'no_lang_code', 1, 'https://ror.org/029zfr186 Synkola (Slovakia)'),
(31769, 'https://ror.org/039fe9y64', 'no_lang_code', 1, 'https://ror.org/039fe9y64 Qintec (Slovakia)'),
(31770, 'https://ror.org/05tk49h93', 'no_lang_code', 1, 'https://ror.org/05tk49h93 Girochem (Slovakia)'),
(31771, 'https://ror.org/05rezmm46', 'en', 1, 'https://ror.org/05rezmm46 Software Technology and Applications Competence Center'),
(31772, 'https://ror.org/02techz27', 'no_lang_code', 1, 'https://ror.org/02techz27 T-Industry (Slovakia)'),
(31773, 'https://ror.org/02rkyk519', 'no_lang_code', 1, 'https://ror.org/02rkyk519 ME-Inspection SK (Slovakia)'),
(31774, 'https://ror.org/01pw8kd98', 'no_lang_code', 1, 'https://ror.org/01pw8kd98 Vyvoj Martin (Slovakia)'),
(31775, 'https://ror.org/04w7knf95', 'no_lang_code', 1, 'https://ror.org/04w7knf95 Mechanical Design (Slovakia)'),
(31776, 'https://ror.org/047kbmp67', 'no_lang_code', 1, 'https://ror.org/047kbmp67 Global Services (Slovakia)'),
(31777, 'https://ror.org/015a8e339', 'no_lang_code', 1, 'https://ror.org/015a8e339 GoldenSUN (Slovakia)'),
(31778, 'https://ror.org/00zffwe40', 'no_lang_code', 1, 'https://ror.org/00zffwe40 Xcell (Slovakia)'),
(31779, 'https://ror.org/04r7gz902', 'no_lang_code', 1, 'https://ror.org/04r7gz902 Metrodat (Slovakia)'),
(31780, 'https://ror.org/00gwb6z35', 'no_lang_code', 1, 'https://ror.org/00gwb6z35 Railway Repair and Engineering Works (Slovakia)'),
(31781, 'https://ror.org/05jgd9317', 'no_lang_code', 1, 'https://ror.org/05jgd9317 Gratex International (Slovakia)'),
(31782, 'https://ror.org/01crvvh84', 'no_lang_code', 1, 'https://ror.org/01crvvh84 MicroStep (Slovakia)'),
(31783, 'https://ror.org/03e0d1j33', 'en', 1, 'https://ror.org/03e0d1j33 Raptor Protection of Slovakia'),
(31784, 'https://ror.org/04y300229', 'no_lang_code', 1, 'https://ror.org/04y300229 MicroStep-MIS (Slovakia)'),
(31785, 'https://ror.org/01h6vn910', 'no_lang_code', 1, 'https://ror.org/01h6vn910 GTVT (Slovakia)'),
(31786, 'https://ror.org/03vek6g79', 'en', 1, 'https://ror.org/03vek6g79 Tartu Emajoe School'),
(31787, 'https://ror.org/03m6exj18', 'no_lang_code', 1, 'https://ror.org/03m6exj18 Msm Group (Slovakia)'),
(31788, 'https://ror.org/00348tk97', 'no_lang_code', 1, 'https://ror.org/00348tk97 Relko (Slovakia)'),
(31789, 'https://ror.org/02p6p6z73', 'no_lang_code', 1, 'https://ror.org/02p6p6z73 Mikon (Slovakia)'),
(31790, 'https://ror.org/02erd4b86', 'no_lang_code', 1, 'https://ror.org/02erd4b86 Engineering and Software System Solutions (United States)'),
(31791, 'https://ror.org/01bj7zb33', 'no_lang_code', 1, 'https://ror.org/01bj7zb33 Monogram Technologies (Slovakia)'),
(31792, 'https://ror.org/05qzy6511', 'no_lang_code', 1, 'https://ror.org/05qzy6511 Research Institute for Man Made Fibres (Slovakia)'),
(31793, 'https://ror.org/01c6mdq20', 'no_lang_code', 1, 'https://ror.org/01c6mdq20 21CSi (United States)'),
(31794, 'https://ror.org/01ew97b74', 'no_lang_code', 1, 'https://ror.org/01ew97b74 Optifin Invest (Slovakia)'),
(31795, 'https://ror.org/043pya965', 'en', 1, 'https://ror.org/043pya965 Research Institute of Agricultural and Food Economics'),
(31796, 'https://ror.org/05v6k5v13', 'no_lang_code', 1, 'https://ror.org/05v6k5v13 Hanil E-Hwa (Slovakia)'),
(31797, 'https://ror.org/03ydemh16', 'no_lang_code', 1, 'https://ror.org/03ydemh16 Tau - Chem (Slovakia)'),
(31798, 'https://ror.org/024s1p860', 'no_lang_code', 1, 'https://ror.org/024s1p860 NanoDesign (Slovakia)'),
(31799, 'https://ror.org/00fe3kx30', 'no_lang_code', 1, 'https://ror.org/00fe3kx30 Rmc (Slovakia)'),
(31800, 'https://ror.org/00g0v7f54', 'no_lang_code', 1, 'https://ror.org/00g0v7f54 Tekmar (Slovakia)'),
(31801, 'https://ror.org/04e5kcp15', 'no_lang_code', 1, 'https://ror.org/04e5kcp15 RONA (Slovakia)'),
(31802, 'https://ror.org/0388c8g69', 'no_lang_code', 1, 'https://ror.org/0388c8g69 Thalion (Slovakia)'),
(31803, 'https://ror.org/00yhave05', 'en', 1, 'https://ror.org/00yhave05 Estonian History Museum'),
(31804, 'https://ror.org/03wpn6023', 'no_lang_code', 1, 'https://ror.org/03wpn6023 SAE - Automation (Slovakia)'),
(31805, 'https://ror.org/00ckp1t80', 'no_lang_code', 1, 'https://ror.org/00ckp1t80 F. A. Hayek Foundation'),
(31806, 'https://ror.org/00mq90977', 'no_lang_code', 1, 'https://ror.org/00mq90977 Hordeum (Slovakia)'),
(31807, 'https://ror.org/010eh3243', 'no_lang_code', 1, 'https://ror.org/010eh3243 Acentech (United States)'),
(31808, 'https://ror.org/03wnkex20', 'no_lang_code', 1, 'https://ror.org/03wnkex20 Safetronics (Slovakia)'),
(31809, 'https://ror.org/04j808v60', 'en', 1, 'https://ror.org/04j808v60 Research Institute of Posts and Telecommunications'),
(31810, 'https://ror.org/0038pvp74', 'no_lang_code', 1, 'https://ror.org/0038pvp74 Acoustic Ideas (United States)'),
(31811, 'https://ror.org/022cgsm35', 'no_lang_code', 1, 'https://ror.org/022cgsm35 Imuna Pharm (Slovakia)'),
(31812, 'https://ror.org/004ktdh03', 'no_lang_code', 1, 'https://ror.org/004ktdh03 Acree Technologies (United States)'),
(31813, 'https://ror.org/017n5tt56', 'no_lang_code', 1, 'https://ror.org/017n5tt56 Tilde (Estonia)'),
(31814, 'https://ror.org/01xbk7a82', 'no_lang_code', 1, 'https://ror.org/01xbk7a82 ACTA (United States)'),
(31815, 'https://ror.org/01h06db67', 'en', 1, 'https://ror.org/01h06db67 Institute of Informatics and Statistics InŔtitút informatiky a Ŕtatistiky'),
(31816, 'https://ror.org/02r1sb446', 'no_lang_code', 1, 'https://ror.org/02r1sb446 Scientica (Slovakia)'),
(31817, 'https://ror.org/02c9zcr51', 'no_lang_code', 1, 'https://ror.org/02c9zcr51 Advanced Cerametrics (United States)'),
(31818, 'https://ror.org/01zf6g661', 'no_lang_code', 1, 'https://ror.org/01zf6g661 Advanced Coherent Technologies (United States)'),
(31819, 'https://ror.org/010p50m34', 'en', 1, 'https://ror.org/010p50m34 Bernstein Center for Computational Neuroscience Freiburg'),
(31820, 'https://ror.org/01qq34m02', 'en', 1, 'https://ror.org/01qq34m02 Bernstein Center for Computational Neuroscience Heidelberg-Mannheim'),
(31821, 'https://ror.org/04bz45c46', 'en', 1, 'https://ror.org/04bz45c46 Bernstein Center for Computational Neuroscience Munich'),
(31822, 'https://ror.org/03kfnwp54', 'en', 1, 'https://ror.org/03kfnwp54 Bernstein Center for Computational Neuroscience Tübingen'),
(31823, 'https://ror.org/04jp8cn27', 'no_lang_code', 1, 'https://ror.org/04jp8cn27 Advanced Rotorcraft Technology (United States)'),
(31824, 'https://ror.org/0325zgw13', 'no_lang_code', 1, 'https://ror.org/0325zgw13 Transmisie Engineering (Slovakia)'),
(31825, 'https://ror.org/02r0y3932', 'sk', 1, 'https://ror.org/02r0y3932 Vyskumny Ústav Dopravny'),
(31826, 'https://ror.org/01k7rsf15', 'no_lang_code', 1, 'https://ror.org/01k7rsf15 Adsantec (United States)'),
(31827, 'https://ror.org/00gtpjy03', 'no_lang_code', 1, 'https://ror.org/00gtpjy03 ASML (United States)'),
(31828, 'https://ror.org/05506vc27', 'no_lang_code', 1, 'https://ror.org/05506vc27 Ultrazvuk (Slovakia)'),
(31829, 'https://ror.org/05jxbth48', 'no_lang_code', 1, 'https://ror.org/05jxbth48 General Kinetics (United States)'),
(31830, 'https://ror.org/04nsrjg86', 'et', 1, 'https://ror.org/04nsrjg86 Under and Tuglas Literature Centre Underi ja Tuglase Kirjanduskeskus'),
(31831, 'https://ror.org/00t9kp067', 'no_lang_code', 1, 'https://ror.org/00t9kp067 Acuity Technologies (United States)'),
(31832, 'https://ror.org/05ydj2y02', 'no_lang_code', 1, 'https://ror.org/05ydj2y02 Advanced Systems & Technologies (United States)'),
(31833, 'https://ror.org/025qfq989', 'no_lang_code', 1, 'https://ror.org/025qfq989 Villa Pro (Slovakia)'),
(31834, 'https://ror.org/04y4tfw76', 'no_lang_code', 1, 'https://ror.org/04y4tfw76 Advanced Communication Systems (United States)'),
(31835, 'https://ror.org/058tbj885', 'no_lang_code', 1, 'https://ror.org/058tbj885 Vipo (Slovakia)'),
(31836, 'https://ror.org/0359sgh16', 'no_lang_code', 1, 'https://ror.org/0359sgh16 Advanced Technologies Group (United States)'),
(31837, 'https://ror.org/00a65gg79', 'no_lang_code', 1, 'https://ror.org/00a65gg79 Advanced Conductor Technologies (United States)'),
(31838, 'https://ror.org/00e3mqz93', 'en', 1, 'https://ror.org/00e3mqz93 VƵro Institute'),
(31839, 'https://ror.org/017pbda46', 'en', 1, 'https://ror.org/017pbda46 Slovak Youth Institute'),
(31840, 'https://ror.org/05sqz7r04', 'no_lang_code', 1, 'https://ror.org/05sqz7r04 Vucht (Slovakia)'),
(31841, 'https://ror.org/01q7y9w80', 'no_lang_code', 1, 'https://ror.org/01q7y9w80 VĆŗez (Slovakia)'),
(31842, 'https://ror.org/0154hk987', 'no_lang_code', 1, 'https://ror.org/0154hk987 Entegris (United States)'),
(31843, 'https://ror.org/0075y4q70', 'en', 1, 'https://ror.org/0075y4q70 361 Interactive'),
(31844, 'https://ror.org/04ra7gd43', 'no_lang_code', 1, 'https://ror.org/04ra7gd43 3TEX (United States)'),
(31845, 'https://ror.org/007kwc354', 'no_lang_code', 1, 'https://ror.org/007kwc354 VUIS - CESTY (Slovakia)'),
(31846, 'https://ror.org/03897n412', 'no_lang_code', 1, 'https://ror.org/03897n412 5-D Systems (United States)'),
(31847, 'https://ror.org/00v996f56', 'no_lang_code', 1, 'https://ror.org/00v996f56 Vuki (Slovakia)'),
(31848, 'https://ror.org/03z0m1393', 'no_lang_code', 1, 'https://ror.org/03z0m1393 Advanced Device Technology (United States)'),
(31849, 'https://ror.org/016svkp29', 'no_lang_code', 1, 'https://ror.org/016svkp29 Norsk Hydro (Slovakia)'),
(31850, 'https://ror.org/05bmnx256', 'no_lang_code', 1, 'https://ror.org/05bmnx256 VUP (Slovakia)'),
(31851, 'https://ror.org/05ds25z56', 'no_lang_code', 1, 'https://ror.org/05ds25z56 Presagis (United States)'),
(31852, 'https://ror.org/013h40e84', 'no_lang_code', 1, 'https://ror.org/013h40e84 Myers Power Products (United States)'),
(31853, 'https://ror.org/04yehrw46', 'no_lang_code', 1, 'https://ror.org/04yehrw46 Adaptive Dynamics (United States)'),
(31854, 'https://ror.org/00v7tvz77', 'no_lang_code', 1, 'https://ror.org/00v7tvz77 VÚRUP (Slovakia)'),
(31855, 'https://ror.org/01cswdc74', 'no_lang_code', 1, 'https://ror.org/01cswdc74 AEgis Technologies (United States)'),
(31856, 'https://ror.org/02543xy77', 'no_lang_code', 1, 'https://ror.org/02543xy77 Abaris Training (United States)'),
(31857, 'https://ror.org/04ys2fq69', 'no_lang_code', 1, 'https://ror.org/04ys2fq69 Aegis Technology (United States)'),
(31858, 'https://ror.org/00xfzhw50', 'no_lang_code', 1, 'https://ror.org/00xfzhw50 Abeam Technologies (United States)'),
(31859, 'https://ror.org/04w0bwe53', 'no_lang_code', 1, 'https://ror.org/04w0bwe53 AIL Research (United States)'),
(31860, 'https://ror.org/03kh18j96', 'no_lang_code', 1, 'https://ror.org/03kh18j96 Advanced Dynamics (United States)'),
(31861, 'https://ror.org/03mw3xk75', 'no_lang_code', 1, 'https://ror.org/03mw3xk75 Adaptive Methods (United States)'),
(31862, 'https://ror.org/05sndhx91', 'no_lang_code', 1, 'https://ror.org/05sndhx91 Air Turbine Technology (United States)'),
(31863, 'https://ror.org/04r5mx435', 'no_lang_code', 1, 'https://ror.org/04r5mx435 Airex (United States)'),
(31864, 'https://ror.org/05wr1pv20', 'no_lang_code', 1, 'https://ror.org/05wr1pv20 Advanced Energy Systems (United States)'),
(31865, 'https://ror.org/004tts638', 'no_lang_code', 1, 'https://ror.org/004tts638 Aegisound (United States)'),
(31866, 'https://ror.org/00j64zh12', 'no_lang_code', 1, 'https://ror.org/00j64zh12 Advanced Engines Development (United States)'),
(31867, 'https://ror.org/03e970380', 'no_lang_code', 1, 'https://ror.org/03e970380 Akela (United States)'),
(31868, 'https://ror.org/040qg6n73', 'no_lang_code', 1, 'https://ror.org/040qg6n73 Acadia Cyber Solutions (United States)'),
(31869, 'https://ror.org/021p1en02', 'no_lang_code', 1, 'https://ror.org/021p1en02 Automated Dynamics (United States)'),
(31870, 'https://ror.org/00c7wdg54', 'en', 1, 'https://ror.org/00c7wdg54 International Centre for Applied Research and Sustainable Technology'),
(31871, 'https://ror.org/0392s7a63', 'no_lang_code', 1, 'https://ror.org/0392s7a63 Accelogic (United States)'),
(31872, 'https://ror.org/00eb4p978', 'no_lang_code', 1, 'https://ror.org/00eb4p978 Adiabatics (United States)'),
(31873, 'https://ror.org/02wzw7340', 'no_lang_code', 1, 'https://ror.org/02wzw7340 Advanced Infoneering (United States)'),
(31874, 'https://ror.org/02gjczz49', 'no_lang_code', 1, 'https://ror.org/02gjczz49 Adlyfe (United States)'),
(31875, 'https://ror.org/01pw4qf65', 'no_lang_code', 1, 'https://ror.org/01pw4qf65 Accipiter Systems (United States)'),
(31876, 'https://ror.org/02ny7hp72', 'no_lang_code', 1, 'https://ror.org/02ny7hp72 Adsys Controls (United States)'),
(31877, 'https://ror.org/04v77td31', 'no_lang_code', 1, 'https://ror.org/04v77td31 AdTech Systems Research (United States)'),
(31878, 'https://ror.org/00dmrtz93', 'no_lang_code', 1, 'https://ror.org/00dmrtz93 AdValue Photonics (United States)'),
(31879, 'https://ror.org/00j5x7m46', 'no_lang_code', 1, 'https://ror.org/00j5x7m46 Maga (Slovakia)'),
(31880, 'https://ror.org/00f3bt271', 'no_lang_code', 1, 'https://ror.org/00f3bt271 Alameda Applied Sciences Corporation (United States)'),
(31881, 'https://ror.org/01nt9tz90', 'no_lang_code', 1, 'https://ror.org/01nt9tz90 Accurate Automation (United States)'),
(31882, 'https://ror.org/02rwvh228', 'no_lang_code', 1, 'https://ror.org/02rwvh228 Advanced Optical Systems (United States)'),
(31883, 'https://ror.org/025qyhe63', 'no_lang_code', 1, 'https://ror.org/025qyhe63 Advanced Powder Solutions (United States)'),
(31884, 'https://ror.org/009kb1442', 'no_lang_code', 1, 'https://ror.org/009kb1442 Radyne (United States)'),
(31885, 'https://ror.org/051pks088', 'no_lang_code', 1, 'https://ror.org/051pks088 Alelo (United States)'),
(31886, 'https://ror.org/050yq5k07', 'no_lang_code', 1, 'https://ror.org/050yq5k07 Aerobotix (United States)'),
(31887, 'https://ror.org/0114dtv81', 'no_lang_code', 1, 'https://ror.org/0114dtv81 Advanced Projects Research Incorporated (United States)'),
(31888, 'https://ror.org/05s37rv07', 'no_lang_code', 1, 'https://ror.org/05s37rv07 Acellent Technologies (United States)'),
(31889, 'https://ror.org/00snkpt73', 'no_lang_code', 1, 'https://ror.org/00snkpt73 Advanced Anti-Terror Technologies (United States)'),
(31890, 'https://ror.org/027jcmq30', 'no_lang_code', 1, 'https://ror.org/027jcmq30 Aeronix (United States)'),
(31891, 'https://ror.org/0479dbk76', 'no_lang_code', 1, 'https://ror.org/0479dbk76 Allcomp (United States)'),
(31892, 'https://ror.org/02hg6xf68', 'no_lang_code', 1, 'https://ror.org/02hg6xf68 Applied Quantum Technologies (United States)'),
(31893, 'https://ror.org/02m359g33', 'no_lang_code', 1, 'https://ror.org/02m359g33 ANDRO (United States)'),
(31894, 'https://ror.org/03hv2xm40', 'no_lang_code', 1, 'https://ror.org/03hv2xm40 Argtec (United States)'),
(31895, 'https://ror.org/03yktc864', 'no_lang_code', 1, 'https://ror.org/03yktc864 Aneeve Nanotechnologies (United States)'),
(31896, 'https://ror.org/018c3mn79', 'no_lang_code', 1, 'https://ror.org/018c3mn79 L-3 Aeromet (United States)'),
(31897, 'https://ror.org/02tgjtw54', 'no_lang_code', 1, 'https://ror.org/02tgjtw54 Applied Radar (United States)'),
(31898, 'https://ror.org/040mndz48', 'no_lang_code', 1, 'https://ror.org/040mndz48 ArmorWorks (United States)'),
(31899, 'https://ror.org/0576bcx21', 'no_lang_code', 1, 'https://ror.org/0576bcx21 ANP Technologies (United States)'),
(31900, 'https://ror.org/01f2gxt17', 'no_lang_code', 1, 'https://ror.org/01f2gxt17 Alpha Omega Electromagnetics (United States)'),
(31901, 'https://ror.org/00ay9je56', 'no_lang_code', 1, 'https://ror.org/00ay9je56 Aeroprobe (United States)'),
(31902, 'https://ror.org/04xk7h867', 'no_lang_code', 1, 'https://ror.org/04xk7h867 AeroSoft (United States)'),
(31903, 'https://ror.org/05cwfaq02', 'no_lang_code', 1, 'https://ror.org/05cwfaq02 Anyar (United States)'),
(31904, 'https://ror.org/01xhkgx67', 'no_lang_code', 1, 'https://ror.org/01xhkgx67 Aoptix Technologies (United States)'),
(31905, 'https://ror.org/00hneab90', 'no_lang_code', 1, 'https://ror.org/00hneab90 Aero-Tech Engineering (United States)'),
(31906, 'https://ror.org/00f6jds84', 'no_lang_code', 1, 'https://ror.org/00f6jds84 Applied Science Innovations (United States)'),
(31907, 'https://ror.org/007e0tk18', 'no_lang_code', 1, 'https://ror.org/007e0tk18 AOSense (United States)'),
(31908, 'https://ror.org/05qg6df59', 'no_lang_code', 1, 'https://ror.org/05qg6df59 Art Anderson Associates (United States)'),
(31909, 'https://ror.org/05hakgg65', 'no_lang_code', 1, 'https://ror.org/05hakgg65 Advanced Power Electronics (United States)'),
(31910, 'https://ror.org/03gby7r56', 'no_lang_code', 1, 'https://ror.org/03gby7r56 Artium Technologies (United States)'),
(31911, 'https://ror.org/049bwjd71', 'no_lang_code', 1, 'https://ror.org/049bwjd71 Alpha Star (United States)'),
(31912, 'https://ror.org/03vdsrw05', 'no_lang_code', 1, 'https://ror.org/03vdsrw05 Arxan (United States)'),
(31913, 'https://ror.org/05kz9t998', 'no_lang_code', 1, 'https://ror.org/05kz9t998 Tondi Elektroonika (Estonia)'),
(31914, 'https://ror.org/02cnc7158', 'no_lang_code', 1, 'https://ror.org/02cnc7158 Aerovel Corporation (United States)'),
(31915, 'https://ror.org/02kazyy76', 'no_lang_code', 1, 'https://ror.org/02kazyy76 Ascendant Engineering Solutions (United States)'),
(31916, 'https://ror.org/05x8n1r57', 'no_lang_code', 1, 'https://ror.org/05x8n1r57 Analytical Processes Engineered Solutions (United States)'),
(31917, 'https://ror.org/00fg8jj39', 'no_lang_code', 1, 'https://ror.org/00fg8jj39 Applied Signals Intelligence (United States)'),
(31918, 'https://ror.org/02a87jr47', 'no_lang_code', 1, 'https://ror.org/02a87jr47 ASR (United States)'),
(31919, 'https://ror.org/055kw3s45', 'no_lang_code', 1, 'https://ror.org/055kw3s45 APIC (United States)'),
(31920, 'https://ror.org/00b2em573', 'no_lang_code', 1, 'https://ror.org/00b2em573 Assett (United States)'),
(31921, 'https://ror.org/029qxj390', 'no_lang_code', 1, 'https://ror.org/029qxj390 AET (United States)'),
(31922, 'https://ror.org/03ekxyc66', 'no_lang_code', 1, 'https://ror.org/03ekxyc66 Apollo Enterprise Solutions (United States)'),
(31923, 'https://ror.org/0343ms580', 'no_lang_code', 1, 'https://ror.org/0343ms580 Applied Spectra (United States)'),
(31924, 'https://ror.org/00w5xhg82', 'no_lang_code', 1, 'https://ror.org/00w5xhg82 Assured Information Security (United States)'),
(31925, 'https://ror.org/04pmnt922', 'no_lang_code', 1, 'https://ror.org/04pmnt922 Apollo Instruments (United States)'),
(31926, 'https://ror.org/034exbn27', 'no_lang_code', 1, 'https://ror.org/034exbn27 Veloxiti (United States)'),
(31927, 'https://ror.org/038rwdb10', 'no_lang_code', 1, 'https://ror.org/038rwdb10 Niowave (United States)'),
(31928, 'https://ror.org/02efksf92', 'no_lang_code', 1, 'https://ror.org/02efksf92 Aetion (United States)'),
(31929, 'https://ror.org/03fwraz06', 'no_lang_code', 1, 'https://ror.org/03fwraz06 Applied Technologies (United States)'),
(31930, 'https://ror.org/00wpqwm31', 'no_lang_code', 1, 'https://ror.org/00wpqwm31 Astron Wireless Technologies (United States)'),
(31931, 'https://ror.org/048kv9325', 'no_lang_code', 1, 'https://ror.org/048kv9325 Applications Research (United States)'),
(31932, 'https://ror.org/048f9kd86', 'no_lang_code', 1, 'https://ror.org/048f9kd86 Applied Defense Solutions (United States)'),
(31933, 'https://ror.org/04jgfn484', 'no_lang_code', 1, 'https://ror.org/04jgfn484 Applied Technology Associates (United States)'),
(31934, 'https://ror.org/00w00g774', 'no_lang_code', 1, 'https://ror.org/00w00g774 Applied Diamond (United States)'),
(31935, 'https://ror.org/0144g8j35', 'no_lang_code', 1, 'https://ror.org/0144g8j35 Applied Thermal Sciences (United States)'),
(31936, 'https://ror.org/0533a4v91', 'no_lang_code', 1, 'https://ror.org/0533a4v91 Ambalux (United States)'),
(31937, 'https://ror.org/04ntqmb28', 'no_lang_code', 1, 'https://ror.org/04ntqmb28 Applied Visions (United States)'),
(31938, 'https://ror.org/038z36w15', 'no_lang_code', 1, 'https://ror.org/038z36w15 Applied EM (United States)'),
(31939, 'https://ror.org/010mkx366', 'no_lang_code', 1, 'https://ror.org/010mkx366 APS Materials (United States)'),
(31940, 'https://ror.org/030nbqh22', 'no_lang_code', 1, 'https://ror.org/030nbqh22 MRV Communications (United States)'),
(31941, 'https://ror.org/01gp78072', 'no_lang_code', 1, 'https://ror.org/01gp78072 ATA Engineering (United States)'),
(31942, 'https://ror.org/04h1q4c89', 'no_lang_code', 1, 'https://ror.org/04h1q4c89 Applied Materials (United States)'),
(31943, 'https://ror.org/035ryz567', 'no_lang_code', 1, 'https://ror.org/035ryz567 Atac (United States)'),
(31944, 'https://ror.org/031ghkc34', 'no_lang_code', 1, 'https://ror.org/031ghkc34 Agile Systems (United States)'),
(31945, 'https://ror.org/02xgmf234', 'no_lang_code', 1, 'https://ror.org/02xgmf234 Amelex (United States)'),
(31946, 'https://ror.org/03seew607', 'no_lang_code', 1, 'https://ror.org/03seew607 Applied Mathematics (United States)'),
(31947, 'https://ror.org/03j35d806', 'no_lang_code', 1, 'https://ror.org/03j35d806 Advanced Oxygen Technologies (United States)'),
(31948, 'https://ror.org/02r089428', 'no_lang_code', 1, 'https://ror.org/02r089428 AgilOptics (United States)'),
(31949, 'https://ror.org/03szmqd24', 'no_lang_code', 1, 'https://ror.org/03szmqd24 Applied Minds (United States)'),
(31950, 'https://ror.org/03hrc3v54', 'no_lang_code', 1, 'https://ror.org/03hrc3v54 Agnik (United States)'),
(31951, 'https://ror.org/0128rca86', 'no_lang_code', 1, 'https://ror.org/0128rca86 Applied NanoFemto Technologies (United States)'),
(31952, 'https://ror.org/02taxhk03', 'no_lang_code', 1, 'https://ror.org/02taxhk03 Aqwest (United States)'),
(31953, 'https://ror.org/04xrsmr92', 'en', 1, 'https://ror.org/04xrsmr92 Applied Natural Sciences'),
(31954, 'https://ror.org/05w34fa93', 'no_lang_code', 1, 'https://ror.org/05w34fa93 ARC Technology (United States)'),
(31955, 'https://ror.org/04jc8gz43', 'no_lang_code', 1, 'https://ror.org/04jc8gz43 Archangel Systems (United States)'),
(31956, 'https://ror.org/004b0n253', 'no_lang_code', 1, 'https://ror.org/004b0n253 Applied Optimization (United States)');
INSERT INTO `rors` VALUES
(31957, 'https://ror.org/01pg4hf90', 'no_lang_code', 1, 'https://ror.org/01pg4hf90 Beck Engineering (United States)'),
(31958, 'https://ror.org/05vxv5b07', 'no_lang_code', 1, 'https://ror.org/05vxv5b07 Applied Optoelectronics (United States)'),
(31959, 'https://ror.org/0151men77', 'no_lang_code', 1, 'https://ror.org/0151men77 American Energy Technologies Co (United States)'),
(31960, 'https://ror.org/010qvsb68', 'no_lang_code', 1, 'https://ror.org/010qvsb68 American GNC (United States)'),
(31961, 'https://ror.org/012c68819', 'no_lang_code', 1, 'https://ror.org/012c68819 Bedford Signals (United States)'),
(31962, 'https://ror.org/00pyrxj28', 'no_lang_code', 1, 'https://ror.org/00pyrxj28 American Research Corporation of Virginia (United States)'),
(31963, 'https://ror.org/028btas66', 'no_lang_code', 1, 'https://ror.org/028btas66 Applied Physical Electronics (United States)'),
(31964, 'https://ror.org/04a8v6p14', 'no_lang_code', 1, 'https://ror.org/04a8v6p14 Hisense (United States)'),
(31965, 'https://ror.org/04ap8h142', 'en', 1, 'https://ror.org/04ap8h142 Arid Forest Research Institute'),
(31966, 'https://ror.org/02s5wxe37', 'no_lang_code', 1, 'https://ror.org/02s5wxe37 Applied Poleramic (United States)'),
(31967, 'https://ror.org/03m27ps35', 'no_lang_code', 1, 'https://ror.org/03m27ps35 Applied Pulsed Power (United States)'),
(31968, 'https://ror.org/04yzv9k35', 'no_lang_code', 1, 'https://ror.org/04yzv9k35 Archinoetics (United States)'),
(31969, 'https://ror.org/01xa12s81', 'no_lang_code', 1, 'https://ror.org/01xa12s81 Beltran (United States)'),
(31970, 'https://ror.org/04g3dhy48', 'no_lang_code', 1, 'https://ror.org/04g3dhy48 American Semiconductor (United States)'),
(31971, 'https://ror.org/05v32ez80', 'no_lang_code', 1, 'https://ror.org/05v32ez80 Broadata Communications (United States)'),
(31972, 'https://ror.org/02mba1x93', 'no_lang_code', 1, 'https://ror.org/02mba1x93 BrockTek (United States)'),
(31973, 'https://ror.org/05jdbvf64', 'no_lang_code', 1, 'https://ror.org/05jdbvf64 Arcon (United States)'),
(31974, 'https://ror.org/02dh89n26', 'no_lang_code', 1, 'https://ror.org/02dh89n26 BerrieHill Research (United States)'),
(31975, 'https://ror.org/01bes9d74', 'no_lang_code', 1, 'https://ror.org/01bes9d74 CeraNova (United States)'),
(31976, 'https://ror.org/03tcp5e90', 'no_lang_code', 1, 'https://ror.org/03tcp5e90 Brookhaven Technology Group (United States)'),
(31977, 'https://ror.org/01cf7yd40', 'no_lang_code', 1, 'https://ror.org/01cf7yd40 Arzon Solar (United States)'),
(31978, 'https://ror.org/01xdzbt45', 'no_lang_code', 1, 'https://ror.org/01xdzbt45 Verisk Analytics (United States)'),
(31979, 'https://ror.org/0035qd675', 'no_lang_code', 1, 'https://ror.org/0035qd675 BTech Acoustics (United States)'),
(31980, 'https://ror.org/02hbnw031', 'no_lang_code', 1, 'https://ror.org/02hbnw031 Cermet (United States)'),
(31981, 'https://ror.org/00z84b305', 'no_lang_code', 1, 'https://ror.org/00z84b305 Microscan Systems (United States)'),
(31982, 'https://ror.org/02gt7fw23', 'no_lang_code', 1, 'https://ror.org/02gt7fw23 Burge Environmental (United States)'),
(31983, 'https://ror.org/015d68237', 'no_lang_code', 1, 'https://ror.org/015d68237 Amtec (United States)'),
(31984, 'https://ror.org/01y9dfy03', 'no_lang_code', 1, 'https://ror.org/01y9dfy03 Bihrle Applied Research (United States)'),
(31985, 'https://ror.org/03gc99a64', 'no_lang_code', 1, 'https://ror.org/03gc99a64 CF Technologies (United States)'),
(31986, 'https://ror.org/04ytsjz62', 'no_lang_code', 1, 'https://ror.org/04ytsjz62 C & P Technologies (United States)'),
(31987, 'https://ror.org/01d2mj830', 'no_lang_code', 1, 'https://ror.org/01d2mj830 Quantum3D (United States)'),
(31988, 'https://ror.org/03djma825', 'no_lang_code', 1, 'https://ror.org/03djma825 Analatom (United States)'),
(31989, 'https://ror.org/056s1k160', 'no_lang_code', 1, 'https://ror.org/056s1k160 Analysis and Measurement Services (United States)'),
(31990, 'https://ror.org/026txtp63', 'no_lang_code', 1, 'https://ror.org/026txtp63 Ineos (United States)'),
(31991, 'https://ror.org/02dzzer59', 'no_lang_code', 1, 'https://ror.org/02dzzer59 Cha Corporation (United States)'),
(31992, 'https://ror.org/03earrv48', 'no_lang_code', 1, 'https://ror.org/03earrv48 C3I (United States)'),
(31993, 'https://ror.org/05y86p525', 'no_lang_code', 1, 'https://ror.org/05y86p525 Analysis Design & Diagnostics (United States)'),
(31994, 'https://ror.org/03w767q23', 'no_lang_code', 1, 'https://ror.org/03w767q23 Chang Industry (United States)'),
(31995, 'https://ror.org/038k3d331', 'no_lang_code', 1, 'https://ror.org/038k3d331 CAE Solutions (United States)'),
(31996, 'https://ror.org/045na2h79', 'no_lang_code', 1, 'https://ror.org/045na2h79 MFC Industrial (United States)'),
(31997, 'https://ror.org/0113rr846', 'no_lang_code', 1, 'https://ror.org/0113rr846 Analytical Engineering (United States)'),
(31998, 'https://ror.org/04cr2kz28', 'no_lang_code', 1, 'https://ror.org/04cr2kz28 Genesis Industries (United States)'),
(31999, 'https://ror.org/03z47zw42', 'no_lang_code', 1, 'https://ror.org/03z47zw42 Charles River Analytics (United States)'),
(32000, 'https://ror.org/04j62df57', 'no_lang_code', 1, 'https://ror.org/04j62df57 Atmospheric Observing Systems (United States)'),
(32001, 'https://ror.org/00heb0a94', 'no_lang_code', 1, 'https://ror.org/00heb0a94 Stark Aerospace (United States)'),
(32002, 'https://ror.org/05qb22n20', 'no_lang_code', 1, 'https://ror.org/05qb22n20 ChemImage (United States)'),
(32003, 'https://ror.org/02fnwes63', 'no_lang_code', 1, 'https://ror.org/02fnwes63 ASRC Federal Analytical Service (United States)'),
(32004, 'https://ror.org/03h6x6x11', 'no_lang_code', 1, 'https://ror.org/03h6x6x11 Curtiss-Wright (United States)'),
(32005, 'https://ror.org/00y3nx324', 'no_lang_code', 1, 'https://ror.org/00y3nx324 Auriga Microwave (United States)'),
(32006, 'https://ror.org/03ck8xc11', 'no_lang_code', 1, 'https://ror.org/03ck8xc11 CDM Smith (United States)'),
(32007, 'https://ror.org/021a9kk09', 'no_lang_code', 1, 'https://ror.org/021a9kk09 Aurrion (United States)'),
(32008, 'https://ror.org/05ppfhw72', 'no_lang_code', 1, 'https://ror.org/05ppfhw72 Analytical Spectral Devices (United States)'),
(32009, 'https://ror.org/04xx2fj27', 'no_lang_code', 1, 'https://ror.org/04xx2fj27 Chip Design Systems (United States)'),
(32010, 'https://ror.org/00w901m21', 'no_lang_code', 1, 'https://ror.org/00w901m21 Candent Technologies (United States)'),
(32011, 'https://ror.org/00w4c2196', 'no_lang_code', 1, 'https://ror.org/00w4c2196 Capco (United States)'),
(32012, 'https://ror.org/015zgtx05', 'no_lang_code', 1, 'https://ror.org/015zgtx05 Autonomous Solutions (United States)'),
(32013, 'https://ror.org/01s0mmt42', 'no_lang_code', 1, 'https://ror.org/01s0mmt42 Black Forest Engineering (United States)'),
(32014, 'https://ror.org/02585xs81', 'no_lang_code', 1, 'https://ror.org/02585xs81 Black Laboratories (United States)'),
(32015, 'https://ror.org/01pkxvt59', 'no_lang_code', 1, 'https://ror.org/01pkxvt59 Anamet (United States)'),
(32016, 'https://ror.org/024nxr378', 'no_lang_code', 1, 'https://ror.org/024nxr378 Avineon (United States)'),
(32017, 'https://ror.org/027990s04', 'no_lang_code', 1, 'https://ror.org/027990s04 Black River Systems (United States)'),
(32018, 'https://ror.org/02ma9nk57', 'no_lang_code', 1, 'https://ror.org/02ma9nk57 Capraro Technologies (United States)'),
(32019, 'https://ror.org/055909c12', 'no_lang_code', 1, 'https://ror.org/055909c12 Avirtek (United States)'),
(32020, 'https://ror.org/04rxtvg30', 'no_lang_code', 1, 'https://ror.org/04rxtvg30 Carbon Solutions (United States)'),
(32021, 'https://ror.org/01bgg3897', 'no_lang_code', 1, 'https://ror.org/01bgg3897 Anasphere (United States)'),
(32022, 'https://ror.org/05f6mfg13', 'no_lang_code', 1, 'https://ror.org/05f6mfg13 Avisys (United States)'),
(32023, 'https://ror.org/01peehd17', 'no_lang_code', 1, 'https://ror.org/01peehd17 Cimarron Software (United States)'),
(32024, 'https://ror.org/02v93c994', 'no_lang_code', 1, 'https://ror.org/02v93c994 Blade Diagnostics (United States)'),
(32025, 'https://ror.org/05v8xqq83', 'no_lang_code', 1, 'https://ror.org/05v8xqq83 Advanced Processing Technology (United States)'),
(32026, 'https://ror.org/059y2we84', 'no_lang_code', 1, 'https://ror.org/059y2we84 BlazeTech (United States)'),
(32027, 'https://ror.org/00ewcgt31', 'no_lang_code', 1, 'https://ror.org/00ewcgt31 Clear Science Corporation (United States)'),
(32028, 'https://ror.org/055kcmv29', 'no_lang_code', 1, 'https://ror.org/055kcmv29 Anautics (United States)'),
(32029, 'https://ror.org/00r69j102', 'no_lang_code', 1, 'https://ror.org/00r69j102 Blue Canyon Technologies (United States)'),
(32030, 'https://ror.org/01ztv7k18', 'no_lang_code', 1, 'https://ror.org/01ztv7k18 Carnegie Robotics (United States)'),
(32031, 'https://ror.org/02jgx6t51', 'no_lang_code', 1, 'https://ror.org/02jgx6t51 Kratos Defense & Security Solutions (United States)'),
(32032, 'https://ror.org/04yncke10', 'no_lang_code', 1, 'https://ror.org/04yncke10 Gooch & Housego (United States)'),
(32033, 'https://ror.org/00x4j8f40', 'no_lang_code', 1, 'https://ror.org/00x4j8f40 Carolina Unmanned Vehicles (United States)'),
(32034, 'https://ror.org/01n5yhf55', 'no_lang_code', 1, 'https://ror.org/01n5yhf55 Apogee Technology (United States)'),
(32035, 'https://ror.org/03w007e62', 'no_lang_code', 1, 'https://ror.org/03w007e62 Aware (United States)'),
(32036, 'https://ror.org/03v7zn827', 'en', 1, 'https://ror.org/03v7zn827 Clifton Labs'),
(32037, 'https://ror.org/010smqa50', 'no_lang_code', 1, 'https://ror.org/010smqa50 Spaceflight Industries (United States)'),
(32038, 'https://ror.org/05y6gdf04', 'no_lang_code', 1, 'https://ror.org/05y6gdf04 AZ Technology (United States)'),
(32039, 'https://ror.org/05a9qm317', 'no_lang_code', 1, 'https://ror.org/05a9qm317 Cascade Designs (United States)'),
(32040, 'https://ror.org/01cq4cc70', 'no_lang_code', 1, 'https://ror.org/01cq4cc70 Blue Sky Electronics (United States)'),
(32041, 'https://ror.org/0401b3q74', 'no_lang_code', 1, 'https://ror.org/0401b3q74 Cascade Microtech (United States)'),
(32042, 'https://ror.org/04fa4r544', 'en', 1, 'https://ror.org/04fa4r544 ORCID'),
(32043, 'https://ror.org/027z7k446', 'no_lang_code', 1, 'https://ror.org/027z7k446 B.E. Meyers & Co (United States)'),
(32044, 'https://ror.org/01evs2j21', 'no_lang_code', 1, 'https://ror.org/01evs2j21 BMA Engineering (United States)'),
(32045, 'https://ror.org/04b1eqn95', 'no_lang_code', 1, 'https://ror.org/04b1eqn95 Bodkin Design & Engineering (United States)'),
(32046, 'https://ror.org/03b20q825', 'no_lang_code', 1, 'https://ror.org/03b20q825 Baker Engineering (United States)'),
(32047, 'https://ror.org/00b6h1f45', 'no_lang_code', 1, 'https://ror.org/00b6h1f45 Commonwealth Computer Research (United States)'),
(32048, 'https://ror.org/02q8a6a36', 'no_lang_code', 1, 'https://ror.org/02q8a6a36 CMSoft (United States)'),
(32049, 'https://ror.org/007j0dg36', 'no_lang_code', 1, 'https://ror.org/007j0dg36 Baker Engineering and Risk Consultants (United States)'),
(32050, 'https://ror.org/049zmb830', 'no_lang_code', 1, 'https://ror.org/049zmb830 Afognak Native Corporation (United States)'),
(32051, 'https://ror.org/028gxg804', 'no_lang_code', 1, 'https://ror.org/028gxg804 Catalytic Materials (United States)'),
(32052, 'https://ror.org/02cxh9170', 'no_lang_code', 1, 'https://ror.org/02cxh9170 Boston Engineering (United States)'),
(32053, 'https://ror.org/009rps409', 'no_lang_code', 1, 'https://ror.org/009rps409 CBRITE (United States)'),
(32054, 'https://ror.org/05a45xy69', 'no_lang_code', 1, 'https://ror.org/05a45xy69 Compass Technology Group (United States)'),
(32055, 'https://ror.org/04z5km850', 'no_lang_code', 1, 'https://ror.org/04z5km850 Bascom Hunter (United States)'),
(32056, 'https://ror.org/03m41f504', 'no_lang_code', 1, 'https://ror.org/03m41f504 Basic Commerce and Industries (United States)'),
(32057, 'https://ror.org/00t3ptr62', 'no_lang_code', 1, 'https://ror.org/00t3ptr62 Boston Micromachines (United States)'),
(32058, 'https://ror.org/02etpnx57', 'no_lang_code', 1, 'https://ror.org/02etpnx57 Battlespace Simulations (United States)'),
(32059, 'https://ror.org/04s1tmp27', 'no_lang_code', 1, 'https://ror.org/04s1tmp27 CogniTech (United States)'),
(32060, 'https://ror.org/04pdgtw09', 'no_lang_code', 1, 'https://ror.org/04pdgtw09 Celadon Laboratories (United States)'),
(32061, 'https://ror.org/04k00np26', 'no_lang_code', 1, 'https://ror.org/04k00np26 BrainAid (United States)'),
(32062, 'https://ror.org/02d79dn07', 'no_lang_code', 1, 'https://ror.org/02d79dn07 Valore (United States)'),
(32063, 'https://ror.org/03f1mqp12', 'no_lang_code', 1, 'https://ror.org/03f1mqp12 VCORE Solutions (United States)'),
(32064, 'https://ror.org/039bq6320', 'no_lang_code', 1, 'https://ror.org/039bq6320 Cellular Materials International (United States)'),
(32065, 'https://ror.org/00td0ce11', 'no_lang_code', 1, 'https://ror.org/00td0ce11 AFCO Systems (United States)'),
(32066, 'https://ror.org/03xqmhf90', 'no_lang_code', 1, 'https://ror.org/03xqmhf90 Breault Research Organization (United States)'),
(32067, 'https://ror.org/028erp057', 'no_lang_code', 1, 'https://ror.org/028erp057 Coherent Technical Services (United States)'),
(32068, 'https://ror.org/05rfchc95', 'no_lang_code', 1, 'https://ror.org/05rfchc95 Beacon Interactive Systems (United States)'),
(32069, 'https://ror.org/04qsy0p12', 'no_lang_code', 1, 'https://ror.org/04qsy0p12 Centeye (United States)'),
(32070, 'https://ror.org/01b448t83', 'no_lang_code', 1, 'https://ror.org/01b448t83 Brimrose (United States)'),
(32071, 'https://ror.org/054271w14', 'no_lang_code', 1, 'https://ror.org/054271w14 Computational Sensors (United States)'),
(32072, 'https://ror.org/03890hq18', 'no_lang_code', 1, 'https://ror.org/03890hq18 Triton Systems (United States)'),
(32073, 'https://ror.org/02t9jkq72', 'no_lang_code', 1, 'https://ror.org/02t9jkq72 Beam Engineering for Advanced Measurements (United States)'),
(32074, 'https://ror.org/01sv72659', 'en', 1, 'https://ror.org/01sv72659 Computer Measurement Laboratory'),
(32075, 'https://ror.org/03e2b0r58', 'no_lang_code', 1, 'https://ror.org/03e2b0r58 Critical Technologies (United States)'),
(32076, 'https://ror.org/02ympmq44', 'no_lang_code', 1, 'https://ror.org/02ympmq44 Crossfield Technology (United States)'),
(32077, 'https://ror.org/03snc9f81', 'no_lang_code', 1, 'https://ror.org/03snc9f81 HyperSizer (United States)'),
(32078, 'https://ror.org/05vd41376', 'no_lang_code', 1, 'https://ror.org/05vd41376 CreoNex Systems (United States)'),
(32079, 'https://ror.org/05s7mav43', 'no_lang_code', 1, 'https://ror.org/05s7mav43 Clear Align (United States)'),
(32080, 'https://ror.org/04sdthy66', 'no_lang_code', 1, 'https://ror.org/04sdthy66 Cascade Engineering (United States)'),
(32081, 'https://ror.org/01274hc70', 'no_lang_code', 1, 'https://ror.org/01274hc70 Colorado Engineering (United States)'),
(32082, 'https://ror.org/04rx5jd37', 'no_lang_code', 1, 'https://ror.org/04rx5jd37 Dignitas Technologies (United States)'),
(32083, 'https://ror.org/01p2rmv38', 'no_lang_code', 1, 'https://ror.org/01p2rmv38 DataSoft (United States)'),
(32084, 'https://ror.org/042wp4851', 'no_lang_code', 1, 'https://ror.org/042wp4851 CompuTherm (United States)'),
(32085, 'https://ror.org/016ywfq33', 'no_lang_code', 1, 'https://ror.org/016ywfq33 Directed Energy Solutions (United States)'),
(32086, 'https://ror.org/03r907b47', 'no_lang_code', 1, 'https://ror.org/03r907b47 Crye Precision (United States)'),
(32087, 'https://ror.org/02t942m04', 'no_lang_code', 1, 'https://ror.org/02t942m04 Edaptive Computing (United States)'),
(32088, 'https://ror.org/05g28da90', 'no_lang_code', 1, 'https://ror.org/05g28da90 Strategic Analysis (United States)'),
(32089, 'https://ror.org/020ezhp63', 'no_lang_code', 1, 'https://ror.org/020ezhp63 Conceptual Mindworks (United States)'),
(32090, 'https://ror.org/04kpceh54', 'no_lang_code', 1, 'https://ror.org/04kpceh54 Directed Vapor Technologies (United States)'),
(32091, 'https://ror.org/00hqnb941', 'no_lang_code', 1, 'https://ror.org/00hqnb941 Asahi Kasei (United States)'),
(32092, 'https://ror.org/033n46m09', 'no_lang_code', 1, 'https://ror.org/033n46m09 DB&A (United States)'),
(32093, 'https://ror.org/01nedp435', 'no_lang_code', 1, 'https://ror.org/01nedp435 Discovery Machine (United States)'),
(32094, 'https://ror.org/00agf0486', 'no_lang_code', 1, 'https://ror.org/00agf0486 Concorde Battery (United States)'),
(32095, 'https://ror.org/0020g7t18', 'no_lang_code', 1, 'https://ror.org/0020g7t18 Davidson Technologies (United States)'),
(32096, 'https://ror.org/03wwg5r17', 'no_lang_code', 1, 'https://ror.org/03wwg5r17 Discovery Semiconductors (United States)'),
(32097, 'https://ror.org/02vfyyh15', 'no_lang_code', 1, 'https://ror.org/02vfyyh15 CU Aerospace (United States)'),
(32098, 'https://ror.org/0306syb73', 'no_lang_code', 1, 'https://ror.org/0306syb73 Eigent Technologies (United States)'),
(32099, 'https://ror.org/03rq52312', 'no_lang_code', 1, 'https://ror.org/03rq52312 Conductive Composites (United States)'),
(32100, 'https://ror.org/001c7xr36', 'no_lang_code', 1, 'https://ror.org/001c7xr36 Custom MMIC (United States)'),
(32101, 'https://ror.org/015r6y659', 'no_lang_code', 1, 'https://ror.org/015r6y659 CTS Corporation (United States)'),
(32102, 'https://ror.org/0575ww420', 'no_lang_code', 1, 'https://ror.org/0575ww420 Cyan Systems (United States)'),
(32103, 'https://ror.org/0018wtq07', 'no_lang_code', 1, 'https://ror.org/0018wtq07 Diversified Technical Systems (United States)'),
(32104, 'https://ror.org/016hg3c35', 'no_lang_code', 1, 'https://ror.org/016hg3c35 Cyber Defense Agency (United States)'),
(32105, 'https://ror.org/04kjswq56', 'no_lang_code', 1, 'https://ror.org/04kjswq56 Electro Magnetic Applications (United States)'),
(32106, 'https://ror.org/04f3bkd55', 'no_lang_code', 1, 'https://ror.org/04f3bkd55 Cascade (United States)'),
(32107, 'https://ror.org/043c9gs72', 'no_lang_code', 1, 'https://ror.org/043c9gs72 Diversified Technologies (United States)'),
(32108, 'https://ror.org/02h7h5x62', 'no_lang_code', 1, 'https://ror.org/02h7h5x62 Electro Standards Laboratories (United States)'),
(32109, 'https://ror.org/00farq383', 'no_lang_code', 1, 'https://ror.org/00farq383 DeciBel Research (United States)'),
(32110, 'https://ror.org/03xnrcj96', 'no_lang_code', 1, 'https://ror.org/03xnrcj96 Continental Computers (United States)'),
(32111, 'https://ror.org/01yp11k49', 'no_lang_code', 1, 'https://ror.org/01yp11k49 Diversitech (United States)'),
(32112, 'https://ror.org/01t4yq738', 'no_lang_code', 1, 'https://ror.org/01t4yq738 Cube Technology (United States)'),
(32113, 'https://ror.org/005qng483', 'no_lang_code', 1, 'https://ror.org/005qng483 Decision Dynamics (United States)'),
(32114, 'https://ror.org/03abrt645', 'no_lang_code', 1, 'https://ror.org/03abrt645 DNA Solutions (United States)'),
(32115, 'https://ror.org/01axmz803', 'no_lang_code', 1, 'https://ror.org/01axmz803 Control Vision (United States)'),
(32116, 'https://ror.org/03gcvf773', 'no_lang_code', 1, 'https://ror.org/03gcvf773 Decision Sciences (United States)'),
(32117, 'https://ror.org/051b2q112', 'no_lang_code', 1, 'https://ror.org/051b2q112 ITT (United States)'),
(32118, 'https://ror.org/013a8zf56', 'no_lang_code', 1, 'https://ror.org/013a8zf56 SynTech Bioenergy (United States)'),
(32119, 'https://ror.org/0056xt122', 'no_lang_code', 1, 'https://ror.org/0056xt122 Decision Sciences International Corporation (United States)'),
(32120, 'https://ror.org/010ggtr76', 'no_lang_code', 1, 'https://ror.org/010ggtr76 Cybosoft (United States)'),
(32121, 'https://ror.org/044f8a932', 'no_lang_code', 1, 'https://ror.org/044f8a932 Data Power Decisions (United States)'),
(32122, 'https://ror.org/05y99bn19', 'no_lang_code', 1, 'https://ror.org/05y99bn19 Cycorp (United States)'),
(32123, 'https://ror.org/020rxjn58', 'no_lang_code', 1, 'https://ror.org/020rxjn58 Cornerstone Research Group (United States)'),
(32124, 'https://ror.org/04fdrwm29', 'no_lang_code', 1, 'https://ror.org/04fdrwm29 Odyssey Investment Partners (United States)'),
(32125, 'https://ror.org/04rz3gb85', 'no_lang_code', 1, 'https://ror.org/04rz3gb85 Dragonfly Pictures (United States)'),
(32126, 'https://ror.org/05kmmnb39', 'no_lang_code', 1, 'https://ror.org/05kmmnb39 TNS (United States)'),
(32127, 'https://ror.org/0011c8r66', 'no_lang_code', 1, 'https://ror.org/0011c8r66 CornerTurn (United States)'),
(32128, 'https://ror.org/03gpwsk37', 'no_lang_code', 1, 'https://ror.org/03gpwsk37 DSPlogic (United States)'),
(32129, 'https://ror.org/00vzq1e41', 'no_lang_code', 1, 'https://ror.org/00vzq1e41 Decisive Analytics Corporation (United States)'),
(32130, 'https://ror.org/03v5g8n66', 'no_lang_code', 1, 'https://ror.org/03v5g8n66 ElectroDynamic Applications (United States)'),
(32131, 'https://ror.org/04fc1p069', 'no_lang_code', 1, 'https://ror.org/04fc1p069 Smiths Detection (United States)'),
(32132, 'https://ror.org/00c5zkt18', 'no_lang_code', 1, 'https://ror.org/00c5zkt18 D&P (United States)'),
(32133, 'https://ror.org/01acb5n90', 'no_lang_code', 1, 'https://ror.org/01acb5n90 Deep Web Technologies (United States)'),
(32134, 'https://ror.org/01h6a1346', 'no_lang_code', 1, 'https://ror.org/01h6a1346 D&S Consultants (United States)'),
(32135, 'https://ror.org/00mmb7886', 'no_lang_code', 1, 'https://ror.org/00mmb7886 Electrodynamics Associates (United States)'),
(32136, 'https://ror.org/026d26k38', 'no_lang_code', 1, 'https://ror.org/026d26k38 D-Star Engineering (United States)'),
(32137, 'https://ror.org/05nnc2r34', 'no_lang_code', 1, 'https://ror.org/05nnc2r34 DWA Technologies (United States)'),
(32138, 'https://ror.org/03m4h9428', 'no_lang_code', 1, 'https://ror.org/03m4h9428 Defense Research Associates (United States)'),
(32139, 'https://ror.org/05c11kf69', 'no_lang_code', 1, 'https://ror.org/05c11kf69 Veolia (United States)'),
(32140, 'https://ror.org/046ftar42', 'no_lang_code', 1, 'https://ror.org/046ftar42 Cortana (United States)'),
(32141, 'https://ror.org/00ghy7y53', 'no_lang_code', 1, 'https://ror.org/00ghy7y53 Electronic Concepts and Engineering (United States)'),
(32142, 'https://ror.org/03t0h6z08', 'no_lang_code', 1, 'https://ror.org/03t0h6z08 DANTE Solutions (United States)'),
(32143, 'https://ror.org/027s74w23', 'no_lang_code', 1, 'https://ror.org/027s74w23 Damaskos (United States)'),
(32144, 'https://ror.org/04xjzws62', 'no_lang_code', 1, 'https://ror.org/04xjzws62 Electronics Development Corporation (United States)'),
(32145, 'https://ror.org/042abnq57', 'no_lang_code', 1, 'https://ror.org/042abnq57 Elintrix (United States)'),
(32146, 'https://ror.org/05q0w0a95', 'no_lang_code', 1, 'https://ror.org/05q0w0a95 Dynamic Structures and Materials (United States)'),
(32147, 'https://ror.org/01xew3x83', 'no_lang_code', 1, 'https://ror.org/01xew3x83 EMAG Technologies (United States)'),
(32148, 'https://ror.org/04yzz6k63', 'no_lang_code', 1, 'https://ror.org/04yzz6k63 Damilic (United States)'),
(32149, 'https://ror.org/05w2sen95', 'no_lang_code', 1, 'https://ror.org/05w2sen95 Della Enterprises (United States)'),
(32150, 'https://ror.org/021y1yq56', 'no_lang_code', 1, 'https://ror.org/021y1yq56 Emergent Space Technologies (United States)'),
(32151, 'https://ror.org/035njr402', 'no_lang_code', 1, 'https://ror.org/035njr402 Dynamic Systems & Research (United States)'),
(32152, 'https://ror.org/003h3w310', 'no_lang_code', 1, 'https://ror.org/003h3w310 TSG Solutions (United States)'),
(32153, 'https://ror.org/05rwxjp51', 'no_lang_code', 1, 'https://ror.org/05rwxjp51 Emitech (United States)'),
(32154, 'https://ror.org/009yq5939', 'no_lang_code', 1, 'https://ror.org/009yq5939 Energent (United States)'),
(32155, 'https://ror.org/01xyfgx59', 'no_lang_code', 1, 'https://ror.org/01xyfgx59 Dynetics (United States)'),
(32156, 'https://ror.org/03k1vma03', 'no_lang_code', 1, 'https://ror.org/03k1vma03 Energetic Materials and Products Incorporation (United States)'),
(32157, 'https://ror.org/01yf5bk03', 'no_lang_code', 1, 'https://ror.org/01yf5bk03 Engineering & Scientific Innovations (United States)'),
(32158, 'https://ror.org/01zxfhv73', 'no_lang_code', 1, 'https://ror.org/01zxfhv73 Energetics (United States)'),
(32159, 'https://ror.org/051rke185', 'no_lang_code', 1, 'https://ror.org/051rke185 Eagle Harbor Technologies (United States)'),
(32160, 'https://ror.org/02amd8949', 'no_lang_code', 1, 'https://ror.org/02amd8949 Demeton Technologies (United States)'),
(32161, 'https://ror.org/03mc42j92', 'no_lang_code', 1, 'https://ror.org/03mc42j92 Deployable Space Systems (United States)'),
(32162, 'https://ror.org/05knz5v90', 'no_lang_code', 1, 'https://ror.org/05knz5v90 DESE Research (United States)'),
(32163, 'https://ror.org/0331gec24', 'no_lang_code', 1, 'https://ror.org/0331gec24 Enigmatics (United States)'),
(32164, 'https://ror.org/03q13kq93', 'no_lang_code', 1, 'https://ror.org/03q13kq93 Public Service Electric and Gas (United States)'),
(32165, 'https://ror.org/007nh3f56', 'no_lang_code', 1, 'https://ror.org/007nh3f56 East West Enterprises (United States)'),
(32166, 'https://ror.org/01k7j5430', 'no_lang_code', 1, 'https://ror.org/01k7j5430 Design Interactive (United States)'),
(32167, 'https://ror.org/00a4ryj05', 'no_lang_code', 1, 'https://ror.org/00a4ryj05 UIL Holdings (United States)'),
(32168, 'https://ror.org/01w6p0240', 'no_lang_code', 1, 'https://ror.org/01w6p0240 Energy Research Consultants (United States)'),
(32169, 'https://ror.org/02bz1zk40', 'no_lang_code', 1, 'https://ror.org/02bz1zk40 Design Net Engineering (United States)'),
(32170, 'https://ror.org/05snmdb74', 'no_lang_code', 1, 'https://ror.org/05snmdb74 Enser (United States)'),
(32171, 'https://ror.org/01gehgc29', 'no_lang_code', 1, 'https://ror.org/01gehgc29 Ebert Composites (United States)'),
(32172, 'https://ror.org/02vp4yp31', 'no_lang_code', 1, 'https://ror.org/02vp4yp31 Exothermics (United States)'),
(32173, 'https://ror.org/01hj33v12', 'no_lang_code', 1, 'https://ror.org/01hj33v12 Echo Ridge (United States)'),
(32174, 'https://ror.org/05v43a449', 'no_lang_code', 1, 'https://ror.org/05v43a449 Expand (United States)'),
(32175, 'https://ror.org/01brvan73', 'no_lang_code', 1, 'https://ror.org/01brvan73 Environetix Technologies (United States)'),
(32176, 'https://ror.org/00mwgpv54', 'no_lang_code', 1, 'https://ror.org/00mwgpv54 Eclipse Energy Systems (United States)'),
(32177, 'https://ror.org/05kyb6m55', 'no_lang_code', 1, 'https://ror.org/05kyb6m55 Diamond Antenna and Microwave (United States)'),
(32178, 'https://ror.org/01mf7pb88', 'no_lang_code', 1, 'https://ror.org/01mf7pb88 Expert Microsystems (United States)'),
(32179, 'https://ror.org/031n58j85', 'no_lang_code', 1, 'https://ror.org/031n58j85 Eos Photonics (United States)'),
(32180, 'https://ror.org/015frpz66', 'no_lang_code', 1, 'https://ror.org/015frpz66 Diamond Visionics (United States)'),
(32181, 'https://ror.org/0182wtt39', 'no_lang_code', 1, 'https://ror.org/0182wtt39 Fracture Analysis Consultants (United States)'),
(32182, 'https://ror.org/01y5j7h75', 'no_lang_code', 1, 'https://ror.org/01y5j7h75 Ecrossculture (United States)'),
(32183, 'https://ror.org/00ne5nn12', 'no_lang_code', 1, 'https://ror.org/00ne5nn12 EOSPACE (United States)'),
(32184, 'https://ror.org/04mvxcw39', 'no_lang_code', 1, 'https://ror.org/04mvxcw39 O’Gara Group (United States)'),
(32185, 'https://ror.org/03bd0by56', 'no_lang_code', 1, 'https://ror.org/03bd0by56 Kennametal (United States)'),
(32186, 'https://ror.org/005cgd502', 'no_lang_code', 1, 'https://ror.org/005cgd502 Digital Authentication Technologies (United States)'),
(32187, 'https://ror.org/00jycx837', 'no_lang_code', 1, 'https://ror.org/00jycx837 Eotron (United States)'),
(32188, 'https://ror.org/01354x477', 'no_lang_code', 1, 'https://ror.org/01354x477 Fantastic Data (United States)'),
(32189, 'https://ror.org/054srn740', 'no_lang_code', 1, 'https://ror.org/054srn740 EPIR Technologies (United States)'),
(32190, 'https://ror.org/03jn2ja08', 'no_lang_code', 1, 'https://ror.org/03jn2ja08 Xperi (United States)'),
(32191, 'https://ror.org/01wtzjm14', 'no_lang_code', 1, 'https://ror.org/01wtzjm14 Global Aerospace (United States)'),
(32192, 'https://ror.org/00sz7mx24', 'no_lang_code', 1, 'https://ror.org/00sz7mx24 Friction Stir Link (United States)'),
(32193, 'https://ror.org/01skcjx25', 'no_lang_code', 1, 'https://ror.org/01skcjx25 Far Tech (United States)'),
(32194, 'https://ror.org/00xactn75', 'no_lang_code', 1, 'https://ror.org/00xactn75 Epitaxial Technologies (United States)'),
(32195, 'https://ror.org/049f48g82', 'no_lang_code', 1, 'https://ror.org/049f48g82 F&S Building Innovations (United States)'),
(32196, 'https://ror.org/05f8s1h70', 'no_lang_code', 1, 'https://ror.org/05f8s1h70 Kforce (United States)'),
(32197, 'https://ror.org/03s8maf24', 'no_lang_code', 1, 'https://ror.org/03s8maf24 Frontier Performance Polymers (United States)'),
(32198, 'https://ror.org/027wsdy85', 'no_lang_code', 1, 'https://ror.org/027wsdy85 Digital Optics Technologies (United States)'),
(32199, 'https://ror.org/02xrt8f30', 'no_lang_code', 1, 'https://ror.org/02xrt8f30 FarCo Technologies (United States)'),
(32200, 'https://ror.org/05nf7ha92', 'no_lang_code', 1, 'https://ror.org/05nf7ha92 Global Embedded Technologies (United States)'),
(32201, 'https://ror.org/04gzn8442', 'no_lang_code', 1, 'https://ror.org/04gzn8442 Frontier Technology Incorporation (United States)'),
(32202, 'https://ror.org/028876725', 'no_lang_code', 1, 'https://ror.org/028876725 EpiWorks (United States)'),
(32203, 'https://ror.org/02r3f8m74', 'no_lang_code', 1, 'https://ror.org/02r3f8m74 Farr Fields (United States)'),
(32204, 'https://ror.org/05sb4tp69', 'no_lang_code', 1, 'https://ror.org/05sb4tp69 Global Engineering and Materials (United States)'),
(32205, 'https://ror.org/01ckgz972', 'no_lang_code', 1, 'https://ror.org/01ckgz972 Epsilon Lambda Electronics (United States)'),
(32206, 'https://ror.org/04hxkjw81', 'no_lang_code', 1, 'https://ror.org/04hxkjw81 Global Engineering Research and Technologies (United States)'),
(32207, 'https://ror.org/012ap0z55', 'no_lang_code', 1, 'https://ror.org/012ap0z55 Equinox (United States)'),
(32208, 'https://ror.org/051e8wd44', 'no_lang_code', 1, 'https://ror.org/051e8wd44 Digital Solid State Propulsion (United States)'),
(32209, 'https://ror.org/028jdjq42', 'no_lang_code', 1, 'https://ror.org/028jdjq42 Dominca (United States)'),
(32210, 'https://ror.org/04ehcx813', 'no_lang_code', 1, 'https://ror.org/04ehcx813 FTL Systems (United States)'),
(32211, 'https://ror.org/04wk8me05', 'no_lang_code', 1, 'https://ror.org/04wk8me05 Global InfoTek (United States)'),
(32212, 'https://ror.org/052syjz96', 'no_lang_code', 1, 'https://ror.org/052syjz96 Environmental Remediation Consultants (United States)'),
(32213, 'https://ror.org/00nq2vw96', 'no_lang_code', 1, 'https://ror.org/00nq2vw96 Fastvdo (United States)'),
(32214, 'https://ror.org/03jst3522', 'no_lang_code', 1, 'https://ror.org/03jst3522 Fulcrum Corporation (United States)'),
(32215, 'https://ror.org/02e10dg71', 'no_lang_code', 1, 'https://ror.org/02e10dg71 Fatigue Technology (United States)'),
(32216, 'https://ror.org/03e21eb82', 'no_lang_code', 1, 'https://ror.org/03e21eb82 Eriez (United States)'),
(32217, 'https://ror.org/01545pm61', 'no_lang_code', 1, 'https://ror.org/01545pm61 Analog Devices (United States)'),
(32218, 'https://ror.org/01br46v91', 'no_lang_code', 1, 'https://ror.org/01br46v91 Global Strategic Solutions (United States)'),
(32219, 'https://ror.org/01bch2f85', 'no_lang_code', 1, 'https://ror.org/01bch2f85 Erigo Technologies (United States)'),
(32220, 'https://ror.org/02t6ken40', 'no_lang_code', 1, 'https://ror.org/02t6ken40 Full Circle Research (United States)'),
(32221, 'https://ror.org/048d8vj36', 'no_lang_code', 1, 'https://ror.org/048d8vj36 Global Technology Connection (United States)'),
(32222, 'https://ror.org/0061brs54', 'no_lang_code', 1, 'https://ror.org/0061brs54 Escape Communications (United States)'),
(32223, 'https://ror.org/0288ss544', 'no_lang_code', 1, 'https://ror.org/0288ss544 Glomics (United States)'),
(32224, 'https://ror.org/02p1scb62', 'no_lang_code', 1, 'https://ror.org/02p1scb62 Greatbatch (United States)'),
(32225, 'https://ror.org/0375gyz30', 'no_lang_code', 1, 'https://ror.org/0375gyz30 Full Spectrum Technologies (United States)'),
(32226, 'https://ror.org/016e27a17', 'no_lang_code', 1, 'https://ror.org/016e27a17 Gloyer-Taylor Laboratories (United States)'),
(32227, 'https://ror.org/00450rp60', 'no_lang_code', 1, 'https://ror.org/00450rp60 Federal Fabrics Fibers (United States)'),
(32228, 'https://ror.org/00q29hr25', 'no_lang_code', 1, 'https://ror.org/00q29hr25 De Francisci Machine Company (United States)'),
(32229, 'https://ror.org/05vg9e808', 'no_lang_code', 1, 'https://ror.org/05vg9e808 Ferro Solutions (United States)'),
(32230, 'https://ror.org/00mmq8h56', 'no_lang_code', 1, 'https://ror.org/00mmq8h56 GoHypersonic (United States)'),
(32231, 'https://ror.org/03d8pfr88', 'no_lang_code', 1, 'https://ror.org/03d8pfr88 Optical Sciences Company (United States)'),
(32232, 'https://ror.org/038j31m11', 'no_lang_code', 1, 'https://ror.org/038j31m11 Essential Research (United States)'),
(32233, 'https://ror.org/04jn6q565', 'no_lang_code', 1, 'https://ror.org/04jn6q565 Goleta Star (United States)'),
(32234, 'https://ror.org/05rz01y20', 'no_lang_code', 1, 'https://ror.org/05rz01y20 Fieldmetrics (United States)'),
(32235, 'https://ror.org/0354agh42', 'no_lang_code', 1, 'https://ror.org/0354agh42 Fair Isaac Corporation (United States)'),
(32236, 'https://ror.org/01j1d9a35', 'no_lang_code', 1, 'https://ror.org/01j1d9a35 Filtration Solutions (United States)'),
(32237, 'https://ror.org/005t59805', 'no_lang_code', 1, 'https://ror.org/005t59805 First RF (United States)'),
(32238, 'https://ror.org/012dygg49', 'no_lang_code', 1, 'https://ror.org/012dygg49 FishEye Software (United States)'),
(32239, 'https://ror.org/01rybb297', 'no_lang_code', 1, 'https://ror.org/01rybb297 Edge Technologies (United States)'),
(32240, 'https://ror.org/05j2v5m42', 'no_lang_code', 1, 'https://ror.org/05j2v5m42 Five Stones Research Corporation (United States)'),
(32241, 'https://ror.org/01g07dr78', 'no_lang_code', 1, 'https://ror.org/01g07dr78 Green Mountain Radio Research (United States)'),
(32242, 'https://ror.org/02yyd0927', 'no_lang_code', 1, 'https://ror.org/02yyd0927 Holochip (United States)'),
(32243, 'https://ror.org/037rzqn07', 'no_lang_code', 1, 'https://ror.org/037rzqn07 FlexEl (United States)'),
(32244, 'https://ror.org/03n8zwa93', 'no_lang_code', 1, 'https://ror.org/03n8zwa93 Galorath (United States)'),
(32245, 'https://ror.org/005ehq652', 'no_lang_code', 1, 'https://ror.org/005ehq652 GBL Systems Corporation (United States)'),
(32246, 'https://ror.org/05m43a381', 'no_lang_code', 1, 'https://ror.org/05m43a381 Euclid Techlabs (United States)'),
(32247, 'https://ror.org/0526rb807', 'no_lang_code', 1, 'https://ror.org/0526rb807 Government Cost Accounting System (United States)'),
(32248, 'https://ror.org/0005rqp26', 'no_lang_code', 1, 'https://ror.org/0005rqp26 Netzsch (United States)'),
(32249, 'https://ror.org/007anfg84', 'no_lang_code', 1, 'https://ror.org/007anfg84 GS Engineering (United States)'),
(32250, 'https://ror.org/00y49kv97', 'no_lang_code', 1, 'https://ror.org/00y49kv97 Microwave Vision Group (United States)'),
(32251, 'https://ror.org/05fjnvm14', 'no_lang_code', 1, 'https://ror.org/05fjnvm14 Flow Analysis (United States)'),
(32252, 'https://ror.org/04r345w95', 'no_lang_code', 1, 'https://ror.org/04r345w95 GelTech Solutions (United States)'),
(32253, 'https://ror.org/01yhhvk26', 'no_lang_code', 1, 'https://ror.org/01yhhvk26 Honeybee Robotics (United States)'),
(32254, 'https://ror.org/02zcf8e64', 'no_lang_code', 1, 'https://ror.org/02zcf8e64 Gener8 (United States)'),
(32255, 'https://ror.org/05jjs7f83', 'no_lang_code', 1, 'https://ror.org/05jjs7f83 General Lasertronics Corporation (United States)'),
(32256, 'https://ror.org/023xh4g85', 'no_lang_code', 1, 'https://ror.org/023xh4g85 Eutecus (United States)'),
(32257, 'https://ror.org/037ck9w07', 'no_lang_code', 1, 'https://ror.org/037ck9w07 Flow Control Industries (United States)'),
(32258, 'https://ror.org/017frem55', 'no_lang_code', 1, 'https://ror.org/017frem55 General Nano (United States)'),
(32259, 'https://ror.org/02cr5sn51', 'no_lang_code', 1, 'https://ror.org/02cr5sn51 Guided Systems Technologies (United States)'),
(32260, 'https://ror.org/02g55p177', 'no_lang_code', 1, 'https://ror.org/02g55p177 Flow International Corporation (United States)'),
(32261, 'https://ror.org/02hbm8b43', 'no_lang_code', 1, 'https://ror.org/02hbm8b43 Evaporated Coatings (United States)'),
(32262, 'https://ror.org/05qj34p41', 'no_lang_code', 1, 'https://ror.org/05qj34p41 Hood Technology (United States)'),
(32263, 'https://ror.org/02ksqdr49', 'no_lang_code', 1, 'https://ror.org/02ksqdr49 General Sciences (United States)'),
(32264, 'https://ror.org/04tdm7z37', 'no_lang_code', 1, 'https://ror.org/04tdm7z37 Fluorochem (United States)'),
(32265, 'https://ror.org/01nk8bv65', 'no_lang_code', 1, 'https://ror.org/01nk8bv65 HPS Simulations (United States)'),
(32266, 'https://ror.org/03rqmey35', 'no_lang_code', 1, 'https://ror.org/03rqmey35 EverNu Technology (United States)'),
(32267, 'https://ror.org/031g86d21', 'no_lang_code', 1, 'https://ror.org/031g86d21 Hstar Technologies (United States)'),
(32268, 'https://ror.org/021tyky57', 'no_lang_code', 1, 'https://ror.org/021tyky57 Evidence Based Research (United States)'),
(32269, 'https://ror.org/006tfee03', 'no_lang_code', 1, 'https://ror.org/006tfee03 Evisive (United States)'),
(32270, 'https://ror.org/01642ad53', 'no_lang_code', 1, 'https://ror.org/01642ad53 Electronic Warfare Associates (United States)'),
(32271, 'https://ror.org/04t2ktq36', 'no_lang_code', 1, 'https://ror.org/04t2ktq36 Genvac Aerospace (United States)'),
(32272, 'https://ror.org/008952r45', 'no_lang_code', 1, 'https://ror.org/008952r45 Excellatron (United States)'),
(32273, 'https://ror.org/04ahd1307', 'no_lang_code', 1, 'https://ror.org/04ahd1307 Foam Matrix (United States)'),
(32274, 'https://ror.org/014kebm02', 'no_lang_code', 1, 'https://ror.org/014kebm02 Exfluor Research (United States)'),
(32275, 'https://ror.org/02fg2n207', 'no_lang_code', 1, 'https://ror.org/02fg2n207 Blue Wolf Capital Partners (United States)'),
(32276, 'https://ror.org/00f5xa066', 'no_lang_code', 1, 'https://ror.org/00f5xa066 ExoAnalytic Solutions (United States)'),
(32277, 'https://ror.org/00ze7b628', 'no_lang_code', 1, 'https://ror.org/00ze7b628 Geophex (United States)'),
(32278, 'https://ror.org/002sk1760', 'no_lang_code', 1, 'https://ror.org/002sk1760 Hy-Tek Manufacturing Company (United States)'),
(32279, 'https://ror.org/02kj36x76', 'no_lang_code', 1, 'https://ror.org/02kj36x76 Geotech Instruments (United States)'),
(32280, 'https://ror.org/04r8f0505', 'no_lang_code', 1, 'https://ror.org/04r8f0505 Oculus Innovative Sciences (United States)'),
(32281, 'https://ror.org/055pabd63', 'no_lang_code', 1, 'https://ror.org/055pabd63 IERUS Technologies (United States)'),
(32282, 'https://ror.org/00fh23037', 'no_lang_code', 1, 'https://ror.org/00fh23037 Michelman (United States)'),
(32283, 'https://ror.org/05am3rr09', 'no_lang_code', 1, 'https://ror.org/05am3rr09 H&R Technology (United States)'),
(32284, 'https://ror.org/0287k2v97', 'no_lang_code', 1, 'https://ror.org/0287k2v97 Hal Technology (United States)'),
(32285, 'https://ror.org/013g16z83', 'no_lang_code', 1, 'https://ror.org/013g16z83 Accenture (United States)'),
(32286, 'https://ror.org/01hr92802', 'no_lang_code', 1, 'https://ror.org/01hr92802 Hontek (United States)'),
(32287, 'https://ror.org/0131rtf77', 'no_lang_code', 1, 'https://ror.org/0131rtf77 II-VI (United States)'),
(32288, 'https://ror.org/0521thx35', 'no_lang_code', 1, 'https://ror.org/0521thx35 HLS Research (United States)'),
(32289, 'https://ror.org/02y8zvn85', 'no_lang_code', 1, 'https://ror.org/02y8zvn85 GP Technologies (United States)'),
(32290, 'https://ror.org/02knntf03', 'no_lang_code', 1, 'https://ror.org/02knntf03 IJ Research (United States)'),
(32291, 'https://ror.org/01q880378', 'no_lang_code', 1, 'https://ror.org/01q880378 Innovative Technology Applications (United States)'),
(32292, 'https://ror.org/04eddkf89', 'no_lang_code', 1, 'https://ror.org/04eddkf89 Illinois Rocstar (United States)'),
(32293, 'https://ror.org/01jzqw278', 'no_lang_code', 1, 'https://ror.org/01jzqw278 Helios Remote Sensing Systems (United States)'),
(32294, 'https://ror.org/03gwgww50', 'no_lang_code', 1, 'https://ror.org/03gwgww50 Rolls-Royce (United States)'),
(32295, 'https://ror.org/029xftc44', 'no_lang_code', 1, 'https://ror.org/029xftc44 Innovative Wireless Technologies (United States)'),
(32296, 'https://ror.org/05xc28811', 'no_lang_code', 1, 'https://ror.org/05xc28811 Image Acoustics (United States)'),
(32297, 'https://ror.org/024fgbf65', 'no_lang_code', 1, 'https://ror.org/024fgbf65 HEM Technologies (United States)'),
(32298, 'https://ror.org/01gk7a979', 'no_lang_code', 1, 'https://ror.org/01gk7a979 HyPerComp (United States)'),
(32299, 'https://ror.org/0395cym93', 'no_lang_code', 1, 'https://ror.org/0395cym93 Inovati (United States)'),
(32300, 'https://ror.org/03vgy2486', 'no_lang_code', 1, 'https://ror.org/03vgy2486 MacAulay-Brown (United States)'),
(32301, 'https://ror.org/043ejs261', 'no_lang_code', 1, 'https://ror.org/043ejs261 Hysitron (United States)'),
(32302, 'https://ror.org/05q86z175', 'no_lang_code', 1, 'https://ror.org/05q86z175 International Mezzo Technologies (United States)'),
(32303, 'https://ror.org/00kj3ag10', 'no_lang_code', 1, 'https://ror.org/00kj3ag10 Hentzen (United States)'),
(32304, 'https://ror.org/05kgcpg38', 'no_lang_code', 1, 'https://ror.org/05kgcpg38 Imagination Engines (United States)'),
(32305, 'https://ror.org/045whza52', 'no_lang_code', 1, 'https://ror.org/045whza52 Instrumental Sciences (United States)'),
(32306, 'https://ror.org/05e9f4749', 'no_lang_code', 1, 'https://ror.org/05e9f4749 Heron Systems (United States)'),
(32307, 'https://ror.org/004cdt922', 'no_lang_code', 1, 'https://ror.org/004cdt922 Illinois Tool Works (United States)'),
(32308, 'https://ror.org/020by8p54', 'no_lang_code', 1, 'https://ror.org/020by8p54 HexaTech (United States)'),
(32309, 'https://ror.org/02sg0rn97', 'no_lang_code', 1, 'https://ror.org/02sg0rn97 Integrated Adaptive Applications (United States)'),
(32310, 'https://ror.org/018k5nw16', 'no_lang_code', 1, 'https://ror.org/018k5nw16 IAP Research (United States)'),
(32311, 'https://ror.org/01a3xvy78', 'no_lang_code', 1, 'https://ror.org/01a3xvy78 Hi-Test Laboratories (United States)'),
(32312, 'https://ror.org/05m4pkm65', 'no_lang_code', 1, 'https://ror.org/05m4pkm65 IBC Coatings Technologies (United States)'),
(32313, 'https://ror.org/02tmzwm33', 'en', 1, 'https://ror.org/02tmzwm33 Guerci Consulting Services'),
(32314, 'https://ror.org/05e2hap84', 'no_lang_code', 1, 'https://ror.org/05e2hap84 Imperium (United States)'),
(32315, 'https://ror.org/01e89hk47', 'no_lang_code', 1, 'https://ror.org/01e89hk47 Energy Focus (United States)'),
(32316, 'https://ror.org/05j4ab836', 'no_lang_code', 1, 'https://ror.org/05j4ab836 IMSAR (United States)'),
(32317, 'https://ror.org/055r3qb62', 'no_lang_code', 1, 'https://ror.org/055r3qb62 IN Space (United States)'),
(32318, 'https://ror.org/04jp1vs97', 'no_lang_code', 1, 'https://ror.org/04jp1vs97 Hill Engineering (United States)'),
(32319, 'https://ror.org/05dp7m259', 'no_lang_code', 1, 'https://ror.org/05dp7m259 Integrated Software (United States)'),
(32320, 'https://ror.org/01tbz5p94', 'no_lang_code', 1, 'https://ror.org/01tbz5p94 Integrated Solutions for Systems (United States)'),
(32321, 'https://ror.org/01gbnn715', 'no_lang_code', 1, 'https://ror.org/01gbnn715 Indiana Microelectronics (United States)'),
(32322, 'https://ror.org/00az0wf23', 'no_lang_code', 1, 'https://ror.org/00az0wf23 Integrity Applications Incorporated (United States)'),
(32323, 'https://ror.org/00ysvtr77', 'no_lang_code', 1, 'https://ror.org/00ysvtr77 Thales (United States)'),
(32324, 'https://ror.org/00k1fnr45', 'no_lang_code', 1, 'https://ror.org/00k1fnr45 Integument Technologies (United States)'),
(32325, 'https://ror.org/01x4f0278', 'no_lang_code', 1, 'https://ror.org/01x4f0278 Thermacore (United States)'),
(32326, 'https://ror.org/03tk7a811', 'no_lang_code', 1, 'https://ror.org/03tk7a811 Industrial Filter & Pump Manufacturing (United States)'),
(32327, 'https://ror.org/044bcwg38', 'no_lang_code', 1, 'https://ror.org/044bcwg38 Intevac (United States)'),
(32328, 'https://ror.org/05jf45g20', 'no_lang_code', 1, 'https://ror.org/05jf45g20 KVH Industries (United States)'),
(32329, 'https://ror.org/0523w5y95', 'no_lang_code', 1, 'https://ror.org/0523w5y95 Industrial Measurement Systems (United States)'),
(32330, 'https://ror.org/00b4mz884', 'no_lang_code', 1, 'https://ror.org/00b4mz884 Sensors (United States)'),
(32331, 'https://ror.org/0422rme67', 'no_lang_code', 1, 'https://ror.org/0422rme67 Integrated Systems Solutions (United States)'),
(32332, 'https://ror.org/00v61f080', 'no_lang_code', 1, 'https://ror.org/00v61f080 Industrial Planning Technology (United States)'),
(32333, 'https://ror.org/00zegpe12', 'no_lang_code', 1, 'https://ror.org/00zegpe12 Morphix Technologies (United States)'),
(32334, 'https://ror.org/058ewaq25', 'no_lang_code', 1, 'https://ror.org/058ewaq25 IntraMicron (United States)'),
(32335, 'https://ror.org/04p7acy55', 'no_lang_code', 1, 'https://ror.org/04p7acy55 LNK (United States)'),
(32336, 'https://ror.org/01fz30h98', 'no_lang_code', 1, 'https://ror.org/01fz30h98 IntelliEPI (United States)'),
(32337, 'https://ror.org/05jekg408', 'no_lang_code', 1, 'https://ror.org/05jekg408 InferLink (United States)'),
(32338, 'https://ror.org/00x43jw16', 'no_lang_code', 1, 'https://ror.org/00x43jw16 Intrinsix (United States)'),
(32339, 'https://ror.org/048zxak11', 'no_lang_code', 1, 'https://ror.org/048zxak11 TEAM'),
(32340, 'https://ror.org/0064b6s04', 'no_lang_code', 1, 'https://ror.org/0064b6s04 Qnergy (United States)'),
(32341, 'https://ror.org/05depyc87', 'no_lang_code', 1, 'https://ror.org/05depyc87 L.Garde (United States)'),
(32342, 'https://ror.org/0465y5v04', 'no_lang_code', 1, 'https://ror.org/0465y5v04 Epsilon Systems (United States)'),
(32343, 'https://ror.org/04epbgw81', 'no_lang_code', 1, 'https://ror.org/04epbgw81 Lakota Technical Solutions (United States)'),
(32344, 'https://ror.org/05te6yt75', 'no_lang_code', 1, 'https://ror.org/05te6yt75 Intelligent Models (United States)'),
(32345, 'https://ror.org/00m8bhr79', 'no_lang_code', 1, 'https://ror.org/00m8bhr79 Kalos Technologies (United States)'),
(32346, 'https://ror.org/00jykkj27', 'no_lang_code', 1, 'https://ror.org/00jykkj27 Intuitive Research and Technology Corporation (United States)'),
(32347, 'https://ror.org/02d8hxb72', 'no_lang_code', 1, 'https://ror.org/02d8hxb72 Invariant Corporation (United States)'),
(32348, 'https://ror.org/0543jq429', 'no_lang_code', 1, 'https://ror.org/0543jq429 Kalscott Engineering (United States)'),
(32349, 'https://ror.org/00thhxf09', 'no_lang_code', 1, 'https://ror.org/00thhxf09 Lambda Instruments (United States)'),
(32350, 'https://ror.org/00w5b2218', 'no_lang_code', 1, 'https://ror.org/00w5b2218 Orbotech (United States)'),
(32351, 'https://ror.org/0129yjg29', 'no_lang_code', 1, 'https://ror.org/0129yjg29 Altamira Technologies'),
(32352, 'https://ror.org/04kfqps12', 'no_lang_code', 1, 'https://ror.org/04kfqps12 Information Extraction & Transport (United States)'),
(32353, 'https://ror.org/03y73tk19', 'no_lang_code', 1, 'https://ror.org/03y73tk19 InView Technology Corporation (United States)'),
(32354, 'https://ror.org/04wae4s50', 'no_lang_code', 1, 'https://ror.org/04wae4s50 Lambda Science (United States)'),
(32355, 'https://ror.org/05tqbw409', 'no_lang_code', 1, 'https://ror.org/05tqbw409 Information International Associates (United States)'),
(32356, 'https://ror.org/05r2bq179', 'no_lang_code', 1, 'https://ror.org/05r2bq179 Invocon (United States)'),
(32357, 'https://ror.org/05awxd849', 'no_lang_code', 1, 'https://ror.org/05awxd849 Viaspace (United States)'),
(32358, 'https://ror.org/02tajka68', 'no_lang_code', 1, 'https://ror.org/02tajka68 Kalsi Engineering (United States)'),
(32359, 'https://ror.org/0380ffk22', 'no_lang_code', 1, 'https://ror.org/0380ffk22 Karagozian & Case (United States)'),
(32360, 'https://ror.org/01reevc91', 'no_lang_code', 1, 'https://ror.org/01reevc91 Intelligent Systems Research (United States)'),
(32361, 'https://ror.org/05sdn2w97', 'no_lang_code', 1, 'https://ror.org/05sdn2w97 Integrated Photonics Technology (United States)'),
(32362, 'https://ror.org/049k0qb06', 'no_lang_code', 1, 'https://ror.org/049k0qb06 Information Systems Laboratories (United States)'),
(32363, 'https://ror.org/02g0pbt71', 'no_lang_code', 1, 'https://ror.org/02g0pbt71 Intelligent Systems Technology (United States)'),
(32364, 'https://ror.org/017k1wy04', 'no_lang_code', 1, 'https://ror.org/017k1wy04 Lasen (United States)'),
(32365, 'https://ror.org/02zryj468', 'no_lang_code', 1, 'https://ror.org/02zryj468 Irflex (United States)'),
(32366, 'https://ror.org/0309hgk38', 'no_lang_code', 1, 'https://ror.org/0309hgk38 Plasan (United States)'),
(32367, 'https://ror.org/022kdc073', 'no_lang_code', 1, 'https://ror.org/022kdc073 Iris Technology (United States)'),
(32368, 'https://ror.org/03qr5a489', 'no_lang_code', 1, 'https://ror.org/03qr5a489 Information System Technologies (United States)'),
(32369, 'https://ror.org/02ex4jy25', 'no_lang_code', 1, 'https://ror.org/02ex4jy25 iRobot (United States)'),
(32370, 'https://ror.org/03cb41332', 'no_lang_code', 1, 'https://ror.org/03cb41332 KCF Technologies (United States)'),
(32371, 'https://ror.org/040e70m72', 'no_lang_code', 1, 'https://ror.org/040e70m72 ISSAC (United States)'),
(32372, 'https://ror.org/04j9acc95', 'no_lang_code', 1, 'https://ror.org/04j9acc95 Infrared Laboratories (United States)'),
(32373, 'https://ror.org/0288pey56', 'no_lang_code', 1, 'https://ror.org/0288pey56 KLSS (United States)'),
(32374, 'https://ror.org/00q1jh816', 'no_lang_code', 1, 'https://ror.org/00q1jh816 Innoflight (United States)'),
(32375, 'https://ror.org/006z2nm40', 'no_lang_code', 1, 'https://ror.org/006z2nm40 Newport (United States)'),
(32376, 'https://ror.org/03ez0dn33', 'no_lang_code', 1, 'https://ror.org/03ez0dn33 Maryland Aerospace (United States)'),
(32377, 'https://ror.org/00q0w7q33', 'no_lang_code', 1, 'https://ror.org/00q0w7q33 J.B. Anderson & Son (United States)'),
(32378, 'https://ror.org/0153e7534', 'no_lang_code', 1, 'https://ror.org/0153e7534 Interdisciplinary Consulting Corporation (United States)');
INSERT INTO `rors` VALUES
(32379, 'https://ror.org/01mqf7t37', 'no_lang_code', 1, 'https://ror.org/01mqf7t37 DragoonITCN (United States)'),
(32380, 'https://ror.org/044txnm15', 'no_lang_code', 1, 'https://ror.org/044txnm15 1Spatial (United States)'),
(32381, 'https://ror.org/04a0z8p03', 'no_lang_code', 1, 'https://ror.org/04a0z8p03 J.A. Woollam Company (United States)'),
(32382, 'https://ror.org/04hzq0286', 'no_lang_code', 1, 'https://ror.org/04hzq0286 Keystone Synergistic Enterprises (United States)'),
(32383, 'https://ror.org/02r9x2x37', 'no_lang_code', 1, 'https://ror.org/02r9x2x37 InnovaTek (United States)'),
(32384, 'https://ror.org/030tskq39', 'no_lang_code', 1, 'https://ror.org/030tskq39 Kigre (United States)'),
(32385, 'https://ror.org/057tmpb95', 'no_lang_code', 1, 'https://ror.org/057tmpb95 International Association of Virtual Organizations (United States)'),
(32386, 'https://ror.org/05qdsyx92', 'no_lang_code', 1, 'https://ror.org/05qdsyx92 International Electronic Machines (United States)'),
(32387, 'https://ror.org/02mab7v83', 'no_lang_code', 1, 'https://ror.org/02mab7v83 Potawatomi Business Development (United States)'),
(32388, 'https://ror.org/022t22x02', 'no_lang_code', 1, 'https://ror.org/022t22x02 Kinetic BEI (United States)'),
(32389, 'https://ror.org/00kkt6q96', 'no_lang_code', 1, 'https://ror.org/00kkt6q96 Dynacast (United States)'),
(32390, 'https://ror.org/04697zk19', 'no_lang_code', 1, 'https://ror.org/04697zk19 Innovative Configuration (United States)'),
(32391, 'https://ror.org/0271r8814', 'no_lang_code', 1, 'https://ror.org/0271r8814 Kion Defense Technologies (United States)'),
(32392, 'https://ror.org/00fed8j81', 'no_lang_code', 1, 'https://ror.org/00fed8j81 Laser Operations (United States)'),
(32393, 'https://ror.org/04y7nvm17', 'no_lang_code', 1, 'https://ror.org/04y7nvm17 Innovative Defense Technologies (United States)'),
(32394, 'https://ror.org/05hp6hk95', 'no_lang_code', 1, 'https://ror.org/05hp6hk95 APi Group (United States)'),
(32395, 'https://ror.org/052cd4384', 'no_lang_code', 1, 'https://ror.org/052cd4384 JDLL (United States)'),
(32396, 'https://ror.org/025a5nc26', 'no_lang_code', 1, 'https://ror.org/025a5nc26 JEM Engineering (United States)'),
(32397, 'https://ror.org/043m01p16', 'no_lang_code', 1, 'https://ror.org/043m01p16 Innovative Dynamics (United States)'),
(32398, 'https://ror.org/04566sr16', 'no_lang_code', 1, 'https://ror.org/04566sr16 Jentek Sensors (United States)'),
(32399, 'https://ror.org/03jbyh296', 'no_lang_code', 1, 'https://ror.org/03jbyh296 Left Hand Design (United States)'),
(32400, 'https://ror.org/01wm1ge07', 'no_lang_code', 1, 'https://ror.org/01wm1ge07 Littoral Research Group (United States)'),
(32401, 'https://ror.org/01zxe4w25', 'no_lang_code', 1, 'https://ror.org/01zxe4w25 Innovative Research (United States)'),
(32402, 'https://ror.org/04b019n96', 'no_lang_code', 1, 'https://ror.org/04b019n96 LiveData (United States)'),
(32403, 'https://ror.org/00nd3ps77', 'no_lang_code', 1, 'https://ror.org/00nd3ps77 Level Set Systems (United States)'),
(32404, 'https://ror.org/04vnw0c78', 'no_lang_code', 1, 'https://ror.org/04vnw0c78 Lewis Innovative Technologies (United States)'),
(32405, 'https://ror.org/045pt6r46', 'no_lang_code', 1, 'https://ror.org/045pt6r46 Makel Engineering (United States)'),
(32406, 'https://ror.org/00x187281', 'no_lang_code', 1, 'https://ror.org/00x187281 Knobley Technical Associates (United States)'),
(32407, 'https://ror.org/01cxmjx85', 'no_lang_code', 1, 'https://ror.org/01cxmjx85 LoadPath (United States)'),
(32408, 'https://ror.org/025qzmf95', 'no_lang_code', 1, 'https://ror.org/025qzmf95 Logikos (United States)'),
(32409, 'https://ror.org/00wqezk94', 'no_lang_code', 1, 'https://ror.org/00wqezk94 Intelligent Light (United States)'),
(32410, 'https://ror.org/008c12b21', 'no_lang_code', 1, 'https://ror.org/008c12b21 Communications & Power Industries (United States)'),
(32411, 'https://ror.org/0423wr780', 'no_lang_code', 1, 'https://ror.org/0423wr780 Job Performance Systems (United States)'),
(32412, 'https://ror.org/03bqa6225', 'no_lang_code', 1, 'https://ror.org/03bqa6225 UAV Turbines (United States)'),
(32413, 'https://ror.org/010hpfk35', 'no_lang_code', 1, 'https://ror.org/010hpfk35 Li Creative Technologies (United States)'),
(32414, 'https://ror.org/0221y4w38', 'no_lang_code', 1, 'https://ror.org/0221y4w38 Johnson Research & Development (United States)'),
(32415, 'https://ror.org/05shz5j84', 'no_lang_code', 1, 'https://ror.org/05shz5j84 Management Sciences (United States)'),
(32416, 'https://ror.org/012pww143', 'no_lang_code', 1, 'https://ror.org/012pww143 Logos Technologies (United States)'),
(32417, 'https://ror.org/01949vb52', 'no_lang_code', 1, 'https://ror.org/01949vb52 OptiGrate (United States)'),
(32418, 'https://ror.org/010t23411', 'no_lang_code', 1, 'https://ror.org/010t23411 MTS3 (United States)'),
(32419, 'https://ror.org/00wjbbg08', 'no_lang_code', 1, 'https://ror.org/00wjbbg08 Loki (United States)'),
(32420, 'https://ror.org/011cttk80', 'no_lang_code', 1, 'https://ror.org/011cttk80 Manning Applied Technology (United States)'),
(32421, 'https://ror.org/03vyh9251', 'no_lang_code', 1, 'https://ror.org/03vyh9251 LightSpin Technologies (United States)'),
(32422, 'https://ror.org/05kdrns38', 'no_lang_code', 1, 'https://ror.org/05kdrns38 Sierra Engineering (United States)'),
(32423, 'https://ror.org/01v392555', 'no_lang_code', 1, 'https://ror.org/01v392555 Koo & Associates International (United States)'),
(32424, 'https://ror.org/04ymvv874', 'no_lang_code', 1, 'https://ror.org/04ymvv874 Maritime Applied Physics Corporation (United States)'),
(32425, 'https://ror.org/02t9nbh81', 'no_lang_code', 1, 'https://ror.org/02t9nbh81 Lowell Digisonde International (United States)'),
(32426, 'https://ror.org/00yk56168', 'no_lang_code', 1, 'https://ror.org/00yk56168 MARK Resources (United States)'),
(32427, 'https://ror.org/02rd7bb97', 'no_lang_code', 1, 'https://ror.org/02rd7bb97 Mercury Systems (United States)'),
(32428, 'https://ror.org/05wntbe07', 'no_lang_code', 1, 'https://ror.org/05wntbe07 LPA Software Solutions (United States)'),
(32429, 'https://ror.org/05d7pyf88', 'no_lang_code', 1, 'https://ror.org/05d7pyf88 Kord Technologies (United States)'),
(32430, 'https://ror.org/04kx6mx16', 'no_lang_code', 1, 'https://ror.org/04kx6mx16 JRM Technologies (United States)'),
(32431, 'https://ror.org/04ssj3y56', 'no_lang_code', 1, 'https://ror.org/04ssj3y56 LSP Technologies (United States)'),
(32432, 'https://ror.org/00kp81a07', 'no_lang_code', 1, 'https://ror.org/00kp81a07 JX Crystals (United States)'),
(32433, 'https://ror.org/047dhbt11', 'no_lang_code', 1, 'https://ror.org/047dhbt11 Marotta Controls (United States)'),
(32434, 'https://ror.org/03kes6q06', 'no_lang_code', 1, 'https://ror.org/03kes6q06 Ludlum Measurements (United States)'),
(32435, 'https://ror.org/02tqbra66', 'no_lang_code', 1, 'https://ror.org/02tqbra66 MaxPower (United States)'),
(32436, 'https://ror.org/01mcvy510', 'en', 1, 'https://ror.org/01mcvy510 Harvard College Observatory'),
(32437, 'https://ror.org/03st6mq49', 'no_lang_code', 1, 'https://ror.org/03st6mq49 LightWorks (United States)'),
(32438, 'https://ror.org/01k6cv303', 'no_lang_code', 1, 'https://ror.org/01k6cv303 API Technologies (United States)'),
(32439, 'https://ror.org/02968zb41', 'no_lang_code', 1, 'https://ror.org/02968zb41 Assa Abloy (United States)'),
(32440, 'https://ror.org/0546qf840', 'no_lang_code', 1, 'https://ror.org/0546qf840 MAYA Design (United States)'),
(32441, 'https://ror.org/00ngrw992', 'no_lang_code', 1, 'https://ror.org/00ngrw992 Linden Photonics (United States)'),
(32442, 'https://ror.org/02zxar492', 'no_lang_code', 1, 'https://ror.org/02zxar492 Kulite (United States)'),
(32443, 'https://ror.org/00q5f5t70', 'no_lang_code', 1, 'https://ror.org/00q5f5t70 Luminit (United States)'),
(32444, 'https://ror.org/02pvba079', 'no_lang_code', 1, 'https://ror.org/02pvba079 Mayachitra (United States)'),
(32445, 'https://ror.org/03tnwmt68', 'no_lang_code', 1, 'https://ror.org/03tnwmt68 Massa Products (United States)'),
(32446, 'https://ror.org/04b46da24', 'no_lang_code', 1, 'https://ror.org/04b46da24 Mayflower Communications (United States)'),
(32447, 'https://ror.org/01m290237', 'no_lang_code', 1, 'https://ror.org/01m290237 Lindsay Associates Architects (United States)'),
(32448, 'https://ror.org/00kyrfw38', 'no_lang_code', 1, 'https://ror.org/00kyrfw38 McGaw Technology (United States)'),
(32449, 'https://ror.org/04n91v483', 'no_lang_code', 1, 'https://ror.org/04n91v483 Metron (United States)'),
(32450, 'https://ror.org/00cz5rb58', 'no_lang_code', 1, 'https://ror.org/00cz5rb58 Salutron (United States)'),
(32451, 'https://ror.org/01aq0x225', 'no_lang_code', 1, 'https://ror.org/01aq0x225 Luxel (United States)'),
(32452, 'https://ror.org/02qjpax34', 'no_lang_code', 1, 'https://ror.org/02qjpax34 Material Concepts (United States)'),
(32453, 'https://ror.org/00yd8v543', 'no_lang_code', 1, 'https://ror.org/00yd8v543 McQ (United States)'),
(32454, 'https://ror.org/05ejn6z75', 'no_lang_code', 1, 'https://ror.org/05ejn6z75 Metronome (United States)'),
(32455, 'https://ror.org/01148ya73', 'no_lang_code', 1, 'https://ror.org/01148ya73 Material Innovations (United States)'),
(32456, 'https://ror.org/0337qzr68', 'no_lang_code', 1, 'https://ror.org/0337qzr68 Linearizer Technology (United States)'),
(32457, 'https://ror.org/05jnt4x38', 'no_lang_code', 1, 'https://ror.org/05jnt4x38 METSS (United States)'),
(32458, 'https://ror.org/01ydcrt14', 'no_lang_code', 1, 'https://ror.org/01ydcrt14 Lumir Research Institute (United States)'),
(32459, 'https://ror.org/028hejq20', 'no_lang_code', 1, 'https://ror.org/028hejq20 LinkNet (United States)'),
(32460, 'https://ror.org/05j00pb84', 'no_lang_code', 1, 'https://ror.org/05j00pb84 Materials Processing (United States)'),
(32461, 'https://ror.org/04sk2fc62', 'no_lang_code', 1, 'https://ror.org/04sk2fc62 Materials Research & Design (United States)'),
(32462, 'https://ror.org/01nr1y793', 'no_lang_code', 1, 'https://ror.org/01nr1y793 LinQuest (United States)'),
(32463, 'https://ror.org/04x4c2m45', 'no_lang_code', 1, 'https://ror.org/04x4c2m45 Springmatter (United States)'),
(32464, 'https://ror.org/035kh8h98', 'no_lang_code', 1, 'https://ror.org/035kh8h98 Measurement Technology Northwest (United States)'),
(32465, 'https://ror.org/019s9g820', 'no_lang_code', 1, 'https://ror.org/019s9g820 Mechanical Solutions (United States)'),
(32466, 'https://ror.org/04md8p839', 'no_lang_code', 1, 'https://ror.org/04md8p839 Materials Research Institute (United States)'),
(32467, 'https://ror.org/05wmge648', 'no_lang_code', 1, 'https://ror.org/05wmge648 Lite Machines (United States)'),
(32468, 'https://ror.org/026tmj997', 'no_lang_code', 1, 'https://ror.org/026tmj997 Materials Sciences (United States)'),
(32469, 'https://ror.org/04r4qwn25', 'no_lang_code', 1, 'https://ror.org/04r4qwn25 Proxim (United States)'),
(32470, 'https://ror.org/05bhj5e29', 'no_lang_code', 1, 'https://ror.org/05bhj5e29 Azmark Aero System (United States)'),
(32471, 'https://ror.org/027smmx64', 'no_lang_code', 1, 'https://ror.org/027smmx64 Materials Systems (United States)'),
(32472, 'https://ror.org/01fpkk097', 'no_lang_code', 1, 'https://ror.org/01fpkk097 MegaWave (United States)'),
(32473, 'https://ror.org/05rcmw333', 'no_lang_code', 1, 'https://ror.org/05rcmw333 Materials Technologies (United States)'),
(32474, 'https://ror.org/056c5ze41', 'no_lang_code', 1, 'https://ror.org/056c5ze41 M. Alexander Nugent Consulting (United States)'),
(32475, 'https://ror.org/00ntx3406', 'no_lang_code', 1, 'https://ror.org/00ntx3406 Micro Cooling Concepts (United States)'),
(32476, 'https://ror.org/00apfvn95', 'no_lang_code', 1, 'https://ror.org/00apfvn95 Mathematical Systems & Solutions (United States)'),
(32477, 'https://ror.org/04h08bc47', 'no_lang_code', 1, 'https://ror.org/04h08bc47 M4 Engineering (United States)'),
(32478, 'https://ror.org/058vwmj73', 'no_lang_code', 1, 'https://ror.org/058vwmj73 MicroAssembly Technologies (United States)'),
(32479, 'https://ror.org/03btg3r19', 'no_lang_code', 1, 'https://ror.org/03btg3r19 MWT Materials (United States)'),
(32480, 'https://ror.org/03ce7te88', 'no_lang_code', 1, 'https://ror.org/03ce7te88 Mach I (United States)'),
(32481, 'https://ror.org/050hn9p12', 'no_lang_code', 1, 'https://ror.org/050hn9p12 Menon International (United States)'),
(32482, 'https://ror.org/03qqbvj08', 'no_lang_code', 1, 'https://ror.org/03qqbvj08 PTC (United States)'),
(32483, 'https://ror.org/01rwvcf75', 'no_lang_code', 1, 'https://ror.org/01rwvcf75 Mentis Sciences (United States)'),
(32484, 'https://ror.org/052q16111', 'no_lang_code', 1, 'https://ror.org/052q16111 Mathtech (United States)'),
(32485, 'https://ror.org/05vewsj04', 'en', 1, 'https://ror.org/05vewsj04 Mentor Technologies'),
(32486, 'https://ror.org/04mw0p229', 'no_lang_code', 1, 'https://ror.org/04mw0p229 Matrix Research (United States)'),
(32487, 'https://ror.org/02wev3m05', 'no_lang_code', 1, 'https://ror.org/02wev3m05 Matsys (United States)'),
(32488, 'https://ror.org/05p76h610', 'no_lang_code', 1, 'https://ror.org/05p76h610 MagiQ Technologies (United States)'),
(32489, 'https://ror.org/05npcf755', 'no_lang_code', 1, 'https://ror.org/05npcf755 Microcom (United States)'),
(32490, 'https://ror.org/01vx3k426', 'no_lang_code', 1, 'https://ror.org/01vx3k426 Maverick (United States)'),
(32491, 'https://ror.org/0203dma96', 'no_lang_code', 1, 'https://ror.org/0203dma96 MESH (United States)'),
(32492, 'https://ror.org/00nag1e52', 'no_lang_code', 1, 'https://ror.org/00nag1e52 Magnolia Optical Technologies (United States)'),
(32493, 'https://ror.org/02ddbvr12', 'no_lang_code', 1, 'https://ror.org/02ddbvr12 MicroContinuum (United States)'),
(32494, 'https://ror.org/045cazh10', 'no_lang_code', 1, 'https://ror.org/045cazh10 Smiths Interconnect (United States)'),
(32495, 'https://ror.org/0442rep98', 'no_lang_code', 1, 'https://ror.org/0442rep98 Abakan (United States)'),
(32496, 'https://ror.org/038d4gk82', 'no_lang_code', 1, 'https://ror.org/038d4gk82 MaXentric Technologies (United States)'),
(32497, 'https://ror.org/044ac0f56', 'no_lang_code', 1, 'https://ror.org/044ac0f56 Magnolia Solar (United States)'),
(32498, 'https://ror.org/02a3gym89', 'no_lang_code', 1, 'https://ror.org/02a3gym89 MTECH Laboratories (United States)'),
(32499, 'https://ror.org/0338vpb86', 'no_lang_code', 1, 'https://ror.org/0338vpb86 Microelectronics Research Development (United States)'),
(32500, 'https://ror.org/0593wzx95', 'no_lang_code', 1, 'https://ror.org/0593wzx95 Ballard Power Systems (United States)'),
(32501, 'https://ror.org/00ghhyx51', 'no_lang_code', 1, 'https://ror.org/00ghhyx51 CACI International (United States)'),
(32502, 'https://ror.org/05vpcsf30', 'no_lang_code', 1, 'https://ror.org/05vpcsf30 VT Systems (United States)'),
(32503, 'https://ror.org/049p7zw58', 'no_lang_code', 1, 'https://ror.org/049p7zw58 MesoScribe Technologies (United States)'),
(32504, 'https://ror.org/05qm89p23', 'no_lang_code', 1, 'https://ror.org/05qm89p23 Makai Ocean Engineering (United States)'),
(32505, 'https://ror.org/01c2xde22', 'no_lang_code', 1, 'https://ror.org/01c2xde22 Ducommun (United States)'),
(32506, 'https://ror.org/0240wfg28', 'no_lang_code', 1, 'https://ror.org/0240wfg28 MTS Technologies (United States)'),
(32507, 'https://ror.org/05cxavv95', 'no_lang_code', 1, 'https://ror.org/05cxavv95 Metacomp Technologies (United States)'),
(32508, 'https://ror.org/00f58bn11', 'no_lang_code', 1, 'https://ror.org/00f58bn11 Mudawar Thermal Systems (United States)'),
(32509, 'https://ror.org/04f5gee24', 'no_lang_code', 1, 'https://ror.org/04f5gee24 Nelson Engineering (United States)'),
(32510, 'https://ror.org/03aavtt27', 'no_lang_code', 1, 'https://ror.org/03aavtt27 Minerva Systems & Technologies (United States)'),
(32511, 'https://ror.org/03htcwb41', 'no_lang_code', 1, 'https://ror.org/03htcwb41 Metal Oxide Technologies (United States)'),
(32512, 'https://ror.org/040s9tj83', 'no_lang_code', 1, 'https://ror.org/040s9tj83 Zebra Technologies (United States)'),
(32513, 'https://ror.org/052hy8d96', 'no_lang_code', 1, 'https://ror.org/052hy8d96 Microphase Coatings (United States)'),
(32514, 'https://ror.org/01zwnkm40', 'no_lang_code', 1, 'https://ror.org/01zwnkm40 Minnesota Wire (United States)'),
(32515, 'https://ror.org/05vcq0t75', 'no_lang_code', 1, 'https://ror.org/05vcq0t75 Metis Design Corporation (United States)'),
(32516, 'https://ror.org/05x181c75', 'no_lang_code', 1, 'https://ror.org/05x181c75 Optonicus (United States)'),
(32517, 'https://ror.org/027r7x563', 'no_lang_code', 1, 'https://ror.org/027r7x563 Net Squared (United States)'),
(32518, 'https://ror.org/01d4rpj46', 'no_lang_code', 1, 'https://ror.org/01d4rpj46 MicroVision (United States)'),
(32519, 'https://ror.org/01d59wc32', 'no_lang_code', 1, 'https://ror.org/01d59wc32 Metna (United States)'),
(32520, 'https://ror.org/03encks65', 'no_lang_code', 1, 'https://ror.org/03encks65 Microwave Bonding Instruments (United States)'),
(32521, 'https://ror.org/017me6m94', 'no_lang_code', 1, 'https://ror.org/017me6m94 Microwave Monolithics (United States)'),
(32522, 'https://ror.org/024zyky79', 'no_lang_code', 1, 'https://ror.org/024zyky79 Network Sensing Technologies (United States)'),
(32523, 'https://ror.org/05twhx581', 'no_lang_code', 1, 'https://ror.org/05twhx581 Metric Systems Corporation (United States)'),
(32524, 'https://ror.org/02990z368', 'no_lang_code', 1, 'https://ror.org/02990z368 MicroXact (United States)'),
(32525, 'https://ror.org/0381kee24', 'no_lang_code', 1, 'https://ror.org/0381kee24 MYMIC (United States)'),
(32526, 'https://ror.org/016k8tv59', 'no_lang_code', 1, 'https://ror.org/016k8tv59 Solvay (United States)'),
(32527, 'https://ror.org/00r1rs707', 'no_lang_code', 1, 'https://ror.org/00r1rs707 Mirion Technologies (United States)'),
(32528, 'https://ror.org/01vatmj83', 'no_lang_code', 1, 'https://ror.org/01vatmj83 MZA Associates (United States)'),
(32529, 'https://ror.org/00xfzzb18', 'no_lang_code', 1, 'https://ror.org/00xfzzb18 Neva Ridge Technologies (United States)'),
(32530, 'https://ror.org/02bh3n268', 'no_lang_code', 1, 'https://ror.org/02bh3n268 MidƩ Technology (United States)'),
(32531, 'https://ror.org/05sdssj84', 'no_lang_code', 1, 'https://ror.org/05sdssj84 New England Research (United States)'),
(32532, 'https://ror.org/01q1xmp44', 'no_lang_code', 1, 'https://ror.org/01q1xmp44 MKP Structural Design Associates (United States)'),
(32533, 'https://ror.org/00png4t13', 'no_lang_code', 1, 'https://ror.org/00png4t13 mZeal Communications (United States)'),
(32534, 'https://ror.org/05qkx3604', 'no_lang_code', 1, 'https://ror.org/05qkx3604 Migma (United States)'),
(32535, 'https://ror.org/02werpm25', 'no_lang_code', 1, 'https://ror.org/02werpm25 MMA Design (United States)'),
(32536, 'https://ror.org/03g0ec482', 'no_lang_code', 1, 'https://ror.org/03g0ec482 NAL Research (United States)'),
(32537, 'https://ror.org/04n4d5575', 'no_lang_code', 1, 'https://ror.org/04n4d5575 Nu-Trek (United States)'),
(32538, 'https://ror.org/01tb3h052', 'no_lang_code', 1, 'https://ror.org/01tb3h052 Next Century Corporation (United States)'),
(32539, 'https://ror.org/05y76jh28', 'no_lang_code', 1, 'https://ror.org/05y76jh28 Morcom International (United States)'),
(32540, 'https://ror.org/01b1yxa46', 'no_lang_code', 1, 'https://ror.org/01b1yxa46 MMICMAN (United States)'),
(32541, 'https://ror.org/05snhb688', 'no_lang_code', 1, 'https://ror.org/05snhb688 NextGen Aeronautics (United States)'),
(32542, 'https://ror.org/01d7ehm71', 'no_lang_code', 1, 'https://ror.org/01d7ehm71 Mobile Intelligence (United States)'),
(32543, 'https://ror.org/03f2xpf83', 'no_lang_code', 1, 'https://ror.org/03f2xpf83 Vesta Sciences (United States)'),
(32544, 'https://ror.org/02k50y650', 'no_lang_code', 1, 'https://ror.org/02k50y650 Mikros Systems (United States)'),
(32545, 'https://ror.org/0171fce94', 'no_lang_code', 1, 'https://ror.org/0171fce94 Neya Systems (United States)'),
(32546, 'https://ror.org/035yp8515', 'no_lang_code', 1, 'https://ror.org/035yp8515 Modern Technology Solutions (United States)'),
(32547, 'https://ror.org/04c9me270', 'no_lang_code', 1, 'https://ror.org/04c9me270 Milcord (United States)'),
(32548, 'https://ror.org/039463c38', 'no_lang_code', 1, 'https://ror.org/039463c38 Nalas Engineering Services (United States)'),
(32549, 'https://ror.org/04b4pz972', 'no_lang_code', 1, 'https://ror.org/04b4pz972 Modus Operandi (United States)'),
(32550, 'https://ror.org/020am1515', 'no_lang_code', 1, 'https://ror.org/020am1515 Nico Technologies (United States)'),
(32551, 'https://ror.org/05cjg8w59', 'no_lang_code', 1, 'https://ror.org/05cjg8w59 NanoLab (United States)'),
(32552, 'https://ror.org/04w1bc909', 'no_lang_code', 1, 'https://ror.org/04w1bc909 MOHR Test and Measurement (United States)'),
(32553, 'https://ror.org/05pwx6044', 'no_lang_code', 1, 'https://ror.org/05pwx6044 NuCrypt (United States)'),
(32554, 'https://ror.org/04j9nyn50', 'no_lang_code', 1, 'https://ror.org/04j9nyn50 Nielsen Engineering & Research (United States)'),
(32555, 'https://ror.org/03e26cs04', 'no_lang_code', 1, 'https://ror.org/03e26cs04 NumerEx (United States)'),
(32556, 'https://ror.org/04zz3cg37', 'no_lang_code', 1, 'https://ror.org/04zz3cg37 Monterey Technologies (United States)'),
(32557, 'https://ror.org/05pvrkb04', 'no_lang_code', 1, 'https://ror.org/05pvrkb04 Innosys (United States)'),
(32558, 'https://ror.org/01j5et233', 'no_lang_code', 1, 'https://ror.org/01j5et233 Numerica Corporation (United States)'),
(32559, 'https://ror.org/01cxj0y97', 'no_lang_code', 1, 'https://ror.org/01cxj0y97 Nanophase Technologies (United States)'),
(32560, 'https://ror.org/05qmdfk04', 'no_lang_code', 1, 'https://ror.org/05qmdfk04 Millennium Engineering and Integration (United States)'),
(32561, 'https://ror.org/01x0ypd40', 'no_lang_code', 1, 'https://ror.org/01x0ypd40 Morton Photonics (United States)'),
(32562, 'https://ror.org/04wf6rg14', 'no_lang_code', 1, 'https://ror.org/04wf6rg14 MACOM (United States)'),
(32563, 'https://ror.org/0583kge49', 'no_lang_code', 1, 'https://ror.org/0583kge49 Mosaic ATM (United States)'),
(32564, 'https://ror.org/043s2sj95', 'no_lang_code', 1, 'https://ror.org/043s2sj95 Nanotrons (United States)'),
(32565, 'https://ror.org/04d832p61', 'no_lang_code', 1, 'https://ror.org/04d832p61 Nutronics (United States)'),
(32566, 'https://ror.org/05g702x36', 'no_lang_code', 1, 'https://ror.org/05g702x36 Phillips Service Industries (United States)'),
(32567, 'https://ror.org/050whk651', 'no_lang_code', 1, 'https://ror.org/050whk651 Nlogic (United States)'),
(32568, 'https://ror.org/04gf4dd67', 'no_lang_code', 1, 'https://ror.org/04gf4dd67 Systems & Processes Engineering Corporation (United States)'),
(32569, 'https://ror.org/02k4ca766', 'no_lang_code', 1, 'https://ror.org/02k4ca766 NuWaves Engineering (United States)'),
(32570, 'https://ror.org/04mseyk78', 'no_lang_code', 1, 'https://ror.org/04mseyk78 NDI Engineering Company (United States)'),
(32571, 'https://ror.org/01ybxby37', 'no_lang_code', 1, 'https://ror.org/01ybxby37 Noisecom (United States)'),
(32572, 'https://ror.org/05x9ajk82', 'no_lang_code', 1, 'https://ror.org/05x9ajk82 Nokomis (United States)'),
(32573, 'https://ror.org/040ep7n71', 'no_lang_code', 1, 'https://ror.org/040ep7n71 Near Earth Autonomy (United States)'),
(32574, 'https://ror.org/02v8p6669', 'no_lang_code', 1, 'https://ror.org/02v8p6669 Omnitek Partners (United States)'),
(32575, 'https://ror.org/01mcgws81', 'no_lang_code', 1, 'https://ror.org/01mcgws81 ObjectVideo (United States)'),
(32576, 'https://ror.org/059vrj561', 'no_lang_code', 1, 'https://ror.org/059vrj561 Orbit Logic (United States)'),
(32577, 'https://ror.org/05wjg2334', 'no_lang_code', 1, 'https://ror.org/05wjg2334 STARR Life Sciences (United States)'),
(32578, 'https://ror.org/00cnb1p42', 'no_lang_code', 1, 'https://ror.org/00cnb1p42 Ocean Acoustical Services and Instrumentation Systems (United States)'),
(32579, 'https://ror.org/00tgd3g89', 'no_lang_code', 1, 'https://ror.org/00tgd3g89 Ontar (United States)'),
(32580, 'https://ror.org/05amww303', 'no_lang_code', 1, 'https://ror.org/05amww303 InterSyn Technologies (United States)'),
(32581, 'https://ror.org/0000xgr97', 'no_lang_code', 1, 'https://ror.org/0000xgr97 Onyx Optics (United States)'),
(32582, 'https://ror.org/01mqp0v57', 'en', 1, 'https://ror.org/01mqp0v57 Montana Economic Revitalization and Development Institute'),
(32583, 'https://ror.org/02my4g447', 'no_lang_code', 1, 'https://ror.org/02my4g447 Ocean Power Technologies (United States)'),
(32584, 'https://ror.org/03rnj7j86', 'no_lang_code', 1, 'https://ror.org/03rnj7j86 Ordela (United States)'),
(32585, 'https://ror.org/02g8zn394', 'no_lang_code', 1, 'https://ror.org/02g8zn394 Nova Management (United States)'),
(32586, 'https://ror.org/026k6c650', 'no_lang_code', 1, 'https://ror.org/026k6c650 Orielle (United States)'),
(32587, 'https://ror.org/02qzya303', 'no_lang_code', 1, 'https://ror.org/02qzya303 NovaSpectra (United States)'),
(32588, 'https://ror.org/000wq3b85', 'no_lang_code', 1, 'https://ror.org/000wq3b85 Iteris (United States)'),
(32589, 'https://ror.org/01c9a4v35', 'no_lang_code', 1, 'https://ror.org/01c9a4v35 Novatio Engineering (United States)'),
(32590, 'https://ror.org/03hkx5x33', 'no_lang_code', 1, 'https://ror.org/03hkx5x33 Ormond (United States)'),
(32591, 'https://ror.org/01n29bn70', 'no_lang_code', 1, 'https://ror.org/01n29bn70 Peregrine Falcon (United States)'),
(32592, 'https://ror.org/012j0vk40', 'no_lang_code', 1, 'https://ror.org/012j0vk40 POET Technologies (United States)'),
(32593, 'https://ror.org/04s705w68', 'no_lang_code', 1, 'https://ror.org/04s705w68 Nscrypt (United States)'),
(32594, 'https://ror.org/05h95z887', 'no_lang_code', 1, 'https://ror.org/05h95z887 Orono Spectral Solutions (United States)'),
(32595, 'https://ror.org/04jhtcf60', 'no_lang_code', 1, 'https://ror.org/04jhtcf60 Orora Design Technologies (United States)'),
(32596, 'https://ror.org/01rz5qz78', 'no_lang_code', 1, 'https://ror.org/01rz5qz78 Murata (United States)'),
(32597, 'https://ror.org/05jetay51', 'no_lang_code', 1, 'https://ror.org/05jetay51 Riverbed (United States)'),
(32598, 'https://ror.org/02njhwg64', 'no_lang_code', 1, 'https://ror.org/02njhwg64 Osborne & Associates (United States)'),
(32599, 'https://ror.org/029m27614', 'no_lang_code', 1, 'https://ror.org/029m27614 Out of the Fog Research (United States)'),
(32600, 'https://ror.org/00gzf3318', 'no_lang_code', 1, 'https://ror.org/00gzf3318 Proof Research (United States)'),
(32601, 'https://ror.org/04frprb97', 'no_lang_code', 1, 'https://ror.org/04frprb97 Odyssian Technology (United States)'),
(32602, 'https://ror.org/020tbqw59', 'no_lang_code', 1, 'https://ror.org/020tbqw59 OEwaves (United States)'),
(32603, 'https://ror.org/01emb2995', 'en', 1, 'https://ror.org/01emb2995 Ogden Engineering & Associates'),
(32604, 'https://ror.org/01n5m5w72', 'no_lang_code', 1, 'https://ror.org/01n5m5w72 Corporate Executive Board (United States)'),
(32605, 'https://ror.org/00hd6em58', 'no_lang_code', 1, 'https://ror.org/00hd6em58 Oxazogen (United States)'),
(32606, 'https://ror.org/039xdb007', 'no_lang_code', 1, 'https://ror.org/039xdb007 Optellios (United States)'),
(32607, 'https://ror.org/01x22f448', 'no_lang_code', 1, 'https://ror.org/01x22f448 PC Krause & Associates (United States)'),
(32608, 'https://ror.org/042dp4138', 'no_lang_code', 1, 'https://ror.org/042dp4138 Technology Service Corporation (United States)'),
(32609, 'https://ror.org/03q1hhd84', 'no_lang_code', 1, 'https://ror.org/03q1hhd84 Phase Sensitive Innovations (United States)'),
(32610, 'https://ror.org/00jch3e54', 'no_lang_code', 1, 'https://ror.org/00jch3e54 Omega Piezo Technologies (United States)'),
(32611, 'https://ror.org/0380pyj70', 'no_lang_code', 1, 'https://ror.org/0380pyj70 PAT Industries (United States)'),
(32612, 'https://ror.org/011gv1m09', 'no_lang_code', 1, 'https://ror.org/011gv1m09 PhaseSpace (United States)'),
(32613, 'https://ror.org/05xwxtv51', 'no_lang_code', 1, 'https://ror.org/05xwxtv51 PHDS (United States)'),
(32614, 'https://ror.org/00rv4tb81', 'no_lang_code', 1, 'https://ror.org/00rv4tb81 Optical Engines (United States)'),
(32615, 'https://ror.org/02ma2ny91', 'no_lang_code', 1, 'https://ror.org/02ma2ny91 Princeton Satellite Systems (United States)'),
(32616, 'https://ror.org/04cw9df25', 'no_lang_code', 1, 'https://ror.org/04cw9df25 Pacific Engineering (United States)'),
(32617, 'https://ror.org/00sp9ha44', 'no_lang_code', 1, 'https://ror.org/00sp9ha44 Optical Physics Company (United States)'),
(32618, 'https://ror.org/04wwvn851', 'no_lang_code', 1, 'https://ror.org/04wwvn851 Princeton Scientific (United States)'),
(32619, 'https://ror.org/03yywea39', 'no_lang_code', 1, 'https://ror.org/03yywea39 Plasma Processes (United States)'),
(32620, 'https://ror.org/02cj87r87', 'no_lang_code', 1, 'https://ror.org/02cj87r87 Pacific Rim Engineering (United States)'),
(32621, 'https://ror.org/03122yk49', 'no_lang_code', 1, 'https://ror.org/03122yk49 Optical Sciences (United States)'),
(32622, 'https://ror.org/0036fzf58', 'no_lang_code', 1, 'https://ror.org/0036fzf58 Richardson Electronics (United States)'),
(32623, 'https://ror.org/032pjd111', 'no_lang_code', 1, 'https://ror.org/032pjd111 Plasma Technology (United States)'),
(32624, 'https://ror.org/01szhx446', 'no_lang_code', 1, 'https://ror.org/01szhx446 Torch Hill Investment Partners (United States)'),
(32625, 'https://ror.org/04yqw4y82', 'no_lang_code', 1, 'https://ror.org/04yqw4y82 MS Technology (United States)'),
(32626, 'https://ror.org/012yx8878', 'no_lang_code', 1, 'https://ror.org/012yx8878 Pioneer Astronautics (United States)'),
(32627, 'https://ror.org/0265bng15', 'no_lang_code', 1, 'https://ror.org/0265bng15 Pioneering Decisive Solutions (United States)'),
(32628, 'https://ror.org/039d46111', 'no_lang_code', 1, 'https://ror.org/039d46111 Safran (United States)'),
(32629, 'https://ror.org/02f76s144', 'no_lang_code', 1, 'https://ror.org/02f76s144 PlainSight Group (United States)'),
(32630, 'https://ror.org/024eb7n23', 'no_lang_code', 1, 'https://ror.org/024eb7n23 Prism Computational Sciences (United States)'),
(32631, 'https://ror.org/0056bph73', 'no_lang_code', 1, 'https://ror.org/0056bph73 Professional Analysis (United States)'),
(32632, 'https://ror.org/01p8v8m79', 'no_lang_code', 1, 'https://ror.org/01p8v8m79 Plasmonics (United States)'),
(32633, 'https://ror.org/0091y3468', 'no_lang_code', 1, 'https://ror.org/0091y3468 Photon-X (United States)'),
(32634, 'https://ror.org/04xp41626', 'no_lang_code', 1, 'https://ror.org/04xp41626 PrivaTran (United States)'),
(32635, 'https://ror.org/03s3npz41', 'no_lang_code', 1, 'https://ror.org/03s3npz41 Rolta (United States)'),
(32636, 'https://ror.org/02kcne908', 'no_lang_code', 1, 'https://ror.org/02kcne908 Pro-Tech Design & Manufacturing (United States)'),
(32637, 'https://ror.org/03a3x6z66', 'no_lang_code', 1, 'https://ror.org/03a3x6z66 Optimal Synthesis (United States)'),
(32638, 'https://ror.org/03nxmmd82', 'no_lang_code', 1, 'https://ror.org/03nxmmd82 Paragon Space Development Corporation (United States)'),
(32639, 'https://ror.org/006ejj273', 'no_lang_code', 1, 'https://ror.org/006ejj273 Parallax Research (United States)'),
(32640, 'https://ror.org/04knyj922', 'no_lang_code', 1, 'https://ror.org/04knyj922 Optimax (United States)'),
(32641, 'https://ror.org/030vkvb42', 'no_lang_code', 1, 'https://ror.org/030vkvb42 Process Instruments (United States)'),
(32642, 'https://ror.org/01qr4dp91', 'no_lang_code', 1, 'https://ror.org/01qr4dp91 Defense Holdings (United States)'),
(32643, 'https://ror.org/01kcex014', 'no_lang_code', 1, 'https://ror.org/01kcex014 Optimization Technology (United States)'),
(32644, 'https://ror.org/046fp0073', 'no_lang_code', 1, 'https://ror.org/046fp0073 ParaTools (United States)'),
(32645, 'https://ror.org/0268pvz05', 'no_lang_code', 1, 'https://ror.org/0268pvz05 PnP Innovations (United States)'),
(32646, 'https://ror.org/003qgxx91', 'no_lang_code', 1, 'https://ror.org/003qgxx91 Production Products (United States)'),
(32647, 'https://ror.org/01pn7y126', 'no_lang_code', 1, 'https://ror.org/01pn7y126 POC Tech Group (United States)'),
(32648, 'https://ror.org/03s918289', 'no_lang_code', 1, 'https://ror.org/03s918289 Halliburton (United States)'),
(32649, 'https://ror.org/00yjc4530', 'no_lang_code', 1, 'https://ror.org/00yjc4530 Polaris Sensor Technologies (United States)'),
(32650, 'https://ror.org/025nrv979', 'no_lang_code', 1, 'https://ror.org/025nrv979 Phygen (United States)'),
(32651, 'https://ror.org/01fha7a79', 'no_lang_code', 1, 'https://ror.org/01fha7a79 OptiPro Systems (United States)'),
(32652, 'https://ror.org/03q0mq753', 'no_lang_code', 1, 'https://ror.org/03q0mq753 PartTec (United States)'),
(32653, 'https://ror.org/02hpaa158', 'no_lang_code', 1, 'https://ror.org/02hpaa158 Polatin Corporation (United States)'),
(32654, 'https://ror.org/00k68p940', 'no_lang_code', 1, 'https://ror.org/00k68p940 Pathfinder Systems (United States)'),
(32655, 'https://ror.org/002hd9629', 'no_lang_code', 1, 'https://ror.org/002hd9629 Opto-Knowledge Systems (United States)'),
(32656, 'https://ror.org/026rg9t92', 'no_lang_code', 1, 'https://ror.org/026rg9t92 PolyK Technologies (United States)'),
(32657, 'https://ror.org/04ndsf485', 'no_lang_code', 1, 'https://ror.org/04ndsf485 Polymer Aging Concepts (United States)'),
(32658, 'https://ror.org/02s3mqv16', 'no_lang_code', 1, 'https://ror.org/02s3mqv16 Polymeright (United States)'),
(32659, 'https://ror.org/0297rgf95', 'no_lang_code', 1, 'https://ror.org/0297rgf95 OR Concepts Applied (United States)'),
(32660, 'https://ror.org/01wqdsj65', 'no_lang_code', 1, 'https://ror.org/01wqdsj65 Professional Services Group (United States)'),
(32661, 'https://ror.org/004868y83', 'no_lang_code', 1, 'https://ror.org/004868y83 PolymerPlus (United States)'),
(32662, 'https://ror.org/02jeg3v06', 'no_lang_code', 1, 'https://ror.org/02jeg3v06 Mechmath (United States)'),
(32663, 'https://ror.org/02hb9s226', 'no_lang_code', 1, 'https://ror.org/02hb9s226 ORB Analytics (United States)'),
(32664, 'https://ror.org/01f3h2833', 'no_lang_code', 1, 'https://ror.org/01f3h2833 Memtronics (United States)'),
(32665, 'https://ror.org/0566y6534', 'no_lang_code', 1, 'https://ror.org/0566y6534 Sotera Defense Solutions (United States)'),
(32666, 'https://ror.org/03j7vt284', 'no_lang_code', 1, 'https://ror.org/03j7vt284 Physics, Materials and Applied Mathematics Research (United States)'),
(32667, 'https://ror.org/007737841', 'no_lang_code', 1, 'https://ror.org/007737841 PDF Solutions (United States)'),
(32668, 'https://ror.org/03e835n43', 'no_lang_code', 1, 'https://ror.org/03e835n43 Avigilon (United States)'),
(32669, 'https://ror.org/04vbqh983', 'no_lang_code', 1, 'https://ror.org/04vbqh983 Physitron (United States)'),
(32670, 'https://ror.org/03r95z943', 'no_lang_code', 1, 'https://ror.org/03r95z943 Prometheus (United States)'),
(32671, 'https://ror.org/02hpzfx69', 'no_lang_code', 1, 'https://ror.org/02hpzfx69 Propagation Research Associates (United States)'),
(32672, 'https://ror.org/01nz1gv09', 'no_lang_code', 1, 'https://ror.org/01nz1gv09 Peerless Technologies (United States)'),
(32673, 'https://ror.org/00q1xza85', 'no_lang_code', 1, 'https://ror.org/00q1xza85 PEL Associates (United States)'),
(32674, 'https://ror.org/03krk4x43', 'no_lang_code', 1, 'https://ror.org/03krk4x43 Propulsion Science and Technology (United States)'),
(32675, 'https://ror.org/013td7j77', 'no_lang_code', 1, 'https://ror.org/013td7j77 Pragati Synergetic Research (United States)'),
(32676, 'https://ror.org/031zv7121', 'no_lang_code', 1, 'https://ror.org/031zv7121 IQE (United States)'),
(32677, 'https://ror.org/05b497x63', 'no_lang_code', 1, 'https://ror.org/05b497x63 PROTO Manufacturing (United States)'),
(32678, 'https://ror.org/00dkdd931', 'no_lang_code', 1, 'https://ror.org/00dkdd931 Quantum Group (United States)'),
(32679, 'https://ror.org/05ybejm06', 'no_lang_code', 1, 'https://ror.org/05ybejm06 RE2 (United States)'),
(32680, 'https://ror.org/015wxat58', 'no_lang_code', 1, 'https://ror.org/015wxat58 Quantum Intelligence (United States)'),
(32681, 'https://ror.org/02pkfd360', 'no_lang_code', 1, 'https://ror.org/02pkfd360 Reaction Systems (United States)'),
(32682, 'https://ror.org/03w7dtv60', 'no_lang_code', 1, 'https://ror.org/03w7dtv60 Quantum Leap Innovations (United States)'),
(32683, 'https://ror.org/053y5js51', 'no_lang_code', 1, 'https://ror.org/053y5js51 Real-Time Innovations (United States)'),
(32684, 'https://ror.org/04193qa97', 'no_lang_code', 1, 'https://ror.org/04193qa97 LGL Group (United States)'),
(32685, 'https://ror.org/01abzsb47', 'no_lang_code', 1, 'https://ror.org/01abzsb47 Prediction Systems (United States)'),
(32686, 'https://ror.org/05gs2as25', 'no_lang_code', 1, 'https://ror.org/05gs2as25 Quantum Signal (United States)'),
(32687, 'https://ror.org/04rekpn43', 'no_lang_code', 1, 'https://ror.org/04rekpn43 Q-Peak (United States)'),
(32688, 'https://ror.org/0481xe004', 'no_lang_code', 1, 'https://ror.org/0481xe004 Arotech (United States)'),
(32689, 'https://ror.org/03q9jvk55', 'no_lang_code', 1, 'https://ror.org/03q9jvk55 Premier Coatings (United States)'),
(32690, 'https://ror.org/01fzcdg14', 'no_lang_code', 1, 'https://ror.org/01fzcdg14 Quasonix (United States)'),
(32691, 'https://ror.org/05rb1bm79', 'no_lang_code', 1, 'https://ror.org/05rb1bm79 RBC Technologies (United States)'),
(32692, 'https://ror.org/037y28f85', 'no_lang_code', 1, 'https://ror.org/037y28f85 PreTalen (United States)'),
(32693, 'https://ror.org/02xrzsw71', 'no_lang_code', 1, 'https://ror.org/02xrzsw71 QmagiQ (United States)'),
(32694, 'https://ror.org/02geyw402', 'no_lang_code', 1, 'https://ror.org/02geyw402 QorTek (United States)'),
(32695, 'https://ror.org/00gxbxx21', 'no_lang_code', 1, 'https://ror.org/00gxbxx21 QRDc (United States)'),
(32696, 'https://ror.org/03j68qs29', 'no_lang_code', 1, 'https://ror.org/03j68qs29 Qualtech Systems Incorporation (United States)'),
(32697, 'https://ror.org/039f14703', 'no_lang_code', 1, 'https://ror.org/039f14703 QuantaSpec (United States)'),
(32698, 'https://ror.org/01tgbzq38', 'no_lang_code', 1, 'https://ror.org/01tgbzq38 QuickFlex (United States)'),
(32699, 'https://ror.org/020vg7c14', 'no_lang_code', 1, 'https://ror.org/020vg7c14 RedZone Robotics (United States)'),
(32700, 'https://ror.org/00mh27630', 'no_lang_code', 1, 'https://ror.org/00mh27630 RNET Technologies (United States)'),
(32701, 'https://ror.org/0019se992', 'no_lang_code', 1, 'https://ror.org/0019se992 Princeton Lightwave (United States)'),
(32702, 'https://ror.org/043bzv808', 'no_lang_code', 1, 'https://ror.org/043bzv808 Referentia Systems (United States)'),
(32703, 'https://ror.org/004vpqq08', 'no_lang_code', 1, 'https://ror.org/004vpqq08 Princeton Microwave Technology (United States)'),
(32704, 'https://ror.org/0289d9s26', 'no_lang_code', 1, 'https://ror.org/0289d9s26 Robert Heffley Engineering (United States)'),
(32705, 'https://ror.org/02m9t8y16', 'no_lang_code', 1, 'https://ror.org/02m9t8y16 QuinStar Technology (United States)'),
(32706, 'https://ror.org/035w78024', 'no_lang_code', 1, 'https://ror.org/035w78024 Robotic Research (United States)'),
(32707, 'https://ror.org/020w2fr77', 'no_lang_code', 1, 'https://ror.org/020w2fr77 Robotics Research (United States)'),
(32708, 'https://ror.org/01rp86637', 'no_lang_code', 1, 'https://ror.org/01rp86637 Robust Chip (United States)'),
(32709, 'https://ror.org/019s3af92', 'no_lang_code', 1, 'https://ror.org/019s3af92 Qunav (United States)'),
(32710, 'https://ror.org/01356ja15', 'no_lang_code', 1, 'https://ror.org/01356ja15 Rock West Solutions (United States)'),
(32711, 'https://ror.org/046zwst09', 'no_lang_code', 1, 'https://ror.org/046zwst09 Reliable System Services (United States)'),
(32712, 'https://ror.org/01mart011', 'no_lang_code', 1, 'https://ror.org/01mart011 ReliaCoat Technologies (United States)'),
(32713, 'https://ror.org/01ga56p68', 'no_lang_code', 1, 'https://ror.org/01ga56p68 Remcom (United States)'),
(32714, 'https://ror.org/006cpk585', 'no_lang_code', 1, 'https://ror.org/006cpk585 Jarden (United States)'),
(32715, 'https://ror.org/004kz1j51', 'no_lang_code', 1, 'https://ror.org/004kz1j51 Ross-Hime Designs (United States)'),
(32716, 'https://ror.org/0461jpd45', 'no_lang_code', 1, 'https://ror.org/0461jpd45 Science and Technology Applications (United States)'),
(32717, 'https://ror.org/03bcppp62', 'no_lang_code', 1, 'https://ror.org/03bcppp62 Quantum Dimension (United States)'),
(32718, 'https://ror.org/04mjjg550', 'no_lang_code', 1, 'https://ror.org/04mjjg550 Scientic (United States)'),
(32719, 'https://ror.org/05pcwq620', 'no_lang_code', 1, 'https://ror.org/05pcwq620 Scientific Applications & Research Associates (United States)'),
(32720, 'https://ror.org/01vxra992', 'no_lang_code', 1, 'https://ror.org/01vxra992 R&D Dynamics (United States)'),
(32721, 'https://ror.org/058jhz755', 'no_lang_code', 1, 'https://ror.org/058jhz755 Rotordynamics-Seal Research (United States)'),
(32722, 'https://ror.org/01hsj7470', 'no_lang_code', 1, 'https://ror.org/01hsj7470 Securboration (United States)'),
(32723, 'https://ror.org/010csj794', 'no_lang_code', 1, 'https://ror.org/010csj794 RemoteReality (United States)'),
(32724, 'https://ror.org/02fh4wa11', 'no_lang_code', 1, 'https://ror.org/02fh4wa11 RPA Electronic Solutions (United States)'),
(32725, 'https://ror.org/04ngy8121', 'no_lang_code', 1, 'https://ror.org/04ngy8121 Remtech (United States)'),
(32726, 'https://ror.org/04q745m62', 'no_lang_code', 1, 'https://ror.org/04q745m62 Radiance Technologies (United States)'),
(32727, 'https://ror.org/04fe2dt25', 'no_lang_code', 1, 'https://ror.org/04fe2dt25 Renaissance Sciences Corporation (United States)'),
(32728, 'https://ror.org/03fz1e596', 'no_lang_code', 1, 'https://ror.org/03fz1e596 Radiant Research (United States)'),
(32729, 'https://ror.org/0333shy78', 'no_lang_code', 1, 'https://ror.org/0333shy78 Renegade Materials Corporation (United States)'),
(32730, 'https://ror.org/01zh4s520', 'no_lang_code', 1, 'https://ror.org/01zh4s520 Scientific Data Systems (United States)'),
(32731, 'https://ror.org/0333c2q56', 'no_lang_code', 1, 'https://ror.org/0333c2q56 Rugate Technologies (United States)'),
(32732, 'https://ror.org/02mbhaf77', 'no_lang_code', 1, 'https://ror.org/02mbhaf77 Research Applications Corporation (United States)'),
(32733, 'https://ror.org/03bthmz47', 'no_lang_code', 1, 'https://ror.org/03bthmz47 Sedna Digital Solutions (United States)'),
(32734, 'https://ror.org/0160n9y05', 'no_lang_code', 1, 'https://ror.org/0160n9y05 Blatek (United States)'),
(32735, 'https://ror.org/002tqyd59', 'no_lang_code', 1, 'https://ror.org/002tqyd59 Seemann Composites (United States)'),
(32736, 'https://ror.org/05vb2nq58', 'no_lang_code', 1, 'https://ror.org/05vb2nq58 Select Engineering Services (United States)'),
(32737, 'https://ror.org/04ayzes68', 'en', 1, 'https://ror.org/04ayzes68 Research Associates of Syracuse'),
(32738, 'https://ror.org/01m05be67', 'no_lang_code', 1, 'https://ror.org/01m05be67 Scientific Forming Technologies Corporation (United States)'),
(32739, 'https://ror.org/04pp5y813', 'no_lang_code', 1, 'https://ror.org/04pp5y813 Selee Corporation (United States)'),
(32740, 'https://ror.org/025rxfw41', 'no_lang_code', 1, 'https://ror.org/025rxfw41 Semantic Designs (United States)'),
(32741, 'https://ror.org/05gz34e20', 'no_lang_code', 1, 'https://ror.org/05gz34e20 SA Photonics (United States)'),
(32742, 'https://ror.org/04tgjxk96', 'no_lang_code', 1, 'https://ror.org/04tgjxk96 Research Network (United States)'),
(32743, 'https://ror.org/03ceqdn81', 'no_lang_code', 1, 'https://ror.org/03ceqdn81 Semerane (United States)'),
(32744, 'https://ror.org/00zmtvv40', 'no_lang_code', 1, 'https://ror.org/00zmtvv40 Research Support Instruments (United States)'),
(32745, 'https://ror.org/00vm23y87', 'no_lang_code', 1, 'https://ror.org/00vm23y87 Safe (United States)'),
(32746, 'https://ror.org/0199mb206', 'no_lang_code', 1, 'https://ror.org/0199mb206 Sensera (United States)'),
(32747, 'https://ror.org/01a3m3f05', 'no_lang_code', 1, 'https://ror.org/01a3m3f05 Reservoir Labs (United States)'),
(32748, 'https://ror.org/04aedks88', 'no_lang_code', 1, 'https://ror.org/04aedks88 Rainbow Communications (United States)'),
(32749, 'https://ror.org/01yh3cc69', 'no_lang_code', 1, 'https://ror.org/01yh3cc69 Sensing Strategies Incorporation (United States)'),
(32750, 'https://ror.org/04vn3x119', 'no_lang_code', 1, 'https://ror.org/04vn3x119 RAM Laboratories (United States)'),
(32751, 'https://ror.org/04dmcck46', 'no_lang_code', 1, 'https://ror.org/04dmcck46 RAM Photonics (United States)'),
(32752, 'https://ror.org/01x48g070', 'no_lang_code', 1, 'https://ror.org/01x48g070 Sage Technologies (United States)'),
(32753, 'https://ror.org/028dx7d12', 'no_lang_code', 1, 'https://ror.org/028dx7d12 Rether Networks (United States)'),
(32754, 'https://ror.org/02c5gz222', 'no_lang_code', 1, 'https://ror.org/02c5gz222 Scientific Solutions Innovative Research and Engineering (United States)'),
(32755, 'https://ror.org/0533jxz69', 'no_lang_code', 1, 'https://ror.org/0533jxz69 Saab (United States)'),
(32756, 'https://ror.org/04fvc0724', 'no_lang_code', 1, 'https://ror.org/04fvc0724 Sage Technologies (United States)'),
(32757, 'https://ror.org/033xh9c11', 'no_lang_code', 1, 'https://ror.org/033xh9c11 Scientific Systems (United States)'),
(32758, 'https://ror.org/0314naf78', 'no_lang_code', 1, 'https://ror.org/0314naf78 San Diego Composites (United States)'),
(32759, 'https://ror.org/04r5y2a19', 'no_lang_code', 1, 'https://ror.org/04r5y2a19 Reynard Corporation (United States)'),
(32760, 'https://ror.org/00hhybr57', 'no_lang_code', 1, 'https://ror.org/00hhybr57 Sensor Concepts (United States)'),
(32761, 'https://ror.org/03wenc761', 'no_lang_code', 1, 'https://ror.org/03wenc761 Sanova (United States)'),
(32762, 'https://ror.org/04s1sff11', 'no_lang_code', 1, 'https://ror.org/04s1sff11 Scientific Simulations (United States)'),
(32763, 'https://ror.org/03n3q7643', 'no_lang_code', 1, 'https://ror.org/03n3q7643 SensorMetrix (United States)'),
(32764, 'https://ror.org/053j2sg20', 'no_lang_code', 1, 'https://ror.org/053j2sg20 Sentar (United States)'),
(32765, 'https://ror.org/03jb0m794', 'no_lang_code', 1, 'https://ror.org/03jb0m794 SciTec (United States)'),
(32766, 'https://ror.org/00ttz3768', 'no_lang_code', 1, 'https://ror.org/00ttz3768 Ultramed (United States)'),
(32767, 'https://ror.org/00gspzk92', 'no_lang_code', 1, 'https://ror.org/00gspzk92 Sapien Systems (United States)'),
(32768, 'https://ror.org/039nsp746', 'no_lang_code', 1, 'https://ror.org/039nsp746 RGS Associates (United States)'),
(32769, 'https://ror.org/01vmgtx82', 'no_lang_code', 1, 'https://ror.org/01vmgtx82 Sentient Science (United States)'),
(32770, 'https://ror.org/02y2j7w80', 'no_lang_code', 1, 'https://ror.org/02y2j7w80 RBS Technologies (United States)'),
(32771, 'https://ror.org/04zfzxr62', 'no_lang_code', 1, 'https://ror.org/04zfzxr62 RHAMM Technologies (United States)'),
(32772, 'https://ror.org/02pyp0e56', 'en', 1, 'https://ror.org/02pyp0e56 Saxet Surface Science'),
(32773, 'https://ror.org/001k0r742', 'no_lang_code', 1, 'https://ror.org/001k0r742 DigiLens (United States)'),
(32774, 'https://ror.org/00hn6mk14', 'no_lang_code', 1, 'https://ror.org/00hn6mk14 Ridgetop Group (United States)'),
(32775, 'https://ror.org/03g1ghk63', 'no_lang_code', 1, 'https://ror.org/03g1ghk63 RCT Systems (United States)'),
(32776, 'https://ror.org/05qkx9513', 'no_lang_code', 1, 'https://ror.org/05qkx9513 SCA Technica (United States)'),
(32777, 'https://ror.org/0220z0193', 'no_lang_code', 1, 'https://ror.org/0220z0193 Scope Group (United States)'),
(32778, 'https://ror.org/051pand48', 'no_lang_code', 1, 'https://ror.org/051pand48 RINI Technologies (United States)'),
(32779, 'https://ror.org/05xyq8x40', 'no_lang_code', 1, 'https://ror.org/05xyq8x40 SCS Engineers (United States)'),
(32780, 'https://ror.org/02dcndt64', 'no_lang_code', 1, 'https://ror.org/02dcndt64 Rite-Solutions (United States)'),
(32781, 'https://ror.org/02k5trd79', 'no_lang_code', 1, 'https://ror.org/02k5trd79 Shape Change Technologies (United States)'),
(32782, 'https://ror.org/02hs57b27', 'no_lang_code', 1, 'https://ror.org/02hs57b27 RDA (United States)'),
(32783, 'https://ror.org/00rhqh755', 'no_lang_code', 1, 'https://ror.org/00rhqh755 RDL (United States)'),
(32784, 'https://ror.org/004a9b380', 'no_lang_code', 1, 'https://ror.org/004a9b380 SdPhotonics (United States)'),
(32785, 'https://ror.org/03zxdhd63', 'no_lang_code', 1, 'https://ror.org/03zxdhd63 Shared Spectrum Company (United States)'),
(32786, 'https://ror.org/04aejqj79', 'no_lang_code', 1, 'https://ror.org/04aejqj79 RDRtec (United States)'),
(32787, 'https://ror.org/00w964w95', 'no_lang_code', 1, 'https://ror.org/00w964w95 SDS International (United States)'),
(32788, 'https://ror.org/03h5fme53', 'no_lang_code', 1, 'https://ror.org/03h5fme53 Nuvera Biosciences (United States)'),
(32789, 'https://ror.org/05sr58560', 'no_lang_code', 1, 'https://ror.org/05sr58560 Shear Form (United States)'),
(32790, 'https://ror.org/03bc0qh53', 'no_lang_code', 1, 'https://ror.org/03bc0qh53 Space Micro (United States)'),
(32791, 'https://ror.org/03ham7h73', 'no_lang_code', 1, 'https://ror.org/03ham7h73 Silicon Designs (United States)'),
(32792, 'https://ror.org/04rfd1d05', 'no_lang_code', 1, 'https://ror.org/04rfd1d05 Space Photonics (United States)'),
(32793, 'https://ror.org/05csz3511', 'no_lang_code', 1, 'https://ror.org/05csz3511 SI2 Technologies (United States)'),
(32794, 'https://ror.org/00171m316', 'no_lang_code', 1, 'https://ror.org/00171m316 Stellar Science (United States)'),
(32795, 'https://ror.org/02m94vn37', 'no_lang_code', 1, 'https://ror.org/02m94vn37 Vorago Technologies (United States)'),
(32796, 'https://ror.org/053hp2m86', 'no_lang_code', 1, 'https://ror.org/053hp2m86 SICOM Systems (United States)'),
(32797, 'https://ror.org/05gqsac13', 'no_lang_code', 1, 'https://ror.org/05gqsac13 SpaceTech (United States)'),
(32798, 'https://ror.org/013qwzt07', 'no_lang_code', 1, 'https://ror.org/013qwzt07 Silicon Technologies (United States)'),
(32799, 'https://ror.org/04j8bfv31', 'no_lang_code', 1, 'https://ror.org/04j8bfv31 Sienna Technologies (United States)'),
(32800, 'https://ror.org/00b510j51', 'no_lang_code', 1, 'https://ror.org/00b510j51 Sierra Lobo (United States)'),
(32801, 'https://ror.org/05w4yc230', 'no_lang_code', 1, 'https://ror.org/05w4yc230 Silvus Technologies (United States)'),
(32802, 'https://ror.org/05njdn771', 'no_lang_code', 1, 'https://ror.org/05njdn771 Stiefvater Consultants (United States)'),
(32803, 'https://ror.org/02p65v128', 'no_lang_code', 1, 'https://ror.org/02p65v128 Semtech (United States)');
INSERT INTO `rors` VALUES
(32804, 'https://ror.org/04g0byc83', 'no_lang_code', 1, 'https://ror.org/04g0byc83 Stilman Advanced Strategies (United States)'),
(32805, 'https://ror.org/00831g358', 'no_lang_code', 1, 'https://ror.org/00831g358 Stirling Dynamics (United States)'),
(32806, 'https://ror.org/030v6q043', 'no_lang_code', 1, 'https://ror.org/030v6q043 SeaLandAire Technologies (United States)'),
(32807, 'https://ror.org/05tmmj622', 'no_lang_code', 1, 'https://ror.org/05tmmj622 Safety Dynamics (United States)'),
(32808, 'https://ror.org/05wd8g307', 'no_lang_code', 1, 'https://ror.org/05wd8g307 Omega Micro Technologies (United States)'),
(32809, 'https://ror.org/0212emb53', 'no_lang_code', 1, 'https://ror.org/0212emb53 Symplectic Engineering Corporation (United States)'),
(32810, 'https://ror.org/03hzbee62', 'no_lang_code', 1, 'https://ror.org/03hzbee62 Symvionics (United States)'),
(32811, 'https://ror.org/02adffe18', 'no_lang_code', 1, 'https://ror.org/02adffe18 Sigma-K (United States)'),
(32812, 'https://ror.org/03nhk5x18', 'no_lang_code', 1, 'https://ror.org/03nhk5x18 StratEdge (United States)'),
(32813, 'https://ror.org/0303r7956', 'no_lang_code', 1, 'https://ror.org/0303r7956 Strategic Insight (United States)'),
(32814, 'https://ror.org/04zt7fp74', 'no_lang_code', 1, 'https://ror.org/04zt7fp74 Streamline Automation (United States)'),
(32815, 'https://ror.org/05mmkyr56', 'no_lang_code', 1, 'https://ror.org/05mmkyr56 Synectics (United States)'),
(32816, 'https://ror.org/05t5z9252', 'no_lang_code', 1, 'https://ror.org/05t5z9252 Synergia (United States)'),
(32817, 'https://ror.org/021gzyw51', 'no_lang_code', 1, 'https://ror.org/021gzyw51 Signal Processing (United States)'),
(32818, 'https://ror.org/04zvkqw17', 'no_lang_code', 1, 'https://ror.org/04zvkqw17 Signal Systems Corporation (United States)'),
(32819, 'https://ror.org/04djzj803', 'no_lang_code', 1, 'https://ror.org/04djzj803 Signature Research (United States)'),
(32820, 'https://ror.org/05n3gpp89', 'no_lang_code', 1, 'https://ror.org/05n3gpp89 Streamline Numerics (United States)'),
(32821, 'https://ror.org/02236vg19', 'no_lang_code', 1, 'https://ror.org/02236vg19 Structural Analytics (United States)'),
(32822, 'https://ror.org/015a91g19', 'no_lang_code', 1, 'https://ror.org/015a91g19 Syntonics (United States)'),
(32823, 'https://ror.org/020epnp70', 'no_lang_code', 1, 'https://ror.org/020epnp70 Technical Data Analysis (United States)'),
(32824, 'https://ror.org/03kv72t22', 'no_lang_code', 1, 'https://ror.org/03kv72t22 Simpson Weather Associates (United States)'),
(32825, 'https://ror.org/04ssfcp90', 'no_lang_code', 1, 'https://ror.org/04ssfcp90 Spectra Research (United States)'),
(32826, 'https://ror.org/02z4mtf98', 'no_lang_code', 1, 'https://ror.org/02z4mtf98 Sturman Industries (United States)'),
(32827, 'https://ror.org/006xt8f23', 'no_lang_code', 1, 'https://ror.org/006xt8f23 Technical Directions Incorporation (United States)'),
(32828, 'https://ror.org/014m7xt26', 'no_lang_code', 1, 'https://ror.org/014m7xt26 Sukra Helitek (United States)'),
(32829, 'https://ror.org/051z3gy60', 'no_lang_code', 1, 'https://ror.org/051z3gy60 SySense (United States)'),
(32830, 'https://ror.org/03tw0yk66', 'no_lang_code', 1, 'https://ror.org/03tw0yk66 Spectral Imaging Laboratory (United States)'),
(32831, 'https://ror.org/01f0gap96', 'no_lang_code', 1, 'https://ror.org/01f0gap96 Technical Products Incorporation (United States)'),
(32832, 'https://ror.org/04hh7yg67', 'no_lang_code', 1, 'https://ror.org/04hh7yg67 SunDanzer (United States)'),
(32833, 'https://ror.org/02ypd5h61', 'no_lang_code', 1, 'https://ror.org/02ypd5h61 Simulation Technologies (United States)'),
(32834, 'https://ror.org/00a3n8178', 'no_lang_code', 1, 'https://ror.org/00a3n8178 System Planning Corporation (United States)'),
(32835, 'https://ror.org/002a8dp29', 'no_lang_code', 1, 'https://ror.org/002a8dp29 Sunol Sciences Corporation (United States)'),
(32836, 'https://ror.org/052tkjg37', 'no_lang_code', 1, 'https://ror.org/052tkjg37 Systems & Materials Research Corporation (United States)'),
(32837, 'https://ror.org/04gggzb44', 'no_lang_code', 1, 'https://ror.org/04gggzb44 Spectranetix (United States)'),
(32838, 'https://ror.org/02zngav60', 'no_lang_code', 1, 'https://ror.org/02zngav60 SimVentions (United States)'),
(32839, 'https://ror.org/009bwq091', 'no_lang_code', 1, 'https://ror.org/009bwq091 Sunrez (United States)'),
(32840, 'https://ror.org/01z7k2z53', 'no_lang_code', 1, 'https://ror.org/01z7k2z53 Systems Dynamics (United States)'),
(32841, 'https://ror.org/01f45ap57', 'no_lang_code', 1, 'https://ror.org/01f45ap57 SimWright (United States)'),
(32842, 'https://ror.org/006xy9v19', 'no_lang_code', 1, 'https://ror.org/006xy9v19 SM&A (United States)'),
(32843, 'https://ror.org/02jmed939', 'no_lang_code', 1, 'https://ror.org/02jmed939 Sivananthan Laboratories (United States)'),
(32844, 'https://ror.org/00vet8y51', 'no_lang_code', 1, 'https://ror.org/00vet8y51 Spectrum Magnetics (United States)'),
(32845, 'https://ror.org/03dacnf06', 'no_lang_code', 1, 'https://ror.org/03dacnf06 Skinfrared (United States)'),
(32846, 'https://ror.org/01kvnds84', 'no_lang_code', 1, 'https://ror.org/01kvnds84 SCS Engineering (United States)'),
(32847, 'https://ror.org/04qvsw345', 'no_lang_code', 1, 'https://ror.org/04qvsw345 Spectrum Photonics (United States)'),
(32848, 'https://ror.org/0502j4525', 'no_lang_code', 1, 'https://ror.org/0502j4525 SkuTek Instrumentation (United States)'),
(32849, 'https://ror.org/04tcsyg17', 'no_lang_code', 1, 'https://ror.org/04tcsyg17 Spencer Industries (United States)'),
(32850, 'https://ror.org/00579ee64', 'no_lang_code', 1, 'https://ror.org/00579ee64 SkySight Technologies (United States)'),
(32851, 'https://ror.org/00eqp4438', 'no_lang_code', 1, 'https://ror.org/00eqp4438 Systems Planning and Analysis (United States)'),
(32852, 'https://ror.org/00phyfh89', 'no_lang_code', 1, 'https://ror.org/00phyfh89 Sperient (United States)'),
(32853, 'https://ror.org/01age2z78', 'no_lang_code', 1, 'https://ror.org/01age2z78 Oxford Instruments (United States)'),
(32854, 'https://ror.org/05e05d728', 'no_lang_code', 1, 'https://ror.org/05e05d728 Support Systems Associates (United States)'),
(32855, 'https://ror.org/05ttq4j04', 'no_lang_code', 1, 'https://ror.org/05ttq4j04 SPI Surgical (United States)'),
(32856, 'https://ror.org/04q7s3d74', 'no_lang_code', 1, 'https://ror.org/04q7s3d74 Softronics (United States)'),
(32857, 'https://ror.org/038ggnx21', 'no_lang_code', 1, 'https://ror.org/038ggnx21 Sytronics (United States)'),
(32858, 'https://ror.org/038m4nz41', 'no_lang_code', 1, 'https://ror.org/038m4nz41 Spiritech Advanced Products (United States)'),
(32859, 'https://ror.org/02xzsdt57', 'no_lang_code', 1, 'https://ror.org/02xzsdt57 Surface Optics (United States)'),
(32860, 'https://ror.org/03qt0ma29', 'no_lang_code', 1, 'https://ror.org/03qt0ma29 Software and Engineering Associates (United States)'),
(32861, 'https://ror.org/05ay2ee52', 'no_lang_code', 1, 'https://ror.org/05ay2ee52 Sporian Microsystems (United States)'),
(32862, 'https://ror.org/04yswnp37', 'no_lang_code', 1, 'https://ror.org/04yswnp37 Systima Technologies (United States)'),
(32863, 'https://ror.org/03z777f25', 'no_lang_code', 1, 'https://ror.org/03z777f25 Surface Treatment Technologies (United States)'),
(32864, 'https://ror.org/03a6msw65', 'no_lang_code', 1, 'https://ror.org/03a6msw65 Technology for Energy Corporation (United States)'),
(32865, 'https://ror.org/0238w0s48', 'no_lang_code', 1, 'https://ror.org/0238w0s48 Spytek Aerospace (United States)'),
(32866, 'https://ror.org/033km7y93', 'no_lang_code', 1, 'https://ror.org/033km7y93 SoHaR (United States)'),
(32867, 'https://ror.org/02v09hm63', 'no_lang_code', 1, 'https://ror.org/02v09hm63 Surmet (United States)'),
(32868, 'https://ror.org/05mm98a47', 'no_lang_code', 1, 'https://ror.org/05mm98a47 Square One (United States)'),
(32869, 'https://ror.org/05438sd72', 'no_lang_code', 1, 'https://ror.org/05438sd72 Table Mountain Optics (United States)'),
(32870, 'https://ror.org/01g8xep57', 'no_lang_code', 1, 'https://ror.org/01g8xep57 STI Electronics (United States)'),
(32871, 'https://ror.org/01m293240', 'no_lang_code', 1, 'https://ror.org/01m293240 Survice Engineering (United States)'),
(32872, 'https://ror.org/0329mpy71', 'no_lang_code', 1, 'https://ror.org/0329mpy71 Techsburg (United States)'),
(32873, 'https://ror.org/024arnh55', 'no_lang_code', 1, 'https://ror.org/024arnh55 Solid State Scientific Corporation (United States)'),
(32874, 'https://ror.org/03spj8080', 'no_lang_code', 1, 'https://ror.org/03spj8080 Solute (United States)'),
(32875, 'https://ror.org/039d88t66', 'no_lang_code', 1, 'https://ror.org/039d88t66 Sigma Labs (United States)'),
(32876, 'https://ror.org/00gvkt544', 'no_lang_code', 1, 'https://ror.org/00gvkt544 Technology Management Company (United States)'),
(32877, 'https://ror.org/00n3ezc34', 'no_lang_code', 1, 'https://ror.org/00n3ezc34 Nammo (United States)'),
(32878, 'https://ror.org/05pfbbk72', 'no_lang_code', 1, 'https://ror.org/05pfbbk72 SoniPulse (United States)'),
(32879, 'https://ror.org/01n1w8781', 'no_lang_code', 1, 'https://ror.org/01n1w8781 Symetrix (United States)'),
(32880, 'https://ror.org/054fk6316', 'no_lang_code', 1, 'https://ror.org/054fk6316 Tau Technologies (United States)'),
(32881, 'https://ror.org/04jfp6348', 'no_lang_code', 1, 'https://ror.org/04jfp6348 Soraa (United States)'),
(32882, 'https://ror.org/02qg55h92', 'no_lang_code', 1, 'https://ror.org/02qg55h92 Star Cryoelectronics (United States)'),
(32883, 'https://ror.org/04mf3j007', 'no_lang_code', 1, 'https://ror.org/04mf3j007 TES International (United States)'),
(32884, 'https://ror.org/00axxrg60', 'no_lang_code', 1, 'https://ror.org/00axxrg60 Star Microwave (United States)'),
(32885, 'https://ror.org/007c5ag63', 'no_lang_code', 1, 'https://ror.org/007c5ag63 Star Technology and Research (United States)'),
(32886, 'https://ror.org/03c5nrv09', 'no_lang_code', 1, 'https://ror.org/03c5nrv09 STAR-H (United States)'),
(32887, 'https://ror.org/03wxvt516', 'no_lang_code', 1, 'https://ror.org/03wxvt516 Technology Solutions Experts (United States)'),
(32888, 'https://ror.org/037ncgg21', 'no_lang_code', 1, 'https://ror.org/037ncgg21 Test Devices (United States)'),
(32889, 'https://ror.org/05a4hd624', 'no_lang_code', 1, 'https://ror.org/05a4hd624 Varadero Capital (United States)'),
(32890, 'https://ror.org/01gdw4351', 'no_lang_code', 1, 'https://ror.org/01gdw4351 TechFlow (United States)'),
(32891, 'https://ror.org/05xcbaa04', 'no_lang_code', 1, 'https://ror.org/05xcbaa04 Lubricating Specialties Company (United States)'),
(32892, 'https://ror.org/042fse352', 'no_lang_code', 1, 'https://ror.org/042fse352 TiER1 (United States)'),
(32893, 'https://ror.org/034hhvm18', 'no_lang_code', 1, 'https://ror.org/034hhvm18 Trout Green Technologies (United States)'),
(32894, 'https://ror.org/049fv0n19', 'no_lang_code', 1, 'https://ror.org/049fv0n19 Time Domain (United States)'),
(32895, 'https://ror.org/045pznz06', 'no_lang_code', 1, 'https://ror.org/045pznz06 Valley Tech Systems (United States)'),
(32896, 'https://ror.org/0040z7z59', 'no_lang_code', 1, 'https://ror.org/0040z7z59 M Corp (United States)'),
(32897, 'https://ror.org/03ycgwr13', 'no_lang_code', 1, 'https://ror.org/03ycgwr13 TimeSys (United States)'),
(32898, 'https://ror.org/016xr3h51', 'no_lang_code', 1, 'https://ror.org/016xr3h51 Technosoft (United States)'),
(32899, 'https://ror.org/035ra0284', 'no_lang_code', 1, 'https://ror.org/035ra0284 TTC Technologies (United States)'),
(32900, 'https://ror.org/025ct3y55', 'no_lang_code', 1, 'https://ror.org/025ct3y55 TechSource (United States)'),
(32901, 'https://ror.org/03r5ah485', 'en', 1, 'https://ror.org/03r5ah485 Texas Research Institute'),
(32902, 'https://ror.org/05bt80j81', 'no_lang_code', 1, 'https://ror.org/05bt80j81 Tecolote Research (United States)'),
(32903, 'https://ror.org/04yrgb625', 'no_lang_code', 1, 'https://ror.org/04yrgb625 Vanguard Space Technologies (United States)'),
(32904, 'https://ror.org/00qzpz347', 'no_lang_code', 1, 'https://ror.org/00qzpz347 TelAztec (United States)'),
(32905, 'https://ror.org/05bhnjv02', 'no_lang_code', 1, 'https://ror.org/05bhnjv02 Twinleaf (United States)'),
(32906, 'https://ror.org/00fgmrc59', 'no_lang_code', 1, 'https://ror.org/00fgmrc59 CDI (United States)'),
(32907, 'https://ror.org/01tjn9x38', 'no_lang_code', 1, 'https://ror.org/01tjn9x38 UBC (United States)'),
(32908, 'https://ror.org/01zzzs782', 'no_lang_code', 1, 'https://ror.org/01zzzs782 Variation Reduction Solutions (United States)'),
(32909, 'https://ror.org/05hzgnr17', 'no_lang_code', 1, 'https://ror.org/05hzgnr17 Vatell (United States)'),
(32910, 'https://ror.org/0420sjb95', 'no_lang_code', 1, 'https://ror.org/0420sjb95 TextWise (United States)'),
(32911, 'https://ror.org/031r5nr48', 'no_lang_code', 1, 'https://ror.org/031r5nr48 Vecna Technologies (United States)'),
(32912, 'https://ror.org/02wedcm51', 'no_lang_code', 1, 'https://ror.org/02wedcm51 Tezzaron Semiconductor (United States)'),
(32913, 'https://ror.org/04gq4y167', 'no_lang_code', 1, 'https://ror.org/04gq4y167 UFA (United States)'),
(32914, 'https://ror.org/04txrym18', 'no_lang_code', 1, 'https://ror.org/04txrym18 Vector Test Systems (United States)'),
(32915, 'https://ror.org/05a0zp865', 'no_lang_code', 1, 'https://ror.org/05a0zp865 NanoTechRanch (United States)'),
(32916, 'https://ror.org/04e1s4y56', 'no_lang_code', 1, 'https://ror.org/04e1s4y56 The Design Knowledge Company (United States)'),
(32917, 'https://ror.org/00scjy223', 'no_lang_code', 1, 'https://ror.org/00scjy223 Core Laboratories (United States)'),
(32918, 'https://ror.org/02trd4c61', 'no_lang_code', 1, 'https://ror.org/02trd4c61 Ultimara (United States)'),
(32919, 'https://ror.org/01bn00n07', 'no_lang_code', 1, 'https://ror.org/01bn00n07 Telescent (United States)'),
(32920, 'https://ror.org/04049nt84', 'no_lang_code', 1, 'https://ror.org/04049nt84 Ultra Communications (United States)'),
(32921, 'https://ror.org/04wehfb27', 'no_lang_code', 1, 'https://ror.org/04wehfb27 Vectraxx (United States)'),
(32922, 'https://ror.org/03qm91g53', 'no_lang_code', 1, 'https://ror.org/03qm91g53 Telesecurity Sciences (United States)'),
(32923, 'https://ror.org/01mv87107', 'no_lang_code', 1, 'https://ror.org/01mv87107 Top-Vu Technology (United States)'),
(32924, 'https://ror.org/041b73r77', 'no_lang_code', 1, 'https://ror.org/041b73r77 Underground Systems (United States)'),
(32925, 'https://ror.org/01px5z495', 'no_lang_code', 1, 'https://ror.org/01px5z495 Tempest Technologies (United States)'),
(32926, 'https://ror.org/01xp8jx84', 'no_lang_code', 1, 'https://ror.org/01xp8jx84 Ormet Circuits (United States)'),
(32927, 'https://ror.org/04fe9w827', 'no_lang_code', 1, 'https://ror.org/04fe9w827 Vehicle Control Technologies (United States)'),
(32928, 'https://ror.org/03kz6k786', 'no_lang_code', 1, 'https://ror.org/03kz6k786 The Technology Partnership (United States)'),
(32929, 'https://ror.org/003g4n960', 'no_lang_code', 1, 'https://ror.org/003g4n960 Templeman Automation (United States)'),
(32930, 'https://ror.org/039tznx53', 'no_lang_code', 1, 'https://ror.org/039tznx53 Ventana Research Corporation (United States)'),
(32931, 'https://ror.org/004sfzf96', 'no_lang_code', 1, 'https://ror.org/004sfzf96 Solus (United States)'),
(32932, 'https://ror.org/00nrhr905', 'no_lang_code', 1, 'https://ror.org/00nrhr905 Torch Technologies (United States)'),
(32933, 'https://ror.org/003veqw46', 'no_lang_code', 1, 'https://ror.org/003veqw46 Oil States International (United States)'),
(32934, 'https://ror.org/002fqp272', 'en', 1, 'https://ror.org/002fqp272 Hostos Community College'),
(32935, 'https://ror.org/00f47ek31', 'no_lang_code', 1, 'https://ror.org/00f47ek31 Torrey Pines Logic (United States)'),
(32936, 'https://ror.org/04khywr62', 'no_lang_code', 1, 'https://ror.org/04khywr62 Veritay Technology (United States)'),
(32937, 'https://ror.org/03we2aj97', 'en', 1, 'https://ror.org/03we2aj97 Medgar Evers College'),
(32938, 'https://ror.org/043yd9j22', 'no_lang_code', 1, 'https://ror.org/043yd9j22 TeraDiode (United States)'),
(32939, 'https://ror.org/04w6mxh75', 'en', 1, 'https://ror.org/04w6mxh75 Bronx Community College'),
(32940, 'https://ror.org/05a3mwa69', 'en', 1, 'https://ror.org/05a3mwa69 LaGuardia Community College'),
(32941, 'https://ror.org/005h28707', 'no_lang_code', 1, 'https://ror.org/005h28707 Versar (United States)'),
(32942, 'https://ror.org/03a4k1f37', 'en', 1, 'https://ror.org/03a4k1f37 Kingsborough Community College'),
(32943, 'https://ror.org/01ny0n591', 'no_lang_code', 1, 'https://ror.org/01ny0n591 Thermavant (United States)'),
(32944, 'https://ror.org/035x8xc95', 'no_lang_code', 1, 'https://ror.org/035x8xc95 Bohemia Interactive Simulations (United States)'),
(32945, 'https://ror.org/04ftnqm48', 'no_lang_code', 1, 'https://ror.org/04ftnqm48 Versatilis (United States)'),
(32946, 'https://ror.org/052fns920', 'no_lang_code', 1, 'https://ror.org/052fns920 Victor Technologies (United States)'),
(32947, 'https://ror.org/00jtran50', 'en', 1, 'https://ror.org/00jtran50 CUNY School of Law'),
(32948, 'https://ror.org/0012hsk21', 'no_lang_code', 1, 'https://ror.org/0012hsk21 ViGYAN (United States)'),
(32949, 'https://ror.org/03p2em878', 'no_lang_code', 1, 'https://ror.org/03p2em878 UQM Technologies (United States)'),
(32950, 'https://ror.org/04yvpz902', 'no_lang_code', 1, 'https://ror.org/04yvpz902 Vertec Biosolvents (United States)'),
(32951, 'https://ror.org/017pe7554', 'no_lang_code', 1, 'https://ror.org/017pe7554 Cubic (United States)'),
(32952, 'https://ror.org/0351r3c39', 'no_lang_code', 1, 'https://ror.org/0351r3c39 VIP Sensors (United States)'),
(32953, 'https://ror.org/02gbk8644', 'no_lang_code', 1, 'https://ror.org/02gbk8644 LRM Industries International (United States)'),
(32954, 'https://ror.org/05658r667', 'no_lang_code', 1, 'https://ror.org/05658r667 Total Quality Systems (United States)'),
(32955, 'https://ror.org/0573tzb24', 'no_lang_code', 1, 'https://ror.org/0573tzb24 Hunter Defense Technologies (United States)'),
(32956, 'https://ror.org/048cnym07', 'no_lang_code', 1, 'https://ror.org/048cnym07 Vextec (United States)'),
(32957, 'https://ror.org/03ae5ch37', 'no_lang_code', 1, 'https://ror.org/03ae5ch37 Toyon (United States)'),
(32958, 'https://ror.org/05s7yfr86', 'no_lang_code', 1, 'https://ror.org/05s7yfr86 VI Manufacturing (United States)'),
(32959, 'https://ror.org/05hgx5v83', 'no_lang_code', 1, 'https://ror.org/05hgx5v83 Think A Move (United States)'),
(32960, 'https://ror.org/03sf2jx83', 'no_lang_code', 1, 'https://ror.org/03sf2jx83 Traclabs (United States)'),
(32961, 'https://ror.org/05f4xbp74', 'no_lang_code', 1, 'https://ror.org/05f4xbp74 ThinKom Solutions (United States)'),
(32962, 'https://ror.org/01ewwhz50', 'no_lang_code', 1, 'https://ror.org/01ewwhz50 Vibratess (United States)'),
(32963, 'https://ror.org/04m7z7z76', 'no_lang_code', 1, 'https://ror.org/04m7z7z76 Third Wave Systems (United States)'),
(32964, 'https://ror.org/03h8ck063', 'no_lang_code', 1, 'https://ror.org/03h8ck063 Virginia Diodes (United States)'),
(32965, 'https://ror.org/0429ctb76', 'no_lang_code', 1, 'https://ror.org/0429ctb76 Warwick Mills (United States)'),
(32966, 'https://ror.org/010e60082', 'no_lang_code', 1, 'https://ror.org/010e60082 Thorpe Seeop (United States)'),
(32967, 'https://ror.org/01eggyv13', 'no_lang_code', 1, 'https://ror.org/01eggyv13 Translume (United States)'),
(32968, 'https://ror.org/0357dmp95', 'no_lang_code', 1, 'https://ror.org/0357dmp95 Utility Development (United States)'),
(32969, 'https://ror.org/057w9g751', 'no_lang_code', 1, 'https://ror.org/057w9g751 Tialinx (United States)'),
(32970, 'https://ror.org/051d4q284', 'no_lang_code', 1, 'https://ror.org/051d4q284 UtopiaCompression (United States)'),
(32971, 'https://ror.org/05w2bg973', 'no_lang_code', 1, 'https://ror.org/05w2bg973 Wasatch Molecular (United States)'),
(32972, 'https://ror.org/010bn5e72', 'no_lang_code', 1, 'https://ror.org/010bn5e72 V Corp Technologies (United States)'),
(32973, 'https://ror.org/041my0n44', 'no_lang_code', 1, 'https://ror.org/041my0n44 Vadum (United States)'),
(32974, 'https://ror.org/003zm6h82', 'no_lang_code', 1, 'https://ror.org/003zm6h82 TransTech Systems (United States)'),
(32975, 'https://ror.org/01h7rcq14', 'no_lang_code', 1, 'https://ror.org/01h7rcq14 Wave Computation Technologies (United States)'),
(32976, 'https://ror.org/03a0t9098', 'no_lang_code', 1, 'https://ror.org/03a0t9098 Virtual EM (United States)'),
(32977, 'https://ror.org/05pj73f13', 'no_lang_code', 1, 'https://ror.org/05pj73f13 TIAX (United States)'),
(32978, 'https://ror.org/00hbekd38', 'no_lang_code', 1, 'https://ror.org/00hbekd38 Wavecon (United States)'),
(32979, 'https://ror.org/04ya3w052', 'no_lang_code', 1, 'https://ror.org/04ya3w052 TriTech Software Systems (United States)'),
(32980, 'https://ror.org/050cc9q33', 'no_lang_code', 1, 'https://ror.org/050cc9q33 Virtual Simulation and Training (United States)'),
(32981, 'https://ror.org/04jfj6996', 'no_lang_code', 1, 'https://ror.org/04jfj6996 Triangle Polymer Technologies (United States)'),
(32982, 'https://ror.org/05ax5pz51', 'no_lang_code', 1, 'https://ror.org/05ax5pz51 Wavefront Research (United States)'),
(32983, 'https://ror.org/059cy3h71', 'no_lang_code', 1, 'https://ror.org/059cy3h71 Meggitt (United States)'),
(32984, 'https://ror.org/04s1kwh20', 'no_lang_code', 1, 'https://ror.org/04s1kwh20 Xidex (United States)'),
(32985, 'https://ror.org/030a75q40', 'no_lang_code', 1, 'https://ror.org/030a75q40 Vision Systems Incorporation (United States)'),
(32986, 'https://ror.org/00bngcf58', 'no_lang_code', 1, 'https://ror.org/00bngcf58 Trident Research (United States)'),
(32987, 'https://ror.org/01a6nz466', 'no_lang_code', 1, 'https://ror.org/01a6nz466 Milliken & Company (United States)'),
(32988, 'https://ror.org/05tg9ea20', 'no_lang_code', 1, 'https://ror.org/05tg9ea20 XMCO (United States)'),
(32989, 'https://ror.org/015h23t48', 'no_lang_code', 1, 'https://ror.org/015h23t48 Trident Systems (United States)'),
(32990, 'https://ror.org/012zqg360', 'no_lang_code', 1, 'https://ror.org/012zqg360 Wedeven Associates (United States)'),
(32991, 'https://ror.org/000xe4a49', 'no_lang_code', 1, 'https://ror.org/000xe4a49 Visotek (United States)'),
(32992, 'https://ror.org/01v6wg951', 'no_lang_code', 1, 'https://ror.org/01v6wg951 Vista Clara (United States)'),
(32993, 'https://ror.org/0574nqa10', 'no_lang_code', 1, 'https://ror.org/0574nqa10 WINTEC (United States)'),
(32994, 'https://ror.org/029ncv135', 'no_lang_code', 1, 'https://ror.org/029ncv135 WeldQC (United States)'),
(32995, 'https://ror.org/03ht43x94', 'no_lang_code', 1, 'https://ror.org/03ht43x94 VIStology (United States)'),
(32996, 'https://ror.org/012e65633', 'no_lang_code', 1, 'https://ror.org/012e65633 Welkin Sciences (United States)'),
(32997, 'https://ror.org/02qx7jz53', 'no_lang_code', 1, 'https://ror.org/02qx7jz53 Wolf Technical Services (United States)'),
(32998, 'https://ror.org/017dk1028', 'no_lang_code', 1, 'https://ror.org/017dk1028 Zolo Technologies (United States)'),
(32999, 'https://ror.org/02tqmtb62', 'no_lang_code', 1, 'https://ror.org/02tqmtb62 Yankee Scientific (United States)'),
(33000, 'https://ror.org/02cg78r45', 'no_lang_code', 1, 'https://ror.org/02cg78r45 Visual Editor Consultants (United States)'),
(33001, 'https://ror.org/03k64vf14', 'no_lang_code', 1, 'https://ror.org/03k64vf14 WW Technology Group (United States)'),
(33002, 'https://ror.org/012q7s492', 'no_lang_code', 1, 'https://ror.org/012q7s492 Visual Sciences (United States)'),
(33003, 'https://ror.org/00t2vjb05', 'no_lang_code', 1, 'https://ror.org/00t2vjb05 White River Technologies (United States)'),
(33004, 'https://ror.org/01tcanc07', 'no_lang_code', 1, 'https://ror.org/01tcanc07 Yotta Navigation (United States)'),
(33005, 'https://ror.org/00fg16924', 'no_lang_code', 1, 'https://ror.org/00fg16924 Zomega Terahertz (United States)'),
(33006, 'https://ror.org/05t8h2f11', 'no_lang_code', 1, 'https://ror.org/05t8h2f11 ZONA Technology (United States)'),
(33007, 'https://ror.org/00an7dj71', 'no_lang_code', 1, 'https://ror.org/00an7dj71 Wickman Spacecraft & Propulsion Company (United States)'),
(33008, 'https://ror.org/04q9g9s58', 'no_lang_code', 1, 'https://ror.org/04q9g9s58 Voss Scientific (United States)'),
(33009, 'https://ror.org/03x9v0071', 'no_lang_code', 1, 'https://ror.org/03x9v0071 Wilson Composites (United States)'),
(33010, 'https://ror.org/01mvkzj41', 'no_lang_code', 1, 'https://ror.org/01mvkzj41 Microsemi (United States)'),
(33011, 'https://ror.org/00mp05931', 'no_lang_code', 1, 'https://ror.org/00mp05931 Vulcan Wireless (United States)'),
(33012, 'https://ror.org/015jsx554', 'no_lang_code', 1, 'https://ror.org/015jsx554 Zel Technologies (United States)'),
(33013, 'https://ror.org/04y244695', 'no_lang_code', 1, 'https://ror.org/04y244695 W5 Technlogies (United States)'),
(33014, 'https://ror.org/014yncy15', 'no_lang_code', 1, 'https://ror.org/014yncy15 XCOM Wireless (United States)'),
(33015, 'https://ror.org/02ayrn205', 'no_lang_code', 1, 'https://ror.org/02ayrn205 Waddan Systems (United States)'),
(33016, 'https://ror.org/04kggmg61', 'no_lang_code', 1, 'https://ror.org/04kggmg61 Zephyr Software (United States)'),
(33017, 'https://ror.org/04hzcb818', 'no_lang_code', 1, 'https://ror.org/04hzcb818 Wang Electro-Opto (United States)'),
(33018, 'https://ror.org/01hgvdq15', 'no_lang_code', 1, 'https://ror.org/01hgvdq15 Zimmerman Associates (United States)'),
(33019, 'https://ror.org/05n6cs483', 'no_lang_code', 1, 'https://ror.org/05n6cs483 XCOR Aerospace (United States)'),
(33020, 'https://ror.org/05scp2b29', 'no_lang_code', 1, 'https://ror.org/05scp2b29 Ziva (United States)'),
(33021, 'https://ror.org/05w1vwd46', 'no_lang_code', 1, 'https://ror.org/05w1vwd46 WarpIV Technologies (United States)'),
(33022, 'https://ror.org/03sz7ps56', 'no_lang_code', 1, 'https://ror.org/03sz7ps56 Zivko Aeronautics (United States)'),
(33023, 'https://ror.org/01zjrck77', 'en', 1, 'https://ror.org/01zjrck77 National University'),
(33024, 'https://ror.org/024bc8636', 'no_lang_code', 1, 'https://ror.org/024bc8636 Novitech (Slovakia)'),
(33025, 'https://ror.org/03hc5gb19', 'no_lang_code', 1, 'https://ror.org/03hc5gb19 American Industrial Partners (United States)'),
(33026, 'https://ror.org/04v7ke830', 'sk', 1, 'https://ror.org/04v7ke830 Stredna Priemyselna Skola Samuela Mikoviniho'),
(33027, 'https://ror.org/00nnsna93', 'no_lang_code', 1, 'https://ror.org/00nnsna93 Camgian Microsystems (United States)'),
(33028, 'https://ror.org/00zt5yw80', 'en', 1, 'https://ror.org/00zt5yw80 American Oriental Society'),
(33029, 'https://ror.org/04s2w8b69', 'en', 1, 'https://ror.org/04s2w8b69 Al Khawarizmi International College'),
(33030, 'https://ror.org/0482b6s78', 'no_lang_code', 1, 'https://ror.org/0482b6s78 Abili (Brazil)'),
(33031, 'https://ror.org/04m3mdp26', 'pt', 1, 'https://ror.org/04m3mdp26 Associação Brasileira de Alergia e Imunologia'),
(33032, 'https://ror.org/00fx97040', 'no_lang_code', 1, 'https://ror.org/00fx97040 Ablevision (Brazil)'),
(33033, 'https://ror.org/039t3gk55', 'no_lang_code', 1, 'https://ror.org/039t3gk55 Biopdi (Brazil)'),
(33034, 'https://ror.org/02gcgk516', 'pt', 1, 'https://ror.org/02gcgk516 Associação Brasileira de AnÔlise Térmica e Calorimetria'),
(33035, 'https://ror.org/052fv6w39', 'pt', 1, 'https://ror.org/052fv6w39 Academia Brasileira de Audiologia Brazilian Academy of Audiology'),
(33036, 'https://ror.org/038ydmp22', 'no_lang_code', 1, 'https://ror.org/038ydmp22 Alpha Br Produtos QuĆ­micos (Brazil)'),
(33037, 'https://ror.org/03frnyk41', 'pt', 1, 'https://ror.org/03frnyk41 Associação Saúde da Família'),
(33038, 'https://ror.org/01r8seb12', 'pt', 1, 'https://ror.org/01r8seb12 Associação Brasileira de Antropologia'),
(33039, 'https://ror.org/04q385q62', 'no_lang_code', 1, 'https://ror.org/04q385q62 Biotech (Brazil)'),
(33040, 'https://ror.org/01zn6j405', 'pt', 1, 'https://ror.org/01zn6j405 Academia de CiĆŖncias do Estado de SĆ£o Paulo'),
(33041, 'https://ror.org/01gkfjz83', 'no_lang_code', 1, 'https://ror.org/01gkfjz83 Altave (Brazil)'),
(33042, 'https://ror.org/05q6w4p96', 'pt', 1, 'https://ror.org/05q6w4p96 Associação Sul-Americana de Automação'),
(33043, 'https://ror.org/02nw88150', 'pt', 1, 'https://ror.org/02nw88150 Academia Nacional de Cuidados Paliativos'),
(33044, 'https://ror.org/040cbt857', 'no_lang_code', 1, 'https://ror.org/040cbt857 Bioware (Brazil)'),
(33045, 'https://ror.org/00yg0kc17', 'pt', 1, 'https://ror.org/00yg0kc17 Ação Educativa'),
(33046, 'https://ror.org/04293qd70', 'pt', 1, 'https://ror.org/04293qd70 Associação Brasileira da Batata'),
(33047, 'https://ror.org/02d66ss51', 'no_lang_code', 1, 'https://ror.org/02d66ss51 Accert (Brazil)'),
(33048, 'https://ror.org/045905m75', 'en', 1, 'https://ror.org/045905m75 Associação Brasileira de Buiatria Brazilian Buiatrics Association'),
(33049, 'https://ror.org/01s41hv32', 'no_lang_code', 1, 'https://ror.org/01s41hv32 Bonavision Auxilios Opticos (Brazil)'),
(33050, 'https://ror.org/045pn0g98', 'no_lang_code', 1, 'https://ror.org/045pn0g98 Atonus Engineering Systems (Brazil)'),
(33051, 'https://ror.org/00y2ehr59', 'no_lang_code', 1, 'https://ror.org/00y2ehr59 Ambra Solutions (Brazil)'),
(33052, 'https://ror.org/041fsgg33', 'no_lang_code', 1, 'https://ror.org/041fsgg33 AMS Kepler (Brazil)'),
(33053, 'https://ror.org/0498mas94', 'pt', 1, 'https://ror.org/0498mas94 Associação Brasileira de Ciência Política'),
(33054, 'https://ror.org/03edcef46', 'no_lang_code', 1, 'https://ror.org/03edcef46 Acquest (Brazil)'),
(33055, 'https://ror.org/00t5zf034', 'pt', 1, 'https://ror.org/00t5zf034 Associação Brasileira de Estatística'),
(33056, 'https://ror.org/022j85822', 'no_lang_code', 1, 'https://ror.org/022j85822 Eurofins (Brazil)'),
(33057, 'https://ror.org/05r9em747', 'no_lang_code', 1, 'https://ror.org/05r9em747 Adespec (Brazil)'),
(33058, 'https://ror.org/00zfwf776', 'pt', 1, 'https://ror.org/00zfwf776 Associação Brasileira de Estudos de Defesa'),
(33059, 'https://ror.org/054hb1p97', 'no_lang_code', 1, 'https://ror.org/054hb1p97 BR Express (Brazil)'),
(33060, 'https://ror.org/01r9w2e44', 'pt', 1, 'https://ror.org/01r9w2e44 Associação Brasileira de Estudos Populacionais'),
(33061, 'https://ror.org/01yb2dp72', 'no_lang_code', 1, 'https://ror.org/01yb2dp72 Br4Science (Brazil)'),
(33062, 'https://ror.org/021sest91', 'no_lang_code', 1, 'https://ror.org/021sest91 BCS Tecnologia (Brazil)'),
(33063, 'https://ror.org/040dcjh11', 'no_lang_code', 1, 'https://ror.org/040dcjh11 Adiel Comercial (Brazil)'),
(33064, 'https://ror.org/04e0ysh28', 'no_lang_code', 1, 'https://ror.org/04e0ysh28 Trouw Nutrition (Brazil)'),
(33065, 'https://ror.org/027ec3b27', 'no_lang_code', 1, 'https://ror.org/027ec3b27 Anod-Arc ComƩrcio e ServiƧos Anod-arc (Brazil)'),
(33066, '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'),
(33067, 'https://ror.org/03h66a821', 'no_lang_code', 1, 'https://ror.org/03h66a821 ADTS (Brazil)'),
(33068, 'https://ror.org/001bdqp77', 'no_lang_code', 1, 'https://ror.org/001bdqp77 Belver Brasil Instrumentos (Brazil)'),
(33069, 'https://ror.org/03cr88393', 'no_lang_code', 1, 'https://ror.org/03cr88393 Antares EletrƓnica (Brazil)'),
(33070, 'https://ror.org/0508hmq85', 'no_lang_code', 1, 'https://ror.org/0508hmq85 Antoniosi Tecnologia Agroindustrial (Brazil)'),
(33071, 'https://ror.org/00xwpb736', 'no_lang_code', 1, 'https://ror.org/00xwpb736 Apis Flora (Brazil) Apis Flora Industrial e Comercial Ltda'),
(33072, 'https://ror.org/05ctcgz71', 'no_lang_code', 1, 'https://ror.org/05ctcgz71 Beta Telecom (Brazil)'),
(33073, 'https://ror.org/00kpjpr15', 'pt', 1, 'https://ror.org/00kpjpr15 Fundação de Ciência, Aplicações e Tecnologia Espaciais'),
(33074, 'https://ror.org/02nhdg694', 'no_lang_code', 1, 'https://ror.org/02nhdg694 Aeroalcool Tecnologia (Brazil)'),
(33075, 'https://ror.org/02y0fdf18', 'no_lang_code', 1, 'https://ror.org/02y0fdf18 Tetra Tech (Brazil)'),
(33076, 'https://ror.org/05f6p1h60', 'no_lang_code', 1, 'https://ror.org/05f6p1h60 Illinois Tool Works (Brazil)'),
(33077, 'https://ror.org/00fw3pm40', 'no_lang_code', 1, 'https://ror.org/00fw3pm40 Betta Tecnologia (Brazil)'),
(33078, 'https://ror.org/03fe6f421', 'no_lang_code', 1, 'https://ror.org/03fe6f421 Brascoelma (Brazil)'),
(33079, 'https://ror.org/000ft5096', 'no_lang_code', 1, 'https://ror.org/000ft5096 Agricef (Brazil)'),
(33080, 'https://ror.org/045js9z71', 'no_lang_code', 1, 'https://ror.org/045js9z71 Bevi Plastic (Brazil)'),
(33081, 'https://ror.org/042ghyj15', 'no_lang_code', 1, 'https://ror.org/042ghyj15 Bf Clay Especialidades (Brazil)'),
(33082, 'https://ror.org/047gb2729', 'no_lang_code', 1, 'https://ror.org/047gb2729 Agro Lab Plants (Brazil)'),
(33083, 'https://ror.org/024kjg104', 'pt', 1, 'https://ror.org/024kjg104 Associação Brasileira de InformÔtica'),
(33084, 'https://ror.org/051z2qe83', 'no_lang_code', 1, 'https://ror.org/051z2qe83 BrasilOzƓnio (Brazil)'),
(33085, 'https://ror.org/0100xag24', 'pt', 1, 'https://ror.org/0100xag24 Associação Brasileira de Médicos VeterinÔrios de Equídeos'),
(33086, 'https://ror.org/04pqbzj36', 'pt', 1, 'https://ror.org/04pqbzj36 Associação Brasileira de Oncologia VeterinÔria'),
(33087, 'https://ror.org/03sdvby86', 'no_lang_code', 1, 'https://ror.org/03sdvby86 Bio&Green (Brazil)'),
(33088, 'https://ror.org/00heqzt73', 'pt', 1, 'https://ror.org/00heqzt73 Arquivo Histórico Judaico Brasileiro'),
(33089, 'https://ror.org/0244wrw23', 'no_lang_code', 1, 'https://ror.org/0244wrw23 AGX Tecnologia (Brazil)'),
(33090, 'https://ror.org/04gyfva88', 'no_lang_code', 1, 'https://ror.org/04gyfva88 Bio Controle (Brazil)'),
(33091, 'https://ror.org/017422k09', 'no_lang_code', 1, 'https://ror.org/017422k09 Centro Técnico de Automação (Brazil)'),
(33092, 'https://ror.org/02js51327', 'no_lang_code', 1, 'https://ror.org/02js51327 Akaer (Brazil)'),
(33093, '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'),
(33094, 'https://ror.org/022egts32', 'no_lang_code', 1, 'https://ror.org/022egts32 Altech (Brazil)'),
(33095, 'https://ror.org/02ywapq94', 'pt', 1, 'https://ror.org/02ywapq94 Associação Brasileira de Pesquisadores em História EconÓmica'),
(33096, 'https://ror.org/04d8dwz89', 'no_lang_code', 1, 'https://ror.org/04d8dwz89 Bio Soja Group (Brazil) Grupo Bio Soja'),
(33097, 'https://ror.org/03tn1hf10', 'pt', 1, 'https://ror.org/03tn1hf10 Associação Brasileira de Polímeros'),
(33098, 'https://ror.org/024m1yq44', 'no_lang_code', 1, 'https://ror.org/024m1yq44 Camelback (Brazil)'),
(33099, 'https://ror.org/00rs1fw09', 'no_lang_code', 1, 'https://ror.org/00rs1fw09 Asel-Tech (Brazil) Asel-Tech Tecnologia e AutomaƧăo'),
(33100, 'https://ror.org/0014nwk66', 'no_lang_code', 1, 'https://ror.org/0014nwk66 Alchemy (Brazil)'),
(33101, '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'),
(33102, 'https://ror.org/032bps724', 'no_lang_code', 1, 'https://ror.org/032bps724 AsGa (Brazil)'),
(33103, 'https://ror.org/059egf570', 'no_lang_code', 1, 'https://ror.org/059egf570 Lucinski (Brazil)'),
(33104, 'https://ror.org/04csdp142', 'no_lang_code', 1, 'https://ror.org/04csdp142 Algae Biotecnologia (Brazil)'),
(33105, 'https://ror.org/00b9tfp03', 'pt', 1, 'https://ror.org/00b9tfp03 Assembleia Legislativa de SĆ£o Paulo'),
(33106, 'https://ror.org/059x5ff13', 'no_lang_code', 1, 'https://ror.org/059x5ff13 Aliança Orgânica Soluções Ambientais (Brazil)'),
(33107, 'https://ror.org/04dq2e820', 'pt', 1, 'https://ror.org/04dq2e820 Associação Brasileira de Psicoterapia e Medicina Comportamental'),
(33108, 'https://ror.org/05kwrc623', 'no_lang_code', 1, 'https://ror.org/05kwrc623 CBPak (Brazil)'),
(33109, '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'),
(33110, 'https://ror.org/05kbqck04', 'pt', 1, 'https://ror.org/05kbqck04 Associação Aeroespacial Brasileira'),
(33111, 'https://ror.org/03bavv282', 'pt', 1, 'https://ror.org/03bavv282 Associação Brasileira de Tratamentos de Superfície'),
(33112, 'https://ror.org/05pnhe163', 'no_lang_code', 1, 'https://ror.org/05pnhe163 Biocontrol (Brazil)'),
(33113, 'https://ror.org/033n39v56', 'pt', 1, 'https://ror.org/033n39v56 Associação Brasileira para a Proteção dos Alimentos'),
(33114, 'https://ror.org/04xngad53', 'pt', 1, 'https://ror.org/04xngad53 Fundação Escola de Comércio Álvares Penteado'),
(33115, 'https://ror.org/055hsdr48', 'no_lang_code', 1, 'https://ror.org/055hsdr48 Centro de Espectrometria de Massas Aplicada (Brazil)'),
(33116, 'https://ror.org/00d066w75', 'en', 1, 'https://ror.org/00d066w75 Brazilian Internet Steering Committee ComitĆŖ Gestor da Internet no Brasil'),
(33117, 'https://ror.org/041a34162', 'no_lang_code', 1, 'https://ror.org/041a34162 Cennabras (Brazil)'),
(33118, 'https://ror.org/05egmt145', 'no_lang_code', 1, 'https://ror.org/05egmt145 Comm Solutions (Brazil)'),
(33119, 'https://ror.org/001g9gn21', 'pt', 1, 'https://ror.org/001g9gn21 Faculdade Brasil'),
(33120, 'https://ror.org/04d6hs296', 'no_lang_code', 1, 'https://ror.org/04d6hs296 Centagro (Brazil)'),
(33121, 'https://ror.org/02z5j8t37', 'no_lang_code', 1, 'https://ror.org/02z5j8t37 Dínamo Automação Industrial (Brazil)'),
(33122, 'https://ror.org/00sc9ba80', 'no_lang_code', 1, 'https://ror.org/00sc9ba80 Compsis (Brazil)'),
(33123, 'https://ror.org/01cs6sy07', 'pt', 1, 'https://ror.org/01cs6sy07 Faculdade Unida de Suzano'),
(33124, 'https://ror.org/00bzyh805', 'no_lang_code', 1, 'https://ror.org/00bzyh805 Dinamo Networks (Brazil)'),
(33125, 'https://ror.org/05pcgcp62', 'pt', 1, 'https://ror.org/05pcgcp62 Associação de Pais e Amigos dos Excepcionais de São Paulo'),
(33126, 'https://ror.org/03q150v29', 'no_lang_code', 1, 'https://ror.org/03q150v29 DirectLight (Brazil)'),
(33127, 'https://ror.org/01xdw4k60', 'pt', 1, 'https://ror.org/01xdw4k60 Centro Brasileiro de AnƔlise e Planejamento'),
(33128, 'https://ror.org/05dn2zg08', 'no_lang_code', 1, 'https://ror.org/05dn2zg08 DLG Automation (Brazil)'),
(33129, 'https://ror.org/00bckke66', 'pt', 1, 'https://ror.org/00bckke66 Associação dos Floricultores da Região da Via Dutra'),
(33130, 'https://ror.org/00262f659', 'pt', 1, 'https://ror.org/00262f659 Associação dos Geógrafos Brasileiros'),
(33131, 'https://ror.org/05dm9f210', 'no_lang_code', 1, 'https://ror.org/05dm9f210 DMC Equipmentos (Brazil)'),
(33132, 'https://ror.org/01zsd9g12', 'pt', 1, 'https://ror.org/01zsd9g12 Centro Cerâmico do Brasil'),
(33133, 'https://ror.org/010qfrm44', 'no_lang_code', 1, 'https://ror.org/010qfrm44 Compuminer Mineração de Dados & BI (Brazil)'),
(33134, 'https://ror.org/02kbptg74', 'no_lang_code', 1, 'https://ror.org/02kbptg74 DNA Consult GenƩtica e Biotecnologia (Brazil)'),
(33135, 'https://ror.org/05sjm5616', 'no_lang_code', 1, 'https://ror.org/05sjm5616 Dnapta Biotecnologia (Brazil)'),
(33136, 'https://ror.org/03ks3nw90', 'pt', 1, 'https://ror.org/03ks3nw90 Escola da Cidade'),
(33137, 'https://ror.org/04snbqe72', 'no_lang_code', 1, 'https://ror.org/04snbqe72 Condor Instruments (Brazil)'),
(33138, 'https://ror.org/05dffn720', 'no_lang_code', 1, 'https://ror.org/05dffn720 Centro de Genomas (Brazil)'),
(33139, 'https://ror.org/02sbrrx86', 'no_lang_code', 1, 'https://ror.org/02sbrrx86 Dod RobƓs Investidores (Brazil)'),
(33140, 'https://ror.org/01adnc146', 'no_lang_code', 1, 'https://ror.org/01adnc146 CFlex (Brazil)'),
(33141, 'https://ror.org/01qnbng82', 'pt', 1, 'https://ror.org/01qnbng82 Instituto Sedes Sapientiae'),
(33142, 'https://ror.org/0351dr811', 'no_lang_code', 1, 'https://ror.org/0351dr811 DPR Engenharia (Brazil)'),
(33143, 'https://ror.org/01brz0r85', 'pt', 1, 'https://ror.org/01brz0r85 Instituto Irmãs Santa Marcelina'),
(33144, 'https://ror.org/05y867510', 'pt', 1, 'https://ror.org/05y867510 Associação Nacional de História'),
(33145, 'https://ror.org/05p3gy533', 'no_lang_code', 1, 'https://ror.org/05p3gy533 Chem4u (Brazil)'),
(33146, 'https://ror.org/05ppea990', 'no_lang_code', 1, 'https://ror.org/05ppea990 DSPGeo (Brazil)'),
(33147, 'https://ror.org/05884yn26', 'en', 1, 'https://ror.org/05884yn26 Conselho de Pesquisas em Educação e Ciências Sciences and Education Research Council'),
(33148, 'https://ror.org/027pg7t61', 'no_lang_code', 1, 'https://ror.org/027pg7t61 Chemyunion (Brazil)'),
(33149, 'https://ror.org/02t62cz46', 'pt', 1, 'https://ror.org/02t62cz46 Associação Nacional de Pesquisa e Pós-Graduação em Turismo'),
(33150, 'https://ror.org/03axr8b14', 'pt', 1, 'https://ror.org/03axr8b14 Conselho de reitores das Universidades Estaduais de SĆ£o Paulo'),
(33151, 'https://ror.org/03v4s6070', 'pt', 1, 'https://ror.org/03v4s6070 Coordenadoria Geral da Universidade'),
(33152, 'https://ror.org/05drng229', 'no_lang_code', 1, 'https://ror.org/05drng229 Dýnamis Industry e Commerce (Brazil)'),
(33153, 'https://ror.org/00wctst51', 'pt', 1, 'https://ror.org/00wctst51 Associação Nacional de Pós-Graduação e Pesquisa em Ciências Sociais'),
(33154, 'https://ror.org/03bxx2v05', 'no_lang_code', 1, 'https://ror.org/03bxx2v05 CHR Cerâmica Técnica (Brazil)'),
(33155, 'https://ror.org/0392qcg83', 'no_lang_code', 1, 'https://ror.org/0392qcg83 Corollarium (Brazil)'),
(33156, 'https://ror.org/036prk722', 'pt', 1, 'https://ror.org/036prk722 Faculdade de Agudos'),
(33157, 'https://ror.org/00nm2s695', 'pt', 1, 'https://ror.org/00nm2s695 Associação Nacional de Pós-Graduação e Pesquisa em Educação'),
(33158, 'https://ror.org/00g3szh73', 'no_lang_code', 1, 'https://ror.org/00g3szh73 Ecco Fibers (Brazil) Ecco Fibras Ɠpticas e Dispositivos'),
(33159, 'https://ror.org/014q50n13', 'no_lang_code', 1, 'https://ror.org/014q50n13 Advance SoluƧƵes em InformƔtica (Brazil)'),
(33160, 'https://ror.org/04b0jeh75', 'pt', 1, 'https://ror.org/04b0jeh75 Associação Nacional de Transportes Públicos'),
(33161, 'https://ror.org/00zh9em21', 'pt', 1, 'https://ror.org/00zh9em21 Centro de Estudos da Voz'),
(33162, 'https://ror.org/01ct33c94', 'no_lang_code', 1, 'https://ror.org/01ct33c94 Eccos IndĆŗstria MetalĆŗrgica (Brazil)'),
(33163, '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'),
(33164, 'https://ror.org/04yj32x80', 'no_lang_code', 1, 'https://ror.org/04yj32x80 Coss (Brazil)'),
(33165, 'https://ror.org/02qvzqk75', 'pt', 1, 'https://ror.org/02qvzqk75 Associação Paulista para o Desenvolvimento da Medicina'),
(33166, 'https://ror.org/010twav05', 'no_lang_code', 1, 'https://ror.org/010twav05 Cientistas (Brazil)'),
(33167, 'https://ror.org/02t8k3a73', 'pt', 1, 'https://ror.org/02t8k3a73 Centro de Estudos Educação e Sociedade'),
(33168, 'https://ror.org/034fa5k55', 'no_lang_code', 1, 'https://ror.org/034fa5k55 Ecology Glass (Brazil)'),
(33169, 'https://ror.org/02j6c6694', 'no_lang_code', 1, 'https://ror.org/02j6c6694 Cotec (Brazil)'),
(33170, 'https://ror.org/03n2mgz21', 'pt', 1, 'https://ror.org/03n2mgz21 Centro de Estudos em Psicologia da SaĆŗde'),
(33171, 'https://ror.org/05ckrxx96', 'pt', 1, 'https://ror.org/05ckrxx96 Federacao Brasileira de Associacoes de Bibliotecarios'),
(33172, 'https://ror.org/05jyyjd35', 'no_lang_code', 1, 'https://ror.org/05jyyjd35 Correias Elo (Brazil)'),
(33173, 'https://ror.org/03vwx5r63', 'no_lang_code', 1, 'https://ror.org/03vwx5r63 CromƔtica (Brazil)'),
(33174, 'https://ror.org/00mtbts87', 'no_lang_code', 1, 'https://ror.org/00mtbts87 ClanSoft (Brazil)'),
(33175, 'https://ror.org/04g471954', 'no_lang_code', 1, 'https://ror.org/04g471954 Ecotec Equipment and Systems (Brazil)'),
(33176, 'https://ror.org/00ej99c12', 'no_lang_code', 1, 'https://ror.org/00ej99c12 Centre for Research and Development in Telecommunications (Brazil)'),
(33177, 'https://ror.org/0067rre51', 'no_lang_code', 1, 'https://ror.org/0067rre51 EcoZON (Brazil)'),
(33178, 'https://ror.org/03m1j9m44', 'pt', 1, 'https://ror.org/03m1j9m44 Faculdade SĆ£o Leopoldo Mandic'),
(33179, 'https://ror.org/01jmv0y82', 'no_lang_code', 1, 'https://ror.org/01jmv0y82 EDG Equipamentos e Controles (Brazil)'),
(33180, 'https://ror.org/052nb9d93', 'no_lang_code', 1, 'https://ror.org/052nb9d93 Cuesta (Brazil)'),
(33181, 'https://ror.org/01gmpxf32', 'no_lang_code', 1, 'https://ror.org/01gmpxf32 Clave (Brazil)'),
(33182, 'https://ror.org/003xjza53', 'no_lang_code', 1, 'https://ror.org/003xjza53 Centro de Tecnologia Canavieira Sugarcane Research Center (Brazil)'),
(33183, 'https://ror.org/03b081a48', 'no_lang_code', 1, 'https://ror.org/03b081a48 CLB Engenharia Consultiva (Brazil)'),
(33184, 'https://ror.org/01zs0qn80', 'no_lang_code', 1, 'https://ror.org/01zs0qn80 Efix (Brazil)'),
(33185, 'https://ror.org/038p3sh66', 'no_lang_code', 1, 'https://ror.org/038p3sh66 Eikonal do Brasil (Brazil)'),
(33186, 'https://ror.org/01wrmdz98', 'no_lang_code', 1, 'https://ror.org/01wrmdz98 Cyrbe (Brazil)'),
(33187, 'https://ror.org/01qhzmf23', 'no_lang_code', 1, 'https://ror.org/01qhzmf23 Ekion Tecnologia de Veƭculos ElƩtricos (Brazil)'),
(33188, 'https://ror.org/05g65s446', 'pt', 1, 'https://ror.org/05g65s446 Centro de Inovação, Empreendedorismo e Tecnologia'),
(33189, 'https://ror.org/017qbxe07', 'pt', 1, 'https://ror.org/017qbxe07 Centro Infantil Boldrini'),
(33190, 'https://ror.org/01y3dkh13', 'no_lang_code', 1, 'https://ror.org/01y3dkh13 Enalta Inovações Tecnológicas (Brazil)'),
(33191, 'https://ror.org/05gdb1895', 'no_lang_code', 1, 'https://ror.org/05gdb1895 Elabora Consultoria (Brazil)'),
(33192, 'https://ror.org/00e507q54', 'no_lang_code', 1, 'https://ror.org/00e507q54 Electric Dreams (Brazil)'),
(33193, 'https://ror.org/0048mhp79', 'no_lang_code', 1, 'https://ror.org/0048mhp79 WorleyParsons (Brazil)'),
(33194, 'https://ror.org/02c2cgf66', 'no_lang_code', 1, 'https://ror.org/02c2cgf66 Engemap (Brazil)'),
(33195, 'https://ror.org/05n0n3328', 'no_lang_code', 1, 'https://ror.org/05n0n3328 Orbisat (Brazil)'),
(33196, 'https://ror.org/00tzehs45', 'no_lang_code', 1, 'https://ror.org/00tzehs45 Cobrasper (Brazil)'),
(33197, 'https://ror.org/05rfkzk21', 'pt', 1, 'https://ror.org/05rfkzk21 ColƩgio Brasileiro de CirurgiƵes'),
(33198, 'https://ror.org/04j9me356', 'no_lang_code', 1, 'https://ror.org/04j9me356 Engene (Brazil)'),
(33199, 'https://ror.org/04kae4d54', 'no_lang_code', 1, 'https://ror.org/04kae4d54 Farmacore (Brazil)'),
(33200, 'https://ror.org/02mm6ps96', 'no_lang_code', 1, 'https://ror.org/02mm6ps96 DeltaCO2 (Brazil)'),
(33201, 'https://ror.org/051f5za14', 'no_lang_code', 1, 'https://ror.org/051f5za14 Engimplan (Brazil)'),
(33202, 'https://ror.org/01v7axg06', 'pt', 1, 'https://ror.org/01v7axg06 Federação Brasileira de Psicodrama'),
(33203, 'https://ror.org/04rftbm22', 'en', 1, 'https://ror.org/04rftbm22 Federation of Experimental Biology Societies Federação de Sociedades de Biologia Experimental'),
(33204, 'https://ror.org/04drf3w31', 'no_lang_code', 1, 'https://ror.org/04drf3w31 Dencril (Brazil)'),
(33205, 'https://ror.org/05ggz9e14', 'no_lang_code', 1, 'https://ror.org/05ggz9e14 EQE Tecnologia (Brazil)'),
(33206, 'https://ror.org/03dwaqx98', 'no_lang_code', 1, 'https://ror.org/03dwaqx98 Femto (Brazil)'),
(33207, 'https://ror.org/047nye843', 'no_lang_code', 1, 'https://ror.org/047nye843 Colly (Brazil)'),
(33208, 'https://ror.org/02zg8vj63', 'no_lang_code', 1, 'https://ror.org/02zg8vj63 Equacional (Brazil)'),
(33209, 'https://ror.org/01zwcb774', 'no_lang_code', 1, 'https://ror.org/01zwcb774 Deoxi Biotecnologia (Brazil)'),
(33210, 'https://ror.org/029amtg39', 'no_lang_code', 1, 'https://ror.org/029amtg39 Fermavi (Brazil)'),
(33211, 'https://ror.org/0187b5307', 'no_lang_code', 1, 'https://ror.org/0187b5307 Fermentec (Brazil)'),
(33212, 'https://ror.org/007g4ze80', 'pt', 1, 'https://ror.org/007g4ze80 Departamento Intersindical de Estatƭstica e Estudos SocioeconƓmicos'),
(33213, 'https://ror.org/01q86p724', 'no_lang_code', 1, 'https://ror.org/01q86p724 Flexmedia (Brazil)'),
(33214, 'https://ror.org/052b84r98', 'no_lang_code', 1, 'https://ror.org/052b84r98 FiberWork (Brazil)'),
(33215, 'https://ror.org/04vmef791', 'no_lang_code', 1, 'https://ror.org/04vmef791 Mentor Interactive (Brazil)'),
(33216, 'https://ror.org/00ehthc25', 'no_lang_code', 1, 'https://ror.org/00ehthc25 Didai Tecnologia'),
(33217, 'https://ror.org/01y5z8p89', 'en', 1, 'https://ror.org/01y5z8p89 James Cook University Singapore'),
(33218, 'https://ror.org/021k9av74', 'no_lang_code', 1, 'https://ror.org/021k9av74 DEV Tecnologia (Brazil)'),
(33219, 'https://ror.org/00aycwa77', 'no_lang_code', 1, 'https://ror.org/00aycwa77 Fibraforte (Brazil)'),
(33220, 'https://ror.org/01yk80k13', 'no_lang_code', 1, 'https://ror.org/01yk80k13 Hytron (Brazil)'),
(33221, 'https://ror.org/00c6b0p07', 'pt', 1, 'https://ror.org/00c6b0p07 Instituto Internacional de Ciencias Sociais'),
(33222, 'https://ror.org/017365f98', 'no_lang_code', 1, 'https://ror.org/017365f98 Devworks Game Technology (Brazil)'),
(33223, 'https://ror.org/01hewj013', 'no_lang_code', 1, 'https://ror.org/01hewj013 Icra Produtos Para Cerâmica (Brazil)'),
(33224, 'https://ror.org/02mvjj250', 'pt', 1, 'https://ror.org/02mvjj250 Fundação Apinco de Ciência e Tecnologia Avícolas'),
(33225, 'https://ror.org/04arg4k48', 'no_lang_code', 1, 'https://ror.org/04arg4k48 Idea Electronic Systems (Brazil) Idea Sistemas EletrƓnicos'),
(33226, 'https://ror.org/040g62b80', 'pt', 1, 'https://ror.org/040g62b80 Escola Superior de Propaganda e Marketing School of Higher Education in Advertising and Marketing'),
(33227, 'https://ror.org/04atwyt60', 'pt', 1, 'https://ror.org/04atwyt60 Fundação Armando Alvares Penteado Fundação Armando Álvares Penteado'),
(33228, 'https://ror.org/03smr8g19', 'no_lang_code', 1, 'https://ror.org/03smr8g19 Thomson Reuters (Brazil)'),
(33229, 'https://ror.org/04ymxv744', 'pt', 1, 'https://ror.org/04ymxv744 Fundação Bienal de São Paulo'),
(33230, 'https://ror.org/00khmgv85', 'no_lang_code', 1, 'https://ror.org/00khmgv85 Fisioatual (Brazil)'),
(33231, 'https://ror.org/02tj71548', 'no_lang_code', 1, 'https://ror.org/02tj71548 Eudora Energia (Brazil)'),
(33232, 'https://ror.org/05b9s4832', 'no_lang_code', 1, 'https://ror.org/05b9s4832 EXA-M Instrumentação Biomédica (Brazil)'),
(33233, 'https://ror.org/03z70cs67', 'no_lang_code', 1, 'https://ror.org/03z70cs67 Imag Indústria e Comércio de Componentes EletrÓnicos (Brasil)');
INSERT INTO `rors` VALUES
(33234, 'https://ror.org/02zx99z61', 'no_lang_code', 1, 'https://ror.org/02zx99z61 Excelchip (Brazil)'),
(33235, 'https://ror.org/04pdhvs51', 'no_lang_code', 1, 'https://ror.org/04pdhvs51 Expansão Científica (Brazil)'),
(33236, 'https://ror.org/04vxfxp93', 'no_lang_code', 1, 'https://ror.org/04vxfxp93 Flavor Tec (Brazil)'),
(33237, 'https://ror.org/044nfga98', 'pt', 1, 'https://ror.org/044nfga98 Centro de Tecnologia da Informação Renato Archer'),
(33238, 'https://ror.org/05jk1ds24', 'no_lang_code', 1, 'https://ror.org/05jk1ds24 Finamac (Brazil)'),
(33239, 'https://ror.org/02kzasj84', 'no_lang_code', 1, 'https://ror.org/02kzasj84 Fleximedical (Brazil)'),
(33240, 'https://ror.org/05x1p4174', 'no_lang_code', 1, 'https://ror.org/05x1p4174 Expertise Engenharia (Brazil)'),
(33241, 'https://ror.org/00y78ex22', 'no_lang_code', 1, 'https://ror.org/00y78ex22 Genoa (Brazil)'),
(33242, 'https://ror.org/01cyhds50', 'no_lang_code', 1, 'https://ror.org/01cyhds50 Eyetec Equipamentos Oftalmicos (Brazil)'),
(33243, 'https://ror.org/05mkdrw83', 'no_lang_code', 1, 'https://ror.org/05mkdrw83 Flyever (Brazil)'),
(33244, 'https://ror.org/01s2r6v67', 'no_lang_code', 1, 'https://ror.org/01s2r6v67 Genotyping BPI (Brazil)'),
(33245, 'https://ror.org/002kxw589', 'no_lang_code', 1, 'https://ror.org/002kxw589 Gentros (Brazil)'),
(33246, 'https://ror.org/00dn9yd16', 'no_lang_code', 1, 'https://ror.org/00dn9yd16 Fmaiis (Brazil)'),
(33247, 'https://ror.org/00rs0x560', 'pt', 1, 'https://ror.org/00rs0x560 Fundação de Estudos AgrÔrios Luiz de Queiroz'),
(33248, 'https://ror.org/042tpyj36', 'no_lang_code', 1, 'https://ror.org/042tpyj36 Formatto (Brazil)'),
(33249, 'https://ror.org/0207qan07', 'no_lang_code', 1, 'https://ror.org/0207qan07 Geoambiente (Brazil)'),
(33250, 'https://ror.org/0271rqt72', 'pt', 1, 'https://ror.org/0271rqt72 Fundação de Rotarianos de São Paulo'),
(33251, 'https://ror.org/00jvapg71', 'no_lang_code', 1, 'https://ror.org/00jvapg71 Incon EletrƓnica (Brazil)'),
(33252, 'https://ror.org/0476s4736', 'no_lang_code', 1, 'https://ror.org/0476s4736 Fortelab (Brazil)'),
(33253, 'https://ror.org/00cw5w418', 'no_lang_code', 1, 'https://ror.org/00cw5w418 Eletro MƔquinas ComƩrcio e RepresentaƧƵes (Brazil)'),
(33254, 'https://ror.org/02ezmc341', 'pt', 1, 'https://ror.org/02ezmc341 Forum Brasileiro de Segurança Pública'),
(33255, 'https://ror.org/03yg95m91', 'no_lang_code', 1, 'https://ror.org/03yg95m91 Royal Fish (Brazil)'),
(33256, 'https://ror.org/00z8qyj05', 'pt', 1, 'https://ror.org/00z8qyj05 Fundação Educacional de Ituverava'),
(33257, 'https://ror.org/04zcpm936', 'pt', 1, 'https://ror.org/04zcpm936 Faculdade de Mococa'),
(33258, 'https://ror.org/01mgp9933', 'no_lang_code', 1, 'https://ror.org/01mgp9933 Fotonica (Brazil)'),
(33259, 'https://ror.org/037zm3n13', 'no_lang_code', 1, 'https://ror.org/037zm3n13 Fosbrasil (Brazil)'),
(33260, 'https://ror.org/04vbcaz46', 'no_lang_code', 1, 'https://ror.org/04vbcaz46 Indústria Brasileira de MÔquinas e Equipamentos (Brazil)'),
(33261, 'https://ror.org/04b90kd02', 'no_lang_code', 1, 'https://ror.org/04b90kd02 Fultec Inox (Brazil)'),
(33262, 'https://ror.org/03mhtag13', 'pt', 1, 'https://ror.org/03mhtag13 Fundação Faculdade de Medicina'),
(33263, 'https://ror.org/05tk8yc63', 'no_lang_code', 1, 'https://ror.org/05tk8yc63 Geodados (Brazil)'),
(33264, 'https://ror.org/05891dg79', 'pt', 1, 'https://ror.org/05891dg79 Fundação André Tosello'),
(33265, 'https://ror.org/05c6jzf22', 'pt', 1, 'https://ror.org/05c6jzf22 Faculdades Integradas de SĆ£o Paulo'),
(33266, 'https://ror.org/00ngrh496', 'en', 1, 'https://ror.org/00ngrh496 Fundação Instituto de Pesquisas EconÓmicas Institute of Economic Research Foundation'),
(33267, 'https://ror.org/051wkpd79', 'pt', 1, 'https://ror.org/051wkpd79 Faculdades Integradas Teresa D''Ɓvila'),
(33268, 'https://ror.org/05g2wkx97', 'no_lang_code', 1, 'https://ror.org/05g2wkx97 JG Moriya (Brazil)'),
(33269, 'https://ror.org/010h1w694', 'no_lang_code', 1, 'https://ror.org/010h1w694 Innovatech (Brazil)'),
(33270, 'https://ror.org/025jcmr63', 'no_lang_code', 1, 'https://ror.org/025jcmr63 Clorovale Diamantes (Brazil)'),
(33271, 'https://ror.org/04vd6m647', 'no_lang_code', 1, 'https://ror.org/04vd6m647 Geotecno (Brazil)'),
(33272, 'https://ror.org/00936hn50', 'no_lang_code', 1, 'https://ror.org/00936hn50 Gepco (Brazil)'),
(33273, 'https://ror.org/02jzh4f23', 'no_lang_code', 1, 'https://ror.org/02jzh4f23 Innovatech Telecom (Brazil)'),
(33274, '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'),
(33275, 'https://ror.org/01evj3822', 'no_lang_code', 1, 'https://ror.org/01evj3822 Jotaeme Fitafer (Brazil)'),
(33276, 'https://ror.org/04dqh1705', 'no_lang_code', 1, 'https://ror.org/04dqh1705 Kayros Ambiental e AgrĆ­cola (Brazil)'),
(33277, 'https://ror.org/00qbw4596', 'pt', 1, 'https://ror.org/00qbw4596 Instituto de NeurociĆŖncias e Comportamento'),
(33278, 'https://ror.org/01zevds37', 'no_lang_code', 1, 'https://ror.org/01zevds37 Germinal (Brazil)'),
(33279, 'https://ror.org/00mb5m706', 'no_lang_code', 1, 'https://ror.org/00mb5m706 Inovamat (Brazil)'),
(33280, 'https://ror.org/044wyhr42', 'no_lang_code', 1, 'https://ror.org/044wyhr42 Kehl (Brazil)'),
(33281, 'https://ror.org/047rnn627', 'pt', 1, 'https://ror.org/047rnn627 Fundação Otorrinolaringologia'),
(33282, 'https://ror.org/02cnnsp10', 'en', 1, 'https://ror.org/02cnnsp10 Forest Science and Research Institute Instituto de Pesquisas e Estudos Florestais'),
(33283, 'https://ror.org/05g99rf11', 'no_lang_code', 1, 'https://ror.org/05g99rf11 Kidopi (Brazil)'),
(33284, 'https://ror.org/05jey0e23', 'pt', 1, 'https://ror.org/05jey0e23 Fundação Padre Albino'),
(33285, 'https://ror.org/044dz3b65', 'pt', 1, 'https://ror.org/044dz3b65 Instituto de Psicologia Comportamental de SĆ£o Carlos'),
(33286, 'https://ror.org/040bhbn44', 'no_lang_code', 1, 'https://ror.org/040bhbn44 Klais SoluƧƵes Consultoria e Desenvolvimento (Brazil)'),
(33287, 'https://ror.org/051mhmc69', 'en', 1, 'https://ror.org/051mhmc69 Fernand Braudel Institute of World Economics Instituto Fernand Braudel de Economia Mundial'),
(33288, 'https://ror.org/05ppk5d39', 'no_lang_code', 1, 'https://ror.org/05ppk5d39 Gisplan (Brazil)'),
(33289, 'https://ror.org/01e7p2b30', 'pt', 1, 'https://ror.org/01e7p2b30 Instituto Histórico e GeogrÔfico de São Paulo'),
(33290, 'https://ror.org/03k18wv31', 'no_lang_code', 1, 'https://ror.org/03k18wv31 Instituto Internacional de Ecologia (Brazil)'),
(33291, 'https://ror.org/01kr7ch79', 'no_lang_code', 1, 'https://ror.org/01kr7ch79 Knowledge Networks & Business Solutions (Brazil)'),
(33292, 'https://ror.org/04rf11p79', 'no_lang_code', 1, 'https://ror.org/04rf11p79 Global Pet (Brazil)'),
(33293, 'https://ror.org/002205j24', 'no_lang_code', 1, 'https://ror.org/002205j24 GlobalMag (Brazil)'),
(33294, 'https://ror.org/01vjmbb44', 'no_lang_code', 1, 'https://ror.org/01vjmbb44 Insolita Studios (Brazil)'),
(33295, 'https://ror.org/00w4knw64', 'pt', 1, 'https://ror.org/00w4knw64 Fundação Faculdade de Odontologia'),
(33296, 'https://ror.org/03cw78f47', 'en', 1, 'https://ror.org/03cw78f47 Instituto Latino Americano da Sepse Latin American Sepsis Institute'),
(33297, 'https://ror.org/023s53v33', 'no_lang_code', 1, 'https://ror.org/023s53v33 Invel (Brazil)'),
(33298, 'https://ror.org/0419dzy74', 'pt', 1, 'https://ror.org/0419dzy74 Instituto Lina Bo e P.M. Bardi'),
(33299, 'https://ror.org/000dj4022', 'pt', 1, 'https://ror.org/000dj4022 Fundação para o Desenvolvimento Médico e Hospitalar'),
(33300, 'https://ror.org/02pewm513', 'pt', 1, 'https://ror.org/02pewm513 Instituto Paulista de Ensino e Pesquisa'),
(33301, 'https://ror.org/056hxdb03', 'no_lang_code', 1, 'https://ror.org/056hxdb03 Griaule Biometrics (Brazil)'),
(33302, 'https://ror.org/033pzck63', 'no_lang_code', 1, 'https://ror.org/033pzck63 Koppert (Brazil)'),
(33303, 'https://ror.org/02t8t0f85', 'no_lang_code', 1, 'https://ror.org/02t8t0f85 DWG Arquitetura e Sistemas (Brazil)'),
(33304, 'https://ror.org/01ewyge67', 'pt', 1, 'https://ror.org/01ewyge67 Instituto Paulo Freire'),
(33305, 'https://ror.org/018w84g35', 'pt', 1, 'https://ror.org/018w84g35 Instituto Barretos de Tecnologia'),
(33306, 'https://ror.org/0119f6n25', 'pt', 1, 'https://ror.org/0119f6n25 Fundação Energia e Saneamento'),
(33307, 'https://ror.org/04vdftk11', 'no_lang_code', 1, 'https://ror.org/04vdftk11 Gtac Solutions (Brazil)'),
(33308, 'https://ror.org/046ntxd30', 'no_lang_code', 1, 'https://ror.org/046ntxd30 Korth Rfid (Brazil)'),
(33309, 'https://ror.org/00f4pfk27', 'pt', 1, 'https://ror.org/00f4pfk27 Instituto Penido Burnier'),
(33310, 'https://ror.org/045pt3n52', 'no_lang_code', 1, 'https://ror.org/045pt3n52 Guatifer Usinagem e Ferramentaria (Brazil)'),
(33311, 'https://ror.org/04skrd412', 'pt', 1, 'https://ror.org/04skrd412 Fundação Paulista de Tecnologia e Educação'),
(33312, 'https://ror.org/04a4nak07', 'pt', 1, 'https://ror.org/04a4nak07 Instituto Polis'),
(33313, 'https://ror.org/00vjwj043', 'no_lang_code', 1, 'https://ror.org/00vjwj043 Kroma Equipamentos Especiais (Brazil)'),
(33314, 'https://ror.org/02nbj1d88', 'pt', 1, 'https://ror.org/02nbj1d88 Fórum de Entidades Nacionais da Psicologia Brasileira'),
(33315, 'https://ror.org/052bnfg64', 'no_lang_code', 1, 'https://ror.org/052bnfg64 Kryptus (Brazil)'),
(33316, 'https://ror.org/04sapp259', 'no_lang_code', 1, 'https://ror.org/04sapp259 Labcom Sistemas (Brazil)'),
(33317, 'https://ror.org/058kgj085', 'no_lang_code', 1, 'https://ror.org/058kgj085 Hexalab (Brazil)'),
(33318, 'https://ror.org/02yj38452', 'no_lang_code', 1, 'https://ror.org/02yj38452 Intecmat (Brazil)'),
(33319, 'https://ror.org/00acxsg16', 'no_lang_code', 1, 'https://ror.org/00acxsg16 Herbicat (Brazil)'),
(33320, 'https://ror.org/05c6qc887', 'no_lang_code', 1, 'https://ror.org/05c6qc887 Gyrofly (Brazil)'),
(33321, 'https://ror.org/0104fhy48', 'no_lang_code', 1, 'https://ror.org/0104fhy48 Inter-Metro (Brazil)'),
(33322, 'https://ror.org/037nj1h98', 'en', 1, 'https://ror.org/037nj1h98 Labmass Laboratory'),
(33323, 'https://ror.org/02k5vwz61', 'pt', 1, 'https://ror.org/02k5vwz61 Abutua Tecnologia'),
(33324, 'https://ror.org/00km5bz41', 'no_lang_code', 1, 'https://ror.org/00km5bz41 Casablanca (Brazil)'),
(33325, 'https://ror.org/04dj9qm44', 'pt', 1, 'https://ror.org/04dj9qm44 Laboratório Biosintesis P&D'),
(33326, 'https://ror.org/03x053h94', 'en', 1, 'https://ror.org/03x053h94 Brazilian Institute of Neuropsychology and Behaviour Instituto Brasileiro de Neuropsicologia e Comportamento'),
(33327, 'https://ror.org/037c3sd41', 'pt', 1, 'https://ror.org/037c3sd41 Fondazione Università Vita Cristiana Fundação UniversitÔria Vida Cristã'),
(33328, 'https://ror.org/052k3m749', 'no_lang_code', 1, 'https://ror.org/052k3m749 Invenire Internacional InformƔtica (Brazil)'),
(33329, 'https://ror.org/003c2h870', 'pt', 1, 'https://ror.org/003c2h870 Fundação Zerbini'),
(33330, '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'),
(33331, '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'),
(33332, 'https://ror.org/02x57pk47', 'no_lang_code', 1, 'https://ror.org/02x57pk47 Incontrol (Brazil)'),
(33333, 'https://ror.org/04dhpvj28', 'no_lang_code', 1, 'https://ror.org/04dhpvj28 Líbera Tecnologia e Inovação (Brazil)'),
(33334, 'https://ror.org/04pr9yn16', 'no_lang_code', 1, 'https://ror.org/04pr9yn16 Metrolab CalibraƧƵes (Brazil)'),
(33335, 'https://ror.org/02kepmn21', 'no_lang_code', 1, 'https://ror.org/02kepmn21 Quimlab (Brazil)'),
(33336, 'https://ror.org/0112jt408', 'no_lang_code', 1, 'https://ror.org/0112jt408 Ipel - Itibanyl Produtos Especiais (Brazil)'),
(33337, 'https://ror.org/05rmqc942', 'no_lang_code', 1, 'https://ror.org/05rmqc942 Ipsos (Brazil)'),
(33338, 'https://ror.org/027dbtv13', 'no_lang_code', 1, 'https://ror.org/027dbtv13 Mextra (Brazil)'),
(33339, 'https://ror.org/05hkbb047', 'no_lang_code', 1, 'https://ror.org/05hkbb047 Inselli Engenharia e CiĆŖncia Aplicada (Brazil)'),
(33340, 'https://ror.org/04w6cnp87', 'no_lang_code', 1, 'https://ror.org/04w6cnp87 LaserTools Tecnologia (Brazil)'),
(33341, 'https://ror.org/00afava75', 'no_lang_code', 1, 'https://ror.org/00afava75 IQX-Inove Qualyx (Brazil)'),
(33342, 'https://ror.org/00a0d6g98', 'no_lang_code', 1, 'https://ror.org/00a0d6g98 Mhnano (Brazil)'),
(33343, 'https://ror.org/045k8ds88', 'no_lang_code', 1, 'https://ror.org/045k8ds88 Multi Vegetal FitocosmƩticos (Brazil)'),
(33344, 'https://ror.org/008nqpv19', 'pt', 1, 'https://ror.org/008nqpv19 Santa Casa da Misericórdia de Bragança Paulista'),
(33345, 'https://ror.org/007pk1x33', 'no_lang_code', 1, 'https://ror.org/007pk1x33 Lifemed (Brazil)'),
(33346, 'https://ror.org/018tgms75', 'no_lang_code', 1, 'https://ror.org/018tgms75 Microdesign Informatica Tecnologia Industria e Comerico (Brazil)'),
(33347, 'https://ror.org/022cem317', 'no_lang_code', 1, 'https://ror.org/022cem317 Multicorpos Engenharia (Brazil)'),
(33348, 'https://ror.org/03qw5kx45', 'pt', 1, 'https://ror.org/03qw5kx45 Santa Casa de Misericórdia de São Carlos'),
(33349, 'https://ror.org/0316khr05', 'no_lang_code', 1, 'https://ror.org/0316khr05 OmniTek (Brazil)'),
(33350, 'https://ror.org/004rmpj87', 'no_lang_code', 1, 'https://ror.org/004rmpj87 Light Tech (Brazil)'),
(33351, 'https://ror.org/055y2wa71', 'no_lang_code', 1, 'https://ror.org/055y2wa71 Limpgas Tecnologia (Brazil)'),
(33352, 'https://ror.org/04er4p734', 'no_lang_code', 1, 'https://ror.org/04er4p734 Itabras Mineração (Brazil)'),
(33353, 'https://ror.org/040dnmx71', 'en', 1, 'https://ror.org/040dnmx71 Museu de Arte de SĆ£o Paulo SĆ£o Paulo Museum of Art'),
(33354, 'https://ror.org/01435bw87', 'no_lang_code', 1, 'https://ror.org/01435bw87 Itatex (Brazil)'),
(33355, 'https://ror.org/00p1y4e96', 'no_lang_code', 1, 'https://ror.org/00p1y4e96 Itera - Inovação e Desenvolvimento Tecnológico (Brazil)'),
(33356, 'https://ror.org/0510w1f89', 'no_lang_code', 1, 'https://ror.org/0510w1f89 Eletrovento (Brazil)'),
(33357, 'https://ror.org/05q72ar94', 'no_lang_code', 1, 'https://ror.org/05q72ar94 Mwa Automação (Brazil)'),
(33358, 'https://ror.org/000d6be88', 'no_lang_code', 1, 'https://ror.org/000d6be88 Linax (Brazil)'),
(33359, 'https://ror.org/03f8dte96', 'no_lang_code', 1, 'https://ror.org/03f8dte96 Onion Tecnologia (Brazil)'),
(33360, 'https://ror.org/0198yxk45', 'no_lang_code', 1, 'https://ror.org/0198yxk45 LinkGen (Brazil)'),
(33361, 'https://ror.org/01x1p1c14', 'no_lang_code', 1, 'https://ror.org/01x1p1c14 Ophthalmos (Brazil)'),
(33362, 'https://ror.org/04196w034', 'en', 1, 'https://ror.org/04196w034 Ministry of Culture MinistƩrio da Cultura'),
(33363, 'https://ror.org/03st26d34', 'no_lang_code', 1, 'https://ror.org/03st26d34 Opto EletrƓnica (Brazil)'),
(33364, 'https://ror.org/03ypdxy52', 'no_lang_code', 1, 'https://ror.org/03ypdxy52 OptoLink (Brazil)'),
(33365, 'https://ror.org/05y89d612', 'no_lang_code', 1, 'https://ror.org/05y89d612 Logtrac (Brazil)'),
(33366, 'https://ror.org/04avbbr42', 'no_lang_code', 1, 'https://ror.org/04avbbr42 Nanobionics (Brazil)'),
(33367, 'https://ror.org/04yzwsd04', 'no_lang_code', 1, 'https://ror.org/04yzwsd04 Lucotec (Brazil)'),
(33368, 'https://ror.org/005x6cs54', 'no_lang_code', 1, 'https://ror.org/005x6cs54 Nanocore (Brazil)'),
(33369, 'https://ror.org/04gjng233', 'no_lang_code', 1, 'https://ror.org/04gjng233 Nanofitotec (Brazil)'),
(33370, 'https://ror.org/05vj1ve49', 'no_lang_code', 1, 'https://ror.org/05vj1ve49 Luxtec (Brazil)'),
(33371, 'https://ror.org/00cm1b035', 'no_lang_code', 1, 'https://ror.org/00cm1b035 Prombiom Tecnologia (Brazil)'),
(33372, 'https://ror.org/018jj2831', 'no_lang_code', 1, 'https://ror.org/018jj2831 Nanomed (Brazil)'),
(33373, 'https://ror.org/028xyhs09', 'pt', 1, 'https://ror.org/028xyhs09 Processos - SoluƧƵes de Engenharia (Brazil)'),
(33374, 'https://ror.org/03n3hc844', 'no_lang_code', 1, 'https://ror.org/03n3hc844 Safran (Brazil)'),
(33375, 'https://ror.org/021frtx57', 'no_lang_code', 1, 'https://ror.org/021frtx57 Lychnoflora (Brazil)'),
(33376, 'https://ror.org/05ynfxz71', 'no_lang_code', 1, 'https://ror.org/05ynfxz71 Nanophoton (Brazil)'),
(33377, 'https://ror.org/02yxa8882', 'no_lang_code', 1, 'https://ror.org/02yxa8882 Optron MicromecĆ¢nica Ɠptica (Brazil)'),
(33378, 'https://ror.org/03cqb5x54', 'no_lang_code', 1, 'https://ror.org/03cqb5x54 Rotogine (Brazil)'),
(33379, 'https://ror.org/029s65f92', 'en', 1, 'https://ror.org/029s65f92 Ministry of Communications MinistƩrio das ComunicaƧƵes'),
(33380, 'https://ror.org/01w8a9z74', 'no_lang_code', 1, 'https://ror.org/01w8a9z74 Nanox (Brazil)'),
(33381, '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'),
(33382, 'https://ror.org/02w5cw191', 'no_lang_code', 1, 'https://ror.org/02w5cw191 KOM Lux Fibras Ɠpticas (Brazil)'),
(33383, 'https://ror.org/005jwm150', 'no_lang_code', 1, 'https://ror.org/005jwm150 Grupo GuaƧu (Brazil)'),
(33384, 'https://ror.org/01v46ba07', 'no_lang_code', 1, 'https://ror.org/01v46ba07 Madeplas (Brazil)'),
(33385, 'https://ror.org/039s5aa86', 'no_lang_code', 1, 'https://ror.org/039s5aa86 Optsensys (Brazil)'),
(33386, 'https://ror.org/017hmpr31', 'no_lang_code', 1, 'https://ror.org/017hmpr31 Narcissus Pesquisa ClĆ­nica e Biotecnologia (Brazil)'),
(33387, 'https://ror.org/04s6c8c61', 'no_lang_code', 1, 'https://ror.org/04s6c8c61 Promip (Brazil)'),
(33388, 'https://ror.org/04s8a3621', 'no_lang_code', 1, 'https://ror.org/04s8a3621 Magnamed (Brazil)'),
(33389, 'https://ror.org/0001mcx38', 'no_lang_code', 1, 'https://ror.org/0001mcx38 Opusphere (Brazil)'),
(33390, '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'),
(33391, 'https://ror.org/0413f6k16', 'en', 1, 'https://ror.org/0413f6k16 Ministry of Labor and Employment MinistƩrio do Trabalho e Emprego'),
(33392, 'https://ror.org/002w0zt72', 'no_lang_code', 1, 'https://ror.org/002w0zt72 Oralls (Brazil)'),
(33393, 'https://ror.org/050psgz02', 'no_lang_code', 1, 'https://ror.org/050psgz02 Misque (Brazil)'),
(33394, 'https://ror.org/04watzy58', 'no_lang_code', 1, 'https://ror.org/04watzy58 IT&D Informação Tecnologia e Desenvolvimento (Brazil)'),
(33395, 'https://ror.org/01dx1gy36', 'no_lang_code', 1, 'https://ror.org/01dx1gy36 MMOptics (Brazil)'),
(33396, 'https://ror.org/02rxkjh73', 'no_lang_code', 1, 'https://ror.org/02rxkjh73 Natural Products & Technologies (Brazil)'),
(33397, 'https://ror.org/026kbck74', 'no_lang_code', 1, 'https://ror.org/026kbck74 Proeletronic (Brazil)'),
(33398, 'https://ror.org/05sf2j279', 'no_lang_code', 1, 'https://ror.org/05sf2j279 Proteimax (Brazil)'),
(33399, 'https://ror.org/04x626p25', 'no_lang_code', 1, 'https://ror.org/04x626p25 Navita (Brazil)'),
(33400, 'https://ror.org/04zvzt585', 'no_lang_code', 1, 'https://ror.org/04zvzt585 ProteobrƔs (Brazil)'),
(33401, 'https://ror.org/048pv7j43', 'no_lang_code', 1, 'https://ror.org/048pv7j43 BMT Group (Brazil)'),
(33402, 'https://ror.org/04myjbb93', 'no_lang_code', 1, 'https://ror.org/04myjbb93 Organia (Brazil)'),
(33403, 'https://ror.org/05xnphh52', 'no_lang_code', 1, 'https://ror.org/05xnphh52 PV Prest VƔcuo (Brazil)'),
(33404, 'https://ror.org/05b2zm953', 'no_lang_code', 1, 'https://ror.org/05b2zm953 Pullup (Brazil)'),
(33405, 'https://ror.org/03pephy40', 'pt', 1, 'https://ror.org/03pephy40 Mosteiro de SĆ£o Bento SĆ£o Bento Monastery'),
(33406, 'https://ror.org/02c52d726', 'no_lang_code', 1, 'https://ror.org/02c52d726 Netvmi (Brazil)'),
(33407, 'https://ror.org/01a66pc38', 'no_lang_code', 1, 'https://ror.org/01a66pc38 MRA Indústria de Equipamentos EletrÓnicos (Brazil)'),
(33408, 'https://ror.org/03526fm87', 'no_lang_code', 1, 'https://ror.org/03526fm87 MRE SoluƧƵes (Brazil)'),
(33409, 'https://ror.org/03znsa629', 'no_lang_code', 1, 'https://ror.org/03znsa629 Neuron EletrƓnica (Brazil)'),
(33410, 'https://ror.org/02jm9xx29', 'no_lang_code', 1, 'https://ror.org/02jm9xx29 Medecell (Brazil)'),
(33411, 'https://ror.org/010tvwd33', 'no_lang_code', 1, 'https://ror.org/010tvwd33 Rcasoft InformƔtica (Brazil)'),
(33412, 'https://ror.org/00z78kg48', 'no_lang_code', 1, 'https://ror.org/00z78kg48 Partecurae Analysis (Brazil)'),
(33413, 'https://ror.org/01g1j0r83', 'no_lang_code', 1, 'https://ror.org/01g1j0r83 LojaFƔcil (Brazil)'),
(33414, 'https://ror.org/03qv32r22', 'no_lang_code', 1, 'https://ror.org/03qv32r22 RC ConstruƧƵes (Brazil)'),
(33415, 'https://ror.org/034nkgy63', 'no_lang_code', 1, 'https://ror.org/034nkgy63 Nexus (Brazil)'),
(33416, 'https://ror.org/00vd2t792', 'no_lang_code', 1, 'https://ror.org/00vd2t792 R4F Tecnologia (Brazil)'),
(33417, 'https://ror.org/0302jrc12', 'no_lang_code', 1, 'https://ror.org/0302jrc12 Meier & Giacaglia Medidores (Brazil)'),
(33418, 'https://ror.org/01rzns588', 'no_lang_code', 1, 'https://ror.org/01rzns588 Racetronix (Brazil)'),
(33419, 'https://ror.org/05ndg7m38', 'no_lang_code', 1, 'https://ror.org/05ndg7m38 Piacentini (Brazil)'),
(33420, 'https://ror.org/01adsn089', 'no_lang_code', 1, 'https://ror.org/01adsn089 Metaltech Sorocaba Equipamentos e ServiƧos (Brazil)'),
(33421, 'https://ror.org/04bxk0j07', 'no_lang_code', 1, 'https://ror.org/04bxk0j07 NĆŗcleo de Pesquisas Aplicadas (Brazil)'),
(33422, 'https://ror.org/03mp7t709', 'no_lang_code', 1, 'https://ror.org/03mp7t709 Vitrogen (Brazil)'),
(33423, 'https://ror.org/04evkdk49', 'no_lang_code', 1, 'https://ror.org/04evkdk49 MEMS (Brazil)'),
(33424, 'https://ror.org/01cjxj157', 'no_lang_code', 1, 'https://ror.org/01cjxj157 Mestre Dos Mares (Brazil)'),
(33425, 'https://ror.org/00za2ev77', 'no_lang_code', 1, 'https://ror.org/00za2ev77 Reciclapac (Brazil)'),
(33426, 'https://ror.org/04fjgxw20', 'pt', 1, 'https://ror.org/04fjgxw20 NĆŗcleo Paradigma'),
(33427, 'https://ror.org/04e25k642', 'no_lang_code', 1, 'https://ror.org/04e25k642 Metal Plasma (Brazil)'),
(33428, 'https://ror.org/00vk4de58', 'no_lang_code', 1, 'https://ror.org/00vk4de58 Red, Orange and Green Environmental Technologies (Brazil)'),
(33429, 'https://ror.org/01j5rbx63', 'no_lang_code', 1, 'https://ror.org/01j5rbx63 Metalex (Brazil)'),
(33430, 'https://ror.org/05cs9ej55', 'no_lang_code', 1, 'https://ror.org/05cs9ej55 Redealumni (Brazil)'),
(33431, 'https://ror.org/05dbrz220', 'no_lang_code', 1, 'https://ror.org/05dbrz220 Reade (Brazil)'),
(33432, 'https://ror.org/03sss6f31', 'no_lang_code', 1, 'https://ror.org/03sss6f31 Thales (Brazil)'),
(33433, 'https://ror.org/03td46k39', 'no_lang_code', 1, 'https://ror.org/03td46k39 Refazenda (Brazil)'),
(33434, 'https://ror.org/03fwdp923', 'no_lang_code', 1, 'https://ror.org/03fwdp923 ReaQuim (Brazil)'),
(33435, 'https://ror.org/03803zg51', 'no_lang_code', 1, 'https://ror.org/03803zg51 Biopcycle (Brazil)'),
(33436, 'https://ror.org/038wvk427', 'pt', 1, 'https://ror.org/038wvk427 Secretaria Municipal de Desenvolvimento EconÓmico e Negócios de Turismo'),
(33437, 'https://ror.org/042zefm29', 'no_lang_code', 1, 'https://ror.org/042zefm29 Pedra Agroindustrial (Brazil)'),
(33438, 'https://ror.org/01y0nwc34', 'no_lang_code', 1, 'https://ror.org/01y0nwc34 Odysci (Brazil)'),
(33439, 'https://ror.org/02rtvpy35', 'no_lang_code', 1, 'https://ror.org/02rtvpy35 Recaltech (Brazil)'),
(33440, 'https://ror.org/00jc39915', 'no_lang_code', 1, 'https://ror.org/00jc39915 Revolugenix (Brazil)'),
(33441, 'https://ror.org/02rwqk393', 'no_lang_code', 1, 'https://ror.org/02rwqk393 Siporex (Brazil)'),
(33442, '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'),
(33443, 'https://ror.org/0117bm254', 'no_lang_code', 1, 'https://ror.org/0117bm254 Rfideas (Brazil)'),
(33444, 'https://ror.org/05f24d398', 'no_lang_code', 1, 'https://ror.org/05f24d398 SF International (Brazil)'),
(33445, 'https://ror.org/05nrp6689', 'pt', 1, 'https://ror.org/05nrp6689 Secretaria de Desenvolvimento EconƓmico e Turƭstico'),
(33446, 'https://ror.org/0498n0s19', 'no_lang_code', 1, 'https://ror.org/0498n0s19 SMA Tecnologia (Brazil)'),
(33447, 'https://ror.org/02dm2w078', 'no_lang_code', 1, 'https://ror.org/02dm2w078 Brvant (Brazil)'),
(33448, 'https://ror.org/03dcjha26', 'no_lang_code', 1, 'https://ror.org/03dcjha26 Macrolog (Brazil)'),
(33449, 'https://ror.org/000q6bw04', 'no_lang_code', 1, 'https://ror.org/000q6bw04 SmartBio Tecnologia (Brazil)'),
(33450, 'https://ror.org/04jvq3152', 'pt', 1, 'https://ror.org/04jvq3152 Sociedade Brasileira de Medicina Nuclear e Imagem Molecular'),
(33451, 'https://ror.org/00xj09k15', 'pt', 1, 'https://ror.org/00xj09k15 Secretaria Municipal do Desenvolvimento EconƓmico e Turismo'),
(33452, 'https://ror.org/034qc6c88', 'no_lang_code', 1, 'https://ror.org/034qc6c88 RMF Consultoria (Brazil)'),
(33453, 'https://ror.org/04s85wv17', 'pt', 1, 'https://ror.org/04s85wv17 Sociedade de UsuƔrios de Computadores e Equipamentos SubsidiƔrios Sucesu Nacional'),
(33454, 'https://ror.org/01am5a204', 'en', 1, 'https://ror.org/01am5a204 Sobramfa – Medical Education and Humanism'),
(33455, 'https://ror.org/00fsyr319', 'pt', 1, 'https://ror.org/00fsyr319 Pia Sociedade de SĆ£o Paulo'),
(33456, 'https://ror.org/001nyte24', 'no_lang_code', 1, 'https://ror.org/001nyte24 Gerenciamento Tecnologia e Sistemas (Brazil)'),
(33457, 'https://ror.org/05r24hk86', 'pt', 1, 'https://ror.org/05r24hk86 Sociedade Brasileira de Psicologia Hospitalar (Brazil)'),
(33458, 'https://ror.org/02jje0527', 'no_lang_code', 1, 'https://ror.org/02jje0527 Rotar (Brazil)'),
(33459, 'https://ror.org/05vpztv21', 'no_lang_code', 1, 'https://ror.org/05vpztv21 Plantech (Brazil)'),
(33460, 'https://ror.org/04a6scr36', 'pt', 1, 'https://ror.org/04a6scr36 Sociedade de Nefrologia do Estado de SĆ£o Paulo'),
(33461, 'https://ror.org/056m9b429', 'pt', 1, 'https://ror.org/056m9b429 Sociedade AstronƓmica Brasileira'),
(33462, 'https://ror.org/03ymdwd91', 'no_lang_code', 1, 'https://ror.org/03ymdwd91 Sollis (Brazil)'),
(33463, 'https://ror.org/03v3vkp27', 'no_lang_code', 1, 'https://ror.org/03v3vkp27 Plasma liits (Brazil)'),
(33464, 'https://ror.org/03hw2sw66', 'en', 1, 'https://ror.org/03hw2sw66 Sociedade de Botânica de São Paulo São Paulo Botanical Society'),
(33465, 'https://ror.org/01mj88p41', 'no_lang_code', 1, 'https://ror.org/01mj88p41 SolstĆ­cio Energia (Brazil)'),
(33466, 'https://ror.org/01ams7d26', 'pt', 1, 'https://ror.org/01ams7d26 Sociedade Brasileira de Alimentação e Nutrição'),
(33467, 'https://ror.org/01za4wm85', 'pt', 1, 'https://ror.org/01za4wm85 Solução Ambiental Assessoria e Consultoria'),
(33468, 'https://ror.org/036mc2b83', 'no_lang_code', 1, 'https://ror.org/036mc2b83 Mvisia (Brazil)'),
(33469, 'https://ror.org/024fetb28', 'no_lang_code', 1, 'https://ror.org/024fetb28 Salt Sea & Limno Technology'),
(33470, 'https://ror.org/00xdpd607', 'en', 1, 'https://ror.org/00xdpd607 Brazilian Society of Nuclear Biosciences Sociedade Brasileira de BiociĆŖncias Nucleares'),
(33471, 'https://ror.org/03bsbwd57', 'pt', 1, 'https://ror.org/03bsbwd57 Sociedade Brasileira de Biologia Celular'),
(33472, 'https://ror.org/0236gc710', 'no_lang_code', 1, 'https://ror.org/0236gc710 SPPT Pesquisas Tecnológicas (Brazil)'),
(33473, 'https://ror.org/01gjrpr51', 'no_lang_code', 1, 'https://ror.org/01gjrpr51 Salus Group (Brazil)'),
(33474, 'https://ror.org/01pdwrw82', 'pt', 1, 'https://ror.org/01pdwrw82 Secretaria de Gestão Pública'),
(33475, 'https://ror.org/02smgwb83', 'no_lang_code', 1, 'https://ror.org/02smgwb83 Suma Indústria e Comércio (Brasil)'),
(33476, 'https://ror.org/03m6hxg23', 'pt', 1, 'https://ror.org/03m6hxg23 Sociedade Brasileira de CatƔlise'),
(33477, 'https://ror.org/0025ymj94', 'pt', 1, 'https://ror.org/0025ymj94 Sociedade Brasileira de CiĆŖncia e Tecnologia de Alimentos'),
(33478, 'https://ror.org/03bdanr16', 'no_lang_code', 1, 'https://ror.org/03bdanr16 SuperZinco (Brazil)'),
(33479, 'https://ror.org/02jr64v33', 'no_lang_code', 1, 'https://ror.org/02jr64v33 Surface (Brazil)'),
(33480, 'https://ror.org/02d5qsh80', 'no_lang_code', 1, 'https://ror.org/02d5qsh80 Scheme Lab (Brazil)'),
(33481, 'https://ror.org/02sz00v89', 'pt', 1, 'https://ror.org/02sz00v89 Sociedade Brasileira de Cirurgia Cardiovascular'),
(33482, 'https://ror.org/03ddg4c94', 'no_lang_code', 1, 'https://ror.org/03ddg4c94 SW2 SoluƧƵes em TI (Brazil)'),
(33483, 'https://ror.org/02m7cm823', 'pt', 1, 'https://ror.org/02m7cm823 Sociedade Brasileira de Econometria'),
(33484, 'https://ror.org/026xrdv37', 'no_lang_code', 1, 'https://ror.org/026xrdv37 Playax Internet (Brazil)'),
(33485, 'https://ror.org/02a9cbd93', 'no_lang_code', 1, 'https://ror.org/02a9cbd93 Novo Mel (Brazil)'),
(33486, 'https://ror.org/05ym51d14', 'no_lang_code', 1, 'https://ror.org/05ym51d14 Selaz (Brazil)'),
(33487, 'https://ror.org/03k83h416', 'no_lang_code', 1, 'https://ror.org/03k83h416 Compass (Brazil)'),
(33488, 'https://ror.org/01e6n7467', 'no_lang_code', 1, 'https://ror.org/01e6n7467 Synthon Especialidades QuĆ­micas (Brazil)'),
(33489, 'https://ror.org/023zwk705', 'no_lang_code', 1, 'https://ror.org/023zwk705 IPS (Brazil)'),
(33490, 'https://ror.org/030mp9g18', 'no_lang_code', 1, 'https://ror.org/030mp9g18 Sdc Engenharia (Brazil)'),
(33491, 'https://ror.org/01nmv4r50', 'no_lang_code', 1, 'https://ror.org/01nmv4r50 Selsan Tecnologia Industrial e Comercial (Brazil)'),
(33492, 'https://ror.org/02zs4aq98', 'no_lang_code', 1, 'https://ror.org/02zs4aq98 Sencer (Brazil)'),
(33493, 'https://ror.org/04v2q5679', 'no_lang_code', 1, 'https://ror.org/04v2q5679 PluriCell (Brazil)'),
(33494, 'https://ror.org/02m4ddy14', 'en', 1, 'https://ror.org/02m4ddy14 Entomological Society of Brazil Sociedade Brasileira de Entomologia'),
(33495, 'https://ror.org/049fsr430', 'no_lang_code', 1, 'https://ror.org/049fsr430 PMEC Sistemas (Brazil)'),
(33496, 'https://ror.org/03b9y3q37', 'pt', 1, 'https://ror.org/03b9y3q37 Sociedade Brasileira de Estudos de Cinema e Audiovisual'),
(33497, 'https://ror.org/02dv83r66', 'no_lang_code', 1, 'https://ror.org/02dv83r66 AgriOS (Brazil)'),
(33498, 'https://ror.org/04fh8sh30', 'pt', 1, 'https://ror.org/04fh8sh30 Sociedade Brasileira de Estudos Interdisciplinares da Comunicação'),
(33499, 'https://ror.org/05yg3bs96', 'pt', 1, 'https://ror.org/05yg3bs96 Secretaria da Casa Civil'),
(33500, 'https://ror.org/03re5nh85', 'pt', 1, 'https://ror.org/03re5nh85 Sociedade Brasileira de FĆ­sica'),
(33501, 'https://ror.org/02p57rg87', 'en', 1, 'https://ror.org/02p57rg87 Brazilian Society of Speech Sociedade Brasileira de Fonoaudiologia'),
(33502, 'https://ror.org/04w8mv523', 'pt', 1, 'https://ror.org/04w8mv523 Secretaria Municipal de Cultura'),
(33503, 'https://ror.org/0239t8d82', 'no_lang_code', 1, 'https://ror.org/0239t8d82 Sensoft Automação (Brazil)'),
(33504, 'https://ror.org/03r6wjz53', 'pt', 1, 'https://ror.org/03r6wjz53 Secretaria da Educação'),
(33505, 'https://ror.org/0232rsc48', 'pt', 1, 'https://ror.org/0232rsc48 Secretaria da JustiƧa e da Defesa da Cidadania'),
(33506, 'https://ror.org/01tz02k91', 'no_lang_code', 1, 'https://ror.org/01tz02k91 Tec3GEO (Brazil)'),
(33507, 'https://ror.org/04r5v7152', 'pt', 1, 'https://ror.org/04r5v7152 Sociedade Brasileira de Fruticultura'),
(33508, 'https://ror.org/00s0xs310', 'no_lang_code', 1, 'https://ror.org/00s0xs310 Polaris (Brazil)'),
(33509, 'https://ror.org/02zs6px59', 'no_lang_code', 1, 'https://ror.org/02zs6px59 Tecam Laboratórios (Brazil)'),
(33510, 'https://ror.org/00rac3p42', 'no_lang_code', 1, 'https://ror.org/00rac3p42 Polikem (Brazil)'),
(33511, 'https://ror.org/024tya472', 'pt', 1, 'https://ror.org/024tya472 Sociedade Brasileira de GenƩtica'),
(33512, 'https://ror.org/0591czb14', 'pt', 1, 'https://ror.org/0591czb14 Secretaria da Segurança Pública'),
(33513, 'https://ror.org/05q9vv606', 'no_lang_code', 1, 'https://ror.org/05q9vv606 Tech Chrom (Brazil)'),
(33514, 'https://ror.org/02bvyfx27', 'no_lang_code', 1, 'https://ror.org/02bvyfx27 Techfilter (Brazil)'),
(33515, 'https://ror.org/0098fsf52', 'pt', 1, 'https://ror.org/0098fsf52 ServiƧo AutƓnomo de Ɓgua e Esgoto de Jaboticabal'),
(33516, 'https://ror.org/042664e79', 'pt', 1, 'https://ror.org/042664e79 Secretaria de Agricultura e Abastecimento'),
(33517, 'https://ror.org/01eqw4y61', 'pt', 1, 'https://ror.org/01eqw4y61 Sociedade Brasileira de Geologia'),
(33518, 'https://ror.org/048k0ye22', 'no_lang_code', 1, 'https://ror.org/048k0ye22 Technes AgrĆ­cola (Brazil)'),
(33519, 'https://ror.org/01e00rm10', 'no_lang_code', 1, 'https://ror.org/01e00rm10 Tecnologia e CiĆŖncia Educacional (Brazil)'),
(33520, 'https://ror.org/0463xj055', 'no_lang_code', 1, 'https://ror.org/0463xj055 SimWorx (Brazil)'),
(33521, 'https://ror.org/05a8h2h02', 'pt', 1, 'https://ror.org/05a8h2h02 Sociedade Brasileira de História da Ciência'),
(33522, 'https://ror.org/00980wf60', 'no_lang_code', 1, 'https://ror.org/00980wf60 Tecnovip (Brazil)'),
(33523, 'https://ror.org/054b9va62', 'no_lang_code', 1, 'https://ror.org/054b9va62 Overplay (Brazil)'),
(33524, 'https://ror.org/01mfdy709', 'no_lang_code', 1, 'https://ror.org/01mfdy709 Signalcard (Brazil)'),
(33525, 'https://ror.org/01m4fm654', 'no_lang_code', 1, 'https://ror.org/01m4fm654 Tecnident (Brazil)'),
(33526, 'https://ror.org/05xeqkp81', 'no_lang_code', 1, 'https://ror.org/05xeqkp81 Tecnima (Brazil)'),
(33527, 'https://ror.org/05q5jv102', 'no_lang_code', 1, 'https://ror.org/05q5jv102 Tecnocard (Brazil)'),
(33528, 'https://ror.org/04nb3k259', 'no_lang_code', 1, 'https://ror.org/04nb3k259 SST it solutions (Brazil)'),
(33529, 'https://ror.org/05scy2r52', 'no_lang_code', 1, 'https://ror.org/05scy2r52 SHS Engenharia SustentƔvel'),
(33530, 'https://ror.org/04t213y95', 'pt', 1, 'https://ror.org/04t213y95 Sociedade Brasileira de Imunologia'),
(33531, 'https://ror.org/05m1rmx38', 'no_lang_code', 1, 'https://ror.org/05m1rmx38 Terra Azul - Tecnologia de PolĆ­meros Naturais (Brazil)'),
(33532, 'https://ror.org/03n3tgc33', 'no_lang_code', 1, 'https://ror.org/03n3tgc33 Tecnozinco Tratamento Superficial (Brazil)'),
(33533, 'https://ror.org/01sv08344', 'no_lang_code', 1, 'https://ror.org/01sv08344 Vallitech (Brazil)'),
(33534, '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'),
(33535, 'https://ror.org/0146e2321', 'no_lang_code', 1, 'https://ror.org/0146e2321 Terra Viva Consultoria Ambiental (Brazil)'),
(33536, 'https://ror.org/02j52w730', 'pt', 1, 'https://ror.org/02j52w730 Sociedade Brasileira de Microbiologia'),
(33537, 'https://ror.org/04cjp6w49', 'no_lang_code', 1, 'https://ror.org/04cjp6w49 Tezca (Brazil)'),
(33538, 'https://ror.org/01kwzvc26', 'no_lang_code', 1, 'https://ror.org/01kwzvc26 Uranet (Brazil)'),
(33539, 'https://ror.org/010ehb542', 'no_lang_code', 1, 'https://ror.org/010ehb542 Urbem Tecnologia Ambiental (Brazil)'),
(33540, 'https://ror.org/02bdht408', 'no_lang_code', 1, 'https://ror.org/02bdht408 Thema (Brazil)'),
(33541, 'https://ror.org/05vcxrs03', 'pt', 1, 'https://ror.org/05vcxrs03 Sociedade Brasileira de MicroeletrƓnica'),
(33542, 'https://ror.org/0229zva94', 'no_lang_code', 1, 'https://ror.org/0229zva94 Tecplas Indústria e Comércio (Brazil)'),
(33543, 'https://ror.org/01r72g906', 'no_lang_code', 1, 'https://ror.org/01r72g906 Verdartis (Brazil)'),
(33544, 'https://ror.org/021pm4a51', 'no_lang_code', 1, 'https://ror.org/021pm4a51 Utep (Brazil)'),
(33545, 'https://ror.org/034r02c45', 'no_lang_code', 1, 'https://ror.org/034r02c45 Themag (Brazil)'),
(33546, 'https://ror.org/04xys6a56', 'no_lang_code', 1, 'https://ror.org/04xys6a56 Verdaz (Brazil)'),
(33547, 'https://ror.org/033r6dh57', 'pt', 1, 'https://ror.org/033r6dh57 Secretaria de Desenvolvimento EconÓmico, Ciência, Tecnologia e Inovação'),
(33548, 'https://ror.org/00wpbh181', 'no_lang_code', 1, 'https://ror.org/00wpbh181 TecSUS Tecnologias para a Sustentabilidade (Brazil)'),
(33549, 'https://ror.org/05fv11t10', 'no_lang_code', 1, 'https://ror.org/05fv11t10 Thorus Scisoft (Brazil)'),
(33550, 'https://ror.org/012ey9m84', 'en', 1, 'https://ror.org/012ey9m84 Brazilian Society of Research and Assistance to Craniofacial Rehabilitation Hospital of Sobrapar'),
(33551, 'https://ror.org/00n17e497', 'no_lang_code', 1, 'https://ror.org/00n17e497 Tecnologia Aplicada Watanabe Watanabe Applied Technology (Brazil)'),
(33552, 'https://ror.org/00vfzzr15', 'no_lang_code', 1, 'https://ror.org/00vfzzr15 Ticon (Brazil)'),
(33553, 'https://ror.org/050aq1k87', 'pt', 1, 'https://ror.org/050aq1k87 Sociedade Brasileira de Pesquisa Odontológica'),
(33554, 'https://ror.org/049vhtm85', 'no_lang_code', 1, 'https://ror.org/049vhtm85 Timpel (Brazil)'),
(33555, 'https://ror.org/05ms76x97', 'en', 1, 'https://ror.org/05ms76x97 Brazilian Society of Protozoology Sociedade Brasileira de Protozoologia'),
(33556, 'https://ror.org/02hzjcs51', 'no_lang_code', 1, 'https://ror.org/02hzjcs51 Veritas Life Sciences (Brazil)'),
(33557, 'https://ror.org/05wkdrh69', 'no_lang_code', 1, 'https://ror.org/05wkdrh69 Top in Life Biotecnologia & GenƩtica Animal (Brazil)'),
(33558, 'https://ror.org/04srvp011', 'no_lang_code', 1, 'https://ror.org/04srvp011 Versis Tecnologia (Brazil)'),
(33559, 'https://ror.org/01qdaxa32', 'no_lang_code', 1, 'https://ror.org/01qdaxa32 Supê Soluções (Brazil)'),
(33560, 'https://ror.org/0465m1925', 'pt', 1, 'https://ror.org/0465m1925 Sociedade Brasileira de QuĆ­mica'),
(33561, 'https://ror.org/056rxss60', 'no_lang_code', 1, 'https://ror.org/056rxss60 XMobots (Brazil)'),
(33562, 'https://ror.org/01ey80h28', 'pt', 1, 'https://ror.org/01ey80h28 Sociedade Brasileira de Toxicologia'),
(33563, 'https://ror.org/02fyaen82', 'pt', 1, 'https://ror.org/02fyaen82 Sociedade Brasileira de VƔcuo'),
(33564, 'https://ror.org/01psywt28', 'pt', 1, 'https://ror.org/01psywt28 Secretaria do Governo Municipal'),
(33565, 'https://ror.org/01m44ga74', 'pt', 1, 'https://ror.org/01m44ga74 Secretaria de Planejamento e Gestão'),
(33566, 'https://ror.org/04034ej81', 'pt', 1, 'https://ror.org/04034ej81 Sociedade Brasileira Para o Desenvolvimento da Pesquisa em Cirurgia'),
(33567, 'https://ror.org/02zvwwf46', 'pt', 1, 'https://ror.org/02zvwwf46 Secretaria de Saneamento e Recursos HƬdricos'),
(33568, 'https://ror.org/01pbftg81', 'no_lang_code', 1, 'https://ror.org/01pbftg81 Toxikón (Brazil)'),
(33569, 'https://ror.org/017t8rw26', 'no_lang_code', 1, 'https://ror.org/017t8rw26 Tramppo (Brazil)'),
(33570, 'https://ror.org/03mh5ac32', 'no_lang_code', 1, 'https://ror.org/03mh5ac32 Precifica PreƧo Inteligente (Brazil)'),
(33571, 'https://ror.org/03a3xs663', 'pt', 1, 'https://ror.org/03a3xs663 Secretaria do Meio Ambiente'),
(33572, 'https://ror.org/05wdyx442', 'no_lang_code', 1, 'https://ror.org/05wdyx442 TransFrigor do Brasil (Brazil)'),
(33573, 'https://ror.org/00jhc4f65', 'no_lang_code', 1, 'https://ror.org/00jhc4f65 Pivotal (Canada)'),
(33574, 'https://ror.org/05789m354', 'no_lang_code', 1, 'https://ror.org/05789m354 Incubadora Tecnológica Univap Revap (Brazil)'),
(33575, 'https://ror.org/01hpww940', 'no_lang_code', 1, 'https://ror.org/01hpww940 Ultra Hi PlƔsticos Industriais (Brazil)'),
(33576, 'https://ror.org/00pjedz72', 'pt', 1, 'https://ror.org/00pjedz72 Secretaria Municipal de Educação de São Paulo'),
(33577, 'https://ror.org/05h6hwf91', 'pt', 1, 'https://ror.org/05h6hwf91 Secretaria Municipal do Verde e do Meio Ambiente'),
(33578, 'https://ror.org/02qkrgf06', 'no_lang_code', 1, 'https://ror.org/02qkrgf06 Oxford Instruments (Germany)'),
(33579, 'https://ror.org/0524wwz72', 'no_lang_code', 1, 'https://ror.org/0524wwz72 Unigen Tecnologia pelo DNA (Brazil)'),
(33580, 'https://ror.org/024f41j50', 'no_lang_code', 1, 'https://ror.org/024f41j50 Versor Inovação Tecnológica (Brazil)'),
(33581, 'https://ror.org/00rwtwt20', 'en', 1, 'https://ror.org/00rwtwt20 Northeast Catholic College'),
(33582, 'https://ror.org/05vwwq909', 'no_lang_code', 1, 'https://ror.org/05vwwq909 UniSoma (Brazil)'),
(33583, 'https://ror.org/04vbdge38', 'no_lang_code', 1, 'https://ror.org/04vbdge38 Victor Vision (Brazil)'),
(33584, 'https://ror.org/05dfvhh79', 'no_lang_code', 1, 'https://ror.org/05dfvhh79 BP (Spain)'),
(33585, 'https://ror.org/03njstw94', 'no_lang_code', 1, 'https://ror.org/03njstw94 VISIONBR Tecnologia e Informatica (Brazil)'),
(33586, 'https://ror.org/01qbvbs17', 'no_lang_code', 1, 'https://ror.org/01qbvbs17 Vita Care (Brazil)'),
(33587, 'https://ror.org/00cafag88', 'no_lang_code', 1, 'https://ror.org/00cafag88 Vitex (Brazil)'),
(33588, 'https://ror.org/00mytnc41', 'no_lang_code', 1, 'https://ror.org/00mytnc41 HEICO (France)'),
(33589, 'https://ror.org/05aq38y40', 'no_lang_code', 1, 'https://ror.org/05aq38y40 ProQuest (United Kingdom)'),
(33590, 'https://ror.org/022x9cm37', 'no_lang_code', 1, 'https://ror.org/022x9cm37 Vocalize (Brazil)'),
(33591, 'https://ror.org/049dr2b41', 'no_lang_code', 1, 'https://ror.org/049dr2b41 ZF Friedrichshafen (Belgium)'),
(33592, 'https://ror.org/05se4r489', 'no_lang_code', 1, 'https://ror.org/05se4r489 Transdata (Brazil)'),
(33593, 'https://ror.org/0467wcr64', 'no_lang_code', 1, 'https://ror.org/0467wcr64 Wavetek (Brazil)'),
(33594, 'https://ror.org/053mjnp36', 'no_lang_code', 1, 'https://ror.org/053mjnp36 LivaNova (Belgium)'),
(33595, 'https://ror.org/024xst005', 'no_lang_code', 1, 'https://ror.org/024xst005 Alten (Italy)'),
(33596, 'https://ror.org/01m343c98', 'en', 1, 'https://ror.org/01m343c98 Waseda Bioscience Research Institute in Singapore'),
(33597, 'https://ror.org/04ffwnd85', 'en', 1, 'https://ror.org/04ffwnd85 Epsom Hospital'),
(33598, 'https://ror.org/00an0xj57', 'no_lang_code', 1, 'https://ror.org/00an0xj57 Taro Pharmaceuticals (Canada)'),
(33599, 'https://ror.org/03m3pb051', 'no_lang_code', 1, 'https://ror.org/03m3pb051 Scenario (Brazil)'),
(33600, 'https://ror.org/04pzwdz82', 'no_lang_code', 1, 'https://ror.org/04pzwdz82 NutriVita Suplementos (Brazil)'),
(33601, 'https://ror.org/01m05cc74', 'no_lang_code', 1, 'https://ror.org/01m05cc74 Piaram (Brazil) Piaram Productos Nanotechnologicos'),
(33602, 'https://ror.org/04jwvvb34', 'no_lang_code', 1, 'https://ror.org/04jwvvb34 Welding Science (Brazil)'),
(33603, 'https://ror.org/04sbrn764', 'no_lang_code', 1, 'https://ror.org/04sbrn764 Dantherm Power (Denmark)'),
(33604, 'https://ror.org/019cw2518', 'en', 1, 'https://ror.org/019cw2518 Alameda County Public Health Department'),
(33605, 'https://ror.org/05fx9z870', 'no_lang_code', 1, 'https://ror.org/05fx9z870 Emergo (United States)'),
(33606, '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'),
(33607, 'https://ror.org/0101zye71', 'en', 1, 'https://ror.org/0101zye71 Brazilian Institute of Geography and Statistics Instituto Brasileiro de Geografia e EstatĆ­stica'),
(33608, 'https://ror.org/04gnvkj51', 'pt', 1, 'https://ror.org/04gnvkj51 Instituto Cultural Cravo Albin'),
(33609, 'https://ror.org/040bdaa45', 'en', 1, 'https://ror.org/040bdaa45 Instituto de Engenharia Nuclear Nuclear Engineering Institute'),
(33610, 'https://ror.org/00dpc3e39', 'en', 1, 'https://ror.org/00dpc3e39 American Nonsmokers'' Rights Foundation'),
(33611, 'https://ror.org/04kecee19', 'en', 1, 'https://ror.org/04kecee19 Institute of Homeopathy James Tyler Kent Instituto de Homeopatia James Tyler Kent'),
(33612, 'https://ror.org/03tkxvj23', 'pt', 1, 'https://ror.org/03tkxvj23 Arquivo PĆŗblico do Estado do Rio de Janeiro'),
(33613, 'https://ror.org/02d3hy418', 'en', 1, 'https://ror.org/02d3hy418 Institute of Applied Economic Research Instituto de Pesquisa EconƓmica Aplicada'),
(33614, 'https://ror.org/00vfe5x12', 'pt', 1, 'https://ror.org/00vfe5x12 Espaço Ciência Viva'),
(33615, 'https://ror.org/00zx28k54', 'no_lang_code', 1, 'https://ror.org/00zx28k54 Artecriação (Brazil)'),
(33616, 'https://ror.org/034yf4q42', 'no_lang_code', 1, 'https://ror.org/034yf4q42 Ryjor (Brazil)'),
(33617, 'https://ror.org/019cg0811', 'pt', 1, 'https://ror.org/019cg0811 Instituto Histórico e GeogrÔfico Brasileiro'),
(33618, 'https://ror.org/03veakt65', 'en', 1, 'https://ror.org/03veakt65 Instituto Militar de Engenharia Military Institute of Engineering'),
(33619, 'https://ror.org/003fyqt13', 'pt', 1, 'https://ror.org/003fyqt13 AVM Faculdade Integrada'),
(33620, 'https://ror.org/04w1y7251', 'pt', 1, 'https://ror.org/04w1y7251 Instituto Nacional da Propriedade Industrial'),
(33621, 'https://ror.org/008wzyk06', 'en', 1, 'https://ror.org/008wzyk06 HƩlio Alonso University'),
(33622, 'https://ror.org/03hpex020', 'en', 1, 'https://ror.org/03hpex020 Unity Fellowship Church Movement'),
(33623, 'https://ror.org/04n0d8e29', 'pt', 1, 'https://ror.org/04n0d8e29 Instituto Nacional de Educação de Surdos'),
(33624, 'https://ror.org/0101h5125', 'pt', 1, 'https://ror.org/0101h5125 Instituto Brasileiro de Mercado de Capitais'),
(33625, 'https://ror.org/00jm2yd36', 'en', 1, 'https://ror.org/00jm2yd36 Bishop Veterinary Hospital'),
(33626, 'https://ror.org/012ang229', 'pt', 1, 'https://ror.org/012ang229 Instituto Nacional de Tecnologia National Institute of Technology'),
(33627, 'https://ror.org/01nvkaf11', 'en', 1, 'https://ror.org/01nvkaf11 San Francisco Firefighters Cancer Prevention Foundation'),
(33628, 'https://ror.org/04wy35175', 'pt', 1, 'https://ror.org/04wy35175 Instituto Superior de Educação do Rio de Janeiro'),
(33629, 'https://ror.org/031bnv033', 'en', 1, 'https://ror.org/031bnv033 Brighter Beginnings'),
(33630, 'https://ror.org/009kef261', 'pt', 1, 'https://ror.org/009kef261 Instituto UniversitƔrio de Pesquisas do Rio de Janeiro'),
(33631, 'https://ror.org/019cxby81', 'en', 1, 'https://ror.org/019cxby81 Biblioteca Nacional do Brasil National Library of Brazil'),
(33632, 'https://ror.org/009egh542', 'no_lang_code', 1, 'https://ror.org/009egh542 Calera (United States)'),
(33633, 'https://ror.org/044kqk861', 'no_lang_code', 1, 'https://ror.org/044kqk861 Instituto Vital Brazil (Brazil)'),
(33634, 'https://ror.org/040bxjg62', 'pt', 1, 'https://ror.org/040bxjg62 Fundação Casa de Rui Barbosa'),
(33635, 'https://ror.org/039r09095', 'no_lang_code', 1, 'https://ror.org/039r09095 SillaJen (United States)'),
(33636, 'https://ror.org/02ddq0w66', 'pt', 1, 'https://ror.org/02ddq0w66 Fundação Cesgranrio'),
(33637, 'https://ror.org/04tn4w071', 'pt', 1, 'https://ror.org/04tn4w071 Fundação CECIERJ'),
(33638, 'https://ror.org/00ebt7309', 'pt', 1, 'https://ror.org/00ebt7309 Pro CrianƧa Cardƭaca'),
(33639, 'https://ror.org/013796n77', 'pt', 1, 'https://ror.org/013796n77 Fundação de Apoio à Escola Técnica'),
(33640, 'https://ror.org/00640dd83', 'no_lang_code', 1, 'https://ror.org/00640dd83 Lexikon Editora Digital (Brazil)'),
(33641, 'https://ror.org/00n4vrp79', 'pt', 1, 'https://ror.org/00n4vrp79 Centro de Tecnologia Mineral'),
(33642, 'https://ror.org/02a3nmn42', 'pt', 1, 'https://ror.org/02a3nmn42 Fundação Educacional D. André Arcoverde'),
(33643, 'https://ror.org/0271xgz16', 'en', 1, 'https://ror.org/0271xgz16 Women of Color Breast Cancer Survivors'' Support Project'),
(33644, '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'),
(33645, 'https://ror.org/059gy0v60', 'en', 1, 'https://ror.org/059gy0v60 Women of Essence'),
(33646, 'https://ror.org/04tvhd893', 'pt', 1, 'https://ror.org/04tvhd893 Museu de Astronomia e CiĆŖncias Afins'),
(33647, 'https://ror.org/02nhz2g44', 'en', 1, 'https://ror.org/02nhz2g44 Social and Environmental Entrepreneurs'),
(33648, 'https://ror.org/03wen3n10', 'en', 1, 'https://ror.org/03wen3n10 Clinica de Salud del Valle de Salinas'),
(33649, 'https://ror.org/03y2b4f92', 'pt', 1, 'https://ror.org/03y2b4f92 Bioline - Consultoria e Engenharia Ambiental'),
(33650, 'https://ror.org/01pmf1z12', 'pt', 1, 'https://ror.org/01pmf1z12 Hospital SĆ£o Vicente de Paulo'),
(33651, 'https://ror.org/05wd9fr72', 'no_lang_code', 1, 'https://ror.org/05wd9fr72 Dalvic (Brazil)'),
(33652, 'https://ror.org/00chm8v09', 'pt', 1, 'https://ror.org/00chm8v09 Departamento Nacional de Produção Mineral'),
(33653, 'https://ror.org/04v7ec183', 'no_lang_code', 1, 'https://ror.org/04v7ec183 Terenzi (Brazil)'),
(33654, 'https://ror.org/01d2w7m45', 'no_lang_code', 1, 'https://ror.org/01d2w7m45 Inovax (Brazil)'),
(33655, 'https://ror.org/00vjvqk56', 'en', 1, 'https://ror.org/00vjvqk56 DESA'),
(33656, 'https://ror.org/03ggx6m14', 'pt', 1, 'https://ror.org/03ggx6m14 Muncipal de Bom Jesus do Itabapoana'),
(33657, 'https://ror.org/0033xm087', 'pt', 1, 'https://ror.org/0033xm087 Instituto de Estudos do Mar Almirante Paulo Moreira'),
(33658, 'https://ror.org/015ar5551', 'pt', 1, 'https://ror.org/015ar5551 Secretaria de Ciência, Tecnologia e Inovação da Marinha'),
(33659, 'https://ror.org/03rrfz230', 'pt', 1, 'https://ror.org/03rrfz230 Empresa de Pesquisa AgropecuƔria do Estado do Rio de Janeiro'),
(33660, 'https://ror.org/010552r76', 'no_lang_code', 1, 'https://ror.org/010552r76 IBE (Slovenia)'),
(33661, 'https://ror.org/04nhq6337', 'no_lang_code', 1, 'https://ror.org/04nhq6337 Abelium (Slovenia)'),
(33662, 'https://ror.org/04njjet64', 'en', 1, 'https://ror.org/04njjet64 Nova revija Institute for Humanities'),
(33663, 'https://ror.org/03es91d09', 'no_lang_code', 1, 'https://ror.org/03es91d09 Acer Novo Mesto (Slovenia)'),
(33664, 'https://ror.org/03bdq2a67', 'no_lang_code', 1, 'https://ror.org/03bdq2a67 Acies Bio (Slovenia)'),
(33665, 'https://ror.org/05ev6b373', 'no_lang_code', 1, 'https://ror.org/05ev6b373 Acroni (Slovenia)'),
(33666, 'https://ror.org/02h25ds10', 'no_lang_code', 1, 'https://ror.org/02h25ds10 IGEA (Slovenia)'),
(33667, 'https://ror.org/02t5nc402', 'no_lang_code', 1, 'https://ror.org/02t5nc402 Omega Consult (Slovenia)'),
(33668, 'https://ror.org/021j2r958', 'no_lang_code', 1, 'https://ror.org/021j2r958 ACROS Security (Slovenia)'),
(33669, 'https://ror.org/05v3yw889', 'no_lang_code', 1, 'https://ror.org/05v3yw889 Omega (Slovenia)'),
(33670, 'https://ror.org/00b0x7350', 'no_lang_code', 1, 'https://ror.org/00b0x7350 Igmat (Slovenia)'),
(33671, 'https://ror.org/04sdpvy45', 'no_lang_code', 1, 'https://ror.org/04sdpvy45 Adapti (Slovenia)'),
(33672, 'https://ror.org/00t8aqf69', 'no_lang_code', 1, 'https://ror.org/00t8aqf69 OptaCore (Slovenia)');
INSERT INTO `rors` VALUES
(33673, 'https://ror.org/03jchgp61', 'no_lang_code', 1, 'https://ror.org/03jchgp61 Impol (Slovenia)'),
(33674, 'https://ror.org/00drj4p25', 'no_lang_code', 1, 'https://ror.org/00drj4p25 Optopol Technology (Slovenia)'),
(33675, 'https://ror.org/03ft27t79', 'no_lang_code', 1, 'https://ror.org/03ft27t79 Advanced Materials and Technologies (Slovenia)'),
(33676, 'https://ror.org/057n9mf41', 'no_lang_code', 1, 'https://ror.org/057n9mf41 Jolly Aero (Slovenia)'),
(33677, 'https://ror.org/03248dr08', 'no_lang_code', 1, 'https://ror.org/03248dr08 Robert Bosch (Slovenia)'),
(33678, 'https://ror.org/03vjmg579', 'no_lang_code', 1, 'https://ror.org/03vjmg579 Pan-Nutri (Slovenia)'),
(33679, 'https://ror.org/02rmcnx09', 'no_lang_code', 1, 'https://ror.org/02rmcnx09 Induktio (Slovenia)'),
(33680, 'https://ror.org/03a22gk67', 'en', 1, 'https://ror.org/03a22gk67 Anton Trstenjak Institute'),
(33681, 'https://ror.org/00fvw4t71', 'sl', 1, 'https://ror.org/00fvw4t71 Kmetijsko Gozdarski Zavod Nova Gorica'),
(33682, 'https://ror.org/00qhjc802', 'no_lang_code', 1, 'https://ror.org/00qhjc802 Alianta (Slovenia)'),
(33683, 'https://ror.org/01gdbj015', 'no_lang_code', 1, 'https://ror.org/01gdbj015 Perutnina Ptuj (Slovenia)'),
(33684, 'https://ror.org/050sa6c22', 'no_lang_code', 1, 'https://ror.org/050sa6c22 Alpina (Slovenia)'),
(33685, 'https://ror.org/05k2k4e76', 'no_lang_code', 1, 'https://ror.org/05k2k4e76 Alpineon (Slovenia)'),
(33686, 'https://ror.org/004kgh805', 'no_lang_code', 1, 'https://ror.org/004kgh805 Amebis (Slovenia)'),
(33687, 'https://ror.org/05wk2qf13', 'en', 1, 'https://ror.org/05wk2qf13 Institute of Metal Constructions'),
(33688, 'https://ror.org/020e65m33', 'no_lang_code', 1, 'https://ror.org/020e65m33 AMES (Slovenia)'),
(33689, 'https://ror.org/03am6ps88', 'en', 1, 'https://ror.org/03am6ps88 Institute for Spatial Policies InŔtitut za politike prostora'),
(33690, 'https://ror.org/033eygk88', 'no_lang_code', 1, 'https://ror.org/033eygk88 AMS (Slovenia)'),
(33691, 'https://ror.org/02pj56a46', 'no_lang_code', 1, 'https://ror.org/02pj56a46 Pinus TKI (Slovenia)'),
(33692, 'https://ror.org/01q726526', 'no_lang_code', 1, 'https://ror.org/01q726526 Litostroj Group (Slovenia)'),
(33693, 'https://ror.org/03ahnb373', 'en', 1, 'https://ror.org/03ahnb373 Institute for developmental and strategic analysis'),
(33694, 'https://ror.org/03cpk2k89', 'no_lang_code', 1, 'https://ror.org/03cpk2k89 Aquarius (Slovenia)'),
(33695, 'https://ror.org/03batkt67', 'no_lang_code', 1, 'https://ror.org/03batkt67 Arcont (Slovenia)'),
(33696, 'https://ror.org/03v2esq45', 'no_lang_code', 1, 'https://ror.org/03v2esq45 Predilnica Litija (Slovenia)'),
(33697, 'https://ror.org/016wzar13', 'no_lang_code', 1, 'https://ror.org/016wzar13 Arex Defense (Slovenia)'),
(33698, 'https://ror.org/01wfa7737', 'no_lang_code', 1, 'https://ror.org/01wfa7737 ATES (Slovenia)'),
(33699, 'https://ror.org/000y1tz34', 'no_lang_code', 1, 'https://ror.org/000y1tz34 Atotech (Slovenia)'),
(33700, 'https://ror.org/033fq2155', 'en', 1, 'https://ror.org/033fq2155 Institute for Hydraulic Research'),
(33701, 'https://ror.org/031szhw45', 'no_lang_code', 1, 'https://ror.org/031szhw45 Infinita (Slovenia)'),
(33702, 'https://ror.org/05vwgdc91', 'no_lang_code', 1, 'https://ror.org/05vwgdc91 B2 (Slovenia)'),
(33703, 'https://ror.org/03vvyat40', 'en', 1, 'https://ror.org/03vvyat40 Institute for Research in Materials and Applications'),
(33704, 'https://ror.org/014mmh993', 'no_lang_code', 1, 'https://ror.org/014mmh993 BIA (Slovenia)'),
(33705, 'https://ror.org/03h7kv823', 'en', 1, 'https://ror.org/03h7kv823 Institute for Sustainable Innovative Technologies'),
(33706, 'https://ror.org/03jkgmn26', 'no_lang_code', 1, 'https://ror.org/03jkgmn26 PUH Team (Slovenia)'),
(33707, 'https://ror.org/0220s7h54', 'en', 1, 'https://ror.org/0220s7h54 Institute for Civilization and Culture'),
(33708, 'https://ror.org/05cec6864', 'sl', 1, 'https://ror.org/05cec6864 Bion, Institute for bioelectromagnetics InŔtitut Bion'),
(33709, 'https://ror.org/0461qh336', 'sl', 1, 'https://ror.org/0461qh336 BiotehniŔki Center Naklo'),
(33710, 'https://ror.org/04nqnb117', 'en', 1, 'https://ror.org/04nqnb117 Institute of Criminology'),
(33711, 'https://ror.org/01tc1se08', 'no_lang_code', 1, 'https://ror.org/01tc1se08 Kolektor (Slovenia)'),
(33712, 'https://ror.org/04zn3ze07', 'sl', 1, 'https://ror.org/04zn3ze07 Animal Hospital Postojna'),
(33713, 'https://ror.org/04m1akh07', 'no_lang_code', 1, 'https://ror.org/04m1akh07 Radenska (Slovenia)'),
(33714, 'https://ror.org/05rdrh795', 'no_lang_code', 1, 'https://ror.org/05rdrh795 CBS InŔtitut (Slovenia)'),
(33715, 'https://ror.org/05dc99548', 'no_lang_code', 1, 'https://ror.org/05dc99548 Regional Development Agency Mura (Slovenia)'),
(33716, 'https://ror.org/05k2whz35', 'en', 1, 'https://ror.org/05k2whz35 Inspectorate of the Republic of Slovenia for the Environment and Spatial Planning'),
(33717, 'https://ror.org/002ryrd72', 'sl', 1, 'https://ror.org/002ryrd72 Pomurski muzej Murska Sobota'),
(33718, 'https://ror.org/04bfpy692', 'sl', 1, 'https://ror.org/04bfpy692 S&T Slovenija'),
(33719, 'https://ror.org/031g15v45', 'en', 1, 'https://ror.org/031g15v45 Institute for High Technologies and Systems'),
(33720, 'https://ror.org/01e7t7h48', 'no_lang_code', 1, 'https://ror.org/01e7t7h48 Sadar + Vuga (Slovenia)'),
(33721, 'https://ror.org/05g2jnh09', 'en', 1, 'https://ror.org/05g2jnh09 Centre of Excellence for Integrated Approaches in Chemistry and Biology of Proteins'),
(33722, 'https://ror.org/01eb3qa50', 'en', 1, 'https://ror.org/01eb3qa50 Institute of Mathematics, Physics, and Mechanics'),
(33723, 'https://ror.org/03xe8sk89', 'no_lang_code', 1, 'https://ror.org/03xe8sk89 Institute of Metagenomics and Microbial Technologies (Slovenia)'),
(33724, 'https://ror.org/02s54wa56', 'no_lang_code', 1, 'https://ror.org/02s54wa56 Nanocenter'),
(33725, 'https://ror.org/04qw53y32', 'no_lang_code', 1, 'https://ror.org/04qw53y32 CenterKontura (Slovenia)'),
(33726, 'https://ror.org/04fehbe54', 'no_lang_code', 1, 'https://ror.org/04fehbe54 Salonit Anhovo (Slovenia)'),
(33727, 'https://ror.org/04djf6d46', 'no_lang_code', 1, 'https://ror.org/04djf6d46 Sava (Slovenia)'),
(33728, 'https://ror.org/03pxk9k03', 'no_lang_code', 1, 'https://ror.org/03pxk9k03 Savatech (Slovenia)'),
(33729, 'https://ror.org/01mjqb881', 'sl', 1, 'https://ror.org/01mjqb881 InŔtituta za Neionizirna Sevanja'),
(33730, 'https://ror.org/04jmra880', 'en', 1, 'https://ror.org/04jmra880 Scientific Research Centre Bistra Ptu'),
(33731, 'https://ror.org/0063fxv95', 'no_lang_code', 1, 'https://ror.org/0063fxv95 Semenarna (Slovenia)'),
(33732, 'https://ror.org/051cpbj61', 'no_lang_code', 1, 'https://ror.org/051cpbj61 Sensum (Slovenia)'),
(33733, 'https://ror.org/019sgcz74', 'en', 1, 'https://ror.org/019sgcz74 Slovenian Centre of Excellence for Space Sciences and Technologies'),
(33734, 'https://ror.org/018s9hj09', 'sl', 1, 'https://ror.org/018s9hj09 InŔtitut za Javno Upravo'),
(33735, 'https://ror.org/04j9afg86', 'en', 1, 'https://ror.org/04j9afg86 Centre of Excellence NAMASTE'),
(33736, 'https://ror.org/02fn3t029', 'sl', 1, 'https://ror.org/02fn3t029 Sicenter (Slovenia)'),
(33737, 'https://ror.org/04m8ndw19', 'no_lang_code', 1, 'https://ror.org/04m8ndw19 Silkem (Slovenia)'),
(33738, 'https://ror.org/02gmdvw97', 'en', 1, 'https://ror.org/02gmdvw97 Slovenian Institute of Quality and Metrology'),
(33739, 'https://ror.org/04f2zcj37', 'no_lang_code', 1, 'https://ror.org/04f2zcj37 PoliMaT Centre of Excellence (Slovenia)'),
(33740, 'https://ror.org/05m1b0q08', 'no_lang_code', 1, 'https://ror.org/05m1b0q08 Sistemska Tehnika (Slovenia)'),
(33741, 'https://ror.org/01rdbqt89', 'en', 1, 'https://ror.org/01rdbqt89 Slovene Ethnographic Museum'),
(33742, 'https://ror.org/0361v2a25', 'no_lang_code', 1, 'https://ror.org/0361v2a25 IRSPIN (Slovenia)'),
(33743, 'https://ror.org/05sgk7672', 'en', 1, 'https://ror.org/05sgk7672 Prirodoslovni muzej Slovenije Slovenian Museum of Natural History'),
(33744, 'https://ror.org/0293jje80', 'no_lang_code', 1, 'https://ror.org/0293jje80 Cetis (Slovenia)'),
(33745, 'https://ror.org/018mr1k06', 'no_lang_code', 1, 'https://ror.org/018mr1k06 Četrta Pot (Slovenia)'),
(33746, 'https://ror.org/05bvpc358', 'no_lang_code', 1, 'https://ror.org/05bvpc358 CGS plus (Slovenia)'),
(33747, 'https://ror.org/02yyma482', 'en', 1, 'https://ror.org/02yyma482 International Tourism Institute'),
(33748, 'https://ror.org/05gwwmd95', 'no_lang_code', 1, 'https://ror.org/05gwwmd95 Slovenska Industrija Jekla (Slovenia)'),
(33749, 'https://ror.org/01sh25n93', 'en', 1, 'https://ror.org/01sh25n93 Institute for Environmental Protection and Sensors'),
(33750, 'https://ror.org/0159gyh21', 'no_lang_code', 1, 'https://ror.org/0159gyh21 Telekom Slovenije (Slovenia)'),
(33751, 'https://ror.org/00d65rw94', 'no_lang_code', 1, 'https://ror.org/00d65rw94 Cimos (Slovenia)'),
(33752, 'https://ror.org/022w5pf74', 'en', 1, 'https://ror.org/022w5pf74 Institute for Symbolic analysis and Development of Information Technologies'),
(33753, 'https://ror.org/02gvqxg57', 'no_lang_code', 1, 'https://ror.org/02gvqxg57 Cinkarna (Slovenia)'),
(33754, 'https://ror.org/04eac2y27', 'en', 1, 'https://ror.org/04eac2y27 Institute for Project Management and Information Technology'),
(33755, 'https://ror.org/021s7xp77', 'no_lang_code', 1, 'https://ror.org/021s7xp77 Helios (Slovenia)'),
(33756, 'https://ror.org/03dc24792', 'no_lang_code', 1, 'https://ror.org/03dc24792 Iskra Medical (Slovenia)'),
(33757, 'https://ror.org/01f176r46', 'no_lang_code', 1, 'https://ror.org/01f176r46 Iskra Mehanizmi (Slovenia)'),
(33758, 'https://ror.org/05s8x0p02', 'no_lang_code', 1, 'https://ror.org/05s8x0p02 Iskra Pio (Slovenia)'),
(33759, 'https://ror.org/00af5g613', 'no_lang_code', 1, 'https://ror.org/00af5g613 SMM production systems (Slovenia)'),
(33760, 'https://ror.org/04fx4vz25', 'en', 1, 'https://ror.org/04fx4vz25 Community Health Centre Ljubljana'),
(33761, 'https://ror.org/027sqes69', 'no_lang_code', 1, 'https://ror.org/027sqes69 Iskra (Slovenia)'),
(33762, 'https://ror.org/05whram96', 'no_lang_code', 1, 'https://ror.org/05whram96 Svetovalna in Razvojna Dejavnost (Slovenia)'),
(33763, 'https://ror.org/03qe0g959', 'sl', 1, 'https://ror.org/03qe0g959 Cosylab'),
(33764, 'https://ror.org/02ahy9q02', 'no_lang_code', 1, 'https://ror.org/02ahy9q02 Iskra ZaŔčite (Slovenia)'),
(33765, 'https://ror.org/00myd9a07', 'en', 1, 'https://ror.org/00myd9a07 Counselling Centre for Children, Adolescents and Parents'),
(33766, 'https://ror.org/01xn49b44', 'no_lang_code', 1, 'https://ror.org/01xn49b44 CPZ International'),
(33767, 'https://ror.org/01ja4zf46', 'no_lang_code', 1, 'https://ror.org/01ja4zf46 Le-tehnika (Slovenia)'),
(33768, 'https://ror.org/00f89q571', 'no_lang_code', 1, 'https://ror.org/00f89q571 Elsewedy Electric (Slovenia)'),
(33769, 'https://ror.org/009r3dd41', 'no_lang_code', 1, 'https://ror.org/009r3dd41 CVS Mobile (Slovenia)'),
(33770, 'https://ror.org/05qsbt763', 'no_lang_code', 1, 'https://ror.org/05qsbt763 Iskratel (Slovenia)'),
(33771, 'https://ror.org/05n878z30', 'no_lang_code', 1, 'https://ror.org/05n878z30 DFG Consulting (Slovenia)'),
(33772, 'https://ror.org/03cek7y17', 'no_lang_code', 1, 'https://ror.org/03cek7y17 Domel (Slovenia)'),
(33773, 'https://ror.org/01k0zsm40', 'no_lang_code', 1, 'https://ror.org/01k0zsm40 Vodovod-Kanalizacija (Slovenia)'),
(33774, 'https://ror.org/01f3xmn08', 'no_lang_code', 1, 'https://ror.org/01f3xmn08 Spica International (Slovenia)'),
(33775, 'https://ror.org/02m7v1314', 'no_lang_code', 1, 'https://ror.org/02m7v1314 DARS (Slovenia)'),
(33776, 'https://ror.org/04am65f10', 'sl', 1, 'https://ror.org/04am65f10 Skupina IRI Ljubljana'),
(33777, 'https://ror.org/00744et58', 'no_lang_code', 1, 'https://ror.org/00744et58 Å tore Steel (Slovenia)'),
(33778, 'https://ror.org/05f060a20', 'no_lang_code', 1, 'https://ror.org/05f060a20 Keko Equipment (Slovenia)'),
(33779, 'https://ror.org/0205pd806', 'no_lang_code', 1, 'https://ror.org/0205pd806 ECHO (Slovenia)'),
(33780, 'https://ror.org/03aqe2s98', 'no_lang_code', 1, 'https://ror.org/03aqe2s98 Structum (Slovenia)'),
(33781, 'https://ror.org/006xrke70', 'no_lang_code', 1, 'https://ror.org/006xrke70 Ecological Engineering Institute'),
(33782, 'https://ror.org/01sq60k61', 'no_lang_code', 1, 'https://ror.org/01sq60k61 Gramatex (Slovenia)'),
(33783, 'https://ror.org/05kmd3412', 'no_lang_code', 1, 'https://ror.org/05kmd3412 ERICo (Slovenia)'),
(33784, 'https://ror.org/00qh28f47', 'no_lang_code', 1, 'https://ror.org/00qh28f47 Svilanit (Slovenia)'),
(33785, 'https://ror.org/03yajhg79', 'en', 1, 'https://ror.org/03yajhg79 Educell'),
(33786, 'https://ror.org/04hqqqx81', 'en', 1, 'https://ror.org/04hqqqx81 Chamber of Agriculture and Forestry of Slovenia'),
(33787, 'https://ror.org/00repdk15', 'no_lang_code', 1, 'https://ror.org/00repdk15 Talum (Slovenia)'),
(33788, 'https://ror.org/04nq64115', 'no_lang_code', 1, 'https://ror.org/04nq64115 Ekliptik (Slovenia)'),
(33789, 'https://ror.org/044pnqk33', 'no_lang_code', 1, 'https://ror.org/044pnqk33 Kolpa (Slovenia)'),
(33790, 'https://ror.org/02p8wff42', 'en', 1, 'https://ror.org/02p8wff42 Testing and Certification Laboratories'),
(33791, 'https://ror.org/01nvq1078', 'no_lang_code', 1, 'https://ror.org/01nvq1078 TECES'),
(33792, 'https://ror.org/02r44dv51', 'sl', 1, 'https://ror.org/02r44dv51 Ekoremediacijski TehnoloŔki Center'),
(33793, 'https://ror.org/0563w4015', 'sl', 1, 'https://ror.org/0563w4015 TehnoloŔko raziskovalni center JUB'),
(33794, 'https://ror.org/03nwfz403', 'no_lang_code', 1, 'https://ror.org/03nwfz403 Krka (Slovenia)'),
(33795, 'https://ror.org/022861y27', 'no_lang_code', 1, 'https://ror.org/022861y27 Ektimo (Slovenia)'),
(33796, 'https://ror.org/00f8nat88', 'no_lang_code', 1, 'https://ror.org/00f8nat88 Tekstina (Slovenia)'),
(33797, 'https://ror.org/04fr8n552', 'no_lang_code', 1, 'https://ror.org/04fr8n552 Elea iC (Slovenia)'),
(33798, 'https://ror.org/010a00062', 'no_lang_code', 1, 'https://ror.org/010a00062 TMG-BMC (Slovenia)'),
(33799, 'https://ror.org/059skkh49', 'no_lang_code', 1, 'https://ror.org/059skkh49 TKK'),
(33800, 'https://ror.org/05mn5p987', 'no_lang_code', 1, 'https://ror.org/05mn5p987 Em.tronic Elektromehanski Sistemi (Slovenia)'),
(33801, 'https://ror.org/02j08vc33', 'no_lang_code', 1, 'https://ror.org/02j08vc33 Labena (Slovenia)'),
(33802, 'https://ror.org/038xfsp37', 'no_lang_code', 1, 'https://ror.org/038xfsp37 EMO Orodjarna (Slovenia)'),
(33803, 'https://ror.org/0504mbn59', 'no_lang_code', 1, 'https://ror.org/0504mbn59 Novartis (Slovenia)'),
(33804, 'https://ror.org/036m1ng26', 'no_lang_code', 1, 'https://ror.org/036m1ng26 TIC-LENS Laser Technologies (Slovenia)'),
(33805, 'https://ror.org/04s1b0x88', 'no_lang_code', 1, 'https://ror.org/04s1b0x88 EN-FIST Centre of Excellence (Slovenia)'),
(33806, 'https://ror.org/058g2b535', 'no_lang_code', 1, 'https://ror.org/058g2b535 Limnos (Slovenia)'),
(33807, 'https://ror.org/009mn4a13', 'no_lang_code', 1, 'https://ror.org/009mn4a13 Energy Restructuring Agency (Slovenia)'),
(33808, 'https://ror.org/04ngq0c47', 'en', 1, 'https://ror.org/04ngq0c47 Coal Mining Museum of Slovenia'),
(33809, 'https://ror.org/011ztk477', 'no_lang_code', 1, 'https://ror.org/011ztk477 Litostroj Power (Slovenia)'),
(33810, 'https://ror.org/01b2feq51', 'no_lang_code', 1, 'https://ror.org/01b2feq51 Envit (Slovenia)'),
(33811, 'https://ror.org/021gz1h55', 'no_lang_code', 1, 'https://ror.org/021gz1h55 Logon (Slovenia)'),
(33812, 'https://ror.org/052pha961', 'en', 1, 'https://ror.org/052pha961 National School of Leadership in Education'),
(33813, 'https://ror.org/008neaz95', 'no_lang_code', 1, 'https://ror.org/008neaz95 Episcenter (Slovenia)'),
(33814, 'https://ror.org/02tezqe13', 'no_lang_code', 1, 'https://ror.org/02tezqe13 Esotech (Slovenia)'),
(33815, 'https://ror.org/02gg7et70', 'no_lang_code', 1, 'https://ror.org/02gg7et70 Unior (Slovenia)'),
(33816, 'https://ror.org/053pwq338', 'no_lang_code', 1, 'https://ror.org/053pwq338 ETI Elektroelement (Slovenia)'),
(33817, 'https://ror.org/055bk1853', 'no_lang_code', 1, 'https://ror.org/055bk1853 Unichem (Slovenia)'),
(33818, 'https://ror.org/00be2mx71', 'no_lang_code', 1, 'https://ror.org/00be2mx71 Gorenjska Predilnica (Slovenia)'),
(33819, 'https://ror.org/05ffyy494', 'en', 1, 'https://ror.org/05ffyy494 Trojina Institute for Applied Slovene Studies'),
(33820, 'https://ror.org/05sk1gv89', 'no_lang_code', 1, 'https://ror.org/05sk1gv89 Trimo (Slovenia)'),
(33821, 'https://ror.org/0244q6h72', 'no_lang_code', 1, 'https://ror.org/0244q6h72 LPKF Group (Slovenia)'),
(33822, 'https://ror.org/02hfya711', 'no_lang_code', 1, 'https://ror.org/02hfya711 Tosama (Slovenia)'),
(33823, 'https://ror.org/00pbr1q26', 'no_lang_code', 1, 'https://ror.org/00pbr1q26 Mahle Letrika (Slovenia)'),
(33824, 'https://ror.org/057xvqd88', 'sl', 1, 'https://ror.org/057xvqd88 Veterinarska Bolnica Maribor'),
(33825, 'https://ror.org/00jhh5t96', 'en', 1, 'https://ror.org/00jhh5t96 Institute of Environmental Biology and Biotechnology L’Institut de Biologie Environnementale et Biotechnologie'),
(33826, 'https://ror.org/052wcqj17', 'fr', 1, 'https://ror.org/052wcqj17 Institut de Biologie et Technologies Institute of Biology and Technology'),
(33827, 'https://ror.org/03bk36k19', 'en', 1, 'https://ror.org/03bk36k19 Infectious Disease Models and Innovative Therapies'),
(33828, 'https://ror.org/039javj55', 'fr', 1, 'https://ror.org/039javj55 Institut de Recherches en Technologies et Sciences pour le Vivant'),
(33829, 'https://ror.org/040pw5174', 'no_lang_code', 1, 'https://ror.org/040pw5174 Marmor Hotavlje Group (Slovenia)'),
(33830, 'https://ror.org/04ztaw443', 'en', 1, 'https://ror.org/04ztaw443 Fisheries Research Institute of Slovenia'),
(33831, 'https://ror.org/00g7qk458', 'no_lang_code', 1, 'https://ror.org/00g7qk458 Daihen Varstroj (Slovenia)'),
(33832, 'https://ror.org/03vpyey53', 'no_lang_code', 1, 'https://ror.org/03vpyey53 Fotona (Slovenia)'),
(33833, 'https://ror.org/03c8hg310', 'no_lang_code', 1, 'https://ror.org/03c8hg310 Velana Living (Slovenia)'),
(33834, 'https://ror.org/014nmkx89', 'en', 1, 'https://ror.org/014nmkx89 Mediterranean Institute for Advanced Studies'),
(33835, 'https://ror.org/02k69yb86', 'no_lang_code', 1, 'https://ror.org/02k69yb86 Veplas (Slovenia)'),
(33836, 'https://ror.org/04vyb7b30', 'no_lang_code', 1, 'https://ror.org/04vyb7b30 Vilpo (Slovenia)'),
(33837, 'https://ror.org/023wja311', 'sl', 1, 'https://ror.org/023wja311 FrančiŔkanski Družinski InŔtitut'),
(33838, 'https://ror.org/01pwx8e77', 'sl', 1, 'https://ror.org/01pwx8e77 MEIS Storitve za Okolje'),
(33839, 'https://ror.org/02pman068', 'no_lang_code', 1, 'https://ror.org/02pman068 Viris (Slovenia)'),
(33840, 'https://ror.org/00n002f65', 'no_lang_code', 1, 'https://ror.org/00n002f65 Metal Ravne (Slovenia)'),
(33841, 'https://ror.org/02hbbce41', 'no_lang_code', 1, 'https://ror.org/02hbbce41 Metrel (Slovenia)'),
(33842, 'https://ror.org/0379mtc39', 'no_lang_code', 1, 'https://ror.org/0379mtc39 Metronik (Slovenia)'),
(33843, 'https://ror.org/00qh0h134', 'sl', 1, 'https://ror.org/00qh0h134 SploŔna BolniŔnica Slovenj Gradec'),
(33844, 'https://ror.org/01bqtxm09', 'no_lang_code', 1, 'https://ror.org/01bqtxm09 VIsport (Slovenia)'),
(33845, 'https://ror.org/02jadyf48', 'no_lang_code', 1, 'https://ror.org/02jadyf48 Mg Soft (Slovenia)'),
(33846, 'https://ror.org/02sjnxv88', 'no_lang_code', 1, 'https://ror.org/02sjnxv88 Geodetski Zavod Celje (Slovenia)'),
(33847, 'https://ror.org/04gwybq17', 'en', 1, 'https://ror.org/04gwybq17 Welding Institute (Slovenia)'),
(33848, 'https://ror.org/00dqbnh70', 'no_lang_code', 1, 'https://ror.org/00dqbnh70 Goap (Slovenia)'),
(33849, 'https://ror.org/03591vd47', 'no_lang_code', 1, 'https://ror.org/03591vd47 MKS Electronic Systems (Slovenia)'),
(33850, 'https://ror.org/02d0sw995', 'no_lang_code', 1, 'https://ror.org/02d0sw995 Mlinotest (Slovenia)'),
(33851, 'https://ror.org/00qcchj97', 'no_lang_code', 1, 'https://ror.org/00qcchj97 Yaskawa (Slovenia)'),
(33852, 'https://ror.org/04j6r2795', 'en', 1, 'https://ror.org/04j6r2795 National Education Institute of the Republic of Slovenia'),
(33853, 'https://ror.org/014snft51', 'no_lang_code', 1, 'https://ror.org/014snft51 Harpha Sea (Slovenia)'),
(33854, 'https://ror.org/059wee776', 'no_lang_code', 1, 'https://ror.org/059wee776 Nigrad (Slovenia)'),
(33855, 'https://ror.org/03nt90n09', 'sl', 1, 'https://ror.org/03nt90n09 RogaŔka Medical Centre'),
(33856, 'https://ror.org/03zn2vc68', 'no_lang_code', 1, 'https://ror.org/03zn2vc68 Niko (Slovenia)'),
(33857, 'https://ror.org/0028m9f31', 'no_lang_code', 1, 'https://ror.org/0028m9f31 Comtrade (Slovenia)'),
(33858, 'https://ror.org/00yycrh80', 'no_lang_code', 1, 'https://ror.org/00yycrh80 Hidria (Slovenia)'),
(33859, 'https://ror.org/037hj0t48', 'no_lang_code', 1, 'https://ror.org/037hj0t48 HIPOT-RR (Slovenia)'),
(33860, 'https://ror.org/04dpavv81', 'no_lang_code', 1, 'https://ror.org/04dpavv81 I 2 Družba za ZaložniŔtvo Izobraževanje in Raziskovanje'),
(33861, 'https://ror.org/05h0vyf89', 'sl', 1, 'https://ror.org/05h0vyf89 Grm Novo mesto - Center Biotehnike in Turizma'),
(33862, 'https://ror.org/00sbttv49', 'fr', 1, 'https://ror.org/00sbttv49 DƩlƩgation Paris 12'),
(33863, 'https://ror.org/00cpsd622', 'en', 1, 'https://ror.org/00cpsd622 Lilly Endowment'),
(33864, 'https://ror.org/01a1mq059', 'en', 1, 'https://ror.org/01a1mq059 ARC Centre of Excellence in Plant Energy Biology'),
(33865, 'https://ror.org/01jz2hz84', 'en', 1, 'https://ror.org/01jz2hz84 National Kidney Foundation Singapore'),
(33866, 'https://ror.org/049nrz535', 'en', 1, 'https://ror.org/049nrz535 Department of Scientific and Industrial Research'),
(33867, 'https://ror.org/02tvrwm90', 'en', 1, 'https://ror.org/02tvrwm90 Canada Excellence Research Chairs Chaires d’Excellence en Recherche du Canada'),
(33868, 'https://ror.org/02rxjts25', 'de', 1, 'https://ror.org/02rxjts25 Minerva Stiftung'),
(33869, 'https://ror.org/040zfw946', 'no_lang_code', 1, 'https://ror.org/040zfw946 Doosan Yonkang Foundation'),
(33870, 'https://ror.org/01h9bce24', 'no_lang_code', 1, 'https://ror.org/01h9bce24 ZootFly (Slovenia)'),
(33871, 'https://ror.org/003xvn846', 'no_lang_code', 1, 'https://ror.org/003xvn846 ZUM urban planning, design (Slovenia)'),
(33872, 'https://ror.org/02srty072', 'en', 1, 'https://ror.org/02srty072 Woosong University ģš°ģ†”ėŒ€ķ•™źµ'),
(33873, 'https://ror.org/04x3rvs94', 'no_lang_code', 1, 'https://ror.org/04x3rvs94 Metallteknikk (Norway)'),
(33874, 'https://ror.org/02kxqpx65', 'no_lang_code', 1, 'https://ror.org/02kxqpx65 Anteo (Norway)'),
(33875, 'https://ror.org/02rtkz848', 'no_lang_code', 1, 'https://ror.org/02rtkz848 Athena Seafoods (Norway)'),
(33876, 'https://ror.org/05em0xj58', 'no_lang_code', 1, 'https://ror.org/05em0xj58 Apertus (Norway)'),
(33877, 'https://ror.org/00c99c668', 'en', 1, 'https://ror.org/00c99c668 Akershus County Council'),
(33878, 'https://ror.org/01nj3h423', 'no_lang_code', 1, 'https://ror.org/01nj3h423 APIM Therapeutics (Norway)'),
(33879, 'https://ror.org/022gnfx83', 'no_lang_code', 1, 'https://ror.org/022gnfx83 Shell (Norway) Shell i Norge'),
(33880, 'https://ror.org/00awpxt48', 'no_lang_code', 1, 'https://ror.org/00awpxt48 Applica Test & Certification (Norway)'),
(33881, 'https://ror.org/016455p20', 'no_lang_code', 1, 'https://ror.org/016455p20 OMBE Plast (Norway)'),
(33882, 'https://ror.org/03hjz0g77', 'no_lang_code', 1, 'https://ror.org/03hjz0g77 Applied Petroleum Technology (Norway)'),
(33883, 'https://ror.org/04v5bkc47', 'no_lang_code', 1, 'https://ror.org/04v5bkc47 Aventa (Norway)'),
(33884, 'https://ror.org/05hqztx55', 'no_lang_code', 1, 'https://ror.org/05hqztx55 Aptomar (Norway)'),
(33885, 'https://ror.org/018wmr002', 'no_lang_code', 1, 'https://ror.org/018wmr002 ƅkrehamn TrĆ„lbĆøteri (Norway)'),
(33886, 'https://ror.org/00pe9yd58', 'no_lang_code', 1, 'https://ror.org/00pe9yd58 Denofa (Norway)'),
(33887, 'https://ror.org/04f501w39', 'no_lang_code', 1, 'https://ror.org/04f501w39 Aseon (Norway)'),
(33888, 'https://ror.org/006hmqw32', 'no', 1, 'https://ror.org/006hmqw32 AksjeNorge'),
(33889, 'https://ror.org/00t9sn355', 'no_lang_code', 1, 'https://ror.org/00t9sn355 Avexxin (Norway)'),
(33890, 'https://ror.org/042bm3f17', 'no', 1, 'https://ror.org/042bm3f17 AksjonƦrforeningen'),
(33891, 'https://ror.org/02e66s593', 'no_lang_code', 1, 'https://ror.org/02e66s593 2K Tools (Norway)'),
(33892, 'https://ror.org/00mfqc035', 'no_lang_code', 1, 'https://ror.org/00mfqc035 AKVA Group (Norway)'),
(33893, 'https://ror.org/048c3ks84', 'no_lang_code', 1, 'https://ror.org/048c3ks84 3GSolar (Norway)'),
(33894, 'https://ror.org/03yy00h78', 'no_lang_code', 1, 'https://ror.org/03yy00h78 Avfall Norge (Norway)'),
(33895, 'https://ror.org/03h4k9g13', 'no_lang_code', 1, 'https://ror.org/03h4k9g13 Aqua Bio Technology (Norway)'),
(33896, 'https://ror.org/045fr5063', 'no_lang_code', 1, 'https://ror.org/045fr5063 Aspiro (Norway)'),
(33897, 'https://ror.org/00nmk1536', 'no_lang_code', 1, 'https://ror.org/00nmk1536 Avinor (Norway)'),
(33898, 'https://ror.org/0301jsj38', 'no_lang_code', 1, 'https://ror.org/0301jsj38 Aqua Energy Solutions (Norway)'),
(33899, 'https://ror.org/04zyaf064', 'no_lang_code', 1, 'https://ror.org/04zyaf064 Akvaforsk Genetics Center (Norway)'),
(33900, 'https://ror.org/02aqc1f57', 'no', 1, 'https://ror.org/02aqc1f57 3T Helse (Norway)'),
(33901, 'https://ror.org/04ppv9r66', 'no_lang_code', 1, 'https://ror.org/04ppv9r66 AquaGen (Norway)'),
(33902, 'https://ror.org/01tv6je98', 'no_lang_code', 1, 'https://ror.org/01tv6je98 AXTech (Norway)'),
(33903, 'https://ror.org/028zzym80', 'no_lang_code', 1, 'https://ror.org/028zzym80 Morenot (Norway)'),
(33904, 'https://ror.org/003y01g65', 'no_lang_code', 1, 'https://ror.org/003y01g65 4Subsea (Norway)'),
(33905, 'https://ror.org/03yvfnr08', 'no_lang_code', 1, 'https://ror.org/03yvfnr08 Ayanda (Norway)'),
(33906, 'https://ror.org/05vxqd987', 'no_lang_code', 1, 'https://ror.org/05vxqd987 Aquadyne (Norway)'),
(33907, 'https://ror.org/00df11c89', 'no_lang_code', 1, 'https://ror.org/00df11c89 Bach Technology (Norway)'),
(33908, 'https://ror.org/04j246913', 'no_lang_code', 1, 'https://ror.org/04j246913 Badger Explorer (Norway)'),
(33909, 'https://ror.org/04bcp1r41', 'no_lang_code', 1, 'https://ror.org/04bcp1r41 BƦrgƄrden Ƙstre Enger (Norway)'),
(33910, 'https://ror.org/047jhq856', 'no', 1, 'https://ror.org/047jhq856 AT Skog'),
(33911, 'https://ror.org/01psj0w95', 'no_lang_code', 1, 'https://ror.org/01psj0w95 Alcoa (Norway)'),
(33912, 'https://ror.org/0189bb227', 'no_lang_code', 1, 'https://ror.org/0189bb227 Alcontrol Laboratories (Norway)'),
(33913, 'https://ror.org/05pbhjp46', 'no_lang_code', 1, 'https://ror.org/05pbhjp46 Alere (Norway)'),
(33914, 'https://ror.org/01z6y6z64', 'no', 1, 'https://ror.org/01z6y6z64 657 Oslo'),
(33915, 'https://ror.org/04wbyjk66', 'no_lang_code', 1, 'https://ror.org/04wbyjk66 7Sense Group (Norway)'),
(33916, 'https://ror.org/010e5k554', 'no_lang_code', 1, 'https://ror.org/010e5k554 Aquafarm Equipment (Norway)'),
(33917, 'https://ror.org/001khdx24', 'no_lang_code', 1, 'https://ror.org/001khdx24 AquaFence (Norway)'),
(33918, 'https://ror.org/04p98pm42', 'no_lang_code', 1, 'https://ror.org/04p98pm42 Alfa (Norway)'),
(33919, 'https://ror.org/01jy8d602', 'no_lang_code', 1, 'https://ror.org/01jy8d602 Baker Hughes (Norway)'),
(33920, 'https://ror.org/02bc2r066', 'no_lang_code', 1, 'https://ror.org/02bc2r066 Alfsen og Gunderson (Norway)'),
(33921, 'https://ror.org/04xef4937', 'no_lang_code', 1, 'https://ror.org/04xef4937 Aqualine (Norway)'),
(33922, 'https://ror.org/05e8kwn08', 'no_lang_code', 1, 'https://ror.org/05e8kwn08 A-Lifting (Norway)'),
(33923, 'https://ror.org/028521m47', 'no_lang_code', 1, 'https://ror.org/028521m47 Balter Medical (Norway)'),
(33924, 'https://ror.org/02f8b2d05', 'no_lang_code', 1, 'https://ror.org/02f8b2d05 Bama Gruppen (Norway)'),
(33925, 'https://ror.org/03v1yvt11', 'no_lang_code', 1, 'https://ror.org/03v1yvt11 AquaScan (Norway)'),
(33926, 'https://ror.org/02attg727', 'no_lang_code', 1, 'https://ror.org/02attg727 Bayer (Norway)'),
(33927, 'https://ror.org/05nvjkk97', 'no_lang_code', 1, 'https://ror.org/05nvjkk97 Aquastructures (Norway)'),
(33928, 'https://ror.org/05wgrpp48', 'no_lang_code', 1, 'https://ror.org/05wgrpp48 Infor (Norway)'),
(33929, 'https://ror.org/00e6cpy98', 'no_lang_code', 1, 'https://ror.org/00e6cpy98 Algaetech (Norway)'),
(33930, 'https://ror.org/05gawss62', 'no_lang_code', 1, 'https://ror.org/05gawss62 Barco (Norway)'),
(33931, 'https://ror.org/01e3zyd27', 'no_lang_code', 1, 'https://ror.org/01e3zyd27 Pelias Norsk Skadedyrkontroll (Norway)'),
(33932, 'https://ror.org/036r3bf08', 'no_lang_code', 1, 'https://ror.org/036r3bf08 Atkins (Norway)'),
(33933, 'https://ror.org/01ns8dn21', 'no_lang_code', 1, 'https://ror.org/01ns8dn21 Aquatic Concept group (Norway)'),
(33934, 'https://ror.org/016qgdx27', 'no_lang_code', 1, 'https://ror.org/016qgdx27 ATM Brovig (Norway)'),
(33935, 'https://ror.org/04gd7mk44', 'no_lang_code', 1, 'https://ror.org/04gd7mk44 Aanderaa (Norway)'),
(33936, 'https://ror.org/04pg95t29', 'no_lang_code', 1, 'https://ror.org/04pg95t29 Aarbakke Innovation (Norway)'),
(33937, 'https://ror.org/019cs7136', 'no_lang_code', 1, 'https://ror.org/019cs7136 Atmel (Norway)'),
(33938, 'https://ror.org/04h1n6t82', 'no_lang_code', 1, 'https://ror.org/04h1n6t82 Bartec Pixavi (Norway)'),
(33939, 'https://ror.org/01br8pc86', 'no_lang_code', 1, 'https://ror.org/01br8pc86 Allskog (Norway)'),
(33940, 'https://ror.org/05gy3y907', 'no_lang_code', 1, 'https://ror.org/05gy3y907 Abalonyx (Norway)'),
(33941, 'https://ror.org/05fcegz04', 'en', 1, 'https://ror.org/05fcegz04 Association of Vocational Rehabilitation Enterprises'),
(33942, 'https://ror.org/033mwhp49', 'no_lang_code', 1, 'https://ror.org/033mwhp49 Bass (Norway)'),
(33943, 'https://ror.org/02hw4sy21', 'no_lang_code', 1, 'https://ror.org/02hw4sy21 AudioPlus (Norway)'),
(33944, 'https://ror.org/01rvrxf39', 'no_lang_code', 1, 'https://ror.org/01rvrxf39 Abbon (Norway)'),
(33945, 'https://ror.org/01n3ps908', 'no', 1, 'https://ror.org/01n3ps908 BesteBakken'),
(33946, 'https://ror.org/00qrrj311', 'no', 1, 'https://ror.org/00qrrj311 Abelia'),
(33947, 'https://ror.org/059xx0z39', 'en', 1, 'https://ror.org/059xx0z39 Norwegian Labour Inspection Authority'),
(33948, 'https://ror.org/00xzsc219', 'no_lang_code', 1, 'https://ror.org/00xzsc219 Aurland Naturverkstad (Norway)'),
(33949, 'https://ror.org/02g9xm383', 'no_lang_code', 1, 'https://ror.org/02g9xm383 Abilia (Norway)'),
(33950, 'https://ror.org/0483wn475', 'no', 1, 'https://ror.org/0483wn475 Coperiosenteret'),
(33951, 'https://ror.org/05b8fve51', 'no_lang_code', 1, 'https://ror.org/05b8fve51 Archer (Norway)'),
(33952, 'https://ror.org/0417pw826', 'no_lang_code', 1, 'https://ror.org/0417pw826 Lyse (Norway)'),
(33953, 'https://ror.org/02qnspa70', 'no_lang_code', 1, 'https://ror.org/02qnspa70 Abyssus Marine Services (Norway)'),
(33954, 'https://ror.org/04wcc2q98', 'no_lang_code', 1, 'https://ror.org/04wcc2q98 Accenture (Norway)'),
(33955, 'https://ror.org/005fhb985', 'no_lang_code', 1, 'https://ror.org/005fhb985 BƄtservice (Norway)'),
(33956, 'https://ror.org/03h6f8g89', 'no_lang_code', 1, 'https://ror.org/03h6f8g89 Seagarden (Norway)'),
(33957, 'https://ror.org/00pd69702', 'no_lang_code', 1, 'https://ror.org/00pd69702 TGS (Norway)'),
(33958, 'https://ror.org/043cf4715', 'no_lang_code', 1, 'https://ror.org/043cf4715 Beck Engineering (Norway)'),
(33959, 'https://ror.org/000pke647', 'no_lang_code', 1, 'https://ror.org/000pke647 Arctic Nutrition (Norway)'),
(33960, 'https://ror.org/00vnz7193', 'no_lang_code', 1, 'https://ror.org/00vnz7193 Arctic Pharma (Norway)'),
(33961, 'https://ror.org/012674h84', 'no_lang_code', 1, 'https://ror.org/012674h84 Ericsson (Norway)'),
(33962, 'https://ror.org/0234z1974', 'no_lang_code', 1, 'https://ror.org/0234z1974 Amedia (Norway)'),
(33963, 'https://ror.org/049gbkg80', 'no_lang_code', 1, 'https://ror.org/049gbkg80 Acona (Norway)'),
(33964, 'https://ror.org/05x3kq496', 'no_lang_code', 1, 'https://ror.org/05x3kq496 ArcticZymes (Norway)'),
(33965, 'https://ror.org/05mxqzt83', 'no_lang_code', 1, 'https://ror.org/05mxqzt83 Acoustics (Norway)'),
(33966, 'https://ror.org/0376qrw20', 'no_lang_code', 1, 'https://ror.org/0376qrw20 AnaCon (Norway)'),
(33967, 'https://ror.org/05kr66310', 'no_lang_code', 1, 'https://ror.org/05kr66310 ArcusGruppen (Norway)'),
(33968, 'https://ror.org/037r20s14', 'en', 1, 'https://ror.org/037r20s14 Bellona Foundation'),
(33969, 'https://ror.org/013572v77', 'no_lang_code', 1, 'https://ror.org/013572v77 ActionPhoto International (Norway)'),
(33970, 'https://ror.org/02q5gf687', 'no', 1, 'https://ror.org/02q5gf687 AndĆøya Space Center'),
(33971, 'https://ror.org/036wf7b34', 'no_lang_code', 1, 'https://ror.org/036wf7b34 Benteler (Norway)'),
(33972, 'https://ror.org/03gm8q023', 'no_lang_code', 1, 'https://ror.org/03gm8q023 Vizrt (Norway)'),
(33973, 'https://ror.org/002kp7y60', 'no_lang_code', 1, 'https://ror.org/002kp7y60 Bergen Energi (Norway)'),
(33974, 'https://ror.org/01qb65r21', 'no_lang_code', 1, 'https://ror.org/01qb65r21 Adalia Film (Norway)'),
(33975, 'https://ror.org/03kgran92', 'no_lang_code', 1, 'https://ror.org/03kgran92 Nexans (Norway)'),
(33976, 'https://ror.org/03xks2j10', 'no_lang_code', 1, 'https://ror.org/03xks2j10 Argus Remote Systems (Norway)'),
(33977, 'https://ror.org/02tgjqk78', 'no_lang_code', 1, 'https://ror.org/02tgjqk78 Adigo (Norway)'),
(33978, 'https://ror.org/02n2tgb73', 'no', 1, 'https://ror.org/02n2tgb73 Bergen Kommune ByrƄdsavd for Helse og Omsorg'),
(33979, 'https://ror.org/04j3z9j34', 'no_lang_code', 1, 'https://ror.org/04j3z9j34 Arkitektbedriftene (Norway)'),
(33980, 'https://ror.org/028dt6y58', 'no_lang_code', 1, 'https://ror.org/028dt6y58 Bergen TeknologioverfĆøring (Norway)'),
(33981, 'https://ror.org/0158j3249', 'no_lang_code', 1, 'https://ror.org/0158j3249 FelleskjĆøpet Agri (Norway)'),
(33982, 'https://ror.org/00djr0052', 'no_lang_code', 1, 'https://ror.org/00djr0052 Arkitektskap (Norway)'),
(33983, 'https://ror.org/05fp2e057', 'no_lang_code', 1, 'https://ror.org/05fp2e057 Admincontrol (Norway)'),
(33984, 'https://ror.org/00cd60776', 'no_lang_code', 1, 'https://ror.org/00cd60776 Animaze Technology (Norway)'),
(33985, 'https://ror.org/02bjjst49', 'en', 1, 'https://ror.org/02bjjst49 Bergen Science Center'),
(33986, 'https://ror.org/03xsw0p28', 'no_lang_code', 1, 'https://ror.org/03xsw0p28 Arkitektur og Byggteknikk (Norway)'),
(33987, 'https://ror.org/04t7avg40', 'no_lang_code', 1, 'https://ror.org/04t7avg40 Anlegg Bolig RĆør & Varme AS (Norway)'),
(33988, 'https://ror.org/05tacv029', 'no_lang_code', 1, 'https://ror.org/05tacv029 BerGenBio (Norway)'),
(33989, 'https://ror.org/047fbt408', 'no_lang_code', 1, 'https://ror.org/047fbt408 Autronica Fire and Security (Norway)'),
(33990, 'https://ror.org/02gxndb03', 'en', 1, 'https://ror.org/02gxndb03 National Archives Services of Norway'),
(33991, 'https://ror.org/050ng1611', 'no_lang_code', 1, 'https://ror.org/050ng1611 Admit (Norway)'),
(33992, 'https://ror.org/00ggx8446', 'no_lang_code', 1, 'https://ror.org/00ggx8446 Bergene Holm (Norway)'),
(33993, 'https://ror.org/05ma9je87', 'no_lang_code', 1, 'https://ror.org/05ma9je87 Jaeder (Norway)'),
(33994, 'https://ror.org/05sp73k66', 'no_lang_code', 1, 'https://ror.org/05sp73k66 Geno (Norway)'),
(33995, 'https://ror.org/03h2ryz41', 'no_lang_code', 1, 'https://ror.org/03h2ryz41 Adresseavisen (Norway)'),
(33996, 'https://ror.org/01xdmtt96', 'no_lang_code', 1, 'https://ror.org/01xdmtt96 Biolink Group (Norway)'),
(33997, 'https://ror.org/040w2fg16', 'no', 1, 'https://ror.org/040w2fg16 Bergens Rederiforening'),
(33998, 'https://ror.org/037afsz69', 'no_lang_code', 1, 'https://ror.org/037afsz69 BioMar (Norway)'),
(33999, 'https://ror.org/00c652853', 'no_lang_code', 1, 'https://ror.org/00c652853 Data Respons (Norway)'),
(34000, 'https://ror.org/019nn6105', 'no_lang_code', 1, 'https://ror.org/019nn6105 BW Group (Norway)'),
(34001, 'https://ror.org/015ckc894', 'no_lang_code', 1, 'https://ror.org/015ckc894 Aibel (Norway)'),
(34002, 'https://ror.org/01x6yf687', 'no_lang_code', 1, 'https://ror.org/01x6yf687 Artec Aqua (Norway)'),
(34003, 'https://ror.org/01wq03263', 'no_lang_code', 1, 'https://ror.org/01wq03263 Biomega (Norway)'),
(34004, 'https://ror.org/0444s8s29', 'no_lang_code', 1, 'https://ror.org/0444s8s29 Biomolex (Norway)'),
(34005, 'https://ror.org/02dwwjd32', 'no_lang_code', 1, 'https://ror.org/02dwwjd32 Norwegian Biochemical (Norway)'),
(34006, 'https://ror.org/05569xx10', 'no_lang_code', 1, 'https://ror.org/05569xx10 Bionor (Norway)'),
(34007, 'https://ror.org/03frs5880', 'no_lang_code', 1, 'https://ror.org/03frs5880 Delprodukt (Norway)'),
(34008, 'https://ror.org/0326h5856', 'no', 1, 'https://ror.org/0326h5856 Aga Halibut'),
(34009, 'https://ror.org/0156b0f63', 'en', 1, 'https://ror.org/0156b0f63 Board of European Students of Technology'),
(34010, 'https://ror.org/024x6hc31', 'no_lang_code', 1, 'https://ror.org/024x6hc31 Agder Energi (Norway)'),
(34011, 'https://ror.org/00s3yxg72', 'no_lang_code', 1, 'https://ror.org/00s3yxg72 Green Cube Management (Norway)'),
(34012, 'https://ror.org/00c2cek40', 'no_lang_code', 1, 'https://ror.org/00c2cek40 Betonmast (Norway)'),
(34013, 'https://ror.org/00krkjc90', 'no_lang_code', 1, 'https://ror.org/00krkjc90 Hadeland Glassverk (Norway)'),
(34014, 'https://ror.org/03whyax55', 'no_lang_code', 1, 'https://ror.org/03whyax55 Bevital (Norway)'),
(34015, 'https://ror.org/02ev4fa71', 'no_lang_code', 1, 'https://ror.org/02ev4fa71 AGR Group (Norway)'),
(34016, 'https://ror.org/01ygcjp85', 'no_lang_code', 1, 'https://ror.org/01ygcjp85 Biosense Laboratories (Norway)'),
(34017, 'https://ror.org/025q8bf29', 'no_lang_code', 1, 'https://ror.org/025q8bf29 BEWi (Norway)'),
(34018, 'https://ror.org/05808w753', 'en', 1, 'https://ror.org/05808w753 Norwegian Institute of Emotion-focused Therapy'),
(34019, 'https://ror.org/036xk1d10', 'no_lang_code', 1, 'https://ror.org/036xk1d10 AgromiljĆø (Norway)'),
(34020, 'https://ror.org/03cebfr78', 'no_lang_code', 1, 'https://ror.org/03cebfr78 Torvald Klaveness (Norway)'),
(34021, 'https://ror.org/05ecjem84', 'no_lang_code', 1, 'https://ror.org/05ecjem84 Biblioteksentralen (Norway)'),
(34022, 'https://ror.org/0239rms91', 'no_lang_code', 1, 'https://ror.org/0239rms91 Biosergen (Norway)'),
(34023, 'https://ror.org/056ej1m32', 'no_lang_code', 1, 'https://ror.org/056ej1m32 Marex (Norway)'),
(34024, 'https://ror.org/05sm49m59', 'no_lang_code', 1, 'https://ror.org/05sm49m59 AgroNova (Norway)'),
(34025, 'https://ror.org/03y2gf405', 'no_lang_code', 1, 'https://ror.org/03y2gf405 Bulldozer Film (Norway)'),
(34026, 'https://ror.org/01yn06q53', 'no', 1, 'https://ror.org/01yn06q53 Avdeling for Utdanning Nord-TrĆøndelag Fylkeskommune'),
(34027, 'https://ror.org/0000xh558', 'no_lang_code', 1, 'https://ror.org/0000xh558 BioBag (Norway)'),
(34028, 'https://ror.org/02t8zdk52', 'no_lang_code', 1, 'https://ror.org/02t8zdk52 Biota Guard (Norway)'),
(34029, 'https://ror.org/016646t85', 'en', 1, 'https://ror.org/016646t85 Business Region Bergen'),
(34030, 'https://ror.org/04ejtfc04', 'no_lang_code', 1, 'https://ror.org/04ejtfc04 Biobe (Norway)'),
(34031, 'https://ror.org/046h6tv02', 'no_lang_code', 1, 'https://ror.org/046h6tv02 Ak. Grieg Norge (Norway)'),
(34032, 'https://ror.org/05g3zpw59', 'no_lang_code', 1, 'https://ror.org/05g3zpw59 BiotaTools (Norway)'),
(34033, 'https://ror.org/024mwqq28', 'en', 1, 'https://ror.org/024mwqq28 Buskerud County Municipality'),
(34034, 'https://ror.org/054n7j171', 'no_lang_code', 1, 'https://ror.org/054n7j171 Biochos (Norway)'),
(34035, 'https://ror.org/045qetg51', 'no_lang_code', 1, 'https://ror.org/045qetg51 Biotec Pharmacon (Norway)'),
(34036, 'https://ror.org/04kgpzh67', 'en', 1, 'https://ror.org/04kgpzh67 Confederation of Norwegian Enterprise'),
(34037, 'https://ror.org/033tsye23', 'no', 1, 'https://ror.org/033tsye23 Akademika (Norway)'),
(34038, 'https://ror.org/00ks2fw34', 'en', 1, 'https://ror.org/00ks2fw34 Norwegian Biotechnology Advisory Board'),
(34039, 'https://ror.org/016sv8t06', 'no_lang_code', 1, 'https://ror.org/016sv8t06 Biovotec (Norway)'),
(34040, 'https://ror.org/038dzsp73', 'no_lang_code', 1, 'https://ror.org/038dzsp73 C-NAV (Norway)'),
(34041, 'https://ror.org/02492wy41', 'no_lang_code', 1, 'https://ror.org/02492wy41 Biogrid (Norway)'),
(34042, 'https://ror.org/04z5mkt27', 'no_lang_code', 1, 'https://ror.org/04z5mkt27 C10 Pharma (Norway)'),
(34043, 'https://ror.org/019q0kc03', 'no_lang_code', 1, 'https://ror.org/019q0kc03 Biowater Technology (Norway)'),
(34044, 'https://ror.org/05hmx2x96', 'no_lang_code', 1, 'https://ror.org/05hmx2x96 C6 Technologies (Norway)'),
(34045, 'https://ror.org/00xm9b761', 'no_lang_code', 1, 'https://ror.org/00xm9b761 Commitment (Norway)'),
(34046, 'https://ror.org/018xkp798', 'no_lang_code', 1, 'https://ror.org/018xkp798 C-Feed (Norway)'),
(34047, 'https://ror.org/059cfwd16', 'no_lang_code', 1, 'https://ror.org/059cfwd16 Calanus (Norway)'),
(34048, 'https://ror.org/04r3qwa04', 'no_lang_code', 1, 'https://ror.org/04r3qwa04 BjĆørnson (Norway)'),
(34049, 'https://ror.org/044a6j606', 'no_lang_code', 1, 'https://ror.org/044a6j606 Calcus (Norway)'),
(34050, 'https://ror.org/03kd6q497', 'no_lang_code', 1, 'https://ror.org/03kd6q497 Completion Technology Resources (Norway)'),
(34051, 'https://ror.org/03yyk9v83', 'en', 1, 'https://ror.org/03yyk9v83 Norwegian Computer Society'),
(34052, 'https://ror.org/04b709v36', 'no_lang_code', 1, 'https://ror.org/04b709v36 Calora Subsea (Norway)'),
(34053, 'https://ror.org/02db4tt61', 'no_lang_code', 1, 'https://ror.org/02db4tt61 BergenshalvĆøens Kommunale Kraftselskap (Norway)'),
(34054, 'https://ror.org/00aagcd70', 'no_lang_code', 1, 'https://ror.org/00aagcd70 Calpro (Norway)'),
(34055, 'https://ror.org/01x578c48', 'no', 1, 'https://ror.org/01x578c48 Emballasjeforeningen'),
(34056, 'https://ror.org/05vg3sa15', 'no_lang_code', 1, 'https://ror.org/05vg3sa15 Calysta (Norway)'),
(34057, 'https://ror.org/022w6y159', 'en', 1, 'https://ror.org/022w6y159 Norwegian Medical Association'),
(34058, 'https://ror.org/02hb0te91', 'no_lang_code', 1, 'https://ror.org/02hb0te91 Cambi (Norway)'),
(34059, 'https://ror.org/02e2px796', 'no_lang_code', 1, 'https://ror.org/02e2px796 Hƶegh LNG (Norway)'),
(34060, 'https://ror.org/00238y219', 'no_lang_code', 1, 'https://ror.org/00238y219 BlƄst Film (Norway)'),
(34061, 'https://ror.org/007q6cq88', 'no_lang_code', 1, 'https://ror.org/007q6cq88 Doble (Norway)'),
(34062, 'https://ror.org/058r2a869', 'no_lang_code', 1, 'https://ror.org/058r2a869 Comptel (Norway)'),
(34063, 'https://ror.org/021fpfb36', 'no_lang_code', 1, 'https://ror.org/021fpfb36 Docmap (Norway)'),
(34064, 'https://ror.org/008stff69', 'no_lang_code', 1, 'https://ror.org/008stff69 Blue Planet (Norway)'),
(34065, 'https://ror.org/018a0bk66', 'no_lang_code', 1, 'https://ror.org/018a0bk66 Rolls-Royce (Norway)'),
(34066, 'https://ror.org/00h9cwn45', 'en', 1, 'https://ror.org/00h9cwn45 Computer Applications and Quantitative Methods in Archaeology'),
(34067, 'https://ror.org/00f1jfy92', 'no_lang_code', 1, 'https://ror.org/00f1jfy92 DOF Subsea (Norway)'),
(34068, 'https://ror.org/053zh1b29', 'no_lang_code', 1, 'https://ror.org/053zh1b29 Camo (Norway)'),
(34069, 'https://ror.org/01qxktz51', 'no_lang_code', 1, 'https://ror.org/01qxktz51 Con-Form (Norway)'),
(34070, 'https://ror.org/05yaghb42', 'no_lang_code', 1, 'https://ror.org/05yaghb42 Dolphin Interconnect Solutions (Norway)'),
(34071, 'https://ror.org/02ca6sz73', 'no_lang_code', 1, 'https://ror.org/02ca6sz73 BNW-Energy (Norway)'),
(34072, 'https://ror.org/05sbaym77', 'no_lang_code', 1, 'https://ror.org/05sbaym77 Boa Offshore (Norway)'),
(34073, 'https://ror.org/00zgpxe28', 'no_lang_code', 1, 'https://ror.org/00zgpxe28 CondAlign (Norway)'),
(34074, 'https://ror.org/00ec1q452', 'no_lang_code', 1, 'https://ror.org/00ec1q452 Conexus (Norway)'),
(34075, 'https://ror.org/051g1tp93', 'no_lang_code', 1, 'https://ror.org/051g1tp93 Domos (Norway)'),
(34076, 'https://ror.org/02d3w1b29', 'no_lang_code', 1, 'https://ror.org/02d3w1b29 Capgemini (Norway)'),
(34077, 'https://ror.org/0371j5q71', 'no_lang_code', 1, 'https://ror.org/0371j5q71 Ƙrsted (Norway)'),
(34078, 'https://ror.org/02gma2x70', 'no_lang_code', 1, 'https://ror.org/02gma2x70 Connect LNG (Norway)'),
(34079, 'https://ror.org/00hscp190', 'no_lang_code', 1, 'https://ror.org/00hscp190 Capia (Norway)'),
(34080, 'https://ror.org/0170ys284', 'en', 1, 'https://ror.org/0170ys284 Connect'),
(34081, 'https://ror.org/0515bx276', 'no_lang_code', 1, 'https://ror.org/0515bx276 Cappelen Damm (Norway)'),
(34082, 'https://ror.org/03qng6g45', 'en', 1, 'https://ror.org/03qng6g45 Norwegian Farmers'' Union'),
(34083, 'https://ror.org/02zg72e18', 'no_lang_code', 1, 'https://ror.org/02zg72e18 Dovre (Norway)'),
(34084, 'https://ror.org/053tv0d72', 'no_lang_code', 1, 'https://ror.org/053tv0d72 Capwell (Norway)'),
(34085, 'https://ror.org/043qs7x90', 'no_lang_code', 1, 'https://ror.org/043qs7x90 Conpart (Norway)'),
(34086, 'https://ror.org/01y7nr056', 'no_lang_code', 1, 'https://ror.org/01y7nr056 Dpcom (Norway)'),
(34087, 'https://ror.org/04y9czb62', 'no_lang_code', 1, 'https://ror.org/04y9czb62 Borginnovasj (Norway)'),
(34088, 'https://ror.org/039726g63', 'no_lang_code', 1, 'https://ror.org/039726g63 Cardiaccs (Norway)'),
(34089, 'https://ror.org/04a10z221', 'no_lang_code', 1, 'https://ror.org/04a10z221 Consafe Logistics (Norway)'),
(34090, 'https://ror.org/02w46bq53', 'no_lang_code', 1, 'https://ror.org/02w46bq53 Dr.Techn.Olav Olsen (Norway)'),
(34091, 'https://ror.org/02yr30s14', 'no', 1, 'https://ror.org/02yr30s14 Drammen Kommune'),
(34092, 'https://ror.org/02eefwm92', 'no_lang_code', 1, 'https://ror.org/02eefwm92 Norwegian State Railways (Norway)'),
(34093, 'https://ror.org/03y62np16', 'no_lang_code', 1, 'https://ror.org/03y62np16 Cautus Geo (Norway)'),
(34094, 'https://ror.org/05hmcwd14', 'no_lang_code', 1, 'https://ror.org/05hmcwd14 Coop Norge (Norway)'),
(34095, 'https://ror.org/01aaadk61', 'no_lang_code', 1, 'https://ror.org/01aaadk61 JB Well Solutions (Norway)'),
(34096, 'https://ror.org/016pvmh77', 'no_lang_code', 1, 'https://ror.org/016pvmh77 Botngaard (Norway)'),
(34097, 'https://ror.org/03x9m5a16', 'no_lang_code', 1, 'https://ror.org/03x9m5a16 Celerway Communication (Norway)'),
(34098, 'https://ror.org/03h58v266', 'no_lang_code', 1, 'https://ror.org/03h58v266 CellCura (Norway)'),
(34099, 'https://ror.org/04arjdq12', 'no_lang_code', 1, 'https://ror.org/04arjdq12 Sekal (Norway)'),
(34100, 'https://ror.org/02sjwdt08', 'no_lang_code', 1, 'https://ror.org/02sjwdt08 Designit (Norway)'),
(34101, 'https://ror.org/0030apy05', 'no_lang_code', 1, 'https://ror.org/0030apy05 CoorsTek (Norway)'),
(34102, 'https://ror.org/045f8n343', 'no_lang_code', 1, 'https://ror.org/045f8n343 BP Norge (Norway)'),
(34103, 'https://ror.org/01gz5rq53', 'no_lang_code', 1, 'https://ror.org/01gz5rq53 Ceragon (Norway)'),
(34104, 'https://ror.org/043zemc40', 'en', 1, 'https://ror.org/043zemc40 Queen Maud University College'),
(34105, 'https://ror.org/01egm4002', 'no_lang_code', 1, 'https://ror.org/01egm4002 CoreAll (Norway)'),
(34106, 'https://ror.org/02vvyxq62', 'no_lang_code', 1, 'https://ror.org/02vvyxq62 Brady (Norway)'),
(34107, 'https://ror.org/03cxg0n72', 'no_lang_code', 1, 'https://ror.org/03cxg0n72 Mitsubishi Corporation (Norway)'),
(34108, 'https://ror.org/05t76y454', 'no', 1, 'https://ror.org/05t76y454 Statped'),
(34109, 'https://ror.org/00nsveh54', 'no_lang_code', 1, 'https://ror.org/00nsveh54 Corentium (Norway)'),
(34110, 'https://ror.org/04nybae35', 'no_lang_code', 1, 'https://ror.org/04nybae35 Drug Discovery Laboratory (Norway)'),
(34111, 'https://ror.org/05trysh47', 'no_lang_code', 1, 'https://ror.org/05trysh47 Cerpus (Norway)'),
(34112, 'https://ror.org/014crwt40', 'no_lang_code', 1, 'https://ror.org/014crwt40 Due MiljĆø (Norway)'),
(34113, 'https://ror.org/02b7hq178', 'no_lang_code', 1, 'https://ror.org/02b7hq178 Breeze (Norway)'),
(34114, 'https://ror.org/05q388t62', 'no_lang_code', 1, 'https://ror.org/05q388t62 Duverden (Norway)'),
(34115, 'https://ror.org/0044jmf17', 'no_lang_code', 1, 'https://ror.org/0044jmf17 CFD Marine (Norway)'),
(34116, 'https://ror.org/03pgmt571', 'no_lang_code', 1, 'https://ror.org/03pgmt571 Cflow Fish Handling (Norway)'),
(34117, 'https://ror.org/05s429h13', 'no_lang_code', 1, 'https://ror.org/05s429h13 Corticalis (Norway)'),
(34118, 'https://ror.org/04err9585', 'no_lang_code', 1, 'https://ror.org/04err9585 Norges Vel (Norway)'),
(34119, 'https://ror.org/00g5afz31', 'no_lang_code', 1, 'https://ror.org/00g5afz31 Dynatec (Norway)'),
(34120, 'https://ror.org/05ajm2r35', 'no_lang_code', 1, 'https://ror.org/05ajm2r35 Dynavec (Norway)'),
(34121, 'https://ror.org/01pn94h16', 'no_lang_code', 1, 'https://ror.org/01pn94h16 Changetech (Norway)'),
(34122, 'https://ror.org/053y7yq36', 'no_lang_code', 1, 'https://ror.org/053y7yq36 BRI Offshore (Norway)'),
(34123, 'https://ror.org/04m91d487', 'no_lang_code', 1, 'https://ror.org/04m91d487 Dynea (Norway)'),
(34124, 'https://ror.org/05tgt0w11', 'no_lang_code', 1, 'https://ror.org/05tgt0w11 Cova (Norway)'),
(34125, 'https://ror.org/002qg6270', 'no_lang_code', 1, 'https://ror.org/002qg6270 Bring (Norway)'),
(34126, 'https://ror.org/04h0zn247', 'no_lang_code', 1, 'https://ror.org/04h0zn247 Chiron (Norway)'),
(34127, 'https://ror.org/02a1wev37', 'no_lang_code', 1, 'https://ror.org/02a1wev37 E Plug (Norway)'),
(34128, 'https://ror.org/00k3k7m85', 'no_lang_code', 1, 'https://ror.org/00k3k7m85 CrayoNano (Norway)'),
(34129, 'https://ror.org/031zx7n25', 'en', 1, 'https://ror.org/031zx7n25 Norwegian Bible Society'),
(34130, 'https://ror.org/053k88v22', 'no_lang_code', 1, 'https://ror.org/053k88v22 CreoTech (Norway)'),
(34131, 'https://ror.org/02pc96p08', 'no_lang_code', 1, 'https://ror.org/02pc96p08 E-CO Energi (Norway)'),
(34132, 'https://ror.org/0047pk836', 'no_lang_code', 1, 'https://ror.org/0047pk836 Crevi (Norway)'),
(34133, 'https://ror.org/027p4v066', 'no_lang_code', 1, 'https://ror.org/027p4v066 EAB Engineering (Norway)'),
(34134, 'https://ror.org/03sb6qc51', 'no_lang_code', 1, 'https://ror.org/03sb6qc51 BrĆødrene Dahl (Norway)'),
(34135, 'https://ror.org/04rfn0m45', 'no_lang_code', 1, 'https://ror.org/04rfn0m45 Chriship (Norway)'),
(34136, 'https://ror.org/055wgnw59', 'en', 1, 'https://ror.org/055wgnw59 Norwegian Nobel Institute'),
(34137, 'https://ror.org/01wajv258', 'no_lang_code', 1, 'https://ror.org/01wajv258 Brunvoll (Norway)'),
(34138, 'https://ror.org/01hqrqj31', 'en', 1, 'https://ror.org/01hqrqj31 Oslo Centre for Interdisciplinary Environmental and Social Research'),
(34139, 'https://ror.org/00gbks067', 'en', 1, 'https://ror.org/00gbks067 Norwegian Forestry Society');
INSERT INTO `rors` VALUES
(34140, 'https://ror.org/02sda1489', 'no_lang_code', 1, 'https://ror.org/02sda1489 Brusell Communications (Norway)'),
(34141, 'https://ror.org/02r5d5757', 'en', 1, 'https://ror.org/02r5d5757 Crisis Training'),
(34142, 'https://ror.org/053mnmm40', 'no_lang_code', 1, 'https://ror.org/053mnmm40 City Motion (Norway)'),
(34143, 'https://ror.org/01ctwqf32', 'no_lang_code', 1, 'https://ror.org/01ctwqf32 BrynslĆøkken (Norway)'),
(34144, 'https://ror.org/025jpz175', 'no_lang_code', 1, 'https://ror.org/025jpz175 Csub (Norway)'),
(34145, 'https://ror.org/01kvzjx09', 'no_lang_code', 1, 'https://ror.org/01kvzjx09 Eco Inhibitors (Norway)'),
(34146, 'https://ror.org/040481r38', 'en', 1, 'https://ror.org/040481r38 Norwegian Trotting Association'),
(34147, 'https://ror.org/01c6xft10', 'no_lang_code', 1, 'https://ror.org/01c6xft10 ClampOn (Norway)'),
(34148, 'https://ror.org/02ez7hy34', 'no_lang_code', 1, 'https://ror.org/02ez7hy34 Cubility (Norway)'),
(34149, 'https://ror.org/00azt0581', 'no_lang_code', 1, 'https://ror.org/00azt0581 BT Signaal (Norway)'),
(34150, 'https://ror.org/01d3knk22', 'no_lang_code', 1, 'https://ror.org/01d3knk22 Clarity Water Treatment Systems (Norway)'),
(34151, 'https://ror.org/00atz9x05', 'no', 1, 'https://ror.org/00atz9x05 Cultura Bank'),
(34152, 'https://ror.org/00884mc13', 'no_lang_code', 1, 'https://ror.org/00884mc13 Cupp Computing (Norway)'),
(34153, 'https://ror.org/01xvh4n70', 'no_lang_code', 1, 'https://ror.org/01xvh4n70 Bull Ski & Kajakk (Norway)'),
(34154, 'https://ror.org/04abbvn76', 'no_lang_code', 1, 'https://ror.org/04abbvn76 ECOsubsea (Norway)'),
(34155, 'https://ror.org/01hyf2b24', 'no_lang_code', 1, 'https://ror.org/01hyf2b24 Clean Marine (Norway)'),
(34156, 'https://ror.org/02raqmj47', 'no', 1, 'https://ror.org/02raqmj47 Boligbygg Oslo KF'),
(34157, 'https://ror.org/01094wq95', 'no_lang_code', 1, 'https://ror.org/01094wq95 Cybernetica (Norway)'),
(34158, 'https://ror.org/03sb9qx96', 'no_lang_code', 1, 'https://ror.org/03sb9qx96 Ecotone (Norway)'),
(34159, 'https://ror.org/01mfwsz24', 'no_lang_code', 1, 'https://ror.org/01mfwsz24 Clavis Technology (Norway)'),
(34160, 'https://ror.org/03jpsgw63', 'no_lang_code', 1, 'https://ror.org/03jpsgw63 Cytovation (Norway)'),
(34161, 'https://ror.org/02jv9pf54', 'no', 1, 'https://ror.org/02jv9pf54 Praktisk-Teologiske Seminar'),
(34162, 'https://ror.org/059jaw607', 'no_lang_code', 1, 'https://ror.org/059jaw607 Clean Silicon (Norway)'),
(34163, 'https://ror.org/03ag00v40', 'no_lang_code', 1, 'https://ror.org/03ag00v40 Devoteam (Norway)'),
(34164, 'https://ror.org/00grb5v24', 'no_lang_code', 1, 'https://ror.org/00grb5v24 Elliptic Labs (Norway)'),
(34165, 'https://ror.org/023e2rv43', 'no_lang_code', 1, 'https://ror.org/023e2rv43 Clearwater Group (Norway)'),
(34166, 'https://ror.org/02d50z080', 'no_lang_code', 1, 'https://ror.org/02d50z080 Compello (Norway)'),
(34167, 'https://ror.org/010vfte86', 'en', 1, 'https://ror.org/010vfte86 Rogaland County Council'),
(34168, 'https://ror.org/03zh4gk78', 'no_lang_code', 1, 'https://ror.org/03zh4gk78 Evry (Norway)'),
(34169, 'https://ror.org/04s468185', 'no_lang_code', 1, 'https://ror.org/04s468185 CLS Technology (Norway)'),
(34170, 'https://ror.org/025j99319', 'no_lang_code', 1, 'https://ror.org/025j99319 Elop (Norway)'),
(34171, 'https://ror.org/037hcxy67', 'no_lang_code', 1, 'https://ror.org/037hcxy67 eDrilling (Norway)'),
(34172, 'https://ror.org/02n1s9498', 'no_lang_code', 1, 'https://ror.org/02n1s9498 Co-action Publishing (Norway)'),
(34173, 'https://ror.org/05h173491', 'no_lang_code', 1, 'https://ror.org/05h173491 Elotec (Norway)'),
(34174, 'https://ror.org/003yx8k21', 'no_lang_code', 1, 'https://ror.org/003yx8k21 Elretur (Norway)'),
(34175, 'https://ror.org/03azf9x72', 'no_lang_code', 1, 'https://ror.org/03azf9x72 Edtech Foundry (Norway)'),
(34176, 'https://ror.org/02agh6277', 'no_lang_code', 1, 'https://ror.org/02agh6277 CO2-Norway (Norway)'),
(34177, 'https://ror.org/01arxq231', 'no_lang_code', 1, 'https://ror.org/01arxq231 Cobuilder (Norway)'),
(34178, 'https://ror.org/00k5mw791', 'no_lang_code', 1, 'https://ror.org/00k5mw791 Didac (Norway)'),
(34179, 'https://ror.org/04r5dzw32', 'no_lang_code', 1, 'https://ror.org/04r5dzw32 CodeIT (Norway)'),
(34180, 'https://ror.org/03pgv3k36', 'en', 1, 'https://ror.org/03pgv3k36 Trondheim-Fjord Rivers'),
(34181, 'https://ror.org/04hxqef50', 'no', 1, 'https://ror.org/04hxqef50 Dans i Skolen'),
(34182, 'https://ror.org/04fc0n424', 'no_lang_code', 1, 'https://ror.org/04fc0n424 Colifast (Norway)'),
(34183, 'https://ror.org/05kd02296', 'no_lang_code', 1, 'https://ror.org/05kd02296 DigiDoc Technologies (Norway)'),
(34184, 'https://ror.org/00rvh4702', 'no_lang_code', 1, 'https://ror.org/00rvh4702 Comet Biotech (Norway)'),
(34185, 'https://ror.org/036dmxc82', 'no_lang_code', 1, 'https://ror.org/036dmxc82 Dat (Norway)'),
(34186, 'https://ror.org/017za6717', 'no_lang_code', 1, 'https://ror.org/017za6717 Dignio (Norway)'),
(34187, 'https://ror.org/022ke2j41', 'no_lang_code', 1, 'https://ror.org/022ke2j41 Electromagnetic Geoservices (Norway)'),
(34188, 'https://ror.org/030a0m094', 'no_lang_code', 1, 'https://ror.org/030a0m094 Commfides Norge (Norway)'),
(34189, 'https://ror.org/018nftw61', 'no_lang_code', 1, 'https://ror.org/018nftw61 Dataloy (Norway)'),
(34190, 'https://ror.org/05v373q59', 'no_lang_code', 1, 'https://ror.org/05v373q59 Emisoft (Norway)'),
(34191, 'https://ror.org/00p15ac84', 'no_lang_code', 1, 'https://ror.org/00p15ac84 Davvi Girji (Norway)'),
(34192, 'https://ror.org/057f18p10', 'no_lang_code', 1, 'https://ror.org/057f18p10 Encap Security (Norway)'),
(34193, 'https://ror.org/04nsp1e11', 'no_lang_code', 1, 'https://ror.org/04nsp1e11 Douchebags (Norway)'),
(34194, 'https://ror.org/002t5m579', 'no_lang_code', 1, 'https://ror.org/002t5m579 Dinamo (Norway)'),
(34195, 'https://ror.org/05a18r864', 'en', 1, 'https://ror.org/05a18r864 International Ocean Discovery Program'),
(34196, 'https://ror.org/012zdsa19', 'no_lang_code', 1, 'https://ror.org/012zdsa19 Dips (Norway)'),
(34197, 'https://ror.org/038zrcp32', 'en', 1, 'https://ror.org/038zrcp32 Energy Norway'),
(34198, 'https://ror.org/02r61ng07', 'en', 1, 'https://ror.org/02r61ng07 Energy Farm'),
(34199, 'https://ror.org/00srhwt80', 'en', 1, 'https://ror.org/00srhwt80 Norwegian National Research Ethics Committees'),
(34200, 'https://ror.org/006gt3q68', 'no_lang_code', 1, 'https://ror.org/006gt3q68 DeAmp (Norway)'),
(34201, 'https://ror.org/014eweh95', 'en', 1, 'https://ror.org/014eweh95 Division of Grants & Agreements'),
(34202, 'https://ror.org/05hk46p43', 'no_lang_code', 1, 'https://ror.org/05hk46p43 DeepOcean (Norway)'),
(34203, 'https://ror.org/043w2w702', 'en', 1, 'https://ror.org/043w2w702 Inland Norway Energy Agency'),
(34204, 'https://ror.org/02k1hw394', 'en', 1, 'https://ror.org/02k1hw394 Directorate for Cultural Heritage Riksantikvaren'),
(34205, 'https://ror.org/03qm2cd43', 'no_lang_code', 1, 'https://ror.org/03qm2cd43 EnergiUnion (Norway)'),
(34206, 'https://ror.org/01tm3ht72', 'no_lang_code', 1, 'https://ror.org/01tm3ht72 Deep Sea Anchors (Norway)'),
(34207, 'https://ror.org/02sht8d21', 'no_lang_code', 1, 'https://ror.org/02sht8d21 Nordly Holding (Norway)'),
(34208, 'https://ror.org/04qn9mx93', 'en', 1, 'https://ror.org/04qn9mx93 Division of Biological Infrastructure'),
(34209, 'https://ror.org/04pxf4m67', 'no_lang_code', 1, 'https://ror.org/04pxf4m67 Ener-G (Norway)'),
(34210, 'https://ror.org/03g87he71', 'en', 1, 'https://ror.org/03g87he71 Division of Environmental Biology'),
(34211, 'https://ror.org/01tnvpc68', 'en', 1, 'https://ror.org/01tnvpc68 Emerging Frontiers Office'),
(34212, 'https://ror.org/039jpp391', 'no_lang_code', 1, 'https://ror.org/039jpp391 Defa (Norway)'),
(34213, 'https://ror.org/04ckq7q54', 'no', 1, 'https://ror.org/04ckq7q54 Direktoratet for Ćøkonomistyring'),
(34214, 'https://ror.org/011sx0d94', 'en', 1, 'https://ror.org/011sx0d94 Oslo Public Library'),
(34215, 'https://ror.org/04q0w2t43', 'no_lang_code', 1, 'https://ror.org/04q0w2t43 Evac (Norway)'),
(34216, 'https://ror.org/02qaq7m46', 'no_lang_code', 1, 'https://ror.org/02qaq7m46 Delitek (Norway)'),
(34217, 'https://ror.org/01rvays47', 'en', 1, 'https://ror.org/01rvays47 Division of Integrative Organismal Systems'),
(34218, 'https://ror.org/05fhsxp84', 'no', 1, 'https://ror.org/05fhsxp84 Evidensia Oslo dyresykehus'),
(34219, 'https://ror.org/006f4gp05', 'no_lang_code', 1, 'https://ror.org/006f4gp05 Deltagruppen (Norway)'),
(34220, 'https://ror.org/023m9d467', 'no_lang_code', 1, 'https://ror.org/023m9d467 Energy Dynamics (Norway)'),
(34221, 'https://ror.org/002jdaq33', 'en', 1, 'https://ror.org/002jdaq33 Division of Molecular & Cellular Biosciences'),
(34222, 'https://ror.org/0377jb567', 'no_lang_code', 1, 'https://ror.org/0377jb567 Expology (Norway)'),
(34223, 'https://ror.org/04gnscf86', 'no_lang_code', 1, 'https://ror.org/04gnscf86 Fredrikstad Energi (Norway)'),
(34224, 'https://ror.org/02ebhah82', 'no_lang_code', 1, 'https://ror.org/02ebhah82 Eyasys (Norway)'),
(34225, 'https://ror.org/00by76g53', 'no_lang_code', 1, 'https://ror.org/00by76g53 Fish Pool (Norway)'),
(34226, 'https://ror.org/03c935487', 'no', 1, 'https://ror.org/03c935487 Eyde-Nettverket'),
(34227, 'https://ror.org/01dqpe181', 'no_lang_code', 1, 'https://ror.org/01dqpe181 EyeLife (Norway)'),
(34228, 'https://ror.org/01mng8331', 'en', 1, 'https://ror.org/01mng8331 Division of Computing and Communication Foundations'),
(34229, 'https://ror.org/02rdzmk74', 'en', 1, 'https://ror.org/02rdzmk74 Division of Computer and Network Systems'),
(34230, 'https://ror.org/04kbca671', 'no_lang_code', 1, 'https://ror.org/04kbca671 Enhanced Drilling (Norway)'),
(34231, 'https://ror.org/00jkz7z57', 'no_lang_code', 1, 'https://ror.org/00jkz7z57 Fishbones (Norway)'),
(34232, 'https://ror.org/053a2cp42', 'en', 1, 'https://ror.org/053a2cp42 Division of Information and Intelligent Systems'),
(34233, 'https://ror.org/00cx39g50', 'no_lang_code', 1, 'https://ror.org/00cx39g50 Isola (Norway)'),
(34234, 'https://ror.org/028bcwc63', 'no_lang_code', 1, 'https://ror.org/028bcwc63 Fabriscale Technologies (Norway)'),
(34235, 'https://ror.org/03jxb9w83', 'no', 1, 'https://ror.org/03jxb9w83 Norwegian Seafood Federation SjĆømat Norge'),
(34236, 'https://ror.org/05n8hjk08', 'no_lang_code', 1, 'https://ror.org/05n8hjk08 FriskgƄrden (Norway)'),
(34237, 'https://ror.org/03163ea17', 'no_lang_code', 1, 'https://ror.org/03163ea17 Fiskeriforum Vest (Norway)'),
(34238, 'https://ror.org/05d01fw51', 'no_lang_code', 1, 'https://ror.org/05d01fw51 Fronteer Solutions (Norway)'),
(34239, 'https://ror.org/051tbnd05', 'no_lang_code', 1, 'https://ror.org/051tbnd05 Fjellstrand (Norway)'),
(34240, 'https://ror.org/02mt99d54', 'no_lang_code', 1, 'https://ror.org/02mt99d54 Vigmostad & BjĆørke (Norway)'),
(34241, 'https://ror.org/02p2n1t29', 'no_lang_code', 1, 'https://ror.org/02p2n1t29 Fronter (Norway)'),
(34242, 'https://ror.org/0471zv972', 'en', 1, 'https://ror.org/0471zv972 Division of Chemical, Bioengineering, Environmental, and Transport Systems'),
(34243, 'https://ror.org/01qyqee78', 'no_lang_code', 1, 'https://ror.org/01qyqee78 Faktotum Informasjon (Norway)'),
(34244, 'https://ror.org/00hzhrq25', 'no_lang_code', 1, 'https://ror.org/00hzhrq25 Enoco (Norway)'),
(34245, 'https://ror.org/00wrds652', 'no_lang_code', 1, 'https://ror.org/00wrds652 Frost Produkt (Norway)'),
(34246, 'https://ror.org/01krpsy48', 'en', 1, 'https://ror.org/01krpsy48 Division of Electrical, Communications & Cyber Systems'),
(34247, 'https://ror.org/050zafg52', 'no_lang_code', 1, 'https://ror.org/050zafg52 Fjord IT (Norway)'),
(34248, 'https://ror.org/01w17p094', 'no_lang_code', 1, 'https://ror.org/01w17p094 EnĆøk-Senteret (Norway)'),
(34249, 'https://ror.org/050rnw378', 'en', 1, 'https://ror.org/050rnw378 Division of Engineering Education & Centers'),
(34250, 'https://ror.org/0021wxc35', 'no_lang_code', 1, 'https://ror.org/0021wxc35 Fjord Marin (Norway)'),
(34251, 'https://ror.org/000qjd183', 'no_lang_code', 1, 'https://ror.org/000qjd183 Falck Nutec (Norway)'),
(34252, 'https://ror.org/047dn2208', 'no_lang_code', 1, 'https://ror.org/047dn2208 ENOVA (Norway)'),
(34253, 'https://ror.org/00ve36y89', 'no_lang_code', 1, 'https://ror.org/00ve36y89 Fanbooster (Norway)'),
(34254, 'https://ror.org/00dew5745', 'no_lang_code', 1, 'https://ror.org/00dew5745 Fjordforsk (Norway)'),
(34255, 'https://ror.org/03j4kxk06', 'no_lang_code', 1, 'https://ror.org/03j4kxk06 Enovate (Norway)'),
(34256, 'https://ror.org/004yws045', 'no_lang_code', 1, 'https://ror.org/004yws045 Fjordland (Norway)'),
(34257, 'https://ror.org/0388pet74', 'en', 1, 'https://ror.org/0388pet74 Office of Emerging Frontiers and Multidisciplinary Activities'),
(34258, 'https://ror.org/03x46pr49', 'no_lang_code', 1, 'https://ror.org/03x46pr49 EnSol (Norway)'),
(34259, 'https://ror.org/00jn73068', 'no_lang_code', 1, 'https://ror.org/00jn73068 Fatland (Norway)'),
(34260, 'https://ror.org/03xyg3m20', 'en', 1, 'https://ror.org/03xyg3m20 Division of Industrial Innovation & Partnerships'),
(34261, 'https://ror.org/04bxrwt74', 'no_lang_code', 1, 'https://ror.org/04bxrwt74 Environgas (Norway)'),
(34262, 'https://ror.org/00nynxj47', 'no_lang_code', 1, 'https://ror.org/00nynxj47 Faveo (Norway)'),
(34263, 'https://ror.org/03c1zct07', 'no', 1, 'https://ror.org/03c1zct07 Norsk LandbruksrƄdgiving'),
(34264, 'https://ror.org/001jrcp20', 'no_lang_code', 1, 'https://ror.org/001jrcp20 Flapres (Norway)'),
(34265, 'https://ror.org/018mn5n05', 'no_lang_code', 1, 'https://ror.org/018mn5n05 Feed Control (Norway)'),
(34266, 'https://ror.org/00a9g0t62', 'no_lang_code', 1, 'https://ror.org/00a9g0t62 Flatsetsund Engineering (Norway)'),
(34267, 'https://ror.org/04krcaz19', 'no_lang_code', 1, 'https://ror.org/04krcaz19 Feedback Aquaculture (Norway)'),
(34268, 'https://ror.org/00s6pe011', 'no_lang_code', 1, 'https://ror.org/00s6pe011 Made for Movement (Norway)'),
(34269, 'https://ror.org/027qtg134', 'no_lang_code', 1, 'https://ror.org/027qtg134 Flexit (Norway)'),
(34270, 'https://ror.org/05nwjp114', 'en', 1, 'https://ror.org/05nwjp114 Office of Polar Programs'),
(34271, 'https://ror.org/05j889016', 'no_lang_code', 1, 'https://ror.org/05j889016 Flow Design Bureau (Norway)'),
(34272, 'https://ror.org/01swgw930', 'no_lang_code', 1, 'https://ror.org/01swgw930 Flowtec (Norway)'),
(34273, 'https://ror.org/04p5pgm74', 'no_lang_code', 1, 'https://ror.org/04p5pgm74 Funcom (Norway)'),
(34274, 'https://ror.org/028wsx658', 'no_lang_code', 1, 'https://ror.org/028wsx658 Danaher (Norway)'),
(34275, 'https://ror.org/04bpvsh10', 'no_lang_code', 1, 'https://ror.org/04bpvsh10 Epsis (Norway)'),
(34276, 'https://ror.org/01t6w5q16', 'no_lang_code', 1, 'https://ror.org/01t6w5q16 FelleskjĆøpet (Norway)'),
(34277, 'https://ror.org/050vybr60', 'en', 1, 'https://ror.org/050vybr60 Equator Aircraft Norway'),
(34278, 'https://ror.org/010y28g02', 'no_lang_code', 1, 'https://ror.org/010y28g02 Fupe Systems (Norway)'),
(34279, 'https://ror.org/0187ced18', 'no_lang_code', 1, 'https://ror.org/0187ced18 Furore film (Norway)'),
(34280, 'https://ror.org/04tdcgr05', 'no_lang_code', 1, 'https://ror.org/04tdcgr05 Eramet (Norway)'),
(34281, 'https://ror.org/0186a6222', 'no_lang_code', 1, 'https://ror.org/0186a6222 Grieg Seafood (Norway)'),
(34282, 'https://ror.org/003fgxd95', 'no_lang_code', 1, 'https://ror.org/003fgxd95 Future Solutions (Norway)'),
(34283, 'https://ror.org/04vz51s38', 'no_lang_code', 1, 'https://ror.org/04vz51s38 Erichsen & Horgen (Norway)'),
(34284, 'https://ror.org/05xfhsc76', 'no', 1, 'https://ror.org/05xfhsc76 Halden Kommune'),
(34285, 'https://ror.org/00k3mkd53', 'no_lang_code', 1, 'https://ror.org/00k3mkd53 Future Subsea (Norway)'),
(34286, 'https://ror.org/05njqnk64', 'no', 1, 'https://ror.org/05njqnk64 ForbrukerrƄdet'),
(34287, 'https://ror.org/04rccsv84', 'no_lang_code', 1, 'https://ror.org/04rccsv84 FORCE Technology (Norway)'),
(34288, 'https://ror.org/023ar3785', 'en', 1, 'https://ror.org/023ar3785 County Governor of Nordland'),
(34289, 'https://ror.org/02zm5n619', 'no_lang_code', 1, 'https://ror.org/02zm5n619 Ernst-B. Johansen (Norway)'),
(34290, 'https://ror.org/02gxbm014', 'no_lang_code', 1, 'https://ror.org/02gxbm014 FEM Engineering (Norway)'),
(34291, 'https://ror.org/0361rdk10', 'no_lang_code', 1, 'https://ror.org/0361rdk10 Forget-Me-Not (Norway)'),
(34292, 'https://ror.org/047jbnz84', 'no', 1, 'https://ror.org/047jbnz84 SĆør-TrĆøndelag County Authority'),
(34293, 'https://ror.org/01d9byf14', 'en', 1, 'https://ror.org/01d9byf14 County Governor of Sogn og Fjordane'),
(34294, 'https://ror.org/017fps450', 'no_lang_code', 1, 'https://ror.org/017fps450 Fornebu Consulting (Norway)'),
(34295, 'https://ror.org/02kz5ap91', 'no_lang_code', 1, 'https://ror.org/02kz5ap91 Ferrx (Norway)'),
(34296, 'https://ror.org/04mg8wm74', 'en', 1, 'https://ror.org/04mg8wm74 Division of Astronomical Sciences'),
(34297, 'https://ror.org/01djj8165', 'no_lang_code', 1, 'https://ror.org/01djj8165 Genderguide (Norway)'),
(34298, 'https://ror.org/05t5dnk19', 'no', 1, 'https://ror.org/05t5dnk19 Forskerfabrikken'),
(34299, 'https://ror.org/04d1z5w79', 'en', 1, 'https://ror.org/04d1z5w79 Gena'),
(34300, 'https://ror.org/04nx0sn11', 'no_lang_code', 1, 'https://ror.org/04nx0sn11 Fesil (Norway)'),
(34301, 'https://ror.org/00c9dk124', 'no_lang_code', 1, 'https://ror.org/00c9dk124 Forskning.no (Norway)'),
(34302, 'https://ror.org/01ar8dr59', 'en', 1, 'https://ror.org/01ar8dr59 Division of Chemistry'),
(34303, 'https://ror.org/05dqznn49', 'no_lang_code', 1, 'https://ror.org/05dqznn49 Oslotech (Norway)'),
(34304, 'https://ror.org/04gztv912', 'no_lang_code', 1, 'https://ror.org/04gztv912 Etac (Norway)'),
(34305, 'https://ror.org/02h8v7m77', 'en', 1, 'https://ror.org/02h8v7m77 Center for Selective C–H Functionalization'),
(34306, 'https://ror.org/00tsmp672', 'en', 1, 'https://ror.org/00tsmp672 Narvik Science Park'),
(34307, 'https://ror.org/04r98y365', 'no_lang_code', 1, 'https://ror.org/04r98y365 Figgjo (Norway)'),
(34308, 'https://ror.org/01pc7k308', 'en', 1, 'https://ror.org/01pc7k308 Division of Materials Research'),
(34309, 'https://ror.org/051fftw81', 'en', 1, 'https://ror.org/051fftw81 Division of Mathematical Sciences'),
(34310, 'https://ror.org/04ap5x931', 'en', 1, 'https://ror.org/04ap5x931 Division of Physics'),
(34311, 'https://ror.org/05e64ed12', 'en', 1, 'https://ror.org/05e64ed12 Finance Norway'),
(34312, 'https://ror.org/001s2e926', 'no_lang_code', 1, 'https://ror.org/001s2e926 Eurofins (Norway)'),
(34313, 'https://ror.org/04vr78v16', 'no_lang_code', 1, 'https://ror.org/04vr78v16 General Electric (Norway)'),
(34314, 'https://ror.org/04k9mqs78', 'en', 1, 'https://ror.org/04k9mqs78 Office of Integrative Activities'),
(34315, 'https://ror.org/01p4fde84', 'no_lang_code', 1, 'https://ror.org/01p4fde84 Findus (Norway)'),
(34316, 'https://ror.org/02r7hq914', 'no_lang_code', 1, 'https://ror.org/02r7hq914 Fortum (Norway)'),
(34317, 'https://ror.org/01k638r21', 'en', 1, 'https://ror.org/01k638r21 Office of International Science and Engineering'),
(34318, 'https://ror.org/03qf55f50', 'no_lang_code', 1, 'https://ror.org/03qf55f50 Digital Insight (Norway)'),
(34319, 'https://ror.org/04p795979', 'no_lang_code', 1, 'https://ror.org/04p795979 Gce Node Service (Norway)'),
(34320, 'https://ror.org/03xgpq506', 'en', 1, 'https://ror.org/03xgpq506 Norwegian Society for Medical Informatics'),
(34321, 'https://ror.org/04348hm12', 'no_lang_code', 1, 'https://ror.org/04348hm12 Gavita (Norway)'),
(34322, 'https://ror.org/01vnjbg30', 'en', 1, 'https://ror.org/01vnjbg30 Division of Information Systems'),
(34323, 'https://ror.org/01dm6f769', 'no_lang_code', 1, 'https://ror.org/01dm6f769 Forus NƦringspark (Norway)'),
(34324, 'https://ror.org/0408sy511', 'no_lang_code', 1, 'https://ror.org/0408sy511 FinsbrƄten (Norway)'),
(34325, 'https://ror.org/03pp54d63', 'no_lang_code', 1, 'https://ror.org/03pp54d63 GKN (Norway)'),
(34326, 'https://ror.org/04ajr8041', 'no_lang_code', 1, 'https://ror.org/04ajr8041 Gastronomisk Institutt'),
(34327, 'https://ror.org/02869ee65', 'no_lang_code', 1, 'https://ror.org/02869ee65 FiReCo (Norway)'),
(34328, 'https://ror.org/02zhfb961', 'no_lang_code', 1, 'https://ror.org/02zhfb961 ForzaSys (Norway)'),
(34329, 'https://ror.org/02ht58c79', 'no', 1, 'https://ror.org/02ht58c79 GlƄmdal RegionrƄd'),
(34330, 'https://ror.org/05wgkzg12', 'en', 1, 'https://ror.org/05wgkzg12 Division of Behavioral and Cognitive Sciences'),
(34331, 'https://ror.org/02dz2hb46', 'en', 1, 'https://ror.org/02dz2hb46 Division of Social and Economic Sciences'),
(34332, 'https://ror.org/05ej1z911', 'no_lang_code', 1, 'https://ror.org/05ej1z911 Glamox (Norway)'),
(34333, 'https://ror.org/034m1ez10', 'en', 1, 'https://ror.org/034m1ez10 Science of Learning Centers Program Coordinating Committee'),
(34334, 'https://ror.org/02r7w5t06', 'no_lang_code', 1, 'https://ror.org/02r7w5t06 DrƤger (Norway)'),
(34335, 'https://ror.org/046yjsn38', 'no_lang_code', 1, 'https://ror.org/046yjsn38 Glen Dimplex Nordic (Norway)'),
(34336, 'https://ror.org/02a65dj82', 'en', 1, 'https://ror.org/02a65dj82 SBE Office of Multidisciplinary Activities'),
(34337, 'https://ror.org/012dwyq75', 'no_lang_code', 1, 'https://ror.org/012dwyq75 Gassco (Norway)'),
(34338, 'https://ror.org/046yj6w95', 'no_lang_code', 1, 'https://ror.org/046yj6w95 GasPlas (Norway)'),
(34339, 'https://ror.org/05a8p8995', 'no_lang_code', 1, 'https://ror.org/05a8p8995 Glencore (Norway)'),
(34340, 'https://ror.org/04pyf6e44', 'no_lang_code', 1, 'https://ror.org/04pyf6e44 Gartnerhallen (Norway)'),
(34341, 'https://ror.org/003dgzf80', 'no_lang_code', 1, 'https://ror.org/003dgzf80 Firmenich (Norway)'),
(34342, 'https://ror.org/00c2s7991', 'no_lang_code', 1, 'https://ror.org/00c2s7991 Glommen Skog (Norway)'),
(34343, 'https://ror.org/00hs0rb66', 'no_lang_code', 1, 'https://ror.org/00hs0rb66 Torghatten (Norway)'),
(34344, 'https://ror.org/008etp691', 'no_lang_code', 1, 'https://ror.org/008etp691 GlucoSet (Norway)'),
(34345, 'https://ror.org/01gy2wn10', 'no_lang_code', 1, 'https://ror.org/01gy2wn10 GlycaNova (Norway)'),
(34346, 'https://ror.org/02vfqaw29', 'no_lang_code', 1, 'https://ror.org/02vfqaw29 Go Mobile (Norway)'),
(34347, 'https://ror.org/021d0nd97', 'en', 1, 'https://ror.org/021d0nd97 First Scandinavia'),
(34348, 'https://ror.org/03tnggn83', 'no_lang_code', 1, 'https://ror.org/03tnggn83 FourC (Norway)'),
(34349, 'https://ror.org/050kr2566', 'no_lang_code', 1, 'https://ror.org/050kr2566 FraktefartĆøyenes Rederiforening (Norway)'),
(34350, 'https://ror.org/043ad9j09', 'no_lang_code', 1, 'https://ror.org/043ad9j09 Goodtech (Norway)'),
(34351, 'https://ror.org/03d11xx07', 'no_lang_code', 1, 'https://ror.org/03d11xx07 Alfa Laval (Norway)'),
(34352, 'https://ror.org/00nnw5g58', 'no_lang_code', 1, 'https://ror.org/00nnw5g58 Graminor (Norway)'),
(34353, 'https://ror.org/04gsxzk49', 'no_lang_code', 1, 'https://ror.org/04gsxzk49 Gran Tre (Norway)'),
(34354, 'https://ror.org/05yjs1q31', 'no_lang_code', 1, 'https://ror.org/05yjs1q31 Gaidaros Forlag (Norway)'),
(34355, 'https://ror.org/010a3bp06', 'no_lang_code', 1, 'https://ror.org/010a3bp06 Hermes Academic Publishing and Bookshop (Norway)'),
(34356, 'https://ror.org/03yew7g23', 'no_lang_code', 1, 'https://ror.org/03yew7g23 Graphene Batteries (Norway)'),
(34357, 'https://ror.org/015ck6z19', 'no_lang_code', 1, 'https://ror.org/015ck6z19 G3 Ungplanter (Norway)'),
(34358, 'https://ror.org/003cthx96', 'en', 1, 'https://ror.org/003cthx96 Fredrikstad Dyrehospital'),
(34359, 'https://ror.org/01pvv7388', 'no_lang_code', 1, 'https://ror.org/01pvv7388 G&T Septech (Norway)'),
(34360, 'https://ror.org/035w01f39', 'no_lang_code', 1, 'https://ror.org/035w01f39 Hexagon (Norway)'),
(34361, 'https://ror.org/02y0nmb35', 'no_lang_code', 1, 'https://ror.org/02y0nmb35 Grenland Energy (Norway)'),
(34362, 'https://ror.org/00wq53e84', 'no_lang_code', 1, 'https://ror.org/00wq53e84 GeneSeque (Norway)'),
(34363, 'https://ror.org/05prt4y28', 'no_lang_code', 1, 'https://ror.org/05prt4y28 Genetic Analysis (Norway)'),
(34364, 'https://ror.org/04nc4qk98', 'no_lang_code', 1, 'https://ror.org/04nc4qk98 High Density Devices (Norway)'),
(34365, 'https://ror.org/0312wfb17', 'no_lang_code', 1, 'https://ror.org/0312wfb17 GridSky Software (Norway)'),
(34366, 'https://ror.org/053xcdp31', 'no_lang_code', 1, 'https://ror.org/053xcdp31 Genomar (Norway)'),
(34367, 'https://ror.org/05d5xcx47', 'no_lang_code', 1, 'https://ror.org/05d5xcx47 Gentian (Norway)'),
(34368, 'https://ror.org/04wsp0t42', 'no_lang_code', 1, 'https://ror.org/04wsp0t42 Grieg Group (Norway)'),
(34369, 'https://ror.org/000558439', 'no_lang_code', 1, 'https://ror.org/000558439 Hydrolift (Norway)'),
(34370, 'https://ror.org/00tem3932', 'no_lang_code', 1, 'https://ror.org/00tem3932 Hynor LillestrĆøm (Norway)'),
(34371, 'https://ror.org/00b1cv365', 'no_lang_code', 1, 'https://ror.org/00b1cv365 GrĆønt Punkt Norge (Norway)'),
(34372, 'https://ror.org/038q6p167', 'no_lang_code', 1, 'https://ror.org/038q6p167 Hyperthermics (Norway)'),
(34373, 'https://ror.org/03ngy3w26', 'no_lang_code', 1, 'https://ror.org/03ngy3w26 Grove Knutsen (Norway)'),
(34374, 'https://ror.org/02bs89v88', 'no_lang_code', 1, 'https://ror.org/02bs89v88 Geograf (Norway)'),
(34375, 'https://ror.org/05w02xt27', 'no_lang_code', 1, 'https://ror.org/05w02xt27 Hypet Data (Norway)'),
(34376, 'https://ror.org/05vtg7207', 'no_lang_code', 1, 'https://ror.org/05vtg7207 Geomatics (Norway)'),
(34377, 'https://ror.org/023312y65', 'no_lang_code', 1, 'https://ror.org/023312y65 Hystorsys (Norway)'),
(34378, 'https://ror.org/04bdbag67', 'no_lang_code', 1, 'https://ror.org/04bdbag67 Geomatikk (Norway)'),
(34379, 'https://ror.org/030t3j082', 'no_lang_code', 1, 'https://ror.org/030t3j082 I-Sea (Norway)'),
(34380, 'https://ror.org/04gsfat44', 'no_lang_code', 1, 'https://ror.org/04gsfat44 GeoPlayGround (Norway)'),
(34381, 'https://ror.org/03angs540', 'no_lang_code', 1, 'https://ror.org/03angs540 Gether (Norway)'),
(34382, 'https://ror.org/01cj6rb73', 'no_lang_code', 1, 'https://ror.org/01cj6rb73 Ibsentelecom (Norway)'),
(34383, 'https://ror.org/00shkn419', 'no', 1, 'https://ror.org/00shkn419 Gründerskolen Alumni'),
(34384, 'https://ror.org/05wrwe084', 'no_lang_code', 1, 'https://ror.org/05wrwe084 Nortura (Norway)'),
(34385, 'https://ror.org/018gwvf53', 'no_lang_code', 1, 'https://ror.org/018gwvf53 Eureka Pumps (Norway)'),
(34386, 'https://ror.org/01g4sny84', 'no_lang_code', 1, 'https://ror.org/01g4sny84 IC Targets (Norway)'),
(34387, 'https://ror.org/05wqffg52', 'no_lang_code', 1, 'https://ror.org/05wqffg52 Gintel (Norway)'),
(34388, 'https://ror.org/03n4tsy42', 'no_lang_code', 1, 'https://ror.org/03n4tsy42 GOE-IP (Norway)'),
(34389, 'https://ror.org/01hjbaa35', 'no', 1, 'https://ror.org/01hjbaa35 Gjemnes Kommune'),
(34390, 'https://ror.org/01mbqex31', 'no', 1, 'https://ror.org/01mbqex31 Hermetikken NƦringshage'),
(34391, 'https://ror.org/02eqa6h17', 'no_lang_code', 1, 'https://ror.org/02eqa6h17 Industrial Control Design (Norway)'),
(34392, 'https://ror.org/018zf4j27', 'no', 1, 'https://ror.org/018zf4j27 Gjerdrum kommune'),
(34393, 'https://ror.org/05ahdc712', 'en', 1, 'https://ror.org/05ahdc712 GS1 Norway'),
(34394, 'https://ror.org/031m7k936', 'no_lang_code', 1, 'https://ror.org/031m7k936 GjĆøco (Norway)'),
(34395, 'https://ror.org/02negn633', 'no_lang_code', 1, 'https://ror.org/02negn633 ICT Group (Norway)'),
(34396, 'https://ror.org/02ykc9w32', 'no_lang_code', 1, 'https://ror.org/02ykc9w32 Holmens (Norway)'),
(34397, 'https://ror.org/047eb3p71', 'no_lang_code', 1, 'https://ror.org/047eb3p71 Gudbrandsdalsmat (Norway)'),
(34398, 'https://ror.org/011fsqw83', 'no_lang_code', 1, 'https://ror.org/011fsqw83 HomeControl (Norway)'),
(34399, 'https://ror.org/00caaxe50', 'no_lang_code', 1, 'https://ror.org/00caaxe50 Idex (Norway)'),
(34400, 'https://ror.org/036jhyh48', 'no_lang_code', 1, 'https://ror.org/036jhyh48 Ko-Aks (Norway)'),
(34401, 'https://ror.org/010e7qh86', 'no_lang_code', 1, 'https://ror.org/010e7qh86 Idrettssenteret (Norway)'),
(34402, 'https://ror.org/034yp4s66', 'no_lang_code', 1, 'https://ror.org/034yp4s66 Austevoll Seafood (Norway)'),
(34403, 'https://ror.org/01z9pc360', 'no_lang_code', 1, 'https://ror.org/01z9pc360 GK (Norway)'),
(34404, 'https://ror.org/04zab0068', 'no_lang_code', 1, 'https://ror.org/04zab0068 Industriell Design og Teknologi (Norway)'),
(34405, 'https://ror.org/017apa262', 'no_lang_code', 1, 'https://ror.org/017apa262 GurskĆøy (Norway)'),
(34406, 'https://ror.org/02vzn9b06', 'no_lang_code', 1, 'https://ror.org/02vzn9b06 Idteq (Norway)'),
(34407, 'https://ror.org/05tqjf426', 'en', 1, 'https://ror.org/05tqjf426 Inspiria Science Center'),
(34408, 'https://ror.org/016zetd68', 'no_lang_code', 1, 'https://ror.org/016zetd68 iExcel (Norway)'),
(34409, 'https://ror.org/040tq8233', 'no_lang_code', 1, 'https://ror.org/040tq8233 Aschehoug (Norway)'),
(34410, 'https://ror.org/05kxjz795', 'no_lang_code', 1, 'https://ror.org/05kxjz795 H. J. Kyvik (Norway)'),
(34411, 'https://ror.org/022qggq29', 'en', 1, 'https://ror.org/022qggq29 Hordaland County Council'),
(34412, 'https://ror.org/03dbk8y32', 'no_lang_code', 1, 'https://ror.org/03dbk8y32 H. Henriksen (Norway)'),
(34413, 'https://ror.org/01z00ad02', 'no_lang_code', 1, 'https://ror.org/01z00ad02 EFD Induction (Norway)'),
(34414, 'https://ror.org/043ysjp15', 'no_lang_code', 1, 'https://ror.org/043ysjp15 Hacienda (Norway)'),
(34415, 'https://ror.org/05sdds724', 'no_lang_code', 1, 'https://ror.org/05sdds724 Hafenstrom (Norway)'),
(34416, 'https://ror.org/03xckv489', 'no', 1, 'https://ror.org/03xckv489 Institutt for Grafiske Medier'),
(34417, 'https://ror.org/01qvdnz37', 'no_lang_code', 1, 'https://ror.org/01qvdnz37 Hafslund (Norway)'),
(34418, 'https://ror.org/00jkcwn82', 'no_lang_code', 1, 'https://ror.org/00jkcwn82 IKM Group (Norway)'),
(34419, 'https://ror.org/01re9k832', 'no', 1, 'https://ror.org/01re9k832 Hornindal Kommune'),
(34420, 'https://ror.org/02s2gmj52', 'no_lang_code', 1, 'https://ror.org/02s2gmj52 Effect Ships International (Norway)'),
(34421, 'https://ror.org/024nns705', 'en', 1, 'https://ror.org/024nns705 Tana Municipality'),
(34422, 'https://ror.org/02w8d2553', 'no', 1, 'https://ror.org/02w8d2553 ƅmot Kommune'),
(34423, 'https://ror.org/036nbhr81', 'no', 1, 'https://ror.org/036nbhr81 Fjell Kommune'),
(34424, 'https://ror.org/05272pa41', 'en', 1, 'https://ror.org/05272pa41 Municipality of Andebu'),
(34425, 'https://ror.org/035vexy28', 'no_lang_code', 1, 'https://ror.org/035vexy28 HĆørselslaben (Norway)'),
(34426, 'https://ror.org/04hy2yk18', 'no', 1, 'https://ror.org/04hy2yk18 Egal Teater'),
(34427, 'https://ror.org/02yag5627', 'no', 1, 'https://ror.org/02yag5627 Egede Instituttet'),
(34428, 'https://ror.org/03t9p8264', 'no_lang_code', 1, 'https://ror.org/03t9p8264 Scandinavian Business Seating (Norway)'),
(34429, 'https://ror.org/02xnfye26', 'no_lang_code', 1, 'https://ror.org/02xnfye26 Egersund Group (Norway)'),
(34430, 'https://ror.org/05pz81c75', 'no', 1, 'https://ror.org/05pz81c75 Hospital IT'),
(34431, 'https://ror.org/03jx3ep44', 'no', 1, 'https://ror.org/03jx3ep44 Church Educational Centre Kirkelig Pedagogisk Senter'),
(34432, 'https://ror.org/00nexa929', 'no_lang_code', 1, 'https://ror.org/00nexa929 Eidsiva BredbƄnd (Norway)'),
(34433, 'https://ror.org/0095jfr46', 'no_lang_code', 1, 'https://ror.org/0095jfr46 IKT Indre Namdal (Norway)'),
(34434, 'https://ror.org/027pytp55', 'no', 1, 'https://ror.org/027pytp55 Eidskog Kommune'),
(34435, 'https://ror.org/05q84jy08', 'no_lang_code', 1, 'https://ror.org/05q84jy08 IKT-Norge (Norway)'),
(34436, 'https://ror.org/0184ryh50', 'no', 1, 'https://ror.org/0184ryh50 Hospital Organiser'),
(34437, 'https://ror.org/00rc8te69', 'en', 1, 'https://ror.org/00rc8te69 ICT Telemark'),
(34438, 'https://ror.org/00j3ph269', 'no_lang_code', 1, 'https://ror.org/00j3ph269 International technology Alliance (Norway)'),
(34439, 'https://ror.org/02r92m054', 'no_lang_code', 1, 'https://ror.org/02r92m054 Hagen (Norway)'),
(34440, 'https://ror.org/051srph65', 'no_lang_code', 1, 'https://ror.org/051srph65 Imatis (Norway)'),
(34441, 'https://ror.org/01h16sk12', 'no_lang_code', 1, 'https://ror.org/01h16sk12 Ekornes (Norway)'),
(34442, 'https://ror.org/026y8kf09', 'no_lang_code', 1, 'https://ror.org/026y8kf09 Halify (Norway)'),
(34443, 'https://ror.org/000qg2787', 'no_lang_code', 1, 'https://ror.org/000qg2787 Imerso (Norway)'),
(34444, 'https://ror.org/01e91b575', 'no_lang_code', 1, 'https://ror.org/01e91b575 Elecde (Norway)'),
(34445, 'https://ror.org/05h4txh72', 'no_lang_code', 1, 'https://ror.org/05h4txh72 Hotel Ullensvang (Norway)'),
(34446, 'https://ror.org/05wnbm742', 'no_lang_code', 1, 'https://ror.org/05wnbm742 Hallingplast (Norway)'),
(34447, 'https://ror.org/004xrke09', 'no_lang_code', 1, 'https://ror.org/004xrke09 Halogen (Norway)'),
(34448, 'https://ror.org/04zqksp15', 'en', 1, 'https://ror.org/04zqksp15 International Society for Ecological Economics'),
(34449, 'https://ror.org/02a3v6h38', 'no_lang_code', 1, 'https://ror.org/02a3v6h38 Electrical Subsea and Drilling (Norway)'),
(34450, 'https://ror.org/00c1cxt77', 'no_lang_code', 1, 'https://ror.org/00c1cxt77 Industry Media Group (Norway)'),
(34451, 'https://ror.org/03crstk25', 'no_lang_code', 1, 'https://ror.org/03crstk25 Jomar (Norway)'),
(34452, 'https://ror.org/034wdms74', 'no', 1, 'https://ror.org/034wdms74 LĆøvenskiold Fossum'),
(34453, 'https://ror.org/04p94x951', 'no_lang_code', 1, 'https://ror.org/04p94x951 Maritime Suppliers (Norway)'),
(34454, 'https://ror.org/0210sec94', 'no_lang_code', 1, 'https://ror.org/0210sec94 Hammertech (Norway)'),
(34455, 'https://ror.org/01vd9vr78', 'no_lang_code', 1, 'https://ror.org/01vd9vr78 Halvors Tradisjonsfisk (Norway)'),
(34456, 'https://ror.org/01mr84c03', 'no_lang_code', 1, 'https://ror.org/01mr84c03 Ipark (Norway)'),
(34457, 'https://ror.org/00gmcpk75', 'no_lang_code', 1, 'https://ror.org/00gmcpk75 Impetro International (Norway)'),
(34458, 'https://ror.org/02p932s29', 'no_lang_code', 1, 'https://ror.org/02p932s29 IMPETUS Afea (Norway)'),
(34459, 'https://ror.org/01gzder05', 'no_lang_code', 1, 'https://ror.org/01gzder05 Hans-Petter Brathaug (Norway)'),
(34460, 'https://ror.org/05594xe57', 'no_lang_code', 1, 'https://ror.org/05594xe57 InterMedium (Norway)'),
(34461, 'https://ror.org/0352m1z03', 'no_lang_code', 1, 'https://ror.org/0352m1z03 IMS Group (Norway)'),
(34462, 'https://ror.org/008qzvt03', 'no_lang_code', 1, 'https://ror.org/008qzvt03 Inaq (Norway)'),
(34463, 'https://ror.org/008rxa151', 'no_lang_code', 1, 'https://ror.org/008rxa151 Infrared Clinical Cancer Diagnostics (Norway)'),
(34464, 'https://ror.org/022bcfn34', 'no_lang_code', 1, 'https://ror.org/022bcfn34 Hansen Protection (Norway)'),
(34465, 'https://ror.org/05pgvrp60', 'no_lang_code', 1, 'https://ror.org/05pgvrp60 Hrafn (Norway)'),
(34466, 'https://ror.org/0254m6v25', 'no_lang_code', 1, 'https://ror.org/0254m6v25 Harald KrogsƦter (Norway)'),
(34467, 'https://ror.org/05dcmqv57', 'no', 1, 'https://ror.org/05dcmqv57 InderĆøy Kommune'),
(34468, 'https://ror.org/00747z152', 'no_lang_code', 1, 'https://ror.org/00747z152 Hardanger Fjordfrukt (Norway)'),
(34469, 'https://ror.org/01xryb297', 'no_lang_code', 1, 'https://ror.org/01xryb297 Indra Navia (Norway)'),
(34470, 'https://ror.org/05pq15235', 'no_lang_code', 1, 'https://ror.org/05pq15235 HS News Systems (Norway)'),
(34471, 'https://ror.org/03526x064', 'no_lang_code', 1, 'https://ror.org/03526x064 Huddlestock Capital (Norway)'),
(34472, 'https://ror.org/00wsgg405', 'no_lang_code', 1, 'https://ror.org/00wsgg405 Integrated Optoelectronics (Norway)'),
(34473, 'https://ror.org/0043mfh16', 'no_lang_code', 1, 'https://ror.org/0043mfh16 Integrated Detector Electronics AS (Norway)'),
(34474, 'https://ror.org/004g4mj14', 'en', 1, 'https://ror.org/004g4mj14 Association for Electrotechnics and Automation in Industry'),
(34475, 'https://ror.org/00gc3ww13', 'no_lang_code', 1, 'https://ror.org/00gc3ww13 Human Factors Solutions (Norway)'),
(34476, 'https://ror.org/04zypah04', 'no_lang_code', 1, 'https://ror.org/04zypah04 L3Harris (Norway)'),
(34477, 'https://ror.org/01p2dyg20', 'no', 1, 'https://ror.org/01p2dyg20 Hattfjelldal Kommune'),
(34478, 'https://ror.org/03z6nc566', 'no_lang_code', 1, 'https://ror.org/03z6nc566 Atheno (Norway)'),
(34479, 'https://ror.org/044xa2871', 'no_lang_code', 1, 'https://ror.org/044xa2871 Human Dialog (Norway)'),
(34480, 'https://ror.org/00bxnjh68', 'no_lang_code', 1, 'https://ror.org/00bxnjh68 Hunton Fiber (Norway)'),
(34481, 'https://ror.org/05dtsch22', 'no_lang_code', 1, 'https://ror.org/05dtsch22 Ispas (Norway)'),
(34482, 'https://ror.org/04dcv0236', 'en', 1, 'https://ror.org/04dcv0236 Norwegian State Housing Bank'),
(34483, 'https://ror.org/03y615034', 'no_lang_code', 1, 'https://ror.org/03y615034 Insurance Process Management (Norway)'),
(34484, 'https://ror.org/0315kxv51', 'no_lang_code', 1, 'https://ror.org/0315kxv51 HV Plast (Norway)'),
(34485, 'https://ror.org/03vaa9790', 'no_lang_code', 1, 'https://ror.org/03vaa9790 ITS (Norway)'),
(34486, 'https://ror.org/04b3dbk68', 'en', 1, 'https://ror.org/04b3dbk68 Institute for Comparative Research in Human Culture'),
(34487, 'https://ror.org/0385e5n50', 'no_lang_code', 1, 'https://ror.org/0385e5n50 Ineos (Norway)'),
(34488, 'https://ror.org/00ag1gh03', 'en', 1, 'https://ror.org/00ag1gh03 WhaleSafari'),
(34489, 'https://ror.org/05mcw8n93', 'en', 1, 'https://ror.org/05mcw8n93 Hedmark County Council'),
(34490, 'https://ror.org/05mw8qs29', 'no_lang_code', 1, 'https://ror.org/05mw8qs29 Hedmark IKT (Norway)'),
(34491, 'https://ror.org/0176ge440', 'no_lang_code', 1, 'https://ror.org/0176ge440 IV Group (Norway)'),
(34492, 'https://ror.org/02sdj1163', 'no_lang_code', 1, 'https://ror.org/02sdj1163 HyBond (Norway)'),
(34493, 'https://ror.org/0547sph41', 'no', 1, 'https://ror.org/0547sph41 Hedmark Kunnskapspark'),
(34494, 'https://ror.org/00pndr306', 'no_lang_code', 1, 'https://ror.org/00pndr306 Hybrid Energy (Norway)'),
(34495, 'https://ror.org/03w5c7758', 'no_lang_code', 1, 'https://ror.org/03w5c7758 Heggset Engineering (Norway)'),
(34496, 'https://ror.org/0239h0795', 'no_lang_code', 1, 'https://ror.org/0239h0795 Interon (Norway)'),
(34497, 'https://ror.org/0038s7b86', 'no_lang_code', 1, 'https://ror.org/0038s7b86 Helland MĆøbler (Norway)'),
(34498, 'https://ror.org/02c1wa369', 'no_lang_code', 1, 'https://ror.org/02c1wa369 Interwell (Norway)'),
(34499, 'https://ror.org/00agykx25', 'no_lang_code', 1, 'https://ror.org/00agykx25 Hydal Aluminium Profiler (Norway)'),
(34500, 'https://ror.org/04ehecb51', 'no_lang_code', 1, 'https://ror.org/04ehecb51 Intrapoint (Norway)'),
(34501, 'https://ror.org/04y0g6r28', 'no_lang_code', 1, 'https://ror.org/04y0g6r28 TechnipFMC (Norway)'),
(34502, 'https://ror.org/02crxt883', 'no_lang_code', 1, 'https://ror.org/02crxt883 Intravision Group (Norway)'),
(34503, 'https://ror.org/05ka2ew29', 'no', 1, 'https://ror.org/05ka2ew29 Helse MĆøre og Romsdal HF'),
(34504, 'https://ror.org/01cydpj49', 'no_lang_code', 1, 'https://ror.org/01cydpj49 InNano (Norway)'),
(34505, 'https://ror.org/04q5jra63', 'no_lang_code', 1, 'https://ror.org/04q5jra63 Inven2 (Norway)'),
(34506, 'https://ror.org/04xmgtd15', 'no_lang_code', 1, 'https://ror.org/04xmgtd15 Invenia (Norway)'),
(34507, 'https://ror.org/03fjs1746', 'no_lang_code', 1, 'https://ror.org/03fjs1746 HerbjĆørn Kolstad (Norway)'),
(34508, 'https://ror.org/0399rn938', 'no_lang_code', 1, 'https://ror.org/0399rn938 Inventas (Norway)'),
(34509, 'https://ror.org/001212e83', 'en', 1, 'https://ror.org/001212e83 Western Norway Regional Health Authority'),
(34510, 'https://ror.org/008x0kw97', 'no_lang_code', 1, 'https://ror.org/008x0kw97 Inventi (Norway)'),
(34511, 'https://ror.org/02yxcv577', 'no_lang_code', 1, 'https://ror.org/02yxcv577 Kom Forlag (Norway)'),
(34512, 'https://ror.org/03gde5b77', 'no_lang_code', 1, 'https://ror.org/03gde5b77 IOR Chemco (Norway)'),
(34513, 'https://ror.org/00k172x46', 'no_lang_code', 1, 'https://ror.org/00k172x46 Innotech Solar (Norway)'),
(34514, 'https://ror.org/02k2nf272', 'no_lang_code', 1, 'https://ror.org/02k2nf272 Innova (Norway)'),
(34515, 'https://ror.org/04jw7he54', 'no', 1, 'https://ror.org/04jw7he54 JƦrmuseet'),
(34516, 'https://ror.org/001dvq796', 'no', 1, 'https://ror.org/001dvq796 Hemne Kommune'),
(34517, 'https://ror.org/05vyesa56', 'no_lang_code', 1, 'https://ror.org/05vyesa56 Kongsberg Automotive (Norway)'),
(34518, 'https://ror.org/03dxa6r53', 'no_lang_code', 1, 'https://ror.org/03dxa6r53 Hemnes Mekaniske Verksted (Norway)'),
(34519, 'https://ror.org/01yq0dc07', 'no_lang_code', 1, 'https://ror.org/01yq0dc07 Innovation Performance (Norway)'),
(34520, 'https://ror.org/01f2vgw59', 'en', 1, 'https://ror.org/01f2vgw59 Norwegian National Rail Administration'),
(34521, 'https://ror.org/03bpgs673', 'no_lang_code', 1, 'https://ror.org/03bpgs673 Linus (Norway)'),
(34522, 'https://ror.org/04zppa787', 'no_lang_code', 1, 'https://ror.org/04zppa787 Jets Vacuum (Norway)'),
(34523, 'https://ror.org/002wqxx21', 'no_lang_code', 1, 'https://ror.org/002wqxx21 Lipidx (Norway)'),
(34524, 'https://ror.org/02pkggd65', 'no_lang_code', 1, 'https://ror.org/02pkggd65 Innoventus SĆør (Norway)'),
(34525, 'https://ror.org/030maey82', 'no_lang_code', 1, 'https://ror.org/030maey82 Heads (Norway)'),
(34526, 'https://ror.org/01x3q7681', 'no_lang_code', 1, 'https://ror.org/01x3q7681 Liquiline (Norway)'),
(34527, 'https://ror.org/0590q1218', 'en', 1, 'https://ror.org/0590q1218 Innovest'),
(34528, 'https://ror.org/04bsr5107', 'no_lang_code', 1, 'https://ror.org/04bsr5107 Helly Hansen (Norway)'),
(34529, 'https://ror.org/014dynf21', 'no_lang_code', 1, 'https://ror.org/014dynf21 InnSep (Norway)'),
(34530, 'https://ror.org/020f80982', 'no_lang_code', 1, 'https://ror.org/020f80982 Lividi (Norway)'),
(34531, 'https://ror.org/05kv62m20', 'no_lang_code', 1, 'https://ror.org/05kv62m20 Memscap (Norway)'),
(34532, 'https://ror.org/018049485', 'no_lang_code', 1, 'https://ror.org/018049485 Enghouse Systems (Norway)'),
(34533, 'https://ror.org/027s4f313', 'no_lang_code', 1, 'https://ror.org/027s4f313 Menon Business Economics (Norway)'),
(34534, 'https://ror.org/00sxf2f02', 'no_lang_code', 1, 'https://ror.org/00sxf2f02 Inovyn Norge (Norway)'),
(34535, 'https://ror.org/04zeekc72', 'no', 1, 'https://ror.org/04zeekc72 LĆødingen kommune'),
(34536, 'https://ror.org/00bg5ds86', 'no_lang_code', 1, 'https://ror.org/00bg5ds86 JointBiomed (Norway)'),
(34537, 'https://ror.org/01vkqwg02', 'no_lang_code', 1, 'https://ror.org/01vkqwg02 InPhase Solutions (Norway)'),
(34538, 'https://ror.org/04pbpmy81', 'no_lang_code', 1, 'https://ror.org/04pbpmy81 Joma International (Norway)'),
(34539, 'https://ror.org/04dacm347', 'no_lang_code', 1, 'https://ror.org/04dacm347 Mentum (Norway)'),
(34540, 'https://ror.org/05ggnc709', 'no_lang_code', 1, 'https://ror.org/05ggnc709 Inpower (Norway)'),
(34541, 'https://ror.org/00fst5z79', 'no', 1, 'https://ror.org/00fst5z79 LofotrƄdet'),
(34542, 'https://ror.org/02qkr4e94', 'no_lang_code', 1, 'https://ror.org/02qkr4e94 Inspirator (Norway)'),
(34543, 'https://ror.org/04p8aem44', 'no_lang_code', 1, 'https://ror.org/04p8aem44 Logiq (Norway)'),
(34544, 'https://ror.org/0589hep89', 'en', 1, 'https://ror.org/0589hep89 Norwegian Centre for Space-related Education'),
(34545, 'https://ror.org/04gc45324', 'no_lang_code', 1, 'https://ror.org/04gc45324 Jool Capital Partner (Norway)'),
(34546, 'https://ror.org/042eq7k73', 'no_lang_code', 1, 'https://ror.org/042eq7k73 Semcon (Norway)'),
(34547, 'https://ror.org/04z6y5271', 'no_lang_code', 1, 'https://ror.org/04z6y5271 Mepex Consult (Norway)'),
(34548, 'https://ror.org/01rwa6k95', 'no_lang_code', 1, 'https://ror.org/01rwa6k95 Kongsberg Innovasjon (Norway)'),
(34549, 'https://ror.org/042epp307', 'no_lang_code', 1, 'https://ror.org/042epp307 JĆøtul (Norway)'),
(34550, 'https://ror.org/02rjd3g51', 'no_lang_code', 1, 'https://ror.org/02rjd3g51 Jotun (Norway)'),
(34551, 'https://ror.org/02az81309', 'no_lang_code', 1, 'https://ror.org/02az81309 Konjekt (Norway)'),
(34552, 'https://ror.org/00n12r929', 'no_lang_code', 1, 'https://ror.org/00n12r929 MESH (Norway)'),
(34553, 'https://ror.org/00vbqcv97', 'no', 1, 'https://ror.org/00vbqcv97 Narvik Sykehus'),
(34554, 'https://ror.org/01k8p3j71', 'no_lang_code', 1, 'https://ror.org/01k8p3j71 Lattix (Norway)'),
(34555, 'https://ror.org/002dg3j61', 'no', 1, 'https://ror.org/002dg3j61 NHO Logistikk og Transport'),
(34556, 'https://ror.org/01kpx5a10', 'no_lang_code', 1, 'https://ror.org/01kpx5a10 Mestergruppen (Norway)'),
(34557, 'https://ror.org/00nqqgg17', 'en', 1, 'https://ror.org/00nqqgg17 National Security Authority'),
(34558, 'https://ror.org/05de59334', 'en', 1, 'https://ror.org/05de59334 Kristiansand Municipality'),
(34559, 'https://ror.org/00t3epc32', 'no_lang_code', 1, 'https://ror.org/00t3epc32 Kruse Smith (Norway)'),
(34560, 'https://ror.org/05b5whm83', 'en', 1, 'https://ror.org/05b5whm83 Norwegian Agency for Quality Assurance in Education'),
(34561, 'https://ror.org/03m6mr356', 'no_lang_code', 1, 'https://ror.org/03m6mr356 Metafocus (Norway)'),
(34562, 'https://ror.org/02qqapf71', 'no_lang_code', 1, 'https://ror.org/02qqapf71 National Oilwell Varco (Norway)'),
(34563, 'https://ror.org/044qsan02', 'no_lang_code', 1, 'https://ror.org/044qsan02 Lumex (Norway)'),
(34564, 'https://ror.org/037sc9d45', 'en', 1, 'https://ror.org/037sc9d45 LillestrĆøm Centre of Expertise'),
(34565, 'https://ror.org/01yr8vh25', 'no_lang_code', 1, 'https://ror.org/01yr8vh25 K.A. Rasmussen (Norway)'),
(34566, 'https://ror.org/00te78715', 'no_lang_code', 1, 'https://ror.org/00te78715 Metallco (Norway)'),
(34567, 'https://ror.org/02ghdr016', 'no', 1, 'https://ror.org/02ghdr016 Nasjonalmuseet National Museum of Art, Architecture and Design'),
(34568, 'https://ror.org/023q7sf47', 'no_lang_code', 1, 'https://ror.org/023q7sf47 BodĆø Science Park (Norway)'),
(34569, 'https://ror.org/00z12fn95', 'no', 1, 'https://ror.org/00z12fn95 Lundes Gartneri'),
(34570, 'https://ror.org/03dbjrt28', 'no_lang_code', 1, 'https://ror.org/03dbjrt28 Kverneland Aqua (Norway)'),
(34571, 'https://ror.org/04fd1r707', 'no_lang_code', 1, 'https://ror.org/04fd1r707 Kverneland Group (Norway)'),
(34572, 'https://ror.org/018ay6c72', 'no_lang_code', 1, 'https://ror.org/018ay6c72 Beisfjord Sementvarefabrikk (Norway)'),
(34573, 'https://ror.org/04v8gpn54', 'no', 1, 'https://ror.org/04v8gpn54 Kvinner i Skogbruket'),
(34574, 'https://ror.org/057919b11', 'no_lang_code', 1, 'https://ror.org/057919b11 K & K Designs (Norway)'),
(34575, 'https://ror.org/028t3qn68', 'no_lang_code', 1, 'https://ror.org/028t3qn68 Meventus (Norway)'),
(34576, 'https://ror.org/05baenv82', 'no_lang_code', 1, 'https://ror.org/05baenv82 Luxo (Norway)'),
(34577, 'https://ror.org/0328dqn15', 'en', 1, 'https://ror.org/0328dqn15 Norwegian Coastal Administration'),
(34578, 'https://ror.org/01zpfhn04', 'no_lang_code', 1, 'https://ror.org/01zpfhn04 Nattopharma (Norway)'),
(34579, 'https://ror.org/031nbsp88', 'no_lang_code', 1, 'https://ror.org/031nbsp88 MHWirth (Norway)'),
(34580, 'https://ror.org/04kzyq982', 'no_lang_code', 1, 'https://ror.org/04kzyq982 LABO Mixed Realities (Norway)'),
(34581, 'https://ror.org/02z6mh533', 'no_lang_code', 1, 'https://ror.org/02z6mh533 Kahoot (Norway)'),
(34582, 'https://ror.org/01kyk7057', 'no_lang_code', 1, 'https://ror.org/01kyk7057 Kaleidoskopet (Norway)'),
(34583, 'https://ror.org/00kpyx284', 'no_lang_code', 1, 'https://ror.org/00kpyx284 Naturbilder (Norway)'),
(34584, 'https://ror.org/01gbtqs26', 'no_lang_code', 1, 'https://ror.org/01gbtqs26 MicroA (Norway)'),
(34585, 'https://ror.org/03bh7xn56', 'en', 1, 'https://ror.org/03bh7xn56 Laerdal Global Health'),
(34586, 'https://ror.org/00xxveb47', 'no_lang_code', 1, 'https://ror.org/00xxveb47 Kalkulo (Norway)'),
(34587, 'https://ror.org/04tfeav65', 'no_lang_code', 1, 'https://ror.org/04tfeav65 Nature Oil & Gas (Norway)'),
(34588, 'https://ror.org/02e6g6a88', 'no_lang_code', 1, 'https://ror.org/02e6g6a88 Laerdal (Norway)'),
(34589, 'https://ror.org/02raeh877', 'no_lang_code', 1, 'https://ror.org/02raeh877 Microbeads (Norway)'),
(34590, 'https://ror.org/00qqspx12', 'no_lang_code', 1, 'https://ror.org/00qqspx12 Kappa Bioscience (Norway)'),
(34591, 'https://ror.org/0496qn750', 'no', 1, 'https://ror.org/0496qn750 Lyskultur'),
(34592, 'https://ror.org/016ftvg65', 'no_lang_code', 1, 'https://ror.org/016ftvg65 Lytix Biopharma (Norway)'),
(34593, 'https://ror.org/036evcw04', 'no_lang_code', 1, 'https://ror.org/036evcw04 M3 Helse'),
(34594, 'https://ror.org/050c4yn95', 'en', 1, 'https://ror.org/050c4yn95 County Governor of SĆør-TrĆøndelag'),
(34595, 'https://ror.org/01x99wc57', 'no_lang_code', 1, 'https://ror.org/01x99wc57 MicroTech Innovation (Norway)'),
(34596, 'https://ror.org/00bfqf394', 'no', 1, 'https://ror.org/00bfqf394 Karasjok Kommune'),
(34597, 'https://ror.org/05kwv6m71', 'no_lang_code', 1, 'https://ror.org/05kwv6m71 Macgregor Pusnes (Norway)'),
(34598, 'https://ror.org/05tbw7g42', 'no_lang_code', 1, 'https://ror.org/05tbw7g42 Karde (Norway)'),
(34599, 'https://ror.org/01fnbm952', 'no_lang_code', 1, 'https://ror.org/01fnbm952 Madshus (Norway)'),
(34600, 'https://ror.org/0021b8g40', 'no_lang_code', 1, 'https://ror.org/0021b8g40 Naviaq (Norway)'),
(34601, 'https://ror.org/036fhj216', 'no', 1, 'https://ror.org/036fhj216 MƦre Landbruksskole'),
(34602, 'https://ror.org/00qjyjx92', 'no_lang_code', 1, 'https://ror.org/00qjyjx92 Langlee Wave Power (Norway)'),
(34603, 'https://ror.org/0422n9778', 'no_lang_code', 1, 'https://ror.org/0422n9778 Magtech (Norway)'),
(34604, 'https://ror.org/0108yh543', 'no_lang_code', 1, 'https://ror.org/0108yh543 Making View (Norway)'),
(34605, 'https://ror.org/02729dt24', 'no_lang_code', 1, 'https://ror.org/02729dt24 NavSys (Norway)'),
(34606, 'https://ror.org/05sjrmw93', 'no_lang_code', 1, 'https://ror.org/05sjrmw93 Kebony (Norway)'),
(34607, 'https://ror.org/031x8mb64', 'no_lang_code', 1, 'https://ror.org/031x8mb64 MƄltidets (Norway)'),
(34608, 'https://ror.org/04d1j9a12', 'no_lang_code', 1, 'https://ror.org/04d1j9a12 Lanopro (Norway)'),
(34609, 'https://ror.org/01da73p86', 'no_lang_code', 1, 'https://ror.org/01da73p86 Keep-it Technologies (Norway)'),
(34610, 'https://ror.org/04yqgnw12', 'no_lang_code', 1, 'https://ror.org/04yqgnw12 Miko Marine (Norway)'),
(34611, 'https://ror.org/00313pn56', 'en', 1, 'https://ror.org/00313pn56 Other Side Studio'),
(34612, 'https://ror.org/01gz2ss49', 'no_lang_code', 1, 'https://ror.org/01gz2ss49 Kelda Drilling Controls (Norway)'),
(34613, 'https://ror.org/00xxfcb49', 'no_lang_code', 1, 'https://ror.org/00xxfcb49 Navtor (Norway)'),
(34614, 'https://ror.org/051p4t773', 'en', 1, 'https://ror.org/051p4t773 Institute for Church, Religion, and Worldview Research'),
(34615, 'https://ror.org/03ejke973', 'no_lang_code', 1, 'https://ror.org/03ejke973 NCC (Norway)');
INSERT INTO `rors` VALUES
(34616, 'https://ror.org/058ran651', 'no_lang_code', 1, 'https://ror.org/058ran651 King Oscar (Norway)'),
(34617, 'https://ror.org/042s2r166', 'no_lang_code', 1, 'https://ror.org/042s2r166 Marine Constructions (Norway)'),
(34618, 'https://ror.org/05cn1e898', 'no_lang_code', 1, 'https://ror.org/05cn1e898 MiljĆøkom (Norway)'),
(34619, 'https://ror.org/037e53n70', 'no_lang_code', 1, 'https://ror.org/037e53n70 Marine design (Norway)'),
(34620, 'https://ror.org/01r3x0471', 'no_lang_code', 1, 'https://ror.org/01r3x0471 Nebb (Norway)'),
(34621, 'https://ror.org/0316g5c30', 'no_lang_code', 1, 'https://ror.org/0316g5c30 Kings Bay (Norway)'),
(34622, 'https://ror.org/01f4ph383', 'no_lang_code', 1, 'https://ror.org/01f4ph383 MiljĆø-Teknologi (Norway)'),
(34623, 'https://ror.org/03ykazq11', 'no_lang_code', 1, 'https://ror.org/03ykazq11 Nel (Norway)'),
(34624, 'https://ror.org/05sxctv21', 'no_lang_code', 1, 'https://ror.org/05sxctv21 Mills (Norway)'),
(34625, 'https://ror.org/05ng62226', 'no_lang_code', 1, 'https://ror.org/05ng62226 Kitemill (Norway)'),
(34626, 'https://ror.org/019dzwc76', 'no', 1, 'https://ror.org/019dzwc76 Lebesby kommune'),
(34627, 'https://ror.org/01d43dx11', 'no_lang_code', 1, 'https://ror.org/01d43dx11 Lectinect (Norway)'),
(34628, 'https://ror.org/04v86g664', 'no_lang_code', 1, 'https://ror.org/04v86g664 MiniHydro (Norway)'),
(34629, 'https://ror.org/055fzjh61', 'no_lang_code', 1, 'https://ror.org/055fzjh61 Neorad (Norway)'),
(34630, 'https://ror.org/02e3ta377', 'no_lang_code', 1, 'https://ror.org/02e3ta377 Kjeldstad (Norway)'),
(34631, 'https://ror.org/04c0mxs15', 'no_lang_code', 1, 'https://ror.org/04c0mxs15 Leif HĆøegh (Norway)'),
(34632, 'https://ror.org/01vt9fn98', 'en', 1, 'https://ror.org/01vt9fn98 Maritime CleanTech West'),
(34633, 'https://ror.org/042vs4796', 'no_lang_code', 1, 'https://ror.org/042vs4796 NergƄrd (Norway)'),
(34634, 'https://ror.org/000e19x32', 'no_lang_code', 1, 'https://ror.org/000e19x32 Kjeller Innovasjon (Norway) Kjeller Innovation'),
(34635, 'https://ror.org/006mjdb74', 'no_lang_code', 1, 'https://ror.org/006mjdb74 Miriam (Norway)'),
(34636, 'https://ror.org/00hpvb303', 'no_lang_code', 1, 'https://ror.org/00hpvb303 Leiv Eiriksson Nyskaping (Norway)'),
(34637, 'https://ror.org/04v3sbr52', 'no_lang_code', 1, 'https://ror.org/04v3sbr52 Kjeller Vindteknikk (Norway)'),
(34638, 'https://ror.org/04kt5nj50', 'no_lang_code', 1, 'https://ror.org/04kt5nj50 Maritime MĆøbler (Norway)'),
(34639, 'https://ror.org/02mfvb853', 'no_lang_code', 1, 'https://ror.org/02mfvb853 Miros (Norway)'),
(34640, 'https://ror.org/05hqmfz74', 'no', 1, 'https://ror.org/05hqmfz74 Nes Kommune'),
(34641, 'https://ror.org/01bfb0f53', 'no_lang_code', 1, 'https://ror.org/01bfb0f53 Maritime Robotics (Norway)'),
(34642, 'https://ror.org/04wyvw190', 'no', 1, 'https://ror.org/04wyvw190 Nesna Kommune'),
(34643, 'https://ror.org/05sa5v987', 'no', 1, 'https://ror.org/05sa5v987 Lenvik kommune'),
(34644, 'https://ror.org/050phsp73', 'no', 1, 'https://ror.org/050phsp73 MarkedhĆøyskolen'),
(34645, 'https://ror.org/016thfw32', 'no_lang_code', 1, 'https://ror.org/016thfw32 Kjemi (Norway)'),
(34646, 'https://ror.org/05d4adb22', 'no_lang_code', 1, 'https://ror.org/05d4adb22 Mustad Autoline (Norway)'),
(34647, 'https://ror.org/02te9ba85', 'no_lang_code', 1, 'https://ror.org/02te9ba85 Nettverk Norge (Norway)'),
(34648, 'https://ror.org/03cnzfb68', 'no_lang_code', 1, 'https://ror.org/03cnzfb68 LerĆøy (Norway)'),
(34649, 'https://ror.org/02wsxm934', 'no_lang_code', 1, 'https://ror.org/02wsxm934 Lerum (Norway)'),
(34650, 'https://ror.org/024a7ry57', 'en', 1, 'https://ror.org/024a7ry57 KjeĆøy Research & Education Center Trading Post and Fishing Village'),
(34651, 'https://ror.org/02ans6w40', 'en', 1, 'https://ror.org/02ans6w40 Network Learning Lab'),
(34652, 'https://ror.org/02rxw4j53', 'no_lang_code', 1, 'https://ror.org/02rxw4j53 Light Emergency Stretcher Systems (Norway)'),
(34653, 'https://ror.org/02kxhwm03', 'no_lang_code', 1, 'https://ror.org/02kxhwm03 MjĆøsen Skog (Norway)'),
(34654, 'https://ror.org/04agghx84', 'en', 1, 'https://ror.org/04agghx84 MarLife (Norway)'),
(34655, 'https://ror.org/05bvm3t13', 'no_lang_code', 1, 'https://ror.org/05bvm3t13 Marna Motor (Norway)'),
(34656, 'https://ror.org/0109vey20', 'no_lang_code', 1, 'https://ror.org/0109vey20 Marlo (Norway)'),
(34657, 'https://ror.org/03hsyk684', 'no_lang_code', 1, 'https://ror.org/03hsyk684 Nextera (Norway)'),
(34658, 'https://ror.org/055081974', 'no_lang_code', 1, 'https://ror.org/055081974 Lid Invest (Norway)'),
(34659, 'https://ror.org/05ftebz76', 'no_lang_code', 1, 'https://ror.org/05ftebz76 Masiv Bygg (Norway)'),
(34660, 'https://ror.org/0379wsf91', 'no_lang_code', 1, 'https://ror.org/0379wsf91 Nextsys (Norway)'),
(34661, 'https://ror.org/016mx6p04', 'no_lang_code', 1, 'https://ror.org/016mx6p04 Liegruppen (Norway)'),
(34662, 'https://ror.org/03cqkrn62', 'no_lang_code', 1, 'https://ror.org/03cqkrn62 Massefabrikken'),
(34663, 'https://ror.org/00vby1197', 'no_lang_code', 1, 'https://ror.org/00vby1197 MMC Green Technology (Norway)'),
(34664, 'https://ror.org/00zhnhw93', 'no_lang_code', 1, 'https://ror.org/00zhnhw93 Matpartner (Norway)'),
(34665, 'https://ror.org/0535s4372', 'no_lang_code', 1, 'https://ror.org/0535s4372 Mobilarm (Norway)'),
(34666, 'https://ror.org/05s3m5a67', 'no_lang_code', 1, 'https://ror.org/05s3m5a67 Max Manus (Norway)'),
(34667, 'https://ror.org/05ea91r51', 'no', 1, 'https://ror.org/05ea91r51 Norsk Gartnerforbund'),
(34668, 'https://ror.org/02h59q288', 'en', 1, 'https://ror.org/02h59q288 Lillehammer Municipality'),
(34669, 'https://ror.org/03ss19281', 'no', 1, 'https://ror.org/03ss19281 Klepp Kommune'),
(34670, 'https://ror.org/00d64xh03', 'no_lang_code', 1, 'https://ror.org/00d64xh03 Maxeta (Norway)'),
(34671, 'https://ror.org/00fs6w428', 'no_lang_code', 1, 'https://ror.org/00fs6w428 MazeMap (Norway)'),
(34672, 'https://ror.org/01jww0j97', 'no_lang_code', 1, 'https://ror.org/01jww0j97 Kleven Maritime (Norway)'),
(34673, 'https://ror.org/01mccm505', 'no_lang_code', 1, 'https://ror.org/01mccm505 Meawallet (Norway)'),
(34674, 'https://ror.org/012ezqr21', 'no_lang_code', 1, 'https://ror.org/012ezqr21 Norsk Geografisk Selskap'),
(34675, 'https://ror.org/034qf1506', 'no_lang_code', 1, 'https://ror.org/034qf1506 Lindum (Norway)'),
(34676, 'https://ror.org/0065vqr08', 'no_lang_code', 1, 'https://ror.org/0065vqr08 Mobiletech (Norway)'),
(34677, 'https://ror.org/058jj2467', 'no_lang_code', 1, 'https://ror.org/058jj2467 Mechanix Film (Norway)'),
(34678, 'https://ror.org/040dak484', 'no_lang_code', 1, 'https://ror.org/040dak484 Mecmar (Norway)'),
(34679, 'https://ror.org/01rwnqg85', 'no_lang_code', 1, 'https://ror.org/01rwnqg85 Mecsense (Norway)'),
(34680, 'https://ror.org/05vbhz423', 'no_lang_code', 1, 'https://ror.org/05vbhz423 Mectro (Norway)'),
(34681, 'https://ror.org/04kbwjr52', 'no_lang_code', 1, 'https://ror.org/04kbwjr52 Kleive Mekaniske and Industriservice (Norway)'),
(34682, 'https://ror.org/021h8nm63', 'no_lang_code', 1, 'https://ror.org/021h8nm63 Knowit (Norway)'),
(34683, 'https://ror.org/01cb7ff94', 'no_lang_code', 1, 'https://ror.org/01cb7ff94 Nordic Aquafarms (Norway)'),
(34684, 'https://ror.org/048cn7s66', 'en', 1, 'https://ror.org/048cn7s66 MedCoast Scandinavia'),
(34685, 'https://ror.org/03kxws612', 'no_lang_code', 1, 'https://ror.org/03kxws612 Medema (Norway)'),
(34686, 'https://ror.org/05ftva293', 'no_lang_code', 1, 'https://ror.org/05ftva293 Moelven (Norway)'),
(34687, 'https://ror.org/054r3a876', 'no_lang_code', 1, 'https://ror.org/054r3a876 Nordic Mining (Norway)'),
(34688, 'https://ror.org/05mbvyj38', 'no_lang_code', 1, 'https://ror.org/05mbvyj38 Media Lunde Tollefsen (Norway)'),
(34689, 'https://ror.org/009rsfm47', 'no_lang_code', 1, 'https://ror.org/009rsfm47 MedieoperatĆørene (Norway)'),
(34690, 'https://ror.org/0574vhp63', 'no_lang_code', 1, 'https://ror.org/0574vhp63 Nordic Quantum Computing Group (Norway)'),
(34691, 'https://ror.org/01n70wn69', 'no_lang_code', 1, 'https://ror.org/01n70wn69 Knutsen OAS Shipping (Norway)'),
(34692, 'https://ror.org/00xrcsz24', 'no', 1, 'https://ror.org/00xrcsz24 Hvorfor det'),
(34693, 'https://ror.org/00kmb9t52', 'no', 1, 'https://ror.org/00kmb9t52 Molde kommune'),
(34694, 'https://ror.org/04cp2as26', 'en', 1, 'https://ror.org/04cp2as26 Learn By Motion'),
(34695, 'https://ror.org/03x0ke992', 'no_lang_code', 1, 'https://ror.org/03x0ke992 Thermo Fisher Scientific (Norway)'),
(34696, 'https://ror.org/05rkb4k51', 'no_lang_code', 1, 'https://ror.org/05rkb4k51 Molde Kunnskapspark (Norway)'),
(34697, 'https://ror.org/05kdxv376', 'no_lang_code', 1, 'https://ror.org/05kdxv376 Nordic Seal (Norway)'),
(34698, 'https://ror.org/003ednf28', 'no_lang_code', 1, 'https://ror.org/003ednf28 Norsk Hummer (Norway)'),
(34699, 'https://ror.org/05akpxs80', 'no_lang_code', 1, 'https://ror.org/05akpxs80 Nordic Semiconductor (Norway)'),
(34700, 'https://ror.org/01a6v1434', 'no_lang_code', 1, 'https://ror.org/01a6v1434 Moltres (Norway)'),
(34701, 'https://ror.org/027n0t368', 'no_lang_code', 1, 'https://ror.org/027n0t368 Nordic wildfish (Norway)'),
(34702, 'https://ror.org/04evrma49', 'no_lang_code', 1, 'https://ror.org/04evrma49 Nicarnica Aviation (Norway)'),
(34703, 'https://ror.org/009wzft49', 'en', 1, 'https://ror.org/009wzft49 Norwegian Hydrogen Forum'),
(34704, 'https://ror.org/00fj2g686', 'no_lang_code', 1, 'https://ror.org/00fj2g686 Kontali (Norway)'),
(34705, 'https://ror.org/00rj40e45', 'en', 1, 'https://ror.org/00rj40e45 North Cape Municipality'),
(34706, 'https://ror.org/0418vfj03', 'no', 1, 'https://ror.org/0418vfj03 Norges IngeniĆør- og Teknologorganisasjon'),
(34707, 'https://ror.org/032tqk105', 'no_lang_code', 1, 'https://ror.org/032tqk105 Nordlaks (Norway)'),
(34708, 'https://ror.org/04qrzjd35', 'en', 1, 'https://ror.org/04qrzjd35 Nordland County Council'),
(34709, 'https://ror.org/04b4kkz92', 'no_lang_code', 1, 'https://ror.org/04b4kkz92 MedNose (Norway)'),
(34710, 'https://ror.org/034ga4e26', 'no_lang_code', 1, 'https://ror.org/034ga4e26 Moods of Norway (Norway)'),
(34711, 'https://ror.org/04z80h498', 'no', 1, 'https://ror.org/04z80h498 Mektron'),
(34712, 'https://ror.org/014frm951', 'no_lang_code', 1, 'https://ror.org/014frm951 MĆøre Maritime (Norway)'),
(34713, 'https://ror.org/0198mwj18', 'en', 1, 'https://ror.org/0198mwj18 North Norwegian Art Center'),
(34714, 'https://ror.org/027hr5e81', 'no_lang_code', 1, 'https://ror.org/027hr5e81 Melbu Systems (Norway)'),
(34715, 'https://ror.org/01wvsk422', 'no', 1, 'https://ror.org/01wvsk422 Mellomrom Arkitekturpsykologi'),
(34716, 'https://ror.org/05vb46y86', 'no_lang_code', 1, 'https://ror.org/05vb46y86 MemfoACT (Norway)'),
(34717, 'https://ror.org/059zrhd58', 'no_lang_code', 1, 'https://ror.org/059zrhd58 Norsk Juletre (Norway)'),
(34718, 'https://ror.org/05hyzh026', 'no_lang_code', 1, 'https://ror.org/05hyzh026 Memor Software (Norway)'),
(34719, 'https://ror.org/01a80cj23', 'no_lang_code', 1, 'https://ror.org/01a80cj23 Novartis (Netherlands)'),
(34720, 'https://ror.org/02149rc02', 'en', 1, 'https://ror.org/02149rc02 Vilniaus Å v. Juozapo kunigų seminarija Vilnius St. Joseph Seminary Š”ŠµŠ¼ŠøŠ½Š°Ń€ŠøŃ Š”Š²ŃŃ‚Š¾Š³Š¾ Š˜Š¾ŃŠøŃ„Š°'),
(34721, 'https://ror.org/00ex4he60', 'en', 1, 'https://ror.org/00ex4he60 Virtual High School'),
(34722, 'https://ror.org/049pr6f34', 'en', 1, 'https://ror.org/049pr6f34 Canadian Society of Allergy and Clinical Immunology'),
(34723, 'https://ror.org/03ynjfm77', 'en', 1, 'https://ror.org/03ynjfm77 King & Spalding'),
(34724, 'https://ror.org/02qpb0e30', 'en', 1, 'https://ror.org/02qpb0e30 Kaunas County Public Library'),
(34725, 'https://ror.org/021f7p178', 'en', 1, 'https://ror.org/021f7p178 Lib4RI - Library for the Research Institutes within the ETH Domain: Eawag, Empa, PSI & WSL'),
(34726, 'https://ror.org/01249dt22', 'en', 1, 'https://ror.org/01249dt22 Aqua (France)'),
(34727, 'https://ror.org/00y0tkz25', 'en', 1, 'https://ror.org/00y0tkz25 Australian Law Reform Commission'),
(34728, 'https://ror.org/02ax94a12', 'en', 1, 'https://ror.org/02ax94a12 Addis Continental Institute of Public Health'),
(34729, 'https://ror.org/00nr0z368', 'no_lang_code', 1, 'https://ror.org/00nr0z368 Shaklee (United States)'),
(34730, 'https://ror.org/04nybwt17', 'en', 1, 'https://ror.org/04nybwt17 Therapeutic Guidelines'),
(34731, 'https://ror.org/021jq8741', 'en', 1, 'https://ror.org/021jq8741 Alliance for Health Policy and Systems Research'),
(34732, 'https://ror.org/01rz48a94', 'no_lang_code', 1, 'https://ror.org/01rz48a94 Wilson Sonsini Goodrich & Rosati'),
(34733, 'https://ror.org/0093x0153', 'en', 1, 'https://ror.org/0093x0153 American Association of Pharmaceutical Scientists'),
(34734, 'https://ror.org/01fktj061', 'en', 1, 'https://ror.org/01fktj061 Florida Department of Elder Affairs'),
(34735, 'https://ror.org/05w9mt194', 'en', 1, 'https://ror.org/05w9mt194 Department for Employment and Learning'),
(34736, 'https://ror.org/02wjs8c89', 'en', 1, 'https://ror.org/02wjs8c89 Asia Oceania Geosciences Society'),
(34737, 'https://ror.org/03z2ts232', 'en', 1, 'https://ror.org/03z2ts232 Swedish Film Institute'),
(34738, 'https://ror.org/030vz9r78', 'en', 1, 'https://ror.org/030vz9r78 Ashfield Healthcare'),
(34739, 'https://ror.org/03cdz5d08', 'en', 1, 'https://ror.org/03cdz5d08 Quality Enhancement Research Initiative'),
(34740, 'https://ror.org/03e9kb581', 'no_lang_code', 1, 'https://ror.org/03e9kb581 Ferring Pharmaceuticals (United Kingdom)'),
(34741, 'https://ror.org/02vds7q94', 'en', 1, 'https://ror.org/02vds7q94 St. Clair College'),
(34742, 'https://ror.org/010ajwv03', 'no_lang_code', 1, 'https://ror.org/010ajwv03 Eli Lilly (Singapore)'),
(34743, 'https://ror.org/00dbebs66', 'pt', 1, 'https://ror.org/00dbebs66 Sociedade Brasileira de Diabetes'),
(34744, 'https://ror.org/00kx97841', 'en', 1, 'https://ror.org/00kx97841 Michener Institute'),
(34745, 'https://ror.org/00aphdz18', 'no_lang_code', 1, 'https://ror.org/00aphdz18 Morgan Stanley (United States)'),
(34746, 'https://ror.org/02czw4g92', 'en', 1, 'https://ror.org/02czw4g92 New Leaf Venture Partners'),
(34747, 'https://ror.org/04n305y15', 'en', 1, 'https://ror.org/04n305y15 British Veterinary Association'),
(34748, '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.'),
(34749, 'https://ror.org/02kcgy861', 'en', 1, 'https://ror.org/02kcgy861 Peninsula HealthCare Connection'),
(34750, 'https://ror.org/05amp0d44', 'no_lang_code', 1, 'https://ror.org/05amp0d44 Novamed (Italy)'),
(34751, 'https://ror.org/02xv7km65', 'en', 1, 'https://ror.org/02xv7km65 Japanese Society of Physiological Anthropology'),
(34752, 'https://ror.org/025g6sc95', 'en', 1, 'https://ror.org/025g6sc95 President''s Emergency Plan for AIDS Relief'),
(34753, 'https://ror.org/04fgxrt38', 'en', 1, 'https://ror.org/04fgxrt38 Kirsch Foundation'),
(34754, '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'),
(34755, 'https://ror.org/03fh45z28', 'en', 1, 'https://ror.org/03fh45z28 Charles Stewart Mott Foundation'),
(34756, 'https://ror.org/03d3kf570', 'en', 1, 'https://ror.org/03d3kf570 Orphanet'),
(34757, 'https://ror.org/010h5fs55', 'en', 1, 'https://ror.org/010h5fs55 PIH Health'),
(34758, 'https://ror.org/00gdm3q19', 'en', 1, 'https://ror.org/00gdm3q19 Brazilian Dental Materials Group Grupo Brasileiro de Materiais DentƔrios'),
(34759, 'https://ror.org/050f2kd12', 'en', 1, 'https://ror.org/050f2kd12 Lindbergh Foundation'),
(34760, 'https://ror.org/01hpg6340', 'en', 1, 'https://ror.org/01hpg6340 Grönemeyer Institut für MikroTherapie Grönemeyer Institute for MicroTherapy'),
(34761, 'https://ror.org/01fp6hr92', 'en', 1, 'https://ror.org/01fp6hr92 Japanese Society of Tropical Medicine'),
(34762, 'https://ror.org/01fen8d67', 'en', 1, 'https://ror.org/01fen8d67 Association of Schools of Public Health in the European Region'),
(34763, 'https://ror.org/0036pxz38', 'en', 1, 'https://ror.org/0036pxz38 Korean Association of Maxillofacial Plastic and Reconstructive Surgery'),
(34764, 'https://ror.org/02c4ez492', 'no_lang_code', 1, 'https://ror.org/02c4ez492 Hershey (United States)'),
(34765, 'https://ror.org/03ted7148', 'en', 1, 'https://ror.org/03ted7148 Korean Society for Quality Management'),
(34766, 'https://ror.org/009nmab38', 'en', 1, 'https://ror.org/009nmab38 World Allergy Organization'),
(34767, 'https://ror.org/05whhvm83', 'en', 1, 'https://ror.org/05whhvm83 International Consortium on Geo-disaster Reduction'),
(34768, 'https://ror.org/00rezgj18', 'en', 1, 'https://ror.org/00rezgj18 Winfocus'),
(34769, 'https://ror.org/03fd44j44', 'no_lang_code', 1, 'https://ror.org/03fd44j44 Beike Biotechnology (China) åŒ—ē§‘ē”Ÿē‰©ē§‘ęŠ€'),
(34770, 'https://ror.org/04qfjb814', 'en', 1, 'https://ror.org/04qfjb814 International Hereditary Cancer Center'),
(34771, 'https://ror.org/0481e3r23', 'en', 1, 'https://ror.org/0481e3r23 Society for Immunotherapy of Cancer'),
(34772, 'https://ror.org/057k8tk89', 'es', 1, 'https://ror.org/057k8tk89 Sociedad de BiologĆ­a de Chile'),
(34773, 'https://ror.org/04h3xje09', 'en', 1, 'https://ror.org/04h3xje09 College of Podiatry'),
(34774, 'https://ror.org/049k8ev11', 'en', 1, 'https://ror.org/049k8ev11 Society of Open Innovation Technology Market & Complexity'),
(34775, 'https://ror.org/04ndjyr10', 'en', 1, 'https://ror.org/04ndjyr10 National Science Library äø­å›½ē§‘å­¦é™¢ę–‡ēŒ®ęƒ…ęŠ„äø­åæƒ'),
(34776, 'https://ror.org/02myr0q32', 'en', 1, 'https://ror.org/02myr0q32 EUR-Oceans Consortium'),
(34777, 'https://ror.org/01480s295', 'no_lang_code', 1, 'https://ror.org/01480s295 Pearson (United Kingdom)'),
(34778, 'https://ror.org/038arc322', 'en', 1, 'https://ror.org/038arc322 Asia-Pacific Society for Computers in Education'),
(34779, 'https://ror.org/01mfkkh63', 'no_lang_code', 1, 'https://ror.org/01mfkkh63 Guangzhou Chemistry (China) äø­ē§‘é™¢å¹æå·žåŒ–å­¦ęœ‰é™å…¬åø'),
(34780, 'https://ror.org/01hh9ag93', 'en', 1, 'https://ror.org/01hh9ag93 Institute of Subtropical Agriculture äø­å›½ē§‘å­¦é™¢äŗšēƒ­åø¦å†œäøšē”Ÿę€ē ”ē©¶ę‰€'),
(34781, 'https://ror.org/0057mbc31', 'en', 1, 'https://ror.org/0057mbc31 Windsor Regional Hospital'),
(34782, 'https://ror.org/03zn6c508', 'en', 1, 'https://ror.org/03zn6c508 Institute of Tibetan Plateau Research äø­å›½ē§‘å­¦é™¢é’č—é«˜åŽŸē ”ē©¶ę‰€'),
(34783, 'https://ror.org/00qae8971', 'en', 1, 'https://ror.org/00qae8971 Institute for History of Natural Sciences äø­å›½ē§‘å­¦é™¢č‡Ŗē„¶ē§‘å­¦å²ē ”ē©¶ę‰€'),
(34784, 'https://ror.org/001bbwj30', 'it', 1, 'https://ror.org/001bbwj30 Azienda Sanitaria UnitĆ  Locale di Reggio Emilia'),
(34785, 'https://ror.org/0000pmw59', 'en', 1, 'https://ror.org/0000pmw59 Institute of Vertebrate Paleontology and Paleoanthropology äø­å›½ē§‘å­¦é™¢å¤č„Šę¤ŽåŠØē‰©äøŽå¤äŗŗē±»ē ”ē©¶ę‰€'),
(34786, 'https://ror.org/033js6g46', 'en', 1, 'https://ror.org/033js6g46 Institute of Electrical Engineering 中国科学院电巄研究所'),
(34787, 'https://ror.org/01z143507', 'en', 1, 'https://ror.org/01z143507 Institute of Electronics 中国科学院电子学研究所'),
(34788, 'https://ror.org/031zj0q48', 'en', 1, 'https://ror.org/031zj0q48 Institute of Engineering Thermophysics äø­å›½ē§‘å­¦é™¢å·„ēØ‹ēƒ­ē‰©ē†ē ”ē©¶ę‰€'),
(34789, 'https://ror.org/01pjxkf30', 'en', 1, 'https://ror.org/01pjxkf30 Xinjiang Astronomical Observatory äø­å›½ē§‘å­¦é™¢ę–°ē–†å¤©ę–‡å°'),
(34790, 'https://ror.org/030k21z47', 'en', 1, 'https://ror.org/030k21z47 Beijing Institute of Nanoenergy and Nanosystems äø­å›½ē§‘å­¦é™¢åŒ—äŗ¬ēŗ³ē±³čƒ½ęŗäøŽē³»ē»Ÿē ”ē©¶ę‰€'),
(34791, 'https://ror.org/04sxr1261', 'en', 1, 'https://ror.org/04sxr1261 Nanjing Institute of Astronomical Optics & Technology äø­å›½ē§‘å­¦é™¢å—äŗ¬å¤©ę–‡å…‰å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(34792, 'https://ror.org/02rz58g17', 'en', 1, 'https://ror.org/02rz58g17 Xishuangbanna Tropical Botanical Garden č„æåŒē‰ˆēŗ³ēƒ­åø¦ę¤ē‰©å›­'),
(34793, 'https://ror.org/02f42pw58', 'no_lang_code', 1, 'https://ror.org/02f42pw58 Yunnan Observatories äŗ‘å—å¤©ę–‡å°'),
(34794, 'https://ror.org/02xqp7x96', 'no_lang_code', 1, 'https://ror.org/02xqp7x96 Shenyang Institute of Computing Technology (China) äø­å›½ē§‘å­¦é™¢ę²ˆé˜³č®”ē®—ęŠ€ęœÆē ”ē©¶ę‰€'),
(34795, 'https://ror.org/02eb4t121', 'en', 1, 'https://ror.org/02eb4t121 Purple Mountain Observatory äø­å›½ē§‘å­¦é™¢ē“«é‡‘å±±å¤©ę–‡å°'),
(34796, 'https://ror.org/05h3vcy91', 'en', 1, 'https://ror.org/05h3vcy91 Qingdao Institute of Bioenergy and Bioprocess Technology äø­å›½ē§‘å­¦é™¢é’å²›ē”Ÿē‰©čƒ½ęŗäøŽčæ‡ēØ‹ē ”ē©¶ę‰€'),
(34797, 'https://ror.org/048gskb76', 'no_lang_code', 1, 'https://ror.org/048gskb76 Novamedia (Italy)'),
(34798, 'https://ror.org/00f58mx93', 'en', 1, 'https://ror.org/00f58mx93 Suzhou Institute of Biomedical Engineering and Technology äø­å›½ē§‘å­¦é™¢č‹å·žē”Ÿē‰©åŒ»å­¦å·„ēØ‹ęŠ€ęœÆē ”ē©¶ę‰€'),
(34799, 'https://ror.org/050spgz68', 'en', 1, 'https://ror.org/050spgz68 Institute of Deep-Sea Science and Engineering äø­å›½ē§‘å­¦é™¢ę·±ęµ·ē§‘å­¦äøŽå·„ēØ‹ē ”ē©¶ę‰€'),
(34800, 'https://ror.org/02br7py06', 'en', 1, 'https://ror.org/02br7py06 Shanghai Advanced Research Institute äøŠęµ·é«˜ē­‰ē ”ē©¶é™¢'),
(34801, 'https://ror.org/00cn03n83', 'en', 1, 'https://ror.org/00cn03n83 Technology and Engineering Center for Space Utilization äø­å›½ē§‘å­¦é™¢ē©ŗé—“åŗ”ē”Øå·„ēØ‹äøŽęŠ€ęœÆäø­åæƒ'),
(34802, 'https://ror.org/04acsr153', 'en', 1, 'https://ror.org/04acsr153 Academy of Opto-Electronics 中国科学院光电研究院'),
(34803, 'https://ror.org/058xdps70', 'en', 1, 'https://ror.org/058xdps70 Guangdong Province Science and Technology Library'),
(34804, 'https://ror.org/042pyga86', 'en', 1, 'https://ror.org/042pyga86 Tianjin Institute of Industrial Biotechnology äø­å›½ē§‘å­¦é™¢å¤©ę“„å·„äøšē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(34805, 'https://ror.org/02j0gyf89', 'en', 1, 'https://ror.org/02j0gyf89 Wuhan Botanical Garden äø­å›½ē§‘å­¦é™¢ę­¦ę±‰ę¤ē‰©å›­'),
(34806, 'https://ror.org/030erj688', 'en', 1, 'https://ror.org/030erj688 Oberlin Group'),
(34807, 'https://ror.org/046n0zq43', 'en', 1, 'https://ror.org/046n0zq43 Wuhan Branch of the National Science Library äø­å›½ē§‘å­¦é™¢ę­¦ę±‰ę–‡ēŒ®ęƒ…ęŠ„äø­åæƒ'),
(34808, 'https://ror.org/02ay6xb89', 'en', 1, 'https://ror.org/02ay6xb89 Norwegian Kennel Club'),
(34809, 'https://ror.org/012sdxq48', 'en', 1, 'https://ror.org/012sdxq48 Arendal Municipality'),
(34810, 'https://ror.org/02w4kss89', 'no_lang_code', 1, 'https://ror.org/02w4kss89 MĆøreforsking (Norway)'),
(34811, 'https://ror.org/059yn9d94', 'no', 1, 'https://ror.org/059yn9d94 Asker kommune'),
(34812, 'https://ror.org/057xpxe28', 'no_lang_code', 1, 'https://ror.org/057xpxe28 Norsk KirkegƄrdsservice (Norway)'),
(34813, 'https://ror.org/04rn19w05', 'no', 1, 'https://ror.org/04rn19w05 Berg kommune'),
(34814, 'https://ror.org/03xjymw07', 'no', 1, 'https://ror.org/03xjymw07 Norwea'),
(34815, 'https://ror.org/02mskse42', 'no', 1, 'https://ror.org/02mskse42 Oslo Kommune'),
(34816, 'https://ror.org/01vjpav59', 'no_lang_code', 1, 'https://ror.org/01vjpav59 Norwegian Crystals (Norway)'),
(34817, 'https://ror.org/04knhp704', 'no', 1, 'https://ror.org/04knhp704 Finnmark Fylkeskommune'),
(34818, 'https://ror.org/04c7hbg15', 'no_lang_code', 1, 'https://ror.org/04c7hbg15 Norwegian Graphite (Norway)'),
(34819, 'https://ror.org/02kdq5f02', 'no', 1, 'https://ror.org/02kdq5f02 Fredrikstad Kommune'),
(34820, 'https://ror.org/010mrqa05', 'en', 1, 'https://ror.org/010mrqa05 Arts Council Norway'),
(34821, 'https://ror.org/02nssyt88', 'no_lang_code', 1, 'https://ror.org/02nssyt88 Norwegian Hull Club (Norway)'),
(34822, 'https://ror.org/01ktv8680', 'no_lang_code', 1, 'https://ror.org/01ktv8680 Mosaic Solutions (Norway)'),
(34823, 'https://ror.org/057zq5186', 'no', 1, 'https://ror.org/057zq5186 MĆøre og Romsdal Fylkeskommune'),
(34824, 'https://ror.org/00r69t692', 'no', 1, 'https://ror.org/00r69t692 Nordnorske EntreprenĆørers Service Organisasjon'),
(34825, 'https://ror.org/04c1v2b17', 'en', 1, 'https://ror.org/04c1v2b17 Center for Innovation'),
(34826, 'https://ror.org/03z55gw17', 'no_lang_code', 1, 'https://ror.org/03z55gw17 Norwegian Oilfield Supply'),
(34827, 'https://ror.org/016yah886', 'en', 1, 'https://ror.org/016yah886 Norwegian Institute of Local History'),
(34828, 'https://ror.org/02qz80268', 'no_lang_code', 1, 'https://ror.org/02qz80268 Norwegian Subsea (Norway)'),
(34829, 'https://ror.org/01sqbks28', 'no_lang_code', 1, 'https://ror.org/01sqbks28 Nordox (Norway)'),
(34830, 'https://ror.org/02gdmcq40', 'no_lang_code', 1, 'https://ror.org/02gdmcq40 Norwegian Group (Norway)'),
(34831, 'https://ror.org/03rq35s79', 'no_lang_code', 1, 'https://ror.org/03rq35s79 Guangzhou Electronic Technology (China) äø­ē§‘é™¢å¹æå·žē”µå­ęŠ€ęœÆęœ‰é™å…¬åø'),
(34832, 'https://ror.org/00f37g133', 'no', 1, 'https://ror.org/00f37g133 Norsk Matematisk Forening'),
(34833, 'https://ror.org/01wy8wf04', 'no_lang_code', 1, 'https://ror.org/01wy8wf04 Norwell (Norway)'),
(34834, 'https://ror.org/01nmxvn49', 'no_lang_code', 1, 'https://ror.org/01nmxvn49 Chengdu Organic Chemicals (China) äø­å›½ē§‘å­¦é™¢ęˆéƒ½ęœ‰ęœŗåŒ–å­¦ęœ‰é™å…¬åø'),
(34835, 'https://ror.org/052nwsb77', 'no_lang_code', 1, 'https://ror.org/052nwsb77 Norwex (Norway)'),
(34836, 'https://ror.org/002rwrx57', 'no_lang_code', 1, 'https://ror.org/002rwrx57 MOTECH Plasma (Norway)'),
(34837, 'https://ror.org/003w57e32', 'no', 1, 'https://ror.org/003w57e32 Norsk Matraps'),
(34838, 'https://ror.org/04gp4me61', 'no', 1, 'https://ror.org/04gp4me61 Norsk Medieforskerlag'),
(34839, 'https://ror.org/00j582x21', 'no_lang_code', 1, 'https://ror.org/00j582x21 Noryards (Norway)'),
(34840, 'https://ror.org/02ceer540', 'no_lang_code', 1, 'https://ror.org/02ceer540 SalMar (Norway)'),
(34841, 'https://ror.org/02kdw7y22', 'no_lang_code', 1, 'https://ror.org/02kdw7y22 Norwegian Electro Ceramics (Norway)'),
(34842, 'https://ror.org/04k7z5476', 'no_lang_code', 1, 'https://ror.org/04k7z5476 Norsk Medisinsk Syklotronsenter (Norway)'),
(34843, 'https://ror.org/00a39qp34', 'no_lang_code', 1, 'https://ror.org/00a39qp34 Movation (Norway)'),
(34844, 'https://ror.org/054ympc71', 'en', 1, 'https://ror.org/054ympc71 Norwegian Beekeepers Association'),
(34845, 'https://ror.org/02q3q6m55', 'no', 1, 'https://ror.org/02q3q6m55 Norges Blindeforbund'),
(34846, 'https://ror.org/00dxw3680', 'no_lang_code', 1, 'https://ror.org/00dxw3680 Move About (Norway)'),
(34847, 'https://ror.org/058gxc624', 'no_lang_code', 1, 'https://ror.org/058gxc624 NLI Innovation (Norway)'),
(34848, 'https://ror.org/01nvcgz36', 'no', 1, 'https://ror.org/01nvcgz36 Norsk Namnelag'),
(34849, 'https://ror.org/05k8zya46', 'no', 1, 'https://ror.org/05k8zya46 Norges Fiskarlag'),
(34850, 'https://ror.org/036qhje24', 'no_lang_code', 1, 'https://ror.org/036qhje24 Norwegian Hydropower (Norway)'),
(34851, 'https://ror.org/01jnsyr23', 'en', 1, 'https://ror.org/01jnsyr23 Norwegian Golf Federation'),
(34852, 'https://ror.org/00kt5tf40', 'en', 1, 'https://ror.org/00kt5tf40 Norwegian Association of Disabled'),
(34853, 'https://ror.org/00wp87h24', 'no_lang_code', 1, 'https://ror.org/00wp87h24 NovaBiotics (Norway)'),
(34854, 'https://ror.org/002tr2c66', 'no_lang_code', 1, 'https://ror.org/002tr2c66 Nofi TromsĆø (Norway)'),
(34855, 'https://ror.org/00td2nm66', 'no_lang_code', 1, 'https://ror.org/00td2nm66 Nova Sea (Norway)'),
(34856, 'https://ror.org/03se59c70', 'no_lang_code', 1, 'https://ror.org/03se59c70 NRK (Norway)'),
(34857, 'https://ror.org/055ftza32', 'en', 1, 'https://ror.org/055ftza32 Institute of Internal Auditors Norway'),
(34858, 'https://ror.org/05ycfv646', 'no_lang_code', 1, 'https://ror.org/05ycfv646 Multiconsult (Norway)'),
(34859, 'https://ror.org/02730rb40', 'no_lang_code', 1, 'https://ror.org/02730rb40 Novelda (Norway)'),
(34860, 'https://ror.org/05xyfkx86', 'no', 1, 'https://ror.org/05xyfkx86 Norsk Sau og Geit'),
(34861, 'https://ror.org/05g27aj31', 'no', 1, 'https://ror.org/05g27aj31 Norges Kystfiskarlag'),
(34862, 'https://ror.org/00w52ce92', 'no_lang_code', 1, 'https://ror.org/00w52ce92 Hansa Borg Bryggerier (Norway)'),
(34863, 'https://ror.org/05r45gk31', 'no', 1, 'https://ror.org/05r45gk31 Nome Kommune'),
(34864, 'https://ror.org/02kpq2a15', 'no_lang_code', 1, 'https://ror.org/02kpq2a15 Head Energy (Norway)'),
(34865, 'https://ror.org/04gens608', 'no_lang_code', 1, 'https://ror.org/04gens608 NorTronic (Norway)'),
(34866, 'https://ror.org/041vdra32', 'no', 1, 'https://ror.org/041vdra32 Friends of the Earth Norway Naturvernforbundet'),
(34867, 'https://ror.org/04chwrz02', 'no_lang_code', 1, 'https://ror.org/04chwrz02 Nord-TrĆøndelag Elektrisitetsverk (Norway)'),
(34868, 'https://ror.org/02621tf26', 'no_lang_code', 1, 'https://ror.org/02621tf26 Norboat (Norway)'),
(34869, 'https://ror.org/00td7a857', 'en', 1, 'https://ror.org/00td7a857 Federation of Norwegian Agricultural Co-operatives'),
(34870, 'https://ror.org/037958547', 'en', 1, 'https://ror.org/037958547 Munch Museum'),
(34871, 'https://ror.org/05qtgz885', 'no_lang_code', 1, 'https://ror.org/05qtgz885 Norskog Consulting (Norway)'),
(34872, 'https://ror.org/04fzjj956', 'no_lang_code', 1, 'https://ror.org/04fzjj956 NTNU Technology Transfer (Norway)'),
(34873, 'https://ror.org/000sq7c21', 'no', 1, 'https://ror.org/000sq7c21 Norges RĆøde Kors Norwegian Red Cross'),
(34874, 'https://ror.org/008qm8389', 'no', 1, 'https://ror.org/008qm8389 Norsk Skogmuseum'),
(34875, 'https://ror.org/02d7jm947', 'no_lang_code', 1, 'https://ror.org/02d7jm947 Mundal Gruppen (Norway)'),
(34876, 'https://ror.org/03t3x0x69', 'no', 1, 'https://ror.org/03t3x0x69 Norsk Sosiologforening'),
(34877, 'https://ror.org/02jt05p62', 'no', 1, 'https://ror.org/02jt05p62 Norges Sildesalgslag Norwegian Herring Sales Association'),
(34878, 'https://ror.org/01qjq7726', 'no_lang_code', 1, 'https://ror.org/01qjq7726 Nucleus (Norway)'),
(34879, 'https://ror.org/044tsct54', 'en', 1, 'https://ror.org/044tsct54 Norwegian Steel Association'),
(34880, 'https://ror.org/00sk8vk27', 'no_lang_code', 1, 'https://ror.org/00sk8vk27 Dolphin Geophysical (Norway)'),
(34881, 'https://ror.org/03yr3hm52', 'no', 1, 'https://ror.org/03yr3hm52 Norsk Sveiseteknisk Forbund'),
(34882, 'https://ror.org/021yjvj30', 'en', 1, 'https://ror.org/021yjvj30 Norwegian Seafood Council'),
(34883, 'https://ror.org/023p8r457', 'en', 1, 'https://ror.org/023p8r457 Norwegian Forest Owners Association'),
(34884, 'https://ror.org/00v7c5185', 'no_lang_code', 1, 'https://ror.org/00v7c5185 Mycoteam (Norway)'),
(34885, 'https://ror.org/02yyqh779', 'no_lang_code', 1, 'https://ror.org/02yyqh779 Numedalsutvikling (Norway)'),
(34886, 'https://ror.org/02xq4sz17', 'no_lang_code', 1, 'https://ror.org/02xq4sz17 Myhrene (Norway)'),
(34887, 'https://ror.org/04dmsj331', 'no_lang_code', 1, 'https://ror.org/04dmsj331 Mylifeproducts (Norway)'),
(34888, 'https://ror.org/04kqbmr61', 'no_lang_code', 1, 'https://ror.org/04kqbmr61 Nunatak (Norway)'),
(34889, 'https://ror.org/02cpyxc95', 'no_lang_code', 1, 'https://ror.org/02cpyxc95 NutraQ (Norway)'),
(34890, 'https://ror.org/055pv4k97', 'no_lang_code', 1, 'https://ror.org/055pv4k97 Pemco (Norway)'),
(34891, 'https://ror.org/01tt6ct02', 'no_lang_code', 1, 'https://ror.org/01tt6ct02 Myworkout (Norway)'),
(34892, 'https://ror.org/04e99wk33', 'no_lang_code', 1, 'https://ror.org/04e99wk33 Nygon (Norway)'),
(34893, 'https://ror.org/028a3zj94', 'no', 1, 'https://ror.org/028a3zj94 Solskjerming'),
(34894, 'https://ror.org/04bpra047', 'no_lang_code', 1, 'https://ror.org/04bpra047 Mustad (Norway)'),
(34895, 'https://ror.org/004cakc07', 'en', 1, 'https://ror.org/004cakc07 Norwegian Academy of Technological Sciences'),
(34896, 'https://ror.org/03ywcxa16', 'no_lang_code', 1, 'https://ror.org/03ywcxa16 NorDan (Norway)'),
(34897, 'https://ror.org/04gqcjz27', 'no_lang_code', 1, 'https://ror.org/04gqcjz27 Scatec (Norway)'),
(34898, 'https://ror.org/02q9r3565', 'fi', 1, 'https://ror.org/02q9r3565 Kainun Institutti'),
(34899, 'https://ror.org/03pkxjx53', 'no_lang_code', 1, 'https://ror.org/03pkxjx53 Steinsvik (Norway)'),
(34900, 'https://ror.org/003wp4g82', 'no_lang_code', 1, 'https://ror.org/003wp4g82 NorgesfƓr (Norway)'),
(34901, 'https://ror.org/0066ttc69', 'no_lang_code', 1, 'https://ror.org/0066ttc69 NorgesGruppen (Norway)'),
(34902, 'https://ror.org/00d5qfz16', 'en', 1, 'https://ror.org/00d5qfz16 Norwegian Institute of Wood Technology'),
(34903, 'https://ror.org/0122ngb55', 'no_lang_code', 1, 'https://ror.org/0122ngb55 Saint-Gobain (Norway)'),
(34904, 'https://ror.org/041ww9d57', 'no_lang_code', 1, 'https://ror.org/041ww9d57 Ocean Energy (Norway)'),
(34905, 'https://ror.org/04r3yqx69', 'no_lang_code', 1, 'https://ror.org/04r3yqx69 OptiNose (Norway)'),
(34906, 'https://ror.org/02qhzxt05', 'en', 1, 'https://ror.org/02qhzxt05 Norwegian Business and Industry Security Council'),
(34907, 'https://ror.org/0438q2q05', 'no_lang_code', 1, 'https://ror.org/0438q2q05 NorgesmĆøllene (Norway)'),
(34908, 'https://ror.org/024jky872', 'no', 1, 'https://ror.org/024jky872 Norsk Trevare'),
(34909, 'https://ror.org/02fqwth13', 'no_lang_code', 1, 'https://ror.org/02fqwth13 Ocean Visuals (Norway)'),
(34910, 'https://ror.org/03s6yf189', 'no_lang_code', 1, 'https://ror.org/03s6yf189 Nammo (Norway)'),
(34911, 'https://ror.org/02d0m4q63', 'no_lang_code', 1, 'https://ror.org/02d0m4q63 Nokia (Norway)'),
(34912, 'https://ror.org/01ddmgr89', 'no_lang_code', 1, 'https://ror.org/01ddmgr89 Norhard (Norway)'),
(34913, 'https://ror.org/01pznaa94', 'en', 1, 'https://ror.org/01pznaa94 Norwegian Institute of International Affairs'),
(34914, 'https://ror.org/02e8y7481', 'en', 1, 'https://ror.org/02e8y7481 Nansen Neuroscience Network'),
(34915, 'https://ror.org/05011r820', 'no_lang_code', 1, 'https://ror.org/05011r820 Orkana Forlag (Norway)'),
(34916, 'https://ror.org/05xn6e267', 'en', 1, 'https://ror.org/05xn6e267 Norwegian Corporate Governance Board'),
(34917, 'https://ror.org/04v6t0889', 'en', 1, 'https://ror.org/04v6t0889 Norwegian Water'),
(34918, 'https://ror.org/055jgd565', 'no_lang_code', 1, 'https://ror.org/055jgd565 Orkel (Norway)'),
(34919, 'https://ror.org/02knph556', 'no_lang_code', 1, 'https://ror.org/02knph556 Plastal (Norway)'),
(34920, 'https://ror.org/01059d966', 'no_lang_code', 1, 'https://ror.org/01059d966 Norinnova (Norway)'),
(34921, 'https://ror.org/03fs8gt32', 'no_lang_code', 1, 'https://ror.org/03fs8gt32 Plasto (Norway)'),
(34922, 'https://ror.org/01thm5617', 'no_lang_code', 1, 'https://ror.org/01thm5617 OceanSaver (Norway)'),
(34923, 'https://ror.org/05cc9pg46', 'no_lang_code', 1, 'https://ror.org/05cc9pg46 Orthogenics (Norway)'),
(34924, 'https://ror.org/029ndw944', 'no', 1, 'https://ror.org/029ndw944 Norsk VirkesmƄling'),
(34925, 'https://ror.org/03fnhx680', 'no_lang_code', 1, 'https://ror.org/03fnhx680 Oshaug Metall (Norway)'),
(34926, 'https://ror.org/001dwsq82', 'no_lang_code', 1, 'https://ror.org/001dwsq82 Pleat (Norway)'),
(34927, 'https://ror.org/05r1rzk07', 'no_lang_code', 1, 'https://ror.org/05r1rzk07 Norsk Wax (Norway)'),
(34928, 'https://ror.org/03w5nvk39', 'en', 1, 'https://ror.org/03w5nvk39 Oslo Stock Exchange'),
(34929, 'https://ror.org/05rpeka60', 'no_lang_code', 1, 'https://ror.org/05rpeka60 NorLense (Norway)'),
(34930, 'https://ror.org/055jjx645', 'en', 1, 'https://ror.org/055jjx645 Oslo Cancer Cluster'),
(34931, 'https://ror.org/01nevmj51', 'en', 1, 'https://ror.org/01nevmj51 Co-opertive Housing Federation of Norway'),
(34932, 'https://ror.org/03vn4w338', 'no_lang_code', 1, 'https://ror.org/03vn4w338 Norli Libris (Norway)'),
(34933, 'https://ror.org/011mfhx24', 'en', 1, 'https://ror.org/011mfhx24 Oslo Chamber of Commerce'),
(34934, 'https://ror.org/02afrq658', 'no_lang_code', 1, 'https://ror.org/02afrq658 Polarkonsult (Norway)'),
(34935, 'https://ror.org/058gxfr70', 'no_lang_code', 1, 'https://ror.org/058gxfr70 NorMedia (Norway)'),
(34936, 'https://ror.org/05wk1t126', 'en', 1, 'https://ror.org/05wk1t126 Oslo Port Authority'),
(34937, 'https://ror.org/03b0jpz35', 'no_lang_code', 1, 'https://ror.org/03b0jpz35 Normex (Norway)'),
(34938, 'https://ror.org/05eqwb473', 'no_lang_code', 1, 'https://ror.org/05eqwb473 NorrĆønt (Norway)'),
(34939, 'https://ror.org/03rgdaq32', 'no_lang_code', 1, 'https://ror.org/03rgdaq32 Norsafe (Norway)'),
(34940, 'https://ror.org/00etk3t37', 'no_lang_code', 1, 'https://ror.org/00etk3t37 Norske Skog (Norway) Norwegian Forest Industries'),
(34941, 'https://ror.org/012dd9d89', 'no_lang_code', 1, 'https://ror.org/012dd9d89 poLight (Norway)'),
(34942, 'https://ror.org/03ajdty96', 'no', 1, 'https://ror.org/03ajdty96 Norsif'),
(34943, 'https://ror.org/03w0yv793', 'no', 1, 'https://ror.org/03w0yv793 Norske Takstolprodusenters Forening'),
(34944, 'https://ror.org/050pqc318', 'no', 1, 'https://ror.org/050pqc318 Norsk Algeforening'),
(34945, 'https://ror.org/03e70fp94', 'en', 1, 'https://ror.org/03e70fp94 Oslo Medtech'),
(34946, 'https://ror.org/04wpmh396', 'no_lang_code', 1, 'https://ror.org/04wpmh396 Norsonic (Norway)'),
(34947, 'https://ror.org/02d4aa907', 'no', 1, 'https://ror.org/02d4aa907 Norsk Arkeologisk Selskap'),
(34948, 'https://ror.org/05fhxyg37', 'no', 1, 'https://ror.org/05fhxyg37 Politiet'),
(34949, 'https://ror.org/00gar9b27', 'en', 1, 'https://ror.org/00gar9b27 NorStella Foundation'),
(34950, 'https://ror.org/01sf89923', 'no_lang_code', 1, 'https://ror.org/01sf89923 Tomra (Norway)'),
(34951, 'https://ror.org/018rc2s15', 'no_lang_code', 1, 'https://ror.org/018rc2s15 NorSun (Norway)'),
(34952, 'https://ror.org/03rdeqz85', 'no_lang_code', 1, 'https://ror.org/03rdeqz85 Norsk Automatisering (Norway)'),
(34953, 'https://ror.org/04ehzpr81', 'no_lang_code', 1, 'https://ror.org/04ehzpr81 Odfjell Drilling (Norway)'),
(34954, 'https://ror.org/01xdsqb07', 'no_lang_code', 1, 'https://ror.org/01xdsqb07 Kvalvik (Norway)'),
(34955, 'https://ror.org/02px7xz82', 'en', 1, 'https://ror.org/02px7xz82 Oslo Vest Rotary Klubb'),
(34956, 'https://ror.org/04ph6jr06', 'no_lang_code', 1, 'https://ror.org/04ph6jr06 Nortek (Norway)'),
(34957, 'https://ror.org/00vfc7k77', 'no_lang_code', 1, 'https://ror.org/00vfc7k77 North Energy (Norway)'),
(34958, 'https://ror.org/01r41r914', 'no_lang_code', 1, 'https://ror.org/01r41r914 NorthSea Container Line (Norway)'),
(34959, 'https://ror.org/017c6yw85', 'no_lang_code', 1, 'https://ror.org/017c6yw85 OSO Hotwater (Norway)'),
(34960, 'https://ror.org/00rmzby10', 'en', 1, 'https://ror.org/00rmzby10 Norwegian Centre for Design and Architecture'),
(34961, 'https://ror.org/01gaazr53', 'no_lang_code', 1, 'https://ror.org/01gaazr53 Østensjø Rederi (Norway)'),
(34962, 'https://ror.org/00dasvg19', 'no_lang_code', 1, 'https://ror.org/00dasvg19 Offshore Sensing (Norway)'),
(34963, 'https://ror.org/02hbww352', 'no_lang_code', 1, 'https://ror.org/02hbww352 Porolon (Norway)'),
(34964, 'https://ror.org/03vj43k94', 'no_lang_code', 1, 'https://ror.org/03vj43k94 Nortransport (Norway)'),
(34965, 'https://ror.org/01jzfkq41', 'no_lang_code', 1, 'https://ror.org/01jzfkq41 Nortroll (Norway)'),
(34966, 'https://ror.org/0159fax30', 'no', 1, 'https://ror.org/0159fax30 Porsanger Kommune'),
(34967, 'https://ror.org/05w1kd396', 'no_lang_code', 1, 'https://ror.org/05w1kd396 Portahead (Norway)'),
(34968, 'https://ror.org/052x09g67', 'en', 1, 'https://ror.org/052x09g67 Norwegian Film Institute'),
(34969, 'https://ror.org/00753wa45', 'no_lang_code', 1, 'https://ror.org/00753wa45 Ƙsterdalsmia (Norway)'),
(34970, 'https://ror.org/03zgm9x14', 'no_lang_code', 1, 'https://ror.org/03zgm9x14 Portal (Norway)'),
(34971, 'https://ror.org/04x931c50', 'en', 1, 'https://ror.org/04x931c50 POSC Caesar Association'),
(34972, 'https://ror.org/04c2cdz27', 'no', 1, 'https://ror.org/04c2cdz27 Norsk FjĆørfelag'),
(34973, 'https://ror.org/03qpxp676', 'no_lang_code', 1, 'https://ror.org/03qpxp676 Norway Well Solutions'),
(34974, 'https://ror.org/02t6kpd72', 'no', 1, 'https://ror.org/02t6kpd72 Norsk Folkemuseum'),
(34975, 'https://ror.org/03q52r448', 'no_lang_code', 1, 'https://ror.org/03q52r448 Offshore Simulator Centre (Norway)'),
(34976, 'https://ror.org/00cgmd914', 'no_lang_code', 1, 'https://ror.org/00cgmd914 Siemens (Norway)'),
(34977, 'https://ror.org/01hqxm727', 'no_lang_code', 1, 'https://ror.org/01hqxm727 Norsk Mineral (Norway)'),
(34978, 'https://ror.org/03fpa6x12', 'no_lang_code', 1, 'https://ror.org/03fpa6x12 Oil Tools Of Norway (Norway)'),
(34979, 'https://ror.org/0107jsx26', 'en', 1, 'https://ror.org/0107jsx26 Norwegian Society of Automatic Control'),
(34980, 'https://ror.org/04sa8xk52', 'no_lang_code', 1, 'https://ror.org/04sa8xk52 OilCraft (Norway)'),
(34981, 'https://ror.org/00at1a685', 'no_lang_code', 1, 'https://ror.org/00at1a685 Poseidon (Norway)'),
(34982, 'https://ror.org/05sryxz27', 'no', 1, 'https://ror.org/05sryxz27 Norsk Forening for Bildebehandling og MĆønstergjenkjenning'),
(34983, 'https://ror.org/01tvtq106', 'no_lang_code', 1, 'https://ror.org/01tvtq106 Posicom (Norway)'),
(34984, 'https://ror.org/01d92zj09', 'no_lang_code', 1, 'https://ror.org/01d92zj09 Oilfield Technology Group (Norway)'),
(34985, 'https://ror.org/03d41qd17', 'no_lang_code', 1, 'https://ror.org/03d41qd17 OiW Process (Norway)'),
(34986, 'https://ror.org/020deqr47', 'en', 1, 'https://ror.org/020deqr47 Eastern Norway Research Institute'),
(34987, 'https://ror.org/03ezm5049', 'no', 1, 'https://ror.org/03ezm5049 Tannlege Ole Christian Amundsen'),
(34988, 'https://ror.org/03hqca282', 'en', 1, 'https://ror.org/03hqca282 Norwegian Association for Development Research'),
(34989, 'https://ror.org/02yq0sn95', 'no_lang_code', 1, 'https://ror.org/02yq0sn95 Posten (Norway)'),
(34990, 'https://ror.org/0519mfj33', 'no_lang_code', 1, 'https://ror.org/0519mfj33 Ostomycure (Norway)'),
(34991, 'https://ror.org/017q09r90', 'no_lang_code', 1, 'https://ror.org/017q09r90 Otech Marine Services (Norway)'),
(34992, 'https://ror.org/02mz22k75', 'no', 1, 'https://ror.org/02mz22k75 Norsk Friluftsliv'),
(34993, 'https://ror.org/04dcrct74', 'no_lang_code', 1, 'https://ror.org/04dcrct74 Exova Metech (Norway)'),
(34994, 'https://ror.org/0023n0d81', 'no', 1, 'https://ror.org/0023n0d81 Ƙksnes Kommune'),
(34995, 'https://ror.org/003r70w25', 'no_lang_code', 1, 'https://ror.org/003r70w25 Otechos (Norway)'),
(34996, 'https://ror.org/02me8mn40', 'no_lang_code', 1, 'https://ror.org/02me8mn40 Otivio (Norway)'),
(34997, 'https://ror.org/04y5wt580', 'no', 1, 'https://ror.org/04y5wt580 Overhalla Kommune'),
(34998, 'https://ror.org/05veaq644', 'no', 1, 'https://ror.org/05veaq644 Ƙvre Eiker Kommune'),
(34999, 'https://ror.org/040wxw844', 'no', 1, 'https://ror.org/040wxw844 Norsk Fysisk Selskap'),
(35000, 'https://ror.org/045qycg64', 'no_lang_code', 1, 'https://ror.org/045qycg64 PostNord (Norway)'),
(35001, 'https://ror.org/05wbvqf90', 'no_lang_code', 1, 'https://ror.org/05wbvqf90 OWC Power (Norway)'),
(35002, 'https://ror.org/00gbsxt88', 'no_lang_code', 1, 'https://ror.org/00gbsxt88 Norsk Gjenvinning (Norway)'),
(35003, 'https://ror.org/01v583s72', 'no_lang_code', 1, 'https://ror.org/01v583s72 Arendals Fossekompani (Norway)'),
(35004, 'https://ror.org/05cjvqb89', 'no_lang_code', 1, 'https://ror.org/05cjvqb89 ƘKOKRIM'),
(35005, 'https://ror.org/04ctcce15', 'en', 1, 'https://ror.org/04ctcce15 Norwegian Ports Association'),
(35006, 'https://ror.org/05pjatf35', 'no_lang_code', 1, 'https://ror.org/05pjatf35 Rauma Group (Norway)'),
(35007, 'https://ror.org/05ya1hz84', 'no', 1, 'https://ror.org/05ya1hz84 Norsk Hestesenter Stiftelse'),
(35008, 'https://ror.org/021c3kv95', 'no_lang_code', 1, 'https://ror.org/021c3kv95 Ƙkologisk Spesialkorn (Norway)'),
(35009, 'https://ror.org/03xn8jx42', 'no_lang_code', 1, 'https://ror.org/03xn8jx42 AFRY (Norway)'),
(35010, 'https://ror.org/00a3jhq22', 'no', 1, 'https://ror.org/00a3jhq22 Re Kommune'),
(35011, 'https://ror.org/00zzy9k89', 'no_lang_code', 1, 'https://ror.org/00zzy9k89 Norsk Hoppemelk (Norway)'),
(35012, 'https://ror.org/05f655c20', 'no_lang_code', 1, 'https://ror.org/05f655c20 Re-Turn (Norway)'),
(35013, 'https://ror.org/04apegc06', 'no_lang_code', 1, 'https://ror.org/04apegc06 Reactive Metal Particles (Norway)'),
(35014, 'https://ror.org/03y2s5683', 'no_lang_code', 1, 'https://ror.org/03y2s5683 Oxford Research (Norway)'),
(35015, 'https://ror.org/04c9n9394', 'no_lang_code', 1, 'https://ror.org/04c9n9394 Rotoboost (Norway)'),
(35016, 'https://ror.org/04fhvfc61', 'no_lang_code', 1, 'https://ror.org/04fhvfc61 Olivita (Norway)'),
(35017, 'https://ror.org/023vx9026', 'no_lang_code', 1, 'https://ror.org/023vx9026 Prediktor (Norway)'),
(35018, 'https://ror.org/00dhzdc05', 'no_lang_code', 1, 'https://ror.org/00dhzdc05 Omega Media (Norway)'),
(35019, 'https://ror.org/03yqxd013', 'no_lang_code', 1, 'https://ror.org/03yqxd013 Omegatri (Norway)'),
(35020, 'https://ror.org/03fbtkm67', 'no_lang_code', 1, 'https://ror.org/03fbtkm67 Prekubator (Norway)'),
(35021, 'https://ror.org/016gp0w25', 'no_lang_code', 1, 'https://ror.org/016gp0w25 Emerson (Norway)'),
(35022, 'https://ror.org/034wzt925', 'no_lang_code', 1, 'https://ror.org/034wzt925 Omex (Norway)'),
(35023, 'https://ror.org/05b30h594', 'no_lang_code', 1, 'https://ror.org/05b30h594 Real Alloy (Norway)'),
(35024, 'https://ror.org/05e19x344', 'no_lang_code', 1, 'https://ror.org/05e19x344 OxyVision (Norway)'),
(35025, 'https://ror.org/03hf9pe15', 'en', 1, 'https://ror.org/03hf9pe15 RĆøyken Municipality'),
(35026, 'https://ror.org/03ktys708', 'no', 1, 'https://ror.org/03ktys708 Realistforeningen'),
(35027, 'https://ror.org/01n4nv253', 'no_lang_code', 1, 'https://ror.org/01n4nv253 Preline Fishfarming Systems (Norway)'),
(35028, 'https://ror.org/00by0d563', 'no_lang_code', 1, 'https://ror.org/00by0d563 RPR Technologies (Norway)'),
(35029, 'https://ror.org/05k7dys50', 'no_lang_code', 1, 'https://ror.org/05k7dys50 Oyatel (Norway)'),
(35030, 'https://ror.org/058d7nh07', 'no_lang_code', 1, 'https://ror.org/058d7nh07 Oncoinvent (Norway)'),
(35031, 'https://ror.org/04dz9hf76', 'no_lang_code', 1, 'https://ror.org/04dz9hf76 Onsite Treatment Technologies (Norway)'),
(35032, 'https://ror.org/00803nh20', 'en', 1, 'https://ror.org/00803nh20 Runde Environmental Centre'),
(35033, 'https://ror.org/01g22pf62', 'no_lang_code', 1, 'https://ror.org/01g22pf62 Ruter (Norway)'),
(35034, 'https://ror.org/059mcba53', 'no_lang_code', 1, 'https://ror.org/059mcba53 Preseria (Norway)'),
(35035, 'https://ror.org/04da9qq88', 'no_lang_code', 1, 'https://ror.org/04da9qq88 PaleBlue (Norway)'),
(35036, 'https://ror.org/05hj5cr21', 'no_lang_code', 1, 'https://ror.org/05hj5cr21 Panalpina (Norway)'),
(35037, 'https://ror.org/053qb6g74', 'en', 1, 'https://ror.org/053qb6g74 Paper and Fibre Research Institute'),
(35038, 'https://ror.org/03xgcy581', 'no_lang_code', 1, 'https://ror.org/03xgcy581 Holta Invest (Norway)'),
(35039, 'https://ror.org/05xrz9x70', 'no_lang_code', 1, 'https://ror.org/05xrz9x70 Ryfylke (Norway)'),
(35040, 'https://ror.org/059795h04', 'no_lang_code', 1, 'https://ror.org/059795h04 Papirbredden Innovasjon (Norway)'),
(35041, 'https://ror.org/027419338', 'en', 1, 'https://ror.org/027419338 Rygge Municipality'),
(35042, 'https://ror.org/038ny6229', 'no_lang_code', 1, 'https://ror.org/038ny6229 RED Consulting (Norway)'),
(35043, 'https://ror.org/04cbhvr29', 'no_lang_code', 1, 'https://ror.org/04cbhvr29 PartnerPlast (Norway)'),
(35044, 'https://ror.org/01adx2n38', 'no_lang_code', 1, 'https://ror.org/01adx2n38 Viken Skog (Norway)'),
(35045, 'https://ror.org/00ve8y072', 'no_lang_code', 1, 'https://ror.org/00ve8y072 Saemien Sijte'),
(35046, 'https://ror.org/017vpsa98', 'no_lang_code', 1, 'https://ror.org/017vpsa98 Redcord (Norway)'),
(35047, 'https://ror.org/0148n2a41', 'no_lang_code', 1, 'https://ror.org/0148n2a41 Safelink (Norway)'),
(35048, 'https://ror.org/01zmty518', 'no_lang_code', 1, 'https://ror.org/01zmty518 Opera Software (Norway)'),
(35049, 'https://ror.org/007gdk107', 'no_lang_code', 1, 'https://ror.org/007gdk107 Saga Welco (Norway)'),
(35050, 'https://ror.org/049qcgg02', 'no_lang_code', 1, 'https://ror.org/049qcgg02 Redox (Norway)'),
(35051, 'https://ror.org/02p4hh588', 'no_lang_code', 1, 'https://ror.org/02p4hh588 PatoGen (Norway)'),
(35052, 'https://ror.org/03pf0r360', 'no_lang_code', 1, 'https://ror.org/03pf0r360 Br. Birkeland (Norway)'),
(35053, 'https://ror.org/05k5sr007', 'no_lang_code', 1, 'https://ror.org/05k5sr007 Redpill Linpro (Norway)'),
(35054, 'https://ror.org/020v4ez65', 'no_lang_code', 1, 'https://ror.org/020v4ez65 PREZIOSO Linjebygg (Norway)'),
(35055, 'https://ror.org/00g3h5036', 'no_lang_code', 1, 'https://ror.org/00g3h5036 Reelwell (Norway)'),
(35056, 'https://ror.org/01z1jq781', 'no_lang_code', 1, 'https://ror.org/01z1jq781 Opinion (Norway)'),
(35057, 'https://ror.org/00qq5j134', 'no_lang_code', 1, 'https://ror.org/00qq5j134 Pax Forlag (Norway)'),
(35058, 'https://ror.org/02nvrva15', 'no_lang_code', 1, 'https://ror.org/02nvrva15 Reemsys (Norway)'),
(35059, 'https://ror.org/007sqfz40', 'no_lang_code', 1, 'https://ror.org/007sqfz40 PricewaterhouseCoopers (Norway)'),
(35060, 'https://ror.org/00y495746', 'no_lang_code', 1, 'https://ror.org/00y495746 PCI Biotech (Norway)'),
(35061, 'https://ror.org/04fhs8414', 'no', 1, 'https://ror.org/04fhs8414 OppegƄrd Kommune'),
(35062, 'https://ror.org/05kprpt37', 'no_lang_code', 1, 'https://ror.org/05kprpt37 Pelagic Power (Norway)'),
(35063, 'https://ror.org/05c5mw559', 'no_lang_code', 1, 'https://ror.org/05c5mw559 Sagaplant (Norway)'),
(35064, 'https://ror.org/03d8xe868', 'no', 1, 'https://ror.org/03d8xe868 Oppland Fylkeskommune'),
(35065, 'https://ror.org/00qch4977', 'no_lang_code', 1, 'https://ror.org/00qch4977 Pro Analysis (Norway)'),
(35066, 'https://ror.org/001prbr35', 'no_lang_code', 1, 'https://ror.org/001prbr35 Vónin Refa (Norway)'),
(35067, 'https://ror.org/01pwxk906', 'no_lang_code', 1, 'https://ror.org/01pwxk906 Opplysningskontoret for Meieriprodukter (Norway)'),
(35068, 'https://ror.org/05a1ns214', 'no_lang_code', 1, 'https://ror.org/05a1ns214 Regatta (Norway)'),
(35069, 'https://ror.org/037z21177', 'no_lang_code', 1, 'https://ror.org/037z21177 Pro Barents (Norway)'),
(35070, 'https://ror.org/01vxfv915', 'no_lang_code', 1, 'https://ror.org/01vxfv915 OptimarStette (Norway)'),
(35071, 'https://ror.org/01mstep31', 'no_lang_code', 1, 'https://ror.org/01mstep31 Regenics (Norway)'),
(35072, 'https://ror.org/00q7vjv87', 'no_lang_code', 1, 'https://ror.org/00q7vjv87 Optime Subsea Services (Norway)'),
(35073, 'https://ror.org/00gzhxp51', 'no_lang_code', 1, 'https://ror.org/00gzhxp51 Optimeering (Norway)'),
(35074, 'https://ror.org/05n877995', 'no_lang_code', 1, 'https://ror.org/05n877995 Proceda (Norway)'),
(35075, 'https://ror.org/04x0t4f03', 'no_lang_code', 1, 'https://ror.org/04x0t4f03 Benchmark Holdings (Norway)'),
(35076, 'https://ror.org/03xebwg03', 'no_lang_code', 1, 'https://ror.org/03xebwg03 Salt (Norway)');
INSERT INTO `rors` VALUES
(35077, 'https://ror.org/01xkb1z92', 'no_lang_code', 1, 'https://ror.org/01xkb1z92 Peterson (Norway)'),
(35078, 'https://ror.org/042s03372', 'en', 1, 'https://ror.org/042s03372 Center for Child and Adolescent Mental Health, Eastern and Southern Norway'),
(35079, 'https://ror.org/006z5we64', 'no', 1, 'https://ror.org/006z5we64 Salten RegionrƄd'),
(35080, 'https://ror.org/02eees117', 'no_lang_code', 1, 'https://ror.org/02eees117 ProduksjonsTeknologi (Norway)'),
(35081, 'https://ror.org/01n5bzx98', 'no_lang_code', 1, 'https://ror.org/01n5bzx98 Petoro (Norway)'),
(35082, 'https://ror.org/003m47s20', 'no_lang_code', 1, 'https://ror.org/003m47s20 Produs Aqua (Norway)'),
(35083, 'https://ror.org/05j6q2769', 'no_lang_code', 1, 'https://ror.org/05j6q2769 Petrell (Norway)'),
(35084, 'https://ror.org/03zn6e898', 'no_lang_code', 1, 'https://ror.org/03zn6e898 Profectum (Norway)'),
(35085, 'https://ror.org/03d9q1m75', 'no_lang_code', 1, 'https://ror.org/03d9q1m75 Petroleum Technology Company (Norway)'),
(35086, 'https://ror.org/02pxhh871', 'no_lang_code', 1, 'https://ror.org/02pxhh871 Petroleumsoft (Norway)'),
(35087, 'https://ror.org/01bqp1107', 'no_lang_code', 1, 'https://ror.org/01bqp1107 Selfa (Norway)'),
(35088, 'https://ror.org/00v8gh961', 'no_lang_code', 1, 'https://ror.org/00v8gh961 Petrolink (Norway)'),
(35089, 'https://ror.org/01846wa75', 'no_lang_code', 1, 'https://ror.org/01846wa75 Profixio (Norway)'),
(35090, 'https://ror.org/04jnt3s43', 'no_lang_code', 1, 'https://ror.org/04jnt3s43 SelĆøy Undervannsservice (Norway)'),
(35091, 'https://ror.org/03j2t9x72', 'no_lang_code', 1, 'https://ror.org/03j2t9x72 Salto (Norway)'),
(35092, 'https://ror.org/0072bcq84', 'no_lang_code', 1, 'https://ror.org/0072bcq84 Profvet (Norway)'),
(35093, 'https://ror.org/007gm3994', 'no_lang_code', 1, 'https://ror.org/007gm3994 Selvaag Gruppen (Norway)'),
(35094, 'https://ror.org/05gn7qs79', 'no_lang_code', 1, 'https://ror.org/05gn7qs79 Semco Maritime (Norway)'),
(35095, 'https://ror.org/00snpfp77', 'en', 1, 'https://ror.org/00snpfp77 Norwegian Association of Economists'),
(35096, 'https://ror.org/05ksgvc87', 'no_lang_code', 1, 'https://ror.org/05ksgvc87 Reichhold (Norway)'),
(35097, 'https://ror.org/04zbn7k04', 'en', 1, 'https://ror.org/04zbn7k04 Norwegian Agency for Development Cooperation'),
(35098, 'https://ror.org/0357w4d04', 'no_lang_code', 1, 'https://ror.org/0357w4d04 Sana Pharma Medical (Norway)'),
(35099, 'https://ror.org/0239yvq05', 'no_lang_code', 1, 'https://ror.org/0239yvq05 Expro (Norway)'),
(35100, 'https://ror.org/023mn6e26', 'en', 1, 'https://ror.org/023mn6e26 Semicolon'),
(35101, 'https://ror.org/01afg1s08', 'no_lang_code', 1, 'https://ror.org/01afg1s08 Reime (Norway)'),
(35102, 'https://ror.org/02bte5314', 'no_lang_code', 1, 'https://ror.org/02bte5314 Maritim Food (Norway)'),
(35103, 'https://ror.org/05v8cdx93', 'no_lang_code', 1, 'https://ror.org/05v8cdx93 Sencel Bioinformatics (Norway)'),
(35104, 'https://ror.org/01hmp0h76', 'no_lang_code', 1, 'https://ror.org/01hmp0h76 Petroleum Geo-Services (Norway)'),
(35105, 'https://ror.org/01f3n2767', 'no_lang_code', 1, 'https://ror.org/01f3n2767 Sensocure (Norway)'),
(35106, 'https://ror.org/039a9p804', 'no_lang_code', 1, 'https://ror.org/039a9p804 Reinertsen (Norway)'),
(35107, 'https://ror.org/0510v1781', 'no', 1, 'https://ror.org/0510v1781 Sandefjord Kommune'),
(35108, 'https://ror.org/04vxgz290', 'no_lang_code', 1, 'https://ror.org/04vxgz290 Remora (Norway)'),
(35109, 'https://ror.org/054v2zz61', 'no_lang_code', 1, 'https://ror.org/054v2zz61 RemovAid (Norway)'),
(35110, 'https://ror.org/04yh74t68', 'no_lang_code', 1, 'https://ror.org/04yh74t68 Infineon Technologies (Norway)'),
(35111, 'https://ror.org/04q61xe51', 'no_lang_code', 1, 'https://ror.org/04q61xe51 Sensorlink (Norway)'),
(35112, 'https://ror.org/03tw2c072', 'no_lang_code', 1, 'https://ror.org/03tw2c072 Sandvik (Norway)'),
(35113, 'https://ror.org/03rcgd081', 'no_lang_code', 1, 'https://ror.org/03rcgd081 Pharmaq (Norway)'),
(35114, 'https://ror.org/01vzhs891', 'no_lang_code', 1, 'https://ror.org/01vzhs891 Sensorteknikk (Norway)'),
(35115, 'https://ror.org/03ccpe393', 'no_lang_code', 1, 'https://ror.org/03ccpe393 BASF (Norway)'),
(35116, 'https://ror.org/02w9zyq75', 'no_lang_code', 1, 'https://ror.org/02w9zyq75 Pharmasum Therapeutics (Norway)'),
(35117, 'https://ror.org/04hybbx63', 'no_lang_code', 1, 'https://ror.org/04hybbx63 Prophylix Pharma (Norway)'),
(35118, 'https://ror.org/059h94t31', 'no_lang_code', 1, 'https://ror.org/059h94t31 REN (Norway)'),
(35119, 'https://ror.org/00q13z447', 'no_lang_code', 1, 'https://ror.org/00q13z447 PRORES (Norway)'),
(35120, 'https://ror.org/05xc75s20', 'no', 1, 'https://ror.org/05xc75s20 RegionrƄdet i Nord-Gudbrandsdal'),
(35121, 'https://ror.org/03037mp68', 'no_lang_code', 1, 'https://ror.org/03037mp68 Sensovann (Norway)'),
(35122, 'https://ror.org/01sz7a883', 'no', 1, 'https://ror.org/01sz7a883 Fjellregionen'),
(35123, 'https://ror.org/021dpgf14', 'no', 1, 'https://ror.org/021dpgf14 RegionrƄdet for Hallingdal'),
(35124, 'https://ror.org/05t55vt39', 'no_lang_code', 1, 'https://ror.org/05t55vt39 Sarsia (Norway)'),
(35125, 'https://ror.org/028rs2d85', 'no_lang_code', 1, 'https://ror.org/028rs2d85 ReNorway (Norway)'),
(35126, 'https://ror.org/01e1z6807', 'no_lang_code', 1, 'https://ror.org/01e1z6807 Photocure (Norway)'),
(35127, 'https://ror.org/01xssd484', 'no_lang_code', 1, 'https://ror.org/01xssd484 SAS Cargo (Norway)'),
(35128, 'https://ror.org/01x9cep12', 'no_lang_code', 1, 'https://ror.org/01x9cep12 Wienerberger (Norway)'),
(35129, 'https://ror.org/055nt8z76', 'no_lang_code', 1, 'https://ror.org/055nt8z76 Glor (Norway)'),
(35130, 'https://ror.org/04q60r444', 'no_lang_code', 1, 'https://ror.org/04q60r444 Pipetech International (Norway)'),
(35131, 'https://ror.org/04gaydk29', 'no_lang_code', 1, 'https://ror.org/04gaydk29 Piql (Norway)'),
(35132, 'https://ror.org/020rm1980', 'no_lang_code', 1, 'https://ror.org/020rm1980 Res Publica (Norway)'),
(35133, 'https://ror.org/04bwvvd57', 'no_lang_code', 1, 'https://ror.org/04bwvvd57 SAS Institute (Norway)'),
(35134, 'https://ror.org/05t55rs39', 'no_lang_code', 1, 'https://ror.org/05t55rs39 Piscada (Norway)'),
(35135, 'https://ror.org/05rbhea42', 'no_lang_code', 1, 'https://ror.org/05rbhea42 Centre for Advanced Study'),
(35136, 'https://ror.org/05qrcqk02', 'no_lang_code', 1, 'https://ror.org/05qrcqk02 Protector (Norway)'),
(35137, 'https://ror.org/027zxhv97', 'no_lang_code', 1, 'https://ror.org/027zxhv97 Research Management (Norway)'),
(35138, 'https://ror.org/05bg39511', 'no_lang_code', 1, 'https://ror.org/05bg39511 ReSight (Norway)'),
(35139, 'https://ror.org/019wpez42', 'no_lang_code', 1, 'https://ror.org/019wpez42 Proteket (Norway)'),
(35140, 'https://ror.org/00bcxky47', 'no_lang_code', 1, 'https://ror.org/00bcxky47 Scale Protection (Norway)'),
(35141, 'https://ror.org/03acm9457', 'no_lang_code', 1, 'https://ror.org/03acm9457 Parker Maritime (Norway)'),
(35142, 'https://ror.org/021ypf588', 'no_lang_code', 1, 'https://ror.org/021ypf588 Scan4news (Norway)'),
(35143, 'https://ror.org/01xc51294', 'no_lang_code', 1, 'https://ror.org/01xc51294 Scana (Norway)'),
(35144, 'https://ror.org/00r2mkt64', 'no_lang_code', 1, 'https://ror.org/00r2mkt64 Weatherford (Norway)'),
(35145, 'https://ror.org/02mzaws48', 'no_lang_code', 1, 'https://ror.org/02mzaws48 Resman (Norway)'),
(35146, 'https://ror.org/02taagt52', 'no_lang_code', 1, 'https://ror.org/02taagt52 Provista (Norway)'),
(35147, 'https://ror.org/02e29gr04', 'no_lang_code', 1, 'https://ror.org/02e29gr04 Planktonic (Norway)'),
(35148, 'https://ror.org/0327c5w84', 'no_lang_code', 1, 'https://ror.org/0327c5w84 Resonator (Norway)'),
(35149, 'https://ror.org/01k67xz52', 'no_lang_code', 1, 'https://ror.org/01k67xz52 Plany (Norway)'),
(35150, 'https://ror.org/0171xsf67', 'no_lang_code', 1, 'https://ror.org/0171xsf67 Response Nordic (Norway)'),
(35151, 'https://ror.org/04rk73070', 'no_lang_code', 1, 'https://ror.org/04rk73070 Scanmar (Norway)'),
(35152, 'https://ror.org/02a242w84', 'no_lang_code', 1, 'https://ror.org/02a242w84 Savo (Norway)'),
(35153, 'https://ror.org/004r88k74', 'no_lang_code', 1, 'https://ror.org/004r88k74 Prox Dynamics (Norway)'),
(35154, 'https://ror.org/017aag272', 'no_lang_code', 1, 'https://ror.org/017aag272 Scanship (Norway)'),
(35155, 'https://ror.org/05xe9nd50', 'no_lang_code', 1, 'https://ror.org/05xe9nd50 Scantrol (Norway)'),
(35156, 'https://ror.org/03jbfte74', 'no_lang_code', 1, 'https://ror.org/03jbfte74 Restrack (Norway)'),
(35157, 'https://ror.org/00ppwz362', 'no_lang_code', 1, 'https://ror.org/00ppwz362 ScanVacc (Norway)'),
(35158, 'https://ror.org/01x1d6d19', 'no', 1, 'https://ror.org/01x1d6d19 Psykologica'),
(35159, 'https://ror.org/05ezx4n91', 'no', 1, 'https://ror.org/05ezx4n91 Rettspolitisk Forening'),
(35160, 'https://ror.org/002jt8031', 'no_lang_code', 1, 'https://ror.org/002jt8031 PubGene (Norway)'),
(35161, 'https://ror.org/05mwx1x85', 'no_lang_code', 1, 'https://ror.org/05mwx1x85 PXO (Norway)'),
(35162, 'https://ror.org/026t4yj55', 'no_lang_code', 1, 'https://ror.org/026t4yj55 Retura (Norway)'),
(35163, 'https://ror.org/014kzqt55', 'no_lang_code', 1, 'https://ror.org/014kzqt55 Rheumatech (Norway)'),
(35164, 'https://ror.org/0588hkb73', 'no_lang_code', 1, 'https://ror.org/0588hkb73 Quality Management Software (Norway)'),
(35165, 'https://ror.org/01fj3m631', 'en', 1, 'https://ror.org/01fj3m631 Association of Consulting Engineers'),
(35166, 'https://ror.org/0483q4e62', 'en', 1, 'https://ror.org/0483q4e62 Office of the Auditor General of Norway'),
(35167, 'https://ror.org/032ymtx48', 'no_lang_code', 1, 'https://ror.org/032ymtx48 ICR (Norway)'),
(35168, 'https://ror.org/00t7chs43', 'no_lang_code', 1, 'https://ror.org/00t7chs43 R.J.Rygg International (Norway)'),
(35169, 'https://ror.org/00c3nj152', 'no_lang_code', 1, 'https://ror.org/00c3nj152 Sea Urchin Farm (Norway)'),
(35170, 'https://ror.org/02q6tz689', 'no_lang_code', 1, 'https://ror.org/02q6tz689 Rimfrost (Norway)'),
(35171, 'https://ror.org/00nf2y042', 'no_lang_code', 1, 'https://ror.org/00nf2y042 Rindalshytter (Norway)'),
(35172, 'https://ror.org/02b3zmq47', 'en', 1, 'https://ror.org/02b3zmq47 Norwegian Center of Expertise'),
(35173, 'https://ror.org/03gt4py31', 'no_lang_code', 1, 'https://ror.org/03gt4py31 Smartbrain (Norway)'),
(35174, 'https://ror.org/04aynjg70', 'no_lang_code', 1, 'https://ror.org/04aynjg70 Rising Star Products (Norway)'),
(35175, 'https://ror.org/047cs9w11', 'no_lang_code', 1, 'https://ror.org/047cs9w11 SmartCare (Norway)'),
(35176, 'https://ror.org/018jfg264', 'no_lang_code', 1, 'https://ror.org/018jfg264 Seacalx (Norway)'),
(35177, 'https://ror.org/02x0ymb50', 'en', 1, 'https://ror.org/02x0ymb50 Council for Mental Health'),
(35178, 'https://ror.org/00c3hyn70', 'no_lang_code', 1, 'https://ror.org/00c3hyn70 Robot Aviation (Norway)'),
(35179, 'https://ror.org/028fs8s54', 'no_lang_code', 1, 'https://ror.org/028fs8s54 Radionor Communications (Norway)'),
(35180, 'https://ror.org/04h29cm67', 'no_lang_code', 1, 'https://ror.org/04h29cm67 Smartcom:tv (Norway)'),
(35181, 'https://ror.org/00h600x29', 'no_lang_code', 1, 'https://ror.org/00h600x29 Seadrill (Norway)'),
(35182, 'https://ror.org/02he3sm39', 'no_lang_code', 1, 'https://ror.org/02he3sm39 Robotic Drilling Systems (Norway)'),
(35183, 'https://ror.org/01hcbs823', 'en', 1, 'https://ror.org/01hcbs823 Norwegain Radium Hospital Research Foundation'),
(35184, 'https://ror.org/01r53zj15', 'no_lang_code', 1, 'https://ror.org/01r53zj15 Smartfish (Norway)'),
(35185, 'https://ror.org/02pz5h498', 'no_lang_code', 1, 'https://ror.org/02pz5h498 Robotnorge (Norway)'),
(35186, 'https://ror.org/05wgaw739', 'no_lang_code', 1, 'https://ror.org/05wgaw739 Ralston & Bau (Norway)'),
(35187, 'https://ror.org/02bga3905', 'no_lang_code', 1, 'https://ror.org/02bga3905 Rofi (Norway)'),
(35188, 'https://ror.org/024dhg912', 'no_lang_code', 1, 'https://ror.org/024dhg912 Seamless (Norway)'),
(35189, 'https://ror.org/02w96wv37', 'no_lang_code', 1, 'https://ror.org/02w96wv37 Ramboll (Norway)'),
(35190, 'https://ror.org/01q30s265', 'no_lang_code', 1, 'https://ror.org/01q30s265 Searis (Norway)'),
(35191, 'https://ror.org/00bsg1308', 'no_lang_code', 1, 'https://ror.org/00bsg1308 Seram Coatings (Norway)'),
(35192, 'https://ror.org/01jcpms10', 'no_lang_code', 1, 'https://ror.org/01jcpms10 Leonhard Nilsen & SĆønner (Norway)'),
(35193, 'https://ror.org/003t41316', 'en', 1, 'https://ror.org/003t41316 Rogaland Training & Education Centre'),
(35194, 'https://ror.org/02z6zf495', 'no_lang_code', 1, 'https://ror.org/02z6zf495 Seas Fabrikker (Norway)'),
(35195, 'https://ror.org/04a1h1h05', 'no_lang_code', 1, 'https://ror.org/04a1h1h05 Smart Solution (Norway)'),
(35196, 'https://ror.org/04b40n161', 'no_lang_code', 1, 'https://ror.org/04b40n161 Seria (Norway)'),
(35197, 'https://ror.org/007ssvs37', 'no_lang_code', 1, 'https://ror.org/007ssvs37 Seashell (Norway)'),
(35198, 'https://ror.org/03h6wcn09', 'no_lang_code', 1, 'https://ror.org/03h6wcn09 Smerud Medical Research (Norway)'),
(35199, 'https://ror.org/04z3wpq90', 'no_lang_code', 1, 'https://ror.org/04z3wpq90 Setred (Norway)'),
(35200, 'https://ror.org/0272hbz69', 'no_lang_code', 1, 'https://ror.org/0272hbz69 SeaSide (Norway)'),
(35201, 'https://ror.org/03wgydg43', 'no_lang_code', 1, 'https://ror.org/03wgydg43 RollerSafe (Norway)'),
(35202, 'https://ror.org/04dwnx646', 'no_lang_code', 1, 'https://ror.org/04dwnx646 Smi Human (Norway)'),
(35203, 'https://ror.org/0187k6t98', 'no_lang_code', 1, 'https://ror.org/0187k6t98 SES Europe (Norway)'),
(35204, 'https://ror.org/04w708p35', 'no_lang_code', 1, 'https://ror.org/04w708p35 Rolvsoy Metalindustri (Norway)'),
(35205, 'https://ror.org/056c41506', 'no_lang_code', 1, 'https://ror.org/056c41506 Serodus (Norway)'),
(35206, 'https://ror.org/03c4e0176', 'no_lang_code', 1, 'https://ror.org/03c4e0176 Smia Gjerdeprodukter (Norway)'),
(35207, 'https://ror.org/02v4sna49', 'no_lang_code', 1, 'https://ror.org/02v4sna49 Seatower (Norway)'),
(35208, 'https://ror.org/003dc0936', 'no_lang_code', 1, 'https://ror.org/003dc0936 Sero (Norway)'),
(35209, 'https://ror.org/00bdnn422', 'no_lang_code', 1, 'https://ror.org/00bdnn422 Seatrans (Norway)'),
(35210, 'https://ror.org/00nfrej94', 'en', 1, 'https://ror.org/00nfrej94 Norwegian Directorate of Public Construction and Property'),
(35211, 'https://ror.org/046yyy878', 'no_lang_code', 1, 'https://ror.org/046yyy878 Seaweed Energy Solutions (Norway)'),
(35212, 'https://ror.org/04am2ad87', 'no_lang_code', 1, 'https://ror.org/04am2ad87 Seaworks (Norway)'),
(35213, 'https://ror.org/045hhpe19', 'no_lang_code', 1, 'https://ror.org/045hhpe19 Statskog (Norway)'),
(35214, 'https://ror.org/046c79798', 'no_lang_code', 1, 'https://ror.org/046c79798 Snƶball Film (Norway)'),
(35215, 'https://ror.org/01xgb9x41', 'no_lang_code', 1, 'https://ror.org/01xgb9x41 Sway (Norway)'),
(35216, 'https://ror.org/0244tm524', 'no_lang_code', 1, 'https://ror.org/0244tm524 Securenok (Norway)'),
(35217, 'https://ror.org/037pdaj95', 'no_lang_code', 1, 'https://ror.org/037pdaj95 Sheriff Film Company (Norway)'),
(35218, 'https://ror.org/00na8v834', 'no_lang_code', 1, 'https://ror.org/00na8v834 SnĆøgg (Norway)'),
(35219, 'https://ror.org/009vyay43', 'no_lang_code', 1, 'https://ror.org/009vyay43 Stavanger Health Research (Norway)'),
(35220, 'https://ror.org/01tm5gc80', 'no_lang_code', 1, 'https://ror.org/01tm5gc80 Securo (Norway)'),
(35221, 'https://ror.org/05e5vvv83', 'no_lang_code', 1, 'https://ror.org/05e5vvv83 Ship Modelling & Simulation Centre'),
(35222, 'https://ror.org/04jqvmp15', 'no_lang_code', 1, 'https://ror.org/04jqvmp15 Swix Sport (Norway)'),
(35223, 'https://ror.org/03dj06y91', 'no_lang_code', 1, 'https://ror.org/03dj06y91 SnĆøhetta (Norway)'),
(35224, 'https://ror.org/05c1jqg32', 'no_lang_code', 1, 'https://ror.org/05c1jqg32 BMS Kuhn Steel (Norway)'),
(35225, 'https://ror.org/03vsy6588', 'no_lang_code', 1, 'https://ror.org/03vsy6588 Segel (Norway)'),
(35226, 'https://ror.org/010vett18', 'no_lang_code', 1, 'https://ror.org/010vett18 Tieto (Norway)'),
(35227, 'https://ror.org/038ynt641', 'no_lang_code', 1, 'https://ror.org/038ynt641 Symphonical (Norway)'),
(35228, 'https://ror.org/04x20w027', 'no_lang_code', 1, 'https://ror.org/04x20w027 Synthetica (Norway)'),
(35229, 'https://ror.org/05a1hde32', 'no_lang_code', 1, 'https://ror.org/05a1hde32 Sypress Forlag (Norway)'),
(35230, 'https://ror.org/03hrj0y40', 'no_lang_code', 1, 'https://ror.org/03hrj0y40 Syslab International (Norway)'),
(35231, 'https://ror.org/00pr7tv03', 'no_lang_code', 1, 'https://ror.org/00pr7tv03 Shippingcluster (Norway)'),
(35232, 'https://ror.org/05dqc2261', 'no', 1, 'https://ror.org/05dqc2261 Barratt Due'),
(35233, 'https://ror.org/017wtg883', 'no_lang_code', 1, 'https://ror.org/017wtg883 Sogn Aqua (Norway)'),
(35234, 'https://ror.org/002zf0s07', 'no_lang_code', 1, 'https://ror.org/002zf0s07 SystemlĆøsning (Norway)'),
(35235, 'https://ror.org/00jscjq02', 'no_lang_code', 1, 'https://ror.org/00jscjq02 T&G Elektro (Norway)'),
(35236, 'https://ror.org/01f59ee73', 'no', 1, 'https://ror.org/01f59ee73 Sogn RegionrƄd'),
(35237, 'https://ror.org/04a24qj50', 'no', 1, 'https://ror.org/04a24qj50 Stiftelsen Bergensklinikkene'),
(35238, 'https://ror.org/04wcfwt17', 'no_lang_code', 1, 'https://ror.org/04wcfwt17 Tagarno Norge (Norway)'),
(35239, 'https://ror.org/04ncd3k75', 'no', 1, 'https://ror.org/04ncd3k75 Sogndal Fotball'),
(35240, 'https://ror.org/003n39798', 'no_lang_code', 1, 'https://ror.org/003n39798 Talkped (Norway)'),
(35241, 'https://ror.org/054kgv845', 'no_lang_code', 1, 'https://ror.org/054kgv845 Unifeeder (Norway)'),
(35242, 'https://ror.org/0363hbd07', 'no', 1, 'https://ror.org/0363hbd07 Tinn kommune'),
(35243, 'https://ror.org/019f0qd57', 'no_lang_code', 1, 'https://ror.org/019f0qd57 Sognefrukt (Norway)'),
(35244, 'https://ror.org/05nkrhe64', 'no_lang_code', 1, 'https://ror.org/05nkrhe64 Targovax (Norway)'),
(35245, 'https://ror.org/01fwpma03', 'no_lang_code', 1, 'https://ror.org/01fwpma03 KRONOS (Norway)'),
(35246, 'https://ror.org/00y0hrk69', 'no_lang_code', 1, 'https://ror.org/00y0hrk69 Catch Solar Energy (Norway)'),
(35247, 'https://ror.org/011qemc14', 'no_lang_code', 1, 'https://ror.org/011qemc14 SolidTech (Norway)'),
(35248, 'https://ror.org/03bchcy62', 'en', 1, 'https://ror.org/03bchcy62 Tax Justice Network'),
(35249, 'https://ror.org/00zh2nr83', 'no_lang_code', 1, 'https://ror.org/00zh2nr83 Sigla (Norway)'),
(35250, 'https://ror.org/00fs3p617', 'en', 1, 'https://ror.org/00fs3p617 Norwegian Institute of Journalism'),
(35251, 'https://ror.org/057q4k809', 'no_lang_code', 1, 'https://ror.org/057q4k809 Solstad Offshore (Norway)'),
(35252, 'https://ror.org/013exrh58', 'no', 1, 'https://ror.org/013exrh58 Kanvas'),
(35253, 'https://ror.org/01qk21t24', 'no_lang_code', 1, 'https://ror.org/01qk21t24 Toma Mat (Norway)'),
(35254, 'https://ror.org/001g8x550', 'no_lang_code', 1, 'https://ror.org/001g8x550 Solum Forlag (Norway)'),
(35255, 'https://ror.org/04ypbx278', 'no_lang_code', 1, 'https://ror.org/04ypbx278 Sigurd LĆøkeland (Norway)'),
(35256, 'https://ror.org/03fb1av13', 'no_lang_code', 1, 'https://ror.org/03fb1av13 Tomax (Norway)'),
(35257, 'https://ror.org/056zqys57', 'no_lang_code', 1, 'https://ror.org/056zqys57 Solution Seeker (Norway)'),
(35258, 'https://ror.org/035by7v51', 'no', 1, 'https://ror.org/035by7v51 Kappabel'),
(35259, 'https://ror.org/04nkxbz64', 'no_lang_code', 1, 'https://ror.org/04nkxbz64 Tommen Gram Folie (Norway)'),
(35260, 'https://ror.org/05h7a5719', 'no_lang_code', 1, 'https://ror.org/05h7a5719 TeamTec (Norway)'),
(35261, 'https://ror.org/005czd885', 'no_lang_code', 1, 'https://ror.org/005czd885 Simlink (Norway)'),
(35262, 'https://ror.org/02bc4vm73', 'no_lang_code', 1, 'https://ror.org/02bc4vm73 Sonitor Technologies (Norway)'),
(35263, 'https://ror.org/00ps78702', 'no_lang_code', 1, 'https://ror.org/00ps78702 Simicon (Norway)'),
(35264, 'https://ror.org/05p0byv33', 'no_lang_code', 1, 'https://ror.org/05p0byv33 Sonowand (Norway)'),
(35265, 'https://ror.org/022641m79', 'no_lang_code', 1, 'https://ror.org/022641m79 Klar Tale'),
(35266, 'https://ror.org/02vzzsr12', 'no_lang_code', 1, 'https://ror.org/02vzzsr12 Sima (Norway)'),
(35267, 'https://ror.org/036k6sw03', 'en', 1, 'https://ror.org/036k6sw03 Tone Lise Academy'),
(35268, 'https://ror.org/01xqcr941', 'no_lang_code', 1, 'https://ror.org/01xqcr941 TECE Norge (Norway)'),
(35269, 'https://ror.org/05rmtav82', 'no_lang_code', 1, 'https://ror.org/05rmtav82 Silicon Labs (Norway)'),
(35270, 'https://ror.org/010szz537', 'no_lang_code', 1, 'https://ror.org/010szz537 Sorbwater Technology (Norway)'),
(35271, 'https://ror.org/0319n6680', 'no', 1, 'https://ror.org/0319n6680 Kunnskapssenter for Laks og VannmiljĆø'),
(35272, 'https://ror.org/01dxv3z76', 'no_lang_code', 1, 'https://ror.org/01dxv3z76 Tech Damper (Norway)'),
(35273, 'https://ror.org/03zezqe26', 'no_lang_code', 1, 'https://ror.org/03zezqe26 Tool Tech (Norway)'),
(35274, 'https://ror.org/03ky2vw43', 'no_lang_code', 1, 'https://ror.org/03ky2vw43 Topro (Norway)'),
(35275, 'https://ror.org/0226dyd29', 'no', 1, 'https://ror.org/0226dyd29 SĆørlandet Boligbyggelag'),
(35276, 'https://ror.org/05yawxj29', 'no_lang_code', 1, 'https://ror.org/05yawxj29 Single-Phase Power (Norway)'),
(35277, 'https://ror.org/052gr5r08', 'en', 1, 'https://ror.org/052gr5r08 Simula School'),
(35278, 'https://ror.org/020vj5597', 'no', 1, 'https://ror.org/020vj5597 SĆørlandet Kunnskapspark'),
(35279, 'https://ror.org/038a7tx93', 'no', 1, 'https://ror.org/038a7tx93 Materialisten'),
(35280, 'https://ror.org/04w4hwt37', 'no_lang_code', 1, 'https://ror.org/04w4hwt37 Simula Innovation (Norway)'),
(35281, 'https://ror.org/04fnkjm97', 'en', 1, 'https://ror.org/04fnkjm97 South Norway European Office'),
(35282, 'https://ror.org/03b2r8705', 'no', 1, 'https://ror.org/03b2r8705 SĆørlandslisten'),
(35283, 'https://ror.org/05fz42k53', 'no_lang_code', 1, 'https://ror.org/05fz42k53 Simrad (Norway)'),
(35284, 'https://ror.org/02tk6p688', 'no_lang_code', 1, 'https://ror.org/02tk6p688 SimSea (Norway)'),
(35285, 'https://ror.org/03s4f5949', 'no_lang_code', 1, 'https://ror.org/03s4f5949 Techni (Norway)'),
(35286, 'https://ror.org/04efgec06', 'no', 1, 'https://ror.org/04efgec06 Sikkerhetssenteret RĆørvik'),
(35287, 'https://ror.org/01wbmq566', 'no', 1, 'https://ror.org/01wbmq566 Torsken kommune'),
(35288, 'https://ror.org/01yweg667', 'no_lang_code', 1, 'https://ror.org/01yweg667 Simtronics (Norway)'),
(35289, 'https://ror.org/02kqmtt46', 'no_lang_code', 1, 'https://ror.org/02kqmtt46 siRNAsense (Norway)'),
(35290, 'https://ror.org/00vvj5e57', 'no_lang_code', 1, 'https://ror.org/00vvj5e57 TotAl-gruppen (Norway)'),
(35291, 'https://ror.org/05edp6x37', 'en', 1, 'https://ror.org/05edp6x37 Norwegian National Museum of Justice'),
(35292, 'https://ror.org/05gavvk50', 'no_lang_code', 1, 'https://ror.org/05gavvk50 Tectonor (Norway)'),
(35293, 'https://ror.org/04zzhqg11', 'no', 1, 'https://ror.org/04zzhqg11 Studentsamskipnaden i Trondheim'),
(35294, 'https://ror.org/0592jzf54', 'no', 1, 'https://ror.org/0592jzf54 SpareBank 1 Nord-Norge'),
(35295, 'https://ror.org/00r5q3093', 'no', 1, 'https://ror.org/00r5q3093 Norsk SjĆømatsenter'),
(35296, 'https://ror.org/00dcw5152', 'no_lang_code', 1, 'https://ror.org/00dcw5152 Teddy TV (Norway)'),
(35297, 'https://ror.org/02hzxf772', 'no_lang_code', 1, 'https://ror.org/02hzxf772 Sitma (Norway)'),
(35298, 'https://ror.org/02vdp4743', 'no_lang_code', 1, 'https://ror.org/02vdp4743 TraceTracker (Norway)'),
(35299, 'https://ror.org/01py34264', 'no', 1, 'https://ror.org/01py34264 Sparebankforeningen i Norge'),
(35300, 'https://ror.org/05xvhkb42', 'no_lang_code', 1, 'https://ror.org/05xvhkb42 TracID (Norway)'),
(35301, 'https://ror.org/00qwdz285', 'no_lang_code', 1, 'https://ror.org/00qwdz285 Teekay (Norway)'),
(35302, 'https://ror.org/0387h3509', 'no_lang_code', 1, 'https://ror.org/0387h3509 Spartacus Forlag (Norway)'),
(35303, 'https://ror.org/01rmmxf18', 'no_lang_code', 1, 'https://ror.org/01rmmxf18 TEGma (Norway)'),
(35304, 'https://ror.org/039xdzv43', 'en', 1, 'https://ror.org/039xdzv43 Norwegian Maritime Authority'),
(35305, 'https://ror.org/04v1f7r08', 'en', 1, 'https://ror.org/04v1f7r08 Museum of Migration'),
(35306, 'https://ror.org/01fmmx322', 'no_lang_code', 1, 'https://ror.org/01fmmx322 Tekna (Norway)'),
(35307, 'https://ror.org/017jtm929', 'no', 1, 'https://ror.org/017jtm929 Polaria'),
(35308, 'https://ror.org/05yaygt56', 'no_lang_code', 1, 'https://ror.org/05yaygt56 Spermatech (Norway)'),
(35309, 'https://ror.org/02dmket45', 'no', 1, 'https://ror.org/02dmket45 Transparency International Norge'),
(35310, 'https://ror.org/016peqn40', 'no_lang_code', 1, 'https://ror.org/016peqn40 Teknisk Lys (Norway)'),
(35311, 'https://ror.org/03z0dd375', 'en', 1, 'https://ror.org/03z0dd375 Seed Forum'),
(35312, 'https://ror.org/0559rdv60', 'no_lang_code', 1, 'https://ror.org/0559rdv60 Spesialprodukter SĆør (Norway)'),
(35313, 'https://ror.org/02pknm559', 'no', 1, 'https://ror.org/02pknm559 Skedsmo kommune'),
(35314, 'https://ror.org/02jjgkb92', 'en', 1, 'https://ror.org/02jjgkb92 Telemark Research Institute'),
(35315, 'https://ror.org/00z451h60', 'no_lang_code', 1, 'https://ror.org/00z451h60 Trefokus (Norway)'),
(35316, 'https://ror.org/05abjx080', 'no_lang_code', 1, 'https://ror.org/05abjx080 Spider Solutions (Norway)'),
(35317, 'https://ror.org/027snk764', 'no_lang_code', 1, 'https://ror.org/027snk764 SpinChip Diagnostics (Norway)'),
(35318, 'https://ror.org/013afsb92', 'no_lang_code', 1, 'https://ror.org/013afsb92 Spiro Medical (Norway)'),
(35319, 'https://ror.org/0364zga38', 'no_lang_code', 1, 'https://ror.org/0364zga38 Det Norske Samlaget (Norway)'),
(35320, 'https://ror.org/05v1bgc28', 'no_lang_code', 1, 'https://ror.org/05v1bgc28 Treindustrien (Norway)'),
(35321, 'https://ror.org/04y5m6789', 'no', 1, 'https://ror.org/04y5m6789 Stiftinga For Folkemusikk og Folkedans'),
(35322, 'https://ror.org/0424mj572', 'no_lang_code', 1, 'https://ror.org/0424mj572 Stimline (Norway)'),
(35323, 'https://ror.org/04tvje441', 'no_lang_code', 1, 'https://ror.org/04tvje441 Stinger Technology (Norway)'),
(35324, 'https://ror.org/04xxxy475', 'no_lang_code', 1, 'https://ror.org/04xxxy475 SquareHead Technology (Norway)'),
(35325, 'https://ror.org/0346psp61', 'no_lang_code', 1, 'https://ror.org/0346psp61 Ulstein Group (Norway)'),
(35326, 'https://ror.org/02nywzg97', 'no', 1, 'https://ror.org/02nywzg97 Tresenteret'),
(35327, 'https://ror.org/0591rz722', 'no_lang_code', 1, 'https://ror.org/0591rz722 Triad (Norway)'),
(35328, 'https://ror.org/05d3ht335', 'no_lang_code', 1, 'https://ror.org/05d3ht335 Ultimovacs (Norway)'),
(35329, 'https://ror.org/055frmz88', 'no_lang_code', 1, 'https://ror.org/055frmz88 Teknomedia (Norway)'),
(35330, 'https://ror.org/0316g6k10', 'no_lang_code', 1, 'https://ror.org/0316g6k10 Store Norske (Norway)'),
(35331, 'https://ror.org/0402vjj88', 'no_lang_code', 1, 'https://ror.org/0402vjj88 Trilobite (Norway)'),
(35332, 'https://ror.org/01pf53a69', 'no', 1, 'https://ror.org/01pf53a69 Storfjord Kommune'),
(35333, 'https://ror.org/00njcfy31', 'no_lang_code', 1, 'https://ror.org/00njcfy31 Standard Bio (Norway)'),
(35334, 'https://ror.org/02p1tbs51', 'no_lang_code', 1, 'https://ror.org/02p1tbs51 Trollhetta (Norway)'),
(35335, 'https://ror.org/00q0t9719', 'no_lang_code', 1, 'https://ror.org/00q0t9719 StormGeo (Norway)'),
(35336, 'https://ror.org/027kfm928', 'no_lang_code', 1, 'https://ror.org/027kfm928 Troms Kraft (Norway)'),
(35337, 'https://ror.org/02ekw8p73', 'no', 1, 'https://ror.org/02ekw8p73 Teknova'),
(35338, 'https://ror.org/000fr0609', 'no_lang_code', 1, 'https://ror.org/000fr0609 Stangeskovene (Norway)'),
(35339, 'https://ror.org/011s3c574', 'no_lang_code', 1, 'https://ror.org/011s3c574 Stranda Prolog (Norway)'),
(35340, 'https://ror.org/007cf5b05', 'no_lang_code', 1, 'https://ror.org/007cf5b05 Star Information Systems (Norway)'),
(35341, 'https://ror.org/03ayyme69', 'no', 1, 'https://ror.org/03ayyme69 Troms Fylkeskommune'),
(35342, 'https://ror.org/04bsrdh64', 'en', 1, 'https://ror.org/04bsrdh64 StrĆømme Foundation'),
(35343, 'https://ror.org/02djg1003', 'no_lang_code', 1, 'https://ror.org/02djg1003 Trolltind (Norway)'),
(35344, 'https://ror.org/043jqct61', 'no', 1, 'https://ror.org/043jqct61 Start Norge'),
(35345, 'https://ror.org/03rwraz38', 'no_lang_code', 1, 'https://ror.org/03rwraz38 Baader Food Processing Machinery (Norway)'),
(35346, 'https://ror.org/01zmf6239', 'no_lang_code', 1, 'https://ror.org/01zmf6239 Strongpoint (Norway)'),
(35347, 'https://ror.org/01x5kq968', 'no', 1, 'https://ror.org/01x5kq968 Studix'),
(35348, 'https://ror.org/040y85z67', 'no_lang_code', 1, 'https://ror.org/040y85z67 Tidewater (Norway)'),
(35349, 'https://ror.org/00cwj5j78', 'no_lang_code', 1, 'https://ror.org/00cwj5j78 Tele-Com (Norway)'),
(35350, 'https://ror.org/023f84a29', 'no_lang_code', 1, 'https://ror.org/023f84a29 Statkraft (Norway)'),
(35351, 'https://ror.org/03se7gq11', 'no_lang_code', 1, 'https://ror.org/03se7gq11 Subhydro (Norway)'),
(35352, 'https://ror.org/05dq2qj05', 'no', 1, 'https://ror.org/05dq2qj05 Telemark County Council Telemark Fylkeskommune'),
(35353, 'https://ror.org/053vdc408', 'no_lang_code', 1, 'https://ror.org/053vdc408 Subsea Chokes International (Norway)'),
(35354, 'https://ror.org/02ddbzq19', 'no_lang_code', 1, 'https://ror.org/02ddbzq19 Subsea Smart Solutions (Norway)'),
(35355, 'https://ror.org/049whr973', 'no_lang_code', 1, 'https://ror.org/049whr973 Teleplan Consulting (Norway)'),
(35356, 'https://ror.org/04td70f50', 'no_lang_code', 1, 'https://ror.org/04td70f50 Ulltveit-Moe Group (Norway)'),
(35357, 'https://ror.org/01hw8wm79', 'no_lang_code', 1, 'https://ror.org/01hw8wm79 TrĆøndelag Forskning og Utvikling (Norway)'),
(35358, 'https://ror.org/02k4een92', 'no_lang_code', 1, 'https://ror.org/02k4een92 Vaxxinova (Norway)'),
(35359, 'https://ror.org/00ycas454', 'no_lang_code', 1, 'https://ror.org/00ycas454 Telio (Norway)'),
(35360, 'https://ror.org/04s4d8021', 'no_lang_code', 1, 'https://ror.org/04s4d8021 TrĆønderEnergi (Norway)'),
(35361, 'https://ror.org/01exddw17', 'no_lang_code', 1, 'https://ror.org/01exddw17 Tellu (Norway)'),
(35362, 'https://ror.org/00r4x3y44', 'no_lang_code', 1, 'https://ror.org/00r4x3y44 Vectron Biosolutions (Norway)'),
(35363, 'https://ror.org/03t6hvd19', 'no', 1, 'https://ror.org/03t6hvd19 Suldal Kommune'),
(35364, 'https://ror.org/0509azq23', 'no_lang_code', 1, 'https://ror.org/0509azq23 Tendeka (Norway)'),
(35365, 'https://ror.org/01vdq2v07', 'no', 1, 'https://ror.org/01vdq2v07 Trondheim Havn IKS'),
(35366, 'https://ror.org/02fd97s83', 'no', 1, 'https://ror.org/02fd97s83 TrĆøndelags Europakontor'),
(35367, 'https://ror.org/05qs3gc73', 'no_lang_code', 1, 'https://ror.org/05qs3gc73 Fram Flora (Norway)'),
(35368, 'https://ror.org/03j3ybc16', 'no_lang_code', 1, 'https://ror.org/03j3ybc16 Vedde (Norway)'),
(35369, 'https://ror.org/052rvmw54', 'no_lang_code', 1, 'https://ror.org/052rvmw54 Underbakke (Norway)'),
(35370, 'https://ror.org/00e6njw97', 'no_lang_code', 1, 'https://ror.org/00e6njw97 SunSense (Norway)'),
(35371, 'https://ror.org/02rbj4561', 'no_lang_code', 1, 'https://ror.org/02rbj4561 Tronrud Engineering (Norway)'),
(35372, 'https://ror.org/00deak765', 'no_lang_code', 1, 'https://ror.org/00deak765 Veidekke (Norway)'),
(35373, 'https://ror.org/03fevrz39', 'no_lang_code', 1, 'https://ror.org/03fevrz39 SuperOffice (Norway)'),
(35374, 'https://ror.org/00tajj279', 'no', 1, 'https://ror.org/00tajj279 Unge aksjonƦrer'),
(35375, 'https://ror.org/01t1wff71', 'no', 1, 'https://ror.org/01t1wff71 Tenketanken Tau'),
(35376, 'https://ror.org/04zfra764', 'no_lang_code', 1, 'https://ror.org/04zfra764 Unger Fabrikker (Norway)'),
(35377, 'https://ror.org/057hmyk78', 'no', 1, 'https://ror.org/057hmyk78 Ungt EntreprenĆørskap'),
(35378, 'https://ror.org/05gwzej73', 'no_lang_code', 1, 'https://ror.org/05gwzej73 Trustper (Norway)'),
(35379, 'https://ror.org/059fh8358', 'no_lang_code', 1, 'https://ror.org/059fh8358 Trysil Kommune'),
(35380, 'https://ror.org/00vqmcb18', 'no_lang_code', 1, 'https://ror.org/00vqmcb18 Verdal Inspection and Technology Center (Norway)'),
(35381, 'https://ror.org/05x32yq84', 'no_lang_code', 1, 'https://ror.org/05x32yq84 Svorka (Norway)'),
(35382, 'https://ror.org/059xg9r41', 'no_lang_code', 1, 'https://ror.org/059xg9r41 Unified Messaging Systems (Norway)'),
(35383, 'https://ror.org/00zjkp172', 'no_lang_code', 1, 'https://ror.org/00zjkp172 Tsat (Norway)'),
(35384, 'https://ror.org/01dscr755', 'no_lang_code', 1, 'https://ror.org/01dscr755 Termorens (Norway)'),
(35385, 'https://ror.org/04d3fgy68', 'no_lang_code', 1, 'https://ror.org/04d3fgy68 Svovel (Norway)'),
(35386, 'https://ror.org/04vfeym88', 'en', 1, 'https://ror.org/04vfeym88 Norwegian Fund and Asset Management Association'),
(35387, 'https://ror.org/03hy7r126', 'no_lang_code', 1, 'https://ror.org/03hy7r126 Warm Systems (Norway)'),
(35388, 'https://ror.org/02knacy77', 'no_lang_code', 1, 'https://ror.org/02knacy77 TV 2 (Norway)'),
(35389, 'https://ror.org/01z3h6v80', 'en', 1, 'https://ror.org/01z3h6v80 Norwegian Securities Dealers Association'),
(35390, 'https://ror.org/03xdw5e88', 'no_lang_code', 1, 'https://ror.org/03xdw5e88 Typhonix (Norway)'),
(35391, 'https://ror.org/01jdhnc41', 'no_lang_code', 1, 'https://ror.org/01jdhnc41 WƤrtsilƤ (Norway)'),
(35392, 'https://ror.org/05g0fhs68', 'no_lang_code', 1, 'https://ror.org/05g0fhs68 Washington Mills (Norway)'),
(35393, 'https://ror.org/019wmzy95', 'no_lang_code', 1, 'https://ror.org/019wmzy95 VS Safety (Norway)'),
(35394, 'https://ror.org/00930df66', 'no_lang_code', 1, 'https://ror.org/00930df66 Ulefos Esco (Norway)'),
(35395, 'https://ror.org/00tya8c87', 'no_lang_code', 1, 'https://ror.org/00tya8c87 Terratec (Norway)'),
(35396, 'https://ror.org/05cswb132', 'no_lang_code', 1, 'https://ror.org/05cswb132 Texas Instruments (Norway)'),
(35397, 'https://ror.org/03wsafn70', 'no_lang_code', 1, 'https://ror.org/03wsafn70 VeriSat (Norway)'),
(35398, 'https://ror.org/03rad7938', 'no_lang_code', 1, 'https://ror.org/03rad7938 Vest i Havet (Norway)'),
(35399, 'https://ror.org/05tnf6s41', 'no_lang_code', 1, 'https://ror.org/05tnf6s41 Wave Propulsion (Norway)'),
(35400, 'https://ror.org/04q4re318', 'no_lang_code', 1, 'https://ror.org/04q4re318 GGG (Norway)'),
(35401, 'https://ror.org/031xv5t30', 'no', 1, 'https://ror.org/031xv5t30 Urban SjĆøfront'),
(35402, 'https://ror.org/0120sbw19', 'no_lang_code', 1, 'https://ror.org/0120sbw19 Norwegian Directorate for Education and Training Utdanningsdirektoratet'),
(35403, 'https://ror.org/00gwbbj79', 'no_lang_code', 1, 'https://ror.org/00gwbbj79 Xepto (Norway)'),
(35404, 'https://ror.org/01z5a7f98', 'en', 1, 'https://ror.org/01z5a7f98 Webstudent'),
(35405, 'https://ror.org/02vfz1845', 'no_lang_code', 1, 'https://ror.org/02vfz1845 Weifa (Norway)'),
(35406, 'https://ror.org/015g7kj97', 'no_lang_code', 1, 'https://ror.org/015g7kj97 Xrgia (Norway)'),
(35407, 'https://ror.org/03vm72742', 'no', 1, 'https://ror.org/03vm72742 Vest-TelemarkrƄdet'),
(35408, 'https://ror.org/00aaeae98', 'no_lang_code', 1, 'https://ror.org/00aaeae98 XTronica (Norway)'),
(35409, 'https://ror.org/05gey1s27', 'no_lang_code', 1, 'https://ror.org/05gey1s27 Thales (Norway)'),
(35410, 'https://ror.org/02vn96q13', 'no_lang_code', 1, 'https://ror.org/02vn96q13 Vestdavit (Norway)'),
(35411, 'https://ror.org/05qf9ct67', 'no', 1, 'https://ror.org/05qf9ct67 VƄgan kommune'),
(35412, 'https://ror.org/04488qt04', 'en', 1, 'https://ror.org/04488qt04 Congress-Conference'),
(35413, 'https://ror.org/05fh9da77', 'no_lang_code', 1, 'https://ror.org/05fh9da77 Z Energi (Norway)'),
(35414, 'https://ror.org/009tejc24', 'no_lang_code', 1, 'https://ror.org/009tejc24 Zaptec (Norway)'),
(35415, 'https://ror.org/042k07j95', 'no_lang_code', 1, 'https://ror.org/042k07j95 Quartz Corp (Norway)'),
(35416, 'https://ror.org/02e5y0e76', 'no', 1, 'https://ror.org/02e5y0e76 Valdres Folkemuseum'),
(35417, 'https://ror.org/00emgcm32', 'no_lang_code', 1, 'https://ror.org/00emgcm32 Vallvi (Norway)'),
(35418, 'https://ror.org/05rm0bg60', 'no_lang_code', 1, 'https://ror.org/05rm0bg60 Thelma Biotel (Norway)'),
(35419, 'https://ror.org/04ehae637', 'no_lang_code', 1, 'https://ror.org/04ehae637 Therma Industri (Norway)'),
(35420, 'https://ror.org/00m94xd51', 'no_lang_code', 1, 'https://ror.org/00m94xd51 Thermtech (Norway)'),
(35421, 'https://ror.org/02r8dvt87', 'no_lang_code', 1, 'https://ror.org/02r8dvt87 Thinfilm (Norway)'),
(35422, 'https://ror.org/00n4e0w09', 'no_lang_code', 1, 'https://ror.org/00n4e0w09 ZEG Power (Norway)'),
(35423, 'https://ror.org/0076czt51', 'no_lang_code', 1, 'https://ror.org/0076czt51 Metas (Norway)'),
(35424, 'https://ror.org/043tanr92', 'no', 1, 'https://ror.org/043tanr92 Ɓrran JulevsƔme GuovdƔsj Lulesamisk Senter'),
(35425, 'https://ror.org/00hkhkg72', 'no_lang_code', 1, 'https://ror.org/00hkhkg72 ZEM (Norway)'),
(35426, 'https://ror.org/00cb94380', 'no', 1, 'https://ror.org/00cb94380 Valnesfjord Helsesportssenter'),
(35427, 'https://ror.org/045fwjn44', 'no_lang_code', 1, 'https://ror.org/045fwjn44 Wellcem (Norway)'),
(35428, 'https://ror.org/01277af53', 'no_lang_code', 1, 'https://ror.org/01277af53 Zenitel (Norway)'),
(35429, 'https://ror.org/0013ka569', 'no_lang_code', 1, 'https://ror.org/0013ka569 Wenaas Workwear (Norway)'),
(35430, 'https://ror.org/03qg3qz10', 'no', 1, 'https://ror.org/03qg3qz10 Vestskog'),
(35431, 'https://ror.org/043tfr230', 'en', 1, 'https://ror.org/043tfr230 Institute of Neurosciences, Mental Health and Addiction'),
(35432, 'https://ror.org/01549pn89', 'no_lang_code', 1, 'https://ror.org/01549pn89 West Group (Norway)'),
(35433, 'https://ror.org/04hyzh408', 'no', 1, 'https://ror.org/04hyzh408 VestvÄgøy Kommune'),
(35434, 'https://ror.org/00s0b8a75', 'en', 1, 'https://ror.org/00s0b8a75 Institute of Human Development, Child and Youth Health'),
(35435, 'https://ror.org/05ve4qs86', 'no_lang_code', 1, 'https://ror.org/05ve4qs86 Olav Thon (Norway)'),
(35436, 'https://ror.org/03vbt0765', 'en', 1, 'https://ror.org/03vbt0765 Institute of Gender and Health'),
(35437, 'https://ror.org/00dpztj76', 'en', 1, 'https://ror.org/00dpztj76 Institute of Cancer Research'),
(35438, 'https://ror.org/05yg59x49', 'no_lang_code', 1, 'https://ror.org/05yg59x49 Thrace Polybulk (Norway)'),
(35439, 'https://ror.org/0091yh482', 'en', 1, 'https://ror.org/0091yh482 Institute of Health Services and Policy Research'),
(35440, 'https://ror.org/0245knx74', 'no_lang_code', 1, 'https://ror.org/0245knx74 Tidal Sails (Norway)'),
(35441, 'https://ror.org/02g38qb36', 'no_lang_code', 1, 'https://ror.org/02g38qb36 VARD (Norway)'),
(35442, 'https://ror.org/03b5r3y93', 'no', 1, 'https://ror.org/03b5r3y93 Wikimedia Norge'),
(35443, 'https://ror.org/02e07gw14', 'no_lang_code', 1, 'https://ror.org/02e07gw14 Wilh. Wilhelmsen (Norway)'),
(35444, 'https://ror.org/05rzahq86', 'no_lang_code', 1, 'https://ror.org/05rzahq86 WindSim (Norway)'),
(35445, 'https://ror.org/00tcrkx08', 'no_lang_code', 1, 'https://ror.org/00tcrkx08 Vardar (Norway)'),
(35446, 'https://ror.org/04krpa529', 'no_lang_code', 1, 'https://ror.org/04krpa529 WindMaster Technologies'),
(35447, 'https://ror.org/03gwhmn95', 'en', 1, 'https://ror.org/03gwhmn95 Institute of Genetics'),
(35448, 'https://ror.org/01zhqzf22', 'no_lang_code', 1, 'https://ror.org/01zhqzf22 VardĆø Barents Base (Norway)'),
(35449, 'https://ror.org/05qfcgb18', 'no', 1, 'https://ror.org/05qfcgb18 VardĆø kommune'),
(35450, 'https://ror.org/044mbfr67', 'en', 1, 'https://ror.org/044mbfr67 Institute of Aging'),
(35451, 'https://ror.org/01f11rr66', 'no_lang_code', 1, 'https://ror.org/01f11rr66 Hegnar Media (Norway)'),
(35452, 'https://ror.org/03jpq8k18', 'no_lang_code', 1, 'https://ror.org/03jpq8k18 Wireless Instrumentation Systems (Norway)'),
(35453, 'https://ror.org/05kbnvp43', 'no_lang_code', 1, 'https://ror.org/05kbnvp43 Varier (Norway)'),
(35454, 'https://ror.org/0425b0029', 'no_lang_code', 1, 'https://ror.org/0425b0029 Vartdal Plast (Norway)'),
(35455, 'https://ror.org/04jh1kc52', 'no_lang_code', 1, 'https://ror.org/04jh1kc52 Wirescan (Norway)'),
(35456, 'https://ror.org/0337pwh54', 'no_lang_code', 1, 'https://ror.org/0337pwh54 WiSub (Norway)'),
(35457, 'https://ror.org/00c92tc34', 'no_lang_code', 1, 'https://ror.org/00c92tc34 Viking Development Group (Norway)'),
(35458, 'https://ror.org/04aza8v20', 'no_lang_code', 1, 'https://ror.org/04aza8v20 Wireless Power & Communication (Norway)'),
(35459, 'https://ror.org/05hj6ps60', 'no', 1, 'https://ror.org/05hj6ps60 Vikna Kommune'),
(35460, 'https://ror.org/00e6xyd22', 'no_lang_code', 1, 'https://ror.org/00e6xyd22 TideTec (Norway)'),
(35461, 'https://ror.org/03cdqv492', 'no_lang_code', 1, 'https://ror.org/03cdqv492 Timm (Norway)'),
(35462, 'https://ror.org/04mcehe57', 'no_lang_code', 1, 'https://ror.org/04mcehe57 Tind Technologies (Norway)'),
(35463, 'https://ror.org/05gzt5s45', 'no_lang_code', 1, 'https://ror.org/05gzt5s45 Viscenario (Norway)'),
(35464, 'https://ror.org/00zsg1530', 'no_lang_code', 1, 'https://ror.org/00zsg1530 Vision iO (Norway)'),
(35465, 'https://ror.org/02346dc53', 'no_lang_code', 1, 'https://ror.org/02346dc53 Visitech (Norway)'),
(35466, 'https://ror.org/0295npy46', 'no_lang_code', 1, 'https://ror.org/0295npy46 Zeracryl (Norway)'),
(35467, 'https://ror.org/04evhzp91', 'fr', 1, 'https://ror.org/04evhzp91 Agence Science Presse'),
(35468, 'https://ror.org/04e9sck44', 'no_lang_code', 1, 'https://ror.org/04e9sck44 Visma (Norway)'),
(35469, 'https://ror.org/03j5ebv52', 'en', 1, 'https://ror.org/03j5ebv52 Zero Emissions Resource Organisation'),
(35470, 'https://ror.org/009mq9d73', 'en', 1, 'https://ror.org/009mq9d73 Agence universitaire de la Francophonie Francophone University Association'),
(35471, 'https://ror.org/05tq83t16', 'no_lang_code', 1, 'https://ror.org/05tq83t16 Ziebel (Norway)'),
(35472, 'https://ror.org/03j5m6417', 'no_lang_code', 1, 'https://ror.org/03j5m6417 Vista Analyse (Norway)'),
(35473, 'https://ror.org/041c8tt83', 'fr', 1, 'https://ror.org/041c8tt83 Centres IntƩgrƩ Universitaires de SantƩ et de Services Sociaux'),
(35474, 'https://ror.org/04zbxvv62', 'no_lang_code', 1, 'https://ror.org/04zbxvv62 Zoaring (Norway)'),
(35475, 'https://ror.org/0403fs498', 'no_lang_code', 1, 'https://ror.org/0403fs498 Vista Utredning (Norway)'),
(35476, 'https://ror.org/05xdv6s36', 'en', 1, 'https://ror.org/05xdv6s36 Association internationale de science politique International Political Science Association'),
(35477, 'https://ror.org/05mkwhv74', 'en', 1, 'https://ror.org/05mkwhv74 CollĆØge militaire royal de Saint-Jean Royal Military College Saint-Jean'),
(35478, 'https://ror.org/00fxawc57', 'no_lang_code', 1, 'https://ror.org/00fxawc57 Visual Solutions (Norway)'),
(35479, 'https://ror.org/05fhv3964', 'fr', 1, 'https://ror.org/05fhv3964 Association Internationale des Ɖtudes QuĆ©bĆ©coises'),
(35480, 'https://ror.org/01yyc4w33', 'no_lang_code', 1, 'https://ror.org/01yyc4w33 Vidarforlaget (Norway)'),
(35481, 'https://ror.org/05kqg2j33', 'fr', 1, 'https://ror.org/05kqg2j33 CollĆØge Montmorency'),
(35482, 'https://ror.org/04hdhsf72', 'no_lang_code', 1, 'https://ror.org/04hdhsf72 Visuray (Norway)'),
(35483, 'https://ror.org/019c3k705', 'no_lang_code', 1, 'https://ror.org/019c3k705 Vitality Innovation (Norway)'),
(35484, 'https://ror.org/0153jrn34', 'en', 1, 'https://ror.org/0153jrn34 Champlain Regional College Collège régional champlain de saint-lambert'),
(35485, 'https://ror.org/056v9a321', 'en', 1, 'https://ror.org/056v9a321 Caneus International'),
(35486, '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'),
(35487, 'https://ror.org/053pw6b94', 'no_lang_code', 1, 'https://ror.org/053pw6b94 Vitenparken'),
(35488, 'https://ror.org/04wfzsh36', 'no_lang_code', 1, 'https://ror.org/04wfzsh36 CapCOGITO (Canada)'),
(35489, 'https://ror.org/042y68y70', 'no', 1, 'https://ror.org/042y68y70 Trondheim Science Museum Vitensenteret i Trondheim'),
(35490, 'https://ror.org/05rxd1q58', 'fr', 1, 'https://ror.org/05rxd1q58 CƩgep de l''Outaouais'),
(35491, 'https://ror.org/059jbqt71', 'fr', 1, 'https://ror.org/059jbqt71 Institut du Nouveau Monde'),
(35492, 'https://ror.org/05hd3bg98', 'no', 1, 'https://ror.org/05hd3bg98 Science Center of Innlandet Vitensenteret Innlandet'),
(35493, 'https://ror.org/0572dex65', 'no', 1, 'https://ror.org/0572dex65 Vitensenteret SĆørlandet'),
(35494, 'https://ror.org/04yr0ey26', 'fr', 1, 'https://ror.org/04yr0ey26 RĆ©seau Technoscience Saguenay–Lac-Saint-Jean'),
(35495, 'https://ror.org/01zzvpv85', 'fr', 1, 'https://ror.org/01zzvpv85 CƩgep de Saint-Laurent'),
(35496, 'https://ror.org/02jmyy013', 'fr', 1, 'https://ror.org/02jmyy013 CƩgep du Vieux MontrƩal'),
(35497, 'https://ror.org/0235t2b60', 'fr', 1, 'https://ror.org/0235t2b60 Centre des Sciences de MontrƩal'),
(35498, 'https://ror.org/00gnjv286', 'no_lang_code', 1, 'https://ror.org/00gnjv286 VivID (Norway)'),
(35499, 'https://ror.org/02p68mp54', 'no_lang_code', 1, 'https://ror.org/02p68mp54 Voca (Norway)'),
(35500, 'https://ror.org/05351er27', 'no_lang_code', 1, 'https://ror.org/05351er27 VoiceASP (Norway)'),
(35501, 'https://ror.org/03pda7361', 'no', 1, 'https://ror.org/03pda7361 Voss Kommune'),
(35502, 'https://ror.org/02thtn249', 'fr', 1, 'https://ror.org/02thtn249 KƩroul'),
(35503, 'https://ror.org/03svm3p52', 'no', 1, 'https://ror.org/03svm3p52 VitenWahl Andreas Wahl'),
(35504, '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'),
(35505, 'https://ror.org/04pgq1648', 'fr', 1, 'https://ror.org/04pgq1648 Centre de Liaison Sur l''Intervention et la PrƩvention Psychosociales'),
(35506, 'https://ror.org/04yxrt293', 'fr', 1, 'https://ror.org/04yxrt293 Ordre des Psychologues du QuƩbec'),
(35507, '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'),
(35508, 'https://ror.org/05xamdp54', 'fr', 1, 'https://ror.org/05xamdp54 Le Fresnoy - Studio National des Arts Contemporains'),
(35509, 'https://ror.org/05bxqp605', 'fr', 1, 'https://ror.org/05bxqp605 RƩseau QuƩbƩcois en Innovation Sociale'),
(35510, 'https://ror.org/00x1wkj06', 'fr', 1, 'https://ror.org/00x1wkj06 Robotique FIRST QuƩbec'),
(35511, 'https://ror.org/01ne8cy78', 'fr', 1, 'https://ror.org/01ne8cy78 Salon Carrière Formation de Québec'),
(35512, 'https://ror.org/00p4fjt47', 'en', 1, 'https://ror.org/00p4fjt47 Innovation Maritime'),
(35513, 'https://ror.org/04qze1e43', 'fr', 1, 'https://ror.org/04qze1e43 MontrƩal InVivo'),
(35514, 'https://ror.org/02nqgwy66', 'en', 1, 'https://ror.org/02nqgwy66 Institut de la Statistique du QuƩbec Quebec Statistical Institute'),
(35515, 'https://ror.org/0499krd69', 'fr', 1, 'https://ror.org/0499krd69 Museum of Civilization MusƩe de la Civilisation'),
(35516, 'https://ror.org/030t4re78', 'fr', 1, 'https://ror.org/030t4re78 MusƩe du Fjord'),
(35517, 'https://ror.org/01bgked92', 'fr', 1, 'https://ror.org/01bgked92 Centre de SantƩ et de Services Sociaux de la Montagne'),
(35518, 'https://ror.org/01h6cpb10', 'fr', 1, 'https://ror.org/01h6cpb10 Centre de SantƩ et de Services Sociaux de la Vieille-Capitale'),
(35519, 'https://ror.org/012bzsw43', 'en', 1, 'https://ror.org/012bzsw43 Danish National Institute of Public Health Statens Institut for Folkesundhed'),
(35520, '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'),
(35521, 'https://ror.org/043f3ea85', 'fr', 1, 'https://ror.org/043f3ea85 Centre de Transfert Pour la RƩussite Educative du QuƩbec'),
(35522, 'https://ror.org/035sj1s35', 'fr', 1, 'https://ror.org/035sj1s35 Service de Recherche et d''EXpertise en Transformation des Produits Forestiers'),
(35523, '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'),
(35524, 'https://ror.org/05p0hpp38', 'en', 1, 'https://ror.org/05p0hpp38 Society for Arts and Technology SociƩtƩ des Arts Technologiques'),
(35525, 'https://ror.org/01wfedj41', 'it', 1, 'https://ror.org/01wfedj41 Ospedale Cervesi di Cattolica'),
(35526, 'https://ror.org/03t6npk27', 'en', 1, 'https://ror.org/03t6npk27 Old Port of Montreal Corporation SociƩtƩ du Vieux-Port de MontrƩal'),
(35527, 'https://ror.org/04y52r328', 'en', 1, 'https://ror.org/04y52r328 Novika Solutions'),
(35528, 'https://ror.org/003x1ca72', 'en', 1, 'https://ror.org/003x1ca72 Clark Art Institute Instituto de Arte Clark'),
(35529, 'https://ror.org/03xaygd04', 'fr', 1, 'https://ror.org/03xaygd04 Centre QuƩbƩcois du P.E.N. International'),
(35530, 'https://ror.org/018samx11', 'en', 1, 'https://ror.org/018samx11 Zone01 Robotics'),
(35531, 'https://ror.org/02rrvb782', 'fr', 1, 'https://ror.org/02rrvb782 Quebec Television Broadcasting Corporation TƩlƩ-QuƩbec'),
(35532, 'https://ror.org/038b7sx49', 'no_lang_code', 1, 'https://ror.org/038b7sx49 Adaptimmune (United Kingdom)'),
(35533, 'https://ror.org/01ra53y91', 'en', 1, 'https://ror.org/01ra53y91 Aditya Birla Memorial Hospital'),
(35534, 'https://ror.org/03tjs3938', 'en', 1, 'https://ror.org/03tjs3938 BLK Super Speciality Hospital'),
(35535, 'https://ror.org/0174nta86', 'es', 1, 'https://ror.org/0174nta86 Hospital Alto Guadalquivir'),
(35536, 'https://ror.org/0440dpw16', 'no_lang_code', 1, 'https://ror.org/0440dpw16 Advanced Fiber Resources (China)'),
(35537, 'https://ror.org/046f4h193', 'no_lang_code', 1, 'https://ror.org/046f4h193 Abcodia (United Kingdom)'),
(35538, 'https://ror.org/0353d6x38', 'no_lang_code', 1, 'https://ror.org/0353d6x38 Amarin (United States)'),
(35539, 'https://ror.org/01g6hae70', 'no_lang_code', 1, 'https://ror.org/01g6hae70 Advanced Research Systems'),
(35540, 'https://ror.org/03mpynm22', 'it', 1, 'https://ror.org/03mpynm22 Ospedale Pesenti Fenaroli'),
(35541, 'https://ror.org/0563z6d74', 'en', 1, 'https://ror.org/0563z6d74 421 Hospital of PLA'),
(35542, 'https://ror.org/03wtb7y24', 'no_lang_code', 1, 'https://ror.org/03wtb7y24 Advion (United Kingdom)'),
(35543, 'https://ror.org/027wzg564', 'en', 1, 'https://ror.org/027wzg564 Australian College of Applied Psychology'),
(35544, 'https://ror.org/03s8epn20', 'en', 1, 'https://ror.org/03s8epn20 Aerospace Research Institute of Materials and Processing Technology čˆŖå¤©ęę–™åŠå·„č‰ŗē ”ē©¶ę‰€'),
(35545, 'https://ror.org/006p8df44', 'en', 1, 'https://ror.org/006p8df44 AMRI Hospitals');
INSERT INTO `rors` VALUES
(35546, 'https://ror.org/04sz74c83', 'en', 1, 'https://ror.org/04sz74c83 Shandong Shierming Eye Hospital'),
(35547, 'https://ror.org/01z5xma55', 'de', 1, 'https://ror.org/01z5xma55 Krankenhaus der Elisabethinen'),
(35548, 'https://ror.org/049vsq398', 'en', 1, 'https://ror.org/049vsq398 Affiliated Hospital of Hebei University'),
(35549, 'https://ror.org/01ry3tb23', 'en', 1, 'https://ror.org/01ry3tb23 ACPM Dental College and Hospital'),
(35550, 'https://ror.org/04cgmg165', 'en', 1, 'https://ror.org/04cgmg165 Wuhan Sixth Hospital'),
(35551, 'https://ror.org/04j1qx617', 'en', 1, 'https://ror.org/04j1qx617 Aviation General Hospital'),
(35552, 'https://ror.org/02ar02c28', 'en', 1, 'https://ror.org/02ar02c28 Wuxi Fourth People''s Hospital'),
(35553, 'https://ror.org/03snt1857', 'en', 1, 'https://ror.org/03snt1857 A.M. Obukhov Institute of Atmospheric Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики атмосферы им. А.М. ŠžŠ±ŃƒŃ…Š¾Š²Š° Российской акаГемии наук'),
(35554, 'https://ror.org/00fxmev27', 'no_lang_code', 1, 'https://ror.org/00fxmev27 Axdev Group (Canada)'),
(35555, 'https://ror.org/03tt6x206', 'no_lang_code', 1, 'https://ror.org/03tt6x206 Shimadzu (China)'),
(35556, 'https://ror.org/000j1tr86', 'en', 1, 'https://ror.org/000j1tr86 Qinghai University Affiliated Hospital é’ęµ·å¤§å­¦é™„å±žåŒ»é™¢'),
(35557, 'https://ror.org/05vcxb550', 'en', 1, 'https://ror.org/05vcxb550 Affiliated Hospital of Shandong Academy of Medical Sciences'),
(35558, 'https://ror.org/01pt0s458', 'en', 1, 'https://ror.org/01pt0s458 Bayi Children''s Hospital'),
(35559, 'https://ror.org/04my4mt94', 'no_lang_code', 1, 'https://ror.org/04my4mt94 Ayasdi (United States)'),
(35560, 'https://ror.org/04fe8dr29', 'no_lang_code', 1, 'https://ror.org/04fe8dr29 Biological Consulting Services (United States)'),
(35561, 'https://ror.org/012ga1w05', 'en', 1, 'https://ror.org/012ga1w05 Memorial Ankara Hospital'),
(35562, 'https://ror.org/04mcj7g72', 'no_lang_code', 1, 'https://ror.org/04mcj7g72 Bialanx (United States)'),
(35563, 'https://ror.org/015tqbb95', 'en', 1, 'https://ror.org/015tqbb95 Tumor Hospital of Xinjiang Medical University'),
(35564, 'https://ror.org/03w1sg385', 'nl', 1, 'https://ror.org/03w1sg385 Damiaan Dicht bij het leven'),
(35565, 'https://ror.org/030cwsf88', 'en', 1, 'https://ror.org/030cwsf88 Yancheng Third People''s Hospital'),
(35566, 'https://ror.org/00xsgfc59', 'it', 1, 'https://ror.org/00xsgfc59 Azienda Ospedaliera Bolognini Seriate'),
(35567, 'https://ror.org/041ts2d40', 'en', 1, 'https://ror.org/041ts2d40 Affiliated Zhongshan Hospital of Dalian University'),
(35568, 'https://ror.org/02h866337', 'no_lang_code', 1, 'https://ror.org/02h866337 BioBee (Israel)'),
(35569, 'https://ror.org/00t3hse28', 'no_lang_code', 1, 'https://ror.org/00t3hse28 AhR Pharmaceuticals (United States)'),
(35570, 'https://ror.org/053y0qd29', 'it', 1, 'https://ror.org/053y0qd29 Azienda Ospedaliera Pugliese Ciaccio'),
(35571, 'https://ror.org/0579e9266', 'en', 1, 'https://ror.org/0579e9266 Beijing Fengtai Hospital'),
(35572, 'https://ror.org/01spyyb53', 'no_lang_code', 1, 'https://ror.org/01spyyb53 Beijing Biocytogen (China)'),
(35573, 'https://ror.org/01hbgfy53', 'no_lang_code', 1, 'https://ror.org/01hbgfy53 Applied StemCell (United States)'),
(35574, 'https://ror.org/04t9jdp81', 'no_lang_code', 1, 'https://ror.org/04t9jdp81 BioGenex (India)'),
(35575, 'https://ror.org/01yejqg95', 'no_lang_code', 1, 'https://ror.org/01yejqg95 Applied Technical Services (United States)'),
(35576, 'https://ror.org/057vq6e26', 'en', 1, 'https://ror.org/057vq6e26 Beijing Hospital of Traditional Chinese Medicine åŒ—äŗ¬åø‚äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(35577, 'https://ror.org/04mffe096', 'no_lang_code', 1, 'https://ror.org/04mffe096 Aqualex Multimedia Consortium (Ireland)'),
(35578, 'https://ror.org/04etf9p48', 'it', 1, 'https://ror.org/04etf9p48 Ospedali Riuniti San Giovanni di Dio e Ruggi d''Aragona'),
(35579, 'https://ror.org/02yq66p71', 'no_lang_code', 1, 'https://ror.org/02yq66p71 BioNumerik (United States)'),
(35580, 'https://ror.org/01j511762', 'en', 1, 'https://ror.org/01j511762 Armament Research and Development Establishment ą¤†ą¤Æą„ą¤§ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾'),
(35581, 'https://ror.org/051tt6c85', 'it', 1, 'https://ror.org/051tt6c85 Azienda Ospedaliero-Universitaria Policlinico - Vittorio Emanuele'),
(35582, 'https://ror.org/00e9cav63', 'en', 1, 'https://ror.org/00e9cav63 Al-Qasemi Academic College of Education'),
(35583, 'https://ror.org/04pq2gg30', 'en', 1, 'https://ror.org/04pq2gg30 Beijing Open University'),
(35584, 'https://ror.org/02rzdts70', 'en', 1, 'https://ror.org/02rzdts70 Alabama College of Osteopathic Medicine'),
(35585, 'https://ror.org/0184f7469', 'de', 1, 'https://ror.org/0184f7469 Alb Fils Kliniken'),
(35586, 'https://ror.org/012p2hd37', 'no_lang_code', 1, 'https://ror.org/012p2hd37 Albany Molecular Research (Singapore)'),
(35587, 'https://ror.org/04k62rh44', 'en', 1, 'https://ror.org/04k62rh44 Beijing Royal Integrative Medicine Hospital'),
(35588, 'https://ror.org/05342be32', 'en', 1, 'https://ror.org/05342be32 Askham Bryan College'),
(35589, 'https://ror.org/01gz84683', 'no_lang_code', 1, 'https://ror.org/01gz84683 BluGlass (Australia)'),
(35590, 'https://ror.org/007z4mw61', 'en', 1, 'https://ror.org/007z4mw61 Bakırkƶy Psychiatric Hospital'),
(35591, 'https://ror.org/05qy3yc66', 'no_lang_code', 1, 'https://ror.org/05qy3yc66 Beijing Wantai Biological Pharmacy (China)'),
(35592, 'https://ror.org/0113n2b16', 'en', 1, 'https://ror.org/0113n2b16 Aleris Hamlet Hospital'),
(35593, 'https://ror.org/0387raj07', 'de', 1, 'https://ror.org/0387raj07 Asklepios Klinik St. Georg'),
(35594, 'https://ror.org/03naspe88', 'en', 1, 'https://ror.org/03naspe88 Ali Osman Sonmez Oncology Hospital'),
(35595, 'https://ror.org/00bmjpn60', 'no_lang_code', 1, 'https://ror.org/00bmjpn60 Bandwidth10 (United States)'),
(35596, 'https://ror.org/034jg6t98', 'pt', 1, 'https://ror.org/034jg6t98 Centro UniversitÔrio Fundação Assis Gurgacz'),
(35597, 'https://ror.org/01jnnpe14', 'no_lang_code', 1, 'https://ror.org/01jnnpe14 Boehringer Ingelheim (United Kingdom)'),
(35598, 'https://ror.org/01hcfbh13', 'en', 1, 'https://ror.org/01hcfbh13 Ashwini Hospital'),
(35599, 'https://ror.org/00qs33y73', 'en', 1, 'https://ror.org/00qs33y73 Bowen University Teaching Hospital'),
(35600, 'https://ror.org/03ma9wk70', 'no_lang_code', 1, 'https://ror.org/03ma9wk70 AstraZeneca (India)'),
(35601, 'https://ror.org/037hw8d27', 'en', 1, 'https://ror.org/037hw8d27 Bestian Medical Center'),
(35602, 'https://ror.org/057bfzf92', 'no_lang_code', 1, 'https://ror.org/057bfzf92 Camlin Technologies (United Kingdom)'),
(35603, 'https://ror.org/05hmaqs06', 'en', 1, 'https://ror.org/05hmaqs06 Bapuji Dental College and Hospital ą²¬ą²¾ą²Ŗą³‚ą²œą²æ ದಂತ ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³‡'),
(35604, 'https://ror.org/04jgpa018', 'en', 1, 'https://ror.org/04jgpa018 Babasaheb Bhimrao Ambedkar Bihar University'),
(35605, 'https://ror.org/02c3nsj20', 'tr', 1, 'https://ror.org/02c3nsj20 Beytepe Asker Hastanesi'),
(35606, 'https://ror.org/0086skx40', 'en', 1, 'https://ror.org/0086skx40 Adana Hospital'),
(35607, 'https://ror.org/032vq8n85', 'no_lang_code', 1, 'https://ror.org/032vq8n85 Augmentium Pharma Consulting (Canada)'),
(35608, 'https://ror.org/042z7hw74', 'en', 1, 'https://ror.org/042z7hw74 Changsha Environmental Protection College'),
(35609, 'https://ror.org/01gbz1v61', 'no_lang_code', 1, 'https://ror.org/01gbz1v61 CardioDx (United States)'),
(35610, 'https://ror.org/05mvkx311', 'no_lang_code', 1, 'https://ror.org/05mvkx311 Cortical Dynamics (Australia)'),
(35611, 'https://ror.org/05r5vfp03', 'en', 1, 'https://ror.org/05r5vfp03 Civil Service Hospital'),
(35612, 'https://ror.org/01ybqnp73', 'de', 1, 'https://ror.org/01ybqnp73 Katholisches Klinikum Essen'),
(35613, 'https://ror.org/048b5ng26', 'no_lang_code', 1, 'https://ror.org/048b5ng26 Covance (Australia)'),
(35614, 'https://ror.org/01dd2km13', 'no_lang_code', 1, 'https://ror.org/01dd2km13 Bruning (Brazil)'),
(35615, 'https://ror.org/0234wv516', 'en', 1, 'https://ror.org/0234wv516 Chaohu Hospital of Anhui Medical University'),
(35616, 'https://ror.org/019aeg752', 'en', 1, 'https://ror.org/019aeg752 Bryansk State Agrarian University Š‘Ń€ŃŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35617, 'https://ror.org/00t7r5h51', 'en', 1, 'https://ror.org/00t7r5h51 Center for Autism and Related Disorders'),
(35618, 'https://ror.org/006xrph64', 'en', 1, 'https://ror.org/006xrph64 Central Hospital Affiliated to Shenyang Medical College'),
(35619, 'https://ror.org/041137e25', 'en', 1, 'https://ror.org/041137e25 Central Institute of Freshwater Aquaculture'),
(35620, 'https://ror.org/04cxs2q71', 'no_lang_code', 1, 'https://ror.org/04cxs2q71 Createc (United Kingdom)'),
(35621, 'https://ror.org/03gxy9f87', 'en', 1, 'https://ror.org/03gxy9f87 Chengdu Fifth People''s Hospital'),
(35622, 'https://ror.org/04y2bwa40', 'en', 1, 'https://ror.org/04y2bwa40 Chenzhou First People''s Hospital'),
(35623, 'https://ror.org/02h5h0a06', 'en', 1, 'https://ror.org/02h5h0a06 College of Applied Sciences- Ibri'),
(35624, 'https://ror.org/058a3vg17', 'en', 1, 'https://ror.org/058a3vg17 Central Mental Hospital'),
(35625, 'https://ror.org/055faex28', 'no_lang_code', 1, 'https://ror.org/055faex28 Crown Bioscience (China)'),
(35626, 'https://ror.org/02y2arb86', 'no_lang_code', 1, 'https://ror.org/02y2arb86 Chiba Aoba Municipal Hospital åƒč‘‰åø‚ē«‹é’č‘‰ē—…é™¢'),
(35627, 'https://ror.org/05hyj7861', 'en', 1, 'https://ror.org/05hyj7861 Children''s Hospital of Capital Institute of Pediatrics'),
(35628, 'https://ror.org/03sb1fv32', 'no_lang_code', 1, 'https://ror.org/03sb1fv32 Cupron (Israel)'),
(35629, 'https://ror.org/03tws3217', 'en', 1, 'https://ror.org/03tws3217 Jiangxi Provincial Children''s Hospital'),
(35630, 'https://ror.org/00t30f389', 'en', 1, 'https://ror.org/00t30f389 Children''s Hospital of San Antonio'),
(35631, 'https://ror.org/00hn0mq04', 'en', 1, 'https://ror.org/00hn0mq04 Daelim University College ėŒ€ė¦¼ėŒ€ķ•™źµ'),
(35632, 'https://ror.org/05w0gx844', 'de', 1, 'https://ror.org/05w0gx844 Kinderklinik Regensburg'),
(35633, 'https://ror.org/00rs50b76', 'en', 1, 'https://ror.org/00rs50b76 Chabahar Maritime University'),
(35634, 'https://ror.org/01j157486', 'en', 1, 'https://ror.org/01j157486 College of Industrial Engineering'),
(35635, 'https://ror.org/01653mw07', 'en', 1, 'https://ror.org/01653mw07 Bệnh viện ĐƠ Nįŗµng Da Nang Hospital'),
(35636, 'https://ror.org/033kyng81', 'de', 1, 'https://ror.org/033kyng81 Diakonissenkrankenhaus'),
(35637, 'https://ror.org/05vc01a67', 'en', 1, 'https://ror.org/05vc01a67 Daejeon Oriental Hospital'),
(35638, 'https://ror.org/03jc49e50', 'en', 1, 'https://ror.org/03jc49e50 Darshan Dental College and Hospital'),
(35639, 'https://ror.org/05gvw2741', 'en', 1, 'https://ror.org/05gvw2741 Chongqing Medical and Pharmaceutical College'),
(35640, 'https://ror.org/046gga527', 'en', 1, 'https://ror.org/046gga527 King Khalid University Hospital'),
(35641, 'https://ror.org/01fpkt395', 'de', 1, 'https://ror.org/01fpkt395 Christian Doppler Klinik'),
(35642, 'https://ror.org/00mfpj979', 'no_lang_code', 1, 'https://ror.org/00mfpj979 Dong-A ST (South Korea)'),
(35643, 'https://ror.org/024s10v78', 'no_lang_code', 1, 'https://ror.org/024s10v78 ESU-Services (Switzerland)'),
(35644, 'https://ror.org/01kzp9g64', 'no_lang_code', 1, 'https://ror.org/01kzp9g64 Etsy (United States)'),
(35645, 'https://ror.org/05watjs66', 'en', 1, 'https://ror.org/05watjs66 Dr D Y Patil Dental College & Hospital'),
(35646, 'https://ror.org/04y22rp03', 'no_lang_code', 1, 'https://ror.org/04y22rp03 Delfin Technologies (Finland)'),
(35647, 'https://ror.org/01vstb938', 'pt', 1, 'https://ror.org/01vstb938 Universidade Katyavala Bwila'),
(35648, 'https://ror.org/04ce4rf90', 'en', 1, 'https://ror.org/04ce4rf90 Dr. Rajendra Prasad Government Medical College'),
(35649, 'https://ror.org/02espa273', 'no_lang_code', 1, 'https://ror.org/02espa273 Euromedik'),
(35650, 'https://ror.org/03q1w1s93', 'en', 1, 'https://ror.org/03q1w1s93 Colorectal Surgical Associates'),
(35651, 'https://ror.org/01wgkjr48', 'no_lang_code', 1, 'https://ror.org/01wgkjr48 Dynamic Research (United States)'),
(35652, 'https://ror.org/037ve0v69', 'en', 1, 'https://ror.org/037ve0v69 Yanbian University Hospital'),
(35653, 'https://ror.org/0470nf974', 'en', 1, 'https://ror.org/0470nf974 Federal University Kashere'),
(35654, 'https://ror.org/00xw2x114', 'en', 1, 'https://ror.org/00xw2x114 Tangshan People''s Hospital'),
(35655, 'https://ror.org/00asd2k77', 'no_lang_code', 1, 'https://ror.org/00asd2k77 Comsol (United States)'),
(35656, 'https://ror.org/00w1jf336', 'en', 1, 'https://ror.org/00w1jf336 Europa Ziekenhuizen Europe Hospitals'),
(35657, 'https://ror.org/03fhbcz65', 'no_lang_code', 1, 'https://ror.org/03fhbcz65 Confocal Science (Japan)'),
(35658, 'https://ror.org/02d9k8j51', 'en', 1, 'https://ror.org/02d9k8j51 Employees'' State Insurance Model Hospital'),
(35659, 'https://ror.org/01tnkds55', 'en', 1, 'https://ror.org/01tnkds55 Connecticut Valley Hospital'),
(35660, 'https://ror.org/011at3t25', 'en', 1, 'https://ror.org/011at3t25 European University of Rome'),
(35661, 'https://ror.org/00kxdwc81', 'no_lang_code', 1, 'https://ror.org/00kxdwc81 Tanggangzi hospital'),
(35662, 'https://ror.org/018ced875', 'en', 1, 'https://ror.org/018ced875 Federal University Lokoja'),
(35663, 'https://ror.org/00wg75m45', 'no_lang_code', 1, 'https://ror.org/00wg75m45 Thermo Fisher Scientific (Japan)'),
(35664, 'https://ror.org/0309pcg09', 'en', 1, 'https://ror.org/0309pcg09 Shanghai Eighth People Hospital'),
(35665, 'https://ror.org/02j0abw33', 'de', 1, 'https://ror.org/02j0abw33 Felix Platter Spital Felix Platter-Hospital'),
(35666, 'https://ror.org/00jqpet07', 'no_lang_code', 1, 'https://ror.org/00jqpet07 Fernandez Hospital'),
(35667, 'https://ror.org/03wparr05', 'no_lang_code', 1, 'https://ror.org/03wparr05 eCoast (New Zealand)'),
(35668, 'https://ror.org/05cxk4q81', 'no_lang_code', 1, 'https://ror.org/05cxk4q81 Punan Hospital'),
(35669, 'https://ror.org/0257syp95', 'de', 1, 'https://ror.org/0257syp95 Friedrich-Ebert-Krankenhaus'),
(35670, 'https://ror.org/01x5rsx73', 'no_lang_code', 1, 'https://ror.org/01x5rsx73 Educomp Solutions (India)'),
(35671, 'https://ror.org/05tj2eg80', 'no_lang_code', 1, 'https://ror.org/05tj2eg80 GCI Science & Technology (China)'),
(35672, 'https://ror.org/01p25q678', 'en', 1, 'https://ror.org/01p25q678 Yili Friendship Hospital'),
(35673, 'https://ror.org/05ses6v92', 'en', 1, 'https://ror.org/05ses6v92 First People''s Hospital of Jingzhou'),
(35674, 'https://ror.org/04ebj7x87', 'no_lang_code', 1, 'https://ror.org/04ebj7x87 Genbody (South Korea)'),
(35675, 'https://ror.org/02156y972', 'no_lang_code', 1, 'https://ror.org/02156y972 Eli Lilly (India)'),
(35676, 'https://ror.org/05myyzn85', 'en', 1, 'https://ror.org/05myyzn85 Shanghai First Maternity and Infant Hospital'),
(35677, 'https://ror.org/02qg60849', 'no_lang_code', 1, 'https://ror.org/02qg60849 Engineering Systems (United States)'),
(35678, 'https://ror.org/02h2ywm64', 'en', 1, 'https://ror.org/02h2ywm64 The First People''s Hospital of Changde'),
(35679, 'https://ror.org/01xn7k765', 'en', 1, 'https://ror.org/01xn7k765 Corfu General Clinic'),
(35680, 'https://ror.org/027xmwe42', 'en', 1, 'https://ror.org/027xmwe42 General Hospital of Drama'),
(35681, 'https://ror.org/04gs6v336', 'en', 1, 'https://ror.org/04gs6v336 Jining First People''s Hospital ęµŽå®åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(35682, 'https://ror.org/04n0rp146', 'no_lang_code', 1, 'https://ror.org/04n0rp146 Enjet (South Korea)'),
(35683, 'https://ror.org/004qehs09', 'en', 1, 'https://ror.org/004qehs09 Quzhou City People''s Hospital'),
(35684, 'https://ror.org/05ca6eb43', 'en', 1, 'https://ror.org/05ca6eb43 Xuzhou No.1 People''s Hospital'),
(35685, 'https://ror.org/01mmhvx47', 'no_lang_code', 1, 'https://ror.org/01mmhvx47 Epizyme (United States)'),
(35686, 'https://ror.org/05j4ckm72', 'no_lang_code', 1, 'https://ror.org/05j4ckm72 Genetic Technologies (Australia)'),
(35687, 'https://ror.org/01xp9ya88', 'en', 1, 'https://ror.org/01xp9ya88 Flinders Private Hospital'),
(35688, 'https://ror.org/01nfh3016', 'pt', 1, 'https://ror.org/01nfh3016 Hospital Erasto Gaertner'),
(35689, 'https://ror.org/03t4eaf83', 'no_lang_code', 1, 'https://ror.org/03t4eaf83 Forristall Ocean Engineering (United States)'),
(35690, 'https://ror.org/05xe0se54', 'no_lang_code', 1, 'https://ror.org/05xe0se54 Furukawa Electric (Japan) å¤ę²³é›»ę°—å·„ę„­'),
(35691, 'https://ror.org/04k0a2p36', 'no_lang_code', 1, 'https://ror.org/04k0a2p36 Van Drunen Farms (United States)'),
(35692, 'https://ror.org/04v95p207', 'en', 1, 'https://ror.org/04v95p207 Panzhihua Central Hospital'),
(35693, 'https://ror.org/02bsc8781', 'no_lang_code', 1, 'https://ror.org/02bsc8781 Gezhouba Explosive (China)'),
(35694, 'https://ror.org/00xrr2d51', 'fr', 1, 'https://ror.org/00xrr2d51 Sante Montreal'),
(35695, 'https://ror.org/03p7abc05', 'fr', 1, 'https://ror.org/03p7abc05 Association pour la Recherche au CollƩgial'),
(35696, 'https://ror.org/046q1bp69', 'en', 1, 'https://ror.org/046q1bp69 Guizhou Provincial People''s Hospital č“µå·žēœäŗŗę°‘åŒ»é™¢'),
(35697, 'https://ror.org/04rss9b70', 'fr', 1, 'https://ror.org/04rss9b70 Centre Jeunesse de Quebec'),
(35698, 'https://ror.org/04g9pp561', 'no_lang_code', 1, 'https://ror.org/04g9pp561 Fortis Hospital'),
(35699, 'https://ror.org/04t1ycn35', 'en', 1, 'https://ror.org/04t1ycn35 G. Kuppuswamy Naidu Memorial Hospital'),
(35700, 'https://ror.org/01vq6my12', 'no_lang_code', 1, 'https://ror.org/01vq6my12 Golder Associates (China)'),
(35701, 'https://ror.org/054dshd81', 'en', 1, 'https://ror.org/054dshd81 International University MITSO'),
(35702, 'https://ror.org/03rdmxv04', 'no_lang_code', 1, 'https://ror.org/03rdmxv04 Guolian Futures (China)'),
(35703, 'https://ror.org/00g212534', 'tr', 1, 'https://ror.org/00g212534 Hitit Üniversitesi Ƈorum Eğitim ve Araştırma Hastanesi'),
(35704, 'https://ror.org/05q7rp785', 'en', 1, 'https://ror.org/05q7rp785 Hobart Private Hospital'),
(35705, 'https://ror.org/05wh5fw51', 'no_lang_code', 1, 'https://ror.org/05wh5fw51 Mitsui Chemicals (Japan) äø‰äŗ•åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(35706, 'https://ror.org/00r398124', 'en', 1, 'https://ror.org/00r398124 Ganzhou People''s Hospital'),
(35707, 'https://ror.org/030sr2v21', 'en', 1, 'https://ror.org/030sr2v21 Hainan General Hospital ęµ·å—ēœäŗŗę°‘åŒ»é™¢'),
(35708, 'https://ror.org/0483p1w82', 'en', 1, 'https://ror.org/0483p1w82 Great North Children''s Hospital'),
(35709, 'https://ror.org/047ev4v84', 'es', 1, 'https://ror.org/047ev4v84 Hospital Universitario del Henares'),
(35710, 'https://ror.org/022cbyf89', 'en', 1, 'https://ror.org/022cbyf89 Gaochun People''s Hospital'),
(35711, 'https://ror.org/01hgb6e08', 'en', 1, 'https://ror.org/01hgb6e08 Hamedan University of Technology'),
(35712, 'https://ror.org/01mqcfb91', 'no_lang_code', 1, 'https://ror.org/01mqcfb91 Green Pool (Australia)'),
(35713, 'https://ror.org/03j4kg535', 'en', 1, 'https://ror.org/03j4kg535 Gateway Technical College'),
(35714, 'https://ror.org/02506kf89', 'de', 1, 'https://ror.org/02506kf89 Klinikum Weiden'),
(35715, 'https://ror.org/05w2qpw18', 'no_lang_code', 1, 'https://ror.org/05w2qpw18 GridBridge (United States)'),
(35716, 'https://ror.org/032hca325', 'en', 1, 'https://ror.org/032hca325 Hsing Wu University é†’å¾ē§‘ęŠ€å¤§å­ø'),
(35717, 'https://ror.org/05wx3dm75', 'de', 1, 'https://ror.org/05wx3dm75 Krankenhaus Kƶln-Holweide'),
(35718, 'https://ror.org/008p6rr25', 'en', 1, 'https://ror.org/008p6rr25 Huanghe Science and Technology College é»„ę²³ē§‘ęŠ€å­¦é™¢'),
(35719, 'https://ror.org/047b0ff75', 'no_lang_code', 1, 'https://ror.org/047b0ff75 Gritek (China)'),
(35720, 'https://ror.org/03t3p6f87', 'no', 1, 'https://ror.org/03t3p6f87 Haraldsplass Diakonale Sykehus'),
(35721, 'https://ror.org/030ffke25', 'en', 1, 'https://ror.org/030ffke25 Guangdong University of Petrochemical Technology å¹æäøœēŸ³ę²¹åŒ–å·„å­¦é™¢'),
(35722, 'https://ror.org/0493m8x04', 'en', 1, 'https://ror.org/0493m8x04 Guangdong Province Women and Children Hospital'),
(35723, 'https://ror.org/05701yq92', 'es', 1, 'https://ror.org/05701yq92 Hospital Base Guillermo Almenara Irigoyen'),
(35724, 'https://ror.org/05bkcgf50', 'en', 1, 'https://ror.org/05bkcgf50 Hubei Urban Construction Vocational and Technological College ę¹–åŒ—åŸŽåø‚å»ŗč®¾čŒäøšęŠ€ęœÆå­¦é™¢'),
(35725, 'https://ror.org/03dncqh14', 'no_lang_code', 1, 'https://ror.org/03dncqh14 Ichimaru Pharcos (Japan)'),
(35726, 'https://ror.org/00cndk772', 'no_lang_code', 1, 'https://ror.org/00cndk772 Icon (United Kingdom)'),
(35727, 'https://ror.org/0170a8r40', 'no_lang_code', 1, 'https://ror.org/0170a8r40 Humanpass (South Korea)'),
(35728, 'https://ror.org/002v59719', 'no_lang_code', 1, 'https://ror.org/002v59719 Idemitsu Kosan (Japan) å‡ŗå…‰čˆˆē”£'),
(35729, 'https://ror.org/041xr2b79', 'it', 1, 'https://ror.org/041xr2b79 Ospedale di Civita Castellana'),
(35730, 'https://ror.org/02cjc1z91', 'no_lang_code', 1, 'https://ror.org/02cjc1z91 Humanwell Healthcare Group (China)'),
(35731, 'https://ror.org/0396mnx76', 'es', 1, 'https://ror.org/0396mnx76 Hospital de Manises'),
(35732, 'https://ror.org/03ccj3w73', 'en', 1, 'https://ror.org/03ccj3w73 Heart Life Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć‹ć‚Šć‚†ć—ä¼š'),
(35733, 'https://ror.org/0247xas18', 'en', 1, 'https://ror.org/0247xas18 Guigang City People''s Hospital'),
(35734, 'https://ror.org/00t4w1v80', 'es', 1, 'https://ror.org/00t4w1v80 Hospital de Viladecans'),
(35735, 'https://ror.org/00qw5wg75', 'en', 1, 'https://ror.org/00qw5wg75 Guizhou Cancer Hospital'),
(35736, 'https://ror.org/009ssz662', 'en', 1, 'https://ror.org/009ssz662 Shenzhen Occupational Disease Prevention Hospital'),
(35737, 'https://ror.org/05mfr7w08', 'en', 1, 'https://ror.org/05mfr7w08 Third People''s Hospital of Hefei'),
(35738, 'https://ror.org/055fsxq56', 'no_lang_code', 1, 'https://ror.org/055fsxq56 Intertek (Switzerland)'),
(35739, 'https://ror.org/01kjwt492', 'no_lang_code', 1, 'https://ror.org/01kjwt492 Imari Arita Kyoritsu Hospital'),
(35740, 'https://ror.org/01wc63152', 'es', 1, 'https://ror.org/01wc63152 Hospital General de Almansa'),
(35741, 'https://ror.org/02f5aec20', 'de', 1, 'https://ror.org/02f5aec20 Hegau-Bodensee-Klinikum Singen'),
(35742, 'https://ror.org/04vvd8839', 'ro', 1, 'https://ror.org/04vvd8839 Universitatea Ioan Slavici'),
(35743, 'https://ror.org/05d5cn472', 'no_lang_code', 1, 'https://ror.org/05d5cn472 Altimmune (United Kingdom)'),
(35744, 'https://ror.org/03gezv924', 'no_lang_code', 1, 'https://ror.org/03gezv924 Intel (Taiwan)'),
(35745, 'https://ror.org/01yz57p78', 'en', 1, 'https://ror.org/01yz57p78 Iran University of Industries and Mines'),
(35746, 'https://ror.org/02epdjj68', 'es', 1, 'https://ror.org/02epdjj68 Hospital Civil de Guadalajara'),
(35747, 'https://ror.org/030nxya44', 'en', 1, 'https://ror.org/030nxya44 Indian Institute of Sugarcane Research'),
(35748, 'https://ror.org/02qk18s08', 'en', 1, 'https://ror.org/02qk18s08 International Center for Tropical Agriculture'),
(35749, 'https://ror.org/04d3sf574', 'en', 1, 'https://ror.org/04d3sf574 Henan Provincial Chest Hospital ę²³å—ēœčƒøē§‘åŒ»é™¢'),
(35750, 'https://ror.org/02p2c1595', 'en', 1, 'https://ror.org/02p2c1595 Islamia College University Ų§Ų³Ł„Ų§Ł…ŪŒŪ کالج ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(35751, 'https://ror.org/032kjn442', 'en', 1, 'https://ror.org/032kjn442 Indian Institute of Vegetable Research'),
(35752, 'https://ror.org/02pyb2233', 'es', 1, 'https://ror.org/02pyb2233 Hospital La Inmaculada'),
(35753, 'https://ror.org/002mm7c07', 'en', 1, 'https://ror.org/002mm7c07 Henan University Huaihe Hospital and Huaihe Clinical Institute'),
(35754, 'https://ror.org/01y4k8j51', 'no_lang_code', 1, 'https://ror.org/01y4k8j51 Isothermal Technology (United Kingdom)'),
(35755, 'https://ror.org/01k8sh332', 'no_lang_code', 1, 'https://ror.org/01k8sh332 Isotop (Israel)'),
(35756, 'https://ror.org/04xphfg38', 'no_lang_code', 1, 'https://ror.org/04xphfg38 Hermes Microvision (United States)'),
(35757, 'https://ror.org/0152tc190', 'en', 1, 'https://ror.org/0152tc190 Yantai Infectious Diseases Hospital'),
(35758, 'https://ror.org/056agx034', 'de', 1, 'https://ror.org/056agx034 Krankenhaus Neuwerk "Maria von den Aposteln"'),
(35759, 'https://ror.org/05rgpb984', 'no_lang_code', 1, 'https://ror.org/05rgpb984 Information and Mathematical Science and Bioinformatics (Japan)'),
(35760, 'https://ror.org/02j8tr589', 'en', 1, 'https://ror.org/02j8tr589 Inha Technical College'),
(35761, 'https://ror.org/04adbw927', 'no_lang_code', 1, 'https://ror.org/04adbw927 Inner Mongolia Yili Industrial Group (China) 伊利集团'),
(35762, 'https://ror.org/019wdt926', 'no_lang_code', 1, 'https://ror.org/019wdt926 Himgiri Zee University'),
(35763, 'https://ror.org/05fx84t54', 'hu', 1, 'https://ror.org/05fx84t54 Jahn Ferenc DĆ©l-Pesti KórhĆ”z Ć©s RendelőintĆ©zet'),
(35764, 'https://ror.org/03rhsnv81', 'en', 1, 'https://ror.org/03rhsnv81 Hippocrateon Private Hospital'),
(35765, 'https://ror.org/05jg53152', 'it', 1, 'https://ror.org/05jg53152 Ospedale Versilia'),
(35766, 'https://ror.org/05516nt33', 'no_lang_code', 1, 'https://ror.org/05516nt33 Jordan Valley Semiconductors (China)'),
(35767, 'https://ror.org/047yd9004', 'en', 1, 'https://ror.org/047yd9004 Institute for Color Science and Technology'),
(35768, 'https://ror.org/04hwc4q95', 'no_lang_code', 1, 'https://ror.org/04hwc4q95 Histoindex (Singapore)'),
(35769, 'https://ror.org/01kmxkx53', 'no_lang_code', 1, 'https://ror.org/01kmxkx53 Jain Irrigation Systems (India)'),
(35770, 'https://ror.org/005td0w95', 'es', 1, 'https://ror.org/005td0w95 Hospital Psiquiatrico Infantil Juan N Navarro'),
(35771, 'https://ror.org/01pgfea66', 'en', 1, 'https://ror.org/01pgfea66 Jammu Hospital'),
(35772, 'https://ror.org/01c7p3v19', 'no_lang_code', 1, 'https://ror.org/01c7p3v19 Japan Aviation Electronics Industry (Japan) ę—„ęœ¬čˆŖē©ŗé›»å­å·„ę„­'),
(35773, 'https://ror.org/00tbh0a59', 'en', 1, 'https://ror.org/00tbh0a59 Gulu Hospital'),
(35774, 'https://ror.org/05cwk4h45', 'es', 1, 'https://ror.org/05cwk4h45 Hospital Quirón Torrevieja'),
(35775, 'https://ror.org/03tv82d64', 'no_lang_code', 1, 'https://ror.org/03tv82d64 Japan Bio Products (Japan)'),
(35776, 'https://ror.org/01kwdp645', 'en', 1, 'https://ror.org/01kwdp645 Kailuan General Hospital'),
(35777, 'https://ror.org/008ny3111', 'en', 1, 'https://ror.org/008ny3111 K.S. Hegde Hospital ą²œą²øą³ą²Ÿą²æą³•ą²øą³ ಕೆ.ą²Žą²øą³ ą²¹ą³†ą²—ą³ą²”ą³† ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(35778, 'https://ror.org/019gdfm13', 'es', 1, 'https://ror.org/019gdfm13 Hospital Universitario Rey Juan Carlos'),
(35779, 'https://ror.org/01pfs6p94', 'en', 1, 'https://ror.org/01pfs6p94 KM Shah Dental College and Hospital'),
(35780, 'https://ror.org/017em7993', 'no_lang_code', 1, 'https://ror.org/017em7993 Aerocosmos Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ мониторинга ŠŠ­Š ŠžŠšŠžŠ”ŠœŠžŠ”'),
(35781, 'https://ror.org/017s6v868', 'en', 1, 'https://ror.org/017s6v868 Jilin Vocational College of Industry and Technology'),
(35782, 'https://ror.org/00var7h03', 'pt', 1, 'https://ror.org/00var7h03 Hospital Samaritano de SĆ£o Paulo'),
(35783, 'https://ror.org/018fymd62', 'en', 1, 'https://ror.org/018fymd62 Kamla Nehru Memorial Hospital'),
(35784, 'https://ror.org/05ty6nt57', 'en', 1, 'https://ror.org/05ty6nt57 Jaypee Hospital'),
(35785, 'https://ror.org/0057m5255', 'no_lang_code', 1, 'https://ror.org/0057m5255 JEOL (United States)'),
(35786, 'https://ror.org/02c1qc696', 'ms', 1, 'https://ror.org/02c1qc696 Hospital Seberang Jaya'),
(35787, 'https://ror.org/004j26v17', 'en', 1, 'https://ror.org/004j26v17 Jiading District Central Hospital'),
(35788, 'https://ror.org/05hewaf81', 'en', 1, 'https://ror.org/05hewaf81 University of Kang Ning 康寧大學'),
(35789, 'https://ror.org/01j5v0d02', 'es', 1, 'https://ror.org/01j5v0d02 Hospital Universitario de Burgos'),
(35790, 'https://ror.org/05wfz2361', 'en', 1, 'https://ror.org/05wfz2361 Kang-Ning Junior College of Medical Care and Management'),
(35791, 'https://ror.org/04baw4297', 'en', 1, 'https://ror.org/04baw4297 Jiangmen Central Hospital'),
(35792, 'https://ror.org/0360yvh71', 'de', 1, 'https://ror.org/0360yvh71 Krankenhaus Lindenbrunn'),
(35793, 'https://ror.org/018c7c068', 'en', 1, 'https://ror.org/018c7c068 JiangSu Armed Police General Hospital'),
(35794, 'https://ror.org/05bgpkm02', 'en', 1, 'https://ror.org/05bgpkm02 Krantisinh Nana Patil College of Veterinary Science'),
(35795, 'https://ror.org/00f656h73', 'no_lang_code', 1, 'https://ror.org/00f656h73 Asian Star Anchor Chain (China)'),
(35796, 'https://ror.org/056bjcd96', 'no_lang_code', 1, 'https://ror.org/056bjcd96 Jiangsu Shengze Hospital'),
(35797, 'https://ror.org/05yabwx33', 'de', 1, 'https://ror.org/05yabwx33 Kantonsspital Frauenfeld'),
(35798, 'https://ror.org/02c28a074', 'de', 1, 'https://ror.org/02c28a074 Kantonsspital Münsterlingen'),
(35799, 'https://ror.org/05jxvg504', 'tr', 1, 'https://ror.org/05jxvg504 İstanbul Kanuni Sultan Süleyman Eğitim ve Araştırma Hastanesi'),
(35800, 'https://ror.org/00py85p62', 'en', 1, 'https://ror.org/00py85p62 Kyanous Stavros Hospital'),
(35801, 'https://ror.org/01y87aw49', 'en', 1, 'https://ror.org/01y87aw49 Jilin City Central Hospital'),
(35802, 'https://ror.org/01xet8208', 'de', 1, 'https://ror.org/01xet8208 Olgahospital'),
(35803, 'https://ror.org/033573j20', 'no_lang_code', 1, 'https://ror.org/033573j20 Kyowa Hakko Kirin (Singapore)'),
(35804, 'https://ror.org/00d2wxy31', 'en', 1, 'https://ror.org/00d2wxy31 Jinan Maternity And Care Hospital'),
(35805, 'https://ror.org/047ytwp82', 'en', 1, 'https://ror.org/047ytwp82 Karamay Central Hospital å…‹ę‹‰ēŽ›ä¾åø‚äø­åæƒåŒ»é™¢Ā·äŗ‘åŒ»é™¢'),
(35806, 'https://ror.org/03vcw8k58', 'en', 1, 'https://ror.org/03vcw8k58 Ling Tung University å¶ŗę±ē§‘ęŠ€å¤§å­ø'),
(35807, 'https://ror.org/04x5ap794', 'en', 1, 'https://ror.org/04x5ap794 M. S. Ramaiah Dental College and Hospital'),
(35808, 'https://ror.org/05k0x2w50', 'en', 1, 'https://ror.org/05k0x2w50 Lipetsk State Pedagogical University'),
(35809, 'https://ror.org/006fh5g40', 'en', 1, 'https://ror.org/006fh5g40 Lipetsk State Technical University'),
(35810, 'https://ror.org/002n0by50', 'de', 1, 'https://ror.org/002n0by50 Katharinenhospital'),
(35811, 'https://ror.org/02fkrbc57', 'no_lang_code', 1, 'https://ror.org/02fkrbc57 Kawamura Hospital'),
(35812, 'https://ror.org/00p43ne90', 'en', 1, 'https://ror.org/00p43ne90 Mahsa University'),
(35813, 'https://ror.org/01shdt141', 'en', 1, 'https://ror.org/01shdt141 Lake–Sumter State College'),
(35814, 'https://ror.org/030ztmv39', 'no_lang_code', 1, 'https://ror.org/030ztmv39 Landis International (United States)'),
(35815, 'https://ror.org/057mx6f31', 'no_lang_code', 1, 'https://ror.org/057mx6f31 Klohn Crippen Berger (Canada)'),
(35816, 'https://ror.org/01hxvmm54', 'no_lang_code', 1, 'https://ror.org/01hxvmm54 Logos Biosystems (South Korea)'),
(35817, 'https://ror.org/04thm3d12', 'de', 1, 'https://ror.org/04thm3d12 Malteser Krankenhaus St. Anna'),
(35818, 'https://ror.org/008j9bq89', 'fi', 1, 'https://ror.org/008j9bq89 LƤnsi-Pohjan Sairaanhoitopiirin KuntayhtymƤ'),
(35819, 'https://ror.org/01t0mhp33', 'no_lang_code', 1, 'https://ror.org/01t0mhp33 Manila Consulting Group (United States)'),
(35820, 'https://ror.org/00pzh0w90', 'tr', 1, 'https://ror.org/00pzh0w90 Kocaeli Üniversitesi Araştırma ve Uygulama Hastanesi'),
(35821, 'https://ror.org/00pfazs12', 'no_lang_code', 1, 'https://ror.org/00pfazs12 Kennedy Martin Health Outcomes (United Kingdom)'),
(35822, 'https://ror.org/02xrpdt68', 'en', 1, 'https://ror.org/02xrpdt68 Luohe Medical College'),
(35823, 'https://ror.org/039n2wf68', 'no_lang_code', 1, 'https://ror.org/039n2wf68 Kokilaben Dhirubhai Ambani Hospital'),
(35824, 'https://ror.org/00a84en41', 'no_lang_code', 1, 'https://ror.org/00a84en41 Mari Petroleum Company (Pakistan)'),
(35825, 'https://ror.org/036cvz290', 'en', 1, 'https://ror.org/036cvz290 Leshan Normal University ä¹å±±åøˆčŒƒå­¦é™¢'),
(35826, 'https://ror.org/01gkp6p31', 'en', 1, 'https://ror.org/01gkp6p31 Maria Fareri Children''s Hospital'),
(35827, 'https://ror.org/030qwf038', 'de', 1, 'https://ror.org/030qwf038 Marien Hospital Düsseldorf'),
(35828, 'https://ror.org/044e25681', 'no_lang_code', 1, 'https://ror.org/044e25681 Kolon Life Science (South Korea)'),
(35829, 'https://ror.org/02903cd17', 'no_lang_code', 1, 'https://ror.org/02903cd17 Keysight Technologies (United States)'),
(35830, 'https://ror.org/017ga1x09', 'no_lang_code', 1, 'https://ror.org/017ga1x09 Level-5 (Japan)'),
(35831, 'https://ror.org/004h6mc53', 'de', 1, 'https://ror.org/004h6mc53 UniversitƤtsklinik Marien Hospital Herne'),
(35832, 'https://ror.org/00b2xnk27', 'en', 1, 'https://ror.org/00b2xnk27 Lviv City Children''s Hospital'),
(35833, 'https://ror.org/00g01gj95', 'de', 1, 'https://ror.org/00g01gj95 Marienhospital Stuttgart'),
(35834, 'https://ror.org/00fedxs81', 'no_lang_code', 1, 'https://ror.org/00fedxs81 LxRay (Japan)'),
(35835, 'https://ror.org/00spt4n57', 'en', 1, 'https://ror.org/00spt4n57 Lianyungang Maternal and Children’s Hospital'),
(35836, 'https://ror.org/02xay1410', 'en', 1, 'https://ror.org/02xay1410 Mathrusri Ramabai Ambedkar Dental College & Hospital'),
(35837, 'https://ror.org/00qbb2v66', 'en', 1, 'https://ror.org/00qbb2v66 Kharkiv University of Air Force'),
(35838, 'https://ror.org/000ex0h82', 'no_lang_code', 1, 'https://ror.org/000ex0h82 Maruwa Foods and Biosciences (Japan)'),
(35839, 'https://ror.org/00e7r7m66', 'en', 1, 'https://ror.org/00e7r7m66 Max Super Speciality Hospital'),
(35840, 'https://ror.org/01j77q308', 'no_lang_code', 1, 'https://ror.org/01j77q308 Mata Chanan Devi Hospital'),
(35841, 'https://ror.org/05w1xct55', 'no_lang_code', 1, 'https://ror.org/05w1xct55 Lilly (China)'),
(35842, 'https://ror.org/00f041n88', 'en', 1, 'https://ror.org/00f041n88 Mbarara National Referral Hospital'),
(35843, 'https://ror.org/0012vvx22', 'no_lang_code', 1, 'https://ror.org/0012vvx22 Kintama (Canada)'),
(35844, 'https://ror.org/04w5mzj20', 'en', 1, 'https://ror.org/04w5mzj20 Changsha Hospital for Maternal and Child Health Care'),
(35845, 'https://ror.org/00w3t2881', 'no_lang_code', 1, 'https://ror.org/00w3t2881 Med Data Quest (United States)'),
(35846, 'https://ror.org/02deds976', 'no_lang_code', 1, 'https://ror.org/02deds976 Medsonic (Cyprus)'),
(35847, 'https://ror.org/05jjqbw81', 'en', 1, 'https://ror.org/05jjqbw81 Lillebaelt Academy University of Applied Sciences'),
(35848, 'https://ror.org/04pspdc11', 'no_lang_code', 1, 'https://ror.org/04pspdc11 Novocure (United States)'),
(35849, 'https://ror.org/000aph098', 'en', 1, 'https://ror.org/000aph098 Hainan Maternal and Child Health Hospital'),
(35850, 'https://ror.org/04n7kzx92', 'no_lang_code', 1, 'https://ror.org/04n7kzx92 Megafine Pharma (India)'),
(35851, 'https://ror.org/03nw30958', 'en', 1, 'https://ror.org/03nw30958 Dr. Mehta''s Children''s Hospital'),
(35852, 'https://ror.org/01ptz4362', 'no_lang_code', 1, 'https://ror.org/01ptz4362 Misasa Onsen Hospital'),
(35853, 'https://ror.org/0026mdx79', 'en', 1, 'https://ror.org/0026mdx79 Meizhou City People''s Hospital ę¢…å·žåø‚äŗŗę°‘åŒ»é™¢'),
(35854, 'https://ror.org/05wasnw28', 'en', 1, 'https://ror.org/05wasnw28 Meliksah University'),
(35855, 'https://ror.org/041z54681', 'en', 1, 'https://ror.org/041z54681 Mediclinic City Hospital'),
(35856, 'https://ror.org/04jxxwk32', 'en', 1, 'https://ror.org/04jxxwk32 KKR ENT Hospital and Research Institute'),
(35857, 'https://ror.org/04qe4s326', 'en', 1, 'https://ror.org/04qe4s326 MediHope Super Specialty Hospital'),
(35858, 'https://ror.org/05j6mnq41', 'en', 1, 'https://ror.org/05j6mnq41 Weifang Maternity and Child Care Hospital'),
(35859, 'https://ror.org/04wadnc74', 'en', 1, 'https://ror.org/04wadnc74 Mittal hospital'),
(35860, 'https://ror.org/03andxb27', 'no_lang_code', 1, 'https://ror.org/03andxb27 Medistem (Panama)'),
(35861, 'https://ror.org/00abh5k34', 'no_lang_code', 1, 'https://ror.org/00abh5k34 Mizushima Central Hospital'),
(35862, 'https://ror.org/00zsezt30', 'no_lang_code', 1, 'https://ror.org/00zsezt30 Pudong Maternal and Child Health Hospital'),
(35863, 'https://ror.org/029w49918', 'no_lang_code', 1, 'https://ror.org/029w49918 Mengchao Hepatobiliary Hospital'),
(35864, 'https://ror.org/02m8hhb31', 'no_lang_code', 1, 'https://ror.org/02m8hhb31 Matsutani America (United States)'),
(35865, 'https://ror.org/04ysdg006', 'en', 1, 'https://ror.org/04ysdg006 Anderson Hospital'),
(35866, 'https://ror.org/002npz476', 'en', 1, 'https://ror.org/002npz476 Mohak Hitech Speciality Hospital'),
(35867, 'https://ror.org/04n6gdq39', 'en', 1, 'https://ror.org/04n6gdq39 First People''s Hospital of Nanning'),
(35868, 'https://ror.org/01pqs5k49', 'tr', 1, 'https://ror.org/01pqs5k49 Baltalimanı Kemik Hastalıkları Hastanesi'),
(35869, 'https://ror.org/0332phy25', 'no_lang_code', 1, 'https://ror.org/0332phy25 Mouse Specifics (United States)'),
(35870, 'https://ror.org/01a2gef28', 'en', 1, 'https://ror.org/01a2gef28 Nanjing Maternity and Child Health Care Hospital'),
(35871, 'https://ror.org/04nsks563', 'en', 1, 'https://ror.org/04nsks563 Tang Hospital'),
(35872, 'https://ror.org/05d0s2j60', 'en', 1, 'https://ror.org/05d0s2j60 Nazareth Hospital'),
(35873, 'https://ror.org/03df3zw56', 'en', 1, 'https://ror.org/03df3zw56 Midland Regional Hospital at Tullamore Ospidéal GinearÔlta Thulach Mhór'),
(35874, 'https://ror.org/023e9bm81', 'en', 1, 'https://ror.org/023e9bm81 Muhammad Nawaz Sharif University of Engineering & Technology'),
(35875, 'https://ror.org/05bvvtk87', 'en', 1, 'https://ror.org/05bvvtk87 Nehru Gram Bharti University'),
(35876, 'https://ror.org/05agnp051', 'no_lang_code', 1, 'https://ror.org/05agnp051 Nema Research (United States)'),
(35877, 'https://ror.org/01r6rnc70', 'no_lang_code', 1, 'https://ror.org/01r6rnc70 Midot (Israel)'),
(35878, 'https://ror.org/035rf9c29', 'en', 1, 'https://ror.org/035rf9c29 Noguchi Hospital'),
(35879, 'https://ror.org/04z2wa675', 'no_lang_code', 1, 'https://ror.org/04z2wa675 Nanonics Imaging (Israel)'),
(35880, 'https://ror.org/00qhxf575', 'en', 1, 'https://ror.org/00qhxf575 Nokami Kousei Sougo Hospital'),
(35881, 'https://ror.org/056n6pc71', 'no_lang_code', 1, 'https://ror.org/056n6pc71 NanoPhotonica (United States)'),
(35882, 'https://ror.org/03tsk0927', 'en', 1, 'https://ror.org/03tsk0927 Murshidabad Medical College and Hospital'),
(35883, 'https://ror.org/00mpvas76', 'en', 1, 'https://ror.org/00mpvas76 ƅlesund Hospital'),
(35884, 'https://ror.org/045mkw584', 'no_lang_code', 1, 'https://ror.org/045mkw584 Nanosyn (United States)'),
(35885, 'https://ror.org/01na16w26', 'no_lang_code', 1, 'https://ror.org/01na16w26 Nanosystem (Russia)'),
(35886, 'https://ror.org/04x4hjg39', 'no_lang_code', 1, 'https://ror.org/04x4hjg39 Globus Medical (United States)'),
(35887, 'https://ror.org/054p5nv83', 'no_lang_code', 1, 'https://ror.org/054p5nv83 Azumi Hospital'),
(35888, 'https://ror.org/04nppa482', 'no_lang_code', 1, 'https://ror.org/04nppa482 Nextomics Biosciences (China) ęœŖę„ē»„ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(35889, 'https://ror.org/055vk7b41', 'en', 1, 'https://ror.org/055vk7b41 Ng Teng Fong General Hospital'),
(35890, 'https://ror.org/0016atv87', 'en', 1, 'https://ror.org/0016atv87 Nantong Maternity and Child Health Hospital'),
(35891, 'https://ror.org/00j0keq36', 'no_lang_code', 1, 'https://ror.org/00j0keq36 Oryza (Japan)'),
(35892, 'https://ror.org/02m7msy24', 'en', 1, 'https://ror.org/02m7msy24 North China Institute of Aerospace Engineering'),
(35893, 'https://ror.org/02rbpk607', 'no_lang_code', 1, 'https://ror.org/02rbpk607 NGC Aerospace (Canada)'),
(35894, 'https://ror.org/04ea07q57', 'no_lang_code', 1, 'https://ror.org/04ea07q57 Mytech (Japan)'),
(35895, 'https://ror.org/019rdg506', 'no_lang_code', 1, 'https://ror.org/019rdg506 Saiseikaisenri Hospital'),
(35896, 'https://ror.org/025ve8p25', 'no_lang_code', 1, 'https://ror.org/025ve8p25 Gazprombank'),
(35897, 'https://ror.org/052q3v778', 'en', 1, 'https://ror.org/052q3v778 Northwest Orthopaedic Specialists'),
(35898, 'https://ror.org/0077bn238', 'en', 1, 'https://ror.org/0077bn238 Niloufer Hospital'),
(35899, 'https://ror.org/01paha414', 'en', 1, 'https://ror.org/01paha414 Osaki Citizen Hospital å¤§å“Žåø‚ę°‘ē—…é™¢'),
(35900, 'https://ror.org/041qnde49', 'en', 1, 'https://ror.org/041qnde49 Azerbaijan National Aerospace Agency Azərbaycan Milli Aerokosmik Agentliyi'),
(35901, 'https://ror.org/02nwx5237', 'no_lang_code', 1, 'https://ror.org/02nwx5237 Health Biomed (China)'),
(35902, 'https://ror.org/03r296s11', 'no', 1, 'https://ror.org/03r296s11 UllevƄl Sykehusapotek'),
(35903, 'https://ror.org/037kzdg33', 'it', 1, 'https://ror.org/037kzdg33 Santissima TrinitĆ '),
(35904, 'https://ror.org/01j9jq089', 'en', 1, 'https://ror.org/01j9jq089 Overseas Chinese University åƒ‘å…‰ē§‘ęŠ€å¤§å­ø'),
(35905, 'https://ror.org/049k17734', 'no_lang_code', 1, 'https://ror.org/049k17734 Medfiles (Finland)'),
(35906, 'https://ror.org/02nrcd067', 'it', 1, 'https://ror.org/02nrcd067 Ospedale di Latisana'),
(35907, 'https://ror.org/044ybef51', 'en', 1, 'https://ror.org/044ybef51 National Cancer Institute'),
(35908, 'https://ror.org/01fa85441', 'en', 1, 'https://ror.org/01fa85441 NU Hospital Group'),
(35909, 'https://ror.org/040d6j646', 'it', 1, 'https://ror.org/040d6j646 Ospedale dell'' Angelo'),
(35910, 'https://ror.org/05rzcwg85', 'en', 1, 'https://ror.org/05rzcwg85 Peking University Sixth Hospital'),
(35911, 'https://ror.org/00ph73362', 'no_lang_code', 1, 'https://ror.org/00ph73362 P.E. LaMoreaux & Associates (United States)'),
(35912, 'https://ror.org/03n1tvb36', 'en', 1, 'https://ror.org/03n1tvb36 Humanitas Mater Domini'),
(35913, 'https://ror.org/0493ajd33', 'no_lang_code', 1, 'https://ror.org/0493ajd33 Plexision (United States)'),
(35914, 'https://ror.org/0056jcm84', 'en', 1, 'https://ror.org/0056jcm84 National Hospital'),
(35915, 'https://ror.org/05bkbs460', 'en', 1, 'https://ror.org/05bkbs460 Obafemi Awolowo University Teaching Hospitals Complex'),
(35916, 'https://ror.org/04j2kd042', 'en', 1, 'https://ror.org/04j2kd042 Paddington Cat Hospital'),
(35917, 'https://ror.org/03s204r94', 'no_lang_code', 1, 'https://ror.org/03s204r94 Pluristem Therapeutics (Israel)'),
(35918, 'https://ror.org/02bxe3959', 'en', 1, 'https://ror.org/02bxe3959 Changchun Obstetrics and Gynecology Hospital'),
(35919, 'https://ror.org/044xepv65', 'no_lang_code', 1, 'https://ror.org/044xepv65 Rosetta Genomics (Israel)'),
(35920, 'https://ror.org/0461fey84', 'no_lang_code', 1, 'https://ror.org/0461fey84 Pammakaristos Hospital'),
(35921, 'https://ror.org/02fvak958', 'no_lang_code', 1, 'https://ror.org/02fvak958 Olympia Diagnostics (United States)'),
(35922, 'https://ror.org/02wwftm12', 'en', 1, 'https://ror.org/02wwftm12 Panyu District Central Hospital'),
(35923, 'https://ror.org/01h4bh480', 'en', 1, 'https://ror.org/01h4bh480 Royal College of Surgeons in Ireland - Bahrain Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„Ų·ŲØŁŠŲ©'),
(35924, 'https://ror.org/02ke3k930', 'en', 1, 'https://ror.org/02ke3k930 Presbyterian University and Theological Seminary'),
(35925, 'https://ror.org/05phqqn85', 'no_lang_code', 1, 'https://ror.org/05phqqn85 Oncolytics Biotech (Canada)'),
(35926, 'https://ror.org/04a021880', 'no_lang_code', 1, 'https://ror.org/04a021880 Optolink (Russia)'),
(35927, 'https://ror.org/05kbqy564', 'no_lang_code', 1, 'https://ror.org/05kbqy564 Ooyo Seibutsu (Japan)'),
(35928, 'https://ror.org/04y7frr04', 'no_lang_code', 1, 'https://ror.org/04y7frr04 PriMove Infrastructure Development Consultants (India)'),
(35929, 'https://ror.org/04vp97q80', 'no_lang_code', 1, 'https://ror.org/04vp97q80 OP Bio Factory (Japan)'),
(35930, 'https://ror.org/04jvka613', 'en', 1, 'https://ror.org/04jvka613 National Institute of Technology, Toyama College åÆŒå±±é«˜ē­‰å°‚é–€å­¦ę ”'),
(35931, 'https://ror.org/02wf8xc83', 'de', 1, 'https://ror.org/02wf8xc83 Rudolfinerhaus Hospital'),
(35932, 'https://ror.org/04ejvay74', 'de', 1, 'https://ror.org/04ejvay74 Prosper Hospital'),
(35933, 'https://ror.org/00j4fqt27', 'en', 1, 'https://ror.org/00j4fqt27 National Neurosciences Centre'),
(35934, 'https://ror.org/0358q4810', 'en', 1, 'https://ror.org/0358q4810 Ruihua Affiliated Hospital of Soochow University'),
(35935, 'https://ror.org/01xpk0z24', 'sl', 1, 'https://ror.org/01xpk0z24 Psihiatrična BolniŔnica Ormož'),
(35936, 'https://ror.org/00h85rj63', 'no_lang_code', 1, 'https://ror.org/00h85rj63 Ryoka Systems (Japan)'),
(35937, 'https://ror.org/05hrhc122', 'en', 1, 'https://ror.org/05hrhc122 Q.D. Research'),
(35938, 'https://ror.org/00djq1r46', 'no_lang_code', 1, 'https://ror.org/00djq1r46 Optibrium (United Kingdom)'),
(35939, 'https://ror.org/031870q06', 'no_lang_code', 1, 'https://ror.org/031870q06 Orchid Pharma (India)'),
(35940, 'https://ror.org/01436qt40', 'no_lang_code', 1, 'https://ror.org/01436qt40 Mednax (United States)'),
(35941, 'https://ror.org/05e1zbn94', 'en', 1, 'https://ror.org/05e1zbn94 Qingdao Huanghai University'),
(35942, 'https://ror.org/01jf1v940', 'en', 1, 'https://ror.org/01jf1v940 Qingzhou City People''s Hospital'),
(35943, 'https://ror.org/03bjv2y17', 'en', 1, 'https://ror.org/03bjv2y17 Orlov State University'),
(35944, 'https://ror.org/00e42ba10', 'en', 1, 'https://ror.org/00e42ba10 Qiongtai Teachers College'),
(35945, 'https://ror.org/02bp8ne74', 'no_lang_code', 1, 'https://ror.org/02bp8ne74 Orochem Technologies (United States)'),
(35946, 'https://ror.org/015w8tk05', 'en', 1, 'https://ror.org/015w8tk05 Hospital de Olhos Sadalla Amin Ghanem Sadalla Amin Ghanem Eye Hospital'),
(35947, 'https://ror.org/02h67ht97', 'tr', 1, 'https://ror.org/02h67ht97 Sakarya Eğitim ve Araştırma Hastanesi Sakarya Training and Research Hospital'),
(35948, 'https://ror.org/03q9tge24', 'en', 1, 'https://ror.org/03q9tge24 Sai Nath University'),
(35949, 'https://ror.org/01ptvbz51', 'de', 1, 'https://ror.org/01ptvbz51 Asklepios Kliniken Bad Abbach'),
(35950, 'https://ror.org/00syyqa87', 'en', 1, 'https://ror.org/00syyqa87 Orthopaedic University Hospital Friedrichsheim OrthopƤdische UniversitƤtsklinik Friedrichsheim'),
(35951, 'https://ror.org/04ey7f468', 'en', 1, 'https://ror.org/04ey7f468 Saint Mary''s Hospital Luodong'),
(35952, 'https://ror.org/01r8rcr36', 'no_lang_code', 1, 'https://ror.org/01r8rcr36 Tongren Hospital'),
(35953, 'https://ror.org/052frf812', 'en', 1, 'https://ror.org/052frf812 Shanmuganathan Engineering College'),
(35954, 'https://ror.org/043p9x506', 'no_lang_code', 1, 'https://ror.org/043p9x506 Shutech (Japan)'),
(35955, 'https://ror.org/03hjnd594', 'no_lang_code', 1, 'https://ror.org/03hjnd594 San’an Optoelectronics (China)'),
(35956, 'https://ror.org/017jdxf89', 'no_lang_code', 1, 'https://ror.org/017jdxf89 Sibanye Gold (South Africa)'),
(35957, 'https://ror.org/05tv5ra11', 'en', 1, 'https://ror.org/05tv5ra11 Sixth Affiliated Hospital of Kunming Medical University'),
(35958, 'https://ror.org/01r1kqm06', 'en', 1, 'https://ror.org/01r1kqm06 Ramin Agriculture and Natural Resources University of Khouzestan'),
(35959, 'https://ror.org/011b7yt80', 'en', 1, 'https://ror.org/011b7yt80 Rashid Latif Medical College'),
(35960, 'https://ror.org/04a94ee43', 'en', 1, 'https://ror.org/04a94ee43 Sanko University'),
(35961, 'https://ror.org/01v83yg31', 'en', 1, 'https://ror.org/01v83yg31 Linzi District People''s Hospital'),
(35962, 'https://ror.org/01tmhf693', 'no_lang_code', 1, 'https://ror.org/01tmhf693 Recombinant Antibody Technology (United Kingdom)'),
(35963, 'https://ror.org/0126dzb30', 'cs', 1, 'https://ror.org/0126dzb30 SlezskĆ” Nemocnice v Opavě'),
(35964, 'https://ror.org/04rrsxv85', 'no_lang_code', 1, 'https://ror.org/04rrsxv85 Regentis Biomaterials (Israel)'),
(35965, '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'),
(35966, 'https://ror.org/01bdmd194', 'de', 1, 'https://ror.org/01bdmd194 Rems-Murr-Klinikum'),
(35967, 'https://ror.org/0303drj82', 'no_lang_code', 1, 'https://ror.org/0303drj82 Personalis (United States)'),
(35968, 'https://ror.org/04h84kq35', 'en', 1, 'https://ror.org/04h84kq35 Sobell House'),
(35969, 'https://ror.org/049epw866', 'en', 1, 'https://ror.org/049epw866 Shenzhen Shajing Affiliated Hospital of Guangzhou Medical University'),
(35970, 'https://ror.org/00jrxyr16', 'no_lang_code', 1, 'https://ror.org/00jrxyr16 Santokba Durlabhji Memorial hospital'),
(35971, 'https://ror.org/0570jbq35', 'en', 1, 'https://ror.org/0570jbq35 Fusion UK'),
(35972, 'https://ror.org/05tfq8535', 'en', 1, 'https://ror.org/05tfq8535 Phoenix College'),
(35973, 'https://ror.org/05efb1x79', 'no_lang_code', 1, 'https://ror.org/05efb1x79 Western Metal Materials (China)'),
(35974, 'https://ror.org/03ewzbm88', 'en', 1, 'https://ror.org/03ewzbm88 Sapporo Toho Hospital'),
(35975, 'https://ror.org/02zgfyq81', 'en', 1, 'https://ror.org/02zgfyq81 Sarah Network of Rehabilitation Hospitals'),
(35976, 'https://ror.org/05b51ak88', 'no_lang_code', 1, 'https://ror.org/05b51ak88 Chinese People’s Liberation Army 263 hospital'),
(35977, 'https://ror.org/00hdm6c37', 'no_lang_code', 1, 'https://ror.org/00hdm6c37 Shenzhen Weiguang Biological Products (China)'),
(35978, 'https://ror.org/00yxvfq91', 'no_lang_code', 1, 'https://ror.org/00yxvfq91 Slips Technologies (United States)'),
(35979, 'https://ror.org/04tf09b52', 'de', 1, 'https://ror.org/04tf09b52 St.-Johannes-Hospital Dortmund'),
(35980, 'https://ror.org/01dfmkn15', 'no_lang_code', 1, 'https://ror.org/01dfmkn15 Sky Island Alliance (United States)'),
(35981, 'https://ror.org/02333k624', 'en', 1, 'https://ror.org/02333k624 St. Joseph Dental College'),
(35982, 'https://ror.org/05817s869', 'no_lang_code', 1, 'https://ror.org/05817s869 Snowdon (United States)'),
(35983, 'https://ror.org/038rse530', 'no_lang_code', 1, 'https://ror.org/038rse530 Sumitomo Rubber Industries (Japan) ä½å‹ć‚“ćƒ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(35984, 'https://ror.org/051d2r706', 'no_lang_code', 1, 'https://ror.org/051d2r706 Selventa (United States)'),
(35985, 'https://ror.org/0360rgf68', 'de', 1, 'https://ror.org/0360rgf68 Sophien-und Hufeland Klinikum'),
(35986, 'https://ror.org/01cnbre95', 'no_lang_code', 1, 'https://ror.org/01cnbre95 Suzhou Creative Nano-carbon (China)'),
(35987, 'https://ror.org/03n439y66', 'en', 1, 'https://ror.org/03n439y66 Funabashi Orthopaedic Hospital');
INSERT INTO `rors` VALUES
(35988, 'https://ror.org/00j3kev89', 'no_lang_code', 1, 'https://ror.org/00j3kev89 Sotera Wireless (United States)'),
(35989, 'https://ror.org/00kkxne40', 'en', 1, 'https://ror.org/00kkxne40 Suzhou Kowloon Hospital'),
(35990, 'https://ror.org/03r8cvf94', 'no_lang_code', 1, 'https://ror.org/03r8cvf94 STATinMED (United States)'),
(35991, 'https://ror.org/00m84gg72', 'en', 1, 'https://ror.org/00m84gg72 Central Clinical Hospital No 2 named Semashko Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š‘Š¾Š»ŃŒŠ½ŠøŃ†Š° имени Демашко'),
(35992, 'https://ror.org/011nk9770', 'en', 1, 'https://ror.org/011nk9770 Shri Ramswaroop Memorial University'),
(35993, 'https://ror.org/001dr7z09', 'no_lang_code', 1, 'https://ror.org/001dr7z09 Senshio Rifu hospital'),
(35994, 'https://ror.org/056rkh971', 'en', 1, 'https://ror.org/056rkh971 Stony Brook Children''s Hospital'),
(35995, 'https://ror.org/006pshn89', 'en', 1, 'https://ror.org/006pshn89 Seojeong University ģ„œģ •ėŒ€ķ•™źµ'),
(35996, 'https://ror.org/02qzb7q11', 'no_lang_code', 1, 'https://ror.org/02qzb7q11 Sparx Group (Japan)'),
(35997, 'https://ror.org/012ttce43', 'en', 1, 'https://ror.org/012ttce43 State Scientific Research Institute of Aviation Systems Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных систем'),
(35998, 'https://ror.org/01jyw2164', 'en', 1, 'https://ror.org/01jyw2164 Hospital Taiping Taiping Hospital'),
(35999, 'https://ror.org/04m21mw32', 'pt', 1, 'https://ror.org/04m21mw32 State University of AmapĆ” Universidade Estadual do AmapĆ”'),
(36000, 'https://ror.org/05xe6ep17', 'no_lang_code', 1, 'https://ror.org/05xe6ep17 Satguru Partap Singh Hospital'),
(36001, 'https://ror.org/02bnr5073', 'en', 1, 'https://ror.org/02bnr5073 Stomatological Hospital of Chongqing Medical University'),
(36002, 'https://ror.org/05f1g5a11', 'en', 1, 'https://ror.org/05f1g5a11 Seven Oaks General Hospital'),
(36003, 'https://ror.org/01882y777', 'en', 1, 'https://ror.org/01882y777 Stony Brook Medicine'),
(36004, 'https://ror.org/02ez0zm48', 'en', 1, 'https://ror.org/02ez0zm48 Taixing People''s Hospital'),
(36005, 'https://ror.org/05gjjdy50', 'en', 1, 'https://ror.org/05gjjdy50 Swiss Leading Hospitals'),
(36006, 'https://ror.org/01cay9k79', 'en', 1, 'https://ror.org/01cay9k79 Sri Ramachandra Medical Centre'),
(36007, 'https://ror.org/04q18mv54', 'en', 1, 'https://ror.org/04q18mv54 Sugarcane Breeding Institute'),
(36008, 'https://ror.org/04x762r03', 'en', 1, 'https://ror.org/04x762r03 Sri Sai Super Speciality Hospital ą¤¶ą„ą¤°ą„€ साई ą¤øą„ą¤Ŗą¤° ą¤øą„ą¤Ŗą„‡ą¤¶ą¤²ą¤æą¤Ÿą„€ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(36009, 'https://ror.org/00aw48305', 'en', 1, 'https://ror.org/00aw48305 Sri Venkateswara Veterinary University ą°¶ą±ą°°ą±€ ą°µą±‡ą°‚ą°•ą°Ÿą±‡ą°¶ą±ą°µą°° ą°Ŗą°¶ą±ą°µą±ˆą°¦ą±ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚, తిరుపతి'),
(36010, 'https://ror.org/01mny2094', 'no_lang_code', 1, 'https://ror.org/01mny2094 Suita Tokushukai Hospital'),
(36011, 'https://ror.org/03nyxmy82', 'no_lang_code', 1, 'https://ror.org/03nyxmy82 Sumitomo Chemical (Japan) 住友化学'),
(36012, 'https://ror.org/05ktm1f40', 'en', 1, 'https://ror.org/05ktm1f40 Shalem College'),
(36013, 'https://ror.org/034j4ta73', 'no_lang_code', 1, 'https://ror.org/034j4ta73 Shanda Games'),
(36014, 'https://ror.org/0097rw043', 'no_lang_code', 1, 'https://ror.org/0097rw043 Taoka Hospital'),
(36015, 'https://ror.org/00vgj1d44', 'no_lang_code', 1, 'https://ror.org/00vgj1d44 Sunano (China)'),
(36016, 'https://ror.org/04yxyzj48', 'it', 1, 'https://ror.org/04yxyzj48 Azienda Ospedaliera Nazionale SS. Antonio e Biagio e Cesare Arrigo'),
(36017, 'https://ror.org/001wtjx27', 'no_lang_code', 1, 'https://ror.org/001wtjx27 Tata Steel (India)'),
(36018, 'https://ror.org/05bzatp41', 'no_lang_code', 1, 'https://ror.org/05bzatp41 Takashimadaira Chuo General Hospital'),
(36019, 'https://ror.org/00hwt9s33', 'no_lang_code', 1, 'https://ror.org/00hwt9s33 St Francis’ Hospital'),
(36020, 'https://ror.org/04yvdan45', 'en', 1, 'https://ror.org/04yvdan45 Tang Du Hospital'),
(36021, 'https://ror.org/05b52bg33', 'en', 1, 'https://ror.org/05b52bg33 Tatarstan Academy of Sciences'),
(36022, 'https://ror.org/05t6h5824', 'hu', 1, 'https://ror.org/05t6h5824 Szent Imre Egyetemi OktatókórhÔz'),
(36023, 'https://ror.org/05q054h21', 'no_lang_code', 1, 'https://ror.org/05q054h21 Syngenta (China)'),
(36024, 'https://ror.org/0019g5792', 'en', 1, 'https://ror.org/0019g5792 Taksim Alman Hastanesi Taksim German Hospital'),
(36025, 'https://ror.org/05pnk8r52', 'no_lang_code', 1, 'https://ror.org/05pnk8r52 Lushang (China)'),
(36026, 'https://ror.org/04ew4eb36', 'en', 1, 'https://ror.org/04ew4eb36 St John of God Hospital'),
(36027, 'https://ror.org/030617867', 'no_lang_code', 1, 'https://ror.org/030617867 Shandong Jiaotong Hospital'),
(36028, 'https://ror.org/00hvh1x59', 'en', 1, 'https://ror.org/00hvh1x59 St John of God Subiaco Hospital'),
(36029, 'https://ror.org/02ar2nf05', 'en', 1, 'https://ror.org/02ar2nf05 Shandong Provincial Hospital å±±äøœēœē«‹åŒ»é™¢'),
(36030, 'https://ror.org/04rq4r017', 'en', 1, 'https://ror.org/04rq4r017 John F Finn Institute for Public Safety'),
(36031, 'https://ror.org/019bexy50', 'hu', 1, 'https://ror.org/019bexy50 Szent BorbÔla KórhÔz'),
(36032, 'https://ror.org/00sgtyj59', 'no_lang_code', 1, 'https://ror.org/00sgtyj59 Ansteel (China)'),
(36033, 'https://ror.org/033jzmc70', 'en', 1, 'https://ror.org/033jzmc70 Leon Wiltse Memorial Hospital ģœŒģŠ¤źø°ė…ė³‘ģ›'),
(36034, 'https://ror.org/02fa7s823', 'no_lang_code', 1, 'https://ror.org/02fa7s823 Fujian Tobacco Industry Limited Liability Company (China)'),
(36035, 'https://ror.org/030f60051', 'en', 1, 'https://ror.org/030f60051 Ten Chen Hospital'),
(36036, 'https://ror.org/05d50hn21', 'en', 1, 'https://ror.org/05d50hn21 St. Johns Hospital'),
(36037, 'https://ror.org/0502tm991', 'en', 1, 'https://ror.org/0502tm991 Shenzhen Zhongshan Urological Hospital'),
(36038, 'https://ror.org/033fsme98', 'no_lang_code', 1, 'https://ror.org/033fsme98 TeraRecon (United States)'),
(36039, 'https://ror.org/04jhrwr82', 'de', 1, 'https://ror.org/04jhrwr82 St. Joseph-Krankenhaus'),
(36040, 'https://ror.org/01cmrry21', 'en', 1, 'https://ror.org/01cmrry21 Royal Hospital for Neuro-disability'),
(36041, 'https://ror.org/032yhrq65', 'no_lang_code', 1, 'https://ror.org/032yhrq65 Mission Hospital Durgapur'),
(36042, 'https://ror.org/0182n4f20', 'en', 1, 'https://ror.org/0182n4f20 National Center for University Entrance Examinations ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§å­¦å…„č©¦ć‚»ćƒ³ć‚æćƒ¼'),
(36043, 'https://ror.org/01y07zp44', 'en', 1, 'https://ror.org/01y07zp44 Second Affiliated Hospital of Inner Mongolia Medical University'),
(36044, 'https://ror.org/015z4kn26', 'en', 1, 'https://ror.org/015z4kn26 117th Hospital of People''s Liberation Army'),
(36045, 'https://ror.org/048xxxv92', 'en', 1, 'https://ror.org/048xxxv92 Toowoomba Hospital'),
(36046, 'https://ror.org/0520d0g72', 'en', 1, 'https://ror.org/0520d0g72 Academy of Physiotherapy in Wrocław'),
(36047, 'https://ror.org/01r8m0a35', 'en', 1, 'https://ror.org/01r8m0a35 The Ohio State University Newark'),
(36048, 'https://ror.org/03kvr9360', 'en', 1, 'https://ror.org/03kvr9360 181st Hospital of Chinese People''s Liberation Army'),
(36049, 'https://ror.org/04jbyz122', 'en', 1, 'https://ror.org/04jbyz122 Edmond and Lily Safra Children''s Hospital'),
(36050, 'https://ror.org/0261d1g37', 'en', 1, 'https://ror.org/0261d1g37 Second Hospital of Nanchang'),
(36051, 'https://ror.org/009ag0z22', 'no_lang_code', 1, 'https://ror.org/009ag0z22 Toshima Manufacturing (Japan)'),
(36052, 'https://ror.org/00bpk6053', 'en', 1, 'https://ror.org/00bpk6053 Orentreich Foundation for the Advancement of Science'),
(36053, 'https://ror.org/01c0exk17', 'en', 1, 'https://ror.org/01c0exk17 First Affiliated Hospital of Heilongjiang University of Chinese Medicine'),
(36054, 'https://ror.org/01s154648', 'en', 1, 'https://ror.org/01s154648 The Eighth People’s Hospital of Nanning'),
(36055, 'https://ror.org/05xyfmz81', 'en', 1, 'https://ror.org/05xyfmz81 Total Rehab'),
(36056, 'https://ror.org/047vmpf34', 'en', 1, 'https://ror.org/047vmpf34 Oxford Educational Institutions'),
(36057, 'https://ror.org/01zjqqd74', 'no_lang_code', 1, 'https://ror.org/01zjqqd74 Tottori Prefectural Kousei Hospital é³„å–ēœŒē«‹åŽšē”Ÿē—…é™¢'),
(36058, 'https://ror.org/0536rsk67', 'en', 1, 'https://ror.org/0536rsk67 First Affiliated Hospital of Henan University'),
(36059, 'https://ror.org/016bw3t53', 'en', 1, 'https://ror.org/016bw3t53 Second Hospital of Yichang'),
(36060, 'https://ror.org/05k5dwn49', 'en', 1, 'https://ror.org/05k5dwn49 Second Affiliated Hospital of Luohe Medical College'),
(36061, 'https://ror.org/01xncyx73', 'en', 1, 'https://ror.org/01xncyx73 Second People''s Hospital of NanTong å—é€šåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(36062, 'https://ror.org/00mgq3q11', 'de', 1, 'https://ror.org/00mgq3q11 Unfallkrankenhaus Meidling'),
(36063, 'https://ror.org/001e5z833', 'en', 1, 'https://ror.org/001e5z833 Wuqing District People''s Hospital'),
(36064, 'https://ror.org/05xceke97', 'en', 1, 'https://ror.org/05xceke97 Second People’s Hospital of Yibin'),
(36065, 'https://ror.org/04743aj70', 'en', 1, 'https://ror.org/04743aj70 Wuhan Third Hospital'),
(36066, 'https://ror.org/0140x9678', 'en', 1, 'https://ror.org/0140x9678 Jiujiang First People''s Hospital'),
(36067, 'https://ror.org/00wwb2b69', 'en', 1, 'https://ror.org/00wwb2b69 The First People''s Hospital of Shunde'),
(36068, 'https://ror.org/00fts7a69', 'en', 1, 'https://ror.org/00fts7a69 Zhangqiu City People''s Hospital ē« äø˜åŒŗäŗŗę°‘åŒ»é™¢'),
(36069, 'https://ror.org/00sf52z42', 'no_lang_code', 1, 'https://ror.org/00sf52z42 Truven Health Analytics (United States)'),
(36070, 'https://ror.org/006ajxc32', 'en', 1, 'https://ror.org/006ajxc32 Xiaochang People''s Hospital å­ę˜ŒåŽæē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(36071, 'https://ror.org/03p184w47', 'en', 1, 'https://ror.org/03p184w47 People''s Hospital of Bishan District'),
(36072, 'https://ror.org/01wfgh551', 'en', 1, 'https://ror.org/01wfgh551 Fifth Affiliated Hospital of Zhengzhou University'),
(36073, 'https://ror.org/00cy3ar81', 'en', 1, 'https://ror.org/00cy3ar81 People’s Hospital of Wenshan Prefecture'),
(36074, 'https://ror.org/03617rq47', 'en', 1, 'https://ror.org/03617rq47 The First People’s Hospital of Lianyungang'),
(36075, 'https://ror.org/01ms51d52', 'en', 1, 'https://ror.org/01ms51d52 National Institute of Technology, Tsuruoka College é¶“å²”å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(36076, 'https://ror.org/01bkvqx83', 'en', 1, 'https://ror.org/01bkvqx83 Affiliated Hospital of Hangzhou Normal University'),
(36077, 'https://ror.org/0335pr187', 'en', 1, 'https://ror.org/0335pr187 Fourth Affiliated Hospital of Guangxi Medical University'),
(36078, 'https://ror.org/045rymn14', 'en', 1, 'https://ror.org/045rymn14 Ningbo University Affiliated Hospital å®ę³¢å¤§å­¦åŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(36079, 'https://ror.org/04j6xxj55', 'en', 1, 'https://ror.org/04j6xxj55 Ufa State University of Economics and Service'),
(36080, 'https://ror.org/00vva8g89', 'en', 1, 'https://ror.org/00vva8g89 Fourth People''s Hospital of Sichuan Province'),
(36081, 'https://ror.org/0358v9d31', 'en', 1, 'https://ror.org/0358v9d31 Affiliated Hospital of Youjiang Medical University for Nationalities'),
(36082, 'https://ror.org/012xbj452', 'en', 1, 'https://ror.org/012xbj452 Fourth People’s Hospital of Jinan'),
(36083, 'https://ror.org/010mck520', 'de', 1, 'https://ror.org/010mck520 Universitäres Kinderwunschzentrum Lübeck'),
(36084, 'https://ror.org/01by4sz34', 'no_lang_code', 1, 'https://ror.org/01by4sz34 Ultizyme International (Japan)'),
(36085, 'https://ror.org/02fe8jz98', 'no_lang_code', 1, 'https://ror.org/02fe8jz98 Ultrahaptics (United Kingdom)'),
(36086, 'https://ror.org/01jnj9432', 'no_lang_code', 1, 'https://ror.org/01jnj9432 Lozenetz Hospital Университетска болница Лозенец'),
(36087, 'https://ror.org/02f3rn888', 'es', 1, 'https://ror.org/02f3rn888 Hospital Regional Rancagua'),
(36088, 'https://ror.org/00ccgr484', 'pt', 1, 'https://ror.org/00ccgr484 Real Hospital PortuguĆŖs'),
(36089, 'https://ror.org/01q4c7394', 'no_lang_code', 1, 'https://ror.org/01q4c7394 Thync (United States)'),
(36090, 'https://ror.org/053zwxr79', 'en', 1, 'https://ror.org/053zwxr79 United Nations University – Maastricht Economic and Social Research Institute on Innovation and Technology'),
(36091, 'https://ror.org/01y130z09', 'en', 1, 'https://ror.org/01y130z09 United Nations University-International Institute for Global Health'),
(36092, 'https://ror.org/0594j9961', 'fr', 1, 'https://ror.org/0594j9961 UniversitƩ des Sciences, de Technologie et de MƩdecine'),
(36093, 'https://ror.org/01jk9f236', 'no_lang_code', 1, 'https://ror.org/01jk9f236 Tissue Gene (United States)'),
(36094, 'https://ror.org/03crxcn36', 'en', 1, 'https://ror.org/03crxcn36 Albstadt-Sigmaringen University Hochschule Albstadt-Sigmaringen'),
(36095, 'https://ror.org/032ymzc07', 'en', 1, 'https://ror.org/032ymzc07 Fachhochschule Graubünden University of Applied Sciences of the Grisons'),
(36096, 'https://ror.org/034qxt397', 'it', 1, 'https://ror.org/034qxt397 Azienda Ospedaliero-Universitaria Cagliari'),
(36097, 'https://ror.org/000e9w685', 'en', 1, 'https://ror.org/000e9w685 Tokyo College of Environment'),
(36098, 'https://ror.org/03a07kg34', 'pl', 1, 'https://ror.org/03a07kg34 Uniwersytecki Szpital Kliniczny w Olsztynie'),
(36099, 'https://ror.org/043yqwn61', 'no_lang_code', 1, 'https://ror.org/043yqwn61 Tolero Pharmaceuticals (United States)'),
(36100, 'https://ror.org/00t954r14', 'en', 1, 'https://ror.org/00t954r14 University Hospital St. Marina'),
(36101, 'https://ror.org/017vkhg73', 'it', 1, 'https://ror.org/017vkhg73 Azienda Ospedaliera di Valtellina e Valchiavenna'),
(36102, 'https://ror.org/03mpgr607', 'no_lang_code', 1, 'https://ror.org/03mpgr607 Value Frontier (Japan)'),
(36103, 'https://ror.org/001gbdr73', 'no_lang_code', 1, 'https://ror.org/001gbdr73 Beijing VDJBio (China)'),
(36104, 'https://ror.org/006hvpn82', 'en', 1, 'https://ror.org/006hvpn82 Islamic Azad University of Shahreza'),
(36105, 'https://ror.org/04ctbxy49', 'en', 1, 'https://ror.org/04ctbxy49 VIA University College'),
(36106, 'https://ror.org/054dxwf20', 'no_lang_code', 1, 'https://ror.org/054dxwf20 Vibrant Data (United States)'),
(36107, 'https://ror.org/04880yb19', 'en', 1, 'https://ror.org/04880yb19 LUdeS University Libera Universita degli Studi di Scienze Umane e Tecnologiche di Lugano'),
(36108, 'https://ror.org/050qh0g23', 'en', 1, 'https://ror.org/050qh0g23 Villa Torri Hospital'),
(36109, 'https://ror.org/030xgr181', 'en', 1, 'https://ror.org/030xgr181 Vinzenz Pallotti Hospital Bensberg'),
(36110, 'https://ror.org/01v1qva17', 'no_lang_code', 1, 'https://ror.org/01v1qva17 Virttu Biologics (United Kingdom)'),
(36111, 'https://ror.org/0551mkt91', 'de', 1, 'https://ror.org/0551mkt91 St. Remigius Krankenhaus Opladen'),
(36112, 'https://ror.org/05t1nkw30', 'no_lang_code', 1, 'https://ror.org/05t1nkw30 Xiamen Tobacco Industry (China)'),
(36113, 'https://ror.org/01seqfb61', 'no_lang_code', 1, 'https://ror.org/01seqfb61 Vitacress (United Kingdom)'),
(36114, 'https://ror.org/05p50vw42', 'no_lang_code', 1, 'https://ror.org/05p50vw42 Viva Biotech (China)'),
(36115, 'https://ror.org/04enaaj19', 'en', 1, 'https://ror.org/04enaaj19 Volgograd State Agricultural University'),
(36116, 'https://ror.org/00ajd9b21', 'en', 1, 'https://ror.org/00ajd9b21 Western Galilee College המכללה ×”××§×“×ž×™×Ŗ גליל ×ž×¢×Ø×‘×™'),
(36117, 'https://ror.org/04zkkh342', 'no_lang_code', 1, 'https://ror.org/04zkkh342 Hangzhou Xixi hospital'),
(36118, 'https://ror.org/02x98g831', 'en', 1, 'https://ror.org/02x98g831 Xuzhou Children Hospital'),
(36119, 'https://ror.org/04tm92h03', 'no_lang_code', 1, 'https://ror.org/04tm92h03 Wakaba Hospital'),
(36120, 'https://ror.org/002t0k030', 'no_lang_code', 1, 'https://ror.org/002t0k030 Detec (Norway)'),
(36121, 'https://ror.org/011p1c445', 'no_lang_code', 1, 'https://ror.org/011p1c445 Kihoku hospital'),
(36122, 'https://ror.org/01fw7k425', 'no_lang_code', 1, 'https://ror.org/01fw7k425 Wired (Japan)'),
(36123, 'https://ror.org/007s9wc50', 'no_lang_code', 1, 'https://ror.org/007s9wc50 York Osteoarchaeology (United Kingdom)'),
(36124, 'https://ror.org/013c4m264', 'no_lang_code', 1, 'https://ror.org/013c4m264 Waters (China)'),
(36125, 'https://ror.org/05cqn9380', 'en', 1, 'https://ror.org/05cqn9380 Yangpu Hospital of Tongji University'),
(36126, 'https://ror.org/03kk5qq41', 'no_lang_code', 1, 'https://ror.org/03kk5qq41 WellSeek (United States)'),
(36127, 'https://ror.org/01nj2eb64', 'no_lang_code', 1, 'https://ror.org/01nj2eb64 Welspun (India)'),
(36128, 'https://ror.org/03gd0pk10', 'no_lang_code', 1, 'https://ror.org/03gd0pk10 Yashoda Hospital'),
(36129, 'https://ror.org/02671ys76', 'tr', 1, 'https://ror.org/02671ys76 Yunus Emre Hastanesi'),
(36130, 'https://ror.org/02ggf1973', 'en', 1, 'https://ror.org/02ggf1973 Yemeni Jordanian University'),
(36131, 'https://ror.org/002ngbk13', 'en', 1, 'https://ror.org/002ngbk13 Yeungjin College ģ˜ģ§„ģ „ė¬øėŒ€ķ•™'),
(36132, 'https://ror.org/053syz184', 'en', 1, 'https://ror.org/053syz184 Wuhan Technical College of Communications'),
(36133, 'https://ror.org/04abccf14', 'no_lang_code', 1, 'https://ror.org/04abccf14 Lee''s Pharmaceutical (China)'),
(36134, 'https://ror.org/00yejqr65', 'en', 1, 'https://ror.org/00yejqr65 Zhejiang DongFang Vocational and Technical College'),
(36135, 'https://ror.org/01b923653', 'no_lang_code', 1, 'https://ror.org/01b923653 Zebra Biologics (United States)'),
(36136, 'https://ror.org/03wcqja14', 'no_lang_code', 1, 'https://ror.org/03wcqja14 Wuhan YZY Biopharma (China)'),
(36137, 'https://ror.org/042yzj970', 'no_lang_code', 1, 'https://ror.org/042yzj970 Yonsei Sarang Hospital'),
(36138, 'https://ror.org/03j93xk55', 'no_lang_code', 1, 'https://ror.org/03j93xk55 Zhejiang Hisun Pharmaceutical (China)'),
(36139, 'https://ror.org/03syp5w68', 'en', 1, 'https://ror.org/03syp5w68 Zefat Academic College'),
(36140, 'https://ror.org/0111q0t22', 'en', 1, 'https://ror.org/0111q0t22 Wujiang District People''s Hospital å“ę±Ÿåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(36141, 'https://ror.org/0440kgc56', 'en', 1, 'https://ror.org/0440kgc56 Boai Hospital of Zhongshan äø­å±±åø‚åšēˆ±åŒ»é™¢'),
(36142, 'https://ror.org/00c0xnf10', 'en', 1, 'https://ror.org/00c0xnf10 Ahmed Bin Mohammed Military College'),
(36143, 'https://ror.org/03y3mre69', 'no_lang_code', 1, 'https://ror.org/03y3mre69 AHR (United Kingdom)'),
(36144, 'https://ror.org/026g68t18', 'no_lang_code', 1, 'https://ror.org/026g68t18 Zhoushan Hospital'),
(36145, 'https://ror.org/05pb5hm55', 'en', 1, 'https://ror.org/05pb5hm55 Wuxi People''s Hospital'),
(36146, 'https://ror.org/03nznv947', 'no_lang_code', 1, 'https://ror.org/03nznv947 Adaptive Intelligent Systems (United States)'),
(36147, 'https://ror.org/04eh3ca90', 'no_lang_code', 1, 'https://ror.org/04eh3ca90 WuXi AppTec (China)'),
(36148, 'https://ror.org/02t3pnf96', 'no_lang_code', 1, 'https://ror.org/02t3pnf96 WuXiPRA (China)'),
(36149, 'https://ror.org/05yfnn994', 'no_lang_code', 1, 'https://ror.org/05yfnn994 Allinea Software (United Kingdom)'),
(36150, 'https://ror.org/02h3c2z65', 'no_lang_code', 1, 'https://ror.org/02h3c2z65 Xeme Biopharma (United States)'),
(36151, 'https://ror.org/05hg8d082', 'en', 1, 'https://ror.org/05hg8d082 First Hospital of Xi''an'),
(36152, 'https://ror.org/05e966z79', 'en', 1, 'https://ror.org/05e966z79 Akron Council of Engineering and Scientific Societies'),
(36153, 'https://ror.org/049k3fp61', 'en', 1, 'https://ror.org/049k3fp61 American Society for Eighteenth-Century Studies'),
(36154, 'https://ror.org/02q350s40', 'no_lang_code', 1, 'https://ror.org/02q350s40 Brook Lyndhurst (United Kingdom)'),
(36155, 'https://ror.org/031ekp611', 'no_lang_code', 1, 'https://ror.org/031ekp611 BCL Technologies (United States)'),
(36156, 'https://ror.org/02ggbdh30', 'fr', 1, 'https://ror.org/02ggbdh30 CƩgep Marie-Victorin'),
(36157, 'https://ror.org/01ca46h26', 'en', 1, 'https://ror.org/01ca46h26 Association of Minority Health Professions Schools'),
(36158, 'https://ror.org/04fmx6120', 'no_lang_code', 1, 'https://ror.org/04fmx6120 Chaotic.com (United States)'),
(36159, 'https://ror.org/04bykga04', 'en', 1, 'https://ror.org/04bykga04 ASCE Foundation'),
(36160, 'https://ror.org/04y1t5a55', 'en', 1, 'https://ror.org/04y1t5a55 Colorado Wyoming Academy of Science'),
(36161, 'https://ror.org/0482b5b22', 'en', 1, 'https://ror.org/0482b5b22 Brazilian Agricultural Research Corporation Empresa Brasileira de Pesquisa AgropecuƔria'),
(36162, 'https://ror.org/00pdjsv51', 'en', 1, 'https://ror.org/00pdjsv51 National Mississippi River Museum & Aquarium'),
(36163, 'https://ror.org/03345rt93', 'no_lang_code', 1, 'https://ror.org/03345rt93 Imaging Technology Consulting (United States)'),
(36164, 'https://ror.org/00x035a35', 'en', 1, 'https://ror.org/00x035a35 Energy Agency for Southeast'),
(36165, 'https://ror.org/025xvg623', 'no_lang_code', 1, 'https://ror.org/025xvg623 EY Technologies (United States)'),
(36166, 'https://ror.org/01hcrwv94', 'no_lang_code', 1, 'https://ror.org/01hcrwv94 Engineering Research & Analysis (United States)'),
(36167, 'https://ror.org/02nejrd79', 'no_lang_code', 1, 'https://ror.org/02nejrd79 FlexEnable (United Kingdom)'),
(36168, 'https://ror.org/04kfz7522', 'no_lang_code', 1, 'https://ror.org/04kfz7522 Flex (Canada)'),
(36169, 'https://ror.org/045h1r327', 'no_lang_code', 1, 'https://ror.org/045h1r327 Scott Group Studio (United States)'),
(36170, 'https://ror.org/00xcyc711', 'no_lang_code', 1, 'https://ror.org/00xcyc711 Environmental Resources Management (United Kingdom)'),
(36171, 'https://ror.org/04ftf3m30', 'en', 1, 'https://ror.org/04ftf3m30 Fort Ticonderoga Association'),
(36172, 'https://ror.org/00q6e3362', 'en', 1, 'https://ror.org/00q6e3362 Friends of Independence National Historical Park'),
(36173, 'https://ror.org/008y17h10', 'no_lang_code', 1, 'https://ror.org/008y17h10 Retriev Technologies (United States)'),
(36174, 'https://ror.org/02yf7vb16', 'no_lang_code', 1, 'https://ror.org/02yf7vb16 PepsiCo (United Kingdom)'),
(36175, 'https://ror.org/05dvp4993', 'no_lang_code', 1, 'https://ror.org/05dvp4993 Ubitech (Greece)'),
(36176, 'https://ror.org/034epfv80', 'no_lang_code', 1, 'https://ror.org/034epfv80 Fluenta (Norway)'),
(36177, 'https://ror.org/02z1zrr65', 'no_lang_code', 1, 'https://ror.org/02z1zrr65 Fobox (Norway)'),
(36178, 'https://ror.org/043mmxr96', 'en', 1, 'https://ror.org/043mmxr96 Atlanta Film Festival'),
(36179, 'https://ror.org/038awey71', 'en', 1, 'https://ror.org/038awey71 Management Research Institute'),
(36180, 'https://ror.org/03ytzbe98', 'en', 1, 'https://ror.org/03ytzbe98 HBCU Library Alliance'),
(36181, 'https://ror.org/01qtabf22', 'en', 1, 'https://ror.org/01qtabf22 Processors and Growers Research Organisation'),
(36182, 'https://ror.org/02sv85a88', 'no_lang_code', 1, 'https://ror.org/02sv85a88 Rocksource (Norway)'),
(36183, 'https://ror.org/01ktbtm29', 'no_lang_code', 1, 'https://ror.org/01ktbtm29 Matrix Engineering (United States)'),
(36184, 'https://ror.org/03g6dfe56', 'en', 1, 'https://ror.org/03g6dfe56 Garden Organic'),
(36185, 'https://ror.org/01v5fm873', 'no_lang_code', 1, 'https://ror.org/01v5fm873 Reliable Software Resources (United States)'),
(36186, 'https://ror.org/02b3z7h52', 'en', 1, 'https://ror.org/02b3z7h52 International Association for Comparative Research on Leukemia and Related Diseases'),
(36187, 'https://ror.org/02fb28f73', 'no_lang_code', 1, 'https://ror.org/02fb28f73 Micropply (United Kingdom)'),
(36188, 'https://ror.org/013c8e386', 'no_lang_code', 1, 'https://ror.org/013c8e386 S2G Biochem (Canada)'),
(36189, 'https://ror.org/007vzwm62', 'en', 1, 'https://ror.org/007vzwm62 Northern College'),
(36190, 'https://ror.org/05fdre954', 'no_lang_code', 1, 'https://ror.org/05fdre954 Simitive (United Kingdom)'),
(36191, 'https://ror.org/047ew8298', 'en', 1, 'https://ror.org/047ew8298 Rowan College at Burlington County'),
(36192, 'https://ror.org/055g39p68', 'sk', 1, 'https://ror.org/055g39p68 SlovenskĆ” SpoločnosÅ„ pre Kvalitu'),
(36193, 'https://ror.org/032jq1431', 'no_lang_code', 1, 'https://ror.org/032jq1431 KLRU-TV'),
(36194, 'https://ror.org/05p1qcv65', 'no_lang_code', 1, 'https://ror.org/05p1qcv65 Ervik & SƦvik (Norway)'),
(36195, 'https://ror.org/03ffv2k10', 'en', 1, 'https://ror.org/03ffv2k10 Offshore Renewable Energy Catapult'),
(36196, 'https://ror.org/025rbqk82', 'en', 1, 'https://ror.org/025rbqk82 Small and Medium Enterprises Development Organization'),
(36197, 'https://ror.org/00vnpmg64', 'en', 1, 'https://ror.org/00vnpmg64 Oregon International Council'),
(36198, 'https://ror.org/02nwjvq32', 'no_lang_code', 1, 'https://ror.org/02nwjvq32 Lein Applied Diagnostics (United Kingdom)'),
(36199, 'https://ror.org/03kwtfg48', 'no', 1, 'https://ror.org/03kwtfg48 Foreningen GranittRock'),
(36200, 'https://ror.org/02jh1am07', 'en', 1, 'https://ror.org/02jh1am07 Utah Geological Survey'),
(36201, 'https://ror.org/01r729996', 'no_lang_code', 1, 'https://ror.org/01r729996 Tubądzin (Poland)'),
(36202, 'https://ror.org/059p4v436', 'no_lang_code', 1, 'https://ror.org/059p4v436 Kanazawa Hospital 金沢病院'),
(36203, 'https://ror.org/059z8dx76', 'no_lang_code', 1, 'https://ror.org/059z8dx76 Danko Hodowla Roślin (Poland)'),
(36204, 'https://ror.org/00g1f7p91', 'en', 1, 'https://ror.org/00g1f7p91 Weisman Art Museum'),
(36205, 'https://ror.org/03pehnk14', 'no_lang_code', 1, 'https://ror.org/03pehnk14 A&A Biotechnology (Poland)'),
(36206, 'https://ror.org/055ta3j62', 'no_lang_code', 1, 'https://ror.org/055ta3j62 Strainoptics (United States)'),
(36207, 'https://ror.org/03s6gep62', 'no_lang_code', 1, 'https://ror.org/03s6gep62 Ogrody Dankiewicz (Poland)'),
(36208, 'https://ror.org/04tkyvc79', 'no_lang_code', 1, 'https://ror.org/04tkyvc79 Abraxas Olgierd Jeremiasz (Poland)'),
(36209, 'https://ror.org/00hb1zy68', 'en', 1, 'https://ror.org/00hb1zy68 Swedish Chemical Society'),
(36210, 'https://ror.org/01prk3x73', 'en', 1, 'https://ror.org/01prk3x73 Academic Center of Medicine'),
(36211, 'https://ror.org/043xx4m81', 'no_lang_code', 1, 'https://ror.org/043xx4m81 Cybid (Poland)'),
(36212, 'https://ror.org/0145cbg67', 'no_lang_code', 1, 'https://ror.org/0145cbg67 Adal (Poland)'),
(36213, 'https://ror.org/00c6b0t92', 'no_lang_code', 1, 'https://ror.org/00c6b0t92 Autocomp Management (Poland)'),
(36214, 'https://ror.org/03jnqax33', 'no_lang_code', 1, 'https://ror.org/03jnqax33 TSO Logic (Canada)'),
(36215, 'https://ror.org/03zfe3916', 'no_lang_code', 1, 'https://ror.org/03zfe3916 Autosan (Poland)'),
(36216, 'https://ror.org/033wnan59', 'no_lang_code', 1, 'https://ror.org/033wnan59 D.A. Glass (Poland)'),
(36217, 'https://ror.org/01pgeyv96', 'no_lang_code', 1, 'https://ror.org/01pgeyv96 Adamed (Poland)'),
(36218, 'https://ror.org/00dbw6487', 'no_lang_code', 1, 'https://ror.org/00dbw6487 Damel (Poland)'),
(36219, 'https://ror.org/03ttb4s72', 'no_lang_code', 1, 'https://ror.org/03ttb4s72 Agat (Poland)'),
(36220, 'https://ror.org/02nhhj727', 'no_lang_code', 1, 'https://ror.org/02nhhj727 Wavefront (United States)'),
(36221, 'https://ror.org/04febtn50', 'no_lang_code', 1, 'https://ror.org/04febtn50 FinnMedi (Finland)'),
(36222, 'https://ror.org/04mzgyy45', 'en', 1, 'https://ror.org/04mzgyy45 Wayne County Historical Society'),
(36223, 'https://ror.org/02vkr9a39', 'no_lang_code', 1, 'https://ror.org/02vkr9a39 Deep Ocean Technology (Poland)'),
(36224, 'https://ror.org/00e0f3814', 'no_lang_code', 1, 'https://ror.org/00e0f3814 Awat (Poland)'),
(36225, 'https://ror.org/037emwa26', 'en', 1, 'https://ror.org/037emwa26 Polish Wood Cluster'),
(36226, 'https://ror.org/05qgg4j70', 'no_lang_code', 1, 'https://ror.org/05qgg4j70 Polmlek (Poland)'),
(36227, 'https://ror.org/005ckkn56', 'no_lang_code', 1, 'https://ror.org/005ckkn56 Demetrix (Poland)'),
(36228, 'https://ror.org/05f4xxw74', 'no_lang_code', 1, 'https://ror.org/05f4xxw74 Balton (Poland)'),
(36229, 'https://ror.org/015ndme87', 'en', 1, 'https://ror.org/015ndme87 Dream Adaptive Recreation'),
(36230, 'https://ror.org/01dvw2p26', 'en', 1, 'https://ror.org/01dvw2p26 Akces Lab'),
(36231, 'https://ror.org/023q9y161', 'no_lang_code', 1, 'https://ror.org/023q9y161 Albatros Aluminium (Poland)'),
(36232, 'https://ror.org/000n97s94', 'no_lang_code', 1, 'https://ror.org/000n97s94 BioMaxima (Poland)'),
(36233, 'https://ror.org/028r81743', 'en', 1, 'https://ror.org/028r81743 Habitat for Humanity'),
(36234, 'https://ror.org/02acpt629', 'en', 1, 'https://ror.org/02acpt629 Aeris Futuro Foundation'),
(36235, 'https://ror.org/02eqnr535', 'no_lang_code', 1, 'https://ror.org/02eqnr535 BioLab Innovative Research Technologies (Poland)'),
(36236, 'https://ror.org/04xzpvb32', 'en', 1, 'https://ror.org/04xzpvb32 Nobody’s Children Foundation'),
(36237, 'https://ror.org/022qzp196', 'no_lang_code', 1, 'https://ror.org/022qzp196 Alimetrics (Finland)'),
(36238, 'https://ror.org/00nbjph85', 'no_lang_code', 1, 'https://ror.org/00nbjph85 Polish Armaments Group (Poland)'),
(36239, 'https://ror.org/03fknzz27', 'no_lang_code', 1, 'https://ror.org/03fknzz27 E-Test (Poland)'),
(36240, 'https://ror.org/04qh35y55', 'pl', 1, 'https://ror.org/04qh35y55 Fundacja Ewy Błaszczyk Akogo'),
(36241, 'https://ror.org/01xa4wv03', 'no_lang_code', 1, 'https://ror.org/01xa4wv03 Hydromega (Poland)'),
(36242, 'https://ror.org/003agrv69', 'no_lang_code', 1, 'https://ror.org/003agrv69 Allstar PZL Glider (Poland)'),
(36243, 'https://ror.org/01f1ext93', 'no_lang_code', 1, 'https://ror.org/01f1ext93 IMC Engineering Poland (Poland)'),
(36244, 'https://ror.org/00p9dzj96', 'pl', 1, 'https://ror.org/00p9dzj96 Ogród Zoologiczny w Krakowie'),
(36245, 'https://ror.org/01w2a1611', 'no_lang_code', 1, 'https://ror.org/01w2a1611 Egovita (Poland)'),
(36246, 'https://ror.org/017gwgp39', 'no_lang_code', 1, 'https://ror.org/017gwgp39 Blue Dot Solutions (Poland)'),
(36247, 'https://ror.org/05k4hm954', 'no_lang_code', 1, 'https://ror.org/05k4hm954 Alstom (Poland)'),
(36248, 'https://ror.org/01yxywh30', 'no_lang_code', 1, 'https://ror.org/01yxywh30 Icopal (Poland)'),
(36249, 'https://ror.org/014cmtr13', 'en', 1, 'https://ror.org/014cmtr13 Unit for Social Innovation and Research Shipyard'),
(36250, 'https://ror.org/01k30an65', 'no_lang_code', 1, 'https://ror.org/01k30an65 Ekopop (Poland)'),
(36251, 'https://ror.org/02q2v1q18', 'no_lang_code', 1, 'https://ror.org/02q2v1q18 Alta (Poland)'),
(36252, 'https://ror.org/01xsmx049', 'no_lang_code', 1, 'https://ror.org/01xsmx049 ImagineRT (Poland)'),
(36253, 'https://ror.org/01gt3r273', 'no_lang_code', 1, 'https://ror.org/01gt3r273 EL-Automatyka (Poland)'),
(36254, 'https://ror.org/04x1mps47', 'no_lang_code', 1, 'https://ror.org/04x1mps47 Ele-DriveCo (Poland)'),
(36255, 'https://ror.org/04395y550', 'no_lang_code', 1, 'https://ror.org/04395y550 Alwernia (Poland)'),
(36256, 'https://ror.org/03jpvv707', 'no_lang_code', 1, 'https://ror.org/03jpvv707 AM Technologies (Poland)'),
(36257, 'https://ror.org/02vspvr81', 'pl', 1, 'https://ror.org/02vspvr81 Centrum Medyczne iMed24'),
(36258, 'https://ror.org/035qg4911', 'no_lang_code', 1, 'https://ror.org/035qg4911 Electric System & Laser Technology (Poland)'),
(36259, 'https://ror.org/00e9gka57', 'no_lang_code', 1, 'https://ror.org/00e9gka57 Budimex (Poland)'),
(36260, 'https://ror.org/0561ntb60', 'no_lang_code', 1, 'https://ror.org/0561ntb60 Impact Clean Power Technology (Poland)'),
(36261, 'https://ror.org/022e3pg27', 'en', 1, 'https://ror.org/022e3pg27 Praesterno Foundation'),
(36262, 'https://ror.org/024mz1171', 'no_lang_code', 1, 'https://ror.org/024mz1171 Budopex (Poland)'),
(36263, 'https://ror.org/00tdd5j20', 'no_lang_code', 1, 'https://ror.org/00tdd5j20 Elektrobudowa (Poland)'),
(36264, 'https://ror.org/04grq3m63', 'en', 1, 'https://ror.org/04grq3m63 American Heart of Poland'),
(36265, 'https://ror.org/040njjb71', 'en', 1, 'https://ror.org/040njjb71 TechSoup'),
(36266, 'https://ror.org/05cqs0208', 'no_lang_code', 1, 'https://ror.org/05cqs0208 Elhand Transformatory (Poland)'),
(36267, 'https://ror.org/01xy3fg04', 'no_lang_code', 1, 'https://ror.org/01xy3fg04 Eltcrac System (Poland)'),
(36268, 'https://ror.org/050w53c21', 'en', 1, 'https://ror.org/050w53c21 Free and Open Source Software Foundation'),
(36269, 'https://ror.org/04r5sb480', 'no_lang_code', 1, 'https://ror.org/04r5sb480 AMZ (Poland)'),
(36270, 'https://ror.org/004z3dy70', 'no_lang_code', 1, 'https://ror.org/004z3dy70 Polski Holding Obronny (Poland)'),
(36271, 'https://ror.org/05etvgz30', 'no_lang_code', 1, 'https://ror.org/05etvgz30 Galwes (Poland)'),
(36272, 'https://ror.org/0209g3a14', 'no_lang_code', 1, 'https://ror.org/0209g3a14 Innovations for Heart and Vessels (Poland)'),
(36273, 'https://ror.org/04jnhhw51', 'en', 1, 'https://ror.org/04jnhhw51 Carolinas HealthCare Foundation'),
(36274, 'https://ror.org/00wz29n17', 'no_lang_code', 1, 'https://ror.org/00wz29n17 Gascontrol Polska'),
(36275, 'https://ror.org/00sjjkp82', 'no_lang_code', 1, 'https://ror.org/00sjjkp82 Instar (Poland)'),
(36276, 'https://ror.org/03va80p69', 'no_lang_code', 1, 'https://ror.org/03va80p69 Gemalto (Poland)'),
(36277, 'https://ror.org/04ve0xz37', 'no_lang_code', 1, 'https://ror.org/04ve0xz37 Cemad (Poland)'),
(36278, 'https://ror.org/03yy70b29', 'no_lang_code', 1, 'https://ror.org/03yy70b29 Celsa (Poland)'),
(36279, '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'),
(36280, 'https://ror.org/012hfzv58', 'no_lang_code', 1, 'https://ror.org/012hfzv58 Armada (Poland)'),
(36281, 'https://ror.org/055j3vp97', 'no_lang_code', 1, 'https://ror.org/055j3vp97 Enel (Poland)'),
(36282, 'https://ror.org/053s3hs07', 'no_lang_code', 1, 'https://ror.org/053s3hs07 Astronika (Poland)'),
(36283, 'https://ror.org/00cadpz88', 'no_lang_code', 1, 'https://ror.org/00cadpz88 Enigma Systemy Ochrony Informacji (Poland)'),
(36284, 'https://ror.org/03n3nz506', 'no_lang_code', 1, 'https://ror.org/03n3nz506 General Motors (Poland)'),
(36285, 'https://ror.org/02nh4wx40', 'en', 1, 'https://ror.org/02nh4wx40 Institute of Agricultural and Food Biotechnology'),
(36286, 'https://ror.org/04yntp988', 'no_lang_code', 1, 'https://ror.org/04yntp988 Ente (Poland)'),
(36287, 'https://ror.org/03g4xy420', 'no_lang_code', 1, 'https://ror.org/03g4xy420 IBSS BIOMED (Poland)'),
(36288, 'https://ror.org/028hxy872', 'pl', 1, 'https://ror.org/028hxy872 Centrum Medyczne Aurismed'),
(36289, 'https://ror.org/04ja6xk17', 'no_lang_code', 1, 'https://ror.org/04ja6xk17 Genomed (Poland)'),
(36290, 'https://ror.org/04r0t2b06', 'no_lang_code', 1, 'https://ror.org/04r0t2b06 Auto Galeria (Poland)'),
(36291, 'https://ror.org/04qktrs60', 'no_lang_code', 1, 'https://ror.org/04qktrs60 Esri Polska (Poland)'),
(36292, 'https://ror.org/05dmdhx59', 'en', 1, 'https://ror.org/05dmdhx59 Institute of Ceramics and Building Materials'),
(36293, 'https://ror.org/054h11b04', 'en', 1, 'https://ror.org/054h11b04 Central Finland Health Care District Keski-Suomen keskussairaala'),
(36294, 'https://ror.org/04qjtha44', 'no_lang_code', 1, 'https://ror.org/04qjtha44 Environmental Tectonics (Poland)'),
(36295, 'https://ror.org/00wtrhc98', 'en', 1, 'https://ror.org/00wtrhc98 Institute of Geography and Spatial Organization, Polish Academy of Sciences'),
(36296, 'https://ror.org/003sdh081', 'en', 1, 'https://ror.org/003sdh081 Instytut Historii im. Tadeusza Manteuffla Tadeusz Manteuffel Institute of History'),
(36297, 'https://ror.org/01pe10g60', 'en', 1, 'https://ror.org/01pe10g60 Institute of Philosophy and Sociology Instytut Filozofii i Socjologii'),
(36298, 'https://ror.org/00cv5j742', 'no_lang_code', 1, 'https://ror.org/00cv5j742 Fabryka Armatur Swarzędz (Poland)'),
(36299, 'https://ror.org/04tk9dh57', 'no_lang_code', 1, 'https://ror.org/04tk9dh57 Global Colors Polska (Poland)'),
(36300, 'https://ror.org/01fntqb44', 'no_lang_code', 1, 'https://ror.org/01fntqb44 Sefako (Poland)'),
(36301, 'https://ror.org/05nac3h44', 'pl', 1, 'https://ror.org/05nac3h44 Centrum Badań i Dozoru Górnictwa Podziemnego'),
(36302, 'https://ror.org/037p52j25', 'en', 1, 'https://ror.org/037p52j25 Institute of Theoretical and Applied Informatics Instytut Informatyki Teoretycznej i Stosowanej Polskiej Akademii Nauk'),
(36303, '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'),
(36304, 'https://ror.org/030zz7j19', 'pl', 1, 'https://ror.org/030zz7j19 Centrum Badań i Innowacji Pro-Akademia'),
(36305, 'https://ror.org/03w4fhz38', 'no_lang_code', 1, 'https://ror.org/03w4fhz38 DMG Mori (Poland)'),
(36306, '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'),
(36307, 'https://ror.org/01ajzj063', 'no_lang_code', 1, 'https://ror.org/01ajzj063 GMV Innovating Solutions (Poland)'),
(36308, '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'),
(36309, 'https://ror.org/037x86n09', 'pl', 1, 'https://ror.org/037x86n09 Centrum Cyfrowe Projekt'),
(36310, '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'),
(36311, 'https://ror.org/01x675h84', 'en', 1, 'https://ror.org/01x675h84 Institute of Mathematical Machines'),
(36312, 'https://ror.org/01q6r0v22', 'pl', 1, 'https://ror.org/01q6r0v22 Centrum Leczenia Oparzeń'),
(36313, 'https://ror.org/01vzjr049', 'en', 1, 'https://ror.org/01vzjr049 Instytut Mechaniki Górotworu Strata Mechanics Research Institute'),
(36314, 'https://ror.org/02j43z323', 'en', 1, 'https://ror.org/02j43z323 Institute of Security Technologies MORATEX'),
(36315, 'https://ror.org/04c6t2v13', 'no_lang_code', 1, 'https://ror.org/04c6t2v13 TDJ (Poland)'),
(36316, 'https://ror.org/051c73j58', 'no_lang_code', 1, 'https://ror.org/051c73j58 Gonar (Poland)'),
(36317, 'https://ror.org/02w1m8s39', 'no_lang_code', 1, 'https://ror.org/02w1m8s39 FAS (Poland)'),
(36318, 'https://ror.org/05kbjcm35', 'no_lang_code', 1, 'https://ror.org/05kbjcm35 FCA (Poland)'),
(36319, 'https://ror.org/00pvkt339', 'no_lang_code', 1, 'https://ror.org/00pvkt339 Finnish Consulting Group (Finland)'),
(36320, 'https://ror.org/03gw23n83', 'no_lang_code', 1, 'https://ror.org/03gw23n83 Górnośląski Park Przemysłowy (Poland)'),
(36321, 'https://ror.org/03b6zwf53', 'en', 1, 'https://ror.org/03b6zwf53 Finnish Society for Nutrition Research'),
(36322, 'https://ror.org/03ad5a420', 'no_lang_code', 1, 'https://ror.org/03ad5a420 Grupa Azoty (Poland)'),
(36323, 'https://ror.org/03mg4e956', 'no_lang_code', 1, 'https://ror.org/03mg4e956 Mahle (Poland)'),
(36324, 'https://ror.org/01fbjr446', 'pl', 1, 'https://ror.org/01fbjr446 Instytut Metalurgii Żelaza im. Stanisława Staszica Stanislaw Staszic Institute for Ferrous Metallurgy'),
(36325, 'https://ror.org/01fba6t94', 'no_lang_code', 1, 'https://ror.org/01fba6t94 Group Image (Poland)'),
(36326, 'https://ror.org/00gbgk256', 'en', 1, 'https://ror.org/00gbgk256 MaineGeneral Medical Center'),
(36327, 'https://ror.org/025cgya16', 'no_lang_code', 1, 'https://ror.org/025cgya16 GTM Mobil (Poland)'),
(36328, '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'),
(36329, 'https://ror.org/05n3y0v15', 'no_lang_code', 1, 'https://ror.org/05n3y0v15 Inter Metal (Poland)'),
(36330, 'https://ror.org/01reqxx39', 'no_lang_code', 1, 'https://ror.org/01reqxx39 Hardsoft Microprocessor Systems (Poland)'),
(36331, 'https://ror.org/05htr1n89', 'pl', 1, 'https://ror.org/05htr1n89 Centrum Słuchu i Mowy'),
(36332, 'https://ror.org/03j7efk91', 'en', 1, 'https://ror.org/03j7efk91 New Chemical Syntheses Institute'),
(36333, 'https://ror.org/02vfaew05', 'no_lang_code', 1, 'https://ror.org/02vfaew05 Medcore (Poland)'),
(36334, 'https://ror.org/0417dsh96', 'no_lang_code', 1, 'https://ror.org/0417dsh96 Harpo (Poland)'),
(36335, 'https://ror.org/04xdy7f60', 'no_lang_code', 1, 'https://ror.org/04xdy7f60 Izolacja-Jarocin (Poland)'),
(36336, 'https://ror.org/00sx97n88', 'en', 1, 'https://ror.org/00sx97n88 Centre for International Relations'),
(36337, 'https://ror.org/02rcybf88', 'no_lang_code', 1, 'https://ror.org/02rcybf88 Medgal (Poland)'),
(36338, 'https://ror.org/00rmr1x70', 'no_lang_code', 1, 'https://ror.org/00rmr1x70 Hart Tech (Poland)'),
(36339, 'https://ror.org/02drpw934', 'no_lang_code', 1, 'https://ror.org/02drpw934 Ciech (Poland)'),
(36340, 'https://ror.org/03v95wd71', 'no_lang_code', 1, 'https://ror.org/03v95wd71 Azet Products (Poland)'),
(36341, 'https://ror.org/0133spp95', 'no_lang_code', 1, 'https://ror.org/0133spp95 Metal Expert (Poland)'),
(36342, 'https://ror.org/01ptw3s93', 'no_lang_code', 1, 'https://ror.org/01ptw3s93 JAS Technologies (Poland)'),
(36343, 'https://ror.org/03zskka50', 'en', 1, 'https://ror.org/03zskka50 Metro Area Community Empowerment'),
(36344, 'https://ror.org/03qg29w70', 'no_lang_code', 1, 'https://ror.org/03qg29w70 Jastrzębska Spółka Węglowa (Poland)'),
(36345, 'https://ror.org/03a0eje69', 'no_lang_code', 1, 'https://ror.org/03a0eje69 Helioenergia (Poland)'),
(36346, 'https://ror.org/04m6b4442', 'en', 1, 'https://ror.org/04m6b4442 Maksymilian Pluta Institute of Applied Optics'),
(36347, 'https://ror.org/01ep3aj25', 'no_lang_code', 1, 'https://ror.org/01ep3aj25 Centralny Ośrodek Informatyki Górnictwa'),
(36348, 'https://ror.org/04571v857', 'no_lang_code', 1, 'https://ror.org/04571v857 MetsƤhallitus (Finland)'),
(36349, 'https://ror.org/02dvkbx23', 'no_lang_code', 1, 'https://ror.org/02dvkbx23 Syskon (Poland)'),
(36350, 'https://ror.org/04xk7k966', 'en', 1, 'https://ror.org/04xk7k966 Institute of Paleobiology Instytut Paleobiologii'),
(36351, 'https://ror.org/02vwv0r85', 'no_lang_code', 1, 'https://ror.org/02vwv0r85 Jenox (Poland)'),
(36352, 'https://ror.org/011m6ze86', 'no_lang_code', 1, 'https://ror.org/011m6ze86 Mexeo (Poland)'),
(36353, 'https://ror.org/0055ya375', 'no_lang_code', 1, 'https://ror.org/0055ya375 MGGP Aero (Poland)'),
(36354, 'https://ror.org/02c3phe56', 'en', 1, 'https://ror.org/02c3phe56 Witold Stefański Institute of Parasitology Witolda Stefańskiego Instytut Parazytologii PAN'),
(36355, 'https://ror.org/00g9q3p96', 'no_lang_code', 1, 'https://ror.org/00g9q3p96 JHJ (Poland)'),
(36356, 'https://ror.org/01btsgc53', 'no_lang_code', 1, 'https://ror.org/01btsgc53 Miejskie Przedsiebiorstwo Wodociągów i Kanalizacji (Poland)'),
(36357, 'https://ror.org/0261v0920', 'no_lang_code', 1, 'https://ror.org/0261v0920 Pedmo (Poland)'),
(36358, 'https://ror.org/01j9zyw40', 'en', 1, 'https://ror.org/01j9zyw40 Institute of Environmental Engineering Instytut Podstaw Inżynierii Środowiska Polskiej Akademii Nauk'),
(36359, 'https://ror.org/02zhmsp02', 'no_lang_code', 1, 'https://ror.org/02zhmsp02 HOBAS (Poland)'),
(36360, 'https://ror.org/00sgkxj28', 'no_lang_code', 1, 'https://ror.org/00sgkxj28 Katowice Coal Holding (Poland)'),
(36361, 'https://ror.org/0180r1p81', 'en', 1, 'https://ror.org/0180r1p81 Pellervo Economic Research'),
(36362, 'https://ror.org/01hz8vp40', 'no_lang_code', 1, 'https://ror.org/01hz8vp40 Peszke (Poland)'),
(36363, 'https://ror.org/00d5dra59', 'no_lang_code', 1, 'https://ror.org/00d5dra59 KenBIT (Poland)'),
(36364, 'https://ror.org/054m12006', 'no_lang_code', 1, 'https://ror.org/054m12006 Mikanit (Poland)'),
(36365, 'https://ror.org/01kk1nf20', 'en', 1, 'https://ror.org/01kk1nf20 Institute of Industrial Organic Chemistry'),
(36366, 'https://ror.org/022aw4932', 'no_lang_code', 1, 'https://ror.org/022aw4932 Mine Master (Poland)'),
(36367, 'https://ror.org/05qztqs34', 'pl', 1, 'https://ror.org/05qztqs34 Instytut Przemysłu Skórzanego'),
(36368, 'https://ror.org/00dftxz84', 'no_lang_code', 1, 'https://ror.org/00dftxz84 KFB Polska (Poland)'),
(36369, 'https://ror.org/034dn0836', 'en', 1, 'https://ror.org/034dn0836 Institute of Psychology Instytut Psychologii Polska Akademia Nauk'),
(36370, 'https://ror.org/05n3z7m75', 'no_lang_code', 1, 'https://ror.org/05n3z7m75 Radwag Balances and Scales (Poland)'),
(36371, 'https://ror.org/03q27nw68', 'no_lang_code', 1, 'https://ror.org/03q27nw68 Kirchhoff (Poland)'),
(36372, 'https://ror.org/03k1p5343', 'no_lang_code', 1, 'https://ror.org/03k1p5343 Pit Radwar (Poland)'),
(36373, 'https://ror.org/03j6dmn04', 'no_lang_code', 1, 'https://ror.org/03j6dmn04 MSP (Poland)'),
(36374, 'https://ror.org/018wm7s07', 'en', 1, 'https://ror.org/018wm7s07 Coal Mining Museum in Zabrze'),
(36375, 'https://ror.org/05rdy5005', 'en', 1, 'https://ror.org/05rdy5005 Institute of Systematics and Evolution of Animals Instytut Systematyki i Ewolucji Zwierząt PAN'),
(36376, 'https://ror.org/03h68ys54', 'no_lang_code', 1, 'https://ror.org/03h68ys54 Kongsberg Automotive (Poland)'),
(36377, 'https://ror.org/017bpsz44', 'no_lang_code', 1, 'https://ror.org/017bpsz44 Rejonowe Przedsiębiorstwo Wodociągów i Kanalizacji W Sosnowcu (Poland)'),
(36378, 'https://ror.org/017fyx225', 'en', 1, 'https://ror.org/017fyx225 Institute of Art Instytut Sztuki Polskiej Akademii Nauk'),
(36379, 'https://ror.org/00dn6p145', 'no_lang_code', 1, 'https://ror.org/00dn6p145 kopex (Poland)'),
(36380, 'https://ror.org/01z735w38', 'no_lang_code', 1, 'https://ror.org/01z735w38 Rek Swed (Poland)'),
(36381, 'https://ror.org/03as2hc70', 'en', 1, 'https://ror.org/03as2hc70 Instytut Technik Innowacyjnych EMAG Łukasiewicz Research Network - Institute of Innovative Technologies EMAG'),
(36382, 'https://ror.org/00f4x2j47', 'no_lang_code', 1, 'https://ror.org/00f4x2j47 Korporacja Wschód (Poland)'),
(36383, 'https://ror.org/04bndcy38', 'no_lang_code', 1, 'https://ror.org/04bndcy38 Remstat (Poland)'),
(36384, 'https://ror.org/02ks0br87', 'en', 1, 'https://ror.org/02ks0br87 Institute of Medical Technology and Equipment'),
(36385, 'https://ror.org/03fpmzv72', 'no_lang_code', 1, 'https://ror.org/03fpmzv72 Krajowa Spółka Cukrowa (Poland)'),
(36386, 'https://ror.org/04a57ke25', 'no_lang_code', 1, 'https://ror.org/04a57ke25 PKP Group (Poland)'),
(36387, 'https://ror.org/01q2fk491', 'en', 1, 'https://ror.org/01q2fk491 Institute of Technology and Life Sciences'),
(36388, 'https://ror.org/05fn7qf30', 'no_lang_code', 1, 'https://ror.org/05fn7qf30 Nafra Polska (Poland)'),
(36389, 'https://ror.org/00gbs4x54', 'en', 1, 'https://ror.org/00gbs4x54 Institute for the Languages of Finland'),
(36390, 'https://ror.org/05v34hx56', 'no_lang_code', 1, 'https://ror.org/05v34hx56 Nano Carbon (Poland)'),
(36391, 'https://ror.org/00hwjxp97', 'no_lang_code', 1, 'https://ror.org/00hwjxp97 Pesa (Poland)'),
(36392, 'https://ror.org/00qnzks08', 'no_lang_code', 1, 'https://ror.org/00qnzks08 Krakodlew (Poland)'),
(36393, 'https://ror.org/00pqahb84', 'no_lang_code', 1, 'https://ror.org/00pqahb84 NanoVelos (Poland)'),
(36394, 'https://ror.org/05sdxzt97', 'no_lang_code', 1, 'https://ror.org/05sdxzt97 Robotics Inventions (Poland)'),
(36395, 'https://ror.org/02957ep02', 'no_lang_code', 1, 'https://ror.org/02957ep02 Pol-Nil (Poland)'),
(36396, 'https://ror.org/01m4hhk76', 'pl', 1, 'https://ror.org/01m4hhk76 Stowarzyszenie Nowa Wspólna Droga'),
(36397, 'https://ror.org/05c3cgy93', 'en', 1, 'https://ror.org/05c3cgy93 Krakow Cardiovascular Research Institute'),
(36398, 'https://ror.org/01w5jqs06', 'no_lang_code', 1, 'https://ror.org/01w5jqs06 Pol-Spec-Tech-Service (Poland)'),
(36399, 'https://ror.org/01dcvkj86', 'en', 1, 'https://ror.org/01dcvkj86 Medenta'),
(36400, 'https://ror.org/03c4nng82', 'no_lang_code', 1, 'https://ror.org/03c4nng82 Hutton Energy (Poland)'),
(36401, 'https://ror.org/01eewg647', 'no_lang_code', 1, 'https://ror.org/01eewg647 Studio Promocji MIT (Poland)'),
(36402, 'https://ror.org/02sgbmf75', 'en', 1, 'https://ror.org/02sgbmf75 United Spinal Association'),
(36403, 'https://ror.org/056sydj58', 'en', 1, 'https://ror.org/056sydj58 National Wheelchair Softball Association'),
(36404, 'https://ror.org/03qatc504', 'no_lang_code', 1, 'https://ror.org/03qatc504 Krzysztof Kucharczyk Techniki Elektroforetyczne (Poland)'),
(36405, 'https://ror.org/04xex7r55', 'no_lang_code', 1, 'https://ror.org/04xex7r55 Ronkowski (Poland)'),
(36406, 'https://ror.org/05k51jh55', 'no_lang_code', 1, 'https://ror.org/05k51jh55 Rosomak (Poland)'),
(36407, 'https://ror.org/032p5d762', 'no_lang_code', 1, 'https://ror.org/032p5d762 Polprek (Poland)'),
(36408, 'https://ror.org/02fmy3k80', 'no_lang_code', 1, 'https://ror.org/02fmy3k80 Kubara Lamina (Poland)'),
(36409, 'https://ror.org/01t19y493', 'no_lang_code', 1, 'https://ror.org/01t19y493 NeoSentio (Poland)'),
(36410, 'https://ror.org/03d772195', 'no_lang_code', 1, 'https://ror.org/03d772195 Supra Elco (Poland)'),
(36411, 'https://ror.org/01pfm3094', 'no_lang_code', 1, 'https://ror.org/01pfm3094 Sweco (Poland)'),
(36412, 'https://ror.org/00xb1ja93', 'en', 1, 'https://ror.org/00xb1ja93 Polish Seed Trade Association'),
(36413, 'https://ror.org/022c1nw12', 'fi', 1, 'https://ror.org/022c1nw12 Salla'),
(36414, 'https://ror.org/00632ee91', 'no_lang_code', 1, 'https://ror.org/00632ee91 Polonia Aero (Poland)'),
(36415, 'https://ror.org/042grvw12', 'no_lang_code', 1, 'https://ror.org/042grvw12 Neuro Device (Poland)'),
(36416, 'https://ror.org/02z3m0q91', 'no_lang_code', 1, 'https://ror.org/02z3m0q91 Synthos (Poland)'),
(36417, 'https://ror.org/05nezzp08', 'pl', 1, 'https://ror.org/05nezzp08 Polskie Forum Osób Niepełnosprawnych'),
(36418, 'https://ror.org/04d2fgr32', 'no_lang_code', 1, 'https://ror.org/04d2fgr32 Zenit (Poland)'),
(36419, 'https://ror.org/02xjdt420', 'no_lang_code', 1, 'https://ror.org/02xjdt420 Systherm (Poland)'),
(36420, 'https://ror.org/058b5kq09', 'no_lang_code', 1, 'https://ror.org/058b5kq09 Polskie Górnictwo Naftowe i Gazownictwo (Poland)'),
(36421, 'https://ror.org/01w3zv781', 'en', 1, 'https://ror.org/01w3zv781 Niilo MƤki institute'),
(36422, 'https://ror.org/00fwhek95', 'en', 1, 'https://ror.org/00fwhek95 Laboratory of Molecular Genetics'),
(36423, 'https://ror.org/057scmk50', 'en', 1, 'https://ror.org/057scmk50 Sami Parliament of Finland'),
(36424, 'https://ror.org/00vggt529', 'no_lang_code', 1, 'https://ror.org/00vggt529 Tauron (Poland)'),
(36425, 'https://ror.org/04xpcd506', 'pl', 1, 'https://ror.org/04xpcd506 Polskie Sieci Elektroenergetyczne');
INSERT INTO `rors` VALUES
(36426, 'https://ror.org/01z6h9229', 'no_lang_code', 1, 'https://ror.org/01z6h9229 Nowoczesne Techniki Instalacyjne (Poland)'),
(36427, 'https://ror.org/00gqs6w28', 'no_lang_code', 1, 'https://ror.org/00gqs6w28 Taxus (Poland)'),
(36428, 'https://ror.org/05c6gff39', 'no_lang_code', 1, 'https://ror.org/05c6gff39 Seco Warwick (Poland)'),
(36429, 'https://ror.org/018674f79', 'no_lang_code', 1, 'https://ror.org/018674f79 Laboratorium Kosmetyczne Dr Irena Eris (Poland)'),
(36430, 'https://ror.org/027z9zj80', 'no_lang_code', 1, 'https://ror.org/027z9zj80 Numerola (Finland)'),
(36431, 'https://ror.org/00frd8c57', 'no_lang_code', 1, 'https://ror.org/00frd8c57 Techglass (Poland)'),
(36432, 'https://ror.org/059s74574', 'en', 1, 'https://ror.org/059s74574 Labour Institute for Economic Research'),
(36433, 'https://ror.org/01jvdrm66', 'pl', 1, 'https://ror.org/01jvdrm66 Technika Podwodna (Poland)'),
(36434, 'https://ror.org/04n4xbr51', 'no_lang_code', 1, 'https://ror.org/04n4xbr51 Sensor Tech (Poland)'),
(36435, 'https://ror.org/03qkdhn31', 'no_lang_code', 1, 'https://ror.org/03qkdhn31 Lars (Poland)'),
(36436, 'https://ror.org/05bcfye76', 'no_lang_code', 1, 'https://ror.org/05bcfye76 Kawmet (Poland)'),
(36437, 'https://ror.org/05n4pcy10', 'pl', 1, 'https://ror.org/05n4pcy10 Polskie Stowarzyszenie Korozyjne'),
(36438, 'https://ror.org/04m7ezr62', 'no_lang_code', 1, 'https://ror.org/04m7ezr62 Tele-Fonika Kable (Poland)'),
(36439, 'https://ror.org/00ykry024', 'no_lang_code', 1, 'https://ror.org/00ykry024 Sevitel (Poland)'),
(36440, 'https://ror.org/03vsgkg08', 'no_lang_code', 1, 'https://ror.org/03vsgkg08 Laska Technika Przemysłowa (Poland)'),
(36441, 'https://ror.org/00zmypf05', 'no_lang_code', 1, 'https://ror.org/00zmypf05 Le Loch Healthcare (Poland)'),
(36442, 'https://ror.org/031g83w70', 'no_lang_code', 1, 'https://ror.org/031g83w70 Polwax (Poland)'),
(36443, 'https://ror.org/00vb2ts27', 'no_lang_code', 1, 'https://ror.org/00vb2ts27 Drawski (Poland)'),
(36444, 'https://ror.org/013v3p656', 'no_lang_code', 1, 'https://ror.org/013v3p656 Telzas (Poland)'),
(36445, 'https://ror.org/03neqmv05', 'no_lang_code', 1, 'https://ror.org/03neqmv05 LGC Standards (Poland)'),
(36446, 'https://ror.org/01qmde036', 'no_lang_code', 1, 'https://ror.org/01qmde036 Tercja Systemy Pomiarowe i Komputerowe (Poland)'),
(36447, 'https://ror.org/03w55j836', 'no_lang_code', 1, 'https://ror.org/03w55j836 Kulej (Poland)'),
(36448, 'https://ror.org/05te2ab69', 'en', 1, 'https://ror.org/05te2ab69 Citizens Network Watchdog'),
(36449, 'https://ror.org/04epdwv63', 'no_lang_code', 1, 'https://ror.org/04epdwv63 Termall (Poland)'),
(36450, 'https://ror.org/03mahcv92', 'en', 1, 'https://ror.org/03mahcv92 LIKES – Foundation for Sport and Health Sciences'),
(36451, 'https://ror.org/032bhb453', 'no_lang_code', 1, 'https://ror.org/032bhb453 Łódzki Regionalny Park Naukowo-Technologiczny (Poland)'),
(36452, 'https://ror.org/00q6t4456', 'en', 1, 'https://ror.org/00q6t4456 National Federation of Polish NGOs'),
(36453, 'https://ror.org/01bhgpn34', 'no_lang_code', 1, 'https://ror.org/01bhgpn34 TRAK (Poland)'),
(36454, 'https://ror.org/02ygq7y20', 'no_lang_code', 1, 'https://ror.org/02ygq7y20 Sigma (Poland)'),
(36455, 'https://ror.org/01mdh2992', 'no_lang_code', 1, 'https://ror.org/01mdh2992 Magister Solutions (Finland)'),
(36456, 'https://ror.org/04q9n1p25', 'no_lang_code', 1, 'https://ror.org/04q9n1p25 Osrodek Konstrukcyjno Badawczy (Poland)'),
(36457, 'https://ror.org/01pndf691', 'fi', 1, 'https://ror.org/01pndf691 VƤestƶliitto'),
(36458, 'https://ror.org/05ygpsf69', 'no_lang_code', 1, 'https://ror.org/05ygpsf69 Silcare (Poland)'),
(36459, 'https://ror.org/03zdb8v54', 'no_lang_code', 1, 'https://ror.org/03zdb8v54 Oltis Polska (Poland)'),
(36460, 'https://ror.org/03q2tdj19', 'no_lang_code', 1, 'https://ror.org/03q2tdj19 OncoArendi Therapeutics (Poland)'),
(36461, 'https://ror.org/01rcr6221', 'no_lang_code', 1, 'https://ror.org/01rcr6221 Silesia Oil (Poland)'),
(36462, 'https://ror.org/03m2axv35', 'en', 1, 'https://ror.org/03m2axv35 Finnish Jazz & Pop Archive'),
(36463, 'https://ror.org/05p9n5k62', 'en', 1, 'https://ror.org/05p9n5k62 Adaptive Sports Northwest'),
(36464, 'https://ror.org/059m0z495', 'no_lang_code', 1, 'https://ror.org/059m0z495 Premium Rosa (Poland)'),
(36465, 'https://ror.org/00vkfw855', 'no_lang_code', 1, 'https://ror.org/00vkfw855 Sirc (Poland)'),
(36466, 'https://ror.org/01xn9tc24', 'no_lang_code', 1, 'https://ror.org/01xn9tc24 Promost Consulting (Poland)'),
(36467, 'https://ror.org/035mhpy30', 'no_lang_code', 1, 'https://ror.org/035mhpy30 Orlen (Poland) Polski Koncern Naftowy Orlen'),
(36468, 'https://ror.org/02qs38f38', 'en', 1, 'https://ror.org/02qs38f38 Finnish Youth Research Society'),
(36469, 'https://ror.org/04afck573', 'no_lang_code', 1, 'https://ror.org/04afck573 Thermaflex (Poland)'),
(36470, 'https://ror.org/02sgy5e89', 'en', 1, 'https://ror.org/02sgy5e89 USA Boccia'),
(36471, 'https://ror.org/05cnz8f61', 'en', 1, 'https://ror.org/05cnz8f61 Research and Development Centre for Wood-Based Panels'),
(36472, 'https://ror.org/001122g55', 'no_lang_code', 1, 'https://ror.org/001122g55 Innolink (Finland)'),
(36473, 'https://ror.org/01g2j3891', 'no_lang_code', 1, 'https://ror.org/01g2j3891 Thermo Fisher Scientific (Finland)'),
(36474, 'https://ror.org/008533323', 'no_lang_code', 1, 'https://ror.org/008533323 Thermolab (Poland)'),
(36475, 'https://ror.org/01gdwxc49', 'no_lang_code', 1, 'https://ror.org/01gdwxc49 Ośrodek Badawczo-Rozwojowy Urządzeń Mechanicznych (Poland)'),
(36476, 'https://ror.org/04gfj4836', 'no_lang_code', 1, 'https://ror.org/04gfj4836 Vipharm (Poland)'),
(36477, 'https://ror.org/05ne28y03', 'no_lang_code', 1, 'https://ror.org/05ne28y03 Polon (Poland)'),
(36478, 'https://ror.org/03hf7ar06', 'no_lang_code', 1, 'https://ror.org/03hf7ar06 VIS Systems (Poland)'),
(36479, 'https://ror.org/04n13s404', 'no_lang_code', 1, 'https://ror.org/04n13s404 Thoni Alutec (Poland)'),
(36480, 'https://ror.org/0547b1h57', 'no_lang_code', 1, 'https://ror.org/0547b1h57 Softhis (Poland)'),
(36481, 'https://ror.org/04ghzbn43', 'no_lang_code', 1, 'https://ror.org/04ghzbn43 ASPA (Poland)'),
(36482, 'https://ror.org/01ddx3048', 'no_lang_code', 1, 'https://ror.org/01ddx3048 Transformex (Poland)'),
(36483, 'https://ror.org/01y8byw03', 'no_lang_code', 1, 'https://ror.org/01y8byw03 Meaning Processing (Finland)'),
(36484, 'https://ror.org/02prj1520', 'no_lang_code', 1, 'https://ror.org/02prj1520 TRUMPF (Poland)'),
(36485, 'https://ror.org/03tdc2j03', 'no_lang_code', 1, 'https://ror.org/03tdc2j03 Waldrex (Poland)'),
(36486, 'https://ror.org/019h74q49', 'no_lang_code', 1, 'https://ror.org/019h74q49 PPUH Bryk Witold Bryk (Poland)'),
(36487, 'https://ror.org/04h1dx218', 'no_lang_code', 1, 'https://ror.org/04h1dx218 Wasko (Poland)'),
(36488, 'https://ror.org/04vgd5j91', 'no_lang_code', 1, 'https://ror.org/04vgd5j91 Pachemtech (Poland)'),
(36489, 'https://ror.org/04v0t8a58', 'no_lang_code', 1, 'https://ror.org/04v0t8a58 WB Electronics (Poland)'),
(36490, 'https://ror.org/04crred05', 'en', 1, 'https://ror.org/04crred05 Paradox Sports'),
(36491, 'https://ror.org/03fwf5291', 'no_lang_code', 1, 'https://ror.org/03fwf5291 Patentus (Poland)'),
(36492, 'https://ror.org/02y051p53', 'no_lang_code', 1, 'https://ror.org/02y051p53 Armatura (Poland)'),
(36493, 'https://ror.org/005cxvy66', 'no_lang_code', 1, 'https://ror.org/005cxvy66 PB Online (Poland)'),
(36494, 'https://ror.org/00pejg468', 'no_lang_code', 1, 'https://ror.org/00pejg468 Wodociągi Kłodzkie (Poland)'),
(36495, 'https://ror.org/02apz9z86', 'no_lang_code', 1, 'https://ror.org/02apz9z86 Wojas (Poland)'),
(36496, 'https://ror.org/03jp77920', 'no_lang_code', 1, 'https://ror.org/03jp77920 PBS (Poland)'),
(36497, 'https://ror.org/02y8fm890', 'pl', 1, 'https://ror.org/02y8fm890 Wojewódzki Ośrodek Medycyny Pracy'),
(36498, 'https://ror.org/00raj4980', 'en', 1, 'https://ror.org/00raj4980 USRowing'),
(36499, 'https://ror.org/04cvmcb43', 'en', 1, 'https://ror.org/04cvmcb43 Bialystok School of Economics'),
(36500, 'https://ror.org/03k31r283', 'no_lang_code', 1, 'https://ror.org/03k31r283 Specodlew (Poland)'),
(36501, 'https://ror.org/03s7c3y50', 'no_lang_code', 1, 'https://ror.org/03s7c3y50 Przedsiębiorstwo Badań Geofizycznych'),
(36502, 'https://ror.org/049ayn705', 'no_lang_code', 1, 'https://ror.org/049ayn705 Huta Stalowa Wola (Poland)'),
(36503, 'https://ror.org/04kff0p34', 'no_lang_code', 1, 'https://ror.org/04kff0p34 Polsat (Poland)'),
(36504, 'https://ror.org/0337j9c19', 'no_lang_code', 1, 'https://ror.org/0337j9c19 Wojskowe Zakłady Inżynieryjne (Poland)'),
(36505, 'https://ror.org/00bj5yr20', 'no_lang_code', 1, 'https://ror.org/00bj5yr20 Mesko (Poland)'),
(36506, 'https://ror.org/043x6wz15', 'no_lang_code', 1, 'https://ror.org/043x6wz15 Hardkop (Poland)'),
(36507, 'https://ror.org/02nmtb782', 'no', 1, 'https://ror.org/02nmtb782 Norsk Kjemisk Selskap Norwegian Chemical Society'),
(36508, 'https://ror.org/033722021', 'en', 1, 'https://ror.org/033722021 Institute of Plant Protection'),
(36509, 'https://ror.org/00wrp4434', 'en', 1, 'https://ror.org/00wrp4434 Institute of Agricultural and Food Economics'),
(36510, 'https://ror.org/05ffk0s37', 'no_lang_code', 1, 'https://ror.org/05ffk0s37 N2 Applied (Norway)'),
(36511, 'https://ror.org/053sej726', 'no_lang_code', 1, 'https://ror.org/053sej726 Agra (Norway)'),
(36512, 'https://ror.org/026k8vn84', 'no_lang_code', 1, 'https://ror.org/026k8vn84 PPM Robotics (Norway)'),
(36513, 'https://ror.org/03x75jm90', 'no', 1, 'https://ror.org/03x75jm90 Nord-TrĆøndelag FylkesKommune'),
(36514, 'https://ror.org/02qhxnk51', 'no_lang_code', 1, 'https://ror.org/02qhxnk51 OneCo (Norway)'),
(36515, 'https://ror.org/02qna0m23', 'no_lang_code', 1, 'https://ror.org/02qna0m23 Buddy Electric (Norway)'),
(36516, 'https://ror.org/02rr4wh12', 'no_lang_code', 1, 'https://ror.org/02rr4wh12 Skogselskapet i Oppland (Norway)'),
(36517, 'https://ror.org/01sh1rd07', 'no_lang_code', 1, 'https://ror.org/01sh1rd07 Polyform (Norway)'),
(36518, 'https://ror.org/038wth296', 'no_lang_code', 1, 'https://ror.org/038wth296 Scanwatt (Norway)'),
(36519, 'https://ror.org/034e8et22', 'no_lang_code', 1, 'https://ror.org/034e8et22 Science and Technology Corporation (Norway)'),
(36520, 'https://ror.org/05x6w0w63', 'no_lang_code', 1, 'https://ror.org/05x6w0w63 PetroMarker (Norway)'),
(36521, 'https://ror.org/059zjhp33', 'en', 1, 'https://ror.org/059zjhp33 Sector Asset Management'),
(36522, 'https://ror.org/00b4pqy74', 'no_lang_code', 1, 'https://ror.org/00b4pqy74 Military Communication Works No 2 (Poland)'),
(36523, 'https://ror.org/02jq6we42', 'no_lang_code', 1, 'https://ror.org/02jq6we42 Military Aviation Works No. 1 (Poland)'),
(36524, 'https://ror.org/03e49jp29', 'no_lang_code', 1, 'https://ror.org/03e49jp29 Zakłady Urządzeń Kotłowych Stąporków (Poland)'),
(36525, 'https://ror.org/04fbf2x65', 'no_lang_code', 1, 'https://ror.org/04fbf2x65 Wojskowe Zakłady Motoryzacyjne (Poland)'),
(36526, 'https://ror.org/01dh5eq20', 'no_lang_code', 1, 'https://ror.org/01dh5eq20 Zakład Budowy Urządzeń Spawalniczych (Poland)'),
(36527, 'https://ror.org/01pj54844', 'no_lang_code', 1, 'https://ror.org/01pj54844 Zetkama (Poland)'),
(36528, 'https://ror.org/01wqqbh83', 'no_lang_code', 1, 'https://ror.org/01wqqbh83 Złotecki (Poland)'),
(36529, 'https://ror.org/04faqmv97', 'pl', 1, 'https://ror.org/04faqmv97 Stowarzyszenie Łódzki Klub Amazonka'),
(36530, 'https://ror.org/016yh0k66', 'pl', 1, 'https://ror.org/016yh0k66 Wojskowy Instytut Chemii i Radiometrii'),
(36531, 'https://ror.org/02pmesx16', 'no_lang_code', 1, 'https://ror.org/02pmesx16 Promar (Poland)'),
(36532, 'https://ror.org/00w1szk34', 'no_lang_code', 1, 'https://ror.org/00w1szk34 Ravimed (Poland)'),
(36533, 'https://ror.org/04a1amm82', 'no_lang_code', 1, 'https://ror.org/04a1amm82 ZRE Gdańsk (Poland)'),
(36534, 'https://ror.org/00h6n4889', 'en', 1, 'https://ror.org/00h6n4889 Aviation Valley'),
(36535, 'https://ror.org/040g67t40', 'en', 1, 'https://ror.org/040g67t40 Association of Polish Cities'),
(36536, 'https://ror.org/04kam9969', 'no_lang_code', 1, 'https://ror.org/04kam9969 Przemysłowe Centrum Optyki (Poland)'),
(36537, 'https://ror.org/05s3rgw55', 'en', 1, 'https://ror.org/05s3rgw55 Military Institute of Armament Technology'),
(36538, 'https://ror.org/025wsd308', 'en', 1, 'https://ror.org/025wsd308 Sieć Badawcza Łukasiewicz – Przemysłowy Instytut Motoryzacji Łukasiewicz Research Network - Automotive Industry Institute'),
(36539, 'https://ror.org/010nnnk31', 'pl', 1, 'https://ror.org/010nnnk31 Wojskowy Instytut Techniki Pancernej i Samochodowej'),
(36540, 'https://ror.org/05qmjha96', 'fi', 1, 'https://ror.org/05qmjha96 Hengitysliitto'),
(36541, 'https://ror.org/0049mdg50', 'no_lang_code', 1, 'https://ror.org/0049mdg50 INFOKLINIKA (Poland)'),
(36542, 'https://ror.org/05qn8wt84', 'en', 1, 'https://ror.org/05qn8wt84 PyhƤjƤrvi Institute'),
(36543, 'https://ror.org/00d5e0a67', 'en', 1, 'https://ror.org/00d5e0a67 Devon General Hospital'),
(36544, 'https://ror.org/01rxnnx98', 'no_lang_code', 1, 'https://ror.org/01rxnnx98 Radiotechnika Marketing (Poland)'),
(36545, 'https://ror.org/001shqf12', 'en', 1, 'https://ror.org/001shqf12 American University of Antigua'),
(36546, 'https://ror.org/054dsb308', 'en', 1, 'https://ror.org/054dsb308 Dr. Everett Chalmers Regional Hospital'),
(36547, 'https://ror.org/00eeh3p16', 'en', 1, 'https://ror.org/00eeh3p16 Eagle Ridge Hospital'),
(36548, 'https://ror.org/04aq1ms94', 'en', 1, 'https://ror.org/04aq1ms94 Eastern Shore Memorial Hospital'),
(36549, 'https://ror.org/01xcx0382', 'en', 1, 'https://ror.org/01xcx0382 Sutherland Hospital'),
(36550, 'https://ror.org/01nkg7v26', 'en', 1, 'https://ror.org/01nkg7v26 Upper River Valley Hospital'),
(36551, 'https://ror.org/02xd7fn78', 'en', 1, 'https://ror.org/02xd7fn78 Etobicoke General Hospital'),
(36552, 'https://ror.org/05pw47n55', 'en', 1, 'https://ror.org/05pw47n55 Vernon Jubilee Hospital'),
(36553, 'https://ror.org/03v1svm63', 'pl', 1, 'https://ror.org/03v1svm63 University of Information Technology Wyższa Szkoła Technologii Informatycznych w Warszawie'),
(36554, 'https://ror.org/03ebv4744', 'en', 1, 'https://ror.org/03ebv4744 University College of the Cayman Islands'),
(36555, 'https://ror.org/036e7jk76', 'no_lang_code', 1, 'https://ror.org/036e7jk76 Matczak Autonadwozia (Poland)'),
(36556, 'https://ror.org/017hmzz19', 'es', 1, 'https://ror.org/017hmzz19 Hospital Carlos Van Buren'),
(36557, 'https://ror.org/0048zyh71', 'no_lang_code', 1, 'https://ror.org/0048zyh71 AREX (Poland)'),
(36558, 'https://ror.org/05yhvta08', 'es', 1, 'https://ror.org/05yhvta08 Hospital Tobar GarcĆ­a'),
(36559, 'https://ror.org/022v7y137', 'en', 1, 'https://ror.org/022v7y137 Thomas Embling Hospital'),
(36560, 'https://ror.org/05razqx97', 'pl', 1, 'https://ror.org/05razqx97 Zakład Doskonalenia Zawodowego w Krakowie'),
(36561, 'https://ror.org/014has228', 'en', 1, 'https://ror.org/014has228 Fort Saskatchewan Community Hospital'),
(36562, 'https://ror.org/05dzdb443', 'pl', 1, 'https://ror.org/05dzdb443 Zakład Doświadczalny Instytutu Zootechniki'),
(36563, 'https://ror.org/02dv98466', 'en', 1, 'https://ror.org/02dv98466 Georgetown Hospital'),
(36564, 'https://ror.org/045wnmj48', 'en', 1, 'https://ror.org/045wnmj48 Hospital Naval de Puerto Williams Naval Hospital of Puerto Williams'),
(36565, 'https://ror.org/05newpx76', 'en', 1, 'https://ror.org/05newpx76 Wagga Wagga Base Hospital'),
(36566, 'https://ror.org/05j3bsc16', 'no_lang_code', 1, 'https://ror.org/05j3bsc16 Cantoni (Poland)'),
(36567, 'https://ror.org/01gw0xq27', 'en', 1, 'https://ror.org/01gw0xq27 Guelph General Hospital'),
(36568, 'https://ror.org/00989y104', 'en', 1, 'https://ror.org/00989y104 New Century International Hospital for Children'),
(36569, 'https://ror.org/01r2b6235', 'no_lang_code', 1, 'https://ror.org/01r2b6235 Lester (Poland)'),
(36570, 'https://ror.org/03t6bjv67', 'en', 1, 'https://ror.org/03t6bjv67 Hillsborough Hospital HƓpital hillsborough'),
(36571, 'https://ror.org/037w1y594', 'en', 1, 'https://ror.org/037w1y594 International Hospital of Bahrain مستؓفى Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„ŲÆŁˆŁ„ŁŠ'),
(36572, 'https://ror.org/010tqsy45', 'en', 1, 'https://ror.org/010tqsy45 Beijing United Family Hospital'),
(36573, 'https://ror.org/056nsw527', 'no_lang_code', 1, 'https://ror.org/056nsw527 Explomet (Poland)'),
(36574, 'https://ror.org/03sya6q88', 'no_lang_code', 1, 'https://ror.org/03sya6q88 Uskom (Poland)'),
(36575, 'https://ror.org/05ykbvr48', 'en', 1, 'https://ror.org/05ykbvr48 Humboldt District Hospital'),
(36576, 'https://ror.org/01c1w2064', 'no_lang_code', 1, 'https://ror.org/01c1w2064 Zakład Wodociągów i Kanalizacji (Poland)'),
(36577, 'https://ror.org/05rcdf096', 'no_lang_code', 1, 'https://ror.org/05rcdf096 Andre Abrasive Articles (Poland)'),
(36578, 'https://ror.org/02cqb6d97', 'no_lang_code', 1, 'https://ror.org/02cqb6d97 Zakład Automatyki Przemysłowej (Poland)'),
(36579, 'https://ror.org/02bnct292', 'en', 1, 'https://ror.org/02bnct292 South Bruce Grey Health Centre'),
(36580, 'https://ror.org/045tkmf79', 'en', 1, 'https://ror.org/045tkmf79 Belmont Hospital'),
(36581, 'https://ror.org/00y8zcm61', 'en', 1, 'https://ror.org/00y8zcm61 Chattagram Maa-O-Shishu Hospital Medical College'),
(36582, 'https://ror.org/05y7a3192', 'en', 1, 'https://ror.org/05y7a3192 Kirkland and District Hospital'),
(36583, 'https://ror.org/04f970v93', 'en', 1, 'https://ror.org/04f970v93 Fifth Affiliated Hospital of Xinjiang Medical University'),
(36584, 'https://ror.org/01pp0ar58', 'en', 1, 'https://ror.org/01pp0ar58 Bowral & District Hospital'),
(36585, 'https://ror.org/046j4d739', 'en', 1, 'https://ror.org/046j4d739 HƓpital gƩnƩral du Lakeshore Lakeshore General Hospital'),
(36586, 'https://ror.org/040h8qn92', 'en', 1, 'https://ror.org/040h8qn92 Fuda Cancer Hospital'),
(36587, 'https://ror.org/041c7s516', 'en', 1, 'https://ror.org/041c7s516 Calvary Hospital'),
(36588, 'https://ror.org/03yn2qz25', 'en', 1, 'https://ror.org/03yn2qz25 Leduc Community Hospital'),
(36589, 'https://ror.org/04fm9y474', 'en', 1, 'https://ror.org/04fm9y474 North East University'),
(36590, 'https://ror.org/04zg8gg70', 'en', 1, 'https://ror.org/04zg8gg70 Lloydminster Hospital'),
(36591, 'https://ror.org/00ha5jx35', 'en', 1, 'https://ror.org/00ha5jx35 Haikou City People''s Hospital'),
(36592, 'https://ror.org/040pmw620', 'en', 1, 'https://ror.org/040pmw620 Medicine Hat Regional Hospital'),
(36593, 'https://ror.org/02gt91x70', 'en', 1, 'https://ror.org/02gt91x70 Calvary Wakefield Hospital'),
(36594, 'https://ror.org/04x57eq39', 'en', 1, 'https://ror.org/04x57eq39 St John Berchmans University College'),
(36595, 'https://ror.org/00vk5m430', 'en', 1, 'https://ror.org/00vk5m430 Milton District Hospital'),
(36596, 'https://ror.org/03sy52r18', 'en', 1, 'https://ror.org/03sy52r18 HƓpital Chinois de MontrƩal, Montreal Chinese Hospital'),
(36597, 'https://ror.org/04c318s33', 'en', 1, 'https://ror.org/04c318s33 Camden and Campbelltown Hospitals'),
(36598, 'https://ror.org/05x596b40', 'en', 1, 'https://ror.org/05x596b40 Norfolk General Hospital'),
(36599, 'https://ror.org/053tba870', 'en', 1, 'https://ror.org/053tba870 Ethiopian Police University College'),
(36600, 'https://ror.org/02dtaqx81', 'en', 1, 'https://ror.org/02dtaqx81 Nova Scotia Hospital'),
(36601, 'https://ror.org/015aem925', 'en', 1, 'https://ror.org/015aem925 New Generation University College'),
(36602, 'https://ror.org/04y523h62', 'en', 1, 'https://ror.org/04y523h62 Oakville-Trafalgar Memorial Hospital'),
(36603, 'https://ror.org/043m37669', 'en', 1, 'https://ror.org/043m37669 Capricorn Coast Hospital'),
(36604, 'https://ror.org/00kga6267', 'en', 1, 'https://ror.org/00kga6267 Rift Valley University'),
(36605, 'https://ror.org/01e4tbd96', 'en', 1, 'https://ror.org/01e4tbd96 National University of Management įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž‡įž¶įžįž·įž‚įŸ’įžšįž”įŸ‹įž‚įŸ’įžšįž„'),
(36606, 'https://ror.org/05ea1cr97', 'en', 1, 'https://ror.org/05ea1cr97 Modern Cancer Hospital Guangzhou'),
(36607, 'https://ror.org/01fr2g046', 'en', 1, 'https://ror.org/01fr2g046 Peace Arch Hospital'),
(36608, 'https://ror.org/030jpqj15', 'en', 1, 'https://ror.org/030jpqj15 Goulburn Base Hospital'),
(36609, 'https://ror.org/02g83kd39', 'en', 1, 'https://ror.org/02g83kd39 Penticton Regional Hospital'),
(36610, 'https://ror.org/00rx1ga86', 'en', 1, 'https://ror.org/00rx1ga86 Central Hospital of YaoundƩ HƓpital Central de YaoundƩ'),
(36611, 'https://ror.org/01s1hzr17', 'en', 1, 'https://ror.org/01s1hzr17 Prince County Hospital'),
(36612, 'https://ror.org/05c82kn73', 'en', 1, 'https://ror.org/05c82kn73 Queensway-Carleton Hospital'),
(36613, 'https://ror.org/025p6sg19', 'en', 1, 'https://ror.org/025p6sg19 Limbe Provincial Hospital'),
(36614, 'https://ror.org/04f7crx66', 'en', 1, 'https://ror.org/04f7crx66 Red Deer Regional Hospital'),
(36615, 'https://ror.org/03r4az639', 'en', 1, 'https://ror.org/03r4az639 Sixth Affiliated Hospital of Xinjiang Medical University'),
(36616, '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'),
(36617, 'https://ror.org/01wm3xb93', 'en', 1, 'https://ror.org/01wm3xb93 Richmond Hospital'),
(36618, 'https://ror.org/04bjfzn83', 'fr', 1, 'https://ror.org/04bjfzn83 Centre Hospitalier d''Albi'),
(36619, 'https://ror.org/00aeqjw83', 'en', 1, 'https://ror.org/00aeqjw83 Jessie McPherson Private Hospital'),
(36620, 'https://ror.org/052nzzz22', 'en', 1, 'https://ror.org/052nzzz22 Aberdeen Regional Hospital'),
(36621, 'https://ror.org/05tg8p317', 'en', 1, 'https://ror.org/05tg8p317 Rockyview General Hospital'),
(36622, 'https://ror.org/031va0421', 'es', 1, 'https://ror.org/031va0421 Hospital San Pedro'),
(36623, 'https://ror.org/02xw13d29', 'en', 1, 'https://ror.org/02xw13d29 Katherine Hospital'),
(36624, 'https://ror.org/04tkqn952', 'en', 1, 'https://ror.org/04tkqn952 Sackville Memorial Hospital'),
(36625, 'https://ror.org/009xa9473', 'en', 1, 'https://ror.org/009xa9473 Arrow Lakes Hospital'),
(36626, 'https://ror.org/01gn4gb91', 'en', 1, 'https://ror.org/01gn4gb91 Kenvale College'),
(36627, 'https://ror.org/0377q3w53', 'en', 1, 'https://ror.org/0377q3w53 Saskatchewan Hospital'),
(36628, 'https://ror.org/0390t1205', 'en', 1, 'https://ror.org/0390t1205 Saskatoon City Hospital'),
(36629, 'https://ror.org/02y3prs94', 'en', 1, 'https://ror.org/02y3prs94 Booth University College'),
(36630, 'https://ror.org/042170a43', 'no_lang_code', 1, 'https://ror.org/042170a43 Xizang Minzu University č„æč—ę°‘ę—å­¦é™¢'),
(36631, 'https://ror.org/02mp59d98', 'fr', 1, 'https://ror.org/02mp59d98 Centre Hospitalier de Gonesse'),
(36632, 'https://ror.org/004kvma63', 'en', 1, 'https://ror.org/004kvma63 Lismore Base Hospital'),
(36633, 'https://ror.org/01q9kjc87', 'en', 1, 'https://ror.org/01q9kjc87 Brampton Civic Hospital'),
(36634, 'https://ror.org/03rcrwp92', 'en', 1, 'https://ror.org/03rcrwp92 South Okanagan General Hospital'),
(36635, 'https://ror.org/00z6pvt32', 'en', 1, 'https://ror.org/00z6pvt32 Burnaby Hospital'),
(36636, 'https://ror.org/00brmyn57', 'en', 1, 'https://ror.org/00brmyn57 Xinhui People''s Hospital'),
(36637, 'https://ror.org/0289r4642', 'en', 1, 'https://ror.org/0289r4642 St. John''s Rehab Hospital'),
(36638, 'https://ror.org/022ave037', 'en', 1, 'https://ror.org/022ave037 Campbellford Memorial Hospital'),
(36639, 'https://ror.org/04dbasv67', 'en', 1, 'https://ror.org/04dbasv67 Canmore General Hospital'),
(36640, 'https://ror.org/04b64cp31', 'en', 1, 'https://ror.org/04b64cp31 HƓpital Sainte-Anne Ste. Anne''s Hospital'),
(36641, 'https://ror.org/02mtj1m22', 'en', 1, 'https://ror.org/02mtj1m22 Strathcona Community Hospital'),
(36642, 'https://ror.org/00169ff80', 'en', 1, 'https://ror.org/00169ff80 Sturgeon Community Hospital'),
(36643, 'https://ror.org/05ndmfc04', 'en', 1, 'https://ror.org/05ndmfc04 Surrey Memorial Hospital'),
(36644, 'https://ror.org/04pzgb662', 'en', 1, 'https://ror.org/04pzgb662 The Scarborough Hospital'),
(36645, 'https://ror.org/0032cnc36', 'en', 1, 'https://ror.org/0032cnc36 Paphos General Hospital'),
(36646, 'https://ror.org/00b0jsn50', 'en', 1, 'https://ror.org/00b0jsn50 Cape Breton Regional Hospital'),
(36647, 'https://ror.org/05pyye095', 'en', 1, 'https://ror.org/05pyye095 HƓpital gƩnƩral de kinshasa Kinshasa General Hospital'),
(36648, 'https://ror.org/02hm5wz09', 'en', 1, 'https://ror.org/02hm5wz09 Centracare'),
(36649, 'https://ror.org/01k4cfw02', 'en', 1, 'https://ror.org/01k4cfw02 Mater Misericordiae Hospital'),
(36650, 'https://ror.org/023ac3y20', 'en', 1, 'https://ror.org/023ac3y20 Chedoke Hospital'),
(36651, 'https://ror.org/04me72w78', 'en', 1, 'https://ror.org/04me72w78 Chinook Regional Hospital'),
(36652, 'https://ror.org/00f9jfw45', 'en', 1, 'https://ror.org/00f9jfw45 Tamale Teaching Hospital'),
(36653, 'https://ror.org/00tejnf65', 'en', 1, 'https://ror.org/00tejnf65 Milton Ulladulla Hospital'),
(36654, 'https://ror.org/053gnae26', 'en', 1, 'https://ror.org/053gnae26 Concordia Hospital'),
(36655, 'https://ror.org/000q9yz13', 'en', 1, 'https://ror.org/000q9yz13 University College of Agriculture and Environmental Studies'),
(36656, 'https://ror.org/02rgjy857', 'en', 1, 'https://ror.org/02rgjy857 Dartmouth General Hospital'),
(36657, 'https://ror.org/04dj1na10', 'en', 1, 'https://ror.org/04dj1na10 University College Lillebaelt University College LillebƦlt'),
(36658, 'https://ror.org/01w05wy86', 'en', 1, 'https://ror.org/01w05wy86 University of Professional Studies'),
(36659, 'https://ror.org/057t0vd36', 'en', 1, 'https://ror.org/057t0vd36 Government Unani and Ayurvedic Degree College and Hospital'),
(36660, 'https://ror.org/016mx5748', 'en', 1, 'https://ror.org/016mx5748 Monash Children’s Hospital'),
(36661, 'https://ror.org/056c4z730', 'en', 1, 'https://ror.org/056c4z730 ProfessionshĆøjskolen University College Nordjylland University College of Northern Denmark'),
(36662, 'https://ror.org/00kytsw15', 'en', 1, 'https://ror.org/00kytsw15 West End Hospital'),
(36663, 'https://ror.org/05sv58043', 'en', 1, 'https://ror.org/05sv58043 University College Absalon'),
(36664, 'https://ror.org/027sjp768', 'en', 1, 'https://ror.org/027sjp768 Queanbeyan District Hospital'),
(36665, 'https://ror.org/01npwa559', 'en', 1, 'https://ror.org/01npwa559 Hospital de San Bernardo St Bernard''s Hospital'),
(36666, 'https://ror.org/03qa8qv52', 'en', 1, 'https://ror.org/03qa8qv52 Dr. H. Gordon Roberts Hospital'),
(36667, 'https://ror.org/05cm4gv85', 'no_lang_code', 1, 'https://ror.org/05cm4gv85 Agios Pavlos General Hospital'),
(36668, 'https://ror.org/0257s2812', 'en', 1, 'https://ror.org/0257s2812 Robina Hospital'),
(36669, 'https://ror.org/03zc07z23', 'no_lang_code', 1, 'https://ror.org/03zc07z23 Durgabai Deshmukh Hospital'),
(36670, 'https://ror.org/01dvjey82', 'en', 1, 'https://ror.org/01dvjey82 Shellharbour Hospital'),
(36671, 'https://ror.org/00txnqh94', 'en', 1, 'https://ror.org/00txnqh94 37 Military Hospital'),
(36672, 'https://ror.org/04p6jw654', 'en', 1, 'https://ror.org/04p6jw654 Shoalhaven District Memorial Hospital'),
(36673, 'https://ror.org/04aenby30', 'en', 1, 'https://ror.org/04aenby30 African University College of Communications'),
(36674, 'https://ror.org/05r8bzv42', 'en', 1, 'https://ror.org/05r8bzv42 Christian Service University College'),
(36675, 'https://ror.org/01g5hc933', 'en', 1, 'https://ror.org/01g5hc933 St John of God Geelong Hospital'),
(36676, 'https://ror.org/05svjc560', 'en', 1, 'https://ror.org/05svjc560 Data Link Institute of Business and Technology'),
(36677, 'https://ror.org/00m8pwv45', 'no_lang_code', 1, 'https://ror.org/00m8pwv45 Donka Hospital'),
(36678, 'https://ror.org/048wdxr20', 'no_lang_code', 1, 'https://ror.org/048wdxr20 Sarojini Devi Eye Hospital'),
(36679, 'https://ror.org/03bgteg28', 'no_lang_code', 1, 'https://ror.org/03bgteg28 Evangelical Presbyterian University College'),
(36680, 'https://ror.org/00a1sfb75', 'en', 1, 'https://ror.org/00a1sfb75 Fhrai Institute of Hospitality Management'),
(36681, 'https://ror.org/05s76vp15', 'en', 1, 'https://ror.org/05s76vp15 Garden City University College'),
(36682, 'https://ror.org/02kzvnr24', 'en', 1, 'https://ror.org/02kzvnr24 Senate of Serampore College ą¤øą„€ą¤Øą„‡ą¤Ÿ अफ ą¤øą„‡ą¤°ą¤¾ą¤®ą¤Ŗą„‹ą¤° ą¤•ą¤²ą„‡ą¤œ (ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ) ą¦øą§‡ą¦Øą§‡ą¦Ÿ অফ ą¦¶ą§ą¦°ą§€ą¦°ą¦¾ą¦®ą¦Ŗą§ą¦° ą¦•ą¦²ą§‡ą¦œ'),
(36683, 'https://ror.org/05wp4z583', 'no_lang_code', 1, 'https://ror.org/05wp4z583 New Amsterdam Public Hospital'),
(36684, 'https://ror.org/00evszt20', 'en', 1, 'https://ror.org/00evszt20 Ford Hospital and Research Centre'),
(36685, 'https://ror.org/05wm9y343', 'en', 1, 'https://ror.org/05wm9y343 Islamic University College'),
(36686, 'https://ror.org/040y5k757', 'en', 1, 'https://ror.org/040y5k757 Seventh day Adventist Hospital'),
(36687, 'https://ror.org/032vny106', 'no_lang_code', 1, 'https://ror.org/032vny106 Mountcrest University College'),
(36688, 'https://ror.org/01y361889', 'en', 1, 'https://ror.org/01y361889 Islamic Azad University Mahshahr دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ماهؓهر'),
(36689, 'https://ror.org/04160ha27', 'en', 1, 'https://ror.org/04160ha27 Pentecost University College'),
(36690, 'https://ror.org/01cce5t38', 'en', 1, 'https://ror.org/01cce5t38 Silchar Medical College and Hospital'),
(36691, 'https://ror.org/05w7tpg32', 'en', 1, 'https://ror.org/05w7tpg32 Castle Peak Hospital 青山醫院'),
(36692, 'https://ror.org/04gcrjz11', 'en', 1, 'https://ror.org/04gcrjz11 Sir Sunderlal Hospital'),
(36693, 'https://ror.org/027r49s81', 'no_lang_code', 1, 'https://ror.org/027r49s81 Fortis Malar Hospital'),
(36694, 'https://ror.org/002td2d02', 'en', 1, 'https://ror.org/002td2d02 Hong Kong Adventist Hospital 香港港安醫院'),
(36695, 'https://ror.org/03nyhx379', 'no_lang_code', 1, 'https://ror.org/03nyhx379 General Hospital Ernakulam'),
(36696, 'https://ror.org/00dc48k09', 'en', 1, 'https://ror.org/00dc48k09 Sri Narayani Hospital & Research Centre'),
(36697, 'https://ror.org/02mgtjj52', 'en', 1, 'https://ror.org/02mgtjj52 Islamic Azad University of Parand دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد پرند'),
(36698, 'https://ror.org/05ghtc147', 'en', 1, 'https://ror.org/05ghtc147 St. George Hospital'),
(36699, 'https://ror.org/018nk4a27', 'en', 1, 'https://ror.org/018nk4a27 Global Open University'),
(36700, 'https://ror.org/03kjtb134', 'no_lang_code', 1, 'https://ror.org/03kjtb134 Tsan Yuk Hospital č“Šč‚²é†«é™¢'),
(36701, 'https://ror.org/04pc6dy04', 'en', 1, 'https://ror.org/04pc6dy04 St. Theresa’s Multi-Speciality Hospital ą°øą±†ą°Æą°æą°‚ą°Ÿą± తెరెసా ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(36702, 'https://ror.org/0324c8f61', 'en', 1, 'https://ror.org/0324c8f61 Mahak Hospital and Rehabilitation Complex ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł…Ų­Ś©'),
(36703, 'https://ror.org/031ak8575', 'en', 1, 'https://ror.org/031ak8575 Tsuen Wan Adventist Hospital'),
(36704, 'https://ror.org/05ffh3h97', 'en', 1, 'https://ror.org/05ffh3h97 Government ENT Hospital ą°Ŗą±ą°°ą°­ą±ą°¤ą±ą°µ ą°ˆą°Žą°Øą±ą°Ÿą±€ ą°µą±ˆą°¦ą±ą°Æą°¶ą°¾ą°²'),
(36705, 'https://ror.org/01v5rq776', 'en', 1, 'https://ror.org/01v5rq776 Swami Pranavananda Homoeopathic Medical College and Hospital'),
(36706, 'https://ror.org/05jdk6x63', 'en', 1, 'https://ror.org/05jdk6x63 (Ų­Ś©ŁˆŁ…ŲŖ Ł†ŲøŲ§Ł…ŪŒŪ جنرل ہسپتال ( طبی ŲÆŲ§ŁˆŲ§Ś©ŪŲ§Ł† Government Nizamia General Hospital నిజామియా ą°œą°Øą°°ą°²ą± ą°†ą°øą±ą°Ŗą°¤ą±ą°°ą°æ'),
(36707, 'https://ror.org/03m340337', 'en', 1, 'https://ror.org/03m340337 Tamil Nadu Government Multi Super Speciality Hospital ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ புதிய ą®šą®ŸąÆą®Ÿą®®ą®©ąÆą®±ą®®ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ தலைமை ą®šąÆ†ą®Æą®²ą®• ą®µą®³ą®¾ą®•ą®®ąÆ'),
(36708, 'https://ror.org/00cwj5e90', 'en', 1, 'https://ror.org/00cwj5e90 Government Royapettah Hospital'),
(36709, 'https://ror.org/01j7r2734', 'en', 1, 'https://ror.org/01j7r2734 Union Hospital 仁安醫院'),
(36710, 'https://ror.org/01kdvbn15', 'en', 1, 'https://ror.org/01kdvbn15 Anugrah Narayan Magadh Medical College & Hospital ą¤…ą¤Øą„ą¤—ą„ą¤°ą¤¹ नारायण मगध ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(36711, 'https://ror.org/05fa5qm36', 'no_lang_code', 1, 'https://ror.org/05fa5qm36 HƓpital delek Tibetan Delek Hospital'),
(36712, 'https://ror.org/058bst240', 'no_lang_code', 1, 'https://ror.org/058bst240 Hamidia Hospital'),
(36713, 'https://ror.org/03ta7wx62', 'en', 1, 'https://ror.org/03ta7wx62 Hi-Tech Medical College & Hospital'),
(36714, 'https://ror.org/008nfm327', 'en', 1, 'https://ror.org/008nfm327 Aditya Jyot Eye Hospital'),
(36715, 'https://ror.org/048ke3y07', 'en', 1, 'https://ror.org/048ke3y07 Hindu Mission Hospital'),
(36716, 'https://ror.org/02qhdd073', 'en', 1, 'https://ror.org/02qhdd073 Aizawl Adventist Hospital'),
(36717, 'https://ror.org/03h1e6k67', 'en', 1, 'https://ror.org/03h1e6k67 Trichur Heart Hospital'),
(36718, 'https://ror.org/01c5r3056', 'en', 1, 'https://ror.org/01c5r3056 Holy Spirit Hospital'),
(36719, 'https://ror.org/046vamx76', 'en', 1, 'https://ror.org/046vamx76 Tripura Medical College & Dr. B.R. Ambedkar Memorial Teaching Hospital'),
(36720, 'https://ror.org/01cskd113', 'en', 1, 'https://ror.org/01cskd113 Al-Ameen Pre University College'),
(36721, 'https://ror.org/04je37366', 'en', 1, 'https://ror.org/04je37366 Indian Agricultural Universities Association'),
(36722, 'https://ror.org/026dp8058', 'en', 1, 'https://ror.org/026dp8058 Baghdad College of Economic Sciences University ŁƒŁ„ŁŠŲ© ŲØŲŗŲÆŲ§ŲÆ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŁŠŲ© الجامعة'),
(36723, 'https://ror.org/02e81hv64', 'no_lang_code', 1, 'https://ror.org/02e81hv64 Umrao Hospital'),
(36724, 'https://ror.org/03vndx142', 'en', 1, 'https://ror.org/03vndx142 Dijlah University College ŁƒŁ„ŁŠŲ© دجلة الجامعة'),
(36725, 'https://ror.org/01tsqk383', 'no_lang_code', 1, 'https://ror.org/01tsqk383 Almas Hospital'),
(36726, 'https://ror.org/01hj51r83', 'en', 1, 'https://ror.org/01hj51r83 Universal Engineering College'),
(36727, 'https://ror.org/033dx8j94', 'en', 1, 'https://ror.org/033dx8j94 University B.D.T College of Engineering'),
(36728, 'https://ror.org/03try1s84', 'no_lang_code', 1, 'https://ror.org/03try1s84 Inlaks & Budhrani Hospital'),
(36729, 'https://ror.org/04m55cb74', 'no_lang_code', 1, 'https://ror.org/04m55cb74 Anandalok Hospital ą¤†ą¤Øą¤‚ą¤¦ą¤²ą„‹ą¤• ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(36730, 'https://ror.org/02c5dz126', 'en', 1, 'https://ror.org/02c5dz126 University B.T. & Evening College'),
(36731, 'https://ror.org/00j3qc684', 'en', 1, 'https://ror.org/00j3qc684 Ansal University'),
(36732, 'https://ror.org/00kazcx49', 'en', 1, 'https://ror.org/00kazcx49 Madenat Alelem University College ŁƒŁ„ŁŠŲ© Ł…ŲÆŁŠŁ†Ų© العلم الجامعة'),
(36733, 'https://ror.org/02ny12416', 'en', 1, 'https://ror.org/02ny12416 University College for Women'),
(36734, 'https://ror.org/02kdtt649', 'en', 1, 'https://ror.org/02kdtt649 Islamic University of Science and Technology'),
(36735, 'https://ror.org/02fhv9758', 'en', 1, 'https://ror.org/02fhv9758 Antara'),
(36736, 'https://ror.org/04we0sp42', 'en', 1, 'https://ror.org/04we0sp42 University College of Commerce & Business Management'),
(36737, 'https://ror.org/02pzvty54', 'en', 1, 'https://ror.org/02pzvty54 Apollo KH Hospital'),
(36738, 'https://ror.org/0047hkh43', 'en', 1, 'https://ror.org/0047hkh43 Alsalam University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų“ŁŠŲ® Ł…Ų­Ł…ŲÆ Ų§Ł„ŁƒŲ³Ł†Ų²Ų§Ł† الجامعة'),
(36739, 'https://ror.org/03ht2bz32', 'en', 1, 'https://ror.org/03ht2bz32 Institute of Medical Sciences and Sum Hospital'),
(36740, 'https://ror.org/04yzj0y93', 'en', 1, 'https://ror.org/04yzj0y93 Arignar Anna Memorial Cancer Hospital & Research Institute ą®…ą®°ą®šąÆ ą®…ą®±ą®æą®žą®°ąÆ ą®…ą®£ąÆą®£ą®¾ நினைவு ą®ŖąÆą®±ąÆą®±ąÆą®ØąÆ‹ą®ÆąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆą®ÆąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®²ąÆˆą®Æą®®ąÆą®®ąÆ'),
(36741, 'https://ror.org/05vjm3y03', 'en', 1, 'https://ror.org/05vjm3y03 Joshi Hospital ą¤œą„‹ą¤¶ą„€ ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(36742, 'https://ror.org/00msr5x28', 'en', 1, 'https://ror.org/00msr5x28 Aut Even Hospital'),
(36743, 'https://ror.org/002bjj765', 'en', 1, 'https://ror.org/002bjj765 Bantry General Hospital OspidƩal GinearƔlta Bheanntraƭ'),
(36744, 'https://ror.org/05gkvd676', 'en', 1, 'https://ror.org/05gkvd676 King George Hospital ą°•ą°æą°‚ą°—ą± ą°œą°¾ą°°ą±ą°œą°æ ą°†ą°øą±ą°Ŗą°¤ą±ą°°ą°æ'),
(36745, 'https://ror.org/0197t7j38', 'en', 1, 'https://ror.org/0197t7j38 Bon Secours Hospital Cork'),
(36746, 'https://ror.org/03kfqmz83', 'en', 1, 'https://ror.org/03kfqmz83 University of Technology and Management UniversitĆ© de technologie et management ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(36747, 'https://ror.org/013171h84', 'en', 1, 'https://ror.org/013171h84 Aware Global Hospital'),
(36748, 'https://ror.org/0156shp22', 'en', 1, 'https://ror.org/0156shp22 Bon Secours Hospital Dublin'),
(36749, 'https://ror.org/01kpm8k86', 'en', 1, 'https://ror.org/01kpm8k86 Bethesda Hospital ą®ŖąÆ†ą®¤ąÆ†ą®øąÆą®¤ą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(36750, 'https://ror.org/0375jhj23', 'en', 1, 'https://ror.org/0375jhj23 Little Flower Hospital & Research Centre'),
(36751, 'https://ror.org/02we0g281', 'en', 1, 'https://ror.org/02we0g281 Bon Secours Hospital Galway'),
(36752, 'https://ror.org/05bp6y176', 'en', 1, 'https://ror.org/05bp6y176 Bon Secours Hospital Tralee'),
(36753, 'https://ror.org/01qq0f268', 'no_lang_code', 1, 'https://ror.org/01qq0f268 Maharaja Yeshwantrao Hospital'),
(36754, 'https://ror.org/01q855b60', 'no_lang_code', 1, 'https://ror.org/01q855b60 Bhabha Hospital'),
(36755, 'https://ror.org/01f8zms39', 'en', 1, 'https://ror.org/01f8zms39 Billroth Hospitals'),
(36756, 'https://ror.org/031fazd56', 'en', 1, 'https://ror.org/031fazd56 Cavan General Hospital OspidƩal GinearƔlta an ChabhƔin'),
(36757, 'https://ror.org/051eh0e10', 'no_lang_code', 1, 'https://ror.org/051eh0e10 Caritas Hospital'),
(36758, 'https://ror.org/03gth6e91', 'en', 1, 'https://ror.org/03gth6e91 OspidƩal Ollscoile Chiarraƭ University Hospital Kerry'),
(36759, 'https://ror.org/03fb58t45', 'en', 1, 'https://ror.org/03fb58t45 Maharishi University of Management and Technology'),
(36760, 'https://ror.org/00m1fvd66', 'en', 1, 'https://ror.org/00m1fvd66 Catherine Booth Hospital ą®•ą®¾ą®¤ą®°ą®æą®©ąÆ ą®ŖąÆ‚ą®¤ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ மனை'),
(36761, 'https://ror.org/0175hgp63', 'en', 1, 'https://ror.org/0175hgp63 Malda Medical College and Hospital'),
(36762, 'https://ror.org/012b0w593', 'en', 1, 'https://ror.org/012b0w593 Kilcreene Orthopaedic Hospital OspidƩal OrtaipƩideach Kilcreene'),
(36763, 'https://ror.org/03jvj6959', 'en', 1, 'https://ror.org/03jvj6959 Vanivilas Women and Children Hospital'),
(36764, 'https://ror.org/00keqx598', 'en', 1, 'https://ror.org/00keqx598 Mallow General Hospital OspidƩal GinearƔlta Mhala'),
(36765, 'https://ror.org/00fbxbf55', 'en', 1, 'https://ror.org/00fbxbf55 Manjara Ayurvedic Medical College and Hospital'),
(36766, 'https://ror.org/03z526x05', 'en', 1, 'https://ror.org/03z526x05 Midland Regional Hospital Mullingar Ospidéal Réigiúnach an Mhuilinn Chearr'),
(36767, 'https://ror.org/03q53r674', 'no_lang_code', 1, 'https://ror.org/03q53r674 Victoria Hospital'),
(36768, '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'),
(36769, 'https://ror.org/02y5heq38', 'en', 1, 'https://ror.org/02y5heq38 Charnock Hospital'),
(36770, 'https://ror.org/044dxh921', 'en', 1, 'https://ror.org/044dxh921 Matha Ayurveda Eye Hospital'),
(36771, 'https://ror.org/00vd4yx94', 'no_lang_code', 1, 'https://ror.org/00vd4yx94 Chazhikattu Hospital'),
(36772, 'https://ror.org/0415f1661', 'no_lang_code', 1, 'https://ror.org/0415f1661 Mathura Das Mathur Hospital ą¤®ą¤„ą„ą¤°ą¤¾ą¤¦ą¤¾ą¤ø ą¤®ą¤¾ą¤„ą„ą¤° ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(36773, 'https://ror.org/03fp2bh88', 'en', 1, 'https://ror.org/03fp2bh88 Mount Carmel Hospital'),
(36774, 'https://ror.org/054k08k63', 'en', 1, 'https://ror.org/054k08k63 World Laparoscopy Hospital'),
(36775, 'https://ror.org/01d7hm230', 'en', 1, 'https://ror.org/01d7hm230 Christian Hospital Serkawn'),
(36776, 'https://ror.org/00053vy13', 'no_lang_code', 1, 'https://ror.org/00053vy13 Koyama Fukusei Hospital ē„žå±±å¾©ē”Ÿē—…é™¢'),
(36777, 'https://ror.org/02nnqja38', 'no_lang_code', 1, 'https://ror.org/02nnqja38 Yerwada Mental Hospital'),
(36778, 'https://ror.org/03v372z22', 'en', 1, 'https://ror.org/03v372z22 College of Medicine & JNM Hospital'),
(36779, 'https://ror.org/020t0j562', 'en', 1, 'https://ror.org/020t0j562 Mahatma Gandhi Mission Medical College and Hospital'),
(36780, 'https://ror.org/04hh2kn75', 'en', 1, 'https://ror.org/04hh2kn75 OspidƩal Chontae Ros ComƔin Roscommon University Hospital'),
(36781, 'https://ror.org/02r0eqd13', 'en', 1, 'https://ror.org/02r0eqd13 College of Medicine & Sagore Dutta Hospital'),
(36782, 'https://ror.org/03p37kd86', 'en', 1, 'https://ror.org/03p37kd86 Midnapore Medical College and Hospital'),
(36783, 'https://ror.org/040f86t49', 'en', 1, 'https://ror.org/040f86t49 Dr. Kariadi Hospital Rumah Sakit Dr. Kariadi'),
(36784, 'https://ror.org/04d4bt482', 'en', 1, 'https://ror.org/04d4bt482 Isra University Ų¬Ų§Ł…Ų¹Ų© ال؄سراؔ'),
(36785, 'https://ror.org/04avk7z79', 'en', 1, 'https://ror.org/04avk7z79 Sacred Heart Hospital'),
(36786, 'https://ror.org/03ta1q534', 'en', 1, 'https://ror.org/03ta1q534 Panti Rapih Hospital Rumah Sakit Umum Panti Rapih'),
(36787, 'https://ror.org/036d0t930', 'en', 1, 'https://ror.org/036d0t930 Minto Ophthalmic Hospital'),
(36788, 'https://ror.org/05as0g053', 'en', 1, 'https://ror.org/05as0g053 Mithila Minority Dental College And Hospital'),
(36789, 'https://ror.org/02f6hdc06', 'en', 1, 'https://ror.org/02f6hdc06 King Abdullah University Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ المؤسس Ų¹ŲØŲÆ الله Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(36790, 'https://ror.org/02ry07h90', 'en', 1, 'https://ror.org/02ry07h90 Cooper Hospital'),
(36791, 'https://ror.org/02zfghc79', 'en', 1, 'https://ror.org/02zfghc79 Mother Hospital'),
(36792, 'https://ror.org/02dhjed84', 'en', 1, 'https://ror.org/02dhjed84 OspidƩal GinearƔlta Thiobraid Ɓrann Theas South Tipperary General Hospital'),
(36793, 'https://ror.org/01fafm680', 'en', 1, 'https://ror.org/01fafm680 Specialty Hospital, Jordan'),
(36794, 'https://ror.org/052yqc035', 'no_lang_code', 1, 'https://ror.org/052yqc035 Muthu Hospital'),
(36795, 'https://ror.org/03em5rb28', 'en', 1, 'https://ror.org/03em5rb28 Nalanda Medical College and Hospital ą¤Øą¤¾ą¤²ą¤Øą„ą¤¦ą¤¾ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ और ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(36796, 'https://ror.org/02jywn868', 'en', 1, 'https://ror.org/02jywn868 Islamic Azad University of Farahan'),
(36797, 'https://ror.org/04rrs4x54', 'en', 1, 'https://ror.org/04rrs4x54 University of Central Asia'),
(36798, 'https://ror.org/01bjya005', 'en', 1, 'https://ror.org/01bjya005 Darbhanga Medical College and Hospital'),
(36799, 'https://ror.org/04q36bj19', 'en', 1, 'https://ror.org/04q36bj19 Islamic Azad University of Kashan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کاؓان'),
(36800, 'https://ror.org/01tm0s838', 'en', 1, 'https://ror.org/01tm0s838 OspidƩal Naomh Colm Cille St. Columcille''s Hospital'),
(36801, 'https://ror.org/05ydkmr70', 'en', 1, 'https://ror.org/05ydkmr70 Patna Medical College and Hospital पटना ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(36802, 'https://ror.org/04kmnjy05', 'en', 1, 'https://ror.org/04kmnjy05 Deccan School of Hospital Management'),
(36803, 'https://ror.org/00grekx31', 'en', 1, 'https://ror.org/00grekx31 Synod Hospital'),
(36804, 'https://ror.org/00fmvp630', 'en', 1, 'https://ror.org/00fmvp630 OspidƩal Naomh Conaill St. Conal''s Psychiatric Hospital'),
(36805, 'https://ror.org/02cfg8q88', 'en', 1, 'https://ror.org/02cfg8q88 Council of Christian Hospitals'),
(36806, 'https://ror.org/023fkcg80', 'en', 1, 'https://ror.org/023fkcg80 Africa International University'),
(36807, 'https://ror.org/00sgprf31', 'en', 1, 'https://ror.org/00sgprf31 OspidƩal Naomh Dympna St. Dympna''s Hospital'),
(36808, 'https://ror.org/048p06y15', 'en', 1, 'https://ror.org/048p06y15 Prince Aly Khan Hospital'),
(36809, 'https://ror.org/038y3xt87', 'en', 1, 'https://ror.org/038y3xt87 Aga Khan Hospital, Kisumu'),
(36810, 'https://ror.org/01y3fwb07', 'en', 1, 'https://ror.org/01y3fwb07 Aga Khan Hospital, Mombasa'),
(36811, 'https://ror.org/03m0r4h89', 'no_lang_code', 1, 'https://ror.org/03m0r4h89 Desun Hospital & Heart Institute'),
(36812, 'https://ror.org/03cm42t62', 'en', 1, 'https://ror.org/03cm42t62 Rajarshee Chhatrapati Shahu Maharaj Government Medical College and CPR Hospital Kolhapur'),
(36813, 'https://ror.org/05r2sx051', 'en', 1, 'https://ror.org/05r2sx051 Kingsbridge Private Hospital Sligo'),
(36814, 'https://ror.org/01ttpsp54', 'en', 1, 'https://ror.org/01ttpsp54 East Yangon General Hospital ရန်ကုန် နရှေ့ပိုင်း ဆေးရုံ'),
(36815, 'https://ror.org/01hctzw61', 'en', 1, 'https://ror.org/01hctzw61 Khawaja Farid Social Security Hospital خواجہ فرید Ų³ŁˆŲ“Ł„ سیکورٹی ہسپتال'),
(36816, 'https://ror.org/027y59j70', 'en', 1, 'https://ror.org/027y59j70 Mariakani Cottage Hospital'),
(36817, 'https://ror.org/00673mt18', 'en', 1, 'https://ror.org/00673mt18 North Okkalapa General Hospital မြောက် į€„į€€į€¹į€€į€œį€¬į€•į€†į€±į€øį€›į€Æį€¶'),
(36818, 'https://ror.org/00rds0p35', 'en', 1, 'https://ror.org/00rds0p35 Hospitali ya Nairobi Nairobi Hospital'),
(36819, 'https://ror.org/049pxhr81', 'en', 1, 'https://ror.org/049pxhr81 The Nairobi Women’s Hospital'),
(36820, 'https://ror.org/045twjx32', 'en', 1, 'https://ror.org/045twjx32 West Yangon General Hospital ရန်ကုန် နနောက်ပိုင်း ဆေးရုံ'),
(36821, 'https://ror.org/04x2gpd09', 'en', 1, 'https://ror.org/04x2gpd09 Yangon Central Women''s Hospital ရန်ကုန် į€—į€Ÿį€­į€Æ į€”į€™į€»į€­į€Æį€øį€žį€™į€®į€ø ဆေးရုံ'),
(36822, 'https://ror.org/0308pxz24', 'en', 1, 'https://ror.org/0308pxz24 Services Hospital سروسز ہسپتال'),
(36823, 'https://ror.org/02ck8dx35', 'no_lang_code', 1, 'https://ror.org/02ck8dx35 Al-Salam Hospital Hopital de la Paix'),
(36824, 'https://ror.org/04jn7v116', 'en', 1, 'https://ror.org/04jn7v116 Yangon Children''s Hospital į€›į€”į€ŗį€€į€Æį€”į€ŗį€€į€œį€±į€øį€†į€±į€øį€›į€Æį€¶į€€į€¼į€®'),
(36825, 'https://ror.org/04qs54252', 'en', 1, 'https://ror.org/04qs54252 Alyn Hospital'),
(36826, 'https://ror.org/02a2hb496', 'en', 1, 'https://ror.org/02a2hb496 Nazareth Hospital EMMS مستؓفى الناصرة Ų§.Ł….Ł….Ų³'),
(36827, 'https://ror.org/02evq8q51', 'en', 1, 'https://ror.org/02evq8q51 Ganta United Methodist Hospital'),
(36828, 'https://ror.org/02vhvhj11', 'en', 1, 'https://ror.org/02vhvhj11 Shaikh Zayed Medical College and Hospital'),
(36829, 'https://ror.org/01f60xs15', 'en', 1, 'https://ror.org/01f60xs15 Agriculture and Forestry University ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą„ƒą¤·ą¤æ तऄा वन ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(36830, 'https://ror.org/01s776p02', 'no_lang_code', 1, 'https://ror.org/01s776p02 Shalamar Hospital'),
(36831, '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 ä»ä¼Æēˆµē»¼åˆåŒ»é™¢'),
(36832, 'https://ror.org/05xwpxc69', 'en', 1, 'https://ror.org/05xwpxc69 Jerusalem University College'),
(36833, 'https://ror.org/05ptzph62', 'en', 1, 'https://ror.org/05ptzph62 International University College of Turin'),
(36834, 'https://ror.org/04776x595', 'no_lang_code', 1, 'https://ror.org/04776x595 Assunta Hospital Hospital Assunta é˜æę¾å¤§åŒ»é™¢'),
(36835, 'https://ror.org/00467a196', 'no_lang_code', 1, 'https://ror.org/00467a196 Sindh Madressatul Islam University سندھ Ł…ŲÆŲ±Ų³Ūƒ الاسلام Ų³Ł†ŚŒ مدرسته Ų§Ł„Ų§Ų³Ł„Ų§Ł…ā€Ž'),
(36836, 'https://ror.org/02q764m16', 'no_lang_code', 1, 'https://ror.org/02q764m16 Baidya and Banskota Hospital'),
(36837, 'https://ror.org/02vdfy254', 'en', 1, 'https://ror.org/02vdfy254 Berjaya University College of Hospitality'),
(36838, 'https://ror.org/01ghxpd93', 'no_lang_code', 1, 'https://ror.org/01ghxpd93 Sir Ganga Ram Hospital Ų³Ų± گنگا Ų±Ų§Ł… ہسپتال'),
(36839, 'https://ror.org/01qt0ws77', 'no_lang_code', 1, 'https://ror.org/01qt0ws77 Bambisana Hospital'),
(36840, 'https://ror.org/00b2b8c41', 'en', 1, 'https://ror.org/00b2b8c41 Hospital Kajang Kajang Hospital'),
(36841, 'https://ror.org/05pc4mf95', 'en', 1, 'https://ror.org/05pc4mf95 Kuala Lumpur Metropolitan University College'),
(36842, 'https://ror.org/04v8qm048', 'en', 1, 'https://ror.org/04v8qm048 St. Elizabeth''s Hospital'),
(36843, 'https://ror.org/03czqdx05', 'en', 1, 'https://ror.org/03czqdx05 Bedford Provincial Hospital'),
(36844, 'https://ror.org/02ejbzv65', 'no_lang_code', 1, 'https://ror.org/02ejbzv65 St. Raphael''s Hospital'),
(36845, 'https://ror.org/04eefyt88', 'en', 1, 'https://ror.org/04eefyt88 Bhisho Provincial Hospital'),
(36846, 'https://ror.org/05n2jy464', 'en', 1, 'https://ror.org/05n2jy464 Surgimed Hospital Ų³Ų±Ų¬ŪŒŁ…ŪŒŚˆ ہسپتال Ł„Ų§ŪŁˆŲ±'),
(36847, 'https://ror.org/05n714746', 'en', 1, 'https://ror.org/05n714746 Burgersdorp Provincial Hospital'),
(36848, 'https://ror.org/01abdqw97', 'no_lang_code', 1, 'https://ror.org/01abdqw97 Dhulikhel Hospital'),
(36849, 'https://ror.org/04rs6p381', 'en', 1, 'https://ror.org/04rs6p381 Butterworth Hospital'),
(36850, 'https://ror.org/03yzrhw11', 'no_lang_code', 1, 'https://ror.org/03yzrhw11 Cala Provincial Hospital'),
(36851, 'https://ror.org/03t1qsw88', 'en', 1, 'https://ror.org/03t1qsw88 Arad County Clinical Hospital'),
(36852, 'https://ror.org/00vq26t70', 'no_lang_code', 1, 'https://ror.org/00vq26t70 Canzibe Hospital'),
(36853, 'https://ror.org/04csfg491', 'en', 1, 'https://ror.org/04csfg491 Bedford Orthopedic Hospital'),
(36854, 'https://ror.org/00737wk38', 'en', 1, 'https://ror.org/00737wk38 Sai Krishna Medical College & Hospital'),
(36855, 'https://ror.org/05jh60332', 'en', 1, 'https://ror.org/05jh60332 Cathcart Provincial Hospital'),
(36856, 'https://ror.org/03dpjfc73', 'en', 1, 'https://ror.org/03dpjfc73 Amsterdam University College'),
(36857, 'https://ror.org/05fnafm06', 'no_lang_code', 1, 'https://ror.org/05fnafm06 Cecilia Makiwane Hospital'),
(36858, 'https://ror.org/00cj6df44', 'en', 1, 'https://ror.org/00cj6df44 Cloete Joubert Hospital'),
(36859, 'https://ror.org/05bbns833', 'en', 1, 'https://ror.org/05bbns833 University College of Islamabad');
INSERT INTO `rors` VALUES
(36860, 'https://ror.org/00ajvp903', 'no_lang_code', 1, 'https://ror.org/00ajvp903 Cofimvaba Hospital'),
(36861, 'https://ror.org/018pest88', 'en', 1, 'https://ror.org/018pest88 Cradock Provincial Hospital'),
(36862, 'https://ror.org/03006q137', 'en', 1, 'https://ror.org/03006q137 Denmar Specialist Psychiatric Hospital'),
(36863, 'https://ror.org/04x0mgy69', 'en', 1, 'https://ror.org/04x0mgy69 Hospital Melaka Malacca General Hospital'),
(36864, 'https://ror.org/02qgf1459', 'no_lang_code', 1, 'https://ror.org/02qgf1459 Dora Nginza Hospital'),
(36865, 'https://ror.org/0218d7462', 'ms', 1, 'https://ror.org/0218d7462 Manipal Hospital Klang'),
(36866, 'https://ror.org/044xemj90', 'no_lang_code', 1, 'https://ror.org/044xemj90 Dar Al-Shifa Hospital مستؓفى ŲÆŲ§Ų± Ų§Ł„Ų“ŁŲ§Ų”ā€Ž'),
(36867, 'https://ror.org/02y5cd625', 'no_lang_code', 1, 'https://ror.org/02y5cd625 Dordrecht Hospital'),
(36868, 'https://ror.org/02t2f7916', 'en', 1, 'https://ror.org/02t2f7916 St Petersburg Psychiatric Hospital of Specialized Type with Intense Observation Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń ŠæŃŠøŃ…ŠøŠ°Ń‚Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° специализированного типа с интенсивным Š½Š°Š±Š»ŃŽŠ“ением'),
(36869, 'https://ror.org/01rvbmq75', 'en', 1, 'https://ror.org/01rvbmq75 New Era College ę–°ēŗŖå…ƒå­¦é™¢'),
(36870, 'https://ror.org/00f72x493', 'en', 1, 'https://ror.org/00f72x493 University College of Applied Science Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(36871, 'https://ror.org/00jjwaj46', 'en', 1, 'https://ror.org/00jjwaj46 Dr George Mukhari Hospital'),
(36872, 'https://ror.org/02dxe8s77', 'en', 1, 'https://ror.org/02dxe8s77 National Hospital'),
(36873, 'https://ror.org/00g89bg08', 'en', 1, 'https://ror.org/00g89bg08 Serdang Hospital'),
(36874, 'https://ror.org/0403qtv92', 'en', 1, 'https://ror.org/0403qtv92 Duncan Village Day Hospital'),
(36875, 'https://ror.org/01w86pt71', 'en', 1, 'https://ror.org/01w86pt71 Sibu Hospital'),
(36876, 'https://ror.org/035veqr40', 'en', 1, 'https://ror.org/035veqr40 Elizabeth Donkin Hospital'),
(36877, 'https://ror.org/03c3mm140', 'en', 1, 'https://ror.org/03c3mm140 NĆ”nfāng DĆ xuĆ© XuĆ©yuĆ n Southern University College å—ę–¹å¤§å­¦å­¦é™¢'),
(36878, 'https://ror.org/02whjr542', 'en', 1, 'https://ror.org/02whjr542 Braemar Hospital'),
(36879, 'https://ror.org/00p5w8488', 'en', 1, 'https://ror.org/00p5w8488 Elliot Provincial Hospital'),
(36880, 'https://ror.org/02xvrbk22', 'en', 1, 'https://ror.org/02xvrbk22 Hospital Sultan Abdul Halim Sultan Abdul Halim Hospital'),
(36881, 'https://ror.org/03edsg024', 'en', 1, 'https://ror.org/03edsg024 Hospital Sultan Haji Ahmad Shah Sultan Haji Ahmad Shah Hospital'),
(36882, 'https://ror.org/01a48y329', 'es', 1, 'https://ror.org/01a48y329 Hospital Punta Pacifica'),
(36883, 'https://ror.org/04h8qa024', 'no_lang_code', 1, 'https://ror.org/04h8qa024 Empilisweni District Hospital'),
(36884, 'https://ror.org/043e82c76', 'en', 1, 'https://ror.org/043e82c76 Sultan Ismail Specialist Hospital'),
(36885, 'https://ror.org/02pgs0t39', 'en', 1, 'https://ror.org/02pgs0t39 Hospital Santo TomƔs Saint Thomas Hospital'),
(36886, 'https://ror.org/04pp10d34', 'en', 1, 'https://ror.org/04pp10d34 Wakari Hospital'),
(36887, 'https://ror.org/02d6w7230', 'en', 1, 'https://ror.org/02d6w7230 Kolej Universiti TATI TATI University College'),
(36888, 'https://ror.org/02ad2pb06', 'en', 1, 'https://ror.org/02ad2pb06 International American University'),
(36889, 'https://ror.org/008trbz07', 'en', 1, 'https://ror.org/008trbz07 Hospital Tuaran Tuaran Hospital'),
(36890, 'https://ror.org/01x5tzy43', 'no_lang_code', 1, 'https://ror.org/01x5tzy43 ADK Hospital'),
(36891, 'https://ror.org/03eem3b66', 'no_lang_code', 1, 'https://ror.org/03eem3b66 Faafu Atoll Hospital'),
(36892, 'https://ror.org/0486aq354', 'en', 1, 'https://ror.org/0486aq354 Whakatane Hospital'),
(36893, 'https://ror.org/05an5n875', 'en', 1, 'https://ror.org/05an5n875 Saad Specialist Hospital مستؓفى Ų³Ų¹ŲÆ Ų§Ł„ŲŖŲ®ŲµŲµŁŠ'),
(36894, 'https://ror.org/05wnsp028', 'en', 1, 'https://ror.org/05wnsp028 Fort Beaufort Hospital'),
(36895, 'https://ror.org/02yj6ya55', 'en', 1, 'https://ror.org/02yj6ya55 Asian Hospital and Medical Center'),
(36896, 'https://ror.org/01yq3x543', 'en', 1, 'https://ror.org/01yq3x543 Indira Gandhi Memorial Hospital'),
(36897, 'https://ror.org/01bpdjm13', 'en', 1, 'https://ror.org/01bpdjm13 Keiser University Latin American Campus'),
(36898, 'https://ror.org/01apaq485', 'en', 1, 'https://ror.org/01apaq485 Fort England Psigiatriese hospitaal Fort England Psychiatric Hospital'),
(36899, 'https://ror.org/03hwy2z57', 'en', 1, 'https://ror.org/03hwy2z57 Paul University Awka'),
(36900, 'https://ror.org/05qp58s25', 'en', 1, 'https://ror.org/05qp58s25 Association of Christian Schools, Colleges and Universities'),
(36901, 'https://ror.org/038g0j466', 'en', 1, 'https://ror.org/038g0j466 Fort Grey TB Hospital'),
(36902, 'https://ror.org/025m8nj62', 'no_lang_code', 1, 'https://ror.org/025m8nj62 Frontier Hospital'),
(36903, 'https://ror.org/02z2mhx36', 'en', 1, 'https://ror.org/02z2mhx36 Association of Local Colleges and Universities'),
(36904, 'https://ror.org/03vgy8f59', 'en', 1, 'https://ror.org/03vgy8f59 Glen Grey Provincial Hospital'),
(36905, 'https://ror.org/01sj7p872', 'en', 1, 'https://ror.org/01sj7p872 St John of God Hospital Sierra Leone'),
(36906, 'https://ror.org/05eegng50', 'en', 1, 'https://ror.org/05eegng50 Bangued Christian Hospital'),
(36907, 'https://ror.org/01562cp57', 'en', 1, 'https://ror.org/01562cp57 Bethel Baptist Hospital'),
(36908, 'https://ror.org/05y17bn08', 'en', 1, 'https://ror.org/05y17bn08 Grey Provincial Hospital'),
(36909, 'https://ror.org/05mwhq004', 'es', 1, 'https://ror.org/05mwhq004 Hospital de JesĆŗs Nazareno'),
(36910, 'https://ror.org/05czzgv88', 'en', 1, 'https://ror.org/05czzgv88 Namsos Hospital'),
(36911, 'https://ror.org/00r2t8g81', 'en', 1, 'https://ror.org/00r2t8g81 Parkway East Hospital'),
(36912, 'https://ror.org/04j69ht58', 'en', 1, 'https://ror.org/04j69ht58 Hewu Hospital'),
(36913, 'https://ror.org/04hbzm840', 'en', 1, 'https://ror.org/04hbzm840 Chinese General Hospital and Medical Center'),
(36914, 'https://ror.org/05kds6518', 'en', 1, 'https://ror.org/05kds6518 Indwe Hospital'),
(36915, 'https://ror.org/02a0q1e43', 'en', 1, 'https://ror.org/02a0q1e43 Norwegian Universities and Colleges Admission Service'),
(36916, 'https://ror.org/01cnqh417', 'en', 1, 'https://ror.org/01cnqh417 Mount Elizabeth Novena Hospital'),
(36917, 'https://ror.org/04xaked44', 'es', 1, 'https://ror.org/04xaked44 Hospital San Hipólito'),
(36918, 'https://ror.org/00fweme20', 'en', 1, 'https://ror.org/00fweme20 Chinese General Hospital College of Nursing and Liberal Arts'),
(36919, 'https://ror.org/03rsw7n31', 'en', 1, 'https://ror.org/03rsw7n31 Davao Doctors Hospital'),
(36920, 'https://ror.org/05w4sv861', 'en', 1, 'https://ror.org/05w4sv861 Jamestown Hospital'),
(36921, 'https://ror.org/03fatc842', 'en', 1, 'https://ror.org/03fatc842 Jose Pearson TB Hospital'),
(36922, 'https://ror.org/05t534806', 'en', 1, 'https://ror.org/05t534806 Dr. Jose N. Rodriguez Memorial Hospital'),
(36923, 'https://ror.org/00w2nrp41', 'en', 1, 'https://ror.org/00w2nrp41 Kalafong Hospitaal Kalafong Hospital'),
(36924, 'https://ror.org/00kxk0k30', 'en', 1, 'https://ror.org/00kxk0k30 Rudolf Steiner University College'),
(36925, 'https://ror.org/00a5p2894', 'no_lang_code', 1, 'https://ror.org/00a5p2894 Komga Hospital'),
(36926, 'https://ror.org/053cj9d07', 'en', 1, 'https://ror.org/053cj9d07 Onderstepoort Veterinary Academic Hospital Onderstepoort-dierehospitaal'),
(36927, 'https://ror.org/05jd9hn69', 'en', 1, 'https://ror.org/05jd9hn69 Lady Grey Hospital'),
(36928, 'https://ror.org/053x7k331', 'en', 1, 'https://ror.org/053x7k331 St Luke''s Hospital'),
(36929, 'https://ror.org/02bg43d92', 'en', 1, 'https://ror.org/02bg43d92 P.Z. Meyer Hospital'),
(36930, 'https://ror.org/02pfhds36', 'en', 1, 'https://ror.org/02pfhds36 Iloilo Mission Hospital'),
(36931, 'https://ror.org/00f0wme23', 'en', 1, 'https://ror.org/00f0wme23 Livingstone Hospital'),
(36932, 'https://ror.org/01fr0xp26', 'en', 1, 'https://ror.org/01fr0xp26 John B. Lacson Foundation Maritime University'),
(36933, 'https://ror.org/0327sj791', 'no_lang_code', 1, 'https://ror.org/0327sj791 S.S. Gida Hospital'),
(36934, 'https://ror.org/00d3ws365', 'en', 1, 'https://ror.org/00d3ws365 Aga Khan Hospital for Women'),
(36935, 'https://ror.org/01sz1dt34', 'en', 1, 'https://ror.org/01sz1dt34 Å tefan Kukura Hospital in Michalovce'),
(36936, 'https://ror.org/02mrs6s31', 'en', 1, 'https://ror.org/02mrs6s31 Maclear Hospital'),
(36937, 'https://ror.org/03rm5rm15', 'en', 1, 'https://ror.org/03rm5rm15 Settlers Hospital'),
(36938, 'https://ror.org/0523nzq15', 'en', 1, 'https://ror.org/0523nzq15 Juan S. Alano Memorial Hospital'),
(36939, 'https://ror.org/02rsn0x61', 'en', 1, 'https://ror.org/02rsn0x61 Allied Hospital'),
(36940, 'https://ror.org/0214vep53', 'no_lang_code', 1, 'https://ror.org/0214vep53 Madwaleni Hospital'),
(36941, 'https://ror.org/00qh12n88', 'en', 1, 'https://ror.org/00qh12n88 Laguna State Polytechnic University'),
(36942, 'https://ror.org/050jgsv04', 'en', 1, 'https://ror.org/050jgsv04 Somerset Hospital'),
(36943, 'https://ror.org/0074zqk79', 'en', 1, 'https://ror.org/0074zqk79 Madzikane Ka Zulu Memorial Hospital'),
(36944, 'https://ror.org/03e7k3562', 'en', 1, 'https://ror.org/03e7k3562 St Barnabas Hospital'),
(36945, 'https://ror.org/01ark0470', 'en', 1, 'https://ror.org/01ark0470 Abudwak Maternity and Children''s Hospital Isbitaalka Caabudwaaq ee Daryeelka Umulaha iyo Caruurta'),
(36946, 'https://ror.org/00qej3243', 'en', 1, 'https://ror.org/00qej3243 Medina General Hospital'),
(36947, 'https://ror.org/037ssjt43', 'no_lang_code', 1, 'https://ror.org/037ssjt43 Martje Venter Hospital'),
(36948, 'https://ror.org/00rqqzf78', 'en', 1, 'https://ror.org/00rqqzf78 Daud Memorial Hospital'),
(36949, 'https://ror.org/000d92m60', 'en', 1, 'https://ror.org/000d92m60 Midlands Provincial Hospital'),
(36950, 'https://ror.org/0110xbk95', 'en', 1, 'https://ror.org/0110xbk95 St Elizabeth Mission Hospital'),
(36951, 'https://ror.org/04fc2q781', 'en', 1, 'https://ror.org/04fc2q781 Divisional Headquarters Teaching Hospital Mirpur'),
(36952, 'https://ror.org/0398fjy18', 'en', 1, 'https://ror.org/0398fjy18 St Francis Chronic Hospital'),
(36953, 'https://ror.org/05xfapj25', 'no_lang_code', 1, 'https://ror.org/05xfapj25 Mjanyana Hospital'),
(36954, 'https://ror.org/02rxr6563', 'no_lang_code', 1, 'https://ror.org/02rxr6563 Molteno Hospital'),
(36955, 'https://ror.org/03qve6z66', 'en', 1, 'https://ror.org/03qve6z66 St Lucy''s Hospital'),
(36956, 'https://ror.org/00bdqv395', 'en', 1, 'https://ror.org/00bdqv395 District Headquarters Hospital Battagram Ł…Ų±Ś©Ų²ŪŒ ضلع ہسپتال بٹگرام'),
(36957, 'https://ror.org/02cbfxf79', 'en', 1, 'https://ror.org/02cbfxf79 St Patrick''s Hospital'),
(36958, 'https://ror.org/02z89pc64', 'en', 1, 'https://ror.org/02z89pc64 Mindanao Sanitarium and Hospital College'),
(36959, 'https://ror.org/04e3aws14', 'en', 1, 'https://ror.org/04e3aws14 Farooq Hospital'),
(36960, 'https://ror.org/02p3z0a62', 'en', 1, 'https://ror.org/02p3z0a62 Mount Ayliff Hospital'),
(36961, 'https://ror.org/05m5pvn27', 'en', 1, 'https://ror.org/05m5pvn27 Mthatha General Hospital'),
(36962, 'https://ror.org/014m06j94', 'en', 1, 'https://ror.org/014m06j94 Sterkstroom Provincial Hospital'),
(36963, 'https://ror.org/015gtm372', 'en', 1, 'https://ror.org/015gtm372 Steve Biko Akademiese Hospitaal Steve Biko Hospital'),
(36964, 'https://ror.org/036z4hp15', 'en', 1, 'https://ror.org/036z4hp15 Nelson Mandela Academic Hospital'),
(36965, 'https://ror.org/05vsk3m88', 'en', 1, 'https://ror.org/05vsk3m88 Kilinochchi General Hospital'),
(36966, 'https://ror.org/05p4cdm91', 'no_lang_code', 1, 'https://ror.org/05p4cdm91 Banadir Hospital'),
(36967, 'https://ror.org/0317k7j67', 'en', 1, 'https://ror.org/0317k7j67 Lanka Hospitals'),
(36968, 'https://ror.org/05h7j3j46', 'en', 1, 'https://ror.org/05h7j3j46 Steynsburg Provincial Hospital'),
(36969, 'https://ror.org/02szqsk98', 'en', 1, 'https://ror.org/02szqsk98 East Bardera Mothers and Children''s Hospital'),
(36970, 'https://ror.org/0216ejh55', 'en', 1, 'https://ror.org/0216ejh55 Stutterheim Provincial Hospital'),
(36971, 'https://ror.org/05s6ykc72', 'en', 1, 'https://ror.org/05s6ykc72 Nkqubela Chest Hospital'),
(36972, 'https://ror.org/03sdprd87', 'en', 1, 'https://ror.org/03sdprd87 Quirino State University'),
(36973, 'https://ror.org/02q2b0g11', 'no_lang_code', 1, 'https://ror.org/02q2b0g11 Tafalofefe Hospital'),
(36974, 'https://ror.org/01kaftk72', 'no_lang_code', 1, 'https://ror.org/01kaftk72 Mallavi Hospital'),
(36975, 'https://ror.org/048fm8466', 'en', 1, 'https://ror.org/048fm8466 Edna Adan Maternity Hospital'),
(36976, 'https://ror.org/01gjcwg85', 'en', 1, 'https://ror.org/01gjcwg85 Tayler Bequest District Hospital'),
(36977, 'https://ror.org/0443z5530', 'en', 1, 'https://ror.org/0443z5530 San Jose Hospital & Trauma Center'),
(36978, 'https://ror.org/042qcb753', 'no_lang_code', 1, 'https://ror.org/042qcb753 Nompumelelo Hospital'),
(36979, 'https://ror.org/00mwp9n57', 'en', 1, 'https://ror.org/00mwp9n57 Tower Psychiatric Hospital'),
(36980, 'https://ror.org/035c32k36', 'no_lang_code', 1, 'https://ror.org/035c32k36 Gardo General Hospital'),
(36981, 'https://ror.org/05pd21s36', 'no_lang_code', 1, 'https://ror.org/05pd21s36 Somoso General Hospital'),
(36982, 'https://ror.org/05rjfvd69', 'no_lang_code', 1, 'https://ror.org/05rjfvd69 Umlamli Hospital'),
(36983, 'https://ror.org/05mpa6118', 'en', 1, 'https://ror.org/05mpa6118 Mannar Hospital'),
(36984, 'https://ror.org/0374eby90', 'no_lang_code', 1, 'https://ror.org/0374eby90 Valkenberg Hospital'),
(36985, 'https://ror.org/00n08qc60', 'en', 1, 'https://ror.org/00n08qc60 Unciano Colleges and General Hospital'),
(36986, 'https://ror.org/008vpwk50', 'no_lang_code', 1, 'https://ror.org/008vpwk50 Victoria Hospital'),
(36987, 'https://ror.org/05xh9zn04', 'no_lang_code', 1, 'https://ror.org/05xh9zn04 Mullaitivu Hospital'),
(36988, 'https://ror.org/036s60e53', 'en', 1, 'https://ror.org/036s60e53 Aberdeen Provincial Hospital'),
(36989, 'https://ror.org/03cwq3j60', 'en', 1, 'https://ror.org/03cwq3j60 Wilhelm Stahl Provincial Hospital'),
(36990, 'https://ror.org/00rb2cm82', 'en', 1, 'https://ror.org/00rb2cm82 Universal College'),
(36991, 'https://ror.org/00k3bnk40', 'en', 1, 'https://ror.org/00k3bnk40 Zithulele Hospital'),
(36992, 'https://ror.org/04s1njj71', 'en', 1, 'https://ror.org/04s1njj71 Adelaide Provincial Hospital'),
(36993, 'https://ror.org/03d5h2g68', 'no_lang_code', 1, 'https://ror.org/03d5h2g68 Nawaloka Hospital ą¶±ą·€ą¶½ą·ą¶š ą¶»ą·ą·„ą¶½'),
(36994, 'https://ror.org/03nhtqr81', 'en', 1, 'https://ror.org/03nhtqr81 Kibuli Hospital'),
(36995, 'https://ror.org/04qvybk43', 'en', 1, 'https://ror.org/04qvybk43 Bumin Hospital Group'),
(36996, 'https://ror.org/04s3waj07', 'en', 1, 'https://ror.org/04s3waj07 Chung Cheong University 忠淸大學 ģ¶©ģ²­ėŒ€ķ•™źµ'),
(36997, 'https://ror.org/0491f2496', 'en', 1, 'https://ror.org/0491f2496 Dr Neville Fernando Teaching Hospital'),
(36998, 'https://ror.org/033pwxw54', 'en', 1, 'https://ror.org/033pwxw54 Kisiizi Hospital'),
(36999, 'https://ror.org/05htgxx31', 'en', 1, 'https://ror.org/05htgxx31 Point Pedro Hospital'),
(37000, 'https://ror.org/05wb29v16', 'en', 1, 'https://ror.org/05wb29v16 Kitojo Hospital'),
(37001, 'https://ror.org/04znkkz68', 'en', 1, 'https://ror.org/04znkkz68 Daewon University College ėŒ€ģ›ėŒ€ķ•™źµ'),
(37002, 'https://ror.org/01zx9b829', 'en', 1, 'https://ror.org/01zx9b829 Aliwal North Hospital'),
(37003, 'https://ror.org/02324e112', 'en', 1, 'https://ror.org/02324e112 Mission Hospital'),
(37004, 'https://ror.org/036yer645', 'no_lang_code', 1, 'https://ror.org/036yer645 Tellippalai Hospital'),
(37005, 'https://ror.org/031ts3559', 'en', 1, 'https://ror.org/031ts3559 Doowon Technical University College ė‘ģ›ź³µź³¼ėŒ€ķ•™źµ'),
(37006, 'https://ror.org/04bz3d640', 'en', 1, 'https://ror.org/04bz3d640 Kitovu Hospital'),
(37007, 'https://ror.org/011g06z87', 'en', 1, 'https://ror.org/011g06z87 Trincomalee Hospital ą¶­ą·Šā€ą¶»ą·’ą¶šą·”ą¶«ą·ą¶øą¶½ą¶ŗ ą¶»ą·ą·„ą¶½'),
(37008, 'https://ror.org/05fmss017', 'en', 1, 'https://ror.org/05fmss017 All Saints Hospital'),
(37009, 'https://ror.org/023x8re17', 'no_lang_code', 1, 'https://ror.org/023x8re17 Bangkok Christian Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøąø£ąøøąø‡ą¹€ąø—ąøžąø„ąø£ąø“ąøŖą¹€ąø•ąøµąø¢ąø™'),
(37010, 'https://ror.org/013zxek87', 'en', 1, 'https://ror.org/013zxek87 Hallym Polytechnic University ēæ°ęž—č–åæƒå¤§å­øę ” ķ•œė¦¼ģ„±ģ‹¬ėŒ€ķ•™źµ'),
(37011, 'https://ror.org/02rbp5787', 'en', 1, 'https://ror.org/02rbp5787 Kiwoko Hospital'),
(37012, 'https://ror.org/04st2h187', 'en', 1, 'https://ror.org/04st2h187 Andries Vosloo Hospital'),
(37013, 'https://ror.org/037zgz558', 'en', 1, 'https://ror.org/037zgz558 Vavuniya General Hospital'),
(37014, 'https://ror.org/02hhjhn88', 'en', 1, 'https://ror.org/02hhjhn88 B.J. Vorster Hospital'),
(37015, 'https://ror.org/011xmw283', 'en', 1, 'https://ror.org/011xmw283 Kuluva Hospital'),
(37016, 'https://ror.org/00ya08494', 'en', 1, 'https://ror.org/00ya08494 Bumrungrad International Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøšąø³ąø£ąøøąø‡ąø£ąø²ąø©ąøŽąø£ą¹Œ'),
(37017, 'https://ror.org/03f6y6166', 'en', 1, 'https://ror.org/03f6y6166 Lira Hospital'),
(37018, 'https://ror.org/03thytm37', 'no_lang_code', 1, 'https://ror.org/03thytm37 Manarom Hospital'),
(37019, 'https://ror.org/01rztx461', 'en', 1, 'https://ror.org/01rztx461 University of Medical Sciences and Technology Ų¬Ų§Ł…Ų¹Ų© Ł…Ų£Ł…ŁˆŁ† Ų­Ł…ŁŠŲÆŲ©'),
(37020, 'https://ror.org/01q0yhx95', 'en', 1, 'https://ror.org/01q0yhx95 Masaka Hospital'),
(37021, 'https://ror.org/041dcxd16', 'en', 1, 'https://ror.org/041dcxd16 Lanchester Road Hospital'),
(37022, 'https://ror.org/02jxdjn74', 'en', 1, 'https://ror.org/02jxdjn74 Mayo Hospital'),
(37023, 'https://ror.org/02agpjg13', 'en', 1, 'https://ror.org/02agpjg13 Matany Hospital'),
(37024, 'https://ror.org/01dy1y679', 'en', 1, 'https://ror.org/01dy1y679 Nakornthon Hospital'),
(37025, 'https://ror.org/05n0dev02', 'en', 1, 'https://ror.org/05n0dev02 Mbale Hospital'),
(37026, 'https://ror.org/01h9spb06', 'en', 1, 'https://ror.org/01h9spb06 Korea National University of Welfare ķ•œźµ­ė³µģ§€ėŒ€ķ•™źµ'),
(37027, 'https://ror.org/043qb7f72', 'en', 1, 'https://ror.org/043qb7f72 Fleming Cottage Hospital'),
(37028, 'https://ror.org/03fw3x319', 'en', 1, 'https://ror.org/03fw3x319 Frƶlunda Specialist Hospital Frƶlunda Specialistsjukhus'),
(37029, 'https://ror.org/009aksf94', 'no_lang_code', 1, 'https://ror.org/009aksf94 Vejthani Hospital'),
(37030, 'https://ror.org/00zec6783', 'en', 1, 'https://ror.org/00zec6783 Tongwon University ė™ģ›ėŒ€ķ•™źµ'),
(37031, 'https://ror.org/00awmjf06', 'no_lang_code', 1, 'https://ror.org/00awmjf06 Vibhavadi Hospital'),
(37032, 'https://ror.org/01xqpsp32', 'en', 1, 'https://ror.org/01xqpsp32 Fountain Way'),
(37033, 'https://ror.org/02ps5zx04', 'en', 1, 'https://ror.org/02ps5zx04 Moroto Hospital'),
(37034, 'https://ror.org/01qj9e285', 'en', 1, 'https://ror.org/01qj9e285 Yuhan University ģœ ķ•œėŒ€ķ•™źµ'),
(37035, 'https://ror.org/02q3pem31', 'no_lang_code', 1, 'https://ror.org/02q3pem31 Yanhee Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø¢ąø±ąø™ąø®ąøµ'),
(37036, 'https://ror.org/01vn1cc81', 'en', 1, 'https://ror.org/01vn1cc81 Galloway Community Hospital'),
(37037, 'https://ror.org/01xt6pa06', 'en', 1, 'https://ror.org/01xt6pa06 Mubende Hospital'),
(37038, 'https://ror.org/03850me26', 'en', 1, 'https://ror.org/03850me26 Mutolere Hospital'),
(37039, 'https://ror.org/04x3j0s69', 'en', 1, 'https://ror.org/04x3j0s69 Gilbert Bain Hospital'),
(37040, 'https://ror.org/03cjy1t09', 'en', 1, 'https://ror.org/03cjy1t09 Hospital general de Puerto EspaƱa Port of Spain General Hospital'),
(37041, 'https://ror.org/02axhzn68', 'en', 1, 'https://ror.org/02axhzn68 Naggalama Hospital'),
(37042, 'https://ror.org/05t8tj069', 'en', 1, 'https://ror.org/05t8tj069 Glen O''Dee Hospital'),
(37043, 'https://ror.org/00va2ea06', 'no_lang_code', 1, 'https://ror.org/00va2ea06 Ampara Hospital ą¶…ą¶øą·Šą¶“ą·ą¶» ą¶»ą·ą·„ą¶½'),
(37044, 'https://ror.org/00n0gcp81', 'en', 1, 'https://ror.org/00n0gcp81 Naguru General Hospital'),
(37045, 'https://ror.org/04zympr28', 'en', 1, 'https://ror.org/04zympr28 Insch War Memorial Hospital'),
(37046, 'https://ror.org/02z875e74', 'en', 1, 'https://ror.org/02z875e74 Ashraff Memorial Hospital'),
(37047, 'https://ror.org/04tav6r22', 'sv', 1, 'https://ror.org/04tav6r22 Sjukhuset i Lidkƶping'),
(37048, 'https://ror.org/05a70mg07', 'en', 1, 'https://ror.org/05a70mg07 Nakaseke Hospital'),
(37049, 'https://ror.org/036g8b848', 'en', 1, 'https://ror.org/036g8b848 Inverurie Hospital'),
(37050, 'https://ror.org/04dp8fd47', 'en', 1, 'https://ror.org/04dp8fd47 Jubilee Hospital'),
(37051, 'https://ror.org/00sy03c71', 'en', 1, 'https://ror.org/00sy03c71 Teaching Hospital Batticaloa போதனா ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆ ą®®ą®ŸąÆą®Ÿą®•ąÆą®•ą®³ą®ŖąÆą®ŖąÆ'),
(37052, 'https://ror.org/02pktej77', 'en', 1, 'https://ror.org/02pktej77 Kincardine Community Hospital'),
(37053, 'https://ror.org/002kk4g03', 'en', 1, 'https://ror.org/002kk4g03 Nkozi Hospital'),
(37054, 'https://ror.org/04spvzc70', 'tr', 1, 'https://ror.org/04spvzc70 Balikli Rum Vakfi Hastanesi Balıklı Greek Hospital Balıklı Rum Hastanesi'),
(37055, 'https://ror.org/0508eaq76', 'no_lang_code', 1, 'https://ror.org/0508eaq76 Chavakachcheri Hospital'),
(37056, 'https://ror.org/0331bk778', 'en', 1, 'https://ror.org/0331bk778 Nsambya Hospital'),
(37057, 'https://ror.org/0027zt973', 'en', 1, 'https://ror.org/0027zt973 Swiss Association for Private Schools and Universities'),
(37058, 'https://ror.org/02vwzhc72', 'en', 1, 'https://ror.org/02vwzhc72 Kirklandside Hospital'),
(37059, 'https://ror.org/02xsnmk21', 'en', 1, 'https://ror.org/02xsnmk21 Nyakibale Hospital'),
(37060, 'https://ror.org/05ckkwm59', 'en', 1, 'https://ror.org/05ckkwm59 Kirkwood Hospice'),
(37061, 'https://ror.org/020twtp42', 'en', 1, 'https://ror.org/020twtp42 Swiss Institute for Management and Hospitality'),
(37062, 'https://ror.org/03p2ng128', 'no_lang_code', 1, 'https://ror.org/03p2ng128 Cheddikulam Hospital'),
(37063, 'https://ror.org/03fmefz35', 'en', 1, 'https://ror.org/03fmefz35 Lagan Valley Hospital'),
(37064, 'https://ror.org/01gezpw47', 'no_lang_code', 1, 'https://ror.org/01gezpw47 Durdans Hospital'),
(37065, 'https://ror.org/018dznw39', 'en', 1, 'https://ror.org/018dznw39 Rubaga Hospital'),
(37066, 'https://ror.org/012m63179', 'en', 1, 'https://ror.org/012m63179 Leanchoil Hospital'),
(37067, 'https://ror.org/01555zp21', 'en', 1, 'https://ror.org/01555zp21 Swiss School of Tourism and Hospitality'),
(37068, 'https://ror.org/05fs4ar13', 'en', 1, 'https://ror.org/05fs4ar13 Soroti Hospital'),
(37069, 'https://ror.org/05pd2z238', 'en', 1, 'https://ror.org/05pd2z238 Jaffna Teaching Hospital ą¶ŗą·ą¶“ą¶±ą¶ŗ ą·ą·’ą¶šą·Šą·‚ą¶« ą¶»ą·ą·„ą¶½'),
(37070, 'https://ror.org/04hbbc968', 'en', 1, 'https://ror.org/04hbbc968 Kalmunai North Hospital ą®•ą®²ąÆą®®ąÆą®©ąÆˆ ą®µą®Ÿą®•ąÆą®•ąÆ ஆதார ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆ'),
(37071, 'https://ror.org/03frvp088', 'en', 1, 'https://ror.org/03frvp088 International University for Science and Technology'),
(37072, 'https://ror.org/02qw5pa02', 'en', 1, 'https://ror.org/02qw5pa02 St. Francis Hospital Nkokonjeru'),
(37073, 'https://ror.org/04wp4st08', 'en', 1, 'https://ror.org/04wp4st08 Llanfrechfa Grange Hospital'),
(37074, 'https://ror.org/03r9wk794', 'en', 1, 'https://ror.org/03r9wk794 Kayts Hospital'),
(37075, 'https://ror.org/03asev112', 'en', 1, 'https://ror.org/03asev112 London Bridge Hospital'),
(37076, 'https://ror.org/01rzrn583', 'en', 1, 'https://ror.org/01rzrn583 University of Military Science and Technology'),
(37077, 'https://ror.org/01fsf9j67', 'en', 1, 'https://ror.org/01fsf9j67 Lowestoft Hospital'),
(37078, 'https://ror.org/00ssdam06', 'en', 1, 'https://ror.org/00ssdam06 The Mount'),
(37079, 'https://ror.org/041dnc326', 'en', 1, 'https://ror.org/041dnc326 Turner Memorial Hospital'),
(37080, 'https://ror.org/01p3c2g14', 'en', 1, 'https://ror.org/01p3c2g14 Turriff Cottage Hospital'),
(37081, 'https://ror.org/024yt9656', 'en', 1, 'https://ror.org/024yt9656 Villa Maria Hospital'),
(37082, 'https://ror.org/00dpzx715', 'en', 1, 'https://ror.org/00dpzx715 Suleyman Demirel University Research and Education Hospital'),
(37083, 'https://ror.org/02akjg578', 'en', 1, 'https://ror.org/02akjg578 Mackinnon Memorial Hospital'),
(37084, 'https://ror.org/04hfdry06', 'en', 1, 'https://ror.org/04hfdry06 Virika Hospital'),
(37085, 'https://ror.org/03z1ps729', 'en', 1, 'https://ror.org/03z1ps729 Aga Khan Hospital Dar es Salaam'),
(37086, 'https://ror.org/00v1kpv21', 'en', 1, 'https://ror.org/00v1kpv21 Maindiff Court Hospital Ysbyty Maindiff Court'),
(37087, 'https://ror.org/02j3f7p78', 'en', 1, 'https://ror.org/02j3f7p78 Ugie Hospital'),
(37088, 'https://ror.org/01jzgfe96', 'en', 1, 'https://ror.org/01jzgfe96 Bombo Hospital'),
(37089, 'https://ror.org/03g7zhh97', 'en', 1, 'https://ror.org/03g7zhh97 Uist and Barra Hospital'),
(37090, 'https://ror.org/01ewp8233', 'tr', 1, 'https://ror.org/01ewp8233 Yedikule Surp PırgiƧ Armenian Hospital Yedikule Surp PırgiƧ Ermeni Hastanesi'),
(37091, 'https://ror.org/05sqvht74', 'en', 1, 'https://ror.org/05sqvht74 Midlothian Community Hospital'),
(37092, 'https://ror.org/02tzc1925', 'en', 1, 'https://ror.org/02tzc1925 Haydom Lutheran Hospital'),
(37093, 'https://ror.org/02e8wzn87', 'en', 1, 'https://ror.org/02e8wzn87 Naomi House and Jacksplace'),
(37094, 'https://ror.org/05w7k9134', 'en', 1, 'https://ror.org/05w7k9134 Ajman Specialty General Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¹Ł…ŁˆŁ…ŪŒ تخصصی عجمان'),
(37095, 'https://ror.org/01tajhr18', 'en', 1, 'https://ror.org/01tajhr18 Princess Margaret Hospital'),
(37096, 'https://ror.org/04t6q1p67', 'en', 1, 'https://ror.org/04t6q1p67 Neath Port Talbot Hospital'),
(37097, 'https://ror.org/04b14sj77', 'en', 1, 'https://ror.org/04b14sj77 Peterborough Regional College'),
(37098, 'https://ror.org/04p73je79', 'en', 1, 'https://ror.org/04p73je79 Angal Hospital'),
(37099, 'https://ror.org/03vxaxy97', 'en', 1, 'https://ror.org/03vxaxy97 Peterhead Community Hospital'),
(37100, 'https://ror.org/00qjry581', 'en', 1, 'https://ror.org/00qjry581 Warwickshire Hospital'),
(37101, 'https://ror.org/00254th47', 'en', 1, 'https://ror.org/00254th47 Western Isles Hospital'),
(37102, 'https://ror.org/03541w302', 'en', 1, 'https://ror.org/03541w302 Arua Regional Referral Hospital'),
(37103, 'https://ror.org/01qjnmr21', 'en', 1, 'https://ror.org/01qjnmr21 Redwood Memorial Hospital'),
(37104, 'https://ror.org/01ccpfp25', 'en', 1, 'https://ror.org/01ccpfp25 Danat Al Emarat Women & Children’s Hospital'),
(37105, 'https://ror.org/01dafpx49', 'en', 1, 'https://ror.org/01dafpx49 Buluba Hospital'),
(37106, 'https://ror.org/015g8zg50', 'en', 1, 'https://ror.org/015g8zg50 Royal Buckinghamshire Hospital'),
(37107, 'https://ror.org/02z5rm416', 'en', 1, 'https://ror.org/02z5rm416 Butabika Hospital'),
(37108, 'https://ror.org/00q9ekq83', 'no_lang_code', 1, 'https://ror.org/00q9ekq83 Dar Al Shifaa Hospital'),
(37109, 'https://ror.org/043dmbr88', 'en', 1, 'https://ror.org/043dmbr88 Westminster Memorial Hospital'),
(37110, 'https://ror.org/03vt5c527', 'en', 1, 'https://ror.org/03vt5c527 Royal Gwent Hospital Ysbyty Brenhinol Gwent'),
(37111, 'https://ror.org/003xxrm77', 'en', 1, 'https://ror.org/003xxrm77 Wirral Women and Children''s Hospital'),
(37112, 'https://ror.org/02yj8ay39', 'en', 1, 'https://ror.org/02yj8ay39 Royal Hospital Chelsea'),
(37113, 'https://ror.org/01q1nqh97', 'en', 1, 'https://ror.org/01q1nqh97 Cabell Huntington Hospital'),
(37114, 'https://ror.org/00ggs5315', 'en', 1, 'https://ror.org/00ggs5315 Woolmanhill Hospital'),
(37115, 'https://ror.org/0243vac68', 'en', 1, 'https://ror.org/0243vac68 GMC Hospital'),
(37116, 'https://ror.org/007svmx82', 'en', 1, 'https://ror.org/007svmx82 Caldwell Memorial Hospital'),
(37117, 'https://ror.org/05a637472', 'en', 1, 'https://ror.org/05a637472 CURE Children’s Hospital of Uganda'),
(37118, 'https://ror.org/05t9fq164', 'en', 1, 'https://ror.org/05t9fq164 Calvert Memorial Hospital'),
(37119, 'https://ror.org/04rcnsw78', 'en', 1, 'https://ror.org/04rcnsw78 Royal Hospital School'),
(37120, 'https://ror.org/00e252407', 'en', 1, 'https://ror.org/00e252407 Oasis Hospital'),
(37121, 'https://ror.org/058sgvn64', 'en', 1, 'https://ror.org/058sgvn64 Alameda Hospital'),
(37122, 'https://ror.org/02rpzg225', 'en', 1, 'https://ror.org/02rpzg225 Fort Portal Hospital'),
(37123, 'https://ror.org/03jygq783', 'en', 1, 'https://ror.org/03jygq783 Carroll Hospital'),
(37124, 'https://ror.org/05mg1ma72', 'en', 1, 'https://ror.org/05mg1ma72 Seafield Hospital'),
(37125, 'https://ror.org/022m3jb71', 'en', 1, 'https://ror.org/022m3jb71 Hoima Hospital'),
(37126, 'https://ror.org/02g0pj253', 'en', 1, 'https://ror.org/02g0pj253 Centegra Hospital McHenry'),
(37127, 'https://ror.org/01pykff63', 'en', 1, 'https://ror.org/01pykff63 Holy Innocents Children''s Hospital'),
(37128, 'https://ror.org/02qzqg182', 'en', 1, 'https://ror.org/02qzqg182 Centegra Hospital Woodstock'),
(37129, 'https://ror.org/012w90b89', 'en', 1, 'https://ror.org/012w90b89 Emirates Academy of Hospitality Management'),
(37130, 'https://ror.org/04vh5xb31', 'en', 1, 'https://ror.org/04vh5xb31 Centennial Hills Hospital'),
(37131, 'https://ror.org/04r6ymp55', 'en', 1, 'https://ror.org/04r6ymp55 Central State Hospital'),
(37132, 'https://ror.org/04ddxpg37', 'en', 1, 'https://ror.org/04ddxpg37 Albyn Hospital'),
(37133, 'https://ror.org/05vsjw141', 'en', 1, 'https://ror.org/05vsjw141 International Hospital Kampala'),
(37134, 'https://ror.org/019thgp94', 'en', 1, 'https://ror.org/019thgp94 Adventist Health Community Care-Hanford'),
(37135, 'https://ror.org/03d1se459', 'en', 1, 'https://ror.org/03d1se459 St Cadoc''s Hospital'),
(37136, 'https://ror.org/050kv7279', 'en', 1, 'https://ror.org/050kv7279 Ishaka Adventist Hospital'),
(37137, 'https://ror.org/03r8nx235', 'en', 1, 'https://ror.org/03r8nx235 Albert B. Chandler Hospital'),
(37138, 'https://ror.org/01v67r190', 'en', 1, 'https://ror.org/01v67r190 Clark Fork Valley Hospital'),
(37139, 'https://ror.org/01qbm4443', 'en', 1, 'https://ror.org/01qbm4443 Basildon and Thurrock University Hospitals NHS Foundation Trust'),
(37140, 'https://ror.org/01xd8qn15', 'en', 1, 'https://ror.org/01xd8qn15 St Woolos Hospital'),
(37141, 'https://ror.org/03k3gy769', 'en', 1, 'https://ror.org/03k3gy769 Itojo Hospital'),
(37142, 'https://ror.org/01hhq6g52', 'en', 1, 'https://ror.org/01hhq6g52 Alta View Hospital'),
(37143, 'https://ror.org/0304chs76', 'en', 1, 'https://ror.org/0304chs76 Coalinga State Hospital'),
(37144, 'https://ror.org/034qn2e75', 'en', 1, 'https://ror.org/034qn2e75 Community Hospital of Long Beach'),
(37145, 'https://ror.org/05fe98h83', 'en', 1, 'https://ror.org/05fe98h83 Jinja Hospital'),
(37146, 'https://ror.org/01a7fxy42', 'en', 1, 'https://ror.org/01a7fxy42 St. Brendan''s Hospital'),
(37147, 'https://ror.org/0092pe568', 'en', 1, 'https://ror.org/0092pe568 Community Hospital of San Bernardino'),
(37148, 'https://ror.org/05w77r929', 'en', 1, 'https://ror.org/05w77r929 Blaenavon Hospital'),
(37149, 'https://ror.org/04e4aky44', 'en', 1, 'https://ror.org/04e4aky44 American Fork Hospital'),
(37150, 'https://ror.org/03a470v04', 'en', 1, 'https://ror.org/03a470v04 Kabale Hospital'),
(37151, 'https://ror.org/0560ehd58', 'en', 1, 'https://ror.org/0560ehd58 Stephen Cottage Hospital'),
(37152, 'https://ror.org/013b2a427', 'en', 1, 'https://ror.org/013b2a427 Campbell Hospital'),
(37153, 'https://ror.org/020eynm41', 'en', 1, 'https://ror.org/020eynm41 Stracathro Hospital'),
(37154, 'https://ror.org/03sffv110', 'en', 1, 'https://ror.org/03sffv110 Kagando Hospital'),
(37155, 'https://ror.org/03sd8nm03', 'en', 1, 'https://ror.org/03sd8nm03 Cefn Coed Hospital'),
(37156, 'https://ror.org/00w069474', 'en', 1, 'https://ror.org/00w069474 Ancora Psychiatric Hospital'),
(37157, 'https://ror.org/04dq5k727', 'en', 1, 'https://ror.org/04dq5k727 BMI The Meriden Hospital'),
(37158, 'https://ror.org/03r9gvk70', 'en', 1, 'https://ror.org/03r9gvk70 Kalongo Hospital'),
(37159, 'https://ror.org/05px4ev98', 'en', 1, 'https://ror.org/05px4ev98 Cottage Grove Community Medical Center'),
(37160, 'https://ror.org/02h9b8h17', 'en', 1, 'https://ror.org/02h9b8h17 Chesterfield Royal Hospital NHS Foundation Trust'),
(37161, 'https://ror.org/02h9qaw79', 'en', 1, 'https://ror.org/02h9qaw79 AnMed Health Women''s & Children''s Hospital'),
(37162, 'https://ror.org/030ncf194', 'en', 1, 'https://ror.org/030ncf194 Cooper Green Mercy Hospital'),
(37163, 'https://ror.org/00t3ejb31', 'en', 1, 'https://ror.org/00t3ejb31 Kamuli General Hospital'),
(37164, 'https://ror.org/04v1qxj13', 'en', 1, 'https://ror.org/04v1qxj13 Antelope Valley Hospital'),
(37165, 'https://ror.org/004p7xa79', 'en', 1, 'https://ror.org/004p7xa79 Cowal Community Hospital'),
(37166, 'https://ror.org/01bd9d715', 'en', 1, 'https://ror.org/01bd9d715 Kamuli Mission Hospital'),
(37167, 'https://ror.org/01zq8yd65', 'en', 1, 'https://ror.org/01zq8yd65 ProMedica Fostoria Community Hospital'),
(37168, 'https://ror.org/04dr0x243', 'en', 1, 'https://ror.org/04dr0x243 Arroyo Grande Community Hospital'),
(37169, 'https://ror.org/03tmst390', 'en', 1, 'https://ror.org/03tmst390 Frank R. Howard Memorial Hospital'),
(37170, 'https://ror.org/032az3k06', 'en', 1, 'https://ror.org/032az3k06 Ashland Community Hospital'),
(37171, 'https://ror.org/03xx2xa59', 'en', 1, 'https://ror.org/03xx2xa59 Desert Springs Hospital'),
(37172, 'https://ror.org/012k58098', 'en', 1, 'https://ror.org/012k58098 Mercy Defiance Hospital'),
(37173, 'https://ror.org/02bme6n25', 'en', 1, 'https://ror.org/02bme6n25 Association of Independent Colleges and Universities in Massachusetts'),
(37174, 'https://ror.org/01bre2z07', 'en', 1, 'https://ror.org/01bre2z07 Fremont Memorial Hospital'),
(37175, 'https://ror.org/05hrhxs64', 'en', 1, 'https://ror.org/05hrhxs64 Amita Health St. Mary''s Hospital'),
(37176, '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'),
(37177, 'https://ror.org/0594wgp58', 'en', 1, 'https://ror.org/0594wgp58 Mercy Tiffin Hospital'),
(37178, 'https://ror.org/05qhetb06', 'en', 1, 'https://ror.org/05qhetb06 Atascadero State Hospital'),
(37179, 'https://ror.org/04qa0nf30', 'en', 1, 'https://ror.org/04qa0nf30 Desert Valley Hospital'),
(37180, 'https://ror.org/00b26s419', 'en', 1, 'https://ror.org/00b26s419 Providence Milwaukie Hospital'),
(37181, 'https://ror.org/03th00v97', 'en', 1, 'https://ror.org/03th00v97 Atlantic General Hospital'),
(37182, 'https://ror.org/010t80406', 'en', 1, 'https://ror.org/010t80406 Duplin General Hospital'),
(37183, 'https://ror.org/02921wt38', 'en', 1, 'https://ror.org/02921wt38 Grace Cottage Hospital'),
(37184, 'https://ror.org/02gb6yk96', 'en', 1, 'https://ror.org/02gb6yk96 Gracie Square Hospital'),
(37185, 'https://ror.org/01t63bj13', 'en', 1, 'https://ror.org/01t63bj13 Mercy Willard Hospital'),
(37186, 'https://ror.org/05v744n89', 'en', 1, 'https://ror.org/05v744n89 Grande Ronde Hospital'),
(37187, 'https://ror.org/00x2q5f89', 'en', 1, 'https://ror.org/00x2q5f89 Randall Children''s Hospital at Legacy Emanuel'),
(37188, 'https://ror.org/00na98362', 'en', 1, 'https://ror.org/00na98362 Bakersfield Heart Hospital'),
(37189, 'https://ror.org/01r5p9y80', 'en', 1, 'https://ror.org/01r5p9y80 Methodist Hospital'),
(37190, 'https://ror.org/03tkbnt96', 'en', 1, 'https://ror.org/03tkbnt96 Barlow Respiratory Hospital'),
(37191, 'https://ror.org/03xy1px17', 'en', 1, 'https://ror.org/03xy1px17 Greater Cincinnati Consortium of Colleges and Universities'),
(37192, 'https://ror.org/056pzh665', 'en', 1, 'https://ror.org/056pzh665 Raulerson Hospital'),
(37193, 'https://ror.org/02dw30c90', 'en', 1, 'https://ror.org/02dw30c90 Barstow Community Hospital'),
(37194, 'https://ror.org/00eswsq11', 'en', 1, 'https://ror.org/00eswsq11 Rawson-Neal Hospital'),
(37195, 'https://ror.org/05515v279', 'en', 1, 'https://ror.org/05515v279 Metro Health Hospital'),
(37196, 'https://ror.org/03nask903', 'en', 1, 'https://ror.org/03nask903 Bay Park Community Hospital'),
(37197, 'https://ror.org/02agrc313', 'en', 1, 'https://ror.org/02agrc313 Rebecca Sealy Hospital'),
(37198, 'https://ror.org/00749c973', 'en', 1, 'https://ror.org/00749c973 Eastern Shore Hospital Center'),
(37199, 'https://ror.org/01k08w337', 'en', 1, 'https://ror.org/01k08w337 El Camino Hospital'),
(37200, 'https://ror.org/02bt3yy91', 'en', 1, 'https://ror.org/02bt3yy91 Miami Valley Hospital South'),
(37201, 'https://ror.org/04sjxr917', 'en', 1, 'https://ror.org/04sjxr917 Rideout Memorial Hospital'),
(37202, 'https://ror.org/003mb7998', 'en', 1, 'https://ror.org/003mb7998 Eleanor Slater Hospital'),
(37203, 'https://ror.org/04fcfgh72', 'en', 1, 'https://ror.org/04fcfgh72 Bayshore Community Hospital'),
(37204, 'https://ror.org/0523wf777', 'en', 1, 'https://ror.org/0523wf777 Ridgecrest Regional Hospital'),
(37205, 'https://ror.org/008zn4267', 'en', 1, 'https://ror.org/008zn4267 Mid Coast Hospital'),
(37206, 'https://ror.org/042ze4p12', 'en', 1, 'https://ror.org/042ze4p12 Ben Taub Hospital'),
(37207, 'https://ror.org/051pm1k39', 'en', 1, 'https://ror.org/051pm1k39 Encino Hospital Medical Center'),
(37208, 'https://ror.org/05d6xwf62', 'en', 1, 'https://ror.org/05d6xwf62 Rocky Vista University'),
(37209, 'https://ror.org/038z2kp14', 'en', 1, 'https://ror.org/038z2kp14 Blue Mountain Hospital'),
(37210, 'https://ror.org/033v3bb42', 'en', 1, 'https://ror.org/033v3bb42 Blythedale Children''s Hospital'),
(37211, 'https://ror.org/01znj1w09', 'en', 1, 'https://ror.org/01znj1w09 Saint Thomas - Rutherford Hospital'),
(37212, 'https://ror.org/05by7rp83', 'en', 1, 'https://ror.org/05by7rp83 Helen Newberry Joy Hospital'),
(37213, 'https://ror.org/0130rew69', 'en', 1, 'https://ror.org/0130rew69 Bon Secours Hospital'),
(37214, 'https://ror.org/017cmyy42', 'en', 1, 'https://ror.org/017cmyy42 Falmouth Hospital'),
(37215, 'https://ror.org/051cacg72', 'en', 1, 'https://ror.org/051cacg72 Samaritan Albany General Hospital'),
(37216, 'https://ror.org/05qkeds59', 'en', 1, 'https://ror.org/05qkeds59 Milford Hospital'),
(37217, 'https://ror.org/048snr569', 'en', 1, 'https://ror.org/048snr569 Boulder City Hospital'),
(37218, 'https://ror.org/01jydv679', 'en', 1, 'https://ror.org/01jydv679 Fawcett Memorial Hospital'),
(37219, 'https://ror.org/04n4kxk55', 'en', 1, 'https://ror.org/04n4kxk55 Hickman Community Hospital'),
(37220, 'https://ror.org/00cdxfz76', 'en', 1, 'https://ror.org/00cdxfz76 Brattleboro Memorial Hospital'),
(37221, 'https://ror.org/05ne0nx52', 'en', 1, 'https://ror.org/05ne0nx52 Feather River Hospital'),
(37222, 'https://ror.org/04yc38g92', 'en', 1, 'https://ror.org/04yc38g92 Samaritan Lebanon Community Hospital'),
(37223, 'https://ror.org/03de1e587', 'en', 1, 'https://ror.org/03de1e587 Holland Hospital'),
(37224, 'https://ror.org/03wrd3648', 'en', 1, 'https://ror.org/03wrd3648 Montclair Hospital Medical Center'),
(37225, 'https://ror.org/00gpwad22', 'en', 1, 'https://ror.org/00gpwad22 Samaritan North Lincoln Hospital'),
(37226, 'https://ror.org/01dvk8489', 'en', 1, 'https://ror.org/01dvk8489 Finley Hospital'),
(37227, 'https://ror.org/05mgsm482', 'en', 1, 'https://ror.org/05mgsm482 Howard County General Hospital'),
(37228, 'https://ror.org/02g4abr06', 'en', 1, 'https://ror.org/02g4abr06 Broughton Hospital'),
(37229, 'https://ror.org/05v00rs76', 'en', 1, 'https://ror.org/05v00rs76 Flagler Hospital'),
(37230, 'https://ror.org/05pwyzq32', 'en', 1, 'https://ror.org/05pwyzq32 Samaritan Pacific Communities Hospital'),
(37231, 'https://ror.org/02dwtw793', 'en', 1, 'https://ror.org/02dwtw793 Bryce Hospital'),
(37232, 'https://ror.org/014x3kb31', 'en', 1, 'https://ror.org/014x3kb31 Huntsville Hospital'),
(37233, 'https://ror.org/05vn58r96', 'en', 1, 'https://ror.org/05vn58r96 San Antonio Regional Hospital'),
(37234, 'https://ror.org/014x4zd69', 'en', 1, 'https://ror.org/014x4zd69 LewisGale Hospital Montgomery'),
(37235, 'https://ror.org/030sy9j53', 'en', 1, 'https://ror.org/030sy9j53 St. Luke''s Hospital'),
(37236, 'https://ror.org/019yny421', 'en', 1, 'https://ror.org/019yny421 Santa Paula Hospital'),
(37237, 'https://ror.org/01v4x4669', 'en', 1, 'https://ror.org/01v4x4669 AdventHealth East Orlando'),
(37238, 'https://ror.org/017x9j395', 'en', 1, 'https://ror.org/017x9j395 Indiana Orthopaedic Hospital'),
(37239, 'https://ror.org/0597nct77', 'en', 1, 'https://ror.org/0597nct77 Morton Hospital'),
(37240, 'https://ror.org/05a60y787', 'en', 1, 'https://ror.org/05a60y787 Intercultural Open University Foundation'),
(37241, 'https://ror.org/04sqfs158', 'en', 1, 'https://ror.org/04sqfs158 St. Rose Dominican Hospital'),
(37242, 'https://ror.org/05r3pfn29', 'en', 1, 'https://ror.org/05r3pfn29 Morton Plant North Bay Hospital'),
(37243, 'https://ror.org/04r6zx259', 'en', 1, 'https://ror.org/04r6zx259 AdventHealth Sebring'),
(37244, 'https://ror.org/039v2y730', 'en', 1, 'https://ror.org/039v2y730 Summa St. Thomas Hospital'),
(37245, 'https://ror.org/01h2p4517', 'en', 1, 'https://ror.org/01h2p4517 Mt. Washington Pediatric Hospital'),
(37246, 'https://ror.org/00bm58p15', 'en', 1, 'https://ror.org/00bm58p15 Santa Ynez Valley Cottage Hospital'),
(37247, 'https://ror.org/04n5ych62', 'en', 1, 'https://ror.org/04n5ych62 AdventHealth Lake Placid'),
(37248, 'https://ror.org/03rk9kh93', 'en', 1, 'https://ror.org/03rk9kh93 Summerlin Hospital Medical Center'),
(37249, 'https://ror.org/05wer6w03', 'en', 1, 'https://ror.org/05wer6w03 Sunrise Hospital & Medical Center'),
(37250, 'https://ror.org/00gwqq432', 'en', 1, 'https://ror.org/00gwqq432 Sherman Oaks Hospital'),
(37251, 'https://ror.org/05ec81r30', 'en', 1, 'https://ror.org/05ec81r30 Napa State Hospital'),
(37252, 'https://ror.org/050n8x383', 'en', 1, 'https://ror.org/050n8x383 The Bristol-Myers Squibb Children''s Hospital'),
(37253, 'https://ror.org/05c1z0f40', 'en', 1, 'https://ror.org/05c1z0f40 National Association of Independent Colleges and Universities'),
(37254, 'https://ror.org/03yvwxc80', 'en', 1, 'https://ror.org/03yvwxc80 Sierra View Medical Center'),
(37255, 'https://ror.org/017j15308', 'en', 1, 'https://ror.org/017j15308 University Press of Florida'),
(37256, 'https://ror.org/03edgm225', 'en', 1, 'https://ror.org/03edgm225 Nebraska Orthopaedic Hospital'),
(37257, 'https://ror.org/03kwc4219', 'en', 1, 'https://ror.org/03kwc4219 Jersey Community Hospital'),
(37258, 'https://ror.org/00v19am98', 'en', 1, 'https://ror.org/00v19am98 Hospital del estado de Utah Utah State Hospital'),
(37259, 'https://ror.org/01ahbf530', 'en', 1, 'https://ror.org/01ahbf530 Silverton Hospital'),
(37260, 'https://ror.org/02fxjt553', 'en', 1, 'https://ror.org/02fxjt553 John Sealy Hospital'),
(37261, 'https://ror.org/01kakjy62', 'en', 1, 'https://ror.org/01kakjy62 Newport Hospital'),
(37262, 'https://ror.org/014eq5c38', 'en', 1, 'https://ror.org/014eq5c38 Adventist Health Simi Valley'),
(37263, 'https://ror.org/05m6a9a03', 'en', 1, 'https://ror.org/05m6a9a03 The Outer Banks Hospital'),
(37264, 'https://ror.org/04x1zna55', 'en', 1, 'https://ror.org/04x1zna55 Valley Regional Hospital'),
(37265, 'https://ror.org/04p3ja862', 'en', 1, 'https://ror.org/04p3ja862 Skagit Valley Hospital'),
(37266, 'https://ror.org/04e7dhd60', 'en', 1, 'https://ror.org/04e7dhd60 Vermont State Hospital'),
(37267, 'https://ror.org/035rm0c83', 'en', 1, 'https://ror.org/035rm0c83 Norman Regional Hospital'),
(37268, 'https://ror.org/048xmz857', 'en', 1, 'https://ror.org/048xmz857 Kankakee State Hospital'),
(37269, 'https://ror.org/023pf5e38', 'en', 1, 'https://ror.org/023pf5e38 Somerville Hospital'),
(37270, 'https://ror.org/02dc6j928', 'en', 1, 'https://ror.org/02dc6j928 Torrance State Hospital'),
(37271, 'https://ror.org/02xbqbw69', 'en', 1, 'https://ror.org/02xbqbw69 Via Christi Hospital'),
(37272, 'https://ror.org/01hwe9w34', 'en', 1, 'https://ror.org/01hwe9w34 Sonoma Valley Hospital'),
(37273, 'https://ror.org/0517ce304', 'en', 1, 'https://ror.org/0517ce304 Kingston University'),
(37274, 'https://ror.org/02zkwve04', 'en', 1, 'https://ror.org/02zkwve04 Norristown State Hospital'),
(37275, 'https://ror.org/032bzhf86', 'en', 1, 'https://ror.org/032bzhf86 Vision International University'),
(37276, 'https://ror.org/00yntsj40', 'en', 1, 'https://ror.org/00yntsj40 South County Hospital'),
(37277, 'https://ror.org/03fytj861', 'en', 1, 'https://ror.org/03fytj861 La Palma Intercommunity Hospital'),
(37278, 'https://ror.org/00e2n6h96', 'en', 1, 'https://ror.org/00e2n6h96 Walla Walla General Hospital'),
(37279, 'https://ror.org/03b5xce19', 'en', 1, 'https://ror.org/03b5xce19 South Seminole Hospital'),
(37280, 'https://ror.org/045s3s145', 'en', 1, 'https://ror.org/045s3s145 Lake District Hospital'),
(37281, 'https://ror.org/004wdwb09', 'en', 1, 'https://ror.org/004wdwb09 WellStar Douglas Hospital'),
(37282, 'https://ror.org/03atmxx79', 'en', 1, 'https://ror.org/03atmxx79 Westerly Hospital'),
(37283, 'https://ror.org/00e9nf534', 'en', 1, 'https://ror.org/00e9nf534 Lake Taylor Transitional Care Hospital'),
(37284, 'https://ror.org/04q162150', 'en', 1, 'https://ror.org/04q162150 Trinity Hospital of Augusta'),
(37285, 'https://ror.org/03bh3se42', 'en', 1, 'https://ror.org/03bh3se42 Spring Valley Hospital'),
(37286, 'https://ror.org/0464f7620', 'en', 1, 'https://ror.org/0464f7620 Whidden Memorial Hospital'),
(37287, 'https://ror.org/00nwwb878', 'en', 1, 'https://ror.org/00nwwb878 Littleton Adventist Hospital'),
(37288, 'https://ror.org/01zndg142', 'en', 1, 'https://ror.org/01zndg142 Northeastern Vermont Regional Hospital'),
(37289, 'https://ror.org/02tzs1080', 'en', 1, 'https://ror.org/02tzs1080 St. Anne Mercy Hospital'),
(37290, 'https://ror.org/01f3dz928', 'en', 1, 'https://ror.org/01f3dz928 Logan Regional Hospital'),
(37291, 'https://ror.org/030jh8c52', 'en', 1, 'https://ror.org/030jh8c52 Tuality Forest Grove Hospital'),
(37292, 'https://ror.org/01yemzx31', 'en', 1, 'https://ror.org/01yemzx31 St. Anthony Hospital'),
(37293, 'https://ror.org/0082w0p19', 'en', 1, 'https://ror.org/0082w0p19 Northridge Hospital Medical Center'),
(37294, 'https://ror.org/047ge9e14', 'en', 1, 'https://ror.org/047ge9e14 Longmont United Hospital'),
(37295, 'https://ror.org/03dsp8w17', 'en', 1, 'https://ror.org/03dsp8w17 Union General Hospital'),
(37296, 'https://ror.org/04dhkam06', 'en', 1, 'https://ror.org/04dhkam06 Los Robles Hospital & Medical Center'),
(37297, 'https://ror.org/035yrx309', 'en', 1, 'https://ror.org/035yrx309 Norwood Hospital'),
(37298, 'https://ror.org/00jkecz03', 'en', 1, 'https://ror.org/00jkecz03 Willingway Hospital'),
(37299, 'https://ror.org/0530erx71', 'en', 1, 'https://ror.org/0530erx71 Weiss Memorial Hospital'),
(37300, 'https://ror.org/04bst6v91', 'en', 1, 'https://ror.org/04bst6v91 Winnie Palmer Hospital for Women & Babies'),
(37301, 'https://ror.org/01cbjg783', 'en', 1, 'https://ror.org/01cbjg783 Mercy St. Charles Hospital'),
(37302, 'https://ror.org/05y4f4n31', 'en', 1, 'https://ror.org/05y4f4n31 Wisconsin Association of Independent Colleges and Universities'),
(37303, 'https://ror.org/01yj0ps95', 'en', 1, 'https://ror.org/01yj0ps95 Novant Health Charlotte Orthopedic Hospital'),
(37304, 'https://ror.org/040x31d97', 'en', 1, 'https://ror.org/040x31d97 Worcester Recovery Center and Hospital'),
(37305, 'https://ror.org/040tgwz33', 'en', 1, 'https://ror.org/040tgwz33 Lourdes Hospital'),
(37306, 'https://ror.org/04gzs4s06', 'es', 1, 'https://ror.org/04gzs4s06 Hospital BritƔnico'),
(37307, 'https://ror.org/01v9cv612', 'en', 1, 'https://ror.org/01v9cv612 O’Connor Hospital'),
(37308, 'https://ror.org/02091ng19', 'en', 1, 'https://ror.org/02091ng19 Lowell General Hospital'),
(37309, 'https://ror.org/02fbyyv82', 'es', 1, 'https://ror.org/02fbyyv82 Hospital Vilardebó'),
(37310, 'https://ror.org/024sym234', 'en', 1, 'https://ror.org/024sym234 St. Cloud Hospital'),
(37311, 'https://ror.org/021f59e59', 'en', 1, 'https://ror.org/021f59e59 Manchester Memorial Hospital'),
(37312, 'https://ror.org/05jrtrp47', 'en', 1, 'https://ror.org/05jrtrp47 Maple Grove Hospital'),
(37313, 'https://ror.org/02j40nc84', 'en', 1, 'https://ror.org/02j40nc84 Olean General Hospital'),
(37314, 'https://ror.org/0018abm07', 'en', 1, 'https://ror.org/0018abm07 PSB College Vietnam'),
(37315, 'https://ror.org/05wqyfz02', 'en', 1, 'https://ror.org/05wqyfz02 Marina Del Rey Hospital'),
(37316, 'https://ror.org/051pcb820', 'en', 1, 'https://ror.org/051pcb820 University of the Nations'),
(37317, 'https://ror.org/023afa504', 'en', 1, 'https://ror.org/023afa504 Oregon State Hospital'),
(37318, 'https://ror.org/03jm3ya95', 'en', 1, 'https://ror.org/03jm3ya95 Oroville Hospital'),
(37319, 'https://ror.org/02z9c4y45', 'en', 1, 'https://ror.org/02z9c4y45 Osawatomie State Hospital'),
(37320, 'https://ror.org/03q6hax08', 'en', 1, 'https://ror.org/03q6hax08 St. Helena Hospital'),
(37321, 'https://ror.org/032g22j83', 'en', 1, 'https://ror.org/032g22j83 Oswego Community Hospital'),
(37322, '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'),
(37323, 'https://ror.org/00gxg1c10', 'en', 1, 'https://ror.org/00gxg1c10 St. Helena Hospital'),
(37324, 'https://ror.org/037asfq15', 'en', 1, 'https://ror.org/037asfq15 Thai Nguyen National General Hospital'),
(37325, 'https://ror.org/01stsya15', 'en', 1, 'https://ror.org/01stsya15 St. John''s Hospital'),
(37326, 'https://ror.org/01aj5dy09', 'en', 1, 'https://ror.org/01aj5dy09 Marquette General Hospital'),
(37327, 'https://ror.org/049ymah45', 'en', 1, 'https://ror.org/049ymah45 Bệnh viện Việt Đức Viet Duc Hospital'),
(37328, 'https://ror.org/04py84927', 'en', 1, 'https://ror.org/04py84927 Our Lady of Bellefonte Hospital'),
(37329, 'https://ror.org/02bfb2d67', 'en', 1, 'https://ror.org/02bfb2d67 Martha''s Vineyard Hospital'),
(37330, 'https://ror.org/000nw5c60', 'en', 1, 'https://ror.org/000nw5c60 St. John''s Pleasant Valley Hospital'),
(37331, 'https://ror.org/0253es752', 'en', 1, 'https://ror.org/0253es752 Martin Luther King, Jr. Community Hospital'),
(37332, 'https://ror.org/02etfr602', 'en', 1, 'https://ror.org/02etfr602 Our Lady of Fatima Hospital'),
(37333, 'https://ror.org/05bfknj54', 'en', 1, 'https://ror.org/05bfknj54 St. Joseph Hospital'),
(37334, 'https://ror.org/046s0tg81', 'en', 1, 'https://ror.org/046s0tg81 Massac Memorial Hospital'),
(37335, 'https://ror.org/00d415h66', 'en', 1, 'https://ror.org/00d415h66 Palm Springs General Hospital');
INSERT INTO `rors` VALUES
(37336, 'https://ror.org/031mmkk34', 'en', 1, 'https://ror.org/031mmkk34 Palms of Pasadena Hospital'),
(37337, 'https://ror.org/056mrrf04', 'en', 1, 'https://ror.org/056mrrf04 St. Luke''s Hospital'),
(37338, 'https://ror.org/054ykyc47', 'en', 1, 'https://ror.org/054ykyc47 Palo Verde Hospital'),
(37339, 'https://ror.org/0436hk567', 'no_lang_code', 1, 'https://ror.org/0436hk567 Karanda Mission Hospital'),
(37340, 'https://ror.org/01nkx9v56', 'en', 1, 'https://ror.org/01nkx9v56 Mease Countryside Hospital'),
(37341, 'https://ror.org/010bpy365', 'no_lang_code', 1, 'https://ror.org/010bpy365 Kwekwe General Hospital'),
(37342, 'https://ror.org/00np0kv70', 'en', 1, 'https://ror.org/00np0kv70 Mease Dunedin Hospital'),
(37343, 'https://ror.org/0188h2v81', 'en', 1, 'https://ror.org/0188h2v81 Patton State Hospital'),
(37344, 'https://ror.org/04esh0d76', 'en', 1, 'https://ror.org/04esh0d76 Melrose-Wakefield Hospital'),
(37345, 'https://ror.org/028203t96', 'en', 1, 'https://ror.org/028203t96 Peace Harbor Hospital'),
(37346, 'https://ror.org/01q2gyr74', 'no_lang_code', 1, 'https://ror.org/01q2gyr74 Mbuma Mission Hospital'),
(37347, 'https://ror.org/00yfewz72', 'en', 1, 'https://ror.org/00yfewz72 Piedmont Henry Hospital'),
(37348, 'https://ror.org/05gftk240', 'no_lang_code', 1, 'https://ror.org/05gftk240 Murambinda Mission Hospital'),
(37349, 'https://ror.org/0141vbw04', 'en', 1, 'https://ror.org/0141vbw04 Piedmont Newnan Hospital'),
(37350, 'https://ror.org/005x7q366', 'en', 1, 'https://ror.org/005x7q366 PIH Health Hospital'),
(37351, 'https://ror.org/03armkb15', 'en', 1, 'https://ror.org/03armkb15 Pomerado Hospital'),
(37352, 'https://ror.org/02pepyh86', 'en', 1, 'https://ror.org/02pepyh86 Preston University'),
(37353, 'https://ror.org/05eagfs92', 'en', 1, 'https://ror.org/05eagfs92 Slovak Environmental Agency'),
(37354, 'https://ror.org/025z8hh73', 'tr', 1, 'https://ror.org/025z8hh73 Suluova Devlet Hastanesi'),
(37355, 'https://ror.org/02ggsxt79', 'en', 1, 'https://ror.org/02ggsxt79 Beijing Health Vocational College'),
(37356, 'https://ror.org/00jp1zb22', 'en', 1, 'https://ror.org/00jp1zb22 Defence Metallurgical Research Laboratory'),
(37357, 'https://ror.org/02rf6w514', 'da', 1, 'https://ror.org/02rf6w514 Hou Maritime IdrƦtsefterskole'),
(37358, 'https://ror.org/04adqmv58', 'cs', 1, 'https://ror.org/04adqmv58 Centrum kardiovaskulĆ”rnĆ­ a transplantačnĆ­ chirurgie'),
(37359, 'https://ror.org/05r7nbf33', 'en', 1, 'https://ror.org/05r7nbf33 Skyline University College'),
(37360, 'https://ror.org/00tmaba41', 'en', 1, 'https://ror.org/00tmaba41 Montana Department of Corrections'),
(37361, 'https://ror.org/01sdfmp14', 'en', 1, 'https://ror.org/01sdfmp14 Berlin Partner for Business and Technology'),
(37362, 'https://ror.org/05vgg2c14', 'en', 1, 'https://ror.org/05vgg2c14 West Middlesex University Hospital'),
(37363, 'https://ror.org/0036ate90', 'en', 1, 'https://ror.org/0036ate90 Nuffield Orthopaedic Centre'),
(37364, 'https://ror.org/0170m4k80', 'en', 1, 'https://ror.org/0170m4k80 Los Angeles Pierce College'),
(37365, 'https://ror.org/03pmg8447', 'en', 1, 'https://ror.org/03pmg8447 Los Angeles City College'),
(37366, 'https://ror.org/0272wvz49', 'en', 1, 'https://ror.org/0272wvz49 Los Angeles Trade Technical College Universidad Comunitaria Vocacional–TĆ©cnica de Los Ɓngeles'),
(37367, 'https://ror.org/022dft797', 'en', 1, 'https://ror.org/022dft797 Los Angeles Valley College'),
(37368, 'https://ror.org/01kdxra28', 'en', 1, 'https://ror.org/01kdxra28 Academy of Sciences and Literature Akademie der Wissenschaften und der Literatur Mainz'),
(37369, 'https://ror.org/02h988s91', 'de', 1, 'https://ror.org/02h988s91 Ingenieure für das Bauwesen'),
(37370, 'https://ror.org/052z6qn75', 'no_lang_code', 1, 'https://ror.org/052z6qn75 FMP Technology (Germany)'),
(37371, 'https://ror.org/0094sxw24', 'no_lang_code', 1, 'https://ror.org/0094sxw24 InnoCentive (United States)'),
(37372, 'https://ror.org/05ssg5j36', 'de', 1, 'https://ror.org/05ssg5j36 Albertus-Magnus-Institut'),
(37373, 'https://ror.org/03zmadd59', 'en', 1, 'https://ror.org/03zmadd59 American Federation for Medical Research'),
(37374, 'https://ror.org/05cqqj259', 'en', 1, 'https://ror.org/05cqqj259 American Society of Transplantation'),
(37375, 'https://ror.org/01sd0e661', 'no_lang_code', 1, 'https://ror.org/01sd0e661 AMO (Germany)'),
(37376, 'https://ror.org/02bsh9z73', 'en', 1, 'https://ror.org/02bsh9z73 Curt Engelhorn Centre Archaeometry Curt-Engelhorn-Zentrum ArchƤometrie'),
(37377, 'https://ror.org/05gxyna29', 'en', 1, 'https://ror.org/05gxyna29 Frankfurt School of Finance & Management Hochschule für Bankwirtschaft'),
(37378, 'https://ror.org/001tbyf75', 'en', 1, 'https://ror.org/001tbyf75 Duchess Anna Amalia Library Herzogin Anna Amalia Bibliothek'),
(37379, 'https://ror.org/0306a8d50', 'en', 1, 'https://ror.org/0306a8d50 Annenberg Center for Health Sciences at Eisenhower'),
(37380, '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'),
(37381, 'https://ror.org/02fqn3k51', 'en', 1, 'https://ror.org/02fqn3k51 Academy of Arts Die Akademie der Künste'),
(37382, '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'),
(37383, 'https://ror.org/05bxvzw76', 'en', 1, 'https://ror.org/05bxvzw76 Association of Organ Procurement Organizations'),
(37384, 'https://ror.org/0554mjv55', 'de', 1, 'https://ror.org/0554mjv55 Institut für EnergieTransformation'),
(37385, 'https://ror.org/0344nnn17', 'no_lang_code', 1, 'https://ror.org/0344nnn17 Total (Germany)'),
(37386, 'https://ror.org/00n3mcd10', 'de', 1, 'https://ror.org/00n3mcd10 Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen'),
(37387, 'https://ror.org/03wrq5388', 'de', 1, 'https://ror.org/03wrq5388 Institut für Grenzgebiete der Psychologie und Psychohygiene'),
(37388, 'https://ror.org/052gzq419', 'de', 1, 'https://ror.org/052gzq419 Hochschule für Jüdische Studien'),
(37389, 'https://ror.org/0266m8d62', 'de', 1, 'https://ror.org/0266m8d62 Frankfurter Goethe Haus – Freies Deutsches Hochstift'),
(37390, 'https://ror.org/000evwg49', 'en', 1, 'https://ror.org/000evwg49 Hochschule für Musik Franz Liszt Weimar University of Music FRANZ LISZT Weimar'),
(37391, 'https://ror.org/05256tw11', 'en', 1, 'https://ror.org/05256tw11 Cologne University of Music Hochschule für Musik und Tanz Köln'),
(37392, 'https://ror.org/05tvfb833', 'en', 1, 'https://ror.org/05tvfb833 Institut für Luft- und Kältetechnik Institute of Air Handling and Refrigeration'),
(37393, 'https://ror.org/01r70sq06', 'en', 1, 'https://ror.org/01r70sq06 Deutsches Forschungsinstitut für öffentliche Verwaltung German Research Institute for Public Administration'),
(37394, 'https://ror.org/055q5tj54', 'no_lang_code', 1, 'https://ror.org/055q5tj54 BioCer Entwicklungs (Germany)'),
(37395, 'https://ror.org/00bpta863', 'de', 1, 'https://ror.org/00bpta863 Leibniz-Zentrum für Literatur- und Kulturforschung'),
(37396, 'https://ror.org/023vb4t46', 'de', 1, 'https://ror.org/023vb4t46 Institut für Sächsische Geschichte und Volkskunde'),
(37397, 'https://ror.org/01yvp8p19', 'en', 1, 'https://ror.org/01yvp8p19 General Numerics Research Lab'),
(37398, 'https://ror.org/002c7zk35', 'en', 1, 'https://ror.org/002c7zk35 Eglin Air Force Base'),
(37399, 'https://ror.org/01p03pa87', 'de', 1, 'https://ror.org/01p03pa87 Brandenburgisches Landesamt für Denkmalpflege und Archäologisches Landesmuseum'),
(37400, 'https://ror.org/03fvtr511', 'en', 1, 'https://ror.org/03fvtr511 Hanscom Air Force Base'),
(37401, 'https://ror.org/03b9q7371', 'en', 1, 'https://ror.org/03b9q7371 Hochschule Neubrandenburg Neubrandenburg University of Applied Sciences'),
(37402, 'https://ror.org/058yg6182', 'en', 1, 'https://ror.org/058yg6182 Brandenburg Main State Archive Brandenburgisches Landeshauptarchiv'),
(37403, 'https://ror.org/02jxznk77', 'en', 1, 'https://ror.org/02jxznk77 Joint Base San Antonio'),
(37404, 'https://ror.org/02jy2nq64', 'en', 1, 'https://ror.org/02jy2nq64 Deutsches Institut für Kautschuktechnologie German Institute of Rubber Technology'),
(37405, 'https://ror.org/05x75gh12', 'en', 1, 'https://ror.org/05x75gh12 Deutsches Literaturarchiv German Literature Archive'),
(37406, 'https://ror.org/03bc1mz40', 'en', 1, 'https://ror.org/03bc1mz40 Ibero-American Institute Ibero-Amerikanisches Institut Instituto Ibero-Americano Patrimonio Cultural Prusiano'),
(37407, 'https://ror.org/00nx39s55', 'en', 1, 'https://ror.org/00nx39s55 Georg Kolbe Museum'),
(37408, 'https://ror.org/014zbcz37', 'en', 1, 'https://ror.org/014zbcz37 Korea Centre for Atmospheric Environment Research'),
(37409, 'https://ror.org/0593dvd47', 'en', 1, 'https://ror.org/0593dvd47 Deutsches Orient-Institut German Orient Foundation'),
(37410, 'https://ror.org/023mvn081', 'en', 1, 'https://ror.org/023mvn081 Mevlana University Hospital'),
(37411, 'https://ror.org/02wbjm117', 'en', 1, 'https://ror.org/02wbjm117 Bundesarchiv German Federal Archives'),
(37412, 'https://ror.org/05ejb6h88', 'en', 1, 'https://ror.org/05ejb6h88 Bundeskanzleramt German Federal Chancellery'),
(37413, 'https://ror.org/04kd0pe74', 'no_lang_code', 1, 'https://ror.org/04kd0pe74 CD-adapco (Germany)'),
(37414, 'https://ror.org/02fv99722', 'de', 1, 'https://ror.org/02fv99722 Germanisches Nationalmuseum'),
(37415, 'https://ror.org/05k5t2r42', 'de', 1, 'https://ror.org/05k5t2r42 Katholisches Klinikum Bochum'),
(37416, 'https://ror.org/04maxh374', 'en', 1, 'https://ror.org/04maxh374 Documenta Archive'),
(37417, 'https://ror.org/05evypg37', 'de', 1, 'https://ror.org/05evypg37 Integrierte Forschungs- und Behandlungszentren'),
(37418, 'https://ror.org/052tt7c68', 'de', 1, 'https://ror.org/052tt7c68 Carl Gustav Carus-Institut'),
(37419, 'https://ror.org/00b6j6x40', 'en', 1, 'https://ror.org/00b6j6x40 International Psychoanalytic University Berlin'),
(37420, 'https://ror.org/00egat183', 'de', 1, 'https://ror.org/00egat183 Gesellschaft zur Fƶrderung der Naturwissenschaftlich-Technischen Forschung'),
(37421, 'https://ror.org/03hxbk195', 'de', 1, 'https://ror.org/03hxbk195 Kliniken der Stadt Kƶln'),
(37422, 'https://ror.org/051nfce45', 'de', 1, 'https://ror.org/051nfce45 Endokrinologikum'),
(37423, 'https://ror.org/03v958f45', 'de', 1, 'https://ror.org/03v958f45 Kliniken Essen-Mitte'),
(37424, 'https://ror.org/03bbqn881', 'de', 1, 'https://ror.org/03bbqn881 Gottfried Wilhelm Leibniz Bibliothek'),
(37425, 'https://ror.org/05kcrhm92', 'no_lang_code', 1, 'https://ror.org/05kcrhm92 Climate Risk Analysis (Germany)'),
(37426, 'https://ror.org/01tzaf675', 'de', 1, 'https://ror.org/01tzaf675 Joseph Haydn-Institut'),
(37427, 'https://ror.org/004hd5y14', 'en', 1, 'https://ror.org/004hd5y14 Leibniz Institute for Plasma Science and Technology Leibniz-Institut für Plasmaforschung und Technologie'),
(37428, 'https://ror.org/01kp9rn35', 'en', 1, 'https://ror.org/01kp9rn35 Jewish Museum Berlin Jüdisches Museum Berlin'),
(37429, 'https://ror.org/00nrggp23', 'de', 1, 'https://ror.org/00nrggp23 Klinikum Vest'),
(37430, 'https://ror.org/02dv3wb67', 'de', 1, 'https://ror.org/02dv3wb67 Kommission für Geschichte des Parlamentarismus und der politischen Parteien'),
(37431, 'https://ror.org/05cm0ff89', 'la', 1, 'https://ror.org/05cm0ff89 Monumenta Germaniae Historica'),
(37432, 'https://ror.org/02cdemf49', 'en', 1, 'https://ror.org/02cdemf49 European Liaison Office of the German Research Organisations Kooperationsstelle EU der Wissenschaftsorganisationen'),
(37433, 'https://ror.org/005c74108', 'de', 1, 'https://ror.org/005c74108 Polymet Jena'),
(37434, 'https://ror.org/00s21wr35', 'no_lang_code', 1, 'https://ror.org/00s21wr35 Polymer Standards Service (Germany)'),
(37435, 'https://ror.org/059ed8079', 'en', 1, 'https://ror.org/059ed8079 Alliance for European Diabetes Research'),
(37436, 'https://ror.org/01qgsj208', 'de', 1, 'https://ror.org/01qgsj208 Münchner Stadtbibliothek'),
(37437, 'https://ror.org/04cwrrv92', 'de', 1, 'https://ror.org/04cwrrv92 Praxis für Humangenetik'),
(37438, 'https://ror.org/04gtryb63', 'no_lang_code', 1, 'https://ror.org/04gtryb63 Life Science Center Düsseldorf (Germany)'),
(37439, 'https://ror.org/00b0t5r83', 'de', 1, 'https://ror.org/00b0t5r83 Kunst- und Museumsbibliothek der Stadt Kƶln'),
(37440, 'https://ror.org/02b8bdw43', 'de', 1, 'https://ror.org/02b8bdw43 Praxisklinik für Orthopädie, Unfall- und Neurochirurgie'),
(37441, 'https://ror.org/01d5ccc15', 'de', 1, 'https://ror.org/01d5ccc15 Literaturarchiv'),
(37442, 'https://ror.org/02kv9xm28', 'de', 1, 'https://ror.org/02kv9xm28 Archaeological Heritage Office in Saxony Landesamt für Archäologie Sachsen'),
(37443, 'https://ror.org/02k9k5a61', 'de', 1, 'https://ror.org/02k9k5a61 Landesamt für Denkmalpflege Hessen'),
(37444, 'https://ror.org/01ybxp914', 'de', 1, 'https://ror.org/01ybxp914 Landesamt für Denkmalpflege und Archäologie Sachsen-Anhalt'),
(37445, 'https://ror.org/050phcn63', 'de', 1, 'https://ror.org/050phcn63 LVR-Klinik Kƶln'),
(37446, 'https://ror.org/028j9tc52', 'de', 1, 'https://ror.org/028j9tc52 Niedersächsisches Institut für frühkindliche Bildung und Entwicklung'),
(37447, 'https://ror.org/05dtq3097', 'no_lang_code', 1, 'https://ror.org/05dtq3097 Senseonics (United States)'),
(37448, 'https://ror.org/00yv11a49', 'de', 1, 'https://ror.org/00yv11a49 Niedersächsisches Landesamt für Denkmalpflege'),
(37449, 'https://ror.org/00sj27p43', 'de', 1, 'https://ror.org/00sj27p43 Landesarchiv Nordrhein-Westfalen'),
(37450, 'https://ror.org/04g138p23', 'de', 1, 'https://ror.org/04g138p23 NiedersƤchsisches Landesarchiv'),
(37451, 'https://ror.org/01599c412', 'en', 1, 'https://ror.org/01599c412 Lower Saxony State Museum NiedersƤchsisches Landesmuseum Hannover'),
(37452, 'https://ror.org/00xv9sn23', 'de', 1, 'https://ror.org/00xv9sn23 Martin-Luther-Krankenhaus'),
(37453, 'https://ror.org/03mznce35', 'de', 1, 'https://ror.org/03mznce35 RegierungsprƤsidium Stuttgart'),
(37454, 'https://ror.org/014wzed86', 'no_lang_code', 1, 'https://ror.org/014wzed86 Smiths Group (United Kingdom)'),
(37455, 'https://ror.org/00a7y2r22', 'en', 1, 'https://ror.org/00a7y2r22 Reiss Engelhorn Museum Reiss-Engelhorn-Museen'),
(37456, 'https://ror.org/03x74qd84', 'de', 1, 'https://ror.org/03x74qd84 Landesarchiv Sachsen-Anhalt'),
(37457, 'https://ror.org/05tg3h152', 'no_lang_code', 1, 'https://ror.org/05tg3h152 Research Management Systems (United States)'),
(37458, 'https://ror.org/01t4pzq33', 'de', 1, 'https://ror.org/01t4pzq33 Max Bergmann Zentrum für Biomaterialien'),
(37459, 'https://ror.org/04wtxqn67', 'en', 1, 'https://ror.org/04wtxqn67 Dresden State Art Collections Staatliche Kunstsammlungen Dresden'),
(37460, 'https://ror.org/040yf2s15', 'de', 1, 'https://ror.org/040yf2s15 Landesmuseum Württemberg'),
(37461, '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'),
(37462, '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'),
(37463, 'https://ror.org/0426ffx42', 'en', 1, 'https://ror.org/0426ffx42 Pacific Research Institute'),
(37464, 'https://ror.org/04j6cwd10', 'no_lang_code', 1, 'https://ror.org/04j6cwd10 RLP AgroScience (Germany)'),
(37465, 'https://ror.org/02rtsfd15', 'en', 1, 'https://ror.org/02rtsfd15 PƤdagogische Hochschule Freiburg University of Education Freiburg'),
(37466, 'https://ror.org/052q5nf15', 'en', 1, 'https://ror.org/052q5nf15 Five Continents Museum Staatliches Museum für Völkerkunde'),
(37467, 'https://ror.org/04e1yzk82', 'en', 1, 'https://ror.org/04e1yzk82 Robert Schumann Hochschule Robert Schumann University of Music and Media'),
(37468, 'https://ror.org/000rdbk18', 'en', 1, 'https://ror.org/000rdbk18 Max Planck Institute for Empirical Aesthetics Max-Planck-Institut für Empirische Ƅsthetik'),
(37469, 'https://ror.org/02mavc002', 'en', 1, 'https://ror.org/02mavc002 Max Planck Institute for Social Anthropology Max-Planck-Institut für Ethnologische Forschung'),
(37470, 'https://ror.org/023pfp970', 'de', 1, 'https://ror.org/023pfp970 Staatsarchiv Bremen'),
(37471, 'https://ror.org/05hq62676', 'en', 1, 'https://ror.org/05hq62676 Bamberg State Library Staatsbibliothek Bamberg'),
(37472, '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'),
(37473, 'https://ror.org/037p86664', 'en', 1, 'https://ror.org/037p86664 Leibniz Institute for Crystal Growth Leibniz-Institut für Kristallzüchtung'),
(37474, 'https://ror.org/043bgwc02', 'de', 1, 'https://ror.org/043bgwc02 Stiftung Schleswig-Holsteinische Landesmuseen'),
(37475, 'https://ror.org/02wt6e634', 'en', 1, 'https://ror.org/02wt6e634 Leibniz Institute for Regional Geography Leibniz-Institut für Länderkunde'),
(37476, 'https://ror.org/02c46jq57', 'en', 1, 'https://ror.org/02c46jq57 StƤdel Museum StƤdelsches Kunstinstitut und StƤdtische Galerie'),
(37477, 'https://ror.org/040djv263', 'en', 1, 'https://ror.org/040djv263 Max Planck Institute for Molecular Biomedicine Max-Planck-Institut für Molekulare Biomedizin'),
(37478, 'https://ror.org/04vx4mk32', 'en', 1, 'https://ror.org/04vx4mk32 Leibniz Institute of Surface Engineering Leibniz-Institut für Oberflächenmodifizierung'),
(37479, 'https://ror.org/036d7m178', 'de', 1, 'https://ror.org/036d7m178 Klinikum Bielefeld'),
(37480, 'https://ror.org/01jdjjh55', 'de', 1, 'https://ror.org/01jdjjh55 SƤchsisches Staatsarchiv'),
(37481, 'https://ror.org/000nwzp56', 'de', 1, 'https://ror.org/000nwzp56 Stadtarchiv Erfurt'),
(37482, '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'),
(37483, 'https://ror.org/00y18kr09', 'de', 1, 'https://ror.org/00y18kr09 Stadtarchiv Gifhorn'),
(37484, 'https://ror.org/016jvas21', 'en', 1, 'https://ror.org/016jvas21 T1D Exchange'),
(37485, 'https://ror.org/00201ef63', 'de', 1, 'https://ror.org/00201ef63 Stadtarchiv Grevesmühlen'),
(37486, 'https://ror.org/045gv5c80', 'de', 1, 'https://ror.org/045gv5c80 Stadtarchiv Ibbenbüren'),
(37487, 'https://ror.org/01sx9kd33', 'de', 1, 'https://ror.org/01sx9kd33 Stadtarchiv Mainz'),
(37488, 'https://ror.org/02mxhgm70', 'de', 1, 'https://ror.org/02mxhgm70 Stadtarchiv Worms'),
(37489, 'https://ror.org/04s8e0q95', 'de', 1, 'https://ror.org/04s8e0q95 Stadtbibliothek Nürnberg'),
(37490, 'https://ror.org/04fe46645', 'en', 1, 'https://ror.org/04fe46645 University Hospital in Halle UniversitƤtsklinikum Halle'),
(37491, 'https://ror.org/03bpan768', 'de', 1, 'https://ror.org/03bpan768 Thüringisches Hauptstaatsarchiv Weimar'),
(37492, 'https://ror.org/03efsge90', 'en', 1, 'https://ror.org/03efsge90 Steinbeis University Berlin Steinbeis-Hochschule Berlin'),
(37493, 'https://ror.org/05dvpaj72', 'en', 1, 'https://ror.org/05dvpaj72 The Rogosin Institute'),
(37494, 'https://ror.org/034hztf92', 'de', 1, 'https://ror.org/034hztf92 Hanseatic Wirtschaftsarchiv Stiftung Hanseatisches Wirtschaftsarchiv'),
(37495, 'https://ror.org/04e7zd380', 'en', 1, 'https://ror.org/04e7zd380 Berlin Central and Regional Library Zentral- und Landesbibliothek Berlin'),
(37496, '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'),
(37497, 'https://ror.org/05sqrfr79', 'en', 1, 'https://ror.org/05sqrfr79 Central Institute for Art History Zentralinstitut für Kunstgeschichte'),
(37498, 'https://ror.org/048vdhs48', 'de', 1, 'https://ror.org/048vdhs48 Common Library Network Verbundzentrale des GBV'),
(37499, 'https://ror.org/003xfve38', 'tr', 1, 'https://ror.org/003xfve38 Ankara Mevki Asker Hastanesi'),
(37500, 'https://ror.org/03p5ygk36', 'en', 1, 'https://ror.org/03p5ygk36 Lishui Maternity and Child Health Care Hospital'),
(37501, 'https://ror.org/029d98p07', 'en', 1, 'https://ror.org/029d98p07 Southampton Children''s Hospital'),
(37502, 'https://ror.org/048ym4d69', 'it', 1, 'https://ror.org/048ym4d69 Azienda USL di Pescara'),
(37503, 'https://ror.org/03d8y7214', 'en', 1, 'https://ror.org/03d8y7214 Yunnan Forestry Vocational and Technical College'),
(37504, 'https://ror.org/05d8s8843', 'no_lang_code', 1, 'https://ror.org/05d8s8843 Bruker (Canada)'),
(37505, 'https://ror.org/02cghc635', 'no_lang_code', 1, 'https://ror.org/02cghc635 Buchang Pharma (China)'),
(37506, 'https://ror.org/02zyv6x15', 'no_lang_code', 1, 'https://ror.org/02zyv6x15 Gibson Innovations (Belgium)'),
(37507, 'https://ror.org/04mc60a87', 'it', 1, 'https://ror.org/04mc60a87 Ospedale Buon Consiglio Fatebenefratelli'),
(37508, 'https://ror.org/017qjg066', 'en', 1, 'https://ror.org/017qjg066 Dahua Hospital'),
(37509, 'https://ror.org/02yjsqr32', 'de', 1, 'https://ror.org/02yjsqr32 Krankenhaus Oberndorf'),
(37510, 'https://ror.org/053ws4838', 'en', 1, 'https://ror.org/053ws4838 Airport Shunyi District Hospital'),
(37511, 'https://ror.org/04dm8yx03', 'en', 1, 'https://ror.org/04dm8yx03 North-West State Technical University'),
(37512, 'https://ror.org/021b6hf74', 'en', 1, 'https://ror.org/021b6hf74 Shanxi Taiyuan Jinkang Rheumatism Hospital'),
(37513, 'https://ror.org/01f6t6q54', 'no_lang_code', 1, 'https://ror.org/01f6t6q54 Emam Reza Hospital'),
(37514, 'https://ror.org/00dga6q15', 'en', 1, 'https://ror.org/00dga6q15 Dalian Jinzhou First People''s Hospital'),
(37515, 'https://ror.org/02jv8h741', 'ro', 1, 'https://ror.org/02jv8h741 Spitalul Clinic Dr. C. I. Parhon'),
(37516, 'https://ror.org/024vfsp92', 'en', 1, 'https://ror.org/024vfsp92 UPMC Presbyterian'),
(37517, 'https://ror.org/00726et14', 'en', 1, 'https://ror.org/00726et14 West China Second University Hospital of Sichuan University'),
(37518, 'https://ror.org/051jybk56', 'en', 1, 'https://ror.org/051jybk56 Henan Provincial Eye Hospital ę²³å—ēœēœ¼ē§‘ē ”ē©¶ę‰€'),
(37519, 'https://ror.org/03hb33c79', 'en', 1, 'https://ror.org/03hb33c79 Gansu Provincial Cancer Hospital Gansu Provincial Academic Instiute for Medical Research ē”˜č‚ƒēœåŒ»å­¦ē§‘å­¦ē ”ē©¶é™¢'),
(37520, 'https://ror.org/03f2jcq85', 'tr', 1, 'https://ror.org/03f2jcq85 Diyarbakır Gazi Yaşargil Eğitim ve Araştırma Hastanesi'),
(37521, 'https://ror.org/016k98t76', 'en', 1, 'https://ror.org/016k98t76 Nanjing Traditional Chinese Medicine Hospital'),
(37522, 'https://ror.org/01hv74g78', 'en', 1, 'https://ror.org/01hv74g78 Scripps Green Hospital'),
(37523, 'https://ror.org/032qsa580', 'en', 1, 'https://ror.org/032qsa580 Nishikawa Hospital'),
(37524, 'https://ror.org/04d25v571', 'no_lang_code', 1, 'https://ror.org/04d25v571 Cosmo Bio (Japan)'),
(37525, 'https://ror.org/0217s3a79', 'fr', 1, 'https://ror.org/0217s3a79 Centre Hospitalier Universitaire Yalgado OuƩdraogo'),
(37526, 'https://ror.org/02w7pyj82', 'en', 1, 'https://ror.org/02w7pyj82 Priory Hospital Altrincham'),
(37527, 'https://ror.org/04m5dzp25', 'no_lang_code', 1, 'https://ror.org/04m5dzp25 Oida Hospital'),
(37528, 'https://ror.org/01rgpbf42', 'no_lang_code', 1, 'https://ror.org/01rgpbf42 Tianjin Hi-Tech Superconducting Electronic Technology (China)'),
(37529, 'https://ror.org/05vapw332', 'en', 1, 'https://ror.org/05vapw332 University clinical center of Republika Srpska'),
(37530, 'https://ror.org/05mfqj750', 'no_lang_code', 1, 'https://ror.org/05mfqj750 Weifang Chinese Medicine Hospital'),
(37531, 'https://ror.org/035wt7p80', 'en', 1, 'https://ror.org/035wt7p80 Shengli Oilfield Central Hospital'),
(37532, 'https://ror.org/0070zck46', 'no_lang_code', 1, 'https://ror.org/0070zck46 Aquatic Farms (United States)'),
(37533, 'https://ror.org/04fnhr972', 'en', 1, 'https://ror.org/04fnhr972 He Eye Hospital'),
(37534, 'https://ror.org/04ktat366', 'en', 1, 'https://ror.org/04ktat366 Helmholtz-Institut Münster Helmholtz-Institute Münster'),
(37535, 'https://ror.org/024thra40', 'en', 1, 'https://ror.org/024thra40 Helmholtz Institute Mainz Helmholtz-Institut Mainz'),
(37536, 'https://ror.org/042dsac10', 'en', 1, 'https://ror.org/042dsac10 Helmholtz Institute for Pharmaceutical Research Saarland Helmholtz-Institut für Pharmazeutische Forschung Saarland'),
(37537, 'https://ror.org/03cgmq069', 'no_lang_code', 1, 'https://ror.org/03cgmq069 DBV Technologies (France)'),
(37538, 'https://ror.org/04k6p0323', 'es', 1, 'https://ror.org/04k6p0323 Centro de Ciencias Penales y PolĆ­tica Criminal'),
(37539, 'https://ror.org/05s030550', 'no_lang_code', 1, 'https://ror.org/05s030550 Ablynx (Belgium)'),
(37540, 'https://ror.org/03327ex30', 'de', 1, 'https://ror.org/03327ex30 Bayerische Staatssammlung für Paläontologie und Geologie'),
(37541, 'https://ror.org/00y3by878', 'en', 1, 'https://ror.org/00y3by878 De Lin Institute of Technology å¾·éœ–ęŠ€č”“å­øé™¢'),
(37542, 'https://ror.org/016j6rk60', 'en', 1, 'https://ror.org/016j6rk60 Accra Technical University'),
(37543, 'https://ror.org/01teejf37', 'en', 1, 'https://ror.org/01teejf37 Defence Research and Development Laboratory ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(37544, 'https://ror.org/003f8ap84', 'en', 1, 'https://ror.org/003f8ap84 Cerro Coso Community College'),
(37545, 'https://ror.org/056cywe62', 'en', 1, 'https://ror.org/056cywe62 Defense Language Institute Foreign Language Center'),
(37546, 'https://ror.org/04bbesv37', 'en', 1, 'https://ror.org/04bbesv37 Adventist International Institute of Advanced Studies'),
(37547, 'https://ror.org/05enrfh93', 'en', 1, 'https://ror.org/05enrfh93 Chattahoochee Technical College'),
(37548, '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'),
(37549, 'https://ror.org/04d5rm267', 'en', 1, 'https://ror.org/04d5rm267 Chesapeake College'),
(37550, 'https://ror.org/02d0cnn24', 'en', 1, 'https://ror.org/02d0cnn24 Agriculture Fisheries and Conservation Department Agriculture, Fisheries and Conservation Department 漁農自然護理署'),
(37551, 'https://ror.org/04t999r74', 'en', 1, 'https://ror.org/04t999r74 Department of Corrections'),
(37552, 'https://ror.org/03ccc5z68', 'de', 1, 'https://ror.org/03ccc5z68 Evangelische Hochschule Ludwigsburg'),
(37553, 'https://ror.org/03rkmps36', 'en', 1, 'https://ror.org/03rkmps36 Berlin School of Economics and Law Hochschule für Wirtschaft und Recht'),
(37554, 'https://ror.org/00kmqf908', 'en', 1, 'https://ror.org/00kmqf908 Christ the King Seminary'),
(37555, 'https://ror.org/030jqbn26', 'en', 1, 'https://ror.org/030jqbn26 Department of Health č”žē”Ÿē½²'),
(37556, 'https://ror.org/01wzmsm36', 'en', 1, 'https://ror.org/01wzmsm36 Faulkner State Community College'),
(37557, 'https://ror.org/02twzqt54', 'en', 1, 'https://ror.org/02twzqt54 Fayetteville Technical Community College'),
(37558, 'https://ror.org/02sk5qk36', 'en', 1, 'https://ror.org/02sk5qk36 Alamance Community College'),
(37559, 'https://ror.org/0568w4770', 'en', 1, 'https://ror.org/0568w4770 Bible College of South Australia'),
(37560, 'https://ror.org/00ngt1q87', 'en', 1, 'https://ror.org/00ngt1q87 Biblical Theological Seminary'),
(37561, 'https://ror.org/0450swy91', 'en', 1, 'https://ror.org/0450swy91 All Hallows College'),
(37562, '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'),
(37563, 'https://ror.org/0157zmb13', 'en', 1, 'https://ror.org/0157zmb13 Citrus College'),
(37564, 'https://ror.org/03545fq57', 'en', 1, 'https://ror.org/03545fq57 Comisión Federal de Comunicaciones Federal Communications Commission'),
(37565, 'https://ror.org/02qqqms67', 'fr', 1, 'https://ror.org/02qqqms67 BibliothĆØque Nationale du Royaume du Maroc'),
(37566, 'https://ror.org/00k9r5g94', 'en', 1, 'https://ror.org/00k9r5g94 Technical College System of Georgia'),
(37567, 'https://ror.org/05mncca07', 'en', 1, 'https://ror.org/05mncca07 City and Islington College'),
(37568, 'https://ror.org/04cwzs398', 'en', 1, 'https://ror.org/04cwzs398 Alvin Community College'),
(37569, 'https://ror.org/05x3pnd66', 'en', 1, 'https://ror.org/05x3pnd66 City College Brighton & Hove City College Brighton and Hove'),
(37570, 'https://ror.org/04rb1tf06', 'en', 1, 'https://ror.org/04rb1tf06 City College Coventry'),
(37571, 'https://ror.org/01b1fn946', 'en', 1, 'https://ror.org/01b1fn946 American College, Madurai'),
(37572, 'https://ror.org/01rppxt60', 'en', 1, 'https://ror.org/01rppxt60 American Indian College'),
(37573, 'https://ror.org/05kwk4552', 'en', 1, 'https://ror.org/05kwk4552 American School of Classical Studies at Athens Αμερικανική Σχολή ĪšĪ»Ī±ĻƒĪ¹ĪŗĻŽĪ½ Ī£Ļ€ĪæĻ…Ī“ĻŽĪ½ ĻƒĻ„Ī·Ī½ Αθήνα'),
(37574, 'https://ror.org/039rg3x29', 'en', 1, 'https://ror.org/039rg3x29 City of Bristol College'),
(37575, 'https://ror.org/0403nm782', 'en', 1, 'https://ror.org/0403nm782 American School of Milan'),
(37576, 'https://ror.org/035xenz28', 'en', 1, 'https://ror.org/035xenz28 American School of Warsaw'),
(37577, 'https://ror.org/00qbv9d45', 'en', 1, 'https://ror.org/00qbv9d45 Andover Newton Theological School'),
(37578, 'https://ror.org/02axqg987', 'en', 1, 'https://ror.org/02axqg987 Angelina College'),
(37579, 'https://ror.org/02fad4q52', 'en', 1, 'https://ror.org/02fad4q52 Appalachian Bible College'),
(37580, 'https://ror.org/01jq15d50', 'en', 1, 'https://ror.org/01jq15d50 Clover Park Technical College'),
(37581, 'https://ror.org/007hw6r71', 'de', 1, 'https://ror.org/007hw6r71 Archäologisches Landesmuseum Baden-Württemberg'),
(37582, 'https://ror.org/04f330m50', 'en', 1, 'https://ror.org/04f330m50 Clovis Community College'),
(37583, 'https://ror.org/03h4tn103', 'en', 1, 'https://ror.org/03h4tn103 Arkansas Public Service Commission'),
(37584, 'https://ror.org/04wnz4487', 'en', 1, 'https://ror.org/04wnz4487 Texas Health Arlington Memorial'),
(37585, 'https://ror.org/04gzw7t05', 'en', 1, 'https://ror.org/04gzw7t05 Coahoma Community College'),
(37586, 'https://ror.org/018baft35', 'en', 1, 'https://ror.org/018baft35 Cochise College'),
(37587, 'https://ror.org/034pj3s87', 'en', 1, 'https://ror.org/034pj3s87 Kazakh-Russian International University'),
(37588, 'https://ror.org/05ahxa252', 'en', 1, 'https://ror.org/05ahxa252 ASA University Bangladesh আশা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ বাংলাদেশ'),
(37589, 'https://ror.org/026j3ke77', 'en', 1, 'https://ror.org/026j3ke77 Asbury Theological Seminary'),
(37590, 'https://ror.org/05hjjxp72', 'en', 1, 'https://ror.org/05hjjxp72 Asheville–Buncombe Technical Community College'),
(37591, 'https://ror.org/036bcm133', 'en', 1, 'https://ror.org/036bcm133 Asian Development Bank Bangko sa Pagpapaunlad ng Asya'),
(37592, 'https://ror.org/05yptg266', 'en', 1, 'https://ror.org/05yptg266 Asnuntuck Community College'),
(37593, 'https://ror.org/05xxpnn88', 'en', 1, 'https://ror.org/05xxpnn88 College of Biblical Studies'),
(37594, 'https://ror.org/05kx58550', 'en', 1, 'https://ror.org/05kx58550 College of Islamic and Arabic Studies ŁƒŁ„ŁŠŲ© الدراسات Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ŁˆŲ§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(37595, 'https://ror.org/04rqs6380', 'en', 1, 'https://ror.org/04rqs6380 College of Southern Idaho'),
(37596, 'https://ror.org/027697215', 'en', 1, 'https://ror.org/027697215 College of West Anglia'),
(37597, 'https://ror.org/05jfg8552', 'en', 1, 'https://ror.org/05jfg8552 Columbia Bible College'),
(37598, 'https://ror.org/05sy23e62', 'en', 1, 'https://ror.org/05sy23e62 Columbia Gorge Community College'),
(37599, 'https://ror.org/0368f8s77', 'en', 1, 'https://ror.org/0368f8s77 Atlanta Metropolitan College Atlanta Metropolitan State College'),
(37600, 'https://ror.org/01tphmj73', 'en', 1, 'https://ror.org/01tphmj73 Atlantic Cape Community College'),
(37601, 'https://ror.org/007xs6t35', 'en', 1, 'https://ror.org/007xs6t35 Community College of Aurora'),
(37602, 'https://ror.org/05n9fqb27', 'en', 1, 'https://ror.org/05n9fqb27 Community College of Denver'),
(37603, 'https://ror.org/03pf0yc39', 'en', 1, 'https://ror.org/03pf0yc39 Confederation College'),
(37604, 'https://ror.org/034r26m89', 'en', 1, 'https://ror.org/034r26m89 Contra Costa College'),
(37605, 'https://ror.org/04nkken68', 'de', 1, 'https://ror.org/04nkken68 Augustana-Hochschule Neuendettelsau'),
(37606, 'https://ror.org/005dgnw92', 'en', 1, 'https://ror.org/005dgnw92 Austin Presbyterian Theological Seminary'),
(37607, 'https://ror.org/01grd6v95', 'en', 1, 'https://ror.org/01grd6v95 Copper Mountain College'),
(37608, 'https://ror.org/020r4kx11', 'en', 1, 'https://ror.org/020r4kx11 Coquitlam College'),
(37609, 'https://ror.org/00q7xcw45', 'en', 1, 'https://ror.org/00q7xcw45 Australian Lutheran College'),
(37610, 'https://ror.org/023sbte93', 'en', 1, 'https://ror.org/023sbte93 Cosumnes River College'),
(37611, 'https://ror.org/04nxj7050', 'no_lang_code', 1, 'https://ror.org/04nxj7050 B. Braun (Germany)'),
(37612, 'https://ror.org/04xvv6376', 'en', 1, 'https://ror.org/04xvv6376 BA School of Business and Finance Banku Augstskola'),
(37613, 'https://ror.org/04s6nsa81', 'en', 1, 'https://ror.org/04s6nsa81 Covenant Theological Seminary'),
(37614, 'https://ror.org/01dv0vw10', 'en', 1, 'https://ror.org/01dv0vw10 Bahrain Polytechnic ŲØŁˆŁ„ŁŠŲŖŁƒŁ†Łƒ Ų§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(37615, 'https://ror.org/00sm4bp25', 'en', 1, 'https://ror.org/00sm4bp25 Crafton Hills College'),
(37616, 'https://ror.org/00yk34w18', 'en', 1, 'https://ror.org/00yk34w18 Bainbridge State College'),
(37617, 'https://ror.org/00wqdg589', 'en', 1, 'https://ror.org/00wqdg589 Criswell College'),
(37618, 'https://ror.org/01n09m616', 'en', 1, 'https://ror.org/01n09m616 Bangladesh Agricultural Research Institute বাংলাদেশ ą¦•ą§ƒą¦·ą¦æ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(37619, 'https://ror.org/01shra089', 'es', 1, 'https://ror.org/01shra089 Banco de la RepĆŗblica Colombia'),
(37620, 'https://ror.org/03n73vq73', 'en', 1, 'https://ror.org/03n73vq73 Fourth Paradigm Institute'),
(37621, 'https://ror.org/02s49nq19', 'en', 1, 'https://ror.org/02s49nq19 Banner Lassen Medical Center'),
(37622, 'https://ror.org/03dd4nz58', 'en', 1, 'https://ror.org/03dd4nz58 Baptist Bible College'),
(37623, 'https://ror.org/002273w22', 'en', 1, 'https://ror.org/002273w22 Baptist College of Health Sciences'),
(37624, 'https://ror.org/02an0gw26', 'en', 1, 'https://ror.org/02an0gw26 Cumberland County College'),
(37625, 'https://ror.org/05ht4fz15', 'en', 1, 'https://ror.org/05ht4fz15 Barton Community College'),
(37626, 'https://ror.org/05xjkag81', 'en', 1, 'https://ror.org/05xjkag81 Cyprus College'),
(37627, 'https://ror.org/04hcs1a71', 'en', 1, 'https://ror.org/04hcs1a71 Bay State College'),
(37628, 'https://ror.org/00pffbm70', 'en', 1, 'https://ror.org/00pffbm70 Daegu Health College ėŒ€źµ¬ė³“ź±“ėŒ€ķ•™źµ'),
(37629, 'https://ror.org/03051w252', 'de', 1, 'https://ror.org/03051w252 Bauernmuseum Bamberger Land'),
(37630, 'https://ror.org/046sh6j17', 'en', 1, 'https://ror.org/046sh6j17 Birla Institute of Technology and Science, Pilani - Goa Campus'),
(37631, 'https://ror.org/04szag615', 'en', 1, 'https://ror.org/04szag615 Dawson Community College'),
(37632, 'https://ror.org/02zvm4r30', 'en', 1, 'https://ror.org/02zvm4r30 Black Hawk College'),
(37633, 'https://ror.org/04qbta562', 'en', 1, 'https://ror.org/04qbta562 Department of Public'),
(37634, 'https://ror.org/02zbc1a16', 'en', 1, 'https://ror.org/02zbc1a16 Department of the Treasury'),
(37635, 'https://ror.org/02jnx6884', 'en', 1, 'https://ror.org/02jnx6884 Blackhawk Technical College'),
(37636, 'https://ror.org/049xxah85', 'en', 1, 'https://ror.org/049xxah85 Deutsche Gesellschaft für Auswärtige Politik German Council on Foreign Relations'),
(37637, 'https://ror.org/01abzeb36', 'en', 1, 'https://ror.org/01abzeb36 Bladen Community College'),
(37638, 'https://ror.org/02rw6sa19', 'en', 1, 'https://ror.org/02rw6sa19 Blue Ridge Community College'),
(37639, 'https://ror.org/034zes736', 'en', 1, 'https://ror.org/034zes736 Bluegrass Community and Technical College'),
(37640, 'https://ror.org/00we5be91', 'en', 1, 'https://ror.org/00we5be91 Deutsches Zentrum für Altersfragen German Centre of Gerontology'),
(37641, 'https://ror.org/00tavxp27', 'no_lang_code', 1, 'https://ror.org/00tavxp27 Syngenta (Belgium)'),
(37642, 'https://ror.org/006a04p80', 'en', 1, 'https://ror.org/006a04p80 Dodge City Community College'),
(37643, 'https://ror.org/038astr05', 'en', 1, 'https://ror.org/038astr05 Dominican House of Studies'),
(37644, 'https://ror.org/02zc5r772', 'en', 1, 'https://ror.org/02zc5r772 Box Hill Institute'),
(37645, 'https://ror.org/02jey0g96', 'en', 1, 'https://ror.org/02jey0g96 Bradford College, England'),
(37646, 'https://ror.org/01rkxa860', 'no_lang_code', 1, 'https://ror.org/01rkxa860 Dr. Reddy''s Laboratories (India) ą¤”ą„‰. ą¤°ą„‡ą¤”ą„ą¤”ą„€ą¤œ ą¤²ą„‡ą¤¬ą„‹ą¤°ą„‡ą¤Ÿą¤°ą„€ą¤œ டா. ą®°ąÆ†ą®ŸąÆą®ŸąÆ€ą®šąÆ ఔా. ą°°ą±†ą°”ą±ą°”ą±€ą°øą± ą°²ą±ą°Æą°¾ą°¬ą±ą°øą± ಔಾ. ą²°ą³†ą²”ą³ą²”ą³€''ą²øą³ ą²²ą³ą²Æą²¾ą²¬ą³‹ą²°ą³‡ą²Ÿą²°ą³€ą²øą³'),
(37647, 'https://ror.org/00gq58w69', 'en', 1, 'https://ror.org/00gq58w69 Brazilian Naval School Escola Naval'),
(37648, 'https://ror.org/051dggm19', 'en', 1, 'https://ror.org/051dggm19 Dublin Business School'),
(37649, 'https://ror.org/03qp5np35', 'en', 1, 'https://ror.org/03qp5np35 Bridgwater College'),
(37650, 'https://ror.org/0259gsa43', 'en', 1, 'https://ror.org/0259gsa43 Brigham Young University Hawaii Brigham Young University–Hawaii'),
(37651, 'https://ror.org/02c00pn47', 'en', 1, 'https://ror.org/02c00pn47 Durango Institute of Technology Instituto Tecnológico de Durango'),
(37652, 'https://ror.org/0435fd055', 'en', 1, 'https://ror.org/0435fd055 Britannia Royal Naval College'),
(37653, 'https://ror.org/013z3dx97', 'en', 1, 'https://ror.org/013z3dx97 Eastern Idaho Technical College'),
(37654, 'https://ror.org/01befse58', 'en', 1, 'https://ror.org/01befse58 Bryn Athyn College'),
(37655, 'https://ror.org/00f659030', 'en', 1, 'https://ror.org/00f659030 Bucks County Community College'),
(37656, 'https://ror.org/01sy5zn44', 'en', 1, 'https://ror.org/01sy5zn44 Bureau of Land Management'),
(37657, 'https://ror.org/03x0g5n48', 'en', 1, 'https://ror.org/03x0g5n48 Business School Lausanne'),
(37658, 'https://ror.org/02sh7hr68', 'en', 1, 'https://ror.org/02sh7hr68 Butler Community College'),
(37659, 'https://ror.org/004q90683', 'en', 1, 'https://ror.org/004q90683 Calvin Theological Seminary'),
(37660, 'https://ror.org/01pcm0w39', 'en', 1, 'https://ror.org/01pcm0w39 Canadian Forces College'),
(37661, 'https://ror.org/03e3wca31', 'en', 1, 'https://ror.org/03e3wca31 Canning College'),
(37662, 'https://ror.org/01kpwv903', 'no_lang_code', 1, 'https://ror.org/01kpwv903 Capital Fund Management (France)'),
(37663, 'https://ror.org/03mq2bd64', 'en', 1, 'https://ror.org/03mq2bd64 Carilion New River Valley Medical Center'),
(37664, 'https://ror.org/01wgg9r40', 'en', 1, 'https://ror.org/01wgg9r40 Carroll Community College'),
(37665, 'https://ror.org/01gsyn886', 'en', 1, 'https://ror.org/01gsyn886 Casper College'),
(37666, 'https://ror.org/030hd3e53', 'en', 1, 'https://ror.org/030hd3e53 Catawba Valley Community College'),
(37667, 'https://ror.org/02t5j7398', 'en', 1, 'https://ror.org/02t5j7398 Cedar Valley College'),
(37668, 'https://ror.org/04qwxfa96', 'en', 1, 'https://ror.org/04qwxfa96 Central Alabama Community College'),
(37669, 'https://ror.org/03c9ncn37', 'en', 1, 'https://ror.org/03c9ncn37 Wuhan National Laboratory for Optoelectronics'),
(37670, 'https://ror.org/02dyzf078', 'en', 1, 'https://ror.org/02dyzf078 Central Baptist College'),
(37671, 'https://ror.org/007x12q48', 'en', 1, 'https://ror.org/007x12q48 Central Carolina Community College'),
(37672, 'https://ror.org/01hh45364', 'en', 1, 'https://ror.org/01hh45364 Central Electronics Engineering Research Institute ą¤•ą„‡ą¤Øą„ ą¤¦ą„ą¤°ą„€ą¤Æ ą¤‡ą¤²ą„‡ą¤•ą„ ą¤Ÿą„ą¤°ą„‹ą¤Øą¤æą¤•ą„€ ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ ऄान (ą¤øą„€ą¤°ą„€)'),
(37673, 'https://ror.org/02zww6317', 'en', 1, 'https://ror.org/02zww6317 Central Institute of Indian Languages ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ भाषा ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ą¬­ą¬¾ą¬°ą¬¤ą­€ą­Ÿ ଭାଷା ą¬Ŗą­ą¬°ą¬¤ą¬æą¬·ą­ą¬ ą¬¾ą¬Ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆŠą®“ą®æą®•ą®³ą®æą®©ąÆ ą®Øą®ŸąÆą®µą®£ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(37674, 'https://ror.org/03jexcz37', 'en', 1, 'https://ror.org/03jexcz37 Central Institute of Technology'),
(37675, 'https://ror.org/04rx3a489', 'en', 1, 'https://ror.org/04rx3a489 Central Lakes College'),
(37676, 'https://ror.org/01e2adt21', 'en', 1, 'https://ror.org/01e2adt21 School of Business and Management'),
(37677, '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'),
(37678, 'https://ror.org/03d436n40', 'en', 1, 'https://ror.org/03d436n40 Florida Coastal School of Law'),
(37679, 'https://ror.org/02hfm7873', 'de', 1, 'https://ror.org/02hfm7873 Focke Museum'),
(37680, 'https://ror.org/04qyb2227', 'no_lang_code', 1, 'https://ror.org/04qyb2227 Foley Hoag (United States)'),
(37681, 'https://ror.org/05tn97j65', 'en', 1, 'https://ror.org/05tn97j65 Folsom Lake College'),
(37682, 'https://ror.org/03sygwm20', 'en', 1, 'https://ror.org/03sygwm20 Emilio Aguinaldo College Kolehiyong Emilio Aguinaldo'),
(37683, 'https://ror.org/05wweqh04', 'en', 1, 'https://ror.org/05wweqh04 Emirates College for Advanced Education'),
(37684, 'https://ror.org/01t8rk370', 'en', 1, 'https://ror.org/01t8rk370 AuswƤrtiges Amt Federal Foreign Office'),
(37685, 'https://ror.org/00het1s45', 'en', 1, 'https://ror.org/00het1s45 Forsyth Technical Community College'),
(37686, 'https://ror.org/03r400k37', 'en', 1, 'https://ror.org/03r400k37 Frank Phillips College'),
(37687, 'https://ror.org/03mned672', 'en', 1, 'https://ror.org/03mned672 Marienfelde Refugee Center Museum'),
(37688, 'https://ror.org/035f23321', 'de', 1, 'https://ror.org/035f23321 Frobenius Institute for Research in Cultural Anthropology Frobenius-Institut'),
(37689, 'https://ror.org/02f2p8175', 'en', 1, 'https://ror.org/02f2p8175 Front Range Community College'),
(37690, 'https://ror.org/00t8j2x68', 'en', 1, 'https://ror.org/00t8j2x68 Eston College'),
(37691, 'https://ror.org/01rwv5z20', 'en', 1, 'https://ror.org/01rwv5z20 Garda SƭochƔna College'),
(37692, 'https://ror.org/01hr9q823', 'en', 1, 'https://ror.org/01hr9q823 Gaston College'),
(37693, 'https://ror.org/037wp0751', 'en', 1, 'https://ror.org/037wp0751 Gratz College'),
(37694, 'https://ror.org/00x11zg33', 'en', 1, 'https://ror.org/00x11zg33 Gateway Community and Technical College'),
(37695, 'https://ror.org/05tn9zh92', 'en', 1, 'https://ror.org/05tn9zh92 Gavilan College'),
(37696, 'https://ror.org/038m8dc24', 'en', 1, 'https://ror.org/038m8dc24 Great Basin College'),
(37697, 'https://ror.org/02pvadn84', 'de', 1, 'https://ror.org/02pvadn84 Geisteswissenschaftliche Zentren Berlin'),
(37698, 'https://ror.org/02ntagd75', 'en', 1, 'https://ror.org/02ntagd75 Great Lakes Christian College'),
(37699, 'https://ror.org/036vdb341', 'en', 1, 'https://ror.org/036vdb341 Hopkinsville Community College'),
(37700, 'https://ror.org/04qqnyh49', 'de', 1, 'https://ror.org/04qqnyh49 Hessisches Landesmuseum Darmstadt'),
(37701, 'https://ror.org/017vpw228', 'en', 1, 'https://ror.org/017vpw228 Great Plains College'),
(37702, 'https://ror.org/01sjjfh02', 'en', 1, 'https://ror.org/01sjjfh02 Horizon College and Seminary'),
(37703, 'https://ror.org/02r3v8c94', 'en', 1, 'https://ror.org/02r3v8c94 Housatonic Community College'),
(37704, 'https://ror.org/051q8jk17', 'en', 1, 'https://ror.org/051q8jk17 Higher Technological Institute المعهد Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ Ų§Ł„Ų¹Ų§Ł„ŁŠ'),
(37705, 'https://ror.org/00qbe9m93', 'en', 1, 'https://ror.org/00qbe9m93 Howard College'),
(37706, 'https://ror.org/02mxywv89', 'en', 1, 'https://ror.org/02mxywv89 Highland Community College - Illinois'),
(37707, 'https://ror.org/045yjdg59', 'en', 1, 'https://ror.org/045yjdg59 Hill College'),
(37708, 'https://ror.org/045akps60', 'en', 1, 'https://ror.org/045akps60 Hudson County Community College'),
(37709, 'https://ror.org/0162adx59', 'en', 1, 'https://ror.org/0162adx59 Hull College'),
(37710, 'https://ror.org/03x72q350', 'en', 1, 'https://ror.org/03x72q350 Gwangju Health University ź“‘ģ£¼ė³“ź±“ėŒ€ķ•™źµ'),
(37711, 'https://ror.org/008t32k41', 'en', 1, 'https://ror.org/008t32k41 Hun School of Princeton'),
(37712, 'https://ror.org/045gdxt02', 'de', 1, 'https://ror.org/045gdxt02 Hochschule für bildende Künste University of Fine Arts in Hamburg'),
(37713, 'https://ror.org/03b9s4g93', 'en', 1, 'https://ror.org/03b9s4g93 Hutchinson Community College'),
(37714, 'https://ror.org/04wqsqf86', 'en', 1, 'https://ror.org/04wqsqf86 Dresden Academy of Fine Arts Hochschule für Bildende Künste Dresden'),
(37715, 'https://ror.org/04d5fry87', 'no_lang_code', 1, 'https://ror.org/04d5fry87 Hyejeon College ķ˜œģ „ėŒ€ķ•™źµ'),
(37716, 'https://ror.org/03ec28972', 'en', 1, 'https://ror.org/03ec28972 Hamburg Institute for Social Research Hamburger Institut für Sozialforschung'),
(37717, 'https://ror.org/03hzkp562', 'de', 1, 'https://ror.org/03hzkp562 Academy of Visual Arts Leipzig Hochschule für Grafik und Buchkunst Leipzig'),
(37718, 'https://ror.org/024pdem44', 'en', 1, 'https://ror.org/024pdem44 Hyogo University 兵庫大学'),
(37719, 'https://ror.org/028fzwe08', 'fr', 1, 'https://ror.org/028fzwe08 Laboratoire des ProcƩdƩs en Milieux Granulaires Granulaires'),
(37720, 'https://ror.org/00xnq7h44', 'de', 1, 'https://ror.org/00xnq7h44 Hochschule für Künste im Sozialen'),
(37721, 'https://ror.org/0520whs57', 'en', 1, 'https://ror.org/0520whs57 IBAT College'),
(37722, 'https://ror.org/03fgkm950', 'en', 1, 'https://ror.org/03fgkm950 Harcum College'),
(37723, 'https://ror.org/0332xca13', 'en', 1, 'https://ror.org/0332xca13 Ibn Sina National College for Medical Studies ŁƒŁ„ŁŠŲ© ابن Ų³ŁŠŁ†Ų§'),
(37724, 'https://ror.org/05y3c0716', 'en', 1, 'https://ror.org/05y3c0716 Harrogate and District NHS Foundation Trust'),
(37725, 'https://ror.org/01bqcs587', 'en', 1, 'https://ror.org/01bqcs587 Holy Apostles College and Seminary'),
(37726, 'https://ror.org/0185jey51', 'fr', 1, 'https://ror.org/0185jey51 French for School of High Studies in Engineering Hautes Ɖtudes d''IngĆ©nieur'),
(37727, 'https://ror.org/02qhzp658', 'en', 1, 'https://ror.org/02qhzp658 Hawaii Tokai International College'),
(37728, 'https://ror.org/02qsgha90', 'en', 1, 'https://ror.org/02qsgha90 General Theological Seminary'),
(37729, 'https://ror.org/03hjp7620', 'en', 1, 'https://ror.org/03hjp7620 Central Party School of the Communist Party of China äø­å…±äø­å¤®å…šę ”'),
(37730, 'https://ror.org/04h9z0906', 'en', 1, 'https://ror.org/04h9z0906 Central Piedmont Community College'),
(37731, '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'),
(37732, 'https://ror.org/039mdjd71', 'en', 1, 'https://ror.org/039mdjd71 Central Texas College'),
(37733, 'https://ror.org/027q1ta90', 'en', 1, 'https://ror.org/027q1ta90 Georgia Military College'),
(37734, 'https://ror.org/03asvq815', 'en', 1, 'https://ror.org/03asvq815 Central University of Kashmir ą¤•ą¤¶ą„ą¤®ą„€ą¤° ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(37735, 'https://ror.org/02hkfs074', 'en', 1, 'https://ror.org/02hkfs074 Helderberg College'),
(37736, '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'),
(37737, 'https://ror.org/05bsmsd63', 'en', 1, 'https://ror.org/05bsmsd63 Central Wyoming College'),
(37738, 'https://ror.org/03ty9wj75', 'de', 1, 'https://ror.org/03ty9wj75 Leibniz-Zentrum Moderner Orient'),
(37739, 'https://ror.org/00s13br28', 'en', 1, 'https://ror.org/00s13br28 Henan Normal University ę²³å—åøˆčŒƒå¤§å­¦'),
(37740, 'https://ror.org/05gjbhz21', 'en', 1, 'https://ror.org/05gjbhz21 Biblioteca del Condado de Hennepin Hennepin County Library'),
(37741, 'https://ror.org/05xng5k36', 'en', 1, 'https://ror.org/05xng5k36 Collège héritage Heritage College'),
(37742, 'https://ror.org/01mgdzc49', 'en', 1, 'https://ror.org/01mgdzc49 Centre for Quantum Technologies'),
(37743, 'https://ror.org/057gs9r51', 'en', 1, 'https://ror.org/057gs9r51 Glion Institute of Higher Education Institut de hautes Ʃtudes de glion'),
(37744, 'https://ror.org/03py58635', 'en', 1, 'https://ror.org/03py58635 Global Public Policy Institute'),
(37745, 'https://ror.org/02tvj3q58', 'fr', 1, 'https://ror.org/02tvj3q58 Centre National des Sciences et Technologies NuclƩaires'),
(37746, 'https://ror.org/009p5nb11', 'fr', 1, 'https://ror.org/009p5nb11 Centre de RƩfƩrence DƩficits Immunitaires HƩrƩditaires'),
(37747, 'https://ror.org/01y60ry16', 'en', 1, 'https://ror.org/01y60ry16 Gateway Seminary'),
(37748, 'https://ror.org/009bjed14', 'en', 1, 'https://ror.org/009bjed14 Goodwin College'),
(37749, 'https://ror.org/004gk0w56', 'en', 1, 'https://ror.org/004gk0w56 Gordon College Gordon State College'),
(37750, 'https://ror.org/039kas258', 'en', 1, 'https://ror.org/039kas258 Imperial Valley College'),
(37751, 'https://ror.org/014ycqe77', 'fr', 1, 'https://ror.org/014ycqe77 Institut d''Ɖconomie Publique'),
(37752, 'https://ror.org/02t36nw30', 'en', 1, 'https://ror.org/02t36nw30 Independence Community College'),
(37753, 'https://ror.org/0177s1090', 'es', 1, 'https://ror.org/0177s1090 Instituto Tecnológico de Nogales'),
(37754, 'https://ror.org/01hfvpj82', 'en', 1, 'https://ror.org/01hfvpj82 Indian Institute of Advanced Study इंऔियन ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ आफ ą¤ą¤”ą¤µą¤¾ą¤‚ą¤øą„ą¤” ą¤øą„ą¤Ÿą¤”ą„€'),
(37755, 'https://ror.org/00ca9p538', 'es', 1, 'https://ror.org/00ca9p538 Instituto Tecnológico de Querétaro Technological Institute of Querétaro'),
(37756, 'https://ror.org/00r80q412', 'en', 1, 'https://ror.org/00r80q412 Research Centre for Eastern and South Eastern Europe Wissenschaftszentrum Ost- und Südosteuropa Regensburg');
INSERT INTO `rors` VALUES
(37757, 'https://ror.org/04vbyvm90', 'es', 1, 'https://ror.org/04vbyvm90 Instituto Tecnológico de Saltillo Technological Institute of Saltillo'),
(37758, 'https://ror.org/02v3n9z83', 'en', 1, 'https://ror.org/02v3n9z83 ISG Institute for Social Research Institut für Sozialforschung und Gesellschaftspolitik'),
(37759, 'https://ror.org/024nzz449', 'de', 1, 'https://ror.org/024nzz449 Institut für Sozialforschung und Sozialwirtschaft'),
(37760, 'https://ror.org/006je8v76', 'fr', 1, 'https://ror.org/006je8v76 Institut de Biochimie et Biophysique MolƩculaire et Cellulaire'),
(37761, 'https://ror.org/00qryer39', 'en', 1, 'https://ror.org/00qryer39 International Institute of Information Technology ą¤…ą¤‚ą¤¤ą¤°ą„ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤­ą„ą¤µą¤Øą„‡ą¤¶ą„ą¤µą¤°'),
(37762, 'https://ror.org/027t6ka17', 'en', 1, 'https://ror.org/027t6ka17 Indian School of Business इंऔियन ą¤øą„ą¤•ą„‚ą¤² ऑफ ą¤¬ą¤æą¤œą¤Øą„‡ą¤ø ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°øą±ą°•ą±‚ą°²ą± ą°†ą°«ą± ą°¬ą°æą°œą°æą°Øą±†ą°øą± ą²‡ą²‚ą²”ą²æą²Æą²Øą³ ą²øą³ą²•ą³‚ą²²ą³ ą²†ą²«ą³ ą²¬ą²æą²øą²æą²Øą³†ą²øą³'),
(37763, 'https://ror.org/03tebpn36', 'en', 1, 'https://ror.org/03tebpn36 International Labour Organization Internationale Arbeitsorganisation Organisation internationale du travail Organizzazione internazionale del lavoro'),
(37764, 'https://ror.org/021bx9h20', 'en', 1, 'https://ror.org/021bx9h20 Inver Hills Community College'),
(37765, 'https://ror.org/03y150857', 'en', 1, 'https://ror.org/03y150857 Irvine Valley College'),
(37766, 'https://ror.org/022sv5w75', 'en', 1, 'https://ror.org/022sv5w75 Islamic Azad University of Ahar دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد اهر'),
(37767, 'https://ror.org/04q9bek18', 'en', 1, 'https://ror.org/04q9bek18 Isothermal Community College'),
(37768, 'https://ror.org/047pt5178', 'en', 1, 'https://ror.org/047pt5178 Institute of Problems of Mechanical Engineering Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ Российской акаГемии наук'),
(37769, 'https://ror.org/04ygnx468', 'en', 1, 'https://ror.org/04ygnx468 Johnston Community College'),
(37770, 'https://ror.org/04q3mp532', 'en', 1, 'https://ror.org/04q3mp532 Institute of Mathematics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики ŠŠŠ України Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики ŠŠŠ Украины'),
(37771, 'https://ror.org/04v8qfb10', 'en', 1, 'https://ror.org/04v8qfb10 Jakarta State Polytechnic Politeknik Negeri Jakarta PolitĆØknik Negri Jakarta'),
(37772, 'https://ror.org/04f0f7630', 'en', 1, 'https://ror.org/04f0f7630 Centro Conjunto de Advertencia de Tifones Joint Typhoon Warning Center'),
(37773, 'https://ror.org/03zrmej96', 'en', 1, 'https://ror.org/03zrmej96 Jefferson Community and Technical College'),
(37774, 'https://ror.org/05htdfq36', 'en', 1, 'https://ror.org/05htdfq36 Jefferson Davis Community College'),
(37775, 'https://ror.org/05gbyky62', 'en', 1, 'https://ror.org/05gbyky62 Institute of Radio-Engineering and Electronics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиотехники Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø им. Š’. А. ŠšŠ¾Ń‚ŠµŠ»ŃŒŠ½ŠøŠŗŠ¾Š²Š° Š ŠŠ'),
(37776, 'https://ror.org/02dm0bq25', 'fr', 1, 'https://ror.org/02dm0bq25 Institut de Transplantation Urologie en Nephrologie'),
(37777, 'https://ror.org/01rw40d12', 'en', 1, 'https://ror.org/01rw40d12 Jubail Industrial College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬ŲØŁŠŁ„ Ų§Ł„ŲµŁ†Ų§Ų¹ŁŠŲ©'),
(37778, 'https://ror.org/01v2fcr49', 'de', 1, 'https://ror.org/01v2fcr49 Jura-Museum EichstƤtt'),
(37779, 'https://ror.org/0514c4d93', 'en', 1, 'https://ror.org/0514c4d93 Kanagawa Dental University ē„žå„ˆå·ę­Æē§‘å¤§å­¦'),
(37780, 'https://ror.org/03nk70a85', 'en', 1, 'https://ror.org/03nk70a85 Kangan Institute'),
(37781, 'https://ror.org/02ckz2f26', 'en', 1, 'https://ror.org/02ckz2f26 Kansas City Kansas Community College'),
(37782, 'https://ror.org/0509e3289', 'en', 1, 'https://ror.org/0509e3289 Instituto Nacional de AntropologĆ­a e Historia National Institute of Anthropology and History'),
(37783, 'https://ror.org/01v6q6r30', 'en', 1, 'https://ror.org/01v6q6r30 Lackawanna College'),
(37784, 'https://ror.org/04r2bq949', 'no_lang_code', 1, 'https://ror.org/04r2bq949 Kaplan (United States) Kaplan international colleges'),
(37785, 'https://ror.org/04pkdxp64', 'en', 1, 'https://ror.org/04pkdxp64 Laidlaw College'),
(37786, 'https://ror.org/03d6j2008', 'en', 1, 'https://ror.org/03d6j2008 Lake Superior College'),
(37787, 'https://ror.org/01bnqts78', 'en', 1, 'https://ror.org/01bnqts78 Lake Washington Institute of Technology'),
(37788, 'https://ror.org/04dh6fw56', 'en', 1, 'https://ror.org/04dh6fw56 Instituto Tecnológico de Jiquilpan Technological Institute of Jiquilpan'),
(37789, 'https://ror.org/01af24v42', 'es', 1, 'https://ror.org/01af24v42 Instituto Tecnológico de Mérida'),
(37790, 'https://ror.org/02bd3qj97', 'en', 1, 'https://ror.org/02bd3qj97 Kensington College of Business'),
(37791, 'https://ror.org/05mpkhc90', 'de', 1, 'https://ror.org/05mpkhc90 LVR-Industriemuseum'),
(37792, 'https://ror.org/00akpdm49', 'de', 1, 'https://ror.org/00akpdm49 Ludwig Forum für Internationale Kunst'),
(37793, 'https://ror.org/01k6cft19', 'en', 1, 'https://ror.org/01k6cft19 Laney College'),
(37794, 'https://ror.org/02az15671', 'en', 1, 'https://ror.org/02az15671 Kilgore College'),
(37795, 'https://ror.org/00sd35b30', 'en', 1, 'https://ror.org/00sd35b30 Luzerne County Community College'),
(37796, 'https://ror.org/05ga7sz51', 'en', 1, 'https://ror.org/05ga7sz51 King''s Inns Ɠstaƭ an Rƭ'),
(37797, 'https://ror.org/05r7dwa03', 'en', 1, 'https://ror.org/05r7dwa03 Lanier Technical College'),
(37798, 'https://ror.org/005tsjq27', 'en', 1, 'https://ror.org/005tsjq27 Las Positas College'),
(37799, 'https://ror.org/04kvfjw03', 'en', 1, 'https://ror.org/04kvfjw03 Madras Institute of Development Studies ą®šąÆ†ą®©ąÆą®©ąÆˆ ą®µą®³ą®°ąÆą®šąÆą®šą®æ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(37800, 'https://ror.org/05jhctt84', 'en', 1, 'https://ror.org/05jhctt84 Malaysia Theological Seminary'),
(37801, 'https://ror.org/04rrkhs81', 'en', 1, 'https://ror.org/04rrkhs81 Manchester Academic Health Science Centre'),
(37802, 'https://ror.org/025fme611', 'en', 1, 'https://ror.org/025fme611 Lewisham College Lewisham Southwark College'),
(37803, 'https://ror.org/03at7j224', 'en', 1, 'https://ror.org/03at7j224 Manhattan Christian College'),
(37804, 'https://ror.org/051axz542', 'en', 1, 'https://ror.org/051axz542 Manor College'),
(37805, 'https://ror.org/0519cg026', 'en', 1, 'https://ror.org/0519cg026 Knox Theological Seminary'),
(37806, 'https://ror.org/03bqbw279', 'en', 1, 'https://ror.org/03bqbw279 Lexington Theological Seminary'),
(37807, 'https://ror.org/02ngzgx62', 'en', 1, 'https://ror.org/02ngzgx62 BibliothĆØque du Parlement Library of Parliament'),
(37808, 'https://ror.org/040rd2b57', 'no_lang_code', 1, 'https://ror.org/040rd2b57 MapĆŗa University Suriang MapĆŗa ng Teknolohiya'),
(37809, 'https://ror.org/05btn9560', 'en', 1, 'https://ror.org/05btn9560 Korean Intellectual Property Office ėŒ€ķ•œėÆ¼źµ­ ķŠ¹ķ—ˆģ²­'),
(37810, 'https://ror.org/04kthgc59', 'en', 1, 'https://ror.org/04kthgc59 Criminological Research Institute of Lower Saxony Kriminologisches Forschungsinstitut Niedersachsen'),
(37811, 'https://ror.org/008zh9d08', 'en', 1, 'https://ror.org/008zh9d08 Maria College'),
(37812, 'https://ror.org/01j1n1798', 'en', 1, 'https://ror.org/01j1n1798 London School of Business and Management'),
(37813, 'https://ror.org/044vzkq25', 'en', 1, 'https://ror.org/044vzkq25 Marion Military Institute'),
(37814, 'https://ror.org/02967z527', 'de', 1, 'https://ror.org/02967z527 Kunsthistorisches Institut in Florenz'),
(37815, 'https://ror.org/02qx7s056', 'en', 1, 'https://ror.org/02qx7s056 Marymount California University Marymount College, Palos Verdes'),
(37816, 'https://ror.org/0069hee22', 'en', 1, 'https://ror.org/0069hee22 Kuyper College'),
(37817, 'https://ror.org/011rcn817', 'en', 1, 'https://ror.org/011rcn817 Massasoit Community College'),
(37818, 'https://ror.org/028nyzb21', 'en', 1, 'https://ror.org/028nyzb21 Los Angeles Harbor College'),
(37819, 'https://ror.org/01stcbz02', 'en', 1, 'https://ror.org/01stcbz02 Los Angeles Mission College'),
(37820, 'https://ror.org/043z25g17', 'en', 1, 'https://ror.org/043z25g17 Louisiana State University of Alexandria UniversitĆ© d''Ɖtat de Louisiane Ć  Alexandria'),
(37821, 'https://ror.org/02rfxzc53', 'en', 1, 'https://ror.org/02rfxzc53 Louisville Presbyterian Theological Seminary'),
(37822, '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'),
(37823, 'https://ror.org/053yb3j55', 'en', 1, 'https://ror.org/053yb3j55 CollĆØge loyaliste Loyalist College'),
(37824, 'https://ror.org/033d6zz21', 'en', 1, 'https://ror.org/033d6zz21 McCormick Theological Seminary'),
(37825, 'https://ror.org/05nf32076', 'en', 1, 'https://ror.org/05nf32076 McLennan Community College'),
(37826, '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'),
(37827, 'https://ror.org/01ffjs081', 'fr', 1, 'https://ror.org/01ffjs081 Ecologie & Evolution'),
(37828, 'https://ror.org/02ch3jz57', 'en', 1, 'https://ror.org/02ch3jz57 Memphis Theological Seminary'),
(37829, 'https://ror.org/016b0by26', 'en', 1, 'https://ror.org/016b0by26 Monroe County Community College'),
(37830, 'https://ror.org/005yz5976', 'en', 1, 'https://ror.org/005yz5976 Merced College'),
(37831, 'https://ror.org/05nd97262', 'en', 1, 'https://ror.org/05nd97262 Mercer County Community College'),
(37832, 'https://ror.org/00hmhc458', 'en', 1, 'https://ror.org/00hmhc458 Montcalm Community College'),
(37833, 'https://ror.org/00ea8xx02', 'en', 1, 'https://ror.org/00ea8xx02 Merritt College'),
(37834, 'https://ror.org/02hc4dw24', 'en', 1, 'https://ror.org/02hc4dw24 Montgomery High School'),
(37835, 'https://ror.org/01s26xz84', 'en', 1, 'https://ror.org/01s26xz84 Mesabi Range College'),
(37836, 'https://ror.org/01zzpyg63', 'en', 1, 'https://ror.org/01zzpyg63 Moreno Valley College'),
(37837, 'https://ror.org/045155251', 'en', 1, 'https://ror.org/045155251 Morgan Community College'),
(37838, 'https://ror.org/022wwx668', 'en', 1, 'https://ror.org/022wwx668 Morristown Beard School Morristown-Beard School'),
(37839, 'https://ror.org/03jfd4440', 'en', 1, 'https://ror.org/03jfd4440 Instituto Tecnológico de Mexitali Mexicali Institute of Technology'),
(37840, 'https://ror.org/00fvxtb73', 'en', 1, 'https://ror.org/00fvxtb73 Abbaye de mount angel Mount Angel Abbey'),
(37841, 'https://ror.org/053s50k72', 'en', 1, 'https://ror.org/053s50k72 Mid-America Baptist Theological Seminary'),
(37842, 'https://ror.org/04fh8an03', 'en', 1, 'https://ror.org/04fh8an03 Mountain View College'),
(37843, 'https://ror.org/01vdt8f48', 'en', 1, 'https://ror.org/01vdt8f48 MRC Mitochondrial Biology Unit'),
(37844, 'https://ror.org/051zva233', 'en', 1, 'https://ror.org/051zva233 National Library Board ą®¤ąÆ‡ą®šą®æą®Æ நூலக ą®µą®¾ą®°ą®æą®Æą®®ąÆ 国家图书馆箔理局'),
(37845, 'https://ror.org/018hvk597', 'en', 1, 'https://ror.org/018hvk597 Mt. San Jacinto College'),
(37846, 'https://ror.org/01arkg777', 'en', 1, 'https://ror.org/01arkg777 Midland College'),
(37847, 'https://ror.org/035ccrh61', 'en', 1, 'https://ror.org/035ccrh61 Midwestern Baptist Theological Seminary'),
(37848, 'https://ror.org/04hdgmg32', 'en', 1, 'https://ror.org/04hdgmg32 BibliothĆØque nationale d''inde National Library of India ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æą¤ƒ ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æą¤ƒ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æ ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦—ą§ą¦°ą¦Øą§ą¦„ą¦¾ą¦—ą¦¾ą¦° ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆ‡ą®šą®æą®Æ ą®ØąÆ‚ą®²ą®•ą®®ąÆ భారత ą°œą°¾ą°¤ą±€ą°Æ ą°—ą±ą°°ą°‚ą°„ą°¾ą°²ą°Æą°‚ ą“­ą“¾ą“°ą“¤ąµ€ą“Æ ą“¦ąµ‡ą“¶ąµ€ą“Æ ą“—ąµą“°ą“Øąµą“„ą“¶ą“¾ą“²'),
(37849, 'https://ror.org/0186tjy74', 'en', 1, 'https://ror.org/0186tjy74 Muscatine Community College'),
(37850, 'https://ror.org/011sf9664', 'de', 1, 'https://ror.org/011sf9664 Museum am Schƶlerberg'),
(37851, 'https://ror.org/035fpgr29', 'en', 1, 'https://ror.org/035fpgr29 Mission College'),
(37852, 'https://ror.org/04jzz0b06', 'en', 1, 'https://ror.org/04jzz0b06 National Research Centre on Equines'),
(37853, 'https://ror.org/058mfk884', 'de', 1, 'https://ror.org/058mfk884 Museumsdorf Cloppenburg Museumsdorf Cloppenburg – NiedersƤchsisches Freilichtmuseum'),
(37854, 'https://ror.org/00maat333', 'fr', 1, 'https://ror.org/00maat333 Palais de la Decouverte'),
(37855, 'https://ror.org/025kpm509', 'de', 1, 'https://ror.org/025kpm509 Museum Foundation Lüneburg Museumsstiftung Lüneburg'),
(37856, 'https://ror.org/03v4rcp75', 'en', 1, 'https://ror.org/03v4rcp75 Area Territoriale di Ricerca del CNR di Bologna Bologna Research Area'),
(37857, 'https://ror.org/0144edt49', 'en', 1, 'https://ror.org/0144edt49 Muskegon Community College'),
(37858, 'https://ror.org/00ygy3d85', 'it', 1, 'https://ror.org/00ygy3d85 Institute for Applied Mathematics Mauro Picone Istituto per le Applicazioni del Calcolo Mauro Picone'),
(37859, 'https://ror.org/04d5j6d22', 'en', 1, 'https://ror.org/04d5j6d22 Moberly Area Community College'),
(37860, 'https://ror.org/05kcf4918', 'en', 1, 'https://ror.org/05kcf4918 Myerscough College'),
(37861, 'https://ror.org/00j4sax34', 'en', 1, 'https://ror.org/00j4sax34 Newcastle-under-Lyme College'),
(37862, 'https://ror.org/01r45ka37', 'en', 1, 'https://ror.org/01r45ka37 Nanjing Library å—äŗ¬å›¾ä¹¦é¦†'),
(37863, 'https://ror.org/03dsk4d59', 'no_lang_code', 1, 'https://ror.org/03dsk4d59 Springer Nature (United Kingdom)'),
(37864, 'https://ror.org/00042h977', 'en', 1, 'https://ror.org/00042h977 Napa Valley College'),
(37865, 'https://ror.org/02wbgn345', 'en', 1, 'https://ror.org/02wbgn345 Newman Theological College'),
(37866, 'https://ror.org/0306dg290', 'en', 1, 'https://ror.org/0306dg290 Nash Community College'),
(37867, 'https://ror.org/04yyprp21', 'en', 1, 'https://ror.org/04yyprp21 Nashua Community College'),
(37868, 'https://ror.org/02rx19412', 'en', 1, 'https://ror.org/02rx19412 National Academy of Agricultural Research Management'),
(37869, 'https://ror.org/02vj63597', 'en', 1, 'https://ror.org/02vj63597 Nicolet Area Technical College'),
(37870, 'https://ror.org/002kje223', 'no_lang_code', 1, 'https://ror.org/002kje223 iThemba Laboratory'),
(37871, 'https://ror.org/057wr4y62', 'en', 1, 'https://ror.org/057wr4y62 National Aerospace Laboratories ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æą¤µą„ˆą¤®ą¤¾ą¤Øą¤æą¤•ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾(NAL) ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤ą¤Æą¤°ą„‹ą¤øą„ą¤Ŗą„‡ą¤ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾ ą²Øą³ą²Æą²¾ą²·ą²Øą²²ą³ ą²ą²°ą³‹ą²øą³ą²Ŗą³‡ą²øą³ ą²²ą³ą²Æą²¾ą²¬ą³‹ą²°ą³‡ą²Ÿą²°ą²æ ą“Øą“¾ą“·ą“£ąµ½ ą“ą“±ąµ‹ą“øąµą“Ŗąµ‡ą“øąµ ą“²ą“¾ą“¬ą“±ą“Ÿąµą“Ÿą“±ąµ€ą“øąµ'),
(37872, 'https://ror.org/02t2raw56', 'en', 1, 'https://ror.org/02t2raw56 National Assembly Library ėŒ€ķ•œėÆ¼źµ­ źµ­ķšŒė„ģ„œź“€'),
(37873, 'https://ror.org/01hehsy63', 'en', 1, 'https://ror.org/01hehsy63 Naval War College'),
(37874, 'https://ror.org/014vxaz07', 'en', 1, 'https://ror.org/014vxaz07 Nazarene Theological College'),
(37875, 'https://ror.org/01h7y9k21', 'en', 1, 'https://ror.org/01h7y9k21 Nazareth Academy'),
(37876, 'https://ror.org/03z54xm22', 'en', 1, 'https://ror.org/03z54xm22 Near East School of Theology'),
(37877, 'https://ror.org/000cnwx98', 'en', 1, 'https://ror.org/000cnwx98 Norco College'),
(37878, 'https://ror.org/05n68xc32', 'en', 1, 'https://ror.org/05n68xc32 NorQuest College'),
(37879, 'https://ror.org/04zk97n46', 'en', 1, 'https://ror.org/04zk97n46 New College Durham'),
(37880, 'https://ror.org/02sx3vp22', 'en', 1, 'https://ror.org/02sx3vp22 North Central Missouri College'),
(37881, 'https://ror.org/04b6b6f76', 'en', 1, 'https://ror.org/04b6b6f76 North Central State College'),
(37882, 'https://ror.org/006w4kh46', 'en', 1, 'https://ror.org/006w4kh46 North Central Texas College'),
(37883, 'https://ror.org/05g617r34', 'en', 1, 'https://ror.org/05g617r34 New Hope Christian College'),
(37884, 'https://ror.org/041wtwq79', 'en', 1, 'https://ror.org/041wtwq79 New Jersey Turnpike Authority'),
(37885, 'https://ror.org/04v4h5886', 'en', 1, 'https://ror.org/04v4h5886 New Orleans Baptist Theological Seminary'),
(37886, 'https://ror.org/05eqkxh55', 'en', 1, 'https://ror.org/05eqkxh55 New River Community College'),
(37887, 'https://ror.org/01hbhjt03', 'en', 1, 'https://ror.org/01hbhjt03 North Florida Community College'),
(37888, 'https://ror.org/03y1zyv86', 'en', 1, 'https://ror.org/03y1zyv86 Oklahoma State University Oklahoma City Oklahoma State University–Oklahoma City'),
(37889, 'https://ror.org/055e3p039', 'en', 1, 'https://ror.org/055e3p039 North Iowa Area Community College'),
(37890, 'https://ror.org/05pbb8y14', 'en', 1, 'https://ror.org/05pbb8y14 Olympic College'),
(37891, 'https://ror.org/000jbwm32', 'no_lang_code', 1, 'https://ror.org/000jbwm32 National Sanatorium Ooshima Seishōen å›½ē«‹ē™‚é¤Šę‰€å¤§å³¶é’ę¾åœ’'),
(37892, 'https://ror.org/05kd26g25', 'en', 1, 'https://ror.org/05kd26g25 Prairie Bible Institute'),
(37893, 'https://ror.org/041m1e551', 'en', 1, 'https://ror.org/041m1e551 Princeton Public Schools'),
(37894, 'https://ror.org/00wsjjq14', 'en', 1, 'https://ror.org/00wsjjq14 Providence Newberg Medical Center'),
(37895, 'https://ror.org/01v3sxv43', 'en', 1, 'https://ror.org/01v3sxv43 North Lake College'),
(37896, 'https://ror.org/01w9gvv59', 'en', 1, 'https://ror.org/01w9gvv59 Pueblo Community College'),
(37897, 'https://ror.org/00wdghj92', 'en', 1, 'https://ror.org/00wdghj92 North Shore Community College'),
(37898, 'https://ror.org/010dgsx92', 'en', 1, 'https://ror.org/010dgsx92 Pulaski Technical College'),
(37899, 'https://ror.org/018xpp991', 'en', 1, 'https://ror.org/018xpp991 Northeast Alabama Community College'),
(37900, 'https://ror.org/05m42bs81', 'en', 1, 'https://ror.org/05m42bs81 Northeast State Community College'),
(37901, 'https://ror.org/04wh0kc34', 'en', 1, 'https://ror.org/04wh0kc34 Northeast Texas Community College'),
(37902, 'https://ror.org/03k3rfc04', 'en', 1, 'https://ror.org/03k3rfc04 Oxnard College'),
(37903, 'https://ror.org/017kqpz20', 'en', 1, 'https://ror.org/017kqpz20 Northern (Arctic) Federal University Деверный (Арктический) Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. Š’. Ломоносова'),
(37904, 'https://ror.org/05ezpsg97', 'en', 1, 'https://ror.org/05ezpsg97 Ozark Christian College'),
(37905, 'https://ror.org/04bx29k51', 'en', 1, 'https://ror.org/04bx29k51 Northern Essex Community College'),
(37906, 'https://ror.org/05nqdns93', 'en', 1, 'https://ror.org/05nqdns93 Pacific States University'),
(37907, 'https://ror.org/0467tbj17', 'en', 1, 'https://ror.org/0467tbj17 Randolph Community College'),
(37908, 'https://ror.org/00x5wty96', 'en', 1, 'https://ror.org/00x5wty96 Redcar & Cleveland College'),
(37909, 'https://ror.org/04x450n10', 'en', 1, 'https://ror.org/04x450n10 Northwest Mississippi Community College'),
(37910, 'https://ror.org/00r1qza69', 'en', 1, 'https://ror.org/00r1qza69 Reedley College'),
(37911, 'https://ror.org/006ptez88', 'en', 1, 'https://ror.org/006ptez88 Northwest–Shoals Community College'),
(37912, 'https://ror.org/0420s7j63', 'en', 1, 'https://ror.org/0420s7j63 Northwestern Connecticut Community College'),
(37913, 'https://ror.org/0296fd765', 'en', 1, 'https://ror.org/0296fd765 Renton Technical College'),
(37914, 'https://ror.org/04nv2wh79', 'en', 1, 'https://ror.org/04nv2wh79 Novant Health'),
(37915, 'https://ror.org/01a9g8z61', 'en', 1, 'https://ror.org/01a9g8z61 Palo Verde College'),
(37916, 'https://ror.org/02xcgb468', 'en', 1, 'https://ror.org/02xcgb468 R.O.C Military Academy äø­čÆę°‘åœ‹é™øč»č»å®˜å­øę ”'),
(37917, 'https://ror.org/03b7h0n98', 'en', 1, 'https://ror.org/03b7h0n98 Panola College'),
(37918, 'https://ror.org/028mn7f31', 'en', 1, 'https://ror.org/028mn7f31 NYC Media'),
(37919, 'https://ror.org/04qf03327', 'en', 1, 'https://ror.org/04qf03327 Republic Polytechnic å…±å’Œē†å·„å­øé™¢'),
(37920, 'https://ror.org/0433rbd97', 'en', 1, 'https://ror.org/0433rbd97 Paradise Valley Community College'),
(37921, 'https://ror.org/03jcbwy51', 'en', 1, 'https://ror.org/03jcbwy51 Oblate School of Theology'),
(37922, 'https://ror.org/011mmzv10', 'en', 1, 'https://ror.org/011mmzv10 Odessa College'),
(37923, 'https://ror.org/02sf8e546', 'en', 1, 'https://ror.org/02sf8e546 Patrick Henry Community College'),
(37924, 'https://ror.org/03qvjfw18', 'en', 1, 'https://ror.org/03qvjfw18 Rio Hondo College'),
(37925, 'https://ror.org/00mpmjk72', 'en', 1, 'https://ror.org/00mpmjk72 Peddie School'),
(37926, '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'),
(37927, 'https://ror.org/004axh929', 'en', 1, 'https://ror.org/004axh929 RMIT Vietnam ĐẔi hį»c RMIT Việt Nam'),
(37928, 'https://ror.org/05a4fj080', 'en', 1, 'https://ror.org/05a4fj080 Rockingham Community College'),
(37929, 'https://ror.org/00f5afq73', 'en', 1, 'https://ror.org/00f5afq73 Rogue Community College'),
(37930, 'https://ror.org/05kc32532', 'en', 1, 'https://ror.org/05kc32532 Saint Joseph Seminary College'),
(37931, 'https://ror.org/01we8bn75', 'en', 1, 'https://ror.org/01we8bn75 PFH Private University of Applied Sciences Private Hochschule Gƶttingen'),
(37932, 'https://ror.org/03tyfrs48', 'en', 1, 'https://ror.org/03tyfrs48 Saint Paul College'),
(37933, 'https://ror.org/009syd513', 'en', 1, 'https://ror.org/009syd513 Phillips Theological Seminary'),
(37934, 'https://ror.org/038z1c623', 'en', 1, 'https://ror.org/038z1c623 Pikes Peak Community College'),
(37935, 'https://ror.org/057fg2a35', 'en', 1, 'https://ror.org/057fg2a35 Saint Vincent Health System'),
(37936, 'https://ror.org/01wm9rt41', 'en', 1, 'https://ror.org/01wm9rt41 Rowan-Cabarrus Community College Rowan–Cabarrus Community College'),
(37937, 'https://ror.org/027qksd74', 'no_lang_code', 1, 'https://ror.org/027qksd74 Pinsent Masons (United Kingdom)'),
(37938, 'https://ror.org/0428qkc73', 'en', 1, 'https://ror.org/0428qkc73 Saint Vladimir''s Orthodox Theological Seminary SƩminaire saint-vladimir'),
(37939, 'https://ror.org/051cmzf26', 'en', 1, 'https://ror.org/051cmzf26 Roxbury Community College'),
(37940, 'https://ror.org/00k6vc568', 'en', 1, 'https://ror.org/00k6vc568 Dodowa Health Research Centre'),
(37941, 'https://ror.org/05v9c7616', 'en', 1, 'https://ror.org/05v9c7616 Pitt Community College'),
(37942, 'https://ror.org/04t1qep04', 'en', 1, 'https://ror.org/04t1qep04 San Bernardino Valley College'),
(37943, 'https://ror.org/03srzrr63', 'en', 1, 'https://ror.org/03srzrr63 Pittsburgh Theological Seminary'),
(37944, 'https://ror.org/03ht0cf17', 'en', 1, 'https://ror.org/03ht0cf17 Sher-e-Bangla Agricultural University শেরে বাংলা ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(37945, 'https://ror.org/0132gqh60', 'en', 1, 'https://ror.org/0132gqh60 Southwestern Baptist Theological Seminary'),
(37946, 'https://ror.org/00v43qg93', 'en', 1, 'https://ror.org/00v43qg93 San Diego Christian College'),
(37947, 'https://ror.org/02zzkft25', 'no_lang_code', 1, 'https://ror.org/02zzkft25 Shigakukan University 志學館大学'),
(37948, 'https://ror.org/01kqyam71', 'en', 1, 'https://ror.org/01kqyam71 San Diego Miramar College'),
(37949, 'https://ror.org/013wq3j16', 'no_lang_code', 1, 'https://ror.org/013wq3j16 Shohoku College ę¹˜åŒ—ēŸ­ęœŸå¤§å­¦'),
(37950, 'https://ror.org/05a8r2n20', 'en', 1, 'https://ror.org/05a8r2n20 Sidley Austin'),
(37951, 'https://ror.org/0495w1157', 'en', 1, 'https://ror.org/0495w1157 San Joaquin Delta College'),
(37952, 'https://ror.org/00ekjkp43', 'en', 1, 'https://ror.org/00ekjkp43 Santa Ana College'),
(37953, 'https://ror.org/009t8dp88', 'no_lang_code', 1, 'https://ror.org/009t8dp88 Bluestar Silicones (France)'),
(37954, 'https://ror.org/028r3ke74', 'en', 1, 'https://ror.org/028r3ke74 Santa Barbara Business College'),
(37955, 'https://ror.org/03jb94x09', 'no_lang_code', 1, 'https://ror.org/03jb94x09 Brochier Technologies (France)'),
(37956, 'https://ror.org/05pd10v94', 'de', 1, 'https://ror.org/05pd10v94 Sigmund Freud Institut Sigmund Freud Institute'),
(37957, 'https://ror.org/0303pm905', 'en', 1, 'https://ror.org/0303pm905 Santa Clara County Library District'),
(37958, 'https://ror.org/051gp9n72', 'en', 1, 'https://ror.org/051gp9n72 Santiago Canyon College'),
(37959, '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'),
(37960, 'https://ror.org/023knef74', 'en', 1, 'https://ror.org/023knef74 Skagit Valley College'),
(37961, 'https://ror.org/01vn5yf24', 'en', 1, 'https://ror.org/01vn5yf24 Solano Community College'),
(37962, 'https://ror.org/046zhvz32', 'fr', 1, 'https://ror.org/046zhvz32 Laboratoire de Recherches VƩtƩrinaires et Zootechniques de Farcha'),
(37963, 'https://ror.org/01awqyw81', 'en', 1, 'https://ror.org/01awqyw81 St. Cloud Technical and Community College'),
(37964, 'https://ror.org/03hayrn10', 'en', 1, 'https://ror.org/03hayrn10 Sorbian Institute Sorbisches Institut'),
(37965, 'https://ror.org/04rxyz404', 'en', 1, 'https://ror.org/04rxyz404 St. John''s Seminary'),
(37966, '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'),
(37967, 'https://ror.org/03d61qr92', 'en', 1, 'https://ror.org/03d61qr92 South Arkansas Community College'),
(37968, 'https://ror.org/027b9hx20', 'en', 1, 'https://ror.org/027b9hx20 St. Thomas Aquinas College'),
(37969, 'https://ror.org/01fryje29', 'en', 1, 'https://ror.org/01fryje29 South College'),
(37970, 'https://ror.org/04kn1c182', 'no_lang_code', 1, 'https://ror.org/04kn1c182 Serampore College ą¦¶ą§ą¦°ą§€ą¦°ą¦¾ą¦®ą¦Ŗą§ą¦° ą¦•ą¦²ą§‡ą¦œ'),
(37971, 'https://ror.org/04vpt1784', 'en', 1, 'https://ror.org/04vpt1784 Sha''arei Mishpat College ×ž×›×œ×œ×Ŗ שערי משפט'),
(37972, 'https://ror.org/03ae9x524', 'de', 1, 'https://ror.org/03ae9x524 Naturhistorisches Museum Staatliches Naturhistorisches Museum'),
(37973, 'https://ror.org/00f9c7v42', 'de', 1, 'https://ror.org/00f9c7v42 Staatsgalerie Stuttgart'),
(37974, 'https://ror.org/022d5rd48', 'en', 1, 'https://ror.org/022d5rd48 Shanghai Library äøŠęµ·åœ–ę›øé¤Ø'),
(37975, 'https://ror.org/01d181m24', 'en', 1, 'https://ror.org/01d181m24 Shasta College'),
(37976, 'https://ror.org/018bksf75', 'en', 1, 'https://ror.org/018bksf75 Shawnee Mission Medical Center'),
(37977, 'https://ror.org/011gedn87', 'en', 1, 'https://ror.org/011gedn87 Sussex Downs College'),
(37978, 'https://ror.org/00fnqey70', 'de', 1, 'https://ror.org/00fnqey70 Stadtmuseum Penzberg'),
(37979, 'https://ror.org/02rpz4k59', 'no_lang_code', 1, 'https://ror.org/02rpz4k59 Swets & Zeitlinger Swets (Netherlands)'),
(37980, 'https://ror.org/04q89zk14', 'en', 1, 'https://ror.org/04q89zk14 Swindon College'),
(37981, 'https://ror.org/057k85v44', 'en', 1, 'https://ror.org/057k85v44 Swiss Hotel Management School'),
(37982, 'https://ror.org/03d8erd68', 'en', 1, 'https://ror.org/03d8erd68 South Tyneside College'),
(37983, 'https://ror.org/01rjfjt94', 'en', 1, 'https://ror.org/01rjfjt94 South University'),
(37984, 'https://ror.org/02e3vax31', 'en', 1, 'https://ror.org/02e3vax31 Sydney Missionary and Bible College'),
(37985, 'https://ror.org/016j33873', 'no_lang_code', 1, 'https://ror.org/016j33873 Crocus Technology (France)'),
(37986, 'https://ror.org/001yxxw51', 'en', 1, 'https://ror.org/001yxxw51 M.A.G. Osmani Medical College, Sylhet Sylhet MAG Osmani Medical College ą¦ą¦®.ą¦.জি. ওসমানী মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(37987, 'https://ror.org/030pa4076', 'en', 1, 'https://ror.org/030pa4076 Summit Pacific College'),
(37988, 'https://ror.org/01crwqf21', 'en', 1, 'https://ror.org/01crwqf21 Southeast Arkansas College'),
(37989, 'https://ror.org/05saacc29', 'en', 1, 'https://ror.org/05saacc29 T A Pai Management Institute'),
(37990, 'https://ror.org/05bqzy933', 'en', 1, 'https://ror.org/05bqzy933 Sunderland College'),
(37991, 'https://ror.org/00vc8ca13', 'en', 1, 'https://ror.org/00vc8ca13 Tabor College'),
(37992, 'https://ror.org/01gk62939', 'no_lang_code', 1, 'https://ror.org/01gk62939 Endocontrol (France)'),
(37993, 'https://ror.org/02p2cvb06', 'en', 1, 'https://ror.org/02p2cvb06 Taft College'),
(37994, 'https://ror.org/01b25wz12', 'en', 1, 'https://ror.org/01b25wz12 Southeastern University'),
(37995, 'https://ror.org/0335qtz31', 'en', 1, 'https://ror.org/0335qtz31 Instituto de Estudios Superiores de Tamaulipas Tamaulipas Institute of Higher Education'),
(37996, 'https://ror.org/02arv0f08', 'en', 1, 'https://ror.org/02arv0f08 Technological Educational Institute of the Ionian Islands Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī±'),
(37997, 'https://ror.org/01r9gn109', 'en', 1, 'https://ror.org/01r9gn109 Surry Community College'),
(37998, 'https://ror.org/04056ja87', 'en', 1, 'https://ror.org/04056ja87 Technological Educational Institute of Thessaly Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ī›Ī¬ĻĪ¹ĻƒĪ±Ļ‚'),
(37999, 'https://ror.org/005he3989', 'en', 1, 'https://ror.org/005he3989 Trinity School for Ministry'),
(38000, 'https://ror.org/00gy7qs50', 'en', 1, 'https://ror.org/00gy7qs50 Southport College'),
(38001, 'https://ror.org/00ra8jw08', 'no_lang_code', 1, 'https://ror.org/00ra8jw08 Porsolt (France)'),
(38002, 'https://ror.org/03hegxg89', 'en', 1, 'https://ror.org/03hegxg89 Southwest Wisconsin Technical College'),
(38003, 'https://ror.org/01n7wr636', 'en', 1, 'https://ror.org/01n7wr636 Southwestern Adventist University UniversitƩ adventiste du sud-ouest'),
(38004, 'https://ror.org/0485q2d74', 'en', 1, 'https://ror.org/0485q2d74 National Institute of Technology, Tsuyama College ę“„å±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(38005, 'https://ror.org/05v5xnv04', 'en', 1, 'https://ror.org/05v5xnv04 Tung Fang Design Institute ę±ę–¹čØ­čØˆå­øé™¢'),
(38006, 'https://ror.org/04jfz0g97', 'zh', 1, 'https://ror.org/04jfz0g97 Tung Wah College ę±čÆå­øé™¢'),
(38007, 'https://ror.org/04fsb1973', 'en', 1, 'https://ror.org/04fsb1973 Texas College'),
(38008, 'https://ror.org/041621784', 'en', 1, 'https://ror.org/041621784 Texas College of Traditional Chinese Medicine Texas Health and Science University'),
(38009, 'https://ror.org/0207hvp23', 'en', 1, 'https://ror.org/0207hvp23 Tunxis Community College'),
(38010, 'https://ror.org/01k3cb610', 'en', 1, 'https://ror.org/01k3cb610 The American College'),
(38011, 'https://ror.org/02e7x8p39', 'en', 1, 'https://ror.org/02e7x8p39 The Asiatic Society of Mumbai'),
(38012, 'https://ror.org/01vga2998', 'en', 1, 'https://ror.org/01vga2998 Agincourt Health and Socio-Demographic Surveillance System'),
(38013, 'https://ror.org/00bcgjj54', 'en', 1, 'https://ror.org/00bcgjj54 The Culinary Institute of America'),
(38014, 'https://ror.org/02sqt9870', 'en', 1, 'https://ror.org/02sqt9870 University of Louisiana System'),
(38015, 'https://ror.org/023j5sb16', 'en', 1, 'https://ror.org/023j5sb16 International Institute for Strategic Studies'),
(38016, 'https://ror.org/015dhe595', 'en', 1, 'https://ror.org/015dhe595 Modibbo Adama University of Technology'),
(38017, 'https://ror.org/04g2mk116', 'no_lang_code', 1, 'https://ror.org/04g2mk116 Hemarina (France)'),
(38018, 'https://ror.org/03660jk02', 'en', 1, 'https://ror.org/03660jk02 The Master''s Seminary'),
(38019, 'https://ror.org/04625j688', 'en', 1, 'https://ror.org/04625j688 University of Maine School of Law'),
(38020, 'https://ror.org/0012pft53', 'en', 1, 'https://ror.org/0012pft53 FacultƩ de droit thomas jefferson Thomas Jefferson School of Law'),
(38021, 'https://ror.org/05s2h4a13', 'no_lang_code', 1, 'https://ror.org/05s2h4a13 Imagine Optic (France)'),
(38022, 'https://ror.org/008yyr230', 'de', 1, 'https://ror.org/008yyr230 Till-Eulenspiegel-Museum Schƶppenstedt'),
(38023, 'https://ror.org/01h7g8502', 'en', 1, 'https://ror.org/01h7g8502 National Institute of Technology, Toba College é³„ē¾½å•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(38024, 'https://ror.org/01n51v443', 'en', 1, 'https://ror.org/01n51v443 University of North Texas at Dallas'),
(38025, 'https://ror.org/029trsn45', 'no_lang_code', 1, 'https://ror.org/029trsn45 TOKU-E (United States)'),
(38026, 'https://ror.org/05rgfz198', 'en', 1, 'https://ror.org/05rgfz198 United Nations Economic Commission for Africa'),
(38027, 'https://ror.org/019t2rq07', 'en', 1, 'https://ror.org/019t2rq07 University of Northwestern'),
(38028, 'https://ror.org/01nw25822', 'en', 1, 'https://ror.org/01nw25822 National Institute of Technology, Toyota College å›½ē«‹č±Šē”°å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(38029, 'https://ror.org/00c9gth79', 'en', 1, 'https://ror.org/00c9gth79 Astronomisches Observatorium Triest Observatoire astronomique de trieste Osservatorio Astronomico di Trieste Trieste Astronomical Observatory'),
(38030, 'https://ror.org/04ca1xj65', 'en', 1, 'https://ror.org/04ca1xj65 United Theological Seminary'),
(38031, 'https://ror.org/04ep6k202', 'en', 1, 'https://ror.org/04ep6k202 Trinity Medical Center'),
(38032, 'https://ror.org/025kf5q07', 'en', 1, 'https://ror.org/025kf5q07 United World College of South East Asia ę±å—äŗžčÆåˆäø–ē•Œę›øé™¢'),
(38033, 'https://ror.org/035zbbv42', 'en', 1, 'https://ror.org/035zbbv42 First Affiliated Hospital of Henan University of Science and Technology'),
(38034, 'https://ror.org/02arzh683', 'en', 1, 'https://ror.org/02arzh683 Aidjan-Lagos Corridor Organization Organisation du Corridor Abidjan-Lagos'),
(38035, 'https://ror.org/008t9m017', 'en', 1, 'https://ror.org/008t9m017 Wallace Community College'),
(38036, 'https://ror.org/041z20775', 'en', 1, 'https://ror.org/041z20775 Mvumi Hospital'),
(38037, 'https://ror.org/01nzz9r98', 'en', 1, 'https://ror.org/01nzz9r98 Victor Valley College'),
(38038, 'https://ror.org/01fszbh02', 'en', 1, 'https://ror.org/01fszbh02 Academy for Peace and Development Akaademiga Nabadda iyo Horumarka'),
(38039, 'https://ror.org/01ss10648', 'en', 1, 'https://ror.org/01ss10648 Northern University of Malaysia Universiti Utara Malaysia é¦¬ä¾†č„æäŗžåŒ—ę–¹å¤§å­ø'),
(38040, 'https://ror.org/04qs0rx25', 'en', 1, 'https://ror.org/04qs0rx25 Wallace State Community College'),
(38041, 'https://ror.org/01zys7518', 'en', 1, 'https://ror.org/01zys7518 Victoria College'),
(38042, 'https://ror.org/05r27jw59', 'en', 1, 'https://ror.org/05r27jw59 Warren County Community College'),
(38043, 'https://ror.org/02vxhys40', 'en', 1, 'https://ror.org/02vxhys40 Africa Groundwater Network'),
(38044, 'https://ror.org/03kv7mm58', 'en', 1, 'https://ror.org/03kv7mm58 Wartburg Theological Seminary'),
(38045, 'https://ror.org/04hbd7s79', 'en', 1, 'https://ror.org/04hbd7s79 Africa Harvest Biotech Foundation International'),
(38046, 'https://ror.org/02jf25180', 'en', 1, 'https://ror.org/02jf25180 Warwickshire College'),
(38047, 'https://ror.org/017cc7f02', 'en', 1, 'https://ror.org/017cc7f02 Achieving Health Nigeria Initiative'),
(38048, 'https://ror.org/03fs51t18', 'en', 1, 'https://ror.org/03fs51t18 Wayne Community College'),
(38049, 'https://ror.org/004pw1z78', 'en', 1, 'https://ror.org/004pw1z78 Africa Society for Blood Transfusion'),
(38050, 'https://ror.org/02xwsbr93', 'en', 1, 'https://ror.org/02xwsbr93 Weatherford College'),
(38051, 'https://ror.org/01hzrxx48', 'en', 1, 'https://ror.org/01hzrxx48 Wor-Wic Community College Wor–Wic Community College'),
(38052, 'https://ror.org/04pjzhr83', 'en', 1, 'https://ror.org/04pjzhr83 Wenatchee Valley College'),
(38053, 'https://ror.org/01mmzry04', 'en', 1, 'https://ror.org/01mmzry04 Vinson & Elkins'),
(38054, 'https://ror.org/00701pv42', 'fr', 1, 'https://ror.org/00701pv42 Wesford'),
(38055, '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'),
(38056, 'https://ror.org/04ht9zz88', 'en', 1, 'https://ror.org/04ht9zz88 Lone Star College Kingwood Lone Star College–Kingwood'),
(38057, 'https://ror.org/02m0pjb51', 'en', 1, 'https://ror.org/02m0pjb51 Wesley Biblical Seminary'),
(38058, 'https://ror.org/00ppxc472', 'no_lang_code', 1, 'https://ror.org/00ppxc472 ArcelorMittal (Poland)'),
(38059, 'https://ror.org/00s653717', 'en', 1, 'https://ror.org/00s653717 WorldWide Information Services'),
(38060, 'https://ror.org/04aqw2724', 'en', 1, 'https://ror.org/04aqw2724 African Association of Remote Sensing of the Environment'),
(38061, 'https://ror.org/0297egf66', 'en', 1, 'https://ror.org/0297egf66 Lone Star College–North Harris'),
(38062, 'https://ror.org/00s1ymf55', 'no_lang_code', 1, 'https://ror.org/00s1ymf55 ACRI-EC (Morocco)'),
(38063, 'https://ror.org/05wf9ss90', 'en', 1, 'https://ror.org/05wf9ss90 Virginia Highlands Community College'),
(38064, 'https://ror.org/0278s3c19', 'en', 1, 'https://ror.org/0278s3c19 Lone Star College–Tomball'),
(38065, 'https://ror.org/01wm6bg59', 'en', 1, 'https://ror.org/01wm6bg59 West Shore Community College'),
(38066, 'https://ror.org/05d97wj93', 'en', 1, 'https://ror.org/05d97wj93 West Suffolk College'),
(38067, 'https://ror.org/03777v328', 'en', 1, 'https://ror.org/03777v328 African Center of Meteorological Application for Development'),
(38068, 'https://ror.org/05pd35d11', 'en', 1, 'https://ror.org/05pd35d11 African Comprehensive HIV/AIDS Partnerships'),
(38069, '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'),
(38070, 'https://ror.org/01ecv1b71', 'en', 1, 'https://ror.org/01ecv1b71 African Conservation Tillage Network'),
(38071, 'https://ror.org/01hr83286', 'en', 1, 'https://ror.org/01hr83286 African Center for Economic Transformation'),
(38072, 'https://ror.org/01hefnn22', 'en', 1, 'https://ror.org/01hefnn22 Western Nebraska Community College'),
(38073, 'https://ror.org/03gn3dp35', 'no_lang_code', 1, 'https://ror.org/03gn3dp35 Adamore (Nigeria)'),
(38074, 'https://ror.org/01jf9dm55', 'en', 1, 'https://ror.org/01jf9dm55 African Union Interafrican Bureau for Animal Resources'),
(38075, 'https://ror.org/05phe2d91', 'en', 1, 'https://ror.org/05phe2d91 Xavier School'),
(38076, 'https://ror.org/03pr1st25', 'no_lang_code', 1, 'https://ror.org/03pr1st25 African Explosives (South Africa)'),
(38077, 'https://ror.org/01dj44198', 'en', 1, 'https://ror.org/01dj44198 Western Texas College'),
(38078, 'https://ror.org/03anfvd83', 'en', 1, 'https://ror.org/03anfvd83 Western Theological Seminary'),
(38079, 'https://ror.org/05e0nrg39', 'no_lang_code', 1, 'https://ror.org/05e0nrg39 Africare'),
(38080, 'https://ror.org/014ty7t94', 'en', 1, 'https://ror.org/014ty7t94 African Forum for Agricultural Advisory Services'),
(38081, 'https://ror.org/04zt8qr11', 'en', 1, 'https://ror.org/04zt8qr11 Addis Ababa City Administration Health Bureau'),
(38082, 'https://ror.org/02nbqkk54', 'en', 1, 'https://ror.org/02nbqkk54 Western Wyoming Community College'),
(38083, 'https://ror.org/03ph2cv51', 'en', 1, 'https://ror.org/03ph2cv51 Westminster Kingsway College'),
(38084, 'https://ror.org/027n34442', 'en', 1, 'https://ror.org/027n34442 African Institute of Biomedical Science and Technology'),
(38085, 'https://ror.org/046vhnd58', 'en', 1, 'https://ror.org/046vhnd58 Xavier School of Management'),
(38086, 'https://ror.org/05gy3fg68', 'en', 1, 'https://ror.org/05gy3fg68 SƩminaire thƩologique de westminster Westminster Theological Seminary'),
(38087, 'https://ror.org/041tbvj87', 'en', 1, 'https://ror.org/041tbvj87 Westmoreland County Community College'),
(38088, 'https://ror.org/0333mmt30', 'en', 1, 'https://ror.org/0333mmt30 Energy, Environment and Development Network for Africa'),
(38089, 'https://ror.org/05awzqc14', 'en', 1, 'https://ror.org/05awzqc14 Africa 2000 Network'),
(38090, 'https://ror.org/03w2dn060', 'en', 1, 'https://ror.org/03w2dn060 African Institute for Capacity Development'),
(38091, 'https://ror.org/0035bbx08', 'en', 1, 'https://ror.org/0035bbx08 Wharton County Junior College'),
(38092, 'https://ror.org/03c89jq84', 'en', 1, 'https://ror.org/03c89jq84 African Network Information Center'),
(38093, 'https://ror.org/05baq4a16', 'no_lang_code', 1, 'https://ror.org/05baq4a16 Yong-in Songdam College ģš©ģøģ†”ė‹“ėŒ€ķ•™źµ'),
(38094, 'https://ror.org/04vatt549', 'fr', 1, 'https://ror.org/04vatt549 Agence Nationale pour la Promotion des Petites et Moyennes Entreprises'),
(38095, 'https://ror.org/04cg1fd02', 'en', 1, 'https://ror.org/04cg1fd02 Wilkes Community College'),
(38096, 'https://ror.org/04rp2t677', 'en', 1, 'https://ror.org/04rp2t677 African Palliative Care Association'),
(38097, 'https://ror.org/04rqxx434', 'fr', 1, 'https://ror.org/04rqxx434 Agence Nationale pour la Promotion et la Rationalisation de l''Utilisation de l''Energie'),
(38098, 'https://ror.org/006j5kw87', 'en', 1, 'https://ror.org/006j5kw87 York County Community College'),
(38099, 'https://ror.org/03cv3dj55', 'en', 1, 'https://ror.org/03cv3dj55 Williams Baptist College'),
(38100, 'https://ror.org/044f89640', 'no_lang_code', 1, 'https://ror.org/044f89640 Agama Energy (South Africa)'),
(38101, 'https://ror.org/02j8mex09', 'en', 1, 'https://ror.org/02j8mex09 Wilson Community College'),
(38102, 'https://ror.org/00r614q54', 'en', 1, 'https://ror.org/00r614q54 Youngnam Theological University and Seminary ģ˜ė‚Øģ‹ ķ•™ėŒ€ķ•™źµ'),
(38103, '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'),
(38104, 'https://ror.org/01p4zf543', 'fr', 1, 'https://ror.org/01p4zf543 Agence du Bassin Hydraulique de Sebou'),
(38105, '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'),
(38106, 'https://ror.org/011w0zz81', 'en', 1, 'https://ror.org/011w0zz81 African Technology Policy Studies Network'),
(38107, 'https://ror.org/01e46k667', 'no_lang_code', 1, 'https://ror.org/01e46k667 Red Stack Tech (Poland)'),
(38108, 'https://ror.org/00ed6fq07', 'en', 1, 'https://ror.org/00ed6fq07 AIDS Foundation of South Africa'),
(38109, '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'),
(38110, 'https://ror.org/04gm2r032', 'fr', 1, 'https://ror.org/04gm2r032 Agence de Bassin Hydrographique Constantinois-Seybousse-Mellegue'),
(38111, 'https://ror.org/02ec5p106', 'en', 1, 'https://ror.org/02ec5p106 AIDS Information Centre'),
(38112, 'https://ror.org/0590dv991', 'en', 1, 'https://ror.org/0590dv991 Agricultural Research Corporation Ł‡ŁŠŲ¦Ų© Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(38113, 'https://ror.org/03kfyg105', 'no_lang_code', 1, 'https://ror.org/03kfyg105 Safran (Poland)'),
(38114, 'https://ror.org/0404w7c41', 'fr', 1, 'https://ror.org/0404w7c41 AFRICSantƩ'),
(38115, 'https://ror.org/009yat059', 'no_lang_code', 1, 'https://ror.org/009yat059 WADI Group (Egypt)'),
(38116, '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 ŁˆŁƒŲ§Ł„Ų© Ų§Ł„Ł†Ł‡ŁˆŲ¶ بالصناعة و Ų§Ł„ŲŖŲ¬ŲÆŁŠŲÆ'),
(38117, 'https://ror.org/03k31z678', 'en', 1, 'https://ror.org/03k31z678 Institute for Soil, Climate and Water'),
(38118, 'https://ror.org/0145r0q31', 'fr', 1, 'https://ror.org/0145r0q31 Agence de Protection et d''AmƩnagement du Littoral'),
(38119, 'https://ror.org/03n4gks22', 'en', 1, 'https://ror.org/03n4gks22 Abertine Rift Conservation Society'),
(38120, 'https://ror.org/051vmc086', 'fr', 1, 'https://ror.org/051vmc086 Agro PME Fondation'),
(38121, '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'),
(38122, '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'),
(38123, 'https://ror.org/03ye1a762', 'en', 1, 'https://ror.org/03ye1a762 Alliance Nationale Contre le SIDA en Cote d''Ivoire Alliance of Health'),
(38124, 'https://ror.org/02n9a7a30', 'fr', 1, 'https://ror.org/02n9a7a30 Agence Nationale de l''Aviation Civile'),
(38125, 'https://ror.org/001r3g324', 'pt', 1, 'https://ror.org/001r3g324 Fundação Ariel Glaser Contra o SIDA PediÔtrico'),
(38126, 'https://ror.org/02x9c2945', 'no_lang_code', 1, 'https://ror.org/02x9c2945 Alliance One Tobacco (Malawi)'),
(38127, 'https://ror.org/05mq34b10', 'en', 1, 'https://ror.org/05mq34b10 Bank of Mauritius'),
(38128, 'https://ror.org/049wv9211', 'en', 1, 'https://ror.org/049wv9211 Elizabeth Glaser Pediatric AIDS Foundation'),
(38129, 'https://ror.org/035y1v638', 'en', 1, 'https://ror.org/035y1v638 Baobab Health Trust'),
(38130, 'https://ror.org/022af9r61', 'no_lang_code', 1, 'https://ror.org/022af9r61 Alternative Energy Systems (Tunisia)'),
(38131, 'https://ror.org/03gjxrs28', 'en', 1, 'https://ror.org/03gjxrs28 National Art Gallery of Namibia'),
(38132, 'https://ror.org/00dqs1064', 'fr', 1, 'https://ror.org/00dqs1064 Centre Marocain de Production Propre'),
(38133, 'https://ror.org/02ggka625', 'en', 1, 'https://ror.org/02ggka625 Basel Convention Co-Ordinating Centre'),
(38134, 'https://ror.org/00hxcg109', 'en', 1, 'https://ror.org/00hxcg109 Association for Strengthening Agricultural Research in Eastern and Central Africa'),
(38135, 'https://ror.org/05exk7n54', 'en', 1, 'https://ror.org/05exk7n54 Arusha City Council'),
(38136, '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 Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł†Ł‡ŁˆŲ¶ بالبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(38137, 'https://ror.org/05pjrxm83', 'en', 1, 'https://ror.org/05pjrxm83 Association of Support in the Development of Activities of Population'),
(38138, 'https://ror.org/05a0bkt47', 'en', 1, 'https://ror.org/05a0bkt47 Amref Health Africa'),
(38139, 'https://ror.org/02bdw9258', 'no_lang_code', 1, 'https://ror.org/02bdw9258 Assore (South Africa)'),
(38140, 'https://ror.org/04f5fw921', 'en', 1, 'https://ror.org/04f5fw921 Sojagnon Association'),
(38141, 'https://ror.org/03navfe48', 'no_lang_code', 1, 'https://ror.org/03navfe48 ANADER'),
(38142, 'https://ror.org/003093432', 'en', 1, 'https://ror.org/003093432 International Centre for Reproductive Health'),
(38143, 'https://ror.org/04vpx0k46', 'fr', 1, 'https://ror.org/04vpx0k46 Anvredet'),
(38144, 'https://ror.org/03nvc8x46', 'no_lang_code', 1, 'https://ror.org/03nvc8x46 Anglo American (South Africa)'),
(38145, 'https://ror.org/03fyw2k76', 'en', 1, 'https://ror.org/03fyw2k76 Blood Transfusion Service of Namibia'),
(38146, 'https://ror.org/03fe8wt32', 'fr', 1, 'https://ror.org/03fe8wt32 Association Mitsinjo'),
(38147, 'https://ror.org/05tbdf588', 'en', 1, 'https://ror.org/05tbdf588 Association Africa AgroEXport'),
(38148, 'https://ror.org/00cn65j92', 'no_lang_code', 1, 'https://ror.org/00cn65j92 Bomarts Farms (Ghana)'),
(38149, 'https://ror.org/035dqf024', 'en', 1, 'https://ror.org/035dqf024 Agence Nationale pour la MaƮtrise de l''Energie National Agency for Energy Management'),
(38150, 'https://ror.org/04m7jhx64', 'fr', 1, 'https://ror.org/04m7jhx64 ConfƩdƩration GƩnƩrale des Entreprises du Maroc'),
(38151, 'https://ror.org/05m4ewg24', 'en', 1, 'https://ror.org/05m4ewg24 Association of African Universities'),
(38152, 'https://ror.org/04tvwvh44', 'fr', 1, 'https://ror.org/04tvwvh44 Association Marocaine Pour la Recherche DƩveloppement'),
(38153, 'https://ror.org/053gd2580', 'en', 1, 'https://ror.org/053gd2580 Botswana-Baylor Children''s Clinical Center of Excellence'),
(38154, 'https://ror.org/03s1kd923', 'en', 1, 'https://ror.org/03s1kd923 Center for Health, Human Rights and Development'),
(38155, 'https://ror.org/03q82hy28', 'en', 1, 'https://ror.org/03q82hy28 Arab and African Research Center'),
(38156, 'https://ror.org/01zp8e713', 'en', 1, 'https://ror.org/01zp8e713 The Arab Institute of Navigation'),
(38157, 'https://ror.org/04dkqr510', 'no_lang_code', 1, 'https://ror.org/04dkqr510 Assystem (Morocco)'),
(38158, 'https://ror.org/03e9cyb52', 'en', 1, 'https://ror.org/03e9cyb52 Central Laboratory For Agricultural Expert Systems'),
(38159, 'https://ror.org/004wta052', 'en', 1, 'https://ror.org/004wta052 British Council Egypt'),
(38160, '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'),
(38161, 'https://ror.org/01j59hh13', 'no_lang_code', 1, 'https://ror.org/01j59hh13 Banco de Cabo Verde Bank of Cape Verde'),
(38162, 'https://ror.org/04zxzn882', 'fr', 1, 'https://ror.org/04zxzn882 Bureau National d''Ɖtudes Techniques et de DĆ©veloppement'),
(38163, 'https://ror.org/025wyv967', 'en', 1, 'https://ror.org/025wyv967 Center of Arab Woman for Training and Research'),
(38164, 'https://ror.org/04y75dx46', 'en', 1, 'https://ror.org/04y75dx46 Institute of Medical Sciences'),
(38165, 'https://ror.org/03x8myy24', 'en', 1, 'https://ror.org/03x8myy24 Centre for Coordination of Agricultural Research and Development for Southern Africa'),
(38166, 'https://ror.org/0055szp73', 'fr', 1, 'https://ror.org/0055szp73 Centre d''Etude Regional pour l''Amelioration de l''Adaptation a la Secheresse'),
(38167, 'https://ror.org/05bxm0g51', 'fr', 1, 'https://ror.org/05bxm0g51 Centre Marocain des Techniques du Cuir'),
(38168, 'https://ror.org/020vyj412', 'en', 1, 'https://ror.org/020vyj412 Cairo Institute for Human Rights Studies'),
(38169, 'https://ror.org/01q2x5x62', 'en', 1, 'https://ror.org/01q2x5x62 Indian Institute of Social Welfare and Business Management ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦øą§‹ą¦¶ą§ą¦Æą¦¾ą¦² ওয়েলফেয়ার ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ'),
(38170, 'https://ror.org/00ga0xw04', 'en', 1, 'https://ror.org/00ga0xw04 Research and Studies Telecommunications Centre'),
(38171, 'https://ror.org/01k1bte55', 'fr', 1, 'https://ror.org/01k1bte55 Centre de Recherche sur l''Information Scientifique et Technique');
INSERT INTO `rors` VALUES
(38172, 'https://ror.org/025fpk195', 'en', 1, 'https://ror.org/025fpk195 Cameroon Baptist Convention Health Services'),
(38173, 'https://ror.org/00vcvxb53', 'en', 1, 'https://ror.org/00vcvxb53 Centre for Health Solutions'),
(38174, 'https://ror.org/04z3sd442', 'en', 1, 'https://ror.org/04z3sd442 Centre for Schistosomiasis & Parasitology'),
(38175, 'https://ror.org/02q7fkp22', 'en', 1, 'https://ror.org/02q7fkp22 Cameroon Academy of Sciences'),
(38176, 'https://ror.org/03jy4yd76', 'en', 1, 'https://ror.org/03jy4yd76 Uganda Carbon Bureau'),
(38177, 'https://ror.org/03j9ysw15', 'en', 1, 'https://ror.org/03j9ysw15 CareWorks'),
(38178, 'https://ror.org/041y4nv46', 'en', 1, 'https://ror.org/041y4nv46 Centre for Sexual Health and HIV AIDS Research'),
(38179, 'https://ror.org/04pks1p32', 'fr', 1, 'https://ror.org/04pks1p32 Centre National de Recherches Prehistoriques, Anthropologiques et Historiques'),
(38180, 'https://ror.org/009asrq67', 'fr', 1, 'https://ror.org/009asrq67 Centre de Calcul El-Khawarizmi'),
(38181, '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'),
(38182, 'https://ror.org/04sdw4j56', 'en', 1, 'https://ror.org/04sdw4j56 Development Centre of the Tensift Region'),
(38183, 'https://ror.org/02ypmq936', 'en', 1, 'https://ror.org/02ypmq936 Caritas Nigeria'),
(38184, 'https://ror.org/01z1qnm06', 'en', 1, 'https://ror.org/01z1qnm06 Institute for Advanced Study in the Humanities Essen Kulturwissenschaftliches Institut Essen'),
(38185, 'https://ror.org/02rzek752', 'pt', 1, 'https://ror.org/02rzek752 Centro de Desenvolvimento SustentƔvel para as Zonas Costeiras'),
(38186, 'https://ror.org/04bwc3e35', 'en', 1, 'https://ror.org/04bwc3e35 Centre for the Study of Adolescence'),
(38187, 'https://ror.org/01ay87255', 'fr', 1, 'https://ror.org/01ay87255 Centre de DƩveloppement des Technologies AvancƩes'),
(38188, 'https://ror.org/01rmmj052', 'en', 1, 'https://ror.org/01rmmj052 Centre of Ticks and Tick-borne diseases'),
(38189, 'https://ror.org/03q098e53', 'fr', 1, 'https://ror.org/03q098e53 Centre de Recherche en Astronomie Astrophysique et GƩophysique'),
(38190, 'https://ror.org/0100cvt49', 'en', 1, 'https://ror.org/0100cvt49 Centre national du cuir et de la chaussure National Center for Leather and Shoes Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„Ų¬Ł„ŁˆŲÆ ŁˆŲ§Ł„Ų£Ų­Ų°ŁŠŲ©'),
(38191, 'https://ror.org/04kq49p26', 'fr', 1, 'https://ror.org/04kq49p26 Centre des Techniques et MatƩriaux de Construction'),
(38192, 'https://ror.org/0040bha74', 'en', 1, 'https://ror.org/0040bha74 Milltown Institute of Theology and Philosophy'),
(38193, 'https://ror.org/03yz5ry83', 'en', 1, 'https://ror.org/03yz5ry83 Centre for Educational Development in Health Arusha'),
(38194, 'https://ror.org/04s8aes72', 'fr', 1, 'https://ror.org/04s8aes72 Chambre de Commerce et d''Industrie du Centre'),
(38195, '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'),
(38196, 'https://ror.org/02aa1n426', 'fr', 1, 'https://ror.org/02aa1n426 Centre pour l’Environnement et le DĆ©veloppement'),
(38197, 'https://ror.org/04fat9m09', 'fr', 1, 'https://ror.org/04fat9m09 Centre de Recherche & DĆ©veloppement de l''ƉlectricitĆ© et du Gaz'),
(38198, 'https://ror.org/04dg1kd85', 'en', 1, 'https://ror.org/04dg1kd85 Department of Research and Specialist Services'),
(38199, 'https://ror.org/04aa9w798', 'fr', 1, 'https://ror.org/04aa9w798 Consortium pour la recherche Ʃconomique et sociale'),
(38200, 'https://ror.org/01kywjn02', 'en', 1, 'https://ror.org/01kywjn02 Consumer Goods Council of South Africa'),
(38201, 'https://ror.org/00jvrbg23', 'en', 1, 'https://ror.org/00jvrbg23 Children''s AIDS Fund Uganda'),
(38202, 'https://ror.org/023abch36', 'en', 1, 'https://ror.org/023abch36 Center for National Health Development in Ethiopia'),
(38203, 'https://ror.org/01hpzjf11', 'en', 1, 'https://ror.org/01hpzjf11 Centre Royal de TƩlƩdƩtection Spatiale Royal Centre for Remote Sensing'),
(38204, 'https://ror.org/04vpza371', 'en', 1, 'https://ror.org/04vpza371 Cooperative Office for Voluntary Organizations'),
(38205, 'https://ror.org/00nqqde20', 'en', 1, 'https://ror.org/00nqqde20 Development Aid from People to People'),
(38206, 'https://ror.org/03dp8ay82', 'no_lang_code', 1, 'https://ror.org/03dp8ay82 Chitungwiza Municipality'),
(38207, 'https://ror.org/02p7rqa77', 'fr', 1, 'https://ror.org/02p7rqa77 Centre Technique de l''Agro-Alimentaire'),
(38208, 'https://ror.org/04946aj33', 'no_lang_code', 1, 'https://ror.org/04946aj33 De Beers (South Africa)'),
(38209, 'https://ror.org/01ppfgh80', 'en', 1, 'https://ror.org/01ppfgh80 Packaging Technical Centre'),
(38210, 'https://ror.org/041nsyx41', 'fr', 1, 'https://ror.org/041nsyx41 Coordination Nationale des Organisations Paysannes du Mali'),
(38211, 'https://ror.org/00byjv668', 'fr', 1, 'https://ror.org/00byjv668 Centre Technique des Industries Agroalimentaires'),
(38212, 'https://ror.org/04y7b4z29', 'en', 1, 'https://ror.org/04y7b4z29 Coordinating Office for Control of Trypanosomiasis in Uganda'),
(38213, 'https://ror.org/01frwjw20', 'en', 1, 'https://ror.org/01frwjw20 Chreso Ministries'),
(38214, 'https://ror.org/05fx0av92', 'en', 1, 'https://ror.org/05fx0av92 Centre technique du textile Textile Technical Center'),
(38215, 'https://ror.org/0308cf074', 'no_lang_code', 1, 'https://ror.org/0308cf074 Cosmos Limited'),
(38216, 'https://ror.org/00vxdmt81', 'en', 1, 'https://ror.org/00vxdmt81 Christian Council of Tanzania'),
(38217, 'https://ror.org/03b1zjt31', 'en', 1, 'https://ror.org/03b1zjt31 National Engineering School of Tunis Ɖcole Nationale d''IngĆ©nieurs de Tunis المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† ŲØŲŖŁˆŁ†Ų³'),
(38218, 'https://ror.org/01bnv2160', 'no_lang_code', 1, 'https://ror.org/01bnv2160 Deltamune (South Africa)'),
(38219, 'https://ror.org/01fy5k372', 'fr', 1, 'https://ror.org/01fy5k372 Ɖcole Nationale d''IngĆ©nieurs de GabĆØs المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† بقابس'),
(38220, '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'),
(38221, 'https://ror.org/02t3sye10', 'en', 1, 'https://ror.org/02t3sye10 Excellence & Friends Management Care Centre'),
(38222, 'https://ror.org/0207t6t84', 'en', 1, 'https://ror.org/0207t6t84 Christian Health Association of Kenya'),
(38223, 'https://ror.org/046e8j462', 'en', 1, 'https://ror.org/046e8j462 Christian Health Association of Malawi'),
(38224, 'https://ror.org/04yxemm04', 'en', 1, 'https://ror.org/04yxemm04 e-Waste Association of South Africa'),
(38225, 'https://ror.org/0219f5c57', 'en', 1, 'https://ror.org/0219f5c57 Christian Health Association of Nigeria'),
(38226, 'https://ror.org/02e9x4k55', 'en', 1, 'https://ror.org/02e9x4k55 Christian Social Services Commission'),
(38227, 'https://ror.org/05s5km770', 'en', 1, 'https://ror.org/05s5km770 Churches Health Assoication Of Zambia'),
(38228, 'https://ror.org/03hbjhd85', 'en', 1, 'https://ror.org/03hbjhd85 National Registration, Passport and Citizenship Department'),
(38229, 'https://ror.org/01z3b4937', 'fr', 1, 'https://ror.org/01z3b4937 Ɖcole Nationale ForestiĆØre d''IngĆ©nieurs'),
(38230, 'https://ror.org/01xqt1a75', 'en', 1, 'https://ror.org/01xqt1a75 CIAM Public Health Research and Development Centre'),
(38231, 'https://ror.org/045w94e48', 'en', 1, 'https://ror.org/045w94e48 Desert Research Foundation of Namibia'),
(38232, 'https://ror.org/02asra118', 'en', 1, 'https://ror.org/02asra118 Desmond Tutu HIV Foundation'),
(38233, 'https://ror.org/00rs33k88', 'en', 1, 'https://ror.org/00rs33k88 Eastern Deanery AIDS Relief Program'),
(38234, 'https://ror.org/05t0zwy08', 'en', 1, 'https://ror.org/05t0zwy08 Polytechnic School of Algiers المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© المتعددة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖ بالجزائر'),
(38235, 'https://ror.org/034sd6c34', 'en', 1, 'https://ror.org/034sd6c34 Development Aid from People to People in Zambia'),
(38236, 'https://ror.org/0323nsw79', 'en', 1, 'https://ror.org/0323nsw79 Citizens for Justice'),
(38237, 'https://ror.org/01zkyh967', 'fr', 1, 'https://ror.org/01zkyh967 Commune de Bobo-Dioulasso'),
(38238, 'https://ror.org/044pnzs23', 'fr', 1, 'https://ror.org/044pnzs23 Commune de Matam'),
(38239, 'https://ror.org/04qpqg969', 'pt', 1, 'https://ror.org/04qpqg969 Direcção Geral de Ensino Superior Ciencia'),
(38240, 'https://ror.org/00p5psh68', 'pt', 1, 'https://ror.org/00p5psh68 Ministério da Saúde e da Segurança Social'),
(38241, 'https://ror.org/00dse3307', 'en', 1, 'https://ror.org/00dse3307 Tunisia Polytechnic School Ɖcole Polytechnique de Tunisie المدرسة Ų§Ł„ŲŖŁˆŁ†Ų³ŁŠŲ© Ł„Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖā€Ž'),
(38242, 'https://ror.org/041hbh421', 'en', 1, 'https://ror.org/041hbh421 Community Development Resource Network'),
(38243, 'https://ror.org/04wccky94', 'en', 1, 'https://ror.org/04wccky94 Climate Change, Agriculture and Food Security'),
(38244, 'https://ror.org/03fdtyj95', 'no_lang_code', 1, 'https://ror.org/03fdtyj95 Electra- Empresa de Electricidade e Ɓgua (Cape Verde)'),
(38245, 'https://ror.org/04mwj6r38', 'en', 1, 'https://ror.org/04mwj6r38 Community Media Trust'),
(38246, 'https://ror.org/05q1hvw61', 'pt', 1, 'https://ror.org/05q1hvw61 Clƭnica Sagrada EsperanƧa'),
(38247, 'https://ror.org/04y0xnw59', 'fr', 1, 'https://ror.org/04y0xnw59 Enda Sahel et Afrique de l’Ouest'),
(38248, 'https://ror.org/030ks9p42', 'en', 1, 'https://ror.org/030ks9p42 National Directorate of Geology'),
(38249, 'https://ror.org/008mypn13', 'fr', 1, 'https://ror.org/008mypn13 Direction de l’EpidĆ©miologie et de Lutte contre les Maladies'),
(38250, 'https://ror.org/031cmny56', 'en', 1, 'https://ror.org/031cmny56 Ethiopian Agricultural Transformation Agency'),
(38251, 'https://ror.org/00anh1e03', 'en', 1, 'https://ror.org/00anh1e03 Ethiopian Development Research Institute'),
(38252, 'https://ror.org/04zh58f23', 'no_lang_code', 1, 'https://ror.org/04zh58f23 Compagnie Africaine des Peintures'),
(38253, 'https://ror.org/05vhwn119', 'en', 1, 'https://ror.org/05vhwn119 Ethiopian Economic Association'),
(38254, 'https://ror.org/03080tp23', 'fr', 1, 'https://ror.org/03080tp23 Direction de la MƩtƩorologie Nationale'),
(38255, 'https://ror.org/00ss2rp50', 'fr', 1, 'https://ror.org/00ss2rp50 Direction de la MƩtƩorologie Nationale du Niger'),
(38256, 'https://ror.org/04320xd69', 'en', 1, 'https://ror.org/04320xd69 National Water Research Center'),
(38257, 'https://ror.org/00rwrmx36', 'en', 1, 'https://ror.org/00rwrmx36 Ethiopian Medical Association'),
(38258, 'https://ror.org/01vrhpc86', 'en', 1, 'https://ror.org/01vrhpc86 Ethiopian Society of Obstetricians and Gynecologists'),
(38259, 'https://ror.org/05v9kmg29', 'en', 1, 'https://ror.org/05v9kmg29 Environmental Alert'),
(38260, 'https://ror.org/041r43076', 'no_lang_code', 1, 'https://ror.org/041r43076 Etablissements Abdelmoula (Tunisia)'),
(38261, 'https://ror.org/02c3q7w36', 'en', 1, 'https://ror.org/02c3q7w36 Environmental Law Research Institute'),
(38262, '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'),
(38263, 'https://ror.org/025rbpt60', 'no_lang_code', 1, 'https://ror.org/025rbpt60 Eurofilet (Morocco)'),
(38264, 'https://ror.org/05wfg5466', 'no_lang_code', 1, 'https://ror.org/05wfg5466 Environement Quality International (Egypt)'),
(38265, 'https://ror.org/00y8tpp02', 'fr', 1, 'https://ror.org/00y8tpp02 Laboratoire National de SantƩ Publique du Congo'),
(38266, 'https://ror.org/04n9x2190', 'fr', 1, 'https://ror.org/04n9x2190 ComitƩ National de TƩlƩdƩtection et d''Information GƩographique'),
(38267, 'https://ror.org/0077b7806', 'en', 1, 'https://ror.org/0077b7806 Ministry of National Education and Scientific Research'),
(38268, 'https://ror.org/01trzhx11', 'en', 1, 'https://ror.org/01trzhx11 Antelope Valley College'),
(38269, 'https://ror.org/0252d3t81', 'en', 1, 'https://ror.org/0252d3t81 Family Aids Caring Trust'),
(38270, 'https://ror.org/053y1tm43', 'en', 1, 'https://ror.org/053y1tm43 Mateur Higher School of Agriculture'),
(38271, 'https://ror.org/04hvenk37', 'en', 1, 'https://ror.org/04hvenk37 Family Guidance Association of Ethiopia'),
(38272, 'https://ror.org/01azc2m81', 'en', 1, 'https://ror.org/01azc2m81 Sub-Regional Fisheries Commission'),
(38273, 'https://ror.org/000ht5b74', 'fr', 1, 'https://ror.org/000ht5b74 Fondation du Roi Abdul-Aziz Al Saoud'),
(38274, 'https://ror.org/0157ysg68', 'no_lang_code', 1, 'https://ror.org/0157ysg68 ETC East Africa (Kenya)'),
(38275, 'https://ror.org/003ad2905', 'no_lang_code', 1, 'https://ror.org/003ad2905 Farm Africa Kenya'),
(38276, 'https://ror.org/05y723906', 'en', 1, 'https://ror.org/05y723906 Food, Agriculture and Natural Resources Policy Analysis Network'),
(38277, 'https://ror.org/03y6ab910', 'en', 1, 'https://ror.org/03y6ab910 Farm Africa Ethiopia'),
(38278, 'https://ror.org/058tmpm50', 'fr', 1, 'https://ror.org/058tmpm50 Groupe de Recherche et d’Action sur le Foncier'),
(38279, 'https://ror.org/04ak1vs79', 'fr', 1, 'https://ror.org/04ak1vs79 Ɖcole SupĆ©rieure des IngĆ©nieurs de l''Ɖquipement Rural'),
(38280, 'https://ror.org/03ctxn313', 'en', 1, 'https://ror.org/03ctxn313 Federal HIV/AIDS Prevention and Control Office'),
(38281, 'https://ror.org/05nr28g03', 'en', 1, 'https://ror.org/05nr28g03 Assiniboine Community College'),
(38282, 'https://ror.org/03r3n5r63', 'en', 1, 'https://ror.org/03r3n5r63 Food, Agriculture and Natural Resources Policy Analysis Network'),
(38283, 'https://ror.org/05cy65c44', 'en', 1, 'https://ror.org/05cy65c44 Concern for Development Initiatives in Africa'),
(38284, 'https://ror.org/04gm0xc34', 'en', 1, 'https://ror.org/04gm0xc34 Group For Research and Technology Exchanges Groupe de Recherches et d''Echanges Technologiques'),
(38285, 'https://ror.org/00zagyr65', 'en', 1, 'https://ror.org/00zagyr65 Forestry Research Institute of Nigeria'),
(38286, 'https://ror.org/05tesye40', 'no_lang_code', 1, 'https://ror.org/05tesye40 EcoMetrix Africa'),
(38287, 'https://ror.org/04jqr6p02', 'en', 1, 'https://ror.org/04jqr6p02 Forestry Commission'),
(38288, 'https://ror.org/048308827', 'no_lang_code', 1, 'https://ror.org/048308827 Egyptian Consulting & Trading Co. Ltd'),
(38289, 'https://ror.org/018ewp664', 'no_lang_code', 1, 'https://ror.org/018ewp664 Grow More Seeds and Chemicals (Uganda)'),
(38290, 'https://ror.org/00347qn56', 'no_lang_code', 1, 'https://ror.org/00347qn56 Geoterra Image (South Africa)'),
(38291, 'https://ror.org/012hetj48', 'no_lang_code', 1, 'https://ror.org/012hetj48 Forum For Social Studies'),
(38292, 'https://ror.org/01606az08', 'en', 1, 'https://ror.org/01606az08 Education Labour Relations Council'),
(38293, 'https://ror.org/018hr1j41', 'en', 1, 'https://ror.org/018hr1j41 Ghana AIDS Commission'),
(38294, 'https://ror.org/00w07t135', 'en', 1, 'https://ror.org/00w07t135 Friends of the Earth-Ghana'),
(38295, 'https://ror.org/00vvdxm97', 'no_lang_code', 1, 'https://ror.org/00vvdxm97 Grupo João Ferreira dos Santos (Mozambique)'),
(38296, 'https://ror.org/00pz3sx52', 'en', 1, 'https://ror.org/00pz3sx52 Egypt Exploration Society'),
(38297, 'https://ror.org/02n5zea08', 'en', 1, 'https://ror.org/02n5zea08 Friends for Global Health Initiative Nigeria'),
(38298, 'https://ror.org/03ve8wd49', 'en', 1, 'https://ror.org/03ve8wd49 GS1 South Africa'),
(38299, 'https://ror.org/02dpn9096', 'no_lang_code', 1, 'https://ror.org/02dpn9096 Ghana-India Kofi Annan Centre of Excellence in ICT'),
(38300, 'https://ror.org/03jk3dn88', 'en', 1, 'https://ror.org/03jk3dn88 Egyptian Information Telecommunications Electronics and Software Alliance'),
(38301, 'https://ror.org/01047m564', 'en', 1, 'https://ror.org/01047m564 Flower Valley Conservation Trust'),
(38302, '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'),
(38303, 'https://ror.org/05m0qr140', 'en', 1, 'https://ror.org/05m0qr140 Ghana Meteorological Agency'),
(38304, 'https://ror.org/0504hx432', 'en', 1, 'https://ror.org/0504hx432 Egyptian Museum'),
(38305, 'https://ror.org/005wq4805', 'en', 1, 'https://ror.org/005wq4805 Fobang Foundation'),
(38306, 'https://ror.org/03nh6bz87', 'no_lang_code', 1, 'https://ror.org/03nh6bz87 Vacsera (Egypt)'),
(38307, 'https://ror.org/00471x271', 'fr', 1, 'https://ror.org/00471x271 Haut-Commissariat aux Eaux et Forêts et à la Lutte Contre la Désertification'),
(38308, 'https://ror.org/0536hv290', 'en', 1, 'https://ror.org/0536hv290 Elizabeth Glaser Pediatric AIDS Foundation'),
(38309, 'https://ror.org/04px8zq55', 'no_lang_code', 1, 'https://ror.org/04px8zq55 Egyptian Solar Research Center'),
(38310, 'https://ror.org/00e736r60', 'en', 1, 'https://ror.org/00e736r60 Hope Worldwide'),
(38311, 'https://ror.org/05qfxcq37', 'en', 1, 'https://ror.org/05qfxcq37 Hope Worldwide Kenya'),
(38312, 'https://ror.org/02czw2y48', 'en', 1, 'https://ror.org/02czw2y48 Egyptian Center for Public Policy Studies'),
(38313, 'https://ror.org/01azfny69', 'en', 1, 'https://ror.org/01azfny69 IHub'),
(38314, 'https://ror.org/03vk3dn23', 'en', 1, 'https://ror.org/03vk3dn23 Global Water Partnership'),
(38315, 'https://ror.org/03ya8jr27', 'no_lang_code', 1, 'https://ror.org/03ya8jr27 Health Science Academy (South Africa)'),
(38316, 'https://ror.org/02ekmsz98', 'en', 1, 'https://ror.org/02ekmsz98 Golden Valley Agricultural Research Trust'),
(38317, 'https://ror.org/04zpt4h82', 'no_lang_code', 1, 'https://ror.org/04zpt4h82 IBM (Egypt)'),
(38318, 'https://ror.org/03mngpd27', 'no_lang_code', 1, 'https://ror.org/03mngpd27 Health Strat (Kenya)'),
(38319, 'https://ror.org/00k255b93', 'no_lang_code', 1, 'https://ror.org/00k255b93 Golder Associates (South Africa)'),
(38320, 'https://ror.org/04qv8j179', 'en', 1, 'https://ror.org/04qv8j179 Government of Equatorial Guinea'),
(38321, 'https://ror.org/01g9qbv95', 'en', 1, 'https://ror.org/01g9qbv95 Government of Ethiopia'),
(38322, 'https://ror.org/009ayk582', 'en', 1, 'https://ror.org/009ayk582 ICLEI - Local Governments for Sustainability Africa'),
(38323, 'https://ror.org/02b90d314', 'en', 1, 'https://ror.org/02b90d314 Malawi Government'),
(38324, 'https://ror.org/04pxbhh58', 'pt', 1, 'https://ror.org/04pxbhh58 República de Moçambique'),
(38325, 'https://ror.org/04c4jf131', 'en', 1, 'https://ror.org/04c4jf131 Government of Uganda'),
(38326, 'https://ror.org/00jzq7445', 'en', 1, 'https://ror.org/00jzq7445 Ministry of Finance and Development Planning'),
(38327, 'https://ror.org/0360y2h46', 'no_lang_code', 1, 'https://ror.org/0360y2h46 Illovo Sugar (South Africa)'),
(38328, 'https://ror.org/05f9b5v38', 'en', 1, 'https://ror.org/05f9b5v38 Grand Egyptian Museum'),
(38329, 'https://ror.org/03c6tcr26', 'no_lang_code', 1, 'https://ror.org/03c6tcr26 Graphtech (Tunisia)'),
(38330, 'https://ror.org/00bvaaw52', 'no_lang_code', 1, 'https://ror.org/00bvaaw52 Infusion (South Africa)'),
(38331, 'https://ror.org/00rnmt205', 'fr', 1, 'https://ror.org/00rnmt205 Institut National de la Recherche Agronomique du Niger'),
(38332, 'https://ror.org/05kf9jb93', 'fr', 1, 'https://ror.org/05kf9jb93 Institut de Recherche Pour le DƩveloppement'),
(38333, 'https://ror.org/02ywnmf80', 'en', 1, 'https://ror.org/02ywnmf80 French Institute for Research in Africa'),
(38334, 'https://ror.org/023rvkh50', 'fr', 1, 'https://ror.org/023rvkh50 Institut Africain de Gestion Urbaine'),
(38335, 'https://ror.org/01c3h5z21', 'fr', 1, 'https://ror.org/01c3h5z21 Institut National de Recherche ForestiĆØre'),
(38336, 'https://ror.org/03whbx426', 'fr', 1, 'https://ror.org/03whbx426 Institut National de SantƩ Publique'),
(38337, 'https://ror.org/02t4zgr18', 'fr', 1, 'https://ror.org/02t4zgr18 Institut National de Nutrition et de Technologie Alimentaire'),
(38338, 'https://ror.org/044vzpb64', 'fr', 1, 'https://ror.org/044vzpb64 Institut de Recherche pour le DƩveloppement'),
(38339, 'https://ror.org/021ng2673', 'en', 1, 'https://ror.org/021ng2673 Institut Panos Afrique de l''Ouest Panos Institute West Africa'),
(38340, 'https://ror.org/05gvkv284', 'fr', 1, 'https://ror.org/05gvkv284 Institut de Recherche Agronomique de GuinƩe'),
(38341, 'https://ror.org/05dhgjm21', 'en', 1, 'https://ror.org/05dhgjm21 Institut Marocain des Relations Internationales MOROCCAN INSTITUTE OF INTERNATIONAL RELATIONS'),
(38342, 'https://ror.org/025xwwx95', 'no_lang_code', 1, 'https://ror.org/025xwwx95 International Consultants (Egypt)'),
(38343, 'https://ror.org/04xghb049', 'fr', 1, 'https://ror.org/04xghb049 Institut Mauritanien de Recherches Océanographiques et des Pêches'),
(38344, 'https://ror.org/04z91h293', 'pt', 1, 'https://ror.org/04z91h293 Instituto Nacional de Desenvolvimento das Pescas'),
(38345, 'https://ror.org/02g43d244', 'en', 1, 'https://ror.org/02g43d244 International Crops Research Institute for the Semi-Arid Tropics'),
(38346, 'https://ror.org/00c4ccg58', 'fr', 1, 'https://ror.org/00c4ccg58 Institut Polytechnique Rural de Formation et de Recherche AppliquƩe'),
(38347, 'https://ror.org/00946w275', 'pt', 1, 'https://ror.org/00946w275 Instituto Nacional de Estudos e Pesquisa'),
(38348, 'https://ror.org/05hza8t97', 'en', 1, 'https://ror.org/05hza8t97 Instituto Nacional de Gestão de Calamidades National Disasters Management Institute'),
(38349, 'https://ror.org/04c99m021', 'no_lang_code', 1, 'https://ror.org/04c99m021 International Drilling Services (Tunisia)'),
(38350, 'https://ror.org/01zqd7t66', 'en', 1, 'https://ror.org/01zqd7t66 Instituto Nacional de Meteorologia de MoƧambique Mozambique National Institute of Meteorology'),
(38351, 'https://ror.org/00qrts576', 'en', 1, 'https://ror.org/00qrts576 Kara Counselling and Training Trust'),
(38352, 'https://ror.org/00qcy3519', 'en', 1, 'https://ror.org/00qcy3519 International Partnership for Human Development'),
(38353, 'https://ror.org/03fbg1b47', 'fr', 1, 'https://ror.org/03fbg1b47 Institut SupƩrieur de Gestion et de Planification'),
(38354, 'https://ror.org/02544k771', 'en', 1, 'https://ror.org/02544k771 Kasisi Agricultural Training Centre'),
(38355, 'https://ror.org/03gwh5v62', 'fr', 1, 'https://ror.org/03gwh5v62 Iskane IngƩnierie'),
(38356, 'https://ror.org/02yxawe84', 'en', 1, 'https://ror.org/02yxawe84 Integrated Community Based Initiatives'),
(38357, 'https://ror.org/05rnhb415', 'no_lang_code', 1, 'https://ror.org/05rnhb415 ISS International (South Africa)'),
(38358, 'https://ror.org/042dgb341', 'fr', 1, 'https://ror.org/042dgb341 Institut Superieur Des Sciences De La Population'),
(38359, 'https://ror.org/00fa3cy95', 'en', 1, 'https://ror.org/00fa3cy95 Kenya AIDS NGOs Consortium'),
(38360, 'https://ror.org/041dvyp82', 'fr', 1, 'https://ror.org/041dvyp82 Institut Technique des Grandes Cultures'),
(38361, 'https://ror.org/00mbwxd54', 'en', 1, 'https://ror.org/00mbwxd54 Italian Institute of Culture'),
(38362, 'https://ror.org/02bqmev78', 'en', 1, 'https://ror.org/02bqmev78 Kenya AIDS Vaccine Initiative'),
(38363, 'https://ror.org/02yd7p033', 'fr', 1, 'https://ror.org/02yd7p033 Institut Togolais de Recherche Agronomique'),
(38364, 'https://ror.org/05db06c70', 'en', 1, 'https://ror.org/05db06c70 Kenya Coastal Development Project'),
(38365, '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'),
(38366, 'https://ror.org/03fntkd46', 'en', 1, 'https://ror.org/03fntkd46 Commission du Bassin du Lac Tchad Lake Chad Basin Commission'),
(38367, 'https://ror.org/03grty434', 'en', 1, 'https://ror.org/03grty434 Jembi Health Systems'),
(38368, 'https://ror.org/002wdx176', 'en', 1, 'https://ror.org/002wdx176 Practical Action'),
(38369, 'https://ror.org/00sb8wv57', 'en', 1, 'https://ror.org/00sb8wv57 Kenya Institute for Public Policy Research and Analysis'),
(38370, 'https://ror.org/04rew5e44', 'en', 1, 'https://ror.org/04rew5e44 AutoritƩ du Lac Tanganyika Lake Tanganyika Authority'),
(38371, 'https://ror.org/01a304769', 'en', 1, 'https://ror.org/01a304769 Kenya Institute Of Organic Farming'),
(38372, 'https://ror.org/0232jr667', 'en', 1, 'https://ror.org/0232jr667 Practical Action'),
(38373, 'https://ror.org/00wsrxw08', 'en', 1, 'https://ror.org/00wsrxw08 Rwanda Meteorological Service'),
(38374, 'https://ror.org/05g795n60', 'en', 1, 'https://ror.org/05g795n60 Justice Development and Peace Caritas'),
(38375, 'https://ror.org/031awfc58', 'en', 1, 'https://ror.org/031awfc58 Lake Victoria Fisheries Organization'),
(38376, 'https://ror.org/055699s02', 'en', 1, 'https://ror.org/055699s02 Market Matters'),
(38377, 'https://ror.org/0440v7339', 'en', 1, 'https://ror.org/0440v7339 Kenya Plant Health Inspectorate Services'),
(38378, 'https://ror.org/00ddw9x26', 'fr', 1, 'https://ror.org/00ddw9x26 Direction GƩnƩrale de la MƩtƩorologie'),
(38379, 'https://ror.org/05c8bms59', 'en', 1, 'https://ror.org/05c8bms59 Kenya Psychiatry Association​'),
(38380, 'https://ror.org/03q98b746', 'en', 1, 'https://ror.org/03q98b746 Maroc Numeric Cluster'),
(38381, 'https://ror.org/054cccb97', 'en', 1, 'https://ror.org/054cccb97 Grounded Media'),
(38382, 'https://ror.org/00tm7y673', 'en', 1, 'https://ror.org/00tm7y673 Methodist Church in Zimbabwe'),
(38383, 'https://ror.org/010w5pd13', 'en', 1, 'https://ror.org/010w5pd13 Kalahari Conservation Society'),
(38384, 'https://ror.org/027z3vs57', 'en', 1, 'https://ror.org/027z3vs57 Kenya Sea Turtle Conservation Committee'),
(38385, 'https://ror.org/042e5sj03', 'no_lang_code', 1, 'https://ror.org/042e5sj03 mHealth (Kenya)'),
(38386, 'https://ror.org/047yw9a66', 'no_lang_code', 1, 'https://ror.org/047yw9a66 Kenya Seed Company (Kenya)'),
(38387, 'https://ror.org/04f3rva03', 'en', 1, 'https://ror.org/04f3rva03 MICAIA Foundation'),
(38388, 'https://ror.org/03h8x3k49', 'en', 1, 'https://ror.org/03h8x3k49 Kamiesberg Local Municipality'),
(38389, 'https://ror.org/036czv220', 'no_lang_code', 1, 'https://ror.org/036czv220 Microchem (South Africa)'),
(38390, 'https://ror.org/01tdr6x55', 'en', 1, 'https://ror.org/01tdr6x55 Kenyan Medical Women''s Association'),
(38391, 'https://ror.org/000xh7t03', 'no_lang_code', 1, 'https://ror.org/000xh7t03 Lesieur Cristal'),
(38392, 'https://ror.org/01e4tdn74', 'en', 1, 'https://ror.org/01e4tdn74 Ministry of Agriculture Livestock and Fisheries'),
(38393, 'https://ror.org/03tv0yw82', 'no_lang_code', 1, 'https://ror.org/03tv0yw82 Kheth’Impilo'),
(38394, 'https://ror.org/040xtna86', 'fr', 1, 'https://ror.org/040xtna86 Ministère de l''Agriculture, du Développement Rural et de la Pêche'),
(38395, 'https://ror.org/009wrgz05', 'en', 1, 'https://ror.org/009wrgz05 Lighthouse Trust'),
(38396, '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'),
(38397, 'https://ror.org/05awvfd69', 'en', 1, 'https://ror.org/05awvfd69 Kumi District Local Government'),
(38398, 'https://ror.org/05tkawa34', 'no_lang_code', 1, 'https://ror.org/05tkawa34 Mimar Engineering Consultancy (Egypt)'),
(38399, 'https://ror.org/00gfqem49', 'no_lang_code', 1, 'https://ror.org/00gfqem49 Kusamotu & Kusamotu'),
(38400, 'https://ror.org/04qwsbk34', 'en', 1, 'https://ror.org/04qwsbk34 Medical Access Uganda'),
(38401, 'https://ror.org/05gap9e81', 'fr', 1, 'https://ror.org/05gap9e81 MinistĆØre de l’Enseignement SupĆ©rieur et de la Recherche Scientifique'),
(38402, 'https://ror.org/05et1sq07', 'en', 1, 'https://ror.org/05et1sq07 Medical Research Council of Zimbabwe'),
(38403, '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'),
(38404, 'https://ror.org/05dngsw26', 'fr', 1, 'https://ror.org/05dngsw26 MinistĆØre de l''Ɖquipement'),
(38405, 'https://ror.org/02353ej91', 'en', 1, 'https://ror.org/02353ej91 LVCT Health'),
(38406, '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'),
(38407, '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'),
(38408, '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'),
(38409, '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'),
(38410, 'https://ror.org/04e3vbx44', 'fr', 1, 'https://ror.org/04e3vbx44 MinistĆØre de la Culture'),
(38411, 'https://ror.org/04magp836', 'pt', 1, 'https://ror.org/04magp836 Centro Terra Viva'),
(38412, 'https://ror.org/020psrf40', 'fr', 1, 'https://ror.org/020psrf40 Laboratoire National d''Appui au DƩveloppement Agricole'),
(38413, 'https://ror.org/05msvkx71', 'fr', 1, 'https://ror.org/05msvkx71 Ministère de la Santé Publique'),
(38414, 'https://ror.org/01q07sy43', 'fr', 1, 'https://ror.org/01q07sy43 Ministre de la SantƩ'),
(38415, 'https://ror.org/00yrwkd81', 'fr', 1, 'https://ror.org/00yrwkd81 Ministère de la Santé'),
(38416, 'https://ror.org/00yv7s489', 'en', 1, 'https://ror.org/00yv7s489 Ministry of Health and Sanitation'),
(38417, 'https://ror.org/02hfjdw52', 'fr', 1, 'https://ror.org/02hfjdw52 MinistĆØre de Environnement et de l''Assainissement du Mali'),
(38418, 'https://ror.org/022armd05', 'en', 1, 'https://ror.org/022armd05 Madagascar Biodiversity Partnership'),
(38419, 'https://ror.org/04t39kh72', 'fr', 1, 'https://ror.org/04t39kh72 MinistĆØre de l’Environnement et du DĆ©veloppement Durable'),
(38420, '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'),
(38421, 'https://ror.org/04na2p952', 'en', 1, 'https://ror.org/04na2p952 Ministry of Information, Communications and Technology'),
(38422, 'https://ror.org/022gwv794', 'en', 1, 'https://ror.org/022gwv794 Ministry of Lands and Rural Resettlement'),
(38423, 'https://ror.org/01wk9js81', 'en', 1, 'https://ror.org/01wk9js81 Ministry of Environment Science Technology and Innovation'),
(38424, 'https://ror.org/04d94aw40', 'en', 1, 'https://ror.org/04d94aw40 Ministry of Lands, Housing & Urban Development'),
(38425, 'https://ror.org/05pkrbq13', 'no_lang_code', 1, 'https://ror.org/05pkrbq13 Maison Arabe de Software et de Hardware (Tunisia)'),
(38426, 'https://ror.org/05x0jxp48', 'fr', 1, 'https://ror.org/05x0jxp48 MinistĆØre de l’Éducation Nationale et de l''Enseignement Technique'),
(38427, 'https://ror.org/01cd26272', 'no_lang_code', 1, 'https://ror.org/01cd26272 MultiMedia InnoVations (South Africa)'),
(38428, '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'),
(38429, 'https://ror.org/00d4y9q10', 'no_lang_code', 1, 'https://ror.org/00d4y9q10 MAKGABANENG'),
(38430, 'https://ror.org/01dnjhj88', 'en', 1, 'https://ror.org/01dnjhj88 Nakuru County Council'),
(38431, 'https://ror.org/03eeyzx69', 'en', 1, 'https://ror.org/03eeyzx69 Ministy of Fisheries and Marine Resources'),
(38432, 'https://ror.org/00ezwn594', 'en', 1, 'https://ror.org/00ezwn594 Ministry of Natural Resources and Tourism Wizara ya Maliasili na Utalii'),
(38433, 'https://ror.org/04hes6w33', 'en', 1, 'https://ror.org/04hes6w33 Nama Khoi Local Municipality'),
(38434, 'https://ror.org/041169e26', 'en', 1, 'https://ror.org/041169e26 Ministry of Water and Energy'),
(38435, 'https://ror.org/053ykx779', 'en', 1, 'https://ror.org/053ykx779 Ministry of Health'),
(38436, 'https://ror.org/01zyzqr72', 'en', 1, 'https://ror.org/01zyzqr72 Malawi Blood Transfusion Service'),
(38437, 'https://ror.org/05y2q9q81', 'en', 1, 'https://ror.org/05y2q9q81 Namibia Institute of Pathology'),
(38438, 'https://ror.org/056y2wm23', 'en', 1, 'https://ror.org/056y2wm23 Ministry of Water and Environment'),
(38439, 'https://ror.org/056e86068', 'en', 1, 'https://ror.org/056e86068 Ministry of Food and Agriculture'),
(38440, 'https://ror.org/04v70b898', 'no_lang_code', 1, 'https://ror.org/04v70b898 Nano Energy (South Africa)'),
(38441, 'https://ror.org/045jcv930', 'en', 1, 'https://ror.org/045jcv930 Mali Health'),
(38442, 'https://ror.org/05532cf37', 'en', 1, 'https://ror.org/05532cf37 National Smallholder Farmers Association of Malawi'),
(38443, 'https://ror.org/04ffdar46', 'en', 1, 'https://ror.org/04ffdar46 Ministry of Health and Social Welfare'),
(38444, 'https://ror.org/00cgdyn62', 'pt', 1, 'https://ror.org/00cgdyn62 Ministério da Administração Interna'),
(38445, 'https://ror.org/05ee4t010', 'en', 1, 'https://ror.org/05ee4t010 National AIDS Council'),
(38446, 'https://ror.org/04se07z51', 'no_lang_code', 1, 'https://ror.org/04se07z51 Misc (Egypt)'),
(38447, 'https://ror.org/03k3wrz84', 'pt', 1, 'https://ror.org/03k3wrz84 Ministério do Ensino Superior Ciência e Inovação'),
(38448, 'https://ror.org/034n9j029', 'en', 1, 'https://ror.org/034n9j029 National Blood Service Zimbabwe'),
(38449, 'https://ror.org/00sf50t55', 'en', 1, 'https://ror.org/00sf50t55 Kenya National Blood Transfusion Services'),
(38450, 'https://ror.org/014pn8930', 'en', 1, 'https://ror.org/014pn8930 National Blood Transfusion Service'),
(38451, 'https://ror.org/0422vxn54', 'en', 1, 'https://ror.org/0422vxn54 Ministry of Irrigation and Water Development'),
(38452, 'https://ror.org/004fggg55', 'en', 1, 'https://ror.org/004fggg55 Ministry of Agriculture, Animal Industry and Fisheries'),
(38453, 'https://ror.org/01tqmg467', 'en', 1, 'https://ror.org/01tqmg467 Ministry of Health and Social Services'),
(38454, 'https://ror.org/02e957z30', 'en', 1, 'https://ror.org/02e957z30 Ministry of Agriculture and Land Reclamation وزارة الزراعة ŁˆŲ§Ų³ŲŖŲµŁ„Ų§Ų­ Ų§Ł„Ų£Ų±Ų§Ų¶ŁŠ Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(38455, 'https://ror.org/00fyzzw59', 'en', 1, 'https://ror.org/00fyzzw59 Ministry of Agriculture'),
(38456, 'https://ror.org/004adc024', 'en', 1, 'https://ror.org/004adc024 National Medical Stores'),
(38457, 'https://ror.org/0549pzy23', 'en', 1, 'https://ror.org/0549pzy23 National Veterinary Institute'),
(38458, 'https://ror.org/037qtfe97', 'en', 1, 'https://ror.org/037qtfe97 Department of Arts and Culture'),
(38459, 'https://ror.org/05f11bs74', 'en', 1, 'https://ror.org/05f11bs74 National Computer Board'),
(38460, 'https://ror.org/023zxqh11', 'en', 1, 'https://ror.org/023zxqh11 National Office for Technology Acquisition and Promotion'),
(38461, 'https://ror.org/02wrr2w36', 'en', 1, 'https://ror.org/02wrr2w36 Ministry of Community Development, Mother and Child Health'),
(38462, 'https://ror.org/025etn077', 'en', 1, 'https://ror.org/025etn077 Network of AIDS Researchers of Eastern and Southern Africa'),
(38463, 'https://ror.org/01434tj03', 'fr', 1, 'https://ror.org/01434tj03 Office National pour l''Environnement'),
(38464, 'https://ror.org/04xsfz394', 'en', 1, 'https://ror.org/04xsfz394 National Institute for Scientific and Industrial Research'),
(38465, 'https://ror.org/008js8n22', 'en', 1, 'https://ror.org/008js8n22 National Organization of Peer Educators'),
(38466, 'https://ror.org/058cd5p17', 'en', 1, 'https://ror.org/058cd5p17 Network of Networks of HIV Positives'),
(38467, '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'),
(38468, 'https://ror.org/01camwr54', 'en', 1, 'https://ror.org/01camwr54 Tropical Pesticides Research Institute'),
(38469, 'https://ror.org/044aa1z42', 'en', 1, 'https://ror.org/044aa1z42 National Agricultural Research Institute'),
(38470, 'https://ror.org/03xmwfe88', 'en', 1, 'https://ror.org/03xmwfe88 National Wool Growers Associations of South Africa'),
(38471, 'https://ror.org/05j78sg27', 'en', 1, 'https://ror.org/05j78sg27 National Primary Health Care Development Agency'),
(38472, 'https://ror.org/00b3tsf98', 'en', 1, 'https://ror.org/00b3tsf98 Minisiteri y''Uburezi Ministry of Education MinistĆØre de l''Ɖducation'),
(38473, 'https://ror.org/05vzn8153', 'en', 1, 'https://ror.org/05vzn8153 Department of Correctional Services Suid-Afrikaanse Departement van Korrektiewe Dienste'),
(38474, 'https://ror.org/00babnh83', 'en', 1, 'https://ror.org/00babnh83 Nature Conservation Research Centre'),
(38475, 'https://ror.org/00w6thw04', 'en', 1, 'https://ror.org/00w6thw04 Ministry of Environment and Natural Resources & Regional Development Authorities'),
(38476, 'https://ror.org/04hf31n78', 'en', 1, 'https://ror.org/04hf31n78 National Drought Management Authority'),
(38477, 'https://ror.org/00xwm9r16', 'en', 1, 'https://ror.org/00xwm9r16 Network for Water and Sanitation International'),
(38478, 'https://ror.org/00x4w7v32', 'en', 1, 'https://ror.org/00x4w7v32 Netwas Uganda'),
(38479, 'https://ror.org/00t5pe133', 'en', 1, 'https://ror.org/00t5pe133 National Environment Management Council'),
(38480, 'https://ror.org/00kz8zc32', 'no_lang_code', 1, 'https://ror.org/00kz8zc32 Philanjalo'),
(38481, 'https://ror.org/03kk24v11', 'fr', 1, 'https://ror.org/03kk24v11 PhotoTherme Toutes nos Energies Pour Economiser la Votre'),
(38482, 'https://ror.org/02hd4h748', 'en', 1, 'https://ror.org/02hd4h748 Phyto consulting'),
(38483, 'https://ror.org/034n3k032', 'no_lang_code', 1, 'https://ror.org/034n3k032 Pikitup'),
(38484, 'https://ror.org/05jqx2y43', 'fr', 1, 'https://ror.org/05jqx2y43 Observatoire Satellital des ForĆŖts d’Afrique Centrale'),
(38485, 'https://ror.org/044d6xz07', 'en', 1, 'https://ror.org/044d6xz07 National HIV/AIDS/STI/TB Council'),
(38486, 'https://ror.org/041g2nn20', 'en', 1, 'https://ror.org/041g2nn20 Research on Poverty Alleviation'),
(38487, 'https://ror.org/038d9tx28', 'no_lang_code', 1, 'https://ror.org/038d9tx28 Nile Valley Engineering (Egypt)'),
(38488, 'https://ror.org/05sar2b82', 'no_lang_code', 1, 'https://ror.org/05sar2b82 Research Research (South Africa)'),
(38489, 'https://ror.org/034vwwk41', 'fr', 1, 'https://ror.org/034vwwk41 Goma Volcanological Observatory Observatoire Volcanologique de Goma'),
(38490, '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'),
(38491, 'https://ror.org/02db8ta43', 'no_lang_code', 1, 'https://ror.org/02db8ta43 Nobex Technology (Nigeria)'),
(38492, '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'),
(38493, 'https://ror.org/01tzw5x87', 'fr', 1, 'https://ror.org/01tzw5x87 RĆ©seau des Plateformess d’ONG d’Afrique de l’Ouest et du Centre'),
(38494, 'https://ror.org/04p9htb70', 'en', 1, 'https://ror.org/04p9htb70 Seychelles Fishing Authority'),
(38495, 'https://ror.org/020az2v11', 'no_lang_code', 1, 'https://ror.org/020az2v11 North South Consultants Exchange (Egypt)'),
(38496, 'https://ror.org/05jh6j253', 'en', 1, 'https://ror.org/05jh6j253 Resource Conflict Institute'),
(38497, 'https://ror.org/00p9yb286', 'en', 1, 'https://ror.org/00p9yb286 Moroccan National Railways Office Office National des Chemins de Fer du Maroc'),
(38498, 'https://ror.org/03m3r4n45', 'en', 1, 'https://ror.org/03m3r4n45 Shout It Now'),
(38499, 'https://ror.org/04827d323', 'no_lang_code', 1, 'https://ror.org/04827d323 Ressources IngƩnierie (Morocco)'),
(38500, 'https://ror.org/02nmyab03', 'en', 1, 'https://ror.org/02nmyab03 Nyanza Reproductive Health Society'),
(38501, 'https://ror.org/002anhf82', 'en', 1, 'https://ror.org/002anhf82 Observatoire du Sahara et du Sahel Sahara and Sahel Observatory'),
(38502, 'https://ror.org/00qd3m987', 'no_lang_code', 1, 'https://ror.org/00qd3m987 Premiere'),
(38503, 'https://ror.org/05qx9ce83', 'fr', 1, 'https://ror.org/05qx9ce83 Observatoire National de la Jeunesse'),
(38504, 'https://ror.org/05e2y6e35', 'en', 1, 'https://ror.org/05e2y6e35 Social Development and Improvement Agency'),
(38505, 'https://ror.org/0026pwq79', 'fr', 1, 'https://ror.org/0026pwq79 Observatoire National des Droits de l''Enfant'),
(38506, '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 Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„ŁƒŁ‡Ų±ŲØŲ§Ų” ŁˆŲ§Ł„ŲŗŲ§Ų² أو Ų³ŁˆŁ†Ł„ŲŗŲ§Ų²'),
(38507, 'https://ror.org/01ew07e68', 'en', 1, 'https://ror.org/01ew07e68 National Sanitation Utility Office National de l''Assainissement'),
(38508, 'https://ror.org/016bssv73', 'en', 1, 'https://ror.org/016bssv73 Southern African Clothing & Textile Workers’ Union'),
(38509, 'https://ror.org/02bjqnd50', 'en', 1, 'https://ror.org/02bjqnd50 Pro Health International'),
(38510, 'https://ror.org/03mef6610', 'en', 1, 'https://ror.org/03mef6610 South African Weather Service'),
(38511, 'https://ror.org/029vq7v31', 'fr', 1, 'https://ror.org/029vq7v31 Société de Développement des Forêts'),
(38512, 'https://ror.org/040zy7h93', 'fr', 1, 'https://ror.org/040zy7h93 SociƩtƩ GƩnƩrale des Travaux du Maroc'),
(38513, 'https://ror.org/00d7zep18', 'en', 1, 'https://ror.org/00d7zep18 Southern African NGO Network'),
(38514, 'https://ror.org/046vt0d34', 'en', 1, 'https://ror.org/046vt0d34 Programme for Accessible Health Communication and Education'),
(38515, 'https://ror.org/05nsgrk27', 'en', 1, 'https://ror.org/05nsgrk27 Sahel Eco'),
(38516, 'https://ror.org/05k9pq902', 'en', 1, 'https://ror.org/05k9pq902 Southern African Catholic Bishops Conference'),
(38517, 'https://ror.org/00xh26g31', 'fr', 1, 'https://ror.org/00xh26g31 Office National d''ƩlectricitƩ Office National de l''Electricite et de l''Eau Potable'),
(38518, 'https://ror.org/0354a0368', 'en', 1, 'https://ror.org/0354a0368 Sahelian Solutions Foundation'),
(38519, 'https://ror.org/00hrx1t96', 'fr', 1, 'https://ror.org/00hrx1t96 SociĆ©tĆ© Nationale d’Études du DĆ©troit de Gibraltar'),
(38520, 'https://ror.org/042n52121', 'en', 1, 'https://ror.org/042n52121 Southern African Development Community'),
(38521, 'https://ror.org/00yqvs913', 'en', 1, 'https://ror.org/00yqvs913 Scripture Union'),
(38522, 'https://ror.org/02x5rws94', 'en', 1, 'https://ror.org/02x5rws94 Southern African Research and Innovation Management Association'),
(38523, 'https://ror.org/04g4v2334', 'no_lang_code', 1, 'https://ror.org/04g4v2334 Sakhr Software (Egypt)'),
(38524, 'https://ror.org/03x30pe27', 'fr', 1, 'https://ror.org/03x30pe27 Office National de la MƩtƩorologie'),
(38525, 'https://ror.org/029tggs59', 'en', 1, 'https://ror.org/029tggs59 South African Business Coalition'),
(38526, 'https://ror.org/05sdk4y29', 'fr', 1, 'https://ror.org/05sdk4y29 Progamme National Contre le Tuberculose'),
(38527, 'https://ror.org/02jd4k732', 'en', 1, 'https://ror.org/02jd4k732 National Office of Hydrocarbons and Mines Office National des Hydrocarbures et des Mines'),
(38528, 'https://ror.org/02fm1e093', 'no_lang_code', 1, 'https://ror.org/02fm1e093 Sanru'),
(38529, 'https://ror.org/019374v57', 'fr', 1, 'https://ror.org/019374v57 SantƩ Espoir Vie CƓte d''Ivoire'),
(38530, 'https://ror.org/01jnt0x10', 'fr', 1, 'https://ror.org/01jnt0x10 Office RƩgional de Mise en Valeur Agricole de Ouarzazate'),
(38531, 'https://ror.org/03f8nwf60', 'no_lang_code', 1, 'https://ror.org/03f8nwf60 Solar23 Tunisie (Tunisia)'),
(38532, 'https://ror.org/03wb61205', 'no_lang_code', 1, 'https://ror.org/03wb61205 Sappi (South Africa)'),
(38533, 'https://ror.org/008zzz711', 'en', 1, 'https://ror.org/008zzz711 Somalia Water and Land Information'),
(38534, 'https://ror.org/05ya3va27', 'no_lang_code', 1, 'https://ror.org/05ya3va27 Sarost (Tunisia)'),
(38535, 'https://ror.org/05hen7093', 'no_lang_code', 1, 'https://ror.org/05hen7093 Sonatrach (Algeria) المؤسسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„ŲŖŁ†Ł‚ŁŠŲØ, صناعة, نقل, ŲŖŲ­ŁˆŁŠŁ„ و ŲŖŲ³ŁˆŁŠŁ‚ Ų§Ł„Ł…Ų­Ų±ŁˆŁ‚Ų§ŲŖ'),
(38536, 'https://ror.org/026w1rh64', 'en', 1, 'https://ror.org/026w1rh64 Protecting Families against HIV AIDS'),
(38537, 'https://ror.org/041j39g66', 'en', 1, 'https://ror.org/041j39g66 St. Mary’s Hospital'),
(38538, 'https://ror.org/046y0et18', 'no_lang_code', 1, 'https://ror.org/046y0et18 OnApp (Gibraltar)'),
(38539, 'https://ror.org/02bvtqs16', 'en', 1, 'https://ror.org/02bvtqs16 Songhai Health Trust'),
(38540, 'https://ror.org/03pmbkw20', 'no_lang_code', 1, 'https://ror.org/03pmbkw20 Sophumelela Centre'),
(38541, 'https://ror.org/02x26d386', 'no_lang_code', 1, 'https://ror.org/02x26d386 Flora Pyramids Paper Mills'),
(38542, 'https://ror.org/057ec1n13', 'pt', 1, 'https://ror.org/057ec1n13 Radio MoƧambique'),
(38543, 'https://ror.org/04mraae85', 'no_lang_code', 1, 'https://ror.org/04mraae85 SOS Sahel Ethiopia'),
(38544, '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'),
(38545, 'https://ror.org/03ps79624', 'en', 1, 'https://ror.org/03ps79624 Rainman Landcare Foundation'),
(38546, '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'),
(38547, 'https://ror.org/03bt9y476', 'en', 1, 'https://ror.org/03bt9y476 South African Democratic Teachers Union'),
(38548, 'https://ror.org/05550md95', 'en', 1, 'https://ror.org/05550md95 Sudan Meteorological Authority'),
(38549, 'https://ror.org/02jp3w516', 'en', 1, 'https://ror.org/02jp3w516 Department of Agriculture, Land Reform and Rural Development'),
(38550, 'https://ror.org/04dxtny83', 'no_lang_code', 1, 'https://ror.org/04dxtny83 Section27'),
(38551, 'https://ror.org/04xc6a353', 'en', 1, 'https://ror.org/04xc6a353 Regional Alliance for Sustainable Development'),
(38552, 'https://ror.org/048w4ef35', 'en', 1, 'https://ror.org/048w4ef35 South African Institute of Tax Practitioners'),
(38553, 'https://ror.org/01p99tm60', 'no_lang_code', 1, 'https://ror.org/01p99tm60 Sekem'),
(38554, 'https://ror.org/00pbsg918', 'en', 1, 'https://ror.org/00pbsg918 Organization for Social Services for AIDS'),
(38555, 'https://ror.org/05cfwmz90', 'no_lang_code', 1, 'https://ror.org/05cfwmz90 REACH ETHIOPIA'),
(38556, 'https://ror.org/01hv65386', 'en', 1, 'https://ror.org/01hv65386 Southern African Aids Trust'),
(38557, 'https://ror.org/04p2zt755', 'en', 1, 'https://ror.org/04p2zt755 South African National Energy Development Institute'),
(38558, 'https://ror.org/01xes5j22', 'en', 1, 'https://ror.org/01xes5j22 Panos Eastern Africa'),
(38559, 'https://ror.org/021bpcw57', 'en', 1, 'https://ror.org/021bpcw57 Tea Research Foundation of Central Africa'),
(38560, 'https://ror.org/00p536462', 'en', 1, 'https://ror.org/00p536462 Re Action'),
(38561, 'https://ror.org/01vvpqc21', 'no_lang_code', 1, 'https://ror.org/01vvpqc21 Panos Institute Southern Africa'),
(38562, 'https://ror.org/04fbzd287', 'en', 1, 'https://ror.org/04fbzd287 Banc d''Arguin National Park Parc National du Banc d''Arguin'),
(38563, 'https://ror.org/05sw24q25', 'no_lang_code', 1, 'https://ror.org/05sw24q25 Technoscene (South Africa)'),
(38564, 'https://ror.org/05wa1wa97', 'en', 1, 'https://ror.org/05wa1wa97 Uganda Episcopal Conference'),
(38565, 'https://ror.org/01zvh5583', 'en', 1, 'https://ror.org/01zvh5583 Research for Equity And Community Health Trust'),
(38566, 'https://ror.org/05m906m06', 'fr', 1, 'https://ror.org/05m906m06 RƩgie Autonome Multi Services D''Agadir'),
(38567, 'https://ror.org/0508qa918', 'no_lang_code', 1, 'https://ror.org/0508qa918 Syngenta (Zimbabwe)'),
(38568, 'https://ror.org/01zg1t177', 'en', 1, 'https://ror.org/01zg1t177 Catholic Development Office'),
(38569, 'https://ror.org/00ksgqc53', 'en', 1, 'https://ror.org/00ksgqc53 Partners for Health and Development in Africa'),
(38570, 'https://ror.org/03mfa1h60', 'no_lang_code', 1, 'https://ror.org/03mfa1h60 Ungweru'),
(38571, 'https://ror.org/04yz1w831', 'en', 1, 'https://ror.org/04yz1w831 Partnership for Healthcare Improvement'),
(38572, 'https://ror.org/04ffrf281', 'no_lang_code', 1, 'https://ror.org/04ffrf281 Deutsche Telekom (South Africa)'),
(38573, 'https://ror.org/03j397k95', 'en', 1, 'https://ror.org/03j397k95 South African Holocaust and Genocide Foundation'),
(38574, 'https://ror.org/029eeye73', 'no_lang_code', 1, 'https://ror.org/029eeye73 Talbot & Talbot (South Africa)'),
(38575, 'https://ror.org/058vg7409', 'en', 1, 'https://ror.org/058vg7409 Christian Missionary Fellowship International'),
(38576, 'https://ror.org/05ecysg06', 'en', 1, 'https://ror.org/05ecysg06 Regional Commissioners Office'),
(38577, 'https://ror.org/04fr7ha98', 'no_lang_code', 1, 'https://ror.org/04fr7ha98 Pearl Seeds (Uganda)'),
(38578, 'https://ror.org/05vch7162', 'en', 1, 'https://ror.org/05vch7162 South African San Institute'),
(38579, 'https://ror.org/05tysfd19', 'en', 1, 'https://ror.org/05tysfd19 African Minerals and Geosciences Centre'),
(38580, 'https://ror.org/05n3fvh77', 'en', 1, 'https://ror.org/05n3fvh77 Nature Kenya The East Africa Natural History Society'),
(38581, 'https://ror.org/03m7k8v87', 'en', 1, 'https://ror.org/03m7k8v87 Tanzania Association of Foresters'),
(38582, 'https://ror.org/02v2jz242', 'no_lang_code', 1, 'https://ror.org/02v2jz242 Ssemwanga (Uganda)'),
(38583, 'https://ror.org/05q89dp90', 'en', 1, 'https://ror.org/05q89dp90 Pharmacy and Poisons Board'),
(38584, 'https://ror.org/003te8934', 'no_lang_code', 1, 'https://ror.org/003te8934 Umvoto Africa'),
(38585, 'https://ror.org/01j5adv11', 'en', 1, 'https://ror.org/01j5adv11 Authorised Association Consortium'),
(38586, 'https://ror.org/056v09p63', 'en', 1, 'https://ror.org/056v09p63 Surgical Society of Zambia'),
(38587, 'https://ror.org/02rw00q54', 'en', 1, 'https://ror.org/02rw00q54 Tanzania Commission for AIDS'),
(38588, 'https://ror.org/020qt9g11', 'en', 1, 'https://ror.org/020qt9g11 United Nations Human Settlements Programme'),
(38589, 'https://ror.org/018rk1f74', 'en', 1, 'https://ror.org/018rk1f74 Eastern and Southern Africa small scale Farmers’ Forum'),
(38590, 'https://ror.org/02bzmps39', 'en', 1, 'https://ror.org/02bzmps39 Egyptian Center for Public Opinion Research Baseera'),
(38591, 'https://ror.org/02h7w3c75', 'en', 1, 'https://ror.org/02h7w3c75 Tanzania Forestry Research Institute'),
(38592, 'https://ror.org/00v75kn09', 'no_lang_code', 1, 'https://ror.org/00v75kn09 TogaLabs (South Africa)');
INSERT INTO `rors` VALUES
(38593, 'https://ror.org/00xdt7j93', 'en', 1, 'https://ror.org/00xdt7j93 United Nations Children''s Fund Zambia'),
(38594, 'https://ror.org/007ggdv19', 'en', 1, 'https://ror.org/007ggdv19 Tanzania Industrial Research and Development Organization'),
(38595, 'https://ror.org/03wyye266', 'en', 1, 'https://ror.org/03wyye266 Townhouse Gallery'),
(38596, 'https://ror.org/0470p4z29', 'no_lang_code', 1, 'https://ror.org/0470p4z29 T-MARC'),
(38597, 'https://ror.org/0380sxs47', 'en', 1, 'https://ror.org/0380sxs47 African Union of Public Transport'),
(38598, 'https://ror.org/056d4e670', 'en', 1, 'https://ror.org/056d4e670 Ghana Center for Democratic Development'),
(38599, 'https://ror.org/028prp877', 'en', 1, 'https://ror.org/028prp877 Tanzania National Parks'),
(38600, 'https://ror.org/025byta18', 'en', 1, 'https://ror.org/025byta18 Tanzania Natural Resource Forum'),
(38601, 'https://ror.org/04xx6j115', 'fr', 1, 'https://ror.org/04xx6j115 Union Economique et MonƩtaire Ouest Africaine'),
(38602, 'https://ror.org/01vgq3930', 'en', 1, 'https://ror.org/01vgq3930 Tanzania Red Cross Society'),
(38603, 'https://ror.org/04vhk3x11', 'en', 1, 'https://ror.org/04vhk3x11 Information and Communication Technology Authority'),
(38604, 'https://ror.org/01y010s06', 'en', 1, 'https://ror.org/01y010s06 Tanzania Traditional Energy Development and Environment Organisation'),
(38605, 'https://ror.org/01t9czq80', 'en', 1, 'https://ror.org/01t9czq80 International University of Rabat UniversitƩ Internationale de Rabat'),
(38606, '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'),
(38607, 'https://ror.org/03pr7e672', 'fr', 1, 'https://ror.org/03pr7e672 UniversitƩ des Sciences Juridiques et Politiques de Bamako'),
(38608, 'https://ror.org/05c48af58', 'sw', 1, 'https://ror.org/05c48af58 Twaweza'),
(38609, 'https://ror.org/02kt2ac46', 'en', 1, 'https://ror.org/02kt2ac46 Ubuntu Education Fund'),
(38610, 'https://ror.org/00z79gn62', 'en', 1, 'https://ror.org/00z79gn62 WaterAid'),
(38611, 'https://ror.org/05p432337', 'no_lang_code', 1, 'https://ror.org/05p432337 WaterAid'),
(38612, 'https://ror.org/00grm6006', 'en', 1, 'https://ror.org/00grm6006 Uganda Blood Transfusion Service'),
(38613, 'https://ror.org/028jh0y34', 'no_lang_code', 1, 'https://ror.org/028jh0y34 Zimbabwe AIDS Network'),
(38614, 'https://ror.org/04czq2g39', 'en', 1, 'https://ror.org/04czq2g39 Uganda National Association Of the Deaf'),
(38615, 'https://ror.org/00atw9e51', 'no_lang_code', 1, 'https://ror.org/00atw9e51 WaterNet Trust'),
(38616, 'https://ror.org/02zjd4750', 'en', 1, 'https://ror.org/02zjd4750 Zimbabwe National Water Authority'),
(38617, 'https://ror.org/0243g5v54', 'no_lang_code', 1, 'https://ror.org/0243g5v54 Zoomlion Domestic Services (Ghana)'),
(38618, 'https://ror.org/04ffyk186', 'en', 1, 'https://ror.org/04ffyk186 Veld Products Research & Development'),
(38619, 'https://ror.org/02kbxde97', 'en', 1, 'https://ror.org/02kbxde97 Uganda Wildlife Authority'),
(38620, 'https://ror.org/006rqpt26', 'en', 1, 'https://ror.org/006rqpt26 West and Central African Research and Education Network'),
(38621, 'https://ror.org/04m6m8q83', 'fr', 1, 'https://ror.org/04m6m8q83 Vétérinaires Sans Frontières Suisse'),
(38622, 'https://ror.org/03wgnjj45', 'en', 1, 'https://ror.org/03wgnjj45 Uganda National Meteorological Authority'),
(38623, 'https://ror.org/03rqcrq04', 'no_lang_code', 1, 'https://ror.org/03rqcrq04 Victoria Seeds (Uganda)'),
(38624, 'https://ror.org/038tkyd35', 'sw', 1, 'https://ror.org/038tkyd35 Chama Cha Uzazi na Malezi Bora Tanzania'),
(38625, 'https://ror.org/01w4c3c70', 'no_lang_code', 1, 'https://ror.org/01w4c3c70 WAM Technology (South Africa)'),
(38626, 'https://ror.org/03rt0fp67', 'en', 1, 'https://ror.org/03rt0fp67 WaterAid'),
(38627, 'https://ror.org/056y4tg97', 'en', 1, 'https://ror.org/056y4tg97 Water Resources Commission of Ghana'),
(38628, 'https://ror.org/04qw2cf87', 'no_lang_code', 1, 'https://ror.org/04qw2cf87 WESTERVELD CONSERVATION TRUST'),
(38629, 'https://ror.org/04rtx9382', 'en', 1, 'https://ror.org/04rtx9382 World Health Organization Regional Office for Africa'),
(38630, 'https://ror.org/05v3pgb06', 'no_lang_code', 1, 'https://ror.org/05v3pgb06 WR Nyabeze & Associates (South Africa)'),
(38631, 'https://ror.org/04d3cfv77', 'en', 1, 'https://ror.org/04d3cfv77 Writers Project of Ghana'),
(38632, 'https://ror.org/01b03vk69', 'no_lang_code', 1, 'https://ror.org/01b03vk69 Alfact Innovation (France)'),
(38633, 'https://ror.org/012xmyh22', 'no_lang_code', 1, 'https://ror.org/012xmyh22 31 Degrees (France)'),
(38634, 'https://ror.org/05vkc3y92', 'no_lang_code', 1, 'https://ror.org/05vkc3y92 Omnia (South Africa)'),
(38635, 'https://ror.org/003rgm223', 'no_lang_code', 1, 'https://ror.org/003rgm223 AB Science (France)'),
(38636, 'https://ror.org/02s4jq766', 'en', 1, 'https://ror.org/02s4jq766 Youth for Christ South Africa'),
(38637, 'https://ror.org/01rkw8w63', 'no_lang_code', 1, 'https://ror.org/01rkw8w63 Actia Group (France)'),
(38638, 'https://ror.org/013c7pz75', 'no_lang_code', 1, 'https://ror.org/013c7pz75 Givaudan (France)'),
(38639, 'https://ror.org/04ccjrt09', 'no_lang_code', 1, 'https://ror.org/04ccjrt09 AECpolymers (France)'),
(38640, 'https://ror.org/05f5ttq44', 'no_lang_code', 1, 'https://ror.org/05f5ttq44 Mauna Kea Technologies (France)'),
(38641, 'https://ror.org/056fctw89', 'no_lang_code', 1, 'https://ror.org/056fctw89 Nexter (France)'),
(38642, 'https://ror.org/041a9yj35', 'fr', 1, 'https://ror.org/041a9yj35 SociƩtƩ de Conseil et de Prospective Scientifique'),
(38643, 'https://ror.org/00k8b3640', 'no_lang_code', 1, 'https://ror.org/00k8b3640 AnyGenes (France)'),
(38644, 'https://ror.org/02wzm7472', 'no_lang_code', 1, 'https://ror.org/02wzm7472 APEX Technologies (France)'),
(38645, 'https://ror.org/02seyh617', 'no_lang_code', 1, 'https://ror.org/02seyh617 AriadNEXT (France)'),
(38646, 'https://ror.org/04fg92n70', 'no_lang_code', 1, 'https://ror.org/04fg92n70 Arion (France)'),
(38647, 'https://ror.org/03brhac83', 'fr', 1, 'https://ror.org/03brhac83 Fondation Internet Nouvelle GƩnƩration'),
(38648, 'https://ror.org/01edctc55', 'no_lang_code', 1, 'https://ror.org/01edctc55 ATLAB Pharma (France)'),
(38649, 'https://ror.org/05sagy566', 'no_lang_code', 1, 'https://ror.org/05sagy566 AudioGaming (France)'),
(38650, 'https://ror.org/00gvr0r24', 'no_lang_code', 1, 'https://ror.org/00gvr0r24 Audionamix (France)'),
(38651, 'https://ror.org/03ze2zr46', 'no_lang_code', 1, 'https://ror.org/03ze2zr46 AXO Science (France)'),
(38652, 'https://ror.org/03bx9gv58', 'no_lang_code', 1, 'https://ror.org/03bx9gv58 BA SystĆØmes (France)'),
(38653, 'https://ror.org/052a86v37', 'no_lang_code', 1, 'https://ror.org/052a86v37 Baikowski (France)'),
(38654, 'https://ror.org/05f9h4q47', 'no_lang_code', 1, 'https://ror.org/05f9h4q47 Exactech (France)'),
(38655, 'https://ror.org/0174qhh23', 'no_lang_code', 1, 'https://ror.org/0174qhh23 BoostHeat (France)'),
(38656, 'https://ror.org/0593f2f80', 'no_lang_code', 1, 'https://ror.org/0593f2f80 Byblos Group (France)'),
(38657, 'https://ror.org/022kpdg23', 'no_lang_code', 1, 'https://ror.org/022kpdg23 Groupe Up (France)'),
(38658, 'https://ror.org/022d8t961', 'no_lang_code', 1, 'https://ror.org/022d8t961 MASA Group (France)'),
(38659, 'https://ror.org/054b9rx02', 'no_lang_code', 1, 'https://ror.org/054b9rx02 Biospace Lab (France)'),
(38660, 'https://ror.org/031vfy029', 'fr', 1, 'https://ror.org/031vfy029 Centre de la MƩditerranƩe Moderne et Contemporaine'),
(38661, 'https://ror.org/01d22yy79', 'fr', 1, 'https://ror.org/01d22yy79 Centre d’Expertise National en Stimulation Cognitive'),
(38662, 'https://ror.org/02hp9qz46', 'no_lang_code', 1, 'https://ror.org/02hp9qz46 Erytech Pharma (France)'),
(38663, 'https://ror.org/04kzzpx53', 'fr', 1, 'https://ror.org/04kzzpx53 Puce Muse / Espace Musical'),
(38664, 'https://ror.org/05m856m15', 'no_lang_code', 1, 'https://ror.org/05m856m15 AlcmƩon (France)'),
(38665, 'https://ror.org/02m5dy175', 'en', 1, 'https://ror.org/02m5dy175 Georgia Tech Lorraine'),
(38666, 'https://ror.org/01sn2ky05', 'no_lang_code', 1, 'https://ror.org/01sn2ky05 Genes''ink (France)'),
(38667, 'https://ror.org/03508em42', 'no_lang_code', 1, 'https://ror.org/03508em42 Graftys (France)'),
(38668, 'https://ror.org/043jbda17', 'fr', 1, 'https://ror.org/043jbda17 Groupe de Musique Electroacoustique d''Albi'),
(38669, 'https://ror.org/03q7p3t30', 'fr', 1, 'https://ror.org/03q7p3t30 Laboratoire de Chimie MolƩculaire et Thioorganique'),
(38670, 'https://ror.org/04db3be62', 'fr', 1, 'https://ror.org/04db3be62 Laboratoire de Chimie Organique'),
(38671, 'https://ror.org/055wa9133', 'no_lang_code', 1, 'https://ror.org/055wa9133 Innate Pharma (France)'),
(38672, 'https://ror.org/03g38sn14', 'fr', 1, 'https://ror.org/03g38sn14 Laboratory Colloïdes et Matériaux Divisés'),
(38673, 'https://ror.org/028kzf059', 'no_lang_code', 1, 'https://ror.org/028kzf059 Huntsman (France)'),
(38674, 'https://ror.org/05cnwh310', 'no_lang_code', 1, 'https://ror.org/05cnwh310 Surys (France)'),
(38675, 'https://ror.org/04z4fen17', 'en', 1, 'https://ror.org/04z4fen17 GƩnƩtique Humaine des Maladies Infectieuses Human Genetic of Infectious Diseases'),
(38676, 'https://ror.org/053qdb191', 'fr', 1, 'https://ror.org/053qdb191 Laboratoire des Systèmes Macromoléculaires et Signalisation'),
(38677, 'https://ror.org/02ahzca76', 'fr', 1, 'https://ror.org/02ahzca76 Laboratoire d''IngƩnierie Circulation Transports'),
(38678, 'https://ror.org/03af82z38', 'no_lang_code', 1, 'https://ror.org/03af82z38 LFB (France)'),
(38679, 'https://ror.org/03fd87035', 'fr', 1, 'https://ror.org/03fd87035 Laboratoire MotricitĆ© Humaine Ɖducation Sport SantĆ©'),
(38680, 'https://ror.org/038716291', 'fr', 1, 'https://ror.org/038716291 Institut d''Urbanisme et d''AmƩnagement RƩgional'),
(38681, 'https://ror.org/03tkdcg84', 'no_lang_code', 1, 'https://ror.org/03tkdcg84 Magnisense (France)'),
(38682, 'https://ror.org/03v4wsf43', 'no_lang_code', 1, 'https://ror.org/03v4wsf43 Mecachrome (France)'),
(38683, 'https://ror.org/01f96et60', 'no_lang_code', 1, 'https://ror.org/01f96et60 MedinCell (France)'),
(38684, 'https://ror.org/026c6z776', 'no_lang_code', 1, 'https://ror.org/026c6z776 Chronos (France)'),
(38685, 'https://ror.org/050awh611', 'no_lang_code', 1, 'https://ror.org/050awh611 Montupet (France)'),
(38686, 'https://ror.org/00qt5he59', 'no_lang_code', 1, 'https://ror.org/00qt5he59 Oligovax (France)'),
(38687, 'https://ror.org/04pdjh730', 'no_lang_code', 1, 'https://ror.org/04pdjh730 MSA Gallet (France)'),
(38688, 'https://ror.org/0075b7k59', 'no_lang_code', 1, 'https://ror.org/0075b7k59 Mitsubishi Electric (France)'),
(38689, 'https://ror.org/05t7drw06', 'no_lang_code', 1, 'https://ror.org/05t7drw06 MNM Consulting (France)'),
(38690, 'https://ror.org/04zh6ks36', 'no_lang_code', 1, 'https://ror.org/04zh6ks36 Leroux & Lotz Technologies (France)'),
(38691, 'https://ror.org/04efjkk54', 'no_lang_code', 1, 'https://ror.org/04efjkk54 KMG Ultra Pure Chemicals (France)'),
(38692, 'https://ror.org/0051tvf03', 'no_lang_code', 1, 'https://ror.org/0051tvf03 Nagra (France)'),
(38693, 'https://ror.org/00dwde739', 'no_lang_code', 1, 'https://ror.org/00dwde739 OREGA Biotech (France)'),
(38694, 'https://ror.org/028q7hc55', 'no_lang_code', 1, 'https://ror.org/028q7hc55 Limagrain (France)'),
(38695, 'https://ror.org/047ts9g27', 'no_lang_code', 1, 'https://ror.org/047ts9g27 Nanobiotix (France)'),
(38696, 'https://ror.org/02xq6cs86', 'no_lang_code', 1, 'https://ror.org/02xq6cs86 Naskeo Environnement (France)'),
(38697, 'https://ror.org/04aznz088', 'no_lang_code', 1, 'https://ror.org/04aznz088 GroupeOPA (France)'),
(38698, 'https://ror.org/01gtbbz35', 'no_lang_code', 1, 'https://ror.org/01gtbbz35 OTR3 (France)'),
(38699, 'https://ror.org/00hcabt14', 'no_lang_code', 1, 'https://ror.org/00hcabt14 Light for Life Technologies (France)'),
(38700, 'https://ror.org/0425rfe30', 'no_lang_code', 1, 'https://ror.org/0425rfe30 Naturamole (France)'),
(38701, 'https://ror.org/00fd94531', 'no_lang_code', 1, 'https://ror.org/00fd94531 OsseoMatrix (France)'),
(38702, 'https://ror.org/00ws9ra62', 'no_lang_code', 1, 'https://ror.org/00ws9ra62 Netris Pharma (France)'),
(38703, 'https://ror.org/03emcx872', 'no_lang_code', 1, 'https://ror.org/03emcx872 PaxiTech (France)'),
(38704, 'https://ror.org/0437zex07', 'no_lang_code', 1, 'https://ror.org/0437zex07 Macopharma (France)'),
(38705, 'https://ror.org/05r2f2383', 'no_lang_code', 1, 'https://ror.org/05r2f2383 Magellium (France)'),
(38706, 'https://ror.org/01jdjet24', 'no_lang_code', 1, 'https://ror.org/01jdjet24 Pharmaleads (France)'),
(38707, 'https://ror.org/038vv7y77', 'no_lang_code', 1, 'https://ror.org/038vv7y77 SiaMed’Xpress (France)'),
(38708, 'https://ror.org/02c38jz43', 'en', 1, 'https://ror.org/02c38jz43 Relaxnews'),
(38709, 'https://ror.org/05wk0jx96', 'no_lang_code', 1, 'https://ror.org/05wk0jx96 Amdocs (France)'),
(38710, 'https://ror.org/01x1nsf94', 'no_lang_code', 1, 'https://ror.org/01x1nsf94 Smartesting (France)'),
(38711, 'https://ror.org/056mqdw19', 'no_lang_code', 1, 'https://ror.org/056mqdw19 ProtNeteomix (France)'),
(38712, 'https://ror.org/0481vq919', 'no_lang_code', 1, 'https://ror.org/0481vq919 NicƩphore CitƩ (France)'),
(38713, 'https://ror.org/03eraeg88', 'no_lang_code', 1, 'https://ror.org/03eraeg88 Medtronic (France)'),
(38714, 'https://ror.org/05p7erx10', 'no_lang_code', 1, 'https://ror.org/05p7erx10 QoS Design (France)'),
(38715, 'https://ror.org/01eyskv76', 'no_lang_code', 1, 'https://ror.org/01eyskv76 Quantum Genomics (France)'),
(38716, 'https://ror.org/053y21r38', 'no_lang_code', 1, 'https://ror.org/053y21r38 RSA Cosmos (France)'),
(38717, 'https://ror.org/0122jkj38', 'no_lang_code', 1, 'https://ror.org/0122jkj38 Radiall (France)'),
(38718, 'https://ror.org/04trbax61', 'no_lang_code', 1, 'https://ror.org/04trbax61 Roxel (France)'),
(38719, 'https://ror.org/04zyg9w69', 'no_lang_code', 1, 'https://ror.org/04zyg9w69 Sonic Emotion (France)'),
(38720, 'https://ror.org/03b0h6662', 'no_lang_code', 1, 'https://ror.org/03b0h6662 TAMI Industries (France) Technologie AvancƩe et Membranes Industrielles'),
(38721, 'https://ror.org/006kn4722', 'no_lang_code', 1, 'https://ror.org/006kn4722 Abilian (France)'),
(38722, 'https://ror.org/04yn1kj34', 'no_lang_code', 1, 'https://ror.org/04yn1kj34 Diafir (France)'),
(38723, 'https://ror.org/001edfm43', 'no_lang_code', 1, 'https://ror.org/001edfm43 Theravectys (France)'),
(38724, 'https://ror.org/029b48872', 'no_lang_code', 1, 'https://ror.org/029b48872 Asur Plant Breeding (France)'),
(38725, 'https://ror.org/02vb0gn74', 'fr', 1, 'https://ror.org/02vb0gn74 TL & AssociƩs'),
(38726, 'https://ror.org/03nzw8376', 'no_lang_code', 1, 'https://ror.org/03nzw8376 Theranexus (France)'),
(38727, 'https://ror.org/05jc16005', 'no_lang_code', 1, 'https://ror.org/05jc16005 Atys Medical (France)'),
(38728, 'https://ror.org/04x4qbn15', 'no_lang_code', 1, 'https://ror.org/04x4qbn15 NEEL trimarans (France)'),
(38729, 'https://ror.org/03ex1m609', 'no_lang_code', 1, 'https://ror.org/03ex1m609 Satimo (France) SociĆ©tĆ© d’Applications Technologiques de l’Imagerie Micro-Onde'),
(38730, 'https://ror.org/00attk912', 'no_lang_code', 1, 'https://ror.org/00attk912 Physiogenex (France)'),
(38731, 'https://ror.org/007ydnn26', 'no_lang_code', 1, 'https://ror.org/007ydnn26 R-Cost (France)'),
(38732, 'https://ror.org/05bt9es09', 'no_lang_code', 1, 'https://ror.org/05bt9es09 Nipson Technology (France)'),
(38733, 'https://ror.org/024wmk172', 'no_lang_code', 1, 'https://ror.org/024wmk172 VirtualDive (France)'),
(38734, 'https://ror.org/044kx9w86', 'no_lang_code', 1, 'https://ror.org/044kx9w86 Vision Objects (France)'),
(38735, 'https://ror.org/03etbp963', 'fr', 1, 'https://ror.org/03etbp963 Vizion’R'),
(38736, 'https://ror.org/00606js28', 'no_lang_code', 1, 'https://ror.org/00606js28 Vocapia Research (France)'),
(38737, 'https://ror.org/01dz5cg19', 'fr', 1, 'https://ror.org/01dz5cg19 Laboratoire de Virologie MolƩculaire et Structurale'),
(38738, 'https://ror.org/009cywx30', 'no_lang_code', 1, 'https://ror.org/009cywx30 VectraWave (France)'),
(38739, 'https://ror.org/01e3p0233', 'no_lang_code', 1, 'https://ror.org/01e3p0233 Vesuvius (France)'),
(38740, 'https://ror.org/0440rnc27', 'no_lang_code', 1, 'https://ror.org/0440rnc27 Vilmorin & Cie (France)'),
(38741, 'https://ror.org/043b7ay30', 'no_lang_code', 1, 'https://ror.org/043b7ay30 Helion (France)'),
(38742, 'https://ror.org/007ym4t24', 'no_lang_code', 1, 'https://ror.org/007ym4t24 Tefal (France)'),
(38743, 'https://ror.org/01j3hs414', 'fr', 1, 'https://ror.org/01j3hs414 Union Coopération Forestière Française'),
(38744, 'https://ror.org/00pzdbj03', 'no_lang_code', 1, 'https://ror.org/00pzdbj03 Haption (France)'),
(38745, 'https://ror.org/05jyjaa40', 'no_lang_code', 1, 'https://ror.org/05jyjaa40 Keolis (France)'),
(38746, 'https://ror.org/05yjrbd39', 'no_lang_code', 1, 'https://ror.org/05yjrbd39 Sinequa (France)'),
(38747, 'https://ror.org/00qrrpx34', 'en', 1, 'https://ror.org/00qrrpx34 State Administration of Press, Publication, Radio, Film and Television 国家广播电影电视总局'),
(38748, 'https://ror.org/03j113172', 'en', 1, 'https://ror.org/03j113172 Biogas Institute of Ministry of Agriculture å†œäøšéƒØę²¼ę°”ē§‘å­¦ē ”ē©¶ę‰€'),
(38749, 'https://ror.org/04tdh7519', 'en', 1, 'https://ror.org/04tdh7519 Jiangxi Province Forestry Survey Planning Institute å›½å®¶ęž—äøšå±€č°ƒęŸ„č§„åˆ’č®¾č®”é™¢'),
(38750, 'https://ror.org/058x5eq06', 'en', 1, 'https://ror.org/058x5eq06 Beijing Haidian Hospital åŒ—äŗ¬åø‚ęµ·ę·€åŒ»é™¢'),
(38751, 'https://ror.org/05prw4m25', 'no_lang_code', 1, 'https://ror.org/05prw4m25 Chengdu Tool Research Institute (China) ęˆéƒ½å·„å…·ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(38752, 'https://ror.org/01z4nez64', 'en', 1, 'https://ror.org/01z4nez64 Academy of Broadcasting Science 国家广播电影电视总局广播科学研究院'),
(38753, 'https://ror.org/02mj1af40', 'en', 1, 'https://ror.org/02mj1af40 Children & Youth Science Center of CAST äø­å›½ē§‘åé’å°‘å¹“ē§‘ęŠ€äø­åæƒ'),
(38754, 'https://ror.org/00q62zf58', 'en', 1, 'https://ror.org/00q62zf58 Agricultural Information Institute äø­å›½å†œäøšē§‘å­¦é™¢å†œäøšäæ”ęÆē ”ē©¶ę‰€'),
(38755, 'https://ror.org/03qg6cx04', 'en', 1, 'https://ror.org/03qg6cx04 China National Committee for Terms in Sciences and Technologies å…Øå›½ē§‘å­¦ęŠ€ęœÆåčÆå®”å®šå§”å‘˜ä¼š'),
(38756, 'https://ror.org/023zynq23', 'en', 1, 'https://ror.org/023zynq23 Chinese Academy of Civil Aviation Science and Technology äø­å›½ę°‘čˆŖē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(38757, 'https://ror.org/04gpxrn68', 'no_lang_code', 1, 'https://ror.org/04gpxrn68 China Academy Of Machinery Science & Technology (China) ęœŗę¢°ē§‘å­¦äøŽęŠ€ęœÆē ”ē©¶é™¢äø­å›½'),
(38758, 'https://ror.org/038e20a83', 'en', 1, 'https://ror.org/038e20a83 Agro-Environmental Protection Institute å†œäøšéƒØēŽÆå¢ƒäæęŠ¤ē§‘ē ”ē›‘ęµ‹ę‰€'),
(38759, 'https://ror.org/01pwpsm46', 'en', 1, 'https://ror.org/01pwpsm46 China Academy of Safety Sciences and Technology äø­å›½å®‰å…Øē”Ÿäŗ§ē§‘å­¦ē ”ē©¶é™¢'),
(38760, 'https://ror.org/026drga03', 'en', 1, 'https://ror.org/026drga03 China National Environmental Monitoring Center äø­å›½ēŽÆå¢ƒē›‘ęµ‹ę€»ē«™'),
(38761, 'https://ror.org/02nbfcv58', 'en', 1, 'https://ror.org/02nbfcv58 China Nuclear Energy Association ę øå·„äøščˆŖęµ‹é„ę„Ÿäø­åæƒ'),
(38762, 'https://ror.org/05w1m1q56', 'en', 1, 'https://ror.org/05w1m1q56 Ministry of Education, Science and Technology Development Center ę•™č‚²éƒØē§‘ęŠ€å‘å±•äø­åæƒ'),
(38763, 'https://ror.org/0265jtk41', 'en', 1, 'https://ror.org/0265jtk41 China Academy of Urban Planning and Design äø­å›½åŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(38764, 'https://ror.org/05t4way13', 'en', 1, 'https://ror.org/05t4way13 Beijing Machine Tool Research Institute åŒ—äŗ¬ęœŗåŗŠē ”ē©¶ę‰€'),
(38765, 'https://ror.org/00kp7ts52', 'en', 1, 'https://ror.org/00kp7ts52 China Accounting Standards Committee ä¼šč®”å‡†åˆ™å§”å‘˜ä¼š'),
(38766, 'https://ror.org/059nf5421', 'en', 1, 'https://ror.org/059nf5421 China National Research Institute of Food and Fermentation äø­å›½é£Ÿå“å‘é…µå·„äøšē ”ē©¶é™¢'),
(38767, 'https://ror.org/006cgkx15', 'en', 1, 'https://ror.org/006cgkx15 Chinese Academy of Governance å›½å®¶č”Œę”æå­¦é™¢'),
(38768, 'https://ror.org/03wd9vk87', 'en', 1, 'https://ror.org/03wd9vk87 Beijing Meteorological Bureau åŒ—äŗ¬åø‚ę°”č±”å±€'),
(38769, 'https://ror.org/05dt7z971', 'en', 1, 'https://ror.org/05dt7z971 Changsha Medical University é•æę²™åŒ»å­¦é™¢'),
(38770, 'https://ror.org/00r5r6807', 'en', 1, 'https://ror.org/00r5r6807 China Automotive Technology and Research Center äø­å›Æę±½č½¦ęŠ€ęœÆē”ē©¶äø­åæƒ'),
(38771, 'https://ror.org/059hsy938', 'no_lang_code', 1, 'https://ror.org/059hsy938 China Minmetals (China) é•æę²™ēŸæå†¶ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(38772, 'https://ror.org/01mbbxx50', 'en', 1, 'https://ror.org/01mbbxx50 China Electronic Information Industry Development äø­å›½ē”µå­äæ”ęÆäŗ§äøšå‘å±•ē ”ē©¶é™¢'),
(38773, 'https://ror.org/00cwdhv97', 'no_lang_code', 1, 'https://ror.org/00cwdhv97 China North Industries Group Corporation (China) äø­å›½åŒ—ę–¹å·„äøšå…¬åø'),
(38774, 'https://ror.org/05sstfv48', 'en', 1, 'https://ror.org/05sstfv48 Institute of Apiculture Research äø­å›½å†œäøšē§‘å­¦é™¢čœœčœ‚ē ”ē©¶ę‰€'),
(38775, 'https://ror.org/02bjnsn63', 'en', 1, 'https://ror.org/02bjnsn63 Beijing Research Institute of Mechanical and Electrical Technology åŒ—äŗ¬ęœŗē”µē ”ē©¶ę‰€'),
(38776, 'https://ror.org/04gj4ky87', 'en', 1, 'https://ror.org/04gj4ky87 China Population and Development Research Center äø­å›½äŗŗå£äøŽå‘å±•ē ”ē©¶äø­åæƒ'),
(38777, 'https://ror.org/00bwfrq04', 'no_lang_code', 1, 'https://ror.org/00bwfrq04 Chengdu Institute of Information Technology (China) äø­ē§‘é™¢ęˆéƒ½äæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(38778, 'https://ror.org/046qx3a23', 'en', 1, 'https://ror.org/046qx3a23 Beijing Research Institute of Uranium Geology ę øå·„äøšåŒ—äŗ¬åœ°č“Øē ”ē©¶é™¢'),
(38779, 'https://ror.org/0424a8630', 'en', 1, 'https://ror.org/0424a8630 Beijing Botanical Garden åŒ—äŗ¬ę¤ē‰©å›­'),
(38780, 'https://ror.org/01p6qdx15', 'en', 1, 'https://ror.org/01p6qdx15 Beijing Solar Energy Research Institute åŒ—äŗ¬åø‚å¤Ŗé˜³čƒ½ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(38781, 'https://ror.org/01e2m0794', 'en', 1, 'https://ror.org/01e2m0794 China Earthquake Disaster Prevention Centre äø­å›½åœ°éœ‡ē¾å®³é˜²å¾”äø­åæƒ'),
(38782, 'https://ror.org/03cg9wt32', 'en', 1, 'https://ror.org/03cg9wt32 China Research Institute for Science Popularization 中国科普研究所'),
(38783, 'https://ror.org/03j803518', 'en', 1, 'https://ror.org/03j803518 China Institute of Daily Chemical Industry äø­å›½ę—„ē”ØåŒ–å­¦å·„äøšē ”ē©¶é™¢'),
(38784, 'https://ror.org/0305bn856', 'en', 1, 'https://ror.org/0305bn856 Changjiang Water Resources Commission é•æę±Ÿę°“åˆ©å§”å‘˜ä¼šę°“ę–‡å±€'),
(38785, 'https://ror.org/04a30tf85', 'en', 1, 'https://ror.org/04a30tf85 Beijing Vaccum Electronic Research Institute åŒ—äŗ¬ēœŸē©ŗē”µå­ęŠ€ęœÆē ”ē©¶ę‰€'),
(38786, 'https://ror.org/0490rfk07', 'en', 1, 'https://ror.org/0490rfk07 Feed Research Institute äø­å›½å†œäøšē§‘å­¦é™¢é„²ę–™ē ”ē©¶ę‰€'),
(38787, 'https://ror.org/04brx9y30', 'en', 1, 'https://ror.org/04brx9y30 Beijing Water Science and Technology Institute åŒ—äŗ¬åø‚ę°“ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(38788, 'https://ror.org/00mc9zb90', 'en', 1, 'https://ror.org/00mc9zb90 Citrus Research Institute äø­å›½å†œäøšē§‘å­¦é™¢ęŸ‘ę””ē ”ē©¶ę‰€'),
(38789, 'https://ror.org/02yjx5e75', 'en', 1, 'https://ror.org/02yjx5e75 Beijing Xuanwu Traditional Chinese Medicine Hospital åŒ—äŗ¬åø‚å®£ę­¦äø­åŒ»åŒ»é™¢'),
(38790, 'https://ror.org/01xyb1v19', 'en', 1, 'https://ror.org/01xyb1v19 Civil Aviation Flight University of China äø­å›½ę°‘ē”ØčˆŖē©ŗé£žč”Œå­¦é™¢'),
(38791, 'https://ror.org/03eh3c696', 'en', 1, 'https://ror.org/03eh3c696 Civil Aviation Management Institute of China äø­å›½ę°‘čˆŖē®”ē†å¹²éƒØå­¦é™¢'),
(38792, 'https://ror.org/02egfyg20', 'en', 1, 'https://ror.org/02egfyg20 China Center of Advanced Science and Technology äø­å›½é«˜ē­‰ē§‘å­¦ęŠ€ęœÆäø­åæƒ'),
(38793, 'https://ror.org/05hxrpj87', 'en', 1, 'https://ror.org/05hxrpj87 China Electronics Standardization Institute äø­å›½ē”µå­ęŠ€ęœÆę ‡å‡†åŒ–ē ”ē©¶é™¢'),
(38794, 'https://ror.org/01k4abj61', 'en', 1, 'https://ror.org/01k4abj61 China Tourism Academy 中国旅游研究院'),
(38795, 'https://ror.org/059qzzv16', 'en', 1, 'https://ror.org/059qzzv16 Fujian Institute of Oceanography ē¦å»ŗęµ·ę“‹ē ”ē©¶ę‰€'),
(38796, 'https://ror.org/00c3bg218', 'en', 1, 'https://ror.org/00c3bg218 China Europe International Business School 中欧国际巄商学院'),
(38797, 'https://ror.org/02t573g91', 'en', 1, 'https://ror.org/02t573g91 China Executive Leadership Academy Pudong äø­å›½ęµ¦äøœå¹²éƒØå­¦é™¢;'),
(38798, 'https://ror.org/0311w8j32', 'en', 1, 'https://ror.org/0311w8j32 Guangxi Academy of Fishery Sciences 广脿氓产科学研究院'),
(38799, 'https://ror.org/053cexp66', 'en', 1, 'https://ror.org/053cexp66 China Information Technology Security Evaluation Center äø­å›½äæ”ęÆå®‰å…Øęµ‹čÆ„äø­åæƒ'),
(38800, 'https://ror.org/02jf7e446', 'en', 1, 'https://ror.org/02jf7e446 Gannan Normal University čµ£å—åøˆēÆ„å­¦é™¢'),
(38801, 'https://ror.org/02baj1350', 'en', 1, 'https://ror.org/02baj1350 Chinese Academy for Environmental Planning äø­å›½ēŽÆå¢ƒäæęŠ¤éƒØēŽÆå¢ƒč§„åˆ’é™¢'),
(38802, 'https://ror.org/001tdwk28', 'en', 1, 'https://ror.org/001tdwk28 Gansu Academy of Agricultural Sciences å†œäøšē§‘å­¦ē”˜č‚ƒēœē§‘å­¦é™¢'),
(38803, 'https://ror.org/03ect3280', 'en', 1, 'https://ror.org/03ect3280 Gansu Desert Control Research Institute ē”˜č‚ƒēœę²»ę²™ē ”ē©¶ę‰€'),
(38804, 'https://ror.org/0570hy479', 'en', 1, 'https://ror.org/0570hy479 Shanxi Academy of Agricultural Sciences å±±č„æēœå†œäøšē§‘å­¦é™¢ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(38805, 'https://ror.org/03w5vx872', 'en', 1, 'https://ror.org/03w5vx872 Guangxi Mangrove Research Center å¹æč„æēŗ¢ę ‘ęž—ē ”ē©¶äø­åæƒ'),
(38806, 'https://ror.org/05tdz0n30', 'en', 1, 'https://ror.org/05tdz0n30 China Institute of Geological Environmental Monitoring äø­å›½åœ°č“ØēŽÆå¢ƒē›‘ęµ‹é™¢'),
(38807, 'https://ror.org/01z22gc86', 'en', 1, 'https://ror.org/01z22gc86 Chinese Academy of Cultural Heritage äø­å›½ę–‡åŒ–é—äŗ§ē ”ē©¶é™¢'),
(38808, 'https://ror.org/00gkkv889', 'en', 1, 'https://ror.org/00gkkv889 Development Research Center of the State Council å›½åŠ”é™¢å‘å±•ē ”ē©¶äø­åæƒ'),
(38809, 'https://ror.org/01e99ef13', 'no_lang_code', 1, 'https://ror.org/01e99ef13 Gansu Meteorological Bureau ē”˜č‚ƒēœę°”č±”å±€'),
(38810, 'https://ror.org/01dqnej95', 'en', 1, 'https://ror.org/01dqnej95 China Land Surveying and Planning Institute äø­å›½åœŸåœ°å‹˜ęµ‹č§„åˆ’é™¢'),
(38811, 'https://ror.org/05j1pnm38', 'en', 1, 'https://ror.org/05j1pnm38 Dunhuang Research Academy ę•¦ē…Œē ”ē©¶é™¢'),
(38812, 'https://ror.org/045g90a87', 'en', 1, 'https://ror.org/045g90a87 China Leather and Footwear Industry Research Institute äø­å›½ēš®é©å’Œåˆ¶éž‹å·„äøšē ”ē©¶é™¢'),
(38813, 'https://ror.org/05jc4yc89', 'en', 1, 'https://ror.org/05jc4yc89 China Meat Research Centre äø­å›½č‚‰ē±»é£Ÿå“ē ”ē©¶äø­åæƒ'),
(38814, 'https://ror.org/04vmpjr08', 'en', 1, 'https://ror.org/04vmpjr08 Institute of Grassland Research č‰åŽŸē ”ē©¶ę‰€'),
(38815, 'https://ror.org/04grzdh47', 'en', 1, 'https://ror.org/04grzdh47 Guangdong University of Finance å¹æäøœé‡‘čžå­¦é™¢'),
(38816, 'https://ror.org/02wstxe29', 'en', 1, 'https://ror.org/02wstxe29 Chinese Academy of Personnel Science 中国人事科学研究院'),
(38817, 'https://ror.org/05cvbj479', 'en', 1, 'https://ror.org/05cvbj479 Guangzhou HKUST Fok Ying Tung Research Institute éœč‹±äøœē ”ē©¶é™¢'),
(38818, 'https://ror.org/04gjmb875', 'en', 1, 'https://ror.org/04gjmb875 Guang’anmen Hospital äø­å›½äø­åŒ»ē§‘å­¦é™¢å¹æå®‰é—ØåŒ»é™¢'),
(38819, 'https://ror.org/00s2dxs29', 'en', 1, 'https://ror.org/00s2dxs29 East China Mineral Exploration & Development Bureau ę±Ÿč‹ēœęœ‰č‰²é‡‘å±žåŽäøœåœ°č“Øå‹˜ęŸ„å±€'),
(38820, 'https://ror.org/04qqd9793', 'en', 1, 'https://ror.org/04qqd9793 Chinese Academy of Science and Technology for Development äø­å›½ē§‘å­¦ęŠ€ęœÆäæƒčæ›å‘å±•'),
(38821, 'https://ror.org/04vtbxw76', 'en', 1, 'https://ror.org/04vtbxw76 Guangdong Academy of Forestry å¹æäøœēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(38822, 'https://ror.org/03tbxt129', 'en', 1, 'https://ror.org/03tbxt129 Guangzhou Institute of Geography å¹æå·žåœ°ē†ē ”ē©¶ę‰€'),
(38823, 'https://ror.org/02j693n47', 'en', 1, 'https://ror.org/02j693n47 Chinese Academy of Surveying and Mapping äø­å›½ęµ‹ē»˜ē§‘å­¦ē ”ē©¶é™¢'),
(38824, 'https://ror.org/02t1dzr71', 'en', 1, 'https://ror.org/02t1dzr71 China Machine Press äø­å›½ęœŗę¢°å·„äøšå‡ŗē‰ˆē¤¾'),
(38825, 'https://ror.org/00jaxam28', 'en', 1, 'https://ror.org/00jaxam28 Guangzhou Marine Geological Survey å¹æå·žęµ·ę“‹åœ°č“Øč°ƒęŸ„å±€'),
(38826, 'https://ror.org/00z0n4g71', 'en', 1, 'https://ror.org/00z0n4g71 PLA Electronic Engineering Institute 中国人民解放军电子巄程学院'),
(38827, 'https://ror.org/017xz5989', 'en', 1, 'https://ror.org/017xz5989 Chinese National Human Genome Center at Shanghai å›½å®¶äŗŗē±»åŸŗå› ē»„å—ę–¹ē ”ē©¶äø­åæƒ'),
(38828, 'https://ror.org/03kzcrh59', 'en', 1, 'https://ror.org/03kzcrh59 Guangzhou Maritime College å¹æå·žčˆŖęµ·é«˜ē­‰äø“ē§‘å­¦ę ”'),
(38829, 'https://ror.org/01j9jcf33', 'en', 1, 'https://ror.org/01j9jcf33 Guangzhou Panyu Polytechnic å¹æå·žē•Ŗē¦ŗčŒäøšęŠ€ęœÆå­¦é™¢'),
(38830, 'https://ror.org/031jzbb03', 'en', 1, 'https://ror.org/031jzbb03 Chinese People''s Armed Police Force Engineering University äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜Ÿå·„ēØ‹å¤§å­¦'),
(38831, 'https://ror.org/023v1tr45', 'en', 1, 'https://ror.org/023v1tr45 Hangzhou Academy of Agricultural Sciences ę­å·žåø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(38832, 'https://ror.org/03j2cpb79', 'en', 1, 'https://ror.org/03j2cpb79 Farmland Irrigation Research Institute äø­å›½å†œäøšē§‘å­¦é™¢å†œē”°ēŒęŗ‰ē ”ē©¶ę‰€'),
(38833, 'https://ror.org/03epp6210', 'en', 1, 'https://ror.org/03epp6210 Chongqing Institute of Geology and Mineral Resources é‡åŗ†åœ°č“ØēŸæäŗ§ē ”ē©¶é™¢'),
(38834, 'https://ror.org/02mxq6q49', 'en', 1, 'https://ror.org/02mxq6q49 Guangdong Laboratory Animals Monitoring Institute å¹æäøœēœå®žéŖŒåŠØē‰©ē›‘ęµ‹ę‰€'),
(38835, 'https://ror.org/05krxyw16', 'en', 1, 'https://ror.org/05krxyw16 Guangdong Police College å¹æäøœč­¦å®˜å­¦é™¢'),
(38836, 'https://ror.org/01bhp1y81', 'en', 1, 'https://ror.org/01bhp1y81 Hebei Chemical and Pharmaceutical College ę²³åŒ—åŒ–å·„åŒ»čÆčŒäøšęŠ€ęœÆå­¦é™¢ 地址'),
(38837, 'https://ror.org/02bb8n686', 'en', 1, 'https://ror.org/02bb8n686 Guiyang College of Traditional Chinese Medicine č“µé˜³äø­åŒ»å­¦é™¢'),
(38838, 'https://ror.org/01s1s3g75', 'en', 1, 'https://ror.org/01s1s3g75 Hebei Meteorological Bureau ę²³åŒ—ēœę°”č±”å±€'),
(38839, 'https://ror.org/00xz0ff56', 'en', 1, 'https://ror.org/00xz0ff56 Institute of Agricultural Economics and Development äø­å›½å†œäøšē§‘å­¦é™¢å†œäøšē»ęµŽäøŽå‘å±•ē ”ē©¶ę‰€'),
(38840, 'https://ror.org/01nrzdp21', 'en', 1, 'https://ror.org/01nrzdp21 Institute of Agricultural Resources and Regional Planning äø­å›½å†œäøšē§‘å­¦é™¢å†œäøščµ„ęŗäøŽå†œäøšåŒŗåˆ’ē ”ē©¶ę‰€'),
(38841, 'https://ror.org/05ty2n298', 'en', 1, 'https://ror.org/05ty2n298 Guizhou Academy of Sciences č“µå·žē§‘å­¦é™¢'),
(38842, 'https://ror.org/05bkrjx06', 'en', 1, 'https://ror.org/05bkrjx06 Institute of Hydroecology ę°“åˆ©éƒØäø­å›½ē§‘å­¦é™¢ę°“å·„ēØ‹ē”Ÿę€ē ”ē©¶ę‰€'),
(38843, 'https://ror.org/027s8b340', 'no_lang_code', 1, 'https://ror.org/027s8b340 Henan Communication Science and Technology Research Institute (China) ę²³å—ēœäŗ¤é€šē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(38844, 'https://ror.org/039828v86', 'en', 1, 'https://ror.org/039828v86 Guizhou Academy of Environmental Science and Design č“µå·žēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶č®¾č®”é™¢'),
(38845, 'https://ror.org/036jj0x14', 'en', 1, 'https://ror.org/036jj0x14 Apiculture Science Institute of Jinlin province å‰ęž—ēœå…»čœ‚ē§‘å­¦ē ”ē©¶ę‰€'),
(38846, 'https://ror.org/044ysd349', 'en', 1, 'https://ror.org/044ysd349 Hunan Institute of Science and Technology ę¹–å—ē†å·„å­¦é™¢'),
(38847, 'https://ror.org/00ed0hz84', 'en', 1, 'https://ror.org/00ed0hz84 Henan Institute of Education ę²³å—ę•™č‚²å­¦é™¢'),
(38848, 'https://ror.org/03zb1qq41', 'en', 1, 'https://ror.org/03zb1qq41 Guizhou Institute of Plant Protection č“µå·žēœę¤ē‰©äæęŠ¤ē ”ē©¶ę‰€'),
(38849, 'https://ror.org/02mt4s337', 'en', 1, 'https://ror.org/02mt4s337 Bank of China äø­å›½é“¶č”Œč‚”ä»½ęœ‰é™å…¬åø'),
(38850, 'https://ror.org/00mzyf059', 'en', 1, 'https://ror.org/00mzyf059 Institute of Bast Fiber Crops äø­å›½å†œäøšē§‘å­¦é™¢éŗ»ē±»ē ”ē©¶ę‰€'),
(38851, 'https://ror.org/026ktg130', 'en', 1, 'https://ror.org/026ktg130 Hainan Provincial Academy of Agricultural Sciences ęµ·å—ēœå†œäøšē§‘å­¦é™¢'),
(38852, 'https://ror.org/026h9r553', 'no_lang_code', 1, 'https://ror.org/026h9r553 Hunan Haili Chemical Industry (China) ę¹–å—åŒ–å·„ē ”ē©¶é™¢'),
(38853, 'https://ror.org/032bw1116', 'en', 1, 'https://ror.org/032bw1116 Hunan Women''S University ę¹–å—å„³å­å­¦é™¢'),
(38854, 'https://ror.org/01t2fht66', 'en', 1, 'https://ror.org/01t2fht66 Institute of Economic System and Management å›½å®¶å‘å±•å’Œę”¹é©å§”å‘˜ä¼šē»ęµŽä½“åˆ¶äøŽē®”ē†ē ”ē©¶ę‰€'),
(38855, 'https://ror.org/048nm8g63', 'en', 1, 'https://ror.org/048nm8g63 Institute of Environment and Sustainable Development in Agriculture å†œäøšēŽÆå¢ƒäøŽåÆęŒē»­å‘å±•ē ”ē©¶ę‰€'),
(38856, 'https://ror.org/05qh2mm74', 'en', 1, 'https://ror.org/05qh2mm74 Land Consolidation and Rehabilitation Center äø­å›½å›½åœŸę•“ę²»ē½‘'),
(38857, 'https://ror.org/02fnpjd08', 'en', 1, 'https://ror.org/02fnpjd08 Institute of Vegetables and Flowers äø­å›½å†œäøšē§‘å­¦é™¢č”¬čœčŠ±å‰ē ”ē©¶ę‰€'),
(38858, 'https://ror.org/04k1m2t10', 'en', 1, 'https://ror.org/04k1m2t10 Jiangsu Police Officer College ę±Ÿč‹č­¦å®˜å­¦é™¢'),
(38859, 'https://ror.org/05khqm878', 'en', 1, 'https://ror.org/05khqm878 Institute of Quality Standards and Testing Technology for Agro Products äø­å›½å†œē§‘é™¢ē§‘å­¦é™¢å†œē§‘é™¢č“Øé‡ę ‡å‡†äøŽę£€ęµ‹ęŠ€ęœÆē ”ē©¶ę‰€'),
(38860, 'https://ror.org/013s90815', 'en', 1, 'https://ror.org/013s90815 Lanzhou Institute of Husbandry and Pharmaceutical Sciences äø­å›½å†œäøšē§‘å­¦é™¢å…°å·žē•œē‰§äøŽå…½čÆē ”ē©¶ę‰€'),
(38861, 'https://ror.org/04ry60e05', 'en', 1, 'https://ror.org/04ry60e05 Institute of Forensic Science åøę³•éƒØåøę³•é‰“å®šē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(38862, 'https://ror.org/051p3cy55', 'en', 1, 'https://ror.org/051p3cy55 Hebei Academy of Agriculture and Forestry Sciences ę²³åŒ—ēœå†œęž—ē§‘å­¦é™¢é—ä¼ ē”Ÿē†ē ”ē©¶ę‰€'),
(38863, 'https://ror.org/01b2av652', 'en', 1, 'https://ror.org/01b2av652 Institute of Scientific and Technical Information of China äø­å›½ē§‘å­¦ęŠ€ęœÆäæ”ęÆē ”ē©¶ę‰€'),
(38864, 'https://ror.org/01raxej33', 'en', 1, 'https://ror.org/01raxej33 Jiangsu Provincial Party School ę±Ÿč‹ēœč”Œę”æå­¦é™¢'),
(38865, 'https://ror.org/05hxfvg04', 'en', 1, 'https://ror.org/05hxfvg04 Liaoning Ocean and Fisheries Research Institute č¾½å®ēœęµ·ę“‹ę°“äŗ§ē§‘å­¦ē ”ē©¶é™¢'),
(38866, 'https://ror.org/00zjgt856', 'en', 1, 'https://ror.org/00zjgt856 Guangxi Zhuang Autonomous Region Museum å¹æč„æå£®ę—č‡Ŗę²»åŒŗč‡Ŗē„¶åšē‰©é¦†'),
(38867, 'https://ror.org/03y33h821', 'en', 1, 'https://ror.org/03y33h821 Jiangsu Institute of Meteorological Sciences ę±Ÿč‹ēœę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(38868, 'https://ror.org/04c0a2034', 'en', 1, 'https://ror.org/04c0a2034 Institute of Special Animal and Plant Sciences äø­å›½å†œäøšē§‘å­¦é™¢ē‰¹äŗ§ē ”ē©¶ę‰€'),
(38869, 'https://ror.org/05ycd7562', 'en', 1, 'https://ror.org/05ycd7562 Nanjing Institute of Environmental Sciences ēŽÆå¢ƒäæęŠ¤éƒØå—äŗ¬ēŽÆå¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(38870, 'https://ror.org/00t1yh273', 'en', 1, 'https://ror.org/00t1yh273 Jiangsu Provincial Meteorological Bureau ę±Ÿč‹ēœę°”č±”å°'),
(38871, 'https://ror.org/05xgaq910', 'en', 1, 'https://ror.org/05xgaq910 Nanjing Institute of Agricultural Mechanization å†œäøšéƒØå—äŗ¬å†œäøšęœŗę¢°åŒ–ē ”ē©¶ę‰€'),
(38872, 'https://ror.org/01ngb3r97', 'en', 1, 'https://ror.org/01ngb3r97 Ningbo Academy of Agricultural Sciences å®ę³¢åø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(38873, 'https://ror.org/03jmw7514', 'en', 1, 'https://ror.org/03jmw7514 Qinghai Meteorological Institute é’ęµ·ēœę°”č±”å±€'),
(38874, 'https://ror.org/0088q3d19', 'en', 1, 'https://ror.org/0088q3d19 Shaanxi Provincial Meteorological Bureau é™•č„æēœę°”č±”å±€'),
(38875, 'https://ror.org/05kfmjk33', 'en', 1, 'https://ror.org/05kfmjk33 Jiangxi Academy of Environmental Sciences ę±Ÿč„æēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶é™¢'),
(38876, 'https://ror.org/03s130c71', 'en', 1, 'https://ror.org/03s130c71 State Council Leading Group of Poverty Alleviation and Development å›½åŠ”é™¢ę‰¶č“«äøŽå‘å±•é›†å›¢'),
(38877, 'https://ror.org/01jwsqs03', 'en', 1, 'https://ror.org/01jwsqs03 Jilin Meteorological Bureau å‰ęž—ēœę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(38878, 'https://ror.org/0576c1v48', 'en', 1, 'https://ror.org/0576c1v48 People''s Liberation Army 411 Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬å››äø€äø€åŒ»é™¢'),
(38879, 'https://ror.org/0523x4410', 'en', 1, 'https://ror.org/0523x4410 Jilin Academy of Traditional Chinese Medicine å‰ęž—ēœäø­åŒ»čÆē§‘å­¦é™¢'),
(38880, 'https://ror.org/029j8j127', 'en', 1, 'https://ror.org/029j8j127 China National Commission for Disaster Reduction å›½å®¶å‡ē¾å§”å‘˜ä¼šåŠžå…¬å®¤ ęŠ€ęœÆę”ÆęŒ'),
(38881, 'https://ror.org/01kn5gg54', 'en', 1, 'https://ror.org/01kn5gg54 Shandong Province Meteorological Bureau å±±äøœēœę°”č±”å±€ ꉀ꜉'),
(38882, 'https://ror.org/04n0f2b96', 'no_lang_code', 1, 'https://ror.org/04n0f2b96 China South Industries Group (China) äø­å›½å…µå™Øå·„äøšē¬¬äŗ”ä¹ē ”ē©¶ę‰€'),
(38883, 'https://ror.org/056js0g95', 'en', 1, 'https://ror.org/056js0g95 Jilin Weather Modification Office å‰ęž—ēœäŗŗå·„å½±å“å¤©ę°”åŠžå…¬å®¤'),
(38884, 'https://ror.org/04sbk5k46', 'en', 1, 'https://ror.org/04sbk5k46 North China Research Institute of Electro-optics åŽåŒ—å…‰ē”µęŠ€ęœÆē ”ē©¶ę‰€'),
(38885, 'https://ror.org/04caq8026', 'en', 1, 'https://ror.org/04caq8026 Qinghai Meteorological Bureau é’ęµ·ēœę°”č±”å±€'),
(38886, 'https://ror.org/04ndr7251', 'en', 1, 'https://ror.org/04ndr7251 Shandong Provincial Water Resources Research Institute å±±äøœēœę°“ē§‘é™¢'),
(38887, 'https://ror.org/02gzvm828', 'en', 1, 'https://ror.org/02gzvm828 National Earthquake Response Support Service äø­å›½åœ°éœ‡åŗ”ę€„ęœę•‘äø­åæƒ'),
(38888, 'https://ror.org/04dpx8b39', 'no_lang_code', 1, 'https://ror.org/04dpx8b39 Shanghai Supercomputer Center (China) äøŠęµ·č¶…ēŗ§č®”ē®—äø­åæƒ'),
(38889, 'https://ror.org/002e3sm06', 'en', 1, 'https://ror.org/002e3sm06 Academic Degrees & Graduate Education å­¦ä½äøŽē ”ē©¶ē”Ÿę•™č‚²ę‚åæ—ē¤¾'),
(38890, 'https://ror.org/01nj0wq75', 'en', 1, 'https://ror.org/01nj0wq75 Shanghai Academy of Quality Management äøŠęµ·č“Øé‡ē®”ē†ē§‘å­¦ē ”ē©¶é™¢äŗŽ'),
(38891, 'https://ror.org/0354r6c10', 'en', 1, 'https://ror.org/0354r6c10 Oil Crops Research Institute äø­å›½å†œäøšē§‘å­¦é™¢ę²¹ę–™ä½œē‰©ē ”ē©¶ę‰€'),
(38892, 'https://ror.org/00vyqsz57', 'no_lang_code', 1, 'https://ror.org/00vyqsz57 Shanghai Genon Biological Products (China) äøŠęµ·č½¬åŸŗå› ē ”ē©¶äø­åæƒ'),
(38893, 'https://ror.org/02bakwe76', 'en', 1, 'https://ror.org/02bakwe76 Research Center for Rural Economy å†œäøšéƒØå†œę‘ē»ęµŽē ”ē©¶äø­åæƒ'),
(38894, 'https://ror.org/02d918b78', 'en', 1, 'https://ror.org/02d918b78 Shanghai Botanical Garden äøŠęµ·ę¤ē‰©å›­'),
(38895, 'https://ror.org/00yw25n09', 'en', 1, 'https://ror.org/00yw25n09 Shanghai Veterinary Research Institute äø­å›½å†œäøšē§‘å­¦é™¢äøŠęµ·å…½åŒ»ē ”ē©¶ę‰€'),
(38896, 'https://ror.org/0335kqk33', 'en', 1, 'https://ror.org/0335kqk33 Research Institute of Highway äŗ¤é€ščæč¾“éƒØå…¬č·Æē§‘å­¦ē ”ē©¶é™¢'),
(38897, 'https://ror.org/00t1pfq43', 'no_lang_code', 1, 'https://ror.org/00t1pfq43 Shanghai CASB Biotechnology (China) äøŠęµ·äø­ē§‘ä¼ä½°č±Ŗē”Ÿē‰©å·„ēØ‹ęœ‰é™å…¬åø'),
(38898, 'https://ror.org/02zztqs66', 'en', 1, 'https://ror.org/02zztqs66 305 Hospital of People Liberation Army 中国人民解放军第三0äŗ”åŒ»é™¢'),
(38899, 'https://ror.org/024qkwh22', 'en', 1, 'https://ror.org/024qkwh22 Shangrao Normal University äøŠé„¶åøˆčŒƒå­¦é™¢'),
(38900, 'https://ror.org/0590ypp09', 'en', 1, 'https://ror.org/0590ypp09 Shanghai Estuarine & Coastal Science Research Center äøŠęµ·ę²³å£ęµ·å²øē§‘å­¦ē ”ē©¶äø­åæƒ'),
(38901, 'https://ror.org/01gnagj68', 'en', 1, 'https://ror.org/01gnagj68 Shanghai Innovative Research Center of Traditional Chinese Medicine äøŠęµ·äø­čÆåˆ›ę–°ē ”ē©¶äø­åæƒ'),
(38902, 'https://ror.org/04jfg7g12', 'en', 1, 'https://ror.org/04jfg7g12 Shanghai Institute of Disaster Prevention and Relief äøŠęµ·é˜²ē¾ę•‘ē¾ē ”ē©¶ę‰€'),
(38903, 'https://ror.org/01ncz4303', 'no_lang_code', 1, 'https://ror.org/01ncz4303 Sinosteel (China) äø­å›½äø­é’¢é›†å›¢å…¬åø'),
(38904, 'https://ror.org/057ckzt47', 'en', 1, 'https://ror.org/057ckzt47 Shaanxi Provincial People''s Hospital é™•č„æēœäŗŗę°‘åŒ»é™¢'),
(38905, 'https://ror.org/03x05n260', 'en', 1, 'https://ror.org/03x05n260 South China Institute Of Environmental Sciences ēŽÆå¢ƒäæęŠ¤éƒØåŽå—ēŽÆå¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(38906, 'https://ror.org/052cqax41', 'en', 1, 'https://ror.org/052cqax41 Chinese Society of Theoretical and Applied Mechanics äø­å›½åŠ›å­¦å­¦ä¼š'),
(38907, 'https://ror.org/01924nm42', 'en', 1, 'https://ror.org/01924nm42 Fifth Tianjin Central Hospital å¤©ę“„åø‚ē¬¬äŗ”äø­åæƒåŒ»é™¢'),
(38908, 'https://ror.org/05m9m3d82', 'en', 1, 'https://ror.org/05m9m3d82 Shenyang The Fourth Hospital of People ę²ˆé˜³åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(38909, 'https://ror.org/05vrdx898', 'en', 1, 'https://ror.org/05vrdx898 Southwestern Institute of Physics ę øå·„äøšč„æå—ē‰©ē†ē ”ē©¶é™¢'),
(38910, 'https://ror.org/04ax2jp69', 'en', 1, 'https://ror.org/04ax2jp69 Geological Museum of China äø­å›½åœ°č“Øåšē‰©é¦†'),
(38911, 'https://ror.org/011v81t74', 'en', 1, 'https://ror.org/011v81t74 Shenzhen Academy of Inspection and Quarantine ę·±åœ³åø‚ę£€éŖŒę£€ē–«ē§‘å­¦ē ”ē©¶é™¢'),
(38912, '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 č“µå·žēœäø­å›½ē§‘å­¦é™¢å¤©ē„¶äŗ§ē‰©åŒ–å­¦é‡ē‚¹å®žéŖŒå®¤'),
(38913, 'https://ror.org/05bdeef79', 'en', 1, 'https://ror.org/05bdeef79 Oil and Gas Center å›½åœŸčµ„ęŗéƒØę²¹ę°”čµ„ęŗęˆ˜ē•„ē ”ē©¶äø­åæƒ'),
(38914, 'https://ror.org/00qzhtm25', 'en', 1, 'https://ror.org/00qzhtm25 Fairy Lake Botanical Garden ä»™ę¹–ę¤ē‰©å›­'),
(38915, 'https://ror.org/01mdqc612', 'en', 1, 'https://ror.org/01mdqc612 Institute of Sugar Beet äø­å›½å†œäøšē§‘å­¦é™¢ē”œčœē ”ē©¶ę‰€'),
(38916, 'https://ror.org/03wrf9427', 'en', 1, 'https://ror.org/03wrf9427 Shenzhen Institute of Information Technology ę·±åœ³äæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(38917, 'https://ror.org/012rwzc24', 'no_lang_code', 1, 'https://ror.org/012rwzc24 Shanghai Biomodel Organism äøŠęµ·å—ę–¹ęØ”å¼ē”Ÿē‰©ē§‘ęŠ€å‘å±•ęœ‰é™å…¬åø'),
(38918, 'https://ror.org/01jbc0c43', 'en', 1, 'https://ror.org/01jbc0c43 Shenzhen Center for Disease Control and Prevention ę·±åœ³åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(38919, 'https://ror.org/02jhhh683', 'en', 1, 'https://ror.org/02jhhh683 Shanghai Science and Technology Museum äøŠęµ·ē§‘ęŠ€é¦†'),
(38920, 'https://ror.org/033ca2d23', 'en', 1, 'https://ror.org/033ca2d23 Institute of World Economics and Politics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢äø–ē•Œē»ęµŽäøŽę”æę²»ē ”ē©¶ę‰€'),
(38921, 'https://ror.org/040f10867', 'en', 1, 'https://ror.org/040f10867 Taiyuan Central Hospital å¤ŖåŽŸåø‚äø­åæƒåŒ»é™¢'),
(38922, 'https://ror.org/02p3rg563', 'en', 1, 'https://ror.org/02p3rg563 Shandong Academy of Social Sciences å±±äøœē¤¾ä¼šē§‘å­¦é™¢'),
(38923, 'https://ror.org/03ad74s15', 'en', 1, 'https://ror.org/03ad74s15 Institute of Industrial Economics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å·„äøšē»ęµŽē ”ē©¶ę‰€'),
(38924, 'https://ror.org/04xa4q582', 'en', 1, 'https://ror.org/04xa4q582 Shanghai Academy of Social Sciences äøŠęµ·ē¤¾ä¼šē§‘å­¦é™¢'),
(38925, 'https://ror.org/04v31xa23', 'en', 1, 'https://ror.org/04v31xa23 Institute of Economics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ē»ęµŽē ”ē©¶ę‰€'),
(38926, 'https://ror.org/056w1kd89', 'en', 1, 'https://ror.org/056w1kd89 Tea Research Institute äø­å›½å†œäøšē§‘å­¦é™¢čŒ¶å¶ē ”ē©¶ę‰€'),
(38927, 'https://ror.org/02nf1ky18', 'en', 1, 'https://ror.org/02nf1ky18 Institute of Quantitative and Technical Economics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ę•°é‡ē»ęµŽäøŽęŠ€ęœÆē»ęµŽē ”ē©¶ę‰€'),
(38928, 'https://ror.org/02bfkc760', 'en', 1, 'https://ror.org/02bfkc760 Sichuan Academy of Forestry å››å·ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(38929, 'https://ror.org/02fzzay98', 'en', 1, 'https://ror.org/02fzzay98 Xinjiang Entry-Exit Inspection and Quarantine Bureau ę–°ē–†å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€ę£€éŖŒę£€ē–«ęŠ€ęœÆäø­åæƒ'),
(38930, 'https://ror.org/02mkq9q94', 'en', 1, 'https://ror.org/02mkq9q94 Institute of Sociology äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ē¤¾ä¼šå­¦ē ”ē©¶ę‰€'),
(38931, 'https://ror.org/00hagsh42', 'en', 1, 'https://ror.org/00hagsh42 Wuhan City Chinese Medicine Hospital ę­¦ę±‰åø‚äø­å›½äø­åŒ»åŒ»é™¢'),
(38932, 'https://ror.org/010h4ee55', 'en', 1, 'https://ror.org/010h4ee55 Institute for Urban and Environmental Studies äø­å›½ē¤¾ä¼šē§‘å­¦é™¢åŸŽåø‚å‘å±•äøŽēŽÆå¢ƒē ”ē©¶ę‰€'),
(38933, 'https://ror.org/04jgb8w65', 'en', 1, 'https://ror.org/04jgb8w65 Sino-Japan Friendship Center for Environmental Protection äø­ę—„å‹å„½ēŽÆå¢ƒäæęŠ¤äø­åæƒ'),
(38934, 'https://ror.org/02xfgyt86', 'no_lang_code', 1, 'https://ror.org/02xfgyt86 SinoGenoMax (China) åŒ—äŗ¬čÆŗčµ›åŸŗå› ē»„ē ”ē©¶äø­åæƒęœ‰é™å…¬åø'),
(38935, 'https://ror.org/0516wpz95', 'en', 1, 'https://ror.org/0516wpz95 Tianjin Academy of Agricultural Sciences å¤©ę“„åø‚å†œäøšē§‘å­¦é™¢ęˆē«‹äŗŽ'),
(38936, 'https://ror.org/04wtra345', 'en', 1, 'https://ror.org/04wtra345 Rural Development Institute äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å†œę‘å‘å±•ē ”ē©¶ę‰€'),
(38937, 'https://ror.org/01h547a76', 'en', 1, 'https://ror.org/01h547a76 Tianjin Centers for Disease Control and Prevention å¤©ę“„åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(38938, 'https://ror.org/03ybgf406', 'en', 1, 'https://ror.org/03ybgf406 Urumqi General Hospital of PLA å…°å·žå†›åŒŗä¹Œé²ęœØé½ę€»åŒ»é™¢'),
(38939, 'https://ror.org/036m22d48', 'en', 1, 'https://ror.org/036m22d48 Shandong Marine Resource and Environment Research Institute å±±äøœēœęµ·ę“‹čµ„ęŗäøŽēŽÆå¢ƒē ”ē©¶é™¢'),
(38940, 'https://ror.org/013kb0k13', 'en', 1, 'https://ror.org/013kb0k13 China Waterborne Transport Research Institute äŗ¤é€ščæč¾“éƒØę°“čæē§‘å­¦ē ”ē©¶ę‰€'),
(38941, 'https://ror.org/03xr30889', 'en', 1, 'https://ror.org/03xr30889 Tianjin Meteorological Bureau 天擄市气豔局 制作'),
(38942, 'https://ror.org/0506q7a98', 'en', 1, 'https://ror.org/0506q7a98 Yellow River Institute of Hydraulic Research 黄河氓文氓资源科学研究院'),
(38943, 'https://ror.org/0186w6z26', 'en', 1, 'https://ror.org/0186w6z26 Xinjiang Institute of Materia Medica ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗčÆē‰©ē ”ē©¶ę‰€'),
(38944, 'https://ror.org/01wp3d509', 'en', 1, 'https://ror.org/01wp3d509 Academy of State Administration of Grain å›½å®¶ē²®é£Ÿå±€ē§‘å­¦ē ”ē©¶é™¢'),
(38945, 'https://ror.org/003sd7q02', 'en', 1, 'https://ror.org/003sd7q02 Tianjin Natural History Museum å¤©ę“„č‡Ŗē„¶åšē‰©é¦†å§‹å»ŗäŗŽ'),
(38946, 'https://ror.org/048fp0x47', 'en', 1, 'https://ror.org/048fp0x47 Yuxi Normal University ēŽ‰ęŗŖåøˆčŒƒå­¦é™¢'),
(38947, 'https://ror.org/024d3p373', 'en', 1, 'https://ror.org/024d3p373 Tibet Academy of Agricultural and Animal Husbandry Sciences č„æč—å†œē‰§ē§‘å­¦é™¢'),
(38948, 'https://ror.org/03pkfys17', 'en', 1, 'https://ror.org/03pkfys17 Zhejiang Institute of Hydraulics & Estuary ęµ™ę±Ÿēœę°“åˆ©ę²³å£ē ”ē©¶é™¢'),
(38949, 'https://ror.org/010paq956', 'en', 1, 'https://ror.org/010paq956 Yunnan Animal Science and Veterinary Institute äŗ‘å—ēœē•œē‰§å…½åŒ»ē§‘å­¦é™¢'),
(38950, 'https://ror.org/03ssr6t63', 'no_lang_code', 1, 'https://ror.org/03ssr6t63 Tiandi Science & Technology (China) 中煤科巄集团脿安研究院'),
(38951, 'https://ror.org/01jzst437', 'en', 1, 'https://ror.org/01jzst437 Jiangsu Vocational College of Medicine ę±Ÿč‹åŒ»čÆčŒäøšå­¦é™¢'),
(38952, 'https://ror.org/05rpf2x18', 'en', 1, 'https://ror.org/05rpf2x18 Yunnan Academy of Forestry äŗ‘å—ēœęž—äøšē§‘å­¦é™¢'),
(38953, 'https://ror.org/0099xbw16', 'en', 1, 'https://ror.org/0099xbw16 Tobacco Research Institute é™¢ēƒŸč‰ē ”ē©¶ę‰€'),
(38954, 'https://ror.org/05qkx4t42', 'en', 1, 'https://ror.org/05qkx4t42 Zhejiang Academy of Forestry ęµ™ę±Ÿēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(38955, 'https://ror.org/03c94t831', 'en', 1, 'https://ror.org/03c94t831 Zhejiang Meteorological Bureau ęµ™ę±Ÿēœę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(38956, 'https://ror.org/05ygsee60', 'en', 1, 'https://ror.org/05ygsee60 Yunnan Institute of Endemic Diseases Control and Prevention äŗ‘å—ēœåœ°ę–¹ē—…é˜²ę²»ē½‘'),
(38957, 'https://ror.org/04dw3t358', 'en', 1, 'https://ror.org/04dw3t358 Zhengzhou Fruit Research Institute äø­å›½å†œäøšē§‘å­¦é™¢éƒ‘å·žęžœę ‘ē ”ē©¶ę‰€'),
(38958, 'https://ror.org/03sasjr79', 'en', 1, 'https://ror.org/03sasjr79 Yunnan Institute of Parasitic Diseases äŗ‘å—åÆ„ē”Ÿč™«ē—…é˜²ę²»ē½‘'),
(38959, 'https://ror.org/03ngerk47', 'en', 1, 'https://ror.org/03ngerk47 Al-Farabi College'),
(38960, 'https://ror.org/018zase94', 'en', 1, 'https://ror.org/018zase94 All India Institute of Physical Medicine and Rehabilitation'),
(38961, 'https://ror.org/01khc4e56', 'en', 1, 'https://ror.org/01khc4e56 Yunnan Provincial Hospital of Traditional Chinese Medicine äŗ‘å—ēœäø­åŒ»åŒ»é™¢'),
(38962, 'https://ror.org/03mt6tt39', 'en', 1, 'https://ror.org/03mt6tt39 Asian Institute of Management'),
(38963, 'https://ror.org/03sgfhr82', 'es', 1, 'https://ror.org/03sgfhr82 Asociacion Para Evitar la Ceguera en MƩxico Hospital Dr. Luis SƔnchez Bulnes'),
(38964, 'https://ror.org/04j0w0694', 'en', 1, 'https://ror.org/04j0w0694 Atlantic International University'),
(38965, 'https://ror.org/03a39dd69', 'en', 1, 'https://ror.org/03a39dd69 De La Salle University – DasmariƱas'),
(38966, 'https://ror.org/02srjxm46', 'en', 1, 'https://ror.org/02srjxm46 Brazosport College'),
(38967, 'https://ror.org/04z1g6718', 'en', 1, 'https://ror.org/04z1g6718 Brookhaven College'),
(38968, 'https://ror.org/0352adn16', 'en', 1, 'https://ror.org/0352adn16 American College of Dubai'),
(38969, 'https://ror.org/012sa7x09', 'en', 1, 'https://ror.org/012sa7x09 Eastfield College'),
(38970, 'https://ror.org/00mm8q321', 'en', 1, 'https://ror.org/00mm8q321 American Military University'),
(38971, 'https://ror.org/0417r6n29', 'en', 1, 'https://ror.org/0417r6n29 Richland College'),
(38972, 'https://ror.org/00kb9vf38', 'en', 1, 'https://ror.org/00kb9vf38 Australasian College for Emergency Medicine'),
(38973, 'https://ror.org/02hnxxp83', 'en', 1, 'https://ror.org/02hnxxp83 American University of the Caribbean School of Medicine'),
(38974, 'https://ror.org/03gjr0792', 'en', 1, 'https://ror.org/03gjr0792 Central Building Research Institute');
INSERT INTO `rors` VALUES
(38975, 'https://ror.org/045gxp391', 'en', 1, 'https://ror.org/045gxp391 Aneurin Bevan University Health Board'),
(38976, 'https://ror.org/03cbgzw80', 'en', 1, 'https://ror.org/03cbgzw80 Central Institute for Cotton Research'),
(38977, 'https://ror.org/026j5b854', 'en', 1, 'https://ror.org/026j5b854 Central Institute of Agricultural Engineering ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(38978, 'https://ror.org/05ccyns11', 'en', 1, 'https://ror.org/05ccyns11 Apollo Hospitals'),
(38979, 'https://ror.org/037rveh76', 'en', 1, 'https://ror.org/037rveh76 Bangladesh College of Physicians and Surgeons'),
(38980, 'https://ror.org/05e7sd388', 'en', 1, 'https://ror.org/05e7sd388 Central Institute of Brackishwater Aquaculture'),
(38981, 'https://ror.org/00hd92c69', 'en', 1, 'https://ror.org/00hd92c69 Central Institute of Plastics Engineering and Technology'),
(38982, 'https://ror.org/052afrt88', 'en', 1, 'https://ror.org/052afrt88 Central Plantation Crops Research Institute'),
(38983, 'https://ror.org/024h4jv51', 'en', 1, 'https://ror.org/024h4jv51 Central Sheep and Wool Research Institute ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤­ą„‡ą¤”ą¤¼ और ऊन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(38984, 'https://ror.org/02mht3s70', 'en', 1, 'https://ror.org/02mht3s70 City of Westminster College'),
(38985, 'https://ror.org/05jdfze05', 'en', 1, 'https://ror.org/05jdfze05 Indian Institute of Soil and Water Conservation'),
(38986, 'https://ror.org/03er61e50', 'fr', 1, 'https://ror.org/03er61e50 Clinique Pasteur Pasteur Clinic'),
(38987, 'https://ror.org/0366v8040', 'en', 1, 'https://ror.org/0366v8040 Central Soil Salinity Research Institute'),
(38988, 'https://ror.org/014hmqv77', 'en', 1, 'https://ror.org/014hmqv77 Dudley Group NHS Foundation Trust'),
(38989, 'https://ror.org/033jaw121', 'en', 1, 'https://ror.org/033jaw121 College of Intensive Care Medicine'),
(38990, 'https://ror.org/04sgttv52', 'pt', 1, 'https://ror.org/04sgttv52 Centro Hospitalar Cova da Beira Hospital Center of Cova da Beira'),
(38991, 'https://ror.org/037gpje79', 'en', 1, 'https://ror.org/037gpje79 Colleges of Medicine of South Africa'),
(38992, 'https://ror.org/01t3g9a95', 'en', 1, 'https://ror.org/01t3g9a95 Community College of Beaver County'),
(38993, 'https://ror.org/00k51n564', 'en', 1, 'https://ror.org/00k51n564 Emmanuel Hospital Association'),
(38994, 'https://ror.org/02se5n791', 'en', 1, 'https://ror.org/02se5n791 Entrepreneurship Development Institute of India'),
(38995, 'https://ror.org/00cy2ef80', 'pt', 1, 'https://ror.org/00cy2ef80 Centro UniversitƔrio Metodista IPA'),
(38996, 'https://ror.org/02bjw4523', 'en', 1, 'https://ror.org/02bjw4523 Chartered Institute of Linguists'),
(38997, 'https://ror.org/0221k0h06', 'en', 1, 'https://ror.org/0221k0h06 European School of Molecular Medicine'),
(38998, 'https://ror.org/005j5qx09', 'no_lang_code', 1, 'https://ror.org/005j5qx09 FKUZ Stavropol Rospotrebnadzor Anti Institute Š¤ŠšŠ£Š— Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ ŠæŃ€Š¾Ń‚ŠøŠ²Š¾Ń‡ŃƒŠ¼Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ РоспотребнаГзора'),
(38999, 'https://ror.org/05pkv9t98', 'en', 1, 'https://ror.org/05pkv9t98 Central Research Institute of Structural Materials Prometey Š“ŠŠ¦ Š¤Š“Š£ŠŸ Ā«Š¦ŠŠ˜Š˜ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ†ŠøŠ¾Š½Š½Ń‹Ń… материалов Ā«ŠŸŃ€Š¾Š¼ŠµŃ‚ŠµŠ¹Ā»'),
(39000, 'https://ror.org/00tqkxb21', 'en', 1, 'https://ror.org/00tqkxb21 Forest Research Institute वन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(39001, 'https://ror.org/05w5n1x92', 'en', 1, 'https://ror.org/05w5n1x92 Organisation Ouest Africaine de la SantƩ West African Health Organisation'),
(39002, 'https://ror.org/04fhp7r51', 'en', 1, 'https://ror.org/04fhp7r51 Davao del Norte State College'),
(39003, 'https://ror.org/00cxqcr87', 'en', 1, 'https://ror.org/00cxqcr87 Christian Heritage College'),
(39004, 'https://ror.org/01dmnvb64', 'es', 1, 'https://ror.org/01dmnvb64 Fundación Hospital Manacor'),
(39005, 'https://ror.org/0432tev68', 'en', 1, 'https://ror.org/0432tev68 Davao Medical School Foundation'),
(39006, 'https://ror.org/021pyej66', 'en', 1, 'https://ror.org/021pyej66 Gandhi Medical College & Hospital గాంధీ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(39007, 'https://ror.org/00f975e16', 'no_lang_code', 1, 'https://ror.org/00f975e16 Genesys (United States)'),
(39008, 'https://ror.org/04e72vw61', 'en', 1, 'https://ror.org/04e72vw61 Debre Berhan University'),
(39009, 'https://ror.org/009hwr222', 'no_lang_code', 1, 'https://ror.org/009hwr222 Pelum Association'),
(39010, 'https://ror.org/055fmxa32', 'en', 1, 'https://ror.org/055fmxa32 Dongnam Institute of Radiological & Medical Sciences'),
(39011, 'https://ror.org/03zt3va85', 'fr', 1, 'https://ror.org/03zt3va85 Institut de PalƩontologie Humaine'),
(39012, 'https://ror.org/030ms0x66', 'es', 1, 'https://ror.org/030ms0x66 Hospital Universitario Dr JosƩ Eleuterio Gonzalez'),
(39013, 'https://ror.org/0387j8q89', 'pt', 1, 'https://ror.org/0387j8q89 Grupo Hospitalar Conceição'),
(39014, 'https://ror.org/006k05x61', 'pt', 1, 'https://ror.org/006k05x61 Complexo Hospitalar UniversitƔrio Professor Edgard Santos'),
(39015, 'https://ror.org/00v9zm431', 'es', 1, 'https://ror.org/00v9zm431 Hospital Vicente Corral Moscoso'),
(39016, 'https://ror.org/04pqf8583', 'es', 1, 'https://ror.org/04pqf8583 Institut Pere Mata'),
(39017, 'https://ror.org/04d3d5q14', 'en', 1, 'https://ror.org/04d3d5q14 Inspiration Innovation Synergy University'),
(39018, 'https://ror.org/03561p598', 'en', 1, 'https://ror.org/03561p598 Institute of Bio-Resources and Sustainable Development'),
(39019, 'https://ror.org/0561npm29', 'en', 1, 'https://ror.org/0561npm29 Indian Institute of Pulses Research ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ दलहन ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(39020, 'https://ror.org/030me6k41', 'es', 1, 'https://ror.org/030me6k41 Instituto Universitario General GutiƩrrez Mellado'),
(39021, 'https://ror.org/05w47ap08', 'en', 1, 'https://ror.org/05w47ap08 Jawaharlal Nehru Tropical Botanic Garden and Research Institute'),
(39022, 'https://ror.org/0265k0q35', 'en', 1, 'https://ror.org/0265k0q35 Islamic Azad University Boroujerd Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد بروجرد'),
(39023, 'https://ror.org/007zpd132', 'en', 1, 'https://ror.org/007zpd132 Islamic Azad University of Hamedan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد همدان'),
(39024, 'https://ror.org/053s4kp50', 'en', 1, 'https://ror.org/053s4kp50 Islamic Azad University Saveh دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų³Ų§ŁˆŁ‡'),
(39025, 'https://ror.org/01abrxp85', 'en', 1, 'https://ror.org/01abrxp85 Islamic Azad University Semnan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سمنان'),
(39026, 'https://ror.org/042heys49', 'no_lang_code', 1, 'https://ror.org/042heys49 Islamic Azad University Tonekabon'),
(39027, 'https://ror.org/02bqwx915', 'en', 1, 'https://ror.org/02bqwx915 Jubilee Mission Medical College and Research Institute'),
(39028, 'https://ror.org/03b49d241', 'en', 1, 'https://ror.org/03b49d241 Islamic Azad University Shabestar دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“ŲØŲ³ŲŖŲ± صفحه Ų§ŲµŁ„ŪŒ'),
(39029, 'https://ror.org/05813wx75', 'en', 1, 'https://ror.org/05813wx75 Institute for Research on Combustion Istituto di Ricerche sulla Combustione'),
(39030, 'https://ror.org/006qkqr45', 'en', 1, 'https://ror.org/006qkqr45 Institute for Coastal Marine Environment Istituto per l''Ambiente Marino Costiero'),
(39031, 'https://ror.org/0395sep02', 'fr', 1, 'https://ror.org/0395sep02 LycƩe Louis-le-Grand'),
(39032, 'https://ror.org/00acd3d73', 'tr', 1, 'https://ror.org/00acd3d73 Konya Numune Hastanesi'),
(39033, 'https://ror.org/04zmybf18', 'en', 1, 'https://ror.org/04zmybf18 Korea Institute of Nuclear Safety ķ•œźµ­ģ›ģžė „ģ•ˆģ „źø°ģˆ ģ›'),
(39034, 'https://ror.org/02bbqcn27', 'en', 1, 'https://ror.org/02bbqcn27 King''s College School'),
(39035, 'https://ror.org/034pbde03', 'en', 1, 'https://ror.org/034pbde03 Maharaja Engineering College'),
(39036, 'https://ror.org/05r1p5z75', 'en', 1, 'https://ror.org/05r1p5z75 KVG Dental College & Hospital'),
(39037, 'https://ror.org/04g4hjw43', 'en', 1, 'https://ror.org/04g4hjw43 A.V. Dumansky Institute of Colloid and Water Chemistry Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ колоїГної хімії та хімії воГи ім. А.Š’. Š”ŃƒŠ¼Š°Š½ŃŃŒŠŗŠ¾Š³Š¾'),
(39038, 'https://ror.org/03t5hbz89', 'en', 1, 'https://ror.org/03t5hbz89 Institute of Organic Chemistry Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органічної хімії'),
(39039, 'https://ror.org/01tb4bh27', 'en', 1, 'https://ror.org/01tb4bh27 National Fisheries Research and Development Institute'),
(39040, 'https://ror.org/05edrtk54', 'hi', 1, 'https://ror.org/05edrtk54 Kadi Sarva Vishwavidyalaya'),
(39041, 'https://ror.org/04p9b6182', 'en', 1, 'https://ror.org/04p9b6182 National Institute of Pharmaceutical Education and Research ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°ą§€ą¦Æą¦¼ ą¦­ą§‡ą¦·ą¦œą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¶ą¦æą¦•ą§ą¦·ą¦¾ আৰু গৱেষণা ą¦Ŗą§ą§°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø, ą¦—ą§ą§±ą¦¾ą¦¹ą¦¾ą¦Ÿą§€'),
(39042, 'https://ror.org/030ag6b74', 'en', 1, 'https://ror.org/030ag6b74 Meenakshi Medical College Hospital and Research Institute'),
(39043, 'https://ror.org/040dgqr26', 'en', 1, 'https://ror.org/040dgqr26 National Institute of Pharmaceutical Education and Research'),
(39044, 'https://ror.org/05qs80z63', 'en', 1, 'https://ror.org/05qs80z63 Institute of Finance and Banking äø­å›½ē¤¾ä¼šē§‘å­¦é™¢é‡‘čžē ”ē©¶ę‰€'),
(39045, 'https://ror.org/02apff255', 'en', 1, 'https://ror.org/02apff255 Institute of Finance and Trade Economics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢č“¢ę”æäøŽč“øę˜“ē»ęµŽē ”ē©¶ę‰€'),
(39046, 'https://ror.org/02kr3gj55', 'en', 1, 'https://ror.org/02kr3gj55 Mid Cheshire Hospitals NHS Foundation Trust'),
(39047, 'https://ror.org/01337pb37', 'en', 1, 'https://ror.org/01337pb37 Military Technical College'),
(39048, 'https://ror.org/054ztz556', 'en', 1, 'https://ror.org/054ztz556 New York Chiropractic College'),
(39049, 'https://ror.org/03gvptg28', 'en', 1, 'https://ror.org/03gvptg28 Ludwig Cancer Research'),
(39050, 'https://ror.org/03ppgma52', 'en', 1, 'https://ror.org/03ppgma52 Project Management Institute'),
(39051, 'https://ror.org/000cvk368', 'en', 1, 'https://ror.org/000cvk368 Ohio Valley Medical Center'),
(39052, 'https://ror.org/04h4g6162', 'en', 1, 'https://ror.org/04h4g6162 Pt. Jawahar Lal Nehru Memorial Medical College'),
(39053, 'https://ror.org/05gm3yv92', 'en', 1, 'https://ror.org/05gm3yv92 North Eastern Indira Gandhi Regional Institute of Health and Medical Sciences'),
(39054, 'https://ror.org/00hqbvm92', 'en', 1, 'https://ror.org/00hqbvm92 Oxford Dental College and Hospital'),
(39055, 'https://ror.org/01vfwah22', 'en', 1, 'https://ror.org/01vfwah22 Pacific Dental College and Hospital'),
(39056, 'https://ror.org/0536t7y80', 'en', 1, 'https://ror.org/0536t7y80 North Khorasan University of Medical Sciences'),
(39057, 'https://ror.org/0088h4061', 'en', 1, 'https://ror.org/0088h4061 Dr. D. Y. Patil Medical College, Hospital and Research Centre'),
(39058, 'https://ror.org/03jjxkw75', 'en', 1, 'https://ror.org/03jjxkw75 Rajasthan University of Veterinary and Animal Sciences'),
(39059, 'https://ror.org/005tx0y19', 'en', 1, 'https://ror.org/005tx0y19 Research Institute of Industrial Science and Technology'),
(39060, 'https://ror.org/04yaxh485', 'en', 1, 'https://ror.org/04yaxh485 Raffles Institution'),
(39061, 'https://ror.org/05362bq16', 'en', 1, 'https://ror.org/05362bq16 Royal College of Anaesthetists'),
(39062, 'https://ror.org/05a1xb650', 'en', 1, 'https://ror.org/05a1xb650 Seema Dental College and Hospital'),
(39063, 'https://ror.org/01bzmq497', 'en', 1, 'https://ror.org/01bzmq497 Royal College of Obstetricians and Gynaecologists'),
(39064, 'https://ror.org/02nd9e057', 'en', 1, 'https://ror.org/02nd9e057 Ross University School of Medicine'),
(39065, 'https://ror.org/02xj62754', 'en', 1, 'https://ror.org/02xj62754 Seoul School of Integrated Sciences and Technologies ģ„œģšøź³¼ķ•™ģ¢…ķ•©ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(39066, 'https://ror.org/00s6kha82', 'en', 1, 'https://ror.org/00s6kha82 Seoul Women''s College of Nursing'),
(39067, 'https://ror.org/04ce87537', 'en', 1, 'https://ror.org/04ce87537 Sherwood Forest Hospitals NHS Foundation Trust'),
(39068, 'https://ror.org/05s86pb97', 'en', 1, 'https://ror.org/05s86pb97 Royal College of Ophthalmologists'),
(39069, 'https://ror.org/037n46f49', 'en', 1, 'https://ror.org/037n46f49 Royal College of Pathologists'),
(39070, 'https://ror.org/02evbg326', 'en', 1, 'https://ror.org/02evbg326 Royal College of Pathologists of Australasia'),
(39071, 'https://ror.org/03naw9h65', 'en', 1, 'https://ror.org/03naw9h65 Royal Australian and New Zealand College of Obstetricians and Gynaecologists'),
(39072, 'https://ror.org/02ay8t571', 'en', 1, 'https://ror.org/02ay8t571 Shriram Institute for Industrial Research'),
(39073, 'https://ror.org/053e6gh17', 'en', 1, 'https://ror.org/053e6gh17 Royal College of Radiologists'),
(39074, 'https://ror.org/00kn94t37', 'en', 1, 'https://ror.org/00kn94t37 Rubber Board'),
(39075, 'https://ror.org/00wcxq223', 'en', 1, 'https://ror.org/00wcxq223 Rajamangala University of Technology Krungthep'),
(39076, 'https://ror.org/0444zqa87', 'en', 1, 'https://ror.org/0444zqa87 Sri Devaraj Urs Academy of Higher Education and Research'),
(39077, 'https://ror.org/0001ke483', 'en', 1, 'https://ror.org/0001ke483 St George''s Hospital'),
(39078, 'https://ror.org/00we1pa83', 'pt', 1, 'https://ror.org/00we1pa83 Inov Inesc Inovação Instituto de Novas Tecnologias'),
(39079, 'https://ror.org/050r8mq79', 'en', 1, 'https://ror.org/050r8mq79 Thrombosis Research Institute'),
(39080, 'https://ror.org/040eytj64', 'en', 1, 'https://ror.org/040eytj64 St.Martha''s College Of Nursing'),
(39081, 'https://ror.org/02gcnpr25', 'en', 1, 'https://ror.org/02gcnpr25 Trinity College London'),
(39082, 'https://ror.org/01jj16t33', 'en', 1, 'https://ror.org/01jj16t33 Santosh University'),
(39083, 'https://ror.org/05sy8b013', 'en', 1, 'https://ror.org/05sy8b013 United World College of the Adriatic'),
(39084, 'https://ror.org/012wxwj57', 'es', 1, 'https://ror.org/012wxwj57 Universidad del Papaloapan'),
(39085, 'https://ror.org/053sycd29', 'en', 1, 'https://ror.org/053sycd29 Technological Institute for Superhard and Novel Carbon Materials Технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сверхтверГых Šø новых ŃƒŠ³Š»ŠµŃ€Š¾Š“Š½Ń‹Ń… материалов'),
(39086, 'https://ror.org/02p79p790', 'en', 1, 'https://ror.org/02p79p790 Technological Institute of the Philippines'),
(39087, 'https://ror.org/00vf1vw09', 'es', 1, 'https://ror.org/00vf1vw09 Universidad de La Salle BajĆ­o'),
(39088, 'https://ror.org/04bhgg012', 'es', 1, 'https://ror.org/04bhgg012 Universidad PolitƩcnica de Tulancingo'),
(39089, 'https://ror.org/04m34bn97', 'es', 1, 'https://ror.org/04m34bn97 Universidad Politecnica del Estado de Morelos'),
(39090, 'https://ror.org/02f72qf66', 'es', 1, 'https://ror.org/02f72qf66 Universidad Tecnológica del Sur de Sonora'),
(39091, 'https://ror.org/02xq98350', 'en', 1, 'https://ror.org/02xq98350 Coffee Research Institute'),
(39092, 'https://ror.org/04p18ec14', 'en', 1, 'https://ror.org/04p18ec14 Vinayaka Missions Medical College and Hospitals'),
(39093, 'https://ror.org/02qn0hf26', 'en', 1, 'https://ror.org/02qn0hf26 University of Agricultural Sciences, Dharwad'),
(39094, 'https://ror.org/056b4pm25', 'fr', 1, 'https://ror.org/056b4pm25 HƓpital Pasteur'),
(39095, 'https://ror.org/04v1jm771', 'en', 1, 'https://ror.org/04v1jm771 State Oil and Gas Board of Alabama'),
(39096, 'https://ror.org/05w3mye26', 'en', 1, 'https://ror.org/05w3mye26 Geological Survey of Alabama'),
(39097, 'https://ror.org/01p1h2017', 'no_lang_code', 1, 'https://ror.org/01p1h2017 Abhikram (India)'),
(39098, 'https://ror.org/021g6e774', 'no_lang_code', 1, 'https://ror.org/021g6e774 Caplin Point Laboratories (India)'),
(39099, 'https://ror.org/02xqs5h32', 'no_lang_code', 1, 'https://ror.org/02xqs5h32 Antrix Corporation (India)'),
(39100, 'https://ror.org/00cztqj29', 'en', 1, 'https://ror.org/00cztqj29 ACS Medical College and Hospital'),
(39101, 'https://ror.org/00edfym28', 'no_lang_code', 1, 'https://ror.org/00edfym28 Bharat Electronics (India) भारत ą¤‡ą¤²ą„‡ą¤•ą„ą¤Ÿą„ą¤°ą„‰ą¤Øą¤æą¤• ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(39102, 'https://ror.org/02wvzb321', 'en', 1, 'https://ror.org/02wvzb321 Action for Agricultural Renewal in Maharashtra'),
(39103, 'https://ror.org/04e57v876', 'en', 1, 'https://ror.org/04e57v876 Career Institute Of Medical & Dental Sciences and Hospital'),
(39104, 'https://ror.org/03pztks36', 'no_lang_code', 1, 'https://ror.org/03pztks36 Aditya Birla (India)'),
(39105, 'https://ror.org/02fq16441', 'no_lang_code', 1, 'https://ror.org/02fq16441 Kalyani Group (India)'),
(39106, 'https://ror.org/02skzpy58', 'en', 1, 'https://ror.org/02skzpy58 Centre for Environmental Management and Participatory Development'),
(39107, 'https://ror.org/03ky3pc21', 'no_lang_code', 1, 'https://ror.org/03ky3pc21 Bharat Heavy Electricals (India)'),
(39108, 'https://ror.org/01jdv2a57', 'no_lang_code', 1, 'https://ror.org/01jdv2a57 Agilent Technologies (India)'),
(39109, 'https://ror.org/02m8kpq64', 'en', 1, 'https://ror.org/02m8kpq64 Child In Need Institute'),
(39110, 'https://ror.org/01c8gte40', 'en', 1, 'https://ror.org/01c8gte40 Appropriate Rural Technology Institute'),
(39111, 'https://ror.org/00rqyj043', 'no_lang_code', 1, 'https://ror.org/00rqyj043 AquAgri Processing Private Limited (India)'),
(39112, 'https://ror.org/05s1apj20', 'no_lang_code', 1, 'https://ror.org/05s1apj20 Bharat Petroleum (India)'),
(39113, 'https://ror.org/04298em06', 'en', 1, 'https://ror.org/04298em06 Central Arid Zone Research Institute'),
(39114, 'https://ror.org/00h0gj516', 'en', 1, 'https://ror.org/00h0gj516 Agri Biotech Foundation'),
(39115, 'https://ror.org/03sv4ev21', 'en', 1, 'https://ror.org/03sv4ev21 Christian Institute of Health Sciences and Research Hospital'),
(39116, 'https://ror.org/04kaykv54', 'en', 1, 'https://ror.org/04kaykv54 Central Board of Secondary Education'),
(39117, 'https://ror.org/02bremz31', 'no_lang_code', 1, 'https://ror.org/02bremz31 Alembic Pharmaceuticals (India)'),
(39118, 'https://ror.org/02s7a2f24', 'en', 1, 'https://ror.org/02s7a2f24 Ali Yavar Jung National Institute for the Hearing Handicapped'),
(39119, 'https://ror.org/03zmqr331', 'no_lang_code', 1, 'https://ror.org/03zmqr331 Bristol-Myers Squibb (India)'),
(39120, 'https://ror.org/00s8w7498', 'en', 1, 'https://ror.org/00s8w7498 Aryavarta Space Organization'),
(39121, 'https://ror.org/00xv87230', 'en', 1, 'https://ror.org/00xv87230 Church of South India Hospital'),
(39122, 'https://ror.org/047kynf18', 'no_lang_code', 1, 'https://ror.org/047kynf18 Biocon (India)'),
(39123, 'https://ror.org/01x7r2e09', 'en', 1, 'https://ror.org/01x7r2e09 Central Ground Water Board'),
(39124, 'https://ror.org/05tbkpd69', 'en', 1, 'https://ror.org/05tbkpd69 All India Management Association'),
(39125, 'https://ror.org/050dfh454', 'no_lang_code', 1, 'https://ror.org/050dfh454 Ashok Leyland (India)'),
(39126, 'https://ror.org/02wmtxq23', 'en', 1, 'https://ror.org/02wmtxq23 Central Institute for Research on Buffaloes'),
(39127, 'https://ror.org/02e22ra24', 'en', 1, 'https://ror.org/02e22ra24 Ashoka Trust for Research in Ecology and the Environment'),
(39128, 'https://ror.org/00qxm3x60', 'no_lang_code', 1, 'https://ror.org/00qxm3x60 Biological E (India)'),
(39129, 'https://ror.org/013qy4n59', 'en', 1, 'https://ror.org/013qy4n59 Central Institute of Post-Harvest Engineering and Technology'),
(39130, 'https://ror.org/000rbze86', 'en', 1, 'https://ror.org/000rbze86 Asia Pacific Institute of Management'),
(39131, 'https://ror.org/03q1jsa36', 'en', 1, 'https://ror.org/03q1jsa36 Central Manufacturing Technology Institute'),
(39132, 'https://ror.org/00h3xj803', 'no_lang_code', 1, 'https://ror.org/00h3xj803 Coal India (India) ą¤•ą„‹ą¤² इंऔिया ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(39133, 'https://ror.org/04dvrba58', 'en', 1, 'https://ror.org/04dvrba58 Anchorage'),
(39134, 'https://ror.org/01x51st25', 'no_lang_code', 1, 'https://ror.org/01x51st25 Cognizant (India)'),
(39135, 'https://ror.org/05dc3mt95', 'en', 1, 'https://ror.org/05dc3mt95 Asian Energy Institute'),
(39136, 'https://ror.org/04gevk212', 'no_lang_code', 1, 'https://ror.org/04gevk212 Asian Paints (India)'),
(39137, 'https://ror.org/00mwrav07', 'en', 1, 'https://ror.org/00mwrav07 Central Pollution Control Board'),
(39138, 'https://ror.org/023wx7g30', 'en', 1, 'https://ror.org/023wx7g30 Association for Intelligent Transport Systems'),
(39139, 'https://ror.org/014bdwq31', 'en', 1, 'https://ror.org/014bdwq31 DKTE Society''s Textile and Engineering Institute'),
(39140, 'https://ror.org/01z4x3k54', 'en', 1, 'https://ror.org/01z4x3k54 Association for Stimulating Know How'),
(39141, 'https://ror.org/04hrmb987', 'en', 1, 'https://ror.org/04hrmb987 Confederation of Indian Industry ą¤•ą„‰ą¤Øą„ą¤«ą„‡ą¤”ą¤°ą„‡ą¤¶ą¤Ø ऑफ इंऔियन ą¤‡ą¤‚ą¤”ą¤øą„ą¤Ÿą„ą¤°ą„€'),
(39142, 'https://ror.org/01t067805', 'en', 1, 'https://ror.org/01t067805 Central Soil and Materials Research Station'),
(39143, 'https://ror.org/04rt7n757', 'en', 1, 'https://ror.org/04rt7n757 C. U. Shah University'),
(39144, 'https://ror.org/04bzq6109', 'en', 1, 'https://ror.org/04bzq6109 Central Tobacco Research Institute'),
(39145, 'https://ror.org/02g7a7139', 'en', 1, 'https://ror.org/02g7a7139 Critical Art and Media Practice'),
(39146, 'https://ror.org/059qtxz36', 'en', 1, 'https://ror.org/059qtxz36 Dr. B.L. Kapur Memorial Hospital'),
(39147, 'https://ror.org/03yq84q39', 'en', 1, 'https://ror.org/03yq84q39 Centre For Environment Architecture & Human Settlements'),
(39148, 'https://ror.org/016936j45', 'en', 1, 'https://ror.org/016936j45 Association of State Road Transport Undertakings'),
(39149, 'https://ror.org/026h9k063', 'en', 1, 'https://ror.org/026h9k063 Central Water and Power Research Station'),
(39150, 'https://ror.org/027w2gw37', 'no_lang_code', 1, 'https://ror.org/027w2gw37 Astonfield (India)'),
(39151, 'https://ror.org/043rj4j47', 'no_lang_code', 1, 'https://ror.org/043rj4j47 Avantha (India)'),
(39152, 'https://ror.org/00fvdng26', 'no_lang_code', 1, 'https://ror.org/00fvdng26 Vedanta Resources (India)'),
(39153, 'https://ror.org/040817k51', 'en', 1, 'https://ror.org/040817k51 Centre For Development Alternatives'),
(39154, 'https://ror.org/02kmd4c68', 'no_lang_code', 1, 'https://ror.org/02kmd4c68 Calyx (India)'),
(39155, 'https://ror.org/05xsgtz43', 'en', 1, 'https://ror.org/05xsgtz43 Atomic Energy Regulatory Board'),
(39156, 'https://ror.org/04s4kqd92', 'no_lang_code', 1, 'https://ror.org/04s4kqd92 Dabur Research Foundation (India)'),
(39157, 'https://ror.org/0004nq427', 'en', 1, 'https://ror.org/0004nq427 Data Security Council of India'),
(39158, 'https://ror.org/01w6rxw55', 'en', 1, 'https://ror.org/01w6rxw55 Atomic Minerals Directorate for Exploration and Research ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤–ą¤Øą¤æą¤œ ą¤…ą¤Øą„ą¤µą„‡ą¤·ą¤£ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(39159, 'https://ror.org/04s8jbf64', 'en', 1, 'https://ror.org/04s8jbf64 Centre for Development Economics'),
(39160, 'https://ror.org/012dywt31', 'en', 1, 'https://ror.org/012dywt31 Defence Laboratory Jodhpur ą¤°ą¤•ą„ą¤·ą¤¾ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾ ą¤œą„‹ą¤§ą¤Ŗą„ą¤°'),
(39161, 'https://ror.org/01axjm922', 'no_lang_code', 1, 'https://ror.org/01axjm922 Fresenius Kabi (India)'),
(39162, 'https://ror.org/044cdgz67', 'en', 1, 'https://ror.org/044cdgz67 Delhi Integrated Multi-Modal Transit System'),
(39163, 'https://ror.org/00y5kz467', 'en', 1, 'https://ror.org/00y5kz467 Frontier Lifeline Hospital'),
(39164, 'https://ror.org/00x90x382', 'en', 1, 'https://ror.org/00x90x382 Euro-India Research Centre'),
(39165, 'https://ror.org/04n3mvx98', 'no_lang_code', 1, 'https://ror.org/04n3mvx98 Elder Pharmaceuticals (India)'),
(39166, 'https://ror.org/00tnh9n90', 'no_lang_code', 1, 'https://ror.org/00tnh9n90 Emami (India)'),
(39167, 'https://ror.org/04eqe6790', 'no_lang_code', 1, 'https://ror.org/04eqe6790 Danish Hydraulic Institute (India)'),
(39168, 'https://ror.org/00zkm9w64', 'no_lang_code', 1, 'https://ror.org/00zkm9w64 Emcure Pharmaceuticals (India)'),
(39169, 'https://ror.org/02v8a2f42', 'en', 1, 'https://ror.org/02v8a2f42 Automotive Research Association of India'),
(39170, 'https://ror.org/01d0r2q86', 'en', 1, 'https://ror.org/01d0r2q86 Centre for Internet and Society'),
(39171, 'https://ror.org/04dd9ss52', 'no_lang_code', 1, 'https://ror.org/04dd9ss52 General Electric (India)'),
(39172, 'https://ror.org/037mwns69', 'en', 1, 'https://ror.org/037mwns69 Centre for Operations Research and Training'),
(39173, 'https://ror.org/05wy2at76', 'no_lang_code', 1, 'https://ror.org/05wy2at76 Engineers India (India) ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą„ą¤ø इंऔिया ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(39174, 'https://ror.org/04were380', 'en', 1, 'https://ror.org/04were380 ESIC Hospital'),
(39175, 'https://ror.org/00wrwqa33', 'en', 1, 'https://ror.org/00wrwqa33 Indian Institute of Oilseeds Research ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ - ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ तिलहन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(39176, 'https://ror.org/04jzegn30', 'en', 1, 'https://ror.org/04jzegn30 Centre for Policy Research'),
(39177, 'https://ror.org/05g5nrw43', 'no_lang_code', 1, 'https://ror.org/05g5nrw43 General Motors (India)'),
(39178, 'https://ror.org/04bxq2s19', 'no_lang_code', 1, 'https://ror.org/04bxq2s19 Evalueserve (India)'),
(39179, 'https://ror.org/02getqa45', 'no_lang_code', 1, 'https://ror.org/02getqa45 Avesthagen (India)'),
(39180, 'https://ror.org/0006f9a08', 'en', 1, 'https://ror.org/0006f9a08 Centre for Science, Development and Media Studies'),
(39181, 'https://ror.org/0209zky62', 'no_lang_code', 1, 'https://ror.org/0209zky62 Evolva (India)'),
(39182, 'https://ror.org/038m0zy23', 'no_lang_code', 1, 'https://ror.org/038m0zy23 Guavus (India)'),
(39183, 'https://ror.org/05ymegm05', 'en', 1, 'https://ror.org/05ymegm05 BAIF Development Research Foundation'),
(39184, 'https://ror.org/04xprjz26', 'no_lang_code', 1, 'https://ror.org/04xprjz26 Geometric (India)'),
(39185, 'https://ror.org/04sd34v05', 'en', 1, 'https://ror.org/04sd34v05 Centre for World Solidarity'),
(39186, 'https://ror.org/03mfv0751', 'en', 1, 'https://ror.org/03mfv0751 Flags of Honour Foundation'),
(39187, 'https://ror.org/00e261632', 'en', 1, 'https://ror.org/00e261632 Gujarat Institute of Development Research'),
(39188, 'https://ror.org/025jwmc29', 'en', 1, 'https://ror.org/025jwmc29 India International Centre'),
(39189, 'https://ror.org/05w034p46', 'no_lang_code', 1, 'https://ror.org/05w034p46 FLAME TAO Knoware (India)'),
(39190, 'https://ror.org/04ajtb593', 'en', 1, 'https://ror.org/04ajtb593 Indian Air Force ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤¾ą¤Æą„ ą¤øą„‡ą¤Øą¤¾'),
(39191, 'https://ror.org/018596x49', 'en', 1, 'https://ror.org/018596x49 Fortis Healthcare'),
(39192, 'https://ror.org/04e5d6174', 'en', 1, 'https://ror.org/04e5d6174 Indian Army ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤„ą¤²ą¤øą„‡ą¤Øą¤¾'),
(39193, 'https://ror.org/01h7phh70', 'en', 1, 'https://ror.org/01h7phh70 Fortis Memorial Research Institute'),
(39194, 'https://ror.org/0170vdc43', 'en', 1, 'https://ror.org/0170vdc43 Forum for Ethics Review Committees in India'),
(39195, 'https://ror.org/03s5w0e14', 'en', 1, 'https://ror.org/03s5w0e14 Indian Institute for Human Settlements'),
(39196, 'https://ror.org/04mze8a19', 'en', 1, 'https://ror.org/04mze8a19 Gian Sagar Medical College and Hospital'),
(39197, 'https://ror.org/0497mxq65', 'en', 1, 'https://ror.org/0497mxq65 Gian Sagar Dental College and Hospital'),
(39198, 'https://ror.org/01cey1344', 'en', 1, 'https://ror.org/01cey1344 Foundation for Research in Health Systems'),
(39199, 'https://ror.org/00ycj0006', 'en', 1, 'https://ror.org/00ycj0006 Institute of Economic Growth'),
(39200, 'https://ror.org/003tb8s84', 'en', 1, 'https://ror.org/003tb8s84 Global ICT Standardization Forum for India'),
(39201, 'https://ror.org/042vyea63', 'en', 1, 'https://ror.org/042vyea63 Institute of Environmental Studies & Wetland Management'),
(39202, 'https://ror.org/04hqtzh27', 'en', 1, 'https://ror.org/04hqtzh27 Indian Institute Of Bio social Research And Development'),
(39203, 'https://ror.org/02dhdwm14', 'en', 1, 'https://ror.org/02dhdwm14 Global Innovation and Technology Alliance'),
(39204, 'https://ror.org/00eqbn006', 'no_lang_code', 1, 'https://ror.org/00eqbn006 GVK (India)'),
(39205, 'https://ror.org/02gnt4v62', 'en', 1, 'https://ror.org/02gnt4v62 Indian Institute of Ecology and Environment'),
(39206, 'https://ror.org/039r0r789', 'en', 1, 'https://ror.org/039r0r789 Government Dental College and Hospital'),
(39207, 'https://ror.org/0370tyv92', 'no_lang_code', 1, 'https://ror.org/0370tyv92 Hardik Fintrade (India)'),
(39208, 'https://ror.org/01nssdz50', 'en', 1, 'https://ror.org/01nssdz50 Government Medical College'),
(39209, 'https://ror.org/04eb14s37', 'en', 1, 'https://ror.org/04eb14s37 Institute of Molecular Medicine'),
(39210, 'https://ror.org/050m92g92', 'en', 1, 'https://ror.org/050m92g92 Government Mohan Kumaramangalam Medical College'),
(39211, 'https://ror.org/02nbb5780', 'no_lang_code', 1, 'https://ror.org/02nbb5780 HCL Technologies (India)'),
(39212, 'https://ror.org/0039tsz33', 'en', 1, 'https://ror.org/0039tsz33 Indian Institute of Management Kashipur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤¾ą¤¶ą„€ą¤Ŗą„ą¤°'),
(39213, 'https://ror.org/04esabr24', 'en', 1, 'https://ror.org/04esabr24 Institute of Nephro Urology'),
(39214, 'https://ror.org/01mx9t266', 'en', 1, 'https://ror.org/01mx9t266 Indian Institute of Plantation Management'),
(39215, 'https://ror.org/045mrnd19', 'en', 1, 'https://ror.org/045mrnd19 Government of Andhra Pradesh'),
(39216, 'https://ror.org/05pysk134', 'en', 1, 'https://ror.org/05pysk134 Health Action by People'),
(39217, 'https://ror.org/0384x6e13', 'no_lang_code', 1, 'https://ror.org/0384x6e13 Hetero Drugs (India)'),
(39218, 'https://ror.org/035dsh769', 'en', 1, 'https://ror.org/035dsh769 Government of Gujarat'),
(39219, 'https://ror.org/05j873a45', 'en', 1, 'https://ror.org/05j873a45 Indian Institute of Soil Science ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ-ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤®ą„ƒą¤¦ą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(39220, 'https://ror.org/02ffkja82', 'no_lang_code', 1, 'https://ror.org/02ffkja82 Hewlett-Packard (India)'),
(39221, 'https://ror.org/05n72ks39', 'en', 1, 'https://ror.org/05n72ks39 Institute of Urban Designers – India'),
(39222, 'https://ror.org/02qrj0f68', 'no_lang_code', 1, 'https://ror.org/02qrj0f68 Jaypee Group (India)'),
(39223, 'https://ror.org/0186jds22', 'en', 1, 'https://ror.org/0186jds22 Indian Jute Industries Research Association'),
(39224, 'https://ror.org/02mdak015', 'no_lang_code', 1, 'https://ror.org/02mdak015 Hilleman Laboratories (India)'),
(39225, 'https://ror.org/04xs1rp67', 'en', 1, 'https://ror.org/04xs1rp67 Institute of Wood Science and Technology'),
(39226, 'https://ror.org/02sxcbg21', 'en', 1, 'https://ror.org/02sxcbg21 Indian Navy ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Øą„Œą¤øą„‡ą¤Øą¤¾'),
(39227, 'https://ror.org/01b891j88', 'en', 1, 'https://ror.org/01b891j88 Government of Haryana'),
(39228, 'https://ror.org/00ahnj653', 'no_lang_code', 1, 'https://ror.org/00ahnj653 Hindustan Aeronautics Limited (India) ą¤¹ą¤æą¤‚ą¤¦ą„ą¤øą„ą¤¤ą¤¾ą¤Ø ą¤ą¤°ą„‹ą¤Øą„‰ą¤Ÿą¤æą¤•ą„ą¤ø ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(39229, 'https://ror.org/05d89hd10', 'en', 1, 'https://ror.org/05d89hd10 Jesuit Madurai Province'),
(39230, 'https://ror.org/058npc379', 'en', 1, 'https://ror.org/058npc379 Institution of Electronics and Telecommunication Engineers'),
(39231, 'https://ror.org/00maf9573', 'en', 1, 'https://ror.org/00maf9573 Government of Karnataka ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²øą²°ą³ą²•ą²¾ą²°'),
(39232, 'https://ror.org/00786fr54', 'en', 1, 'https://ror.org/00786fr54 Indian Register of Shipping'),
(39233, 'https://ror.org/02ac3as27', 'no_lang_code', 1, 'https://ror.org/02ac3as27 JK Agri Genetics (India)'),
(39234, 'https://ror.org/03xja9992', 'en', 1, 'https://ror.org/03xja9992 Hindustan Bible Institute & College'),
(39235, 'https://ror.org/03qw7bm31', 'en', 1, 'https://ror.org/03qw7bm31 Indian Society of International Law'),
(39236, 'https://ror.org/00r96e843', 'en', 1, 'https://ror.org/00r96e843 Government of Kerala ą“•ąµ‡ą“°ą“³ ą“øąµ¼ą“•ąµą“•ą“¾ąµ¼'),
(39237, 'https://ror.org/00gyygy85', 'en', 1, 'https://ror.org/00gyygy85 JRE Group of Institutions'),
(39238, 'https://ror.org/057ykey20', 'en', 1, 'https://ror.org/057ykey20 Government of Maharashtra ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°.भारत'),
(39239, 'https://ror.org/03tpxt335', 'en', 1, 'https://ror.org/03tpxt335 Water Supply and Sanitation Department ą¤Ŗą¤¾ą¤£ą„€ ą¤Ŗą„ą¤°ą¤µą¤ ą¤¾ व ą¤øą„ą¤µą¤šą„ą¤›ą¤¤ą¤¾ विभाग'),
(39240, 'https://ror.org/004kqsv83', 'en', 1, 'https://ror.org/004kqsv83 Government of Sikkim'),
(39241, 'https://ror.org/02yt5we53', 'no_lang_code', 1, 'https://ror.org/02yt5we53 Human Factors International (India)'),
(39242, 'https://ror.org/01gk6s768', 'no_lang_code', 1, 'https://ror.org/01gk6s768 HHV Solar Technologies (India)'),
(39243, 'https://ror.org/04f2n1245', 'no_lang_code', 1, 'https://ror.org/04f2n1245 Intel (India)'),
(39244, 'https://ror.org/03k722897', 'en', 1, 'https://ror.org/03k722897 Institute of Advanced Studies in Education'),
(39245, 'https://ror.org/04p93kz40', 'en', 1, 'https://ror.org/04p93kz40 G Pulla Reddy Dental College & Hospital'),
(39246, 'https://ror.org/018yj7q57', 'en', 1, 'https://ror.org/018yj7q57 International Collective in Support of Fishworkers'),
(39247, 'https://ror.org/015v04m58', 'en', 1, 'https://ror.org/015v04m58 ICFAI Business School'),
(39248, 'https://ror.org/013hg1t45', 'en', 1, 'https://ror.org/013hg1t45 Government of Tamil Nadu ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®…ą®°ą®šąÆ'),
(39249, 'https://ror.org/055x00f07', 'en', 1, 'https://ror.org/055x00f07 ICARE Institute of Medical Sciences and Research & Dr. Bidhan Chandra Roy Hospital'),
(39250, 'https://ror.org/05sfbd077', 'en', 1, 'https://ror.org/05sfbd077 Industrial Credit and Investment Corporation of India'),
(39251, 'https://ror.org/04r8ftk86', 'no_lang_code', 1, 'https://ror.org/04r8ftk86 ICICI Lombard (India)'),
(39252, 'https://ror.org/01hk19p23', 'no_lang_code', 1, 'https://ror.org/01hk19p23 INHS Asvini'),
(39253, 'https://ror.org/00y61sp67', 'no_lang_code', 1, 'https://ror.org/00y61sp67 JSW Group (India)'),
(39254, 'https://ror.org/00hx1yw75', 'en', 1, 'https://ror.org/00hx1yw75 Government of Uttar Pradesh ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ सरकार'),
(39255, 'https://ror.org/05sxgbh67', 'no_lang_code', 1, 'https://ror.org/05sxgbh67 Jubilant Life Sciences (India)'),
(39256, 'https://ror.org/00jatyx22', 'en', 1, 'https://ror.org/00jatyx22 International Management Institute'),
(39257, 'https://ror.org/04141fq07', 'no_lang_code', 1, 'https://ror.org/04141fq07 Lepra Society'),
(39258, 'https://ror.org/028x2z366', 'no_lang_code', 1, 'https://ror.org/028x2z366 Ion Exchange (India)'),
(39259, 'https://ror.org/02q4r4y12', 'en', 1, 'https://ror.org/02q4r4y12 Government Medical College Thoothukudi ą®¤ąÆ‚ą®¤ąÆą®¤ąÆą®•ąÆą®•ąÆą®Ÿą®æ ą®…ą®°ą®šąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(39260, 'https://ror.org/0373m1z21', 'no_lang_code', 1, 'https://ror.org/0373m1z21 IIDC (India)'),
(39261, 'https://ror.org/02a7xs776', 'no_lang_code', 1, 'https://ror.org/02a7xs776 Jyotirmay Eye Clinic'),
(39262, 'https://ror.org/02ppykv54', 'no_lang_code', 1, 'https://ror.org/02ppykv54 Ipca Laboratories (India)'),
(39263, 'https://ror.org/05crd4c40', 'en', 1, 'https://ror.org/05crd4c40 International Life Sciences Institute India'),
(39264, 'https://ror.org/038339q73', 'en', 1, 'https://ror.org/038339q73 Krishak Bharati Cooperative'),
(39265, 'https://ror.org/038nxyh73', 'en', 1, 'https://ror.org/038nxyh73 Great Lakes Institute of Management'),
(39266, 'https://ror.org/04xxdsr80', 'en', 1, 'https://ror.org/04xxdsr80 IT for Change'),
(39267, 'https://ror.org/04wx2hz08', 'en', 1, 'https://ror.org/04wx2hz08 India China Economic and Cultural Council'),
(39268, 'https://ror.org/00cfqsr23', 'en', 1, 'https://ror.org/00cfqsr23 Karnataka Fisheries Development Corporation'),
(39269, 'https://ror.org/01pmnvq60', 'en', 1, 'https://ror.org/01pmnvq60 India HIV/AIDS Alliance'),
(39270, 'https://ror.org/04y5qg507', 'no_lang_code', 1, 'https://ror.org/04y5qg507 ITPEnergised Group (India)'),
(39271, 'https://ror.org/034rwyq63', 'en', 1, 'https://ror.org/034rwyq63 GSL Medical College & General Hospital'),
(39272, 'https://ror.org/04wdr7416', 'no_lang_code', 1, 'https://ror.org/04wdr7416 Lupin Pharmaceuticals (India)'),
(39273, 'https://ror.org/02tjbfx21', 'en', 1, 'https://ror.org/02tjbfx21 Kasturba Hospital'),
(39274, 'https://ror.org/02wjedj15', 'en', 1, 'https://ror.org/02wjedj15 Kerala School of Mathematics'),
(39275, 'https://ror.org/02h8pgc47', 'no_lang_code', 1, 'https://ror.org/02h8pgc47 Narayana Nethralaya'),
(39276, 'https://ror.org/02anh8x74', 'en', 1, 'https://ror.org/02anh8x74 M S Ramaiah University of Applied Sciences'),
(39277, 'https://ror.org/05xth1n37', 'no_lang_code', 1, 'https://ror.org/05xth1n37 Natco Pharma (India)'),
(39278, 'https://ror.org/04v719r80', 'en', 1, 'https://ror.org/04v719r80 National Board of Examinations ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą¤°ą„€ą¤•ą„ą¤·ą¤¾ ą¤¬ą„‹ą¤°ą„ą¤”'),
(39279, 'https://ror.org/032k9nq85', 'no_lang_code', 1, 'https://ror.org/032k9nq85 Magbro Healthcare (India)'),
(39280, 'https://ror.org/0265znh70', 'no_lang_code', 1, 'https://ror.org/0265znh70 Mecpro Heavy Engineering (India)'),
(39281, 'https://ror.org/04ty11y53', 'no_lang_code', 1, 'https://ror.org/04ty11y53 Kirloskar Group (India)'),
(39282, 'https://ror.org/0433t4a66', 'en', 1, 'https://ror.org/0433t4a66 Netaji Subhas National Institute of Sports'),
(39283, 'https://ror.org/02pnvb171', 'en', 1, 'https://ror.org/02pnvb171 National Bureau of Agriculturally Important Microorganisms ą¤•ą„ƒą¤·ą¤æ ą¤•ą„‡ ą¤²ą¤æą¤ ą¤®ą¤¹ą¤¤ą„ą¤µą¤Ŗą„‚ą¤°ą„ą¤£ ą¤øą„‚ą¤•ą„ą¤·ą„ą¤®ą¤œą„€ą¤µą„‹ą¤‚ ą¤•ą„‡ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤¬ą„ą¤Æą„‚ą¤°ą„‹'),
(39284, 'https://ror.org/03dgc0w76', 'en', 1, 'https://ror.org/03dgc0w76 Network for Preventive Environmental Management'),
(39285, 'https://ror.org/02sv2ex42', 'en', 1, 'https://ror.org/02sv2ex42 KLE Society Hospital'),
(39286, 'https://ror.org/04z9hqv51', 'no_lang_code', 1, 'https://ror.org/04z9hqv51 Nidan'),
(39287, 'https://ror.org/0188hng36', 'en', 1, 'https://ror.org/0188hng36 Mehrangarh Museum Trust'),
(39288, 'https://ror.org/017ycwt89', 'en', 1, 'https://ror.org/017ycwt89 KMCT Group of Educational Institutions'),
(39289, 'https://ror.org/05w6t8s34', 'no_lang_code', 1, 'https://ror.org/05w6t8s34 NIIT (India)'),
(39290, 'https://ror.org/00bvt4k03', 'no_lang_code', 1, 'https://ror.org/00bvt4k03 Niramaya Hospital'),
(39291, 'https://ror.org/02q5yp463', 'en', 1, 'https://ror.org/02q5yp463 KVG Medical College & Hospital'),
(39292, 'https://ror.org/021kzta69', 'en', 1, 'https://ror.org/021kzta69 National Centre for Medium Range Weather Forecasting ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ मधयम अवधि ą¤®ą„Œą¤øą¤® ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤Øą„ą¤®ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦'),
(39293, 'https://ror.org/05pgn2b73', 'no_lang_code', 1, 'https://ror.org/05pgn2b73 Merck (India)'),
(39294, 'https://ror.org/02svt2f64', 'no_lang_code', 1, 'https://ror.org/02svt2f64 Maharashtra Hybrid Seeds (India)'),
(39295, 'https://ror.org/00wzvx415', 'en', 1, 'https://ror.org/00wzvx415 National Council for Cement and Building Materials'),
(39296, 'https://ror.org/00x8xyn30', 'no_lang_code', 1, 'https://ror.org/00x8xyn30 Lanco Solar (India)'),
(39297, 'https://ror.org/03af8h728', 'en', 1, 'https://ror.org/03af8h728 Maharashtra State Board of Technical Education'),
(39298, 'https://ror.org/02yj8av48', 'en', 1, 'https://ror.org/02yj8av48 National Dairy Development Board'),
(39299, 'https://ror.org/04s9fyw02', 'en', 1, 'https://ror.org/04s9fyw02 National Institute Of Veterinary Epidemiology And Disease Informatics'),
(39300, 'https://ror.org/021twv479', 'en', 1, 'https://ror.org/021twv479 National Defence Academy ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤•ą¤¾ą¤¦ą¤®ą„€'),
(39301, 'https://ror.org/029m2pd08', 'en', 1, 'https://ror.org/029m2pd08 Noorul Islam College of Dental Science'),
(39302, 'https://ror.org/01nxyxz54', 'en', 1, 'https://ror.org/01nxyxz54 Mahatma Gandhi Mission Institute of Health Sciences'),
(39303, 'https://ror.org/00gbrgx34', 'en', 1, 'https://ror.org/00gbrgx34 National Institute of Construction Management and Research'),
(39304, 'https://ror.org/00dhvr506', 'no_lang_code', 1, 'https://ror.org/00dhvr506 Novartis (India)'),
(39305, 'https://ror.org/01c5dd102', 'no_lang_code', 1, 'https://ror.org/01c5dd102 Mahindra and Mahindra Limited (India)'),
(39306, 'https://ror.org/04he9zv34', 'no_lang_code', 1, 'https://ror.org/04he9zv34 Phoenix Medical Systems (India)'),
(39307, 'https://ror.org/016aq6r42', 'en', 1, 'https://ror.org/016aq6r42 Mahindra United World College India'),
(39308, 'https://ror.org/02h6w3w70', 'no_lang_code', 1, 'https://ror.org/02h6w3w70 Malabar Cancer Centre'),
(39309, 'https://ror.org/00tnmk453', 'no_lang_code', 1, 'https://ror.org/00tnmk453 NTPC Consultancy (India)'),
(39310, 'https://ror.org/0198sv425', 'en', 1, 'https://ror.org/0198sv425 National Institute of Open Schooling ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æą„€ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(39311, 'https://ror.org/052bjm215', 'en', 1, 'https://ror.org/052bjm215 MNR Medical College and Hospital'),
(39312, 'https://ror.org/00vj60w13', 'no_lang_code', 1, 'https://ror.org/00vj60w13 Piramal (India)'),
(39313, 'https://ror.org/01qzva589', 'no_lang_code', 1, 'https://ror.org/01qzva589 Monsanto (India)'),
(39314, 'https://ror.org/00vkpzj58', 'en', 1, 'https://ror.org/00vkpzj58 Malabar Medical College Hospital and Research Centre ą“®ą“²ą“¬ą“¾ąµ¼ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‡ą“¾ą“³ą“œąµ'),
(39315, 'https://ror.org/036e9v691', 'en', 1, 'https://ror.org/036e9v691 National Institution for Transforming India Aayog ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ भारत ą¤Ŗą¤°ą¤æą¤µą¤°ą„ą¤¤ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(39316, 'https://ror.org/000t17x96', 'en', 1, 'https://ror.org/000t17x96 National Institute of Plant Health Management ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤Øą¤øą„ā€ą¤Ŗą¤¤ą¤æ ą¤øą„ā€ą¤µą¤¾ą¤øą„ā€ą¤„ą„ā€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(39317, 'https://ror.org/05jhdev04', 'en', 1, 'https://ror.org/05jhdev04 Office of the Registrar General & Census Commissioner'),
(39318, 'https://ror.org/0488nbv42', 'no_lang_code', 1, 'https://ror.org/0488nbv42 MTEL-KTEI Teleinfra (India)'),
(39319, 'https://ror.org/00sgtz890', 'no_lang_code', 1, 'https://ror.org/00sgtz890 Malladi Drugs and Pharmaceuticals Limited (India)'),
(39320, 'https://ror.org/0136vj189', 'no_lang_code', 1, 'https://ror.org/0136vj189 Power Grid Corporation (India)'),
(39321, 'https://ror.org/02zm5j810', 'en', 1, 'https://ror.org/02zm5j810 National Institute of Science, Technology and Development Studies ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø, ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ और विकास ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(39322, 'https://ror.org/05dd0pt55', 'no_lang_code', 1, 'https://ror.org/05dd0pt55 Oracle (India)'),
(39323, 'https://ror.org/03thb9733', 'en', 1, 'https://ror.org/03thb9733 Mudra Institute of Communications Ahmedabad'),
(39324, 'https://ror.org/04hef0n19', 'en', 1, 'https://ror.org/04hef0n19 Brihanmumbai Municipal Corporation ą¤¬ą„ƒą¤¹ą¤Øą„ą¤®ą„ą¤‚ą¤¬ą¤ˆ महानगरपालिका'),
(39325, 'https://ror.org/020vd6n84', 'en', 1, 'https://ror.org/020vd6n84 National Institute of Technology Meghalaya ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą„‡ą¤˜ą¤¾ą¤²ą¤Æ'),
(39326, 'https://ror.org/011fyh806', 'en', 1, 'https://ror.org/011fyh806 Raipur Municipal Corporation ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤° नगर निगम'),
(39327, 'https://ror.org/01ew11x49', 'no_lang_code', 1, 'https://ror.org/01ew11x49 Panacea Biotec (India)'),
(39328, 'https://ror.org/04ky50w21', 'no_lang_code', 1, 'https://ror.org/04ky50w21 Murugappa (India)'),
(39329, 'https://ror.org/00rq8ty33', 'en', 1, 'https://ror.org/00rq8ty33 National Research Centre for Banana'),
(39330, 'https://ror.org/02h44gz71', 'en', 1, 'https://ror.org/02h44gz71 Mysore Resettlement and Development Agency'),
(39331, 'https://ror.org/026695c98', 'en', 1, 'https://ror.org/026695c98 Project Directorate on Foot and Mouth Disease'),
(39332, 'https://ror.org/041yajy32', 'en', 1, 'https://ror.org/041yajy32 Nansen Environmental Research Centre India'),
(39333, 'https://ror.org/03abjmr84', 'no_lang_code', 1, 'https://ror.org/03abjmr84 Rashtreeya Sikshana Samithi Trust'),
(39334, 'https://ror.org/04y4dkp70', 'en', 1, 'https://ror.org/04y4dkp70 PSG Institute of Advanced Studies'),
(39335, 'https://ror.org/003709a13', 'en', 1, 'https://ror.org/003709a13 National Research Centre for Grapes ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ-ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤‚ą¤—ą„‚ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(39336, 'https://ror.org/01aae0427', 'no_lang_code', 1, 'https://ror.org/01aae0427 Sanmar Group (India)'),
(39337, 'https://ror.org/038rpb237', 'en', 1, 'https://ror.org/038rpb237 Directorate of Groundnut Research ą¤®ą„‚ą¤ą¤—ą¤«ą¤²ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(39338, 'https://ror.org/008seds41', 'en', 1, 'https://ror.org/008seds41 Centre for the Study of Developing Societies'),
(39339, 'https://ror.org/034ffw198', 'no_lang_code', 1, 'https://ror.org/034ffw198 Rayat Shikshan Sanstha'),
(39340, 'https://ror.org/00z3ptn78', 'en', 1, 'https://ror.org/00z3ptn78 Micro Insurance Academy'),
(39341, 'https://ror.org/00600nd69', 'en', 1, 'https://ror.org/00600nd69 Regional Medical Research Centre'),
(39342, 'https://ror.org/02xh2ys40', 'en', 1, 'https://ror.org/02xh2ys40 National Research Centre on Camel ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤‰ą¤·ą„ą¤Ÿą„ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(39343, 'https://ror.org/02wawqt17', 'no_lang_code', 1, 'https://ror.org/02wawqt17 Scope e-Knowledge Center (India)'),
(39344, 'https://ror.org/027sf5r98', 'en', 1, 'https://ror.org/027sf5r98 Peerless Hospital & B.K.Roy Research Centre'),
(39345, 'https://ror.org/05jwrfc26', 'en', 1, 'https://ror.org/05jwrfc26 Rajasthan Dental College and Hospital'),
(39346, 'https://ror.org/02x351n42', 'en', 1, 'https://ror.org/02x351n42 Advanced Materials and Processes Research Institute ą¤Ŗą„ą¤°ą¤—ą¤¤ ą¤Ŗą¤¦ą¤¾ą¤°ą„ą¤„ तऄा ą¤Ŗą„ą¤°ą¤•ą„ą¤°ą¤® ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(39347, 'https://ror.org/03xn8gh76', 'no_lang_code', 1, 'https://ror.org/03xn8gh76 Sipra Labs (India)'),
(39348, 'https://ror.org/04j6cfb03', 'no_lang_code', 1, 'https://ror.org/04j6cfb03 Reliance Industries (India)'),
(39349, 'https://ror.org/02fcamb19', 'en', 1, 'https://ror.org/02fcamb19 National Research Centre on Seed Spices'),
(39350, 'https://ror.org/003ssft94', 'no_lang_code', 1, 'https://ror.org/003ssft94 Seascape Learning (India)'),
(39351, 'https://ror.org/039wntw43', 'no_lang_code', 1, 'https://ror.org/039wntw43 Remidio Innovative Solutions (India)'),
(39352, 'https://ror.org/02x1t0474', 'en', 1, 'https://ror.org/02x1t0474 Seth Research Foundation'),
(39353, 'https://ror.org/03mj1nk45', 'en', 1, 'https://ror.org/03mj1nk45 National University of Educational Planning and Administration'),
(39354, 'https://ror.org/01d47cz35', 'en', 1, 'https://ror.org/01d47cz35 Research Design And Standards Organization ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤…ą¤­ą¤æą¤•ą¤²ą„ą¤Ŗ ą¤ą¤µą¤‚ मानक संगठन'),
(39355, 'https://ror.org/02cnc0j97', 'en', 1, 'https://ror.org/02cnc0j97 Shadan Hospital and Institute of Medical Sciences'),
(39356, 'https://ror.org/006hdqg38', 'en', 1, 'https://ror.org/006hdqg38 Shanti Business School'),
(39357, 'https://ror.org/0417mky81', 'en', 1, 'https://ror.org/0417mky81 Resource Optimization Initiative'),
(39358, 'https://ror.org/05kks9g21', 'hi', 1, 'https://ror.org/05kks9g21 Shramik Bharti'),
(39359, 'https://ror.org/01bd1sf38', 'en', 1, 'https://ror.org/01bd1sf38 SRM Dental College'),
(39360, 'https://ror.org/059sbje92', 'en', 1, 'https://ror.org/059sbje92 Ayush & Health Sciences University Chhattisgarh पं. ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤‰ą¤Ŗą¤¾ą¤§ą„ą¤Æą¤¾ą¤Æ ą¤øą„ą¤®ą„ƒą¤¤ą¤æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤†ą¤Æą„ą¤· ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą„'),
(39361, 'https://ror.org/02avh2k34', 'en', 1, 'https://ror.org/02avh2k34 Sri Balaji Vidyapeeth University'),
(39362, 'https://ror.org/01pv03m42', 'no_lang_code', 1, 'https://ror.org/01pv03m42 Strand Life Sciences (India)'),
(39363, 'https://ror.org/026c92t86', 'en', 1, 'https://ror.org/026c92t86 Subbaiah Medical College'),
(39364, 'https://ror.org/014jj9v53', 'en', 1, 'https://ror.org/014jj9v53 Society for Nutrition Education and Health Action'),
(39365, 'https://ror.org/00120ce61', 'en', 1, 'https://ror.org/00120ce61 Society for Participatory Research in Asia'),
(39366, 'https://ror.org/03r8r2789', 'no_lang_code', 1, 'https://ror.org/03r8r2789 Sify Technologies (India)'),
(39367, 'https://ror.org/01ea1bc11', 'en', 1, 'https://ror.org/01ea1bc11 Society for Research and Initiatives for Sustainable Technologies and Institutions'),
(39368, 'https://ror.org/026d1sx92', 'en', 1, 'https://ror.org/026d1sx92 Salim Ali Center for Ornithology and Natural History'),
(39369, 'https://ror.org/01cryga93', 'no_lang_code', 1, 'https://ror.org/01cryga93 Sami Labs (India)'),
(39370, 'https://ror.org/04bcrv494', 'en', 1, 'https://ror.org/04bcrv494 National Institute of Solar Energy'),
(39371, 'https://ror.org/05mxsz225', 'no_lang_code', 1, 'https://ror.org/05mxsz225 Mahindra Group (India)'),
(39372, 'https://ror.org/03ymf7q07', 'no_lang_code', 1, 'https://ror.org/03ymf7q07 Sun Pharma Advanced Research (India)'),
(39373, 'https://ror.org/03zx8g717', 'no_lang_code', 1, 'https://ror.org/03zx8g717 Techno India Group (India)'),
(39374, 'https://ror.org/04cpx2569', 'no_lang_code', 1, 'https://ror.org/04cpx2569 Samsung (India)'),
(39375, 'https://ror.org/056ant482', 'en', 1, 'https://ror.org/056ant482 State Council of Science and Technology for Sikkim'),
(39376, 'https://ror.org/01th09c42', 'no_lang_code', 1, 'https://ror.org/01th09c42 Suncon Engineers (India)'),
(39377, 'https://ror.org/00vtmxd94', 'en', 1, 'https://ror.org/00vtmxd94 Terna Dental College and Hospital'),
(39378, 'https://ror.org/04jc0pe38', 'no_lang_code', 1, 'https://ror.org/04jc0pe38 RenewSys (India)'),
(39379, 'https://ror.org/04shpes69', 'no_lang_code', 1, 'https://ror.org/04shpes69 Span Diagnostics (India)');
INSERT INTO `rors` VALUES
(39380, 'https://ror.org/03bq96v15', 'no_lang_code', 1, 'https://ror.org/03bq96v15 Sphaera Pharma (India)'),
(39381, 'https://ror.org/04nahdt84', 'en', 1, 'https://ror.org/04nahdt84 SVS Medical College'),
(39382, 'https://ror.org/029tz6g71', 'en', 1, 'https://ror.org/029tz6g71 India Foundation for the Arts'),
(39383, 'https://ror.org/00ztehj94', 'en', 1, 'https://ror.org/00ztehj94 Swami Ramanand Teerth Rural Medical College'),
(39384, 'https://ror.org/053e12g40', 'en', 1, 'https://ror.org/053e12g40 Centre for Science and Environment'),
(39385, 'https://ror.org/01crghz68', 'en', 1, 'https://ror.org/01crghz68 Foundation for Research in Community Health'),
(39386, 'https://ror.org/03f614z16', 'en', 1, 'https://ror.org/03f614z16 Humsafar Trust'),
(39387, 'https://ror.org/00r22sc21', 'en', 1, 'https://ror.org/00r22sc21 Vastu Shilpa Foundation'),
(39388, 'https://ror.org/01yp7wa04', 'no_lang_code', 1, 'https://ror.org/01yp7wa04 NovaLead Pharma (India)'),
(39389, 'https://ror.org/02apntt89', 'en', 1, 'https://ror.org/02apntt89 Nigerian Geological Survey Agency'),
(39390, 'https://ror.org/05rb06393', 'no_lang_code', 1, 'https://ror.org/05rb06393 Volkswagen Group (India)'),
(39391, 'https://ror.org/02es31f96', 'en', 1, 'https://ror.org/02es31f96 Tamil Nadu State AIDS Control Society'),
(39392, 'https://ror.org/00nezvm77', 'en', 1, 'https://ror.org/00nezvm77 Voluntary Health Association Of India'),
(39393, 'https://ror.org/0588z1342', 'no_lang_code', 1, 'https://ror.org/0588z1342 Thermax (India)'),
(39394, 'https://ror.org/05f7skt07', 'en', 1, 'https://ror.org/05f7skt07 Sri Guru Harkrishan Sahib Charitable Eye Hospital Trust'),
(39395, 'https://ror.org/01cphbs04', 'en', 1, 'https://ror.org/01cphbs04 Velammal Educational Trust'),
(39396, 'https://ror.org/01rfg1r50', 'en', 1, 'https://ror.org/01rfg1r50 Department of Higher Education'),
(39397, 'https://ror.org/03y350s17', 'no_lang_code', 1, 'https://ror.org/03y350s17 West Bengal Electronics Industry Development Corporation Limited (India) ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦‡ą¦²ą§‡ą¦•ą¦Ÿą§ą¦°ą¦Øą¦æą¦•ą§ą¦ø ą¦¶ą¦æą¦²ą§ą¦Ŗ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ą¦•ą¦°ą§ą¦Ŗą§‹ą¦°ą§‡ą¦¶ą¦Ø ą¦²ą¦æą¦®ą¦æą¦Ÿą§‡ą¦”'),
(39398, 'https://ror.org/005dydw47', 'no_lang_code', 1, 'https://ror.org/005dydw47 West Bengal Green Energy Development Corporation (India)'),
(39399, 'https://ror.org/05e9s0v14', 'no_lang_code', 1, 'https://ror.org/05e9s0v14 Tata Power Solar (India)'),
(39400, 'https://ror.org/02fxe3b78', 'en', 1, 'https://ror.org/02fxe3b78 Sri Manakula Vinayagar Educational Trust'),
(39401, 'https://ror.org/05syv4032', 'no_lang_code', 1, 'https://ror.org/05syv4032 Whirlpool (India)'),
(39402, 'https://ror.org/010hxhm64', 'en', 1, 'https://ror.org/010hxhm64 Town Planning and Valuation Department'),
(39403, 'https://ror.org/03b6pnq25', 'no_lang_code', 1, 'https://ror.org/03b6pnq25 Tata Chemicals (India)'),
(39404, 'https://ror.org/03dyet424', 'no_lang_code', 1, 'https://ror.org/03dyet424 Tata Elxsi (India)'),
(39405, 'https://ror.org/04kq05542', 'no_lang_code', 1, 'https://ror.org/04kq05542 Veolia (India)'),
(39406, 'https://ror.org/023ha6621', 'no_lang_code', 1, 'https://ror.org/023ha6621 Unilever (India)'),
(39407, 'https://ror.org/0374spr83', 'en', 1, 'https://ror.org/0374spr83 Unit for Research and Development of Information Products'),
(39408, 'https://ror.org/01x1wr265', 'no_lang_code', 1, 'https://ror.org/01x1wr265 Tata Technologies (India)'),
(39409, 'https://ror.org/02tjcpt69', 'en', 1, 'https://ror.org/02tjcpt69 University of Agricultural Sciences Raichur ą²•ą³ƒą²·ą²æ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ą²°ą²¾ą²Æą²šą³‚ą²°ą³'),
(39410, 'https://ror.org/018m84039', 'no_lang_code', 1, 'https://ror.org/018m84039 Tata Teleservices (India)'),
(39411, 'https://ror.org/01d6n7b64', 'hi', 1, 'https://ror.org/01d6n7b64 Vidya Prathishthan'),
(39412, 'https://ror.org/05gvzz769', 'en', 1, 'https://ror.org/05gvzz769 UPASI Tea Research Foundation'),
(39413, 'https://ror.org/043v8bs69', 'en', 1, 'https://ror.org/043v8bs69 Urban Management Centre'),
(39414, 'https://ror.org/012ds9j70', 'no_lang_code', 1, 'https://ror.org/012ds9j70 ZMQ Software Systems (India)'),
(39415, 'https://ror.org/05ctqth87', 'no_lang_code', 1, 'https://ror.org/05ctqth87 Usha Martin (India)'),
(39416, 'https://ror.org/01v7v5m29', 'en', 1, 'https://ror.org/01v7v5m29 Uttarakhand Jal Sansthan'),
(39417, 'https://ror.org/01jbcx787', 'en', 1, 'https://ror.org/01jbcx787 Vijaya Medical and Educational Trust'),
(39418, 'https://ror.org/03ktyvw44', 'no_lang_code', 1, 'https://ror.org/03ktyvw44 Cadila Healthcare (India)'),
(39419, 'https://ror.org/035sbxw24', 'no_lang_code', 1, 'https://ror.org/035sbxw24 21st Century Technologies (United States)'),
(39420, 'https://ror.org/02pvvfc75', 'en', 1, 'https://ror.org/02pvvfc75 Vaatsalya Healthcare'),
(39421, 'https://ror.org/02p87ey03', 'no_lang_code', 1, 'https://ror.org/02p87ey03 Tech Mahindra (India)'),
(39422, 'https://ror.org/00enahz60', 'no_lang_code', 1, 'https://ror.org/00enahz60 Bharat Forge (India)'),
(39423, 'https://ror.org/05meah667', 'no_lang_code', 1, 'https://ror.org/05meah667 British Biocell International (United Kingdom)'),
(39424, 'https://ror.org/004y0w704', 'no_lang_code', 1, 'https://ror.org/004y0w704 AgriSense (United Kingdom)'),
(39425, 'https://ror.org/01yf3qn42', 'no_lang_code', 1, 'https://ror.org/01yf3qn42 Air Quality Consultants (United Kingdom)'),
(39426, 'https://ror.org/04t0epe82', 'no_lang_code', 1, 'https://ror.org/04t0epe82 3DT Holdings (United States)'),
(39427, 'https://ror.org/006bwjz47', 'no_lang_code', 1, 'https://ror.org/006bwjz47 490 BioTech (United States)'),
(39428, 'https://ror.org/004fbmp75', 'no_lang_code', 1, 'https://ror.org/004fbmp75 Benbria (Canada)'),
(39429, 'https://ror.org/05fmgwf75', 'no_lang_code', 1, 'https://ror.org/05fmgwf75 Associated British Ports (United Kingdom)'),
(39430, 'https://ror.org/04e1s8k93', 'no_lang_code', 1, 'https://ror.org/04e1s8k93 Allium & Brassica Centre (United Kingdom)'),
(39431, 'https://ror.org/04wz1mc47', 'en', 1, 'https://ror.org/04wz1mc47 Calliope Film Resources'),
(39432, 'https://ror.org/04excha61', 'no_lang_code', 1, 'https://ror.org/04excha61 Paion (United Kingdom)'),
(39433, 'https://ror.org/04j3mbq57', 'no_lang_code', 1, 'https://ror.org/04j3mbq57 A-Team (United States)'),
(39434, 'https://ror.org/00tp13k20', 'en', 1, 'https://ror.org/00tp13k20 Political Development Forum'),
(39435, 'https://ror.org/03pxsxg30', 'no_lang_code', 1, 'https://ror.org/03pxsxg30 Advanced Acoustic Concepts (United States)'),
(39436, 'https://ror.org/03tf2hn88', 'no_lang_code', 1, 'https://ror.org/03tf2hn88 Potentia (Namibia)'),
(39437, 'https://ror.org/05076r819', 'no_lang_code', 1, 'https://ror.org/05076r819 Biospyder (United States)'),
(39438, 'https://ror.org/006ewqz20', 'no_lang_code', 1, 'https://ror.org/006ewqz20 PNO Consultants (Italy)'),
(39439, 'https://ror.org/01xww0f05', 'no_lang_code', 1, 'https://ror.org/01xww0f05 Base4 Innovation (United Kingdom)'),
(39440, 'https://ror.org/00exxep57', 'no_lang_code', 1, 'https://ror.org/00exxep57 Claritas Genomics (United States)'),
(39441, 'https://ror.org/05tkyr506', 'no_lang_code', 1, 'https://ror.org/05tkyr506 Active Ethernet Passive Optical Networks Over Ī» MultipleXing (Canada)'),
(39442, 'https://ror.org/04ayxkk27', 'no_lang_code', 1, 'https://ror.org/04ayxkk27 Blackstar Amplification (United Kingdom)'),
(39443, 'https://ror.org/02fg4tx92', 'no_lang_code', 1, 'https://ror.org/02fg4tx92 Cleanergy (Sweden)'),
(39444, 'https://ror.org/05v091r53', 'no_lang_code', 1, 'https://ror.org/05v091r53 Climeon (Sweden)'),
(39445, 'https://ror.org/021wtx428', 'de', 1, 'https://ror.org/021wtx428 Staats- und Stadtbibliothek Augsburg'),
(39446, 'https://ror.org/043dpbz34', 'fr', 1, 'https://ror.org/043dpbz34 Programme National Multisectoriel de Lutte contre le sida'),
(39447, 'https://ror.org/047yavc84', 'en', 1, 'https://ror.org/047yavc84 Commission on Professionals in Science and Technology'),
(39448, 'https://ror.org/03k6e9943', 'no_lang_code', 1, 'https://ror.org/03k6e9943 Reliance (United Kingdom)'),
(39449, 'https://ror.org/024g9p727', 'no_lang_code', 1, 'https://ror.org/024g9p727 For farmers (United Kingdom)'),
(39450, 'https://ror.org/02p837k95', 'no_lang_code', 1, 'https://ror.org/02p837k95 Ebro Foods (Canada)'),
(39451, 'https://ror.org/03qvv9093', 'pt', 1, 'https://ror.org/03qvv9093 Colsan - Associação Beneficente de Coleta de Sangue'),
(39452, 'https://ror.org/03spzdh62', 'no_lang_code', 1, 'https://ror.org/03spzdh62 Computational Sciences (United States)'),
(39453, 'https://ror.org/018m8fh96', 'no_lang_code', 1, 'https://ror.org/018m8fh96 Britest (United Kingdom)'),
(39454, 'https://ror.org/03dafc138', 'no_lang_code', 1, 'https://ror.org/03dafc138 Defense Systems (United States)'),
(39455, 'https://ror.org/011vyws32', 'no_lang_code', 1, 'https://ror.org/011vyws32 Delta Information Systems (United States)'),
(39456, 'https://ror.org/019qf8a90', 'no_lang_code', 1, 'https://ror.org/019qf8a90 Deseret Laboratories (United States)'),
(39457, 'https://ror.org/00sr42d65', 'no_lang_code', 1, 'https://ror.org/00sr42d65 Conseillers en gestion et informatique Consultant To Government and Industry (United Kingdom)'),
(39458, 'https://ror.org/056j68a95', 'en', 1, 'https://ror.org/056j68a95 Consumers Union'),
(39459, 'https://ror.org/007phjt92', 'en', 1, 'https://ror.org/007phjt92 Deutsche Keramische Gesellschaft German Ceramic Society'),
(39460, 'https://ror.org/00gs59456', 'no_lang_code', 1, 'https://ror.org/00gs59456 CorticoMetrics (United States)'),
(39461, 'https://ror.org/05s96xm34', 'en', 1, 'https://ror.org/05s96xm34 Council on Foreign Relations'),
(39462, 'https://ror.org/02yd5qy74', 'no_lang_code', 1, 'https://ror.org/02yd5qy74 Encapson (Netherlands)'),
(39463, 'https://ror.org/058g3x876', 'no_lang_code', 1, 'https://ror.org/058g3x876 Grace Bio-Labs (United States)'),
(39464, 'https://ror.org/03fq8ts34', 'en', 1, 'https://ror.org/03fq8ts34 Countryside and Community Research Institute'),
(39465, 'https://ror.org/03ha3x766', 'no_lang_code', 1, 'https://ror.org/03ha3x766 Beijing Planetarium åŒ—äŗ¬å¤©ę–‡é¦†/åŒ—äŗ¬å¤©ę–‡é¤Ø'),
(39466, 'https://ror.org/051eg6511', 'no_lang_code', 1, 'https://ror.org/051eg6511 Energy International (United States)'),
(39467, 'https://ror.org/00cmss526', 'no_lang_code', 1, 'https://ror.org/00cmss526 Gmarketing (Pakistan)'),
(39468, 'https://ror.org/02b3gqy34', 'no_lang_code', 1, 'https://ror.org/02b3gqy34 Craft Engineering Associates (United States)'),
(39469, 'https://ror.org/0007gah74', 'en', 1, 'https://ror.org/0007gah74 Drew Associates'),
(39470, 'https://ror.org/04atrwr33', 'en', 1, 'https://ror.org/04atrwr33 Duchy College'),
(39471, 'https://ror.org/017f8n968', 'no_lang_code', 1, 'https://ror.org/017f8n968 Gencia (United States)'),
(39472, 'https://ror.org/05xntm622', 'no_lang_code', 1, 'https://ror.org/05xntm622 Exeger Sweden (Sweden)'),
(39473, 'https://ror.org/02760dr55', 'no_lang_code', 1, 'https://ror.org/02760dr55 Economics for the Environment Consultancy (United Kingdom)'),
(39474, 'https://ror.org/043sd6y04', 'no_lang_code', 1, 'https://ror.org/043sd6y04 Helios Global (United States)'),
(39475, 'https://ror.org/02q312y93', 'no_lang_code', 1, 'https://ror.org/02q312y93 Inova Design Solutions (United Kingdom)'),
(39476, 'https://ror.org/03j09xa79', 'es', 1, 'https://ror.org/03j09xa79 Genetaq'),
(39477, 'https://ror.org/02xmv6y90', 'no_lang_code', 1, 'https://ror.org/02xmv6y90 Genetech (Sri Lanka)'),
(39478, 'https://ror.org/00fy7kr67', 'en', 1, 'https://ror.org/00fy7kr67 Institut für Integrative und Experimentelle Genomik Institute for Integrative and Experimental Genomics'),
(39479, 'https://ror.org/02tc88d30', 'no_lang_code', 1, 'https://ror.org/02tc88d30 InfoBeyond Technology (United States)'),
(39480, 'https://ror.org/02n64v793', 'fr', 1, 'https://ror.org/02n64v793 Infor Jeunes Bruxelles'),
(39481, 'https://ror.org/01ysrdj89', 'no_lang_code', 1, 'https://ror.org/01ysrdj89 Medlog Systems (United States)'),
(39482, 'https://ror.org/04yjjyw09', 'fr', 1, 'https://ror.org/04yjjyw09 Institut pour Un Developpement Durable'),
(39483, 'https://ror.org/04hmgwg30', 'no_lang_code', 1, 'https://ror.org/04hmgwg30 Karolinska Institutet Innovations (Sweden)'),
(39484, 'https://ror.org/051ka9v26', 'no_lang_code', 1, 'https://ror.org/051ka9v26 Hybu Cig Cymru (United Kingdom)'),
(39485, 'https://ror.org/00rw4xa44', 'no_lang_code', 1, 'https://ror.org/00rw4xa44 Kemetco Research (Canada)'),
(39486, 'https://ror.org/0111cp837', 'en', 1, 'https://ror.org/0111cp837 Instytut Badań Systemowych Systems Research Institute'),
(39487, 'https://ror.org/044a15h91', 'no_lang_code', 1, 'https://ror.org/044a15h91 Knexus Research (United States)'),
(39488, 'https://ror.org/014m1ef46', 'no_lang_code', 1, 'https://ror.org/014m1ef46 Mitsubishi Corporation (Japan) äø‰č±å•†äŗ‹ę Ŗå¼ä¼šē¤¾'),
(39489, 'https://ror.org/00jm2j742', 'en', 1, 'https://ror.org/00jm2j742 International Society for Gastrointestinal Hereditary Tumours'),
(39490, 'https://ror.org/03q3jnq04', 'no_lang_code', 1, 'https://ror.org/03q3jnq04 China Nonferrous Metal Mining (China) äø­å›½ęœ‰č‰²ēŸæäøšé›†å›¢ęœ‰é™å…¬åø'),
(39491, 'https://ror.org/031ypg304', 'en', 1, 'https://ror.org/031ypg304 International Space University'),
(39492, 'https://ror.org/05sw1c749', 'no_lang_code', 1, 'https://ror.org/05sw1c749 Labthermics Technologies (United States)'),
(39493, 'https://ror.org/005qgvp74', 'no_lang_code', 1, 'https://ror.org/005qgvp74 Alere (United Kingdom)'),
(39494, 'https://ror.org/023xwyz30', 'no_lang_code', 1, 'https://ror.org/023xwyz30 Land Use Consultants (United Kingdom)'),
(39495, 'https://ror.org/014ezhs73', 'no_lang_code', 1, 'https://ror.org/014ezhs73 Pacific Shipyards (United States)'),
(39496, 'https://ror.org/0451asy50', 'no_lang_code', 1, 'https://ror.org/0451asy50 L&E Research (United States)'),
(39497, 'https://ror.org/00e9s5n07', 'no_lang_code', 1, 'https://ror.org/00e9s5n07 Starmet Corporation (United States)'),
(39498, 'https://ror.org/00e43q278', 'no_lang_code', 1, 'https://ror.org/00e43q278 Just Ecology (United Kingdom)'),
(39499, 'https://ror.org/00xwxpw14', 'no_lang_code', 1, 'https://ror.org/00xwxpw14 FRAUDetect (United States)'),
(39500, 'https://ror.org/0094z6w96', 'no_lang_code', 1, 'https://ror.org/0094z6w96 MTG Research (United Kingdom)'),
(39501, 'https://ror.org/02qypfy05', 'no_lang_code', 1, 'https://ror.org/02qypfy05 Smiths Power (United States)'),
(39502, 'https://ror.org/04whcrx81', 'no_lang_code', 1, 'https://ror.org/04whcrx81 Linguagen (United States)'),
(39503, 'https://ror.org/00b9z5510', 'en', 1, 'https://ror.org/00b9z5510 Old Salem Museums and Gardens'),
(39504, 'https://ror.org/01w8np338', 'no_lang_code', 1, 'https://ror.org/01w8np338 Munin Corporation (United States)'),
(39505, 'https://ror.org/01n1cbn15', 'en', 1, 'https://ror.org/01n1cbn15 Institute of Porous Flow and Fluid Mechanics ęø—ęµęµä½“åŠ›å­¦ē ”ē©¶ę‰€'),
(39506, 'https://ror.org/0137z5x77', 'no_lang_code', 1, 'https://ror.org/0137z5x77 Broadcom (Canada)'),
(39507, 'https://ror.org/018mjrf43', 'en', 1, 'https://ror.org/018mjrf43 Open Rights Group'),
(39508, 'https://ror.org/004a7w818', 'en', 1, 'https://ror.org/004a7w818 M. Tuttle & Associates'),
(39509, 'https://ror.org/05f0php28', 'en', 1, 'https://ror.org/05f0php28 Sichuan Academy of Agricultural Sciences å››å·ēœå†œäøšē§‘å­¦é™¢ä½œē‰©ē ”ē©¶ę‰€'),
(39510, 'https://ror.org/00b986q94', 'no_lang_code', 1, 'https://ror.org/00b986q94 Optigo Networks (Canada)'),
(39511, 'https://ror.org/03rafms67', 'en', 1, 'https://ror.org/03rafms67 Plant Gene Expression Center'),
(39512, 'https://ror.org/00k66f384', 'no_lang_code', 1, 'https://ror.org/00k66f384 Nickerson Ltd'),
(39513, 'https://ror.org/03dpkyr84', 'no_lang_code', 1, 'https://ror.org/03dpkyr84 Silicon Chemical (United States)'),
(39514, 'https://ror.org/02y7dq096', 'no_lang_code', 1, 'https://ror.org/02y7dq096 Mclean Media (United States)'),
(39515, 'https://ror.org/01sx88q57', 'en', 1, 'https://ror.org/01sx88q57 RenewableUK'),
(39516, 'https://ror.org/04cpebv17', 'no_lang_code', 1, 'https://ror.org/04cpebv17 Northernchem (Canada)'),
(39517, 'https://ror.org/03bhckb42', 'no_lang_code', 1, 'https://ror.org/03bhckb42 Primity Bio (United States)'),
(39518, 'https://ror.org/00gqx0331', 'en', 1, 'https://ror.org/00gqx0331 Research Complex at Harwell'),
(39519, 'https://ror.org/03bbh2s13', 'en', 1, 'https://ror.org/03bbh2s13 Northumberland County Council'),
(39520, 'https://ror.org/01ahys275', 'en', 1, 'https://ror.org/01ahys275 Parker Hughes Cancer Center'),
(39521, 'https://ror.org/02jz4rx70', 'en', 1, 'https://ror.org/02jz4rx70 Aarupadai Veedu Medical College & Hospital'),
(39522, 'https://ror.org/0521x3786', 'no_lang_code', 1, 'https://ror.org/0521x3786 Pathway Genomics (United States)'),
(39523, 'https://ror.org/03zb78h42', 'pt', 1, 'https://ror.org/03zb78h42 Mendelics'),
(39524, 'https://ror.org/007bss615', 'en', 1, 'https://ror.org/007bss615 Holland Chemistry'),
(39525, 'https://ror.org/004vbe783', 'no_lang_code', 1, 'https://ror.org/004vbe783 Satellite Applications Catapult (United Kingdom)'),
(39526, 'https://ror.org/02dyq9q38', 'no_lang_code', 1, 'https://ror.org/02dyq9q38 TERI'),
(39527, 'https://ror.org/0253rdk33', 'no_lang_code', 1, 'https://ror.org/0253rdk33 SNPedia'),
(39528, 'https://ror.org/01t8tyk97', 'sv', 1, 'https://ror.org/01t8tyk97 TransportForsK'),
(39529, 'https://ror.org/00p5mne09', 'en', 1, 'https://ror.org/00p5mne09 Institute of Seismological Research'),
(39530, 'https://ror.org/03r0qcr69', 'no_lang_code', 1, 'https://ror.org/03r0qcr69 Syngaschem (Netherlands)'),
(39531, 'https://ror.org/04p3y0q03', 'en', 1, 'https://ror.org/04p3y0q03 Bank of England'),
(39532, 'https://ror.org/00wm8m174', 'no_lang_code', 1, 'https://ror.org/00wm8m174 Synthomer (United Kingdom)'),
(39533, 'https://ror.org/055camg08', 'en', 1, 'https://ror.org/055camg08 Scintillon Institute'),
(39534, 'https://ror.org/04cqp5h60', 'en', 1, 'https://ror.org/04cqp5h60 The Independent Games Developers Association'),
(39535, 'https://ror.org/045zf1n87', 'no_lang_code', 1, 'https://ror.org/045zf1n87 Albany International (United States)'),
(39536, 'https://ror.org/05tv9ra42', 'no_lang_code', 1, 'https://ror.org/05tv9ra42 Sekab (Sweden) Svensk Etanolkemi'),
(39537, 'https://ror.org/04hwmbc03', 'sv', 1, 'https://ror.org/04hwmbc03 VƤxjƶ Kommun VƤxjƶ Municipality'),
(39538, 'https://ror.org/04kcf7d03', 'no_lang_code', 1, 'https://ror.org/04kcf7d03 SENSEYE LIMITED'),
(39539, 'https://ror.org/04k5pfq21', 'no_lang_code', 1, 'https://ror.org/04k5pfq21 Video Discovery (United States)'),
(39540, 'https://ror.org/054zz9x25', 'en', 1, 'https://ror.org/054zz9x25 Scientific Council for Government Policy Wetenschappelijke Raad voor het Regeringsbeleid'),
(39541, 'https://ror.org/00w7d0n34', 'no_lang_code', 1, 'https://ror.org/00w7d0n34 WITF (United States)'),
(39542, 'https://ror.org/05e3g0s87', 'de', 1, 'https://ror.org/05e3g0s87 Bibliotheca Augustiniana'),
(39543, 'https://ror.org/01prf6p66', 'no_lang_code', 1, 'https://ror.org/01prf6p66 Zaber Technologies (Canada)'),
(39544, 'https://ror.org/00brgvc50', 'en', 1, 'https://ror.org/00brgvc50 Standing Rock Indian Reservation'),
(39545, 'https://ror.org/005vq2n07', 'en', 1, 'https://ror.org/005vq2n07 Shyam Shah Medical College'),
(39546, 'https://ror.org/00ntq6s45', 'no_lang_code', 1, 'https://ror.org/00ntq6s45 Shell (India)'),
(39547, 'https://ror.org/03mw5cy89', 'en', 1, 'https://ror.org/03mw5cy89 Sree Gokulam Medical College and Research Foundation'),
(39548, 'https://ror.org/02e1eph40', 'en', 1, 'https://ror.org/02e1eph40 Institute of World History Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ всеобщей истории'),
(39549, 'https://ror.org/004dzkd51', 'en', 1, 'https://ror.org/004dzkd51 Frumkin Institute of Physical Chemistry and Electrochemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической химии Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŠø им. А. Š. Š¤Ń€ŃƒŠ¼ŠŗŠøŠ½Š° Российской акаГемии наук'),
(39550, 'https://ror.org/055fe2s59', 'en', 1, 'https://ror.org/055fe2s59 Institute of High Current Electronics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠøŠ»ŃŒŠ½Š¾Ń‚Š¾Ń‡Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(39551, 'https://ror.org/01ds31v72', 'en', 1, 'https://ror.org/01ds31v72 V.S. Sobolev Institute of Geology and Mineralogy Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø минералогии им. Š’.Š”.Доболева Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук (Š˜Š“Šœ Š”Šž Š ŠŠ)'),
(39552, 'https://ror.org/00wfve797', 'en', 1, 'https://ror.org/00wfve797 Institute of Sociology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ социологии Š ŠŠ'),
(39553, 'https://ror.org/03hg8g849', 'en', 1, 'https://ror.org/03hg8g849 Timiryazev Institute of Plant Physiology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии растений К.А. Š¢ŠøŠ¼ŠøŃ€ŃŠ·ŠµŠ²Š°'),
(39554, 'https://ror.org/01rn72k05', 'en', 1, 'https://ror.org/01rn72k05 G.A. Razuvaev Institute of Organometallic Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металлоорганической химии имени Š“. А. Разуваева'),
(39555, 'https://ror.org/02cd1dc23', 'en', 1, 'https://ror.org/02cd1dc23 Rheinisches Institut für Umweltforschung Rhenish Institute for Environmental Research'),
(39556, 'https://ror.org/00y0jw647', 'pt', 1, 'https://ror.org/00y0jw647 Hospital da Senhora da Oliveira Guimarães'),
(39557, 'https://ror.org/02dnes125', 'de', 1, 'https://ror.org/02dnes125 Knappschaftskrankenhaus Recklinghausen'),
(39558, 'https://ror.org/01srjfc50', 'de', 1, 'https://ror.org/01srjfc50 Landesarchiv'),
(39559, 'https://ror.org/029x1vn55', 'en', 1, 'https://ror.org/029x1vn55 CU Shah Medical College and Hospital'),
(39560, 'https://ror.org/00520ey40', 'en', 1, 'https://ror.org/00520ey40 Institute of Numerical Mathematics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ математики Российской акаГемии наук'),
(39561, 'https://ror.org/054xffa50', 'en', 1, 'https://ror.org/054xffa50 Institute of Geology of Ore Deposits Petrography Mineralogy and Geochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Ń€ŃƒŠ“Š½Ń‹Ń… месторожГений петрографии минералогии Šø геохимии Российской акаГемии наук'),
(39562, 'https://ror.org/02vtmt724', 'en', 1, 'https://ror.org/02vtmt724 Institute of Synthetic Polymeric Materials Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ синтетических полимерных материалов им.Š.Š”.Ениколопова Российской акаГемии наук'),
(39563, 'https://ror.org/05kvjc571', 'en', 1, 'https://ror.org/05kvjc571 Institute of Psychology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологии'),
(39564, 'https://ror.org/029bjdf19', 'en', 1, 'https://ror.org/029bjdf19 Institute of Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики им. Š›. Š’. ŠšŠøŃ€ŠµŠ½ŃŠŗŠ¾Š³Š¾'),
(39565, 'https://ror.org/02fsfnf94', 'en', 1, 'https://ror.org/02fsfnf94 Institute of Molecular and Cell Biology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ Šø клеточной биологии'),
(39566, 'https://ror.org/02n937p61', 'en', 1, 'https://ror.org/02n937p61 Central Economics and Mathematics Institute Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-математический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(39567, 'https://ror.org/03ymmms77', 'en', 1, 'https://ror.org/03ymmms77 Institute of Continuous Media Mechanics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики ŃŠæŠ»Š¾ŃˆŠ½Ń‹Ń… среГ'),
(39568, 'https://ror.org/05nb4x016', 'en', 1, 'https://ror.org/05nb4x016 Institute of Linguistic Studies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лингвистических исслеГований'),
(39569, 'https://ror.org/04w1wsw24', 'en', 1, 'https://ror.org/04w1wsw24 Geophysical Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Геофизический центр Российской акаГемии наук'),
(39570, 'https://ror.org/00y1dzm96', 'en', 1, 'https://ror.org/00y1dzm96 Institute of Petroleum Geology and Geophysics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефтегазовой геологии Šø геофизики имени А. А. Š¢Ń€Š¾Ń„ŠøŠ¼ŃƒŠŗŠ° Š”Šž Š ŠŠ'),
(39571, 'https://ror.org/029k7k053', 'en', 1, 'https://ror.org/029k7k053 Research Institute of Medical Genetics of Russian Academy of Medical Sciences ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинской генетики'),
(39572, 'https://ror.org/0344x6030', 'en', 1, 'https://ror.org/0344x6030 Institute of Experimental Medicine Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины'),
(39573, 'https://ror.org/026c02f25', 'en', 1, 'https://ror.org/026c02f25 Kazan E. K. Zavoisky Physical-Technical Institute Казанский физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š•. К. Завойского Š ŠŠ'),
(39574, 'https://ror.org/05s61gx60', 'en', 1, 'https://ror.org/05s61gx60 Photochemistry Center Центр фотохимии'),
(39575, 'https://ror.org/023r5tg35', 'en', 1, 'https://ror.org/023r5tg35 Federal Scientific Center of the East Asia Terrestrial Biodiversity FEB RAS Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Биолого-почвенный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(39576, 'https://ror.org/03k42gv86', 'en', 1, 'https://ror.org/03k42gv86 Institute of Machines Science Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ имени А. А. Благонравова Š ŠŠ'),
(39577, 'https://ror.org/012a18r91', 'en', 1, 'https://ror.org/012a18r91 Sukachev Institute of Forest Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° леса им. Š’. Š. Š”ŃƒŠŗŠ°Ń‡ŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(39578, 'https://ror.org/05gmwtd57', 'en', 1, 'https://ror.org/05gmwtd57 Institute of History and Archaeology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории Šø археологии Š£Ń€Šž Š ŠŠ'),
(39579, 'https://ror.org/046msd355', 'en', 1, 'https://ror.org/046msd355 Institute of Complex Development of Bowels Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем комплексного Š¾ŃŠ²Š¾ŠµŠ½ŠøŃ неГр Š ŠŠ'),
(39580, 'https://ror.org/01nmpe263', 'en', 1, 'https://ror.org/01nmpe263 Institute of Spectroscopy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ спектроскопии Российской акаГемии наук'),
(39581, 'https://ror.org/00hfszj21', 'en', 1, 'https://ror.org/00hfszj21 Institute of Catalysis and Petrochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ катализа Šø нефтехимии'),
(39582, 'https://ror.org/03vv7cm03', 'en', 1, 'https://ror.org/03vv7cm03 Institute of Mathematics with Computer Center Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики с Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¼ центром Š£ŠŠ¦ Š ŠŠ'),
(39583, 'https://ror.org/053nrfb18', 'en', 1, 'https://ror.org/053nrfb18 Southern Scientific Center Южный Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(39584, 'https://ror.org/02zp2tc18', 'en', 1, 'https://ror.org/02zp2tc18 Institute of Solution Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии растворов им. Š“.А. ŠšŃ€ŠµŃŃ‚Š¾Š²Š° Российской акаГемии наук'),
(39585, 'https://ror.org/04wteqw51', 'en', 1, 'https://ror.org/04wteqw51 Institute for System Dynamics and Control Theory Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гинамики систем Šø теории ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ имени Š’.М. ŠœŠ°Ń‚Ń€Š¾ŃŠ¾Š²Š°'),
(39586, 'https://ror.org/02h8dsx08', 'en', 1, 'https://ror.org/02h8dsx08 Dmitry Rogachev National Research Center of Pediatric Hematology, Oncology and Immunology Š”Š•Š¢Š”ŠšŠžŠ™ Š“Š•ŠœŠŠ¢ŠžŠ›ŠžŠ“Š˜Š˜, ŠžŠŠšŠžŠ›ŠžŠ“Š˜Š˜ И Š˜ŠœŠœŠ£ŠŠžŠ›ŠžŠ“Š˜Š˜ им. Š”Š¼ŠøŃ‚Ń€ŠøŃ Рогачева'),
(39587, 'https://ror.org/021kjh741', 'en', 1, 'https://ror.org/021kjh741 Institute of Biochemistry and Physiology of Plants and Microorganisms Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø физиологии растений Šø микроорганизмов Российской акаГемии наук'),
(39588, 'https://ror.org/04rawk951', 'en', 1, 'https://ror.org/04rawk951 Chumakov Institute of Poliomyelitis and Viral Encephalitides Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ полиомиелита Šø Š²ŠøŃ€ŃƒŃŠ½Ń‹Ń… ŃŠ½Ń†ŠµŃ„Š°Š»ŠøŃ‚Š¾Š²'),
(39589, 'https://ror.org/01whksa54', 'en', 1, 'https://ror.org/01whksa54 Institute of Astronomy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ астрономии Š ŠŠ'),
(39590, 'https://ror.org/015vgt264', 'en', 1, 'https://ror.org/015vgt264 Institute of Chemistry of High-Purity Substances them. G.G.Devyatyh Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии высокочистых веществ им'),
(39591, 'https://ror.org/04f3vpm64', 'en', 1, 'https://ror.org/04f3vpm64 Institute of Anthropology and Ethnography Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠžŃ€Š“ена Š”Ń€ŃƒŠ¶Š±Ń‹ нароГов Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ‚Š½Š¾Š»Š¾Š³ŠøŠø Šø антропологии им. Š.Š. ŠœŠøŠŗŠ»ŃƒŃ…Š¾-ŠœŠ°ŠŗŠ»Š°Ń Российской акаГемии наук'),
(39592, 'https://ror.org/051f11n17', 'en', 1, 'https://ror.org/051f11n17 Institute of Molecular Biology and Biophysics ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ биологии Šø биофизики'),
(39593, 'https://ror.org/05xw3yj26', 'en', 1, 'https://ror.org/05xw3yj26 Institute of Physiologically Active Compounds Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологически активных веществ'),
(39594, 'https://ror.org/00verxq29', 'en', 1, 'https://ror.org/00verxq29 A.E. Favorsky Irkutsk Institute of Chemistry Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии им. А.Š•.Фаворского Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(39595, 'https://ror.org/045xd0268', 'en', 1, 'https://ror.org/045xd0268 Institute of the Earth’s Crust Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ земной коры Š”Šž Š ŠŠ'),
(39596, 'https://ror.org/00hgmwb30', 'en', 1, 'https://ror.org/00hgmwb30 Institute of Macromolecular Compounds Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Ń‹Ń… соеГинений Российской акаГемии наук'),
(39597, 'https://ror.org/051jjt714', 'en', 1, 'https://ror.org/051jjt714 Institute of Electrophysics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŠŗŠø'),
(39598, 'https://ror.org/01k8ec266', 'en', 1, 'https://ror.org/01k8ec266 Ufa Institute of Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Уфимский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Российской акаГемии наук'),
(39599, 'https://ror.org/01gk2wz65', 'en', 1, 'https://ror.org/01gk2wz65 Research Institute of Therapy and Preventive Medicine Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ терапии Šø профилактической меГицины'),
(39600, 'https://ror.org/005gbx671', 'en', 1, 'https://ror.org/005gbx671 Institute of Philosophy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ философии'),
(39601, 'https://ror.org/00c6xwj41', 'en', 1, 'https://ror.org/00c6xwj41 Institute of Chemistry and Chemical Technology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Šø химической технологии'),
(39602, 'https://ror.org/01z686714', 'en', 1, 'https://ror.org/01z686714 Institute of Computational Mathematics and Mathematical Geophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ математики Šø математической геофизики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(39603, 'https://ror.org/006btmz82', 'en', 1, 'https://ror.org/006btmz82 Institute of Systematics and Ecology of Animals Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систематики Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø животных Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(39604, 'https://ror.org/03jrs5v66', 'en', 1, 'https://ror.org/03jrs5v66 Institute of Geosphere Dynamics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гинамики геосфер Российской акаГемии наук'),
(39605, 'https://ror.org/0121whw78', 'en', 1, 'https://ror.org/0121whw78 Sergeev Institute of Environmental Geoscience Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŠµŠ¾ŃŠŗŠ¾Š»Š¾Š³ŠøŠø им.Š•.М.Дергеева Российской акаГемии наук'),
(39606, 'https://ror.org/029fxjk95', 'en', 1, 'https://ror.org/029fxjk95 Institute of History, Archaeology and Ethnography of the Peoples of Far-East ВлаГивостоке Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° истории, археологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø нароГов Š”Š°Š»ŃŒŠ½ŠµŠ³Š¾ Востока'),
(39607, 'https://ror.org/048amsp50', 'en', 1, 'https://ror.org/048amsp50 Institute for Computer Aided Design Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматизации ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃ Российской акаГемии наук'),
(39608, 'https://ror.org/049pzbj60', 'en', 1, 'https://ror.org/049pzbj60 Institute of Mining Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного Гела Š”Šž Š ŠŠ'),
(39609, 'https://ror.org/03tx2pf91', 'en', 1, 'https://ror.org/03tx2pf91 Institute of Socio-Economic Development of Territories Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ территорий Российской акаГемии наук'),
(39610, 'https://ror.org/04x7sgz22', 'en', 1, 'https://ror.org/04x7sgz22 Mining Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного'),
(39611, 'https://ror.org/04rb38388', 'en', 1, 'https://ror.org/04rb38388 Institute of Metallurgy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Š£Ń€Šž Š ŠŠ'),
(39612, 'https://ror.org/00pwe8n55', 'en', 1, 'https://ror.org/00pwe8n55 Moscow School of Social and Economic Sciences ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š²Ń‹ŃŃˆŠ°Ń школа ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŃ… наук'),
(39613, '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'),
(39614, 'https://ror.org/01ska0903', 'en', 1, 'https://ror.org/01ska0903 Institute of the Human Brain Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мозга человека Š ŠŠ'),
(39615, 'https://ror.org/00h9jx107', 'en', 1, 'https://ror.org/00h9jx107 Institute of Applied Mathematics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной математики Š”Š’Šž Š ŠŠ'),
(39616, 'https://ror.org/00ewbej21', 'en', 1, 'https://ror.org/00ewbej21 Gorbatov''s All-Russian Meat Research Institute Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŃŃŠ½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø им. Š’.М. Горбатова'),
(39617, 'https://ror.org/056an8658', 'en', 1, 'https://ror.org/056an8658 Institute of Clinical and Experimental Lymphology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ клинической Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ лимфологии'),
(39618, 'https://ror.org/00je00x55', 'en', 1, 'https://ror.org/00je00x55 Institute of Mongolian Buddhist and Tibetan Studies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š½Š³Š¾Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ, буГГологии Šø тибетологии Š”Šž Š ŠŠ'),
(39619, 'https://ror.org/0261qw820', 'en', 1, 'https://ror.org/0261qw820 Institute of Steppe Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ степи Š£Ń€Šž Š ŠŠ'),
(39620, 'https://ror.org/03zeyg902', 'en', 1, 'https://ror.org/03zeyg902 Institute of Engineering Science Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(39621, 'https://ror.org/02r4ram30', 'en', 1, 'https://ror.org/02r4ram30 Institute of Economics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Š£Ń€Šž Š ŠŠ'),
(39622, 'https://ror.org/05ea3hs66', 'en', 1, 'https://ror.org/05ea3hs66 National Research Institute for Veterinary Virology and Microbiology of Russia Всероссийский ŠŠ˜Š˜ ветеринарной Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(39623, 'https://ror.org/019j3tz70', 'en', 1, 'https://ror.org/019j3tz70 Institute of Geophysics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геофизики'),
(39624, 'https://ror.org/05m3tag45', 'en', 1, 'https://ror.org/05m3tag45 Institute of Archaeology and Ethnography Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° археологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø Š”Šž Š ŠŠ'),
(39625, 'https://ror.org/04kh9f807', 'en', 1, 'https://ror.org/04kh9f807 Institute of Precambrian Geology and Geochronology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø геохронологии Š“Š¾ŠŗŠµŠ¼Š±Ń€ŠøŃ'),
(39626, 'https://ror.org/02xv1yp72', 'en', 1, 'https://ror.org/02xv1yp72 All-Russian Scientific Research Institute of Radiology and AgroEcology All-Ń€ŃƒŃŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиологии Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(39627, 'https://ror.org/04ef8pm25', 'en', 1, 'https://ror.org/04ef8pm25 Archive of the Russian Academy of Sciences Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ филиал Архива Š ŠŠ'),
(39628, 'https://ror.org/028a8bc58', 'en', 1, 'https://ror.org/028a8bc58 Institute of Russian Literature Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŃƒŃŃŠŗŠ¾Š¹ Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹'),
(39629, 'https://ror.org/02jj4k517', 'en', 1, 'https://ror.org/02jj4k517 Physico-Technical Institute Физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской АкаГемии наук'),
(39630, 'https://ror.org/0118vk431', 'no_lang_code', 1, 'https://ror.org/0118vk431 DYNAMICS Scientific and Production Center (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный центр Динамика'),
(39631, 'https://ror.org/03f5ppt85', 'en', 1, 'https://ror.org/03f5ppt85 Pacific Institute of Geography, Far Eastern Branch of the Russian Academy of Sciences Тихоокеанский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географи'),
(39632, 'https://ror.org/02e2pmn45', 'en', 1, 'https://ror.org/02e2pmn45 Institute of Slavic Studies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»Š°Š²ŃŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(39633, 'https://ror.org/044171329', 'en', 1, 'https://ror.org/044171329 Research Institute of Pharmacology and Regenerative Medicine named ED Goldberg ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фармакологии Šø регенеративной меГицины имени Š•.Š”. Š“Š¾Š»ŃŒŠ“Š±ŠµŃ€Š³Š°'),
(39634, 'https://ror.org/03vsjrm65', 'no_lang_code', 1, 'https://ror.org/03vsjrm65 Economic Expert Group (Russia) Š­ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń ŃŠŗŃŠæŠµŃ€Ń‚Š½Š°Ń Š³Ń€ŃƒŠæŠæŠ°'),
(39635, 'https://ror.org/02bc50c05', 'en', 1, 'https://ror.org/02bc50c05 Peter the Great''s Museum of Anthropology and Ethnography ŠŸŠµŃ‚Ń€Š° Великого Музей антропологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø'),
(39636, 'https://ror.org/02ncvqp37', 'en', 1, 'https://ror.org/02ncvqp37 Center for Theoretical Problems of Physicochemical Pharmacology Центр теоретических проблем физико-химической фармакологии Š ŠŠ'),
(39637, 'https://ror.org/018afr131', 'en', 1, 'https://ror.org/018afr131 Knipovich Polar Research Institute of Marine Fisheries and Oceanography ŠšŠ½ŠøŠæŠ¾Š²ŠøŃ‡ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠ¾Š»ŃŃ€Š½Ń‹Ń… исслеГований морского рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø океанографии'),
(39638, 'https://ror.org/045v66z43', 'en', 1, 'https://ror.org/045v66z43 Institute of Physical Materials Science Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š˜Š—Š˜Š§Š•Š”ŠšŠžŠ“Šž ŠœŠŠ¢Š•Š Š˜ŠŠ›ŠžŠ’Š•Š”Š•ŠŠ˜ŠÆ'),
(39639, 'https://ror.org/016zjn618', 'en', 1, 'https://ror.org/016zjn618 Institute of Metal Superplasticity Problems Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем сверхпластичности металлов Š ŠŠ'),
(39640, 'https://ror.org/02j983531', 'no_lang_code', 1, 'https://ror.org/02j983531 Scientific Center of RAS in Chernogolovka Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук в Черноголовке'),
(39641, 'https://ror.org/02qpqb855', 'en', 1, 'https://ror.org/02qpqb855 Institute of History Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории Š”Šž Š ŠŠ'),
(39642, 'https://ror.org/007mjr682', 'en', 1, 'https://ror.org/007mjr682 Fiber Optics Research Center ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр волоконной оптики Российской акаГемии наук'),
(39643, 'https://ror.org/03vqakm84', 'en', 1, 'https://ror.org/03vqakm84 Institute of Mining Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(39644, 'https://ror.org/02a5hqa58', 'en', 1, 'https://ror.org/02a5hqa58 Institute for African Studies науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Африки Российской акаГемии наук'),
(39645, 'https://ror.org/01831n272', 'en', 1, 'https://ror.org/01831n272 Institute of Experimental Mineralogy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ минералогии'),
(39646, 'https://ror.org/0362x2g28', 'en', 1, 'https://ror.org/0362x2g28 Forestry Research Institute of Karelian Research Centre Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ леса ŠšŠ°Ń€ŠŠ¦'),
(39647, 'https://ror.org/047exzk05', 'en', 1, 'https://ror.org/047exzk05 Nuclear Safety Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ безопасности'),
(39648, 'https://ror.org/01xq37c18', 'en', 1, 'https://ror.org/01xq37c18 V.I.Shumakov Federal Research Center of Transplantology and Artificial Organs Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр трансплантологии Šø ŠøŃŠŗŃƒŃŃŃ‚Š²ŠµŠ½Š½Ń‹Ń… органов имени акаГемика Š’.И. Шумакова'),
(39649, 'https://ror.org/03ta4hv58', 'en', 1, 'https://ror.org/03ta4hv58 Russian Research Institute for Phytopathology ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фитопатологии России'),
(39650, 'https://ror.org/035rr9c26', 'en', 1, 'https://ror.org/035rr9c26 Institute of Developmental Physiology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ возрастной физиологии'),
(39651, 'https://ror.org/05anb3b46', 'no_lang_code', 1, 'https://ror.org/05anb3b46 3D Bioprinting Solutions (Russia) 3Š” Биопринтинг Š”Š¾Š»ŃŽŃˆŠµŠ½Ń'),
(39652, 'https://ror.org/03szme345', 'en', 1, 'https://ror.org/03szme345 Institute of Tectonics and Geophysics named after Y.A. Kosygin Š”Š’Šž Š ŠŠ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Тектоники Šø Геофизики им. Š®.А.ŠšŠ¾ŃŃ‹Š³ŠøŠ½Š°'),
(39653, 'https://ror.org/02726j593', 'en', 1, 'https://ror.org/02726j593 Melentiev Energy Systems Institute ŠœŠµŠ»ŠµŠ½Ń‚ŃŒŠµŠ² Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систем ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠø'),
(39654, 'https://ror.org/04b581c27', 'en', 1, 'https://ror.org/04b581c27 Institute of Applied Astronomy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной астрономии'),
(39655, 'https://ror.org/02wben378', 'no_lang_code', 1, 'https://ror.org/02wben378 Imtek (Russia) Š˜Š¼Ń‚ŠµŠŗ'),
(39656, 'https://ror.org/02zjtq409', 'en', 1, 'https://ror.org/02zjtq409 Russian Railways Российские железные Гороги'),
(39657, 'https://ror.org/011nbgj79', 'en', 1, 'https://ror.org/011nbgj79 Institute of Coal of the Siberian Branch of the RAS Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠ³Š»Ń Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(39658, 'https://ror.org/04850rm18', 'en', 1, 'https://ror.org/04850rm18 Baikal Institute of Nature Management ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(39659, 'https://ror.org/008cjy335', 'en', 1, 'https://ror.org/008cjy335 Scientific Research Institute of Experimental and Clinical Medicine Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠžŠ• Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠžŠ• Š‘Š®Š”Š–Š•Š¢ŠŠžŠ• ŠŠŠ£Š§ŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š­ŠšŠ”ŠŸŠ•Š Š˜ŠœŠ•ŠŠ¢ŠŠ›Š¬ŠŠžŠ™ И ŠšŠ›Š˜ŠŠ˜Š§Š•Š”ŠšŠžŠ™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ«'),
(39660, 'https://ror.org/01avfbv46', 'no_lang_code', 1, 'https://ror.org/01avfbv46 Giredmet (Russia) Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ реГких Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(39661, 'https://ror.org/04faa0n67', 'en', 1, 'https://ror.org/04faa0n67 Institute of Economics and Industrial Engineering Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø организации ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š³Š¾ произвоГства Š”Šž Š ŠŠ'),
(39662, 'https://ror.org/0305m4448', 'en', 1, 'https://ror.org/0305m4448 Diamond and Precious Metal Geology Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии алмаза Šø благороГных металлов Š”Šž Š ŠŠ'),
(39663, 'https://ror.org/02cge6w61', 'en', 1, 'https://ror.org/02cge6w61 Central Siberian Botanical Garden Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ сибирский ботанический саГ'),
(39664, 'https://ror.org/059dmrc35', 'en', 1, 'https://ror.org/059dmrc35 Institute of Agrarian Problems Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрных проблем'),
(39665, 'https://ror.org/02ygqdd77', 'en', 1, 'https://ror.org/02ygqdd77 Centre for Forest Ecology and Productivity Центр по проблемам ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø ŠæŃ€Š¾Š“ŃƒŠŗŃ‚ŠøŠ²Š½Š¾ŃŃ‚Šø лесов Š ŠŠ'),
(39666, 'https://ror.org/05pbm6778', 'en', 1, 'https://ror.org/05pbm6778 All-Russian Scientific Research Institute of Records Management and Archival Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Šø архивного Гела'),
(39667, 'https://ror.org/05sbpak56', 'en', 1, 'https://ror.org/05sbpak56 Geophysical Survey Š“ŠµŠ¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń служба Российской АкаГемии ŠŠ°ŃƒŠŗ'),
(39668, 'https://ror.org/01j9c2p04', 'en', 1, 'https://ror.org/01j9c2p04 Research Institute of Emergency Care ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ скорой помощи им. Š.Š’. Дклифосовского'),
(39669, 'https://ror.org/007ebp326', 'no_lang_code', 1, 'https://ror.org/007ebp326 Krasnoyarsk Scientific Center ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(39670, 'https://ror.org/030hk6x09', 'en', 1, 'https://ror.org/030hk6x09 Institute of Cosmophysical Research and Radio Wave Propagation Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космофизических исслеГований Šø Ń€Š°ŃŠæŃ€Š¾ŃŃ‚Ń€Š°Š½ŠµŠ½ŠøŃ раГиоволн'),
(39671, 'https://ror.org/01zavqc64', 'en', 1, 'https://ror.org/01zavqc64 Institute of Petroleum Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Єимии ŠŠµŃ„ти До Š ŠŠ'),
(39672, 'https://ror.org/00apb0c64', 'en', 1, 'https://ror.org/00apb0c64 All-Russian Research Institute Fisheries and Oceanography ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° России Šø океанографии'),
(39673, 'https://ror.org/05tpxpz56', 'en', 1, 'https://ror.org/05tpxpz56 Institute of Mineralogy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ минералогии'),
(39674, 'https://ror.org/0266a1t84', 'en', 1, 'https://ror.org/0266a1t84 Udmurt Institute of History, Language and Literature Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории, ŃŠ·Ń‹ŠŗŠ° Šø Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ Š£Ń€Šž Š ŠŠ'),
(39675, 'https://ror.org/02s6ww326', 'en', 1, 'https://ror.org/02s6ww326 Institute of Oriental Manuscripts Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ восточных Ń€ŃƒŠŗŠ¾ŠæŠøŃŠµŠ¹ Российской акаГемии наук'),
(39676, 'https://ror.org/04rewz209', 'no_lang_code', 1, 'https://ror.org/04rewz209 Research Center for Surface and Vacuum (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр по ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃŽ свойств поверхности Šø вакуума'),
(39677, 'https://ror.org/00tnkbn59', 'en', 1, 'https://ror.org/00tnkbn59 Institute of Archaeology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ археологии Российской акаГемии наук'),
(39678, 'https://ror.org/05ct5rw58', 'en', 1, 'https://ror.org/05ct5rw58 Saint-Petersburg Institute of History Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории'),
(39679, 'https://ror.org/04a7dp661', 'no_lang_code', 1, 'https://ror.org/04a7dp661 SertiNK Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ автономное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŃƒŃ‡ŠµŠ±Š½Ń‹Š¹ центр Дварка Šø ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŒ при ŠœŠ“ТУ им. Š.Š­. Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(39680, 'https://ror.org/040er0w10', 'en', 1, 'https://ror.org/040er0w10 All-Russian Scientific Research Institute of Food Biotechnology Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ˜Š©Š•Š’ŠžŠ™ Š‘Š˜ŠžŠ¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š˜');
INSERT INTO `rors` VALUES
(39681, 'https://ror.org/01ww2bg72', 'en', 1, 'https://ror.org/01ww2bg72 Oil and Gas Research Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем нефти Šø газа Российской акаГемии наук'),
(39682, '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'),
(39683, 'https://ror.org/025410268', 'en', 1, 'https://ror.org/025410268 Institute for Educational Development and Training Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø ŠæŠ¾Š²Ń‹ŃˆŠµŠ½ŠøŃ квалификации'),
(39684, 'https://ror.org/00z0g8n94', 'en', 1, 'https://ror.org/00z0g8n94 Kalmyk Institute for Humanities Research ŠšŠ°Š»Š¼Ń‹Ń†ŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… исслеГований'),
(39685, 'https://ror.org/03a74kx83', 'en', 1, 'https://ror.org/03a74kx83 Research Institute of National Schools of the Republic of Sakha ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… школ Республики Даха'),
(39686, 'https://ror.org/01c33mn06', 'en', 1, 'https://ror.org/01c33mn06 Institute of the North'),
(39687, 'https://ror.org/04ay6mm65', 'en', 1, 'https://ror.org/04ay6mm65 International Centre for Reindeer Husbandry'),
(39688, 'https://ror.org/0023cym93', 'en', 1, 'https://ror.org/0023cym93 Stefansson Arctic Institute Stofnun VilhjƔlms StefƔnssonar'),
(39689, 'https://ror.org/05pp7qy10', 'en', 1, 'https://ror.org/05pp7qy10 Institute of Hydrocarbon Processing Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем переработки ŃƒŠ³Š»ŠµŠ²Š¾Š“Š¾Ń€Š¾Š“Š¾Š²'),
(39690, 'https://ror.org/05f3gj938', 'en', 1, 'https://ror.org/05f3gj938 BTK - Hochschule für Kunst & Design BTK University of Arts & Design'),
(39691, 'https://ror.org/01w84qj32', 'en', 1, 'https://ror.org/01w84qj32 V.A. Negovsky Scientific Research Institute of General Reanimatology ŠŠ˜Š˜ общей реаниматологии Š ŠŠœŠ'),
(39692, 'https://ror.org/012s3vx96', 'en', 1, 'https://ror.org/012s3vx96 Saamelaisalueen Koulutuskeskus SƔmi Education Institute'),
(39693, 'https://ror.org/0490cs563', 'sv', 1, 'https://ror.org/0490cs563 Samernas Utbildningscentrum SƔmi Educational Centre'),
(39694, 'https://ror.org/028xr5559', 'en', 1, 'https://ror.org/028xr5559 Makivik Corporation Makivvik Kuapuriisat SociƩtƩ Makivik'),
(39695, 'https://ror.org/04p6zf087', 'no_lang_code', 1, 'https://ror.org/04p6zf087 Mekhanobr Appliances (Russia) ŠœŠµŃ…Š°Š½Š¾Š±Ń€-техника'),
(39696, 'https://ror.org/01h6epf62', 'no_lang_code', 1, 'https://ror.org/01h6epf62 Taimyr College Таймырский коллеГж'),
(39697, 'https://ror.org/00gprdj76', 'en', 1, 'https://ror.org/00gprdj76 Latin American Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Латинской Америки'),
(39698, 'https://ror.org/01nk7a404', 'en', 1, 'https://ror.org/01nk7a404 Naryan-Mar Social and Humanitarian College ŠŠ°Ń€ŃŒŃŠ½-ŠœŠ°Ń€ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ коллеГж имени И.П. Š’Ń‹ŃƒŃ‡ŠµŠ¹ŃŠŗŠ¾Š³Š¾'),
(39699, 'https://ror.org/04pv4k943', 'en', 1, 'https://ror.org/04pv4k943 Hydrometeorological Research Centre of Russian Federation Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ГиГрометеорологический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Российской ФеГерации'),
(39700, 'https://ror.org/03tv4yh49', 'en', 1, 'https://ror.org/03tv4yh49 Nenets Agro-Economic College'),
(39701, 'https://ror.org/01kzgc408', 'fr', 1, 'https://ror.org/01kzgc408 Wilp Wilxo’oskwhl Nisga’a Institute'),
(39702, 'https://ror.org/04jjns303', 'en', 1, 'https://ror.org/04jjns303 Institute of Applied Mechanics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной механики'),
(39703, 'https://ror.org/050vepj62', 'en', 1, 'https://ror.org/050vepj62 Arctic College of the Peoples of the North ŠŠ ŠšŠ¢Š˜Š§Š•Š”ŠšŠ˜Š™ ŠšŠžŠ›Š›Š•Š”Š– ŠŠŠ ŠžŠ”ŠžŠ’ ДЕВЕРА'),
(39704, 'https://ror.org/024k73h76', 'en', 1, 'https://ror.org/024k73h76 Yamal Multidisciplinary College ŠÆŠœŠŠ›Š¬Š”ŠšŠ˜Š™ ŠœŠŠžŠ“ŠžŠŸŠ ŠžŠ¤Š˜Š›Š¬ŠŠ«Š™ ŠšŠžŠ›Š›Š•Š”Š–'),
(39705, 'https://ror.org/04n2vg926', 'en', 1, 'https://ror.org/04n2vg926 Yamal Polar Agro-Economic College Ямальский ŠæŠ¾Š»ŃŃ€Š½Ń‹Š¹ Š°Š³Ń€Š¾ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ Ń‚ŠµŃ…Š½ŠøŠŗŃƒŠ¼'),
(39706, 'https://ror.org/03vhd2n30', 'en', 1, 'https://ror.org/03vhd2n30 Circumpolar Agricultural Association'),
(39707, 'https://ror.org/02awrhk36', 'en', 1, 'https://ror.org/02awrhk36 Northern National College Деверный ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ коллеГж'),
(39708, 'https://ror.org/00zpk0t94', 'no_lang_code', 1, 'https://ror.org/00zpk0t94 Arctic Portal'),
(39709, 'https://ror.org/03bjaz271', 'en', 1, 'https://ror.org/03bjaz271 International Polar Foundation'),
(39710, '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'),
(39711, 'https://ror.org/00hpff311', 'en', 1, 'https://ror.org/00hpff311 Council of Yukon First Nations'),
(39712, 'https://ror.org/01nzfne16', 'en', 1, 'https://ror.org/01nzfne16 Northern Teacher Education Program'),
(39713, 'https://ror.org/0468ehz42', 'en', 1, 'https://ror.org/0468ehz42 Austrian Polar Research Institute'),
(39714, 'https://ror.org/05s2efz59', 'en', 1, 'https://ror.org/05s2efz59 Northlands College'),
(39715, 'https://ror.org/00ra6qr58', 'en', 1, 'https://ror.org/00ra6qr58 Greenland Government'),
(39716, 'https://ror.org/003k8c950', 'en', 1, 'https://ror.org/003k8c950 Norges Vitenskapsakademi for Polarforskning Norwegian Scientific Academy for Polar Research'),
(39717, 'https://ror.org/006g9a667', 'en', 1, 'https://ror.org/006g9a667 Center for Circumpolar Studies'),
(39718, 'https://ror.org/021j5fe33', 'iu', 1, 'https://ror.org/021j5fe33 Nunavut Sivuniksavut'),
(39719, 'https://ror.org/05pc7fv53', 'en', 1, 'https://ror.org/05pc7fv53 National Research Institute of Public Health named after N.A. Semashko ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общественного Š·Š“Š¾Ń€Š¾Š²ŃŒŃ имени Š.А. Демашко'),
(39720, 'https://ror.org/04xnqnd94', 'en', 1, 'https://ror.org/04xnqnd94 Institute for Humanities Research and Indigenous Studies of the North Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… исслеГований Šø коренных нароГов Девера'),
(39721, 'https://ror.org/03k4btr05', 'en', 1, 'https://ror.org/03k4btr05 Center for Support of Indigenous Peoples of the North'),
(39722, 'https://ror.org/05twc1c66', 'en', 1, 'https://ror.org/05twc1c66 Cold Climate Housing Research Center'),
(39723, 'https://ror.org/04eqxyk73', 'en', 1, 'https://ror.org/04eqxyk73 Institute of Volcanology and Seismology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вулканологии Šø сейсмологии'),
(39724, 'https://ror.org/01j1yrs64', 'en', 1, 'https://ror.org/01j1yrs64 Gwich''in Council International'),
(39725, 'https://ror.org/02540ds77', 'en', 1, 'https://ror.org/02540ds77 Ministry of Education and Youth Policy of the Republic of Komi ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Республики Коми'),
(39726, 'https://ror.org/04n28sf88', 'en', 1, 'https://ror.org/04n28sf88 Icelandic Tourism Research Centre Rannsóknamiðstöð FerðamÔla'),
(39727, 'https://ror.org/043zcks33', 'en', 1, 'https://ror.org/043zcks33 International Institute for Sustainable Development'),
(39728, 'https://ror.org/02ze2t980', 'en', 1, 'https://ror.org/02ze2t980 Russian Association of Indigenous Peoples of the North ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ коренных, малочисленных нароГов Девера, Дибири Šø Š”Š°Š»ŃŒŠ½ŠµŠ³Š¾ Востока Российской ФеГерации'),
(39729, 'https://ror.org/00yjjd343', 'en', 1, 'https://ror.org/00yjjd343 Uummannaq Polar Institute'),
(39730, 'https://ror.org/01nhftj29', 'en', 1, 'https://ror.org/01nhftj29 Ministry of Natural Resources and Environmental Protection of the Komi Republic ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ ŠŸŃ€ŠøŃ€Š¾Š“Š½Ń‹Ń… Š ŠµŃŃƒŃ€ŃŠ¾Š² И ŠžŃ…Ń€Š°Š½Ń‹ ŠžŠŗŃ€ŃƒŠ¶Š°ŃŽŃ‰ŠµŠ¹ ДреГы Республики Коми'),
(39731, 'https://ror.org/04863f219', 'en', 1, 'https://ror.org/04863f219 Council of State Valtioneuvosto statsrƄdet'),
(39732, 'https://ror.org/02wvb2a30', 'en', 1, 'https://ror.org/02wvb2a30 Nordland Research Institute Nordlandsforskning'),
(39733, 'https://ror.org/05gn8bd38', 'en', 1, 'https://ror.org/05gn8bd38 Yukon Agricultural Association'),
(39734, 'https://ror.org/00d4qwn05', 'no_lang_code', 1, 'https://ror.org/00d4qwn05 Meridian (Russia) ŠœŠµŃ€ŠøŠ“ŠøŠ°Š½'),
(39735, 'https://ror.org/05v13xr40', 'en', 1, 'https://ror.org/05v13xr40 State Duma Š“Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Гу́ма'),
(39736, 'https://ror.org/03xscnc52', 'en', 1, 'https://ror.org/03xscnc52 Saami Council'),
(39737, 'https://ror.org/03h3f5845', 'en', 1, 'https://ror.org/03h3f5845 Murmansk Academy of Economics and Management ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(39738, 'https://ror.org/03wgj1374', 'en', 1, 'https://ror.org/03wgj1374 Legislative Assembly of Saskatchewan'),
(39739, 'https://ror.org/02r2mca20', 'no_lang_code', 1, 'https://ror.org/02r2mca20 Zabaykalsky National Park Š—Š°Š±Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк'),
(39740, 'https://ror.org/04y726b94', 'en', 1, 'https://ror.org/04y726b94 National Museum of the Finnish SƔmi'),
(39741, 'https://ror.org/01fe6wg83', 'en', 1, 'https://ror.org/01fe6wg83 All Russian Research Institute of Geology and Mineral Resources of the World Ocean Š’ŠŠ˜Š˜ŠžŠŗŠµŠ°Š½Š³ŠµŠ¾Š»Š¾Š³ŠøŃ'),
(39742, 'https://ror.org/03w4wmy72', 'no_lang_code', 1, 'https://ror.org/03w4wmy72 Genomic Vision (France)'),
(39743, 'https://ror.org/00emv3338', 'de', 1, 'https://ror.org/00emv3338 Archiv der Hansestadt Wismar'),
(39744, 'https://ror.org/03yvf9v84', 'en', 1, 'https://ror.org/03yvf9v84 Father Muller Homoeopathic Medical College'),
(39745, 'https://ror.org/024j3hn90', 'de', 1, 'https://ror.org/024j3hn90 UniversitƤtsklinikum Knappschaftskrankenhaus Bochum'),
(39746, 'https://ror.org/04py24056', 'en', 1, 'https://ror.org/04py24056 Bavarian State Painting Collections Bayerische StaatsgemƤldesammlungen'),
(39747, 'https://ror.org/00jce1v14', 'en', 1, 'https://ror.org/00jce1v14 College of the Siskiyous'),
(39748, 'https://ror.org/02kc2j595', 'en', 1, 'https://ror.org/02kc2j595 Copiah-Lincoln Community College'),
(39749, 'https://ror.org/00gpmge60', 'en', 1, 'https://ror.org/00gpmge60 Cowley Community College'),
(39750, 'https://ror.org/02qz3vf90', 'en', 1, 'https://ror.org/02qz3vf90 Davidson County Community College'),
(39751, 'https://ror.org/051qrf195', 'en', 1, 'https://ror.org/051qrf195 Davis Applied Technology College'),
(39752, 'https://ror.org/03t1tgz69', 'en', 1, 'https://ror.org/03t1tgz69 Academy for Five Element Acupuncture'),
(39753, 'https://ror.org/00a264q56', 'en', 1, 'https://ror.org/00a264q56 Academy for Jewish Religion California'),
(39754, 'https://ror.org/04dy4th59', 'en', 1, 'https://ror.org/04dy4th59 Bon Secours Memorial College of Nursing'),
(39755, 'https://ror.org/03nb5d893', 'en', 1, 'https://ror.org/03nb5d893 Academy of Chinese Culture and Health Sciences'),
(39756, 'https://ror.org/03pq5wv02', 'en', 1, 'https://ror.org/03pq5wv02 Academy of Vocal Arts'),
(39757, 'https://ror.org/043xy0x82', 'en', 1, 'https://ror.org/043xy0x82 Boston Baptist College'),
(39758, 'https://ror.org/00b6wzg36', 'en', 1, 'https://ror.org/00b6wzg36 Acupuncture & Integrative Medicine College'),
(39759, 'https://ror.org/05kbrcy03', 'en', 1, 'https://ror.org/05kbrcy03 Episcopal Divinity School'),
(39760, 'https://ror.org/04tb1ww30', 'en', 1, 'https://ror.org/04tb1ww30 Adler Graduate School'),
(39761, 'https://ror.org/050khzd41', 'en', 1, 'https://ror.org/050khzd41 Peirce College'),
(39762, 'https://ror.org/05jhyr833', 'en', 1, 'https://ror.org/05jhyr833 Boston Graduate School of Psychoanalysis'),
(39763, 'https://ror.org/044x5g822', 'en', 1, 'https://ror.org/044x5g822 Pennsylvania College of Art and Design'),
(39764, 'https://ror.org/033e57h61', 'en', 1, 'https://ror.org/033e57h61 Manhattan School of Music'),
(39765, 'https://ror.org/057z2zh71', 'en', 1, 'https://ror.org/057z2zh71 Ex''pression College for Digital Arts'),
(39766, 'https://ror.org/045hvha55', 'no_lang_code', 1, 'https://ror.org/045hvha55 3-Sigma Research (United States)'),
(39767, 'https://ror.org/03bybmz71', 'en', 1, 'https://ror.org/03bybmz71 AIB College of Business'),
(39768, 'https://ror.org/049wrhp57', 'en', 1, 'https://ror.org/049wrhp57 Phoenix Institute of Herbal Medicine and Acupuncture'),
(39769, 'https://ror.org/026xy6j55', 'en', 1, 'https://ror.org/026xy6j55 Faith Evangelical College & Seminary'),
(39770, 'https://ror.org/02v65ck63', 'en', 1, 'https://ror.org/02v65ck63 Maple Springs Baptist Bible College and Seminary'),
(39771, 'https://ror.org/05gja2q95', 'en', 1, 'https://ror.org/05gja2q95 Phoenix Seminary'),
(39772, 'https://ror.org/0536wq444', 'en', 1, 'https://ror.org/0536wq444 Family of Faith College'),
(39773, 'https://ror.org/00tc79f78', 'en', 1, 'https://ror.org/00tc79f78 Platt College Aurora'),
(39774, 'https://ror.org/05pc4m625', 'en', 1, 'https://ror.org/05pc4m625 Martin Luther College'),
(39775, 'https://ror.org/03bnxc149', 'en', 1, 'https://ror.org/03bnxc149 Five Towns College'),
(39776, 'https://ror.org/05nkvn594', 'en', 1, 'https://ror.org/05nkvn594 American Academy of Acupuncture and Oriental Medicine'),
(39777, 'https://ror.org/05rvkm618', 'en', 1, 'https://ror.org/05rvkm618 Massachusetts School of Law'),
(39778, 'https://ror.org/02de22795', 'en', 1, 'https://ror.org/02de22795 Florida College of Integrative Medicine'),
(39779, 'https://ror.org/001gb1j79', 'en', 1, 'https://ror.org/001gb1j79 American Baptist College'),
(39780, 'https://ror.org/05db4h730', 'en', 1, 'https://ror.org/05db4h730 Bryan College of Health Sciences'),
(39781, 'https://ror.org/03j70bf39', 'en', 1, 'https://ror.org/03j70bf39 American College of Acupuncture & Oriental Medicine'),
(39782, 'https://ror.org/023kybh62', 'en', 1, 'https://ror.org/023kybh62 Polytechnic University of Puerto Rico Miami'),
(39783, 'https://ror.org/016j6dw22', 'en', 1, 'https://ror.org/016j6dw22 Burlington College'),
(39784, 'https://ror.org/05t4q5a05', 'en', 1, 'https://ror.org/05t4q5a05 McNally Smith College of Music'),
(39785, 'https://ror.org/03vqkag84', 'en', 1, 'https://ror.org/03vqkag84 American College of Education'),
(39786, 'https://ror.org/028thwc63', 'en', 1, 'https://ror.org/028thwc63 Polytechnic University of Puerto Rico Orlando'),
(39787, 'https://ror.org/03ja16q10', 'en', 1, 'https://ror.org/03ja16q10 Frank Lloyd Wright School of Architecture'),
(39788, 'https://ror.org/05xphj289', 'en', 1, 'https://ror.org/05xphj289 Pontifical John Paul II Institute for Studies on Marriage and Family'),
(39789, 'https://ror.org/04nap1310', 'en', 1, 'https://ror.org/04nap1310 American College of Financial Services'),
(39790, 'https://ror.org/0232n8553', 'en', 1, 'https://ror.org/0232n8553 American College of Traditional Chinese Medicine'),
(39791, 'https://ror.org/03b325x62', 'en', 1, 'https://ror.org/03b325x62 Pope St. John XXIII National Seminary'),
(39792, 'https://ror.org/03pvphy63', 'en', 1, 'https://ror.org/03pvphy63 Byzantine Catholic Seminary of Saints Cyril and Methodius'),
(39793, 'https://ror.org/03mv9kp97', 'en', 1, 'https://ror.org/03mv9kp97 AOMA Graduate School of Integrative Medicine'),
(39794, 'https://ror.org/05fmdkk55', 'en', 1, 'https://ror.org/05fmdkk55 Memphis College of Art'),
(39795, 'https://ror.org/00mvrmk84', 'en', 1, 'https://ror.org/00mvrmk84 Providence Christian College'),
(39796, 'https://ror.org/0530xcn78', 'en', 1, 'https://ror.org/0530xcn78 Apex School of Theology'),
(39797, 'https://ror.org/00ek1m439', 'en', 1, 'https://ror.org/00ek1m439 Utah College of Dental Hygiene'),
(39798, 'https://ror.org/00gs3en43', 'en', 1, 'https://ror.org/00gs3en43 Carolina Christian College'),
(39799, 'https://ror.org/04t25zj93', 'en', 1, 'https://ror.org/04t25zj93 God''s Bible School and College'),
(39800, 'https://ror.org/02gzrnr79', 'en', 1, 'https://ror.org/02gzrnr79 Rabbi Jacob Joseph School'),
(39801, 'https://ror.org/00cwxbd63', 'en', 1, 'https://ror.org/00cwxbd63 Arizona School of Acupuncture and Oriental Medicine'),
(39802, 'https://ror.org/01029e417', 'en', 1, 'https://ror.org/01029e417 Carver Bible College'),
(39803, 'https://ror.org/00q5x1a77', 'en', 1, 'https://ror.org/00q5x1a77 Messenger College'),
(39804, 'https://ror.org/03a942552', 'no_lang_code', 1, 'https://ror.org/03a942552 Adaptix (United Kingdom)'),
(39805, 'https://ror.org/00mej7b74', 'en', 1, 'https://ror.org/00mej7b74 Arizona Summit Law School'),
(39806, 'https://ror.org/015z60w50', 'en', 1, 'https://ror.org/015z60w50 Center for Advanced Legal Studies'),
(39807, 'https://ror.org/04fszdm13', 'en', 1, 'https://ror.org/04fszdm13 Art Academy of Cincinnati'),
(39808, 'https://ror.org/000z2fe63', 'en', 1, 'https://ror.org/000z2fe63 Grace Mission University'),
(39809, 'https://ror.org/03nmnmt74', 'en', 1, 'https://ror.org/03nmnmt74 Midwest College of Oriental Medicine'),
(39810, 'https://ror.org/0040q3862', 'en', 1, 'https://ror.org/0040q3862 Atlanta’s John Marshall Law School'),
(39811, 'https://ror.org/020t7f007', 'en', 1, 'https://ror.org/020t7f007 Rabbinical College of America'),
(39812, 'https://ror.org/00tqb5b32', 'en', 1, 'https://ror.org/00tqb5b32 Grace School of Theology'),
(39813, 'https://ror.org/04wpk4a30', 'en', 1, 'https://ror.org/04wpk4a30 Atlantic Institute of Oriental Medicine'),
(39814, 'https://ror.org/00a0y1f58', 'en', 1, 'https://ror.org/00a0y1f58 Hazelden Betty Ford Graduate School of Addiction Studies'),
(39815, 'https://ror.org/04czy3x31', 'en', 1, 'https://ror.org/04czy3x31 Heritage Bible College'),
(39816, 'https://ror.org/04j68nv27', 'en', 1, 'https://ror.org/04j68nv27 Millennia Atlantic University'),
(39817, 'https://ror.org/044abmm29', 'en', 1, 'https://ror.org/044abmm29 Hobe Sound Bible College'),
(39818, 'https://ror.org/007bxt841', 'no_lang_code', 1, 'https://ror.org/007bxt841 Bais HaMedrash and Mesivta of Baltimore'),
(39819, 'https://ror.org/031ew8w25', 'en', 1, 'https://ror.org/031ew8w25 Milwaukee Institute of Art & Design'),
(39820, 'https://ror.org/01yvchj11', 'en', 1, 'https://ror.org/01yvchj11 Horizon University'),
(39821, 'https://ror.org/04w4h5c56', 'en', 1, 'https://ror.org/04w4h5c56 Rabbinical College Ohr Yisroel'),
(39822, 'https://ror.org/035khbv71', 'en', 1, 'https://ror.org/035khbv71 Houston Graduate School of Theology'),
(39823, 'https://ror.org/04gdyqq92', 'en', 1, 'https://ror.org/04gdyqq92 Charlotte Christian College and Theological Seminary'),
(39824, 'https://ror.org/01qw1bz85', 'en', 1, 'https://ror.org/01qw1bz85 Humphreys College'),
(39825, 'https://ror.org/00e0p8s95', 'en', 1, 'https://ror.org/00e0p8s95 Charlotte School of Law'),
(39826, 'https://ror.org/01fk7em68', 'en', 1, 'https://ror.org/01fk7em68 Bais Medrash Toras Chesed'),
(39827, 'https://ror.org/001sfpp23', 'en', 1, 'https://ror.org/001sfpp23 Relay Graduate School of Education'),
(39828, 'https://ror.org/01yh59845', 'en', 1, 'https://ror.org/01yh59845 Montana Bible College'),
(39829, 'https://ror.org/00qc32430', 'en', 1, 'https://ror.org/00qc32430 Christie''s Education'),
(39830, 'https://ror.org/01jc8rs51', 'en', 1, 'https://ror.org/01jc8rs51 IGlobal University'),
(39831, 'https://ror.org/00yte8n94', 'en', 1, 'https://ror.org/00yte8n94 Church Divinity School of the Pacific'),
(39832, 'https://ror.org/04pqs5t46', 'en', 1, 'https://ror.org/04pqs5t46 Beacon College'),
(39833, 'https://ror.org/058vwqx43', 'en', 1, 'https://ror.org/058vwqx43 Institute for Doctoral Studies in the Visual Arts'),
(39834, 'https://ror.org/01x7teq58', 'en', 1, 'https://ror.org/01x7teq58 City Vision University'),
(39835, 'https://ror.org/00vn6kg36', 'en', 1, 'https://ror.org/00vn6kg36 Becker College'),
(39836, 'https://ror.org/052rpb648', 'en', 1, 'https://ror.org/052rpb648 Resurrection University'),
(39837, 'https://ror.org/03vkpnc84', 'en', 1, 'https://ror.org/03vkpnc84 Clarkson College'),
(39838, 'https://ror.org/04w93kd83', 'en', 1, 'https://ror.org/04w93kd83 Institute for the Psychological Sciences'),
(39839, 'https://ror.org/016a6js89', 'en', 1, 'https://ror.org/016a6js89 Richmont Graduate University'),
(39840, 'https://ror.org/00dfkrb12', 'en', 1, 'https://ror.org/00dfkrb12 Rio Grande Bible Institute'),
(39841, 'https://ror.org/013am1j13', 'en', 1, 'https://ror.org/013am1j13 Rocky Mountain College of Art and Design'),
(39842, 'https://ror.org/02tn5xc56', 'en', 1, 'https://ror.org/02tn5xc56 Colgate Rochester Crozer Divinity School'),
(39843, 'https://ror.org/01ahk4t18', 'en', 1, 'https://ror.org/01ahk4t18 Montessori Institute of Milwaukee'),
(39844, 'https://ror.org/042dg8338', 'en', 1, 'https://ror.org/042dg8338 Rudolf Steiner College'),
(39845, 'https://ror.org/03c9c1383', 'en', 1, 'https://ror.org/03c9c1383 Montserrat College of Art'),
(39846, 'https://ror.org/03rb26y64', 'en', 1, 'https://ror.org/03rb26y64 Collins College'),
(39847, 'https://ror.org/0457x4y88', 'en', 1, 'https://ror.org/0457x4y88 St. Catharine College'),
(39848, 'https://ror.org/007je0v50', 'en', 1, 'https://ror.org/007je0v50 Colorado School of Traditional Chinese Medicine'),
(39849, 'https://ror.org/01nh53a98', 'en', 1, 'https://ror.org/01nh53a98 Moore College of Art and Design'),
(39850, 'https://ror.org/01jh5hv18', 'en', 1, 'https://ror.org/01jh5hv18 Saint Charles Borromeo Seminary'),
(39851, 'https://ror.org/02sz4p320', 'en', 1, 'https://ror.org/02sz4p320 Institute of World Politics'),
(39852, 'https://ror.org/05v69pw95', 'en', 1, 'https://ror.org/05v69pw95 Bexley Hall'),
(39853, 'https://ror.org/0435dnz03', 'en', 1, 'https://ror.org/0435dnz03 Interdenominational Theological Center'),
(39854, 'https://ror.org/01g9cpz33', 'en', 1, 'https://ror.org/01g9cpz33 Morthland College'),
(39855, 'https://ror.org/01axtzy32', 'en', 1, 'https://ror.org/01axtzy32 Saint John Vianney College Seminary'),
(39856, 'https://ror.org/00bgbmf24', 'en', 1, 'https://ror.org/00bgbmf24 Birthingway College of Midwifery'),
(39857, 'https://ror.org/02tdd1e40', 'en', 1, 'https://ror.org/02tdd1e40 Saint Luke''s College of Health Sciences'),
(39858, 'https://ror.org/00c1pz865', 'en', 1, 'https://ror.org/00c1pz865 International Academy of Design & Technology'),
(39859, 'https://ror.org/00wqess70', 'en', 1, 'https://ror.org/00wqess70 St. Vincent de Paul Regional Seminary'),
(39860, 'https://ror.org/02vt55417', 'en', 1, 'https://ror.org/02vt55417 Blessing-Rieman College of Nursing'),
(39861, 'https://ror.org/05sbeh252', 'en', 1, 'https://ror.org/05sbeh252 Columbia College of Nursing'),
(39862, 'https://ror.org/02w9pf714', 'en', 1, 'https://ror.org/02w9pf714 Saint Vincent Seminary'),
(39863, 'https://ror.org/05e1bqk54', 'en', 1, 'https://ror.org/05e1bqk54 Boise Bible College'),
(39864, 'https://ror.org/0542f9556', 'en', 1, 'https://ror.org/0542f9556 International Academy of Design & Technology'),
(39865, 'https://ror.org/016gc3g35', 'en', 1, 'https://ror.org/016gc3g35 San Francisco Conservatory of Music'),
(39866, 'https://ror.org/04e02dg93', 'en', 1, 'https://ror.org/04e02dg93 Concordia College Alabama'),
(39867, 'https://ror.org/00qnd3z77', 'en', 1, 'https://ror.org/00qnd3z77 National American University'),
(39868, 'https://ror.org/007qc6d13', 'en', 1, 'https://ror.org/007qc6d13 International Baptist College and Seminary'),
(39869, 'https://ror.org/04p5ezw03', 'en', 1, 'https://ror.org/04p5ezw03 Cox College'),
(39870, 'https://ror.org/02ctkg564', 'en', 1, 'https://ror.org/02ctkg564 Nebraska Christian College'),
(39871, 'https://ror.org/03x131c97', 'en', 1, 'https://ror.org/03x131c97 International Institute for Restorative Practices'),
(39872, 'https://ror.org/05vb1qq28', 'en', 1, 'https://ror.org/05vb1qq28 Shiloh University'),
(39873, 'https://ror.org/02etj2579', 'en', 1, 'https://ror.org/02etj2579 Savannah Law School'),
(39874, 'https://ror.org/03v4jhb18', 'en', 1, 'https://ror.org/03v4jhb18 Cranbrook Academy of Art'),
(39875, 'https://ror.org/00n27t175', 'en', 1, 'https://ror.org/00n27t175 Seattle Institute of Oriental Medicine'),
(39876, 'https://ror.org/02sn4rb40', 'no_lang_code', 1, 'https://ror.org/02sn4rb40 Peregrine Power (United States)'),
(39877, 'https://ror.org/05c1b0415', 'en', 1, 'https://ror.org/05c1b0415 Sioux Falls Seminary'),
(39878, 'https://ror.org/03pgfye82', 'en', 1, 'https://ror.org/03pgfye82 New England College of Business'),
(39879, 'https://ror.org/00e0kg276', 'en', 1, 'https://ror.org/00e0kg276 Sentara College of Health Sciences'),
(39880, 'https://ror.org/00ymrc254', 'en', 1, 'https://ror.org/00ymrc254 Curtis Institute of Music'),
(39881, 'https://ror.org/04c581336', 'en', 1, 'https://ror.org/04c581336 Kenrick–Glennon Seminary'),
(39882, 'https://ror.org/043jtq828', 'en', 1, 'https://ror.org/043jtq828 Dallas Christian College'),
(39883, 'https://ror.org/02xbxcz59', 'en', 1, 'https://ror.org/02xbxcz59 New Hampshire Institute of Art'),
(39884, 'https://ror.org/04xxj4388', 'en', 1, 'https://ror.org/04xxj4388 Seattle School of Theology and Psychology'),
(39885, 'https://ror.org/05c686207', 'en', 1, 'https://ror.org/05c686207 Daoist Traditions College of Chinese Medical Arts'),
(39886, 'https://ror.org/03v16kr17', 'en', 1, 'https://ror.org/03v16kr17 Kentucky Mountain Bible College'),
(39887, 'https://ror.org/036y2y849', 'en', 1, 'https://ror.org/036y2y849 DellArte International School of Physical Theatre'),
(39888, 'https://ror.org/05c2gdy67', 'en', 1, 'https://ror.org/05c2gdy67 Reformed Episcopal Seminary'),
(39889, 'https://ror.org/012jge305', 'en', 1, 'https://ror.org/012jge305 Sotheby''s Institute of Art'),
(39890, 'https://ror.org/05x05k755', 'en', 1, 'https://ror.org/05x05k755 Laguna College of Art and Design'),
(39891, 'https://ror.org/00pnyyg32', 'en', 1, 'https://ror.org/00pnyyg32 Design Institute of San Diego'),
(39892, 'https://ror.org/03ccevd14', 'en', 1, 'https://ror.org/03ccevd14 New York College of Traditional Chinese Medicine'),
(39893, 'https://ror.org/014dwa961', 'en', 1, 'https://ror.org/014dwa961 South Florida Bible College & Theological Seminary'),
(39894, 'https://ror.org/02a1nbm25', 'en', 1, 'https://ror.org/02a1nbm25 New York School of Interior Design'),
(39895, 'https://ror.org/008f09676', 'en', 1, 'https://ror.org/008f09676 Thomas More College of Liberal Arts'),
(39896, 'https://ror.org/05vjege66', 'en', 1, 'https://ror.org/05vjege66 DeVry College'),
(39897, 'https://ror.org/028b5s745', 'en', 1, 'https://ror.org/028b5s745 Tri-State Bible College'),
(39898, 'https://ror.org/01g4a4162', 'en', 1, 'https://ror.org/01g4a4162 Newbury College'),
(39899, 'https://ror.org/04vgqtr26', 'en', 1, 'https://ror.org/04vgqtr26 Tri-State College of Acupuncture'),
(39900, 'https://ror.org/03nrq6f82', 'en', 1, 'https://ror.org/03nrq6f82 Northpoint Bible College'),
(39901, 'https://ror.org/02xhv2402', 'en', 1, 'https://ror.org/02xhv2402 Trinity Bible College'),
(39902, 'https://ror.org/005hdaw07', 'en', 1, 'https://ror.org/005hdaw07 Trinity Lutheran College'),
(39903, 'https://ror.org/02e6pdw39', 'en', 1, 'https://ror.org/02e6pdw39 Southern California Seminary'),
(39904, 'https://ror.org/0536m9756', 'en', 1, 'https://ror.org/0536m9756 Northwest Institute of Literary Arts'),
(39905, 'https://ror.org/03y3qvs38', 'en', 1, 'https://ror.org/03y3qvs38 Southwest Acupuncture College - Boulder'),
(39906, 'https://ror.org/05gb9fv74', 'en', 1, 'https://ror.org/05gb9fv74 Southwest Acupuncture College - Santa Fe'),
(39907, 'https://ror.org/03k94d886', 'en', 1, 'https://ror.org/03k94d886 Notre Dame Seminary'),
(39908, 'https://ror.org/05wc4jq58', 'en', 1, 'https://ror.org/05wc4jq58 Ecclesia College'),
(39909, 'https://ror.org/012fga139', 'en', 1, 'https://ror.org/012fga139 O''More College of Design'),
(39910, 'https://ror.org/00zbydh86', 'en', 1, 'https://ror.org/00zbydh86 Truett-McConnell College'),
(39911, 'https://ror.org/02fypjr73', 'en', 1, 'https://ror.org/02fypjr73 St. Bernard’s School of Theology and Ministry'),
(39912, 'https://ror.org/02jfyz617', 'en', 1, 'https://ror.org/02jfyz617 Union Presbyterian Seminary'),
(39913, 'https://ror.org/044txcp97', 'en', 1, 'https://ror.org/044txcp97 Emperors College'),
(39914, 'https://ror.org/02h6mhy16', 'en', 1, 'https://ror.org/02h6mhy16 Oak Hills Christian College'),
(39915, 'https://ror.org/03ezdk227', 'en', 1, 'https://ror.org/03ezdk227 Epic Bible College'),
(39916, 'https://ror.org/03cqnhx95', 'en', 1, 'https://ror.org/03cqnhx95 St. John''s College of Nursing'),
(39917, 'https://ror.org/01v41bc35', 'en', 1, 'https://ror.org/01v41bc35 Oregon College of Art and Craft'),
(39918, 'https://ror.org/03g9mpe61', 'en', 1, 'https://ror.org/03g9mpe61 Upper Valley Educators Institute'),
(39919, 'https://ror.org/03k9yfc35', 'en', 1, 'https://ror.org/03k9yfc35 University of Fort Lauderdale'),
(39920, 'https://ror.org/037ydwx27', 'en', 1, 'https://ror.org/037ydwx27 Urshan Graduate School of Theology'),
(39921, 'https://ror.org/0104aqe39', 'en', 1, 'https://ror.org/0104aqe39 Longy School of Music of Bard College'),
(39922, 'https://ror.org/0428azw09', 'en', 1, 'https://ror.org/0428azw09 Talmudic University'),
(39923, 'https://ror.org/051rq2a77', 'en', 1, 'https://ror.org/051rq2a77 Oxford Graduate School'),
(39924, 'https://ror.org/00sw9kj55', 'en', 1, 'https://ror.org/00sw9kj55 Paier College of Art Inc'),
(39925, 'https://ror.org/02kkj1692', 'en', 1, 'https://ror.org/02kkj1692 World Medicine Institute'),
(39926, 'https://ror.org/05c0t9w87', 'en', 1, 'https://ror.org/05c0t9w87 Vermont College of Fine Arts'),
(39927, 'https://ror.org/04wa2dm78', 'en', 1, 'https://ror.org/04wa2dm78 Virginia Baptist College'),
(39928, 'https://ror.org/02eneb966', 'en', 1, 'https://ror.org/02eneb966 World Mission University'),
(39929, 'https://ror.org/05g7f8997', 'en', 1, 'https://ror.org/05g7f8997 Talmudical Seminary Oholei Torah'),
(39930, 'https://ror.org/05r81c657', 'en', 1, 'https://ror.org/05r81c657 Yeshiva Toras Chaim Talmudic Seminary'),
(39931, 'https://ror.org/05k6xb467', 'en', 1, 'https://ror.org/05k6xb467 Visible Music College'),
(39932, 'https://ror.org/03thxbc14', 'en', 1, 'https://ror.org/03thxbc14 Western Seminary'),
(39933, 'https://ror.org/04vwgk321', 'en', 1, 'https://ror.org/04vwgk321 Art Institute of Atlanta'),
(39934, 'https://ror.org/00qkjnr71', 'en', 1, 'https://ror.org/00qkjnr71 Yeshiva of Greater Washington'),
(39935, 'https://ror.org/02cg6jf50', 'en', 1, 'https://ror.org/02cg6jf50 Lubavitch Educational Center'),
(39936, 'https://ror.org/02grghs20', 'en', 1, 'https://ror.org/02grghs20 Yeshiva and Kollel Be''er Yitzchok of Elizabeth'),
(39937, 'https://ror.org/02k8h2m07', 'en', 1, 'https://ror.org/02k8h2m07 Williamson College'),
(39938, 'https://ror.org/00mvdkr07', 'en', 1, 'https://ror.org/00mvdkr07 Yeshivat Mikdash Melech'),
(39939, 'https://ror.org/03hasam33', 'en', 1, 'https://ror.org/03hasam33 Wolford College'),
(39940, 'https://ror.org/01nsw9720', 'en', 1, 'https://ror.org/01nsw9720 Won Institute of Graduate Studies'),
(39941, 'https://ror.org/05hn31665', 'en', 1, 'https://ror.org/05hn31665 Young Harris College'),
(39942, 'https://ror.org/01pc4rp54', 'en', 1, 'https://ror.org/01pc4rp54 Art Institute of Houston'),
(39943, 'https://ror.org/04r030w90', 'en', 1, 'https://ror.org/04r030w90 Yeshiva of Nitra Rabbinical College'),
(39944, 'https://ror.org/051j50p12', 'en', 1, 'https://ror.org/051j50p12 The King''s College'),
(39945, 'https://ror.org/035h1xx45', 'en', 1, 'https://ror.org/035h1xx45 Yeshiva Ohr Elchonon Chabad West Coast Talmudical Seminary'),
(39946, 'https://ror.org/02nabw167', 'en', 1, 'https://ror.org/02nabw167 State Hospital'),
(39947, 'https://ror.org/00t2tkn41', 'no_lang_code', 1, 'https://ror.org/00t2tkn41 Cyber-Dynamics (United States)'),
(39948, 'https://ror.org/03mv3zz84', 'en', 1, 'https://ror.org/03mv3zz84 Brno International Business School'),
(39949, 'https://ror.org/013z3yn41', 'en', 1, 'https://ror.org/013z3yn41 Adana Bilim ve Teknloji Üniversitesi Adana Science and Technology University'),
(39950, 'https://ror.org/03xj8qc33', 'en', 1, 'https://ror.org/03xj8qc33 Dania Academy of Higher Education'),
(39951, 'https://ror.org/025t37b39', 'no_lang_code', 1, 'https://ror.org/025t37b39 B & B'),
(39952, 'https://ror.org/054ebrh70', 'en', 1, 'https://ror.org/054ebrh70 Danube Private University'),
(39953, 'https://ror.org/01ewgyc27', 'en', 1, 'https://ror.org/01ewgyc27 Academy of Cosmetics and Health Care in Warsaw Wyższa Szkoła Zawodowa Kosmetyki'),
(39954, 'https://ror.org/035dn9148', 'en', 1, 'https://ror.org/035dn9148 Baltic Methodist Theological Seminary'),
(39955, 'https://ror.org/00qabtj63', 'en', 1, 'https://ror.org/00qabtj63 Akcent International House Prague JazykovÔ Ŕkola AKCENT IH Prague'),
(39956, 'https://ror.org/0490tje89', 'en', 1, 'https://ror.org/0490tje89 Daugavpils Medical College Daugavpils medicinas koledza'),
(39957, 'https://ror.org/03yxw1t21', 'en', 1, 'https://ror.org/03yxw1t21 Academy of Fine Arts Nuremberg Akademie der Bildenden Künste Nürnberg'),
(39958, 'https://ror.org/04f0j5918', 'en', 1, 'https://ror.org/04f0j5918 Baptist Theological Academy'),
(39959, 'https://ror.org/03dy5jr56', 'en', 1, 'https://ror.org/03dy5jr56 Grāmatvedības un finanŔu koledža Riga College of Accounting and Finance'),
(39960, 'https://ror.org/03afcx965', 'en', 1, 'https://ror.org/03afcx965 bbw Hochschule bbw University of Applied Sciences'),
(39961, 'https://ror.org/00382bg18', 'en', 1, 'https://ror.org/00382bg18 College of Applied Psychology VysokÔ Ŕkola aplikované psychologie'),
(39962, 'https://ror.org/04rqr4m92', 'it', 1, 'https://ror.org/04rqr4m92 Academy of Fine Arts of Bologna Accademia di Belle Arti di Bologna'),
(39963, 'https://ror.org/000367g23', 'it', 1, 'https://ror.org/000367g23 Accademia di Belle Arti di Carrara'),
(39964, 'https://ror.org/02tr1pz26', 'en', 1, 'https://ror.org/02tr1pz26 Alberta College Alberta Koledža'),
(39965, 'https://ror.org/00amea583', 'en', 1, 'https://ror.org/00amea583 Alexander College'),
(39966, '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'),
(39967, 'https://ror.org/04h36ea57', 'en', 1, 'https://ror.org/04h36ea57 Alexander Technological Educational Institute of Thessaloniki ΑλεξάνΓρειο Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(39968, 'https://ror.org/01ym43775', 'it', 1, 'https://ror.org/01ym43775 Academy of Fine Arts of Florence Accademia di Belle Arti di Firenze'),
(39969, 'https://ror.org/03zsz9v82', 'it', 1, 'https://ror.org/03zsz9v82 Accademia di Belle Arti di Foggia'),
(39970, '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'),
(39971, 'https://ror.org/03ekjqb98', 'it', 1, 'https://ror.org/03ekjqb98 Accademia di Belle Arti di Frosinone'),
(39972, 'https://ror.org/03jgxzm03', 'en', 1, 'https://ror.org/03jgxzm03 Američka Visoka Skola za Menadžment i Tehnologiju Rochester Institute of Technology Croatia'),
(39973, 'https://ror.org/03athrm05', 'en', 1, 'https://ror.org/03athrm05 University of Security and Economics Š’ŠøŃŃˆŠµ Училище по Š”ŠøŠ³ŃƒŃ€Š½Š¾ŃŃ‚ Šø Икономика'),
(39974, 'https://ror.org/05fp0vp37', 'it', 1, 'https://ror.org/05fp0vp37 Accademia di Belle Arti di Lecce'),
(39975, 'https://ror.org/04w49ae90', 'de', 1, 'https://ror.org/04w49ae90 EBC Hochschule'),
(39976, 'https://ror.org/01kjvw753', 'en', 1, 'https://ror.org/01kjvw753 Biotechnical Educational Centre Ljubljana'),
(39977, 'https://ror.org/00vxar649', 'it', 1, 'https://ror.org/00vxar649 Accademia di Belle Arti di Macerata'),
(39978, 'https://ror.org/00rfy7667', 'en', 1, 'https://ror.org/00rfy7667 Accademia di Belle Arti di Brera Brera Academy'),
(39979, 'https://ror.org/018xbyb32', 'en', 1, 'https://ror.org/018xbyb32 College of Tourism'),
(39980, 'https://ror.org/01xk4y863', 'it', 1, 'https://ror.org/01xk4y863 Accademia di Belle Arti di Napoli Naples Academy of Fine Arts'),
(39981, 'https://ror.org/0286btk29', 'en', 1, 'https://ror.org/0286btk29 Architectural Institute in Prague'),
(39982, 'https://ror.org/03en4zh39', 'it', 1, 'https://ror.org/03en4zh39 Academy of Fine Arts of Palermo Accademia di Belle Arti di Palermo'),
(39983, 'https://ror.org/0282ezj14', 'it', 1, 'https://ror.org/0282ezj14 Accademia di Belle Arti di Reggio Calabria'),
(39984, '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'),
(39985, 'https://ror.org/04a1nmz13', 'it', 1, 'https://ror.org/04a1nmz13 Accademia di Belle Arti di Roma'),
(39986, 'https://ror.org/029q6vx61', 'it', 1, 'https://ror.org/029q6vx61 Accademia di Belle Arti di Sassari'),
(39987, 'https://ror.org/011aefy29', 'en', 1, 'https://ror.org/011aefy29 College of Nursing in Celje Visoka zdravstvena Ŕola v Celju'),
(39988, 'https://ror.org/017e2a614', 'en', 1, 'https://ror.org/017e2a614 College of Management ā€œEdukacjaā€ Wyższa Szkoła Zarządzania "Edukacja"'),
(39989, 'https://ror.org/018jcmk18', 'it', 1, 'https://ror.org/018jcmk18 Accademia di Belle Arti di Urbino'),
(39990, 'https://ror.org/009epmp89', 'en', 1, 'https://ror.org/009epmp89 College of Occupational Safety and Health Visoka Ŕkola za sigurnost'),
(39991, 'https://ror.org/01cf8y887', 'it', 1, 'https://ror.org/01cf8y887 Accademia di Belle Arti di Venezia'),
(39992, 'https://ror.org/05re2x545', 'en', 1, 'https://ror.org/05re2x545 Burg Giebichenstein Kunsthochschule Halle Burg Giebichenstein University of Art and Design Halle'),
(39993, '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'),
(39994, 'https://ror.org/058k9k832', 'en', 1, 'https://ror.org/058k9k832 European University Evropski Univerzitet'),
(39995, 'https://ror.org/055dvgm08', 'en', 1, 'https://ror.org/055dvgm08 Business Academy Aarhus'),
(39996, 'https://ror.org/03v7b8950', 'sl', 1, 'https://ror.org/03v7b8950 Izobraževalni Center Piramida Maribor'),
(39997, 'https://ror.org/045hatt54', 'en', 1, 'https://ror.org/045hatt54 College of Business and Hotel Management VysokÔ Ŕkola obchodní a hotelovÔ'),
(39998, 'https://ror.org/059hjkt43', 'hr', 1, 'https://ror.org/059hjkt43 Faculty for Business Management Fakultet za Poslovni Menadžment u Baru'),
(39999, 'https://ror.org/01mpgt112', 'cs', 1, 'https://ror.org/01mpgt112 VysokĆ” Å kola RealitnĆ­ Institut Franka Dysona'),
(40000, 'https://ror.org/00dnfj623', 'en', 1, 'https://ror.org/00dnfj623 Hanns Eisler College or Academy of Music Hochschule für Musik Hanns Eisler'),
(40001, 'https://ror.org/022gkxm60', 'en', 1, 'https://ror.org/022gkxm60 Collegium Varsoviense'),
(40002, 'https://ror.org/01k6gm036', 'hr', 1, 'https://ror.org/01k6gm036 Baltazar ZapreÅ”ić University of Applied Sciences'),
(40003, 'https://ror.org/00r6ym970', 'en', 1, 'https://ror.org/00r6ym970 Latvia Business College Latvijas Biznesa Koledža'),
(40004, 'https://ror.org/02zj71846', 'en', 1, 'https://ror.org/02zj71846 Holy Cross University'),
(40005, 'https://ror.org/028yp0d20', 'en', 1, 'https://ror.org/028yp0d20 Cracow School of Health Promotion Krakowska Wyższa Szkoła Promocji Zdrowia'),
(40006, 'https://ror.org/01hkc4630', 'en', 1, 'https://ror.org/01hkc4630 Fachhochschule Erfurt University of Applied Sciences Erfurt'),
(40007, 'https://ror.org/03jn6k846', 'en', 1, 'https://ror.org/03jn6k846 Visoka Poslovna Skola Zagreb Zagreb School of Business'),
(40008, 'https://ror.org/04ac3f410', 'pl', 1, 'https://ror.org/04ac3f410 Gliwicka Wyższa Szkoła Przedsiębiorczości'),
(40009, 'https://ror.org/03cjdzf13', 'en', 1, 'https://ror.org/03cjdzf13 Casa College'),
(40010, 'https://ror.org/00q24dt49', 'en', 1, 'https://ror.org/00q24dt49 Global College'),
(40011, 'https://ror.org/00jdhb158', 'cs', 1, 'https://ror.org/00jdhb158 Film Academy of Miroslav OndÅ™Ć­Äek FilmovĆ” Akademie Miroslava OndÅ™Ć­Äka v PĆ­sku'),
(40012, 'https://ror.org/01svh8112', 'pl', 1, 'https://ror.org/01svh8112 Wyższa Szkoła Bezpieczeństwa i Securities Services w Warszawie'),
(40013, 'https://ror.org/05k8mpr32', 'no_lang_code', 1, 'https://ror.org/05k8mpr32 Smart Separations (United Kingdom)'),
(40014, 'https://ror.org/01esc8r67', 'en', 1, 'https://ror.org/01esc8r67 Hellenic Military Academy Στρατιωτική Σχολή ΕυελπίΓων'),
(40015, 'https://ror.org/05834nb68', 'en', 1, 'https://ror.org/05834nb68 University of Security in Poznań Wyższa Szkoła Bezpieczeństwa w Poznaniu'),
(40016, 'https://ror.org/00996c044', 'en', 1, 'https://ror.org/00996c044 Catholic University of Applied Social Sciences Katholische Hochschule für Sozialwesen Berlin'),
(40017, 'https://ror.org/04vd30725', 'en', 1, 'https://ror.org/04vd30725 Europejska Uczelnia Społeczno-Techniczna w Radomiu Radom Academy of Social and Technical Sciences'),
(40018, 'https://ror.org/053n55597', 'cs', 1, 'https://ror.org/053n55597 Evropský Polytechnický Institut Evropský polytechnický institut'),
(40019, 'https://ror.org/05gjxaj47', 'pl', 1, 'https://ror.org/05gjxaj47 Wyższa Szkoła Nauk Społecznych z Siedzibą w Lublinie'),
(40020, 'https://ror.org/054y8ka78', 'en', 1, 'https://ror.org/054y8ka78 European Polytechnical University Š•Š²Ń€Š¾ŠæŠµŠ¹ŃŠŗŠøŃ политехнически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(40021, 'https://ror.org/00qz2zp29', 'pl', 1, 'https://ror.org/00qz2zp29 Wyższa Szkoła Planowania Strategicznego'),
(40022, 'https://ror.org/03jfnxv58', 'en', 1, 'https://ror.org/03jfnxv58 G. S. Rakovski National Defence College Военна Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š“. Š”. Раковски'),
(40023, 'https://ror.org/03rvrbb45', 'en', 1, 'https://ror.org/03rvrbb45 Higher Ecclesiastical Academy of Athens Ī‘Ī½ĻŽĻ„Ī±Ļ„Ī· Ī•ĪŗĪŗĪ»Ī·ĻƒĪ¹Ī±ĻƒĻ„Ī¹ĪŗĪ® ΑκαΓημία Αθήνας'),
(40024, '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'),
(40025, 'https://ror.org/02em10776', 'en', 1, 'https://ror.org/02em10776 Gdansk School of Higher Education Gdańska Szkoła Wyższa'),
(40026, 'https://ror.org/01x1jeh78', 'en', 1, 'https://ror.org/01x1jeh78 International School of Law and Business Tarptautinė teisės ir verslo aukÅ”toji mokykla'),
(40027, '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'),
(40028, 'https://ror.org/00fwg7016', 'pl', 1, 'https://ror.org/00fwg7016 Gdansk Management College Wyższa Szkoła Zarządzania w Gdańsku'),
(40029, 'https://ror.org/02412rh32', 'sl', 1, 'https://ror.org/02412rh32 ViŔja Strokovna Šola za Gostinstvo in Turizem Maribor'),
(40030, 'https://ror.org/05msvfx67', 'en', 1, 'https://ror.org/05msvfx67 Gedik University Gedik Üniversitesi'),
(40031, 'https://ror.org/02k7q2e66', 'pl', 1, 'https://ror.org/02k7q2e66 Uczelnia Zawodowa Zagłębia Miedziowego w Lubinie'),
(40032, 'https://ror.org/05649x844', 'lt', 1, 'https://ror.org/05649x844 Kauno MiŔku ir Aplinkos Inžinerijos Kolegija'),
(40033, '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'),
(40034, 'https://ror.org/05450rm96', 'en', 1, 'https://ror.org/05450rm96 Kaunas University of Applied Engineering Sciences Kauno technikos kolegijos'),
(40035, 'https://ror.org/01h7vw195', 'en', 1, 'https://ror.org/01h7vw195 Deutsche Hochschule der Polizei German Police University'),
(40036, 'https://ror.org/05fwp8t64', 'de', 1, 'https://ror.org/05fwp8t64 Hochschule der Deutschen Bundesbank'),
(40037, 'https://ror.org/01n3nvq33', 'en', 1, 'https://ror.org/01n3nvq33 Ipek University'),
(40038, 'https://ror.org/02kw9m715', 'pl', 1, 'https://ror.org/02kw9m715 Dolnośląska Wyższa Szkoła Przedsiębiorczości i Techniki w Polkowicach'),
(40039, 'https://ror.org/01nxdaw82', 'en', 1, 'https://ror.org/01nxdaw82 KES College Κολλέγιο ĪšĪ•Ī£'),
(40040, 'https://ror.org/00bav2821', 'en', 1, 'https://ror.org/00bav2821 University Ecclesiastical Academy of Thessaloniki Ī‘Ī½ĻŽĻ„Ī±Ļ„Ī· Ī•ĪŗĪŗĪ»Ī·ĻƒĪ¹Ī±ĻƒĻ„Ī¹ĪŗĪ® ΑκαΓημία Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(40041, 'https://ror.org/02gkfsf47', 'en', 1, 'https://ror.org/02gkfsf47 LUCA School of Arts'),
(40042, 'https://ror.org/03zfxaj88', 'pl', 1, 'https://ror.org/03zfxaj88 Higher School of Humanities in Leszno Wyższa Szkoła Humanistyczna'),
(40043, 'https://ror.org/01bx57d48', 'en', 1, 'https://ror.org/01bx57d48 Higher Institute for Artistic Industries Faenza Istituto Superiore per le Industrie Artistiche'),
(40044, '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'),
(40045, 'https://ror.org/01cb0p019', 'en', 1, 'https://ror.org/01cb0p019 Higher Institute for Artistic Industries Firenze Istituto Superiore per le Industrie Artistiche'),
(40046, 'https://ror.org/00gn1hm60', 'pl', 1, 'https://ror.org/00gn1hm60 GnieÅŗnieńska Szkoła Wyższa Milenium'),
(40047, 'https://ror.org/02ggy9z10', 'en', 1, 'https://ror.org/02ggy9z10 Higher Institute for Artistic Industries Urbino Istituto Superiore per le Industrie Artistiche'),
(40048, 'https://ror.org/0123m2387', 'en', 1, 'https://ror.org/0123m2387 Institute and Academy of Multimedia InŔtitut in Akademija za Multimedije'),
(40049, 'https://ror.org/00vk6ps98', 'en', 1, 'https://ror.org/00vk6ps98 Theatre College Luben Groys Театрален колеж Š›ŃŽŠ±ŠµŠ½ Гройс'),
(40050, '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'),
(40051, 'https://ror.org/02588qx62', 'pl', 1, 'https://ror.org/02588qx62 Wyższa Szkoła Biznesu w Gorzowie Wielkopolskim'),
(40052, 'https://ror.org/00a736592', 'en', 1, 'https://ror.org/00a736592 Design School Kolding Designskolen Kolding'),
(40053, 'https://ror.org/02re32a17', 'en', 1, 'https://ror.org/02re32a17 Hochschule Mainz University of Applied Sciences Mainz'),
(40054, 'https://ror.org/04gd58c86', 'en', 1, 'https://ror.org/04gd58c86 IBA Erhvervsakademi International Business Academy'),
(40055, 'https://ror.org/03jjt5g98', 'en', 1, 'https://ror.org/03jjt5g98 Kolping University of Applied Sciences'),
(40056, 'https://ror.org/000yekt70', 'lv', 1, 'https://ror.org/000yekt70 Malnavas koledža'),
(40057, 'https://ror.org/01n80c364', 'en', 1, 'https://ror.org/01n80c364 Sopocka Szkoła Wyższa Sopot University of Applied Science'),
(40058, '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'),
(40059, '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'),
(40060, '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'),
(40061, 'https://ror.org/015qf5s17', 'en', 1, 'https://ror.org/015qf5s17 Radom College Radomska Szkoła Wyższa'),
(40062, 'https://ror.org/050khj261', 'en', 1, 'https://ror.org/050khj261 Marijampole College Marijampoles Kolejia'),
(40063, 'https://ror.org/04ejbez48', 'en', 1, 'https://ror.org/04ejbez48 Jēkabpils Agrobiznesa Koledža ​​​Jekabpils Agrobusiness College'),
(40064, 'https://ror.org/004481c75', 'pl', 1, 'https://ror.org/004481c75 Academy of Hotel Management and Catering Industry Wyższa Szkoła Hotelarstwa i Gastronomii'),
(40065, 'https://ror.org/01c9ma830', 'en', 1, 'https://ror.org/01c9ma830 LƤƤne-Viru College LƤƤne-Viru RakenduskƵrgkool'),
(40066, 'https://ror.org/053mnhb64', 'en', 1, 'https://ror.org/053mnhb64 University of Finance, Business and Entrepreneurship Š’ŠøŃŃˆŠµ ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ по застраховане Šø финанси'),
(40067, 'https://ror.org/03xws5b35', 'nl', 1, 'https://ror.org/03xws5b35 Marnix Academie'),
(40068, 'https://ror.org/030bm8r25', 'pl', 1, 'https://ror.org/030bm8r25 Uczelnia Jańskiego w Łomży'),
(40069, 'https://ror.org/013cxrg50', 'en', 1, 'https://ror.org/013cxrg50 Larnaca College'),
(40070, 'https://ror.org/045t45114', 'pl', 1, 'https://ror.org/045t45114 Wyższa Szkoła Zarządzania Środowiskiem w Tucholi'),
(40071, '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'),
(40072, 'https://ror.org/024gf7f83', 'en', 1, 'https://ror.org/024gf7f83 Međimursko VeleučiliÅ”te u Čakovcu Polytechnic of Međimurje in Čakovec'),
(40073, 'https://ror.org/016kfbw71', 'en', 1, 'https://ror.org/016kfbw71 MEF International School'),
(40074, 'https://ror.org/051fr2332', 'en', 1, 'https://ror.org/051fr2332 Institute of Structural Macrokinetics and Materials Science Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€Š½Š¾Š¹ макрокинетики Šø проблем Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(40075, 'https://ror.org/0379sy433', 'en', 1, 'https://ror.org/0379sy433 Energy Research Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований Российской акаГемии наук'),
(40076, 'https://ror.org/059hj0296', 'it', 1, 'https://ror.org/059hj0296 Conservatorio Statale di Musica Nicola Sala - Benevento'),
(40077, 'https://ror.org/0546v0856', 'cs', 1, 'https://ror.org/0546v0856 Karel Englis College VysokÔ Ŕkola Karla EngliŔe'),
(40078, 'https://ror.org/04cdzwd37', 'en', 1, 'https://ror.org/04cdzwd37 Merchant Marine Academy ΑκαΓημίες Ī•Ī¼Ļ€ĪæĻĪ¹ĪŗĪæĻ ĪĪ±Ļ…Ļ„Ī¹ĪŗĪæĻ'),
(40079, 'https://ror.org/05w57eq63', 'pl', 1, 'https://ror.org/05w57eq63 Kaszubsko-Pomorska Szkoła Wyższa'),
(40080, 'https://ror.org/02fnn6t22', 'it', 1, 'https://ror.org/02fnn6t22 Conservatorio di Musica "G.B. Martini"'),
(40081, 'https://ror.org/03pqf0084', 'en', 1, 'https://ror.org/03pqf0084 Geschichte des Internationalen Hochschulinstituts (IHI) Zittau International University Institute');
INSERT INTO `rors` VALUES
(40082, 'https://ror.org/00ewfne71', 'en', 1, 'https://ror.org/00ewfne71 Metropolitan University Univerzitet Metropolitan'),
(40083, 'https://ror.org/019yfxm71', 'it', 1, 'https://ror.org/019yfxm71 Conservatorio di Musica Nino Rota'),
(40084, 'https://ror.org/041ws6x07', 'it', 1, 'https://ror.org/041ws6x07 Istituto di Alta Formazione Musicale Conservatorio "Claudio Monteverdi"'),
(40085, 'https://ror.org/01pysaw17', 'it', 1, 'https://ror.org/01pysaw17 Conservatorio di Musica "Luca Marenzio"'),
(40086, 'https://ror.org/03ywbpv23', 'it', 1, 'https://ror.org/03ywbpv23 Conservatorio di Musica Pierluigi da Palestrina'),
(40087, 'https://ror.org/04jdsqj08', 'pl', 1, 'https://ror.org/04jdsqj08 Wyższa Szkoła Pedagogiki i Administracji im. Mieszka I w Poznaniu'),
(40088, 'https://ror.org/0286fq017', 'it', 1, 'https://ror.org/0286fq017 Conservatorio di Musica San Pietro a Majella'),
(40089, 'https://ror.org/03n0s6k02', 'it', 1, 'https://ror.org/03n0s6k02 Conservatorio di Musica Lorenzo Perosi'),
(40090, 'https://ror.org/049h22071', 'en', 1, 'https://ror.org/049h22071 Arte Institute'),
(40091, 'https://ror.org/01tqmsq19', 'en', 1, 'https://ror.org/01tqmsq19 Academia Tehnică Militară Military Technical Academy'),
(40092, 'https://ror.org/002vdk888', 'it', 1, 'https://ror.org/002vdk888 Conservatorio di Musica Agostino Steffani'),
(40093, 'https://ror.org/01azrym08', 'en', 1, 'https://ror.org/01azrym08 M.N. Mikheev Institute of Metal Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики металлов имени М.Š. ŠœŠøŃ…ŠµŠµŠ²Š° Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(40094, 'https://ror.org/05hfa9864', 'it', 1, 'https://ror.org/05hfa9864 Conservatorio Guido Cantelli di Novara'),
(40095, 'https://ror.org/01ktrdf59', 'it', 1, 'https://ror.org/01ktrdf59 Conservatorio di Musica Cesare Pollini'),
(40096, 'https://ror.org/03pbxrn39', 'it', 1, 'https://ror.org/03pbxrn39 Conservatorio di Musica "Giuseppe Verdi"'),
(40097, 'https://ror.org/0149fbq67', 'it', 1, 'https://ror.org/0149fbq67 Conservatorio Statale di Musica A. Buzzolla'),
(40098, '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'),
(40099, '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'),
(40100, 'https://ror.org/05gd3g169', 'it', 1, 'https://ror.org/05gd3g169 Conservatorio di Musica Stanislao Giacomantonio'),
(40101, 'https://ror.org/00ermve21', 'en', 1, 'https://ror.org/00ermve21 Conservatorio Antonio Vivaldi Conservatorio Di Musica A. Vivaldi'),
(40102, 'https://ror.org/048mbp462', 'en', 1, 'https://ror.org/048mbp462 Community of Professional Sociologists Дообщество ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… социологов'),
(40103, 'https://ror.org/00ym2nt63', 'it', 1, 'https://ror.org/00ym2nt63 Conservatorio di Musica G.F. Ghedini'),
(40104, 'https://ror.org/03hmgxr98', 'en', 1, 'https://ror.org/03hmgxr98 Lietuvos aukstoji jureivystes mokykla Lithuanian Maritime Academy'),
(40105, 'https://ror.org/01p7e9s80', 'it', 1, 'https://ror.org/01p7e9s80 Conservatorio Statale di Musica Domenico Cimarosa di Avellino'),
(40106, 'https://ror.org/007hhp583', 'it', 1, 'https://ror.org/007hhp583 Conservatorio di Musica Arrigo Boito'),
(40107, 'https://ror.org/059gb4y29', 'it', 1, 'https://ror.org/059gb4y29 Conservatorio di Musica N. Piccinni Conservatory of Bari'),
(40108, 'https://ror.org/0022sh211', 'it', 1, 'https://ror.org/0022sh211 Conservatorio di Musica Giovambattista Pergolesi'),
(40109, 'https://ror.org/02zcvj403', 'it', 1, 'https://ror.org/02zcvj403 Conservatorio di Musica Girolamo Frescobaldi'),
(40110, 'https://ror.org/02zkr7r20', 'it', 1, 'https://ror.org/02zkr7r20 Conservatorio di Musica Luigi Cherubini'),
(40111, 'https://ror.org/05sxd9d78', 'it', 1, 'https://ror.org/05sxd9d78 Conservatorio di Musica di Perugia'),
(40112, 'https://ror.org/04r9pgh69', 'en', 1, 'https://ror.org/04r9pgh69 Private College of Economic Studies Znojmo SoukromĆ” VysokĆ” Skola EkonomickĆ” Znojmo'),
(40113, 'https://ror.org/0096pt020', 'it', 1, 'https://ror.org/0096pt020 Conservatorio Statale di Musica Gioachino Rossini'),
(40114, 'https://ror.org/01xtfrw48', 'it', 1, 'https://ror.org/01xtfrw48 Conservatorio di Musica Umberto Giordano'),
(40115, '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'),
(40116, 'https://ror.org/02exn6h14', 'it', 1, 'https://ror.org/02exn6h14 Conservatorio di Musica Licinio Refice'),
(40117, 'https://ror.org/033n2z030', 'it', 1, 'https://ror.org/033n2z030 Conservatorio di Musica Niccolò Paganini'),
(40118, 'https://ror.org/04p175r34', 'it', 1, 'https://ror.org/04p175r34 Conservatorio statale di Musica Alfredo Casella'),
(40119, 'https://ror.org/05j03hp45', 'en', 1, 'https://ror.org/05j03hp45 Panevėžys College'),
(40120, 'https://ror.org/031gd3q51', 'it', 1, 'https://ror.org/031gd3q51 Conservatorio di Musica Giacomo Puccini'),
(40121, 'https://ror.org/00r8emz85', 'it', 1, 'https://ror.org/00r8emz85 Conservatorio di Musica Carlo Gesualdo da Venosa Potenza'),
(40122, 'https://ror.org/045975y75', 'it', 1, 'https://ror.org/045975y75 Conservatorio di Musica Francesco Cilea'),
(40123, 'https://ror.org/04rkgm763', 'it', 1, 'https://ror.org/04rkgm763 Conservatorio di Musica Ottorino Respighi'),
(40124, 'https://ror.org/03mm0f366', 'da', 1, 'https://ror.org/03mm0f366 Kriminalforsorgen'),
(40125, 'https://ror.org/02z1v3h34', 'en', 1, 'https://ror.org/02z1v3h34 Pawel Wlodkowic University College in Płock Szkola Wyzsza im. Pawla Wlodkowica w Plocku'),
(40126, 'https://ror.org/03t9v7a05', 'it', 1, 'https://ror.org/03t9v7a05 Conservatorio di Musica Tito Schipa'),
(40127, 'https://ror.org/026hvzx79', 'it', 1, 'https://ror.org/026hvzx79 Conservatorio di Musica ''Francesco Venezze'' di Rovigo'),
(40128, 'https://ror.org/03ax4bc53', 'en', 1, 'https://ror.org/03ax4bc53 Conservatorio di Musica "Lucio Campiani" Music Conservatory of Mantova'),
(40129, 'https://ror.org/01h0gdq60', 'it', 1, 'https://ror.org/01h0gdq60 Conservatorio di Musica G. Martucci'),
(40130, 'https://ror.org/01etzjr60', 'it', 1, 'https://ror.org/01etzjr60 Conservatorio di Musica Luigi Canepa'),
(40131, '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'),
(40132, 'https://ror.org/04er5hw95', 'it', 1, 'https://ror.org/04er5hw95 Conservatorio di Musica Egidio R. Duni'),
(40133, 'https://ror.org/05yamzm60', 'en', 1, 'https://ror.org/05yamzm60 Lietuvos Verslo Kolegija Lithuania Business University of Applied Science'),
(40134, 'https://ror.org/03pwnpf38', 'it', 1, 'https://ror.org/03pwnpf38 Conservatorio State Di Musica Giuseppe Verdi'),
(40135, 'https://ror.org/02jk0vd24', 'it', 1, 'https://ror.org/02jk0vd24 Conservatorio di Musica Giuseppe Verdi'),
(40136, 'https://ror.org/04ce52x58', 'it', 1, 'https://ror.org/04ce52x58 Conservatorio di Musica Antonio Scontrino Trapani'),
(40137, 'https://ror.org/02mfyea49', 'en', 1, 'https://ror.org/02mfyea49 Radom Academy of Economics Wyższa Szkoła Handlowa w Radomiu'),
(40138, 'https://ror.org/02bxn5a88', 'it', 1, 'https://ror.org/02bxn5a88 Conservatorio di Musica FA Bonporti Trento'),
(40139, 'https://ror.org/04wnmck86', 'sl', 1, 'https://ror.org/04wnmck86 Šolski Center za PoŔto, Ekonomijo in Telekomunikacije'),
(40140, 'https://ror.org/030bz9353', 'sl', 1, 'https://ror.org/030bz9353 Å olski Center Postojna'),
(40141, 'https://ror.org/04yddv436', 'it', 1, 'https://ror.org/04yddv436 Conservatorio Statale di Musica Jacopo Tomadini Udine'),
(40142, 'https://ror.org/04mrtf838', 'pl', 1, 'https://ror.org/04mrtf838 Staropolska Szkoła Wyższa w Kielcach'),
(40143, 'https://ror.org/05y5g2a51', 'en', 1, 'https://ror.org/05y5g2a51 Northern Lithuania College Šiaurės Lietuvos kolegija'),
(40144, 'https://ror.org/05qej6276', 'en', 1, 'https://ror.org/05qej6276 Hellenic Police Academy Ī‘ĻƒĻ„Ļ…Ī½ĪæĪ¼Ī¹ĪŗĪ® ΑκαΓημία'),
(40145, 'https://ror.org/02akkm420', 'en', 1, 'https://ror.org/02akkm420 Institute of Automation and Control Processes Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø процессов ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(40146, 'https://ror.org/03vz3qc29', 'en', 1, 'https://ror.org/03vz3qc29 Evangelische Hochschule Rheinland-Westfalen-Lippe Protestant University of Applied Sciences Rhineland-Westphalia-Lippe'),
(40147, 'https://ror.org/03p6h3k49', 'en', 1, 'https://ror.org/03p6h3k49 Police Academy Polis Akademisi'),
(40148, 'https://ror.org/05xgx1b08', 'en', 1, 'https://ror.org/05xgx1b08 Riga Building College Rīgas Celtniecības koledža'),
(40149, 'https://ror.org/04k70g465', 'it', 1, 'https://ror.org/04k70g465 Conservatorio di Musica Benedetto Marcello di Venezia'),
(40150, 'https://ror.org/01v59d868', 'sl', 1, 'https://ror.org/01v59d868 Å olski Center Å entjur'),
(40151, 'https://ror.org/00da5h096', 'sl', 1, 'https://ror.org/00da5h096 Å olski Center Å kofja Loka'),
(40152, 'https://ror.org/03af57g89', 'it', 1, 'https://ror.org/03af57g89 Conservatorio di Verona Evaristo Felice Dall Abaco'),
(40153, 'https://ror.org/036zvka13', 'en', 1, 'https://ror.org/036zvka13 Riga Technical College Rigas Tehniska Koledza'),
(40154, 'https://ror.org/05b7xvc63', 'en', 1, 'https://ror.org/05b7xvc63 Hochschule für Musik Nürnberg Nuremberg University of Music'),
(40155, 'https://ror.org/00r1gaq76', 'it', 1, 'https://ror.org/00r1gaq76 Conservatorio Torrefranca Vibo Valentia'),
(40156, 'https://ror.org/020s1wt84', 'en', 1, 'https://ror.org/020s1wt84 Conservatorio Di Musica di Vicenza Conservatory of Vicenza'),
(40157, 'https://ror.org/05kknxr83', 'en', 1, 'https://ror.org/05kknxr83 Department of Energy, Engineering, Mechanics and Control Processes Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… проблем химической физики'),
(40158, 'https://ror.org/059tqvg48', 'en', 1, 'https://ror.org/059tqvg48 Department of Chemistry and Material Sciences'),
(40159, 'https://ror.org/0218eta95', 'en', 1, 'https://ror.org/0218eta95 Department of Physiological Sciences'),
(40160, 'https://ror.org/01twn9665', 'en', 1, 'https://ror.org/01twn9665 Department of Social Sciences'),
(40161, 'https://ror.org/021eek248', 'en', 1, 'https://ror.org/021eek248 Department of Global Issues and International Relations'),
(40162, 'https://ror.org/02ae4g054', 'en', 1, 'https://ror.org/02ae4g054 Division of Historical and Philological Sciences'),
(40163, 'https://ror.org/05wtp9w08', 'en', 1, 'https://ror.org/05wtp9w08 Department of Agricultural Sciences'),
(40164, 'https://ror.org/030sdwr92', 'en', 1, 'https://ror.org/030sdwr92 Hochschule für Gestaltung Offenbach University of Art and Design Offenbach'),
(40165, 'https://ror.org/03z86v888', 'sl', 1, 'https://ror.org/03z86v888 Å olski center Slovenj Gradec'),
(40166, 'https://ror.org/02jr12631', 'sl', 1, 'https://ror.org/02jr12631 Å olski Center Velenje'),
(40167, 'https://ror.org/02b61re56', 'hr', 1, 'https://ror.org/02b61re56 VeleučiliÅ”te "Nikola Tesla" u Gospiću'),
(40168, 'https://ror.org/02rwycx38', 'en', 1, 'https://ror.org/02rwycx38 San Raffaele University of Rome UniversitĆ  telematica San Raffaele'),
(40169, 'https://ror.org/03p5txy82', 'en', 1, 'https://ror.org/03p5txy82 Celje School of Economics Ekonomska Å ola Celje'),
(40170, 'https://ror.org/02zxpkz02', 'sl', 1, 'https://ror.org/02zxpkz02 School Centre Celje Å olski center Celje'),
(40171, 'https://ror.org/04q2mdb48', 'sl', 1, 'https://ror.org/04q2mdb48 Ekonomska Å ola Murska Sobota'),
(40172, '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'),
(40173, 'https://ror.org/059qxwv46', 'en', 1, 'https://ror.org/059qxwv46 Kranj School Centre Å olski center Kranj'),
(40174, 'https://ror.org/002b21721', 'pl', 1, 'https://ror.org/002b21721 Państwowa Wyższa Szkoła Zawodowa w Ciechanowie'),
(40175, 'https://ror.org/053wngn77', 'sl', 1, 'https://ror.org/053wngn77 TehniŔki Solski Center Maribor'),
(40176, 'https://ror.org/02dd2e850', 'en', 1, 'https://ror.org/02dd2e850 School Centre Nova Gorica Å olski center Nova Gorica'),
(40177, 'https://ror.org/04zkp0k73', 'en', 1, 'https://ror.org/04zkp0k73 State Police College Valsts Policijas Koledza'),
(40178, 'https://ror.org/038gsqt29', 'hr', 1, 'https://ror.org/038gsqt29 Visoka Å kola za Informacijske Tehnologije Zagreb'),
(40179, 'https://ror.org/03cps2823', 'pl', 1, 'https://ror.org/03cps2823 Wielkopolska Wyższa Szkoła Społeczno-Ekonomiczna'),
(40180, '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'),
(40181, 'https://ror.org/01w44h058', 'en', 1, 'https://ror.org/01w44h058 Tartu Academy of Theology Tartu Teoloogia Akadeemia'),
(40182, 'https://ror.org/049h8sz96', 'pl', 1, 'https://ror.org/049h8sz96 Wyższa Szkoła Humanistyczno-Przyrodnicza w Sandomierzu'),
(40183, 'https://ror.org/05hez5t42', 'en', 1, 'https://ror.org/05hez5t42 Süleyman Şah University Süleyman Şah Üniversitesi'),
(40184, 'https://ror.org/02vfz9j23', 'en', 1, 'https://ror.org/02vfz9j23 Forsvarets HĆøgskoler Norwegian Defence University College'),
(40185, 'https://ror.org/04z58j690', 'en', 1, 'https://ror.org/04z58j690 Polytechnic Pula'),
(40186, 'https://ror.org/02re25503', 'en', 1, 'https://ror.org/02re25503 Westerdals Oslo School of Arts, Communication and Technology'),
(40187, 'https://ror.org/03ed9w591', 'en', 1, 'https://ror.org/03ed9w591 Technological Educational Institute of Central Greece Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Στερεάς ΕλλάΓας'),
(40188, 'https://ror.org/017bbc354', 'de', 1, 'https://ror.org/017bbc354 Turkish-German University Türk-Alman Üniversitesi Türkisch-Deutsche Universität'),
(40189, 'https://ror.org/04fydbf11', 'en', 1, 'https://ror.org/04fydbf11 Instituto Superior de Gestão BancÔria Portuguese School of Bank Management'),
(40190, 'https://ror.org/034qvhk73', 'en', 1, 'https://ror.org/034qvhk73 Social Integration State Agency Sociālās Integrācijas Valsts Aģentūrā'),
(40191, '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'),
(40192, 'https://ror.org/01e2z0p13', 'cs', 1, 'https://ror.org/01e2z0p13 VysokĆ” Å kola SociĆ”lně SprĆ”vnĆ­'),
(40193, 'https://ror.org/01mw24p94', 'en', 1, 'https://ror.org/01mw24p94 Technological Educational Institute of Central Macedonia ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ®Ļ‚ ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(40194, 'https://ror.org/019w4be96', 'hr', 1, 'https://ror.org/019w4be96 Police Academy Policijska akademija'),
(40195, 'https://ror.org/01prjcc04', 'en', 1, 'https://ror.org/01prjcc04 SRH Hochschule Berlin SRH University Berlin'),
(40196, 'https://ror.org/00g07sz63', 'de', 1, 'https://ror.org/00g07sz63 SRH Hochschule Heidelberg'),
(40197, 'https://ror.org/026kenw55', 'de', 1, 'https://ror.org/026kenw55 SRH Hochschule für Gesundheit Gera'),
(40198, 'https://ror.org/04fxab197', 'en', 1, 'https://ror.org/04fxab197 Natural Science and Technical Academy Isny Naturwissenschaftlich-Technische Akademie Isny'),
(40199, 'https://ror.org/015455k47', 'en', 1, 'https://ror.org/015455k47 KƵrgem Usuteaduslik Seminar Tartu Theological Seminary'),
(40200, 'https://ror.org/04ffw0491', 'en', 1, 'https://ror.org/04ffw0491 Artevelde University College Ghent'),
(40201, 'https://ror.org/021f61w41', 'en', 1, 'https://ror.org/021f61w41 Lübeck Academy of Music Musikhochschule Lübeck'),
(40202, 'https://ror.org/01eajxh73', 'en', 1, 'https://ror.org/01eajxh73 Hochschule für Agrar- und Umweltpädagogik University College for Agrarian and Environmental Pedagogy'),
(40203, 'https://ror.org/029r33q13', 'de', 1, 'https://ror.org/029r33q13 Hochschule für Musik Saar'),
(40204, 'https://ror.org/04bgn1297', 'en', 1, 'https://ror.org/04bgn1297 Higher School of Agribusiness Wyższa Szkoła Agrobiznesu w Łomży Š’Ń‹ŃŃˆŠ°Ń Школа Агробизнеса в Ломже'),
(40205, 'https://ror.org/05m1pqv80', 'en', 1, 'https://ror.org/05m1pqv80 Hochschule für Musik Würzburg University of Music Würzburg'),
(40206, 'https://ror.org/03cmq3458', 'de', 1, 'https://ror.org/03cmq3458 PƤdagogische Hochschule Viktor Frankl Hochschule University College of Teacher Education Carinthia'),
(40207, 'https://ror.org/00my0bv27', 'en', 1, 'https://ror.org/00my0bv27 Baltic Psychology and Management University College Baltijas PsiholoÄ£ijas un Menedžmenta Augstskola Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń ŠŸŃŠøŃ…Š¾Š»Š¾Š³ŠøŃ Šø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента'),
(40208, 'https://ror.org/00g11es29', 'en', 1, 'https://ror.org/00g11es29 SMK University of Applied Social Sciences Socialiniu mokslu kolegija'),
(40209, 'https://ror.org/05nrjb178', 'nl', 1, 'https://ror.org/05nrjb178 Katholieke Pabo Zwolle University of Professional Teacher Education PABO Zwolle'),
(40210, 'https://ror.org/01wcw8667', 'pl', 1, 'https://ror.org/01wcw8667 Wyższa Szkoła Przedsiębiorczości i Marketingu w Chrzanowie'),
(40211, 'https://ror.org/02832sw36', 'en', 1, 'https://ror.org/02832sw36 Staatliche Hochschule für Musik Trossingen Trossingen University of Music'),
(40212, 'https://ror.org/01c4qa656', 'en', 1, 'https://ror.org/01c4qa656 Bydgoska Szkoła Wyższa University of Bydgoszcz'),
(40213, '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'),
(40214, 'https://ror.org/0203q4h88', 'en', 1, 'https://ror.org/0203q4h88 Georgia Christian University'),
(40215, 'https://ror.org/05973tj24', 'cs', 1, 'https://ror.org/05973tj24 VysokƔ Skola AplikovanƩho PrƔva'),
(40216, 'https://ror.org/040gs8e06', 'de', 1, 'https://ror.org/040gs8e06 Haute Ɖcole PĆ©dagogique du Valais PƤdagogische Hochschule Wallis'),
(40217, 'https://ror.org/026c3xn33', 'en', 1, 'https://ror.org/026c3xn33 Hochschule der Wirtschaft für Management University of Applied Management Studies'),
(40218, 'https://ror.org/040zb1w28', 'en', 1, 'https://ror.org/040zb1w28 Eesti Infotehnoloogia Kolledž Estonian Information Technology College'),
(40219, 'https://ror.org/038fwdn76', 'en', 1, 'https://ror.org/038fwdn76 Hochschule für Angewandtes Management University of Applied Management'),
(40220, 'https://ror.org/01bvm0h13', 'fr', 1, 'https://ror.org/01bvm0h13 Haute Ɖcole PĆ©dagogique du Canton de Vaud'),
(40221, 'https://ror.org/0219t5m94', 'en', 1, 'https://ror.org/0219t5m94 Vilniaus Verslo Kolegija Vilnius Business College'),
(40222, 'https://ror.org/02hy76n39', 'en', 1, 'https://ror.org/02hy76n39 Vilniaus Kooperacijos Kolegija Vilnius Cooperative College'),
(40223, 'https://ror.org/004gnah66', 'en', 1, 'https://ror.org/004gnah66 Vilniaus Kolegija Vilnius University of Applied Sciences'),
(40224, 'https://ror.org/01wx0d888', 'de', 1, 'https://ror.org/01wx0d888 Fachhochschule für Management & Kommunikation'),
(40225, 'https://ror.org/052f72b28', 'en', 1, 'https://ror.org/052f72b28 Vilniaus Dizaino Kolegija Vilnius College of Design'),
(40226, 'https://ror.org/00tnby758', 'lt', 1, 'https://ror.org/00tnby758 V. A. Graičiūno AukŔtoji Vadybos Mokykla'),
(40227, 'https://ror.org/020hkyk57', 'en', 1, 'https://ror.org/020hkyk57 Vilniaus technologijų ir dizaino kolegija Vilnius College of Technologies and Design'),
(40228, 'https://ror.org/02d290x88', 'de', 1, 'https://ror.org/02d290x88 PƤdagogische Hochschule Burgenland University of Education in Burgenland'),
(40229, 'https://ror.org/019y81x83', 'pl', 1, 'https://ror.org/019y81x83 Szczecińska Szkoła Wyższa Collegium Balticum'),
(40230, 'https://ror.org/01k5x5w08', 'en', 1, 'https://ror.org/01k5x5w08 VƵru County Vocational Training Centre VƵrumaa Kutsehariduskeskus'),
(40231, 'https://ror.org/00vcnds94', 'de', 1, 'https://ror.org/00vcnds94 Philosophisch-Theologische Hochschule Benediktbeuern'),
(40232, 'https://ror.org/038svqn12', 'pl', 1, 'https://ror.org/038svqn12 Wyższa Szkoła Zarządzania i Przedsiębiorczości'),
(40233, 'https://ror.org/01ej3e061', 'de', 1, 'https://ror.org/01ej3e061 Philosophisch-Theologische Hochschule SVD St. Augustin'),
(40234, 'https://ror.org/01kdhhd16', 'en', 1, 'https://ror.org/01kdhhd16 Brussels Management School'),
(40235, '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'),
(40236, 'https://ror.org/02hdve317', 'en', 1, 'https://ror.org/02hdve317 Academy of Fine Arts Karlsruhe Staatliche Akademie der Bildenden Künste Karlsruhe'),
(40237, 'https://ror.org/007cpvh39', 'fr', 1, 'https://ror.org/007cpvh39 Haute Ɖcole en Hainaut'),
(40238, 'https://ror.org/04pjj9g71', 'en', 1, 'https://ror.org/04pjj9g71 Warsaw Management University Wyższa Szkoła Menedżerska'),
(40239, 'https://ror.org/05w9pqd22', 'en', 1, 'https://ror.org/05w9pqd22 Yeshiva Derech Chaim'),
(40240, 'https://ror.org/044rf5p19', 'en', 1, 'https://ror.org/044rf5p19 Academy of Fine Arts Munich Akademie der Bildenden Künste München'),
(40241, 'https://ror.org/03bthq143', 'en', 1, 'https://ror.org/03bthq143 Fachhochschule Westküste West Coast University of Applied Sciences'),
(40242, 'https://ror.org/00rmfhk22', 'en', 1, 'https://ror.org/00rmfhk22 Cuiavian University Kujawska Szkoła Wyższa we Włocławku'),
(40243, 'https://ror.org/03n0qtw28', 'cs', 1, 'https://ror.org/03n0qtw28 Westmoravian College Třebƭč ZĆ”padomoravskĆ” vysokĆ” Å”kola Třebƭč'),
(40244, 'https://ror.org/00zbhen47', 'de', 1, 'https://ror.org/00zbhen47 Berlin-Weissensee Art Academy Kunsthochschule Berlin-Weißensee'),
(40245, 'https://ror.org/03py54049', 'en', 1, 'https://ror.org/03py54049 Ernst Busch Academy of Dramatic Arts Hochschule für Schauspielkunst Ernst Busch'),
(40246, 'https://ror.org/01rhp6n73', 'en', 1, 'https://ror.org/01rhp6n73 Erhvervsakademi SjƦlland Zealand Institute of Business and Technology'),
(40247, 'https://ror.org/00a7fhh63', 'no_lang_code', 1, 'https://ror.org/00a7fhh63 Zlatarna Celje (Slovenia)'),
(40248, 'https://ror.org/03kmar131', 'fr', 1, 'https://ror.org/03kmar131 Haute Ɖcole de la Province de LiĆØge'),
(40249, 'https://ror.org/040dxjz28', 'de', 1, 'https://ror.org/040dxjz28 Fachhochschule für öffentliche Verwaltung, Polizei und Rechtspflege des Landes Mecklenburg-Vorpommern'),
(40250, 'https://ror.org/02h3vgm10', 'en', 1, 'https://ror.org/02h3vgm10 Zemaitija College Žemaitijos Kolegija'),
(40251, 'https://ror.org/02k7ygp86', 'fr', 1, 'https://ror.org/02k7ygp86 AcadƩmie des Beaux-Arts de Tournai'),
(40252, 'https://ror.org/05ghhx264', 'en', 1, 'https://ror.org/05ghhx264 PƤdagogische Hochschule Zug University of Teacher Education Zug'),
(40253, 'https://ror.org/0200zrw72', 'fr', 1, 'https://ror.org/0200zrw72 AcadƩmie Royale des Beaux-Arts Koninklijke Academie voor Schone Kunsten van Brussel'),
(40254, 'https://ror.org/04z03cz64', 'de', 1, 'https://ror.org/04z03cz64 Hochschule der Bildenden Künste Saar'),
(40255, 'https://ror.org/02743t710', 'de', 1, 'https://ror.org/02743t710 Norddeutsche Hochschule für Rechtspflege'),
(40256, 'https://ror.org/01k0y5630', 'fr', 1, 'https://ror.org/01k0y5630 Académie Royale des Beaux-Arts de Liège'),
(40257, 'https://ror.org/02g11qe83', 'de', 1, 'https://ror.org/02g11qe83 Fachhochschule für Rechtspflege Nordrhein Westfalen'),
(40258, 'https://ror.org/0572yc306', 'de', 1, 'https://ror.org/0572yc306 SRH Hochschule für Wirtschaft und Medien Calw'),
(40259, 'https://ror.org/04tr4sk76', 'de', 1, 'https://ror.org/04tr4sk76 Fachhochschule für Finanzen Nordrhein Westfalen'),
(40260, 'https://ror.org/04j1sr579', 'de', 1, 'https://ror.org/04j1sr579 Hochschule für Gesundheit & Sport, Technik & Kunst'),
(40261, 'https://ror.org/01d4n6n22', 'de', 1, 'https://ror.org/01d4n6n22 Hochschule für Kunsttherapie Nürtingen'),
(40262, 'https://ror.org/01zb1m871', 'en', 1, 'https://ror.org/01zb1m871 Conservatoire Royal de LiĆØge Koninklijk Conservatorium Luik Royal Conservatory of LiĆØge'),
(40263, 'https://ror.org/035ckv436', 'hr', 1, 'https://ror.org/035ckv436 Fakultet za Mediteranske Poslovne Studije'),
(40264, 'https://ror.org/01jq1mc68', 'hr', 1, 'https://ror.org/01jq1mc68 Fakultet za menadžment Herceg Novi'),
(40265, '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'),
(40266, 'https://ror.org/03ba15j53', 'fr', 1, 'https://ror.org/03ba15j53 Ɖcole de Recherche Graphique'),
(40267, 'https://ror.org/0530gbs37', 'de', 1, 'https://ror.org/0530gbs37 IB Hochschule'),
(40268, 'https://ror.org/05d6z1532', 'de', 1, 'https://ror.org/05d6z1532 Hochschule für Finanzen Rheinland Pfalz'),
(40269, 'https://ror.org/00y3r0391', 'fr', 1, 'https://ror.org/00y3r0391 La Cambre'),
(40270, 'https://ror.org/02e5n0e79', 'de', 1, 'https://ror.org/02e5n0e79 AMD Academy of Fashion and Design Akademie Mode & Design'),
(40271, 'https://ror.org/02a8wk986', 'en', 1, 'https://ror.org/02a8wk986 AKAD University'),
(40272, 'https://ror.org/05ez1q344', 'fr', 1, 'https://ror.org/05ez1q344 Ɖcole SupĆ©rieure des Arts de l''Image Le 75'),
(40273, 'https://ror.org/0167r2g29', 'de', 1, 'https://ror.org/0167r2g29 Merz Akademie'),
(40274, 'https://ror.org/0243j3z07', 'de', 1, 'https://ror.org/0243j3z07 European Fernhochschule Hamburg EuropƤische Fernhochschule Hamburg'),
(40275, 'https://ror.org/04580fn28', 'de', 1, 'https://ror.org/04580fn28 Hamburger Fern-Hochschule'),
(40276, 'https://ror.org/02zwsc421', 'fr', 1, 'https://ror.org/02zwsc421 Ɖcole SupĆ©rieure des Arts Saint-Luc de LiĆØge'),
(40277, 'https://ror.org/033hftr56', 'pl', 1, 'https://ror.org/033hftr56 Wyższa Szkoła Zdrowia Urody i Edukacji'),
(40278, 'https://ror.org/05xxykr42', 'pl', 1, 'https://ror.org/05xxykr42 Toruńska Wyższa Szkoła Przedsiębiorczości'),
(40279, 'https://ror.org/01qhsr268', 'fr', 1, 'https://ror.org/01qhsr268 Institut des Arts de Diffusion'),
(40280, 'https://ror.org/01eyhzm47', 'de', 1, 'https://ror.org/01eyhzm47 Fachhochschule für Verwaltung des Saarlandes'),
(40281, 'https://ror.org/03waye253', 'de', 1, 'https://ror.org/03waye253 Fachhochschule der Sächsischen Verwaltung Meißen'),
(40282, 'https://ror.org/0578r5v59', 'fr', 1, 'https://ror.org/0578r5v59 Institut National SupƩrieur des Arts du Spectacle et des Techniques de Diffusion'),
(40283, 'https://ror.org/01hr7tp17', 'fr', 1, 'https://ror.org/01hr7tp17 Institut SupƩrieur de Musique et de PƩdagogie'),
(40284, 'https://ror.org/01qjbb734', 'en', 1, 'https://ror.org/01qjbb734 Hochschule der SƤchsischen Polizei Saxon Police Force'),
(40285, 'https://ror.org/015a98c38', 'de', 1, 'https://ror.org/015a98c38 Accadis Hochschule Bad Homburg'),
(40286, 'https://ror.org/03azwf096', 'fr', 1, 'https://ror.org/03azwf096 Ɖcole d''Enseignement SupĆ©rieur d''Art de Bordeaux'),
(40287, 'https://ror.org/00tf9x563', 'en', 1, 'https://ror.org/00tf9x563 Arts²'),
(40288, 'https://ror.org/04bf6dq94', 'en', 1, 'https://ror.org/04bf6dq94 PƤdagogische Hochschule Thurgau Thurgau University of Teacher Education'),
(40289, 'https://ror.org/00vkbtf98', 'de', 1, 'https://ror.org/00vkbtf98 Wilhelm Büchner Hochschule'),
(40290, 'https://ror.org/05aemnj50', 'ro', 1, 'https://ror.org/05aemnj50 Universitatea Avram Iancu'),
(40291, 'https://ror.org/01gm0md04', 'en', 1, 'https://ror.org/01gm0md04 Provadis Hochschule Provadis School of International Management and Technology'),
(40292, 'https://ror.org/04mvanw22', 'en', 1, 'https://ror.org/04mvanw22 Fachhochschule Polizei Sachsen-Anhalt University of Applied Police Sciences Saxony Anhalt'),
(40293, 'https://ror.org/051rc7j94', 'de', 1, 'https://ror.org/051rc7j94 Diploma Hochschule Diploma University'),
(40294, 'https://ror.org/003xt6d81', 'de', 1, 'https://ror.org/003xt6d81 Fachhochschule für Verwaltung und Dienstleistung'),
(40295, 'https://ror.org/04sv11p30', 'fr', 1, 'https://ror.org/04sv11p30 Haute Ɖcole de la Province de Namur'),
(40296, 'https://ror.org/04eghjs57', 'fr', 1, 'https://ror.org/04eghjs57 Ɖcole Nationale SupĆ©rieure d''Architecture de Bretagne'),
(40297, 'https://ror.org/03y37ca41', 'fr', 1, 'https://ror.org/03y37ca41 Haute Ɖcole de la Ville de LiĆØge'),
(40298, 'https://ror.org/035xrsk97', 'fr', 1, 'https://ror.org/035xrsk97 Institut RĆ©gional d’Administration de Lille'),
(40299, 'https://ror.org/05fj0ng27', 'fr', 1, 'https://ror.org/05fj0ng27 Ɖcole Pratique des Hautes Ɖtudes Commerciales'),
(40300, 'https://ror.org/027jqwm11', 'fr', 1, 'https://ror.org/027jqwm11 Haute Ɖcole Francisco Ferrer'),
(40301, 'https://ror.org/04rw0w260', 'fr', 1, 'https://ror.org/04rw0w260 Ɖcole EuropĆ©enne SupĆ©rieure d''Art de Bretagne'),
(40302, 'https://ror.org/028rd3808', 'fr', 1, 'https://ror.org/028rd3808 Haute Ɖcole GalilĆ©e'),
(40303, 'https://ror.org/05eyxqf74', 'de', 1, 'https://ror.org/05eyxqf74 Fachhochschule für Wirtschaft und Technik Private Hochschule für Wirtschaft und Technik'),
(40304, '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'),
(40305, 'https://ror.org/02k7e9603', 'fr', 1, 'https://ror.org/02k7e9603 Haute Ɖcole Libre de Bruxelles Ilya Prigogine'),
(40306, 'https://ror.org/03j4bgx95', 'fr', 1, 'https://ror.org/03j4bgx95 ECAM Rennes Louis de Broglie'),
(40307, 'https://ror.org/052x1x555', 'fr', 1, 'https://ror.org/052x1x555 Haute Ɖcole Libre Mosane'),
(40308, 'https://ror.org/04m4shs41', 'de', 1, 'https://ror.org/04m4shs41 Dekra Hochschule für Medien'),
(40309, 'https://ror.org/00bpw1b12', 'fr', 1, 'https://ror.org/00bpw1b12 Ɖcole des Avocats Nord-Ouest'),
(40310, 'https://ror.org/01f5b8367', 'de', 1, 'https://ror.org/01f5b8367 Fachhochschule des Mittelstands'),
(40311, 'https://ror.org/0167nty12', 'fr', 1, 'https://ror.org/0167nty12 Ɖcole des Avocats du Grand Ouest'),
(40312, 'https://ror.org/051e52h07', 'fr', 1, 'https://ror.org/051e52h07 Haute Ɖcole de Namur-LiĆØge-Luxembourg'),
(40313, 'https://ror.org/00yw34h52', 'fr', 1, 'https://ror.org/00yw34h52 Institut SupĆ©rieur d''Ɖlectronique de Paris'),
(40314, 'https://ror.org/05dbw7b97', 'en', 1, 'https://ror.org/05dbw7b97 CVJM-Hochschule International YMCA University of Applied Sciences'),
(40315, 'https://ror.org/04sn8qj61', 'en', 1, 'https://ror.org/04sn8qj61 International School of Management'),
(40316, 'https://ror.org/0367m1n91', 'de', 1, 'https://ror.org/0367m1n91 Hochschule Weserbergland'),
(40317, 'https://ror.org/01k6xby62', 'de', 1, 'https://ror.org/01k6xby62 SRH Hochschule für Logistik und Wirtschaft'),
(40318, 'https://ror.org/01fss9e11', 'fr', 1, 'https://ror.org/01fss9e11 Ɖcole SupĆ©rieure d''Art et Design de Saint-Ɖtienne'),
(40319, 'https://ror.org/01crz4r71', 'fr', 1, 'https://ror.org/01crz4r71 Ɖcole SupĆ©rieure d''Art des PyrĆ©nĆ©es'),
(40320, 'https://ror.org/031ve8169', 'fr', 1, 'https://ror.org/031ve8169 Ɖcole de Formation Professionnelle des Barreaux de la Cour d''Appel de Paris'),
(40321, 'https://ror.org/041w2kh96', 'en', 1, 'https://ror.org/041w2kh96 University of Applied Sciences Europe'),
(40322, 'https://ror.org/046ns5110', 'de', 1, 'https://ror.org/046ns5110 Fachhochschule der Wirtschaft'),
(40323, 'https://ror.org/00drbxw02', 'fr', 1, 'https://ror.org/00drbxw02 PƓle SupƩrieur d''Enseignement Artistique of Paris Boulogne-Billancourt'),
(40324, 'https://ror.org/02yqzaa38', 'fr', 1, 'https://ror.org/02yqzaa38 Haute Ɖcole des Arts du Rhin'),
(40325, 'https://ror.org/03szbab20', 'fr', 1, 'https://ror.org/03szbab20 Institut RƩgional d''Administration'),
(40326, 'https://ror.org/047h65335', 'de', 1, 'https://ror.org/047h65335 Deutsche Hochschule für Prävention und Gesundheitsmanagement'),
(40327, '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'),
(40328, 'https://ror.org/05kqgwz20', 'fr', 1, 'https://ror.org/05kqgwz20 Ɖcole des Officiers de la Gendarmerie Nationale'),
(40329, 'https://ror.org/05vg58c56', 'de', 1, 'https://ror.org/05vg58c56 PƤdagogische Hochschule Niederƶsterreich'),
(40330, 'https://ror.org/03x8h1v05', 'fr', 1, 'https://ror.org/03x8h1v05 Ɖcole SupĆ©rieure du Bois'),
(40331, 'https://ror.org/04kne2879', 'de', 1, 'https://ror.org/04kne2879 Kirchliche PƤdagogische Hochschule Edith Stein'),
(40332, 'https://ror.org/05k9vmz93', 'de', 1, 'https://ror.org/05k9vmz93 Hochschule für Telekommunikation Leipzig'),
(40333, 'https://ror.org/02kbwgp44', 'fr', 1, 'https://ror.org/02kbwgp44 Ɖcole SupĆ©rieure d''Art et de Design d''OrlĆ©ans'),
(40334, 'https://ror.org/01c508b36', 'fr', 1, 'https://ror.org/01c508b36 Institut RƩgional d''Administration de Lyon'),
(40335, 'https://ror.org/047e48t34', 'fr', 1, 'https://ror.org/047e48t34 Ɖcole Nationale d''Administration PĆ©nitentiaire'),
(40336, 'https://ror.org/05x346678', 'fr', 1, 'https://ror.org/05x346678 Ɖcole SupĆ©rieure d''Art et de Design Tours-Angers-Le Mans'),
(40337, 'https://ror.org/00c62es15', 'fr', 1, 'https://ror.org/00c62es15 Ɖcole SupĆ©rieure d''Arts & MĆ©dias de Caen/Cherbourg'),
(40338, 'https://ror.org/058eyqd35', 'fr', 1, 'https://ror.org/058eyqd35 Ɖcole SupĆ©rieure Angevine d''Informatique et de Productique'),
(40339, 'https://ror.org/05mv80p58', 'fr', 1, 'https://ror.org/05mv80p58 Institut Textile et Chimique'),
(40340, 'https://ror.org/04ch3k260', 'fr', 1, 'https://ror.org/04ch3k260 Ɖcole SupĆ©rieure d''Art et de Design de Reims'),
(40341, 'https://ror.org/04d1ryd22', 'fr', 1, 'https://ror.org/04d1ryd22 Ɖcole des Avocats RhĆ“ne-Alpes'),
(40342, 'https://ror.org/02hce4k71', 'fr', 1, 'https://ror.org/02hce4k71 Ɖcole Nationale SupĆ©rieure d''Art et de Design de Nancy'),
(40343, 'https://ror.org/00aac9t94', 'fr', 1, 'https://ror.org/00aac9t94 Special Military School of Saint-Cyr Ɖcole SpĆ©ciale Militaire de Saint-Cyr'),
(40344, 'https://ror.org/043w4dx82', 'fr', 1, 'https://ror.org/043w4dx82 Ɖcole Militaire Interarmes'),
(40345, 'https://ror.org/02kgft750', 'fr', 1, 'https://ror.org/02kgft750 Ɖcole Nationale SupĆ©rieure d''Art'),
(40346, 'https://ror.org/055s1wn27', 'de', 1, 'https://ror.org/055s1wn27 Hochschule für Polizei Baden-Württemberg'),
(40347, 'https://ror.org/00wrxrh45', 'fr', 1, 'https://ror.org/00wrxrh45 Institut RƩgional d''Administration de Metz'),
(40348, 'https://ror.org/05q4ybv44', 'en', 1, 'https://ror.org/05q4ybv44 International and European Law School'),
(40349, 'https://ror.org/01v7j8968', 'de', 1, 'https://ror.org/01v7j8968 Hochschule für den öffentlichen Dienst in Bayern'),
(40350, 'https://ror.org/00s13q694', 'fr', 1, 'https://ror.org/00s13q694 Ɖcole SupĆ©rieure d''IngĆ©nieurs des Travaux de la Construction de Metz'),
(40351, 'https://ror.org/01hbq4r90', 'fr', 1, 'https://ror.org/01hbq4r90 Ɖcole Nationale SupĆ©rieure d''Architecture de Paris-Belleville'),
(40352, 'https://ror.org/01pcs0h38', 'fr', 1, 'https://ror.org/01pcs0h38 Ɖcole Nationale des Greffes'),
(40353, 'https://ror.org/037mk9523', 'fr', 1, 'https://ror.org/037mk9523 Ɖcole SupĆ©rieure d''IngĆ©nieurs des Travaux de la Construction de Cachan'),
(40354, 'https://ror.org/047vv7q25', 'fr', 1, 'https://ror.org/047vv7q25 Ɖcole SupĆ©rieure d''Art du Nord-Pas-de-Calais'),
(40355, 'https://ror.org/00jvbme10', 'de', 1, 'https://ror.org/00jvbme10 Fachhochschule für Finanzen Brandenburg'),
(40356, 'https://ror.org/03bavdz78', 'de', 1, 'https://ror.org/03bavdz78 Hochschule für Musik Freiburg'),
(40357, 'https://ror.org/027jws131', 'fr', 1, 'https://ror.org/027jws131 Institut Polytechnique Saint-Louis'),
(40358, 'https://ror.org/05q2pee13', 'de', 1, 'https://ror.org/05q2pee13 Hochschule für Ɩffentliche Verwaltung Bremen'),
(40359, 'https://ror.org/029rzwj76', 'fr', 1, 'https://ror.org/029rzwj76 Ɖcole de Biologie Industrielle'),
(40360, 'https://ror.org/02k139m61', 'fr', 1, 'https://ror.org/02k139m61 Institut RƩgional d''Administration de Bastia'),
(40361, 'https://ror.org/05tn39y33', 'de', 1, 'https://ror.org/05tn39y33 Akademie der Polizei Hamburg'),
(40362, 'https://ror.org/018mbvt80', 'en', 1, 'https://ror.org/018mbvt80 German open Business School Hochschule für Wirtschaft und Verwaltung'),
(40363, 'https://ror.org/035jc1316', 'de', 1, 'https://ror.org/035jc1316 Hessische Hochschule für Finanzen und Rechtspflege'),
(40364, 'https://ror.org/00j9xkc07', 'en', 1, 'https://ror.org/00j9xkc07 European University of Applied Sciences EuropƤische Fachhochschule Rhein/Erft'),
(40365, 'https://ror.org/02kraxp86', 'de', 1, 'https://ror.org/02kraxp86 SRH Hochschule der Populären Künste'),
(40366, 'https://ror.org/05tev5412', 'en', 1, 'https://ror.org/05tev5412 Higher and Technical Education Department'),
(40367, 'https://ror.org/01f02ww36', 'en', 1, 'https://ror.org/01f02ww36 All-Russian Research Institute of Agricultural Microbiology'),
(40368, 'https://ror.org/00wp2bj27', 'en', 1, 'https://ror.org/00wp2bj27 Institute of Chemistry, Far Eastern Branch of the Russian Academy of Sciences'),
(40369, 'https://ror.org/03jmc9t23', 'en', 1, 'https://ror.org/03jmc9t23 Research Institute of General Pathology and Pathophysiology, the Russian Academy of Medical Sciences ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей патологии Šø патофизиологии'),
(40370, 'https://ror.org/055csed06', 'en', 1, 'https://ror.org/055csed06 Mental Health Research Center of Russian Academy of Medical Sciences ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр ŠŸŃŠøŃ…ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š—Š“Š¾Ń€Š¾Š²ŃŒŃ Š ŠŠœŠ'),
(40371, 'https://ror.org/05c3bnw72', 'en', 1, 'https://ror.org/05c3bnw72 V.V. Dokuchaev Soil Science Institute'),
(40372, 'https://ror.org/01s15bz77', 'en', 1, 'https://ror.org/01s15bz77 All-Russian Scientific Research and Technological Institute of Poultry Russian Academy of Agricultural Sciences Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ птицевоГства Российской акаГемии ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Ń… наук'),
(40373, 'https://ror.org/01b3qhp76', 'en', 1, 'https://ror.org/01b3qhp76 Research Institute of Fundamental and Clinical Immunology ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ Šø клинической иммунологии'),
(40374, '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 Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии Šø Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины»'),
(40375, 'https://ror.org/047swfp57', 'en', 1, 'https://ror.org/047swfp57 Russian Research Institute of Fruit Crop Breeding Всероссийского Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° селекции плоГовых ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€'),
(40376, 'https://ror.org/00et21g06', 'en', 1, 'https://ror.org/00et21g06 All-Russian Research Institute of Agricultural Biotechnology Russian Academy of Agricultural Sciences Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ биотехнологии [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(40377, 'https://ror.org/05ssfag15', 'en', 1, 'https://ror.org/05ssfag15 Federal Research Centre of Nutrition and Biotechnology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠøŃ‚Š°Š½ŠøŃ'),
(40378, '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'),
(40379, 'https://ror.org/01j1yd225', 'en', 1, 'https://ror.org/01j1yd225 North West Boroughs Healthcare NHS Foundation Trust'),
(40380, 'https://ror.org/048vved44', 'pt', 1, 'https://ror.org/048vved44 Associação Desportiva e Cultural da Escola Preparatória Diogo Cão'),
(40381, 'https://ror.org/00vwzpd62', 'no_lang_code', 1, 'https://ror.org/00vwzpd62 American Journal Experts (United States)'),
(40382, 'https://ror.org/02z1x9d19', 'no_lang_code', 1, 'https://ror.org/02z1x9d19 Celfinet (Portugal)'),
(40383, 'https://ror.org/00926c151', 'pl', 1, 'https://ror.org/00926c151 Śląska Wyższa Szkoła Informatyczno-Medyczna'),
(40384, 'https://ror.org/01gyh5y52', 'no_lang_code', 1, 'https://ror.org/01gyh5y52 Argos Cement (Colombia) Cementos Argos'),
(40385, 'https://ror.org/02gqw3a90', 'en', 1, 'https://ror.org/02gqw3a90 Austrian Archeological Institute Ɩsterreichisches ArchƤologisches Institut'),
(40386, 'https://ror.org/0255w3r50', 'no_lang_code', 1, 'https://ror.org/0255w3r50 Amway (United States)'),
(40387, 'https://ror.org/00s1xev78', 'en', 1, 'https://ror.org/00s1xev78 Biblioteca Nacional de Colombia National Library of Colombia'),
(40388, 'https://ror.org/01ep2z456', 'es', 1, 'https://ror.org/01ep2z456 Ayuntamiento De Tomelloso'),
(40389, 'https://ror.org/05wfehw39', 'it', 1, 'https://ror.org/05wfehw39 Accademia Nazionale dei Lincei'),
(40390, 'https://ror.org/04twsya26', 'en', 1, 'https://ror.org/04twsya26 B. V. Patel Pharmaceutical Education and Research Development Centre'),
(40391, 'https://ror.org/014ctt859', 'en', 1, 'https://ror.org/014ctt859 Birla Institute of Technology and Science - Hyderabad Campus'),
(40392, 'https://ror.org/0068yvd12', 'en', 1, 'https://ror.org/0068yvd12 Center for Global Development'),
(40393, 'https://ror.org/05jnbme07', 'en', 1, 'https://ror.org/05jnbme07 Birla Institute of Technology and Science, Pilani - Dubai Campus बिरला ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤Ŗą¤æą¤²ą¤¾ą¤Øą„€-ą¤¦ą„ą¤¬ą¤ˆ ą¤•ą„ˆą¤‚ą¤Ŗą¤ø'),
(40394, 'https://ror.org/018y7q663', 'en', 1, 'https://ror.org/018y7q663 Pure Earth'),
(40395, 'https://ror.org/04xcr6k92', 'no_lang_code', 1, 'https://ror.org/04xcr6k92 Accenture (Spain)'),
(40396, 'https://ror.org/01h7jse56', 'en', 1, 'https://ror.org/01h7jse56 Banco Central do Brasil Central Bank of Brazil'),
(40397, 'https://ror.org/01h4f0m46', 'en', 1, 'https://ror.org/01h4f0m46 Central Bank of the Republic of Turkey Türkiye Cumhuriyet Merkez Bankası'),
(40398, 'https://ror.org/0497xq319', 'en', 1, 'https://ror.org/0497xq319 Anna Freud Centre'),
(40399, 'https://ror.org/0208sdr22', 'pt', 1, 'https://ror.org/0208sdr22 Administração Regional de Saúde de Lisboa e Vale do Tejo'),
(40400, 'https://ror.org/05bb03e97', 'en', 1, 'https://ror.org/05bb03e97 Bodoland University बऔ''ą¤²ą„‡ą¤£ą„ą¤” ą¤¬ą„ą¤¹ą„ą¤®ą¤«ą¤°ą¤¾ą¤Æą¤øą¤¾ą¤²ą¤æ'),
(40401, 'https://ror.org/05c3kvr55', 'en', 1, 'https://ror.org/05c3kvr55 Bangladesh Centre for Advanced Studies'),
(40402, 'https://ror.org/02t5vjx28', 'en', 1, 'https://ror.org/02t5vjx28 Central Mindanao Colleges'),
(40403, 'https://ror.org/03njdre41', 'en', 1, 'https://ror.org/03njdre41 Bangladesh Council of Scientific and Industrial Research বাংলাদেশ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦¶ą¦æą¦²ą§ą¦Ŗ গবেষণা পরিষদ'),
(40404, 'https://ror.org/026xz9f02', 'en', 1, 'https://ror.org/026xz9f02 Bronx High School of Science'),
(40405, 'https://ror.org/03d0ft388', 'de', 1, 'https://ror.org/03d0ft388 Bank für Tirol und Vorarlberg'),
(40406, 'https://ror.org/04h5ys198', 'no_lang_code', 1, 'https://ror.org/04h5ys198 Cniitmash (Russia) Ń†Š½ŠøŠøŃ‚Š¼Š°Ńˆ'),
(40407, 'https://ror.org/0088v6m32', 'fr', 1, 'https://ror.org/0088v6m32 Banque de France'),
(40408, 'https://ror.org/04ateak98', 'en', 1, 'https://ror.org/04ateak98 Base Training'),
(40409, 'https://ror.org/01q1kj855', 'en', 1, 'https://ror.org/01q1kj855 Animal Health Training and Consultancy Service'),
(40410, 'https://ror.org/00r3dxy86', 'en', 1, 'https://ror.org/00r3dxy86 Busan Institute of Science and Technology ė¶€ģ‚°ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(40411, 'https://ror.org/02akg1305', 'en', 1, 'https://ror.org/02akg1305 Asian Institute of Public Health'),
(40412, 'https://ror.org/007gfpa47', 'pt', 1, 'https://ror.org/007gfpa47 Caixa Cultural'),
(40413, 'https://ror.org/00j0xx731', 'no_lang_code', 1, 'https://ror.org/00j0xx731 Centre d''Higiene Mental Les Corts (Spain)'),
(40414, 'https://ror.org/04xadt873', 'pt', 1, 'https://ror.org/04xadt873 Associação Cultural de Arte e Comunicação Oficinas do Convento'),
(40415, 'https://ror.org/04n30gn53', 'pt', 1, 'https://ror.org/04n30gn53 Associação Empresarial de Paços de Ferreira'),
(40416, 'https://ror.org/05ghbet76', 'en', 1, 'https://ror.org/05ghbet76 Associated Board of the Royal Schools of Music'),
(40417, 'https://ror.org/0348r9089', 'no_lang_code', 1, 'https://ror.org/0348r9089 Beginning (Bangladesh)'),
(40418, 'https://ror.org/01a27na53', 'ro', 1, 'https://ror.org/01a27na53 Universitatea Alma Mater Sibiu'),
(40419, 'https://ror.org/0226dpj06', 'en', 1, 'https://ror.org/0226dpj06 Association of Chartered Certified Accountants'),
(40420, 'https://ror.org/0232pe591', 'en', 1, 'https://ror.org/0232pe591 Association of Corporate Treasurers'),
(40421, 'https://ror.org/014zhhr61', 'en', 1, 'https://ror.org/014zhhr61 Belarusian Medical Academy of Post-Graduate Education Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š¼ŠµŠ“Ń‹Ń†Ń‹Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń ŠæŠ°ŃŠ»ŃŠ“Ń‹ŠæŠ»Š¾Š¼Š½Š°Š¹ Š°Š“ŃƒŠŗŠ°Ń†Ń‹Ń–'),
(40422, 'https://ror.org/03v05gb64', 'en', 1, 'https://ror.org/03v05gb64 Centre for the Rehabilitation of the Paralysed'),
(40423, 'https://ror.org/006k1pa70', 'en', 1, 'https://ror.org/006k1pa70 Cambridge School'),
(40424, 'https://ror.org/01ftvnv05', 'en', 1, 'https://ror.org/01ftvnv05 Royal Brisbane and Women''s Hospital Foundation'),
(40425, 'https://ror.org/00en31398', 'pt', 1, 'https://ror.org/00en31398 Centro Cultural Vila Flor'),
(40426, 'https://ror.org/0452sj958', 'ca', 1, 'https://ror.org/0452sj958 Unió Catalana de Centres de Desenvolupament Infantil i Atenció Precoç'),
(40427, 'https://ror.org/05gkhkw84', 'pt', 1, 'https://ror.org/05gkhkw84 Centro de Formação Profissional para a Indústria Cerâmica'),
(40428, 'https://ror.org/04kjbga23', 'en', 1, 'https://ror.org/04kjbga23 Chinese Students and Scholars Association of Ireland ēˆ±å°”å…°äø­å›½å­¦ē”Ÿå­¦č€…č”åˆč°Šä¼š'),
(40429, 'https://ror.org/05efhq671', 'es', 1, 'https://ror.org/05efhq671 Centro de AnÔlisis y Difusión de la Economía Paraguya'),
(40430, 'https://ror.org/01ktxpf34', 'pt', 1, 'https://ror.org/01ktxpf34 ColƩgio Pedro II'),
(40431, 'https://ror.org/042ryz918', 'pt', 1, 'https://ror.org/042ryz918 ColƩgio Teresiano de Braga'),
(40432, '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'),
(40433, 'https://ror.org/00ve6e186', 'en', 1, 'https://ror.org/00ve6e186 Australian Bureau of Statistics'),
(40434, 'https://ror.org/04zkbxs23', 'en', 1, 'https://ror.org/04zkbxs23 Royal College of Emergency Medicine'),
(40435, 'https://ror.org/03y28aj90', 'no_lang_code', 1, 'https://ror.org/03y28aj90 Cummins (United States)'),
(40436, 'https://ror.org/05h7nhz20', 'en', 1, 'https://ror.org/05h7nhz20 Dong Thap University'),
(40437, 'https://ror.org/01t5p5h79', 'no_lang_code', 1, 'https://ror.org/01t5p5h79 Cedar Fair (United States)'),
(40438, 'https://ror.org/05a99n355', 'no_lang_code', 1, 'https://ror.org/05a99n355 Vale (Brazil)'),
(40439, 'https://ror.org/048fs3s61', 'pt', 1, 'https://ror.org/048fs3s61 Centro de Medicina de Reabilitacao do Alcoitão'),
(40440, 'https://ror.org/01ap78q14', 'pt', 1, 'https://ror.org/01ap78q14 Citeforma'),
(40441, 'https://ror.org/01cjdbz30', 'es', 1, 'https://ror.org/01cjdbz30 Davara & Davara Asesores JurĆ­dicos'),
(40442, 'https://ror.org/04fqqys39', 'en', 1, 'https://ror.org/04fqqys39 Computational Intelligence and Information Systems Lab'),
(40443, 'https://ror.org/00x6h5n95', 'en', 1, 'https://ror.org/00x6h5n95 Dryad Digital Repository'),
(40444, 'https://ror.org/03wkfdc28', 'pt', 1, 'https://ror.org/03wkfdc28 Centro DramĆ”tico de Ɖvora'),
(40445, 'https://ror.org/032xgdx47', 'en', 1, 'https://ror.org/032xgdx47 Citigroup'),
(40446, 'https://ror.org/006zwes74', 'no_lang_code', 1, 'https://ror.org/006zwes74 Dryas Arqueologia (Portugal)'),
(40447, 'https://ror.org/05b210c34', 'en', 1, 'https://ror.org/05b210c34 City of Cape Town IsiXeko SaseKapa Stad Kaapstad'),
(40448, 'https://ror.org/0246qj146', 'pt', 1, 'https://ror.org/0246qj146 Centro Hospitalar do TĆ¢mega e Sousa'),
(40449, 'https://ror.org/05f5rab97', 'en', 1, 'https://ror.org/05f5rab97 Ear Science Institute Australia'),
(40450, 'https://ror.org/0314ecq26', 'es', 1, 'https://ror.org/0314ecq26 Centro Nacional de Investigación y Desarrollo Tecnológico'),
(40451, 'https://ror.org/00a9jcw35', 'en', 1, 'https://ror.org/00a9jcw35 East Avenue Medical Center'),
(40452, 'https://ror.org/0128xcr10', 'en', 1, 'https://ror.org/0128xcr10 Clear Passage Physical Therapy'),
(40453, 'https://ror.org/03rzfjh59', 'pt', 1, 'https://ror.org/03rzfjh59 Centro UniversitƔrio Cesmac'),
(40454, 'https://ror.org/0338hg181', 'pt', 1, 'https://ror.org/0338hg181 Confraria de Santa Luzia'),
(40455, 'https://ror.org/00n3vh666', 'en', 1, 'https://ror.org/00n3vh666 Deen Dayal Upadhyay Hospital'),
(40456, 'https://ror.org/02rejsj11', 'pt', 1, 'https://ror.org/02rejsj11 Conservatório de Música de Coimbra'),
(40457, 'https://ror.org/006p1zj23', 'no_lang_code', 1, 'https://ror.org/006p1zj23 Turner Broadcasting System (United States)'),
(40458, 'https://ror.org/03fbewc07', 'pt', 1, 'https://ror.org/03fbewc07 Conservatório de Música do Porto'),
(40459, 'https://ror.org/01xyx5098', 'en', 1, 'https://ror.org/01xyx5098 Defense Information Systems Agency'),
(40460, 'https://ror.org/00yh09097', 'en', 1, 'https://ror.org/00yh09097 Del Valle Independent School District'),
(40461, 'https://ror.org/0362ttz08', 'en', 1, 'https://ror.org/0362ttz08 Center for Economic Research and Graduate Education – Economics Institute');
INSERT INTO `rors` VALUES
(40462, 'https://ror.org/015jrdc82', 'en', 1, 'https://ror.org/015jrdc82 Consorci Sanitari del Maresme Maresme Health Consortium'),
(40463, 'https://ror.org/018rz4f73', 'en', 1, 'https://ror.org/018rz4f73 Cheetah Conservation Fund'),
(40464, 'https://ror.org/04h0czz41', 'no_lang_code', 1, 'https://ror.org/04h0czz41 Eesti Energia (Estonia)'),
(40465, 'https://ror.org/05nc0nk71', 'en', 1, 'https://ror.org/05nc0nk71 Cooperative Institute for Climate and Satellites'),
(40466, 'https://ror.org/02qvpgb95', 'tr', 1, 'https://ror.org/02qvpgb95 Denizli Special Provincial Administration Denizli Yatırım İzleme ve Koordinasyon Başkanlığı'),
(40467, 'https://ror.org/020sjp894', 'en', 1, 'https://ror.org/020sjp894 Chemistry and Chemical Engineering Research Center of Iran'),
(40468, 'https://ror.org/002qv2715', 'en', 1, 'https://ror.org/002qv2715 Statens jordbruksverk Swedish Board of Agriculture'),
(40469, 'https://ror.org/04eak0r73', 'en', 1, 'https://ror.org/04eak0r73 Child Health Research Foundation'),
(40470, 'https://ror.org/01frq5x38', 'en', 1, 'https://ror.org/01frq5x38 Department of Education Cagayan de Oro'),
(40471, 'https://ror.org/02fa3j397', 'es', 1, 'https://ror.org/02fa3j397 Confederación Estatal de Personas Sordas'),
(40472, 'https://ror.org/05r9gnf88', 'en', 1, 'https://ror.org/05r9gnf88 Department of Education Pagadian'),
(40473, 'https://ror.org/0347pb070', 'ro', 1, 'https://ror.org/0347pb070 Camera de Comerț Industrie și Agricultură Timișoara'),
(40474, 'https://ror.org/04dzf3m45', 'en', 1, 'https://ror.org/04dzf3m45 Desert Research Center'),
(40475, 'https://ror.org/02eeq5d55', 'no_lang_code', 1, 'https://ror.org/02eeq5d55 ESiOR Oy (Finland)'),
(40476, 'https://ror.org/022tm9w06', 'no_lang_code', 1, 'https://ror.org/022tm9w06 Companhia de Eletricidade do Estado da Bahia (Brazil)'),
(40477, 'https://ror.org/010dgs567', 'no_lang_code', 1, 'https://ror.org/010dgs567 Deurali Janta Pharmaceuticals (Nepal)'),
(40478, 'https://ror.org/05nmyph15', 'en', 1, 'https://ror.org/05nmyph15 Culham Centre for Fusion Energy'),
(40479, 'https://ror.org/03qwqnb95', 'no_lang_code', 1, 'https://ror.org/03qwqnb95 Deutsche Bank (Germany)'),
(40480, 'https://ror.org/00ajckn66', 'en', 1, 'https://ror.org/00ajckn66 European Central Bank EuropƤischen Zentralbank'),
(40481, 'https://ror.org/03fthvs97', 'pt', 1, 'https://ror.org/03fthvs97 Faculdade de Itaituba'),
(40482, 'https://ror.org/04g3mbv81', 'en', 1, 'https://ror.org/04g3mbv81 European Graduate School'),
(40483, 'https://ror.org/03ywskk07', 'pt', 1, 'https://ror.org/03ywskk07 Faculdade de Medicina de JundiaĆ­'),
(40484, 'https://ror.org/03rgtag81', 'no_lang_code', 1, 'https://ror.org/03rgtag81 Dhaka Regency Hotel and Resort (Bangladesh)'),
(40485, 'https://ror.org/058fj5k57', 'en', 1, 'https://ror.org/058fj5k57 European Parliament Europees Parlement EuropƤisches Parlament Parlement EuropƩen'),
(40486, 'https://ror.org/05hwvzg47', 'en', 1, 'https://ror.org/05hwvzg47 Federal Reserve Bank of New York'),
(40487, 'https://ror.org/029z3g861', 'no_lang_code', 1, 'https://ror.org/029z3g861 Epic Systems (United States)'),
(40488, 'https://ror.org/016vvkz13', 'en', 1, 'https://ror.org/016vvkz13 European Patent Organisation'),
(40489, 'https://ror.org/00720xw25', 'pt', 1, 'https://ror.org/00720xw25 Faculdade Redentor'),
(40490, 'https://ror.org/00vcgxy32', 'pt', 1, 'https://ror.org/00vcgxy32 Faculdade Ruy Barbosa'),
(40491, 'https://ror.org/0056df569', 'pt', 1, 'https://ror.org/0056df569 Faculdade SĆ£o Lucas'),
(40492, 'https://ror.org/0328trt29', 'pt', 1, 'https://ror.org/0328trt29 Faculdade SumarƩ'),
(40493, 'https://ror.org/002an7w33', 'en', 1, 'https://ror.org/002an7w33 European Union of Medical Specialists Union EuropƩenne des MƩdecins SpƩcialistes'),
(40494, 'https://ror.org/05jnejj89', 'pt', 1, 'https://ror.org/05jnejj89 Faculdades EST'),
(40495, 'https://ror.org/024b4v884', 'pt', 1, 'https://ror.org/024b4v884 Faculdades Integradas AparĆ­cio Carvalho'),
(40496, 'https://ror.org/01h153k55', 'pt', 1, 'https://ror.org/01h153k55 Faculdades Integradas de Cacoal'),
(40497, 'https://ror.org/0370acc92', 'en', 1, 'https://ror.org/0370acc92 Fidmag Germanes HospitalĆ ries Fidmag Hermanas Hospitalarias Fidmag Sisters Hospitallers'),
(40498, 'https://ror.org/03c3ct763', 'pt', 1, 'https://ror.org/03c3ct763 Faculdades Integradas de Taquara'),
(40499, 'https://ror.org/045w8cb33', 'pt', 1, 'https://ror.org/045w8cb33 Faculdades Integradas do Vale do IvaĆ­'),
(40500, 'https://ror.org/05ssnx856', 'pt', 1, 'https://ror.org/05ssnx856 Fundação Técnico Educacional Souza Marques'),
(40501, 'https://ror.org/04q9me654', 'no_lang_code', 1, 'https://ror.org/04q9me654 Fleury S.A. (Brazil)'),
(40502, 'https://ror.org/030n1xr75', 'pt', 1, 'https://ror.org/030n1xr75 Escola BƔsica Integrada da Horta'),
(40503, 'https://ror.org/02jbzdv43', 'pt', 1, 'https://ror.org/02jbzdv43 Fundo para a Protecção dos Animais Selvagens'),
(40504, 'https://ror.org/0387e6h74', 'no_lang_code', 1, 'https://ror.org/0387e6h74 Return on Intelligence (Latvia)'),
(40505, 'https://ror.org/03vr80018', 'en', 1, 'https://ror.org/03vr80018 Escola de Mar School of Sea'),
(40506, 'https://ror.org/04w0r6004', 'it', 1, 'https://ror.org/04w0r6004 Fondazione Antonio Ratti'),
(40507, 'https://ror.org/019tc7185', 'no_lang_code', 1, 'https://ror.org/019tc7185 Faculty of 1000 (United Kingdom)'),
(40508, 'https://ror.org/00endrs84', 'pt', 1, 'https://ror.org/00endrs84 Externato da Luz'),
(40509, 'https://ror.org/04wsxm558', 'pt', 1, 'https://ror.org/04wsxm558 Faculdade CƔsper Lƭbero'),
(40510, 'https://ror.org/01zqv1s26', 'en', 1, 'https://ror.org/01zqv1s26 Faculty of Public Health'),
(40511, 'https://ror.org/0351a1c74', 'pt', 1, 'https://ror.org/0351a1c74 Faculdade Novos Horizontes'),
(40512, 'https://ror.org/01eqzn264', 'pt', 1, 'https://ror.org/01eqzn264 Faculdade da Serra GaĆŗcha'),
(40513, 'https://ror.org/04dh20q25', 'pt', 1, 'https://ror.org/04dh20q25 Escola Profissional Profitecla'),
(40514, 'https://ror.org/00nkq8a05', 'en', 1, 'https://ror.org/00nkq8a05 Fondazione Luigi Einaudi Luigi Einaudi Foundation'),
(40515, 'https://ror.org/00bvew379', 'pt', 1, 'https://ror.org/00bvew379 Faculdade de Administração Ciências Educação e Letras'),
(40516, 'https://ror.org/00gck2e56', 'pt', 1, 'https://ror.org/00gck2e56 Faculdade de Desenvolvimento do Rio Grande do Sul'),
(40517, 'https://ror.org/005cx3d93', 'pt', 1, 'https://ror.org/005cx3d93 Fundação João Pinheiro João Pinheiro Foundation'),
(40518, 'https://ror.org/01v58ha34', 'pt', 1, 'https://ror.org/01v58ha34 Agrupamento de Escolas Nuno Ɓlvares'),
(40519, 'https://ror.org/00qmsd316', 'pt', 1, 'https://ror.org/00qmsd316 Faculdades Milton Campos'),
(40520, 'https://ror.org/04wfc2h84', 'pt', 1, 'https://ror.org/04wfc2h84 Escola SecundÔria Quinta do Marquês'),
(40521, 'https://ror.org/045xmas39', 'pt', 1, 'https://ror.org/045xmas39 Fundacao Joaquim Nabuco'),
(40522, 'https://ror.org/03skjap48', 'en', 1, 'https://ror.org/03skjap48 AcadƩmie de droit international de La Haye Hague Academy of International Law'),
(40523, 'https://ror.org/03a0gk952', 'pt', 1, 'https://ror.org/03a0gk952 Escola Superior Aberta do Brasil'),
(40524, 'https://ror.org/02tq21k19', 'pt', 1, 'https://ror.org/02tq21k19 For Mar Centro de Formação Profissional das Pescas e do Mar'),
(40525, 'https://ror.org/01d0few86', 'en', 1, 'https://ror.org/01d0few86 Ghana Education Service'),
(40526, 'https://ror.org/01qcg0c38', 'pt', 1, 'https://ror.org/01qcg0c38 Escola Superior de Ciências da Santa Casa de Misericórdia de Vitória'),
(40527, 'https://ror.org/02ffdpz25', 'en', 1, 'https://ror.org/02ffdpz25 Health Education North West'),
(40528, 'https://ror.org/05jjx9m04', 'es', 1, 'https://ror.org/05jjx9m04 Fundación Ciencias de la Documentación'),
(40529, 'https://ror.org/036nj8c41', 'en', 1, 'https://ror.org/036nj8c41 Healthcare in Sweden'),
(40530, 'https://ror.org/00ket8v10', 'en', 1, 'https://ror.org/00ket8v10 Gokula Krishna College of Pharmacy'),
(40531, 'https://ror.org/007xnkn32', 'eu', 1, 'https://ror.org/007xnkn32 Osasun Ikaskuntza Fundazioa'),
(40532, 'https://ror.org/02bx25k35', 'es', 1, 'https://ror.org/02bx25k35 Hospital Militar Central'),
(40533, 'https://ror.org/057gftg63', 'en', 1, 'https://ror.org/057gftg63 Government Medical College'),
(40534, 'https://ror.org/059b1px42', 'no_lang_code', 1, 'https://ror.org/059b1px42 Freelancer (Portugal)'),
(40535, 'https://ror.org/01z6kem44', 'no_lang_code', 1, 'https://ror.org/01z6kem44 Hiep Phuoc Power (Vietnam)'),
(40536, 'https://ror.org/023th6c34', 'no_lang_code', 1, 'https://ror.org/023th6c34 Hovione (Portugal)'),
(40537, 'https://ror.org/04zyfmb02', 'en', 1, 'https://ror.org/04zyfmb02 Government of Khyber Pakhtunkhwa Ų­Ś©ŁˆŁ…ŲŖŁ Ų®ŪŒŲØŲ±Ł¾Ų®ŲŖŁˆŁ†Ų®ŁˆŲ§ دخیبر Ł¾ŚšŲŖŁˆā€ŒŁ†Ų®ŁˆŲ§Ų­Ś©ŁˆŁ…ŲŖ'),
(40538, 'https://ror.org/04ynw2g14', 'en', 1, 'https://ror.org/04ynw2g14 Information Technology Institute'),
(40539, 'https://ror.org/05gjrwv72', 'en', 1, 'https://ror.org/05gjrwv72 Government of Nepal ą¤Øą„‡ą¤Ŗą¤¾ą¤² सरकार'),
(40540, 'https://ror.org/04ayk8723', 'en', 1, 'https://ror.org/04ayk8723 G.S. Science, Arts And Commerce College'),
(40541, 'https://ror.org/055afwm56', 'no_lang_code', 1, 'https://ror.org/055afwm56 Genelux (United States)'),
(40542, 'https://ror.org/043ncwv78', 'no_lang_code', 1, 'https://ror.org/043ncwv78 IBM (Denmark)'),
(40543, 'https://ror.org/03kv3z486', 'no_lang_code', 1, 'https://ror.org/03kv3z486 IBM (Portugal)'),
(40544, 'https://ror.org/05b4bk905', 'pt', 1, 'https://ror.org/05b4bk905 Governo do Estado de Mato Grosso'),
(40545, 'https://ror.org/05vs4r368', 'pt', 1, 'https://ror.org/05vs4r368 Instituto Cuiabano de Educação'),
(40546, 'https://ror.org/017eb5121', 'no_lang_code', 1, 'https://ror.org/017eb5121 Honeywell (India)'),
(40547, 'https://ror.org/04p3pp808', 'en', 1, 'https://ror.org/04p3pp808 ICFAI Foundation for Higher Education'),
(40548, 'https://ror.org/036b4vb45', 'en', 1, 'https://ror.org/036b4vb45 Hong Kong Academy of Medicine'),
(40549, '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'),
(40550, 'https://ror.org/05cmcts66', 'no_lang_code', 1, 'https://ror.org/05cmcts66 Grameenphone (Bangladesh) ą¦—ą§ą¦°ą¦¾ą¦®ą§€ą¦£ą¦«ą§‹ą¦Ø'),
(40551, 'https://ror.org/0580grj78', 'en', 1, 'https://ror.org/0580grj78 Institute of Advanced Studies in Administration Instituto de Estudios Superiores de Administración'),
(40552, 'https://ror.org/01f2hnj65', 'es', 1, 'https://ror.org/01f2hnj65 Instituto Nacional de Cooperación Educativa Socialista'),
(40553, 'https://ror.org/02r140y61', 'pt', 1, 'https://ror.org/02r140y61 Instituição Toledo de Ensino'),
(40554, 'https://ror.org/04je48v27', 'pt', 1, 'https://ror.org/04je48v27 Instituto Federal do Rio Grande do Norte'),
(40555, 'https://ror.org/01r17ea31', 'pt', 1, 'https://ror.org/01r17ea31 Grupo Ibmec Educacional'),
(40556, 'https://ror.org/0424j7c73', 'en', 1, 'https://ror.org/0424j7c73 Institute for Scintillation Materials Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ†ŠøŠ½Ń‚ŠøŠ»ŃŃ†Ń–Š¹Š½ŠøŃ… матеріалів'),
(40557, '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'),
(40558, 'https://ror.org/051eyp684', 'en', 1, 'https://ror.org/051eyp684 Institute for the International Education of Students'),
(40559, 'https://ror.org/02914ef02', 'en', 1, 'https://ror.org/02914ef02 International Centre for Education in Islamic Finance'),
(40560, 'https://ror.org/01r3pfw81', 'en', 1, 'https://ror.org/01r3pfw81 Institute of Animal Sciences'),
(40561, 'https://ror.org/01ajp8153', 'no_lang_code', 1, 'https://ror.org/01ajp8153 Genmab (Netherlands)'),
(40562, 'https://ror.org/04fg7fb49', 'en', 1, 'https://ror.org/04fg7fb49 Institute of Cell Biology'),
(40563, 'https://ror.org/00w7etd19', 'en', 1, 'https://ror.org/00w7etd19 Independent Dance'),
(40564, 'https://ror.org/04x3tm905', 'en', 1, 'https://ror.org/04x3tm905 Institute of Chartered Accountants of India'),
(40565, 'https://ror.org/02j8pmw82', 'en', 1, 'https://ror.org/02j8pmw82 Indian Institute of Management Indore ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‡ą¤‚ą¤¦ą„Œą¤°'),
(40566, 'https://ror.org/04e09qg36', 'en', 1, 'https://ror.org/04e09qg36 Institute of Ecology and Genetics of Microorganisms'),
(40567, 'https://ror.org/04hpd0e20', 'en', 1, 'https://ror.org/04hpd0e20 Institute of Magnetism'),
(40568, 'https://ror.org/04a39s417', 'en', 1, 'https://ror.org/04a39s417 Indian Institute of Remote Sensing'),
(40569, 'https://ror.org/02wzg6d13', 'en', 1, 'https://ror.org/02wzg6d13 Geological Survey of Japan åœ°č³ŖčŖæęŸ»ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(40570, 'https://ror.org/013spkf41', 'en', 1, 'https://ror.org/013spkf41 Instituto da Defesa Nacional National Defense Institute'),
(40571, 'https://ror.org/02s9tm513', 'no_lang_code', 1, 'https://ror.org/02s9tm513 Indian Oil Corporation (India)'),
(40572, 'https://ror.org/01dywy767', 'pt', 1, 'https://ror.org/01dywy767 Instituto de Ensinos Superiores da AmazƓnia'),
(40573, 'https://ror.org/01zg9j813', 'no_lang_code', 1, 'https://ror.org/01zg9j813 Thieme Medical Publishers (Germany)'),
(40574, 'https://ror.org/01qfgm256', 'en', 1, 'https://ror.org/01qfgm256 V.E. Lashkaryov Institute of Semiconductor Physics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізики напівпровіГників ім. Š’.Š„. Š›Š°ŃˆŠŗŠ°Ń€ŃŒŠ¾Š²'),
(40575, 'https://ror.org/00qgtny50', 'en', 1, 'https://ror.org/00qgtny50 Institute of Solid State Physics and Semiconductors Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ фізікі цвёрГага цела і ŠæŠ°ŃžŠæŃ€Š°Š²Š°Š“Š½Ń–ŠŗŠ¾Ńž'),
(40576, 'https://ror.org/0080yzn09', 'en', 1, 'https://ror.org/0080yzn09 Institute of Technical Chemistry'),
(40577, 'https://ror.org/02qrt6d45', 'fr', 1, 'https://ror.org/02qrt6d45 Institut PrĆ©paratoire aux Ɖtudes d''IngĆ©nieurs de Monastir'),
(40578, 'https://ror.org/04bfba223', 'es', 1, 'https://ror.org/04bfba223 Instituto de Investigaciones ElƩctricas'),
(40579, 'https://ror.org/054z67s11', 'en', 1, 'https://ror.org/054z67s11 Institute of Technology of Cambodia'),
(40580, 'https://ror.org/015w62071', 'no_lang_code', 1, 'https://ror.org/015w62071 Iran Khodro (Iran) Ų§ŪŒŲ±Ų§Ł† Ų®ŁˆŲÆŲ±Łˆā€Žā€Ž'),
(40581, 'https://ror.org/05hvcqy45', 'pt', 1, 'https://ror.org/05hvcqy45 Instituto AgronƓmico do ParanƔ'),
(40582, 'https://ror.org/04jtk0f19', 'es', 1, 'https://ror.org/04jtk0f19 Instituto Superior de Estudios Psicológicos'),
(40583, 'https://ror.org/04mgkhj33', 'pt', 1, 'https://ror.org/04mgkhj33 Instituto Alergoimuno de Americana'),
(40584, 'https://ror.org/01senny43', 'pt', 1, 'https://ror.org/01senny43 Instituto de Pesquisas EnergƩticas e Nucleares Nuclear Energy Research Institute'),
(40585, 'https://ror.org/04q32pk93', 'en', 1, 'https://ror.org/04q32pk93 Jawaharlal Nehru Medical College Hospital'),
(40586, 'https://ror.org/01p1xdv40', 'es', 1, 'https://ror.org/01p1xdv40 Instituto Andaluz del Patrimonio Histórico'),
(40587, 'https://ror.org/02r1j5t41', 'no_lang_code', 1, 'https://ror.org/02r1j5t41 ZOSP RP Wytwórnia Umundurowania Strażackiego (Poland)'),
(40588, 'https://ror.org/05mxmg050', 'pt', 1, 'https://ror.org/05mxmg050 ColƩgio Sinodal'),
(40589, 'https://ror.org/045etwd57', 'no_lang_code', 1, 'https://ror.org/045etwd57 Joaquim Peixoto Azevedo and Sons (Portugal)'),
(40590, 'https://ror.org/029pw4y06', 'pt', 1, 'https://ror.org/029pw4y06 Instituto Superior de Teologia Aplicada'),
(40591, 'https://ror.org/0087qvf80', 'pt', 1, 'https://ror.org/0087qvf80 Instituto TƩcnico Artƭstico e Profissional de Coimbra'),
(40592, 'https://ror.org/04ywz9252', 'en', 1, 'https://ror.org/04ywz9252 Islamic Azad University Kerman دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کرمان'),
(40593, 'https://ror.org/02ntrvb55', 'es', 1, 'https://ror.org/02ntrvb55 Instituto Católico Chileno de Migración'),
(40594, 'https://ror.org/01x3kkr08', 'no_lang_code', 1, 'https://ror.org/01x3kkr08 JPMorgan Chase & Co (United States)'),
(40595, 'https://ror.org/05km8ys10', 'en', 1, 'https://ror.org/05km8ys10 Islamic Azad University of Urmia دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(40596, 'https://ror.org/03tamv273', 'en', 1, 'https://ror.org/03tamv273 Instituto Tecnológico de Celaya Technological Institute of Celaya'),
(40597, 'https://ror.org/04mwvcn50', 'en', 1, 'https://ror.org/04mwvcn50 Islamic Azad University, Yazd دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ یزد'),
(40598, 'https://ror.org/01qg9m571', 'pt', 1, 'https://ror.org/01qg9m571 Jornal de NotĆ­cias'),
(40599, 'https://ror.org/0087m7494', 'es', 1, 'https://ror.org/0087m7494 Instituto Tecnológico de CuliacÔn'),
(40600, 'https://ror.org/02t6f2351', 'pt', 1, 'https://ror.org/02t6f2351 Instituto Federal de Educação, Ciência e Tecnologia de Mato Grosso'),
(40601, 'https://ror.org/0141xw169', 'en', 1, 'https://ror.org/0141xw169 Institute for Space Astrophysics and Planetology Istituto Di Astrofisica E Planetologia Spaziali'),
(40602, 'https://ror.org/00dqega85', 'en', 1, 'https://ror.org/00dqega85 Istituto di Fisica Applicata Nello Carrara Nello Carrara Institute of Applied Physics'),
(40603, 'https://ror.org/02ct1m089', 'en', 1, 'https://ror.org/02ct1m089 Kazan State Medical Academy'),
(40604, 'https://ror.org/05vpj2s72', 'es', 1, 'https://ror.org/05vpj2s72 Instituto Tecnologico de Orizaba'),
(40605, 'https://ror.org/02dqcqh19', 'en', 1, 'https://ror.org/02dqcqh19 Kamineni Institute of Dental Sciences'),
(40606, 'https://ror.org/0377f1g25', 'es', 1, 'https://ror.org/0377f1g25 Instituto Tecnológico de Tepic'),
(40607, 'https://ror.org/0207az548', 'no_lang_code', 1, 'https://ror.org/0207az548 Agtes (Poland)'),
(40608, 'https://ror.org/05s142056', 'es', 1, 'https://ror.org/05s142056 Instituto Tecnológico de Toluca'),
(40609, 'https://ror.org/05tdek150', 'en', 1, 'https://ror.org/05tdek150 Instituto Tecnológico de Tuxtla Gutiérrez Tuxtla Gutierrez Institute of Technology'),
(40610, 'https://ror.org/002tzev63', 'en', 1, 'https://ror.org/002tzev63 IMDEA Energy Institute Instituto IMDEA EnergĆ­a'),
(40611, 'https://ror.org/05gwc3q21', 'es', 1, 'https://ror.org/05gwc3q21 Instituto Tecnologico de Veracruz'),
(40612, 'https://ror.org/04eyn1y36', 'de', 1, 'https://ror.org/04eyn1y36 Kantonsspital Baselland Standort Bruderholz'),
(40613, 'https://ror.org/04h3gcf69', 'es', 1, 'https://ror.org/04h3gcf69 Instituto Nacional de Investigaciones Agricolas'),
(40614, 'https://ror.org/02knnfm74', 'en', 1, 'https://ror.org/02knnfm74 Board of Intermediate Education Karachi'),
(40615, 'https://ror.org/01851c371', 'no_lang_code', 1, 'https://ror.org/01851c371 Itron (United States)'),
(40616, 'https://ror.org/033wswd35', 'en', 1, 'https://ror.org/033wswd35 Conservatoire royal de Bruxelles Royal Conservatory of Brussels'),
(40617, 'https://ror.org/03zjevq63', 'en', 1, 'https://ror.org/03zjevq63 Korea Air Force Academy 공군사꓀학교'),
(40618, 'https://ror.org/048jw1p35', 'no_lang_code', 1, 'https://ror.org/048jw1p35 Intel (Malaysia)'),
(40619, 'https://ror.org/015s51n07', 'en', 1, 'https://ror.org/015s51n07 International Advanced Research Centre for Powder Metallurgy and New Materials'),
(40620, 'https://ror.org/055r0va70', 'en', 1, 'https://ror.org/055r0va70 International Center for Biosaline Agriculture'),
(40621, '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'),
(40622, 'https://ror.org/02v0ayw84', 'sv', 1, 'https://ror.org/02v0ayw84 KungƤlvs Sjukhus'),
(40623, 'https://ror.org/010x33r48', 'en', 1, 'https://ror.org/010x33r48 London Postgraduate Medical and Dental Education'),
(40624, 'https://ror.org/00811aj93', 'en', 1, 'https://ror.org/00811aj93 International Humanitarian University ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½Š¾Š³Š¾ Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(40625, 'https://ror.org/05961na22', 'en', 1, 'https://ror.org/05961na22 Marine Hydrophysical Institute ŠœŠ¾Ń€ŃŠŗŠ¾Š¹ ГиГрофизический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(40626, 'https://ror.org/02ypzv613', 'en', 1, 'https://ror.org/02ypzv613 Military Geographical Institute Vojnogeografski institut'),
(40627, 'https://ror.org/02tcs8g80', 'no_lang_code', 1, 'https://ror.org/02tcs8g80 Laboratório Edol (Portugal)'),
(40628, 'https://ror.org/008sszm38', 'en', 1, 'https://ror.org/008sszm38 M S Swaminathan Research Foundation'),
(40629, 'https://ror.org/03f856541', 'es', 1, 'https://ror.org/03f856541 Ministerio de Educación Pública'),
(40630, 'https://ror.org/01yykzy84', 'no_lang_code', 1, 'https://ror.org/01yykzy84 Mahle (Portugal)'),
(40631, 'https://ror.org/03zs93v51', 'en', 1, 'https://ror.org/03zs93v51 Ministry of Foreign Affairs Ministério dos Negócios Estrangeiros'),
(40632, 'https://ror.org/05s2p6w24', 'pt', 1, 'https://ror.org/05s2p6w24 Museu Nacional de Arte Contemporânea do Chiado'),
(40633, 'https://ror.org/04d68zn48', 'de', 1, 'https://ror.org/04d68zn48 Landesschulrat für Tirol'),
(40634, 'https://ror.org/028zdff86', 'en', 1, 'https://ror.org/028zdff86 Ministry of Education, Science, Technology and Sports'),
(40635, 'https://ror.org/01hw7wf62', 'en', 1, 'https://ror.org/01hw7wf62 Ministry of Education وزارت Ų¢Ł…ŁˆŲ²Ų“ و پرورؓ Ų§ŪŒŲ±Ų§Ł†ā€Žā€Ž'),
(40636, 'https://ror.org/05cstvk27', 'en', 1, 'https://ror.org/05cstvk27 Management Development Institute'),
(40637, 'https://ror.org/03ftcjb67', 'en', 1, 'https://ror.org/03ftcjb67 Muséum d''Histoire Naturelle de Genève Natural History Museum of Geneva'),
(40638, 'https://ror.org/00fa9v295', 'en', 1, 'https://ror.org/00fa9v295 Medway School of Pharmacy'),
(40639, 'https://ror.org/0436hqh35', 'no_lang_code', 1, 'https://ror.org/0436hqh35 MAPNA Group (Iran)'),
(40640, 'https://ror.org/052jm1735', 'en', 1, 'https://ror.org/052jm1735 MOH Holdings'),
(40641, 'https://ror.org/04pqz1f73', 'sv', 1, 'https://ror.org/04pqz1f73 Lasarettet i Ystad'),
(40642, 'https://ror.org/03x4sv346', 'en', 1, 'https://ror.org/03x4sv346 Ministarstvo zdravstva Ministry of Health'),
(40643, 'https://ror.org/014p3qz82', 'en', 1, 'https://ror.org/014p3qz82 Ministry of Public Administration ą¦œą¦Øą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦øą¦Ø ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(40644, 'https://ror.org/047m0fb88', 'en', 1, 'https://ror.org/047m0fb88 Mental Health Services Region Hovedstadens psykiatriske hospital'),
(40645, 'https://ror.org/041j7s452', 'en', 1, 'https://ror.org/041j7s452 Thailand National Metal and Materials Technology Center ąøØąø¹ąø™ąø¢ą¹Œą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹‚ąø„ąø«ąø°ą¹ąø„ąø°ąø§ąø±ąøŖąø”ąøøą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(40646, 'https://ror.org/05tzkx710', 'no_lang_code', 1, 'https://ror.org/05tzkx710 Mir Technology Holdings (Turkey)'),
(40647, 'https://ror.org/00w793a39', 'en', 1, 'https://ror.org/00w793a39 Livestock Improvement Corporation'),
(40648, 'https://ror.org/01rk7mv85', 'no_lang_code', 1, 'https://ror.org/01rk7mv85 Siemens (Hungary)'),
(40649, 'https://ror.org/02z8rt196', 'en', 1, 'https://ror.org/02z8rt196 National Center for Technology Management'),
(40650, 'https://ror.org/053jnhe44', 'no_lang_code', 1, 'https://ror.org/053jnhe44 Mitsubishi Electric (United States)'),
(40651, 'https://ror.org/00ssjpk84', 'no_lang_code', 1, 'https://ror.org/00ssjpk84 L&S Consulting (South Africa)'),
(40652, 'https://ror.org/042k2b411', 'en', 1, 'https://ror.org/042k2b411 National Centre for Sustainable Coastal Management'),
(40653, 'https://ror.org/01vcn5r95', 'en', 1, 'https://ror.org/01vcn5r95 National Postgraduate Medical College of Nigeria'),
(40654, 'https://ror.org/01cch8797', 'no_lang_code', 1, 'https://ror.org/01cch8797 Mobica (Egypt)'),
(40655, 'https://ror.org/0101we292', 'en', 1, 'https://ror.org/0101we292 National Centre of Excellence in Analytical Chemistry'),
(40656, 'https://ror.org/02jxpdd90', 'en', 1, 'https://ror.org/02jxpdd90 Life Science Zurich'),
(40657, 'https://ror.org/04yt1rh21', 'en', 1, 'https://ror.org/04yt1rh21 Lifespan'),
(40658, 'https://ror.org/03zrrks14', 'no_lang_code', 1, 'https://ror.org/03zrrks14 Metav (Romania)'),
(40659, 'https://ror.org/00cq3cz72', 'en', 1, 'https://ror.org/00cq3cz72 National Research Centre on Plant Biotechnology ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ पादप ą¤œą„ˆą¤µą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ā€ą¤¦ą„ą¤°'),
(40660, 'https://ror.org/04kh65m59', 'en', 1, 'https://ror.org/04kh65m59 Moscow Institute of Energy and Energy Saving'),
(40661, 'https://ror.org/00bp00b85', 'es', 1, 'https://ror.org/00bp00b85 Instituto GeogrƔfico Nacional'),
(40662, 'https://ror.org/03hdcb713', 'no_lang_code', 1, 'https://ror.org/03hdcb713 MicroMass Communications (United States)'),
(40663, 'https://ror.org/044vgd869', 'en', 1, 'https://ror.org/044vgd869 National Institute of Cardiovascular Diseases'),
(40664, 'https://ror.org/00rpc7w94', 'en', 1, 'https://ror.org/00rpc7w94 National Institute of Technical Teachers Training and Research'),
(40665, 'https://ror.org/02w7f3w92', 'no_lang_code', 1, 'https://ror.org/02w7f3w92 Microsoft Research (India)'),
(40666, 'https://ror.org/05n5mpz07', 'pt', 1, 'https://ror.org/05n5mpz07 Ordem dos MƩdicos'),
(40667, 'https://ror.org/01nks1c62', 'no_lang_code', 1, 'https://ror.org/01nks1c62 Nissan (Japan) ę—„ē”£č‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(40668, 'https://ror.org/033c4qc49', 'en', 1, 'https://ror.org/033c4qc49 Niuvanniemi Hospital Nuvanniemen Sairala'),
(40669, 'https://ror.org/02fwden70', 'en', 1, 'https://ror.org/02fwden70 Astronomical Observatory of Capodimonte Osservatorio Astronomico di Capodimonte'),
(40670, 'https://ror.org/02avcvc17', 'en', 1, 'https://ror.org/02avcvc17 National Trust for Nature Conservation ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æ ą¤Ŗą„ą¤°ą¤•ą„ƒą¤¤ą¤æ ą¤øą¤‚ą¤°ą¤•ą„ą¤·ą¤£ ą¤•ą„‹ą¤·'),
(40671, 'https://ror.org/02txwfx92', 'it', 1, 'https://ror.org/02txwfx92 Giuseppe Salvatore Vaiana Osservatorio Astronomico di Palermo'),
(40672, 'https://ror.org/00fhten74', 'en', 1, 'https://ror.org/00fhten74 Pukhov Institute for Modelling in Energy Engineering Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š¼Š¾Š“ŠµŠ»ŃŽŠ²Š°Š½Š½Ń в енергетиці ім. Š“.Š„. ŠŸŃƒŃ…Š¾Š²Š° Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š¼Š¾Š“ŠµŠ»ŠøŃ€Š¾Š²Š°Š½ŠøŃ в ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠµ им. Š“.Š•. ŠŸŃƒŃ…Š¾Š²Š°'),
(40673, 'https://ror.org/029qq7963', 'no_lang_code', 1, 'https://ror.org/029qq7963 Novabase (Portugal)'),
(40674, 'https://ror.org/02d9wx511', 'en', 1, 'https://ror.org/02d9wx511 Observatório Político Political Observatory'),
(40675, 'https://ror.org/0310kd428', 'en', 1, 'https://ror.org/0310kd428 Pakistan Army پاک ŁŁˆŲ¬ā€Ž'),
(40676, 'https://ror.org/017zhda45', 'en', 1, 'https://ror.org/017zhda45 Queensland Centre for Mental Health Research'),
(40677, 'https://ror.org/056fndr85', 'no_lang_code', 1, 'https://ror.org/056fndr85 Holtzbrinck Publishing Group (United States)'),
(40678, 'https://ror.org/042k6ee15', 'en', 1, 'https://ror.org/042k6ee15 Pakistan Space and Upper Atmosphere Research Commission Ų®Ł„Ų§Ų¦ŪŒ و ŲØŲ§Ł„Ų§Ų¦ŪŒ فضائی ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖŪŒ Ł…Ų£Ł…ŁˆŲ±ŪŒŪ'),
(40679, 'https://ror.org/0091z1a80', 'no_lang_code', 1, 'https://ror.org/0091z1a80 Porto Editora (Portugal)'),
(40680, 'https://ror.org/0491qwe57', 'en', 1, 'https://ror.org/0491qwe57 Korea Naval Academy 핓군사꓀학교'),
(40681, 'https://ror.org/03enm7r21', 'no_lang_code', 1, 'https://ror.org/03enm7r21 Pakistan Telecommunication Company (Pakistan) پی ٹی سی Ų§ŪŒŁ„'),
(40682, 'https://ror.org/025fq9n57', 'en', 1, 'https://ror.org/025fq9n57 Energy Services Regulatory Authority Entidade Reguladora dos ServiƧos EnergƩticos'),
(40683, 'https://ror.org/025csd220', 'en', 1, 'https://ror.org/025csd220 Odense Kommune Odense Municipality'),
(40684, 'https://ror.org/04n4r7e14', 'pt', 1, 'https://ror.org/04n4r7e14 Fundação Centro de Hematologia e Hemoterapia de Minas Gerais'),
(40685, 'https://ror.org/0121en785', 'pt', 1, 'https://ror.org/0121en785 Prefeitura do MunicĆ­pio de SĆ£o Paulo'),
(40686, 'https://ror.org/05k5nmp03', 'pt', 1, 'https://ror.org/05k5nmp03 Prefeitura Municipal de Belo Horizonte'),
(40687, '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'),
(40688, 'https://ror.org/0469ct910', 'pt', 1, 'https://ror.org/0469ct910 Prefeitura Municipal de Curitiba'),
(40689, 'https://ror.org/02x0mcx56', 'pt', 1, 'https://ror.org/02x0mcx56 Prefeitura Municipal do Natal'),
(40690, '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ść'),
(40691, 'https://ror.org/052073c89', 'pt', 1, 'https://ror.org/052073c89 Prefeitura Municipal de Vitória'),
(40692, 'https://ror.org/005s20452', 'en', 1, 'https://ror.org/005s20452 Paichai Chinese Primary School'),
(40693, 'https://ror.org/046pgjy90', 'en', 1, 'https://ror.org/046pgjy90 Prevention Alzheimer International Foundation'),
(40694, 'https://ror.org/01t8gb397', 'en', 1, 'https://ror.org/01t8gb397 Scientific Centre for Aerospace Research of the Earth ŠŠŠ£Š§ŠŠ«Š™ Š¦Š•ŠŠ¢Š  ŠŠ­Š ŠžŠšŠžŠ”ŠœŠ˜Š§Š•Š”ŠšŠ˜Š„ Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠŠ˜Š™ Š—Š•ŠœŠ›Š˜ Š˜Š-ТА Š“Š•ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š„ ŠŠŠ£Šš ŠŠŠ Š£ŠšŠ ŠŠ˜ŠŠ«, ГУ'),
(40695, 'https://ror.org/00rx3ej27', 'en', 1, 'https://ror.org/00rx3ej27 Robert Kennedy College'),
(40696, 'https://ror.org/0397v9r66', 'en', 1, 'https://ror.org/0397v9r66 University of Economics and Management VysokÔ Ŕkola ekonomie a managementu'),
(40697, 'https://ror.org/006ffhv52', 'en', 1, 'https://ror.org/006ffhv52 International School of Trieste Scuola Internazionale di Trieste'),
(40698, 'https://ror.org/049kydx29', 'en', 1, 'https://ror.org/049kydx29 Perpetual Succour Hospital'),
(40699, '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'),
(40700, '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'),
(40701, 'https://ror.org/03264me25', 'pt', 1, 'https://ror.org/03264me25 Associação de Municípios do Vale do Sousa'),
(40702, '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'),
(40703, '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'),
(40704, 'https://ror.org/0331rkj73', 'en', 1, 'https://ror.org/0331rkj73 Republic of Korea Army ėŒ€ķ•œėÆ¼źµ­ 윔군'),
(40705, 'https://ror.org/02d7xrh88', 'pt', 1, 'https://ror.org/02d7xrh88 Secretaria da Educação do Estado da Bahia'),
(40706, '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'),
(40707, 'https://ror.org/04gap2p44', 'en', 1, 'https://ror.org/04gap2p44 Society of Exploration Geophysicists'),
(40708, 'https://ror.org/04scnfc98', 'en', 1, 'https://ror.org/04scnfc98 Republican Scientific and Practical Center of Neurology and Neurosurgery Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр неврологии Šø Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŠ°Š½ŃŠŗŃ– навукова-практычны Ń†ŃŠ½Ń‚Ń€ Š½ŠµŃžŃ€Š°Š»Š¾Š³Ń–Ń– і Š½ŠµŠ¹Ń€Š°Ń…Ń–Ń€ŃƒŃ€Š³Ń–Ń–'),
(40709, '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'),
(40710, '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'),
(40711, 'https://ror.org/0066jc902', 'en', 1, 'https://ror.org/0066jc902 Soil Conservation and Watershed Management Research Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ حفاظت Ų®Ų§Ś© و آبخیزداری'),
(40712, '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'),
(40713, 'https://ror.org/02vksp793', 'es', 1, 'https://ror.org/02vksp793 Instituto de Investigaciones en Fruticultura Tropical'),
(40714, 'https://ror.org/036bh3761', 'no_lang_code', 1, 'https://ror.org/036bh3761 Sonae (Portugal)'),
(40715, 'https://ror.org/0070wyz29', 'es', 1, 'https://ror.org/0070wyz29 SecretarĆ­a de Salud de Jalisco'),
(40716, 'https://ror.org/05x8s5x77', 'en', 1, 'https://ror.org/05x8s5x77 Shamnur Shivashankarappa Institute of Medical Sciences & Research Centre ಶಾಮನೂರು ą²¶ą²æą²µą²¶ą²‚ą²•ą²°ą²Ŗą³ą²Ŗ ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ಸಂಶೋದನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(40717, 'https://ror.org/00c0gj024', 'no_lang_code', 1, 'https://ror.org/00c0gj024 Research Square (United States)'),
(40718, 'https://ror.org/01tg7a346', 'en', 1, 'https://ror.org/01tg7a346 SA Health'),
(40719, 'https://ror.org/04age2m32', 'pl', 1, 'https://ror.org/04age2m32 Państwowa Wyższa Szkoła Zawodowa w Raciborzu'),
(40720, 'https://ror.org/00avcrs60', 'es', 1, 'https://ror.org/00avcrs60 Revista Conamed'),
(40721, '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'),
(40722, 'https://ror.org/01yz56j89', 'en', 1, 'https://ror.org/01yz56j89 National Training Service Servicio Nacional de Aprendizaje'),
(40723, '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'),
(40724, 'https://ror.org/00n5fv691', 'pl', 1, 'https://ror.org/00n5fv691 Państwowa Wyższa Szkoła Zawodowa w Sulechowie'),
(40725, 'https://ror.org/00jsbh426', 'en', 1, 'https://ror.org/00jsbh426 South Eastern Railway'),
(40726, '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'),
(40727, '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'),
(40728, 'https://ror.org/00wg8t158', 'no_lang_code', 1, 'https://ror.org/00wg8t158 Sugal Group (Portugal)'),
(40729, 'https://ror.org/044j2cm68', 'en', 1, 'https://ror.org/044j2cm68 South Tyneside and Sunderland NHS Foundation Trust'),
(40730, 'https://ror.org/053ya0s96', 'pl', 1, 'https://ror.org/053ya0s96 Państwowa Wyższa Szkoła Zawodowa we Włocławku'),
(40731, 'https://ror.org/0312xab44', 'es', 1, 'https://ror.org/0312xab44 Servicio Canario de la Salud'),
(40732, 'https://ror.org/05pv25483', 'no_lang_code', 1, 'https://ror.org/05pv25483 Sunrise Communications AG (Switzerland)'),
(40733, 'https://ror.org/02c5acs33', 'no_lang_code', 1, 'https://ror.org/02c5acs33 Sutol (Portugal)'),
(40734, 'https://ror.org/0311qq620', 'pt', 1, 'https://ror.org/0311qq620 Santa Casa da Misericórdia de Almeirim'),
(40735, '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'),
(40736, 'https://ror.org/00g1a3p24', 'en', 1, 'https://ror.org/00g1a3p24 Saudi Commission for Health Specialties Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© للتخصصات Ų§Ł„ŲµŲ­ŁŠŲ©'),
(40737, 'https://ror.org/03qesm017', 'en', 1, 'https://ror.org/03qesm017 Southern Health NHS Foundation Trust'),
(40738, 'https://ror.org/032sa1p36', 'pt', 1, 'https://ror.org/032sa1p36 Serviço Social da Indústria de Santa Catarina'),
(40739, 'https://ror.org/015zbz228', 'en', 1, 'https://ror.org/015zbz228 Space Research Institute Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(40740, 'https://ror.org/02phrtc32', 'no_lang_code', 1, 'https://ror.org/02phrtc32 SGS (Portugal) Sociedade Geral de SuperintendĆŖncia'),
(40741, 'https://ror.org/05evqj924', 'en', 1, 'https://ror.org/05evqj924 SPIE Europe'),
(40742, 'https://ror.org/00y7x8f51', 'no_lang_code', 1, 'https://ror.org/00y7x8f51 Vodafone (Portugal)'),
(40743, 'https://ror.org/032c96a22', 'en', 1, 'https://ror.org/032c96a22 Turk Silahli Kuvvetlerini Guclendirme Vakfi Turkish Armed Forces Foundation'),
(40744, 'https://ror.org/00daqep21', 'pt', 1, 'https://ror.org/00daqep21 Sporting Clube Vasco da Gama'),
(40745, 'https://ror.org/00v0vvh64', 'nl', 1, 'https://ror.org/00v0vvh64 Tactus Verslavingszorg'),
(40746, 'https://ror.org/03629ds51', 'no_lang_code', 1, 'https://ror.org/03629ds51 Springer Publishing Company (United States)'),
(40747, 'https://ror.org/05wg4vp92', 'en', 1, 'https://ror.org/05wg4vp92 Ternopil Institute for Social and Information Technologies'),
(40748, 'https://ror.org/05mtgrz63', 'en', 1, 'https://ror.org/05mtgrz63 Takestan Islamic Azad University'),
(40749, 'https://ror.org/04g96bg87', 'en', 1, 'https://ror.org/04g96bg87 TALLINNA ƄRIPANGA AS Tallinn Business Bank'),
(40750, 'https://ror.org/03cv6f983', 'en', 1, 'https://ror.org/03cv6f983 Texas A&M University School of Law'),
(40751, 'https://ror.org/015dfn538', 'en', 1, 'https://ror.org/015dfn538 Turkish Armed Forces Türk Silahlı Kuvvetleri'),
(40752, 'https://ror.org/04vv1c071', 'en', 1, 'https://ror.org/04vv1c071 Silsbee Independent School District'),
(40753, 'https://ror.org/00ar3n458', 'en', 1, 'https://ror.org/00ar3n458 College of Dental Surgeons of Hong Kong'),
(40754, 'https://ror.org/02fsnvs68', 'no_lang_code', 1, 'https://ror.org/02fsnvs68 Portuguese Air Transportations (Portugal) Transportes AƩreos Portugueses'),
(40755, 'https://ror.org/00wh1y768', 'en', 1, 'https://ror.org/00wh1y768 Department of Education Tasmania'),
(40756, 'https://ror.org/00snyqa86', 'pt', 1, 'https://ror.org/00snyqa86 TeledifusĆ£o de Macau 澳廣視'),
(40757, 'https://ror.org/033d2fn04', 'en', 1, 'https://ror.org/033d2fn04 Korean Society of Speech Sciences'),
(40758, 'https://ror.org/05a781r26', 'no_lang_code', 1, 'https://ror.org/05a781r26 Statisticon (Sweden)'),
(40759, 'https://ror.org/03bqw6m62', 'en', 1, 'https://ror.org/03bqw6m62 National Theatre D. Maria II Teatro Nacional D. Maria II'),
(40760, 'https://ror.org/02tzvz077', 'pt', 1, 'https://ror.org/02tzvz077 Teatro Nacional São João'),
(40761, 'https://ror.org/02ehp0f77', 'en', 1, 'https://ror.org/02ehp0f77 UmeƄ Plant Science Centre'),
(40762, 'https://ror.org/04a2pvv21', 'no_lang_code', 1, 'https://ror.org/04a2pvv21 Strathmore Company (United States)'),
(40763, 'https://ror.org/04d5f4w73', 'en', 1, 'https://ror.org/04d5f4w73 Stockholm Health Care Services Stockholms lƤns sjukvƄrdsomrƄde'),
(40764, 'https://ror.org/023sjj642', 'pt', 1, 'https://ror.org/023sjj642 Municipal de Ɠbidos'),
(40765, 'https://ror.org/04t17dk82', 'pt', 1, 'https://ror.org/04t17dk82 União Dinâmica de Faculdades Cataratas'),
(40766, 'https://ror.org/01cbeee29', 'es', 1, 'https://ror.org/01cbeee29 Universidad Católica Cecilio Acosta'),
(40767, 'https://ror.org/029ghce65', 'en', 1, 'https://ror.org/029ghce65 Union Christian College'),
(40768, 'https://ror.org/05yk11s87', 'no_lang_code', 1, 'https://ror.org/05yk11s87 United Space Alliance (USA)'),
(40769, 'https://ror.org/040hdjp50', 'en', 1, 'https://ror.org/040hdjp50 United States Army Reserve'),
(40770, 'https://ror.org/04yts9m86', 'es', 1, 'https://ror.org/04yts9m86 Universidad Dr. JosƩ Gregorio HernƔndez'),
(40771, 'https://ror.org/01n0q6e38', 'en', 1, 'https://ror.org/01n0q6e38 Gause Institute of New Antibiotics Russian Academy of Medical Sciences ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠøŠ·Ń‹ŃŠŗŠ°Š½ŠøŃŽ новых антибиотиков им. Š“. Ф. Š“Š°ŃƒŠ·Šµ'),
(40772, 'https://ror.org/05t5rc419', 'en', 1, 'https://ror.org/05t5rc419 Research Institute of Complex Problems of Cardiovascular Disease Russian Academy of Medical Sciences'),
(40773, 'https://ror.org/00f4mz521', 'en', 1, 'https://ror.org/00f4mz521 Institute of Strength Physics and Materials Science Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики прочности Šø Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Š”Šž Š ŠŠ'),
(40774, 'https://ror.org/03af2ad05', 'en', 1, 'https://ror.org/03af2ad05 Institute of Mechanics and Engineering Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики Šø Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ ŠšŠ°Š·ŠŠ¦ Š ŠŠ'),
(40775, 'https://ror.org/009qtkb56', 'en', 1, 'https://ror.org/009qtkb56 Research Institute of Obstetrics and Gynecology named after D.O. Ott ŠŠ˜Š˜ Š°ŠŗŃƒŃˆŠµŃ€ŃŃ‚Š²Š° Šø гинекологии имени Š”. Šž. ŠžŃ‚Ń‚Š°'),
(40776, 'https://ror.org/027n02r78', 'en', 1, 'https://ror.org/027n02r78 Scientific Center of Family Health Problems and Human Reproduction'),
(40777, 'https://ror.org/05bpnjz66', 'en', 1, 'https://ror.org/05bpnjz66 Institute of Pharmacology Russian Academy of Medical Sciences ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фармакологии имени Š’.Š’.Š—Š°ŠŗŃƒŃŠ¾Š²Š°Ā» ... Российской акаГемии'),
(40778, 'https://ror.org/03z90hq89', 'en', 1, 'https://ror.org/03z90hq89 Central Scientific Research Institute of Tuberculosis Russian Academy of Medical Sciences Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»ŠµŠ·Š° Российской акаГемии меГицинских наук'),
(40779, 'https://ror.org/047ax2108', 'en', 1, 'https://ror.org/047ax2108 Federal Research Centre Coal and Coal Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр ŃƒŠ³Š»Ń Šø ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŠø Š”Šž Š ŠŠ'),
(40780, 'https://ror.org/03c94bc04', 'en', 1, 'https://ror.org/03c94bc04 Bakulev Scientific Center for Cardiovascular Surgery Russian Academy of Medical Sciences ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр серГечно-ŃŠ¾ŃŃƒŠ“ŠøŃŃ‚Š¾Š¹ Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø им. А.Š. Š‘Š°ŠŗŃƒŠ»ŠµŠ²Š°'),
(40781, 'https://ror.org/044037f11', 'en', 1, 'https://ror.org/044037f11 Saratov Research Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Даратовский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук'),
(40782, 'https://ror.org/00g4bcb66', 'en', 1, 'https://ror.org/00g4bcb66 Kazan Scientific Center Казанский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š ŠŠ'),
(40783, 'https://ror.org/01ygw1452', 'en', 1, 'https://ror.org/01ygw1452 Institute of Ecological Problems of the North Š£Ń€Šž Š ŠŠ. Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… проблем Девера Š£Ń€Šž Š ŠŠ в соответствии с приказом Š¤ŠŠŠž'),
(40784, 'https://ror.org/00bbt0744', 'en', 1, 'https://ror.org/00bbt0744 Polar Geophysical Institute ŠŸŠ¾Š»ŃŃ€Š½Ń‹Š¹ геофизический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(40785, 'https://ror.org/035y1ap70', 'en', 1, 'https://ror.org/035y1ap70 Institute of Biology of Karelian Research Centre Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии ŠšŠ°Ń€ŠŠ¦ Š ŠŠ'),
(40786, '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 Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр физиологии Šø патологии Š“Ń‹Ń…Š°Š½ŠøŃ'),
(40787, 'https://ror.org/0033hxy10', 'no_lang_code', 1, 'https://ror.org/0033hxy10 Vaisala (United States)'),
(40788, 'https://ror.org/0354taf69', 'en', 1, 'https://ror.org/0354taf69 West African College of Physicians'),
(40789, 'https://ror.org/01r134p51', 'en', 1, 'https://ror.org/01r134p51 Urban Unit'),
(40790, 'https://ror.org/03svd7w08', 'en', 1, 'https://ror.org/03svd7w08 West Midlands Deanery'),
(40791, 'https://ror.org/04anve402', 'en', 1, 'https://ror.org/04anve402 World Intellectual Property Organization'),
(40792, 'https://ror.org/037w3ea30', 'no_lang_code', 1, 'https://ror.org/037w3ea30 WSO2 (Sri Lanka)'),
(40793, 'https://ror.org/017c99632', 'en', 1, 'https://ror.org/017c99632 D.I. Mendeleyev All-Russian Institute for Metrology Š’ŠŠ˜Š˜ метрологии им. Š”.И.МенГелеева, ломоносовское отГеление'),
(40794, 'https://ror.org/02nys7898', 'en', 1, 'https://ror.org/02nys7898 Western Cape Department of Health'),
(40795, 'https://ror.org/051qah137', 'no_lang_code', 1, 'https://ror.org/051qah137 VSL Korea (South Korea)'),
(40796, 'https://ror.org/04bqa9n74', 'en', 1, 'https://ror.org/04bqa9n74 United States Global Change Research Program'),
(40797, 'https://ror.org/00615jn62', 'no_lang_code', 1, 'https://ror.org/00615jn62 Walgreens (United States)'),
(40798, 'https://ror.org/000gm1k91', 'no_lang_code', 1, 'https://ror.org/000gm1k91 John Wiley & Sons (Germany)'),
(40799, 'https://ror.org/05xr5sw33', 'en', 1, 'https://ror.org/05xr5sw33 Virginia Tech Services'),
(40800, 'https://ror.org/05yg67b36', 'en', 1, 'https://ror.org/05yg67b36 Dr Maliso Mphele Hospital'),
(40801, 'https://ror.org/00182ep39', 'no_lang_code', 1, 'https://ror.org/00182ep39 Advanced Photon Sciences (United States)'),
(40802, 'https://ror.org/03fs7vk32', 'no_lang_code', 1, 'https://ror.org/03fs7vk32 American International Group (United States)'),
(40803, 'https://ror.org/04vxpm374', 'no_lang_code', 1, 'https://ror.org/04vxpm374 Aegon (Netherlands)'),
(40804, 'https://ror.org/0506h7130', 'en', 1, 'https://ror.org/0506h7130 Aaron Copland Fund for Music'),
(40805, 'https://ror.org/018axtd57', 'no_lang_code', 1, 'https://ror.org/018axtd57 Array BioPharma (United States)'),
(40806, 'https://ror.org/02mv4ab52', 'en', 1, 'https://ror.org/02mv4ab52 inVentiv Health Clinical'),
(40807, 'https://ror.org/01vd19x80', 'no_lang_code', 1, 'https://ror.org/01vd19x80 Arthrex (United States)'),
(40808, 'https://ror.org/00r7arj43', 'en', 1, 'https://ror.org/00r7arj43 Central Bank of Uzbekistan O''zbekiston Respublikasi Markaziy banki ŠŽŠ·Š±ŠµŠŗŠøŃŃ‚Š¾Š½ Республикаси ŠœŠ°Ń€ŠŗŠ°Š·ŠøŠ¹ Банки'),
(40809, 'https://ror.org/01gh6ja41', 'no_lang_code', 1, 'https://ror.org/01gh6ja41 Alltech (United States)'),
(40810, 'https://ror.org/024eb0f34', 'hu', 1, 'https://ror.org/024eb0f34 BM Központi KórhÔz'),
(40811, 'https://ror.org/0504sy495', 'no_lang_code', 1, 'https://ror.org/0504sy495 Arthrex (Germany)'),
(40812, 'https://ror.org/05pae1j85', 'no_lang_code', 1, 'https://ror.org/05pae1j85 AES (Brazil)'),
(40813, 'https://ror.org/04v748538', 'no_lang_code', 1, 'https://ror.org/04v748538 Abbott (Japan) ć‚¢ćƒœćƒƒćƒˆ'),
(40814, 'https://ror.org/053evkn98', 'no_lang_code', 1, 'https://ror.org/053evkn98 Abbott (South Korea)'),
(40815, 'https://ror.org/03r5jfv76', 'no_lang_code', 1, 'https://ror.org/03r5jfv76 Amerisure Insurance (United States)'),
(40816, 'https://ror.org/03538jp08', 'no_lang_code', 1, 'https://ror.org/03538jp08 AbbVie (Germany)'),
(40817, 'https://ror.org/006nxzf98', 'no_lang_code', 1, 'https://ror.org/006nxzf98 Ashland (United States)'),
(40818, 'https://ror.org/05mqjj634', 'no_lang_code', 1, 'https://ror.org/05mqjj634 Aesculap (United States)'),
(40819, 'https://ror.org/03f5nqa05', 'no_lang_code', 1, 'https://ror.org/03f5nqa05 Aboca (Italy)'),
(40820, 'https://ror.org/03yfbaq97', 'no_lang_code', 1, 'https://ror.org/03yfbaq97 Harman (United States)'),
(40821, 'https://ror.org/02q017026', 'en', 1, 'https://ror.org/02q017026 Asian Center for Theological Studies and Mission ģ•„ģ„øģ•„ģ—°ķ•©ģ‹ ķ•™ėŒ€ķ•™źµ'),
(40822, 'https://ror.org/010e8pt90', 'no_lang_code', 1, 'https://ror.org/010e8pt90 Abu Dhabi National Oil (United Arab Emirates) ؓركة ŲØŲŖŲ±ŁˆŁ„ أبوظبي Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(40823, 'https://ror.org/00vhvv548', 'no_lang_code', 1, 'https://ror.org/00vhvv548 Andersen (United States)'),
(40824, 'https://ror.org/00k672v31', 'no_lang_code', 1, 'https://ror.org/00k672v31 DuPont (Brazil)'),
(40825, 'https://ror.org/054p3p004', 'en', 1, 'https://ror.org/054p3p004 Academy of Medical Royal Colleges'),
(40826, 'https://ror.org/004nr3476', 'no_lang_code', 1, 'https://ror.org/004nr3476 Amdocs (United States)'),
(40827, 'https://ror.org/038xyrg49', 'no_lang_code', 1, 'https://ror.org/038xyrg49 Africagrowth Institute (South Africa)'),
(40828, 'https://ror.org/04xwqjy30', 'no_lang_code', 1, 'https://ror.org/04xwqjy30 Ameren (United States)'),
(40829, 'https://ror.org/02av6ek82', 'en', 1, 'https://ror.org/02av6ek82 American Academy in Berlin'),
(40830, 'https://ror.org/000dp5151', 'no_lang_code', 1, 'https://ror.org/000dp5151 Anecova (Switzerland)'),
(40831, 'https://ror.org/01ngwgb14', 'no_lang_code', 1, 'https://ror.org/01ngwgb14 AspenTech (United States)'),
(40832, 'https://ror.org/04k0x3905', 'en', 1, 'https://ror.org/04k0x3905 American Academy of Fixed Prosthodontics'),
(40833, 'https://ror.org/05raay295', 'en', 1, 'https://ror.org/05raay295 Agfa HealthCare'),
(40834, 'https://ror.org/0196eae03', 'en', 1, 'https://ror.org/0196eae03 American Academy of Nursing'),
(40835, 'https://ror.org/05bz49965', 'no_lang_code', 1, 'https://ror.org/05bz49965 Angelini Pharma (Italy)'),
(40836, 'https://ror.org/00amzdz67', 'no_lang_code', 1, 'https://ror.org/00amzdz67 ASSAB Pacific (Singapore)'),
(40837, 'https://ror.org/02h5zfy21', 'en', 1, 'https://ror.org/02h5zfy21 Accident Compensation Corporation Te Kaporeihana Āwhina Hunga Whara'),
(40838, 'https://ror.org/05b6ef038', 'en', 1, 'https://ror.org/05b6ef038 American Academy of Psychiatry and the Law'),
(40839, 'https://ror.org/01vctnd13', 'nl', 1, 'https://ror.org/01vctnd13 Vereniging Achmea'),
(40840, 'https://ror.org/01nxpwc48', 'en', 1, 'https://ror.org/01nxpwc48 American College of Neuropsychopharmacology'),
(40841, 'https://ror.org/04vmsnf37', 'no_lang_code', 1, 'https://ror.org/04vmsnf37 Assurant (United States)'),
(40842, 'https://ror.org/03v8gvx29', 'en', 1, 'https://ror.org/03v8gvx29 American College of Psychiatrists'),
(40843, 'https://ror.org/0461tyx67', 'no_lang_code', 1, 'https://ror.org/0461tyx67 Agram (Poland)'),
(40844, 'https://ror.org/02s995827', 'no_lang_code', 1, 'https://ror.org/02s995827 Allergan (Germany)'),
(40845, 'https://ror.org/051sg1a03', 'no_lang_code', 1, 'https://ror.org/051sg1a03 AOL (United States)'),
(40846, 'https://ror.org/04vdmc602', 'no_lang_code', 1, 'https://ror.org/04vdmc602 Honda (United States)'),
(40847, 'https://ror.org/03bs3bh63', 'no_lang_code', 1, 'https://ror.org/03bs3bh63 Actualis (France)');
INSERT INTO `rors` VALUES
(40848, 'https://ror.org/018nw3344', 'no_lang_code', 1, 'https://ror.org/018nw3344 AstraZeneca (Australia)'),
(40849, 'https://ror.org/04de57j78', 'no_lang_code', 1, 'https://ror.org/04de57j78 Apex Innovations (United States)'),
(40850, 'https://ror.org/00pv14226', 'no_lang_code', 1, 'https://ror.org/00pv14226 Acxiom (United States)'),
(40851, 'https://ror.org/02cm5rz95', 'no_lang_code', 1, 'https://ror.org/02cm5rz95 Koch Agronomic Services (United States)'),
(40852, 'https://ror.org/034bqzm84', 'no_lang_code', 1, 'https://ror.org/034bqzm84 Adecco (Switzerland)'),
(40853, 'https://ror.org/00h1xaa75', 'no_lang_code', 1, 'https://ror.org/00h1xaa75 AstraZeneca (South Korea) ķ•œźµ­ģ•„ģŠ¤ķŠøė¼ģ œė„¤ģ¹“'),
(40854, 'https://ror.org/017kta585', 'no_lang_code', 1, 'https://ror.org/017kta585 Adivit (Spain)'),
(40855, 'https://ror.org/059tvcg64', 'no_lang_code', 1, 'https://ror.org/059tvcg64 Adobe Systems (United States)'),
(40856, 'https://ror.org/04q7j9m29', 'en', 1, 'https://ror.org/04q7j9m29 Arkansas Agricultural Experiment Station'),
(40857, 'https://ror.org/02hx58q14', 'no_lang_code', 1, 'https://ror.org/02hx58q14 Alabama Power (United States)'),
(40858, 'https://ror.org/03gxxv409', 'en', 1, 'https://ror.org/03gxxv409 Rama Dental College Hospital & Research Centre'),
(40859, 'https://ror.org/02w6yjb02', 'no_lang_code', 1, 'https://ror.org/02w6yjb02 Advanced Fiber Technologies (United States)'),
(40860, 'https://ror.org/05ts6js78', 'no_lang_code', 1, 'https://ror.org/05ts6js78 Baker Hughes (United States)'),
(40861, 'https://ror.org/02t5chg71', 'en', 1, 'https://ror.org/02t5chg71 Alberta Foundation for the Arts'),
(40862, 'https://ror.org/044wc7t32', 'en', 1, 'https://ror.org/044wc7t32 Australian College of Rural and Remote Medicine'),
(40863, 'https://ror.org/006twj174', 'no_lang_code', 1, 'https://ror.org/006twj174 Berthold (Australia)'),
(40864, 'https://ror.org/040ybj657', 'en', 1, 'https://ror.org/040ybj657 Banco Central de Venezuela Central Bank of Venezuela'),
(40865, 'https://ror.org/04gx7mb59', 'tr', 1, 'https://ror.org/04gx7mb59 Selçuk Üniversitesi Tıp Fakültesi Hastanesi'),
(40866, 'https://ror.org/00yn60108', 'en', 1, 'https://ror.org/00yn60108 Australian Mathematical Sciences Institute'),
(40867, 'https://ror.org/02pap8190', 'no_lang_code', 1, 'https://ror.org/02pap8190 Biognos (Sweden)'),
(40868, 'https://ror.org/006tvg625', 'en', 1, 'https://ror.org/006tvg625 Bank of America'),
(40869, 'https://ror.org/05arhrm06', 'en', 1, 'https://ror.org/05arhrm06 Shura Council'),
(40870, 'https://ror.org/013k56n15', 'no_lang_code', 1, 'https://ror.org/013k56n15 Australian Wool Innovation (Australia)'),
(40871, 'https://ror.org/03revcz59', 'en', 1, 'https://ror.org/03revcz59 Water and Power Development Authority واٹر Ų§ŪŒŁ†Śˆ پاور ŚˆŪŒŁˆŁ„Ł¾Ł…Ł†Ł¹ اتھارٹی'),
(40872, 'https://ror.org/018kq8f36', 'no_lang_code', 1, 'https://ror.org/018kq8f36 Borsa Istanbul (Turkey)'),
(40873, 'https://ror.org/041vyyf82', 'no_lang_code', 1, 'https://ror.org/041vyyf82 Avaya (United States)'),
(40874, 'https://ror.org/01xe6j451', 'no_lang_code', 1, 'https://ror.org/01xe6j451 Bupa'),
(40875, 'https://ror.org/04q0d9a06', 'no_lang_code', 1, 'https://ror.org/04q0d9a06 Avisonic (Taiwan)'),
(40876, 'https://ror.org/04p3h2z50', 'no_lang_code', 1, 'https://ror.org/04p3h2z50 Bank of New York Mellon'),
(40877, 'https://ror.org/019w40127', 'no_lang_code', 1, 'https://ror.org/019w40127 Barnes & Noble (United States)'),
(40878, 'https://ror.org/03wj7cn78', 'no_lang_code', 1, 'https://ror.org/03wj7cn78 AxisCades (India)'),
(40879, 'https://ror.org/043xe1r71', 'no_lang_code', 1, 'https://ror.org/043xe1r71 C-M Concrete Products (Australia)'),
(40880, 'https://ror.org/03q4sef08', 'no_lang_code', 1, 'https://ror.org/03q4sef08 BASIS International (United States)'),
(40881, 'https://ror.org/05gmmwe91', 'no_lang_code', 1, 'https://ror.org/05gmmwe91 Britannia University'),
(40882, 'https://ror.org/01zrkhb76', 'no_lang_code', 1, 'https://ror.org/01zrkhb76 Stanley Black & Decker (United States)'),
(40883, 'https://ror.org/02cpn5v29', 'no_lang_code', 1, 'https://ror.org/02cpn5v29 Bausch Health (Ireland)'),
(40884, 'https://ror.org/02arrmv90', 'en', 1, 'https://ror.org/02arrmv90 Islamic Azad University of Ayatollah Amoli دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ آیت الله Ų¢Ł…Ł„ŪŒ'),
(40885, 'https://ror.org/02v8s3859', 'en', 1, 'https://ror.org/02v8s3859 Azad University in Oxford'),
(40886, 'https://ror.org/00fw4m615', 'no_lang_code', 1, 'https://ror.org/00fw4m615 Cablevision (United States)'),
(40887, 'https://ror.org/040fqas51', 'no_lang_code', 1, 'https://ror.org/040fqas51 Baxalta (United States)'),
(40888, 'https://ror.org/02czsq936', 'en', 1, 'https://ror.org/02czsq936 British Institute for the Study of Iraq'),
(40889, 'https://ror.org/039x3s865', 'no_lang_code', 1, 'https://ror.org/039x3s865 B. Braun (United States)'),
(40890, 'https://ror.org/00bgchx11', 'en', 1, 'https://ror.org/00bgchx11 Blue Cross Blue Shield of Massachusetts'),
(40891, 'https://ror.org/0474dbm94', 'en', 1, 'https://ror.org/0474dbm94 British Institute of Persian Studies'),
(40892, 'https://ror.org/00ag9jk61', 'no_lang_code', 1, 'https://ror.org/00ag9jk61 Cabot (United States)'),
(40893, 'https://ror.org/02t1a0v32', 'no_lang_code', 1, 'https://ror.org/02t1a0v32 BMC Software (United States)'),
(40894, 'https://ror.org/013jp2d40', 'en', 1, 'https://ror.org/013jp2d40 British School at Athens Βρετανική Σχολή Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(40895, 'https://ror.org/04w8xa018', 'no_lang_code', 1, 'https://ror.org/04w8xa018 Cadence Design Systems (United States)'),
(40896, 'https://ror.org/002em1b68', 'no_lang_code', 1, 'https://ror.org/002em1b68 Casappa (Italy)'),
(40897, 'https://ror.org/03djfm287', 'en', 1, 'https://ror.org/03djfm287 British Universities North America Club'),
(40898, 'https://ror.org/00e2fqy76', 'no_lang_code', 1, 'https://ror.org/00e2fqy76 BMW of North America (United States)'),
(40899, 'https://ror.org/03p9skh04', 'no_lang_code', 1, 'https://ror.org/03p9skh04 Brother International (United States)'),
(40900, 'https://ror.org/01gymhc20', 'no_lang_code', 1, 'https://ror.org/01gymhc20 Benteler (Germany)'),
(40901, 'https://ror.org/02v616z87', 'no_lang_code', 1, 'https://ror.org/02v616z87 BNP Paribas (France)'),
(40902, 'https://ror.org/05407ka75', 'en', 1, 'https://ror.org/05407ka75 Catholic Biblical Association'),
(40903, 'https://ror.org/02wtecw28', 'de', 1, 'https://ror.org/02wtecw28 Sparkassen-Finanzgruppe'),
(40904, 'https://ror.org/05w4b5488', 'no_lang_code', 1, 'https://ror.org/05w4b5488 CellGenix (Germany)'),
(40905, 'https://ror.org/02jv94566', 'no_lang_code', 1, 'https://ror.org/02jv94566 Canon (United States)'),
(40906, 'https://ror.org/00ycyk215', 'no_lang_code', 1, 'https://ror.org/00ycyk215 Chemtrix (Netherlands)'),
(40907, 'https://ror.org/02trn6p95', 'es', 1, 'https://ror.org/02trn6p95 Comisión Sectorial de Investigación Científica'),
(40908, 'https://ror.org/00svp7168', 'no_lang_code', 1, 'https://ror.org/00svp7168 Capital One (United States)'),
(40909, 'https://ror.org/0511bn634', 'no_lang_code', 1, 'https://ror.org/0511bn634 Chiesi (Italy)'),
(40910, 'https://ror.org/01zh8gn91', 'no_lang_code', 1, 'https://ror.org/01zh8gn91 Companhia EnergƩtica de Pernambuco'),
(40911, 'https://ror.org/02fv0rq89', 'no_lang_code', 1, 'https://ror.org/02fv0rq89 Computational Diagnostics (United States)'),
(40912, 'https://ror.org/028w99c90', 'no_lang_code', 1, 'https://ror.org/028w99c90 China United Network Communications Group (China) äø­å›½č”åˆē½‘ē»œé€šäæ”é›†å›¢ęœ‰é™å…¬åø'),
(40913, 'https://ror.org/01kr64963', 'no_lang_code', 1, 'https://ror.org/01kr64963 Xura (United States)'),
(40914, 'https://ror.org/04t59qd02', 'no_lang_code', 1, 'https://ror.org/04t59qd02 China Power Engineering Consulting Group (China)'),
(40915, 'https://ror.org/05rcqjk71', 'no_lang_code', 1, 'https://ror.org/05rcqjk71 Consolidated Contractors Company (Greece) ؓركة Ų§ŲŖŲ­Ų§ŲÆ Ų§Ł„Ł…Ł‚Ų§ŁˆŁ„ŁŠŁ†'),
(40916, 'https://ror.org/04c3ymz82', 'pt', 1, 'https://ror.org/04c3ymz82 Faculdade de Tecnologia e CiĆŖncias'),
(40917, 'https://ror.org/03qfn8998', 'no_lang_code', 1, 'https://ror.org/03qfn8998 Depomed (United States)'),
(40918, 'https://ror.org/0414wrz80', 'no_lang_code', 1, 'https://ror.org/0414wrz80 United Continental (United States)'),
(40919, 'https://ror.org/027m3jw27', 'no_lang_code', 1, 'https://ror.org/027m3jw27 Embraco (Brazil)'),
(40920, 'https://ror.org/05n06xd29', 'no_lang_code', 1, 'https://ror.org/05n06xd29 Groupe ArtƩmis (France)'),
(40921, 'https://ror.org/05kdesr16', 'no_lang_code', 1, 'https://ror.org/05kdesr16 Convergys (United States)'),
(40922, 'https://ror.org/014mx8j54', 'no_lang_code', 1, 'https://ror.org/014mx8j54 Devon Energy (United States)'),
(40923, 'https://ror.org/05mzfgt17', 'en', 1, 'https://ror.org/05mzfgt17 Institute of Advanced Study in Science and Technology'),
(40924, 'https://ror.org/0423rx754', 'no_lang_code', 1, 'https://ror.org/0423rx754 Converse (United States)'),
(40925, 'https://ror.org/00gream49', 'no_lang_code', 1, 'https://ror.org/00gream49 DHL (United States)'),
(40926, 'https://ror.org/01x735t80', 'no_lang_code', 1, 'https://ror.org/01x735t80 CoreQuest (Switzerland)'),
(40927, 'https://ror.org/02n7mrn32', 'no_lang_code', 1, 'https://ror.org/02n7mrn32 Chubu Electric Power (Japan) äø­éƒØé›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(40928, 'https://ror.org/05awrb105', 'no_lang_code', 1, 'https://ror.org/05awrb105 Discovery Communications (United States)'),
(40929, 'https://ror.org/041e5xy86', 'no_lang_code', 1, 'https://ror.org/041e5xy86 Chugoku Marine Paints (Japan) äø­å›½å”—ę–™ę Ŗå¼ä¼šē¤¾'),
(40930, 'https://ror.org/008dyv188', 'no_lang_code', 1, 'https://ror.org/008dyv188 EMS (Canada)'),
(40931, 'https://ror.org/04e433w04', 'no_lang_code', 1, 'https://ror.org/04e433w04 Cornerstone Specialty Wood Products (United States)'),
(40932, 'https://ror.org/03rec7637', 'no_lang_code', 1, 'https://ror.org/03rec7637 Cigna (United States)'),
(40933, 'https://ror.org/03cm6ap49', 'no_lang_code', 1, 'https://ror.org/03cm6ap49 Endo (Ireland)'),
(40934, 'https://ror.org/013w40a11', 'no_lang_code', 1, 'https://ror.org/013w40a11 eNeura (United States)'),
(40935, 'https://ror.org/013pjny96', 'en', 1, 'https://ror.org/013pjny96 Council for British Research in the Levant'),
(40936, 'https://ror.org/03t89te61', 'no_lang_code', 1, 'https://ror.org/03t89te61 Mubadala (United Arab Emirates)'),
(40937, 'https://ror.org/04m514a38', 'en', 1, 'https://ror.org/04m514a38 Clarity Centre for Sensor Web Technologies'),
(40938, 'https://ror.org/04ps7x844', 'no_lang_code', 1, 'https://ror.org/04ps7x844 FedEx (United States)'),
(40939, 'https://ror.org/03k082032', 'no_lang_code', 1, 'https://ror.org/03k082032 News Corp (United States)'),
(40940, 'https://ror.org/00davj510', 'en', 1, 'https://ror.org/00davj510 Canadian Council of Professional Engineers IngƩnieurs Canada'),
(40941, 'https://ror.org/029sxjy20', 'no_lang_code', 1, 'https://ror.org/029sxjy20 Ferrotec (United States)'),
(40942, 'https://ror.org/05253sv14', 'no_lang_code', 1, 'https://ror.org/05253sv14 Enreco 2000 (Spain)'),
(40943, 'https://ror.org/058ay4m70', 'en', 1, 'https://ror.org/058ay4m70 CRC Health Group'),
(40944, 'https://ror.org/05mztcw68', 'no_lang_code', 1, 'https://ror.org/05mztcw68 Clyde Bergemann Power Group'),
(40945, 'https://ror.org/04v8c9r98', 'no_lang_code', 1, 'https://ror.org/04v8c9r98 Fidelity Investments (United States)'),
(40946, 'https://ror.org/01bahfb02', 'en', 1, 'https://ror.org/01bahfb02 Enterprise Community Partners'),
(40947, 'https://ror.org/030r69d22', 'no_lang_code', 1, 'https://ror.org/030r69d22 Duke Energy (United States)'),
(40948, 'https://ror.org/0428exr50', 'no_lang_code', 1, 'https://ror.org/0428exr50 Environmental Systems Research Institute (United States)'),
(40949, 'https://ror.org/03bfyaa19', 'no_lang_code', 1, 'https://ror.org/03bfyaa19 Goodyear (United States)'),
(40950, 'https://ror.org/034y4c446', 'no_lang_code', 1, 'https://ror.org/034y4c446 Epistar (Taiwan)'),
(40951, 'https://ror.org/016rj7614', 'no_lang_code', 1, 'https://ror.org/016rj7614 Coffey International (Australia)'),
(40952, 'https://ror.org/036s7bw54', 'no_lang_code', 1, 'https://ror.org/036s7bw54 Cognizant (United States)'),
(40953, 'https://ror.org/00djdkd68', 'en', 1, 'https://ror.org/00djdkd68 Daejeon Theological University'),
(40954, 'https://ror.org/00kj48v07', 'no_lang_code', 1, 'https://ror.org/00kj48v07 Foxnum Technology (Taiwan)'),
(40955, 'https://ror.org/04hr2ce79', 'no_lang_code', 1, 'https://ror.org/04hr2ce79 Low & Bonar (Netherlands)'),
(40956, 'https://ror.org/0562x8a64', 'no_lang_code', 1, 'https://ror.org/0562x8a64 Daewoo Shipbuilding and Marine Engineering (South Korea) ėŒ€ģš°ģ”°ģ„ ķ•“ģ–‘'),
(40957, 'https://ror.org/020gja105', 'no_lang_code', 1, 'https://ror.org/020gja105 ERAS Labo (France)'),
(40958, 'https://ror.org/03x76j861', 'no_lang_code', 1, 'https://ror.org/03x76j861 Dynegy (United States)'),
(40959, 'https://ror.org/02029yx61', 'no_lang_code', 1, 'https://ror.org/02029yx61 Ecolab (United States)'),
(40960, 'https://ror.org/020kg3x12', 'no_lang_code', 1, 'https://ror.org/020kg3x12 Ernst & Young (United Kingdom)'),
(40961, 'https://ror.org/02ga7kh69', 'no_lang_code', 1, 'https://ror.org/02ga7kh69 Freddie Mac (United States)'),
(40962, 'https://ror.org/04jhyte11', 'no_lang_code', 1, 'https://ror.org/04jhyte11 Edwards Lifesciences (United States)'),
(40963, 'https://ror.org/020314m54', 'no_lang_code', 1, 'https://ror.org/020314m54 Effigis (Canada)'),
(40964, 'https://ror.org/043f79m81', 'no_lang_code', 1, 'https://ror.org/043f79m81 Neovii Biotech (Germany)'),
(40965, 'https://ror.org/01dmk9z19', 'no_lang_code', 1, 'https://ror.org/01dmk9z19 HollyFrontier (United States)'),
(40966, 'https://ror.org/03g9c1e75', 'no_lang_code', 1, 'https://ror.org/03g9c1e75 Delta Air Lines (United States)'),
(40967, 'https://ror.org/02z4faz68', 'no_lang_code', 1, 'https://ror.org/02z4faz68 Eisai (South Korea) ķ•œźµ­ģ—ģžģ“'),
(40968, 'https://ror.org/03qt57y19', 'no_lang_code', 1, 'https://ror.org/03qt57y19 Perrigo (Ireland)'),
(40969, 'https://ror.org/04rbbpv92', 'no_lang_code', 1, 'https://ror.org/04rbbpv92 J-Power (Japan) é›»ęŗé–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(40970, 'https://ror.org/047nvfh18', 'no_lang_code', 1, 'https://ror.org/047nvfh18 Global Green Synergy (Malaysia)'),
(40971, 'https://ror.org/05qc7pm63', 'no_lang_code', 1, 'https://ror.org/05qc7pm63 Hannover Re (Germany) Hannover Rück'),
(40972, 'https://ror.org/034e5n787', 'no_lang_code', 1, 'https://ror.org/034e5n787 Volkswagen Group (United States)'),
(40973, 'https://ror.org/03p5mga34', 'no_lang_code', 1, 'https://ror.org/03p5mga34 Element Six (Luxembourg)'),
(40974, 'https://ror.org/017fwsj06', 'no_lang_code', 1, 'https://ror.org/017fwsj06 Fujifilm (United States)'),
(40975, 'https://ror.org/031rnv444', 'no_lang_code', 1, 'https://ror.org/031rnv444 Goldman Sachs (United States)'),
(40976, 'https://ror.org/00ed89w50', 'en', 1, 'https://ror.org/00ed89w50 Hanyoung Theological University ķ•œģ˜ģ‹ ķ•™ėŒ€ķ•™źµ'),
(40977, 'https://ror.org/036ddx961', 'no_lang_code', 1, 'https://ror.org/036ddx961 ELITech Group (France)'),
(40978, 'https://ror.org/05tkfe889', 'no_lang_code', 1, 'https://ror.org/05tkfe889 Evenflo (United States)'),
(40979, 'https://ror.org/020x0wx65', 'no_lang_code', 1, 'https://ror.org/020x0wx65 Caesars Entertainment (United States)'),
(40980, 'https://ror.org/04etgav66', 'no_lang_code', 1, 'https://ror.org/04etgav66 Colgate-Palmolive (Switzerland)'),
(40981, 'https://ror.org/059dt4t68', 'no_lang_code', 1, 'https://ror.org/059dt4t68 HistoGenetics (United States)'),
(40982, 'https://ror.org/007by2j19', 'no_lang_code', 1, 'https://ror.org/007by2j19 Histogenics (United States)'),
(40983, 'https://ror.org/0030s7a45', 'no_lang_code', 1, 'https://ror.org/0030s7a45 Grape King (Taiwan) č‘”č„ēŽ‹ē”ŸęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(40984, 'https://ror.org/04b0w1821', 'no_lang_code', 1, 'https://ror.org/04b0w1821 Hiwin Technologies (Taiwan)'),
(40985, 'https://ror.org/00k98ea94', 'no_lang_code', 1, 'https://ror.org/00k98ea94 Hokuriku Electric Power Company (Japan) åŒ—é™øé›»åŠ›'),
(40986, 'https://ror.org/01h5w6873', 'en', 1, 'https://ror.org/01h5w6873 Scandinavian Seminar'),
(40987, 'https://ror.org/03wnt7k73', 'no_lang_code', 1, 'https://ror.org/03wnt7k73 Hormel (United States)'),
(40988, 'https://ror.org/04zk59080', 'sv', 1, 'https://ror.org/04zk59080 Greta och Johan Kocks stiftelser'),
(40989, 'https://ror.org/02thwp314', 'no_lang_code', 1, 'https://ror.org/02thwp314 Helixor Heilmittel (Germany)'),
(40990, 'https://ror.org/00t2kp174', 'en', 1, 'https://ror.org/00t2kp174 HSBC'),
(40991, 'https://ror.org/03khvgd78', 'no_lang_code', 1, 'https://ror.org/03khvgd78 Imedex (United States)'),
(40992, 'https://ror.org/03f6f0r93', 'no_lang_code', 1, 'https://ror.org/03f6f0r93 Guardian Life Insurance Company of America (United States)'),
(40993, 'https://ror.org/024wrq886', 'en', 1, 'https://ror.org/024wrq886 Helpmann Academy'),
(40994, 'https://ror.org/01bkg3b56', 'no_lang_code', 1, 'https://ror.org/01bkg3b56 Gene Bridges (Germany)'),
(40995, 'https://ror.org/05j4m3n18', 'no_lang_code', 1, 'https://ror.org/05j4m3n18 Immediate Post Concussion Assessment and Cognitive Testing (United States)'),
(40996, 'https://ror.org/04gh7n706', 'no_lang_code', 1, 'https://ror.org/04gh7n706 HEB Grocery Company (United States)'),
(40997, 'https://ror.org/01kdzkq48', 'no_lang_code', 1, 'https://ror.org/01kdzkq48 Helsinn (Switzerland)'),
(40998, 'https://ror.org/05dw0xd38', 'no_lang_code', 1, 'https://ror.org/05dw0xd38 Huvepharma (Bulgaria)'),
(40999, 'https://ror.org/05xfrjs60', 'no_lang_code', 1, 'https://ror.org/05xfrjs60 Helsinn Therapeutics (United States)'),
(41000, 'https://ror.org/03kgyg741', 'no_lang_code', 1, 'https://ror.org/03kgyg741 General Mills (United States)'),
(41001, 'https://ror.org/02bwvpt98', 'no_lang_code', 1, 'https://ror.org/02bwvpt98 Hyosung Corporation (South Korea) ķšØģ„±'),
(41002, 'https://ror.org/05dwsnj39', 'en', 1, 'https://ror.org/05dwsnj39 ING Direct'),
(41003, 'https://ror.org/04f1ha654', 'no_lang_code', 1, 'https://ror.org/04f1ha654 M S Jacovides (Greece)'),
(41004, 'https://ror.org/014y40p65', 'no_lang_code', 1, 'https://ror.org/014y40p65 H.B. Fuller (United States)'),
(41005, 'https://ror.org/00zbk1w77', 'no_lang_code', 1, 'https://ror.org/00zbk1w77 Hess (United States)'),
(41006, 'https://ror.org/028394g81', 'no_lang_code', 1, 'https://ror.org/028394g81 Hyundai Motors (United States)'),
(41007, 'https://ror.org/013s2jj70', 'no_lang_code', 1, 'https://ror.org/013s2jj70 Hill Holliday (United States)'),
(41008, 'https://ror.org/05njgh475', 'no_lang_code', 1, 'https://ror.org/05njgh475 Genomic Health (United States)'),
(41009, 'https://ror.org/00gwhv923', 'no_lang_code', 1, 'https://ror.org/00gwhv923 Hasbro (United States)'),
(41010, 'https://ror.org/05v5ypf73', 'no_lang_code', 1, 'https://ror.org/05v5ypf73 Cerberus Capital Management (United States)'),
(41011, 'https://ror.org/01fvgpx90', 'fr', 1, 'https://ror.org/01fvgpx90 Institut FranƧais de Finlande'),
(41012, 'https://ror.org/005v57z85', 'en', 1, 'https://ror.org/005v57z85 IC Design Education Center ė°˜ė„ģ²“ģ„¤ź³„ źµģœ”ģ„¼ķ„°'),
(41013, 'https://ror.org/013gvmj95', 'no_lang_code', 1, 'https://ror.org/013gvmj95 Hallmark Cards (United States)'),
(41014, 'https://ror.org/01tw2tw87', 'no_lang_code', 1, 'https://ror.org/01tw2tw87 Gentronix (United Kingdom)'),
(41015, 'https://ror.org/05kgq6h80', 'no_lang_code', 1, 'https://ror.org/05kgq6h80 NBCUniversal (United States)'),
(41016, 'https://ror.org/00exehz38', 'no_lang_code', 1, 'https://ror.org/00exehz38 Handok (South Korea) ķ•œė…'),
(41017, 'https://ror.org/01h30nm18', 'no_lang_code', 1, 'https://ror.org/01h30nm18 JCPenney (United States)'),
(41018, 'https://ror.org/03xn5qt57', 'no_lang_code', 1, 'https://ror.org/03xn5qt57 Landsvirkjun (Iceland)'),
(41019, 'https://ror.org/02ra35s50', 'no_lang_code', 1, 'https://ror.org/02ra35s50 Georgia Power (United States)'),
(41020, 'https://ror.org/02hbw4f89', 'no_lang_code', 1, 'https://ror.org/02hbw4f89 Lantheus Medical Imaging (United States)'),
(41021, 'https://ror.org/05g9jck81', 'no_lang_code', 1, 'https://ror.org/05g9jck81 MediaTek (Taiwan) čÆē™¼ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(41022, 'https://ror.org/04xxqgb42', 'no_lang_code', 1, 'https://ror.org/04xxqgb42 Leco Corporation (United States)'),
(41023, 'https://ror.org/02qb40709', 'no_lang_code', 1, 'https://ror.org/02qb40709 Medical Insurance Group Australia'),
(41024, 'https://ror.org/02ewpfp83', 'no_lang_code', 1, 'https://ror.org/02ewpfp83 Medicure (Canada)'),
(41025, 'https://ror.org/02qj9w984', 'no_lang_code', 1, 'https://ror.org/02qj9w984 Getra (Italy)'),
(41026, 'https://ror.org/01pkcvt97', 'no_lang_code', 1, 'https://ror.org/01pkcvt97 JetBlue (United States)'),
(41027, 'https://ror.org/05ek3nq77', 'no_lang_code', 1, 'https://ror.org/05ek3nq77 Ghelfi Ondulati (Italy)'),
(41028, 'https://ror.org/00basdj35', 'no_lang_code', 1, 'https://ror.org/00basdj35 Lexmark (United States)'),
(41029, 'https://ror.org/00t625d81', 'no_lang_code', 1, 'https://ror.org/00t625d81 John Deere (United States)'),
(41030, 'https://ror.org/00mc4x834', 'no_lang_code', 1, 'https://ror.org/00mc4x834 Ahold Delhaize (United States)'),
(41031, 'https://ror.org/02ky6c719', 'no_lang_code', 1, 'https://ror.org/02ky6c719 Johnson Controls (United States)'),
(41032, 'https://ror.org/0539hqx70', 'en', 1, 'https://ror.org/0539hqx70 Millennium Challenge Corporation'),
(41033, 'https://ror.org/01tvfmc06', 'no_lang_code', 1, 'https://ror.org/01tvfmc06 Glasbau Hahn (Germany)'),
(41034, 'https://ror.org/001d3rx39', 'no_lang_code', 1, 'https://ror.org/001d3rx39 Milliman (United States)'),
(41035, 'https://ror.org/02sqcy831', 'en', 1, 'https://ror.org/02sqcy831 Global Cardiovascular Innovation Center'),
(41036, 'https://ror.org/00drp2z27', 'en', 1, 'https://ror.org/00drp2z27 LighterLife'),
(41037, 'https://ror.org/05tm9j755', 'no_lang_code', 1, 'https://ror.org/05tm9j755 Mitsui & Co (Japan) 三井物産'),
(41038, 'https://ror.org/045p8e908', 'no_lang_code', 1, 'https://ror.org/045p8e908 Mochida Pharmaceutical (Japan) ęŒē”°č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(41039, 'https://ror.org/042cj6q83', 'no_lang_code', 1, 'https://ror.org/042cj6q83 Nintendo (United States)'),
(41040, 'https://ror.org/00x7b5g69', 'no_lang_code', 1, 'https://ror.org/00x7b5g69 Moog (United States)'),
(41041, 'https://ror.org/045by4v54', 'en', 1, 'https://ror.org/045by4v54 Louisiana Sea Grant'),
(41042, 'https://ror.org/03rxtcd18', 'no_lang_code', 1, 'https://ror.org/03rxtcd18 Kalgoorlie Consolidated Gold Mines (Australia)'),
(41043, 'https://ror.org/02zjyrw66', 'en', 1, 'https://ror.org/02zjyrw66 Niskamoon Corporation'),
(41044, 'https://ror.org/00387ef87', 'no_lang_code', 1, 'https://ror.org/00387ef87 Motley Fool (United States)'),
(41045, 'https://ror.org/05k7s2p27', 'no_lang_code', 1, 'https://ror.org/05k7s2p27 Nonin Medical (United States)'),
(41046, 'https://ror.org/01hafxd32', 'no_lang_code', 1, 'https://ror.org/01hafxd32 Motorola (United States)'),
(41047, 'https://ror.org/05mv9af24', 'no_lang_code', 1, 'https://ror.org/05mv9af24 M&T Bank (United States)'),
(41048, 'https://ror.org/01wff4j64', 'no_lang_code', 1, 'https://ror.org/01wff4j64 Macy''s (United States)'),
(41049, 'https://ror.org/011k8d702', 'no_lang_code', 1, 'https://ror.org/011k8d702 Mount Sylvia Diatomite (Australia)'),
(41050, 'https://ror.org/00hbzbs53', 'no_lang_code', 1, 'https://ror.org/00hbzbs53 MTS Systems (United States)'),
(41051, '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'),
(41052, 'https://ror.org/01nvzzy80', 'no_lang_code', 1, 'https://ror.org/01nvzzy80 China Energy Engineering Corporation (China) äø­å›½čƒ½ęŗå»ŗč®¾č‚”ä»½ęœ‰é™å…¬åø'),
(41053, 'https://ror.org/04g3ykc66', 'en', 1, 'https://ror.org/04g3ykc66 Maine Sea Grant'),
(41054, 'https://ror.org/01b2bzj52', 'no_lang_code', 1, 'https://ror.org/01b2bzj52 Kellogg''s (United States)'),
(41055, 'https://ror.org/05ff6z697', 'en', 1, 'https://ror.org/05ff6z697 Major League Baseball'),
(41056, 'https://ror.org/021q58r72', 'no_lang_code', 1, 'https://ror.org/021q58r72 Kiadis Pharma (Netherlands)'),
(41057, 'https://ror.org/05phbf047', 'no_lang_code', 1, 'https://ror.org/05phbf047 Micro Focus (United States)'),
(41058, 'https://ror.org/02gyqgr85', 'no_lang_code', 1, 'https://ror.org/02gyqgr85 NanoFlex Power (United States)'),
(41059, 'https://ror.org/036dqy506', 'no_lang_code', 1, 'https://ror.org/036dqy506 NuVasive (United States)'),
(41060, 'https://ror.org/01xcsye48', 'en', 1, 'https://ror.org/01xcsye48 Kings Health Partners'),
(41061, 'https://ror.org/01e01nd60', 'en', 1, 'https://ror.org/01e01nd60 National Academy of Social Insurance'),
(41062, 'https://ror.org/02x50w080', 'no_lang_code', 1, 'https://ror.org/02x50w080 Interacoustics (Denmark)'),
(41063, 'https://ror.org/00s7bz409', 'no_lang_code', 1, 'https://ror.org/00s7bz409 Oerlikon (Switzerland)'),
(41064, 'https://ror.org/009vsv572', 'no_lang_code', 1, 'https://ror.org/009vsv572 Kingston Technology (United States)'),
(41065, 'https://ror.org/000s6jb73', 'no_lang_code', 1, 'https://ror.org/000s6jb73 PNC Financial Services (United States)'),
(41066, 'https://ror.org/01rjsge60', 'no_lang_code', 1, 'https://ror.org/01rjsge60 Office Depot (United States)'),
(41067, 'https://ror.org/04nvtmr42', 'no_lang_code', 1, 'https://ror.org/04nvtmr42 Interface (United States)'),
(41068, 'https://ror.org/03q6w3828', 'no_lang_code', 1, 'https://ror.org/03q6w3828 International Paper (United States)'),
(41069, 'https://ror.org/04qf4wy02', 'no_lang_code', 1, 'https://ror.org/04qf4wy02 Omnitek Engineering (United States)'),
(41070, 'https://ror.org/00g5dc702', 'no_lang_code', 1, 'https://ror.org/00g5dc702 OncoMed (United States)'),
(41071, 'https://ror.org/043cxr310', 'no_lang_code', 1, 'https://ror.org/043cxr310 Mastercard (United States)'),
(41072, 'https://ror.org/01dhcr905', 'no_lang_code', 1, 'https://ror.org/01dhcr905 Nationwide Mutual Insurance Company (United States)'),
(41073, 'https://ror.org/04y8p8435', 'no_lang_code', 1, 'https://ror.org/04y8p8435 Kronotex (Germany)'),
(41074, 'https://ror.org/00863rv26', 'no_lang_code', 1, 'https://ror.org/00863rv26 Mattel (United States)'),
(41075, 'https://ror.org/039w3f025', 'no_lang_code', 1, 'https://ror.org/039w3f025 McDermott International (United States)'),
(41076, 'https://ror.org/03t0k7069', 'no_lang_code', 1, 'https://ror.org/03t0k7069 McDonald''s (United States)'),
(41077, 'https://ror.org/01gr09x64', 'no_lang_code', 1, 'https://ror.org/01gr09x64 Orica (Australia)'),
(41078, 'https://ror.org/056yt6m90', 'no_lang_code', 1, 'https://ror.org/056yt6m90 iRhythm (United States)'),
(41079, 'https://ror.org/04nbnrt83', 'no_lang_code', 1, 'https://ror.org/04nbnrt83 New Balance (United States)'),
(41080, 'https://ror.org/02fjxcw19', 'en', 1, 'https://ror.org/02fjxcw19 New South Wales Institute of Psychiatry'),
(41081, 'https://ror.org/050384c29', 'en', 1, 'https://ror.org/050384c29 Kyungwoon University ź²½ģš“ėŒ€ķ•™źµ'),
(41082, 'https://ror.org/05sxqt066', 'en', 1, 'https://ror.org/05sxqt066 McNeil Center for Early American Studies'),
(41083, 'https://ror.org/03a4nen96', 'no_lang_code', 1, 'https://ror.org/03a4nen96 New York Life Insurance Company (United States)'),
(41084, 'https://ror.org/01sn6ez28', 'en', 1, 'https://ror.org/01sn6ez28 Manpower Development Corporation'),
(41085, 'https://ror.org/05nb24p55', 'no_lang_code', 1, 'https://ror.org/05nb24p55 LF Driscoll'),
(41086, 'https://ror.org/02y85x967', 'no_lang_code', 1, 'https://ror.org/02y85x967 Otter Tail Corporation (United States)'),
(41087, 'https://ror.org/05p4pn188', 'no_lang_code', 1, 'https://ror.org/05p4pn188 Mead Johnson (United States)'),
(41088, 'https://ror.org/04gecbm52', 'no_lang_code', 1, 'https://ror.org/04gecbm52 Lam Research (United States)'),
(41089, 'https://ror.org/039yyjw43', 'en', 1, 'https://ror.org/039yyjw43 Royal Anthropological Institute'),
(41090, 'https://ror.org/02vv5t298', 'no_lang_code', 1, 'https://ror.org/02vv5t298 Newcrest Mining (Australia)'),
(41091, 'https://ror.org/02tbw3b35', 'en', 1, 'https://ror.org/02tbw3b35 Islamic Azad University of Shahrekord دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓهرکرد'),
(41092, 'https://ror.org/04wvs0518', 'en', 1, 'https://ror.org/04wvs0518 Porticus'),
(41093, 'https://ror.org/05mbtn536', 'no_lang_code', 1, 'https://ror.org/05mbtn536 Newsweek (United States)'),
(41094, 'https://ror.org/04qxsp544', 'no_lang_code', 1, 'https://ror.org/04qxsp544 Newman''s Own (United States)'),
(41095, 'https://ror.org/034yr0a74', 'no_lang_code', 1, 'https://ror.org/034yr0a74 Royal Caribbean Cruises (United States)'),
(41096, 'https://ror.org/03hagz796', 'no_lang_code', 1, 'https://ror.org/03hagz796 Pantarhei Bioscience (Netherlands)'),
(41097, 'https://ror.org/01swa5m73', 'en', 1, 'https://ror.org/01swa5m73 Royal College of Midwives'),
(41098, 'https://ror.org/03y0dv989', 'en', 1, 'https://ror.org/03y0dv989 Qaemshahr Islamic Azad University دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد قائمؓهر'),
(41099, 'https://ror.org/006023154', 'no_lang_code', 1, 'https://ror.org/006023154 Safeco Insurance'),
(41100, 'https://ror.org/01e8jps31', 'no_lang_code', 1, 'https://ror.org/01e8jps31 Israel Ports Development and Assets (Israel)'),
(41101, 'https://ror.org/040aqz944', 'no_lang_code', 1, 'https://ror.org/040aqz944 Cargill (Netherlands)'),
(41102, 'https://ror.org/05fy6my48', 'no_lang_code', 1, 'https://ror.org/05fy6my48 Prudential Financial (United States)'),
(41103, 'https://ror.org/04rxdpa15', 'no_lang_code', 1, 'https://ror.org/04rxdpa15 Sprint (United States)'),
(41104, 'https://ror.org/042pnza07', 'no_lang_code', 1, 'https://ror.org/042pnza07 Pfizer (Australia)'),
(41105, 'https://ror.org/03grdwb80', 'no_lang_code', 1, 'https://ror.org/03grdwb80 Sanofi (South Korea) 사노피-ģ•„ė²¤ķ‹°ģŠ¤ 코리아'),
(41106, 'https://ror.org/00902tq54', 'no_lang_code', 1, 'https://ror.org/00902tq54 Stanvac Superon Group (India)'),
(41107, 'https://ror.org/02sx1y706', 'no_lang_code', 1, 'https://ror.org/02sx1y706 Sears Holdings (United States)'),
(41108, 'https://ror.org/03cp14g09', 'no_lang_code', 1, 'https://ror.org/03cp14g09 QuikTrip (United States)'),
(41109, 'https://ror.org/04vwfqp33', 'no_lang_code', 1, 'https://ror.org/04vwfqp33 Sanwa Hydrotech (Japan) äø‰å’Œćƒć‚¤ćƒ‰ćƒ­ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(41110, 'https://ror.org/00a3cy009', 'en', 1, 'https://ror.org/00a3cy009 Phi Beta Kappa Society'),
(41111, 'https://ror.org/02cwzn382', 'no_lang_code', 1, 'https://ror.org/02cwzn382 Senko Medical Instrument Manufacturing (Japan)'),
(41112, 'https://ror.org/03fs66f88', 'no_lang_code', 1, 'https://ror.org/03fs66f88 Pitney Bowes (United States)'),
(41113, 'https://ror.org/03f34pe19', 'no_lang_code', 1, 'https://ror.org/03f34pe19 Starbucks (United States)'),
(41114, 'https://ror.org/01gbhv690', 'no_lang_code', 1, 'https://ror.org/01gbhv690 Systems, Applications & Products in Data Processing (United States)'),
(41115, 'https://ror.org/05mkyac79', 'no_lang_code', 1, 'https://ror.org/05mkyac79 Target (United States)'),
(41116, 'https://ror.org/03nqwhd11', 'no_lang_code', 1, 'https://ror.org/03nqwhd11 Saudi Arabia Basic Industries (Saudi Arabia) Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© للصناعات Ų§Ł„Ų£Ų³Ų§Ų³ŁŠŲ© ، سابك'),
(41117, 'https://ror.org/04sg05j02', 'no_lang_code', 1, 'https://ror.org/04sg05j02 Tarix Orphan (United States)'),
(41118, 'https://ror.org/04c2h1p08', 'no_lang_code', 1, 'https://ror.org/04c2h1p08 State Farm (United States)'),
(41119, 'https://ror.org/00tyghb97', 'no_lang_code', 1, 'https://ror.org/00tyghb97 RefleXion Medical (United States)'),
(41120, 'https://ror.org/034kb7s93', 'no_lang_code', 1, 'https://ror.org/034kb7s93 Tasly Holding Group (China)'),
(41121, 'https://ror.org/02x5pe091', 'no_lang_code', 1, 'https://ror.org/02x5pe091 SCG Chemicals (Thailand)'),
(41122, 'https://ror.org/03d8jhc95', 'no_lang_code', 1, 'https://ror.org/03d8jhc95 Steelcase (United States)'),
(41123, 'https://ror.org/01pf6nd13', 'no_lang_code', 1, 'https://ror.org/01pf6nd13 TD Bank'),
(41124, 'https://ror.org/018nbcn37', 'en', 1, 'https://ror.org/018nbcn37 Rhode Island Sea Grant'),
(41125, 'https://ror.org/00343m182', 'no_lang_code', 1, 'https://ror.org/00343m182 Subway (United States)'),
(41126, 'https://ror.org/00qeyvx79', 'en', 1, 'https://ror.org/00qeyvx79 Sino-Swedish Centre for Tree-Ring Research'),
(41127, 'https://ror.org/017q93w69', 'no_lang_code', 1, 'https://ror.org/017q93w69 Ricoh (United States)'),
(41128, 'https://ror.org/025pp6560', 'no_lang_code', 1, 'https://ror.org/025pp6560 WestRock (United States)'),
(41129, 'https://ror.org/00pxa0p67', 'no_lang_code', 1, 'https://ror.org/00pxa0p67 Slack Incorporated (United States)'),
(41130, 'https://ror.org/01y2r8f15', 'en', 1, 'https://ror.org/01y2r8f15 United States Institute for Theatre Technology'),
(41131, 'https://ror.org/03eqw9e29', 'en', 1, 'https://ror.org/03eqw9e29 Teachers Insurance and Annuity Association of America'),
(41132, 'https://ror.org/043kws463', 'no_lang_code', 1, 'https://ror.org/043kws463 Sun Nuclear (United States)'),
(41133, 'https://ror.org/012rn8104', 'no_lang_code', 1, 'https://ror.org/012rn8104 Tidewater (United States)'),
(41134, 'https://ror.org/045xx6g59', 'no_lang_code', 1, 'https://ror.org/045xx6g59 Time Warner (United States)'),
(41135, 'https://ror.org/04p3nq874', 'no_lang_code', 1, 'https://ror.org/04p3nq874 Sunoco (United States)'),
(41136, 'https://ror.org/01ncqna34', 'en', 1, 'https://ror.org/01ncqna34 Southern California Clinical and Translational Science Institute'),
(41137, 'https://ror.org/04p0q7p15', 'no_lang_code', 1, 'https://ror.org/04p0q7p15 SurveyMonkey (United States)'),
(41138, 'https://ror.org/02g9vj608', 'en', 1, 'https://ror.org/02g9vj608 University and College Union'),
(41139, 'https://ror.org/01c61x273', 'no_lang_code', 1, 'https://ror.org/01c61x273 Folha (Brazil)'),
(41140, 'https://ror.org/01aqjb686', 'no_lang_code', 1, 'https://ror.org/01aqjb686 Svenska Cellulosa (Sweden)'),
(41141, 'https://ror.org/04vqdec11', 'no_lang_code', 1, 'https://ror.org/04vqdec11 Southwest Airlines (United States)'),
(41142, 'https://ror.org/05rs18f71', 'no_lang_code', 1, 'https://ror.org/05rs18f71 Toagosei (Japan) ę±äŗžåˆęˆę Ŗå¼ä¼šē¤¾'),
(41143, 'https://ror.org/00aa5f051', 'no_lang_code', 1, 'https://ror.org/00aa5f051 Unum Group (United States)'),
(41144, 'https://ror.org/04mekkx88', 'no_lang_code', 1, 'https://ror.org/04mekkx88 Spirit AeroSystems (United States)'),
(41145, 'https://ror.org/05jh79p16', 'no_lang_code', 1, 'https://ror.org/05jh79p16 American Airlines (United States)'),
(41146, 'https://ror.org/01gxb6382', 'no_lang_code', 1, 'https://ror.org/01gxb6382 Swisse (Australia)'),
(41147, 'https://ror.org/042dm9855', 'no_lang_code', 1, 'https://ror.org/042dm9855 Aegon (United States)'),
(41148, 'https://ror.org/03d2tka35', 'no_lang_code', 1, 'https://ror.org/03d2tka35 TransUnion (United States)'),
(41149, 'https://ror.org/00ymj2634', 'en', 1, 'https://ror.org/00ymj2634 United Services Automobile Association'),
(41150, 'https://ror.org/049aqs582', 'no_lang_code', 1, 'https://ror.org/049aqs582 Valley National Bank (United States)'),
(41151, 'https://ror.org/00wqj7c25', 'no_lang_code', 1, 'https://ror.org/00wqj7c25 Tupperware Brands (United States)'),
(41152, 'https://ror.org/005y87145', 'no_lang_code', 1, 'https://ror.org/005y87145 Vargƶn Alloys (Sweden)'),
(41153, 'https://ror.org/01f93vk95', 'no_lang_code', 1, 'https://ror.org/01f93vk95 Graham Holdings (United States)'),
(41154, 'https://ror.org/00ws8h732', 'no_lang_code', 1, 'https://ror.org/00ws8h732 Tyson Foods (United States)'),
(41155, 'https://ror.org/02gfwng46', 'no_lang_code', 1, 'https://ror.org/02gfwng46 Whirlpool (United States)'),
(41156, 'https://ror.org/0185z7g17', 'no_lang_code', 1, 'https://ror.org/0185z7g17 Vifor Pharma (Switzerland)'),
(41157, 'https://ror.org/01eac6f58', 'no_lang_code', 1, 'https://ror.org/01eac6f58 WD-40 (United States)'),
(41158, 'https://ror.org/03zhv0t98', 'no_lang_code', 1, 'https://ror.org/03zhv0t98 WSFS Financial Corporation (United States)'),
(41159, 'https://ror.org/03agewr40', 'no_lang_code', 1, 'https://ror.org/03agewr40 Webster Bank (United States)'),
(41160, 'https://ror.org/040rcm367', 'no_lang_code', 1, 'https://ror.org/040rcm367 Virtual Materials Group (Canada)'),
(41161, 'https://ror.org/015sfke75', 'no_lang_code', 1, 'https://ror.org/015sfke75 Vivus (United States)'),
(41162, 'https://ror.org/0398xv274', 'en', 1, 'https://ror.org/0398xv274 Daeshin University ėŒ€ģ‹ ėŒ€ķ•™źµ'),
(41163, 'https://ror.org/01geb0342', 'no_lang_code', 1, 'https://ror.org/01geb0342 Anthem (United States)'),
(41164, 'https://ror.org/00rr9fv20', 'no_lang_code', 1, 'https://ror.org/00rr9fv20 Vulcan (United States)'),
(41165, 'https://ror.org/00bj1nn86', 'en', 1, 'https://ror.org/00bj1nn86 National Science Digital Library'),
(41166, 'https://ror.org/0139q7h64', 'no_lang_code', 1, 'https://ror.org/0139q7h64 W.W Grainger (United States)'),
(41167, 'https://ror.org/00cty0112', 'no_lang_code', 1, 'https://ror.org/00cty0112 Takasago (Japan) é«˜ē ‚é¦™ę–™å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(41168, 'https://ror.org/050mv4p70', 'no_lang_code', 1, 'https://ror.org/050mv4p70 Yamaha (United States)'),
(41169, 'https://ror.org/037r2ff59', 'no_lang_code', 1, 'https://ror.org/037r2ff59 Wells Fargo (United States)'),
(41170, 'https://ror.org/03z9hh605', 'en', 1, 'https://ror.org/03z9hh605 Division of Antarctic Infrastructure and Logistics'),
(41171, 'https://ror.org/00rztgq82', 'no_lang_code', 1, 'https://ror.org/00rztgq82 Tampieri Financial Group (Italy)'),
(41172, 'https://ror.org/04ya3kq71', 'en', 1, 'https://ror.org/04ya3kq71 Polar Environment, Safety and Health Section'),
(41173, 'https://ror.org/04evh7y43', 'en', 1, 'https://ror.org/04evh7y43 Division of Acquisition and Cooperative Support'),
(41174, 'https://ror.org/02e3cth88', 'no_lang_code', 1, 'https://ror.org/02e3cth88 Zyvex (United States)'),
(41175, 'https://ror.org/025dabr11', 'en', 1, 'https://ror.org/025dabr11 Division of Institution and Award Support'),
(41176, 'https://ror.org/04vw0kz07', 'en', 1, 'https://ror.org/04vw0kz07 Division of Human Resource Management'),
(41177, 'https://ror.org/00h3byr70', 'en', 1, 'https://ror.org/00h3byr70 New Jersey Department of Labor and Workforce Development'),
(41178, 'https://ror.org/02fyqee34', 'en', 1, 'https://ror.org/02fyqee34 Dormitory Authority of the State of New York'),
(41179, 'https://ror.org/05baev169', 'en', 1, 'https://ror.org/05baev169 United States Commission of Fine Arts'),
(41180, 'https://ror.org/02h8s2s90', 'en', 1, 'https://ror.org/02h8s2s90 United States Election Assistance Commission'),
(41181, 'https://ror.org/00k4x4z35', 'en', 1, 'https://ror.org/00k4x4z35 State Justice Institute'),
(41182, 'https://ror.org/007mwgz28', 'en', 1, 'https://ror.org/007mwgz28 National Telecommunication Regulatory Authority'),
(41183, 'https://ror.org/04spzbf72', 'en', 1, 'https://ror.org/04spzbf72 Office of Public Health Genomics'),
(41184, 'https://ror.org/02e5dc168', 'en', 1, 'https://ror.org/02e5dc168 Center for Global Health'),
(41185, 'https://ror.org/05xhe5a74', 'en', 1, 'https://ror.org/05xhe5a74 Tertiary Education Commission'),
(41186, 'https://ror.org/01sharn77', 'en', 1, 'https://ror.org/01sharn77 Office of Multidisciplinary Activities'),
(41187, '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'),
(41188, 'https://ror.org/0060a9610', 'en', 1, 'https://ror.org/0060a9610 Canadian Nuclear Safety Commission Commission Canadienne de SƻretƩ NuclƩaire'),
(41189, 'https://ror.org/026z8zb87', 'en', 1, 'https://ror.org/026z8zb87 Nambucca Shire Council'),
(41190, 'https://ror.org/051475v86', 'en', 1, 'https://ror.org/051475v86 Indian National Science Academy'),
(41191, 'https://ror.org/0300bh485', 'en', 1, 'https://ror.org/0300bh485 Clarence Valley Council'),
(41192, 'https://ror.org/02ah1da87', 'en', 1, 'https://ror.org/02ah1da87 Office of Management'),
(41193, 'https://ror.org/01ny6q882', 'en', 1, 'https://ror.org/01ny6q882 National Academy of Agricultural Sciences'),
(41194, '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'),
(41195, 'https://ror.org/027xqjj19', 'en', 1, 'https://ror.org/027xqjj19 Confederated Tribes of Siletz Indians'),
(41196, 'https://ror.org/01kxhfp75', 'en', 1, 'https://ror.org/01kxhfp75 National Museum of American History'),
(41197, 'https://ror.org/01xsmwp79', 'no_lang_code', 1, 'https://ror.org/01xsmwp79 Springer Nature (United States)'),
(41198, 'https://ror.org/03bjn0010', 'en', 1, 'https://ror.org/03bjn0010 National Research Council'),
(41199, 'https://ror.org/03k2ghn57', 'en', 1, 'https://ror.org/03k2ghn57 Markedsmodningsfonden Market Development Fund'),
(41200, 'https://ror.org/01es48562', 'en', 1, 'https://ror.org/01es48562 Gerald R. Ford Presidential Library and Museum'),
(41201, 'https://ror.org/05hhm9a98', 'en', 1, 'https://ror.org/05hhm9a98 Savannah River Operations Office'),
(41202, 'https://ror.org/05hsv7e61', 'en', 1, 'https://ror.org/05hsv7e61 Office of Economic Impact and Diversity'),
(41203, 'https://ror.org/03ck0h361', 'en', 1, 'https://ror.org/03ck0h361 Ministry of Education and Science ŌæÖ€Õ©ÕøÖ‚Õ©ÕµÕ”Õ¶ և Õ£Õ«ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ Õ¶Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(41204, 'https://ror.org/03bytya42', 'en', 1, 'https://ror.org/03bytya42 Pasukan Polis Singapura Singapore Police Force ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®•ą®¾ą®µą®²ąÆ துறை ę–°åŠ å”č­¦åÆŸéƒØé˜Ÿ'),
(41205, 'https://ror.org/00ddr8x91', 'en', 1, 'https://ror.org/00ddr8x91 Fund for Armenian Relief'),
(41206, 'https://ror.org/0013shd50', 'no_lang_code', 1, 'https://ror.org/0013shd50 Novartis (Germany)'),
(41207, 'https://ror.org/017dfq504', 'en', 1, 'https://ror.org/017dfq504 Creative New Zealand'),
(41208, 'https://ror.org/00sxn7a20', 'en', 1, 'https://ror.org/00sxn7a20 Korea Human Resource Development Institute for Health and Welfare'),
(41209, 'https://ror.org/00vhg8h29', 'en', 1, 'https://ror.org/00vhg8h29 Korea Health Personnel Licensing Examination Institute ķ•œźµ­ė³“ź±“ģ˜ė£Œģøźµ­ź°€ģ‹œķ—˜ģ›'),
(41210, 'https://ror.org/00bhv3b03', 'en', 1, 'https://ror.org/00bhv3b03 Institute of Circulatory and Respiratory Health'),
(41211, 'https://ror.org/021j14906', 'en', 1, 'https://ror.org/021j14906 National Pension Service źµ­ėÆ¼ģ—°źøˆź³µė‹Ø'),
(41212, 'https://ror.org/05err5w18', 'en', 1, 'https://ror.org/05err5w18 Manatū Mō Te Taiao Ministry for the Environment'),
(41213, 'https://ror.org/05wdecy17', 'en', 1, 'https://ror.org/05wdecy17 Institute of Infection and Immunity'),
(41214, 'https://ror.org/01xwqek41', 'en', 1, 'https://ror.org/01xwqek41 Australian Federal Police'),
(41215, 'https://ror.org/05hp8wn67', 'en', 1, 'https://ror.org/05hp8wn67 Department of Internal Affairs Te Tari Taiwhenua'),
(41216, 'https://ror.org/054bxds61', 'en', 1, 'https://ror.org/054bxds61 Agência Nacional de Águas National Water Agency'),
(41217, 'https://ror.org/027k9sa32', 'en', 1, 'https://ror.org/027k9sa32 National Institute of Food and Drug Safety Evaluation'),
(41218, 'https://ror.org/02c8msm58', 'en', 1, 'https://ror.org/02c8msm58 Kaitohutohu Kaupapa Rawa New Zealand Treasury Treasury'),
(41219, 'https://ror.org/019cns802', 'en', 1, 'https://ror.org/019cns802 Jeju International University'),
(41220, 'https://ror.org/03vpfss84', 'en', 1, 'https://ror.org/03vpfss84 Institute of Musculoskeletal Health and Arthritis'),
(41221, 'https://ror.org/05nct1z71', 'en', 1, 'https://ror.org/05nct1z71 Institute of Nutrition, Metabolism and Diabetes'),
(41222, 'https://ror.org/04dh0w640', 'en', 1, 'https://ror.org/04dh0w640 Institute of Population and Public Health'),
(41223, 'https://ror.org/05y0c7g28', 'en', 1, 'https://ror.org/05y0c7g28 Reserve Bank of New Zealand'),
(41224, 'https://ror.org/02dd61a62', 'en', 1, 'https://ror.org/02dd61a62 An Chomhairle EalaĆ­on Arts Council'),
(41225, 'https://ror.org/03cbzve16', 'en', 1, 'https://ror.org/03cbzve16 An Roinn Oideachais agus Scileanna Department of Education and Skills'),
(41226, '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'),
(41227, 'https://ror.org/0030qkm60', 'en', 1, 'https://ror.org/0030qkm60 National Academy of Sciences ėŒ€ķ•œėÆ¼źµ­ķ•™ģˆ ģ›'),
(41228, 'https://ror.org/04d81ed36', 'en', 1, 'https://ror.org/04d81ed36 Technology Information, Forecasting and Assessment Council ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą„‚ą¤šą¤Øą¤¾, ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤Øą„ą¤®ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤®ą„‚ą¤²ą„ą¤Æą¤¾ą¤‚ą¤•ą¤Ø परिषद'),
(41229, 'https://ror.org/0250say61', 'en', 1, 'https://ror.org/0250say61 Taiwan Food and Drug Administration'),
(41230, 'https://ror.org/03reeve97', 'en', 1, 'https://ror.org/03reeve97 National Quarantine Station'),
(41231, 'https://ror.org/026g3rz20', 'pt', 1, 'https://ror.org/026g3rz20 Instituto Nacional de CiĆŖncia e Tecnologia em Toxinas'),
(41232, 'https://ror.org/021w6yj26', 'en', 1, 'https://ror.org/021w6yj26 Western Integrated Pest Management Center'),
(41233, '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'),
(41234, 'https://ror.org/033d3q980', 'fr', 1, 'https://ror.org/033d3q980 Eurostat Eurostat – Statistiques europĆ©ennes Statistische Amt der EuropƤischen Union'),
(41235, 'https://ror.org/03p9jms48', 'en', 1, 'https://ror.org/03p9jms48 Beijing Cultural Development Foundation åŒ—äŗ¬ę–‡åŒ–å‘å±•åŸŗé‡‘ä¼š'),
(41236, 'https://ror.org/03728bb41', 'en', 1, 'https://ror.org/03728bb41 Direction GĆ©nĆ©rale de l’interprĆ©tation Directorate-General for Interpretation Generaldirektion Dolmetschen'),
(41237, 'https://ror.org/004xgw192', 'en', 1, 'https://ror.org/004xgw192 Air Navigation and Weather Services'),
(41238, 'https://ror.org/04h21q173', 'en', 1, 'https://ror.org/04h21q173 Ministarstvo kulture Ministry of Culture of the Republic of Croatia'),
(41239, 'https://ror.org/035e9j894', 'en', 1, 'https://ror.org/035e9j894 Teaching Learning & Research Initiative'),
(41240, 'https://ror.org/00fe7gj91', 'no_lang_code', 1, 'https://ror.org/00fe7gj91 Excellerate (Australia)'),
(41241, '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'),
(41242, 'https://ror.org/008zm7t63', 'en', 1, 'https://ror.org/008zm7t63 National Bureau of Statistics of China äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶ē»Ÿč®”å±€'),
(41243, 'https://ror.org/056frtj18', 'en', 1, 'https://ror.org/056frtj18 China Atomic Energy Authority å›½å®¶åŽŸå­čƒ½ęœŗęž„'),
(41244, 'https://ror.org/03mkee371', 'en', 1, 'https://ror.org/03mkee371 General Organization for Social Insurance المؤسسة العامة Ł„Ł„ŲŖŲ£Ł…ŁŠŁ†Ų§ŲŖ Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(41245, 'https://ror.org/03zqvfs52', 'en', 1, 'https://ror.org/03zqvfs52 Israel National Road Safety Authority'),
(41246, 'https://ror.org/04ywhbc61', 'en', 1, 'https://ror.org/04ywhbc61 Australian e-Health Research Centre'),
(41247, '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'),
(41248, 'https://ror.org/01m909h91', 'en', 1, 'https://ror.org/01m909h91 Bureau of International Cooperation 国际合作局'),
(41249, 'https://ror.org/02vw5s254', 'en', 1, 'https://ror.org/02vw5s254 Ministry of Unification ķ†µģ¼ė¶€'),
(41250, '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'),
(41251, 'https://ror.org/056r9ej12', 'en', 1, 'https://ror.org/056r9ej12 Ministry of Economic Development and Technology'),
(41252, 'https://ror.org/0113pfa64', 'en', 1, 'https://ror.org/0113pfa64 Ministry of Government Legislation ė²•ģ œģ²˜'),
(41253, 'https://ror.org/00y19mj60', 'en', 1, 'https://ror.org/00y19mj60 Department of Environment and Conservation'),
(41254, 'https://ror.org/04h8m0888', 'en', 1, 'https://ror.org/04h8m0888 Direction GƩnƩrale Commerce Directorate-General for Trade Generaldirektion Handel'),
(41255, 'https://ror.org/03a11m818', 'en', 1, 'https://ror.org/03a11m818 Islamic Azad University Central Tehran Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران Ł…Ų±Ś©Ų²ŪŒ'),
(41256, 'https://ror.org/00caave48', 'en', 1, 'https://ror.org/00caave48 National Intelligence Service ėŒ€ķ•œėÆ¼źµ­źµ­ź°€ģ •ė³“ģ›'),
(41257, 'https://ror.org/03tajza86', 'fr', 1, 'https://ror.org/03tajza86 Agence de la BiomƩdecine'),
(41258, 'https://ror.org/04vctsm14', 'en', 1, 'https://ror.org/04vctsm14 Department of Social Services'),
(41259, 'https://ror.org/03bgts378', 'en', 1, 'https://ror.org/03bgts378 Board of Audit and Inspection 감사원'),
(41260, 'https://ror.org/01kjdwm51', 'en', 1, 'https://ror.org/01kjdwm51 Department of the Prime Minister and Cabinet'),
(41261, 'https://ror.org/00vgtfh11', 'en', 1, 'https://ror.org/00vgtfh11 National Human Rights Commission of Korea źµ­ź°€ģøź¶Œģœ„ģ›ķšŒ'),
(41262, 'https://ror.org/01zavdj36', 'en', 1, 'https://ror.org/01zavdj36 Ministry of Health and Social Affairs Socialdepartementet'),
(41263, 'https://ror.org/053bwq229', 'en', 1, 'https://ror.org/053bwq229 Centrum fƶr Idrottsforskning Swedish Research Council for Sport Science'),
(41264, 'https://ror.org/04dpna982', 'en', 1, 'https://ror.org/04dpna982 Korea Fair Trade Commission ź³µģ •ź±°ėž˜ģœ„ģ›ķšŒ'),
(41265, 'https://ror.org/03nvkc167', 'en', 1, 'https://ror.org/03nvkc167 Ministry of Foreign Affairs of Denmark Udenrigsministeriet'),
(41266, 'https://ror.org/02ywp9g98', 'fr', 1, 'https://ror.org/02ywp9g98 Commissariat GƩnƩral Ơ l''Investissement'),
(41267, 'https://ror.org/04p181a07', 'en', 1, 'https://ror.org/04p181a07 BeskƦftigelsesministeriet Danish Ministry of Employment');
INSERT INTO `rors` VALUES
(41268, 'https://ror.org/046gt4s87', 'en', 1, 'https://ror.org/046gt4s87 Ministry of Infrastructure, Transport and Networks ΄πουργείο Ī„Ļ€ĪæĪ“ĪæĪ¼ĻŽĪ½, ĪœĪµĻ„Ī±Ļ†ĪæĻĻŽĪ½ και Ī”Ī¹ĪŗĻ„ĻĻ‰Ī½'),
(41269, 'https://ror.org/03wejsv15', 'en', 1, 'https://ror.org/03wejsv15 Ministry of Defence ą¤°ą¤•ą„ą¤·ą¤¾ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(41270, 'https://ror.org/016d6bq56', 'en', 1, 'https://ror.org/016d6bq56 Aeronautical Development Agency'),
(41271, 'https://ror.org/01s9gyx13', 'en', 1, 'https://ror.org/01s9gyx13 Anti Corruption and Civil Rights Commission źµ­ėÆ¼ź¶Œģµģœ„ģ›ķšŒ'),
(41272, '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'),
(41273, 'https://ror.org/01swt4h11', 'en', 1, 'https://ror.org/01swt4h11 Supreme Court of Korea ėŒ€ķ•œėÆ¼źµ­ ėŒ€ė²•ģ›'),
(41274, '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'),
(41275, 'https://ror.org/01rkgg256', 'en', 1, 'https://ror.org/01rkgg256 Korea Customs Service ꓀세청'),
(41276, 'https://ror.org/04kk1a460', 'es', 1, 'https://ror.org/04kk1a460 Fundación Pablo García'),
(41277, 'https://ror.org/00nas8g50', 'de', 1, 'https://ror.org/00nas8g50 Fonds Gesundes Ɩsterreich'),
(41278, 'https://ror.org/04mq24005', 'en', 1, 'https://ror.org/04mq24005 Public Procurement Service 씰달청'),
(41279, 'https://ror.org/01j5kpq29', 'en', 1, 'https://ror.org/01j5kpq29 Florida Sea Grant'),
(41280, 'https://ror.org/037yznf56', 'en', 1, 'https://ror.org/037yznf56 Kementerian Sumber Asli dan Alam Sekitar Ministry of Natural Resources and Environment'),
(41281, 'https://ror.org/05c2t0m16', 'pt', 1, 'https://ror.org/05c2t0m16 Fundação de Apoio à Pesquisa do Rio Grande do Norte'),
(41282, 'https://ror.org/004g7jm05', 'en', 1, 'https://ror.org/004g7jm05 Statistics Korea 통계청'),
(41283, 'https://ror.org/03cen2c33', 'pt', 1, 'https://ror.org/03cen2c33 Fundação de Amparo à Pesquisa do Espírito Santo'),
(41284, 'https://ror.org/038e03x62', 'en', 1, 'https://ror.org/038e03x62 Supreme Prosecutors Office of the Republic of Korea 검찰청'),
(41285, 'https://ror.org/04w9gdv63', 'en', 1, 'https://ror.org/04w9gdv63 Parliament of Australia'),
(41286, 'https://ror.org/05q25dx05', 'en', 1, 'https://ror.org/05q25dx05 Kementerian Tenaga, Teknologi Hijau dan Air Ministry of Energy Green Technology and Water'),
(41287, 'https://ror.org/01ckass20', 'en', 1, 'https://ror.org/01ckass20 Military Manpower Administration 병묓청'),
(41288, 'https://ror.org/031a9h652', 'en', 1, 'https://ror.org/031a9h652 Kementerian Kebudayaan, Masyarakat dan Belia Ministry of Culture, Community and Youth ą®•ą®²ą®¾ą®šą®¾ą®°, ą®šą®®ąÆ‚ą®•, ą®‡ą®³ąÆˆą®Æą®°ąÆą®¤ąÆą®±ąÆˆ ą®…ą®®ąÆˆą®šąÆą®šąÆ ę–‡åŒ–ć€ē¤¾åŒŗåŠé’å¹“éƒØ'),
(41289, 'https://ror.org/03msax388', 'en', 1, 'https://ror.org/03msax388 Gauteng Department of Agriculture and Rural Development'),
(41290, 'https://ror.org/02tsh5b53', 'en', 1, 'https://ror.org/02tsh5b53 Majlis Kebudayaan Kebangsaan Singapura National Arts Council å›½å®¶č‰ŗęœÆē†äŗ‹ä¼š'),
(41291, 'https://ror.org/02h77vn79', 'ro', 1, 'https://ror.org/02h77vn79 Ministerul Muncii, Familiei, Protecţiei Sociale şi Persoanelor Vârstnice'),
(41292, 'https://ror.org/00gw7hd69', 'fr', 1, 'https://ror.org/00gw7hd69 Observatoire National sur les Effets du RƩchauffement Climatique'),
(41293, 'https://ror.org/05j2t3d29', 'en', 1, 'https://ror.org/05j2t3d29 Ministry for Foreign Affairs, Education and Culture'),
(41294, 'https://ror.org/05ft5aq05', 'en', 1, 'https://ror.org/05ft5aq05 JTC Corporation č£•å»Šé›†å›¢'),
(41295, 'https://ror.org/00e0ttj68', 'en', 1, 'https://ror.org/00e0ttj68 Bundesministerium für wirtschaftliche Zusammenarbeit und Entwicklung Federal Ministry of Economic Cooperation and Development'),
(41296, 'https://ror.org/00rb16m44', 'en', 1, 'https://ror.org/00rb16m44 Emberi ErőforrĆ”sok MinisztĆ©rium Ministry of Human Capacities'),
(41297, 'https://ror.org/05x57gp50', 'en', 1, 'https://ror.org/05x57gp50 Korean National Police Agency 경찰청'),
(41298, 'https://ror.org/01t8drk63', 'en', 1, 'https://ror.org/01t8drk63 Land Transport Authority Penguasa Pengangkutan Darat ą®Øą®æą®²ą®ŖąÆ ą®ŖąÆ‹ą®•ąÆą®•ąÆą®µą®°ą®¤ąÆą®¤ąÆ ą®µą®¾ą®°ą®æą®Æą®®ąÆ é™†č·Æäŗ¤é€šē®”ē†å±€'),
(41299, 'https://ror.org/01zbxna89', 'en', 1, 'https://ror.org/01zbxna89 Overseas Koreans Foundation'),
(41300, 'https://ror.org/02qs1a797', 'en', 1, 'https://ror.org/02qs1a797 Centro Nacional de Investigaciones Cardiovasculares Carlos III Spanish National Centre for Cardiovascular Research'),
(41301, 'https://ror.org/0551rpg58', 'en', 1, 'https://ror.org/0551rpg58 Kementerian Ehwal Dalam Negeri Ministry of Home Affairs ą®‰ą®³ąÆą®¤ąÆą®±ąÆˆ ą®…ą®®ąÆˆą®šąÆą®šąÆ å†…ę”æéƒØ'),
(41302, 'https://ror.org/033sxkx41', 'en', 1, 'https://ror.org/033sxkx41 Office of the Civil Service Commission ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø„ąø“ąø°ąøąø£ąø£ąø”ąøąø²ąø£ąø‚ą¹‰ąø²ąø£ąø²ąøŠąøąø²ąø£ąøžąø„ą¹€ąø£ąø·ąø­ąø™'),
(41303, 'https://ror.org/046qg1023', 'en', 1, 'https://ror.org/046qg1023 National Parks Board'),
(41304, 'https://ror.org/036vyg793', 'en', 1, 'https://ror.org/036vyg793 Korea Creative Content Agency'),
(41305, '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'),
(41306, 'https://ror.org/056c6e777', 'es', 1, 'https://ror.org/056c6e777 Secretaría de Educación Superior, Ciencia, Tecnología e Innovación'),
(41307, 'https://ror.org/01hygy214', 'en', 1, 'https://ror.org/01hygy214 Ministry of National Development Nemzeti FejlesztƩsi MinisztƩrium'),
(41308, 'https://ror.org/03672y868', 'en', 1, 'https://ror.org/03672y868 Ministry for Foreign Affairs of Iceland UtanrƭkisrƔưuneytiư'),
(41309, 'https://ror.org/05dbsyw70', 'es', 1, 'https://ror.org/05dbsyw70 Ministerio de Ciencia, TecnologĆ­a y Telecomunicaciones'),
(41310, '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'),
(41311, 'https://ror.org/00mt8kb26', 'en', 1, 'https://ror.org/00mt8kb26 National Agency for Administrative City Construction ķ–‰ģ •ģ¤‘ģ‹¬ė³µķ•©ė„ģ‹œź±“ģ„¤ģ²­'),
(41312, 'https://ror.org/037m1gz55', 'en', 1, 'https://ror.org/037m1gz55 Icelandic International Development Agency Próunarsamvinnustofnun ƍslands'),
(41313, 'https://ror.org/02339nw55', 'en', 1, 'https://ror.org/02339nw55 Academy of Sciences Malaysia Akademi Sains Malaysia'),
(41314, 'https://ror.org/03bzbv419', 'en', 1, 'https://ror.org/03bzbv419 Anhui Institute of Optics and Fine Mechanics äø­å›½ē§‘å­¦é™¢å®‰å¾½å…‰å­¦ē²¾åÆ†ęœŗę¢°ē ”ē©¶ę‰€'),
(41315, 'https://ror.org/01teyc394', 'en', 1, 'https://ror.org/01teyc394 Health Insurance Review and Assessment Service 걓강 ė³“ķ—˜ 심사 ķ‰ź°€ģ›'),
(41316, 'https://ror.org/02fn8ac40', 'en', 1, 'https://ror.org/02fn8ac40 Ministry of Economy ×ž×©×Ø×“ הכלכלה'),
(41317, 'https://ror.org/033cbzv42', 'en', 1, 'https://ror.org/033cbzv42 Institute of Plasma Physics 中国科学院等离子体物理研究所'),
(41318, 'https://ror.org/00zfh7f80', 'en', 1, 'https://ror.org/00zfh7f80 Korea Disabled People s Development Institute ķ•œźµ­ģž„ģ• ģøź°œė°œģ›'),
(41319, 'https://ror.org/05nyhnc56', 'pt', 1, 'https://ror.org/05nyhnc56 Secretaria de Desenvolvimento EconÓmico Ciência Tecnologia e Ensino Superior'),
(41320, 'https://ror.org/04j3eks61', 'en', 1, 'https://ror.org/04j3eks61 Institute of Solid State Physics 固体物理研究所'),
(41321, 'https://ror.org/00aak0969', 'en', 1, 'https://ror.org/00aak0969 Pennsylvania Office of Attorney General'),
(41322, 'https://ror.org/00w0qep84', 'en', 1, 'https://ror.org/00w0qep84 Institute of Intelligent Machines äø­å›½ē§‘å­¦é™¢åˆč‚„ę™ŗčƒ½ęœŗę¢°ē ”ē©¶ę‰€'),
(41323, 'https://ror.org/03x529519', 'en', 1, 'https://ror.org/03x529519 Ministry of Finance č²”å‹™ēœ'),
(41324, 'https://ror.org/05c8v5d10', 'en', 1, 'https://ror.org/05c8v5d10 Pennsylvania Department of Labor and Industry'),
(41325, 'https://ror.org/01gh88804', 'en', 1, 'https://ror.org/01gh88804 High Magnetic Field Laboratory äø­å›½ē§‘å­¦é™¢å¼ŗē£åœŗē§‘å­¦äø­åæƒ'),
(41326, 'https://ror.org/029jmvc96', 'en', 1, 'https://ror.org/029jmvc96 IDA Ireland'),
(41327, 'https://ror.org/05k70qf45', 'en', 1, 'https://ror.org/05k70qf45 Lake Champlain Sea Grant'),
(41328, 'https://ror.org/05rnev335', 'en', 1, 'https://ror.org/05rnev335 Pennsylvania Department of Aging'),
(41329, 'https://ror.org/02c1vmy63', 'en', 1, 'https://ror.org/02c1vmy63 Pennsylvania Department of Community and Economic Development'),
(41330, 'https://ror.org/01yy74248', 'en', 1, 'https://ror.org/01yy74248 Institute of Applied Technology åŗ”ē”ØęŠ€ęœÆē ”ē©¶ę‰€'),
(41331, 'https://ror.org/00bbewq28', 'en', 1, 'https://ror.org/00bbewq28 Department of Economic and Community Development'),
(41332, 'https://ror.org/033r52n02', 'en', 1, 'https://ror.org/033r52n02 Pennsylvania Sea Grant'),
(41333, 'https://ror.org/03z5dpc36', 'en', 1, 'https://ror.org/03z5dpc36 Pennsylvania Department of Military and Veterans Affairs'),
(41334, 'https://ror.org/049sgh675', 'pt', 1, 'https://ror.org/049sgh675 Agência Nacional de Energia Elétrica'),
(41335, 'https://ror.org/04nr63k14', 'en', 1, 'https://ror.org/04nr63k14 Pennsylvania Higher Education Assistance Agency'),
(41336, 'https://ror.org/00fdv2038', 'en', 1, 'https://ror.org/00fdv2038 Pennsylvania Housing Finance Agency'),
(41337, 'https://ror.org/002a3ss66', 'pt', 1, 'https://ror.org/002a3ss66 Centro de Tecnologias EstratƩgicas do Nordeste'),
(41338, 'https://ror.org/04e2v9172', 'no_lang_code', 1, 'https://ror.org/04e2v9172 Vectec Solutions (United States)'),
(41339, 'https://ror.org/00zkesn06', 'en', 1, 'https://ror.org/00zkesn06 Connecticut Department of Agriculture'),
(41340, 'https://ror.org/05xjztb11', 'en', 1, 'https://ror.org/05xjztb11 Pennsylvania Public Utility Commission'),
(41341, 'https://ror.org/043n0m737', 'en', 1, 'https://ror.org/043n0m737 Virginia Economic Development Partnership'),
(41342, 'https://ror.org/04kpqhb39', 'ms', 1, 'https://ror.org/04kpqhb39 Jabatan Perkhidmatan Awam Malaysia Public Service Department'),
(41343, 'https://ror.org/05n9pp477', 'en', 1, 'https://ror.org/05n9pp477 Texas State Affordable Housing Corporation'),
(41344, 'https://ror.org/021vcge65', 'en', 1, 'https://ror.org/021vcge65 State Corporation Commission'),
(41345, 'https://ror.org/040s5rx17', 'en', 1, 'https://ror.org/040s5rx17 Texas Department of Aging and Disability Services'),
(41346, 'https://ror.org/04td2q443', 'en', 1, 'https://ror.org/04td2q443 Texas Animal Health Commission'),
(41347, 'https://ror.org/04cvyy414', 'en', 1, 'https://ror.org/04cvyy414 Connecticut Department of Labor'),
(41348, 'https://ror.org/01r9n3w70', 'en', 1, 'https://ror.org/01r9n3w70 Connecticut Department of Transportation'),
(41349, 'https://ror.org/03pg9x804', 'en', 1, 'https://ror.org/03pg9x804 Texas Commission on the Arts'),
(41350, 'https://ror.org/02wb4dv66', 'en', 1, 'https://ror.org/02wb4dv66 Ohio Arts Council'),
(41351, 'https://ror.org/04m2f2s83', 'en', 1, 'https://ror.org/04m2f2s83 Office of the Attorney General'),
(41352, 'https://ror.org/047ehxy71', 'en', 1, 'https://ror.org/047ehxy71 Office of Policy and Management'),
(41353, 'https://ror.org/046z1kv09', 'en', 1, 'https://ror.org/046z1kv09 Ohio Emergency Management Agency'),
(41354, 'https://ror.org/00cv86729', 'en', 1, 'https://ror.org/00cv86729 Council on Competitive Government'),
(41355, 'https://ror.org/03zqzpy75', 'en', 1, 'https://ror.org/03zqzpy75 Texas Council for Developmental Disabilities'),
(41356, 'https://ror.org/03wy2a142', 'en', 1, 'https://ror.org/03wy2a142 New Jersey Commission on Science, Innovation and Technology'),
(41357, 'https://ror.org/0340xvs51', 'en', 1, 'https://ror.org/0340xvs51 China National Administration of Coal Geology'),
(41358, 'https://ror.org/03d2te836', 'en', 1, 'https://ror.org/03d2te836 Texas Education Agency'),
(41359, 'https://ror.org/04w2e0b44', 'en', 1, 'https://ror.org/04w2e0b44 Department of Agriculture & Co-operation'),
(41360, 'https://ror.org/00wj0ge55', 'en', 1, 'https://ror.org/00wj0ge55 New Jersey Council on Developmental Disabilities'),
(41361, 'https://ror.org/02ty6ja84', 'en', 1, 'https://ror.org/02ty6ja84 Texas Department of Family and Protective Services'),
(41362, 'https://ror.org/011rbjx16', 'en', 1, 'https://ror.org/011rbjx16 New Jersey Department of Children and Families'),
(41363, 'https://ror.org/00kw0f604', 'en', 1, 'https://ror.org/00kw0f604 New Jersey Economic Development Authority'),
(41364, 'https://ror.org/02dywf273', 'en', 1, 'https://ror.org/02dywf273 Ohio Department of Education'),
(41365, 'https://ror.org/03ka08s53', 'en', 1, 'https://ror.org/03ka08s53 Ministry of Science and Environmental Protection ŠœŠøŠ½ŠøŃŃ‚Š°Ń€ŃŃ‚Š²Š¾ науке Šø Š·Š°ŃˆŃ‚ŠøŃ‚Šµ животне среГине'),
(41366, 'https://ror.org/00p14sn40', 'en', 1, 'https://ror.org/00p14sn40 New Jersey Department of Community Affairs'),
(41367, 'https://ror.org/02f62sy66', 'en', 1, 'https://ror.org/02f62sy66 Bio-oriented Technology Research Advancement Institution ē”Ÿē‰©ē³»ē‰¹å®šē”£ę„­ęŠ€č”“ē ”ē©¶ę”Æę“ć‚»ćƒ³ć‚æ'),
(41368, 'https://ror.org/02n9yc996', 'en', 1, 'https://ror.org/02n9yc996 Det kongelige Utenriksdepartement Ministry of Foreign Affairs'),
(41369, 'https://ror.org/03e1rva04', 'en', 1, 'https://ror.org/03e1rva04 Texas Groundwater Protection Committee'),
(41370, 'https://ror.org/01b1e4b88', 'no_lang_code', 1, 'https://ror.org/01b1e4b88 Mars (France)'),
(41371, 'https://ror.org/04qdwr166', 'en', 1, 'https://ror.org/04qdwr166 Texas Medical Board'),
(41372, 'https://ror.org/04nv8he75', 'en', 1, 'https://ror.org/04nv8he75 Arkansas Arts Council'),
(41373, 'https://ror.org/03qy49k44', 'en', 1, 'https://ror.org/03qy49k44 Agence Nationale des Parcs Nationaux National Agency for National Parks'),
(41374, 'https://ror.org/029rysr23', 'en', 1, 'https://ror.org/029rysr23 New Hampshire State Council on the Arts'),
(41375, 'https://ror.org/00vkyb445', 'en', 1, 'https://ror.org/00vkyb445 Texas Board of Nursing'),
(41376, 'https://ror.org/02rktmz08', 'en', 1, 'https://ror.org/02rktmz08 State Preservation Board'),
(41377, 'https://ror.org/0192y2p73', 'en', 1, 'https://ror.org/0192y2p73 New Jersey Department of Law and Public Safety'),
(41378, 'https://ror.org/01dyrk434', 'pt', 1, 'https://ror.org/01dyrk434 Centro de Excelência em BioinformÔtica'),
(41379, 'https://ror.org/02kreny85', 'en', 1, 'https://ror.org/02kreny85 Delaware Division of the Arts'),
(41380, 'https://ror.org/02wbs0d88', 'en', 1, 'https://ror.org/02wbs0d88 Texas Water Development Board'),
(41381, 'https://ror.org/039exzx30', 'en', 1, 'https://ror.org/039exzx30 New Mexico Legislature'),
(41382, 'https://ror.org/01251sa74', 'en', 1, 'https://ror.org/01251sa74 Ministry for Foreign Affairs Utrikesdepartementet'),
(41383, 'https://ror.org/0162ehq15', 'en', 1, 'https://ror.org/0162ehq15 Texas Juvenile Justice Department'),
(41384, 'https://ror.org/03fkcxa91', 'en', 1, 'https://ror.org/03fkcxa91 Environmental Protection Agency MiljĆøstyrelsen'),
(41385, 'https://ror.org/008d8ke16', 'en', 1, 'https://ror.org/008d8ke16 Office of the Attorney General'),
(41386, 'https://ror.org/05h8na936', 'en', 1, 'https://ror.org/05h8na936 New York State Council on the Arts'),
(41387, 'https://ror.org/05kxbax75', 'en', 1, 'https://ror.org/05kxbax75 Danish Ministry of Health Sundheds- og Ɔldreministeriet'),
(41388, 'https://ror.org/01knpsp07', 'en', 1, 'https://ror.org/01knpsp07 Michigan Community Service Commission'),
(41389, 'https://ror.org/02e38dy05', 'en', 1, 'https://ror.org/02e38dy05 Comissão Interministerial para os Recursos do Mar Interministerial Commission for Sea Resources'),
(41390, 'https://ror.org/04bbkwf42', 'en', 1, 'https://ror.org/04bbkwf42 New York State Department of Transportation'),
(41391, 'https://ror.org/03f3kev64', 'en', 1, 'https://ror.org/03f3kev64 Centre for Interdisciplinary Research in Music Media and Technology'),
(41392, 'https://ror.org/00bbdtr88', 'en', 1, 'https://ror.org/00bbdtr88 Texas Workforce Commission'),
(41393, 'https://ror.org/041s2dw89', 'pt', 1, 'https://ror.org/041s2dw89 Fundo para o Desenvolvimento Tecnológico das Telecomunicações'),
(41394, 'https://ror.org/012c35a11', 'en', 1, 'https://ror.org/012c35a11 Missouri Department of Transportation'),
(41395, 'https://ror.org/018zcf966', 'en', 1, 'https://ror.org/018zcf966 New York State Governor''s Traffic Safety Committee'),
(41396, 'https://ror.org/015ddf565', 'en', 1, 'https://ror.org/015ddf565 Michigan Department of Military and Veterans Affairs'),
(41397, 'https://ror.org/048966a50', 'en', 1, 'https://ror.org/048966a50 New York State Developmental Disabilities Planning Council'),
(41398, 'https://ror.org/01h6pwy85', 'en', 1, 'https://ror.org/01h6pwy85 Colorado Traumatic Brain Injury Trust Fund'),
(41399, 'https://ror.org/05xp7y466', 'no_lang_code', 1, 'https://ror.org/05xp7y466 Eni (Kazakhstan)'),
(41400, 'https://ror.org/032gm3e90', 'en', 1, 'https://ror.org/032gm3e90 Michigan State Housing Development Authority'),
(41401, 'https://ror.org/019grq336', 'en', 1, 'https://ror.org/019grq336 Mecklenburg County Government'),
(41402, 'https://ror.org/01jh9zw60', 'en', 1, 'https://ror.org/01jh9zw60 New York State Office of Temporary and Disability Assistance'),
(41403, 'https://ror.org/03tpyg842', 'en', 1, 'https://ror.org/03tpyg842 Michigan Department of Health and Human Services'),
(41404, 'https://ror.org/00ra7nj09', 'en', 1, 'https://ror.org/00ra7nj09 Minnesota Department of Commerce'),
(41405, 'https://ror.org/00s8v8467', 'en', 1, 'https://ror.org/00s8v8467 Arizona Department of Economic Security'),
(41406, 'https://ror.org/04p63s850', 'en', 1, 'https://ror.org/04p63s850 Minnesota Department of Transportation'),
(41407, 'https://ror.org/00ya5c561', 'de', 1, 'https://ror.org/00ya5c561 Bundesinstitut für Sportwissenschaft'),
(41408, 'https://ror.org/05kkmzc89', 'en', 1, 'https://ror.org/05kkmzc89 Nassau County Department of Social Services'),
(41409, 'https://ror.org/05mwe6667', 'en', 1, 'https://ror.org/05mwe6667 Minnesota Office of Higher Education'),
(41410, 'https://ror.org/01v5wyw51', 'en', 1, 'https://ror.org/01v5wyw51 Minnesota Housing Finance Agency'),
(41411, 'https://ror.org/03qq1s904', 'en', 1, 'https://ror.org/03qq1s904 Executive Office of Housing and Economic Development'),
(41412, 'https://ror.org/05w3wzj77', 'fr', 1, 'https://ror.org/05w3wzj77 Agence de l''eau Adour-Garonne'),
(41413, 'https://ror.org/04sjht826', 'en', 1, 'https://ror.org/04sjht826 Minnesota State Arts Board'),
(41414, 'https://ror.org/00h2bx184', 'en', 1, 'https://ror.org/00h2bx184 Forsvarsakademiet Royal Danish Defence College'),
(41415, 'https://ror.org/01ahwzz27', 'en', 1, 'https://ror.org/01ahwzz27 Saint Louis County Department of Health'),
(41416, 'https://ror.org/0543wbp89', 'en', 1, 'https://ror.org/0543wbp89 Maryland State Arts Council'),
(41417, 'https://ror.org/037fek297', 'en', 1, 'https://ror.org/037fek297 Illinois Department of Children and Family Services'),
(41418, 'https://ror.org/019vcrv78', 'en', 1, 'https://ror.org/019vcrv78 Maryland Historical Trust'),
(41419, 'https://ror.org/05jr3qk95', 'en', 1, 'https://ror.org/05jr3qk95 Mid Atlantic Arts Foundation'),
(41420, 'https://ror.org/03wjj7779', 'en', 1, 'https://ror.org/03wjj7779 Massachusetts Department of Agricultural Resources'),
(41421, 'https://ror.org/04spf1k23', 'en', 1, 'https://ror.org/04spf1k23 Massachusetts Department of Environmental Protection'),
(41422, 'https://ror.org/01nw8b729', 'en', 1, 'https://ror.org/01nw8b729 Virginia Commission for the Arts'),
(41423, 'https://ror.org/04517nj83', 'en', 1, 'https://ror.org/04517nj83 New York State Council on Graduate Medical Education'),
(41424, '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'),
(41425, 'https://ror.org/041q18g77', 'en', 1, 'https://ror.org/041q18g77 Office of the Attorney General Virginia'),
(41426, 'https://ror.org/02h2say50', 'en', 1, 'https://ror.org/02h2say50 Virginia BioTechnology Research Park'),
(41427, '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'),
(41428, 'https://ror.org/04x4haa49', 'en', 1, 'https://ror.org/04x4haa49 Chesapeake Bay Program'),
(41429, 'https://ror.org/03dv5mp96', 'en', 1, 'https://ror.org/03dv5mp96 Virginia Department of Social Services'),
(41430, 'https://ror.org/00ktzqz45', 'en', 1, 'https://ror.org/00ktzqz45 Georgia Department of Transportation'),
(41431, 'https://ror.org/03aw4b617', 'en', 1, 'https://ror.org/03aw4b617 Virginia Commission on Youth'),
(41432, 'https://ror.org/04ded8w14', 'en', 1, 'https://ror.org/04ded8w14 Virginia Information Technologies Agency'),
(41433, 'https://ror.org/05vjz1d16', 'en', 1, 'https://ror.org/05vjz1d16 Heartland Center for Occupational Safety and Health'),
(41434, 'https://ror.org/032j6ge54', 'en', 1, 'https://ror.org/032j6ge54 Recycled Materials Resource Center'),
(41435, 'https://ror.org/03cg6qr34', 'en', 1, 'https://ror.org/03cg6qr34 Florida Department of Military Affairs'),
(41436, 'https://ror.org/05rnj0j91', 'en', 1, 'https://ror.org/05rnj0j91 Kungliga Fysiografiska SƤllskapet i Lund Royal Physiographic Society of Lund'),
(41437, 'https://ror.org/03xh5a585', 'en', 1, 'https://ror.org/03xh5a585 Ministry of Agriculture'),
(41438, 'https://ror.org/053hkpw83', 'en', 1, 'https://ror.org/053hkpw83 Children''s Trust'),
(41439, 'https://ror.org/02qrynm70', 'en', 1, 'https://ror.org/02qrynm70 Research Manitoba'),
(41440, 'https://ror.org/02jfv6690', 'en', 1, 'https://ror.org/02jfv6690 Tennessee Wildlife Resources Agency'),
(41441, 'https://ror.org/01zzyg547', 'en', 1, 'https://ror.org/01zzyg547 Highlands and Islands Enterprise'),
(41442, 'https://ror.org/02g5xq267', 'en', 1, 'https://ror.org/02g5xq267 Saskatchewan Ministry of Agriculture'),
(41443, 'https://ror.org/05qej3r07', 'en', 1, 'https://ror.org/05qej3r07 British Columbia Arts Council'),
(41444, 'https://ror.org/02nfbzg04', 'en', 1, 'https://ror.org/02nfbzg04 Department of Local Government and Communities'),
(41445, 'https://ror.org/02yf3ey12', 'en', 1, 'https://ror.org/02yf3ey12 Department of Culture and the Arts'),
(41446, 'https://ror.org/01b047235', 'en', 1, 'https://ror.org/01b047235 Arkansas Economic Development Commission'),
(41447, 'https://ror.org/00420et70', 'en', 1, 'https://ror.org/00420et70 Department for Child Protection and Family Support'),
(41448, 'https://ror.org/02dprkj51', 'nl', 1, 'https://ror.org/02dprkj51 Bruxelles Environnemont Leefmilieu Brussel'),
(41449, 'https://ror.org/03jmcpx27', 'en', 1, 'https://ror.org/03jmcpx27 Agriculture Food and Rural Development'),
(41450, 'https://ror.org/054n9rz51', 'en', 1, 'https://ror.org/054n9rz51 South Dakota Board of Regents'),
(41451, 'https://ror.org/00s5ghb26', 'en', 1, 'https://ror.org/00s5ghb26 Municipality of Tai''an 泰安'),
(41452, 'https://ror.org/00ew5at92', 'en', 1, 'https://ror.org/00ew5at92 Department of the Premier and Cabinet'),
(41453, 'https://ror.org/04q01pf08', 'en', 1, 'https://ror.org/04q01pf08 Federation Wallonia-Brussels French Community of Belgium FƩdƩration Wallonie-Bruxelles'),
(41454, 'https://ror.org/00zv0wd17', 'en', 1, 'https://ror.org/00zv0wd17 Center for Information Technology Research in the Interest of Society'),
(41455, 'https://ror.org/018ct7v08', 'en', 1, 'https://ror.org/018ct7v08 Department of Education'),
(41456, 'https://ror.org/003cq3m13', 'pt', 1, 'https://ror.org/003cq3m13 Empresa de Pesquisa AgropecuƔria do Rio Grande do Norte'),
(41457, 'https://ror.org/02xm1rf97', 'en', 1, 'https://ror.org/02xm1rf97 National Climate Change Adaptation Research Facility'),
(41458, 'https://ror.org/04tnw9626', 'en', 1, 'https://ror.org/04tnw9626 Queensland Academy of Sport'),
(41459, 'https://ror.org/00ys2za03', 'en', 1, 'https://ror.org/00ys2za03 Montana Department of Transportation'),
(41460, 'https://ror.org/055t3yk56', 'en', 1, 'https://ror.org/055t3yk56 ACT Department of Treasury'),
(41461, 'https://ror.org/05y9xcd05', 'en', 1, 'https://ror.org/05y9xcd05 Australian Water Recycling Centre of Excellence'),
(41462, 'https://ror.org/03pgxht93', 'en', 1, 'https://ror.org/03pgxht93 Foshan Municipal Government'),
(41463, 'https://ror.org/01qas6g18', 'en', 1, 'https://ror.org/01qas6g18 Sƶdra Ƅlvsborg Hospital Sƶdra Ƅlvsborgs Sjukhus'),
(41464, 'https://ror.org/04m57qg37', 'en', 1, 'https://ror.org/04m57qg37 Manitoba Labour and Immigration'),
(41465, 'https://ror.org/03ebs8975', 'en', 1, 'https://ror.org/03ebs8975 Department of State Growth'),
(41466, 'https://ror.org/02jexx044', 'de', 1, 'https://ror.org/02jexx044 Senatsverwaltung für Bildung, Jugend und Wissenschaft'),
(41467, 'https://ror.org/026emmr85', 'en', 1, 'https://ror.org/026emmr85 Ministry of Children, Community and Social Services MinistĆØre des Services Sociaux et Communautaires'),
(41468, 'https://ror.org/01fz2q334', 'en', 1, 'https://ror.org/01fz2q334 National Insurance Institute of Israel המוהד לביטוח לאומי'),
(41469, 'https://ror.org/04e3z5r84', 'en', 1, 'https://ror.org/04e3z5r84 Islamic Development Bank Ų§Ł„ŲØŁ†Łƒ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ Ł„Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(41470, 'https://ror.org/00axrng91', 'en', 1, 'https://ror.org/00axrng91 Shetland Islands Council'),
(41471, 'https://ror.org/01cnenr61', 'fi', 1, 'https://ror.org/01cnenr61 EtelƤ-Pohjanmaan Sairaanhoitopiiri'),
(41472, 'https://ror.org/04ry1rt27', 'fr', 1, 'https://ror.org/04ry1rt27 Conseil RĆ©gional d''Ǝle-de-France'),
(41473, 'https://ror.org/00wa9t836', 'en', 1, 'https://ror.org/00wa9t836 Chief Minister Treasury and Economic Development Directorate'),
(41474, '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'),
(41475, 'https://ror.org/02agyqq59', 'en', 1, 'https://ror.org/02agyqq59 Department of Communities, Culture and Heritage'),
(41476, 'https://ror.org/05j137f13', 'en', 1, 'https://ror.org/05j137f13 Act Health'),
(41477, 'https://ror.org/022z3g211', 'en', 1, 'https://ror.org/022z3g211 Guangxi Zhuang Autonomous Region Health and Family Planning å¹æč„æå£®ę—č‡Ŗę²»åŒŗå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(41478, 'https://ror.org/00y2ynd26', 'en', 1, 'https://ror.org/00y2ynd26 Saskatchewan Arts Board'),
(41479, 'https://ror.org/01rg6da32', 'en', 1, 'https://ror.org/01rg6da32 Bureau of Agriculture of Guangzhou Municipality å¹æå·žåø‚å†œäøšå±€'),
(41480, 'https://ror.org/05skhck39', 'en', 1, 'https://ror.org/05skhck39 HealthForceOntario'),
(41481, 'https://ror.org/00d4h7g98', 'en', 1, 'https://ror.org/00d4h7g98 Research Institute for Astronomy and Astrophysics of Maragh'),
(41482, 'https://ror.org/029td0g71', 'en', 1, 'https://ror.org/029td0g71 Bugok National Hospital 국립부곔병원'),
(41483, 'https://ror.org/00znwdt50', 'en', 1, 'https://ror.org/00znwdt50 Newfoundland and Labrador Arts Council'),
(41484, 'https://ror.org/03tjm2p32', 'en', 1, 'https://ror.org/03tjm2p32 Chuncheon National Hospital źµ­ė¦½ģ¶˜ģ²œė³‘ģ›'),
(41485, 'https://ror.org/01nfhtc03', 'en', 1, 'https://ror.org/01nfhtc03 Lowitja Institute'),
(41486, 'https://ror.org/03e6g8q57', 'en', 1, 'https://ror.org/03e6g8q57 Masan National Tuberculosis Hospital'),
(41487, 'https://ror.org/03mhba648', 'en', 1, 'https://ror.org/03mhba648 Conseil des arts de l''Ontario Ontario Arts Council'),
(41488, 'https://ror.org/00n0e2d34', 'en', 1, 'https://ror.org/00n0e2d34 Ministry of Advanced Education'),
(41489, 'https://ror.org/01r7sqp31', 'en', 1, 'https://ror.org/01r7sqp31 Melbourne Water'),
(41490, 'https://ror.org/00nxrj229', 'en', 1, 'https://ror.org/00nxrj229 Mokpo National Tuberculosis Hospital źµ­ė¦½ėŖ©ķ¬ė³‘ģ›'),
(41491, 'https://ror.org/03mz4hq51', 'en', 1, 'https://ror.org/03mz4hq51 Naju National Hospital źµ­ė¦½ė‚˜ģ£¼ė³‘ģ›'),
(41492, 'https://ror.org/02vcjcj30', 'de', 1, 'https://ror.org/02vcjcj30 Ministerium für Wissenschaft, Forschung und Kultur'),
(41493, 'https://ror.org/03s26zd55', 'en', 1, 'https://ror.org/03s26zd55 Sorokdo National Hospital źµ­ė¦½ģ†Œė”ė„ė³‘ģ›'),
(41494, 'https://ror.org/05pmc2b98', 'pt', 1, 'https://ror.org/05pmc2b98 Companhia Energética de São Paulo'),
(41495, 'https://ror.org/038qjap85', 'en', 1, 'https://ror.org/038qjap85 Gambling Awareness Nova Scotia'),
(41496, 'https://ror.org/04vghy880', 'en', 1, 'https://ror.org/04vghy880 Port of Melbourne Corporation'),
(41497, 'https://ror.org/05nap1d83', 'en', 1, 'https://ror.org/05nap1d83 Territory and Municipal Services'),
(41498, 'https://ror.org/03af0nw04', 'en', 1, 'https://ror.org/03af0nw04 Canadian Mental Health Association'),
(41499, 'https://ror.org/02ttd0n41', 'en', 1, 'https://ror.org/02ttd0n41 Wellington City Council'),
(41500, 'https://ror.org/0433t4193', 'en', 1, 'https://ror.org/0433t4193 Office of the First Minister and deputy First Minister'),
(41501, 'https://ror.org/00d7a9n23', 'es', 1, 'https://ror.org/00d7a9n23 Consejo Superior Universitario Centroamericano'),
(41502, 'https://ror.org/0326gsy75', 'en', 1, 'https://ror.org/0326gsy75 County Administrative Board LƤnsstyrelsen Ɩstergƶtland'),
(41503, 'https://ror.org/02yk6f609', 'pt', 1, 'https://ror.org/02yk6f609 Secretaria de Estado da Ciência, Tecnologia e Inovação'),
(41504, 'https://ror.org/02g4n1614', 'no_lang_code', 1, 'https://ror.org/02g4n1614 Qatar Petroleum (Qatar) Ų¹Ł…Ł„ŁŠŲ§ŲŖ قطر Ł„Ł„ŲØŲŖŲ±ŁˆŁ„'),
(41505, 'https://ror.org/04th3yy26', 'pt', 1, 'https://ror.org/04th3yy26 Secretaria de Estado de Ciência Tecnologia e Inovação'),
(41506, 'https://ror.org/04af9zr29', 'en', 1, 'https://ror.org/04af9zr29 Innoviris'),
(41507, 'https://ror.org/03ga33f34', 'en', 1, 'https://ror.org/03ga33f34 Department of Arts and Museums'),
(41508, 'https://ror.org/00r3ztb37', 'en', 1, 'https://ror.org/00r3ztb37 Drzavni zavod za zastitu prirode State Institute for Nature Protection'),
(41509, 'https://ror.org/050q16438', 'en', 1, 'https://ror.org/050q16438 Department of Sport and Recreation'),
(41510, 'https://ror.org/02fr0s482', 'no_lang_code', 1, 'https://ror.org/02fr0s482 Wenzhou Municipal Sci-Tech Bureau ęø©å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(41511, 'https://ror.org/04b3wz043', 'en', 1, 'https://ror.org/04b3wz043 Ministry of Technology, Innovation & Citizens'' Services'),
(41512, 'https://ror.org/056c0n883', 'en', 1, 'https://ror.org/056c0n883 Uttarakhand State Council for Science and Technology'),
(41513, 'https://ror.org/02sx0vk32', 'en', 1, 'https://ror.org/02sx0vk32 Department of Education and Training'),
(41514, 'https://ror.org/02j1fb913', 'es', 1, 'https://ror.org/02j1fb913 Secretaría de Investigación, Innovación y Educación Superior'),
(41515, 'https://ror.org/00rj4dg52', 'en', 1, 'https://ror.org/00rj4dg52 Cambridge–MIT Institute'),
(41516, 'https://ror.org/01jhjbg73', 'en', 1, 'https://ror.org/01jhjbg73 Nova Scotia Department of Health and Wellness'),
(41517, 'https://ror.org/04bz8f123', 'en', 1, 'https://ror.org/04bz8f123 Chhattisgarh Council of Science and Technology ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ परिषद'),
(41518, 'https://ror.org/04zs2z136', 'it', 1, 'https://ror.org/04zs2z136 Collegio Ghislieri'),
(41519, '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'),
(41520, 'https://ror.org/00fzs3g26', 'no_lang_code', 1, 'https://ror.org/00fzs3g26 China Tobacco Guangxi Industrial (China) å¹æč„æäø­ēƒŸå·„äøšęœ‰é™č“£ä»»å…¬åø'),
(41521, 'https://ror.org/01hednr46', 'no_lang_code', 1, 'https://ror.org/01hednr46 Mechanics Electronics Computer Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ”ćƒƒć‚Æ'),
(41522, 'https://ror.org/018h60391', 'en', 1, 'https://ror.org/018h60391 Institut suisse de mƩdecine Ʃquine Swiss Institute of Equine Medicine'),
(41523, 'https://ror.org/04mw3jj73', 'fr', 1, 'https://ror.org/04mw3jj73 Fondation Sciences et Technologies pour l''AƩronautique et l''Espace'),
(41524, 'https://ror.org/05gsxwg61', 'es', 1, 'https://ror.org/05gsxwg61 Oficina Regional de Coordinación de Salud Mental'),
(41525, 'https://ror.org/02npjmq89', 'pt', 1, 'https://ror.org/02npjmq89 Fundação de Estudo e Pesquisa em Medicina VeterinÔria e Zootecnia'),
(41526, 'https://ror.org/03bxybp61', 'en', 1, 'https://ror.org/03bxybp61 Competence Centre for Materials Science and Technology'),
(41527, 'https://ror.org/02nfh7608', 'fr', 1, 'https://ror.org/02nfh7608 Bayerisch-Franzƶsische Hochschulzentrum Centre de CoopƩration Universitaire Franco-Bavarois'),
(41528, 'https://ror.org/02vp8jr44', 'es', 1, 'https://ror.org/02vp8jr44 Ministerio de Ciencia y TecnologĆ­a'),
(41529, 'https://ror.org/02kbrsj34', 'no_lang_code', 1, 'https://ror.org/02kbrsj34 Companhia EnergƩtica de Minas Gerais (Brazil)'),
(41530, 'https://ror.org/03spd6n49', 'en', 1, 'https://ror.org/03spd6n49 Electricity Generating Authority of Thailand ąøąø²ąø£ą¹„ąøŸąøŸą¹‰ąø²ąøą¹ˆąø²ąø¢ąøœąø„ąø“ąø•ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(41531, 'https://ror.org/03s0fv852', 'en', 1, 'https://ror.org/03s0fv852 Einstein Foundation Einstein Stiftung'),
(41532, 'https://ror.org/04wtd6086', 'en', 1, 'https://ror.org/04wtd6086 Development Bank of Southern Africa'),
(41533, 'https://ror.org/02tdb1n52', 'en', 1, 'https://ror.org/02tdb1n52 Bellingen Shire Council'),
(41534, 'https://ror.org/02ge9fk48', 'es', 1, 'https://ror.org/02ge9fk48 Secretaría de Ciencia Tecnología e Innovación'),
(41535, 'https://ror.org/04ekv3k57', 'en', 1, 'https://ror.org/04ekv3k57 Development Bank of Saxony SƤchsische Aufbaubank'),
(41536, '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'),
(41537, 'https://ror.org/01egp1063', 'es', 1, 'https://ror.org/01egp1063 Ministerio de Producción, Ciencia y Tecnología'),
(41538, 'https://ror.org/03hc6ex92', 'es', 1, 'https://ror.org/03hc6ex92 Secretaría de Innovación, Ciencia y Educación Superior'),
(41539, 'https://ror.org/00k53p435', 'en', 1, 'https://ror.org/00k53p435 Agencia de Desarrollo Económico de La Rioja Economic Development Agency for La Rioja'),
(41540, 'https://ror.org/03sjyr749', 'en', 1, 'https://ror.org/03sjyr749 Mornington Peninsula Shire'),
(41541, 'https://ror.org/02schg286', 'es', 1, 'https://ror.org/02schg286 Dirección de Investigación y Desarrollo'),
(41542, 'https://ror.org/04dpszf19', 'en', 1, 'https://ror.org/04dpszf19 Pennsylvania Department Of State'),
(41543, 'https://ror.org/049ygtv97', 'sv', 1, 'https://ror.org/049ygtv97 Landstinget Dalarna'),
(41544, 'https://ror.org/03qp8ma69', 'en', 1, 'https://ror.org/03qp8ma69 Center for Clinical Research Dalarna Centrum fƶr Klinisk Forskning'),
(41545, 'https://ror.org/03vsjrq56', 'no_lang_code', 1, 'https://ror.org/03vsjrq56 Abiant (United States)'),
(41546, 'https://ror.org/048m92c51', 'en', 1, 'https://ror.org/048m92c51 Foundation for Advancing Veterans Health Research'),
(41547, 'https://ror.org/04k4dpz50', 'en', 1, 'https://ror.org/04k4dpz50 Accelerated Cure Project for Multiple Sclerosis'),
(41548, 'https://ror.org/013t96v18', 'en', 1, 'https://ror.org/013t96v18 Biotechnology Research Center'),
(41549, 'https://ror.org/01skwee93', 'no_lang_code', 1, 'https://ror.org/01skwee93 AgeneBio (United States)'),
(41550, 'https://ror.org/00p9p2506', 'en', 1, 'https://ror.org/00p9p2506 Ministerstvo dopravy České republiky Ministry of Transport'),
(41551, 'https://ror.org/029bmv142', 'en', 1, 'https://ror.org/029bmv142 Boston Children''s at Waltham'),
(41552, 'https://ror.org/01ahkhm49', 'en', 1, 'https://ror.org/01ahkhm49 ALD Connect'),
(41553, 'https://ror.org/002qvaf96', 'no_lang_code', 1, 'https://ror.org/002qvaf96 Gliacure (United States)'),
(41554, 'https://ror.org/01htb3a72', 'en', 1, 'https://ror.org/01htb3a72 Global Healthy Living Foundation'),
(41555, 'https://ror.org/02mh1yk91', 'en', 1, 'https://ror.org/02mh1yk91 Dr. A. Ramachandran''s Diabetes Hospitals'),
(41556, 'https://ror.org/02t64n115', 'en', 1, 'https://ror.org/02t64n115 Polarforskningssekretariatet Swedish Polar Research Secretariat'),
(41557, 'https://ror.org/044zr9v92', 'no_lang_code', 1, 'https://ror.org/044zr9v92 Allegro Ophthalmics (United States)'),
(41558, 'https://ror.org/01bcwyc86', 'en', 1, 'https://ror.org/01bcwyc86 Southern Maine Health Care'),
(41559, 'https://ror.org/05dm44j82', 'no_lang_code', 1, 'https://ror.org/05dm44j82 Gramercy Research Group (United States)'),
(41560, 'https://ror.org/01e5ad164', 'no_lang_code', 1, 'https://ror.org/01e5ad164 DualAlign (United States)'),
(41561, 'https://ror.org/04afrdx88', 'en', 1, 'https://ror.org/04afrdx88 Agri-Food and Veterinary Authority of Singapore'),
(41562, 'https://ror.org/05h8yxf34', 'en', 1, 'https://ror.org/05h8yxf34 Hartford Food System'),
(41563, 'https://ror.org/001snd369', 'no_lang_code', 1, 'https://ror.org/001snd369 Rosa (United States)'),
(41564, 'https://ror.org/05tzn2b35', 'en', 1, 'https://ror.org/05tzn2b35 Headwaters Health Care Centre'),
(41565, 'https://ror.org/05hk82j82', 'en', 1, 'https://ror.org/05hk82j82 Anchor Center for Blind Children'),
(41566, 'https://ror.org/03t8n7w93', 'no_lang_code', 1, 'https://ror.org/03t8n7w93 Health Advances (United States)'),
(41567, 'https://ror.org/04cmdwv88', 'no_lang_code', 1, 'https://ror.org/04cmdwv88 Close Concerns (United States)'),
(41568, 'https://ror.org/04as4jd41', 'en', 1, 'https://ror.org/04as4jd41 Prevent Alzheimer’s Disease 2020'),
(41569, 'https://ror.org/03hz79v84', 'en', 1, 'https://ror.org/03hz79v84 Fair Haven Community Health Center'),
(41570, 'https://ror.org/01khd9w51', 'en', 1, 'https://ror.org/01khd9w51 Felton Institute'),
(41571, 'https://ror.org/000wamw23', 'no_lang_code', 1, 'https://ror.org/000wamw23 CohBar (United States)'),
(41572, 'https://ror.org/02sbchm13', 'no_lang_code', 1, 'https://ror.org/02sbchm13 Asceneuron (Switzerland)'),
(41573, 'https://ror.org/01ymr0y61', 'en', 1, 'https://ror.org/01ymr0y61 National Archives of Australia'),
(41574, 'https://ror.org/05w1crz90', 'en', 1, 'https://ror.org/05w1crz90 Arkansas Autism Resource & Outreach Center'),
(41575, 'https://ror.org/0579b5p03', 'en', 1, 'https://ror.org/0579b5p03 Communities for a Better Environment'),
(41576, 'https://ror.org/01bhk7372', 'en', 1, 'https://ror.org/01bhk7372 Dallas VA Research Corporation'),
(41577, 'https://ror.org/02z64ft38', 'no_lang_code', 1, 'https://ror.org/02z64ft38 Behavior Imaging Solutions (United States)'),
(41578, 'https://ror.org/02rppq041', 'de', 1, 'https://ror.org/02rppq041 Krankenhaus Nordwest'),
(41579, 'https://ror.org/03mjnxj17', 'no_lang_code', 1, 'https://ror.org/03mjnxj17 LEK Consulting (United States)'),
(41580, 'https://ror.org/0505yy418', 'en', 1, 'https://ror.org/0505yy418 Lakeridge Health'),
(41581, 'https://ror.org/00f21s284', 'en', 1, 'https://ror.org/00f21s284 Office of the Chief Scientist ×œ×©×›×Ŗ המדען הראשי'),
(41582, 'https://ror.org/0174nh398', 'en', 1, 'https://ror.org/0174nh398 Levine Cancer Institute'),
(41583, 'https://ror.org/01nacjv05', 'en', 1, 'https://ror.org/01nacjv05 Louisiana Public Health Institute'),
(41584, 'https://ror.org/032sm9x52', 'no_lang_code', 1, 'https://ror.org/032sm9x52 Osta Bio Technologies (Canada)'),
(41585, 'https://ror.org/056456402', 'no_lang_code', 1, 'https://ror.org/056456402 Kenes Group (Switzerland)'),
(41586, 'https://ror.org/0155ftp45', 'en', 1, 'https://ror.org/0155ftp45 Mid Michigan Autism Association'),
(41587, 'https://ror.org/03y1z8727', 'no_lang_code', 1, 'https://ror.org/03y1z8727 Remegenix (United States)'),
(41588, 'https://ror.org/0219v4961', 'no_lang_code', 1, 'https://ror.org/0219v4961 SGC Pharma (United States)'),
(41589, 'https://ror.org/02pcng468', 'en', 1, 'https://ror.org/02pcng468 Tanzania Public health Association'),
(41590, 'https://ror.org/0436b4p03', 'no_lang_code', 1, 'https://ror.org/0436b4p03 Madera BioSciences (United States)'),
(41591, 'https://ror.org/00m92qj63', 'no_lang_code', 1, 'https://ror.org/00m92qj63 Sharp Edge Labs (United States)'),
(41592, 'https://ror.org/03g5f5777', 'en', 1, 'https://ror.org/03g5f5777 Maine Medical Center'),
(41593, 'https://ror.org/0009ha653', 'en', 1, 'https://ror.org/0009ha653 Alliance for Clinical Trials in Oncology'),
(41594, 'https://ror.org/011shyd31', 'en', 1, 'https://ror.org/011shyd31 St. Helena Hospital Foundation'),
(41595, 'https://ror.org/00cmb1w67', 'no_lang_code', 1, 'https://ror.org/00cmb1w67 Rodin Therapeutics (United States)'),
(41596, 'https://ror.org/00zhwjs36', 'en', 1, 'https://ror.org/00zhwjs36 Center for Advancing Innovation'),
(41597, 'https://ror.org/01fcdd135', 'en', 1, 'https://ror.org/01fcdd135 Chicago Community Trust'),
(41598, 'https://ror.org/01h8dx481', 'en', 1, 'https://ror.org/01h8dx481 National Biomedical Research Ethics Council'),
(41599, 'https://ror.org/01hw0hc30', 'en', 1, 'https://ror.org/01hw0hc30 Third Sector New England'),
(41600, 'https://ror.org/02kd2sw87', 'en', 1, 'https://ror.org/02kd2sw87 Safe Kids Worldwide'),
(41601, 'https://ror.org/05v2jd533', 'en', 1, 'https://ror.org/05v2jd533 Tidepool'),
(41602, 'https://ror.org/02n9jjp67', 'en', 1, 'https://ror.org/02n9jjp67 Groden Network'),
(41603, 'https://ror.org/01wvxvm13', 'en', 1, 'https://ror.org/01wvxvm13 University of Iowa Foundation'),
(41604, 'https://ror.org/00fhbr831', 'en', 1, 'https://ror.org/00fhbr831 Triangle'),
(41605, 'https://ror.org/00cemh325', 'en', 1, 'https://ror.org/00cemh325 Sanford Consortium for Regenerative Medicine'),
(41606, 'https://ror.org/00sd8zf10', 'en', 1, 'https://ror.org/00sd8zf10 University of Cape Town Fund'),
(41607, 'https://ror.org/01sfnbz84', 'en', 1, 'https://ror.org/01sfnbz84 VisionTree'),
(41608, 'https://ror.org/03s01ed61', 'no_lang_code', 1, 'https://ror.org/03s01ed61 Yuma Therapeutics (United States)'),
(41609, 'https://ror.org/05mf79c96', 'en', 1, 'https://ror.org/05mf79c96 UPMC Center for High Value Health Care'),
(41610, 'https://ror.org/03x5adz07', 'en', 1, 'https://ror.org/03x5adz07 UsAgainstAlzheimer'),
(41611, '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'),
(41612, 'https://ror.org/01c02p071', 'en', 1, 'https://ror.org/01c02p071 AACC International'),
(41613, 'https://ror.org/02x6jsy35', 'en', 1, 'https://ror.org/02x6jsy35 Instituto Nacional de GenƩtica MƩdica Populacional National Institute on Population Medical Genetics'),
(41614, 'https://ror.org/04yt9wc05', 'no_lang_code', 1, 'https://ror.org/04yt9wc05 China Construction Eighth Engineering Division (China)'),
(41615, 'https://ror.org/040gxv777', 'en', 1, 'https://ror.org/040gxv777 Delaney AIDS Research Enterprise'),
(41616, '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'),
(41617, 'https://ror.org/038ejm451', 'en', 1, 'https://ror.org/038ejm451 World Federation for Mental Health'),
(41618, 'https://ror.org/03cqmba17', 'pt', 1, 'https://ror.org/03cqmba17 Instituto Nacional de CiĆŖncia e Tecnologia de NeurociĆŖncia Translacional'),
(41619, 'https://ror.org/03xnf5k89', 'en', 1, 'https://ror.org/03xnf5k89 Common Fund for Commodities'),
(41620, 'https://ror.org/03kgddd58', 'en', 1, 'https://ror.org/03kgddd58 MacDowell Colony'),
(41621, 'https://ror.org/02ccnn750', 'en', 1, 'https://ror.org/02ccnn750 United Way'),
(41622, 'https://ror.org/026n0rw09', 'pt', 1, 'https://ror.org/026n0rw09 Instituto Nacional de CiĆŖncia e Tecnologia de Obesidade e Diabetes'),
(41623, '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'),
(41624, 'https://ror.org/01xc6az48', 'en', 1, 'https://ror.org/01xc6az48 Fondazione Internazionale Balzan International Balzan Prize Foundation'),
(41625, 'https://ror.org/02z2wec49', 'pt', 1, 'https://ror.org/02z2wec49 Instituto Nacional de Ciência e Tecnologia em EletrÓnica Orgânica'),
(41626, 'https://ror.org/049dnw004', 'en', 1, 'https://ror.org/049dnw004 Society of Environmental Toxicology and Chemistry'),
(41627, 'https://ror.org/03ca35056', 'en', 1, 'https://ror.org/03ca35056 Atlantic Philanthropies'),
(41628, 'https://ror.org/00dfjma76', 'en', 1, 'https://ror.org/00dfjma76 American Council on Germany'),
(41629, 'https://ror.org/02j95s845', 'en', 1, 'https://ror.org/02j95s845 International Association for Great Lakes Research'),
(41630, 'https://ror.org/00fszdj92', 'en', 1, 'https://ror.org/00fszdj92 Organization for Women in Science for the Developing World'),
(41631, 'https://ror.org/02zdrev82', 'pt', 1, 'https://ror.org/02zdrev82 Instituto Nacional de CiĆŖncia e Tecnologia de Processos Redox em Biomedicina'),
(41632, 'https://ror.org/01zr65j15', 'pt', 1, 'https://ror.org/01zr65j15 Instituto Nacional de CiĆŖncia e Tecnologia de CiĆŖncia Animal'),
(41633, 'https://ror.org/0385qa794', 'en', 1, 'https://ror.org/0385qa794 European Council of International Schools'),
(41634, 'https://ror.org/00d1x1168', 'en', 1, 'https://ror.org/00d1x1168 Eurasia Foundation'),
(41635, 'https://ror.org/03836vq90', 'en', 1, 'https://ror.org/03836vq90 International Tropical Timber Organization'),
(41636, 'https://ror.org/03tydf244', 'pt', 1, 'https://ror.org/03tydf244 Instituto Nacional de Ciência e Tecnologia em Excitotoxicidade e Neuroproteção'),
(41637, 'https://ror.org/024zavn56', 'en', 1, 'https://ror.org/024zavn56 Graduate Women International'),
(41638, 'https://ror.org/018788w33', 'no_lang_code', 1, 'https://ror.org/018788w33 Astellas Pharma (United Kingdom)'),
(41639, 'https://ror.org/00wrbf093', 'en', 1, 'https://ror.org/00wrbf093 OPEC Fund for International Development'),
(41640, 'https://ror.org/01n3xha27', 'en', 1, 'https://ror.org/01n3xha27 American Institute of Pakistan Studies'),
(41641, 'https://ror.org/05b233w53', 'en', 1, 'https://ror.org/05b233w53 Association of California Community College Administrators'),
(41642, 'https://ror.org/02jnewa08', 'en', 1, 'https://ror.org/02jnewa08 American Institute of Ultrasound in Medicine'),
(41643, 'https://ror.org/03zxry661', 'en', 1, 'https://ror.org/03zxry661 European Investment Bank'),
(41644, 'https://ror.org/0120w5678', 'en', 1, 'https://ror.org/0120w5678 European Observatory on Health Systems and Policies'),
(41645, 'https://ror.org/05xxn0r26', 'en', 1, 'https://ror.org/05xxn0r26 Americans for Medical Progress'),
(41646, 'https://ror.org/03xsk8f60', 'en', 1, 'https://ror.org/03xsk8f60 Architectural League of New York'),
(41647, 'https://ror.org/04bc8dn02', 'de', 1, 'https://ror.org/04bc8dn02 Christoffel Blinden Mission'),
(41648, 'https://ror.org/04beyjz13', 'en', 1, 'https://ror.org/04beyjz13 European Tropical Forest Research Network'),
(41649, 'https://ror.org/05ezcey15', 'no_lang_code', 1, 'https://ror.org/05ezcey15 Toa Pharmaceutical (Japan)'),
(41650, 'https://ror.org/021f23q27', 'en', 1, 'https://ror.org/021f23q27 Freedom House'),
(41651, 'https://ror.org/004565978', 'en', 1, 'https://ror.org/004565978 European Society for Sexual Medicine'),
(41652, 'https://ror.org/01bp1fj20', 'en', 1, 'https://ror.org/01bp1fj20 Wilbur and Hilda Glenn Family Foundation'),
(41653, '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'),
(41654, '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'),
(41655, 'https://ror.org/03mrwhf77', 'en', 1, 'https://ror.org/03mrwhf77 Commonwealth Forestry Association'),
(41656, 'https://ror.org/04rc6g352', 'en', 1, 'https://ror.org/04rc6g352 Granger Foundation'),
(41657, 'https://ror.org/04y63ab76', 'en', 1, 'https://ror.org/04y63ab76 Catching the Dream'),
(41658, 'https://ror.org/03tsm8967', 'en', 1, 'https://ror.org/03tsm8967 Arts Midwest'),
(41659, 'https://ror.org/040hfpx97', 'en', 1, 'https://ror.org/040hfpx97 CEC ArtsLink'),
(41660, 'https://ror.org/02g9hzn44', 'en', 1, 'https://ror.org/02g9hzn44 National Institute of Science and Mathematics Technology'),
(41661, 'https://ror.org/02sstxn62', 'en', 1, 'https://ror.org/02sstxn62 European Bank for Reconstruction and Development'),
(41662, 'https://ror.org/054zw2979', 'en', 1, 'https://ror.org/054zw2979 Arizona Space Grant Consortium'),
(41663, 'https://ror.org/01ah4r412', 'en', 1, 'https://ror.org/01ah4r412 Mary Baker Eddy Library'),
(41664, 'https://ror.org/02chwk660', 'en', 1, 'https://ror.org/02chwk660 Clay Mathematics Institute'),
(41665, 'https://ror.org/058ab6j52', 'en', 1, 'https://ror.org/058ab6j52 Bemis Center for Contemporary Arts'),
(41666, 'https://ror.org/050133s12', 'en', 1, 'https://ror.org/050133s12 Schott Foundation for Public Education'),
(41667, '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'),
(41668, 'https://ror.org/058465397', 'en', 1, 'https://ror.org/058465397 North Carolina Space Grant Consortium'),
(41669, 'https://ror.org/013b2jw60', 'en', 1, 'https://ror.org/013b2jw60 Georgia Space Grant Consortium'),
(41670, 'https://ror.org/00kyqct09', 'en', 1, 'https://ror.org/00kyqct09 Schuler Scholar Program'),
(41671, 'https://ror.org/05rdptj07', 'en', 1, 'https://ror.org/05rdptj07 Josephine De Karman Fellowship Trust'),
(41672, 'https://ror.org/05fbb1126', 'pt', 1, 'https://ror.org/05fbb1126 Instituto Nacional de Ciência e Tecnologia de Doenças Tropicais'),
(41673, 'https://ror.org/011ze6662', 'en', 1, 'https://ror.org/011ze6662 Harry J. Lloyd Charitable Trust'),
(41674, 'https://ror.org/017mjs592', 'en', 1, 'https://ror.org/017mjs592 Illinois Space Grant Consortium'),
(41675, 'https://ror.org/01jaqtk55', 'en', 1, 'https://ror.org/01jaqtk55 Louisville Institute');
INSERT INTO `rors` VALUES
(41676, 'https://ror.org/006p7vb38', 'no_lang_code', 1, 'https://ror.org/006p7vb38 Armstrong World Industries (United States)'),
(41677, 'https://ror.org/02s2t6509', 'en', 1, 'https://ror.org/02s2t6509 MacPhail Center for Music'),
(41678, 'https://ror.org/03xnmzw54', 'en', 1, 'https://ror.org/03xnmzw54 Kansas Space Grant Consortium'),
(41679, 'https://ror.org/0416smw97', 'en', 1, 'https://ror.org/0416smw97 Ovarian Awareness Walk'),
(41680, 'https://ror.org/033becj92', 'en', 1, 'https://ror.org/033becj92 National Operating Committee on Standards for Athletic Equipment'),
(41681, 'https://ror.org/051ksdh55', 'en', 1, 'https://ror.org/051ksdh55 Kentucky Space Grant Consortium'),
(41682, 'https://ror.org/04wdzm653', 'en', 1, 'https://ror.org/04wdzm653 World Forestry Center'),
(41683, 'https://ror.org/01n2qjm43', 'en', 1, 'https://ror.org/01n2qjm43 Children’s Charities Foundation'),
(41684, 'https://ror.org/02k2r5455', 'en', 1, 'https://ror.org/02k2r5455 Maryland Space Grant Consortium'),
(41685, 'https://ror.org/05schts45', 'en', 1, 'https://ror.org/05schts45 Heart Failure Society of America'),
(41686, 'https://ror.org/027sz0n32', 'en', 1, 'https://ror.org/027sz0n32 Congressional Hispanic Caucus Institute'),
(41687, 'https://ror.org/03n10mx16', 'en', 1, 'https://ror.org/03n10mx16 Women''s Research & Education Institute'),
(41688, 'https://ror.org/05yd80n95', 'en', 1, 'https://ror.org/05yd80n95 Congressional Hunger Center'),
(41689, 'https://ror.org/04761rz89', 'en', 1, 'https://ror.org/04761rz89 Whatcom Museum'),
(41690, 'https://ror.org/05thvt304', 'en', 1, 'https://ror.org/05thvt304 Van Alen Institute'),
(41691, 'https://ror.org/00x0rjj17', 'en', 1, 'https://ror.org/00x0rjj17 Montana Space Grant Consortium'),
(41692, 'https://ror.org/0160f3285', 'en', 1, 'https://ror.org/0160f3285 Council of Independent Colleges'),
(41693, 'https://ror.org/02w20cr42', 'en', 1, 'https://ror.org/02w20cr42 Nebraska Space Grant Consortium'),
(41694, 'https://ror.org/032tek884', 'en', 1, 'https://ror.org/032tek884 Medical Letter'),
(41695, 'https://ror.org/038pzr527', 'en', 1, 'https://ror.org/038pzr527 Early Learning Coalition of Miami Dade Monroe'),
(41696, 'https://ror.org/04eehbt36', 'en', 1, 'https://ror.org/04eehbt36 Nevada Space Grant Consortium'),
(41697, 'https://ror.org/010jszw77', 'en', 1, 'https://ror.org/010jszw77 Delaware Space Grant Consortium'),
(41698, 'https://ror.org/020z8zc95', 'en', 1, 'https://ror.org/020z8zc95 American Institute for Economic Research'),
(41699, 'https://ror.org/03x467203', 'en', 1, 'https://ror.org/03x467203 Truman Library Institute'),
(41700, 'https://ror.org/04gm25w26', 'en', 1, 'https://ror.org/04gm25w26 United Way for Southeastern Michigan'),
(41701, 'https://ror.org/034xvnf25', 'en', 1, 'https://ror.org/034xvnf25 Eisenhower Fellowships'),
(41702, 'https://ror.org/02320dz84', 'en', 1, 'https://ror.org/02320dz84 Paul & Daisy Soros Fellowships for New Americans'),
(41703, 'https://ror.org/03ycy6g75', 'en', 1, 'https://ror.org/03ycy6g75 New York Space Grant Consortium'),
(41704, 'https://ror.org/045fdzr53', 'en', 1, 'https://ror.org/045fdzr53 North Dakota Space Grant Consortium'),
(41705, 'https://ror.org/04y65f081', 'en', 1, 'https://ror.org/04y65f081 Ohio Space Grant Consortium'),
(41706, 'https://ror.org/014vbqy29', 'en', 1, 'https://ror.org/014vbqy29 American Theatre Wing'),
(41707, 'https://ror.org/020xgge28', 'en', 1, 'https://ror.org/020xgge28 Oklahoma Space Grant Consortium'),
(41708, 'https://ror.org/0225cwm17', 'en', 1, 'https://ror.org/0225cwm17 Pennsylvania Space Grant Consortium'),
(41709, 'https://ror.org/00686bx53', 'en', 1, 'https://ror.org/00686bx53 PEN American Center'),
(41710, 'https://ror.org/05g9jvj02', 'en', 1, 'https://ror.org/05g9jvj02 Kosair Charities'),
(41711, 'https://ror.org/04jrbrj58', 'en', 1, 'https://ror.org/04jrbrj58 Rhode Island Space Grant Consortium'),
(41712, 'https://ror.org/002ew9g26', 'en', 1, 'https://ror.org/002ew9g26 Leonard Wood Institute'),
(41713, 'https://ror.org/050we9f15', 'en', 1, 'https://ror.org/050we9f15 South Carolina Space Grant Consortium'),
(41714, 'https://ror.org/0169ypx19', 'en', 1, 'https://ror.org/0169ypx19 South Dakota Space Grant Consortium'),
(41715, 'https://ror.org/03024dz78', 'en', 1, 'https://ror.org/03024dz78 Vermont Space Grant Consortium'),
(41716, 'https://ror.org/01zpqad83', 'en', 1, 'https://ror.org/01zpqad83 West Virginia Space Grant Consortium'),
(41717, 'https://ror.org/05a84rn81', 'en', 1, 'https://ror.org/05a84rn81 Long Island League to Abolish Cancer'),
(41718, 'https://ror.org/05ae2ng62', 'en', 1, 'https://ror.org/05ae2ng62 Wisconsin Space Grant Consortium'),
(41719, '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'),
(41720, 'https://ror.org/01j60q321', 'en', 1, 'https://ror.org/01j60q321 Denver Botanic Gardens'),
(41721, 'https://ror.org/04jaeeg73', 'en', 1, 'https://ror.org/04jaeeg73 Wyoming Space Grant Consortium'),
(41722, 'https://ror.org/01hvyf776', 'en', 1, 'https://ror.org/01hvyf776 New York City Economic Development Corporation'),
(41723, 'https://ror.org/042183v27', 'en', 1, 'https://ror.org/042183v27 Nick Kot Charity For TBI'),
(41724, 'https://ror.org/0536y0s22', 'en', 1, 'https://ror.org/0536y0s22 Daniels Fund'),
(41725, 'https://ror.org/00dt8xx11', 'en', 1, 'https://ror.org/00dt8xx11 International Center for Journalists'),
(41726, 'https://ror.org/04z65vq06', 'en', 1, 'https://ror.org/04z65vq06 Fine Arts Work Center'),
(41727, 'https://ror.org/04yx5fa32', 'no_lang_code', 1, 'https://ror.org/04yx5fa32 Nutricia Research (Netherlands)'),
(41728, 'https://ror.org/02psef266', 'en', 1, 'https://ror.org/02psef266 Friends for an Earlier Breast Cancer Test'),
(41729, 'https://ror.org/04x2e7745', 'en', 1, 'https://ror.org/04x2e7745 AlloSource'),
(41730, 'https://ror.org/03a300k41', 'en', 1, 'https://ror.org/03a300k41 Civitan International'),
(41731, 'https://ror.org/01mww5314', 'en', 1, 'https://ror.org/01mww5314 Health Volunteers Overseas'),
(41732, 'https://ror.org/052yxa807', 'en', 1, 'https://ror.org/052yxa807 Brotherhood of St Laurence'),
(41733, 'https://ror.org/03acf4h47', 'en', 1, 'https://ror.org/03acf4h47 Junior League of Des Moines'),
(41734, 'https://ror.org/01m2yw646', 'en', 1, 'https://ror.org/01m2yw646 Horticultural Research Institute'),
(41735, 'https://ror.org/030y35h40', 'en', 1, 'https://ror.org/030y35h40 Bowel and Cancer Research'),
(41736, 'https://ror.org/04edktq70', 'en', 1, 'https://ror.org/04edktq70 Royal British Legion'),
(41737, 'https://ror.org/014n3ck53', 'en', 1, 'https://ror.org/014n3ck53 Hudson Institute'),
(41738, 'https://ror.org/01tefzr55', 'en', 1, 'https://ror.org/01tefzr55 Great Bay Stewards'),
(41739, 'https://ror.org/01v5nrd60', 'en', 1, 'https://ror.org/01v5nrd60 Center for Health Design'),
(41740, 'https://ror.org/03fqqej38', 'en', 1, 'https://ror.org/03fqqej38 Johns Hopkins Children''s Center'),
(41741, 'https://ror.org/03mx5e235', 'en', 1, 'https://ror.org/03mx5e235 European Committee for Treatment and Research in Multiple Sclerosis'),
(41742, 'https://ror.org/0027wxf59', 'en', 1, 'https://ror.org/0027wxf59 Albert Ellis Institute'),
(41743, 'https://ror.org/031ypdv26', 'en', 1, 'https://ror.org/031ypdv26 Intercollegiate Studies Institute'),
(41744, 'https://ror.org/01ygh0g51', 'en', 1, 'https://ror.org/01ygh0g51 Welding Research Council'),
(41745, 'https://ror.org/04stt5k13', 'en', 1, 'https://ror.org/04stt5k13 Prairie Improvement Network'),
(41746, 'https://ror.org/03y14xz82', 'en', 1, 'https://ror.org/03y14xz82 Jewish Board of Family and Children''s Services'),
(41747, 'https://ror.org/00a78zp32', 'en', 1, 'https://ror.org/00a78zp32 Irish American Cultural Institute'),
(41748, 'https://ror.org/054xfjj29', 'en', 1, 'https://ror.org/054xfjj29 CRC for Rail Innovation'),
(41749, 'https://ror.org/040cw3796', 'en', 1, 'https://ror.org/040cw3796 British Ornithologists Union'),
(41750, 'https://ror.org/03jyeqg89', 'en', 1, 'https://ror.org/03jyeqg89 Jewish Child Care Association'),
(41751, 'https://ror.org/01abckz52', 'en', 1, 'https://ror.org/01abckz52 AdventHealth for Children'),
(41752, 'https://ror.org/00z2dj373', 'en', 1, 'https://ror.org/00z2dj373 A Night For Sight'),
(41753, 'https://ror.org/02n3ttt92', 'en', 1, 'https://ror.org/02n3ttt92 ALS Society of Canada'),
(41754, 'https://ror.org/01g621a78', 'en', 1, 'https://ror.org/01g621a78 Royal National Lifeboat Institution'),
(41755, 'https://ror.org/0065zqt33', 'en', 1, 'https://ror.org/0065zqt33 National Cancer Center'),
(41756, 'https://ror.org/04w49dw51', 'en', 1, 'https://ror.org/04w49dw51 Pacific Institute for the Mathematical Sciences'),
(41757, 'https://ror.org/02sx6dd34', 'en', 1, 'https://ror.org/02sx6dd34 Health Care Foundation'),
(41758, 'https://ror.org/0082jv665', 'en', 1, 'https://ror.org/0082jv665 Healthy Waterways'),
(41759, 'https://ror.org/03pydjx38', 'no_lang_code', 1, 'https://ror.org/03pydjx38 State Nuclear Power Technology Company (China)'),
(41760, 'https://ror.org/04pgv9784', 'en', 1, 'https://ror.org/04pgv9784 Energy Biosciences Institute'),
(41761, 'https://ror.org/01b5c2h26', 'en', 1, 'https://ror.org/01b5c2h26 Heart Kids'),
(41762, 'https://ror.org/00v3tjq70', 'en', 1, 'https://ror.org/00v3tjq70 Dairy Management'),
(41763, 'https://ror.org/023943s16', 'en', 1, 'https://ror.org/023943s16 American Partnership for Eosinophilic Disorders'),
(41764, 'https://ror.org/018qsef31', 'en', 1, 'https://ror.org/018qsef31 Northern Gulf Institute'),
(41765, 'https://ror.org/05cnkke79', 'en', 1, 'https://ror.org/05cnkke79 National Vulvodynia Association'),
(41766, 'https://ror.org/004jn1895', 'en', 1, 'https://ror.org/004jn1895 Buckminster Fuller Institute'),
(41767, 'https://ror.org/01y0eyq70', 'en', 1, 'https://ror.org/01y0eyq70 International Society for the Study of the Lumbar Spine'),
(41768, 'https://ror.org/02br4sp34', 'en', 1, 'https://ror.org/02br4sp34 Saskatchewan Flax Development Commission'),
(41769, 'https://ror.org/0149a7069', 'en', 1, 'https://ror.org/0149a7069 Advanced Foods and Materials Network'),
(41770, 'https://ror.org/031m3kw45', 'en', 1, 'https://ror.org/031m3kw45 Alexander Graham Bell Association for the Deaf and Hard of Hearing'),
(41771, 'https://ror.org/01n5qfh17', 'en', 1, 'https://ror.org/01n5qfh17 Centre for Biomedical Engineering and Physics'),
(41772, 'https://ror.org/050zhbw42', 'en', 1, 'https://ror.org/050zhbw42 American Institute of Bangladesh Studies'),
(41773, 'https://ror.org/00nj2y010', 'en', 1, 'https://ror.org/00nj2y010 African Safari Club Of Florida'),
(41774, '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'),
(41775, 'https://ror.org/00z6sta78', 'en', 1, 'https://ror.org/00z6sta78 Citrus Growers Association'),
(41776, 'https://ror.org/04s3dsz85', 'en', 1, 'https://ror.org/04s3dsz85 Office of Diversity and Inclusion'),
(41777, 'https://ror.org/04bdeg508', 'en', 1, 'https://ror.org/04bdeg508 Petroleum Research Newfoundland and Labrador'),
(41778, 'https://ror.org/03cy6xx05', 'en', 1, 'https://ror.org/03cy6xx05 Cancer League of Colorado'),
(41779, 'https://ror.org/04qvn8b67', 'en', 1, 'https://ror.org/04qvn8b67 Association of British Paediatric Nurses'),
(41780, 'https://ror.org/01f6q3121', 'en', 1, 'https://ror.org/01f6q3121 Hyundai Hope On Wheels'),
(41781, 'https://ror.org/05c4jxb21', 'en', 1, 'https://ror.org/05c4jxb21 Workers Compensation Board of British Columbia'),
(41782, 'https://ror.org/033zy4a51', 'en', 1, 'https://ror.org/033zy4a51 Center for Enabling New Technologies Through Catalysis'),
(41783, 'https://ror.org/02x2rzn44', 'en', 1, 'https://ror.org/02x2rzn44 Playford Trust'),
(41784, 'https://ror.org/00evpm282', 'en', 1, 'https://ror.org/00evpm282 Workplace Health, Safety and Compensation Commission'),
(41785, 'https://ror.org/022jstb93', 'en', 1, 'https://ror.org/022jstb93 Design and Art Direction'),
(41786, 'https://ror.org/03yjs4n28', 'en', 1, 'https://ror.org/03yjs4n28 Commonwealth Education Trust'),
(41787, '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'),
(41788, 'https://ror.org/05fd6p289', 'en', 1, 'https://ror.org/05fd6p289 Australian Communications Consumer Action Network'),
(41789, 'https://ror.org/03nm76z82', 'en', 1, 'https://ror.org/03nm76z82 Australian Institute of Policy and Science'),
(41790, 'https://ror.org/037gnvs23', 'en', 1, 'https://ror.org/037gnvs23 English Speaking Union'),
(41791, 'https://ror.org/00q2kx914', 'en', 1, 'https://ror.org/00q2kx914 Fisheries Society of the British Isles'),
(41792, 'https://ror.org/04ymsr904', 'en', 1, 'https://ror.org/04ymsr904 Carclew Youth Arts'),
(41793, 'https://ror.org/02hger267', 'en', 1, 'https://ror.org/02hger267 Great Britain China Centre'),
(41794, 'https://ror.org/03cjaa329', 'en', 1, 'https://ror.org/03cjaa329 Migraine Trust'),
(41795, 'https://ror.org/00hc57b89', 'en', 1, 'https://ror.org/00hc57b89 Solid Wood Innovation'),
(41796, 'https://ror.org/00rvy3n84', 'en', 1, 'https://ror.org/00rvy3n84 Iolanthe Midwifery Trust'),
(41797, 'https://ror.org/037s01565', 'da', 1, 'https://ror.org/037s01565 Scleroseforeningen'),
(41798, 'https://ror.org/02mfknm62', 'en', 1, 'https://ror.org/02mfknm62 Hypertension Trust'),
(41799, 'https://ror.org/00w4m9556', 'en', 1, 'https://ror.org/00w4m9556 Human Resources Professionals Association'),
(41800, 'https://ror.org/02j37bn23', 'en', 1, 'https://ror.org/02j37bn23 Beatson Cancer Charity'),
(41801, 'https://ror.org/03z7hft29', 'en', 1, 'https://ror.org/03z7hft29 British Federation of Women Graduates'),
(41802, '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'),
(41803, 'https://ror.org/00y9yvc25', 'en', 1, 'https://ror.org/00y9yvc25 Action Duchenne'),
(41804, 'https://ror.org/05egkbh47', 'en', 1, 'https://ror.org/05egkbh47 National Anti-Vivisection Society'),
(41805, 'https://ror.org/01mf4te84', 'en', 1, 'https://ror.org/01mf4te84 Abbey Awards'),
(41806, 'https://ror.org/02aqppr80', 'en', 1, 'https://ror.org/02aqppr80 Boston Area Research Initiative'),
(41807, 'https://ror.org/02mf6dg38', 'en', 1, 'https://ror.org/02mf6dg38 Action Cancer'),
(41808, 'https://ror.org/03tyjmh67', 'en', 1, 'https://ror.org/03tyjmh67 Melissa Institute for Violence Prevention and Treatment'),
(41809, 'https://ror.org/01kpf2x84', 'en', 1, 'https://ror.org/01kpf2x84 Chartered Institute of Management Accountants'),
(41810, 'https://ror.org/05h4fcj88', 'no_lang_code', 1, 'https://ror.org/05h4fcj88 Mercers’ Company (United Kingdom)'),
(41811, 'https://ror.org/042404z19', 'en', 1, 'https://ror.org/042404z19 Coeliac UK'),
(41812, 'https://ror.org/00vtr6j87', 'en', 1, 'https://ror.org/00vtr6j87 Myotubular Trust'),
(41813, 'https://ror.org/042szwr56', 'en', 1, 'https://ror.org/042szwr56 Spinal Research'),
(41814, 'https://ror.org/003vffc21', 'en', 1, 'https://ror.org/003vffc21 Arts Council of Wales Cyngor Celfyddydau Cymru'),
(41815, 'https://ror.org/00xphjb32', 'en', 1, 'https://ror.org/00xphjb32 Queen’s Nursing Institute Scotland'),
(41816, 'https://ror.org/05qvbeb50', 'en', 1, 'https://ror.org/05qvbeb50 National Association of Social Workers'),
(41817, 'https://ror.org/03192vt15', 'en', 1, 'https://ror.org/03192vt15 Ataxia UK'),
(41818, 'https://ror.org/04c7vyz18', 'en', 1, 'https://ror.org/04c7vyz18 Breakthrough Institute'),
(41819, 'https://ror.org/00w1nhp77', 'en', 1, 'https://ror.org/00w1nhp77 Union of Arab Chemists Ų„ŲŖŲ­Ų§ŲÆ Ų§Ł„ŁƒŁŠŁ…ŁŠŲ§Ų¦ŁŠŁŠŁ† العرب'),
(41820, 'https://ror.org/0207g4422', 'en', 1, 'https://ror.org/0207g4422 RCVS Knowledge'),
(41821, 'https://ror.org/05qrzv962', 'en', 1, 'https://ror.org/05qrzv962 Overseas Press Club of America'),
(41822, 'https://ror.org/04etqyp34', 'cy', 1, 'https://ror.org/04etqyp34 Remedi'),
(41823, 'https://ror.org/012xv3367', 'en', 1, 'https://ror.org/012xv3367 Scientific Committee on Antarctic Research'),
(41824, 'https://ror.org/0156dtt23', 'en', 1, 'https://ror.org/0156dtt23 Arts Council of Northern Ireland'),
(41825, 'https://ror.org/03tzsk589', 'en', 1, 'https://ror.org/03tzsk589 British Council For Prevention of Blindness'),
(41826, 'https://ror.org/01126vz29', 'en', 1, 'https://ror.org/01126vz29 Headley Trust'),
(41827, 'https://ror.org/00289h314', 'en', 1, 'https://ror.org/00289h314 American Egg Board'),
(41828, 'https://ror.org/00h6vxx49', 'en', 1, 'https://ror.org/00h6vxx49 U.S. Green Building Council'),
(41829, 'https://ror.org/05tpt3034', 'en', 1, 'https://ror.org/05tpt3034 Stapledon Memorial Trust'),
(41830, 'https://ror.org/01w336058', 'en', 1, 'https://ror.org/01w336058 Royal Norwegian Embassy in London'),
(41831, 'https://ror.org/00ppjep56', 'en', 1, 'https://ror.org/00ppjep56 Cancer Association of South Africa'),
(41832, 'https://ror.org/02swjdp46', 'en', 1, 'https://ror.org/02swjdp46 Children’s Discovery Institute'),
(41833, 'https://ror.org/04kknj623', 'en', 1, 'https://ror.org/04kknj623 EMF Biological Research Trust'),
(41834, 'https://ror.org/003p9wg45', 'en', 1, 'https://ror.org/003p9wg45 Henry Smith Charity'),
(41835, 'https://ror.org/04k6mn280', 'en', 1, 'https://ror.org/04k6mn280 Society for Endocrinology'),
(41836, 'https://ror.org/02ez1f997', 'en', 1, 'https://ror.org/02ez1f997 Sparks'),
(41837, 'https://ror.org/01smvzn14', 'en', 1, 'https://ror.org/01smvzn14 Winter Cereal Trust'),
(41838, 'https://ror.org/000bbgp24', 'en', 1, 'https://ror.org/000bbgp24 Centre for Transportation Engineering and Planning'),
(41839, 'https://ror.org/00t6bvs64', 'en', 1, 'https://ror.org/00t6bvs64 National Heritage Council'),
(41840, 'https://ror.org/014303d61', 'en', 1, 'https://ror.org/014303d61 Ohio Department of Transportation'),
(41841, 'https://ror.org/01deqjx32', 'en', 1, 'https://ror.org/01deqjx32 Entrust'),
(41842, 'https://ror.org/03m1r7z07', 'no_lang_code', 1, 'https://ror.org/03m1r7z07 Asian Civilisations Museum Muzium Tamadun Asia äŗšę“²ę–‡ę˜Žåšē‰©é¦†'),
(41843, 'https://ror.org/0341wf912', 'en', 1, 'https://ror.org/0341wf912 Safari Club International'),
(41844, 'https://ror.org/02wcz1374', 'en', 1, 'https://ror.org/02wcz1374 Arthritis Australia'),
(41845, 'https://ror.org/024wrmf62', 'en', 1, 'https://ror.org/024wrmf62 Duchenne Research Fund'),
(41846, 'https://ror.org/00skrfj45', 'en', 1, 'https://ror.org/00skrfj45 China Youth Development Foundation äø­å›½é’å°‘å¹“å‘å±•åŸŗé‡‘ä¼š'),
(41847, 'https://ror.org/01cmzh619', 'en', 1, 'https://ror.org/01cmzh619 Mental Health Australia'),
(41848, 'https://ror.org/03vwp3588', 'en', 1, 'https://ror.org/03vwp3588 Arkleton Trust'),
(41849, 'https://ror.org/00yb6qh25', 'en', 1, 'https://ror.org/00yb6qh25 Beit Trust'),
(41850, 'https://ror.org/05b6yak03', 'en', 1, 'https://ror.org/05b6yak03 Community Arts Network'),
(41851, 'https://ror.org/04mhkhc08', 'en', 1, 'https://ror.org/04mhkhc08 Solve ME/CFS Initiative'),
(41852, 'https://ror.org/02wq22q69', 'en', 1, 'https://ror.org/02wq22q69 Nehru Trust'),
(41853, 'https://ror.org/04dh1cz78', 'en', 1, 'https://ror.org/04dh1cz78 Pasold Research Fund'),
(41854, 'https://ror.org/01rdbtj19', 'en', 1, 'https://ror.org/01rdbtj19 Australian Rotary Health'),
(41855, 'https://ror.org/00bv1cj87', 'en', 1, 'https://ror.org/00bv1cj87 Indian Council of Philosophical Research'),
(41856, 'https://ror.org/002827k23', 'en', 1, 'https://ror.org/002827k23 Frankfurt Zoological Society Zoologische Gesellschaft Frankfurt'),
(41857, 'https://ror.org/01dtghp88', 'en', 1, 'https://ror.org/01dtghp88 Australian American Fulbright Commission'),
(41858, 'https://ror.org/05jn2xb28', 'en', 1, 'https://ror.org/05jn2xb28 Kidney Health New Zealand'),
(41859, 'https://ror.org/03455j977', 'en', 1, 'https://ror.org/03455j977 Fraser Institute'),
(41860, 'https://ror.org/000feez16', 'en', 1, 'https://ror.org/000feez16 Social Policy Evaluation and Research Unit'),
(41861, 'https://ror.org/001t6pv65', 'en', 1, 'https://ror.org/001t6pv65 Grand Lodge of Western Australia'),
(41862, 'https://ror.org/02ptdck34', 'en', 1, 'https://ror.org/02ptdck34 Australian Housing and Urban Research Institute'),
(41863, 'https://ror.org/01abhta88', 'de', 1, 'https://ror.org/01abhta88 Aus- und Weiterbildungseinrichtung für Klinische Verhaltenstherapie'),
(41864, 'https://ror.org/05jdvx041', 'en', 1, 'https://ror.org/05jdvx041 New Zealand Council for Educational Research'),
(41865, 'https://ror.org/0462yrd97', 'en', 1, 'https://ror.org/0462yrd97 Leukemia & Lymphoma Society of Canada'),
(41866, 'https://ror.org/05nhx9b20', 'en', 1, 'https://ror.org/05nhx9b20 China Social Welfare Foundation äø­å›½ē¤¾ä¼šē¦åˆ©åŸŗé‡‘ä¼š'),
(41867, 'https://ror.org/0567eg765', 'en', 1, 'https://ror.org/0567eg765 Fulbright New Zealand'),
(41868, 'https://ror.org/01qhvn038', 'en', 1, 'https://ror.org/01qhvn038 Petplan Charitable Trust'),
(41869, 'https://ror.org/029cn2a76', 'nl', 1, 'https://ror.org/029cn2a76 GGZ Rivierduinen'),
(41870, 'https://ror.org/002c9wz60', 'en', 1, 'https://ror.org/002c9wz60 Centre for Ageing Research and Development in Ireland'),
(41871, 'https://ror.org/00pz6eg79', 'en', 1, 'https://ror.org/00pz6eg79 Ontario Stroke Network'),
(41872, 'https://ror.org/04rnenb96', 'en', 1, 'https://ror.org/04rnenb96 Australian War Memorial'),
(41873, 'https://ror.org/0053vns10', 'en', 1, 'https://ror.org/0053vns10 An Comhairle Oidhreachta Heritage Council'),
(41874, 'https://ror.org/01z4e0695', 'en', 1, 'https://ror.org/01z4e0695 Winston Churchill Memorial Trust'),
(41875, 'https://ror.org/00t93jm73', 'nl', 1, 'https://ror.org/00t93jm73 Lentis'),
(41876, 'https://ror.org/01wd8z492', 'fr', 1, 'https://ror.org/01wd8z492 Conseil FranƧais de l''Ɖnergie'),
(41877, 'https://ror.org/03c0kv729', 'nl', 1, 'https://ror.org/03c0kv729 GGZ Friesland'),
(41878, 'https://ror.org/03mxg5j39', 'en', 1, 'https://ror.org/03mxg5j39 Agricultural Adaptation Council'),
(41879, 'https://ror.org/01nkrwq24', 'en', 1, 'https://ror.org/01nkrwq24 Astronomical Society of Australia'),
(41880, 'https://ror.org/002rcdx19', 'en', 1, 'https://ror.org/002rcdx19 Institute and Faculty of Actuaries'),
(41881, 'https://ror.org/04akhbz72', 'en', 1, 'https://ror.org/04akhbz72 Hong Kong Institute of Surveyors é¦™ęøÆęø¬é‡åø«å­øęœƒ'),
(41882, 'https://ror.org/05f6c0c45', 'en', 1, 'https://ror.org/05f6c0c45 Helse Nord RHF Northern Norway Regional Health Authority'),
(41883, 'https://ror.org/00xn8e010', 'es', 1, 'https://ror.org/00xn8e010 Asociación para la Conservación de la Cuenca Amazónica'),
(41884, 'https://ror.org/0571cj070', 'en', 1, 'https://ror.org/0571cj070 Fresh Science'),
(41885, 'https://ror.org/00a0cz818', 'en', 1, 'https://ror.org/00a0cz818 Irish Institute of Clinical Neuroscience'),
(41886, 'https://ror.org/0411p0k29', 'en', 1, 'https://ror.org/0411p0k29 Australian Institute of Physics'),
(41887, 'https://ror.org/02ag9qs60', 'es', 1, 'https://ror.org/02ag9qs60 MPS EspaƱa'),
(41888, 'https://ror.org/05ewcwb21', 'en', 1, 'https://ror.org/05ewcwb21 Pharmaceutical and Medical Device Regulatory Science Society of Japan åŒ»č–¬å“åŒ»ē™‚ę©Ÿå™Øćƒ¬ć‚®ćƒ„ćƒ©ćƒˆćƒŖćƒ¼ć‚µć‚¤ć‚Øćƒ³ć‚¹č²”å›£'),
(41889, 'https://ror.org/006cprg57', 'en', 1, 'https://ror.org/006cprg57 Central Board of Irrgation and Power'),
(41890, 'https://ror.org/00tf2g326', 'en', 1, 'https://ror.org/00tf2g326 Bolton Sixth Form College'),
(41891, 'https://ror.org/00hf72d13', 'en', 1, 'https://ror.org/00hf72d13 Boonton Public Schools'),
(41892, 'https://ror.org/050af1664', 'en', 1, 'https://ror.org/050af1664 Bossier Parish Community College'),
(41893, 'https://ror.org/01e0fj447', 'en', 1, 'https://ror.org/01e0fj447 Assumption College San Lorenzo'),
(41894, 'https://ror.org/04sj6d461', 'en', 1, 'https://ror.org/04sj6d461 Chatfield College'),
(41895, 'https://ror.org/050nwww65', 'en', 1, 'https://ror.org/050nwww65 Botswana Accountancy College'),
(41896, 'https://ror.org/02nxvmx58', 'en', 1, 'https://ror.org/02nxvmx58 Accrington and Rossendale College'),
(41897, 'https://ror.org/03jvv3z84', 'en', 1, 'https://ror.org/03jvv3z84 Bournville College'),
(41898, 'https://ror.org/03fm9h746', 'en', 1, 'https://ror.org/03fm9h746 Acsenda School of Management'),
(41899, 'https://ror.org/02t9ezy32', 'en', 1, 'https://ror.org/02t9ezy32 Bracknell and Wokingham College'),
(41900, 'https://ror.org/00n900q40', 'en', 1, 'https://ror.org/00n900q40 Bradford School - Pittsburgh'),
(41901, 'https://ror.org/02dja5009', 'en', 1, 'https://ror.org/02dja5009 Bradford School - Columbus'),
(41902, 'https://ror.org/01yqkbc31', 'en', 1, 'https://ror.org/01yqkbc31 Chetham''s School of Music'),
(41903, 'https://ror.org/04ze84192', 'en', 1, 'https://ror.org/04ze84192 Australian College of Physical Education'),
(41904, 'https://ror.org/01cb10c90', 'en', 1, 'https://ror.org/01cb10c90 Cheung Kong Graduate School of Business é•æę±Ÿå•†å­¦é™¢'),
(41905, 'https://ror.org/00hm0mb83', 'en', 1, 'https://ror.org/00hm0mb83 Bramson ORT College'),
(41906, 'https://ror.org/02ffzw118', 'en', 1, 'https://ror.org/02ffzw118 Columbia College - California'),
(41907, 'https://ror.org/0207c0t18', 'en', 1, 'https://ror.org/0207c0t18 Admas University'),
(41908, 'https://ror.org/04gqe5s96', 'en', 1, 'https://ror.org/04gqe5s96 Chichester College'),
(41909, 'https://ror.org/00vnat122', 'en', 1, 'https://ror.org/00vnat122 China Graduate School of Theology äø­åœ‹ē„žå­øē ”ē©¶é™¢'),
(41910, 'https://ror.org/006jnja70', 'en', 1, 'https://ror.org/006jnja70 Utah College of Applied Technology'),
(41911, 'https://ror.org/02rrsh045', 'en', 1, 'https://ror.org/02rrsh045 Aichi Konan College ę„›ēŸ„ę±Ÿå—ēŸ­ęœŸå¤§å­¦'),
(41912, 'https://ror.org/03y6m2j03', 'en', 1, 'https://ror.org/03y6m2j03 China University of Technology äø­åœ‹ē§‘ęŠ€å¤§å­ø'),
(41913, 'https://ror.org/01spfrk28', 'en', 1, 'https://ror.org/01spfrk28 Columbia College Hollywood'),
(41914, 'https://ror.org/01y5kcv82', 'en', 1, 'https://ror.org/01y5kcv82 BridgeValley Community and Technical College'),
(41915, 'https://ror.org/01wk6zs95', 'en', 1, 'https://ror.org/01wk6zs95 Aiken Technical College'),
(41916, 'https://ror.org/01kaw2b03', 'en', 1, 'https://ror.org/01kaw2b03 Australian Defence College'),
(41917, 'https://ror.org/05m4h2z49', 'en', 1, 'https://ror.org/05m4h2z49 Columbus Technical College'),
(41918, 'https://ror.org/03bkgak51', 'en', 1, 'https://ror.org/03bkgak51 Christ the King Sixth Form College'),
(41919, 'https://ror.org/04hpwpk22', 'en', 1, 'https://ror.org/04hpwpk22 Albany Technical College'),
(41920, 'https://ror.org/01mv04x52', 'en', 1, 'https://ror.org/01mv04x52 British College of Osteopathic Medicine'),
(41921, 'https://ror.org/03q8sfx86', 'en', 1, 'https://ror.org/03q8sfx86 Comilla Medical College ą¦•ą§ą¦®ą¦æą¦²ą§ą¦²ą¦¾ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(41922, 'https://ror.org/02kjxc710', 'en', 1, 'https://ror.org/02kjxc710 Aventis School of Management'),
(41923, 'https://ror.org/05tnja216', 'en', 1, 'https://ror.org/05tnja216 University College of Osteopathy'),
(41924, 'https://ror.org/03fe85378', 'en', 1, 'https://ror.org/03fe85378 Cincinnati College of Mortuary Science'),
(41925, 'https://ror.org/004sqv102', 'en', 1, 'https://ror.org/004sqv102 Bromley College of Further and Higher Education'),
(41926, 'https://ror.org/05tn82m22', 'en', 1, 'https://ror.org/05tn82m22 Community Care College'),
(41927, 'https://ror.org/00fj6he94', 'en', 1, 'https://ror.org/00fj6he94 Alberta Bible College'),
(41928, 'https://ror.org/0186tvr04', 'en', 1, 'https://ror.org/0186tvr04 Circle in the Square Theatre School'),
(41929, 'https://ror.org/05tg57g61', 'en', 1, 'https://ror.org/05tg57g61 Azrieli College of Engineering Jerusalem ×¢×–×Ø×™××œ×™-המכללה להנדהה ×™×Ø×•×©×œ×™×'),
(41930, 'https://ror.org/03q8jhh94', 'en', 1, 'https://ror.org/03q8jhh94 Allen Community College'),
(41931, 'https://ror.org/03gc7jk79', 'en', 1, 'https://ror.org/03gc7jk79 Cisco College'),
(41932, 'https://ror.org/00hvga705', 'en', 1, 'https://ror.org/00hvga705 Baki Ali Neft Məktəbi Baku Higher Oil School'),
(41933, 'https://ror.org/01nna8315', 'en', 1, 'https://ror.org/01nna8315 Community College of Vermont'),
(41934, 'https://ror.org/03bmbn692', 'en', 1, 'https://ror.org/03bmbn692 Allentown High School'),
(41935, 'https://ror.org/0437gna76', 'en', 1, 'https://ror.org/0437gna76 Concordia College - New York'),
(41936, 'https://ror.org/00h90tg62', 'en', 1, 'https://ror.org/00h90tg62 City College'),
(41937, 'https://ror.org/019n4sb32', 'en', 1, 'https://ror.org/019n4sb32 Connors State College'),
(41938, 'https://ror.org/02hxmqn30', 'en', 1, 'https://ror.org/02hxmqn30 Civil Service College'),
(41939, 'https://ror.org/00fdhj025', 'en', 1, 'https://ror.org/00fdhj025 Bangladesh Air Force Shaheen College ą¦¬ą¦æą¦ą¦ą¦« শাহীন ą¦•ą¦²ą§‡ą¦œ ঢাকা'),
(41940, 'https://ror.org/02dwq5n29', 'en', 1, 'https://ror.org/02dwq5n29 Alliance College of Australia'),
(41941, 'https://ror.org/04c49cg83', 'en', 1, 'https://ror.org/04c49cg83 Clarendon College'),
(41942, 'https://ror.org/0028fee73', 'en', 1, 'https://ror.org/0028fee73 Butler County Community College'),
(41943, 'https://ror.org/016x6xx47', 'en', 1, 'https://ror.org/016x6xx47 Baptist Theological College of Southern Africa'),
(41944, 'https://ror.org/037pjhv41', 'en', 1, 'https://ror.org/037pjhv41 Craven College'),
(41945, 'https://ror.org/04mw0df78', 'en', 1, 'https://ror.org/04mw0df78 North Carolina Community College System'),
(41946, 'https://ror.org/05mg7fy05', 'en', 1, 'https://ror.org/05mg7fy05 Coastal Pines Technical College'),
(41947, 'https://ror.org/00qf0n903', 'en', 1, 'https://ror.org/00qf0n903 Clinton College'),
(41948, 'https://ror.org/00hqa1k37', 'en', 1, 'https://ror.org/00hqa1k37 California Christian College'),
(41949, 'https://ror.org/008e3px62', 'en', 1, 'https://ror.org/008e3px62 Cloud County Community College'),
(41950, 'https://ror.org/03c2stx68', 'en', 1, 'https://ror.org/03c2stx68 American Career College'),
(41951, 'https://ror.org/05t99sp05', 'en', 1, 'https://ror.org/05t99sp05 California Coast University'),
(41952, 'https://ror.org/04fdz6f52', 'en', 1, 'https://ror.org/04fdz6f52 Crossroads Bible College'),
(41953, 'https://ror.org/00vvhe852', 'en', 1, 'https://ror.org/00vvhe852 California College San Diego'),
(41954, 'https://ror.org/058jtxa41', 'en', 1, 'https://ror.org/058jtxa41 Craven Community College'),
(41955, 'https://ror.org/05t365n53', 'en', 1, 'https://ror.org/05t365n53 American River College'),
(41956, 'https://ror.org/03ehswj04', 'en', 1, 'https://ror.org/03ehswj04 Barstow Community College'),
(41957, 'https://ror.org/01262d760', 'en', 1, 'https://ror.org/01262d760 CNI College'),
(41958, 'https://ror.org/02ffbv447', 'en', 1, 'https://ror.org/02ffbv447 Crowleys Ridge College'),
(41959, 'https://ror.org/04rhvbz32', 'en', 1, 'https://ror.org/04rhvbz32 California Community Colleges System'),
(41960, 'https://ror.org/046hkwj59', 'en', 1, 'https://ror.org/046hkwj59 Coastal Bend College'),
(41961, 'https://ror.org/04phxq043', 'en', 1, 'https://ror.org/04phxq043 California Miramar University'),
(41962, 'https://ror.org/010dzxm21', 'en', 1, 'https://ror.org/010dzxm21 Barton Peveril College'),
(41963, 'https://ror.org/01gtdbh44', 'en', 1, 'https://ror.org/01gtdbh44 Cuyamaca College'),
(41964, 'https://ror.org/02cb4m248', 'en', 1, 'https://ror.org/02cb4m248 Coastal Carolina Community College'),
(41965, 'https://ror.org/02zpajz15', 'en', 1, 'https://ror.org/02zpajz15 Bates Technical College'),
(41966, 'https://ror.org/02gc32c47', 'en', 1, 'https://ror.org/02gc32c47 New College Lanarkshire'),
(41967, 'https://ror.org/03h37fs39', 'en', 1, 'https://ror.org/03h37fs39 Daegu Future College å¤§é‚±ęœŖä¾†å¤§å­ø ėŒ€źµ¬ėÆøėž˜ėŒ€ķ•™'),
(41968, 'https://ror.org/00pbyj886', 'en', 1, 'https://ror.org/00pbyj886 Bath College'),
(41969, 'https://ror.org/01qqm4q52', 'en', 1, 'https://ror.org/01qqm4q52 CaƱada College'),
(41970, 'https://ror.org/024eshr84', 'en', 1, 'https://ror.org/024eshr84 Coffeyville Community College'),
(41971, 'https://ror.org/03jpef473', 'en', 1, 'https://ror.org/03jpef473 Canton City School District'),
(41972, 'https://ror.org/01ym21515', 'en', 1, 'https://ror.org/01ym21515 Darton State College'),
(41973, 'https://ror.org/01k7shx94', 'en', 1, 'https://ror.org/01k7shx94 Andrew College'),
(41974, 'https://ror.org/00rxf7n07', 'en', 1, 'https://ror.org/00rxf7n07 Korea Agency for Infrastructure Technology Advancement'),
(41975, 'https://ror.org/014319z45', 'en', 1, 'https://ror.org/014319z45 Cardinal Tien College of Healthcare and Management č€•čŽ˜å„åŗ·ē®”ē†å°ˆē§‘å­øę ”'),
(41976, 'https://ror.org/02g553740', 'en', 1, 'https://ror.org/02g553740 Beal College'),
(41977, 'https://ror.org/00h9jch39', 'en', 1, 'https://ror.org/00h9jch39 Carey Baptist College'),
(41978, 'https://ror.org/00tr1bg48', 'en', 1, 'https://ror.org/00tr1bg48 College of Business and Technology'),
(41979, 'https://ror.org/0062gvn89', 'en', 1, 'https://ror.org/0062gvn89 Angliss International Hotel School'),
(41980, 'https://ror.org/03eabnp32', 'en', 1, 'https://ror.org/03eabnp32 Carl Albert State College'),
(41981, 'https://ror.org/04vkgh027', 'en', 1, 'https://ror.org/04vkgh027 Berk Trade and Business School'),
(41982, 'https://ror.org/02zfe4c02', 'en', 1, 'https://ror.org/02zfe4c02 Dundee and Angus College'),
(41983, 'https://ror.org/03j9n1e36', 'en', 1, 'https://ror.org/03j9n1e36 Davis College - Ohio'),
(41984, 'https://ror.org/009xxkc85', 'en', 1, 'https://ror.org/009xxkc85 Carrington College'),
(41985, 'https://ror.org/01pnp3p28', 'en', 1, 'https://ror.org/01pnp3p28 College of Coastal Georgia'),
(41986, 'https://ror.org/006hpkx89', 'en', 1, 'https://ror.org/006hpkx89 Daymar College'),
(41987, 'https://ror.org/05nfte436', 'no_lang_code', 1, 'https://ror.org/05nfte436 Bermuda College'),
(41988, 'https://ror.org/01cf8hm38', 'en', 1, 'https://ror.org/01cf8hm38 Anoka Technical College'),
(41989, 'https://ror.org/03zc86h29', 'en', 1, 'https://ror.org/03zc86h29 Carteret Community College'),
(41990, 'https://ror.org/05eybs418', 'en', 1, 'https://ror.org/05eybs418 Anoka-Ramsey Community College'),
(41991, 'https://ror.org/0247acz73', 'en', 1, 'https://ror.org/0247acz73 Cavendish University Zambia'),
(41992, 'https://ror.org/04bjq2e40', 'en', 1, 'https://ror.org/04bjq2e40 College of North West London'),
(41993, 'https://ror.org/02pz3nt69', 'en', 1, 'https://ror.org/02pz3nt69 Truman Bodden Law School'),
(41994, 'https://ror.org/04t5yz624', 'en', 1, 'https://ror.org/04t5yz624 Defense Information School'),
(41995, 'https://ror.org/05b11sy48', 'en', 1, 'https://ror.org/05b11sy48 Antonelli College'),
(41996, 'https://ror.org/03gbfvb23', 'en', 1, 'https://ror.org/03gbfvb23 Central Ohio Technical College'),
(41997, 'https://ror.org/01gwn6z70', 'en', 1, 'https://ror.org/01gwn6z70 College of San Mateo'),
(41998, 'https://ror.org/053c08c15', 'en', 1, 'https://ror.org/053c08c15 Bicton College'),
(41999, 'https://ror.org/02wk65538', 'en', 1, 'https://ror.org/02wk65538 Delaware College of Art and Design'),
(42000, 'https://ror.org/01z61p797', 'en', 1, 'https://ror.org/01z61p797 Big Bend Community College'),
(42001, 'https://ror.org/04x9k0k55', 'en', 1, 'https://ror.org/04x9k0k55 Aquinas College - Tennessee'),
(42002, 'https://ror.org/0129nkm21', 'en', 1, 'https://ror.org/0129nkm21 Big Sandy Community and Technical College'),
(42003, 'https://ror.org/04x22kg34', 'en', 1, 'https://ror.org/04x22kg34 Delbarton School'),
(42004, 'https://ror.org/03fpzah45', 'en', 1, 'https://ror.org/03fpzah45 College of Southern Nevada'),
(42005, 'https://ror.org/01j8znm98', 'en', 1, 'https://ror.org/01j8znm98 Arizona Christian University'),
(42006, 'https://ror.org/03jcx4790', 'en', 1, 'https://ror.org/03jcx4790 College of St. Joseph'),
(42007, 'https://ror.org/01scq3556', 'en', 1, 'https://ror.org/01scq3556 Denmark Technical College'),
(42008, 'https://ror.org/009w3qm52', 'en', 1, 'https://ror.org/009w3qm52 Bishop Burton College'),
(42009, 'https://ror.org/057xgt263', 'pt', 1, 'https://ror.org/057xgt263 Fundação de Tecnologia do Estado do Acre'),
(42010, 'https://ror.org/03qhht705', 'en', 1, 'https://ror.org/03qhht705 National Institute of Technology, Matsue College ę¾ę±Ÿå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(42011, 'https://ror.org/00zh1bv32', 'en', 1, 'https://ror.org/00zh1bv32 DuBois Business College'),
(42012, 'https://ror.org/01shp5e75', 'en', 1, 'https://ror.org/01shp5e75 Black River Technical College'),
(42013, 'https://ror.org/040vj3n59', 'en', 1, 'https://ror.org/040vj3n59 Dunwoody College of Technology'),
(42014, 'https://ror.org/00pvcan36', 'en', 1, 'https://ror.org/00pvcan36 Arkansas Baptist College'),
(42015, 'https://ror.org/04d9y9m22', 'en', 1, 'https://ror.org/04d9y9m22 National Institute of Technology, Miyakonojo College éƒ½åŸŽå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(42016, 'https://ror.org/0215jzs21', 'en', 1, 'https://ror.org/0215jzs21 Arkansas State University Mountain Home'),
(42017, 'https://ror.org/037r51j35', 'en', 1, 'https://ror.org/037r51j35 Blue Ridge Community and Technical College'),
(42018, 'https://ror.org/04hs3y322', 'en', 1, 'https://ror.org/04hs3y322 Eagle Gate College'),
(42019, 'https://ror.org/02gn4kd94', 'en', 1, 'https://ror.org/02gn4kd94 National Institute of Technology, Numazu College ę²¼ę“„é«˜å°‚'),
(42020, 'https://ror.org/0448r9386', 'en', 1, 'https://ror.org/0448r9386 Divine Word College'),
(42021, 'https://ror.org/04xrsnf23', 'en', 1, 'https://ror.org/04xrsnf23 Bolton College'),
(42022, 'https://ror.org/0583vk835', 'en', 1, 'https://ror.org/0583vk835 East Arkansas Community College'),
(42023, 'https://ror.org/03w2ae733', 'en', 1, 'https://ror.org/03w2ae733 Armed Forces Academies Preparatory School โรงเรียนเตรียดทหาร'),
(42024, 'https://ror.org/0415ygs14', 'en', 1, 'https://ror.org/0415ygs14 National Institute of Technology, Tomakomai College č‹«å°ē‰§å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(42025, 'https://ror.org/03em6r869', 'en', 1, 'https://ror.org/03em6r869 Armed Forces Medical College ą¦œą§ą¦žą¦¾ą¦Øą¦‡ ą¦¶ą¦•ą§ą¦¤ą¦æ,সেবাই ą¦§ą¦°ą§ą¦®'),
(42026, 'https://ror.org/04mnf7j68', 'en', 1, 'https://ror.org/04mnf7j68 Dongnam Health University ę±å—äæå„å¤§å­ø ė™ė‚Øė³“ź±“ėŒ€ķ•™'),
(42027, 'https://ror.org/02wn2b621', 'en', 1, 'https://ror.org/02wn2b621 College of the Resurrection'),
(42028, 'https://ror.org/039h3aa75', 'en', 1, 'https://ror.org/039h3aa75 ASA College'),
(42029, 'https://ror.org/03qa0dm98', 'en', 1, 'https://ror.org/03qa0dm98 East Central Community College'),
(42030, 'https://ror.org/00sfwx025', 'en', 1, 'https://ror.org/00sfwx025 Ashkelon Academic College המכללה ×”××§×“×ž×™×Ŗ אשקלון'),
(42031, 'https://ror.org/02q0t9634', 'hi', 1, 'https://ror.org/02q0t9634 Chhattisgarh Kamdhenu Vishwavidyalaya ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼ ą¤•ą¤¾ą¤®ą¤§ą„‡ą¤Øą„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(42032, 'https://ror.org/00ck0vh11', 'en', 1, 'https://ror.org/00ck0vh11 College of Westchester'),
(42033, 'https://ror.org/050p5ky47', 'en', 1, 'https://ror.org/050p5ky47 CollegeAmerica'),
(42034, 'https://ror.org/03fcyyh75', 'en', 1, 'https://ror.org/03fcyyh75 Eastern Arizona College'),
(42035, 'https://ror.org/01ft2as73', 'en', 1, 'https://ror.org/01ft2as73 Eastern Medical College and Hospital ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦Ø মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(42036, 'https://ror.org/035fw1666', 'en', 1, 'https://ror.org/035fw1666 Good Shepherd College'),
(42037, 'https://ror.org/034fab991', 'en', 1, 'https://ror.org/034fab991 Eastern West Virginia Community and Technical College'),
(42038, 'https://ror.org/00vzha967', 'en', 1, 'https://ror.org/00vzha967 Henderson Community College'),
(42039, 'https://ror.org/03ye76s02', 'en', 1, 'https://ror.org/03ye76s02 Eastern Wyoming College'),
(42040, 'https://ror.org/03wzvrw53', 'en', 1, 'https://ror.org/03wzvrw53 Feather River College'),
(42041, 'https://ror.org/04nje3391', 'en', 1, 'https://ror.org/04nje3391 Goodenough College'),
(42042, 'https://ror.org/00qbqm161', 'en', 1, 'https://ror.org/00qbqm161 International Business College - Fort Wayne'),
(42043, 'https://ror.org/01j1caa04', 'en', 1, 'https://ror.org/01j1caa04 Henley College'),
(42044, 'https://ror.org/00e3ms285', 'en', 1, 'https://ror.org/00e3ms285 Paterson Public Schools'),
(42045, 'https://ror.org/00m41wh60', 'en', 1, 'https://ror.org/00m41wh60 Hennepin Technical College'),
(42046, 'https://ror.org/03w077619', 'en', 1, 'https://ror.org/03w077619 Federal College of Fisheries and Marine Technology'),
(42047, 'https://ror.org/02fa80e12', 'en', 1, 'https://ror.org/02fa80e12 Eastwick College and the HoHoKus Schools'),
(42048, 'https://ror.org/0182rkr07', 'en', 1, 'https://ror.org/0182rkr07 Edison Community College'),
(42049, 'https://ror.org/0343ncx27', 'en', 1, 'https://ror.org/0343ncx27 Scottish School of Christian Mission'),
(42050, 'https://ror.org/02a3j1p21', 'en', 1, 'https://ror.org/02a3j1p21 Fisher College'),
(42051, 'https://ror.org/02yrcbg49', 'en', 1, 'https://ror.org/02yrcbg49 Government College for Women Anantnag ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ کالج Ų®ŁˆŲ§ŲŖŪŒŁ† اننت ناگ'),
(42052, 'https://ror.org/037saaz25', 'en', 1, 'https://ror.org/037saaz25 Hibbing Community College'),
(42053, 'https://ror.org/013f0nb72', 'en', 1, 'https://ror.org/013f0nb72 Compton Community College District'),
(42054, 'https://ror.org/01bkbkc06', 'en', 1, 'https://ror.org/01bkbkc06 Hickey College'),
(42055, 'https://ror.org/02sj9qn07', 'en', 1, 'https://ror.org/02sj9qn07 Flint Hills Technical College'),
(42056, 'https://ror.org/02d1vh520', 'en', 1, 'https://ror.org/02d1vh520 Government College of Science'),
(42057, 'https://ror.org/0181xpd52', 'en', 1, 'https://ror.org/0181xpd52 International Graduate School of English źµ­ģ œģ˜ģ–“ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(42058, 'https://ror.org/00x6zfm71', 'en', 1, 'https://ror.org/00x6zfm71 Florida Gateway College'),
(42059, 'https://ror.org/02ahpq120', 'en', 1, 'https://ror.org/02ahpq120 El Centro College'),
(42060, 'https://ror.org/01hssw521', 'en', 1, 'https://ror.org/01hssw521 International Islamic College Ų§Ł„ŁƒŁ„ŁŠŲ© Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(42061, 'https://ror.org/04p2bt406', 'no_lang_code', 1, 'https://ror.org/04p2bt406 Maharaja Chhatrasal Bundelkhand University महाराजा ą¤›ą¤¤ą„ą¤°ą¤øą¤¾ą¤² ą¤¬ą„ą¤‚ą¤¦ą„‡ą¤²ą¤–ą¤‚ą¤” ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(42062, 'https://ror.org/021dwa633', 'en', 1, 'https://ror.org/021dwa633 Elizabethtown Community and Technical College'),
(42063, 'https://ror.org/04aa84x73', 'en', 1, 'https://ror.org/04aa84x73 National Institute of Technology, Hiroshima College åŗƒå³¶å•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(42064, 'https://ror.org/01d22jf15', 'en', 1, 'https://ror.org/01d22jf15 Ellsworth Community College'),
(42065, 'https://ror.org/00b2pbe02', 'en', 1, 'https://ror.org/00b2pbe02 Florida Keys Community College'),
(42066, 'https://ror.org/03jab8886', 'en', 1, 'https://ror.org/03jab8886 International School of Management'),
(42067, 'https://ror.org/00qp50z66', 'en', 1, 'https://ror.org/00qp50z66 Hiwassee College'),
(42068, 'https://ror.org/004kvr873', 'en', 1, 'https://ror.org/004kvr873 Emerson School District'),
(42069, 'https://ror.org/0084ktm65', 'en', 1, 'https://ror.org/0084ktm65 Fort Scott Community College'),
(42070, 'https://ror.org/02s28hw54', 'en', 1, 'https://ror.org/02s28hw54 Emily Griffith Technical College'),
(42071, 'https://ror.org/05axake65', 'en', 1, 'https://ror.org/05axake65 International Yacht Restoration School'),
(42072, 'https://ror.org/019x00e11', 'en', 1, 'https://ror.org/019x00e11 Emmanuel Bible College'),
(42073, 'https://ror.org/04f6gef75', 'en', 1, 'https://ror.org/04f6gef75 Government Medical College and Hospital'),
(42074, 'https://ror.org/02a503x19', 'en', 1, 'https://ror.org/02a503x19 Fox College'),
(42075, 'https://ror.org/02mabj369', 'en', 1, 'https://ror.org/02mabj369 Nurses'' Training College, Ho'),
(42076, 'https://ror.org/02qqa1p29', 'en', 1, 'https://ror.org/02qqa1p29 Emmanuel College - Georgia'),
(42077, 'https://ror.org/04gx27k56', 'en', 1, 'https://ror.org/04gx27k56 Iowa Western Community College'),
(42078, 'https://ror.org/01drfa298', 'en', 1, 'https://ror.org/01drfa298 Emmaus Bible College'),
(42079, 'https://ror.org/011xh8y77', 'en', 1, 'https://ror.org/011xh8y77 Government Vellore Medical College'),
(42080, 'https://ror.org/00jhy6397', 'en', 1, 'https://ror.org/00jhy6397 Empire College'),
(42081, 'https://ror.org/007ew5756', 'en', 1, 'https://ror.org/007ew5756 Irish Baptist College'),
(42082, 'https://ror.org/001hjc616', 'en', 1, 'https://ror.org/001hjc616 Venerable English College'),
(42083, 'https://ror.org/02d2b9s76', 'en', 1, 'https://ror.org/02d2b9s76 Holy Spirit High School'),
(42084, 'https://ror.org/04cas5j33', 'en', 1, 'https://ror.org/04cas5j33 Grace Bible College'),
(42085, 'https://ror.org/02fzvr850', 'en', 1, 'https://ror.org/02fzvr850 French School at Athens Ɖcole franƧaise d’AthĆØnes Γαλλική Σχολή Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(42086, 'https://ror.org/02y5xdy12', 'en', 1, 'https://ror.org/02y5xdy12 Graduate School for the Creation of New Photonics Industries å…‰ē”£ę„­å‰µęˆå¤§å­¦é™¢å¤§å­¦'),
(42087, 'https://ror.org/05cy9p581', 'en', 1, 'https://ror.org/05cy9p581 Estrella Mountain Community College'),
(42088, 'https://ror.org/014w0p014', 'en', 1, 'https://ror.org/014w0p014 Hong Kong College of Technology é¦™ęøÆå°ˆę„­é€²äæ®å­øę ”'),
(42089, 'https://ror.org/03njnhv57', 'en', 1, 'https://ror.org/03njnhv57 Etobicoke School of the Arts'),
(42090, 'https://ror.org/04040wx85', 'no_lang_code', 1, 'https://ror.org/04040wx85 Fukushima College ē¦å³¶å­¦é™¢å¤§å­¦'),
(42091, 'https://ror.org/011srkg41', 'en', 1, 'https://ror.org/011srkg41 National Institute Of Technology, Ishikawa College ēŸ³å·å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(42092, 'https://ror.org/02ms60710', 'en', 1, 'https://ror.org/02ms60710 Fukuyama City University ē¦å±±åø‚ē«‹å¤§å­¦'),
(42093, 'https://ror.org/01zc1f144', 'es', 1, 'https://ror.org/01zc1f144 Hospital Universitario Araba'),
(42094, 'https://ror.org/042k9q065', 'en', 1, 'https://ror.org/042k9q065 European Business School Paris'),
(42095, 'https://ror.org/015j7c446', 'en', 1, 'https://ror.org/015j7c446 Islamic Azad University of Najafabad دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł†Ų¬Łā€ŒŲ¢ŲØŲ§ŲÆ'),
(42096, 'https://ror.org/00shj8q14', 'en', 1, 'https://ror.org/00shj8q14 European College of Business and Management'),
(42097, 'https://ror.org/02aafyx20', 'en', 1, 'https://ror.org/02aafyx20 Furness College'),
(42098, 'https://ror.org/0400m9h41', 'en', 1, 'https://ror.org/0400m9h41 Grays Harbor College'),
(42099, 'https://ror.org/00e477a69', 'en', 1, 'https://ror.org/00e477a69 Hsin Sheng College of Medical Care and Management ę–°ē”Ÿé†«č­·ē®”ē†å°ˆē§‘å­øę ”'),
(42100, 'https://ror.org/03y13mg86', 'en', 1, 'https://ror.org/03y13mg86 Grayson College'),
(42101, 'https://ror.org/01zk54j03', 'en', 1, 'https://ror.org/01zk54j03 Evelyn Hone College'),
(42102, 'https://ror.org/00vh6ck95', 'en', 1, 'https://ror.org/00vh6ck95 J F Ingram State Technical College'),
(42103, 'https://ror.org/04ac17w60', 'en', 1, 'https://ror.org/04ac17w60 Garden City Community College'),
(42104, 'https://ror.org/04j06r887', 'en', 1, 'https://ror.org/04j06r887 Garrett College'),
(42105, 'https://ror.org/00srhem84', 'en', 1, 'https://ror.org/00srhem84 Hugh Wooding Law School'),
(42106, 'https://ror.org/03a9t7g49', 'en', 1, 'https://ror.org/03a9t7g49 Jacksonville College'),
(42107, 'https://ror.org/01nzgtr23', 'en', 1, 'https://ror.org/01nzgtr23 Grossmont College'),
(42108, 'https://ror.org/022f44628', 'en', 1, 'https://ror.org/022f44628 King''s College - North Carolina'),
(42109, 'https://ror.org/05b7jac82', 'en', 1, 'https://ror.org/05b7jac82 Hussian College'),
(42110, 'https://ror.org/037tw3m02', 'en', 1, 'https://ror.org/037tw3m02 Montpellier Business School Ɖcole SupĆ©rieure de Commerce de Montpellier'),
(42111, 'https://ror.org/0511q3e85', 'en', 1, 'https://ror.org/0511q3e85 Gateway Community College'),
(42112, 'https://ror.org/037tapg39', 'en', 1, 'https://ror.org/037tapg39 Kingston College'),
(42113, 'https://ror.org/01z524369', 'en', 1, 'https://ror.org/01z524369 Jamestown Business College'),
(42114, 'https://ror.org/04d8byx33', 'en', 1, 'https://ror.org/04d8byx33 Georgia Highlands College'),
(42115, 'https://ror.org/058psnj96', 'en', 1, 'https://ror.org/058psnj96 Japanese Red Cross Hokkaido College of Nursing ę—„ęœ¬čµ¤åå­—åŒ—ęµ·é“ēœ‹č­·å¤§å­¦'),
(42116, 'https://ror.org/03sfs6n55', 'en', 1, 'https://ror.org/03sfs6n55 Klamath Community College'),
(42117, 'https://ror.org/02evmt624', 'en', 1, 'https://ror.org/02evmt624 Guntur Medical College'),
(42118, 'https://ror.org/05xwhfa95', 'en', 1, 'https://ror.org/05xwhfa95 Guyana School of Agriculture'),
(42119, 'https://ror.org/020h4j786', 'en', 1, 'https://ror.org/020h4j786 Kobe Women''s Junior College ē„žęˆøå„³å­ēŸ­ęœŸå¤§å­¦'),
(42120, 'https://ror.org/05sfx8f21', 'en', 1, 'https://ror.org/05sfx8f21 Georgia Northwestern Technical College'),
(42121, 'https://ror.org/01s3vfp47', 'en', 1, 'https://ror.org/01s3vfp47 Atlanta Technical College'),
(42122, 'https://ror.org/01f42aa94', 'en', 1, 'https://ror.org/01f42aa94 Koran Women''s Junior College é¦™č˜­å„³å­ēŸ­ęœŸå¤§å­¦'),
(42123, 'https://ror.org/04mxf4066', 'en', 1, 'https://ror.org/04mxf4066 Gwinnett Technical College'),
(42124, 'https://ror.org/059esw871', 'en', 1, 'https://ror.org/059esw871 Augusta Technical College'),
(42125, 'https://ror.org/05remtc15', 'en', 1, 'https://ror.org/05remtc15 Georgia Piedmont Technical College'),
(42126, 'https://ror.org/04586n774', 'en', 1, 'https://ror.org/04586n774 Kunming Metallurgy College ę˜†ę˜Žå†¶é‡‘é«˜ē­‰äø“ē§‘å­¦ę ”'),
(42127, 'https://ror.org/040ykgb05', 'en', 1, 'https://ror.org/040ykgb05 Halifax Community College'),
(42128, 'https://ror.org/01bktqd02', 'en', 1, 'https://ror.org/01bktqd02 John A Gupton College'),
(42129, 'https://ror.org/05jysw312', 'en', 1, 'https://ror.org/05jysw312 Hamilton Technical College'),
(42130, 'https://ror.org/023fvqr32', 'en', 1, 'https://ror.org/023fvqr32 Immanuel Lutheran College'),
(42131, 'https://ror.org/04w0qkc46', 'en', 1, 'https://ror.org/04w0qkc46 Labette Community College'),
(42132, 'https://ror.org/04564ag58', 'en', 1, 'https://ror.org/04564ag58 Glen Oaks Community College'),
(42133, 'https://ror.org/03myaza48', 'en', 1, 'https://ror.org/03myaza48 Defence Academy of the United Kingdom'),
(42134, 'https://ror.org/0488f2s41', 'en', 1, 'https://ror.org/0488f2s41 Lakes College'),
(42135, 'https://ror.org/02r321f54', 'en', 1, 'https://ror.org/02r321f54 Lamar Community College'),
(42136, 'https://ror.org/01nsvzv47', 'en', 1, 'https://ror.org/01nsvzv47 Lamar State College–Port Arthur');
INSERT INTO `rors` VALUES
(42137, 'https://ror.org/0195rjn62', 'en', 1, 'https://ror.org/0195rjn62 Lambeth College'),
(42138, 'https://ror.org/030dn1w49', 'en', 1, 'https://ror.org/030dn1w49 Hartlepool College of Further Education'),
(42139, 'https://ror.org/01atycn06', 'no_lang_code', 1, 'https://ror.org/01atycn06 Infonet College'),
(42140, 'https://ror.org/02wtdws21', 'en', 1, 'https://ror.org/02wtdws21 Kagawa Junior College é¦™å·ēŸ­ęœŸå¤§å­¦'),
(42141, 'https://ror.org/05tc6tx51', 'en', 1, 'https://ror.org/05tc6tx51 Kagoshima Prefectural College é¹æå…å³¶ēœŒē«‹ēŸ­ęœŸå¤§å­¦'),
(42142, 'https://ror.org/02kxkqy32', 'en', 1, 'https://ror.org/02kxkqy32 Hawaii Community College'),
(42143, 'https://ror.org/00y0xzp63', 'en', 1, 'https://ror.org/00y0xzp63 Lassen Community College'),
(42144, 'https://ror.org/04n0t4871', 'en', 1, 'https://ror.org/04n0t4871 LDS Business College'),
(42145, 'https://ror.org/05njab859', 'en', 1, 'https://ror.org/05njab859 Mineral Area College'),
(42146, 'https://ror.org/048nw8b43', 'en', 1, 'https://ror.org/048nw8b43 Haywood Community College'),
(42147, 'https://ror.org/039mh4d88', 'en', 1, 'https://ror.org/039mh4d88 Madisonville Community College'),
(42148, 'https://ror.org/014fm3f82', 'en', 1, 'https://ror.org/014fm3f82 Kanawha County Schools'),
(42149, 'https://ror.org/00cpstt72', 'en', 1, 'https://ror.org/00cpstt72 Kanyakumari Government Medical College ą®•ą®©ąÆą®©ą®æą®Æą®¾ą®•ąÆą®®ą®°ą®æ ą®…ą®°ą®šąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(42150, 'https://ror.org/01pfpr664', 'en', 1, 'https://ror.org/01pfpr664 Le Cordon Bleu College of Culinary Arts The Blue Ribbon'),
(42151, 'https://ror.org/013rsnt52', 'en', 1, 'https://ror.org/013rsnt52 Hazard Community and Technical College'),
(42152, 'https://ror.org/01422c992', 'en', 1, 'https://ror.org/01422c992 Minnesota State College-Southeast Technical'),
(42153, 'https://ror.org/01fbwnx94', 'en', 1, 'https://ror.org/01fbwnx94 Minnesota West Community & Technical College'),
(42154, 'https://ror.org/02945ys85', 'en', 1, 'https://ror.org/02945ys85 Karachi School for Business and Leadership'),
(42155, 'https://ror.org/05cxb7m31', 'en', 1, 'https://ror.org/05cxb7m31 Heartland Baptist Bible College'),
(42156, 'https://ror.org/044weqf48', 'en', 1, 'https://ror.org/044weqf48 Dalubhasaang Miriam Miriam College'),
(42157, 'https://ror.org/032e4ps38', 'en', 1, 'https://ror.org/032e4ps38 Kathmandu College of Management'),
(42158, 'https://ror.org/01avf0w32', 'en', 1, 'https://ror.org/01avf0w32 Lenoir Community College'),
(42159, 'https://ror.org/01zmrev66', 'en', 1, 'https://ror.org/01zmrev66 Mississippi Delta Community College'),
(42160, 'https://ror.org/04k66wn67', 'en', 1, 'https://ror.org/04k66wn67 Leo Baeck College'),
(42161, 'https://ror.org/01c9nq002', 'en', 1, 'https://ror.org/01c9nq002 Missouri College'),
(42162, 'https://ror.org/011vtgm04', 'en', 1, 'https://ror.org/011vtgm04 Missouri State University–West Plains'),
(42163, 'https://ror.org/02pv2je48', 'en', 1, 'https://ror.org/02pv2je48 Queen of the Valley Medical Center'),
(42164, 'https://ror.org/03yk5sc72', 'en', 1, 'https://ror.org/03yk5sc72 Manhattan Area Technical College'),
(42165, 'https://ror.org/04nvfwd22', 'en', 1, 'https://ror.org/04nvfwd22 LIM College'),
(42166, 'https://ror.org/02e71t779', 'no_lang_code', 1, 'https://ror.org/02e71t779 Osaka Chiyoda Junior College å¤§é˜Ŗåƒä»£ē”°ēŸ­ęœŸå¤§å­¦'),
(42167, 'https://ror.org/00awpt414', 'en', 1, 'https://ror.org/00awpt414 Mitchell Community College'),
(42168, 'https://ror.org/05rmmzm29', 'en', 1, 'https://ror.org/05rmmzm29 Marion Technical College'),
(42169, 'https://ror.org/014tm6y52', 'en', 1, 'https://ror.org/014tm6y52 Osaka Jonan Womens Junior College å¤§é˜ŖåŸŽå—å„³å­ēŸ­ęœŸå¤§å­¦'),
(42170, 'https://ror.org/04608tw18', 'en', 1, 'https://ror.org/04608tw18 Lincoln College of New England'),
(42171, 'https://ror.org/01bf51295', 'en', 1, 'https://ror.org/01bf51295 Martin College'),
(42172, 'https://ror.org/03vemr371', 'en', 1, 'https://ror.org/03vemr371 Modesto Junior College'),
(42173, 'https://ror.org/003cmjc53', 'en', 1, 'https://ror.org/003cmjc53 Nipawin Bible College'),
(42174, 'https://ror.org/00ef10m46', 'en', 1, 'https://ror.org/00ef10m46 Lincoln University - California'),
(42175, 'https://ror.org/05cz6d336', 'no_lang_code', 1, 'https://ror.org/05cz6d336 Otemae College å¤§ę‰‹å‰ēŸ­ęœŸå¤§å­¦'),
(42176, 'https://ror.org/027wk9464', 'en', 1, 'https://ror.org/027wk9464 Little Priest Tribal College'),
(42177, 'https://ror.org/00ec74h89', 'en', 1, 'https://ror.org/00ec74h89 Mater Dei High School'),
(42178, 'https://ror.org/04b4b5885', 'no_lang_code', 1, 'https://ror.org/04b4b5885 Moneague College'),
(42179, 'https://ror.org/02svqj611', 'en', 1, 'https://ror.org/02svqj611 London School of Business and Finance'),
(42180, 'https://ror.org/01tx99335', 'en', 1, 'https://ror.org/01tx99335 Maysville Community and Technical College'),
(42181, 'https://ror.org/00c27rz48', 'en', 1, 'https://ror.org/00c27rz48 London School of Commerce'),
(42182, 'https://ror.org/01pe8g251', 'en', 1, 'https://ror.org/01pe8g251 North Bennet Street School'),
(42183, 'https://ror.org/00dv5qk90', 'en', 1, 'https://ror.org/00dv5qk90 Morristown High School'),
(42184, 'https://ror.org/05egk1864', 'en', 1, 'https://ror.org/05egk1864 North Central Michigan College'),
(42185, 'https://ror.org/05mm5nv75', 'en', 1, 'https://ror.org/05mm5nv75 Ozarka College'),
(42186, 'https://ror.org/01ysc1e93', 'en', 1, 'https://ror.org/01ysc1e93 Lower Columbia College'),
(42187, 'https://ror.org/03163vt79', 'en', 1, 'https://ror.org/03163vt79 Moultrie Technical College'),
(42188, 'https://ror.org/05kdkdw55', 'en', 1, 'https://ror.org/05kdkdw55 Melbourne School of Theology'),
(42189, 'https://ror.org/05qendg40', 'en', 1, 'https://ror.org/05qendg40 Queensland Theological College'),
(42190, 'https://ror.org/05sgnj165', 'en', 1, 'https://ror.org/05sgnj165 Palo Alto College'),
(42191, 'https://ror.org/01e75de70', 'en', 1, 'https://ror.org/01e75de70 Raffles College of Design and Commerce'),
(42192, 'https://ror.org/00m9b5484', 'en', 1, 'https://ror.org/00m9b5484 Mountain Lakes High School'),
(42193, 'https://ror.org/05kwakw98', 'en', 1, 'https://ror.org/05kwakw98 Rainy River Community College'),
(42194, 'https://ror.org/042bcp892', 'en', 1, 'https://ror.org/042bcp892 MTI College'),
(42195, 'https://ror.org/031xz8a15', 'en', 1, 'https://ror.org/031xz8a15 West New York School District'),
(42196, 'https://ror.org/008evvy56', 'en', 1, 'https://ror.org/008evvy56 Paris Junior College'),
(42197, 'https://ror.org/04s5ed403', 'en', 1, 'https://ror.org/04s5ed403 Randolph Township Schools'),
(42198, 'https://ror.org/01zb3pc28', 'en', 1, 'https://ror.org/01zb3pc28 North Kent College'),
(42199, 'https://ror.org/056yn4g37', 'en', 1, 'https://ror.org/056yn4g37 Ranger College'),
(42200, 'https://ror.org/0026drc14', 'en', 1, 'https://ror.org/0026drc14 Mendocino College'),
(42201, 'https://ror.org/03thf4080', 'en', 1, 'https://ror.org/03thf4080 Ranney School'),
(42202, 'https://ror.org/03etbcx90', 'en', 1, 'https://ror.org/03etbcx90 Pasco–Hernando State College'),
(42203, 'https://ror.org/03afrdr97', 'en', 1, 'https://ror.org/03afrdr97 Mesalands Community College'),
(42204, 'https://ror.org/017qk3p19', 'en', 1, 'https://ror.org/017qk3p19 Redcliffe College'),
(42205, 'https://ror.org/04bd4jp27', 'en', 1, 'https://ror.org/04bd4jp27 Redlands Community College'),
(42206, 'https://ror.org/002kf8b88', 'en', 1, 'https://ror.org/002kf8b88 Paul D. Camp Community College'),
(42207, 'https://ror.org/03w7tfy68', 'en', 1, 'https://ror.org/03w7tfy68 Reformed Theological College'),
(42208, 'https://ror.org/02bdat184', 'en', 1, 'https://ror.org/02bdat184 Metropolitan Community College - Kansas City'),
(42209, 'https://ror.org/015tw5088', 'en', 1, 'https://ror.org/015tw5088 Regents Theological College'),
(42210, 'https://ror.org/04qk6hk13', 'en', 1, 'https://ror.org/04qk6hk13 North Warwickshire and Hinckley College'),
(42211, 'https://ror.org/00zhf6p05', 'en', 1, 'https://ror.org/00zhf6p05 Reid State Technical College'),
(42212, 'https://ror.org/024zd0r19', 'en', 1, 'https://ror.org/024zd0r19 Miami Ad School'),
(42213, 'https://ror.org/0403qeq92', 'en', 1, 'https://ror.org/0403qeq92 Pearl River Community College'),
(42214, 'https://ror.org/03sz2k744', 'en', 1, 'https://ror.org/03sz2k744 National Law University, Delhi'),
(42215, 'https://ror.org/03c174j31', 'en', 1, 'https://ror.org/03c174j31 Michigan School of Professional Psychology'),
(42216, 'https://ror.org/02vvfyx50', 'en', 1, 'https://ror.org/02vvfyx50 Rich Mountain Community College'),
(42217, 'https://ror.org/02gdmq314', 'en', 1, 'https://ror.org/02gdmq314 Ridley College'),
(42218, 'https://ror.org/03f3r3r28', 'en', 1, 'https://ror.org/03f3r3r28 Mid Michigan Community College'),
(42219, 'https://ror.org/03e8e5846', 'en', 1, 'https://ror.org/03e8e5846 Rio Salado College'),
(42220, 'https://ror.org/0525aen51', 'en', 1, 'https://ror.org/0525aen51 National Park College'),
(42221, 'https://ror.org/009p87514', 'en', 1, 'https://ror.org/009p87514 Mid-Atlantic Christian University'),
(42222, 'https://ror.org/03enn8902', 'en', 1, 'https://ror.org/03enn8902 Northeast Mississippi Community College'),
(42223, 'https://ror.org/00ybkrr33', 'en', 1, 'https://ror.org/00ybkrr33 Ripon College Cuddesdon'),
(42224, 'https://ror.org/00xp6a578', 'en', 1, 'https://ror.org/00xp6a578 Northeastern Junior College'),
(42225, 'https://ror.org/01qgfpv05', 'en', 1, 'https://ror.org/01qgfpv05 Pennsylvania Highlands Community College'),
(42226, 'https://ror.org/02gdp5e27', 'en', 1, 'https://ror.org/02gdp5e27 Joseph Rowntree Charitable Trust'),
(42227, 'https://ror.org/05xtmhv34', 'en', 1, 'https://ror.org/05xtmhv34 National School of Leadership'),
(42228, 'https://ror.org/01g39s097', 'en', 1, 'https://ror.org/01g39s097 River Parishes Community College'),
(42229, 'https://ror.org/055j5q029', 'en', 1, 'https://ror.org/055j5q029 Midwives College of Utah'),
(42230, 'https://ror.org/051kxxw69', 'en', 1, 'https://ror.org/051kxxw69 Pensacola State College'),
(42231, 'https://ror.org/041kv9d24', 'en', 1, 'https://ror.org/041kv9d24 Miles Community College'),
(42232, 'https://ror.org/03x6axv89', 'en', 1, 'https://ror.org/03x6axv89 Riverside City College'),
(42233, 'https://ror.org/01fazs130', 'en', 1, 'https://ror.org/01fazs130 Millar College of the Bible'),
(42234, 'https://ror.org/01v7zwf98', 'en', 1, 'https://ror.org/01v7zwf98 National Tainan Institute of Nursing åœ‹ē«‹č‡ŗå—č­·ē†å°ˆē§‘å­øę ”'),
(42235, 'https://ror.org/02zzvms95', 'en', 1, 'https://ror.org/02zzvms95 Northern Lakes College'),
(42236, 'https://ror.org/013r05090', 'en', 1, 'https://ror.org/013r05090 Riverside College'),
(42237, 'https://ror.org/03e29r284', 'en', 1, 'https://ror.org/03e29r284 National Taipei University åœ‹ē«‹č‡ŗåŒ—å¤§å­ø'),
(42238, 'https://ror.org/00pctvz49', 'en', 1, 'https://ror.org/00pctvz49 Miller College'),
(42239, 'https://ror.org/05ka3vy68', 'en', 1, 'https://ror.org/05ka3vy68 Roberto-Venn School of Luthiery'),
(42240, 'https://ror.org/013hjj010', 'en', 1, 'https://ror.org/013hjj010 Phillips Community College of the University of Arkansas'),
(42241, 'https://ror.org/004ms0k06', 'en', 1, 'https://ror.org/004ms0k06 Northern Oklahoma College'),
(42242, 'https://ror.org/0158z1f36', 'en', 1, 'https://ror.org/0158z1f36 Pierce College'),
(42243, 'https://ror.org/0263c5456', 'no_lang_code', 1, 'https://ror.org/0263c5456 Saniku Gakuin College 三育学院大学'),
(42244, 'https://ror.org/0555c8894', 'en', 1, 'https://ror.org/0555c8894 Rocky Mountain College'),
(42245, 'https://ror.org/05b5ahr77', 'en', 1, 'https://ror.org/05b5ahr77 Pine Technical and Community College'),
(42246, 'https://ror.org/04d5ffq02', 'en', 1, 'https://ror.org/04d5ffq02 Pingry School'),
(42247, 'https://ror.org/05bxwd659', 'en', 1, 'https://ror.org/05bxwd659 Rome International School'),
(42248, 'https://ror.org/00xx4s907', 'en', 1, 'https://ror.org/00xx4s907 Sarum College'),
(42249, 'https://ror.org/049s3yd39', 'en', 1, 'https://ror.org/049s3yd39 Native American Bible College'),
(42250, 'https://ror.org/026s2hr03', 'en', 1, 'https://ror.org/026s2hr03 Pioneer Pacific College'),
(42251, 'https://ror.org/04819nb17', 'no_lang_code', 1, 'https://ror.org/04819nb17 Satriwitthaya 2 School โรงเรียนสตรีวณทยา 2 ą¹ƒąø™ąøžąø£ąø°ąø£ąø²ąøŠąø¹ąø›ąø–ąø±ąø”ąø ą¹ŒąøŖąø”ą¹€ąø”ą¹‡ąøˆąøžąø£ąø°ąøØąø£ąøµąø™ąø„ąø£ąø“ąø™ąø—ąø£ąø²ąøšąø£ąø”ąø£ąø²ąøŠąøŠąø™ąø™ąøµ'),
(42252, 'https://ror.org/04pf8en64', 'en', 1, 'https://ror.org/04pf8en64 Rosedale Bible College'),
(42253, 'https://ror.org/02r0rw765', 'en', 1, 'https://ror.org/02r0rw765 Sault College'),
(42254, 'https://ror.org/04r4z2512', 'en', 1, 'https://ror.org/04r4z2512 Northwest Iowa Community College'),
(42255, 'https://ror.org/01g0pjd14', 'en', 1, 'https://ror.org/01g0pjd14 Royal Air Force College Cranwell'),
(42256, 'https://ror.org/047bx2p96', 'en', 1, 'https://ror.org/047bx2p96 Neath Port Talbot College'),
(42257, 'https://ror.org/05npcpv02', 'en', 1, 'https://ror.org/05npcpv02 School of Advertising Art'),
(42258, 'https://ror.org/03taxx854', 'en', 1, 'https://ror.org/03taxx854 Northwest Technical College'),
(42259, 'https://ror.org/03wp7b065', 'en', 1, 'https://ror.org/03wp7b065 Neighborhood Playhouse School of the Theatre'),
(42260, 'https://ror.org/015b60b88', 'en', 1, 'https://ror.org/015b60b88 Porterville College'),
(42261, 'https://ror.org/008s6wa39', 'en', 1, 'https://ror.org/008s6wa39 Neosho County Community College'),
(42262, 'https://ror.org/051sxdw86', 'en', 1, 'https://ror.org/051sxdw86 Royal Drawing School'),
(42263, 'https://ror.org/05e8kce13', 'en', 1, 'https://ror.org/05e8kce13 Presbyterian Theological College'),
(42264, 'https://ror.org/003wb2x77', 'en', 1, 'https://ror.org/003wb2x77 Northeast Lakeview College'),
(42265, 'https://ror.org/02mr7vz40', 'en', 1, 'https://ror.org/02mr7vz40 Northwestern Oklahoma State University'),
(42266, 'https://ror.org/00y3pb435', 'en', 1, 'https://ror.org/00y3pb435 Provo College'),
(42267, 'https://ror.org/05wn69s11', 'en', 1, 'https://ror.org/05wn69s11 Northwestern Polytechnic University'),
(42268, 'https://ror.org/04mqwrw94', 'en', 1, 'https://ror.org/04mqwrw94 New England Bible College'),
(42269, 'https://ror.org/05b2mj890', 'en', 1, 'https://ror.org/05b2mj890 Scott Community College'),
(42270, 'https://ror.org/016q7rz35', 'en', 1, 'https://ror.org/016q7rz35 Notre Dame High School'),
(42271, 'https://ror.org/011na1r14', 'en', 1, 'https://ror.org/011na1r14 New England School of Photography'),
(42272, 'https://ror.org/01myxx963', 'en', 1, 'https://ror.org/01myxx963 Sacramento City College'),
(42273, 'https://ror.org/05y6zxn94', 'en', 1, 'https://ror.org/05y6zxn94 New Mexico Junior College'),
(42274, 'https://ror.org/01048jt31', 'en', 1, 'https://ror.org/01048jt31 Seacoast Career Schools'),
(42275, 'https://ror.org/02gvasz77', 'en', 1, 'https://ror.org/02gvasz77 South Georgia Technical College'),
(42276, 'https://ror.org/02vmd6f14', 'en', 1, 'https://ror.org/02vmd6f14 Saint John''s School'),
(42277, 'https://ror.org/03ew7wh25', 'en', 1, 'https://ror.org/03ew7wh25 Seevic College'),
(42278, 'https://ror.org/00agvd592', 'en', 1, 'https://ror.org/00agvd592 Salem Community College'),
(42279, 'https://ror.org/03d4eey82', 'en', 1, 'https://ror.org/03d4eey82 South Louisiana Community College'),
(42280, 'https://ror.org/00br84389', 'en', 1, 'https://ror.org/00br84389 Salter School'),
(42281, 'https://ror.org/04kxhvh23', 'en', 1, 'https://ror.org/04kxhvh23 Oconee Fall Line Technical College'),
(42282, 'https://ror.org/01t0hvx23', 'en', 1, 'https://ror.org/01t0hvx23 Stanly Community College'),
(42283, 'https://ror.org/0045vmg65', 'no_lang_code', 1, 'https://ror.org/0045vmg65 Seiwa Gakuen College č–å’Œå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(42284, 'https://ror.org/01vja6y50', 'en', 1, 'https://ror.org/01vja6y50 South Mountain Community College'),
(42285, 'https://ror.org/01dhkk736', 'en', 1, 'https://ror.org/01dhkk736 Ogden–Weber Applied Technology College'),
(42286, 'https://ror.org/01cy4tw26', 'en', 1, 'https://ror.org/01cy4tw26 South Orange County Community College District'),
(42287, 'https://ror.org/05kb3r694', 'en', 1, 'https://ror.org/05kb3r694 Stanmore College'),
(42288, 'https://ror.org/02fs6pb13', 'en', 1, 'https://ror.org/02fs6pb13 South Piedmont Community College'),
(42289, 'https://ror.org/046j50r07', 'en', 1, 'https://ror.org/046j50r07 San Bernardino Community College District'),
(42290, 'https://ror.org/04rkf8c04', 'en', 1, 'https://ror.org/04rkf8c04 San Joaquin Valley College'),
(42291, 'https://ror.org/033nebn40', 'en', 1, 'https://ror.org/033nebn40 Lenape Regional High School District'),
(42292, 'https://ror.org/04f00y561', 'en', 1, 'https://ror.org/04f00y561 Seton Hall Preparatory School'),
(42293, 'https://ror.org/02bmrs815', 'en', 1, 'https://ror.org/02bmrs815 South Seattle College'),
(42294, 'https://ror.org/000gkvw58', 'en', 1, 'https://ror.org/000gkvw58 Steinbach Bible College'),
(42295, 'https://ror.org/03038ad20', 'en', 1, 'https://ror.org/03038ad20 South Texas College'),
(42296, 'https://ror.org/02zndy744', 'en', 1, 'https://ror.org/02zndy744 Ohio Business College'),
(42297, 'https://ror.org/05t6em937', 'en', 1, 'https://ror.org/05t6em937 Three Rivers College'),
(42298, 'https://ror.org/01961aj60', 'en', 1, 'https://ror.org/01961aj60 Stella Mann College of Performing Arts'),
(42299, 'https://ror.org/02rey2c02', 'en', 1, 'https://ror.org/02rey2c02 Sterling College - Kansas'),
(42300, 'https://ror.org/01ad74h27', 'en', 1, 'https://ror.org/01ad74h27 Tillamook Bay Community College'),
(42301, 'https://ror.org/0522dg826', 'en', 1, 'https://ror.org/0522dg826 Shanxi University of Traditional Chinese Medicine å±±č„æäø­åŒ»å­¦é™¢'),
(42302, 'https://ror.org/04yyexg79', 'en', 1, 'https://ror.org/04yyexg79 Southcentral Kentucky Community and Technical College'),
(42303, 'https://ror.org/01c4srk95', 'no_lang_code', 1, 'https://ror.org/01c4srk95 Tirunelveli Medical College ą®¤ą®æą®°ąÆą®ØąÆ†ą®²ąÆą®µąÆ‡ą®²ą®æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(42304, 'https://ror.org/026mf8794', 'en', 1, 'https://ror.org/026mf8794 Sterling High School'),
(42305, 'https://ror.org/03hr48p12', 'en', 1, 'https://ror.org/03hr48p12 Tohono O''odham Community College'),
(42306, 'https://ror.org/04t4ty441', 'en', 1, 'https://ror.org/04t4ty441 Southeast Kentucky Community and Technical College'),
(42307, 'https://ror.org/048x0xw34', 'en', 1, 'https://ror.org/048x0xw34 Toronto Baptist Seminary and Bible College'),
(42308, 'https://ror.org/050ggte33', 'en', 1, 'https://ror.org/050ggte33 Stockholm School of Economics in Russia Š”Ń‚Š¾ŠŗŠ³Š¾Š»ŃŒŠ¼ŃŠŗŠ°Ń школа ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø в России'),
(42309, 'https://ror.org/02f5k2623', 'en', 1, 'https://ror.org/02f5k2623 Southeastern Baptist College'),
(42310, 'https://ror.org/049ref070', 'en', 1, 'https://ror.org/049ref070 Southeastern Technical College'),
(42311, 'https://ror.org/045zgf584', 'en', 1, 'https://ror.org/045zgf584 Oklahoma State University at Tulsa'),
(42312, 'https://ror.org/01vq5dj09', 'en', 1, 'https://ror.org/01vq5dj09 Shrewsbury College'),
(42313, 'https://ror.org/03be58a36', 'en', 1, 'https://ror.org/03be58a36 Southern Arkansas University Tech'),
(42314, 'https://ror.org/0302gfc36', 'en', 1, 'https://ror.org/0302gfc36 Southern Crescent Technical College'),
(42315, 'https://ror.org/01aywcp58', 'en', 1, 'https://ror.org/01aywcp58 Southern Maine Community College'),
(42316, 'https://ror.org/00fdnsr88', 'en', 1, 'https://ror.org/00fdnsr88 Strayer University'),
(42317, 'https://ror.org/058pt1w78', 'en', 1, 'https://ror.org/058pt1w78 Siddhartha Medical College'),
(42318, 'https://ror.org/020kb9915', 'en', 1, 'https://ror.org/020kb9915 Southern Regional Technical College'),
(42319, 'https://ror.org/05sqdn872', 'en', 1, 'https://ror.org/05sqdn872 Strode College'),
(42320, 'https://ror.org/055afmj54', 'en', 1, 'https://ror.org/055afmj54 Trinidad State Junior College'),
(42321, 'https://ror.org/01b0j0m34', 'en', 1, 'https://ror.org/01b0j0m34 Southern States University'),
(42322, 'https://ror.org/04yhxmc54', 'en', 1, 'https://ror.org/04yhxmc54 Southern Union State Community College'),
(42323, 'https://ror.org/01pxzvy69', 'en', 1, 'https://ror.org/01pxzvy69 Orangeburg–Calhoun Technical College'),
(42324, 'https://ror.org/03a7v0208', 'en', 1, 'https://ror.org/03a7v0208 Southern Virginia University'),
(42325, 'https://ror.org/05mk08g75', 'en', 1, 'https://ror.org/05mk08g75 Sir John Deane''s College'),
(42326, 'https://ror.org/02nm6nb22', 'en', 1, 'https://ror.org/02nm6nb22 Sullivan College of Technology and Design'),
(42327, 'https://ror.org/01cyqzg93', 'en', 1, 'https://ror.org/01cyqzg93 Southern West Virginia Community and Technical College'),
(42328, 'https://ror.org/01z1rpp33', 'en', 1, 'https://ror.org/01z1rpp33 SKANS School of Accountancy'),
(42329, 'https://ror.org/05h4smh31', 'en', 1, 'https://ror.org/05h4smh31 Summit Christian College'),
(42330, 'https://ror.org/04wz0k923', 'en', 1, 'https://ror.org/04wz0k923 Trinity Theological College äø‰äø€ē„žå­¦é™¢'),
(42331, 'https://ror.org/04z9fas77', 'en', 1, 'https://ror.org/04z9fas77 Skolkovo Moscow School of Management ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń школа ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Дколково'),
(42332, 'https://ror.org/05v556078', 'en', 1, 'https://ror.org/05v556078 Southside Virginia Community College'),
(42333, 'https://ror.org/0371xpz28', 'en', 1, 'https://ror.org/0371xpz28 Trinity Theological College'),
(42334, 'https://ror.org/00hh4c656', 'en', 1, 'https://ror.org/00hh4c656 Southwest Mississippi Community College'),
(42335, 'https://ror.org/0584ana26', 'en', 1, 'https://ror.org/0584ana26 Summit Public Schools'),
(42336, 'https://ror.org/00vhmxj78', 'en', 1, 'https://ror.org/00vhmxj78 Trocaire College'),
(42337, 'https://ror.org/05nw06c68', 'en', 1, 'https://ror.org/05nw06c68 Snead State Community College'),
(42338, 'https://ror.org/03njb3j41', 'en', 1, 'https://ror.org/03njb3j41 Southwestern College - New Mexico'),
(42339, 'https://ror.org/00twbjb24', 'en', 1, 'https://ror.org/00twbjb24 Sowela Technical Community College'),
(42340, 'https://ror.org/03mcws937', 'en', 1, 'https://ror.org/03mcws937 University of Arkansas Community College at Hope'),
(42341, 'https://ror.org/04mg21y19', 'en', 1, 'https://ror.org/04mg21y19 Tyler Junior College'),
(42342, 'https://ror.org/002m0wj49', 'en', 1, 'https://ror.org/002m0wj49 Spartan College of Aeronautics and Technology'),
(42343, 'https://ror.org/03jqk9681', 'en', 1, 'https://ror.org/03jqk9681 Spartanburg Community College'),
(42344, 'https://ror.org/01dzc7q23', 'en', 1, 'https://ror.org/01dzc7q23 Somerset Community College'),
(42345, 'https://ror.org/01vpg0r82', 'en', 1, 'https://ror.org/01vpg0r82 Uintah Basin Applied Technology College'),
(42346, 'https://ror.org/02fd5ff90', 'en', 1, 'https://ror.org/02fd5ff90 Specs Howard School of Media Arts'),
(42347, 'https://ror.org/01mat8t76', 'en', 1, 'https://ror.org/01mat8t76 Tainan Theological College and Seminary å°å—ē„žå­øé™¢'),
(42348, 'https://ror.org/003chwa70', 'en', 1, 'https://ror.org/003chwa70 South and City College Birmingham'),
(42349, 'https://ror.org/02tec3785', 'en', 1, 'https://ror.org/02tec3785 Ulsan College ģšøģ‚°ź³¼ķ•™ėŒ€ķ•™źµ'),
(42350, 'https://ror.org/058er5w71', 'en', 1, 'https://ror.org/058er5w71 Spurgeons College'),
(42351, 'https://ror.org/037yxaz30', 'en', 1, 'https://ror.org/037yxaz30 South Central College'),
(42352, 'https://ror.org/01184z192', 'en', 1, 'https://ror.org/01184z192 University of Dental Medicine at Mandalay'),
(42353, 'https://ror.org/01h10d932', 'en', 1, 'https://ror.org/01h10d932 Union Catholic Regional High School'),
(42354, 'https://ror.org/03er7bd95', 'en', 1, 'https://ror.org/03er7bd95 Taylor College and Seminary'),
(42355, 'https://ror.org/04n6a5g54', 'en', 1, 'https://ror.org/04n6a5g54 South Coast College'),
(42356, 'https://ror.org/01qw4gv04', 'en', 1, 'https://ror.org/01qw4gv04 Sri Lanka Law College'),
(42357, 'https://ror.org/0465ncg47', 'en', 1, 'https://ror.org/0465ncg47 South Country Central School District'),
(42358, 'https://ror.org/02mvc1a11', 'en', 1, 'https://ror.org/02mvc1a11 TCA College'),
(42359, 'https://ror.org/0064w0326', 'en', 1, 'https://ror.org/0064w0326 TCI College of Technology'),
(42360, 'https://ror.org/002e14v94', 'en', 1, 'https://ror.org/002e14v94 Union Theological College'),
(42361, 'https://ror.org/03w6f4808', 'en', 1, 'https://ror.org/03w6f4808 Technical College of the Lowcountry'),
(42362, 'https://ror.org/05g5fwv52', 'en', 1, 'https://ror.org/05g5fwv52 North Carolina Exploring Cultural Heritage Online'),
(42363, 'https://ror.org/04zzmzt85', 'en', 1, 'https://ror.org/04zzmzt85 Temple University Ambler'),
(42364, 'https://ror.org/0306bn619', 'en', 1, 'https://ror.org/0306bn619 South Downs College'),
(42365, 'https://ror.org/038ta1n82', 'en', 1, 'https://ror.org/038ta1n82 South Essex College'),
(42366, 'https://ror.org/02ase7r14', 'en', 1, 'https://ror.org/02ase7r14 St Anthonys Senior Secondary School'),
(42367, 'https://ror.org/04m63t111', 'en', 1, 'https://ror.org/04m63t111 Tennessee College of Applied Technology'),
(42368, 'https://ror.org/05ta7wm04', 'en', 1, 'https://ror.org/05ta7wm04 South Florida State College'),
(42369, 'https://ror.org/05jwx8118', 'en', 1, 'https://ror.org/05jwx8118 Tennessee College of Applied Technology - Pulaski'),
(42370, 'https://ror.org/05s1k4z57', 'en', 1, 'https://ror.org/05s1k4z57 South Georgia State College'),
(42371, 'https://ror.org/02gbq8p27', 'en', 1, 'https://ror.org/02gbq8p27 University College of Estate Management'),
(42372, 'https://ror.org/02x2gpf88', 'en', 1, 'https://ror.org/02x2gpf88 University of Northwestern Ohio'),
(42373, 'https://ror.org/01bfgxb60', 'en', 1, 'https://ror.org/01bfgxb60 St Johns River State College'),
(42374, 'https://ror.org/01sygwk11', 'en', 1, 'https://ror.org/01sygwk11 Tennessee College of Applied Technology - Shelbyville'),
(42375, 'https://ror.org/00ydy7x73', 'en', 1, 'https://ror.org/00ydy7x73 University of the Southwest'),
(42376, 'https://ror.org/04b0jpj80', 'en', 1, 'https://ror.org/04b0jpj80 Texarkana College'),
(42377, 'https://ror.org/00sqv6z18', 'en', 1, 'https://ror.org/00sqv6z18 Virginia College'),
(42378, 'https://ror.org/01frp7483', 'no_lang_code', 1, 'https://ror.org/01frp7483 Weifang University ę½åŠå­¦é™¢'),
(42379, 'https://ror.org/02yec8h85', 'en', 1, 'https://ror.org/02yec8h85 Urban College of Boston'),
(42380, 'https://ror.org/02txa2075', 'en', 1, 'https://ror.org/02txa2075 Vision West Nottinghamshire College'),
(42381, 'https://ror.org/045sx7862', 'en', 1, 'https://ror.org/045sx7862 Wentworth Military Academy and College'),
(42382, 'https://ror.org/03awsbx38', 'en', 1, 'https://ror.org/03awsbx38 Thaddeus Stevens College of Technology'),
(42383, 'https://ror.org/055x7ey06', 'en', 1, 'https://ror.org/055x7ey06 Wabash Valley College'),
(42384, 'https://ror.org/04rvw0k47', 'en', 1, 'https://ror.org/04rvw0k47 University of Shizuoka é™å²”ēœŒē«‹å¤§å­¦'),
(42385, 'https://ror.org/014vrtf08', 'en', 1, 'https://ror.org/014vrtf08 Wade College'),
(42386, 'https://ror.org/031dhd775', 'en', 1, 'https://ror.org/031dhd775 Utica School of Commerce'),
(42387, 'https://ror.org/04p549618', 'en', 1, 'https://ror.org/04p549618 University of South Carolina Union'),
(42388, 'https://ror.org/04sdh5f05', 'en', 1, 'https://ror.org/04sdh5f05 Vance-Granville Community College'),
(42389, 'https://ror.org/0590p8j42', 'en', 1, 'https://ror.org/0590p8j42 West Cheshire College'),
(42390, 'https://ror.org/01dg8c226', 'en', 1, 'https://ror.org/01dg8c226 North Shropshire College'),
(42391, 'https://ror.org/02p58en94', 'en', 1, 'https://ror.org/02p58en94 The Restaurant School at Walnut Hill College'),
(42392, 'https://ror.org/00hgavv49', 'en', 1, 'https://ror.org/00hgavv49 Wallace Community College Selma'),
(42393, 'https://ror.org/02qxe8g21', 'en', 1, 'https://ror.org/02qxe8g21 Vanguard College'),
(42394, 'https://ror.org/025caaq56', 'en', 1, 'https://ror.org/025caaq56 Walters State Community College'),
(42395, 'https://ror.org/02xkgba40', 'en', 1, 'https://ror.org/02xkgba40 Theodore Roosevelt High School'),
(42396, 'https://ror.org/05g89q777', 'no_lang_code', 1, 'https://ror.org/05g89q777 Vatterott College'),
(42397, 'https://ror.org/01mtwad75', 'en', 1, 'https://ror.org/01mtwad75 Washington County Community College'),
(42398, 'https://ror.org/05nfx1325', 'en', 1, 'https://ror.org/05nfx1325 University of the Philippines Cebu'),
(42399, 'https://ror.org/02c6nb222', 'en', 1, 'https://ror.org/02c6nb222 Vermilion Community College'),
(42400, 'https://ror.org/02e6y4370', 'en', 1, 'https://ror.org/02e6y4370 William Booth College'),
(42401, 'https://ror.org/03q9jd971', 'en', 1, 'https://ror.org/03q9jd971 Vernon College'),
(42402, 'https://ror.org/018546558', 'en', 1, 'https://ror.org/018546558 Yamano College of Aesthetics å±±é‡Žē¾Žå®¹čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(42403, 'https://ror.org/03sv4d295', 'en', 1, 'https://ror.org/03sv4d295 Williamson College of the Trades'),
(42404, 'https://ror.org/03t730d83', 'en', 1, 'https://ror.org/03t730d83 Yellowstone Christian College'),
(42405, 'https://ror.org/052zj9g72', 'en', 1, 'https://ror.org/052zj9g72 Williston State College'),
(42406, 'https://ror.org/01j933b41', 'en', 1, 'https://ror.org/01j933b41 Wichita Area Technical College'),
(42407, 'https://ror.org/00dzptj80', 'en', 1, 'https://ror.org/00dzptj80 Yokohama Soei University ęØŖęµœå‰µč‹±ēŸ­ęœŸå¤§å­¦'),
(42408, 'https://ror.org/0421aqz02', 'en', 1, 'https://ror.org/0421aqz02 Westminster College - Missouri'),
(42409, 'https://ror.org/01xf7jb19', 'en', 1, 'https://ror.org/01xf7jb19 Zanjan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی زنجان'),
(42410, 'https://ror.org/04da1m383', 'en', 1, 'https://ror.org/04da1m383 University of Garden City'),
(42411, 'https://ror.org/03re0h651', 'no_lang_code', 1, 'https://ror.org/03re0h651 Zaytuna College'),
(42412, 'https://ror.org/03pvm4464', 'en', 1, 'https://ror.org/03pvm4464 Wiregrass Georgia Technical College'),
(42413, 'https://ror.org/00stpsa05', 'en', 1, 'https://ror.org/00stpsa05 Wisconsin School of Professional Psychology'),
(42414, 'https://ror.org/005majy75', 'en', 1, 'https://ror.org/005majy75 Yuba College'),
(42415, 'https://ror.org/00ts6eq50', 'en', 1, 'https://ror.org/00ts6eq50 Duval County Public Schools'),
(42416, 'https://ror.org/0087v5134', 'en', 1, 'https://ror.org/0087v5134 National Centre for Groundwater Research and Training'),
(42417, 'https://ror.org/02825cc16', 'en', 1, 'https://ror.org/02825cc16 Wood TobƩ-Coburn School'),
(42418, 'https://ror.org/03p5wj904', 'en', 1, 'https://ror.org/03p5wj904 Japan Center for Economic Research ę—„ęœ¬ēµŒęøˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(42419, 'https://ror.org/05mx0wr29', 'en', 1, 'https://ror.org/05mx0wr29 Zhejiang University of Science and Technology ęµ™ę±Ÿē§‘ęŠ€å­¦é™¢'),
(42420, 'https://ror.org/00d7hze96', 'en', 1, 'https://ror.org/00d7hze96 ComitƩ international olympique International Olympic Committee'),
(42421, 'https://ror.org/03q22e955', 'en', 1, 'https://ror.org/03q22e955 Xaverian College'),
(42422, '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 مجلس ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų„Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© في Ų£ŁŲ±ŁŠŁ‚ŁŠ'),
(42423, 'https://ror.org/01jd81545', 'en', 1, 'https://ror.org/01jd81545 AAIR Charity'),
(42424, 'https://ror.org/0569v7v35', 'en', 1, 'https://ror.org/0569v7v35 Action for ME'),
(42425, 'https://ror.org/04cy3kb56', 'en', 1, 'https://ror.org/04cy3kb56 Indian National Trust for Art and Cultural Heritage'),
(42426, 'https://ror.org/05v5ag345', 'de', 1, 'https://ror.org/05v5ag345 Krebsliga Beider Basel'),
(42427, 'https://ror.org/042618t81', 'en', 1, 'https://ror.org/042618t81 Medical Advances Without Animals Trust'),
(42428, 'https://ror.org/03mjd0271', 'en', 1, 'https://ror.org/03mjd0271 Construction Research Institute of Malaysia'),
(42429, 'https://ror.org/03zhqjb33', 'en', 1, 'https://ror.org/03zhqjb33 Ceramic Society of Japan ę—„ęœ¬ć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹å”ä¼š'),
(42430, 'https://ror.org/01q29tm52', 'en', 1, 'https://ror.org/01q29tm52 Smart Water Fund'),
(42431, 'https://ror.org/054zftm42', 'en', 1, 'https://ror.org/054zftm42 Shaheed Rajaei Cardiovascular Medical and Research Center'),
(42432, 'https://ror.org/023nwkm08', 'en', 1, 'https://ror.org/023nwkm08 International Association for the Study of Lung Cancer'),
(42433, 'https://ror.org/01ghar981', 'en', 1, 'https://ror.org/01ghar981 Koninklijke Hollandsche Maatschappij der Wetenschappen Royal Holland Society of Sciences and Humanities'),
(42434, 'https://ror.org/05dx8t190', 'en', 1, 'https://ror.org/05dx8t190 International Association for the Study of Pain'),
(42435, 'https://ror.org/0427xec12', 'en', 1, 'https://ror.org/0427xec12 Islamic Society of North America'),
(42436, 'https://ror.org/03ve5gp11', 'en', 1, 'https://ror.org/03ve5gp11 International Trauma Anesthesia and Critical Care Society'),
(42437, 'https://ror.org/05w90jm68', 'en', 1, 'https://ror.org/05w90jm68 Korea Society'),
(42438, 'https://ror.org/033sn5p83', 'en', 1, 'https://ror.org/033sn5p83 Gates Cambridge Trust'),
(42439, 'https://ror.org/0203yhg37', 'en', 1, 'https://ror.org/0203yhg37 Birla Institute of Scientific Research'),
(42440, 'https://ror.org/02n67pd69', 'de', 1, 'https://ror.org/02n67pd69 Fƶrdergemeinschaft Kinderkrebs-Zentrum Hamburg'),
(42441, 'https://ror.org/00qbzpp62', 'en', 1, 'https://ror.org/00qbzpp62 Center for Massive Data Algorithmics'),
(42442, 'https://ror.org/0099s0h07', 'pt', 1, 'https://ror.org/0099s0h07 Instituto de Tecnologia de Alimentos'),
(42443, 'https://ror.org/03dw6jp83', 'en', 1, 'https://ror.org/03dw6jp83 San Pedro College'),
(42444, 'https://ror.org/01svz3w83', 'en', 1, 'https://ror.org/01svz3w83 United States Indonesia Society'),
(42445, 'https://ror.org/014matr28', 'en', 1, 'https://ror.org/014matr28 United States Golf Association'),
(42446, 'https://ror.org/034e1cb35', 'en', 1, 'https://ror.org/034e1cb35 Information-Technology Promotion Agency ē‹¬ē«‹č”Œę”æę³•äŗŗęƒ…å ±å‡¦ē†ęŽØé€²ę©Ÿę§‹'),
(42447, 'https://ror.org/04etshx64', 'en', 1, 'https://ror.org/04etshx64 United States Capitol Historical Society'),
(42448, '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'),
(42449, 'https://ror.org/050a3p398', 'en', 1, 'https://ror.org/050a3p398 Asian American Journalists Association'),
(42450, 'https://ror.org/004fb1r50', 'en', 1, 'https://ror.org/004fb1r50 Indonesian Coral Reef Foundation Yayasan Terumbu Karang Indonesia'),
(42451, 'https://ror.org/0406h9r54', 'en', 1, 'https://ror.org/0406h9r54 Korea Green Promotion Agency'),
(42452, 'https://ror.org/03w6ebm44', 'en', 1, 'https://ror.org/03w6ebm44 South Arts'),
(42453, 'https://ror.org/01ccv1722', 'en', 1, 'https://ror.org/01ccv1722 Society of Teachers of Family Medicine'),
(42454, 'https://ror.org/01f8mva30', 'en', 1, 'https://ror.org/01f8mva30 Panchajanya Vidya Peetha Welfare Trust'),
(42455, 'https://ror.org/05bcewb51', 'en', 1, 'https://ror.org/05bcewb51 Instituto Millenium Millennium Institute'),
(42456, 'https://ror.org/01gfs0a38', 'de', 1, 'https://ror.org/01gfs0a38 Akademie für Tiergesundheit'),
(42457, 'https://ror.org/05q77p435', 'en', 1, 'https://ror.org/05q77p435 Austin Graduate School of Theology'),
(42458, 'https://ror.org/04ktct527', 'en', 1, 'https://ror.org/04ktct527 Cure Childhood Cancer Association'),
(42459, 'https://ror.org/014wxtx83', 'en', 1, 'https://ror.org/014wxtx83 Sightsavers'),
(42460, 'https://ror.org/04qd7ym22', 'en', 1, 'https://ror.org/04qd7ym22 HOPE Cape Town Trust'),
(42461, 'https://ror.org/05cemnq96', 'en', 1, 'https://ror.org/05cemnq96 Society of Gastroenterology Nurses and Associates'),
(42462, 'https://ror.org/05dd3bg73', 'no_lang_code', 1, 'https://ror.org/05dd3bg73 Structural Timber Innovation Company (New Zealand)'),
(42463, 'https://ror.org/048j1zc07', 'en', 1, 'https://ror.org/048j1zc07 Bexley College'),
(42464, 'https://ror.org/04dyam975', 'it', 1, 'https://ror.org/04dyam975 Sistema Bibliotecario di Udine e dell''Hinterland Udinese'),
(42465, 'https://ror.org/02ds88v51', 'en', 1, 'https://ror.org/02ds88v51 Camera dei Deputati Chamber of Deputies'),
(42466, 'https://ror.org/001cf8537', 'en', 1, 'https://ror.org/001cf8537 Baltimore County Public Schools'),
(42467, 'https://ror.org/02pnpa204', 'it', 1, 'https://ror.org/02pnpa204 Istituzione Bologna Musei'),
(42468, 'https://ror.org/02z493v75', 'en', 1, 'https://ror.org/02z493v75 Owensboro Community and Technical College'),
(42469, 'https://ror.org/02a4rdf09', 'de', 1, 'https://ror.org/02a4rdf09 Fondation Bodmer Fondation Martin Bodmer'),
(42470, 'https://ror.org/05t8ffp36', 'es', 1, 'https://ror.org/05t8ffp36 Real Academia EspaƱola Royal Spanish Academy'),
(42471, 'https://ror.org/02qjrvm45', 'fr', 1, 'https://ror.org/02qjrvm45 Centre de Recherche sur l''Environnement Alpin'),
(42472, 'https://ror.org/02bf3a828', 'fr', 1, 'https://ror.org/02bf3a828 HÓpital Cardiologique du Haut-Lévêque'),
(42473, 'https://ror.org/030dhdf69', 'en', 1, 'https://ror.org/030dhdf69 Biotechnologie Institut Thurgau Biotechnology Institute Thurgau'),
(42474, 'https://ror.org/05b9pe067', 'en', 1, 'https://ror.org/05b9pe067 Malayan Colleges Laguna'),
(42475, 'https://ror.org/05y92qc28', 'en', 1, 'https://ror.org/05y92qc28 Sandhills Community College'),
(42476, 'https://ror.org/00gm3kb02', 'en', 1, 'https://ror.org/00gm3kb02 North Georgia Technical College'),
(42477, 'https://ror.org/05yc7zr31', 'en', 1, 'https://ror.org/05yc7zr31 Cossatot Community College'),
(42478, 'https://ror.org/03r2s9s41', 'en', 1, 'https://ror.org/03r2s9s41 Skyline College'),
(42479, 'https://ror.org/01xddfn70', 'en', 1, 'https://ror.org/01xddfn70 Fairview School District'),
(42480, 'https://ror.org/05je8kx69', 'en', 1, 'https://ror.org/05je8kx69 St Patrick''s College'),
(42481, 'https://ror.org/0352dma55', 'en', 1, 'https://ror.org/0352dma55 West Kentucky Community and Technical College'),
(42482, 'https://ror.org/00cdwva22', 'en', 1, 'https://ror.org/00cdwva22 All Nations University'),
(42483, 'https://ror.org/05r8zkn09', 'it', 1, 'https://ror.org/05r8zkn09 Dipartimento dell Educazione della Cultura e dello Sport'),
(42484, 'https://ror.org/027dan833', 'fr', 1, 'https://ror.org/027dan833 Ɖcole Biblique et ArchĆ©ologique FranƧaise de JĆ©rusalem'),
(42485, 'https://ror.org/047y9vj34', 'en', 1, 'https://ror.org/047y9vj34 Gwinnett College'),
(42486, 'https://ror.org/04a5x3y83', 'en', 1, 'https://ror.org/04a5x3y83 Caldwell Community College & Technical Institute'),
(42487, 'https://ror.org/03nzct076', 'en', 1, 'https://ror.org/03nzct076 Platt College'),
(42488, 'https://ror.org/0484fme70', 'en', 1, 'https://ror.org/0484fme70 Northeastern Technical College'),
(42489, 'https://ror.org/02gxkme34', 'en', 1, 'https://ror.org/02gxkme34 University of Arkansas Community College at Morrilton'),
(42490, 'https://ror.org/00gyf5557', 'en', 1, 'https://ror.org/00gyf5557 Swiss School of Archaeology in Greece Ελβετική Αρχαιολογική Σχολή ĻƒĻ„Ī·Ī½ ΕλλάΓα'),
(42491, 'https://ror.org/01064v583', 'en', 1, 'https://ror.org/01064v583 Gemological Institute of America'),
(42492, 'https://ror.org/0297tch52', 'fr', 1, 'https://ror.org/0297tch52 Fondation Hardt'),
(42493, 'https://ror.org/04ewkgj12', 'fr', 1, 'https://ror.org/04ewkgj12 Fondation Le Corbusier'),
(42494, 'https://ror.org/015pmkr43', 'fr', 1, 'https://ror.org/015pmkr43 Haute Ɖcole PĆ©dagogique BEJUNE'),
(42495, 'https://ror.org/036kj7q93', 'it', 1, 'https://ror.org/036kj7q93 Fondazione Lanza'),
(42496, 'https://ror.org/048gre751', 'fr', 1, 'https://ror.org/048gre751 Haute Ɖcole PĆ©dagogique Fribourg'),
(42497, 'https://ror.org/00bf78a39', 'en', 1, 'https://ror.org/00bf78a39 Bancroft School of Massage Therapy'),
(42498, 'https://ror.org/05a8hvs03', 'it', 1, 'https://ror.org/05a8hvs03 Istituto Ricerche Solari Locarno'),
(42499, 'https://ror.org/02gf2m037', 'it', 1, 'https://ror.org/02gf2m037 Istituto Svizzero di Roma'),
(42500, 'https://ror.org/05ynf4333', 'fr', 1, 'https://ror.org/05ynf4333 INSEAD Institut EuropƩen d''Administration des Affaires'),
(42501, 'https://ror.org/05ke8x342', 'it', 1, 'https://ror.org/05ke8x342 Institut international pour l''unification du droit privƩ UNIDROIT'),
(42502, 'https://ror.org/00saqbg14', 'de', 1, 'https://ror.org/00saqbg14 Kunstmuseum Basel'),
(42503, 'https://ror.org/00bsqmj12', 'en', 1, 'https://ror.org/00bsqmj12 Marshalltown Community College'),
(42504, 'https://ror.org/02rtq1r98', 'en', 1, 'https://ror.org/02rtq1r98 Kunstmuseum Bern Museum of Fine Arts Bern'),
(42505, 'https://ror.org/02s52y897', 'de', 1, 'https://ror.org/02s52y897 Institut für Kulturforschung Graubünden'),
(42506, 'https://ror.org/054h1gp83', 'fr', 1, 'https://ror.org/054h1gp83 Institut Suisse de SpƩlƩologie et de Karstologie'),
(42507, 'https://ror.org/04szen554', 'de', 1, 'https://ror.org/04szen554 Marie Meierhofer Institut für das Kind'),
(42508, 'https://ror.org/01xfcjr43', 'en', 1, 'https://ror.org/01xfcjr43 Sanyo-Onoda City University å±±å£ę±äŗ¬ē†ē§‘å¤§å­¦'),
(42509, 'https://ror.org/00pn5nj90', 'en', 1, 'https://ror.org/00pn5nj90 Ventura College'),
(42510, 'https://ror.org/04c2j1p40', 'en', 1, 'https://ror.org/04c2j1p40 Dabney S Lancaster Community College'),
(42511, 'https://ror.org/04vs0xj88', 'en', 1, 'https://ror.org/04vs0xj88 International Business College - Indianapolis'),
(42512, 'https://ror.org/01qecd649', 'en', 1, 'https://ror.org/01qecd649 Max Planck Unit for Structural Molecular Biology Max-Planck-Arbeitsgruppen für Strukturelle Molekularbiologie'),
(42513, 'https://ror.org/04cxnv425', 'it', 1, 'https://ror.org/04cxnv425 Pro Grigioni Italiano'),
(42514, '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'),
(42515, 'https://ror.org/04qw2v147', 'en', 1, 'https://ror.org/04qw2v147 Spokane Falls Community College'),
(42516, 'https://ror.org/00znqyv98', 'it', 1, 'https://ror.org/00znqyv98 Museo Cantonale di Storia Naturale di Lugano'),
(42517, 'https://ror.org/024cb5849', 'de', 1, 'https://ror.org/024cb5849 Schweizerisches Idiotikon Swiss idioticon'),
(42518, 'https://ror.org/000p2wp51', 'en', 1, 'https://ror.org/000p2wp51 Lambeth Palace Library'),
(42519, 'https://ror.org/01pycny91', 'de', 1, 'https://ror.org/01pycny91 StaatsunabhƤngige Theologische Hochschule Basel'),
(42520, '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'),
(42521, 'https://ror.org/00ytxqz74', 'en', 1, 'https://ror.org/00ytxqz74 Addiction Switzerland Sucht Schweiz'),
(42522, 'https://ror.org/038km2573', 'no_lang_code', 1, 'https://ror.org/038km2573 Nokia (United States)'),
(42523, 'https://ror.org/02maxav80', 'en', 1, 'https://ror.org/02maxav80 Open University of China 国家开放大学'),
(42524, 'https://ror.org/04eca0d23', 'en', 1, 'https://ror.org/04eca0d23 Academic Swiss Caucasus Net'),
(42525, 'https://ror.org/050f4mc80', 'en', 1, 'https://ror.org/050f4mc80 Carinthian Economic Promotion Fund KƤrntner Wirtschaftsfƶrderungs Fonds'),
(42526, 'https://ror.org/00y6gpw41', 'en', 1, 'https://ror.org/00y6gpw41 Association for Library and Information Science Education'),
(42527, 'https://ror.org/03zan4871', 'en', 1, 'https://ror.org/03zan4871 Collaborative Centre for Applied Nanotechnology'),
(42528, 'https://ror.org/01k789405', 'en', 1, 'https://ror.org/01k789405 Schweizerische Herzstiftung Swiss Heart Foundation'),
(42529, 'https://ror.org/049e4we54', 'en', 1, 'https://ror.org/049e4we54 Acoustical Society of America'),
(42530, 'https://ror.org/04j7hdv70', 'en', 1, 'https://ror.org/04j7hdv70 Society for the Advancement of Scandinavian Study'),
(42531, 'https://ror.org/05tcdh256', 'en', 1, 'https://ror.org/05tcdh256 Division of Parasitic Diseases and Malaria'),
(42532, 'https://ror.org/03q2wez45', 'fr', 1, 'https://ror.org/03q2wez45 Instituts FranƧais de Recherche Ơ L''Ɖtranger'),
(42533, 'https://ror.org/04gpgk389', 'fr', 1, 'https://ror.org/04gpgk389 Centre Jacques Berque pour le DƩveloppement des Sciences Humaines et Sociales'),
(42534, 'https://ror.org/043bqfp86', 'de', 1, 'https://ror.org/043bqfp86 Centre Marc Bloch'),
(42535, 'https://ror.org/04jg63q12', 'en', 1, 'https://ror.org/04jg63q12 Northwest Vista College'),
(42536, 'https://ror.org/03a8g0p38', 'en', 1, 'https://ror.org/03a8g0p38 Hangzhou Hospital of Traditional Chinese Medicine'),
(42537, 'https://ror.org/02cydx698', 'en', 1, 'https://ror.org/02cydx698 Jiaxing Vocational Technical College å˜‰å…“čŒäøšęŠ€ęœÆå­¦é™¢'),
(42538, 'https://ror.org/00e8jms23', 'en', 1, 'https://ror.org/00e8jms23 Hubei Academy of Forestry ę¹–åŒ—ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(42539, 'https://ror.org/036metx20', 'en', 1, 'https://ror.org/036metx20 Chinese People''s Armed Police General Hospital ę­¦č­¦ę€»åŒ»é™¢'),
(42540, 'https://ror.org/05jfw1444', 'en', 1, 'https://ror.org/05jfw1444 Jilin Provincial Academy of Forestry Science å‰ęž—ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(42541, 'https://ror.org/03sct1f35', 'no_lang_code', 1, 'https://ror.org/03sct1f35 Aluminum Corporation of China (China) äø­å›½é“äøšå…¬åø'),
(42542, 'https://ror.org/01g8cdp94', 'en', 1, 'https://ror.org/01g8cdp94 Ningxia Hui Autonomous Region Peoples Hospital å®å¤å›žę—č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(42543, 'https://ror.org/049pz8m51', 'en', 1, 'https://ror.org/049pz8m51 Chongqing Academy of Chinese Materia Medica é‡åŗ†åø‚äø­čÆē ”ē©¶é™¢'),
(42544, 'https://ror.org/0347g4065', 'en', 1, 'https://ror.org/0347g4065 Jinhua Municipal Science and Technology Bureau é‡‘åŽåø‚ē§‘ęŠ€å±€'),
(42545, 'https://ror.org/04c14yn55', 'en', 1, 'https://ror.org/04c14yn55 Chuxiong Normal University ę„šé›„åøˆčŒƒå­¦é™¢'),
(42546, 'https://ror.org/04zrrk968', 'en', 1, 'https://ror.org/04zrrk968 Anhui Provincial Meteorological Bureau å®‰å¾½ēœę°”č±”å±€'),
(42547, 'https://ror.org/04s5wwh39', 'en', 1, 'https://ror.org/04s5wwh39 Anshan Normal University éžå±±åøˆčŒƒå­¦é™¢'),
(42548, 'https://ror.org/01g2vd413', 'no_lang_code', 1, 'https://ror.org/01g2vd413 Hunan Mawangdui Hospital'),
(42549, 'https://ror.org/00d9m6s48', 'en', 1, 'https://ror.org/00d9m6s48 Guangdong Provincial Occupational Disease Prevention Hospital å¹æäøœēœčŒäøšē—…é˜²ę²»é™¢'),
(42550, 'https://ror.org/002hfez23', 'en', 1, 'https://ror.org/002hfez23 Huzhou Vocational and Technical College'),
(42551, 'https://ror.org/01ae4qf10', 'en', 1, 'https://ror.org/01ae4qf10 CPC Heilongjiang Provincial Committee Party School äø­å…±é»‘é¾™ę±Ÿēœå§”å…šę ”'),
(42552, 'https://ror.org/03ae5ty12', 'en', 1, 'https://ror.org/03ae5ty12 Inner Mongolia Institute of Hydraulic Research å†…č’™å¤č‡Ŗę²»åŒŗę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(42553, 'https://ror.org/03wtdg769', 'en', 1, 'https://ror.org/03wtdg769 Liaoning Jianzhu Vocational University č¾½å®äæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(42554, 'https://ror.org/00rvyvv90', 'en', 1, 'https://ror.org/00rvyvv90 Zhejiang Party School ęµ™ę±Ÿēœå§”å…šę ”'),
(42555, 'https://ror.org/01ftq2j79', 'en', 1, 'https://ror.org/01ftq2j79 Liaoning Provincial Food and Drug Administration č¾½å®ēœé£Ÿå“čÆå“ē›‘ē£ē®”ē†å±€'),
(42556, 'https://ror.org/05rnyty77', 'en', 1, 'https://ror.org/05rnyty77 Institute of Archaeology äø­å›½ē¤¾ä¼šē§‘å­¦é™¢č€ƒå¤ē ”ē©¶ę‰€ę˜Æ'),
(42557, 'https://ror.org/023e72x78', 'no_lang_code', 1, 'https://ror.org/023e72x78 Lishui Central Hospital äø½ę°“åø‚äø­åæƒåŒ»é™¢'),
(42558, 'https://ror.org/022nyzy72', 'en', 1, 'https://ror.org/022nyzy72 Qinghai Institute for Endemic Diease Prevention and Control'),
(42559, 'https://ror.org/04199wj76', 'en', 1, 'https://ror.org/04199wj76 Entry Exit Inspection and Quarantine Bureau å¹æäøœå‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(42560, 'https://ror.org/05p2fxt77', 'en', 1, 'https://ror.org/05p2fxt77 Lishui Vocational and Technical College äø½ę°“čŒäøšęŠ€ęœÆå­¦é™¢'),
(42561, 'https://ror.org/05m762g98', 'en', 1, 'https://ror.org/05m762g98 Lishui Academy of Forestry äø½ę°“åø‚ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(42562, 'https://ror.org/04hsa3c95', 'en', 1, 'https://ror.org/04hsa3c95 Bureau of Hydrology Tibet č„æč—č‡Ŗę²»åŒŗę°“ę–‡ę°“čµ„ęŗå‹˜ęµ‹å±€'),
(42563, 'https://ror.org/02cbhvc53', 'no_lang_code', 1, 'https://ror.org/02cbhvc53 China National Chemical Corporation (China) äø­å›½åŒ–å·„é›†å›¢å…¬åø'),
(42564, 'https://ror.org/04wjkw450', 'en', 1, 'https://ror.org/04wjkw450 Institute of Endemic Disease Control in Shandong Province å±±äøœēœåœ°ę–¹ē—…é˜²ę²»ē ”ē©¶ę‰€'),
(42565, 'https://ror.org/01sengv47', 'en', 1, 'https://ror.org/01sengv47 Institute of Ethnology and Anthropology äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ę°‘ę—å­¦äøŽäŗŗē±»å­¦ē ”ē©¶ę‰€'),
(42566, 'https://ror.org/049en1e86', 'en', 1, 'https://ror.org/049en1e86 Fujian Institute of Subtropical Botany ē¦å»ŗēœäŗšēƒ­åø¦ę¤ē‰©ē ”ē©¶ę‰€'),
(42567, 'https://ror.org/02mrea437', 'en', 1, 'https://ror.org/02mrea437 Institute of Linguistics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢čÆ­čØ€ē ”ē©¶ę‰€'),
(42568, 'https://ror.org/00xphjh14', 'en', 1, 'https://ror.org/00xphjh14 Fujian Research Institute of Light Industry ē¦å»ŗēœč½»å·„äøšē ”ē©¶ę‰€'),
(42569, 'https://ror.org/03sn26h43', 'en', 1, 'https://ror.org/03sn26h43 Institute of Population and Labor Economics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢äŗŗå£äøŽåŠ³åŠØē»ęµŽē ”ē©¶ę‰€'),
(42570, 'https://ror.org/00szjvn19', 'en', 1, 'https://ror.org/00szjvn19 Poultry Research Institute äø­å›½å†œäøšē§‘å­¦é™¢å®¶ē¦½ē ”ē©¶ę‰€'),
(42571, 'https://ror.org/04ez8hs93', 'en', 1, 'https://ror.org/04ez8hs93 Qingdao Municipal Center for Disease Control and Prevention é’å²›åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(42572, 'https://ror.org/056kzfb80', 'en', 1, 'https://ror.org/056kzfb80 Guangdong Provincial Family Planning Hospital å¹æäøœēœč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(42573, 'https://ror.org/02egn3136', 'en', 1, 'https://ror.org/02egn3136 NARI Group (China) å—äŗ¬č‡ŖåŠØåŒ–ē ”ē©¶ę‰€'),
(42574, 'https://ror.org/04x5anb81', 'en', 1, 'https://ror.org/04x5anb81 China Academy of Traditional Chinese Medicine Hospital of Ophthalmology äø­å›½äø­åŒ»ē§‘å­¦é™¢ēœ¼ē§‘åŒ»é™¢'),
(42575, 'https://ror.org/00ff97g12', 'no_lang_code', 1, 'https://ror.org/00ff97g12 Guangxi Institute of Botany äø­ē§‘é™¢å¹æč„æę¤ē‰©ē ”ē©¶ę‰€'),
(42576, 'https://ror.org/02ag25v06', 'en', 1, 'https://ror.org/02ag25v06 Chinese Academy of Agricultural Engineering äø­å›½å†œäøšē§‘å­¦é™¢å†œäøšå·„ēØ‹');
INSERT INTO `rors` VALUES
(42577, 'https://ror.org/01k56kn83', 'en', 1, 'https://ror.org/01k56kn83 Guangxi Subtropical Crops Research Institute å¹æč„æäŗšēƒ­åø¦ä½œē‰©ē ”ē©¶ę‰€'),
(42578, 'https://ror.org/029051y19', 'en', 1, 'https://ror.org/029051y19 Jiangsu Provincial Seismological Bureau ę±Ÿč‹ēœåœ°éœ‡å±€'),
(42579, 'https://ror.org/04vtzbx16', 'en', 1, 'https://ror.org/04vtzbx16 Qinghai Provincial Peoples Hospital é’ęµ·ēœäŗŗę°‘åŒ»é™¢'),
(42580, 'https://ror.org/05ex0md65', 'en', 1, 'https://ror.org/05ex0md65 Sweet Potato Research Institute'),
(42581, 'https://ror.org/05knyt645', 'en', 1, 'https://ror.org/05knyt645 China Federation of Supply and Marketing Cooperatives äø­åŽå…Øå›½ä¾›é”€åˆä½œę€»ē¤¾'),
(42582, 'https://ror.org/02rgkd872', 'en', 1, 'https://ror.org/02rgkd872 Guangzhou Municipal Engineering Design and Research Institute å¹æå·žåø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(42583, 'https://ror.org/00wdfeq42', 'en', 1, 'https://ror.org/00wdfeq42 National Engineering Research Center for Compounding and Modification of Polymer Materials å›½å®¶å¤åˆę”¹ę€§čšåˆē‰©ęę–™å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(42584, 'https://ror.org/01etfxm56', 'en', 1, 'https://ror.org/01etfxm56 China National Bamboo Research Center å›½å®¶ęž—äøšå±€ē«¹å­ē ”ē©¶å¼€å‘äø­åæƒ'),
(42585, 'https://ror.org/01hbm5940', 'en', 1, 'https://ror.org/01hbm5940 Jiangxi Maternal and Child Health Hospital ę±Ÿč„æēœå¦‡å¹¼äæå„é™¢'),
(42586, 'https://ror.org/03mmka096', 'en', 1, 'https://ror.org/03mmka096 Qinghai Tibetan Hospital é’ęµ·ēœč—åŒ»é™¢'),
(42587, 'https://ror.org/01dfm1a30', 'en', 1, 'https://ror.org/01dfm1a30 National Institute of Education Sciences 中国教育科学研究院'),
(42588, 'https://ror.org/02xr9bp50', 'en', 1, 'https://ror.org/02xr9bp50 Lushan Botanical Garden ę±Ÿč„æēœäø­å›½ē§‘å­¦é™¢åŗå±±ę¤ē‰©å›­'),
(42589, 'https://ror.org/040c53642', 'en', 1, 'https://ror.org/040c53642 Guizhou Provincial Meteorological Bureau č“µå·žę°”č±”åœØēŗæ'),
(42590, 'https://ror.org/00av6fw44', 'en', 1, 'https://ror.org/00av6fw44 Shandong Geological Sciences Institute å±±äøœēœåœ°č“Øē§‘å­¦å®žéŖŒē ”ē©¶é™¢'),
(42591, 'https://ror.org/02a1tyz74', 'en', 1, 'https://ror.org/02a1tyz74 National Engineering Research Center for Wheat å›½å®¶å°éŗ¦å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(42592, 'https://ror.org/024nfx323', 'no_lang_code', 1, 'https://ror.org/024nfx323 Quzhou University č”¢å·žå­¦é™¢'),
(42593, 'https://ror.org/03jjm4b17', 'en', 1, 'https://ror.org/03jjm4b17 Hangzhou Vocational and Technical College ę­å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(42594, 'https://ror.org/058dmkn21', 'en', 1, 'https://ror.org/058dmkn21 Chinese Academy of International Trade and Economic Cooperation å•†åŠ”éƒØå›½é™…č“øę˜“ē»ęµŽåˆä½œē ”ē©¶é™¢'),
(42595, 'https://ror.org/042v7vy56', 'en', 1, 'https://ror.org/042v7vy56 Shanghai Institute of Landscape Gardening äøŠęµ·åø‚å›­ęž—ē§‘å­¦č§„åˆ’ē ”ē©¶é™¢'),
(42596, 'https://ror.org/04hqsgm68', 'en', 1, 'https://ror.org/04hqsgm68 China Banking Regulatory Commission äø­å›½é“¶č”Œäøšē›‘ē£ē®”ē†å§”å‘˜ä¼š'),
(42597, 'https://ror.org/05hk7qq56', 'en', 1, 'https://ror.org/05hk7qq56 Tibetan Traditional Medical College č„æč—ä¼ ē»ŸåŒ»å­¦é™¢'),
(42598, 'https://ror.org/03tx9ed22', 'en', 1, 'https://ror.org/03tx9ed22 Institute of Pomology ęžœę ‘ē ”ē©¶ę‰€'),
(42599, 'https://ror.org/01c5khf59', 'en', 1, 'https://ror.org/01c5khf59 Tourism College of Zhejiang ęµ™ę±Ÿę—…ęøøčŒäøšå­¦é™¢'),
(42600, 'https://ror.org/01hvjym56', 'en', 1, 'https://ror.org/01hvjym56 Shaoxing City Women and Children Hospital ē»å…“åø‚å¦‡å¹¼äæå„é™¢'),
(42601, 'https://ror.org/04tans503', 'en', 1, 'https://ror.org/04tans503 Shenzhen Blood Center ę·±åœ³åø‚č”€ę¶²äø­åæƒ'),
(42602, 'https://ror.org/02pzr0022', 'en', 1, 'https://ror.org/02pzr0022 National Center for Science and Technology Evaluation å›½å®¶äø­åæƒēš„ē§‘å­¦ęŠ€ęœÆčÆ„ä»·'),
(42603, 'https://ror.org/03j8e1479', 'en', 1, 'https://ror.org/03j8e1479 Gansu Provincial Hospital of TCM ē”˜č‚ƒēœäø­åŒ»é™¢'),
(42604, 'https://ror.org/01me2d674', 'en', 1, 'https://ror.org/01me2d674 Shenzhen Maternity and Child Healthcare Hospital ę·±åœ³åø‚å¦‡å¹¼äæå„é™¢'),
(42605, 'https://ror.org/05x3qxg97', 'en', 1, 'https://ror.org/05x3qxg97 Chinese Society for Tropical Crops äø­å›½ēƒ­åø¦ä½œē‰©å­¦ä¼š'),
(42606, 'https://ror.org/03hm7k454', 'en', 1, 'https://ror.org/03hm7k454 Twelfth Guangzhou City People''s Hospital å¹æå·žåø‚ē¬¬åäŗŒäŗŗę°‘åŒ»é™¢'),
(42607, 'https://ror.org/04g9b5w11', 'en', 1, 'https://ror.org/04g9b5w11 Seismological Bureau of Shanghai äøŠęµ·åø‚åœ°éœ‡å±€'),
(42608, 'https://ror.org/04c154n61', 'en', 1, 'https://ror.org/04c154n61 Ningbo Polytechnic å®ę³¢čŒäøšęŠ€ęœÆå­¦é™¢'),
(42609, 'https://ror.org/04jmysw33', 'en', 1, 'https://ror.org/04jmysw33 Wenzhou City People''s Hospital ęø©å·žåø‚äŗŗę°‘åŒ»é™¢'),
(42610, 'https://ror.org/05j8wgh30', 'en', 1, 'https://ror.org/05j8wgh30 Wenzhou Institute of Industrial Science ęø©å·žåø‚å·„äøšē§‘å­¦ē ”ē©¶é™¢'),
(42611, 'https://ror.org/04jyt7608', 'en', 1, 'https://ror.org/04jyt7608 Taizhou First People''s Hospital å°å·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(42612, 'https://ror.org/05pt0p091', 'en', 1, 'https://ror.org/05pt0p091 Taizhou Vocational and Technical College å°å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(42613, 'https://ror.org/0310dsa24', 'en', 1, 'https://ror.org/0310dsa24 Hangzhou Seventh Peoples Hospital ę­å·žåø‚ē¬¬äøƒäŗŗę°‘åŒ»é™¢'),
(42614, 'https://ror.org/03tebsy12', 'en', 1, 'https://ror.org/03tebsy12 Zhejiang Academy of Medical Sciences ęµ™ę±ŸēœåŒ»å­¦ē§‘å­¦é™¢'),
(42615, 'https://ror.org/05d5nhn14', 'en', 1, 'https://ror.org/05d5nhn14 Shaanxi Institute of Zoology é™•č„æēœåŠØē‰©ē ”ē©¶ę‰€'),
(42616, 'https://ror.org/03yh3e798', 'en', 1, 'https://ror.org/03yh3e798 Zhejiang Business Technology Institute ęµ™ę±Ÿå·„å•†čŒäøšęŠ€ęœÆå­¦é™¢'),
(42617, 'https://ror.org/05nm40v04', 'en', 1, 'https://ror.org/05nm40v04 Academy of Military Transportation å†›äŗ‹äŗ¤é€šå­¦é™¢'),
(42618, 'https://ror.org/019dkz313', 'en', 1, 'https://ror.org/019dkz313 Ningxia Academy of Agriculture and Forestry Sciences å†œęž—ē§‘å­¦é™¢å®å¤ē§‘å­¦é™¢'),
(42619, 'https://ror.org/02wt4jg41', 'en', 1, 'https://ror.org/02wt4jg41 Microbiology Institute of Shaanxi é™•č„æēœå¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(42620, 'https://ror.org/00e58e871', 'no_lang_code', 1, 'https://ror.org/00e58e871 Zhejiang Zanyu Technology (China) ęµ™ę±Ÿčµžå®‡ē§‘ęŠ€'),
(42621, 'https://ror.org/01x3vfv57', 'en', 1, 'https://ror.org/01x3vfv57 Zhejiang Changzheng Vocational and Technical College ęµ™ę±Ÿé•æå¾čŒäøšęŠ€ęœÆå­¦é™¢'),
(42622, 'https://ror.org/04sbhjg04', 'no_lang_code', 1, 'https://ror.org/04sbhjg04 Zhejiang Chem-tech Group (China) ęµ™ę±ŸåŒ–å·„ē§‘ęŠ€é›†å›¢ęœ‰é™å…¬åøē²¾ē»†åŒ–å·„åŽ‚'),
(42623, 'https://ror.org/05mmjqp23', 'en', 1, 'https://ror.org/05mmjqp23 Shandong Academy of Chinese Medicine å±±äøœēœäø­åŒ»čÆē ”ē©¶é™¢'),
(42624, 'https://ror.org/01vwvvq12', 'en', 1, 'https://ror.org/01vwvvq12 Zhejiang International Studies University ęµ™ę±Ÿå¤–å›½čÆ­å­¦é™¢'),
(42625, 'https://ror.org/03npsbw04', 'en', 1, 'https://ror.org/03npsbw04 Zhejiang Entry-Exit Inspection and Quarantine Bureau ę­å·žå‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(42626, 'https://ror.org/02wt5t905', 'en', 1, 'https://ror.org/02wt5t905 Zhejiang Marine Fisheries Research Institute ęµ™ę±Ÿēœęµ·ę“‹ę°“äŗ§ē ”ē©¶ę‰€'),
(42627, 'https://ror.org/01psdst63', 'en', 1, 'https://ror.org/01psdst63 Xinjiang Academy of Agricultural and Reclamation Science ę–°ē–†å†œåž¦ē§‘å­¦é™¢'),
(42628, 'https://ror.org/05eq10h32', 'en', 1, 'https://ror.org/05eq10h32 Zhejiang Mariculture Research Institute ęµ™ę±Ÿēœęµ·ę“‹ę°“äŗ§å…»ę®–ē ”ē©¶ę‰€'),
(42629, 'https://ror.org/046fb4113', 'en', 1, 'https://ror.org/046fb4113 ZheJiang Economic and Trade Polytechnic ęµ™ę±Ÿē»č“øčŒäøšęŠ€ęœÆå­¦é™¢'),
(42630, 'https://ror.org/02wrg9q93', 'en', 1, 'https://ror.org/02wrg9q93 Zhejiang Museum of Natural History ęµ™ę±Ÿč‡Ŗē„¶åšē‰©é¦†'),
(42631, 'https://ror.org/055gyn525', 'en', 1, 'https://ror.org/055gyn525 Zhejiang Institute of Mechanical and Electrical Engineering ęµ™ę±Ÿęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(42632, 'https://ror.org/02n2ntt72', 'en', 1, 'https://ror.org/02n2ntt72 Zhejiang Environmental Monitoring Center ęµ™ę±ŸēœēŽÆå¢ƒē›‘ęµ‹äø­åæƒ'),
(42633, 'https://ror.org/0227dek49', 'en', 1, 'https://ror.org/0227dek49 Zhejiang Provincial Environmental Protection Scientific Research Institute ęµ™ę±ŸēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦č®¾č®”ē ”ē©¶é™¢'),
(42634, 'https://ror.org/03cq0qg50', 'en', 1, 'https://ror.org/03cq0qg50 Zhejiang Ocean Development Institute ęµ™ę±Ÿēœęµ·ę“‹å¼€å‘ē ”ē©¶é™¢'),
(42635, 'https://ror.org/00deghz86', 'en', 1, 'https://ror.org/00deghz86 Zhejiang Financial College ęµ™ę±Ÿé‡‘čžčŒäøšå­¦é™¢'),
(42636, 'https://ror.org/02bt6bb31', 'en', 1, 'https://ror.org/02bt6bb31 Zhejiang Institute of Metrology č®”é‡ęµ™ę±Ÿē†å·„å¤§å­¦'),
(42637, 'https://ror.org/04s9pf004', 'en', 1, 'https://ror.org/04s9pf004 Zhejiang Pharmaceutical College ęµ™ę±ŸåŒ»čÆé«˜ē­‰äø“ē§‘å­¦ę ”'),
(42638, 'https://ror.org/045c2a851', 'en', 1, 'https://ror.org/045c2a851 ZheJiang Institute For Food and Drug Control ęµ™ę±Ÿēœé£Ÿå“čÆå“ę£€éŖŒę‰€'),
(42639, 'https://ror.org/02f6v4t81', 'en', 1, 'https://ror.org/02f6v4t81 Xinjiang Institute of Water Resources and Hydropower Research ę–°ē–†ę°“åˆ©ę°“ē”µē§‘å­¦ē ”ē©¶é™¢'),
(42640, 'https://ror.org/007eyd925', 'en', 1, 'https://ror.org/007eyd925 Tianjin University of Sport 天擄体育学院'),
(42641, 'https://ror.org/05m0wv206', 'en', 1, 'https://ror.org/05m0wv206 Zhejiang Taizhou Hospital ęµ™ę±Ÿēœå°å·žåŒ»é™¢'),
(42642, 'https://ror.org/048seqj96', 'en', 1, 'https://ror.org/048seqj96 Zhejiang Provincial Health Information Center ęµ™ę±Ÿēœå«ē”Ÿäæ”ęÆäø­åæƒ'),
(42643, 'https://ror.org/02kwn0g61', 'en', 1, 'https://ror.org/02kwn0g61 Zhoushan Institute of Calibration for Quality and Technology Supervision'),
(42644, 'https://ror.org/04p4ra235', 'en', 1, 'https://ror.org/04p4ra235 Zhejiang Tongji Vocational College of Science and Technology ē§‘ęŠ€ēš„åŒęµŽå¤§å­¦ęµ™ę±ŸčŒäøšęŠ€ęœÆå­¦é™¢'),
(42645, 'https://ror.org/018ha0a04', 'en', 1, 'https://ror.org/018ha0a04 Tianjin Research Institute of Water Transport Engineering å¤©ē§‘é™¢å®˜ę–¹ē½‘ē«™'),
(42646, 'https://ror.org/00335tx14', 'en', 1, 'https://ror.org/00335tx14 North Carolina Soybean Association'),
(42647, 'https://ror.org/04nz9a261', 'en', 1, 'https://ror.org/04nz9a261 Mushroom Council'),
(42648, 'https://ror.org/05nyr7981', 'en', 1, 'https://ror.org/05nyr7981 Institute of General and Experimental Biology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ биологии Š”Šž Š ŠŠ'),
(42649, 'https://ror.org/03zn93s35', 'en', 1, 'https://ror.org/03zn93s35 Swiss Museum of Transport Verkehrshaus der Schweiz'),
(42650, 'https://ror.org/02rzte064', 'en', 1, 'https://ror.org/02rzte064 Zhejiang Science and Technology Information Institute ęµ™ę±Ÿēœē§‘ęŠ€äæ”ęÆē ”ē©¶é™¢'),
(42651, 'https://ror.org/00d8hgw93', 'en', 1, 'https://ror.org/00d8hgw93 Global Environmental Outreach Centre'),
(42652, 'https://ror.org/02pzhxb85', 'en', 1, 'https://ror.org/02pzhxb85 Vitamin D Society'),
(42653, 'https://ror.org/05ancaf73', 'en', 1, 'https://ror.org/05ancaf73 American Association of Family and Consumer Sciences'),
(42654, 'https://ror.org/04fqtzv33', 'en', 1, 'https://ror.org/04fqtzv33 American Association of Law Libraries'),
(42655, 'https://ror.org/02yr31a60', 'fr', 1, 'https://ror.org/02yr31a60 Association Belge Contre les Maladies Neuro-Musculaires'),
(42656, 'https://ror.org/003c45k89', 'en', 1, 'https://ror.org/003c45k89 Korea Foundation Of Nuclear Safety ķ•œźµ­ģ›ģžė „ģ•ˆģ „ģž¬ė‹Ø'),
(42657, 'https://ror.org/04s9bdj81', 'en', 1, 'https://ror.org/04s9bdj81 Danish Energy Association Dansk Energi'),
(42658, 'https://ror.org/030cpmq61', 'en', 1, 'https://ror.org/030cpmq61 Society for Surgery of the Alimentary Tract'),
(42659, 'https://ror.org/02n219t94', 'en', 1, 'https://ror.org/02n219t94 Association for Geographic Information'),
(42660, 'https://ror.org/057q9nn35', 'en', 1, 'https://ror.org/057q9nn35 Alpha Omega Alpha Medical Honor Society'),
(42661, 'https://ror.org/048f8az88', 'en', 1, 'https://ror.org/048f8az88 American Association for Thoracic Surgery'),
(42662, 'https://ror.org/02ean8c72', 'it', 1, 'https://ror.org/02ean8c72 Associazione Italiana Di Oncologia Medica'),
(42663, 'https://ror.org/031v2vc59', 'en', 1, 'https://ror.org/031v2vc59 American Association of Colleges of Pharmacy'),
(42664, 'https://ror.org/03fjjmv72', 'en', 1, 'https://ror.org/03fjjmv72 Association for Surgical Education'),
(42665, 'https://ror.org/05we5kc38', 'da', 1, 'https://ror.org/05we5kc38 TandlƦgeforeningen'),
(42666, 'https://ror.org/04sedwh45', 'en', 1, 'https://ror.org/04sedwh45 American Parkinson Disease Association'),
(42667, 'https://ror.org/0351th250', 'en', 1, 'https://ror.org/0351th250 Danish Lung Association Lungeforening'),
(42668, 'https://ror.org/02pf53x18', 'en', 1, 'https://ror.org/02pf53x18 Association for Academic Surgery'),
(42669, 'https://ror.org/009byq155', 'es', 1, 'https://ror.org/009byq155 Centro de Investigación Biomédica en Red de Salud Mental'),
(42670, 'https://ror.org/00m1bnc32', 'en', 1, 'https://ror.org/00m1bnc32 Council for Christian Colleges and Universities'),
(42671, 'https://ror.org/058pb5559', 'en', 1, 'https://ror.org/058pb5559 Association for Public Policy Analysis and Management'),
(42672, 'https://ror.org/022c5tm72', 'en', 1, 'https://ror.org/022c5tm72 American Association of Directors of Psychiatric Residency Training'),
(42673, 'https://ror.org/04k620071', 'en', 1, 'https://ror.org/04k620071 American Society for Quality'),
(42674, 'https://ror.org/03m80tg69', 'en', 1, 'https://ror.org/03m80tg69 International Parkinson and Movement Disorder Society'),
(42675, 'https://ror.org/02jcrd051', 'en', 1, 'https://ror.org/02jcrd051 Blue Cross Blue Shield Association'),
(42676, 'https://ror.org/02j2s7216', 'en', 1, 'https://ror.org/02j2s7216 American Association for Geriatric Psychiatry'),
(42677, 'https://ror.org/041f67531', 'en', 1, 'https://ror.org/041f67531 American Psychoanalytic Association'),
(42678, 'https://ror.org/012wc2h72', 'en', 1, 'https://ror.org/012wc2h72 American Psychosomatic Society'),
(42679, 'https://ror.org/00wgk5w17', 'en', 1, 'https://ror.org/00wgk5w17 Changzhou Science and Technology Bureau åøøå·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(42680, 'https://ror.org/02g4qga81', 'en', 1, 'https://ror.org/02g4qga81 Western History Association'),
(42681, 'https://ror.org/02azaez02', 'en', 1, 'https://ror.org/02azaez02 American Society for Surgery of the Hand'),
(42682, 'https://ror.org/010nq4b05', 'en', 1, 'https://ror.org/010nq4b05 Illinois School Psychologists Association'),
(42683, 'https://ror.org/04hrrvw77', 'en', 1, 'https://ror.org/04hrrvw77 American Society of Maxillofacial Surgeons'),
(42684, 'https://ror.org/04h7w4h73', 'en', 1, 'https://ror.org/04h7w4h73 Pskov State University'),
(42685, 'https://ror.org/00zst6w92', 'en', 1, 'https://ror.org/00zst6w92 Swedish Movement Disorder Society'),
(42686, 'https://ror.org/00xb58j90', 'en', 1, 'https://ror.org/00xb58j90 Bundesverband der Deutschen Industrie Federation of German Industries'),
(42687, 'https://ror.org/030rn8443', 'en', 1, 'https://ror.org/030rn8443 Alberta Conservation Association'),
(42688, 'https://ror.org/039573m03', 'sv', 1, 'https://ror.org/039573m03 ParkinsonFƶrbundet'),
(42689, 'https://ror.org/022rxf761', 'da', 1, 'https://ror.org/022rxf761 Parkinsonforeningen'),
(42690, 'https://ror.org/01r3q4477', 'en', 1, 'https://ror.org/01r3q4477 Society of American Gastrointestinal and Endoscopic Surgeons'),
(42691, 'https://ror.org/01aj50m26', 'en', 1, 'https://ror.org/01aj50m26 Copper Development Association'),
(42692, 'https://ror.org/02gtar309', 'en', 1, 'https://ror.org/02gtar309 Association for the Advancement of Baltic Studies'),
(42693, 'https://ror.org/05jd9bf81', 'en', 1, 'https://ror.org/05jd9bf81 Canadian Association of Radiation Oncology'),
(42694, 'https://ror.org/01r43ed56', 'en', 1, 'https://ror.org/01r43ed56 Canadian Urological Association'),
(42695, 'https://ror.org/01x6e4x77', 'en', 1, 'https://ror.org/01x6e4x77 American Orthopsychiatric Association'),
(42696, 'https://ror.org/03ezg7602', 'en', 1, 'https://ror.org/03ezg7602 Association for Women Geoscientists'),
(42697, 'https://ror.org/01sb82c82', 'en', 1, 'https://ror.org/01sb82c82 American Rhododendron Society'),
(42698, 'https://ror.org/04sggj290', 'en', 1, 'https://ror.org/04sggj290 Mental Health Association of Westchester County'),
(42699, 'https://ror.org/00cc7y784', 'en', 1, 'https://ror.org/00cc7y784 American Urogynecologic Society'),
(42700, 'https://ror.org/03snppx81', 'en', 1, 'https://ror.org/03snppx81 California Women Lawyers'),
(42701, 'https://ror.org/00syxh370', 'en', 1, 'https://ror.org/00syxh370 American Welding Society'),
(42702, 'https://ror.org/029q31q54', 'en', 1, 'https://ror.org/029q31q54 Canadian Friends Of Tel-Aviv University'),
(42703, 'https://ror.org/03jjkbg74', 'en', 1, 'https://ror.org/03jjkbg74 American Society for Public Administration'),
(42704, 'https://ror.org/0345bxe71', 'en', 1, 'https://ror.org/0345bxe71 Society of Critical Care Medicine'),
(42705, 'https://ror.org/0592g7p42', 'en', 1, 'https://ror.org/0592g7p42 Academy of Osseointegration'),
(42706, 'https://ror.org/032mwpc05', 'no_lang_code', 1, 'https://ror.org/032mwpc05 Halogenated Solvents Industry Alliance (United States)'),
(42707, 'https://ror.org/01atcss13', 'en', 1, 'https://ror.org/01atcss13 American Association of Neurological Surgeons'),
(42708, 'https://ror.org/01scjps49', 'en', 1, 'https://ror.org/01scjps49 Arthroscopy Association of North America'),
(42709, 'https://ror.org/05fp1z527', 'en', 1, 'https://ror.org/05fp1z527 Association of Zoo Veterinary Technicians'),
(42710, 'https://ror.org/052tv0w45', 'en', 1, 'https://ror.org/052tv0w45 Almond Board of California'),
(42711, 'https://ror.org/04tqjn232', 'fr', 1, 'https://ror.org/04tqjn232 Association des MƩdecins VƩtƩrinaires du QuƩbec'),
(42712, 'https://ror.org/04hcr0j14', 'en', 1, 'https://ror.org/04hcr0j14 Nebraska Bankers Association'),
(42713, 'https://ror.org/048saf111', 'en', 1, 'https://ror.org/048saf111 California Library Association'),
(42714, 'https://ror.org/05hk0hn26', 'en', 1, 'https://ror.org/05hk0hn26 European Hematology Association'),
(42715, 'https://ror.org/028ds0f65', 'en', 1, 'https://ror.org/028ds0f65 American Society of Heating, Refrigerating, and Air-Conditioning Engineers'),
(42716, 'https://ror.org/04j0s0m53', 'en', 1, 'https://ror.org/04j0s0m53 American Society of Primatologists'),
(42717, 'https://ror.org/02ht8gz29', 'en', 1, 'https://ror.org/02ht8gz29 American College of Veterinary Internal Medicine'),
(42718, 'https://ror.org/04bam1s60', 'en', 1, 'https://ror.org/04bam1s60 Illinois Ornithological Society'),
(42719, 'https://ror.org/01jtx4m19', 'en', 1, 'https://ror.org/01jtx4m19 Central Society for Clinical and Translational Research'),
(42720, 'https://ror.org/05n4r9n98', 'en', 1, 'https://ror.org/05n4r9n98 St. Louis American Parkinson Disease Association'),
(42721, 'https://ror.org/05a8c4g41', 'en', 1, 'https://ror.org/05a8c4g41 American Nephrology Nurses Association'),
(42722, 'https://ror.org/03wa5t726', 'en', 1, 'https://ror.org/03wa5t726 Kansas Grain Sorghum Commission and Producers Association'),
(42723, 'https://ror.org/03b44vb62', 'en', 1, 'https://ror.org/03b44vb62 Regional Studies Association'),
(42724, 'https://ror.org/043td6439', 'en', 1, 'https://ror.org/043td6439 American Association of University Professors'),
(42725, 'https://ror.org/04pb25098', 'en', 1, 'https://ror.org/04pb25098 Progressive Osseous Heteroplasia Association'),
(42726, 'https://ror.org/03pjj5012', 'en', 1, 'https://ror.org/03pjj5012 National Association of Broadcasters'),
(42727, 'https://ror.org/01wqc8n07', 'en', 1, 'https://ror.org/01wqc8n07 British Orthopaedic Association'),
(42728, 'https://ror.org/02h5yd368', 'en', 1, 'https://ror.org/02h5yd368 Sexual Medicine Society of North America'),
(42729, 'https://ror.org/02chfyt80', 'en', 1, 'https://ror.org/02chfyt80 Canadian Society for Vascular Surgery'),
(42730, 'https://ror.org/03zn9xn73', 'en', 1, 'https://ror.org/03zn9xn73 Society of Actuaries'),
(42731, 'https://ror.org/0400j8512', 'en', 1, 'https://ror.org/0400j8512 Eye Bank Association of America'),
(42732, 'https://ror.org/03xxbcc33', 'en', 1, 'https://ror.org/03xxbcc33 Essex Disabled People''s Association'),
(42733, 'https://ror.org/043cb6104', 'en', 1, 'https://ror.org/043cb6104 Oklahoma Biological Survey'),
(42734, 'https://ror.org/03ksx7604', 'en', 1, 'https://ror.org/03ksx7604 Association of Academic Physiatrists'),
(42735, 'https://ror.org/03abgds10', 'en', 1, 'https://ror.org/03abgds10 Administrative Sciences Association of Canada Association des sciences administratives du Canada'),
(42736, 'https://ror.org/02reep516', 'en', 1, 'https://ror.org/02reep516 Association of Military Surgeons of the United States'),
(42737, 'https://ror.org/01mcq6w80', 'en', 1, 'https://ror.org/01mcq6w80 Society for Marine Mammalogy'),
(42738, 'https://ror.org/01w7zp119', 'en', 1, 'https://ror.org/01w7zp119 New York State Psychological Association'),
(42739, 'https://ror.org/00y3fw422', 'en', 1, 'https://ror.org/00y3fw422 Boston Society of Architects'),
(42740, 'https://ror.org/02zwd6322', 'en', 1, 'https://ror.org/02zwd6322 Australian Acoustical Society'),
(42741, 'https://ror.org/04e5cyn06', 'en', 1, 'https://ror.org/04e5cyn06 Agricultural & Applied Economics Association'),
(42742, 'https://ror.org/026p0h140', 'en', 1, 'https://ror.org/026p0h140 Australian Society of Orthodontists'),
(42743, 'https://ror.org/0486xr381', 'en', 1, 'https://ror.org/0486xr381 Filson Historical Society'),
(42744, 'https://ror.org/027w9yg20', 'en', 1, 'https://ror.org/027w9yg20 Society for Human Resource Management'),
(42745, 'https://ror.org/04rwyne07', 'en', 1, 'https://ror.org/04rwyne07 Saving Tiny Hearts Society'),
(42746, 'https://ror.org/039tpj237', 'en', 1, 'https://ror.org/039tpj237 ACT Herpetological Association'),
(42747, 'https://ror.org/037ar5g91', 'en', 1, 'https://ror.org/037ar5g91 American Cleft Palate-Craniofacial Association'),
(42748, 'https://ror.org/00gm6mv51', 'en', 1, 'https://ror.org/00gm6mv51 Sleep Research Society'),
(42749, 'https://ror.org/01f0mje62', 'en', 1, 'https://ror.org/01f0mje62 American Medical Women''s Association'),
(42750, 'https://ror.org/00kbped59', 'es', 1, 'https://ror.org/00kbped59 Asociación Española para el Estudio del Hígado'),
(42751, 'https://ror.org/035m9ft70', 'en', 1, 'https://ror.org/035m9ft70 Heart Rhythm Society'),
(42752, 'https://ror.org/03vezy923', 'en', 1, 'https://ror.org/03vezy923 American Society for Theatre Research'),
(42753, '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'),
(42754, 'https://ror.org/00wxsmn74', 'en', 1, 'https://ror.org/00wxsmn74 Canadian Library Association'),
(42755, 'https://ror.org/03fkqty89', 'en', 1, 'https://ror.org/03fkqty89 Japanese Society of Clinical Neuropsychopharmacology ę—„ęœ¬č‡ØåŗŠē²¾ē„žē„žēµŒč–¬ē†å­¦ä¼š'),
(42756, 'https://ror.org/02zn32y15', 'it', 1, 'https://ror.org/02zn32y15 Associazione Italiana Lotta al Neuroblastoma'),
(42757, 'https://ror.org/04z6q9z55', 'fr', 1, 'https://ror.org/04z6q9z55 Sidaction'),
(42758, 'https://ror.org/03atav620', 'en', 1, 'https://ror.org/03atav620 Canadian Association of University Teachers'),
(42759, 'https://ror.org/02cbrh206', 'en', 1, 'https://ror.org/02cbrh206 American Pharmacists Association'),
(42760, 'https://ror.org/01fmd5559', 'en', 1, 'https://ror.org/01fmd5559 British Deer Society'),
(42761, 'https://ror.org/036jhjy94', 'en', 1, 'https://ror.org/036jhjy94 Australasian Speech Science and Technology Association'),
(42762, 'https://ror.org/05wt8ay40', 'en', 1, 'https://ror.org/05wt8ay40 Canadian Society of Petroleum Geologists'),
(42763, 'https://ror.org/00zevg885', 'en', 1, 'https://ror.org/00zevg885 International Bone Research Association'),
(42764, 'https://ror.org/05w3e2p73', 'en', 1, 'https://ror.org/05w3e2p73 Manuscript Society'),
(42765, 'https://ror.org/008421332', 'en', 1, 'https://ror.org/008421332 NBIA Disorders Association'),
(42766, 'https://ror.org/04gv4zs18', 'en', 1, 'https://ror.org/04gv4zs18 Anglo-Israel Association'),
(42767, 'https://ror.org/0490fjq98', 'sv', 1, 'https://ror.org/0490fjq98 Svenska JƤgarefƶrbundet'),
(42768, 'https://ror.org/00bpw5437', 'en', 1, 'https://ror.org/00bpw5437 Arthritis Society'),
(42769, 'https://ror.org/00zm1cx92', 'en', 1, 'https://ror.org/00zm1cx92 Jamestowne Society'),
(42770, 'https://ror.org/05h0qwt23', 'en', 1, 'https://ror.org/05h0qwt23 Art Libraries Society'),
(42771, 'https://ror.org/01vekj030', 'en', 1, 'https://ror.org/01vekj030 North Carolina Nursery and Landscape Association'),
(42772, 'https://ror.org/05h8amp43', 'en', 1, 'https://ror.org/05h8amp43 Japan China Medical Association ę—„ęœ¬äø­å›½åŒ»å­¦å”ä¼š'),
(42773, 'https://ror.org/00cdwab02', 'en', 1, 'https://ror.org/00cdwab02 Children’s Literature Association'),
(42774, 'https://ror.org/032hv5121', 'en', 1, 'https://ror.org/032hv5121 Association for the Study of Animal Behaviour'),
(42775, 'https://ror.org/027q4m113', 'en', 1, 'https://ror.org/027q4m113 National Association for Armenian Studies and Research'),
(42776, 'https://ror.org/009bczc36', 'ca', 1, 'https://ror.org/009bczc36 Societat Catalana d''Oftalmologia'),
(42777, 'https://ror.org/05n4fyj34', 'en', 1, 'https://ror.org/05n4fyj34 Pi Gamma Mu'),
(42778, 'https://ror.org/03bm7y961', 'en', 1, 'https://ror.org/03bm7y961 Association of Medical Research Charities'),
(42779, 'https://ror.org/0500gae26', 'en', 1, 'https://ror.org/0500gae26 La SociƩtƩ gƩographique royale du Canada Royal Canadian Geographical Society'),
(42780, 'https://ror.org/05az4xw46', 'en', 1, 'https://ror.org/05az4xw46 Bibliographical Society'),
(42781, 'https://ror.org/051mryw61', 'en', 1, 'https://ror.org/051mryw61 Entomological Society of Canada SociĆ©tĆ© d’Entomologie du Canada'),
(42782, 'https://ror.org/003kz5h76', 'en', 1, 'https://ror.org/003kz5h76 Association of Management Consulting Firms'),
(42783, 'https://ror.org/05f73a827', 'en', 1, 'https://ror.org/05f73a827 Canadian Pain Society'),
(42784, 'https://ror.org/00cq3qn16', 'en', 1, 'https://ror.org/00cq3qn16 Beijing Institute of Geology for Mineral Resources åŒ—äŗ¬ēŸæäŗ§åœ°č“Øē ”ē©¶é™¢ äŗ¬I'),
(42785, 'https://ror.org/01rd01t06', 'en', 1, 'https://ror.org/01rd01t06 Academy of Sciences and Humanities in Hamburg Akademie der Wissenschaften in Hamburg'),
(42786, 'https://ror.org/02hdxnq28', 'de', 1, 'https://ror.org/02hdxnq28 Deutsches Schiffahrtsmuseum German Maritime Museum'),
(42787, 'https://ror.org/04gmcat66', 'no_lang_code', 1, 'https://ror.org/04gmcat66 BioTez (Germany)'),
(42788, 'https://ror.org/03t47sr41', 'en', 1, 'https://ror.org/03t47sr41 Xinjiang Uygur Autonomous Region Uygur Medicine Hospital ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē»“å¾å°”åŒ»åŒ»é™¢'),
(42789, 'https://ror.org/031kyph18', 'de', 1, 'https://ror.org/031kyph18 Gottfried-Wilhelm-Leibniz-Gesellschaft'),
(42790, 'https://ror.org/0192j7z55', 'en', 1, 'https://ror.org/0192j7z55 Zhejiang Industry Polytechnic College ęµ™ę±Ÿå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(42791, 'https://ror.org/03gjpvv92', 'en', 1, 'https://ror.org/03gjpvv92 Halle Institute for Economic Research Leibniz-Institut für Wirtschaftsforschung Halle'),
(42792, 'https://ror.org/03w9z9x42', 'en', 1, 'https://ror.org/03w9z9x42 Ashland Community and Technical College'),
(42793, 'https://ror.org/00z6n3z58', 'en', 1, 'https://ror.org/00z6n3z58 Maricopa Community Colleges - Glendale Community College'),
(42794, 'https://ror.org/01r4sa504', 'en', 1, 'https://ror.org/01r4sa504 Institut für Lebensmittel- und Umweltforschung Institute for Food and Environmental Research'),
(42795, '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'),
(42796, 'https://ror.org/01351nn19', 'en', 1, 'https://ror.org/01351nn19 Hunan Sports Bureau ę¹–å—ēœä½“č‚²å±€'),
(42797, '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'),
(42798, 'https://ror.org/04mdy6t91', 'no_lang_code', 1, 'https://ror.org/04mdy6t91 OAO VNIPIneft (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠµŃ„Ń‚ŠµŠæŠµŃ€ŠµŃ€Š°Š±Š°Ń‚Ń‹Š²Š°ŃŽŃ‰ŠµŠ¹ Šø нефтехимической ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø ŠžŠŠž "Š’ŠŠ˜ŠŸŠ˜Š½ŠµŃ„Ń‚ŃŒ"'),
(42799, 'https://ror.org/00nj92d70', 'en', 1, 'https://ror.org/00nj92d70 Aaron Marcus and Associates'),
(42800, 'https://ror.org/05s2dce75', 'no_lang_code', 1, 'https://ror.org/05s2dce75 Center for Information and Numerical Data Analysis and Synthesis (United States)'),
(42801, 'https://ror.org/04jc92q85', 'en', 1, 'https://ror.org/04jc92q85 Academy of Marketing Science'),
(42802, 'https://ror.org/0563dqj82', 'no_lang_code', 1, 'https://ror.org/0563dqj82 Landesgewerbeanstalt Bayern (Germany)'),
(42803, 'https://ror.org/01gq10q51', 'de', 1, 'https://ror.org/01gq10q51 Akademie für Technikfolgenabschätzung'),
(42804, 'https://ror.org/02kzqwr97', 'no_lang_code', 1, 'https://ror.org/02kzqwr97 Becton Dickinson (Germany)'),
(42805, 'https://ror.org/05fe3fx56', 'de', 1, 'https://ror.org/05fe3fx56 Chirurgische UniversitƤtsklinik Heidelberg'),
(42806, 'https://ror.org/011ts7939', 'de', 1, 'https://ror.org/011ts7939 Berufsgenossenschaft Rohstoffe und chemische Industrie'),
(42807, 'https://ror.org/03zqxr976', 'en', 1, 'https://ror.org/03zqxr976 Jiangsu Provincial Institute of Geological Survey ę±Ÿč‹ēœåœ°č“Øč°ƒęŸ„ē ”ē©¶é™¢'),
(42808, 'https://ror.org/00gcbxk06', 'en', 1, 'https://ror.org/00gcbxk06 All-Russian Electrotechnical Institute named after V.I.Lenin Всероссийский ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.И. Ленина'),
(42809, 'https://ror.org/0044cjb29', 'no_lang_code', 1, 'https://ror.org/0044cjb29 Clinical Investigation Support (Austria)'),
(42810, 'https://ror.org/03g38jf25', 'en', 1, 'https://ror.org/03g38jf25 All-Russian Research Institute for Optical and Physical Measurements Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптико-физических измерений'),
(42811, 'https://ror.org/00kbwx014', 'en', 1, 'https://ror.org/00kbwx014 Blended Solutions'),
(42812, 'https://ror.org/022hg5v70', 'en', 1, 'https://ror.org/022hg5v70 Chicago Neuropsychology Group'),
(42813, 'https://ror.org/05prsqx18', 'no_lang_code', 1, 'https://ror.org/05prsqx18 Bohn Stafleu van Loghum (Netherlands)'),
(42814, 'https://ror.org/03a5vm896', 'en', 1, 'https://ror.org/03a5vm896 All-Russia Thermal Engineering Institute Всероссийский Теплотехнический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(42815, 'https://ror.org/01r10sk82', 'en', 1, 'https://ror.org/01r10sk82 China Academy of Printing Technology äø­å›½å°åˆ·ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(42816, 'https://ror.org/05s44bn67', 'en', 1, 'https://ror.org/05s44bn67 Cook County Sheriff''s Office'),
(42817, 'https://ror.org/02phsd572', 'no_lang_code', 1, 'https://ror.org/02phsd572 Covance (Germany)'),
(42818, 'https://ror.org/047456960', 'en', 1, 'https://ror.org/047456960 Broome County Health Department'),
(42819, 'https://ror.org/05y8c9413', 'no_lang_code', 1, 'https://ror.org/05y8c9413 SK Communications (South Korea) ģ—ģŠ¤ģ¼€ģ“ģ»¤ė®¤ė‹ˆģ¼€ģ“ģ…˜ģ¦ˆ'),
(42820, 'https://ror.org/00cwr8424', 'no_lang_code', 1, 'https://ror.org/00cwr8424 Gad Consulting Services (United States)'),
(42821, 'https://ror.org/03z8jm198', 'en', 1, 'https://ror.org/03z8jm198 Herzberg Institute of Astrophysics'),
(42822, 'https://ror.org/00ew91p29', 'en', 1, 'https://ror.org/00ew91p29 Deutsche Gesellschaft für Chirurgie German Society of Surgery'),
(42823, 'https://ror.org/03220m208', 'en', 1, 'https://ror.org/03220m208 German Informatics Society Gesellschaft für Informatik'),
(42824, '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'),
(42825, 'https://ror.org/02g7va395', 'en', 1, 'https://ror.org/02g7va395 European Space Policy Institute Europäisches Institut für Weltraumpolitik'),
(42826, 'https://ror.org/032khhz22', 'no_lang_code', 1, 'https://ror.org/032khhz22 Exascale (United Kingdom)'),
(42827, 'https://ror.org/02srvrw14', 'no_lang_code', 1, 'https://ror.org/02srvrw14 Galapagos (Croatia)'),
(42828, 'https://ror.org/05knq2v25', 'no_lang_code', 1, 'https://ror.org/05knq2v25 Francotyp Postalia (Germany)'),
(42829, 'https://ror.org/045skzd42', 'en', 1, 'https://ror.org/045skzd42 Fujian Provincial Administration of Press, Publication, Radio, Film and Television ē¦å»ŗēœę–°é—»å‡ŗē‰ˆå¹æē”µ'),
(42830, 'https://ror.org/04exgek62', 'en', 1, 'https://ror.org/04exgek62 International Training Centre of the ILO'),
(42831, 'https://ror.org/000jzpp78', 'en', 1, 'https://ror.org/000jzpp78 International University in Germany'),
(42832, 'https://ror.org/05b9xma73', 'de', 1, 'https://ror.org/05b9xma73 Bergmann und Partner RechtsanwƤlte'),
(42833, 'https://ror.org/01a58zy03', 'de', 1, 'https://ror.org/01a58zy03 Blanke Meier Evers RechtsanwƤlte in Partnerschaft'),
(42834, 'https://ror.org/03dhqyc75', 'en', 1, 'https://ror.org/03dhqyc75 Islamic Azad University, Lahijan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد Ł„Ų§Ł‡ŁŠŲ¬Ų§Ł†'),
(42835, 'https://ror.org/01wzyqj69', 'no_lang_code', 1, 'https://ror.org/01wzyqj69 Kerkhoff Consulting (Germany)'),
(42836, 'https://ror.org/0394aqe83', 'en', 1, 'https://ror.org/0394aqe83 KES International'),
(42837, 'https://ror.org/03cxf6q40', 'no_lang_code', 1, 'https://ror.org/03cxf6q40 Jain PharmaBiotech (Switzerland)'),
(42838, 'https://ror.org/00qrfm413', 'en', 1, 'https://ror.org/00qrfm413 Institute for Expressive Analysis'),
(42839, 'https://ror.org/00gh9ef15', 'en', 1, 'https://ror.org/00gh9ef15 Japan Association for International Chemical Information åŒ–å­¦ęƒ…å ±å”ä¼š'),
(42840, 'https://ror.org/00x2kxt49', 'en', 1, 'https://ror.org/00x2kxt49 Institute for Futures Studies Institutet fƶr Framtidsstudier'),
(42841, 'https://ror.org/03asesc74', 'en', 1, 'https://ror.org/03asesc74 International Association of Engineers'),
(42842, 'https://ror.org/02wqfz680', 'nl', 1, 'https://ror.org/02wqfz680 Maatschappij tot Redding van Drenkelingen'),
(42843, 'https://ror.org/013kgb629', 'en', 1, 'https://ror.org/013kgb629 Machine Intelligence Research Labs'),
(42844, 'https://ror.org/00c8rjz37', 'en', 1, 'https://ror.org/00c8rjz37 Mansoura University Hospital'),
(42845, 'https://ror.org/01s0p2f24', 'en', 1, 'https://ror.org/01s0p2f24 Michalski Huettermann and Partner Michalski Hüttermann & Partner Patentanwälte'),
(42846, 'https://ror.org/05k6zrs81', 'no_lang_code', 1, 'https://ror.org/05k6zrs81 Metallurgical Corporation of China (China) äø­å›½å†¶é‡‘ē§‘å·„č‚”ä»½ęœ‰é™å…¬åø'),
(42847, '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'),
(42848, 'https://ror.org/03mxqcg82', 'en', 1, 'https://ror.org/03mxqcg82 Flughafen Leipzig/Halle Leipzig/Halle Airport'),
(42849, 'https://ror.org/007h0zf03', 'en', 1, 'https://ror.org/007h0zf03 National Institute for Educational Policy Research 国立教育政策研究所'),
(42850, 'https://ror.org/03fyf9c76', 'no_lang_code', 1, 'https://ror.org/03fyf9c76 McKinsey & Company (Germany)'),
(42851, 'https://ror.org/0579a8137', 'en', 1, 'https://ror.org/0579a8137 National Institute for the Psychotherapies'),
(42852, 'https://ror.org/00b65kj58', 'no_lang_code', 1, 'https://ror.org/00b65kj58 MPDV Mikrolab (Germany)'),
(42853, 'https://ror.org/023kbw492', 'en', 1, 'https://ror.org/023kbw492 Pittsburgh Psychoanalytic Center'),
(42854, 'https://ror.org/04hbnm423', 'en', 1, 'https://ror.org/04hbnm423 MUFG Union Bank'),
(42855, 'https://ror.org/02168y314', 'no_lang_code', 1, 'https://ror.org/02168y314 Rail Vision (United Kingdom)'),
(42856, 'https://ror.org/026t6sy78', 'no_lang_code', 1, 'https://ror.org/026t6sy78 GlaxoSmithKline (Croatia)'),
(42857, 'https://ror.org/04cx2cg45', 'no_lang_code', 1, 'https://ror.org/04cx2cg45 Neoanalysis (Greece) ĪĪ•ĪŸĪ‘ĪĪ‘Ī›Ī„Ī£Ī™Ī£'),
(42858, 'https://ror.org/03tre1g84', 'en', 1, 'https://ror.org/03tre1g84 Arbeitsgruppe Friedensforschung und EuropƤische Sicherheitspolitik Peace Research and European Security Studies'),
(42859, 'https://ror.org/03ext6r62', 'en', 1, 'https://ror.org/03ext6r62 All-Russian Research Institute for Oil Refining Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по переработке нефти'),
(42860, 'https://ror.org/03m823837', 'no_lang_code', 1, 'https://ror.org/03m823837 Magnezit (Russia) ŠœŠ°Š³Š½ŠµŠ·ŠøŃ‚Š°'),
(42861, 'https://ror.org/05c9p5b07', 'no_lang_code', 1, 'https://ror.org/05c9p5b07 East Institute Refractories (Russia) Восточный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Š³Š½ŠµŃƒŠæŠ¾Ń€Š¾Š²'),
(42862, '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 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Ń€Š°ŃŃ‚ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… веществ им. акаГ. Š”.Š®. Юнусова АкаГемии ŠŠ°ŃƒŠŗ Республики Узбекистан'),
(42863, 'https://ror.org/05cfz8m13', 'en', 1, 'https://ror.org/05cfz8m13 L.V. Pisarzhevskii Institute of Physical Chemistry Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š†Š—Š˜Š§ŠŠžŠ‡ Š„Š†ŠœŠ†Š‡ Š†ŠœŠ•ŠŠ† Š›. Š’. ŠŸŠ˜Š”ŠŠ Š–Š•Š’Š”Š¬ŠšŠžŠ“Šž ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠžŠ‡ ŠŠšŠŠ”Š•ŠœŠ†Š‡ ŠŠŠ£Šš Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(42864, 'https://ror.org/003agka18', 'en', 1, 'https://ror.org/003agka18 Search Institute'),
(42865, 'https://ror.org/02pbw9e07', 'no_lang_code', 1, 'https://ror.org/02pbw9e07 Nomad Bioscience (Germany)'),
(42866, 'https://ror.org/046m94028', 'it', 1, 'https://ror.org/046m94028 Associazione Italiana Arbitri'),
(42867, 'https://ror.org/03efa9j76', 'en', 1, 'https://ror.org/03efa9j76 Solid State Physics Laboratory ą¤ ą„‹ą¤øą¤¾ą¤µą¤øą„ą¤„ą¤¾ ą¤­ą„Œą¤¤ą¤æą¤•ą„€ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(42868, 'https://ror.org/01gb59s19', 'no_lang_code', 1, 'https://ror.org/01gb59s19 SGS (China)'),
(42869, 'https://ror.org/0313mbq66', 'de', 1, 'https://ror.org/0313mbq66 Sukkulenten-Sammlung Zürich'),
(42870, 'https://ror.org/053ae3r23', 'en', 1, 'https://ror.org/053ae3r23 Schweizerischer Versicherungsverband Swiss Insurance Association'),
(42871, 'https://ror.org/01vj25w90', 'en', 1, 'https://ror.org/01vj25w90 Indian Institute of Metals'),
(42872, 'https://ror.org/03ftwc024', 'en', 1, 'https://ror.org/03ftwc024 Marienhospital Arnsberg'),
(42873, 'https://ror.org/02vfzhm25', 'de', 1, 'https://ror.org/02vfzhm25 Barmherzige Schwestern vom heiligen Kreuz'),
(42874, 'https://ror.org/03646q924', 'en', 1, 'https://ror.org/03646q924 The Ohio State University at Marion'),
(42875, 'https://ror.org/00gw6fh23', 'de', 1, 'https://ror.org/00gw6fh23 Klinikum Hanau'),
(42876, 'https://ror.org/05sw6n724', 'no_lang_code', 1, 'https://ror.org/05sw6n724 Right Way (Germany)'),
(42877, 'https://ror.org/04p57n726', 'en', 1, 'https://ror.org/04p57n726 Research Institute of Ceramics ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠšŠ•Š ŠŠœŠ˜ŠšŠ˜'),
(42878, 'https://ror.org/055j23398', 'en', 1, 'https://ror.org/055j23398 Gersevanov Research Institute of Bases and Underground Structures ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠøŠ·Ń‹ŃŠŗŠ°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оснований Šø поГземных ŃŠ¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠ¹'),
(42879, 'https://ror.org/001g9ww12', 'no_lang_code', 1, 'https://ror.org/001g9ww12 NIIGrafit ŠŠ˜Š˜Š³Ń€Š°Ń„ŠøŃ‚'),
(42880, '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'),
(42881, 'https://ror.org/01t6wa381', 'en', 1, 'https://ror.org/01t6wa381 State Research Institute of Organic Chemistry and Technology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Ā«Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органической химии Šø технологии»'),
(42882, 'https://ror.org/016myq798', 'en', 1, 'https://ror.org/016myq798 American Committee for the Weizmann Institute of Science'),
(42883, 'https://ror.org/059q0y753', 'no_lang_code', 1, 'https://ror.org/059q0y753 Beijing Seismological Bureau åŒ—äŗ¬åø‚åœ°éœ‡å±€'),
(42884, 'https://ror.org/05yk66715', 'en', 1, 'https://ror.org/05yk66715 World Phenomenology Institute'),
(42885, 'https://ror.org/005j0cx32', 'de', 1, 'https://ror.org/005j0cx32 Augenklinik Heidelberg'),
(42886, 'https://ror.org/00f6d9d53', 'en', 1, 'https://ror.org/00f6d9d53 House of Representatives Tweede Kamer der Staten-Generaal'),
(42887, 'https://ror.org/01en4s460', 'en', 1, 'https://ror.org/01en4s460 Twin Cities Orthopedics'),
(42888, 'https://ror.org/02js38076', 'de', 1, 'https://ror.org/02js38076 Frauenklinik Heidelberg'),
(42889, 'https://ror.org/023m9rp24', 'de', 1, 'https://ror.org/023m9rp24 Hautklinik Heidelberg'),
(42890, 'https://ror.org/0246zee65', 'de', 1, 'https://ror.org/0246zee65 Hals- Nasen- und Ohrenklinik Gießen'),
(42891, 'https://ror.org/0573nm953', 'en', 1, 'https://ror.org/0573nm953 Ukrainian Research Institute of Refractories named after A.S. Berezhnoy Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вогнетривів'),
(42892, 'https://ror.org/037tkh273', 'de', 1, 'https://ror.org/037tkh273 Universitätsklinik für Hals-, Nasen- und Ohrenheilkunde'),
(42893, 'https://ror.org/04qfsp079', 'en', 1, 'https://ror.org/04qfsp079 Universal Management Services'),
(42894, 'https://ror.org/0342jc255', 'en', 1, 'https://ror.org/0342jc255 Volgograd Institute of Business ВолгограГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(42895, 'https://ror.org/03941w909', 'de', 1, 'https://ror.org/03941w909 Zentrum für Kinderheilkunde'),
(42896, 'https://ror.org/009nhnc47', 'de', 1, 'https://ror.org/009nhnc47 Klinik und Poliklinik für Hals-, Nasen-, Ohrenheilkunde'),
(42897, 'https://ror.org/03vc23h03', 'no_lang_code', 1, 'https://ror.org/03vc23h03 Wireilla Scientific Publications (Australia)'),
(42898, 'https://ror.org/00zfe1b87', 'de', 1, 'https://ror.org/00zfe1b87 Zentralklinik Bad Berka'),
(42899, 'https://ror.org/01wcyhn95', 'en', 1, 'https://ror.org/01wcyhn95 NRAD Medical Associates'),
(42900, 'https://ror.org/03v7d3233', 'de', 1, 'https://ror.org/03v7d3233 Tumor- und Brustzentrum ZeTuP Silberturm'),
(42901, 'https://ror.org/038dfxb83', 'en', 1, 'https://ror.org/038dfxb83 Traditional Chinese Medicine Hospital of Kunshan'),
(42902, 'https://ror.org/005b4rt94', 'en', 1, 'https://ror.org/005b4rt94 Jung Tao School of Classical Chinese Medicine'),
(42903, 'https://ror.org/022598c22', 'en', 1, 'https://ror.org/022598c22 University of Maryland University College Europe'),
(42904, 'https://ror.org/01m5tj961', 'en', 1, 'https://ror.org/01m5tj961 Villa Maria College'),
(42905, 'https://ror.org/02m5vr132', 'en', 1, 'https://ror.org/02m5vr132 Philips College'),
(42906, 'https://ror.org/01fbc7819', 'fr', 1, 'https://ror.org/01fbc7819 Centre Hospitalier de Lens'),
(42907, 'https://ror.org/03e8zd719', 'en', 1, 'https://ror.org/03e8zd719 Sh''or Yoshuv Institute'),
(42908, 'https://ror.org/02j1xaz06', 'en', 1, 'https://ror.org/02j1xaz06 Hospital Agioi Anargyroi'),
(42909, 'https://ror.org/04yrcjm56', 'en', 1, 'https://ror.org/04yrcjm56 Second Affiliated Hospital of Xuzhou Medical College å¾å·žåŒ»å­¦é™¢ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(42910, 'https://ror.org/04d951341', 'en', 1, 'https://ror.org/04d951341 International Cosmetology College Starptautiskā Kosmetoloģijas koledža'),
(42911, 'https://ror.org/045mf8339', 'en', 1, 'https://ror.org/045mf8339 Southwestern Christian College'),
(42912, 'https://ror.org/01m06ya33', 'en', 1, 'https://ror.org/01m06ya33 Shanxi Province Hospital of Traditional Chinese Medicine'),
(42913, 'https://ror.org/010z8j306', 'en', 1, 'https://ror.org/010z8j306 Daqing City People''s Hospital'),
(42914, 'https://ror.org/055t9t204', 'et', 1, 'https://ror.org/055t9t204 Informaatika ja Arvutustehnika Instituut Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информатики Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники'),
(42915, 'https://ror.org/052ay7p78', 'en', 1, 'https://ror.org/052ay7p78 Bệnh viện Phổi HĆ Nį»™i Hanoi Lung Hospital'),
(42916, 'https://ror.org/02sx09p05', 'en', 1, 'https://ror.org/02sx09p05 Hegang People''s Hospital é¹¤å²—åø‚äŗŗę°‘åŒ»é™¢'),
(42917, 'https://ror.org/01fy36683', 'no', 1, 'https://ror.org/01fy36683 Revmatismesykehuset'),
(42918, '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'),
(42919, 'https://ror.org/007r42p71', 'en', 1, 'https://ror.org/007r42p71 Rabindranath Tagore Medical College'),
(42920, 'https://ror.org/03tkypj50', 'en', 1, 'https://ror.org/03tkypj50 Gyeongsan Science High School 경산과학고등학교'),
(42921, 'https://ror.org/01tkb3y54', 'en', 1, 'https://ror.org/01tkb3y54 GISMA Business School'),
(42922, 'https://ror.org/00g6dr962', 'lt', 1, 'https://ror.org/00g6dr962 Klaipėdos Verslo AukÅ”toji Mokykla'),
(42923, 'https://ror.org/005mjtj84', 'pl', 1, 'https://ror.org/005mjtj84 Niepubliczna Wyższa Szkoła Medyczna'),
(42924, 'https://ror.org/00y1a8425', 'en', 1, 'https://ror.org/00y1a8425 Zhukovsky Air Force Engineering Academy Военно-Š²Š¾Š·Š“ŃƒŃˆŠ½Š°Ń ŠøŠ½Š¶ŠµŠ½ŠµŃ€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени профессора Š. Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾'),
(42925, 'https://ror.org/02neh0644', 'en', 1, 'https://ror.org/02neh0644 Union School of Theology'),
(42926, 'https://ror.org/0321nq926', 'en', 1, 'https://ror.org/0321nq926 Association of University Centers on Disabilities'),
(42927, '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'),
(42928, 'https://ror.org/03fkb6t85', 'en', 1, 'https://ror.org/03fkb6t85 GrAT - Center for Appropriate Technology Gruppe zur Fƶrderung der Angepasste Technologie'),
(42929, 'https://ror.org/02z1v6961', 'it', 1, 'https://ror.org/02z1v6961 Consorzio per il Centro Interuniversitario di Biologia Marina ed Ecologia Applicata G. Bacci'),
(42930, 'https://ror.org/03x43h020', 'en', 1, 'https://ror.org/03x43h020 Changchun Children''s Hospital é•æę˜„åø‚å„æē«„åŒ»é™¢'),
(42931, 'https://ror.org/03jzx6k15', 'tr', 1, 'https://ror.org/03jzx6k15 Manisa Celal Bayar Üniversitesi Hafsa Sultan Hastanesi'),
(42932, 'https://ror.org/03wm7z656', 'en', 1, 'https://ror.org/03wm7z656 Commission gƩologique du Canada Geological Survey of Canada'),
(42933, 'https://ror.org/04z1myv13', 'es', 1, 'https://ror.org/04z1myv13 Comfenalco Technological University Foundation Fundación Universitaria Tecnológico Comfenalco Cartagena'),
(42934, 'https://ror.org/042662w35', 'es', 1, 'https://ror.org/042662w35 Instituto Nicaragüense de Estudios Territoriales'),
(42935, '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ü'),
(42936, 'https://ror.org/00h8b7583', 'en', 1, 'https://ror.org/00h8b7583 National Tsunami Warning Center'),
(42937, 'https://ror.org/04mjv5x61', 'de', 1, 'https://ror.org/04mjv5x61 Oberlandesgericht Stuttgart'),
(42938, 'https://ror.org/01ze6tn69', 'no_lang_code', 1, 'https://ror.org/01ze6tn69 Maharaj Nakorn Chiang Mai Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø£ąø²ąøŠąø™ąø„ąø£ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(42939, 'https://ror.org/002degh13', 'en', 1, 'https://ror.org/002degh13 Fatih University Medical Faculty Hospital Fatih Üniversitesi Tıp Fakültesi Hastanesi'),
(42940, 'https://ror.org/05s3b4196', 'en', 1, 'https://ror.org/05s3b4196 Hirosaki University Hospital å¼˜å‰å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(42941, 'https://ror.org/038dg9e86', 'en', 1, 'https://ror.org/038dg9e86 Hiroshima University Hospital åŗƒå³¶å¤§å­¦ē—…é™¢'),
(42942, 'https://ror.org/03zkbs573', 'en', 1, 'https://ror.org/03zkbs573 Seismological Society of America'),
(42943, 'https://ror.org/04wyk9691', 'en', 1, 'https://ror.org/04wyk9691 Cascades Volcano Observatory'),
(42944, 'https://ror.org/02czd3h93', 'en', 1, 'https://ror.org/02czd3h93 The Jikei University Hospital ę±äŗ¬ę…ˆęµä¼šåŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(42945, 'https://ror.org/02qhp8q93', 'tr', 1, 'https://ror.org/02qhp8q93 Gazi Hastanesi'),
(42946, 'https://ror.org/00vxbe865', 'en', 1, 'https://ror.org/00vxbe865 Northern Maine Community College'),
(42947, 'https://ror.org/02a7zgk95', 'en', 1, 'https://ror.org/02a7zgk95 Sapporo Medical University Hospital ęœ­å¹ŒåŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(42948, 'https://ror.org/038231w93', 'en', 1, 'https://ror.org/038231w93 Stanground Academy'),
(42949, 'https://ror.org/02bf6bf07', 'en', 1, 'https://ror.org/02bf6bf07 Nippon Dental University Hospital ę—„ęœ¬ę­Æē§‘å¤§å­¦é™„å±žē—…é™¢'),
(42950, 'https://ror.org/01nnwyz44', 'en', 1, 'https://ror.org/01nnwyz44 Shanghai Public Health Clinical Center å…¬å…±å«ē”Ÿäø“åŗŠäø­åæƒ'),
(42951, 'https://ror.org/041q3q398', 'en', 1, 'https://ror.org/041q3q398 Nnamdi Azikiwe University Teaching Hospital'),
(42952, 'https://ror.org/01xmeqq94', 'no_lang_code', 1, 'https://ror.org/01xmeqq94 Kowsar Hospital کوثر ؓیراز'),
(42953, 'https://ror.org/00mre2126', 'en', 1, 'https://ror.org/00mre2126 Toho University Ohashi Medical Center ę±é‚¦å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼å¤§ę©‹ē—…é™¢'),
(42954, 'https://ror.org/02xrm8w90', 'en', 1, 'https://ror.org/02xrm8w90 Toho University Medical Center Sakura Hospital ę±é‚¦å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ä½å€‰ē—…é™¢'),
(42955, 'https://ror.org/05tc61k56', 'en', 1, 'https://ror.org/05tc61k56 Pushchino State Institute of Natural Sciences ŠŸŃƒŃ‰ŠøŠ½ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(42956, 'https://ror.org/059yvz347', 'en', 1, 'https://ror.org/059yvz347 Drammen Hospital Drammen Sykehus'),
(42957, 'https://ror.org/00jjq6q61', 'en', 1, 'https://ror.org/00jjq6q61 Rockefeller University Hospital');
INSERT INTO `rors` VALUES
(42958, 'https://ror.org/03qx6b307', 'en', 1, 'https://ror.org/03qx6b307 Maputo Central Hospital'),
(42959, 'https://ror.org/0263gzc89', 'en', 1, 'https://ror.org/0263gzc89 Hara Eye Hospital åŽŸēœ¼ē§‘ē—…é™¢'),
(42960, 'https://ror.org/05tp4xj78', 'en', 1, 'https://ror.org/05tp4xj78 State Optical Institute named after SI Vavilov Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ оптический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”.И. Вавилова'),
(42961, 'https://ror.org/00z0j0d77', 'en', 1, 'https://ror.org/00z0j0d77 First Affiliated Hospital of Guangzhou Medical University å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(42962, 'https://ror.org/02zrb2v54', 'en', 1, 'https://ror.org/02zrb2v54 University Medical Center New Orleans'),
(42963, 'https://ror.org/00vjxjf30', 'en', 1, 'https://ror.org/00vjxjf30 Kurume University Hospital 久留米大学病院'),
(42964, 'https://ror.org/00srtbf93', 'en', 1, 'https://ror.org/00srtbf93 Kurume University Medical Center ä¹…ē•™ē±³å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(42965, 'https://ror.org/00k4nrj32', 'en', 1, 'https://ror.org/00k4nrj32 Essex County Hospital'),
(42966, 'https://ror.org/00teeat87', 'pt', 1, 'https://ror.org/00teeat87 Hospital de Magalhães Lemos'),
(42967, 'https://ror.org/022dg8423', 'no_lang_code', 1, 'https://ror.org/022dg8423 Danone (Morocco)'),
(42968, 'https://ror.org/02sqxcg48', 'en', 1, 'https://ror.org/02sqxcg48 Second People’s Hospital of Huai’an ę·®å®‰åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(42969, 'https://ror.org/00505z102', 'no_lang_code', 1, 'https://ror.org/00505z102 Johnson & Johnson (Switzerland)'),
(42970, 'https://ror.org/040aqvh16', 'en', 1, 'https://ror.org/040aqvh16 United Nations University UniversitƤt der Vereinten Nationen'),
(42971, 'https://ror.org/003zfh275', 'pt', 1, 'https://ror.org/003zfh275 Hospital Padre AmƩrico'),
(42972, 'https://ror.org/04v84qq53', 'tr', 1, 'https://ror.org/04v84qq53 Aydın Adnan Menderes Üniversitesi Uygulama ve Araştırma Hastanesi'),
(42973, 'https://ror.org/034d9x869', 'en', 1, 'https://ror.org/034d9x869 Jintan People''s Hospital é‡‘å›åø‚äŗŗę°‘åŒ»é™¢'),
(42974, 'https://ror.org/03as2w117', 'en', 1, 'https://ror.org/03as2w117 Columbia St. Mary''s Hospital'),
(42975, 'https://ror.org/05exqw945', 'en', 1, 'https://ror.org/05exqw945 Fukuoka City Hospital ē¦å²”åø‚ę°‘ē—…é™¢'),
(42976, 'https://ror.org/00zda5q13', 'no_lang_code', 1, 'https://ror.org/00zda5q13 Misato Junshin General Hospital äø‰éƒ·äø­å¤®ē·åˆē—…é™¢'),
(42977, 'https://ror.org/056c72797', 'en', 1, 'https://ror.org/056c72797 Air Force Institute of Aviation Medicine Affiliated Hospital čˆŖē©ŗåŒ»å­¦ē ”ē©¶ę‰€é™„å±žåŒ»é™¢'),
(42978, 'https://ror.org/049sr1d03', 'en', 1, 'https://ror.org/049sr1d03 Velindre Cancer Centre'),
(42979, 'https://ror.org/02y931541', 'en', 1, 'https://ror.org/02y931541 Semmelweis Museum Semmelweis Orvostörténeti Múzeum'),
(42980, 'https://ror.org/03bm3h723', 'no_lang_code', 1, 'https://ror.org/03bm3h723 Bristol Laboratories (United Kingdom)'),
(42981, 'https://ror.org/003xdw211', 'en', 1, 'https://ror.org/003xdw211 National Yang Ming University Hospital å›½ē«‹é˜³ę˜Žå¤§å­¦é™„č®¾åŒ»é™¢'),
(42982, 'https://ror.org/007b1tt61', 'en', 1, 'https://ror.org/007b1tt61 Murmansk Regional Clinical Hospital ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚ŃŒ Š±Š¾Š»ŃŒŠ½ŠøŃ†Šµ P.A.Bayandina'),
(42983, 'https://ror.org/028ewej26', 'en', 1, 'https://ror.org/028ewej26 Whiteville City Schools'),
(42984, 'https://ror.org/042syqv10', 'en', 1, 'https://ror.org/042syqv10 Dryden Road Clinic'),
(42985, 'https://ror.org/02asepr29', 'en', 1, 'https://ror.org/02asepr29 Priory Hospital Chelmsford'),
(42986, 'https://ror.org/04dmzp333', 'en', 1, 'https://ror.org/04dmzp333 The Duchy Hospital'),
(42987, 'https://ror.org/02xnck737', 'en', 1, 'https://ror.org/02xnck737 Ashurst Hospital'),
(42988, 'https://ror.org/05ppep808', 'en', 1, 'https://ror.org/05ppep808 Avenue Day Hospital'),
(42989, 'https://ror.org/01nbpkh22', 'en', 1, 'https://ror.org/01nbpkh22 Guildford Hospital'),
(42990, 'https://ror.org/0526yv239', 'en', 1, 'https://ror.org/0526yv239 Beeches Hospital'),
(42991, 'https://ror.org/001t6ze16', 'en', 1, 'https://ror.org/001t6ze16 Bickley Day Hospital'),
(42992, 'https://ror.org/029vpma63', 'en', 1, 'https://ror.org/029vpma63 Bronllys Hospital'),
(42993, 'https://ror.org/05ngke848', 'en', 1, 'https://ror.org/05ngke848 Assumption Parish Public Library'),
(42994, 'https://ror.org/0193wvd18', 'en', 1, 'https://ror.org/0193wvd18 Ilkley Coronation Hospital'),
(42995, 'https://ror.org/00x9ph686', 'en', 1, 'https://ror.org/00x9ph686 Jawaharlal Nehru Cancer Hospital and Research Centre'),
(42996, 'https://ror.org/004046r88', 'en', 1, 'https://ror.org/004046r88 Cw Private Hospital'),
(42997, 'https://ror.org/03gpasn37', 'en', 1, 'https://ror.org/03gpasn37 Walkergate Park Hospital'),
(42998, 'https://ror.org/02ctpf853', 'en', 1, 'https://ror.org/02ctpf853 Children''s Hospital of Oklahoma'),
(42999, 'https://ror.org/03xj60w92', 'en', 1, 'https://ror.org/03xj60w92 St Michael’s Hospital'),
(43000, 'https://ror.org/04fctr677', 'en', 1, 'https://ror.org/04fctr677 Phillips University'),
(43001, 'https://ror.org/05khe3282', 'en', 1, 'https://ror.org/05khe3282 Chongqing Dazu District People''s Hospital å¤§č¶³åŒŗäŗŗę°‘åŒ»é™¢'),
(43002, 'https://ror.org/030d7rf51', 'en', 1, 'https://ror.org/030d7rf51 National Specialized Hospital for Active Treatment of Hematologic Diseases ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° специализирана болница за активно лечение на хематологични Š·Š°Š±Š¾Š»ŃŠ²Š°Š½ŠøŃ'),
(43003, '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'),
(43004, 'https://ror.org/02mktny84', 'en', 1, 'https://ror.org/02mktny84 Bayburt Devlet Hastanesi Bayburt State Hospital'),
(43005, 'https://ror.org/0165gz615', 'en', 1, 'https://ror.org/0165gz615 Leibniz Institute for Psychology Leibniz-Institut für Psychologie'),
(43006, 'https://ror.org/04vpecq51', 'en', 1, 'https://ror.org/04vpecq51 Bharti Hospital'),
(43007, 'https://ror.org/01eagw932', 'tr', 1, 'https://ror.org/01eagw932 Ƈamlıca Erdem Hastahanesi'),
(43008, 'https://ror.org/014hy9c40', 'en', 1, 'https://ror.org/014hy9c40 Firoozgar General Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¢Ł…ŁˆŲ²Ų“ŪŒ و ŲÆŲ±Ł…Ų§Ł†ŪŒ فیروزگر'),
(43009, 'https://ror.org/02s8x1148', 'en', 1, 'https://ror.org/02s8x1148 First Hospital of Shijiazhuang ēŸ³å®¶åŗ„åø‚ē¬¬äø€åŒ»é™¢'),
(43010, 'https://ror.org/01cnyad13', 'en', 1, 'https://ror.org/01cnyad13 People''s Liberation Army 401 Hospital 中国人民解放军第401医院'),
(43011, 'https://ror.org/0369xz580', 'no_lang_code', 1, 'https://ror.org/0369xz580 Amfissa General Hospital Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ''Ī‘Ī¼Ļ†Ī¹ĻƒĻƒĪ±Ļ‚'),
(43012, 'https://ror.org/02ec9na09', 'en', 1, 'https://ror.org/02ec9na09 Guang Fu Hospital ęµ™ę±Ÿé‡‘åŽå¹æē¦åŒ»é™¢'),
(43013, 'https://ror.org/0005eqq91', 'en', 1, 'https://ror.org/0005eqq91 Colombo North Teaching Hospital'),
(43014, 'https://ror.org/04bb3h146', 'en', 1, 'https://ror.org/04bb3h146 Changchun 208 Hospital å‰ęž—é•æę˜„208医院'),
(43015, 'https://ror.org/05kgcmp18', 'en', 1, 'https://ror.org/05kgcmp18 Gunma Chuo Hospital 群馬中央病院'),
(43016, 'https://ror.org/05nq3xc14', 'en', 1, 'https://ror.org/05nq3xc14 Fraunhofer USA Center for Manufacturing Innovation'),
(43017, 'https://ror.org/02zvhxb95', 'en', 1, 'https://ror.org/02zvhxb95 Puer University 普擱学院'),
(43018, 'https://ror.org/01m6k8878', 'en', 1, 'https://ror.org/01m6k8878 Queen Elizabeth Hospital King''s Lynn NHS Foundation Trust'),
(43019, 'https://ror.org/04fx38p98', 'en', 1, 'https://ror.org/04fx38p98 Max Planck Research Unit for Neurogenetics Max-Planck-Forschungsstelle für Neurogenetik'),
(43020, 'https://ror.org/0000yrh61', 'en', 1, 'https://ror.org/0000yrh61 Hospital of Hebei Province ę²³åŒ—ēœäø­åŒ»é™¢'),
(43021, 'https://ror.org/0453fgm48', 'no_lang_code', 1, 'https://ror.org/0453fgm48 Kensei Hospital å„ē”Ÿē—…é™¢'),
(43022, 'https://ror.org/01zbsrk34', 'es', 1, 'https://ror.org/01zbsrk34 Hospital General de Tomelloso'),
(43023, 'https://ror.org/00j9tzw69', 'cy', 1, 'https://ror.org/00j9tzw69 Large Vale Hospital Ysbyty Ystrad Fawr'),
(43024, 'https://ror.org/04ppv2c95', 'en', 1, 'https://ror.org/04ppv2c95 Shenzhen Pingle Orthopedic Hospital ę·±åœ³å¹³ä¹éŖØä¼¤ē§‘åŒ»é™¢'),
(43025, 'https://ror.org/05br7cm44', 'en', 1, 'https://ror.org/05br7cm44 Luoyang Orthopedic-Traumatological Hospital of Henan Province ę²³å—ēœę“›é˜³ę­£éŖØåŒ»é™¢'),
(43026, 'https://ror.org/004fan886', 'es', 1, 'https://ror.org/004fan886 Universidad Autónoma Monterrey'),
(43027, 'https://ror.org/00edpzw35', 'fr', 1, 'https://ror.org/00edpzw35 Centre Hospitalo-Universitaire Dr Benbadis Constantine'),
(43028, 'https://ror.org/02vvp3528', 'es', 1, 'https://ror.org/02vvp3528 Universidad de Matamoros'),
(43029, 'https://ror.org/05rdf3493', 'es', 1, 'https://ror.org/05rdf3493 Universidad Abierta y a Distancia'),
(43030, 'https://ror.org/03tavcq25', 'no_lang_code', 1, 'https://ror.org/03tavcq25 Eboo Pharmaceuticals (United States)'),
(43031, 'https://ror.org/016e8pb27', 'no_lang_code', 1, 'https://ror.org/016e8pb27 CisThera (United States)'),
(43032, 'https://ror.org/02q248z41', 'no_lang_code', 1, 'https://ror.org/02q248z41 Advisory Board Company (United States)'),
(43033, 'https://ror.org/0168t8783', 'en', 1, 'https://ror.org/0168t8783 Bent Creek Institute'),
(43034, 'https://ror.org/04wts6j28', 'no_lang_code', 1, 'https://ror.org/04wts6j28 Empire Genomics (United States)'),
(43035, 'https://ror.org/040cv5a57', 'no_lang_code', 1, 'https://ror.org/040cv5a57 Imbio (United States)'),
(43036, 'https://ror.org/02wqahk61', 'no_lang_code', 1, 'https://ror.org/02wqahk61 CivaTech Oncology (United States)'),
(43037, 'https://ror.org/04y72kg92', 'no_lang_code', 1, 'https://ror.org/04y72kg92 BioChain Institute (United States)'),
(43038, 'https://ror.org/00qfejz91', 'no_lang_code', 1, 'https://ror.org/00qfejz91 3D Biomatrix (United States)'),
(43039, 'https://ror.org/051k56n75', 'no_lang_code', 1, 'https://ror.org/051k56n75 CiVentiChem (United States)'),
(43040, 'https://ror.org/049nhvm53', 'no_lang_code', 1, 'https://ror.org/049nhvm53 ImmunoChemistry Technologies (United States)'),
(43041, 'https://ror.org/03q8xbd64', 'no_lang_code', 1, 'https://ror.org/03q8xbd64 EntoGenetics (United States)'),
(43042, 'https://ror.org/00ss2b006', 'no_lang_code', 1, 'https://ror.org/00ss2b006 ClariTrac (United States)'),
(43043, 'https://ror.org/035va9t86', 'no_lang_code', 1, 'https://ror.org/035va9t86 Epiphany Biosciences (United States)'),
(43044, 'https://ror.org/0250cw529', 'no_lang_code', 1, 'https://ror.org/0250cw529 Clearside Biomedical (United States)'),
(43045, 'https://ror.org/03880e418', 'no_lang_code', 1, 'https://ror.org/03880e418 Aadi (United States)'),
(43046, 'https://ror.org/00rm4jt38', 'no_lang_code', 1, 'https://ror.org/00rm4jt38 Clinacuity (United States)'),
(43047, 'https://ror.org/051n1ac86', 'no_lang_code', 1, 'https://ror.org/051n1ac86 BioFortis (United States)'),
(43048, 'https://ror.org/04bkq2x49', 'no_lang_code', 1, 'https://ror.org/04bkq2x49 Clinical Sensors (United States)'),
(43049, 'https://ror.org/00rracm70', 'no_lang_code', 1, 'https://ror.org/00rracm70 BioKier (United States)'),
(43050, 'https://ror.org/04p62ev47', 'no_lang_code', 1, 'https://ror.org/04p62ev47 Eppin Pharma (United States)'),
(43051, 'https://ror.org/01jz2q474', 'no_lang_code', 1, 'https://ror.org/01jz2q474 bioMASON (United States)'),
(43052, 'https://ror.org/05kv9m582', 'no_lang_code', 1, 'https://ror.org/05kv9m582 Exmoor Plastics (United Kingdom)'),
(43053, 'https://ror.org/01z7a2p83', 'no_lang_code', 1, 'https://ror.org/01z7a2p83 Accium Biosciences (United States)'),
(43054, 'https://ror.org/02gzgaq09', 'no_lang_code', 1, 'https://ror.org/02gzgaq09 Extend Biosciences (United States)'),
(43055, 'https://ror.org/001dmcq07', 'no_lang_code', 1, 'https://ror.org/001dmcq07 Achelios Therapeutics (United States)'),
(43056, 'https://ror.org/014pv7733', 'no_lang_code', 1, 'https://ror.org/014pv7733 BioNano Genomics (United States)'),
(43057, 'https://ror.org/055knhp38', 'no_lang_code', 1, 'https://ror.org/055knhp38 Bionix Development (United States)'),
(43058, 'https://ror.org/05w2g7m94', 'no_lang_code', 1, 'https://ror.org/05w2g7m94 Coare Biotechnology (United States)'),
(43059, 'https://ror.org/0135jsc12', 'no_lang_code', 1, 'https://ror.org/0135jsc12 Actinobac Biomed (United States)'),
(43060, 'https://ror.org/059rfxn59', 'no_lang_code', 1, 'https://ror.org/059rfxn59 Colby Pharmaceutical (United States)'),
(43061, 'https://ror.org/00y024m51', 'en', 1, 'https://ror.org/00y024m51 First Flight Venture Center'),
(43062, 'https://ror.org/05t5znx80', 'no_lang_code', 1, 'https://ror.org/05t5znx80 Biosettia (United States)'),
(43063, 'https://ror.org/0117wrn60', 'no_lang_code', 1, 'https://ror.org/0117wrn60 Flag Therapeutics (United States)'),
(43064, 'https://ror.org/05e7vgz71', 'no_lang_code', 1, 'https://ror.org/05e7vgz71 Integrated Technologies & Services International (United States)'),
(43065, 'https://ror.org/022qq1986', 'en', 1, 'https://ror.org/022qq1986 Action on Smoking and Health'),
(43066, 'https://ror.org/036vg8r71', 'en', 1, 'https://ror.org/036vg8r71 Colorado Cancer Research Program'),
(43067, 'https://ror.org/03v1z6488', 'en', 1, 'https://ror.org/03v1z6488 Inter Tribal Council of Arizona'),
(43068, 'https://ror.org/044gxyt48', 'en', 1, 'https://ror.org/044gxyt48 InterAmerican Heart Foundation'),
(43069, 'https://ror.org/02pyz9n41', 'no_lang_code', 1, 'https://ror.org/02pyz9n41 AcuityBio (United States)'),
(43070, 'https://ror.org/05e3dgn19', 'no_lang_code', 1, 'https://ror.org/05e3dgn19 Confluence Life Sciences (United States)'),
(43071, 'https://ror.org/04e0thc04', 'no_lang_code', 1, 'https://ror.org/04e0thc04 BioTheryX (United States)'),
(43072, 'https://ror.org/0210ykj47', 'no_lang_code', 1, 'https://ror.org/0210ykj47 Contego Medical (United States)'),
(43073, 'https://ror.org/05kncqf21', 'no_lang_code', 1, 'https://ror.org/05kncqf21 Adheren (United States)'),
(43074, 'https://ror.org/03n8qgc13', 'hu', 1, 'https://ror.org/03n8qgc13 Bajai Obszervatórium BÔcs-Kiskun Megyei CsillagvizsgÔló Intézet'),
(43075, 'https://ror.org/00yq70636', 'no_lang_code', 1, 'https://ror.org/00yq70636 BioZyme (United States)'),
(43076, 'https://ror.org/05yhf9c86', 'no_lang_code', 1, 'https://ror.org/05yhf9c86 Gabriel Entertainment (United States)'),
(43077, 'https://ror.org/01tp7kw13', 'no_lang_code', 1, 'https://ror.org/01tp7kw13 Advanced Animal Diagnostics (United States)'),
(43078, 'https://ror.org/04nvdwx07', 'no_lang_code', 1, 'https://ror.org/04nvdwx07 Galaxy Diagnostics (United States)'),
(43079, 'https://ror.org/03wny3351', 'no_lang_code', 1, 'https://ror.org/03wny3351 Bluegrass Advanced Materials (United States)'),
(43080, 'https://ror.org/05wfxya04', 'no_lang_code', 1, 'https://ror.org/05wfxya04 Invivo Sciences (United States)'),
(43081, 'https://ror.org/02pj4bp80', 'en', 1, 'https://ror.org/02pj4bp80 Faringdon Day Hospital'),
(43082, 'https://ror.org/01ktvbq32', 'en', 1, 'https://ror.org/01ktvbq32 Cook Children''s Health Care System'),
(43083, 'https://ror.org/029z3va66', 'en', 1, 'https://ror.org/029z3va66 Iowa Oncology Research Association'),
(43084, 'https://ror.org/02prd1m09', 'no_lang_code', 1, 'https://ror.org/02prd1m09 Mi Corporation (United States)'),
(43085, 'https://ror.org/00hz0qn68', 'no_lang_code', 1, 'https://ror.org/00hz0qn68 IsoTherapeutics Group (United States)'),
(43086, 'https://ror.org/05v74eq93', 'en', 1, 'https://ror.org/05v74eq93 Gaston Day School'),
(43087, 'https://ror.org/03qxptw71', 'en', 1, 'https://ror.org/03qxptw71 Cancer Research UK Clinical Trials Unit'),
(43088, 'https://ror.org/03k08vb24', 'en', 1, 'https://ror.org/03k08vb24 Breast Cancer Over Time'),
(43089, 'https://ror.org/01561s686', 'en', 1, 'https://ror.org/01561s686 Creative Research'),
(43090, 'https://ror.org/02ys6e350', 'no_lang_code', 1, 'https://ror.org/02ys6e350 Advanced Immune Therapeutics (United States)'),
(43091, 'https://ror.org/058bdpk86', 'en', 1, 'https://ror.org/058bdpk86 Breastscreen Victoria'),
(43092, 'https://ror.org/01exnz278', 'no_lang_code', 1, 'https://ror.org/01exnz278 GEM Tox Consultants & Labs (United States)'),
(43093, 'https://ror.org/00dsd1564', 'no_lang_code', 1, 'https://ror.org/00dsd1564 Creo Medical (United Kingdom)'),
(43094, 'https://ror.org/00qa0qd14', 'no_lang_code', 1, 'https://ror.org/00qa0qd14 Advanced Radiation Therapy (United States)'),
(43095, 'https://ror.org/00qpgkq73', 'no_lang_code', 1, 'https://ror.org/00qpgkq73 Everist Health (United States)'),
(43096, 'https://ror.org/033xpbd73', 'no_lang_code', 1, 'https://ror.org/033xpbd73 IVDiagnostics (United States)'),
(43097, 'https://ror.org/02x41bc05', 'no_lang_code', 1, 'https://ror.org/02x41bc05 C4 Imaging (United States)'),
(43098, 'https://ror.org/056mhwf75', 'no_lang_code', 1, 'https://ror.org/056mhwf75 Genus Oncology (United States)'),
(43099, 'https://ror.org/03zm7w502', 'no_lang_code', 1, 'https://ror.org/03zm7w502 Concept Life Sciences (United Kingdom)'),
(43100, 'https://ror.org/034gz9s88', 'no_lang_code', 1, 'https://ror.org/034gz9s88 J&J Solutions (United States)'),
(43101, 'https://ror.org/04jm5sq24', 'en', 1, 'https://ror.org/04jm5sq24 Cambridge Memorial Hospital'),
(43102, 'https://ror.org/05hhwah43', 'no_lang_code', 1, 'https://ror.org/05hhwah43 CytImmune (United States)'),
(43103, 'https://ror.org/012ky5f74', 'no_lang_code', 1, 'https://ror.org/012ky5f74 EG Gilero (United States)'),
(43104, 'https://ror.org/022gbr829', 'no_lang_code', 1, 'https://ror.org/022gbr829 Aerial BioPharma'),
(43105, 'https://ror.org/05bw3yd74', 'en', 1, 'https://ror.org/05bw3yd74 Canadian Urology Research Consortium'),
(43106, 'https://ror.org/03ga2w460', 'en', 1, 'https://ror.org/03ga2w460 Cancer Care Nova Scotia'),
(43107, 'https://ror.org/029ha5706', 'no_lang_code', 1, 'https://ror.org/029ha5706 Gravity Bio (United States)'),
(43108, 'https://ror.org/03syafb36', 'no_lang_code', 1, 'https://ror.org/03syafb36 Kaio Therapy (United States)'),
(43109, 'https://ror.org/01qcwgw02', 'en', 1, 'https://ror.org/01qcwgw02 David H. Murdock Research Institute'),
(43110, 'https://ror.org/01sqn6v38', 'en', 1, 'https://ror.org/01sqn6v38 Sault Area Hospital'),
(43111, 'https://ror.org/00y2td026', 'en', 1, 'https://ror.org/00y2td026 Winston-Salem Chamber of Commerce'),
(43112, 'https://ror.org/01f3a0g74', 'en', 1, 'https://ror.org/01f3a0g74 Dayton Clinical Oncology Program'),
(43113, 'https://ror.org/04mc0ma12', 'no_lang_code', 1, 'https://ror.org/04mc0ma12 Almen Laboratories (United States)'),
(43114, 'https://ror.org/028m8dj97', 'no_lang_code', 1, 'https://ror.org/028m8dj97 Kentucky imaging Technologies (United States)'),
(43115, 'https://ror.org/049x12g57', 'no_lang_code', 1, 'https://ror.org/049x12g57 American BioOptics (United States)'),
(43116, 'https://ror.org/000n78v25', 'no_lang_code', 1, 'https://ror.org/000n78v25 KindHeart (United States)'),
(43117, 'https://ror.org/03mza7j54', 'no_lang_code', 1, 'https://ror.org/03mza7j54 Cascade Thermal Solutions (United States)'),
(43118, 'https://ror.org/05xr89294', 'en', 1, 'https://ror.org/05xr89294 American Physician Scientists Association'),
(43119, 'https://ror.org/034rmsp96', 'no_lang_code', 1, 'https://ror.org/034rmsp96 High Precision Devices (United States)'),
(43120, 'https://ror.org/058t5en44', 'en', 1, 'https://ror.org/058t5en44 American Society For Nanomedicine'),
(43121, 'https://ror.org/04p0kmp94', 'no_lang_code', 1, 'https://ror.org/04p0kmp94 Diagnologix (United States)'),
(43122, 'https://ror.org/037bvs115', 'no_lang_code', 1, 'https://ror.org/037bvs115 Celula (United States)'),
(43123, 'https://ror.org/00xes3s90', 'no_lang_code', 1, 'https://ror.org/00xes3s90 Cempra Pharmaceuticals (United States)'),
(43124, 'https://ror.org/04m0rsq98', 'no_lang_code', 1, 'https://ror.org/04m0rsq98 Lexitek (United States)'),
(43125, 'https://ror.org/04jtwax81', 'no_lang_code', 1, 'https://ror.org/04jtwax81 Liquidia Technologies (United States)'),
(43126, 'https://ror.org/04xrvke88', 'no_lang_code', 1, 'https://ror.org/04xrvke88 Optimisa Research (United Kingdom)'),
(43127, 'https://ror.org/04nhss420', 'en', 1, 'https://ror.org/04nhss420 Dr. H. Bliss Murphy Cancer Centre'),
(43128, 'https://ror.org/05ja7s884', 'no_lang_code', 1, 'https://ror.org/05ja7s884 Lucerno Dynamics (United States)'),
(43129, 'https://ror.org/00xvbmj91', 'no_lang_code', 1, 'https://ror.org/00xvbmj91 Fluidigm (Canada)'),
(43130, 'https://ror.org/001p7q739', 'no_lang_code', 1, 'https://ror.org/001p7q739 Apoplogic Pharmaceuticals (United States)'),
(43131, 'https://ror.org/00yxnm167', 'en', 1, 'https://ror.org/00yxnm167 Eastern North American Region International Biometric Society'),
(43132, 'https://ror.org/038a0a037', 'en', 1, 'https://ror.org/038a0a037 Comprehensive Oncological Center – Veliko Turnovo Комплексен онкологичен Ń†ŠµŠ½Ń‚ŃŠŃ€ – Велико Š¢ŃŠŃ€Š½Š¾Š²Š¾'),
(43133, 'https://ror.org/045ay0h26', 'no_lang_code', 1, 'https://ror.org/045ay0h26 LumaMed (United States)'),
(43134, 'https://ror.org/0279hpp97', 'no_lang_code', 1, 'https://ror.org/0279hpp97 Oakwood Laboratories (United States)'),
(43135, 'https://ror.org/00mce9b34', 'en', 1, 'https://ror.org/00mce9b34 National Hospital Organization Kyushu Cancer Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ä¹å·žćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(43136, 'https://ror.org/008ze5r69', 'no_lang_code', 1, 'https://ror.org/008ze5r69 Cernostics (United States)'),
(43137, 'https://ror.org/02ws3jn37', 'en', 1, 'https://ror.org/02ws3jn37 National Lymphedema Network'),
(43138, 'https://ror.org/00eykv937', 'no_lang_code', 1, 'https://ror.org/00eykv937 CertiRx (United States)'),
(43139, 'https://ror.org/04pv7qx83', 'en', 1, 'https://ror.org/04pv7qx83 Battle Creek Public Schools'),
(43140, 'https://ror.org/0089qm711', 'no_lang_code', 1, 'https://ror.org/0089qm711 OCT Medical Imaging (United States)'),
(43141, 'https://ror.org/052dn5m53', 'no_lang_code', 1, 'https://ror.org/052dn5m53 ArcticDx (Canada)'),
(43142, 'https://ror.org/029sfp345', 'en', 1, 'https://ror.org/029sfp345 North Carolina Biosciences Organization'),
(43143, 'https://ror.org/034k5be35', 'en', 1, 'https://ror.org/034k5be35 Provata Health'),
(43144, 'https://ror.org/002dzyh86', 'en', 1, 'https://ror.org/002dzyh86 Marine Bio-Technologies Center of Innovation'),
(43145, 'https://ror.org/00nfw5c37', 'it', 1, 'https://ror.org/00nfw5c37 Istituto Ramazzini'),
(43146, 'https://ror.org/039chvj52', 'no_lang_code', 1, 'https://ror.org/039chvj52 Ardent Sound (United States)'),
(43147, 'https://ror.org/00r4ss513', 'en', 1, 'https://ror.org/00r4ss513 NCEast Alliance'),
(43148, 'https://ror.org/003470t18', 'no_lang_code', 1, 'https://ror.org/003470t18 Ohmx (United States)'),
(43149, 'https://ror.org/00sqyzq66', 'no_lang_code', 1, 'https://ror.org/00sqyzq66 NĒRx BioSciences (United States)'),
(43150, 'https://ror.org/037dejx04', 'no_lang_code', 1, 'https://ror.org/037dejx04 Chiesi (United States)'),
(43151, 'https://ror.org/05qer3y84', 'en', 1, 'https://ror.org/05qer3y84 Research Institute in Oncology and Hematology'),
(43152, 'https://ror.org/01jse7033', 'en', 1, 'https://ror.org/01jse7033 Asbestos Diseases Research Institute'),
(43153, 'https://ror.org/02s6qa536', 'no_lang_code', 1, 'https://ror.org/02s6qa536 Onconome (United States)'),
(43154, 'https://ror.org/00fqwsq79', 'no_lang_code', 1, 'https://ror.org/00fqwsq79 Spectra Science (United States)'),
(43155, 'https://ror.org/01vpcr438', 'en', 1, 'https://ror.org/01vpcr438 Chordoma Foundation'),
(43156, 'https://ror.org/02bf51786', 'no_lang_code', 1, 'https://ror.org/02bf51786 OncoTab (United States)'),
(43157, 'https://ror.org/034batm51', 'en', 1, 'https://ror.org/034batm51 Nevus Outreach'),
(43158, 'https://ror.org/02k46hk39', 'en', 1, 'https://ror.org/02k46hk39 Association of Clinical Research Professionals'),
(43159, 'https://ror.org/05tdqzj08', 'no_lang_code', 1, 'https://ror.org/05tdqzj08 New Horizons Diagnostics (United States)'),
(43160, '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'),
(43161, 'https://ror.org/02y4x8722', 'no_lang_code', 1, 'https://ror.org/02y4x8722 Chrono Therapeutics (United States)'),
(43162, 'https://ror.org/04ptztc75', 'en', 1, 'https://ror.org/04ptztc75 Opinion Leader Research'),
(43163, 'https://ror.org/02c13hn95', 'no_lang_code', 1, 'https://ror.org/02c13hn95 Quanterix (United States)'),
(43164, 'https://ror.org/04ny3af67', 'en', 1, 'https://ror.org/04ny3af67 Central Manchester Clinical Commissioning Group'),
(43165, 'https://ror.org/04avd7t96', 'no_lang_code', 1, 'https://ror.org/04avd7t96 Medgene Labs (United States)'),
(43166, 'https://ror.org/0347t4482', 'en', 1, 'https://ror.org/0347t4482 Avery County Schools'),
(43167, 'https://ror.org/03hc02072', 'no_lang_code', 1, 'https://ror.org/03hc02072 QuantuMDx (United Kingdom)'),
(43168, 'https://ror.org/05kgg0s20', 'en', 1, 'https://ror.org/05kgg0s20 Cancer Research UK Oxford Centre'),
(43169, 'https://ror.org/04f71fj29', 'no_lang_code', 1, 'https://ror.org/04f71fj29 Nirvana Sciences (United States)'),
(43170, 'https://ror.org/034vkhg42', 'no_lang_code', 1, 'https://ror.org/034vkhg42 Nonagen Bioscience (United States)'),
(43171, 'https://ror.org/02necds34', 'no_lang_code', 1, 'https://ror.org/02necds34 Huntsworth Health (United States)'),
(43172, 'https://ror.org/01efw7g62', 'en', 1, 'https://ror.org/01efw7g62 North Carolina Association for Biomedical Research'),
(43173, 'https://ror.org/03myafa32', 'en', 1, 'https://ror.org/03myafa32 Oxford Centre for Diabetes, Endocrinology and Metabolism'),
(43174, 'https://ror.org/05c5a2504', 'no_lang_code', 1, 'https://ror.org/05c5a2504 Radar (United States)'),
(43175, 'https://ror.org/02qr6qm80', 'en', 1, 'https://ror.org/02qr6qm80 North Carolina Center of Innovation Network'),
(43176, 'https://ror.org/0176acm89', 'en', 1, 'https://ror.org/0176acm89 Cancer Research for the Ozarks'),
(43177, 'https://ror.org/05bpym449', 'no_lang_code', 1, 'https://ror.org/05bpym449 Medical Cyberworlds (United States)'),
(43178, 'https://ror.org/00yp48s31', 'no_lang_code', 1, 'https://ror.org/00yp48s31 ReacTech (United States)'),
(43179, 'https://ror.org/02wec8948', 'no_lang_code', 1, 'https://ror.org/02wec8948 Medical Device Innovations (United Kingdom)'),
(43180, 'https://ror.org/0354d3c43', 'no_lang_code', 1, 'https://ror.org/0354d3c43 Medomics (United States)'),
(43181, 'https://ror.org/023bk1n32', 'no_lang_code', 1, 'https://ror.org/023bk1n32 Research Triangle Environmental Health Collaborative (United States)'),
(43182, 'https://ror.org/01vs14k74', 'no_lang_code', 1, 'https://ror.org/01vs14k74 Banner Life Sciences (United States)'),
(43183, 'https://ror.org/04hw1e986', 'no_lang_code', 1, 'https://ror.org/04hw1e986 BaseTrace (United States)'),
(43184, 'https://ror.org/04n6ytd45', 'en', 1, 'https://ror.org/04n6ytd45 Pharmatech (United States)'),
(43185, 'https://ror.org/05jjd1m66', 'no_lang_code', 1, 'https://ror.org/05jjd1m66 Benson Hill Biosystems (United States)'),
(43186, 'https://ror.org/04409v947', 'no_lang_code', 1, 'https://ror.org/04409v947 RG Biopharma (United States)'),
(43187, 'https://ror.org/00425vc91', 'no_lang_code', 1, 'https://ror.org/00425vc91 Rheomics (United States)'),
(43188, 'https://ror.org/04stsnh03', 'no_lang_code', 1, 'https://ror.org/04stsnh03 Photolitec (United States)'),
(43189, 'https://ror.org/01dwc1797', 'en', 1, 'https://ror.org/01dwc1797 Northern Ireland Hospice'),
(43190, 'https://ror.org/04jfp7737', 'no_lang_code', 1, 'https://ror.org/04jfp7737 Ringful Health (United States)'),
(43191, 'https://ror.org/001mbm465', 'no_lang_code', 1, 'https://ror.org/001mbm465 MicroDysis (United States)'),
(43192, 'https://ror.org/0111gv970', 'no_lang_code', 1, 'https://ror.org/0111gv970 Phusis Therapeutics (United States)'),
(43193, 'https://ror.org/00r1d6p76', 'no_lang_code', 1, 'https://ror.org/00r1d6p76 Physcient (United States)'),
(43194, 'https://ror.org/003ns4430', 'no_lang_code', 1, 'https://ror.org/003ns4430 Rogers Sciences (United States)'),
(43195, 'https://ror.org/02kx36h27', 'no_lang_code', 1, 'https://ror.org/02kx36h27 NovaRx (United States)'),
(43196, 'https://ror.org/04g3bhm14', 'no_lang_code', 1, 'https://ror.org/04g3bhm14 Russell Biotech (United States)'),
(43197, 'https://ror.org/024j7f958', 'en', 1, 'https://ror.org/024j7f958 Southeast Clinical Oncology Research Consortium'),
(43198, 'https://ror.org/04azs9g49', 'en', 1, 'https://ror.org/04azs9g49 Loyola Medicine'),
(43199, 'https://ror.org/04mag9a17', 'no_lang_code', 1, 'https://ror.org/04mag9a17 SafeRay Spine (United States)'),
(43200, 'https://ror.org/04kq9kz72', 'no_lang_code', 1, 'https://ror.org/04kq9kz72 Cellectar Biosciences (United States)'),
(43201, 'https://ror.org/009dch554', 'en', 1, 'https://ror.org/009dch554 Missouri Valley Cancer Consortium'),
(43202, 'https://ror.org/018z5vy82', 'no_lang_code', 1, 'https://ror.org/018z5vy82 Sage Science (United States)'),
(43203, 'https://ror.org/00n1w2a60', 'no_lang_code', 1, 'https://ror.org/00n1w2a60 Novocor Medical Systems (United States)'),
(43204, 'https://ror.org/00fwkdt40', 'no_lang_code', 1, 'https://ror.org/00fwkdt40 Specific Technologies (United States)'),
(43205, 'https://ror.org/01fq4h057', 'no_lang_code', 1, 'https://ror.org/01fq4h057 NuVue Therapeutics (United States)'),
(43206, 'https://ror.org/001z5b761', 'en', 1, 'https://ror.org/001z5b761 Pitt County Development Commission'),
(43207, 'https://ror.org/045s0p143', 'no_lang_code', 1, 'https://ror.org/045s0p143 Salgomed (United States)'),
(43208, 'https://ror.org/03a10hv23', 'no_lang_code', 1, 'https://ror.org/03a10hv23 Nvigen (United States)'),
(43209, 'https://ror.org/03j2b0f13', 'no_lang_code', 1, 'https://ror.org/03j2b0f13 SphingoGene (United States)'),
(43210, 'https://ror.org/00kqvg908', 'en', 1, 'https://ror.org/00kqvg908 Rowan Works Economic Development'),
(43211, 'https://ror.org/04tatke33', 'no_lang_code', 1, 'https://ror.org/04tatke33 Spyryx Biosciences (United States)'),
(43212, 'https://ror.org/03t5zv452', 'no_lang_code', 1, 'https://ror.org/03t5zv452 Presage Biosciences (United States)'),
(43213, 'https://ror.org/00q06r288', 'no_lang_code', 1, 'https://ror.org/00q06r288 Privacy Analytics (Canada)'),
(43214, 'https://ror.org/00541hg31', 'en', 1, 'https://ror.org/00541hg31 San Francisco Fire Department'),
(43215, 'https://ror.org/00atp6h41', 'no_lang_code', 1, 'https://ror.org/00atp6h41 Standard Imaging (United States)'),
(43216, 'https://ror.org/05q90cj61', 'en', 1, 'https://ror.org/05q90cj61 Health PEI'),
(43217, 'https://ror.org/054h41036', 'en', 1, 'https://ror.org/054h41036 Santa Rosa Memorial Hospital'),
(43218, 'https://ror.org/00zt1nh73', 'no_lang_code', 1, 'https://ror.org/00zt1nh73 ProKyma Technologies (United Kingdom)'),
(43219, 'https://ror.org/057m2mx12', 'no_lang_code', 1, 'https://ror.org/057m2mx12 Protec Laboratories (United States)'),
(43220, 'https://ror.org/012yjj245', 'no_lang_code', 1, 'https://ror.org/012yjj245 CritiTech (United States)'),
(43221, 'https://ror.org/04tw81938', 'no_lang_code', 1, 'https://ror.org/04tw81938 Transtria (United States)'),
(43222, 'https://ror.org/042mxcp03', 'no_lang_code', 1, 'https://ror.org/042mxcp03 Quadriga Biosciences (United States)'),
(43223, 'https://ror.org/02d3zqf38', 'en', 1, 'https://ror.org/02d3zqf38 Montana Cancer Consortium'),
(43224, 'https://ror.org/04s8pbj86', 'no_lang_code', 1, 'https://ror.org/04s8pbj86 SciKon Innovation (United States)'),
(43225, 'https://ror.org/027ge9s66', 'no_lang_code', 1, 'https://ror.org/027ge9s66 Shure Foods (United States)'),
(43226, 'https://ror.org/03g7x9g28', 'no_lang_code', 1, 'https://ror.org/03g7x9g28 Signosis (United States)'),
(43227, 'https://ror.org/00r6j0178', 'no_lang_code', 1, 'https://ror.org/00r6j0178 SilaGene (United States)'),
(43228, 'https://ror.org/04x12dp53', 'no_lang_code', 1, 'https://ror.org/04x12dp53 Motility (United States)'),
(43229, 'https://ror.org/05tmzdb63', 'no_lang_code', 1, 'https://ror.org/05tmzdb63 T3D Therapeutics (United States)'),
(43230, 'https://ror.org/05bs9ys68', 'no_lang_code', 1, 'https://ror.org/05bs9ys68 SimulTel (United States)'),
(43231, 'https://ror.org/052h22p40', 'en', 1, 'https://ror.org/052h22p40 Singing River Health System'),
(43232, 'https://ror.org/00db1z327', 'no_lang_code', 1, 'https://ror.org/00db1z327 SixOne Solutions (United States)'),
(43233, 'https://ror.org/02401yq31', 'no_lang_code', 1, 'https://ror.org/02401yq31 Tartis (United States)'),
(43234, 'https://ror.org/04k296d46', 'en', 1, 'https://ror.org/04k296d46 Vancouver Native Health Society'),
(43235, 'https://ror.org/02bjgf441', 'no_lang_code', 1, 'https://ror.org/02bjgf441 Aratana Therapeutics (United States)'),
(43236, 'https://ror.org/018m4ac75', 'en', 1, 'https://ror.org/018m4ac75 Technology Partnership of Nagoya University'),
(43237, 'https://ror.org/05scqcm44', 'no_lang_code', 1, 'https://ror.org/05scqcm44 Solers (United States)'),
(43238, 'https://ror.org/007eeyb09', 'no_lang_code', 1, 'https://ror.org/007eeyb09 MRI Robotics (United States)'),
(43239, 'https://ror.org/02ft82f02', 'tr', 1, 'https://ror.org/02ft82f02 Korgan Devlet Hastanesi'),
(43240, 'https://ror.org/00x8gws85', 'no_lang_code', 1, 'https://ror.org/00x8gws85 BioTelemetry (United States)'),
(43241, 'https://ror.org/05ewch819', 'no_lang_code', 1, 'https://ror.org/05ewch819 XLV Diagnostics (Canada)'),
(43242, 'https://ror.org/02rcxmd71', 'en', 1, 'https://ror.org/02rcxmd71 Yukon Health and Social Services'),
(43243, 'https://ror.org/01c00xz18', 'no_lang_code', 1, 'https://ror.org/01c00xz18 Visiscience (United States)'),
(43244, 'https://ror.org/00medbt67', 'no_lang_code', 1, 'https://ror.org/00medbt67 Cloud Pharmaceuticals (United States)'),
(43245, 'https://ror.org/02ye03m75', 'en', 1, 'https://ror.org/02ye03m75 Women Of Color Salon'),
(43246, 'https://ror.org/00497ac31', 'no_lang_code', 1, 'https://ror.org/00497ac31 Umlaut Software (United States)'),
(43247, 'https://ror.org/038ey9s70', 'no_lang_code', 1, 'https://ror.org/038ey9s70 Imam Reza Hospital'),
(43248, 'https://ror.org/01y65bn93', 'no_lang_code', 1, 'https://ror.org/01y65bn93 Vital Access (United States)'),
(43249, 'https://ror.org/00m0wef21', 'en', 1, 'https://ror.org/00m0wef21 Woodlawn School'),
(43250, 'https://ror.org/00ke0d331', 'en', 1, 'https://ror.org/00ke0d331 Marie Curie Palliative Care Institute Liverpool'),
(43251, 'https://ror.org/04a3v4a69', 'no_lang_code', 1, 'https://ror.org/04a3v4a69 Multivariate Software (United States)'),
(43252, 'https://ror.org/00w7z4k38', 'no_lang_code', 1, 'https://ror.org/00w7z4k38 Vivonoetics (United States)'),
(43253, 'https://ror.org/0107xy373', 'no_lang_code', 1, 'https://ror.org/0107xy373 Muzzy Lane Software (United States)'),
(43254, 'https://ror.org/05nf5cj96', 'no_lang_code', 1, 'https://ror.org/05nf5cj96 Xcision Medical Systems (United States)'),
(43255, 'https://ror.org/038h4pp04', 'no_lang_code', 1, 'https://ror.org/038h4pp04 Thermal Gradient (United States)'),
(43256, 'https://ror.org/053t9n332', 'no_lang_code', 1, 'https://ror.org/053t9n332 Xfibra (United States)'),
(43257, 'https://ror.org/058xxya53', 'no_lang_code', 1, 'https://ror.org/058xxya53 NanoCytomics (United States)'),
(43258, 'https://ror.org/04aj97045', 'en', 1, 'https://ror.org/04aj97045 Watauga County Office of Economic Development'),
(43259, 'https://ror.org/0238v4968', 'no_lang_code', 1, 'https://ror.org/0238v4968 NanoMedica (United States)'),
(43260, 'https://ror.org/03rzr6095', 'no_lang_code', 1, 'https://ror.org/03rzr6095 Oxonica (United States)'),
(43261, 'https://ror.org/05qzegn43', 'no_lang_code', 1, 'https://ror.org/05qzegn43 Wellspring Biosciences (United States)'),
(43262, 'https://ror.org/041zaaf26', 'es', 1, 'https://ror.org/041zaaf26 Universidad Braulio Carrillo'),
(43263, 'https://ror.org/043xksz40', 'en', 1, 'https://ror.org/043xksz40 International Christian University Universidad Cristiana Internacional'),
(43264, 'https://ror.org/01zv98a09', 'en', 1, 'https://ror.org/01zv98a09 Aga Khan University Nairobi'),
(43265, 'https://ror.org/02tztn617', 'no_lang_code', 1, 'https://ror.org/02tztn617 Wilex (Germany)'),
(43266, 'https://ror.org/053gd5s23', 'en', 1, 'https://ror.org/053gd5s23 Willow Breast and Hereditary Cancer Support'),
(43267, 'https://ror.org/051anhc42', 'pl', 1, 'https://ror.org/051anhc42 Samodzielny Publiczny Wojewódzki Szpital Zespolony im. Marii Skłodowskiej – Curie'),
(43268, 'https://ror.org/042ep7486', 'es', 1, 'https://ror.org/042ep7486 Universidad MotolinĆ­a del Pedregal'),
(43269, 'https://ror.org/03r0qzh12', 'fr', 1, 'https://ror.org/03r0qzh12 UniversitƩ Jean Price Mars'),
(43270, 'https://ror.org/023zkew37', 'es', 1, 'https://ror.org/023zkew37 Universidad EspaƱol'),
(43271, 'https://ror.org/04800nb63', 'es', 1, 'https://ror.org/04800nb63 Universidad del PacĆ­fico de Chiapas'),
(43272, 'https://ror.org/02zmaz789', 'es', 1, 'https://ror.org/02zmaz789 Universidad Particular de Iquitos'),
(43273, 'https://ror.org/03c8pv287', 'es', 1, 'https://ror.org/03c8pv287 Centro Cultural Universitario de Ciudad Juarez'),
(43274, 'https://ror.org/04kfb1d31', 'es', 1, 'https://ror.org/04kfb1d31 Universidad Angelópolis'),
(43275, 'https://ror.org/03xbgnq70', 'en', 1, 'https://ror.org/03xbgnq70 Bethany University'),
(43276, 'https://ror.org/03qnbmn78', 'es', 1, 'https://ror.org/03qnbmn78 Centro Universitario de Educación Física'),
(43277, 'https://ror.org/02zdjth29', 'fr', 1, 'https://ror.org/02zdjth29 African University of Technology and Management UniversitƩ Africaine de Technologie et de Management'),
(43278, 'https://ror.org/02t86cp18', 'es', 1, 'https://ror.org/02t86cp18 Universidad Bancaria de MƩxico'),
(43279, 'https://ror.org/01g8tqt55', 'es', 1, 'https://ror.org/01g8tqt55 Universidad del Sol'),
(43280, 'https://ror.org/001pthy87', 'es', 1, 'https://ror.org/001pthy87 Universidad Privada del Estado de Morelos'),
(43281, 'https://ror.org/02dc9q641', 'en', 1, 'https://ror.org/02dc9q641 DMC University Laboratories'),
(43282, 'https://ror.org/04brc3a25', 'id', 1, 'https://ror.org/04brc3a25 Universitas Indonesia Timur'),
(43283, 'https://ror.org/00fp9k450', 'en', 1, 'https://ror.org/00fp9k450 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(43284, 'https://ror.org/00p954r86', 'en', 1, 'https://ror.org/00p954r86 Universite Laique Adventiste de Kigali University of Lay Adventists of Kigali'),
(43285, 'https://ror.org/04dfxm579', 'id', 1, 'https://ror.org/04dfxm579 Universitas Nahdlatul Wathan Mataram'),
(43286, 'https://ror.org/0166b9n36', 'id', 1, 'https://ror.org/0166b9n36 Universitas Amir Hamzah'),
(43287, 'https://ror.org/002nr2s48', 'no_lang_code', 1, 'https://ror.org/002nr2s48 Agile EndoSurgery (United States)'),
(43288, 'https://ror.org/002783g69', 'no_lang_code', 1, 'https://ror.org/002783g69 Cim Systems (United States)'),
(43289, 'https://ror.org/03x212m64', 'no_lang_code', 1, 'https://ror.org/03x212m64 Eles (Slovenia)'),
(43290, 'https://ror.org/01q1dy966', 'no_lang_code', 1, 'https://ror.org/01q1dy966 HeidelbergCement (Germany)'),
(43291, 'https://ror.org/001hybq57', 'no_lang_code', 1, 'https://ror.org/001hybq57 Atlas Scientific (United States)'),
(43292, 'https://ror.org/05y09nm31', 'no_lang_code', 1, 'https://ror.org/05y09nm31 Engineered Coatings (United States)'),
(43293, 'https://ror.org/0085d1p90', 'no_lang_code', 1, 'https://ror.org/0085d1p90 Atmospheric Plasma Solutions (United States)'),
(43294, 'https://ror.org/04wnc5n11', 'no_lang_code', 1, 'https://ror.org/04wnc5n11 Envergex (United States)'),
(43295, 'https://ror.org/00w8byr45', 'no_lang_code', 1, 'https://ror.org/00w8byr45 Integrated Oncology (United States)'),
(43296, 'https://ror.org/05nkabx50', 'no_lang_code', 1, 'https://ror.org/05nkabx50 Advanced Composite Products (United States)'),
(43297, 'https://ror.org/00wvqmj08', 'no_lang_code', 1, 'https://ror.org/00wvqmj08 QT Ultrasound (United States)'),
(43298, 'https://ror.org/021skqj79', 'no_lang_code', 1, 'https://ror.org/021skqj79 EpiCypher (United States)'),
(43299, 'https://ror.org/01fwca479', 'en', 1, 'https://ror.org/01fwca479 Consortium of European Research Libraries'),
(43300, 'https://ror.org/04fhkjd96', 'no_lang_code', 1, 'https://ror.org/04fhkjd96 Arizona Cancer Therapeutics (United States)'),
(43301, 'https://ror.org/01txvbn74', 'en', 1, 'https://ror.org/01txvbn74 European Crowdfunding Network'),
(43302, 'https://ror.org/02ar00159', 'no_lang_code', 1, 'https://ror.org/02ar00159 Myocardial Solutions (United States)'),
(43303, 'https://ror.org/03fm7wh60', 'en', 1, 'https://ror.org/03fm7wh60 Durham Technical Community College'),
(43304, 'https://ror.org/01fjnma13', 'no_lang_code', 1, 'https://ror.org/01fjnma13 Advanced Materials Corporation (United States)'),
(43305, 'https://ror.org/02wbb9367', 'en', 1, 'https://ror.org/02wbb9367 European Regions Research and Innovation Network'),
(43306, 'https://ror.org/011cyyg27', 'no_lang_code', 1, 'https://ror.org/011cyyg27 i2C Solutions (United States)'),
(43307, 'https://ror.org/02tcsd812', 'no_lang_code', 1, 'https://ror.org/02tcsd812 Faradion (United Kingdom)'),
(43308, 'https://ror.org/03ayjfd71', 'en', 1, 'https://ror.org/03ayjfd71 Marie Curie Hospice'),
(43309, 'https://ror.org/05879ed43', 'no_lang_code', 1, 'https://ror.org/05879ed43 Fastman (United States)'),
(43310, 'https://ror.org/049g0jw79', 'no_lang_code', 1, 'https://ror.org/049g0jw79 Agile RF (United States)'),
(43311, 'https://ror.org/0030xrh72', 'no_lang_code', 1, 'https://ror.org/0030xrh72 CryptoExperts (France)'),
(43312, 'https://ror.org/03wqdw813', 'no_lang_code', 1, 'https://ror.org/03wqdw813 Mind Matters Research (United States)'),
(43313, 'https://ror.org/00jqtf796', 'en', 1, 'https://ror.org/00jqtf796 IEEE France section'),
(43314, 'https://ror.org/02pwxft54', 'en', 1, 'https://ror.org/02pwxft54 Mobile Infirmary'),
(43315, 'https://ror.org/00df6sb82', 'no_lang_code', 1, 'https://ror.org/00df6sb82 Catalan Government Railways Ferrocarrils de la Generalitat de Catalunya (Spain)'),
(43316, 'https://ror.org/00y761129', 'no_lang_code', 1, 'https://ror.org/00y761129 Fincons Group (Italy)'),
(43317, 'https://ror.org/03wyfav89', 'no_lang_code', 1, 'https://ror.org/03wyfav89 Datapixel (Spain)'),
(43318, 'https://ror.org/041wrj753', 'no_lang_code', 1, 'https://ror.org/041wrj753 Aero Corporation (United States)'),
(43319, 'https://ror.org/022h9xz52', 'no_lang_code', 1, 'https://ror.org/022h9xz52 Fon (United Kingdom)'),
(43320, 'https://ror.org/05ksj8h20', 'no_lang_code', 1, 'https://ror.org/05ksj8h20 Infraestruturas de Portugal (Portugal)'),
(43321, 'https://ror.org/01t763t34', 'no_lang_code', 1, 'https://ror.org/01t763t34 Brainlike (United States)'),
(43322, 'https://ror.org/05hjgch06', 'no_lang_code', 1, 'https://ror.org/05hjgch06 Synthomics (United States)'),
(43323, 'https://ror.org/04p5eag18', 'no_lang_code', 1, 'https://ror.org/04p5eag18 Brembo (Italy)'),
(43324, 'https://ror.org/015gd1034', 'no_lang_code', 1, 'https://ror.org/015gd1034 Applied Research in Acoustics (United States)'),
(43325, 'https://ror.org/04t69kx04', 'no_lang_code', 1, 'https://ror.org/04t69kx04 Insero E-Mobility (Denmark)'),
(43326, 'https://ror.org/05embt267', 'no_lang_code', 1, 'https://ror.org/05embt267 Archarithms (United States)'),
(43327, 'https://ror.org/05d088255', 'en', 1, 'https://ror.org/05d088255 Fundacion Instituto de Investigacion Innaxis Innaxis Foundation & Research Institute'),
(43328, 'https://ror.org/02wwbem66', 'en', 1, 'https://ror.org/02wwbem66 Aarhus Kommune Aarhus Municipality'),
(43329, 'https://ror.org/04nzat794', 'no_lang_code', 1, 'https://ror.org/04nzat794 Arizona Optical Systems (United States)'),
(43330, 'https://ror.org/00ax8r212', 'no_lang_code', 1, 'https://ror.org/00ax8r212 DfR Solutions (United States)'),
(43331, 'https://ror.org/05ygj1d20', 'no_lang_code', 1, 'https://ror.org/05ygj1d20 Gaertner (United States)'),
(43332, 'https://ror.org/04mnaqe33', 'no_lang_code', 1, 'https://ror.org/04mnaqe33 Arquimea (Spain)'),
(43333, 'https://ror.org/02n2pxk31', 'no_lang_code', 1, 'https://ror.org/02n2pxk31 Aspire Solutions (United States)'),
(43334, 'https://ror.org/049exe397', 'no_lang_code', 1, 'https://ror.org/049exe397 Distributed Infinity (United States)'),
(43335, 'https://ror.org/02gcjrk43', 'en', 1, 'https://ror.org/02gcjrk43 Institute of Clinical Research'),
(43336, 'https://ror.org/03bfwzz10', 'no_lang_code', 1, 'https://ror.org/03bfwzz10 Gavin and Doherty Geosolutions (Ireland)'),
(43337, 'https://ror.org/0514gnk26', 'no_lang_code', 1, 'https://ror.org/0514gnk26 Panacea Solution (United States)'),
(43338, 'https://ror.org/05tj5za17', 'no_lang_code', 1, 'https://ror.org/05tj5za17 General Electric (Switzerland)'),
(43339, 'https://ror.org/053hax662', 'en', 1, 'https://ror.org/053hax662 Padres Contra El CƔncer'),
(43340, 'https://ror.org/05sfq4m04', 'no_lang_code', 1, 'https://ror.org/05sfq4m04 Draxis Environmental Technologies (Greece) Ī”Ī”Ī‘ĪžĪ™Ī£ Ī¤Ī•Ī§ĪĪŸĪ›ĪŸĪ“Ī™Ī•Ī£ Ī Ī•Ī”Ī™Ī’Ī‘Ī›Ī›ĪŸĪĪ¤ĪŸĪ£'),
(43341, 'https://ror.org/01nvq0b44', 'no_lang_code', 1, 'https://ror.org/01nvq0b44 Cemex (Switzerland)'),
(43342, 'https://ror.org/03p1xd909', 'no_lang_code', 1, 'https://ror.org/03p1xd909 ATG Europe (Netherlands)'),
(43343, 'https://ror.org/02ddxrd36', 'no_lang_code', 1, 'https://ror.org/02ddxrd36 e-Therapeutics (United Kingdom)'),
(43344, 'https://ror.org/01hdqf863', 'no_lang_code', 1, 'https://ror.org/01hdqf863 ProTechSure Scientific (United States)'),
(43345, 'https://ror.org/00zs99993', 'no_lang_code', 1, 'https://ror.org/00zs99993 Intelligent Software Solutions (United States)'),
(43346, 'https://ror.org/02hjcc687', 'no_lang_code', 1, 'https://ror.org/02hjcc687 Intelligent Fusion Technology (United States)'),
(43347, 'https://ror.org/01zcxfd31', 'no_lang_code', 1, 'https://ror.org/01zcxfd31 Eden Park Illumination (United States)'),
(43348, 'https://ror.org/05dz1qg23', 'de', 1, 'https://ror.org/05dz1qg23 Internationales Institut für Wald und Holz'),
(43349, 'https://ror.org/00ep5zh10', 'en', 1, 'https://ror.org/00ep5zh10 Edisto Island Historic Preservation Society'),
(43350, 'https://ror.org/0543g9v76', 'en', 1, 'https://ror.org/0543g9v76 Centre for Regional and International STI Studies and Support'),
(43351, 'https://ror.org/023q39239', 'no_lang_code', 1, 'https://ror.org/023q39239 Eijkelkamp SonicSampDrill (Netherlands)'),
(43352, 'https://ror.org/00gve2f24', 'no_lang_code', 1, 'https://ror.org/00gve2f24 Great Lakes Sound and Vibration (United States)'),
(43353, 'https://ror.org/03z6tkz58', 'no_lang_code', 1, 'https://ror.org/03z6tkz58 Element Six (United States)'),
(43354, 'https://ror.org/02zvazz07', 'no_lang_code', 1, 'https://ror.org/02zvazz07 Scio Diamond Technology Corporation (United States)'),
(43355, 'https://ror.org/01y1mwf47', 'no_lang_code', 1, 'https://ror.org/01y1mwf47 Liquifer Systems Group (Austria)'),
(43356, 'https://ror.org/05hpj2e91', 'no_lang_code', 1, 'https://ror.org/05hpj2e91 Moai Technologies (United States)'),
(43357, 'https://ror.org/046ybeq88', 'no_lang_code', 1, 'https://ror.org/046ybeq88 Proprs (United Kingdom)'),
(43358, 'https://ror.org/05338hh70', 'no_lang_code', 1, 'https://ror.org/05338hh70 Prozomix (United Kingdom)'),
(43359, 'https://ror.org/05pjhbt17', 'en', 1, 'https://ror.org/05pjhbt17 Montana Department of Environmental Quality'),
(43360, 'https://ror.org/020eyah39', 'no_lang_code', 1, 'https://ror.org/020eyah39 Przedsiębiorstwo Robót Elewacyjnych (Poland)'),
(43361, 'https://ror.org/05g95ne77', 'no_lang_code', 1, 'https://ror.org/05g95ne77 Kestrel Technology (United States)'),
(43362, 'https://ror.org/05309p384', 'en', 1, 'https://ror.org/05309p384 Montgomery Museum & Lewis Miller Regional Art Center'),
(43363, 'https://ror.org/02cfy3z22', 'de', 1, 'https://ror.org/02cfy3z22 Open Knowledge Foundation Deutschland'),
(43364, 'https://ror.org/0237ckc25', 'no_lang_code', 1, 'https://ror.org/0237ckc25 Kuehne + Nagel (Greece)'),
(43365, 'https://ror.org/04yaf9a96', 'no_lang_code', 1, 'https://ror.org/04yaf9a96 Accenture (Luxembourg)'),
(43366, 'https://ror.org/046qf2m29', 'no_lang_code', 1, 'https://ror.org/046qf2m29 RadiaSoft (United States)'),
(43367, 'https://ror.org/00zy64e53', 'no_lang_code', 1, 'https://ror.org/00zy64e53 Radiation Detection Technologies (United States)'),
(43368, 'https://ror.org/01zsbv887', 'no_lang_code', 1, 'https://ror.org/01zsbv887 Optosignal (United Kingdom)'),
(43369, 'https://ror.org/00ztcbk21', 'it', 1, 'https://ror.org/00ztcbk21 Ospedale S. Matteo degli Infermi Ospedale di Spoleto'),
(43370, 'https://ror.org/0564jxa35', 'no_lang_code', 1, 'https://ror.org/0564jxa35 Ottobock (Austria)'),
(43371, 'https://ror.org/02h2pj634', 'no_lang_code', 1, 'https://ror.org/02h2pj634 Seascape Consultants (United Kingdom)'),
(43372, 'https://ror.org/0279ghc90', 'en', 1, 'https://ror.org/0279ghc90 Pohang SeMyeong Christianity Hospital'),
(43373, 'https://ror.org/026bbbm26', 'en', 1, 'https://ror.org/026bbbm26 Museum of African American History'),
(43374, 'https://ror.org/00vgcn396', 'no_lang_code', 1, 'https://ror.org/00vgcn396 Quorn (United Kingdom)'),
(43375, 'https://ror.org/031da7s82', 'en', 1, 'https://ror.org/031da7s82 Marquette Regional History Center'),
(43376, 'https://ror.org/059g2r627', 'no_lang_code', 1, 'https://ror.org/059g2r627 Mars Space (United Kingdom)'),
(43377, 'https://ror.org/01cxpkg92', 'no_lang_code', 1, 'https://ror.org/01cxpkg92 Percuros (Netherlands)'),
(43378, 'https://ror.org/024acas24', 'en', 1, 'https://ror.org/024acas24 Research in Advanced Medical Informatics and Telematics'),
(43379, 'https://ror.org/05ksc2940', 'en', 1, 'https://ror.org/05ksc2940 Mayor''s Office for Policing and Crime'),
(43380, 'https://ror.org/02z82e935', 'no_lang_code', 1, 'https://ror.org/02z82e935 Media Deals (France)'),
(43381, 'https://ror.org/04mfd9b91', 'id', 1, 'https://ror.org/04mfd9b91 Universitas Teknologi Nusantara'),
(43382, 'https://ror.org/053cvy840', 'no_lang_code', 1, 'https://ror.org/053cvy840 SimPlan (Germany)'),
(43383, 'https://ror.org/002d67284', 'id', 1, 'https://ror.org/002d67284 Universitas Sutomo'),
(43384, 'https://ror.org/03305dv57', 'no_lang_code', 1, 'https://ror.org/03305dv57 Metrarc (United Kingdom)'),
(43385, 'https://ror.org/02yp1e416', 'es', 1, 'https://ror.org/02yp1e416 Hospital General Universitari de Castelló'),
(43386, 'https://ror.org/05td6db49', 'no_lang_code', 1, 'https://ror.org/05td6db49 Smart Component Technologies (United Kingdom)'),
(43387, 'https://ror.org/005mn0111', 'no_lang_code', 1, 'https://ror.org/005mn0111 Sciaky (United States)');
INSERT INTO `rors` VALUES
(43388, 'https://ror.org/01197h425', 'en', 1, 'https://ror.org/01197h425 Police and Crime Commissioner for West Yorkshire'),
(43389, 'https://ror.org/03mvhz334', 'no_lang_code', 1, 'https://ror.org/03mvhz334 SolMateS (Netherlands)'),
(43390, 'https://ror.org/04kw81y04', 'no_lang_code', 1, 'https://ror.org/04kw81y04 Sandia Research (United States)'),
(43391, 'https://ror.org/0412jyn76', 'no_lang_code', 1, 'https://ror.org/0412jyn76 Prodevelop (Spain)'),
(43392, 'https://ror.org/0216x8g43', 'no_lang_code', 1, 'https://ror.org/0216x8g43 TeraSys Technologies (United States)'),
(43393, 'https://ror.org/04xf9hg85', 'no_lang_code', 1, 'https://ror.org/04xf9hg85 Spectral Labs (United States)'),
(43394, 'https://ror.org/01zfcnf37', 'no_lang_code', 1, 'https://ror.org/01zfcnf37 N.Bazigos (Greece)'),
(43395, 'https://ror.org/0018f1k63', 'no_lang_code', 1, 'https://ror.org/0018f1k63 Texas High Energy Materials (United States)'),
(43396, 'https://ror.org/04p1gbs34', 'no_lang_code', 1, 'https://ror.org/04p1gbs34 Sydor Technologies (United States)'),
(43397, 'https://ror.org/01xqtc407', 'no_lang_code', 1, 'https://ror.org/01xqtc407 Nanocomp Technologies (United States)'),
(43398, 'https://ror.org/05gxk4854', 'no_lang_code', 1, 'https://ror.org/05gxk4854 nanoPrecision Products (United States)'),
(43399, 'https://ror.org/01n2j8127', 'en', 1, 'https://ror.org/01n2j8127 United Nations Institute for Training and Research'),
(43400, 'https://ror.org/01qqwja70', 'en', 1, 'https://ror.org/01qqwja70 Netherlands Maritime Technology'),
(43401, 'https://ror.org/0120w9t22', 'no_lang_code', 1, 'https://ror.org/0120w9t22 NanoSynTex (United States)'),
(43402, 'https://ror.org/05sgy1v64', 'en', 1, 'https://ror.org/05sgy1v64 Brussels Office of Helmholtz Association'),
(43403, 'https://ror.org/02hcnd264', 'no_lang_code', 1, 'https://ror.org/02hcnd264 Irida Labs (Greece)'),
(43404, 'https://ror.org/00yj1g869', 'no_lang_code', 1, 'https://ror.org/00yj1g869 Subsurface Insights (United States)'),
(43405, 'https://ror.org/01d186671', 'no_lang_code', 1, 'https://ror.org/01d186671 Tecnic (Italy)'),
(43406, 'https://ror.org/00nz8kv36', 'en', 1, 'https://ror.org/00nz8kv36 Black Archives of Mid-America'),
(43407, 'https://ror.org/01yh1st73', 'no_lang_code', 1, 'https://ror.org/01yh1st73 Unparallel Innovation (Portugal)'),
(43408, 'https://ror.org/05tx5hy52', 'no_lang_code', 1, 'https://ror.org/05tx5hy52 Tech4Imaging (United States)'),
(43409, 'https://ror.org/05nw0ka87', 'en', 1, 'https://ror.org/05nw0ka87 Vienna Centre for Societal Security Wiener Zentrum für sozialwissenschaftliche Sicherheitsforschung'),
(43410, 'https://ror.org/00b8kmt09', 'no_lang_code', 1, 'https://ror.org/00b8kmt09 Virtual Power Solutions (Portugal)'),
(43411, 'https://ror.org/02fkr9p25', 'no_lang_code', 1, 'https://ror.org/02fkr9p25 WFS Technologies (United Kingdom)'),
(43412, 'https://ror.org/00cz1kp86', 'en', 1, 'https://ror.org/00cz1kp86 Vishwamitra Research Institute'),
(43413, 'https://ror.org/00n0yrk65', 'no_lang_code', 1, 'https://ror.org/00n0yrk65 WHYY (United States)'),
(43414, 'https://ror.org/04xcafs23', 'en', 1, 'https://ror.org/04xcafs23 Wichita-Sedgwick County Historical Museum'),
(43415, 'https://ror.org/05sz2wg38', 'no_lang_code', 1, 'https://ror.org/05sz2wg38 Technical Solutions (United States)'),
(43416, 'https://ror.org/05629zc23', 'no_lang_code', 1, 'https://ror.org/05629zc23 Xdot Engineering and Analysis (United States)'),
(43417, 'https://ror.org/04sg72471', 'en', 1, 'https://ror.org/04sg72471 University of Battambang'),
(43418, 'https://ror.org/00t7s3z39', 'en', 1, 'https://ror.org/00t7s3z39 Chea Sim University of Kamchaymear'),
(43419, 'https://ror.org/00yydfg09', 'id', 1, 'https://ror.org/00yydfg09 Universitas Pekalongan'),
(43420, 'https://ror.org/02e1g6m79', 'id', 1, 'https://ror.org/02e1g6m79 Universitas Panca Marga'),
(43421, 'https://ror.org/038fg0e88', 'es', 1, 'https://ror.org/038fg0e88 Centro Universitario Didaskalos'),
(43422, 'https://ror.org/039t7kh95', 'id', 1, 'https://ror.org/039t7kh95 Universitas Victory Sorong'),
(43423, 'https://ror.org/01pqwjq49', 'id', 1, 'https://ror.org/01pqwjq49 Universitas Merdeka Surabaya'),
(43424, 'https://ror.org/001mzze07', 'id', 1, 'https://ror.org/001mzze07 Universitas Tabanan'),
(43425, 'https://ror.org/046s04e65', 'en', 1, 'https://ror.org/046s04e65 National University الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(43426, 'https://ror.org/02t6k0v08', 'en', 1, 'https://ror.org/02t6k0v08 Katanga Methodist University UniversitƩ MƩthodiste au Katanga'),
(43427, 'https://ror.org/025eq1v74', 'id', 1, 'https://ror.org/025eq1v74 Universitas Gajah Putih'),
(43428, 'https://ror.org/036n40n43', 'en', 1, 'https://ror.org/036n40n43 American Society of Naval Engineers'),
(43429, 'https://ror.org/02wh2qn63', 'en', 1, 'https://ror.org/02wh2qn63 Association of Clinical Pathologists'),
(43430, 'https://ror.org/04s0zae50', 'en', 1, 'https://ror.org/04s0zae50 American Association of Critical-Care Nurses'),
(43431, 'https://ror.org/03c39qe40', 'en', 1, 'https://ror.org/03c39qe40 Canadian Astronomical Society SociĆ©tĆ© Canadienne d’Astronomie'),
(43432, 'https://ror.org/03gzy4429', 'en', 1, 'https://ror.org/03gzy4429 British Society of Periodontology'),
(43433, 'https://ror.org/03q0a5512', 'en', 1, 'https://ror.org/03q0a5512 Association du Barreau Canadien Canadian Bar Association'),
(43434, 'https://ror.org/008124755', 'en', 1, 'https://ror.org/008124755 British Toxicology Society'),
(43435, 'https://ror.org/02nkqdh98', 'en', 1, 'https://ror.org/02nkqdh98 RP Fighting Blindness'),
(43436, 'https://ror.org/04vxve916', 'en', 1, 'https://ror.org/04vxve916 British Society for Oral and Dental Research'),
(43437, 'https://ror.org/0306fdh09', 'en', 1, 'https://ror.org/0306fdh09 Tuberous Sclerosis Association'),
(43438, 'https://ror.org/05qjkt447', 'en', 1, 'https://ror.org/05qjkt447 Economic History Society'),
(43439, 'https://ror.org/04yw9eb05', 'en', 1, 'https://ror.org/04yw9eb05 British Society for Antimicrobial Chemotherapy'),
(43440, 'https://ror.org/02ybwq307', 'en', 1, 'https://ror.org/02ybwq307 British Association for Japanese Studies'),
(43441, 'https://ror.org/00m5fcs37', 'en', 1, 'https://ror.org/00m5fcs37 Humane Slaughter Association'),
(43442, 'https://ror.org/001hpw566', 'pt', 1, 'https://ror.org/001hpw566 Sociedade Brasileira de Ortopedia e Traumatologia'),
(43443, 'https://ror.org/042p4aa24', 'en', 1, 'https://ror.org/042p4aa24 Chartered Institute of Library and Information Professionals'),
(43444, 'https://ror.org/01dfmhm16', 'en', 1, 'https://ror.org/01dfmhm16 British Blood Transfusion Society'),
(43445, 'https://ror.org/05e7jqk20', 'en', 1, 'https://ror.org/05e7jqk20 Institute of Materials, Minerals and Mining'),
(43446, 'https://ror.org/00qyaft09', 'en', 1, 'https://ror.org/00qyaft09 Healthcare Infection Society'),
(43447, 'https://ror.org/04c5amq59', 'en', 1, 'https://ror.org/04c5amq59 Association of Surgeons of Great Britain and Ireland'),
(43448, 'https://ror.org/005891v66', 'en', 1, 'https://ror.org/005891v66 Cardiac Society of Australia and New Zealand'),
(43449, 'https://ror.org/058sh5428', 'en', 1, 'https://ror.org/058sh5428 BCS — The Chartered Institute for IT'),
(43450, 'https://ror.org/00147ek89', 'en', 1, 'https://ror.org/00147ek89 Australian Orthopaedic Association'),
(43451, 'https://ror.org/041jyes35', 'en', 1, 'https://ror.org/041jyes35 Obstetric Anaesthetists'' Association'),
(43452, 'https://ror.org/00b5zg596', 'en', 1, 'https://ror.org/00b5zg596 British Educational Research Association'),
(43453, 'https://ror.org/02e4cg183', 'en', 1, 'https://ror.org/02e4cg183 Chest Heart and Stroke Scotland'),
(43454, 'https://ror.org/020tbzb21', 'en', 1, 'https://ror.org/020tbzb21 Egyptian College of Critical Care Physicians'),
(43455, 'https://ror.org/03f0m8k49', 'en', 1, 'https://ror.org/03f0m8k49 British Association for Cancer Research'),
(43456, 'https://ror.org/0128ps453', 'en', 1, 'https://ror.org/0128ps453 Egyptian German Society of Zoology'),
(43457, 'https://ror.org/04n9gs185', 'en', 1, 'https://ror.org/04n9gs185 Royal Australian Chemical Institute'),
(43458, 'https://ror.org/03bexps94', 'es', 1, 'https://ror.org/03bexps94 Universidad Pedagógica de Durango'),
(43459, 'https://ror.org/05s8mns17', 'en', 1, 'https://ror.org/05s8mns17 Association for Clinical Biochemistry and Laboratory Medicine'),
(43460, 'https://ror.org/00xqj7528', 'en', 1, 'https://ror.org/00xqj7528 British Nuclear Medicine Society'),
(43461, 'https://ror.org/02f0r3n63', 'de', 1, 'https://ror.org/02f0r3n63 BUND Naturschutz'),
(43462, 'https://ror.org/03awvgn34', 'en', 1, 'https://ror.org/03awvgn34 Society for Endocrinology, Metabolism and Diabetes of South Africa'),
(43463, 'https://ror.org/0307qjf39', 'en', 1, 'https://ror.org/0307qjf39 Egyptian Society of Radiology and Nuclear Medicine'),
(43464, 'https://ror.org/030ewbq61', 'en', 1, 'https://ror.org/030ewbq61 Prehistoric Society'),
(43465, 'https://ror.org/04srze519', 'en', 1, 'https://ror.org/04srze519 Mitutoyo Association for Science and Technology å…¬ē›Šč²”å›£ę³•äŗŗ äø‰č±Šē§‘å­¦ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(43466, 'https://ror.org/014n3px33', 'en', 1, 'https://ror.org/014n3px33 South African Association of Women Graduates'),
(43467, 'https://ror.org/03wkeky45', 'en', 1, 'https://ror.org/03wkeky45 Australian Society of Anaesthetists'),
(43468, 'https://ror.org/036rr6h87', 'en', 1, 'https://ror.org/036rr6h87 Saudi Chemical Society Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„ŁƒŁŠŁ…ŁŠŲ§Ų¦ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ©'),
(43469, 'https://ror.org/01nwqqg09', 'en', 1, 'https://ror.org/01nwqqg09 Egyptian Society of Chest Diseases and Tuberculosis'),
(43470, 'https://ror.org/02xxmjs88', 'en', 1, 'https://ror.org/02xxmjs88 British Association for Slavonic and East European Studies'),
(43471, 'https://ror.org/00b5k3781', 'en', 1, 'https://ror.org/00b5k3781 Southern Africa Association for the Advancement of Science'),
(43472, 'https://ror.org/05wvdt748', 'en', 1, 'https://ror.org/05wvdt748 Association of universities in the Netherlands Vereniging van Samenwerkende Nederlandse Universiteiten'),
(43473, 'https://ror.org/0248jkv14', 'en', 1, 'https://ror.org/0248jkv14 British Psychological Society'),
(43474, 'https://ror.org/04y8cm806', 'en', 1, 'https://ror.org/04y8cm806 Japanese Circulation Society ę—„ęœ¬å¾Ŗē’°å™Øå­¦ä¼š'),
(43475, 'https://ror.org/00jcwff27', 'en', 1, 'https://ror.org/00jcwff27 Society for Experimental Biology'),
(43476, 'https://ror.org/00z4gpq27', 'en', 1, 'https://ror.org/00z4gpq27 Association Canadienne de Chirurgie Thoracique Canadian Association of Thoracic Surgeons'),
(43477, 'https://ror.org/03a4te222', 'en', 1, 'https://ror.org/03a4te222 British Society for Middle Eastern Studies'),
(43478, 'https://ror.org/05bc46c94', 'en', 1, 'https://ror.org/05bc46c94 New Zealand Educational Administration and Leadership Society'),
(43479, 'https://ror.org/04zj17j36', 'en', 1, 'https://ror.org/04zj17j36 British Society for Plant Pathology'),
(43480, 'https://ror.org/048psdj82', 'en', 1, 'https://ror.org/048psdj82 Accounting and Finance Association of Australia and New Zealand'),
(43481, 'https://ror.org/04epxrt89', 'en', 1, 'https://ror.org/04epxrt89 Japanese Physical Therapy Association ę—„ęœ¬ē†å­¦ē™‚ę³•å£«å”ä¼š'),
(43482, 'https://ror.org/00w5rdf18', 'en', 1, 'https://ror.org/00w5rdf18 Society for the Promotion of Roman Studies'),
(43483, 'https://ror.org/014c6rd81', 'en', 1, 'https://ror.org/014c6rd81 Japanese Society of Nephrology äø€čˆ¬ē¤¾å›£ę³•äŗŗ ę—„ęœ¬č…Žč‡“å­¦ä¼š'),
(43484, 'https://ror.org/05qfkt964', 'de', 1, 'https://ror.org/05qfkt964 Fƶrdergemeinschaft Deutsche Kinderherzzentren'),
(43485, 'https://ror.org/0570s7p64', 'sv', 1, 'https://ror.org/0570s7p64 Gƶteborgs TandlƤkare SƤllskap'),
(43486, 'https://ror.org/05ezak240', 'en', 1, 'https://ror.org/05ezak240 Society for Theatre Research'),
(43487, 'https://ror.org/02ns3pe91', 'en', 1, 'https://ror.org/02ns3pe91 Engineering Advancement Association of Japan čˆ¬č²”å›£ę³•äŗŗć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°å”ä¼š'),
(43488, 'https://ror.org/01skh6n03', 'en', 1, 'https://ror.org/01skh6n03 Sveriges TandlƤkarfƶrbund Swedish Dental Association'),
(43489, 'https://ror.org/02njsf937', 'en', 1, 'https://ror.org/02njsf937 New Zealand Plant Protection Society'),
(43490, 'https://ror.org/02prq1a68', 'en', 1, 'https://ror.org/02prq1a68 Forschungsvereinigung Verbrennungskraftmaschinen Research Association for Combustion Engines'),
(43491, 'https://ror.org/00mv8h305', 'en', 1, 'https://ror.org/00mv8h305 Christian Doppler Forschungsgesellschaft Christian Doppler Research Association'),
(43492, 'https://ror.org/03argrj65', 'en', 1, 'https://ror.org/03argrj65 Royal Dublin Society'),
(43493, 'https://ror.org/02b2fc027', 'en', 1, 'https://ror.org/02b2fc027 World Veterinary Poultry Association'),
(43494, 'https://ror.org/01crbhp32', 'fi', 1, 'https://ror.org/01crbhp32 Lounais-Suomen SyƶpƤyhdistys'),
(43495, 'https://ror.org/05t77d857', 'en', 1, 'https://ror.org/05t77d857 Institute of Biomedical Science'),
(43496, 'https://ror.org/02r9ctp23', 'fr', 1, 'https://ror.org/02r9ctp23 SociĆ©tĆ© FranƧaise d''Exportation des Ressources Ɖducatives'),
(43497, 'https://ror.org/04hm9pd03', 'en', 1, 'https://ror.org/04hm9pd03 Association of Anaesthetists of Great Britain and Ireland'),
(43498, 'https://ror.org/03wjq7x76', 'de', 1, 'https://ror.org/03wjq7x76 Deutsche Ophthalmologische Gesellschaft'),
(43499, 'https://ror.org/02q486a47', 'en', 1, 'https://ror.org/02q486a47 Japanese Association of University Women ćƒ‘ćƒˆćƒŖć‚·ć‚¢äæ”ęæƒē”ŗćƒ†ćƒ©ć‚¹'),
(43500, 'https://ror.org/01mzyze39', 'en', 1, 'https://ror.org/01mzyze39 British HIV Association'),
(43501, 'https://ror.org/05257ys56', 'en', 1, 'https://ror.org/05257ys56 British Transplantation Society'),
(43502, 'https://ror.org/04bda4853', 'en', 1, 'https://ror.org/04bda4853 Wildlife Preservation Society of Australia'),
(43503, 'https://ror.org/02z0zbb37', 'en', 1, 'https://ror.org/02z0zbb37 Australian Rheumatology Association'),
(43504, 'https://ror.org/03z4zm883', 'en', 1, 'https://ror.org/03z4zm883 Speech Pathology Australia'),
(43505, 'https://ror.org/023sa9n23', 'en', 1, 'https://ror.org/023sa9n23 Australian Society for Medical Research'),
(43506, 'https://ror.org/037dn9q43', 'de', 1, 'https://ror.org/037dn9q43 Deutsche Gesellschaft für Urologie'),
(43507, 'https://ror.org/02mmcvz81', 'en', 1, 'https://ror.org/02mmcvz81 Gƶteborg Medical Society Gƶteborgs LƤkaresƤllskap'),
(43508, 'https://ror.org/020r1b091', 'en', 1, 'https://ror.org/020r1b091 Hellenic Cardiological Society Ελληνική ΚαρΓιολογική Εταιρεία'),
(43509, 'https://ror.org/03m4xpg98', 'en', 1, 'https://ror.org/03m4xpg98 Hellenic Society for the Study of Bone Metabolism Ελληνική Εταιρεία ĪœĪµĪ»Ī­Ļ„Ī·Ļ‚ ĪœĪµĻ„Ī±Ī²ĪæĪ»Ī¹ĻƒĪ¼ĪæĻ των ĪŸĻƒĻ„ĻŽĪ½'),
(43510, 'https://ror.org/04wvr3489', 'en', 1, 'https://ror.org/04wvr3489 Australian Federation of University Women – South Australia'),
(43511, 'https://ror.org/03fpgta87', 'en', 1, 'https://ror.org/03fpgta87 Service Science Society of Taiwan å°ē£ęœå‹™ē§‘å­øå­øęœƒ'),
(43512, 'https://ror.org/024jp7r97', 'pt', 1, 'https://ror.org/024jp7r97 Associação Brasileira de Metalurgia, Materiais e Mineração'),
(43513, 'https://ror.org/03gck1m55', 'fr', 1, 'https://ror.org/03gck1m55 SociƩtƩ FranƧaise de Dermatologie et de Pathologie Sexuellement Transmissible'),
(43514, 'https://ror.org/038htga59', 'en', 1, 'https://ror.org/038htga59 Australian Psychological Society'),
(43515, 'https://ror.org/01jatd098', 'fr', 1, 'https://ror.org/01jatd098 SociƩtƩ FranƧaise de MƩdecine Vasculaire'),
(43516, 'https://ror.org/0425vqx89', 'en', 1, 'https://ror.org/0425vqx89 Cumann LĆŗthchleas Gael Gaelic Athletic Association'),
(43517, 'https://ror.org/04r3js259', 'en', 1, 'https://ror.org/04r3js259 Asian Transportation Research Society'),
(43518, 'https://ror.org/038hdcm94', 'en', 1, 'https://ror.org/038hdcm94 Australian Dental Association'),
(43519, 'https://ror.org/02yrvm198', 'pt', 1, 'https://ror.org/02yrvm198 Sociedade Brasileira de Anestesiologia'),
(43520, 'https://ror.org/02y1ra305', 'en', 1, 'https://ror.org/02y1ra305 Association for Progressive Communications'),
(43521, 'https://ror.org/00hw70n10', 'en', 1, 'https://ror.org/00hw70n10 Korea International Trade Association ķ•œźµ­ė¬“ģ—­ķ˜‘ķšŒ'),
(43522, 'https://ror.org/04h7bb169', 'en', 1, 'https://ror.org/04h7bb169 Hong Kong Health Care Association'),
(43523, 'https://ror.org/009mmq515', 'en', 1, 'https://ror.org/009mmq515 Australian Diabetes Society'),
(43524, 'https://ror.org/019662654', 'en', 1, 'https://ror.org/019662654 Chinese Materials Research Society äø­å›½ęę–™ē ”ē©¶å­¦ä¼š'),
(43525, 'https://ror.org/03gffcv79', 'en', 1, 'https://ror.org/03gffcv79 Society of Hong Kong Scholars'),
(43526, 'https://ror.org/00gp9bw49', 'fr', 1, 'https://ror.org/00gp9bw49 Vaincre la Mucoviscidose'),
(43527, 'https://ror.org/03aq6c412', 'en', 1, 'https://ror.org/03aq6c412 Australian Association for Academic Primary Care'),
(43528, 'https://ror.org/00srr1743', 'sv', 1, 'https://ror.org/00srr1743 Stiftelsen Bergteknisk Forskning'),
(43529, 'https://ror.org/051xcjm78', 'en', 1, 'https://ror.org/051xcjm78 Pharmacy Guild of Australia'),
(43530, 'https://ror.org/02ke6ab14', 'en', 1, 'https://ror.org/02ke6ab14 Koninklijke Nederlandse Voetbalbond Royal Dutch Football Association'),
(43531, 'https://ror.org/032dbm087', 'en', 1, 'https://ror.org/032dbm087 Clinical Oncological Society of Australia'),
(43532, 'https://ror.org/00rzr9371', 'es', 1, 'https://ror.org/00rzr9371 Asociación Universitaria Iberoamericana de Postgrado'),
(43533, 'https://ror.org/02pehm937', 'en', 1, 'https://ror.org/02pehm937 Australian Physiotherapy Association'),
(43534, 'https://ror.org/05db98w21', 'en', 1, 'https://ror.org/05db98w21 World Association of Zoos and Aquariums'),
(43535, 'https://ror.org/04sksc249', 'en', 1, 'https://ror.org/04sksc249 Society of Instrument and Control Engineers čØˆęø¬č‡Ŗå‹•åˆ¶å¾”å­¦ä¼š'),
(43536, 'https://ror.org/02dprvv32', 'en', 1, 'https://ror.org/02dprvv32 Association for Canadian Studies in Australia and New Zealand'),
(43537, 'https://ror.org/04fh21g11', 'fr', 1, 'https://ror.org/04fh21g11 Association FranƧaise pour l''Etude du Foie'),
(43538, 'https://ror.org/02bn2qg18', 'sv', 1, 'https://ror.org/02bn2qg18 Svensk Fƶrening fƶr Sƶmnforskning och Sƶmnmedicin'),
(43539, 'https://ror.org/04yppq721', 'en', 1, 'https://ror.org/04yppq721 Australasian Institute of Mining and Metallurgy'),
(43540, 'https://ror.org/01nrq5w30', 'en', 1, 'https://ror.org/01nrq5w30 Saudi Heart Association'),
(43541, 'https://ror.org/03feyjt47', 'en', 1, 'https://ror.org/03feyjt47 Saudi Ophthalmological Society Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© لطب Ų§Ł„Ų¹ŁŠŁˆŁ†'),
(43542, 'https://ror.org/02rhzx356', 'en', 1, 'https://ror.org/02rhzx356 Australasian Sleep Association'),
(43543, 'https://ror.org/05pps5s98', 'en', 1, 'https://ror.org/05pps5s98 Saudi Pharmaceutical Society'),
(43544, 'https://ror.org/054mxgp74', 'fr', 1, 'https://ror.org/054mxgp74 Association pour la recherche sur la SclƩrose LatƩrale Amyotrophique'),
(43545, 'https://ror.org/04a3psa27', 'en', 1, 'https://ror.org/04a3psa27 Saudi Society of Dermatology and Dermatologic Surgery Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© لأمراض وجراحة الجلد'),
(43546, 'https://ror.org/04bstw291', 'en', 1, 'https://ror.org/04bstw291 Austrian Society of Dermatology and Venereology Ɩsterreichischen Gesellschaft für Dermatologie und Venerologie'),
(43547, 'https://ror.org/04rszyv41', 'en', 1, 'https://ror.org/04rszyv41 Australian Library and Information Association'),
(43548, 'https://ror.org/012zhga41', 'en', 1, 'https://ror.org/012zhga41 Shine'),
(43549, 'https://ror.org/05ba5xv93', 'no_lang_code', 1, 'https://ror.org/05ba5xv93 Karachaevo-Cherkessk State University ŠšŠ°Ń€Š°Ń‡Š°ŠµŠ²Š¾-Черкесский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(43550, 'https://ror.org/05dxj6c66', 'no_lang_code', 1, 'https://ror.org/05dxj6c66 Toho Gakuen'),
(43551, 'https://ror.org/02tggea32', 'es', 1, 'https://ror.org/02tggea32 Universidad IndĆ­gena Boliviana Aymara Tupak Katari'),
(43552, 'https://ror.org/04myfn622', 'no_lang_code', 1, 'https://ror.org/04myfn622 Rubicon Labs (United States)'),
(43553, 'https://ror.org/03eq6a532', 'en', 1, 'https://ror.org/03eq6a532 Turkish Society of Nephrology Türk Nefroloji Derneği'),
(43554, 'https://ror.org/02dmnrr28', 'en', 1, 'https://ror.org/02dmnrr28 Fachgruppe für Untertagbau Swiss Tunnelling Society'),
(43555, 'https://ror.org/05h6j7923', 'en', 1, 'https://ror.org/05h6j7923 Society for Mental Health Research'),
(43556, 'https://ror.org/010k7sz25', 'de', 1, 'https://ror.org/010k7sz25 Arbeitsgemeinschaft Dermatologische Forschung'),
(43557, 'https://ror.org/01vek0a79', 'it', 1, 'https://ror.org/01vek0a79 Associazione Cristina Bassi Onlus'),
(43558, 'https://ror.org/023q20n38', 'en', 1, 'https://ror.org/023q20n38 Chinese Pharmaceutical Association äø­å›½čÆå­¦ä¼š'),
(43559, 'https://ror.org/04hdh0n29', 'en', 1, 'https://ror.org/04hdh0n29 Sveriges LƤkarfƶrbund Swedish Medical Association'),
(43560, 'https://ror.org/02ejpdc56', 'en', 1, 'https://ror.org/02ejpdc56 Agri-Futures Nova Scotia Association'),
(43561, 'https://ror.org/02st2pm23', 'it', 1, 'https://ror.org/02st2pm23 Associazione Italiana Contro le Leucemie Linfomi e Mieloma'),
(43562, 'https://ror.org/03fz8dh89', 'en', 1, 'https://ror.org/03fz8dh89 Japanese Society of Medical Oncology č…«ē˜å†…ē§‘å­¦ä¼š'),
(43563, 'https://ror.org/03jrxdc53', 'en', 1, 'https://ror.org/03jrxdc53 Japanese Urological Association ę—„ęœ¬ę³Œå°æå™Øē§‘å­¦ä¼š'),
(43564, 'https://ror.org/01a0fby34', 'en', 1, 'https://ror.org/01a0fby34 Advanced Machining Technology and Development Association å…ˆē«ÆåŠ å·„ę©Ÿę¢°ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(43565, 'https://ror.org/05syq9r31', 'de', 1, 'https://ror.org/05syq9r31 Forschungsvereinigung für Luft- und Trocknungstechnik'),
(43566, 'https://ror.org/03xvcy884', 'pt', 1, 'https://ror.org/03xvcy884 Sociedade Portuguesa de Nefrologia'),
(43567, 'https://ror.org/005535379', 'en', 1, 'https://ror.org/005535379 Blanchette Rockefeller Neurosciences Institute'),
(43568, 'https://ror.org/01vfzqe43', 'en', 1, 'https://ror.org/01vfzqe43 Korean Society of Neurogastroenterology and Motility ėŒ€ķ•œģ†Œķ™”źø°źø°ėŠ„ģ„±ģ§ˆķ™˜Ā·ģš“ė™ķ•™ķšŒ'),
(43569, 'https://ror.org/03q170s02', 'it', 1, 'https://ror.org/03q170s02 Associazione Malattie Autoimmuni Mario Rossi'),
(43570, 'https://ror.org/02jdjf497', 'en', 1, 'https://ror.org/02jdjf497 European Association of Environmental and Resource Economists'),
(43571, 'https://ror.org/014xpbn19', 'fr', 1, 'https://ror.org/014xpbn19 Entretiens de RƩƩducation et RƩadaptation Fonctionnelles'),
(43572, 'https://ror.org/01w0j5472', 'en', 1, 'https://ror.org/01w0j5472 Schweizerische Gesellschaft für Radiologie Swiss Society of Radiology'),
(43573, 'https://ror.org/017a3va29', 'de', 1, 'https://ror.org/017a3va29 Elternverein für Leukämie- und Krebskranke Kinder Gießen'),
(43574, 'https://ror.org/03zta3k64', 'da', 1, 'https://ror.org/03zta3k64 Nyreforeningen'),
(43575, 'https://ror.org/01hx09q43', 'en', 1, 'https://ror.org/01hx09q43 Alberta Medical Association'),
(43576, 'https://ror.org/047gams58', 'no_lang_code', 1, 'https://ror.org/047gams58 CNH Industrial (Italy)'),
(43577, 'https://ror.org/03aewyp97', 'en', 1, 'https://ror.org/03aewyp97 Association of Danish Physiotherapists Danske Fysioterapeuter'),
(43578, 'https://ror.org/00e6q5h84', 'en', 1, 'https://ror.org/00e6q5h84 Central Coast Orthopedic Medical Group'),
(43579, 'https://ror.org/03w3k6x10', 'de', 1, 'https://ror.org/03w3k6x10 Ɩsterreichische Gesellschaft für HƤmatologie & Medizinische Onkologie'),
(43580, 'https://ror.org/01f01fm15', 'fr', 1, 'https://ror.org/01f01fm15 NephroCare Tassin-Charcot'),
(43581, 'https://ror.org/040nt5929', 'en', 1, 'https://ror.org/040nt5929 Abramson Center for Jewish Life'),
(43582, 'https://ror.org/031krgy72', 'en', 1, 'https://ror.org/031krgy72 Center for Advancing Health'),
(43583, 'https://ror.org/04s147q83', 'en', 1, 'https://ror.org/04s147q83 Dawkins Dermatology'),
(43584, 'https://ror.org/033hv9q38', 'en', 1, 'https://ror.org/033hv9q38 Australian Marine Sciences Association'),
(43585, 'https://ror.org/03fjn6n75', 'en', 1, 'https://ror.org/03fjn6n75 Australian Publishers Association'),
(43586, 'https://ror.org/00pj6vp51', 'en', 1, 'https://ror.org/00pj6vp51 Australian Society for Biochemistry and Molecular Biology'),
(43587, 'https://ror.org/000y15785', 'en', 1, 'https://ror.org/000y15785 Australian Society For Fish Biology'),
(43588, 'https://ror.org/01thczn33', 'en', 1, 'https://ror.org/01thczn33 Australian Society for Microbiology'),
(43589, 'https://ror.org/05wcr1b38', 'en', 1, 'https://ror.org/05wcr1b38 Centre for Inflammation Research'),
(43590, 'https://ror.org/03d5a9t15', 'en', 1, 'https://ror.org/03d5a9t15 Department of Medical Sciences ąøąø£ąø”ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąøąø²ąø£ą¹ąøžąø—ąø¢ą¹Œ'),
(43591, 'https://ror.org/020209y40', 'no_lang_code', 1, 'https://ror.org/020209y40 Donawa Lifescience Consulting (Italy)'),
(43592, 'https://ror.org/05pqwek81', 'no_lang_code', 1, 'https://ror.org/05pqwek81 Alliance Protein Laboratories (United States)'),
(43593, 'https://ror.org/0394z0v14', 'en', 1, 'https://ror.org/0394z0v14 Harborview Injury Prevention and Research Center'),
(43594, 'https://ror.org/04js6xx21', 'en', 1, 'https://ror.org/04js6xx21 McGowan Institute for Regenerative Medicine'),
(43595, 'https://ror.org/008htsm20', 'de', 1, 'https://ror.org/008htsm20 Sana Kliniken Duisburg'),
(43596, 'https://ror.org/035ect513', 'en', 1, 'https://ror.org/035ect513 Miami Heart Research Institute'),
(43597, 'https://ror.org/03jtajd40', 'fr', 1, 'https://ror.org/03jtajd40 Programme PAC-CI'),
(43598, 'https://ror.org/01761e930', 'en', 1, 'https://ror.org/01761e930 Turku PET Centre'),
(43599, 'https://ror.org/0483xzg81', 'no_lang_code', 1, 'https://ror.org/0483xzg81 Paion (United States)'),
(43600, 'https://ror.org/01qk1b565', 'no_lang_code', 1, 'https://ror.org/01qk1b565 Pure Protein (United States)'),
(43601, 'https://ror.org/0264dxb48', 'en', 1, 'https://ror.org/0264dxb48 Wellcome/MRC Institute of Metabolic Science'),
(43602, 'https://ror.org/02dm76w35', 'en', 1, 'https://ror.org/02dm76w35 Minnesota Institute of Public Health'),
(43603, 'https://ror.org/02qwkrw10', 'en', 1, 'https://ror.org/02qwkrw10 National Institute of Health ՀՀ Ō±Õ† Ō±Õ¼ÕøÕ²Õ»Õ”ÕŗÕ”Õ°ÕøÖ‚Õ©ÕµÕ”Õ¶ Ō±Õ¦Õ£Õ”ÕµÕ«Õ¶ Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(43604, 'https://ror.org/02drfng73', 'en', 1, 'https://ror.org/02drfng73 Middle Tennessee Research Institute'),
(43605, 'https://ror.org/02ckq3786', 'en', 1, 'https://ror.org/02ckq3786 New York Child Learning Institute'),
(43606, 'https://ror.org/04ghh8334', 'en', 1, 'https://ror.org/04ghh8334 Central Sericultural Research and Training Institute ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤°ą„‡ą¤¶ą¤® ą¤‰ą¤¤ą„ā€ą¤Ŗą¤¾ą¤¦ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¶ą¤æą¤•ą„ą¤·ą¤£ ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(43607, 'https://ror.org/04ekfdy38', 'en', 1, 'https://ror.org/04ekfdy38 Galveston Island Research Community Research Advisory Committee'),
(43608, 'https://ror.org/05kznsx33', 'no_lang_code', 1, 'https://ror.org/05kznsx33 Antibiotic (Bulgaria)'),
(43609, 'https://ror.org/04b3f3k27', 'en', 1, 'https://ror.org/04b3f3k27 Global Viral'),
(43610, 'https://ror.org/02hp8vh60', 'en', 1, 'https://ror.org/02hp8vh60 Institute of Applied Physiology & Medicine'),
(43611, 'https://ror.org/04btxqd09', 'en', 1, 'https://ror.org/04btxqd09 Institute for the Advanced Study of Black Family Life and Culture'),
(43612, 'https://ror.org/00nekn329', 'en', 1, 'https://ror.org/00nekn329 Higher Institute of Advanced Studies'),
(43613, 'https://ror.org/05axsx403', 'en', 1, 'https://ror.org/05axsx403 Institute of Water and Sanitation Development'),
(43614, 'https://ror.org/0230wyg61', 'en', 1, 'https://ror.org/0230wyg61 Cardiovascular Innovation Institute'),
(43615, 'https://ror.org/05hfnvf25', 'en', 1, 'https://ror.org/05hfnvf25 High Institute For Computers and Management Information Systems'),
(43616, 'https://ror.org/007y22n43', 'de', 1, 'https://ror.org/007y22n43 Gesundheitszentrum Bitterfeld'),
(43617, 'https://ror.org/02rzd6x38', 'en', 1, 'https://ror.org/02rzd6x38 National College'),
(43618, 'https://ror.org/05s3r6j75', 'en', 1, 'https://ror.org/05s3r6j75 Southwestern Community College - Iowa'),
(43619, 'https://ror.org/00x3xqj53', 'en', 1, 'https://ror.org/00x3xqj53 Canadian University Music Society SociƩtƩ de musique des universitƩs canadiennes'),
(43620, 'https://ror.org/05vhh0619', 'en', 1, 'https://ror.org/05vhh0619 Trinity Valley Community College'),
(43621, 'https://ror.org/01ye08k77', 'en', 1, 'https://ror.org/01ye08k77 The 180th Hospital of PLA 中国人民解放军第180医院'),
(43622, 'https://ror.org/04ed8jn07', 'en', 1, 'https://ror.org/04ed8jn07 Zhenjiang City Fourth People''s Hospital é•‡ę±Ÿåø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(43623, 'https://ror.org/02djvk664', 'en', 1, 'https://ror.org/02djvk664 Shaoxing No.6 People''s Hospital ē»å…“åø‚ē«‹åŒ»é™¢'),
(43624, 'https://ror.org/004debr48', 'it', 1, 'https://ror.org/004debr48 Ospedale Santa Maria di Loreto Nuovo'),
(43625, 'https://ror.org/04a5h3b47', 'en', 1, 'https://ror.org/04a5h3b47 Eastern Gateway Community College'),
(43626, 'https://ror.org/05avt0b71', 'en', 1, 'https://ror.org/05avt0b71 Sanya City Women and Children Hospital'),
(43627, 'https://ror.org/00z7vk025', 'no_lang_code', 1, 'https://ror.org/00z7vk025 Electronic Sensor Technology (United States)'),
(43628, 'https://ror.org/03cg5ap92', 'en', 1, 'https://ror.org/03cg5ap92 Luoyang Central Hospital Affiliated to Zhengzhou University'),
(43629, 'https://ror.org/02dzrb971', 'no_lang_code', 1, 'https://ror.org/02dzrb971 MSP Analytics (United States)'),
(43630, 'https://ror.org/04z2tt918', 'en', 1, 'https://ror.org/04z2tt918 Walker County Red Cross Hospital čŽ·å˜‰åŽæēŗ¢åå­—åŒ»é™¢'),
(43631, 'https://ror.org/0452rtt80', 'fr', 1, 'https://ror.org/0452rtt80 Laboratoire de Neurobiologie Cellulaire et MolƩculaire'),
(43632, 'https://ror.org/03zrj3m15', 'en', 1, 'https://ror.org/03zrj3m15 Riverside Hospital of Guangxi Zhuang Autonomous Region å¹æč„æå£®ę—č‡Ŗę²»åŒŗę±Ÿę»ØåŒ»é™¢'),
(43633, 'https://ror.org/01ypty838', 'no_lang_code', 1, 'https://ror.org/01ypty838 Megara Resins (Greece)'),
(43634, 'https://ror.org/014nsap67', 'en', 1, 'https://ror.org/014nsap67 People''s Liberation Army No. 150 Hospital'),
(43635, 'https://ror.org/01kr9ze74', 'en', 1, 'https://ror.org/01kr9ze74 The Third People''s Hospital of Dalian City å¤§čæžåø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(43636, 'https://ror.org/030xn5j74', 'en', 1, 'https://ror.org/030xn5j74 TCM-Intigrated Cancer Center of Southern Medical University å—ę–¹åŒ»ē§‘å¤§å­¦äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(43637, 'https://ror.org/0183mt691', 'en', 1, 'https://ror.org/0183mt691 Hajera Taju University College'),
(43638, 'https://ror.org/01459d894', 'en', 1, 'https://ror.org/01459d894 Virginia Intermont College'),
(43639, 'https://ror.org/05bc06n36', 'en', 1, 'https://ror.org/05bc06n36 North Orange County Community College District'),
(43640, 'https://ror.org/04d83ph96', 'en', 1, 'https://ror.org/04d83ph96 City Clinical Hospital No 31 Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 31 (Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³)'),
(43641, 'https://ror.org/01qfhxr31', 'en', 1, 'https://ror.org/01qfhxr31 University of Kivu UniversitƩ du Kivu'),
(43642, 'https://ror.org/05x0zqa09', 'en', 1, 'https://ror.org/05x0zqa09 Northeast Community College'),
(43643, 'https://ror.org/00tmt0k30', 'en', 1, 'https://ror.org/00tmt0k30 West Virginia Northern Community College'),
(43644, 'https://ror.org/02qwxva96', 'en', 1, 'https://ror.org/02qwxva96 Colorado Northwestern Community College'),
(43645, 'https://ror.org/006ejbv88', 'en', 1, 'https://ror.org/006ejbv88 Kampala International University'),
(43646, 'https://ror.org/02cq3zx12', 'en', 1, 'https://ror.org/02cq3zx12 ViŔja prometna Ŕola Maribor Vocational College of Traffic and Transport'),
(43647, 'https://ror.org/03nwf3f39', 'en', 1, 'https://ror.org/03nwf3f39 Highland Community College - Kansas'),
(43648, 'https://ror.org/03xbe8838', 'en', 1, 'https://ror.org/03xbe8838 Tianjin Fourth Hospital å¤©ę“„åø‚ē¬¬å››åŒ»é™¢'),
(43649, 'https://ror.org/04vpw9274', 'en', 1, 'https://ror.org/04vpw9274 Bjƶrneborgs universitetscenter Porin yliopistokeskus University Consortium of Pori'),
(43650, 'https://ror.org/032eg6t15', 'is', 1, 'https://ror.org/032eg6t15 BarnaspĆ­tali'),
(43651, 'https://ror.org/04tshhm50', 'en', 1, 'https://ror.org/04tshhm50 Shanxi Academy of Medical Sciences åŒ»å­¦ē§‘å­¦ē ”ē©¶é™¢å±±č„æ'),
(43652, 'https://ror.org/00n55wf36', 'en', 1, 'https://ror.org/00n55wf36 University of Iranians دانؓگاه Ų¬Ų§Ł…Ų¹ ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ Ų§ŪŒŲ±Ų§Ł†ŪŒŲ§Ł†'),
(43653, 'https://ror.org/02vxh1k29', 'no_lang_code', 1, 'https://ror.org/02vxh1k29 Aurobindo Pharma (United States)'),
(43654, 'https://ror.org/00se3rd97', 'en', 1, 'https://ror.org/00se3rd97 Yingkou Institute of Technology č„å£ē†å·„å­¦é™¢'),
(43655, 'https://ror.org/02gzmhs41', 'en', 1, 'https://ror.org/02gzmhs41 Russian Scientific Research Institute Microbe'),
(43656, 'https://ror.org/038t6jw47', 'en', 1, 'https://ror.org/038t6jw47 Association Canadienne des Ɖtudes Asiatiques Canadian Asian Studies Association'),
(43657, 'https://ror.org/03wsgwc11', 'en', 1, 'https://ror.org/03wsgwc11 Scleroderma and Raynaud''s UK'),
(43658, 'https://ror.org/04e6gmj90', 'en', 1, 'https://ror.org/04e6gmj90 British Thoracic Society'),
(43659, 'https://ror.org/01t8f4d28', 'en', 1, 'https://ror.org/01t8f4d28 South African Heart Association'),
(43660, 'https://ror.org/00j9w3k35', 'en', 1, 'https://ror.org/00j9w3k35 Cultural Relics Institute Hebei Province ę²³åŒ—ēœę–‡ē‰©ē ”ē©¶ę‰€'),
(43661, 'https://ror.org/04vfs5h36', 'en', 1, 'https://ror.org/04vfs5h36 Washington State University Spokane'),
(43662, 'https://ror.org/02sjef319', 'en', 1, 'https://ror.org/02sjef319 Washington State University Tri-Cities'),
(43663, 'https://ror.org/03c50g186', 'en', 1, 'https://ror.org/03c50g186 Linyi City Chinese Medicine Hospital'),
(43664, 'https://ror.org/01cyx8116', 'en', 1, 'https://ror.org/01cyx8116 West Georgia Technical College'),
(43665, 'https://ror.org/0127fwn18', 'en', 1, 'https://ror.org/0127fwn18 Institut für Bioinformatik und Systembiologie Institute of Bioinformatics and Systems Biology'),
(43666, 'https://ror.org/02hzmab58', 'en', 1, 'https://ror.org/02hzmab58 St. Mary''s University į‰…į‹µįˆµį‰µ įˆ›įˆ­į‹«įˆ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(43667, 'https://ror.org/042302r81', 'no_lang_code', 1, 'https://ror.org/042302r81 Anzai (Japan) ę Ŗå¼ä¼šē¤¾å®‰č„æč£½ä½œę‰€'),
(43668, 'https://ror.org/057mcc411', 'no_lang_code', 1, 'https://ror.org/057mcc411 Universal Alloy (United States)'),
(43669, 'https://ror.org/055xjpt87', 'no_lang_code', 1, 'https://ror.org/055xjpt87 Universal Trim Supply (Taiwan)'),
(43670, 'https://ror.org/01r5syv12', 'no_lang_code', 1, 'https://ror.org/01r5syv12 Columbus McKinnon (United States)'),
(43671, 'https://ror.org/04apy5543', 'no_lang_code', 1, 'https://ror.org/04apy5543 Luye Pharma (China) ē»æå¶åˆ¶čÆ'),
(43672, 'https://ror.org/04xjxdt77', 'no_lang_code', 1, 'https://ror.org/04xjxdt77 Universal Beauty Products (United States)'),
(43673, 'https://ror.org/056dwm086', 'no_lang_code', 1, 'https://ror.org/056dwm086 Universal Biologics (United States)'),
(43674, 'https://ror.org/0007sdx38', 'no_lang_code', 1, 'https://ror.org/0007sdx38 BMG (Japan) ę Ŗå¼ä¼šē¤¾ćƒ“ćƒ¼ć‚Øćƒ ć‚øćƒ¼'),
(43675, 'https://ror.org/012ghgg86', 'no_lang_code', 1, 'https://ror.org/012ghgg86 Matsui Universal Joint Corporation (Japan) ę Ŗå¼ä¼šē¤¾ę¾äŗ•č£½ä½œę‰€'),
(43676, 'https://ror.org/03245q673', 'no_lang_code', 1, 'https://ror.org/03245q673 Universal Biosensors (Australia)'),
(43677, 'https://ror.org/05ehpsf23', 'no_lang_code', 1, 'https://ror.org/05ehpsf23 Universal Woods (United States)'),
(43678, 'https://ror.org/05fh5ny91', 'no_lang_code', 1, 'https://ror.org/05fh5ny91 Comar (United States)'),
(43679, 'https://ror.org/051jh8373', 'no_lang_code', 1, 'https://ror.org/051jh8373 Piovan (Canada)'),
(43680, 'https://ror.org/03yvav120', 'no_lang_code', 1, 'https://ror.org/03yvav120 Nikki-Universal (Japan) ę—„ę®ćƒ¦ćƒ‹ćƒćƒ¼ć‚µćƒ«ę Ŗå¼ä¼šē¤¾ćÆ'),
(43681, 'https://ror.org/00mvrwh98', 'no_lang_code', 1, 'https://ror.org/00mvrwh98 Universal Engraving (United States)'),
(43682, 'https://ror.org/0154rgv60', 'no_lang_code', 1, 'https://ror.org/0154rgv60 Prima Alloy Steel Universal (Indonesia)'),
(43683, 'https://ror.org/00mvbdj52', 'no_lang_code', 1, 'https://ror.org/00mvbdj52 Universal Entertainment (Japan) ćƒ¦ćƒ‹ćƒćƒ¼ć‚µćƒ«ć‚Øćƒ³ć‚æćƒ¼ćƒ†ć‚¤ćƒ³ćƒ”ćƒ³ćƒˆ'),
(43684, 'https://ror.org/00b4fbe80', 'no_lang_code', 1, 'https://ror.org/00b4fbe80 Universal Environmental Technologies (United States)'),
(43685, 'https://ror.org/00y3z1g83', 'no_lang_code', 1, 'https://ror.org/00y3z1g83 Sangath'),
(43686, 'https://ror.org/001jk8698', 'en', 1, 'https://ror.org/001jk8698 Stofnun Árna Magnússonar í íslenskum fræðum Árni Magnússon Institute for Icelandic Studies'),
(43687, 'https://ror.org/05xqh8n76', 'no_lang_code', 1, 'https://ror.org/05xqh8n76 UFI Filters (Italy)'),
(43688, 'https://ror.org/05kc3f351', 'en', 1, 'https://ror.org/05kc3f351 INCLEN Trust International'),
(43689, 'https://ror.org/00s9pac36', 'en', 1, 'https://ror.org/00s9pac36 May Institute'),
(43690, 'https://ror.org/03110kp08', 'no_lang_code', 1, 'https://ror.org/03110kp08 Universal Fibers (United States)'),
(43691, 'https://ror.org/027bhx472', 'no_lang_code', 1, 'https://ror.org/027bhx472 Univar (United States)'),
(43692, 'https://ror.org/00vn8ss79', 'no_lang_code', 1, 'https://ror.org/00vn8ss79 Universal Photonics (United States)'),
(43693, 'https://ror.org/05b8n5j15', 'en', 1, 'https://ror.org/05b8n5j15 Nordic Centre for Welfare and Social Issues Nordic Centre for Welfare ja sosiaaliset kysymykset'),
(43694, 'https://ror.org/047mk7b09', 'no_lang_code', 1, 'https://ror.org/047mk7b09 Sensient Technologies (United States)'),
(43695, 'https://ror.org/0032h6p54', 'no_lang_code', 1, 'https://ror.org/0032h6p54 Universal Scientific Industrial (China) ēŽÆę—­ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(43696, 'https://ror.org/00r8m9k11', 'no_lang_code', 1, 'https://ror.org/00r8m9k11 Avnet (United States)'),
(43697, 'https://ror.org/04e9gsd78', 'no_lang_code', 1, 'https://ror.org/04e9gsd78 United Shield (United Kingdom)'),
(43698, 'https://ror.org/005kpb876', 'en', 1, 'https://ror.org/005kpb876 London Cancer'),
(43699, 'https://ror.org/04rgq7p67', 'no_lang_code', 1, 'https://ror.org/04rgq7p67 Foremost (Canada)'),
(43700, 'https://ror.org/05hawnt37', 'no_lang_code', 1, 'https://ror.org/05hawnt37 Universal Instruments (United States)'),
(43701, 'https://ror.org/02mn80m13', 'no_lang_code', 1, 'https://ror.org/02mn80m13 Universal Master Products (United Kingdom)'),
(43702, 'https://ror.org/029ve2p44', 'no_lang_code', 1, 'https://ror.org/029ve2p44 Johnson Matthey (France)'),
(43703, 'https://ror.org/01hdj9e73', 'no_lang_code', 1, 'https://ror.org/01hdj9e73 Universal Filters (United States)'),
(43704, 'https://ror.org/036b9em68', 'no_lang_code', 1, 'https://ror.org/036b9em68 Sonitu Pharmaceuticals (United States)'),
(43705, 'https://ror.org/030v8r787', 'no_lang_code', 1, 'https://ror.org/030v8r787 Tecan (United States)'),
(43706, 'https://ror.org/038gjp852', 'no_lang_code', 1, 'https://ror.org/038gjp852 Univera (United States)'),
(43707, 'https://ror.org/000963779', 'no_lang_code', 1, 'https://ror.org/000963779 Universal Products (United States)'),
(43708, 'https://ror.org/03mp9xr25', 'no_lang_code', 1, 'https://ror.org/03mp9xr25 SmartSkim (United States)'),
(43709, 'https://ror.org/04e2byh18', 'no_lang_code', 1, 'https://ror.org/04e2byh18 Them (United States)'),
(43710, 'https://ror.org/01qfa5t68', 'no_lang_code', 1, 'https://ror.org/01qfa5t68 Hitachi Maxell (Japan) ę—„ē«‹ćƒžć‚Æć‚»ćƒ«ę Ŗå¼ä¼šē¤¾'),
(43711, 'https://ror.org/00hmyb194', 'no_lang_code', 1, 'https://ror.org/00hmyb194 Accenture (Ireland)'),
(43712, 'https://ror.org/05cnabr44', 'no_lang_code', 1, 'https://ror.org/05cnabr44 eBay (United States)'),
(43713, 'https://ror.org/03xajsx66', 'no_lang_code', 1, 'https://ror.org/03xajsx66 Acer (Taiwan) å®ē¢'),
(43714, 'https://ror.org/01jfy6x14', 'no_lang_code', 1, 'https://ror.org/01jfy6x14 Canon Anelva (Japan) ć‚­ćƒ¤ćƒŽćƒ³ć‚¢ćƒćƒ«ćƒ'),
(43715, 'https://ror.org/044r0st32', 'no_lang_code', 1, 'https://ror.org/044r0st32 EchoStar (United States)'),
(43716, 'https://ror.org/04y2bnd24', 'no_lang_code', 1, 'https://ror.org/04y2bnd24 Lincoln Electric (United States)'),
(43717, 'https://ror.org/01v3aym70', 'no_lang_code', 1, 'https://ror.org/01v3aym70 Foxconn (Taiwan) é“»ęµ·ē§‘ęŠ€é›†åœ˜'),
(43718, 'https://ror.org/04qrdn471', 'no_lang_code', 1, 'https://ror.org/04qrdn471 Lintec Corporation (Japan) ćƒŖćƒ³ćƒ†ćƒƒć‚Æ'),
(43719, 'https://ror.org/01bvpmp82', 'no_lang_code', 1, 'https://ror.org/01bvpmp82 Advantest (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒćƒ³ćƒ†ć‚¹ćƒˆ'),
(43720, 'https://ror.org/03jzay846', 'no_lang_code', 1, 'https://ror.org/03jzay846 Honda (Japan) ęœ¬ē”°ęŠ€ē ”å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43721, 'https://ror.org/02eqd9a40', 'no_lang_code', 1, 'https://ror.org/02eqd9a40 Lite-On Technology Corporation (Taiwan) å»ŗå…“ē§‘ęŠ€å…¬åø'),
(43722, 'https://ror.org/037ddaj94', 'no_lang_code', 1, 'https://ror.org/037ddaj94 Los Alamos National Security (United States)'),
(43723, 'https://ror.org/049vpfq31', 'no_lang_code', 1, 'https://ror.org/049vpfq31 Hoya (Japan) Hoyaę Ŗå¼ä¼šē¤¾'),
(43724, 'https://ror.org/02nfvrd33', 'no_lang_code', 1, 'https://ror.org/02nfvrd33 HTC (Taiwan) å®é”åœ‹éš›é›»å­č‚”ä»½ęœ‰é™å…¬åø'),
(43725, 'https://ror.org/001vbm067', 'no_lang_code', 1, 'https://ror.org/001vbm067 Empire Technical Development (United States)'),
(43726, 'https://ror.org/01vaekj86', 'no_lang_code', 1, 'https://ror.org/01vaekj86 Agfa-Gevaert (Germany)'),
(43727, 'https://ror.org/03v1bhv69', 'no_lang_code', 1, 'https://ror.org/03v1bhv69 LSIS (South Korea) ģ‚°ģ „'),
(43728, 'https://ror.org/027sr5070', 'no_lang_code', 1, 'https://ror.org/027sr5070 Hubbell (United States)'),
(43729, 'https://ror.org/03cbkmv71', 'no_lang_code', 1, 'https://ror.org/03cbkmv71 TDK-EPC (Germany)'),
(43730, 'https://ror.org/02hwyte29', 'no_lang_code', 1, 'https://ror.org/02hwyte29 Albemarle (United States)'),
(43731, 'https://ror.org/03q1pf281', 'no_lang_code', 1, 'https://ror.org/03q1pf281 Central Glass (Japan) ć‚»ćƒ³ćƒˆćƒ©ćƒ«ē”å­ę Ŗå¼ä¼šē¤¾'),
(43732, 'https://ror.org/02a8zpt37', 'no_lang_code', 1, 'https://ror.org/02a8zpt37 Essilor (France)'),
(43733, 'https://ror.org/01g571893', 'no_lang_code', 1, 'https://ror.org/01g571893 LuK Lamellen und Kupplungsbau (Germany)'),
(43734, 'https://ror.org/01e55bn36', 'no_lang_code', 1, 'https://ror.org/01e55bn36 Lutron Electronics (United States)'),
(43735, 'https://ror.org/038b1qn73', 'no_lang_code', 1, 'https://ror.org/038b1qn73 Hyundai Mobis (South Korea) ķ˜„ėŒ€ėŖØė¹„ģŠ¤ ģ£¼ģ‹ķšŒģ‚¬'),
(43736, 'https://ror.org/02njhsx22', 'no_lang_code', 1, 'https://ror.org/02njhsx22 Alps Electric (Japan) ć‚¢ćƒ«ćƒ—ć‚¹é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(43737, 'https://ror.org/01bggjn73', 'no_lang_code', 1, 'https://ror.org/01bggjn73 Macronix International (Taiwan)'),
(43738, 'https://ror.org/04343ty25', 'no_lang_code', 1, 'https://ror.org/04343ty25 Ibiden (Japan) ć‚¤ćƒ“ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(43739, 'https://ror.org/028pp3w31', 'no_lang_code', 1, 'https://ror.org/028pp3w31 Foxlink (Taiwan) ę­£å““ē²¾åÆ†å·„äøš'),
(43740, 'https://ror.org/03256ej17', 'no_lang_code', 1, 'https://ror.org/03256ej17 Energizer (United States)'),
(43741, 'https://ror.org/05w5shm69', 'no_lang_code', 1, 'https://ror.org/05w5shm69 Chevron Phillips Chemical (United States)'),
(43742, 'https://ror.org/03f1f6f50', 'no_lang_code', 1, 'https://ror.org/03f1f6f50 Makita Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒžć‚­ć‚æ'),
(43743, 'https://ror.org/01hf9n917', 'no_lang_code', 1, 'https://ror.org/01hf9n917 International Game Technology (United States)'),
(43744, 'https://ror.org/00g702m33', 'no_lang_code', 1, 'https://ror.org/00g702m33 Stihl (Germany)'),
(43745, 'https://ror.org/039snsq89', 'no_lang_code', 1, 'https://ror.org/039snsq89 Chi Mei Communication Systems (Taiwan) å„‡ē¾Žé€ščØŠ'),
(43746, 'https://ror.org/051v3pe92', 'no_lang_code', 1, 'https://ror.org/051v3pe92 Mando Corporation (South Korea) ė§Œė„'),
(43747, 'https://ror.org/05daj2k82', 'no_lang_code', 1, 'https://ror.org/05daj2k82 Mann+Hummel (Germany)'),
(43748, 'https://ror.org/03yca1933', 'no_lang_code', 1, 'https://ror.org/03yca1933 Fairchild Semiconductor (United States)'),
(43749, 'https://ror.org/01bcadh60', 'no_lang_code', 1, 'https://ror.org/01bcadh60 Manroland (Germany)'),
(43750, 'https://ror.org/03mc1nw82', 'no_lang_code', 1, 'https://ror.org/03mc1nw82 Aristocrat (Australia)'),
(43751, 'https://ror.org/05c5cxq41', 'no_lang_code', 1, 'https://ror.org/05c5cxq41 Husky Injection Molding Systems (Canada)'),
(43752, 'https://ror.org/00hjm9t74', 'no_lang_code', 1, 'https://ror.org/00hjm9t74 Marvell (Bermuda)'),
(43753, 'https://ror.org/05t96az61', 'no_lang_code', 1, 'https://ror.org/05t96az61 Cirrus Logic (United States)'),
(43754, 'https://ror.org/00mwp7g70', 'no_lang_code', 1, 'https://ror.org/00mwp7g70 Soft99 (Japan) ć‚½ćƒ•ćƒˆ99ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(43755, 'https://ror.org/006s9y688', 'no_lang_code', 1, 'https://ror.org/006s9y688 Ingersoll Rand (United States)'),
(43756, 'https://ror.org/00zdzyj46', 'no_lang_code', 1, 'https://ror.org/00zdzyj46 Citizen (Japan) ć‚·ćƒć‚ŗćƒ³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(43757, 'https://ror.org/056c8b450', 'no_lang_code', 1, 'https://ror.org/056c8b450 Maxim Integrated (United States)'),
(43758, 'https://ror.org/05evsnd79', 'no_lang_code', 1, 'https://ror.org/05evsnd79 Intellectual Ventures (United States)'),
(43759, 'https://ror.org/00bxkz165', 'no_lang_code', 1, 'https://ror.org/00bxkz165 Asus (Taiwan) čÆē¢©é›»č…¦č‚”ä»½ęœ‰é™å…¬åø'),
(43760, 'https://ror.org/01jqh6j63', 'no_lang_code', 1, 'https://ror.org/01jqh6j63 Finisar (United States)'),
(43761, 'https://ror.org/047q85d05', 'no_lang_code', 1, 'https://ror.org/047q85d05 First Data (United States)'),
(43762, 'https://ror.org/040vg0k95', 'no_lang_code', 1, 'https://ror.org/040vg0k95 CNH Industrial (United States)'),
(43763, 'https://ror.org/05hk1wv51', 'no_lang_code', 1, 'https://ror.org/05hk1wv51 Mazda Motor Corporation (Japan) ćƒžćƒ„ćƒ€ę Ŗå¼ä¼šē¤¾'),
(43764, 'https://ror.org/02yh0k313', 'no_lang_code', 1, 'https://ror.org/02yh0k313 Advanced Micro Devices (Canada)'),
(43765, 'https://ror.org/03grvh841', 'no_lang_code', 1, 'https://ror.org/03grvh841 Intermolecular (United States)'),
(43766, 'https://ror.org/02nma1c30', 'no_lang_code', 1, 'https://ror.org/02nma1c30 International Flavors & Fragrances (United States)'),
(43767, 'https://ror.org/05011pz46', 'no_lang_code', 1, 'https://ror.org/05011pz46 Commvault (United States)'),
(43768, 'https://ror.org/054fc6480', 'no_lang_code', 1, 'https://ror.org/054fc6480 NXP (United States)'),
(43769, 'https://ror.org/04hbev594', 'no_lang_code', 1, 'https://ror.org/04hbev594 Infineon Technologies (Canada)'),
(43770, 'https://ror.org/01rn9qa20', 'no_lang_code', 1, 'https://ror.org/01rn9qa20 AutoNetworks Technologies (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ćƒˆćƒćƒƒćƒˆćƒÆćƒ¼ć‚ÆęŠ€č”“ē ”ē©¶ę‰€'),
(43771, 'https://ror.org/03zvyfv67', 'no_lang_code', 1, 'https://ror.org/03zvyfv67 Broadcom (Singapore)'),
(43772, 'https://ror.org/05ttt5a28', 'no_lang_code', 1, 'https://ror.org/05ttt5a28 Intersil (United States)'),
(43773, 'https://ror.org/00jb92367', 'no_lang_code', 1, 'https://ror.org/00jb92367 Foxconn (China) é“»ęµ·ē§‘ęŠ€é›†åœ˜'),
(43774, 'https://ror.org/04sj13f52', 'no_lang_code', 1, 'https://ror.org/04sj13f52 Avery Dennison (United States)'),
(43775, 'https://ror.org/049mrbr98', 'no_lang_code', 1, 'https://ror.org/049mrbr98 Intuit (United States)'),
(43776, 'https://ror.org/05byphg89', 'no_lang_code', 1, 'https://ror.org/05byphg89 Michelin (Switzerland)'),
(43777, 'https://ror.org/03de5n431', 'no_lang_code', 1, 'https://ror.org/03de5n431 Scientific Games (United States)'),
(43778, 'https://ror.org/00x39dd97', 'no_lang_code', 1, 'https://ror.org/00x39dd97 Schneider Electric (United States)'),
(43779, 'https://ror.org/00n3fv874', 'no_lang_code', 1, 'https://ror.org/00n3fv874 Unilever (United States)'),
(43780, 'https://ror.org/03r46a684', 'no_lang_code', 1, 'https://ror.org/03r46a684 Inventec (Taiwan) č‹±ę„­é”å…¬åø'),
(43781, 'https://ror.org/056701b75', 'no_lang_code', 1, 'https://ror.org/056701b75 Fuji Electric (Japan) åÆŒå£«é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(43782, 'https://ror.org/05vqnxk73', 'de', 1, 'https://ror.org/05vqnxk73 Battelle'),
(43783, 'https://ror.org/00kvz1558', 'no_lang_code', 1, 'https://ror.org/00kvz1558 Microchip Technology (United States)'),
(43784, 'https://ror.org/04kwz3444', 'no_lang_code', 1, 'https://ror.org/04kwz3444 Schindler (Switzerland)'),
(43785, 'https://ror.org/052wab383', 'no_lang_code', 1, 'https://ror.org/052wab383 Baxter (Switzerland)'),
(43786, 'https://ror.org/01kmf8n06', 'no_lang_code', 1, 'https://ror.org/01kmf8n06 Conversant (Canada)'),
(43787, 'https://ror.org/03x705365', 'no_lang_code', 1, 'https://ror.org/03x705365 Cook Medical (United States)'),
(43788, 'https://ror.org/04gkxrj12', 'no_lang_code', 1, 'https://ror.org/04gkxrj12 MinebeaMitsumi (Japan) ćƒŸćƒćƒ™ć‚¢ćƒŸćƒ„ćƒŸę Ŗå¼ä¼šē¤¾'),
(43789, 'https://ror.org/000ycsz94', 'no_lang_code', 1, 'https://ror.org/000ycsz94 Isuzu Motors (Japan) ć„ć™ć‚žč‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(43790, 'https://ror.org/02w528w58', 'no_lang_code', 1, 'https://ror.org/02w528w58 Fuji Xerox (Japan) åÆŒå£«ć‚¼ćƒ­ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(43791, 'https://ror.org/01cwwvj38', 'no_lang_code', 1, 'https://ror.org/01cwwvj38 BOE Technology Group (China)'),
(43792, 'https://ror.org/04vz9vy80', 'no_lang_code', 1, 'https://ror.org/04vz9vy80 Japan Display (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ£ćƒ‘ćƒ³ćƒ‡ć‚£ć‚¹ćƒ—ćƒ¬ć‚¤'),
(43793, 'https://ror.org/0123ma395', 'no_lang_code', 1, 'https://ror.org/0123ma395 Fujikura (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚øć‚Æćƒ©'),
(43794, 'https://ror.org/0289e7422', 'no_lang_code', 1, 'https://ror.org/0289e7422 JFE Holdings (Japan) ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(43795, 'https://ror.org/025y1g718', 'no_lang_code', 1, 'https://ror.org/025y1g718 Kyocera (Japan) äŗ¬ć‚»ćƒ©ę Ŗå¼ä¼šē¤¾'),
(43796, 'https://ror.org/00jjgc591', 'no_lang_code', 1, 'https://ror.org/00jjgc591 Fujitsu Ten (Japan) åÆŒå£«é€šćƒ†ćƒ³ę Ŗå¼ä¼šē¤¾'),
(43797, 'https://ror.org/05j1xsk75', 'no_lang_code', 1, 'https://ror.org/05j1xsk75 SC Johnson (United States)'),
(43798, 'https://ror.org/00mhg9s35', 'no_lang_code', 1, 'https://ror.org/00mhg9s35 Mitsubishi Gas Chemical (Japan) äø‰č±ć‚¬ć‚¹åŒ–å­¦');
INSERT INTO `rors` VALUES
(43799, 'https://ror.org/04jy08y75', 'no_lang_code', 1, 'https://ror.org/04jy08y75 Qisda (Taiwan) ä½³äø–č¾¾å…¬åø'),
(43800, 'https://ror.org/03gbxs308', 'no_lang_code', 1, 'https://ror.org/03gbxs308 Funai Electric (Japan) čˆ¹äŗ•é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(43801, 'https://ror.org/00w91z143', 'no_lang_code', 1, 'https://ror.org/00w91z143 JTEKT (Japan) ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ†ć‚Æćƒˆ'),
(43802, 'https://ror.org/02pwct569', 'no_lang_code', 1, 'https://ror.org/02pwct569 Juniper Networks (United States)'),
(43803, 'https://ror.org/02c6kb837', 'no_lang_code', 1, 'https://ror.org/02c6kb837 BorgWarner (United States)'),
(43804, 'https://ror.org/03p5evc41', 'no_lang_code', 1, 'https://ror.org/03p5evc41 Mitsubishi Materials (Japan) äø‰č±ćƒžćƒ†ćƒŖć‚¢ćƒ«ę Ŗå¼ä¼šē¤¾'),
(43805, 'https://ror.org/022tpcx70', 'no_lang_code', 1, 'https://ror.org/022tpcx70 JVC Kenwood (Japan) ę Ŗå¼ä¼šē¤¾ JVCć‚±ćƒ³ć‚¦ćƒƒćƒ‰'),
(43806, 'https://ror.org/03jyqk712', 'no_lang_code', 1, 'https://ror.org/03jyqk712 Huawei Technologies (United States)'),
(43807, 'https://ror.org/02ztkac83', 'no_lang_code', 1, 'https://ror.org/02ztkac83 Robert Bosch (Japan) ćƒœćƒƒć‚·ćƒ„ļ¼ˆę Ŗļ¼‰'),
(43808, 'https://ror.org/02y5x0w05', 'no_lang_code', 1, 'https://ror.org/02y5x0w05 Kansai Paint (Japan) é–¢č„æćƒšć‚¤ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(43809, 'https://ror.org/0427k1a73', 'no_lang_code', 1, 'https://ror.org/0427k1a73 Bose (United States)'),
(43810, 'https://ror.org/040wmvn07', 'no_lang_code', 1, 'https://ror.org/040wmvn07 Ping (United States)'),
(43811, 'https://ror.org/043epsf53', 'no_lang_code', 1, 'https://ror.org/043epsf53 Arris (United States)'),
(43812, 'https://ror.org/016t76z82', 'no_lang_code', 1, 'https://ror.org/016t76z82 Mitsubishi Motors (Japan) äø‰č±č‡Ŗå‹•č»Šå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43813, 'https://ror.org/059tqws22', 'no_lang_code', 1, 'https://ror.org/059tqws22 Cypress Semiconductor Corporation (Belgium)'),
(43814, 'https://ror.org/02t2pyr24', 'no_lang_code', 1, 'https://ror.org/02t2pyr24 Procter & Gamble (Germany)'),
(43815, 'https://ror.org/01sggg367', 'no_lang_code', 1, 'https://ror.org/01sggg367 Kawasaki Heavy Industries (Japan) å·å“Žé‡å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43816, 'https://ror.org/027kpf759', 'no_lang_code', 1, 'https://ror.org/027kpf759 Mitsui Mining & Smelting (Japan) äø‰äŗ•é‡‘å±žé‰±ę„­ę Ŗå¼ä¼šē¤¾'),
(43817, 'https://ror.org/04trbvb35', 'no_lang_code', 1, 'https://ror.org/04trbvb35 Bridgestone (Japan) ę Ŗå¼ä¼šē¤¾ćƒ–ćƒŖćƒ‚ć‚¹ćƒˆćƒ³'),
(43818, 'https://ror.org/05rv8ev82', 'no_lang_code', 1, 'https://ror.org/05rv8ev82 Kia Motors (South Korea) źø°ģ•„ģžė™ģ°Ø'),
(43819, 'https://ror.org/01be2k939', 'no_lang_code', 1, 'https://ror.org/01be2k939 Dai Nippon Printing (Japan) å¤§ę—„ęœ¬å°åˆ·'),
(43820, 'https://ror.org/03jty5027', 'no_lang_code', 1, 'https://ror.org/03jty5027 Brocade (United States)'),
(43821, 'https://ror.org/019e98t43', 'no_lang_code', 1, 'https://ror.org/019e98t43 Brother Industries (Japan) ćƒ–ćƒ©ć‚¶ćƒ¼å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43822, 'https://ror.org/013p9v583', 'no_lang_code', 1, 'https://ror.org/013p9v583 Daikin (Japan) ćƒ€ć‚¤ć‚­ćƒ³å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43823, 'https://ror.org/054bpg497', 'no_lang_code', 1, 'https://ror.org/054bpg497 GlobalFoundries (United Kingdom)'),
(43824, 'https://ror.org/03nwpr620', 'no_lang_code', 1, 'https://ror.org/03nwpr620 Brunswick (United States)'),
(43825, 'https://ror.org/01d36yb27', 'no_lang_code', 1, 'https://ror.org/01d36yb27 Kobe Steel (Japan) ę Ŗå¼ä¼šē¤¾ē„žęˆøč£½é‹¼ę‰€'),
(43826, 'https://ror.org/0288c6p43', 'no_lang_code', 1, 'https://ror.org/0288c6p43 Dana (United States)'),
(43827, 'https://ror.org/00b43n621', 'no_lang_code', 1, 'https://ror.org/00b43n621 Mitutoyo Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒŸćƒ„ćƒˆćƒØ'),
(43828, 'https://ror.org/03n2emr48', 'no_lang_code', 1, 'https://ror.org/03n2emr48 Kohler (United States)'),
(43829, 'https://ror.org/00nafdb41', 'no_lang_code', 1, 'https://ror.org/00nafdb41 Callaway Golf (United States)'),
(43830, 'https://ror.org/05sqx9s36', 'no_lang_code', 1, 'https://ror.org/05sqx9s36 Acushnet (United States)'),
(43831, 'https://ror.org/01grxsm65', 'no_lang_code', 1, 'https://ror.org/01grxsm65 ExxonMobil (Norway)'),
(43832, 'https://ror.org/00pscny09', 'no_lang_code', 1, 'https://ror.org/00pscny09 Nintendo (Japan) ä»»å¤©å ‚ę Ŗå¼ä¼šē¤¾'),
(43833, 'https://ror.org/03k4vk194', 'no_lang_code', 1, 'https://ror.org/03k4vk194 Grace (United States)'),
(43834, 'https://ror.org/02n1mtw77', 'no_lang_code', 1, 'https://ror.org/02n1mtw77 Murata Machinery (Japan) ę‘ē”°ę©Ÿę¢°ę Ŗå¼ä¼šē¤¾'),
(43835, 'https://ror.org/01t782854', 'no_lang_code', 1, 'https://ror.org/01t782854 Nippon Paint (Japan) ę—„ęœ¬ćƒšć‚¤ćƒ³ćƒˆćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(43836, 'https://ror.org/02wb6zh81', 'no_lang_code', 1, 'https://ror.org/02wb6zh81 Graphic Packaging (United States)'),
(43837, 'https://ror.org/04hd8bd67', 'no_lang_code', 1, 'https://ror.org/04hd8bd67 Murata (Japan) ę Ŗå¼ä¼šē¤¾ę‘ē”°č£½ä½œę‰€'),
(43838, 'https://ror.org/04ecrg623', 'no_lang_code', 1, 'https://ror.org/04ecrg623 Nippon Sheet Glass (Japan) ę—„ęœ¬ęæē”å­ę Ŗå¼ä¼šē¤¾'),
(43839, 'https://ror.org/00c93aj32', 'no_lang_code', 1, 'https://ror.org/00c93aj32 DIC (Japan) ćƒ‡ć‚£ćƒ¼ć‚¢ć‚¤ć‚·ćƒ¼'),
(43840, 'https://ror.org/036krca38', 'no_lang_code', 1, 'https://ror.org/036krca38 Kubota (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒœć‚æ'),
(43841, 'https://ror.org/029rcz204', 'no_lang_code', 1, 'https://ror.org/029rcz204 Nanya Technology (Taiwan) å—äŗžē§‘ęŠ€'),
(43842, 'https://ror.org/01yk36x23', 'no_lang_code', 1, 'https://ror.org/01yk36x23 Nippon Soken (Japan) ę—„ęœ¬ē·ē ”'),
(43843, 'https://ror.org/023x6j183', 'no_lang_code', 1, 'https://ror.org/023x6j183 Guardian Industries (United States)'),
(43844, 'https://ror.org/03t94kt09', 'no_lang_code', 1, 'https://ror.org/03t94kt09 Diebold Nixdorf (United States)'),
(43845, 'https://ror.org/01kq4az79', 'no_lang_code', 1, 'https://ror.org/01kq4az79 Nitto (Japan) ę—„ę±é›»å·„ę Ŗå¼ä¼šē¤¾'),
(43846, 'https://ror.org/03z5xry11', 'no_lang_code', 1, 'https://ror.org/03z5xry11 HannStar Display (Taiwan) ē€šå®‡å½©ę™¶č‚”ä»½ęœ‰é™å…¬åø'),
(43847, 'https://ror.org/05km1vk92', 'no_lang_code', 1, 'https://ror.org/05km1vk92 Kuraray (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒ©ćƒ¬'),
(43848, 'https://ror.org/00j460570', 'no_lang_code', 1, 'https://ror.org/00j460570 Digimarc (United States)'),
(43849, 'https://ror.org/02vq92e47', 'no_lang_code', 1, 'https://ror.org/02vq92e47 Nordson (United States)'),
(43850, 'https://ror.org/02s6rdg38', 'no_lang_code', 1, 'https://ror.org/02s6rdg38 Novatek Microelectronics (Taiwan) čÆč© ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(43851, 'https://ror.org/00zs5ew10', 'no_lang_code', 1, 'https://ror.org/00zs5ew10 NGK Spark Plug (Japan) ę—„ęœ¬ē‰¹ę®Šé™¶ę„­ę Ŗå¼ä¼šē¤¾'),
(43852, 'https://ror.org/03erscp63', 'no_lang_code', 1, 'https://ror.org/03erscp63 Heidelberg Printing Machines AG Heidelberger Druckmaschinen (Germany)'),
(43853, 'https://ror.org/00vse3055', 'no_lang_code', 1, 'https://ror.org/00vse3055 NHK Spring (Japan) ę—„ęœ¬ē™ŗę”ę Ŗå¼ä¼šē¤¾'),
(43854, 'https://ror.org/01hght844', 'no_lang_code', 1, 'https://ror.org/01hght844 Lattice Semiconductor (United States)'),
(43855, 'https://ror.org/01fp77380', 'no_lang_code', 1, 'https://ror.org/01fp77380 Nichia Corporation (Japan) ę—„äŗœåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43856, 'https://ror.org/05nm3qe34', 'no_lang_code', 1, 'https://ror.org/05nm3qe34 NSK (Japan) ę—„ęœ¬ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(43857, 'https://ror.org/04htqgq60', 'no_lang_code', 1, 'https://ror.org/04htqgq60 Heidenhain (Germany)'),
(43858, 'https://ror.org/04g2bja88', 'no_lang_code', 1, 'https://ror.org/04g2bja88 DirecTV (United States)'),
(43859, 'https://ror.org/01f10xn48', 'no_lang_code', 1, 'https://ror.org/01f10xn48 NTN (Japan) NTNę Ŗå¼ä¼šē¤¾'),
(43860, 'https://ror.org/05xmzbk80', 'no_lang_code', 1, 'https://ror.org/05xmzbk80 Nidec (Japan) ę—„ęœ¬é›»ē”£ę Ŗå¼ä¼šē¤¾'),
(43861, 'https://ror.org/01h0eq657', 'no_lang_code', 1, 'https://ror.org/01h0eq657 Henkel (United States)'),
(43862, 'https://ror.org/003ns5237', 'no_lang_code', 1, 'https://ror.org/003ns5237 Lear (Germany)'),
(43863, 'https://ror.org/01qx5df26', 'no_lang_code', 1, 'https://ror.org/01qx5df26 Disco (japan) ę Ŗå¼ä¼šē¤¾ćƒ‡ć‚£ć‚¹ć‚³'),
(43864, 'https://ror.org/0503rt987', 'no_lang_code', 1, 'https://ror.org/0503rt987 Oki Electric Industry (Japan) ę²–é›»ę°—å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43865, 'https://ror.org/0282x2n68', 'no_lang_code', 1, 'https://ror.org/0282x2n68 Nidek (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ‡ćƒƒć‚Æ'),
(43866, 'https://ror.org/00mhktq57', 'no_lang_code', 1, 'https://ror.org/00mhktq57 Lenovo (Singapore)'),
(43867, 'https://ror.org/01eyenr26', 'no_lang_code', 1, 'https://ror.org/01eyenr26 Dolby (United States)'),
(43868, 'https://ror.org/04pe8fr02', 'no_lang_code', 1, 'https://ror.org/04pe8fr02 Leviton (United States)'),
(43869, 'https://ror.org/01j88m682', 'no_lang_code', 1, 'https://ror.org/01j88m682 Nifco (Japan) ćƒ‹ćƒ•ć‚³'),
(43870, 'https://ror.org/054aj1x19', 'no_lang_code', 1, 'https://ror.org/054aj1x19 Nihon Dempa Kogyo (Japan) ę—„ęœ¬é›»ę³¢å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43871, 'https://ror.org/05f4fbs05', 'no_lang_code', 1, 'https://ror.org/05f4fbs05 Western Digital (Netherlands)'),
(43872, 'https://ror.org/01bvqg661', 'no_lang_code', 1, 'https://ror.org/01bvqg661 Nikon (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ć‚³ćƒ³'),
(43873, 'https://ror.org/045d0h266', 'no_lang_code', 1, 'https://ror.org/045d0h266 OSRAM (United States)'),
(43874, 'https://ror.org/04dvebt78', 'no_lang_code', 1, 'https://ror.org/04dvebt78 ResMed (Australia)'),
(43875, 'https://ror.org/018z3cr21', 'no_lang_code', 1, 'https://ror.org/018z3cr21 Dongbu HiTek (South Korea) ė™ė¶€ ķ•˜ģ“ķ…'),
(43876, 'https://ror.org/00xk9wg94', 'no_lang_code', 1, 'https://ror.org/00xk9wg94 Himax (Taiwan) 儇景光電'),
(43877, 'https://ror.org/02dyqfb80', 'no_lang_code', 1, 'https://ror.org/02dyqfb80 Silicon Labs (United States)'),
(43878, 'https://ror.org/03amcs261', 'no_lang_code', 1, 'https://ror.org/03amcs261 Qorvo (United States)'),
(43879, 'https://ror.org/010fp8b41', 'no_lang_code', 1, 'https://ror.org/010fp8b41 Siliconware Precision Industries (Taiwan) ę­”čæŽä¾†åˆ°ēŸ½å“'),
(43880, 'https://ror.org/034zsq795', 'no_lang_code', 1, 'https://ror.org/034zsq795 Magna International (United States)'),
(43881, 'https://ror.org/00593cw33', 'no_lang_code', 1, 'https://ror.org/00593cw33 Richtek Technology (Taiwan) ē«‹éŒ”ē§‘ęŠ€'),
(43882, 'https://ror.org/04g4dtf59', 'no_lang_code', 1, 'https://ror.org/04g4dtf59 Panduit (United States)'),
(43883, 'https://ror.org/02h4myp42', 'no_lang_code', 1, 'https://ror.org/02h4myp42 Ricoh (Japan) ę Ŗå¼ä¼šē¤¾ćƒŖć‚³ćƒ¼'),
(43884, 'https://ror.org/03brafa64', 'no_lang_code', 1, 'https://ror.org/03brafa64 Solid (South Korea) ģ£¼ģ‹ķšŒģ‚¬ ģ ė¦¬ķ…Œķ¬ 설립'),
(43885, 'https://ror.org/02jymes45', 'no_lang_code', 1, 'https://ror.org/02jymes45 Skyworks Solutions (United States)'),
(43886, 'https://ror.org/03gfc4s78', 'no_lang_code', 1, 'https://ror.org/03gfc4s78 SMC Corporation (Japan) SMC ę Ŗå¼ä¼šē¤¾'),
(43887, 'https://ror.org/00zrr9158', 'no_lang_code', 1, 'https://ror.org/00zrr9158 Tokyo Ohka Kogyo (Japan) ę±äŗ¬åæœåŒ–å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43888, 'https://ror.org/00reyx053', 'no_lang_code', 1, 'https://ror.org/00reyx053 Smith & Nephew (United States)'),
(43889, 'https://ror.org/0102ss455', 'no_lang_code', 1, 'https://ror.org/0102ss455 Round Rock Research (United States)'),
(43890, 'https://ror.org/03fevzd03', 'no_lang_code', 1, 'https://ror.org/03fevzd03 Topcon (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ—ć‚³ćƒ³'),
(43891, 'https://ror.org/02j701e26', 'no_lang_code', 1, 'https://ror.org/02j701e26 RPX (United States)'),
(43892, 'https://ror.org/014kzp326', 'no_lang_code', 1, 'https://ror.org/014kzp326 Pioneer (Japan) ćƒ‘ć‚¤ć‚Ŗćƒ‹ć‚¢ę Ŗå¼ä¼šē¤¾'),
(43893, 'https://ror.org/05dwcwc36', 'no_lang_code', 1, 'https://ror.org/05dwcwc36 Toshiba Machine (Japan) ę±čŠę©Ÿę¢°'),
(43894, 'https://ror.org/04ra3cs69', 'no_lang_code', 1, 'https://ror.org/04ra3cs69 Saudi Arabia Basic Industries (Netherlands)'),
(43895, 'https://ror.org/02wpc5d77', 'no_lang_code', 1, 'https://ror.org/02wpc5d77 Cypress Semiconductor Corporation (United States)'),
(43896, 'https://ror.org/03t1q5m92', 'no_lang_code', 1, 'https://ror.org/03t1q5m92 PixArt (Taiwan) åŽŸē›øęˆåƒå…¬åø'),
(43897, 'https://ror.org/02jszzb89', 'no_lang_code', 1, 'https://ror.org/02jszzb89 TDK (China) TDKę Ŗå¼ä¼šē¤¾'),
(43898, 'https://ror.org/039qfhr69', 'no_lang_code', 1, 'https://ror.org/039qfhr69 Polaroid (United States)'),
(43899, 'https://ror.org/04e5zt867', 'no_lang_code', 1, 'https://ror.org/04e5zt867 Amer Sports (France)'),
(43900, 'https://ror.org/02zwv8f48', 'no_lang_code', 1, 'https://ror.org/02zwv8f48 SPX Corporation (United States)'),
(43901, 'https://ror.org/0162qed39', 'no_lang_code', 1, 'https://ror.org/0162qed39 Toyo Tire and Rubber (Japan) ę±ę“‹ć‚“ćƒ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43902, 'https://ror.org/058d8a952', 'no_lang_code', 1, 'https://ror.org/058d8a952 Power Integrations (United States)'),
(43903, 'https://ror.org/00zqddg96', 'no_lang_code', 1, 'https://ror.org/00zqddg96 Sanden (Japan) ć‚µćƒ³ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(43904, 'https://ror.org/04b0q3m21', 'no_lang_code', 1, 'https://ror.org/04b0q3m21 Victor (Japan) ę—„ęœ¬ćƒ“ć‚Æć‚æćƒ¼ę Ŗå¼ä¼šē¤¾'),
(43905, 'https://ror.org/02p49vj94', 'no_lang_code', 1, 'https://ror.org/02p49vj94 Primax Electronics (Taiwan)'),
(43906, 'https://ror.org/0370d1z23', 'no_lang_code', 1, 'https://ror.org/0370d1z23 Toyoda Gosei (Japan) č±Šē”°åˆęˆ'),
(43907, 'https://ror.org/00qabvy28', 'no_lang_code', 1, 'https://ror.org/00qabvy28 Visteon (United States)'),
(43908, 'https://ror.org/00pn5a327', 'no_lang_code', 1, 'https://ror.org/00pn5a327 Rambus (United States)'),
(43909, 'https://ror.org/0503v4y98', 'no_lang_code', 1, 'https://ror.org/0503v4y98 Toyota Industries (Japan) ę Ŗå¼ä¼šē¤¾č±Šē”°č‡Ŗå‹•ē¹”ę©Ÿ,'),
(43910, 'https://ror.org/041h6pr97', 'no_lang_code', 1, 'https://ror.org/041h6pr97 Voith (Germany)'),
(43911, 'https://ror.org/01af58f81', 'no_lang_code', 1, 'https://ror.org/01af58f81 Stanley Electric (Japan) ć‚¹ć‚æćƒ³ćƒ¬ćƒ¼é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(43912, 'https://ror.org/010k8n340', 'no_lang_code', 1, 'https://ror.org/010k8n340 RCA (United States)'),
(43913, 'https://ror.org/05x1ffr83', 'no_lang_code', 1, 'https://ror.org/05x1ffr83 Realtek (Taiwan) ē‘žę˜±åŠå°Žé«”č‚”ä»½ęœ‰é™å…¬åø'),
(43914, 'https://ror.org/046ct7v62', 'no_lang_code', 1, 'https://ror.org/046ct7v62 STATS ChipPAC (Singapore)'),
(43915, 'https://ror.org/051gpmw62', 'no_lang_code', 1, 'https://ror.org/051gpmw62 Trading Technologies (United States)'),
(43916, 'https://ror.org/04qy22d94', 'no_lang_code', 1, 'https://ror.org/04qy22d94 Trimble (United States)'),
(43917, 'https://ror.org/033efjf10', 'no_lang_code', 1, 'https://ror.org/033efjf10 Stine Seed (United States)'),
(43918, 'https://ror.org/00ba1ja72', 'no_lang_code', 1, 'https://ror.org/00ba1ja72 STMicroelectronics (Netherlands)'),
(43919, 'https://ror.org/05ttfy022', 'no_lang_code', 1, 'https://ror.org/05ttfy022 Tsubakimoto Chain (Japan) ę Ŗå¼ä¼šē¤¾ę¤æęœ¬ćƒć‚Øć‚¤ćƒ³'),
(43920, 'https://ror.org/01f8c3y78', 'no_lang_code', 1, 'https://ror.org/01f8c3y78 STMicroelectronics (United States)'),
(43921, 'https://ror.org/03tam1j96', 'no_lang_code', 1, 'https://ror.org/03tam1j96 Adidas (United States)'),
(43922, 'https://ror.org/01yp72g57', 'no_lang_code', 1, 'https://ror.org/01yp72g57 Sumco Corporation (Japan) ę Ŗå¼ä¼šē¤¾SUMCO'),
(43923, 'https://ror.org/045100v05', 'no_lang_code', 1, 'https://ror.org/045100v05 Winbond (Taiwan) čÆé‚¦é›»å­å…¬åø'),
(43924, 'https://ror.org/03yskk486', 'no_lang_code', 1, 'https://ror.org/03yskk486 Sumitomo Heavy Industries (Japan) ä½å‹é‡ę©Ÿę¢°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43925, 'https://ror.org/03vbj6030', 'no_lang_code', 1, 'https://ror.org/03vbj6030 Whitaker House'),
(43926, 'https://ror.org/00ker7c87', 'no_lang_code', 1, 'https://ror.org/00ker7c87 TDK (Japan) TDKę Ŗå¼ä¼šē¤¾'),
(43927, 'https://ror.org/03nw6pt28', 'no_lang_code', 1, 'https://ror.org/03nw6pt28 ON Semiconductor (United States)'),
(43928, 'https://ror.org/04qxh5x87', 'no_lang_code', 1, 'https://ror.org/04qxh5x87 Unicharm (Japan) ćƒ¦ćƒ‹Ā·ćƒćƒ£ćƒ¼ćƒ ę Ŗå¼ä¼šē¤¾'),
(43929, 'https://ror.org/01azggh38', 'no_lang_code', 1, 'https://ror.org/01azggh38 Sumitomo Riko (Japan) ä½å‹ē†å·„ę Ŗå¼ä¼šē¤¾'),
(43930, 'https://ror.org/02knfsk89', 'no_lang_code', 1, 'https://ror.org/02knfsk89 Wistron (Taiwan) ē·Æå‰µč³‡é€šč‚”ä»½ęœ‰é™å…¬åø'),
(43931, 'https://ror.org/00yzwhc72', 'no_lang_code', 1, 'https://ror.org/00yzwhc72 TEAC (Japan) ćƒ†ć‚£ć‚¢ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(43932, 'https://ror.org/02vszc135', 'no_lang_code', 1, 'https://ror.org/02vszc135 Semiconductor Energy Laboratory (Japan) ę Ŗå¼ä¼šē¤¾åŠå°Žä½“ć‚Øćƒćƒ«ć‚®ćƒ¼ē ”ē©¶ę‰€'),
(43933, 'https://ror.org/040dkzz12', 'no_lang_code', 1, 'https://ror.org/040dkzz12 Yahoo (United States)'),
(43934, 'https://ror.org/03tf9y485', 'no_lang_code', 1, 'https://ror.org/03tf9y485 Semiconductor Manufacturing International (China) äø­čŠÆå›½é™…é›†ęˆē”µč·Æåˆ¶é€ ęœ‰é™å…¬åø'),
(43935, 'https://ror.org/048bwmz37', 'no_lang_code', 1, 'https://ror.org/048bwmz37 Fortive (United States)'),
(43936, 'https://ror.org/05s7fvh27', 'no_lang_code', 1, 'https://ror.org/05s7fvh27 Yamaha (Japan) ćƒ¤ćƒžćƒę Ŗå¼ä¼šē¤¾'),
(43937, 'https://ror.org/01he2y745', 'no_lang_code', 1, 'https://ror.org/01he2y745 Suzuki (Japan) ć‚¹ć‚ŗć‚­ę Ŗå¼ä¼šē¤¾'),
(43938, 'https://ror.org/0580qje17', 'no_lang_code', 1, 'https://ror.org/0580qje17 United Microelectronics (Taiwan) čÆčÆé›»å­'),
(43939, 'https://ror.org/037qwc103', 'no_lang_code', 1, 'https://ror.org/037qwc103 Yaskawa Electric (Japan) å®‰å·é›»ę©Ÿ'),
(43940, 'https://ror.org/001m9wh67', 'no_lang_code', 1, 'https://ror.org/001m9wh67 Taiyo Yuden (Japan) å¤Ŗé™½čŖ˜é›»ę Ŗå¼ä¼šē¤¾'),
(43941, 'https://ror.org/04dgpsg75', 'no_lang_code', 1, 'https://ror.org/04dgpsg75 Yazaki (Japan) ēŸ¢å“Žē·ę„­ę Ŗå¼ä¼šē¤¾'),
(43942, 'https://ror.org/02s50ft61', 'no_lang_code', 1, 'https://ror.org/02s50ft61 Yeda Research and Development (Israel) ידע חברה ×œ×ž×—×§×Ø ופתוח'),
(43943, 'https://ror.org/04dzjva98', 'no_lang_code', 1, 'https://ror.org/04dzjva98 TCL (China) TCLē§‘ęŠ€é›†å›¢'),
(43944, 'https://ror.org/04rb4b520', 'no_lang_code', 1, 'https://ror.org/04rb4b520 Tetra Laval (Switzerland)'),
(43945, 'https://ror.org/04ftb9f20', 'no_lang_code', 1, 'https://ror.org/04ftb9f20 YKK (Japan) å‰ē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43946, 'https://ror.org/03wkqfb95', 'no_lang_code', 1, 'https://ror.org/03wkqfb95 Shimano (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ćƒžćƒŽ'),
(43947, 'https://ror.org/05tq4a167', 'no_lang_code', 1, 'https://ror.org/05tq4a167 ShinEtsu Chemical (Japan) äæ”č¶ŠåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(43948, 'https://ror.org/04bdy7914', 'no_lang_code', 1, 'https://ror.org/04bdy7914 Yokogawa Electric (Japan) ęØŖę²³é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(43949, 'https://ror.org/02pz14q94', 'no_lang_code', 1, 'https://ror.org/02pz14q94 Shinko Electric Industries (Japan) 新光電気巄愭'),
(43950, 'https://ror.org/00f96dc95', 'en', 1, 'https://ror.org/00f96dc95 Kamehameha Schools'),
(43951, 'https://ror.org/041zrej81', 'no_lang_code', 1, 'https://ror.org/041zrej81 AccessTR'),
(43952, 'https://ror.org/02psd9a04', 'no_lang_code', 1, 'https://ror.org/02psd9a04 Advocates for Human Potential (United States)'),
(43953, 'https://ror.org/045bds194', 'no_lang_code', 1, 'https://ror.org/045bds194 KRA (United States)'),
(43954, 'https://ror.org/00rmkq989', 'en', 1, 'https://ror.org/00rmkq989 American School for the Deaf'),
(43955, 'https://ror.org/04kre2459', 'en', 1, 'https://ror.org/04kre2459 Lee Countys Department of Public Safety'),
(43956, 'https://ror.org/04rfpye28', 'no_lang_code', 1, 'https://ror.org/04rfpye28 Applied Sciences Laboratory (United States)'),
(43957, 'https://ror.org/04kfhcd40', 'no_lang_code', 1, 'https://ror.org/04kfhcd40 Aspen Professional Services (United States)'),
(43958, 'https://ror.org/028t9cg70', 'en', 1, 'https://ror.org/028t9cg70 Baylor Institute for Rehabilitation'),
(43959, 'https://ror.org/046xcaf86', 'no_lang_code', 1, 'https://ror.org/046xcaf86 FIH Mobile (China)'),
(43960, 'https://ror.org/04zq76066', 'en', 1, 'https://ror.org/04zq76066 San Diego Association of Governments'),
(43961, 'https://ror.org/05e2svc96', 'en', 1, 'https://ror.org/05e2svc96 Connecticut Department of Rehabilitation Services'),
(43962, 'https://ror.org/057gq2q80', 'en', 1, 'https://ror.org/057gq2q80 Mississippi Youth Wheelchair League'),
(43963, 'https://ror.org/04ftr6m30', 'en', 1, 'https://ror.org/04ftr6m30 Center for Independent Living'),
(43964, 'https://ror.org/00pzmcd49', 'en', 1, 'https://ror.org/00pzmcd49 Missouri Assistive Technology'),
(43965, 'https://ror.org/04k7gbj45', 'en', 1, 'https://ror.org/04k7gbj45 Center for Career and Community Research'),
(43966, 'https://ror.org/02f7yzh91', 'no_lang_code', 1, 'https://ror.org/02f7yzh91 GlobalFoundries (Cayman Islands)'),
(43967, 'https://ror.org/01742jq13', 'en', 1, 'https://ror.org/01742jq13 Mount Sinai Beth Israel'),
(43968, 'https://ror.org/02nx94911', 'en', 1, 'https://ror.org/02nx94911 Southwest Educational Development Center'),
(43969, 'https://ror.org/0320ccm28', 'en', 1, 'https://ror.org/0320ccm28 National Council on Rehabilitation Education'),
(43970, 'https://ror.org/048k12m08', 'en', 1, 'https://ror.org/048k12m08 Spinal Cord Injury Association'),
(43971, 'https://ror.org/050qk7w58', 'no_lang_code', 1, 'https://ror.org/050qk7w58 Garrett Technologies (United States)'),
(43972, 'https://ror.org/004nj3f45', 'en', 1, 'https://ror.org/004nj3f45 Virginia Assistive Technology System'),
(43973, 'https://ror.org/00zhmx351', 'en', 1, 'https://ror.org/00zhmx351 Brain Injury Association of New York State'),
(43974, 'https://ror.org/046sp4t54', 'en', 1, 'https://ror.org/046sp4t54 Institute for Community Inclusion'),
(43975, 'https://ror.org/01d6dvg07', 'en', 1, 'https://ror.org/01d6dvg07 North Dakota Protection and Advocacy Project'),
(43976, 'https://ror.org/00wj3fx08', 'en', 1, 'https://ror.org/00wj3fx08 Disability Rights New Jersey'),
(43977, 'https://ror.org/05vjf0e82', 'en', 1, 'https://ror.org/05vjf0e82 Georgia Tech Tools for Life'),
(43978, 'https://ror.org/005scs312', 'en', 1, 'https://ror.org/005scs312 World Rehabilitation Fund'),
(43979, 'https://ror.org/002f4wy65', 'en', 1, 'https://ror.org/002f4wy65 Advocado Press'),
(43980, 'https://ror.org/01h1v4623', 'en', 1, 'https://ror.org/01h1v4623 Association for the Severely Handicapped'),
(43981, 'https://ror.org/02yd61q08', 'en', 1, 'https://ror.org/02yd61q08 Western New York Independent Living'),
(43982, 'https://ror.org/04v9jks60', 'en', 1, 'https://ror.org/04v9jks60 Boston Center for Independent Living'),
(43983, 'https://ror.org/042nxhq59', 'no_lang_code', 1, 'https://ror.org/042nxhq59 Alpha and Omega Semiconductor (Bermuda)'),
(43984, 'https://ror.org/002qxpg72', 'no_lang_code', 1, 'https://ror.org/002qxpg72 ON Semiconductor (United Kingdom)'),
(43985, 'https://ror.org/031kj1n86', 'en', 1, 'https://ror.org/031kj1n86 National Association of the Deaf'),
(43986, 'https://ror.org/02sfkc120', 'en', 1, 'https://ror.org/02sfkc120 Emory Rehabilitation Hospital'),
(43987, 'https://ror.org/02fs1zk32', 'no_lang_code', 1, 'https://ror.org/02fs1zk32 Farus (United States)'),
(43988, 'https://ror.org/056qtgk16', 'no_lang_code', 1, 'https://ror.org/056qtgk16 PureTech (United States)'),
(43989, 'https://ror.org/0428qxx32', 'no_lang_code', 1, 'https://ror.org/0428qxx32 Akikusa Gakuen Junior College ē§‹č‰å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(43990, 'https://ror.org/00tsc8d72', 'en', 1, 'https://ror.org/00tsc8d72 Akita Nutrition Junior College ē§‹ē”°ę „é¤ŠēŸ­ęœŸå¤§å­¦'),
(43991, 'https://ror.org/0124nkn39', 'en', 1, 'https://ror.org/0124nkn39 Uwajima Fisheries High school ę„›åŖ›ēœŒē«‹å®‡å’Œå³¶ę°“ē”£é«˜ē­‰å­¦ę ”'),
(43992, 'https://ror.org/03x159f63', 'en', 1, 'https://ror.org/03x159f63 Ehime Prefectural Education Center ę„›åŖ›ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(43993, 'https://ror.org/045nchz19', 'en', 1, 'https://ror.org/045nchz19 Asia Center for Air Pollution Research ć‚¢ć‚øć‚¢å¤§ę°—ę±šęŸ“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(43994, 'https://ror.org/03p5s8507', 'en', 1, 'https://ror.org/03p5s8507 Niihama City Sumino Elementary School ę–°å±…ęµœåø‚ē«‹č§’é‡Žå°å­¦ę ”'),
(43995, 'https://ror.org/035739v40', 'no_lang_code', 1, 'https://ror.org/035739v40 Chiba Keiai Junior College åƒč‘‰ę•¬ę„›ēŸ­ęœŸå¤§å­¦'),
(43996, 'https://ror.org/00ryrev47', 'en', 1, 'https://ror.org/00ryrev47 Advanced Science, Technology & Management Research Institute of Kyoto äŗ¬éƒ½é«˜åŗ¦ęŠ€č”“ē ”ē©¶ę‰€'),
(43997, 'https://ror.org/015bg7p91', 'en', 1, 'https://ror.org/015bg7p91 International Pacific University Women''s College ē’°å¤Ŗå¹³ę“‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(43998, 'https://ror.org/0171gx961', 'en', 1, 'https://ror.org/0171gx961 Chiba Museum of Science and Industry åƒč‘‰ēœŒē«‹ē¾ä»£ē”£ę„­ē§‘å­¦é¤Ø'),
(43999, 'https://ror.org/05nt41p53', 'no_lang_code', 1, 'https://ror.org/05nt41p53 Akita Prefectural Museum ē§‹ē”°ēœŒē«‹åšē‰©é¤Ø'),
(44000, 'https://ror.org/04hnxg730', 'en', 1, 'https://ror.org/04hnxg730 Chiba Prefectural Education Center åƒč‘‰ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44001, 'https://ror.org/00145nn26', 'en', 1, 'https://ror.org/00145nn26 Agency for Cultural Affairs ę–‡åŒ–åŗ'),
(44002, 'https://ror.org/027y5ew45', 'en', 1, 'https://ror.org/027y5ew45 Research Institute of Environment, Agriculture and Fisheries, Osaka Prefecture å¤§é˜Ŗåŗœē«‹ē’°å¢ƒč¾²ęž—ę°“ē”£ē·åˆē ”ē©¶ę‰€'),
(44003, 'https://ror.org/00xx28w63', 'en', 1, 'https://ror.org/00xx28w63 Akita Prefectural Education Center ē§‹ē”°ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44004, 'https://ror.org/00wj54d12', 'en', 1, 'https://ror.org/00wj54d12 Funabashi Keimei High School åƒč‘‰ēœŒē«‹čˆ¹ę©‹å•“ę˜Žé«˜ē­‰å­¦ę ”'),
(44005, 'https://ror.org/04s6age96', 'en', 1, 'https://ror.org/04s6age96 Aichi Bunkyo Women''s College ę„›ēŸ„ę–‡ę•™å„³å­ēŸ­ęœŸå¤§å­¦'),
(44006, 'https://ror.org/01m2xfd77', 'en', 1, 'https://ror.org/01m2xfd77 Akita Research Institute for Food and Brewing ē§‹ē”°ēœŒē·åˆé£Ÿå“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(44007, 'https://ror.org/0271q3486', 'en', 1, 'https://ror.org/0271q3486 Foundation Diamond Aging Society Research Foundation ćƒ€ć‚¤ćƒ¤é«˜é½¢ē¤¾ä¼šē ”ē©¶č²”å›£'),
(44008, 'https://ror.org/01sp6nj31', 'en', 1, 'https://ror.org/01sp6nj31 Chiba prefectural Matsudo international high school ę¾ęˆøå›½éš›é«˜ē­‰å­¦ę ”'),
(44009, 'https://ror.org/04rfpd926', 'no_lang_code', 1, 'https://ror.org/04rfpd926 Aichi Gakusen College ę„›ēŸ„å­¦ę³‰ēŸ­ęœŸå¤§å­¦'),
(44010, 'https://ror.org/03vg8tm37', 'en', 1, 'https://ror.org/03vg8tm37 Akita Industrial Technology Center ē§‹ē”°ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(44011, 'https://ror.org/02akbc835', 'en', 1, 'https://ror.org/02akbc835 Chiba Prefectural Sawara High School åƒč‘‰ēœŒē«‹ä½åŽŸé«˜ē­‰å­¦ę ”'),
(44012, 'https://ror.org/0010e1p75', 'en', 1, 'https://ror.org/0010e1p75 Chiba Prefectural Institute of Public Health åƒč‘‰ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(44013, 'https://ror.org/0540dg488', 'en', 1, 'https://ror.org/0540dg488 Aichi Prefectural Higashiura High School ę„›ēŸ„ēœŒē«‹ę±ęµ¦é«˜ē­‰å­¦ę ”'),
(44014, 'https://ror.org/00eqr6v35', 'en', 1, 'https://ror.org/00eqr6v35 Katori City Higashiodo Elementary School é¦™å–åø‚ē«‹ę±å¤§ęˆøå°å­¦ę ”'),
(44015, 'https://ror.org/04wyrwx07', 'en', 1, 'https://ror.org/04wyrwx07 Chiba Prefectural Kimitsu Aoba High School åƒč‘‰ēœŒē«‹å›ę“„é’č‘‰é«˜ē­‰å­¦ę ”'),
(44016, 'https://ror.org/01rqxmc80', 'en', 1, 'https://ror.org/01rqxmc80 Aichi Medical College for Physical and Occupational Therapy ę„›ēŸ„åŒ»ē™‚å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(44017, 'https://ror.org/04ecxrz19', 'en', 1, 'https://ror.org/04ecxrz19 Japan Chemical Analysis Center ę—„ęœ¬åˆ†ęžć‚»ćƒ³ć‚æćƒ¼'),
(44018, 'https://ror.org/018ycpa16', 'en', 1, 'https://ror.org/018ycpa16 Ancient Orient Museum å¤ä»£ć‚ŖćƒŖć‚Øćƒ³ćƒˆåšē‰©é¤Ø'),
(44019, 'https://ror.org/051scxa97', 'en', 1, 'https://ror.org/051scxa97 Makino Botanical Garden é«˜ēŸ„ēœŒē«‹ē‰§é‡Žę¤ē‰©åœ’'),
(44020, 'https://ror.org/05nz1qp55', 'en', 1, 'https://ror.org/05nz1qp55 Aomori Akenohoshi Junior College é’ę£®ę˜Žć®ę˜ŸēŸ­ęœŸå¤§å­¦'),
(44021, 'https://ror.org/003hspx48', 'en', 1, 'https://ror.org/003hspx48 Aichi Prefectural Nisshin West High School ę„›ēŸ„ēœŒē«‹ę—„é€²č„æé«˜ē­‰å­¦ę ”'),
(44022, 'https://ror.org/04j4pme17', 'en', 1, 'https://ror.org/04j4pme17 Institute of Systems, Information Technologies and Nanotechnologies ä¹å·žå…ˆē«Æē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(44023, 'https://ror.org/01q62y884', 'en', 1, 'https://ror.org/01q62y884 Aomori Chuo Junior College é’ę£®äø­å¤®ēŸ­ęœŸå¤§å­¦'),
(44024, 'https://ror.org/054yya609', 'en', 1, 'https://ror.org/054yya609 Okazaki Senior High School ę„›ēŸ„ēœŒē«‹å²”å“Žé«˜ē­‰å­¦ę ”'),
(44025, 'https://ror.org/02jsn4551', 'en', 1, 'https://ror.org/02jsn4551 Foundation Learning Software Information Research Center å…¬ē›Šč²”å›£ę³•äŗŗ å­¦ēæ’ć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢ęƒ…å ±ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(44026, 'https://ror.org/04mrer463', 'en', 1, 'https://ror.org/04mrer463 Aomori High School é’ę£®ēœŒē«‹é’ę£®é«˜ē­‰å­¦ę ”'),
(44027, 'https://ror.org/007zab522', 'en', 1, 'https://ror.org/007zab522 Fukuoka Women''s Junior College ē¦å²”å„³å­ēŸ­ęœŸå¤§å­¦'),
(44028, 'https://ror.org/05ryaaw10', 'en', 1, 'https://ror.org/05ryaaw10 College of Healthcare Management äæå„åŒ»ē™‚ēµŒå–¶å¤§å­¦'),
(44029, 'https://ror.org/03q8prw02', 'no_lang_code', 1, 'https://ror.org/03q8prw02 Mitsui Bunko å…¬ē›Šč²”å›£ę³•äŗŗ 三井文庫'),
(44030, 'https://ror.org/03e0ttw56', 'en', 1, 'https://ror.org/03e0ttw56 Aomori Prefectural Industrial Technology Center é’ę£®ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(44031, 'https://ror.org/040g6sv55', 'en', 1, 'https://ror.org/040g6sv55 Fukushima Prefectural Aizu Technical High School ē¦å³¶ēœŒē«‹ä¼šę“„å·„ę„­é«˜ē­‰å­¦ę ”'),
(44032, 'https://ror.org/024rpvq56', 'en', 1, 'https://ror.org/024rpvq56 Foundation Nerve Institute å…¬ē›Šč²”å›£ę³•äŗŗē„žēµŒē ”ē©¶ę‰€'),
(44033, 'https://ror.org/01xzqee24', 'en', 1, 'https://ror.org/01xzqee24 Aichi Prefectural Chiryu East Koto School ę„›ēŸ„ēœŒē«‹ēŸ„ē«‹ę±é«˜ē­‰å­¦ę ”'),
(44034, 'https://ror.org/013ch2r08', 'en', 1, 'https://ror.org/013ch2r08 Fukushima Prefectural Asaka High School ē¦å³¶ēœŒē«‹å®‰ē©é«˜ē­‰å­¦ę ”'),
(44035, 'https://ror.org/048301432', 'en', 1, 'https://ror.org/048301432 Sendai Municipal Sendai Commercial High School ä»™å°å•†ę„­é«˜ē­‰å­¦ę ”'),
(44036, 'https://ror.org/02qy0m851', 'en', 1, 'https://ror.org/02qy0m851 Aomori Prefectural Local Museum é’ę£®ēœŒē«‹éƒ·åœŸé¤Ø'),
(44037, 'https://ror.org/04em49j63', 'en', 1, 'https://ror.org/04em49j63 Kyoto Human Rights Research Institute å…¬ē›Šč²”å›£ę³•äŗŗ äø–ē•ŒäŗŗęØ©å•é”Œē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(44038, 'https://ror.org/048fx3n07', 'en', 1, 'https://ror.org/048fx3n07 Fukushima Medical University Hospital ē¦å³¶ēœŒē«‹åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(44039, 'https://ror.org/0282pkr46', 'en', 1, 'https://ror.org/0282pkr46 Fukuoka Junior College for Kindergarten Teachers ē¦å²”ć“ć©ć‚‚ēŸ­ęœŸå¤§å­¦'),
(44040, 'https://ror.org/01h9gbf83', 'en', 1, 'https://ror.org/01h9gbf83 Fukushima Prefectural Museum of Art ē¦å³¶ēœŒē«‹ē¾Žč”“é¤Ø'),
(44041, 'https://ror.org/0044zd471', 'en', 1, 'https://ror.org/0044zd471 Foundation Osaka City Museum Association å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗåø‚åšē‰©é¤Øå”ä¼š'),
(44042, 'https://ror.org/02rfh6m08', 'en', 1, 'https://ror.org/02rfh6m08 Fukushima Prefectural Police ē¦å³¶ēœŒč­¦åÆŸęœ¬éƒØ'),
(44043, 'https://ror.org/05dmz1027', 'en', 1, 'https://ror.org/05dmz1027 Institute of Politics and Economy å…¬ē›Šč²”å›£ę³•äŗŗ ę”æę²»ēµŒęøˆē ”ē©¶ę‰€'),
(44044, 'https://ror.org/03yrr7p29', 'en', 1, 'https://ror.org/03yrr7p29 Aichi Prefectural Education Center ę„›ēŸ„ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44045, 'https://ror.org/036vt3264', 'en', 1, 'https://ror.org/036vt3264 Railway Technical Research Institute é‰„é“ē·åˆęŠ€č”“ē ”ē©¶ę‰€'),
(44046, 'https://ror.org/02j2kkr61', 'en', 1, 'https://ror.org/02j2kkr61 Fukushima Prefectural Culture Center ē¦å³¶ēœŒę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(44047, 'https://ror.org/03m02qa07', 'en', 1, 'https://ror.org/03m02qa07 Aoyama Gakuin Women''s Junior College é’å±±å­¦é™¢å„³å­ēŸ­ęœŸå¤§å­¦'),
(44048, 'https://ror.org/04r1zyg39', 'en', 1, 'https://ror.org/04r1zyg39 Denenchofu Lutheran Kindergarten'),
(44049, 'https://ror.org/033prtz11', 'en', 1, 'https://ror.org/033prtz11 Architectural Institute of Japan ę—„ęœ¬å»ŗēÆ‰å­¦ä¼š'),
(44050, 'https://ror.org/023yn4412', 'en', 1, 'https://ror.org/023yn4412 Hekinan Technical High School ę„›ēŸ„ēœŒē«‹ē¢§å—å·„ę„­é«˜ē­‰å­¦ę ”'),
(44051, 'https://ror.org/03tz3ps07', 'en', 1, 'https://ror.org/03tz3ps07 Japan Economic Research Institute'),
(44052, 'https://ror.org/02avm0p22', 'en', 1, 'https://ror.org/02avm0p22 Aichi Prefectural Narumi High School ę„›ēŸ„ēœŒē«‹é³“ęµ·é«˜ē­‰å­¦ę ”'),
(44053, 'https://ror.org/037q1ds38', 'en', 1, 'https://ror.org/037q1ds38 Fukushima Prefecture History Museum ē¦å³¶ēœŒę­“å²č³‡ę–™é¤ØćÆ'),
(44054, 'https://ror.org/05fdzaf62', 'en', 1, 'https://ror.org/05fdzaf62 Statistical Information Institute for Consulting Analysis ēµ±čØˆęƒ…å ±ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(44055, 'https://ror.org/01xq72953', 'en', 1, 'https://ror.org/01xq72953 Doshisha International Junior and Senior High School'),
(44056, 'https://ror.org/00wnbwz45', 'no_lang_code', 1, 'https://ror.org/00wnbwz45 Fukushima Technology Centre (Japan) ē¦å³¶ēœŒćƒć‚¤ćƒ†ć‚Æćƒ—ćƒ©ć‚¶'),
(44057, 'https://ror.org/004np3m61', 'en', 1, 'https://ror.org/004np3m61 National Institute of Technology, Ariake College ęœ‰ę˜Žå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44058, 'https://ror.org/03b9b5x92', 'en', 1, 'https://ror.org/03b9b5x92 Foundation Wakasa Wan Energy Research Center å…¬ē›Šč²”å›£ę³•äŗŗ č‹„ē‹­ę¹¾ć‚Øćƒćƒ«ć‚®ćƒ¼ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(44059, 'https://ror.org/0140zan98', 'en', 1, 'https://ror.org/0140zan98 Gunma Prefectural Museum of History'),
(44060, 'https://ror.org/0451fwt31', 'en', 1, 'https://ror.org/0451fwt31 Doshisha Kaori Junior and Senior High School'),
(44061, 'https://ror.org/04bcz8b84', 'en', 1, 'https://ror.org/04bcz8b84 Osaka City Cultural Properties Association å¤§é˜Ŗę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(44062, 'https://ror.org/01pmhfw02', 'en', 1, 'https://ror.org/01pmhfw02 Asahi City Board of Education ę—­åø‚ę•™č‚²å§”å“”ä¼š'),
(44063, 'https://ror.org/02mvc4m81', 'en', 1, 'https://ror.org/02mvc4m81 Aichi Prefectural Ichinomiya Nishi High School ę„›ēŸ„ēœŒē«‹äø€å®®č„æé«˜ē­‰å­¦ę ”'),
(44064, 'https://ror.org/01ykj2t23', 'en', 1, 'https://ror.org/01ykj2t23 Fuzzy Systems Institute ćƒ•ć‚”ć‚øć‚£ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę‰€'),
(44065, 'https://ror.org/03shw7f84', 'en', 1, 'https://ror.org/03shw7f84 Aicihi Prefectural Kariya High School ę„›ēŸ„ēœŒē«‹åˆˆč°·é«˜ē­‰å­¦ę ”'),
(44066, 'https://ror.org/03raj9g82', 'en', 1, 'https://ror.org/03raj9g82 Asahikawa Museum of Sculpture äø­åŽŸę‚ŒäŗŒéƒŽčØ˜åæµę—­å·åø‚å½«åˆ»ē¾Žč”“é¤Ø'),
(44067, 'https://ror.org/01fp49n29', 'en', 1, 'https://ror.org/01fp49n29 Gakushuin Primary School å­¦ēæ’é™¢åˆē­‰ē§‘'),
(44068, 'https://ror.org/02bcq9e02', 'en', 1, 'https://ror.org/02bcq9e02 Ehime Prefectural Matsuyama Technical High School ę„›åŖ›ēœŒē«‹ę¾å±±å·„ę„­é«˜ē­‰å­¦ę ”'),
(44069, 'https://ror.org/01e6m8g97', 'en', 1, 'https://ror.org/01e6m8g97 Fukui City Museum of Natural History'),
(44070, 'https://ror.org/028m7n806', 'en', 1, 'https://ror.org/028m7n806 Aichi Prefectural Mitsu High School ę„›ēŸ„ēœŒē«‹å¾”ę“„é«˜ē­‰å­¦ę ”'),
(44071, 'https://ror.org/00br1x675', 'en', 1, 'https://ror.org/00br1x675 Gangoji Institute for Research of Cultural Property å…ƒčˆˆåÆŗę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(44072, 'https://ror.org/00wgz8973', 'en', 1, 'https://ror.org/00wgz8973 Asahikawa, Hokkaido Nishi High School åŒ—ęµ·é“ę—­å·č„æé«˜ē­‰å­¦ę ”'),
(44073, 'https://ror.org/01cm93p29', 'en', 1, 'https://ror.org/01cm93p29 Fukui Prefectural Dinosaur Museum ē¦äŗ•ēœŒē«‹ęē«œåšē‰©é¤Ø'),
(44074, 'https://ror.org/03et3bc78', 'en', 1, 'https://ror.org/03et3bc78 Hachinohe Technical High School é’ę£®ēœŒē«‹å…«ęˆøå·„ę„­é«˜ē­‰å­¦ę ”'),
(44075, 'https://ror.org/00jh11v62', 'en', 1, 'https://ror.org/00jh11v62 Okazaki Higashi High School ę„›ēŸ„ēœŒē«‹å²”å“Žę±é«˜ē­‰å­¦ę ”'),
(44076, 'https://ror.org/025pkgg38', 'en', 1, 'https://ror.org/025pkgg38 Fukui Prefectural Fujishima High School ē¦äŗ•ēœŒē«‹č—¤å³¶é«˜ē­‰å­¦ę ”'),
(44077, 'https://ror.org/00x49t688', 'en', 1, 'https://ror.org/00x49t688 Fukui Prefectural Maruoka High School ē¦äŗ•ēœŒē«‹äøøå²”é«˜ē­‰å­¦ę ”'),
(44078, 'https://ror.org/04qbzaj86', 'en', 1, 'https://ror.org/04qbzaj86 Hakodate Junior College å‡½é¤ØēŸ­ęœŸå¤§å­¦'),
(44079, 'https://ror.org/05hjnjp60', 'en', 1, 'https://ror.org/05hjnjp60 Ashikaga Junior College 足利短期大学'),
(44080, 'https://ror.org/042gfy005', 'en', 1, 'https://ror.org/042gfy005 Geospatial Information Authority of Japan å›½åœŸåœ°ē†é™¢'),
(44081, 'https://ror.org/05ns6w738', 'en', 1, 'https://ror.org/05ns6w738 Hakodate Otani College å‡½é¤Øå¤§č°·ēŸ­ęœŸå¤§å­¦'),
(44082, 'https://ror.org/01ge2tp14', 'en', 1, 'https://ror.org/01ge2tp14 Fukui Prefecture Special Education Center ē¦äŗ•ēœŒē‰¹åˆ„ę”Æę“ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44083, 'https://ror.org/04sq30h86', 'en', 1, 'https://ror.org/04sq30h86 Fukuoka College of Health Sciences ē¦å²”åŒ»ē™‚ēŸ­ęœŸå¤§å­¦'),
(44084, 'https://ror.org/0495n4t52', 'en', 1, 'https://ror.org/0495n4t52 Hakuho Women''s College ē™½é³³å„³å­ēŸ­ęœŸå¤§å­¦'),
(44085, 'https://ror.org/005a4h693', 'en', 1, 'https://ror.org/005a4h693 Aichi Prefectural Kasugai Higashi High School ę„›ēŸ„ēœŒē«‹ę˜„ę—„äŗ•ę±é«˜ē­‰å­¦ę ”'),
(44086, 'https://ror.org/03e0zx788', 'en', 1, 'https://ror.org/03e0zx788 Fukuoka Institute of Technology Junior College ē¦å²”å·„ę„­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(44087, 'https://ror.org/01tyesb47', 'no_lang_code', 1, 'https://ror.org/01tyesb47 Fukuoka Jo Gakuin Nursing University ē¦å²”å„³å­¦é™¢ēœ‹č­·å¤§å­¦'),
(44088, 'https://ror.org/00bveh077', 'en', 1, 'https://ror.org/00bveh077 Kanagawa Institute of Technology Atsugi Children''s Science Museum åŽšęœØåø‚å­ć©ć‚‚ē§‘å­¦é¤Ø'),
(44089, 'https://ror.org/00djzv109', 'en', 1, 'https://ror.org/00djzv109 Komaki Technical High School ę„›ēŸ„ēœŒē«‹å°ē‰§å·„ę„­é«˜ē­‰å­¦ę ”'),
(44090, 'https://ror.org/0465np396', 'en', 1, 'https://ror.org/0465np396 Fukuoka Technical High School ē¦å²”ēœŒē«‹ē¦å²”å·„ę„­é«˜ē­‰å­¦ę ”'),
(44091, 'https://ror.org/00t01zk24', 'en', 1, 'https://ror.org/00t01zk24 Meiwa High School ę„›ēŸ„ēœŒē«‹ę˜Žå’Œé«˜ē­‰å­¦ę ”'),
(44092, 'https://ror.org/025b2hx26', 'en', 1, 'https://ror.org/025b2hx26 National Institute of Technology, Gifu College å²é˜œå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44093, 'https://ror.org/03b00jm70', 'en', 1, 'https://ror.org/03b00jm70 Fukuoka Prefectural Kokura High School ē¦å²”ēœŒē«‹å°å€‰é«˜ē­‰å­¦ę ”'),
(44094, 'https://ror.org/00z8pd398', 'en', 1, 'https://ror.org/00z8pd398 Hamamatsu University Hospital ęµœę¾å¤§å­¦ 病院'),
(44095, 'https://ror.org/02v2hb481', 'en', 1, 'https://ror.org/02v2hb481 Fukuoka Prefectural Board of Education ę•™č‚²ć®ē¦å²”ēœŒäŗ‹å‹™ę‰€'),
(44096, 'https://ror.org/02vw9t771', 'en', 1, 'https://ror.org/02vw9t771 Akita Prefectural Akita High School ē§‹ē”°ēœŒē«‹ē§‹ē”°é«˜ē­‰å­¦ę ”'),
(44097, 'https://ror.org/00f31yh98', 'en', 1, 'https://ror.org/00f31yh98 Gifu Prefectural Research Institute for Fisheries and Aquatic Environments å²é˜œēœŒę°“ē”£ē ”ē©¶ę‰€'),
(44098, 'https://ror.org/05jna2v15', 'en', 1, 'https://ror.org/05jna2v15 Yabe Junior High School 矢部中学栔'),
(44099, 'https://ror.org/01qxfbw14', 'en', 1, 'https://ror.org/01qxfbw14 Aichi Prefectural Okazaki School for the Deaf ę„›ēŸ„ēœŒē«‹å²”å“Žč¾å­¦ę ”'),
(44100, 'https://ror.org/02wp0mx48', 'en', 1, 'https://ror.org/02wp0mx48 Gifu Prefectural Gifu Technical High School å²é˜œēœŒē«‹å²é˜œå·„ę„­é«˜ē­‰å­¦ę ”'),
(44101, 'https://ror.org/02r5rm445', 'en', 1, 'https://ror.org/02r5rm445 Benesse Educational Research and Development Institute ćƒ™ćƒćƒƒć‚»ę•™č‚²ē·åˆē ”ē©¶ę‰€'),
(44102, 'https://ror.org/03xtkzq16', 'no_lang_code', 1, 'https://ror.org/03xtkzq16 Beppu Mizobe Gakuen College åˆ„åŗœęŗéƒØå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(44103, 'https://ror.org/02h7nc187', 'en', 1, 'https://ror.org/02h7nc187 Aichi Prefectural Tsurugi hill high school ę„›ēŸ„ēœŒē«‹é¶“åŸŽäø˜é«˜ē­‰å­¦ę ”'),
(44104, 'https://ror.org/001mpte05', 'en', 1, 'https://ror.org/001mpte05 Hiroshima Prefectural Police 広島県警察'),
(44105, 'https://ror.org/012msr517', 'en', 1, 'https://ror.org/012msr517 Hattori Botanical Laboratory ęœéƒØę¤ē‰©ē ”ē©¶ę‰€'),
(44106, 'https://ror.org/03ppgxn28', 'en', 1, 'https://ror.org/03ppgxn28 Aichi Prefectural Jishukan Senior High School ę„›ēŸ„ēœŒē«‹ę™‚ēæ’é¤Øé«˜ē­‰å­¦ę ”'),
(44107, 'https://ror.org/03q8m4c63', 'en', 1, 'https://ror.org/03q8m4c63 Hiroshima Prefectural Education Center åŗƒå³¶ēœŒē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44108, 'https://ror.org/04cadt597', 'en', 1, 'https://ror.org/04cadt597 Heisei College of Health Sciences å¹³ęˆåŒ»ē™‚ēŸ­ęœŸå¤§å­¦'),
(44109, 'https://ror.org/05xfayp21', 'en', 1, 'https://ror.org/05xfayp21 Higashi Chikushi Junior College ę±ē­‘ē“«ēŸ­ęœŸå¤§å­¦'),
(44110, 'https://ror.org/042v20e14', 'en', 1, 'https://ror.org/042v20e14 Gifu Prefectural Research Institute for Forests å²é˜œēœŒę£®ęž—ē ”ē©¶ę‰€'),
(44111, 'https://ror.org/02rqdr293', 'en', 1, 'https://ror.org/02rqdr293 Building Research Institute ē­‘ę³¢ē ”ē©¶å­¦åœ’éƒ½åø‚äŗ¤ęµå”č­°ä¼š'),
(44112, 'https://ror.org/03gd0xf29', 'en', 1, 'https://ror.org/03gd0xf29 Gifu Prefectural Yaotsu High School å²é˜œēœŒē«‹å…«ē™¾ę“„é«˜ē­‰å­¦ę ”'),
(44113, 'https://ror.org/04xt43068', 'no_lang_code', 1, 'https://ror.org/04xt43068 Hokkaido Museum åŒ—ęµ·é“åšē‰©é¤Ø'),
(44114, 'https://ror.org/05makdb23', 'en', 1, 'https://ror.org/05makdb23 Gifu Prefecture General Education Center å²é˜œēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44115, 'https://ror.org/025v7m073', 'en', 1, 'https://ror.org/025v7m073 Hokkaido Ainu Culture Research Center åŒ—ęµ·é“åŗåŒ—ęµ·é“ē«‹ć‚¢ć‚¤ćƒŒę°‘ę—ę–‡åŒ–ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(44116, 'https://ror.org/053sbg434', 'en', 1, 'https://ror.org/053sbg434 Aomori Prefectural Mito High School é’ę£®ēœŒē«‹äø‰ęˆøé«˜ē­‰å­¦ę ”'),
(44117, 'https://ror.org/05kyej320', 'en', 1, 'https://ror.org/05kyej320 Hokkaido Archaeological Center åŒ—ęµ·é“åŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(44118, 'https://ror.org/00gk1rp50', 'en', 1, 'https://ror.org/00gk1rp50 Aoyama Gakuin Senior High School é’å±±å­¦é™¢äø­ē­‰éƒØćƒ»é«˜ē­‰éƒØ'),
(44119, 'https://ror.org/01brtaa74', 'en', 1, 'https://ror.org/01brtaa74 Kani City Sunan Junior High School č˜‡å—äø­å­¦ę ”'),
(44120, 'https://ror.org/05cbzw944', 'en', 1, 'https://ror.org/05cbzw944 Tokyo Metropolitan Aoyama High School ę±äŗ¬éƒ½ē«‹é’å±±é«˜ē­‰å­¦ę ”'),
(44121, 'https://ror.org/03jgdxs56', 'en', 1, 'https://ror.org/03jgdxs56 Hokkaido Dental Technical College åŒ—ęµ·é“ę­Æē§‘ęŠ€č”“å°‚é–€å­¦ę ”'),
(44122, 'https://ror.org/0088z0796', 'en', 1, 'https://ror.org/0088z0796 Museum of Fine Arts, Gifu å²é˜œēœŒē¾Žč”“é¤Ø'),
(44123, 'https://ror.org/03nbg4460', 'en', 1, 'https://ror.org/03nbg4460 Center for Environmental Science in Saitama åŸ¼ēŽ‰ēœŒē’°å¢ƒē§‘å­¦å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(44124, 'https://ror.org/00wmxv853', 'no_lang_code', 1, 'https://ror.org/00wmxv853 Hokuriku Gakuin University åŒ—é™øå­¦é™¢å¤§å­¦'),
(44125, 'https://ror.org/00k9rsb32', 'en', 1, 'https://ror.org/00k9rsb32 Imakane Board of Education ä»Šé‡‘ē”ŗę•™č‚²å§”å“”ä¼š'),
(44126, 'https://ror.org/013shsh75', 'en', 1, 'https://ror.org/013shsh75 Center for National University Finance and Management å›½ē«‹å¤§å­¦č²”å‹™ćƒ»ēµŒå–¶ć‚»ćƒ³ć‚æćƒ¼'),
(44127, 'https://ror.org/00geks132', 'no_lang_code', 1, 'https://ror.org/00geks132 Motosu Shoyo High School å²é˜œēœŒē«‹ęœ¬å·£ę¾é™½é«˜ē­‰å­¦ę ”'),
(44128, 'https://ror.org/04d32wy52', 'en', 1, 'https://ror.org/04d32wy52 Hokkaido Musashi Women''s Junior College åŒ—ęµ·é“ę­¦č”µå„³å­ēŸ­ęœŸå¤§å­¦'),
(44129, 'https://ror.org/015wmee04', 'en', 1, 'https://ror.org/015wmee04 Hollywood Graduate School Of Beauty Business ē¾Žå®¹äŗ‹ę„­ć®ćƒćƒŖć‚¦ćƒƒćƒ‰å¤§å­¦é™¢'),
(44130, 'https://ror.org/03h2dv749', 'en', 1, 'https://ror.org/03h2dv749 Hokkaido Museum of Northern Peoples åŒ—ęµ·é“ē«‹åŒ—ę–¹ę°‘ę—åšē‰©é¤Ø'),
(44131, 'https://ror.org/031q06g37', 'en', 1, 'https://ror.org/031q06g37 Himeji University 姫路大学'),
(44132, 'https://ror.org/01md05p94', 'en', 1, 'https://ror.org/01md05p94 National Heavy Snow Youth Exchange House å›½ē«‹å¤§é›Ŗé’å°‘å¹“äŗ¤ęµć®å®¶'),
(44133, 'https://ror.org/03btcby75', 'en', 1, 'https://ror.org/03btcby75 Hokkaido Board of Education åŒ—ęµ·é“ę•™č‚²å§”å“”ä¼š'),
(44134, 'https://ror.org/03mxwtc74', 'en', 1, 'https://ror.org/03mxwtc74 Hosen College of Childhood Education ć“ć©ć‚‚ę•™č‚²å®ä»™å¤§å­¦'),
(44135, 'https://ror.org/048ndxt24', 'no_lang_code', 1, 'https://ror.org/048ndxt24 Himeji Hinomoto College å§«č·Æę—„ćƒŽęœ¬ēŸ­ęœŸå¤§å­¦'),
(44136, 'https://ror.org/02ms1t188', 'en', 1, 'https://ror.org/02ms1t188 Hokkaido Education Research Institute åŒ—ęµ·é“ē«‹ę•™č‚²ē ”ē©¶ę‰€'),
(44137, 'https://ror.org/00c33pd26', 'en', 1, 'https://ror.org/00c33pd26 Hokkaido Sapporo Kaisei High School åŒ—ęµ·é“ęœ­å¹Œé–‹ęˆé«˜ē­‰å­¦ę ”'),
(44138, 'https://ror.org/026yc8074', 'en', 1, 'https://ror.org/026yc8074 Hot Springs Research Institute of Kanagawa Prefecture ē„žå„ˆå·ēœŒęø©ę³‰åœ°å­¦ē ”ē©¶ę‰€'),
(44139, 'https://ror.org/008jqbh70', 'en', 1, 'https://ror.org/008jqbh70 Himeji High School å§«č·Æåø‚ē«‹å§«č·Æé«˜ē­‰å­¦ę ”'),
(44140, 'https://ror.org/05saknr96', 'en', 1, 'https://ror.org/05saknr96 Takezono Higashi Elementary School ć¤ćć°åø‚ē«‹ē«¹åœ’ę±å°å­¦ę ”'),
(44141, 'https://ror.org/03n4s8g35', 'en', 1, 'https://ror.org/03n4s8g35 Hokkaido Sapporo Kita High School åŒ—ęµ·é“ęœ­å¹ŒåŒ—é«˜ē­‰å­¦ę ”'),
(44142, 'https://ror.org/05gx9az59', 'no_lang_code', 1, 'https://ror.org/05gx9az59 Gumma Paz College ē¾¤é¦¬ćƒ‘ćƒ¼ć‚¹å¤§å­¦'),
(44143, 'https://ror.org/00chnh519', 'en', 1, 'https://ror.org/00chnh519 Hokkaido Sapporo Kiyota High School åŒ—ęµ·é“ęœ­å¹Œęø…ē”°é«˜ē­‰å­¦ę ”'),
(44144, 'https://ror.org/02357hp16', 'en', 1, 'https://ror.org/02357hp16 Gunma Museum of Natural History ē¾¤é¦¬ēœŒē«‹č‡Ŗē„¶å²åšē‰©é¤Ø'),
(44145, 'https://ror.org/05qxfse94', 'en', 1, 'https://ror.org/05qxfse94 Ibaraki Womens Junior College čŒØåŸŽå„³å­ēŸ­ęœŸå¤§å­¦'),
(44146, 'https://ror.org/02wjty955', 'en', 1, 'https://ror.org/02wjty955 Hokkaido Sapporo Shinkawa High School åŒ—ęµ·é“ęœ­å¹Œę–°å·é«˜ē­‰å­¦ę ”'),
(44147, 'https://ror.org/01g6rdp79', 'en', 1, 'https://ror.org/01g6rdp79 Gunma Nikken Polytechnic College 群馬旄建巄科専門学栔'),
(44148, 'https://ror.org/009cg4615', 'en', 1, 'https://ror.org/009cg4615 Hyogo Prefectural Police å…µåŗ«ēœŒč­¦åÆŸ'),
(44149, 'https://ror.org/05sgyt558', 'en', 1, 'https://ror.org/05sgyt558 Gunma Prefectural Institute of Agriculture and Forestry ē¾¤é¦¬ēœŒē«‹č¾²ęž—å¤§å­¦ę ”'),
(44150, 'https://ror.org/041bad643', 'en', 1, 'https://ror.org/041bad643 Gunma Prefectural Board of Education ē¾¤é¦¬ēœŒę•™č‚²å§”å“”ä¼šćƒ›'),
(44151, 'https://ror.org/0284mr070', 'no_lang_code', 1, 'https://ror.org/0284mr070 Hiroshima Cosmopolitan University åŗƒå³¶éƒ½åø‚å­¦åœ’å¤§å­¦'),
(44152, 'https://ror.org/03qyehc05', 'en', 1, 'https://ror.org/03qyehc05 Ikenobo Junior College ę± åŠēŸ­ęœŸå¤§å­¦'),
(44153, 'https://ror.org/04ars9107', 'en', 1, 'https://ror.org/04ars9107 Gunma Prefectural Fisheries Experimental Station 群馬県 - 氓産試験堓'),
(44154, 'https://ror.org/045k6ff56', 'en', 1, 'https://ror.org/045k6ff56 Ikuei Junior College č‚²č‹±ēŸ­ęœŸå¤§å­¦'),
(44155, 'https://ror.org/01g4z8x72', 'en', 1, 'https://ror.org/01g4z8x72 Gunma Industrial Technology Center ē¾¤é¦¬ēœŒē«‹ē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(44156, 'https://ror.org/00v2ys705', 'en', 1, 'https://ror.org/00v2ys705 Hyogo Prefectural Institute of Technology å…µåŗ«ēœŒē«‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(44157, 'https://ror.org/02ffb7k79', 'no_lang_code', 1, 'https://ror.org/02ffb7k79 Imabari Meitoku Junior College ä»Šę²»ę˜Žå¾³ēŸ­ęœŸå¤§å­¦'),
(44158, 'https://ror.org/02wmqzm35', 'en', 1, 'https://ror.org/02wmqzm35 Hiroshima Minami High School åŗƒå³¶ēœŒē«‹åŗƒå³¶ēš†å®Ÿé«˜ē­‰å­¦ę ”'),
(44159, 'https://ror.org/035b4az83', 'no_lang_code', 1, 'https://ror.org/035b4az83 Imagineering (Japan) ć‚¤ćƒžć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(44160, 'https://ror.org/02k37gc37', 'en', 1, 'https://ror.org/02k37gc37 Gunma Archaeological Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ē¾¤é¦¬ēœŒåŸ‹č”µę–‡åŒ–č²”čŖæęŸ»äŗ‹ę„­å›£'),
(44161, 'https://ror.org/00yv9a247', 'en', 1, 'https://ror.org/00yv9a247 Imperial Household Agency 宮内庁'),
(44162, 'https://ror.org/03bmyaj71', 'en', 1, 'https://ror.org/03bmyaj71 Japan Transport Research Institute äø€čˆ¬č²”å›£ę³•äŗŗ é‹č¼øē·åˆē ”ē©¶ę‰€'),
(44163, 'https://ror.org/0252kcx79', 'en', 1, 'https://ror.org/0252kcx79 Japan Color Research Institute ę—„ęœ¬č‰²å½©ē ”ē©¶ę‰€'),
(44164, 'https://ror.org/0477qq163', 'en', 1, 'https://ror.org/0477qq163 Civil Engineering Research Institute for Cold Region åÆ’åœ°åœŸęœØē ”ē©¶ę‰€'),
(44165, 'https://ror.org/02fe5bq19', 'en', 1, 'https://ror.org/02fe5bq19 Japan Private School Education Research Institute ę—„ęœ¬ē§å­¦ę•™č‚²ē ”ē©¶ę‰€'),
(44166, 'https://ror.org/0480zh114', 'en', 1, 'https://ror.org/0480zh114 Japan External Trade Organization ę—„ęœ¬č²æę˜“ęŒÆčˆˆę©Ÿę§‹'),
(44167, 'https://ror.org/05807ba92', 'en', 1, 'https://ror.org/05807ba92 National Institutes for Cultural Heritage ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ę–‡åŒ–č²”'),
(44168, 'https://ror.org/05r26zf79', 'en', 1, 'https://ror.org/05r26zf79 Port and Airport Research Institute ęøÆę¹¾ē©ŗęøÆęŠ€č”“ē ”ē©¶ę‰€'),
(44169, 'https://ror.org/05wcy9v93', 'en', 1, 'https://ror.org/05wcy9v93 Japan Society for Occupational Health ę—„ęœ¬ē”£ę„­č”›ē”Ÿå­¦ä¼š'),
(44170, 'https://ror.org/041bes686', 'en', 1, 'https://ror.org/041bes686 The Kagawa Museum é¦™å·ēœŒē«‹ćƒŸćƒ„ćƒ¼ć‚øć‚¢ćƒ '),
(44171, 'https://ror.org/03bvwa633', 'en', 1, 'https://ror.org/03bvwa633 Ibaraki National College of Technology čŒØåŸŽå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44172, 'https://ror.org/01pm5dp22', 'en', 1, 'https://ror.org/01pm5dp22 Ishikawa Prefectural Technical High School ēŸ³å·ēœŒē«‹å·„ę„­é«˜ē­‰å­¦ę ”'),
(44173, 'https://ror.org/01q888968', 'en', 1, 'https://ror.org/01q888968 Takamatsu High School é¦™å·ēœŒē«‹é«˜ę¾é«˜ē­‰å­¦ę ”'),
(44174, 'https://ror.org/05cpzfy77', 'en', 1, 'https://ror.org/05cpzfy77 Ishikawa Prefectural Nursing School ēŸ³å·ēœŒē«‹ē·åˆēœ‹č­·å°‚é–€å­¦ę ”'),
(44175, 'https://ror.org/02qraea35', 'en', 1, 'https://ror.org/02qraea35 Ishikawa Prefectural Police ēŸ³å·ēœŒč­¦åÆŸęœ¬éƒØ'),
(44176, 'https://ror.org/01fdhar48', 'en', 1, 'https://ror.org/01fdhar48 Ibaraki Nature Museum čŒØåŸŽēœŒč‡Ŗē„¶åšē‰©é¤Ø'),
(44177, 'https://ror.org/02r3gag23', 'en', 1, 'https://ror.org/02r3gag23 Japan Kinoko Research Center Foundation ę—„ęœ¬ćć®ć“ć‚»ćƒ³ć‚æ'),
(44178, 'https://ror.org/01rtne307', 'en', 1, 'https://ror.org/01rtne307 Japan Monkey Centre ę—„ęœ¬ćƒ¢ćƒ³ć‚­ćƒ¼ćƒ‘ćƒ¼ć‚Æ'),
(44179, 'https://ror.org/0262wpz62', 'no_lang_code', 1, 'https://ror.org/0262wpz62 Education software (Japan) ę•™č‚²ć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢'),
(44180, 'https://ror.org/039jbwk85', 'en', 1, 'https://ror.org/039jbwk85 Ibaraki Prefecture Education Training Center čŒØåŸŽēœŒę•™č‚²ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼');
INSERT INTO `rors` VALUES
(44181, 'https://ror.org/003vha698', 'en', 1, 'https://ror.org/003vha698 Japan Spaceguard Association ę—„ęœ¬ć‚¹ćƒšćƒ¼ć‚¹ć‚¬ćƒ¼ćƒ‰å”ä¼š'),
(44182, 'https://ror.org/05q9b8948', 'en', 1, 'https://ror.org/05q9b8948 Ishikawa Prefectural Institute for Educational Research and In-Service Training ēŸ³å·ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44183, 'https://ror.org/04a467s88', 'en', 1, 'https://ror.org/04a467s88 Ibaraki Prefectural Museum of History ćƒŠćƒćƒ„ćƒ©ćƒ«čŒØåŸŽēœŒē«‹ę­“å²é¤Ø'),
(44184, 'https://ror.org/02xm6sp43', 'en', 1, 'https://ror.org/02xm6sp43 National Institute of Technology, Kagoshima College é¹æå…å³¶å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44185, 'https://ror.org/04g3x6p88', 'en', 1, 'https://ror.org/04g3x6p88 Ibaraki Prefectural Police čŒØåŸŽēœŒč­¦åÆŸęœ¬éƒØ'),
(44186, 'https://ror.org/00rxj0v78', 'en', 1, 'https://ror.org/00rxj0v78 Institute of Brain and Blood Vessels å…¬ē›Šč²”å›£ę³•äŗŗ 脳蔀箔研究所'),
(44187, 'https://ror.org/01cjj0660', 'en', 1, 'https://ror.org/01cjj0660 Institute of Environment and Resource System ē’°å¢ƒč³‡ęŗć‚·ć‚¹ćƒ†ćƒ ē·åˆē ”ē©¶ę‰€'),
(44188, 'https://ror.org/03q6yg517', 'en', 1, 'https://ror.org/03q6yg517 Ibaraki Prefectural Mito First High School čŒØåŸŽēœŒē«‹ę°“ęˆøē¬¬äø€é«˜ē­‰å­¦ę ”'),
(44189, 'https://ror.org/015b17453', 'en', 1, 'https://ror.org/015b17453 Kagoshima Prefectural Institute For Education Research é¹æå…å³¶ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44190, 'https://ror.org/04raysj94', 'en', 1, 'https://ror.org/04raysj94 Kagoshima Women''s Junior College é¹æå…å³¶å„³å­ēŸ­ęœŸå¤§å­¦'),
(44191, 'https://ror.org/04gmk9p10', 'en', 1, 'https://ror.org/04gmk9p10 Ibaraki Prefecture Joso City Sugawara Elementary School åøøē·åø‚ē«‹č…åŽŸå°å­¦ę ”'),
(44192, 'https://ror.org/034r3x204', 'en', 1, 'https://ror.org/034r3x204 Pearl Science Laboratory ēœŸē ē§‘å­¦ē ”ē©¶ę‰€'),
(44193, 'https://ror.org/051bey794', 'en', 1, 'https://ror.org/051bey794 Kanagawa Prefectural Shonan High School ē„žå„ˆå·ēœŒē«‹ę¹˜å—é«˜ē­‰å­¦ę ”'),
(44194, 'https://ror.org/05p1cse56', 'en', 1, 'https://ror.org/05p1cse56 Kanagawa Prefectural Yokohama Hiranuma High School ē„žå„ˆå·ēœŒē«‹ęØŖęµœå¹³ę²¼é«˜ē­‰å­¦ę ”'),
(44195, 'https://ror.org/0028edj28', 'en', 1, 'https://ror.org/0028edj28 Japan University of Health Sciences ę—„ęœ¬äæå„åŒ»ē™‚å¤§å­¦'),
(44196, 'https://ror.org/029210p22', 'en', 1, 'https://ror.org/029210p22 Kanagawa Prefectural Youth Center ē„žå„ˆå·ēœŒē«‹é’å°‘å¹“ć‚»ćƒ³ć‚æćƒ¼'),
(44197, 'https://ror.org/00dwzq257', 'en', 1, 'https://ror.org/00dwzq257 Japanese Center for International Studies in Ecology å›½éš›ē”Ÿę…‹å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(44198, 'https://ror.org/048gksa87', 'no_lang_code', 1, 'https://ror.org/048gksa87 Kajima Corporation (Japan) é¹æå³¶å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(44199, 'https://ror.org/02hdsjf18', 'en', 1, 'https://ror.org/02hdsjf18 Iwakuni Junior College å²©å›½ēŸ­ęœŸå¤§å­¦'),
(44200, 'https://ror.org/03vr02c19', 'en', 1, 'https://ror.org/03vr02c19 Kanagawa Prefecture Education Center ē„žå„ˆå·ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44201, 'https://ror.org/05fktbs03', 'en', 1, 'https://ror.org/05fktbs03 Jin-ai Women''s College ä»ę„›å„³å­ēŸ­ęœŸå¤§å­¦'),
(44202, 'https://ror.org/05q4caq61', 'en', 1, 'https://ror.org/05q4caq61 General Education Center of Iwate å²©ę‰‹ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44203, 'https://ror.org/03hdkcc29', 'en', 1, 'https://ror.org/03hdkcc29 Kameda College of Health Sciences äŗ€ē”°åŒ»ē™‚å¤§å­¦'),
(44204, 'https://ror.org/02xwb7a71', 'en', 1, 'https://ror.org/02xwb7a71 Kanagawa Prefectural Miura Seaside High School ē„žå„ˆå·ēœŒē«‹äø‰ęµ¦č‡Øęµ·é«˜ē­‰å­¦ę ”'),
(44205, 'https://ror.org/007hwje16', 'en', 1, 'https://ror.org/007hwje16 Kihara Institute for Biological Research ęØŖęµœåø‚ē«‹å¤§å­¦ęœØåŽŸē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(44206, 'https://ror.org/03znyqq54', 'en', 1, 'https://ror.org/03znyqq54 Ichinohe High School å²©ę‰‹ēœŒē«‹äø€ęˆøé«˜ē­‰å­¦ę ”'),
(44207, 'https://ror.org/04j6f8w41', 'en', 1, 'https://ror.org/04j6f8w41 Kanagawa Prefectural Kanagawa Comprehensive Industry High School ē„žå„ˆå·ēœŒē«‹ē„žå„ˆå·ē·åˆē”£ę„­é«˜ē­‰å­¦ę ”'),
(44208, 'https://ror.org/05q9cvq57', 'en', 1, 'https://ror.org/05q9cvq57 Ichinoseki Daiichi Senior High School å²©ę‰‹ēœŒē«‹äø€é–¢ē¬¬äø€é«˜ē­‰å­¦ę ”ćƒ»é™„å±žäø­å­¦ę ”'),
(44209, 'https://ror.org/04t760j73', 'en', 1, 'https://ror.org/04t760j73 Kanazawa Municipal Technical High School é‡‘ę²¢åø‚ē«‹å·„ę„­é«˜ē­‰å­¦ę ”'),
(44210, 'https://ror.org/04912ew08', 'en', 1, 'https://ror.org/04912ew08 Iwate Agricultural Junior College å²©ę‰‹ēœŒē«‹č¾²ę„­å¤§å­¦ę ”'),
(44211, 'https://ror.org/01t887w53', 'en', 1, 'https://ror.org/01t887w53 Morioka First High School å²©ę‰‹ēœŒē«‹ē››å²”ē¬¬äø€é«˜ē­‰å­¦ę ”'),
(44212, 'https://ror.org/052fvq722', 'en', 1, 'https://ror.org/052fvq722 Kanagawa Industrial Technology Center ē„žå„ˆå·ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(44213, 'https://ror.org/01kgebd76', 'en', 1, 'https://ror.org/01kgebd76 Iwate Museum of Art å²©ę‰‹ēœŒē«‹ē¾Žč”“é¤Ø'),
(44214, 'https://ror.org/010vp6v57', 'en', 1, 'https://ror.org/010vp6v57 Iwate Prefectural Shizukuishi High School å²©ę‰‹ēœŒē«‹é›«ēŸ³é«˜ē­‰å­¦ę ”'),
(44215, 'https://ror.org/03bf0mp03', 'en', 1, 'https://ror.org/03bf0mp03 Kitakyushu Museum of Natural History and Human History åŒ—ä¹å·žåø‚ē«‹ć„ć®ć”ć®ćŸć³åšē‰©é¤Ø[č‡Ŗē„¶å²ćƒ»ę­“å²åšē‰©é¤Ø'),
(44216, 'https://ror.org/02dnedb80', 'en', 1, 'https://ror.org/02dnedb80 Kansai High School é–¢č„æé«˜ē­‰å­¦ę ”'),
(44217, 'https://ror.org/05jja7t55', 'en', 1, 'https://ror.org/05jja7t55 Iwate Prefectural Taneichi High School å²©ę‰‹ēœŒē«‹ēØ®åø‚é«˜ē­‰å­¦ę ”'),
(44218, 'https://ror.org/01rm2f249', 'en', 1, 'https://ror.org/01rm2f249 Junshin Junior College ē“”ēœŸēŸ­ęœŸå¤§å­¦'),
(44219, 'https://ror.org/034k6e791', 'ja', 1, 'https://ror.org/034k6e791 Hakodate Shirayuri Gakuen å‡½é¤Øē™½ē™¾åˆå­¦åœ’äø­å­¦é«˜ē­‰å­¦ę ”'),
(44220, 'https://ror.org/05nccdy26', 'en', 1, 'https://ror.org/05nccdy26 Kanagawa prefectural Atsugi high school ē„žå„ˆå·ēœŒē«‹åŽšęœØé«˜ē­‰å­¦ę ”'),
(44221, 'https://ror.org/03dm2vs08', 'en', 1, 'https://ror.org/03dm2vs08 Kacho College čÆé ‚ēŸ­ęœŸå¤§å­¦'),
(44222, 'https://ror.org/04m7w1g19', 'en', 1, 'https://ror.org/04m7w1g19 Ehime Prefecture Iyo Agricultural High School ę„›åŖ›ēœŒē«‹ä¼Šäŗˆč¾²ę„­é«˜ē­‰å­¦ę ”'),
(44223, 'https://ror.org/0029h8b97', 'en', 1, 'https://ror.org/0029h8b97 Kansai Women''s College é–¢č„æå„³å­ēŸ­ęœŸå¤§å­¦'),
(44224, 'https://ror.org/04etxjg38', 'en', 1, 'https://ror.org/04etxjg38 Kanagawa Prefectural Ayase High School ē„žå„ˆå·ēœŒē«‹ē¶¾ē€¬é«˜ē­‰å­¦ę ”'),
(44225, 'https://ror.org/0210xhm07', 'en', 1, 'https://ror.org/0210xhm07 Izumi Junior College å’Œę³‰ēŸ­ęœŸå¤§å­¦'),
(44226, 'https://ror.org/05x01yd17', 'en', 1, 'https://ror.org/05x01yd17 Ability Development Training Center čƒ½åŠ›é–‹ē™ŗē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(44227, 'https://ror.org/03n7n4r41', 'en', 1, 'https://ror.org/03n7n4r41 Kanto Junior College é–¢ę±ēŸ­ęœŸå¤§å­¦'),
(44228, 'https://ror.org/04xfwhf17', 'en', 1, 'https://ror.org/04xfwhf17 National Institute of Technology, Kagawa College é¦™å·é«˜ē­‰å°‚é–€å­¦ę ”'),
(44229, 'https://ror.org/050bz3844', 'en', 1, 'https://ror.org/050bz3844 Archaeological Institute of Kashihara å„ˆč‰ÆēœŒē«‹ę©æåŽŸč€ƒå¤å­¦ē ”ē©¶ę‰€'),
(44230, 'https://ror.org/00cqcft87', 'en', 1, 'https://ror.org/00cqcft87 Koganei Daiichi Elementary School å°é‡‘äŗ•åø‚ē«‹å°é‡‘äŗ•ē¬¬äø€å°å­¦ę ”'),
(44231, 'https://ror.org/05gqyvx42', 'en', 1, 'https://ror.org/05gqyvx42 Tokyo Metropolitan Koishikawa Secondary Education School ę±äŗ¬éƒ½ē«‹å°ēŸ³å·äø­ē­‰ę•™č‚²å­¦ę ”'),
(44232, 'https://ror.org/04hs3m603', 'en', 1, 'https://ror.org/04hs3m603 Isogo Technical High School ē„žå„ˆå·ēœŒē«‹ē£Æå­å·„ę„­é«˜ē­‰å­¦ę ”'),
(44233, 'https://ror.org/02dn7km29', 'no_lang_code', 1, 'https://ror.org/02dn7km29 Kashihara Insectarium ę©æåŽŸåø‚ę˜†č™«é¤Ø'),
(44234, 'https://ror.org/0120b7z43', 'no_lang_code', 1, 'https://ror.org/0120b7z43 Kokugakuin Junior College åœ‹å­øé™¢å¤§å­øåŒ—ęµ·é“ēŸ­ęœŸå¤§å­¦éƒØ'),
(44235, 'https://ror.org/040rkxg67', 'en', 1, 'https://ror.org/040rkxg67 Kanagawa prefectural Kanagawa Technical High School ē„žå„ˆå·ēœŒē«‹ē„žå„ˆå·å·„ę„­é«˜ē­‰å­¦ę ”'),
(44236, 'https://ror.org/01pbhqq24', 'no_lang_code', 1, 'https://ror.org/01pbhqq24 Kokusai Gakuin Saitama Junior College å›½éš›å­¦é™¢åŸ¼ēŽ‰ēŸ­ęœŸå¤§å­¦'),
(44237, 'https://ror.org/042newy54', 'en', 1, 'https://ror.org/042newy54 Kokusai Junior College å›½éš›ēŸ­ęœŸå¤§å­¦'),
(44238, 'https://ror.org/02hjgfh88', 'en', 1, 'https://ror.org/02hjgfh88 Niigata Prefectural Kashiwazaki Technical High School ę–°ę½ŸēœŒē«‹ęŸå“Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(44239, 'https://ror.org/0237h9n51', 'en', 1, 'https://ror.org/0237h9n51 Kagawa Prefectural School for the Blind é¦™å·ēœŒē«‹ē›²å­¦ę ”'),
(44240, 'https://ror.org/01qx14d89', 'en', 1, 'https://ror.org/01qx14d89 Komatsu College å°ę¾ēŸ­ęœŸå¤§å­¦'),
(44241, 'https://ror.org/00b80p354', 'en', 1, 'https://ror.org/00b80p354 Kanagawa Prefectural Kanazawa-Bunko Museum ē„žå„ˆå·ēœŒē«‹é‡‘ę²¢ę–‡åŗ«'),
(44242, 'https://ror.org/00ssg0g07', 'en', 1, 'https://ror.org/00ssg0g07 Kawagoe Technical High School åŸ¼ēŽ‰ēœŒē«‹å·č¶Šå·„ę„­é«˜ē­‰å­¦ę ”'),
(44243, 'https://ror.org/01zv3yh12', 'no_lang_code', 1, 'https://ror.org/01zv3yh12 Hachinohe Gakuin Junior College å…«ęˆøå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(44244, 'https://ror.org/016yfhd37', 'en', 1, 'https://ror.org/016yfhd37 Kawaguchi Junior College å·å£ēŸ­ęœŸå¤§å­¦'),
(44245, 'https://ror.org/01crm2177', 'en', 1, 'https://ror.org/01crm2177 Koshien Junior College ē”²å­åœ’ēŸ­ęœŸå¤§å­¦'),
(44246, 'https://ror.org/04dpcyn69', 'en', 1, 'https://ror.org/04dpcyn69 Kanagawa Prefectural Museum of Cultural History ē„žå„ˆå·ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(44247, 'https://ror.org/01qwv9523', 'en', 1, 'https://ror.org/01qwv9523 Kanagawa Prefectural Museum of Natural History ē„žå„ˆå·ēœŒē«‹ē”Ÿå‘½ć®ę˜Ÿ'),
(44248, 'https://ror.org/02ypkn805', 'en', 1, 'https://ror.org/02ypkn805 Kanagawa Prefecture Natural Environment Conservation Center ē„žå„ˆå·ēœŒč‡Ŗē„¶ē’°å¢ƒäæå…Øć‚»ćƒ³ć‚æćƒ¼'),
(44249, 'https://ror.org/02kk7cr85', 'en', 1, 'https://ror.org/02kk7cr85 Kawasaki City College of Nursing å·å“Žåø‚ē«‹ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(44250, 'https://ror.org/03hq2ba30', 'en', 1, 'https://ror.org/03hq2ba30 Kyoto Bunkyo Junior College äŗ¬éƒ½ę–‡ę•™ēŸ­ęœŸå¤§å­¦'),
(44251, 'https://ror.org/00w83n434', 'en', 1, 'https://ror.org/00w83n434 Kanagawa Prefectural Odawara Johoku Technical High School ē„žå„ˆå·ēœŒē«‹å°ē”°åŽŸåŸŽåŒ—å·„ę„­é«˜ē­‰å­¦ę ”'),
(44252, 'https://ror.org/02ay7p923', 'en', 1, 'https://ror.org/02ay7p923 Kyoto Municipal Fushimi Technical High School äŗ¬éƒ½åø‚ē«‹ä¼č¦‹å·„ę„­é«˜ē­‰å­¦ę ”'),
(44253, 'https://ror.org/055277280', 'en', 1, 'https://ror.org/055277280 Kumamoto Industrial Research Institute ē†Šęœ¬ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(44254, 'https://ror.org/05tgc6914', 'en', 1, 'https://ror.org/05tgc6914 Kawasaki College of Allied Health Professions å·å“ŽåŒ»ē™‚ēŸ­ęœŸå¤§å­¦'),
(44255, 'https://ror.org/0005ck383', 'en', 1, 'https://ror.org/0005ck383 Kanagawa Prefectural Police Department ē„žå„ˆå·ēœŒč­¦åÆŸęœ¬éƒØ'),
(44256, 'https://ror.org/027q26r60', 'en', 1, 'https://ror.org/027q26r60 Kyoto Municipal Uzumasa Elementary School äŗ¬éƒ½åø‚ē«‹å¤Ŗē§¦å°å­¦ę ”'),
(44257, 'https://ror.org/018yv5e79', 'en', 1, 'https://ror.org/018yv5e79 Kochi Gakuen College é«˜ēŸ„å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(44258, 'https://ror.org/007vmg243', 'en', 1, 'https://ror.org/007vmg243 Kyushu Economic Research Center å…¬ē›Šč²”å›£ę³•äŗŗ ä¹å·žēµŒęøˆčŖæęŸ»å”ä¼š'),
(44259, 'https://ror.org/01c697313', 'en', 1, 'https://ror.org/01c697313 National Institute of Technology, Kumamoto College ē†Šęœ¬é«˜ē­‰å°‚é–€å­¦ę ”'),
(44260, 'https://ror.org/05h5w5t42', 'en', 1, 'https://ror.org/05h5w5t42 Kawasaki Municipal Kawasaki Science High School å·å“Žåø‚ē«‹å·å“Žē·åˆē§‘å­¦é«˜ē­‰å­¦ę ”'),
(44261, 'https://ror.org/04t8h6g06', 'en', 1, 'https://ror.org/04t8h6g06 Kochi Technical High School é«˜ēŸ„ēœŒē«‹é«˜ēŸ„å·„ę„­é«˜ē­‰å­¦ę ”'),
(44262, 'https://ror.org/0222gjv49', 'en', 1, 'https://ror.org/0222gjv49 Kumamoto Prefectural Arao High School ē†Šęœ¬ēœŒē«‹č’å°¾é«˜ē­‰å­¦ę ”'),
(44263, 'https://ror.org/0322q1246', 'en', 1, 'https://ror.org/0322q1246 Kyushu Historical Museum ä¹å·žę­“å²č³‡ę–™é¤Ø'),
(44264, 'https://ror.org/01prd6q96', 'en', 1, 'https://ror.org/01prd6q96 Kyoto City Zoo äŗ¬éƒ½åø‚å‹•ē‰©åœ’'),
(44265, 'https://ror.org/02d93xc63', 'en', 1, 'https://ror.org/02d93xc63 Keio Shiki Senior High School ę…¶ę‡‰ē¾©å”¾åæ—ęœØé«˜ē­‰å­¦ę ”'),
(44266, 'https://ror.org/007mfjf50', 'en', 1, 'https://ror.org/007mfjf50 Kyushu National Museum ä¹å·žå›½ē«‹åšē‰©é¤Ø'),
(44267, 'https://ror.org/05debqe13', 'en', 1, 'https://ror.org/05debqe13 Kumamoto Prefectural Police ē†Šęœ¬ēœŒč­¦åÆŸ'),
(44268, 'https://ror.org/02kedpm29', 'en', 1, 'https://ror.org/02kedpm29 Kyushu Otani Junior College ä¹å·žå¤§č°·ēŸ­ęœŸå¤§å­¦'),
(44269, 'https://ror.org/030dxd692', 'en', 1, 'https://ror.org/030dxd692 Kumamoto Prefectural Matsubase High School ē†Šęœ¬ēœŒē«‹ę¾ę©‹é«˜ē­‰å­¦ę ”'),
(44270, 'https://ror.org/03azxbd85', 'en', 1, 'https://ror.org/03azxbd85 Kyushu Ryukoku Junior College ä¹å·žé¾č°·ēŸ­ęœŸå¤§å­¦'),
(44271, 'https://ror.org/05c21mq03', 'en', 1, 'https://ror.org/05c21mq03 Kurashiki City College å€‰ę•·åø‚ē«‹ēŸ­ęœŸå¤§å­¦'),
(44272, 'https://ror.org/00w2erz81', 'en', 1, 'https://ror.org/00w2erz81 Kyoto Architecture University äŗ¬éƒ½å»ŗēÆ‰å¤§å­¦ę ”'),
(44273, 'https://ror.org/05wq09n36', 'en', 1, 'https://ror.org/05wq09n36 Okayama Prefectural Kurashiki Chuo High School å²”å±±ēœŒē«‹å€‰ę•·äø­å¤®é«˜ē­‰å­¦ę ”'),
(44274, 'https://ror.org/02846qn43', 'en', 1, 'https://ror.org/02846qn43 Japanese La Salle Academy ćƒ©ćƒ»ć‚µćƒ¼ćƒ«äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(44275, 'https://ror.org/02vj2d285', 'en', 1, 'https://ror.org/02vj2d285 Minatogawa College ę¹Šå·ēŸ­ęœŸå¤§å­¦'),
(44276, 'https://ror.org/02mqxmc61', 'en', 1, 'https://ror.org/02mqxmc61 Kyoto City Youth Science Center äŗ¬éƒ½åø‚é’å°‘å¹“ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(44277, 'https://ror.org/050bkqc56', 'no_lang_code', 1, 'https://ror.org/050bkqc56 Meguro Parasitological Museum ē›®é»’åÆ„ē”Ÿč™«é¤Ø'),
(44278, 'https://ror.org/00zj9hj84', 'no_lang_code', 1, 'https://ror.org/00zj9hj84 Minerva Light lab (Japan) ćƒŸćƒćƒ«ćƒćƒ©ć‚¤ćƒˆćƒ©ćƒœ'),
(44279, 'https://ror.org/00xefvv79', 'en', 1, 'https://ror.org/00xefvv79 National Institute of Technology, Kurume College ä¹…ē•™ē±³å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44280, 'https://ror.org/038vb6915', 'en', 1, 'https://ror.org/038vb6915 Kyoto National Museum äŗ¬éƒ½å›½ē«‹åšē‰©é¤Ø'),
(44281, 'https://ror.org/02frcze54', 'no_lang_code', 1, 'https://ror.org/02frcze54 Software Research Associates (Japan) ćˆć™ć‚ćƒ¼ć‚‹ćˆćƒ¼'),
(44282, 'https://ror.org/015kqsb22', 'en', 1, 'https://ror.org/015kqsb22 Fukuoka College of Agriculture ē¦å²”ēœŒč¾²ę„­å¤§å­¦ę ”'),
(44283, 'https://ror.org/02vjb7q13', 'en', 1, 'https://ror.org/02vjb7q13 Kyoto Prefectural Suzaku High School äŗ¬éƒ½åŗœē«‹ęœ±é›€é«˜ē­‰å­¦ę ”'),
(44284, 'https://ror.org/00b2e6559', 'en', 1, 'https://ror.org/00b2e6559 National Institute of Technology, Maizuru College čˆžé¶“å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44285, 'https://ror.org/05nptd037', 'en', 1, 'https://ror.org/05nptd037 Meirin College ę˜Žå€«ēŸ­ęœŸå¤§å­¦'),
(44286, 'https://ror.org/03twzfb97', 'en', 1, 'https://ror.org/03twzfb97 National Institute of Technology, Kushiro College é‡§č·Æå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44287, 'https://ror.org/04zt5qa54', 'en', 1, 'https://ror.org/04zt5qa54 Kyoto Prefectural Institute of Public Health and Environment äŗ¬éƒ½åŗœäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(44288, 'https://ror.org/027zhhk28', 'en', 1, 'https://ror.org/027zhhk28 Meiwa Gakuen Junior College ę˜Žå’Œå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(44289, 'https://ror.org/03jzc4108', 'no_lang_code', 1, 'https://ror.org/03jzc4108 PLUX - Wireless Biosignals (Portugal)'),
(44290, 'https://ror.org/04xatxv47', 'en', 1, 'https://ror.org/04xatxv47 Aichi Prefectural Xincheng East High School ę„›ēŸ„ēœŒē«‹ę–°åŸŽę±é«˜ē­‰å­¦ę ”'),
(44291, 'https://ror.org/05mvc7n02', 'en', 1, 'https://ror.org/05mvc7n02 Gunma Prefectural Isesaki Koyokotogakko ē¾¤é¦¬ēœŒē«‹ä¼Šå‹¢å“Žčˆˆé™½é«˜ē­‰å­¦ę ”'),
(44292, 'https://ror.org/00ktxha38', 'en', 1, 'https://ror.org/00ktxha38 Anjo Chubu Elementary School å®‰åŸŽåø‚ē«‹å®‰åŸŽäø­éƒØå°å­¦ę ”'),
(44293, 'https://ror.org/03gbnem78', 'en', 1, 'https://ror.org/03gbnem78 Shimane Prefectural Matsue Technical High School å³¶ę ¹ēœŒē«‹ę¾ę±Ÿå·„ę„­é«˜ē­‰å­¦ę ”'),
(44294, 'https://ror.org/01ezqah87', 'en', 1, 'https://ror.org/01ezqah87 Kitakyushu National College of Technology åŒ—ä¹å·žå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44295, 'https://ror.org/016mfhr46', 'en', 1, 'https://ror.org/016mfhr46 Kobe Rokko Island High School ē„žęˆøåø‚ē«‹å…­ē”²ć‚¢ć‚¤ćƒ©ćƒ³ćƒ‰é«˜ē­‰å­¦ę ”'),
(44296, 'https://ror.org/02vdxz509', 'en', 1, 'https://ror.org/02vdxz509 Fukushima Iwaki Agricultural High School ē¦å³¶ēœŒē«‹ē£åŸŽč¾²ę„­é«˜ē­‰å­¦ę ”'),
(44297, 'https://ror.org/01m41n304', 'en', 1, 'https://ror.org/01m41n304 Kanagawa Prefectural Atsugi Kiyoshiminami High School ē„žå„ˆå·ēœŒē«‹åŽšęœØęø…å—é«˜ę ”'),
(44298, 'https://ror.org/01t36fb69', 'en', 1, 'https://ror.org/01t36fb69 Kobe Municipal Nishiwaki Elementary School'),
(44299, 'https://ror.org/05qessq62', 'en', 1, 'https://ror.org/05qessq62 Kyoto Municipal Saikyokotogakko-Junior High School'),
(44300, 'https://ror.org/03a6vay74', 'en', 1, 'https://ror.org/03a6vay74 Japan Graduate School of Education University ę—„ęœ¬ę•™č‚²å¤§å­¦é™¢å¤§å­¦'),
(44301, 'https://ror.org/011qgx996', 'no_lang_code', 1, 'https://ror.org/011qgx996 Mitsubishi Chemical Group Science and Technology Research Center (Japan) ę Ŗå¼ä¼šē¤¾äø‰č±åŒ–å­¦ē§‘å­¦ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(44302, 'https://ror.org/01tk70e68', 'en', 1, 'https://ror.org/01tk70e68 Kyoto Kacho University äŗ¬éƒ½čÆé ‚å¤§å­¦'),
(44303, 'https://ror.org/01t703b81', 'en', 1, 'https://ror.org/01t703b81 Mathematical Assist Design Laboratory ę Ŗå¼ä¼šē¤¾ę•°ē†čØ­čØˆē ”ē©¶ę‰€'),
(44304, 'https://ror.org/01c9fx689', 'no_lang_code', 1, 'https://ror.org/01c9fx689 Tsutsujigaoka Elementary School åå¼µåø‚ć¤ć¤ć˜ćŒćŠć‹å°å­¦ę ”'),
(44305, 'https://ror.org/01qc2w333', 'no_lang_code', 1, 'https://ror.org/01qc2w333 Matsudo Museum ę¾ęˆøåø‚ē«‹åšē‰©é¤Ø'),
(44306, 'https://ror.org/04sm16305', 'no_lang_code', 1, 'https://ror.org/04sm16305 Mitsui Engineering and Shipbuilding (Japan) äø‰äŗ•é€ čˆ¹'),
(44307, 'https://ror.org/013947m29', 'en', 1, 'https://ror.org/013947m29 Nagasaki Prefectural Education Center é•·å“ŽēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44308, 'https://ror.org/00c3hvv49', 'en', 1, 'https://ror.org/00c3hvv49 Matsumoto Junior College ę¾ęœ¬ēŸ­ęœŸå¤§å­¦'),
(44309, 'https://ror.org/00hg48986', 'en', 1, 'https://ror.org/00hg48986 Ibaraki Prefectural Mitsukaido First High School čŒØåŸŽēœŒē«‹å¤Ŗē”°ē¬¬äŗŒé«˜ē­‰å­¦ę ”'),
(44310, 'https://ror.org/01kgg9w93', 'en', 1, 'https://ror.org/01kgg9w93 Ibaraki Prefectural Ota second high school čŒØåŸŽēœŒē«‹å¤Ŗē”°ē¬¬äŗŒé«˜ē­‰å­¦ę ”'),
(44311, 'https://ror.org/05ge30g62', 'en', 1, 'https://ror.org/05ge30g62 International Institute for Childrens Literature Osaka å¤§é˜Ŗåŗœē«‹å›½éš›å…ē«„ę–‡å­¦é¤Ø'),
(44312, 'https://ror.org/01v3xbm77', 'en', 1, 'https://ror.org/01v3xbm77 Museum of Kyoto'),
(44313, 'https://ror.org/056dke471', 'en', 1, 'https://ror.org/056dke471 Tokyo Metropolitan Fuchu High School ę±äŗ¬éƒ½ē«‹åŗœäø­é«˜ē­‰å­¦ę ”'),
(44314, 'https://ror.org/0513ngw03', 'en', 1, 'https://ror.org/0513ngw03 Matsumoto Meat Hygienic Inspection Center of Nagano Prefecture é•·é‡ŽēœŒę¾ęœ¬é£Ÿč‚‰č”›ē”Ÿę¤œęŸ»ę‰€'),
(44315, 'https://ror.org/00hht4y98', 'en', 1, 'https://ror.org/00hht4y98 Koyo Schools 向陽学園'),
(44316, 'https://ror.org/03qks6h28', 'en', 1, 'https://ror.org/03qks6h28 Syusaku Endo Literature Museum é č—¤å‘Øä½œę–‡å­¦é¤Ø'),
(44317, 'https://ror.org/01195rc41', 'en', 1, 'https://ror.org/01195rc41 Tokyo Metropolitan Nerima High School ę±äŗ¬éƒ½ē«‹ē·“é¦¬é«˜ē­‰å­¦ę ”'),
(44318, 'https://ror.org/03296kr26', 'en', 1, 'https://ror.org/03296kr26 Nagasaki Women''s Junior College é•·å“Žå„³å­ēŸ­ęœŸå¤§å­¦'),
(44319, 'https://ror.org/05rwf2d02', 'en', 1, 'https://ror.org/05rwf2d02 Ryogoku High School ę±äŗ¬éƒ½ē«‹äø”å›½é«˜ē­‰å­¦ę ”ćƒ»é™„å±žäø­å­¦ę ”'),
(44320, 'https://ror.org/04wa64s85', 'no_lang_code', 1, 'https://ror.org/04wa64s85 Nagoya College åå¤å±‹ēŸ­ęœŸå¤§å­¦'),
(44321, 'https://ror.org/01vagq208', 'no_lang_code', 1, 'https://ror.org/01vagq208 Nagashima Hospital åŒ»ē™‚ę³•äŗŗé•·å…‰ä¼š 長島病院'),
(44322, 'https://ror.org/03t2d8h32', 'en', 1, 'https://ror.org/03t2d8h32 Tokyo Metropolitan Shakujii High School ę±äŗ¬éƒ½ē«‹ēŸ³ē„žäŗ•é«˜ē­‰å­¦ę ”'),
(44323, 'https://ror.org/02xkqh785', 'en', 1, 'https://ror.org/02xkqh785 Nagoya Industrial Science Research Institute åå¤å±‹ē”£ę„­ē§‘å­¦ē ”ē©¶ę‰€'),
(44324, 'https://ror.org/04tr5bk94', 'en', 1, 'https://ror.org/04tr5bk94 Tokyo Metropolitan Tachikawa High School ę±äŗ¬éƒ½ē«‹ē«‹å·é«˜ē­‰å­¦ę ”'),
(44325, 'https://ror.org/00kh5vs10', 'en', 1, 'https://ror.org/00kh5vs10 Mie Prefectural School for the Blind äø‰é‡ēœŒē«‹ē›²å­¦ę ”'),
(44326, 'https://ror.org/03xee0x32', 'en', 1, 'https://ror.org/03xee0x32 Nagoya Management Junior College åå¤å±‹ēµŒå–¶ēŸ­ęœŸå¤§å­¦'),
(44327, 'https://ror.org/01fht1s55', 'en', 1, 'https://ror.org/01fht1s55 Kyoto Prefectural Nishimaizuru High School äŗ¬éƒ½åŗœē«‹č„æčˆžé¶“é«˜ē­‰å­¦ę ”'),
(44328, 'https://ror.org/00rjqd126', 'en', 1, 'https://ror.org/00rjqd126 Mie Prefectural Education Center äø‰é‡ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44329, 'https://ror.org/043vzcd66', 'en', 1, 'https://ror.org/043vzcd66 Miyagi Advanced Dental Hygienist College å®®åŸŽé«˜ē­‰ę­Æē§‘č”›ē”Ÿå£«å­¦é™¢'),
(44330, 'https://ror.org/02fnvw217', 'en', 1, 'https://ror.org/02fnvw217 Kyoto Prefectural Sagano High School åµÆå³Øé‡Žé«˜ē­‰å­¦ę ”'),
(44331, 'https://ror.org/05nnsck87', 'en', 1, 'https://ror.org/05nnsck87 Mie Prefectural Hisai High School äø‰é‡ēœŒē«‹ä¹…å±…é«˜ē­‰å­¦ę ”'),
(44332, 'https://ror.org/033sspj46', 'en', 1, 'https://ror.org/033sspj46 Kagawa University Hospital é¦™å·å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(44333, 'https://ror.org/04e4q3922', 'en', 1, 'https://ror.org/04e4q3922 Hyogo Prefectural Hyogo Agricultural University å…µåŗ«ēœŒē«‹č¾²ę„­å¤§å­¦'),
(44334, 'https://ror.org/00hn0nx84', 'en', 1, 'https://ror.org/00hn0nx84 Mie Prefectural Kobe High School äø‰é‡ēœŒē«‹ē„žęˆøé«˜ę ”'),
(44335, 'https://ror.org/03ssr0e93', 'en', 1, 'https://ror.org/03ssr0e93 Kyoto Prefectural Tanabe High School äŗ¬éƒ½åŗœē«‹ē”°č¾ŗé«˜ē­‰å­¦ę ”'),
(44336, 'https://ror.org/02k5ra816', 'en', 1, 'https://ror.org/02k5ra816 Kyoto Prefectural Rakuhoku High School äŗ¬éƒ½åŗœē«‹ę“›åŒ—é«˜ē­‰å­¦ę ”'),
(44337, 'https://ror.org/01rhkah90', 'en', 1, 'https://ror.org/01rhkah90 Nagano City Museum é•·é‡Žåø‚ē«‹åšē‰©é¤Ø'),
(44338, 'https://ror.org/03egh3k54', 'en', 1, 'https://ror.org/03egh3k54 Miyagi Prefectural Fisheries High School å®®åŸŽēœŒę°“ē”£é«˜ē­‰å­¦ę ”'),
(44339, 'https://ror.org/03azq1a86', 'en', 1, 'https://ror.org/03azq1a86 Mie prefectural Matsusaka Technical High School äø‰é‡ēœŒē«‹ę¾é˜Ŗå·„ę„­é«˜ē­‰å­¦ę ”'),
(44340, 'https://ror.org/00jkmqv24', 'en', 1, 'https://ror.org/00jkmqv24 Nagano Prefectural Board of Education é•·é‡ŽēœŒę•™č‚²å§”å“”ä¼š'),
(44341, 'https://ror.org/03pwtnm85', 'en', 1, 'https://ror.org/03pwtnm85 Mie Prefectural Police äø‰é‡ēœŒč­¦åÆŸ'),
(44342, 'https://ror.org/01dxqnh08', 'en', 1, 'https://ror.org/01dxqnh08 Mie Prefecture TatsuTsu Commercial High School äø‰é‡ēœŒē«‹ę“„å•†ę„­é«˜ē­‰å­¦ę ”'),
(44343, 'https://ror.org/05nwzgq67', 'en', 1, 'https://ror.org/05nwzgq67 Nagano Prefectural Comprehensive Education Center é•·é‡ŽēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44344, 'https://ror.org/04kze4f18', 'en', 1, 'https://ror.org/04kze4f18 Miyagi Prefectural Police Forensic Science Laboratory å®®åŸŽēœŒč­¦åÆŸ ē§‘å­¦ęœęŸ»ē ”ē©¶ę‰€'),
(44345, 'https://ror.org/04pp5k026', 'en', 1, 'https://ror.org/04pp5k026 Mie Prefectural Yokkaichi Technical High School äø‰é‡ēœŒē«‹å››ę—„åø‚å·„ę„­é«˜ē­‰å­¦ę ”'),
(44346, 'https://ror.org/02bknwg38', 'en', 1, 'https://ror.org/02bknwg38 Nagano Prefecture Forestry Research Center é•·é‡ŽēœŒęž—ę„­ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(44347, 'https://ror.org/04aqqcm29', 'en', 1, 'https://ror.org/04aqqcm29 Miyagi Prefectural visual support school å®®åŸŽēœŒē«‹č¦–č¦šę”Æę“å­¦ę ”'),
(44348, 'https://ror.org/0226q0843', 'no_lang_code', 1, 'https://ror.org/0226q0843 Horyuji Kokusai High School å„ˆč‰ÆēœŒē«‹ę³•éš†åÆŗå›½éš›é«˜ē­‰å­¦ę ”'),
(44349, 'https://ror.org/02cd6ga95', 'en', 1, 'https://ror.org/02cd6ga95 Nagano Prefecture Inariyama Nursing School ēØ²č·å±±é¤Šč­·å­¦ę ”'),
(44350, 'https://ror.org/01pw09h14', 'en', 1, 'https://ror.org/01pw09h14 Mie Prefectural Yokkaichi Nishi High School äø‰é‡ēœŒē«‹å››ę—„åø‚č„æé«˜ē­‰å­¦ę ”'),
(44351, 'https://ror.org/04n8wkx34', 'en', 1, 'https://ror.org/04n8wkx34 Miyagi Prefectural Hearing Support School å®®åŸŽēœŒē«‹č“č¦šę”Æę“å­¦ę ”'),
(44352, 'https://ror.org/03g6saz93', 'en', 1, 'https://ror.org/03g6saz93 Nara Prefectural Nara High School å„ˆč‰ÆēœŒē«‹å„ˆč‰ÆåŒ—é«˜ē­‰å­¦ę ”'),
(44353, 'https://ror.org/04hyzjc82', 'en', 1, 'https://ror.org/04hyzjc82 Miyagi Prefectural General Education Center å®®åŸŽēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44354, 'https://ror.org/00x8yzg78', 'en', 1, 'https://ror.org/00x8yzg78 Nara Prefectural Takada Senior High School å„ˆč‰ÆēœŒē«‹é«˜ē”°é«˜ē­‰å­¦ę ”'),
(44355, 'https://ror.org/05mj57325', 'en', 1, 'https://ror.org/05mj57325 Nara Prefectural Unebi Senior High School å„ˆč‰ÆēœŒē«‹ē•å‚é«˜ē­‰å­¦ę ”'),
(44356, 'https://ror.org/0358jb366', 'en', 1, 'https://ror.org/0358jb366 Nara Saho College å„ˆč‰Æä½äæēŸ­ęœŸå¤§å­¦'),
(44357, 'https://ror.org/0446skw42', 'en', 1, 'https://ror.org/0446skw42 Miyagi Prefecture Furukawa Technical High School å®®åŸŽēœŒå¤å·å·„ę„­é«˜ē­‰å­¦ę ”'),
(44358, 'https://ror.org/00bvfhz16', 'en', 1, 'https://ror.org/00bvfhz16 Mie Prefecture Board of Education ę•™č‚²ć®äø‰é‡ēœŒå§”å“”ä¼š'),
(44359, 'https://ror.org/04xh6km87', 'en', 1, 'https://ror.org/04xh6km87 Toyoshina High School č±Šē§‘é«˜ē­‰å­¦ę ”'),
(44360, 'https://ror.org/053rqrs18', 'en', 1, 'https://ror.org/053rqrs18 Narashino Municipal Narashino High School ēæ’åæ—é‡Žåø‚ē«‹ēæ’åæ—é‡Žé«˜ē­‰å­¦ę ”'),
(44361, 'https://ror.org/01kqfrx63', 'en', 1, 'https://ror.org/01kqfrx63 Miyagi Prefecture Furukawa dawn High School å®®åŸŽēœŒå¤å·é»Žę˜Žäø­å­¦ę ”'),
(44362, 'https://ror.org/0006j5k73', 'en', 1, 'https://ror.org/0006j5k73 Nagano Prefectural Ueda Senior High School é•·é‡ŽēœŒäøŠē”°é«˜ē­‰å­¦ę ”'),
(44363, 'https://ror.org/01twzvd91', 'no_lang_code', 1, 'https://ror.org/01twzvd91 NasunokeHara Animal Clinic é‚£é ˆé‡Žćƒ¶åŽŸć‚¢ćƒ‹ćƒžćƒ«ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(44364, 'https://ror.org/00s301684', 'en', 1, 'https://ror.org/00s301684 Nakakyusyu Junior College äø­ä¹å·žēŸ­ęœŸå¤§å­¦'),
(44365, 'https://ror.org/02brzrx03', 'en', 1, 'https://ror.org/02brzrx03 Nagano Technical High School é•·é‡Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(44366, 'https://ror.org/049rjvf68', 'en', 1, 'https://ror.org/049rjvf68 Nakanihon Automotive College äø­ę—„ęœ¬č‡Ŗå‹•č»ŠēŸ­ęœŸå¤§å­¦'),
(44367, 'https://ror.org/010356m81', 'en', 1, 'https://ror.org/010356m81 Miyagi Prefecture Natori High School å®®åŸŽēœŒåå–é«˜ē­‰å­¦ę ”'),
(44368, 'https://ror.org/02h443151', 'en', 1, 'https://ror.org/02h443151 National Akagi of Youth Exchange House å›½ē«‹čµ¤åŸŽé’å°‘å¹“äŗ¤ęµć®å®¶'),
(44369, 'https://ror.org/0100sjs71', 'en', 1, 'https://ror.org/0100sjs71 Nagaoka Institute of Design 長岔造形大学'),
(44370, 'https://ror.org/008rq7v69', 'en', 1, 'https://ror.org/008rq7v69 Miyagi Prefecture Ishinomaki Technical High School å®®åŸŽēœŒēŸ³å·»å·„ę„­é«˜ē­‰å­¦ę ”'),
(44371, 'https://ror.org/04qzp1e08', 'en', 1, 'https://ror.org/04qzp1e08 Miyagi Prefecture Sendai Higashi High School å®®åŸŽēœŒä»™å°ę±é«˜ē­‰å­¦ę ”'),
(44372, 'https://ror.org/0584q3n03', 'en', 1, 'https://ror.org/0584q3n03 Nagasaki Prefectural Nagasaki Technical High School é•·å“ŽēœŒē«‹é•·å“Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(44373, 'https://ror.org/049y0k629', 'en', 1, 'https://ror.org/049y0k629 Miyagi Seishin Junior College å®®åŸŽčŖ ēœŸēŸ­ęœŸå¤§å­¦'),
(44374, 'https://ror.org/045sskv83', 'en', 1, 'https://ror.org/045sskv83 Nagasaki Junior College é•·å“ŽēŸ­ęœŸå¤§å­¦'),
(44375, 'https://ror.org/033ncz059', 'en', 1, 'https://ror.org/033ncz059 Nara City Board of Education å„ˆč‰Æåø‚ę•™č‚²å§”å“”ä¼š'),
(44376, 'https://ror.org/02tjrsf04', 'no_lang_code', 1, 'https://ror.org/02tjrsf04 Mikasa City Museum äø‰ē¬ åø‚ē«‹åšē‰©é¤Ø'),
(44377, 'https://ror.org/02jf0r135', 'en', 1, 'https://ror.org/02jf0r135 Miyazaki Prefectural Wood Utilization Research Center å®®å“ŽēœŒęœØęåˆ©ē”ØęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(44378, 'https://ror.org/05agrj919', 'en', 1, 'https://ror.org/05agrj919 Nara National Research Institute for Cultural Properties å„ˆč‰Æę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(44379, 'https://ror.org/009be3496', 'en', 1, 'https://ror.org/009be3496 Nagasaki Prefectural Shimabara High School é•·å“ŽēœŒē«‹å³¶åŽŸé«˜ē­‰å­¦ę ”'),
(44380, 'https://ror.org/002vrhd35', 'en', 1, 'https://ror.org/002vrhd35 Nara National Museum å„ˆč‰Æå›½ē«‹åšē‰©é¤Ø'),
(44381, 'https://ror.org/01z2g2m11', 'en', 1, 'https://ror.org/01z2g2m11 Miyazaki Gakuen Junior College å®®å“Žå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(44382, 'https://ror.org/006vpev48', 'en', 1, 'https://ror.org/006vpev48 Kumamoto Prefectural Minamata Technical High School ē†Šęœ¬ēœŒē«‹ę°“äæ£å·„ę„­é«˜ē­‰å­¦ę ”'),
(44383, 'https://ror.org/0375k5p31', 'en', 1, 'https://ror.org/0375k5p31 Mizunami Fossil Museum ē‘žęµŖåø‚åŒ–ēŸ³åšē‰©é¤Ø'),
(44384, 'https://ror.org/0103wwz30', 'en', 1, 'https://ror.org/0103wwz30 Minami Kyushu Junior College å—ä¹å·žēŸ­ęœŸå¤§å­¦'),
(44385, 'https://ror.org/051jdqz70', 'en', 1, 'https://ror.org/051jdqz70 Hakodate National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹å‡½é¤Øē—…é™¢'),
(44386, 'https://ror.org/015kxhg94', 'en', 1, 'https://ror.org/015kxhg94 Niijima Gakuen Junior College ę–°å³¶å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(44387, 'https://ror.org/056ypt721', 'en', 1, 'https://ror.org/056ypt721 Nagano Prefecural Nagano Senior High School é•·é‡ŽēœŒé•·é‡Žé«˜ē­‰å­¦ę ”'),
(44388, 'https://ror.org/00z2xnx25', 'en', 1, 'https://ror.org/00z2xnx25 Niimi College ę–°č¦‹å…¬ē«‹ēŸ­ęœŸå¤§å­¦'),
(44389, 'https://ror.org/03d6stm02', 'en', 1, 'https://ror.org/03d6stm02 National Hospital Organization Hanamaki Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹čŠ±å·»ē—…é™¢'),
(44390, 'https://ror.org/044bxz342', 'en', 1, 'https://ror.org/044bxz342 National Institute for Land and Infrastructure Management å›½åœŸäŗ¤é€šēœå›½åœŸęŠ€č”“ę”æē­–ē·åˆē ”ē©¶ę‰€'),
(44391, 'https://ror.org/02j18km55', 'en', 1, 'https://ror.org/02j18km55 Independent Administrative Institution National Research Institute for Cultural Properties ę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(44392, 'https://ror.org/03r5mvm76', 'en', 1, 'https://ror.org/03r5mvm76 Iwate Prefectural Morioka Agricultural High School å²©ę‰‹ēœŒē«‹ē››å²”č¾²ę„­é«˜ē­‰å­¦ę ”'),
(44393, 'https://ror.org/00arw9a52', 'en', 1, 'https://ror.org/00arw9a52 National Research Institute of Fire and Disaster 消防庁 消防大学栔 ę¶ˆé˜²ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(44394, 'https://ror.org/03sqx5r23', 'en', 1, 'https://ror.org/03sqx5r23 Nishi-Nippon Junior College č„æę—„ęœ¬ēŸ­ęœŸå¤§å­¦'),
(44395, 'https://ror.org/04csbgr97', 'en', 1, 'https://ror.org/04csbgr97 Musashi Junior and Senior High School ę­¦č”µé«˜ē­‰å­¦ę ” 中学栔'),
(44396, 'https://ror.org/04fdy3s84', 'en', 1, 'https://ror.org/04fdy3s84 Nishinomiya Municipal Takagi Elementary School č„æå®®åø‚ē«‹é«˜ęœØå°å­¦ę ”'),
(44397, 'https://ror.org/02k3rdd90', 'no_lang_code', 1, 'https://ror.org/02k3rdd90 Osaka Minami Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹å¤§é˜Ŗå—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(44398, 'https://ror.org/02x9b2s62', 'no_lang_code', 1, 'https://ror.org/02x9b2s62 Musashigaoka College ę­¦č”µäø˜ēŸ­ęœŸå¤§å­¦'),
(44399, 'https://ror.org/05nsenn51', 'en', 1, 'https://ror.org/05nsenn51 National Traffic Safety and Environment Laboratory äŗ¤é€šå®‰å…Øē’°å¢ƒē ”ē©¶ę‰€'),
(44400, 'https://ror.org/05s5g6369', 'no_lang_code', 1, 'https://ror.org/05s5g6369 Tokushima Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹å¾³å³¶ē—…é™¢'),
(44401, 'https://ror.org/0020pt210', 'en', 1, 'https://ror.org/0020pt210 Noma Institute Of Educational Reserch é‡Žé–“ę•™č‚²ē ”ē©¶ę‰€'),
(44402, 'https://ror.org/034xz1x91', 'en', 1, 'https://ror.org/034xz1x91 Okayama Prefectural Mizushima Technical High School å²”å±±ēœŒē«‹ę°“å³¶å·„ę„­é«˜ē­‰å­¦ę ”'),
(44403, 'https://ror.org/008437370', 'en', 1, 'https://ror.org/008437370 National Institute of Population and Social Security Research å›½ē«‹ē¤¾ä¼šäæéšœćƒ»äŗŗå£å•é”Œē ”ē©¶ę‰€'),
(44404, 'https://ror.org/02py1vz39', 'en', 1, 'https://ror.org/02py1vz39 Okayama Prefectural Okayama Asahi High School å²”å±±ēœŒē«‹å²”å±±ęœę—„é«˜ē­‰å­¦ę ”'),
(44405, 'https://ror.org/01vqdnj79', 'en', 1, 'https://ror.org/01vqdnj79 National Institute of Special Education ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē‰¹åˆ„ę”Æę“ę•™č‚²ē·åˆē ”ē©¶ę‰€'),
(44406, 'https://ror.org/03pdvnb13', 'en', 1, 'https://ror.org/03pdvnb13 Okayama Prefectural Katsumata High School å²”å±±ēœŒē«‹å‹é–“ē”°é«˜ē­‰å­¦ę ”'),
(44407, 'https://ror.org/04q5ghr47', 'no_lang_code', 1, 'https://ror.org/04q5ghr47 Osaka Yuhigaoka Gakuen Junior College å¤§é˜Ŗå¤•é™½äø˜å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(44408, 'https://ror.org/01r0qpc06', 'en', 1, 'https://ror.org/01r0qpc06 Okayama Prefectural Okayama Technical High School å²”å±±ēœŒē«‹å²”å±±å·„ę„­é«˜ē­‰å­¦ę ”'),
(44409, 'https://ror.org/04134ed78', 'en', 1, 'https://ror.org/04134ed78 Okayama Prefectural Police 岔山県警察'),
(44410, 'https://ror.org/046a7j408', 'en', 1, 'https://ror.org/046a7j408 Osaka College of Social Health and Welfare å¤§é˜Ŗå„åŗ·ē¦ē„‰ēŸ­ęœŸå¤§å­¦'),
(44411, 'https://ror.org/05ax69r91', 'en', 1, 'https://ror.org/05ax69r91 Okayama Prefecture Education Center å²”å±±ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44412, 'https://ror.org/05een9q80', 'en', 1, 'https://ror.org/05een9q80 National Livestock Breeding Center ē‹¬ē«‹č”Œę”æę³•äŗŗ å®¶ē•œę”¹č‰Æć‚»ćƒ³ć‚æćƒ¼'),
(44413, 'https://ror.org/05kjy5h23', 'no_lang_code', 1, 'https://ror.org/05kjy5h23 Neyagawa High School å¤§é˜Ŗåŗœē«‹åÆå±‹å·é«˜ē­‰å­¦ę ”'),
(44414, 'https://ror.org/04wsndj47', 'en', 1, 'https://ror.org/04wsndj47 Okayama City Ishii Elementary School å²”å±±åø‚ē«‹ēŸ³äŗ•å°å­¦ę ”'),
(44415, 'https://ror.org/02wxcdf69', 'en', 1, 'https://ror.org/02wxcdf69 National Maritime Research Institute ęµ·äøŠęŠ€č”“å®‰å…Øē ”ē©¶ę‰€ćÆ'),
(44416, 'https://ror.org/01hdz2136', 'en', 1, 'https://ror.org/01hdz2136 Okayama Prefectural Tsuyama High School å²”å±±ēœŒē«‹ę“„å±±äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(44417, 'https://ror.org/01vrr3d94', 'no_lang_code', 1, 'https://ror.org/01vrr3d94 Osaka Science Museum å¤§é˜Ŗåø‚ē«‹ē§‘å­¦é¤Ø'),
(44418, 'https://ror.org/053se7r61', 'en', 1, 'https://ror.org/053se7r61 Natural History Museum and Institute åƒč‘‰ēœŒē«‹äø­å¤®åšē‰©é¤Ø'),
(44419, 'https://ror.org/02v953j25', 'en', 1, 'https://ror.org/02v953j25 National Muroto Youth Outdoor Learning Center å›½ē«‹å®¤ęˆøé’å°‘å¹“č‡Ŗē„¶ć®å®¶'),
(44420, 'https://ror.org/01hesjx24', 'en', 1, 'https://ror.org/01hesjx24 Osaka City Museum of Fine Arts å¤§é˜Ŗåø‚ē«‹ē¾Žč”“é¤Ø'),
(44421, 'https://ror.org/0110jzw27', 'en', 1, 'https://ror.org/0110jzw27 Osaka Municipal Toyosaki Junior High School å¤§é˜Ŗåø‚ē«‹č±Šå“Žäø­å­¦ę ”'),
(44422, 'https://ror.org/00pbd7j83', 'en', 1, 'https://ror.org/00pbd7j83 Osaka Museum of Natural History å¤§é˜Ŗåø‚ē«‹č‡Ŗē„¶å²åšē‰©é¤Ø'),
(44423, 'https://ror.org/05tgpyh43', 'en', 1, 'https://ror.org/05tgpyh43 Oita Industrial Research Institute å¤§åˆ†ēœŒē”£ę„­ē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(44424, 'https://ror.org/027x43420', 'en', 1, 'https://ror.org/027x43420 Nihon Institute of Medical Science ę—„ęœ¬åŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(44425, 'https://ror.org/0576n6b98', 'en', 1, 'https://ror.org/0576n6b98 Niigata Prefectural Niigata Central High School ę–°ę½ŸēœŒē«‹ę–°ę½Ÿäø­å¤®é«˜ē­‰å­¦ę ”'),
(44426, 'https://ror.org/0354gw976', 'en', 1, 'https://ror.org/0354gw976 Osaka Prefecture Hannan Visual Support School å¤§é˜Ŗåŗœē«‹å¤§é˜Ŗå—č¦–č¦šę”Æę“å­¦ę ”'),
(44427, 'https://ror.org/00mmzyj40', 'en', 1, 'https://ror.org/00mmzyj40 National Institution For Youth Education å›½ē«‹é’å°‘å¹“ę•™č‚²ęŒÆčˆˆę©Ÿę§‹'),
(44428, 'https://ror.org/05gaya574', 'en', 1, 'https://ror.org/05gaya574 Okazaki Womens Junior College å²”å“Žå„³å­ēŸ­ęœŸå¤§å­¦'),
(44429, 'https://ror.org/00j4x4e07', 'no_lang_code', 1, 'https://ror.org/00j4x4e07 Niigata Chuoh Junior College ę–°ę½Ÿäø­å¤®ēŸ­ęœŸå¤§å­¦'),
(44430, 'https://ror.org/037rrfx42', 'en', 1, 'https://ror.org/037rrfx42 Osaka Prefectural Board of Education å¤§é˜Ŗåŗœę•™č‚²å§”å“”ä¼š'),
(44431, 'https://ror.org/05dj5ck11', 'en', 1, 'https://ror.org/05dj5ck11 Niigata College of Technology ę–°ę½Ÿå·„ę„­ēŸ­ęœŸå¤§å­¦'),
(44432, 'https://ror.org/027qqvd10', 'no_lang_code', 1, 'https://ror.org/027qqvd10 Obayashi (Japan) ę Ŗå¼ä¼šē¤¾å¤§ęž—ēµ„'),
(44433, 'https://ror.org/01p3pd878', 'en', 1, 'https://ror.org/01p3pd878 Okazaki Womens University 岔哎儳子大学'),
(44434, 'https://ror.org/0225zey96', 'en', 1, 'https://ror.org/0225zey96 Obihiro Otani Junior College 帯広大谷短期大学'),
(44435, 'https://ror.org/04b5t6e20', 'en', 1, 'https://ror.org/04b5t6e20 Niigata Prefectural Niigata MidoriKo High School ę–°ę½ŸēœŒē«‹ę–°ę½Ÿēæ ę±Ÿé«˜ē­‰å­¦ę ”'),
(44436, 'https://ror.org/0282p8n44', 'en', 1, 'https://ror.org/0282p8n44 Osaka Prefectural Education Center å¤§é˜Ŗåŗœę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44437, 'https://ror.org/04n820n80', 'en', 1, 'https://ror.org/04n820n80 Niigata Medical Technology Specialist School ę–°ę½ŸåŒ»ē™‚ęŠ€č”“å°‚é–€å­¦ę ”'),
(44438, 'https://ror.org/030dc5p74', 'en', 1, 'https://ror.org/030dc5p74 Odawara Women''s Junior College å°ē”°åŽŸå„³å­ēŸ­ęœŸå¤§å­¦'),
(44439, 'https://ror.org/031pw2y57', 'en', 1, 'https://ror.org/031pw2y57 Osaka Prefectural Hirakata High School å¤§é˜Ŗåŗœē«‹ęžšę–¹é«˜ē­‰å­¦ę ”'),
(44440, 'https://ror.org/026vq2355', 'en', 1, 'https://ror.org/026vq2355 Niigata Prefectural Niigata Minami High School ę–°ę½ŸēœŒē«‹ę–°ę½Ÿå—é«˜ē­‰å­¦ę ”'),
(44441, 'https://ror.org/03mxb1d84', 'en', 1, 'https://ror.org/03mxb1d84 Ogaki Women''s College å¤§åž£å„³å­ēŸ­ęœŸå¤§å­¦'),
(44442, 'https://ror.org/02zbycv67', 'no_lang_code', 1, 'https://ror.org/02zbycv67 Osaka Ibaraki High School å¤§é˜Ŗåŗœē«‹čŒØęœØé«˜ē­‰å­¦ę ”'),
(44443, 'https://ror.org/01wegjf65', 'en', 1, 'https://ror.org/01wegjf65 Ogori City Board of Education å°éƒ”åø‚ ę•™č‚²å§”å“”ä¼š'),
(44444, 'https://ror.org/00fss9n81', 'en', 1, 'https://ror.org/00fss9n81 Niigata Prefectural Education Center ę–°ę½ŸēœŒē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44445, 'https://ror.org/04t53ag79', 'en', 1, 'https://ror.org/04t53ag79 Niigata Prefectural Naoetsu Secondary School ę–°ę½ŸēœŒē«‹ē›“ę±Ÿę“„é«˜ē­‰å­¦ę ”'),
(44446, 'https://ror.org/05tycwb10', 'en', 1, 'https://ror.org/05tycwb10 Niigata Prefectural Nagaoka High School ę–°ę½ŸēœŒē«‹é•·å²”é«˜ē­‰å­¦ę ”'),
(44447, 'https://ror.org/02q9dpj81', 'en', 1, 'https://ror.org/02q9dpj81 National Institute of Technology Okinawa College ę²–ēø„å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44448, 'https://ror.org/05kykca56', 'en', 1, 'https://ror.org/05kykca56 Ohtsuki City College 大月短期大学'),
(44449, 'https://ror.org/03gxw2643', 'en', 1, 'https://ror.org/03gxw2643 Niigata Prefectural Niigata High School ę–°ę½ŸēœŒē«‹ę–°ę½Ÿé«˜ē­‰å­¦ę ”'),
(44450, 'https://ror.org/01h18yg90', 'en', 1, 'https://ror.org/01h18yg90 Oita Prefectural Board of Education å¤§åˆ†ēœŒę•™č‚²å§”å“”ä¼š'),
(44451, 'https://ror.org/02r6wnk86', 'en', 1, 'https://ror.org/02r6wnk86 Okinawa Prefectural Education Center ę²–ēø„ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44452, 'https://ror.org/04rdyj788', 'en', 1, 'https://ror.org/04rdyj788 Sakai Technology High School å¤§é˜Ŗåŗœē«‹å ŗå·„ē§‘é«˜ē­‰å­¦ę ”'),
(44453, 'https://ror.org/025wz5n41', 'en', 1, 'https://ror.org/025wz5n41 Osaka Prefectural Kitano High School å¤§é˜Ŗåŗœē«‹åŒ—é‡Žé«˜ē­‰å­¦ę ”'),
(44454, 'https://ror.org/05ye2w436', 'en', 1, 'https://ror.org/05ye2w436 Oita Junior College å¤§åˆ†ēŸ­ęœŸå¤§å­¦'),
(44455, 'https://ror.org/04qzk5f10', 'en', 1, 'https://ror.org/04qzk5f10 Osaka Prefectural Makino high school å¤§é˜Ŗåŗœē«‹ē‰§é‡Žé«˜ē­‰å­¦ę ”'),
(44456, 'https://ror.org/00enjfk59', 'en', 1, 'https://ror.org/00enjfk59 Oita Prefectural College of Arts and Culture å¤§åˆ†ēœŒē«‹čŠøč”“ę–‡åŒ–ēŸ­ęœŸå¤§å­¦'),
(44457, 'https://ror.org/02b005b78', 'en', 1, 'https://ror.org/02b005b78 Niigata Prefectural Kamo Agriculture and Forestry High School ę–°ę½ŸēœŒē«‹åŠ čŒ‚č¾²ęž—é«˜ē­‰å­¦ę ”'),
(44458, 'https://ror.org/00j09dc39', 'en', 1, 'https://ror.org/00j09dc39 Okinawa Prefectural Koroku High School ę²–ēø„ēœŒē«‹å°ē¦„é«˜ē­‰å­¦ę ”'),
(44459, 'https://ror.org/05b4rrz69', 'en', 1, 'https://ror.org/05b4rrz69 Niigata Prefectural Ojiya Nishi High School ę–°ę½ŸēœŒē«‹å°åƒč°·č„æé«˜ē­‰å­¦ę ”'),
(44460, 'https://ror.org/04rn6qc33', 'en', 1, 'https://ror.org/04rn6qc33 Okinawa Prefectural Museum ę²–ēø„ēœŒē«‹åšē‰©é¤Øćƒ»ē¾Žč”“é¤Ø'),
(44461, 'https://ror.org/02vx5xr46', 'en', 1, 'https://ror.org/02vx5xr46 Osaka Prefectural Police Department 大阪府警察'),
(44462, 'https://ror.org/01afrat76', 'en', 1, 'https://ror.org/01afrat76 Oita Prefectural Hiji support school å¤§åˆ†ēœŒē«‹ę—„å‡ŗę”Æę“å­¦ę ”'),
(44463, 'https://ror.org/02c3wh872', 'en', 1, 'https://ror.org/02c3wh872 Ōita Prefectural Museum of History å¤§åˆ†ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(44464, 'https://ror.org/03j5mnr69', 'en', 1, 'https://ror.org/03j5mnr69 Niigata City Kohshi Secondary School ę–°ę½Ÿåø‚ē«‹é«˜åæ—äø­ē­‰ę•™č‚²å­¦ę ”'),
(44465, 'https://ror.org/03v9g5m88', 'en', 1, 'https://ror.org/03v9g5m88 Seibi High School å¤§é˜Ŗåŗœē«‹ęˆē¾Žé«˜ē­‰å­¦ę ”'),
(44466, 'https://ror.org/04cafpa45', 'en', 1, 'https://ror.org/04cafpa45 Okinawa Womens Junior College ę²–ēø„å„³å­ēŸ­ęœŸå¤§å­¦'),
(44467, 'https://ror.org/04zv7sm47', 'en', 1, 'https://ror.org/04zv7sm47 Osaka Prefectural Sano Polytechnic High School å¤§é˜Ŗåŗœē«‹ä½é‡Žå·„ē§‘é«˜ē­‰å­¦ę ”'),
(44468, 'https://ror.org/02r4fh585', 'en', 1, 'https://ror.org/02r4fh585 Oita Prefectural School for the Blind å¤§åˆ†ēœŒē«‹ē›²å­¦ę ”'),
(44469, 'https://ror.org/0359zqq03', 'en', 1, 'https://ror.org/0359zqq03 Osaka Prefectural Toyonaka Support School å¤§é˜Ŗåŗœē«‹č±Šäø­ę”Æę“å­¦ę ”'),
(44470, 'https://ror.org/02ypyf569', 'en', 1, 'https://ror.org/02ypyf569 Osaka Yukioka Medical University å¤§é˜Ŗč”Œå²”åŒ»ē™‚å¤§å­¦'),
(44471, 'https://ror.org/037kbz526', 'en', 1, 'https://ror.org/037kbz526 National Institute of Technology, Oshima College å¤§å³¶å•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(44472, 'https://ror.org/00k02x334', 'en', 1, 'https://ror.org/00k02x334 Osaka Prefectural Agricultural High School å¤§é˜Ŗåŗœē«‹č¾²čŠøé«˜ē­‰å­¦ę ”'),
(44473, 'https://ror.org/05qjhbz81', 'en', 1, 'https://ror.org/05qjhbz81 Sugayadai Elementary School č…č°·å°å°å­¦ę ”'),
(44474, 'https://ror.org/031jpet61', 'no_lang_code', 1, 'https://ror.org/031jpet61 Osaka Aoyama University å¤§é˜Ŗé’å±±å¤§å­¦'),
(44475, 'https://ror.org/05e58gr55', 'en', 1, 'https://ror.org/05e58gr55 Osaka Center For Cultural Heritage å¤§é˜Ŗåŗœę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(44476, 'https://ror.org/00bkzza76', 'en', 1, 'https://ror.org/00bkzza76 Fujiidera Technical High School å¤§é˜Ŗåŗœē«‹č—¤äŗ•åÆŗå·„ē§‘é«˜ē­‰å­¦ę ”'),
(44477, 'https://ror.org/04h081c37', 'en', 1, 'https://ror.org/04h081c37 Okayama Prefectural Kurashiki Technical High School å²”å±±ēœŒē«‹å€‰ę•·å·„ę„­é«˜ē­‰å­¦ę ”'),
(44478, 'https://ror.org/00r76tg20', 'no_lang_code', 1, 'https://ror.org/00r76tg20 Osaka Christian College å¤§é˜Ŗć‚­ćƒŖć‚¹ćƒˆę•™ēŸ­ęœŸå¤§å­¦'),
(44479, 'https://ror.org/01g3szs55', 'no_lang_code', 1, 'https://ror.org/01g3szs55 Osaka Prefectural Shiroyama High School å¤§é˜Ŗåŗœē«‹åŸŽå±±é«˜ē­‰å­¦ę ”'),
(44480, 'https://ror.org/04ar6mt14', 'en', 1, 'https://ror.org/04ar6mt14 Saitama Cultural Deposits Research Corporation å…¬ē›Šč²”å›£ę³•äŗŗ åŸ¼ēŽ‰ēœŒåŸ‹č”µę–‡åŒ–č²”čŖæęŸ»äŗ‹ę„­å›£'),
(44481, 'https://ror.org/02emtct55', 'en', 1, 'https://ror.org/02emtct55 Takaishi High School å¤§é˜Ŗåŗœē«‹é«˜ēŸ³é«˜ē­‰å­¦ę ”'),
(44482, 'https://ror.org/01ab9mk90', 'en', 1, 'https://ror.org/01ab9mk90 Ritsumeikan Junior and Senior High School ē«‹å‘½é¤Øäø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(44483, 'https://ror.org/00k427y50', 'en', 1, 'https://ror.org/00k427y50 Osaka Municipal College of Design å¤§é˜Ŗåø‚ē«‹ćƒ‡ć‚¶ć‚¤ćƒ³ę•™č‚²ē ”ē©¶ę‰€'),
(44484, 'https://ror.org/05nf0wq34', 'en', 1, 'https://ror.org/05nf0wq34 Saitama Prefectural Education Center åŸ¼ēŽ‰ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44485, 'https://ror.org/02d90d472', 'en', 1, 'https://ror.org/02d90d472 Osaka Municipal Nishi High School å¤§é˜Ŗåø‚ē«‹č„æé«˜ē­‰å­¦ę ”'),
(44486, 'https://ror.org/04cf91p66', 'en', 1, 'https://ror.org/04cf91p66 Our Lady Academy of Sakura ē§ē«‹ę”œć®č–ęÆå­¦é™¢é«˜ę ”'),
(44487, 'https://ror.org/040mta007', 'en', 1, 'https://ror.org/040mta007 National Institute of Technology, Oyama College å°å±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44488, 'https://ror.org/0402q0384', 'no_lang_code', 1, 'https://ror.org/0402q0384 Osaka Shin-ai College å¤§é˜Ŗäæ”ę„›å„³å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(44489, 'https://ror.org/05nts6117', 'en', 1, 'https://ror.org/05nts6117 Saitama Women''s Junior College åŸ¼ēŽ‰å„³å­ēŸ­ęœŸå¤§å­¦'),
(44490, 'https://ror.org/0006kcg24', 'en', 1, 'https://ror.org/0006kcg24 Osaka Municipal Miyakojima Technical High School å¤§é˜Ŗåø‚ē«‹éƒ½å³¶å·„ę„­é«˜ē­‰å­¦ę ”'),
(44491, 'https://ror.org/052zcxp76', 'en', 1, 'https://ror.org/052zcxp76 Seika Women''s Junior College ē²¾čÆå„³å­ēŸ­ęœŸå¤§å­¦'),
(44492, 'https://ror.org/04ev1v417', 'en', 1, 'https://ror.org/04ev1v417 Seirei Women''s Junior College č–éœŠå„³å­ēŸ­ęœŸå¤§å­¦'),
(44493, 'https://ror.org/01dx0e286', 'en', 1, 'https://ror.org/01dx0e286 Osaka Prefectural Horticulture High School å¤§é˜Ŗåŗœē«‹åœ’čŠøé«˜ē­‰å­¦ę ”'),
(44494, 'https://ror.org/02eq7mb50', 'en', 1, 'https://ror.org/02eq7mb50 Sakai Women''s Junior College 堺儳子短期大学'),
(44495, 'https://ror.org/029m89a02', 'en', 1, 'https://ror.org/029m89a02 Saga Prefectural Imari Agriculture and Forestry High School ä½č³€ēœŒē«‹ä¼Šäø‡é‡Œč¾²ęž—é«˜ē­‰å­¦ę ”'),
(44496, 'https://ror.org/04j5m9426', 'no_lang_code', 1, 'https://ror.org/04j5m9426 Tokyo Seiei College ę±äŗ¬č–ę „å¤§å­¦'),
(44497, 'https://ror.org/03fa8j757', 'en', 1, 'https://ror.org/03fa8j757 Parks and Recreation Foundation čˆ¬č²”å›£ę³•äŗŗ å…¬åœ’č²”å›£'),
(44498, 'https://ror.org/00rz19f75', 'en', 1, 'https://ror.org/00rz19f75 Sakura no Seibo Junior College ę”œć®č–ęÆēŸ­ęœŸå¤§å­¦'),
(44499, 'https://ror.org/0400cp237', 'en', 1, 'https://ror.org/0400cp237 Saga Prefectural Education Center ä½č³€ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44500, 'https://ror.org/02q2axs78', 'en', 1, 'https://ror.org/02q2axs78 Kyoto Seizan College 京都脿山短期大学'),
(44501, 'https://ror.org/033tqss18', 'en', 1, 'https://ror.org/033tqss18 Philatelic Museum åˆ‡ę‰‹ć®åšē‰©é¤Ø'),
(44502, 'https://ror.org/01kp51d05', 'en', 1, 'https://ror.org/01kp51d05 Osaka Municipal Ikuno Technical High School å¤§é˜Ŗåø‚ē«‹ē”Ÿé‡Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(44503, 'https://ror.org/03425vk88', 'en', 1, 'https://ror.org/03425vk88 Salesian Polytechnic ć‚µćƒ¬ć‚øć‚Ŗé«˜å°‚ 惛'),
(44504, 'https://ror.org/04ztf2c56', 'en', 1, 'https://ror.org/04ztf2c56 Sanjo Municipal Tsukioka Elementary School äø‰ę”åø‚ē«‹ęœˆå²”å°å­¦ę ”'),
(44505, 'https://ror.org/03e1t0653', 'no_lang_code', 1, 'https://ror.org/03e1t0653 Sendai Seiyo Gakuin College ä»™å°é’č‘‰å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(44506, 'https://ror.org/04qtyk830', 'no_lang_code', 1, 'https://ror.org/04qtyk830 Sendai Tateyama Tanaka School ä»™å°åø‚ē«‹å±±ē”°äø­å­¦ę ”'),
(44507, 'https://ror.org/04frnf283', 'en', 1, 'https://ror.org/04frnf283 Sanyo Women''s College å±±é™½å„³å­ēŸ­ęœŸå¤§å­¦'),
(44508, 'https://ror.org/016qrrn27', 'en', 1, 'https://ror.org/016qrrn27 Shizuoka Prefectural Science and Technology High School é™å²”ēœŒē«‹ē§‘å­¦ęŠ€č”“é«˜ē­‰å­¦ę ”'),
(44509, 'https://ror.org/02vtn5444', 'en', 1, 'https://ror.org/02vtn5444 Saitama Junshin Junior College åŸ¼ēŽ‰ē“”ēœŸēŸ­ęœŸå¤§å­¦'),
(44510, 'https://ror.org/03zkxdc34', 'en', 1, 'https://ror.org/03zkxdc34 Shizuoka Prefectural Central Library é™å²”ēœŒē«‹äø­å¤®å›³ę›øé¤Ø'),
(44511, 'https://ror.org/05tee1f44', 'en', 1, 'https://ror.org/05tee1f44 Shizuoka Prefectural Education Center é™å²”ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44512, 'https://ror.org/00bkhev45', 'en', 1, 'https://ror.org/00bkhev45 Saitama Prefectural Omiya Chuo Senior High School åŸ¼ēŽ‰ēœŒē«‹å¤§å®®äø­å¤®é«˜ē­‰å­¦ę ”'),
(44513, 'https://ror.org/03ta8v762', 'en', 1, 'https://ror.org/03ta8v762 Saitama Prefectural Omiya High School åŸ¼ēŽ‰ēœŒē«‹å¤§å®®é«˜ē­‰å­¦ę ”'),
(44514, 'https://ror.org/01ee8e975', 'no_lang_code', 1, 'https://ror.org/01ee8e975 Showagakuin Junior College ę˜­å’Œå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(44515, 'https://ror.org/03zr6cm28', 'no_lang_code', 1, 'https://ror.org/03zr6cm28 Shizuoka Prefectural Gotemba Minami High School é™å²”ēœŒē«‹å¾”ę®æå “å—é«˜ē­‰å­¦ę ”'),
(44516, 'https://ror.org/0382x3a11', 'no_lang_code', 1, 'https://ror.org/0382x3a11 Shiretoko Museum ę–œé‡Œē”ŗē«‹ēŸ„åŗŠåšē‰©é¤Ø'),
(44517, 'https://ror.org/05ym5q463', 'en', 1, 'https://ror.org/05ym5q463 Industrial Research Institute of Shizuoka Prefecture é™å²”ēœŒå·„ę„­ęŠ€č”“ē ”ē©¶ę‰€'),
(44518, 'https://ror.org/02edrwa65', 'en', 1, 'https://ror.org/02edrwa65 Shuko Junior College äæ®ē“…ēŸ­ęœŸå¤§å­¦'),
(44519, 'https://ror.org/05xwnaa24', 'en', 1, 'https://ror.org/05xwnaa24 Ohara Memorial Institute for Science of Labour å¤§åŽŸčØ˜åæµåŠ“åƒē§‘å­¦ē ”ē©¶ę‰€'),
(44520, 'https://ror.org/034f1bj67', 'en', 1, 'https://ror.org/034f1bj67 Shizuoka Prefectural Kakegawanishi High School é™å²”ēœŒē«‹ęŽ›å·č„æé«˜ē­‰å­¦ę ”'),
(44521, 'https://ror.org/01baw3d45', 'no_lang_code', 1, 'https://ror.org/01baw3d45 Shukutoku Junior College ę·‘å¾³ēŸ­ęœŸå¤§å­¦'),
(44522, 'https://ror.org/02zq3rg90', 'en', 1, 'https://ror.org/02zq3rg90 Saitama Prefectural Miyashiro High School åŸ¼ēŽ‰ēœŒå®®ä»£é«˜ē­‰å­¦ę ”'),
(44523, 'https://ror.org/00ckqw993', 'en', 1, 'https://ror.org/00ckqw993 Shiga Bunkyo Junior College ę»‹č³€ę–‡ę•™ēŸ­ęœŸå¤§å­¦'),
(44524, 'https://ror.org/04vr3n661', 'en', 1, 'https://ror.org/04vr3n661 Shizuoka Prefectural Police é™å²”ēœŒč­¦åÆŸ'),
(44525, 'https://ror.org/007qf4q77', 'en', 1, 'https://ror.org/007qf4q77 Lion Foundation for Dental Health ćƒ©ć‚¤ć‚Ŗćƒ³ę­Æē§‘č”›ē”Ÿē ”ē©¶ę‰€'),
(44526, 'https://ror.org/05q3m8e94', 'no_lang_code', 1, 'https://ror.org/05q3m8e94 Fuchu Hospital åŗœäø­ē—…é™¢'),
(44527, 'https://ror.org/04ny33f60', 'en', 1, 'https://ror.org/04ny33f60 Shiga Junior College ę»‹č³€ēŸ­ęœŸå¤§å­¦'),
(44528, 'https://ror.org/024285019', 'en', 1, 'https://ror.org/024285019 Shizuoka Prefecture Agricultural and Forestry Research Institute é™å²”ēœŒ/č¾²ęž—ęŠ€č”“ē ”ē©¶ę‰€'),
(44529, 'https://ror.org/02djjwk37', 'en', 1, 'https://ror.org/02djjwk37 Inagakuen Public High School åŸ¼ēŽ‰ēœŒä¼Šå„ˆå­¦åœ’ē·åˆé«˜ę ”'),
(44530, 'https://ror.org/01rtzrs77', 'en', 1, 'https://ror.org/01rtzrs77 Saitama Prefectural Industrial Technology Center åŸ¼ēŽ‰ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(44531, 'https://ror.org/02mfchx98', 'en', 1, 'https://ror.org/02mfchx98 Shiga Prefectural Education Center ę»‹č³€ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44532, 'https://ror.org/01qb47q59', 'en', 1, 'https://ror.org/01qb47q59 Saitama Prefectural Kodama High School åŸ¼ēŽ‰ēœŒå…ēŽ‰é«˜ę ”');
INSERT INTO `rors` VALUES
(44533, 'https://ror.org/057gzv333', 'en', 1, 'https://ror.org/057gzv333 Sophia School of Social Welfare ē¤¾ä¼šē¦ē„‰ć®ć‚½ćƒ•ć‚£ć‚¢ćƒ»ć‚¹ć‚Æćƒ¼ćƒ«'),
(44534, 'https://ror.org/03m8w6896', 'en', 1, 'https://ror.org/03m8w6896 Quantum Chemistry Research Institute ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗ é‡å­åŒ–å­¦ē ”ē©¶å”ä¼šē ”ē©¶ę‰€'),
(44535, 'https://ror.org/0063pqn40', 'en', 1, 'https://ror.org/0063pqn40 Saitama Prefectural Kumagaya Girls High School åŸ¼ēŽ‰ēœŒē«‹ē†Šč°·å„³å­é«˜ē­‰å­¦ę ”'),
(44536, 'https://ror.org/04sgkrh50', 'en', 1, 'https://ror.org/04sgkrh50 Shizuoka Prefectural Board of Education é™å²”ēœŒę•™č‚²å§”å“”ä¼š'),
(44537, 'https://ror.org/05sm0qs27', 'en', 1, 'https://ror.org/05sm0qs27 Saitama Prefectural Museum of History and Folklore åŸ¼ēŽ‰ēœŒē«‹ę­“å²ćØę°‘äæ—ć®åšē‰©é¤Ø'),
(44538, 'https://ror.org/02y5ftz59', 'en', 1, 'https://ror.org/02y5ftz59 St. Cecilia Women''s Junior College č–ć‚»ć‚·ćƒŖć‚¢ēŸ­ęœŸå¤§å­¦'),
(44539, 'https://ror.org/04fc53j27', 'no_lang_code', 1, 'https://ror.org/04fc53j27 Nippon Koei (Japan) ę—„ęœ¬å·„å–¶'),
(44540, 'https://ror.org/0492z4191', 'en', 1, 'https://ror.org/0492z4191 Saitama Prefectural Museum of Natural History č‡Ŗē„¶å²ć®åŸ¼ēŽ‰ēœŒē«‹ē¾Žč”“é¤Ø'),
(44541, 'https://ror.org/0117r4k15', 'en', 1, 'https://ror.org/0117r4k15 Okinawa Prefectural Board of Education ę²–ēø„ēœŒę•™č‚²å§”å“”ä¼š'),
(44542, 'https://ror.org/02pbc3p47', 'en', 1, 'https://ror.org/02pbc3p47 Saitama Prefectural Tokorozawa Nishi High School åŸ¼ēŽ‰ēœŒē«‹ę‰€ę²¢č„æé«˜ē­‰å­¦ę ”'),
(44543, 'https://ror.org/05nm21507', 'en', 1, 'https://ror.org/05nm21507 Ohda High School å³¶ę ¹ēœŒē«‹å¤§ē”°é«˜ē­‰å­¦ę ”'),
(44544, 'https://ror.org/021r8rp50', 'en', 1, 'https://ror.org/021r8rp50 St. Margaret''s Junior College ē«‹ę•™å„³å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(44545, 'https://ror.org/00fgym023', 'en', 1, 'https://ror.org/00fgym023 Hamamatsu City High School ęµœę¾åø‚é«˜ē­‰å­¦ę ”'),
(44546, 'https://ror.org/04v65wy58', 'en', 1, 'https://ror.org/04v65wy58 Saitama Prefectural Toyooka High School åŸ¼ēŽ‰ēœŒē«‹č±Šå²”é«˜ē­‰å­¦ę ”'),
(44547, 'https://ror.org/02306qr05', 'en', 1, 'https://ror.org/02306qr05 St. Mary''s College åå¤å±‹ęŸ³åŸŽēŸ­ęœŸå¤§å­¦'),
(44548, 'https://ror.org/032trmw54', 'en', 1, 'https://ror.org/032trmw54 Saitama Prefectural Urawa first Girls'' High School åŸ¼ēŽ‰ēœŒē«‹ęµ¦å’Œē¬¬äø€å„³å­é«˜ē­‰å­¦ę ”'),
(44549, 'https://ror.org/01sy8w588', 'en', 1, 'https://ror.org/01sy8w588 Shimane Prefectural Daito High School å³¶ę ¹ēœŒē«‹å¤§ę±é«˜ē­‰å­¦ę ”'),
(44550, 'https://ror.org/05adg0580', 'en', 1, 'https://ror.org/05adg0580 Saitama Prefectural Urawa High School åŸ¼ēŽ‰ēœŒē«‹ęµ¦å’Œé«˜ę ”'),
(44551, 'https://ror.org/0172njy07', 'en', 1, 'https://ror.org/0172njy07 Research Institute for Electromagnetic Materials é›»ē£ęę–™ē ”ē©¶ę‰€'),
(44552, 'https://ror.org/03pngf508', 'en', 1, 'https://ror.org/03pngf508 National Institute of Technology, Suzuka College éˆ“é¹æå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44553, 'https://ror.org/01y16qn61', 'en', 1, 'https://ror.org/01y16qn61 Research Institute for Environmental Sciences and Public Health of Iwate Prefecture å²©ę‰‹ēœŒē’°å¢ƒäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(44554, 'https://ror.org/03kgj1y58', 'no_lang_code', 1, 'https://ror.org/03kgj1y58 Takada Junior College é«˜ē”°ēŸ­ęœŸå¤§å­¦'),
(44555, 'https://ror.org/03m2n7z62', 'en', 1, 'https://ror.org/03m2n7z62 Shoei Junior College é Œę „ēŸ­ęœŸå¤§å­¦'),
(44556, 'https://ror.org/04efpm434', 'en', 1, 'https://ror.org/04efpm434 Research Institute for Peace and Security äø€čˆ¬č²”å›£ę³•äŗŗå¹³å’Œćƒ»å®‰å…Øäæéšœē ”ē©¶ę‰€'),
(44557, 'https://ror.org/01rrjpm51', 'en', 1, 'https://ror.org/01rrjpm51 Miyazaki Prefecture Takanabe Agricultural High School å®®å“ŽēœŒē«‹é«˜é‹č¾²ę„­é«˜ē­‰å­¦ę ”'),
(44558, 'https://ror.org/005xj6w35', 'en', 1, 'https://ror.org/005xj6w35 Shogen Junior College 正眼短期大学'),
(44559, 'https://ror.org/05vp7sn46', 'en', 1, 'https://ror.org/05vp7sn46 Shiminkatsudou Information Center'),
(44560, 'https://ror.org/03vn74a89', 'en', 1, 'https://ror.org/03vn74a89 Takarazuka University of Medical and Health Care å®å”šåŒ»ē™‚å¤§å­¦'),
(44561, 'https://ror.org/03jgff472', 'en', 1, 'https://ror.org/03jgff472 Takayama College of Car Technology é«˜å±±č‡Ŗå‹•č»ŠēŸ­ęœŸå¤§å­¦'),
(44562, 'https://ror.org/016qc0h19', 'en', 1, 'https://ror.org/016qc0h19 Shinshu Honan Junior College äæ”å·žč±Šå—ēŸ­ęœŸå¤§å­¦'),
(44563, 'https://ror.org/02zs45744', 'no_lang_code', 1, 'https://ror.org/02zs45744 Takenaka (Japan) ę Ŗå¼ä¼šē¤¾ē«¹äø­å·„å‹™åŗ—'),
(44564, 'https://ror.org/04a2v9v66', 'en', 1, 'https://ror.org/04a2v9v66 Osaka Municipal Museum of Oriental Ceramics'),
(44565, 'https://ror.org/04a58ge54', 'no_lang_code', 1, 'https://ror.org/04a58ge54 Yokosuka City Museum ęØŖé ˆč³€åø‚č‡Ŗē„¶ćƒ»äŗŗę–‡åšē‰©é¤Ø'),
(44566, 'https://ror.org/01vex9c14', 'en', 1, 'https://ror.org/01vex9c14 Tobu College of Medical Technology ę±ę­¦åŒ»å­¦ęŠ€č”“å°‚é–€å­¦ę ”'),
(44567, 'https://ror.org/03pr7r585', 'en', 1, 'https://ror.org/03pr7r585 Disaster Reduction and Human Renovation Institution é˜Ŗē„žćƒ»ę·”č·Æå¤§éœ‡ē½čØ˜åæµ äŗŗćØé˜²ē½ęœŖę„ć‚»ćƒ³ć‚æćƒ¼'),
(44568, 'https://ror.org/03hacry86', 'en', 1, 'https://ror.org/03hacry86 Tokyo Metropolitan Saginomiya High School ę±äŗ¬éƒ½ē«‹é·ŗå®®é«˜ē­‰å­¦ę ”'),
(44569, 'https://ror.org/04eynnv65', 'en', 1, 'https://ror.org/04eynnv65 Tochigi Prefectural Utsunomiya Commercial and Business High School ę ƒęœØēœŒē«‹å®‡éƒ½å®®å•†ę„­é«˜ē­‰å­¦ę ”'),
(44570, 'https://ror.org/01etv2861', 'no_lang_code', 1, 'https://ror.org/01etv2861 Tokyo Metropolitan Musashigaoka High School ę±äŗ¬éƒ½ē«‹ę­¦č”µäø˜é«˜ē­‰å­¦ę ”'),
(44571, 'https://ror.org/04p1vet95', 'en', 1, 'https://ror.org/04p1vet95 Institute for Future Engineering ęœŖę„å·„å­¦ē ”ē©¶ę‰€'),
(44572, 'https://ror.org/01ar5kd02', 'en', 1, 'https://ror.org/01ar5kd02 Tochigi Prefectural Museum of Fine Arts ę ƒęœØēœŒē«‹ē¾Žč”“é¤Ø'),
(44573, 'https://ror.org/05rdhpk34', 'en', 1, 'https://ror.org/05rdhpk34 Tokyo Hygiene Gakuen College ę±äŗ¬č”›ē”Ÿå­¦åœ’å°‚é–€å­¦ę ”'),
(44574, 'https://ror.org/05s0mht63', 'en', 1, 'https://ror.org/05s0mht63 Tokyo Metropolitan Board of Education ę±äŗ¬éƒ½ę•™č‚²äŗ‹å‹™ę‰€'),
(44575, 'https://ror.org/043hk8147', 'en', 1, 'https://ror.org/043hk8147 Tokyo Metropolitan Police Department 警視庁'),
(44576, 'https://ror.org/04vqpq732', 'en', 1, 'https://ror.org/04vqpq732 Institute for Research on Household Economics å®¶čØˆēµŒęøˆē ”ē©¶ę‰€'),
(44577, 'https://ror.org/01z3sws73', 'no_lang_code', 1, 'https://ror.org/01z3sws73 Shinjuku Yamabuki High School ę±äŗ¬éƒ½ē«‹ę–°å®æå±±å¹é«˜ē­‰å­¦ę ”'),
(44578, 'https://ror.org/01vwnst03', 'en', 1, 'https://ror.org/01vwnst03 Toyama Prefectural Education Center åÆŒå±±ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44579, 'https://ror.org/00zbfm731', 'en', 1, 'https://ror.org/00zbfm731 Tokyo College of Transport Studies ę±äŗ¬äŗ¤é€šēŸ­ęœŸå¤§å­¦'),
(44580, 'https://ror.org/02gbdr274', 'en', 1, 'https://ror.org/02gbdr274 Tateyama Elementary School ē«‹å±±å°å­¦ę ”'),
(44581, 'https://ror.org/01r5php15', 'en', 1, 'https://ror.org/01r5php15 The Institute of Buraku Problem éƒØč½å•é”Œē ”ē©¶ę‰€'),
(44582, 'https://ror.org/02cac9f06', 'en', 1, 'https://ror.org/02cac9f06 Tokyo Metropolitan Musashi High School ę±äŗ¬éƒ½ē«‹ę­¦č”µé«˜ē­‰å­¦ę ”'),
(44583, 'https://ror.org/01n0ntp67', 'en', 1, 'https://ror.org/01n0ntp67 Toyo College of Food Technology ę±ę“‹é£Ÿå“å·„ę„­ēŸ­ęœŸå¤§å­¦'),
(44584, 'https://ror.org/002k06d85', 'en', 1, 'https://ror.org/002k06d85 National Institute of Technology, Tokyo College å›½ē«‹ę±äŗ¬å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44585, 'https://ror.org/03e27sm64', 'en', 1, 'https://ror.org/03e27sm64 Tokyo Metropolitan Kuramae Technical High School ę±äŗ¬éƒ½ē«‹č”µå‰å·„ę„­é«˜ē­‰å­¦ę ”'),
(44586, 'https://ror.org/03ygwqt20', 'en', 1, 'https://ror.org/03ygwqt20 Toita Women''s College ęˆøęæå„³å­ēŸ­ęœŸå¤§å­¦'),
(44587, 'https://ror.org/050hkx325', 'en', 1, 'https://ror.org/050hkx325 Tokyo National Museum ę±äŗ¬å›½ē«‹åšē‰©é¤Ø'),
(44588, 'https://ror.org/05d78p162', 'en', 1, 'https://ror.org/05d78p162 Foundation of Global Life Learning Center äø€čˆ¬č²”å›£ę³•äŗŗ ē”Ÿę¶Æå­¦ēæ’é–‹ē™ŗč²”å›£ 事務局'),
(44589, 'https://ror.org/03mrh9y60', 'en', 1, 'https://ror.org/03mrh9y60 Japan Snake Institute ę—„ęœ¬ć‚¹ćƒćƒ¼ć‚Æē ”ē©¶ę‰€'),
(44590, 'https://ror.org/01067b760', 'en', 1, 'https://ror.org/01067b760 Tokyo Management College ę±äŗ¬ēµŒå–¶ēŸ­ęœŸå¤§å­¦'),
(44591, 'https://ror.org/04wfh0972', 'en', 1, 'https://ror.org/04wfh0972 Tokyo Rissho Junior College ę±äŗ¬ē«‹ę­£ēŸ­ęœŸå¤§å­¦'),
(44592, 'https://ror.org/04mhtp952', 'en', 1, 'https://ror.org/04mhtp952 Japanese Red Cross Akita College of Nursing ę—„ęœ¬čµ¤åå­—ē§‹ē”°ēœ‹č­·å¤§å­¦'),
(44593, 'https://ror.org/04fr3ga66', 'en', 1, 'https://ror.org/04fr3ga66 Japanese Red Cross Hiroshima College of Nursing ę—„ęœ¬čµ¤åå­—åŗƒå³¶ēœ‹č­·å¤§å­¦'),
(44594, 'https://ror.org/00z7gjv76', 'en', 1, 'https://ror.org/00z7gjv76 Toyota Transportation Research Institute å…¬ē›Šč²”å›£ę³•äŗŗč±Šē”°éƒ½åø‚äŗ¤é€šē ”ē©¶ę‰€'),
(44595, 'https://ror.org/02faq1w63', 'en', 1, 'https://ror.org/02faq1w63 Tokyo Metropolitan Nogyo High School'),
(44596, 'https://ror.org/05fkrca82', 'en', 1, 'https://ror.org/05fkrca82 Gifu Prefectural Toki Commercial High School å²é˜œēœŒē«‹åœŸå²å•†ę„­é«˜ē­‰å­¦ę ”'),
(44597, 'https://ror.org/04y4mb158', 'en', 1, 'https://ror.org/04y4mb158 Tokyo Union Theological Seminary ę±äŗ¬ē„žå­¦å¤§å­¦'),
(44598, 'https://ror.org/00ge9bp23', 'en', 1, 'https://ror.org/00ge9bp23 Tokyo Metropolitan Agriculture and Forestry Research Center ę±äŗ¬éƒ½č¾²ęž—ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(44599, 'https://ror.org/01gjxh181', 'en', 1, 'https://ror.org/01gjxh181 Tsu City College äø‰é‡ēŸ­ęœŸå¤§å­¦'),
(44600, 'https://ror.org/01k7bd990', 'en', 1, 'https://ror.org/01k7bd990 Nishigaoka Elementary School ę“„åø‚ē«‹č„æćŒäø˜å°å­¦ę ”'),
(44601, 'https://ror.org/02rhb5h29', 'no_lang_code', 1, 'https://ror.org/02rhb5h29 Tokyo Metropolitan Archives ę±äŗ¬éƒ½å…¬ę–‡ę›øé¤Ø'),
(44602, 'https://ror.org/02vrrwa37', 'en', 1, 'https://ror.org/02vrrwa37 Middle Eastern Culture Center in Japan ę—„ęœ¬ć§ćÆäø­čæ‘ę±ę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(44603, 'https://ror.org/0567nxn66', 'no_lang_code', 1, 'https://ror.org/0567nxn66 Toyama Prefectural Takaoka High School åÆŒå±±ēœŒē«‹é«˜å²”é«˜ē­‰å­¦ę ”'),
(44604, 'https://ror.org/04fs8gp50', 'en', 1, 'https://ror.org/04fs8gp50 Mitsubishi Economic Research Institute äø‰č±ēµŒęøˆē ”ē©¶ę‰€'),
(44605, 'https://ror.org/00v53am25', 'en', 1, 'https://ror.org/00v53am25 Tokyo Metropolitan Bunkyo High School ę±äŗ¬éƒ½ē«‹ę–‡äŗ¬é«˜ē­‰å­¦ę ”'),
(44606, 'https://ror.org/03vrane61', 'no_lang_code', 1, 'https://ror.org/03vrane61 Museum of Modern Art Kamakura and Hayama ē„žå„ˆå·ēœŒē«‹čæ‘ä»£ē¾Žč”“é¤Øč‘‰å±±'),
(44607, 'https://ror.org/057kfzw97', 'no_lang_code', 1, 'https://ror.org/057kfzw97 Tottori College é³„å–ēŸ­ęœŸå¤§å­¦'),
(44608, 'https://ror.org/011wm9695', 'en', 1, 'https://ror.org/011wm9695 Tottori Prefectural Museum é³„å–ēœŒē«‹åšē‰©é¤Ø'),
(44609, 'https://ror.org/01dwwtp07', 'en', 1, 'https://ror.org/01dwwtp07 Tokyo Metropolitan East High School ę±äŗ¬éƒ½ē«‹ę±é«˜ē­‰å­¦ę ”'),
(44610, 'https://ror.org/008f7aw41', 'en', 1, 'https://ror.org/008f7aw41 Paleological Association of Japan å…¬ē›Šč²”å›£ę³•äŗŗå¤ä»£å­¦å”ä¼š'),
(44611, 'https://ror.org/05qszhe91', 'en', 1, 'https://ror.org/05qszhe91 Museum of Nature and Human Activities Hyogo č‡Ŗē„¶ć®åšē‰©é¤ØćØäŗŗé–“ę“»å‹•å…µåŗ«'),
(44612, 'https://ror.org/05sb2p455', 'en', 1, 'https://ror.org/05sb2p455 Tottori Prefectural Chizu Agriculture and Forestry High School é³„å–ēœŒē«‹ę™ŗé ­č¾²ęž—é«˜ē­‰å­¦ę ”'),
(44613, 'https://ror.org/037nf4x66', 'en', 1, 'https://ror.org/037nf4x66 Tokushima College of Technology 徳島巄愭短期大学'),
(44614, 'https://ror.org/04k7d8776', 'en', 1, 'https://ror.org/04k7d8776 Tsukuba Municipal Azuma Elementary School ć¤ćć°åø‚ē«‹å¾å¦»å°å­¦ę ”'),
(44615, 'https://ror.org/00ttq5z33', 'en', 1, 'https://ror.org/00ttq5z33 Toyama Industrial Technology Center åÆŒå±±ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(44616, 'https://ror.org/04cnkg888', 'en', 1, 'https://ror.org/04cnkg888 Museum of Japanese Art Yamato Bunkakan å¤§å’Œę–‡čÆé¤Ø'),
(44617, 'https://ror.org/00ftn9c34', 'en', 1, 'https://ror.org/00ftn9c34 Toyama Prefectural Toyama Minami High School åÆŒå±±ēœŒē«‹åÆŒå±±å—é«˜ē­‰å­¦ę ”'),
(44618, 'https://ror.org/00th7y414', 'en', 1, 'https://ror.org/00th7y414 Tokushima Prefectural Museum å¾³å³¶ēœŒē«‹åšē‰©é¤Ø'),
(44619, 'https://ror.org/03ym6nw09', 'en', 1, 'https://ror.org/03ym6nw09 Tsuruoka Technical High School å±±å½¢ēœŒē«‹é¶“å²”å·„ę„­é«˜ē­‰å­¦ę ”'),
(44620, 'https://ror.org/01ffrrm18', 'en', 1, 'https://ror.org/01ffrrm18 Tokushima Prefectural Police 徳島県警察本部'),
(44621, 'https://ror.org/01w6k3w63', 'no_lang_code', 1, 'https://ror.org/01w6k3w63 Toyama College 富山短期大学'),
(44622, 'https://ror.org/00pjwdc92', 'en', 1, 'https://ror.org/00pjwdc92 National Institute of Technology, Ube College å®‡éƒØå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44623, 'https://ror.org/00d68k463', 'en', 1, 'https://ror.org/00d68k463 Toyama Prefectural Institute for Pharmaceutical Research åÆŒå±±ēœŒč–¬äŗ‹ē·åˆē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(44624, 'https://ror.org/00sc3fz23', 'en', 1, 'https://ror.org/00sc3fz23 Tokushima Prefectural General Education Center å¾³å³¶ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44625, 'https://ror.org/019tpnt53', 'en', 1, 'https://ror.org/019tpnt53 National Museum of Art Osaka å›½ē«‹å›½éš›ē¾Žč”“é¤Ø'),
(44626, 'https://ror.org/02abk3844', 'en', 1, 'https://ror.org/02abk3844 Ueda Womens Junior College äøŠē”°å„³å­ēŸ­ęœŸå¤§å­¦'),
(44627, 'https://ror.org/027906p22', 'en', 1, 'https://ror.org/027906p22 Toyama Prefectural Namerikawa High School åÆŒå±±ēœŒē«‹ę»‘å·é«˜ē­‰å­¦ę ”'),
(44628, 'https://ror.org/02vft6f63', 'en', 1, 'https://ror.org/02vft6f63 Tokyo Metropolitan Hiroo High School ę±äŗ¬éƒ½ē«‹åŗƒå°¾é«˜ē­‰å­¦ę ”'),
(44629, 'https://ror.org/04hr38d13', 'en', 1, 'https://ror.org/04hr38d13 Toyama Prefectural Sakurai High School åÆŒå±±ēœŒē«‹ę”œäŗ•é«˜ē­‰å­¦ę ”'),
(44630, 'https://ror.org/046jx2h22', 'en', 1, 'https://ror.org/046jx2h22 National Institute of Technology, Tokuyama College å¾³å±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44631, 'https://ror.org/03ez0jn38', 'en', 1, 'https://ror.org/03ez0jn38 National Museum of Modern Art Kyoto äŗ¬éƒ½å›½ē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(44632, 'https://ror.org/05sa4da38', 'en', 1, 'https://ror.org/05sa4da38 Tokyo Metropolitan Industrial Technology Research Institute ę±äŗ¬éƒ½ē«‹ē”£ę„­ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(44633, 'https://ror.org/05j53fm28', 'en', 1, 'https://ror.org/05j53fm28 Tokyo Sport Benefits Corporation å…¬ē›Šč²”å›£ę³•äŗŗ ę±äŗ¬éƒ½ć‚¹ćƒćƒ¼ćƒ„ę–‡åŒ–äŗ‹ę„­å›£'),
(44634, 'https://ror.org/02g6as782', 'en', 1, 'https://ror.org/02g6as782 National Museum of Modern Art Tokyo ę±äŗ¬å›½ē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(44635, 'https://ror.org/03ys00e11', 'en', 1, 'https://ror.org/03ys00e11 Tokyo High School ę±äŗ¬é«˜ē­‰å­¦ę ”'),
(44636, 'https://ror.org/012spbn33', 'en', 1, 'https://ror.org/012spbn33 National Museum of Western Art å›½ē«‹č„æę“‹ē¾Žč”“é¤Ø'),
(44637, 'https://ror.org/05n3bsa65', 'en', 1, 'https://ror.org/05n3bsa65 Tokyo Metropolitan Koganei Industrial High School ę±äŗ¬éƒ½ē«‹å°é‡‘äŗ•å·„ę„­é«˜ē­‰å­¦ę ”'),
(44638, 'https://ror.org/02vg5vv12', 'en', 1, 'https://ror.org/02vg5vv12 Noguchi Institute č²”å›£ę³•äŗŗé‡Žå£ē ”ē©¶ę‰€'),
(44639, 'https://ror.org/01f9db456', 'en', 1, 'https://ror.org/01f9db456 Nitobe Bunka College ę–°ęø”ęˆøę–‡åŒ–ēŸ­ęœŸå¤§å­¦'),
(44640, 'https://ror.org/01v7eqs04', 'en', 1, 'https://ror.org/01v7eqs04 Kyoto Prefecture Archaeological Research Center äŗ¬éƒ½åŗœåŸ‹č”µę–‡åŒ–č²”čŖæęŸ»ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(44641, 'https://ror.org/048a7w867', 'en', 1, 'https://ror.org/048a7w867 Tokyo Metropolitan Komaba High School ę±äŗ¬éƒ½ē«‹é§’å “é«˜ē­‰å­¦ę ”'),
(44642, 'https://ror.org/03jjvt296', 'en', 1, 'https://ror.org/03jjvt296 Wakayama Prefectural Board of Education å’Œę­Œå±±ēœŒę•™č‚²å§”å“”ä¼š'),
(44643, 'https://ror.org/04bq84m08', 'en', 1, 'https://ror.org/04bq84m08 Foundation Wakayama Prefecture Cultural Property Center å…¬ē›Šč²”å›£ę³•äŗŗå’Œę­Œå±±ēœŒę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(44644, 'https://ror.org/04jzeda60', 'en', 1, 'https://ror.org/04jzeda60 Wakayama Prefectural Educational Center å’Œę­Œå±±ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼å­¦ć³ć®äø˜'),
(44645, 'https://ror.org/04abdh096', 'en', 1, 'https://ror.org/04abdh096 Research Institutue of Evolutionary Biology é€²åŒ–ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(44646, 'https://ror.org/045mrxn03', 'en', 1, 'https://ror.org/045mrxn03 Wakayama Shin-Ai Women''s Junior College å’Œę­Œå±±äæ”ę„›å„³å­ēŸ­ęœŸå¤§å­¦'),
(44647, 'https://ror.org/03dywws23', 'en', 1, 'https://ror.org/03dywws23 Wakayama Prefectural Tanabe High School å’Œę­Œå±±ēœŒē«‹ ē”°č¾ŗé«˜ē­‰å­¦ę ”'),
(44648, 'https://ror.org/040vema78', 'en', 1, 'https://ror.org/040vema78 Japan Society of Chemotherapy åŒ–å­¦ē™‚ę³•å­¦ä¼š'),
(44649, 'https://ror.org/03mfwnv44', 'no_lang_code', 1, 'https://ror.org/03mfwnv44 Yamamura Gakuen College å±±ę‘å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(44650, 'https://ror.org/03w09vt43', 'en', 1, 'https://ror.org/03w09vt43 Minabe Senior High School å’Œę­Œå±±ēœŒē«‹å—éƒØé«˜ē­‰å­¦ę ”'),
(44651, 'https://ror.org/00gnxy932', 'en', 1, 'https://ror.org/00gnxy932 Tohoku Bunkyo University ę±åŒ—ę–‡ę•™å¤§å­¦'),
(44652, 'https://ror.org/03111mv26', 'en', 1, 'https://ror.org/03111mv26 Yamanashi Prefecture Forestry and Forest Products Research Institute å±±ę¢ØēœŒę£®ęž—ē·åˆē ”ē©¶ę‰€ ę£®ęž—äæč­·ē§‘'),
(44653, 'https://ror.org/04cqva373', 'en', 1, 'https://ror.org/04cqva373 Yamagata Prefectural Sagae High School å±±å½¢ēœŒē«‹åÆ’ę²³ę±Ÿé«˜ē­‰å­¦ę ”'),
(44654, 'https://ror.org/05j02vt11', 'en', 1, 'https://ror.org/05j02vt11 Yamagata Prefectural Mamurogawa High School å±±å½¢ēœŒē«‹ę–°åŗ„ē„žå®¤ē”£ę„­é«˜ē­‰å­¦ę ”ēœŸå®¤å·ę ”'),
(44655, 'https://ror.org/02ppzn363', 'no_lang_code', 1, 'https://ror.org/02ppzn363 Yamagata Prefectural Police 山形県警察'),
(44656, 'https://ror.org/022tqjv17', 'en', 1, 'https://ror.org/022tqjv17 University of Yamanashi Hospital å±±ę¢Øå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(44657, 'https://ror.org/002bhvh12', 'en', 1, 'https://ror.org/002bhvh12 Yokohama College of Art and Design ęØŖęµœē¾Žč”“ēŸ­ęœŸå¤§å­¦'),
(44658, 'https://ror.org/03zet0z83', 'en', 1, 'https://ror.org/03zet0z83 Norin High School å±±ę¢ØēœŒē«‹č¾²ęž—é«˜ē­‰å­¦ę ”'),
(44659, 'https://ror.org/02j2fpc69', 'en', 1, 'https://ror.org/02j2fpc69 Yamanashi Prefectural School for the Visually Impaired å±±ę¢ØēœŒē«‹ē›²å­¦ę ”'),
(44660, 'https://ror.org/039sp3459', 'en', 1, 'https://ror.org/039sp3459 Yamaguchi Junior College å±±å£ēŸ­ęœŸå¤§å­¦'),
(44661, 'https://ror.org/04rqf3930', 'en', 1, 'https://ror.org/04rqf3930 Yamanashi Prefectural Education Center å±±ę¢ØēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44662, 'https://ror.org/02031rv53', 'en', 1, 'https://ror.org/02031rv53 National Institute of Technology, Yonago College å›½ē«‹ē±³å­å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44663, 'https://ror.org/003rkqt50', 'en', 1, 'https://ror.org/003rkqt50 Yamagata Prefectural Education Institute å±±å½¢ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(44664, 'https://ror.org/01zccfn45', 'en', 1, 'https://ror.org/01zccfn45 Yamaguchi Prefectural Asa High School å±±å£ēœŒē«‹åŽšē‹­é«˜ē­‰å­¦ę ”'),
(44665, 'https://ror.org/010gkrj91', 'en', 1, 'https://ror.org/010gkrj91 Yamanashi Prefectural Fisheries Technology Center ę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(44666, 'https://ror.org/04tqxjj42', 'en', 1, 'https://ror.org/04tqxjj42 Tottori Prefectural Yonago High School é³„å–ēœŒē«‹ē±³å­é«˜ē­‰å­¦ę ”'),
(44667, 'https://ror.org/02et0jb83', 'en', 1, 'https://ror.org/02et0jb83 Yamanashi Prefectural Museum å±±ę¢ØēœŒē«‹åšē‰©é¤Ø'),
(44668, 'https://ror.org/03zn2pc63', 'en', 1, 'https://ror.org/03zn2pc63 Yamanashi Prefectural Museum of Archaeology å±±ę¢ØēœŒē«‹č€ƒå¤åšē‰©é¤Ø'),
(44669, 'https://ror.org/05bg37315', 'en', 1, 'https://ror.org/05bg37315 Yamaguchi Prefecture Archives å±±å£ēœŒę–‡ę›øé¤Ø'),
(44670, 'https://ror.org/05w1vm756', 'en', 1, 'https://ror.org/05w1vm756 Yonezawa Chuo Senior High School ē±³ę²¢äø­å¤®é«˜ē­‰å­¦ę ”'),
(44671, 'https://ror.org/03smpvb86', 'en', 1, 'https://ror.org/03smpvb86 Yamaguchi Education Support Center ć‚„ć¾ćć”ē·åˆę•™č‚²ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(44672, 'https://ror.org/0332cpc55', 'en', 1, 'https://ror.org/0332cpc55 Yonezawa Technical High School ē±³ę²¢å·„ę„­é«˜ē­‰å­¦ę ”'),
(44673, 'https://ror.org/037bvk594', 'en', 1, 'https://ror.org/037bvk594 Yonezawa Women''s Junior College å±±å½¢ēœŒē«‹ē±³ę²¢å„³å­ēŸ­ęœŸå¤§å­¦'),
(44674, 'https://ror.org/00wwj8r66', 'en', 1, 'https://ror.org/00wwj8r66 Yamato University 大和大学'),
(44675, 'https://ror.org/00avape27', 'en', 1, 'https://ror.org/00avape27 Yoshida Biological Laboratry å‰ē”°ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(44676, 'https://ror.org/008mems69', 'en', 1, 'https://ror.org/008mems69 National Institute of Technology, Yuge College å¼“å‰Šå•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(44677, 'https://ror.org/01b7rff52', 'en', 1, 'https://ror.org/01b7rff52 Yamaguchi Prefectural Shimonoseki Industrial School å±±å£ēœŒē«‹äø‹é–¢å·„ę„­é«˜ē­‰å­¦ę ”'),
(44678, 'https://ror.org/03zyyep49', 'en', 1, 'https://ror.org/03zyyep49 Kanagawa Prefectural Zushi High School ē„žå„ˆå·ēœŒē«‹é€—å­é«˜ē­‰å­¦ę ”'),
(44679, 'https://ror.org/02qh3e530', 'en', 1, 'https://ror.org/02qh3e530 Hokkaido Pharmaceutical University åŒ—ęµ·é“č–¬ē§‘å¤§å­¦'),
(44680, 'https://ror.org/03e9gte70', 'de', 1, 'https://ror.org/03e9gte70 Wikimedia Deutschland'),
(44681, 'https://ror.org/02t2b1f58', 'no_lang_code', 1, 'https://ror.org/02t2b1f58 Wikimedia Israel ויקימדיה ×™×©×Ø××œ'),
(44682, 'https://ror.org/026ghdj11', 'en', 1, 'https://ror.org/026ghdj11 Wikimedia Belgium WikimƩdia Belgique'),
(44683, 'https://ror.org/03kky3p48', 'en', 1, 'https://ror.org/03kky3p48 Wikimedia Argentina'),
(44684, 'https://ror.org/01atqs537', 'no_lang_code', 1, 'https://ror.org/01atqs537 Wikimedia Ukraine ВікімеГіа Україна'),
(44685, 'https://ror.org/00xzhyb45', 'en', 1, 'https://ror.org/00xzhyb45 Wikimedia Australia'),
(44686, 'https://ror.org/05bendy20', 'en', 1, 'https://ror.org/05bendy20 Wikimedia Ɩsterreich'),
(44687, 'https://ror.org/05k27r045', 'no_lang_code', 1, 'https://ror.org/05k27r045 Wikimedia Hong Kong é¦™ęøÆē¶­åŸŗåŖ’é«”å”ęœƒ'),
(44688, 'https://ror.org/0535mbq53', 'no_lang_code', 1, 'https://ror.org/0535mbq53 Wikimedia Bangladesh উইকিমিঔিয়া বাংলাদেশ'),
(44689, 'https://ror.org/03xg0ta66', 'en', 1, 'https://ror.org/03xg0ta66 Wikimedia UK'),
(44690, 'https://ror.org/021pdqz74', 'fr', 1, 'https://ror.org/021pdqz74 WikimƩdia France'),
(44691, 'https://ror.org/00c3ma888', 'pl', 1, 'https://ror.org/00c3ma888 Wikimedia Polska'),
(44692, 'https://ror.org/004dpkc57', 'es', 1, 'https://ror.org/004dpkc57 Wikimedia Chile'),
(44693, 'https://ror.org/013dk1391', 'no_lang_code', 1, 'https://ror.org/013dk1391 Wikimedia District of Columbia'),
(44694, 'https://ror.org/04tg4wv11', 'pt', 1, 'https://ror.org/04tg4wv11 Wikimedia Portugal'),
(44695, 'https://ror.org/058a1xy10', 'da', 1, 'https://ror.org/058a1xy10 Wikimedia Danmark'),
(44696, 'https://ror.org/04cqvnd54', 'no_lang_code', 1, 'https://ror.org/04cqvnd54 Wikimedia Taiwan äø­čÆę°‘åœ‹ē¶­åŸŗåŖ’é«”å”ęœƒ'),
(44697, 'https://ror.org/05km15e85', 'et', 1, 'https://ror.org/05km15e85 Wikimedia Eesti'),
(44698, 'https://ror.org/05qv2mm32', 'en', 1, 'https://ror.org/05qv2mm32 Wikimedia Macedonia Š’ŠøŠŗŠøŠ¼ŠµŠ“ŠøŃ˜Š° МакеГонија'),
(44699, 'https://ror.org/02te08018', 'no_lang_code', 1, 'https://ror.org/02te08018 Wikimedia India'),
(44700, 'https://ror.org/005263a87', 'id', 1, 'https://ror.org/005263a87 Wikimedia Indonesia'),
(44701, 'https://ror.org/05g7tqd64', 'no_lang_code', 1, 'https://ror.org/05g7tqd64 Wikimedia Hungary Wikimédia MagyarorszÔg Egyesület'),
(44702, 'https://ror.org/014mq3e63', 'es', 1, 'https://ror.org/014mq3e63 Wikimedia MƩxico'),
(44703, 'https://ror.org/00qvkvn65', 'en', 1, 'https://ror.org/00qvkvn65 Wikimedia Philippines'),
(44704, 'https://ror.org/04tdwrj58', 'it', 1, 'https://ror.org/04tdwrj58 Wikimedia Italia'),
(44705, 'https://ror.org/01b7dk816', 'no_lang_code', 1, 'https://ror.org/01b7dk816 Wikimedia Serbia Š’ŠøŠŗŠøŠ¼ŠµŠ“ŠøŃ˜Š° Š”Ń€Š±ŠøŃ˜Šµ'),
(44706, 'https://ror.org/05kr4wg26', 'de', 1, 'https://ror.org/05kr4wg26 Wikimedia CH'),
(44707, 'https://ror.org/02v5zjv47', 'sv', 1, 'https://ror.org/02v5zjv47 Wikimedia Sverige'),
(44708, 'https://ror.org/056b3q733', 'no_lang_code', 1, 'https://ror.org/056b3q733 Wikimedia ZA'),
(44709, 'https://ror.org/05qzw2346', 'fr', 1, 'https://ror.org/05qzw2346 Wikimedia Canada'),
(44710, 'https://ror.org/021367g17', 'cs', 1, 'https://ror.org/021367g17 Wikimedia Czech Republic'),
(44711, 'https://ror.org/01c7g8398', 'fi', 1, 'https://ror.org/01c7g8398 Wikimedia Suomi'),
(44712, 'https://ror.org/04bh4bw24', 'es', 1, 'https://ror.org/04bh4bw24 Wikimedia Uruguay'),
(44713, 'https://ror.org/05cxtem33', 'es', 1, 'https://ror.org/05cxtem33 Wikimedia Venezuela'),
(44714, 'https://ror.org/010gr2865', 'en', 1, 'https://ror.org/010gr2865 Wikimedia New York City'),
(44715, 'https://ror.org/02cm5rg43', 'no_lang_code', 1, 'https://ror.org/02cm5rg43 Wikimedia Armenia ÕŽÕ«Ö„Õ«Õ“Õ„Õ¤Õ«Õ” Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶'),
(44716, 'https://ror.org/000nfen14', 'en', 1, 'https://ror.org/000nfen14 Shizuoka Prefectural Numazu Technical High School é™å²”ēœŒē«‹ę²¼ę“„å·„ę„­é«˜ē­‰å­¦ę ”'),
(44717, 'https://ror.org/05cttts62', 'no_lang_code', 1, 'https://ror.org/05cttts62 Tokugawa Reimeikai Foundation å¾³å·é»Žę˜Žä¼š'),
(44718, 'https://ror.org/0441wpd13', 'en', 1, 'https://ror.org/0441wpd13 Tokushima Municipal High School å¾³å³¶åø‚ē«‹é«˜ē­‰å­¦ę ”'),
(44719, 'https://ror.org/03t4z6b53', 'en', 1, 'https://ror.org/03t4z6b53 Oita Prefectural Oita Technical High School å¤§åˆ†ēœŒē«‹å¤§åˆ†å·„ę„­é«˜ē­‰å­¦ę ”'),
(44720, 'https://ror.org/05jreb977', 'en', 1, 'https://ror.org/05jreb977 Shikoku Medical Center for Children and Adults å››å›½ć“ć©ć‚‚ćØćŠćØćŖć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(44721, 'https://ror.org/00q15w993', 'en', 1, 'https://ror.org/00q15w993 Bircham International University'),
(44722, 'https://ror.org/03vs1ak92', 'en', 1, 'https://ror.org/03vs1ak92 ABM University College'),
(44723, 'https://ror.org/00nfn7821', 'en', 1, 'https://ror.org/00nfn7821 Botho University'),
(44724, 'https://ror.org/04dqhen73', 'en', 1, 'https://ror.org/04dqhen73 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(44725, 'https://ror.org/02ktf7592', 'en', 1, 'https://ror.org/02ktf7592 City University College of Science and Technology'),
(44726, 'https://ror.org/02psd9228', 'en', 1, 'https://ror.org/02psd9228 Addis Ababa Science and Technology University į‹ØįŠ į‹²įˆµ įŠ į‰ į‰£ įˆ³į‹­įŠ•įˆµįŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(44727, 'https://ror.org/05kdv3094', 'en', 1, 'https://ror.org/05kdv3094 British Royal University الجامعة Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ©'),
(44728, 'https://ror.org/00fbm6g50', 'en', 1, 'https://ror.org/00fbm6g50 Central America Health Sciences University'),
(44729, 'https://ror.org/02nkn4852', 'en', 1, 'https://ror.org/02nkn4852 Asossa University አሶሳ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(44730, 'https://ror.org/011jv2x91', 'en', 1, 'https://ror.org/011jv2x91 Espam Formation University'),
(44731, 'https://ror.org/022kamm22', 'en', 1, 'https://ror.org/022kamm22 Al Mamon University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ł…Ų£Ł…ŁˆŁ† الجامعة'),
(44732, 'https://ror.org/02s6pzw53', 'no_lang_code', 1, 'https://ror.org/02s6pzw53 Cubidor (Switzerland)'),
(44733, 'https://ror.org/01ve76a89', 'en', 1, 'https://ror.org/01ve76a89 Middlemore Clinical Trials'),
(44734, 'https://ror.org/02d2pe314', 'en', 1, 'https://ror.org/02d2pe314 Carolus Magnus University'),
(44735, 'https://ror.org/02v3fc375', 'no_lang_code', 1, 'https://ror.org/02v3fc375 Auckland UniServices (New Zealand)'),
(44736, 'https://ror.org/024596r45', 'en', 1, 'https://ror.org/024596r45 Euclid University'),
(44737, 'https://ror.org/040wrjh41', 'en', 1, 'https://ror.org/040wrjh41 Al-Buraimi University College ŁƒŁ„ŁŠŲ© Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ±ŁŠŁ…ŁŠ'),
(44738, '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 Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ©'),
(44739, 'https://ror.org/0192k3w92', 'es', 1, 'https://ror.org/0192k3w92 Centro Universitario Ciudad Vieja'),
(44740, 'https://ror.org/03z1phr67', 'en', 1, 'https://ror.org/03z1phr67 Charisma University'),
(44741, 'https://ror.org/05v7khz67', 'en', 1, 'https://ror.org/05v7khz67 Bakhtar University Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲØŲ§Ų®ŲŖŲ±'),
(44742, 'https://ror.org/04dynqd30', 'en', 1, 'https://ror.org/04dynqd30 Alhamd Islamic University'),
(44743, 'https://ror.org/01erb2j90', 'en', 1, 'https://ror.org/01erb2j90 Baku Business University Bakı Biznes Universiteti Бакинский Университет Бизнеса'),
(44744, 'https://ror.org/03g58rv06', 'en', 1, 'https://ror.org/03g58rv06 Donald Beasley Institute'),
(44745, 'https://ror.org/0472sp635', 'en', 1, 'https://ror.org/0472sp635 Ballsbridge University'),
(44746, 'https://ror.org/04rvh3240', 'en', 1, 'https://ror.org/04rvh3240 Al-Mustafa Open University Ų§Ł„Ł…ŲµŲ·ŁŪŒ دانؓگاه Ų¢Ų²Ų§ŲÆ'),
(44747, 'https://ror.org/005et7b18', 'en', 1, 'https://ror.org/005et7b18 Bamenda University of Science and Technology'),
(44748, 'https://ror.org/01x2j0a42', 'en', 1, 'https://ror.org/01x2j0a42 Huaihua Radio and Television University ę€€åŒ–å¹æę’­ē”µč§†å¤§å­¦'),
(44749, 'https://ror.org/04fkrbf60', 'en', 1, 'https://ror.org/04fkrbf60 Dutch University Institute for Art History Istituto Universitario Olandese di Storia dell’Arte'),
(44750, '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įŗæ'),
(44751, 'https://ror.org/00b9m5f16', 'en', 1, 'https://ror.org/00b9m5f16 Gaborone University College Of Law and Professional Studies'),
(44752, 'https://ror.org/01jtz8t69', 'en', 1, 'https://ror.org/01jtz8t69 Gemsville Technical University'),
(44753, 'https://ror.org/03hw0dp08', 'en', 1, 'https://ror.org/03hw0dp08 Internacionalni univerzitet Travnik International University of Travnik'),
(44754, 'https://ror.org/054fysp39', 'en', 1, 'https://ror.org/054fysp39 Guangdong Open University å¹æäøœå¼€ę”¾å¤§å­¦'),
(44755, 'https://ror.org/021817660', 'en', 1, 'https://ror.org/021817660 Iraq University College دانؓگاه کالج Ų¹Ų±Ų§Ł‚'),
(44756, 'https://ror.org/0427t6n75', 'en', 1, 'https://ror.org/0427t6n75 Ittihad Private University Ų¬Ų§Ł…Ų¹Ų© الاتحاد الخاصة'),
(44757, 'https://ror.org/057cchs06', 'en', 1, 'https://ror.org/057cchs06 Isles International University Isles Ollscoil IdirnÔisiúnta'),
(44758, 'https://ror.org/00tnfjj44', 'pt', 1, 'https://ror.org/00tnfjj44 Universidade Politecnica'),
(44759, 'https://ror.org/02b9zqw68', 'en', 1, 'https://ror.org/02b9zqw68 BƬnh Dʰʔng University ĐẔi hį»c BƬnh Dʰʔng'),
(44760, 'https://ror.org/00x1fdr51', 'no_lang_code', 1, 'https://ror.org/00x1fdr51 Rafik Hariri University Ł…Ų¤Ų³Ų³Ų© Ų±ŁŁŠŁ‚ Ų§Ł„Ų­Ų±ŁŠŲ±ŁŠ'),
(44761, 'https://ror.org/058np3c43', 'en', 1, 'https://ror.org/058np3c43 Islamic Azad University Ardabil دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ų±ŲÆŲØŪŒŁ„'),
(44762, 'https://ror.org/02r00ef35', 'en', 1, 'https://ror.org/02r00ef35 Jewish University in Moscow Š’Ń‹ŃŃˆŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń школа имени Š”. Š”ŃƒŠ±Š½Š¾Š²Š°'),
(44763, 'https://ror.org/03cxjvr57', 'en', 1, 'https://ror.org/03cxjvr57 ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬ŲØŁŠŁ„ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© ​​Jubail University College'),
(44764, 'https://ror.org/01q7qty61', 'en', 1, 'https://ror.org/01q7qty61 Islamic Azad University Bandar Abbas ساختمان ادارى دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ بندرعباس'),
(44765, 'https://ror.org/02dezs485', 'en', 1, 'https://ror.org/02dezs485 TrĘ°į»ng ĐẔi hį»c Hįŗ£i Dʰʔng University of Hai Duong'),
(44766, 'https://ror.org/00ejh1102', 'en', 1, 'https://ror.org/00ejh1102 Islamic Azad University, Boukan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲØŁˆŚ©Ų§Ł†'),
(44767, 'https://ror.org/01b7ggh82', 'en', 1, 'https://ror.org/01b7ggh82 Kolej Universiti Islam Melaka University College of Islam Melaka'),
(44768, 'https://ror.org/01bzz5b22', 'en', 1, 'https://ror.org/01bzz5b22 Islamic Azad University Dehaghan دانؓگاه Ų¢Ų²Ų§ŲÆ دهاقان Ų§Ų³Ł„Ų§Ł…ŪŒ'),
(44769, 'https://ror.org/00pj60478', 'en', 1, 'https://ror.org/00pj60478 Duraspace'),
(44770, 'https://ror.org/030de3d66', 'en', 1, 'https://ror.org/030de3d66 Merrell University of Beauty Arts and Science'),
(44771, 'https://ror.org/03rn1m191', 'en', 1, 'https://ror.org/03rn1m191 Mid-Continent University'),
(44772, 'https://ror.org/01v4fge94', 'no_lang_code', 1, 'https://ror.org/01v4fge94 Yamagata Prefectural Yonezawa Kojokan High School å±±å½¢ēœŒē«‹ē±³ę²¢čˆˆč­²é¤Øé«˜ē­‰å­¦ę ”'),
(44773, 'https://ror.org/01157qb85', 'fr', 1, 'https://ror.org/01157qb85 Groupe AFI'),
(44774, 'https://ror.org/04mv68k05', 'en', 1, 'https://ror.org/04mv68k05 Karelian State Pedagogical Academy ŠšŠ°Ń€ŠµŠ»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(44775, 'https://ror.org/00wws3648', 'en', 1, 'https://ror.org/00wws3648 International Culture University'),
(44776, 'https://ror.org/057f4mk30', 'en', 1, 'https://ror.org/057f4mk30 Islamic Azad University Janah Ų§Ų³Ł„Ų§Ł…ŪŒ ŪŒŲ§Ł†Ų§ دانؓگاه Ų¢Ų²Ų§ŲÆ'),
(44777, 'https://ror.org/05ge5q197', 'en', 1, 'https://ror.org/05ge5q197 International East-European University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Восточно-Европейский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(44778, 'https://ror.org/01g3dya06', 'en', 1, 'https://ror.org/01g3dya06 Lancaster University Ghana'),
(44779, 'https://ror.org/02ytn4d59', 'en', 1, 'https://ror.org/02ytn4d59 Islamic Azad University Kazeron دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŲŒ Ś©Ų§Ų²Ų±ŁˆŁ†'),
(44780, 'https://ror.org/05s3gkw93', 'en', 1, 'https://ror.org/05s3gkw93 International University for Graduate Studies'),
(44781, 'https://ror.org/00eykd632', 'en', 1, 'https://ror.org/00eykd632 International University of Fundamental Studies ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠžŠ±ŃƒŃ‡ŠµŠ½ŠøŃ'),
(44782, 'https://ror.org/04q7e9e16', 'en', 1, 'https://ror.org/04q7e9e16 Islamic Azad University Maybod دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…ŪŒŲØŲÆ یزد'),
(44783, 'https://ror.org/00z0c0y28', 'en', 1, 'https://ror.org/00z0c0y28 Islamic Azad University Mehriz دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ł‡Ų±ŪŒŲ²'),
(44784, 'https://ror.org/01a3xr262', 'en', 1, 'https://ror.org/01a3xr262 Islamic Azad University Mobarakeh دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد مبارکه'),
(44785, 'https://ror.org/025gshh98', 'en', 1, 'https://ror.org/025gshh98 NTI University'),
(44786, 'https://ror.org/051t3nd40', 'en', 1, 'https://ror.org/051t3nd40 Islamic Azad University Bostanabad دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŲŒ بستان Ų¢ŲØŲ§ŲÆ'),
(44787, 'https://ror.org/04tc04306', 'en', 1, 'https://ror.org/04tc04306 Islamic Azad University Quchan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł‚ŁˆŚ†Ų§Ł†'),
(44788, 'https://ror.org/04gp75d48', 'en', 1, 'https://ror.org/04gp75d48 Nawroz University Ų¬Ų§Ł…Ų¹Ų© Ł†ŁˆŲ±ŁˆŲ² Ų²Ų§Ł†Ś©Ū†ŪŒ Ł†Ū•ŁˆŲ±Ū†Ų²'),
(44789, 'https://ror.org/05qgm9a33', 'en', 1, 'https://ror.org/05qgm9a33 New World University'),
(44790, 'https://ror.org/03t25y916', 'en', 1, 'https://ror.org/03t25y916 Open International University for Alternative Medicines'),
(44791, 'https://ror.org/01szshg60', 'en', 1, 'https://ror.org/01szshg60 Proactive Molecular Research'),
(44792, 'https://ror.org/02zq8hg49', 'en', 1, 'https://ror.org/02zq8hg49 Busan Women''s College ė¶€ģ‚°ģ—¬ģžėŒ€ķ•™źµ'),
(44793, 'https://ror.org/012jgbk51', 'en', 1, 'https://ror.org/012jgbk51 Oriental University Восточный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(44794, 'https://ror.org/02wenm763', 'en', 1, 'https://ror.org/02wenm763 Islamic Azad University Shirvan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“ŪŒŲ±ŁˆŲ§Ł†'),
(44795, 'https://ror.org/00eaebe27', 'en', 1, 'https://ror.org/00eaebe27 Islamic Azad University Medical Branch of Tehran دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد پزؓکی تهران'),
(44796, 'https://ror.org/00h4cmb88', 'en', 1, 'https://ror.org/00h4cmb88 New Covenant International'),
(44797, 'https://ror.org/01t11z141', 'no_lang_code', 1, 'https://ror.org/01t11z141 Quigley and Watts (New Zealand)'),
(44798, 'https://ror.org/02brczk14', 'en', 1, 'https://ror.org/02brczk14 Orkhon University'),
(44799, 'https://ror.org/009e9eq52', 'en', 1, 'https://ror.org/009e9eq52 Newcastle University Medicine Malaysia'),
(44800, 'https://ror.org/02nd88213', 'en', 1, 'https://ror.org/02nd88213 Raffles University Iskandar'),
(44801, 'https://ror.org/02x44xg10', 'no_lang_code', 1, 'https://ror.org/02x44xg10 Ragheb Esfahani Institute Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų±Ų§ŲŗŲØ Ų§ŲµŁŁ‡Ų§Ł†ŪŒ'),
(44802, 'https://ror.org/01px8ca57', 'en', 1, 'https://ror.org/01px8ca57 Islamic Azad University of Varamin دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŁˆŲ±Ų§Ł…ŪŒŁ†'),
(44803, 'https://ror.org/04f4hdq71', 'en', 1, 'https://ror.org/04f4hdq71 Pan African Christian University College'),
(44804, 'https://ror.org/02552gk22', 'en', 1, 'https://ror.org/02552gk22 Islamic University of Rotterdam Islamitische Universiteit Rotterdam'),
(44805, 'https://ror.org/02evj4e11', 'en', 1, 'https://ror.org/02evj4e11 Universal Technical Institute of Illinois'),
(44806, 'https://ror.org/00f6qhc93', 'en', 1, 'https://ror.org/00f6qhc93 Universal Technical Institute Dallas-Fort Worth'),
(44807, 'https://ror.org/04cnffe38', 'en', 1, 'https://ror.org/04cnffe38 Pioneer International University'),
(44808, 'https://ror.org/03zta4r50', 'en', 1, 'https://ror.org/03zta4r50 Bangladesh University বাংলাদেশ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(44809, 'https://ror.org/01rfr0p20', 'en', 1, 'https://ror.org/01rfr0p20 RKDF University'),
(44810, 'https://ror.org/01x6c3x12', 'en', 1, 'https://ror.org/01x6c3x12 Universal Therapeutic Massage Institute'),
(44811, 'https://ror.org/010m5yq44', 'no_lang_code', 1, 'https://ror.org/010m5yq44 Planwel'),
(44812, 'https://ror.org/03n7xzj51', 'en', 1, 'https://ror.org/03n7xzj51 Shridhar University'),
(44813, 'https://ror.org/040wknf84', 'en', 1, 'https://ror.org/040wknf84 Technological University Kyaing Tong į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(ကျိုင်းတုံ)'),
(44814, 'https://ror.org/04k5dj193', 'en', 1, 'https://ror.org/04k5dj193 Russian State Geological Prospecting University Российский Š³Š¾ŃŃƒŠ“арственный геологоразвеГочный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(44815, 'https://ror.org/02sw73p72', 'en', 1, 'https://ror.org/02sw73p72 Technological University Mawlamyaing į€”į€Šį€ŗį€øį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ (į€™į€±į€¬į€ŗį€œį€™į€¼į€­į€Æį€„į€ŗ)'),
(44816, 'https://ror.org/0474tc765', 'en', 1, 'https://ror.org/0474tc765 International Prague University'),
(44817, 'https://ror.org/004g74051', 'en', 1, 'https://ror.org/004g74051 Technological University Panglong į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(į€•į€„į€ŗį€œį€Æį€¶)'),
(44818, 'https://ror.org/02x2x2y51', 'no_lang_code', 1, 'https://ror.org/02x2x2y51 Smolny University Š”Š¼Š¾Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(44819, 'https://ror.org/03wkb8h74', 'es', 1, 'https://ror.org/03wkb8h74 Universidad Albert Einstein'),
(44820, 'https://ror.org/01r4svf88', 'en', 1, 'https://ror.org/01r4svf88 Sadra Institute Of Higher Education دانؓگاه ŲµŲÆŲ±Ų§'),
(44821, 'https://ror.org/04w8dt298', 'en', 1, 'https://ror.org/04w8dt298 Quest International University Perak'),
(44822, 'https://ror.org/0467sym95', 'en', 1, 'https://ror.org/0467sym95 Thanlyin Technological University į€”į€Šį€ŗį€øį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ (į€žį€”į€ŗį€œį€»į€„į€ŗ)'),
(44823, 'https://ror.org/01yj78e47', 'en', 1, 'https://ror.org/01yj78e47 Southeast Asia University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø­ą¹€ąøŠąøµąø¢ąø•ąø°ąø§ąø±ąø™ąø­ąø­ąøą¹€ąø‰ąøµąø¢ąø‡ą¹ƒąø•ą¹‰'),
(44824, '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'),
(44825, 'https://ror.org/01cm06k44', 'en', 1, 'https://ror.org/01cm06k44 American University in London'),
(44826, 'https://ror.org/04j0ryd72', 'es', 1, 'https://ror.org/04j0ryd72 Universidad Franciscana de MƩxico'),
(44827, 'https://ror.org/01zp49f50', 'en', 1, 'https://ror.org/01zp49f50 Government Sadiq College Women University ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ ŲµŲ§ŲÆŁ‚ کالج ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŪŲ§ŁˆŁ„Ł¾ŁˆŲ±'),
(44828, 'https://ror.org/04wh4y985', 'en', 1, 'https://ror.org/04wh4y985 St Clements University Higher Education School'),
(44829, 'https://ror.org/00apjgf04', 'en', 1, 'https://ror.org/00apjgf04 Schiller International University'),
(44830, 'https://ror.org/04mtyr016', 'en', 1, 'https://ror.org/04mtyr016 Schiller International University'),
(44831, 'https://ror.org/05mmkpa90', 'en', 1, 'https://ror.org/05mmkpa90 Schiller International University'),
(44832, 'https://ror.org/003tmp461', 'en', 1, 'https://ror.org/003tmp461 Schiller International University'),
(44833, 'https://ror.org/03mf7fw42', 'en', 1, 'https://ror.org/03mf7fw42 Tiffin University Prague'),
(44834, 'https://ror.org/05h3txc33', 'es', 1, 'https://ror.org/05h3txc33 Universidad La Concordia'),
(44835, 'https://ror.org/00jvm9038', 'en', 1, 'https://ror.org/00jvm9038 Tricoci University of Beauty Culture'),
(44836, 'https://ror.org/024wr7x07', 'es', 1, 'https://ror.org/024wr7x07 Universidad Los Leones'),
(44837, 'https://ror.org/03av5bg62', 'en', 1, 'https://ror.org/03av5bg62 Sunrise University'),
(44838, 'https://ror.org/00j1faf79', 'es', 1, 'https://ror.org/00j1faf79 Universidad Cristiana de las Asambleas de Dios'),
(44839, 'https://ror.org/00z50t224', 'en', 1, 'https://ror.org/00z50t224 Trinity School of Medicine'),
(44840, 'https://ror.org/0343mwx11', 'en', 1, 'https://ror.org/0343mwx11 Mexico International University'),
(44841, 'https://ror.org/042xrxv40', 'en', 1, 'https://ror.org/042xrxv40 Turin Polytechnic University Š¢ŃƒŃ€ŠøŠ½ŃŠŗŠøŠ¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(44842, 'https://ror.org/05akw7810', 'es', 1, 'https://ror.org/05akw7810 Universidad de Lambayeque'),
(44843, 'https://ror.org/01h43q230', 'es', 1, 'https://ror.org/01h43q230 Universidad Modular Abierta'),
(44844, 'https://ror.org/01jmr1174', 'es', 1, 'https://ror.org/01jmr1174 Universidad Tecnológica de El Salvador'),
(44845, 'https://ror.org/04gqc0005', 'en', 1, 'https://ror.org/04gqc0005 Universal Barber College'),
(44846, 'https://ror.org/031yk8297', 'es', 1, 'https://ror.org/031yk8297 Universidad MonseƱor Oscar Arnulfo Romero'),
(44847, 'https://ror.org/00yckme16', 'en', 1, 'https://ror.org/00yckme16 Universal College of Healing Arts'),
(44848, 'https://ror.org/01d809t39', 'es', 1, 'https://ror.org/01d809t39 Universidad de Sonsonate'),
(44849, 'https://ror.org/05bh8tx73', 'es', 1, 'https://ror.org/05bh8tx73 Universidad Tecnológica de Nezahualcóyotl'),
(44850, 'https://ror.org/032qr1v70', 'en', 1, 'https://ror.org/032qr1v70 Daejeon Institute of Science and Technology 기술 ėŒ€ģ „ ėŒ€ķ•™źµ'),
(44851, 'https://ror.org/01k8z5j70', 'es', 1, 'https://ror.org/01k8z5j70 Universidad Don Bosco'),
(44852, 'https://ror.org/00vfjs247', 'es', 1, 'https://ror.org/00vfjs247 Universidad Nueva San Salvador'),
(44853, 'https://ror.org/05ke4zy29', 'es', 1, 'https://ror.org/05ke4zy29 Universidad Dr. AndrƩs Bello'),
(44854, 'https://ror.org/02mejn521', 'en', 1, 'https://ror.org/02mejn521 Taft University System'),
(44855, 'https://ror.org/003mv3827', 'es', 1, 'https://ror.org/003mv3827 Universidad Obrera de Mexico'),
(44856, 'https://ror.org/019njds38', 'en', 1, 'https://ror.org/019njds38 Universal Technical Institute'),
(44857, 'https://ror.org/012nfzy71', 'es', 1, 'https://ror.org/012nfzy71 Universidad Panamericana de El Salvador'),
(44858, 'https://ror.org/040gj5g64', 'es', 1, 'https://ror.org/040gj5g64 Universidad PolitƩcnica de El Salvador'),
(44859, 'https://ror.org/03asas176', 'es', 1, 'https://ror.org/03asas176 Universidad Regional Miguel Hidalgo'),
(44860, 'https://ror.org/05hx26488', 'pt', 1, 'https://ror.org/05hx26488 Universidade LusĆ­ada de Angola'),
(44861, 'https://ror.org/038b5pt88', 'pt', 1, 'https://ror.org/038b5pt88 Instituto Superior PolitƩcnico Metropolitano de Angola'),
(44862, 'https://ror.org/0532w7m55', 'es', 1, 'https://ror.org/0532w7m55 Universidad TƩcnica Latinoamericana'),
(44863, 'https://ror.org/038n8fg68', 'en', 1, 'https://ror.org/038n8fg68 Bule Hora University'),
(44864, 'https://ror.org/044jx8018', 'en', 1, 'https://ror.org/044jx8018 Islamic Azad University of Malard دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد ملارد'),
(44865, 'https://ror.org/04sssnv16', 'en', 1, 'https://ror.org/04sssnv16 Islamic Azad University Pharmaceutical Sciences Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų¹Ł„ŁˆŁ… دارویی'),
(44866, 'https://ror.org/01qskrs45', 'en', 1, 'https://ror.org/01qskrs45 Islamic Azad University of Khomeynishahr دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų®Ł…ŪŒŁ†ŪŒ ؓهر'),
(44867, 'https://ror.org/00sb1nr29', 'en', 1, 'https://ror.org/00sb1nr29 Islamic Azad University North Tehran Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ, واحد تهران Ų“Ł…Ų§Ł„ā€Žā€Ž'),
(44868, 'https://ror.org/02xc21a77', 'en', 1, 'https://ror.org/02xc21a77 Islamic Azad University South Tehran Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران Ų“Ł…Ų§Ł„'),
(44869, 'https://ror.org/05m5wey82', 'en', 1, 'https://ror.org/05m5wey82 Islamic Azad University Dental Branch of Tehran دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲÆŁ†ŲÆŲ§Ł†Ł¾Ų²Ų“Ś©ŪŒ تهران'),
(44870, 'https://ror.org/047thv031', 'fr', 1, 'https://ror.org/047thv031 UniversitĆ© Ɖpiscopale d''Haiti'),
(44871, 'https://ror.org/024ntr864', 'fr', 1, 'https://ror.org/024ntr864 UniversitƩ Euro-Afrique'),
(44872, 'https://ror.org/03jewb194', 'fr', 1, 'https://ror.org/03jewb194 UniversitƩ Kofi Annan de GuinƩe'),
(44873, 'https://ror.org/0346q5236', 'fr', 1, 'https://ror.org/0346q5236 UniversitƩ Shalom de Bunia'),
(44874, 'https://ror.org/05kmekg24', 'en', 1, 'https://ror.org/05kmekg24 Urumqi Vocational University'),
(44875, 'https://ror.org/02x93ka62', 'en', 1, 'https://ror.org/02x93ka62 Trilogi University Universitas Trilogi'),
(44876, 'https://ror.org/01rvqzw67', 'en', 1, 'https://ror.org/01rvqzw67 University of International Business Єалықаралық бизнес ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(44877, 'https://ror.org/01m4mdb95', 'en', 1, 'https://ror.org/01m4mdb95 Uzima University College'),
(44878, 'https://ror.org/002mja273', 'en', 1, 'https://ror.org/002mja273 University of Jazeera'),
(44879, 'https://ror.org/01zxwpb57', 'en', 1, 'https://ror.org/01zxwpb57 Victoria International University'),
(44880, 'https://ror.org/000j1d533', 'fr', 1, 'https://ror.org/000j1d533 UniversitƩ Amadou HampatƩ Ba'),
(44881, 'https://ror.org/024cft222', 'no_lang_code', 1, 'https://ror.org/024cft222 Wellington UniVentures (New Zealand)'),
(44882, 'https://ror.org/0049gd358', 'en', 1, 'https://ror.org/0049gd358 University of Science, Art and Technology'),
(44883, 'https://ror.org/01emdt307', 'fr', 1, 'https://ror.org/01emdt307 UniversitƩ de Fianarantsoa'),
(44884, 'https://ror.org/030g4zt91', 'en', 1, 'https://ror.org/030g4zt91 Waikato-Tainui College for Research and Development'),
(44885, 'https://ror.org/04saf2403', 'en', 1, 'https://ror.org/04saf2403 Asian Academy of Film and Television'),
(44886, 'https://ror.org/01crf4k59', 'en', 1, 'https://ror.org/01crf4k59 University of Modern Sciences Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(44887, 'https://ror.org/03dcjsm04', 'en', 1, 'https://ror.org/03dcjsm04 Jaamacada Soomaaliya University of Somalia Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲµŁˆŁ…Ų§Ł„ā€Žā€Ž'),
(44888, 'https://ror.org/05bw7y144', 'no_lang_code', 1, 'https://ror.org/05bw7y144 Whakauae Research (New Zealand)'),
(44889, 'https://ror.org/01r21e311', 'en', 1, 'https://ror.org/01r21e311 University of Cagayan Valley'),
(44890, 'https://ror.org/05qh0gq94', 'en', 1, 'https://ror.org/05qh0gq94 Windsor University School of Medicine'),
(44891, 'https://ror.org/0147hmw17', 'en', 1, 'https://ror.org/0147hmw17 Yarmouk Private University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŲ±Ł…ŁˆŁƒ الخاصة'),
(44892, 'https://ror.org/03187yj51', 'en', 1, 'https://ror.org/03187yj51 Islamic Azad University, Science and Research Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų¹Ł„ŁˆŁ… و ŲŖŲ­Ł‚ŁŠŁ‚Ų§ŲŖā€Žā€Ž'),
(44893, 'https://ror.org/01cywgd53', 'en', 1, 'https://ror.org/01cywgd53 American College of Radiology Imaging Network'),
(44894, 'https://ror.org/00kgqwj69', 'en', 1, 'https://ror.org/00kgqwj69 American University of Integrative Sciences'),
(44895, 'https://ror.org/04zh6m791', 'es', 1, 'https://ror.org/04zh6m791 Universidad JosƩ Vasconcelos'),
(44896, 'https://ror.org/02d9c9c40', 'es', 1, 'https://ror.org/02d9c9c40 Instituto Universitario BIOS'),
(44897, 'https://ror.org/03dn3wf28', 'en', 1, 'https://ror.org/03dn3wf28 Coimbatore Medical College and Hospital'),
(44898, 'https://ror.org/05yd3zv45', 'en', 1, 'https://ror.org/05yd3zv45 Clock View Hospital'),
(44899, 'https://ror.org/02k5q6a71', 'es', 1, 'https://ror.org/02k5q6a71 Academia PolitƩcnica AeronƔutica'),
(44900, 'https://ror.org/03akq4247', 'no_lang_code', 1, 'https://ror.org/03akq4247 Dassault SystĆØmes (United Kingdom)'),
(44901, 'https://ror.org/04ye8xg90', 'en', 1, 'https://ror.org/04ye8xg90 Central Florida Regional Planning Council'),
(44902, 'https://ror.org/05mrd3w41', 'en', 1, 'https://ror.org/05mrd3w41 Central Kitsap School District'),
(44903, 'https://ror.org/05svcq088', 'en', 1, 'https://ror.org/05svcq088 Engineering and Science University Magnet School'),
(44904, 'https://ror.org/05s4ea934', 'en', 1, 'https://ror.org/05s4ea934 Central Visayan Institute Foundation'),
(44905, 'https://ror.org/040ps8760', 'en', 1, 'https://ror.org/040ps8760 Insurance Claims Auditing and Professional Services'),
(44906, 'https://ror.org/02hwbev49', 'en', 1, 'https://ror.org/02hwbev49 Erich Schmid Institut für Materialwissenschaft Erich Schmid Institute of Materials Science'),
(44907, 'https://ror.org/01zppzz18', 'en', 1, 'https://ror.org/01zppzz18 Centre for Theoretical Physics and Astrophysics Центр теоретической физики Šø астрофизики'),
(44908, 'https://ror.org/01rx4ed80', 'en', 1, 'https://ror.org/01rx4ed80 IEEE OES Japan Chapter');
INSERT INTO `rors` VALUES
(44909, 'https://ror.org/04vdcpp96', 'en', 1, 'https://ror.org/04vdcpp96 Academy of Sciences of the Republic of Bashkortostan ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°ŃƒŠŗ Республики Š‘Š°ŃˆŠŗŠ¾Ń€Ń‚Š¾ŃŃ‚Š°Š½'),
(44910, 'https://ror.org/052q58629', 'en', 1, 'https://ror.org/052q58629 Institute for Advanced Energy Technologies Istituto di Tecnologie Avanzate per l''Energia "Nicola Giordano"'),
(44911, 'https://ror.org/04kd9rb82', 'en', 1, 'https://ror.org/04kd9rb82 European Conference for AeroSpace Sciences'),
(44912, 'https://ror.org/03ptyn747', 'en', 1, 'https://ror.org/03ptyn747 Alabama Department of Commerce'),
(44913, 'https://ror.org/05wdedb75', 'no_lang_code', 1, 'https://ror.org/05wdedb75 Aisin (United States) ć‚¢ć‚¤ć‚·ćƒ³ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(44914, 'https://ror.org/048vnmk34', 'no_lang_code', 1, 'https://ror.org/048vnmk34 Ceracomp (South Korea)'),
(44915, 'https://ror.org/016j41127', 'en', 1, 'https://ror.org/016j41127 Changji University ę˜Œå‰å­¦é™¢'),
(44916, 'https://ror.org/02bj0an55', 'en', 1, 'https://ror.org/02bj0an55 Fairbanks North Star Borough School District'),
(44917, 'https://ror.org/00hrjdb92', 'en', 1, 'https://ror.org/00hrjdb92 Farallon Institute'),
(44918, 'https://ror.org/018tpb721', 'en', 1, 'https://ror.org/018tpb721 Chesapeake Public Schools'),
(44919, 'https://ror.org/04k456e23', 'no_lang_code', 1, 'https://ror.org/04k456e23 Anne Arundel Economic Development (United States)'),
(44920, 'https://ror.org/012151k32', 'en', 1, 'https://ror.org/012151k32 Indian River Central School District'),
(44921, 'https://ror.org/026csr892', 'en', 1, 'https://ror.org/026csr892 Indiana Office of Defense Development'),
(44922, 'https://ror.org/04785as38', 'en', 1, 'https://ror.org/04785as38 Christian County Public Schools'),
(44923, 'https://ror.org/03a08y513', 'no_lang_code', 1, 'https://ror.org/03a08y513 Fio Corporation (Canada)'),
(44924, 'https://ror.org/021tpet02', 'en', 1, 'https://ror.org/021tpet02 Association for Unmanned Vehicle Systems International'),
(44925, 'https://ror.org/02evdsh57', 'en', 1, 'https://ror.org/02evdsh57 Flint Hills Regional Council'),
(44926, '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'),
(44927, 'https://ror.org/04g3vmk47', 'en', 1, 'https://ror.org/04g3vmk47 Kaysinger Basin Regional Planning Commission'),
(44928, 'https://ror.org/01mjdf856', 'no_lang_code', 1, 'https://ror.org/01mjdf856 EarthTech International (United States)'),
(44929, 'https://ror.org/02k91w896', 'en', 1, 'https://ror.org/02k91w896 Kentucky Commission on Military Affairs'),
(44930, 'https://ror.org/05yp26r95', 'no_lang_code', 1, 'https://ror.org/05yp26r95 Kerecis (Iceland)'),
(44931, 'https://ror.org/05ntkws66', 'en', 1, 'https://ror.org/05ntkws66 Bahamas Marine Mammal Research Organisation'),
(44932, 'https://ror.org/04syjc425', 'en', 1, 'https://ror.org/04syjc425 Danish Defence Acquisition and Logistics Organization Forsvarets Materiel- og IndkĆøbsstyrelse'),
(44933, 'https://ror.org/04qz58m35', 'en', 1, 'https://ror.org/04qz58m35 Riverbank Local Redevelopment Authority'),
(44934, 'https://ror.org/042g4wn73', 'no_lang_code', 1, 'https://ror.org/042g4wn73 CIVIDEC Instrumentation (Austria)'),
(44935, 'https://ror.org/0521h8v35', 'en', 1, 'https://ror.org/0521h8v35 Fort Leavenworth Unified School District 207'),
(44936, 'https://ror.org/01pn0w676', 'en', 1, 'https://ror.org/01pn0w676 Clover Park School District'),
(44937, 'https://ror.org/01dcaj468', 'no_lang_code', 1, 'https://ror.org/01dcaj468 Nokia (Ireland)'),
(44938, 'https://ror.org/00s18qt97', 'en', 1, 'https://ror.org/00s18qt97 Killeen Independent School District'),
(44939, 'https://ror.org/002sk4j30', 'en', 1, 'https://ror.org/002sk4j30 Fort Mac LRA'),
(44940, 'https://ror.org/025h8ph98', 'en', 1, 'https://ror.org/025h8ph98 Fort Monmouth Economic Revitalization Authority'),
(44941, 'https://ror.org/05tkntq54', 'en', 1, 'https://ror.org/05tkntq54 Colorado Springs School District 11'),
(44942, 'https://ror.org/00wef3c21', 'en', 1, 'https://ror.org/00wef3c21 Fort Monroe Authority'),
(44943, 'https://ror.org/0059k7j85', 'no_lang_code', 1, 'https://ror.org/0059k7j85 Institute For Smart Monitoring (United States)'),
(44944, 'https://ror.org/05qhw9x92', 'en', 1, 'https://ror.org/05qhw9x92 Biblioteca Centrală Universitară Central University Library'),
(44945, 'https://ror.org/01km14z09', 'en', 1, 'https://ror.org/01km14z09 Institute of Applied Physics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГної фізики ŠŠŠ України'),
(44946, 'https://ror.org/0424hh766', 'pt', 1, 'https://ror.org/0424hh766 Fundação de Estudos e Pesquisas AquÔticas'),
(44947, 'https://ror.org/01nbzrx85', 'en', 1, 'https://ror.org/01nbzrx85 Korea Nano Technology Research Society ė‚˜ė…øźø°ģˆ ģ—°źµ¬ķ˜‘ģ˜ķšŒ'),
(44948, 'https://ror.org/00hezhh51', 'pt', 1, 'https://ror.org/00hezhh51 Fundacao Padre Leonel Franca'),
(44949, 'https://ror.org/02f4p4v04', 'no_lang_code', 1, 'https://ror.org/02f4p4v04 Convergent Science (United States)'),
(44950, 'https://ror.org/00gyqd239', 'en', 1, 'https://ror.org/00gyqd239 Copperas Cove Independent School District'),
(44951, 'https://ror.org/008zgph74', 'en', 1, 'https://ror.org/008zgph74 Bossier Parish School Board'),
(44952, 'https://ror.org/02wn33c27', 'pt', 1, 'https://ror.org/02wn33c27 Fundação de Apoio à Universidade de São Paulo'),
(44953, 'https://ror.org/00rkxnb56', 'en', 1, 'https://ror.org/00rkxnb56 Building Engineering and Science Talent'),
(44954, 'https://ror.org/032z6n124', 'en', 1, 'https://ror.org/032z6n124 Coronado Unified School District'),
(44955, 'https://ror.org/04psa8d07', 'en', 1, 'https://ror.org/04psa8d07 Geary County Schools USD 475'),
(44956, 'https://ror.org/02s5hdd60', 'en', 1, 'https://ror.org/02s5hdd60 Cache Public Schools'),
(44957, 'https://ror.org/02a3d3802', 'no_lang_code', 1, 'https://ror.org/02a3d3802 Netsil (United States)'),
(44958, 'https://ror.org/05at4m627', 'en', 1, 'https://ror.org/05at4m627 Craven County Schools'),
(44959, 'https://ror.org/02n3qcb27', 'es', 1, 'https://ror.org/02n3qcb27 Instituto de CibernƩtica MatemƔtica y Fƭsica'),
(44960, 'https://ror.org/03t9ags07', 'en', 1, 'https://ror.org/03t9ags07 Central Savannah River Area Regional Commission'),
(44961, 'https://ror.org/009sp3d14', 'no_lang_code', 1, 'https://ror.org/009sp3d14 Gentherm (United States)'),
(44962, 'https://ror.org/01s4t1s46', 'en', 1, 'https://ror.org/01s4t1s46 Carthage Central School District'),
(44963, 'https://ror.org/059gejz39', 'no_lang_code', 1, 'https://ror.org/059gejz39 CellMosaic (United States)'),
(44964, 'https://ror.org/039f8sh24', 'en', 1, 'https://ror.org/039f8sh24 Central Office of Measures Główny Urząd Miar'),
(44965, 'https://ror.org/0168qf015', 'en', 1, 'https://ror.org/0168qf015 Center for a New American Security'),
(44966, 'https://ror.org/014f9c269', 'no_lang_code', 1, 'https://ror.org/014f9c269 Google (Switzerland)'),
(44967, 'https://ror.org/05dd1f546', 'en', 1, 'https://ror.org/05dd1f546 Daqing Normal University å¤§åŗ†åøˆčŒƒå­¦é™¢'),
(44968, 'https://ror.org/00kdez258', 'no_lang_code', 1, 'https://ror.org/00kdez258 Maxwell Technologies (United States)'),
(44969, 'https://ror.org/04916g222', 'en', 1, 'https://ror.org/04916g222 Lackland Independent School District'),
(44970, 'https://ror.org/04cr8d113', 'no_lang_code', 1, 'https://ror.org/04cr8d113 Lawrenceville Plasma Physics (United States)'),
(44971, 'https://ror.org/04jm9wm67', 'en', 1, 'https://ror.org/04jm9wm67 MBN Research Center'),
(44972, 'https://ror.org/019zpgk48', 'en', 1, 'https://ror.org/019zpgk48 Medical Lake School District'),
(44973, 'https://ror.org/022pvfm44', 'en', 1, 'https://ror.org/022pvfm44 Lawton Public Schools'),
(44974, 'https://ror.org/05ka6xc26', 'en', 1, 'https://ror.org/05ka6xc26 Government of the District of Columbia'),
(44975, 'https://ror.org/00rys1n84', 'en', 1, 'https://ror.org/00rys1n84 Lemon Grove School District'),
(44976, 'https://ror.org/001k0sf19', 'en', 1, 'https://ror.org/001k0sf19 Delta Greely School District'),
(44977, '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'),
(44978, 'https://ror.org/02y910088', 'no_lang_code', 1, 'https://ror.org/02y910088 Medizinisches Laserzentrum Lübeck (Germany)'),
(44979, 'https://ror.org/0200tp285', 'en', 1, 'https://ror.org/0200tp285 Development Authority of the North Country'),
(44980, 'https://ror.org/02ytpcd02', 'en', 1, 'https://ror.org/02ytpcd02 Great Plains Industrial Park'),
(44981, 'https://ror.org/00rar1v21', 'en', 1, 'https://ror.org/00rar1v21 Midcoast Regional Redevelopment Authority'),
(44982, 'https://ror.org/015y2tg27', 'en', 1, 'https://ror.org/015y2tg27 Directed Energy Professional Society'),
(44983, 'https://ror.org/03f1myq16', 'en', 1, 'https://ror.org/03f1myq16 Gulf Regional Planning Commission'),
(44984, 'https://ror.org/054jsj779', 'en', 1, 'https://ror.org/054jsj779 East Bay Educational Collaborative'),
(44985, 'https://ror.org/023af1t29', 'en', 1, 'https://ror.org/023af1t29 Gyeonggi College of Science and Technology ź²½źø°ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(44986, 'https://ror.org/04c97mw67', 'en', 1, 'https://ror.org/04c97mw67 Modus Health'),
(44987, 'https://ror.org/03zwb3g19', 'en', 1, 'https://ror.org/03zwb3g19 East Central Wisconsin Regional Planning Commission'),
(44988, 'https://ror.org/00z6t7t43', 'en', 1, 'https://ror.org/00z6t7t43 Harford County Government'),
(44989, 'https://ror.org/05e84tj20', 'en', 1, 'https://ror.org/05e84tj20 International Biodeterioration Biodegradation Society'),
(44990, 'https://ror.org/00e8fa768', 'en', 1, 'https://ror.org/00e8fa768 Montgomery County Office of the County Executive'),
(44991, 'https://ror.org/004vz6g09', 'en', 1, 'https://ror.org/004vz6g09 Lincoln Trail Area Development District'),
(44992, 'https://ror.org/01c78gc17', 'no_lang_code', 1, 'https://ror.org/01c78gc17 Immunomic Therapeutics (United States)'),
(44993, 'https://ror.org/01a00et54', 'en', 1, 'https://ror.org/01a00et54 Harry S Truman Coordinating Council'),
(44994, 'https://ror.org/0076ska18', 'en', 1, 'https://ror.org/0076ska18 Mountain Home School District'),
(44995, 'https://ror.org/04gacp295', 'en', 1, 'https://ror.org/04gacp295 Municipality of Anchorage'),
(44996, 'https://ror.org/012245h64', 'en', 1, 'https://ror.org/012245h64 Municipality of MedellĆ­n Municipio de MedellĆ­n'),
(44997, 'https://ror.org/01mbtgx32', 'en', 1, 'https://ror.org/01mbtgx32 International Financial Cryptography Association'),
(44998, 'https://ror.org/05qwc0640', 'en', 1, 'https://ror.org/05qwc0640 Lowcountry Council of Governments'),
(44999, 'https://ror.org/05fss0456', 'no_lang_code', 1, 'https://ror.org/05fss0456 National Security Technologies (United States)'),
(45000, 'https://ror.org/03jzczt57', 'en', 1, 'https://ror.org/03jzczt57 International Institute for Strategic Studies'),
(45001, 'https://ror.org/02cn5m820', 'en', 1, 'https://ror.org/02cn5m820 Madison City Schools'),
(45002, 'https://ror.org/01md3zk31', 'en', 1, 'https://ror.org/01md3zk31 National Academy of Sciences of the Republic of Kyrgyzstan АкаГемии наук ŠšŃ‹Ń€Š³Ń‹Š·ŃŃ‚ана'),
(45003, 'https://ror.org/029wtm372', 'en', 1, 'https://ror.org/029wtm372 Stimson Center'),
(45004, 'https://ror.org/02tzqkh80', 'en', 1, 'https://ror.org/02tzqkh80 International University of Grand Bassam'),
(45005, 'https://ror.org/012q68n89', 'en', 1, 'https://ror.org/012q68n89 National Centre for Compositional Characterisation of Materials'),
(45006, 'https://ror.org/02k6gb421', 'en', 1, 'https://ror.org/02k6gb421 National Trauma Institute'),
(45007, 'https://ror.org/024r2p353', 'en', 1, 'https://ror.org/024r2p353 National Guard Youth Foundation'),
(45008, 'https://ror.org/03pmzch07', 'en', 1, 'https://ror.org/03pmzch07 National Institute for Public Policy'),
(45009, 'https://ror.org/042jb2v70', 'de', 1, 'https://ror.org/042jb2v70 IOT Labs'),
(45010, 'https://ror.org/027rx9762', 'en', 1, 'https://ror.org/027rx9762 United States Naval Sea Cadet Corps'),
(45011, 'https://ror.org/008qm0n27', 'en', 1, 'https://ror.org/008qm0n27 National Math and Science Initiative'),
(45012, 'https://ror.org/016cvn656', 'en', 1, 'https://ror.org/016cvn656 MassDevelopment'),
(45013, 'https://ror.org/05333yg23', 'no_lang_code', 1, 'https://ror.org/05333yg23 Hitachi Engineering (Japan) ę Ŗå¼ä¼šē¤¾ ę—„ē«‹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(45014, 'https://ror.org/02vh58j74', 'en', 1, 'https://ror.org/02vh58j74 Krajowe Centrum Informatyki Kwantowej w Gdańsku National Quantum Information Centre in Gdansk'),
(45015, 'https://ror.org/05sehyt57', 'en', 1, 'https://ror.org/05sehyt57 Islamic Azad University of Kermanshah دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کرمانؓاه'),
(45016, 'https://ror.org/0080zax93', 'en', 1, 'https://ror.org/0080zax93 Horsham Land Redevelopment Authority'),
(45017, 'https://ror.org/00yp0d371', 'en', 1, 'https://ror.org/00yp0d371 New Hampshire Department of Resources and Economic Development'),
(45018, 'https://ror.org/015sncd69', 'en', 1, 'https://ror.org/015sncd69 Islamic Azad University of Mahabad دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد مهاباد'),
(45019, 'https://ror.org/0364yac91', 'no_lang_code', 1, 'https://ror.org/0364yac91 Tagworks Pharmaceuticals (Netherlands)'),
(45020, 'https://ror.org/0492k9x16', 'en', 1, 'https://ror.org/0492k9x16 Centre for Social Sciences TÔrsadalomtudomÔnyi Kutatóközpont'),
(45021, 'https://ror.org/04jjswc10', 'es', 1, 'https://ror.org/04jjswc10 Universidad Yachay Tech Universidad de Investigación de Tecnología Experimental YACHAY'),
(45022, 'https://ror.org/00yfw2296', 'it', 1, 'https://ror.org/00yfw2296 Istituto Officina dei Materiali'),
(45023, 'https://ror.org/05c1vn851', 'en', 1, 'https://ror.org/05c1vn851 Rhode Island Commerce Corporation'),
(45024, 'https://ror.org/02csfbx96', 'en', 1, 'https://ror.org/02csfbx96 Richland School District Two'),
(45025, 'https://ror.org/05wba8r86', 'en', 1, 'https://ror.org/05wba8r86 Institute of Crystallography Istituto di Cristallografia'),
(45026, 'https://ror.org/028tq4e31', 'en', 1, 'https://ror.org/028tq4e31 Newport Chemical Depot'),
(45027, 'https://ror.org/01s8tz949', 'no_lang_code', 1, 'https://ror.org/01s8tz949 Japan Broadcasting Corporation (Japan) ę—„ęœ¬ę”¾é€å”ä¼š'),
(45028, 'https://ror.org/02m9k9y84', 'en', 1, 'https://ror.org/02m9k9y84 TexAmericas Center'),
(45029, 'https://ror.org/01pfz6k04', 'en', 1, 'https://ror.org/01pfz6k04 Royal Institute of Navigation'),
(45030, 'https://ror.org/049ebw417', 'it', 1, 'https://ror.org/049ebw417 Istituto di Fotonica e Nanotecnologie'),
(45031, 'https://ror.org/004j8ab67', 'no_lang_code', 1, 'https://ror.org/004j8ab67 Nitride Crystals (United States)'),
(45032, 'https://ror.org/01g6f0r63', 'en', 1, 'https://ror.org/01g6f0r63 Nonproliferation Policy Education Center'),
(45033, 'https://ror.org/05szks045', 'en', 1, 'https://ror.org/05szks045 Norfolk Public Schools'),
(45034, 'https://ror.org/03bpwzr21', 'no_lang_code', 1, 'https://ror.org/03bpwzr21 Valley Partnership (United States)'),
(45035, 'https://ror.org/01vf40t90', 'en', 1, 'https://ror.org/01vf40t90 San Francisco University High School'),
(45036, 'https://ror.org/05se67h97', 'en', 1, 'https://ror.org/05se67h97 North Central Texas Council of Governments'),
(45037, 'https://ror.org/0475amg73', 'en', 1, 'https://ror.org/0475amg73 Ventura County Transportation Commission'),
(45038, 'https://ror.org/003sw4m03', 'en', 1, 'https://ror.org/003sw4m03 Saudi Center for Theoretical Physics'),
(45039, 'https://ror.org/02zy6fj64', 'en', 1, 'https://ror.org/02zy6fj64 Peac Institute of Multiscale Sciences é”¶å³°å¤šå°ŗåŗ¦ē§‘å­¦ē ”ē©¶ę‰€'),
(45040, 'https://ror.org/03rnthv34', 'en', 1, 'https://ror.org/03rnthv34 Japan Underwater Robot Network ę—„ęœ¬ę°“äø­ćƒ­ćƒœćƒćƒƒćƒˆ'),
(45041, 'https://ror.org/052qrf856', 'en', 1, 'https://ror.org/052qrf856 Dr Vijay Kumar Foundation'),
(45042, 'https://ror.org/00rnnfh78', 'en', 1, 'https://ror.org/00rnnfh78 Ocean Exploration Trust'),
(45043, 'https://ror.org/05td9wm36', 'en', 1, 'https://ror.org/05td9wm36 Royal United Services Institute'),
(45044, 'https://ror.org/01kp4cp54', 'en', 1, 'https://ror.org/01kp4cp54 All Russia Research Institute of Automatics ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики та енергетики'),
(45045, 'https://ror.org/02n4n5m80', 'en', 1, 'https://ror.org/02n4n5m80 Oceanwide Science Institute'),
(45046, 'https://ror.org/04ngq3k29', 'en', 1, 'https://ror.org/04ngq3k29 Escambia County School District'),
(45047, 'https://ror.org/03gmm4776', 'no_lang_code', 1, 'https://ror.org/03gmm4776 Semi Conductor Devices (Israel)'),
(45048, 'https://ror.org/01yn5ft19', 'no_lang_code', 1, 'https://ror.org/01yn5ft19 SeQureNet (France)'),
(45049, 'https://ror.org/01ajbb580', 'en', 1, 'https://ror.org/01ajbb580 Watertown City School District'),
(45050, 'https://ror.org/045bzwt16', 'en', 1, 'https://ror.org/045bzwt16 University School of Milwaukee'),
(45051, 'https://ror.org/000hzcm20', 'en', 1, 'https://ror.org/000hzcm20 Web Science Trust'),
(45052, 'https://ror.org/048t6pr69', 'en', 1, 'https://ror.org/048t6pr69 Patuxent Partnership'),
(45053, 'https://ror.org/0463sg992', 'en', 1, 'https://ror.org/0463sg992 Wichita Falls Independent School District'),
(45054, 'https://ror.org/00hfbr881', 'no_lang_code', 1, 'https://ror.org/00hfbr881 Wildlife Computers (United States)'),
(45055, 'https://ror.org/03s603381', 'en', 1, 'https://ror.org/03s603381 Pennyrile Area Development District'),
(45056, 'https://ror.org/009hd2k51', 'en', 1, 'https://ror.org/009hd2k51 Wisconsin Economic Development Corporation'),
(45057, 'https://ror.org/02xymhw35', 'en', 1, 'https://ror.org/02xymhw35 Pikes Peak Area Council of Governments'),
(45058, 'https://ror.org/00xqcgm91', 'en', 1, 'https://ror.org/00xqcgm91 Travis Unified School District'),
(45059, 'https://ror.org/05w1x0w37', 'en', 1, 'https://ror.org/05w1x0w37 Polar Scientific'),
(45060, 'https://ror.org/031vs9z41', 'en', 1, 'https://ror.org/031vs9z41 Workforce Solutions Northeast Texas'),
(45061, 'https://ror.org/021zy7t36', 'en', 1, 'https://ror.org/021zy7t36 State Special Communications Service of Ukraine Державна служба ŃŠæŠµŃ†Ń–Š°Š»ŃŒŠ½Š¾Š³Š¾ зв''ŃŠ·ŠŗŃƒ та Š·Š°Ń…ŠøŃŃ‚Ńƒ інформації України'),
(45062, 'https://ror.org/00ms9d710', 'no_lang_code', 1, 'https://ror.org/00ms9d710 Soliton Ocean Services (United States)'),
(45063, 'https://ror.org/05tk7d923', 'en', 1, 'https://ror.org/05tk7d923 Sumter County Planning Department'),
(45064, 'https://ror.org/04y2tt160', 'en', 1, 'https://ror.org/04y2tt160 Tri-County Council for Southern Maryland'),
(45065, 'https://ror.org/009wszx58', 'en', 1, 'https://ror.org/009wszx58 South Carolina Department of Employment and Workforce'),
(45066, 'https://ror.org/01sd6hz84', 'en', 1, 'https://ror.org/01sd6hz84 Yelm Community Schools'),
(45067, 'https://ror.org/04sn6y446', 'en', 1, 'https://ror.org/04sn6y446 Udupi Shri Admar Mutt Education Council'),
(45068, 'https://ror.org/01hsywd60', 'en', 1, 'https://ror.org/01hsywd60 Poquoson City Public Schools'),
(45069, 'https://ror.org/02r7rkw80', 'no_lang_code', 1, 'https://ror.org/02r7rkw80 Southall Environmental Associates (United States)'),
(45070, 'https://ror.org/03m13r221', 'en', 1, 'https://ror.org/03m13r221 Port of Morrow'),
(45071, 'https://ror.org/05gd1j786', 'en', 1, 'https://ror.org/05gd1j786 Prince George County Public Schools'),
(45072, 'https://ror.org/03g9yn034', 'en', 1, 'https://ror.org/03g9yn034 York County School Division'),
(45073, 'https://ror.org/05f12dd47', 'no_lang_code', 1, 'https://ror.org/05f12dd47 Protemics (Germany)'),
(45074, 'https://ror.org/04an3vm72', 'en', 1, 'https://ror.org/04an3vm72 Sparta Area School District'),
(45075, 'https://ror.org/036bgh355', 'en', 1, 'https://ror.org/036bgh355 Yuma Elementary School District'),
(45076, 'https://ror.org/04c4nem69', 'no_lang_code', 1, 'https://ror.org/04c4nem69 QuantumWise (Denmark)'),
(45077, 'https://ror.org/05hcvd668', 'en', 1, 'https://ror.org/05hcvd668 Randolph Field Independent School District'),
(45078, 'https://ror.org/05wn9p486', 'en', 1, 'https://ror.org/05wn9p486 Rayat Institute of Engineering & Information Technology रयात ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(45079, 'https://ror.org/03fy1q357', 'en', 1, 'https://ror.org/03fy1q357 Center for European Policy Analysis'),
(45080, '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'),
(45081, 'https://ror.org/04jr71r83', 'en', 1, 'https://ror.org/04jr71r83 Institute of Mathematics Viện ToĆ”n hį»c'),
(45082, 'https://ror.org/0148s8205', 'no_lang_code', 1, 'https://ror.org/0148s8205 Locus Pharmacy (United States)'),
(45083, 'https://ror.org/00a0e8y90', 'no_lang_code', 1, 'https://ror.org/00a0e8y90 Mera Pharmaceuticals (United states)'),
(45084, 'https://ror.org/02qqwxa87', 'en', 1, 'https://ror.org/02qqwxa87 Church World Service'),
(45085, 'https://ror.org/01zz9wh30', 'en', 1, 'https://ror.org/01zz9wh30 Institute of Structure of Matter Istituto di Struttura della Materia'),
(45086, 'https://ror.org/031gy6182', 'en', 1, 'https://ror.org/031gy6182 Office of Technology Transfer'),
(45087, 'https://ror.org/04brn2y58', 'en', 1, 'https://ror.org/04brn2y58 World Water and Climate Foundation'),
(45088, 'https://ror.org/00hh8pd76', 'no_lang_code', 1, 'https://ror.org/00hh8pd76 Avaya (United Kingdom)'),
(45089, 'https://ror.org/034epx078', 'no_lang_code', 1, 'https://ror.org/034epx078 Abengoa Bioenergy (United States)'),
(45090, 'https://ror.org/003snev59', 'no_lang_code', 1, 'https://ror.org/003snev59 Volvo (Germany)'),
(45091, 'https://ror.org/049pb5632', 'no_lang_code', 1, 'https://ror.org/049pb5632 AbbVie (Bermuda)'),
(45092, 'https://ror.org/02tg5n396', 'no_lang_code', 1, 'https://ror.org/02tg5n396 Emerson (Germany)'),
(45093, 'https://ror.org/027y4yw29', 'no_lang_code', 1, 'https://ror.org/027y4yw29 Abiomed (Germany)'),
(45094, 'https://ror.org/03819cc96', 'no_lang_code', 1, 'https://ror.org/03819cc96 Microsoft (Israel)'),
(45095, 'https://ror.org/036kf9x78', 'no_lang_code', 1, 'https://ror.org/036kf9x78 Yazaki (Australia)'),
(45096, 'https://ror.org/024e28c54', 'no_lang_code', 1, 'https://ror.org/024e28c54 AbbVie (Bahamas)'),
(45097, 'https://ror.org/042rb3y95', 'no_lang_code', 1, 'https://ror.org/042rb3y95 B.A.T Cigarettenfabriken British American Tobacco (Germany)'),
(45098, 'https://ror.org/03hsqcd26', 'no_lang_code', 1, 'https://ror.org/03hsqcd26 Ab LƄsfabriken-Lukkotehdas Oy Abloy (Finland)'),
(45099, 'https://ror.org/00792x745', 'no_lang_code', 1, 'https://ror.org/00792x745 Amdocs (Germany)'),
(45100, 'https://ror.org/00xpxz171', 'no_lang_code', 1, 'https://ror.org/00xpxz171 Scientific Games (United Kingdom)'),
(45101, 'https://ror.org/03bvw9k90', 'no_lang_code', 1, 'https://ror.org/03bvw9k90 Autoliv (Germany)'),
(45102, 'https://ror.org/02s39fg77', 'no_lang_code', 1, 'https://ror.org/02s39fg77 Autoliv (Japan)'),
(45103, 'https://ror.org/017qkhg51', 'no_lang_code', 1, 'https://ror.org/017qkhg51 AES (United Kingdom)'),
(45104, 'https://ror.org/04ghyw285', 'no_lang_code', 1, 'https://ror.org/04ghyw285 Marel (United Kingdom)'),
(45105, 'https://ror.org/04xw8f995', 'no_lang_code', 1, 'https://ror.org/04xw8f995 Atlas Copco (United States)'),
(45106, 'https://ror.org/02vkk3485', 'no_lang_code', 1, 'https://ror.org/02vkk3485 Dover (Germany)'),
(45107, 'https://ror.org/00xsh4698', 'no_lang_code', 1, 'https://ror.org/00xsh4698 Assa Abloy (Australia)'),
(45108, 'https://ror.org/01hn5j140', 'no_lang_code', 1, 'https://ror.org/01hn5j140 Atlas Copco (Austria)'),
(45109, 'https://ror.org/03ek4e159', 'no_lang_code', 1, 'https://ror.org/03ek4e159 Assa Abloy (New Zealand)'),
(45110, 'https://ror.org/04dyk5z88', 'no_lang_code', 1, 'https://ror.org/04dyk5z88 Advantest (Singapore)'),
(45111, 'https://ror.org/04t3phk92', 'no_lang_code', 1, 'https://ror.org/04t3phk92 Agilent Technologies (Australia)'),
(45112, 'https://ror.org/0076k6d95', 'no_lang_code', 1, 'https://ror.org/0076k6d95 Assa Abloy (Germany)'),
(45113, 'https://ror.org/0355p2e87', 'no_lang_code', 1, 'https://ror.org/0355p2e87 Agilent Technologies (Germany)'),
(45114, 'https://ror.org/059zcg682', 'no_lang_code', 1, 'https://ror.org/059zcg682 BASF (United Kingdom)'),
(45115, 'https://ror.org/021swj028', 'no_lang_code', 1, 'https://ror.org/021swj028 Atlas Elektronik (United Kingdom)'),
(45116, 'https://ror.org/00qpbjw91', 'no_lang_code', 1, 'https://ror.org/00qpbjw91 Fujikura (United States)'),
(45117, 'https://ror.org/01mfgkr43', 'no_lang_code', 1, 'https://ror.org/01mfgkr43 Amdocs (United Kingdom)'),
(45118, 'https://ror.org/02fwcwt37', 'no_lang_code', 1, 'https://ror.org/02fwcwt37 Ametek (Germany)'),
(45119, 'https://ror.org/002qjv549', 'no_lang_code', 1, 'https://ror.org/002qjv549 Whirlpool (Germany)'),
(45120, 'https://ror.org/053cetp63', 'no_lang_code', 1, 'https://ror.org/053cetp63 Autoliv (United Kingdom)'),
(45121, 'https://ror.org/01ye7b264', 'no_lang_code', 1, 'https://ror.org/01ye7b264 Avaya (Bermuda)'),
(45122, 'https://ror.org/02pdacs91', 'no_lang_code', 1, 'https://ror.org/02pdacs91 Becton Dickinson (Ireland)'),
(45123, 'https://ror.org/00cdhs571', 'no_lang_code', 1, 'https://ror.org/00cdhs571 Amdocs (Israel)'),
(45124, 'https://ror.org/003kk8e92', 'de', 1, 'https://ror.org/003kk8e92 Deutsches Textilforschungszentrum Nord-West'),
(45125, 'https://ror.org/02raw4k91', 'no_lang_code', 1, 'https://ror.org/02raw4k91 Coloplast (Germany)'),
(45126, 'https://ror.org/01ezy0w74', 'no_lang_code', 1, 'https://ror.org/01ezy0w74 Bayer (New Zealand)'),
(45127, 'https://ror.org/01btqj997', 'de', 1, 'https://ror.org/01btqj997 Salomon Ludwig Steinheim-Institut'),
(45128, 'https://ror.org/05mmp2p33', 'no_lang_code', 1, 'https://ror.org/05mmp2p33 Stryker (Germany)'),
(45129, 'https://ror.org/05tw0wf88', 'no_lang_code', 1, 'https://ror.org/05tw0wf88 Airbus (India)'),
(45130, 'https://ror.org/05dwa3c44', 'no_lang_code', 1, 'https://ror.org/05dwa3c44 Becton Dickinson (United Kingdom)'),
(45131, 'https://ror.org/04achrx04', 'no_lang_code', 1, 'https://ror.org/04achrx04 AkzoNobel (Germany)'),
(45132, 'https://ror.org/04zdhre16', 'no_lang_code', 1, 'https://ror.org/04zdhre16 Alcoa (Germany)'),
(45133, 'https://ror.org/04q4ktw86', 'no_lang_code', 1, 'https://ror.org/04q4ktw86 Faurecia (Canada)'),
(45134, 'https://ror.org/00x7ptd63', 'no_lang_code', 1, 'https://ror.org/00x7ptd63 Bio-Rad (Israel)'),
(45135, 'https://ror.org/03m1q4162', 'no_lang_code', 1, 'https://ror.org/03m1q4162 Nordson (Germany)'),
(45136, 'https://ror.org/02bcp9s34', 'no_lang_code', 1, 'https://ror.org/02bcp9s34 Unilever (Germany)'),
(45137, 'https://ror.org/0366tzh77', 'no_lang_code', 1, 'https://ror.org/0366tzh77 Biolitec (Malaysia)'),
(45138, 'https://ror.org/05a5w4v67', 'no_lang_code', 1, 'https://ror.org/05a5w4v67 Foton Motors (China) åŒ—ę±½ē¦ē”°'),
(45139, 'https://ror.org/016731f38', 'no_lang_code', 1, 'https://ror.org/016731f38 Zimmer Biomet (Germany)'),
(45140, 'https://ror.org/00mke2t69', 'no_lang_code', 1, 'https://ror.org/00mke2t69 Zimmer Biomet (United Kingdom)'),
(45141, 'https://ror.org/01gzzmb44', 'no_lang_code', 1, 'https://ror.org/01gzzmb44 AMF Bakery Systems (United States)'),
(45142, 'https://ror.org/03yq5aa85', 'no_lang_code', 1, 'https://ror.org/03yq5aa85 Medtronic (Italy)'),
(45143, 'https://ror.org/00gttkw41', 'no_lang_code', 1, 'https://ror.org/00gttkw41 Thermo Fisher Scientific (Canada)'),
(45144, 'https://ror.org/01bjtb363', 'no_lang_code', 1, 'https://ror.org/01bjtb363 ProAmpac (United States)'),
(45145, 'https://ror.org/03t67hw32', 'no_lang_code', 1, 'https://ror.org/03t67hw32 American Superconductor (Austria)'),
(45146, 'https://ror.org/03gqy2z96', 'no_lang_code', 1, 'https://ror.org/03gqy2z96 National Oilwell Varco (United Kingdom)'),
(45147, 'https://ror.org/037y5er63', 'no_lang_code', 1, 'https://ror.org/037y5er63 Ashima (Taiwan)'),
(45148, 'https://ror.org/058w9hg07', 'no_lang_code', 1, 'https://ror.org/058w9hg07 Andritz (Germany)'),
(45149, 'https://ror.org/00cedkn40', 'no_lang_code', 1, 'https://ror.org/00cedkn40 Robert Bosch (China)'),
(45150, 'https://ror.org/05nxk4667', 'no_lang_code', 1, 'https://ror.org/05nxk4667 Medicure (United States)'),
(45151, 'https://ror.org/00xqjsc25', 'no_lang_code', 1, 'https://ror.org/00xqjsc25 Arkema (Germany)'),
(45152, 'https://ror.org/01jsrac29', 'no_lang_code', 1, 'https://ror.org/01jsrac29 Broadcom (Israel)'),
(45153, 'https://ror.org/01784jw84', 'no_lang_code', 1, 'https://ror.org/01784jw84 AT&T (United Kingdom)'),
(45154, 'https://ror.org/02f3pgg92', 'no_lang_code', 1, 'https://ror.org/02f3pgg92 Brooks Automation (Germany)'),
(45155, 'https://ror.org/00y09zk14', 'no_lang_code', 1, 'https://ror.org/00y09zk14 Motorola (South Korea)'),
(45156, 'https://ror.org/01c4r0z03', 'no_lang_code', 1, 'https://ror.org/01c4r0z03 Applied Materials (Singapore)'),
(45157, 'https://ror.org/00vdy5891', 'no_lang_code', 1, 'https://ror.org/00vdy5891 Meritor (Brazil)'),
(45158, 'https://ror.org/04bx2zy40', 'no_lang_code', 1, 'https://ror.org/04bx2zy40 Otsuka (United Kingdom)'),
(45159, 'https://ror.org/05w362f32', 'no_lang_code', 1, 'https://ror.org/05w362f32 BorgWarner (Germany)'),
(45160, 'https://ror.org/0105jwh54', 'no_lang_code', 1, 'https://ror.org/0105jwh54 Legrand (United Kingdom)'),
(45161, 'https://ror.org/005jw9139', 'no_lang_code', 1, 'https://ror.org/005jw9139 Mondelēz International (United States)'),
(45162, 'https://ror.org/026sfkz12', 'no_lang_code', 1, 'https://ror.org/026sfkz12 Mondelēz International (Singapore)'),
(45163, 'https://ror.org/0414hra82', 'no_lang_code', 1, 'https://ror.org/0414hra82 Capcom (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ćƒ—ć‚³ćƒ³'),
(45164, 'https://ror.org/031zzq071', 'no_lang_code', 1, 'https://ror.org/031zzq071 Robert Bosch (United Kingdom)'),
(45165, 'https://ror.org/00ay2hv83', 'no_lang_code', 1, 'https://ror.org/00ay2hv83 Safran (Singapore)'),
(45166, 'https://ror.org/01hadm580', 'no_lang_code', 1, 'https://ror.org/01hadm580 Caterpillar (United Kingdom)'),
(45167, 'https://ror.org/026pdc066', 'no_lang_code', 1, 'https://ror.org/026pdc066 Caterpillar (Germany)'),
(45168, 'https://ror.org/03j0njm34', 'no_lang_code', 1, 'https://ror.org/03j0njm34 British American Tobacco (Japan) ćƒ–ćƒŖćƒ†ć‚£ćƒƒć‚·ćƒ„ćƒ»ć‚¢ćƒ”ćƒŖć‚«ćƒ³ćƒ»ć‚æćƒć‚³'),
(45169, 'https://ror.org/050j82f52', 'no_lang_code', 1, 'https://ror.org/050j82f52 TE Connectivity (United Kingdom)'),
(45170, 'https://ror.org/055c4qx71', 'no_lang_code', 1, 'https://ror.org/055c4qx71 Bühler (United Kingdom)'),
(45171, 'https://ror.org/0536ew874', 'no_lang_code', 1, 'https://ror.org/0536ew874 3M (Israel)'),
(45172, 'https://ror.org/00fmck729', 'no_lang_code', 1, 'https://ror.org/00fmck729 Bharat Forge (Germany)'),
(45173, 'https://ror.org/03gwmtg18', 'no_lang_code', 1, 'https://ror.org/03gwmtg18 Gleason (Germany)'),
(45174, 'https://ror.org/01rw27z95', 'no_lang_code', 1, 'https://ror.org/01rw27z95 Microsoft (United Kingdom)'),
(45175, 'https://ror.org/05fner397', 'no_lang_code', 1, 'https://ror.org/05fner397 Broadcom (United Kingdom)'),
(45176, 'https://ror.org/04d3djg48', 'no_lang_code', 1, 'https://ror.org/04d3djg48 Qualcomm (United Kingdom)'),
(45177, 'https://ror.org/01mcc7007', 'no_lang_code', 1, 'https://ror.org/01mcc7007 Schlumberger (Ireland)'),
(45178, 'https://ror.org/00w8f3q52', 'no_lang_code', 1, 'https://ror.org/00w8f3q52 Vitec (Germany)'),
(45179, 'https://ror.org/01k2et926', 'no_lang_code', 1, 'https://ror.org/01k2et926 Chemring Countermeasures (United Kingdom)'),
(45180, 'https://ror.org/02bwhc913', 'no_lang_code', 1, 'https://ror.org/02bwhc913 Carl Zeiss (Israel)'),
(45181, 'https://ror.org/05ebwnx39', 'no_lang_code', 1, 'https://ror.org/05ebwnx39 Ceragon (Israel)'),
(45182, 'https://ror.org/01cc1db63', 'no_lang_code', 1, 'https://ror.org/01cc1db63 Carl Zeiss (Australia)'),
(45183, 'https://ror.org/008558y11', 'no_lang_code', 1, 'https://ror.org/008558y11 Gemalto (Germany)'),
(45184, 'https://ror.org/02x2gk324', 'no_lang_code', 1, 'https://ror.org/02x2gk324 Abbott (Germany) Abbott Deutschland'),
(45185, 'https://ror.org/02kf1yd19', 'no_lang_code', 1, 'https://ror.org/02kf1yd19 Citrix (Switzerland)'),
(45186, 'https://ror.org/00sjbw709', 'no_lang_code', 1, 'https://ror.org/00sjbw709 CNH Industrial (Germany)'),
(45187, 'https://ror.org/031negs69', 'no_lang_code', 1, 'https://ror.org/031negs69 CJ CGV (South Korea) ģ”Øģ œģ“ ģ”Øģ§€ėøŒģ“'),
(45188, 'https://ror.org/020rf1w57', 'no_lang_code', 1, 'https://ror.org/020rf1w57 CNH Industrial (Austria)'),
(45189, 'https://ror.org/057nzpd74', 'no_lang_code', 1, 'https://ror.org/057nzpd74 Imerys (Austria)'),
(45190, 'https://ror.org/00h446q73', 'no_lang_code', 1, 'https://ror.org/00h446q73 Hewlett-Packard (Australia)'),
(45191, 'https://ror.org/01j2e9t73', 'en', 1, 'https://ror.org/01j2e9t73 People’s Hospital of Linqing äø“ęø…åø‚äŗŗę°‘åŒ»é™¢'),
(45192, 'https://ror.org/01qp6yw46', 'en', 1, 'https://ror.org/01qp6yw46 Mercury Optoelectronics Research Institute å¢Øå…‹ē‘žå…‰ē”µå­ē ”ē©¶é™¢'),
(45193, 'https://ror.org/027t2s119', 'no_lang_code', 1, 'https://ror.org/027t2s119 Intel (Israel)'),
(45194, 'https://ror.org/038ajj330', 'no_lang_code', 1, 'https://ror.org/038ajj330 TechnipFMC (United Kingdom)'),
(45195, 'https://ror.org/019znhj20', 'no_lang_code', 1, 'https://ror.org/019znhj20 Schneider Electric (Australia)'),
(45196, 'https://ror.org/00b9ph040', 'no_lang_code', 1, 'https://ror.org/00b9ph040 Hexagon (Israel)'),
(45197, 'https://ror.org/046ry7m83', 'no_lang_code', 1, 'https://ror.org/046ry7m83 Alere (Germany)'),
(45198, 'https://ror.org/033zgjc96', 'no_lang_code', 1, 'https://ror.org/033zgjc96 Herman Miller (United Kingdom)'),
(45199, 'https://ror.org/031sgpn76', 'no_lang_code', 1, 'https://ror.org/031sgpn76 Valeo (Ireland)'),
(45200, 'https://ror.org/03whnfd14', 'no_lang_code', 1, 'https://ror.org/03whnfd14 GlobalFoundries (Singapore)'),
(45201, 'https://ror.org/051vpgk97', 'no_lang_code', 1, 'https://ror.org/051vpgk97 Toshiba (United States)'),
(45202, 'https://ror.org/04e4g6t41', 'no_lang_code', 1, 'https://ror.org/04e4g6t41 Cook Medical (Ireland)'),
(45203, 'https://ror.org/03r33km95', 'no_lang_code', 1, 'https://ror.org/03r33km95 Eaton (Germany)'),
(45204, 'https://ror.org/046esz437', 'no_lang_code', 1, 'https://ror.org/046esz437 Colt International (United States)'),
(45205, 'https://ror.org/04kz8hh27', 'no_lang_code', 1, 'https://ror.org/04kz8hh27 Albemarle (Germany)'),
(45206, 'https://ror.org/05tdzsq49', 'no_lang_code', 1, 'https://ror.org/05tdzsq49 Nortek (United States)'),
(45207, 'https://ror.org/00j8b8469', 'no_lang_code', 1, 'https://ror.org/00j8b8469 Spectrum Brands (United Kingdom)'),
(45208, 'https://ror.org/01xs70477', 'no_lang_code', 1, 'https://ror.org/01xs70477 Corning (Israel)'),
(45209, 'https://ror.org/04asmh688', 'no_lang_code', 1, 'https://ror.org/04asmh688 Corning (South Korea)'),
(45210, 'https://ror.org/0328rvw59', 'no_lang_code', 1, 'https://ror.org/0328rvw59 Cryptomathic (United Kingdom)'),
(45211, 'https://ror.org/027qdw603', 'no_lang_code', 1, 'https://ror.org/027qdw603 Cadence Design Systems (India)'),
(45212, 'https://ror.org/017zzp047', 'no_lang_code', 1, 'https://ror.org/017zzp047 Nordson (United Kingdom)'),
(45213, 'https://ror.org/05vvdqy91', 'pt', 1, 'https://ror.org/05vvdqy91 Associação Brasileira de Águas Subterrâneas'),
(45214, 'https://ror.org/02gcdp811', 'pt', 1, 'https://ror.org/02gcdp811 Instituto de Pesca'),
(45215, 'https://ror.org/033y39138', 'pt', 1, 'https://ror.org/033y39138 Fundação Estadual de Pesquisa AgropecuÔria'),
(45216, 'https://ror.org/02hsmgc28', 'pt', 1, 'https://ror.org/02hsmgc28 Agende Guarulhos'),
(45217, 'https://ror.org/057tp6a49', 'pt', 1, 'https://ror.org/057tp6a49 Fundação Estadual de Proteção Ambiental Henrique Luiz Roessler'),
(45218, 'https://ror.org/028xn8h27', 'pt', 1, 'https://ror.org/028xn8h27 Associação Brasileira de Engenharia Agrícola'),
(45219, 'https://ror.org/01qgvp179', 'en', 1, 'https://ror.org/01qgvp179 Ezequiel Dias Foundation Fundação Ezequiel Dias'),
(45220, 'https://ror.org/00prymb05', 'pt', 1, 'https://ror.org/00prymb05 Centrus Diagnósticos por Imagem'),
(45221, 'https://ror.org/00bxp1m74', 'pt', 1, 'https://ror.org/00bxp1m74 Associação Brasileira de Engenharia de Produção'),
(45222, 'https://ror.org/05n7s3931', 'en', 1, 'https://ror.org/05n7s3931 Institute for Research and Innovation in Irrigated Agriculture'),
(45223, 'https://ror.org/05cew4a83', 'en', 1, 'https://ror.org/05cew4a83 Chicago Zoological Society'),
(45224, 'https://ror.org/05qqbm455', 'pt', 1, 'https://ror.org/05qqbm455 Associação Brasileira de Ensaios não Destrutivos e Inspeção'),
(45225, 'https://ror.org/059c7sp21', 'en', 1, 'https://ror.org/059c7sp21 Brazilian College of Animal Reproduction Colégio Brasileiro de Reprodução Animal'),
(45226, 'https://ror.org/04e080j72', 'pt', 1, 'https://ror.org/04e080j72 Fundação Hemopa'),
(45227, 'https://ror.org/05dhf4z39', 'pt', 1, 'https://ror.org/05dhf4z39 Associação Brasileira de Literatura Comparada'),
(45228, 'https://ror.org/005pzyb51', 'en', 1, 'https://ror.org/005pzyb51 Research Institute for Innovation and Technology'),
(45229, 'https://ror.org/00zkszf91', 'pt', 1, 'https://ror.org/00zkszf91 Associação Brasileira de PlanetÔrios'),
(45230, 'https://ror.org/02km5mw71', 'pt', 1, 'https://ror.org/02km5mw71 Associação Brasileira de Química'),
(45231, 'https://ror.org/055v9fh02', 'pt', 1, 'https://ror.org/055v9fh02 Laboratório Nacional de Astrofísica National Astrophysics Laboratory'),
(45232, 'https://ror.org/054021a91', 'pt', 1, 'https://ror.org/054021a91 Associação Brasileira de Recursos Hídricos'),
(45233, 'https://ror.org/01b55ta41', 'pt', 1, 'https://ror.org/01b55ta41 Conselho Nacional de Pesquisa e Pós-graduação em Direito'),
(45234, 'https://ror.org/03xm57x75', 'pt', 1, 'https://ror.org/03xm57x75 Instituto de SaĆŗde'),
(45235, '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'),
(45236, 'https://ror.org/02hpe9z95', 'de', 1, 'https://ror.org/02hpe9z95 M.A.S - Alzheimerhilfe - Demenzservicestelle Bad Ischl MAS Alzheimerhilfe'),
(45237, 'https://ror.org/01h8yh819', 'pt', 1, 'https://ror.org/01h8yh819 Associação Brasileira de Relações Internacionais'),
(45238, 'https://ror.org/04cdm5380', 'de', 1, 'https://ror.org/04cdm5380 Mediacult'),
(45239, 'https://ror.org/05pggr453', 'no_lang_code', 1, 'https://ror.org/05pggr453 DCS Computing (Austria)'),
(45240, 'https://ror.org/04kznw408', 'pt', 1, 'https://ror.org/04kznw408 Associação Brasileira de Rorschach e Métodos Projetivos'),
(45241, 'https://ror.org/04zseas36', 'pt', 1, 'https://ror.org/04zseas36 Associação Brasileira de Terapia Celular'),
(45242, 'https://ror.org/02c13m258', 'en', 1, 'https://ror.org/02c13m258 Institute of Animal Science and Pastures Instituto de Zootecnia'),
(45243, 'https://ror.org/01ctx9289', 'pt', 1, 'https://ror.org/01ctx9289 Fundação Jorge Duprat Figueiredo de Segurança e Medicina do Trabalho'),
(45244, 'https://ror.org/03b2q2q16', 'en', 1, 'https://ror.org/03b2q2q16 Memorial ŠžŠ±Ń‰ŠµŃŃ‚Š²Š¾ ŠœŠµŠ¼Š¾Ń€ŠøŠ°Š»'),
(45245, 'https://ror.org/02n1tdp80', 'pt', 1, 'https://ror.org/02n1tdp80 Associação Brasileira do Alumínio Brazilian Aluminum Association'),
(45246, 'https://ror.org/018qpjf36', 'pt', 1, 'https://ror.org/018qpjf36 Minas Jr'),
(45247, 'https://ror.org/025ctym15', 'pt', 1, 'https://ror.org/025ctym15 Fundação Meridional de Apoio à Pesquisa AgropecuÔria'),
(45248, 'https://ror.org/00b2yyz32', 'pt', 1, 'https://ror.org/00b2yyz32 Associação de Leitura do Brasil'),
(45249, 'https://ror.org/015q1p728', 'pt', 1, 'https://ror.org/015q1p728 Fundação Museu do Homem Americano'),
(45250, 'https://ror.org/02af7na82', 'no_lang_code', 1, 'https://ror.org/02af7na82 Durango Multimedia (United States)'),
(45251, 'https://ror.org/05f56wm94', 'pt', 1, 'https://ror.org/05f56wm94 Fundação Parque Tecnológico da Paraíba'),
(45252, 'https://ror.org/013egyr15', 'pt', 1, 'https://ror.org/013egyr15 Associação Nacional de Biossegurança'),
(45253, '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'),
(45254, 'https://ror.org/02maem855', 'en', 1, 'https://ror.org/02maem855 Ocean Lakes High School'),
(45255, 'https://ror.org/050raka84', 'pt', 1, 'https://ror.org/050raka84 Fundação PlanetÔrio da Cidade do Rio de Janeiro'),
(45256, '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'),
(45257, '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'),
(45258, 'https://ror.org/004f1yx35', 'pt', 1, 'https://ror.org/004f1yx35 Empresa de Pesquisa AgropecuÔria e Extensão Rural de Santa Catarina'),
(45259, 'https://ror.org/00b25cj29', 'pt', 1, 'https://ror.org/00b25cj29 Governo do Estado de Alagoas'),
(45260, 'https://ror.org/0432ndm25', 'no_lang_code', 1, 'https://ror.org/0432ndm25 Porto Digital (Brazil)'),
(45261, 'https://ror.org/03y07wm59', 'pt', 1, 'https://ror.org/03y07wm59 Associação Nacional de Pesquisadores e Professores de História das Américas'),
(45262, 'https://ror.org/03888v687', 'pt', 1, 'https://ror.org/03888v687 Governo do ParĆ”'),
(45263, 'https://ror.org/00jtd6242', 'pt', 1, 'https://ror.org/00jtd6242 Empresa Mato-grossense de Pesquisa, Assistência e Extensão Rural'),
(45264, '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'),
(45265, 'https://ror.org/00cp8ee37', 'pt', 1, 'https://ror.org/00cp8ee37 Prefeitura Municipal de Alto Alegre'),
(45266, 'https://ror.org/010p06p68', 'pt', 1, 'https://ror.org/010p06p68 Associação Nacional de Política e Administração da Educação'),
(45267, 'https://ror.org/039wcgm60', 'pt', 1, 'https://ror.org/039wcgm60 Prefeitura Municipal de Anapolis'),
(45268, 'https://ror.org/04cfzks03', 'pt', 1, 'https://ror.org/04cfzks03 Escola de Comando e Estado-Maior do ExƩrcito'),
(45269, 'https://ror.org/00a0zet70', 'pt', 1, 'https://ror.org/00a0zet70 Prefeitura Municipal de Barra Mansa'),
(45270, 'https://ror.org/02ywr7111', 'pt', 1, 'https://ror.org/02ywr7111 Prefeitura Municipal de Campos dos Goytacazes'),
(45271, 'https://ror.org/04w68ym71', 'en', 1, 'https://ror.org/04w68ym71 University Association for Research in Fundamental Psychopathology'),
(45272, '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'),
(45273, 'https://ror.org/025q49t60', 'pt', 1, 'https://ror.org/025q49t60 Prefeitura Municipal de Esteio'),
(45274, 'https://ror.org/00gmn3n47', 'pt', 1, 'https://ror.org/00gmn3n47 Prefeitura Municipal de IgarapƩ'),
(45275, 'https://ror.org/02r728f83', 'no_lang_code', 1, 'https://ror.org/02r728f83 ASV (United States)'),
(45276, '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'),
(45277, 'https://ror.org/04jry6p54', 'pt', 1, 'https://ror.org/04jry6p54 Prefeitura Municipal de Rio das Ostras'),
(45278, 'https://ror.org/058b8r373', 'pt', 1, 'https://ror.org/058b8r373 Prefeitura Municipal de Sapiranga'),
(45279, 'https://ror.org/02dhrxt58', 'no_lang_code', 1, 'https://ror.org/02dhrxt58 Teccampos (Brazil)'),
(45280, 'https://ror.org/05df6vn84', 'no_lang_code', 1, 'https://ror.org/05df6vn84 Atkins (United States)'),
(45281, '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Ô'),
(45282, 'https://ror.org/05e5cnc30', 'pt', 1, 'https://ror.org/05e5cnc30 Prefeitura Municipal de TauĆ”'),
(45283, 'https://ror.org/01htmkd76', 'pt', 1, 'https://ror.org/01htmkd76 Célia Helena Centro de Artes e Educação'),
(45284, 'https://ror.org/05yps4z32', 'pt', 1, 'https://ror.org/05yps4z32 Inesc P&D Brasil'),
(45285, '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'),
(45286, 'https://ror.org/05ryccv79', 'pt', 1, 'https://ror.org/05ryccv79 Escola Superior Dom Helder CĆ¢mara'),
(45287, 'https://ror.org/033qmpy33', 'pt', 1, 'https://ror.org/033qmpy33 Instituto Federal do PiauĆ­'),
(45288, 'https://ror.org/01bdarh28', 'no_lang_code', 1, 'https://ror.org/01bdarh28 International Baby Food Action Network'),
(45289, 'https://ror.org/00ddyzb69', 'en', 1, 'https://ror.org/00ddyzb69 Biodiversity Research Institute'),
(45290, 'https://ror.org/04p280284', 'pt', 1, 'https://ror.org/04p280284 Departamento de CiĆŖncia e Tecnologia'),
(45291, 'https://ror.org/03b209z39', 'pt', 1, 'https://ror.org/03b209z39 Instituto Brasileiro de Museus'),
(45292, 'https://ror.org/05r261n31', 'pt', 1, 'https://ror.org/05r261n31 Centro de Direito Internacional'),
(45293, 'https://ror.org/028x16v34', 'no_lang_code', 1, 'https://ror.org/028x16v34 Biominas (Brazil)'),
(45294, 'https://ror.org/029bs9b57', 'pt', 1, 'https://ror.org/029bs9b57 Fundação Cearense de Meteorologia e Recursos Hídricos'),
(45295, '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'),
(45296, 'https://ror.org/004m46j22', 'pt', 1, 'https://ror.org/004m46j22 Secretaria de Ciência, Tecnologia e Inovação'),
(45297, 'https://ror.org/03m4ve365', 'pt', 1, 'https://ror.org/03m4ve365 Instituto Florestal'),
(45298, 'https://ror.org/009ynjx25', 'pt', 1, 'https://ror.org/009ynjx25 Secretaria de Educação de Pernambuco'),
(45299, 'https://ror.org/02rvaak51', 'pt', 1, 'https://ror.org/02rvaak51 Instituto By Brasil'),
(45300, 'https://ror.org/03cxpxg17', 'en', 1, 'https://ror.org/03cxpxg17 Fundação CERTI Reference Center Foundation for Innovative Technologies'),
(45301, 'https://ror.org/02t7xfd51', 'pt', 1, 'https://ror.org/02t7xfd51 Centro de Estudos e Sistemas AvanƧados do Recife'),
(45302, 'https://ror.org/02j4ss342', 'pt', 1, 'https://ror.org/02j4ss342 Secretaria de Estado de Educação do Distrito Federal'),
(45303, 'https://ror.org/05hs77045', 'pt', 1, 'https://ror.org/05hs77045 Instituto Capixaba de Pesquisa, Assistência Técnica e Extensão Rural'),
(45304, 'https://ror.org/05gv30q64', 'pt', 1, 'https://ror.org/05gv30q64 Instituto Geológico'),
(45305, 'https://ror.org/046601y55', 'pt', 1, 'https://ror.org/046601y55 Centro Internacional de Semiótica e Comunicação'),
(45306, 'https://ror.org/02n64c681', 'pt', 1, 'https://ror.org/02n64c681 Fundação de Ciência e Tecnologia'),
(45307, 'https://ror.org/00gkmm041', 'pt', 1, 'https://ror.org/00gkmm041 Instituto de Biologia Molecular do ParanĆ”'),
(45308, 'https://ror.org/04dercs88', 'pt', 1, 'https://ror.org/04dercs88 Instituto Nacional do SemiƔrido'),
(45309, 'https://ror.org/03dnd4369', 'pt', 1, 'https://ror.org/03dnd4369 Fundação de Economia e Estatística Siegfried Emanuel Heuser'),
(45310, 'https://ror.org/011sq9629', 'pt', 1, 'https://ror.org/011sq9629 Sociedade Brasileira de BiofĆ­sica'),
(45311, 'https://ror.org/02z4s0665', 'pt', 1, 'https://ror.org/02z4s0665 Instituto de Controle do EspaƧo AƩreo'),
(45312, 'https://ror.org/033kk6r78', 'pt', 1, 'https://ror.org/033kk6r78 Instituto Rio Grandense do Arroz'),
(45313, 'https://ror.org/04pk33v91', 'en', 1, 'https://ror.org/04pk33v91 Brazilian Computer Society Sociedade Brasileira de Computação'),
(45314, 'https://ror.org/00bz97317', 'no_lang_code', 1, 'https://ror.org/00bz97317 UNIFAVIP'),
(45315, 'https://ror.org/02xata679', 'pt', 1, 'https://ror.org/02xata679 Sociedade Brasileira de Economia Administração e Sociologia Rural'),
(45316, 'https://ror.org/01hjd1605', 'pt', 1, 'https://ror.org/01hjd1605 Escola TƩcnica de eletrƓnic'),
(45317, 'https://ror.org/05062q345', 'pt', 1, 'https://ror.org/05062q345 Sociedade Brasileira de Educação MatemÔtica'),
(45318, 'https://ror.org/02dsr2x66', 'pt', 1, 'https://ror.org/02dsr2x66 Fundação Liberato'),
(45319, 'https://ror.org/03ejhx730', 'pt', 1, 'https://ror.org/03ejhx730 Sociedade Brasileira de Recursos GenƩticos'),
(45320, 'https://ror.org/0093zaj76', 'pt', 1, 'https://ror.org/0093zaj76 Instituto de Ensino e Pesquisa Santa Casa'),
(45321, 'https://ror.org/02a8cr479', 'pt', 1, 'https://ror.org/02a8cr479 Sociedade de Anestesiologia do Rio Grande do Sul'),
(45322, 'https://ror.org/036z8q506', 'pt', 1, 'https://ror.org/036z8q506 Sociedade Brasileira de Ensino de Biologia'),
(45323, 'https://ror.org/03gf7q691', 'pt', 1, 'https://ror.org/03gf7q691 Faculdade Única'),
(45324, 'https://ror.org/02z5rpx40', 'pt', 1, 'https://ror.org/02z5rpx40 Sociedade Brasileira de GeofĆ­sica'),
(45325, 'https://ror.org/01e6tbq77', 'pt', 1, 'https://ror.org/01e6tbq77 Sociedade Latino Americana de Biomateriais e ƓrgĆ£os Artificiais'),
(45326, 'https://ror.org/03mmx9g76', 'pt', 1, 'https://ror.org/03mmx9g76 Sociedade Brasileira de História da MatemÔtica'),
(45327, 'https://ror.org/01vfj8s64', 'de', 1, 'https://ror.org/01vfj8s64 Arge Ɩkologie'),
(45328, 'https://ror.org/05r2e5c27', 'pt', 1, 'https://ror.org/05r2e5c27 Sociedade Brasileira de Pesquisa Operacional'),
(45329, 'https://ror.org/030j5vf66', 'en', 1, 'https://ror.org/030j5vf66 Statistics Austria Statistik Austria'),
(45330, 'https://ror.org/0438tby89', 'pt', 1, 'https://ror.org/0438tby89 Sociedade Brasileira de Cardiologia'),
(45331, 'https://ror.org/02nqcmv36', 'no_lang_code', 1, 'https://ror.org/02nqcmv36 DuPont (Finland)'),
(45332, 'https://ror.org/00114hq16', 'pt', 1, 'https://ror.org/00114hq16 Centro Nacional de Monitoramento e Alertas de Desastres Naturais'),
(45333, 'https://ror.org/05ttsqg93', 'no_lang_code', 1, 'https://ror.org/05ttsqg93 Medtronic (Germany)'),
(45334, 'https://ror.org/01kg4f866', 'no_lang_code', 1, 'https://ror.org/01kg4f866 EchoStar (United Kingdom)'),
(45335, 'https://ror.org/052mh6j19', 'no_lang_code', 1, 'https://ror.org/052mh6j19 DenseLight Semiconductors (Singapore)');
INSERT INTO `rors` VALUES
(45336, 'https://ror.org/022wcve15', 'no_lang_code', 1, 'https://ror.org/022wcve15 De Beers (United Kingdom)'),
(45337, 'https://ror.org/02q11zr32', 'no_lang_code', 1, 'https://ror.org/02q11zr32 DMG Mori (Germany)'),
(45338, 'https://ror.org/050332k40', 'no_lang_code', 1, 'https://ror.org/050332k40 Johnson Controls (Canada)'),
(45339, 'https://ror.org/04hpp8k10', 'no_lang_code', 1, 'https://ror.org/04hpp8k10 Dana (United Kingdom)'),
(45340, 'https://ror.org/004hb4039', 'no_lang_code', 1, 'https://ror.org/004hb4039 Danfoss (China)'),
(45341, 'https://ror.org/03cbf2j49', 'no_lang_code', 1, 'https://ror.org/03cbf2j49 Danfoss (Germany)'),
(45342, 'https://ror.org/049jgef55', 'no_lang_code', 1, 'https://ror.org/049jgef55 Danfoss (United States)'),
(45343, 'https://ror.org/00qxrgg46', 'no_lang_code', 1, 'https://ror.org/00qxrgg46 Deutsche Telekom (United Kingdom)'),
(45344, 'https://ror.org/0487bnx60', 'no_lang_code', 1, 'https://ror.org/0487bnx60 Doosan Machine Tools (United States)'),
(45345, 'https://ror.org/000va8z45', 'no_lang_code', 1, 'https://ror.org/000va8z45 Dornier (United States)'),
(45346, 'https://ror.org/01yvg9s13', 'no_lang_code', 1, 'https://ror.org/01yvg9s13 DuPont (China)'),
(45347, 'https://ror.org/03d6z8b09', 'no_lang_code', 1, 'https://ror.org/03d6z8b09 Diageo (United Kingdom)'),
(45348, 'https://ror.org/04safzk84', 'no_lang_code', 1, 'https://ror.org/04safzk84 Dynea (Austria)'),
(45349, 'https://ror.org/03gx8w417', 'no_lang_code', 1, 'https://ror.org/03gx8w417 Bridgepoint (United States)'),
(45350, 'https://ror.org/04a0vqv69', 'no_lang_code', 1, 'https://ror.org/04a0vqv69 Dow Chemical (Brasil)'),
(45351, 'https://ror.org/04f1r9295', 'no_lang_code', 1, 'https://ror.org/04f1r9295 Dow Chemical (China)'),
(45352, 'https://ror.org/01gw9ve49', 'no_lang_code', 1, 'https://ror.org/01gw9ve49 EagleBurgmann (Japan)'),
(45353, 'https://ror.org/04z6j1174', 'no_lang_code', 1, 'https://ror.org/04z6j1174 Rambus (United Kingdom)'),
(45354, 'https://ror.org/01abqd782', 'no_lang_code', 1, 'https://ror.org/01abqd782 Echostar (Ukraine)'),
(45355, 'https://ror.org/03f1m2f12', 'no_lang_code', 1, 'https://ror.org/03f1m2f12 DrƤger (United Kingdom)'),
(45356, 'https://ror.org/0572qa274', 'no_lang_code', 1, 'https://ror.org/0572qa274 Ecolab (Germany)'),
(45357, 'https://ror.org/01rgzab50', 'no_lang_code', 1, 'https://ror.org/01rgzab50 Eaton (United Kingdom)'),
(45358, 'https://ror.org/011nyg256', 'no_lang_code', 1, 'https://ror.org/011nyg256 Eaton (Austria)'),
(45359, 'https://ror.org/003p2k248', 'no_lang_code', 1, 'https://ror.org/003p2k248 Pirelli (Germany)'),
(45360, 'https://ror.org/04zq68n70', 'no_lang_code', 1, 'https://ror.org/04zq68n70 EnerSys (Switzerland)'),
(45361, 'https://ror.org/0334rzs32', 'no_lang_code', 1, 'https://ror.org/0334rzs32 Eaton (Switzerland)'),
(45362, 'https://ror.org/05hm2f981', 'no_lang_code', 1, 'https://ror.org/05hm2f981 EcoSynthetix (United States)'),
(45363, 'https://ror.org/00fymn751', 'no_lang_code', 1, 'https://ror.org/00fymn751 General Electric (Israel)'),
(45364, 'https://ror.org/0515mqy80', 'no_lang_code', 1, 'https://ror.org/0515mqy80 Nortek (United Kingdom)'),
(45365, 'https://ror.org/01149dp52', 'no_lang_code', 1, 'https://ror.org/01149dp52 eBay (South Korea)'),
(45366, 'https://ror.org/00vfz8743', 'no_lang_code', 1, 'https://ror.org/00vfz8743 Honeywell (Germany)'),
(45367, 'https://ror.org/00pvn1h36', 'no_lang_code', 1, 'https://ror.org/00pvn1h36 Eli Lilly (Ireland)'),
(45368, 'https://ror.org/00j8cdz25', 'no_lang_code', 1, 'https://ror.org/00j8cdz25 Illinois Tool Works (Germany)'),
(45369, 'https://ror.org/02vva9s75', 'no_lang_code', 1, 'https://ror.org/02vva9s75 EFD Induction (Germany)'),
(45370, 'https://ror.org/02p4cdb03', 'no_lang_code', 1, 'https://ror.org/02p4cdb03 Arotech (Israel)'),
(45371, 'https://ror.org/055s23s22', 'no_lang_code', 1, 'https://ror.org/055s23s22 Electrolux (Australia)'),
(45372, 'https://ror.org/04fzah020', 'no_lang_code', 1, 'https://ror.org/04fzah020 Steris (United Kingdom)'),
(45373, 'https://ror.org/01xjvwt10', 'no_lang_code', 1, 'https://ror.org/01xjvwt10 Electrolux (United Kingdom)'),
(45374, 'https://ror.org/03thg1m49', 'no_lang_code', 1, 'https://ror.org/03thg1m49 Electrolux (Germany)'),
(45375, 'https://ror.org/007nce146', 'no_lang_code', 1, 'https://ror.org/007nce146 Emergent BioSolutions (United Kingdom)'),
(45376, 'https://ror.org/02cwjwn07', 'no_lang_code', 1, 'https://ror.org/02cwjwn07 Emerson (China)'),
(45377, 'https://ror.org/04t7ypr69', 'no_lang_code', 1, 'https://ror.org/04t7ypr69 Elekta (United Kingdom)'),
(45378, 'https://ror.org/02bcmhv69', 'no_lang_code', 1, 'https://ror.org/02bcmhv69 Electrovaya (Germany)'),
(45379, 'https://ror.org/035t0dt07', 'no_lang_code', 1, 'https://ror.org/035t0dt07 TDK (Singapore)'),
(45380, 'https://ror.org/04s1pd637', 'no_lang_code', 1, 'https://ror.org/04s1pd637 Element Six (South Africa)'),
(45381, 'https://ror.org/05ec38531', 'no_lang_code', 1, 'https://ror.org/05ec38531 Element Six (Germany)'),
(45382, 'https://ror.org/0150aaa23', 'no_lang_code', 1, 'https://ror.org/0150aaa23 Excelitas Technologies (Singapore)'),
(45383, 'https://ror.org/030cs0206', 'no_lang_code', 1, 'https://ror.org/030cs0206 Asus (China) čÆē¢©é›»č…¦č‚”ä»½ęœ‰é™å…¬åø'),
(45384, 'https://ror.org/04jrd4q87', 'no_lang_code', 1, 'https://ror.org/04jrd4q87 Expro (United States)'),
(45385, 'https://ror.org/03gsjv132', 'no_lang_code', 1, 'https://ror.org/03gsjv132 Sandvik (Germany)'),
(45386, 'https://ror.org/010brrt54', 'no_lang_code', 1, 'https://ror.org/010brrt54 Faurecia (United States)'),
(45387, 'https://ror.org/023pvcn20', 'no_lang_code', 1, 'https://ror.org/023pvcn20 Cadence Design Systems (United Kingdom)'),
(45388, 'https://ror.org/009dxjw45', 'en', 1, 'https://ror.org/009dxjw45 Faurecia (Germany)'),
(45389, 'https://ror.org/01ffhf815', 'no_lang_code', 1, 'https://ror.org/01ffhf815 Flex (Germany)'),
(45390, 'https://ror.org/00xttnp21', 'no_lang_code', 1, 'https://ror.org/00xttnp21 Flex (Mauritius)'),
(45391, 'https://ror.org/05wqk8p58', 'no_lang_code', 1, 'https://ror.org/05wqk8p58 MACOM (Japan)'),
(45392, 'https://ror.org/039t7ab07', 'no_lang_code', 1, 'https://ror.org/039t7ab07 Frequentis (Germany)'),
(45393, 'https://ror.org/04rzhfa50', 'no_lang_code', 1, 'https://ror.org/04rzhfa50 Fresenius Kabi (United States)'),
(45394, 'https://ror.org/00c7qwq82', 'no_lang_code', 1, 'https://ror.org/00c7qwq82 Freudenberg (United States)'),
(45395, 'https://ror.org/03bq9hz14', 'no_lang_code', 1, 'https://ror.org/03bq9hz14 Federal Mogul (Germany)'),
(45396, 'https://ror.org/04qg98577', 'no_lang_code', 1, 'https://ror.org/04qg98577 Federal Mogul (United Kingdom)'),
(45397, 'https://ror.org/01chnvp81', 'no_lang_code', 1, 'https://ror.org/01chnvp81 Flow International Corporation (Germany)'),
(45398, 'https://ror.org/04max0939', 'no_lang_code', 1, 'https://ror.org/04max0939 Fujitsu (Germany) åÆŒå£«é€šę Ŗå¼ä¼šē¤¾'),
(45399, 'https://ror.org/01vvkvt81', 'no_lang_code', 1, 'https://ror.org/01vvkvt81 Sulzer (Germany)'),
(45400, 'https://ror.org/023qkzz98', 'no_lang_code', 1, 'https://ror.org/023qkzz98 Gemalto (United Kingdom)'),
(45401, 'https://ror.org/042q91e23', 'no_lang_code', 1, 'https://ror.org/042q91e23 Kaiam Corporation (United Kingdom)'),
(45402, 'https://ror.org/00vexz648', 'no_lang_code', 1, 'https://ror.org/00vexz648 Mahindra Forgings (Germany)'),
(45403, 'https://ror.org/026kmj910', 'no_lang_code', 1, 'https://ror.org/026kmj910 ThyssenKrupp (Liechtenstein)'),
(45404, 'https://ror.org/05fsqxg82', 'no_lang_code', 1, 'https://ror.org/05fsqxg82 Exide Technologies (Germany)'),
(45405, 'https://ror.org/01mycfe72', 'no_lang_code', 1, 'https://ror.org/01mycfe72 AT&T (Israel)'),
(45406, 'https://ror.org/05jgtkc28', 'no_lang_code', 1, 'https://ror.org/05jgtkc28 Baxter (Germany)'),
(45407, 'https://ror.org/04fm2yw69', 'no_lang_code', 1, 'https://ror.org/04fm2yw69 GKN (United States)'),
(45408, 'https://ror.org/00148fb49', 'no_lang_code', 1, 'https://ror.org/00148fb49 Merck (United Kingdom)'),
(45409, 'https://ror.org/02prth598', 'no_lang_code', 1, 'https://ror.org/02prth598 Nidec (Germany)'),
(45410, 'https://ror.org/0272aey45', 'no_lang_code', 1, 'https://ror.org/0272aey45 Glen Dimplex (Germany)'),
(45411, 'https://ror.org/00cnk1752', 'no_lang_code', 1, 'https://ror.org/00cnk1752 W. L. Gore & Associates (Japan)'),
(45412, 'https://ror.org/01gjjxa05', 'no_lang_code', 1, 'https://ror.org/01gjjxa05 International Game Technology (Germany)'),
(45413, 'https://ror.org/03n8fxy07', 'no_lang_code', 1, 'https://ror.org/03n8fxy07 Engie (United States)'),
(45414, 'https://ror.org/01svrpv75', 'no_lang_code', 1, 'https://ror.org/01svrpv75 TE Connectivity (Denmark)'),
(45415, 'https://ror.org/01jn7ba52', 'no_lang_code', 1, 'https://ror.org/01jn7ba52 Halliburton (United Kingdom)'),
(45416, 'https://ror.org/0274wgp76', 'no_lang_code', 1, 'https://ror.org/0274wgp76 Gold Peak Industries (United Kingdom)'),
(45417, 'https://ror.org/01k2z4866', 'no_lang_code', 1, 'https://ror.org/01k2z4866 Harman (China)'),
(45418, 'https://ror.org/05fzcfb55', 'no_lang_code', 1, 'https://ror.org/05fzcfb55 Harman (United Kingdom)'),
(45419, 'https://ror.org/019pmpn80', 'no_lang_code', 1, 'https://ror.org/019pmpn80 Stryker (United Kingdom)'),
(45420, 'https://ror.org/05f6vr294', 'no_lang_code', 1, 'https://ror.org/05f6vr294 Seoyon E-Hwa (South Korea)'),
(45421, 'https://ror.org/05fesrm20', 'no_lang_code', 1, 'https://ror.org/05fesrm20 Heraeus (United States)'),
(45422, 'https://ror.org/03mdyrb51', 'no_lang_code', 1, 'https://ror.org/03mdyrb51 Hillrom (Singapore)'),
(45423, 'https://ror.org/01e4dyg78', 'no_lang_code', 1, 'https://ror.org/01e4dyg78 Honeywell (Australia)'),
(45424, 'https://ror.org/03zxsvn45', 'no_lang_code', 1, 'https://ror.org/03zxsvn45 Dover (Canada)'),
(45425, 'https://ror.org/02c3f7x68', 'no_lang_code', 1, 'https://ror.org/02c3f7x68 Hoerbiger (Germany)'),
(45426, 'https://ror.org/058ryjm64', 'no_lang_code', 1, 'https://ror.org/058ryjm64 Hoerbiger (Austria)'),
(45427, 'https://ror.org/05wstmm20', 'no_lang_code', 1, 'https://ror.org/05wstmm20 Horiba (Germany)'),
(45428, 'https://ror.org/05ckpfd66', 'no_lang_code', 1, 'https://ror.org/05ckpfd66 Hewlett-Packard (Israel)'),
(45429, 'https://ror.org/05sam1g35', 'no_lang_code', 1, 'https://ror.org/05sam1g35 Hovione (China)'),
(45430, 'https://ror.org/05jrmm111', 'no_lang_code', 1, 'https://ror.org/05jrmm111 Hexagon (Germany)'),
(45431, 'https://ror.org/01wqp7c62', 'no_lang_code', 1, 'https://ror.org/01wqp7c62 Hexagon (Switzerland)'),
(45432, 'https://ror.org/01wt6rn90', 'no_lang_code', 1, 'https://ror.org/01wt6rn90 Hewlett-Packard (Austria)'),
(45433, 'https://ror.org/0465gqs65', 'no_lang_code', 1, 'https://ror.org/0465gqs65 Legrand (Australia)'),
(45434, 'https://ror.org/027g0hb56', 'no_lang_code', 1, 'https://ror.org/027g0hb56 Hitachi (Germany)'),
(45435, 'https://ror.org/016kvft77', 'no_lang_code', 1, 'https://ror.org/016kvft77 Hyundai Motors (South Korea) ķ˜„ėŒ€ģžė™ģ°Ø'),
(45436, 'https://ror.org/009z7vc79', 'no_lang_code', 1, 'https://ror.org/009z7vc79 Hyundai Card (South Korea) ķ˜„ėŒ€ģ¹“ė“œ'),
(45437, 'https://ror.org/02axkyn34', 'no_lang_code', 1, 'https://ror.org/02axkyn34 SK Group (Japan)'),
(45438, 'https://ror.org/03p5v7r13', 'no_lang_code', 1, 'https://ror.org/03p5v7r13 Newron Pharmaceuticals (United States)'),
(45439, 'https://ror.org/00rzpns50', 'no_lang_code', 1, 'https://ror.org/00rzpns50 Hyundai Steel (South Korea) ķ˜„ėŒ€ģ œģ² '),
(45440, 'https://ror.org/03bfapt22', 'no_lang_code', 1, 'https://ror.org/03bfapt22 International Game Technology (United Kingdom)'),
(45441, 'https://ror.org/050btbx23', 'no_lang_code', 1, 'https://ror.org/050btbx23 Hubbell (United Kingdom)'),
(45442, 'https://ror.org/02stn1573', 'no_lang_code', 1, 'https://ror.org/02stn1573 IHI Corporation (Germany)'),
(45443, 'https://ror.org/02mavrn48', 'no_lang_code', 1, 'https://ror.org/02mavrn48 Toshiba (South Korea) ę Ŗå¼ä¼šē¤¾ę±čŠ'),
(45444, 'https://ror.org/01dw3yn87', 'no_lang_code', 1, 'https://ror.org/01dw3yn87 IHS Markit (Australia)'),
(45445, 'https://ror.org/01zswhd24', 'no_lang_code', 1, 'https://ror.org/01zswhd24 Husqvarna (United Kingdom)'),
(45446, 'https://ror.org/04kz0fx24', 'no_lang_code', 1, 'https://ror.org/04kz0fx24 Innospec (United States)'),
(45447, 'https://ror.org/00h6s5242', 'no_lang_code', 1, 'https://ror.org/00h6s5242 Ineos (Switzerland)'),
(45448, 'https://ror.org/04vxxnr42', 'no_lang_code', 1, 'https://ror.org/04vxxnr42 General Electric (Argentina)'),
(45449, 'https://ror.org/00srxhm83', 'no_lang_code', 1, 'https://ror.org/00srxhm83 Zodiac Aerospace (United Kingdom)'),
(45450, 'https://ror.org/02c6c1603', 'no_lang_code', 1, 'https://ror.org/02c6c1603 Intellectual Ventures (Singapore)'),
(45451, 'https://ror.org/01d71b291', 'no_lang_code', 1, 'https://ror.org/01d71b291 British American Tobacco (Canada)'),
(45452, 'https://ror.org/041s2fp12', 'no_lang_code', 1, 'https://ror.org/041s2fp12 Inventec (China) 英ꄭ達'),
(45453, 'https://ror.org/053y02f02', 'no_lang_code', 1, 'https://ror.org/053y02f02 ITT (United Kingdom)'),
(45454, 'https://ror.org/005d42743', 'no_lang_code', 1, 'https://ror.org/005d42743 Illinois Tool Works (Australia)'),
(45455, 'https://ror.org/024dzge57', 'no_lang_code', 1, 'https://ror.org/024dzge57 Sunstar (Germany)'),
(45456, 'https://ror.org/03ybwam46', 'no_lang_code', 1, 'https://ror.org/03ybwam46 Integra LifeSciences (Ireland)'),
(45457, 'https://ror.org/01gk2j051', 'no_lang_code', 1, 'https://ror.org/01gk2j051 Magna International (Germany)'),
(45458, 'https://ror.org/040y3df60', 'no_lang_code', 1, 'https://ror.org/040y3df60 Ipsen (Ireland)'),
(45459, 'https://ror.org/04f89zf73', 'no_lang_code', 1, 'https://ror.org/04f89zf73 Johnson & Johnson (Brazil)'),
(45460, 'https://ror.org/034ca4k86', 'no_lang_code', 1, 'https://ror.org/034ca4k86 Johnson & Johnson (Australia)'),
(45461, 'https://ror.org/00hcj0e04', 'no_lang_code', 1, 'https://ror.org/00hcj0e04 Johnson Controls (Switzerland)'),
(45462, 'https://ror.org/048ss3773', 'no_lang_code', 1, 'https://ror.org/048ss3773 Krüger (Germany)'),
(45463, 'https://ror.org/0131hr478', 'no_lang_code', 1, 'https://ror.org/0131hr478 Johnson Matthey (Germany)'),
(45464, 'https://ror.org/00ta62x83', 'no_lang_code', 1, 'https://ror.org/00ta62x83 Japan Aviation Electronics Industry (Taiwan)'),
(45465, 'https://ror.org/042tf0p61', 'no_lang_code', 1, 'https://ror.org/042tf0p61 Sosei Group (Japan)'),
(45466, 'https://ror.org/05xck0p20', 'no_lang_code', 1, 'https://ror.org/05xck0p20 Jordan Valley Semiconductors (Israel)'),
(45467, 'https://ror.org/05kt82m30', 'no_lang_code', 1, 'https://ror.org/05kt82m30 Isra Vision (Germany)'),
(45468, 'https://ror.org/028kj2697', 'no_lang_code', 1, 'https://ror.org/028kj2697 ITT (Germany)'),
(45469, 'https://ror.org/010s5m858', 'no_lang_code', 1, 'https://ror.org/010s5m858 Olympus (United Kingdom)'),
(45470, 'https://ror.org/01155gk87', 'no_lang_code', 1, 'https://ror.org/01155gk87 Keysight Technologies (Singapore)'),
(45471, 'https://ror.org/00bm3g510', 'no_lang_code', 1, 'https://ror.org/00bm3g510 Kaneka (United States)'),
(45472, 'https://ror.org/0452qzk74', 'no_lang_code', 1, 'https://ror.org/0452qzk74 Desma (Germany)'),
(45473, 'https://ror.org/01q7tkf98', 'no_lang_code', 1, 'https://ror.org/01q7tkf98 KME (United States)'),
(45474, 'https://ror.org/00ynxc274', 'no_lang_code', 1, 'https://ror.org/00ynxc274 Kao Corporation (Germany)'),
(45475, 'https://ror.org/01qkmhj58', 'no_lang_code', 1, 'https://ror.org/01qkmhj58 Kao Corporation (United States)'),
(45476, 'https://ror.org/01r1v8s38', 'no_lang_code', 1, 'https://ror.org/01r1v8s38 Knorr-Bremse (Austria)'),
(45477, 'https://ror.org/05fzz0q30', 'no_lang_code', 1, 'https://ror.org/05fzz0q30 Komet Group (Germany)'),
(45478, 'https://ror.org/05g6qd913', 'no_lang_code', 1, 'https://ror.org/05g6qd913 Knorr-Bremse (United Kingdom)'),
(45479, 'https://ror.org/05j4xxv23', 'no_lang_code', 1, 'https://ror.org/05j4xxv23 KRONOS (Germany)'),
(45480, 'https://ror.org/019pzpd68', 'no_lang_code', 1, 'https://ror.org/019pzpd68 Kodak (Israel)'),
(45481, 'https://ror.org/00tee0349', 'no_lang_code', 1, 'https://ror.org/00tee0349 Kodak (Japan)'),
(45482, 'https://ror.org/03amme506', 'no_lang_code', 1, 'https://ror.org/03amme506 Kohler (China) ē§‘å‹’'),
(45483, 'https://ror.org/041t5sq72', 'no_lang_code', 1, 'https://ror.org/041t5sq72 JTEKT (United States)'),
(45484, 'https://ror.org/02jht7h37', 'no_lang_code', 1, 'https://ror.org/02jht7h37 Kohler (New Zealand)'),
(45485, 'https://ror.org/02kv9s375', 'no_lang_code', 1, 'https://ror.org/02kv9s375 KUKA (United States)'),
(45486, 'https://ror.org/05nz79105', 'no_lang_code', 1, 'https://ror.org/05nz79105 MBDA (Germany)'),
(45487, 'https://ror.org/00dzkv815', 'no_lang_code', 1, 'https://ror.org/00dzkv815 Ericsson LG (South Korea)'),
(45488, 'https://ror.org/05mh3sg80', 'no_lang_code', 1, 'https://ror.org/05mh3sg80 Leuco (United States)'),
(45489, 'https://ror.org/031b6ch69', 'no_lang_code', 1, 'https://ror.org/031b6ch69 Legrand (Germany)'),
(45490, 'https://ror.org/03ceqgg02', 'no_lang_code', 1, 'https://ror.org/03ceqgg02 Agfa-Gevaert (United States)'),
(45491, 'https://ror.org/00ag1vy72', 'no_lang_code', 1, 'https://ror.org/00ag1vy72 Liebherr (Austria)'),
(45492, 'https://ror.org/035vnjr65', 'no_lang_code', 1, 'https://ror.org/035vnjr65 Toshiba (Germany)'),
(45493, 'https://ror.org/05mmvmh32', 'no_lang_code', 1, 'https://ror.org/05mmvmh32 Thermo Fisher Scientific (Israel)'),
(45494, 'https://ror.org/04c6jsb22', 'no_lang_code', 1, 'https://ror.org/04c6jsb22 Leo Pharma (Ireland)'),
(45495, 'https://ror.org/03n4y8m86', 'no_lang_code', 1, 'https://ror.org/03n4y8m86 Lite-On Technology Corporation (Singapore)'),
(45496, 'https://ror.org/018ggen26', 'en', 1, 'https://ror.org/018ggen26 China Agricultural Museum'),
(45497, 'https://ror.org/03f915n15', 'fr', 1, 'https://ror.org/03f915n15 Institut National Polytechnique FƩlix Houphouƫt-Boigny'),
(45498, 'https://ror.org/04em0br16', 'en', 1, 'https://ror.org/04em0br16 Department of Agricultural Research & Technical Services'),
(45499, 'https://ror.org/018zm7341', 'en', 1, 'https://ror.org/018zm7341 Department of Environment and Natural Resources'),
(45500, 'https://ror.org/05wstjm18', 'es', 1, 'https://ror.org/05wstjm18 Academia Nacional de Ciencias de Bolivia'),
(45501, 'https://ror.org/02gfzp482', 'en', 1, 'https://ror.org/02gfzp482 Federal Institute for Education Development Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ автономное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(45502, 'https://ror.org/00hf3db96', 'no_lang_code', 1, 'https://ror.org/00hf3db96 Aerospace Testing Alliance (United States)'),
(45503, 'https://ror.org/03wnay029', 'no_lang_code', 1, 'https://ror.org/03wnay029 Abbott (United Kingdom)'),
(45504, 'https://ror.org/045rh7r61', 'fr', 1, 'https://ror.org/045rh7r61 Centre d''Ɖtude et de Recherche de Djibouti'),
(45505, 'https://ror.org/03nd8bd86', 'es', 1, 'https://ror.org/03nd8bd86 Conferencia Episcopal Boliviana'),
(45506, 'https://ror.org/02qf65t43', 'en', 1, 'https://ror.org/02qf65t43 Food and Agricultural Research and Extension Institute'),
(45507, 'https://ror.org/03xkdb465', 'es', 1, 'https://ror.org/03xkdb465 Consejo Estatal Del Azucar'),
(45508, 'https://ror.org/00c1jzs80', 'en', 1, 'https://ror.org/00c1jzs80 Environment and Public Health Organisation'),
(45509, 'https://ror.org/03m8km719', 'en', 1, 'https://ror.org/03m8km719 Environmental Protection Agency'),
(45510, 'https://ror.org/024emee48', 'es', 1, 'https://ror.org/024emee48 Corporación Autónoma Regional de Los Valles del Sinu y del San Jorge'),
(45511, 'https://ror.org/04s5gc466', 'en', 1, 'https://ror.org/04s5gc466 Mongolian Nature and Environment Consortium'),
(45512, 'https://ror.org/05e0get33', 'en', 1, 'https://ror.org/05e0get33 Alameda County Library'),
(45513, 'https://ror.org/04d9trb33', 'es', 1, 'https://ror.org/04d9trb33 Corporación para el Desarrollo Sostenible del UrabÔ'),
(45514, 'https://ror.org/02y7h5c73', 'en', 1, 'https://ror.org/02y7h5c73 Centre National d''Applications des Recherches Pharmaceutiques National Application Center for Pharmaceutical Research'),
(45515, 'https://ror.org/05n3ezj46', 'en', 1, 'https://ror.org/05n3ezj46 Annapurna Neurological Institute and Allied Sciences ą¤…ą¤Øą„ą¤Øą¤Ŗą„‚ą¤°ą„ą¤£ ą¤Øą„ą¤Æą„‚ą¤°ą„‹ą¤²ą„‹ą¤œą¤æą¤•ą¤² ą¤ˆą¤Øą„ą¤øą„ą¤Ÿą„€ą¤šą„ą¤Æą„ą¤Ÿ ą¤ą¤£ą„ą¤” ą¤ą¤²ą¤¾ą¤ˆą¤” ą¤øą¤¾ą¤ˆą¤Øą„ą¤øą„‡ą¤ø'),
(45516, 'https://ror.org/023n1np13', 'en', 1, 'https://ror.org/023n1np13 Arannayk Foundation'),
(45517, 'https://ror.org/007tn2w26', 'no_lang_code', 1, 'https://ror.org/007tn2w26 Mycofarm (Singapore)'),
(45518, 'https://ror.org/03e0eqg93', 'en', 1, 'https://ror.org/03e0eqg93 Austin Public Library'),
(45519, 'https://ror.org/04zj2qc05', 'en', 1, 'https://ror.org/04zj2qc05 Asia Network for Sustainable Agriculture and Bioresources'),
(45520, 'https://ror.org/02g1g7v23', 'no_lang_code', 1, 'https://ror.org/02g1g7v23 IDEX Corporation (Germany)'),
(45521, 'https://ror.org/05cd0vn93', 'en', 1, 'https://ror.org/05cd0vn93 Dairy Farming Promotion Organization'),
(45522, 'https://ror.org/0231jxj79', 'en', 1, 'https://ror.org/0231jxj79 Associated Press'),
(45523, 'https://ror.org/0035wxz79', 'en', 1, 'https://ror.org/0035wxz79 Dambari Wildlife Trust'),
(45524, 'https://ror.org/04qj89w85', 'en', 1, 'https://ror.org/04qj89w85 Danish Agency for Culture and Palaces'),
(45525, 'https://ror.org/047ywjc69', 'es', 1, 'https://ror.org/047ywjc69 Centro Cooperativista Uruguayo'),
(45526, 'https://ror.org/001ke5c68', 'en', 1, 'https://ror.org/001ke5c68 Department of Agriculture'),
(45527, 'https://ror.org/023jcww95', 'es', 1, 'https://ror.org/023jcww95 Centro de Excelencia en Procesos y Productos de Córdoba'),
(45528, 'https://ror.org/00v57z525', 'en', 1, 'https://ror.org/00v57z525 Bangladesh Livestock Research Institute'),
(45529, 'https://ror.org/03ke6ew70', 'en', 1, 'https://ror.org/03ke6ew70 Department of Fisheries'),
(45530, 'https://ror.org/005hdgp31', 'en', 1, 'https://ror.org/005hdgp31 Basque Center for Materials, Applications and Nanostructures'),
(45531, 'https://ror.org/026x09x35', 'no_lang_code', 1, 'https://ror.org/026x09x35 Deutsches Patent- und Markenamt German Patent and Trade Mark Office (Germany)'),
(45532, 'https://ror.org/01hcbtz52', 'no_lang_code', 1, 'https://ror.org/01hcbtz52 Dexin (Uruguay)'),
(45533, 'https://ror.org/03aefdx31', 'en', 1, 'https://ror.org/03aefdx31 Beijing Institute of Education åŒ—äŗ¬ę•™č‚²å­¦é™¢'),
(45534, 'https://ror.org/04j55bg94', 'de', 1, 'https://ror.org/04j55bg94 Bibliothek des Wissenschaftsparks Albert Einstein'),
(45535, 'https://ror.org/04ggfw624', 'en', 1, 'https://ror.org/04ggfw624 Institute of Chemistry, Komi Science Center Коми Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š£Ń€Šž Š ŠŠ'),
(45536, 'https://ror.org/025ejqq45', 'en', 1, 'https://ror.org/025ejqq45 BirdLife International'),
(45537, 'https://ror.org/01p8wcy85', 'en', 1, 'https://ror.org/01p8wcy85 Institute of Economic Forecasting Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°Ń€Š¾Š“Š½Š¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Š½ŠøŃ Российской АкаГемии ŠŠ°ŃƒŠŗ'),
(45538, 'https://ror.org/028m66c44', 'en', 1, 'https://ror.org/028m66c44 Donetsk Institute for Physics and Engineering named after O.O. Galkin Донецкий физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. А.А.Галкина'),
(45539, 'https://ror.org/039hpv827', 'en', 1, 'https://ror.org/039hpv827 Institute of Forest Science Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š»ŠµŃŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(45540, 'https://ror.org/01gqnz112', 'en', 1, 'https://ror.org/01gqnz112 Vinogradov Institute of Geochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геохимии им. А.П. ВинограГова Š”Šž Š ŠŠ'),
(45541, 'https://ror.org/017jh6627', 'en', 1, 'https://ror.org/017jh6627 Center for the Advancement of Natural Discoveries using Light Emission'),
(45542, 'https://ror.org/03b1v3160', 'en', 1, 'https://ror.org/03b1v3160 Zavaritsky Institute of Geology and Geochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° геологии Šø геохимии им. акаГемика А.Š. Заварицкого'),
(45543, 'https://ror.org/01j6zr344', 'en', 1, 'https://ror.org/01j6zr344 Ministry of Environment'),
(45544, 'https://ror.org/04qsp9f77', 'en', 1, 'https://ror.org/04qsp9f77 Catholic University Institute of Buea'),
(45545, 'https://ror.org/02v3q4f93', 'en', 1, 'https://ror.org/02v3q4f93 Center for Environmental and Geographic Information Services'),
(45546, 'https://ror.org/05skghf24', 'en', 1, 'https://ror.org/05skghf24 Institute of Geology Ufa Scientific Center Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Уфимского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Š ŠŠ'),
(45547, 'https://ror.org/00yxgk394', 'es', 1, 'https://ror.org/00yxgk394 ecOceƔnica'),
(45548, 'https://ror.org/00aq0fx21', 'es', 1, 'https://ror.org/00aq0fx21 Centro para la Investigación en Sistemas Sostenibles de Producción Agropecuaria'),
(45549, 'https://ror.org/04wbz7w60', 'en', 1, 'https://ror.org/04wbz7w60 Institute of History of Material Culture Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»ŃŒŠ½Š¾Š¹ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Š ŠŠ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(45550, 'https://ror.org/01qt3dj82', 'en', 1, 'https://ror.org/01qt3dj82 Institute of Immunology and Physiology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иммунологии Šø физиологии Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(45551, 'https://ror.org/05wbh2085', 'en', 1, 'https://ror.org/05wbh2085 Department of Food Technology and Quality Control'),
(45552, 'https://ror.org/05a33r812', 'en', 1, 'https://ror.org/05a33r812 Market Economy Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒĢŃ‚ пробле́м ры́нка Российской АкаГемии наук'),
(45553, 'https://ror.org/02gb9y346', 'fr', 1, 'https://ror.org/02gb9y346 Ɖcole Nationale SupĆ©rieure d''Agriculture'),
(45554, 'https://ror.org/00ggr8w08', 'fr', 1, 'https://ror.org/00ggr8w08 Institut de Technologie Alimentaire'),
(45555, 'https://ror.org/019xk7v05', 'es', 1, 'https://ror.org/019xk7v05 Fundación para la Educación y el Desarrollo Social'),
(45556, 'https://ror.org/00mj88198', 'en', 1, 'https://ror.org/00mj88198 Institute of Natural Resources, Ecology and Cryology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ прироГных Ń€ŠµŃŃƒŃ€ŃŠ¾Š², ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø криологии Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(45557, 'https://ror.org/05sve0f84', 'en', 1, 'https://ror.org/05sve0f84 Fundacion Hondureña de Investigación Agricola Honduras Foundation for Agricultural Research'),
(45558, 'https://ror.org/02nfvtw87', 'es', 1, 'https://ror.org/02nfvtw87 Instituto de Ecologia y SistemƔtica'),
(45559, 'https://ror.org/051c1fs51', 'es', 1, 'https://ror.org/051c1fs51 Fundación Oikos'),
(45560, 'https://ror.org/01tadt133', 'es', 1, 'https://ror.org/01tadt133 Fundación para el Desarrollo de la Ecología'),
(45561, 'https://ror.org/03s28ec08', 'en', 1, 'https://ror.org/03s28ec08 Institute of Precision Mechanics and Control Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем точной механики Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(45562, 'https://ror.org/02np7dp24', 'fr', 1, 'https://ror.org/02np7dp24 Institute Malgache De Recherches AppliquƩes'),
(45563, 'https://ror.org/04j7qp352', 'es', 1, 'https://ror.org/04j7qp352 Foundation for Integral Development Pacific Fundación para el Desarrollo Integral del Pacífico'),
(45564, 'https://ror.org/00wawdr98', 'en', 1, 'https://ror.org/00wawdr98 Kenya Agricultural and Livestock Research Organization'),
(45565, 'https://ror.org/02mx1ea71', 'en', 1, 'https://ror.org/02mx1ea71 Institute of Socio-Political Research Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-политических исслеГований'),
(45566, 'https://ror.org/044xq3s49', 'pt', 1, 'https://ror.org/044xq3s49 Instituto Nacional de Investigação Pesqueira'),
(45567, 'https://ror.org/01mfqa039', 'es', 1, 'https://ror.org/01mfqa039 Fundación Pro Salud y Medio Ambiente'),
(45568, 'https://ror.org/051x4a456', 'en', 1, 'https://ror.org/051x4a456 Institute of Theoretical and Applied Electrodynamics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø приклаГной ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š“ŠøŠ½Š°Š¼ŠøŠŗŠø Š ŠŠ'),
(45569, 'https://ror.org/05n2mzp75', 'en', 1, 'https://ror.org/05n2mzp75 Keystone Foundation'),
(45570, 'https://ror.org/05ab85w40', 'es', 1, 'https://ror.org/05ab85w40 Instituto de Investigaciones AvĆ­colas'),
(45571, 'https://ror.org/0098ak319', 'en', 1, 'https://ror.org/0098ak319 Coconut Research Institute'),
(45572, 'https://ror.org/002vd5g50', 'en', 1, 'https://ror.org/002vd5g50 Research Station of the Russian Academy of Sciences in Bishkek ŠŠ°ŃƒŃ‡Š½Š°Ń ŃŃ‚Š°Š½Ń†ŠøŃ Российской акаГемии наук в Š‘ŠøŃˆŠŗŠµŠŗŠµ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(45573, 'https://ror.org/02qcpws31', 'en', 1, 'https://ror.org/02qcpws31 Ghana Wildlife Society'),
(45574, 'https://ror.org/021appb64', 'en', 1, 'https://ror.org/021appb64 King County Library System'),
(45575, 'https://ror.org/020e8vq13', 'en', 1, 'https://ror.org/020e8vq13 V.V. Vinogradov Russian Language Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŃƒŃŃŠŗŠ¾Š³Š¾ ŃŠ·Ń‹ŠŗŠ° имени Š’. Š’. ВинограГова Š ŠŠ'),
(45576, 'https://ror.org/00aesyf04', 'en', 1, 'https://ror.org/00aesyf04 Glendale Public Library'),
(45577, 'https://ror.org/016nx0z25', 'en', 1, 'https://ror.org/016nx0z25 Government Chemist Laboratory Agency'),
(45578, 'https://ror.org/00swrq011', 'pt', 1, 'https://ror.org/00swrq011 Instituto de Pesquisas Ecológicas'),
(45579, 'https://ror.org/01pq8wx80', 'en', 1, 'https://ror.org/01pq8wx80 Research and Production Complex Technological Centre Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный комплекс «Технологический центр'),
(45580, 'https://ror.org/05ad3wk38', 'en', 1, 'https://ror.org/05ad3wk38 State Research Institute for Restoration Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ реставрации'),
(45581, 'https://ror.org/05k3mgz26', 'en', 1, 'https://ror.org/05k3mgz26 All-Russian Research Institute of Genetics and Farm Animal Breeding Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетики Šø Ń€Š°Š·Š²ŠµŠ“ŠµŠ½ŠøŃ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Ń… животных'),
(45582, 'https://ror.org/043r5t677', 'en', 1, 'https://ror.org/043r5t677 Institute for Sustainable Development'),
(45583, 'https://ror.org/00y6k5y17', 'no_lang_code', 1, 'https://ror.org/00y6k5y17 Gweru Polytechnic Institute'),
(45584, 'https://ror.org/034s8ev31', 'es', 1, 'https://ror.org/034s8ev31 Instituto de Investigaciones en Ciencia y TecnologĆ­a de Materiales'),
(45585, 'https://ror.org/00qwbag55', 'en', 1, 'https://ror.org/00qwbag55 Gwinnett County Public Library'),
(45586, 'https://ror.org/033has646', 'pt', 1, 'https://ror.org/033has646 Instituto MarƩs'),
(45587, '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'),
(45588, 'https://ror.org/02ez6m968', 'es', 1, 'https://ror.org/02ez6m968 Instituto Nacional de Ciencias AgrĆ­colas'),
(45589, 'https://ror.org/05pnsh228', 'en', 1, 'https://ror.org/05pnsh228 Russian Scientific Center of Surgery Российский ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр Š„ŠøŃ€ŃƒŃ€Š³ŠøŠø им. акаГ. Š‘.Š’. ŠŸŠµŃ‚Ń€Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(45590, 'https://ror.org/03sv0ep05', 'en', 1, 'https://ror.org/03sv0ep05 Heilongjiang Academy of Land Reclamation Sciences é»‘é¾™ę±Ÿå†œęž—ē§‘ęŠ€å¤§å­¦'),
(45591, 'https://ror.org/00z8ws214', 'en', 1, 'https://ror.org/00z8ws214 Institute of Materials for Electronics and Magnetism'),
(45592, 'https://ror.org/01q34dp24', 'en', 1, 'https://ror.org/01q34dp24 Povolzhsky Research Institute of Production and Processing of Meat and Dairy Products Поволжский ŠŠ˜Š˜ произвоГства Šø переработки Š¼ŃŃŠ¾Š¼Š¾Š»Š¾Ń‡Š½Š¾Š¹ ŠæŃ€Š¾Š“ŃƒŠŗŃ†ŠøŠø'),
(45593, 'https://ror.org/022ep0273', 'en', 1, 'https://ror.org/022ep0273 Herrick District Library'),
(45594, 'https://ror.org/020ttfd91', 'en', 1, 'https://ror.org/020ttfd91 Malaysian Cocoa Board'),
(45595, 'https://ror.org/02jsvfh24', 'en', 1, 'https://ror.org/02jsvfh24 Federal University Otuoke'),
(45596, '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'),
(45597, 'https://ror.org/0395cmt65', 'en', 1, 'https://ror.org/0395cmt65 Library System of Lancaster County'),
(45598, 'https://ror.org/04dn01t72', 'en', 1, 'https://ror.org/04dn01t72 Field Crops Research Institute'),
(45599, 'https://ror.org/01d08jk87', 'en', 1, 'https://ror.org/01d08jk87 BARKA Foundation'),
(45600, 'https://ror.org/04r5br045', 'no_lang_code', 1, 'https://ror.org/04r5br045 Imation (United States)'),
(45601, 'https://ror.org/040yw9w41', 'mg', 1, 'https://ror.org/040yw9w41 Madagasikara Voakajy'),
(45602, 'https://ror.org/01yhwa418', 'en', 1, 'https://ror.org/01yhwa418 Institute of Micro and Nanotechnology Instituto de Micro y NanotecnologĆ­a'),
(45603, 'https://ror.org/017bwjv47', 'es', 1, 'https://ror.org/017bwjv47 Instituto Boliviano de Ciencia y TecnologĆ­a Nuclear'),
(45604, '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'),
(45605, 'https://ror.org/05h3y9565', 'es', 1, 'https://ror.org/05h3y9565 Instituto Colombiano Agropecuario'),
(45606, 'https://ror.org/00nk4ab75', 'no_lang_code', 1, 'https://ror.org/00nk4ab75 Mfantsiman Girls Secondary School'),
(45607, 'https://ror.org/02hgkrr64', 'en', 1, 'https://ror.org/02hgkrr64 Japan Patent Office 特許庁'),
(45608, 'https://ror.org/03mkjvs49', 'en', 1, 'https://ror.org/03mkjvs49 Jesuit Service Cambodia'),
(45609, 'https://ror.org/0287ba124', 'ms', 1, 'https://ror.org/0287ba124 INFOFISH'),
(45610, 'https://ror.org/03zxkth58', 'en', 1, 'https://ror.org/03zxkth58 Montgomery County Memorial Library System'),
(45611, 'https://ror.org/04sw4z761', 'en', 1, 'https://ror.org/04sw4z761 Moscow Technological Institute'),
(45612, 'https://ror.org/036fkkq18', 'en', 1, 'https://ror.org/036fkkq18 Fortune Institute of Technology å’Œę˜„ęŠ€č”“å­øé™¢'),
(45613, 'https://ror.org/01dmzah58', 'en', 1, 'https://ror.org/01dmzah58 Foundation for Environment Climate and Technology'),
(45614, 'https://ror.org/026k6bc31', 'en', 1, 'https://ror.org/026k6bc31 Mount Prospect Public Library'),
(45615, 'https://ror.org/01zfjxj34', 'es', 1, 'https://ror.org/01zfjxj34 Ministerio de Agricultura y GanaderĆ­a de Costa Rica'),
(45616, 'https://ror.org/014rvs568', 'es', 1, 'https://ror.org/014rvs568 Ministerio de Desarrollo Agropecuario'),
(45617, 'https://ror.org/03dr35a85', 'pt', 1, 'https://ror.org/03dr35a85 Fundação ApolÓnio Salles de Desenvolvimento Educacional'),
(45618, 'https://ror.org/04c466w42', 'en', 1, 'https://ror.org/04c466w42 Mpala Research Center and Wildlife Foundation'),
(45619, 'https://ror.org/05hfhh611', 'en', 1, 'https://ror.org/05hfhh611 Kalamazoo Public Library'),
(45620, 'https://ror.org/04j820197', 'pt', 1, 'https://ror.org/04j820197 Fundação de Amparo à Pesquisa e Extensão UniversitÔria'),
(45621, 'https://ror.org/01457ne20', 'en', 1, 'https://ror.org/01457ne20 Ministry of Agriculture Mechanisation and Irrigation Development'),
(45622, 'https://ror.org/04qnjas92', 'en', 1, 'https://ror.org/04qnjas92 Ministry of Agriculture and Forestry and Food'),
(45623, 'https://ror.org/02exbb429', 'en', 1, 'https://ror.org/02exbb429 Ministry of Agro Industry and Food Security'),
(45624, 'https://ror.org/0349bdx32', 'pt', 1, 'https://ror.org/0349bdx32 Fundação Instituto de Pesca do Estado do Rio de Janeiro'),
(45625, 'https://ror.org/028b28438', 'es', 1, 'https://ror.org/028b28438 Fundacion Biodiversa Colombia'),
(45626, 'https://ror.org/02y05bg81', 'en', 1, 'https://ror.org/02y05bg81 Nigerian Institute For Oil Palm Reasearch'),
(45627, 'https://ror.org/04zpf5j19', 'en', 1, 'https://ror.org/04zpf5j19 Ministry of Agriculture and Livestock'),
(45628, 'https://ror.org/0565tgh20', 'en', 1, 'https://ror.org/0565tgh20 Ministry of Agriculture and Forests'),
(45629, 'https://ror.org/03k6h6357', 'en', 1, 'https://ror.org/03k6h6357 Museum of Malawi'),
(45630, 'https://ror.org/03xr77151', 'en', 1, 'https://ror.org/03xr77151 Myanmar Timber Enterprise'),
(45631, 'https://ror.org/05chjmv84', 'en', 1, 'https://ror.org/05chjmv84 Nigerian Stored Products Research Institute'),
(45632, 'https://ror.org/050f9s475', 'en', 1, 'https://ror.org/050f9s475 NM Sadguru Water and Development Foundation'),
(45633, 'https://ror.org/02vnhrp96', 'en', 1, 'https://ror.org/02vnhrp96 IGAD Sheikh Technical Veterinary School and Reference Centre'),
(45634, 'https://ror.org/001pe6j19', 'es', 1, 'https://ror.org/001pe6j19 Ministerio de GanaderĆ­a Agricultura y Pesca'),
(45635, 'https://ror.org/04rcfgv74', 'en', 1, 'https://ror.org/04rcfgv74 Ministry of Agriculture Forestry and Fisheries įž€įŸ’įžšįžŸįž½įž„įž€įžŸįž·įž€įž˜įŸ’įž˜ įžšįž»įž€įŸ’įžįž¶įž”įŸ’įžšįž˜įž¶įž‰įŸ‹ įž“įž·įž„įž“įŸįžŸįž¶įž‘'),
(45636, 'https://ror.org/02cc83x35', 'en', 1, 'https://ror.org/02cc83x35 Nimbkar Agricultural Research Institute'),
(45637, 'https://ror.org/03m71gb52', 'en', 1, 'https://ror.org/03m71gb52 Bangladesh Sericulture Research and Training Institute'),
(45638, 'https://ror.org/0338wbp74', 'en', 1, 'https://ror.org/0338wbp74 Small Industries Development Organisation'),
(45639, 'https://ror.org/028hbmh41', 'en', 1, 'https://ror.org/028hbmh41 Nashua Public Library'),
(45640, 'https://ror.org/025xz1z61', 'en', 1, 'https://ror.org/025xz1z61 National Agricultural Research Institute'),
(45641, 'https://ror.org/02hz8mm45', 'fr', 1, 'https://ror.org/02hz8mm45 Institut de Recherches Géologiques et Minières Institute of Geological and Mining Research'),
(45642, 'https://ror.org/03tk15k72', 'en', 1, 'https://ror.org/03tk15k72 Ministry of Natural Resources'),
(45643, 'https://ror.org/02c7s8b77', 'en', 1, 'https://ror.org/02c7s8b77 National Archives and Library of Ethiopia'),
(45644, 'https://ror.org/00s2n7q75', 'en', 1, 'https://ror.org/00s2n7q75 Office de l''elevage et des pâturages Office of Livestock and Pasture'),
(45645, 'https://ror.org/00dv34a34', 'en', 1, 'https://ror.org/00dv34a34 National Centre for Genetic Resources and Biotechnology'),
(45646, 'https://ror.org/007zjjv25', 'en', 1, 'https://ror.org/007zjjv25 Monmouth County Library'),
(45647, 'https://ror.org/03qmn8977', 'en', 1, 'https://ror.org/03qmn8977 Operation Wallacea Trust'),
(45648, 'https://ror.org/05vtekv74', 'en', 1, 'https://ror.org/05vtekv74 Montgomery City County Public Library'),
(45649, 'https://ror.org/04p4abm19', 'en', 1, 'https://ror.org/04p4abm19 National Cereals Research Institute'),
(45650, 'https://ror.org/042ww8n14', 'en', 1, 'https://ror.org/042ww8n14 Center for Speech Pathology and Neurorehabilitation Центр паталогии речи Šø нейрореабилитации. Разработка сайта'),
(45651, 'https://ror.org/03ea8hp29', 'fr', 1, 'https://ror.org/03ea8hp29 UniversitƩ d''Agriculture de KƩtou'),
(45652, 'https://ror.org/01b7car24', 'en', 1, 'https://ror.org/01b7car24 Pakistan Nuclear Regulatory Authority پاکستان Ł†ŁŠŲ¤ŁƒŁ„Ų± Ų±ŁŠŚÆŁŠŁ„Ų±Ł¹ŁˆŁ‰ اثھارٹى'),
(45653, 'https://ror.org/01zwme063', 'en', 1, 'https://ror.org/01zwme063 Central Laboratory of the National Veterinary Sanitation Улсын Мал Š­Š¼Š½ŃŠ»ŃŠ³ ŠŃ€ŠøŃƒŠ½ Š¦ŃŠ²Ń€ŠøŠ¹Š½ Төв Лаборатори.'),
(45654, 'https://ror.org/04vc08p32', 'en', 1, 'https://ror.org/04vc08p32 National Defence College Kenya'),
(45655, 'https://ror.org/00em2wb15', 'en', 1, 'https://ror.org/00em2wb15 Palm Beach County Library System'),
(45656, 'https://ror.org/00zrjgm10', 'en', 1, 'https://ror.org/00zrjgm10 State Intellectual Property Office äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶ēŸ„čÆ†äŗ§ęƒå±€'),
(45657, 'https://ror.org/02b8xb410', 'en', 1, 'https://ror.org/02b8xb410 National Food Technology Research Centre'),
(45658, 'https://ror.org/006afd344', 'en', 1, 'https://ror.org/006afd344 Sunnyvale Public Library'),
(45659, 'https://ror.org/05ed6fr34', 'en', 1, 'https://ror.org/05ed6fr34 Peter White Public Library'),
(45660, 'https://ror.org/058yzcs11', 'en', 1, 'https://ror.org/058yzcs11 Tamil Nadu Forest Plantation (India)'),
(45661, 'https://ror.org/00cyam193', 'en', 1, 'https://ror.org/00cyam193 National Institute of Animal Sciences Viện Chăn NuĆ“i'),
(45662, 'https://ror.org/05naf8y09', 'fr', 1, 'https://ror.org/05naf8y09 UniversitƩ Libre du Congo'),
(45663, 'https://ror.org/02nrkxp47', 'en', 1, 'https://ror.org/02nrkxp47 Acapulco Institute of Technology Instituto Tecnológico de Acapulco'),
(45664, 'https://ror.org/01gdpc846', 'es', 1, 'https://ror.org/01gdpc846 Instituto Tecnológico de Apizaco'),
(45665, 'https://ror.org/02w0rjw17', 'es', 1, 'https://ror.org/02w0rjw17 Planta Piloto de Procesos Industriales Microbiológicos'),
(45666, 'https://ror.org/00w0c8s08', 'en', 1, 'https://ror.org/00w0c8s08 National Library of Namibia'),
(45667, 'https://ror.org/00wyj1j88', 'en', 1, 'https://ror.org/00wyj1j88 Poornaprajna Institute of Scientific Research'),
(45668, 'https://ror.org/018fcax10', 'en', 1, 'https://ror.org/018fcax10 Kenya National Library Service'),
(45669, 'https://ror.org/049ps3c72', 'es', 1, 'https://ror.org/049ps3c72 Instituto Tecnológico de Cerro Azul'),
(45670, 'https://ror.org/04hjyd403', 'en', 1, 'https://ror.org/04hjyd403 Prince George''s County Memorial Library System'),
(45671, 'https://ror.org/04ch3q361', 'en', 1, 'https://ror.org/04ch3q361 Centre for Economic and Social Studies'),
(45672, 'https://ror.org/00k6bry75', 'es', 1, 'https://ror.org/00k6bry75 Instituto Tecnológico de Hermosillo'),
(45673, 'https://ror.org/00pjmpv91', 'es', 1, 'https://ror.org/00pjmpv91 Pro Cosara'),
(45674, 'https://ror.org/04fwdjg04', 'es', 1, 'https://ror.org/04fwdjg04 Instituto Tecnológico de Matamoros'),
(45675, 'https://ror.org/004gdd155', 'en', 1, 'https://ror.org/004gdd155 Belize Zoo'),
(45676, 'https://ror.org/0285rch92', 'en', 1, 'https://ror.org/0285rch92 National Zoonoses and Food Hygiene Research Centre'),
(45677, 'https://ror.org/047f7tv05', 'en', 1, 'https://ror.org/047f7tv05 Wildlife Conservation Society Laos'),
(45678, 'https://ror.org/04pnyb473', 'en', 1, 'https://ror.org/04pnyb473 Uganda National Health Research Organisation'),
(45679, 'https://ror.org/021mrbf63', 'id', 1, 'https://ror.org/021mrbf63 Pusat Penelitian dan Pengembangan Peternakan'),
(45680, 'https://ror.org/04np5cf89', 'en', 1, 'https://ror.org/04np5cf89 Tompkins County Public Library'),
(45681, 'https://ror.org/0318awh51', 'en', 1, 'https://ror.org/0318awh51 Ethiopian Environment Protection Authority'),
(45682, 'https://ror.org/04emkcs40', 'en', 1, 'https://ror.org/04emkcs40 Radford University College'),
(45683, 'https://ror.org/00ytjke60', 'en', 1, 'https://ror.org/00ytjke60 Nature Conservation Foundation'),
(45684, 'https://ror.org/02xs4zz34', 'en', 1, 'https://ror.org/02xs4zz34 Nature Uganda'),
(45685, 'https://ror.org/04whk3274', 'no_lang_code', 1, 'https://ror.org/04whk3274 New Britain Palm Oil (Papua New Guinea)'),
(45686, 'https://ror.org/00amn8x39', 'en', 1, 'https://ror.org/00amn8x39 Nehru Foundation for Development'),
(45687, 'https://ror.org/03nf8te12', 'en', 1, 'https://ror.org/03nf8te12 Reading Public Library'),
(45688, 'https://ror.org/00fp8n517', 'en', 1, 'https://ror.org/00fp8n517 Nepal Development Research Institute ą¤Øą„‡ą¤Ŗą¤¾ą¤² विकास ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(45689, 'https://ror.org/00ccnfj96', 'en', 1, 'https://ror.org/00ccnfj96 Regional Information Center for Science and Technology مرکز منطقه ای اطلاع Ų±Ų³Ų§Ł†ŪŒ Ų¹Ł„ŁˆŁ… و ŁŁ†Ų§ŁˆŲ±ŪŒ'),
(45690, 'https://ror.org/01wzq5z79', 'en', 1, 'https://ror.org/01wzq5z79 Nigeria Agricultural Quarantine Service'),
(45691, 'https://ror.org/005qnwq38', 'no_lang_code', 1, 'https://ror.org/005qnwq38 Unilever (Philippines)'),
(45692, 'https://ror.org/045hp3b72', 'en', 1, 'https://ror.org/045hp3b72 Research Institute for Bioscience and Biotechnology'),
(45693, 'https://ror.org/04ey06332', 'en', 1, 'https://ror.org/04ey06332 Research Institute of Animal Husbandry'),
(45694, 'https://ror.org/0413wb785', 'fr', 1, 'https://ror.org/0413wb785 RƩseau MARP'),
(45695, 'https://ror.org/04nrgxn63', 'en', 1, 'https://ror.org/04nrgxn63 Round Rock Public Library'),
(45696, 'https://ror.org/039twjn75', 'no_lang_code', 1, 'https://ror.org/039twjn75 WaterNet Trust'),
(45697, 'https://ror.org/01rh00978', 'en', 1, 'https://ror.org/01rh00978 A. Alfred Taubman Health Care Center'),
(45698, 'https://ror.org/00x8v4m40', 'en', 1, 'https://ror.org/00x8v4m40 Waukegan Public Library'),
(45699, 'https://ror.org/059kt3178', 'en', 1, 'https://ror.org/059kt3178 Rubber Research Institute of Sri Lanka'),
(45700, 'https://ror.org/007kevk58', 'en', 1, 'https://ror.org/007kevk58 Westfield Memorial Library'),
(45701, 'https://ror.org/00h7ny872', 'en', 1, 'https://ror.org/00h7ny872 Rushford Public Library'),
(45702, 'https://ror.org/00t6rqp97', 'en', 1, 'https://ror.org/00t6rqp97 Wildlife Conservation Society Democratic Republic of the Congo'),
(45703, 'https://ror.org/02tj98425', 'de', 1, 'https://ror.org/02tj98425 Aachener Institut für Bauschadensforschung und Angewandte Bauphysik'),
(45704, 'https://ror.org/0553df340', 'no_lang_code', 1, 'https://ror.org/0553df340 S. P. Korolev Rocket and Space Corporation Energia (Russia) Ракетно-ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŗŠ¾Ń€ŠæŠ¾Ń€Š°Ń†ŠøŃ Ā«Š­Š½ŠµŃ€Š³ŠøŃĀ» им. Š”. П. ŠšŠ¾Ń€Š¾Š»Ń‘Š²Š°'),
(45705, 'https://ror.org/02rzzjk74', 'fr', 1, 'https://ror.org/02rzzjk74 Ɖcole Nationale SupĆ©rieure des Mines de Nancy'),
(45706, 'https://ror.org/0276n9116', 'en', 1, 'https://ror.org/0276n9116 Yakub Kolas Central Scientific Library'),
(45707, 'https://ror.org/04f4ybw82', 'en', 1, 'https://ror.org/04f4ybw82 Schlow Centre Region Library'),
(45708, 'https://ror.org/04fzpsa91', 'en', 1, 'https://ror.org/04fzpsa91 Ventura County Library'),
(45709, 'https://ror.org/0400tr590', 'no_lang_code', 1, 'https://ror.org/0400tr590 BioAxis DNA Research Centre (India)'),
(45710, 'https://ror.org/02v4v1j69', 'en', 1, 'https://ror.org/02v4v1j69 Gastro Obeso Center'),
(45711, 'https://ror.org/04ewj8026', 'en', 1, 'https://ror.org/04ewj8026 Advanced Center for Orthopedics'),
(45712, 'https://ror.org/02zw4ef94', 'en', 1, 'https://ror.org/02zw4ef94 Sam Moyo African Institute for Agrarian Studies'),
(45713, 'https://ror.org/01ptjzx80', 'en', 1, 'https://ror.org/01ptjzx80 Birmingham Research Park'),
(45714, 'https://ror.org/01z2vqa26', 'en', 1, 'https://ror.org/01z2vqa26 Centre for Systems Philosophy'),
(45715, 'https://ror.org/05bgj7h65', 'en', 1, 'https://ror.org/05bgj7h65 Center for Business Studies'),
(45716, 'https://ror.org/00tqpxw66', 'en', 1, 'https://ror.org/00tqpxw66 Bon Secours DePaul Medical Center'),
(45717, 'https://ror.org/02nq6sy34', 'de', 1, 'https://ror.org/02nq6sy34 Akademie für Gesundheitsberufe'),
(45718, 'https://ror.org/0471j8634', 'en', 1, 'https://ror.org/0471j8634 Almishkat Centre for Research Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ų“ŁƒŲ§Ų© للبحث'),
(45719, 'https://ror.org/02xgrds91', 'de', 1, 'https://ror.org/02xgrds91 Amedes MVZ Hamburg'),
(45720, 'https://ror.org/001brd097', 'en', 1, 'https://ror.org/001brd097 American School of Kuwait'),
(45721, 'https://ror.org/05118ff02', 'en', 1, 'https://ror.org/05118ff02 East Asia Research'),
(45722, 'https://ror.org/02704zf98', 'de', 1, 'https://ror.org/02704zf98 Analytische Laboratorium Analytisches Laboratorium'),
(45723, 'https://ror.org/03p26k524', 'en', 1, 'https://ror.org/03p26k524 Animals and Society Institute'),
(45724, 'https://ror.org/00gj8pr18', 'de', 1, 'https://ror.org/00gj8pr18 StƤdtisches Klinikum Dessau'),
(45725, 'https://ror.org/007d4jn78', 'en', 1, 'https://ror.org/007d4jn78 Institute of Philosophy 哲学研究所'),
(45726, 'https://ror.org/01ym1qc81', 'de', 1, 'https://ror.org/01ym1qc81 Anton Proksch Institut'),
(45727, 'https://ror.org/04m2xd811', 'en', 1, 'https://ror.org/04m2xd811 Bryn Mawr Skin & Cancer Institute'),
(45728, 'https://ror.org/01me5n293', 'en', 1, 'https://ror.org/01me5n293 BTI Biotechnology Institute'),
(45729, 'https://ror.org/02evvbm94', 'en', 1, 'https://ror.org/02evvbm94 Emerge'),
(45730, 'https://ror.org/040hkct30', 'no_lang_code', 1, 'https://ror.org/040hkct30 Applied Academics (United States)'),
(45731, 'https://ror.org/03xrabt76', 'en', 1, 'https://ror.org/03xrabt76 Emirates Diplomatic Academy'),
(45732, 'https://ror.org/054r35483', 'en', 1, 'https://ror.org/054r35483 Institute of Law 中国法学网'),
(45733, 'https://ror.org/04cdebn34', 'no_lang_code', 1, 'https://ror.org/04cdebn34 ProCure (United States)'),
(45734, 'https://ror.org/03kbkcf70', 'en', 1, 'https://ror.org/03kbkcf70 Episcopal School of Dallas'),
(45735, 'https://ror.org/054n9aa03', 'en', 1, 'https://ror.org/054n9aa03 Arab League Educational, Cultural and Scientific Organization المنظمة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ…'),
(45736, 'https://ror.org/0232zwb84', 'fr', 1, 'https://ror.org/0232zwb84 CIRP College International pour la Recherche en Productique'),
(45737, 'https://ror.org/0486ne794', 'en', 1, 'https://ror.org/0486ne794 Cambodia Development Resource Institute'),
(45738, 'https://ror.org/04p4ws960', 'en', 1, 'https://ror.org/04p4ws960 Asian Development Bank Institute ć‚¢ć‚øć‚¢é–‹ē™ŗéŠ€č”Œē ”ē©¶ę‰€'),
(45739, 'https://ror.org/01p1sp487', 'en', 1, 'https://ror.org/01p1sp487 Department of Ocean Development'),
(45740, 'https://ror.org/05xdpay59', 'en', 1, 'https://ror.org/05xdpay59 Climate Resilience Infrastructure Development Facility'),
(45741, 'https://ror.org/01wf5jq34', 'en', 1, 'https://ror.org/01wf5jq34 Australian Institute of Business'),
(45742, 'https://ror.org/01f0q1x96', 'no_lang_code', 1, 'https://ror.org/01f0q1x96 EVRAZ (Canada)'),
(45743, 'https://ror.org/009tscw31', 'en', 1, 'https://ror.org/009tscw31 Institut für Stadt- und Regionalforschung Institute for Urban and Regional Research');
INSERT INTO `rors` VALUES
(45744, 'https://ror.org/02r9ych18', 'pt', 1, 'https://ror.org/02r9ych18 Espregueira Mendes Clinic'),
(45745, 'https://ror.org/00hxspe04', 'ca', 1, 'https://ror.org/00hxspe04 ClĆ­nica Girona'),
(45746, 'https://ror.org/04ymjyh53', 'en', 1, 'https://ror.org/04ymjyh53 Foetal Alcohol Spectrum Disorders Clinic'),
(45747, 'https://ror.org/02p9evb60', 'en', 1, 'https://ror.org/02p9evb60 Clinical Solutions'),
(45748, 'https://ror.org/01fhp6n41', 'de', 1, 'https://ror.org/01fhp6n41 Forschungsinstitut für Logistik'),
(45749, 'https://ror.org/05trpty44', 'fr', 1, 'https://ror.org/05trpty44 Clinique Saint Jean Languedoc'),
(45750, '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"'),
(45751, 'https://ror.org/0354jg349', 'en', 1, 'https://ror.org/0354jg349 Collective Leadership Institute'),
(45752, 'https://ror.org/01vq6b190', 'en', 1, 'https://ror.org/01vq6b190 Professional Examination Service'),
(45753, 'https://ror.org/03hgh1k95', 'fr', 1, 'https://ror.org/03hgh1k95 CollĆØge de Physique et de Philosophie'),
(45754, 'https://ror.org/02jj1fb93', 'en', 1, 'https://ror.org/02jj1fb93 Berlin Graduate School for Transnational Studies'),
(45755, 'https://ror.org/02vx2hk50', 'en', 1, 'https://ror.org/02vx2hk50 Center for Integrated Smart Sensors'),
(45756, 'https://ror.org/00gj51q98', 'de', 1, 'https://ror.org/00gj51q98 Frankfurter Institut für Nachhaltige Entwicklung'),
(45757, 'https://ror.org/02s3q5660', 'en', 1, 'https://ror.org/02s3q5660 Concordia Hospital'),
(45758, 'https://ror.org/00pgdk225', 'de', 1, 'https://ror.org/00pgdk225 Deutsche PalliativStiftung'),
(45759, 'https://ror.org/01c442234', 'it', 1, 'https://ror.org/01c442234 Istituzione delle Biblioteche di Roma'),
(45760, 'https://ror.org/04krkan79', 'es', 1, 'https://ror.org/04krkan79 Fundación Miguel Lillo'),
(45761, 'https://ror.org/01qgd7x17', 'de', 1, 'https://ror.org/01qgd7x17 Deutsche Schmerzgesellschaft'),
(45762, 'https://ror.org/001ee4r52', 'en', 1, 'https://ror.org/001ee4r52 Center for Studies on Sustainable Luxury Centro de Estudios para el Lujo Sustentable'),
(45763, 'https://ror.org/02fn9c498', 'de', 1, 'https://ror.org/02fn9c498 Deutsches Beratungszentrum für Hygiene'),
(45764, 'https://ror.org/01ank1e73', 'de', 1, 'https://ror.org/01ank1e73 Deutsches Kupferinstitut Berufsverband'),
(45765, 'https://ror.org/02652az59', 'en', 1, 'https://ror.org/02652az59 Control Union Academy'),
(45766, 'https://ror.org/04aetd961', 'en', 1, 'https://ror.org/04aetd961 Development Bank of Japan ę—„ęœ¬ę”æē­–ęŠ•č³‡éŠ€č”Œ'),
(45767, 'https://ror.org/00xx5qr89', 'en', 1, 'https://ror.org/00xx5qr89 Central State Medical Academy Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(45768, 'https://ror.org/02mcad149', 'en', 1, 'https://ror.org/02mcad149 Florida Craniofacial Institute'),
(45769, 'https://ror.org/015ktc526', 'de', 1, 'https://ror.org/015ktc526 Forschungsgemeinschaft Werkzeuge und Werkstoffe'),
(45770, 'https://ror.org/056jghs88', 'en', 1, 'https://ror.org/056jghs88 Cyprus Pedagogical Institute Ī Ī‘Ī™Ī”Ī‘Ī“Ī©Ī“Ī™ĪšĪŸ Ī™ĪĪ£Ī¤Ī™Ī¤ĪŸĪ„Ī¤ĪŸ Κ΄ΠΔΟ΄'),
(45771, 'https://ror.org/03v2aht94', 'de', 1, 'https://ror.org/03v2aht94 Franziskushospital Aachen'),
(45772, 'https://ror.org/0067q8j88', 'id', 1, 'https://ror.org/0067q8j88 Rumah Sakit Dokter Soetomo'),
(45773, 'https://ror.org/027k8ke79', 'en', 1, 'https://ror.org/027k8ke79 Show-Me Institute'),
(45774, 'https://ror.org/04tn8zp39', 'en', 1, 'https://ror.org/04tn8zp39 Centre for Remote Health'),
(45775, 'https://ror.org/02ea4kj06', 'en', 1, 'https://ror.org/02ea4kj06 De Borda Institute'),
(45776, 'https://ror.org/03sear378', 'fr', 1, 'https://ror.org/03sear378 Fondation Travail-UniversitƩ'),
(45777, 'https://ror.org/053y5dz28', 'no_lang_code', 1, 'https://ror.org/053y5dz28 GD Goenka University'),
(45778, 'https://ror.org/044ahzg50', 'no_lang_code', 1, 'https://ror.org/044ahzg50 Gazprom (Germany)'),
(45779, 'https://ror.org/05gxhfq53', 'de', 1, 'https://ror.org/05gxhfq53 Hochschule der Polizei Rheinland Pfalz'),
(45780, 'https://ror.org/05he96s21', 'de', 1, 'https://ror.org/05he96s21 Malteser Zentrale'),
(45781, 'https://ror.org/005v44f98', 'fr', 1, 'https://ror.org/005v44f98 Centre d''Ɖchographie de la Femme et du Fœtus'),
(45782, 'https://ror.org/0136hcg09', 'en', 1, 'https://ror.org/0136hcg09 Immunotherapy Centre for Prevention of Repeated Miscarriages'),
(45783, 'https://ror.org/02hdqvp39', 'en', 1, 'https://ror.org/02hdqvp39 Institute for Systems and Technologies of Information, Control and Communication'),
(45784, 'https://ror.org/04tenkb98', 'en', 1, 'https://ror.org/04tenkb98 German Graduate School of Management and Law'),
(45785, 'https://ror.org/02st7b426', 'en', 1, 'https://ror.org/02st7b426 Dr Youth Clinic 박사 ģ²­ģ†Œė…„ 큓리닉'),
(45786, 'https://ror.org/01wdqpj36', 'en', 1, 'https://ror.org/01wdqpj36 Drylands Research'),
(45787, 'https://ror.org/006sha924', 'en', 1, 'https://ror.org/006sha924 Institute of Public Enterprise'),
(45788, 'https://ror.org/03natzt93', 'no_lang_code', 1, 'https://ror.org/03natzt93 Apex Tool Group (Taiwan)'),
(45789, 'https://ror.org/02bgfav21', 'de', 1, 'https://ror.org/02bgfav21 Institut für angewandte Arbeitswissenschaft'),
(45790, 'https://ror.org/04fjdwh53', 'de', 1, 'https://ror.org/04fjdwh53 Institut für Krankenhaushygiene & Infektionsprävention'),
(45791, 'https://ror.org/00h32kx47', 'en', 1, 'https://ror.org/00h32kx47 Institute of Town Planners India'),
(45792, 'https://ror.org/01hmams76', 'de', 1, 'https://ror.org/01hmams76 Klinik Friedenweiler'),
(45793, 'https://ror.org/05fw3y914', 'en', 1, 'https://ror.org/05fw3y914 Global Institute for Quality Education'),
(45794, 'https://ror.org/01j8dxy82', 'en', 1, 'https://ror.org/01j8dxy82 Global Science and Technology Forum'),
(45795, 'https://ror.org/040b3ts84', 'de', 1, 'https://ror.org/040b3ts84 Institut für Medien- und Kommunikationspolitik'),
(45796, 'https://ror.org/00nm1ws09', 'de', 1, 'https://ror.org/00nm1ws09 Institut für Nachhaltiges Management'),
(45797, 'https://ror.org/0070x6033', 'de', 1, 'https://ror.org/0070x6033 Klinik Preetz'),
(45798, 'https://ror.org/04t8w3r40', 'es', 1, 'https://ror.org/04t8w3r40 Servicio Geológico Minero Argentino'),
(45799, 'https://ror.org/00av44s75', 'pt', 1, 'https://ror.org/00av44s75 Hospital do Servidor PĆŗblico Municipal'),
(45800, 'https://ror.org/03tv2a598', 'en', 1, 'https://ror.org/03tv2a598 Green Infrastructure Center'),
(45801, 'https://ror.org/037pq2a43', 'de', 1, 'https://ror.org/037pq2a43 Klinikum Dortmund'),
(45802, 'https://ror.org/01kkgy069', 'de', 1, 'https://ror.org/01kkgy069 Klinikum Itzehoe'),
(45803, 'https://ror.org/029bg2w02', 'de', 1, 'https://ror.org/029bg2w02 Institut für Salutogenese'),
(45804, 'https://ror.org/01vtpxj52', 'de', 1, 'https://ror.org/01vtpxj52 Institut für Stadtforschung und Strukturpolitik'),
(45805, 'https://ror.org/04z8qf553', 'en', 1, 'https://ror.org/04z8qf553 HPO Research Group'),
(45806, 'https://ror.org/01dan7p53', 'en', 1, 'https://ror.org/01dan7p53 Guangzhou Vocational College of Science and Technology å¹æå·žē§‘ęŠ€čŒäøšęŠ€ęœÆå­¦é™¢'),
(45807, 'https://ror.org/00k01hv15', 'de', 1, 'https://ror.org/00k01hv15 Regionalverbund kirchlicher KrankenhƤuser'),
(45808, 'https://ror.org/03ms3yr93', 'en', 1, 'https://ror.org/03ms3yr93 Institute for Altitude Medicine'),
(45809, 'https://ror.org/01c3b5v35', 'en', 1, 'https://ror.org/01c3b5v35 International Institute of Advanced Islamic Studies'),
(45810, 'https://ror.org/022b5tw91', 'en', 1, 'https://ror.org/022b5tw91 Hans Bƶckler Foundation Hans-Bƶckler-Stiftung'),
(45811, 'https://ror.org/03b6kz105', 'en', 1, 'https://ror.org/03b6kz105 Integrative Medicine Institute'),
(45812, 'https://ror.org/02xwjjw58', 'de', 1, 'https://ror.org/02xwjjw58 Agaplesion Bethesda Krankenhaus'),
(45813, 'https://ror.org/014vqnj59', 'de', 1, 'https://ror.org/014vqnj59 Krankenhaus der Augustinerinnen'),
(45814, 'https://ror.org/03xn6hx74', 'en', 1, 'https://ror.org/03xn6hx74 Institute for Resource Analysis and Policy'),
(45815, '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'),
(45816, 'https://ror.org/01nbps758', 'en', 1, 'https://ror.org/01nbps758 International University of Cooperative Education Internationale Berufsakademie'),
(45817, 'https://ror.org/01j495q26', 'en', 1, 'https://ror.org/01j495q26 Central Institute for Research on Cattle'),
(45818, 'https://ror.org/04pr1tr38', 'en', 1, 'https://ror.org/04pr1tr38 International Food Protection Training Institute'),
(45819, 'https://ror.org/0582szf05', 'en', 1, 'https://ror.org/0582szf05 International Institute for Child Rights and Development'),
(45820, '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'),
(45821, 'https://ror.org/035v0k921', 'en', 1, 'https://ror.org/035v0k921 Hemalata Hospitals and Research Centre'),
(45822, 'https://ror.org/044ytah36', 'en', 1, 'https://ror.org/044ytah36 Waterloo Institute for Disaster Management'),
(45823, 'https://ror.org/006n22802', 'en', 1, 'https://ror.org/006n22802 International School of Europe'),
(45824, 'https://ror.org/04m3hsp39', 'en', 1, 'https://ror.org/04m3hsp39 Institute for Competitive Recruiting'),
(45825, 'https://ror.org/02w72df16', 'de', 1, 'https://ror.org/02w72df16 Institut für Handelsforschung'),
(45826, 'https://ror.org/00w56r274', 'en', 1, 'https://ror.org/00w56r274 IPAG Business School Institut de PrƩparation Ơ l''Administration et Ơ la Gestion'),
(45827, 'https://ror.org/01b73x603', 'en', 1, 'https://ror.org/01b73x603 Institute of Ethnology and Folklore Studies with Ethnographic Museum Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ за ŠµŃ‚Š½Š¾Š»Š¾Š³ŠøŃ Šø фолклористика с Етнографски музей при Š‘ŠŠ'),
(45828, 'https://ror.org/03x7xkr71', 'en', 1, 'https://ror.org/03x7xkr71 Institute of Sciences of Food Production Istituto di Scienze delle Produzioni Alimentari'),
(45829, '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'),
(45830, 'https://ror.org/03120tz42', 'en', 1, 'https://ror.org/03120tz42 Menasseh Ben Israel Institute'),
(45831, 'https://ror.org/055z45c63', 'de', 1, 'https://ror.org/055z45c63 Immanuel Krankenhaus'),
(45832, 'https://ror.org/02wxw4x45', 'it', 1, 'https://ror.org/02wxw4x45 Institute for Electromagnetic Sensing of the Environment Istituto per il Rilevamento Elettromagnetico dell''Ambiente'),
(45833, 'https://ror.org/02gdcn153', 'en', 1, 'https://ror.org/02gdcn153 Institute of Informatics and Telematics Istituto di Informatica e Telematica'),
(45834, 'https://ror.org/05gabw081', 'de', 1, 'https://ror.org/05gabw081 Immunologie-Zentrum Zürich'),
(45835, 'https://ror.org/046ka3r30', 'es', 1, 'https://ror.org/046ka3r30 Instituto Mexicano de TecnologĆ­a del Agua'),
(45836, 'https://ror.org/010vv9h56', 'en', 1, 'https://ror.org/010vv9h56 London Studio Centre'),
(45837, 'https://ror.org/05pecte80', 'en', 1, 'https://ror.org/05pecte80 Jersey Shore University Medical Center'),
(45838, 'https://ror.org/00kakgh93', 'en', 1, 'https://ror.org/00kakgh93 Institute of Microbiology and Biotechnology Institutul de Microbiologie si Biotehnologie'),
(45839, 'https://ror.org/052qwkx28', 'de', 1, 'https://ror.org/052qwkx28 Institut für Mikroökologie'),
(45840, 'https://ror.org/02p3csg43', 'it', 1, 'https://ror.org/02p3csg43 I.T.I. Lattanzio Istituto di Istruzione Superiore I.T.C. Di Vittorio'),
(45841, 'https://ror.org/011gpzb03', 'en', 1, 'https://ror.org/011gpzb03 Institute of National Economy'),
(45842, 'https://ror.org/001d8ym38', 'en', 1, 'https://ror.org/001d8ym38 Jon Peddie Research'),
(45843, 'https://ror.org/01zqqhe44', 'en', 1, 'https://ror.org/01zqqhe44 Indian Institute of Business Management Patna'),
(45844, 'https://ror.org/04r13k538', 'en', 1, 'https://ror.org/04r13k538 Most Sacred Heart of Jesus Cardiology and Valvular Institute'),
(45845, 'https://ror.org/04etfv811', 'en', 1, 'https://ror.org/04etfv811 Indian Institute of Management Shillong ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, शिलांग'),
(45846, 'https://ror.org/02nn9qb77', 'no_lang_code', 1, 'https://ror.org/02nn9qb77 Oberon (Netherlands)'),
(45847, 'https://ror.org/00k900h94', 'en', 1, 'https://ror.org/00k900h94 Queen Jadwiga Foundation'),
(45848, 'https://ror.org/01t69t080', 'en', 1, 'https://ror.org/01t69t080 Instituto Oncologico Nacional National Oncologic Institute'),
(45849, 'https://ror.org/016mey390', 'no_lang_code', 1, 'https://ror.org/016mey390 Rafael Advanced Defense Systems (Israel) רפאל - ×ž×¢×Ø×›×•×Ŗ לחימה ×ž×Ŗ×§×“×ž×•×Ŗ בע"מ'),
(45850, 'https://ror.org/05mpm3k87', 'en', 1, 'https://ror.org/05mpm3k87 Ontario Forest Research Institute'),
(45851, 'https://ror.org/00xy95422', 'de', 1, 'https://ror.org/00xy95422 Archiv der Jugendkulturen'),
(45852, 'https://ror.org/043nrmc14', 'en', 1, 'https://ror.org/043nrmc14 Oral Facial Surgery Institution'),
(45853, 'https://ror.org/0371nm930', 'no_lang_code', 1, 'https://ror.org/0371nm930 Muse Research and Development (United States)'),
(45854, 'https://ror.org/05fgx1m39', 'no_lang_code', 1, 'https://ror.org/05fgx1m39 Orient Capital (China)'),
(45855, 'https://ror.org/01wvk2989', 'de', 1, 'https://ror.org/01wvk2989 REFA Bundesverband Reichsausschuß für Arbeitszeitermittlung'),
(45856, 'https://ror.org/03hm0sm79', 'en', 1, 'https://ror.org/03hm0sm79 National Council of Applied Economic Research'),
(45857, 'https://ror.org/02v01cg08', 'es', 1, 'https://ror.org/02v01cg08 Unidad de Cirugía Artroscópica'),
(45858, 'https://ror.org/050m4ps22', 'en', 1, 'https://ror.org/050m4ps22 Sri Dharmasthala Manjunatheshwara Educational Society ą²Žą²øą³.ಔಿ.ą²Žą²‚ ą²¶ą³†ą³–ą²•ą³ą²·ą²£ą²æą²• ą²øą²‚ą²øą³ą²„ą³†'),
(45859, 'https://ror.org/01wrt1c44', 'en', 1, 'https://ror.org/01wrt1c44 National Democratic Institute'),
(45860, 'https://ror.org/00ae67970', 'en', 1, 'https://ror.org/00ae67970 National Environmental Agency įƒ’įƒįƒ įƒ”įƒ›įƒįƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒ”įƒįƒįƒ’įƒ”įƒœįƒ¢įƒ'),
(45861, 'https://ror.org/03zy2nt21', 'en', 1, 'https://ror.org/03zy2nt21 National Institute of Urban Affairs'),
(45862, 'https://ror.org/03r6vc108', 'en', 1, 'https://ror.org/03r6vc108 National Maritime Foundation'),
(45863, 'https://ror.org/01bb7mj11', 'de', 1, 'https://ror.org/01bb7mj11 Ostalb-Klinikum Aalen'),
(45864, 'https://ror.org/03aervg81', 'de', 1, 'https://ror.org/03aervg81 Klinik für Psychosomatik'),
(45865, 'https://ror.org/032hv6w38', 'en', 1, 'https://ror.org/032hv6w38 Agricultural Research & Education Organization'),
(45866, 'https://ror.org/00zxymv65', 'en', 1, 'https://ror.org/00zxymv65 National Institute of Integrative Medicine'),
(45867, 'https://ror.org/00z4w4f29', 'en', 1, 'https://ror.org/00z4w4f29 Oxford Research Group'),
(45868, 'https://ror.org/04eytv118', 'en', 1, 'https://ror.org/04eytv118 Shenandoah Astronomical Society'),
(45869, 'https://ror.org/04qva2v49', 'de', 1, 'https://ror.org/04qva2v49 LVR-Klinik für Orthopädie Viersen'),
(45870, 'https://ror.org/00f4t6397', 'en', 1, 'https://ror.org/00f4t6397 Pain and Headache Center'),
(45871, 'https://ror.org/00mc41d88', 'en', 1, 'https://ror.org/00mc41d88 Shoreline Public Schools'),
(45872, 'https://ror.org/04k2gzh89', 'en', 1, 'https://ror.org/04k2gzh89 Australia and New Zealand School of Government'),
(45873, 'https://ror.org/05n8e2826', 'en', 1, 'https://ror.org/05n8e2826 National Power Training Institute ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤§ą„ą¤¤ ą¤Ŗą„ą¤°ą¤¶ą¤æą¤•ą„ą¤·ą¤£ ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(45874, 'https://ror.org/01kd5wn07', 'no_lang_code', 1, 'https://ror.org/01kd5wn07 Xperi (Ireland)'),
(45875, 'https://ror.org/01gtsa866', 'en', 1, 'https://ror.org/01gtsa866 Institute of Biosciences and Bioresources Istituto di Bioscienze e Biorisorse'),
(45876, 'https://ror.org/026s4j722', 'en', 1, 'https://ror.org/026s4j722 Russian Academy of Education России Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(45877, 'https://ror.org/050b8h122', 'en', 1, 'https://ror.org/050b8h122 Parkinson''s Clinic of Eastern Toronto & Movement Disorders Centre'),
(45878, 'https://ror.org/03vyd8n59', 'en', 1, 'https://ror.org/03vyd8n59 Pontifical Academy of Sciences Pontificia Academia Scientiarum Pontificia accademia delle scienze'),
(45879, 'https://ror.org/02dnvjf04', 'en', 1, 'https://ror.org/02dnvjf04 Netherlands Defence Academy'),
(45880, 'https://ror.org/00r17pp94', 'en', 1, 'https://ror.org/00r17pp94 Physiology Educational Research Consortium'),
(45881, 'https://ror.org/01h3yks88', 'en', 1, 'https://ror.org/01h3yks88 New York Institute of Technology'),
(45882, 'https://ror.org/052a20h63', 'no_lang_code', 1, 'https://ror.org/052a20h63 Samsung (Brazil)'),
(45883, 'https://ror.org/02pthyn77', 'en', 1, 'https://ror.org/02pthyn77 New York University Florence'),
(45884, 'https://ror.org/00mbfhq81', 'en', 1, 'https://ror.org/00mbfhq81 Newcastle University Singapore'),
(45885, 'https://ror.org/00d958b97', 'en', 1, 'https://ror.org/00d958b97 Sarvodaya Fertility & IVF Centre'),
(45886, 'https://ror.org/004qxzr21', 'en', 1, 'https://ror.org/004qxzr21 Theodor Fliedner Foundation Theodor Fliedner Stiftung'),
(45887, 'https://ror.org/00hrhm488', 'en', 1, 'https://ror.org/00hrhm488 Practical Robotics Institute Austria'),
(45888, 'https://ror.org/028ttt579', 'de', 1, 'https://ror.org/028ttt579 Thüringer Landesanstalt für Landwirtschaft'),
(45889, 'https://ror.org/02et85x78', 'sr', 1, 'https://ror.org/02et85x78 Sportska Akademija Beograd'),
(45890, 'https://ror.org/03sygh166', 'en', 1, 'https://ror.org/03sygh166 Trust Management Institut'),
(45891, 'https://ror.org/028s4s402', 'en', 1, 'https://ror.org/028s4s402 Sri Aurobindo Institute of Technology'),
(45892, 'https://ror.org/02jhvve98', 'en', 1, 'https://ror.org/02jhvve98 Toorak College'),
(45893, 'https://ror.org/02c7s7e67', 'en', 1, 'https://ror.org/02c7s7e67 Science Teachers Association of Nigeria'),
(45894, 'https://ror.org/050pkwa79', 'no_lang_code', 1, 'https://ror.org/050pkwa79 Tobu Ryoiku Center ę±äŗ¬éƒ½ē«‹ę±éƒØē™‚č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(45895, 'https://ror.org/056mctw68', 'fr', 1, 'https://ror.org/056mctw68 UniversitƩ Constantine 2'),
(45896, 'https://ror.org/04nz98c29', 'fr', 1, 'https://ror.org/04nz98c29 UniversitƩ d''Oran 2'),
(45897, 'https://ror.org/05hb6w248', 'en', 1, 'https://ror.org/05hb6w248 Foreign Service Institute'),
(45898, 'https://ror.org/02npz4170', 'no_lang_code', 1, 'https://ror.org/02npz4170 Nikita Botanical Gardens ŠŠøŠŗŠøŃ‚ŃŠŗŠøŠ¹ ботанический саГ'),
(45899, 'https://ror.org/03sk50y83', 'no_lang_code', 1, 'https://ror.org/03sk50y83 Dart NeuroScience (United States)'),
(45900, 'https://ror.org/05mhg5n73', 'en', 1, 'https://ror.org/05mhg5n73 AlzeCure Foundation'),
(45901, 'https://ror.org/027acbb13', 'en', 1, 'https://ror.org/027acbb13 Government of the Czech Republic VlÔda České republiky'),
(45902, 'https://ror.org/00y728105', 'en', 1, 'https://ror.org/00y728105 Israel Brain Technologies'),
(45903, 'https://ror.org/01sx4nq39', 'en', 1, 'https://ror.org/01sx4nq39 American Epilepsy Society'),
(45904, 'https://ror.org/04ad7pn51', 'en', 1, 'https://ror.org/04ad7pn51 Pancreatic Cancer UK'),
(45905, 'https://ror.org/046vxey93', 'no_lang_code', 1, 'https://ror.org/046vxey93 AmyCard (Russia)'),
(45906, 'https://ror.org/01ga17f59', 'no_lang_code', 1, 'https://ror.org/01ga17f59 Prime Behavior Testing Laboratories (United States)'),
(45907, 'https://ror.org/03f1pm042', 'en', 1, 'https://ror.org/03f1pm042 Ragnar Sƶderberg Foundation'),
(45908, 'https://ror.org/0561tpp86', 'en', 1, 'https://ror.org/0561tpp86 Alzheimer''s Association of Israel'),
(45909, 'https://ror.org/0451xrg20', 'en', 1, 'https://ror.org/0451xrg20 Research, Design and Technology Institute Cable Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ Šø технологический ŠŗŠ°Š±ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(45910, 'https://ror.org/01d0tvs72', 'en', 1, 'https://ror.org/01d0tvs72 Mesothelioma Applied Research Foundation'),
(45911, 'https://ror.org/03ey3qt70', 'no_lang_code', 1, 'https://ror.org/03ey3qt70 Corcept Therapeutics (United States)'),
(45912, 'https://ror.org/02dy2h219', 'en', 1, 'https://ror.org/02dy2h219 State Office for Nuclear Safety StĆ”tnĆ­ Uřad pro Jadernou Bezpečnost'),
(45913, 'https://ror.org/04kgngk14', 'en', 1, 'https://ror.org/04kgngk14 State Mining Administration Český bÔňský ĆŗÅ™ad'),
(45914, 'https://ror.org/045smbc57', 'en', 1, 'https://ror.org/045smbc57 Ministerstvo pro místní rozvoj České republiky Ministry of Regional Development'),
(45915, 'https://ror.org/00h3t4h60', 'en', 1, 'https://ror.org/00h3t4h60 Ministerstvo zahraničnĆ­ch věcĆ­ ČeskĆ© republiky Ministry of Foreign Affairs'),
(45916, 'https://ror.org/0531qh590', 'en', 1, 'https://ror.org/0531qh590 Ministerstvo spravedlnosti České republiky Ministry of Justice'),
(45917, 'https://ror.org/02gp35626', 'no_lang_code', 1, 'https://ror.org/02gp35626 Doka-Gene (Russia)'),
(45918, 'https://ror.org/00dhbnv07', 'en', 1, 'https://ror.org/00dhbnv07 Moscow Center For Continuous Mathematical Education Московский центр непрерывного математического Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(45919, 'https://ror.org/00cq0fp06', 'en', 1, 'https://ror.org/00cq0fp06 Institute of Physiology and Basic Medicine Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š°Ń Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾ физиологии Šø Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины'),
(45920, 'https://ror.org/048tnm037', 'en', 1, 'https://ror.org/048tnm037 Institute of Biochemical Physics NM Emanuel Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимической физики Š ŠŠ'),
(45921, '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'),
(45922, 'https://ror.org/010ftx126', 'en', 1, 'https://ror.org/010ftx126 Institute of Thermal Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплофизики Š£Ń€Šž Š ŠŠ'),
(45923, 'https://ror.org/00ghqbv36', 'no_lang_code', 1, 'https://ror.org/00ghqbv36 Vivreon Biosciences (United States)'),
(45924, 'https://ror.org/02kmet255', 'en', 1, 'https://ror.org/02kmet255 Institute for Systems Analysis Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ФГУ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ системного анализа Š ŠŠ'),
(45925, 'https://ror.org/000146m32', 'no_lang_code', 1, 'https://ror.org/000146m32 CoMentis (United States)'),
(45926, 'https://ror.org/04rbcv404', 'en', 1, 'https://ror.org/04rbcv404 Supply Chain Competence Center (Germany)'),
(45927, 'https://ror.org/05kqvrr98', 'en', 1, 'https://ror.org/05kqvrr98 Central Geological Survey, MOEA ē¶“ęæŸéƒØäø­å¤®åœ°č³ŖčŖæęŸ„ę‰€'),
(45928, 'https://ror.org/05y88cx07', 'en', 1, 'https://ror.org/05y88cx07 Sydney Orthopaedic Research Institute'),
(45929, 'https://ror.org/01aspja26', 'en', 1, 'https://ror.org/01aspja26 University of the West Indies'),
(45930, 'https://ror.org/017zkwz61', 'en', 1, 'https://ror.org/017zkwz61 University Centre Saint-Ignatius Antwerp'),
(45931, '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'),
(45932, 'https://ror.org/02h5vx773', 'en', 1, 'https://ror.org/02h5vx773 Marine Advanced Technology Education'),
(45933, 'https://ror.org/01d582b74', 'en', 1, 'https://ror.org/01d582b74 National Transportation Safety Board'),
(45934, 'https://ror.org/03b1cg663', 'en', 1, 'https://ror.org/03b1cg663 National Mapping and Resource Information Authority Pambansang Pangasiwaan sa Pagmamapa at Impormasyon sa Yaman'),
(45935, 'https://ror.org/016pv1z16', 'en', 1, 'https://ror.org/016pv1z16 Video Pool Media Arts Centre'),
(45936, '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'),
(45937, 'https://ror.org/043m3hn34', 'no_lang_code', 1, 'https://ror.org/043m3hn34 Vivekananda Parvatiya Krishi Anusandhan Sansthan'),
(45938, 'https://ror.org/03v48ps49', 'en', 1, 'https://ror.org/03v48ps49 O.Ya. Usikov Institute for Radiophysics and Electronics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГіофізики та електроніки ім. Šž. ŠÆ Усикова ŠŠŠ України'),
(45939, 'https://ror.org/05tyzry72', 'de', 1, 'https://ror.org/05tyzry72 Werner-Wicker-Klinik'),
(45940, 'https://ror.org/02kb97560', 'en', 1, 'https://ror.org/02kb97560 University Hospitals Seidman Cancer Center'),
(45941, 'https://ror.org/04e67g822', 'en', 1, 'https://ror.org/04e67g822 Uttar Pradesh Council of sugarcane research'),
(45942, 'https://ror.org/03d8jqg89', 'en', 1, 'https://ror.org/03d8jqg89 United Nations University Institute for Water, Environment, and Health'),
(45943, 'https://ror.org/054qw7j13', 'en', 1, 'https://ror.org/054qw7j13 Wildlife Conservation Society India'),
(45944, 'https://ror.org/00mcmme34', 'de', 1, 'https://ror.org/00mcmme34 Wirtschaftspsychologische Gesellschaft'),
(45945, 'https://ror.org/038p3gq39', 'no_lang_code', 1, 'https://ror.org/038p3gq39 Yahoo (United Kingdom)'),
(45946, 'https://ror.org/03gz1ev12', 'en', 1, 'https://ror.org/03gz1ev12 Worldwatch Institute'),
(45947, 'https://ror.org/03wz9xk91', 'en', 1, 'https://ror.org/03wz9xk91 Leibniz-Centre General Linguistics Leibniz-Zentrum Allgemeine Sprachwissenschaft'),
(45948, 'https://ror.org/00ahm5y33', 'no_lang_code', 1, 'https://ror.org/00ahm5y33 Rostec (Russia) Ростех'),
(45949, 'https://ror.org/039v0g264', 'de', 1, 'https://ror.org/039v0g264 Zentrum für Psychotherapie Wiesbaden'),
(45950, 'https://ror.org/04xw60528', 'en', 1, 'https://ror.org/04xw60528 Marine Royale Canadienne Royal Canadian Navy'),
(45951, 'https://ror.org/057cmsp85', 'no_lang_code', 1, 'https://ror.org/057cmsp85 Dana (Canada)'),
(45952, 'https://ror.org/02h376w15', 'no_lang_code', 1, 'https://ror.org/02h376w15 Lite-On Technology Corporation (China) å»ŗå…“ē§‘ęŠ€å…¬åø'),
(45953, 'https://ror.org/00yqk5t74', 'no_lang_code', 1, 'https://ror.org/00yqk5t74 Lonza (Germany)'),
(45954, 'https://ror.org/05pawpb90', 'no_lang_code', 1, 'https://ror.org/05pawpb90 Light Prescriptions Innovators (United States)'),
(45955, 'https://ror.org/02qd93495', 'no_lang_code', 1, 'https://ror.org/02qd93495 MacGregor (Germany)'),
(45956, 'https://ror.org/01gfr8917', 'no_lang_code', 1, 'https://ror.org/01gfr8917 Mahle (United Kingdom)'),
(45957, 'https://ror.org/02dmkmd90', 'no_lang_code', 1, 'https://ror.org/02dmkmd90 LuK (United Kingdom)'),
(45958, 'https://ror.org/00jrevc54', 'no_lang_code', 1, 'https://ror.org/00jrevc54 Dover (United Kingdom)'),
(45959, 'https://ror.org/017z4ep79', 'no_lang_code', 1, 'https://ror.org/017z4ep79 Maxim Integrated (Germany)'),
(45960, 'https://ror.org/05tew7y65', 'en', 1, 'https://ror.org/05tew7y65 Center for Research on Political Economy'),
(45961, 'https://ror.org/00ymz7s10', 'no_lang_code', 1, 'https://ror.org/00ymz7s10 3v Geomatics (Canada)'),
(45962, 'https://ror.org/03vb8st39', 'en', 1, 'https://ror.org/03vb8st39 Australian Human Rights Commission'),
(45963, 'https://ror.org/05s252336', 'no_lang_code', 1, 'https://ror.org/05s252336 Carbon Engineering (Canada)'),
(45964, 'https://ror.org/00hd52462', 'no_lang_code', 1, 'https://ror.org/00hd52462 Toshiba (Austria)'),
(45965, 'https://ror.org/05qcw4d59', 'no_lang_code', 1, 'https://ror.org/05qcw4d59 Ƅlvdalens FastbrƤnsleteknik Aktiebolag (Sweden)'),
(45966, 'https://ror.org/04mwphf10', 'en', 1, 'https://ror.org/04mwphf10 Australian Water Quality Centre'),
(45967, 'https://ror.org/036vbw294', 'no_lang_code', 1, 'https://ror.org/036vbw294 CarbonCure Technologies (Canada)'),
(45968, 'https://ror.org/00p1mfz27', 'no_lang_code', 1, 'https://ror.org/00p1mfz27 AV&R (Canada)'),
(45969, 'https://ror.org/00awfxn33', 'no_lang_code', 1, 'https://ror.org/00awfxn33 FDC Composites (Canada)'),
(45970, 'https://ror.org/05gqx9q10', 'no_lang_code', 1, 'https://ror.org/05gqx9q10 Award Rubber & Plastic Industries (Canada)'),
(45971, 'https://ror.org/02hsnr298', 'no_lang_code', 1, 'https://ror.org/02hsnr298 Feiro Marine Life Center'),
(45972, 'https://ror.org/04jmyrr44', 'no_lang_code', 1, 'https://ror.org/04jmyrr44 Acceleware (Canada)'),
(45973, 'https://ror.org/01f753h33', 'no_lang_code', 1, 'https://ror.org/01f753h33 Accucaps (Canada)'),
(45974, 'https://ror.org/00yewjk07', 'no_lang_code', 1, 'https://ror.org/00yewjk07 BAE Systems (Sweden)'),
(45975, 'https://ror.org/02wp70a18', 'no_lang_code', 1, 'https://ror.org/02wp70a18 Firebird Biomolecular Sciences (United States)'),
(45976, 'https://ror.org/05kjrhq19', 'no_lang_code', 1, 'https://ror.org/05kjrhq19 BAH Enterprises (Canada)'),
(45977, 'https://ror.org/049s4f968', 'en', 1, 'https://ror.org/049s4f968 Baltic Development Forum'),
(45978, 'https://ror.org/01dyx2092', 'no_lang_code', 1, 'https://ror.org/01dyx2092 Advanced Electrophoresis Solutions (Canada)'),
(45979, 'https://ror.org/00avqt683', 'fr', 1, 'https://ror.org/00avqt683 CƩgep de Baie-Comeau'),
(45980, 'https://ror.org/0273ga571', 'fr', 1, 'https://ror.org/0273ga571 DƩveloppement Economique Longueuil'),
(45981, 'https://ror.org/04r0px617', 'no_lang_code', 1, 'https://ror.org/04r0px617 Central City Brewers and Distillers (Canada)'),
(45982, 'https://ror.org/03n8qhg02', 'no_lang_code', 1, 'https://ror.org/03n8qhg02 Fontis (Czechia)'),
(45983, 'https://ror.org/05e521308', 'en', 1, 'https://ror.org/05e521308 Central United States Earthquake Consortium'),
(45984, 'https://ror.org/02rhs4t61', 'no_lang_code', 1, 'https://ror.org/02rhs4t61 Doug Bragg Enterprises (Canada)'),
(45985, 'https://ror.org/035xgy388', 'no_lang_code', 1, 'https://ror.org/035xgy388 dPoint Technologies (Canada)'),
(45986, 'https://ror.org/05s5rh151', 'it', 1, 'https://ror.org/05s5rh151 Agenzia Regionale per la Tecnologia e l''Innovazione'),
(45987, 'https://ror.org/05v258z19', 'en', 1, 'https://ror.org/05v258z19 Office of the South Australian Chief Entrepreneur'),
(45988, 'https://ror.org/01ew37b76', 'en', 1, 'https://ror.org/01ew37b76 Collaboration for Australian Weather and Climate Research'),
(45989, 'https://ror.org/0379ygx07', 'no_lang_code', 1, 'https://ror.org/0379ygx07 Bio-Rad (Canada)'),
(45990, 'https://ror.org/058720m75', 'no_lang_code', 1, 'https://ror.org/058720m75 Agri-Neo (Canada)'),
(45991, 'https://ror.org/05ptgb204', 'en', 1, 'https://ror.org/05ptgb204 Mining Institute of the Ural Branch of the Russian Academy of Sciences Горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(45992, 'https://ror.org/056j33p55', 'en', 1, 'https://ror.org/056j33p55 Forestry Tasmania'),
(45993, 'https://ror.org/05p2fn050', 'no_lang_code', 1, 'https://ror.org/05p2fn050 Bishop Water Technologies (Canada)'),
(45994, 'https://ror.org/049hp7d95', 'no_lang_code', 1, 'https://ror.org/049hp7d95 Durham Foods (United Kingdom)'),
(45995, 'https://ror.org/01ezmdv61', 'no_lang_code', 1, 'https://ror.org/01ezmdv61 BitCan (Canada)'),
(45996, 'https://ror.org/014xsev03', 'en', 1, 'https://ror.org/014xsev03 Agro Business Park'),
(45997, 'https://ror.org/00vkafj46', 'no_lang_code', 1, 'https://ror.org/00vkafj46 Dŵr Cymru Welsh Water (United Kingdom)'),
(45998, 'https://ror.org/05hdv6b03', 'no_lang_code', 1, 'https://ror.org/05hdv6b03 Forge Life Science (United States)'),
(45999, 'https://ror.org/03zfg1z12', 'no_lang_code', 1, 'https://ror.org/03zfg1z12 Airex Industries (Canada)'),
(46000, 'https://ror.org/00vpqt786', 'no_lang_code', 1, 'https://ror.org/00vpqt786 Dyverga Energy (Canada)'),
(46001, 'https://ror.org/01j01kg74', 'no_lang_code', 1, 'https://ror.org/01j01kg74 Akita Innovation (United States)'),
(46002, 'https://ror.org/01j5h7116', 'no_lang_code', 1, 'https://ror.org/01j5h7116 Bluewater Power Distribution (Canada)'),
(46003, 'https://ror.org/02em2aa12', 'no_lang_code', 1, 'https://ror.org/02em2aa12 Frontier Agriculture (United Kingdom)'),
(46004, 'https://ror.org/04a0gnr15', 'no_lang_code', 1, 'https://ror.org/04a0gnr15 Alacris (Germany)'),
(46005, 'https://ror.org/047mpyh13', 'no_lang_code', 1, 'https://ror.org/047mpyh13 ChemCentre'),
(46006, 'https://ror.org/04ndp2k28', 'en', 1, 'https://ror.org/04ndp2k28 Alaka`ina Foundation'),
(46007, 'https://ror.org/02gyh4f05', 'no_lang_code', 1, 'https://ror.org/02gyh4f05 FTL Labs (United States)'),
(46008, 'https://ror.org/03pqjm879', 'no_lang_code', 1, 'https://ror.org/03pqjm879 Alcoa (Australia)'),
(46009, 'https://ror.org/03d0cjn27', 'no_lang_code', 1, 'https://ror.org/03d0cjn27 Alectos (Canada)'),
(46010, 'https://ror.org/04pg77a15', 'no_lang_code', 1, 'https://ror.org/04pg77a15 Boise Cascade (Canada)'),
(46011, 'https://ror.org/04am9s171', 'no_lang_code', 1, 'https://ror.org/04am9s171 Cimetrix Solutions (Canada)'),
(46012, 'https://ror.org/01ktf2g48', 'no_lang_code', 1, 'https://ror.org/01ktf2g48 BorƩa (Sweden)'),
(46013, 'https://ror.org/05v1ag808', 'no_lang_code', 1, 'https://ror.org/05v1ag808 Altranex (Canada)'),
(46014, 'https://ror.org/01wpvrw40', 'no_lang_code', 1, 'https://ror.org/01wpvrw40 Boschman Technologies (Netherlands)'),
(46015, 'https://ror.org/05khvz726', 'no_lang_code', 1, 'https://ror.org/05khvz726 EirGrid (Ireland)'),
(46016, 'https://ror.org/00thhss72', 'en', 1, 'https://ror.org/00thhss72 Botanic Gardens and Parks Authority'),
(46017, 'https://ror.org/02aneag19', 'no_lang_code', 1, 'https://ror.org/02aneag19 Alu Group (Spain)'),
(46018, 'https://ror.org/03ewmqz06', 'no_lang_code', 1, 'https://ror.org/03ewmqz06 Ekodenge (Turkey)'),
(46019, 'https://ror.org/04hnkx132', 'en', 1, 'https://ror.org/04hnkx132 Innovation Plasturgie Composites PƓle EuropƩen de Plasturgie'),
(46020, 'https://ror.org/04kvhgz56', 'no_lang_code', 1, 'https://ror.org/04kvhgz56 Future Access (Canada)'),
(46021, 'https://ror.org/0481b2b62', 'no_lang_code', 1, 'https://ror.org/0481b2b62 Brainport (Netherlands)'),
(46022, 'https://ror.org/02gjwq161', 'no_lang_code', 1, 'https://ror.org/02gjwq161 Answare (Spain)'),
(46023, 'https://ror.org/01n0t0752', 'no_lang_code', 1, 'https://ror.org/01n0t0752 Future Cities Catapult (United Kingdom)'),
(46024, 'https://ror.org/00xnetf72', 'fr', 1, 'https://ror.org/00xnetf72 Brest''aim'),
(46025, 'https://ror.org/04h0h7852', 'en', 1, 'https://ror.org/04h0h7852 Aquila Theatre'),
(46026, 'https://ror.org/035xg4847', 'no_lang_code', 1, 'https://ror.org/035xg4847 Centrum Průmyslového Výzkumu Techlab (Czechia)'),
(46027, 'https://ror.org/04bwh4h90', 'fr', 1, 'https://ror.org/04bwh4h90 Bretagne DƩveloppement Innovation'),
(46028, 'https://ror.org/00nc8dt74', 'no_lang_code', 1, 'https://ror.org/00nc8dt74 ElringKlinger (Germany)'),
(46029, 'https://ror.org/01891yy30', 'no_lang_code', 1, 'https://ror.org/01891yy30 Arbressence (Canada)'),
(46030, 'https://ror.org/050a0jp38', 'no_lang_code', 1, 'https://ror.org/050a0jp38 Helbio (Greece)'),
(46031, 'https://ror.org/02m6x3q63', 'no_lang_code', 1, 'https://ror.org/02m6x3q63 ARC Resources (Canada)'),
(46032, 'https://ror.org/03tasb223', 'no_lang_code', 1, 'https://ror.org/03tasb223 Collingwood Environmental Planning (United Kingdom)'),
(46033, 'https://ror.org/05gk8hj18', 'no_lang_code', 1, 'https://ror.org/05gk8hj18 Genetec (Canada)'),
(46034, 'https://ror.org/0043z0e71', 'en', 1, 'https://ror.org/0043z0e71 Arkitektur- och designcentrum Swedish Centre for Architecture and Design'),
(46035, 'https://ror.org/05h5q2539', 'en', 1, 'https://ror.org/05h5q2539 British Grassland Society'),
(46036, 'https://ror.org/007qdwg58', 'no_lang_code', 1, 'https://ror.org/007qdwg58 GEO-HAZ Consulting (United States)'),
(46037, 'https://ror.org/03qqt7x47', 'en', 1, 'https://ror.org/03qqt7x47 Art Gallery of New South Wales'),
(46038, 'https://ror.org/037w0z757', 'es', 1, 'https://ror.org/037w0z757 Empresa Municipal de la Vivienda y Suelo de Madrid'),
(46039, 'https://ror.org/0534wbh79', 'no_lang_code', 1, 'https://ror.org/0534wbh79 Geomechanica (Canada)'),
(46040, 'https://ror.org/00g4f6p58', 'en', 1, 'https://ror.org/00g4f6p58 Artemis One Health Research Foundation'),
(46041, 'https://ror.org/04fcd0528', 'no_lang_code', 1, 'https://ror.org/04fcd0528 Geotechnical Consulting Group (United Kingdom)'),
(46042, 'https://ror.org/04dxh1n93', 'no_lang_code', 1, 'https://ror.org/04dxh1n93 Arup Group (Canada)'),
(46043, 'https://ror.org/045cwwz56', 'no_lang_code', 1, 'https://ror.org/045cwwz56 Giatec Scientific (Canada)'),
(46044, 'https://ror.org/01rab9670', 'no_lang_code', 1, 'https://ror.org/01rab9670 Bruker (Israel)'),
(46045, 'https://ror.org/03ajjdx52', 'no_lang_code', 1, 'https://ror.org/03ajjdx52 ASM International (Belgium)'),
(46046, 'https://ror.org/004g8sj50', 'no_lang_code', 1, 'https://ror.org/004g8sj50 EnergyAustralia (Australia)'),
(46047, 'https://ror.org/04exf1753', 'no_lang_code', 1, 'https://ror.org/04exf1753 ASM Terni (Italy)'),
(46048, 'https://ror.org/03afety63', 'no_lang_code', 1, 'https://ror.org/03afety63 Neurio Technology (Canada)'),
(46049, 'https://ror.org/05awdmd14', 'no_lang_code', 1, 'https://ror.org/05awdmd14 Engenuics (Canada)'),
(46050, 'https://ror.org/05v965x44', 'no_lang_code', 1, 'https://ror.org/05v965x44 C4i (Canada)'),
(46051, 'https://ror.org/03wvnx995', 'no_lang_code', 1, 'https://ror.org/03wvnx995 Broadcom (Spain)'),
(46052, 'https://ror.org/01x4fgp34', 'no_lang_code', 1, 'https://ror.org/01x4fgp34 Enviro Neptune (Canada)'),
(46053, 'https://ror.org/04mfben02', 'no_lang_code', 1, 'https://ror.org/04mfben02 Eomap (Germany)'),
(46054, 'https://ror.org/05t9zpz97', 'no_lang_code', 1, 'https://ror.org/05t9zpz97 Cook Medical (Australia)'),
(46055, 'https://ror.org/008egk659', 'no_lang_code', 1, 'https://ror.org/008egk659 Gnowit (Canada)'),
(46056, 'https://ror.org/04ft0an39', 'no_lang_code', 1, 'https://ror.org/04ft0an39 Ergon Energy (Australia)'),
(46057, 'https://ror.org/00d4czm47', 'en', 1, 'https://ror.org/00d4czm47 Gold Coast City Council'),
(46058, 'https://ror.org/03egady98', 'no_lang_code', 1, 'https://ror.org/03egady98 eSenso (Canada)'),
(46059, 'https://ror.org/01w9zcy30', 'no_lang_code', 1, 'https://ror.org/01w9zcy30 Canada Bread (Canada)'),
(46060, 'https://ror.org/0196q0t51', 'no_lang_code', 1, 'https://ror.org/0196q0t51 Esri (Canada)'),
(46061, 'https://ror.org/00ffmas49', 'no_lang_code', 1, 'https://ror.org/00ffmas49 CorPower Ocean (Sweden)'),
(46062, 'https://ror.org/04jmk7329', 'no_lang_code', 1, 'https://ror.org/04jmk7329 Covaris (United States)'),
(46063, 'https://ror.org/05rvq9153', 'no_lang_code', 1, 'https://ror.org/05rvq9153 EYDAP (Greece) Εταιρεία ĪŽĪ“ĻĪµĻ…ĻƒĪ·Ļ‚ και Ī‘Ļ€ĪæĻ‡Ī­Ļ„ĪµĻ…ĻƒĪ·Ļ‚ Ī ĻĻ‰Ļ„ĪµĻĪæĻ…ĻƒĪ±Ļ‚'),
(46064, 'https://ror.org/013pzg015', 'fr', 1, 'https://ror.org/013pzg015 Association pour le DƩveloppement et l''Innovation en Chimie au QuƩbec'),
(46065, 'https://ror.org/01vvmvv13', 'en', 1, 'https://ror.org/01vvmvv13 Canadian Sport Centre Pacific'),
(46066, 'https://ror.org/03fjgt095', 'en', 1, 'https://ror.org/03fjgt095 Goulburn Broken Catchment Management Authority'),
(46067, 'https://ror.org/031vt8c32', 'no_lang_code', 1, 'https://ror.org/031vt8c32 Ethos (United Kingdom)'),
(46068, 'https://ror.org/03px70152', 'en', 1, 'https://ror.org/03px70152 Government of Prince Edward Island'),
(46069, 'https://ror.org/04qg9ew14', 'no_lang_code', 1, 'https://ror.org/04qg9ew14 Produce Investments (United Kingdom)'),
(46070, 'https://ror.org/02rggjh51', 'en', 1, 'https://ror.org/02rggjh51 Gov2u'),
(46071, 'https://ror.org/055s4d850', 'no_lang_code', 1, 'https://ror.org/055s4d850 Eureka Lighting (Canada)'),
(46072, 'https://ror.org/038rjke75', 'no_lang_code', 1, 'https://ror.org/038rjke75 Athletigen (Canada)'),
(46073, 'https://ror.org/04m3kny75', 'no_lang_code', 1, 'https://ror.org/04m3kny75 GRi Simulations (Canada)'),
(46074, 'https://ror.org/03yqqb498', 'no_lang_code', 1, 'https://ror.org/03yqqb498 Attodyne (Canada)'),
(46075, 'https://ror.org/04hpj9w50', 'no_lang_code', 1, 'https://ror.org/04hpj9w50 Palette (Canada)'),
(46076, 'https://ror.org/02jg1ky29', 'no_lang_code', 1, 'https://ror.org/02jg1ky29 NanoXplore (Canada)'),
(46077, 'https://ror.org/05acd7q77', 'no_lang_code', 1, 'https://ror.org/05acd7q77 Attollo Engineering (United States)'),
(46078, 'https://ror.org/01hfc4a93', 'en', 1, 'https://ror.org/01hfc4a93 European Network for Smoking and Tobacco Prevention'),
(46079, 'https://ror.org/05t0zzz08', 'no_lang_code', 1, 'https://ror.org/05t0zzz08 Stryker (Canada)'),
(46080, 'https://ror.org/05sm9st23', 'en', 1, 'https://ror.org/05sm9st23 Chartered Accountants Australia and New Zealand'),
(46081, 'https://ror.org/02b1n2z62', 'en', 1, 'https://ror.org/02b1n2z62 Australia Zoo'),
(46082, 'https://ror.org/04zws1j77', 'no_lang_code', 1, 'https://ror.org/04zws1j77 Fabmatics (Germany)'),
(46083, 'https://ror.org/00jyykt64', 'en', 1, 'https://ror.org/00jyykt64 Water Supply and Sanitation Technology Platform'),
(46084, 'https://ror.org/01vzn3w40', 'no_lang_code', 1, 'https://ror.org/01vzn3w40 H2Flow Equipment (Canada)'),
(46085, 'https://ror.org/01e5f0y27', 'no_lang_code', 1, 'https://ror.org/01e5f0y27 Evernia (Czechia)'),
(46086, 'https://ror.org/02masw633', 'no_lang_code', 1, 'https://ror.org/02masw633 Hartley McMaster (United Kingdom)'),
(46087, 'https://ror.org/02h5eqb27', 'no_lang_code', 1, 'https://ror.org/02h5eqb27 Exciton Technologies (Canada)'),
(46088, 'https://ror.org/01qb4qf02', 'en', 1, 'https://ror.org/01qb4qf02 Australian Centre for the Moving Image'),
(46089, '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'),
(46090, 'https://ror.org/04egre837', 'no_lang_code', 1, 'https://ror.org/04egre837 AlphaSIP (Spain)'),
(46091, 'https://ror.org/00w2tje25', 'en', 1, 'https://ror.org/00w2tje25 Mission Australia'),
(46092, 'https://ror.org/01f18s848', 'no_lang_code', 1, 'https://ror.org/01f18s848 Mission Bio (United States)'),
(46093, 'https://ror.org/02q911y28', 'no_lang_code', 1, 'https://ror.org/02q911y28 Lalema (Canada)'),
(46094, 'https://ror.org/0098qsx72', 'no_lang_code', 1, 'https://ror.org/0098qsx72 Royal HaskoningDHV (United Kingdom)'),
(46095, 'https://ror.org/05d2rrs40', 'no_lang_code', 1, 'https://ror.org/05d2rrs40 Lam Research (Austria)'),
(46096, 'https://ror.org/010j4q354', 'no_lang_code', 1, 'https://ror.org/010j4q354 EXUS (United Kingdom)'),
(46097, 'https://ror.org/04msp8175', 'no_lang_code', 1, 'https://ror.org/04msp8175 Mission Management Information Systems (Canada)'),
(46098, 'https://ror.org/05wybg642', 'no_lang_code', 1, 'https://ror.org/05wybg642 Eyeball (Canada)'),
(46099, 'https://ror.org/05nvxe113', 'no_lang_code', 1, 'https://ror.org/05nvxe113 Mondelēz International (Canada)'),
(46100, 'https://ror.org/05femq986', 'no_lang_code', 1, 'https://ror.org/05femq986 Laserax (Canada)'),
(46101, 'https://ror.org/05a0cfq84', 'no_lang_code', 1, 'https://ror.org/05a0cfq84 Monodraught (United Kingdom)'),
(46102, 'https://ror.org/00y5p9m93', 'en', 1, 'https://ror.org/00y5p9m93 Ministry of the Interior and Administrative Reconstruction ΄πουργείο Ī•ĻƒĻ‰Ļ„ĪµĻĪ¹ĪŗĻŽĪ½ και Διοικητικής Ī‘Ī½Ī±ĻƒĻ…Ī³ĪŗĻĻŒĻ„Ī·ĻƒĪ·Ļ‚'),
(46103, 'https://ror.org/00d0v0049', 'en', 1, 'https://ror.org/00d0v0049 Max Planck Innovation'),
(46104, 'https://ror.org/02xh6me94', 'no_lang_code', 1, 'https://ror.org/02xh6me94 Henriksson Salix (Sweden)'),
(46105, 'https://ror.org/015eg4898', 'en', 1, 'https://ror.org/015eg4898 Moreland City Council'),
(46106, 'https://ror.org/00cpm5y73', 'no_lang_code', 1, 'https://ror.org/00cpm5y73 Serres Sagami (Canada)'),
(46107, 'https://ror.org/018zgk904', 'no_lang_code', 1, 'https://ror.org/018zgk904 Ontario Drive & Gear (Canada)'),
(46108, 'https://ror.org/00hfr5j60', 'en', 1, 'https://ror.org/00hfr5j60 Homarus'),
(46109, 'https://ror.org/01w9bsn12', 'no_lang_code', 1, 'https://ror.org/01w9bsn12 Instream Energy Systems (Canada)'),
(46110, 'https://ror.org/023fas823', 'no_lang_code', 1, 'https://ror.org/023fas823 Motor Coach Industries (United States)'),
(46111, 'https://ror.org/02k6ncv16', 'no_lang_code', 1, 'https://ror.org/02k6ncv16 Optina Diagnostics (Canada)'),
(46112, 'https://ror.org/052tbr029', 'en', 1, 'https://ror.org/052tbr029 Institute of Slavic Studies Instytut Slawistyki PAN'),
(46113, 'https://ror.org/04taj5290', 'no_lang_code', 1, 'https://ror.org/04taj5290 Moulton Bulb (United Kingdom)'),
(46114, 'https://ror.org/027pe7w88', 'no_lang_code', 1, 'https://ror.org/027pe7w88 MunEDA (Germany)'),
(46115, 'https://ror.org/04b30m009', 'no_lang_code', 1, 'https://ror.org/04b30m009 Integrated Nonclinical Development Solutions (United States)'),
(46116, 'https://ror.org/03bxq3a59', 'no_lang_code', 1, 'https://ror.org/03bxq3a59 Semiconductor Manufacturing International (Italy)'),
(46117, 'https://ror.org/00fjn4j64', 'no_lang_code', 1, 'https://ror.org/00fjn4j64 LightComp (Czechia)'),
(46118, 'https://ror.org/00hmj8r26', 'no_lang_code', 1, 'https://ror.org/00hmj8r26 Hamilton Utilities Corporation'),
(46119, 'https://ror.org/03zhmtk18', 'no_lang_code', 1, 'https://ror.org/03zhmtk18 Material Change (United KIngdom)'),
(46120, 'https://ror.org/00pvmsx89', 'no_lang_code', 1, 'https://ror.org/00pvmsx89 Intrinsik (Canada)'),
(46121, 'https://ror.org/04z1e3n06', 'en', 1, 'https://ror.org/04z1e3n06 Livestock & Meat Commission'),
(46122, 'https://ror.org/01tpxh023', 'no_lang_code', 1, 'https://ror.org/01tpxh023 Introhive (Canada)'),
(46123, 'https://ror.org/019nchk62', 'no_lang_code', 1, 'https://ror.org/019nchk62 Inversa Systems (Canada)'),
(46124, 'https://ror.org/00agsqd14', 'no_lang_code', 1, 'https://ror.org/00agsqd14 Nanium (Portugal)'),
(46125, 'https://ror.org/0398s5e82', 'no_lang_code', 1, 'https://ror.org/0398s5e82 Skeleton Technologies (Estonia)'),
(46126, 'https://ror.org/00x2mvg12', 'no_lang_code', 1, 'https://ror.org/00x2mvg12 Ozymes (Canada)'),
(46127, 'https://ror.org/007r1jg09', 'no_lang_code', 1, 'https://ror.org/007r1jg09 InvestorNet-Gate2Growth (Denmark)'),
(46128, 'https://ror.org/04eh5he50', 'en', 1, 'https://ror.org/04eh5he50 Banque Nationale du Canada National Bank of Canada'),
(46129, 'https://ror.org/04vgjs034', 'en', 1, 'https://ror.org/04vgjs034 London Hydro'),
(46130, 'https://ror.org/05tztfw60', 'en', 1, 'https://ror.org/05tztfw60 Hydro Tasmania'),
(46131, 'https://ror.org/03pjzs448', 'no_lang_code', 1, 'https://ror.org/03pjzs448 Luxmux Technology (Canada)'),
(46132, 'https://ror.org/02h62y319', 'no_lang_code', 1, 'https://ror.org/02h62y319 Icy Waters (Canada)'),
(46133, 'https://ror.org/025esa616', 'en', 1, 'https://ror.org/025esa616 Parks Victoria'),
(46134, 'https://ror.org/014p1by09', 'en', 1, 'https://ror.org/014p1by09 National Foundation for Australian Women'),
(46135, 'https://ror.org/03zhn2w96', 'no_lang_code', 1, 'https://ror.org/03zhn2w96 MAAX Bath (Canada)'),
(46136, 'https://ror.org/037kffm93', 'no_lang_code', 1, 'https://ror.org/037kffm93 IDP IngenierĆ­a y Arquitectura Iberia (Spain)'),
(46137, 'https://ror.org/027jcax02', 'no_lang_code', 1, 'https://ror.org/027jcax02 Ixion (Spain)'),
(46138, 'https://ror.org/01b98w967', 'en', 1, 'https://ror.org/01b98w967 Main Roads Western Australia'),
(46139, 'https://ror.org/011g79698', 'no_lang_code', 1, 'https://ror.org/011g79698 Imense (United Kingdom)'),
(46140, 'https://ror.org/00g8rjs80', 'no_lang_code', 1, 'https://ror.org/00g8rjs80 Immune Biosolutions (Canada)'),
(46141, 'https://ror.org/02yt3kq50', 'en', 1, 'https://ror.org/02yt3kq50 Jobs Australia'),
(46142, 'https://ror.org/04y96wg46', 'en', 1, 'https://ror.org/04y96wg46 Imperial College of Toronto'),
(46143, 'https://ror.org/03tb2xj87', 'no_lang_code', 1, 'https://ror.org/03tb2xj87 Mantex (Sweden)'),
(46144, 'https://ror.org/01xyr7619', 'en', 1, 'https://ror.org/01xyr7619 National Society of Black Engineers'),
(46145, 'https://ror.org/002784y28', 'no_lang_code', 1, 'https://ror.org/002784y28 Mantra Energy Alternatives (Canada)'),
(46146, 'https://ror.org/05240d030', 'no_lang_code', 1, 'https://ror.org/05240d030 Mara Renewables (Canada)'),
(46147, 'https://ror.org/00pccrq10', 'no_lang_code', 1, 'https://ror.org/00pccrq10 Marbes Consulting'),
(46148, 'https://ror.org/0266fhg96', 'no_lang_code', 1, 'https://ror.org/0266fhg96 iNano Medical (Canada)'),
(46149, 'https://ror.org/027tb8875', 'en', 1, 'https://ror.org/027tb8875 Marine Mammals of Maine'),
(46150, 'https://ror.org/04eaf5c83', 'no_lang_code', 1, 'https://ror.org/04eaf5c83 Katan Kitchens (Canada)'),
(46151, 'https://ror.org/04wb86f41', 'en', 1, 'https://ror.org/04wb86f41 Industrial Plankton'),
(46152, 'https://ror.org/055z8n243', 'no_lang_code', 1, 'https://ror.org/055z8n243 Marinvent (Canada)'),
(46153, 'https://ror.org/02dshg816', 'en', 1, 'https://ror.org/02dshg816 Nature Foundation SA'),
(46154, 'https://ror.org/029evds51', 'no_lang_code', 1, 'https://ror.org/029evds51 Infineum (United Kingdom)'),
(46155, 'https://ror.org/05dzk6h94', 'en', 1, 'https://ror.org/05dzk6h94 Maritsa Vegetable Crops Research Institute'),
(46156, 'https://ror.org/00z90jg93', 'no_lang_code', 1, 'https://ror.org/00z90jg93 PlanEnergi (Denmark)'),
(46157, 'https://ror.org/02503sm81', 'no_lang_code', 1, 'https://ror.org/02503sm81 Cooke Aquaculture (Canada)'),
(46158, 'https://ror.org/03bwmrt76', 'no_lang_code', 1, 'https://ror.org/03bwmrt76 Nemaska Lithium (Canada)'),
(46159, 'https://ror.org/02ybv1z63', 'no_lang_code', 1, 'https://ror.org/02ybv1z63 Pleiades Robotics (Canada)'),
(46160, 'https://ror.org/052mwhp79', 'en', 1, 'https://ror.org/052mwhp79 Plunkett Foundation'),
(46161, 'https://ror.org/042k4ts27', 'no_lang_code', 1, 'https://ror.org/042k4ts27 Matamec Explorations (Canada)'),
(46162, 'https://ror.org/04gs2jh51', 'no_lang_code', 1, 'https://ror.org/04gs2jh51 Mavi Innovations (Canada)'),
(46163, 'https://ror.org/025x0cj89', 'no_lang_code', 1, 'https://ror.org/025x0cj89 Kodak (Canada)'),
(46164, 'https://ror.org/045kkxp77', 'no_lang_code', 1, 'https://ror.org/045kkxp77 Inland Technologies (Canada)'),
(46165, 'https://ror.org/02229kd62', 'no_lang_code', 1, 'https://ror.org/02229kd62 Staples (Canada)'),
(46166, 'https://ror.org/051yxm544', 'no_lang_code', 1, 'https://ror.org/051yxm544 PNO Consultants (Netherlands)');
INSERT INTO `rors` VALUES
(46167, 'https://ror.org/02aexpx94', 'no_lang_code', 1, 'https://ror.org/02aexpx94 Alchemy (Canada)'),
(46168, 'https://ror.org/01vq7jx45', 'en', 1, 'https://ror.org/01vq7jx45 Innovation and Economic Development Trois RiviĆØres'),
(46169, 'https://ror.org/03sgtgn54', 'no_lang_code', 1, 'https://ror.org/03sgtgn54 KanEnergi (Sweden)'),
(46170, 'https://ror.org/05ensw577', 'no_lang_code', 1, 'https://ror.org/05ensw577 Polymer Source (Canada)'),
(46171, 'https://ror.org/028bkpm63', 'no_lang_code', 1, 'https://ror.org/028bkpm63 Medella Health (Canada)'),
(46172, 'https://ror.org/017bgge88', 'no_lang_code', 1, 'https://ror.org/017bgge88 Medosome Biotec (United States)'),
(46173, 'https://ror.org/0060eq849', 'en', 1, 'https://ror.org/0060eq849 Freshwater Habitats Trust'),
(46174, 'https://ror.org/01dbckq22', 'en', 1, 'https://ror.org/01dbckq22 KrajskƔ HygienickƔ Stanice MoravskoslezskƩho Kraje Regional Public Health Authority of Moravian - Silesian Region'),
(46175, 'https://ror.org/04vn6x894', 'en', 1, 'https://ror.org/04vn6x894 International Centre for Sustainable Development of Energy, Water and Environment Systems'),
(46176, 'https://ror.org/02zj9bw60', 'no_lang_code', 1, 'https://ror.org/02zj9bw60 Insplorion (Sweden)'),
(46177, 'https://ror.org/05s9h0j72', 'en', 1, 'https://ror.org/05s9h0j72 Kungliga Gustav Adolfs Akademien Royal Gustavus Adolphus Academy'),
(46178, 'https://ror.org/04sg12k28', 'no_lang_code', 1, 'https://ror.org/04sg12k28 Powerlink Queensland (Australia)'),
(46179, 'https://ror.org/01ph4v684', 'en', 1, 'https://ror.org/01ph4v684 Institut d''Arquitectura AvanƧada de Catalunya Institute for Advanced Architecture of Catalonia'),
(46180, 'https://ror.org/043k84p27', 'en', 1, 'https://ror.org/043k84p27 Queensland Department of Education'),
(46181, 'https://ror.org/007ypmw98', 'no_lang_code', 1, 'https://ror.org/007ypmw98 Meloche (Canada)'),
(46182, 'https://ror.org/04p102g25', 'en', 1, 'https://ror.org/04p102g25 Mental Health Foundation'),
(46183, 'https://ror.org/03jqm3125', 'no_lang_code', 1, 'https://ror.org/03jqm3125 Quaternion Aerospace (Canada)'),
(46184, 'https://ror.org/0466m2m47', 'no_lang_code', 1, 'https://ror.org/0466m2m47 MetaOptima Technology (Canada)'),
(46185, 'https://ror.org/04d5b0c86', 'no_lang_code', 1, 'https://ror.org/04d5b0c86 Nommon Solutions and Technologies (Spain)'),
(46186, 'https://ror.org/02eps3588', 'no_lang_code', 1, 'https://ror.org/02eps3588 Precision for Medicine (United States)'),
(46187, 'https://ror.org/037d89s09', 'no_lang_code', 1, 'https://ror.org/037d89s09 Precision Nanosystems (Canada)'),
(46188, 'https://ror.org/04p74nw72', 'en', 1, 'https://ror.org/04p74nw72 Queensland Police Service'),
(46189, 'https://ror.org/01fykd523', 'en', 1, 'https://ror.org/01fykd523 Queensland Rail'),
(46190, 'https://ror.org/04b33sw26', 'no_lang_code', 1, 'https://ror.org/04b33sw26 Northern Powergrid (United Kingdom)'),
(46191, 'https://ror.org/05fvmm618', 'en', 1, 'https://ror.org/05fvmm618 Queensland Curriculum and Assessment Authority'),
(46192, 'https://ror.org/04tv07n86', 'en', 1, 'https://ror.org/04tv07n86 Methodology Centre for Environment Assessment'),
(46193, 'https://ror.org/01zhpc307', 'no_lang_code', 1, 'https://ror.org/01zhpc307 Prodrive Technologies (Netherlands)'),
(46194, 'https://ror.org/02afhmq71', 'no_lang_code', 1, 'https://ror.org/02afhmq71 Nova Measuring Instruments (Israel)'),
(46195, 'https://ror.org/04gc7ef93', 'no_lang_code', 1, 'https://ror.org/04gc7ef93 Novateur Research Solutions (United States)'),
(46196, 'https://ror.org/00jz33f47', 'no_lang_code', 1, 'https://ror.org/00jz33f47 Mimetas (Netherlands)'),
(46197, 'https://ror.org/0436bye53', 'no_lang_code', 1, 'https://ror.org/0436bye53 MineSense Technologies (Canada)'),
(46198, 'https://ror.org/00vs9ma76', 'no_lang_code', 1, 'https://ror.org/00vs9ma76 Raven Telemetry (Canada)'),
(46199, 'https://ror.org/03779e961', 'no_lang_code', 1, 'https://ror.org/03779e961 Promethean Particles (United Kingdom)'),
(46200, 'https://ror.org/02gk9bd41', 'en', 1, 'https://ror.org/02gk9bd41 Nueta Hidatsa Sahnish College'),
(46201, 'https://ror.org/04vqws538', 'no_lang_code', 1, 'https://ror.org/04vqws538 Mirexus (Canada)'),
(46202, 'https://ror.org/0594b3f07', 'no_lang_code', 1, 'https://ror.org/0594b3f07 Promoscience (Italy)'),
(46203, 'https://ror.org/013gvjj93', 'no_lang_code', 1, 'https://ror.org/013gvjj93 Nufarm (Australia)'),
(46204, 'https://ror.org/01k8jf979', 'no_lang_code', 1, 'https://ror.org/01k8jf979 Protec-Style (Canada)'),
(46205, 'https://ror.org/00a7kcq71', 'no_lang_code', 1, 'https://ror.org/00a7kcq71 Recif Technologies (France)'),
(46206, 'https://ror.org/00h590f14', 'no_lang_code', 1, 'https://ror.org/00h590f14 NutriAg (Canada)'),
(46207, 'https://ror.org/05hhgm593', 'no_lang_code', 1, 'https://ror.org/05hhgm593 Sigma Energy Storage (Canada)'),
(46208, 'https://ror.org/04y1c3h69', 'no_lang_code', 1, 'https://ror.org/04y1c3h69 Sigray (United States)'),
(46209, 'https://ror.org/02nka6g66', 'en', 1, 'https://ror.org/02nka6g66 Stone Soup Productions'),
(46210, 'https://ror.org/032tjpd06', 'en', 1, 'https://ror.org/032tjpd06 Whale Center of New England'),
(46211, 'https://ror.org/05skcvs70', 'no_lang_code', 1, 'https://ror.org/05skcvs70 Recyc PHP (Canada)'),
(46212, 'https://ror.org/05sm4gx39', 'no_lang_code', 1, 'https://ror.org/05sm4gx39 Red Hat (United Kingdom)'),
(46213, 'https://ror.org/00z1bwj17', 'no_lang_code', 1, 'https://ror.org/00z1bwj17 Street Contxt (Canada)'),
(46214, 'https://ror.org/01qzftd85', 'en', 1, 'https://ror.org/01qzftd85 Silsoe Spray Application Unit'),
(46215, 'https://ror.org/00ssh1q19', 'no_lang_code', 1, 'https://ror.org/00ssh1q19 Reden (Netherlands)'),
(46216, 'https://ror.org/02mdwjj51', 'no_lang_code', 1, 'https://ror.org/02mdwjj51 Redlen Technologies (Canada)'),
(46217, 'https://ror.org/0255r2t12', 'no_lang_code', 1, 'https://ror.org/0255r2t12 Tronox (Australia)'),
(46218, 'https://ror.org/0554hqk85', 'no_lang_code', 1, 'https://ror.org/0554hqk85 Singulus (Germany)'),
(46219, 'https://ror.org/0172eea33', 'it', 1, 'https://ror.org/0172eea33 Studio Associato Gaia'),
(46220, 'https://ror.org/03cxxc369', 'en', 1, 'https://ror.org/03cxxc369 Torino e-district'),
(46221, 'https://ror.org/015yc3t03', 'no_lang_code', 1, 'https://ror.org/015yc3t03 SITAEL (Italy)'),
(46222, 'https://ror.org/006dp6044', 'sv', 1, 'https://ror.org/006dp6044 Svenskt Gastekniskt Center Swedish Gas Technology Centre'),
(46223, 'https://ror.org/00c4rw797', 'no_lang_code', 1, 'https://ror.org/00c4rw797 Transtech Innovations (Canada)'),
(46224, 'https://ror.org/026s3qz20', 'en', 1, 'https://ror.org/026s3qz20 Slovak Innovation and Energy Agency SlovenskĆ” inovačnĆ” a energetickĆ” agentĆŗra'),
(46225, 'https://ror.org/05btymt05', 'no_lang_code', 1, 'https://ror.org/05btymt05 TravelAI (United Kingdom)'),
(46226, 'https://ror.org/02fqdw168', 'en', 1, 'https://ror.org/02fqdw168 WaterNSW'),
(46227, 'https://ror.org/01s8p3t36', 'no_lang_code', 1, 'https://ror.org/01s8p3t36 Trilogis (Italy)'),
(46228, 'https://ror.org/048nk6m17', 'en', 1, 'https://ror.org/048nk6m17 Sydney Olympic Park Authority'),
(46229, 'https://ror.org/00kv7my10', 'no_lang_code', 1, 'https://ror.org/00kv7my10 Smallmatek (Portugal)'),
(46230, 'https://ror.org/001a5a111', 'no_lang_code', 1, 'https://ror.org/001a5a111 Symbio FCell (France)'),
(46231, 'https://ror.org/00z471n15', 'no_lang_code', 1, 'https://ror.org/00z471n15 Smarter Alloys (Canada)'),
(46232, 'https://ror.org/01hf47s86', 'no_lang_code', 1, 'https://ror.org/01hf47s86 Turbo Power Systems (United Kingdom)'),
(46233, 'https://ror.org/00b6zxk24', 'en', 1, 'https://ror.org/00b6zxk24 Tweed Shire Council'),
(46234, 'https://ror.org/01fqm7b41', 'no_lang_code', 1, 'https://ror.org/01fqm7b41 SYNERGX Technologies (Canada)'),
(46235, 'https://ror.org/02gvfm422', 'no_lang_code', 1, 'https://ror.org/02gvfm422 Ubiwhere (Portugal)'),
(46236, 'https://ror.org/01gwe8p69', 'no_lang_code', 1, 'https://ror.org/01gwe8p69 T2 Systems (Canada)'),
(46237, 'https://ror.org/01grmf894', 'en', 1, 'https://ror.org/01grmf894 Smith Institute'),
(46238, 'https://ror.org/047dpbp86', 'no_lang_code', 1, 'https://ror.org/047dpbp86 Umano Medical (Canada)'),
(46239, 'https://ror.org/01zbr4w52', 'no_lang_code', 1, 'https://ror.org/01zbr4w52 S2e Technologies (Canada)'),
(46240, 'https://ror.org/01g4ze844', 'no_lang_code', 1, 'https://ror.org/01g4ze844 TechnipFMC (Italy)'),
(46241, 'https://ror.org/047226562', 'no_lang_code', 1, 'https://ror.org/047226562 TechnoRem (Canada)'),
(46242, 'https://ror.org/04ewyy141', 'no_lang_code', 1, 'https://ror.org/04ewyy141 Teldio (Canada)'),
(46243, 'https://ror.org/04zddqw39', 'no_lang_code', 1, 'https://ror.org/04zddqw39 TeleConsult Austria (Austria)'),
(46244, 'https://ror.org/04c772e80', 'en', 1, 'https://ror.org/04c772e80 Soil Association'),
(46245, 'https://ror.org/042b06z11', 'no_lang_code', 1, 'https://ror.org/042b06z11 Veolia (Australia)'),
(46246, 'https://ror.org/01zarsr31', 'no_lang_code', 1, 'https://ror.org/01zarsr31 Temple Group (United Kingdom)'),
(46247, 'https://ror.org/00p3e1n56', 'no_lang_code', 1, 'https://ror.org/00p3e1n56 Tenneco (Belgium)'),
(46248, 'https://ror.org/0113qg321', 'no_lang_code', 1, 'https://ror.org/0113qg321 Solar Ship (Canada)'),
(46249, 'https://ror.org/05car4c24', 'no_lang_code', 1, 'https://ror.org/05car4c24 Terramera (Canada)'),
(46250, 'https://ror.org/02nzhnj74', 'no_lang_code', 1, 'https://ror.org/02nzhnj74 Soleno (Canada)'),
(46251, 'https://ror.org/03t627237', 'no_lang_code', 1, 'https://ror.org/03t627237 TerraVerdae BioWorks (Canada)'),
(46252, 'https://ror.org/002nwxy91', 'no_lang_code', 1, 'https://ror.org/002nwxy91 Solmax (Canada)'),
(46253, 'https://ror.org/01vz3ga16', 'en', 1, 'https://ror.org/01vz3ga16 Seqwater'),
(46254, 'https://ror.org/02s7dzt19', 'en', 1, 'https://ror.org/02s7dzt19 Salford City Council'),
(46255, 'https://ror.org/01n58gy81', 'en', 1, 'https://ror.org/01n58gy81 Benevolent Society'),
(46256, 'https://ror.org/033s2jy46', 'no_lang_code', 1, 'https://ror.org/033s2jy46 South East Water (Australia)'),
(46257, 'https://ror.org/05v40eh15', 'no_lang_code', 1, 'https://ror.org/05v40eh15 Spinologics (Canada)'),
(46258, 'https://ror.org/03vj25186', 'no_lang_code', 1, 'https://ror.org/03vj25186 Sumitomo Precision Products (Canada) ä½å‹ē²¾åÆ†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(46259, 'https://ror.org/04c2m5174', 'no_lang_code', 1, 'https://ror.org/04c2m5174 Systems, Applications & Products in Data Processing (Australia)'),
(46260, 'https://ror.org/0212pzf17', 'no_lang_code', 1, 'https://ror.org/0212pzf17 Ventix (Canada)'),
(46261, 'https://ror.org/033wpmv83', 'en', 1, 'https://ror.org/033wpmv83 Water Security Agency'),
(46262, 'https://ror.org/0564zte48', 'no_lang_code', 1, 'https://ror.org/0564zte48 Science City York (United Kingdom)'),
(46263, 'https://ror.org/02aywzc16', 'en', 1, 'https://ror.org/02aywzc16 State Treasurer of South Carolina'),
(46264, 'https://ror.org/03zm9c356', 'no_lang_code', 1, 'https://ror.org/03zm9c356 VesmĆ­r (Czechia)'),
(46265, 'https://ror.org/041jbqr21', 'no_lang_code', 1, 'https://ror.org/041jbqr21 Stillwater (Canada)'),
(46266, 'https://ror.org/0321v8618', 'en', 1, 'https://ror.org/0321v8618 Western Australia Police'),
(46267, 'https://ror.org/04q2tvr21', 'no_lang_code', 1, 'https://ror.org/04q2tvr21 Seastar Chemicals (Canada)'),
(46268, 'https://ror.org/00hpp0v51', 'no_lang_code', 1, 'https://ror.org/00hpp0v51 Vibra Finish (Canada)'),
(46269, 'https://ror.org/007xn0x86', 'en', 1, 'https://ror.org/007xn0x86 Yakama Nation Tribal Council'),
(46270, 'https://ror.org/025hrq177', 'en', 1, 'https://ror.org/025hrq177 Zeta Phi Beta Sorority'),
(46271, 'https://ror.org/05qpyc807', 'no_lang_code', 1, 'https://ror.org/05qpyc807 ZF Screens (Netherlands)'),
(46272, 'https://ror.org/030v79255', 'pt', 1, 'https://ror.org/030v79255 Secretaria de Estado de Segurança Pública'),
(46273, 'https://ror.org/04bdqfw32', 'no_lang_code', 1, 'https://ror.org/04bdqfw32 ZincNyx Energy Solutions (Canada)'),
(46274, 'https://ror.org/005swq337', 'no_lang_code', 1, 'https://ror.org/005swq337 Winterthur Gas & Diesel (Switzerland)'),
(46275, 'https://ror.org/02w6dpq08', 'en', 1, 'https://ror.org/02w6dpq08 Victorian Curriculum and Assessment Authority'),
(46276, 'https://ror.org/03pp1bs03', 'en', 1, 'https://ror.org/03pp1bs03 Saga Prefectural Regional Industry Support Center å…¬ē›Šč²”å›£ę³•äŗŗ ä½č³€ēœŒåœ°åŸŸē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(46277, 'https://ror.org/03qe98b42', 'en', 1, 'https://ror.org/03qe98b42 Victorian Institute of Teaching'),
(46278, 'https://ror.org/04xjcj004', 'no_lang_code', 1, 'https://ror.org/04xjcj004 Woodmere Nursery (Canada)'),
(46279, 'https://ror.org/00b2vwt46', 'en', 1, 'https://ror.org/00b2vwt46 Victorian Multicultural Commission'),
(46280, 'https://ror.org/033y0yj09', 'no_lang_code', 1, 'https://ror.org/033y0yj09 Vivid Economics (United Kingdom)'),
(46281, 'https://ror.org/00bz3eh81', 'no_lang_code', 1, 'https://ror.org/00bz3eh81 Vivienda y Suelo de Euskadi (Spain)'),
(46282, 'https://ror.org/057zb9291', 'no_lang_code', 1, 'https://ror.org/057zb9291 ViVitro Labs (Canada)'),
(46283, 'https://ror.org/05gvz8164', 'en', 1, 'https://ror.org/05gvz8164 Chiba Prefectural Museum of Art'),
(46284, 'https://ror.org/00hgd2m44', 'en', 1, 'https://ror.org/00hgd2m44 Chiba Prefectural Police åƒč‘‰ēœŒč­¦åÆŸ'),
(46285, 'https://ror.org/03n1gcz29', 'no_lang_code', 1, 'https://ror.org/03n1gcz29 Chiba Prefectural Sekiyado-jo Museum'),
(46286, 'https://ror.org/01cnzjq23', 'en', 1, 'https://ror.org/01cnzjq23 Fujimoto Dental and Oral Surgery Clinic č—¤ęœ¬ę­Æē§‘å£č…”å¤–ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(46287, 'https://ror.org/033twts82', 'en', 1, 'https://ror.org/033twts82 Otaki Castle Museum'),
(46288, 'https://ror.org/03r35e117', 'no_lang_code', 1, 'https://ror.org/03r35e117 Chiba Hospital'),
(46289, 'https://ror.org/023gjks82', 'en', 1, 'https://ror.org/023gjks82 Aichi Arts Center ę„›ēŸ„čŠøč”“ę–‡åŒ–ć‚»ćƒ³ć‚æ'),
(46290, 'https://ror.org/045nr1z96', 'en', 1, 'https://ror.org/045nr1z96 Fukui Prefectural Museum of Cultural History ē¦äŗ•ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(46291, 'https://ror.org/00qtxwz11', 'en', 1, 'https://ror.org/00qtxwz11 Aichi Prefectural Police ę„›ēŸ„ēœŒč­¦åÆŸ'),
(46292, 'https://ror.org/01wqjvw03', 'en', 1, 'https://ror.org/01wqjvw03 Aomori Prefectural Police é’ę£®ēœŒč­¦åÆŸ'),
(46293, 'https://ror.org/00j5mnh72', 'en', 1, 'https://ror.org/00j5mnh72 Aichi Prefectural Toyohashi School for the Deaf ę„›ēŸ„ēœŒē«‹č±Šę©‹č¾å­¦ę ”'),
(46294, 'https://ror.org/015p0jm93', 'no_lang_code', 1, 'https://ror.org/015p0jm93 Aoyama Gakuin Kindergarten é’å±±å­¦é™¢å¹¼ēØšåœ’'),
(46295, 'https://ror.org/00q6pdr71', 'no_lang_code', 1, 'https://ror.org/00q6pdr71 Fukuoka Art Museum ē¦å²”åø‚ē¾Žč”“é¤Ø'),
(46296, 'https://ror.org/01jzaah84', 'no_lang_code', 1, 'https://ror.org/01jzaah84 Asahide Gakuen ę—­å‡ŗå­¦åœ’'),
(46297, 'https://ror.org/03ag30k63', 'en', 1, 'https://ror.org/03ag30k63 Fukuoka City Archaeological Center ē¦å²”åø‚åŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(46298, 'https://ror.org/006smnb28', 'en', 1, 'https://ror.org/006smnb28 Kariya City Board of Education åˆˆč°·åø‚ę•™č‚²å§”å“”ä¼šå§”å“”åē°æ'),
(46299, 'https://ror.org/042qt7z37', 'en', 1, 'https://ror.org/042qt7z37 Chiyoda-ku Board of Education'),
(46300, 'https://ror.org/01qzrvf77', 'en', 1, 'https://ror.org/01qzrvf77 Fukuoka Prefectural Museum of Art ē¦å²”ēœŒē«‹ē¾Žč”“é¤Ø'),
(46301, 'https://ror.org/00wqcf653', 'en', 1, 'https://ror.org/00wqcf653 Kurashiki Archaeological Museum'),
(46302, 'https://ror.org/00n7t8t84', 'en', 1, 'https://ror.org/00n7t8t84 Orio Aishin Junior College ęŠ˜å°¾ę„›ēœŸēŸ­ęœŸå¤§å­¦'),
(46303, 'https://ror.org/044rmp068', 'en', 1, 'https://ror.org/044rmp068 Choju Medical Institute é•·åÆæåŒ»å­¦ē ”ē©¶ę‰€'),
(46304, 'https://ror.org/0442gxc81', 'en', 1, 'https://ror.org/0442gxc81 Fukuoka Prefecture Education Center ē¦å²”ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46305, 'https://ror.org/024972556', 'en', 1, 'https://ror.org/024972556 Hakodate City Museum åø‚ē«‹å‡½é¤Øåšē‰©é¤Ø'),
(46306, 'https://ror.org/01pq7ec85', 'en', 1, 'https://ror.org/01pq7ec85 Association for the Advancement of Educational Research'),
(46307, 'https://ror.org/018wrwp68', 'en', 1, 'https://ror.org/018wrwp68 Date City Institute of Funnkawann Culture'),
(46308, 'https://ror.org/01jcyrc18', 'en', 1, 'https://ror.org/01jcyrc18 Fukushima Prefectural Education Center ē¦å³¶ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46309, 'https://ror.org/00qtt4469', 'en', 1, 'https://ror.org/00qtt4469 Fukushima Prefectural Board of Education ē¦å³¶ēœŒę•™č‚²å§”å“”ä¼šć®ćƒ›ćƒ¼'),
(46310, 'https://ror.org/00qnxgg65', 'no_lang_code', 1, 'https://ror.org/00qnxgg65 Fukuyama City Zoo ē¦å±±åø‚ē«‹å‹•ē‰©åœ’'),
(46311, 'https://ror.org/050tayp70', 'en', 1, 'https://ror.org/050tayp70 Breastopia Namba Hospital'),
(46312, 'https://ror.org/02bgk4s52', 'en', 1, 'https://ror.org/02bgk4s52 Flower And Green Bank čŠ±ćØē·‘ć®éŠ€č”Œ'),
(46313, 'https://ror.org/04wezhr50', 'en', 1, 'https://ror.org/04wezhr50 International Institute for the Study of Religions å›½éš›å®—ę•™ē ”ē©¶ę‰€č²”å›£'),
(46314, 'https://ror.org/00h69cf80', 'en', 1, 'https://ror.org/00h69cf80 Hyogo Institute for Traumatic Stress'),
(46315, 'https://ror.org/02k55c210', 'en', 1, 'https://ror.org/02k55c210 Gifu Prefectural Board of Education å²é˜œēœŒę•™č‚²å§”å“”ä¼š'),
(46316, 'https://ror.org/03kryfe63', 'en', 1, 'https://ror.org/03kryfe63 Suzuka City Library éˆ“é¹æåø‚ē«‹å›³ę›øé¤Ø'),
(46317, 'https://ror.org/04d38yh91', 'en', 1, 'https://ror.org/04d38yh91 Tokyo School for the Deaf'),
(46318, 'https://ror.org/03zn1fw73', 'en', 1, 'https://ror.org/03zn1fw73 Tokyo Institute for Municipal Research åø‚å–¶ē ”ē©¶ę±äŗ¬å·„ę„­å¤§å­¦'),
(46319, 'https://ror.org/029043079', 'en', 1, 'https://ror.org/029043079 Edogawa Girls'' Junior & Senior High School ę±Ÿęˆøå·å„³å­äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(46320, 'https://ror.org/02ca33r73', 'en', 1, 'https://ror.org/02ca33r73 International Institute for Advanced Studies é«˜ē­‰ē ”ē©¶č²”å›£ć®å›½éš›ē ”ē©¶ę‰€'),
(46321, 'https://ror.org/03mj2g711', 'en', 1, 'https://ror.org/03mj2g711 Chiba City Museum of Art åƒč‘‰åø‚ē¾Žč”“é¤Ø'),
(46322, 'https://ror.org/0362f6990', 'en', 1, 'https://ror.org/0362f6990 Gifu International Academy of Horticulture å²é˜œēœŒē«‹å›½éš›åœ’čŠøć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(46323, 'https://ror.org/0454arg59', 'en', 1, 'https://ror.org/0454arg59 International Institute for Digital Humanities äø€čˆ¬č²”å›£ę³•äŗŗ äŗŗę–‡ęƒ…å ±å­¦ē ”ē©¶ę‰€'),
(46324, 'https://ror.org/04cx9ny42', 'en', 1, 'https://ror.org/04cx9ny42 Ehime Prefectural College of Agriculture ę„›åŖ›ēœŒē«‹č¾²ę„­å¤§å­¦ę ”'),
(46325, 'https://ror.org/02a5z7132', 'en', 1, 'https://ror.org/02a5z7132 Research Institute for Policies on Pension and Aging å¹“é‡‘ćØé«˜é½¢åŒ–ć«é–¢ć™ć‚‹ę”æē­–ē ”ē©¶ę‰€'),
(46326, 'https://ror.org/051ywtd91', 'en', 1, 'https://ror.org/051ywtd91 Institute of Applied Energy äø€čˆ¬č²”å›£ę³•äŗŗć‚Øćƒćƒ«ć‚®ćƒ¼ē·åˆå·„å­¦ē ”ē©¶ę‰€'),
(46327, 'https://ror.org/0597htz45', 'no_lang_code', 1, 'https://ror.org/0597htz45 Tateyama Caldera Sabo Museum ē«‹å±±ć‚«ćƒ«ćƒ‡ćƒ©ē ‚é˜²åšē‰©é¤Ø'),
(46328, 'https://ror.org/02qd46241', 'en', 1, 'https://ror.org/02qd46241 Institute for International Policy Studies č²”å›£äø–ē•Œå¹³å’Œē ”ē©¶ę‰€'),
(46329, 'https://ror.org/05y846g09', 'en', 1, 'https://ror.org/05y846g09 Chiba Prefectural Government åƒå¶åŽæę”æåŗœ'),
(46330, 'https://ror.org/04574vv96', 'en', 1, 'https://ror.org/04574vv96 Gifu City Museum of History å²é˜œåø‚ę­“å²åšē‰©é¤Ø'),
(46331, 'https://ror.org/01raw4b12', 'en', 1, 'https://ror.org/01raw4b12 Hirosaki Central Hospital å¼˜å‰äø­å¤®ē—…é™¢'),
(46332, 'https://ror.org/025eaap70', 'en', 1, 'https://ror.org/025eaap70 Hokkaido Science Education Center åŒ—ęµ·é“ē«‹ē†ē§‘ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46333, 'https://ror.org/00yg19172', 'en', 1, 'https://ror.org/00yg19172 Kitakyushu City Foundation For Promoting Arts And Culture å…¬ē›Šč²”å›£ę³•äŗŗ åŒ—ä¹å·žåø‚čŠøč”“ę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(46334, 'https://ror.org/03a6v9745', 'en', 1, 'https://ror.org/03a6v9745 Ichikawa City Rehabilitation Hospital åø‚å·åø‚ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(46335, 'https://ror.org/00c0azs61', 'en', 1, 'https://ror.org/00c0azs61 Hiroshima Children''s Museum'),
(46336, 'https://ror.org/00kddkz24', 'en', 1, 'https://ror.org/00kddkz24 Japan Place Name Research Center ę—„ęœ¬åœ°åē ”ē©¶ę‰€'),
(46337, 'https://ror.org/00s72ct24', 'en', 1, 'https://ror.org/00s72ct24 Ichikawa Junior and Senior High School åø‚å·äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(46338, 'https://ror.org/011ec6h17', 'en', 1, 'https://ror.org/011ec6h17 Hiroshima City Museum of Contemporary Art'),
(46339, 'https://ror.org/026a4qe69', 'en', 1, 'https://ror.org/026a4qe69 Ichinomiya Municipal City Hospital 一宮市立市民病院'),
(46340, 'https://ror.org/018bhgj90', 'no_lang_code', 1, 'https://ror.org/018bhgj90 Ichinomiya City Museum äø€å®®åø‚åšē‰©é¤Ø'),
(46341, 'https://ror.org/032mkt145', 'en', 1, 'https://ror.org/032mkt145 Japan Securities Research Institute å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ęœ¬čØ¼åˆøēµŒęøˆē ”ē©¶ę‰€'),
(46342, 'https://ror.org/02pfdh860', 'en', 1, 'https://ror.org/02pfdh860 Japan Small Animal Medical Center ę—„ęœ¬å°å‹•ē‰©ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(46343, 'https://ror.org/04skm6d44', 'en', 1, 'https://ror.org/04skm6d44 Japan University Accreditation Association å…¬ē›Šč²”å›£ę³•äŗŗ å¤§å­¦åŸŗęŗ–å”ä¼š'),
(46344, 'https://ror.org/051q6p014', 'en', 1, 'https://ror.org/051q6p014 Ishikawa Prefecture Archaeological Center ēŸ³å·ēœŒåŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æ'),
(46345, 'https://ror.org/04c9j2485', 'en', 1, 'https://ror.org/04c9j2485 Iida City Museum of Art é£Æē”°åø‚ē¾Žč”“åšē‰©é¤Ø'),
(46346, 'https://ror.org/02m9vgw62', 'en', 1, 'https://ror.org/02m9vgw62 National Museum of Emerging Science and Innovation ę—„ęœ¬ē§‘å­¦ęœŖę„é¤Ø'),
(46347, 'https://ror.org/05ccsp315', 'en', 1, 'https://ror.org/05ccsp315 Nagano Prefectural Agricultural University č¾²ę„­å¤§å­¦ć«é•·é‡ŽēœŒ'),
(46348, 'https://ror.org/03paakw30', 'en', 1, 'https://ror.org/03paakw30 Jiseikai Welfare Kyusyu Hospital ē¦ē„‰ 九州 病院'),
(46349, 'https://ror.org/00x19rt58', 'en', 1, 'https://ror.org/00x19rt58 Jiyu Gakuen Girls School č‡Ŗē”±å­¦åœ’ę˜Žę—„é¤Ø'),
(46350, 'https://ror.org/01rsb5a88', 'en', 1, 'https://ror.org/01rsb5a88 Hiroshima Prefectural Archives åŗƒå³¶ēœŒåŗēœŒē«‹ę–‡ę›øé¤Ø'),
(46351, 'https://ror.org/03mxz9a62', 'en', 1, 'https://ror.org/03mxz9a62 Akita Museum of Art ē§‹ē”°ēœŒē«‹ē¾Žč”“é¤Ø'),
(46352, 'https://ror.org/01r4xes76', 'en', 1, 'https://ror.org/01r4xes76 Museum of Modern Art ē¾¤é¦¬ēœŒē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(46353, 'https://ror.org/04vg6xp73', 'en', 1, 'https://ror.org/04vg6xp73 Hiroshima Prefectural Rehabilitation Center åŗƒå³¶ēœŒē«‹éšœå®³č€…ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(46354, 'https://ror.org/02vd4tk35', 'no_lang_code', 1, 'https://ror.org/02vd4tk35 Mann+Hummel (United States)'),
(46355, 'https://ror.org/05sy11p04', 'no_lang_code', 1, 'https://ror.org/05sy11p04 Roche (Israel) רוש ×™×©×Ø××œ'),
(46356, 'https://ror.org/04a7gbp98', 'en', 1, 'https://ror.org/04a7gbp98 British Geological Survey'),
(46357, 'https://ror.org/036j6hv41', 'en', 1, 'https://ror.org/036j6hv41 Mexican Geological Survey Servicio Geológico Mexicano'),
(46358, 'https://ror.org/01y6s7h62', 'no_lang_code', 1, 'https://ror.org/01y6s7h62 Mƶlnlycke Health Care (United Kingdom)'),
(46359, 'https://ror.org/051vnys61', 'no_lang_code', 1, 'https://ror.org/051vnys61 Meritor (United Kingdom)'),
(46360, 'https://ror.org/04w6n5s59', 'no_lang_code', 1, 'https://ror.org/04w6n5s59 Medtronic (Israel)'),
(46361, 'https://ror.org/0272m3153', 'no_lang_code', 1, 'https://ror.org/0272m3153 WestRock (Germany)'),
(46362, 'https://ror.org/04r6h9t04', 'no_lang_code', 1, 'https://ror.org/04r6h9t04 TE Connectivity (Germany)'),
(46363, 'https://ror.org/00ww6xe24', 'no_lang_code', 1, 'https://ror.org/00ww6xe24 Mersen (United States)'),
(46364, 'https://ror.org/01b606g91', 'no_lang_code', 1, 'https://ror.org/01b606g91 Miba (Austria)'),
(46365, 'https://ror.org/05f2ewd15', 'no_lang_code', 1, 'https://ror.org/05f2ewd15 Nokia (Australia)'),
(46366, 'https://ror.org/05bqd9t64', 'no_lang_code', 1, 'https://ror.org/05bqd9t64 Microchip Technology (Germany)'),
(46367, 'https://ror.org/00gym2132', 'no_lang_code', 1, 'https://ror.org/00gym2132 Mellanox Technologies (Israel) מלאנוקה ×˜×›× ×•×œ×•×’×™×•×Ŗ בע"מ'),
(46368, 'https://ror.org/050d1hk46', 'no_lang_code', 1, 'https://ror.org/050d1hk46 SunEdison (Singapore)'),
(46369, 'https://ror.org/03fjbw519', 'no_lang_code', 1, 'https://ror.org/03fjbw519 Apple (Germany)'),
(46370, 'https://ror.org/003js0r95', 'no_lang_code', 1, 'https://ror.org/003js0r95 Monsanto (Brazil)'),
(46371, 'https://ror.org/015c8af10', 'no_lang_code', 1, 'https://ror.org/015c8af10 Mitsubishi Chemical (Germany)'),
(46372, 'https://ror.org/007c37917', 'no_lang_code', 1, 'https://ror.org/007c37917 Moog (Germany)'),
(46373, 'https://ror.org/014jsry89', 'no_lang_code', 1, 'https://ror.org/014jsry89 Modine (South Korea)'),
(46374, 'https://ror.org/04v71zy84', 'no_lang_code', 1, 'https://ror.org/04v71zy84 Toyoda Gosei (Germany)'),
(46375, 'https://ror.org/03nkrqs25', 'no_lang_code', 1, 'https://ror.org/03nkrqs25 OSI Systems (Germany)'),
(46376, 'https://ror.org/037mzh527', 'no_lang_code', 1, 'https://ror.org/037mzh527 Coloplast (United States)'),
(46377, 'https://ror.org/043tqah33', 'no_lang_code', 1, 'https://ror.org/043tqah33 Mitsubishi Heavy Industries (Germany)'),
(46378, 'https://ror.org/03rx9np38', 'no_lang_code', 1, 'https://ror.org/03rx9np38 BlackBerry (United Kingdom)'),
(46379, 'https://ror.org/05nabdh22', 'no_lang_code', 1, 'https://ror.org/05nabdh22 Mastercard (United Kingdom)'),
(46380, 'https://ror.org/05d3x0w27', 'no_lang_code', 1, 'https://ror.org/05d3x0w27 Brunswick International Freight Terminal (United Kingdom)'),
(46381, 'https://ror.org/01mx6gt82', 'no_lang_code', 1, 'https://ror.org/01mx6gt82 Knorr-Bremse (United States)'),
(46382, 'https://ror.org/00dmed338', 'no_lang_code', 1, 'https://ror.org/00dmed338 Netzsch (Germany)'),
(46383, 'https://ror.org/04s3xvj56', 'no_lang_code', 1, 'https://ror.org/04s3xvj56 Petroleum Geo-Services (United Kingdom)'),
(46384, 'https://ror.org/043frz513', 'no_lang_code', 1, 'https://ror.org/043frz513 Nexans (United Kingdom)'),
(46385, 'https://ror.org/01qysf282', 'no_lang_code', 1, 'https://ror.org/01qysf282 Ingredion (United Kingdom)'),
(46386, 'https://ror.org/032wr9623', 'no_lang_code', 1, 'https://ror.org/032wr9623 Jain Irrigation Systems (Israel)'),
(46387, 'https://ror.org/03zna3e03', 'no_lang_code', 1, 'https://ror.org/03zna3e03 Oerlikon (Germany)'),
(46388, 'https://ror.org/01gfjdb18', 'no_lang_code', 1, 'https://ror.org/01gfjdb18 Lenovo (Japan)'),
(46389, 'https://ror.org/035fxx726', 'no_lang_code', 1, 'https://ror.org/035fxx726 Nidec (United Kingdom)'),
(46390, 'https://ror.org/05hxss661', 'no_lang_code', 1, 'https://ror.org/05hxss661 NEC (Germany) ę—„ęœ¬é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(46391, 'https://ror.org/0487grk59', 'no_lang_code', 1, 'https://ror.org/0487grk59 Salzgitter Group (Singapore)'),
(46392, 'https://ror.org/02s95xt63', 'no_lang_code', 1, 'https://ror.org/02s95xt63 Canon (United Kingdom)'),
(46393, 'https://ror.org/04ggpbw68', 'no_lang_code', 1, 'https://ror.org/04ggpbw68 Nuance Communications (Austria)'),
(46394, 'https://ror.org/05h40ds73', 'no_lang_code', 1, 'https://ror.org/05h40ds73 Westinghouse Electric (Japan)'),
(46395, 'https://ror.org/03xqv3p85', 'no_lang_code', 1, 'https://ror.org/03xqv3p85 Takeda (Germany)'),
(46396, 'https://ror.org/04185av43', 'no_lang_code', 1, 'https://ror.org/04185av43 IHI Corporation (United States)'),
(46397, 'https://ror.org/043wc6127', 'no_lang_code', 1, 'https://ror.org/043wc6127 Northrop Grumman (Germany)'),
(46398, 'https://ror.org/014yket62', 'no_lang_code', 1, 'https://ror.org/014yket62 Opera Software (Ireland)'),
(46399, 'https://ror.org/00zw8r556', 'no_lang_code', 1, 'https://ror.org/00zw8r556 Olympus (Germany)'),
(46400, 'https://ror.org/01b6ear34', 'no_lang_code', 1, 'https://ror.org/01b6ear34 Sulzer (United Kingdom)'),
(46401, 'https://ror.org/03wsdn138', 'no_lang_code', 1, 'https://ror.org/03wsdn138 OmniVision Technologies (China)'),
(46402, 'https://ror.org/04k7ny084', 'no_lang_code', 1, 'https://ror.org/04k7ny084 New Technology (Israel)'),
(46403, 'https://ror.org/0072m3y51', 'no_lang_code', 1, 'https://ror.org/0072m3y51 Oracle (Israel)'),
(46404, 'https://ror.org/0063zxz13', 'no_lang_code', 1, 'https://ror.org/0063zxz13 Avid (Israel)'),
(46405, 'https://ror.org/01004y747', 'no_lang_code', 1, 'https://ror.org/01004y747 Arris (United Kingdom)'),
(46406, 'https://ror.org/05jrxre70', 'no_lang_code', 1, 'https://ror.org/05jrxre70 Wikov (United Kingdom)'),
(46407, 'https://ror.org/0000h6r91', 'no_lang_code', 1, 'https://ror.org/0000h6r91 Naval Group (Ireland)'),
(46408, 'https://ror.org/02yq51g52', 'no_lang_code', 1, 'https://ror.org/02yq51g52 Ottobock (United States)'),
(46409, 'https://ror.org/05d6n5j65', 'no_lang_code', 1, 'https://ror.org/05d6n5j65 Parker Hannifin (Germany)'),
(46410, 'https://ror.org/04wyxrk96', 'no_lang_code', 1, 'https://ror.org/04wyxrk96 Orica (Singapore)'),
(46411, 'https://ror.org/00eqgtd35', 'no_lang_code', 1, 'https://ror.org/00eqgtd35 Paion (Germany)'),
(46412, 'https://ror.org/00gf6rd21', 'no_lang_code', 1, 'https://ror.org/00gf6rd21 Ormazabal (Germany)'),
(46413, 'https://ror.org/01zkeq752', 'no_lang_code', 1, 'https://ror.org/01zkeq752 Valeo (Germany)'),
(46414, 'https://ror.org/020h5rq76', 'no_lang_code', 1, 'https://ror.org/020h5rq76 Weatherford (United Kingdom)'),
(46415, 'https://ror.org/01fykt827', 'no_lang_code', 1, 'https://ror.org/01fykt827 Curtiss-Wright (United Kingdom)'),
(46416, 'https://ror.org/04zp8dw64', 'no_lang_code', 1, 'https://ror.org/04zp8dw64 Nippon Sheet Glass (United States)'),
(46417, 'https://ror.org/02b00s810', 'no_lang_code', 1, 'https://ror.org/02b00s810 eBay (Ireland)'),
(46418, 'https://ror.org/02wwrgv75', 'no_lang_code', 1, 'https://ror.org/02wwrgv75 Pfeiffer Vacuum (Germany)'),
(46419, 'https://ror.org/036dq0x98', 'no_lang_code', 1, 'https://ror.org/036dq0x98 Perkinelmer (Singapore)'),
(46420, 'https://ror.org/0228gqj17', 'no_lang_code', 1, 'https://ror.org/0228gqj17 Pitney Bowes (Germany)'),
(46421, 'https://ror.org/00jd8yr11', 'no_lang_code', 1, 'https://ror.org/00jd8yr11 Pitney Bowes (United Kingdom)'),
(46422, 'https://ror.org/04ehjr030', 'no_lang_code', 1, 'https://ror.org/04ehjr030 Apple (Israel)'),
(46423, 'https://ror.org/034x48g49', 'no_lang_code', 1, 'https://ror.org/034x48g49 Perrigo (Israel)'),
(46424, 'https://ror.org/0126q1y69', 'no_lang_code', 1, 'https://ror.org/0126q1y69 Plasan (Israel) פלהן'),
(46425, 'https://ror.org/016sgt720', 'no_lang_code', 1, 'https://ror.org/016sgt720 Morgan Advanced Materials (Germany)'),
(46426, 'https://ror.org/02av1as94', 'no_lang_code', 1, 'https://ror.org/02av1as94 Phoenix Contact (United States)'),
(46427, 'https://ror.org/04g918p03', 'no_lang_code', 1, 'https://ror.org/04g918p03 Oerlikon (United States)'),
(46428, 'https://ror.org/0272gsy54', 'no_lang_code', 1, 'https://ror.org/0272gsy54 BMT Group (United States)'),
(46429, 'https://ror.org/038scr081', 'no_lang_code', 1, 'https://ror.org/038scr081 Nifco (China)'),
(46430, 'https://ror.org/00w3p6078', 'no_lang_code', 1, 'https://ror.org/00w3p6078 BlueGreen Geophysics (United States)'),
(46431, 'https://ror.org/01xzb5e19', 'no_lang_code', 1, 'https://ror.org/01xzb5e19 Ultra Electronics 3 Phoenix (United States)'),
(46432, 'https://ror.org/03nbky582', 'en', 1, 'https://ror.org/03nbky582 University-National Oceanographic Laboratory System'),
(46433, 'https://ror.org/00zyc7969', 'en', 1, 'https://ror.org/00zyc7969 United States Coast Guard'),
(46434, 'https://ror.org/01v23xq73', 'no_lang_code', 1, 'https://ror.org/01v23xq73 Eaton (Taiwan)'),
(46435, 'https://ror.org/05n6b2q68', 'no_lang_code', 1, 'https://ror.org/05n6b2q68 Postnova Analytics (Germany)'),
(46436, 'https://ror.org/042jprk80', 'no_lang_code', 1, 'https://ror.org/042jprk80 Chelyabinskiy Gosudarstvennyy Institut Lazernoy Khirurgii Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лазерной Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(46437, 'https://ror.org/041yd4786', 'en', 1, 'https://ror.org/041yd4786 Great Lakes Aquarium'),
(46438, 'https://ror.org/00g9ma558', 'no_lang_code', 1, 'https://ror.org/00g9ma558 Microsemi (Israel)'),
(46439, 'https://ror.org/004b7jc50', 'no_lang_code', 1, 'https://ror.org/004b7jc50 Maxim Integrated (United Kingdom)'),
(46440, 'https://ror.org/03ckxvj81', 'no_lang_code', 1, 'https://ror.org/03ckxvj81 MACOM (United Kingdom)'),
(46441, 'https://ror.org/027e1a103', 'no_lang_code', 1, 'https://ror.org/027e1a103 Qisda (China)'),
(46442, 'https://ror.org/053bn9w04', 'no_lang_code', 1, 'https://ror.org/053bn9w04 PROTO Manufacturing (Canada)'),
(46443, 'https://ror.org/00vdgr656', 'no_lang_code', 1, 'https://ror.org/00vdgr656 QRxPharma (Australia)'),
(46444, 'https://ror.org/031fvch84', 'no_lang_code', 1, 'https://ror.org/031fvch84 Kirchhoff (Germany)'),
(46445, 'https://ror.org/03967py46', 'no_lang_code', 1, 'https://ror.org/03967py46 Prysmian Group (Germany)'),
(46446, 'https://ror.org/04s6bs470', 'no_lang_code', 1, 'https://ror.org/04s6bs470 Prysmian Group (United States)'),
(46447, 'https://ror.org/04p43ja26', 'no_lang_code', 1, 'https://ror.org/04p43ja26 ResMed (Germany)'),
(46448, 'https://ror.org/03nsmq393', 'no_lang_code', 1, 'https://ror.org/03nsmq393 Seco Warwick (United States)'),
(46449, 'https://ror.org/05gzqyx59', 'en', 1, 'https://ror.org/05gzqyx59 Harbor Branch Oceanographic Institute'),
(46450, 'https://ror.org/00jws7929', 'en', 1, 'https://ror.org/00jws7929 Department for Exiting the European Union'),
(46451, 'https://ror.org/02aybg366', 'en', 1, 'https://ror.org/02aybg366 Qingdao Institute of Marine Geology äø­å›½åœ°č“Øč°ƒęŸ„å±€ é’å²›ęµ·ę“‹åœ°č“Øē ”ē©¶ę‰€'),
(46452, 'https://ror.org/008krtd86', 'no_lang_code', 1, 'https://ror.org/008krtd86 Thomson Reuters (United Kingdom)'),
(46453, 'https://ror.org/01gyg7015', 'no_lang_code', 1, 'https://ror.org/01gyg7015 Mallinckrodt (Japan)'),
(46454, 'https://ror.org/00jfs8131', 'no_lang_code', 1, 'https://ror.org/00jfs8131 Reliance Industries (United States)'),
(46455, 'https://ror.org/04hyg4h58', 'no_lang_code', 1, 'https://ror.org/04hyg4h58 Qiagen (United Kingdom)'),
(46456, 'https://ror.org/057vt6455', 'no_lang_code', 1, 'https://ror.org/057vt6455 Ball (United Kingdom)'),
(46457, 'https://ror.org/05f5ss468', 'no_lang_code', 1, 'https://ror.org/05f5ss468 Excelitas Technologies (Germany)'),
(46458, 'https://ror.org/01wbz2121', 'no_lang_code', 1, 'https://ror.org/01wbz2121 Rieter (Germany)'),
(46459, 'https://ror.org/047qhbs69', 'no_lang_code', 1, 'https://ror.org/047qhbs69 Rockwell Automation (Singapore)'),
(46460, 'https://ror.org/01gr8nm68', 'no_lang_code', 1, 'https://ror.org/01gr8nm68 Rockwell Automation (Germany)'),
(46461, 'https://ror.org/0090z5g12', 'no_lang_code', 1, 'https://ror.org/0090z5g12 Lhoist (Germany)'),
(46462, 'https://ror.org/02zy9xx44', 'no_lang_code', 1, 'https://ror.org/02zy9xx44 Rieter (Switzerland)'),
(46463, 'https://ror.org/00eys7z46', 'no_lang_code', 1, 'https://ror.org/00eys7z46 Renesas Electronics (United Kingdom) ćƒ«ćƒć‚µć‚¹ ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(46464, 'https://ror.org/05txbz736', 'no_lang_code', 1, 'https://ror.org/05txbz736 Saint-Gobain (Germany)'),
(46465, 'https://ror.org/04dd9eh65', 'no_lang_code', 1, 'https://ror.org/04dd9eh65 Solvay (China)'),
(46466, 'https://ror.org/004jk3542', 'no_lang_code', 1, 'https://ror.org/004jk3542 Renishaw (Ireland)'),
(46467, 'https://ror.org/00xmngc47', 'no_lang_code', 1, 'https://ror.org/00xmngc47 Dow Chemical (South Korea)'),
(46468, 'https://ror.org/03fd82c91', 'no_lang_code', 1, 'https://ror.org/03fd82c91 Rohm (Germany)'),
(46469, 'https://ror.org/0134cjh35', 'no_lang_code', 1, 'https://ror.org/0134cjh35 Gemalto (Israel)'),
(46470, 'https://ror.org/00386qk52', 'no_lang_code', 1, 'https://ror.org/00386qk52 Sandvik (Austria)'),
(46471, 'https://ror.org/04bg5zd67', 'no_lang_code', 1, 'https://ror.org/04bg5zd67 Sandvik (South Africa)'),
(46472, 'https://ror.org/016rz1a24', 'no_lang_code', 1, 'https://ror.org/016rz1a24 Lockheed Martin (Australia)'),
(46473, 'https://ror.org/04j80nh06', 'no_lang_code', 1, 'https://ror.org/04j80nh06 RUAG (Germany)'),
(46474, 'https://ror.org/04my8ty22', 'no_lang_code', 1, 'https://ror.org/04my8ty22 Robert Bosch (India)'),
(46475, 'https://ror.org/01yjxek63', 'no_lang_code', 1, 'https://ror.org/01yjxek63 Robert Bosch (Brazil)'),
(46476, 'https://ror.org/00z290809', 'no_lang_code', 1, 'https://ror.org/00z290809 Sandvik (Switzerland)'),
(46477, 'https://ror.org/04ewyef80', 'no_lang_code', 1, 'https://ror.org/04ewyef80 Saint-Gobain (Canada)'),
(46478, 'https://ror.org/01htp6d30', 'no_lang_code', 1, 'https://ror.org/01htp6d30 Saint-Gobain (United Kingdom)'),
(46479, 'https://ror.org/052sehq92', 'no_lang_code', 1, 'https://ror.org/052sehq92 Teleflex (Germany)'),
(46480, 'https://ror.org/02jqsa674', 'no_lang_code', 1, 'https://ror.org/02jqsa674 Eni (United Kingdom)'),
(46481, 'https://ror.org/02x4grb16', 'no_lang_code', 1, 'https://ror.org/02x4grb16 Sartorius (United States)'),
(46482, 'https://ror.org/0197y4k63', 'no_lang_code', 1, 'https://ror.org/0197y4k63 MinebeaMitsumi (Germany)'),
(46483, 'https://ror.org/04k59vn11', 'no_lang_code', 1, 'https://ror.org/04k59vn11 Sasol (Germany)'),
(46484, 'https://ror.org/01j4vgr28', 'no_lang_code', 1, 'https://ror.org/01j4vgr28 Essilor (Germany)'),
(46485, 'https://ror.org/045rgx026', 'no_lang_code', 1, 'https://ror.org/045rgx026 Saab (Switzerland)'),
(46486, 'https://ror.org/05dhb9591', 'no_lang_code', 1, 'https://ror.org/05dhb9591 Saurer (Germany)'),
(46487, 'https://ror.org/037ngs497', 'no_lang_code', 1, 'https://ror.org/037ngs497 Schauenburg (Germany)'),
(46488, 'https://ror.org/03k1ymh78', 'no_lang_code', 1, 'https://ror.org/03k1ymh78 Samsung (Israel)'),
(46489, 'https://ror.org/03z19e593', 'no_lang_code', 1, 'https://ror.org/03z19e593 Schenck Process (Germany)'),
(46490, 'https://ror.org/03hy1zg87', 'no_lang_code', 1, 'https://ror.org/03hy1zg87 Western Digital (Israel)'),
(46491, 'https://ror.org/035vbre72', 'no_lang_code', 1, 'https://ror.org/035vbre72 Western Digital (China)'),
(46492, 'https://ror.org/056xbkp48', 'no_lang_code', 1, 'https://ror.org/056xbkp48 Assa Abloy (United Kingdom)'),
(46493, 'https://ror.org/00ypwtb83', 'no_lang_code', 1, 'https://ror.org/00ypwtb83 Svenska Cellulosa (United Kingdom) Svenska Cellulosa Aktiebolaget'),
(46494, 'https://ror.org/051k6dd41', 'no_lang_code', 1, 'https://ror.org/051k6dd41 Shimadzu (United Kingdom)'),
(46495, 'https://ror.org/01q5b3b88', 'no_lang_code', 1, 'https://ror.org/01q5b3b88 Shimano (Singapore)'),
(46496, 'https://ror.org/01ftbyb35', 'no_lang_code', 1, 'https://ror.org/01ftbyb35 Johnson Controls (United Kingdom)'),
(46497, 'https://ror.org/0318teb82', 'no_lang_code', 1, 'https://ror.org/0318teb82 Kimberly-Clark (Canada)'),
(46498, 'https://ror.org/0442ypy80', 'no_lang_code', 1, 'https://ror.org/0442ypy80 Zodiac Aerospace (Germany)'),
(46499, 'https://ror.org/03j79f182', 'no_lang_code', 1, 'https://ror.org/03j79f182 Balfour Beatty (Germany)'),
(46500, 'https://ror.org/01chd1z63', 'no_lang_code', 1, 'https://ror.org/01chd1z63 Joyson Safety Systems (Germany)'),
(46501, 'https://ror.org/02n72nx11', 'no_lang_code', 1, 'https://ror.org/02n72nx11 Danaher (China)'),
(46502, 'https://ror.org/02pvszw76', 'no_lang_code', 1, 'https://ror.org/02pvszw76 Semikron (Germany)'),
(46503, 'https://ror.org/05tawrz57', 'no_lang_code', 1, 'https://ror.org/05tawrz57 Megger (Germany)'),
(46504, 'https://ror.org/0247c3d85', 'no_lang_code', 1, 'https://ror.org/0247c3d85 Siemens (Israel)'),
(46505, 'https://ror.org/002mban83', 'no_lang_code', 1, 'https://ror.org/002mban83 Sensient Technologies (Germany)'),
(46506, 'https://ror.org/03w8f2q69', 'no_lang_code', 1, 'https://ror.org/03w8f2q69 Danone (United Kingdom)'),
(46507, 'https://ror.org/057b93w27', 'no_lang_code', 1, 'https://ror.org/057b93w27 Scientific Games (Austria)'),
(46508, 'https://ror.org/0063wfd54', 'no_lang_code', 1, 'https://ror.org/0063wfd54 First Sensor (Germany)'),
(46509, 'https://ror.org/05dvgp237', 'no_lang_code', 1, 'https://ror.org/05dvgp237 Siemens (Australia)'),
(46510, 'https://ror.org/002dnnm39', 'no_lang_code', 1, 'https://ror.org/002dnnm39 Siemens (Brazil)'),
(46511, 'https://ror.org/00wjam130', 'no_lang_code', 1, 'https://ror.org/00wjam130 Sequans Communications (United Kingdom)'),
(46512, 'https://ror.org/003x8h913', 'no_lang_code', 1, 'https://ror.org/003x8h913 Eastman Chemical Company (Germany)'),
(46513, 'https://ror.org/02m3x8945', 'no_lang_code', 1, 'https://ror.org/02m3x8945 GlaxoSmithKline (Ireland)'),
(46514, 'https://ror.org/00ch15449', 'no_lang_code', 1, 'https://ror.org/00ch15449 Somfy (Germany)'),
(46515, 'https://ror.org/03ajfdb10', 'no_lang_code', 1, 'https://ror.org/03ajfdb10 Meyer Burger Technology (Germany)'),
(46516, 'https://ror.org/02qd2bv04', 'no_lang_code', 1, 'https://ror.org/02qd2bv04 Sony (China) 瓢尼'),
(46517, 'https://ror.org/05g2nyp02', 'no_lang_code', 1, 'https://ror.org/05g2nyp02 Sony (Spain)'),
(46518, 'https://ror.org/0214y7014', 'no_lang_code', 1, 'https://ror.org/0214y7014 Sony (Taiwan)'),
(46519, 'https://ror.org/02hzfe323', 'no_lang_code', 1, 'https://ror.org/02hzfe323 Skyworks Solutions (Japan)'),
(46520, 'https://ror.org/03ete9c40', 'no_lang_code', 1, 'https://ror.org/03ete9c40 EchoStar (India)'),
(46521, 'https://ror.org/055mvz558', 'no_lang_code', 1, 'https://ror.org/055mvz558 Sumitomo Precision Products (Japan) ä½å‹ē²¾åÆ†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(46522, 'https://ror.org/01hwrdv70', 'no_lang_code', 1, 'https://ror.org/01hwrdv70 Silence Therapeutics (Germany)'),
(46523, 'https://ror.org/03xg8x064', 'no_lang_code', 1, 'https://ror.org/03xg8x064 3D Systems (Israel)'),
(46524, 'https://ror.org/0348bpw87', 'no_lang_code', 1, 'https://ror.org/0348bpw87 STMicroelectronics (China)'),
(46525, 'https://ror.org/03vjb5959', 'no_lang_code', 1, 'https://ror.org/03vjb5959 Cypress Semiconductor Corporation (Israel)'),
(46526, 'https://ror.org/053t12b24', 'no_lang_code', 1, 'https://ror.org/053t12b24 STMicroelectronics (Malta)'),
(46527, 'https://ror.org/05hh7s019', 'no_lang_code', 1, 'https://ror.org/05hh7s019 STMicroelectronics (Germany)'),
(46528, 'https://ror.org/0561ky130', 'no_lang_code', 1, 'https://ror.org/0561ky130 Cypress Semiconductor Corporation (Japan)'),
(46529, 'https://ror.org/030c4gr60', 'no_lang_code', 1, 'https://ror.org/030c4gr60 STMicroelectronics (Singapore)'),
(46530, 'https://ror.org/00ft7bw25', 'no_lang_code', 1, 'https://ror.org/00ft7bw25 STMicroelectronics (India)'),
(46531, 'https://ror.org/00qtbt108', 'no_lang_code', 1, 'https://ror.org/00qtbt108 Stanley Black & Decker (Switzerland)'),
(46532, 'https://ror.org/03f5vkk69', 'no_lang_code', 1, 'https://ror.org/03f5vkk69 Scientific Games (Australia)'),
(46533, 'https://ror.org/04xegkb78', 'no_lang_code', 1, 'https://ror.org/04xegkb78 Sphaera Pharma (Singapore)'),
(46534, 'https://ror.org/020p6tc25', 'no_lang_code', 1, 'https://ror.org/020p6tc25 Karl Storz (Switzerland)'),
(46535, 'https://ror.org/042hp4645', 'no_lang_code', 1, 'https://ror.org/042hp4645 Stratasys (Israel)'),
(46536, 'https://ror.org/03cb8f280', 'no_lang_code', 1, 'https://ror.org/03cb8f280 Philips (Israel)'),
(46537, 'https://ror.org/05f5r6b93', 'no_lang_code', 1, 'https://ror.org/05f5r6b93 Covestro (Japan)'),
(46538, 'https://ror.org/02ax1e863', 'no_lang_code', 1, 'https://ror.org/02ax1e863 525 Solutions (United States)'),
(46539, 'https://ror.org/02bwx5h75', 'no_lang_code', 1, 'https://ror.org/02bwx5h75 Tau Science (United States)'),
(46540, 'https://ror.org/04b47hp24', 'no_lang_code', 1, 'https://ror.org/04b47hp24 Temper (United States)'),
(46541, 'https://ror.org/04sfv4t11', 'no_lang_code', 1, 'https://ror.org/04sfv4t11 FPoliSolutions (United States)'),
(46542, 'https://ror.org/05man5y22', 'no_lang_code', 1, 'https://ror.org/05man5y22 Nhu Energy (United States)'),
(46543, 'https://ror.org/05ncabx60', 'no_lang_code', 1, 'https://ror.org/05ncabx60 Adroit Materials (United States)'),
(46544, 'https://ror.org/0458ehh05', 'no_lang_code', 1, 'https://ror.org/0458ehh05 Free Form Fibers (United States)'),
(46545, 'https://ror.org/03a3w5708', 'no_lang_code', 1, 'https://ror.org/03a3w5708 Freestone Environmental Services (United States)'),
(46546, 'https://ror.org/0496gtv62', 'no_lang_code', 1, 'https://ror.org/0496gtv62 TetraVue (United States)'),
(46547, 'https://ror.org/002y0mb20', 'no_lang_code', 1, 'https://ror.org/002y0mb20 Advanced Research Corporation (United States)'),
(46548, 'https://ror.org/04hv0jm68', 'no_lang_code', 1, 'https://ror.org/04hv0jm68 OLEDWorks (United States)'),
(46549, 'https://ror.org/02fxdpa68', 'no_lang_code', 1, 'https://ror.org/02fxdpa68 Afingen (United States)'),
(46550, 'https://ror.org/04xvx5n85', 'no_lang_code', 1, 'https://ror.org/04xvx5n85 Samraksh (United States)'),
(46551, 'https://ror.org/055sxys40', 'no_lang_code', 1, 'https://ror.org/055sxys40 General Engineering and Research (United States)'),
(46552, 'https://ror.org/04qvxeh20', 'no_lang_code', 1, 'https://ror.org/04qvxeh20 Air Squared (United States)'),
(46553, 'https://ror.org/02bhxay29', 'no_lang_code', 1, 'https://ror.org/02bhxay29 Opti O2 (United States)'),
(46554, 'https://ror.org/02g79nm61', 'no_lang_code', 1, 'https://ror.org/02g79nm61 Akonia Holographics (United States)'),
(46555, 'https://ror.org/028mbk641', 'no_lang_code', 1, 'https://ror.org/028mbk641 Transcend Engineering (United States)'),
(46556, 'https://ror.org/00vjp0q55', 'no_lang_code', 1, 'https://ror.org/00vjp0q55 OptiFuel Technology (United States)'),
(46557, 'https://ror.org/032sjsv10', 'no_lang_code', 1, 'https://ror.org/032sjsv10 Alphacore (United States)'),
(46558, 'https://ror.org/03am9qa36', 'no_lang_code', 1, 'https://ror.org/03am9qa36 American Ecotech (United States)'),
(46559, 'https://ror.org/00qm7ky44', 'no_lang_code', 1, 'https://ror.org/00qm7ky44 Global Power Technologies Group (United States)'),
(46560, 'https://ror.org/01p37tq51', 'no_lang_code', 1, 'https://ror.org/01p37tq51 Analytical Instrument Systems (United States)'),
(46561, 'https://ror.org/02q5b9n70', 'no_lang_code', 1, 'https://ror.org/02q5b9n70 Transient Plasma Systems (United States)'),
(46562, 'https://ror.org/00gr1ep19', 'no_lang_code', 1, 'https://ror.org/00gr1ep19 Gnosys Systems (United States)'),
(46563, 'https://ror.org/05v424314', 'no_lang_code', 1, 'https://ror.org/05v424314 Oregon Physics (United States)'),
(46564, 'https://ror.org/00sja8c39', 'no_lang_code', 1, 'https://ror.org/00sja8c39 Apeak (United States)'),
(46565, 'https://ror.org/005b7va47', 'no_lang_code', 1, 'https://ror.org/005b7va47 GroundMetrics (United States)'),
(46566, 'https://ror.org/01vry7t57', 'no_lang_code', 1, 'https://ror.org/01vry7t57 Pacific Microchip (United States)'),
(46567, 'https://ror.org/04e5hj993', 'no_lang_code', 1, 'https://ror.org/04e5hj993 Packet Digital (United States)'),
(46568, 'https://ror.org/02dry1b63', 'no_lang_code', 1, 'https://ror.org/02dry1b63 Trimeric (United States)'),
(46569, 'https://ror.org/01qksk953', 'no_lang_code', 1, 'https://ror.org/01qksk953 Paisano Labs (United States)'),
(46570, 'https://ror.org/03qnn2831', 'no_lang_code', 1, 'https://ror.org/03qnn2831 APS Technology (United States)'),
(46571, 'https://ror.org/01mgfe132', 'no_lang_code', 1, 'https://ror.org/01mgfe132 H3D (United States)'),
(46572, 'https://ror.org/02mn1ft77', 'no_lang_code', 1, 'https://ror.org/02mn1ft77 Partow Technologies (United States)'),
(46573, 'https://ror.org/04mf33p23', 'no_lang_code', 1, 'https://ror.org/04mf33p23 Tucker Innovations (United States)'),
(46574, 'https://ror.org/05bxvt155', 'no_lang_code', 1, 'https://ror.org/05bxvt155 Perma Works (United States)'),
(46575, 'https://ror.org/010594c48', 'no_lang_code', 1, 'https://ror.org/010594c48 Aquaneers (United States)'),
(46576, 'https://ror.org/02xdeet92', 'no_lang_code', 1, 'https://ror.org/02xdeet92 Handix Scientific (United States)'),
(46577, 'https://ror.org/015hjhv86', 'no_lang_code', 1, 'https://ror.org/015hjhv86 Tungsten Heavy Powder & Parts (United States)'),
(46578, 'https://ror.org/048hq4x94', 'no_lang_code', 1, 'https://ror.org/048hq4x94 Forge Nano (United States)'),
(46579, 'https://ror.org/01zmqmr49', 'no_lang_code', 1, 'https://ror.org/01zmqmr49 Integrated Dynamic Electron Solutions (United States)'),
(46580, 'https://ror.org/02d8geg10', 'no_lang_code', 1, 'https://ror.org/02d8geg10 Power Info (United States)'),
(46581, 'https://ror.org/053qvcb25', 'no_lang_code', 1, 'https://ror.org/053qvcb25 Helios-NRG (United States)'),
(46582, 'https://ror.org/00s4ph488', 'no_lang_code', 1, 'https://ror.org/00s4ph488 Integrated Sensors (United States)'),
(46583, 'https://ror.org/03rgkeg55', 'no_lang_code', 1, 'https://ror.org/03rgkeg55 Ayar Labs (United States)'),
(46584, 'https://ror.org/01v0w5h80', 'no_lang_code', 1, 'https://ror.org/01v0w5h80 Prescient Weather (United states)'),
(46585, 'https://ror.org/00qehty47', 'no_lang_code', 1, 'https://ror.org/00qehty47 Prime Solutions Group (United States)'),
(46586, 'https://ror.org/02pkcj269', 'no_lang_code', 1, 'https://ror.org/02pkcj269 Bailey Tool & Manufacturing (United States)'),
(46587, 'https://ror.org/03rxmnz72', 'no_lang_code', 1, 'https://ror.org/03rxmnz72 PrimeNano (united States)'),
(46588, 'https://ror.org/018qh7880', 'no_lang_code', 1, 'https://ror.org/018qh7880 Introspective Systems (United States)'),
(46589, 'https://ror.org/02bdqac63', 'no_lang_code', 1, 'https://ror.org/02bdqac63 Princeton Power Systems (United states)'),
(46590, 'https://ror.org/015chfs79', 'no_lang_code', 1, 'https://ror.org/015chfs79 ION Engineering (United States)'),
(46591, 'https://ror.org/020x0c621', 'no_lang_code', 1, 'https://ror.org/020x0c621 Hewlett Packard Enterprise (United States)'),
(46592, 'https://ror.org/05kz93b69', 'no_lang_code', 1, 'https://ror.org/05kz93b69 Boulder Environmental Sciences and Technology (United States)'),
(46593, 'https://ror.org/01rfee362', 'no_lang_code', 1, 'https://ror.org/01rfee362 k-Space Associates (United States)'),
(46594, 'https://ror.org/059ne1773', 'no_lang_code', 1, 'https://ror.org/059ne1773 Hyperv Technologies (United States)'),
(46595, 'https://ror.org/02tntw181', 'no_lang_code', 1, 'https://ror.org/02tntw181 Broala (United States)'),
(46596, 'https://ror.org/00c87zj30', 'no_lang_code', 1, 'https://ror.org/00c87zj30 Industrial Microbes (United States)'),
(46597, 'https://ror.org/02p7qqb42', 'no_lang_code', 1, 'https://ror.org/02p7qqb42 Keystone Tower Systems (United States)'),
(46598, 'https://ror.org/059771278', 'en', 1, 'https://ror.org/059771278 Provision Healthcare'),
(46599, 'https://ror.org/041f2j414', 'no_lang_code', 1, 'https://ror.org/041f2j414 InnoCit (United States)');
INSERT INTO `rors` VALUES
(46600, 'https://ror.org/01kys2h96', 'no_lang_code', 1, 'https://ror.org/01kys2h96 Quantum Technology Sciences (United States)'),
(46601, 'https://ror.org/00ynznf11', 'no_lang_code', 1, 'https://ror.org/00ynznf11 Knite (United States)'),
(46602, 'https://ror.org/02kdt8437', 'no_lang_code', 1, 'https://ror.org/02kdt8437 Catalina Scientific (United States)'),
(46603, 'https://ror.org/05tjmvm75', 'no_lang_code', 1, 'https://ror.org/05tjmvm75 InnoSepra (United States)'),
(46604, 'https://ror.org/05tgg8n11', 'no_lang_code', 1, 'https://ror.org/05tgg8n11 NovaTech (United States)'),
(46605, 'https://ror.org/004yf8m37', 'no_lang_code', 1, 'https://ror.org/004yf8m37 Reaction35 (United States)'),
(46606, 'https://ror.org/04e3bjn48', 'no_lang_code', 1, 'https://ror.org/04e3bjn48 Magneto-Inertial Fusion Technologies (United States)'),
(46607, 'https://ror.org/052ec8m16', 'no_lang_code', 1, 'https://ror.org/052ec8m16 Charmworks (United States)'),
(46608, 'https://ror.org/04qca6973', 'no_lang_code', 1, 'https://ror.org/04qca6973 Chemical Semantics (United States)'),
(46609, 'https://ror.org/040kgfc87', 'no_lang_code', 1, 'https://ror.org/040kgfc87 Lightwave Photonics (United States)'),
(46610, 'https://ror.org/038jhf436', 'no_lang_code', 1, 'https://ror.org/038jhf436 Rivis (United States)'),
(46611, 'https://ror.org/04wka5f51', 'no_lang_code', 1, 'https://ror.org/04wka5f51 Citrine Informatics (United States)'),
(46612, 'https://ror.org/01fjm5093', 'no_lang_code', 1, 'https://ror.org/01fjm5093 CM Technologies (United States)'),
(46613, 'https://ror.org/016zkbb25', 'en', 1, 'https://ror.org/016zkbb25 Royal Association for Deaf people'),
(46614, 'https://ror.org/01cz0ts58', 'no_lang_code', 1, 'https://ror.org/01cz0ts58 Lucent Optics (United States)'),
(46615, 'https://ror.org/00xf3s895', 'no_lang_code', 1, 'https://ror.org/00xf3s895 Vadient Optics (United States)'),
(46616, 'https://ror.org/03cxbpn31', 'no_lang_code', 1, 'https://ror.org/03cxbpn31 Lumisyn (United States)'),
(46617, 'https://ror.org/030h9s280', 'en', 1, 'https://ror.org/030h9s280 St. Petersburg Department of Steklov Institute of Mathematics Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Šµ отГеление ŠœŠ°Ń‚ематического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° им. Š’. А. Дтеклова Š ŠŠ, abbreviated ŠŸŠžŠœŠ˜'),
(46618, 'https://ror.org/01hm2rz97', 'no_lang_code', 1, 'https://ror.org/01hm2rz97 Cool Energy (United States)'),
(46619, 'https://ror.org/05dbjwr50', 'no_lang_code', 1, 'https://ror.org/05dbjwr50 VLNComm (United States)'),
(46620, 'https://ror.org/037v0vj63', 'no_lang_code', 1, 'https://ror.org/037v0vj63 Coulometrics (United States)'),
(46621, 'https://ror.org/04xwm9403', 'no_lang_code', 1, 'https://ror.org/04xwm9403 VoltServer (United States)'),
(46622, 'https://ror.org/04vq3zr60', 'no_lang_code', 1, 'https://ror.org/04vq3zr60 Machfu (United States)'),
(46623, 'https://ror.org/0470vq398', 'no_lang_code', 1, 'https://ror.org/0470vq398 Saratoga Energy Research Partners (United States)'),
(46624, 'https://ror.org/03tw6b878', 'no_lang_code', 1, 'https://ror.org/03tw6b878 D-Tech (United States)'),
(46625, 'https://ror.org/000gjv789', 'no_lang_code', 1, 'https://ror.org/000gjv789 Dawn Research (United States)'),
(46626, 'https://ror.org/05jqkvb96', 'no_lang_code', 1, 'https://ror.org/05jqkvb96 Vuronyx Technologies (United States)'),
(46627, 'https://ror.org/010xx8472', 'no_lang_code', 1, 'https://ror.org/010xx8472 Scuba Probe Technologies (United states)'),
(46628, 'https://ror.org/01f8j5z75', 'no_lang_code', 1, 'https://ror.org/01f8j5z75 Maidana Research (United States)'),
(46629, 'https://ror.org/021gp0c72', 'no_lang_code', 1, 'https://ror.org/021gp0c72 Dirac Solutions (United States)'),
(46630, 'https://ror.org/01vgda714', 'no_lang_code', 1, 'https://ror.org/01vgda714 Dorodnitsyn Computing Centre Š’Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ центр им. А. А. ДороГницына Š ŠŠ'),
(46631, 'https://ror.org/003cm7v94', 'no_lang_code', 1, 'https://ror.org/003cm7v94 Sensor Creations (United States)'),
(46632, 'https://ror.org/040yzn427', 'no_lang_code', 1, 'https://ror.org/040yzn427 Wang NMR (United States)'),
(46633, 'https://ror.org/02b5r6277', 'no_lang_code', 1, 'https://ror.org/02b5r6277 Manta Biofuel (United States)'),
(46634, 'https://ror.org/02168cw18', 'en', 1, 'https://ror.org/02168cw18 Institute of Industrial Ecology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š¹ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Š£Ń€Šž Š ŠŠ'),
(46635, 'https://ror.org/056fzpe56', 'no_lang_code', 1, 'https://ror.org/056fzpe56 Dymenso (United States)'),
(46636, 'https://ror.org/02bm6mv56', 'no_lang_code', 1, 'https://ror.org/02bm6mv56 Woodruff Scientific (United States)'),
(46637, 'https://ror.org/034gcct62', 'no_lang_code', 1, 'https://ror.org/034gcct62 E-Motors Consulting (United States)'),
(46638, 'https://ror.org/00awz3e55', 'no_lang_code', 1, 'https://ror.org/00awz3e55 Flash Bainite (United States)'),
(46639, 'https://ror.org/009fme624', 'no_lang_code', 1, 'https://ror.org/009fme624 E-Spectrum Technologies (United States)'),
(46640, 'https://ror.org/01p7ybj33', 'no_lang_code', 1, 'https://ror.org/01p7ybj33 Xelera Research (United States)'),
(46641, 'https://ror.org/02age0r06', 'no_lang_code', 1, 'https://ror.org/02age0r06 Sheeta (United states)'),
(46642, 'https://ror.org/04ekh4959', 'no_lang_code', 1, 'https://ror.org/04ekh4959 Xergy (United States)'),
(46643, 'https://ror.org/050e1z365', 'no_lang_code', 1, 'https://ror.org/050e1z365 XG Sciences (United States)'),
(46644, 'https://ror.org/02zee8r13', 'no_lang_code', 1, 'https://ror.org/02zee8r13 E3Tec (United States)'),
(46645, 'https://ror.org/00ya1es69', 'no_lang_code', 1, 'https://ror.org/00ya1es69 MicroBio Engineering (United States)'),
(46646, 'https://ror.org/05g27td62', 'no_lang_code', 1, 'https://ror.org/05g27td62 Ecovia Renewables (United States)'),
(46647, 'https://ror.org/02pap1668', 'no_lang_code', 1, 'https://ror.org/02pap1668 ZymoChem (United States)'),
(46648, 'https://ror.org/041728v85', 'no_lang_code', 1, 'https://ror.org/041728v85 SiILion (United states)'),
(46649, 'https://ror.org/0042aq380', 'no_lang_code', 1, 'https://ror.org/0042aq380 Sironix Renewables (United States)'),
(46650, 'https://ror.org/0033p4m78', 'no_lang_code', 1, 'https://ror.org/0033p4m78 eIQ Energy (United States)'),
(46651, 'https://ror.org/04gm8dp50', 'no_lang_code', 1, 'https://ror.org/04gm8dp50 MoJo Labs (United States)'),
(46652, 'https://ror.org/0087ve919', 'no_lang_code', 1, 'https://ror.org/0087ve919 Solid Material Solutions (United States)'),
(46653, 'https://ror.org/01an04p26', 'no_lang_code', 1, 'https://ror.org/01an04p26 Stryker (Israel)'),
(46654, 'https://ror.org/02z2rxb36', 'no_lang_code', 1, 'https://ror.org/02z2rxb36 Mold Dynamics (United States)'),
(46655, 'https://ror.org/047wdpf58', 'no_lang_code', 1, 'https://ror.org/047wdpf58 Solid Power (United States)'),
(46656, 'https://ror.org/00cg4a205', 'no_lang_code', 1, 'https://ror.org/00cg4a205 Stryker (Ireland)'),
(46657, 'https://ror.org/00hg4dc82', 'no_lang_code', 1, 'https://ror.org/00hg4dc82 Emissol (United States)'),
(46658, 'https://ror.org/051mdt953', 'no_lang_code', 1, 'https://ror.org/051mdt953 Montana Emergent Technologies (United States)'),
(46659, 'https://ror.org/0233t5667', 'no_lang_code', 1, 'https://ror.org/0233t5667 Solution Spray Technologies (United states)'),
(46660, 'https://ror.org/00xj0z482', 'no_lang_code', 1, 'https://ror.org/00xj0z482 Munro & Associates (United States)'),
(46661, 'https://ror.org/01b2hfd49', 'no_lang_code', 1, 'https://ror.org/01b2hfd49 Energy Sense Finance (United States)'),
(46662, 'https://ror.org/00znts755', 'no_lang_code', 1, 'https://ror.org/00znts755 Sonata (United States)'),
(46663, 'https://ror.org/026wdw115', 'no_lang_code', 1, 'https://ror.org/026wdw115 Spero Energy (United States)'),
(46664, 'https://ror.org/04prhfn63', 'no_lang_code', 1, 'https://ror.org/04prhfn63 Samsung (Switzerland)'),
(46665, 'https://ror.org/03y203366', 'no_lang_code', 1, 'https://ror.org/03y203366 Engineering Mechanics Corporation of Columbus (United States)'),
(46666, 'https://ror.org/01vfjxd24', 'no_lang_code', 1, 'https://ror.org/01vfjxd24 Ennetix (United States)'),
(46667, 'https://ror.org/03tx9vd35', 'no_lang_code', 1, 'https://ror.org/03tx9vd35 EntryPoint (United States)'),
(46668, 'https://ror.org/02c37sg63', 'no_lang_code', 1, 'https://ror.org/02c37sg63 Flexsurface (United States)'),
(46669, 'https://ror.org/0140bnh63', 'no_lang_code', 1, 'https://ror.org/0140bnh63 Ineos (Germany)'),
(46670, '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'),
(46671, 'https://ror.org/03tvrj437', 'no_lang_code', 1, 'https://ror.org/03tvrj437 Amresco (United States)'),
(46672, 'https://ror.org/04m2v6546', 'no_lang_code', 1, 'https://ror.org/04m2v6546 Extensible Energy (United States)'),
(46673, 'https://ror.org/00yck8s68', 'no_lang_code', 1, 'https://ror.org/00yck8s68 Mitsubishi Corporation (Germany)'),
(46674, 'https://ror.org/00vg5ax74', 'no_lang_code', 1, 'https://ror.org/00vg5ax74 TECE (Germany)'),
(46675, 'https://ror.org/05f6fhp31', 'no_lang_code', 1, 'https://ror.org/05f6fhp31 Micron (Singapore)'),
(46676, 'https://ror.org/028n6av57', 'no_lang_code', 1, 'https://ror.org/028n6av57 Dynacast (Canada)'),
(46677, 'https://ror.org/00w32k615', 'no_lang_code', 1, 'https://ror.org/00w32k615 SunEdison (United States)'),
(46678, 'https://ror.org/019xzz882', 'no_lang_code', 1, 'https://ror.org/019xzz882 Deutsche Telekom (Singapore)'),
(46679, 'https://ror.org/00bx90590', 'no_lang_code', 1, 'https://ror.org/00bx90590 Deutsche Telekom (Austria)'),
(46680, 'https://ror.org/051gaae98', 'no_lang_code', 1, 'https://ror.org/051gaae98 Tellabs (Canada)'),
(46681, 'https://ror.org/01x1jk522', 'no_lang_code', 1, 'https://ror.org/01x1jk522 Tata Technologies (Singapore)'),
(46682, 'https://ror.org/00kheej15', 'no_lang_code', 1, 'https://ror.org/00kheej15 Tektronix (Switzerland)'),
(46683, 'https://ror.org/02zkwry50', 'no_lang_code', 1, 'https://ror.org/02zkwry50 Tektronix (Germany)'),
(46684, 'https://ror.org/04v7gxe28', 'no_lang_code', 1, 'https://ror.org/04v7gxe28 Tektronix (Japan)'),
(46685, 'https://ror.org/04kw5s604', 'no_lang_code', 1, 'https://ror.org/04kw5s604 Tektronix (United States)'),
(46686, 'https://ror.org/02zd56905', 'no_lang_code', 1, 'https://ror.org/02zd56905 Tenneco (Germany)'),
(46687, 'https://ror.org/00ma0s885', 'no_lang_code', 1, 'https://ror.org/00ma0s885 Teledyne Technologies (Australia)'),
(46688, 'https://ror.org/00e1g8a02', 'no_lang_code', 1, 'https://ror.org/00e1g8a02 Teledyne e2v (United Kingdom)'),
(46689, 'https://ror.org/02s0wcj29', 'no_lang_code', 1, 'https://ror.org/02s0wcj29 Taiwan Semiconductor Manufacturing Company (China) å°ē£ē©é«”é›»č·Æč£½é€ å…¬åø'),
(46690, 'https://ror.org/00xfdbb04', 'no_lang_code', 1, 'https://ror.org/00xfdbb04 Telefonica (Germany)'),
(46691, 'https://ror.org/00esacy80', 'no_lang_code', 1, 'https://ror.org/00esacy80 TDK (United Kingdom)'),
(46692, 'https://ror.org/03w3b4f85', 'no_lang_code', 1, 'https://ror.org/03w3b4f85 ThyssenKrupp (United Kingdom)'),
(46693, 'https://ror.org/008j2vk87', 'no_lang_code', 1, 'https://ror.org/008j2vk87 Johnson & Johnson (Ireland)'),
(46694, 'https://ror.org/05q609a17', 'no_lang_code', 1, 'https://ror.org/05q609a17 Texas Instruments (Ireland)'),
(46695, 'https://ror.org/02y2rfe31', 'no_lang_code', 1, 'https://ror.org/02y2rfe31 TGS (United Kingdom)'),
(46696, 'https://ror.org/05kpyvj64', 'no_lang_code', 1, 'https://ror.org/05kpyvj64 Stanley Black & Decker (Taiwan)'),
(46697, 'https://ror.org/00p9kb710', 'no_lang_code', 1, 'https://ror.org/00p9kb710 Thorlabs (Germany)'),
(46698, 'https://ror.org/00xkz3n79', 'no_lang_code', 1, 'https://ror.org/00xkz3n79 Trapeze (United States)'),
(46699, 'https://ror.org/002wxg772', 'no_lang_code', 1, 'https://ror.org/002wxg772 Tsubaki (Germany) ę Ŗå¼ä¼šē¤¾ę¤æęœ¬ćƒć‚Øć‚¤ćƒ³'),
(46700, 'https://ror.org/01tk5k162', 'no_lang_code', 1, 'https://ror.org/01tk5k162 Trimble (Germany)'),
(46701, 'https://ror.org/002qh8m50', 'no_lang_code', 1, 'https://ror.org/002qh8m50 Trelleborg (Germany)'),
(46702, 'https://ror.org/009yrnm54', 'no_lang_code', 1, 'https://ror.org/009yrnm54 Trelleborg (United Kingdom)'),
(46703, 'https://ror.org/0048he143', 'no_lang_code', 1, 'https://ror.org/0048he143 Ɩssur (Germany)'),
(46704, 'https://ror.org/018mj7168', 'no_lang_code', 1, 'https://ror.org/018mj7168 Furukawa Electric (Germany)'),
(46705, 'https://ror.org/00y1n0k33', 'no_lang_code', 1, 'https://ror.org/00y1n0k33 Stanley Black & Decker (United Kingdom)'),
(46706, 'https://ror.org/05e6atz65', 'no_lang_code', 1, 'https://ror.org/05e6atz65 TRUMPF (Austria)'),
(46707, 'https://ror.org/02anmpm17', 'no_lang_code', 1, 'https://ror.org/02anmpm17 Varian Medical Systems (Germany)'),
(46708, 'https://ror.org/02drbqt14', 'no_lang_code', 1, 'https://ror.org/02drbqt14 TE Connectivity (China)'),
(46709, 'https://ror.org/03yw95n57', 'no_lang_code', 1, 'https://ror.org/03yw95n57 Amdocs (Philippines)'),
(46710, 'https://ror.org/03vzakk34', 'no_lang_code', 1, 'https://ror.org/03vzakk34 TE Connectivity (South Korea)'),
(46711, 'https://ror.org/028x0tg55', 'no_lang_code', 1, 'https://ror.org/028x0tg55 TE Connectivity (Austria)'),
(46712, 'https://ror.org/03d1vm044', 'no_lang_code', 1, 'https://ror.org/03d1vm044 TE Connectivity (Brazil)'),
(46713, 'https://ror.org/04hqvm002', 'no_lang_code', 1, 'https://ror.org/04hqvm002 ZF Friedrichshafen (Japan)'),
(46714, 'https://ror.org/01vs7pm87', 'no_lang_code', 1, 'https://ror.org/01vs7pm87 Teleflex (United States)'),
(46715, 'https://ror.org/046as2g47', 'no_lang_code', 1, 'https://ror.org/046as2g47 Robert Bosch (Taiwan)'),
(46716, 'https://ror.org/05nqd9f14', 'no_lang_code', 1, 'https://ror.org/05nqd9f14 Valeo (South Korea)'),
(46717, 'https://ror.org/03z3d5x54', 'no_lang_code', 1, 'https://ror.org/03z3d5x54 Valeo (Japan)'),
(46718, 'https://ror.org/04ccqwj03', 'no_lang_code', 1, 'https://ror.org/04ccqwj03 Mitsubishi Electric (Germany)'),
(46719, 'https://ror.org/03kx9nw13', 'no_lang_code', 1, 'https://ror.org/03kx9nw13 Valeo (Brazil)'),
(46720, 'https://ror.org/05x7wqc91', 'no_lang_code', 1, 'https://ror.org/05x7wqc91 Valeo (United States)'),
(46721, 'https://ror.org/0566s9y93', 'no_lang_code', 1, 'https://ror.org/0566s9y93 Voith (United States)'),
(46722, 'https://ror.org/03e7zen21', 'no_lang_code', 1, 'https://ror.org/03e7zen21 Volvo (United States)'),
(46723, 'https://ror.org/02d0esb25', 'no_lang_code', 1, 'https://ror.org/02d0esb25 Volvo (Canada)'),
(46724, 'https://ror.org/05syhdw25', 'no_lang_code', 1, 'https://ror.org/05syhdw25 Visa (United Kingdom)'),
(46725, 'https://ror.org/037fqd482', 'no_lang_code', 1, 'https://ror.org/037fqd482 Danaher (Australia)'),
(46726, 'https://ror.org/02q83n633', 'no_lang_code', 1, 'https://ror.org/02q83n633 Vossloh (Germany)'),
(46727, 'https://ror.org/00rvgp591', 'no_lang_code', 1, 'https://ror.org/00rvgp591 Open Text (United Kingdom)'),
(46728, 'https://ror.org/01w51pg70', 'no_lang_code', 1, 'https://ror.org/01w51pg70 Greenhouse Gas Industries (United States)'),
(46729, 'https://ror.org/005fe1k46', 'no_lang_code', 1, 'https://ror.org/005fe1k46 BorgWarner (Brazil)'),
(46730, 'https://ror.org/04n36vx38', 'no_lang_code', 1, 'https://ror.org/04n36vx38 Visteon (Japan)'),
(46731, 'https://ror.org/007st8028', 'no_lang_code', 1, 'https://ror.org/007st8028 Visuray (Malta)'),
(46732, 'https://ror.org/057devs37', 'no_lang_code', 1, 'https://ror.org/057devs37 Gentherm (Germany)'),
(46733, 'https://ror.org/00dsdst25', 'no_lang_code', 1, 'https://ror.org/00dsdst25 John Deere (New Zealand)'),
(46734, 'https://ror.org/031b16827', 'no_lang_code', 1, 'https://ror.org/031b16827 ProjectEconomics (United states)'),
(46735, 'https://ror.org/01hbz8t53', 'no_lang_code', 1, 'https://ror.org/01hbz8t53 Wipro (Singapore)'),
(46736, 'https://ror.org/023qwjb45', 'no_lang_code', 1, 'https://ror.org/023qwjb45 Allergan (India)'),
(46737, 'https://ror.org/057p9rb14', 'no_lang_code', 1, 'https://ror.org/057p9rb14 Solid Cell (United States)'),
(46738, 'https://ror.org/04vp8pb02', 'no_lang_code', 1, 'https://ror.org/04vp8pb02 West Pharmaceuticals (Germany)'),
(46739, 'https://ror.org/030xy3q54', 'no_lang_code', 1, 'https://ror.org/030xy3q54 Foxconn (United Kingdom)'),
(46740, 'https://ror.org/000cytz87', 'no_lang_code', 1, 'https://ror.org/000cytz87 Weatherford (Switzerland)'),
(46741, 'https://ror.org/03pwzr890', 'no_lang_code', 1, 'https://ror.org/03pwzr890 Westinghouse Electric (Germany)'),
(46742, 'https://ror.org/036tb1y26', 'no_lang_code', 1, 'https://ror.org/036tb1y26 NanoAl (United States)'),
(46743, 'https://ror.org/02jwcy839', 'no_lang_code', 1, 'https://ror.org/02jwcy839 Yazaki (United Kingdom)'),
(46744, 'https://ror.org/03g5wg622', 'no_lang_code', 1, 'https://ror.org/03g5wg622 YIT (Germany)'),
(46745, 'https://ror.org/049ncrn81', 'no_lang_code', 1, 'https://ror.org/049ncrn81 Bausch Health (Germany)'),
(46746, 'https://ror.org/045ns6h78', 'no_lang_code', 1, 'https://ror.org/045ns6h78 Woodward (Germany)'),
(46747, 'https://ror.org/031hb1d69', 'no_lang_code', 1, 'https://ror.org/031hb1d69 YKK (United Kingdom)'),
(46748, 'https://ror.org/049evaf90', 'en', 1, 'https://ror.org/049evaf90 Access Computer College'),
(46749, 'https://ror.org/026m6ke87', 'en', 1, 'https://ror.org/026m6ke87 Brainerd Public Library'),
(46750, 'https://ror.org/0364wpq06', 'en', 1, 'https://ror.org/0364wpq06 Gordon College'),
(46751, 'https://ror.org/00wpxjs04', 'en', 1, 'https://ror.org/00wpxjs04 Santa Clara City Library'),
(46752, 'https://ror.org/05v3gb133', 'no_lang_code', 1, 'https://ror.org/05v3gb133 Stanley Black & Decker (Israel)'),
(46753, 'https://ror.org/02ythmp17', 'en', 1, 'https://ror.org/02ythmp17 Tampa–Hillsborough County Public Library System'),
(46754, 'https://ror.org/047vw5609', 'en', 1, 'https://ror.org/047vw5609 National Assembly of Zambia'),
(46755, 'https://ror.org/018pwv131', 'no_lang_code', 1, 'https://ror.org/018pwv131 Zumtobel Group (Austria)'),
(46756, 'https://ror.org/05758j740', 'no_lang_code', 1, 'https://ror.org/05758j740 Stihl (Japan) ć‚¹ćƒćƒ¼ćƒ«'),
(46757, 'https://ror.org/05rxz3g75', 'en', 1, 'https://ror.org/05rxz3g75 Harris County Public Library'),
(46758, 'https://ror.org/04w6x9t25', 'no_lang_code', 1, 'https://ror.org/04w6x9t25 Zumtobel Group (Germany)'),
(46759, 'https://ror.org/034afnt37', 'en', 1, 'https://ror.org/034afnt37 OspidƩal Mhuire Our Lady''s Hospital'),
(46760, 'https://ror.org/0524n4e69', 'en', 1, 'https://ror.org/0524n4e69 Kagawa Buried Cultural Property Center é¦™å·ēœŒåŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(46761, 'https://ror.org/008te2062', 'en', 1, 'https://ror.org/008te2062 St Michael’s Hospital'),
(46762, 'https://ror.org/02f053x13', 'en', 1, 'https://ror.org/02f053x13 Kagawa Prefectural Board of Education é¦™å·ēœŒę•™č‚²å§”å“”ä¼š'),
(46763, 'https://ror.org/02ew7cc18', 'en', 1, 'https://ror.org/02ew7cc18 Miyakoda Elementary School éƒ½ē”°å°å­¦ę ”'),
(46764, 'https://ror.org/02b0cb113', 'no_lang_code', 1, 'https://ror.org/02b0cb113 Johnson Controls (Australia)'),
(46765, 'https://ror.org/017d0p023', 'en', 1, 'https://ror.org/017d0p023 Hiroshima Prefectural Museum of History åŗƒå³¶ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(46766, 'https://ror.org/01ykg8t62', 'en', 1, 'https://ror.org/01ykg8t62 Kagoshima Prefectural Museum é¹æå…å³¶ēœŒē«‹åšē‰©é¤Ø'),
(46767, 'https://ror.org/04pnp9s43', 'no_lang_code', 1, 'https://ror.org/04pnp9s43 Hikone Central Hospital 彦根中央病院'),
(46768, 'https://ror.org/02dkdym27', 'en', 1, 'https://ror.org/02dkdym27 Kagoshima University Hospital 鹿児島大学病院'),
(46769, 'https://ror.org/010q5z761', 'en', 1, 'https://ror.org/010q5z761 Ishikawa Prefectural Museum of Art ēŸ³å·ēœŒē«‹ē¾Žč”“é¤Ø'),
(46770, 'https://ror.org/00gk9by75', 'no_lang_code', 1, 'https://ror.org/00gk9by75 Ishikawa Prefectural Takamatsu Hospital ēŸ³å·ēœŒē«‹é«˜ę¾ē—…é™¢'),
(46771, 'https://ror.org/0186a0992', 'en', 1, 'https://ror.org/0186a0992 Kanazawa Municipal Kenrokuen Elementary School é‡‘ę²¢åø‚ē«‹å…¼å…­å°å­¦ę ”'),
(46772, 'https://ror.org/023nefd62', 'en', 1, 'https://ror.org/023nefd62 Museum of Modern Art čŒØåŸŽēœŒčæ‘ä»£ē¾Žč”“é¤Ø'),
(46773, 'https://ror.org/01kr38871', 'en', 1, 'https://ror.org/01kr38871 Niigata Prefectural Board of Education'),
(46774, 'https://ror.org/05m794j93', 'en', 1, 'https://ror.org/05m794j93 Fujisawa Institute of Technology High School ē„žå„ˆå·ēœŒē«‹č—¤ę²¢å·„ē§‘é«˜ē­‰å­¦ę ”'),
(46775, 'https://ror.org/028vbck82', 'en', 1, 'https://ror.org/028vbck82 Kanagawa Odawara Nursing School ē„žå„ˆå·ēœŒē«‹å°ē”°åŽŸé¤Šč­·å­¦ę ”'),
(46776, 'https://ror.org/05gq4r458', 'en', 1, 'https://ror.org/05gq4r458 Ibaraki Prefectural Board of Education čŒØåŸŽēœŒę•™č‚²å§”å“”ä¼š'),
(46777, 'https://ror.org/01g46vk97', 'en', 1, 'https://ror.org/01g46vk97 Hokkaido Kitami Hokuto High School åŒ—ęµ·é“åŒ—č¦‹åŒ—ę–—é«˜ē­‰å­¦ę ”'),
(46778, 'https://ror.org/02710jx66', 'no_lang_code', 1, 'https://ror.org/02710jx66 Izu Nirayama Onsen Hospital ä¼Šč±†éŸ®å±±ęø©ę³‰ē—…é™¢'),
(46779, 'https://ror.org/01pyfb655', 'en', 1, 'https://ror.org/01pyfb655 Kochi Prefectural Education Center é«˜ēŸ„ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46780, 'https://ror.org/00xagtd33', 'en', 1, 'https://ror.org/00xagtd33 Kawasaki Univ Yato Elementary School å·å“Žåø‚ē«‹å¤§č°·ęˆøå°å­¦ę ”'),
(46781, 'https://ror.org/02576fj66', 'en', 1, 'https://ror.org/02576fj66 Hokkaidō Museum of Literature'),
(46782, 'https://ror.org/02bdqpa81', 'en', 1, 'https://ror.org/02bdqpa81 Hokkaido Orthopedic Surgery Memorial Hospital'),
(46783, 'https://ror.org/02t5fze90', 'en', 1, 'https://ror.org/02t5fze90 Japan Institute of Lifelong Learning čˆ¬č²”å›£ę³•äŗŗ ę—„ęœ¬ē”Ÿę¶Æå­¦ēæ’ē·åˆē ”ē©¶ę‰€'),
(46784, 'https://ror.org/03g57y740', 'en', 1, 'https://ror.org/03g57y740 Kochi Rehabilitation Institute é«˜ēŸ„ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å­¦é™¢'),
(46785, 'https://ror.org/01rvx9t49', 'en', 1, 'https://ror.org/01rvx9t49 Kanagawa Prefecture Policy Bureau ē„žå„ˆå·ēœŒę”æē­–å±€'),
(46786, 'https://ror.org/021gppz37', 'en', 1, 'https://ror.org/021gppz37 Kawasaki Municipal Science Museum å·å“Žåø‚é’å°‘å¹“ē§‘å­¦é¤Ø'),
(46787, 'https://ror.org/0525kzq59', 'en', 1, 'https://ror.org/0525kzq59 Kyoto Prefectural Board of Education'),
(46788, 'https://ror.org/04xbz3316', 'en', 1, 'https://ror.org/04xbz3316 Miyazaki Prefectural Museum of Nature and History å®®å“ŽēœŒē·åˆåšē‰©é¤Ø'),
(46789, 'https://ror.org/010y4ef75', 'en', 1, 'https://ror.org/010y4ef75 Kitakyushu Yahata Special Needs Schools åŒ—ä¹å·žåø‚ē«‹å…«å¹”ē‰¹åˆ„ę”Æę“å­¦ę ”'),
(46790, 'https://ror.org/025k5zj19', 'en', 1, 'https://ror.org/025k5zj19 Kumamoto Educational Center ē†Šęœ¬åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46791, 'https://ror.org/04jf29r27', 'en', 1, 'https://ror.org/04jf29r27 Iwate Prefectural Mizusawa Agricultural High School'),
(46792, 'https://ror.org/004ywrc08', 'en', 1, 'https://ror.org/004ywrc08 Kobe City Fire Department ē„žęˆøåø‚ę¶ˆé˜²å±€'),
(46793, 'https://ror.org/01d9rtb50', 'en', 1, 'https://ror.org/01d9rtb50 Kumamoto Prefectural Board of Education ē†Šęœ¬ēœŒę•™č‚²å§”å“”ä¼š'),
(46794, 'https://ror.org/01f7hds15', 'en', 1, 'https://ror.org/01f7hds15 Kobe City Museum ē„žęˆøåø‚ē«‹åšē‰©é¤Ø'),
(46795, 'https://ror.org/00saznr62', 'en', 1, 'https://ror.org/00saznr62 Kumamoto Prefectural Museum of Art ē†Šęœ¬ēœŒē«‹ē¾Žč”“é¤Ø'),
(46796, 'https://ror.org/05f6tgb27', 'en', 1, 'https://ror.org/05f6tgb27 Nagano City Board of Education é•·é‡Žåø‚ę•™č‚²å§”å“”ä¼š'),
(46797, 'https://ror.org/0543j1d77', 'en', 1, 'https://ror.org/0543j1d77 Fujita Animal Hospital 藤田動物病院'),
(46798, 'https://ror.org/04m8v6x07', 'no_lang_code', 1, 'https://ror.org/04m8v6x07 Nojiri Naumanni Museum'),
(46799, 'https://ror.org/03edh2b12', 'en', 1, 'https://ror.org/03edh2b12 Matsudo City Board of Education ę¾ęˆøåø‚ę•™č‚²å§”å“”ä¼š'),
(46800, 'https://ror.org/047fe4v13', 'en', 1, 'https://ror.org/047fe4v13 Board of Education Mino Education Office'),
(46801, 'https://ror.org/03r6s6r63', 'en', 1, 'https://ror.org/03r6s6r63 Nagaoka Municipal Science Museum'),
(46802, 'https://ror.org/0347zf750', 'no_lang_code', 1, 'https://ror.org/0347zf750 Tamashima Hospital å…¬ē›Šč²”å›£ę³•äŗŗ 弘仁会 ēŽ‰å³¶ē—…é™¢'),
(46803, 'https://ror.org/03kmyta64', 'en', 1, 'https://ror.org/03kmyta64 Naha City Hospital 那覇市立病院'),
(46804, 'https://ror.org/00vgf5h37', 'en', 1, 'https://ror.org/00vgf5h37 Miwa Internal Medicine Clinic ćæć‚å†…ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(46805, 'https://ror.org/00phmvd84', 'en', 1, 'https://ror.org/00phmvd84 Matsuyama Gakuen Matsuyama welfare College ę¾å±±å­¦åœ’ę¾å±±ē¦ē„‰å°‚é–€å­¦ę ”'),
(46806, 'https://ror.org/00r6wds48', 'en', 1, 'https://ror.org/00r6wds48 Nagasaki Museum of History and Culture é•·å“Žę­“å²ę–‡åŒ–åšē‰©é¤Ø'),
(46807, 'https://ror.org/01mre3x46', 'en', 1, 'https://ror.org/01mre3x46 Kanetsu Hospital é–¢č¶Šē—…é™¢'),
(46808, 'https://ror.org/03kjve460', 'en', 1, 'https://ror.org/03kjve460 Nagasaki Prefectural Tsushima Museum of History and Folklore é•·å“ŽēœŒē«‹åÆ¾é¦¬ę­“å²ę°‘äæ—å²ę–™é¤Ø'),
(46809, 'https://ror.org/01b123706', 'en', 1, 'https://ror.org/01b123706 Miyagi Prefectural Ishinomaki Support School å®®åŸŽēœŒē«‹ēŸ³å·»ę”Æę“å­¦ę ”'),
(46810, 'https://ror.org/048n8ck62', 'en', 1, 'https://ror.org/048n8ck62 Plateau Medical Center'),
(46811, 'https://ror.org/00gm0dm67', 'en', 1, 'https://ror.org/00gm0dm67 Matsura Historical Museum ę¾ęµ¦å²ę–™åšē‰©é¤Ø'),
(46812, 'https://ror.org/02h6wcs88', 'en', 1, 'https://ror.org/02h6wcs88 Nara Prefectural Board of Education å„ˆč‰ÆēœŒę•™č‚²å§”å“”ä¼š'),
(46813, 'https://ror.org/01gtsvp41', 'en', 1, 'https://ror.org/01gtsvp41 Medical Corporation River Mizuma hospital ćƒŸć‚ŗćƒžē—…é™¢'),
(46814, 'https://ror.org/010jmsy02', 'no_lang_code', 1, 'https://ror.org/010jmsy02 Kyoto Computer Gakuin äŗ¬éƒ½ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æå­¦é™¢'),
(46815, 'https://ror.org/01wvy7k28', 'en', 1, 'https://ror.org/01wvy7k28 Nara Medical University Hospital å„ˆč‰ÆēœŒē«‹åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(46816, 'https://ror.org/00h0qgf14', 'en', 1, 'https://ror.org/00h0qgf14 Yamamoto Hospital å±±ęœ¬ē—…é™¢'),
(46817, 'https://ror.org/03tb78t08', 'en', 1, 'https://ror.org/03tb78t08 Nara Prefectural Institute for Educational Research å„ˆč‰ÆēœŒē«‹ę•™č‚²ē ”ē©¶ę‰€'),
(46818, 'https://ror.org/0353y3c48', 'en', 1, 'https://ror.org/0353y3c48 Kyoto Institute of Culture and Language äŗ¬éƒ½ę–‡åŒ–ę—„ęœ¬čŖžå­¦ę ”'),
(46819, 'https://ror.org/00tqkj625', 'en', 1, 'https://ror.org/00tqkj625 Miyagi Prefecture Shibata Agriculture and Forestry High School å®®åŸŽēœŒęŸ“ē”°č¾²ęž—é«˜ē­‰å­¦ę ”'),
(46820, 'https://ror.org/04m2ybb32', 'en', 1, 'https://ror.org/04m2ybb32 Nagoya City Science Museum åå¤å±‹åø‚ē§‘å­¦é¤Ø'),
(46821, 'https://ror.org/01w8svt05', 'en', 1, 'https://ror.org/01w8svt05 Tohoku History Museum ę±åŒ—ę­“å²åšē‰©é¤Ø'),
(46822, 'https://ror.org/02errs104', 'en', 1, 'https://ror.org/02errs104 Kyoto Municipal Junior College of Nursing äŗ¬éƒ½åø‚ē«‹ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(46823, 'https://ror.org/02mda8974', 'en', 1, 'https://ror.org/02mda8974 Kyoto Prefectural Education Center äŗ¬éƒ½åŗœē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46824, 'https://ror.org/02zsmpq40', 'en', 1, 'https://ror.org/02zsmpq40 Kyoto Prefectural Police 京都府警察'),
(46825, 'https://ror.org/00sbe8213', 'en', 1, 'https://ror.org/00sbe8213 National Hospital Organization Hokkaido Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē—…é™¢ę©Ÿę§‹ åŒ—ęµ·é“åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(46826, 'https://ror.org/02tbkt967', 'en', 1, 'https://ror.org/02tbkt967 National Hospital Organization Takasaki Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹é«˜å“Žē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(46827, 'https://ror.org/047gkb024', 'en', 1, 'https://ror.org/047gkb024 Okinaka Memorial Adult Disease Research Institute å†²äø­čØ˜åæµęˆäŗŗē—…ē ”ē©¶ę‰€'),
(46828, 'https://ror.org/023vnxa51', 'en', 1, 'https://ror.org/023vnxa51 National Consumer Affairs Center of Japan å›½ę°‘ē”Ÿę“»ć‚»ćƒ³ć‚æćƒ¼'),
(46829, 'https://ror.org/00s34pf12', 'en', 1, 'https://ror.org/00s34pf12 Okinawa Prefecture Ohira Special School School ę²–ēø„ēœŒē«‹å¤§å¹³ē‰¹åˆ„ę”Æę“å­¦ę ”'),
(46830, 'https://ror.org/00sywr539', 'en', 1, 'https://ror.org/00sywr539 Okinawa Prefectural Yaeyama Hospital ę²–ēø„ēœŒē«‹å…«é‡å±±ē—…é™¢'),
(46831, 'https://ror.org/00jvf9d33', 'en', 1, 'https://ror.org/00jvf9d33 Okinawa Red Cross Hospital ę²–ēø„čµ¤åå­—ē—…é™¢'),
(46832, 'https://ror.org/01byxk048', 'en', 1, 'https://ror.org/01byxk048 National Hospital Organization Iobyoin å›½ē«‹ē—…é™¢ę©Ÿę§‹åŒ»ēŽ‹ē—…é™¢'),
(46833, 'https://ror.org/003sgjn18', 'no_lang_code', 1, 'https://ror.org/003sgjn18 Osaka Butsuryo University å¤§é˜Ŗē‰©ē™‚å¤§å­¦'),
(46834, 'https://ror.org/05a68bd15', 'en', 1, 'https://ror.org/05a68bd15 National Hospital Organization Takamatsu Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹é«˜ę¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(46835, 'https://ror.org/00z9jj523', 'en', 1, 'https://ror.org/00z9jj523 Neyagawa City Board of Education åÆå±‹å·åø‚ę•™č‚²å§”å“”ä¼š'),
(46836, 'https://ror.org/01xpja968', 'en', 1, 'https://ror.org/01xpja968 Oita Prefectural Nascent Support School å¤§åˆ†ēœŒē‰¹åˆ„ę”Æę“å­¦ę ”'),
(46837, 'https://ror.org/04nmxj606', 'en', 1, 'https://ror.org/04nmxj606 Niigata Agricultural Research Institute ę–°ę½ŸēœŒåœ’čŠøē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(46838, 'https://ror.org/030r45j36', 'en', 1, 'https://ror.org/030r45j36 Neyagaya School for Special Needs Education å¤§é˜Ŗåŗœē«‹åÆå±‹å·ę”Æę“å­¦ę ”'),
(46839, 'https://ror.org/00bxxsn28', 'en', 1, 'https://ror.org/00bxxsn28 Oita Prefectural Yufu Support School å¤§åˆ†ēœŒē”±åøƒé™¢ę”Æę“å­¦ę ”'),
(46840, 'https://ror.org/048n7pq28', 'no_lang_code', 1, 'https://ror.org/048n7pq28 Oji Holdings (Japan) ēŽ‹å­ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(46841, 'https://ror.org/01k4g2w20', 'en', 1, 'https://ror.org/01k4g2w20 Japan Association for Development of Community Medicine å…¬ē›Šē¤¾å›£ę³•äŗŗ åœ°åŸŸåŒ»ē™‚ęŒÆčˆˆå”ä¼š'),
(46842, 'https://ror.org/02x7eef92', 'en', 1, 'https://ror.org/02x7eef92 Okayama Prefectural Museum å²”å±±ēœŒē«‹åšē‰©é¤Ø'),
(46843, 'https://ror.org/02thzwy35', 'en', 1, 'https://ror.org/02thzwy35 Okayama Psychiatric Medical Center å²”å±±ēœŒē²¾ē„žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(46844, 'https://ror.org/05swp8738', 'en', 1, 'https://ror.org/05swp8738 Sakai City Board of Education ę•™č‚²å§”å“”ä¼š - å ŗåø‚'),
(46845, 'https://ror.org/03kx92c42', 'en', 1, 'https://ror.org/03kx92c42 Industrial Technology Center of SAGA ä½č³€ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(46846, 'https://ror.org/03nsa4h03', 'en', 1, 'https://ror.org/03nsa4h03 Sakai City Education Center å ŗåø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46847, 'https://ror.org/04vbmne73', 'en', 1, 'https://ror.org/04vbmne73 Sakura Walnut Kindergarten'),
(46848, 'https://ror.org/0114ckv42', 'no_lang_code', 1, 'https://ror.org/0114ckv42 Hyōgo Prefectural Museum of Art å…µåŗ«ēœŒē«‹ē¾Žč”“é¤Ø'),
(46849, 'https://ror.org/0113nqq98', 'en', 1, 'https://ror.org/0113nqq98 Sapporo Science Center ęœ­å¹Œåø‚é’å°‘å¹“ē§‘å­¦é¤Ø'),
(46850, 'https://ror.org/05236ad29', 'en', 1, 'https://ror.org/05236ad29 Sagamihara City Museum ē›øęØ”åŽŸåø‚ē«‹åšē‰©é¤Ø'),
(46851, 'https://ror.org/05caes925', 'no_lang_code', 1, 'https://ror.org/05caes925 Kitamurayama Hospital åŒ—ę‘å±±å…¬ē«‹ē—…é™¢'),
(46852, 'https://ror.org/043nr7w50', 'en', 1, 'https://ror.org/043nr7w50 Saitama Board of Education åŸ¼ēŽ‰ēœŒę•™č‚²å§”å“”ä¼š'),
(46853, 'https://ror.org/02z4s0f38', 'en', 1, 'https://ror.org/02z4s0f38 Otaru City General Museum å°ęØ½åø‚ē·åˆåšē‰©é¤Ø'),
(46854, 'https://ror.org/046zfzv81', 'en', 1, 'https://ror.org/046zfzv81 Museum of Modern Art ę»‹č³€ēœŒē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(46855, 'https://ror.org/05yca4657', 'en', 1, 'https://ror.org/05yca4657 Tokyo Metropolitan Art Museum ę±äŗ¬éƒ½ē¾Žč”“é¤Ø'),
(46856, 'https://ror.org/04hg19818', 'en', 1, 'https://ror.org/04hg19818 Shimane Institute for Industrial Technology å³¶ę ¹ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(46857, 'https://ror.org/008382c47', 'no_lang_code', 1, 'https://ror.org/008382c47 Sendai City Museum ä»™å°åø‚åšē‰©é¤Ø'),
(46858, 'https://ror.org/01m520d39', 'en', 1, 'https://ror.org/01m520d39 Shimane Museum of Ancient Izumo å³¶ę ¹ēœŒē«‹å¤ä»£å‡ŗé›²ę­“å²åšē‰©é¤Ø'),
(46859, 'https://ror.org/003gxx992', 'en', 1, 'https://ror.org/003gxx992 Sendai Science Museum ä»™å°åø‚ē§‘å­¦é¤Ø'),
(46860, 'https://ror.org/034x19584', 'en', 1, 'https://ror.org/034x19584 Tokyo Metropolitan School Personnel in Service Training Center ę±äŗ¬éƒ½ę•™č·å“”ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(46861, 'https://ror.org/012mvxw17', 'no_lang_code', 1, 'https://ror.org/012mvxw17 Sendai City Tomizawa Site Museum åœ°åŗ•ć®ę£®ćƒŸćƒ„ćƒ¼ć‚øć‚¢ćƒ '),
(46862, 'https://ror.org/054z92k23', 'en', 1, 'https://ror.org/054z92k23 Suzuka Junior College 鈓鹿短期大学'),
(46863, 'https://ror.org/0468j5v73', 'en', 1, 'https://ror.org/0468j5v73 Shinjuku Ward Shinjuku Historical Museum ę–°å®æę­“å²åšē‰©é¤Ø'),
(46864, 'https://ror.org/04871sq53', 'en', 1, 'https://ror.org/04871sq53 Takayanagi Dental Clinic é«˜ęŸ³ę­Æē§‘ē—…é™¢'),
(46865, 'https://ror.org/04v0npt58', 'en', 1, 'https://ror.org/04v0npt58 Toyonaka City Board of Education ę•™č‚²å§”å“”ä¼š č±Šäø­åø‚'),
(46866, 'https://ror.org/016ebj734', 'en', 1, 'https://ror.org/016ebj734 Tsuchiura City Museum åœŸęµ¦åø‚ē«‹åšē‰©é¤Ø'),
(46867, 'https://ror.org/0109zs540', 'en', 1, 'https://ror.org/0109zs540 The Institute of Energy Economics, Japan ć‚Øćƒćƒ«ć‚®ćƒ¼ēµŒęøˆē ”ē©¶ę‰€'),
(46868, 'https://ror.org/0136tgd19', 'en', 1, 'https://ror.org/0136tgd19 Tokyo College of Welfare ę±äŗ¬ē¦ē„‰å°‚é–€å­¦ę ”'),
(46869, 'https://ror.org/031jw0220', 'no_lang_code', 1, 'https://ror.org/031jw0220 Uji Hospital 宇治病院'),
(46870, 'https://ror.org/0546xmt86', 'en', 1, 'https://ror.org/0546xmt86 Edo Tokyo Museum ę±Ÿęˆøę±äŗ¬åšē‰©é¤Ø'),
(46871, 'https://ror.org/03xhjng91', 'no_lang_code', 1, 'https://ror.org/03xhjng91 Tomakomai Art Museum č‹«å°ē‰§åø‚ē¾Žč”“åšē‰©é¤Ø'),
(46872, 'https://ror.org/03pmbr594', 'no_lang_code', 1, 'https://ror.org/03pmbr594 Mitsuwadai General Hospital ćæć¤ć‚å°ē·åˆē—…é™¢'),
(46873, 'https://ror.org/00k6n7177', 'en', 1, 'https://ror.org/00k6n7177 National Archives of Japan ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹å…¬ę–‡ę›øé¤Ø'),
(46874, 'https://ror.org/02kt78v62', 'en', 1, 'https://ror.org/02kt78v62 Yamanashi Prefectural Board of Education å±±ę¢ØēœŒę•™č‚²å§”å“”ä¼š'),
(46875, 'https://ror.org/02db4dt48', 'en', 1, 'https://ror.org/02db4dt48 Yuki Animal Hospital'),
(46876, 'https://ror.org/048mspf89', 'no_lang_code', 1, 'https://ror.org/048mspf89 Utsunomiya Museum of Art'),
(46877, 'https://ror.org/01z639x82', 'en', 1, 'https://ror.org/01z639x82 Yanagawa Rehabilitation Hospital ęŸ³å·ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(46878, 'https://ror.org/01sgjy251', 'en', 1, 'https://ror.org/01sgjy251 Wakayama City Culture and Sports Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗ å’Œę­Œå±±åø‚ę–‡åŒ–ć‚¹ćƒćƒ¼ćƒ„ęŒÆčˆˆč²”å›£'),
(46879, 'https://ror.org/00f3a6g74', 'en', 1, 'https://ror.org/00f3a6g74 Vocational School YIC Rehabilitation College'),
(46880, 'https://ror.org/04qa3rn14', 'no_lang_code', 1, 'https://ror.org/04qa3rn14 Wakayama City Museum å’Œę­Œå±±åø‚ē«‹åšē‰©é¤Ø'),
(46881, 'https://ror.org/01rjrd067', 'en', 1, 'https://ror.org/01rjrd067 Yamaguchi Prefectural Museum å±±å£ēœŒē«‹å±±å£åšē‰©é¤Ø'),
(46882, 'https://ror.org/04jehxx70', 'en', 1, 'https://ror.org/04jehxx70 Yokohama City Furusato History Foundation ęØŖęµœåø‚ćµć‚‹ć•ćØę­“å²č²”å›£'),
(46883, 'https://ror.org/03kt5ya77', 'en', 1, 'https://ror.org/03kt5ya77 Wakayama Prefectural Museum of Natural History å’Œę­Œå±±ēœŒē«‹č‡Ŗē„¶åšē‰©é¤Ø'),
(46884, 'https://ror.org/00jkg1x62', 'en', 1, 'https://ror.org/00jkg1x62 Wakayama Prefecture Wakayama School for the Blind å’Œę­Œå±±ēœŒē«‹å’Œę­Œå±±ē›²å­¦ę ”'),
(46885, 'https://ror.org/01v5yyw18', 'en', 1, 'https://ror.org/01v5yyw18 Baker County Library District'),
(46886, 'https://ror.org/02p3be630', 'en', 1, 'https://ror.org/02p3be630 ACCESS Health International'),
(46887, 'https://ror.org/01yyvd121', 'en', 1, 'https://ror.org/01yyvd121 Carnegie Foundation for the Advancement of Teaching'),
(46888, 'https://ror.org/01b021x78', 'en', 1, 'https://ror.org/01b021x78 Baltimore County Public Library'),
(46889, 'https://ror.org/00msak069', 'en', 1, 'https://ror.org/00msak069 Access to Medicine Index'),
(46890, 'https://ror.org/02hf7bd34', 'en', 1, 'https://ror.org/02hf7bd34 American Evaluation Association'),
(46891, 'https://ror.org/02rqp9j27', 'no_lang_code', 1, 'https://ror.org/02rqp9j27 Batavia Biosciences (Netherlands)'),
(46892, 'https://ror.org/04te90b83', 'en', 1, 'https://ror.org/04te90b83 Cascade Bicycle Club Education Foundation'),
(46893, 'https://ror.org/03ryarw12', 'en', 1, 'https://ror.org/03ryarw12 American India Foundation'),
(46894, 'https://ror.org/01mdbny50', 'en', 1, 'https://ror.org/01mdbny50 Access to Nutrition Foundation'),
(46895, 'https://ror.org/00p3nks92', 'en', 1, 'https://ror.org/00p3nks92 American Indian Institute'),
(46896, 'https://ror.org/03b14n703', 'en', 1, 'https://ror.org/03b14n703 Cascade Mental Healthcare'),
(46897, 'https://ror.org/02zpzpz12', 'en', 1, 'https://ror.org/02zpzpz12 Access to Seeds Index'),
(46898, 'https://ror.org/04fnymv42', 'en', 1, 'https://ror.org/04fnymv42 Catalysis Foundation for Health'),
(46899, 'https://ror.org/01ttfq573', 'en', 1, 'https://ror.org/01ttfq573 Future Forum'),
(46900, 'https://ror.org/01d6jx411', 'en', 1, 'https://ror.org/01d6jx411 Children’s AIDS Fund International'),
(46901, 'https://ror.org/041746v50', 'en', 1, 'https://ror.org/041746v50 Catholic Health Association of India'),
(46902, 'https://ror.org/02bzdv186', 'en', 1, 'https://ror.org/02bzdv186 Children''s Trust Foundation'),
(46903, 'https://ror.org/054awkm93', 'en', 1, 'https://ror.org/054awkm93 Achievement Rewards for College Scientists Foundation'),
(46904, 'https://ror.org/009qwqe18', 'en', 1, 'https://ror.org/009qwqe18 ACT Foundation'),
(46905, 'https://ror.org/04fqe7r22', 'en', 1, 'https://ror.org/04fqe7r22 CHIME Institute'),
(46906, 'https://ror.org/05bj5cn41', 'en', 1, 'https://ror.org/05bj5cn41 Belgrade Community Library'),
(46907, 'https://ror.org/00v6yka12', 'en', 1, 'https://ror.org/00v6yka12 Admiral Theatre'),
(46908, 'https://ror.org/03e84bp78', 'en', 1, 'https://ror.org/03e84bp78 China Chamber of Commerce for Import and Export of Medicines and Health Products äø­å›½åŒ»čÆäæå„å“čæ›å‡ŗå£å•†ä¼š'),
(46909, 'https://ror.org/0504zvt24', 'en', 1, 'https://ror.org/0504zvt24 American Society of News Editors'),
(46910, 'https://ror.org/00zm4vy06', 'no_lang_code', 1, 'https://ror.org/00zm4vy06 Bellwether Education Partners (United States)'),
(46911, 'https://ror.org/02kx13m48', 'en', 1, 'https://ror.org/02kx13m48 Catholic Bishops Conference of India'),
(46912, 'https://ror.org/018eag955', 'en', 1, 'https://ror.org/018eag955 American Society of Tropical Medicine and Hygiene'),
(46913, 'https://ror.org/02vjw6237', 'en', 1, 'https://ror.org/02vjw6237 China Foundation'),
(46914, 'https://ror.org/026mhhz95', 'no_lang_code', 1, 'https://ror.org/026mhhz95 Benchmark Education (United States)'),
(46915, 'https://ror.org/000wtey38', 'en', 1, 'https://ror.org/000wtey38 Africa Harvest Biotech Foundation International'),
(46916, 'https://ror.org/05h0yhm60', 'en', 1, 'https://ror.org/05h0yhm60 China Friendship Foundation for Peace and Development'),
(46917, 'https://ror.org/03ntfkn26', 'en', 1, 'https://ror.org/03ntfkn26 Ames Free Library'),
(46918, 'https://ror.org/04gz66q85', 'en', 1, 'https://ror.org/04gz66q85 Benton Foundation'),
(46919, 'https://ror.org/05ejn6a41', 'en', 1, 'https://ror.org/05ejn6a41 Center for Collaborative Education'),
(46920, 'https://ror.org/008yrcn60', 'en', 1, 'https://ror.org/008yrcn60 Bertha Voyer Memorial Library'),
(46921, 'https://ror.org/027tjrp79', 'en', 1, 'https://ror.org/027tjrp79 Africa Progress Panel'),
(46922, 'https://ror.org/026tyse21', 'en', 1, 'https://ror.org/026tyse21 Anaheim Public Library'),
(46923, 'https://ror.org/05vppxx21', 'en', 1, 'https://ror.org/05vppxx21 African Agricultural Technology Foundation'),
(46924, 'https://ror.org/021tjzv82', 'en', 1, 'https://ror.org/021tjzv82 Christian Connections for International Health'),
(46925, 'https://ror.org/03jj2t466', 'en', 1, 'https://ror.org/03jj2t466 Ancient Egypt Research Associates'),
(46926, 'https://ror.org/04h9tqm30', 'en', 1, 'https://ror.org/04h9tqm30 Center for Education Reform'),
(46927, 'https://ror.org/051j85s07', 'en', 1, 'https://ror.org/051j85s07 Climate Foundation'),
(46928, 'https://ror.org/03jr65e79', 'en', 1, 'https://ror.org/03jr65e79 African Capacity Building Foundation'),
(46929, 'https://ror.org/022733842', 'es', 1, 'https://ror.org/022733842 Biblioteca del Congreso de la Nación'),
(46930, 'https://ror.org/001dnh404', 'en', 1, 'https://ror.org/001dnh404 College for All Texans Foundation'),
(46931, 'https://ror.org/04ngqe873', 'en', 1, 'https://ror.org/04ngqe873 Center for Effective Philanthropy'),
(46932, 'https://ror.org/01w4t8268', 'en', 1, 'https://ror.org/01w4t8268 Big Rapids Community Library'),
(46933, 'https://ror.org/04q7kwp74', 'en', 1, 'https://ror.org/04q7kwp74 College Success Foundation'),
(46934, 'https://ror.org/02vjq2k16', 'en', 1, 'https://ror.org/02vjq2k16 BIO Ventures for Global Health'),
(46935, 'https://ror.org/050zd7q22', 'en', 1, 'https://ror.org/050zd7q22 African Comprehensive HIV/AIDS Partnerships'),
(46936, 'https://ror.org/05ms7st28', 'en', 1, 'https://ror.org/05ms7st28 Ministerio de Cultura Ministry of Culture'),
(46937, 'https://ror.org/03y00r958', 'en', 1, 'https://ror.org/03y00r958 Arab Foundations Forum ملتقى المؤسسات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© الداعمة'),
(46938, 'https://ror.org/03k7fv950', 'en', 1, 'https://ror.org/03k7fv950 Yawata Medical Center åŠ č³€å…«å¹”ęø©ę³‰ē—…é™¢'),
(46939, 'https://ror.org/005v7em92', 'en', 1, 'https://ror.org/005v7em92 Colorado Department of Higher Education'),
(46940, 'https://ror.org/00jr1sd21', 'en', 1, 'https://ror.org/00jr1sd21 African Field Epidemiology Network'),
(46941, 'https://ror.org/01wwqrh75', 'en', 1, 'https://ror.org/01wwqrh75 Arizona State Library, Archives and Public Records'),
(46942, 'https://ror.org/05dbk3t51', 'en', 1, 'https://ror.org/05dbk3t51 Center for Law and Social Policy'),
(46943, 'https://ror.org/010j46531', 'en', 1, 'https://ror.org/010j46531 African Health Economics and Policy Association'),
(46944, 'https://ror.org/00d4far13', 'en', 1, 'https://ror.org/00d4far13 Colorado Education Initiative'),
(46945, 'https://ror.org/01vvcdt37', 'en', 1, 'https://ror.org/01vvcdt37 Colorado Library Consortium'),
(46946, 'https://ror.org/01zjf2224', 'en', 1, 'https://ror.org/01zjf2224 African Leaders Malaria Alliance'),
(46947, 'https://ror.org/04q23dw35', 'en', 1, 'https://ror.org/04q23dw35 Arkansas Department of Higher Education'),
(46948, 'https://ror.org/00jmjse55', 'en', 1, 'https://ror.org/00jmjse55 Black Alliance for Educational Options'),
(46949, 'https://ror.org/05nsw7t82', 'en', 1, 'https://ror.org/05nsw7t82 Colorado River Indian Tribes Library'),
(46950, 'https://ror.org/02xy0vm11', 'en', 1, 'https://ror.org/02xy0vm11 Arkansas State Library'),
(46951, 'https://ror.org/050nvag51', 'en', 1, 'https://ror.org/050nvag51 Committee for Economic Development'),
(46952, 'https://ror.org/030bjny53', 'en', 1, 'https://ror.org/030bjny53 Arlington Public Library'),
(46953, 'https://ror.org/04q26a018', 'en', 1, 'https://ror.org/04q26a018 Common Heritage Foundation'),
(46954, 'https://ror.org/01xx0px16', 'en', 1, 'https://ror.org/01xx0px16 ASEAN Foundation'),
(46955, 'https://ror.org/05enr0y39', 'en', 1, 'https://ror.org/05enr0y39 Asian Counseling and Referral Service'),
(46956, 'https://ror.org/04wxd9348', 'en', 1, 'https://ror.org/04wxd9348 Center for Teaching Quality'),
(46957, 'https://ror.org/059dvm679', 'en', 1, 'https://ror.org/059dvm679 East, Central and Southern Africa Health Community'),
(46958, 'https://ror.org/039hky346', 'en', 1, 'https://ror.org/039hky346 Asian University for Women Support Foundation'),
(46959, 'https://ror.org/003xctm20', 'en', 1, 'https://ror.org/003xctm20 Road Map Project'),
(46960, 'https://ror.org/00kf09769', 'en', 1, 'https://ror.org/00kf09769 African Ministers'' Council on Water'),
(46961, 'https://ror.org/0348j9j37', 'en', 1, 'https://ror.org/0348j9j37 Association for Research on Nonprofit Organizations and Voluntary Action'),
(46962, 'https://ror.org/02qhvwc15', 'en', 1, 'https://ror.org/02qhvwc15 Boulder Institute of Microfinance'),
(46963, 'https://ror.org/059a51570', 'en', 1, 'https://ror.org/059a51570 U.S. Global Leadership Coalition'),
(46964, 'https://ror.org/02gn7j616', 'en', 1, 'https://ror.org/02gn7j616 African Virtual University'),
(46965, 'https://ror.org/03e5aw094', 'en', 1, 'https://ror.org/03e5aw094 Association for the Study of Higher Education'),
(46966, 'https://ror.org/02rbpte87', 'en', 1, 'https://ror.org/02rbpte87 African Women Education and Development Forum'),
(46967, 'https://ror.org/04cycke44', 'en', 1, 'https://ror.org/04cycke44 Center on Budget and Policy Priorities'),
(46968, 'https://ror.org/04d3s7k24', 'en', 1, 'https://ror.org/04d3s7k24 Association of African Business Schools'),
(46969, 'https://ror.org/02jr6ev43', 'en', 1, 'https://ror.org/02jr6ev43 PowerMyLearning'),
(46970, 'https://ror.org/0351wfv37', 'en', 1, 'https://ror.org/0351wfv37 Association of Charitable Foundations'),
(46971, 'https://ror.org/0275ehw53', 'en', 1, 'https://ror.org/0275ehw53 Bremen Overseas Research & Development Association'),
(46972, 'https://ror.org/02bh88b91', 'en', 1, 'https://ror.org/02bh88b91 Concept Foundation'),
(46973, 'https://ror.org/04fwk7718', 'en', 1, 'https://ror.org/04fwk7718 Association of Community College Trustees'),
(46974, 'https://ror.org/04yagfz71', 'en', 1, 'https://ror.org/04yagfz71 Center on Education Policy'),
(46975, 'https://ror.org/0109vaz13', 'en', 1, 'https://ror.org/0109vaz13 Afrivac'),
(46976, 'https://ror.org/00n80r273', 'en', 1, 'https://ror.org/00n80r273 Congressional Black Caucus Foundation'),
(46977, 'https://ror.org/02prt3487', 'en', 1, 'https://ror.org/02prt3487 Congressional Coalition on Adoption Institute'),
(46978, 'https://ror.org/028wmn587', 'en', 1, 'https://ror.org/028wmn587 Central Kentucky Educational Cooperative'),
(46979, 'https://ror.org/04fjvna30', 'en', 1, 'https://ror.org/04fjvna30 Association of Fundraising Professionals Advancement Northwest'),
(46980, 'https://ror.org/00xvrse39', 'en', 1, 'https://ror.org/00xvrse39 Association of Governing Boards of Universities and Colleges'),
(46981, 'https://ror.org/04cp1fw87', 'en', 1, 'https://ror.org/04cp1fw87 Consortium for Educational Change'),
(46982, 'https://ror.org/01pr11k10', 'en', 1, 'https://ror.org/01pr11k10 Central Savannah River Area Regional Educational Service Agency'),
(46983, 'https://ror.org/010pns631', 'en', 1, 'https://ror.org/010pns631 Consortium for School Networking'),
(46984, 'https://ror.org/0304d2a41', 'en', 1, 'https://ror.org/0304d2a41 Exponent Philanthropy'),
(46985, 'https://ror.org/03rjhat65', 'en', 1, 'https://ror.org/03rjhat65 Consortium of Florida Education Foundations'),
(46986, 'https://ror.org/01rkxw296', 'en', 1, 'https://ror.org/01rkxw296 Aid for Aids'),
(46987, 'https://ror.org/02vr4se61', 'en', 1, 'https://ror.org/02vr4se61 Brownsville Public Library'),
(46988, 'https://ror.org/011k1tq34', 'en', 1, 'https://ror.org/011k1tq34 Bucks County Free Library'),
(46989, 'https://ror.org/05stxd180', 'en', 1, 'https://ror.org/05stxd180 Atlanta Research and Education Foundation'),
(46990, 'https://ror.org/04mgmjj66', 'en', 1, 'https://ror.org/04mgmjj66 Centre for Advocacy and Research'),
(46991, 'https://ror.org/00j04c011', 'nl', 1, 'https://ror.org/00j04c011 Aidsfonds'),
(46992, 'https://ror.org/03bks0n32', 'en', 1, 'https://ror.org/03bks0n32 Greater Austin Hispanic Chamber of Commerce'),
(46993, 'https://ror.org/01c7wjq44', 'en', 1, 'https://ror.org/01c7wjq44 Contra Costa County Library'),
(46994, 'https://ror.org/03rb4a416', 'en', 1, 'https://ror.org/03rb4a416 George W. Bush Presidential Center'),
(46995, 'https://ror.org/03r8vy816', 'en', 1, 'https://ror.org/03r8vy816 Austin Voices for Education and Youth'),
(46996, 'https://ror.org/01jb93665', 'en', 1, 'https://ror.org/01jb93665 Business-Higher Education Forum'),
(46997, 'https://ror.org/05hsdzk10', 'en', 1, 'https://ror.org/05hsdzk10 AIDS Society of India'),
(46998, 'https://ror.org/03ck0bq92', 'en', 1, 'https://ror.org/03ck0bq92 AIDS Vaccine Advocacy Coalition'),
(46999, 'https://ror.org/05mdg9603', 'en', 1, 'https://ror.org/05mdg9603 Confederation of Oregon School Administrators'),
(47000, 'https://ror.org/05vtsp510', 'en', 1, 'https://ror.org/05vtsp510 Australian Respiratory and Sleep Medicine Institute'),
(47001, 'https://ror.org/05w6rx357', 'en', 1, 'https://ror.org/05w6rx357 Council for Aid to Education'),
(47002, 'https://ror.org/00v71jq68', 'en', 1, 'https://ror.org/00v71jq68 Centre for Innovation in Regulatory Science'),
(47003, 'https://ror.org/02ye0v256', 'en', 1, 'https://ror.org/02ye0v256 Council of Michigan Foundations'),
(47004, 'https://ror.org/0292ff745', 'en', 1, 'https://ror.org/0292ff745 Council on Foundations'),
(47005, 'https://ror.org/05k833b90', 'en', 1, 'https://ror.org/05k833b90 Avenir Health'),
(47006, 'https://ror.org/05be7rs83', 'en', 1, 'https://ror.org/05be7rs83 California County Superintendents Educational Services Association'),
(47007, 'https://ror.org/00wj49d82', 'en', 1, 'https://ror.org/00wj49d82 Centre for Remote Sensing and Geographic Information Services'),
(47008, 'https://ror.org/05w7zhb08', 'en', 1, 'https://ror.org/05w7zhb08 County of Los Angeles Public Library'),
(47009, 'https://ror.org/01n1nc173', 'en', 1, 'https://ror.org/01n1nc173 California State Library'),
(47010, 'https://ror.org/00st9jg49', 'en', 1, 'https://ror.org/00st9jg49 Cross Plains Public Library'),
(47011, 'https://ror.org/04nvyq536', 'en', 1, 'https://ror.org/04nvyq536 California State Library Foundation'),
(47012, 'https://ror.org/054rm1829', 'en', 1, 'https://ror.org/054rm1829 Albert Wisner Public Library'),
(47013, 'https://ror.org/0269xbr94', 'en', 1, 'https://ror.org/0269xbr94 Californians Dedicated to Education Foundation'),
(47014, 'https://ror.org/00ypw9w15', 'en', 1, 'https://ror.org/00ypw9w15 European Foundation Centre'),
(47015, 'https://ror.org/012jxwf11', 'en', 1, 'https://ror.org/012jxwf11 Alberta Library'),
(47016, 'https://ror.org/02tg35219', 'no_lang_code', 1, 'https://ror.org/02tg35219 Ceres Nanosciences'),
(47017, 'https://ror.org/01twdqv51', 'en', 1, 'https://ror.org/01twdqv51 Cumberland County Public Library and Information Center'),
(47018, 'https://ror.org/04f2nz275', 'en', 1, 'https://ror.org/04f2nz275 Eurovacc Foundation'),
(47019, 'https://ror.org/03qjf8t17', 'en', 1, 'https://ror.org/03qjf8t17 Calvert Foundation'),
(47020, 'https://ror.org/02wg0x984', 'no_lang_code', 1, 'https://ror.org/02wg0x984 M-Changa'),
(47021, 'https://ror.org/03cm5j964', 'en', 1, 'https://ror.org/03cm5j964 Cambridge in America');
INSERT INTO `rors` VALUES
(47022, 'https://ror.org/0403wct47', 'en', 1, 'https://ror.org/0403wct47 AllAfrica Foundation'),
(47023, 'https://ror.org/00yt07t18', 'en', 1, 'https://ror.org/00yt07t18 Chapel Hill Breast Cancer Foundation'),
(47024, 'https://ror.org/04vp9r166', 'en', 1, 'https://ror.org/04vp9r166 Excelencia in Education'),
(47025, 'https://ror.org/0033b1559', 'en', 1, 'https://ror.org/0033b1559 Allegheny County Library Association'),
(47026, 'https://ror.org/00t04tg27', 'en', 1, 'https://ror.org/00t04tg27 Executive Development Institute'),
(47027, 'https://ror.org/03vj6qh87', 'en', 1, 'https://ror.org/03vj6qh87 Carbondale Public Library'),
(47028, 'https://ror.org/03skd0235', 'en', 1, 'https://ror.org/03skd0235 Charities Aid Foundation'),
(47029, 'https://ror.org/001aem118', 'en', 1, 'https://ror.org/001aem118 Executive Office of Education'),
(47030, 'https://ror.org/05e48yb54', 'en', 1, 'https://ror.org/05e48yb54 Alliance for Education'),
(47031, 'https://ror.org/044b8e138', 'en', 1, 'https://ror.org/044b8e138 Davenport Public Library'),
(47032, 'https://ror.org/0344ry767', 'en', 1, 'https://ror.org/0344ry767 Chelsea District Library'),
(47033, 'https://ror.org/04m877p68', 'en', 1, 'https://ror.org/04m877p68 Cherie Blair Foundation for Women'),
(47034, 'https://ror.org/01bnqfz49', 'en', 1, 'https://ror.org/01bnqfz49 Dawliffe Hall Education Foundation'),
(47035, 'https://ror.org/01s3ybj54', 'en', 1, 'https://ror.org/01s3ybj54 Chess Mates Foundation'),
(47036, 'https://ror.org/02jeqzx58', 'en', 1, 'https://ror.org/02jeqzx58 District of Columbia Public Education Fund'),
(47037, 'https://ror.org/0045ja979', 'en', 1, 'https://ror.org/0045ja979 Chester County Library System'),
(47038, 'https://ror.org/008ensz53', 'en', 1, 'https://ror.org/008ensz53 Alliance for Excellent Education'),
(47039, 'https://ror.org/004tddr41', 'en', 1, 'https://ror.org/004tddr41 Family Online Safety Institute'),
(47040, 'https://ror.org/00nyy7p10', 'en', 1, 'https://ror.org/00nyy7p10 Deepam Educational Society for Health'),
(47041, 'https://ror.org/02dsnxe42', 'en', 1, 'https://ror.org/02dsnxe42 Farm Foundation'),
(47042, 'https://ror.org/04emz6k48', 'en', 1, 'https://ror.org/04emz6k48 Chicago International Charter School'),
(47043, 'https://ror.org/030q2z289', 'en', 1, 'https://ror.org/030q2z289 GBCHealth'),
(47044, 'https://ror.org/02hfh3870', 'en', 1, 'https://ror.org/02hfh3870 Farm Journal Foundation'),
(47045, 'https://ror.org/03p186h82', 'en', 1, 'https://ror.org/03p186h82 Delaware County Libraries'),
(47046, 'https://ror.org/040zdhw11', 'en', 1, 'https://ror.org/040zdhw11 Global Business School Network'),
(47047, 'https://ror.org/040gyce73', 'en', 1, 'https://ror.org/040gyce73 Aman Foundation'),
(47048, 'https://ror.org/02zsz8156', 'en', 1, 'https://ror.org/02zsz8156 British Fashion Council'),
(47049, 'https://ror.org/029cnn998', 'en', 1, 'https://ror.org/029cnn998 Delaware Division of Libraries'),
(47050, 'https://ror.org/04zp7ch64', 'en', 1, 'https://ror.org/04zp7ch64 Global Child Nutrition Foundation'),
(47051, 'https://ror.org/0043qss98', 'en', 1, 'https://ror.org/0043qss98 Federal Employee Education and Assistance Fund'),
(47052, 'https://ror.org/03tmsgc53', 'en', 1, 'https://ror.org/03tmsgc53 Amarillo Area Foundation'),
(47053, 'https://ror.org/01vtgjs22', 'en', 1, 'https://ror.org/01vtgjs22 Chicago Public Library Foundation'),
(47054, 'https://ror.org/02xcsx289', 'en', 1, 'https://ror.org/02xcsx289 Chief Officers of State Library Agencies'),
(47055, 'https://ror.org/028a41k93', 'en', 1, 'https://ror.org/028a41k93 Global Health Corps'),
(47056, 'https://ror.org/02vw0qn29', 'en', 1, 'https://ror.org/02vw0qn29 American Association of School Administrators'),
(47057, 'https://ror.org/05wcj6f33', 'en', 1, 'https://ror.org/05wcj6f33 Denise Louie Education Center'),
(47058, 'https://ror.org/04e1eb965', 'en', 1, 'https://ror.org/04e1eb965 Fiorello H. LaGuardia Foundation'),
(47059, 'https://ror.org/05dsfsy10', 'en', 1, 'https://ror.org/05dsfsy10 DSST Public Schools'),
(47060, 'https://ror.org/00bn1cs33', 'en', 1, 'https://ror.org/00bn1cs33 Florida Association of District School Superintendents'),
(47061, 'https://ror.org/01nakaj54', 'en', 1, 'https://ror.org/01nakaj54 Florida Association of School Administrators'),
(47062, 'https://ror.org/04v68r337', 'en', 1, 'https://ror.org/04v68r337 Child Health Foundation'),
(47063, 'https://ror.org/05fbj2448', 'en', 1, 'https://ror.org/05fbj2448 Florida Chamber of Commerce'),
(47064, 'https://ror.org/04qy3pa58', 'en', 1, 'https://ror.org/04qy3pa58 Florida College System'),
(47065, 'https://ror.org/04w491k66', 'en', 1, 'https://ror.org/04w491k66 Desmond and Leah Tutu Legacy Foundation'),
(47066, 'https://ror.org/02tr89m76', 'en', 1, 'https://ror.org/02tr89m76 Flowminder Foundation Stiftelsen Flowminder'),
(47067, 'https://ror.org/00tg8vj44', 'en', 1, 'https://ror.org/00tg8vj44 KnowledgeWorks'),
(47068, 'https://ror.org/00kp77011', 'en', 1, 'https://ror.org/00kp77011 Desmond Tutu Peace Foundation'),
(47069, 'https://ror.org/01nqzp818', 'no_lang_code', 1, 'https://ror.org/01nqzp818 Global Health Strategies (United States)'),
(47070, 'https://ror.org/04e08ga15', 'en', 1, 'https://ror.org/04e08ga15 Fontes Foundation'),
(47071, 'https://ror.org/02avpen06', 'de', 1, 'https://ror.org/02avpen06 Deutsche AIDS-Stiftung'),
(47072, 'https://ror.org/03vkb9g96', 'en', 1, 'https://ror.org/03vkb9g96 Farm Africa'),
(47073, 'https://ror.org/058whx905', 'en', 1, 'https://ror.org/058whx905 Global Libraries - Bulgaria Foundation'),
(47074, 'https://ror.org/05k53z571', 'en', 1, 'https://ror.org/05k53z571 Knox County Public Library'),
(47075, 'https://ror.org/037hta489', 'en', 1, 'https://ror.org/037hta489 Deutsche Bank'),
(47076, 'https://ror.org/05jahqa08', 'en', 1, 'https://ror.org/05jahqa08 Global Virus Network'),
(47077, 'https://ror.org/013nc1m54', 'en', 1, 'https://ror.org/013nc1m54 Fort Bend County Libraries'),
(47078, 'https://ror.org/00cgnt765', 'en', 1, 'https://ror.org/00cgnt765 Deutsche Stiftung Weltbevoelkerung German Foundation for World Population'),
(47079, 'https://ror.org/0440sme52', 'en', 1, 'https://ror.org/0440sme52 GlobalGiving'),
(47080, 'https://ror.org/02km5ae06', 'en', 1, 'https://ror.org/02km5ae06 Fort Vancouver Regional Library District'),
(47081, 'https://ror.org/00xk5y986', 'en', 1, 'https://ror.org/00xk5y986 Development Initiatives'),
(47082, 'https://ror.org/0596amb15', 'en', 1, 'https://ror.org/0596amb15 Fort Worth Library'),
(47083, 'https://ror.org/03ftb9350', 'en', 1, 'https://ror.org/03ftb9350 Government of Japan'),
(47084, 'https://ror.org/00y550t07', 'en', 1, 'https://ror.org/00y550t07 Kofi Annan Foundation'),
(47085, 'https://ror.org/04vttb719', 'en', 1, 'https://ror.org/04vttb719 Ministeri y''Ibikorwaremezo Ministry of Infrastructure MinistĆØre des Infrastructures'),
(47086, 'https://ror.org/02b40ew58', 'en', 1, 'https://ror.org/02b40ew58 League of United Latin American Citizens'),
(47087, 'https://ror.org/0377f6951', 'en', 1, 'https://ror.org/0377f6951 Foundation Center'),
(47088, 'https://ror.org/034ywkx67', 'en', 1, 'https://ror.org/034ywkx67 DigiLearn Digital Learning Institute'),
(47089, 'https://ror.org/013m7z415', 'en', 1, 'https://ror.org/013m7z415 Digital Empowerment Foundation'),
(47090, 'https://ror.org/01qqkqg60', 'en', 1, 'https://ror.org/01qqkqg60 Foundation Financial Officers Group'),
(47091, 'https://ror.org/053pkd137', 'pt', 1, 'https://ror.org/053pkd137 Instituto Kairós'),
(47092, 'https://ror.org/03rrpvb29', 'en', 1, 'https://ror.org/03rrpvb29 Digital Public Library of America'),
(47093, 'https://ror.org/0351nrb64', 'en', 1, 'https://ror.org/0351nrb64 Grameen Foundation'),
(47094, 'https://ror.org/03jp6rr57', 'en', 1, 'https://ror.org/03jp6rr57 LaConner Regional Library'),
(47095, 'https://ror.org/05qr8a694', 'en', 1, 'https://ror.org/05qr8a694 Grameen Research'),
(47096, 'https://ror.org/014ngqg04', 'es', 1, 'https://ror.org/014ngqg04 Instituto Trabajo y Familia'),
(47097, 'https://ror.org/02x7x4c86', 'no_lang_code', 1, 'https://ror.org/02x7x4c86 DNA Medicine Institute (United States)'),
(47098, 'https://ror.org/032jhh740', 'en', 1, 'https://ror.org/032jhh740 New Jersey Principals and Supervisors Association'),
(47099, 'https://ror.org/00p8ta394', 'en', 1, 'https://ror.org/00p8ta394 International AIDS Society'),
(47100, 'https://ror.org/00a0wcz54', 'en', 1, 'https://ror.org/00a0wcz54 Lancaster Education Foundation'),
(47101, 'https://ror.org/023t7pn91', 'en', 1, 'https://ror.org/023t7pn91 Grantmakers for Education'),
(47102, 'https://ror.org/0317cq689', 'en', 1, 'https://ror.org/0317cq689 Doctors of the World'),
(47103, 'https://ror.org/05qxm2f34', 'en', 1, 'https://ror.org/05qxm2f34 Foundation for Excellence in Education'),
(47104, 'https://ror.org/05dx4dz53', 'en', 1, 'https://ror.org/05dx4dz53 Foundation for Healthy Generations'),
(47105, 'https://ror.org/025qxh655', 'en', 1, 'https://ror.org/025qxh655 International Alliance for Biological Standardization'),
(47106, 'https://ror.org/01r3n4v41', 'en', 1, 'https://ror.org/01r3n4v41 Douglas Public Library'),
(47107, 'https://ror.org/025eq4061', 'no_lang_code', 1, 'https://ror.org/025eq4061 GSMA (United States)'),
(47108, 'https://ror.org/006z6tk79', 'en', 1, 'https://ror.org/006z6tk79 Dover Town Library'),
(47109, 'https://ror.org/04y2hja28', 'en', 1, 'https://ror.org/04y2hja28 International Center for Not-for-Profit Law'),
(47110, 'https://ror.org/05wn4sm75', 'en', 1, 'https://ror.org/05wn4sm75 Leadership Florida'),
(47111, 'https://ror.org/05fky2779', 'en', 1, 'https://ror.org/05fky2779 Dream Builders Foundation'),
(47112, 'https://ror.org/04dk3f152', 'fr', 1, 'https://ror.org/04dk3f152 Fondation pour la SantƩ Reproductrice et l''Education Familiale'),
(47113, 'https://ror.org/0133kas76', 'en', 1, 'https://ror.org/0133kas76 Haines Borough Public Library'),
(47114, 'https://ror.org/030r87x36', 'en', 1, 'https://ror.org/030r87x36 New York State Council of School Superintendents'),
(47115, 'https://ror.org/04z5zh552', 'en', 1, 'https://ror.org/04z5zh552 Foundation For The Carolinas'),
(47116, 'https://ror.org/04q90d498', 'en', 1, 'https://ror.org/04q90d498 Augusta-Richmond County Public Library System'),
(47117, 'https://ror.org/00xxnb467', 'en', 1, 'https://ror.org/00xxnb467 Hamilton County Department of Education'),
(47118, 'https://ror.org/04r92nh16', 'en', 1, 'https://ror.org/04r92nh16 International Community Health Services'),
(47119, 'https://ror.org/05rp1xt91', 'en', 1, 'https://ror.org/05rp1xt91 League For Innovation in the Community College'),
(47120, 'https://ror.org/04a6tk632', 'en', 1, 'https://ror.org/04a6tk632 Memphis Library Foundation'),
(47121, 'https://ror.org/004h0ew98', 'en', 1, 'https://ror.org/004h0ew98 LearnLaunch Institute'),
(47122, 'https://ror.org/02zd68c30', 'en', 1, 'https://ror.org/02zd68c30 East Lake Foundation'),
(47123, 'https://ror.org/05xke1111', 'en', 1, 'https://ror.org/05xke1111 Foundation for the Mid South'),
(47124, 'https://ror.org/039c24767', 'en', 1, 'https://ror.org/039c24767 International Confederation of Midwives'),
(47125, 'https://ror.org/01dgjdp93', 'en', 1, 'https://ror.org/01dgjdp93 Hanseatic Institute of Technology'),
(47126, 'https://ror.org/027n11q15', 'en', 1, 'https://ror.org/027n11q15 Lee County Library System'),
(47127, 'https://ror.org/00bygx606', 'en', 1, 'https://ror.org/00bygx606 International Council Of Aids Service Organizations'),
(47128, 'https://ror.org/00r97xx27', 'en', 1, 'https://ror.org/00r97xx27 Seattle Colleges'),
(47129, 'https://ror.org/00rwqqw10', 'en', 1, 'https://ror.org/00rwqqw10 Leping Social Entrepreneur Foundation åŒ—äŗ¬ä¹å¹³å…¬ē›ŠåŸŗé‡‘ä¼š'),
(47130, 'https://ror.org/04ex78q47', 'en', 1, 'https://ror.org/04ex78q47 Harney Education Service District'),
(47131, 'https://ror.org/02tsn5q48', 'en', 1, 'https://ror.org/02tsn5q48 LEV Foundation'),
(47132, 'https://ror.org/033069651', 'en', 1, 'https://ror.org/033069651 Economic Opportunity Institute'),
(47133, 'https://ror.org/042arhp84', 'en', 1, 'https://ror.org/042arhp84 Hartford Public Library'),
(47134, 'https://ror.org/025kk0m42', 'en', 1, 'https://ror.org/025kk0m42 Dustin Michael Sekula Memorial Library'),
(47135, 'https://ror.org/04kx60c47', 'en', 1, 'https://ror.org/04kx60c47 Hawaii State Public Library System'),
(47136, 'https://ror.org/02zjw6262', 'en', 1, 'https://ror.org/02zjw6262 International Development Law Organization'),
(47137, 'https://ror.org/041s9g982', 'en', 1, 'https://ror.org/041s9g982 Inland Northwest Community Foundation'),
(47138, 'https://ror.org/03b242h08', 'en', 1, 'https://ror.org/03b242h08 Library Foundation of Los Angeles'),
(47139, 'https://ror.org/053y7p194', 'en', 1, 'https://ror.org/053y7p194 Health & Development International'),
(47140, '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'),
(47141, 'https://ror.org/042qa5g53', 'en', 1, 'https://ror.org/042qa5g53 Health and Global Policy Institute'),
(47142, 'https://ror.org/004atj446', 'en', 1, 'https://ror.org/004atj446 Library of Michigan Foundation'),
(47143, 'https://ror.org/05qgdbc96', 'en', 1, 'https://ror.org/05qgdbc96 Education Cities'),
(47144, 'https://ror.org/037024349', 'en', 1, 'https://ror.org/037024349 Stand for Children'),
(47145, 'https://ror.org/01xjydw85', 'en', 1, 'https://ror.org/01xjydw85 International HIV/AIDS Alliance'),
(47146, 'https://ror.org/02frad208', 'en', 1, 'https://ror.org/02frad208 International Initiative for Impact Evaluation'),
(47147, 'https://ror.org/032b04x09', 'en', 1, 'https://ror.org/032b04x09 Chalkboard Project'),
(47148, 'https://ror.org/04gazgk64', 'en', 1, 'https://ror.org/04gazgk64 Foundations for Farming'),
(47149, 'https://ror.org/05tzak412', 'en', 1, 'https://ror.org/05tzak412 Life Sciences Discovery Fund'),
(47150, 'https://ror.org/000ajpb39', 'en', 1, 'https://ror.org/000ajpb39 Gere Foundation'),
(47151, 'https://ror.org/030f6nw85', 'en', 1, 'https://ror.org/030f6nw85 Education Leaders of Color'),
(47152, 'https://ror.org/02tqh0t89', 'en', 1, 'https://ror.org/02tqh0t89 International Institute of Rural Reconstruction'),
(47153, 'https://ror.org/0297wgk17', 'en', 1, 'https://ror.org/0297wgk17 Lifebox'),
(47154, 'https://ror.org/01hdzgr78', 'en', 1, 'https://ror.org/01hdzgr78 Education Pioneers'),
(47155, 'https://ror.org/013s0qy72', 'en', 1, 'https://ror.org/013s0qy72 FrameWorks Institute'),
(47156, 'https://ror.org/05tcf2c75', 'en', 1, 'https://ror.org/05tcf2c75 International Peace Institute'),
(47157, 'https://ror.org/016cxyb17', 'en', 1, 'https://ror.org/016cxyb17 Education Resource Strategies'),
(47158, 'https://ror.org/00vbd4626', 'en', 1, 'https://ror.org/00vbd4626 Health Systems Global'),
(47159, 'https://ror.org/03rh4dk07', 'en', 1, 'https://ror.org/03rh4dk07 Lifelong AIDS Alliance'),
(47160, 'https://ror.org/0282kvf82', 'en', 1, 'https://ror.org/0282kvf82 FƩdƩration Internationale Pharmaceutique International Pharmaceutical Federation'),
(47161, 'https://ror.org/053ttas14', 'en', 1, 'https://ror.org/053ttas14 HealthforAnimals'),
(47162, 'https://ror.org/014mdja61', 'en', 1, 'https://ror.org/014mdja61 Lilac Services for the Blind'),
(47163, 'https://ror.org/00dsga669', 'en', 1, 'https://ror.org/00dsga669 Education Service Center Region 13'),
(47164, 'https://ror.org/01dez6v88', 'en', 1, 'https://ror.org/01dez6v88 International Planned Parenthood Federation'),
(47165, 'https://ror.org/00va3ak07', 'en', 1, 'https://ror.org/00va3ak07 HealthRock'),
(47166, 'https://ror.org/01fejj311', 'en', 1, 'https://ror.org/01fejj311 International Planned Parenthood Federation'),
(47167, 'https://ror.org/001qk2b56', 'en', 1, 'https://ror.org/001qk2b56 Healthy Families of Clallam County'),
(47168, 'https://ror.org/0337vmn97', 'en', 1, 'https://ror.org/0337vmn97 Education Trust'),
(47169, 'https://ror.org/0017b9g92', 'en', 1, 'https://ror.org/0017b9g92 International Society for Developmental Origins of Health and Disease'),
(47170, 'https://ror.org/00tbf0607', 'en', 1, 'https://ror.org/00tbf0607 Lions Clubs International'),
(47171, 'https://ror.org/049ae8f38', 'en', 1, 'https://ror.org/049ae8f38 Hearing, Speech & Deaf Center'),
(47172, 'https://ror.org/03qfcr435', 'en', 1, 'https://ror.org/03qfcr435 Education Writers Association'),
(47173, 'https://ror.org/04r56x957', 'en', 1, 'https://ror.org/04r56x957 Freedom Writers Foundation'),
(47174, 'https://ror.org/02zfkey21', 'en', 1, 'https://ror.org/02zfkey21 Educational Policy Improvement Center'),
(47175, 'https://ror.org/02cavkh05', 'en', 1, 'https://ror.org/02cavkh05 Live & Learn Environmental Education'),
(47176, 'https://ror.org/03yzv2h28', 'en', 1, 'https://ror.org/03yzv2h28 Fresno County Office of Education'),
(47177, 'https://ror.org/02vnf7178', 'en', 1, 'https://ror.org/02vnf7178 International Society for Equity in Health'),
(47178, 'https://ror.org/04x3svs29', 'en', 1, 'https://ror.org/04x3svs29 Educational Results Partnership'),
(47179, 'https://ror.org/03nss1434', 'en', 1, 'https://ror.org/03nss1434 Live Oak Public Libraries'),
(47180, 'https://ror.org/04pk2pv78', 'en', 1, 'https://ror.org/04pk2pv78 Educational Service District 105'),
(47181, 'https://ror.org/02r1xnr27', 'en', 1, 'https://ror.org/02r1xnr27 Hillsborough Education Foundation'),
(47182, 'https://ror.org/014wr0t03', 'en', 1, 'https://ror.org/014wr0t03 Friends of the Global Fight'),
(47183, 'https://ror.org/00y852y62', 'en', 1, 'https://ror.org/00y852y62 Educational Service District 113'),
(47184, 'https://ror.org/05ybwtt56', 'en', 1, 'https://ror.org/05ybwtt56 Hinton Area Foundation'),
(47185, 'https://ror.org/00a8m1d79', 'en', 1, 'https://ror.org/00a8m1d79 Long Beach Public Library'),
(47186, 'https://ror.org/02rj7et34', 'en', 1, 'https://ror.org/02rj7et34 Educational Service District 123'),
(47187, 'https://ror.org/032eh0k62', 'en', 1, 'https://ror.org/032eh0k62 International Society for Influenza and other Respiratory Virus Diseases'),
(47188, 'https://ror.org/00ym78a64', 'en', 1, 'https://ror.org/00ym78a64 EducationSuperHighway'),
(47189, 'https://ror.org/05eb16411', 'en', 1, 'https://ror.org/05eb16411 Friends of the New York State Library'),
(47190, 'https://ror.org/054wjrx44', 'en', 1, 'https://ror.org/054wjrx44 Edvance Foundation'),
(47191, 'https://ror.org/00bcfzm29', 'en', 1, 'https://ror.org/00bcfzm29 Lotus Innovative Sciences'),
(47192, 'https://ror.org/05kmqsg27', 'en', 1, 'https://ror.org/05kmqsg27 Edward Charles Foundation'),
(47193, 'https://ror.org/05dw9gn95', 'en', 1, 'https://ror.org/05dw9gn95 Friends of the Seattle Public Library'),
(47194, 'https://ror.org/01chtz990', 'en', 1, 'https://ror.org/01chtz990 Foundation for Louisiana'),
(47195, 'https://ror.org/02bep9h69', 'en', 1, 'https://ror.org/02bep9h69 eHealth Africa'),
(47196, 'https://ror.org/00r4cx198', 'en', 1, 'https://ror.org/00r4cx198 National Center for Public Policy and Higher Education'),
(47197, 'https://ror.org/01p82h318', 'en', 1, 'https://ror.org/01p82h318 Fund for Educational Excellence'),
(47198, 'https://ror.org/01b719a04', 'en', 1, 'https://ror.org/01b719a04 International Society for Vaccines'),
(47199, 'https://ror.org/05f7jtw75', 'en', 1, 'https://ror.org/05f7jtw75 Eisenhower Foundation'),
(47200, 'https://ror.org/0492b0q60', 'en', 1, 'https://ror.org/0492b0q60 HJF Medical Research International'),
(47201, 'https://ror.org/03hf07k85', 'en', 1, 'https://ror.org/03hf07k85 Low Income Housing Institute'),
(47202, 'https://ror.org/055b7qp37', 'en', 1, 'https://ror.org/055b7qp37 Lowy Institute for International Policy'),
(47203, 'https://ror.org/02v5bg165', 'en', 1, 'https://ror.org/02v5bg165 Lumina Foundation'),
(47204, 'https://ror.org/00aq0ev26', 'en', 1, 'https://ror.org/00aq0ev26 Funders Concerned About AIDS'),
(47205, 'https://ror.org/05gmez332', 'en', 1, 'https://ror.org/05gmez332 Human Rights Campaign'),
(47206, 'https://ror.org/01xgsgn35', 'en', 1, 'https://ror.org/01xgsgn35 Luzerne County Libraries'),
(47207, 'https://ror.org/02exzyx31', 'en', 1, 'https://ror.org/02exzyx31 International Union of Immunological Societies'),
(47208, 'https://ror.org/041021r97', 'en', 1, 'https://ror.org/041021r97 Rotary Club of Emerald City'),
(47209, 'https://ror.org/01ghaq010', 'en', 1, 'https://ror.org/01ghaq010 Funders Network on Population, Reproductive Health and Rights'),
(47210, 'https://ror.org/003j6bs77', 'en', 1, 'https://ror.org/003j6bs77 Internationals Network For Public Schools'),
(47211, 'https://ror.org/02y286910', 'en', 1, 'https://ror.org/02y286910 Magic Johnson Foundation'),
(47212, 'https://ror.org/04hb57v11', 'en', 1, 'https://ror.org/04hb57v11 Iowa City Public Library'),
(47213, 'https://ror.org/016r17v86', 'en', 1, 'https://ror.org/016r17v86 Future Library'),
(47214, 'https://ror.org/00pnxra12', 'en', 1, 'https://ror.org/00pnxra12 Parents’ Action for Children'),
(47215, 'https://ror.org/03wzg8933', 'en', 1, 'https://ror.org/03wzg8933 GAIA Vaccine Foundation'),
(47216, 'https://ror.org/01ge62k30', 'en', 1, 'https://ror.org/01ge62k30 Ivory Coast Medical Relief Team'),
(47217, 'https://ror.org/0152hnc69', 'en', 1, 'https://ror.org/0152hnc69 Engineers Without Borders Canada Ingénieurs sans Frontières Canada'),
(47218, 'https://ror.org/04z2vav77', 'en', 1, 'https://ror.org/04z2vav77 Jacaranda Health'),
(47219, 'https://ror.org/04qnjqh32', 'en', 1, 'https://ror.org/04qnjqh32 Idaho Association of School Administrators'),
(47220, 'https://ror.org/02v62c509', 'en', 1, 'https://ror.org/02v62c509 Jacksonville Public Education Fund'),
(47221, 'https://ror.org/048z4gn84', 'en', 1, 'https://ror.org/048z4gn84 Idaho Business for Education'),
(47222, 'https://ror.org/03dxy2v98', 'en', 1, 'https://ror.org/03dxy2v98 Jamaica Library Service'),
(47223, 'https://ror.org/04mvq4v36', 'en', 1, 'https://ror.org/04mvq4v36 Malaria No More'),
(47224, 'https://ror.org/04wyn7z78', 'en', 1, 'https://ror.org/04wyn7z78 Idaho Commission for Libraries'),
(47225, 'https://ror.org/03asafg21', 'en', 1, 'https://ror.org/03asafg21 Summer Advantage USA'),
(47226, 'https://ror.org/055wab717', 'en', 1, 'https://ror.org/055wab717 Hunt Institute'),
(47227, 'https://ror.org/02d6mdg29', 'en', 1, 'https://ror.org/02d6mdg29 Environment and Population Research Centre'),
(47228, 'https://ror.org/009rysn20', 'en', 1, 'https://ror.org/009rysn20 Gary Public Library'),
(47229, 'https://ror.org/05y6mfn19', 'en', 1, 'https://ror.org/05y6mfn19 Envision Education'),
(47230, 'https://ror.org/038q1v497', 'en', 1, 'https://ror.org/038q1v497 Management Education & Research Consortium'),
(47231, 'https://ror.org/03mqek204', 'en', 1, 'https://ror.org/03mqek204 European Parliamentary Forum on Population & Development'),
(47232, 'https://ror.org/05fcp6f07', 'en', 1, 'https://ror.org/05fcp6f07 Impact India'),
(47233, 'https://ror.org/00459cq42', 'en', 1, 'https://ror.org/00459cq42 Gateway Health Institute'),
(47234, 'https://ror.org/01efzmh71', 'en', 1, 'https://ror.org/01efzmh71 Manhattan Institute for Policy Research'),
(47235, 'https://ror.org/048y1qb68', 'en', 1, 'https://ror.org/048y1qb68 Independence Public Library'),
(47236, 'https://ror.org/05r7r4y77', 'en', 1, 'https://ror.org/05r7r4y77 Gateway to College National Network'),
(47237, 'https://ror.org/0562m6y05', 'en', 1, 'https://ror.org/0562m6y05 Esperanza International'),
(47238, 'https://ror.org/01y2p0182', 'en', 1, 'https://ror.org/01y2p0182 Gay City Health Project'),
(47239, 'https://ror.org/027wewa02', 'en', 1, 'https://ror.org/027wewa02 Manufacturing Institute'),
(47240, 'https://ror.org/02d868s45', 'en', 1, 'https://ror.org/02d868s45 Discovery Behavioral Healthcare'),
(47241, 'https://ror.org/03r5svt24', 'en', 1, 'https://ror.org/03r5svt24 Ethel L. Whipple Memorial Library'),
(47242, 'https://ror.org/0296rp189', 'no_lang_code', 1, 'https://ror.org/0296rp189 Genocea (United States)'),
(47243, 'https://ror.org/00aqb5q90', 'en', 1, 'https://ror.org/00aqb5q90 Maple Street School'),
(47244, 'https://ror.org/00nnq2331', 'en', 1, 'https://ror.org/00nnq2331 Ministry of Agriculture and Natural Resource'),
(47245, 'https://ror.org/015j6pf88', 'en', 1, 'https://ror.org/015j6pf88 India Heritage Research Foundation'),
(47246, 'https://ror.org/01jdqqg29', 'en', 1, 'https://ror.org/01jdqqg29 Indian Council for Research on International Economic Relations'),
(47247, 'https://ror.org/036k4ae63', 'en', 1, 'https://ror.org/036k4ae63 Joan Ganz Cooney Center'),
(47248, 'https://ror.org/01y01n005', 'en', 1, 'https://ror.org/01y01n005 Maricopa County Library District'),
(47249, 'https://ror.org/01sh98j38', 'en', 1, 'https://ror.org/01sh98j38 Mill Valley Public Library'),
(47250, 'https://ror.org/027gdgv35', 'en', 1, 'https://ror.org/027gdgv35 Pike Place Market Foundation'),
(47251, 'https://ror.org/04m0nsn08', 'en', 1, 'https://ror.org/04m0nsn08 Indiana Commission for Higher Education'),
(47252, 'https://ror.org/00k6jf574', 'en', 1, 'https://ror.org/00k6jf574 Johar Health Maintenance Organization'),
(47253, 'https://ror.org/0306thw41', 'lt', 1, 'https://ror.org/0306thw41 Lietuvos nacionalinė Martyno Mažvydo biblioteka Martynas Mažvydas National Library'),
(47254, 'https://ror.org/02k3f4s48', 'en', 1, 'https://ror.org/02k3f4s48 Georgia Chamber of Commerce'),
(47255, 'https://ror.org/049zex268', 'en', 1, 'https://ror.org/049zex268 Ministry of Culture ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на ŠŗŃƒŠ»Ń‚ŃƒŃ€Š°Ń‚Š°'),
(47256, 'https://ror.org/04csh5447', 'en', 1, 'https://ror.org/04csh5447 Mass Insight Education'),
(47257, 'https://ror.org/00ctv5m58', 'en', 1, 'https://ror.org/00ctv5m58 John N. Gardner Institute for Excellence in Undergraduate Education'),
(47258, 'https://ror.org/005w1s219', 'en', 1, 'https://ror.org/005w1s219 ICCO'),
(47259, 'https://ror.org/02wwz7n17', 'en', 1, 'https://ror.org/02wwz7n17 Georgia Public Library Service'),
(47260, 'https://ror.org/03mazta23', 'en', 1, 'https://ror.org/03mazta23 Ministry of Culture of the Republic of Latvia'),
(47261, 'https://ror.org/020y0w788', 'en', 1, 'https://ror.org/020y0w788 Massachusetts Board of Library Commissioners'),
(47262, 'https://ror.org/02rh64q44', 'en', 1, 'https://ror.org/02rh64q44 Massachusetts Business Alliance for Education'),
(47263, 'https://ror.org/03n9dk271', 'en', 1, 'https://ror.org/03n9dk271 Glen Carbon Centennial Library'),
(47264, 'https://ror.org/04hezxr66', 'en', 1, 'https://ror.org/04hezxr66 IFMR Finance Foundation'),
(47265, 'https://ror.org/05qraqp26', 'en', 1, 'https://ror.org/05qraqp26 Lietuvos Respublikos kultūros ministerija Ministry of Culture'),
(47266, 'https://ror.org/03ev7vc82', 'en', 1, 'https://ror.org/03ev7vc82 Glide Foundation'),
(47267, 'https://ror.org/05v508890', 'en', 1, 'https://ror.org/05v508890 McCallum Theatre'),
(47268, 'https://ror.org/05213zp13', 'en', 1, 'https://ror.org/05213zp13 Indigenous Language Institute'),
(47269, 'https://ror.org/04mcker87', 'en', 1, 'https://ror.org/04mcker87 Global Alliance for Improved Nutrition'),
(47270, 'https://ror.org/039tmw183', 'en', 1, 'https://ror.org/039tmw183 State Library of Kansas'),
(47271, 'https://ror.org/04xkkx196', 'en', 1, 'https://ror.org/04xkkx196 Medic One Foundation'),
(47272, 'https://ror.org/04w3fk764', 'en', 1, 'https://ror.org/04w3fk764 Clayton Christensen Institute'),
(47273, 'https://ror.org/02f8xge10', 'en', 1, 'https://ror.org/02f8xge10 Global Alliance for Livestock Veterinary Medicines'),
(47274, 'https://ror.org/03bm9hd03', 'en', 1, 'https://ror.org/03bm9hd03 Global Burn Care and Reconstructive Institute'),
(47275, 'https://ror.org/046228582', 'en', 1, 'https://ror.org/046228582 Innovative Medicines for Tuberculosis Foundation'),
(47276, 'https://ror.org/006t6t254', 'en', 1, 'https://ror.org/006t6t254 Bį»™ ThĆ“ng tin vĆ  Truyền thĆ“ng Ministry of Information and Communications'),
(47277, 'https://ror.org/00gnyh466', 'en', 1, 'https://ror.org/00gnyh466 Medical Library Association'),
(47278, 'https://ror.org/01zavst24', 'en', 1, 'https://ror.org/01zavst24 Inspired Practices in Early Education'),
(47279, 'https://ror.org/03hy63170', 'en', 1, 'https://ror.org/03hy63170 Kappa Kappa Gamma'),
(47280, 'https://ror.org/03gbx5482', 'en', 1, 'https://ror.org/03gbx5482 Ministry of Urban Development,Housing and Construction'),
(47281, 'https://ror.org/02a8nk956', 'en', 1, 'https://ror.org/02a8nk956 Medical Teams International'),
(47282, 'https://ror.org/05qgvn881', 'fr', 1, 'https://ror.org/05qgvn881 Institut Bouisson Bertrand'),
(47283, 'https://ror.org/05tsb3a74', 'en', 1, 'https://ror.org/05tsb3a74 Ministry of Urban Development ą¤øą¤¹ą¤°ą„€ विकास ą¤®ą¤Øą„ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ | ą¤Øą¤æą¤œą¤¾ą¤®ą¤¤ą„€ ą¤øą„‡ą¤µą¤¾ą¤•ą„‹ सपना'),
(47284, 'https://ror.org/05fg21x21', 'en', 1, 'https://ror.org/05fg21x21 Karma Healthcare'),
(47285, 'https://ror.org/045pkp007', 'en', 1, 'https://ror.org/045pkp007 United States Chamber of Commerce'),
(47286, 'https://ror.org/02ptdjf52', 'en', 1, 'https://ror.org/02ptdjf52 Ministry OF City Planning and Water Supply ą®Øą®•ą®°ą®®ąÆ ą®¤ą®æą®ŸąÆą®Ÿą®®ą®æą®Ÿą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®ØąÆ€ą®°ąÆ ą®µą®“ą®™ąÆą®•ą®²ąÆ ą®…ą®®ąÆˆą®šąÆą®šąÆ නගරය ą·ƒą·ą¶½ą·ƒą·”ą¶øą·Š ą·„ą· ජල ą·ƒą¶øą·Šą¶“ą·ą¶Æą¶± ą¶…ą¶øą·ą¶­ą·Šą¶ŗą·ą¶‚ą·ą¶ŗ'),
(47287, 'https://ror.org/00t4jm248', 'hi', 1, 'https://ror.org/00t4jm248 Bharatiya Vidya Bhavan'),
(47288, 'https://ror.org/040k8g838', 'en', 1, 'https://ror.org/040k8g838 Institute for Advanced Journalism Studies'),
(47289, 'https://ror.org/01m4zvx19', 'en', 1, 'https://ror.org/01m4zvx19 Gapminder Foundation Stiftelsen Gapminder'),
(47290, 'https://ror.org/05p4w7d36', 'en', 1, 'https://ror.org/05p4w7d36 Meridian Institute'),
(47291, 'https://ror.org/014crx992', 'en', 1, 'https://ror.org/014crx992 Kentucky Chamber of Commerce'),
(47292, 'https://ror.org/011cn9r82', 'en', 1, 'https://ror.org/011cn9r82 Institute for Community Leadership'),
(47293, 'https://ror.org/023dp4p42', 'en', 1, 'https://ror.org/023dp4p42 Mesa Public Library'),
(47294, 'https://ror.org/0092jx746', 'en', 1, 'https://ror.org/0092jx746 Institute for Educational Leadership'),
(47295, 'https://ror.org/02y8yb391', 'en', 1, 'https://ror.org/02y8yb391 New Paradigm for Education'),
(47296, 'https://ror.org/02q8j7k72', 'en', 1, 'https://ror.org/02q8j7k72 Metropolitan Library System'),
(47297, 'https://ror.org/00c1z8d24', 'en', 1, 'https://ror.org/00c1z8d24 Mexican American Legal Defense and Educational Fund'),
(47298, 'https://ror.org/04wghbv83', 'en', 1, 'https://ror.org/04wghbv83 NewTech Network'),
(47299, 'https://ror.org/029qnmr64', 'en', 1, 'https://ror.org/029qnmr64 Kern County Library'),
(47300, 'https://ror.org/051q2fd34', 'en', 1, 'https://ror.org/051q2fd34 Maisha Meds'),
(47301, 'https://ror.org/04tv6t942', 'en', 1, 'https://ror.org/04tv6t942 Niswonger Foundation'),
(47302, 'https://ror.org/05bt5dg04', 'en', 1, 'https://ror.org/05bt5dg04 Institute for Family Development'),
(47303, 'https://ror.org/002zd6q52', 'en', 1, 'https://ror.org/002zd6q52 Michigan Institute for Educational Management'),
(47304, 'https://ror.org/02c176857', 'en', 1, 'https://ror.org/02c176857 North Carolina Association of Community College Trustees'),
(47305, 'https://ror.org/00ytwt138', 'en', 1, 'https://ror.org/00ytwt138 Public Law Library of King County'),
(47306, 'https://ror.org/047hjdt67', 'en', 1, 'https://ror.org/047hjdt67 Michigan Virtual University'),
(47307, 'https://ror.org/04aq7nt90', 'en', 1, 'https://ror.org/04aq7nt90 North Central Educational Service District'),
(47308, 'https://ror.org/01y72yy43', 'no_lang_code', 1, 'https://ror.org/01y72yy43 MomsRising'),
(47309, 'https://ror.org/046dqma84', 'en', 1, 'https://ror.org/046dqma84 King County Library System Foundation'),
(47310, 'https://ror.org/00t4wwd52', 'en', 1, 'https://ror.org/00t4wwd52 NorthEast Washington Educational Service District'),
(47311, 'https://ror.org/03hpv0z23', 'en', 1, 'https://ror.org/03hpv0z23 Institute for Research and Reform in Education'),
(47312, 'https://ror.org/04nw8d167', 'en', 1, 'https://ror.org/04nw8d167 KIPP Foundation'),
(47313, 'https://ror.org/007wpch15', 'en', 1, 'https://ror.org/007wpch15 Institute for Stem Cell Biology and Regenerative Medicine'),
(47314, 'https://ror.org/04fs6r254', 'en', 1, 'https://ror.org/04fs6r254 Montana State Library'),
(47315, 'https://ror.org/01c3enh80', 'en', 1, 'https://ror.org/01c3enh80 Northwest African American Museum'),
(47316, 'https://ror.org/04t3acx61', 'en', 1, 'https://ror.org/04t3acx61 Kitsap Mental Health Services'),
(47317, 'https://ror.org/05tta9x45', 'no_lang_code', 1, 'https://ror.org/05tta9x45 MicroSave'),
(47318, 'https://ror.org/03ys3np07', 'en', 1, 'https://ror.org/03ys3np07 California Teachers Association'),
(47319, 'https://ror.org/01c5c8162', 'en', 1, 'https://ror.org/01c5c8162 Institute for the Study of Knowledge Management in Education'),
(47320, 'https://ror.org/014kx9f10', 'en', 1, 'https://ror.org/014kx9f10 Plexus Institute'),
(47321, 'https://ror.org/05bpx8696', 'en', 1, 'https://ror.org/05bpx8696 Monterey Institute for Technology and Education'),
(47322, 'https://ror.org/038b3qv22', 'en', 1, 'https://ror.org/038b3qv22 Middle Georgia Regional Library'),
(47323, 'https://ror.org/04wk9pg33', 'en', 1, 'https://ror.org/04wk9pg33 Points of Light'),
(47324, 'https://ror.org/03tjh0z04', 'en', 1, 'https://ror.org/03tjh0z04 Northwest Association For Biomedical Research'),
(47325, 'https://ror.org/04q3cbc35', 'en', 1, 'https://ror.org/04q3cbc35 Midwestern Higher Education Compact'),
(47326, 'https://ror.org/00y7rmj88', 'en', 1, 'https://ror.org/00y7rmj88 Policy Cures'),
(47327, 'https://ror.org/0065eer68', 'en', 1, 'https://ror.org/0065eer68 Municipal League Foundatio'),
(47328, 'https://ror.org/00hj7mt57', 'en', 1, 'https://ror.org/00hj7mt57 Migration Policy Institute'),
(47329, 'https://ror.org/05t5jk040', 'en', 1, 'https://ror.org/05t5jk040 PIE Network'),
(47330, 'https://ror.org/01heq7e91', 'en', 1, 'https://ror.org/01heq7e91 Rotary Club of Seattle'),
(47331, 'https://ror.org/04dm2wt12', 'en', 1, 'https://ror.org/04dm2wt12 Northwest Parkinson’s Foundation'),
(47332, 'https://ror.org/011w2bv40', 'en', 1, 'https://ror.org/011w2bv40 Museum of Flight'),
(47333, 'https://ror.org/04amy1e98', 'en', 1, 'https://ror.org/04amy1e98 Northwest Territories Public Library Services'),
(47334, 'https://ror.org/04yxm6j91', 'en', 1, 'https://ror.org/04yxm6j91 Population Foundation of India'),
(47335, 'https://ror.org/03sqkgx87', 'en', 1, 'https://ror.org/03sqkgx87 Mali Health'),
(47336, 'https://ror.org/007kc7128', 'en', 1, 'https://ror.org/007kc7128 Auction of Washington Wines'),
(47337, 'https://ror.org/0309ddb28', 'en', 1, 'https://ror.org/0309ddb28 See Forever Foundation'),
(47338, 'https://ror.org/01vpnjr66', 'en', 1, 'https://ror.org/01vpnjr66 Swiss Philanthropy Foundation'),
(47339, 'https://ror.org/05a4wc005', 'en', 1, 'https://ror.org/05a4wc005 Nargis Dutt Memorial Foundation'),
(47340, 'https://ror.org/00f9hhp33', 'en', 1, 'https://ror.org/00f9hhp33 Postsecondary National Policy Institute'),
(47341, 'https://ror.org/03ds72003', 'en', 1, 'https://ror.org/03ds72003 Mitchell Institute'),
(47342, 'https://ror.org/02awk5v34', 'en', 1, 'https://ror.org/02awk5v34 Synergos Institute'),
(47343, 'https://ror.org/04541bn34', 'en', 1, 'https://ror.org/04541bn34 Nova Scotia Provincial Library'),
(47344, 'https://ror.org/02qzvv903', 'en', 1, 'https://ror.org/02qzvv903 Nashville Public Education Foundation'),
(47345, 'https://ror.org/00qep8v04', 'en', 1, 'https://ror.org/00qep8v04 Tavis Smiley Foundation'),
(47346, 'https://ror.org/04wxywd96', 'no_lang_code', 1, 'https://ror.org/04wxywd96 Praekelt Foundation'),
(47347, 'https://ror.org/03kb0fc56', 'no_lang_code', 1, 'https://ror.org/03kb0fc56 Transport Corporation of India (India)'),
(47348, 'https://ror.org/03sj0r759', 'no_lang_code', 1, 'https://ror.org/03sj0r759 Pratham'),
(47349, 'https://ror.org/04n89je52', 'en', 1, 'https://ror.org/04n89je52 NASSCOM Foundation'),
(47350, 'https://ror.org/01jr5xr29', 'en', 1, 'https://ror.org/01jr5xr29 Preeclampsia Foundation'),
(47351, 'https://ror.org/00whc6223', 'en', 1, 'https://ror.org/00whc6223 Team Pennsylvania Foundation'),
(47352, 'https://ror.org/02hfdv863', 'en', 1, 'https://ror.org/02hfdv863 National Academy Foundation'),
(47353, 'https://ror.org/05ymxrx78', 'en', 1, 'https://ror.org/05ymxrx78 NYSUT Education and Learning Trust'),
(47354, 'https://ror.org/00qm2x081', 'en', 1, 'https://ror.org/00qm2x081 Preston Healthcare Consulting'),
(47355, 'https://ror.org/04wgq9742', 'en', 1, 'https://ror.org/04wgq9742 Oakland Public Education Fund'),
(47356, 'https://ror.org/05tzxyk04', 'en', 1, 'https://ror.org/05tzxyk04 National Agency for the Control of AIDS'),
(47357, 'https://ror.org/00zhbtn94', 'en', 1, 'https://ror.org/00zhbtn94 Seton Education Partners'),
(47358, 'https://ror.org/05tewmz75', 'en', 1, 'https://ror.org/05tewmz75 Pride Foundation'),
(47359, 'https://ror.org/04vfkg585', 'en', 1, 'https://ror.org/04vfkg585 Tech Foundation'),
(47360, 'https://ror.org/03z3ntn64', 'en', 1, 'https://ror.org/03z3ntn64 Ohio Association of Community Colleges'),
(47361, 'https://ror.org/0333r3995', 'en', 1, 'https://ror.org/0333r3995 Technet Foundation'),
(47362, 'https://ror.org/041rv6v55', 'no_lang_code', 1, 'https://ror.org/041rv6v55 Shanghai Chengtou (China)'),
(47363, 'https://ror.org/03ztjdh45', 'en', 1, 'https://ror.org/03ztjdh45 Technology Access Foundation'),
(47364, 'https://ror.org/00c4hg173', 'en', 1, 'https://ror.org/00c4hg173 Business Roundtable'),
(47365, 'https://ror.org/03svt6w35', 'en', 1, 'https://ror.org/03svt6w35 Prince Edward Island Library Service'),
(47366, 'https://ror.org/01tcwz823', 'en', 1, 'https://ror.org/01tcwz823 Oklahoma Department of Libraries'),
(47367, 'https://ror.org/02f2t0y11', 'en', 1, 'https://ror.org/02f2t0y11 Shanghai Institutes for International Studies äøŠęµ·å›½é™…é—®é¢˜ē ”ē©¶é™¢'),
(47368, 'https://ror.org/01qk32r63', 'en', 1, 'https://ror.org/01qk32r63 National Aids Control Council'),
(47369, 'https://ror.org/04b6ed127', 'en', 1, 'https://ror.org/04b6ed127 National Association for the Education of Young Children'),
(47370, 'https://ror.org/00ddrmz97', 'en', 1, 'https://ror.org/00ddrmz97 Olympic Educational Service District'),
(47371, 'https://ror.org/02xdmdz74', 'en', 1, 'https://ror.org/02xdmdz74 Shasta County Office of Education'),
(47372, 'https://ror.org/047z1sn15', 'en', 1, 'https://ror.org/047z1sn15 National Association of Charter School Authorizers'),
(47373, 'https://ror.org/01e8zab89', 'en', 1, 'https://ror.org/01e8zab89 National Association of College and University Business Officers'),
(47374, 'https://ror.org/01hjfcg50', 'en', 1, 'https://ror.org/01hjfcg50 Ondo State Primary Health Care Development Board'),
(47375, 'https://ror.org/00jw6m528', 'en', 1, 'https://ror.org/00jw6m528 NALEO Educational Fund'),
(47376, 'https://ror.org/0068vc522', 'en', 1, 'https://ror.org/0068vc522 Televisa Foundation'),
(47377, 'https://ror.org/00g5kqg81', 'en', 1, 'https://ror.org/00g5kqg81 Sickle Cell Cure Foundation'),
(47378, 'https://ror.org/056q5pg38', 'en', 1, 'https://ror.org/056q5pg38 National Association of Student Financial Aid Administrators'),
(47379, 'https://ror.org/0428xa486', 'en', 1, 'https://ror.org/0428xa486 Tennessee Business Roundtable'),
(47380, 'https://ror.org/01yvdtg58', 'en', 1, 'https://ror.org/01yvdtg58 Simha Foundation'),
(47381, 'https://ror.org/00rncr141', 'en', 1, 'https://ror.org/00rncr141 Opportunity Institute'),
(47382, 'https://ror.org/0584zca10', 'no_lang_code', 1, 'https://ror.org/0584zca10 Oquirr Marketing Institute (United States)'),
(47383, 'https://ror.org/02fpvdy69', 'en', 1, 'https://ror.org/02fpvdy69 SKS Foundation'),
(47384, 'https://ror.org/04r1bef65', 'en', 1, 'https://ror.org/04r1bef65 State Collaborative on Reforming Education'),
(47385, 'https://ror.org/025jyy333', 'en', 1, 'https://ror.org/025jyy333 National Center for Higher Education Management Systems'),
(47386, 'https://ror.org/04wqw2206', 'en', 1, 'https://ror.org/04wqw2206 Digital Promise'),
(47387, 'https://ror.org/026m9rg85', 'en', 1, 'https://ror.org/026m9rg85 Brazilian Society of Tropical Medicine Sociedade Brasileira de Medicina Tropical'),
(47388, 'https://ror.org/05ay13t70', 'fr', 1, 'https://ror.org/05ay13t70 Terre des Hommes'),
(47389, 'https://ror.org/042p3e123', 'en', 1, 'https://ror.org/042p3e123 Society for International Development'),
(47390, 'https://ror.org/02pdqrx22', 'en', 1, 'https://ror.org/02pdqrx22 Center for Assessment'),
(47391, 'https://ror.org/02smbds60', 'en', 1, 'https://ror.org/02smbds60 Texas Association of Community Colleges'),
(47392, 'https://ror.org/004qka625', 'en', 1, 'https://ror.org/004qka625 Society for Research on Educational Effectiveness'),
(47393, 'https://ror.org/05p5gkr73', 'en', 1, 'https://ror.org/05p5gkr73 Texas Public Policy Foundation'),
(47394, 'https://ror.org/0053w7h52', 'en', 1, 'https://ror.org/0053w7h52 Society of Gynaecology and Obstetrics of Nigeria'),
(47395, 'https://ror.org/01ya52t91', 'en', 1, 'https://ror.org/01ya52t91 National Center on Addiction and Substance Abuse at Columbia University'),
(47396, 'https://ror.org/00cmdkk79', 'en', 1, 'https://ror.org/00cmdkk79 Private Sector Health Alliance of Nigeria'),
(47397, 'https://ror.org/04pfhbg73', 'en', 1, 'https://ror.org/04pfhbg73 Oregon Department of Education'),
(47398, 'https://ror.org/044dy9v88', 'en', 1, 'https://ror.org/044dy9v88 National Center on Education and the Economy'),
(47399, 'https://ror.org/00h7ccj27', 'en', 1, 'https://ror.org/00h7ccj27 Agora Foundation'),
(47400, 'https://ror.org/04e4r2k23', 'en', 1, 'https://ror.org/04e4r2k23 Professional Educator Standards Board'),
(47401, 'https://ror.org/02h0asf07', 'en', 1, 'https://ror.org/02h0asf07 Solano County Library'),
(47402, 'https://ror.org/02bayf457', 'en', 1, 'https://ror.org/02bayf457 Antara Foundation'),
(47403, 'https://ror.org/02neda623', 'en', 1, 'https://ror.org/02neda623 Asan Institute for Policy Studies 아산정책연구원'),
(47404, 'https://ror.org/02qjsrb04', 'en', 1, 'https://ror.org/02qjsrb04 Progressive Policy Institute'),
(47405, 'https://ror.org/03cmxf662', 'no_lang_code', 1, 'https://ror.org/03cmxf662 Solina Group (Nigeria)'),
(47406, 'https://ror.org/059j2zt82', 'en', 1, 'https://ror.org/059j2zt82 Mobility Outreach International'),
(47407, 'https://ror.org/00c2wmm70', 'en', 1, 'https://ror.org/00c2wmm70 South Africa Development Fund'),
(47408, 'https://ror.org/01abnzn91', 'en', 1, 'https://ror.org/01abnzn91 Association of Educational Publishers'),
(47409, 'https://ror.org/01t7x8s02', 'en', 1, 'https://ror.org/01t7x8s02 Boston Educational Development Foundation'),
(47410, 'https://ror.org/01kzmqh11', 'en', 1, 'https://ror.org/01kzmqh11 Proteus Digital Health'),
(47411, 'https://ror.org/03t174c88', 'en', 1, 'https://ror.org/03t174c88 Boston Foundation'),
(47412, 'https://ror.org/014jxbx13', 'es', 1, 'https://ror.org/014jxbx13 Probigua'),
(47413, 'https://ror.org/02rd6g006', 'en', 1, 'https://ror.org/02rd6g006 Federation of Infectious Diseases Societies of Southern Africa'),
(47414, 'https://ror.org/02vbakk15', 'en', 1, 'https://ror.org/02vbakk15 Public Agenda'),
(47415, 'https://ror.org/04tbrah05', 'en', 1, 'https://ror.org/04tbrah05 Broad Center'),
(47416, 'https://ror.org/04wxajv83', 'en', 1, 'https://ror.org/04wxajv83 South Carolina State Library'),
(47417, 'https://ror.org/00argmn34', 'en', 1, 'https://ror.org/00argmn34 California Education Partners'),
(47418, 'https://ror.org/01rc1wg41', 'en', 1, 'https://ror.org/01rc1wg41 National Council on Teacher Quality'),
(47419, 'https://ror.org/03dtz2q77', 'en', 1, 'https://ror.org/03dtz2q77 Osburn Public Library'),
(47420, 'https://ror.org/03fqnpd94', 'en', 1, 'https://ror.org/03fqnpd94 Chicago Council on Global Affairs'),
(47421, 'https://ror.org/01nm8ww36', 'en', 1, 'https://ror.org/01nm8ww36 South Dakota Department Of Education'),
(47422, 'https://ror.org/01vdmgn40', 'en', 1, 'https://ror.org/01vdmgn40 National Foundation for India'),
(47423, 'https://ror.org/01xd82d18', 'en', 1, 'https://ror.org/01xd82d18 PAST Foundation'),
(47424, 'https://ror.org/03fk4sm92', 'en', 1, 'https://ror.org/03fk4sm92 Southeastern Council of Foundations'),
(47425, 'https://ror.org/04t4b2612', 'en', 1, 'https://ror.org/04t4b2612 Puget Sound Educational Service District'),
(47426, 'https://ror.org/00sjwg368', 'en', 1, 'https://ror.org/00sjwg368 PICO National Network'),
(47427, 'https://ror.org/054qhne75', 'en', 1, 'https://ror.org/054qhne75 Edcamp Foundation'),
(47428, 'https://ror.org/02n7fx037', 'en', 1, 'https://ror.org/02n7fx037 National Foundation for Infectious Diseases'),
(47429, 'https://ror.org/040j6t342', 'en', 1, 'https://ror.org/040j6t342 Southern Africa Trust'),
(47430, 'https://ror.org/02zb85s41', 'en', 1, 'https://ror.org/02zb85s41 Southern Area Library'),
(47431, 'https://ror.org/05kx6e976', 'en', 1, 'https://ror.org/05kx6e976 Efficacy Institute'),
(47432, 'https://ror.org/007476v46', 'en', 1, 'https://ror.org/007476v46 Qualis Health'),
(47433, 'https://ror.org/03dvqmv75', 'en', 1, 'https://ror.org/03dvqmv75 Pact'),
(47434, 'https://ror.org/03k747n30', 'en', 1, 'https://ror.org/03k747n30 Page Public Library'),
(47435, 'https://ror.org/00wdmd464', 'en', 1, 'https://ror.org/00wdmd464 Southwest Georgia Regional Educational Service Agency'),
(47436, 'https://ror.org/010brsj79', 'en', 1, 'https://ror.org/010brsj79 Quantitative BioSciences'),
(47437, 'https://ror.org/01tb3cd08', 'en', 1, 'https://ror.org/01tb3cd08 Pahara Institute'),
(47438, 'https://ror.org/02282f973', 'no_lang_code', 1, 'https://ror.org/02282f973 Spot On Sciences (United States)'),
(47439, 'https://ror.org/050nv5191', 'en', 1, 'https://ror.org/050nv5191 Rajiv Gandhi Foundation'),
(47440, 'https://ror.org/053g1y030', 'en', 1, 'https://ror.org/053g1y030 Foundation for Vaccine Research'),
(47441, 'https://ror.org/008cjv429', 'en', 1, 'https://ror.org/008cjv429 Squaxin Island Tribe Museum Library and Research Center'),
(47442, 'https://ror.org/02ezpab79', 'en', 1, 'https://ror.org/02ezpab79 Fund for Transforming Education in Kentucky'),
(47443, 'https://ror.org/02xwnsz55', 'en', 1, 'https://ror.org/02xwnsz55 National Indian Education Association'),
(47444, 'https://ror.org/03pjeq484', 'en', 1, 'https://ror.org/03pjeq484 St. Helena Public Library'),
(47445, 'https://ror.org/035gpdd16', 'en', 1, 'https://ror.org/035gpdd16 Palouse Discovery Science Center'),
(47446, 'https://ror.org/035w8ak98', 'en', 1, 'https://ror.org/035w8ak98 Global Network of People Living with HIV/AIDS'),
(47447, 'https://ror.org/04fdcba46', 'en', 1, 'https://ror.org/04fdcba46 National Institute for Staff and Organizational Development'),
(47448, 'https://ror.org/003jx1781', 'en', 1, 'https://ror.org/003jx1781 Oklahoma State University Medical Center'),
(47449, 'https://ror.org/03tfkdy19', 'en', 1, 'https://ror.org/03tfkdy19 Greater New Orleans Foundation'),
(47450, 'https://ror.org/05s9v7453', 'en', 1, 'https://ror.org/05s9v7453 Henry Ford Learning Institute'),
(47451, 'https://ror.org/04p70wa05', 'en', 1, 'https://ror.org/04p70wa05 St Stephen’s AIDS Trust'),
(47452, 'https://ror.org/02qzgf733', 'en', 1, 'https://ror.org/02qzgf733 PAHO Foundation'),
(47453, 'https://ror.org/02s4p5q31', 'en', 1, 'https://ror.org/02s4p5q31 Hesperian Health Guides'),
(47454, 'https://ror.org/03pr9qp97', 'en', 1, 'https://ror.org/03pr9qp97 Stanislaus County Library'),
(47455, 'https://ror.org/01bxyrf83', 'en', 1, 'https://ror.org/01bxyrf83 Highlander Institute'),
(47456, 'https://ror.org/01y8wa902', 'en', 1, 'https://ror.org/01y8wa902 Panzi Foundation'),
(47457, 'https://ror.org/04n0rkn80', 'en', 1, 'https://ror.org/04n0rkn80 Parent Institute for Quality Education'),
(47458, 'https://ror.org/05as9mv70', 'en', 1, 'https://ror.org/05as9mv70 National Laboratory for Education Transformation'),
(47459, 'https://ror.org/03tqbe189', 'en', 1, 'https://ror.org/03tqbe189 State Educational Technology Directors Association'),
(47460, 'https://ror.org/04cypcj54', 'en', 1, 'https://ror.org/04cypcj54 Red Cross Society of China äø­å›½ēŗ¢åå­—ä¼š'),
(47461, 'https://ror.org/049q7ka57', 'en', 1, 'https://ror.org/049q7ka57 Institute for College Access and Success'),
(47462, 'https://ror.org/00vn5mx63', 'en', 1, 'https://ror.org/00vn5mx63 Parenting Matters Foundation'),
(47463, 'https://ror.org/02y2gbd65', 'en', 1, 'https://ror.org/02y2gbd65 Red Hook Public Library'),
(47464, 'https://ror.org/004ahbh03', 'en', 1, 'https://ror.org/004ahbh03 National Library of South Africa'),
(47465, 'https://ror.org/05g96wy68', 'en', 1, 'https://ror.org/05g96wy68 Parents United for Responsible Education'),
(47466, 'https://ror.org/03f4kqa81', 'en', 1, 'https://ror.org/03f4kqa81 State Higher Education Executive Officers'),
(47467, 'https://ror.org/00jc5v027', 'en', 1, 'https://ror.org/00jc5v027 Research for Action'),
(47468, 'https://ror.org/0075xfx31', 'en', 1, 'https://ror.org/0075xfx31 State Library of Iowa'),
(47469, 'https://ror.org/01kfs3w30', 'en', 1, 'https://ror.org/01kfs3w30 RESULTS and RESULTS Educational Fund'),
(47470, 'https://ror.org/00qs4g887', 'en', 1, 'https://ror.org/00qs4g887 Library Network'),
(47471, 'https://ror.org/040ekv640', 'en', 1, 'https://ror.org/040ekv640 Partnership for Child Health'),
(47472, 'https://ror.org/02wgzvx44', 'en', 1, 'https://ror.org/02wgzvx44 National Press Foundation'),
(47473, 'https://ror.org/03y18zz18', 'en', 1, 'https://ror.org/03y18zz18 Revenue Watch Institute'),
(47474, 'https://ror.org/0313yw666', 'no_lang_code', 1, 'https://ror.org/0313yw666 Liya Kebede Foundation'),
(47475, 'https://ror.org/044k3m707', 'en', 1, 'https://ror.org/044k3m707 Riksfƶrbundet fƶr sexuell upplysning Swedish Association for Sexuality Education'),
(47476, 'https://ror.org/01nbe0380', 'en', 1, 'https://ror.org/01nbe0380 National Public Education Support Fund'),
(47477, 'https://ror.org/01zas4j60', 'en', 1, 'https://ror.org/01zas4j60 MTV Staying Alive'),
(47478, 'https://ror.org/01n0cq521', 'en', 1, 'https://ror.org/01n0cq521 Pasteur Foundation'),
(47479, 'https://ror.org/01ydxj048', 'en', 1, 'https://ror.org/01ydxj048 Rice Institute'),
(47480, 'https://ror.org/014y8kr12', 'en', 1, 'https://ror.org/014y8kr12 Massachusetts Institute for a New Commonwealth'),
(47481, 'https://ror.org/0204daw86', 'en', 1, 'https://ror.org/0204daw86 National Office for Sanitation of Senegal'),
(47482, 'https://ror.org/042ywnb68', 'en', 1, 'https://ror.org/042ywnb68 Penda Health'),
(47483, 'https://ror.org/05wcj0w85', 'en', 1, 'https://ror.org/05wcj0w85 Richland Library'),
(47484, 'https://ror.org/00pdgpe23', 'en', 1, 'https://ror.org/00pdgpe23 Match Education'),
(47485, 'https://ror.org/05ppfa149', 'en', 1, 'https://ror.org/05ppfa149 National Student Clearinghouse Research Center'),
(47486, 'https://ror.org/04p1z3290', 'en', 1, 'https://ror.org/04p1z3290 Rigpe Dorje Foundation'),
(47487, 'https://ror.org/0479hmr04', 'en', 1, 'https://ror.org/0479hmr04 Pennsylvania Chamber of Business and Industry');
INSERT INTO `rors` VALUES
(47488, 'https://ror.org/044v7sq39', 'en', 1, 'https://ror.org/044v7sq39 NEA Foundation'),
(47489, 'https://ror.org/02egwd952', 'en', 1, 'https://ror.org/02egwd952 Natural Resource Governance Institute'),
(47490, 'https://ror.org/0226kx453', 'en', 1, 'https://ror.org/0226kx453 Riverside County Library System'),
(47491, 'https://ror.org/00t2pza55', 'en', 1, 'https://ror.org/00t2pza55 Stuart C Dodd Institute for Social Innovation'),
(47492, 'https://ror.org/00tw68s06', 'en', 1, 'https://ror.org/00tw68s06 Riverside County Office of Education'),
(47493, 'https://ror.org/017rhck27', 'en', 1, 'https://ror.org/017rhck27 Physicians for Human Rights'),
(47494, 'https://ror.org/01s1pcz40', 'en', 1, 'https://ror.org/01s1pcz40 Pittsburgh Promise Foundation'),
(47495, 'https://ror.org/02cwd3273', 'en', 1, 'https://ror.org/02cwd3273 Rocketship Education'),
(47496, 'https://ror.org/03j9nh870', 'en', 1, 'https://ror.org/03j9nh870 Pikes Peak Library District'),
(47497, 'https://ror.org/00x62g077', 'en', 1, 'https://ror.org/00x62g077 Rodel Foundation of Delaware'),
(47498, 'https://ror.org/04h288p25', 'en', 1, 'https://ror.org/04h288p25 Poynter Institute for Media Studies'),
(47499, 'https://ror.org/02zgxrw23', 'en', 1, 'https://ror.org/02zgxrw23 Pine River Public Library District'),
(47500, 'https://ror.org/05kgjg660', 'en', 1, 'https://ror.org/05kgjg660 Navajo Nation Library'),
(47501, 'https://ror.org/03rybz620', 'en', 1, 'https://ror.org/03rybz620 Health Center'),
(47502, 'https://ror.org/03c467w37', 'en', 1, 'https://ror.org/03c467w37 Pinellas Public Library Cooperative'),
(47503, 'https://ror.org/027by3f41', 'en', 1, 'https://ror.org/027by3f41 Landesa Rural Development Institute'),
(47504, 'https://ror.org/01f2as093', 'en', 1, 'https://ror.org/01f2as093 Pioneer Library System'),
(47505, 'https://ror.org/04cne0906', 'en', 1, 'https://ror.org/04cne0906 Sacramento County Office of Education'),
(47506, 'https://ror.org/03cezf402', 'en', 1, 'https://ror.org/03cezf402 First Candle'),
(47507, 'https://ror.org/048b5rj23', 'en', 1, 'https://ror.org/048b5rj23 Sacramento Public Library'),
(47508, 'https://ror.org/01427p774', 'en', 1, 'https://ror.org/01427p774 Plan International'),
(47509, 'https://ror.org/042q4th73', 'en', 1, 'https://ror.org/042q4th73 Safe Crossings Foundation'),
(47510, 'https://ror.org/005pe6g50', 'en', 1, 'https://ror.org/005pe6g50 Phoenix Public Library'),
(47511, 'https://ror.org/02apk8p19', 'en', 1, 'https://ror.org/02apk8p19 Sundance Institute'),
(47512, 'https://ror.org/050e5fp23', 'en', 1, 'https://ror.org/050e5fp23 Salt Lake County Library Services'),
(47513, 'https://ror.org/03n3dtw64', 'en', 1, 'https://ror.org/03n3dtw64 Neighborcare Health'),
(47514, 'https://ror.org/04q84b570', 'en', 1, 'https://ror.org/04q84b570 World Health Organization - Lyon Office'),
(47515, 'https://ror.org/05ke3c359', 'en', 1, 'https://ror.org/05ke3c359 SEED Foundation'),
(47516, 'https://ror.org/01jetvm74', 'no_lang_code', 1, 'https://ror.org/01jetvm74 Windmill Health Technologies (India)'),
(47517, 'https://ror.org/02b6r2g85', 'en', 1, 'https://ror.org/02b6r2g85 Winston Churchill Foundation'),
(47518, 'https://ror.org/053s4c885', 'en', 1, 'https://ror.org/053s4c885 New Brunswick Public Library Service'),
(47519, 'https://ror.org/04cqcf577', 'en', 1, 'https://ror.org/04cqcf577 Small Enterprise Education and Promotion Network'),
(47520, 'https://ror.org/01gpk9263', 'en', 1, 'https://ror.org/01gpk9263 New England Foundation for the Arts'),
(47521, 'https://ror.org/00qyppx03', 'en', 1, 'https://ror.org/00qyppx03 World Affairs Council'),
(47522, 'https://ror.org/00xsach43', 'en', 1, 'https://ror.org/00xsach43 Samaritan Healthcare'),
(47523, 'https://ror.org/05vk29a32', 'en', 1, 'https://ror.org/05vk29a32 Sambodhi Research and Communications'),
(47524, 'https://ror.org/05h4g6p05', 'en', 1, 'https://ror.org/05h4g6p05 World Affairs Council of Northern California'),
(47525, 'https://ror.org/00bbwap73', 'en', 1, 'https://ror.org/00bbwap73 Smallholders Foundation'),
(47526, 'https://ror.org/01abr9t53', 'en', 1, 'https://ror.org/01abr9t53 New Mexico Business Roundtable'),
(47527, 'https://ror.org/01qb3tn52', 'en', 1, 'https://ror.org/01qb3tn52 Surge Institute'),
(47528, 'https://ror.org/01xh0ac86', 'en', 1, 'https://ror.org/01xh0ac86 San Diego County Library'),
(47529, 'https://ror.org/056hgyx35', 'en', 1, 'https://ror.org/056hgyx35 University Prep'),
(47530, 'https://ror.org/01y6tr744', 'en', 1, 'https://ror.org/01y6tr744 New Mexico State Library'),
(47531, 'https://ror.org/03bp35d04', 'en', 1, 'https://ror.org/03bp35d04 Santa Ana Public Library'),
(47532, 'https://ror.org/04z3s3f96', 'en', 1, 'https://ror.org/04z3s3f96 Thomson Foundation'),
(47533, 'https://ror.org/00bf4k663', 'en', 1, 'https://ror.org/00bf4k663 World Cocoa Foundation'),
(47534, 'https://ror.org/05dqak117', 'en', 1, 'https://ror.org/05dqak117 Santa Cruz County Office of Education'),
(47535, 'https://ror.org/05nn94a79', 'en', 1, 'https://ror.org/05nn94a79 Uplift Education'),
(47536, 'https://ror.org/05xhay874', 'en', 1, 'https://ror.org/05xhay874 Santa Rosa County Library System'),
(47537, 'https://ror.org/020y1sx51', 'en', 1, 'https://ror.org/020y1sx51 Vellore Christian Medical College Foundation'),
(47538, 'https://ror.org/05wm3vw64', 'en', 1, 'https://ror.org/05wm3vw64 World Economic Forum'),
(47539, 'https://ror.org/016zb6379', 'en', 1, 'https://ror.org/016zb6379 ReadWorks'),
(47540, 'https://ror.org/04ayhcb48', 'en', 1, 'https://ror.org/04ayhcb48 World Federation of Public Health Associations'),
(47541, 'https://ror.org/04jzqkn30', 'en', 1, 'https://ror.org/04jzqkn30 Ursuline Academy of Dallas'),
(47542, 'https://ror.org/01wpwpn91', 'en', 1, 'https://ror.org/01wpwpn91 Therapeutic Health Services'),
(47543, 'https://ror.org/03v4mhk58', 'en', 1, 'https://ror.org/03v4mhk58 World Health Organization - Nigeria'),
(47544, 'https://ror.org/04mp5ms85', 'en', 1, 'https://ror.org/04mp5ms85 Saskatchewan Library Association'),
(47545, 'https://ror.org/047bn1w15', 'en', 1, 'https://ror.org/047bn1w15 World Health Organization - Pakistan'),
(47546, 'https://ror.org/047vwpj87', 'en', 1, 'https://ror.org/047vwpj87 Third Way'),
(47547, 'https://ror.org/0252chk84', 'en', 1, 'https://ror.org/0252chk84 Thomas B. Fordham Institute'),
(47548, 'https://ror.org/033t60e64', 'en', 1, 'https://ror.org/033t60e64 Val Verde County Library'),
(47549, 'https://ror.org/000nb0t51', 'no_lang_code', 1, 'https://ror.org/000nb0t51 VaxTrac'),
(47550, 'https://ror.org/05mkyt616', 'en', 1, 'https://ror.org/05mkyt616 Tiger Woods Foundation'),
(47551, 'https://ror.org/05xq0hs14', 'en', 1, 'https://ror.org/05xq0hs14 World Health Partners'),
(47552, 'https://ror.org/036jr6x18', 'en', 1, 'https://ror.org/036jr6x18 Save the Children'),
(47553, 'https://ror.org/021et8d97', 'en', 1, 'https://ror.org/021et8d97 World Health Partners'),
(47554, 'https://ror.org/05e12c976', 'en', 1, 'https://ror.org/05e12c976 School for Ethics and Global Leadership'),
(47555, 'https://ror.org/00nx74059', 'en', 1, 'https://ror.org/00nx74059 Schools, Health & Libraries Broadband'),
(47556, 'https://ror.org/0193yj888', 'en', 1, 'https://ror.org/0193yj888 Timberland Regional Library'),
(47557, 'https://ror.org/03n0sad24', 'en', 1, 'https://ror.org/03n0sad24 Vera Institute of Justice'),
(47558, 'https://ror.org/03qj95z98', 'en', 1, 'https://ror.org/03qj95z98 Tony Blair Africa Governance Initiative'),
(47559, 'https://ror.org/03pvvgr46', 'en', 1, 'https://ror.org/03pvvgr46 Seattle Academy of Arts and Sciences'),
(47560, 'https://ror.org/05v2tzz35', 'en', 1, 'https://ror.org/05v2tzz35 Training Programs in Epidemiology and Public Health Interventions Network'),
(47561, 'https://ror.org/04c4s9b25', 'en', 1, 'https://ror.org/04c4s9b25 Seattle Center Foundation'),
(47562, 'https://ror.org/0385nz751', 'en', 1, 'https://ror.org/0385nz751 Uongozi Institute'),
(47563, 'https://ror.org/033x8r647', 'en', 1, 'https://ror.org/033x8r647 Utah Department of Heritage and Arts'),
(47564, 'https://ror.org/00z517q71', 'en', 1, 'https://ror.org/00z517q71 Seattle Central College Foundation'),
(47565, 'https://ror.org/03cp7he26', 'en', 1, 'https://ror.org/03cp7he26 World Savings and Retail Banking Institute'),
(47566, 'https://ror.org/02pjmtb58', 'en', 1, 'https://ror.org/02pjmtb58 Ute Mountain Ute Tribe''s Environmental Programs Department'),
(47567, 'https://ror.org/00g07kf08', 'en', 1, 'https://ror.org/00g07kf08 Seattle Education Access'),
(47568, 'https://ror.org/04emgh024', 'en', 1, 'https://ror.org/04emgh024 Seattle Indian Health Board'),
(47569, 'https://ror.org/00bbs6n73', 'en', 1, 'https://ror.org/00bbs6n73 World Trade Club'),
(47570, 'https://ror.org/04v26et66', 'en', 1, 'https://ror.org/04v26et66 Trust for Advancement of Agricultural Sciences'),
(47571, 'https://ror.org/028h3z429', 'en', 1, 'https://ror.org/028h3z429 Seattle International Foundation'),
(47572, 'https://ror.org/053ppg430', 'en', 1, 'https://ror.org/053ppg430 First Tee of Greater Seattle'),
(47573, 'https://ror.org/01gydgw38', 'en', 1, 'https://ror.org/01gydgw38 Trust for Vaccines & Immunization'),
(47574, 'https://ror.org/004514720', 'en', 1, 'https://ror.org/004514720 World University Service of Canada'),
(47575, 'https://ror.org/03mn6vd03', 'en', 1, 'https://ror.org/03mn6vd03 Vicente Ferrer Foundation'),
(47576, 'https://ror.org/01r55tz35', 'en', 1, 'https://ror.org/01r55tz35 TrustAfrica'),
(47577, 'https://ror.org/021wm2t34', 'en', 1, 'https://ror.org/021wm2t34 Seattle Parks Foundation'),
(47578, 'https://ror.org/0008sqa62', 'en', 1, 'https://ror.org/0008sqa62 Virginia Beach Public Library'),
(47579, 'https://ror.org/00np3zt84', 'en', 1, 'https://ror.org/00np3zt84 Tulalip Foundation'),
(47580, 'https://ror.org/0324x0m97', 'en', 1, 'https://ror.org/0324x0m97 World Council of Credit Unions'),
(47581, 'https://ror.org/00vt3q262', 'en', 1, 'https://ror.org/00vt3q262 Union Carnegie Library'),
(47582, 'https://ror.org/023thvq22', 'en', 1, 'https://ror.org/023thvq22 United Federation of Teachers'),
(47583, 'https://ror.org/03xt5tw33', 'en', 1, 'https://ror.org/03xt5tw33 Wyoming State Library'),
(47584, 'https://ror.org/04f10rk67', 'en', 1, 'https://ror.org/04f10rk67 Virology Education'),
(47585, 'https://ror.org/04p2v2s43', 'en', 1, 'https://ror.org/04p2v2s43 XPRIZE Foundation'),
(47586, 'https://ror.org/03v4wzh43', 'en', 1, 'https://ror.org/03v4wzh43 Viva Hispanic Foundation NW'),
(47587, 'https://ror.org/05cb8xv31', 'en', 1, 'https://ror.org/05cb8xv31 United General Hospital'),
(47588, 'https://ror.org/05hdea206', 'en', 1, 'https://ror.org/05hdea206 United Indians of All Tribes'),
(47589, 'https://ror.org/05pvwrn10', 'no_lang_code', 1, 'https://ror.org/05pvwrn10 Xenetic Biosciences (United States)'),
(47590, 'https://ror.org/042p8f284', 'en', 1, 'https://ror.org/042p8f284 Volusia County Public Library'),
(47591, 'https://ror.org/02sp9pn28', 'en', 1, 'https://ror.org/02sp9pn28 Washington Area Women’s Foundation'),
(47592, 'https://ror.org/05a6zqv42', 'en', 1, 'https://ror.org/05a6zqv42 United Nations Association of the United States of America'),
(47593, 'https://ror.org/01ehdwj93', 'en', 1, 'https://ror.org/01ehdwj93 United Nations Capital Development Fund'),
(47594, 'https://ror.org/040rp5672', 'en', 1, 'https://ror.org/040rp5672 York County Libraries'),
(47595, 'https://ror.org/05mhdah91', 'en', 1, 'https://ror.org/05mhdah91 Washington Association of School Administrators'),
(47596, 'https://ror.org/050bms902', 'en', 1, 'https://ror.org/050bms902 United Nations Department of Economic and Social Affairs'),
(47597, 'https://ror.org/00n9n8692', 'en', 1, 'https://ror.org/00n9n8692 Washington Global Health Alliance'),
(47598, 'https://ror.org/002beej94', 'en', 1, 'https://ror.org/002beej94 Washington Health Foundation'),
(47599, 'https://ror.org/04c3ke011', 'en', 1, 'https://ror.org/04c3ke011 Youth Leadership Institute'),
(47600, 'https://ror.org/04kp8j175', 'en', 1, 'https://ror.org/04kp8j175 Washington News Council'),
(47601, 'https://ror.org/05574b264', 'en', 1, 'https://ror.org/05574b264 Washington State Budget and Policy Center'),
(47602, 'https://ror.org/00gxry525', 'en', 1, 'https://ror.org/00gxry525 Bolder Giving'),
(47603, 'https://ror.org/02z2a8376', 'en', 1, 'https://ror.org/02z2a8376 Washington State Grange'),
(47604, 'https://ror.org/051jd1s66', 'en', 1, 'https://ror.org/051jd1s66 Washington State Institute for Public Policy'),
(47605, 'https://ror.org/03tbpfn25', 'en', 1, 'https://ror.org/03tbpfn25 Global Call to Action Against Poverty'),
(47606, 'https://ror.org/05thwst63', 'en', 1, 'https://ror.org/05thwst63 United States Student Association'),
(47607, 'https://ror.org/02h8p6f28', 'en', 1, 'https://ror.org/02h8p6f28 Courage360'),
(47608, 'https://ror.org/01ttwsg70', 'de', 1, 'https://ror.org/01ttwsg70 Union postale universelle Universal Postal Union'),
(47609, 'https://ror.org/04r7ys083', 'en', 1, 'https://ror.org/04r7ys083 Washington Women''s Foundation'),
(47610, 'https://ror.org/02t449189', 'en', 1, 'https://ror.org/02t449189 Summit Institute'),
(47611, 'https://ror.org/03vxt1186', 'en', 1, 'https://ror.org/03vxt1186 Water Services Trust Fund'),
(47612, 'https://ror.org/02qvmv657', 'en', 1, 'https://ror.org/02qvmv657 University Child Development School'),
(47613, 'https://ror.org/04bx5yd89', 'en', 1, 'https://ror.org/04bx5yd89 Water Sanitation and Hygiene Institute'),
(47614, 'https://ror.org/00rcvgx40', 'en', 1, 'https://ror.org/00rcvgx40 Rutgers Sexual and Reproductive Health and Rights'),
(47615, 'https://ror.org/005bs1v61', 'en', 1, 'https://ror.org/005bs1v61 Yukon Department of Education'),
(47616, 'https://ror.org/05r9zr616', 'en', 1, 'https://ror.org/05r9zr616 Way Back Inn'),
(47617, 'https://ror.org/01nygqt57', 'en', 1, 'https://ror.org/01nygqt57 Wegene Ethiopian Foundation'),
(47618, 'https://ror.org/05phbdr70', 'en', 1, 'https://ror.org/05phbdr70 Weippe Public Library'),
(47619, 'https://ror.org/034ze3r60', 'en', 1, 'https://ror.org/034ze3r60 West Florida Public Libraries'),
(47620, 'https://ror.org/0155cq303', 'en', 1, 'https://ror.org/0155cq303 West Virginia Library Commission'),
(47621, 'https://ror.org/052c7a780', 'en', 1, 'https://ror.org/052c7a780 Australia Bioinformatics Resource'),
(47622, 'https://ror.org/02yf6ha74', 'en', 1, 'https://ror.org/02yf6ha74 Institut für Vergleichende Medien und Kommunikationsforschung Institute for Comparative Media and Communication Studies'),
(47623, 'https://ror.org/00n0zsa28', 'en', 1, 'https://ror.org/00n0zsa28 Institut für Europäisches Schadenersatzrecht Institute for European Tort Law'),
(47624, 'https://ror.org/009syct46', 'en', 1, 'https://ror.org/009syct46 Institut für Interdisziplinäre Gebirgsforschung Institute for Interdisciplinary Mountain Research'),
(47625, 'https://ror.org/02kd7tq69', 'en', 1, 'https://ror.org/02kd7tq69 Harbage Consulting'),
(47626, 'https://ror.org/01hbyc103', 'en', 1, 'https://ror.org/01hbyc103 Institut für Mittelalterforschung Institute for Medieval Research'),
(47627, 'https://ror.org/00x2gme77', 'en', 1, 'https://ror.org/00x2gme77 1199SEIU Funds'),
(47628, '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'),
(47629, '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'),
(47630, 'https://ror.org/00p52as68', 'en', 1, 'https://ror.org/00p52as68 Leapfrog Group'),
(47631, 'https://ror.org/016d0n234', 'en', 1, 'https://ror.org/016d0n234 Institut für Sozialanthropologie Institute for Social Anthropology'),
(47632, 'https://ror.org/00gf51y12', 'en', 1, 'https://ror.org/00gf51y12 Institut für Kulturgeschichte der Antike Institute for the Study of Ancient Culture'),
(47633, 'https://ror.org/01gxb7577', 'en', 1, 'https://ror.org/01gxb7577 Glówny Urzad Geodezji i Kartografii Head Office of Geodesy and Cartography'),
(47634, 'https://ror.org/03phzkx10', 'en', 1, 'https://ror.org/03phzkx10 Institut für Kulturwissenschaften und Theatergeschichte Institute of Culture Studies and Theatre History'),
(47635, 'https://ror.org/000fzkp10', 'no_lang_code', 1, 'https://ror.org/000fzkp10 Leavitt Partners (United States)'),
(47636, 'https://ror.org/007bwhe79', 'en', 1, 'https://ror.org/007bwhe79 Institut für Kunst- und Musikhistorische Forschungen Institute of History of Art and Musicology'),
(47637, 'https://ror.org/053jgsp62', 'en', 1, 'https://ror.org/053jgsp62 Institut für Iranistik Institute of Iranian Studies'),
(47638, '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'),
(47639, 'https://ror.org/05erkbf97', 'en', 1, 'https://ror.org/05erkbf97 Lietuvos ornitologų draugija Lithuanian Ornithological Society'),
(47640, 'https://ror.org/00dw5zk55', 'en', 1, 'https://ror.org/00dw5zk55 Institut für Technikfolgen-Abschätzung Institute of Technology Assessment'),
(47641, 'https://ror.org/02an18w50', 'hu', 1, 'https://ror.org/02an18w50 Affektív Pszichológia Tanszék'),
(47642, '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'),
(47643, 'https://ror.org/03td98h13', 'en', 1, 'https://ror.org/03td98h13 Long Term Care Community Coalition'),
(47644, 'https://ror.org/05kdjqf72', 'en', 1, 'https://ror.org/05kdjqf72 Stefan Meyer Institute for Subatomic Physics Stefan-Meyer-Institut'),
(47645, 'https://ror.org/03xxf5287', 'en', 1, 'https://ror.org/03xxf5287 Actors Fund of America'),
(47646, 'https://ror.org/01b7m6y64', 'en', 1, 'https://ror.org/01b7m6y64 Citizens Budget Commission'),
(47647, 'https://ror.org/04ycden15', 'en', 1, 'https://ror.org/04ycden15 Institut für Demographie Vienna Institute of Demography'),
(47648, 'https://ror.org/00n562475', 'en', 1, 'https://ror.org/00n562475 Romanian Intelligence Service Serviciul RomĆ¢n de Informații'),
(47649, 'https://ror.org/00mjpb940', 'en', 1, 'https://ror.org/00mjpb940 Lown Cardiovascular Group'),
(47650, 'https://ror.org/00sj6r545', 'en', 1, 'https://ror.org/00sj6r545 Health Services Research Association of Australia & New Zealand'),
(47651, 'https://ror.org/01zxxbs36', 'no_lang_code', 1, 'https://ror.org/01zxxbs36 Manatt, Phelps & Phillips (United States)'),
(47652, 'https://ror.org/01x5csq95', 'en', 1, 'https://ror.org/01x5csq95 Coalition to Transform Advanced Care'),
(47653, 'https://ror.org/05mcj1v39', 'en', 1, 'https://ror.org/05mcj1v39 Alka Wildlife'),
(47654, 'https://ror.org/05hpdph39', 'en', 1, 'https://ror.org/05hpdph39 Pacific Business Group on Health'),
(47655, 'https://ror.org/002jn2544', 'en', 1, 'https://ror.org/002jn2544 Meadowlark Hills'),
(47656, 'https://ror.org/01j5mtg86', 'en', 1, 'https://ror.org/01j5mtg86 Coleman Associates'),
(47657, 'https://ror.org/00rsvp932', 'en', 1, 'https://ror.org/00rsvp932 Health Tech Strategies'),
(47658, 'https://ror.org/03hrrt833', 'en', 1, 'https://ror.org/03hrrt833 Parkland Center For Clinical Innovation'),
(47659, 'https://ror.org/02wm1tc29', 'en', 1, 'https://ror.org/02wm1tc29 Massachusetts Health Data Consortium'),
(47660, 'https://ror.org/01x5ppp27', 'en', 1, 'https://ror.org/01x5ppp27 Partnership for Drug-Free Kids'),
(47661, 'https://ror.org/02y9z4d43', 'en', 1, 'https://ror.org/02y9z4d43 Alliance for Aging Research'),
(47662, 'https://ror.org/05rv54a27', 'en', 1, 'https://ror.org/05rv54a27 Massachusetts Health Quality Partners'),
(47663, 'https://ror.org/02fhy7n13', 'en', 1, 'https://ror.org/02fhy7n13 Alliance for Health Reform'),
(47664, 'https://ror.org/008y09k71', 'en', 1, 'https://ror.org/008y09k71 Massachusetts Senior Care Foundation'),
(47665, 'https://ror.org/01c95r073', 'en', 1, 'https://ror.org/01c95r073 Pennsylvania Health Law Project'),
(47666, 'https://ror.org/03gx95q66', 'en', 1, 'https://ror.org/03gx95q66 Persephone Productions'),
(47667, 'https://ror.org/011pq1q02', 'no_lang_code', 1, 'https://ror.org/011pq1q02 Greenwald & Associates (United States)'),
(47668, 'https://ror.org/02q8b8t22', 'en', 1, 'https://ror.org/02q8b8t22 Battery Park'),
(47669, 'https://ror.org/03sz0jr25', 'en', 1, 'https://ror.org/03sz0jr25 Why Foundation'),
(47670, 'https://ror.org/03mwbkd48', 'en', 1, 'https://ror.org/03mwbkd48 Promundo'),
(47671, 'https://ror.org/051w9x193', 'en', 1, 'https://ror.org/051w9x193 Phipps Houses'),
(47672, 'https://ror.org/016pabg12', 'en', 1, 'https://ror.org/016pabg12 Council of Accountable Physician Practices'),
(47673, 'https://ror.org/02vfcrx76', 'en', 1, 'https://ror.org/02vfcrx76 American Association of Nurse Assessment Coordination'),
(47674, 'https://ror.org/007m1j423', 'en', 1, 'https://ror.org/007m1j423 Money, Crime, and Health Policy Initiative'),
(47675, 'https://ror.org/01tbzkx87', 'en', 1, 'https://ror.org/01tbzkx87 Crime Prevention Center'),
(47676, 'https://ror.org/03t18wf38', 'en', 1, 'https://ror.org/03t18wf38 Illinois Department of Healthcare and Family Services'),
(47677, 'https://ror.org/047bhz389', 'no_lang_code', 1, 'https://ror.org/047bhz389 MDS Associates (United States)'),
(47678, 'https://ror.org/041zy7b93', 'en', 1, 'https://ror.org/041zy7b93 American College of Healthcare'),
(47679, 'https://ror.org/00s5mwe59', 'no_lang_code', 1, 'https://ror.org/00s5mwe59 Smetumet'),
(47680, 'https://ror.org/00fhnng33', 'en', 1, 'https://ror.org/00fhnng33 Medical Society of the State of New York'),
(47681, 'https://ror.org/024zaz802', 'pl', 1, 'https://ror.org/024zaz802 Podlaska Regionalna Organizacja Turystyczna'),
(47682, 'https://ror.org/026d1tb50', 'no_lang_code', 1, 'https://ror.org/026d1tb50 Inno-Water (Hungary)'),
(47683, 'https://ror.org/011r26y04', 'en', 1, 'https://ror.org/011r26y04 Polish Dance Theatre Polski Teatr Tańca'),
(47684, 'https://ror.org/01z28x230', 'en', 1, 'https://ror.org/01z28x230 Medicare Rights Center'),
(47685, 'https://ror.org/01w3gev13', 'en', 1, 'https://ror.org/01w3gev13 American Public Human Services Association'),
(47686, 'https://ror.org/036fajn26', 'en', 1, 'https://ror.org/036fajn26 Czech Society for Butterfly and Moth Conservation'),
(47687, 'https://ror.org/04b3sca92', 'en', 1, 'https://ror.org/04b3sca92 American Society of Health Economists'),
(47688, 'https://ror.org/0055m7z56', 'en', 1, 'https://ror.org/0055m7z56 Institute for Environmental Solutions Institūts Vides risinājumu'),
(47689, 'https://ror.org/02ge5fs96', 'en', 1, 'https://ror.org/02ge5fs96 American Youth Policy Forum'),
(47690, 'https://ror.org/0436njg64', 'no_lang_code', 1, 'https://ror.org/0436njg64 Politico (United States)'),
(47691, 'https://ror.org/044qnzq83', 'en', 1, 'https://ror.org/044qnzq83 Czech Womens Lobby ČeskÔ ženskÔ lobby'),
(47692, 'https://ror.org/031czmc73', 'en', 1, 'https://ror.org/031czmc73 Asian American Federation'),
(47693, 'https://ror.org/031337c36', 'en', 1, 'https://ror.org/031337c36 MetroPlus Health Plan'),
(47694, 'https://ror.org/038shek77', 'en', 1, 'https://ror.org/038shek77 ASPEA - Portuguese Association for Environmental Education'),
(47695, 'https://ror.org/01w63rj87', 'en', 1, 'https://ror.org/01w63rj87 Institute for Health Policy Solutions'),
(47696, 'https://ror.org/05x9xcd23', 'en', 1, 'https://ror.org/05x9xcd23 Midwest Business Group on Health'),
(47697, 'https://ror.org/047h3xn06', 'no_lang_code', 1, 'https://ror.org/047h3xn06 Datastat'),
(47698, 'https://ror.org/029235h09', 'en', 1, 'https://ror.org/029235h09 Prevent Child Abuse America'),
(47699, 'https://ror.org/03b7ffd73', 'en', 1, 'https://ror.org/03b7ffd73 Ministry of Environmental Protection and Regional Development'),
(47700, 'https://ror.org/020mag653', 'en', 1, 'https://ror.org/020mag653 Latvian Centre for Contemporary Art'),
(47701, 'https://ror.org/056sccp51', 'en', 1, 'https://ror.org/056sccp51 Ministry of Labour, Family, Social Affairs and Equal Opportunities'),
(47702, 'https://ror.org/02v71kg05', 'en', 1, 'https://ror.org/02v71kg05 Princeton Survey Research Associates International'),
(47703, 'https://ror.org/00yfsan48', 'en', 1, 'https://ror.org/00yfsan48 Institute for Literature Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ за Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Š°'),
(47704, 'https://ror.org/00tka3t28', 'no_lang_code', 1, 'https://ror.org/00tka3t28 ProDSP Technologies (Hungary)'),
(47705, 'https://ror.org/0421v9x53', 'en', 1, 'https://ror.org/0421v9x53 Median Research Centre'),
(47706, 'https://ror.org/041an6061', 'pl', 1, 'https://ror.org/041an6061 Uroczysko'),
(47707, 'https://ror.org/00txq6g47', 'en', 1, 'https://ror.org/00txq6g47 State Innovation Exchange'),
(47708, 'https://ror.org/01spqna17', 'en', 1, 'https://ror.org/01spqna17 Multicultural Center Prague MultikulturnĆ­ centrum Praha'),
(47709, 'https://ror.org/02t8gzn69', 'en', 1, 'https://ror.org/02t8gzn69 DMA Health Strategies'),
(47710, 'https://ror.org/0518f9g13', 'pl', 1, 'https://ror.org/0518f9g13 Wojewódzki Inspektorat Ochrony Środowiska w Warszawie'),
(47711, 'https://ror.org/01ttrzd54', 'en', 1, 'https://ror.org/01ttrzd54 Association for Historical Dialogue and Research'),
(47712, 'https://ror.org/050n29947', 'en', 1, 'https://ror.org/050n29947 Ecological Foundation Green Action Fundacja Ekologiczna "Zielona Akcja"'),
(47713, 'https://ror.org/05ntnbc55', 'en', 1, 'https://ror.org/05ntnbc55 Association Horizons'),
(47714, 'https://ror.org/023pmtm07', 'en', 1, 'https://ror.org/023pmtm07 Healthcentric Advisors'),
(47715, 'https://ror.org/01aw01n16', 'en', 1, 'https://ror.org/01aw01n16 Association for Regional Development and Mental Health'),
(47716, 'https://ror.org/02tmbkx36', 'en', 1, 'https://ror.org/02tmbkx36 Pro Carpathia'),
(47717, 'https://ror.org/00pnhex46', 'en', 1, 'https://ror.org/00pnhex46 General Directorate for Environmental Protection Generalny Dyrektor Ochrony Środowiska'),
(47718, 'https://ror.org/00xbpvv44', 'es', 1, 'https://ror.org/00xbpvv44 Asociación para el Progreso de la Mujer en el Mundo Rural'),
(47719, 'https://ror.org/02zm2n135', 'en', 1, 'https://ror.org/02zm2n135 Association of Clinicians for the Underserved'),
(47720, 'https://ror.org/029z9sm32', 'en', 1, 'https://ror.org/029z9sm32 Municipality of Kardzhali ŠžŠ±Ń‰ŠøŠ½Š° ŠšŃŠŃ€Š“Š¶Š°Š»Šø'),
(47721, 'https://ror.org/029fwbw29', 'en', 1, 'https://ror.org/029fwbw29 Sofia Municipality Дтолична община'),
(47722, 'https://ror.org/012fxzb58', 'en', 1, 'https://ror.org/012fxzb58 Regional History Museum Gabrovo Регионален исторически музей, Габрово'),
(47723, 'https://ror.org/00vtz6t93', 'no_lang_code', 1, 'https://ror.org/00vtz6t93 Enviroinvest Environmental and Biotechnological Corp'),
(47724, 'https://ror.org/02bsxzz91', 'no_lang_code', 1, 'https://ror.org/02bsxzz91 Sozopol Municipality ŠžŠ±Ń‰ŠøŠ½Š° Дозопол'),
(47725, 'https://ror.org/05g452t43', 'et', 1, 'https://ror.org/05g452t43 Association of Estonian Open Youth Centres Eesti Avatud Noortekeskuste Ühendus'),
(47726, 'https://ror.org/01n4dr964', 'en', 1, 'https://ror.org/01n4dr964 Latino/a Educational Achievement Project'),
(47727, 'https://ror.org/03tzcqp14', 'no_lang_code', 1, 'https://ror.org/03tzcqp14 Reos Production (Romania)'),
(47728, 'https://ror.org/022w6gv64', 'en', 1, 'https://ror.org/022w6gv64 Topolovgrad Municipality ŠžŠ±Ń‰ŠøŠ½Š° ТополовграГ'),
(47729, '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'),
(47730, 'https://ror.org/010ar1g07', 'en', 1, 'https://ror.org/010ar1g07 Museum of History Iskra Š˜ŃŃ‚Š¾Ń€ŠøŃ‡ŠµŃŠŗŠø музей Š˜ŃŠŗŃ€Š°'),
(47731, 'https://ror.org/01c2mxq14', 'en', 1, 'https://ror.org/01c2mxq14 Estonian Union for Child Welfare'),
(47732, 'https://ror.org/007e7q878', 'en', 1, 'https://ror.org/007e7q878 RK Evaluation and Strategies'),
(47733, 'https://ror.org/02pvtxb60', 'en', 1, 'https://ror.org/02pvtxb60 ASTRA National Museum Complex Complexul Naţional Muzeal "ASTRA"'),
(47734, 'https://ror.org/03y6jbv18', 'no_lang_code', 1, 'https://ror.org/03y6jbv18 AUS (United States)'),
(47735, 'https://ror.org/05a2x2n50', 'en', 1, 'https://ror.org/05a2x2n50 Administrația Națională Apele RomĆ¢ne Romanian Waters National Administration'),
(47736, 'https://ror.org/0184nmh41', 'en', 1, 'https://ror.org/0184nmh41 International Health Economics Association'),
(47737, 'https://ror.org/02pp6z931', 'en', 1, 'https://ror.org/02pp6z931 Bailit Health'),
(47738, 'https://ror.org/04af3ta68', 'en', 1, 'https://ror.org/04af3ta68 Executive Environment Agency'),
(47739, 'https://ror.org/04f13zs55', 'en', 1, 'https://ror.org/04f13zs55 National Association of Medicaid Directors'),
(47740, 'https://ror.org/05bzd1d42', 'en', 1, 'https://ror.org/05bzd1d42 Executive Forests Agency'),
(47741, 'https://ror.org/01fv33324', 'en', 1, 'https://ror.org/01fv33324 International Longevity Centre'),
(47742, 'https://ror.org/026cvv862', 'lv', 1, 'https://ror.org/026cvv862 Balteneko'),
(47743, 'https://ror.org/026tcwf27', 'en', 1, 'https://ror.org/026tcwf27 National Consumer Voice for Quality Long-Term Care'),
(47744, 'https://ror.org/02xyyna25', 'en', 1, 'https://ror.org/02xyyna25 International Society for Quality in Health Care'),
(47745, 'https://ror.org/02heszr58', 'en', 1, 'https://ror.org/02heszr58 Rockefeller Archive Center'),
(47746, 'https://ror.org/017s69y81', 'no_lang_code', 1, 'https://ror.org/017s69y81 Fermentia (Hungary)'),
(47747, 'https://ror.org/015w09177', 'en', 1, 'https://ror.org/015w09177 National Coalition for Cancer Survivorship'),
(47748, 'https://ror.org/04g18y077', 'no_lang_code', 1, 'https://ror.org/04g18y077 Inwatech (Hungary) Inwatech KƶrnyezetvƩdelmi Kft'),
(47749, 'https://ror.org/01h9x6t73', 'no_lang_code', 1, 'https://ror.org/01h9x6t73 ROSA'),
(47750, 'https://ror.org/04z7s6c33', 'en', 1, 'https://ror.org/04z7s6c33 Iowa Policy Project'),
(47751, 'https://ror.org/019s3m535', 'no_lang_code', 1, 'https://ror.org/019s3m535 EagleDream Health'),
(47752, 'https://ror.org/034skjj26', 'en', 1, 'https://ror.org/034skjj26 National Council on Interpreting in Health Care'),
(47753, 'https://ror.org/05nyyav28', 'en', 1, 'https://ror.org/05nyyav28 BirdLife Cyprus Ī Ļ„Ī·Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒĻ‚ Ī£ĻĪ½Ī“ĪµĻƒĪ¼ĪæĻ‚'),
(47754, 'https://ror.org/00ckatm30', 'en', 1, 'https://ror.org/00ckatm30 Black Sea Energy Cluster Š§Š•Š ŠŠžŠœŠžŠ Š”ŠšŠ˜ Š•ŠŠ•Š Š“Š˜Š•Š ŠšŠ›ŠŖŠ”Š¢Š•Š '),
(47755, 'https://ror.org/01wq69e31', 'pl', 1, 'https://ror.org/01wq69e31 Kostrzyca Forest Gene Bank'),
(47756, 'https://ror.org/01pb0m710', 'el', 1, 'https://ror.org/01pb0m710 SciFY'),
(47757, 'https://ror.org/04dbf1y97', 'en', 1, 'https://ror.org/04dbf1y97 Bratya Daskalovi Municipality ŠžŠ±Ń‰ŠøŠ½Š° Š‘Ń€Š°Ń‚Ń Даскалови'),
(47758, 'https://ror.org/02yjqcm66', 'en', 1, 'https://ror.org/02yjqcm66 Forest Research Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за гората'),
(47759, 'https://ror.org/00865qa43', 'en', 1, 'https://ror.org/00865qa43 Jewish Healthcare Foundation'),
(47760, 'https://ror.org/01p4rdh72', 'no_lang_code', 1, 'https://ror.org/01p4rdh72 Forum 50%'),
(47761, 'https://ror.org/056t7dy19', 'en', 1, 'https://ror.org/056t7dy19 National Health Law Program'),
(47762, 'https://ror.org/02473g334', 'no_lang_code', 1, 'https://ror.org/02473g334 Bulgarian Ports Infrastructure (Bulgaria) Š”ŠŖŠ Š–ŠŠ’ŠŠž ŠŸŠ Š•Š”ŠŸŠ Š˜ŠÆŠ¢Š˜Š• ŠŸŠ Š˜Š”Š¢ŠŠŠ˜Š©ŠŠ Š˜ŠŠ¤Š ŠŠ”Š¢Š Š£ŠšŠ¢Š£Š Š'),
(47763, 'https://ror.org/00j3qdn40', 'no_lang_code', 1, 'https://ror.org/00j3qdn40 SeqOmics Biotechnology (Hungary)'),
(47764, 'https://ror.org/0254sjn21', 'en', 1, 'https://ror.org/0254sjn21 National Hispanic Health Foundation'),
(47765, 'https://ror.org/04rznx125', 'en', 1, 'https://ror.org/04rznx125 Johnson Group Consulting'),
(47766, 'https://ror.org/01z2dd859', 'en', 1, 'https://ror.org/01z2dd859 National Hispanic Medical Association'),
(47767, 'https://ror.org/03cq1m515', 'en', 1, 'https://ror.org/03cq1m515 Bulgarian Society for the Protection of Birds'),
(47768, 'https://ror.org/03av58010', 'en', 1, 'https://ror.org/03av58010 Joint Center for Political and Economic Studies'),
(47769, 'https://ror.org/04j2hyd53', 'en', 1, 'https://ror.org/04j2hyd53 eHealth Initiative'),
(47770, 'https://ror.org/04gp21q48', 'en', 1, 'https://ror.org/04gp21q48 Slovinski National Park Słowiński Park Narodowy'),
(47771, 'https://ror.org/00cq73k33', 'en', 1, 'https://ror.org/00cq73k33 Buzau County Museum Muzeul Județean Buzău'),
(47772, 'https://ror.org/02ykq8x89', 'en', 1, 'https://ror.org/02ykq8x89 Small Business Majority'),
(47773, 'https://ror.org/01cxrg686', 'en', 1, 'https://ror.org/01cxrg686 National Medical Fellowships'),
(47774, 'https://ror.org/04btebx51', 'pl', 1, 'https://ror.org/04btebx51 Centrum Aktywności Społecznej Pryzmat'),
(47775, 'https://ror.org/0520qph23', 'en', 1, 'https://ror.org/0520qph23 Muzeum Narodowe w Gdańsku National Museum in Gdansk'),
(47776, 'https://ror.org/02ajkzj32', 'no_lang_code', 1, 'https://ror.org/02ajkzj32 Social Science Research Solutions (United States)'),
(47777, 'https://ror.org/00rmtxk95', 'en', 1, 'https://ror.org/00rmtxk95 National Partnership for Women & Families'),
(47778, 'https://ror.org/00n7z7b94', 'no_lang_code', 1, 'https://ror.org/00n7z7b94 KNG Health Consulting (United States)'),
(47779, '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Ʃ'),
(47780, 'https://ror.org/004b7qy98', 'en', 1, 'https://ror.org/004b7qy98 Friends of the National Library of Medicine'),
(47781, 'https://ror.org/03b0a6729', 'sl', 1, 'https://ror.org/03b0a6729 DruŔtvo Ključ'),
(47782, 'https://ror.org/00jprdp28', 'no_lang_code', 1, 'https://ror.org/00jprdp28 GfK (United States)'),
(47783, 'https://ror.org/005z6d626', 'en', 1, 'https://ror.org/005z6d626 Catalyst for Payment Reform'),
(47784, 'https://ror.org/01j7m8515', 'no_lang_code', 1, 'https://ror.org/01j7m8515 Spragens and Associates (United States)'),
(47785, 'https://ror.org/01tg0gj74', 'en', 1, 'https://ror.org/01tg0gj74 Justice in Aging'),
(47786, 'https://ror.org/00at2pp81', 'no_lang_code', 1, 'https://ror.org/00at2pp81 Gender Studies'),
(47787, 'https://ror.org/05dcttj85', 'en', 1, 'https://ror.org/05dcttj85 Center for Evaluation Innovation'),
(47788, 'https://ror.org/04pfs0x85', 'en', 1, 'https://ror.org/04pfs0x85 Krzysztof Kluk Museum of Agriculture Muzeum Rolnictwa im. ks. Krzysztofa Kluka'),
(47789, 'https://ror.org/04mxckc46', 'en', 1, 'https://ror.org/04mxckc46 National Women''s Law Center'),
(47790, 'https://ror.org/0531chw57', 'en', 1, 'https://ror.org/0531chw57 Center For Medicare Advocacy'),
(47791, 'https://ror.org/02ht7jy02', 'en', 1, 'https://ror.org/02ht7jy02 State Protected Areas Service Valstybine Saugomu Teritoriju Tarnyba'),
(47792, 'https://ror.org/05r9qv072', 'en', 1, 'https://ror.org/05r9qv072 Lake Research Partners'),
(47793, 'https://ror.org/02rw3e427', 'en', 1, 'https://ror.org/02rw3e427 Nebraska Press Association'),
(47794, 'https://ror.org/02hdbjg52', 'en', 1, 'https://ror.org/02hdbjg52 Network for Excellence in Health Innovation'),
(47795, 'https://ror.org/05ezss241', 'en', 1, 'https://ror.org/05ezss241 Gift of Life Foundation'),
(47796, 'https://ror.org/05hb97k72', 'en', 1, 'https://ror.org/05hb97k72 Statistics Estonia Statistikaamet'),
(47797, 'https://ror.org/00geaen61', 'no_lang_code', 1, 'https://ror.org/00geaen61 Global Strategy Group'),
(47798, 'https://ror.org/034f3ys32', 'en', 1, 'https://ror.org/034f3ys32 New Mexico Hospital Association'),
(47799, 'https://ror.org/053nqm606', 'en', 1, 'https://ror.org/053nqm606 Fiatal KĆ©pzőművĆ©szek StĆŗdiója Studio of Young Artists Association'),
(47800, 'https://ror.org/04mm7fj57', 'no_lang_code', 1, 'https://ror.org/04mm7fj57 Szuro Trade (Hungary)'),
(47801, 'https://ror.org/04mc1sw92', 'en', 1, 'https://ror.org/04mc1sw92 Summit Health Institute for Research and Education'),
(47802, 'https://ror.org/057k33642', 'en', 1, 'https://ror.org/057k33642 New York eHealth Collaborative'),
(47803, 'https://ror.org/034118041', 'en', 1, 'https://ror.org/034118041 Grantmakers In Aging'),
(47804, 'https://ror.org/00qsa8295', 'en', 1, 'https://ror.org/00qsa8295 Truman Center for National Policy'),
(47805, 'https://ror.org/04grfq760', 'en', 1, 'https://ror.org/04grfq760 TDX Construction'),
(47806, 'https://ror.org/03ps62e58', 'en', 1, 'https://ror.org/03ps62e58 Grantmakers In Health'),
(47807, 'https://ror.org/033vxj623', 'en', 1, 'https://ror.org/033vxj623 New York Lawyers for the Public Interest'),
(47808, 'https://ror.org/00kncat42', 'en', 1, 'https://ror.org/00kncat42 Grazute Regional Park'),
(47809, 'https://ror.org/038rdj441', 'ro', 1, 'https://ror.org/038rdj441 Tehimpuls'),
(47810, 'https://ror.org/025dpe082', 'en', 1, 'https://ror.org/025dpe082 Foundation for Health Leadership & Innovation'),
(47811, 'https://ror.org/01rv0fx88', 'en', 1, 'https://ror.org/01rv0fx88 Chief Inspectorate of Environmental Protection'),
(47812, 'https://ror.org/02bns0488', 'en', 1, 'https://ror.org/02bns0488 Child Health and Development Institute'),
(47813, 'https://ror.org/02fkyk293', 'en', 1, 'https://ror.org/02fkyk293 The Century Foundation'),
(47814, 'https://ror.org/00vne6e91', 'no_lang_code', 1, 'https://ror.org/00vne6e91 NuStats (United States)'),
(47815, 'https://ror.org/05htb0v42', 'en', 1, 'https://ror.org/05htb0v42 Nuffield Trust'),
(47816, 'https://ror.org/018atqy04', 'cs', 1, 'https://ror.org/018atqy04 ObčanskĆ© sdruženĆ­ Ametyst'),
(47817, 'https://ror.org/001z8d956', 'en', 1, 'https://ror.org/001z8d956 Rocky Mountain PBS'),
(47818, 'https://ror.org/01nfaax03', 'en', 1, 'https://ror.org/01nfaax03 Fryderyk Chopin Institute Narodowy Instytut Fryderyka Chopina'),
(47819, 'https://ror.org/01kk6dc84', 'en', 1, 'https://ror.org/01kk6dc84 Zemaitija National Park Žemaitijos Nacionalinio Parko'),
(47820, 'https://ror.org/04824wb15', 'en', 1, 'https://ror.org/04824wb15 Picker Institute Europe'),
(47821, 'https://ror.org/04aydb922', 'en', 1, 'https://ror.org/04aydb922 Oikos – Cooperation and Development Oikos – Cooperação e Desenvolvimento'),
(47822, 'https://ror.org/030tsts40', 'en', 1, 'https://ror.org/030tsts40 Jewish community Brno'),
(47823, 'https://ror.org/02znpxw74', 'en', 1, 'https://ror.org/02znpxw74 Oklahoma Health Care Authority'),
(47824, 'https://ror.org/01yfxhp89', 'en', 1, 'https://ror.org/01yfxhp89 Ogród Zoologiczny we Wrocławiu Wrocław Zoo'),
(47825, 'https://ror.org/00d0kf681', 'en', 1, 'https://ror.org/00d0kf681 Serfenta Association'),
(47826, 'https://ror.org/0241y7z93', 'en', 1, 'https://ror.org/0241y7z93 Surveying and Mapping Authority of the Republic of Slovenia'),
(47827, 'https://ror.org/0142j8045', 'en', 1, 'https://ror.org/0142j8045 National Association of Community Health Centers'),
(47828, 'https://ror.org/051sqq958', 'en', 1, 'https://ror.org/051sqq958 Vermont State House'),
(47829, 'https://ror.org/04pejqy21', 'en', 1, 'https://ror.org/04pejqy21 National Research and Development Institute on Occupational Safety'),
(47830, 'https://ror.org/02fpvzy87', 'no_lang_code', 1, 'https://ror.org/02fpvzy87 UAVision (Portugal)'),
(47831, 'https://ror.org/04f5h5n26', 'en', 1, 'https://ror.org/04f5h5n26 Universal Health Care Action Network'),
(47832, 'https://ror.org/01hhamj32', 'en', 1, 'https://ror.org/01hhamj32 Wildlife Society Alauda'),
(47833, 'https://ror.org/02r06e757', 'en', 1, 'https://ror.org/02r06e757 Women''s Prison Association'),
(47834, 'https://ror.org/033fkmm82', 'pl', 1, 'https://ror.org/033fkmm82 Warsztat Innowacji Społecznych Workshop for Social Innovation'),
(47835, 'https://ror.org/02kh04593', 'de', 1, 'https://ror.org/02kh04593 Arbeitsgemeinschaft medikamentƶse Tumortherapie'),
(47836, 'https://ror.org/01jdhsq12', 'de', 1, 'https://ror.org/01jdhsq12 AGO Research GmbH'),
(47837, 'https://ror.org/05dmnc009', 'no_lang_code', 1, 'https://ror.org/05dmnc009 Ab Analitica (Italy)'),
(47838, 'https://ror.org/0431ax083', 'it', 1, 'https://ror.org/0431ax083 Associazione Italiana Ematologia Oncologia Pediatrica'),
(47839, 'https://ror.org/04tqd7s80', 'no_lang_code', 1, 'https://ror.org/04tqd7s80 Otsuka Pharmaceutical (Spain)'),
(47840, 'https://ror.org/00pyc4352', 'it', 1, 'https://ror.org/00pyc4352 Associazione Nazionale Medici Cardiologi Ospedalieri'),
(47841, 'https://ror.org/04h1j6452', 'no_lang_code', 1, 'https://ror.org/04h1j6452 Keilir Academy'),
(47842, 'https://ror.org/02paapn48', 'no_lang_code', 1, 'https://ror.org/02paapn48 Air Liquide (United Kingdom)'),
(47843, 'https://ror.org/04e6qgn10', 'no_lang_code', 1, 'https://ror.org/04e6qgn10 AstraZeneca (Italy)'),
(47844, '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'),
(47845, 'https://ror.org/05qqrnb63', 'no_lang_code', 1, 'https://ror.org/05qqrnb63 AstraZeneca (Spain)'),
(47846, 'https://ror.org/042xj9h52', 'no_lang_code', 1, 'https://ror.org/042xj9h52 AB2 Bio (Switzerland)'),
(47847, 'https://ror.org/02vg0t417', 'it', 1, 'https://ror.org/02vg0t417 Associazione Italiana per lo Studio del Fegato'),
(47848, 'https://ror.org/04pa38t98', 'no_lang_code', 1, 'https://ror.org/04pa38t98 Anthera Pharmaceuticals (United States)'),
(47849, 'https://ror.org/0219f2672', 'no_lang_code', 1, 'https://ror.org/0219f2672 Abbott (Netherlands)'),
(47850, 'https://ror.org/00yredq82', 'no_lang_code', 1, 'https://ror.org/00yredq82 AntibioTx (Denmark)'),
(47851, 'https://ror.org/04tnbfn25', 'no_lang_code', 1, 'https://ror.org/04tnbfn25 AbbVie (United Kingdom)'),
(47852, 'https://ror.org/00tsrhc80', 'en', 1, 'https://ror.org/00tsrhc80 Belgian Society of Medical Oncology'),
(47853, 'https://ror.org/05s4sa025', 'no_lang_code', 1, 'https://ror.org/05s4sa025 Antisense Therapeutics (Australia)'),
(47854, 'https://ror.org/04p6dqe59', 'no_lang_code', 1, 'https://ror.org/04p6dqe59 AbbVie (Spain)'),
(47855, 'https://ror.org/04g380834', 'sv', 1, 'https://ror.org/04g380834 Beroendecentrum Stockholm'),
(47856, 'https://ror.org/05jjs9s55', 'no_lang_code', 1, 'https://ror.org/05jjs9s55 Chiesi (United Kingdom)'),
(47857, 'https://ror.org/04zvyjw73', 'no_lang_code', 1, 'https://ror.org/04zvyjw73 Apceth Biopharma (Germany)'),
(47858, 'https://ror.org/05sw5bk43', 'en', 1, 'https://ror.org/05sw5bk43 Austrian Breast & Colorectal Cancer Study Group'),
(47859, 'https://ror.org/02rn5zx43', 'de', 1, 'https://ror.org/02rn5zx43 Berufsverband Niedergelassener GynƤkologischer Onkologen'),
(47860, 'https://ror.org/04nnjw512', 'no_lang_code', 1, 'https://ror.org/04nnjw512 Apeptico (Austria)'),
(47861, 'https://ror.org/049fdpz48', 'no_lang_code', 1, 'https://ror.org/049fdpz48 Betagenon (Sweden)'),
(47862, 'https://ror.org/04vq36g59', 'no_lang_code', 1, 'https://ror.org/04vq36g59 Apocare Pharma (Germany)'),
(47863, 'https://ror.org/02raaag15', 'no_lang_code', 1, 'https://ror.org/02raaag15 Apodemus (Sweden)'),
(47864, 'https://ror.org/04fvvze29', 'no_lang_code', 1, 'https://ror.org/04fvvze29 Besins Healthcare (Belgium)'),
(47865, 'https://ror.org/00g9je304', 'no_lang_code', 1, 'https://ror.org/00g9je304 Apogenix (Germany)'),
(47866, 'https://ror.org/013ambk20', 'no_lang_code', 1, 'https://ror.org/013ambk20 Apogepha Arzneimittel (Germany)'),
(47867, 'https://ror.org/00xfkcx46', 'no_lang_code', 1, 'https://ror.org/00xfkcx46 Ability Pharmaceuticals (Spain)'),
(47868, 'https://ror.org/04dneqm75', 'de', 1, 'https://ror.org/04dneqm75 Augenklinik UniversitƤtsallee'),
(47869, 'https://ror.org/03rkzne32', 'it', 1, 'https://ror.org/03rkzne32 Abiogen Pharma (Italy)'),
(47870, 'https://ror.org/055wmq758', 'no_lang_code', 1, 'https://ror.org/055wmq758 Auris Medical (Switzerland)'),
(47871, 'https://ror.org/02gh3wa58', 'no_lang_code', 1, 'https://ror.org/02gh3wa58 Auris Medical (United States)'),
(47872, 'https://ror.org/01hbz7518', 'no_lang_code', 1, 'https://ror.org/01hbz7518 Alexion Pharmaceuticals (France)'),
(47873, 'https://ror.org/05w8zmy08', 'no_lang_code', 1, 'https://ror.org/05w8zmy08 Abivax (France)'),
(47874, 'https://ror.org/0018xw886', 'it', 1, 'https://ror.org/0018xw886 Azienda Unita'' Sanitaria Locale Di Modena'),
(47875, 'https://ror.org/03vtebn72', 'no_lang_code', 1, 'https://ror.org/03vtebn72 Biofrontera (Germany)'),
(47876, 'https://ror.org/02qtztk24', 'en', 1, 'https://ror.org/02qtztk24 Abnoba (Germany)'),
(47877, 'https://ror.org/017j43x24', 'no_lang_code', 1, 'https://ror.org/017j43x24 Anges MG (United Kingdom)'),
(47878, 'https://ror.org/014rfma52', 'no_lang_code', 1, 'https://ror.org/014rfma52 Biogen (Germany)'),
(47879, 'https://ror.org/0480rd080', 'it', 1, 'https://ror.org/0480rd080 Azienda UnitĆ  Sanitaria Locale Rimini'),
(47880, 'https://ror.org/01pgead21', 'no_lang_code', 1, 'https://ror.org/01pgead21 Apotex (Canada)'),
(47881, 'https://ror.org/01wsqv937', 'it', 1, 'https://ror.org/01wsqv937 Azienda Sanitaria Locale Viterbo'),
(47882, 'https://ror.org/04bv91s44', 'no_lang_code', 1, 'https://ror.org/04bv91s44 Alfa Wassermann (Poland)'),
(47883, 'https://ror.org/049h4jd15', 'no_lang_code', 1, 'https://ror.org/049h4jd15 Biocon (Switzerland)'),
(47884, 'https://ror.org/005mj6e76', 'no_lang_code', 1, 'https://ror.org/005mj6e76 Autifony Therapeutics (United Kingdom)'),
(47885, 'https://ror.org/03x1kdq06', 'no_lang_code', 1, 'https://ror.org/03x1kdq06 Acacia Pharma (United Kingdom)'),
(47886, 'https://ror.org/05vdpyw24', 'no_lang_code', 1, 'https://ror.org/05vdpyw24 Auxilium Engineering Services (United Kingdom)'),
(47887, 'https://ror.org/03w7jg970', 'no_lang_code', 1, 'https://ror.org/03w7jg970 Allergan (France)'),
(47888, 'https://ror.org/04mqtjh57', 'no_lang_code', 1, 'https://ror.org/04mqtjh57 Biogen (Italy)'),
(47889, 'https://ror.org/01t2k3r89', 'no_lang_code', 1, 'https://ror.org/01t2k3r89 Aptevo Therapeutics (United Kingdom)'),
(47890, 'https://ror.org/04r0bh641', 'no_lang_code', 1, 'https://ror.org/04r0bh641 Neoleukin Therapeutics (United States)'),
(47891, 'https://ror.org/037b6bp42', 'es', 1, 'https://ror.org/037b6bp42 Alianza EspaƱola de Familias de Von Hippel Lindau'),
(47892, 'https://ror.org/00rd36p16', 'no_lang_code', 1, 'https://ror.org/00rd36p16 Biogen (United Kingdom)'),
(47893, 'https://ror.org/05ftn7r26', 'no_lang_code', 1, 'https://ror.org/05ftn7r26 Avillion (United Kingdom)'),
(47894, 'https://ror.org/04fh73803', 'no_lang_code', 1, 'https://ror.org/04fh73803 Alio Medica (Poland)'),
(47895, 'https://ror.org/05h202h75', 'no_lang_code', 1, 'https://ror.org/05h202h75 Accenture (United Kingdom)'),
(47896, 'https://ror.org/05k1t9f54', 'no_lang_code', 1, 'https://ror.org/05k1t9f54 Avizorex Pharma (Spain)'),
(47897, 'https://ror.org/01x6s1m65', 'no_lang_code', 1, 'https://ror.org/01x6s1m65 Accord (United Kingdom)'),
(47898, 'https://ror.org/04777gb96', 'no_lang_code', 1, 'https://ror.org/04777gb96 Avraham Pharmaceuticals (Israel)'),
(47899, 'https://ror.org/01spess76', 'no_lang_code', 1, 'https://ror.org/01spess76 Neoleukin Therapeutics (United Kingdom)'),
(47900, 'https://ror.org/04xep6d57', 'no_lang_code', 1, 'https://ror.org/04xep6d57 Jazz Pharmaceuticals (France)'),
(47901, 'https://ror.org/03vy22q83', 'no_lang_code', 1, 'https://ror.org/03vy22q83 Accord Healthcare (Poland)'),
(47902, 'https://ror.org/01p0nd878', 'no_lang_code', 1, 'https://ror.org/01p0nd878 Biogen (Netherlands)'),
(47903, 'https://ror.org/01s4ady16', 'no_lang_code', 1, 'https://ror.org/01s4ady16 Arafarma Group (Spain)'),
(47904, 'https://ror.org/05ebvq193', 'no_lang_code', 1, 'https://ror.org/05ebvq193 AXON Neuroscience (Slovakia)'),
(47905, 'https://ror.org/04fqvjv52', 'no_lang_code', 1, 'https://ror.org/04fqvjv52 Roivant Sciences (United States)'),
(47906, 'https://ror.org/03ay0gt39', 'no_lang_code', 1, 'https://ror.org/03ay0gt39 ALK-Abelló (Spain)'),
(47907, 'https://ror.org/021tmn508', 'no_lang_code', 1, 'https://ror.org/021tmn508 AstraZeneca (Netherlands)'),
(47908, 'https://ror.org/02yxsn987', 'no_lang_code', 1, 'https://ror.org/02yxsn987 ALK-Abelló (Germany)'),
(47909, 'https://ror.org/057p4eb38', 'no_lang_code', 1, 'https://ror.org/057p4eb38 BioibƩrica (Spain)'),
(47910, 'https://ror.org/012rw7q64', 'no_lang_code', 1, 'https://ror.org/012rw7q64 Bioinova (Czechia)'),
(47911, 'https://ror.org/03mzxvt76', 'fr', 1, 'https://ror.org/03mzxvt76 Arcagy Gineco'),
(47912, 'https://ror.org/03rkybp63', 'no_lang_code', 1, 'https://ror.org/03rkybp63 Heel (Germany)'),
(47913, 'https://ror.org/03fnbmw07', 'nl', 1, 'https://ror.org/03fnbmw07 AZ Turnhout'),
(47914, 'https://ror.org/02kz19x38', 'no_lang_code', 1, 'https://ror.org/02kz19x38 Archigen Biotech (United Kingdom)'),
(47915, 'https://ror.org/05rka3d36', 'no_lang_code', 1, 'https://ror.org/05rka3d36 BioMarin (Ireland)'),
(47916, 'https://ror.org/04kgp1379', 'it', 1, 'https://ror.org/04kgp1379 Azienda-Unita'' Sanitaria Locale Di Cesena'),
(47917, 'https://ror.org/015vfna03', 'no_lang_code', 1, 'https://ror.org/015vfna03 Achillion Pharmaceuticals (United States)'),
(47918, 'https://ror.org/049pr8275', 'no_lang_code', 1, 'https://ror.org/049pr8275 AZAD Pharma (Switzerland)'),
(47919, 'https://ror.org/00s784a62', 'no_lang_code', 1, 'https://ror.org/00s784a62 Acino International (Germany)'),
(47920, 'https://ror.org/007y18z84', 'no_lang_code', 1, 'https://ror.org/007y18z84 BioMarin (Netherlands)'),
(47921, 'https://ror.org/03w6ejj57', 'no_lang_code', 1, 'https://ror.org/03w6ejj57 Azellon (United Kingdom)'),
(47922, 'https://ror.org/0103q2z38', 'no_lang_code', 1, 'https://ror.org/0103q2z38 BioMarin (United Kingdom)'),
(47923, 'https://ror.org/028ev0325', 'it', 1, 'https://ror.org/028ev0325 Allegria'),
(47924, 'https://ror.org/03swh5660', 'no_lang_code', 1, 'https://ror.org/03swh5660 Perrigo (Sweden)'),
(47925, 'https://ror.org/05mkxvs25', 'no_lang_code', 1, 'https://ror.org/05mkxvs25 Vector Oncology (United States)'),
(47926, 'https://ror.org/01c25r859', 'no_lang_code', 1, 'https://ror.org/01c25r859 Allergan (United Kingdom)'),
(47927, 'https://ror.org/01c6n0g60', 'no_lang_code', 1, 'https://ror.org/01c6n0g60 Bionomics (Australia)'),
(47928, 'https://ror.org/00apva622', 'no_lang_code', 1, 'https://ror.org/00apva622 Arno Therapeutics (United States)'),
(47929, 'https://ror.org/0386zd719', 'no_lang_code', 1, 'https://ror.org/0386zd719 Bionor (Denmark)'),
(47930, 'https://ror.org/020yp9q46', 'no_lang_code', 1, 'https://ror.org/020yp9q46 Bionorica (Germany)'),
(47931, 'https://ror.org/05t727p43', 'no_lang_code', 1, 'https://ror.org/05t727p43 Allergan (Belgium)'),
(47932, 'https://ror.org/01nhcgj20', 'it', 1, 'https://ror.org/01nhcgj20 Ospedali Riuniti Marche Nord'),
(47933, 'https://ror.org/03xjfns22', 'no_lang_code', 1, 'https://ror.org/03xjfns22 Teva Pharmaceuticals (Hungary)');
INSERT INTO `rors` VALUES
(47934, 'https://ror.org/04v3pva14', 'no_lang_code', 1, 'https://ror.org/04v3pva14 Almirall (Germany)'),
(47935, 'https://ror.org/053xq8k96', 'no_lang_code', 1, 'https://ror.org/053xq8k96 Actelion (Netherlands)'),
(47936, 'https://ror.org/04m1bn674', 'fr', 1, 'https://ror.org/04m1bn674 Association pour la Recherche de ThƩrapeutiques Innovantes en CancƩrologie'),
(47937, 'https://ror.org/01hfykw48', 'no_lang_code', 1, 'https://ror.org/01hfykw48 Acucela (United States)'),
(47938, 'https://ror.org/01jfwp053', 'no_lang_code', 1, 'https://ror.org/01jfwp053 Aviragen Therapeutics (Australia)'),
(47939, 'https://ror.org/024eg5z54', 'no_lang_code', 1, 'https://ror.org/024eg5z54 Asacpharma (Spain)'),
(47940, 'https://ror.org/01tvtt303', 'no_lang_code', 1, 'https://ror.org/01tvtt303 Addmedica (France)'),
(47941, 'https://ror.org/05144hn20', 'no_lang_code', 1, 'https://ror.org/05144hn20 ASIT Biotech (Belgium)'),
(47942, 'https://ror.org/00pgxjc21', 'no_lang_code', 1, 'https://ror.org/00pgxjc21 Adenovir Pharma (Sweden)'),
(47943, 'https://ror.org/05jvxpr06', 'no_lang_code', 1, 'https://ror.org/05jvxpr06 Adienne (Switzerland)'),
(47944, 'https://ror.org/026w1gw23', 'no_lang_code', 1, 'https://ror.org/026w1gw23 Biotest (Austria)'),
(47945, 'https://ror.org/02p9ey581', 'it', 1, 'https://ror.org/02p9ey581 Azienda Ospedaliera Universitaria UniversitĆ  degli Studi della Campania Luigi Vanvitelli'),
(47946, 'https://ror.org/00b2bst16', 'no_lang_code', 1, 'https://ror.org/00b2bst16 Adocia (France)'),
(47947, 'https://ror.org/05gg6a906', 'no_lang_code', 1, 'https://ror.org/05gg6a906 advanceCOR (Germany)'),
(47948, 'https://ror.org/04k2v7662', 'no_lang_code', 1, 'https://ror.org/04k2v7662 Acorda Therapeutics (Switzerland)'),
(47949, 'https://ror.org/03kr69786', 'no_lang_code', 1, 'https://ror.org/03kr69786 Asklepion Pharmaceuticals (United States)'),
(47950, 'https://ror.org/057r3sk04', 'no_lang_code', 1, 'https://ror.org/057r3sk04 Bioven (United Kingdom)'),
(47951, 'https://ror.org/02v4fpg03', 'de', 1, 'https://ror.org/02v4fpg03 Asklepios Fachkliniken München-Gauting'),
(47952, 'https://ror.org/038v5jv72', 'de', 1, 'https://ror.org/038v5jv72 Asklepios Klinik Sankt Augustin'),
(47953, 'https://ror.org/04gvvdd93', 'no_lang_code', 1, 'https://ror.org/04gvvdd93 Advicenne Pharma (France)'),
(47954, 'https://ror.org/05t1jkc79', 'no_lang_code', 1, 'https://ror.org/05t1jkc79 Adyton (Czechia)'),
(47955, 'https://ror.org/05f8ejd38', 'de', 1, 'https://ror.org/05f8ejd38 Asklepios Kliniken Hamburg'),
(47956, 'https://ror.org/02hxjys58', 'no_lang_code', 1, 'https://ror.org/02hxjys58 Novelion (United Kingdom)'),
(47957, 'https://ror.org/01fec5y16', 'no_lang_code', 1, 'https://ror.org/01fec5y16 Aesculapius Farmaceutici (Italy)'),
(47958, 'https://ror.org/02evptr34', 'no_lang_code', 1, 'https://ror.org/02evptr34 Blue Earth Diagnostics (United Kingdom)'),
(47959, 'https://ror.org/03v0txq34', 'no_lang_code', 1, 'https://ror.org/03v0txq34 Aeterna Zentaris (Germany)'),
(47960, 'https://ror.org/00a181f87', 'no_lang_code', 1, 'https://ror.org/00a181f87 Bluebird Bio (France)'),
(47961, 'https://ror.org/03dqxnz40', 'es', 1, 'https://ror.org/03dqxnz40 Asociación Galega de Investigación na Enfermidade Inflamatoria Intestinal'),
(47962, 'https://ror.org/04r6zpr83', 'no_lang_code', 1, 'https://ror.org/04r6zpr83 Amarantus Bioscience (United States)'),
(47963, 'https://ror.org/045wjte67', 'no_lang_code', 1, 'https://ror.org/045wjte67 Amgen (Switzerland)'),
(47964, 'https://ror.org/05n3kty68', 'no_lang_code', 1, 'https://ror.org/05n3kty68 Aflofarm (Poland)'),
(47965, 'https://ror.org/02bjdhn90', 'it', 1, 'https://ror.org/02bjdhn90 Azienda Unita'' Sanitaria Locale di Parma'),
(47966, 'https://ror.org/01cz1wg22', 'no_lang_code', 1, 'https://ror.org/01cz1wg22 AFT Pharmaceuticals (New Zealand)'),
(47967, 'https://ror.org/0324red69', 'no_lang_code', 1, 'https://ror.org/0324red69 Boehringer Ingelheim (Belgium)'),
(47968, 'https://ror.org/01z4kwe65', 'ca', 1, 'https://ror.org/01z4kwe65 Associació per la Recerca Oncològica'),
(47969, 'https://ror.org/05n451y37', 'no_lang_code', 1, 'https://ror.org/05n451y37 Amicus Therapeutics (United Kingdom)'),
(47970, 'https://ror.org/01rqq3d62', 'it', 1, 'https://ror.org/01rqq3d62 Azienda UnitĆ  Sanitaria Locale Della Romagna'),
(47971, 'https://ror.org/04b5h9x78', 'no_lang_code', 1, 'https://ror.org/04b5h9x78 AMO Pharma (United Kingdom)'),
(47972, 'https://ror.org/04t98p806', 'it', 1, 'https://ror.org/04t98p806 Associazione Italiana Pneumologi Ospedalieri'),
(47973, 'https://ror.org/01m3ea752', 'no_lang_code', 1, 'https://ror.org/01m3ea752 Boehringer Ingelheim (Latvia)'),
(47974, 'https://ror.org/01za0ff56', 'no_lang_code', 1, 'https://ror.org/01za0ff56 CellAct Pharma (Germany)'),
(47975, 'https://ror.org/049f4wb20', 'no_lang_code', 1, 'https://ror.org/049f4wb20 Boiron (France)'),
(47976, 'https://ror.org/04scvbh77', 'no_lang_code', 1, 'https://ror.org/04scvbh77 AZTherapies (United States)'),
(47977, 'https://ror.org/04rreza77', 'no_lang_code', 1, 'https://ror.org/04rreza77 Bombastus-Werke (Germany)'),
(47978, 'https://ror.org/010thjh79', 'no_lang_code', 1, 'https://ror.org/010thjh79 Bone Therapeutics'),
(47979, 'https://ror.org/04kdz8318', 'no_lang_code', 1, 'https://ror.org/04kdz8318 Koncentra (Sweden)'),
(47980, 'https://ror.org/01tzg3s04', 'no_lang_code', 1, 'https://ror.org/01tzg3s04 Celyad (Belgium)'),
(47981, 'https://ror.org/04cr37s66', 'nl', 1, 'https://ror.org/04cr37s66 Borstkanker Onderzoek Groep'),
(47982, 'https://ror.org/05wf9r455', 'no_lang_code', 1, 'https://ror.org/05wf9r455 Clinipace (United Kingdom)'),
(47983, 'https://ror.org/045x9vk13', 'no_lang_code', 1, 'https://ror.org/045x9vk13 Anergis (Switzerland)'),
(47984, 'https://ror.org/0476a5k06', 'en', 1, 'https://ror.org/0476a5k06 CliniRx Tangent Research'),
(47985, 'https://ror.org/014dvgf17', 'en', 1, 'https://ror.org/014dvgf17 BASilar artery International Cooperation Study'),
(47986, 'https://ror.org/007k75451', 'no_lang_code', 1, 'https://ror.org/007k75451 Clinuvel Pharmaceuticals (Switzerland)'),
(47987, 'https://ror.org/02akzdv37', 'en', 1, 'https://ror.org/02akzdv37 Mech-Sense'),
(47988, 'https://ror.org/03ktkqh12', 'en', 1, 'https://ror.org/03ktkqh12 Barcelona IVI Clinic Clinica IVI Barcelona'),
(47989, 'https://ror.org/04j2fjp47', 'no_lang_code', 1, 'https://ror.org/04j2fjp47 Clovis Oncology (United Kingdom)'),
(47990, 'https://ror.org/059mdcg68', 'no_lang_code', 1, 'https://ror.org/059mdcg68 Bavarian Nordic (United States)'),
(47991, 'https://ror.org/040aeyr98', 'no_lang_code', 1, 'https://ror.org/040aeyr98 Dance Biopharm (United States)'),
(47992, 'https://ror.org/015x46y72', 'no_lang_code', 1, 'https://ror.org/015x46y72 CMC Contrast (Sweden)'),
(47993, 'https://ror.org/059030y69', 'no_lang_code', 1, 'https://ror.org/059030y69 Codon (Germany)'),
(47994, 'https://ror.org/00mjj2d85', 'no_lang_code', 1, 'https://ror.org/00mjj2d85 Coherus BioSciences (United States)'),
(47995, 'https://ror.org/03c09ma81', 'no_lang_code', 1, 'https://ror.org/03c09ma81 Bristol-Myers Squibb (Belgium)'),
(47996, 'https://ror.org/04hg0hr43', 'en', 1, 'https://ror.org/04hg0hr43 Danish Breast Cancer Cooperative Group'),
(47997, 'https://ror.org/02n4r0h83', 'no_lang_code', 1, 'https://ror.org/02n4r0h83 CoLucid Pharmaceuticals (United States)'),
(47998, 'https://ror.org/03nbkg471', 'en', 1, 'https://ror.org/03nbkg471 Danish Head and Neck Cancer Group'),
(47999, 'https://ror.org/01w1k0456', 'no_lang_code', 1, 'https://ror.org/01w1k0456 Combat Medical (Spain)'),
(48000, 'https://ror.org/02bkyhj18', 'en', 1, 'https://ror.org/02bkyhj18 Danish Myeloma Study Group'),
(48001, 'https://ror.org/00662td74', 'no_lang_code', 1, 'https://ror.org/00662td74 Bruno Farmaceutici (Italy)'),
(48002, 'https://ror.org/036ezxy46', 'no_lang_code', 1, 'https://ror.org/036ezxy46 Dr. Franz Kƶhler Chemie (Germany)'),
(48003, 'https://ror.org/0328e2d50', 'no_lang_code', 1, 'https://ror.org/0328e2d50 Bruschettini (Italy)'),
(48004, 'https://ror.org/04h7h2h10', 'no_lang_code', 1, 'https://ror.org/04h7h2h10 Conatus Pharmaceuticals (United States)'),
(48005, 'https://ror.org/04ysnaw75', 'no_lang_code', 1, 'https://ror.org/04ysnaw75 C4Pain (Denmark)'),
(48006, 'https://ror.org/00nxzrk14', 'no_lang_code', 1, 'https://ror.org/00nxzrk14 Debiopharm (Switzerland)'),
(48007, 'https://ror.org/02c01q628', 'no_lang_code', 1, 'https://ror.org/02c01q628 Teva Pharmaceuticals (France)'),
(48008, 'https://ror.org/02cx07c73', 'no_lang_code', 1, 'https://ror.org/02cx07c73 Cerenis Therapeutics (France)'),
(48009, 'https://ror.org/023w2cy02', 'no_lang_code', 1, 'https://ror.org/023w2cy02 Delcath Systems (United States)'),
(48010, 'https://ror.org/035scsv55', 'no_lang_code', 1, 'https://ror.org/035scsv55 Sandberg Development (Sweden)'),
(48011, 'https://ror.org/0083mb767', 'no_lang_code', 1, 'https://ror.org/0083mb767 Delenex (Switzerland)'),
(48012, 'https://ror.org/01y94yj57', 'no_lang_code', 1, 'https://ror.org/01y94yj57 Can-Fite BioPharma (Israel)'),
(48013, 'https://ror.org/01239b432', 'es', 1, 'https://ror.org/01239b432 Consorci Sanitari de Terrassa'),
(48014, 'https://ror.org/03nf7rc81', 'no_lang_code', 1, 'https://ror.org/03nf7rc81 Canbex Therapeutics (United Kingdom)'),
(48015, 'https://ror.org/01w6chh80', 'no_lang_code', 1, 'https://ror.org/01w6chh80 Kreussler (Germany)'),
(48016, 'https://ror.org/00sxheh72', 'it', 1, 'https://ror.org/00sxheh72 Consorzio Oncotech'),
(48017, 'https://ror.org/0418ezk85', 'no_lang_code', 1, 'https://ror.org/0418ezk85 Cardiorentis (Switzerland)'),
(48018, 'https://ror.org/059s09c28', 'no_lang_code', 1, 'https://ror.org/059s09c28 Cook Medical (Denmark)'),
(48019, 'https://ror.org/04c5m1z45', 'no_lang_code', 1, 'https://ror.org/04c5m1z45 Diomed (United Kingdom)'),
(48020, 'https://ror.org/05f157f34', 'no_lang_code', 1, 'https://ror.org/05f157f34 Chemo (France)'),
(48021, 'https://ror.org/05p6aq981', 'no_lang_code', 1, 'https://ror.org/05p6aq981 Dermapharm (Germany)'),
(48022, 'https://ror.org/02d3g7b39', 'no_lang_code', 1, 'https://ror.org/02d3g7b39 CytoTools (Germany)'),
(48023, 'https://ror.org/03g3tcm95', 'it', 1, 'https://ror.org/03g3tcm95 Policlinico Abano Terme'),
(48024, 'https://ror.org/024njzv49', 'no_lang_code', 1, 'https://ror.org/024njzv49 Chiesi (France)'),
(48025, 'https://ror.org/0202k4b21', 'no_lang_code', 1, 'https://ror.org/0202k4b21 TiGenix (Spain)'),
(48026, 'https://ror.org/03mspgn17', 'no_lang_code', 1, 'https://ror.org/03mspgn17 Klosterfrau Healthcare Group (Germany)'),
(48027, 'https://ror.org/0451ek747', 'de', 1, 'https://ror.org/0451ek747 Deutsche Homƶopathie-Union'),
(48028, 'https://ror.org/037wy0p68', 'en', 1, 'https://ror.org/037wy0p68 Children''s Oncology Group'),
(48029, 'https://ror.org/025jctj87', 'no_lang_code', 1, 'https://ror.org/025jctj87 Celimmune (United States)'),
(48030, 'https://ror.org/0398jdj48', 'no_lang_code', 1, 'https://ror.org/0398jdj48 Develco Pharma (Switzerland)'),
(48031, 'https://ror.org/01exnk557', 'no_lang_code', 1, 'https://ror.org/01exnk557 Cosmo Pharmaceuticals (Ireland)'),
(48032, 'https://ror.org/03zh2yp19', 'no_lang_code', 1, 'https://ror.org/03zh2yp19 Dexcel Pharma (United Kingdom)'),
(48033, 'https://ror.org/014hdch66', 'no_lang_code', 1, 'https://ror.org/014hdch66 Dextech Medical (Sweden)'),
(48034, 'https://ror.org/03rhyyh86', 'no_lang_code', 1, 'https://ror.org/03rhyyh86 Diagram (Netherlands)'),
(48035, 'https://ror.org/020my6q50', 'no_lang_code', 1, 'https://ror.org/020my6q50 Dr. Kade Pharmazeutische Fabrik (Germany)'),
(48036, 'https://ror.org/04tsv5127', 'de', 1, 'https://ror.org/04tsv5127 DIAKO'),
(48037, 'https://ror.org/044pnsw08', 'no_lang_code', 1, 'https://ror.org/044pnsw08 Cidara Therapeutics (United States)'),
(48038, 'https://ror.org/035m97n77', 'no_lang_code', 1, 'https://ror.org/035m97n77 Crolll (Germany)'),
(48039, 'https://ror.org/03fhcmz08', 'no_lang_code', 1, 'https://ror.org/03fhcmz08 Dr Ritsert Pharma (Germany)'),
(48040, 'https://ror.org/00wkx1h43', 'no_lang_code', 1, 'https://ror.org/00wkx1h43 Croma Pharma (Austria)'),
(48041, 'https://ror.org/043rrkc78', 'no_lang_code', 1, 'https://ror.org/043rrkc78 Dr Willmar Schwabe (Germany)'),
(48042, 'https://ror.org/05cm6kv55', 'no_lang_code', 1, 'https://ror.org/05cm6kv55 Cipla (Belgium)'),
(48043, 'https://ror.org/03zb78d54', 'no_lang_code', 1, 'https://ror.org/03zb78d54 Johnson & Johnson (Italy)'),
(48044, 'https://ror.org/05y55b611', 'no_lang_code', 1, 'https://ror.org/05y55b611 CSL (Russia)'),
(48045, 'https://ror.org/03qcf9t82', 'no_lang_code', 1, 'https://ror.org/03qcf9t82 Dicerna Pharmaceuticals (United States)'),
(48046, 'https://ror.org/02b082r98', 'no_lang_code', 1, 'https://ror.org/02b082r98 DS Biopharma (Ireland)'),
(48047, 'https://ror.org/0149ywf06', 'no_lang_code', 1, 'https://ror.org/0149ywf06 Citospin (Spain)'),
(48048, 'https://ror.org/04hb8c581', 'no_lang_code', 1, 'https://ror.org/04hb8c581 CTI BioPharma (Italy)'),
(48049, 'https://ror.org/03dcb4x23', 'no_lang_code', 1, 'https://ror.org/03dcb4x23 Modus Therapeutics (Sweden)'),
(48050, 'https://ror.org/04gpj0s68', 'no_lang_code', 1, 'https://ror.org/04gpj0s68 Dimension Therapeutics (United States)'),
(48051, 'https://ror.org/04y3sb167', 'no_lang_code', 1, 'https://ror.org/04y3sb167 Clarus Therapeutics (United States)'),
(48052, 'https://ror.org/01h2nq698', 'no_lang_code', 1, 'https://ror.org/01h2nq698 Clementia Pharmaceuticals (France)'),
(48053, 'https://ror.org/01cd7k542', 'no_lang_code', 1, 'https://ror.org/01cd7k542 CureTech (Israel)'),
(48054, 'https://ror.org/02q3n2241', 'no_lang_code', 1, 'https://ror.org/02q3n2241 CureVac (Germany)'),
(48055, 'https://ror.org/00bss3g65', 'no_lang_code', 1, 'https://ror.org/00bss3g65 Diurnal (United Kingdom)'),
(48056, 'https://ror.org/01tqqpv03', 'es', 1, 'https://ror.org/01tqqpv03 Sociedad EspaƱola de Farmacologƭa Clƭnica'),
(48057, 'https://ror.org/00z8zhe66', 'en', 1, 'https://ror.org/00z8zhe66 Clinical Research Center for Hair and Skin Science'),
(48058, 'https://ror.org/03bhb2h72', 'no_lang_code', 1, 'https://ror.org/03bhb2h72 Maruho (United States)'),
(48059, 'https://ror.org/05yezgz95', 'no_lang_code', 1, 'https://ror.org/05yezgz95 Dolorgiet (Germany)'),
(48060, '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'),
(48061, 'https://ror.org/04t534v40', 'no_lang_code', 1, 'https://ror.org/04t534v40 Cyathus Exquirere (Austria)'),
(48062, 'https://ror.org/0116d7s79', 'no_lang_code', 1, 'https://ror.org/0116d7s79 Cyclacel Pharmaceuticals (United States)'),
(48063, 'https://ror.org/04dzm3847', 'nl', 1, 'https://ror.org/04dzm3847 Stichting Kind en Groei'),
(48064, 'https://ror.org/04byqhw79', 'no_lang_code', 1, 'https://ror.org/04byqhw79 Kuros Biosciences (Switzerland)'),
(48065, 'https://ror.org/05nxn2s72', 'it', 1, 'https://ror.org/05nxn2s72 Fondazione Melanoma Onlus'),
(48066, 'https://ror.org/0577zeb92', 'no_lang_code', 1, 'https://ror.org/0577zeb92 Cytovac (Denmark)'),
(48067, 'https://ror.org/007r3zy44', 'nl', 1, 'https://ror.org/007r3zy44 Pancreatitis Werkgroep Nederland'),
(48068, 'https://ror.org/014vaxq24', 'it', 1, 'https://ror.org/014vaxq24 Fondazione Michelangelo'),
(48069, 'https://ror.org/000m3hy37', 'no_lang_code', 1, 'https://ror.org/000m3hy37 Dr. August Wolff (Germany)'),
(48070, 'https://ror.org/04h9m9r06', 'no_lang_code', 1, 'https://ror.org/04h9m9r06 Ergomed Clinical Research (United Kingdom)'),
(48071, 'https://ror.org/0518jvn15', 'no_lang_code', 1, 'https://ror.org/0518jvn15 Genera (Croatia)'),
(48072, 'https://ror.org/04pc85e11', 'no_lang_code', 1, 'https://ror.org/04pc85e11 Dynavax Technologies (Germany)'),
(48073, 'https://ror.org/014tc2d37', 'no_lang_code', 1, 'https://ror.org/014tc2d37 Erydel (Italy)'),
(48074, 'https://ror.org/01eqy8607', 'no_lang_code', 1, 'https://ror.org/01eqy8607 Genkyotex (France)'),
(48075, 'https://ror.org/057pe1087', 'no_lang_code', 1, 'https://ror.org/057pe1087 Genmab (Denmark)'),
(48076, 'https://ror.org/00s6tyh07', 'it', 1, 'https://ror.org/00s6tyh07 Fondazione Neureca Onlus'),
(48077, 'https://ror.org/02sq6xd17', 'no_lang_code', 1, 'https://ror.org/02sq6xd17 GenSight Biologics (France)'),
(48078, 'https://ror.org/059q6am89', 'en', 1, 'https://ror.org/059q6am89 EB House Austria'),
(48079, 'https://ror.org/01j7stt33', 'it', 1, 'https://ror.org/01j7stt33 Network Italiano Per la Bioterapia Dei Tumori'),
(48080, 'https://ror.org/00msnjb96', 'no_lang_code', 1, 'https://ror.org/00msnjb96 Essa Pharma (United States)'),
(48081, 'https://ror.org/05mjtfk75', 'no_lang_code', 1, 'https://ror.org/05mjtfk75 Echo Pharmaceuticals (Netherlands)'),
(48082, 'https://ror.org/03t7vt528', 'no_lang_code', 1, 'https://ror.org/03t7vt528 Navitas Life Sciences (Germany)'),
(48083, 'https://ror.org/02dvdxr58', 'no_lang_code', 1, 'https://ror.org/02dvdxr58 Mithra Pharmaceuticals (Belgium)'),
(48084, 'https://ror.org/00ae36v16', 'no_lang_code', 1, 'https://ror.org/00ae36v16 Genticel (France)'),
(48085, 'https://ror.org/049ag6g97', 'no_lang_code', 1, 'https://ror.org/049ag6g97 GWT-TUD (Germany)'),
(48086, 'https://ror.org/039945b55', 'no_lang_code', 1, 'https://ror.org/039945b55 Eiger Biopharmaceuticals (United States)'),
(48087, 'https://ror.org/03r7rdz71', 'en', 1, 'https://ror.org/03r7rdz71 European Thoracic Oncology Platform'),
(48088, 'https://ror.org/020dbrn58', 'no_lang_code', 1, 'https://ror.org/020dbrn58 Lundbeck (Spain)'),
(48089, 'https://ror.org/00pgqb537', 'no_lang_code', 1, 'https://ror.org/00pgqb537 Sanofi (Netherlands)'),
(48090, 'https://ror.org/00wkx7s25', 'it', 1, 'https://ror.org/00wkx7s25 Fondazione Ricerca Traslazionale'),
(48091, 'https://ror.org/05xrwhp03', 'no_lang_code', 1, 'https://ror.org/05xrwhp03 Eisai (Italy)'),
(48092, 'https://ror.org/017rmsx09', 'it', 1, 'https://ror.org/017rmsx09 Fondazione Sandro Pitigliani'),
(48093, 'https://ror.org/001x5ea44', 'no_lang_code', 1, 'https://ror.org/001x5ea44 Halozyme Therapeutics (United States)'),
(48094, 'https://ror.org/014wq8057', 'en', 1, 'https://ror.org/014wq8057 European Society for Blood and Marrow Transplantation'),
(48095, 'https://ror.org/01v7k9n65', 'no_lang_code', 1, 'https://ror.org/01v7k9n65 Eli Lilly (Switzerland)'),
(48096, 'https://ror.org/02ve0bg52', 'no_lang_code', 1, 'https://ror.org/02ve0bg52 Eli Lilly (Netherlands)'),
(48097, 'https://ror.org/04k3tc204', 'en', 1, 'https://ror.org/04k3tc204 European Uro Oncology Group'),
(48098, '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'),
(48099, 'https://ror.org/027jx1333', 'no_lang_code', 1, 'https://ror.org/027jx1333 Gerolsteiner Brunnen (Germany)'),
(48100, 'https://ror.org/01bdnnp71', 'fr', 1, 'https://ror.org/01bdnnp71 Groupe d''Ɖtude ThĆ©rapeutique des Affections Inflammatoires du Tube Digestif'),
(48101, 'https://ror.org/00w9t4e98', 'no_lang_code', 1, 'https://ror.org/00w9t4e98 Elpen Pharmaceutical (Greece)'),
(48102, 'https://ror.org/01vqcjq29', 'no_lang_code', 1, 'https://ror.org/01vqcjq29 Evestra (Germany)'),
(48103, 'https://ror.org/03q6gdh15', 'no_lang_code', 1, 'https://ror.org/03q6gdh15 ImmuPharma (France)'),
(48104, 'https://ror.org/05p2mb588', 'nl', 1, 'https://ror.org/05p2mb588 GGZ Oost Brabant'),
(48105, 'https://ror.org/040hkyv45', 'no_lang_code', 1, 'https://ror.org/040hkyv45 Hannover Clinical Trial Center (Germany)'),
(48106, 'https://ror.org/04279xj48', 'no_lang_code', 1, 'https://ror.org/04279xj48 Forward Pharma (Germany)'),
(48107, 'https://ror.org/03vy5fy74', 'no_lang_code', 1, 'https://ror.org/03vy5fy74 Emotional Brain (Netherlands)'),
(48108, 'https://ror.org/006nbgx47', 'es', 1, 'https://ror.org/006nbgx47 Grup d''Investigació i Divulgació Oncológica'),
(48109, 'https://ror.org/00jz5wn21', 'no_lang_code', 1, 'https://ror.org/00jz5wn21 Harras Pharma (Germany)'),
(48110, 'https://ror.org/0106bmv40', 'no_lang_code', 1, 'https://ror.org/0106bmv40 Empros Pharma (Sweden)'),
(48111, 'https://ror.org/05b6k3g41', 'no_lang_code', 1, 'https://ror.org/05b6k3g41 Evgen Pharma (United Kingdom)'),
(48112, 'https://ror.org/05h13e956', 'no_lang_code', 1, 'https://ror.org/05h13e956 Enceladus Pharmaceuticals (Netherlands)'),
(48113, 'https://ror.org/02rhv6v27', 'no_lang_code', 1, 'https://ror.org/02rhv6v27 Strathspey Crown (United States)'),
(48114, 'https://ror.org/05t2zwp43', 'no_lang_code', 1, 'https://ror.org/05t2zwp43 Evolva (Switzerland)'),
(48115, 'https://ror.org/01da6p430', 'no_lang_code', 1, 'https://ror.org/01da6p430 Ewopharma (Slovakia)'),
(48116, 'https://ror.org/00dzzp321', 'it', 1, 'https://ror.org/00dzzp321 Gruppo Italiano di Oncologia Geriatrica'),
(48117, 'https://ror.org/04e29rd57', 'no_lang_code', 1, 'https://ror.org/04e29rd57 Exalenz Bioscience (Israel)'),
(48118, 'https://ror.org/02ebbk435', 'it', 1, 'https://ror.org/02ebbk435 SocietĆ  Italiana di Cardiologia Interventistica SocietĆ  Italiana di Cardiologia Invasiva'),
(48119, 'https://ror.org/05mny8609', 'it', 1, 'https://ror.org/05mny8609 Gruppo Italiano per il Trapianto di Midollo Osseo'),
(48120, 'https://ror.org/0473gwd77', 'no_lang_code', 1, 'https://ror.org/0473gwd77 Ensinger Mineral-Heilquellen (Germany)'),
(48121, 'https://ror.org/01yrv0w88', 'no_lang_code', 1, 'https://ror.org/01yrv0w88 Mineralbrunnen Überkingen Teinach Beteiligungs'),
(48122, 'https://ror.org/05qg1kx57', 'en', 1, 'https://ror.org/05qg1kx57 Hellenic Cardiovascular Research Society'),
(48123, 'https://ror.org/02bxsvn11', 'no_lang_code', 1, 'https://ror.org/02bxsvn11 Hellenic Cooperative Oncology Group'),
(48124, 'https://ror.org/01dn4wg45', 'no_lang_code', 1, 'https://ror.org/01dn4wg45 Dr. Reddy''s Laboratories (Netherlands)'),
(48125, 'https://ror.org/02kvdh980', 'no_lang_code', 1, 'https://ror.org/02kvdh980 Faron Pharmaceutical (Finland)'),
(48126, 'https://ror.org/034yqx295', 'en', 1, 'https://ror.org/034yqx295 Hellenic Oncology Research Group'),
(48127, 'https://ror.org/0332rf080', 'no_lang_code', 1, 'https://ror.org/0332rf080 FF Pharma (Netherlands)'),
(48128, 'https://ror.org/04dywym46', 'es', 1, 'https://ror.org/04dywym46 Fundación Hospital Provincial de Castellón'),
(48129, 'https://ror.org/04v0nw239', 'en', 1, 'https://ror.org/04v0nw239 Hellenic Society of Medical Education Ī•Ī›Ī›Ī—ĪĪ™ĪšĪ— ΕΤΑΙΔΕΙΑ Ī™Ī‘Ī¤Ī”Ī™ĪšĪ—Ī£ Ī•ĪšĪ Ī‘Ī™Ī”Ī•Ī„Ī£Ī—Ī£'),
(48130, 'https://ror.org/02q7qcb13', 'fr', 1, 'https://ror.org/02q7qcb13 FƩdƩration Francophone de CancƩrologie Digestive'),
(48131, 'https://ror.org/024s32d89', 'no_lang_code', 1, 'https://ror.org/024s32d89 Glenmark Pharmaceuticals (Switzerland)'),
(48132, 'https://ror.org/0162q7t90', 'no_lang_code', 1, 'https://ror.org/0162q7t90 Gliknik (United States)'),
(48133, 'https://ror.org/004aq9x60', 'no_lang_code', 1, 'https://ror.org/004aq9x60 Glycotope (Germany)'),
(48134, 'https://ror.org/0074nwx25', 'en', 1, 'https://ror.org/0074nwx25 Gruppo Oncologico dell''Italia Meridionale Oncology Group of Southern Italy'),
(48135, 'https://ror.org/02nhthp75', 'it', 1, 'https://ror.org/02nhthp75 Gruppo Oncologico del Nord Ovest'),
(48136, 'https://ror.org/05mrvzj62', 'no_lang_code', 1, 'https://ror.org/05mrvzj62 Hennig Arzneimittel (Germany)'),
(48137, 'https://ror.org/00a4k5f23', 'no_lang_code', 1, 'https://ror.org/00a4k5f23 hVIVO (United Kingdom)'),
(48138, 'https://ror.org/04cjdmd14', 'de', 1, 'https://ror.org/04cjdmd14 Grachtenhaus-Apotheke'),
(48139, 'https://ror.org/027q1fw25', 'no_lang_code', 1, 'https://ror.org/027q1fw25 Herantis Pharma (Finland)'),
(48140, 'https://ror.org/02vrfjw73', 'no_lang_code', 1, 'https://ror.org/02vrfjw73 Flamel (Ireland)'),
(48141, 'https://ror.org/03wj3v998', 'no_lang_code', 1, 'https://ror.org/03wj3v998 Fluidda (Belgium)'),
(48142, 'https://ror.org/04026h439', 'no_lang_code', 1, 'https://ror.org/04026h439 FluoroPharma Medical (United States)'),
(48143, 'https://ror.org/04w0jj406', 'no_lang_code', 1, 'https://ror.org/04w0jj406 Hevert Arzneimittel (Germany)'),
(48144, 'https://ror.org/05fvbww60', 'no_lang_code', 1, 'https://ror.org/05fvbww60 Grifols (United States)'),
(48145, 'https://ror.org/051tj3a26', 'no_lang_code', 1, 'https://ror.org/051tj3a26 IBSA Institut Biochimique (Switzerland)'),
(48146, 'https://ror.org/04y672n69', 'en', 1, 'https://ror.org/04y672n69 Lymphoma Study Association'),
(48147, 'https://ror.org/04xz21s03', 'no_lang_code', 1, 'https://ror.org/04xz21s03 Futura Medical (United Kingdom)'),
(48148, 'https://ror.org/04db0ec72', 'fr', 1, 'https://ror.org/04db0ec72 Groupe Francophone des MyƩlodysplasies'),
(48149, 'https://ror.org/0523s0t06', 'no_lang_code', 1, 'https://ror.org/0523s0t06 Gerot Lannach (Austria)'),
(48150, 'https://ror.org/00qcpjx94', 'no_lang_code', 1, 'https://ror.org/00qcpjx94 Green Cross (United States)'),
(48151, 'https://ror.org/02rw47d25', 'no_lang_code', 1, 'https://ror.org/02rw47d25 Galena Biopharma (United States)'),
(48152, 'https://ror.org/025883808', 'it', 1, 'https://ror.org/025883808 Gruppo Italiano per lo Studio dei Carcinomi dell’Apparato Digerente'),
(48153, 'https://ror.org/05grp4x11', 'no_lang_code', 1, 'https://ror.org/05grp4x11 Grunenthal (Spain)'),
(48154, 'https://ror.org/054k1z757', 'no_lang_code', 1, 'https://ror.org/054k1z757 GALENpharma (Germany)'),
(48155, 'https://ror.org/03ye20z12', 'no_lang_code', 1, 'https://ror.org/03ye20z12 HolsboerMaschmeyer NeuroChemie (Germany)'),
(48156, 'https://ror.org/00pn3e170', 'no_lang_code', 1, 'https://ror.org/00pn3e170 Galmed Pharmaceuticals (Israel)'),
(48157, 'https://ror.org/00nt3sg33', 'en', 1, 'https://ror.org/00nt3sg33 International Extranodal Lymphoma Study Group'),
(48158, 'https://ror.org/03dykc861', 'it', 1, 'https://ror.org/03dykc861 Fondazione Istituto G. Giglio di Cefalù'),
(48159, 'https://ror.org/05j02j274', 'no_lang_code', 1, 'https://ror.org/05j02j274 Homviora (Germany)'),
(48160, 'https://ror.org/03samhn24', 'no_lang_code', 1, 'https://ror.org/03samhn24 Gamida Cell (Israel)'),
(48161, 'https://ror.org/05h4kax84', 'es', 1, 'https://ror.org/05h4kax84 Grupo de Tratamiento de los Tumores Digestivos'),
(48162, 'https://ror.org/04bdk6464', 'no_lang_code', 1, 'https://ror.org/04bdk6464 Astellas Pharma (Germany)'),
(48163, 'https://ror.org/01qzsn924', 'no_lang_code', 1, 'https://ror.org/01qzsn924 İlkogen (Turkey)'),
(48164, 'https://ror.org/00wpy1p28', 'es', 1, 'https://ror.org/00wpy1p28 Grupo Español de Investigación en Neurooncología'),
(48165, 'https://ror.org/04y6gmk90', 'no_lang_code', 1, 'https://ror.org/04y6gmk90 Iltoo Pharma (France)'),
(48166, 'https://ror.org/00m8w3m39', 'no_lang_code', 1, 'https://ror.org/00m8w3m39 Pfizer (Germany)'),
(48167, 'https://ror.org/015xc6321', 'es', 1, 'https://ror.org/015xc6321 Grupo EspaƱol de Trasplante HematopoyƩtico y Terapia Celular'),
(48168, 'https://ror.org/05pvg9741', 'no_lang_code', 1, 'https://ror.org/05pvg9741 ImCyse (Belgium)'),
(48169, 'https://ror.org/01aye5y64', 'en', 1, 'https://ror.org/01aye5y64 Gateshead Health NHS Foundation Trust'),
(48170, 'https://ror.org/057tdah35', 'es', 1, 'https://ror.org/057tdah35 Grupo EspaƱol Multidisciplinar de Melanoma'),
(48171, 'https://ror.org/03y82c084', 'no_lang_code', 1, 'https://ror.org/03y82c084 Immodulon Therapeutics (United Kingdom)'),
(48172, 'https://ror.org/01frfsg35', 'en', 1, 'https://ror.org/01frfsg35 Gruppo Oncologico Italiano di Ricerca Clinica Italian Oncology Group of Clinical Research'),
(48173, 'https://ror.org/02nc8ke31', 'no_lang_code', 1, 'https://ror.org/02nc8ke31 GlaxoSmithKline (Poland)'),
(48174, 'https://ror.org/03f4jx570', 'no_lang_code', 1, 'https://ror.org/03f4jx570 Immungenetics (Germany)'),
(48175, 'https://ror.org/01axv9229', 'no_lang_code', 1, 'https://ror.org/01axv9229 ImmunoCellular Therapeutics (United States)'),
(48176, 'https://ror.org/03245e858', 'no_lang_code', 1, 'https://ror.org/03245e858 Gebro Pharma (Austria)'),
(48177, 'https://ror.org/05b9vxh94', 'es', 1, 'https://ror.org/05b9vxh94 Hospital Universitari de Vic'),
(48178, 'https://ror.org/0400j3f74', 'no_lang_code', 1, 'https://ror.org/0400j3f74 GTx (United States)'),
(48179, 'https://ror.org/00czwhy51', 'no_lang_code', 1, 'https://ror.org/00czwhy51 Immunocore (United States)'),
(48180, 'https://ror.org/0504sxa76', 'no_lang_code', 1, 'https://ror.org/0504sxa76 Guerbet (France)'),
(48181, 'https://ror.org/04x0f8p22', 'no_lang_code', 1, 'https://ror.org/04x0f8p22 Immunomedics (Germany)'),
(48182, 'https://ror.org/0259b0q13', 'no_lang_code', 1, 'https://ror.org/0259b0q13 Gene PreDiT (Portugal)'),
(48183, 'https://ror.org/02gvvc992', 'no_lang_code', 1, 'https://ror.org/02gvvc992 Amgen (United Kingdom)'),
(48184, 'https://ror.org/00v70n302', 'no_lang_code', 1, 'https://ror.org/00v70n302 Isofol (Sweden)'),
(48185, 'https://ror.org/00scrzf80', 'no_lang_code', 1, 'https://ror.org/00scrzf80 Kamada (Israel)'),
(48186, 'https://ror.org/0114d3n76', 'no_lang_code', 1, 'https://ror.org/0114d3n76 ImunomedicA (Czechia)'),
(48187, 'https://ror.org/05225cn18', 'no_lang_code', 1, 'https://ror.org/05225cn18 InDex Pharmaceuticals (Sweden)'),
(48188, 'https://ror.org/01wa16j27', 'en', 1, 'https://ror.org/01wa16j27 Italian Sarcoma Group'),
(48189, 'https://ror.org/05cfkkr16', 'no_lang_code', 1, 'https://ror.org/05cfkkr16 Institut für Biomedizinische Analytik und NMR Imaging (Germany)'),
(48190, 'https://ror.org/046vzvy73', 'it', 1, 'https://ror.org/046vzvy73 Trials Italiani in Oncologia Medica'),
(48191, 'https://ror.org/04g0t7770', 'no_lang_code', 1, 'https://ror.org/04g0t7770 InfectoPharm (Germany)'),
(48192, 'https://ror.org/04606tc02', 'en', 1, 'https://ror.org/04606tc02 IVI Madrid Clinic'),
(48193, 'https://ror.org/05e536w67', 'en', 1, 'https://ror.org/05e536w67 Institute of Molecular Medicine and Biomedical Research Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪœĪæĻĪ¹Ī±ĪŗĪ®Ļ‚ Ιατρικής και Ī’Ī¹ĪæĻŠĪ±Ļ„ĻĪ¹ĪŗĪ®Ļ‚ ĪˆĻĪµĻ…Ī½Ī±Ļ‚'),
(48194, 'https://ror.org/04bxnbd97', 'en', 1, 'https://ror.org/04bxnbd97 IVI Sevilla Clinic'),
(48195, 'https://ror.org/04y8mfg39', 'no_lang_code', 1, 'https://ror.org/04y8mfg39 Indukern (Spain)'),
(48196, 'https://ror.org/01w5nhx84', 'en', 1, 'https://ror.org/01w5nhx84 IVI Valencia Clinic'),
(48197, 'https://ror.org/043kam464', 'no_lang_code', 1, 'https://ror.org/043kam464 Servier (Spain)'),
(48198, 'https://ror.org/00699y503', 'no_lang_code', 1, 'https://ror.org/00699y503 Infirst Healthcare (United Kingdom)'),
(48199, 'https://ror.org/02a1g6f69', 'no_lang_code', 1, 'https://ror.org/02a1g6f69 Khondrion (Netherlands)'),
(48200, 'https://ror.org/030hv2833', 'no_lang_code', 1, 'https://ror.org/030hv2833 Laguna Pharmaceuticals (United States)'),
(48201, 'https://ror.org/04mg0we30', 'no_lang_code', 1, 'https://ror.org/04mg0we30 Inmunal (Spain)'),
(48202, 'https://ror.org/01e2spe61', 'no_lang_code', 1, 'https://ror.org/01e2spe61 Inmunotek (Spain)'),
(48203, 'https://ror.org/00tjx8277', 'es', 1, 'https://ror.org/00tjx8277 Instituto de Investigaciones del SueƱo'),
(48204, 'https://ror.org/029bhft53', 'no_lang_code', 1, 'https://ror.org/029bhft53 Kitov Pharmaceuticals (Israel)'),
(48205, 'https://ror.org/04041s104', 'de', 1, 'https://ror.org/04041s104 Katholisches Klinikum Ruhrgebiet Nord GmbH'),
(48206, 'https://ror.org/05y73pq15', 'no_lang_code', 1, 'https://ror.org/05y73pq15 Laves-Arzneimittel (Germany)'),
(48207, 'https://ror.org/01kvepn75', 'es', 1, 'https://ror.org/01kvepn75 Instituto Palacios'),
(48208, 'https://ror.org/004p2dk70', 'es', 1, 'https://ror.org/004p2dk70 Instituto Tecnológico PET'),
(48209, 'https://ror.org/02wvemr05', 'no_lang_code', 1, 'https://ror.org/02wvemr05 Leo Pharma (France)'),
(48210, 'https://ror.org/03y18ef49', 'no_lang_code', 1, 'https://ror.org/03y18ef49 Intec Pharma (Israel)'),
(48211, 'https://ror.org/031fyj528', 'no_lang_code', 1, 'https://ror.org/031fyj528 Insmed (United Kingdom)'),
(48212, 'https://ror.org/039baqv34', 'no_lang_code', 1, 'https://ror.org/039baqv34 Valneva (United States)'),
(48213, 'https://ror.org/0574d2g06', 'no_lang_code', 1, 'https://ror.org/0574d2g06 LETI Pharma (Germany)'),
(48214, 'https://ror.org/02x94ka94', 'fr', 1, 'https://ror.org/02x94ka94 Intergroupe Francophone du MyƩlome'),
(48215, 'https://ror.org/030vz3726', 'no_lang_code', 1, 'https://ror.org/030vz3726 LFB (United States)'),
(48216, 'https://ror.org/05420w677', 'no_lang_code', 1, 'https://ror.org/05420w677 Light Sciences Oncology (United States)'),
(48217, 'https://ror.org/01h44t071', 'de', 1, 'https://ror.org/01h44t071 Therapeutische Drug Monitoring Kinder-und Jugendpsychiatrie'),
(48218, 'https://ror.org/00b4wbs75', 'no_lang_code', 1, 'https://ror.org/00b4wbs75 Maruho (United Kingdom)'),
(48219, 'https://ror.org/05me5c114', 'no_lang_code', 1, 'https://ror.org/05me5c114 Promore Pharma (Sweden)'),
(48220, 'https://ror.org/03e3wrh22', 'no_lang_code', 1, 'https://ror.org/03e3wrh22 Intermed Pharmaceutical Laboratories (Greece)'),
(48221, 'https://ror.org/02c9yny10', 'no_lang_code', 1, 'https://ror.org/02c9yny10 Pfizer (France)'),
(48222, 'https://ror.org/03y7nkj09', 'no_lang_code', 1, 'https://ror.org/03y7nkj09 Matrizyme (Canada)'),
(48223, 'https://ror.org/00j0wh784', 'no_lang_code', 1, 'https://ror.org/00j0wh784 IPPMed (Germany) Institut für Pharmakologie und Präventive Medizin'),
(48224, 'https://ror.org/026jmga48', 'no_lang_code', 1, 'https://ror.org/026jmga48 Ipsen (Netherlands)'),
(48225, 'https://ror.org/01z6wpz16', 'no_lang_code', 1, 'https://ror.org/01z6wpz16 Merck Serono (Italy)'),
(48226, 'https://ror.org/020jwmq86', 'no_lang_code', 1, 'https://ror.org/020jwmq86 Johnson & Johnson (Sweden)'),
(48227, 'https://ror.org/02e60zs41', 'no_lang_code', 1, 'https://ror.org/02e60zs41 Ipsen (Germany)'),
(48228, 'https://ror.org/021jz4j66', 'no_lang_code', 1, 'https://ror.org/021jz4j66 Ipsen (Spain)'),
(48229, 'https://ror.org/02ncjrc71', 'no_lang_code', 1, 'https://ror.org/02ncjrc71 LukƔcs Ʃs TƔrsa (Hungary)'),
(48230, 'https://ror.org/03my72535', 'no_lang_code', 1, 'https://ror.org/03my72535 Merck (Spain)'),
(48231, 'https://ror.org/03xa4xh46', 'no_lang_code', 1, 'https://ror.org/03xa4xh46 Teva Pharmaceuticals (Germany)'),
(48232, 'https://ror.org/058pt1z69', 'no_lang_code', 1, 'https://ror.org/058pt1z69 Luzitin (Portugal)'),
(48233, 'https://ror.org/047z1nr02', 'no_lang_code', 1, 'https://ror.org/047z1nr02 Mesoestetic Pharma (Spain)'),
(48234, 'https://ror.org/04k8pqm06', 'no_lang_code', 1, 'https://ror.org/04k8pqm06 Lycera (United States)'),
(48235, 'https://ror.org/0074y3h33', 'no_lang_code', 1, 'https://ror.org/0074y3h33 MetrioPharm (Germany)'),
(48236, 'https://ror.org/05cyn4y81', 'no_lang_code', 1, 'https://ror.org/05cyn4y81 Medical Developments (United Kingdom)'),
(48237, 'https://ror.org/02v1ywf39', 'no_lang_code', 1, 'https://ror.org/02v1ywf39 MIB (Germany)'),
(48238, 'https://ror.org/04wdp9936', 'no_lang_code', 1, 'https://ror.org/04wdp9936 Kura Oncology (United States)'),
(48239, 'https://ror.org/017hh7b56', 'no_lang_code', 1, 'https://ror.org/017hh7b56 Kyowa Kirin International (United Kingdom)'),
(48240, 'https://ror.org/00a8d7d55', 'no_lang_code', 1, 'https://ror.org/00a8d7d55 Shield Therapeutics (Switzerland)'),
(48241, 'https://ror.org/03a20x849', 'no_lang_code', 1, 'https://ror.org/03a20x849 Medice (Germany)'),
(48242, 'https://ror.org/00z1h3j87', 'no_lang_code', 1, 'https://ror.org/00z1h3j87 GlaxoSmithKline (France)'),
(48243, 'https://ror.org/03gnb8h10', 'no_lang_code', 1, 'https://ror.org/03gnb8h10 Mabion (Poland)'),
(48244, 'https://ror.org/05r0csf60', 'no_lang_code', 1, 'https://ror.org/05r0csf60 HRA Pharma (United Kingdom)'),
(48245, 'https://ror.org/04fgnxn93', 'no_lang_code', 1, 'https://ror.org/04fgnxn93 Innothera (France)'),
(48246, 'https://ror.org/05kd99h55', 'no_lang_code', 1, 'https://ror.org/05kd99h55 Mologen (Germany)'),
(48247, 'https://ror.org/03frk0780', 'no_lang_code', 1, 'https://ror.org/03frk0780 Recordati (France)'),
(48248, 'https://ror.org/04eyqwn57', 'no_lang_code', 1, 'https://ror.org/04eyqwn57 Ethypharm (France)'),
(48249, 'https://ror.org/000nk9m43', 'no_lang_code', 1, 'https://ror.org/000nk9m43 Montavit (Austria)'),
(48250, 'https://ror.org/00015af83', 'no_lang_code', 1, 'https://ror.org/00015af83 Mediolanum Farmaceutici (Italy)'),
(48251, 'https://ror.org/007p8sj29', 'no_lang_code', 1, 'https://ror.org/007p8sj29 Mayoly Spindler (France)'),
(48252, 'https://ror.org/04815fk53', 'no_lang_code', 1, 'https://ror.org/04815fk53 Motif BioSciences (United States)'),
(48253, 'https://ror.org/03jbf2g44', 'no_lang_code', 1, 'https://ror.org/03jbf2g44 SMB (Belgium)'),
(48254, 'https://ror.org/04edz9p52', 'no_lang_code', 1, 'https://ror.org/04edz9p52 Thea (France)'),
(48255, 'https://ror.org/02x3ev322', 'no_lang_code', 1, 'https://ror.org/02x3ev322 MUC Research (Germany)'),
(48256, 'https://ror.org/03a3n5193', 'nl', 1, 'https://ror.org/03a3n5193 Nederlandse Vereniging van Artsen voor Longziekten en Tuberculose'),
(48257, 'https://ror.org/01tyb6p93', 'no_lang_code', 1, 'https://ror.org/01tyb6p93 Laboratorio De Aplicaciones Farmacodinamicas (Spain)'),
(48258, 'https://ror.org/03p1cbx82', 'no_lang_code', 1, 'https://ror.org/03p1cbx82 Nektar Therapeutics (United States)'),
(48259, 'https://ror.org/03e6y4k28', 'no_lang_code', 1, 'https://ror.org/03e6y4k28 Meditop (Hungary)'),
(48260, 'https://ror.org/02s2v2m89', 'no_lang_code', 1, 'https://ror.org/02s2v2m89 Mucos Pharma (Germany)'),
(48261, 'https://ror.org/05qgf0573', 'no_lang_code', 1, 'https://ror.org/05qgf0573 Neovacs (France)'),
(48262, 'https://ror.org/04ts8g112', 'no_lang_code', 1, 'https://ror.org/04ts8g112 MediWound (Germany)'),
(48263, 'https://ror.org/028ew8k17', 'en', 1, 'https://ror.org/028ew8k17 Mukoviszidose - Bundesverband Cystische Fibrose The Cystic Fibrosis Institute'),
(48264, 'https://ror.org/04kqbrq68', 'no_lang_code', 1, 'https://ror.org/04kqbrq68 Novartis (Hungary)'),
(48265, 'https://ror.org/018fqb741', 'no_lang_code', 1, 'https://ror.org/018fqb741 Mundipharma (Sweden)'),
(48266, 'https://ror.org/04kyz2p97', 'no_lang_code', 1, 'https://ror.org/04kyz2p97 NeRRe Therapeutics (United Kingdom)'),
(48267, 'https://ror.org/02jacnm89', 'no_lang_code', 1, 'https://ror.org/02jacnm89 Mundipharma (Netherlands)'),
(48268, 'https://ror.org/0446x4v61', 'no_lang_code', 1, 'https://ror.org/0446x4v61 Farmalder (Spain)'),
(48269, 'https://ror.org/040apef74', 'no_lang_code', 1, 'https://ror.org/040apef74 Mundipharma (Germany)'),
(48270, 'https://ror.org/01hzj3v30', 'no_lang_code', 1, 'https://ror.org/01hzj3v30 NeuroDerm (Israel)'),
(48271, 'https://ror.org/0224dwf10', 'no_lang_code', 1, 'https://ror.org/0224dwf10 Osmotica Pharmaceutical (United States)'),
(48272, 'https://ror.org/05h2pj652', 'no_lang_code', 1, 'https://ror.org/05h2pj652 Myelo Therapeutics (Germany)'),
(48273, 'https://ror.org/019fz9b71', 'no_lang_code', 1, 'https://ror.org/019fz9b71 Neurophyxia (Netherlands)'),
(48274, 'https://ror.org/02sqp6x70', 'no_lang_code', 1, 'https://ror.org/02sqp6x70 Hisamitsu Pharmaceutical (United States)'),
(48275, 'https://ror.org/025ghhr15', 'no_lang_code', 1, 'https://ror.org/025ghhr15 NeuroVive Pharmaceutical (Sweden)'),
(48276, 'https://ror.org/05pwxq352', 'no_lang_code', 1, 'https://ror.org/05pwxq352 Newron Pharmaceuticals (Italy)'),
(48277, 'https://ror.org/017ax4r20', 'no_lang_code', 1, 'https://ror.org/017ax4r20 Nabriva Therapeutics (Austria)'),
(48278, 'https://ror.org/05hy0av13', 'no_lang_code', 1, 'https://ror.org/05hy0av13 Otsuka (Germany)'),
(48279, 'https://ror.org/01smjaq87', 'no_lang_code', 1, 'https://ror.org/01smjaq87 Pierre Fabre (United Kingdom)'),
(48280, 'https://ror.org/04rbxbn93', 'no_lang_code', 1, 'https://ror.org/04rbxbn93 PIQUR Therapeutics (Switzerland)'),
(48281, 'https://ror.org/01w45kn29', 'no_lang_code', 1, 'https://ror.org/01w45kn29 Piramal (Germany)'),
(48282, 'https://ror.org/017f12b13', 'no_lang_code', 1, 'https://ror.org/017f12b13 Otsuka (France)'),
(48283, 'https://ror.org/05a48y547', 'en', 1, 'https://ror.org/05a48y547 Nordic MDS Group'),
(48284, 'https://ror.org/03d9qgb20', 'no_lang_code', 1, 'https://ror.org/03d9qgb20 Plazmaferezis'),
(48285, 'https://ror.org/05m0yja37', 'no_lang_code', 1, 'https://ror.org/05m0yja37 OxThera (Sweden)'),
(48286, 'https://ror.org/03gsy3007', 'no_lang_code', 1, 'https://ror.org/03gsy3007 PledPharma (Sweden)'),
(48287, 'https://ror.org/029tvtf63', 'no_lang_code', 1, 'https://ror.org/029tvtf63 Nuvo Pharmaceuticals (Germany)'),
(48288, 'https://ror.org/02cthxa95', 'no_lang_code', 1, 'https://ror.org/02cthxa95 Pliva (Croatia)'),
(48289, 'https://ror.org/00e65d634', 'no_lang_code', 1, 'https://ror.org/00e65d634 Roche (Belgium)'),
(48290, 'https://ror.org/006xpqa22', 'no_lang_code', 1, 'https://ror.org/006xpqa22 Noorik Biopharmaceuticals (Switzerland)'),
(48291, 'https://ror.org/01ke5wn61', 'en', 1, 'https://ror.org/01ke5wn61 PodřipskĆ” Hospital and Polyclinic'),
(48292, 'https://ror.org/03bsswy66', 'no_lang_code', 1, 'https://ror.org/03bsswy66 Takeda (Denmark)'),
(48293, 'https://ror.org/019zp9n35', 'no_lang_code', 1, 'https://ror.org/019zp9n35 Polaris Group (United States)'),
(48294, 'https://ror.org/05735qy63', 'no_lang_code', 1, 'https://ror.org/05735qy63 Polichem (Switzerland)'),
(48295, 'https://ror.org/02k5eqb88', 'no_lang_code', 1, 'https://ror.org/02k5eqb88 Vyne Therapeutics (United States)'),
(48296, 'https://ror.org/0033hgk30', 'no_lang_code', 1, 'https://ror.org/0033hgk30 Oasmia Pharmaceutical (Sweden)'),
(48297, 'https://ror.org/03th0y014', 'en', 1, 'https://ror.org/03th0y014 Nordic Myeloma Study Group'),
(48298, 'https://ror.org/04vsvp708', 'no_lang_code', 1, 'https://ror.org/04vsvp708 ObsEva (Switzerland)'),
(48299, 'https://ror.org/0319b3z70', 'no_lang_code', 1, 'https://ror.org/0319b3z70 Mensia (France)'),
(48300, 'https://ror.org/02r990937', 'no_lang_code', 1, 'https://ror.org/02r990937 PannonPharma (Hungary)'),
(48301, 'https://ror.org/055xh0h60', 'no_lang_code', 1, 'https://ror.org/055xh0h60 Nordic Pharma (Czechia)'),
(48302, 'https://ror.org/010yke988', 'en', 1, 'https://ror.org/010yke988 Parent Project Onlus'),
(48303, 'https://ror.org/00wjmg834', 'no_lang_code', 1, 'https://ror.org/00wjmg834 Octapharma (United Kingdom)'),
(48304, 'https://ror.org/004v35q61', 'en', 1, 'https://ror.org/004v35q61 Nordic Society of Gynecologic Oncology'),
(48305, 'https://ror.org/011pcrd91', 'no_lang_code', 1, 'https://ror.org/011pcrd91 PARI (Germany)'),
(48306, 'https://ror.org/022k50n33', 'no_lang_code', 1, 'https://ror.org/022k50n33 Octapharma (Austria)'),
(48307, 'https://ror.org/01q2gd226', 'no_lang_code', 1, 'https://ror.org/01q2gd226 Nordmark (Germany)'),
(48308, 'https://ror.org/0530w9m46', 'no_lang_code', 1, 'https://ror.org/0530w9m46 Oculis (Iceland)'),
(48309, 'https://ror.org/02xbx2821', 'no_lang_code', 1, 'https://ror.org/02xbx2821 Pascoe (Germany)'),
(48310, 'https://ror.org/045kh6832', 'no_lang_code', 1, 'https://ror.org/045kh6832 Ogeda (Belgium)'),
(48311, 'https://ror.org/00acq4045', 'no_lang_code', 1, 'https://ror.org/00acq4045 Norgine (Germany)'),
(48312, 'https://ror.org/03ztade89', 'no_lang_code', 1, 'https://ror.org/03ztade89 Patara Pharma (United States)'),
(48313, 'https://ror.org/046zgtw08', 'no_lang_code', 1, 'https://ror.org/046zgtw08 Norgine (United Kingdom)'),
(48314, 'https://ror.org/00daeq584', 'no_lang_code', 1, 'https://ror.org/00daeq584 Vifor Pharma (Germany)'),
(48315, 'https://ror.org/00bqgv517', 'no_lang_code', 1, 'https://ror.org/00bqgv517 PregLem (Switzerland)'),
(48316, 'https://ror.org/004jq0d46', 'no', 1, 'https://ror.org/004jq0d46 Norsk Gastrointestinal Cancer Gruppe'),
(48317, 'https://ror.org/00mzpva76', 'no_lang_code', 1, 'https://ror.org/00mzpva76 PrEP Biopharm (United Kingdom)'),
(48318, 'https://ror.org/02xc9kn92', 'no_lang_code', 1, 'https://ror.org/02xc9kn92 Novadip (Belgium)'),
(48319, 'https://ror.org/02tbbcr43', 'no_lang_code', 1, 'https://ror.org/02tbbcr43 PellePharm (United States)'),
(48320, 'https://ror.org/00dv4bv22', 'no_lang_code', 1, 'https://ror.org/00dv4bv22 Presurgy (Spain)'),
(48321, 'https://ror.org/02gdc0c96', 'no_lang_code', 1, 'https://ror.org/02gdc0c96 OmniVision Technologies (Germany)'),
(48322, 'https://ror.org/03j9fjx10', 'no_lang_code', 1, 'https://ror.org/03j9fjx10 Peptonic Medical (Sweden)'),
(48323, 'https://ror.org/04zmnq951', 'no_lang_code', 1, 'https://ror.org/04zmnq951 Immutep (Germany)'),
(48324, 'https://ror.org/05fw76c12', 'no_lang_code', 1, 'https://ror.org/05fw76c12 Principia Biopharma (United States)'),
(48325, 'https://ror.org/02sxt3315', 'no_lang_code', 1, 'https://ror.org/02sxt3315 Peptcell (United Kingdom)'),
(48326, 'https://ror.org/038kcjb09', 'no_lang_code', 1, 'https://ror.org/038kcjb09 Santen (United Kingdom) å‚å¤©č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(48327, 'https://ror.org/05reaew23', 'no_lang_code', 1, 'https://ror.org/05reaew23 RDD Pharma (Israel)'),
(48328, 'https://ror.org/007ztdc30', 'de', 1, 'https://ror.org/007ztdc30 Schƶn Klinik Roseneck'),
(48329, 'https://ror.org/01zkyek34', 'no_lang_code', 1, 'https://ror.org/01zkyek34 Probelte Pharma (Spain)'),
(48330, 'https://ror.org/00arbsy46', 'no_lang_code', 1, 'https://ror.org/00arbsy46 Reckitt Benckiser (Germany)'),
(48331, 'https://ror.org/03bjgk257', 'no_lang_code', 1, 'https://ror.org/03bjgk257 OncoGenex Pharmaceuticals (United States)'),
(48332, 'https://ror.org/00m3bfx83', 'hu', 1, 'https://ror.org/00m3bfx83 Pozitron-Diagnosztika Kft'),
(48333, 'https://ror.org/00222m642', 'no_lang_code', 1, 'https://ror.org/00222m642 Profile Pharma (United Kingdom)'),
(48334, 'https://ror.org/04bp98c14', 'no_lang_code', 1, 'https://ror.org/04bp98c14 Oncopeptides (Sweden)'),
(48335, 'https://ror.org/03ekprg18', 'no_lang_code', 1, 'https://ror.org/03ekprg18 Recordati (Italy)'),
(48336, 'https://ror.org/03jat0y07', 'no_lang_code', 1, 'https://ror.org/03jat0y07 Promethera Biosciences (Belgium)'),
(48337, 'https://ror.org/04qhpra63', 'no_lang_code', 1, 'https://ror.org/04qhpra63 Novartis (Norway)'),
(48338, 'https://ror.org/00vvx9s89', 'no_lang_code', 1, 'https://ror.org/00vvx9s89 Liminal BioSciences (United Kingdom)'),
(48339, 'https://ror.org/027f4r073', 'no_lang_code', 1, 'https://ror.org/027f4r073 Novartis (Denmark)'),
(48340, 'https://ror.org/034cs5236', 'no_lang_code', 1, 'https://ror.org/034cs5236 Only For Children Pharmaceuticals (France)'),
(48341, 'https://ror.org/05rzyfd75', 'no_lang_code', 1, 'https://ror.org/05rzyfd75 ProNAi Therapeutics (United States)'),
(48342, 'https://ror.org/01sdha619', 'no_lang_code', 1, 'https://ror.org/01sdha619 Ono Pharmaceutical (United Kingdom)'),
(48343, 'https://ror.org/003g5qe79', 'no_lang_code', 1, 'https://ror.org/003g5qe79 Circassia Pharmaceuticals (United Kingdom)'),
(48344, 'https://ror.org/035pepv51', 'no_lang_code', 1, 'https://ror.org/035pepv51 Ophthotech (United States)'),
(48345, 'https://ror.org/05he4e720', 'no_lang_code', 1, 'https://ror.org/05he4e720 Novartis (Belgium)'),
(48346, 'https://ror.org/02jf3v234', 'no_lang_code', 1, 'https://ror.org/02jf3v234 Protalix BioTherapeutics (Israel)'),
(48347, 'https://ror.org/024f0th47', 'no_lang_code', 1, 'https://ror.org/024f0th47 Regenmedtx (United States)'),
(48348, 'https://ror.org/01zk1vt68', 'no_lang_code', 1, 'https://ror.org/01zk1vt68 Pfizer (Belgium)'),
(48349, 'https://ror.org/052bk9j85', 'no_lang_code', 1, 'https://ror.org/052bk9j85 PHARM (Italy)'),
(48350, 'https://ror.org/01msnnq69', 'no_lang_code', 1, 'https://ror.org/01msnnq69 Novartis (Sweden)'),
(48351, 'https://ror.org/01ft7jz29', 'no_lang_code', 1, 'https://ror.org/01ft7jz29 OptiNose (United States)'),
(48352, 'https://ror.org/011gmw939', 'no_lang_code', 1, 'https://ror.org/011gmw939 Pharma Patent (Hungary)'),
(48353, 'https://ror.org/01mf0t386', 'no_lang_code', 1, 'https://ror.org/01mf0t386 Upsher-Smith Laboratories (United Kingdom)'),
(48354, 'https://ror.org/03zye6r08', 'no_lang_code', 1, 'https://ror.org/03zye6r08 ORASIS Pharmaceuticals (Israel)'),
(48355, 'https://ror.org/04rgxfp73', 'no_lang_code', 1, 'https://ror.org/04rgxfp73 Pharma Stulln (Germany)'),
(48356, 'https://ror.org/00982nx75', 'no_lang_code', 1, 'https://ror.org/00982nx75 Romark (United States)'),
(48357, 'https://ror.org/019g16n05', 'no_lang_code', 1, 'https://ror.org/019g16n05 PsiOxus Therapeutics (United Kingdom)'),
(48358, 'https://ror.org/05797ak83', 'no_lang_code', 1, 'https://ror.org/05797ak83 Regulon (Greece)'),
(48359, 'https://ror.org/01ny43313', 'no_lang_code', 1, 'https://ror.org/01ny43313 Orion Corporation (United Kingdom)'),
(48360, 'https://ror.org/02vypmx38', 'da', 1, 'https://ror.org/02vypmx38 Psykiatrien i Region Syddanmark'),
(48361, 'https://ror.org/01hfdsp13', 'no_lang_code', 1, 'https://ror.org/01hfdsp13 Vifor Pharma (United Kingdom)'),
(48362, 'https://ror.org/04g2zk759', 'no_lang_code', 1, 'https://ror.org/04g2zk759 Pharmalink (Sweden)'),
(48363, 'https://ror.org/00qverm02', 'no_lang_code', 1, 'https://ror.org/00qverm02 Orphazyme (Denmark)'),
(48364, 'https://ror.org/03x49ea82', 'no_lang_code', 1, 'https://ror.org/03x49ea82 Renapharma (Sweden)'),
(48365, 'https://ror.org/00nxf7t46', 'no_lang_code', 1, 'https://ror.org/00nxf7t46 Pulmagen Therapeutics (United Kingdom)'),
(48366, 'https://ror.org/04fzmt155', 'no_lang_code', 1, 'https://ror.org/04fzmt155 Renovo (United Kingdom)'),
(48367, 'https://ror.org/033c8zt46', 'no_lang_code', 1, 'https://ror.org/033c8zt46 Pharmanest (Sweden)'),
(48368, 'https://ror.org/0130ebz28', 'no_lang_code', 1, 'https://ror.org/0130ebz28 Repha (Germany)'),
(48369, 'https://ror.org/028fqdc34', 'no_lang_code', 1, 'https://ror.org/028fqdc34 Roxall (Germany)'),
(48370, 'https://ror.org/014903n70', 'no_lang_code', 1, 'https://ror.org/014903n70 Getinge (Germany)'),
(48371, 'https://ror.org/03h3wjd71', 'no_lang_code', 1, 'https://ror.org/03h3wjd71 Pharmathen (Greece)'),
(48372, 'https://ror.org/024rmzz69', 'no_lang_code', 1, 'https://ror.org/024rmzz69 NestlƩ (Sweden)'),
(48373, 'https://ror.org/0233s3730', 'no_lang_code', 1, 'https://ror.org/0233s3730 Pharming Group (Netherlands)'),
(48374, 'https://ror.org/04066xx95', 'no_lang_code', 1, 'https://ror.org/04066xx95 ORYX (Germany)'),
(48375, 'https://ror.org/00veetk09', 'no_lang_code', 1, 'https://ror.org/00veetk09 R-Pharm (Russia)'),
(48376, 'https://ror.org/03aj3re16', 'no_lang_code', 1, 'https://ror.org/03aj3re16 Resverlogix (Canada)'),
(48377, 'https://ror.org/04q5vxz02', 'no_lang_code', 1, 'https://ror.org/04q5vxz02 RSPR Pharma (Sweden)'),
(48378, 'https://ror.org/04fvydq80', 'no_lang_code', 1, 'https://ror.org/04fvydq80 RadioMedic (Czechia)'),
(48379, 'https://ror.org/00n9y1b67', 'no_lang_code', 1, 'https://ror.org/00n9y1b67 Revalesio (United states)'),
(48380, 'https://ror.org/0563mqb36', 'no_lang_code', 1, 'https://ror.org/0563mqb36 Photonamic (Germany)'),
(48381, 'https://ror.org/05ahn7y97', 'no_lang_code', 1, 'https://ror.org/05ahn7y97 Rexgenero (United Kingdom)');
INSERT INTO `rors` VALUES
(48382, 'https://ror.org/0180raj05', 'no_lang_code', 1, 'https://ror.org/0180raj05 Scandinavian Sarcoma Group (Sweden)'),
(48383, 'https://ror.org/0363m9h89', 'no_lang_code', 1, 'https://ror.org/0363m9h89 Rheacell (Germany)'),
(48384, 'https://ror.org/00e03sj10', 'de', 1, 'https://ror.org/00e03sj10 Rheumazentrum Ruhrgebiet'),
(48385, 'https://ror.org/041710805', 'no_lang_code', 1, 'https://ror.org/041710805 Pierre Fabre (Germany)'),
(48386, 'https://ror.org/05mbknd79', 'no_lang_code', 1, 'https://ror.org/05mbknd79 Synphora (Sweden)'),
(48387, 'https://ror.org/04trz4q34', 'no_lang_code', 1, 'https://ror.org/04trz4q34 Synthetic Biologics (United States)'),
(48388, 'https://ror.org/03ccwth61', 'es', 1, 'https://ror.org/03ccwth61 Sociedad Espaola de retina y Vtreo'),
(48389, 'https://ror.org/05gh45115', 'no_lang_code', 1, 'https://ror.org/05gh45115 Rhythm (United states)'),
(48390, 'https://ror.org/020sa1y42', 'no_lang_code', 1, 'https://ror.org/020sa1y42 Sager Pharma (Hungary)'),
(48391, 'https://ror.org/05g777x71', 'no_lang_code', 1, 'https://ror.org/05g777x71 Synthon (Czechia)'),
(48392, 'https://ror.org/02qae1c67', 'it', 1, 'https://ror.org/02qae1c67 SocietĆ  Italiana di Nefrologia'),
(48393, 'https://ror.org/056brkm80', 'en', 1, 'https://ror.org/056brkm80 Hospitalsenhed Midt Regional Hospital Central Jutland'),
(48394, 'https://ror.org/04s47k519', 'no_lang_code', 1, 'https://ror.org/04s47k519 SIT Pharmaceutical (Italy)'),
(48395, 'https://ror.org/05f6qyf30', 'en', 1, 'https://ror.org/05f6qyf30 Spanish Oncology Genitourinary Group'),
(48396, 'https://ror.org/031kkyn50', 'no_lang_code', 1, 'https://ror.org/031kkyn50 Solenne (Netherlands)'),
(48397, 'https://ror.org/01t8wyd82', 'no_lang_code', 1, 'https://ror.org/01t8wyd82 SciencePharma (Poland)'),
(48398, 'https://ror.org/0560gb543', 'no_lang_code', 1, 'https://ror.org/0560gb543 Bausch Health (United Kingdom)'),
(48399, 'https://ror.org/03vyqpz72', 'no_lang_code', 1, 'https://ror.org/03vyqpz72 Solvotrin Innovations (Ireland)'),
(48400, 'https://ror.org/05ydk8712', 'en', 1, 'https://ror.org/05ydk8712 Scottish National Blood Transfusion Service'),
(48401, 'https://ror.org/02z43nn16', 'no_lang_code', 1, 'https://ror.org/02z43nn16 Taiho Oncology (United States)'),
(48402, 'https://ror.org/00w17sc55', 'no_lang_code', 1, 'https://ror.org/00w17sc55 SOM Biotech (Spain)'),
(48403, 'https://ror.org/00vbtek25', 'no_lang_code', 1, 'https://ror.org/00vbtek25 scPharmaceuticals (United States)'),
(48404, 'https://ror.org/049a8xm46', 'no_lang_code', 1, 'https://ror.org/049a8xm46 Takeda (Belgium)'),
(48405, 'https://ror.org/02w3k0k28', 'no_lang_code', 1, 'https://ror.org/02w3k0k28 Sopharma (Bulgaria)'),
(48406, 'https://ror.org/03rr5wf56', 'no_lang_code', 1, 'https://ror.org/03rr5wf56 Sophiris (United States)'),
(48407, 'https://ror.org/00ycncb81', 'no_lang_code', 1, 'https://ror.org/00ycncb81 Takeda (Netherlands)'),
(48408, 'https://ror.org/05prtzk88', 'no_lang_code', 1, 'https://ror.org/05prtzk88 Bouty (Italy)'),
(48409, 'https://ror.org/027gy9h20', 'no_lang_code', 1, 'https://ror.org/027gy9h20 Seahorse Scientific Services (United Kingdom)'),
(48410, 'https://ror.org/033q3j448', 'no_lang_code', 1, 'https://ror.org/033q3j448 Targovax (Finland)'),
(48411, 'https://ror.org/01gc9jt13', 'no_lang_code', 1, 'https://ror.org/01gc9jt13 Sanochemia Pharmazeutika (Austria)'),
(48412, 'https://ror.org/059a53184', 'no_lang_code', 1, 'https://ror.org/059a53184 TauRx (United Kingdom)'),
(48413, 'https://ror.org/029gjrw67', 'no_lang_code', 1, 'https://ror.org/029gjrw67 Robugen (Germany)'),
(48414, 'https://ror.org/01w8m1867', 'no_lang_code', 1, 'https://ror.org/01w8m1867 Novartis (Australia)'),
(48415, 'https://ror.org/04seaqh41', 'no_lang_code', 1, 'https://ror.org/04seaqh41 Roche (Denmark)'),
(48416, 'https://ror.org/03cwbzb16', 'no_lang_code', 1, 'https://ror.org/03cwbzb16 Roche (Austria)'),
(48417, 'https://ror.org/05bf2vj98', 'no_lang_code', 1, 'https://ror.org/05bf2vj98 Sanofi (United Kingdom)'),
(48418, 'https://ror.org/04b8zcj45', 'no_lang_code', 1, 'https://ror.org/04b8zcj45 Roche (Spain)'),
(48419, 'https://ror.org/04zt79h83', 'no_lang_code', 1, 'https://ror.org/04zt79h83 Roche (Portugal)'),
(48420, 'https://ror.org/02mnmm768', 'no_lang_code', 1, 'https://ror.org/02mnmm768 Sanofi (Italy)'),
(48421, 'https://ror.org/0392c7938', 'no_lang_code', 1, 'https://ror.org/0392c7938 Roche (Greece)'),
(48422, 'https://ror.org/0382cxx18', 'en', 1, 'https://ror.org/0382cxx18 Section of Transfusion Medicine Capital Region Blood Bank & Department of Clinical Immunology'),
(48423, 'https://ror.org/01gcg9888', 'no_lang_code', 1, 'https://ror.org/01gcg9888 Roche (Netherlands)'),
(48424, 'https://ror.org/00kt5rm23', 'no_lang_code', 1, 'https://ror.org/00kt5rm23 TC Biopharm (United Kingdom)'),
(48425, 'https://ror.org/02wnz8673', 'no_lang_code', 1, 'https://ror.org/02wnz8673 Sanofi (Belgium)'),
(48426, 'https://ror.org/03k879d12', 'no_lang_code', 1, 'https://ror.org/03k879d12 Seqirus (United States)'),
(48427, 'https://ror.org/040h02z76', 'no_lang_code', 1, 'https://ror.org/040h02z76 Sanofi (Japan) ć‚µćƒŽćƒ•ć‚£'),
(48428, 'https://ror.org/011v1tv66', 'no_lang_code', 1, 'https://ror.org/011v1tv66 Serumwerk Bernburg (Germany)'),
(48429, 'https://ror.org/045frfm13', 'no_lang_code', 1, 'https://ror.org/045frfm13 Stealth BioTherapeutics (United States)'),
(48430, 'https://ror.org/02r3fkw61', 'no_lang_code', 1, 'https://ror.org/02r3fkw61 Tesaro (United States)'),
(48431, 'https://ror.org/007vd5q36', 'no_lang_code', 1, 'https://ror.org/007vd5q36 TETEC Tissue Engineering Technologies (Germany)'),
(48432, 'https://ror.org/02fbwdh31', 'no_lang_code', 1, 'https://ror.org/02fbwdh31 Servier (United Kingdom)'),
(48433, 'https://ror.org/048830f73', 'no_lang_code', 1, 'https://ror.org/048830f73 Tetraphase Pharmaceuticals (United States)'),
(48434, 'https://ror.org/05gpmjj80', 'no_lang_code', 1, 'https://ror.org/05gpmjj80 Stelic (Japan)'),
(48435, 'https://ror.org/01wyyby64', 'no_lang_code', 1, 'https://ror.org/01wyyby64 Oxurion (Ireland)'),
(48436, 'https://ror.org/001crv456', 'nl', 1, 'https://ror.org/001crv456 Werkgroep Immunotherapie Nederland voor Oncologie'),
(48437, 'https://ror.org/04p365m25', 'no_lang_code', 1, 'https://ror.org/04p365m25 Thrombotargets (Spain)'),
(48438, 'https://ror.org/05hw2m351', 'no_lang_code', 1, 'https://ror.org/05hw2m351 Shield Therapeutics (United Kingdom)'),
(48439, 'https://ror.org/05nx4j589', 'no_lang_code', 1, 'https://ror.org/05nx4j589 Sterna Biologicals (Germany)'),
(48440, 'https://ror.org/00tx8br33', 'no_lang_code', 1, 'https://ror.org/00tx8br33 Sanofi (Finland)'),
(48441, 'https://ror.org/00g51ew42', 'no_lang_code', 1, 'https://ror.org/00g51ew42 Sanofi (Spain)'),
(48442, 'https://ror.org/03r24gp64', 'de', 1, 'https://ror.org/03r24gp64 Sterreichisches Akromegalie Register'),
(48443, 'https://ror.org/051mdb162', 'en', 1, 'https://ror.org/051mdb162 Heartbeat Trust'),
(48444, 'https://ror.org/05bhnz872', 'no_lang_code', 1, 'https://ror.org/05bhnz872 Sanofi (Hungary)'),
(48445, 'https://ror.org/01embmm80', 'no_lang_code', 1, 'https://ror.org/01embmm80 Tikomed (Sweden)'),
(48446, 'https://ror.org/052cecc97', 'en', 1, 'https://ror.org/052cecc97 London Clinic'),
(48447, 'https://ror.org/05yjdg022', 'no_lang_code', 1, 'https://ror.org/05yjdg022 BBB Therapeutics (Netherlands)'),
(48448, 'https://ror.org/01y8eh752', 'no_lang_code', 1, 'https://ror.org/01y8eh752 Strathmann (Germany)'),
(48449, 'https://ror.org/02fyrxr51', 'nl', 1, 'https://ror.org/02fyrxr51 Streeklab Haarlem'),
(48450, 'https://ror.org/02za90e47', 'no_lang_code', 1, 'https://ror.org/02za90e47 Strekin (Switzerland)'),
(48451, 'https://ror.org/02zxf2242', 'no_lang_code', 1, 'https://ror.org/02zxf2242 Allergan (Finland)'),
(48452, 'https://ror.org/03nvr8032', 'no_lang_code', 1, 'https://ror.org/03nvr8032 Tokai Pharmaceuticals (United States)'),
(48453, 'https://ror.org/05gmffx67', 'no_lang_code', 1, 'https://ror.org/05gmffx67 Sucampo (Switzerland)'),
(48454, 'https://ror.org/02752ac98', 'no_lang_code', 1, 'https://ror.org/02752ac98 Topivert (United Kingdom)'),
(48455, 'https://ror.org/006psag97', 'no_lang_code', 1, 'https://ror.org/006psag97 Onxeo (Denmark)'),
(48456, 'https://ror.org/04e9jh270', 'no_lang_code', 1, 'https://ror.org/04e9jh270 Sanol (Germany)'),
(48457, 'https://ror.org/0108v8438', 'no_lang_code', 1, 'https://ror.org/0108v8438 Santen (United States)'),
(48458, 'https://ror.org/0023ccp69', 'no_lang_code', 1, 'https://ror.org/0023ccp69 Sintetica (Switzerland)'),
(48459, 'https://ror.org/00bzkg452', 'no_lang_code', 1, 'https://ror.org/00bzkg452 Savara (Denmark)'),
(48460, 'https://ror.org/02y447m55', 'no_lang_code', 1, 'https://ror.org/02y447m55 Sirtex (Germany)'),
(48461, 'https://ror.org/01b51qe92', 'no_lang_code', 1, 'https://ror.org/01b51qe92 Trevi Therapeutics (United States)'),
(48462, 'https://ror.org/03sh4z743', 'no_lang_code', 1, 'https://ror.org/03sh4z743 Sunovion (United Kingdom)'),
(48463, 'https://ror.org/04kd6fb74', 'no_lang_code', 1, 'https://ror.org/04kd6fb74 TrichoCare (United Kingdom)'),
(48464, 'https://ror.org/03ckgn780', 'sv', 1, 'https://ror.org/03ckgn780 Svettmottagningen'),
(48465, 'https://ror.org/047svmk39', 'no_lang_code', 1, 'https://ror.org/047svmk39 Trio Medicines (United Kingdom)'),
(48466, 'https://ror.org/01eqh1e45', 'en', 1, 'https://ror.org/01eqh1e45 Swedish CLL group'),
(48467, 'https://ror.org/030d18955', 'no_lang_code', 1, 'https://ror.org/030d18955 SmartPractice (United States)'),
(48468, 'https://ror.org/013x77c65', 'no_lang_code', 1, 'https://ror.org/013x77c65 Txcell (France)'),
(48469, 'https://ror.org/05kymnn64', 'no_lang_code', 1, 'https://ror.org/05kymnn64 Swedish Orphan Biovitrum (Switzerland)'),
(48470, 'https://ror.org/05k3n9k87', 'no', 1, 'https://ror.org/05k3n9k87 Smerteklinikken'),
(48471, 'https://ror.org/01jmrmv15', 'no_lang_code', 1, 'https://ror.org/01jmrmv15 Swiss Cardio Technologies (Switzerland)'),
(48472, 'https://ror.org/005nnp672', 'no_lang_code', 1, 'https://ror.org/005nnp672 Smith & Nephew (Germany)'),
(48473, 'https://ror.org/03d8m2k26', 'no_lang_code', 1, 'https://ror.org/03d8m2k26 SymbioPharm (Germany)'),
(48474, 'https://ror.org/030sgj832', 'no_lang_code', 1, 'https://ror.org/030sgj832 GlaxoSmithKline (Sri Lanka)'),
(48475, 'https://ror.org/026xkpb31', 'es', 1, 'https://ror.org/026xkpb31 Sociedad Andaluza de Trasplantes de Ɠrganos y Tejidos'),
(48476, 'https://ror.org/0491edy94', 'no_lang_code', 1, 'https://ror.org/0491edy94 Asarina Pharma (Sweden)'),
(48477, 'https://ror.org/04agh5288', 'de', 1, 'https://ror.org/04agh5288 Unfallkrankenhaus Salzburg'),
(48478, 'https://ror.org/05ansvf21', 'no_lang_code', 1, 'https://ror.org/05ansvf21 Rohto Pharmaceutical (United Kingdom)'),
(48479, 'https://ror.org/02jyvnx70', 'no_lang_code', 1, 'https://ror.org/02jyvnx70 UniQure (Netherlands)'),
(48480, 'https://ror.org/00txma197', 'no_lang_code', 1, 'https://ror.org/00txma197 Themis Bioscience (Austria)'),
(48481, 'https://ror.org/015b5md70', 'no_lang_code', 1, 'https://ror.org/015b5md70 Therabel (Belgium)'),
(48482, 'https://ror.org/01a904q54', 'no_lang_code', 1, 'https://ror.org/01a904q54 United Therapeutics (United Kingdom)'),
(48483, 'https://ror.org/037gt0k77', 'no_lang_code', 1, 'https://ror.org/037gt0k77 Univar (United Kingdom)'),
(48484, 'https://ror.org/03jngpv21', 'no_lang_code', 1, 'https://ror.org/03jngpv21 Theracos (United States)'),
(48485, 'https://ror.org/031t42b47', 'no_lang_code', 1, 'https://ror.org/031t42b47 URSAPHARM (Germany)'),
(48486, 'https://ror.org/04ke50w30', 'no_lang_code', 1, 'https://ror.org/04ke50w30 ViiV Healthcare (Spain)'),
(48487, 'https://ror.org/012h3vy49', 'no_lang_code', 1, 'https://ror.org/012h3vy49 Viking Therapeutics (United States)'),
(48488, 'https://ror.org/0277dxs53', 'no_lang_code', 1, 'https://ror.org/0277dxs53 Clinipace (Italy)'),
(48489, 'https://ror.org/01ph20k51', 'no_lang_code', 1, 'https://ror.org/01ph20k51 Visterra (United States)'),
(48490, 'https://ror.org/03v1s7b70', 'no_lang_code', 1, 'https://ror.org/03v1s7b70 Pfizer (South Korea)'),
(48491, 'https://ror.org/04ps1h446', 'no_lang_code', 1, 'https://ror.org/04ps1h446 Vital Therapies (United States)'),
(48492, 'https://ror.org/00w1mdq38', 'no_lang_code', 1, 'https://ror.org/00w1mdq38 VL-Medi Oy (Finland)'),
(48493, 'https://ror.org/02eed7j13', 'no_lang_code', 1, 'https://ror.org/02eed7j13 Vasopharm (Germany)'),
(48494, 'https://ror.org/05k7n6k09', 'no_lang_code', 1, 'https://ror.org/05k7n6k09 Vaxon Biotech (France)'),
(48495, 'https://ror.org/00en8sz04', 'no_lang_code', 1, 'https://ror.org/00en8sz04 Vectura (Germany)'),
(48496, 'https://ror.org/05c1g2f47', 'no_lang_code', 1, 'https://ror.org/05c1g2f47 Xcovery (United States)'),
(48497, 'https://ror.org/01jya0847', 'no_lang_code', 1, 'https://ror.org/01jya0847 Vtesse (United States)'),
(48498, 'https://ror.org/000ydq217', 'no_lang_code', 1, 'https://ror.org/000ydq217 Vectura (United Kingdom)'),
(48499, 'https://ror.org/03dkej307', 'no_lang_code', 1, 'https://ror.org/03dkej307 Xellia (Croatia)'),
(48500, 'https://ror.org/014335v20', 'en', 1, 'https://ror.org/014335v20 174th hospital of the People''s Liberation Army 解放军第174医院'),
(48501, 'https://ror.org/021820f58', 'no_lang_code', 1, 'https://ror.org/021820f58 Xenikos (Netherlands)'),
(48502, 'https://ror.org/02xa0er70', 'no_lang_code', 1, 'https://ror.org/02xa0er70 21st Century Oncology (United States)'),
(48503, 'https://ror.org/054qagt04', 'no_lang_code', 1, 'https://ror.org/054qagt04 Assembly Biosciences (United States)'),
(48504, 'https://ror.org/04zzq8d03', 'no_lang_code', 1, 'https://ror.org/04zzq8d03 Zambon (Italy)'),
(48505, 'https://ror.org/0479btw97', 'no_lang_code', 1, 'https://ror.org/0479btw97 Zambon (Spain)'),
(48506, 'https://ror.org/0427w5y14', 'no_lang_code', 1, 'https://ror.org/0427w5y14 Weber and Weber (Germany)'),
(48507, 'https://ror.org/02bmq1p14', 'no_lang_code', 1, 'https://ror.org/02bmq1p14 Weleda (Germany)'),
(48508, 'https://ror.org/01bb2y691', 'nl', 1, 'https://ror.org/01bb2y691 Dutch Network for Cardiovascular Research Werkgroep Cardiologische centra Nederland'),
(48509, 'https://ror.org/00s1p1c80', 'no_lang_code', 1, 'https://ror.org/00s1p1c80 Verisfield (Greece)'),
(48510, 'https://ror.org/040ypnf94', 'en', 1, 'https://ror.org/040ypnf94 Westdeutsche Studiengruppe Womenā€˜s Healthcare Group'),
(48511, 'https://ror.org/04r000b45', 'no_lang_code', 1, 'https://ror.org/04r000b45 Zambon (Belgium)'),
(48512, 'https://ror.org/0405b3553', 'nl', 1, 'https://ror.org/0405b3553 Westfriesgasthuis'),
(48513, 'https://ror.org/00s9kz870', 'no_lang_code', 1, 'https://ror.org/00s9kz870 Versartis (United States)'),
(48514, 'https://ror.org/01sbybp86', 'no_lang_code', 1, 'https://ror.org/01sbybp86 Wilson Therapeutics (United States)'),
(48515, 'https://ror.org/03h2cp518', 'en', 1, 'https://ror.org/03h2cp518 Tinker Air Force Base'),
(48516, 'https://ror.org/05jndc687', 'en', 1, 'https://ror.org/05jndc687 Attention Deficit Disorder Treatment Center'),
(48517, 'https://ror.org/00m42nc03', 'no_lang_code', 1, 'https://ror.org/00m42nc03 Zelmic (Sweden)'),
(48518, 'https://ror.org/03fs5jd74', 'no_lang_code', 1, 'https://ror.org/03fs5jd74 Vertex Pharmaceuticals (United Kingdom)'),
(48519, 'https://ror.org/03mgygf96', 'it', 1, 'https://ror.org/03mgygf96 ASST Melegnano e della Martesana'),
(48520, 'https://ror.org/049nmq981', 'no_lang_code', 1, 'https://ror.org/049nmq981 Ziarco (United Kingdom)'),
(48521, 'https://ror.org/00k39ax32', 'no_lang_code', 1, 'https://ror.org/00k39ax32 Ziopharm Oncology (United States)'),
(48522, 'https://ror.org/022phs473', 'en', 1, 'https://ror.org/022phs473 Vienna Institute for Research in Ocular Surgery'),
(48523, 'https://ror.org/01pxgad11', 'en', 1, 'https://ror.org/01pxgad11 Advanced Dermatology & Cosmetic Surgery'),
(48524, 'https://ror.org/0115kmj57', 'en', 1, 'https://ror.org/0115kmj57 Corrective Eye Center'),
(48525, 'https://ror.org/00fnw5m57', 'en', 1, 'https://ror.org/00fnw5m57 Anaheim Clinical Trials'),
(48526, 'https://ror.org/03p3t4h85', 'no_lang_code', 1, 'https://ror.org/03p3t4h85 Zymenex (Denmark)'),
(48527, 'https://ror.org/02jkvf915', 'en', 1, 'https://ror.org/02jkvf915 Academic and Community Cancer Research United'),
(48528, 'https://ror.org/0283crx61', 'no_lang_code', 1, 'https://ror.org/0283crx61 Zytoprotec (Austria)'),
(48529, 'https://ror.org/02x25m361', 'en', 1, 'https://ror.org/02x25m361 Academic Dermatology Associates'),
(48530, 'https://ror.org/00gb2qm43', 'en', 1, 'https://ror.org/00gb2qm43 Andover Eye Associates'),
(48531, 'https://ror.org/05wqa9613', 'en', 1, 'https://ror.org/05wqa9613 Ang Mo Kio Thye Hua Kwan Hospital'),
(48532, 'https://ror.org/04qm2hz97', 'no_lang_code', 1, 'https://ror.org/04qm2hz97 Accelovance (United States)'),
(48533, 'https://ror.org/05980d896', 'en', 1, 'https://ror.org/05980d896 Angioma Alliance'),
(48534, 'https://ror.org/02fstqr33', 'en', 1, 'https://ror.org/02fstqr33 Ankang City Central Hospital å®‰åŗ·åø‚äø­åæƒåŒ»é™¢'),
(48535, 'https://ror.org/004ca1d83', 'en', 1, 'https://ror.org/004ca1d83 Access Behavioral Health'),
(48536, 'https://ror.org/05qyyb850', 'id', 1, 'https://ror.org/05qyyb850 Rumah Sakit Jantung Binawaluya'),
(48537, 'https://ror.org/00mt5kz64', 'en', 1, 'https://ror.org/00mt5kz64 Accumed Research Associates'),
(48538, 'https://ror.org/01y8cpr39', 'en', 1, 'https://ror.org/01y8cpr39 Binzhou People''s Hospital ę»Øå·žäŗŗę°‘åŒ»é™¢'),
(48539, 'https://ror.org/01hp17k95', 'no_lang_code', 1, 'https://ror.org/01hp17k95 BioKinetic Europe (United Kingdom)'),
(48540, 'https://ror.org/01z1y5p14', 'en', 1, 'https://ror.org/01z1y5p14 Action in the Community Environment'),
(48541, 'https://ror.org/02xe8f033', 'no_lang_code', 1, 'https://ror.org/02xe8f033 ApniCure (United States)'),
(48542, 'https://ror.org/05ssfqx86', 'en', 1, 'https://ror.org/05ssfqx86 Adult and Pediatric Dermatology'),
(48543, 'https://ror.org/00bsjtn43', 'en', 1, 'https://ror.org/00bsjtn43 Bioscience Research'),
(48544, 'https://ror.org/02cmdcv60', 'en', 1, 'https://ror.org/02cmdcv60 Bamberg County Hospital'),
(48545, 'https://ror.org/045ns1x37', 'en', 1, 'https://ror.org/045ns1x37 Cancer Treatment Centers of America'),
(48546, 'https://ror.org/00ddfwx17', 'no_lang_code', 1, 'https://ror.org/00ddfwx17 BioVirtus (Poland)'),
(48547, 'https://ror.org/00wcrma30', 'en', 1, 'https://ror.org/00wcrma30 Capalaba Medical Centre'),
(48548, 'https://ror.org/0200vq221', 'no_lang_code', 1, 'https://ror.org/0200vq221 Bamrasnaradura Infectious Diseases Institute'),
(48549, 'https://ror.org/0181qem25', 'en', 1, 'https://ror.org/0181qem25 Capital Nephrology Associates'),
(48550, 'https://ror.org/00q9sa398', 'es', 1, 'https://ror.org/00q9sa398 Instituto Argentino de Diagnóstico y Tratamiento'),
(48551, 'https://ror.org/02fhzax24', 'no_lang_code', 1, 'https://ror.org/02fhzax24 Advanced Biological Laboratories (Luxembourg)'),
(48552, 'https://ror.org/033q83c72', 'en', 1, 'https://ror.org/033q83c72 Bangalore Diabetes Centre'),
(48553, 'https://ror.org/019qtj676', 'en', 1, 'https://ror.org/019qtj676 Cardiac And Vascular Research Center Of Northern Michigan'),
(48554, 'https://ror.org/04xxv0d51', 'en', 1, 'https://ror.org/04xxv0d51 Advanced Breast Care'),
(48555, 'https://ror.org/03jma7k75', 'en', 1, 'https://ror.org/03jma7k75 Aristocrat Plastic Surgery & MedAesthetics'),
(48556, 'https://ror.org/051ss5t53', 'en', 1, 'https://ror.org/051ss5t53 Cardiac Study Center'),
(48557, 'https://ror.org/04cext840', 'en', 1, 'https://ror.org/04cext840 Arizona Heart Hospital'),
(48558, 'https://ror.org/051nc1562', 'en', 1, 'https://ror.org/051nc1562 Orthopedic One'),
(48559, 'https://ror.org/032pnr897', 'en', 1, 'https://ror.org/032pnr897 Cardiology Associates of Savannah'),
(48560, 'https://ror.org/03bbek688', 'en', 1, 'https://ror.org/03bbek688 Blue Ridge Physical Therapy'),
(48561, 'https://ror.org/0399x8k58', 'en', 1, 'https://ror.org/0399x8k58 Advanced Dialysis Center'),
(48562, 'https://ror.org/00gytj534', 'en', 1, 'https://ror.org/00gytj534 Arkansas Cardiology'),
(48563, 'https://ror.org/028r7gw60', 'en', 1, 'https://ror.org/028r7gw60 Bobath memorial hospital ė³“ė°”ģŠ¤źø°ė…ė³‘ģ›'),
(48564, 'https://ror.org/05hwr2c31', 'en', 1, 'https://ror.org/05hwr2c31 Arlington Center for Dermatology'),
(48565, 'https://ror.org/023qwbz75', 'en', 1, 'https://ror.org/023qwbz75 Advanced Neurology Specialists'),
(48566, 'https://ror.org/04g219d41', 'en', 1, 'https://ror.org/04g219d41 Advanced Neurosciences Institute'),
(48567, 'https://ror.org/0360x1161', 'no_lang_code', 1, 'https://ror.org/0360x1161 BRCR Global (United States)'),
(48568, 'https://ror.org/01zx7tr29', 'en', 1, 'https://ror.org/01zx7tr29 Barlow Medical Centre'),
(48569, 'https://ror.org/00c3pmw05', 'en', 1, 'https://ror.org/00c3pmw05 Advanced Pharma'),
(48570, 'https://ror.org/02dvymp17', 'en', 1, 'https://ror.org/02dvymp17 Bonutti Clinic'),
(48571, 'https://ror.org/03e1yhr47', 'en', 1, 'https://ror.org/03e1yhr47 Advanced Research Institute'),
(48572, 'https://ror.org/03e2b2m72', 'en', 1, 'https://ror.org/03e2b2m72 CardioVasculƤres Centrum Frankfurt Cardiovascular Center Frankfurt'),
(48573, 'https://ror.org/03fjqhb83', 'en', 1, 'https://ror.org/03fjqhb83 Boston Center for Memory'),
(48574, 'https://ror.org/037g47a86', 'no_lang_code', 1, 'https://ror.org/037g47a86 Arthur Asirvatham Hospital'),
(48575, 'https://ror.org/03526b919', 'en', 1, 'https://ror.org/03526b919 Boston Children''s Health Physicians'),
(48576, 'https://ror.org/05xckek43', 'en', 1, 'https://ror.org/05xckek43 Boston IVF'),
(48577, 'https://ror.org/04f62cx68', 'en', 1, 'https://ror.org/04f62cx68 Carmel Mountain Vision Care'),
(48578, 'https://ror.org/05hmy6316', 'en', 1, 'https://ror.org/05hmy6316 Bastian Voice Institute'),
(48579, 'https://ror.org/02nwxch96', 'en', 1, 'https://ror.org/02nwxch96 Asheville Cardiology Associates'),
(48580, 'https://ror.org/031kwjn35', 'en', 1, 'https://ror.org/031kwjn35 Bozeman Urgent Care Center'),
(48581, 'https://ror.org/03am9bm91', 'en', 1, 'https://ror.org/03am9bm91 Bateman Horne Center'),
(48582, 'https://ror.org/05mwhee50', 'no_lang_code', 1, 'https://ror.org/05mwhee50 Bradenton Neurology'),
(48583, 'https://ror.org/03ksg3960', 'en', 1, 'https://ror.org/03ksg3960 The Affiliated Hospital to Changchun University of Chinese Medicine é•æę˜„äø­åŒ»čÆå¤§å­¦é™„å±žåŒ»é™¢'),
(48584, 'https://ror.org/046d56591', 'en', 1, 'https://ror.org/046d56591 Carolina Clinical Research Services'),
(48585, 'https://ror.org/00pkb6h65', 'en', 1, 'https://ror.org/00pkb6h65 Bath and North East Somerset Clinical Commissioning Group'),
(48586, 'https://ror.org/03wtqwa04', 'en', 1, 'https://ror.org/03wtqwa04 Westmead Institute'),
(48587, 'https://ror.org/02dynm054', 'en', 1, 'https://ror.org/02dynm054 Carolina Ear, Nose and Throat Clinic'),
(48588, 'https://ror.org/05dayh150', 'en', 1, 'https://ror.org/05dayh150 Baumann Cosmetic Dermatology'),
(48589, 'https://ror.org/019qn3016', 'en', 1, 'https://ror.org/019qn3016 Carolina Eyecare Physicians'),
(48590, 'https://ror.org/00a1cc659', 'de', 1, 'https://ror.org/00a1cc659 Asklepios Fachklinikum Brandenburg'),
(48591, 'https://ror.org/05h10sf50', 'en', 1, 'https://ror.org/05h10sf50 Brain Resource Center'),
(48592, 'https://ror.org/00888a070', 'en', 1, 'https://ror.org/00888a070 Carolina Neurosurgery and Spine Associates'),
(48593, 'https://ror.org/03symcd56', 'en', 1, 'https://ror.org/03symcd56 Bay State Clinical Trials'),
(48594, 'https://ror.org/040f4cr30', 'de', 1, 'https://ror.org/040f4cr30 Asklepios Klinik Weißenfels'),
(48595, 'https://ror.org/02kqrq831', 'en', 1, 'https://ror.org/02kqrq831 Comprehensive Urology'),
(48596, 'https://ror.org/03cdy5015', 'en', 1, 'https://ror.org/03cdy5015 Carolina Retina Center'),
(48597, 'https://ror.org/03j5af397', 'no_lang_code', 1, 'https://ror.org/03j5af397 Iomedico (Germany)'),
(48598, 'https://ror.org/05vk9vy20', 'en', 1, 'https://ror.org/05vk9vy20 Carolina Urologic Research Center'),
(48599, 'https://ror.org/00fayv870', 'en', 1, 'https://ror.org/00fayv870 Carolina Women''s Research and Wellness Center'),
(48600, 'https://ror.org/05g4hh326', 'en', 1, 'https://ror.org/05g4hh326 Baylor Scott & White All Saints Medical Center'),
(48601, 'https://ror.org/02rgsra75', 'en', 1, 'https://ror.org/02rgsra75 Associated Eyecare'),
(48602, 'https://ror.org/00q8tg479', 'en', 1, 'https://ror.org/00q8tg479 Brainclinics'),
(48603, 'https://ror.org/0517a1s55', 'en', 1, 'https://ror.org/0517a1s55 Associates in Neurology'),
(48604, 'https://ror.org/0382s8112', 'en', 1, 'https://ror.org/0382s8112 Carrick Institute'),
(48605, 'https://ror.org/021h1av98', 'en', 1, 'https://ror.org/021h1av98 Heart Hospital Baylor Plano'),
(48606, 'https://ror.org/02gx57r28', 'en', 1, 'https://ror.org/02gx57r28 Atlanta Center for Medical Research'),
(48607, 'https://ror.org/05q0c4c66', 'sv', 1, 'https://ror.org/05q0c4c66 Akademikliniken'),
(48608, 'https://ror.org/0036dh995', 'en', 1, 'https://ror.org/0036dh995 Brentwood Hospital'),
(48609, 'https://ror.org/04zwbbf36', 'en', 1, 'https://ror.org/04zwbbf36 Hamilton Dermatology'),
(48610, 'https://ror.org/03s235554', 'en', 1, 'https://ror.org/03s235554 Atlanta Gastroenterology Associates'),
(48611, 'https://ror.org/05p3n0372', 'en', 1, 'https://ror.org/05p3n0372 Signature Healthcare Brockton Hospital'),
(48612, 'https://ror.org/02ztnzj53', 'en', 1, 'https://ror.org/02ztnzj53 Beacon Clinical Research'),
(48613, 'https://ror.org/04z2f8y70', 'en', 1, 'https://ror.org/04z2f8y70 Cataract and Refractive Institute of Florida'),
(48614, 'https://ror.org/02veq9058', 'en', 1, 'https://ror.org/02veq9058 Beaver Medical Group'),
(48615, 'https://ror.org/010rhqv43', 'en', 1, 'https://ror.org/010rhqv43 Albany House Medical Centre'),
(48616, 'https://ror.org/02m3rg114', 'en', 1, 'https://ror.org/02m3rg114 Brooks Rehabilitation Clinical Research Center'),
(48617, 'https://ror.org/00fg07796', 'en', 1, 'https://ror.org/00fg07796 Behavioral Medical Research'),
(48618, 'https://ror.org/0018m2960', 'pt', 1, 'https://ror.org/0018m2960 Alergo Dermatologia Integrada'),
(48619, 'https://ror.org/010ern194', 'en', 1, 'https://ror.org/010ern194 Beijing Geriatric Hospital åŒ—äŗ¬č€å¹“åŒ»é™¢'),
(48620, 'https://ror.org/036v92s32', 'en', 1, 'https://ror.org/036v92s32 Aurora Medical Center'),
(48621, 'https://ror.org/01m423d85', 'no_lang_code', 1, 'https://ror.org/01m423d85 Buddhachinaraj Hospital'),
(48622, 'https://ror.org/01e310919', 'en', 1, 'https://ror.org/01e310919 Monash Alfred Psychiatry Research centre'),
(48623, 'https://ror.org/00y6n9757', 'en', 1, 'https://ror.org/00y6n9757 Hematology Oncology Associates of Central New York'),
(48624, 'https://ror.org/02zvde082', 'en', 1, 'https://ror.org/02zvde082 Buena Vista Eye Care'),
(48625, 'https://ror.org/00sq30w29', 'en', 1, 'https://ror.org/00sq30w29 Autism & Developmental Medicine Institute'),
(48626, 'https://ror.org/02vhx9606', 'en', 1, 'https://ror.org/02vhx9606 Metro-Minnesota Community Oncology Research Consortium'),
(48627, 'https://ror.org/042hsjs98', 'en', 1, 'https://ror.org/042hsjs98 Buffalo Psychiatric Center'),
(48628, 'https://ror.org/02p6vdy49', 'en', 1, 'https://ror.org/02p6vdy49 Buffalo Spine Surgery'),
(48629, 'https://ror.org/04sc4fe33', 'en', 1, 'https://ror.org/04sc4fe33 Avail Clinical Research'),
(48630, 'https://ror.org/028tezs28', 'en', 1, 'https://ror.org/028tezs28 Henry Ford Allegiance Health'),
(48631, 'https://ror.org/02mfxyv79', 'en', 1, 'https://ror.org/02mfxyv79 Michigan Cancer Research Consortium'),
(48632, 'https://ror.org/00bgmja34', 'en', 1, 'https://ror.org/00bgmja34 Burke Pharmaceutical Research'),
(48633, 'https://ror.org/05fbx4s48', 'de', 1, 'https://ror.org/05fbx4s48 Allergiezentrum Wien West'),
(48634, 'https://ror.org/02ah6fj31', 'en', 1, 'https://ror.org/02ah6fj31 Burrell Behavioral Health'),
(48635, 'https://ror.org/04rn5ad82', 'en', 1, 'https://ror.org/04rn5ad82 Axiom Clinical Research of Florida'),
(48636, 'https://ror.org/03paq3x39', 'no_lang_code', 1, 'https://ror.org/03paq3x39 Celerion (United Kingdom)'),
(48637, 'https://ror.org/01gtvsc36', 'no_lang_code', 1, 'https://ror.org/01gtvsc36 Celerion (United States)'),
(48638, 'https://ror.org/0388avt91', 'en', 1, 'https://ror.org/0388avt91 Allergy Associates of the Palm Beaches'),
(48639, 'https://ror.org/05xwakr27', 'no_lang_code', 1, 'https://ror.org/05xwakr27 Cellex Cell Professionals (Germany)'),
(48640, 'https://ror.org/03h2qaw95', 'ro', 1, 'https://ror.org/03h2qaw95 Spitalul Universitar de Urgenţă Militar Central Dr. Carol Davila'),
(48641, 'https://ror.org/058djb788', 'en', 1, 'https://ror.org/058djb788 Cairo University hospitals Ł…Ų³ŲŖŲ“ŁŁŠŲ§ŲŖ Ų¬Ų§Ł…Ų¹Ų© القاهرة'),
(48642, 'https://ror.org/03pxm0s08', 'en', 1, 'https://ror.org/03pxm0s08 Centennial Heart Cardiovascular Consultants'),
(48643, 'https://ror.org/00jw0jd04', 'en', 1, 'https://ror.org/00jw0jd04 California Cancer Associates for Research and Excellence'),
(48644, 'https://ror.org/04j485w94', 'en', 1, 'https://ror.org/04j485w94 Allergy Associates Research Center'),
(48645, 'https://ror.org/01wayad04', 'en', 1, 'https://ror.org/01wayad04 Centennial Medical Group'),
(48646, 'https://ror.org/01h5ykb44', 'nl', 1, 'https://ror.org/01h5ykb44 AZ Sint-Lucas'),
(48647, 'https://ror.org/05c96b989', 'en', 1, 'https://ror.org/05c96b989 Balboa Nephrology Medical Group'),
(48648, 'https://ror.org/05qpsmp07', 'en', 1, 'https://ror.org/05qpsmp07 Center for Anxiety and Depression'),
(48649, 'https://ror.org/022wqqm54', 'en', 1, 'https://ror.org/022wqqm54 AlphaNet'),
(48650, 'https://ror.org/03jh7ct92', 'en', 1, 'https://ror.org/03jh7ct92 Center for Cancers and Blood Disorders'),
(48651, 'https://ror.org/00qnrkz57', 'en', 1, 'https://ror.org/00qnrkz57 Alpine Clinical Research Center'),
(48652, 'https://ror.org/03aene214', 'en', 1, 'https://ror.org/03aene214 California Medical Clinic for Headache'),
(48653, 'https://ror.org/004f2pf04', 'en', 1, 'https://ror.org/004f2pf04 California Retina Consultants'),
(48654, 'https://ror.org/01srvtz98', 'en', 1, 'https://ror.org/01srvtz98 Donor Network West'),
(48655, 'https://ror.org/01qk6rn93', 'en', 1, 'https://ror.org/01qk6rn93 Center for Digestive and Liver Diseases'),
(48656, 'https://ror.org/02hkdst29', 'en', 1, 'https://ror.org/02hkdst29 Arlington Dermatology'),
(48657, 'https://ror.org/03gstka59', 'en', 1, 'https://ror.org/03gstka59 Center for Orthopaedics'),
(48658, 'https://ror.org/02fe4a734', 'en', 1, 'https://ror.org/02fe4a734 Troy Gastroenterology'),
(48659, 'https://ror.org/03dhc8a95', 'en', 1, 'https://ror.org/03dhc8a95 Lothian Sexual Health'),
(48660, 'https://ror.org/00fymps95', 'en', 1, 'https://ror.org/00fymps95 Saint Francis Hospital'),
(48661, 'https://ror.org/05y09kt11', 'en', 1, 'https://ror.org/05y09kt11 Altoona Arthritis and Osteoporosis Center'),
(48662, 'https://ror.org/028a34j67', 'en', 1, 'https://ror.org/028a34j67 Calvary Health Care Bethlehem'),
(48663, 'https://ror.org/022q8ez38', 'en', 1, 'https://ror.org/022q8ez38 Altoona Center for Clinical Research'),
(48664, 'https://ror.org/01ahesd15', 'en', 1, 'https://ror.org/01ahesd15 Center for Prevention and Treatment of Infections'),
(48665, 'https://ror.org/00z7r8y22', 'en', 1, 'https://ror.org/00z7r8y22 Ambulance Victoria'),
(48666, 'https://ror.org/002h1n354', 'en', 1, 'https://ror.org/002h1n354 Partners HealthCare Connected Health'),
(48667, 'https://ror.org/01z37rs75', 'en', 1, 'https://ror.org/01z37rs75 Centers for Behavioral Health'),
(48668, 'https://ror.org/01r2r9d33', 'en', 1, 'https://ror.org/01r2r9d33 AMCR Institute'),
(48669, 'https://ror.org/00eah7161', 'en', 1, 'https://ror.org/00eah7161 Central Coast Nephrology'),
(48670, 'https://ror.org/02wxwcd04', 'en', 1, 'https://ror.org/02wxwcd04 Charlottesville Medical Research'),
(48671, 'https://ror.org/03h9hv091', 'en', 1, 'https://ror.org/03h9hv091 Central Dermatology'),
(48672, 'https://ror.org/04wq6zc77', 'en', 1, 'https://ror.org/04wq6zc77 American Health Network'),
(48673, 'https://ror.org/05epqd940', 'fr', 1, 'https://ror.org/05epqd940 Centre Hospitalier DƩpartemental VendƩe'),
(48674, 'https://ror.org/00m8atr56', 'en', 1, 'https://ror.org/00m8atr56 Canandaigua VA Medical Center'),
(48675, 'https://ror.org/02v0n2r32', 'en', 1, 'https://ror.org/02v0n2r32 Central Florida Eye Institute'),
(48676, 'https://ror.org/03gdsp770', 'en', 1, 'https://ror.org/03gdsp770 American Institute of Research'),
(48677, 'https://ror.org/04n3h0p93', 'en', 1, 'https://ror.org/04n3h0p93 Central Hospital of Zibo ę·„åšåø‚äø­åæƒåŒ»é™¢'),
(48678, 'https://ror.org/01c15bz20', 'en', 1, 'https://ror.org/01c15bz20 Cancer Care Northwest'),
(48679, 'https://ror.org/01p87k189', 'en', 1, 'https://ror.org/01p87k189 American Heart Institute'),
(48680, 'https://ror.org/003np7j89', 'en', 1, 'https://ror.org/003np7j89 American Medical Research'),
(48681, 'https://ror.org/01y2xw046', 'en', 1, 'https://ror.org/01y2xw046 Central Indiana Gastroenterology Group'),
(48682, 'https://ror.org/0179s0197', 'en', 1, 'https://ror.org/0179s0197 Cancer Center of Kansas'),
(48683, 'https://ror.org/01m08pe77', 'en', 1, 'https://ror.org/01m08pe77 Central Kentucky Research Associates'),
(48684, 'https://ror.org/03z222993', 'en', 1, 'https://ror.org/03z222993 Clinic of Hope Clinique de l''EspƩrance'),
(48685, 'https://ror.org/0034wvw32', 'en', 1, 'https://ror.org/0034wvw32 Chesapeake Research Group'),
(48686, 'https://ror.org/037bjx704', 'en', 1, 'https://ror.org/037bjx704 Cancer Care South East'),
(48687, 'https://ror.org/00zzrkp92', 'en', 1, 'https://ror.org/00zzrkp92 Central People''s Hospital of Zhanjiang ę¹›ę±Ÿäø­åæƒäŗŗę°‘åŒ»é™¢'),
(48688, 'https://ror.org/0498rx510', 'fr', 1, 'https://ror.org/0498rx510 Clinique Les Fontaines'),
(48689, 'https://ror.org/02t2fta32', 'en', 1, 'https://ror.org/02t2fta32 Cancer Foundation of India'),
(48690, 'https://ror.org/00jtd2k84', 'en', 1, 'https://ror.org/00jtd2k84 Central Texas Neurology Consultants'),
(48691, 'https://ror.org/05sbk8w28', 'fr', 1, 'https://ror.org/05sbk8w28 Clinique Jules Verne'),
(48692, 'https://ror.org/02zyvys51', 'en', 1, 'https://ror.org/02zyvys51 City Clinical Hospital Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 57'),
(48693, 'https://ror.org/03edm8e08', 'fr', 1, 'https://ror.org/03edm8e08 Centre AzurƩen de CancƩrologie'),
(48694, 'https://ror.org/059fmxd48', 'fr', 1, 'https://ror.org/059fmxd48 Clinique Mutualiste Chirurgicale'),
(48695, 'https://ror.org/03cfq1g41', 'en', 1, 'https://ror.org/03cfq1g41 Cheyenne Regional Medical Center'),
(48696, 'https://ror.org/03m6mkf15', 'fr', 1, 'https://ror.org/03m6mkf15 Centre de Haute Energie'),
(48697, 'https://ror.org/009p3gr97', 'fr', 1, 'https://ror.org/009p3gr97 Clinique Paro Excellence'),
(48698, 'https://ror.org/013sb0f58', 'en', 1, 'https://ror.org/013sb0f58 Claghorn Lesem Research Clinic'),
(48699, 'https://ror.org/00k85zk31', 'en', 1, 'https://ror.org/00k85zk31 Clark and Watson Family Dental Practice'),
(48700, 'https://ror.org/00deg7n09', 'fr', 1, 'https://ror.org/00deg7n09 Centre de RadiothƩrapie Bayard'),
(48701, 'https://ror.org/047y7vc85', 'fr', 1, 'https://ror.org/047y7vc85 Centre de Recherche Dermatologique du QuƩbec MƩtropolitain'),
(48702, 'https://ror.org/051nxta34', 'de', 1, 'https://ror.org/051nxta34 Landesfachhochschule für Gesundheitsberufe Claudiana'),
(48703, 'https://ror.org/052xee859', 'en', 1, 'https://ror.org/052xee859 Clayton Eye Center'),
(48704, 'https://ror.org/0442t6705', 'fr', 1, 'https://ror.org/0442t6705 Centre IntƩgrƩ de SantƩ et de Services Sociaux des Laurentides'),
(48705, 'https://ror.org/01zrgk985', 'en', 1, 'https://ror.org/01zrgk985 ChiangRai Prachanukroh Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ ą¹€ąøŠąøµąø¢ąø‡ąø£ąø²ąø¢ąø›ąø£ąø°ąøŠąø²ąø™ąøøą¹€ąø„ąø£ąø²ąø°ąø«ą¹Œ'),
(48706, 'https://ror.org/05bdc8539', 'en', 1, 'https://ror.org/05bdc8539 Clayton Sleep Institute'),
(48707, 'https://ror.org/01znfak46', 'en', 1, 'https://ror.org/01znfak46 Cumberland Medical Center'),
(48708, 'https://ror.org/027sxqf09', 'fr', 1, 'https://ror.org/027sxqf09 Clinique Saint-Joseph'),
(48709, 'https://ror.org/05gn4rx69', 'no_lang_code', 1, 'https://ror.org/05gn4rx69 Dado Medical'),
(48710, 'https://ror.org/03aqtjw04', 'en', 1, 'https://ror.org/03aqtjw04 Dalian Maternal and Child Health Hospital å¤§čæžåø‚å¦‡äŗ§åŒ»é™¢'),
(48711, 'https://ror.org/02y6vkj44', 'no_lang_code', 1, 'https://ror.org/02y6vkj44 Chicago Cornea Consultants (United States)'),
(48712, 'https://ror.org/051xfzj96', 'en', 1, 'https://ror.org/051xfzj96 Cleveland Eye Clinic'),
(48713, 'https://ror.org/03r3bgz24', 'en', 1, 'https://ror.org/03r3bgz24 Children''s Advocacy Center'),
(48714, 'https://ror.org/05thfh396', 'en', 1, 'https://ror.org/05thfh396 Seventh People''s Hospital of Dalian å¤§čæžåø‚ē¬¬äøƒäŗŗę°‘åŒ»é™¢'),
(48715, 'https://ror.org/009cpej84', 'en', 1, 'https://ror.org/009cpej84 Dallas Surgical Group'),
(48716, 'https://ror.org/05egn8t81', 'fr', 1, 'https://ror.org/05egn8t81 Cliniques du Sud Luxembourg'),
(48717, 'https://ror.org/01aagdf71', 'en', 1, 'https://ror.org/01aagdf71 GI Care for Kids'),
(48718, 'https://ror.org/03ebabq41', 'no_lang_code', 1, 'https://ror.org/03ebabq41 Clinilabs (United States)'),
(48719, 'https://ror.org/00jtq6z81', 'fr', 1, 'https://ror.org/00jtq6z81 Hopitaux Civils de Colmar'),
(48720, 'https://ror.org/03r6kns77', 'fr', 1, 'https://ror.org/03r6kns77 Centre Hospitalier de Rochefort Rochefort General Hospital'),
(48721, 'https://ror.org/05p2st278', 'en', 1, 'https://ror.org/05p2st278 Davidorf Eye Group'),
(48722, 'https://ror.org/00vxrsr56', 'no_lang_code', 1, 'https://ror.org/00vxrsr56 Clinvest (United States)'),
(48723, 'https://ror.org/05dbj3194', 'en', 1, 'https://ror.org/05dbj3194 St. Bernards Clopton Clinic'),
(48724, 'https://ror.org/03w5sqz30', 'en', 1, 'https://ror.org/03w5sqz30 Davidson County Health Department'),
(48725, 'https://ror.org/02qxa1v47', 'fr', 1, 'https://ror.org/02qxa1v47 Centre Hospitalier Esquirol de Limoges'),
(48726, 'https://ror.org/05r5a0r20', 'es', 1, 'https://ror.org/05r5a0r20 ClĆ­nica CES'),
(48727, 'https://ror.org/05a9nb826', 'no_lang_code', 1, 'https://ror.org/05a9nb826 CNS Research (United States)'),
(48728, 'https://ror.org/03befa582', 'fr', 1, 'https://ror.org/03befa582 Centre Hospitalier Gabriel-Martin'),
(48729, 'https://ror.org/030fcrp07', 'es', 1, 'https://ror.org/030fcrp07 Clinica Chicamocha'),
(48730, 'https://ror.org/00e0qzz35', 'en', 1, 'https://ror.org/00e0qzz35 Dean Health Plan'),
(48731, 'https://ror.org/0020ts240', 'en', 1, 'https://ror.org/0020ts240 Coastal Carolina Research Center'),
(48732, 'https://ror.org/03ytpa045', 'fr', 1, 'https://ror.org/03ytpa045 Centre Hospitalier Henri Laborit'),
(48733, 'https://ror.org/04m8yw794', 'en', 1, 'https://ror.org/04m8yw794 DaVita Clinical Research (United States)'),
(48734, 'https://ror.org/04fy00g66', 'en', 1, 'https://ror.org/04fy00g66 Dawes Fretzin Clinical Research Group'),
(48735, 'https://ror.org/03eagt651', 'no_lang_code', 1, 'https://ror.org/03eagt651 Coastal Connecticut Research (United States)'),
(48736, 'https://ror.org/03pxvf904', 'it', 1, 'https://ror.org/03pxvf904 Clinica Mediterranea'),
(48737, 'https://ror.org/0457mvc71', 'en', 1, 'https://ror.org/0457mvc71 Children''s Hospital of Illinois'),
(48738, 'https://ror.org/00bkazd74', 'en', 1, 'https://ror.org/00bkazd74 Michigan Center for Skin Care Research'),
(48739, 'https://ror.org/02nkqtg17', 'en', 1, 'https://ror.org/02nkqtg17 Coborn Cancer Center'),
(48740, 'https://ror.org/028e15a50', 'es', 1, 'https://ror.org/028e15a50 ClĆ­nica Subiza'),
(48741, 'https://ror.org/02s2qzh96', 'fr', 1, 'https://ror.org/02s2qzh96 Centre Jean Bernard'),
(48742, 'https://ror.org/00hq18w20', 'en', 1, 'https://ror.org/00hq18w20 Coeur d Alene Arthritis Clinic'),
(48743, 'https://ror.org/00z9bse70', 'en', 1, 'https://ror.org/00z9bse70 Deaconess Clinic'),
(48744, 'https://ror.org/03efvsk51', 'no_lang_code', 1, 'https://ror.org/03efvsk51 Zemun Hospital'),
(48745, 'https://ror.org/05j7q4z53', 'en', 1, 'https://ror.org/05j7q4z53 Dearborn Orthopedics and Sports Medicine'),
(48746, 'https://ror.org/0363ync48', 'en', 1, 'https://ror.org/0363ync48 Deer Lodge Centre'),
(48747, 'https://ror.org/034a8v770', 'en', 1, 'https://ror.org/034a8v770 Collaborative Neuroscience Network'),
(48748, 'https://ror.org/021bdxd25', 'no_lang_code', 1, 'https://ror.org/021bdxd25 Clinical Inquest Center (United States)'),
(48749, 'https://ror.org/0168sna55', 'en', 1, 'https://ror.org/0168sna55 Clinical Insights'),
(48750, 'https://ror.org/047v0da79', 'en', 1, 'https://ror.org/047v0da79 Denver Arthritis Clinic'),
(48751, 'https://ror.org/015vn2982', 'en', 1, 'https://ror.org/015vn2982 Infectious Disease Consultants'),
(48752, 'https://ror.org/027yebm63', 'no_lang_code', 1, 'https://ror.org/027yebm63 Chilton Medical Center'),
(48753, 'https://ror.org/03c34x898', 'en', 1, 'https://ror.org/03c34x898 Colon and Rectal Surgery Associates'),
(48754, 'https://ror.org/05556yk85', 'en', 1, 'https://ror.org/05556yk85 Colorado Kidney Care'),
(48755, 'https://ror.org/01xyac661', 'en', 1, 'https://ror.org/01xyac661 Colorado Joint Replacement'),
(48756, 'https://ror.org/00ze01782', 'en', 1, 'https://ror.org/00ze01782 Denver Public Health'),
(48757, 'https://ror.org/00f7cza09', 'en', 1, 'https://ror.org/00f7cza09 Clinical Investigation Specialists'),
(48758, 'https://ror.org/00rp4mp63', 'en', 1, 'https://ror.org/00rp4mp63 Chonburi Cancer Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąøŠąø„ąøšąøøąø£ąøµ'),
(48759, 'https://ror.org/03v3gdy33', 'en', 1, 'https://ror.org/03v3gdy33 Clinical Investigations of Texas'),
(48760, 'https://ror.org/05kd6q218', 'en', 1, 'https://ror.org/05kd6q218 Colorado Medical Research Center'),
(48761, 'https://ror.org/049zk2110', 'es', 1, 'https://ror.org/049zk2110 Centro de Retina Médica y Quirúrgica'),
(48762, 'https://ror.org/037rewq44', 'en', 1, 'https://ror.org/037rewq44 CNS Healthcare'),
(48763, 'https://ror.org/04wr5bw31', 'en', 1, 'https://ror.org/04wr5bw31 Colorado Orthopedic Consultants'),
(48764, 'https://ror.org/01fpzaj30', 'en', 1, 'https://ror.org/01fpzaj30 Colorado Retina Center'),
(48765, 'https://ror.org/02xbjar17', 'es', 1, 'https://ror.org/02xbjar17 Centro Oftalmológico Moreiras'),
(48766, 'https://ror.org/026t0qb38', 'en', 1, 'https://ror.org/026t0qb38 Clinical Research Associates of Tidewater'),
(48767, 'https://ror.org/00ej3ta37', 'en', 1, 'https://ror.org/00ej3ta37 Columbia Orthopaedic Group'),
(48768, 'https://ror.org/04g2fst78', 'pl', 1, 'https://ror.org/04g2fst78 InterLab Poznan'),
(48769, 'https://ror.org/04jwn5v63', 'en', 1, 'https://ror.org/04jwn5v63 Clinical Research Associates'),
(48770, 'https://ror.org/02enpyw90', 'en', 1, 'https://ror.org/02enpyw90 Century Health'),
(48771, 'https://ror.org/057skcn66', 'en', 1, 'https://ror.org/057skcn66 Chongqing Jiulongpo People''s Hospital'),
(48772, 'https://ror.org/03deam493', 'fr', 1, 'https://ror.org/03deam493 Centre Hospitalier Annecy Genevois'),
(48773, 'https://ror.org/022nvf535', 'en', 1, 'https://ror.org/022nvf535 People''s Hospital of Kaizhou District é‡åŗ†å¼€åŽæäŗŗę°‘åŒ»é™¢'),
(48774, 'https://ror.org/042bavh06', 'en', 1, 'https://ror.org/042bavh06 Meridien Research'),
(48775, 'https://ror.org/03s410108', 'en', 1, 'https://ror.org/03s410108 OrthoVirginia'),
(48776, 'https://ror.org/029v6mm06', 'en', 1, 'https://ror.org/029v6mm06 Chongqing Three Gorges Central Hospital äø‰å³”äø­åæƒåŒ»é™¢'),
(48777, 'https://ror.org/01chgch18', 'en', 1, 'https://ror.org/01chgch18 Community Clinical Research'),
(48778, 'https://ror.org/03emy9w83', 'en', 1, 'https://ror.org/03emy9w83 Clinical Research Center of Nevada'),
(48779, 'https://ror.org/0446mfw72', 'fr', 1, 'https://ror.org/0446mfw72 Centre Hospitalier de La Rochelle'),
(48780, 'https://ror.org/00vr1yg49', 'en', 1, 'https://ror.org/00vr1yg49 Christian Family Service Centre'),
(48781, 'https://ror.org/056v5p787', 'fr', 1, 'https://ror.org/056v5p787 Centre Hospitalier Saint-Nazaire'),
(48782, 'https://ror.org/04bekvf09', 'en', 1, 'https://ror.org/04bekvf09 Community Research Initiative'),
(48783, 'https://ror.org/048ty4d76', 'en', 1, 'https://ror.org/048ty4d76 Christie''s Place'),
(48784, 'https://ror.org/05eb21k90', 'en', 1, 'https://ror.org/05eb21k90 Clinical Research Consortium'),
(48785, 'https://ror.org/00dadc735', 'en', 1, 'https://ror.org/00dadc735 Clinical Research Consulting'),
(48786, 'https://ror.org/00hzbxp35', 'da', 1, 'https://ror.org/00hzbxp35 Marselisborgcentret'),
(48787, 'https://ror.org/00aestp76', 'en', 1, 'https://ror.org/00aestp76 Compass Research'),
(48788, 'https://ror.org/009ywjj88', 'en', 1, 'https://ror.org/009ywjj88 Clinical Research Institute'),
(48789, 'https://ror.org/0578kzx16', 'en', 1, 'https://ror.org/0578kzx16 Complete Eye Care of Medina'),
(48790, 'https://ror.org/00et47318', 'en', 1, 'https://ror.org/00et47318 Clinical Research of South Florida'),
(48791, 'https://ror.org/03gg5y009', 'en', 1, 'https://ror.org/03gg5y009 Clinical Research of West Florida'),
(48792, 'https://ror.org/021ejmk29', 'en', 1, 'https://ror.org/021ejmk29 Compliant Clinical Research'),
(48793, 'https://ror.org/05mezvj34', 'en', 1, 'https://ror.org/05mezvj34 Comprehensive Clinical Research'),
(48794, 'https://ror.org/01m2t4z13', 'en', 1, 'https://ror.org/01m2t4z13 Clinical Research Solutions'),
(48795, 'https://ror.org/00px51556', 'en', 1, 'https://ror.org/00px51556 Center for Aesthetic Dermatology & Laser Surgery'),
(48796, 'https://ror.org/03np5z244', 'no_lang_code', 1, 'https://ror.org/03np5z244 DermResearch (United States)'),
(48797, 'https://ror.org/0527hjt81', 'en', 1, 'https://ror.org/0527hjt81 Clinical Science Institute'),
(48798, 'https://ror.org/05r04rp73', 'en', 1, 'https://ror.org/05r04rp73 Comprehensive Clinical Trials'),
(48799, 'https://ror.org/01s722583', 'en', 1, 'https://ror.org/01s722583 Clinical Study Center of Asheville'),
(48800, 'https://ror.org/02pkecv52', 'en', 1, 'https://ror.org/02pkecv52 Comprehensive Eye Care'),
(48801, 'https://ror.org/04kanse05', 'en', 1, 'https://ror.org/04kanse05 Clinical Trial Network'),
(48802, 'https://ror.org/047dw3k85', 'en', 1, 'https://ror.org/047dw3k85 Dermatology Associates of Seattle'),
(48803, 'https://ror.org/0312ka630', 'en', 1, 'https://ror.org/0312ka630 Clinical Trials New Zealand'),
(48804, 'https://ror.org/017vjfp21', 'en', 1, 'https://ror.org/017vjfp21 Clinical Trials of Texas'),
(48805, 'https://ror.org/03mekzy91', 'en', 1, 'https://ror.org/03mekzy91 Contraception Research and Development'),
(48806, 'https://ror.org/03362cn11', 'en', 1, 'https://ror.org/03362cn11 Doctors Community Hospital'),
(48807, 'https://ror.org/024f1d020', 'en', 1, 'https://ror.org/024f1d020 Consultants in Neurology'),
(48808, 'https://ror.org/0586ax657', 'en', 1, 'https://ror.org/0586ax657 Dermatology Associates of Tallahassee'),
(48809, 'https://ror.org/026s76z34', 'no_lang_code', 1, 'https://ror.org/026s76z34 Consumer Product Testing Company (United States)'),
(48810, 'https://ror.org/01h5bb625', 'en', 1, 'https://ror.org/01h5bb625 Doctors @ Carindale Mall'),
(48811, 'https://ror.org/02qfkky73', 'en', 1, 'https://ror.org/02qfkky73 COPD Foundation'),
(48812, 'https://ror.org/05xm6n608', 'en', 1, 'https://ror.org/05xm6n608 Dermatology Clinical Research Center of San Antonio'),
(48813, 'https://ror.org/05jh56b79', 'pt', 1, 'https://ror.org/05jh56b79 Coris Medicina AvanƧada'),
(48814, 'https://ror.org/03snkjj14', 'en', 1, 'https://ror.org/03snkjj14 Don Monti Memorial Research Foundation'),
(48815, 'https://ror.org/047wq3n50', 'fr', 1, 'https://ror.org/047wq3n50 Clinique Ambroise ParƩ'),
(48816, 'https://ror.org/023r70v40', 'fr', 1, 'https://ror.org/023r70v40 Clinique Charcot'),
(48817, 'https://ror.org/04jg41g64', 'fr', 1, 'https://ror.org/04jg41g64 Clinique ClƩmentville'),
(48818, 'https://ror.org/024w8hz81', 'en', 1, 'https://ror.org/024w8hz81 Cornea Associates of Texas'),
(48819, 'https://ror.org/03xzdzp97', 'en', 1, 'https://ror.org/03xzdzp97 Corneal Consultants of Colorado'),
(48820, 'https://ror.org/02tm1f187', 'en', 1, 'https://ror.org/02tm1f187 Downtown Women''s Health Care'),
(48821, 'https://ror.org/01mzeb713', 'en', 1, 'https://ror.org/01mzeb713 Cosmetic Laser Dermatology'),
(48822, 'https://ror.org/010htkn64', 'en', 1, 'https://ror.org/010htkn64 Dermatology Institute of Victoria'),
(48823, 'https://ror.org/0543wxy83', 'en', 1, 'https://ror.org/0543wxy83 Dermatology Research Center'),
(48824, 'https://ror.org/02ymhq538', 'nl', 1, 'https://ror.org/02ymhq538 Instituut Verbeeten'),
(48825, 'https://ror.org/03h1vde20', 'en', 1, 'https://ror.org/03h1vde20 Cosmedica'),
(48826, 'https://ror.org/024zgsn52', 'en', 1, 'https://ror.org/024zgsn52 Essex Cardiothoracic Centre'),
(48827, 'https://ror.org/00pk4q491', 'en', 1, 'https://ror.org/00pk4q491 Prism Eye Institute'),
(48828, 'https://ror.org/00bm25r07', 'en', 1, 'https://ror.org/00bm25r07 Clinical Physiology Associates'),
(48829, 'https://ror.org/01ypfvm35', 'nl', 1, 'https://ror.org/01ypfvm35 Dr Kolbach Kliniek'),
(48830, 'https://ror.org/03tm7cr19', 'en', 1, 'https://ror.org/03tm7cr19 Phoenix Medical Research'),
(48831, 'https://ror.org/035jrer59', 'it', 1, 'https://ror.org/035jrer59 Humanitas Gavazzeni'),
(48832, 'https://ror.org/04fzt5y42', 'en', 1, 'https://ror.org/04fzt5y42 Crystal Clinic Orthopedic Center'),
(48833, 'https://ror.org/01ps1fe93', 'en', 1, 'https://ror.org/01ps1fe93 Dr V Seshiah Diabetes Research Institute'),
(48834, 'https://ror.org/00swcah48', 'en', 1, 'https://ror.org/00swcah48 Gift of Hope Organ and Tissue Donor Network'),
(48835, 'https://ror.org/047yek725', 'en', 1, 'https://ror.org/047yek725 Dermatology Specialists'),
(48836, 'https://ror.org/008vra347', 'de', 1, 'https://ror.org/008vra347 DIAKO'),
(48837, 'https://ror.org/04vz87118', 'en', 1, 'https://ror.org/04vz87118 Gift of Life Michigan'),
(48838, 'https://ror.org/03mh6bp35', 'en', 1, 'https://ror.org/03mh6bp35 Dr. Kovil''s Diabetes Care Centre'),
(48839, 'https://ror.org/02ebbs344', 'en', 1, 'https://ror.org/02ebbs344 Dermatology Surgery & Laser Center'),
(48840, 'https://ror.org/011erhx85', 'en', 1, 'https://ror.org/011erhx85 Glaucoma Associates of New York'),
(48841, 'https://ror.org/0204m7391', 'en', 1, 'https://ror.org/0204m7391 Drs. Quinn, Foster & Associates'),
(48842, 'https://ror.org/03we40d69', 'en', 1, 'https://ror.org/03we40d69 Dermatology Treatment & Research Center'),
(48843, 'https://ror.org/05bby3d90', 'en', 1, 'https://ror.org/05bby3d90 Glaucoma Associates of Texas'),
(48844, 'https://ror.org/05afz7j54', 'en', 1, 'https://ror.org/05afz7j54 University Foot & Ankle Institute'),
(48845, 'https://ror.org/051bbf974', 'en', 1, 'https://ror.org/051bbf974 Drug Studies America'),
(48846, 'https://ror.org/03y932z67', 'en', 1, 'https://ror.org/03y932z67 Foothill Family Clinic'),
(48847, 'https://ror.org/02syszr02', 'en', 1, 'https://ror.org/02syszr02 Drug Trials America');
INSERT INTO `rors` VALUES
(48848, 'https://ror.org/0341xp563', 'en', 1, 'https://ror.org/0341xp563 Global Scientific Innovations'),
(48849, 'https://ror.org/02t9aa070', 'en', 1, 'https://ror.org/02t9aa070 Excel Diagnostics Imaging'),
(48850, 'https://ror.org/044qh7c61', 'en', 1, 'https://ror.org/044qh7c61 Good Samaritan Regional Medical Center'),
(48851, 'https://ror.org/03kgyz465', 'de', 1, 'https://ror.org/03kgyz465 Diabetes-Akademie'),
(48852, 'https://ror.org/01rh2et08', 'en', 1, 'https://ror.org/01rh2et08 Dermatology, Laser & Vein Specialists of the Carolinas'),
(48853, 'https://ror.org/04gx6f055', 'en', 1, 'https://ror.org/04gx6f055 Good Samaritan Society'),
(48854, 'https://ror.org/03xerja39', 'no_lang_code', 1, 'https://ror.org/03xerja39 Great Lakes Research Group (United States)'),
(48855, 'https://ror.org/03jmq3a29', 'no_lang_code', 1, 'https://ror.org/03jmq3a29 Excell Research (United States)'),
(48856, 'https://ror.org/0419jw418', 'en', 1, 'https://ror.org/0419jw418 Greater Pittsburgh Orthopaedic Associates'),
(48857, 'https://ror.org/04q1vk257', 'en', 1, 'https://ror.org/04q1vk257 DuPage Mental Health Services'),
(48858, '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'),
(48859, 'https://ror.org/03nkwrm72', 'fr', 1, 'https://ror.org/03nkwrm72 Centre Hospitalier de FougĆØres'),
(48860, 'https://ror.org/002s05q87', 'en', 1, 'https://ror.org/002s05q87 Grekin Skin Institute'),
(48861, 'https://ror.org/0140zhz75', 'en', 1, 'https://ror.org/0140zhz75 Durrie Vision'),
(48862, 'https://ror.org/01m9bsg74', 'en', 1, 'https://ror.org/01m9bsg74 Four Seasons'),
(48863, 'https://ror.org/02xna2753', 'no_lang_code', 1, 'https://ror.org/02xna2753 Extendicare (Canada)'),
(48864, 'https://ror.org/03ns7pw86', 'en', 1, 'https://ror.org/03ns7pw86 Dermatrials Research'),
(48865, 'https://ror.org/02grbwy50', 'en', 1, 'https://ror.org/02grbwy50 Dynamed Clinical Research'),
(48866, 'https://ror.org/01bygr704', 'no_lang_code', 1, 'https://ror.org/01bygr704 Grunberger Diabetes Institute'),
(48867, 'https://ror.org/04vwp4t32', 'hu', 1, 'https://ror.org/04vwp4t32 Fourmed Kft GyógyhÔz'),
(48868, 'https://ror.org/0129d8h54', 'en', 1, 'https://ror.org/0129d8h54 Ear Consultants of Georgia'),
(48869, 'https://ror.org/03tst3378', 'en', 1, 'https://ror.org/03tst3378 Eye Care Associates'),
(48870, 'https://ror.org/02wvbzy96', 'en', 1, 'https://ror.org/02wvbzy96 GSA Research'),
(48871, 'https://ror.org/04k3g6v88', 'en', 1, 'https://ror.org/04k3g6v88 Ear Institute of Chicago'),
(48872, 'https://ror.org/05b05qq44', 'en', 1, 'https://ror.org/05b05qq44 Eye Center of Southern Connecticut'),
(48873, 'https://ror.org/03zzhz546', 'en', 1, 'https://ror.org/03zzhz546 Eye Centers Of Florida'),
(48874, 'https://ror.org/048gafz17', 'en', 1, 'https://ror.org/048gafz17 Ear Medical Group'),
(48875, 'https://ror.org/00fbwv278', 'en', 1, 'https://ror.org/00fbwv278 Liuzhou Maternal and Child Health Hospital ęŸ³å·žåø‚å¦‡å¹¼äæå„é™¢'),
(48876, 'https://ror.org/053yw1360', 'en', 1, 'https://ror.org/053yw1360 Nanxi Mountain Hospital å¹æč„æēŗ³č„æå±±åŒ»é™¢'),
(48877, 'https://ror.org/0379rbe49', 'en', 1, 'https://ror.org/0379rbe49 Eye Surgeons of Indiana'),
(48878, 'https://ror.org/00bvby867', 'en', 1, 'https://ror.org/00bvby867 East Valley Hematology & Oncology'),
(48879, 'https://ror.org/029z6rp26', 'en', 1, 'https://ror.org/029z6rp26 DermDox Dermatology Centers'),
(48880, 'https://ror.org/02wy7f107', 'en', 1, 'https://ror.org/02wy7f107 East Wellington Family Health Team'),
(48881, 'https://ror.org/05h4v5m71', 'en', 1, 'https://ror.org/05h4v5m71 Smith Clinic'),
(48882, 'https://ror.org/01z6cw088', 'en', 1, 'https://ror.org/01z6cw088 Chinese Academy of Medical Sciences Dermatology Hospital'),
(48883, 'https://ror.org/02jqk1764', 'en', 1, 'https://ror.org/02jqk1764 Desert Regional Medical Center'),
(48884, 'https://ror.org/0065dxb90', 'en', 1, 'https://ror.org/0065dxb90 Fairfield Behavioral Health Services'),
(48885, 'https://ror.org/000r83295', 'en', 1, 'https://ror.org/000r83295 Family Allergy and Asthma Research Institute'),
(48886, 'https://ror.org/01gyggx34', 'no_lang_code', 1, 'https://ror.org/01gyggx34 Fukuoka Kinen Hospital ē¦å²”čØ˜åæµē—…é™¢'),
(48887, 'https://ror.org/03gsdfk97', 'en', 1, 'https://ror.org/03gsdfk97 Eastside Comprehensive Medical Center'),
(48888, 'https://ror.org/017fwpp88', 'en', 1, 'https://ror.org/017fwpp88 Ecclesfield GP'),
(48889, 'https://ror.org/02jg1vm67', 'en', 1, 'https://ror.org/02jg1vm67 Diabetes Care & Hormone Clinic'),
(48890, 'https://ror.org/02z2bdj68', 'es', 1, 'https://ror.org/02z2bdj68 Fundació ACE'),
(48891, 'https://ror.org/00nhrdk04', 'en', 1, 'https://ror.org/00nhrdk04 Lucas Research'),
(48892, 'https://ror.org/02kmtme09', 'en', 1, 'https://ror.org/02kmtme09 Diabetes & Endocrinology Specialists'),
(48893, 'https://ror.org/04wnzzd87', 'es', 1, 'https://ror.org/04wnzzd87 ClĆ­nica Foscal Foscal Hospital'),
(48894, 'https://ror.org/02ebjnx89', 'en', 1, 'https://ror.org/02ebjnx89 Diabetes & Endocrine Associates'),
(48895, 'https://ror.org/0530z0775', 'en', 1, 'https://ror.org/0530z0775 Meadows Dental Clinic'),
(48896, 'https://ror.org/00qyrn735', 'en', 1, 'https://ror.org/00qyrn735 Diabetes Care and Research Foundation'),
(48897, 'https://ror.org/019hjez96', 'es', 1, 'https://ror.org/019hjez96 Fundación Reina Isabel'),
(48898, 'https://ror.org/00v1e3m57', 'no_lang_code', 1, 'https://ror.org/00v1e3m57 Futaba clinic åŒč‘‰ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(48899, '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 Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ «Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ клинический Š½Š°ŃƒŃ‡Š½Š¾-практический центр специализированных виГов меГицинской помощи (онкологический)Ā»'),
(48900, 'https://ror.org/02t9yy051', 'en', 1, 'https://ror.org/02t9yy051 Future Search Trials'),
(48901, 'https://ror.org/03egjxh21', 'en', 1, 'https://ror.org/03egjxh21 FXM Research'),
(48902, 'https://ror.org/02getev82', 'en', 1, 'https://ror.org/02getev82 El Camino Urology Medical Group'),
(48903, 'https://ror.org/015hpqr35', 'en', 1, 'https://ror.org/015hpqr35 Gabrail Cancer Center'),
(48904, 'https://ror.org/04p16dr10', 'en', 1, 'https://ror.org/04p16dr10 Diabetes Thyroid Hormone Research Institute'),
(48905, 'https://ror.org/04e7afm38', 'en', 1, 'https://ror.org/04e7afm38 Gainesville Obstetrics & Gynecology'),
(48906, 'https://ror.org/03j4y6x14', 'en', 1, 'https://ror.org/03j4y6x14 Diablo Clinical Research'),
(48907, 'https://ror.org/01vnr7x82', 'de', 1, 'https://ror.org/01vnr7x82 Diabetes-Zentrum Quakenbrück'),
(48908, 'https://ror.org/017fd6822', 'en', 1, 'https://ror.org/017fd6822 Gastroenterology Associates Of Western Michigan'),
(48909, 'https://ror.org/01vst1n89', 'no_lang_code', 1, 'https://ror.org/01vst1n89 Diacon Hospital'),
(48910, 'https://ror.org/008xb1b94', 'de', 1, 'https://ror.org/008xb1b94 Elisabeth-Krankenhaus Essen'),
(48911, 'https://ror.org/031rwv086', 'en', 1, 'https://ror.org/031rwv086 Diagnostics Research Group'),
(48912, 'https://ror.org/04zf2bt80', 'de', 1, 'https://ror.org/04zf2bt80 Diakonie-Klinikum Stuttgart'),
(48913, 'https://ror.org/00xewv188', 'de', 1, 'https://ror.org/00xewv188 Dialysezentrum Potsdam'),
(48914, 'https://ror.org/01gp9ja19', 'en', 1, 'https://ror.org/01gp9ja19 Emory Johns Creek Hospital'),
(48915, 'https://ror.org/01v1rey73', 'no_lang_code', 1, 'https://ror.org/01v1rey73 Pierian Biosciences (United States)'),
(48916, 'https://ror.org/04gka5c82', 'pt', 1, 'https://ror.org/04gka5c82 Hospital Fernandes TƔvora'),
(48917, 'https://ror.org/01yr7qe95', 'en', 1, 'https://ror.org/01yr7qe95 Empire Eye Physicians'),
(48918, 'https://ror.org/03fnkr060', 'no_lang_code', 1, 'https://ror.org/03fnkr060 Endocrine Research Solutions (United States)'),
(48919, 'https://ror.org/00kvc5j94', 'en', 1, 'https://ror.org/00kvc5j94 Gulfcoast Clinical Research Center'),
(48920, 'https://ror.org/042y59x42', 'en', 1, 'https://ror.org/042y59x42 Fertility Care Multan'),
(48921, 'https://ror.org/052zm4082', 'en', 1, 'https://ror.org/052zm4082 Discover Vision Centers'),
(48922, 'https://ror.org/004qa4525', 'en', 1, 'https://ror.org/004qa4525 Endocrinology Northwest'),
(48923, 'https://ror.org/004z1yb80', 'en', 1, 'https://ror.org/004z1yb80 Dishler Laser Institute'),
(48924, 'https://ror.org/0513bka31', 'en', 1, 'https://ror.org/0513bka31 Fertility Center of San Antonio'),
(48925, 'https://ror.org/02fwc3866', 'en', 1, 'https://ror.org/02fwc3866 Gwinnett Dermatology'),
(48926, 'https://ror.org/03n9e5p29', 'no_lang_code', 1, 'https://ror.org/03n9e5p29 Epi-Q (United States)'),
(48927, 'https://ror.org/02y3vvj84', 'ro', 1, 'https://ror.org/02y3vvj84 Spitalul Clinic Judetean de Urgenta Târgu Mureş'),
(48928, 'https://ror.org/0014n6t23', 'fr', 1, 'https://ror.org/0014n6t23 Centre Hospitalier de Roubaix Hospital Center De Roubaix'),
(48929, 'https://ror.org/03dma0w34', 'no_lang_code', 1, 'https://ror.org/03dma0w34 Stem Cell Technology (Taiwan)'),
(48930, 'https://ror.org/03d9hbe08', 'en', 1, 'https://ror.org/03d9hbe08 Harvard Eye Associates'),
(48931, 'https://ror.org/0343e3s97', 'no_lang_code', 1, 'https://ror.org/0343e3s97 Epic Imaging (United States)'),
(48932, 'https://ror.org/004vnpm81', 'sv', 1, 'https://ror.org/004vnpm81 HƤssleholms Sjukhus'),
(48933, 'https://ror.org/03h07zp96', 'de', 1, 'https://ror.org/03h07zp96 Evangelisches Krankenhaus Alsterdorf'),
(48934, 'https://ror.org/0433rew55', 'de', 1, 'https://ror.org/0433rew55 Doctors at the Skin and Laser Centre Haut- und Lasercentrum Potsdam'),
(48935, 'https://ror.org/04ph8tc17', 'no_lang_code', 1, 'https://ror.org/04ph8tc17 Finnair (Finland)'),
(48936, 'https://ror.org/00phamx97', 'no_lang_code', 1, 'https://ror.org/00phamx97 Haber Dermatology and Cosmetic Surgery (United States)'),
(48937, 'https://ror.org/0240vc720', 'nl', 1, 'https://ror.org/0240vc720 Havenziekenhuis Rotterdam'),
(48938, 'https://ror.org/03eeky579', 'en', 1, 'https://ror.org/03eeky579 Horizons Clinical Research Center'),
(48939, 'https://ror.org/0384v4x96', 'en', 1, 'https://ror.org/0384v4x96 Shearwater Health'),
(48940, 'https://ror.org/05k22fj16', 'en', 1, 'https://ror.org/05k22fj16 Hammoud Hospital University Medical Center مستؓفى Ų­Ł…ŁˆŲÆ'),
(48941, 'https://ror.org/057c61d28', 'en', 1, 'https://ror.org/057c61d28 Georgia Cancer Specialists'),
(48942, 'https://ror.org/01pys9003', 'pl', 1, 'https://ror.org/01pys9003 Hospicjum im. Ks. Eugeniusza Dutkiewicza SAC'),
(48943, 'https://ror.org/03cc5yw72', 'no_lang_code', 1, 'https://ror.org/03cc5yw72 Health Awareness (United States)'),
(48944, 'https://ror.org/043d34r22', 'en', 1, 'https://ror.org/043d34r22 Fleming Island Center For Clinical Research'),
(48945, 'https://ror.org/01ypy9x82', 'en', 1, 'https://ror.org/01ypy9x82 Georgia Center for Women'),
(48946, 'https://ror.org/02qk1yb72', 'en', 1, 'https://ror.org/02qk1yb72 Health Intervention and Technology Assessment Program ą¹‚ąø„ąø£ąø‡ąøąø²ąø£ąø›ąø£ąø°ą¹€ąø”ąø“ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹ąø„ąø°ąø™ą¹‚ąø¢ąøšąø²ąø¢ąø”ą¹‰ąø²ąø™ąøŖąøøąø‚ąø ąø²ąøž'),
(48947, 'https://ror.org/032e62r85', 'en', 1, 'https://ror.org/032e62r85 Hamzavi Dermatology'),
(48948, 'https://ror.org/02dqxsj77', 'en', 1, 'https://ror.org/02dqxsj77 Health Protection and Research Organisation'),
(48949, 'https://ror.org/01sxaaw11', 'en', 1, 'https://ror.org/01sxaaw11 Florida Center for Gastroenterology'),
(48950, 'https://ror.org/00fz5gq57', 'en', 1, 'https://ror.org/00fz5gq57 Georgia Clinical Research'),
(48951, 'https://ror.org/039293a32', 'en', 1, 'https://ror.org/039293a32 Florida Fertility Institute'),
(48952, 'https://ror.org/00sxgd769', 'en', 1, 'https://ror.org/00sxgd769 Hear and Say'),
(48953, 'https://ror.org/007pp1604', 'en', 1, 'https://ror.org/007pp1604 Harbin Clinic'),
(48954, 'https://ror.org/03hxb5v03', 'en', 1, 'https://ror.org/03hxb5v03 Georgia Institute for Plastic Surgery'),
(48955, 'https://ror.org/04x2wfk77', 'en', 1, 'https://ror.org/04x2wfk77 Downie Harper and Shanks Dental Practice'),
(48956, 'https://ror.org/05tq1bh21', 'no_lang_code', 1, 'https://ror.org/05tq1bh21 Hospital Bandeirantes'),
(48957, 'https://ror.org/04wyb0a08', 'en', 1, 'https://ror.org/04wyb0a08 AdventHealth Daytona Beach'),
(48958, 'https://ror.org/03yd2ta47', 'en', 1, 'https://ror.org/03yd2ta47 Private Hospital & Heart Center Varde'),
(48959, 'https://ror.org/0205d0r45', 'en', 1, 'https://ror.org/0205d0r45 Avera Heart Hospital'),
(48960, 'https://ror.org/01nxwmg26', 'en', 1, 'https://ror.org/01nxwmg26 Georgia Urology'),
(48961, 'https://ror.org/027hs4a27', 'en', 1, 'https://ror.org/027hs4a27 Heartland Clinical Research'),
(48962, 'https://ror.org/05h8tj134', 'en', 1, 'https://ror.org/05h8tj134 Blanca Paloma Hospital'),
(48963, 'https://ror.org/02d0gmv36', 'no_lang_code', 1, 'https://ror.org/02d0gmv36 Kingmed Diagnostics'),
(48964, 'https://ror.org/024vd1y77', 'en', 1, 'https://ror.org/024vd1y77 Heartland Research Associates'),
(48965, 'https://ror.org/02e3qt588', 'en', 1, 'https://ror.org/02e3qt588 Roosevelt Hospital'),
(48966, 'https://ror.org/04wn5rx73', 'en', 1, 'https://ror.org/04wn5rx73 Getwell Hospital and Research Institute'),
(48967, 'https://ror.org/01smtb607', 'es', 1, 'https://ror.org/01smtb607 Hospital ClĆ­nica Benidorm'),
(48968, 'https://ror.org/05csfs312', 'ca', 1, 'https://ror.org/05csfs312 Hospital Sant Jaume de Calella'),
(48969, 'https://ror.org/00qs7xz30', 'en', 1, 'https://ror.org/00qs7xz30 IGO Medical Group'),
(48970, 'https://ror.org/019m52y27', 'en', 1, 'https://ror.org/019m52y27 SĆ£o Camilo Hospital'),
(48971, 'https://ror.org/01ft76595', 'en', 1, 'https://ror.org/01ft76595 Hejian People''s Hospital ę²³é—“åø‚äŗŗę°‘åŒ»é™¢'),
(48972, 'https://ror.org/01spkt797', 'de', 1, 'https://ror.org/01spkt797 Ihre-Radiologen'),
(48973, 'https://ror.org/04ncnj403', 'de', 1, 'https://ror.org/04ncnj403 HELIOS Albert-Schweitzer-Klinik Northeim'),
(48974, 'https://ror.org/05pjfxx59', 'en', 1, 'https://ror.org/05pjfxx59 Illinois Bone and Joint Institute'),
(48975, 'https://ror.org/039j5gk75', 'pt', 1, 'https://ror.org/039j5gk75 Instituto de Medicina AvanƧada'),
(48976, 'https://ror.org/03kecdv70', 'en', 1, 'https://ror.org/03kecdv70 International Clinical Research Institute'),
(48977, 'https://ror.org/04qbxyj42', 'pt', 1, 'https://ror.org/04qbxyj42 Hospital de Base'),
(48978, 'https://ror.org/04fwr3777', 'en', 1, 'https://ror.org/04fwr3777 International Dermatology Research'),
(48979, 'https://ror.org/03adra252', 'en', 1, 'https://ror.org/03adra252 Indiana Clinical Trials Center'),
(48980, 'https://ror.org/003f4j224', 'en', 1, 'https://ror.org/003f4j224 Henderson Behavioral Health'),
(48981, 'https://ror.org/04t180b28', 'en', 1, 'https://ror.org/04t180b28 Indiana Spine Group'),
(48982, 'https://ror.org/01981pe95', 'en', 1, 'https://ror.org/01981pe95 International Rescue Committee'),
(48983, 'https://ror.org/05y345c41', 'es', 1, 'https://ror.org/05y345c41 Hospital Jerez Puerta del Sur'),
(48984, 'https://ror.org/019se1k35', 'en', 1, 'https://ror.org/019se1k35 Iowa Orthopaedic Center'),
(48985, 'https://ror.org/00scfzf83', 'es', 1, 'https://ror.org/00scfzf83 Hospital Universitario Dexeus'),
(48986, 'https://ror.org/00zh4qk67', 'es', 1, 'https://ror.org/00zh4qk67 Hospital Universitario de Santander'),
(48987, 'https://ror.org/01gptg397', 'en', 1, 'https://ror.org/01gptg397 Robert Cizik Eye Clinic'),
(48988, 'https://ror.org/03nk3j490', 'pt', 1, 'https://ror.org/03nk3j490 Hospital Vila Franca de Xira'),
(48989, 'https://ror.org/00zq17y52', 'es', 1, 'https://ror.org/00zq17y52 Hospital Universitario del Tajo Hospital del Tajo'),
(48990, 'https://ror.org/059b87n81', 'fr', 1, 'https://ror.org/059b87n81 Infirmerie Protestante'),
(48991, 'https://ror.org/0009v8r26', 'no_lang_code', 1, 'https://ror.org/0009v8r26 Inflamax Research (Canada)'),
(48992, 'https://ror.org/00tbnyh02', 'en', 1, 'https://ror.org/00tbnyh02 Hermitage Medicentres'),
(48993, 'https://ror.org/04dzaw261', 'pt', 1, 'https://ror.org/04dzaw261 Hospital do Coração'),
(48994, 'https://ror.org/01v1fj170', 'en', 1, 'https://ror.org/01v1fj170 Infusion Associates'),
(48995, 'https://ror.org/03cy8qt72', 'en', 1, 'https://ror.org/03cy8qt72 Heze Municipal Hospital'),
(48996, 'https://ror.org/05rcqmt52', 'en', 1, 'https://ror.org/05rcqmt52 Injury Care Medical Center'),
(48997, 'https://ror.org/030qmj755', 'no_lang_code', 1, 'https://ror.org/030qmj755 Higashi Takarazuka Satoh Hospital'),
(48998, 'https://ror.org/03yqk8w89', 'en', 1, 'https://ror.org/03yqk8w89 Houston Eye Associates'),
(48999, 'https://ror.org/01ff05746', 'es', 1, 'https://ror.org/01ff05746 Hospital Doctor JosƩ Molina Orosa'),
(49000, 'https://ror.org/0486db050', 'no_lang_code', 1, 'https://ror.org/0486db050 Innovaderm (Canada)'),
(49001, 'https://ror.org/02q44wp02', 'en', 1, 'https://ror.org/02q44wp02 Highmark Blue Cross Blue Shield'),
(49002, 'https://ror.org/0055r4662', 'en', 1, 'https://ror.org/0055r4662 Houston Foot and Ankle Care'),
(49003, 'https://ror.org/042fam363', 'en', 1, 'https://ror.org/042fam363 Innovations for Poverty Action'),
(49004, 'https://ror.org/052t3p256', 'fr', 1, 'https://ror.org/052t3p256 HƓpital Joseph-Ducuing'),
(49005, 'https://ror.org/05jb62w23', 'en', 1, 'https://ror.org/05jb62w23 Houston Perinatal Associates'),
(49006, 'https://ror.org/054r3wx31', 'no_lang_code', 1, 'https://ror.org/054r3wx31 Hill Top Research (United States)'),
(49007, 'https://ror.org/02p1ne648', 'en', 1, 'https://ror.org/02p1ne648 Hillcrest Clinical Research'),
(49008, 'https://ror.org/04ct6nr93', 'en', 1, 'https://ror.org/04ct6nr93 Innovations for Poverty Action'),
(49009, 'https://ror.org/02ym95m10', 'no_lang_code', 1, 'https://ror.org/02ym95m10 Hospital e Maternidade Celso Pierro'),
(49010, 'https://ror.org/048jha534', 'en', 1, 'https://ror.org/048jha534 Hillcrest Family Practice'),
(49011, 'https://ror.org/041bkd737', 'en', 1, 'https://ror.org/041bkd737 Huai''an City Fourth People''s Hospital ę·®å®‰åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(49012, 'https://ror.org/01tpcjr87', 'en', 1, 'https://ror.org/01tpcjr87 Innovative Clinical Research'),
(49013, 'https://ror.org/04mm94t86', 'no_lang_code', 1, 'https://ror.org/04mm94t86 Isomark (United States)'),
(49014, 'https://ror.org/013k6aa84', 'en', 1, 'https://ror.org/013k6aa84 Innovative Research of West Florida'),
(49015, 'https://ror.org/00xabh388', 'en', 1, 'https://ror.org/00xabh388 Hubei Provincial Hospital of Traditional Chinese Medicine ę¹–åŒ—ēœäø­é†«é™¢'),
(49016, 'https://ror.org/01p35qm90', 'de', 1, 'https://ror.org/01p35qm90 HNO-Praxis'),
(49017, 'https://ror.org/0149t5h43', 'es', 1, 'https://ror.org/0149t5h43 Hospital General Dr Aurelio Valdivieso'),
(49018, 'https://ror.org/0551a9d91', 'en', 1, 'https://ror.org/0551a9d91 Insight Therapeutics'),
(49019, 'https://ror.org/04517sd05', 'es', 1, 'https://ror.org/04517sd05 Hospital General Universitario Los Arcos del Mar Menor'),
(49020, 'https://ror.org/02xhgjz70', 'en', 1, 'https://ror.org/02xhgjz70 Hubei Zhongshan Hospital ę¹–åŒ—ēœäø­å±±åŒ»é™¢'),
(49021, 'https://ror.org/029yrp127', 'da', 1, 'https://ror.org/029yrp127 Hudklinikken'),
(49022, 'https://ror.org/03m2d4v09', 'en', 1, 'https://ror.org/03m2d4v09 Hudson Dermatology'),
(49023, 'https://ror.org/05ws0rr53', 'en', 1, 'https://ror.org/05ws0rr53 Hoopes Vision'),
(49024, 'https://ror.org/03qpq8w95', 'en', 1, 'https://ror.org/03qpq8w95 Family Beginnings'),
(49025, 'https://ror.org/04v43ea29', 'fr', 1, 'https://ror.org/04v43ea29 Institut Hospitalier Franco Britannique'),
(49026, 'https://ror.org/00t2yvm83', 'en', 1, 'https://ror.org/00t2yvm83 Hope Research Institute'),
(49027, 'https://ror.org/02nsw7d06', 'en', 1, 'https://ror.org/02nsw7d06 IVI Murcia Clinic'),
(49028, 'https://ror.org/00swxwg31', 'es', 1, 'https://ror.org/00swxwg31 Hospital Laboral Solimat'),
(49029, 'https://ror.org/03cqs6978', 'no_lang_code', 1, 'https://ror.org/03cqs6978 Clinlogix (Germany)'),
(49030, 'https://ror.org/00s7mhw17', 'pt', 1, 'https://ror.org/00s7mhw17 Hospital Leforte'),
(49031, 'https://ror.org/054ztez58', 'en', 1, 'https://ror.org/054ztez58 Institute for Female Pelvic Medicine and Reconstructive Surgery'),
(49032, 'https://ror.org/026qe1m81', 'fr', 1, 'https://ror.org/026qe1m81 HƓpital de Morges'),
(49033, 'https://ror.org/045xnj057', 'no_lang_code', 1, 'https://ror.org/045xnj057 J&S Studies'),
(49034, 'https://ror.org/04qyzam39', 'fr', 1, 'https://ror.org/04qyzam39 HƓpital PrivƩ Jacques Cartier'),
(49035, 'https://ror.org/00k5pj069', 'es', 1, 'https://ror.org/00k5pj069 Hospital General Nuestra SeƱora del Prado'),
(49036, 'https://ror.org/02jsxnc12', 'de', 1, 'https://ror.org/02jsxnc12 Klinikum Arnsberg'),
(49037, 'https://ror.org/00w877a33', 'en', 1, 'https://ror.org/00w877a33 Little Company of Mary Hospital'),
(49038, 'https://ror.org/04b8vmp10', 'en', 1, 'https://ror.org/04b8vmp10 JƦren District Psychiatric Centre JƦren distriktspsykiatriske senter'),
(49039, 'https://ror.org/03s2yrh28', 'en', 1, 'https://ror.org/03s2yrh28 Little Rock Family Practice Clinic'),
(49040, 'https://ror.org/03qjaaq62', 'en', 1, 'https://ror.org/03qjaaq62 Institute Of Perinatology Obstetrics And Gynaecology ՀՀ Ō±Õ† ÕŗÕ„Ö€Õ«Õ¶Õ”ÕæÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ«, Õ“Õ”Õ¶ÕÆÕ”Õ¢Õ”Ö€Õ±ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ„Ö‚ Õ£Õ«Õ¶Õ„ÕÆÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ«'),
(49041, 'https://ror.org/043a43z64', 'en', 1, 'https://ror.org/043a43z64 Liuyang City Maternal and Child Health Hospital ęµé˜³åø‚å¦‡å¹¼äæå„é™¢'),
(49042, 'https://ror.org/00er4d216', 'en', 1, 'https://ror.org/00er4d216 Liuzhou General Hospital ęŸ³å·žåø‚äŗŗę°‘åŒ»é™¢'),
(49043, 'https://ror.org/02xes6w96', 'pt', 1, 'https://ror.org/02xes6w96 Instituo CUF Porto'),
(49044, 'https://ror.org/055ybk671', 'en', 1, 'https://ror.org/055ybk671 Japan Breast Cancer Research Group ę—„ęœ¬ä¹³ē™Œē ”ē©¶ć‚°ćƒ«ćƒ¼ćƒ—'),
(49045, 'https://ror.org/00p8vgm81', 'es', 1, 'https://ror.org/00p8vgm81 Hospital Quirónsalud Sagrado Corazón'),
(49046, 'https://ror.org/02z9ybv55', 'pt', 1, 'https://ror.org/02z9ybv55 Instituto de Cardiologia de Santa Catarina'),
(49047, 'https://ror.org/03qjmyd44', 'en', 1, 'https://ror.org/03qjmyd44 Jean Brown Research'),
(49048, 'https://ror.org/01w6hrf59', 'pt', 1, 'https://ror.org/01w6hrf59 Hospital Regional de São José Dr. Homero de Miranda Gomes'),
(49049, 'https://ror.org/05rpr2102', 'en', 1, 'https://ror.org/05rpr2102 Jehangir Clinical development Centre'),
(49050, 'https://ror.org/01gfcex64', 'es', 1, 'https://ror.org/01gfcex64 Instituto de Ciencia y Medicina Genómica'),
(49051, 'https://ror.org/04r0gp612', 'en', 1, 'https://ror.org/04r0gp612 Neurological Surgery'),
(49052, 'https://ror.org/05taycr33', 'en', 1, 'https://ror.org/05taycr33 Long Island Skin Cancer and Dermatologic Surgery'),
(49053, 'https://ror.org/037sy5j20', 'en', 1, 'https://ror.org/037sy5j20 KNI Southwest Michigan Imaging Center'),
(49054, 'https://ror.org/00q8djh14', 'en', 1, 'https://ror.org/00q8djh14 Jewell Plastic Surgery Center'),
(49055, 'https://ror.org/0156j5s68', 'en', 1, 'https://ror.org/0156j5s68 Cancer Hospital Lopburi ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąø„ąøžąøšąøøąø£ąøµ'),
(49056, 'https://ror.org/027f56t09', 'en', 1, 'https://ror.org/027f56t09 Jining Traditional Chinese Medicine Hospital ęµŽå®åø‚äø­åŒ»é™¢'),
(49057, 'https://ror.org/023jg3g40', 'en', 1, 'https://ror.org/023jg3g40 Jewett Orthopaedic Clinic'),
(49058, 'https://ror.org/05ba87b21', 'en', 1, 'https://ror.org/05ba87b21 Jewish Association Serving the Aging'),
(49059, 'https://ror.org/011jgpb07', 'fr', 1, 'https://ror.org/011jgpb07 Centre Hospitalier de Bretagne Sud'),
(49060, 'https://ror.org/0516vxk09', 'en', 1, 'https://ror.org/0516vxk09 Jilin Maternity and Child Health Care Hospital å‰ęž—åø‚å¦‡å¹¼äæå„é™¢'),
(49061, 'https://ror.org/057b7mv80', 'en', 1, 'https://ror.org/057b7mv80 Los Alamitos Medical Center'),
(49062, 'https://ror.org/004p54v36', 'en', 1, 'https://ror.org/004p54v36 Jinzhou Central Hospital'),
(49063, 'https://ror.org/01s24yr42', 'en', 1, 'https://ror.org/01s24yr42 Korean Society of Critical Care Medicine ėŒ€ķ•œģ¤‘ķ™˜ģžģ˜ķ•™ķšŒ'),
(49064, 'https://ror.org/00x01fm48', 'es', 1, 'https://ror.org/00x01fm48 Instituto de Radiomedicina'),
(49065, 'https://ror.org/046f99n88', 'es', 1, 'https://ror.org/046f99n88 Fundación Kovacs'),
(49066, 'https://ror.org/04ddjg212', 'en', 1, 'https://ror.org/04ddjg212 Jewish Child & Family Services'),
(49067, 'https://ror.org/03kzc9a65', 'en', 1, 'https://ror.org/03kzc9a65 Lotus Clinical Research'),
(49068, 'https://ror.org/01pxm4a45', 'en', 1, 'https://ror.org/01pxm4a45 Kozlovsky Delay & Winter Eye Consultants'),
(49069, 'https://ror.org/01rkjnh80', 'en', 1, 'https://ror.org/01rkjnh80 Samatvam Endocrinology Diabetes Centre'),
(49070, 'https://ror.org/056serj42', 'ms', 1, 'https://ror.org/056serj42 KPJ Ampang Puteri Specialist Hospital'),
(49071, 'https://ror.org/056tx3q55', 'en', 1, 'https://ror.org/056tx3q55 Kraff Eye Institute'),
(49072, 'https://ror.org/05d89kr76', 'de', 1, 'https://ror.org/05d89kr76 Johannes Wesling Klinikum Minden'),
(49073, 'https://ror.org/020x80477', 'no_lang_code', 1, 'https://ror.org/020x80477 Jianan Mental Hospital'),
(49074, 'https://ror.org/054r7w343', 'en', 1, 'https://ror.org/054r7w343 John-Kenyon'),
(49075, 'https://ror.org/00q0pf015', 'de', 1, 'https://ror.org/00q0pf015 Krankenhaus vom Roten Kreuz Red Cross Hospital'),
(49076, 'https://ror.org/02kra6808', 'en', 1, 'https://ror.org/02kra6808 Jiangmen Wuyi Traditional Chinese Medicine Hospital äŗ”é‚‘äø­åŒ»é™¢'),
(49077, 'https://ror.org/05nds5y03', 'no_lang_code', 1, 'https://ror.org/05nds5y03 Johnson County Clin-Trials (United States)'),
(49078, 'https://ror.org/010vz1m70', 'en', 1, 'https://ror.org/010vz1m70 Jiangning District of Nanjing Chinese Medicine Hospital ę±Ÿå®åŒŗäø­åŒ»é™¢'),
(49079, 'https://ror.org/003dkgb76', 'en', 1, 'https://ror.org/003dkgb76 Kresge Eye Institute'),
(49080, 'https://ror.org/0446qd735', 'en', 1, 'https://ror.org/0446qd735 Jothydev''s Diabetes and Research Center'),
(49081, 'https://ror.org/01pg9bv14', 'pt', 1, 'https://ror.org/01pg9bv14 Hospital Haroldo JuaƧaba'),
(49082, 'https://ror.org/04k1gqg30', 'en', 1, 'https://ror.org/04k1gqg30 Shalby Hospitals'),
(49083, 'https://ror.org/02hg8mx81', 'en', 1, 'https://ror.org/02hg8mx81 Centro Comunitario Juan Diego'),
(49084, 'https://ror.org/00bz0ap63', 'en', 1, 'https://ror.org/00bz0ap63 Kurosawa Hospital 黒澤病院'),
(49085, 'https://ror.org/029y72c12', 'en', 1, 'https://ror.org/029y72c12 Juvenile Bipolar Research Foundation'),
(49086, 'https://ror.org/01kypm263', 'en', 1, 'https://ror.org/01kypm263 Kyungpook National University Medical Center'),
(49087, 'https://ror.org/010xk1v64', 'de', 1, 'https://ror.org/010xk1v64 Klinik Schongau'),
(49088, 'https://ror.org/04r1rka16', 'en', 1, 'https://ror.org/04r1rka16 Metro Urology'),
(49089, 'https://ror.org/03egnwz74', 'de', 1, 'https://ror.org/03egnwz74 Krankenhaus Reinbek - Startseite'),
(49090, 'https://ror.org/05y0mgv66', 'en', 1, 'https://ror.org/05y0mgv66 PMG Research'),
(49091, 'https://ror.org/01qa8mn55', 'en', 1, 'https://ror.org/01qa8mn55 Taiyuan Maternity and Child Care Hospital å¤ŖåŽŸåø‚å¦‡å¹¼äæå„é™¢'),
(49092, 'https://ror.org/0356gcm38', 'de', 1, 'https://ror.org/0356gcm38 Krankenhaus Brixen'),
(49093, 'https://ror.org/01npzgy86', 'en', 1, 'https://ror.org/01npzgy86 Lutheran Medical Group'),
(49094, 'https://ror.org/00y21a678', 'en', 1, 'https://ror.org/00y21a678 Metroplex Clinical Research Center'),
(49095, 'https://ror.org/02e97hq31', 'de', 1, 'https://ror.org/02e97hq31 Krankenhaus Meran'),
(49096, 'https://ror.org/02taaxx56', 'en', 1, 'https://ror.org/02taaxx56 Maternal and Child Health Hospital of Sichuan Province å››å·ēœå¦‡å¹¼äæå„é™¢'),
(49097, 'https://ror.org/05dzndt41', 'en', 1, 'https://ror.org/05dzndt41 Metropolitan Asian Family Services'),
(49098, 'https://ror.org/0165xkg98', 'en', 1, 'https://ror.org/0165xkg98 Lynde Centre for Dermatology'),
(49099, 'https://ror.org/03y8emt10', 'en', 1, 'https://ror.org/03y8emt10 Lyndhurst Gynecologic Associates'),
(49100, 'https://ror.org/007vhjq80', 'en', 1, 'https://ror.org/007vhjq80 Maternal and Child Health Hospital of Xinjiang Uygur Autonomous Region ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗå¦‡å¹¼äæå„é™¢'),
(49101, 'https://ror.org/05nfdhr48', 'en', 1, 'https://ror.org/05nfdhr48 Maternal and Child Health Hospital of Xuzhou å¾å·žåø‚å¦‡å¹¼äæå„é™¢'),
(49102, 'https://ror.org/0280q1024', 'en', 1, 'https://ror.org/0280q1024 Kaiser Permanente Roseville Medical Center'),
(49103, 'https://ror.org/012cyrk91', 'en', 1, 'https://ror.org/012cyrk91 Michigan CardioVascular Institute'),
(49104, 'https://ror.org/05rkr5a10', 'en', 1, 'https://ror.org/05rkr5a10 M.V. Hospital for Diabetes and Diabetes Research Centre'),
(49105, 'https://ror.org/01c5q0c82', 'en', 1, 'https://ror.org/01c5q0c82 Yunnan Maternal and Child Health äŗ‘å—ēœå¦‡å¹¼äæå„é™¢'),
(49106, 'https://ror.org/05fgbny35', 'en', 1, 'https://ror.org/05fgbny35 Matthew''s Friends'),
(49107, 'https://ror.org/05qwxaq58', 'en', 1, 'https://ror.org/05qwxaq58 Lampang Cancer Hospital'),
(49108, 'https://ror.org/04gxyj147', 'en', 1, 'https://ror.org/04gxyj147 M S Ramaiah Memorial Hospital ą²°ą²¾ą²®ą²Æą³ą²Æ ą²øą³ą²®ą²¾ą²°ą²• ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(49109, 'https://ror.org/02ph01924', 'no_lang_code', 1, 'https://ror.org/02ph01924 Lampang Hospital'),
(49110, 'https://ror.org/03mvv8049', 'en', 1, 'https://ror.org/03mvv8049 Karl Bremer Hospital'),
(49111, 'https://ror.org/02r0vmn14', 'no_lang_code', 1, 'https://ror.org/02r0vmn14 Kamineni Hospitals'),
(49112, 'https://ror.org/032m10r53', 'fr', 1, 'https://ror.org/032m10r53 Centre Hospitalier Lannion Trestel'),
(49113, 'https://ror.org/05x3ned27', 'en', 1, 'https://ror.org/05x3ned27 Mid Illinois Hematology and Oncology Associates'),
(49114, 'https://ror.org/04rgsag55', 'en', 1, 'https://ror.org/04rgsag55 Main Line Health'),
(49115, 'https://ror.org/05sb4hv45', 'en', 1, 'https://ror.org/05sb4hv45 Lawrence General Hospital'),
(49116, 'https://ror.org/04pd4jr17', 'en', 1, 'https://ror.org/04pd4jr17 Barbara Bush Children’s Hospital'),
(49117, 'https://ror.org/02r408872', 'en', 1, 'https://ror.org/02r408872 Middle Country Endocrinology'),
(49118, 'https://ror.org/02nfn6153', 'en', 1, 'https://ror.org/02nfn6153 Maine Research Associates'),
(49119, 'https://ror.org/00q5sq874', 'fr', 1, 'https://ror.org/00q5sq874 Centre de RƩadaptation Cardiaque Les Grands PrƩs'),
(49120, 'https://ror.org/03zawah80', 'en', 1, 'https://ror.org/03zawah80 Maloney Vision Institute'),
(49121, 'https://ror.org/003ajzy34', 'no_lang_code', 1, 'https://ror.org/003ajzy34 ERG Holding Company (United States)'),
(49122, 'https://ror.org/02tx5s423', 'en', 1, 'https://ror.org/02tx5s423 Manhattan Medical Research'),
(49123, 'https://ror.org/03vt3fq09', 'en', 1, 'https://ror.org/03vt3fq09 Affiliated Hospital of Liaoning University of Traditional Chinese Medicine č¾½å®ēœäø­åŒ»é™¢'),
(49124, 'https://ror.org/00y7zxb51', 'en', 1, 'https://ror.org/00y7zxb51 Manna Research'),
(49125, 'https://ror.org/02swf6979', 'de', 1, 'https://ror.org/02swf6979 Solothurner SpitƤler'),
(49126, 'https://ror.org/01j36ak87', 'en', 1, 'https://ror.org/01j36ak87 Mansfield Orthopaedics'),
(49127, 'https://ror.org/0552rpn97', 'en', 1, 'https://ror.org/0552rpn97 Midwest Eye Center'),
(49128, 'https://ror.org/03qq7fj62', 'en', 1, 'https://ror.org/03qq7fj62 Maple Leaf Medical Clinic'),
(49129, 'https://ror.org/02cwjh447', 'en', 1, 'https://ror.org/02cwjh447 Juravinski Cancer Centre'),
(49130, 'https://ror.org/04n8zn025', 'en', 1, 'https://ror.org/04n8zn025 Liberty Laser Eye Center'),
(49131, 'https://ror.org/00xxqd436', 'en', 1, 'https://ror.org/00xxqd436 Midwest Fertility Specialists'),
(49132, 'https://ror.org/03dbk9e81', 'en', 1, 'https://ror.org/03dbk9e81 Maria Eleonora Hospital'),
(49133, 'https://ror.org/01y7px869', 'no_lang_code', 1, 'https://ror.org/01y7px869 Med Center'),
(49134, 'https://ror.org/04mq3gn83', 'en', 1, 'https://ror.org/04mq3gn83 Midwest Institute for Clinical Research'),
(49135, 'https://ror.org/04nae0247', 'nl', 1, 'https://ror.org/04nae0247 Libra Revalidatie & Audiologie'),
(49136, 'https://ror.org/0126fd303', 'en', 1, 'https://ror.org/0126fd303 Midwest Therapeutic Endoscopy'),
(49137, 'https://ror.org/040g15c17', 'pl', 1, 'https://ror.org/040g15c17 Szpital Kliniczny Dzieciątka Jezus'),
(49138, 'https://ror.org/04r1y3g77', 'en', 1, 'https://ror.org/04r1y3g77 Lice Solutions Resource Network'),
(49139, 'https://ror.org/00d2v8j14', 'ro', 1, 'https://ror.org/00d2v8j14 Spitalului Clinic de Urgență pentru Copii Maria Sklodowska Curie'),
(49140, 'https://ror.org/033ngjs02', 'de', 1, 'https://ror.org/033ngjs02 MigrƤne Klinik Kƶnigstein'),
(49141, 'https://ror.org/00s8fj384', 'en', 1, 'https://ror.org/00s8fj384 Life Quality Resources'),
(49142, 'https://ror.org/00mra6j45', 'en', 1, 'https://ror.org/00mra6j45 MedaPhase'),
(49143, 'https://ror.org/04k4knw56', 'en', 1, 'https://ror.org/04k4knw56 LifeWorks Northwest'),
(49144, 'https://ror.org/04cb0cm64', 'pl', 1, 'https://ror.org/04cb0cm64 Wojewódzki Szpital Obserwacyjno-Zakaźny im. Tadeusza Browicza w Bydgoszczy'),
(49145, 'https://ror.org/01p231980', 'en', 1, 'https://ror.org/01p231980 Mike O''Callaghan Federal Medical Center'),
(49146, 'https://ror.org/047y84421', 'en', 1, 'https://ror.org/047y84421 Medex Healthcare Research'),
(49147, 'https://ror.org/05bv6q633', 'en', 1, 'https://ror.org/05bv6q633 Katzen Eye Care & Laser Center'),
(49148, 'https://ror.org/0496g2a89', 'en', 1, 'https://ror.org/0496g2a89 America’s Job Center of California'),
(49149, 'https://ror.org/00tzd7r06', 'en', 1, 'https://ror.org/00tzd7r06 Lighthouse Guild'),
(49150, 'https://ror.org/03p0xnn24', 'en', 1, 'https://ror.org/03p0xnn24 Mind Australia'),
(49151, 'https://ror.org/01wm82e23', 'en', 1, 'https://ror.org/01wm82e23 Medical Advanced Pain Specialists'),
(49152, 'https://ror.org/02rdgsh90', 'en', 1, 'https://ror.org/02rdgsh90 Lincoln County Health Department'),
(49153, 'https://ror.org/04rn24t38', 'en', 1, 'https://ror.org/04rn24t38 Martin Diagnostic Clinic'),
(49154, 'https://ror.org/01rt6cd77', 'en', 1, 'https://ror.org/01rt6cd77 Keiki O Ka ā€˜ Āina Family Learning Centers'),
(49155, 'https://ror.org/057bn5g61', 'sv', 1, 'https://ror.org/057bn5g61 Lindesbergs lasarett'),
(49156, 'https://ror.org/00jfvgs31', 'en', 1, 'https://ror.org/00jfvgs31 Medical Center Ophthalmology Associates'),
(49157, 'https://ror.org/053wha491', 'en', 1, 'https://ror.org/053wha491 Bon Secours Mary Immaculate Hospital'),
(49158, 'https://ror.org/03ceh9q73', 'en', 1, 'https://ror.org/03ceh9q73 N.N. Alexandrov National Cancer Centre'),
(49159, 'https://ror.org/00t60x856', 'en', 1, 'https://ror.org/00t60x856 Minnesota Orthopedic Sports Medicine Institute'),
(49160, 'https://ror.org/01vvgpy65', 'en', 1, 'https://ror.org/01vvgpy65 Maryland Dermatology Laser Skin and Vein Institute'),
(49161, 'https://ror.org/03nfnpg30', 'en', 1, 'https://ror.org/03nfnpg30 North Central Organized Regionally For Total Health'),
(49162, 'https://ror.org/00c3eq612', 'en', 1, 'https://ror.org/00c3eq612 Maryland Brain, Spine + Pain'),
(49163, 'https://ror.org/042tmw509', 'no_lang_code', 1, 'https://ror.org/042tmw509 NRR Hospital'),
(49164, 'https://ror.org/05jwkar19', 'en', 1, 'https://ror.org/05jwkar19 Nakornping Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø™ąø„ąø£ąøžąø“ąø‡ąø„ą¹Œ ąøˆąø±ąø‡ąø«ąø§ąø±ąø”ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(49165, 'https://ror.org/04fr3hk40', 'no_lang_code', 1, 'https://ror.org/04fr3hk40 KGK Synergize (Canada)'),
(49166, 'https://ror.org/032cjpr90', 'en', 1, 'https://ror.org/032cjpr90 Naples Anesthesia & Physician Associates'),
(49167, 'https://ror.org/0298vzs36', 'en', 1, 'https://ror.org/0298vzs36 Medical Park Gaziantep Hospital'),
(49168, 'https://ror.org/02wgt4y52', 'en', 1, 'https://ror.org/02wgt4y52 New England Organ Bank'),
(49169, 'https://ror.org/015brpm77', 'en', 1, 'https://ror.org/015brpm77 MNJ Institute Of Oncology and Regional Cancer Centre'),
(49170, 'https://ror.org/04g7j1r38', 'en', 1, 'https://ror.org/04g7j1r38 Medical Research Associates'),
(49171, 'https://ror.org/00n478750', 'en', 1, 'https://ror.org/00n478750 New Hope Clinical Research'),
(49172, 'https://ror.org/05vnb7y75', 'en', 1, 'https://ror.org/05vnb7y75 New Mexico Cancer Care Alliance'),
(49173, 'https://ror.org/03tsamb44', 'en', 1, 'https://ror.org/03tsamb44 New River Valley Research Institute'),
(49174, 'https://ror.org/04v5wp242', 'en', 1, 'https://ror.org/04v5wp242 New West Sports Medicine and Orthopedic Surgery'),
(49175, 'https://ror.org/03h7v3958', 'en', 1, 'https://ror.org/03h7v3958 Model Clinical Research'),
(49176, 'https://ror.org/01b5j6r07', 'en', 1, 'https://ror.org/01b5j6r07 Nash County Health Department'),
(49177, 'https://ror.org/0280mwm89', 'en', 1, 'https://ror.org/0280mwm89 Molokai Community Health Center'),
(49178, 'https://ror.org/038gt8318', 'no_lang_code', 1, 'https://ror.org/038gt8318 KiloCoach (Austria)'),
(49179, 'https://ror.org/02e518y78', 'en', 1, 'https://ror.org/02e518y78 New York Laser and Skin Care'),
(49180, 'https://ror.org/01vec3g34', 'en', 1, 'https://ror.org/01vec3g34 Nashville Medical Research Institute'),
(49181, 'https://ror.org/05syrg433', 'en', 1, 'https://ror.org/05syrg433 Nashville Oncology Associates'),
(49182, 'https://ror.org/02w915f84', 'no_lang_code', 1, 'https://ror.org/02w915f84 King-Maceyko Dermatology Associates'),
(49183, 'https://ror.org/024wgaf87', 'en', 1, 'https://ror.org/024wgaf87 Mood Disorders Association of British Columbia'),
(49184, 'https://ror.org/05e497m36', 'en', 1, 'https://ror.org/05e497m36 Medicines Evaluation Unit'),
(49185, 'https://ror.org/01sr0yp41', 'en', 1, 'https://ror.org/01sr0yp41 New York Oncology Hematology'),
(49186, 'https://ror.org/01bd1z477', 'en', 1, 'https://ror.org/01bd1z477 Leeds, Grenville & Lanark District Health Unit'),
(49187, 'https://ror.org/03ddkvp86', 'en', 1, 'https://ror.org/03ddkvp86 National Clinical Research'),
(49188, 'https://ror.org/055cmzr24', 'en', 1, 'https://ror.org/055cmzr24 MaxCure Hospitals'),
(49189, 'https://ror.org/0472fnh69', 'sv', 1, 'https://ror.org/0472fnh69 Mora lasarett'),
(49190, 'https://ror.org/00ez4mt38', 'en', 1, 'https://ror.org/00ez4mt38 Central Ohio Radiation Oncology'),
(49191, 'https://ror.org/00dcbjx19', 'en', 1, 'https://ror.org/00dcbjx19 Mortimer Surgery'),
(49192, 'https://ror.org/00zxygw58', 'en', 1, 'https://ror.org/00zxygw58 National Foundation for Fertility Research'),
(49193, 'https://ror.org/03crx5092', 'no_lang_code', 1, 'https://ror.org/03crx5092 Nexus Clinical Research (Canada)'),
(49194, 'https://ror.org/000wnz761', 'en', 1, 'https://ror.org/000wnz761 Moscow Clinical Scientific Center Москва Центра клинических исслеГований'),
(49195, 'https://ror.org/05gh2jr89', 'no_lang_code', 1, 'https://ror.org/05gh2jr89 NewEnergy'),
(49196, 'https://ror.org/01mj4k378', 'en', 1, 'https://ror.org/01mj4k378 Medicort Sports & Orthopedic Care'),
(49197, 'https://ror.org/04nwcm011', 'no_lang_code', 1, 'https://ror.org/04nwcm011 NVision Eye Centers (United States)'),
(49198, 'https://ror.org/05r0sm904', 'en', 1, 'https://ror.org/05r0sm904 Nightingale Hospital'),
(49199, 'https://ror.org/004n4vj97', 'en', 1, 'https://ror.org/004n4vj97 Northwest Medical Rehabilitation'),
(49200, 'https://ror.org/026wnn461', 'en', 1, 'https://ror.org/026wnn461 Mediroyal Prevenciós Központ Mediroyal Prevention Center'),
(49201, 'https://ror.org/0359v5r48', 'no_lang_code', 1, 'https://ror.org/0359v5r48 Nini Hospital'),
(49202, 'https://ror.org/03kmp0p37', 'en', 1, 'https://ror.org/03kmp0p37 MedSol Clinical Research Center'),
(49203, 'https://ror.org/02hef5r03', 'no_lang_code', 1, 'https://ror.org/02hef5r03 Osaka Nishi Clinic å¤§é˜Ŗč„æć‚ÆćƒŖćƒ‹ćƒƒ'),
(49204, 'https://ror.org/00n8szr38', 'en', 1, 'https://ror.org/00n8szr38 Mott Childrens Health Center'),
(49205, 'https://ror.org/02qw2fp57', 'en', 1, 'https://ror.org/02qw2fp57 MedVadis Research'),
(49206, 'https://ror.org/03dmmqc37', 'en', 1, 'https://ror.org/03dmmqc37 Moundview Memorial Hospital and Clinics'),
(49207, 'https://ror.org/03h143w08', 'pl', 1, 'https://ror.org/03h143w08 NZOZ Centrum Alergologii'),
(49208, 'https://ror.org/04ttatz50', 'en', 1, 'https://ror.org/04ttatz50 Mount Farm Surgery'),
(49209, 'https://ror.org/04vkepj11', 'pl', 1, 'https://ror.org/04vkepj11 NZOZ Medi-Spatz'),
(49210, 'https://ror.org/027xxcs87', 'en', 1, 'https://ror.org/027xxcs87 Nordic Lymphoma Group'),
(49211, 'https://ror.org/03j249425', 'en', 1, 'https://ror.org/03j249425 Mount Medical Centre'),
(49212, 'https://ror.org/03rxcr397', 'no_lang_code', 1, 'https://ror.org/03rxcr397 O&O Alpan (United States)'),
(49213, 'https://ror.org/01wsvqq22', 'en', 1, 'https://ror.org/01wsvqq22 Memorial Hermann The Woodlands Hospital'),
(49214, 'https://ror.org/05end5z77', 'en', 1, 'https://ror.org/05end5z77 Memorial Orthopaedic Surgical Group'),
(49215, 'https://ror.org/00m2e6n43', 'en', 1, 'https://ror.org/00m2e6n43 National Retail Federation'),
(49216, 'https://ror.org/05f0w5759', 'en', 1, 'https://ror.org/05f0w5759 Norman Regional Health System'),
(49217, 'https://ror.org/01wwv4x50', 'en', 1, 'https://ror.org/01wwv4x50 Mount Vernon Cancer Centre'),
(49218, 'https://ror.org/038gt6e80', 'en', 1, 'https://ror.org/038gt6e80 OASIS Clinic'),
(49219, 'https://ror.org/05svfe466', 'en', 1, 'https://ror.org/05svfe466 Mount Vernon Clinical Research'),
(49220, 'https://ror.org/01mvx0t15', 'en', 1, 'https://ror.org/01mvx0t15 Lake OB/GYN Associates of Mid-Florida'),
(49221, 'https://ror.org/05hevnw21', 'en', 1, 'https://ror.org/05hevnw21 MARS Memory-Health Network'),
(49222, 'https://ror.org/04q6mrp48', 'es', 1, 'https://ror.org/04q6mrp48 Ocumed Clinica Oftalmologica'),
(49223, 'https://ror.org/013t78522', 'en', 1, 'https://ror.org/013t78522 Memory Enhancement Center of America'),
(49224, 'https://ror.org/035yn3c54', 'en', 1, 'https://ror.org/035yn3c54 Northeast Medical Research Associates'),
(49225, 'https://ror.org/046z18h28', 'en', 1, 'https://ror.org/046z18h28 Mount Carmel East'),
(49226, 'https://ror.org/04sjz5865', 'en', 1, 'https://ror.org/04sjz5865 North Carolina Clinical Research'),
(49227, 'https://ror.org/04yqmzq68', 'en', 1, 'https://ror.org/04yqmzq68 Memphis Health Center'),
(49228, 'https://ror.org/02xcf7b11', 'en', 1, 'https://ror.org/02xcf7b11 Neami National'),
(49229, 'https://ror.org/020vyhe78', 'en', 1, 'https://ror.org/020vyhe78 Ohnishi Neurological Center å¤§č„æč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(49230, 'https://ror.org/02mphet60', 'en', 1, 'https://ror.org/02mphet60 North East Ambulance Service NHS Foundation Trust'),
(49231, 'https://ror.org/03bwyr571', 'en', 1, 'https://ror.org/03bwyr571 Mental Illness Fellowship'),
(49232, 'https://ror.org/03h18h913', 'en', 1, 'https://ror.org/03h18h913 North Jersey Endocrine Consultants'),
(49233, 'https://ror.org/02j479041', 'en', 1, 'https://ror.org/02j479041 Oklahoma Heart Hospital'),
(49234, 'https://ror.org/05vwr6z89', 'en', 1, 'https://ror.org/05vwr6z89 Mercy Angiography Unit'),
(49235, 'https://ror.org/0536g5z46', 'en', 1, 'https://ror.org/0536g5z46 International Network of Health Promoting Hospitals & Health Services'),
(49236, 'https://ror.org/02pevq096', 'en', 1, 'https://ror.org/02pevq096 Multiple Sclerosis Center Of Northeastern New York'),
(49237, 'https://ror.org/04f142133', 'en', 1, 'https://ror.org/04f142133 North Shore Diabetes and Endocrine Associates'),
(49238, 'https://ror.org/03ftrgs19', 'en', 1, 'https://ror.org/03ftrgs19 Oklahoma Otolaryngology Associates'),
(49239, 'https://ror.org/0171xqb77', 'en', 1, 'https://ror.org/0171xqb77 Mercy Hospital'),
(49240, 'https://ror.org/05csn7t20', 'en', 1, 'https://ror.org/05csn7t20 Fairfield Hospital'),
(49241, 'https://ror.org/04hw5vb27', 'en', 1, 'https://ror.org/04hw5vb27 Omega Medical Research'),
(49242, 'https://ror.org/03hgnab62', 'en', 1, 'https://ror.org/03hgnab62 Meridian Clinical Research'),
(49243, 'https://ror.org/04hrzse50', 'en', 1, 'https://ror.org/04hrzse50 Myers Street Family Medical Practice'),
(49244, 'https://ror.org/05ydgps70', 'en', 1, 'https://ror.org/05ydgps70 North Toronto Eye Care'),
(49245, 'https://ror.org/00x3xjq33', 'en', 1, 'https://ror.org/00x3xjq33 Mesa Fire and Medical Department'),
(49246, 'https://ror.org/01xvnnv03', 'en', 1, 'https://ror.org/01xvnnv03 Omni Eye Services'),
(49247, 'https://ror.org/013rqb250', 'en', 1, 'https://ror.org/013rqb250 St. David’s HealthCare'),
(49248, 'https://ror.org/02pcrrj33', 'en', 1, 'https://ror.org/02pcrrj33 Peters Medical Research'),
(49249, 'https://ror.org/01a2yyy59', 'en', 1, 'https://ror.org/01a2yyy59 North Central Cancer Treatment Group'),
(49250, 'https://ror.org/04tpen147', 'en', 1, 'https://ror.org/04tpen147 Pflugerville Independent School District'),
(49251, 'https://ror.org/00sby6b11', 'no_lang_code', 1, 'https://ror.org/00sby6b11 Oncocare (Switzerland)'),
(49252, 'https://ror.org/00g0x9d29', 'it', 1, 'https://ror.org/00g0x9d29 Ospedali Riuniti di Foggia'),
(49253, 'https://ror.org/0084hyx75', 'en', 1, 'https://ror.org/0084hyx75 North Valley Eye Medical Group'),
(49254, 'https://ror.org/05a1nps39', 'no_lang_code', 1, 'https://ror.org/05a1nps39 New Life Scientific (United States)'),
(49255, 'https://ror.org/04mkp1z42', 'en', 1, 'https://ror.org/04mkp1z42 Netcare Unitas Hospital'),
(49256, 'https://ror.org/00n1s5967', 'en', 1, 'https://ror.org/00n1s5967 Philadelphia Institute of Dermatology'),
(49257, 'https://ror.org/01htgmk28', 'en', 1, 'https://ror.org/01htgmk28 NeuroDevelopment Center'),
(49258, 'https://ror.org/046vm5p14', 'en', 1, 'https://ror.org/046vm5p14 Oncology Specialists'),
(49259, 'https://ror.org/056t5vv75', 'en', 1, 'https://ror.org/056t5vv75 King Mongkut Memorial Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ąøˆąø±ąø‡ąø«ąø§ąø±ąø”ą¹€ąøžąøŠąø£ąøšąøøąø£ąøµ'),
(49260, 'https://ror.org/01s33dn56', 'no_lang_code', 1, 'https://ror.org/01s33dn56 Oncotherapeutics (United States)'),
(49261, 'https://ror.org/056zmsz35', 'en', 1, 'https://ror.org/056zmsz35 Northeast Baptist Hospital'),
(49262, 'https://ror.org/0236xjz69', 'en', 1, 'https://ror.org/0236xjz69 Physician Care Clinical Research'),
(49263, 'https://ror.org/05wqwpj81', 'en', 1, 'https://ror.org/05wqwpj81 University Cancer and Blood Center'),
(49264, 'https://ror.org/00eh6xk55', 'de', 1, 'https://ror.org/00eh6xk55 Klinikum Altenburger Land'),
(49265, 'https://ror.org/041g1ry61', 'eu', 1, 'https://ror.org/041g1ry61 Onkologikoa'),
(49266, 'https://ror.org/04k3g6751', 'en', 1, 'https://ror.org/04k3g6751 Northeastern Eye Institute'),
(49267, 'https://ror.org/033bgzt54', 'en', 1, 'https://ror.org/033bgzt54 Neurology Associates'),
(49268, 'https://ror.org/05ne0gd95', 'en', 1, 'https://ror.org/05ne0gd95 Neurology, Inc'),
(49269, 'https://ror.org/01vvfz714', 'en', 1, 'https://ror.org/01vvfz714 McLaren Northern Michigan'),
(49270, 'https://ror.org/01j4pjp70', 'en', 1, 'https://ror.org/01j4pjp70 Ophthalmic Consultants of Long Island'),
(49271, 'https://ror.org/00qd7n243', 'en', 1, 'https://ror.org/00qd7n243 Owensboro Dermatology Associates'),
(49272, 'https://ror.org/05jbhfv03', 'en', 1, 'https://ror.org/05jbhfv03 Ophthalmology Associates (United States)'),
(49273, 'https://ror.org/03gjxr006', 'en', 1, 'https://ror.org/03gjxr006 Northwest Behavioral Medicine'),
(49274, 'https://ror.org/01wkpqc56', 'en', 1, 'https://ror.org/01wkpqc56 Northwest Clinical Trials'),
(49275, 'https://ror.org/00dbv2839', 'en', 1, 'https://ror.org/00dbv2839 Ophthalmology Consultants'),
(49276, 'https://ror.org/02jrfr034', 'en', 1, 'https://ror.org/02jrfr034 Northwest Eye Surgeons'),
(49277, 'https://ror.org/05n2x7017', 'en', 1, 'https://ror.org/05n2x7017 Oxford Fertility'),
(49278, 'https://ror.org/04p1m3617', 'en', 1, 'https://ror.org/04p1m3617 Neurospine Institute Medical Group'),
(49279, 'https://ror.org/04eh49149', 'en', 1, 'https://ror.org/04eh49149 Optimed Eye and Laser Clinic'),
(49280, 'https://ror.org/04smbh054', 'en', 1, 'https://ror.org/04smbh054 New England Center for Clinical Research'),
(49281, 'https://ror.org/025xp7q94', 'en', 1, 'https://ror.org/025xp7q94 Pinnacle Orthopedics'),
(49282, 'https://ror.org/001q2kp78', 'en', 1, 'https://ror.org/001q2kp78 Orange Coast Memorial Medical Center'),
(49283, 'https://ror.org/02mgz7255', 'en', 1, 'https://ror.org/02mgz7255 Pacific Clinical Research'),
(49284, 'https://ror.org/01naky322', 'no_lang_code', 1, 'https://ror.org/01naky322 Pinnacle Trials (United States)'),
(49285, 'https://ror.org/02h8mhp51', 'en', 1, 'https://ror.org/02h8mhp51 Pittsburgh Ear Associates'),
(49286, 'https://ror.org/012z5s763', 'ca', 1, 'https://ror.org/012z5s763 Pius Hospital de Valls'),
(49287, 'https://ror.org/02smc8550', 'en', 1, 'https://ror.org/02smc8550 Pacific Coast Imaging'),
(49288, 'https://ror.org/03avbdx23', 'en', 1, 'https://ror.org/03avbdx23 Pius Hospital Oldenburg'),
(49289, 'https://ror.org/01wx55d31', 'en', 1, 'https://ror.org/01wx55d31 Pulmonary and Allergy Associates'),
(49290, 'https://ror.org/02wzwfh06', 'en', 1, 'https://ror.org/02wzwfh06 Oregon Center for Clinical Investigation'),
(49291, 'https://ror.org/048qnxy85', 'en', 1, 'https://ror.org/048qnxy85 Pulmonary Associates'),
(49292, 'https://ror.org/03n07ce29', 'en', 1, 'https://ror.org/03n07ce29 Pacific Heart Institute'),
(49293, 'https://ror.org/03n09s827', 'en', 1, 'https://ror.org/03n09s827 Planned Parenthood'),
(49294, 'https://ror.org/0290pyd61', 'en', 1, 'https://ror.org/0290pyd61 Oregon Dermatology & Research Center'),
(49295, 'https://ror.org/021mpp443', 'en', 1, 'https://ror.org/021mpp443 Qihe People''s Hospital é½ę²³äŗŗę°‘åŒ»é™¢'),
(49296, 'https://ror.org/03v0zfc19', 'en', 1, 'https://ror.org/03v0zfc19 Quality Research'),
(49297, 'https://ror.org/04058yw12', 'en', 1, 'https://ror.org/04058yw12 Advanced Sleep Medicine Services'),
(49298, 'https://ror.org/04z0j1529', 'en', 1, 'https://ror.org/04z0j1529 Pact Atlanta'),
(49299, 'https://ror.org/01mfcg760', 'no_lang_code', 1, 'https://ror.org/01mfcg760 Quantum Experimental (Spain)'),
(49300, 'https://ror.org/03m027021', 'en', 1, 'https://ror.org/03m027021 Oregon Medical Research Center'),
(49301, 'https://ror.org/02v3jvj44', 'en', 1, 'https://ror.org/02v3jvj44 Parish Dermatology'),
(49302, 'https://ror.org/00vzkm750', 'en', 1, 'https://ror.org/00vzkm750 Oregon Weight Loss Surgery'),
(49303, 'https://ror.org/039jj6r78', 'en', 1, 'https://ror.org/039jj6r78 Nuhr Medical Center'),
(49304, 'https://ror.org/00vx8b766', 'en', 1, 'https://ror.org/00vx8b766 Queens Medical Associates'),
(49305, 'https://ror.org/034mtjq62', 'en', 1, 'https://ror.org/034mtjq62 Nova Scotia Cancer Centre');
INSERT INTO `rors` VALUES
(49306, 'https://ror.org/046aqw930', 'en', 1, 'https://ror.org/046aqw930 Pakistan Institute of Learning and Living'),
(49307, 'https://ror.org/003fgkq55', 'en', 1, 'https://ror.org/003fgkq55 Quest Research Institute'),
(49308, 'https://ror.org/05twfsj71', 'en', 1, 'https://ror.org/05twfsj71 Orenburg Regional Clinical Hospital ā„–2'),
(49309, 'https://ror.org/03b6j7b16', 'en', 1, 'https://ror.org/03b6j7b16 Palm Beach Research Center'),
(49310, 'https://ror.org/000x1tr98', 'en', 1, 'https://ror.org/000x1tr98 Orlando Clinical Research Center'),
(49311, 'https://ror.org/02pcvrc50', 'fr', 1, 'https://ror.org/02pcvrc50 Centre Hospitalier de Cornouaille'),
(49312, 'https://ror.org/02cj88v79', 'en', 1, 'https://ror.org/02cj88v79 Orlando Immunology Center'),
(49313, 'https://ror.org/00wqe7q58', 'en', 1, 'https://ror.org/00wqe7q58 Palmetto Clinical Trial Services'),
(49314, 'https://ror.org/04ssk5v02', 'en', 1, 'https://ror.org/04ssk5v02 OrthoGeorgia'),
(49315, 'https://ror.org/03hjfdx24', 'no_lang_code', 1, 'https://ror.org/03hjfdx24 Quotient Clinical (United Kingdom)'),
(49316, 'https://ror.org/01hhs1p93', 'fr', 1, 'https://ror.org/01hhs1p93 Saint Laurent Polyclinique'),
(49317, 'https://ror.org/019cqhg34', 'en', 1, 'https://ror.org/019cqhg34 Palmetto Hematology Oncology'),
(49318, 'https://ror.org/01n6xvd93', 'en', 1, 'https://ror.org/01n6xvd93 Rheumatology Theraputics Medical Center'),
(49319, 'https://ror.org/03ks7ew17', 'en', 1, 'https://ror.org/03ks7ew17 OrthoMaryland'),
(49320, 'https://ror.org/00x72gm71', 'fr', 1, 'https://ror.org/00x72gm71 MaternitƩ Port Royal'),
(49321, 'https://ror.org/058p87465', 'en', 1, 'https://ror.org/058p87465 Rhode Island Blood Center'),
(49322, 'https://ror.org/043zrma75', 'en', 1, 'https://ror.org/043zrma75 Richard H. Weisler M.D P.A. and Associates'),
(49323, 'https://ror.org/01bsbwm24', 'en', 1, 'https://ror.org/01bsbwm24 Palmetto Retina Center'),
(49324, 'https://ror.org/00g652k45', 'en', 1, 'https://ror.org/00g652k45 Orthopaedic Associates of Michigan'),
(49325, 'https://ror.org/00g427679', 'en', 1, 'https://ror.org/00g427679 Richmond Vascular Center'),
(49326, 'https://ror.org/00t0abb25', 'en', 1, 'https://ror.org/00t0abb25 Orthopaedic Center of Vero Beach'),
(49327, 'https://ror.org/02whcyg17', 'en', 1, 'https://ror.org/02whcyg17 Orthopaedic Innovation Centre'),
(49328, 'https://ror.org/05938c493', 'pl', 1, 'https://ror.org/05938c493 Specjalistyczny Szpital im.E.Szczeklika w Tarnowie'),
(49329, 'https://ror.org/038160315', 'en', 1, 'https://ror.org/038160315 Orthopaedic Institute of Henderson'),
(49330, 'https://ror.org/005p42z69', 'en', 1, 'https://ror.org/005p42z69 Panyu Hospital of Chinese Medicine ē•Ŗē¦ŗäø­åŒ»é™¢'),
(49331, 'https://ror.org/05akbpx97', 'en', 1, 'https://ror.org/05akbpx97 RTOG Foundation'),
(49332, 'https://ror.org/00d3w5v70', 'en', 1, 'https://ror.org/00d3w5v70 Prairie Education and Research Cooperative'),
(49333, 'https://ror.org/017704360', 'en', 1, 'https://ror.org/017704360 Ridgeview Medical Center'),
(49334, 'https://ror.org/03wgek846', 'de', 1, 'https://ror.org/03wgek846 Praxis für Hämatologie und Onkologie'),
(49335, 'https://ror.org/03a2xf890', 'en', 1, 'https://ror.org/03a2xf890 Radiology Associates of Albuquerque'),
(49336, 'https://ror.org/03gn6hs29', 'da', 1, 'https://ror.org/03gn6hs29 Ringsted Sygehus'),
(49337, 'https://ror.org/00kz26j88', 'de', 1, 'https://ror.org/00kz26j88 Praxiszentrum OrthopƤdie Unfallchirurgie Nordrhein'),
(49338, 'https://ror.org/05f7htr55', 'nl', 1, 'https://ror.org/05f7htr55 Radiotherapeutisch Instituut Friesland'),
(49339, 'https://ror.org/02tjy3316', 'en', 1, 'https://ror.org/02tjy3316 Rivergate Dermatology Clinical Research Center'),
(49340, 'https://ror.org/02z4gce56', 'en', 1, 'https://ror.org/02z4gce56 Riverhills Healthcare'),
(49341, 'https://ror.org/03bqns596', 'en', 1, 'https://ror.org/03bqns596 Osceola Regional Medical Center'),
(49342, 'https://ror.org/051xm8t15', 'en', 1, 'https://ror.org/051xm8t15 Riverside Clinical Research'),
(49343, 'https://ror.org/020ea8709', 'no_lang_code', 1, 'https://ror.org/020ea8709 Premier Clinical Research (United States)'),
(49344, 'https://ror.org/00m0ms985', 'en', 1, 'https://ror.org/00m0ms985 Rainier Clinical Research Center'),
(49345, 'https://ror.org/03afz7q27', 'en', 1, 'https://ror.org/03afz7q27 RML Specialty Hospital'),
(49346, 'https://ror.org/04p6n2e03', 'en', 1, 'https://ror.org/04p6n2e03 Premier Research Group'),
(49347, 'https://ror.org/02z2kxd64', 'en', 1, 'https://ror.org/02z2kxd64 Premiere Research Institute'),
(49348, 'https://ror.org/046syc687', 'en', 1, 'https://ror.org/046syc687 Rockwood Clinic'),
(49349, 'https://ror.org/03ynhs115', 'en', 1, 'https://ror.org/03ynhs115 Rocky Mountain Cancer Centers'),
(49350, 'https://ror.org/04zypt071', 'en', 1, 'https://ror.org/04zypt071 Rocky Mountain Diabetes and Osteoporosis Center'),
(49351, 'https://ror.org/05dzdeq86', 'es', 1, 'https://ror.org/05dzdeq86 Centro MƩdico Recoletas Paracelso'),
(49352, 'https://ror.org/02zdf9k07', 'en', 1, 'https://ror.org/02zdf9k07 Price Vision Group'),
(49353, 'https://ror.org/04xehp049', 'en', 1, 'https://ror.org/04xehp049 Rocky Mountain Orthopedics'),
(49354, 'https://ror.org/036rgb954', 'de', 1, 'https://ror.org/036rgb954 RoMed Kliniken'),
(49355, 'https://ror.org/008x3rf43', 'en', 1, 'https://ror.org/008x3rf43 Raleigh Neurology Associates'),
(49356, 'https://ror.org/03rrqwf50', 'no_lang_code', 1, 'https://ror.org/03rrqwf50 PAREXEL International (United Kingdom)'),
(49357, 'https://ror.org/03gyv3q15', 'en', 1, 'https://ror.org/03gyv3q15 Park Avenue Dermatology'),
(49358, 'https://ror.org/011bmz187', 'en', 1, 'https://ror.org/011bmz187 Prism Clinical Research'),
(49359, 'https://ror.org/03xjd7698', 'no', 1, 'https://ror.org/03xjd7698 Aleris Rosenborgklinikken'),
(49360, 'https://ror.org/00avbpp35', 'en', 1, 'https://ror.org/00avbpp35 San Fernando Valley Urological Associates'),
(49361, 'https://ror.org/00a4nkb16', 'en', 1, 'https://ror.org/00a4nkb16 Kindred Hospital Rancho'),
(49362, 'https://ror.org/00yd0be35', 'no_lang_code', 1, 'https://ror.org/00yd0be35 Frauenshuh Cancer Center'),
(49363, 'https://ror.org/0339ge880', 'tr', 1, 'https://ror.org/0339ge880 Gƶzde Hastanesi Malatya'),
(49364, 'https://ror.org/005xmvj53', 'en', 1, 'https://ror.org/005xmvj53 Rapid Medical Research'),
(49365, 'https://ror.org/013z34d39', 'en', 1, 'https://ror.org/013z34d39 Employment Development Department'),
(49366, 'https://ror.org/02kwy3g61', 'no_lang_code', 1, 'https://ror.org/02kwy3g61 Cutest Systems (United Kingdom)'),
(49367, 'https://ror.org/028fg3r55', 'en', 1, 'https://ror.org/028fg3r55 Rowden Medical Partnership'),
(49368, 'https://ror.org/01znn6097', 'en', 1, 'https://ror.org/01znn6097 San Juan Oncology Associates'),
(49369, 'https://ror.org/01erkrz38', 'en', 1, 'https://ror.org/01erkrz38 Yenişehir Hospital Ɩzel Yenişehir Hastanesi'),
(49370, 'https://ror.org/02ekmp576', 'en', 1, 'https://ror.org/02ekmp576 Rebound Orthopedics and Neurosurgery'),
(49371, 'https://ror.org/00b66ah84', 'fr', 1, 'https://ror.org/00b66ah84 Centre Hospitalier de Redon'),
(49372, 'https://ror.org/04e5eq320', 'en', 1, 'https://ror.org/04e5eq320 Professional Education and Research Institute'),
(49373, 'https://ror.org/01hp3n521', 'en', 1, 'https://ror.org/01hp3n521 Passport Health'),
(49374, 'https://ror.org/04b3xdy64', 'en', 1, 'https://ror.org/04b3xdy64 Redwood Family Dermatology'),
(49375, 'https://ror.org/02jp56b40', 'en', 1, 'https://ror.org/02jp56b40 PRN of Kansas'),
(49376, 'https://ror.org/00drb8647', 'en', 1, 'https://ror.org/00drb8647 Patel Hospital'),
(49377, 'https://ror.org/03z0fs548', 'en', 1, 'https://ror.org/03z0fs548 Regional Clinical Research'),
(49378, 'https://ror.org/05sw8nz16', 'en', 1, 'https://ror.org/05sw8nz16 Sanford Heart Hospital'),
(49379, 'https://ror.org/01d4h2244', 'en', 1, 'https://ror.org/01d4h2244 Patient Priority Clinical Sites'),
(49380, 'https://ror.org/03srt3k91', 'en', 1, 'https://ror.org/03srt3k91 Regional Urology'),
(49381, 'https://ror.org/00qhfds50', 'no_lang_code', 1, 'https://ror.org/00qhfds50 SanPaTong Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąø±ąø™ąø›ą¹ˆąø²ąø•ąø­ąø‡'),
(49382, 'https://ror.org/011nx7d79', 'en', 1, 'https://ror.org/011nx7d79 Ruth M. Rothstein CORE Center'),
(49383, 'https://ror.org/03sf80053', 'it', 1, 'https://ror.org/03sf80053 Pavia nel Cuore'),
(49384, 'https://ror.org/03f2dkv17', 'en', 1, 'https://ror.org/03f2dkv17 Profil Institute for Clinical Research'),
(49385, 'https://ror.org/020r55g68', 'da', 1, 'https://ror.org/020r55g68 Regionshospitalet Silkeborg'),
(49386, 'https://ror.org/011w7ja64', 'en', 1, 'https://ror.org/011w7ja64 Piedmont Cancer Institute'),
(49387, 'https://ror.org/03jbzvm84', 'en', 1, 'https://ror.org/03jbzvm84 Progressive Clinical Research'),
(49388, 'https://ror.org/051h7x990', 'de', 1, 'https://ror.org/051h7x990 Reha Rheinfelden'),
(49389, 'https://ror.org/024w2fr05', 'pt', 1, 'https://ror.org/024w2fr05 Grupo Santa Casa de Belo Horizonte'),
(49390, 'https://ror.org/05psy1s28', 'en', 1, 'https://ror.org/05psy1s28 Remington-Davis Clinical Research'),
(49391, 'https://ror.org/02w3v2343', 'pt', 1, 'https://ror.org/02w3v2343 Santa Casa de Votuporanga'),
(49392, 'https://ror.org/00hj21c17', 'en', 1, 'https://ror.org/00hj21c17 Pediatric Brain Tumor Consortium'),
(49393, 'https://ror.org/05rr9na10', 'en', 1, 'https://ror.org/05rr9na10 Rwanda Zambia HIV Research Group'),
(49394, 'https://ror.org/053zny898', 'de', 1, 'https://ror.org/053zny898 SAPHIR Radiochirurgie'),
(49395, 'https://ror.org/04e8m0166', 'pt', 1, 'https://ror.org/04e8m0166 Sport Club Corinthians Paulista'),
(49396, 'https://ror.org/01ar3e651', 'en', 1, 'https://ror.org/01ar3e651 Reproductive & Genetic Hospital CITIC-Xiangya äø­äæ”ę¹˜é›…ē”Ÿę®–äøŽé—ä¼ äø“ē§‘åŒ»é™¢ęœ‰é™å…¬åø'),
(49397, 'https://ror.org/04ysex633', 'en', 1, 'https://ror.org/04ysex633 S3 Clinical Research Centers'),
(49398, 'https://ror.org/007yvyg13', 'en', 1, 'https://ror.org/007yvyg13 Reproductive Science Center'),
(49399, 'https://ror.org/00pmgar68', 'en', 1, 'https://ror.org/00pmgar68 Sacco Eye Group'),
(49400, 'https://ror.org/002sqnt54', 'en', 1, 'https://ror.org/002sqnt54 Saint Joseph Medical Center Joliet'),
(49401, 'https://ror.org/02krh4254', 'en', 1, 'https://ror.org/02krh4254 Sadick Dermatology'),
(49402, 'https://ror.org/05kw0cb16', 'en', 1, 'https://ror.org/05kw0cb16 Sadick Research Group'),
(49403, 'https://ror.org/0456zgq34', 'en', 1, 'https://ror.org/0456zgq34 Reprogenetics'),
(49404, 'https://ror.org/05esvmf28', 'en', 1, 'https://ror.org/05esvmf28 Providence Clinical Research'),
(49405, 'https://ror.org/03mr1bw41', 'en', 1, 'https://ror.org/03mr1bw41 Peninsula Orthopedic Associates'),
(49406, 'https://ror.org/053kxry22', 'no_lang_code', 1, 'https://ror.org/053kxry22 Sahyadri Hospital'),
(49407, 'https://ror.org/02kjpfv20', 'en', 1, 'https://ror.org/02kjpfv20 Peninsula Research'),
(49408, 'https://ror.org/02tbtsz30', 'no_lang_code', 1, 'https://ror.org/02tbtsz30 Synexus (United States)'),
(49409, 'https://ror.org/00ptj8t60', 'en', 1, 'https://ror.org/00ptj8t60 Provision Center for Proton Therapy'),
(49410, 'https://ror.org/04mmzs792', 'no_lang_code', 1, 'https://ror.org/04mmzs792 Oncolab (Romania)'),
(49411, 'https://ror.org/02dpn8j41', 'en', 1, 'https://ror.org/02dpn8j41 St. Luke''s Hospital'),
(49412, 'https://ror.org/01s73wp90', 'no_lang_code', 1, 'https://ror.org/01s73wp90 Scheck & Siress (United States)'),
(49413, 'https://ror.org/000qx0g86', 'en', 1, 'https://ror.org/000qx0g86 Psychiatric Medicine Associates'),
(49414, 'https://ror.org/03ba3e568', 'en', 1, 'https://ror.org/03ba3e568 Psych Recovery'),
(49415, 'https://ror.org/01egnsq83', 'fr', 1, 'https://ror.org/01egnsq83 Centre Hospitalier de Saint-Brieuc'),
(49416, 'https://ror.org/04bpt8p43', 'en', 1, 'https://ror.org/04bpt8p43 Shenzhen Luohu People''s Hospital ę·±åœ³ē½—ę¹–åŒŗäŗŗę°‘åŒ»é™¢'),
(49417, 'https://ror.org/027hqk105', 'en', 1, 'https://ror.org/027hqk105 People''s Hospital of Cangzhou ę²§å·žäŗŗę°‘åŒ»é™¢'),
(49418, 'https://ror.org/02byms354', 'fr', 1, 'https://ror.org/02byms354 Centre Hospitalier privƩ Saint GrƩgoire'),
(49419, 'https://ror.org/05crdkd52', 'en', 1, 'https://ror.org/05crdkd52 Sheepcot Medical Centre'),
(49420, 'https://ror.org/001g1zs59', 'en', 1, 'https://ror.org/001g1zs59 Wuhan Dongxihu District People Hospital äøœč„æę¹–åŒŗäŗŗę°‘åŒ»é™¢'),
(49421, 'https://ror.org/04agzm654', 'en', 1, 'https://ror.org/04agzm654 Oyster Point Family Health Center'),
(49422, 'https://ror.org/03wm27n21', 'no_lang_code', 1, 'https://ror.org/03wm27n21 Shenyang 242 Hospital ę²ˆé˜³äŗŒå››äŗŒåŒ»é™¢'),
(49423, 'https://ror.org/014s07b95', 'no_lang_code', 1, 'https://ror.org/014s07b95 Shenyang Anorectal Hospital ę²‰é˜³č‚›é—ØåŒ»é™¢'),
(49424, 'https://ror.org/0021t7t04', 'en', 1, 'https://ror.org/0021t7t04 SeaView Research'),
(49425, 'https://ror.org/00qftst12', 'en', 1, 'https://ror.org/00qftst12 Shenzhen Sixth People''s Hospital ę·±åœ³åø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(49426, 'https://ror.org/05dj4bc96', 'en', 1, 'https://ror.org/05dj4bc96 Sall Research Medical Center'),
(49427, 'https://ror.org/016n28m75', 'pl', 1, 'https://ror.org/016n28m75 NZOZ Dom Sue Ryder'),
(49428, 'https://ror.org/02qar5136', 'en', 1, 'https://ror.org/02qar5136 Respiratory Clinical Trials'),
(49429, 'https://ror.org/04d1vhw60', 'en', 1, 'https://ror.org/04d1vhw60 Rongcheng City People''s Hospital č£ęˆäŗŗę°‘åŒ»é™¢'),
(49430, 'https://ror.org/04t1dgs65', 'en', 1, 'https://ror.org/04t1dgs65 Shepherds Care Foundation'),
(49431, 'https://ror.org/04bvnf226', 'pl', 1, 'https://ror.org/04bvnf226 Samodzielny Publiczny Zakład Opieki Zdrowotnej w Lubartowie'),
(49432, 'https://ror.org/00h5rtk23', 'en', 1, 'https://ror.org/00h5rtk23 Retina Associates of Kentucky'),
(49433, 'https://ror.org/01spdgx23', 'en', 1, 'https://ror.org/01spdgx23 Retina Associates of Western New York'),
(49434, 'https://ror.org/045ekgn88', 'en', 1, 'https://ror.org/045ekgn88 Retina Health Center'),
(49435, 'https://ror.org/04xk91k82', 'en', 1, 'https://ror.org/04xk91k82 Pepose Vision Institute'),
(49436, 'https://ror.org/04hm6wz53', 'en', 1, 'https://ror.org/04hm6wz53 San Diego Cardiac Center'),
(49437, 'https://ror.org/021yx2896', 'en', 1, 'https://ror.org/021yx2896 Retina Institute of Hawaii'),
(49438, 'https://ror.org/051vsps84', 'en', 1, 'https://ror.org/051vsps84 Retina Partners'),
(49439, 'https://ror.org/01fd98w69', 'en', 1, 'https://ror.org/01fd98w69 Perinatal Associates of New Mexico'),
(49440, 'https://ror.org/053fdhz60', 'en', 1, 'https://ror.org/053fdhz60 San Diego Fertility Center'),
(49441, 'https://ror.org/00atbfb07', 'en', 1, 'https://ror.org/00atbfb07 Perio Health Professionals'),
(49442, 'https://ror.org/00py0b751', 'en', 1, 'https://ror.org/00py0b751 Retina Specialists'),
(49443, 'https://ror.org/051gnwf77', 'en', 1, 'https://ror.org/051gnwf77 Retina Specialists of Michigan'),
(49444, 'https://ror.org/02csg2e67', 'en', 1, 'https://ror.org/02csg2e67 Aurora Periodontics and Implant Dentistry'),
(49445, 'https://ror.org/009prea33', 'en', 1, 'https://ror.org/009prea33 Sterling Research Group'),
(49446, 'https://ror.org/02fh40r38', 'en', 1, 'https://ror.org/02fh40r38 Peripheral Vascular Associates'),
(49447, 'https://ror.org/01azwtt17', 'no_lang_code', 1, 'https://ror.org/01azwtt17 Revant (Netherlands)'),
(49448, 'https://ror.org/05kjf3v93', 'en', 1, 'https://ror.org/05kjf3v93 Research Institute of Dallas'),
(49449, 'https://ror.org/004xcq641', 'en', 1, 'https://ror.org/004xcq641 Personal Enhancement Center'),
(49450, 'https://ror.org/00wjx1428', 'no_lang_code', 1, 'https://ror.org/00wjx1428 Ambulance Care (Sweden) AmbulanssjukvƄrden i Storstockholm'),
(49451, 'https://ror.org/057a67e20', 'en', 1, 'https://ror.org/057a67e20 Setshaba Research Centre'),
(49452, 'https://ror.org/034cxfp17', 'en', 1, 'https://ror.org/034cxfp17 Texas Diabetes & Endocrinology'),
(49453, 'https://ror.org/03y0paf51', 'en', 1, 'https://ror.org/03y0paf51 Spaulding Hospital'),
(49454, 'https://ror.org/043sz6670', 'en', 1, 'https://ror.org/043sz6670 Sinclair Dermatology'),
(49455, 'https://ror.org/036qeyz83', 'en', 1, 'https://ror.org/036qeyz83 Stuart Oncology Associates'),
(49456, 'https://ror.org/05dhebt29', 'en', 1, 'https://ror.org/05dhebt29 Gabba Dermatology'),
(49457, 'https://ror.org/01sa13326', 'en', 1, 'https://ror.org/01sa13326 Specialized Dentistry of New York'),
(49458, 'https://ror.org/031tdwf58', 'en', 1, 'https://ror.org/031tdwf58 Texas Diabetes Institute'),
(49459, 'https://ror.org/00z1emh11', 'en', 1, 'https://ror.org/00z1emh11 Suburban Psychiatric Associates'),
(49460, 'https://ror.org/047c69t88', 'en', 1, 'https://ror.org/047c69t88 Texas ENT and Allergy'),
(49461, 'https://ror.org/016vanb16', 'en', 1, 'https://ror.org/016vanb16 Suburban Research Associates'),
(49462, 'https://ror.org/02ketev28', 'en', 1, 'https://ror.org/02ketev28 Texas Oncology'),
(49463, 'https://ror.org/02vjn2106', 'en', 1, 'https://ror.org/02vjn2106 Sioux Falls VA Health Care System'),
(49464, 'https://ror.org/04rfs1719', 'de', 1, 'https://ror.org/04rfs1719 Spital Uster'),
(49465, 'https://ror.org/03exer738', 'en', 1, 'https://ror.org/03exer738 Children’s Foundation'),
(49466, 'https://ror.org/03j2e8162', 'ro', 1, 'https://ror.org/03j2e8162 Spitalul Clinic de Urgență pentru Copii Cluj-Napoca'),
(49467, 'https://ror.org/046zf8j85', 'en', 1, 'https://ror.org/046zf8j85 Skin Care and Laser Physicians of Beverly Hills'),
(49468, 'https://ror.org/045zhv531', 'en', 1, 'https://ror.org/045zhv531 Summit Research Network'),
(49469, 'https://ror.org/03hwa6484', 'en', 1, 'https://ror.org/03hwa6484 Second Peoples Hospital of Shaanxi Province é™•č„æēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(49470, 'https://ror.org/04vjpxa50', 'en', 1, 'https://ror.org/04vjpxa50 Sprim Advanced Life Sciences'),
(49471, 'https://ror.org/04bda0170', 'en', 1, 'https://ror.org/04bda0170 Chinese People ''s Liberation Army No. 85 Hospital 第85医院'),
(49472, 'https://ror.org/00xax6856', 'en', 1, 'https://ror.org/00xax6856 Shanghai Changning Maternity and Infant Health Hospital äøŠęµ·é•æå®åŒŗå¦‡å¹¼äæå„é™¢'),
(49473, 'https://ror.org/01zwas239', 'en', 1, 'https://ror.org/01zwas239 Springfield Neurology Clinical Trials'),
(49474, 'https://ror.org/01b2pxy75', 'de', 1, 'https://ror.org/01b2pxy75 Institut für Psychogerontologie'),
(49475, 'https://ror.org/0246w5s24', 'no_lang_code', 1, 'https://ror.org/0246w5s24 Skin Specialty Dermatology (United States)'),
(49476, 'https://ror.org/00b46ya17', 'en', 1, 'https://ror.org/00b46ya17 Suncoast Clinical Research'),
(49477, 'https://ror.org/00r0rhj09', 'en', 1, 'https://ror.org/00r0rhj09 Southern Sports Leagues'),
(49478, 'https://ror.org/030hgrs40', 'en', 1, 'https://ror.org/030hgrs40 Skin Surgery Medical Group'),
(49479, 'https://ror.org/01vb1qg25', 'en', 1, 'https://ror.org/01vb1qg25 Center For Balanced Living'),
(49480, 'https://ror.org/033mx0906', 'en', 1, 'https://ror.org/033mx0906 St Andrew’s Hospital'),
(49481, 'https://ror.org/04smkn993', 'en', 1, 'https://ror.org/04smkn993 Sundance Clinical Research'),
(49482, 'https://ror.org/05b820q66', 'en', 1, 'https://ror.org/05b820q66 Sky Ridge Medical Center'),
(49483, 'https://ror.org/04jw6ed22', 'en', 1, 'https://ror.org/04jw6ed22 S.L. Raheja Hospital'),
(49484, 'https://ror.org/002tpp543', 'en', 1, 'https://ror.org/002tpp543 Center for Clinical and Cosmetic Research'),
(49485, 'https://ror.org/05fnzzk18', 'no_lang_code', 1, 'https://ror.org/05fnzzk18 Center for Clinical Research (United States)'),
(49486, 'https://ror.org/04v7rn512', 'en', 1, 'https://ror.org/04v7rn512 Sleep Center of Greater Pittsburgh'),
(49487, 'https://ror.org/05bywz149', 'en', 1, 'https://ror.org/05bywz149 Center for Dermatology, Cosmetic & Laser Surgery'),
(49488, 'https://ror.org/037my6387', 'en', 1, 'https://ror.org/037my6387 Sleep Therapy and Research Center'),
(49489, 'https://ror.org/03cvgyy64', 'en', 1, 'https://ror.org/03cvgyy64 Center for Excellence in Eye Care'),
(49490, 'https://ror.org/01hd54v98', 'en', 1, 'https://ror.org/01hd54v98 Sleep Management Institute'),
(49491, 'https://ror.org/02nptez24', 'en', 1, 'https://ror.org/02nptez24 Pudong Medical Center äøŠęµ·åø‚ęµ¦äøœåŒ»é™¢'),
(49492, 'https://ror.org/04bxj6908', 'no_lang_code', 1, 'https://ror.org/04bxj6908 SleepMed'),
(49493, 'https://ror.org/058h4cw85', 'en', 1, 'https://ror.org/058h4cw85 The Spine & Nerve Centers of the Virginias'),
(49494, 'https://ror.org/04nwd2p56', 'en', 1, 'https://ror.org/04nwd2p56 Central Hospital of Putuo District ę™®é™€åŒŗäø­åæƒåŒ»é™¢'),
(49495, 'https://ror.org/05p1sde72', 'en', 1, 'https://ror.org/05p1sde72 St. Bonifatius Hospital'),
(49496, 'https://ror.org/01z0axe47', 'en', 1, 'https://ror.org/01z0axe47 Slocum Center for Orthopedics and Sports Medicine'),
(49497, 'https://ror.org/04rtaxr13', 'en', 1, 'https://ror.org/04rtaxr13 Center for Rheumatology'),
(49498, 'https://ror.org/056ezdx45', 'en', 1, 'https://ror.org/056ezdx45 Surin Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąøøąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(49499, 'https://ror.org/001shd435', 'en', 1, 'https://ror.org/001shd435 Shuozhou Central Hospital ęœ”å·žäø­åæƒåŒ»é™¢'),
(49500, 'https://ror.org/04rxwqr66', 'en', 1, 'https://ror.org/04rxwqr66 OneBlood'),
(49501, 'https://ror.org/025srm412', 'en', 1, 'https://ror.org/025srm412 Sutter Roseville Medical Center'),
(49502, 'https://ror.org/04fhq1b19', 'en', 1, 'https://ror.org/04fhq1b19 St. Cloud Orthopedic Associates'),
(49503, 'https://ror.org/03hy9zy10', 'en', 1, 'https://ror.org/03hy9zy10 Suzhou Traditional Chinese Medicine Hospital č‹å·žäø­åŒ»åŒ»é™¢'),
(49504, 'https://ror.org/04en42k10', 'en', 1, 'https://ror.org/04en42k10 Somdet Chaopraya Institute of Psychiatry ąøŖąø”ą¹€ąø”ą¹‡ąøˆąøŖąø–ąø²ąøšąø±ąø™ąøˆąø“ąø•ą¹€ąø§ąøŠąøØąø²ąøŖąø•ąø£ą¹Œ'),
(49505, 'https://ror.org/03mm8gj84', 'en', 1, 'https://ror.org/03mm8gj84 Svensk Onkologisk Fƶrening Swedish Society of Oncology'),
(49506, 'https://ror.org/05f2dw604', 'en', 1, 'https://ror.org/05f2dw604 Somerset Skin Centre'),
(49507, 'https://ror.org/03tq2kc64', 'en', 1, 'https://ror.org/03tq2kc64 Shanxi Dayi Hospital å±±č„æå¤§åŒ»é™¢'),
(49508, 'https://ror.org/04jvsvx56', 'en', 1, 'https://ror.org/04jvsvx56 St. Francis Community Hospital'),
(49509, 'https://ror.org/056b3tw70', 'en', 1, 'https://ror.org/056b3tw70 Center Orthopedic & Neurosurgical Care & Research'),
(49510, 'https://ror.org/0269fty31', 'en', 1, 'https://ror.org/0269fty31 Shaoxing Second Hospital ē»å…“åø‚ē¬¬äŗŒåŒ»é™¢'),
(49511, 'https://ror.org/03fcec566', 'en', 1, 'https://ror.org/03fcec566 Sylvana Research'),
(49512, 'https://ror.org/044j14864', 'en', 1, 'https://ror.org/044j14864 St. Johns Center for Clinical Research'),
(49513, 'https://ror.org/02jcef994', 'en', 1, 'https://ror.org/02jcef994 South African Tuberculosis Vaccine Initiative'),
(49514, 'https://ror.org/0446qvp04', 'en', 1, 'https://ror.org/0446qvp04 St. Joseph''s Care Group'),
(49515, 'https://ror.org/00pdsc246', 'en', 1, 'https://ror.org/00pdsc246 Center for Autisme'),
(49516, 'https://ror.org/050qgwx77', 'en', 1, 'https://ror.org/050qgwx77 Telethon Foundation'),
(49517, 'https://ror.org/01s09ha26', 'en', 1, 'https://ror.org/01s09ha26 Synergy Research Centers'),
(49518, 'https://ror.org/01bq78n56', 'en', 1, 'https://ror.org/01bq78n56 Horsley Medical Practice'),
(49519, 'https://ror.org/01qh4s373', 'en', 1, 'https://ror.org/01qh4s373 South Carolina Oncology Associates'),
(49520, 'https://ror.org/05e56c835', 'en', 1, 'https://ror.org/05e56c835 Medical Research Network'),
(49521, 'https://ror.org/01ywtay82', 'en', 1, 'https://ror.org/01ywtay82 Education & Research Foundation'),
(49522, 'https://ror.org/01z40a451', 'no_lang_code', 1, 'https://ror.org/01z40a451 Synexus (Germany)'),
(49523, 'https://ror.org/053dw0508', 'en', 1, 'https://ror.org/053dw0508 Columbus Eye Surgery Center'),
(49524, 'https://ror.org/030ph1y13', 'no_lang_code', 1, 'https://ror.org/030ph1y13 Synexus (United Kingdom)'),
(49525, 'https://ror.org/04mxvyg40', 'en', 1, 'https://ror.org/04mxvyg40 Melbourne Clinic'),
(49526, 'https://ror.org/0058tc217', 'en', 1, 'https://ror.org/0058tc217 Eye Institute of West Florida'),
(49527, 'https://ror.org/05w2bg876', 'en', 1, 'https://ror.org/05w2bg876 South Eastern Health and Social Care Trust'),
(49528, 'https://ror.org/03hbkyh21', 'en', 1, 'https://ror.org/03hbkyh21 St. Louis Medical Clinic'),
(49529, 'https://ror.org/0306e5z24', 'en', 1, 'https://ror.org/0306e5z24 Multiple Sclerosis Center of Atlanta'),
(49530, 'https://ror.org/0155km815', 'en', 1, 'https://ror.org/0155km815 South Florida Medical Research'),
(49531, 'https://ror.org/02gr42472', 'en', 1, 'https://ror.org/02gr42472 First Affiliated Hospital of Guangdong Pharmaceutical University å¹æäøœčÆå­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(49532, 'https://ror.org/029c2eq23', 'en', 1, 'https://ror.org/029c2eq23 Syracuse Orthopedic Specialists'),
(49533, 'https://ror.org/01ffek432', 'en', 1, 'https://ror.org/01ffek432 First Affiliated Hospital of Hunan University of Traditional Chinese Medicine ę¹–å—äø­åŒ»čÆå¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(49534, 'https://ror.org/0288he568', 'en', 1, 'https://ror.org/0288he568 South Shore Eye Care'),
(49535, 'https://ror.org/050gzab21', 'en', 1, 'https://ror.org/050gzab21 Inner Mongolia Maternal and Child Health å†…č’™å¤å¦‡å¹¼äæå„'),
(49536, 'https://ror.org/03037e419', 'en', 1, 'https://ror.org/03037e419 Ninth Hospital of Nanchang å—ę˜Œåø‚ē¬¬ä¹åŒ»é™¢å®˜ę–¹ē½‘ē«™'),
(49537, 'https://ror.org/059c9vn90', 'en', 1, 'https://ror.org/059c9vn90 First Affiliated Hospital of Henan University of Traditional Chinese Medicine ę²³å—äø­åŒ»å­¦é™¢ē¬¬äø€åŒ»é™¢'),
(49538, 'https://ror.org/04pbh9679', 'en', 1, 'https://ror.org/04pbh9679 Hohhot First Hospital å‘¼å’Œęµ©ē‰¹ē¬¬äø€åŒ»é™¢'),
(49539, 'https://ror.org/02eqphf30', 'en', 1, 'https://ror.org/02eqphf30 St. Mary Medical Center'),
(49540, 'https://ror.org/05qwgjd68', 'en', 1, 'https://ror.org/05qwgjd68 Hefei First People''s Hospital åˆč‚„ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(49541, 'https://ror.org/05vvw9r90', 'en', 1, 'https://ror.org/05vvw9r90 Office of Adolescent Health'),
(49542, 'https://ror.org/05j2yt510', 'en', 1, 'https://ror.org/05j2yt510 Fourth People''s Hospital of Taiyuan å¤ŖåŽŸåø‚ē¬¬å››äŗŗę°‘åŒ»é™¢_百度百科'),
(49543, 'https://ror.org/01scs7915', 'en', 1, 'https://ror.org/01scs7915 South Texas Accelerated Research Therapeutics'),
(49544, 'https://ror.org/00c4nt602', 'en', 1, 'https://ror.org/00c4nt602 Orthopedic Center'),
(49545, 'https://ror.org/000qysg46', 'en', 1, 'https://ror.org/000qysg46 Yinchuan First People''s Hospital é“¶å·ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(49546, 'https://ror.org/02jx0eg57', 'en', 1, 'https://ror.org/02jx0eg57 South Texas Blood and Tissue Center'),
(49547, 'https://ror.org/01mmm4p44', 'en', 1, 'https://ror.org/01mmm4p44 Hospital 463 People''s Liberation Army č§£ę”¾å†›å››å…­äø‰åŒ»é™¢'),
(49548, 'https://ror.org/05bhs6b69', 'en', 1, 'https://ror.org/05bhs6b69 Tampa Bay Medical Research'),
(49549, 'https://ror.org/015q7hw55', 'en', 1, 'https://ror.org/015q7hw55 Saint-Petersburg Medico-Social Institute Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ МеГико'),
(49550, 'https://ror.org/00xp3qv26', 'en', 1, 'https://ror.org/00xp3qv26 Jordan Valley Dermatology'),
(49551, 'https://ror.org/01wkath48', 'en', 1, 'https://ror.org/01wkath48 Fourth Hospital of Changsha é•æę²™åø‚ē¬¬å››åŒ»é™¢'),
(49552, 'https://ror.org/05nxvxm15', 'en', 1, 'https://ror.org/05nxvxm15 Fourth Hospital of Inner Mongolia å†…č’™å¤ē¬¬å››åŒ»é™¢'),
(49553, 'https://ror.org/02kqzrt08', 'nl', 1, 'https://ror.org/02kqzrt08 Tandartspraktijk Bocht Oosterdiep'),
(49554, 'https://ror.org/05dehe044', 'en', 1, 'https://ror.org/05dehe044 Guenther Dermatology Research Centre'),
(49555, 'https://ror.org/05ptrtc51', 'en', 1, 'https://ror.org/05ptrtc51 Gaozhou People''s Hospital é«˜å·žäŗŗę°‘åŒ»é™¢'),
(49556, 'https://ror.org/02pje8j21', 'en', 1, 'https://ror.org/02pje8j21 Tanzania Women Research Foundation'),
(49557, 'https://ror.org/01q3qfk61', 'en', 1, 'https://ror.org/01q3qfk61 Southbay Pharma Research'),
(49558, 'https://ror.org/01p7bsb42', 'en', 1, 'https://ror.org/01p7bsb42 St. Vladimir Children''s Moscow Clinical Hospital Š”Š²ŃŃ‚Š¾-ВлаГимирский Š”ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° Москва'),
(49559, 'https://ror.org/03wbpnx68', 'en', 1, 'https://ror.org/03wbpnx68 Nargis Dutt Memorial Cancer Hospital'),
(49560, 'https://ror.org/033zztb05', 'en', 1, 'https://ror.org/033zztb05 Southeastern Fertility Center'),
(49561, 'https://ror.org/01a91k946', 'nl', 1, 'https://ror.org/01a91k946 St.Jans Gasthuis Weert'),
(49562, 'https://ror.org/05525qx48', 'en', 1, 'https://ror.org/05525qx48 Tauber Eye Center'),
(49563, 'https://ror.org/05pv1tb51', 'en', 1, 'https://ror.org/05pv1tb51 Taustine Eye Center'),
(49564, 'https://ror.org/04nkk7415', 'en', 1, 'https://ror.org/04nkk7415 Southeastern Retina Associates'),
(49565, 'https://ror.org/0247xav12', 'en', 1, 'https://ror.org/0247xav12 TEDA International Cardiovascular Hospital ę³°č¾¾å›½é™…åæƒč”€ē®”ē—…åŒ»é™¢'),
(49566, 'https://ror.org/03jwxc595', 'en', 1, 'https://ror.org/03jwxc595 Second Affiliated Hospital of Hunan University of Traditional Chinese Medicine'),
(49567, 'https://ror.org/02q4zyb28', 'de', 1, 'https://ror.org/02q4zyb28 Stadtkrankenhaus Schwabach'),
(49568, 'https://ror.org/03svtz920', 'no_lang_code', 1, 'https://ror.org/03svtz920 Tekwani Vision Center'),
(49569, 'https://ror.org/01zyn4z03', 'en', 1, 'https://ror.org/01zyn4z03 Beijing Luhe Hospital Affiliated to Capital Medical University é¦–éƒ½åŒ»ē§‘å¤§å­¦é™„å±žåŒ—äŗ¬ę½žę²³åŒ»é™¢'),
(49570, 'https://ror.org/02904nv16', 'en', 1, 'https://ror.org/02904nv16 Maas Clinic'),
(49571, 'https://ror.org/02vr5rk77', 'en', 1, 'https://ror.org/02vr5rk77 Southern California Desert Retina Consultants'),
(49572, 'https://ror.org/04m4mvs85', 'en', 1, 'https://ror.org/04m4mvs85 Southern Eye Associates'),
(49573, 'https://ror.org/00bbk4z43', 'en', 1, 'https://ror.org/00bbk4z43 Second People ''s Hospital of Jinzhong ę™‹äø­åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(49574, 'https://ror.org/021pcgg80', 'en', 1, 'https://ror.org/021pcgg80 Temple Lung Center'),
(49575, 'https://ror.org/053sgn987', 'en', 1, 'https://ror.org/053sgn987 TOTALL Diabetes Hormone Institute'),
(49576, 'https://ror.org/04bfv0919', 'en', 1, 'https://ror.org/04bfv0919 Tower Cancer Research Foundation'),
(49577, 'https://ror.org/05jsaxg97', 'en', 1, 'https://ror.org/05jsaxg97 Tennessee Clinical Research Center'),
(49578, 'https://ror.org/03vma5j11', 'en', 1, 'https://ror.org/03vma5j11 Staploe Medical Centre'),
(49579, 'https://ror.org/00dd2yg30', 'en', 1, 'https://ror.org/00dd2yg30 Tower Urology Medical Group'),
(49580, 'https://ror.org/011gwd889', 'en', 1, 'https://ror.org/011gwd889 Tennessee Orthopaedic Alliance'),
(49581, 'https://ror.org/02043dc11', 'en', 1, 'https://ror.org/02043dc11 Segal Institute for Clinical Research'),
(49582, 'https://ror.org/02kahb572', 'en', 1, 'https://ror.org/02kahb572 Texan Eye'),
(49583, 'https://ror.org/000tfh447', 'en', 1, 'https://ror.org/000tfh447 Dali Traditional Chinese Medicine Hospital å¤§ē†ē™½ę—č‡Ŗę²»å·žäø­åŒ»åŒ»é™¢'),
(49584, 'https://ror.org/033wsx172', 'no_lang_code', 1, 'https://ror.org/033wsx172 Siesta Group (Austria)'),
(49585, 'https://ror.org/050d0fq97', 'en', 1, 'https://ror.org/050d0fq97 Affiliated Hospital of Jiangxi University of Traditional Chinese Medicine ę±Ÿč„æēœäø­åŒ»é™¢'),
(49586, 'https://ror.org/00y30az25', 'en', 1, 'https://ror.org/00y30az25 Sparrow Health System'),
(49587, 'https://ror.org/05qy4jt44', 'en', 1, 'https://ror.org/05qy4jt44 Moscow City Oncology Hospital ā„–62'),
(49588, 'https://ror.org/041567670', 'en', 1, 'https://ror.org/041567670 TRIA Orthopaedic Center'),
(49589, 'https://ror.org/050g0hk79', 'en', 1, 'https://ror.org/050g0hk79 Volgograd Regional Clinical Oncology Center ВолгограГский областной клинический онкологический Гиспансер ā„– 1'),
(49590, 'https://ror.org/057yjva61', 'en', 1, 'https://ror.org/057yjva61 Triad Clinical Trials'),
(49591, 'https://ror.org/03mn32794', 'en', 1, 'https://ror.org/03mn32794 Skin Wellness Center'),
(49592, 'https://ror.org/05gtwra97', 'de', 1, 'https://ror.org/05gtwra97 UniversitƤts HNO Klinik Mannheim'),
(49593, 'https://ror.org/00ymd9k36', 'en', 1, 'https://ror.org/00ymd9k36 Third Affiliated Hospital of Inner Mongolia Medical College'),
(49594, 'https://ror.org/02k5aap11', 'en', 1, 'https://ror.org/02k5aap11 Centre for Prevention and Control of AIDS and Infectious Diseases Центр по профилактике Šø Š±Š¾Ń€ŃŒŠ±Šµ со Š”ŠŸŠ˜Š”Š¾Š¼ Šø инфекционными Š·Š°Š±Š¾Š»ŠµŠ²Š°Š½ŠøŃŠ¼Šø,'),
(49595, 'https://ror.org/04w3qme09', 'en', 1, 'https://ror.org/04w3qme09 Third Hospital of Changsha'),
(49596, 'https://ror.org/025sg0039', 'en', 1, 'https://ror.org/025sg0039 Regional Center for Prevention and Control of AIDS and Infectious Diseases ŠžŠ±Š»Š°ŃŃ‚Š½Š¾Š¹ меГицинский центр по Š±Š¾Ń€ŃŒŠ±Šµ с инфекционными Š·Š°Š±Š¾Š»ŠµŠ²Š°Š½ŠøŃŠ¼Šø'),
(49597, 'https://ror.org/02caz1263', 'en', 1, 'https://ror.org/02caz1263 Third People ''s Hospital of Chongqing é‡åŗ†åø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(49598, 'https://ror.org/008bb6z37', 'en', 1, 'https://ror.org/008bb6z37 Nizhny Novgorod Regional Clinical Oncology Center ŠŠøŠ¶Š½ŠøŠ¹ ŠŠ¾Š²Š³Š¾Ń€Š¾Š“ областной онкологический Гиспансер'),
(49599, 'https://ror.org/048as6j09', 'en', 1, 'https://ror.org/048as6j09 Urology Team'),
(49600, 'https://ror.org/04kzqr274', 'en', 1, 'https://ror.org/04kzqr274 Ulyanovsk Regional Oncology Center Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ клинический онкологический Гиспансер'),
(49601, 'https://ror.org/02rfhxh40', 'en', 1, 'https://ror.org/02rfhxh40 Westbourne Centre'),
(49602, 'https://ror.org/05jh9p159', 'en', 1, 'https://ror.org/05jh9p159 Ubonratchathani Cancer Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(49603, 'https://ror.org/00zn1ak77', 'ro', 1, 'https://ror.org/00zn1ak77 Spitalul Clinic CF Cluj-Napoca'),
(49604, 'https://ror.org/04zyw0g92', 'en', 1, 'https://ror.org/04zyw0g92 Therafirst Medical Center'),
(49605, 'https://ror.org/013v7fk41', 'en', 1, 'https://ror.org/013v7fk41 University Hospital and Clinics'),
(49606, 'https://ror.org/04b0her22', 'nl', 1, 'https://ror.org/04b0her22 AZ Delta'),
(49607, 'https://ror.org/04tzr7454', 'de', 1, 'https://ror.org/04tzr7454 Therapiezentrum Burgau'),
(49608, 'https://ror.org/03dzmr959', 'en', 1, 'https://ror.org/03dzmr959 Stedman Clinical Trials'),
(49609, 'https://ror.org/05jpj2w31', 'en', 1, 'https://ror.org/05jpj2w31 Udon Thani Hospital'),
(49610, 'https://ror.org/01m74as88', 'en', 1, 'https://ror.org/01m74as88 Third People ''s Hospital of Liaoyang'),
(49611, 'https://ror.org/02wm6n026', 'en', 1, 'https://ror.org/02wm6n026 Uganda Chartered Health Net'),
(49612, 'https://ror.org/054162a80', 'no_lang_code', 1, 'https://ror.org/054162a80 Universal Court Reporting (United States)'),
(49613, 'https://ror.org/04sk5kz08', 'en', 1, 'https://ror.org/04sk5kz08 University Diabetes and Endocrine Consultants'),
(49614, 'https://ror.org/034srtc18', 'en', 1, 'https://ror.org/034srtc18 Johnson Center for Child Health and Development'),
(49615, 'https://ror.org/01h8fgw60', 'en', 1, 'https://ror.org/01h8fgw60 Tianjin Infectious Diseases Hospital å¤©ę“„åø‚ä¼ ęŸ“ē—…åŒ»é™¢'),
(49616, 'https://ror.org/02pgmm462', 'en', 1, 'https://ror.org/02pgmm462 Tianjin Tanggu Women and Child Health å”˜ę²½åŒŗå¦‡å¹¼äæå„é™¢'),
(49617, 'https://ror.org/03aw15z34', 'no_lang_code', 1, 'https://ror.org/03aw15z34 AlterG (United States)'),
(49618, 'https://ror.org/0066zj839', 'en', 1, 'https://ror.org/0066zj839 Tidewater Kidney Specialists'),
(49619, 'https://ror.org/02c6wz078', 'en', 1, 'https://ror.org/02c6wz078 University of Zimbabwe-University of California San Francisco'),
(49620, 'https://ror.org/02xfyax20', 'en', 1, 'https://ror.org/02xfyax20 Tokeidai Memorial Hospital'),
(49621, 'https://ror.org/02wp64j63', 'en', 1, 'https://ror.org/02wp64j63 University of Iowa Health Alliance'),
(49622, 'https://ror.org/00q2zja93', 'en', 1, 'https://ror.org/00q2zja93 United Heart and Vascular Clinic'),
(49623, 'https://ror.org/046xy0k58', 'en', 1, 'https://ror.org/046xy0k58 NIHR Wellcome Trust Southampton Clinical Research Facility'),
(49624, 'https://ror.org/059gb3r46', 'en', 1, 'https://ror.org/059gb3r46 TKL Research'),
(49625, 'https://ror.org/04sdnbk30', 'en', 1, 'https://ror.org/04sdnbk30 Universal Biopharma Research Institute'),
(49626, 'https://ror.org/031a73r17', 'nl', 1, 'https://ror.org/031a73r17 Tolbrug Specialistische Revalidatie'),
(49627, 'https://ror.org/00vhctc31', 'fr', 1, 'https://ror.org/00vhctc31 Centre Hospitalier de VitrƩ'),
(49628, 'https://ror.org/00tdt9a76', 'no_lang_code', 1, 'https://ror.org/00tdt9a76 Vivus Heart Hospital'),
(49629, 'https://ror.org/05exe6d14', 'nl', 1, 'https://ror.org/05exe6d14 Franciscus Vlietland'),
(49630, 'https://ror.org/05jr8e497', 'en', 1, 'https://ror.org/05jr8e497 Willamette Valley Cancer Institute and Research Center'),
(49631, 'https://ror.org/05x23jh68', 'en', 1, 'https://ror.org/05x23jh68 Volunteer Research Group and New Orleans Center for Clinical Research'),
(49632, 'https://ror.org/00e99dd12', 'en', 1, 'https://ror.org/00e99dd12 University Physicians Group'),
(49633, 'https://ror.org/01954vf31', 'en', 1, 'https://ror.org/01954vf31 Wake Research'),
(49634, 'https://ror.org/012kq8z96', 'en', 1, 'https://ror.org/012kq8z96 Windsor Clinical Research'),
(49635, 'https://ror.org/03m5z5h02', 'en', 1, 'https://ror.org/03m5z5h02 Windsor Dermatology'),
(49636, 'https://ror.org/052krvf25', 'de', 1, 'https://ror.org/052krvf25 Winghofer Medicum'),
(49637, 'https://ror.org/05s8w9t64', 'en', 1, 'https://ror.org/05s8w9t64 Warren County Health Department'),
(49638, 'https://ror.org/02653sm42', 'en', 1, 'https://ror.org/02653sm42 Upper Grand Family Health Team'),
(49639, 'https://ror.org/0594ske86', 'en', 1, 'https://ror.org/0594ske86 VA Nebraska Western Iowa Health Care System'),
(49640, 'https://ror.org/00mzdyq43', 'en', 1, 'https://ror.org/00mzdyq43 Zhejiang Provincial Hospital of TCM ęµ™ę±Ÿēœäø­åŒ»é™¢'),
(49641, 'https://ror.org/04xqqa618', 'en', 1, 'https://ror.org/04xqqa618 AMC Neurology Group Clinical Research Center'),
(49642, 'https://ror.org/03y8pzx74', 'en', 1, 'https://ror.org/03y8pzx74 Washington Center for Weight Management and Research'),
(49643, 'https://ror.org/04exar519', 'en', 1, 'https://ror.org/04exar519 Moss Memorial Health Clinic'),
(49644, 'https://ror.org/00s61s029', 'en', 1, 'https://ror.org/00s61s029 VA New England Healthcare System'),
(49645, 'https://ror.org/041ktbj76', 'en', 1, 'https://ror.org/041ktbj76 Ural Institute of Cardiology Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карГиологии'),
(49646, 'https://ror.org/009jvch84', 'en', 1, 'https://ror.org/009jvch84 Woburn & North Andover Pediatric Associates'),
(49647, 'https://ror.org/05qe9cy98', 'en', 1, 'https://ror.org/05qe9cy98 Wolstan & Goldberg Eye Associates'),
(49648, 'https://ror.org/02pfr9428', 'nl', 1, 'https://ror.org/02pfr9428 Waterlandziekenhuis'),
(49649, 'https://ror.org/02v54dp66', 'en', 1, 'https://ror.org/02v54dp66 Valdosta Psychiatric Associates'),
(49650, 'https://ror.org/02vjc4d72', 'en', 1, 'https://ror.org/02vjc4d72 Women’s Health Care'),
(49651, 'https://ror.org/03c174c49', 'en', 1, 'https://ror.org/03c174c49 Validia Kuntoutus Validia Rehabilitation'),
(49652, 'https://ror.org/04rn6m357', 'de', 1, 'https://ror.org/04rn6m357 Maria Hilf Krankenhaus'),
(49653, 'https://ror.org/01j7rg942', 'en', 1, 'https://ror.org/01j7rg942 Urology Associates of North Texas'),
(49654, 'https://ror.org/04663jx74', 'en', 1, 'https://ror.org/04663jx74 College Station Medical Center'),
(49655, 'https://ror.org/038y3ce09', 'en', 1, 'https://ror.org/038y3ce09 Urology Bay of Plenty'),
(49656, 'https://ror.org/01abmka80', 'en', 1, 'https://ror.org/01abmka80 Zhongshan City Second People''s Hospital äø­å±±åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(49657, 'https://ror.org/05x1ct167', 'en', 1, 'https://ror.org/05x1ct167 Valley Retina Institute'),
(49658, 'https://ror.org/03vpa9q11', 'en', 1, 'https://ror.org/03vpa9q11 Weihai Municipal Hospital åØęµ·åø‚ē«‹åŒ»é™¢'),
(49659, 'https://ror.org/059wqqf58', 'en', 1, 'https://ror.org/059wqqf58 Wuzhou Red Cross Hospital ę¢§å·žåø‚ēŗ¢åå­—ä¼šåŒ»é™¢'),
(49660, 'https://ror.org/04aztm043', 'en', 1, 'https://ror.org/04aztm043 Wyndhurst Counseling Center'),
(49661, 'https://ror.org/00fff9d21', 'en', 1, 'https://ror.org/00fff9d21 Urology San Antonio'),
(49662, 'https://ror.org/004cdc714', 'en', 1, 'https://ror.org/004cdc714 Xian Central Hospital č„æå®‰åø‚äø­åæƒåŒ»é™¢'),
(49663, 'https://ror.org/03djjj187', 'en', 1, 'https://ror.org/03djjj187 Villa Pineta Hospital'),
(49664, 'https://ror.org/039frc380', 'no_lang_code', 1, 'https://ror.org/039frc380 Well Pharma Medical Research (United States)'),
(49665, 'https://ror.org/05tr58t76', 'no_lang_code', 1, 'https://ror.org/05tr58t76 Cogentix Medical (United States)'),
(49666, 'https://ror.org/01r4jg965', 'en', 1, 'https://ror.org/01r4jg965 Virginia Clinical Research'),
(49667, 'https://ror.org/03sys9n92', 'en', 1, 'https://ror.org/03sys9n92 Virginia Eye Consultants'),
(49668, 'https://ror.org/0284jzx23', 'en', 1, 'https://ror.org/0284jzx23 Xingtai People''s Hospital é‚¢å°åø‚äŗŗę°‘åŒ»é™¢'),
(49669, 'https://ror.org/009yyqs39', 'en', 1, 'https://ror.org/009yyqs39 Virginia Oncology Associates'),
(49670, 'https://ror.org/04r67yj20', 'en', 1, 'https://ror.org/04r67yj20 WellSpan York Hospital'),
(49671, 'https://ror.org/03k6w4998', 'no_lang_code', 1, 'https://ror.org/03k6w4998 Vanak Eye Center'),
(49672, 'https://ror.org/0089j2p79', 'en', 1, 'https://ror.org/0089j2p79 Vance Thompson Vision'),
(49673, 'https://ror.org/037ds2k79', 'en', 1, 'https://ror.org/037ds2k79 Virginia Research Institute'),
(49674, 'https://ror.org/02qyk0j27', 'en', 1, 'https://ror.org/02qyk0j27 Xintai People''s Hospital ę–°ę³°åø‚äŗŗę°‘åŒ»é™¢'),
(49675, 'https://ror.org/010z5qj64', 'en', 1, 'https://ror.org/010z5qj64 Virginia Spine Research Institute'),
(49676, 'https://ror.org/04k47ec04', 'en', 1, 'https://ror.org/04k47ec04 Yantai Laiyang Central Hospital ēƒŸå°čŽ±é˜³äø­åæƒåŒ»é™¢'),
(49677, 'https://ror.org/05fgpk863', 'no_lang_code', 1, 'https://ror.org/05fgpk863 Atlantic Clinical Research Collaborative (United States)'),
(49678, 'https://ror.org/03q37xb84', 'en', 1, 'https://ror.org/03q37xb84 Wenatchee Valley Hospital & Clinics'),
(49679, 'https://ror.org/0585zpm44', 'en', 1, 'https://ror.org/0585zpm44 West Coast Retina'),
(49680, 'https://ror.org/044g62j84', 'en', 1, 'https://ror.org/044g62j84 Westover Heights Clinic'),
(49681, 'https://ror.org/01b658f62', 'en', 1, 'https://ror.org/01b658f62 ENT and Allergy'),
(49682, 'https://ror.org/0149pmh27', 'en', 1, 'https://ror.org/0149pmh27 Yue Bei People''s Hospital ē²¤åŒ—äŗŗę°‘åŒ»é™¢'),
(49683, 'https://ror.org/04sq2be74', 'en', 1, 'https://ror.org/04sq2be74 Westside Center for Clinical Research'),
(49684, 'https://ror.org/0200x2j16', 'sv', 1, 'https://ror.org/0200x2j16 PraktikertjƤnst'),
(49685, 'https://ror.org/006ymvg95', 'no_lang_code', 1, 'https://ror.org/006ymvg95 Wenzhou Hospital of Traditional Chinese Medicine ęø©å·žåø‚äø­åŒ»é™¢'),
(49686, 'https://ror.org/05aw6p704', 'en', 1, 'https://ror.org/05aw6p704 West German Heart and Vascular Center Essen Westdeutsche Herz- und Gefäßzentrum Essen'),
(49687, 'https://ror.org/054t0kh70', 'no_lang_code', 1, 'https://ror.org/054t0kh70 Yueqing People''s Hospital ä¹ęø…äŗŗę°‘åŒ»é™¢'),
(49688, 'https://ror.org/01at8r832', 'en', 1, 'https://ror.org/01at8r832 Whitsett Vision Group'),
(49689, 'https://ror.org/02hce7r59', 'en', 1, 'https://ror.org/02hce7r59 8020 Promotion Foundation 8020ęŽØé€²č²”å›£'),
(49690, 'https://ror.org/01mejbd78', 'en', 1, 'https://ror.org/01mejbd78 Venice Family Clinic'),
(49691, 'https://ror.org/00sb42p15', 'en', 1, 'https://ror.org/00sb42p15 Western Health and Social Care Trust'),
(49692, 'https://ror.org/04eba0590', 'en', 1, 'https://ror.org/04eba0590 Veracity Clinical Research'),
(49693, 'https://ror.org/055dxk232', 'en', 1, 'https://ror.org/055dxk232 Western Maryland Health System'),
(49694, 'https://ror.org/038628g29', 'en', 1, 'https://ror.org/038628g29 American Academy of Periodontology Foundation'),
(49695, 'https://ror.org/04g5yrp52', 'en', 1, 'https://ror.org/04g5yrp52 A-T Children''s Project'),
(49696, 'https://ror.org/02ye6d240', 'en', 1, 'https://ror.org/02ye6d240 Agriculture, Forestry and Fisheries Research Council č¾²ęž—ę°“ē”£ęŠ€č”“ä¼šč­°'),
(49697, 'https://ror.org/0090hd978', 'en', 1, 'https://ror.org/0090hd978 American Academy of Sleep Medicine'),
(49698, 'https://ror.org/023t48c08', 'en', 1, 'https://ror.org/023t48c08 American Wildlife Conservation Foundation'),
(49699, 'https://ror.org/01k02wt67', 'en', 1, 'https://ror.org/01k02wt67 Society of Health and Physical Educators'),
(49700, 'https://ror.org/016pjbx35', 'en', 1, 'https://ror.org/016pjbx35 Asian Association for Dynamic Osteosynthesis'),
(49701, 'https://ror.org/05cejc480', 'en', 1, 'https://ror.org/05cejc480 American Italian Cancer Foundation'),
(49702, 'https://ror.org/05q623n42', 'en', 1, 'https://ror.org/05q623n42 American Association for the Surgery of Trauma'),
(49703, 'https://ror.org/03yanpe89', 'en', 1, 'https://ror.org/03yanpe89 A. E. Finley Foundation'),
(49704, 'https://ror.org/00n5w1596', 'en', 1, 'https://ror.org/00n5w1596 People ''s Hospital of Jilin Province å‰ęž—ēœäŗŗę°‘åŒ»é™¢'),
(49705, 'https://ror.org/04n7vez34', 'no_lang_code', 1, 'https://ror.org/04n7vez34 AgroFresh (United States)'),
(49706, 'https://ror.org/00rye6n28', 'en', 1, 'https://ror.org/00rye6n28 ASIS Foundation'),
(49707, 'https://ror.org/05hqtjm11', 'no_lang_code', 1, 'https://ror.org/05hqtjm11 Amgen (Netherlands)'),
(49708, 'https://ror.org/00jnyfv56', 'en', 1, 'https://ror.org/00jnyfv56 American Association of Avian Pathologists'),
(49709, 'https://ror.org/0243wgp76', 'en', 1, 'https://ror.org/0243wgp76 Foundation for Health in Aging'),
(49710, 'https://ror.org/01f7bfe52', 'en', 1, 'https://ror.org/01f7bfe52 American Association of Bovine Practitioners'),
(49711, 'https://ror.org/04ps05k54', 'en', 1, 'https://ror.org/04ps05k54 American Association of Clinical Endocrinologists'),
(49712, 'https://ror.org/0073n0s52', 'fr', 1, 'https://ror.org/0073n0s52 Amis de l''Institut Bordet'),
(49713, 'https://ror.org/019w9ty29', 'en', 1, 'https://ror.org/019w9ty29 American Association of Endocrine Surgeons'),
(49714, 'https://ror.org/01e3cnp62', 'en', 1, 'https://ror.org/01e3cnp62 A.P. Giannini Foundation'),
(49715, 'https://ror.org/00xege567', 'en', 1, 'https://ror.org/00xege567 Amon G. Carter Foundation'),
(49716, 'https://ror.org/03b8ttp75', 'en', 1, 'https://ror.org/03b8ttp75 Assisi Foundation of Memphis'),
(49717, 'https://ror.org/017trqn73', 'en', 1, 'https://ror.org/017trqn73 AAA Foundation for Traffic Safety'),
(49718, 'https://ror.org/05h1fqv07', 'en', 1, 'https://ror.org/05h1fqv07 Aicardi Syndrome Foundation'),
(49719, 'https://ror.org/01pfv2y33', 'en', 1, 'https://ror.org/01pfv2y33 Amyloidosis Foundation'),
(49720, 'https://ror.org/047tmvg79', 'en', 1, 'https://ror.org/047tmvg79 American Association of Equine Practitioners'),
(49721, 'https://ror.org/01am05n73', 'en', 1, 'https://ror.org/01am05n73 Associated Oregon Loggers'),
(49722, 'https://ror.org/010tbvz48', 'en', 1, 'https://ror.org/010tbvz48 Anandamahidol foundation'),
(49723, 'https://ror.org/04btcdy83', 'en', 1, 'https://ror.org/04btcdy83 American Association of Plastic Surgeons'),
(49724, 'https://ror.org/007q7fd56', 'en', 1, 'https://ror.org/007q7fd56 AADC Research Trust'),
(49725, 'https://ror.org/008hvd197', 'da', 1, 'https://ror.org/008hvd197 Aage V. Jensens Fonde'),
(49726, 'https://ror.org/02qc1es24', 'fr', 1, 'https://ror.org/02qc1es24 Association du Syndrome de Lowe'),
(49727, 'https://ror.org/01ekr8r30', 'en', 1, 'https://ror.org/01ekr8r30 American Association of Teachers of Korean'),
(49728, 'https://ror.org/007r33g58', 'en', 1, 'https://ror.org/007r33g58 American Association of Zoo Veterinarians'),
(49729, 'https://ror.org/01z0efz13', 'en', 1, 'https://ror.org/01z0efz13 Aichi Science & Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗē§‘å­¦ęŠ€č”“äŗ¤ęµč²”å›£'),
(49730, 'https://ror.org/03zxtf807', 'en', 1, 'https://ror.org/03zxtf807 Andrea and Charles Bronfman Philanthropies'),
(49731, 'https://ror.org/05f6w6d75', 'en', 1, 'https://ror.org/05f6w6d75 American Asthma Foundation'),
(49732, 'https://ror.org/04j18qv50', 'en', 1, 'https://ror.org/04j18qv50 Association for Academic Surgery Foundation'),
(49733, 'https://ror.org/00g6mre77', 'en', 1, 'https://ror.org/00g6mre77 American Astronautical Society'),
(49734, 'https://ror.org/02dh6fs53', 'en', 1, 'https://ror.org/02dh6fs53 Andrea Mennen Family Foundation'),
(49735, 'https://ror.org/0549zep27', 'en', 1, 'https://ror.org/0549zep27 Association for Glycogen Storage Disease'),
(49736, 'https://ror.org/04vh36p08', 'da', 1, 'https://ror.org/04vh36p08 AIDS Fondet'),
(49737, 'https://ror.org/05q2bhv13', 'en', 1, 'https://ror.org/05q2bhv13 Association for Prevention Teaching and Research'),
(49738, 'https://ror.org/02xeb0g66', 'en', 1, 'https://ror.org/02xeb0g66 Abell Foundation'),
(49739, 'https://ror.org/03pnd3r37', 'en', 1, 'https://ror.org/03pnd3r37 Andy Warhol Foundation for the Visual Arts'),
(49740, 'https://ror.org/02ch6a529', 'en', 1, 'https://ror.org/02ch6a529 American Autoimmune Related Diseases Association'),
(49741, 'https://ror.org/0149k7n03', 'en', 1, 'https://ror.org/0149k7n03 Abell-Hanger Foundation'),
(49742, 'https://ror.org/03w32n732', 'en', 1, 'https://ror.org/03w32n732 American Brain Tumor Association'),
(49743, 'https://ror.org/02t5mzr26', 'en', 1, 'https://ror.org/02t5mzr26 AIM at Melanoma Foundation'),
(49744, 'https://ror.org/032s9p188', 'en', 1, 'https://ror.org/032s9p188 Anesthesia Patient Safety Foundation'),
(49745, 'https://ror.org/02kgj4n82', 'en', 1, 'https://ror.org/02kgj4n82 Foundation for Child Development'),
(49746, 'https://ror.org/010w8tb22', 'en', 1, 'https://ror.org/010w8tb22 Aims2Cure'),
(49747, 'https://ror.org/01avc0g69', 'en', 1, 'https://ror.org/01avc0g69 Association for the Study of Medical Education'),
(49748, 'https://ror.org/0509rvg03', 'en', 1, 'https://ror.org/0509rvg03 American College of Veterinary Surgeons'),
(49749, 'https://ror.org/01xxn5f34', 'en', 1, 'https://ror.org/01xxn5f34 Angelman Syndrome Foundation'),
(49750, 'https://ror.org/05xcjrc42', 'en', 1, 'https://ror.org/05xcjrc42 Association for the Study of the Middle East and Africa'),
(49751, 'https://ror.org/01m1se903', 'en', 1, 'https://ror.org/01m1se903 Abney Foundation'),
(49752, 'https://ror.org/0117m7141', 'fr', 1, 'https://ror.org/0117m7141 Association France Ekbom');
INSERT INTO `rors` VALUES
(49753, 'https://ror.org/02a207p76', 'en', 1, 'https://ror.org/02a207p76 American Concrete Institute'),
(49754, 'https://ror.org/02yn0z735', 'en', 1, 'https://ror.org/02yn0z735 Association for Iron & Steel Technology'),
(49755, 'https://ror.org/01psax922', 'en', 1, 'https://ror.org/01psax922 Association of American Railroads'),
(49756, 'https://ror.org/01qfen484', 'en', 1, 'https://ror.org/01qfen484 Association of Management Development Institutions in South Asia'),
(49757, 'https://ror.org/03ak9g490', 'en', 1, 'https://ror.org/03ak9g490 Association of Migraine Disorders'),
(49758, 'https://ror.org/04zw0mb93', 'en', 1, 'https://ror.org/04zw0mb93 American Dental Hygienists'' Association'),
(49759, 'https://ror.org/021kyjw72', 'en', 1, 'https://ror.org/021kyjw72 Ann Arbor Area Community Foundation'),
(49760, 'https://ror.org/028w1rx89', 'it', 1, 'https://ror.org/028w1rx89 Associazione Angela Serra per la Ricerca sul Cancro'),
(49761, 'https://ror.org/04d29kk52', 'en', 1, 'https://ror.org/04d29kk52 Academy of Architecture for Health Foundation'),
(49762, 'https://ror.org/02z5k8341', 'en', 1, 'https://ror.org/02z5k8341 Anna Needs Neuroblastoma Answers'),
(49763, 'https://ror.org/005cqv449', 'it', 1, 'https://ror.org/005cqv449 Associazione Bianca Garavaglia Onlus'),
(49764, 'https://ror.org/05yay9903', 'en', 1, 'https://ror.org/05yay9903 American Dysautonomia Institute'),
(49765, 'https://ror.org/05wcp5302', 'en', 1, 'https://ror.org/05wcp5302 Anna-Monika-Foundation'),
(49766, 'https://ror.org/03gr42p24', 'en', 1, 'https://ror.org/03gr42p24 Vittorio Tison Association'),
(49767, 'https://ror.org/04198sg47', 'en', 1, 'https://ror.org/04198sg47 Akiyama Life Science Foundation ē§‹å±±čØ˜åæµē”Ÿå‘½ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(49768, 'https://ror.org/04gec5v25', 'it', 1, 'https://ror.org/04gec5v25 Associazione Italiana Rett'),
(49769, 'https://ror.org/00tmwkm13', 'en', 1, 'https://ror.org/00tmwkm13 American Fibromyalgia Syndrome Association'),
(49770, 'https://ror.org/032n1sw23', 'en', 1, 'https://ror.org/032n1sw23 Anne and Harry Zarrow Foundation'),
(49771, 'https://ror.org/02qkndm86', 'no_lang_code', 1, 'https://ror.org/02qkndm86 AcelRx Pharmaceuticals (United States)'),
(49772, 'https://ror.org/018ze1919', 'it', 1, 'https://ror.org/018ze1919 Associazione Sammarinese per la Lotta contro le Leucemie e Emopatie Maligne'),
(49773, 'https://ror.org/03w27w166', 'en', 1, 'https://ror.org/03w27w166 Akron Community Foundation'),
(49774, 'https://ror.org/00s28hv45', 'no_lang_code', 1, 'https://ror.org/00s28hv45 Acerde (France)'),
(49775, 'https://ror.org/01q8dxj28', 'en', 1, 'https://ror.org/01q8dxj28 American Fidelity Foundation'),
(49776, 'https://ror.org/011xj1a65', 'en', 1, 'https://ror.org/011xj1a65 Achelis and Bodman Foundation'),
(49777, 'https://ror.org/0463yr287', 'en', 1, 'https://ror.org/0463yr287 Annie E. Casey Foundation'),
(49778, 'https://ror.org/023m03q03', 'en', 1, 'https://ror.org/023m03q03 American Floral Endowment'),
(49779, 'https://ror.org/04zamhr10', 'no_lang_code', 1, 'https://ror.org/04zamhr10 Actinium Pharmaceuticals (United States)'),
(49780, 'https://ror.org/00ey8bm24', 'en', 1, 'https://ror.org/00ey8bm24 Al-Saeed Foundation for Science and Culture Ł…Ų¤Ų³Ų³Ų© Ų§Ł„Ų³Ų¹ŁŠŲÆ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ©'),
(49781, 'https://ror.org/00vp6sp78', 'en', 1, 'https://ror.org/00vp6sp78 Anthony Rothe Memorial Trust'),
(49782, 'https://ror.org/00mpw9279', 'en', 1, 'https://ror.org/00mpw9279 Anxiety and Depression Association of America'),
(49783, 'https://ror.org/000gayj94', 'en', 1, 'https://ror.org/000gayj94 Alaska Conservation Foundation'),
(49784, 'https://ror.org/0564n1z40', 'en', 1, 'https://ror.org/0564n1z40 Asthma Foundation of Tasmania'),
(49785, 'https://ror.org/02w58t546', 'en', 1, 'https://ror.org/02w58t546 Albani Fonden Albani Foundation'),
(49786, 'https://ror.org/00sax7541', 'en', 1, 'https://ror.org/00sax7541 AO North America'),
(49787, 'https://ror.org/01swy6e53', 'en', 1, 'https://ror.org/01swy6e53 AIMS Education Foundation'),
(49788, 'https://ror.org/03jy7fq30', 'en', 1, 'https://ror.org/03jy7fq30 Association of Perioperative Registered Nurses'),
(49789, 'https://ror.org/059rngg59', 'en', 1, 'https://ror.org/059rngg59 American Friends of Laniado Hospital'),
(49790, 'https://ror.org/0470nty22', 'en', 1, 'https://ror.org/0470nty22 Albert and Margaret Alkek Foundation'),
(49791, 'https://ror.org/02g3w4r36', 'en', 1, 'https://ror.org/02g3w4r36 Actuarial Foundation'),
(49792, 'https://ror.org/032apyw09', 'en', 1, 'https://ror.org/032apyw09 Asthma and Respiratory Foundation New Zealand'),
(49793, 'https://ror.org/01p0hfz77', 'en', 1, 'https://ror.org/01p0hfz77 ACVO Vision for Animals Foundation'),
(49794, 'https://ror.org/00aq1tf09', 'en', 1, 'https://ror.org/00aq1tf09 Albert G. and Olive H. Schlink Foundation'),
(49795, 'https://ror.org/03pp6kd13', 'en', 1, 'https://ror.org/03pp6kd13 American Hand Therapy Foundation'),
(49796, 'https://ror.org/04pza9565', 'en', 1, 'https://ror.org/04pza9565 Albert J. Ryan Foundation'),
(49797, 'https://ror.org/00r34jt90', 'en', 1, 'https://ror.org/00r34jt90 Adam Taliaferro Foundation'),
(49798, 'https://ror.org/0166ek496', 'en', 1, 'https://ror.org/0166ek496 American Head & Neck Society'),
(49799, 'https://ror.org/04w2t4465', 'en', 1, 'https://ror.org/04w2t4465 American Healthcare Professionals and Friends for Medicine in Israel'),
(49800, 'https://ror.org/028kbne62', 'en', 1, 'https://ror.org/028kbne62 Alberta Emerald Foundation'),
(49801, 'https://ror.org/00r5xfb70', 'en', 1, 'https://ror.org/00r5xfb70 Appalachian Stewardship Foundation'),
(49802, 'https://ror.org/0428xen39', 'no_lang_code', 1, 'https://ror.org/0428xen39 Astute Medical (United States)'),
(49803, 'https://ror.org/04krn2974', 'en', 1, 'https://ror.org/04krn2974 American Hellenic Educational Progressive Association'),
(49804, 'https://ror.org/04rr9rb04', 'en', 1, 'https://ror.org/04rr9rb04 Atherton Family Foundation'),
(49805, 'https://ror.org/05qm7bg11', 'en', 1, 'https://ror.org/05qm7bg11 Apple University Consortium'),
(49806, 'https://ror.org/000qf7469', 'en', 1, 'https://ror.org/000qf7469 American Hungarian Foundation'),
(49807, 'https://ror.org/039w99793', 'en', 1, 'https://ror.org/039w99793 Alberta Science and Technology Leadership Foundation'),
(49808, 'https://ror.org/05kythm61', 'en', 1, 'https://ror.org/05kythm61 Appraisers Research Foundation'),
(49809, 'https://ror.org/03wgdcb95', 'en', 1, 'https://ror.org/03wgdcb95 Atkinson Foundation'),
(49810, 'https://ror.org/00c9bhj04', 'en', 1, 'https://ror.org/00c9bhj04 Alborada Trust'),
(49811, 'https://ror.org/02dahen38', 'no_lang_code', 1, 'https://ror.org/02dahen38 Aso Group (Japan)'),
(49812, 'https://ror.org/029b1vn53', 'no_lang_code', 1, 'https://ror.org/029b1vn53 Aspirus'),
(49813, 'https://ror.org/050y98g56', 'en', 1, 'https://ror.org/050y98g56 Alcorso Foundation'),
(49814, 'https://ror.org/03e9etc12', 'en', 1, 'https://ror.org/03e9etc12 Arab American Pharmacist Association'),
(49815, 'https://ror.org/01f5hts17', 'en', 1, 'https://ror.org/01f5hts17 Atlanta Women’s Foundation'),
(49816, 'https://ror.org/04fafj987', 'en', 1, 'https://ror.org/04fafj987 Adenoid Cystic Carcinoma Research Foundation'),
(49817, 'https://ror.org/011ftwx20', 'en', 1, 'https://ror.org/011ftwx20 Adessium Foundation'),
(49818, 'https://ror.org/05pzjjy67', 'en', 1, 'https://ror.org/05pzjjy67 Arab Science and Technology Foundation المؤسسة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(49819, 'https://ror.org/03x6bc282', 'en', 1, 'https://ror.org/03x6bc282 American Medical Student Association'),
(49820, 'https://ror.org/02vjwa047', 'en', 1, 'https://ror.org/02vjwa047 Adhesive and Sealant Council'),
(49821, 'https://ror.org/04ra2hd78', 'en', 1, 'https://ror.org/04ra2hd78 American Music Therapy Association'),
(49822, 'https://ror.org/052a0g260', 'en', 1, 'https://ror.org/052a0g260 Arab British Chamber of Commerce غرفة التجارة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ©'),
(49823, 'https://ror.org/045hr9t97', 'en', 1, 'https://ror.org/045hr9t97 American Occupational Therapy Foundation'),
(49824, 'https://ror.org/04ywsnb39', 'en', 1, 'https://ror.org/04ywsnb39 Alexander Foundation for Orthodontic Research and Education'),
(49825, 'https://ror.org/03vmxwa84', 'en', 1, 'https://ror.org/03vmxwa84 Arai Science and Technology Promotion Foundation ę–°äŗ•ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(49826, 'https://ror.org/0574ytm77', 'en', 1, 'https://ror.org/0574ytm77 Atsumi International Scholarship Foundation ęø„ē¾Žå›½éš›äŗ¤ęµč²”å›£'),
(49827, 'https://ror.org/040hddc75', 'en', 1, 'https://ror.org/040hddc75 American Orchid Society'),
(49828, 'https://ror.org/00602dv83', 'en', 1, 'https://ror.org/00602dv83 AuDA Foundation'),
(49829, 'https://ror.org/046a53p69', 'en', 1, 'https://ror.org/046a53p69 Alexia Foundation'),
(49830, 'https://ror.org/01yx62742', 'fr', 1, 'https://ror.org/01yx62742 Adolphe Merkle Institute'),
(49831, 'https://ror.org/030y53541', 'en', 1, 'https://ror.org/030y53541 Augustinus Fonden Augustinus Foundation'),
(49832, 'https://ror.org/005js1714', 'en', 1, 'https://ror.org/005js1714 Archival Education and Research Institute'),
(49833, 'https://ror.org/01e0gx490', 'no', 1, 'https://ror.org/01e0gx490 Aust-Agder Utviklings- og Kompetansefond'),
(49834, 'https://ror.org/029qr2j63', 'en', 1, 'https://ror.org/029qr2j63 Ardmore Foundation'),
(49835, 'https://ror.org/032zwwa29', 'en', 1, 'https://ror.org/032zwwa29 Austin Community Foundation'),
(49836, 'https://ror.org/00jkvrs61', 'en', 1, 'https://ror.org/00jkvrs61 American Orthopaedic Foot and Ankle Society'),
(49837, 'https://ror.org/005s1m246', 'en', 1, 'https://ror.org/005s1m246 Alfred Benzon Foundation'),
(49838, 'https://ror.org/01w7vwe52', 'en', 1, 'https://ror.org/01w7vwe52 Australasian Blistering Diseases Foundation'),
(49839, 'https://ror.org/04jv11d86', 'en', 1, 'https://ror.org/04jv11d86 Australasian Centre for Italian Studies'),
(49840, 'https://ror.org/05q058270', 'en', 1, 'https://ror.org/05q058270 American Osteopathic Foundation'),
(49841, 'https://ror.org/0047hnk39', 'en', 1, 'https://ror.org/0047hnk39 Alfred Friendly Press Partners'),
(49842, 'https://ror.org/01kc20959', 'en', 1, 'https://ror.org/01kc20959 Urological Society of Australia and New Zealand'),
(49843, 'https://ror.org/00rdsnk65', 'en', 1, 'https://ror.org/00rdsnk65 Argosy Foundation'),
(49844, 'https://ror.org/00zpmdm60', 'en', 1, 'https://ror.org/00zpmdm60 American Otological Society'),
(49845, 'https://ror.org/04m8me169', 'en', 1, 'https://ror.org/04m8me169 ARISE The Scoliosis Research Trust'),
(49846, 'https://ror.org/027vfdt14', 'en', 1, 'https://ror.org/027vfdt14 Arizona Community Foundation'),
(49847, 'https://ror.org/02qyc0r76', 'en', 1, 'https://ror.org/02qyc0r76 American Pain Foundation'),
(49848, 'https://ror.org/02gbgwz87', 'en', 1, 'https://ror.org/02gbgwz87 Allan Wilson Centre'),
(49849, 'https://ror.org/02he67h29', 'en', 1, 'https://ror.org/02he67h29 Australian Centre for HIV and Hepatitis Virology Research'),
(49850, 'https://ror.org/05d46q131', 'en', 1, 'https://ror.org/05d46q131 Australian College of Critical Care Nurses'),
(49851, 'https://ror.org/02ng6yf94', 'en', 1, 'https://ror.org/02ng6yf94 Allard Foundation'),
(49852, 'https://ror.org/02s59jv58', 'en', 1, 'https://ror.org/02s59jv58 Arizona Cotton Growers Association'),
(49853, 'https://ror.org/036jq7b41', 'en', 1, 'https://ror.org/036jq7b41 Allen Foundation'),
(49854, 'https://ror.org/026h3kw78', 'en', 1, 'https://ror.org/026h3kw78 Australian Dental Industry Association'),
(49855, 'https://ror.org/00v3epe08', 'en', 1, 'https://ror.org/00v3epe08 Arizona Cotton Research and Protection Council'),
(49856, 'https://ror.org/03zmx7q49', 'en', 1, 'https://ror.org/03zmx7q49 Dingo Discovery and Research Centre'),
(49857, 'https://ror.org/00mms0j12', 'en', 1, 'https://ror.org/00mms0j12 Alliance for Cancer Gene Therapy'),
(49858, 'https://ror.org/00qb7b998', 'en', 1, 'https://ror.org/00qb7b998 Aesthetic Surgery Education and Research Foundation'),
(49859, 'https://ror.org/011t5nk62', 'en', 1, 'https://ror.org/011t5nk62 American Pharmacists Association Foundation'),
(49860, 'https://ror.org/059xg9f68', 'en', 1, 'https://ror.org/059xg9f68 Alliance for Epilepsy Research'),
(49861, 'https://ror.org/03bkemf09', 'en', 1, 'https://ror.org/03bkemf09 Armed Forces Communications and Electronics Association'),
(49862, 'https://ror.org/00kmgnh57', 'en', 1, 'https://ror.org/00kmgnh57 Australian Flora Foundation'),
(49863, 'https://ror.org/042fgte34', 'en', 1, 'https://ror.org/042fgte34 Arkansas Community Foundation'),
(49864, 'https://ror.org/03wcw7y06', 'en', 1, 'https://ror.org/03wcw7y06 Arkansas Research Alliance'),
(49865, 'https://ror.org/02tjbt313', 'en', 1, 'https://ror.org/02tjbt313 American Psychiatric Association Publishing'),
(49866, 'https://ror.org/021rkpk21', 'en', 1, 'https://ror.org/021rkpk21 Australian Geographic Society'),
(49867, 'https://ror.org/042x0hf72', 'en', 1, 'https://ror.org/042x0hf72 Arkansas State Highway and Transportation Department'),
(49868, 'https://ror.org/04n7nyv64', 'en', 1, 'https://ror.org/04n7nyv64 Australian Institute of Family Studies'),
(49869, 'https://ror.org/01kvftm17', 'en', 1, 'https://ror.org/01kvftm17 Aga Khan Foundation'),
(49870, 'https://ror.org/054jwp491', 'en', 1, 'https://ror.org/054jwp491 Arkay Foundation'),
(49871, 'https://ror.org/00s2bzt61', 'en', 1, 'https://ror.org/00s2bzt61 Alpha Omega Foundation'),
(49872, 'https://ror.org/05s3njy52', 'fr', 1, 'https://ror.org/05s3njy52 Agence de l''Eau Seine Normandie'),
(49873, 'https://ror.org/00ca6qk95', 'en', 1, 'https://ror.org/00ca6qk95 American Public Power Association'),
(49874, 'https://ror.org/01r9fcy75', 'en', 1, 'https://ror.org/01r9fcy75 Alpha Omicron Pi Foundation'),
(49875, 'https://ror.org/05mj8hk83', 'fr', 1, 'https://ror.org/05mj8hk83 Agence de dƩveloppement de l''Oriental Agence de l''Oriental'),
(49876, 'https://ror.org/02keq9g57', 'en', 1, 'https://ror.org/02keq9g57 Armstrong McDonald Foundation'),
(49877, 'https://ror.org/00k4jsr16', 'en', 1, 'https://ror.org/00k4jsr16 Australian Liver Foundation'),
(49878, 'https://ror.org/020ba9354', 'en', 1, 'https://ror.org/020ba9354 Alpha Phi Foundation'),
(49879, 'https://ror.org/058f84k27', 'it', 1, 'https://ror.org/058f84k27 Fondazione Italiana di Ricerca per la Sclerosi Laterale Amiotrofica Italian research Foundation for ALS'),
(49880, 'https://ror.org/01seepq35', 'en', 1, 'https://ror.org/01seepq35 American Research Center in Sofia Foundation'),
(49881, 'https://ror.org/00gqhzy82', 'en', 1, 'https://ror.org/00gqhzy82 Alphawood Foundation'),
(49882, 'https://ror.org/010a50125', 'en', 1, 'https://ror.org/010a50125 American Research Institute for Policy Development'),
(49883, 'https://ror.org/032wt0096', 'en', 1, 'https://ror.org/032wt0096 Alport Syndrome Foundation'),
(49884, 'https://ror.org/00hgjqa61', 'en', 1, 'https://ror.org/00hgjqa61 Australian Orchid Foundation'),
(49885, 'https://ror.org/02d8jq034', 'en', 1, 'https://ror.org/02d8jq034 ALS Hope Foundation'),
(49886, 'https://ror.org/05gm4wq37', 'en', 1, 'https://ror.org/05gm4wq37 American Respiratory Care Foundation'),
(49887, 'https://ror.org/03kpaty54', 'it', 1, 'https://ror.org/03kpaty54 Agenzia Regionale Parchi'),
(49888, 'https://ror.org/03wxy1684', 'en', 1, 'https://ror.org/03wxy1684 Australian Society of Periodontology'),
(49889, 'https://ror.org/02s62y466', 'en', 1, 'https://ror.org/02s62y466 American Academy of Otolaryngic Allergy'),
(49890, 'https://ror.org/03myc4w31', 'en', 1, 'https://ror.org/03myc4w31 American Rhinologic Society'),
(49891, 'https://ror.org/002861396', 'en', 1, 'https://ror.org/002861396 Australian Prime Ministers Centre'),
(49892, 'https://ror.org/05v16nd64', 'it', 1, 'https://ror.org/05v16nd64 Agenzia Sanitaria Regionale Abruzzo'),
(49893, 'https://ror.org/00xdn6374', 'en', 1, 'https://ror.org/00xdn6374 Arthur Vining Davis Foundations'),
(49894, 'https://ror.org/04m6sw526', 'en', 1, 'https://ror.org/04m6sw526 Australian Society of Exploration Geophysicists'),
(49895, 'https://ror.org/042qmp147', 'fr', 1, 'https://ror.org/042qmp147 Agir Pour les Maladies Chroniques'),
(49896, 'https://ror.org/02bsg4a02', 'en', 1, 'https://ror.org/02bsg4a02 Alternatives Research & Development Foundation'),
(49897, 'https://ror.org/054kfq324', 'en', 1, 'https://ror.org/054kfq324 American Society for Radiation Oncology'),
(49898, 'https://ror.org/01arayx28', 'de', 1, 'https://ror.org/01arayx28 Alzheimer Forschung Initiative'),
(49899, 'https://ror.org/00wc5ck66', 'en', 1, 'https://ror.org/00wc5ck66 Australian Society of Plant Scientists'),
(49900, 'https://ror.org/05ef6s903', 'en', 1, 'https://ror.org/05ef6s903 Alzheimer Society of Manitoba'),
(49901, 'https://ror.org/01ht0p351', 'en', 1, 'https://ror.org/01ht0p351 Agricultural Technology Adoption Initiative'),
(49902, 'https://ror.org/05sgg2765', 'en', 1, 'https://ror.org/05sgg2765 Australian Spinal Research Foundation'),
(49903, 'https://ror.org/02vjgtj13', 'en', 1, 'https://ror.org/02vjgtj13 American Society of Composers, Authors and Publishers'),
(49904, 'https://ror.org/027ahsj69', 'en', 1, 'https://ror.org/027ahsj69 Alzheimer''s Australia Dementia Research Foundation'),
(49905, 'https://ror.org/01rq5xv52', 'no_lang_code', 1, 'https://ror.org/01rq5xv52 Avery Design Systems (United States)'),
(49906, 'https://ror.org/04f45q833', 'en', 1, 'https://ror.org/04f45q833 American Society of Consultant Pharmacists'),
(49907, 'https://ror.org/03tkh8741', 'en', 1, 'https://ror.org/03tkh8741 Alzheimer''s Foundation of America'),
(49908, 'https://ror.org/04y6vvb85', 'en', 1, 'https://ror.org/04y6vvb85 Australian Women and Children''s Research Foundation'),
(49909, 'https://ror.org/03hxzb342', 'en', 1, 'https://ror.org/03hxzb342 Awesome Foundation'),
(49910, 'https://ror.org/00ssgfx80', 'en', 1, 'https://ror.org/00ssgfx80 Autism Research Foundation'),
(49911, 'https://ror.org/027ey5735', 'sv', 1, 'https://ror.org/027ey5735 Alzheimerfonden'),
(49912, 'https://ror.org/01fn9d687', 'en', 1, 'https://ror.org/01fn9d687 American Society of Genealogists'),
(49913, 'https://ror.org/00weey343', 'sv', 1, 'https://ror.org/00weey343 Arvid Carlsson Fonden'),
(49914, 'https://ror.org/05d088546', 'no_lang_code', 1, 'https://ror.org/05d088546 Baxter (Netherlands)'),
(49915, 'https://ror.org/02gfq0f62', 'da', 1, 'https://ror.org/02gfq0f62 Axel Muusfeldts Fond'),
(49916, 'https://ror.org/00s22ed86', 'en', 1, 'https://ror.org/00s22ed86 American Society of Interior Designers Foundation'),
(49917, 'https://ror.org/0066y7e75', 'en', 1, 'https://ror.org/0066y7e75 Bay and Paul Foundations'),
(49918, 'https://ror.org/00a59ax11', 'da', 1, 'https://ror.org/00a59ax11 Arvid Nilssons Fond'),
(49919, 'https://ror.org/022nw7x84', 'en', 1, 'https://ror.org/022nw7x84 Ambrose Monell Foundation'),
(49920, 'https://ror.org/058rchw45', 'en', 1, 'https://ror.org/058rchw45 American Society of Mammalogists'),
(49921, 'https://ror.org/024hrna66', 'en', 1, 'https://ror.org/024hrna66 As You Sow'),
(49922, 'https://ror.org/0106w8k14', 'en', 1, 'https://ror.org/0106w8k14 Amelia Peabody Charitable Fund'),
(49923, 'https://ror.org/04hsgm631', 'en', 1, 'https://ror.org/04hsgm631 Beaver County Foundation'),
(49924, 'https://ror.org/009svts64', 'en', 1, 'https://ror.org/009svts64 Azrieli Foundation'),
(49925, 'https://ror.org/01hvxhn04', 'en', 1, 'https://ror.org/01hvxhn04 American Society of Naturalist'),
(49926, 'https://ror.org/04jq8gw64', 'en', 1, 'https://ror.org/04jq8gw64 Beckman Coulter Foundation'),
(49927, 'https://ror.org/004p5vv59', 'en', 1, 'https://ror.org/004p5vv59 American Academy for Jewish Research'),
(49928, 'https://ror.org/03afa2q29', 'en', 1, 'https://ror.org/03afa2q29 ASAE Foundation'),
(49929, 'https://ror.org/044pwvv43', 'en', 1, 'https://ror.org/044pwvv43 American Society of Pediatric Nephrology'),
(49930, 'https://ror.org/05d14hv12', 'en', 1, 'https://ror.org/05d14hv12 Beez Foundation'),
(49931, 'https://ror.org/05f1j8s33', 'en', 1, 'https://ror.org/05f1j8s33 American Academy of Audiology'),
(49932, 'https://ror.org/01nmscb33', 'en', 1, 'https://ror.org/01nmscb33 American Society of Pediatric Otolaryngology'),
(49933, 'https://ror.org/02eq6ye19', 'de', 1, 'https://ror.org/02eq6ye19 B. Braun Stiftung'),
(49934, 'https://ror.org/05nyeaz86', 'en', 1, 'https://ror.org/05nyeaz86 American Society of Pharmacognosy'),
(49935, 'https://ror.org/049tdwn96', 'en', 1, 'https://ror.org/049tdwn96 Beijing NGO Association for International Exchanges åŒ—äŗ¬åø‚ę°‘é—“ē»„ē»‡å›½é™…äŗ¤ęµåä¼š'),
(49936, 'https://ror.org/054xkse79', 'en', 1, 'https://ror.org/054xkse79 American Academy of Implant Dentistry'),
(49937, 'https://ror.org/01grxkt41', 'en', 1, 'https://ror.org/01grxkt41 American Society of Plant Taxonomists'),
(49938, 'https://ror.org/00bb3dz25', 'en', 1, 'https://ror.org/00bb3dz25 Beveridge Family Foundation'),
(49939, 'https://ror.org/010z5cj53', 'en', 1, 'https://ror.org/010z5cj53 ASHP Research and Education Foundation'),
(49940, 'https://ror.org/036hktk48', 'no_lang_code', 1, 'https://ror.org/036hktk48 Babes in Arms (Canada)'),
(49941, 'https://ror.org/02kx9dq14', 'en', 1, 'https://ror.org/02kx9dq14 Asia New Zealand Foundation'),
(49942, 'https://ror.org/057rcgy56', 'en', 1, 'https://ror.org/057rcgy56 Bharti Centre for Communication'),
(49943, 'https://ror.org/05a5zgn96', 'en', 1, 'https://ror.org/05a5zgn96 Bader Philanthropies'),
(49944, 'https://ror.org/031rs9d30', 'en', 1, 'https://ror.org/031rs9d30 Asia Pacific Foundation of Canada'),
(49945, 'https://ror.org/00spg6x06', 'en', 1, 'https://ror.org/00spg6x06 Bharti Foundation'),
(49946, 'https://ror.org/00e6hp348', 'en', 1, 'https://ror.org/00e6hp348 Bailey Family Foundation'),
(49947, 'https://ror.org/00nhwe772', 'en', 1, 'https://ror.org/00nhwe772 American Thyroid Association'),
(49948, 'https://ror.org/020ggem82', 'en', 1, 'https://ror.org/020ggem82 Ball Brothers Foundation'),
(49949, 'https://ror.org/02fdpqp39', 'en', 1, 'https://ror.org/02fdpqp39 Belgian Brain Tumor Support'),
(49950, 'https://ror.org/027frsq63', 'en', 1, 'https://ror.org/027frsq63 American Tinnitus Association'),
(49951, 'https://ror.org/059psfa96', 'en', 1, 'https://ror.org/059psfa96 Ben and Maytee Fisch Foundation'),
(49952, 'https://ror.org/02m34vd28', 'en', 1, 'https://ror.org/02m34vd28 American Veterinary Medical Foundation'),
(49953, 'https://ror.org/03jjxq260', 'en', 1, 'https://ror.org/03jjxq260 Baltimore Community Foundation'),
(49954, 'https://ror.org/03a3aw155', 'en', 1, 'https://ror.org/03a3aw155 Boomer Esiason Foundation'),
(49955, 'https://ror.org/008ebwt42', 'en', 1, 'https://ror.org/008ebwt42 American Vineyard Foundation'),
(49956, 'https://ror.org/03gnqg065', 'en', 1, 'https://ror.org/03gnqg065 BioFuelNet Canada'),
(49957, 'https://ror.org/02dw1n083', 'en', 1, 'https://ror.org/02dw1n083 Bangladesh Fisheries Research Institute বাংলাদেশ ą¦®ą§Žą¦øą§ą¦Æ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(49958, 'https://ror.org/030cbnq98', 'en', 1, 'https://ror.org/030cbnq98 Beneficial Bank'),
(49959, 'https://ror.org/05xe9t676', 'en', 1, 'https://ror.org/05xe9t676 Banting Research Foundation'),
(49960, 'https://ror.org/023zt9146', 'en', 1, 'https://ror.org/023zt9146 British Dietetic Association'),
(49961, 'https://ror.org/01dm0yq38', 'no_lang_code', 1, 'https://ror.org/01dm0yq38 Benesse Holdings (Japan) ę Ŗå¼ä¼šē¤¾ćƒ™ćƒćƒƒć‚»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(49962, 'https://ror.org/0217khz32', 'en', 1, 'https://ror.org/0217khz32 Binational Industrial Research and Development Foundation'),
(49963, 'https://ror.org/05eat3g39', 'no_lang_code', 1, 'https://ror.org/05eat3g39 Borealis (Austria)'),
(49964, 'https://ror.org/02p92eb51', 'en', 1, 'https://ror.org/02p92eb51 Benign Essential Blepharospasm Research Foundation'),
(49965, 'https://ror.org/006recc61', 'en', 1, 'https://ror.org/006recc61 British Herpetological Society'),
(49966, 'https://ror.org/020k2cq76', 'en', 1, 'https://ror.org/020k2cq76 Barakat Trust'),
(49967, 'https://ror.org/05w7s8q62', 'en', 1, 'https://ror.org/05w7s8q62 British International Studies Association'),
(49968, 'https://ror.org/00v0mde29', 'en', 1, 'https://ror.org/00v0mde29 British Microcirculation Society'),
(49969, 'https://ror.org/04a2qqf85', 'no_lang_code', 1, 'https://ror.org/04a2qqf85 Bird Technologies (United States)'),
(49970, 'https://ror.org/00rz24q78', 'en', 1, 'https://ror.org/00rz24q78 British Mycological Society'),
(49971, 'https://ror.org/03fhpab87', 'en', 1, 'https://ror.org/03fhpab87 BirdLife Australia'),
(49972, 'https://ror.org/01ne4aa08', 'en', 1, 'https://ror.org/01ne4aa08 British Occupational Health Research Foundation'),
(49973, 'https://ror.org/0286bey81', 'en', 1, 'https://ror.org/0286bey81 Bently Foundation'),
(49974, 'https://ror.org/04efaep75', 'en', 1, 'https://ror.org/04efaep75 Bergen Research Foundation Bergens Forskningsstiftelse'),
(49975, 'https://ror.org/040ysda03', 'en', 1, 'https://ror.org/040ysda03 British Scoliosis Research Foundation'),
(49976, 'https://ror.org/02yknqp61', 'en', 1, 'https://ror.org/02yknqp61 British Small Animal Veterinary Association'),
(49977, 'https://ror.org/00vba1e97', 'en', 1, 'https://ror.org/00vba1e97 Barker Welfare Foundation'),
(49978, 'https://ror.org/01s0z9h22', 'en', 1, 'https://ror.org/01s0z9h22 British Society for Cell Biology'),
(49979, 'https://ror.org/016babj91', 'en', 1, 'https://ror.org/016babj91 Blakemore Foundation'),
(49980, 'https://ror.org/056f6wa50', 'sv', 1, 'https://ror.org/056f6wa50 Barndiabetesfondens'),
(49981, 'https://ror.org/04j9je195', 'en', 1, 'https://ror.org/04j9je195 Berks County Community Foundation'),
(49982, 'https://ror.org/03acj9296', 'en', 1, 'https://ror.org/03acj9296 Berkshire Taconic Community Foundation'),
(49983, 'https://ror.org/053gvz184', 'en', 1, 'https://ror.org/053gvz184 Barr Foundation'),
(49984, 'https://ror.org/003h6ex14', 'en', 1, 'https://ror.org/003h6ex14 Barra Foundation'),
(49985, 'https://ror.org/04pvmvv24', 'en', 1, 'https://ror.org/04pvmvv24 Barrett Bateman Foundation'),
(49986, 'https://ror.org/00xnr4415', 'en', 1, 'https://ror.org/00xnr4415 British Society for Eighteenth-Century Studies'),
(49987, 'https://ror.org/049fn9384', 'en', 1, 'https://ror.org/049fn9384 Brad Kamisky Foundation'),
(49988, 'https://ror.org/01ntjaz71', 'en', 1, 'https://ror.org/01ntjaz71 Blanche Davis Moore Foundation'),
(49989, 'https://ror.org/02pxgg741', 'en', 1, 'https://ror.org/02pxgg741 Bradshaw Knight Foundation'),
(49990, 'https://ror.org/0199q6v22', 'en', 1, 'https://ror.org/0199q6v22 Barry Community Foundation'),
(49991, 'https://ror.org/00w0xq836', 'en', 1, 'https://ror.org/00w0xq836 Bernard Osher Foundation'),
(49992, 'https://ror.org/04bjtaq20', 'en', 1, 'https://ror.org/04bjtaq20 British Society For Parasitology'),
(49993, 'https://ror.org/0106er609', 'en', 1, 'https://ror.org/0106er609 Brady Education Foundation'),
(49994, 'https://ror.org/03a9s6161', 'en', 1, 'https://ror.org/03a9s6161 Bernard van Leer Foundation'),
(49995, 'https://ror.org/04wpxrf64', 'en', 1, 'https://ror.org/04wpxrf64 Blazeman Foundation for ALS'),
(49996, 'https://ror.org/04gfzba65', 'en', 1, 'https://ror.org/04gfzba65 British Society for the History of Science'),
(49997, 'https://ror.org/052qtc529', 'en', 1, 'https://ror.org/052qtc529 Bernice E Holland Foundation'),
(49998, 'https://ror.org/00s163867', 'en', 1, 'https://ror.org/00s163867 British Society for the Philosophy of Science'),
(49999, 'https://ror.org/03ze5hn40', 'de', 1, 'https://ror.org/03ze5hn40 Bernische Krebsliga'),
(50000, 'https://ror.org/0597vc250', 'en', 1, 'https://ror.org/0597vc250 British Society of Audiology'),
(50001, 'https://ror.org/000dkwx88', 'en', 1, 'https://ror.org/000dkwx88 British Society of Gerontology'),
(50002, 'https://ror.org/00tc0tf65', 'en', 1, 'https://ror.org/00tc0tf65 Batten Disease Family Association'),
(50003, 'https://ror.org/05af1hn65', 'en', 1, 'https://ror.org/05af1hn65 British Thyroid Foundation'),
(50004, 'https://ror.org/02kv8z446', 'en', 1, 'https://ror.org/02kv8z446 Berth of Kantzows Stiftelse Berth von Kantzows Foundation'),
(50005, 'https://ror.org/00hsyyp29', 'en', 1, 'https://ror.org/00hsyyp29 Battle Creek Community Foundation'),
(50006, 'https://ror.org/058j98r16', 'de', 1, 'https://ror.org/058j98r16 Berthold Leibinger Stiftung'),
(50007, 'https://ror.org/00my66392', 'en', 1, 'https://ror.org/00my66392 Brookdale Foundation Group'),
(50008, 'https://ror.org/058fjhm66', 'de', 1, 'https://ror.org/058fjhm66 Baugarten Zürich Stiftung'),
(50009, 'https://ror.org/05ncfp318', 'en', 1, 'https://ror.org/05ncfp318 Brain Tumor Funders Collaborative'),
(50010, 'https://ror.org/04p7c7m47', 'en', 1, 'https://ror.org/04p7c7m47 Cades Schutte'),
(50011, 'https://ror.org/04w23ys68', 'en', 1, 'https://ror.org/04w23ys68 Brain Tumour Foundation of Canada'),
(50012, 'https://ror.org/038372j15', 'en', 1, 'https://ror.org/038372j15 Cadillac Area Community Foundation'),
(50013, 'https://ror.org/0483shy91', 'en', 1, 'https://ror.org/0483shy91 Bruner Foundation'),
(50014, 'https://ror.org/05dq78k50', 'no_lang_code', 1, 'https://ror.org/05dq78k50 BrainScope (United States)'),
(50015, 'https://ror.org/00b9tqm17', 'en', 1, 'https://ror.org/00b9tqm17 Bryan Area Foundation'),
(50016, 'https://ror.org/042d2nx10', 'en', 1, 'https://ror.org/042d2nx10 John Cain Foundation'),
(50017, 'https://ror.org/05wjbkr22', 'en', 1, 'https://ror.org/05wjbkr22 Blowitz-Ridgeway Foundation'),
(50018, 'https://ror.org/02t00tj02', 'en', 1, 'https://ror.org/02t00tj02 California Cherry Board'),
(50019, 'https://ror.org/01ggj0577', 'en', 1, 'https://ror.org/01ggj0577 Braitmayer Foundation'),
(50020, 'https://ror.org/03dryc986', 'en', 1, 'https://ror.org/03dryc986 California Consumer Protection Foundation'),
(50021, 'https://ror.org/014ssmn05', 'en', 1, 'https://ror.org/014ssmn05 California Dairy Research Foundation'),
(50022, 'https://ror.org/050r4h987', 'en', 1, 'https://ror.org/050r4h987 Blue Cross and Blue Shield of Florida Foundation'),
(50023, 'https://ror.org/03s0ywz76', 'en', 1, 'https://ror.org/03s0ywz76 California Dental Association Foundation'),
(50024, 'https://ror.org/04h97jj05', 'en', 1, 'https://ror.org/04h97jj05 Blue Shield of California Foundation'),
(50025, 'https://ror.org/04n2kg767', 'en', 1, 'https://ror.org/04n2kg767 Healthy Minds Canada'),
(50026, 'https://ror.org/01gnpsq58', 'en', 1, 'https://ror.org/01gnpsq58 Canadian Society of Pharmacology and Therapeutics'),
(50027, 'https://ror.org/048w9nb20', 'en', 1, 'https://ror.org/048w9nb20 BlueCross BlueShield of South Carolina Foundation'),
(50028, 'https://ror.org/01haca926', 'en', 1, 'https://ror.org/01haca926 California Psychological Association'),
(50029, 'https://ror.org/038ez8t98', 'en', 1, 'https://ror.org/038ez8t98 Buckeye Career Center Foundation'),
(50030, 'https://ror.org/0042h7v22', 'en', 1, 'https://ror.org/0042h7v22 California State Beekeepers Association'),
(50031, 'https://ror.org/03vyp3w30', 'en', 1, 'https://ror.org/03vyp3w30 Canadian Thoracic Society'),
(50032, 'https://ror.org/02fnsp050', 'en', 1, 'https://ror.org/02fnsp050 National Cancer Coalition'),
(50033, 'https://ror.org/04xfjgw45', 'no_lang_code', 1, 'https://ror.org/04xfjgw45 Shanxi Fenyang Hospital å±±č„æēœę±¾é˜³åŒ»é™¢'),
(50034, 'https://ror.org/01myvh111', 'en', 1, 'https://ror.org/01myvh111 Lambda Therapeutic Research'),
(50035, 'https://ror.org/04zqh4p27', 'en', 1, 'https://ror.org/04zqh4p27 Canary Foundation'),
(50036, 'https://ror.org/00g42k788', 'en', 1, 'https://ror.org/00g42k788 Blumenthal Foundation'),
(50037, 'https://ror.org/03csf6r15', 'en', 1, 'https://ror.org/03csf6r15 California Urological Association'),
(50038, 'https://ror.org/04cpe0x97', 'en', 1, 'https://ror.org/04cpe0x97 BMI Foundation'),
(50039, 'https://ror.org/00p52yk09', 'en', 1, 'https://ror.org/00p52yk09 Breast Cancer and Womens Health Institute'),
(50040, 'https://ror.org/04f8tsk17', 'en', 1, 'https://ror.org/04f8tsk17 Canavan Research Foundation'),
(50041, 'https://ror.org/03cpd9n92', 'en', 1, 'https://ror.org/03cpd9n92 California Wellness Foundation'),
(50042, 'https://ror.org/04qajcj06', 'en', 1, 'https://ror.org/04qajcj06 Bodossaki Foundation ĪŠĪ“ĻĻ…Ī¼Ī± ĪœĻ€ĪæĪ“ĪæĻƒĪ¬ĪŗĪ·'),
(50043, 'https://ror.org/00ne52m93', 'en', 1, 'https://ror.org/00ne52m93 Bhare Foundation'),
(50044, 'https://ror.org/04hb59q25', 'en', 1, 'https://ror.org/04hb59q25 Cancer Aid and Research Fund'),
(50045, 'https://ror.org/00g200v31', 'en', 1, 'https://ror.org/00g200v31 Brentwood Foundation'),
(50046, 'https://ror.org/03tx8dq56', 'en', 1, 'https://ror.org/03tx8dq56 Boehringer Ingelheim Foundation Boehringer Ingelheim Stiftung'),
(50047, 'https://ror.org/00cy4ga64', 'en', 1, 'https://ror.org/00cy4ga64 Calvert K Collins Family Foundation'),
(50048, 'https://ror.org/05p07c550', 'en', 1, 'https://ror.org/05p07c550 Brewers Association of Australia and New Zealand'),
(50049, 'https://ror.org/04hbteb59', 'en', 1, 'https://ror.org/04hbteb59 Camargo Foundation'),
(50050, 'https://ror.org/0277pn602', 'en', 1, 'https://ror.org/0277pn602 Boettcher Foundation'),
(50051, 'https://ror.org/01mzxrp73', 'en', 1, 'https://ror.org/01mzxrp73 Cancer and Polio Research Fund'),
(50052, 'https://ror.org/0332rjs08', 'en', 1, 'https://ror.org/0332rjs08 Brewster Place'),
(50053, 'https://ror.org/0271ynv65', 'en', 1, 'https://ror.org/0271ynv65 Buffalo Bills Foundation'),
(50054, 'https://ror.org/00h4xd076', 'en', 1, 'https://ror.org/00h4xd076 Bogliasco Foundation'),
(50055, 'https://ror.org/02f9cz450', 'en', 1, 'https://ror.org/02f9cz450 Brian Mercer Charitable Trust'),
(50056, 'https://ror.org/052nngb38', 'en', 1, 'https://ror.org/052nngb38 Cancer Research Foundation'),
(50057, 'https://ror.org/014kn1567', 'en', 1, 'https://ror.org/014kn1567 Cameron Brooks Foundation'),
(50058, 'https://ror.org/013d6jy96', 'en', 1, 'https://ror.org/013d6jy96 Buhl Foundation'),
(50059, 'https://ror.org/01hd95j60', 'en', 1, 'https://ror.org/01hd95j60 Bohemian Foundation'),
(50060, 'https://ror.org/043tgy268', 'en', 1, 'https://ror.org/043tgy268 Campbell Foundation'),
(50061, 'https://ror.org/01z7cky43', 'en', 1, 'https://ror.org/01z7cky43 Cancer Research Wales'),
(50062, 'https://ror.org/00tq5he37', 'en', 1, 'https://ror.org/00tq5he37 Building and Social Housing Foundation'),
(50063, 'https://ror.org/03nrsfd64', 'en', 1, 'https://ror.org/03nrsfd64 BrickStreet Foundation'),
(50064, 'https://ror.org/01hshyz77', 'en', 1, 'https://ror.org/01hshyz77 Campbell Institute'),
(50065, 'https://ror.org/00xny7d86', 'en', 1, 'https://ror.org/00xny7d86 Australian National Kennel Council'),
(50066, 'https://ror.org/006fqar19', 'en', 1, 'https://ror.org/006fqar19 BrightSpark Foundation'),
(50067, 'https://ror.org/05fg52t30', 'en', 1, 'https://ror.org/05fg52t30 Bullitt Foundation'),
(50068, 'https://ror.org/0222bz953', 'en', 1, 'https://ror.org/0222bz953 Cannon Foundation'),
(50069, 'https://ror.org/05d53xd56', 'en', 1, 'https://ror.org/05d53xd56 Rata Foundation'),
(50070, 'https://ror.org/048yb3886', 'en', 1, 'https://ror.org/048yb3886 Iris & B. Gerald Cantor Foundation'),
(50071, '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'),
(50072, 'https://ror.org/00jgjtc40', 'en', 1, 'https://ror.org/00jgjtc40 Capita Foundation'),
(50073, 'https://ror.org/00ttbk338', 'en', 1, 'https://ror.org/00ttbk338 Brinson Foundation'),
(50074, 'https://ror.org/02ssxad66', 'en', 1, 'https://ror.org/02ssxad66 Canadian Anesthesia Research Foundation'),
(50075, 'https://ror.org/033ha7p77', 'en', 1, 'https://ror.org/033ha7p77 Buoniconti Fund'),
(50076, 'https://ror.org/0098ca762', 'en', 1, 'https://ror.org/0098ca762 Bolyai Foundation'),
(50077, 'https://ror.org/03sxyq954', 'en', 1, 'https://ror.org/03sxyq954 CapitalCare Foundation'),
(50078, 'https://ror.org/01rhff309', 'en', 1, 'https://ror.org/01rhff309 British Antarctic Survey'),
(50079, 'https://ror.org/03n0et212', 'en', 1, 'https://ror.org/03n0et212 Bonfils-Stanton Foundation'),
(50080, 'https://ror.org/03p8km392', 'en', 1, 'https://ror.org/03p8km392 Canadian Bee Research Fund'),
(50081, 'https://ror.org/01c5nz376', 'en', 1, 'https://ror.org/01c5nz376 Association Canadienne de la Maladie Coeliaque Canadian Celiac Association'),
(50082, 'https://ror.org/00bs1j039', 'en', 1, 'https://ror.org/00bs1j039 Captain Planet Foundation'),
(50083, 'https://ror.org/01nn90r09', 'en', 1, 'https://ror.org/01nn90r09 British Association for American Studies'),
(50084, 'https://ror.org/05x26aj56', 'en', 1, 'https://ror.org/05x26aj56 Carol M. Baldwin Breast Cancer Research Fund'),
(50085, 'https://ror.org/058xgwf08', 'en', 1, 'https://ror.org/058xgwf08 Carcinoid Cancer Foundation'),
(50086, 'https://ror.org/02qkdss21', 'en', 1, 'https://ror.org/02qkdss21 Cardiovascular Institute of Philadelphia'),
(50087, 'https://ror.org/02jn85w30', 'en', 1, 'https://ror.org/02jn85w30 British Association for Chinese Studies'),
(50088, 'https://ror.org/058rrg706', 'no_lang_code', 1, 'https://ror.org/058rrg706 Carroll & Meynell Transformers (United Kingdom)'),
(50089, 'https://ror.org/04hfyyk07', 'en', 1, 'https://ror.org/04hfyyk07 Canadian Foundation for AIDS Research Fondation Canadienne de Recherche sur le Sida'),
(50090, 'https://ror.org/01yyz9v67', 'en', 1, 'https://ror.org/01yyz9v67 Care-for-Rare Foundation Care-for-Rare-Stiftung'),
(50091, 'https://ror.org/04qtw4d33', 'en', 1, 'https://ror.org/04qtw4d33 Canadian Foundation for Dietetic Research Fondation Canadienne de la Recherche en DiƩtƩtique'),
(50092, 'https://ror.org/0417n8r23', 'en', 1, 'https://ror.org/0417n8r23 Casio Science Promotion Foundation ć‚«ć‚·ć‚Ŗē§‘å­¦ęŒÆčˆˆč²”å›£'),
(50093, 'https://ror.org/00z2kr668', 'en', 1, 'https://ror.org/00z2kr668 British Association for Irish Studies'),
(50094, 'https://ror.org/04jjbpq08', 'en', 1, 'https://ror.org/04jjbpq08 Cares Foundation'),
(50095, 'https://ror.org/018r79a04', 'en', 1, 'https://ror.org/018r79a04 Burke Foundation'),
(50096, 'https://ror.org/02y2mwn89', 'en', 1, 'https://ror.org/02y2mwn89 British Association of Endocrine and Thyroid Surgeons'),
(50097, 'https://ror.org/053yw9t96', 'en', 1, 'https://ror.org/053yw9t96 Canadian Intensive Care Foundation'),
(50098, 'https://ror.org/026t1zr39', 'en', 1, 'https://ror.org/026t1zr39 Neuroendocrine Tumor Research Foundation'),
(50099, 'https://ror.org/02yyt7186', 'no_lang_code', 1, 'https://ror.org/02yyt7186 Burton D. Morgan Foundation'),
(50100, 'https://ror.org/04w315h57', 'en', 1, 'https://ror.org/04w315h57 British Biophysical Society'),
(50101, 'https://ror.org/04j4csk75', 'en', 1, 'https://ror.org/04j4csk75 Canadian Nurses Foundation La Fondation des InfirmiĆØres et Infirmiers du Canada'),
(50102, 'https://ror.org/012jwf593', 'en', 1, 'https://ror.org/012jwf593 Catalyst Foundation'),
(50103, 'https://ror.org/04se5nn61', 'en', 1, 'https://ror.org/04se5nn61 Canadian Physiotherapy Association'),
(50104, 'https://ror.org/05pefgb78', 'en', 1, 'https://ror.org/05pefgb78 Carl & Emily Fuchs Foundation'),
(50105, 'https://ror.org/020gqp277', 'en', 1, 'https://ror.org/020gqp277 British Columbia Environmental and Occupational Health Research Network'),
(50106, 'https://ror.org/026wbfy45', 'en', 1, 'https://ror.org/026wbfy45 Bush Foundation'),
(50107, 'https://ror.org/013dfdf36', 'de', 1, 'https://ror.org/013dfdf36 Carl Friedrich von Siemens Stiftung'),
(50108, 'https://ror.org/0487pzw37', 'en', 1, 'https://ror.org/0487pzw37 Butz Foundation'),
(50109, 'https://ror.org/00ndtrg66', 'en', 1, 'https://ror.org/00ndtrg66 Chicago Society for Coatings Technology'),
(50110, 'https://ror.org/014xkfq18', 'en', 1, 'https://ror.org/014xkfq18 Collaborative Spine Research Foundation'),
(50111, 'https://ror.org/03g850905', 'en', 1, 'https://ror.org/03g850905 Carl Gellert and Celia Berta Gellert Foundation'),
(50112, 'https://ror.org/038rnrm61', 'en', 1, 'https://ror.org/038rnrm61 Witter Bynner Foundation for Poetry'),
(50113, 'https://ror.org/01md9rj25', 'en', 1, 'https://ror.org/01md9rj25 Cave Research Foundation'),
(50114, 'https://ror.org/03dndb570', 'en', 1, 'https://ror.org/03dndb570 Carl M. Freeman Foundation'),
(50115, 'https://ror.org/03s3fx919', 'en', 1, 'https://ror.org/03s3fx919 Carl Marshall and Mildred Almen Reeves Foundation'),
(50116, 'https://ror.org/02fg6xr77', 'en', 1, 'https://ror.org/02fg6xr77 Cedar Tree Foundation'),
(50117, 'https://ror.org/02yfxbq86', 'en', 1, 'https://ror.org/02yfxbq86 Chiesi Foundation'),
(50118, 'https://ror.org/010taq202', 'en', 1, 'https://ror.org/010taq202 Cellmark Forensic Services'),
(50119, 'https://ror.org/04m1pcy54', 'en', 1, 'https://ror.org/04m1pcy54 Carl Wilson Foundation'),
(50120, 'https://ror.org/02wnfx958', 'en', 1, 'https://ror.org/02wnfx958 Child Cancer Foundation'),
(50121, 'https://ror.org/02x9c0555', 'en', 1, 'https://ror.org/02x9c0555 Child Development Associate'),
(50122, 'https://ror.org/04tzcp182', 'en', 1, 'https://ror.org/04tzcp182 Child Health Foundation'),
(50123, 'https://ror.org/03ng4kg22', 'en', 1, 'https://ror.org/03ng4kg22 Carl Zeiss Foundation Carl-Zeiss-Stiftung'),
(50124, 'https://ror.org/05esvpz79', 'en', 1, 'https://ror.org/05esvpz79 Celma Mastry Ovarian Cancer Foundation'),
(50125, 'https://ror.org/02jpw5905', 'en', 1, 'https://ror.org/02jpw5905 Covenant Foundation'),
(50126, 'https://ror.org/01rxe9p77', 'en', 1, 'https://ror.org/01rxe9p77 Child Neurology Foundation'),
(50127, 'https://ror.org/015np5014', 'en', 1, 'https://ror.org/015np5014 College Spark Washington'),
(50128, 'https://ror.org/03mymmj42', 'en', 1, 'https://ror.org/03mymmj42 Collins Foundation'),
(50129, 'https://ror.org/00dfm5737', 'en', 1, 'https://ror.org/00dfm5737 Apraxia KIDS'),
(50130, 'https://ror.org/04c9vvv38', 'en', 1, 'https://ror.org/04c9vvv38 Collins Medical Trust'),
(50131, 'https://ror.org/00wk91c97', 'en', 1, 'https://ror.org/00wk91c97 Cranberry Institute'),
(50132, 'https://ror.org/02aqe0j14', 'en', 1, 'https://ror.org/02aqe0j14 Childhood Brain Tumor Foundation'),
(50133, 'https://ror.org/052s8wv93', 'en', 1, 'https://ror.org/052s8wv93 An Roinn LeanaĆ­ agus GnóthaĆ­ Ɠige Department of Children and Youth Affairs'),
(50134, 'https://ror.org/010m3p429', 'en', 1, 'https://ror.org/010m3p429 Colorado Health Foundation'),
(50135, 'https://ror.org/052rprq10', 'en', 1, 'https://ror.org/052rprq10 Childrens Brittle Bone Foundation'),
(50136, 'https://ror.org/03qqxfy51', 'en', 1, 'https://ror.org/03qqxfy51 Crawford Heritage Community Foundation'),
(50137, 'https://ror.org/05v2cwf20', 'en', 1, 'https://ror.org/05v2cwf20 Childrens Cancer Foundation'),
(50138, 'https://ror.org/034j0b057', 'en', 1, 'https://ror.org/034j0b057 Childrens Cardiomyopathy Foundation'),
(50139, 'https://ror.org/032xegc37', 'en', 1, 'https://ror.org/032xegc37 Colorado Parks and Wildlife'),
(50140, 'https://ror.org/05m4bht81', 'en', 1, 'https://ror.org/05m4bht81 Childrens Fund for Glycogen Storage Disease Research'),
(50141, 'https://ror.org/03y9haj77', 'en', 1, 'https://ror.org/03y9haj77 Colorado Trust'),
(50142, 'https://ror.org/021e5n641', 'en', 1, 'https://ror.org/021e5n641 Creative Capital Foundation'),
(50143, 'https://ror.org/02epenp91', 'en', 1, 'https://ror.org/02epenp91 Cricket Island Foundation'),
(50144, 'https://ror.org/01qeds693', 'en', 1, 'https://ror.org/01qeds693 Columbia Foundation'),
(50145, 'https://ror.org/03e2dbn45', 'en', 1, 'https://ror.org/03e2dbn45 Childrens Heart Foundation'),
(50146, 'https://ror.org/01pp7xa52', 'en', 1, 'https://ror.org/01pp7xa52 Crohn''s & Colitis Australia'),
(50147, 'https://ror.org/019bgst25', 'en', 1, 'https://ror.org/019bgst25 Columbus Foundation'),
(50148, 'https://ror.org/01f2n9041', 'en', 1, 'https://ror.org/01f2n9041 Crohn''s and Colitis Canada'),
(50149, 'https://ror.org/04a6f9g28', 'en', 1, 'https://ror.org/04a6f9g28 Comanis Foundation'),
(50150, 'https://ror.org/05gnax159', 'en', 1, 'https://ror.org/05gnax159 Childrens Leukemia Foundation of Michigan'),
(50151, 'https://ror.org/008s3gd19', 'en', 1, 'https://ror.org/008s3gd19 Childrens Liver Disease Foundation'),
(50152, 'https://ror.org/02624hr86', 'en', 1, 'https://ror.org/02624hr86 Center for Land Use Interpretation'),
(50153, 'https://ror.org/01wew9097', 'en', 1, 'https://ror.org/01wew9097 Crown Property Bureau'),
(50154, 'https://ror.org/035k1cb93', 'en', 1, 'https://ror.org/035k1cb93 Children''s Neuroblastoma Cancer Foundation'),
(50155, 'https://ror.org/01tf2gj84', 'en', 1, 'https://ror.org/01tf2gj84 Communities Foundation of Texas'),
(50156, 'https://ror.org/01mx76n22', 'en', 1, 'https://ror.org/01mx76n22 Department of Trade, Industry and Competition'),
(50157, 'https://ror.org/05r9h2p80', 'en', 1, 'https://ror.org/05r9h2p80 Community Broadcasting Foundation'),
(50158, 'https://ror.org/01757ay04', 'en', 1, 'https://ror.org/01757ay04 Community Foundation for Greater Atlanta'),
(50159, 'https://ror.org/01fgdhp95', 'en', 1, 'https://ror.org/01fgdhp95 Community Foundation for Greater Buffalo'),
(50160, 'https://ror.org/04srvjp38', 'en', 1, 'https://ror.org/04srvjp38 Institute for National Strategic Studies'),
(50161, 'https://ror.org/009vxf979', 'en', 1, 'https://ror.org/009vxf979 China Foundation for Poverty Alleviation äø­å›½ę‰¶č“«åŸŗé‡‘ä¼š'),
(50162, 'https://ror.org/03je57g85', 'en', 1, 'https://ror.org/03je57g85 Desmoid Tumor Research Foundation'),
(50163, 'https://ror.org/02edgqh74', 'en', 1, 'https://ror.org/02edgqh74 Community Foundation for Muskegon County'),
(50164, 'https://ror.org/0305r3866', 'en', 1, 'https://ror.org/0305r3866 CSY China-International Hepatitis Research Foundation'),
(50165, 'https://ror.org/03dc3t652', 'en', 1, 'https://ror.org/03dc3t652 Community Foundation of Greater Des Moine'),
(50166, 'https://ror.org/032wd7d36', 'en', 1, 'https://ror.org/032wd7d36 Det Obelske Familiefond Obel Family Foundation'),
(50167, 'https://ror.org/05q0mws16', 'en', 1, 'https://ror.org/05q0mws16 Community Foundation of Broward'),
(50168, 'https://ror.org/04061j496', 'no_lang_code', 1, 'https://ror.org/04061j496 CTS Forex (Canada)'),
(50169, 'https://ror.org/05g427r55', 'en', 1, 'https://ror.org/05g427r55 Deupree Family Foundation'),
(50170, 'https://ror.org/025mwe555', 'en', 1, 'https://ror.org/025mwe555 Culinary Trust'),
(50171, 'https://ror.org/04rk31t56', 'en', 1, 'https://ror.org/04rk31t56 Community Foundation of Northeast Alabama'),
(50172, 'https://ror.org/03jvfq589', 'de', 1, 'https://ror.org/03jvfq589 Deutsche Bundesbank German Federal Bank'),
(50173, 'https://ror.org/03czrhg80', 'en', 1, 'https://ror.org/03czrhg80 Community Foundation of Central Wisconsin'),
(50174, 'https://ror.org/030d3xr95', 'de', 1, 'https://ror.org/030d3xr95 Deutsche Dystonie Gesellschaft'),
(50175, 'https://ror.org/00gknkr97', 'en', 1, 'https://ror.org/00gknkr97 Cullen Foundation'),
(50176, 'https://ror.org/04rdnb978', 'de', 1, 'https://ror.org/04rdnb978 Deutsche Kinderkrebsstiftung'),
(50177, 'https://ror.org/03zmzx398', 'en', 1, 'https://ror.org/03zmzx398 Community Foundation of Elmira Corning and the Finger Lakes'),
(50178, 'https://ror.org/01vkhxt72', 'en', 1, 'https://ror.org/01vkhxt72 Cummings Foundation'),
(50179, 'https://ror.org/053bhq168', 'en', 1, 'https://ror.org/053bhq168 Community Foundation Grand Forks East Grand Forks and Region'),
(50180, 'https://ror.org/011155x24', 'en', 1, 'https://ror.org/011155x24 Community Foundation of Greater Memphis'),
(50181, 'https://ror.org/02db9yt31', 'en', 1, 'https://ror.org/02db9yt31 Cure Brain Cancer Foundation'),
(50182, 'https://ror.org/05ezdye14', 'en', 1, 'https://ror.org/05ezdye14 CHOC Foundation'),
(50183, 'https://ror.org/016wktf60', 'en', 1, 'https://ror.org/016wktf60 Community Foundation of Greater New Britain'),
(50184, 'https://ror.org/05r5v7643', 'en', 1, 'https://ror.org/05r5v7643 CURE Childhood Cancer'),
(50185, 'https://ror.org/05svfda47', 'en', 1, 'https://ror.org/05svfda47 Community Foundation of Greene County'),
(50186, 'https://ror.org/02xgxxy58', 'en', 1, 'https://ror.org/02xgxxy58 Community Foundation of Jackson Hole'),
(50187, 'https://ror.org/05eaa2738', 'en', 1, 'https://ror.org/05eaa2738 Community Foundation of Louisville'),
(50188, 'https://ror.org/03axzfm24', 'en', 1, 'https://ror.org/03axzfm24 Community Foundation of Monroe County'),
(50189, 'https://ror.org/034g3td21', 'en', 1, 'https://ror.org/034g3td21 Cure HHT'),
(50190, 'https://ror.org/006rnrs64', 'en', 1, 'https://ror.org/006rnrs64 Community Foundation of Northern Illinois'),
(50191, 'https://ror.org/018znve60', 'en', 1, 'https://ror.org/018znve60 Central New York Community Foundation'),
(50192, 'https://ror.org/01vsrwr43', 'en', 1, 'https://ror.org/01vsrwr43 Drum Foundation'),
(50193, 'https://ror.org/04es60x64', 'en', 1, 'https://ror.org/04es60x64 Cure Kids'),
(50194, 'https://ror.org/043s56e87', 'en', 1, 'https://ror.org/043s56e87 North Carolina Community Foundation'),
(50195, 'https://ror.org/03ja4pz98', 'en', 1, 'https://ror.org/03ja4pz98 Chrest Foundation'),
(50196, 'https://ror.org/04edq9h05', 'en', 1, 'https://ror.org/04edq9h05 Cure Starts Now Foundation'),
(50197, 'https://ror.org/02d8ytq61', 'en', 1, 'https://ror.org/02d8ytq61 Dew Foundation'),
(50198, 'https://ror.org/03m58p983', 'en', 1, 'https://ror.org/03m58p983 Community Foundation of the Ozarks'),
(50199, 'https://ror.org/02ggyp989', 'en', 1, 'https://ror.org/02ggyp989 Central Policy Unit 中央政策組'),
(50200, 'https://ror.org/00qfsn733', 'en', 1, 'https://ror.org/00qfsn733 CurePSP'),
(50201, 'https://ror.org/04m4td435', 'en', 1, 'https://ror.org/04m4td435 Christie''s'),
(50202, 'https://ror.org/02c8ysx60', 'en', 1, 'https://ror.org/02c8ysx60 Centre County Community Foundation'),
(50203, 'https://ror.org/02w5edg95', 'en', 1, 'https://ror.org/02w5edg95 Community Foundation of Will County'),
(50204, 'https://ror.org/04mem9m40', 'en', 1, 'https://ror.org/04mem9m40 Diabetes Technology Society'),
(50205, 'https://ror.org/003h57f17', 'sv', 1, 'https://ror.org/003h57f17 Diabetesfonden'),
(50206, 'https://ror.org/00zkk0e65', 'en', 1, 'https://ror.org/00zkk0e65 Cushman Foundation for Foraminiferal Research'),
(50207, 'https://ror.org/014efpg78', 'en', 1, 'https://ror.org/014efpg78 Christopher Columbus Fellowship Foundation'),
(50208, 'https://ror.org/006enzj37', 'en', 1, 'https://ror.org/006enzj37 Finnish Diabetes Association Suomen Diabetesliitto'),
(50209, 'https://ror.org/00yfa2884', 'en', 1, 'https://ror.org/00yfa2884 Christopher D. Smithers Foundation'),
(50210, 'https://ror.org/02wkb0b78', 'en', 1, 'https://ror.org/02wkb0b78 Compton Foundation'),
(50211, 'https://ror.org/017qdky13', 'en', 1, 'https://ror.org/017qdky13 Cynthia and George Mitchell Foundation'),
(50212, 'https://ror.org/02229an29', 'en', 1, 'https://ror.org/02229an29 Con Alma Health Foundation'),
(50213, 'https://ror.org/02q2xaq91', 'en', 1, 'https://ror.org/02q2xaq91 Christopher Reynolds Foundation');
INSERT INTO `rors` VALUES
(50214, 'https://ror.org/03mn44j95', 'en', 1, 'https://ror.org/03mn44j95 Diamond Blackfan Anemia Foundation'),
(50215, 'https://ror.org/05n4eqf04', 'en', 1, 'https://ror.org/05n4eqf04 Cystinosis Foundation'),
(50216, 'https://ror.org/04c3fxx05', 'en', 1, 'https://ror.org/04c3fxx05 Christopher Ricardo Cystic Fibrosis Foundation'),
(50217, 'https://ror.org/00qcb6787', 'en', 1, 'https://ror.org/00qcb6787 Cerebral Palsy Foundation'),
(50218, 'https://ror.org/02r5ax782', 'en', 1, 'https://ror.org/02r5ax782 Connecticut Community Foundation'),
(50219, 'https://ror.org/05mtmsa61', 'en', 1, 'https://ror.org/05mtmsa61 Diane and Bruce Halle Foundation'),
(50220, 'https://ror.org/04cy3qv12', 'en', 1, 'https://ror.org/04cy3qv12 Connecticut Health Foundation'),
(50221, 'https://ror.org/02t2ah669', 'de', 1, 'https://ror.org/02t2ah669 Dietmar Hopp Stiftung'),
(50222, 'https://ror.org/01y4ngt02', 'en', 1, 'https://ror.org/01y4ngt02 Dimbleby Cancer Care'),
(50223, 'https://ror.org/045ggm846', 'en', 1, 'https://ror.org/045ggm846 Cystinosis Research Foundation'),
(50224, 'https://ror.org/01dmefb22', 'no_lang_code', 1, 'https://ror.org/01dmefb22 Chromasens (Germany)'),
(50225, 'https://ror.org/01gz25n41', 'en', 1, 'https://ror.org/01gz25n41 Conservation, Food and Health Foundation'),
(50226, 'https://ror.org/02s1afg98', 'en', 1, 'https://ror.org/02s1afg98 Chromosome 18 Registry & Research Society'),
(50227, 'https://ror.org/02p8p2r04', 'en', 1, 'https://ror.org/02p8p2r04 Dimmer Family Foundation'),
(50228, 'https://ror.org/01qbvd385', 'en', 1, 'https://ror.org/01qbvd385 Cervical Spine Research Society'),
(50229, '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'),
(50230, 'https://ror.org/03hv05g61', 'no_lang_code', 1, 'https://ror.org/03hv05g61 Cooley’s Anemia Foundation'),
(50231, 'https://ror.org/01acje871', 'en', 1, 'https://ror.org/01acje871 Cooper Foundation'),
(50232, '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'),
(50233, 'https://ror.org/0215cks11', 'en', 1, 'https://ror.org/0215cks11 Cooper Trewin Memorial SUDC Research Fund'),
(50234, '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'),
(50235, 'https://ror.org/00cjay913', 'en', 1, 'https://ror.org/00cjay913 Dirk Nowitzki Foundation'),
(50236, 'https://ror.org/05j492n53', 'en', 1, 'https://ror.org/05j492n53 Daiichi Sankyo Foundation of Life Science'),
(50237, 'https://ror.org/05nnhd665', 'en', 1, 'https://ror.org/05nnhd665 CH Foundation'),
(50238, 'https://ror.org/05ch0a064', 'en', 1, 'https://ror.org/05ch0a064 Doctors Cancer Foundation'),
(50239, 'https://ror.org/04j9kx436', 'en', 1, 'https://ror.org/04j9kx436 Chrysalis'),
(50240, 'https://ror.org/00x8qhz86', 'en', 1, 'https://ror.org/00x8qhz86 Corina Higginson Trust'),
(50241, 'https://ror.org/04ak25x77', 'en', 1, 'https://ror.org/04ak25x77 ChadTough Foundation'),
(50242, 'https://ror.org/052fbzq52', 'en', 1, 'https://ror.org/052fbzq52 DAISY Foundation'),
(50243, 'https://ror.org/0369ff310', 'en', 1, 'https://ror.org/0369ff310 Dominic Barker Trust'),
(50244, 'https://ror.org/03s9tpa06', 'en', 1, 'https://ror.org/03s9tpa06 Chain of Love Foundation'),
(50245, 'https://ror.org/008h32s22', 'en', 1, 'https://ror.org/008h32s22 Cosmopolitan International'),
(50246, 'https://ror.org/029a46s62', 'no_lang_code', 1, 'https://ror.org/029a46s62 Chaipattana Foundation ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ąøŠąø±ąø¢ąøžąø±ąø’ąø™ąø²'),
(50247, 'https://ror.org/00npcd820', 'en', 1, 'https://ror.org/00npcd820 Cosmos Club Foundation'),
(50248, 'https://ror.org/039md3f50', 'en', 1, 'https://ror.org/039md3f50 Cianna Medical'),
(50249, 'https://ror.org/002petj21', 'en', 1, 'https://ror.org/002petj21 Dan Jansen Foundation'),
(50250, 'https://ror.org/01qwj0517', 'no_lang_code', 1, 'https://ror.org/01qwj0517 Chaparral Energy (United States)'),
(50251, 'https://ror.org/011ptxp32', 'en', 1, 'https://ror.org/011ptxp32 Donald W. Reynolds Foundation'),
(50252, 'https://ror.org/00wch0204', 'en', 1, 'https://ror.org/00wch0204 The Char and Chuck Fowler Family Foundation'),
(50253, 'https://ror.org/03ak14x38', 'en', 1, 'https://ror.org/03ak14x38 International Association for Counterterrorism and Security Professionals'),
(50254, 'https://ror.org/055y3af70', 'en', 1, 'https://ror.org/055y3af70 Daniel Heumann Fund for Spinal Cord Research'),
(50255, 'https://ror.org/025dm5t28', 'en', 1, 'https://ror.org/025dm5t28 Donnell-Kay Foundation'),
(50256, 'https://ror.org/00575xh39', 'en', 1, 'https://ror.org/00575xh39 Charles and Lynn Schusterman Family Foundation'),
(50257, 'https://ror.org/052pyty42', 'en', 1, 'https://ror.org/052pyty42 Donner Canadian Foundation Fondation canadienne Donner'),
(50258, 'https://ror.org/05q633c04', 'en', 1, 'https://ror.org/05q633c04 Danish Movement Disorder Society Dansk Selskab For BevƦgeforstyrrelser'),
(50259, 'https://ror.org/025q5k762', 'no_lang_code', 1, 'https://ror.org/025q5k762 DonorsTrust'),
(50260, 'https://ror.org/05ky92r72', 'en', 1, 'https://ror.org/05ky92r72 Dannon Institute'),
(50261, 'https://ror.org/01s7t9a67', 'en', 1, 'https://ror.org/01s7t9a67 CINTAS Foundation'),
(50262, 'https://ror.org/02m8dvs65', 'en', 1, 'https://ror.org/02m8dvs65 Dorothea Haus Ross Foundation'),
(50263, 'https://ror.org/01mmnen89', 'en', 1, 'https://ror.org/01mmnen89 Charles and Mildred Schnurmacher Foundation'),
(50264, 'https://ror.org/02rqv6723', 'en', 1, 'https://ror.org/02rqv6723 Circulation Foundation'),
(50265, 'https://ror.org/02wctfj77', 'en', 1, 'https://ror.org/02wctfj77 Danny Fund'),
(50266, 'https://ror.org/03h68p024', 'en', 1, 'https://ror.org/03h68p024 Dorothy Rider Pool Health Care Trust'),
(50267, 'https://ror.org/03ffpww43', 'no_lang_code', 1, 'https://ror.org/03ffpww43 Danone (Canada)'),
(50268, 'https://ror.org/03df8yt27', 'en', 1, 'https://ror.org/03df8yt27 Dorothy Russell Havemeyer Foundation'),
(50269, 'https://ror.org/022ww2d20', 'en', 1, 'https://ror.org/022ww2d20 Charles D. Jacobus Family Foundation'),
(50270, 'https://ror.org/02tjrkg92', 'en', 1, 'https://ror.org/02tjrkg92 Dr. Robert C. and Veronica Atkins Foundation'),
(50271, 'https://ror.org/052z64z26', 'en', 1, 'https://ror.org/052z64z26 Danish Chiropractors’ Association Dansk Kiropraktor Forening'),
(50272, 'https://ror.org/00cj4by30', 'en', 1, 'https://ror.org/00cj4by30 CIRI Foundation'),
(50273, 'https://ror.org/00rsvkm93', 'en', 1, 'https://ror.org/00rsvkm93 Dr. Scholl Foundation'),
(50274, 'https://ror.org/04s4qhr84', 'de', 1, 'https://ror.org/04s4qhr84 Dr. Walter und Luise Freundlich Stiftung'),
(50275, 'https://ror.org/041ps8g15', 'en', 1, 'https://ror.org/041ps8g15 Doug Flutie. Jr Foundation for Autism'),
(50276, 'https://ror.org/05ej58m83', 'en', 1, 'https://ror.org/05ej58m83 Dougherty Foundation'),
(50277, 'https://ror.org/00d4d4985', 'en', 1, 'https://ror.org/00d4d4985 Charles Edison Fund'),
(50278, 'https://ror.org/056rb6h71', 'en', 1, 'https://ror.org/056rb6h71 Draper Richards Kaplan Foundation'),
(50279, 'https://ror.org/002kv3e70', 'en', 1, 'https://ror.org/002kv3e70 Douglas B. Marshall Jr. Family Foundation'),
(50280, 'https://ror.org/00mb5nt47', 'en', 1, 'https://ror.org/00mb5nt47 Darrell Gwynn Foundation'),
(50281, 'https://ror.org/02m0a5h24', 'en', 1, 'https://ror.org/02m0a5h24 LuMind Research Down Syndrome Foundation'),
(50282, 'https://ror.org/05hrjak95', 'en', 1, 'https://ror.org/05hrjak95 City West Water'),
(50283, 'https://ror.org/0105knf85', 'en', 1, 'https://ror.org/0105knf85 Dart Foundation'),
(50284, 'https://ror.org/03wkr6054', 'en', 1, 'https://ror.org/03wkr6054 DSF Charitable Foundation'),
(50285, 'https://ror.org/04xayvx70', 'en', 1, 'https://ror.org/04xayvx70 Down Syndrome Research Foundation'),
(50286, 'https://ror.org/01vwgk497', 'en', 1, 'https://ror.org/01vwgk497 CityBridge Education'),
(50287, 'https://ror.org/02h144281', 'en', 1, 'https://ror.org/02h144281 Charles Lee Powell Foundation'),
(50288, 'https://ror.org/01fkfc673', 'en', 1, 'https://ror.org/01fkfc673 Daughters of Charity Foundation of Saint Louis'),
(50289, 'https://ror.org/00rs28409', 'en', 1, 'https://ror.org/00rs28409 Duke Endowment'),
(50290, 'https://ror.org/03d4kwm92', 'en', 1, 'https://ror.org/03d4kwm92 Charles Pankow Foundation'),
(50291, 'https://ror.org/04qn6k859', 'en', 1, 'https://ror.org/04qn6k859 CJ Foundation for SIDS'),
(50292, 'https://ror.org/036nywx06', 'en', 1, 'https://ror.org/036nywx06 Dr. Herbert & Nicole Wertheim Family Foundation'),
(50293, 'https://ror.org/012nyn049', 'en', 1, 'https://ror.org/012nyn049 Duluth Superior Area Community Foundation'),
(50294, 'https://ror.org/02kd8pg21', 'en', 1, 'https://ror.org/02kd8pg21 Claneil Foundation'),
(50295, 'https://ror.org/02mkdtg06', 'en', 1, 'https://ror.org/02mkdtg06 Davis Foundations'),
(50296, 'https://ror.org/05wx81c53', 'en', 1, 'https://ror.org/05wx81c53 Clarence E. Heller Charitable Foundation'),
(50297, 'https://ror.org/04ad8nm85', 'en', 1, 'https://ror.org/04ad8nm85 Davis Phinney Foundation'),
(50298, 'https://ror.org/038854471', 'en', 1, 'https://ror.org/038854471 Dupar Foundation'),
(50299, 'https://ror.org/02vawgn43', 'en', 1, 'https://ror.org/02vawgn43 Dr. John T. Macdonald Foundation'),
(50300, 'https://ror.org/03xvgfq55', 'en', 1, 'https://ror.org/03xvgfq55 de Beaumont Foundation'),
(50301, 'https://ror.org/04m9zwa74', 'de', 1, 'https://ror.org/04m9zwa74 Claussen Simon Stiftung'),
(50302, 'https://ror.org/027gpeb78', 'en', 1, 'https://ror.org/027gpeb78 Dr. Josef Steiner Cancer Foundation'),
(50303, 'https://ror.org/04f4qr343', 'en', 1, 'https://ror.org/04f4qr343 Cleft Palate Foundation'),
(50304, 'https://ror.org/04jjqdb31', 'en', 1, 'https://ror.org/04jjqdb31 Durfee Foundation'),
(50305, 'https://ror.org/00093wj72', 'en', 1, 'https://ror.org/00093wj72 Dean Witter Foundation'),
(50306, 'https://ror.org/01g67g962', 'de', 1, 'https://ror.org/01g67g962 Dr. med. Arthur und Estella Hirzel-Callegari Stiftung'),
(50307, 'https://ror.org/0091d4119', 'no_lang_code', 1, 'https://ror.org/0091d4119 Chemotecnica (Argentina)'),
(50308, 'https://ror.org/00amxre65', 'en', 1, 'https://ror.org/00amxre65 Edward E. Ford Foundation'),
(50309, 'https://ror.org/00ka90s24', 'en', 1, 'https://ror.org/00ka90s24 Death Valley Natural History Association'),
(50310, 'https://ror.org/04nqwsb31', 'en', 1, 'https://ror.org/04nqwsb31 Dysautonomia Foundation'),
(50311, 'https://ror.org/05w8taj68', 'en', 1, 'https://ror.org/05w8taj68 Dyslexia Foundation'),
(50312, 'https://ror.org/02rb2sh19', 'en', 1, 'https://ror.org/02rb2sh19 Chemotherapy Foundation'),
(50313, 'https://ror.org/010kzff55', 'en', 1, 'https://ror.org/010kzff55 Edward F. Albee Foundation'),
(50314, 'https://ror.org/00cn8g609', 'en', 1, 'https://ror.org/00cn8g609 Dedalus Foundation'),
(50315, 'https://ror.org/00nx5ke65', 'en', 1, 'https://ror.org/00nx5ke65 Edward Lowe Foundation'),
(50316, 'https://ror.org/00zj09521', 'en', 1, 'https://ror.org/00zj09521 E. Matilda Ziegler Foundation for the Blind'),
(50317, 'https://ror.org/03h22gm35', 'en', 1, 'https://ror.org/03h22gm35 Edward P. Evans Foundation'),
(50318, 'https://ror.org/005f7f960', 'en', 1, 'https://ror.org/005f7f960 Chest Wall and Spine Deformity Research Foundation'),
(50319, 'https://ror.org/036xjse96', 'en', 1, 'https://ror.org/036xjse96 E. Rhodes and Leona B. Carpenter Foundation'),
(50320, 'https://ror.org/0472hmc50', 'en', 1, 'https://ror.org/0472hmc50 CLL Global Research Foundation'),
(50321, 'https://ror.org/020mmns30', 'en', 1, 'https://ror.org/020mmns30 Chi Omega Foundation'),
(50322, 'https://ror.org/03fpx5n61', 'en', 1, 'https://ror.org/03fpx5n61 Defense Equal Opportunity Management Institute'),
(50323, 'https://ror.org/03ztzyx54', 'no_lang_code', 1, 'https://ror.org/03ztzyx54 Chiari & Syringomyelia Foundation'),
(50324, 'https://ror.org/03a01dc42', 'no_lang_code', 1, 'https://ror.org/03a01dc42 E.O. Wilson Biodiversity Foundation'),
(50325, 'https://ror.org/009heah97', 'en', 1, 'https://ror.org/009heah97 Defense Human Resources Activity'),
(50326, 'https://ror.org/03ss9xg24', 'en', 1, 'https://ror.org/03ss9xg24 Coalition for Pulmonary Fibrosis'),
(50327, 'https://ror.org/01cttmp41', 'en', 1, 'https://ror.org/01cttmp41 Coastal Community Foundation'),
(50328, 'https://ror.org/03a0cx640', 'en', 1, 'https://ror.org/03a0cx640 Epidermolysis Bullosa Medical Research Foundation'),
(50329, 'https://ror.org/01ab2jm55', 'en', 1, 'https://ror.org/01ab2jm55 East-West Management Institute'),
(50330, 'https://ror.org/04jcfjz75', 'en', 1, 'https://ror.org/04jcfjz75 Epilepsy Foundation'),
(50331, 'https://ror.org/036hs6h32', 'en', 1, 'https://ror.org/036hs6h32 Coffs Harbour City Council'),
(50332, 'https://ror.org/023j15x08', 'en', 1, 'https://ror.org/023j15x08 Eastern Association for the Surgery of Trauma'),
(50333, 'https://ror.org/0166vvj90', 'en', 1, 'https://ror.org/0166vvj90 El Paso Community Foundation'),
(50334, 'https://ror.org/00tvbb869', 'en', 1, 'https://ror.org/00tvbb869 Episcopal Church Foundation'),
(50335, 'https://ror.org/02zbdpx12', 'en', 1, 'https://ror.org/02zbdpx12 Electri International'),
(50336, 'https://ror.org/01zqyhk59', 'en', 1, 'https://ror.org/01zqyhk59 Defense Technical Information Center'),
(50337, 'https://ror.org/02va37h22', 'no_lang_code', 1, 'https://ror.org/02va37h22 Chugoku Electric Power (Japan) äø­å›½é›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(50338, 'https://ror.org/03a8x4b06', 'en', 1, 'https://ror.org/03a8x4b06 Eppley Foundation for Research'),
(50339, 'https://ror.org/059ja6e58', 'en', 1, 'https://ror.org/059ja6e58 Defense Technology Security Administration'),
(50340, 'https://ror.org/04nvswg42', 'en', 1, 'https://ror.org/04nvswg42 Eau Claire Community Foundation'),
(50341, 'https://ror.org/00ftqkj90', 'no_lang_code', 1, 'https://ror.org/00ftqkj90 COFRA (Switzerland)'),
(50342, 'https://ror.org/016t73h24', 'en', 1, 'https://ror.org/016t73h24 Equipment Leasing & Finance Foundation'),
(50343, 'https://ror.org/00g01fs73', 'de', 1, 'https://ror.org/00g01fs73 Ebnet Stiftung'),
(50344, 'https://ror.org/051yr1559', 'en', 1, 'https://ror.org/051yr1559 DeGregorio Family Foundation'),
(50345, 'https://ror.org/02a723v03', 'en', 1, 'https://ror.org/02a723v03 Cogito Foundation'),
(50346, 'https://ror.org/03btm4d84', 'en', 1, 'https://ror.org/03btm4d84 Elias Foundation'),
(50347, 'https://ror.org/052595073', 'de', 1, 'https://ror.org/052595073 Erich Und Gertrud Roggenbuck Stiftung'),
(50348, 'https://ror.org/015z1nq23', 'en', 1, 'https://ror.org/015z1nq23 Elisabeth Severance Prentiss Foundation'),
(50349, 'https://ror.org/017wcz935', 'en', 1, 'https://ror.org/017wcz935 Elizabeth Taylor AIDS Foundation'),
(50350, 'https://ror.org/0451cv982', 'en', 1, 'https://ror.org/0451cv982 Delta Dental Plans Association'),
(50351, 'https://ror.org/00gz3wv72', 'en', 1, 'https://ror.org/00gz3wv72 Eden Hall Foundation'),
(50352, 'https://ror.org/0355jzb94', 'en', 1, 'https://ror.org/0355jzb94 Cohoes Savings Foundation'),
(50353, 'https://ror.org/04yf1p931', 'en', 1, 'https://ror.org/04yf1p931 Elmina B. Sewall Foundation'),
(50354, 'https://ror.org/02c00bp33', 'no_lang_code', 1, 'https://ror.org/02c00bp33 Ernst & Young (United States)'),
(50355, 'https://ror.org/00vsgwy54', 'en', 1, 'https://ror.org/00vsgwy54 Delta Electronics Foundation'),
(50356, 'https://ror.org/05sjnvv07', 'en', 1, 'https://ror.org/05sjnvv07 Elsa U. Pardee Foundation'),
(50357, 'https://ror.org/022qrkq94', 'en', 1, 'https://ror.org/022qrkq94 Colcom Foundation'),
(50358, 'https://ror.org/04jck5r17', 'en', 1, 'https://ror.org/04jck5r17 Elsass Fonden Elsass Foundation'),
(50359, 'https://ror.org/02mmxnk73', 'en', 1, 'https://ror.org/02mmxnk73 Coleman Foundation'),
(50360, 'https://ror.org/03w76df53', 'de', 1, 'https://ror.org/03w76df53 Ernst-Abbe-Stiftung'),
(50361, 'https://ror.org/018225234', 'en', 1, 'https://ror.org/018225234 Edna McConnell Clark Foundation'),
(50362, 'https://ror.org/04ttgxj90', 'en', 1, 'https://ror.org/04ttgxj90 Esping Family Foundation'),
(50363, 'https://ror.org/04y55ke86', 'en', 1, 'https://ror.org/04y55ke86 Falck Foundation'),
(50364, 'https://ror.org/035dcj063', 'en', 1, 'https://ror.org/035dcj063 East Morgan County Hospital'),
(50365, 'https://ror.org/024a5cr96', 'en', 1, 'https://ror.org/024a5cr96 Education and Research Foundation for Nuclear Medicine and Molecular Imaging'),
(50366, 'https://ror.org/0482m7054', 'en', 1, 'https://ror.org/0482m7054 Esther B. Kahn Charitable Foundation'),
(50367, 'https://ror.org/044fagb96', 'en', 1, 'https://ror.org/044fagb96 Dental Foundation of Oregon'),
(50368, 'https://ror.org/05pjyf321', 'en', 1, 'https://ror.org/05pjyf321 EMDR Research Foundation'),
(50369, 'https://ror.org/040x3fx63', 'en', 1, 'https://ror.org/040x3fx63 Emergency Medicine Foundation'),
(50370, 'https://ror.org/04dbfz605', 'en', 1, 'https://ror.org/04dbfz605 Educational Foundation for Women in Accounting'),
(50371, 'https://ror.org/034bxq716', 'en', 1, 'https://ror.org/034bxq716 Emergency Nurses Association'),
(50372, 'https://ror.org/03eqf0810', 'en', 1, 'https://ror.org/03eqf0810 Educational Foundation of America'),
(50373, 'https://ror.org/01stze803', 'da', 1, 'https://ror.org/01stze803 Familien Hede Nielsens Fond'),
(50374, 'https://ror.org/02vdgjm20', 'en', 1, 'https://ror.org/02vdgjm20 Emily Davie and Joseph S. Kornfeld Foundation'),
(50375, 'https://ror.org/05ggszr08', 'en', 1, 'https://ror.org/05ggszr08 Emily Dorfman Foundation for Children'),
(50376, 'https://ror.org/03dr9am58', 'no_lang_code', 1, 'https://ror.org/03dr9am58 Eduserv'),
(50377, 'https://ror.org/05nd26619', 'en', 1, 'https://ror.org/05nd26619 Emirates Foundation'),
(50378, 'https://ror.org/04hmpdq89', 'en', 1, 'https://ror.org/04hmpdq89 Eye Disease Foundation Fondation des maladies de l''oeil'),
(50379, 'https://ror.org/045bk1a41', 'fr', 1, 'https://ror.org/045bk1a41 Fondation du CHUM'),
(50380, 'https://ror.org/04ffexa42', 'en', 1, 'https://ror.org/04ffexa42 Family Care Foundation'),
(50381, 'https://ror.org/0555br587', 'en', 1, 'https://ror.org/0555br587 Employee Assistance Research Foundation'),
(50382, 'https://ror.org/041g7jm83', 'it', 1, 'https://ror.org/041g7jm83 Fondazione Umberto Veronesi'),
(50383, 'https://ror.org/01ppj1b82', 'en', 1, 'https://ror.org/01ppj1b82 Rippel Foundation'),
(50384, 'https://ror.org/0321tae61', 'fr', 1, 'https://ror.org/0321tae61 Fondation Ernst et Lucie Schmidheiny'),
(50385, 'https://ror.org/02gcdg805', 'en', 1, 'https://ror.org/02gcdg805 Fashion Group International'),
(50386, 'https://ror.org/01pjqkg29', 'en', 1, 'https://ror.org/01pjqkg29 Fats and Proteins Research Foundation'),
(50387, 'https://ror.org/034xn0k91', 'fr', 1, 'https://ror.org/034xn0k91 Fondation Hans Wilsdorf'),
(50388, 'https://ror.org/04ad3ke38', 'de', 1, 'https://ror.org/04ad3ke38 Fazit-Stiftung'),
(50389, 'https://ror.org/002chp112', 'de', 1, 'https://ror.org/002chp112 Stiftung Endoprothetik'),
(50390, 'https://ror.org/040zwh478', 'en', 1, 'https://ror.org/040zwh478 European Brain and Behaviour Society'),
(50391, 'https://ror.org/008wd8726', 'en', 1, 'https://ror.org/008wd8726 Endowment for Health'),
(50392, 'https://ror.org/0393e5v03', 'en', 1, 'https://ror.org/0393e5v03 Fonds Sluyterman van Loo Sluyterman van Loo Foundation'),
(50393, 'https://ror.org/03m2gb193', 'en', 1, 'https://ror.org/03m2gb193 Food Allergy Research and Education'),
(50394, 'https://ror.org/012sh1702', 'en', 1, 'https://ror.org/012sh1702 Danish Ministry of Climate, Energy and Utilities Energi-, Forsynings- og Klimaministeriet'),
(50395, 'https://ror.org/033myqh37', 'en', 1, 'https://ror.org/033myqh37 Forbes Funds'),
(50396, 'https://ror.org/04dagjw98', 'en', 1, 'https://ror.org/04dagjw98 Felix Scholarship'),
(50397, 'https://ror.org/055vygt66', 'en', 1, 'https://ror.org/055vygt66 Engineering Information Foundation'),
(50398, 'https://ror.org/054nv4a88', 'en', 1, 'https://ror.org/054nv4a88 Ford Family Foundation'),
(50399, 'https://ror.org/04aphzs78', 'en', 1, 'https://ror.org/04aphzs78 Fellowship Fund Inc'),
(50400, 'https://ror.org/05tp8q545', 'en', 1, 'https://ror.org/05tp8q545 Environment and Conservation Fund ē’°å¢ƒåŠč‡Ŗē„¶äæč‚²åŸŗé‡‘'),
(50401, 'https://ror.org/028r46717', 'en', 1, 'https://ror.org/028r46717 Ferree Foundation'),
(50402, 'https://ror.org/03nmw6653', 'en', 1, 'https://ror.org/03nmw6653 European Neuroendocrine Association'),
(50403, 'https://ror.org/03szkq031', 'en', 1, 'https://ror.org/03szkq031 Environment and Health Fund ×”×§×Ø×Ÿ ×œ×‘×Ø×™××•×Ŗ ההביבה'),
(50404, 'https://ror.org/00my48t58', 'fr', 1, 'https://ror.org/00my48t58 Fondation Marie et Alain Philippson'),
(50405, 'https://ror.org/0460qsp30', 'fr', 1, 'https://ror.org/0460qsp30 Fondation Max van Berchem'),
(50406, 'https://ror.org/008t3fy21', 'en', 1, 'https://ror.org/008t3fy21 Fibrolamellar Cancer Foundation'),
(50407, 'https://ror.org/02ha36g10', 'en', 1, 'https://ror.org/02ha36g10 Environmental Protection Administration č”Œę”æé™¢ē’°å¢ƒäæč­·ē½²'),
(50408, 'https://ror.org/012y0vf21', 'en', 1, 'https://ror.org/012y0vf21 Fidelity Foundation'),
(50409, 'https://ror.org/000y6m766', 'en', 1, 'https://ror.org/000y6m766 European Society for Paediatric Endocrinology'),
(50410, 'https://ror.org/01frg4p28', 'en', 1, 'https://ror.org/01frg4p28 Environmental Research and Education Foundation'),
(50411, 'https://ror.org/02z24na70', 'fr', 1, 'https://ror.org/02z24na70 Fondation Medic'),
(50412, 'https://ror.org/04md70c70', 'en', 1, 'https://ror.org/04md70c70 Field Foundation'),
(50413, 'https://ror.org/00npama54', 'en', 1, 'https://ror.org/00npama54 Rabbit Free Australia'),
(50414, 'https://ror.org/04c8t3f61', 'en', 1, 'https://ror.org/04c8t3f61 Foundation Milena Carvajal - Pro-Kartagener'),
(50415, 'https://ror.org/01y3pph13', 'fr', 1, 'https://ror.org/01y3pph13 Fondation Motrice'),
(50416, 'https://ror.org/00c1f7q63', 'en', 1, 'https://ror.org/00c1f7q63 Field Neurosciences Institute'),
(50417, 'https://ror.org/036jkzq95', 'en', 1, 'https://ror.org/036jkzq95 European Society of Cataract and Refractive Surgeons'),
(50418, 'https://ror.org/02j553a92', 'fr', 1, 'https://ror.org/02j553a92 Fondation Nanosciences'),
(50419, 'https://ror.org/00zbvt830', 'no_lang_code', 1, 'https://ror.org/00zbvt830 FightSMA'),
(50420, 'https://ror.org/0376x2274', 'en', 1, 'https://ror.org/0376x2274 European Society of Endocrinology'),
(50421, 'https://ror.org/01m9jhr72', 'en', 1, 'https://ror.org/01m9jhr72 Finnish Lung Health Association'),
(50422, 'https://ror.org/016dcgm68', 'en', 1, 'https://ror.org/016dcgm68 Foundation and Footings Society'),
(50423, 'https://ror.org/05jawdm29', 'en', 1, 'https://ror.org/05jawdm29 Foundation for a Healthy Kentucky'),
(50424, 'https://ror.org/01d4wwv56', 'fr', 1, 'https://ror.org/01d4wwv56 Fondation Roger de Spoelberch'),
(50425, 'https://ror.org/0511edk83', 'en', 1, 'https://ror.org/0511edk83 Foundation for the Advancement in Research in Medicine'),
(50426, 'https://ror.org/05x3hz149', 'en', 1, 'https://ror.org/05x3hz149 Financial Markets Foundation for Children'),
(50427, 'https://ror.org/02td35639', 'en', 1, 'https://ror.org/02td35639 Foundation for Advancement in Cancer Therapy'),
(50428, 'https://ror.org/01mrvqn21', 'en', 1, 'https://ror.org/01mrvqn21 EuroQol Research Foundation'),
(50429, 'https://ror.org/05q8csa40', 'fr', 1, 'https://ror.org/05q8csa40 Fondation Rose et Jean Hoguet'),
(50430, 'https://ror.org/00dtg9r68', 'en', 1, 'https://ror.org/00dtg9r68 Financial Services Authority'),
(50431, 'https://ror.org/00qesdp23', 'en', 1, 'https://ror.org/00qesdp23 Future Foundation'),
(50432, 'https://ror.org/02kerk826', 'en', 1, 'https://ror.org/02kerk826 FINRA Investor Education Foundation'),
(50433, 'https://ror.org/04b6a1666', 'en', 1, 'https://ror.org/04b6a1666 Fionia Fond'),
(50434, 'https://ror.org/01dvc8750', 'en', 1, 'https://ror.org/01dvc8750 Foundation for Agronomic Research'),
(50435, 'https://ror.org/00vsf1v04', 'en', 1, 'https://ror.org/00vsf1v04 McKnight Brain Research Foundation'),
(50436, 'https://ror.org/00e82pm13', 'en', 1, 'https://ror.org/00e82pm13 Foundation for Angelman Syndrome Therapeutics'),
(50437, 'https://ror.org/03jf78g10', 'fr', 1, 'https://ror.org/03jf78g10 Fondation Thierry Latran'),
(50438, 'https://ror.org/022xccz03', 'en', 1, 'https://ror.org/022xccz03 Foundation for Arable Research'),
(50439, 'https://ror.org/0539m8k84', 'fr', 1, 'https://ror.org/0539m8k84 Fondation Tuck'),
(50440, 'https://ror.org/04bpvbv63', 'en', 1, 'https://ror.org/04bpvbv63 First Fruit'),
(50441, 'https://ror.org/01me3x819', 'en', 1, 'https://ror.org/01me3x819 Everychild Foundation'),
(50442, 'https://ror.org/045rc6f24', 'it', 1, 'https://ror.org/045rc6f24 Fondazione Antonio Carlo Monzino'),
(50443, 'https://ror.org/009j61e89', 'en', 1, 'https://ror.org/009j61e89 Foundation for Women’s Wellness'),
(50444, 'https://ror.org/0388s3j86', 'en', 1, 'https://ror.org/0388s3j86 FISA Foundation'),
(50445, 'https://ror.org/04zz2b246', 'it', 1, 'https://ror.org/04zz2b246 Fondazione ART per la Ricerca sui Trapianti'),
(50446, 'https://ror.org/03aw9bj44', 'en', 1, 'https://ror.org/03aw9bj44 Fistula Foundation'),
(50447, 'https://ror.org/05nzh9f89', 'de', 1, 'https://ror.org/05nzh9f89 Evonik Stiftung'),
(50448, 'https://ror.org/04ygvt366', 'en', 1, 'https://ror.org/04ygvt366 Fleishhacker Foundation'),
(50449, 'https://ror.org/03s4rnj35', 'it', 1, 'https://ror.org/03s4rnj35 Fondazione Audiologica Varese'),
(50450, 'https://ror.org/01p0fnz19', 'en', 1, 'https://ror.org/01p0fnz19 Fletcher Jones Foundation'),
(50451, 'https://ror.org/022ag4q91', 'it', 1, 'https://ror.org/022ag4q91 Fondazioni Casali'),
(50452, 'https://ror.org/03tknt305', 'en', 1, 'https://ror.org/03tknt305 Explorers Club'),
(50453, 'https://ror.org/01fhbm930', 'en', 1, 'https://ror.org/01fhbm930 Flinders Medical Centre Foundation'),
(50454, 'https://ror.org/014twjs44', 'en', 1, 'https://ror.org/014twjs44 Foundation for Community Association Research'),
(50455, 'https://ror.org/04fkd7w53', 'it', 1, 'https://ror.org/04fkd7w53 Fondazione Cariparma'),
(50456, 'https://ror.org/0587jcv93', 'en', 1, 'https://ror.org/0587jcv93 Foundation To Eradicate Duchenne'),
(50457, 'https://ror.org/05323zs40', 'en', 1, 'https://ror.org/05323zs40 Foundation for Economic Education'),
(50458, 'https://ror.org/0314qvz14', 'en', 1, 'https://ror.org/0314qvz14 Foellinger Foundation'),
(50459, 'https://ror.org/05r91hj80', 'en', 1, 'https://ror.org/05r91hj80 EyeSight Foundation of Alabama'),
(50460, 'https://ror.org/00baqjm67', 'en', 1, 'https://ror.org/00baqjm67 Foundation for End of Life Care'),
(50461, 'https://ror.org/00s37na25', 'it', 1, 'https://ror.org/00s37na25 Fondazione Carical - Cassa di Risparmio di Calabria e di Lucania'),
(50462, 'https://ror.org/00cfk7y53', 'it', 1, 'https://ror.org/00cfk7y53 Fondazione Cassa Di Risparmio Di Cento'),
(50463, 'https://ror.org/029x73965', 'fr', 1, 'https://ror.org/029x73965 Fondation Acteria'),
(50464, 'https://ror.org/04mjnb932', 'it', 1, 'https://ror.org/04mjnb932 Fondazione Cassa di Risparmio Civitavecchia'),
(50465, 'https://ror.org/03kz2rg33', 'en', 1, 'https://ror.org/03kz2rg33 F. M. Kirby Foundation'),
(50466, 'https://ror.org/01mprm944', 'en', 1, 'https://ror.org/01mprm944 Foundation for Global Scholars'),
(50467, 'https://ror.org/03krr1869', 'it', 1, 'https://ror.org/03krr1869 Fondazione Cassa di Risparmio di Foligno'),
(50468, 'https://ror.org/037ny3p81', 'en', 1, 'https://ror.org/037ny3p81 Frances P. Bunnelle Foundation'),
(50469, 'https://ror.org/03c79xe68', 'it', 1, 'https://ror.org/03c79xe68 Fondazione Cassa di Risparmio di Genova e Imperia'),
(50470, 'https://ror.org/055e82g34', 'en', 1, 'https://ror.org/055e82g34 Foundation for Iranian Studies'),
(50471, 'https://ror.org/04121g745', 'en', 1, 'https://ror.org/04121g745 FACE Foundation'),
(50472, 'https://ror.org/01cr00p51', 'it', 1, 'https://ror.org/01cr00p51 Fondazione di Piacenza e Vigevano'),
(50473, 'https://ror.org/03p5taw69', 'en', 1, 'https://ror.org/03p5taw69 Foundation for Middle East Peace'),
(50474, 'https://ror.org/05jhnab13', 'it', 1, 'https://ror.org/05jhnab13 Fondazione Pisa'),
(50475, 'https://ror.org/03g3g6c84', 'en', 1, 'https://ror.org/03g3g6c84 Foundation for National Parks and Wildlife'),
(50476, 'https://ror.org/05ahejj17', 'it', 1, 'https://ror.org/05ahejj17 Fondazione Cassa di Risparmio di Pistoia e Pescia'),
(50477, 'https://ror.org/01cqrth30', 'fr', 1, 'https://ror.org/01cqrth30 Fondation Arthritis'),
(50478, 'https://ror.org/0299hbx29', 'en', 1, 'https://ror.org/0299hbx29 Francis Family Foundation'),
(50479, 'https://ror.org/04febt404', 'en', 1, 'https://ror.org/04febt404 Fahs-Beck Fund for Research and Experimentation'),
(50480, 'https://ror.org/04wkyys07', 'it', 1, 'https://ror.org/04wkyys07 Fondazione Cariverona'),
(50481, 'https://ror.org/04h7fev25', 'fr', 1, 'https://ror.org/04h7fev25 Fondation Bertarelli'),
(50482, 'https://ror.org/05rbt5y67', 'it', 1, 'https://ror.org/05rbt5y67 Fondazione CON IL SUD'),
(50483, 'https://ror.org/00wct8y22', 'en', 1, 'https://ror.org/00wct8y22 Frank H and Eva B Buck Foundation'),
(50484, 'https://ror.org/048g79687', 'en', 1, 'https://ror.org/048g79687 Wild Sheep Foundation'),
(50485, 'https://ror.org/02p3abx23', 'fr', 1, 'https://ror.org/02p3abx23 Fondation Bettencourt Schueller'),
(50486, 'https://ror.org/00t2vyc14', 'it', 1, 'https://ror.org/00t2vyc14 UniversitĆ  a Vicenza'),
(50487, 'https://ror.org/009p94737', 'en', 1, 'https://ror.org/009p94737 Frank Hadley Ginn and Cornelia Root Ginn Charitable Trust'),
(50488, 'https://ror.org/053khm112', 'en', 1, 'https://ror.org/053khm112 Frankel Family Foundation'),
(50489, 'https://ror.org/01sdk1n29', 'en', 1, 'https://ror.org/01sdk1n29 Fuji Foundation for Protein Research ćƒ•ć‚”ć‚¦ć‚øćƒ¼ć‚æćƒ³ćƒ‘ć‚Æč³Ŗē ”ē©¶č²”å›£'),
(50490, 'https://ror.org/02m0qsq54', 'it', 1, 'https://ror.org/02m0qsq54 Fondazione Europea Ricerca Biomedica'),
(50491, 'https://ror.org/02tstf772', 'it', 1, 'https://ror.org/02tstf772 Fondazione Alazio'),
(50492, 'https://ror.org/050apvm78', 'en', 1, 'https://ror.org/050apvm78 Fraxa Research Foundation'),
(50493, 'https://ror.org/02fbng346', 'en', 1, 'https://ror.org/02fbng346 Foundation for Personality and Social Psychology'),
(50494, 'https://ror.org/05db0d889', 'en', 1, 'https://ror.org/05db0d889 Fondazione Grigioni per il Morbo di Parkinson Grigioni Foundation for Parkinson''s disease'),
(50495, 'https://ror.org/05ya80s18', 'en', 1, 'https://ror.org/05ya80s18 Fred and Mary Koch Foundation'),
(50496, 'https://ror.org/0281fad83', 'en', 1, 'https://ror.org/0281fad83 Parenteral Drug Association'),
(50497, 'https://ror.org/03pptej51', 'it', 1, 'https://ror.org/03pptej51 Fondazione Guido Berlucchi'),
(50498, 'https://ror.org/04bc0kj52', 'en', 1, 'https://ror.org/04bc0kj52 Fujiwara Natural History Foundation č—¤åŽŸč‡Ŗē„¶ę­“å²č²”å›£'),
(50499, 'https://ror.org/04wp26z07', 'en', 1, 'https://ror.org/04wp26z07 Fred J Brotherton Charitable Foundation'),
(50500, 'https://ror.org/01bcmwk98', 'en', 1, 'https://ror.org/01bcmwk98 Brain Canada Foundation'),
(50501, 'https://ror.org/03g5saw48', 'en', 1, 'https://ror.org/03g5saw48 100 Black Men of America'),
(50502, 'https://ror.org/02w70xk53', 'en', 1, 'https://ror.org/02w70xk53 Fred L Emerson Foundation'),
(50503, 'https://ror.org/010zvgy46', 'en', 1, 'https://ror.org/010zvgy46 Encore'),
(50504, 'https://ror.org/05aawzp88', 'en', 1, 'https://ror.org/05aawzp88 Great Minds'),
(50505, 'https://ror.org/05pz1ah39', 'en', 1, 'https://ror.org/05pz1ah39 Aspire Public Schools'),
(50506, 'https://ror.org/04kfydn45', 'en', 1, 'https://ror.org/04kfydn45 Cato Institute'),
(50507, 'https://ror.org/053aytr73', 'en', 1, 'https://ror.org/053aytr73 Accion International'),
(50508, 'https://ror.org/01ajd9545', 'en', 1, 'https://ror.org/01ajd9545 Common Ground Research Networks'),
(50509, 'https://ror.org/01527h266', 'en', 1, 'https://ror.org/01527h266 Enhancing Financial Innovation & Access'),
(50510, 'https://ror.org/007w9h140', 'en', 1, 'https://ror.org/007w9h140 People ''s Liberation Army 451 Hospital 解放军451医院'),
(50511, 'https://ror.org/03bvrvh83', 'en', 1, 'https://ror.org/03bvrvh83 Association of Theological Schools'),
(50512, 'https://ror.org/02zqy5k53', 'en', 1, 'https://ror.org/02zqy5k53 Common Sense Media'),
(50513, 'https://ror.org/040z8fc91', 'en', 1, 'https://ror.org/040z8fc91 Consortium of Christian Relief and Development Associations'),
(50514, 'https://ror.org/01kntxs33', 'no_lang_code', 1, 'https://ror.org/01kntxs33 Enviu (Netherlands)'),
(50515, 'https://ror.org/01485c733', 'en', 1, 'https://ror.org/01485c733 AchieveMpls'),
(50516, 'https://ror.org/03bknpx96', 'no_lang_code', 1, 'https://ror.org/03bknpx96 Epsilon Therapeutics (United States)'),
(50517, 'https://ror.org/0103zr797', 'en', 1, 'https://ror.org/0103zr797 Center for Educational Leadership and Technology'),
(50518, 'https://ror.org/03ashfw15', 'en', 1, 'https://ror.org/03ashfw15 Communities in Schools of Renton'),
(50519, 'https://ror.org/03zbdkx15', 'en', 1, 'https://ror.org/03zbdkx15 Achievement First'),
(50520, 'https://ror.org/00gdp2d15', 'no_lang_code', 1, 'https://ror.org/00gdp2d15 Eram Scientific Solutions (India)'),
(50521, 'https://ror.org/020fqx327', 'en', 1, 'https://ror.org/020fqx327 Achievement School District'),
(50522, 'https://ror.org/02m5ztg20', 'en', 1, 'https://ror.org/02m5ztg20 Communities in School'),
(50523, 'https://ror.org/02wqsek53', 'en', 1, 'https://ror.org/02wqsek53 Achieving the Dream'),
(50524, 'https://ror.org/011bmks03', 'en', 1, 'https://ror.org/011bmks03 Community for Youth'),
(50525, 'https://ror.org/04120ay35', 'no_lang_code', 1, 'https://ror.org/04120ay35 eSpark Learning (United States)'),
(50526, 'https://ror.org/03dnfcb20', 'en', 1, 'https://ror.org/03dnfcb20 Center for Community Change'),
(50527, 'https://ror.org/0497n8p79', 'en', 1, 'https://ror.org/0497n8p79 Acrobatiq'),
(50528, 'https://ror.org/01431mg04', 'en', 1, 'https://ror.org/01431mg04 Act One'),
(50529, 'https://ror.org/025cyvq34', 'no_lang_code', 1, 'https://ror.org/025cyvq34 Athena Infonomics (India)'),
(50530, 'https://ror.org/04hzpm856', 'en', 1, 'https://ror.org/04hzpm856 Community Foundation of North Central Washington'),
(50531, 'https://ror.org/054ak8145', 'en', 1, 'https://ror.org/054ak8145 European Scientific Working group on Influenza'),
(50532, 'https://ror.org/001m1z350', 'en', 1, 'https://ror.org/001m1z350 Community Foundation of South Puget Sound'),
(50533, 'https://ror.org/00496yk95', 'en', 1, 'https://ror.org/00496yk95 Atlanta Public Schools'),
(50534, 'https://ror.org/05frb5d17', 'en', 1, 'https://ror.org/05frb5d17 Ethnic Arts Council of Los Angeles'),
(50535, 'https://ror.org/03eys0150', 'en', 1, 'https://ror.org/03eys0150 Center for Curriculum Redesign'),
(50536, 'https://ror.org/01xpmpn11', 'en', 1, 'https://ror.org/01xpmpn11 Atlantic Street Center'),
(50537, 'https://ror.org/0292f6736', 'en', 1, 'https://ror.org/0292f6736 Community Initiatives'),
(50538, 'https://ror.org/051k8ns77', 'en', 1, 'https://ror.org/051k8ns77 Center for Energy Workforce Development'),
(50539, 'https://ror.org/049r37a68', 'en', 1, 'https://ror.org/049r37a68 Center for Financial Services Innovation'),
(50540, 'https://ror.org/03j44yq97', 'en', 1, 'https://ror.org/03j44yq97 Community Youth Services'),
(50541, 'https://ror.org/01pgn1y88', 'en', 1, 'https://ror.org/01pgn1y88 ActionAid'),
(50542, 'https://ror.org/03zp31h16', 'en', 1, 'https://ror.org/03zp31h16 Acton Institute'),
(50543, 'https://ror.org/05x1xqk69', 'en', 1, 'https://ror.org/05x1xqk69 Center for Inspired Teaching'),
(50544, 'https://ror.org/00jhzb822', 'no_lang_code', 1, 'https://ror.org/00jhzb822 Acuitus (United States)'),
(50545, 'https://ror.org/02t57sv80', 'no_lang_code', 1, 'https://ror.org/02t57sv80 Atomo Diagnostics'),
(50546, 'https://ror.org/04z32jy09', 'en', 1, 'https://ror.org/04z32jy09 European Network on Debt and Development'),
(50547, 'https://ror.org/05gp08a36', 'en', 1, 'https://ror.org/05gp08a36 Acumen'),
(50548, 'https://ror.org/04mxyy281', 'en', 1, 'https://ror.org/04mxyy281 Center for Pastor Theologians'),
(50549, 'https://ror.org/02khx6d29', 'en', 1, 'https://ror.org/02khx6d29 Battelle For Kids'),
(50550, 'https://ror.org/03tpee522', 'en', 1, 'https://ror.org/03tpee522 Every Mother Counts'),
(50551, 'https://ror.org/031tkkf47', 'en', 1, 'https://ror.org/031tkkf47 Adam Smith Institute'),
(50552, 'https://ror.org/00axr9h76', 'en', 1, 'https://ror.org/00axr9h76 Center for Public Justice'),
(50553, 'https://ror.org/03p5vh095', 'en', 1, 'https://ror.org/03p5vh095 Complete College America'),
(50554, 'https://ror.org/021qqv739', 'en', 1, 'https://ror.org/021qqv739 Beacon Center of Tennessee'),
(50555, 'https://ror.org/05pe87g24', 'en', 1, 'https://ror.org/05pe87g24 Concern Worldwide US'),
(50556, 'https://ror.org/02f1cca66', 'en', 1, 'https://ror.org/02f1cca66 Center for Reform of School Systems'),
(50557, 'https://ror.org/01t418a56', 'pt', 1, 'https://ror.org/01t418a56 Fundação de Apoio ao Desenvolvimento da Computação Científica'),
(50558, 'https://ror.org/04134r903', 'en', 1, 'https://ror.org/04134r903 Connected Nation'),
(50559, 'https://ror.org/01w7qtj07', 'en', 1, 'https://ror.org/01w7qtj07 Center for Strengthening the Teaching Profession'),
(50560, 'https://ror.org/01hgje476', 'en', 1, 'https://ror.org/01hgje476 Children Youth and Family Collaborative'),
(50561, 'https://ror.org/0213kt015', 'en', 1, 'https://ror.org/0213kt015 Faith in Public Life'),
(50562, 'https://ror.org/05wng8211', 'en', 1, 'https://ror.org/05wng8211 Becket Fund for Religious Liberty'),
(50563, 'https://ror.org/022sa6t23', 'en', 1, 'https://ror.org/022sa6t23 Family Care International'),
(50564, 'https://ror.org/05yh0gb04', 'no_lang_code', 1, 'https://ror.org/05yh0gb04 Advenio TecnoSys (India)'),
(50565, 'https://ror.org/046185q66', 'en', 1, 'https://ror.org/046185q66 Center for the Study of Technology and Society'),
(50566, 'https://ror.org/011s5bv71', 'en', 1, 'https://ror.org/011s5bv71 Aerosan'),
(50567, 'https://ror.org/01va8tm89', 'en', 1, 'https://ror.org/01va8tm89 Consortium for DEWATS Dissemination Society'),
(50568, 'https://ror.org/047drby29', 'no_lang_code', 1, 'https://ror.org/047drby29 AfricaBio'),
(50569, 'https://ror.org/03bpjrg09', 'en', 1, 'https://ror.org/03bpjrg09 CUTS International'),
(50570, 'https://ror.org/051s40g85', 'en', 1, 'https://ror.org/051s40g85 Farm Concern International'),
(50571, 'https://ror.org/05gqz0k77', 'en', 1, 'https://ror.org/05gqz0k77 African Development Bank Group'),
(50572, 'https://ror.org/00g156b94', 'en', 1, 'https://ror.org/00g156b94 Center for Theology and the Natural Sciences'),
(50573, 'https://ror.org/027e6vw02', 'en', 1, 'https://ror.org/027e6vw02 African Evaluation Association'),
(50574, 'https://ror.org/05vwvtg56', 'no_lang_code', 1, 'https://ror.org/05vwvtg56 Context Network (United States)'),
(50575, 'https://ror.org/03q02hd35', 'en', 1, 'https://ror.org/03q02hd35 Fighting Infectious Diseases in Emerging Countries'),
(50576, 'https://ror.org/04befzh73', 'no_lang_code', 1, 'https://ror.org/04befzh73 African Fertilizer and Agribusiness Partnership'),
(50577, 'https://ror.org/012jedj89', 'no_lang_code', 1, 'https://ror.org/012jedj89 African Water Association'),
(50578, 'https://ror.org/00yp23m74', 'en', 1, 'https://ror.org/00yp23m74 Centre for Budget and Governance Accountability'),
(50579, 'https://ror.org/00bsqq263', 'no_lang_code', 1, 'https://ror.org/00bsqq263 AgBiome (United States)'),
(50580, 'https://ror.org/01prhq989', 'en', 1, 'https://ror.org/01prhq989 Corporation for Public Broadcasting'),
(50581, 'https://ror.org/04t947081', 'en', 1, 'https://ror.org/04t947081 Financial Sector Deepening Trust'),
(50582, 'https://ror.org/055xdas15', 'no_lang_code', 1, 'https://ror.org/055xdas15 AIM Group (Tanzania)'),
(50583, 'https://ror.org/04mtb9h21', 'en', 1, 'https://ror.org/04mtb9h21 Finca International'),
(50584, 'https://ror.org/0377kgt41', 'en', 1, 'https://ror.org/0377kgt41 Communities United'),
(50585, 'https://ror.org/01trfwv98', 'en', 1, 'https://ror.org/01trfwv98 Boys and Girls Clubs'),
(50586, 'https://ror.org/02vyhmv78', 'en', 1, 'https://ror.org/02vyhmv78 Council of the Great City Schools'),
(50587, 'https://ror.org/022rqag31', 'en', 1, 'https://ror.org/022rqag31 Albuquerque Public Schools'),
(50588, 'https://ror.org/00xgry947', 'no_lang_code', 1, 'https://ror.org/00xgry947 FinMark Trust'),
(50589, 'https://ror.org/0398nv697', 'no_lang_code', 1, 'https://ror.org/0398nv697 Coxswain Social Investment Plus (Tunisia)'),
(50590, 'https://ror.org/0270h7d11', 'en', 1, 'https://ror.org/0270h7d11 All Hands Raised'),
(50591, 'https://ror.org/03tb7cf45', 'en', 1, 'https://ror.org/03tb7cf45 Firstline Schools'),
(50592, 'https://ror.org/014kvbx03', 'en', 1, 'https://ror.org/014kvbx03 Allegheny Intermediate Unit'),
(50593, 'https://ror.org/048gjaw83', 'no_lang_code', 1, 'https://ror.org/048gjaw83 Craft Technologies (United States)'),
(50594, 'https://ror.org/03n9mb487', 'no_lang_code', 1, 'https://ror.org/03n9mb487 Bempu'),
(50595, 'https://ror.org/00tbqb195', 'en', 1, 'https://ror.org/00tbqb195 Florida Immigrant Coalition'),
(50596, 'https://ror.org/05jbdx649', 'en', 1, 'https://ror.org/05jbdx649 Cerego'),
(50597, 'https://ror.org/009qarj13', 'en', 1, 'https://ror.org/009qarj13 Day1'),
(50598, 'https://ror.org/025s5m774', 'en', 1, 'https://ror.org/025s5m774 Cristo Rey Network'),
(50599, 'https://ror.org/039sz0x75', 'en', 1, 'https://ror.org/039sz0x75 Change the Equation'),
(50600, 'https://ror.org/00z165e40', 'no_lang_code', 1, 'https://ror.org/00z165e40 Alma Sana'),
(50601, 'https://ror.org/035b1yw16', 'en', 1, 'https://ror.org/035b1yw16 Critical Review Foundation'),
(50602, 'https://ror.org/03m6vhh37', 'no_lang_code', 1, 'https://ror.org/03m6vhh37 EurActiv (Belgium)'),
(50603, 'https://ror.org/01etk5d84', 'en', 1, 'https://ror.org/01etk5d84 America Abroad Media'),
(50604, 'https://ror.org/002vm7324', 'no_lang_code', 1, 'https://ror.org/002vm7324 Cupron (United States)'),
(50605, 'https://ror.org/02ys95c13', 'en', 1, 'https://ror.org/02ys95c13 Fons Vitae'),
(50606, 'https://ror.org/00b325j77', 'en', 1, 'https://ror.org/00b325j77 Character Counts Mid Shore'),
(50607, 'https://ror.org/03t66w580', 'no_lang_code', 1, 'https://ror.org/03t66w580 VFO (United States)'),
(50608, 'https://ror.org/032s01b40', 'en', 1, 'https://ror.org/032s01b40 Czech Christian Academy ČeskĆ” KřesÅ„anskĆ” Akademie'),
(50609, 'https://ror.org/00rgs1167', 'en', 1, 'https://ror.org/00rgs1167 Benjamin Franklin Tercentenary'),
(50610, 'https://ror.org/04j0zpz40', 'en', 1, 'https://ror.org/04j0zpz40 Dalberg Global Development Advisors'),
(50611, 'https://ror.org/02pj41y46', 'en', 1, 'https://ror.org/02pj41y46 Character'),
(50612, 'https://ror.org/01dbfn577', 'en', 1, 'https://ror.org/01dbfn577 Feeding America'),
(50613, 'https://ror.org/04m8gzf13', 'en', 1, 'https://ror.org/04m8gzf13 Berks County Public Libraries'),
(50614, 'https://ror.org/04k8z2c06', 'en', 1, 'https://ror.org/04k8z2c06 Daviess County Public Schools'),
(50615, 'https://ror.org/02r41bx44', 'en', 1, 'https://ror.org/02r41bx44 Character Scotland'),
(50616, 'https://ror.org/00drv2g38', 'no_lang_code', 1, 'https://ror.org/00drv2g38 Better People (United States)'),
(50617, 'https://ror.org/056q6cq39', 'en', 1, 'https://ror.org/056q6cq39 Developing Countries Vaccine Manufactures Network'),
(50618, 'https://ror.org/02pxbb382', 'no_lang_code', 1, 'https://ror.org/02pxbb382 Free to Choose Network (United States)'),
(50619, 'https://ror.org/02wcsvn48', 'en', 1, 'https://ror.org/02wcsvn48 Charter School Growth Fund'),
(50620, 'https://ror.org/01kqg4m05', 'en', 1, 'https://ror.org/01kqg4m05 American International Health Alliance'),
(50621, 'https://ror.org/0234w4k48', 'en', 1, 'https://ror.org/0234w4k48 Forsyth County Schools'),
(50622, 'https://ror.org/00s2t1783', 'en', 1, 'https://ror.org/00s2t1783 American Islamic Congress'),
(50623, 'https://ror.org/030m3jr74', 'en', 1, 'https://ror.org/030m3jr74 Center for Children & Youth Justice'),
(50624, 'https://ror.org/03rb22t72', 'en', 1, 'https://ror.org/03rb22t72 Bidwell Memorial Presbyterian Church'),
(50625, 'https://ror.org/05rtqvx30', 'en', 1, 'https://ror.org/05rtqvx30 American Public Media'),
(50626, 'https://ror.org/01nd4v777', 'en', 1, 'https://ror.org/01nd4v777 Children Now'),
(50627, 'https://ror.org/015m9wz56', 'en', 1, 'https://ror.org/015m9wz56 Youth Today'),
(50628, 'https://ror.org/019kycv16', 'en', 1, 'https://ror.org/019kycv16 Foundation for Teaching Economics'),
(50629, 'https://ror.org/02zqt3j23', 'en', 1, 'https://ror.org/02zqt3j23 Cradle of Liberty Council Boy Scouts of America'),
(50630, 'https://ror.org/04jftwm50', 'en', 1, 'https://ror.org/04jftwm50 Free the Slaves'),
(50631, 'https://ror.org/01yp0ar11', 'en', 1, 'https://ror.org/01yp0ar11 Biologos Foundation'),
(50632, 'https://ror.org/032bmj362', 'en', 1, 'https://ror.org/032bmj362 Demos'),
(50633, 'https://ror.org/0556xc623', 'en', 1, 'https://ror.org/0556xc623 Children''s Home Society of Washington'),
(50634, 'https://ror.org/02z1p6e80', 'en', 1, 'https://ror.org/02z1p6e80 Denver Public Schools'),
(50635, 'https://ror.org/03jvmdp91', 'en', 1, 'https://ror.org/03jvmdp91 America''s Promise Alliance'),
(50636, 'https://ror.org/04ewjy824', 'en', 1, 'https://ror.org/04ewjy824 Biomass Controls'),
(50637, 'https://ror.org/011kr2t58', 'en', 1, 'https://ror.org/011kr2t58 Department of Housing and Community Development'),
(50638, 'https://ror.org/00xqbkk65', 'no_lang_code', 1, 'https://ror.org/00xqbkk65 AMT (United States)'),
(50639, 'https://ror.org/02c54xs52', 'en', 1, 'https://ror.org/02c54xs52 FreedomWorks'),
(50640, 'https://ror.org/00p37gt26', 'en', 1, 'https://ror.org/00p37gt26 China International Center for Economic and Technical Exchanges äø­å›½å›½é™…ē»ęµŽęŠ€ęœÆäŗ¤ęµäø­åæƒ'),
(50641, 'https://ror.org/01y6fbx98', 'no_lang_code', 1, 'https://ror.org/01y6fbx98 Apeel Sciences (United States)'),
(50642, 'https://ror.org/03dm2p854', 'en', 1, 'https://ror.org/03dm2p854 Apex Medical Technologies (United States)'),
(50643, 'https://ror.org/02hv1r057', 'en', 1, 'https://ror.org/02hv1r057 Blue Mountain Community Foundation'),
(50644, 'https://ror.org/00w1tz996', 'no_lang_code', 1, 'https://ror.org/00w1tz996 Apprise Bio (United States)'),
(50645, 'https://ror.org/0397kcw92', 'en', 1, 'https://ror.org/0397kcw92 Design without Borders'),
(50646, 'https://ror.org/0188nfw25', 'en', 1, 'https://ror.org/0188nfw25 Friends of Children of Walla Walla'),
(50647, 'https://ror.org/04z209n06', 'no_lang_code', 1, 'https://ror.org/04z209n06 Body Surface Translations (United States)'),
(50648, 'https://ror.org/0570b1p95', 'en', 1, 'https://ror.org/0570b1p95 Christianity Today'),
(50649, 'https://ror.org/02n1k3w22', 'en', 1, 'https://ror.org/02n1k3w22 Digital Learning Department'),
(50650, 'https://ror.org/002qb7v30', 'en', 1, 'https://ror.org/002qb7v30 Citizen Schools'),
(50651, 'https://ror.org/04jaxp997', 'en', 1, 'https://ror.org/04jaxp997 Austrian Economics Center'),
(50652, 'https://ror.org/01vpve811', 'en', 1, 'https://ror.org/01vpve811 District of Columbia College Access Program'),
(50653, 'https://ror.org/005aqed95', 'en', 1, 'https://ror.org/005aqed95 DKT International'),
(50654, 'https://ror.org/04caf4057', 'no_lang_code', 1, 'https://ror.org/04caf4057 Frontier Environmental Technology (United States)'),
(50655, 'https://ror.org/00wth1s13', 'no_lang_code', 1, 'https://ror.org/00wth1s13 Arcady Group (United States)'),
(50656, 'https://ror.org/05fhw8710', 'en', 1, 'https://ror.org/05fhw8710 Durbar Mahila Samanwaya Committee ą¦¦ą§ą¦°ą§ą¦¬ą¦¾ą¦° মহিলা ą¦øą¦®ą¦Øą§ą¦¬ą¦Æą¦¼ সমিতি'),
(50657, 'https://ror.org/01wpwah91', 'en', 1, 'https://ror.org/01wpwah91 FSG'),
(50658, 'https://ror.org/00vzdn947', 'en', 1, 'https://ror.org/00vzdn947 Civic Builders'),
(50659, 'https://ror.org/05vpv9927', 'en', 1, 'https://ror.org/05vpv9927 Boston Schools Fund'),
(50660, 'https://ror.org/01xgsxb78', 'no_lang_code', 1, 'https://ror.org/01xgsxb78 Dushtha Shasthya Kendra'),
(50661, 'https://ror.org/04tr0pv18', 'no', 1, 'https://ror.org/04tr0pv18 CIVITA'),
(50662, 'https://ror.org/013yrxa12', 'no_lang_code', 1, 'https://ror.org/013yrxa12 Arsenal Medical (United States)'),
(50663, 'https://ror.org/05ympyt63', 'en', 1, 'https://ror.org/05ympyt63 E3 Alliance'),
(50664, 'https://ror.org/007nj9n76', 'en', 1, 'https://ror.org/007nj9n76 BRAC USA'),
(50665, 'https://ror.org/05h3vs194', 'en', 1, 'https://ror.org/05h3vs194 National Jewish Center for Learning and Leadership'),
(50666, 'https://ror.org/04x3eb318', 'no_lang_code', 1, 'https://ror.org/04x3eb318 Brandtone (Ireland)'),
(50667, 'https://ror.org/05bevn213', 'en', 1, 'https://ror.org/05bevn213 East Bay Community Foundation'),
(50668, 'https://ror.org/034f25535', 'en', 1, 'https://ror.org/034f25535 Ashoka'),
(50669, 'https://ror.org/01d0re264', 'en', 1, 'https://ror.org/01d0re264 Fund for Public Schools'),
(50670, 'https://ror.org/01bhf4h93', 'no_lang_code', 1, 'https://ror.org/01bhf4h93 EdSurge (United States)'),
(50671, 'https://ror.org/02mzaks39', 'en', 1, 'https://ror.org/02mzaks39 Clallam County YMCA'),
(50672, 'https://ror.org/05q31e892', 'es', 1, 'https://ror.org/05q31e892 Fundación In Terris'),
(50673, 'https://ror.org/0426jn037', 'en', 1, 'https://ror.org/0426jn037 Education Reform Now'),
(50674, 'https://ror.org/02ytjmy25', 'en', 1, 'https://ror.org/02ytjmy25 Asian Americans Advancing Justice'),
(50675, 'https://ror.org/03bfa4276', 'en', 1, 'https://ror.org/03bfa4276 Funders Together to End Homelessness'),
(50676, 'https://ror.org/002m9xv20', 'en', 1, 'https://ror.org/002m9xv20 Educurious'),
(50677, 'https://ror.org/00nx60023', 'en', 1, 'https://ror.org/00nx60023 Brooke Charter Schools'),
(50678, 'https://ror.org/05j9tdb35', 'no_lang_code', 1, 'https://ror.org/05j9tdb35 Clarke (United States)'),
(50679, 'https://ror.org/0572j1008', 'en', 1, 'https://ror.org/0572j1008 Missouri Heart Center'),
(50680, 'https://ror.org/01zccn017', 'en', 1, 'https://ror.org/01zccn017 GameDesk'),
(50681, 'https://ror.org/0296xkk95', 'no_lang_code', 1, 'https://ror.org/0296xkk95 Edumetrics (United States)'),
(50682, 'https://ror.org/03jwxk796', 'no_lang_code', 1, 'https://ror.org/03jwxk796 Clinvet'),
(50683, 'https://ror.org/02h6aq665', 'en', 1, 'https://ror.org/02h6aq665 El Centro de la Raza'),
(50684, 'https://ror.org/03e3sv174', 'en', 1, 'https://ror.org/03e3sv174 Bull City Learning'),
(50685, 'https://ror.org/012a8y118', 'no_lang_code', 1, 'https://ror.org/012a8y118 Cloud Tiger Media (United States)');
INSERT INTO `rors` VALUES
(50686, 'https://ror.org/00jy1b467', 'en', 1, 'https://ror.org/00jy1b467 Busara Center for Behavioral Economics'),
(50687, 'https://ror.org/00s9d5e28', 'en', 1, 'https://ror.org/00s9d5e28 Global Alliance for Rabies Control'),
(50688, 'https://ror.org/035svq226', 'no_lang_code', 1, 'https://ror.org/035svq226 CogBooks (United Kingdom)'),
(50689, 'https://ror.org/02js8j925', 'en', 1, 'https://ror.org/02js8j925 Cade Museum'),
(50690, 'https://ror.org/004nf4f47', 'en', 1, 'https://ror.org/004nf4f47 Georgia Budget & Policy Institute'),
(50691, 'https://ror.org/01pmtzj45', 'en', 1, 'https://ror.org/01pmtzj45 Ellipsis'),
(50692, 'https://ror.org/03bh5kx55', 'no_lang_code', 1, 'https://ror.org/03bh5kx55 Camber Collective (United States)'),
(50693, 'https://ror.org/01748j177', 'en', 1, 'https://ror.org/01748j177 Collaborative Africa Budget Reform Initiative'),
(50694, 'https://ror.org/00xe15p12', 'en', 1, 'https://ror.org/00xe15p12 Emerald Cities Collaborative'),
(50695, 'https://ror.org/04rpnrw35', 'en', 1, 'https://ror.org/04rpnrw35 Cambridge Muslim College'),
(50696, 'https://ror.org/02ejxt329', 'en', 1, 'https://ror.org/02ejxt329 College Summit'),
(50697, 'https://ror.org/04rqj7157', 'en', 1, 'https://ror.org/04rqj7157 Global Communities'),
(50698, 'https://ror.org/02y70wg25', 'en', 1, 'https://ror.org/02y70wg25 Colorado Children''s Campaign'),
(50699, 'https://ror.org/04zde3c02', 'no_lang_code', 1, 'https://ror.org/04zde3c02 Enclude (United States)'),
(50700, 'https://ror.org/031tw3m13', 'en', 1, 'https://ror.org/031tw3m13 Global Development Analytics'),
(50701, 'https://ror.org/00ybf1536', 'en', 1, 'https://ror.org/00ybf1536 Camp Fire Inland Northwest'),
(50702, 'https://ror.org/05x8ty706', 'en', 1, 'https://ror.org/05x8ty706 Columbia Global Center'),
(50703, 'https://ror.org/03xm1q050', 'en', 1, 'https://ror.org/03xm1q050 Global Development Incubator'),
(50704, 'https://ror.org/006fcvv63', 'en', 1, 'https://ror.org/006fcvv63 Montreal Economic Institute'),
(50705, 'https://ror.org/03zsnc040', 'en', 1, 'https://ror.org/03zsnc040 Khan Academy'),
(50706, 'https://ror.org/04sjpwm55', 'en', 1, 'https://ror.org/04sjpwm55 Columbia Legal Services'),
(50707, 'https://ror.org/05kqvjw80', 'en', 1, 'https://ror.org/05kqvjw80 Campaign for College Opportunity'),
(50708, 'https://ror.org/02p19t276', 'en', 1, 'https://ror.org/02p19t276 Institute for American Values'),
(50709, 'https://ror.org/048ndg477', 'no_lang_code', 1, 'https://ror.org/048ndg477 Khanyisa Projects'),
(50710, 'https://ror.org/05vz9rv92', 'en', 1, 'https://ror.org/05vz9rv92 Campus Compact'),
(50711, 'https://ror.org/05p2qs698', 'en', 1, 'https://ror.org/05p2qs698 KickStart International'),
(50712, 'https://ror.org/033m0d088', 'no_lang_code', 1, 'https://ror.org/033m0d088 Mesa Biotech (United States)'),
(50713, 'https://ror.org/03f1zxe06', 'en', 1, 'https://ror.org/03f1zxe06 KidsOhio'),
(50714, 'https://ror.org/03nmfve22', 'en', 1, 'https://ror.org/03nmfve22 Caribou Digital'),
(50715, 'https://ror.org/040tqga17', 'no_lang_code', 1, 'https://ror.org/040tqga17 GOAL'),
(50716, 'https://ror.org/039jsjq26', 'no_lang_code', 1, 'https://ror.org/039jsjq26 Metabolistics (Canada)'),
(50717, 'https://ror.org/00qjn5x82', 'en', 1, 'https://ror.org/00qjn5x82 Institute for Excellence and Ethics'),
(50718, 'https://ror.org/053kmxx33', 'en', 1, 'https://ror.org/053kmxx33 Casa Latina'),
(50719, 'https://ror.org/030e7hb13', 'en', 1, 'https://ror.org/030e7hb13 Kindering'),
(50720, 'https://ror.org/01m1p2k59', 'no_lang_code', 1, 'https://ror.org/01m1p2k59 MetaMetrics (United States)'),
(50721, 'https://ror.org/02455y304', 'en', 1, 'https://ror.org/02455y304 Institute for Global Engagement'),
(50722, 'https://ror.org/03gd0yp09', 'en', 1, 'https://ror.org/03gd0yp09 Catapult Design'),
(50723, 'https://ror.org/02h5xm343', 'en', 1, 'https://ror.org/02h5xm343 King County Department of Community and Human Services'),
(50724, 'https://ror.org/01phxzc94', 'en', 1, 'https://ror.org/01phxzc94 Grantmakers Concerned with Immigrants and Refugees'),
(50725, 'https://ror.org/00bhn1w49', 'en', 1, 'https://ror.org/00bhn1w49 Institute for Humane Studies'),
(50726, 'https://ror.org/03yjg7e55', 'en', 1, 'https://ror.org/03yjg7e55 King County Sexual Assault Resource Center'),
(50727, 'https://ror.org/04kywek22', 'en', 1, 'https://ror.org/04kywek22 Grays Harbor Community Foundation'),
(50728, 'https://ror.org/03br5r234', 'es', 1, 'https://ror.org/03br5r234 Mexfam'),
(50729, 'https://ror.org/006drmf77', 'en', 1, 'https://ror.org/006drmf77 Great Schools Partnership'),
(50730, 'https://ror.org/05vtsq996', 'en', 1, 'https://ror.org/05vtsq996 KIPP Bay Area Schools'),
(50731, 'https://ror.org/05ftdq537', 'en', 1, 'https://ror.org/05ftdq537 Northwest Resource Associates'),
(50732, 'https://ror.org/01bky8445', 'en', 1, 'https://ror.org/01bky8445 Community Foundation of Snohomish County'),
(50733, 'https://ror.org/03hjbw580', 'en', 1, 'https://ror.org/03hjbw580 KIPP Chicago Schools'),
(50734, 'https://ror.org/04br7va83', 'en', 1, 'https://ror.org/04br7va83 KIPP LA Schools'),
(50735, 'https://ror.org/04m1zdk85', 'en', 1, 'https://ror.org/04m1zdk85 Greater Houston Community Foundation'),
(50736, 'https://ror.org/05b32w766', 'en', 1, 'https://ror.org/05b32w766 Institute for Jewish Spirituality'),
(50737, 'https://ror.org/03ytq5m12', 'en', 1, 'https://ror.org/03ytq5m12 Microfinance Information Exchange'),
(50738, 'https://ror.org/01878vm76', 'en', 1, 'https://ror.org/01878vm76 GreatNonprofits'),
(50739, 'https://ror.org/04y7r1x60', 'en', 1, 'https://ror.org/04y7r1x60 GreatSchools'),
(50740, 'https://ror.org/01fjgwc49', 'en', 1, 'https://ror.org/01fjgwc49 Kitsap Community Foundation'),
(50741, 'https://ror.org/046jw6530', 'en', 1, 'https://ror.org/046jw6530 Green Dot Public Schools'),
(50742, 'https://ror.org/05eysk957', 'en', 1, 'https://ror.org/05eysk957 Knox County Schools'),
(50743, 'https://ror.org/01wp6nz35', 'en', 1, 'https://ror.org/01wp6nz35 Kurt Gƶdel Society Kurt-Gƶdel-Gesellschaft'),
(50744, 'https://ror.org/01exwxt34', 'no_lang_code', 1, 'https://ror.org/01exwxt34 Guaranteach (United States)'),
(50745, 'https://ror.org/05x8wa071', 'en', 1, 'https://ror.org/05x8wa071 Office of Superintendent of Public Instruction'),
(50746, 'https://ror.org/02383bz17', 'no_lang_code', 1, 'https://ror.org/02383bz17 Micron Biomedical (United States)'),
(50747, 'https://ror.org/04y4x5p83', 'no_lang_code', 1, 'https://ror.org/04y4x5p83 Kymab (United Kingdom)'),
(50748, 'https://ror.org/055bddn28', 'en', 1, 'https://ror.org/055bddn28 Lake County Schools'),
(50749, 'https://ror.org/019a8hm16', 'de', 1, 'https://ror.org/019a8hm16 Hanns R. Neumann Stiftung'),
(50750, 'https://ror.org/04td3h857', 'en', 1, 'https://ror.org/04td3h857 Institute on Religion and Public Life'),
(50751, 'https://ror.org/011e1t803', 'en', 1, 'https://ror.org/011e1t803 Hartley Film Foundation'),
(50752, 'https://ror.org/0206abf41', 'en', 1, 'https://ror.org/0206abf41 Learning Forward'),
(50753, 'https://ror.org/01gkfdp08', 'vi', 1, 'https://ror.org/01gkfdp08 Văn phòng ban chỉ đẔo 33'),
(50754, 'https://ror.org/00q5r1k84', 'en', 1, 'https://ror.org/00q5r1k84 Learning Games Network'),
(50755, 'https://ror.org/03xzjcd71', 'en', 1, 'https://ror.org/03xzjcd71 Intellectual Virtues Academy'),
(50756, 'https://ror.org/03yxqvr87', 'it', 1, 'https://ror.org/03yxqvr87 Villa Melitta'),
(50757, 'https://ror.org/01pdc9z31', 'en', 1, 'https://ror.org/01pdc9z31 InterAction'),
(50758, 'https://ror.org/01m665265', 'en', 1, 'https://ror.org/01m665265 Mindwires Consulting'),
(50759, 'https://ror.org/03t8z4688', 'no_lang_code', 1, 'https://ror.org/03t8z4688 HCM Strategists (United States)'),
(50760, 'https://ror.org/05w6jca21', 'en', 1, 'https://ror.org/05w6jca21 HealthCare Chaplaincy Network'),
(50761, 'https://ror.org/02tsmws33', 'en', 1, 'https://ror.org/02tsmws33 Editorial Projects in Education'),
(50762, 'https://ror.org/053z5p960', 'no_lang_code', 1, 'https://ror.org/053z5p960 Mobile Assay (United States)'),
(50763, 'https://ror.org/02250w954', 'en', 1, 'https://ror.org/02250w954 Philanthropy Ohio'),
(50764, 'https://ror.org/04vbp2w76', 'en', 1, 'https://ror.org/04vbp2w76 Mobilize'),
(50765, 'https://ror.org/00k9xmb90', 'no_lang_code', 1, 'https://ror.org/00k9xmb90 LearnZillion (United States)'),
(50766, 'https://ror.org/02cksrc59', 'en', 1, 'https://ror.org/02cksrc59 International Interfaith Peace Corps'),
(50767, 'https://ror.org/05pzjj739', 'no_lang_code', 1, 'https://ror.org/05pzjj739 Hervana (Israel)'),
(50768, 'https://ror.org/05skbsx24', 'no_lang_code', 1, 'https://ror.org/05skbsx24 OneAmerica'),
(50769, 'https://ror.org/01rra6s55', 'en', 1, 'https://ror.org/01rra6s55 Opportunity International'),
(50770, 'https://ror.org/0514ew608', 'no_lang_code', 1, 'https://ror.org/0514ew608 Publicis Groupe (United States)'),
(50771, 'https://ror.org/01mk7gk80', 'en', 1, 'https://ror.org/01mk7gk80 International Justice Mission'),
(50772, 'https://ror.org/03v9c4d77', 'no_lang_code', 1, 'https://ror.org/03v9c4d77 MTN (Uganda)'),
(50773, 'https://ror.org/03mz4b890', 'en', 1, 'https://ror.org/03mz4b890 Hillsborough County Public Schools'),
(50774, 'https://ror.org/0502q3c66', 'en', 1, 'https://ror.org/0502q3c66 Hindustan Latex Family Planning Promotion Trust'),
(50775, 'https://ror.org/03rhhf773', 'en', 1, 'https://ror.org/03rhhf773 International Planned Parenthood Federation'),
(50776, 'https://ror.org/03msk5846', 'en', 1, 'https://ror.org/03msk5846 Museum of the American Revolution'),
(50777, 'https://ror.org/046pxzs49', 'en', 1, 'https://ror.org/046pxzs49 Outward Bound'),
(50778, 'https://ror.org/0444hc919', 'en', 1, 'https://ror.org/0444hc919 Let it Ripple'),
(50779, 'https://ror.org/00bam3792', 'en', 1, 'https://ror.org/00bam3792 Community-Minded Enterprises'),
(50780, 'https://ror.org/03z6emt78', 'no_lang_code', 1, 'https://ror.org/03z6emt78 NanoBio (United States)'),
(50781, 'https://ror.org/003n19b22', 'en', 1, 'https://ror.org/003n19b22 International Society for Science and Religion'),
(50782, 'https://ror.org/05a1nta88', 'no_lang_code', 1, 'https://ror.org/05a1nta88 Rosetta Stone (United States)'),
(50783, 'https://ror.org/00fz6qg20', 'no_lang_code', 1, 'https://ror.org/00fz6qg20 HLL Lifecare (India)'),
(50784, 'https://ror.org/0049td969', 'en', 1, 'https://ror.org/0049td969 National Association for the Advancement of Colored People'),
(50785, 'https://ror.org/01ksb8987', 'en', 1, 'https://ror.org/01ksb8987 LibForAll Foundation'),
(50786, 'https://ror.org/005vs4q67', 'en', 1, 'https://ror.org/005vs4q67 International Telecommunication Union Union Internationale des TƩlƩcommunications'),
(50787, 'https://ror.org/01424zf60', 'en', 1, 'https://ror.org/01424zf60 Hope Through Healing Hands'),
(50788, 'https://ror.org/01gxbnj52', 'en', 1, 'https://ror.org/01gxbnj52 Internews'),
(50789, 'https://ror.org/05vsxz108', 'en', 1, 'https://ror.org/05vsxz108 National Association of Secondary School Principals'),
(50790, 'https://ror.org/03cd21s10', 'en', 1, 'https://ror.org/03cd21s10 Horn of Africa Services'),
(50791, 'https://ror.org/03hsngx15', 'es', 1, 'https://ror.org/03hsngx15 Oxfam Intermón'),
(50792, 'https://ror.org/007mxym10', 'en', 1, 'https://ror.org/007mxym10 National Association of State Budget Officers'),
(50793, 'https://ror.org/05cbsfm97', 'no_lang_code', 1, 'https://ror.org/05cbsfm97 Inventprise (United States)'),
(50794, 'https://ror.org/00r1ta077', 'en', 1, 'https://ror.org/00r1ta077 Housing Development Consortium'),
(50795, 'https://ror.org/03w77n817', 'no_lang_code', 1, 'https://ror.org/03w77n817 Turnitin (United States)'),
(50796, 'https://ror.org/0530vbv92', 'fr', 1, 'https://ror.org/0530vbv92 Oxfam SolidaritƩ'),
(50797, 'https://ror.org/049c2z606', 'en', 1, 'https://ror.org/049c2z606 National Center for State Courts'),
(50798, 'https://ror.org/00yfxzd27', 'en', 1, 'https://ror.org/00yfxzd27 Houston Area Urban League'),
(50799, 'https://ror.org/0448rch47', 'en', 1, 'https://ror.org/0448rch47 Human Network International'),
(50800, 'https://ror.org/02wad9j32', 'en', 1, 'https://ror.org/02wad9j32 National Center on Time & Learning'),
(50801, 'https://ror.org/03rmfck35', 'no_lang_code', 1, 'https://ror.org/03rmfck35 Itad (United Kingdom)'),
(50802, 'https://ror.org/02qbt0637', 'en', 1, 'https://ror.org/02qbt0637 Oxford Policy Management'),
(50803, 'https://ror.org/02tczp334', 'en', 1, 'https://ror.org/02tczp334 National College Access Network'),
(50804, 'https://ror.org/00939wg75', 'en', 1, 'https://ror.org/00939wg75 LIMR Chemical Genomics Center'),
(50805, 'https://ror.org/03t39g890', 'en', 1, 'https://ror.org/03t39g890 National Council for the Social Studies'),
(50806, 'https://ror.org/03sje1a87', 'en', 1, 'https://ror.org/03sje1a87 Lindsay Unified School District'),
(50807, 'https://ror.org/05vet6f27', 'en', 1, 'https://ror.org/05vet6f27 Pacific Charter School Development'),
(50808, 'https://ror.org/02pfe8s32', 'en', 1, 'https://ror.org/02pfe8s32 Council for Economic Education'),
(50809, 'https://ror.org/014bxpd82', 'en', 1, 'https://ror.org/014bxpd82 Jal Seva Charitable Foundation'),
(50810, 'https://ror.org/04ay6am55', 'en', 1, 'https://ror.org/04ay6am55 Human Rights Foundation'),
(50811, 'https://ror.org/00g845z88', 'en', 1, 'https://ror.org/00g845z88 Parent Trust for Washington Children'),
(50812, 'https://ror.org/05rdne793', 'no_lang_code', 1, 'https://ror.org/05rdne793 Lipotek (Australia)'),
(50813, 'https://ror.org/043xrn095', 'en', 1, 'https://ror.org/043xrn095 National Equity Project'),
(50814, 'https://ror.org/02dxhv267', 'no_lang_code', 1, 'https://ror.org/02dxhv267 Humanitarian OpenStreetMap Team'),
(50815, 'https://ror.org/05fp2yk16', 'en', 1, 'https://ror.org/05fp2yk16 Liquid Interactive'),
(50816, 'https://ror.org/00e58tv26', 'no_lang_code', 1, 'https://ror.org/00e58tv26 Janicki Bioenergy (United States)'),
(50817, 'https://ror.org/00r91xh65', 'en', 1, 'https://ror.org/00r91xh65 Information and Communication Technology Agency'),
(50818, 'https://ror.org/01mfkhd73', 'en', 1, 'https://ror.org/01mfkhd73 Japan ICU Foundation'),
(50819, 'https://ror.org/00c409n44', 'en', 1, 'https://ror.org/00c409n44 Community and Parents for Public Schools'),
(50820, 'https://ror.org/03d4rbm41', 'en', 1, 'https://ror.org/03d4rbm41 National Liberty Museum'),
(50821, 'https://ror.org/01v3wjv31', 'en', 1, 'https://ror.org/01v3wjv31 Literacy Design Collaborative'),
(50822, 'https://ror.org/05mazqk05', 'en', 1, 'https://ror.org/05mazqk05 Partnership for Learning'),
(50823, 'https://ror.org/004sqrr27', 'en', 1, 'https://ror.org/004sqrr27 National Newspaper Publishers Association'),
(50824, 'https://ror.org/05fddma93', 'en', 1, 'https://ror.org/05fddma93 Partnership for Public Service'),
(50825, 'https://ror.org/02349x007', 'en', 1, 'https://ror.org/02349x007 IDEA Public Schools'),
(50826, 'https://ror.org/04m136694', 'en', 1, 'https://ror.org/04m136694 PUC Schools'),
(50827, 'https://ror.org/05h6f8c16', 'en', 1, 'https://ror.org/05h6f8c16 National Paideia Center'),
(50828, 'https://ror.org/00yh95e48', 'no_lang_code', 1, 'https://ror.org/00yh95e48 Jefferson Education Accelerator (United States)'),
(50829, 'https://ror.org/02ek94012', 'en', 1, 'https://ror.org/02ek94012 Institute for Advanced Medical Research'),
(50830, 'https://ror.org/014353m06', 'no_lang_code', 1, 'https://ror.org/014353m06 Idee e Prodotti (Italy)'),
(50831, 'https://ror.org/03da78945', 'en', 1, 'https://ror.org/03da78945 Pat Graney'),
(50832, 'https://ror.org/05ek20966', 'en', 1, 'https://ror.org/05ek20966 National Peace Corps Association'),
(50833, 'https://ror.org/03x1gs961', 'en', 1, 'https://ror.org/03x1gs961 Jessamine County Schools'),
(50834, 'https://ror.org/00s20y756', 'en', 1, 'https://ror.org/00s20y756 Jewish Family Service of Seattle'),
(50835, 'https://ror.org/04sg26g73', 'en', 1, 'https://ror.org/04sg26g73 National Philanthropic Trust'),
(50836, 'https://ror.org/03x4mf659', 'en', 1, 'https://ror.org/03x4mf659 Lietuvos laisvosios rinkos institutas Lithuanian Free Market Institute'),
(50837, 'https://ror.org/046ybfk04', 'en', 1, 'https://ror.org/046ybfk04 Pennsylvania Partnerships for Children'),
(50838, 'https://ror.org/039d85044', 'no_lang_code', 1, 'https://ror.org/039d85044 IDEO (United States)'),
(50839, 'https://ror.org/05e7wc386', 'no_lang_code', 1, 'https://ror.org/05e7wc386 Livvon (United States)'),
(50840, 'https://ror.org/02m9pjv04', 'en', 1, 'https://ror.org/02m9pjv04 National Speech and Debate Association'),
(50841, 'https://ror.org/00j82ct10', 'en', 1, 'https://ror.org/00j82ct10 Perspectives Charter School'),
(50842, 'https://ror.org/04r5g1376', 'en', 1, 'https://ror.org/04r5g1376 Local Initiatives Support Corporation'),
(50843, 'https://ror.org/03dre3v93', 'en', 1, 'https://ror.org/03dre3v93 Institute of Leadership & Institutional Development'),
(50844, 'https://ror.org/01f9py957', 'en', 1, 'https://ror.org/01f9py957 Illustrative Mathematics'),
(50845, 'https://ror.org/0161df093', 'en', 1, 'https://ror.org/0161df093 PharmaTrain Federation'),
(50846, 'https://ror.org/04vwh8s73', 'en', 1, 'https://ror.org/04vwh8s73 National Student Clearinghouse'),
(50847, 'https://ror.org/05pqpm243', 'en', 1, 'https://ror.org/05pqpm243 Junior Achievement'),
(50848, 'https://ror.org/02fcj1h44', 'no_lang_code', 1, 'https://ror.org/02fcj1h44 Logistimo (India)'),
(50849, 'https://ror.org/02fnpq925', 'en', 1, 'https://ror.org/02fnpq925 National Summer Learning Association'),
(50850, 'https://ror.org/03fjrbp76', 'no_lang_code', 1, 'https://ror.org/03fjrbp76 Loowatt (United Kingdom)'),
(50851, 'https://ror.org/00nm3xj95', 'en', 1, 'https://ror.org/00nm3xj95 Junior Achievement'),
(50852, 'https://ror.org/04bkyn088', 'en', 1, 'https://ror.org/04bkyn088 Imaging the World'),
(50853, 'https://ror.org/0001sz110', 'en', 1, 'https://ror.org/0001sz110 National Writing Project'),
(50854, 'https://ror.org/00dg01x60', 'en', 1, 'https://ror.org/00dg01x60 Junior Achievement of Delaware'),
(50855, 'https://ror.org/053ynnf14', 'en', 1, 'https://ror.org/053ynnf14 Native American Youth and Family Center'),
(50856, 'https://ror.org/01bpe5t14', 'en', 1, 'https://ror.org/01bpe5t14 iMentor'),
(50857, 'https://ror.org/03c5mbz49', 'en', 1, 'https://ror.org/03c5mbz49 Pinyon Foundation'),
(50858, 'https://ror.org/034eeph55', 'no_lang_code', 1, 'https://ror.org/034eeph55 Just Biotherapeutics (United States)'),
(50859, 'https://ror.org/04nfzd686', 'no_lang_code', 1, 'https://ror.org/04nfzd686 Lumen Learning (United States)'),
(50860, 'https://ror.org/053mjqy14', 'no_lang_code', 1, 'https://ror.org/053mjqy14 Natural Synergies (United Kingdom)'),
(50861, 'https://ror.org/018sdr586', 'en', 1, 'https://ror.org/018sdr586 Kalam Research and Media'),
(50862, 'https://ror.org/030r2wp80', 'en', 1, 'https://ror.org/030r2wp80 Nature Healing Nature'),
(50863, 'https://ror.org/0348n4f40', 'en', 1, 'https://ror.org/0348n4f40 INMED Partnerships for Children'),
(50864, 'https://ror.org/05hgrv414', 'en', 1, 'https://ror.org/05hgrv414 Kampala Capital City Authority'),
(50865, 'https://ror.org/02nfsws34', 'no_lang_code', 1, 'https://ror.org/02nfsws34 Innolytics (United States)'),
(50866, 'https://ror.org/01s649n52', 'en', 1, 'https://ror.org/01s649n52 Nautilus Ventures'),
(50867, 'https://ror.org/0235ad950', 'en', 1, 'https://ror.org/0235ad950 Innovations for Poverty Action'),
(50868, 'https://ror.org/00eeg9444', 'en', 1, 'https://ror.org/00eeg9444 Kenya Muslim Youth Alliance'),
(50869, 'https://ror.org/01d8jjd81', 'no_lang_code', 1, 'https://ror.org/01d8jjd81 Nautilus (United States)'),
(50870, 'https://ror.org/04fjdpx11', 'en', 1, 'https://ror.org/04fjdpx11 Mahila Abhivruddhi Society, Andhra Pradesh'),
(50871, 'https://ror.org/0109e8m16', 'en', 1, 'https://ror.org/0109e8m16 Rainforest Alliance'),
(50872, 'https://ror.org/008e34j77', 'no_lang_code', 1, 'https://ror.org/008e34j77 NetHope'),
(50873, 'https://ror.org/05mnyyy56', 'en', 1, 'https://ror.org/05mnyyy56 Marie Stopes International'),
(50874, 'https://ror.org/0435am872', 'en', 1, 'https://ror.org/0435am872 St. Monica Catholic School'),
(50875, 'https://ror.org/045952971', 'en', 1, 'https://ror.org/045952971 Rajiv Gandhi Charitable Trust'),
(50876, 'https://ror.org/03gpgkw08', 'en', 1, 'https://ror.org/03gpgkw08 Policy Exchange'),
(50877, 'https://ror.org/04phvdn03', 'en', 1, 'https://ror.org/04phvdn03 Network For Teaching Entrepreneurship'),
(50878, 'https://ror.org/01dnhtm59', 'en', 1, 'https://ror.org/01dnhtm59 Rare Genomics Institute'),
(50879, 'https://ror.org/021yan307', 'en', 1, 'https://ror.org/021yan307 Market Matters'),
(50880, 'https://ror.org/01fjz5q85', 'en', 1, 'https://ror.org/01fjz5q85 Washington State Department of Early Learning'),
(50881, 'https://ror.org/00qjysb56', 'en', 1, 'https://ror.org/00qjysb56 RE Today Services'),
(50882, 'https://ror.org/035ab9z58', 'en', 1, 'https://ror.org/035ab9z58 New Classrooms Innovation Partners'),
(50883, 'https://ror.org/055jart15', 'en', 1, 'https://ror.org/055jart15 PolicyLink'),
(50884, 'https://ror.org/02rzhqp10', 'no_lang_code', 1, 'https://ror.org/02rzhqp10 ReadCoor (United States)'),
(50885, 'https://ror.org/0466fze31', 'en', 1, 'https://ror.org/0466fze31 Real Impact Analytics'),
(50886, 'https://ror.org/0368cn166', 'en', 1, 'https://ror.org/0368cn166 Southwest Seattle Youth & Family Services'),
(50887, 'https://ror.org/008bt9x41', 'no_lang_code', 1, 'https://ror.org/008bt9x41 Regenex Pharmaceuticals (China) å¹æå·žęœ—åœ£čÆäøšęœ‰é™å…¬åø ē‰ˆęƒę‰€ęœ‰'),
(50888, 'https://ror.org/03n3k9q60', 'en', 1, 'https://ror.org/03n3k9q60 Statistical Assessment Service'),
(50889, 'https://ror.org/00w4ztw65', 'en', 1, 'https://ror.org/00w4ztw65 New Haven Public Schools'),
(50890, 'https://ror.org/00v119x08', 'no_lang_code', 1, 'https://ror.org/00v119x08 StelaGenomics (United States)'),
(50891, 'https://ror.org/03a2jdp82', 'en', 1, 'https://ror.org/03a2jdp82 Relief International'),
(50892, 'https://ror.org/03r0s9m45', 'en', 1, 'https://ror.org/03r0s9m45 Population Action International'),
(50893, 'https://ror.org/00shmqe23', 'en', 1, 'https://ror.org/00shmqe23 Restless Development'),
(50894, 'https://ror.org/050nbnj29', 'en', 1, 'https://ror.org/050nbnj29 New Leaders'),
(50895, 'https://ror.org/00b2ft029', 'no_lang_code', 1, 'https://ror.org/00b2ft029 Rommelag (Switzerland)'),
(50896, 'https://ror.org/01g2p9a25', 'no_lang_code', 1, 'https://ror.org/01g2p9a25 Rhize'),
(50897, 'https://ror.org/02ad3sg26', 'en', 1, 'https://ror.org/02ad3sg26 Population Matters'),
(50898, 'https://ror.org/03wnrr374', 'en', 1, 'https://ror.org/03wnrr374 New Life International'),
(50899, 'https://ror.org/01nnbvh24', 'en', 1, 'https://ror.org/01nnbvh24 Potlatch Fund'),
(50900, 'https://ror.org/01hppyk14', 'en', 1, 'https://ror.org/01hppyk14 New Philanthropy Capital'),
(50901, 'https://ror.org/03wxagd20', 'en', 1, 'https://ror.org/03wxagd20 McGill-Toolen Catholic High School'),
(50902, 'https://ror.org/03x06d381', 'no_lang_code', 1, 'https://ror.org/03x06d381 Precise Consult International (Ethiopia)'),
(50903, 'https://ror.org/04x1eer44', 'en', 1, 'https://ror.org/04x1eer44 Strive Preparatory Schools'),
(50904, 'https://ror.org/01cgf9k20', 'en', 1, 'https://ror.org/01cgf9k20 New Schools for Chicago'),
(50905, 'https://ror.org/00jbrtf50', 'no_lang_code', 1, 'https://ror.org/00jbrtf50 Premise Data (United States)'),
(50906, 'https://ror.org/02rhsjm93', 'en', 1, 'https://ror.org/02rhsjm93 South African Institute for Distance Education'),
(50907, 'https://ror.org/03m1g2s55', 'en', 1, 'https://ror.org/03m1g2s55 Sanford Burnham Prebys Medical Discovery Institute'),
(50908, 'https://ror.org/00nx3fr64', 'en', 1, 'https://ror.org/00nx3fr64 New Schools for New Orleans'),
(50909, 'https://ror.org/03tcxr084', 'en', 1, 'https://ror.org/03tcxr084 Student Achievement Partners'),
(50910, 'https://ror.org/04416zz40', 'en', 1, 'https://ror.org/04416zz40 Scalabrini International Migration Network'),
(50911, 'https://ror.org/013nhfk37', 'en', 1, 'https://ror.org/013nhfk37 Measured Progress'),
(50912, 'https://ror.org/040w48218', 'en', 1, 'https://ror.org/040w48218 Prichard Committee for Academic Excellence'),
(50913, 'https://ror.org/05nx1dj46', 'en', 1, 'https://ror.org/05nx1dj46 Media Impact Funders'),
(50914, 'https://ror.org/03hjzks69', 'en', 1, 'https://ror.org/03hjzks69 New Schools Venture Fund'),
(50915, 'https://ror.org/00dk21g34', 'en', 1, 'https://ror.org/00dk21g34 Media Trust'),
(50916, 'https://ror.org/013eqx116', 'en', 1, 'https://ror.org/013eqx116 School for Ethical Education'),
(50917, 'https://ror.org/01qcg7857', 'en', 1, 'https://ror.org/01qcg7857 New Teacher Center'),
(50918, 'https://ror.org/02mg13n04', 'en', 1, 'https://ror.org/02mg13n04 Memphis Urban League'),
(50919, 'https://ror.org/00wq4bj48', 'en', 1, 'https://ror.org/00wq4bj48 successful practices network'),
(50920, 'https://ror.org/02wpw4f97', 'en', 1, 'https://ror.org/02wpw4f97 Schoolzilla'),
(50921, 'https://ror.org/04nf3ck23', 'en', 1, 'https://ror.org/04nf3ck23 New Visions for Public Schools'),
(50922, 'https://ror.org/05hq42c91', 'en', 1, 'https://ror.org/05hq42c91 Mennonite Economic Development Associates'),
(50923, 'https://ror.org/01vf6nv75', 'en', 1, 'https://ror.org/01vf6nv75 Professional Assistance for Development Action'),
(50924, 'https://ror.org/054r1pe06', 'en', 1, 'https://ror.org/054r1pe06 New York City Charter School Center'),
(50925, 'https://ror.org/01h1rba19', 'en', 1, 'https://ror.org/01h1rba19 Science Friday Initiative'),
(50926, 'https://ror.org/04a8xgx67', 'en', 1, 'https://ror.org/04a8xgx67 Mercy Corps'),
(50927, 'https://ror.org/04h7jac65', 'en', 1, 'https://ror.org/04h7jac65 ScienceSites'),
(50928, 'https://ror.org/03xxrrp43', 'en', 1, 'https://ror.org/03xxrrp43 Nexleaf Analytics'),
(50929, 'https://ror.org/0567cdq47', 'en', 1, 'https://ror.org/0567cdq47 Project Everyone'),
(50930, 'https://ror.org/0553bq478', 'no_lang_code', 1, 'https://ror.org/0553bq478 Axcella Health (United States)'),
(50931, 'https://ror.org/01s33rn67', 'no_lang_code', 1, 'https://ror.org/01s33rn67 Next Dimension Technologies (United States)'),
(50932, 'https://ror.org/02gye8637', 'no_lang_code', 1, 'https://ror.org/02gye8637 ProSocial (United States)'),
(50933, 'https://ror.org/010k3rm26', 'en', 1, 'https://ror.org/010k3rm26 Global Social Observatory'),
(50934, 'https://ror.org/05azmnk92', 'en', 1, 'https://ror.org/05azmnk92 Noble Network of Charter Schools'),
(50935, 'https://ror.org/04sc6v830', 'no_lang_code', 1, 'https://ror.org/04sc6v830 Seagull BioSolutions (India)'),
(50936, 'https://ror.org/03gn06b62', 'en', 1, 'https://ror.org/03gn06b62 Nonprofit Assistance Center'),
(50937, 'https://ror.org/05ba0x014', 'en', 1, 'https://ror.org/05ba0x014 Seattle Housing Authority'),
(50938, 'https://ror.org/003sq5971', 'en', 1, 'https://ror.org/003sq5971 Tacoma Housing Authority'),
(50939, 'https://ror.org/0405pme07', 'no_lang_code', 1, 'https://ror.org/0405pme07 Quackenworth (United States)'),
(50940, 'https://ror.org/0130y5530', 'en', 1, 'https://ror.org/0130y5530 Nonprofit Quarterly'),
(50941, 'https://ror.org/003dm8f88', 'no_lang_code', 1, 'https://ror.org/003dm8f88 Sensor Development Corporation (United States)'),
(50942, 'https://ror.org/01qnb0r37', 'en', 1, 'https://ror.org/01qnb0r37 Greater Tacoma Community Foundation'),
(50943, 'https://ror.org/001pmf274', 'no_lang_code', 1, 'https://ror.org/001pmf274 Sentinext Therapeutics (Malaysia)'),
(50944, 'https://ror.org/05ep59t88', 'no_lang_code', 1, 'https://ror.org/05ep59t88 Radio One (United States)'),
(50945, 'https://ror.org/05htz0h33', 'en', 1, 'https://ror.org/05htz0h33 Tanzania Social Action Fund'),
(50946, 'https://ror.org/00wt4b458', 'en', 1, 'https://ror.org/00wt4b458 ImagineNations'),
(50947, 'https://ror.org/0072czt29', 'en', 1, 'https://ror.org/0072czt29 International Association for K-12 Online Learning'),
(50948, 'https://ror.org/01htyqs73', 'en', 1, 'https://ror.org/01htyqs73 Institute for Research on Unlimited Love'),
(50949, 'https://ror.org/01h98yw98', 'no_lang_code', 1, 'https://ror.org/01h98yw98 Serviceplan (Germany) Serviceplan Gruppe für innovative Kommunikation GmbH & Co. KG'),
(50950, 'https://ror.org/016p98704', 'no_lang_code', 1, 'https://ror.org/016p98704 Seventh Sense Biosystems (United States)'),
(50951, 'https://ror.org/0134cxd58', 'no_lang_code', 1, 'https://ror.org/0134cxd58 Temptime (United States)'),
(50952, 'https://ror.org/05gj3bd07', 'en', 1, 'https://ror.org/05gj3bd07 Sevenzo'),
(50953, 'https://ror.org/01n03de84', 'en', 1, 'https://ror.org/01n03de84 Jack Miller Center'),
(50954, 'https://ror.org/03w4sj937', 'en', 1, 'https://ror.org/03w4sj937 Treatment Action Group'),
(50955, 'https://ror.org/03dfszw81', 'en', 1, 'https://ror.org/03dfszw81 Tennessee College Access and Success Network'),
(50956, 'https://ror.org/040q4s353', 'en', 1, 'https://ror.org/040q4s353 Share Our Strength'),
(50957, 'https://ror.org/05h4evm65', 'no_lang_code', 1, 'https://ror.org/05h4evm65 TerraFrame (United States)'),
(50958, 'https://ror.org/05g6yjw88', 'en', 1, 'https://ror.org/05g6yjw88 King Center Charter School'),
(50959, 'https://ror.org/014vy5515', 'en', 1, 'https://ror.org/014vy5515 Treehouse'),
(50960, 'https://ror.org/01fhkcd72', 'no_lang_code', 1, 'https://ror.org/01fhkcd72 Ustar Biotechnologies (China)'),
(50961, 'https://ror.org/00s4b3898', 'no_lang_code', 1, 'https://ror.org/00s4b3898 TetraGenetics (United States)'),
(50962, 'https://ror.org/050cw6514', 'en', 1, 'https://ror.org/050cw6514 National Alliance to End Homelessness'),
(50963, 'https://ror.org/02k57sp27', 'no_lang_code', 1, 'https://ror.org/02k57sp27 Sirenas (United States)'),
(50964, 'https://ror.org/04p9zhq85', 'en', 1, 'https://ror.org/04p9zhq85 The New Teacher Project'),
(50965, 'https://ror.org/00maafh77', 'en', 1, 'https://ror.org/00maafh77 Texas Tribune'),
(50966, 'https://ror.org/03t78j106', 'en', 1, 'https://ror.org/03t78j106 Sister Cities International'),
(50967, 'https://ror.org/00zn76q59', 'en', 1, 'https://ror.org/00zn76q59 The Philanthropic Initiative'),
(50968, 'https://ror.org/04g59q124', 'en', 1, 'https://ror.org/04g59q124 Skillpoint Alliance'),
(50969, 'https://ror.org/017n0wf28', 'no_lang_code', 1, 'https://ror.org/017n0wf28 Triumph Learning (United States)'),
(50970, 'https://ror.org/01crnny41', 'no_lang_code', 1, 'https://ror.org/01crnny41 Smart Sparrow (United States)'),
(50971, 'https://ror.org/04z5kb841', 'en', 1, 'https://ror.org/04z5kb841 Right Question Institute'),
(50972, 'https://ror.org/003za3q32', 'en', 1, 'https://ror.org/003za3q32 Vatican Observatory Foundation'),
(50973, 'https://ror.org/03yrpzn89', 'no_lang_code', 1, 'https://ror.org/03yrpzn89 Q2 (United States)'),
(50974, 'https://ror.org/03c9x5k98', 'en', 1, 'https://ror.org/03c9x5k98 Tulsa Public Schools'),
(50975, 'https://ror.org/04dchsd96', 'en', 1, 'https://ror.org/04dchsd96 Institutul RomĆ¢n de Ştiinţă şi Tehnologie Romanian Institute of Science and Technology'),
(50976, 'https://ror.org/00fpmwa05', 'no_lang_code', 1, 'https://ror.org/00fpmwa05 VaxTrials (Panama)'),
(50977, 'https://ror.org/05x3zk779', 'no_lang_code', 1, 'https://ror.org/05x3zk779 Vaxxas (Australia)'),
(50978, 'https://ror.org/021tea790', 'no_lang_code', 1, 'https://ror.org/021tea790 TÜV SÜD (Singapore)'),
(50979, 'https://ror.org/00mzhs720', 'en', 1, 'https://ror.org/00mzhs720 Big Picture Learning'),
(50980, 'https://ror.org/04xpyh310', 'en', 1, 'https://ror.org/04xpyh310 Social Venture Partners'),
(50981, 'https://ror.org/03gf3fw83', 'no_lang_code', 1, 'https://ror.org/03gf3fw83 Sure Chill (United Kingdom)'),
(50982, 'https://ror.org/01dj1q121', 'en', 1, 'https://ror.org/01dj1q121 Solar Electric Light Fund'),
(50983, 'https://ror.org/05jxf9x26', 'no_lang_code', 1, 'https://ror.org/05jxf9x26 Vedantra Pharmaceuticals (United States)'),
(50984, 'https://ror.org/002tmnt12', 'no_lang_code', 1, 'https://ror.org/002tmnt12 Thinkcerca.com (United States)'),
(50985, 'https://ror.org/030xn9908', 'en', 1, 'https://ror.org/030xn9908 Tyton Partners'),
(50986, 'https://ror.org/008y0j428', 'en', 1, 'https://ror.org/008y0j428 Three Bird Swan Consulting Group'),
(50987, 'https://ror.org/05j79r106', 'no_lang_code', 1, 'https://ror.org/05j79r106 SociƩtƩ Nationale des TƩlƩcommunications du Senegal Sonatel (Senegal)'),
(50988, 'https://ror.org/03a2cf734', 'en', 1, 'https://ror.org/03a2cf734 Bridgespan Group'),
(50989, 'https://ror.org/02hppaj03', 'en', 1, 'https://ror.org/02hppaj03 Three Rivers Community Foundation'),
(50990, 'https://ror.org/00mgk5c15', 'en', 1, 'https://ror.org/00mgk5c15 VentureWell'),
(50991, 'https://ror.org/038h40c12', 'en', 1, 'https://ror.org/038h40c12 Veritas Forum'),
(50992, 'https://ror.org/02k8cz130', 'no_lang_code', 1, 'https://ror.org/02k8cz130 Umande Trust'),
(50993, 'https://ror.org/02dvzgw27', 'en', 1, 'https://ror.org/02dvzgw27 VillageReach'),
(50994, 'https://ror.org/05jwmx239', 'no_lang_code', 1, 'https://ror.org/05jwmx239 Vista Therapeutics (United States)'),
(50995, 'https://ror.org/03armk630', 'en', 1, 'https://ror.org/03armk630 United Way of Benton and Franklin Counties'),
(50996, 'https://ror.org/0324an637', 'en', 1, 'https://ror.org/0324an637 St. Gregory the Theologian Charity Foundation Š‘Š»Š°Š³Š¾Ń‚Š²Š¾Ń€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ фонГ имени ŃŠ²ŃŃ‚ŠøŃ‚ŠµŠ»Ń Š“Ń€ŠøŠ³Š¾Ń€ŠøŃ Богослова'),
(50997, 'https://ror.org/03dt97p60', 'en', 1, 'https://ror.org/03dt97p60 United Way of Central Washington'),
(50998, 'https://ror.org/02mpf8x78', 'no_lang_code', 1, 'https://ror.org/02mpf8x78 Tideline (United States)'),
(50999, 'https://ror.org/01satjx84', 'en', 1, 'https://ror.org/01satjx84 Vital Pakistan Trust'),
(51000, 'https://ror.org/00qa1af27', 'en', 1, 'https://ror.org/00qa1af27 St. Bernard Parish School District'),
(51001, 'https://ror.org/01ve6sd67', 'en', 1, 'https://ror.org/01ve6sd67 Vital Voices'),
(51002, 'https://ror.org/01m3zmc09', 'en', 1, 'https://ror.org/01m3zmc09 What Kids Can Do'),
(51003, 'https://ror.org/02p2egt14', 'en', 1, 'https://ror.org/02p2egt14 McCord Hospital'),
(51004, 'https://ror.org/01p0x0j97', 'en', 1, 'https://ror.org/01p0x0j97 United Way of King County'),
(51005, 'https://ror.org/04frvr969', 'en', 1, 'https://ror.org/04frvr969 Colossian Forum'),
(51006, 'https://ror.org/05ve11g92', 'en', 1, 'https://ror.org/05ve11g92 Whatcom Community Foundation'),
(51007, 'https://ror.org/01zr3vr20', 'en', 1, 'https://ror.org/01zr3vr20 Association of Washington School Principals'),
(51008, 'https://ror.org/04n10rx26', 'en', 1, 'https://ror.org/04n10rx26 United Way of Snohomish County'),
(51009, 'https://ror.org/00h4y2a67', 'en', 1, 'https://ror.org/00h4y2a67 White Ribbon Alliance'),
(51010, 'https://ror.org/047n17w18', 'nl', 1, 'https://ror.org/047n17w18 Vredeseilanden'),
(51011, 'https://ror.org/05r5sgs28', 'en', 1, 'https://ror.org/05r5sgs28 Washington Student Achievement Council'),
(51012, 'https://ror.org/04tprf655', 'en', 1, 'https://ror.org/04tprf655 Conversation Africa'),
(51013, 'https://ror.org/04qv76523', 'en', 1, 'https://ror.org/04qv76523 United Way of Southern Cameron County'),
(51014, 'https://ror.org/02fsqn104', 'no_lang_code', 1, 'https://ror.org/02fsqn104 Wieden+Kennedy (United States)'),
(51015, 'https://ror.org/01fhn3166', 'no_lang_code', 1, 'https://ror.org/01fhn3166 Vsolvit (United States)'),
(51016, 'https://ror.org/000d7gn07', 'en', 1, 'https://ror.org/000d7gn07 United Way of Spokane County'),
(51017, 'https://ror.org/04ccc4h18', 'en', 1, 'https://ror.org/04ccc4h18 Wajir County Government'),
(51018, 'https://ror.org/00cwgs379', 'en', 1, 'https://ror.org/00cwgs379 United Way of the Columbia-Willamette'),
(51019, 'https://ror.org/01kkt1z73', 'en', 1, 'https://ror.org/01kkt1z73 Windrider Institute'),
(51020, 'https://ror.org/00dm6q577', 'en', 1, 'https://ror.org/00dm6q577 Water & Sanitation for the Urban Poor'),
(51021, 'https://ror.org/05s2r4461', 'en', 1, 'https://ror.org/05s2r4461 Federalist Society'),
(51022, 'https://ror.org/05d9syz50', 'no_lang_code', 1, 'https://ror.org/05d9syz50 Unitus Labs'),
(51023, 'https://ror.org/0216n6706', 'en', 1, 'https://ror.org/0216n6706 Women Moving Millions'),
(51024, 'https://ror.org/05fssfa53', 'en', 1, 'https://ror.org/05fssfa53 Warren County Public Schools'),
(51025, 'https://ror.org/03z8wtt58', 'en', 1, 'https://ror.org/03z8wtt58 Women''s Policy'),
(51026, 'https://ror.org/00fkys966', 'en', 1, 'https://ror.org/00fkys966 World Neighbors'),
(51027, 'https://ror.org/01wx4a722', 'en', 1, 'https://ror.org/01wx4a722 WaterAid America'),
(51028, 'https://ror.org/033hx2k10', 'en', 1, 'https://ror.org/033hx2k10 Women''s World Banking'),
(51029, 'https://ror.org/02rcj7e91', 'en', 1, 'https://ror.org/02rcj7e91 Worcester Public Schools'),
(51030, 'https://ror.org/04k1aq759', 'no_lang_code', 1, 'https://ror.org/04k1aq759 Univercells (Belgium)'),
(51031, 'https://ror.org/04s8ek474', 'en', 1, 'https://ror.org/04s8ek474 Workforce Snohomish'),
(51032, 'https://ror.org/021s9ae49', 'en', 1, 'https://ror.org/021s9ae49 Worldwide Documentaries'),
(51033, 'https://ror.org/04g43tp09', 'no_lang_code', 1, 'https://ror.org/04g43tp09 Well Told Story (Kenya)'),
(51034, 'https://ror.org/02fz2j917', 'en', 1, 'https://ror.org/02fz2j917 YWCA USA'),
(51035, 'https://ror.org/04pcdsm76', 'en', 1, 'https://ror.org/04pcdsm76 Interdisciplinary University of Paris UniversitƩ interdisciplinaire de Paris'),
(51036, 'https://ror.org/05rx0pb87', 'en', 1, 'https://ror.org/05rx0pb87 Young Women''s Leadership Network'),
(51037, 'https://ror.org/00mqhay86', 'en', 1, 'https://ror.org/00mqhay86 Yakima Valley Community Foundation'),
(51038, 'https://ror.org/02nd1ya78', 'no_lang_code', 1, 'https://ror.org/02nd1ya78 Wetlands Work (Cambodia)'),
(51039, 'https://ror.org/01hbg9816', 'en', 1, 'https://ror.org/01hbg9816 YouthBuild'),
(51040, 'https://ror.org/01xbg8m54', 'en', 1, 'https://ror.org/01xbg8m54 Youth Development Labs'),
(51041, 'https://ror.org/034rzmm61', 'en', 1, 'https://ror.org/034rzmm61 Youth Service America'),
(51042, 'https://ror.org/016vrvb82', 'no_lang_code', 1, 'https://ror.org/016vrvb82 Zagaya'),
(51043, 'https://ror.org/02fk8h266', 'en', 1, 'https://ror.org/02fk8h266 Youth Venture'),
(51044, 'https://ror.org/0415kd025', 'en', 1, 'https://ror.org/0415kd025 ZanaAfrica Group'),
(51045, 'https://ror.org/000sx5h02', 'en', 1, 'https://ror.org/000sx5h02 YES Prep Public Schools'),
(51046, 'https://ror.org/04rbew275', 'no_lang_code', 1, 'https://ror.org/04rbew275 Zipline International (United States)'),
(51047, 'https://ror.org/03e9cqh27', 'en', 1, 'https://ror.org/03e9cqh27 Young Invincibles'),
(51048, 'https://ror.org/013wcmm63', 'en', 1, 'https://ror.org/013wcmm63 Zygon Center for Religion and Science'),
(51049, 'https://ror.org/02g21hc40', 'no_lang_code', 1, 'https://ror.org/02g21hc40 Art Innovation (Netherlands)'),
(51050, 'https://ror.org/0381dt953', 'en', 1, 'https://ror.org/0381dt953 CMH Lahore Medical College and Institute of Dentistry'),
(51051, 'https://ror.org/04e61md13', 'no_lang_code', 1, 'https://ror.org/04e61md13 Tokuda Hospital ТокуГа Болница Š”Š¾Ń„ŠøŃ'),
(51052, 'https://ror.org/01y7b2q33', 'no_lang_code', 1, 'https://ror.org/01y7b2q33 Aava Medical Centre'),
(51053, 'https://ror.org/03bbe8e53', 'nl', 1, 'https://ror.org/03bbe8e53 Kempenhaeghe'),
(51054, 'https://ror.org/02ycbp592', 'pt', 1, 'https://ror.org/02ycbp592 Hospital Central da PolĆ­cia Militar'),
(51055, 'https://ror.org/016vmf460', 'en', 1, 'https://ror.org/016vmf460 AXIS Clinical Trials'),
(51056, 'https://ror.org/03fqsyt94', 'es', 1, 'https://ror.org/03fqsyt94 Hospital la Serena'),
(51057, 'https://ror.org/05twvb204', 'en', 1, 'https://ror.org/05twvb204 Advanced Dermatology'),
(51058, 'https://ror.org/01qq0qd43', 'en', 1, 'https://ror.org/01qq0qd43 Shunyi Hospital of Beijing Traditional Chinese Medicine Hospital åŒ—äŗ¬äø­åŒ»åŒ»é™¢é”ŗä¹‰åŒ»é™¢'),
(51059, 'https://ror.org/052q26725', 'en', 1, 'https://ror.org/052q26725 Affiliated Hospital of Shandong University of Traditional Chinese Medicine å±±äøœäø­åŒ»čÆå¤§å­¦é™„å±žåŒ»é™¢'),
(51060, 'https://ror.org/00zv7v764', 'en', 1, 'https://ror.org/00zv7v764 Northern California Research'),
(51061, 'https://ror.org/04cnyg561', 'en', 1, 'https://ror.org/04cnyg561 Adult Anxiety Clinic of Temple'),
(51062, 'https://ror.org/03wcc3744', 'en', 1, 'https://ror.org/03wcc3744 Forest Research'),
(51063, 'https://ror.org/00jxjg186', 'ro', 1, 'https://ror.org/00jxjg186 Spitalul Clinic C.F. Iasi'),
(51064, 'https://ror.org/035k7dd86', 'en', 1, 'https://ror.org/035k7dd86 New Mexico State University Grants'),
(51065, 'https://ror.org/05xp52m23', 'no_lang_code', 1, 'https://ror.org/05xp52m23 Intelligent Decision Systems (Spain)'),
(51066, 'https://ror.org/01c35h421', 'en', 1, 'https://ror.org/01c35h421 Hellenic Oceanographers Association Ī£ĻĪ»Ī»ĪæĪ³ĪæĻ‚ Ελλήνων Ωκεανογράφων'),
(51067, 'https://ror.org/01km88n73', 'tr', 1, 'https://ror.org/01km88n73 Marmara Üniversitesi Eğitim ve Araştırma Hastanesi'),
(51068, 'https://ror.org/03bdhq605', 'en', 1, 'https://ror.org/03bdhq605 National Academy of Engineering'),
(51069, 'https://ror.org/056wwjf73', 'en', 1, 'https://ror.org/056wwjf73 Baltic Studies Centre'),
(51070, 'https://ror.org/03k3h8z07', 'en', 1, 'https://ror.org/03k3h8z07 Oromiyaa Regional Health Bureau'),
(51071, 'https://ror.org/02ypwf602', 'no_lang_code', 1, 'https://ror.org/02ypwf602 Sierra BioMedical (United States)'),
(51072, 'https://ror.org/0044d9958', 'no_lang_code', 1, 'https://ror.org/0044d9958 Tècniques de Gestió de la Informació'),
(51073, 'https://ror.org/02fvevm64', 'en', 1, 'https://ror.org/02fvevm64 Taizhou People''s Hospital'),
(51074, 'https://ror.org/005gf6j43', 'en', 1, 'https://ror.org/005gf6j43 Tanta University Hospital'),
(51075, 'https://ror.org/04a2ksf56', 'en', 1, 'https://ror.org/04a2ksf56 New England Institute for Neurology and Headache'),
(51076, 'https://ror.org/05bxbrn63', 'en', 1, 'https://ror.org/05bxbrn63 Inner Mongolia Autonomous Region Hospital of Traditional Chinese Medicine å†…č’™å¤č‡Ŗę²»åŒŗäø­åŒ»åŒ»é™¢'),
(51077, 'https://ror.org/023ssda55', 'en', 1, 'https://ror.org/023ssda55 Fukuda Foundation for Medical Technology č²”å›£ę³•äŗŗē¦ē”°čØ˜åæµåŒ»ē™‚ęŠ€č”“ęŒÆčˆˆč²”å›£ćÆ'),
(51078, 'https://ror.org/04xzqfk28', 'it', 1, 'https://ror.org/04xzqfk28 Fondazione Internazionale Menarini'),
(51079, 'https://ror.org/029aqdy80', 'en', 1, 'https://ror.org/029aqdy80 Foundation for Promotion of Cancer Research ćŒć‚“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(51080, 'https://ror.org/00jq6bk95', 'en', 1, 'https://ror.org/00jq6bk95 Free To Breathe'),
(51081, 'https://ror.org/056tjaa40', 'en', 1, 'https://ror.org/056tjaa40 Foundation for Psychocultural Research'),
(51082, 'https://ror.org/031fh2e54', 'en', 1, 'https://ror.org/031fh2e54 Fulbright Canada'),
(51083, 'https://ror.org/02q8k0k97', 'fr', 1, 'https://ror.org/02q8k0k97 Fondation Centaure'),
(51084, 'https://ror.org/01t731k54', 'en', 1, 'https://ror.org/01t731k54 Gamma Mu Foundation'),
(51085, 'https://ror.org/02z02qt46', 'da', 1, 'https://ror.org/02z02qt46 Gangstedfonden'),
(51086, 'https://ror.org/04j8wah18', 'fr', 1, 'https://ror.org/04j8wah18 Fondation Charcot'),
(51087, 'https://ror.org/05y4zkz43', 'de', 1, 'https://ror.org/05y4zkz43 Freiwilligen Akademischen Gesellschaft'),
(51088, 'https://ror.org/00c4ykh56', 'fr', 1, 'https://ror.org/00c4ykh56 Fondation Denis Guichard'),
(51089, 'https://ror.org/022pga911', 'it', 1, 'https://ror.org/022pga911 Fondazione Monte dei Paschi di Siena'),
(51090, 'https://ror.org/03ba3bk23', 'en', 1, 'https://ror.org/03ba3bk23 Fondation des Fondateurs Foundation of the Founders'),
(51091, 'https://ror.org/02ck8g804', 'en', 1, 'https://ror.org/02ck8g804 Fremont Bank'),
(51092, 'https://ror.org/02mzdpf71', 'en', 1, 'https://ror.org/02mzdpf71 Garden Club of Honolulu'),
(51093, 'https://ror.org/01kk89q14', 'en', 1, 'https://ror.org/01kk89q14 Fund For New Jersey'),
(51094, 'https://ror.org/05fktwr23', 'en', 1, 'https://ror.org/05fktwr23 Gardiner Foundation'),
(51095, 'https://ror.org/02rt6g223', 'it', 1, 'https://ror.org/02rt6g223 Fondazione per la Ricerca sulla Fibrosi Cistica'),
(51096, 'https://ror.org/057xq2p09', 'en', 1, 'https://ror.org/057xq2p09 Frey Foundation'),
(51097, 'https://ror.org/04sza0p48', 'en', 1, 'https://ror.org/04sza0p48 Garfield Foundation'),
(51098, 'https://ror.org/04631ba92', 'en', 1, 'https://ror.org/04631ba92 Garrett B Smith Foundation'),
(51099, 'https://ror.org/006kypj04', 'en', 1, 'https://ror.org/006kypj04 Funeral Service Foundation'),
(51100, 'https://ror.org/051f3s362', 'it', 1, 'https://ror.org/051f3s362 Fondazione Pezcoller'),
(51101, 'https://ror.org/00pjede26', 'de', 1, 'https://ror.org/00pjede26 Friede Springer Stiftung'),
(51102, 'https://ror.org/00b75tt95', 'no_lang_code', 1, 'https://ror.org/00b75tt95 Roper Technologies (United States)'),
(51103, 'https://ror.org/0040jv435', 'en', 1, 'https://ror.org/0040jv435 George A. and Eliza Gardner Howard Foundation'),
(51104, 'https://ror.org/05c7rv794', 'en', 1, 'https://ror.org/05c7rv794 Futaba Electronics Memorial Foundation å…¬ē›Šč²”å›£ę³•äŗŗ åŒč‘‰é›»å­čØ˜åæµč²”å›£'),
(51105, 'https://ror.org/04221f920', 'en', 1, 'https://ror.org/04221f920 Gateway for Cancer Research'),
(51106, 'https://ror.org/0111f4y49', 'it', 1, 'https://ror.org/0111f4y49 Fondazione Pierfranco e Luisa Mariani'),
(51107, 'https://ror.org/017vhek94', 'de', 1, 'https://ror.org/017vhek94 Gebauer Stiftung'),
(51108, 'https://ror.org/02j9g7j58', 'en', 1, 'https://ror.org/02j9g7j58 G. Unger Vetlesen Foundation'),
(51109, 'https://ror.org/05t1hxr21', 'en', 1, 'https://ror.org/05t1hxr21 George Alexander Foundation'),
(51110, 'https://ror.org/01hg94g33', 'en', 1, 'https://ror.org/01hg94g33 George and Mary Josephine Hamman Foundation'),
(51111, 'https://ror.org/032a9fh96', 'de', 1, 'https://ror.org/032a9fh96 Friedrich Baur Stiftung'),
(51112, 'https://ror.org/04r25nk19', 'de', 1, 'https://ror.org/04r25nk19 Gottfried und Julia Bangerter-Rhyner-Stiftung'),
(51113, 'https://ror.org/02mzerg05', 'no_lang_code', 1, 'https://ror.org/02mzerg05 Ribbon Communications (United States)'),
(51114, 'https://ror.org/02p32hv70', 'en', 1, 'https://ror.org/02p32hv70 Gallipoli Medical Research Foundation'),
(51115, 'https://ror.org/0597jrb38', 'en', 1, 'https://ror.org/0597jrb38 Grable Foundation'),
(51116, 'https://ror.org/008wwms76', 'en', 1, 'https://ror.org/008wwms76 Friends United'),
(51117, 'https://ror.org/03kxek255', 'en', 1, 'https://ror.org/03kxek255 Metcalf Foundation'),
(51118, 'https://ror.org/0263g5487', 'da', 1, 'https://ror.org/0263g5487 Frimodt-Heineke Fonden'),
(51119, 'https://ror.org/01ny4we05', 'en', 1, 'https://ror.org/01ny4we05 Generation Foundation'),
(51120, 'https://ror.org/04f195d63', 'de', 1, 'https://ror.org/04f195d63 Fritz Bender Stiftung'),
(51121, 'https://ror.org/02c0nbh41', 'en', 1, 'https://ror.org/02c0nbh41 Grace J. Fippinger Foundation'),
(51122, 'https://ror.org/02n478665', 'en', 1, 'https://ror.org/02n478665 Frontiers Foundation'),
(51123, 'https://ror.org/02pg6kr38', 'en', 1, 'https://ror.org/02pg6kr38 George Gund Foundation'),
(51124, 'https://ror.org/057tjtc32', 'en', 1, 'https://ror.org/057tjtc32 Geological Society of Australia'),
(51125, 'https://ror.org/047masv79', 'en', 1, 'https://ror.org/047masv79 Georgia Forestry Association'),
(51126, 'https://ror.org/03tqsvs90', 'en', 1, 'https://ror.org/03tqsvs90 FSH Society'),
(51127, 'https://ror.org/01xrqp957', 'en', 1, 'https://ror.org/01xrqp957 Georgia Health Foundation'),
(51128, 'https://ror.org/02hk69q89', 'en', 1, 'https://ror.org/02hk69q89 Gerald R. Ford Presidential Foundation'),
(51129, 'https://ror.org/01f1gbh69', 'en', 1, 'https://ror.org/01f1gbh69 Graham Foundation'),
(51130, 'https://ror.org/01q9r6465', 'en', 1, 'https://ror.org/01q9r6465 Geraldine R. Dodge Foundation'),
(51131, 'https://ror.org/03axz0166', 'en', 1, 'https://ror.org/03axz0166 Healthcare Foundation of New Jersey'),
(51132, 'https://ror.org/05k4g0902', 'de', 1, 'https://ror.org/05k4g0902 Gerhard C. Starck Stiftung'),
(51133, 'https://ror.org/044ynya14', 'en', 1, 'https://ror.org/044ynya14 Grant Healthcare Foundation'),
(51134, 'https://ror.org/058y7jv19', 'en', 1, 'https://ror.org/058y7jv19 German Marshall Fund of the United States'),
(51135, 'https://ror.org/053w93n68', 'en', 1, 'https://ror.org/053w93n68 FSHD Global Research Foundation'),
(51136, 'https://ror.org/00h4cdy24', 'en', 1, 'https://ror.org/00h4cdy24 Heart Foundation'),
(51137, 'https://ror.org/01pgw9p53', 'en', 1, 'https://ror.org/01pgw9p53 Grantsmanship Center'),
(51138, 'https://ror.org/021n09h20', 'en', 1, 'https://ror.org/021n09h20 Guthy-Jackson Charitable Foundation'),
(51139, 'https://ror.org/03p9f9307', 'en', 1, 'https://ror.org/03p9f9307 Graphic Arts Education and Research Foundation'),
(51140, 'https://ror.org/0293tde40', 'en', 1, 'https://ror.org/0293tde40 Heckscher Foundation for Children'),
(51141, 'https://ror.org/01wb8d948', 'sv', 1, 'https://ror.org/01wb8d948 Hans Bang Stiftelsen'),
(51142, 'https://ror.org/02g8xhs57', 'en', 1, 'https://ror.org/02g8xhs57 Getty Foundation'),
(51143, 'https://ror.org/04cnxht64', 'en', 1, 'https://ror.org/04cnxht64 Grass Foundation'),
(51144, 'https://ror.org/02448mh91', 'en', 1, 'https://ror.org/02448mh91 Help For Children'),
(51145, 'https://ror.org/048h18548', 'en', 1, 'https://ror.org/048h18548 Gheens Foundation'),
(51146, 'https://ror.org/037pyxf85', 'en', 1, 'https://ror.org/037pyxf85 H. L. Snyder Medical Foundation'),
(51147, 'https://ror.org/05t3ctn72', 'de', 1, 'https://ror.org/05t3ctn72 Hans Eggenberger Stiftung'),
(51148, 'https://ror.org/01t7m8f35', 'en', 1, 'https://ror.org/01t7m8f35 Heed Ophthalmic Foundation'),
(51149, 'https://ror.org/059hdm253', 'da', 1, 'https://ror.org/059hdm253 Harboefonden'),
(51150, 'https://ror.org/01s49js04', 'no_lang_code', 1, 'https://ror.org/01s49js04 Kraft Heinz (United States)'),
(51151, 'https://ror.org/04vs74923', 'en', 1, 'https://ror.org/04vs74923 Gratiot County Community Foundation'),
(51152, 'https://ror.org/02xq7zd76', 'de', 1, 'https://ror.org/02xq7zd76 Heidehof Stiftung Stiftung für Bildung und Behindertenförderung'),
(51153, 'https://ror.org/015ygpt53', 'en', 1, 'https://ror.org/015ygpt53 H.W. Durham Foundation'),
(51154, 'https://ror.org/05cw31648', 'de', 1, 'https://ror.org/05cw31648 Heimer Stiftung'),
(51155, 'https://ror.org/0150nnh74', 'en', 1, 'https://ror.org/0150nnh74 Great Valley Center'),
(51156, 'https://ror.org/03at8gw73', 'en', 1, 'https://ror.org/03at8gw73 Gift of the Givers Foundation'),
(51157, 'https://ror.org/02e1ztj03', 'en', 1, 'https://ror.org/02e1ztj03 Greater Boston Council on Alcoholism'),
(51158, 'https://ror.org/01h9fv209', 'en', 1, 'https://ror.org/01h9fv209 Greater Cincinnati Foundation'),
(51159, 'https://ror.org/00m3qn560', 'en', 1, 'https://ror.org/00m3qn560 Harold Mitchell Foundation'),
(51160, 'https://ror.org/037bmav86', 'no_lang_code', 1, 'https://ror.org/037bmav86 Haberdashers (United Kingdom)');
INSERT INTO `rors` VALUES
(51161, 'https://ror.org/0344snf66', 'en', 1, 'https://ror.org/0344snf66 Harold Whitworth Pierce Charitable Trust'),
(51162, 'https://ror.org/04jz7er86', 'en', 1, 'https://ror.org/04jz7er86 Greater Greenbrier Valley Community Foundation'),
(51163, 'https://ror.org/023907v80', 'en', 1, 'https://ror.org/023907v80 Gill Bergska Foundation'),
(51164, 'https://ror.org/00vp48839', 'en', 1, 'https://ror.org/00vp48839 Harriet H. Samuelsson Foundation'),
(51165, 'https://ror.org/054e5vv45', 'en', 1, 'https://ror.org/054e5vv45 Girard Foundation'),
(51166, 'https://ror.org/01zm9va38', 'en', 1, 'https://ror.org/01zm9va38 Greater Kanawha Valley Foundation'),
(51167, 'https://ror.org/01dnrcm75', 'en', 1, 'https://ror.org/01dnrcm75 Gladys Krieble Delmas Foundation'),
(51168, 'https://ror.org/01f0hzg70', 'en', 1, 'https://ror.org/01f0hzg70 Glaser Progress Foundation'),
(51169, 'https://ror.org/0527w1g58', 'sv', 1, 'https://ror.org/0527w1g58 Helge Ax:son Johnsons Stiftelse'),
(51170, 'https://ror.org/00ecgnd18', 'en', 1, 'https://ror.org/00ecgnd18 Greater Kansas City Community Foundation'),
(51171, 'https://ror.org/00pjapa16', 'en', 1, 'https://ror.org/00pjapa16 Greater Milwaukee Foundation'),
(51172, 'https://ror.org/02rsqhk75', 'en', 1, 'https://ror.org/02rsqhk75 Glens Falls Foundation'),
(51173, 'https://ror.org/0427p8e67', 'en', 1, 'https://ror.org/0427p8e67 Green Lane Research and Educational Fund'),
(51174, 'https://ror.org/02v1bmg02', 'en', 1, 'https://ror.org/02v1bmg02 Harrison County Community Foundation'),
(51175, 'https://ror.org/00nkfq279', 'en', 1, 'https://ror.org/00nkfq279 Greenwall Foundation'),
(51176, 'https://ror.org/00vxeha61', 'en', 1, 'https://ror.org/00vxeha61 Harry Frank Guggenheim Foundation'),
(51177, 'https://ror.org/0587zpn52', 'en', 1, 'https://ror.org/0587zpn52 Grieg Foundation'),
(51178, 'https://ror.org/04ja5n810', 'en', 1, 'https://ror.org/04ja5n810 Global Association of Risk Professionals'),
(51179, 'https://ror.org/00kpb0908', 'en', 1, 'https://ror.org/00kpb0908 Global Down Syndrome Foundation'),
(51180, 'https://ror.org/0587cd856', 'en', 1, 'https://ror.org/0587cd856 Grigg Lewis Foundation'),
(51181, 'https://ror.org/010201t38', 'en', 1, 'https://ror.org/010201t38 Harry W. Bass, Jr. Foundation'),
(51182, 'https://ror.org/03vjk0w59', 'en', 1, 'https://ror.org/03vjk0w59 Hemophilia Association of New York'),
(51183, 'https://ror.org/046mfxt70', 'en', 1, 'https://ror.org/046mfxt70 Global Foundation for Peroxisomal Disorders'),
(51184, 'https://ror.org/03j4bwb64', 'en', 1, 'https://ror.org/03j4bwb64 Hendricks County Community Foundation'),
(51185, 'https://ror.org/03w0y1q19', 'no_lang_code', 1, 'https://ror.org/03w0y1q19 Haruv Institute מכון חרוב'),
(51186, 'https://ror.org/05xph5761', 'en', 1, 'https://ror.org/05xph5761 Harvard Travellers Club'),
(51187, 'https://ror.org/04e2pep48', 'en', 1, 'https://ror.org/04e2pep48 Henry County Community Foundation'),
(51188, 'https://ror.org/0262v8w25', 'en', 1, 'https://ror.org/0262v8w25 Global Risk Institute in Financial Services'),
(51189, 'https://ror.org/03s3qsz11', 'en', 1, 'https://ror.org/03s3qsz11 EduInnovation'),
(51190, 'https://ror.org/03a1cp978', 'en', 1, 'https://ror.org/03a1cp978 Henry P Kendall Foundation'),
(51191, 'https://ror.org/01kv2k333', 'en', 1, 'https://ror.org/01kv2k333 Harvard-Yenching Institute'),
(51192, 'https://ror.org/04ck29617', 'no_lang_code', 1, 'https://ror.org/04ck29617 GN Store Nord (Denmark)'),
(51193, 'https://ror.org/01zsmba62', 'en', 1, 'https://ror.org/01zsmba62 Harvey L. Neiman Health Policy Institute'),
(51194, 'https://ror.org/00g8q6r39', 'en', 1, 'https://ror.org/00g8q6r39 Herb Society of America'),
(51195, 'https://ror.org/0247aft91', 'en', 1, 'https://ror.org/0247aft91 The Herbert H. and Grace A. Dow Foundation'),
(51196, 'https://ror.org/04fjhg511', 'en', 1, 'https://ror.org/04fjhg511 Goizueta Foundation'),
(51197, 'https://ror.org/017778n40', 'en', 1, 'https://ror.org/017778n40 Herbert W. Hoover Foundation'),
(51198, 'https://ror.org/05f676n58', 'en', 1, 'https://ror.org/05f676n58 Goldhirsh Foundation'),
(51199, 'https://ror.org/05tbc3h08', 'de', 1, 'https://ror.org/05tbc3h08 Homann-Stiftung'),
(51200, 'https://ror.org/04m3t9183', 'en', 1, 'https://ror.org/04m3t9183 Hasler Foundation Hasler Stiftung'),
(51201, 'https://ror.org/049q63233', 'en', 1, 'https://ror.org/049q63233 Goldman Philanthropic Partnerships'),
(51202, 'https://ror.org/00f48mn63', 'en', 1, 'https://ror.org/00f48mn63 Heritage Fund'),
(51203, 'https://ror.org/013h8cr97', 'en', 1, 'https://ror.org/013h8cr97 Haemophilia Foundation Australia'),
(51204, 'https://ror.org/01k931w67', 'en', 1, 'https://ror.org/01k931w67 Goldsmith Family Foundation'),
(51205, 'https://ror.org/02p5tsd26', 'en', 1, 'https://ror.org/02p5tsd26 Honjo International Scholarship Foundation'),
(51206, 'https://ror.org/04vdd6t03', 'en', 1, 'https://ror.org/04vdd6t03 Honorable Tina Brozman Foundation'),
(51207, 'https://ror.org/03h32st80', 'en', 1, 'https://ror.org/03h32st80 Good Samaritan Foundation'),
(51208, 'https://ror.org/03asba969', 'en', 1, 'https://ror.org/03asba969 Hairy Cell Leukemia Foundation'),
(51209, 'https://ror.org/05ds19c85', 'en', 1, 'https://ror.org/05ds19c85 Hayao Nakayama Foundation for Science & Technology and Culture å…¬ē›Šč²”å›£ę³•äŗŗäø­å±±éš¼é›„ē§‘å­¦ęŠ€č”“ę–‡åŒ–č²”å›£'),
(51210, 'https://ror.org/05bqz6909', 'en', 1, 'https://ror.org/05bqz6909 Hazel K. Goddess Fund for Stroke Research in Women'),
(51211, 'https://ror.org/05y3s9y81', 'en', 1, 'https://ror.org/05y3s9y81 Hyde Family Foundations'),
(51212, 'https://ror.org/03dc9sa37', 'no_lang_code', 1, 'https://ror.org/03dc9sa37 Hospitals Contribution Fund (Australia)'),
(51213, 'https://ror.org/02s67hm68', 'de', 1, 'https://ror.org/02s67hm68 Hamburgische Wissenschaftliche Stiftung'),
(51214, 'https://ror.org/00f7nwk73', 'en', 1, 'https://ror.org/00f7nwk73 Hermansky Pudlak Syndrome Network'),
(51215, 'https://ror.org/05x1syy12', 'en', 1, 'https://ror.org/05x1syy12 Hope Foundation for Research on Ageing'),
(51216, 'https://ror.org/038gm9q58', 'en', 1, 'https://ror.org/038gm9q58 Hamdard National Foundation'),
(51217, 'https://ror.org/0435hmt48', 'en', 1, 'https://ror.org/0435hmt48 Hope Happens for Neurological Disorders'),
(51218, 'https://ror.org/0559b0w16', 'en', 1, 'https://ror.org/0559b0w16 Hydrogen Education Foundation'),
(51219, 'https://ror.org/056a5c150', 'en', 1, 'https://ror.org/056a5c150 Hampton Roads Community Foundation'),
(51220, 'https://ror.org/00vxscp81', 'de', 1, 'https://ror.org/00vxscp81 HOPE-Kapstadt-Stiftung'),
(51221, 'https://ror.org/05bnw2b86', 'en', 1, 'https://ror.org/05bnw2b86 Hand Foundation'),
(51222, 'https://ror.org/02ycc8g77', 'en', 1, 'https://ror.org/02ycc8g77 Hyogo Prefecture Health Foundation å…¬ē›Šč²”å›£ę³•äŗŗ å…µåŗ«ēœŒå„åŗ·č²”å›£'),
(51223, 'https://ror.org/01bby7n46', 'en', 1, 'https://ror.org/01bby7n46 I. A. O''Shaughnessy Foundation'),
(51224, 'https://ror.org/032s45981', 'en', 1, 'https://ror.org/032s45981 Health Care Foundation of Greater Kansas City'),
(51225, 'https://ror.org/05t92nq65', 'en', 1, 'https://ror.org/05t92nq65 Hannah''s Heroes Foundation'),
(51226, 'https://ror.org/03swpf442', 'en', 1, 'https://ror.org/03swpf442 Health Foundation of South Florida'),
(51227, 'https://ror.org/05dq3dn18', 'no_lang_code', 1, 'https://ror.org/05dq3dn18 Hori Sciences and Arts Foundation å €ē§‘å­¦čŠøč”“ęŒÆčˆˆč²”å›£'),
(51228, 'https://ror.org/03q2pyf14', 'de', 1, 'https://ror.org/03q2pyf14 Herzstiftung Olten'),
(51229, 'https://ror.org/05d56bw89', 'en', 1, 'https://ror.org/05d56bw89 Ian''s Friends Foundation'),
(51230, 'https://ror.org/01yr4dd89', 'da', 1, 'https://ror.org/01yr4dd89 Hesteafgiftsfondens'),
(51231, 'https://ror.org/045czd036', 'en', 1, 'https://ror.org/045czd036 Horizon Foundation'),
(51232, 'https://ror.org/0186zbx36', 'en', 1, 'https://ror.org/0186zbx36 Innovating Worthy Projects Foundation'),
(51233, 'https://ror.org/01karna91', 'en', 1, 'https://ror.org/01karna91 Health Research Foundation'),
(51234, 'https://ror.org/017e31734', 'en', 1, 'https://ror.org/017e31734 Horizon Blue Cross Blue Shield of New Jersey'),
(51235, 'https://ror.org/04qq88e08', 'en', 1, 'https://ror.org/04qq88e08 International Headache Society'),
(51236, 'https://ror.org/01yjpd768', 'en', 1, 'https://ror.org/01yjpd768 International Order of Alhambra'),
(51237, 'https://ror.org/057dcw631', 'en', 1, 'https://ror.org/057dcw631 Innovation Center for U.S. Dairy'),
(51238, 'https://ror.org/027hx7576', 'en', 1, 'https://ror.org/027hx7576 HHV-6 Foundation'),
(51239, 'https://ror.org/00vj5dr06', 'en', 1, 'https://ror.org/00vj5dr06 Illinois Childrens Healthcare Foundation'),
(51240, 'https://ror.org/037jcf003', 'en', 1, 'https://ror.org/037jcf003 Horowitz Foundation for Social Policy'),
(51241, 'https://ror.org/03a9cwm95', 'en', 1, 'https://ror.org/03a9cwm95 Innovative Structural Materials Association'),
(51242, 'https://ror.org/03tv67y51', 'en', 1, 'https://ror.org/03tv67y51 Illinois Critical Access Hospital Network'),
(51243, 'https://ror.org/037bzzg07', 'en', 1, 'https://ror.org/037bzzg07 Sasaki Associates'),
(51244, 'https://ror.org/0351vqb61', 'en', 1, 'https://ror.org/0351vqb61 Inoue Foundation for Science äŗ•äøŠē§‘å­¦ęŒÆčˆˆč²”å›£'),
(51245, 'https://ror.org/043ae3f44', 'en', 1, 'https://ror.org/043ae3f44 Hospital Research Foundation'),
(51246, 'https://ror.org/00k81wv70', 'en', 1, 'https://ror.org/00k81wv70 International Society for Peritoneal Dialysis'),
(51247, 'https://ror.org/04eh92011', 'en', 1, 'https://ror.org/04eh92011 IMB Bank'),
(51248, 'https://ror.org/02g0ran52', 'en', 1, 'https://ror.org/02g0ran52 Hille Foundation'),
(51249, 'https://ror.org/00jb20j87', 'en', 1, 'https://ror.org/00jb20j87 Impact Fund'),
(51250, 'https://ror.org/03t1kp138', 'en', 1, 'https://ror.org/03t1kp138 Impact on Education'),
(51251, 'https://ror.org/02y5beg61', 'fr', 1, 'https://ror.org/02y5beg61 Institut Louis Bachelier'),
(51252, 'https://ror.org/03ayy2w09', 'en', 1, 'https://ror.org/03ayy2w09 Hirshberg Foundation for Pancreatic Cancer Research'),
(51253, 'https://ror.org/03k77k104', 'en', 1, 'https://ror.org/03k77k104 Houston Endowment'),
(51254, 'https://ror.org/05vhwqa91', 'en', 1, 'https://ror.org/05vhwqa91 Independent Sector'),
(51255, 'https://ror.org/01qfkht77', 'en', 1, 'https://ror.org/01qfkht77 Independent Social Research Foundation'),
(51256, 'https://ror.org/04yzcyv37', 'en', 1, 'https://ror.org/04yzcyv37 Howard Gilman Foundation'),
(51257, 'https://ror.org/00pzxxx15', 'en', 1, 'https://ror.org/00pzxxx15 India Diabetes Research Foundation'),
(51258, 'https://ror.org/04sky4s35', 'en', 1, 'https://ror.org/04sky4s35 Institut Penyelidikan dan Kemajuan Pertanian Malaysia Malaysian Agricultural Research and Development Institute'),
(51259, 'https://ror.org/05dbdfg95', 'en', 1, 'https://ror.org/05dbdfg95 International Transactional Analysis Association'),
(51260, 'https://ror.org/03farsx25', 'en', 1, 'https://ror.org/03farsx25 Indian Academy of Neurosciences'),
(51261, 'https://ror.org/01nhct278', 'en', 1, 'https://ror.org/01nhct278 International Transplant Nurses Society'),
(51262, 'https://ror.org/04jrb3091', 'en', 1, 'https://ror.org/04jrb3091 Institute for Aegean Prehistory'),
(51263, 'https://ror.org/04sr97002', 'en', 1, 'https://ror.org/04sr97002 Indian Land Tenure Foundation'),
(51264, 'https://ror.org/006evjj22', 'en', 1, 'https://ror.org/006evjj22 Indian Rheumatology Association'),
(51265, 'https://ror.org/0125syc65', 'en', 1, 'https://ror.org/0125syc65 International Union of Basic and Clinical Pharmacology'),
(51266, 'https://ror.org/00nds2e18', 'en', 1, 'https://ror.org/00nds2e18 Indiana State University Foundation'),
(51267, 'https://ror.org/058ns4d40', 'en', 1, 'https://ror.org/058ns4d40 Hoglund Foundation'),
(51268, 'https://ror.org/00910ay07', 'en', 1, 'https://ror.org/00910ay07 International Union of Biochemistry and Molecular Biology'),
(51269, 'https://ror.org/045gvx431', 'en', 1, 'https://ror.org/045gvx431 Huisking Foundation'),
(51270, 'https://ror.org/03bea3609', 'en', 1, 'https://ror.org/03bea3609 International Urogynecological Association'),
(51271, 'https://ror.org/05dezr114', 'en', 1, 'https://ror.org/05dezr114 Institute of Mental Hygiene'),
(51272, 'https://ror.org/00m61y124', 'en', 1, 'https://ror.org/00m61y124 International Waldenstrom''s Macroglobulinemia Foundation'),
(51273, 'https://ror.org/03r72d818', 'no_lang_code', 1, 'https://ror.org/03r72d818 Hokuto (Japan) ćƒ›ć‚Æćƒˆę Ŗå¼ä¼šē¤¾'),
(51274, 'https://ror.org/00dfmn753', 'de', 1, 'https://ror.org/00dfmn753 Internationale Bodensee-Hochschule'),
(51275, 'https://ror.org/01qgzjd70', 'en', 1, 'https://ror.org/01qgzjd70 Indonesia Toray Science Foundation'),
(51276, 'https://ror.org/023t5f665', 'en', 1, 'https://ror.org/023t5f665 Humana Foundation'),
(51277, 'https://ror.org/05gj4md48', 'en', 1, 'https://ror.org/05gj4md48 Euvaldo Lodi Institute Instituto Euvaldo Lodi'),
(51278, 'https://ror.org/04n11b617', 'en', 1, 'https://ror.org/04n11b617 Izumi Foundation'),
(51279, 'https://ror.org/04hnnkw05', 'en', 1, 'https://ror.org/04hnnkw05 Interstitial Cystitis Association'),
(51280, 'https://ror.org/05mxy6748', 'en', 1, 'https://ror.org/05mxy6748 J. E. and L. E. Mabee Foundation'),
(51281, 'https://ror.org/01efj0y81', 'en', 1, 'https://ror.org/01efj0y81 Intensive Care Foundation'),
(51282, 'https://ror.org/01930sy39', 'en', 1, 'https://ror.org/01930sy39 J. Marion Sims Foundation'),
(51283, 'https://ror.org/03xgnmf38', 'en', 1, 'https://ror.org/03xgnmf38 Gallmann Memorial Foundation'),
(51284, 'https://ror.org/01ky9zs74', 'en', 1, 'https://ror.org/01ky9zs74 Pritzker Traubert Family Foundation'),
(51285, 'https://ror.org/049zxm836', 'sv', 1, 'https://ror.org/049zxm836 IngaBritt och Arne Lundbergs Forskningsstiftelse'),
(51286, 'https://ror.org/013p55530', 'en', 1, 'https://ror.org/013p55530 J. F Maddox Foundation'),
(51287, 'https://ror.org/03vqj9f54', 'en', 1, 'https://ror.org/03vqj9f54 Interleukin Foundation'),
(51288, 'https://ror.org/02ej1by07', 'en', 1, 'https://ror.org/02ej1by07 Intermedia Arts'),
(51289, 'https://ror.org/03bw33m14', 'en', 1, 'https://ror.org/03bw33m14 Hunter''s Dream for a Cure'),
(51290, 'https://ror.org/00m4t9795', 'en', 1, 'https://ror.org/00m4t9795 Hunter''s Hope Foundation'),
(51291, 'https://ror.org/003thv661', 'en', 1, 'https://ror.org/003thv661 Jack Kent Cooke Foundation'),
(51292, 'https://ror.org/04bre5f76', 'en', 1, 'https://ror.org/04bre5f76 Invergowrie Foundation'),
(51293, 'https://ror.org/00jkq3860', 'en', 1, 'https://ror.org/00jkq3860 Jackson Foundation'),
(51294, 'https://ror.org/00n789a42', 'en', 1, 'https://ror.org/00n789a42 International Association for the Evaluation of Educational Achievement'),
(51295, 'https://ror.org/037yq7995', 'en', 1, 'https://ror.org/037yq7995 Hunting Retriever Club'),
(51296, 'https://ror.org/028ka4p86', 'en', 1, 'https://ror.org/028ka4p86 International Association of Fire Fighters Charitable Foundation'),
(51297, 'https://ror.org/02d5day94', 'en', 1, 'https://ror.org/02d5day94 IPEC-Americas'),
(51298, 'https://ror.org/01mahh263', 'en', 1, 'https://ror.org/01mahh263 Huntington Society of Canada'),
(51299, 'https://ror.org/0064m4q05', 'en', 1, 'https://ror.org/0064m4q05 Huntington''s Disease Society of America'),
(51300, 'https://ror.org/02dm9bj37', 'en', 1, 'https://ror.org/02dm9bj37 Blaustein Philanthropic Group'),
(51301, 'https://ror.org/02gae5p70', 'en', 1, 'https://ror.org/02gae5p70 International Association of Hydrological Sciences'),
(51302, 'https://ror.org/01j5zmq23', 'en', 1, 'https://ror.org/01j5zmq23 Initial Teaching Alphabet Foundation'),
(51303, 'https://ror.org/01b242q75', 'en', 1, 'https://ror.org/01b242q75 Jacob and Valeria Langeloth Foundation'),
(51304, 'https://ror.org/048vh5r70', 'en', 1, 'https://ror.org/048vh5r70 Civil Society Legislative Advocacy Centre'),
(51305, 'https://ror.org/0152qkr29', 'en', 1, 'https://ror.org/0152qkr29 Arkansas State University System'),
(51306, 'https://ror.org/011bbtj34', 'en', 1, 'https://ror.org/011bbtj34 Emergency University'),
(51307, 'https://ror.org/00ykac431', 'en', 1, 'https://ror.org/00ykac431 Institute of Chemical Technology'),
(51308, 'https://ror.org/03sf3vq45', 'en', 1, 'https://ror.org/03sf3vq45 NDSU Research Foundation'),
(51309, 'https://ror.org/05bqezz06', 'en', 1, 'https://ror.org/05bqezz06 Norwich University Applied Research Institute'),
(51310, 'https://ror.org/00thwk687', 'en', 1, 'https://ror.org/00thwk687 Western Research Institute'),
(51311, 'https://ror.org/031d0t341', 'fr', 1, 'https://ror.org/031d0t341 Interaction UniversitĆ© Ɖconomie'),
(51312, 'https://ror.org/00hrner53', 'fr', 1, 'https://ror.org/00hrner53 Le Petit Monde'),
(51313, 'https://ror.org/00s2xkh70', 'en', 1, 'https://ror.org/00s2xkh70 Peking University Stomatological Hospital'),
(51314, 'https://ror.org/00xpfw690', 'en', 1, 'https://ror.org/00xpfw690 Huaian First People’s Hospital ę·®å®‰åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(51315, 'https://ror.org/0063dbm34', 'en', 1, 'https://ror.org/0063dbm34 Sheffield Children''s University'),
(51316, 'https://ror.org/0349geh35', 'en', 1, 'https://ror.org/0349geh35 University Bank'),
(51317, 'https://ror.org/040gykh71', 'es', 1, 'https://ror.org/040gykh71 Universidad de IngenierĆ­a y TecnologĆ­a University of Engineering & Technology'),
(51318, 'https://ror.org/05mq03431', 'en', 1, 'https://ror.org/05mq03431 New York University Paris'),
(51319, 'https://ror.org/03yd12021', 'en', 1, 'https://ror.org/03yd12021 Yueyang Hospital äøŠęµ·äø­åŒ»čÆå¤§å­¦é™„å±žå²³é˜³äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(51320, 'https://ror.org/04ax0gn06', 'no_lang_code', 1, 'https://ror.org/04ax0gn06 ARaymond (France)'),
(51321, 'https://ror.org/03x0a1z16', 'no_lang_code', 1, 'https://ror.org/03x0a1z16 Asia Vital Components (Taiwan) äŗšę“²ē”Ÿå‘½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(51322, 'https://ror.org/02x2h0d07', 'no_lang_code', 1, 'https://ror.org/02x2h0d07 Assa Abloy (Sweden)'),
(51323, 'https://ror.org/013b0rk29', 'no_lang_code', 1, 'https://ror.org/013b0rk29 American Standard (United States)'),
(51324, 'https://ror.org/01ss9zs84', 'no_lang_code', 1, 'https://ror.org/01ss9zs84 Acuity Brands (United states)'),
(51325, 'https://ror.org/02dte5569', 'no_lang_code', 1, 'https://ror.org/02dte5569 LyondellBasell (Italy)'),
(51326, 'https://ror.org/041r3e346', 'no_lang_code', 1, 'https://ror.org/041r3e346 Accenture (Switzerland)'),
(51327, 'https://ror.org/05r8wy666', 'no_lang_code', 1, 'https://ror.org/05r8wy666 Actuant (United States)'),
(51328, 'https://ror.org/00mnrxf72', 'no_lang_code', 1, 'https://ror.org/00mnrxf72 Alibaba Group (Cayman Islands)'),
(51329, 'https://ror.org/023ryx304', 'en', 1, 'https://ror.org/023ryx304 Byblos Bank'),
(51330, 'https://ror.org/02rc7rz93', 'no_lang_code', 1, 'https://ror.org/02rc7rz93 Autoliv (United States)'),
(51331, 'https://ror.org/02hy2v836', 'no_lang_code', 1, 'https://ror.org/02hy2v836 Amphenol (United States)'),
(51332, 'https://ror.org/01545ep47', 'no_lang_code', 1, 'https://ror.org/01545ep47 Covestro (United States)'),
(51333, 'https://ror.org/04e8gf053', 'no_lang_code', 1, 'https://ror.org/04e8gf053 Amphenol (Germany)'),
(51334, 'https://ror.org/03n3c3r21', 'no_lang_code', 1, 'https://ror.org/03n3c3r21 Fiat Chrysler Automobiles (Germany)'),
(51335, 'https://ror.org/01yqat764', 'no_lang_code', 1, 'https://ror.org/01yqat764 CommScope (United States)'),
(51336, 'https://ror.org/01zs69903', 'no_lang_code', 1, 'https://ror.org/01zs69903 Brembo (United Kingdom)'),
(51337, 'https://ror.org/02z2z4m14', 'no_lang_code', 1, 'https://ror.org/02z2z4m14 Access Energy (United Kingdom)'),
(51338, 'https://ror.org/01se4qt95', 'no_lang_code', 1, 'https://ror.org/01se4qt95 Amada (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒžćƒ€'),
(51339, 'https://ror.org/032qryz87', 'no_lang_code', 1, 'https://ror.org/032qryz87 Anritsu (Japan) ć‚¢ćƒ³ćƒŖćƒ„ę Ŗå¼ä¼šē¤¾'),
(51340, 'https://ror.org/05cy1th84', 'no_lang_code', 1, 'https://ror.org/05cy1th84 Amazonen-Werke (Germany)'),
(51341, 'https://ror.org/00atq5220', 'no_lang_code', 1, 'https://ror.org/00atq5220 American Axle & Manufacturing (United States)'),
(51342, 'https://ror.org/005cnxk39', 'no_lang_code', 1, 'https://ror.org/005cnxk39 AGA (Sweden)'),
(51343, 'https://ror.org/0396rhp27', 'no_lang_code', 1, 'https://ror.org/0396rhp27 Danaher (Canada)'),
(51344, 'https://ror.org/027kczr92', 'no_lang_code', 1, 'https://ror.org/027kczr92 Asahi Glass (Belgium)'),
(51345, 'https://ror.org/03sbjcp06', 'no_lang_code', 1, 'https://ror.org/03sbjcp06 Bobst (Switzerland)'),
(51346, 'https://ror.org/05wdyxj97', 'no_lang_code', 1, 'https://ror.org/05wdyxj97 Kyocera (United States)'),
(51347, 'https://ror.org/04habne08', 'no_lang_code', 1, 'https://ror.org/04habne08 Applied Medical Resources (United States)'),
(51348, 'https://ror.org/02eatcc42', 'no_lang_code', 1, 'https://ror.org/02eatcc42 AGCO (United States)'),
(51349, 'https://ror.org/012cc0c94', 'no_lang_code', 1, 'https://ror.org/012cc0c94 Core Competence'),
(51350, 'https://ror.org/018pfae44', 'no_lang_code', 1, 'https://ror.org/018pfae44 Axcelis Technologies (United States)'),
(51351, 'https://ror.org/05er00a75', 'no_lang_code', 1, 'https://ror.org/05er00a75 Linde (United States)'),
(51352, 'https://ror.org/04gte0y44', 'no_lang_code', 1, 'https://ror.org/04gte0y44 Ahlstrom-Munksjƶ (Finland)'),
(51353, 'https://ror.org/021wdzv30', 'en', 1, 'https://ror.org/021wdzv30 ARCH Development Corporation'),
(51354, 'https://ror.org/019qdfq91', 'no_lang_code', 1, 'https://ror.org/019qdfq91 Borealis (Finland)'),
(51355, 'https://ror.org/03rbf8960', 'no_lang_code', 1, 'https://ror.org/03rbf8960 LyondellBasell (United States)'),
(51356, 'https://ror.org/04m492h23', 'no_lang_code', 1, 'https://ror.org/04m492h23 BOS (Germany)'),
(51357, 'https://ror.org/04kmayk86', 'no_lang_code', 1, 'https://ror.org/04kmayk86 Von Ardenne (Germany)'),
(51358, 'https://ror.org/00n6phm26', 'no_lang_code', 1, 'https://ror.org/00n6phm26 J C Bamford Excavators (United Kingdom)'),
(51359, 'https://ror.org/05wg45912', 'no_lang_code', 1, 'https://ror.org/05wg45912 Meritor (France)'),
(51360, 'https://ror.org/01kvsqe61', 'no_lang_code', 1, 'https://ror.org/01kvsqe61 CarboTech (Germany)'),
(51361, 'https://ror.org/007qm1691', 'no_lang_code', 1, 'https://ror.org/007qm1691 Boston Scientific (Barbados)'),
(51362, 'https://ror.org/00pex3x41', 'no_lang_code', 1, 'https://ror.org/00pex3x41 Celanese (United States)'),
(51363, 'https://ror.org/051mth390', 'no_lang_code', 1, 'https://ror.org/051mth390 BIC (France)'),
(51364, 'https://ror.org/02hhch541', 'no_lang_code', 1, 'https://ror.org/02hhch541 TrĆØves (France)'),
(51365, 'https://ror.org/05g0ds378', 'no_lang_code', 1, 'https://ror.org/05g0ds378 Dainichiseika (Japan) å¤§ę—„ē²¾åŒ–å·„'),
(51366, 'https://ror.org/02mabf754', 'no_lang_code', 1, 'https://ror.org/02mabf754 Bissell (United States)'),
(51367, 'https://ror.org/01e00z659', 'no_lang_code', 1, 'https://ror.org/01e00z659 Joyson Safety Systems (United States)'),
(51368, 'https://ror.org/05rfjs622', 'no_lang_code', 1, 'https://ror.org/05rfjs622 Briggs & Stratton (United States)'),
(51369, 'https://ror.org/020pyx735', 'no_lang_code', 1, 'https://ror.org/020pyx735 Danieli (Italy)'),
(51370, 'https://ror.org/01cwc3t60', 'no_lang_code', 1, 'https://ror.org/01cwc3t60 CenturyLink (United States)'),
(51371, 'https://ror.org/030z2cx33', 'no_lang_code', 1, 'https://ror.org/030z2cx33 Cera Engineering (France)'),
(51372, 'https://ror.org/04vepqv68', 'no_lang_code', 1, 'https://ror.org/04vepqv68 DAV (France)'),
(51373, 'https://ror.org/04p59xr47', 'en', 1, 'https://ror.org/04p59xr47 Compal Electronics (Taiwan) ä»å®ē”µč„‘å·„äøšč‚”ä»½ęœ‰é™å…¬åø'),
(51374, 'https://ror.org/02shz5w36', 'no_lang_code', 1, 'https://ror.org/02shz5w36 Julius Blum (Austria)'),
(51375, 'https://ror.org/00099v123', 'no_lang_code', 1, 'https://ror.org/00099v123 CCL Industries (United States)'),
(51376, 'https://ror.org/02fpqgd92', 'no_lang_code', 1, 'https://ror.org/02fpqgd92 Conair (United States)'),
(51377, 'https://ror.org/05539he75', 'no_lang_code', 1, 'https://ror.org/05539he75 Brose Fahrzeugteile (Germany)'),
(51378, 'https://ror.org/00686cm81', 'no_lang_code', 1, 'https://ror.org/00686cm81 Eagle Industry (Japan) ć‚¤ćƒ¼ć‚°ćƒ«å·„ę„­'),
(51379, 'https://ror.org/01ksbcg70', 'no_lang_code', 1, 'https://ror.org/01ksbcg70 Endress Hauser Messtechnik (Germany)'),
(51380, 'https://ror.org/058rdjg17', 'no_lang_code', 1, 'https://ror.org/058rdjg17 DEKA (United States)'),
(51381, 'https://ror.org/00ht04y43', 'no_lang_code', 1, 'https://ror.org/00ht04y43 Lanxess (United States)'),
(51382, 'https://ror.org/0219m0g06', 'no_lang_code', 1, 'https://ror.org/0219m0g06 EberspƤcher (Germany)'),
(51383, 'https://ror.org/05jwr0z51', 'no_lang_code', 1, 'https://ror.org/05jwr0z51 Consort Medical (United Kingdom)'),
(51384, 'https://ror.org/00r68rb43', 'no_lang_code', 1, 'https://ror.org/00r68rb43 ebm-papst'),
(51385, 'https://ror.org/058st1g82', 'no_lang_code', 1, 'https://ror.org/058st1g82 DeLaval (Sweden)'),
(51386, 'https://ror.org/044eeh010', 'no_lang_code', 1, 'https://ror.org/044eeh010 BSH Home Appliances (United States)'),
(51387, 'https://ror.org/05avn2m80', 'no_lang_code', 1, 'https://ror.org/05avn2m80 Edwards (United Kingdom)'),
(51388, 'https://ror.org/041pqtq45', 'no_lang_code', 1, 'https://ror.org/041pqtq45 E.G.O (Germany)'),
(51389, 'https://ror.org/009za8t17', 'no_lang_code', 1, 'https://ror.org/009za8t17 Delta Faucet (United States)'),
(51390, 'https://ror.org/05kw4cv96', 'no_lang_code', 1, 'https://ror.org/05kw4cv96 Buckman Laboratories (United States)'),
(51391, 'https://ror.org/03jaff633', 'no_lang_code', 1, 'https://ror.org/03jaff633 Denka (Japan) é›»ę°—åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(51392, 'https://ror.org/008qxfr30', 'no_lang_code', 1, 'https://ror.org/008qxfr30 Chervon (Hongkong)'),
(51393, 'https://ror.org/050k26q88', 'no_lang_code', 1, 'https://ror.org/050k26q88 Deutsche Post (Germany)'),
(51394, 'https://ror.org/058qcpv96', 'no_lang_code', 1, 'https://ror.org/058qcpv96 Electrolux (Sweden)'),
(51395, 'https://ror.org/03kkp9n92', 'no_lang_code', 1, 'https://ror.org/03kkp9n92 BYD (China) ęÆ”äŗščæŖč‚”ä»½ęœ‰é™å…¬åø'),
(51396, 'https://ror.org/02nxm3e56', 'no_lang_code', 1, 'https://ror.org/02nxm3e56 Electrolux (Belgium)'),
(51397, 'https://ror.org/01kg37d11', 'no_lang_code', 1, 'https://ror.org/01kg37d11 Deutz (Germany)'),
(51398, 'https://ror.org/05xf13p94', 'no_lang_code', 1, 'https://ror.org/05xf13p94 InnoLux (Taiwan) ē¾¤å‰µå…‰é›»č‚”ä»½ęœ‰é™å…¬åø'),
(51399, 'https://ror.org/02b4by704', 'no_lang_code', 1, 'https://ror.org/02b4by704 Electrolux (United States)'),
(51400, 'https://ror.org/03af7p216', 'no_lang_code', 1, 'https://ror.org/03af7p216 Cosmo Oil (Japan) ć‚³ć‚¹ćƒ¢ēŸ³ę²¹ę Ŗå¼ä¼šē¤¾'),
(51401, 'https://ror.org/01e3h1850', 'no_lang_code', 1, 'https://ror.org/01e3h1850 Campagnolo (Italy)'),
(51402, 'https://ror.org/040pjdm93', 'no_lang_code', 1, 'https://ror.org/040pjdm93 Creative Technology (Singapore)'),
(51403, 'https://ror.org/01jcaat98', 'no_lang_code', 1, 'https://ror.org/01jcaat98 Crown Holdings (United States)'),
(51404, 'https://ror.org/03j0xs842', 'no_lang_code', 1, 'https://ror.org/03j0xs842 Dialog Semiconductor (Germany)'),
(51405, 'https://ror.org/02decpv84', 'no_lang_code', 1, 'https://ror.org/02decpv84 Crown Holdings (United Kingdom)'),
(51406, 'https://ror.org/0584p3034', 'no_lang_code', 1, 'https://ror.org/0584p3034 Sealed Air (United States)'),
(51407, 'https://ror.org/05c3vdm18', 'no_lang_code', 1, 'https://ror.org/05c3vdm18 Bucher Emhart Glass (Switzerland)'),
(51408, 'https://ror.org/04knmzc94', 'no_lang_code', 1, 'https://ror.org/04knmzc94 Faro Technologies (United States)'),
(51409, 'https://ror.org/02vtxt818', 'no_lang_code', 1, 'https://ror.org/02vtxt818 Bucher Emhart Glass (United States)'),
(51410, 'https://ror.org/027n0md32', 'no_lang_code', 1, 'https://ror.org/027n0md32 Faure Equipements (France)'),
(51411, 'https://ror.org/025kcyv21', 'no_lang_code', 1, 'https://ror.org/025kcyv21 Cummins Allison (United States)'),
(51412, 'https://ror.org/05jke7315', 'no_lang_code', 1, 'https://ror.org/05jke7315 Pioneer (United States)'),
(51413, 'https://ror.org/05w425588', 'no_lang_code', 1, 'https://ror.org/05w425588 Ciena (United States)'),
(51414, 'https://ror.org/03gr95p90', 'no_lang_code', 1, 'https://ror.org/03gr95p90 Solvay (Austria)'),
(51415, 'https://ror.org/02kb3q578', 'no_lang_code', 1, 'https://ror.org/02kb3q578 Dolby (Netherlands)'),
(51416, 'https://ror.org/030qsdn71', 'no_lang_code', 1, 'https://ror.org/030qsdn71 Federal Mogul (United States)'),
(51417, 'https://ror.org/00rp38085', 'no_lang_code', 1, 'https://ror.org/00rp38085 Continental Emitec (Germany)'),
(51418, 'https://ror.org/01adg4754', 'no_lang_code', 1, 'https://ror.org/01adg4754 ConvergeOne (United States)'),
(51419, 'https://ror.org/01fc2rf40', 'no_lang_code', 1, 'https://ror.org/01fc2rf40 Dorma (Germany)'),
(51420, 'https://ror.org/05gcc9f60', 'no_lang_code', 1, 'https://ror.org/05gcc9f60 Endress+Hauser (Switzerland)'),
(51421, 'https://ror.org/04m20gp14', 'no_lang_code', 1, 'https://ror.org/04m20gp14 Walter Reist Holding (Switzerland)'),
(51422, 'https://ror.org/02z602v88', 'no_lang_code', 1, 'https://ror.org/02z602v88 Daewoo Electronics (South Korea)'),
(51423, 'https://ror.org/02bb4dw78', 'no_lang_code', 1, 'https://ror.org/02bb4dw78 CJ CheilJedang (South Korea) ģ”Øģ œģ“ģ œģ¼ģ œė‹¹ ģ£¼ģ‹ķšŒģ‚¬'),
(51424, 'https://ror.org/049kdc638', 'no_lang_code', 1, 'https://ror.org/049kdc638 MaxLinear (United States)'),
(51425, 'https://ror.org/03b0x6m16', 'no_lang_code', 1, 'https://ror.org/03b0x6m16 Gretsch-Unitas (France)'),
(51426, 'https://ror.org/03j6gjn98', 'no_lang_code', 1, 'https://ror.org/03j6gjn98 Daiichi Kogyo Seiyaku (Japan) ē¬¬äø€å·„ę„­č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(51427, 'https://ror.org/011fhys37', 'no_lang_code', 1, 'https://ror.org/011fhys37 Claas (Germany)'),
(51428, 'https://ror.org/047kfm164', 'no_lang_code', 1, 'https://ror.org/047kfm164 DrƤxlmaier (Germany)'),
(51429, 'https://ror.org/03wjwyj98', 'no_lang_code', 1, 'https://ror.org/03wjwyj98 Eppendorf (Germany)'),
(51430, 'https://ror.org/01w78qg15', 'no_lang_code', 1, 'https://ror.org/01w78qg15 Daicel (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ć‚»ćƒ«'),
(51431, 'https://ror.org/03tah6c23', 'no_lang_code', 1, 'https://ror.org/03tah6c23 Ferro (United States)'),
(51432, 'https://ror.org/035vrvw61', 'no_lang_code', 1, 'https://ror.org/035vrvw61 Prysmian Group (Netherlands)'),
(51433, 'https://ror.org/006hwbx79', 'no_lang_code', 1, 'https://ror.org/006hwbx79 Clariant (United Kingdom)'),
(51434, 'https://ror.org/05qjv1f51', 'no_lang_code', 1, 'https://ror.org/05qjv1f51 Erbe Elektromedizin (Germany)'),
(51435, 'https://ror.org/05fa63r36', 'no_lang_code', 1, 'https://ror.org/05fa63r36 Daido Steel (Japan) å¤§åŒē‰¹ę®Šé‹¼'),
(51436, 'https://ror.org/04hh34543', 'no_lang_code', 1, 'https://ror.org/04hh34543 Doosan (United States)'),
(51437, 'https://ror.org/03tvt3c62', 'no_lang_code', 1, 'https://ror.org/03tvt3c62 Goodyear (United Kingdom)'),
(51438, 'https://ror.org/04xpcky34', 'no_lang_code', 1, 'https://ror.org/04xpcky34 Fischer (Germany)'),
(51439, 'https://ror.org/05jzx9n24', 'no_lang_code', 1, 'https://ror.org/05jzx9n24 Georg Fischer (Switzerland)'),
(51440, 'https://ror.org/01tqjep44', 'no_lang_code', 1, 'https://ror.org/01tqjep44 Novasep (Germany)'),
(51441, 'https://ror.org/03e4f7x92', 'no_lang_code', 1, 'https://ror.org/03e4f7x92 Groz Beckert (Germany)'),
(51442, 'https://ror.org/05gtx2j83', 'no_lang_code', 1, 'https://ror.org/05gtx2j83 Fives (France)'),
(51443, 'https://ror.org/01s5m6w98', 'no_lang_code', 1, 'https://ror.org/01s5m6w98 DyStar (Germany)'),
(51444, 'https://ror.org/057766n30', 'no_lang_code', 1, 'https://ror.org/057766n30 Evoqua Water Technologies (United States)'),
(51445, 'https://ror.org/03q7jt003', 'no_lang_code', 1, 'https://ror.org/03q7jt003 Flex (United States)'),
(51446, 'https://ror.org/012jvtn24', 'no_lang_code', 1, 'https://ror.org/012jvtn24 E Ink (United States)'),
(51447, 'https://ror.org/0231rt128', 'no_lang_code', 1, 'https://ror.org/0231rt128 GS Yuasa (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ć‚Øć‚¹ćƒ»ćƒ¦ć‚¢ć‚µ ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(51448, 'https://ror.org/03b6zzt23', 'no_lang_code', 1, 'https://ror.org/03b6zzt23 Futaba (Japan) åŒč‘‰é›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(51449, 'https://ror.org/01fvs9743', 'no_lang_code', 1, 'https://ror.org/01fvs9743 Extreme Networks (United States)'),
(51450, 'https://ror.org/01jrqwn31', 'no_lang_code', 1, 'https://ror.org/01jrqwn31 GC Corporation (Japan)'),
(51451, 'https://ror.org/03td08d28', 'no_lang_code', 1, 'https://ror.org/03td08d28 TechnipFMC (United States)'),
(51452, 'https://ror.org/032z1nw74', 'no_lang_code', 1, 'https://ror.org/032z1nw74 Hosiden (Japan) ćƒ›ć‚·ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(51453, 'https://ror.org/05m1qxf57', 'no_lang_code', 1, 'https://ror.org/05m1qxf57 NestlƩ (France)'),
(51454, 'https://ror.org/03ts5k304', 'no_lang_code', 1, 'https://ror.org/03ts5k304 Focke & Co (Germany)'),
(51455, 'https://ror.org/00w1gss13', 'no_lang_code', 1, 'https://ror.org/00w1gss13 Haier (United States)'),
(51456, 'https://ror.org/018mdm506', 'no_lang_code', 1, 'https://ror.org/018mdm506 Ford Motor Company (France)'),
(51457, 'https://ror.org/03m0mkk67', 'no_lang_code', 1, 'https://ror.org/03m0mkk67 Gates (United States)'),
(51458, 'https://ror.org/03n4yr938', 'no_lang_code', 1, 'https://ror.org/03n4yr938 FormFactor (United States)'),
(51459, 'https://ror.org/02e385c51', 'no_lang_code', 1, 'https://ror.org/02e385c51 Amec Foster Wheeler (United States)'),
(51460, 'https://ror.org/04j24r737', 'no_lang_code', 1, 'https://ror.org/04j24r737 Huf Hülsbeck & Fürst (Germany)'),
(51461, 'https://ror.org/056zfc440', 'no_lang_code', 1, 'https://ror.org/056zfc440 Visteon (South Korea)'),
(51462, 'https://ror.org/00zs5nz08', 'no_lang_code', 1, 'https://ror.org/00zs5nz08 Oras (Germany)'),
(51463, 'https://ror.org/0050qc271', 'no_lang_code', 1, 'https://ror.org/0050qc271 IAC Group (United States)'),
(51464, 'https://ror.org/00gt7fk38', 'no_lang_code', 1, 'https://ror.org/00gt7fk38 Hunter Douglas (United States)'),
(51465, 'https://ror.org/033z8qs97', 'no_lang_code', 1, 'https://ror.org/033z8qs97 Hunter Douglas (Netherlands)'),
(51466, 'https://ror.org/00qee0597', 'no_lang_code', 1, 'https://ror.org/00qee0597 Invacare (United States)'),
(51467, 'https://ror.org/0447s2m06', 'no_lang_code', 1, 'https://ror.org/0447s2m06 Hartmann Group (Germany)'),
(51468, 'https://ror.org/03z462w78', 'no_lang_code', 1, 'https://ror.org/03z462w78 Heckler and Koch (Germany)'),
(51469, 'https://ror.org/02f6zxv37', 'no_lang_code', 1, 'https://ror.org/02f6zxv37 EMS (Switzerland)'),
(51470, 'https://ror.org/04g3rsw26', 'no_lang_code', 1, 'https://ror.org/04g3rsw26 Getrag (Germany)'),
(51471, 'https://ror.org/04xxdqj96', 'no_lang_code', 1, 'https://ror.org/04xxdqj96 Koch Industries (Switzerland)'),
(51472, 'https://ror.org/04vb0yp97', 'no_lang_code', 1, 'https://ror.org/04vb0yp97 Mitsui Chemicals (Germany)'),
(51473, 'https://ror.org/01yrkpa05', 'no_lang_code', 1, 'https://ror.org/01yrkpa05 Geze (Germany)'),
(51474, 'https://ror.org/02bgv4w08', 'no_lang_code', 1, 'https://ror.org/02bgv4w08 Iscar (Israel)'),
(51475, 'https://ror.org/04kq54507', 'no_lang_code', 1, 'https://ror.org/04kq54507 Fujikin (Japan)'),
(51476, 'https://ror.org/017r9vm74', 'no_lang_code', 1, 'https://ror.org/017r9vm74 Masco (Germany)'),
(51477, 'https://ror.org/0473srk52', 'no_lang_code', 1, 'https://ror.org/0473srk52 Ifm electronic (Germany)'),
(51478, 'https://ror.org/00qfp3s59', 'no_lang_code', 1, 'https://ror.org/00qfp3s59 Happich (Germany)'),
(51479, 'https://ror.org/01s7ds279', 'no_lang_code', 1, 'https://ror.org/01s7ds279 Ishida Seisakusho (Japan) ēŸ³ē”°č£½ä½œę‰€'),
(51480, 'https://ror.org/012ddpd05', 'no_lang_code', 1, 'https://ror.org/012ddpd05 Givaudan (Switzerland)'),
(51481, 'https://ror.org/04fhtk651', 'no_lang_code', 1, 'https://ror.org/04fhtk651 Hettich (Germany)'),
(51482, 'https://ror.org/0454qd124', 'no_lang_code', 1, 'https://ror.org/0454qd124 Kanzaki (Japan)'),
(51483, 'https://ror.org/020fcst87', 'no_lang_code', 1, 'https://ror.org/020fcst87 Hewlett-Packard (Netherlands)'),
(51484, 'https://ror.org/0521k5n17', 'no_lang_code', 1, 'https://ror.org/0521k5n17 Western Digital (Japan)'),
(51485, 'https://ror.org/0036cks17', 'no_lang_code', 1, 'https://ror.org/0036cks17 Kathrein (Germany)'),
(51486, 'https://ror.org/0372zyg05', 'no_lang_code', 1, 'https://ror.org/0372zyg05 Huisman (Netherlands)'),
(51487, 'https://ror.org/05jff7p65', 'no_lang_code', 1, 'https://ror.org/05jff7p65 Imerys (United Kingdom)'),
(51488, 'https://ror.org/02384d823', 'no_lang_code', 1, 'https://ror.org/02384d823 Metalsa (Germany)'),
(51489, 'https://ror.org/008hj7c61', 'no_lang_code', 1, 'https://ror.org/008hj7c61 Kayaba Industry (Japan) ć‚«ćƒ¤ćƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(51490, 'https://ror.org/051s9pp55', 'no_lang_code', 1, 'https://ror.org/051s9pp55 Hirose Electric (Japan) ćƒ’ćƒ­ć‚»é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(51491, 'https://ror.org/01jxvhp27', 'no_lang_code', 1, 'https://ror.org/01jxvhp27 Hisamitsu Pharmaceutical (Japan) ä¹…å…‰č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(51492, 'https://ror.org/05dvmag14', 'no_lang_code', 1, 'https://ror.org/05dvmag14 JST Mfg(Japan)'),
(51493, 'https://ror.org/03jvjps27', 'no_lang_code', 1, 'https://ror.org/03jvjps27 Keihin (Japan) ę Ŗå¼ä¼šē¤¾ć‚±ćƒ¼ćƒ’ćƒ³'),
(51494, 'https://ror.org/052d5f872', 'no_lang_code', 1, 'https://ror.org/052d5f872 Indena (Italy)'),
(51495, 'https://ror.org/03pwpr214', 'no_lang_code', 1, 'https://ror.org/03pwpr214 Hitachi (United States)'),
(51496, 'https://ror.org/00146wx41', 'no_lang_code', 1, 'https://ror.org/00146wx41 Japan Steel Works (Japan) ę Ŗå¼ä¼šē¤¾ę—„ęœ¬č£½é‹¼ę‰€'),
(51497, 'https://ror.org/03jb89v85', 'no_lang_code', 1, 'https://ror.org/03jb89v85 W. L. Gore & Associates (Germany)'),
(51498, 'https://ror.org/05rtjs149', 'no_lang_code', 1, 'https://ror.org/05rtjs149 Goss (United States)'),
(51499, 'https://ror.org/04e4db319', 'no_lang_code', 1, 'https://ror.org/04e4db319 Infineon Technologies (United States)'),
(51500, 'https://ror.org/046xmah45', 'no_lang_code', 1, 'https://ror.org/046xmah45 Plastic Omnium (Belgium)'),
(51501, 'https://ror.org/049rcsq44', 'no_lang_code', 1, 'https://ror.org/049rcsq44 JNC (Japan)'),
(51502, 'https://ror.org/05gyvs118', 'no_lang_code', 1, 'https://ror.org/05gyvs118 Newell Brands (United States)'),
(51503, 'https://ror.org/016mvkv35', 'no_lang_code', 1, 'https://ror.org/016mvkv35 Kiekert (Germany)'),
(51504, 'https://ror.org/05cwwq597', 'no_lang_code', 1, 'https://ror.org/05cwwq597 Johnson Electric (Switzerland)'),
(51505, 'https://ror.org/04yq9bg08', 'no_lang_code', 1, 'https://ror.org/04yq9bg08 Muller Martini (Switzerland)'),
(51506, 'https://ror.org/006cf4249', 'no_lang_code', 1, 'https://ror.org/006cf4249 Grieshaber (Germany)'),
(51507, 'https://ror.org/024mpmb63', 'no_lang_code', 1, 'https://ror.org/024mpmb63 Joled (Japan)'),
(51508, 'https://ror.org/04sab3g34', 'no_lang_code', 1, 'https://ror.org/04sab3g34 Bucher Industries (France)'),
(51509, 'https://ror.org/04a307s36', 'no_lang_code', 1, 'https://ror.org/04a307s36 Kobelco Construction Machinery (Japan)'),
(51510, 'https://ror.org/02dxby369', 'no_lang_code', 1, 'https://ror.org/02dxby369 JUKIę Ŗå¼ä¼šē¤¾ Juki (Japan)'),
(51511, 'https://ror.org/05k8zfb28', 'no_lang_code', 1, 'https://ror.org/05k8zfb28 Kurita Water Industries (Japan) ę —ē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(51512, 'https://ror.org/01mrh1227', 'no_lang_code', 1, 'https://ror.org/01mrh1227 Koenig & Bauer (Germany)'),
(51513, 'https://ror.org/01jk08v54', 'no_lang_code', 1, 'https://ror.org/01jk08v54 Grohe (Germany)'),
(51514, 'https://ror.org/03znz6n75', 'no_lang_code', 1, 'https://ror.org/03znz6n75 Jungheinrich (Germany)'),
(51515, 'https://ror.org/02a8gj019', 'no_lang_code', 1, 'https://ror.org/02a8gj019 KƤrcher (Germany)'),
(51516, 'https://ror.org/01kenqt68', 'no_lang_code', 1, 'https://ror.org/01kenqt68 Kyorin Holdings (Japan)'),
(51517, 'https://ror.org/00btywz65', 'no_lang_code', 1, 'https://ror.org/00btywz65 Kolon Industries (South Korea)'),
(51518, 'https://ror.org/052gr6m21', 'no_lang_code', 1, 'https://ror.org/052gr6m21 Konami (Japan) ć‚³ćƒŠćƒŸćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(51519, 'https://ror.org/00daeq875', 'no_lang_code', 1, 'https://ror.org/00daeq875 LTS Lohmann Therapie-Systeme (Germany)'),
(51520, 'https://ror.org/00w69q520', 'no_lang_code', 1, 'https://ror.org/00w69q520 KaVo Dental (Germany)'),
(51521, 'https://ror.org/04724jg08', 'no_lang_code', 1, 'https://ror.org/04724jg08 Leggett and Platt (United States)'),
(51522, 'https://ror.org/022m5tt98', 'no_lang_code', 1, 'https://ror.org/022m5tt98 Kudelski (Switzerland)'),
(51523, 'https://ror.org/01nehjf29', 'no_lang_code', 1, 'https://ror.org/01nehjf29 Microsoft (Finland)'),
(51524, 'https://ror.org/02hze6e47', 'no_lang_code', 1, 'https://ror.org/02hze6e47 Laitram (United States)'),
(51525, 'https://ror.org/03h7zc707', 'no_lang_code', 1, 'https://ror.org/03h7zc707 National Oilwell Varco (United States)'),
(51526, 'https://ror.org/00n7ybs24', 'no_lang_code', 1, 'https://ror.org/00n7ybs24 LVMH (France)'),
(51527, 'https://ror.org/002h3mc90', 'no_lang_code', 1, 'https://ror.org/002h3mc90 Ingredion (United States)'),
(51528, 'https://ror.org/03yg75p21', 'no_lang_code', 1, 'https://ror.org/03yg75p21 Lely (Netherlands)'),
(51529, 'https://ror.org/051bx8r16', 'en', 1, 'https://ror.org/051bx8r16 National Research Development Corporation'),
(51530, 'https://ror.org/03nj49q02', 'no_lang_code', 1, 'https://ror.org/03nj49q02 Techtronic Industries (United States)'),
(51531, 'https://ror.org/00mjrb616', 'no_lang_code', 1, 'https://ror.org/00mjrb616 Kostal (Germany)'),
(51532, 'https://ror.org/035d9vx83', 'no_lang_code', 1, 'https://ror.org/035d9vx83 MagnaChip (South Korea)'),
(51533, 'https://ror.org/05bntm267', 'no_lang_code', 1, 'https://ror.org/05bntm267 Lear (United States)'),
(51534, 'https://ror.org/05ab5m237', 'no_lang_code', 1, 'https://ror.org/05ab5m237 Mannesmann (Germany)'),
(51535, 'https://ror.org/03cd01b85', 'no_lang_code', 1, 'https://ror.org/03cd01b85 Navistar International (United States)'),
(51536, 'https://ror.org/01y7ny159', 'no_lang_code', 1, 'https://ror.org/01y7ny159 Mitel (Canada)'),
(51537, 'https://ror.org/00t1wrw35', 'no_lang_code', 1, 'https://ror.org/00t1wrw35 Danaher (Germany)'),
(51538, 'https://ror.org/00nqjkj48', 'no_lang_code', 1, 'https://ror.org/00nqjkj48 NCR (United States)'),
(51539, 'https://ror.org/03qngpc73', 'no_lang_code', 1, 'https://ror.org/03qngpc73 Mitsuba (Japan) ę Ŗå¼ä¼šē¤¾ćƒŸćƒ„ćƒ'),
(51540, 'https://ror.org/015gtxf45', 'no_lang_code', 1, 'https://ror.org/015gtxf45 Leifheit (Germany)'),
(51541, 'https://ror.org/025zfqq91', 'no_lang_code', 1, 'https://ror.org/025zfqq91 Baader Food Processing Machinery (Germany)'),
(51542, 'https://ror.org/0597vhv77', 'no_lang_code', 1, 'https://ror.org/0597vhv77 Noritsu (Japan) ćƒŽćƒ¼ćƒŖćƒ„é‹¼ę©Ÿę Ŗå¼ä¼šē¤¾'),
(51543, 'https://ror.org/0539z1e56', 'no_lang_code', 1, 'https://ror.org/0539z1e56 Neoperl (Germany)'),
(51544, 'https://ror.org/00c4zcv51', 'no_lang_code', 1, 'https://ror.org/00c4zcv51 WiLAN (United States)'),
(51545, 'https://ror.org/029c9pv49', 'no_lang_code', 1, 'https://ror.org/029c9pv49 Mitsubishi Pencil (Japan) äø‰č±é‰›ē­†ę Ŗå¼ä¼šē¤¾'),
(51546, 'https://ror.org/02r3ht216', 'no_lang_code', 1, 'https://ror.org/02r3ht216 Quadient (France)'),
(51547, 'https://ror.org/0510bgz94', 'no_lang_code', 1, 'https://ror.org/0510bgz94 Mitsubishi Plastics (Japan) äø‰č±ęØ¹č„‚ę Ŗå¼ä¼šē¤¾'),
(51548, 'https://ror.org/01rk2ws36', 'no_lang_code', 1, 'https://ror.org/01rk2ws36 Maschinenfabrik Reinhausen (Germany)'),
(51549, 'https://ror.org/00xn3j339', 'no_lang_code', 1, 'https://ror.org/00xn3j339 Masco (United States)'),
(51550, 'https://ror.org/04r4d0m68', 'no_lang_code', 1, 'https://ror.org/04r4d0m68 MAX Automation (Germany)'),
(51551, 'https://ror.org/03hnyzp26', 'no_lang_code', 1, 'https://ror.org/03hnyzp26 Fortune Brands Home and Security (United States)'),
(51552, 'https://ror.org/05vdj2825', 'no_lang_code', 1, 'https://ror.org/05vdj2825 Nihon Kohden (Japan) ę—„ęœ¬å…‰é›»å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(51553, 'https://ror.org/057vhsp23', 'no_lang_code', 1, 'https://ror.org/057vhsp23 Nuctech (China) 威视肔份'),
(51554, 'https://ror.org/03037gf85', 'no_lang_code', 1, 'https://ror.org/03037gf85 Licentia IT (Germany)'),
(51555, 'https://ror.org/045rsk983', 'no_lang_code', 1, 'https://ror.org/045rsk983 Karl Mayer (Germany)'),
(51556, 'https://ror.org/02ty1mz57', 'no_lang_code', 1, 'https://ror.org/02ty1mz57 Nippon Electric Glass (Japan) ę—„ęœ¬é›»ę°—ē”å­ę Ŗå¼ä¼šē¤¾'),
(51557, 'https://ror.org/04fbzr589', 'no_lang_code', 1, 'https://ror.org/04fbzr589 Canon (Germany)'),
(51558, 'https://ror.org/01pvzsz53', 'no_lang_code', 1, 'https://ror.org/01pvzsz53 Mƶlnlycke Health Care (Sweden)'),
(51559, 'https://ror.org/031y85330', 'no_lang_code', 1, 'https://ror.org/031y85330 MediaTek (Singapore)'),
(51560, 'https://ror.org/01bwxpz44', 'no_lang_code', 1, 'https://ror.org/01bwxpz44 Milacron (Canada)'),
(51561, 'https://ror.org/02vwk0k38', 'no_lang_code', 1, 'https://ror.org/02vwk0k38 Molins (United Kingdom)'),
(51562, 'https://ror.org/047dt4g31', 'no_lang_code', 1, 'https://ror.org/047dt4g31 Meidensha (Japan) ę˜Žé›»čˆŽę Ŗå¼ä¼šē¤¾'),
(51563, 'https://ror.org/045jy5f81', 'no_lang_code', 1, 'https://ror.org/045jy5f81 Littelfuse (United States)'),
(51564, 'https://ror.org/00zz3cs83', 'no_lang_code', 1, 'https://ror.org/00zz3cs83 Momentive (United States)'),
(51565, 'https://ror.org/01estnb82', 'no_lang_code', 1, 'https://ror.org/01estnb82 Nippon Soda (Japan) ę—„ęœ¬ę›¹é”ę Ŗå¼ä¼šē¤¾'),
(51566, 'https://ror.org/032a2g603', 'no_lang_code', 1, 'https://ror.org/032a2g603 Menicon (Japan)'),
(51567, 'https://ror.org/05pkpss54', 'no_lang_code', 1, 'https://ror.org/05pkpss54 Logitech (Switzerland)'),
(51568, 'https://ror.org/035017f20', 'no_lang_code', 1, 'https://ror.org/035017f20 Omya (Switzerland)'),
(51569, 'https://ror.org/02d5jz365', 'no_lang_code', 1, 'https://ror.org/02d5jz365 Open Invention Network (United States)'),
(51570, 'https://ror.org/01jrkry66', 'no_lang_code', 1, 'https://ror.org/01jrkry66 OpenText (Luxembourg)'),
(51571, 'https://ror.org/04dyest60', 'no_lang_code', 1, 'https://ror.org/04dyest60 Moulinex (France)'),
(51572, 'https://ror.org/01ppn7a90', 'no_lang_code', 1, 'https://ror.org/01ppn7a90 Nisshinbo Holdings (Japan) ę—„ęø…ē“”ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(51573, 'https://ror.org/03s6cj295', 'no_lang_code', 1, 'https://ror.org/03s6cj295 Osaka Gas (Japan) å¤§é˜Ŗē“¦ę–Æę Ŗå¼ä¼šē¤¾'),
(51574, 'https://ror.org/03tp9c748', 'no_lang_code', 1, 'https://ror.org/03tp9c748 Belden (United States)'),
(51575, 'https://ror.org/010t6g940', 'no_lang_code', 1, 'https://ror.org/010t6g940 Rosenberger (Germany)'),
(51576, 'https://ror.org/01r2x3m69', 'no_lang_code', 1, 'https://ror.org/01r2x3m69 Paul Wurth (Luxembourg)'),
(51577, 'https://ror.org/02j73r478', 'no_lang_code', 1, 'https://ror.org/02j73r478 Roto Frank (Germany)'),
(51578, 'https://ror.org/03ybnsp25', 'no_lang_code', 1, 'https://ror.org/03ybnsp25 Valhi (United States)'),
(51579, 'https://ror.org/016jadm77', 'no_lang_code', 1, 'https://ror.org/016jadm77 PayPal (United States)'),
(51580, 'https://ror.org/02tmyej90', 'no_lang_code', 1, 'https://ror.org/02tmyej90 NLT Technologies (Japan)'),
(51581, 'https://ror.org/00wfjvd95', 'no_lang_code', 1, 'https://ror.org/00wfjvd95 Preh (Germany)'),
(51582, 'https://ror.org/02t5f1s27', 'no_lang_code', 1, 'https://ror.org/02t5f1s27 TiVo (United States)'),
(51583, 'https://ror.org/02vbg8350', 'no_lang_code', 1, 'https://ror.org/02vbg8350 Primetals Technologies (Austria)'),
(51584, 'https://ror.org/01jaz1w65', 'no_lang_code', 1, 'https://ror.org/01jaz1w65 Fabio Perini (Italy)'),
(51585, 'https://ror.org/05r7xc820', 'no_lang_code', 1, 'https://ror.org/05r7xc820 Owens-Illinois (United States)'),
(51586, 'https://ror.org/02wmkbh90', 'no_lang_code', 1, 'https://ror.org/02wmkbh90 Rütgers (Germany)'),
(51587, 'https://ror.org/04d8ddk13', 'no_lang_code', 1, 'https://ror.org/04d8ddk13 ProMOS Technologies (Taiwan)'),
(51588, 'https://ror.org/01h84at96', 'no_lang_code', 1, 'https://ror.org/01h84at96 Perstorp (Sweden)'),
(51589, 'https://ror.org/02n211843', 'no_lang_code', 1, 'https://ror.org/02n211843 Owens Corning (United States)'),
(51590, 'https://ror.org/03jbz0t39', 'fr', 1, 'https://ror.org/03jbz0t39 Groupe SEB'),
(51591, 'https://ror.org/047qggy27', 'no_lang_code', 1, 'https://ror.org/047qggy27 Sacmi (Italy)'),
(51592, 'https://ror.org/03z9zz970', 'no_lang_code', 1, 'https://ror.org/03z9zz970 Philip Morris International (Switzerland)'),
(51593, 'https://ror.org/017qqw141', 'no_lang_code', 1, 'https://ror.org/017qqw141 Singer (United States)'),
(51594, 'https://ror.org/02ehvej48', 'no_lang_code', 1, 'https://ror.org/02ehvej48 Rational (Germany)'),
(51595, 'https://ror.org/02ykjqt50', 'no_lang_code', 1, 'https://ror.org/02ykjqt50 Philips (Sweden)'),
(51596, 'https://ror.org/02gwwga82', 'no_lang_code', 1, 'https://ror.org/02gwwga82 Sennheiser (Germany)'),
(51597, 'https://ror.org/03at4pf87', 'no_lang_code', 1, 'https://ror.org/03at4pf87 Sivantos (Singapore)'),
(51598, 'https://ror.org/030893n97', 'no_lang_code', 1, 'https://ror.org/030893n97 Reckitt Benckiser (United States)'),
(51599, 'https://ror.org/00647p549', 'no_lang_code', 1, 'https://ror.org/00647p549 Reckitt Benckiser (Netherlands)'),
(51600, 'https://ror.org/007vmjm88', 'no_lang_code', 1, 'https://ror.org/007vmjm88 Seoul Semiconductor (South Korea)'),
(51601, 'https://ror.org/00f5kpb16', 'no_lang_code', 1, 'https://ror.org/00f5kpb16 Oostrotex (Belgium)'),
(51602, 'https://ror.org/03g3xrr94', 'no_lang_code', 1, 'https://ror.org/03g3xrr94 SEW Eurodrive (Germany)'),
(51603, 'https://ror.org/00qmxzb41', 'no_lang_code', 1, 'https://ror.org/00qmxzb41 Rehau (Germany)'),
(51604, 'https://ror.org/01t8ny673', 'no_lang_code', 1, 'https://ror.org/01t8ny673 Rehrig Pacific (United States)'),
(51605, 'https://ror.org/014m8ss57', 'no_lang_code', 1, 'https://ror.org/014m8ss57 Skis Rossignol (France)'),
(51606, 'https://ror.org/048htbx03', 'no_lang_code', 1, 'https://ror.org/048htbx03 Sandvik (Finland)'),
(51607, 'https://ror.org/03cac6636', 'no_lang_code', 1, 'https://ror.org/03cac6636 Research Corporation Technologies (United States)'),
(51608, 'https://ror.org/04bn2q369', 'no_lang_code', 1, 'https://ror.org/04bn2q369 Smiths Group (United States)'),
(51609, 'https://ror.org/01v37t224', 'no_lang_code', 1, 'https://ror.org/01v37t224 Sherwin Williams (United States)'),
(51610, 'https://ror.org/03ejprz16', 'no_lang_code', 1, 'https://ror.org/03ejprz16 Sherwood Services (United States)'),
(51611, 'https://ror.org/032hncp64', 'no_lang_code', 1, 'https://ror.org/032hncp64 Plasser and Theurer (Austria)'),
(51612, 'https://ror.org/01p21bq81', 'no_lang_code', 1, 'https://ror.org/01p21bq81 Shima Seiki (Japan) å³¶ē²¾ę©Ÿč£½ä½œę‰€');
INSERT INTO `rors` VALUES
(51613, 'https://ror.org/03n2fp057', 'no_lang_code', 1, 'https://ror.org/03n2fp057 Jacobs Douwe Egberts (Netherlands)'),
(51614, 'https://ror.org/02tagtf93', 'no_lang_code', 1, 'https://ror.org/02tagtf93 Plastipak Holdings (United States)'),
(51615, 'https://ror.org/04ma89d43', 'no_lang_code', 1, 'https://ror.org/04ma89d43 Socionext (Japan) ę Ŗå¼ä¼šē¤¾ć‚½ć‚·ć‚Ŗćƒć‚Æć‚¹ćƒˆ'),
(51616, 'https://ror.org/041dwme31', 'no_lang_code', 1, 'https://ror.org/041dwme31 Shop Vac (United States)'),
(51617, 'https://ror.org/02h39wj34', 'no_lang_code', 1, 'https://ror.org/02h39wj34 Showa Corporation ę Ŗå¼ä¼šē¤¾ć‚·ćƒ§ćƒ¼ćƒÆ'),
(51618, 'https://ror.org/05jjyhn41', 'no_lang_code', 1, 'https://ror.org/05jjyhn41 Sicpa (Switzerland)'),
(51619, 'https://ror.org/050txbd07', 'no_lang_code', 1, 'https://ror.org/050txbd07 Rite-Hite (United States)'),
(51620, 'https://ror.org/02yb4t415', 'no_lang_code', 1, 'https://ror.org/02yb4t415 Sidel (France)'),
(51621, 'https://ror.org/01nndby33', 'no_lang_code', 1, 'https://ror.org/01nndby33 Rittal (Germany)'),
(51622, 'https://ror.org/03s68nt92', 'no_lang_code', 1, 'https://ror.org/03s68nt92 Somfy (France)'),
(51623, 'https://ror.org/04jnrz567', 'no_lang_code', 1, 'https://ror.org/04jnrz567 Siegenia (Germany)'),
(51624, 'https://ror.org/02zhsgx35', 'no_lang_code', 1, 'https://ror.org/02zhsgx35 Sonoco (United States)'),
(51625, 'https://ror.org/00btvqy64', 'no_lang_code', 1, 'https://ror.org/00btvqy64 Pohang Iron and Steel (South Korea) ķ¬ķ•­ģ¢…ķ•©ģ œģ²  ģ£¼ģ‹ķšŒģ‚¬'),
(51626, 'https://ror.org/04h2hh388', 'no_lang_code', 1, 'https://ror.org/04h2hh388 Rockwool (Denmark)'),
(51627, 'https://ror.org/05xbyr893', 'no_lang_code', 1, 'https://ror.org/05xbyr893 Southco (United States)'),
(51628, 'https://ror.org/01t1aqm70', 'no_lang_code', 1, 'https://ror.org/01t1aqm70 Spectrum Brands (United States)'),
(51629, 'https://ror.org/051vpna32', 'no_lang_code', 1, 'https://ror.org/051vpna32 Siemens (Singapore)'),
(51630, 'https://ror.org/01tshah34', 'no_lang_code', 1, 'https://ror.org/01tshah34 Roehm (Germany)'),
(51631, 'https://ror.org/056egm241', 'no_lang_code', 1, 'https://ror.org/056egm241 Siemens (Switzerland)'),
(51632, 'https://ror.org/04qh5fy32', 'no_lang_code', 1, 'https://ror.org/04qh5fy32 Abbott (Sweden)'),
(51633, 'https://ror.org/02g1cct97', 'no_lang_code', 1, 'https://ror.org/02g1cct97 Sunonwealth Electric Machine Industry (Taiwan)'),
(51634, 'https://ror.org/01523aj77', 'no_lang_code', 1, 'https://ror.org/01523aj77 Sig Holding (Switzerland) Societa Industriale Svizzera SociƩtƩ Industrielle Suisse'),
(51635, 'https://ror.org/003d0m863', 'no_lang_code', 1, 'https://ror.org/003d0m863 Stabilus (Germany)'),
(51636, 'https://ror.org/02b00gr50', 'no_lang_code', 1, 'https://ror.org/02b00gr50 Teradyne (United States)'),
(51637, 'https://ror.org/01ajr8702', 'no_lang_code', 1, 'https://ror.org/01ajr8702 Total (United States)'),
(51638, 'https://ror.org/04cv1dy58', 'no_lang_code', 1, 'https://ror.org/04cv1dy58 Maire Tecnimont (Netherlands)'),
(51639, 'https://ror.org/00n22rm50', 'no_lang_code', 1, 'https://ror.org/00n22rm50 United States Gypsum (United States)'),
(51640, 'https://ror.org/03pfkgd48', 'no_lang_code', 1, 'https://ror.org/03pfkgd48 Toyo Seikan (Japan) ę±ę“‹č£½ē½ć‚°ćƒ«ćƒ¼ćƒ—ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(51641, 'https://ror.org/031tq8403', 'no_lang_code', 1, 'https://ror.org/031tq8403 Synaptics (United States)'),
(51642, 'https://ror.org/02sq1ad32', 'no_lang_code', 1, 'https://ror.org/02sq1ad32 Unitika (Japan) ćƒ¦ćƒ‹ćƒć‚«ę Ŗå¼ä¼šē¤¾'),
(51643, 'https://ror.org/02e0wrh48', 'no_lang_code', 1, 'https://ror.org/02e0wrh48 Universal Electronics (United States)'),
(51644, 'https://ror.org/02yhzgr66', 'no_lang_code', 1, 'https://ror.org/02yhzgr66 Starkey Hearing Technologies (United States)'),
(51645, 'https://ror.org/03cvjvq49', 'no_lang_code', 1, 'https://ror.org/03cvjvq49 Texas Instruments (Germany)'),
(51646, 'https://ror.org/01w2zpd04', 'no_lang_code', 1, 'https://ror.org/01w2zpd04 T-Mobile (United States)'),
(51647, 'https://ror.org/02765fh44', 'no_lang_code', 1, 'https://ror.org/02765fh44 Uponor (Sweden)'),
(51648, 'https://ror.org/03epmm839', 'no_lang_code', 1, 'https://ror.org/03epmm839 Tachi S (Japan)'),
(51649, 'https://ror.org/02ex0xe53', 'no_lang_code', 1, 'https://ror.org/02ex0xe53 THK (Japan) ćƒ†ć‚£ć‚Øćƒć‚±ćƒ¼'),
(51650, 'https://ror.org/02rvfjx92', 'no_lang_code', 1, 'https://ror.org/02rvfjx92 Taiwan Semiconductor Manufacturing Company (United States)'),
(51651, 'https://ror.org/03hta7474', 'no_lang_code', 1, 'https://ror.org/03hta7474 Tracto-Technik (Germany)'),
(51652, 'https://ror.org/043a53k35', 'no_lang_code', 1, 'https://ror.org/043a53k35 Trend Micro (Japan) ćƒˆćƒ¬ćƒ³ćƒ‰ćƒžć‚¤ć‚Æćƒ­ę Ŗå¼ä¼šē¤¾'),
(51653, 'https://ror.org/02xe1qe66', 'no_lang_code', 1, 'https://ror.org/02xe1qe66 Usui (Japan)'),
(51654, 'https://ror.org/03bmavr12', 'no_lang_code', 1, 'https://ror.org/03bmavr12 Stiebel Eltron (Germany)'),
(51655, 'https://ror.org/03zp5py62', 'no_lang_code', 1, 'https://ror.org/03zp5py62 Kion Group (Germany)'),
(51656, 'https://ror.org/05ha8e826', 'no_lang_code', 1, 'https://ror.org/05ha8e826 Technicolor (United States)'),
(51657, 'https://ror.org/03aewna27', 'no_lang_code', 1, 'https://ror.org/03aewna27 Tanaka Holdings (Japan) ē”°äø­č²“é‡‘å±žć‚°ćƒ«ćƒ¼ćƒ—'),
(51658, 'https://ror.org/03m52qe71', 'no_lang_code', 1, 'https://ror.org/03m52qe71 Truetzschler (Germany) Trützschler'),
(51659, 'https://ror.org/0372e3p95', 'no_lang_code', 1, 'https://ror.org/0372e3p95 Tanita (Japan) ę Ŗå¼ä¼šē¤¾ć‚æćƒ‹ć‚æ'),
(51660, 'https://ror.org/04jpbn971', 'no_lang_code', 1, 'https://ror.org/04jpbn971 Strix (Isle of Man)'),
(51661, 'https://ror.org/04zkdev66', 'no_lang_code', 1, 'https://ror.org/04zkdev66 TS Tech (Japan)'),
(51662, 'https://ror.org/03e7jm741', 'no_lang_code', 1, 'https://ror.org/03e7jm741 Valmet Automotive (Finland)'),
(51663, 'https://ror.org/03k3w8z68', 'no_lang_code', 1, 'https://ror.org/03k3w8z68 Sumitomo Osaka Cement (Japan) ä½å‹å¤§é˜Ŗć‚»ćƒ”ćƒ³ćƒˆ'),
(51664, 'https://ror.org/00eftnw67', 'no_lang_code', 1, 'https://ror.org/00eftnw67 Timex (United States)'),
(51665, 'https://ror.org/03yjna842', 'no_lang_code', 1, 'https://ror.org/03yjna842 Tecumseh Products (United States)'),
(51666, 'https://ror.org/00jjd3f53', 'no_lang_code', 1, 'https://ror.org/00jjd3f53 Comtech Telecommunications (United States)'),
(51667, 'https://ror.org/03s182269', 'no_lang_code', 1, 'https://ror.org/03s182269 Valspar (United States)'),
(51668, 'https://ror.org/0288f6787', 'no_lang_code', 1, 'https://ror.org/0288f6787 Toda Kogyo (Japan) ęˆøē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(51669, 'https://ror.org/00d8znk88', 'no_lang_code', 1, 'https://ror.org/00d8znk88 Sun Chemical (United States)'),
(51670, 'https://ror.org/05v88aw62', 'no_lang_code', 1, 'https://ror.org/05v88aw62 TE Connectivity (Belgium)'),
(51671, 'https://ror.org/04zj4k586', 'no_lang_code', 1, 'https://ror.org/04zj4k586 Tokuyama (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆć‚Æćƒ¤ćƒž'),
(51672, 'https://ror.org/04ba8k254', 'no_lang_code', 1, 'https://ror.org/04ba8k254 Viessmann (Germany)'),
(51673, 'https://ror.org/052v10q58', 'no_lang_code', 1, 'https://ror.org/052v10q58 VDO (Germany)'),
(51674, 'https://ror.org/02h04v153', 'no_lang_code', 1, 'https://ror.org/02h04v153 VKR Holding (Denmark)'),
(51675, 'https://ror.org/05xprgr51', 'no_lang_code', 1, 'https://ror.org/05xprgr51 Veritas (United States)'),
(51676, 'https://ror.org/02p5kxa09', 'no_lang_code', 1, 'https://ror.org/02p5kxa09 Tomy (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚«ćƒ©ćƒˆćƒŸćƒ¼'),
(51677, 'https://ror.org/05j70af50', 'no_lang_code', 1, 'https://ror.org/05j70af50 Toro (United States)'),
(51678, 'https://ror.org/04p6z8d41', 'no_lang_code', 1, 'https://ror.org/04p6z8d41 Victaulic (United States)'),
(51679, 'https://ror.org/055b77k30', 'no_lang_code', 1, 'https://ror.org/055b77k30 Wabtec (United States)'),
(51680, 'https://ror.org/04407hd58', 'no_lang_code', 1, 'https://ror.org/04407hd58 Wabco (Germany)'),
(51681, 'https://ror.org/010fjvp93', 'no_lang_code', 1, 'https://ror.org/010fjvp93 Tenneco (United States)'),
(51682, 'https://ror.org/001tx6p24', 'no_lang_code', 1, 'https://ror.org/001tx6p24 Wacom (Japan) ę Ŗå¼ä¼šē¤¾ćƒÆć‚³ćƒ '),
(51683, 'https://ror.org/04vkkat38', 'no_lang_code', 1, 'https://ror.org/04vkkat38 Teradata (United States)'),
(51684, 'https://ror.org/01nc0cp29', 'no_lang_code', 1, 'https://ror.org/01nc0cp29 United Parcel Service (United States)'),
(51685, 'https://ror.org/01xe96535', 'no_lang_code', 1, 'https://ror.org/01xe96535 Wonderland Nurserygoods (Taiwan)'),
(51686, 'https://ror.org/05mrw0a87', 'no_lang_code', 1, 'https://ror.org/05mrw0a87 Whirlpool (Brazil)'),
(51687, 'https://ror.org/01yhac426', 'no_lang_code', 1, 'https://ror.org/01yhac426 Memjet (Ireland)'),
(51688, 'https://ror.org/04mrbz859', 'no_lang_code', 1, 'https://ror.org/04mrbz859 Walker Digital (United States)'),
(51689, 'https://ror.org/051pbge72', 'no_lang_code', 1, 'https://ror.org/051pbge72 WiLAN (Canada)'),
(51690, 'https://ror.org/038xm7148', 'no_lang_code', 1, 'https://ror.org/038xm7148 Microsemi (Canada)'),
(51691, 'https://ror.org/02864sx65', 'no_lang_code', 1, 'https://ror.org/02864sx65 Wanzl (Germany)'),
(51692, 'https://ror.org/013y0vx58', 'no_lang_code', 1, 'https://ror.org/013y0vx58 Widex (Denmark)'),
(51693, 'https://ror.org/00v5bx942', 'en', 1, 'https://ror.org/00v5bx942 Nahda College ŁƒŁ„ŁŠŲ© النهضة'),
(51694, 'https://ror.org/029f7bn57', 'no_lang_code', 1, 'https://ror.org/029f7bn57 Xiaomi (China)'),
(51695, 'https://ror.org/03ca9sh23', 'no_lang_code', 1, 'https://ror.org/03ca9sh23 Windmoeller & Hoelscher (Germany)'),
(51696, 'https://ror.org/01na6q190', 'no_lang_code', 1, 'https://ror.org/01na6q190 Wavin (Netherlands)'),
(51697, 'https://ror.org/05cfb4981', 'no_lang_code', 1, 'https://ror.org/05cfb4981 Winkhaus (Germany)'),
(51698, 'https://ror.org/03r1cgk81', 'no_lang_code', 1, 'https://ror.org/03r1cgk81 Webasto (Germany)'),
(51699, 'https://ror.org/03wmnrc91', 'no_lang_code', 1, 'https://ror.org/03wmnrc91 Yakult Honsha (Japan) ćƒ¤ć‚Æćƒ«ćƒˆ'),
(51700, 'https://ror.org/05nepfp92', 'no_lang_code', 1, 'https://ror.org/05nepfp92 Wintek (Taiwan)'),
(51701, 'https://ror.org/02stt7r85', 'no_lang_code', 1, 'https://ror.org/02stt7r85 Weidmüller (Germany)'),
(51702, 'https://ror.org/059mm1v54', 'no_lang_code', 1, 'https://ror.org/059mm1v54 Wirtgen (Germany)'),
(51703, 'https://ror.org/00xysp757', 'no_lang_code', 1, 'https://ror.org/00xysp757 Yanmar (Japan) ćƒ¤ćƒ³ćƒžćƒ¼ę Ŗå¼ä¼šē¤¾'),
(51704, 'https://ror.org/03khjkh72', 'no_lang_code', 1, 'https://ror.org/03khjkh72 Wolverine Worldwide (United States)'),
(51705, 'https://ror.org/04dr1y470', 'no_lang_code', 1, 'https://ror.org/04dr1y470 Welch Allyn (United States)'),
(51706, 'https://ror.org/00jkvq232', 'en', 1, 'https://ror.org/00jkvq232 Jon Bon Jovi Soul Foundation'),
(51707, 'https://ror.org/02h7t2a16', 'en', 1, 'https://ror.org/02h7t2a16 Irene W. and C.B. Pennington Foundation'),
(51708, 'https://ror.org/00m06j627', 'en', 1, 'https://ror.org/00m06j627 Inlaks Shivdasani Foundation'),
(51709, 'https://ror.org/00g2cf802', 'no_lang_code', 1, 'https://ror.org/00g2cf802 Melaka Manipal Medical College'),
(51710, 'https://ror.org/05g1jvk52', 'en', 1, 'https://ror.org/05g1jvk52 Irish Heart Foundation'),
(51711, 'https://ror.org/04d00t593', 'en', 1, 'https://ror.org/04d00t593 Irish Hospice Foundation'),
(51712, 'https://ror.org/02gcfcp23', 'en', 1, 'https://ror.org/02gcfcp23 Irish Youth Justice Service'),
(51713, 'https://ror.org/04cc1bd73', 'en', 1, 'https://ror.org/04cc1bd73 Jeffrey Modell Foundation'),
(51714, 'https://ror.org/02x1h6095', 'en', 1, 'https://ror.org/02x1h6095 Kinetic Foundation'),
(51715, 'https://ror.org/0029x1m59', 'no_lang_code', 1, 'https://ror.org/0029x1m59 Jegs (United States)'),
(51716, 'https://ror.org/05a0f0y47', 'en', 1, 'https://ror.org/05a0f0y47 Irvine Health Foundation'),
(51717, 'https://ror.org/051tmqm80', 'en', 1, 'https://ror.org/051tmqm80 JEHT Foundation'),
(51718, 'https://ror.org/01p7hf548', 'en', 1, 'https://ror.org/01p7hf548 Kato Foundation for Promotion of Science å…¬ē›Šč²”å›£ę³•äŗŗ åŠ č—¤ē§‘å­¦ęŒÆčˆˆä¼š'),
(51719, 'https://ror.org/04tnf8c76', 'en', 1, 'https://ror.org/04tnf8c76 ISEF Foundation'),
(51720, 'https://ror.org/03174hp70', 'en', 1, 'https://ror.org/03174hp70 Jerome Foundation'),
(51721, 'https://ror.org/01swtxv06', 'en', 1, 'https://ror.org/01swtxv06 Jerusalem Fund'),
(51722, 'https://ror.org/059sg9z95', 'no_lang_code', 1, 'https://ror.org/059sg9z95 Kaytee Avian Foundation'),
(51723, 'https://ror.org/021pjrd95', 'no_lang_code', 1, 'https://ror.org/021pjrd95 AMEN'),
(51724, 'https://ror.org/00w3qd893', 'en', 1, 'https://ror.org/00w3qd893 Jessie Ball duPont Fund'),
(51725, 'https://ror.org/02xw5vd84', 'en', 1, 'https://ror.org/02xw5vd84 Keep A Breast Foundation'),
(51726, 'https://ror.org/04x21zc26', 'en', 1, 'https://ror.org/04x21zc26 Kelley Foundation'),
(51727, 'https://ror.org/020xw1f06', 'en', 1, 'https://ror.org/020xw1f06 Italian Scientists and Scholars in North America Foundation'),
(51728, 'https://ror.org/041qfnf56', 'en', 1, 'https://ror.org/041qfnf56 Jacob Randall Foundation for Morquio'),
(51729, 'https://ror.org/02tfves91', 'en', 1, 'https://ror.org/02tfves91 ITP Foundation'),
(51730, 'https://ror.org/025frct77', 'en', 1, 'https://ror.org/025frct77 Jewish Community Foundation of Greater Kansas City'),
(51731, 'https://ror.org/02zzsnz14', 'en', 1, 'https://ror.org/02zzsnz14 Kellner Family Foundation'),
(51732, 'https://ror.org/046keqp87', 'en', 1, 'https://ror.org/046keqp87 Jacques and Gloria Gossweiler Foundation Jacques und Gloria Gossweiler - Stiftung'),
(51733, 'https://ror.org/03xpmjk25', 'en', 1, 'https://ror.org/03xpmjk25 Ittleson Foundation'),
(51734, 'https://ror.org/02jht8768', 'en', 1, 'https://ror.org/02jht8768 Hyams Foundation'),
(51735, 'https://ror.org/05cszw148', 'en', 1, 'https://ror.org/05cszw148 Kempe Foundation Kempestiftelserna'),
(51736, 'https://ror.org/01h44fm97', 'en', 1, 'https://ror.org/01h44fm97 Jewish United Fund of Metropolitan Chicago'),
(51737, 'https://ror.org/02b773808', 'en', 1, 'https://ror.org/02b773808 James H. Cummings Foundation'),
(51738, 'https://ror.org/05gv5sv44', 'en', 1, 'https://ror.org/05gv5sv44 International Association of Sedimentologists'),
(51739, 'https://ror.org/027j3y306', 'en', 1, 'https://ror.org/027j3y306 James H. Hall Eye Center'),
(51740, 'https://ror.org/005fa0265', 'en', 1, 'https://ror.org/005fa0265 James Jones Literary Society'),
(51741, 'https://ror.org/012v13k49', 'en', 1, 'https://ror.org/012v13k49 International Cancer Imaging Society'),
(51742, 'https://ror.org/05rvwze02', 'en', 1, 'https://ror.org/05rvwze02 Jewish Women’s Foundation of Metropolitan Detroit'),
(51743, 'https://ror.org/01kgb3c72', 'en', 1, 'https://ror.org/01kgb3c72 Kennedys Disease Association'),
(51744, 'https://ror.org/00hw04726', 'no_lang_code', 1, 'https://ror.org/00hw04726 International Council of Ophthalmology'),
(51745, 'https://ror.org/00n2q2t03', 'en', 1, 'https://ror.org/00n2q2t03 Jewish Women''s Foundation of New York'),
(51746, 'https://ror.org/039r7y922', 'en', 1, 'https://ror.org/039r7y922 International Dragonfly Fund'),
(51747, 'https://ror.org/021hndv62', 'en', 1, 'https://ror.org/021hndv62 JGW Patterson Foundation'),
(51748, 'https://ror.org/00s3cdx23', 'en', 1, 'https://ror.org/00s3cdx23 James Pantyfedwen Foundation'),
(51749, 'https://ror.org/046wx6811', 'en', 1, 'https://ror.org/046wx6811 International Education Research Foundation'),
(51750, 'https://ror.org/04ak1xq87', 'en', 1, 'https://ror.org/04ak1xq87 Kent Richard Hofmann Foundation'),
(51751, 'https://ror.org/005vegy94', 'en', 1, 'https://ror.org/005vegy94 International Essential Tremor Foundation'),
(51752, 'https://ror.org/033esc660', 'en', 1, 'https://ror.org/033esc660 International Foundation for Electoral Systems'),
(51753, 'https://ror.org/02by3t490', 'en', 1, 'https://ror.org/02by3t490 International Foundation for Ethical Research'),
(51754, 'https://ror.org/03j8jd231', 'en', 1, 'https://ror.org/03j8jd231 Japan Cassis Association ę—„ęœ¬ć‚«ć‚·ć‚¹å”ä¼š'),
(51755, 'https://ror.org/05haf2k11', 'en', 1, 'https://ror.org/05haf2k11 Veterans of Foreign Wars'),
(51756, 'https://ror.org/05fy0j332', 'en', 1, 'https://ror.org/05fy0j332 Japan Ecology Foundation čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒč²”å›£'),
(51757, 'https://ror.org/03dg7tc87', 'en', 1, 'https://ror.org/03dg7tc87 International Foundation for Functional Gastrointestinal Disorders'),
(51758, 'https://ror.org/01qgvfw88', 'en', 1, 'https://ror.org/01qgvfw88 Kettering Family Foundation'),
(51759, 'https://ror.org/00qcdw388', 'en', 1, 'https://ror.org/00qcdw388 International Foundation for Research in Experimental Economics'),
(51760, 'https://ror.org/05mnth393', 'en', 1, 'https://ror.org/05mnth393 Laidlaw Foundation'),
(51761, 'https://ror.org/04yc0k443', 'en', 1, 'https://ror.org/04yc0k443 Japan Foundation for Aging and Health é«˜é½¢åŒ–ćØå„åŗ·ć®ćŸć‚ć®å›½éš›äŗ¤ęµåŸŗé‡‘'),
(51762, 'https://ror.org/00tz3zt92', 'en', 1, 'https://ror.org/00tz3zt92 Jiren Charity Foundation'),
(51763, 'https://ror.org/039b19p38', 'en', 1, 'https://ror.org/039b19p38 International Franchise Association'),
(51764, 'https://ror.org/0293d8d10', 'en', 1, 'https://ror.org/0293d8d10 Japan Foundation for Applied Enzymology å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ęœ¬åæœē”Øé…µē“ å”ä¼š'),
(51765, 'https://ror.org/04ts2vz32', 'en', 1, 'https://ror.org/04ts2vz32 JM Foundation'),
(51766, 'https://ror.org/04pc51341', 'en', 1, 'https://ror.org/04pc51341 International Furnishings and Design Association'),
(51767, 'https://ror.org/024jbvq59', 'en', 1, 'https://ror.org/024jbvq59 Japan Foundation London'),
(51768, 'https://ror.org/03aqkyr95', 'en', 1, 'https://ror.org/03aqkyr95 Kidneeds'),
(51769, 'https://ror.org/01j8qgg43', 'de', 1, 'https://ror.org/01j8qgg43 Joachim Herz Stiftung'),
(51770, 'https://ror.org/04gg2hw16', 'en', 1, 'https://ror.org/04gg2hw16 International Game Developers Association Foundation'),
(51771, 'https://ror.org/01d1x1659', 'en', 1, 'https://ror.org/01d1x1659 Joan Rothenberg Family Foundation'),
(51772, 'https://ror.org/043c07w57', 'en', 1, 'https://ror.org/043c07w57 Kidney Foundation of Central Pennsylvania'),
(51773, 'https://ror.org/022bzg803', 'en', 1, 'https://ror.org/022bzg803 Landbruks- og matdepartementet Ministry of Agriculture and Food'),
(51774, 'https://ror.org/01pgbc160', 'en', 1, 'https://ror.org/01pgbc160 Japan Foundation Manila'),
(51775, 'https://ror.org/02s4dmy28', 'en', 1, 'https://ror.org/02s4dmy28 Landscape Alberta Nursery Trades Association'),
(51776, 'https://ror.org/01cb82b28', 'en', 1, 'https://ror.org/01cb82b28 Lungs for Life'),
(51777, 'https://ror.org/00w4ej470', 'en', 1, 'https://ror.org/00w4ej470 Japan Foundation Sydney'),
(51778, 'https://ror.org/02k13dd86', 'en', 1, 'https://ror.org/02k13dd86 Landscape Architecture Foundation'),
(51779, 'https://ror.org/044xgn791', 'en', 1, 'https://ror.org/044xgn791 Lupina Foundation'),
(51780, 'https://ror.org/01jz68c66', 'en', 1, 'https://ror.org/01jz68c66 Joe Andruzzi Foundation'),
(51781, 'https://ror.org/05emg8z25', 'en', 1, 'https://ror.org/05emg8z25 Landsteiner Foundation for Blood Transfusion Research Landsteiner Stichting voor Bloedtransfusieresearch'),
(51782, 'https://ror.org/0207wsg03', 'en', 1, 'https://ror.org/0207wsg03 LankellyChase Foundation'),
(51783, 'https://ror.org/00h656961', 'en', 1, 'https://ror.org/00h656961 Lyme Disease Association'),
(51784, 'https://ror.org/05ac1r749', 'en', 1, 'https://ror.org/05ac1r749 Kilo Diabetes and Vascular Research Foundation'),
(51785, 'https://ror.org/026jg0516', 'no_lang_code', 1, 'https://ror.org/026jg0516 Johnson Controls (Japan)'),
(51786, 'https://ror.org/02900by63', 'en', 1, 'https://ror.org/02900by63 Japanese Society of Clinical Pharmacology and Therapeutics'),
(51787, 'https://ror.org/05jyk8r28', 'en', 1, 'https://ror.org/05jyk8r28 Japan Securities Scholarship Foundation ę—„ęœ¬čØ¼åˆøå„Øå­¦č²”å›£'),
(51788, 'https://ror.org/00n60x364', 'en', 1, 'https://ror.org/00n60x364 King Faisal Foundation'),
(51789, 'https://ror.org/030q46522', 'en', 1, 'https://ror.org/030q46522 Lanzhou Science and Technology Bureau å…°å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(51790, 'https://ror.org/02pbe9j32', 'en', 1, 'https://ror.org/02pbe9j32 Japan Society of Ultrasonics in Medicine å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č¶…éŸ³ę³¢åŒ»å­¦ä¼š'),
(51791, 'https://ror.org/04kf79x57', 'en', 1, 'https://ror.org/04kf79x57 John E. Fogarty Foundation'),
(51792, 'https://ror.org/03hr73p06', 'en', 1, 'https://ror.org/03hr73p06 Lymphoma Foundation'),
(51793, 'https://ror.org/04mjn9f12', 'en', 1, 'https://ror.org/04mjn9f12 Japan North America Medical Exchange Foundation å›½éš›äŗ¤ęµåŸŗé‡‘ ę—„ē±³ć‚»ćƒ³ć‚æćƒ¼'),
(51794, 'https://ror.org/02fvjnz56', 'en', 1, 'https://ror.org/02fvjnz56 Japan United States Friendship Commission'),
(51795, 'https://ror.org/01899q369', 'no_lang_code', 1, 'https://ror.org/01899q369 Kinik (Taiwan)'),
(51796, 'https://ror.org/04873vb58', 'en', 1, 'https://ror.org/04873vb58 Lynch Foundation'),
(51797, 'https://ror.org/031z7rc44', 'en', 1, 'https://ror.org/031z7rc44 John F. Kennedy Presidential Library and Museum'),
(51798, 'https://ror.org/05ycax488', 'en', 1, 'https://ror.org/05ycax488 Bradley Foundation'),
(51799, 'https://ror.org/04w1pz213', 'en', 1, 'https://ror.org/04w1pz213 Japan Dental Association ę—„ęœ¬ę­Æē§‘åŒ»åø«ä¼š'),
(51800, 'https://ror.org/04qsqk067', 'en', 1, 'https://ror.org/04qsqk067 Kinsman Foundation'),
(51801, 'https://ror.org/015bgb355', 'no_lang_code', 1, 'https://ror.org/015bgb355 Lynn Chase Designs (United States)'),
(51802, 'https://ror.org/00mrtvk90', 'en', 1, 'https://ror.org/00mrtvk90 John Merck Fund'),
(51803, 'https://ror.org/01vwxyv67', 'en', 1, 'https://ror.org/01vwxyv67 Lynn Sage Cancer Research Foundation'),
(51804, 'https://ror.org/013bnca37', 'da', 1, 'https://ror.org/013bnca37 Kirsten og Freddy Johansens Fond'),
(51805, 'https://ror.org/05ykzvv97', 'da', 1, 'https://ror.org/05ykzvv97 Jascha Fonden'),
(51806, 'https://ror.org/0216taa64', 'en', 1, 'https://ror.org/0216taa64 Mcnulty Foundation'),
(51807, 'https://ror.org/02cx5b758', 'en', 1, 'https://ror.org/02cx5b758 Laura Moore Cunningham Foundation'),
(51808, 'https://ror.org/04rrtdm25', 'en', 1, 'https://ror.org/04rrtdm25 Lynne Cohen Foundation'),
(51809, 'https://ror.org/04gw71m56', 'en', 1, 'https://ror.org/04gw71m56 Law Foundation of Nova Scotia'),
(51810, 'https://ror.org/02nfebn65', 'en', 1, 'https://ror.org/02nfebn65 Jawaharlal Nehru Memorial Fund'),
(51811, 'https://ror.org/02dezpk37', 'en', 1, 'https://ror.org/02dezpk37 Patricia Cronin Foundation'),
(51812, 'https://ror.org/00y105102', 'en', 1, 'https://ror.org/00y105102 John P. Murphy Foundation'),
(51813, 'https://ror.org/03qzp5f03', 'en', 1, 'https://ror.org/03qzp5f03 Lawrence Foundation'),
(51814, 'https://ror.org/05jj8cx84', 'en', 1, 'https://ror.org/05jj8cx84 John R. Oishei Foundation'),
(51815, 'https://ror.org/05nz14y12', 'da', 1, 'https://ror.org/05nz14y12 Aarhus Stadsarkiv'),
(51816, 'https://ror.org/028a0c712', 'no_lang_code', 1, 'https://ror.org/028a0c712 Blue Planet Innovation (Denmark)'),
(51817, 'https://ror.org/02s7h4e59', 'no_lang_code', 1, 'https://ror.org/02s7h4e59 Bonus'),
(51818, 'https://ror.org/00esqty25', 'en', 1, 'https://ror.org/00esqty25 Borean Innovation'),
(51819, 'https://ror.org/02dwv3218', 'no_lang_code', 1, 'https://ror.org/02dwv3218 Danaher (Singapore)'),
(51820, 'https://ror.org/045d26a95', 'no_lang_code', 1, 'https://ror.org/045d26a95 Candofilm (Denmark)'),
(51821, 'https://ror.org/02zttjj06', 'no_lang_code', 1, 'https://ror.org/02zttjj06 Capnova (Denmark)'),
(51822, 'https://ror.org/02495av31', 'da', 1, 'https://ror.org/02495av31 Selskabet for Skole- og Uddannelseshistorie'),
(51823, 'https://ror.org/057q2wg27', 'no_lang_code', 1, 'https://ror.org/057q2wg27 Chilbal Film (Denmark)'),
(51824, 'https://ror.org/00jrs9d94', 'no_lang_code', 1, 'https://ror.org/00jrs9d94 Selskabet til Forskning i ArbejderbevƦgelsens Historie Sfah (Denmark)'),
(51825, 'https://ror.org/0202qvf63', 'no_lang_code', 1, 'https://ror.org/0202qvf63 Kunstgreb (Denmark)'),
(51826, 'https://ror.org/010g5w962', 'no_lang_code', 1, 'https://ror.org/010g5w962 Mitsubishi Paper Mills (Japan) äø‰č±č£½ē“™ę Ŗå¼ä¼šē¤¾'),
(51827, 'https://ror.org/01wh3fp78', 'no_lang_code', 1, 'https://ror.org/01wh3fp78 Initiatives (Denmark)'),
(51828, 'https://ror.org/0155jx986', 'en', 1, 'https://ror.org/0155jx986 Connect Denmark'),
(51829, 'https://ror.org/01pw21703', 'en', 1, 'https://ror.org/01pw21703 Danish Cattle Research Centre Danmarks KvƦgforskningscenter'),
(51830, 'https://ror.org/025260c90', 'en', 1, 'https://ror.org/025260c90 Innovation Center Denmark'),
(51831, 'https://ror.org/033gqt621', 'en', 1, 'https://ror.org/033gqt621 Innovation Center Denmark'),
(51832, 'https://ror.org/0246qdk84', 'en', 1, 'https://ror.org/0246qdk84 Innovation Center Denmark'),
(51833, 'https://ror.org/03b855a97', 'no_lang_code', 1, 'https://ror.org/03b855a97 Sorbisense (Denmark)'),
(51834, 'https://ror.org/05tdr7z74', 'en', 1, 'https://ror.org/05tdr7z74 Innovation Center Denmark'),
(51835, 'https://ror.org/03beyfa67', 'no_lang_code', 1, 'https://ror.org/03beyfa67 Labster (Denmark)'),
(51836, 'https://ror.org/03ebpm503', 'no_lang_code', 1, 'https://ror.org/03ebpm503 ACCO Brands (United States)'),
(51837, 'https://ror.org/0000v4966', 'en', 1, 'https://ror.org/0000v4966 Innovation Center Denmark'),
(51838, 'https://ror.org/04cg7vv67', 'en', 1, 'https://ror.org/04cg7vv67 Innovation Center Denmark'),
(51839, 'https://ror.org/03q4j4z17', 'no_lang_code', 1, 'https://ror.org/03q4j4z17 Damvad (Denmark)'),
(51840, 'https://ror.org/01twdvx49', 'da', 1, 'https://ror.org/01twdvx49 Danmarks Radio'),
(51841, 'https://ror.org/04ytwdt71', 'no_lang_code', 1, 'https://ror.org/04ytwdt71 Afa Jcdecaux (Denmark)'),
(51842, 'https://ror.org/02f83ba58', 'no_lang_code', 1, 'https://ror.org/02f83ba58 JazzDanmark (Denmark)'),
(51843, 'https://ror.org/002yb3q28', 'da', 1, 'https://ror.org/002yb3q28 Moesgaard Museum'),
(51844, 'https://ror.org/038mpcy29', 'en', 1, 'https://ror.org/038mpcy29 Science Museerne Science Museums'),
(51845, 'https://ror.org/02w4nb893', 'no_lang_code', 1, 'https://ror.org/02w4nb893 Mortensen Film (Denmark)'),
(51846, 'https://ror.org/05551pd32', 'da', 1, 'https://ror.org/05551pd32 Albertslund Kommune'),
(51847, 'https://ror.org/05fz6ex02', 'no_lang_code', 1, 'https://ror.org/05fz6ex02 Alphafilm and Kommunikation (Denmark)'),
(51848, 'https://ror.org/00ptcn250', 'no_lang_code', 1, 'https://ror.org/00ptcn250 STV Production (Denmark)'),
(51849, 'https://ror.org/009rtx153', 'en', 1, 'https://ror.org/009rtx153 Danish Centre for Marine Research'),
(51850, 'https://ror.org/02qm2nb52', 'en', 1, 'https://ror.org/02qm2nb52 Arktisk Institut Danish Arctic Institute'),
(51851, 'https://ror.org/0192aem33', 'da', 1, 'https://ror.org/0192aem33 Dansk Historisk FƦllesforening'),
(51852, 'https://ror.org/01g35pk06', 'no_lang_code', 1, 'https://ror.org/01g35pk06 Monday Media (Denmark)'),
(51853, 'https://ror.org/03pyjhg42', 'no_lang_code', 1, 'https://ror.org/03pyjhg42 Syddansk Innovation (Denmark)'),
(51854, 'https://ror.org/01cajaf96', 'da', 1, 'https://ror.org/01cajaf96 Dansk SprognƦvn'),
(51855, 'https://ror.org/02bn96467', 'da', 1, 'https://ror.org/02bn96467 Naturvidenskabernes Hus'),
(51856, 'https://ror.org/02kmr3f22', 'en', 1, 'https://ror.org/02kmr3f22 Science Theatre Videnskabsteatret'),
(51857, 'https://ror.org/0005s7205', 'no_lang_code', 1, 'https://ror.org/0005s7205 Team Production (Denmark)'),
(51858, 'https://ror.org/02eya7c23', 'da', 1, 'https://ror.org/02eya7c23 Ny Carlsberg Glyptotek'),
(51859, 'https://ror.org/01eagnx62', 'no_lang_code', 1, 'https://ror.org/01eagnx62 Zebra Media (Denmark)'),
(51860, 'https://ror.org/03cpssz74', 'en', 1, 'https://ror.org/03cpssz74 Macula Vision Research Foundation'),
(51861, 'https://ror.org/0116j4g69', 'da', 1, 'https://ror.org/0116j4g69 Det GrĆønlandske Selskab'),
(51862, 'https://ror.org/02fceca45', 'en', 1, 'https://ror.org/02fceca45 Macular Disease Foundation Australia'),
(51863, 'https://ror.org/042h3mz57', 'en', 1, 'https://ror.org/042h3mz57 Danish Youth Association of Science Ungdommens Naturvidenskabelige Forening'),
(51864, 'https://ror.org/03z7ba880', 'da', 1, 'https://ror.org/03z7ba880 Universitets-JubilƦets Danske Samfund'),
(51865, 'https://ror.org/03htwyn40', 'en', 1, 'https://ror.org/03htwyn40 Meath Foundation'),
(51866, 'https://ror.org/04z1kv059', 'no_lang_code', 1, 'https://ror.org/04z1kv059 Paradis (Denmark)'),
(51867, 'https://ror.org/01bc16f62', 'en', 1, 'https://ror.org/01bc16f62 Mebane Charitable Foundation'),
(51868, 'https://ror.org/03bxbhm47', 'no_lang_code', 1, 'https://ror.org/03bxbhm47 Videnskab (Denmark)'),
(51869, 'https://ror.org/041xgzk22', 'no_lang_code', 1, 'https://ror.org/041xgzk22 DK4'),
(51870, 'https://ror.org/02dc2hx33', 'no_lang_code', 1, 'https://ror.org/02dc2hx33 Pre-Seed Innovation (Denmark)'),
(51871, 'https://ror.org/0466zjn24', 'en', 1, 'https://ror.org/0466zjn24 Lawrence T. & Janet T. Dee Foundation'),
(51872, 'https://ror.org/008rsmw46', 'en', 1, 'https://ror.org/008rsmw46 Lawson Foundation'),
(51873, 'https://ror.org/002nx7j40', 'en', 1, 'https://ror.org/002nx7j40 Lea''s Foundation for Leukemia Research'),
(51874, 'https://ror.org/004f9my84', 'en', 1, 'https://ror.org/004f9my84 European Peacebuilding Liaison Office'),
(51875, 'https://ror.org/040ya8k73', 'sv', 1, 'https://ror.org/040ya8k73 Magnus Bergvalls Stiftelse'),
(51876, 'https://ror.org/041fvw351', 'en', 1, 'https://ror.org/041fvw351 John Randolph Foundation'),
(51877, 'https://ror.org/049d1sc04', 'en', 1, 'https://ror.org/049d1sc04 Express TV Production'),
(51878, 'https://ror.org/040qqw382', 'en', 1, 'https://ror.org/040qqw382 John Rex Endowment'),
(51879, 'https://ror.org/05983pc92', 'en', 1, 'https://ror.org/05983pc92 Malaysia Toray Science Foundation'),
(51880, 'https://ror.org/02n9j0y25', 'en', 1, 'https://ror.org/02n9j0y25 Meghan Rose Bradley Foundation'),
(51881, 'https://ror.org/017xs2h64', 'en', 1, 'https://ror.org/017xs2h64 John T. Reid Charitable Trusts'),
(51882, 'https://ror.org/0113y3s69', 'en', 1, 'https://ror.org/0113y3s69 Kitty M. Perkins Foundation'),
(51883, 'https://ror.org/04qdq0b46', 'en', 1, 'https://ror.org/04qdq0b46 Danish Dairy Research Foundation'),
(51884, 'https://ror.org/0530jqt13', 'en', 1, 'https://ror.org/0530jqt13 John Thomas Schroeder Foundation'),
(51885, 'https://ror.org/05mmamd82', 'en', 1, 'https://ror.org/05mmamd82 Malone Family Foundation'),
(51886, 'https://ror.org/02y06nn11', 'en', 1, 'https://ror.org/02y06nn11 Legler Benbough Foundation'),
(51887, 'https://ror.org/02s1hnn22', 'en', 1, 'https://ror.org/02s1hnn22 Mellam Family Foundation'),
(51888, 'https://ror.org/005t7ny15', 'en', 1, 'https://ror.org/005t7ny15 Kiwanis Club of Rockford'),
(51889, 'https://ror.org/000kq2q47', 'en', 1, 'https://ror.org/000kq2q47 John Tracy Clinic'),
(51890, 'https://ror.org/05q12yf11', 'no_lang_code', 1, 'https://ror.org/05q12yf11 Klabzuba (United States)'),
(51891, 'https://ror.org/00cv4ff80', 'en', 1, 'https://ror.org/00cv4ff80 Mama Mare Breast Cancer Foundation'),
(51892, 'https://ror.org/040xe3q33', 'en', 1, 'https://ror.org/040xe3q33 Melville Charitable Trust'),
(51893, 'https://ror.org/052jep661', 'en', 1, 'https://ror.org/052jep661 Klaus Tschira Foundation'),
(51894, 'https://ror.org/03fcfn607', 'de', 1, 'https://ror.org/03fcfn607 Leibniz Publik'),
(51895, 'https://ror.org/02y95ae87', 'en', 1, 'https://ror.org/02y95ae87 John Wayne Cancer Foundation'),
(51896, 'https://ror.org/03wy7t706', 'en', 1, 'https://ror.org/03wy7t706 KLS Foundation'),
(51897, 'https://ror.org/03v7w7232', 'en', 1, 'https://ror.org/03v7w7232 Manitoba Beekeepers'' Association'),
(51898, 'https://ror.org/05jv9e497', 'en', 1, 'https://ror.org/05jv9e497 Johnson Family Foundation'),
(51899, 'https://ror.org/047sc8865', 'en', 1, 'https://ror.org/047sc8865 Memorial Foundation for Jewish Culture'),
(51900, 'https://ror.org/006fbpy17', 'no_lang_code', 1, 'https://ror.org/006fbpy17 Nexus (Italy)'),
(51901, 'https://ror.org/037d2wg57', 'en', 1, 'https://ror.org/037d2wg57 Johnson Foundation'),
(51902, 'https://ror.org/05xtwn084', 'da', 1, 'https://ror.org/05xtwn084 Knud og Dagny Gad Andresens Fond'),
(51903, 'https://ror.org/00mfkwp51', 'en', 1, 'https://ror.org/00mfkwp51 Manitoba Medical Service Foundation'),
(51904, 'https://ror.org/02qjq5342', 'en', 1, 'https://ror.org/02qjq5342 Kobayashi Foundation for Cancer Research å°ęž—ćŒć‚“ē ”ē©¶č²”å›£'),
(51905, 'https://ror.org/02z3hd077', 'en', 1, 'https://ror.org/02z3hd077 Leo S. Guthman Fund'),
(51906, 'https://ror.org/03d4wwv68', 'en', 1, 'https://ror.org/03d4wwv68 Kobayashi International Scholarship Foundation å°ęž—å›½éš›å„Øå­¦č²”å›£'),
(51907, 'https://ror.org/033hnyq61', 'en', 1, 'https://ror.org/033hnyq61 Leon Levy Foundation'),
(51908, 'https://ror.org/028myba47', 'en', 1, 'https://ror.org/028myba47 Mensa Education and Research Foundation'),
(51909, 'https://ror.org/053qr8q83', 'en', 1, 'https://ror.org/053qr8q83 Jonathan Powell Hope Foundation'),
(51910, 'https://ror.org/01th7t610', 'en', 1, 'https://ror.org/01th7t610 Mental Health Research UK'),
(51911, 'https://ror.org/00mmhc695', 'en', 1, 'https://ror.org/00mmhc695 Leopold Schepp Foundation'),
(51912, 'https://ror.org/050gw5147', 'en', 1, 'https://ror.org/050gw5147 Kobe College Corporation and Japan Education Exchange'),
(51913, 'https://ror.org/02edrgs08', 'en', 1, 'https://ror.org/02edrgs08 Lester Fund'),
(51914, 'https://ror.org/03pkewe16', 'en', 1, 'https://ror.org/03pkewe16 Manpei Suzuki Diabetes Foundation'),
(51915, 'https://ror.org/01m1n7283', 'en', 1, 'https://ror.org/01m1n7283 Jim Joseph Foundation'),
(51916, 'https://ror.org/02ddg5t47', 'en', 1, 'https://ror.org/02ddg5t47 Koby Mandell Foundation'),
(51917, 'https://ror.org/054bqdz45', 'en', 1, 'https://ror.org/054bqdz45 Leukaemia and Blood Cancer New Zealand'),
(51918, 'https://ror.org/031pc9z34', 'en', 1, 'https://ror.org/031pc9z34 Koch Cultural Trust'),
(51919, 'https://ror.org/00fpb6b80', 'no_lang_code', 1, 'https://ror.org/00fpb6b80 Maple Syrup Urine Disease Family Support Group'),
(51920, 'https://ror.org/01bzak852', 'en', 1, 'https://ror.org/01bzak852 UnityPoint Health Meriter'),
(51921, 'https://ror.org/00vw9nm15', 'en', 1, 'https://ror.org/00vw9nm15 Koch Foundation'),
(51922, 'https://ror.org/05xs24h03', 'en', 1, 'https://ror.org/05xs24h03 Joseph P. Kennedy Jr. Foundation'),
(51923, 'https://ror.org/003atmt97', 'en', 1, 'https://ror.org/003atmt97 Marbrook Foundation'),
(51924, 'https://ror.org/00tf7ep30', 'en', 1, 'https://ror.org/00tf7ep30 March of Dimes Canada'),
(51925, 'https://ror.org/01vwv8r87', 'en', 1, 'https://ror.org/01vwv8r87 Joshua Frase Foundation'),
(51926, 'https://ror.org/03qyben73', 'en', 1, 'https://ror.org/03qyben73 MetroWest Health Foundation'),
(51927, 'https://ror.org/0224wbx43', 'da', 1, 'https://ror.org/0224wbx43 Kongeriget Danmarks Hesteforsikring'),
(51928, 'https://ror.org/03j077d81', 'en', 1, 'https://ror.org/03j077d81 Meyer Foundation'),
(51929, 'https://ror.org/05tya7346', 'en', 1, 'https://ror.org/05tya7346 Joshua Tree National Park Association'),
(51930, 'https://ror.org/04t1pp919', 'da', 1, 'https://ror.org/04t1pp919 Lida og Oskar Nielsens Fond'),
(51931, 'https://ror.org/05kqxme91', 'en', 1, 'https://ror.org/05kqxme91 Michael Reese Health Trust'),
(51932, 'https://ror.org/039k05z19', 'en', 1, 'https://ror.org/039k05z19 Jovid Foundation'),
(51933, 'https://ror.org/00ajqtx13', 'en', 1, 'https://ror.org/00ajqtx13 Margaret A. Cargill Philanthropies'),
(51934, 'https://ror.org/03myshd20', 'en', 1, 'https://ror.org/03myshd20 Margaret Clark Morgan Foundation'),
(51935, 'https://ror.org/0499qpt59', 'en', 1, 'https://ror.org/0499qpt59 Joyce Foundation'),
(51936, 'https://ror.org/02nykv047', 'en', 1, 'https://ror.org/02nykv047 Margaret S. Mahler Child Development Foundation'),
(51937, 'https://ror.org/03pzdmy91', 'de', 1, 'https://ror.org/03pzdmy91 Konrad Adenauer Foundation Konrad-Adenauer-Stiftung'),
(51938, 'https://ror.org/0187qyr62', 'en', 1, 'https://ror.org/0187qyr62 Michelson Prize and Grants'),
(51939, 'https://ror.org/01qa22e60', 'en', 1, 'https://ror.org/01qa22e60 Marguerite Casey Foundation'),
(51940, 'https://ror.org/03mmkx794', 'en', 1, 'https://ror.org/03mmkx794 Judith Rothschild Foundation'),
(51941, 'https://ror.org/047vk1j69', 'en', 1, 'https://ror.org/047vk1j69 Microfinance Opportunities'),
(51942, 'https://ror.org/0556dev32', 'en', 1, 'https://ror.org/0556dev32 Korea Foundation for Advanced Studies'),
(51943, 'https://ror.org/018g1zw27', 'sv', 1, 'https://ror.org/018g1zw27 Marie-Claire Cronstedts Stiftelse'),
(51944, 'https://ror.org/00c3qdc78', 'en', 1, 'https://ror.org/00c3qdc78 Marietta Community Foundation'),
(51945, 'https://ror.org/00td0dz58', 'en', 1, 'https://ror.org/00td0dz58 Linnean Society of London'),
(51946, 'https://ror.org/02cx4j151', 'en', 1, 'https://ror.org/02cx4j151 Marin Community Foundation'),
(51947, 'https://ror.org/040xqfw27', 'en', 1, 'https://ror.org/040xqfw27 Community Foundation of Middlesex County'),
(51948, 'https://ror.org/01fb0df08', 'en', 1, 'https://ror.org/01fb0df08 Marine Corps Warfighting Laboratory'),
(51949, 'https://ror.org/00pw4ps28', 'en', 1, 'https://ror.org/00pw4ps28 Korea Foundation for International Healthcare'),
(51950, 'https://ror.org/0058p8h34', 'no_lang_code', 1, 'https://ror.org/0058p8h34 Korea Gas Corporation (South Korea)'),
(51951, 'https://ror.org/02j6fbg68', 'en', 1, 'https://ror.org/02j6fbg68 Juvenile Diabetes Research Foundation'),
(51952, 'https://ror.org/009nzt148', 'en', 1, 'https://ror.org/009nzt148 Marion Community Foundation'),
(51953, 'https://ror.org/012ebbs45', 'en', 1, 'https://ror.org/012ebbs45 Marion E. Kenworthy-Sarah H. Swift Foundation'),
(51954, 'https://ror.org/00gpt9p27', 'en', 1, 'https://ror.org/00gpt9p27 Korea Institute of Sport Science ķ•œźµ­ģŠ¤ķ¬ģø ź°œė°œģ›'),
(51955, 'https://ror.org/03qezq212', 'da', 1, 'https://ror.org/03qezq212 Kai Lange og Gunhild Kai Langes Fond'),
(51956, 'https://ror.org/045e0dn59', 'en', 1, 'https://ror.org/045e0dn59 Migraine Research Foundation'),
(51957, 'https://ror.org/05md3zv31', 'en', 1, 'https://ror.org/05md3zv31 Korean Academy of Medical Sciences'),
(51958, 'https://ror.org/04vn4r534', 'en', 1, 'https://ror.org/04vn4r534 Little Giraffe Foundation'),
(51959, 'https://ror.org/00jk42n91', 'en', 1, 'https://ror.org/00jk42n91 Kaibara Morikazu Medical Science Promotion Foundation ęµ·åŽŸē››å’ŒåŒ»å­¦ęŒÆčˆˆč²”å›£'),
(51960, 'https://ror.org/04m25zw74', 'no_lang_code', 1, 'https://ror.org/04m25zw74 Kalliopeia Foundation'),
(51961, 'https://ror.org/03cq51m79', 'en', 1, 'https://ror.org/03cq51m79 Live Love and Laugh Foundation'),
(51962, 'https://ror.org/042p27957', 'en', 1, 'https://ror.org/042p27957 Korean American Scholarship Foundation'),
(51963, 'https://ror.org/01a100t94', 'en', 1, 'https://ror.org/01a100t94 Mike Utley Foundation'),
(51964, 'https://ror.org/01ckvny60', 'en', 1, 'https://ror.org/01ckvny60 Rivkin Center for Ovarian Cancer'),
(51965, 'https://ror.org/03y50tm06', 'en', 1, 'https://ror.org/03y50tm06 Korean Dermatological Association ėŒ€ķ•œķ”¼ė¶€ź³¼ķ•™ķšŒ'),
(51966, 'https://ror.org/0164x1171', 'en', 1, 'https://ror.org/0164x1171 Living Stones Foundation Charitable Trust'),
(51967, 'https://ror.org/00j68ke40', 'no_lang_code', 1, 'https://ror.org/00j68ke40 Kamenori Foundation ć‹ć‚ć®ć‚Šč²”å›£'),
(51968, 'https://ror.org/00yjmmj69', 'en', 1, 'https://ror.org/00yjmmj69 Milbank Foundation'),
(51969, 'https://ror.org/03d1hk111', 'en', 1, 'https://ror.org/03d1hk111 Marubun Research Promotion Foundation äø€čˆ¬č²”å›£ę³•äŗŗ 丸文貔団'),
(51970, 'https://ror.org/05t93wr04', 'en', 1, 'https://ror.org/05t93wr04 Liz Claiborne and Art Ortenberg Foundation'),
(51971, 'https://ror.org/043dcpa79', 'en', 1, 'https://ror.org/043dcpa79 Mary E Bivins Foundation'),
(51972, 'https://ror.org/0106twe82', 'en', 1, 'https://ror.org/0106twe82 Korean Society of Echocardiography ķ•œźµ­ģ‹¬ģ“ˆģŒķŒŒķ•™ķšŒ'),
(51973, 'https://ror.org/01x8qsj42', 'en', 1, 'https://ror.org/01x8qsj42 Chapman Foundations'),
(51974, 'https://ror.org/04s3cew51', 'en', 1, 'https://ror.org/04s3cew51 Milbank Memorial Fund'),
(51975, 'https://ror.org/018611e81', 'en', 1, 'https://ror.org/018611e81 Kansas Masonic Foundation'),
(51976, 'https://ror.org/02efnsc68', 'en', 1, 'https://ror.org/02efnsc68 Koret Foundation'),
(51977, 'https://ror.org/022h0yw65', 'en', 1, 'https://ror.org/022h0yw65 Korle Bu Neuroscience Foundation'),
(51978, 'https://ror.org/05fexbp32', 'en', 1, 'https://ror.org/05fexbp32 Milken Family Foundation'),
(51979, 'https://ror.org/04676kj64', 'no_lang_code', 1, 'https://ror.org/04676kj64 Providence Service Corporation (United States)'),
(51980, 'https://ror.org/04pyp4405', 'en', 1, 'https://ror.org/04pyp4405 Kortney Rose Foundation'),
(51981, 'https://ror.org/02akdz045', 'en', 1, 'https://ror.org/02akdz045 Maryland Ornithological Society'),
(51982, 'https://ror.org/053xt2a19', 'en', 1, 'https://ror.org/053xt2a19 London International Development Centre'),
(51983, 'https://ror.org/036jvr704', 'en', 1, 'https://ror.org/036jvr704 Kappa Alpha Theta Foundation'),
(51984, 'https://ror.org/0238xm951', 'en', 1, 'https://ror.org/0238xm951 Mind Science Foundation'),
(51985, 'https://ror.org/04jpf9990', 'en', 1, 'https://ror.org/04jpf9990 Kowa Life Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗ čˆˆå’Œē”Ÿå‘½ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(51986, 'https://ror.org/0506ech85', 'en', 1, 'https://ror.org/0506ech85 Longview Foundation'),
(51987, 'https://ror.org/037svw098', 'en', 1, 'https://ror.org/037svw098 Krembil Foundation'),
(51988, 'https://ror.org/036qaf130', 'en', 1, 'https://ror.org/036qaf130 Karen Brown Scleroderma Foundation'),
(51989, 'https://ror.org/043ttpn32', 'en', 1, 'https://ror.org/043ttpn32 Kresge Foundation'),
(51990, 'https://ror.org/04mnke839', 'en', 1, 'https://ror.org/04mnke839 Ministerial Standing Committee on Scientific and Technological Cooperation of the Organization of Islamic Cooperation'),
(51991, 'https://ror.org/02dq5ds52', 'en', 1, 'https://ror.org/02dq5ds52 Los Angeles Rubber Group'),
(51992, 'https://ror.org/05nzc3h14', 'en', 1, 'https://ror.org/05nzc3h14 Always Dream Foundation'),
(51993, 'https://ror.org/03rx2ty86', 'en', 1, 'https://ror.org/03rx2ty86 Ministerie van Buitenlandse Zaken Ministry of Foreign Affairs'),
(51994, 'https://ror.org/00kaqnj29', 'da', 1, 'https://ror.org/00kaqnj29 Karen Elise Jensens Fond'),
(51995, 'https://ror.org/05jhy3d94', 'en', 1, 'https://ror.org/05jhy3d94 Lotex Foundation Lotex Stiftung'),
(51996, 'https://ror.org/02kvr5932', 'en', 1, 'https://ror.org/02kvr5932 Masonic Foundation of Utah'),
(51997, 'https://ror.org/011z3ff80', 'en', 1, 'https://ror.org/011z3ff80 Ministero dello Sviluppo Economico Ministry of Economic Development'),
(51998, 'https://ror.org/058dp8a10', 'en', 1, 'https://ror.org/058dp8a10 Karl Kirchgessner Foundation'),
(51999, 'https://ror.org/00qhvya11', 'en', 1, 'https://ror.org/00qhvya11 Massage Therapy Foundation'),
(52000, 'https://ror.org/007dajt61', 'en', 1, 'https://ror.org/007dajt61 Louis-Jeantet Foundation'),
(52001, 'https://ror.org/00w6s5b11', 'de', 1, 'https://ror.org/00w6s5b11 Karl und Veronica Carstens-Stiftung'),
(52002, 'https://ror.org/02kddrj80', 'en', 1, 'https://ror.org/02kddrj80 Lowe Syndrome Association'),
(52003, 'https://ror.org/05c5x8342', 'en', 1, 'https://ror.org/05c5x8342 Kwanjeong Educational Foundation'),
(52004, 'https://ror.org/03j57tp52', 'en', 1, 'https://ror.org/03j57tp52 Loyola Foundation'),
(52005, 'https://ror.org/01s45wz62', 'en', 1, 'https://ror.org/01s45wz62 Lucas Foundation'),
(52006, 'https://ror.org/01320a653', 'en', 1, 'https://ror.org/01320a653 Lucy Daniels Foundation'),
(52007, 'https://ror.org/00d07mn45', 'en', 1, 'https://ror.org/00d07mn45 National Alopecia Areata Foundation'),
(52008, 'https://ror.org/02gpmmz25', 'es', 1, 'https://ror.org/02gpmmz25 Navarra de Infraestructuras Locales'),
(52009, 'https://ror.org/04zq6dz45', 'en', 1, 'https://ror.org/04zq6dz45 National Association of Chain Drug Stores'),
(52010, 'https://ror.org/03jsy7y79', 'en', 1, 'https://ror.org/03jsy7y79 Ministry of Women and Child Development'),
(52011, 'https://ror.org/0258v0346', 'en', 1, 'https://ror.org/0258v0346 Matthew Larson Foundation'),
(52012, 'https://ror.org/01aazm409', 'en', 1, 'https://ror.org/01aazm409 NCMIC Foundation'),
(52013, 'https://ror.org/040rmmq69', 'en', 1, 'https://ror.org/040rmmq69 Beyond Batten Disease Foundation'),
(52014, 'https://ror.org/05dank931', 'no_lang_code', 1, 'https://ror.org/05dank931 Mauna Kea Technologies (United States)'),
(52015, 'https://ror.org/0163v7e17', 'en', 1, 'https://ror.org/0163v7e17 Max Bell Foundation'),
(52016, 'https://ror.org/04929g954', 'en', 1, 'https://ror.org/04929g954 Minnesota Colon and Rectal Foundation'),
(52017, 'https://ror.org/05je2ma32', 'en', 1, 'https://ror.org/05je2ma32 Minnesota Lions Eye Bank'),
(52018, 'https://ror.org/0205s4214', 'en', 1, 'https://ror.org/0205s4214 Minnesota Ovarian Cancer Alliance'),
(52019, 'https://ror.org/00kan3777', 'en', 1, 'https://ror.org/00kan3777 Dutch Blood Transfusion Society Nederlandse Vereniging voor Bloedtransfusie'),
(52020, 'https://ror.org/01nj1bs84', 'no_lang_code', 1, 'https://ror.org/01nj1bs84 AdminiTrust'),
(52021, 'https://ror.org/01fesvd20', 'nl', 1, 'https://ror.org/01fesvd20 Nederlandse Vereniging voor Trombose en Hemostase'),
(52022, 'https://ror.org/04cf6r544', 'en', 1, 'https://ror.org/04cf6r544 Mayday Fund'),
(52023, 'https://ror.org/01de6ns85', 'no_lang_code', 1, 'https://ror.org/01de6ns85 Neelan Tiruchelvam Trust'),
(52024, 'https://ror.org/01y63b286', 'en', 1, 'https://ror.org/01y63b286 National Centre for Advanced Studies in Humanities and Social Sciences'),
(52025, 'https://ror.org/05sqjfk96', 'en', 1, 'https://ror.org/05sqjfk96 Northern California DX Foundation'),
(52026, 'https://ror.org/043bb8m89', 'en', 1, 'https://ror.org/043bb8m89 Nephcure Foundation'),
(52027, 'https://ror.org/01t5r7875', 'en', 1, 'https://ror.org/01t5r7875 McCarthy Family Foundation'),
(52028, 'https://ror.org/0197yr043', 'en', 1, 'https://ror.org/0197yr043 Netherland-America Foundation'),
(52029, 'https://ror.org/01jce8981', 'no_lang_code', 1, 'https://ror.org/01jce8981 Mitsubishi Corporation (United States)'),
(52030, 'https://ror.org/03tk1ps71', 'en', 1, 'https://ror.org/03tk1ps71 McGraw Foundation'),
(52031, 'https://ror.org/03fzdex20', 'en', 1, 'https://ror.org/03fzdex20 Netherlands Leprosy Relief'),
(52032, 'https://ror.org/01wknzm08', 'en', 1, 'https://ror.org/01wknzm08 National Community Pharmacists Association'),
(52033, 'https://ror.org/00k85q565', 'en', 1, 'https://ror.org/00k85q565 Mitte Foundation'),
(52034, 'https://ror.org/019mbhm70', 'en', 1, 'https://ror.org/019mbhm70 Miyakawa Memorial Research Foundation å®®å·åŗšå­čØ˜åæµē ”ē©¶č²”å›£'),
(52035, 'https://ror.org/00bbs5d96', 'en', 1, 'https://ror.org/00bbs5d96 SightLife'),
(52036, 'https://ror.org/01zm5rz38', 'en', 1, 'https://ror.org/01zm5rz38 National Council for Tertiary Education'),
(52037, 'https://ror.org/040g11437', 'en', 1, 'https://ror.org/040g11437 McGregor Foundation'),
(52038, 'https://ror.org/041475e22', 'en', 1, 'https://ror.org/041475e22 Mclean Foundation'),
(52039, 'https://ror.org/00tb8hf64', 'en', 1, 'https://ror.org/00tb8hf64 National Court Reporters Association'),
(52040, 'https://ror.org/01fadbq53', 'en', 1, 'https://ror.org/01fadbq53 Northwest Minnesota Foundation'),
(52041, 'https://ror.org/000tce348', 'en', 1, 'https://ror.org/000tce348 National Critical Care and Trauma Response Centre'),
(52042, 'https://ror.org/02gxz9934', 'en', 1, 'https://ror.org/02gxz9934 McPherson County Community Foundation'),
(52043, 'https://ror.org/01aaa2z14', 'en', 1, 'https://ror.org/01aaa2z14 Neuroscience Nursing Foundation'),
(52044, 'https://ror.org/044ja2q14', 'en', 1, 'https://ror.org/044ja2q14 Northwest Osteopathic Medical Foundation'),
(52045, 'https://ror.org/035gh0k19', 'en', 1, 'https://ror.org/035gh0k19 Molly Towell Perinatal Research Foundation'),
(52046, 'https://ror.org/0285bze92', 'en', 1, 'https://ror.org/0285bze92 ME Association'),
(52047, 'https://ror.org/03ay6m507', 'en', 1, 'https://ror.org/03ay6m507 Meadows Foundation'),
(52048, 'https://ror.org/043ewr774', 'en', 1, 'https://ror.org/043ewr774 National Eczema Association'),
(52049, 'https://ror.org/044bng944', 'en', 1, 'https://ror.org/044bng944 Nevada Department of Wildlife'),
(52050, 'https://ror.org/04jpe7h32', 'en', 1, 'https://ror.org/04jpe7h32 National Endowment for Democracy'),
(52051, 'https://ror.org/00sbgwz10', 'de', 1, 'https://ror.org/00sbgwz10 OPO-Stiftung'),
(52052, 'https://ror.org/01mmsh574', 'en', 1, 'https://ror.org/01mmsh574 Moody Foundation'),
(52053, 'https://ror.org/03ketea85', 'en', 1, 'https://ror.org/03ketea85 New England Biolabs Foundation'),
(52054, 'https://ror.org/01yb0qj30', 'en', 1, 'https://ror.org/01yb0qj30 National Endowment for Financial Education'),
(52055, 'https://ror.org/001rkmw77', 'en', 1, 'https://ror.org/001rkmw77 Morgan Family Foundation'),
(52056, 'https://ror.org/04y3z0p88', 'en', 1, 'https://ror.org/04y3z0p88 New Hampshire Bar Foundation'),
(52057, 'https://ror.org/04dqbhd05', 'en', 1, 'https://ror.org/04dqbhd05 Oprah''s Angel Network'),
(52058, 'https://ror.org/013zhzc32', 'no_lang_code', 1, 'https://ror.org/013zhzc32 Northwestern Mutual Life Insurance (United States)'),
(52059, 'https://ror.org/02jxgq335', 'en', 1, 'https://ror.org/02jxgq335 New Horizons Foundation'),
(52060, 'https://ror.org/01243va86', 'en', 1, 'https://ror.org/01243va86 Moritani Scholarship Foundation čˆ¬č²”å›£ę³•äŗŗ å®ˆč°·č‚²č‹±ä¼š'),
(52061, 'https://ror.org/01f8b5v57', 'en', 1, 'https://ror.org/01f8b5v57 National Foundation for Ectodermal Dysplasias'),
(52062, 'https://ror.org/05gdcn753', 'en', 1, 'https://ror.org/05gdcn753 Or Yarok Association אור ירוק'),
(52063, 'https://ror.org/005hary16', 'en', 1, 'https://ror.org/005hary16 New India Foundation'),
(52064, 'https://ror.org/05kyj3g94', 'en', 1, 'https://ror.org/05kyj3g94 Oral and Maxillofacial Surgery Foundation'),
(52065, 'https://ror.org/00hm6j694', 'en', 1, 'https://ror.org/00hm6j694 Nova Scotia Research and Innovation Trust'),
(52066, 'https://ror.org/025fgft18', 'en', 1, 'https://ror.org/025fgft18 Morris Stulsaft Foundation'),
(52067, 'https://ror.org/0415kjx40', 'en', 1, 'https://ror.org/0415kjx40 Fund for the Environment & Urban Life'),
(52068, 'https://ror.org/00a933p49', 'en', 1, 'https://ror.org/00a933p49 Noyce Foundation'),
(52069, 'https://ror.org/022p4vd20', 'en', 1, 'https://ror.org/022p4vd20 Orange County Community Foundation'),
(52070, 'https://ror.org/054d9v685', 'en', 1, 'https://ror.org/054d9v685 National Foundation for Medical Research and Innovation');
INSERT INTO `rors` VALUES
(52071, 'https://ror.org/03qvxfj12', 'en', 1, 'https://ror.org/03qvxfj12 Morton Cure Paralysis Fund'),
(52072, 'https://ror.org/00xvwyc81', 'nl', 1, 'https://ror.org/00xvwyc81 Oranje Fonds'),
(52073, 'https://ror.org/04bkwvr55', 'en', 1, 'https://ror.org/04bkwvr55 National Foundation for the Deaf'),
(52074, 'https://ror.org/03awnwb78', 'en', 1, 'https://ror.org/03awnwb78 Nurture Foundation for Reproductive Research'),
(52075, 'https://ror.org/04pm22969', 'en', 1, 'https://ror.org/04pm22969 Organic Farming Research Foundation'),
(52076, 'https://ror.org/022pen470', 'en', 1, 'https://ror.org/022pen470 New York City Police Foundation'),
(52077, 'https://ror.org/044nb3d45', 'en', 1, 'https://ror.org/044nb3d45 National Genealogical Society'),
(52078, 'https://ror.org/04gfxtm83', 'en', 1, 'https://ror.org/04gfxtm83 Mount Zion Health Fund'),
(52079, 'https://ror.org/01rpp5211', 'en', 1, 'https://ror.org/01rpp5211 New York Community Trust'),
(52080, 'https://ror.org/0183pqm13', 'en', 1, 'https://ror.org/0183pqm13 Orthopaedic Research Society'),
(52081, 'https://ror.org/040eybd64', 'en', 1, 'https://ror.org/040eybd64 Movember Foundation'),
(52082, 'https://ror.org/04vdxde73', 'no_lang_code', 1, 'https://ror.org/04vdxde73 National Grid (United States)'),
(52083, 'https://ror.org/02yxc8q04', 'en', 1, 'https://ror.org/02yxc8q04 New York Foundation'),
(52084, 'https://ror.org/01r89aa81', 'no_lang_code', 1, 'https://ror.org/01r89aa81 CME Group (United States)'),
(52085, 'https://ror.org/0181ptd26', 'en', 1, 'https://ror.org/0181ptd26 National Headache Foundation'),
(52086, 'https://ror.org/03hh2p523', 'en', 1, 'https://ror.org/03hh2p523 New Zealand Breast Cancer Foundation'),
(52087, 'https://ror.org/05k7zsn51', 'en', 1, 'https://ror.org/05k7zsn51 MPN Research Foundation'),
(52088, 'https://ror.org/05n0m2q32', 'sv', 1, 'https://ror.org/05n0m2q32 O. E. och Edla Johanssons Vetenskapliga Stiftelse'),
(52089, 'https://ror.org/00ps0j197', 'en', 1, 'https://ror.org/00ps0j197 Osteopathic Heritage Foundation'),
(52090, 'https://ror.org/04xn42d49', 'en', 1, 'https://ror.org/04xn42d49 Mt. Pleasant Area Commuity Foundation'),
(52091, 'https://ror.org/055pzrx21', 'en', 1, 'https://ror.org/055pzrx21 O. J. Noer Research Foundation'),
(52092, 'https://ror.org/00kty7w06', 'en', 1, 'https://ror.org/00kty7w06 National Housing Endowment'),
(52093, 'https://ror.org/01ajpw658', 'en', 1, 'https://ror.org/01ajpw658 Mucolipidosis IV Foundation'),
(52094, 'https://ror.org/00ksjkj95', 'en', 1, 'https://ror.org/00ksjkj95 Osteosynthesis and Trauma Care Foundation'),
(52095, 'https://ror.org/05501m963', 'en', 1, 'https://ror.org/05501m963 Obayashi Foundation å¤§ęž—č²”å›£'),
(52096, 'https://ror.org/00c2b9157', 'en', 1, 'https://ror.org/00c2b9157 Otho S. A. Sprague Memorial Institute'),
(52097, 'https://ror.org/01a0byg64', 'en', 1, 'https://ror.org/01a0byg64 Obici Healthcare Foundation'),
(52098, 'https://ror.org/049fh2r80', 'en', 1, 'https://ror.org/049fh2r80 Multiple Sclerosis Foundation'),
(52099, 'https://ror.org/04p7ema57', 'en', 1, 'https://ror.org/04p7ema57 National Infrastructure for Microbiological Resources å›½å®¶å¾®ē”Ÿē‰©čµ„ęŗåŸŗē”€č®¾ę–½'),
(52100, 'https://ror.org/05a10ec77', 'no_lang_code', 1, 'https://ror.org/05a10ec77 Newmont Mining (United States)'),
(52101, 'https://ror.org/02eyhcx07', 'en', 1, 'https://ror.org/02eyhcx07 Otto Bremer Trust'),
(52102, 'https://ror.org/03ye15z82', 'nl', 1, 'https://ror.org/03ye15z82 ODAS Stichting'),
(52103, 'https://ror.org/03n6hmg93', 'en', 1, 'https://ror.org/03n6hmg93 Ovarian Cancer Research Foundation'),
(52104, 'https://ror.org/0560cwj87', 'en', 1, 'https://ror.org/0560cwj87 Musella Foundation For Brain Tumor Research and Information'),
(52105, 'https://ror.org/01v2r3788', 'en', 1, 'https://ror.org/01v2r3788 National Institute of Public Cooperation and Child Development'),
(52106, 'https://ror.org/05wv0yn79', 'en', 1, 'https://ror.org/05wv0yn79 Overseas Press Club Foundation'),
(52107, 'https://ror.org/01rdg4502', 'en', 1, 'https://ror.org/01rdg4502 Museum of Vertebrate Zoology'),
(52108, 'https://ror.org/01f08b586', 'no_lang_code', 1, 'https://ror.org/01f08b586 Oxalosis and Hyperoxaluria Foundation'),
(52109, 'https://ror.org/047a10n20', 'en', 1, 'https://ror.org/047a10n20 Muskingum County Community Foundation'),
(52110, 'https://ror.org/02hejje45', 'en', 1, 'https://ror.org/02hejje45 Oxford Optronix'),
(52111, 'https://ror.org/03vag5z12', 'en', 1, 'https://ror.org/03vag5z12 Mustard Seed Foundation'),
(52112, 'https://ror.org/01x65sg43', 'en', 1, 'https://ror.org/01x65sg43 Muttart Foundation'),
(52113, 'https://ror.org/01era2c76', 'en', 1, 'https://ror.org/01era2c76 P.E.F. Israel Endowment Funds'),
(52114, 'https://ror.org/03945ew66', 'en', 1, 'https://ror.org/03945ew66 PA Research Foundation'),
(52115, 'https://ror.org/05czgp859', 'en', 1, 'https://ror.org/05czgp859 Myasthenia Gravis Foundation of America'),
(52116, 'https://ror.org/03z8jr008', 'en', 1, 'https://ror.org/03z8jr008 Myelin Project'),
(52117, 'https://ror.org/03tzsnk49', 'en', 1, 'https://ror.org/03tzsnk49 Pacific Pioneer Fund'),
(52118, 'https://ror.org/04tv4vz10', 'en', 1, 'https://ror.org/04tv4vz10 Pacific Vision Foundation'),
(52119, 'https://ror.org/044r8mj16', 'en', 1, 'https://ror.org/044r8mj16 Myer Foundation'),
(52120, 'https://ror.org/00vjrcd64', 'en', 1, 'https://ror.org/00vjrcd64 Public Utilities Office'),
(52121, 'https://ror.org/011nxrw51', 'no_lang_code', 1, 'https://ror.org/011nxrw51 Marquardt (Germany)'),
(52122, 'https://ror.org/00s8ypq23', 'en', 1, 'https://ror.org/00s8ypq23 Nicholas and Elizabeth Slezak Super Center'),
(52123, 'https://ror.org/00323r369', 'en', 1, 'https://ror.org/00323r369 Myocarditis Foundation'),
(52124, 'https://ror.org/001fpn257', 'en', 1, 'https://ror.org/001fpn257 Nineveh Charitable Trust'),
(52125, 'https://ror.org/0017mh436', 'en', 1, 'https://ror.org/0017mh436 Pain Relief Foundation'),
(52126, 'https://ror.org/017n5p421', 'en', 1, 'https://ror.org/017n5p421 Myotonic Dystrophy Foundation'),
(52127, 'https://ror.org/016jygy11', 'en', 1, 'https://ror.org/016jygy11 Ningbo Municipal Education Bureau 宁波市教育局'),
(52128, 'https://ror.org/0563hxx86', 'en', 1, 'https://ror.org/0563hxx86 National Kidney Foundation of South Africa'),
(52129, 'https://ror.org/05hfds782', 'no_lang_code', 1, 'https://ror.org/05hfds782 Nacey Maggioncalda Foundation'),
(52130, 'https://ror.org/05v5yjs39', 'en', 1, 'https://ror.org/05v5yjs39 Palaeontological Association'),
(52131, 'https://ror.org/05s8da439', 'en', 1, 'https://ror.org/05s8da439 NAMM Foundation'),
(52132, 'https://ror.org/049seyn76', 'en', 1, 'https://ror.org/049seyn76 Pan-Mass Challenge'),
(52133, 'https://ror.org/020qgqz48', 'no_lang_code', 1, 'https://ror.org/020qgqz48 Berry (India)'),
(52134, 'https://ror.org/05r023w67', 'en', 1, 'https://ror.org/05r023w67 Nancy Lurie Marks Family Foundation'),
(52135, 'https://ror.org/056gcnh74', 'en', 1, 'https://ror.org/056gcnh74 Nancy Owens Memorial Foundation'),
(52136, 'https://ror.org/059sh8413', 'en', 1, 'https://ror.org/059sh8413 Office of the State Inspector General'),
(52137, 'https://ror.org/03mbtad86', 'en', 1, 'https://ror.org/03mbtad86 National Organization for Hearing Research Foundation'),
(52138, 'https://ror.org/053qbaa96', 'en', 1, 'https://ror.org/053qbaa96 Park Foundation'),
(52139, 'https://ror.org/03g7xph38', 'en', 1, 'https://ror.org/03g7xph38 Park Nicollet Foundation'),
(52140, 'https://ror.org/01yra0v32', 'sv', 1, 'https://ror.org/01yra0v32 Njurfonden'),
(52141, 'https://ror.org/050r7j211', 'en', 1, 'https://ror.org/050r7j211 National Pork Producers Council'),
(52142, 'https://ror.org/02ndgm578', 'en', 1, 'https://ror.org/02ndgm578 Noah Worcester Dermatological Society'),
(52143, 'https://ror.org/04nfmyz64', 'en', 1, 'https://ror.org/04nfmyz64 Parker Foundation'),
(52144, 'https://ror.org/04mcweq87', 'no_lang_code', 1, 'https://ror.org/04mcweq87 Nasdaq (United States)'),
(52145, 'https://ror.org/0161x1106', 'en', 1, 'https://ror.org/0161x1106 National Sculpture Society'),
(52146, 'https://ror.org/032x2te45', 'en', 1, 'https://ror.org/032x2te45 Parkes Foundation'),
(52147, 'https://ror.org/05k9hyx80', 'en', 1, 'https://ror.org/05k9hyx80 NOK Foundation'),
(52148, 'https://ror.org/04nqdt167', 'en', 1, 'https://ror.org/04nqdt167 NATA Research and Education Foundation'),
(52149, 'https://ror.org/00j7nqv87', 'en', 1, 'https://ror.org/00j7nqv87 Parkinson Research Foundation'),
(52150, 'https://ror.org/0401nzk46', 'en', 1, 'https://ror.org/0401nzk46 Nokia Foundation'),
(52151, 'https://ror.org/05krhrc62', 'en', 1, 'https://ror.org/05krhrc62 Nathans Battle Foundation'),
(52152, 'https://ror.org/01zkd3118', 'en', 1, 'https://ror.org/01zkd3118 Nomis Foundation'),
(52153, 'https://ror.org/0363rx482', 'en', 1, 'https://ror.org/0363rx482 Parkinson''s Association of Ireland'),
(52154, 'https://ror.org/00ck87g56', 'en', 1, 'https://ror.org/00ck87g56 Norcliffe Foundation'),
(52155, 'https://ror.org/043t12z55', 'en', 1, 'https://ror.org/043t12z55 National Tay-Sachs and Allied Diseases Association'),
(52156, 'https://ror.org/02zaaft58', 'en', 1, 'https://ror.org/02zaaft58 Nordic Culture Fund'),
(52157, 'https://ror.org/00m63h757', 'en', 1, 'https://ror.org/00m63h757 Parkinson''s Australia'),
(52158, 'https://ror.org/04ymgh706', 'en', 1, 'https://ror.org/04ymgh706 Parkinson''s Association'),
(52159, 'https://ror.org/01xcva522', 'en', 1, 'https://ror.org/01xcva522 Petco Foundation'),
(52160, 'https://ror.org/01kxr3c26', 'en', 1, 'https://ror.org/01kxr3c26 Parkinson''s NSW'),
(52161, 'https://ror.org/03gjwrd32', 'en', 1, 'https://ror.org/03gjwrd32 Peter Michael Foundation'),
(52162, 'https://ror.org/02wat9q45', 'sv', 1, 'https://ror.org/02wat9q45 Norrbacka Eugeniastiftelsen'),
(52163, 'https://ror.org/04d4fer41', 'en', 1, 'https://ror.org/04d4fer41 Parkinson''s Queensland'),
(52164, 'https://ror.org/0300wre24', 'en', 1, 'https://ror.org/0300wre24 Swedish Parkinson’s Disease Association'),
(52165, 'https://ror.org/04f09q842', 'en', 1, 'https://ror.org/04f09q842 Norske Kvinners Sanitetsforening Norwegian Womens Public Health Association'),
(52166, 'https://ror.org/00qk41v79', 'en', 1, 'https://ror.org/00qk41v79 Petroleum Conservation Research Association'),
(52167, 'https://ror.org/059nnvm90', 'en', 1, 'https://ror.org/059nnvm90 Connecticut Office of the Governor'),
(52168, 'https://ror.org/00ay00v02', 'sv', 1, 'https://ror.org/00ay00v02 Petrus och Augusta Hedlunds Stiftelse'),
(52169, 'https://ror.org/00qe9vp10', 'en', 1, 'https://ror.org/00qe9vp10 National Association of Television Program Executives Educational Foundation'),
(52170, 'https://ror.org/00746dd63', 'en', 1, 'https://ror.org/00746dd63 North American Membrane Society'),
(52171, 'https://ror.org/01ypd6q38', 'en', 1, 'https://ror.org/01ypd6q38 North American Menopause Society'),
(52172, 'https://ror.org/02yt6gx28', 'en', 1, 'https://ror.org/02yt6gx28 Pasadena Child Health Foundation'),
(52173, 'https://ror.org/00t19cz85', 'no_lang_code', 1, 'https://ror.org/00t19cz85 NATSO'),
(52174, 'https://ror.org/04txr4v68', 'en', 1, 'https://ror.org/04txr4v68 North American Spine Society'),
(52175, 'https://ror.org/01jmtnr89', 'en', 1, 'https://ror.org/01jmtnr89 Passano Foundation'),
(52176, 'https://ror.org/00mjcdm77', 'en', 1, 'https://ror.org/00mjcdm77 Past Global Changes'),
(52177, 'https://ror.org/01h43vb07', 'en', 1, 'https://ror.org/01h43vb07 North American Strawberry Growers Association'),
(52178, 'https://ror.org/01z531p41', 'en', 1, 'https://ror.org/01z531p41 Ogawa Science and Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗ å°å·ē§‘å­¦ęŠ€č”“č²”å›£'),
(52179, 'https://ror.org/0082xft54', 'en', 1, 'https://ror.org/0082xft54 PDK International'),
(52180, 'https://ror.org/00ev3n257', 'en', 1, 'https://ror.org/00ev3n257 Ohio Academy of Family Physicians'),
(52181, 'https://ror.org/03neavy72', 'no_lang_code', 1, 'https://ror.org/03neavy72 Phi Gamma Delta'),
(52182, 'https://ror.org/04ya12x69', 'en', 1, 'https://ror.org/04ya12x69 North Carolina GlaxoSmithKline Foundation'),
(52183, 'https://ror.org/02d1ek591', 'en', 1, 'https://ror.org/02d1ek591 Phil Hardin Foundation'),
(52184, 'https://ror.org/00f202q63', 'en', 1, 'https://ror.org/00f202q63 Philadelphia Foundation'),
(52185, 'https://ror.org/0347nf139', 'en', 1, 'https://ror.org/0347nf139 Patron Saints Foundation'),
(52186, 'https://ror.org/01dgc6x67', 'en', 1, 'https://ror.org/01dgc6x67 Philippine American Educational Foundation'),
(52187, 'https://ror.org/01pxwcd09', 'en', 1, 'https://ror.org/01pxwcd09 Ralph C. Wilson, Jr. Foundation'),
(52188, 'https://ror.org/02b1krb80', 'en', 1, 'https://ror.org/02b1krb80 North Carolina Pork Council'),
(52189, 'https://ror.org/03x3bwz43', 'en', 1, 'https://ror.org/03x3bwz43 Ohio News Media Association'),
(52190, 'https://ror.org/02jv4t428', 'en', 1, 'https://ror.org/02jv4t428 Paul & Carol David Foundation'),
(52191, 'https://ror.org/03wztvy18', 'en', 1, 'https://ror.org/03wztvy18 Paul Hamlyn Foundation'),
(52192, 'https://ror.org/04mchsp40', 'en', 1, 'https://ror.org/04mchsp40 Ralph M. Parsons Foundation'),
(52193, 'https://ror.org/01enbtr31', 'en', 1, 'https://ror.org/01enbtr31 Okawa Foundation for Information and Telecommunications å…¬ē›Šč²”å›£ę³•äŗŗ å¤§å·ęƒ…å ±é€šäæ”åŸŗé‡‘'),
(52194, 'https://ror.org/02kj8k530', 'en', 1, 'https://ror.org/02kj8k530 North Dakota Community Foundation'),
(52195, 'https://ror.org/03430ny40', 'no_lang_code', 1, 'https://ror.org/03430ny40 Perpetual (Australia)'),
(52196, 'https://ror.org/02n130h25', 'en', 1, 'https://ror.org/02n130h25 Nitsch Foundation'),
(52197, 'https://ror.org/01vc16c74', 'en', 1, 'https://ror.org/01vc16c74 Physiology Society of Southern Africa'),
(52198, 'https://ror.org/00mr0nz89', 'en', 1, 'https://ror.org/00mr0nz89 North Valley Community Foundation'),
(52199, 'https://ror.org/03p5g0c78', 'en', 1, 'https://ror.org/03p5g0c78 Peace Stone Foundation'),
(52200, 'https://ror.org/030t8f239', 'no_lang_code', 1, 'https://ror.org/030t8f239 Ran Naor Institute'),
(52201, 'https://ror.org/00wry3a77', 'en', 1, 'https://ror.org/00wry3a77 Physiotherapy New Zealand'),
(52202, 'https://ror.org/052ckfz09', 'en', 1, 'https://ror.org/052ckfz09 Pediatric Brain Tumor Foundation'),
(52203, 'https://ror.org/05pvet403', 'de', 1, 'https://ror.org/05pvet403 Oncosuisse'),
(52204, 'https://ror.org/02qt0dk86', 'en', 1, 'https://ror.org/02qt0dk86 Horonobe Research Institute for the Subsurface Environment'),
(52205, 'https://ror.org/005yrpm30', 'en', 1, 'https://ror.org/005yrpm30 Pediatric Cancer Research Foundation'),
(52206, 'https://ror.org/0206v1232', 'no_lang_code', 1, 'https://ror.org/0206v1232 Penguin Random House (United States)'),
(52207, 'https://ror.org/02sda0197', 'en', 1, 'https://ror.org/02sda0197 Fondation Pierre Elliott Trudeau Pierre Elliott Trudeau Foundation'),
(52208, 'https://ror.org/02jx9xx30', 'en', 1, 'https://ror.org/02jx9xx30 One in Five Association'),
(52209, 'https://ror.org/04708aj14', 'en', 1, 'https://ror.org/04708aj14 Pediatric Epilepsy Research Foundation'),
(52210, 'https://ror.org/055mp5r09', 'en', 1, 'https://ror.org/055mp5r09 Pikes Peak Community Foundation'),
(52211, 'https://ror.org/05sv4rq55', 'no_lang_code', 1, 'https://ror.org/05sv4rq55 OneBreath (United States)'),
(52212, 'https://ror.org/05wk4pc85', 'en', 1, 'https://ror.org/05wk4pc85 Pediatric Infectious Diseases Society'),
(52213, 'https://ror.org/037vd6027', 'en', 1, 'https://ror.org/037vd6027 OneSight'),
(52214, 'https://ror.org/05etan845', 'en', 1, 'https://ror.org/05etan845 Pilot International'),
(52215, 'https://ror.org/04x6n5698', 'en', 1, 'https://ror.org/04x6n5698 Raptor Research Foundation'),
(52216, 'https://ror.org/043rpbd03', 'en', 1, 'https://ror.org/043rpbd03 Ontario Fruit and Vegetable Growers'' Association'),
(52217, 'https://ror.org/05q59qz08', 'en', 1, 'https://ror.org/05q59qz08 Pinkerton Foundation'),
(52218, 'https://ror.org/04c5xj152', 'en', 1, 'https://ror.org/04c5xj152 Ray Thomas Edwards Foundation'),
(52219, 'https://ror.org/00fx55r32', 'no_lang_code', 1, 'https://ror.org/00fx55r32 Hua Yuan Group (China) åŽčæœé›†å›¢'),
(52220, 'https://ror.org/02yrhrz80', 'en', 1, 'https://ror.org/02yrhrz80 Royal Literary Fund'),
(52221, 'https://ror.org/02wr4pa52', 'en', 1, 'https://ror.org/02wr4pa52 Raymond Educational Foundation'),
(52222, 'https://ror.org/0108ddn29', 'en', 1, 'https://ror.org/0108ddn29 Pitt Hopkins Research Foundation'),
(52223, 'https://ror.org/01ntbg722', 'en', 1, 'https://ror.org/01ntbg722 Pittsburgh Child Guidance Foundation'),
(52224, 'https://ror.org/03swaaz57', 'en', 1, 'https://ror.org/03swaaz57 Royal Project Foundation ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ą¹‚ąø„ąø£ąø‡ąøąø²ąø£ąø«ąø„ąø§ąø‡'),
(52225, 'https://ror.org/0074vna73', 'en', 1, 'https://ror.org/0074vna73 Ontario Institute for Regenerative Medicine'),
(52226, 'https://ror.org/0511swq50', 'en', 1, 'https://ror.org/0511swq50 Pencil Foundation'),
(52227, 'https://ror.org/04x17ze61', 'en', 1, 'https://ror.org/04x17ze61 Raymond J. and Mary C. Reisert Foundation'),
(52228, 'https://ror.org/04fw2pd53', 'en', 1, 'https://ror.org/04fw2pd53 RSF Social Finance'),
(52229, 'https://ror.org/05rcfkq95', 'en', 1, 'https://ror.org/05rcfkq95 Pittsburgh Emergency Medicine Foundation'),
(52230, 'https://ror.org/04d2j3090', 'en', 1, 'https://ror.org/04d2j3090 Ontario Trillium Foundation'),
(52231, 'https://ror.org/05ctpkb66', 'en', 1, 'https://ror.org/05ctpkb66 Pendleton and Elisabeth Carey Miller Charitable Foundation'),
(52232, 'https://ror.org/04n96xc27', 'en', 1, 'https://ror.org/04n96xc27 Rural Women New Zealand'),
(52233, 'https://ror.org/05hr50502', 'en', 1, 'https://ror.org/05hr50502 Plumbing Heating Cooling Contractors National Association Educational Foundation'),
(52234, 'https://ror.org/04qq90y81', 'en', 1, 'https://ror.org/04qq90y81 PLUS Foundation'),
(52235, 'https://ror.org/05ae3xr78', 'en', 1, 'https://ror.org/05ae3xr78 Ready Mixed Concrete Research and Education Foundation'),
(52236, 'https://ror.org/03wxxna60', 'en', 1, 'https://ror.org/03wxxna60 Open Society Foundation for South Africa'),
(52237, 'https://ror.org/00ejn2425', 'en', 1, 'https://ror.org/00ejn2425 Pennington Biomedical Research Foundation'),
(52238, 'https://ror.org/00b0e2156', 'en', 1, 'https://ror.org/00b0e2156 Reflections of Grace Foundation'),
(52239, 'https://ror.org/05pvypf90', 'en', 1, 'https://ror.org/05pvypf90 Open Source Drug Discovery'),
(52240, 'https://ror.org/0092af185', 'no_lang_code', 1, 'https://ror.org/0092af185 PNM Resources (United States)'),
(52241, 'https://ror.org/03n1jkx09', 'en', 1, 'https://ror.org/03n1jkx09 Wisconsin Association for Perinatal Care'),
(52242, 'https://ror.org/01gk88w52', 'en', 1, 'https://ror.org/01gk88w52 Podiatry Foundation of Pittsburgh'),
(52243, 'https://ror.org/005t0n560', 'en', 1, 'https://ror.org/005t0n560 Russian Science Support Foundation Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ общественный ФонГ ŃŠ¾Š“ŠµŠ¹ŃŃ‚Š²ŠøŃ отечественной науке'),
(52244, 'https://ror.org/04x9v7g36', 'no_lang_code', 1, 'https://ror.org/04x9v7g36 Scripps (United States)'),
(52245, 'https://ror.org/01jjabs38', 'en', 1, 'https://ror.org/01jjabs38 Scurlock Foundation'),
(52246, 'https://ror.org/01cq1dy18', 'no', 1, 'https://ror.org/01cq1dy18 Regionale forskningsfond Oslofjordfondet'),
(52247, 'https://ror.org/03ffxvj05', 'en', 1, 'https://ror.org/03ffxvj05 Rutlish School'),
(52248, 'https://ror.org/00w33ze35', 'en', 1, 'https://ror.org/00w33ze35 Registered Nurses'' Association of Ontario'),
(52249, 'https://ror.org/00meev387', 'en', 1, 'https://ror.org/00meev387 Sea World'),
(52250, 'https://ror.org/02g2fp141', 'en', 1, 'https://ror.org/02g2fp141 Reinberger Foundation'),
(52251, 'https://ror.org/046tk6771', 'en', 1, 'https://ror.org/046tk6771 Posen Foundation קרן פוזן'),
(52252, 'https://ror.org/0059sp540', 'en', 1, 'https://ror.org/0059sp540 Ryan Licht Sang Bipolar Foundation'),
(52253, 'https://ror.org/0192hf124', 'en', 1, 'https://ror.org/0192hf124 Sean Costello Memorial Fund for Bipolar Research'),
(52254, 'https://ror.org/02f1wny42', 'en', 1, 'https://ror.org/02f1wny42 Persian Scholarship Foundation'),
(52255, 'https://ror.org/047m55x87', 'en', 1, 'https://ror.org/047m55x87 RYR 1 Foundation'),
(52256, 'https://ror.org/023kcy720', 'de', 1, 'https://ror.org/023kcy720 Reinhold Beitlich Foundation Reinhold Beitlich Stiftung'),
(52257, 'https://ror.org/01ksw8755', 'en', 1, 'https://ror.org/01ksw8755 Potts Family Foundation'),
(52258, 'https://ror.org/02jkjsy62', 'en', 1, 'https://ror.org/02jkjsy62 S. D. Bechtel, Jr. Foundation'),
(52259, 'https://ror.org/02cdjbt38', 'en', 1, 'https://ror.org/02cdjbt38 S. Mark Taper Foundation'),
(52260, 'https://ror.org/05bresr75', 'en', 1, 'https://ror.org/05bresr75 Pottstown Area Health and Wellness Foundation'),
(52261, 'https://ror.org/05w9ckg77', 'en', 1, 'https://ror.org/05w9ckg77 Pet Care Trust'),
(52262, 'https://ror.org/01v6fb724', 'it', 1, 'https://ror.org/01v6fb724 Repubblica e Cantone Ticino'),
(52263, 'https://ror.org/037vy2h31', 'en', 1, 'https://ror.org/037vy2h31 Saccomanno Higher Education Foundation'),
(52264, 'https://ror.org/03qvrm396', 'en', 1, 'https://ror.org/03qvrm396 Poverty and Race Research Action Council'),
(52265, 'https://ror.org/012a8a777', 'en', 1, 'https://ror.org/012a8a777 Society for the Preservation of American Modernists'),
(52266, 'https://ror.org/01mtb8v69', 'en', 1, 'https://ror.org/01mtb8v69 Prayers from Maria'),
(52267, 'https://ror.org/047fpcv83', 'en', 1, 'https://ror.org/047fpcv83 Saigh Foundation'),
(52268, 'https://ror.org/01nbasn20', 'en', 1, 'https://ror.org/01nbasn20 Presbyterian Health Foundation'),
(52269, 'https://ror.org/04y2ytg46', 'en', 1, 'https://ror.org/04y2ytg46 Secure World Foundation'),
(52270, 'https://ror.org/029tzwe02', 'en', 1, 'https://ror.org/029tzwe02 Prevent Blindness'),
(52271, 'https://ror.org/02vzwtq17', 'en', 1, 'https://ror.org/02vzwtq17 Saint Lukes Foundation'),
(52272, 'https://ror.org/005yxzz69', 'en', 1, 'https://ror.org/005yxzz69 Society of Canadian Ornithologists SociƩtƩ des Ornithologistes du Canada'),
(52273, 'https://ror.org/03v0h0x87', 'en', 1, 'https://ror.org/03v0h0x87 Sendzimir Foundation'),
(52274, 'https://ror.org/04kzfca73', 'en', 1, 'https://ror.org/04kzfca73 Severns Family Foundation'),
(52275, 'https://ror.org/04evfhz83', 'en', 1, 'https://ror.org/04evfhz83 Resources Legacy Fund'),
(52276, 'https://ror.org/013rtsq97', 'en', 1, 'https://ror.org/013rtsq97 Samberg Family Foundation'),
(52277, 'https://ror.org/03hw5nc12', 'en', 1, 'https://ror.org/03hw5nc12 Sexually Transmitted Infection Research Foundation'),
(52278, 'https://ror.org/02h71tm83', 'en', 1, 'https://ror.org/02h71tm83 SME Education Foundation'),
(52279, 'https://ror.org/01c4cwj74', 'en', 1, 'https://ror.org/01c4cwj74 Respiratory Health Association'),
(52280, 'https://ror.org/042bpeh86', 'en', 1, 'https://ror.org/042bpeh86 Samis Foundation'),
(52281, 'https://ror.org/02pd51s17', 'en', 1, 'https://ror.org/02pd51s17 Perth Childrens Hospital Foundation'),
(52282, 'https://ror.org/0575b2v60', 'en', 1, 'https://ror.org/0575b2v60 Society of Systematic Biologists'),
(52283, 'https://ror.org/00akqa526', 'en', 1, 'https://ror.org/00akqa526 Samuel H. Kress Foundation'),
(52284, 'https://ror.org/04zn4fk08', 'en', 1, 'https://ror.org/04zn4fk08 Society of Urologic Nurses and Associates'),
(52285, 'https://ror.org/03gnc6x04', 'en', 1, 'https://ror.org/03gnc6x04 Sociological Initiatives Foundation'),
(52286, 'https://ror.org/05j0k2q54', 'en', 1, 'https://ror.org/05j0k2q54 Shanghai Association for Science and Technology'),
(52287, 'https://ror.org/043xdeq55', 'en', 1, 'https://ror.org/043xdeq55 Resthaven Incorporated'),
(52288, 'https://ror.org/04z2zsa77', 'en', 1, 'https://ror.org/04z2zsa77 Sonnenfeld Foundation Sonnenfeld Stiftung'),
(52289, 'https://ror.org/04m6d2w32', 'en', 1, 'https://ror.org/04m6d2w32 San Angelo Health Foundation'),
(52290, 'https://ror.org/048tv2g66', 'en', 1, 'https://ror.org/048tv2g66 Restless Legs Syndrome Foundation'),
(52291, 'https://ror.org/046jh9k27', 'en', 1, 'https://ror.org/046jh9k27 San Francisco Foundation'),
(52292, 'https://ror.org/047916x45', 'en', 1, 'https://ror.org/047916x45 Rett Syndrome Association of Australia'),
(52293, 'https://ror.org/00mt9mq23', 'en', 1, 'https://ror.org/00mt9mq23 Order Sons of Italy in America Ordine Figli d’Italia in America'),
(52294, 'https://ror.org/00cgv2351', 'en', 1, 'https://ror.org/00cgv2351 San Francisco General Hospital Foundation'),
(52295, 'https://ror.org/02ssj8b09', 'en', 1, 'https://ror.org/02ssj8b09 Rett Syndrome Association of Illinois'),
(52296, 'https://ror.org/056jy0m49', 'en', 1, 'https://ror.org/056jy0m49 Sons of Norway'),
(52297, 'https://ror.org/010abdn73', 'en', 1, 'https://ror.org/010abdn73 Sand County Foundation'),
(52298, 'https://ror.org/01thz9g52', 'en', 1, 'https://ror.org/01thz9g52 Sosland Foundation'),
(52299, 'https://ror.org/01a56n213', 'no_lang_code', 1, 'https://ror.org/01a56n213 Shangluo University 商擛学院'),
(52300, 'https://ror.org/01h50je44', 'en', 1, 'https://ror.org/01h50je44 Promotional Products Education Foundation'),
(52301, 'https://ror.org/04ytpr841', 'en', 1, 'https://ror.org/04ytpr841 JLK Sanfilippo Research Foundation'),
(52302, 'https://ror.org/05j3ze875', 'en', 1, 'https://ror.org/05j3ze875 Shared Earth Foundation'),
(52303, 'https://ror.org/020cx6a13', 'en', 1, 'https://ror.org/020cx6a13 Frisbee Foundation'),
(52304, 'https://ror.org/01c8hzn56', 'en', 1, 'https://ror.org/01c8hzn56 South Asian Health Foundation'),
(52305, 'https://ror.org/01rjqn722', 'en', 1, 'https://ror.org/01rjqn722 Ivey Foundation'),
(52306, 'https://ror.org/01pe2nj10', 'no_lang_code', 1, 'https://ror.org/01pe2nj10 Dai-ichi Life Insurance (United States)'),
(52307, 'https://ror.org/03dev3m87', 'en', 1, 'https://ror.org/03dev3m87 Richard K. and Shirley S. Hemingway Foundation'),
(52308, 'https://ror.org/05fan6g58', 'en', 1, 'https://ror.org/05fan6g58 Proteus Fund'),
(52309, 'https://ror.org/05t9z3q05', 'en', 1, 'https://ror.org/05t9z3q05 Richard M. Fairbanks Foundation'),
(52310, 'https://ror.org/01jm2xz84', 'en', 1, 'https://ror.org/01jm2xz84 Richard M. Schulze Family Foundation'),
(52311, 'https://ror.org/007medz62', 'en', 1, 'https://ror.org/007medz62 Shenyang Science and Technology Bureau ę²ˆé˜³åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(52312, 'https://ror.org/052gvyf59', 'en', 1, 'https://ror.org/052gvyf59 Right to Care'),
(52313, 'https://ror.org/01my2h087', 'en', 1, 'https://ror.org/01my2h087 Scaife Foundations'),
(52314, 'https://ror.org/05x4p3q72', 'en', 1, 'https://ror.org/05x4p3q72 South Dakota Community Foundation'),
(52315, 'https://ror.org/04d828f56', 'en', 1, 'https://ror.org/04d828f56 Sarcoma UK'),
(52316, 'https://ror.org/04jgqt260', 'en', 1, 'https://ror.org/04jgqt260 PSC Partners Seeking a Cure'),
(52317, 'https://ror.org/04b5gd719', 'no_lang_code', 1, 'https://ror.org/04b5gd719 Riisfort (Denmark)'),
(52318, 'https://ror.org/00hx9vt43', 'en', 1, 'https://ror.org/00hx9vt43 Sarkeys Foundation'),
(52319, 'https://ror.org/05989vw47', 'en', 1, 'https://ror.org/05989vw47 Public Life Foundation of Owensboro'),
(52320, 'https://ror.org/0236wqc02', 'de', 1, 'https://ror.org/0236wqc02 Sarkoidose Stiftung'),
(52321, 'https://ror.org/01702fz61', 'en', 1, 'https://ror.org/01702fz61 Riverbanks Zoo and Garden'),
(52322, 'https://ror.org/01v0qv381', 'en', 1, 'https://ror.org/01v0qv381 Southeastern Brain Tumor Foundation'),
(52323, 'https://ror.org/01vd5v507', 'en', 1, 'https://ror.org/01vd5v507 Rob and Bessie Welder Wildlife Foundation'),
(52324, 'https://ror.org/05amca937', 'en', 1, 'https://ror.org/05amca937 Purple Martin Conservation Association'),
(52325, 'https://ror.org/01q4wy056', 'en', 1, 'https://ror.org/01q4wy056 Sasakawa Memorial Health Foundation ē¬¹å·čØ˜åæµäæå„å”åŠ›č²”å›£'),
(52326, 'https://ror.org/05t9fgt79', 'en', 1, 'https://ror.org/05t9fgt79 Shurl and Kay Curci Foundation'),
(52327, 'https://ror.org/043g4d297', 'en', 1, 'https://ror.org/043g4d297 Shwachman Diamond Syndrome Foundation'),
(52328, 'https://ror.org/00rvg5p23', 'en', 1, 'https://ror.org/00rvg5p23 Save Our Seas Foundation'),
(52329, 'https://ror.org/02b7zfk76', 'en', 1, 'https://ror.org/02b7zfk76 Qinhuangdao Science and Technology Bureau ē§¦ēš‡å²›åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(52330, 'https://ror.org/0437ce844', 'en', 1, 'https://ror.org/0437ce844 Southern Appalachian Botanical Society'),
(52331, 'https://ror.org/04j36ys10', 'en', 1, 'https://ror.org/04j36ys10 Save the Redwoods League'),
(52332, 'https://ror.org/01pg81m90', 'en', 1, 'https://ror.org/01pg81m90 Robert and Janice McNair Foundation'),
(52333, 'https://ror.org/03f4qgj81', 'en', 1, 'https://ror.org/03f4qgj81 Southern Medical Association'),
(52334, 'https://ror.org/016kmmx43', 'en', 1, 'https://ror.org/016kmmx43 Savoy Foundation'),
(52335, 'https://ror.org/027d4fk93', 'en', 1, 'https://ror.org/027d4fk93 Sid W Richardson Foundation'),
(52336, 'https://ror.org/059e60q69', 'en', 1, 'https://ror.org/059e60q69 Southern Taiwan Science Park å—éƒØē§‘å­øå·„ę„­åœ’å€'),
(52337, 'https://ror.org/05bda2x91', 'en', 1, 'https://ror.org/05bda2x91 Sidgmore Family Foundation'),
(52338, 'https://ror.org/02ykrpt47', 'en', 1, 'https://ror.org/02ykrpt47 Scan Foundation'),
(52339, 'https://ror.org/04r0akj72', 'en', 1, 'https://ror.org/04r0akj72 Quixote Foundation'),
(52340, 'https://ror.org/01rsgv203', 'en', 1, 'https://ror.org/01rsgv203 Scan Design Foundation'),
(52341, 'https://ror.org/05wtm9j71', 'en', 1, 'https://ror.org/05wtm9j71 Sidney R Baer Jr Foundation'),
(52342, 'https://ror.org/01z2afr14', 'en', 1, 'https://ror.org/01z2afr14 Robert Bowne Foundation'),
(52343, 'https://ror.org/03hjy8x14', 'en', 1, 'https://ror.org/03hjy8x14 Sparkplug Foundation'),
(52344, 'https://ror.org/01sh91764', 'en', 1, 'https://ror.org/01sh91764 R Baby Foundation'),
(52345, 'https://ror.org/04axw7w96', 'en', 1, 'https://ror.org/04axw7w96 Robert E. and Evelyn McKee Foundation'),
(52346, 'https://ror.org/02p2x4d36', 'en', 1, 'https://ror.org/02p2x4d36 SIDS Calgary Society'),
(52347, 'https://ror.org/04ajxh113', 'en', 1, 'https://ror.org/04ajxh113 R. Harold Burton Foundation'),
(52348, 'https://ror.org/0176jpt46', 'en', 1, 'https://ror.org/0176jpt46 Schenectady Foundation'),
(52349, 'https://ror.org/03c8aye58', 'en', 1, 'https://ror.org/03c8aye58 R. J. Taylor, Jr. Foundation'),
(52350, 'https://ror.org/03pq14610', 'en', 1, 'https://ror.org/03pq14610 Schizophrenia Research Fund'),
(52351, 'https://ror.org/014smg292', 'en', 1, 'https://ror.org/014smg292 RJ McElroy Trust'),
(52352, 'https://ror.org/000s52h07', 'en', 1, 'https://ror.org/000s52h07 Sierra Club'),
(52353, 'https://ror.org/00x1qgr19', 'en', 1, 'https://ror.org/00x1qgr19 Robert R. McCormick Foundation'),
(52354, 'https://ror.org/03h4z1825', 'en', 1, 'https://ror.org/03h4z1825 Racing Victoria'),
(52355, 'https://ror.org/01acb1828', 'en', 1, 'https://ror.org/01acb1828 Sierra Health Foundation'),
(52356, 'https://ror.org/05r9k3m54', 'en', 1, 'https://ror.org/05r9k3m54 Robert Mapplethorpe Foundation'),
(52357, 'https://ror.org/03dfda051', 'en', 1, 'https://ror.org/03dfda051 Robert Toigo Foundation'),
(52358, 'https://ror.org/00qgmat53', 'no_lang_code', 1, 'https://ror.org/00qgmat53 Sigma-Tau Pharmaceuticals (United States)'),
(52359, 'https://ror.org/04em0at09', 'en', 1, 'https://ror.org/04em0at09 Robert W. Woodruff Foundation'),
(52360, 'https://ror.org/02hekez22', 'en', 1, 'https://ror.org/02hekez22 Sport Foundation'),
(52361, 'https://ror.org/05dwj5629', 'no_lang_code', 1, 'https://ror.org/05dwj5629 Standard General (United States)'),
(52362, 'https://ror.org/04zbaa003', 'en', 1, 'https://ror.org/04zbaa003 Sports Medicine Australia'),
(52363, 'https://ror.org/00tnk3114', 'en', 1, 'https://ror.org/00tnk3114 Robina Foundation'),
(52364, 'https://ror.org/01rrsd035', 'en', 1, 'https://ror.org/01rrsd035 Springboard Foundation'),
(52365, 'https://ror.org/048cvv935', 'en', 1, 'https://ror.org/048cvv935 Rockefeller Brothers Fund'),
(52366, 'https://ror.org/0243gh341', 'en', 1, 'https://ror.org/0243gh341 Springfield Foundation'),
(52367, 'https://ror.org/05rm68h52', 'en', 1, 'https://ror.org/05rm68h52 Sikh Foundation'),
(52368, 'https://ror.org/04agdqh30', 'en', 1, 'https://ror.org/04agdqh30 Raine Medical Research Foundation'),
(52369, 'https://ror.org/04278cc17', 'en', 1, 'https://ror.org/04278cc17 Simmons Family Foundation'),
(52370, 'https://ror.org/020n1we98', 'en', 1, 'https://ror.org/020n1we98 Rockfall Foundation'),
(52371, 'https://ror.org/00b23k705', 'en', 1, 'https://ror.org/00b23k705 Singapore Heart Foundation'),
(52372, 'https://ror.org/00cs24427', 'en', 1, 'https://ror.org/00cs24427 Roddenberry Foundation'),
(52373, 'https://ror.org/02jehgd93', 'en', 1, 'https://ror.org/02jehgd93 Singapore International Foundation Yayasan Antarabangsa Singapura ę–°åŠ å”å›½é™…åŸŗé‡‘ä¼š'),
(52374, 'https://ror.org/024p43m36', 'en', 1, 'https://ror.org/024p43m36 Singapore Millennium Foundation'),
(52375, 'https://ror.org/03agt1e39', 'nl', 1, 'https://ror.org/03agt1e39 Stichting Rotterdams Kinderrevalidatie Fonds Adriaanstichting'),
(52376, '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'),
(52377, 'https://ror.org/03q2zhz47', 'en', 1, 'https://ror.org/03q2zhz47 Siouxland Community Foundation'),
(52378, 'https://ror.org/03cqqyv81', 'en', 1, 'https://ror.org/03cqqyv81 Rollie R. Kelley Family Foundation'),
(52379, 'https://ror.org/02f5r3008', 'en', 1, 'https://ror.org/02f5r3008 Stichting Sem Presser Archief'),
(52380, 'https://ror.org/01x0maw51', 'en', 1, 'https://ror.org/01x0maw51 St David''s Medical Foundation'),
(52381, 'https://ror.org/0571stx19', 'de', 1, 'https://ror.org/0571stx19 Schweizerischen Neurologischen Gesellschaft SociƩtƩ Suisse de Neurologie'),
(52382, 'https://ror.org/04c4mj004', 'en', 1, 'https://ror.org/04c4mj004 Science and Industry Endowment Fund'),
(52383, 'https://ror.org/00d670121', 'en', 1, 'https://ror.org/00d670121 St Giles Foundation'),
(52384, 'https://ror.org/024ap5123', 'en', 1, 'https://ror.org/024ap5123 Rome Foundation'),
(52385, 'https://ror.org/02rzjwp47', 'en', 1, 'https://ror.org/02rzjwp47 Science and Technology Center in Ukraine'),
(52386, 'https://ror.org/036m5gb67', 'en', 1, 'https://ror.org/036m5gb67 Ronald McDonald House Charities of Eastern New England'),
(52387, 'https://ror.org/05yh1h167', 'nl', 1, 'https://ror.org/05yh1h167 Stichting tot Steun VCVGZ'),
(52388, 'https://ror.org/01d931n02', 'en', 1, 'https://ror.org/01d931n02 Ronald McDonald House Charities of Northeastern Ohio'),
(52389, 'https://ror.org/02ntvem14', 'en', 1, 'https://ror.org/02ntvem14 Siragusa Family Foundation'),
(52390, 'https://ror.org/01hckwt34', 'en', 1, 'https://ror.org/01hckwt34 St. Joe Community Foundation'),
(52391, 'https://ror.org/00vh82m49', 'nl', 1, 'https://ror.org/00vh82m49 Stichting Vrienden Beatrix Kinderziekenhuis'),
(52392, 'https://ror.org/02xare716', 'en', 1, 'https://ror.org/02xare716 Sisters of Charity Health System'),
(52393, 'https://ror.org/02zqwya41', 'en', 1, 'https://ror.org/02zqwya41 Ronald McDonald House of Houston'),
(52394, 'https://ror.org/05ph9xy04', 'sv', 1, 'https://ror.org/05ph9xy04 Stiftelsen Folke Bernadottes Minnesfond'),
(52395, 'https://ror.org/03mf2sh22', 'en', 1, 'https://ror.org/03mf2sh22 SciFund Challenge'),
(52396, 'https://ror.org/048bdzy56', 'en', 1, 'https://ror.org/048bdzy56 St. Jude Medical Foundation'),
(52397, 'https://ror.org/015kngk22', 'sv', 1, 'https://ror.org/015kngk22 Stiftelsen Clas Groschinskys Minnesfond'),
(52398, 'https://ror.org/00zyvrn45', 'en', 1, 'https://ror.org/00zyvrn45 Scleroderma Research Foundation'),
(52399, 'https://ror.org/001rxm869', 'en', 1, 'https://ror.org/001rxm869 Rosalinde and Arthur Gilbert Foundation'),
(52400, 'https://ror.org/025rvh645', 'sv', 1, 'https://ror.org/025rvh645 Stiftelsen Emilie och Rudolf Gesellius fond'),
(52401, 'https://ror.org/03nbpmv05', 'en', 1, 'https://ror.org/03nbpmv05 Vitalyst Health Foundation'),
(52402, 'https://ror.org/02dmzyv54', 'en', 1, 'https://ror.org/02dmzyv54 Sitka Center for Art and Ecology'),
(52403, 'https://ror.org/05p577g88', 'en', 1, 'https://ror.org/05p577g88 Scoliosis Research Society'),
(52404, 'https://ror.org/0016qk189', 'en', 1, 'https://ror.org/0016qk189 Gifford Foundation'),
(52405, 'https://ror.org/03ek73244', 'en', 1, 'https://ror.org/03ek73244 St Marys Community Foundation'),
(52406, 'https://ror.org/043c78r03', 'en', 1, 'https://ror.org/043c78r03 Rose Community Foundation'),
(52407, 'https://ror.org/00axz6z61', 'en', 1, 'https://ror.org/00axz6z61 St. Paul’s Foundation'),
(52408, 'https://ror.org/0145pgy59', 'en', 1, 'https://ror.org/0145pgy59 Rose Foundation for Communities and the Environment'),
(52409, 'https://ror.org/057dvs720', 'sv', 1, 'https://ror.org/057dvs720 Stiftelsen Erik and Lily Philipsons Minnesfond'),
(52410, 'https://ror.org/025vct142', 'en', 1, 'https://ror.org/025vct142 Skylark Foundation'),
(52411, 'https://ror.org/04qfp7s87', 'en', 1, 'https://ror.org/04qfp7s87 Rosenberg Foundation'),
(52412, 'https://ror.org/04088fk89', 'no_lang_code', 1, 'https://ror.org/04088fk89 Staedtler (Germany)'),
(52413, 'https://ror.org/00x0wct18', 'en', 1, 'https://ror.org/00x0wct18 Roshan Cultural Heritage Institute'),
(52414, 'https://ror.org/0177f9748', 'en', 1, 'https://ror.org/0177f9748 Society for Ambulatory Anesthesia'),
(52415, 'https://ror.org/0049whg19', 'en', 1, 'https://ror.org/0049whg19 Rothschild Caesarea Foundation'),
(52416, 'https://ror.org/04g9my117', 'en', 1, 'https://ror.org/04g9my117 Society for Analytical Chemists of Pittsburgh'),
(52417, 'https://ror.org/04adtqj87', 'en', 1, 'https://ror.org/04adtqj87 T.J. Martell Foundation'),
(52418, 'https://ror.org/02eafbm53', 'sv', 1, 'https://ror.org/02eafbm53 Stiftelsen Oscar och Lili Lamms Minne'),
(52419, 'https://ror.org/05qds0828', 'en', 1, 'https://ror.org/05qds0828 Society for Applied Microbiology'),
(52420, 'https://ror.org/02yj21v41', 'en', 1, 'https://ror.org/02yj21v41 Stark Community Foundation'),
(52421, 'https://ror.org/055de8j75', 'en', 1, 'https://ror.org/055de8j75 Tag Institute for Social Development'),
(52422, 'https://ror.org/05y15e107', 'en', 1, 'https://ror.org/05y15e107 Taiho Kogyo Tribology Research Foundation'),
(52423, 'https://ror.org/00gqt9c14', 'en', 1, 'https://ror.org/00gqt9c14 Starr Foundation'),
(52424, 'https://ror.org/01r8xv865', 'sv', 1, 'https://ror.org/01r8xv865 Stiftelsen Professor Lars Erik Gelins Minnesfond'),
(52425, 'https://ror.org/00q017g63', 'en', 1, 'https://ror.org/00q017g63 Taipei Tzu Chi Hospital å°åŒ—ę…ˆęµŽåŒ»é™¢'),
(52426, 'https://ror.org/00fb4ms10', 'en', 1, 'https://ror.org/00fb4ms10 Promobilia Foundation Stiftelsen Promobilia'),
(52427, 'https://ror.org/05xjcvb83', 'en', 1, 'https://ror.org/05xjcvb83 Society for Industrial and Organizational Psychology'),
(52428, 'https://ror.org/05rxs1s48', 'sv', 1, 'https://ror.org/05rxs1s48 Stiftelsen Samariten'),
(52429, 'https://ror.org/058qzh392', 'en', 1, 'https://ror.org/058qzh392 Tan Kah Kee Foundation'),
(52430, 'https://ror.org/00egtf878', 'en', 1, 'https://ror.org/00egtf878 Society for Psychical Research'),
(52431, 'https://ror.org/0266x3x06', 'en', 1, 'https://ror.org/0266x3x06 Udall Foundation'),
(52432, 'https://ror.org/030jq7570', 'en', 1, 'https://ror.org/030jq7570 Society for Psychotherapy Research'),
(52433, 'https://ror.org/00gc20a07', 'en', 1, 'https://ror.org/00gc20a07 Uehara Memorial Foundation äøŠåŽŸčØ˜åæµč²”å›£'),
(52434, 'https://ror.org/026ryr342', 'en', 1, 'https://ror.org/026ryr342 Shevchenko Foundation'),
(52435, 'https://ror.org/00a1fpp20', 'en', 1, 'https://ror.org/00a1fpp20 HSC Health Care System'),
(52436, 'https://ror.org/01g0h4946', 'en', 1, 'https://ror.org/01g0h4946 Society for Renaissance Studies'),
(52437, 'https://ror.org/02ns75z54', 'en', 1, 'https://ror.org/02ns75z54 Society for Research into Higher Education'),
(52438, 'https://ror.org/01sjvcd08', 'sv', 1, 'https://ror.org/01sjvcd08 Stiftelsen Solstickan'),
(52439, 'https://ror.org/012nfnh03', 'en', 1, 'https://ror.org/012nfnh03 Society for the AnthroĀ­pology of North AmerĀ­ica'),
(52440, 'https://ror.org/05q0skb15', 'en', 1, 'https://ror.org/05q0skb15 Tawani Foundation'),
(52441, 'https://ror.org/04nqfdt43', 'sv', 1, 'https://ror.org/04nqfdt43 Stiftelsen Sunnerdahls Handikappfond'),
(52442, 'https://ror.org/04k88ar18', 'en', 1, 'https://ror.org/04k88ar18 Taylor’s Tale'),
(52443, 'https://ror.org/01x10fr64', 'en', 1, 'https://ror.org/01x10fr64 Team Sanfilippo Foundation'),
(52444, 'https://ror.org/00p3nsd37', 'no_lang_code', 1, 'https://ror.org/00p3nsd37 Ulverscroft (United Kingdom)'),
(52445, 'https://ror.org/02te15m84', 'sv', 1, 'https://ror.org/02te15m84 Stiftelsen Tornspiran'),
(52446, 'https://ror.org/0234pyd94', 'en', 1, 'https://ror.org/0234pyd94 UniHealth Foundation'),
(52447, 'https://ror.org/0370bpy80', 'sv', 1, 'https://ror.org/0370bpy80 Stiftelsen Tysta Skolan'),
(52448, 'https://ror.org/02xzshh88', 'en', 1, 'https://ror.org/02xzshh88 Sterling-Turner Foundation'),
(52449, 'https://ror.org/0528q0t18', 'en', 1, 'https://ror.org/0528q0t18 United Mitochondrial Disease Foundation'),
(52450, 'https://ror.org/03dm55k03', 'en', 1, 'https://ror.org/03dm55k03 A Sister''s Hope'),
(52451, 'https://ror.org/0460p7240', 'en', 1, 'https://ror.org/0460p7240 Species Conservation Foundation Stiftung Artenschutz'),
(52452, 'https://ror.org/014mn3s63', 'en', 1, 'https://ror.org/014mn3s63 United States African Development Foundation'),
(52453, 'https://ror.org/03av2w516', 'en', 1, 'https://ror.org/03av2w516 Technology Academy Finland Tekniikan Akatemia'),
(52454, 'https://ror.org/03vqh1t78', 'en', 1, 'https://ror.org/03vqh1t78 United States Equestrian Federation'),
(52455, 'https://ror.org/03a05n602', 'no_lang_code', 1, 'https://ror.org/03a05n602 Telkom (South Africa)'),
(52456, 'https://ror.org/04e94n214', 'en', 1, 'https://ror.org/04e94n214 3R Research Foundation Stiftung Forschung 3R'),
(52457, 'https://ror.org/03w83pm05', 'en', 1, 'https://ror.org/03w83pm05 United States-Japan Foundation'),
(52458, 'https://ror.org/00tbe9875', 'de', 1, 'https://ror.org/00tbe9875 Stiftung Mercator Schweiz'),
(52459, 'https://ror.org/04g047260', 'no_lang_code', 1, 'https://ror.org/04g047260 Telstra (Australia)'),
(52460, 'https://ror.org/03cfd9m08', 'en', 1, 'https://ror.org/03cfd9m08 Combined Ophthalmic Research Rotterdam'),
(52461, 'https://ror.org/010rd0v86', 'en', 1, 'https://ror.org/010rd0v86 Michael Foundation Stiftung Michael'),
(52462, 'https://ror.org/052azjr18', 'de', 1, 'https://ror.org/052azjr18 Stiftung Oskar Helene Heim'),
(52463, 'https://ror.org/02efzs521', 'en', 1, 'https://ror.org/02efzs521 United Way of Gratiot & Isabella Counties'),
(52464, 'https://ror.org/03yvtv826', 'en', 1, 'https://ror.org/03yvtv826 United Way of Santa Barbara County'),
(52465, 'https://ror.org/02jz7nx66', 'en', 1, 'https://ror.org/02jz7nx66 Stillbirth Foundation'),
(52466, 'https://ror.org/0549g6963', 'nl', 1, 'https://ror.org/0549g6963 Stichting Euregio Maas-Rijn'),
(52467, 'https://ror.org/033x7yd97', 'en', 1, 'https://ror.org/033x7yd97 Stimson Miller Foundation'),
(52468, 'https://ror.org/03r8q5f36', 'en', 1, 'https://ror.org/03r8q5f36 University of Maryland Extension'),
(52469, 'https://ror.org/035q7re19', 'en', 1, 'https://ror.org/035q7re19 Texas Department of Agriculture'),
(52470, 'https://ror.org/05r7ttv75', 'en', 1, 'https://ror.org/05r7ttv75 United Way of Smith County'),
(52471, 'https://ror.org/05ttxxx91', 'en', 1, 'https://ror.org/05ttxxx91 Stony Wold Herbert Fund'),
(52472, 'https://ror.org/05dvmdf20', 'en', 1, 'https://ror.org/05dvmdf20 Stop Cancer'),
(52473, 'https://ror.org/01ffpma77', 'en', 1, 'https://ror.org/01ffpma77 Stop! Children''s Cancer of Palm Beach County'),
(52474, 'https://ror.org/05bgg7k92', 'en', 1, 'https://ror.org/05bgg7k92 Stuart Foundation'),
(52475, 'https://ror.org/008c6se98', 'en', 1, 'https://ror.org/008c6se98 Unity Through Knowledge Fund'),
(52476, 'https://ror.org/004sjsc98', 'en', 1, 'https://ror.org/004sjsc98 Students Supporting Brain Tumor Research'),
(52477, 'https://ror.org/02r08m051', 'de', 1, 'https://ror.org/02r08m051 Vereinigung Analytischer Kinder- und Jugendlichen-Psychotherapeuten'),
(52478, 'https://ror.org/01k8mq954', 'en', 1, 'https://ror.org/01k8mq954 Universal Health Care Foundation of Connecticut'),
(52479, 'https://ror.org/00en0be76', 'en', 1, 'https://ror.org/00en0be76 Sudbury Foundation'),
(52480, 'https://ror.org/04t81kd98', 'en', 1, 'https://ror.org/04t81kd98 Vetiver Network International'),
(52481, 'https://ror.org/00d57b563', 'en', 1, 'https://ror.org/00d57b563 SIL International'),
(52482, 'https://ror.org/024pc0058', 'en', 1, 'https://ror.org/024pc0058 Summerlee Foundation'),
(52483, 'https://ror.org/0242j2724', 'en', 1, 'https://ror.org/0242j2724 Elizabeth Greenshields Foundation'),
(52484, 'https://ror.org/00r6pc512', 'en', 1, 'https://ror.org/00r6pc512 Sun Health Foundation'),
(52485, 'https://ror.org/01w2f0g43', 'en', 1, 'https://ror.org/01w2f0g43 Sunbeam Foundation'),
(52486, 'https://ror.org/00c0pch62', 'en', 1, 'https://ror.org/00c0pch62 Sunflower Foundation'),
(52487, 'https://ror.org/02db0m975', 'en', 1, 'https://ror.org/02db0m975 Sungmo Eye Hospital'),
(52488, 'https://ror.org/010cn0k09', 'sv', 1, 'https://ror.org/010cn0k09 Victoriastiftelsen'),
(52489, 'https://ror.org/02c9pqe95', 'en', 1, 'https://ror.org/02c9pqe95 Vidda Foundation'),
(52490, 'https://ror.org/048c6ht78', 'en', 1, 'https://ror.org/048c6ht78 Vietnam Education Foundation'),
(52491, 'https://ror.org/05sgg0860', 'en', 1, 'https://ror.org/05sgg0860 Finnish Society of Anaesthesiologists Suomen Anestesiologiyhdistys'),
(52492, 'https://ror.org/05yfjtn64', 'en', 1, 'https://ror.org/05yfjtn64 Womens Foundation å©¦å„³åŸŗé‡‘ęœƒęœ‰é™å…¬åø'),
(52493, 'https://ror.org/02k9nmp07', 'en', 1, 'https://ror.org/02k9nmp07 Radiological Society of Finland Suomen Radiologiyhdistys'),
(52494, 'https://ror.org/02sjh4j59', 'en', 1, 'https://ror.org/02sjh4j59 Vilcek Foundation'),
(52495, 'https://ror.org/04rcz6b42', 'en', 1, 'https://ror.org/04rcz6b42 Finnish Society of Sciences and Letters Finska Vetenskaps-Societeten Suomen Tiedeseura'),
(52496, 'https://ror.org/05pzez236', 'da', 1, 'https://ror.org/05pzez236 Ville Heises Legat'),
(52497, 'https://ror.org/03x526f83', 'en', 1, 'https://ror.org/03x526f83 Support Center for Advanced Telecommunications Technology Research Foundation 一貔)ćƒ†ćƒ¬ć‚³ćƒ å…ˆē«ÆęŠ€č”“ē ”ē©¶ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(52498, 'https://ror.org/0225ptr32', 'en', 1, 'https://ror.org/0225ptr32 Surdna Foundation'),
(52499, 'https://ror.org/01t58v577', 'en', 1, 'https://ror.org/01t58v577 Thomas Foundation'),
(52500, 'https://ror.org/04n5x9175', 'en', 1, 'https://ror.org/04n5x9175 Virginia Hodgkins Somers Foundation'),
(52501, 'https://ror.org/02606vr52', 'en', 1, 'https://ror.org/02606vr52 Thomas Wilson Foundation'),
(52502, 'https://ror.org/0009jge67', 'en', 1, 'https://ror.org/0009jge67 Thoracic Surgery Foundation'),
(52503, 'https://ror.org/04y64sc23', 'en', 1, 'https://ror.org/04y64sc23 Susan Thompson Buffett Foundation'),
(52504, 'https://ror.org/008v8ay36', 'en', 1, 'https://ror.org/008v8ay36 Thorsten and Elsa Segerfalk Foundation Torsten och Elsa Segerfalks stiftelse'),
(52505, 'https://ror.org/004vx2m26', 'en', 1, 'https://ror.org/004vx2m26 Vision of Children Foundation'),
(52506, 'https://ror.org/031w1hc71', 'en', 1, 'https://ror.org/031w1hc71 Threshold Foundation'),
(52507, 'https://ror.org/01xa5j591', 'en', 1, 'https://ror.org/01xa5j591 Sustainable Development Technology Canada Technologies du DƩveloppement Durable du Canada'),
(52508, 'https://ror.org/046tc9744', 'da', 1, 'https://ror.org/046tc9744 Svend Andersen Fonden'),
(52509, 'https://ror.org/001ctpj73', 'en', 1, 'https://ror.org/001ctpj73 Voice Foundation'),
(52510, 'https://ror.org/015gb1r92', 'da', 1, 'https://ror.org/015gb1r92 Svend Beck Peter Holm og Vagn Jacobsens Almene Fond'),
(52511, 'https://ror.org/05v34vf11', 'en', 1, 'https://ror.org/05v34vf11 Volvo Environment Prize'),
(52512, 'https://ror.org/051tck365', 'en', 1, 'https://ror.org/051tck365 Svenska Kennelklubben Swedish Kennel Club'),
(52513, 'https://ror.org/030c89r84', 'no_lang_code', 1, 'https://ror.org/030c89r84 Thumbay Group (United Arab Emirates)'),
(52514, 'https://ror.org/016fc4a97', 'en', 1, 'https://ror.org/016fc4a97 University Film and Video Association'),
(52515, 'https://ror.org/05n1rgb70', 'en', 1, 'https://ror.org/05n1rgb70 Volvo Research and Education Foundations'),
(52516, 'https://ror.org/05e6c8204', 'sv', 1, 'https://ror.org/05e6c8204 Svenska Parkinsonstiftelsen'),
(52517, 'https://ror.org/050gcw725', 'en', 1, 'https://ror.org/050gcw725 Telecommunication an Electronics Associaton Tietotekniikan ja Elektroniikan Seura'),
(52518, 'https://ror.org/022jr5m13', 'nl', 1, 'https://ror.org/022jr5m13 VSBfonds'),
(52519, 'https://ror.org/03nqg9919', 'no_lang_code', 1, 'https://ror.org/03nqg9919 Sweden and Martina (Italy)'),
(52520, 'https://ror.org/05n6dzg85', 'en', 1, 'https://ror.org/05n6dzg85 Sverige Amerikastiftelsen Sweden America Foundation'),
(52521, 'https://ror.org/046w6p285', 'en', 1, 'https://ror.org/046w6p285 Swedish Brain Power'),
(52522, 'https://ror.org/03zzjmx92', 'en', 1, 'https://ror.org/03zzjmx92 Tom Coughlin Jay Fund Foundation'),
(52523, 'https://ror.org/001xe7y71', 'en', 1, 'https://ror.org/001xe7y71 Waikato Medical Research Foundation'),
(52524, 'https://ror.org/02mbgxz16', 'en', 1, 'https://ror.org/02mbgxz16 Tommy Fuss Fund'),
(52525, 'https://ror.org/04tepr653', 'no_lang_code', 1, 'https://ror.org/04tepr653 Until There’s A Cure'),
(52526, 'https://ror.org/035a1qp70', 'en', 1, 'https://ror.org/035a1qp70 Tony Elumelu Foundation'),
(52527, 'https://ror.org/003dpyf77', 'en', 1, 'https://ror.org/003dpyf77 Swiss Continence Foundation'),
(52528, 'https://ror.org/05r00b483', 'en', 1, 'https://ror.org/05r00b483 Waksman Foundation for Microbiology'),
(52529, 'https://ror.org/02qmwr629', 'en', 1, 'https://ror.org/02qmwr629 Wallace Genetic Foundation'),
(52530, 'https://ror.org/03b5tag12', 'en', 1, 'https://ror.org/03b5tag12 The Toyota Foundation ćƒˆćƒØć‚æč²”å›£'),
(52531, 'https://ror.org/05539km59', 'en', 1, 'https://ror.org/05539km59 Sylvia and Charles Viertel Charitable Foundation'),
(52532, 'https://ror.org/02z0z7g18', 'en', 1, 'https://ror.org/02z0z7g18 Tracy Jo Wilson Ovarian Cancer Foundation'),
(52533, 'https://ror.org/00eyy9c71', 'en', 1, 'https://ror.org/00eyy9c71 Travis Roy Foundation'),
(52534, 'https://ror.org/00hzk1038', 'en', 1, 'https://ror.org/00hzk1038 Driskill Foundation'),
(52535, 'https://ror.org/046ec5t14', 'en', 1, 'https://ror.org/046ec5t14 Syngenta Foundation for Sustainable Agriculture');
INSERT INTO `rors` VALUES
(52536, 'https://ror.org/05yh4rh25', 'en', 1, 'https://ror.org/05yh4rh25 Walton Family Foundation'),
(52537, 'https://ror.org/03g18fj02', 'en', 1, 'https://ror.org/03g18fj02 T. Boone Pickens Foundation'),
(52538, 'https://ror.org/02e3p0n79', 'en', 1, 'https://ror.org/02e3p0n79 Washington Square Health Foundation'),
(52539, 'https://ror.org/04axzyr33', 'no_lang_code', 1, 'https://ror.org/04axzyr33 Usibelli Coal Mine (United States)'),
(52540, 'https://ror.org/01k2zv986', 'en', 1, 'https://ror.org/01k2zv986 Triangle Community Foundation'),
(52541, 'https://ror.org/02jasgp09', 'en', 1, 'https://ror.org/02jasgp09 Wasie Foundation'),
(52542, 'https://ror.org/041ztcd61', 'en', 1, 'https://ror.org/041ztcd61 Warren Alpert Foundation'),
(52543, 'https://ror.org/01sqscf14', 'en', 1, 'https://ror.org/01sqscf14 William Caspar Graustein Memorial Fund'),
(52544, 'https://ror.org/01mfjs476', 'da', 1, 'https://ror.org/01mfjs476 Trigon Fonden'),
(52545, 'https://ror.org/0118w8d25', 'en', 1, 'https://ror.org/0118w8d25 Wasserman Foundation'),
(52546, 'https://ror.org/02pmyyv54', 'en', 1, 'https://ror.org/02pmyyv54 William G McGowan Charitable Fund'),
(52547, 'https://ror.org/0525q3519', 'en', 1, 'https://ror.org/0525q3519 William K Bowes Jr Foundation'),
(52548, 'https://ror.org/0174xkn11', 'en', 1, 'https://ror.org/0174xkn11 William K. Warren Foundation'),
(52549, 'https://ror.org/0362bde51', 'en', 1, 'https://ror.org/0362bde51 Water Environment and Reuse Foundation'),
(52550, 'https://ror.org/05vea6821', 'en', 1, 'https://ror.org/05vea6821 William P. Wharton Trust'),
(52551, 'https://ror.org/00mfys757', 'en', 1, 'https://ror.org/00mfys757 World Food Prize Foundation'),
(52552, 'https://ror.org/043mk2594', 'sv', 1, 'https://ror.org/043mk2594 Trygg Hansas Forskningsstiftelse'),
(52553, 'https://ror.org/03sqthx21', 'en', 1, 'https://ror.org/03sqthx21 World-India Diabetes Foundation'),
(52554, 'https://ror.org/01jxxh642', 'en', 1, 'https://ror.org/01jxxh642 William T Morris Foundation'),
(52555, 'https://ror.org/02zav4281', 'no_lang_code', 1, 'https://ror.org/02zav4281 V. Kann Rasmussen Foundation'),
(52556, 'https://ror.org/017swdq34', 'en', 1, 'https://ror.org/017swdq34 Wuhan Donghu University ę­¦ę±‰äøœę¹–å­¦é™¢'),
(52557, 'https://ror.org/035669d27', 'en', 1, 'https://ror.org/035669d27 Lishman Health Foundation'),
(52558, 'https://ror.org/019jfhj96', 'en', 1, 'https://ror.org/019jfhj96 Webber Family Foundation'),
(52559, 'https://ror.org/007zhvp17', 'no_lang_code', 1, 'https://ror.org/007zhvp17 Williams (United States)'),
(52560, 'https://ror.org/00ggtz082', 'en', 1, 'https://ror.org/00ggtz082 Val Skinner Foundation'),
(52561, 'https://ror.org/01zzv0338', 'en', 1, 'https://ror.org/01zzv0338 Wuxi Municipal Bureau on Science and Technology ę— é””åø‚ē§‘ęŠ€å±€'),
(52562, 'https://ror.org/04abad481', 'en', 1, 'https://ror.org/04abad481 Webster Groves Nature Study Society'),
(52563, 'https://ror.org/00am0th03', 'en', 1, 'https://ror.org/00am0th03 Wyncote Foundation'),
(52564, 'https://ror.org/04pgeyv17', 'en', 1, 'https://ror.org/04pgeyv17 Weeden Foundation'),
(52565, 'https://ror.org/05nmp3276', 'en', 1, 'https://ror.org/05nmp3276 Vallee Foundation'),
(52566, 'https://ror.org/03py6vn41', 'en', 1, 'https://ror.org/03py6vn41 Wilson Foundation'),
(52567, 'https://ror.org/03zxgcy06', 'en', 1, 'https://ror.org/03zxgcy06 Weitz Family Foundation'),
(52568, 'https://ror.org/05rfpvc37', 'no_lang_code', 1, 'https://ror.org/05rfpvc37 Van Lƶben Sels/RembeRock Foundation'),
(52569, 'https://ror.org/00ypgdj53', 'en', 1, 'https://ror.org/00ypgdj53 Van Wert County Foundation'),
(52570, 'https://ror.org/01wfvz044', 'en', 1, 'https://ror.org/01wfvz044 Winds of Peace Foundation'),
(52571, 'https://ror.org/02rn5dn49', 'en', 1, 'https://ror.org/02rn5dn49 Xi''an Science Technology Bureau č„æå®‰åø‚ē§‘ęŠ€å±€'),
(52572, 'https://ror.org/03xmk1g71', 'en', 1, 'https://ror.org/03xmk1g71 Wender Weis Foundation for Children'),
(52573, 'https://ror.org/059qamr21', 'en', 1, 'https://ror.org/059qamr21 Varkey Foundation'),
(52574, 'https://ror.org/01v5z9j59', 'en', 1, 'https://ror.org/01v5z9j59 Vascular Birthmarks Foundation'),
(52575, 'https://ror.org/01ctc2z33', 'en', 1, 'https://ror.org/01ctc2z33 Wipe Out Kids Cancer'),
(52576, 'https://ror.org/0593r9g81', 'en', 1, 'https://ror.org/0593r9g81 Vegetables New Zealand'),
(52577, 'https://ror.org/05egh1w37', 'no_lang_code', 1, 'https://ror.org/05egh1w37 Yarra Valley Water (Australia)'),
(52578, 'https://ror.org/02kv04939', 'en', 1, 'https://ror.org/02kv04939 Zhengzhou City Science and Technology Bureau éƒ‘å·žåø‚ē§‘ęŠ€å±€'),
(52579, 'https://ror.org/05drp1a22', 'en', 1, 'https://ror.org/05drp1a22 Veolia Environmental Trust'),
(52580, 'https://ror.org/008798434', 'en', 1, 'https://ror.org/008798434 West Central Initiative'),
(52581, 'https://ror.org/022897k65', 'en', 1, 'https://ror.org/022897k65 Vera Bradley Foundation for Breast Cancer'),
(52582, 'https://ror.org/00vppz759', 'en', 1, 'https://ror.org/00vppz759 Westchester Community Foundation'),
(52583, 'https://ror.org/04zhxv661', 'en', 1, 'https://ror.org/04zhxv661 Wisconsin Public Service'),
(52584, 'https://ror.org/03akpdh76', 'de', 1, 'https://ror.org/03akpdh76 ZNS Hannelore Kohl Stiftung'),
(52585, 'https://ror.org/025eayv75', 'en', 1, 'https://ror.org/025eayv75 Islamic Azad University, Firoozkooh Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد ŁŁŠŲ±ŁˆŲ²ŁƒŁˆŁ‡'),
(52586, 'https://ror.org/05pctrr97', 'en', 1, 'https://ror.org/05pctrr97 Wisconsin Turfgrass Association'),
(52587, 'https://ror.org/00mfshe62', 'en', 1, 'https://ror.org/00mfshe62 Wishlist'),
(52588, 'https://ror.org/02ysg4b45', 'en', 1, 'https://ror.org/02ysg4b45 Womens Foundation of Minnesota'),
(52589, 'https://ror.org/00c51ea71', 'en', 1, 'https://ror.org/00c51ea71 Western Australian Genealogical Society'),
(52590, 'https://ror.org/04jmtbm12', 'en', 1, 'https://ror.org/04jmtbm12 Western Surgical Association'),
(52591, 'https://ror.org/05w1ran05', 'en', 1, 'https://ror.org/05w1ran05 Womens Foundation of Southern Arizona'),
(52592, 'https://ror.org/04qd3ka10', 'en', 1, 'https://ror.org/04qd3ka10 Womens Fund of Central Ohio'),
(52593, 'https://ror.org/03ne27j26', 'en', 1, 'https://ror.org/03ne27j26 Westfield Foundation'),
(52594, 'https://ror.org/04swm6c48', 'en', 1, 'https://ror.org/04swm6c48 Z.Smith Reynolds Foundation'),
(52595, 'https://ror.org/03e04kk51', 'en', 1, 'https://ror.org/03e04kk51 Women and Children’s Health Research Institute'),
(52596, 'https://ror.org/0002exf56', 'nl', 1, 'https://ror.org/0002exf56 Wetenschappelijk Onderzoek- en Documentatiecentrum'),
(52597, 'https://ror.org/052gt1g92', 'en', 1, 'https://ror.org/052gt1g92 Womens Fund of Hawaii'),
(52598, 'https://ror.org/04ta9pt38', 'en', 1, 'https://ror.org/04ta9pt38 Women''s Foundation of Colorado'),
(52599, 'https://ror.org/05ee8pt56', 'en', 1, 'https://ror.org/05ee8pt56 Whiteman Foundation'),
(52600, 'https://ror.org/02z857927', 'en', 1, 'https://ror.org/02z857927 Womens Sports Foundation'),
(52601, 'https://ror.org/00mcgvm89', 'en', 1, 'https://ror.org/00mcgvm89 Wildlife Conservation Society Argentina'),
(52602, 'https://ror.org/00jzne873', 'en', 1, 'https://ror.org/00jzne873 Whitley Fund for Nature'),
(52603, 'https://ror.org/01yd3n286', 'en', 1, 'https://ror.org/01yd3n286 Wildlife Forever'),
(52604, 'https://ror.org/03av9yr88', 'en', 1, 'https://ror.org/03av9yr88 Whitley Wildlife Conservation Trust'),
(52605, 'https://ror.org/045mb3x22', 'en', 1, 'https://ror.org/045mb3x22 Woodruff Foundation'),
(52606, 'https://ror.org/01w3ear51', 'en', 1, 'https://ror.org/01w3ear51 Woods Fund of Chicago'),
(52607, 'https://ror.org/053abxt44', 'en', 1, 'https://ror.org/053abxt44 Willard L. Eccles Charitable Foundation'),
(52608, 'https://ror.org/052m56d38', 'en', 1, 'https://ror.org/052m56d38 Whaleman Foundation'),
(52609, 'https://ror.org/05mh4bk89', 'en', 1, 'https://ror.org/05mh4bk89 Whole Systems Foundation'),
(52610, 'https://ror.org/02cbxva55', 'en', 1, 'https://ror.org/02cbxva55 Wieboldt Foundation'),
(52611, 'https://ror.org/013gv6q66', 'en', 1, 'https://ror.org/013gv6q66 WHAS Crusade for Children'),
(52612, 'https://ror.org/0184jv876', 'no_lang_code', 1, 'https://ror.org/0184jv876 Johnson Controls (Germany)'),
(52613, 'https://ror.org/014wt7r80', 'en', 1, 'https://ror.org/014wt7r80 IBM Research - India'),
(52614, 'https://ror.org/005w8dd04', 'en', 1, 'https://ror.org/005w8dd04 IBM Research - Almaden'),
(52615, 'https://ror.org/05gjbbg60', 'en', 1, 'https://ror.org/05gjbbg60 IBM Research - Austin'),
(52616, 'https://ror.org/027r3nx49', 'en', 1, 'https://ror.org/027r3nx49 IBM Research - Australia'),
(52617, 'https://ror.org/01fxqdx25', 'en', 1, 'https://ror.org/01fxqdx25 IBM Research - Brazil'),
(52618, 'https://ror.org/05c0m9m16', 'en', 1, 'https://ror.org/05c0m9m16 IBM Research - Africa'),
(52619, 'https://ror.org/00rn0m335', 'no_lang_code', 1, 'https://ror.org/00rn0m335 Alibaba Group (United States)'),
(52620, 'https://ror.org/05vv53n36', 'no_lang_code', 1, 'https://ror.org/05vv53n36 AGCO (Germany)'),
(52621, 'https://ror.org/02krcbc65', 'no_lang_code', 1, 'https://ror.org/02krcbc65 ABB (Japan)'),
(52622, 'https://ror.org/03frwhf70', 'no_lang_code', 1, 'https://ror.org/03frwhf70 AGCO (France)'),
(52623, 'https://ror.org/02bfj0n71', 'no_lang_code', 1, 'https://ror.org/02bfj0n71 Abbott (Ireland)'),
(52624, 'https://ror.org/01ymvpb42', 'no_lang_code', 1, 'https://ror.org/01ymvpb42 Honeywell (France)'),
(52625, 'https://ror.org/0579kbh86', 'no_lang_code', 1, 'https://ror.org/0579kbh86 AkzoNobel (United States)'),
(52626, 'https://ror.org/011b3r412', 'no_lang_code', 1, 'https://ror.org/011b3r412 Adidas (Netherlands)'),
(52627, 'https://ror.org/03p05j480', 'no_lang_code', 1, 'https://ror.org/03p05j480 Andritz (United States)'),
(52628, 'https://ror.org/00pgwrm68', 'no_lang_code', 1, 'https://ror.org/00pgwrm68 Alpha and Omega Semiconductor (United States)'),
(52629, 'https://ror.org/04s6a9w47', 'no_lang_code', 1, 'https://ror.org/04s6a9w47 Newell Brands (France)'),
(52630, 'https://ror.org/045cwqd08', 'no_lang_code', 1, 'https://ror.org/045cwqd08 Albemarle (Netherlands)'),
(52631, 'https://ror.org/03j353w33', 'no_lang_code', 1, 'https://ror.org/03j353w33 Berry (United States)'),
(52632, 'https://ror.org/016kx7a84', 'no_lang_code', 1, 'https://ror.org/016kx7a84 Ballard Power Systems (Germany)'),
(52633, 'https://ror.org/02prt1r25', 'no_lang_code', 1, 'https://ror.org/02prt1r25 Amdocs (Cyprus)'),
(52634, 'https://ror.org/007q1v885', 'no_lang_code', 1, 'https://ror.org/007q1v885 Schneider Electric (Denmark)'),
(52635, 'https://ror.org/03ms9ra30', 'no_lang_code', 1, 'https://ror.org/03ms9ra30 Alere (Switzerland)'),
(52636, 'https://ror.org/00v9m1060', 'no_lang_code', 1, 'https://ror.org/00v9m1060 Robert Bosch (France)'),
(52637, 'https://ror.org/057aydj06', 'no_lang_code', 1, 'https://ror.org/057aydj06 Robert Bosch (Netherlands)'),
(52638, 'https://ror.org/02m0v4a06', 'no_lang_code', 1, 'https://ror.org/02m0v4a06 Atos (United States)'),
(52639, 'https://ror.org/01rgj1337', 'no_lang_code', 1, 'https://ror.org/01rgj1337 BIC (United States)'),
(52640, 'https://ror.org/01jk97k74', 'no_lang_code', 1, 'https://ror.org/01jk97k74 BASF (China)'),
(52641, 'https://ror.org/00yxram96', 'no_lang_code', 1, 'https://ror.org/00yxram96 Bracco (Netherlands)'),
(52642, 'https://ror.org/02jqm1g69', 'no_lang_code', 1, 'https://ror.org/02jqm1g69 Biotronik (Switzerland)'),
(52643, 'https://ror.org/000nqjq74', 'no_lang_code', 1, 'https://ror.org/000nqjq74 ASM (Japan)'),
(52644, 'https://ror.org/040h0fj31', 'no_lang_code', 1, 'https://ror.org/040h0fj31 AstenJohnson (United States)'),
(52645, 'https://ror.org/01dy84y11', 'no_lang_code', 1, 'https://ror.org/01dy84y11 Atlas Copco (Sweden)'),
(52646, 'https://ror.org/04hww2965', 'no_lang_code', 1, 'https://ror.org/04hww2965 Atlas Copco (Belgium)'),
(52647, 'https://ror.org/04y2cjj38', 'no_lang_code', 1, 'https://ror.org/04y2cjj38 Amer Sports (Austria)'),
(52648, 'https://ror.org/04d8f4804', 'no_lang_code', 1, 'https://ror.org/04d8f4804 HeidelbergCement (United States)'),
(52649, 'https://ror.org/000bmd472', 'no_lang_code', 1, 'https://ror.org/000bmd472 Kuraray (United States)'),
(52650, 'https://ror.org/016nn9d26', 'no_lang_code', 1, 'https://ror.org/016nn9d26 Becton Dickinson (France)'),
(52651, 'https://ror.org/05spb8741', 'no_lang_code', 1, 'https://ror.org/05spb8741 Oclaro (United States)'),
(52652, 'https://ror.org/04hqnrz12', 'no_lang_code', 1, 'https://ror.org/04hqnrz12 Bruker (Switzerland)'),
(52653, 'https://ror.org/00pe39y85', 'no_lang_code', 1, 'https://ror.org/00pe39y85 Bruker (France)'),
(52654, 'https://ror.org/03bce7633', 'no_lang_code', 1, 'https://ror.org/03bce7633 Metso (United States)'),
(52655, 'https://ror.org/01kcjb027', 'no_lang_code', 1, 'https://ror.org/01kcjb027 Avid (United States)'),
(52656, 'https://ror.org/0198yrw13', 'no_lang_code', 1, 'https://ror.org/0198yrw13 Boehringer Ingelheim (Mexico)'),
(52657, 'https://ror.org/01tnj0473', 'no_lang_code', 1, 'https://ror.org/01tnj0473 Caterpillar (Switzerland)'),
(52658, 'https://ror.org/02jkzvy92', 'no_lang_code', 1, 'https://ror.org/02jkzvy92 Continental (Canada)'),
(52659, 'https://ror.org/024mety47', 'no_lang_code', 1, 'https://ror.org/024mety47 Entrust Datacard (United States)'),
(52660, 'https://ror.org/002mxea17', 'no_lang_code', 1, 'https://ror.org/002mxea17 Dean Foods (United States)'),
(52661, 'https://ror.org/04j971w37', 'no_lang_code', 1, 'https://ror.org/04j971w37 Cyclacel Pharmaceuticals (United Kingdom)'),
(52662, 'https://ror.org/03ceayq64', 'no_lang_code', 1, 'https://ror.org/03ceayq64 Rheinmetall (Switzerland)'),
(52663, 'https://ror.org/01p9w4124', 'no_lang_code', 1, 'https://ror.org/01p9w4124 Milacron (United States)'),
(52664, 'https://ror.org/04ar4b407', 'no_lang_code', 1, 'https://ror.org/04ar4b407 Koenig & Bauer (Switzerland)'),
(52665, 'https://ror.org/0414r2h69', 'no_lang_code', 1, 'https://ror.org/0414r2h69 CoorsTek (Japan)'),
(52666, 'https://ror.org/04vppzx17', 'no_lang_code', 1, 'https://ror.org/04vppzx17 Conversant (Luxembourg)'),
(52667, 'https://ror.org/03hccqd50', 'no_lang_code', 1, 'https://ror.org/03hccqd50 Makita (Germany)'),
(52668, 'https://ror.org/0282m9c08', 'no_lang_code', 1, 'https://ror.org/0282m9c08 Kion Group (United States)'),
(52669, 'https://ror.org/02w314k38', 'no_lang_code', 1, 'https://ror.org/02w314k38 Denso (United States)'),
(52670, 'https://ror.org/03spzq317', 'no_lang_code', 1, 'https://ror.org/03spzq317 Ferring Pharmaceuticals (Netherlands)'),
(52671, 'https://ror.org/0281q7a54', 'no_lang_code', 1, 'https://ror.org/0281q7a54 Gestamp (Germany)'),
(52672, 'https://ror.org/011kvxd26', 'no_lang_code', 1, 'https://ror.org/011kvxd26 Doosan (South Korea) 두산그룹'),
(52673, 'https://ror.org/01wjt3437', 'no_lang_code', 1, 'https://ror.org/01wjt3437 Federal Mogul (Belgium)'),
(52674, 'https://ror.org/010pb5v16', 'no_lang_code', 1, 'https://ror.org/010pb5v16 Rockwool International (Germany)'),
(52675, 'https://ror.org/05x7k6a83', 'no_lang_code', 1, 'https://ror.org/05x7k6a83 Dr. Reddy''s Laboratories (United States)'),
(52676, 'https://ror.org/0401v0x80', 'no_lang_code', 1, 'https://ror.org/0401v0x80 DrƤger (United States)'),
(52677, 'https://ror.org/03re7dt17', 'no_lang_code', 1, 'https://ror.org/03re7dt17 Elopak (Switzerland)'),
(52678, 'https://ror.org/01g7nky19', 'no_lang_code', 1, 'https://ror.org/01g7nky19 E Ink (Taiwan)'),
(52679, 'https://ror.org/00bg52247', 'no_lang_code', 1, 'https://ror.org/00bg52247 Furukawa Electric (United States)'),
(52680, 'https://ror.org/0507jvj85', 'no_lang_code', 1, 'https://ror.org/0507jvj85 GAF (United States)'),
(52681, 'https://ror.org/014tew554', 'no_lang_code', 1, 'https://ror.org/014tew554 Garmin (United Kingdom)'),
(52682, 'https://ror.org/05k25vk24', 'no_lang_code', 1, 'https://ror.org/05k25vk24 Saudi Arabia Basic Industries (United States)'),
(52683, 'https://ror.org/02hyvpg31', 'no_lang_code', 1, 'https://ror.org/02hyvpg31 Foxconn (Cayman Islands)'),
(52684, 'https://ror.org/03jjhm649', 'no_lang_code', 1, 'https://ror.org/03jjhm649 Expro (United Kingdom)'),
(52685, 'https://ror.org/0270n9q14', 'no_lang_code', 1, 'https://ror.org/0270n9q14 Garmin (Switzerland)'),
(52686, 'https://ror.org/04rcgpb63', 'no_lang_code', 1, 'https://ror.org/04rcgpb63 Procter & Gamble (Canada)'),
(52687, 'https://ror.org/0492qzy66', 'no_lang_code', 1, 'https://ror.org/0492qzy66 Stanley Black & Decker (France)'),
(52688, 'https://ror.org/00xvxdy42', 'no_lang_code', 1, 'https://ror.org/00xvxdy42 Acer (United States)'),
(52689, 'https://ror.org/03g2a6c32', 'no_lang_code', 1, 'https://ror.org/03g2a6c32 General Electric (Japan)'),
(52690, 'https://ror.org/04tvj9g97', 'no_lang_code', 1, 'https://ror.org/04tvj9g97 GKN (France)'),
(52691, 'https://ror.org/045qqby88', 'no_lang_code', 1, 'https://ror.org/045qqby88 ON Semiconductor (South Korea)'),
(52692, 'https://ror.org/03bw04561', 'no_lang_code', 1, 'https://ror.org/03bw04561 Gleason (United States)'),
(52693, 'https://ror.org/02qz5d088', 'no_lang_code', 1, 'https://ror.org/02qz5d088 Heraeus (Belgium)'),
(52694, 'https://ror.org/024x5f906', 'no_lang_code', 1, 'https://ror.org/024x5f906 Hexcel (United States)'),
(52695, 'https://ror.org/05kcspq23', 'no_lang_code', 1, 'https://ror.org/05kcspq23 Belden (Germany)'),
(52696, 'https://ror.org/01dh19j96', 'no_lang_code', 1, 'https://ror.org/01dh19j96 Goss International (France)'),
(52697, 'https://ror.org/057040g82', 'no_lang_code', 1, 'https://ror.org/057040g82 Semtech (Canada)'),
(52698, 'https://ror.org/03fkhh366', 'no_lang_code', 1, 'https://ror.org/03fkhh366 Hitachi (Netherlands)'),
(52699, 'https://ror.org/014t9bz90', 'no_lang_code', 1, 'https://ror.org/014t9bz90 Techtronic Industries (United Kingdom)'),
(52700, 'https://ror.org/05j3y0344', 'no_lang_code', 1, 'https://ror.org/05j3y0344 Koch Industries (France)'),
(52701, 'https://ror.org/01mvxm016', 'no_lang_code', 1, 'https://ror.org/01mvxm016 Hottinger Baldwin Messtechnik (Germany)'),
(52702, 'https://ror.org/05gaz1x25', 'no_lang_code', 1, 'https://ror.org/05gaz1x25 Hottinger Baldwin Messtechnik (United States)'),
(52703, 'https://ror.org/02kqmq412', 'no_lang_code', 1, 'https://ror.org/02kqmq412 Hitachi (South Korea) ķžˆķƒ€ģ¹˜'),
(52704, 'https://ror.org/01ftnmh36', 'no_lang_code', 1, 'https://ror.org/01ftnmh36 Gretsch-Unitas (Germany)'),
(52705, 'https://ror.org/02hbm4s94', 'no_lang_code', 1, 'https://ror.org/02hbm4s94 Dover (France)'),
(52706, 'https://ror.org/05dp2c867', 'no_lang_code', 1, 'https://ror.org/05dp2c867 Vale (United Kingdom)'),
(52707, 'https://ror.org/04s6h1250', 'no_lang_code', 1, 'https://ror.org/04s6h1250 JDA Software (United States)'),
(52708, 'https://ror.org/043xc2b47', 'no_lang_code', 1, 'https://ror.org/043xc2b47 Foxconn (United States)'),
(52709, 'https://ror.org/04wwsbd59', 'en', 1, 'https://ror.org/04wwsbd59 ITRI International'),
(52710, 'https://ror.org/01yxf2e18', 'no_lang_code', 1, 'https://ror.org/01yxf2e18 Honeywell (Netherlands)'),
(52711, 'https://ror.org/05av0zp13', 'no_lang_code', 1, 'https://ror.org/05av0zp13 Honeywell (Switzerland)'),
(52712, 'https://ror.org/00bps5g02', 'no_lang_code', 1, 'https://ror.org/00bps5g02 Husky (Luxembourg)'),
(52713, 'https://ror.org/02vff8922', 'no_lang_code', 1, 'https://ror.org/02vff8922 Ahlstrom-Munksjƶ (United States)'),
(52714, 'https://ror.org/01mz6aw81', 'no_lang_code', 1, 'https://ror.org/01mz6aw81 E Ink (South Korea)'),
(52715, 'https://ror.org/04k1dvq14', 'no_lang_code', 1, 'https://ror.org/04k1dvq14 INFICON (Switzerland)'),
(52716, 'https://ror.org/003p0bk22', 'no_lang_code', 1, 'https://ror.org/003p0bk22 INFICON (Germany)'),
(52717, 'https://ror.org/04z0qye94', 'no_lang_code', 1, 'https://ror.org/04z0qye94 Johnson & Johnson (Canada)'),
(52718, 'https://ror.org/04mmbzv77', 'no_lang_code', 1, 'https://ror.org/04mmbzv77 Infineum (United States)'),
(52719, 'https://ror.org/03826h192', 'no_lang_code', 1, 'https://ror.org/03826h192 Kao Corporation (Spain)'),
(52720, 'https://ror.org/02wakr002', 'no_lang_code', 1, 'https://ror.org/02wakr002 Johnson Controls (France)'),
(52721, 'https://ror.org/03hdb6676', 'no_lang_code', 1, 'https://ror.org/03hdb6676 Hydrogenics (Canada)'),
(52722, 'https://ror.org/02za67k40', 'no_lang_code', 1, 'https://ror.org/02za67k40 InnoLux (China)'),
(52723, 'https://ror.org/00qajw440', 'no_lang_code', 1, 'https://ror.org/00qajw440 SK Group (United States)'),
(52724, 'https://ror.org/047ajv266', 'no_lang_code', 1, 'https://ror.org/047ajv266 Illinois Tool Works (France)'),
(52725, 'https://ror.org/02b4eje67', 'no_lang_code', 1, 'https://ror.org/02b4eje67 Illinois Tool Works (United Kingdom)'),
(52726, 'https://ror.org/01g1xae87', 'no_lang_code', 1, 'https://ror.org/01g1xae87 KBR (United States)'),
(52727, 'https://ror.org/02ncc5r18', 'no_lang_code', 1, 'https://ror.org/02ncc5r18 Mondelēz International (Germany)'),
(52728, 'https://ror.org/04n3fbh55', 'no_lang_code', 1, 'https://ror.org/04n3fbh55 JTEKT (France)'),
(52729, 'https://ror.org/02xc43e34', 'no_lang_code', 1, 'https://ror.org/02xc43e34 John Deere (Germany)'),
(52730, 'https://ror.org/02zy2ka61', 'no_lang_code', 1, 'https://ror.org/02zy2ka61 Kodak (Germany)'),
(52731, 'https://ror.org/03wrvmn80', 'no_lang_code', 1, 'https://ror.org/03wrvmn80 Kodak (France)'),
(52732, 'https://ror.org/00cqgv790', 'no_lang_code', 1, 'https://ror.org/00cqgv790 Kohler (United Kingdom)'),
(52733, 'https://ror.org/01s1v1s13', 'no_lang_code', 1, 'https://ror.org/01s1v1s13 Kuraray (Germany)'),
(52734, 'https://ror.org/05cetd543', 'no_lang_code', 1, 'https://ror.org/05cetd543 Konami (United States)'),
(52735, 'https://ror.org/0133m4g32', 'no_lang_code', 1, 'https://ror.org/0133m4g32 Nidec (France)'),
(52736, 'https://ror.org/00476rc02', 'no_lang_code', 1, 'https://ror.org/00476rc02 Kone (Switzerland)'),
(52737, 'https://ror.org/03zv4kd57', 'no_lang_code', 1, 'https://ror.org/03zv4kd57 Konica Minolta (United States)'),
(52738, 'https://ror.org/02bskft61', 'no_lang_code', 1, 'https://ror.org/02bskft61 Atotech (United States)'),
(52739, 'https://ror.org/051perd82', 'no_lang_code', 1, 'https://ror.org/051perd82 LGL Electronics (Italy)'),
(52740, 'https://ror.org/059nmw410', 'no_lang_code', 1, 'https://ror.org/059nmw410 LafargeHolcim (France)'),
(52741, 'https://ror.org/05j3vdc31', 'no_lang_code', 1, 'https://ror.org/05j3vdc31 Marel (United States)'),
(52742, 'https://ror.org/0163qy924', 'no_lang_code', 1, 'https://ror.org/0163qy924 Newell Brands (Germany)'),
(52743, 'https://ror.org/05kks4d25', 'no_lang_code', 1, 'https://ror.org/05kks4d25 Bayer (India)'),
(52744, 'https://ror.org/04fhmmg24', 'no_lang_code', 1, 'https://ror.org/04fhmmg24 Medtronic (Luxembourg)'),
(52745, 'https://ror.org/01484hw40', 'no_lang_code', 1, 'https://ror.org/01484hw40 Marvell (Israel)'),
(52746, 'https://ror.org/02krq1637', 'no_lang_code', 1, 'https://ror.org/02krq1637 Parker Hannifin (France)'),
(52747, 'https://ror.org/02sdrd464', 'no_lang_code', 1, 'https://ror.org/02sdrd464 Nidec (United States)'),
(52748, 'https://ror.org/03wfqxa90', 'no_lang_code', 1, 'https://ror.org/03wfqxa90 MKS Instruments (Japan)'),
(52749, 'https://ror.org/001z7yr93', 'no_lang_code', 1, 'https://ror.org/001z7yr93 Imagination Technologies (United States)'),
(52750, 'https://ror.org/01tccxd76', 'no_lang_code', 1, 'https://ror.org/01tccxd76 AGCO (United Kingdom)'),
(52751, 'https://ror.org/021wep716', 'no_lang_code', 1, 'https://ror.org/021wep716 AGCO (Netherlands)'),
(52752, 'https://ror.org/00w6hp096', 'no_lang_code', 1, 'https://ror.org/00w6hp096 Bausch Health (France)'),
(52753, 'https://ror.org/04z9kpd59', 'no_lang_code', 1, 'https://ror.org/04z9kpd59 Metso (Sweden)'),
(52754, 'https://ror.org/05xvgy636', 'no_lang_code', 1, 'https://ror.org/05xvgy636 MediaTek (China) čÆē™¼ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(52755, 'https://ror.org/0280y9h11', 'no_lang_code', 1, 'https://ror.org/0280y9h11 Nikon (United States)'),
(52756, 'https://ror.org/01p5m7j86', 'no_lang_code', 1, 'https://ror.org/01p5m7j86 Quadient (United Kingdom)'),
(52757, 'https://ror.org/01vxsq455', 'no_lang_code', 1, 'https://ror.org/01vxsq455 Quadient (Netherlands)'),
(52758, 'https://ror.org/04e55pr56', 'no_lang_code', 1, 'https://ror.org/04e55pr56 GEA Group (Denmark)'),
(52759, 'https://ror.org/02m7dbt89', 'no_lang_code', 1, 'https://ror.org/02m7dbt89 Danaher (Switzerland)'),
(52760, 'https://ror.org/00r37e745', 'no_lang_code', 1, 'https://ror.org/00r37e745 Terumo (United States)'),
(52761, 'https://ror.org/0414wmq03', 'no_lang_code', 1, 'https://ror.org/0414wmq03 Red Hat (Israel)'),
(52762, 'https://ror.org/04w3ts152', 'no_lang_code', 1, 'https://ror.org/04w3ts152 Adidas (United Kingdom)'),
(52763, 'https://ror.org/00d3r7025', 'no_lang_code', 1, 'https://ror.org/00d3r7025 RHI Magnesita (Austria)'),
(52764, 'https://ror.org/013j55h69', 'no_lang_code', 1, 'https://ror.org/013j55h69 Rehau (France)'),
(52765, 'https://ror.org/01p1t0k52', 'no_lang_code', 1, 'https://ror.org/01p1t0k52 Novo Nordisk (Switzerland)'),
(52766, 'https://ror.org/014775w70', 'no_lang_code', 1, 'https://ror.org/014775w70 Renesas Electronics (United States)'),
(52767, 'https://ror.org/027qba521', 'no_lang_code', 1, 'https://ror.org/027qba521 NSK (United States)'),
(52768, 'https://ror.org/0571c2151', 'no_lang_code', 1, 'https://ror.org/0571c2151 P-D Refractories (Germany)'),
(52769, 'https://ror.org/00gjtdf30', 'no_lang_code', 1, 'https://ror.org/00gjtdf30 Oclaro (Japan)'),
(52770, 'https://ror.org/02w60ja15', 'no_lang_code', 1, 'https://ror.org/02w60ja15 Ball (Sweden)'),
(52771, 'https://ror.org/031rbfd73', 'no_lang_code', 1, 'https://ror.org/031rbfd73 Ball (France)'),
(52772, 'https://ror.org/03n9g7g16', 'no_lang_code', 1, 'https://ror.org/03n9g7g16 SPX Corporation (United Kingdom)'),
(52773, 'https://ror.org/05amv9q86', 'no_lang_code', 1, 'https://ror.org/05amv9q86 Kudelski (United States)'),
(52774, 'https://ror.org/05h3vzz10', 'no_lang_code', 1, 'https://ror.org/05h3vzz10 Solid (United States)'),
(52775, 'https://ror.org/0132ebr60', 'no_lang_code', 1, 'https://ror.org/0132ebr60 Toyota Industries (United States)'),
(52776, 'https://ror.org/01ry0hm85', 'no_lang_code', 1, 'https://ror.org/01ry0hm85 RealNetworks (United States)'),
(52777, 'https://ror.org/03ptky016', 'no_lang_code', 1, 'https://ror.org/03ptky016 Legrand (United States)'),
(52778, 'https://ror.org/02wdpar77', 'no_lang_code', 1, 'https://ror.org/02wdpar77 Rockwell Automation (Switzerland)'),
(52779, 'https://ror.org/00ej6x457', 'no_lang_code', 1, 'https://ror.org/00ej6x457 Emerson (Sweden)'),
(52780, 'https://ror.org/009vrtv70', 'no_lang_code', 1, 'https://ror.org/009vrtv70 Aptar (Germany)'),
(52781, 'https://ror.org/01vp4kx90', 'no_lang_code', 1, 'https://ror.org/01vp4kx90 Pitney Bowes (France)'),
(52782, 'https://ror.org/0181yrz32', 'no_lang_code', 1, 'https://ror.org/0181yrz32 Croda (France)'),
(52783, 'https://ror.org/04jwy1234', 'no_lang_code', 1, 'https://ror.org/04jwy1234 Shell (Japan)'),
(52784, 'https://ror.org/0382m9t69', 'no_lang_code', 1, 'https://ror.org/0382m9t69 Sidel (Italy)'),
(52785, 'https://ror.org/029jv7h91', 'no_lang_code', 1, 'https://ror.org/029jv7h91 Huntsman (Germany)'),
(52786, 'https://ror.org/03zzs9b68', 'no_lang_code', 1, 'https://ror.org/03zzs9b68 Nippon Sheet Glass (Italy)'),
(52787, 'https://ror.org/01zxw4w85', 'no_lang_code', 1, 'https://ror.org/01zxw4w85 Valmet (Sweden)'),
(52788, 'https://ror.org/017fqk185', 'no_lang_code', 1, 'https://ror.org/017fqk185 Microsoft (Ireland)'),
(52789, 'https://ror.org/0139mkv47', 'no_lang_code', 1, 'https://ror.org/0139mkv47 Solvay (United Kingdom)'),
(52790, 'https://ror.org/04n2d2p10', 'no_lang_code', 1, 'https://ror.org/04n2d2p10 Amer Sports (Finland)'),
(52791, 'https://ror.org/02083pn15', 'no_lang_code', 1, 'https://ror.org/02083pn15 Northrop Grumman (France)'),
(52792, 'https://ror.org/017afst72', 'no_lang_code', 1, 'https://ror.org/017afst72 Blackberry (United States)'),
(52793, 'https://ror.org/04q5m8a14', 'no_lang_code', 1, 'https://ror.org/04q5m8a14 Tecan (Switzerland)'),
(52794, 'https://ror.org/049yzrn11', 'no_lang_code', 1, 'https://ror.org/049yzrn11 Technology Partnership (United Kingdom)'),
(52795, 'https://ror.org/00ney4p16', 'no_lang_code', 1, 'https://ror.org/00ney4p16 Techtronic Industries (China)'),
(52796, 'https://ror.org/01gswc231', 'no_lang_code', 1, 'https://ror.org/01gswc231 Synthon (Netherlands)'),
(52797, 'https://ror.org/0222m3049', 'no_lang_code', 1, 'https://ror.org/0222m3049 RHI Magnesita (Switzerland)'),
(52798, 'https://ror.org/01bxp3g94', 'no_lang_code', 1, 'https://ror.org/01bxp3g94 ON Semiconductor (Taiwan)'),
(52799, 'https://ror.org/04zeqh491', 'no_lang_code', 1, 'https://ror.org/04zeqh491 Amphenol (France)'),
(52800, 'https://ror.org/01a8wgs29', 'no_lang_code', 1, 'https://ror.org/01a8wgs29 Straumann (Switzerland)'),
(52801, 'https://ror.org/028a35p56', 'no_lang_code', 1, 'https://ror.org/028a35p56 Strix (United Kingdom)'),
(52802, 'https://ror.org/0012b2h06', 'no_lang_code', 1, 'https://ror.org/0012b2h06 ON Semiconductor (Japan)'),
(52803, 'https://ror.org/05rxrqv32', 'no_lang_code', 1, 'https://ror.org/05rxrqv32 Stryker (France)'),
(52804, 'https://ror.org/02kh7ez55', 'no_lang_code', 1, 'https://ror.org/02kh7ez55 Thomson Reuters (Switzerland)'),
(52805, 'https://ror.org/02c23zs54', 'no_lang_code', 1, 'https://ror.org/02c23zs54 Adidas (Canada)'),
(52806, 'https://ror.org/02kpcqm42', 'no_lang_code', 1, 'https://ror.org/02kpcqm42 Tesla (United States)'),
(52807, 'https://ror.org/0018whg19', 'no_lang_code', 1, 'https://ror.org/0018whg19 Texas Instruments (France)'),
(52808, 'https://ror.org/03msrn925', 'no_lang_code', 1, 'https://ror.org/03msrn925 Sumitomo Electric Industries (United States)'),
(52809, 'https://ror.org/03ytgj055', 'no_lang_code', 1, 'https://ror.org/03ytgj055 Cisco Systems (Norway)'),
(52810, 'https://ror.org/0015kev18', 'no_lang_code', 1, 'https://ror.org/0015kev18 Juki (United States)'),
(52811, 'https://ror.org/03517qf88', 'no_lang_code', 1, 'https://ror.org/03517qf88 Michelin (United States)'),
(52812, 'https://ror.org/00vrhw316', 'no_lang_code', 1, 'https://ror.org/00vrhw316 United Microelectronics (United States)'),
(52813, 'https://ror.org/02btcwe37', 'no_lang_code', 1, 'https://ror.org/02btcwe37 Vivendi (United States)'),
(52814, 'https://ror.org/05p0pbv75', 'no_lang_code', 1, 'https://ror.org/05p0pbv75 Toyota Motor Corporation (Switzerland)'),
(52815, 'https://ror.org/01ydfc370', 'no_lang_code', 1, 'https://ror.org/01ydfc370 Schlumberger (British Virgin Islands)'),
(52816, 'https://ror.org/0481z9839', 'no_lang_code', 1, 'https://ror.org/0481z9839 TE Connectivity (Japan)'),
(52817, 'https://ror.org/031n13782', 'no_lang_code', 1, 'https://ror.org/031n13782 Vaillant (United States)'),
(52818, 'https://ror.org/01y24f494', 'no_lang_code', 1, 'https://ror.org/01y24f494 Woodward (United States)'),
(52819, 'https://ror.org/023bna168', 'no_lang_code', 1, 'https://ror.org/023bna168 Whirlpool (Netherlands)'),
(52820, 'https://ror.org/00ba8tz47', 'no_lang_code', 1, 'https://ror.org/00ba8tz47 Würth (Germany)'),
(52821, 'https://ror.org/01169zb17', 'no_lang_code', 1, 'https://ror.org/01169zb17 Kennametal (Germany)'),
(52822, 'https://ror.org/055c6bd74', 'no_lang_code', 1, 'https://ror.org/055c6bd74 Veeco (United States)'),
(52823, 'https://ror.org/04tfkjn57', 'no_lang_code', 1, 'https://ror.org/04tfkjn57 Wacker (United States)'),
(52824, 'https://ror.org/030bh9196', 'no_lang_code', 1, 'https://ror.org/030bh9196 X-Fab (Germany)'),
(52825, 'https://ror.org/01hc8k527', 'no_lang_code', 1, 'https://ror.org/01hc8k527 Yazaki (United States)'),
(52826, 'https://ror.org/04aqd7928', 'no_lang_code', 1, 'https://ror.org/04aqd7928 Amer Sports (United States)'),
(52827, 'https://ror.org/03eydf751', 'no_lang_code', 1, 'https://ror.org/03eydf751 TechnipFMC (Germany)'),
(52828, 'https://ror.org/00af5ps59', 'no_lang_code', 1, 'https://ror.org/00af5ps59 Züblin (United States)'),
(52829, 'https://ror.org/048frez22', 'no_lang_code', 1, 'https://ror.org/048frez22 Amarin (United Kingdom)'),
(52830, 'https://ror.org/05y8ktr97', 'no_lang_code', 1, 'https://ror.org/05y8ktr97 B. Braun (France)'),
(52831, 'https://ror.org/03h13e556', 'no_lang_code', 1, 'https://ror.org/03h13e556 Ecolab (France)'),
(52832, 'https://ror.org/01yv86q51', 'no_lang_code', 1, 'https://ror.org/01yv86q51 Bio-Rad (France)'),
(52833, 'https://ror.org/02fhcbb53', 'no_lang_code', 1, 'https://ror.org/02fhcbb53 Bio-Rad (United Kingdom)'),
(52834, 'https://ror.org/01r4hwz76', 'en', 1, 'https://ror.org/01r4hwz76 Fƶldtani Ʃs GeokƩmiai IntƩzet Institute for Geological and Geochemical Research'),
(52835, 'https://ror.org/03895v451', 'no_lang_code', 1, 'https://ror.org/03895v451 Canon (Australia)'),
(52836, 'https://ror.org/02se40x69', 'no_lang_code', 1, 'https://ror.org/02se40x69 Canon (France) ć‚­ćƒ¤ćƒŽćƒ³ę Ŗå¼ä¼šē¤¾'),
(52837, 'https://ror.org/033d1rc08', 'no_lang_code', 1, 'https://ror.org/033d1rc08 Cardinal Health (Australia)'),
(52838, 'https://ror.org/02xywr964', 'en', 1, 'https://ror.org/02xywr964 Danube Research Institute Duna-Kutató Intézet'),
(52839, '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'),
(52840, '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'),
(52841, 'https://ror.org/00nngxj80', 'no_lang_code', 1, 'https://ror.org/00nngxj80 Kraft Heinz (United Kingdom)'),
(52842, 'https://ror.org/03d5p6p20', 'no_lang_code', 1, 'https://ror.org/03d5p6p20 Qiagen (Australia)'),
(52843, 'https://ror.org/01sjh9112', 'en', 1, 'https://ror.org/01sjh9112 ErdƩszeti TudomƔnyos IntƩzet Forest Research Institute'),
(52844, 'https://ror.org/035t0zn40', 'en', 1, 'https://ror.org/035t0zn40 Institute of Agricultural Engineering MezőgazdasĆ”gi GĆ©pesĆ­tĆ©si IntĆ©zet'),
(52845, 'https://ror.org/00gfjrf11', 'no_lang_code', 1, 'https://ror.org/00gfjrf11 Johnson & Johnson (France)'),
(52846, 'https://ror.org/03sgj4t62', 'no_lang_code', 1, 'https://ror.org/03sgj4t62 Evonik (France)'),
(52847, 'https://ror.org/013x7n115', 'no_lang_code', 1, 'https://ror.org/013x7n115 Hologic (United Kingdom)'),
(52848, 'https://ror.org/04rz1y359', 'no_lang_code', 1, 'https://ror.org/04rz1y359 Integra LifeSciences (France)'),
(52849, 'https://ror.org/04whxwq65', 'no_lang_code', 1, 'https://ror.org/04whxwq65 Sonoco (United Kingdom)'),
(52850, 'https://ror.org/029j6tp05', 'no_lang_code', 1, 'https://ror.org/029j6tp05 Zimmer Biomet (France)'),
(52851, 'https://ror.org/013b57229', 'no_lang_code', 1, 'https://ror.org/013b57229 Bristol-Myers Squibb (France)'),
(52852, 'https://ror.org/00bmh2944', 'no_lang_code', 1, 'https://ror.org/00bmh2944 Besins Healthcare (France)'),
(52853, 'https://ror.org/05wz8pk64', 'no_lang_code', 1, 'https://ror.org/05wz8pk64 Abbott (France)'),
(52854, 'https://ror.org/048p4wq89', 'no_lang_code', 1, 'https://ror.org/048p4wq89 Takeda (France)'),
(52855, 'https://ror.org/03an0wj74', 'no_lang_code', 1, 'https://ror.org/03an0wj74 BASF (France)'),
(52856, 'https://ror.org/02nmt8y10', 'no_lang_code', 1, 'https://ror.org/02nmt8y10 Hillrom (Australia)'),
(52857, 'https://ror.org/0527yet08', 'no_lang_code', 1, 'https://ror.org/0527yet08 Medical Developments International (Australia)'),
(52858, 'https://ror.org/00zhfb561', 'no_lang_code', 1, 'https://ror.org/00zhfb561 Cochlear (France)'),
(52859, 'https://ror.org/047eytq20', 'no_lang_code', 1, 'https://ror.org/047eytq20 Coloplast (United Kingdom)'),
(52860, 'https://ror.org/01dvqbh84', 'no_lang_code', 1, 'https://ror.org/01dvqbh84 Teva Pharmaceuticals (United Kingdom)'),
(52861, 'https://ror.org/00vvs5b96', 'no_lang_code', 1, 'https://ror.org/00vvs5b96 Leo Pharma (Australia)'),
(52862, 'https://ror.org/03wwpjn37', 'no_lang_code', 1, 'https://ror.org/03wwpjn37 Mirion Technologies (France)'),
(52863, 'https://ror.org/04na7ry54', 'no_lang_code', 1, 'https://ror.org/04na7ry54 Michell Instruments (United Kingdom)'),
(52864, 'https://ror.org/00dcjap62', 'no_lang_code', 1, 'https://ror.org/00dcjap62 Nitto Chemical Industry (Japan)'),
(52865, 'https://ror.org/00yt9z408', 'no_lang_code', 1, 'https://ror.org/00yt9z408 EyePoint Pharmaceuticals (United Kingdom)'),
(52866, 'https://ror.org/03cg1bv47', 'no_lang_code', 1, 'https://ror.org/03cg1bv47 OSI Systems (Australia)'),
(52867, 'https://ror.org/035n6ph62', 'no_lang_code', 1, 'https://ror.org/035n6ph62 Perrigo (United Kingdom)'),
(52868, 'https://ror.org/03yz3w307', 'no_lang_code', 1, 'https://ror.org/03yz3w307 Prediction Sciences (France)'),
(52869, 'https://ror.org/0430jfd38', 'no_lang_code', 1, 'https://ror.org/0430jfd38 Sanofi (Australia)'),
(52870, 'https://ror.org/013j2ff86', 'no_lang_code', 1, 'https://ror.org/013j2ff86 Steris (France)'),
(52871, 'https://ror.org/00gze1672', 'no_lang_code', 1, 'https://ror.org/00gze1672 Teradata (United Kingdom)'),
(52872, 'https://ror.org/04t8qhn97', 'no_lang_code', 1, 'https://ror.org/04t8qhn97 Integra LifeSciences (United Kingdom)'),
(52873, 'https://ror.org/054bf3454', 'no_lang_code', 1, 'https://ror.org/054bf3454 Baxter (Australia)'),
(52874, 'https://ror.org/03d01nv48', 'no_lang_code', 1, 'https://ror.org/03d01nv48 Therabel (France)'),
(52875, 'https://ror.org/03d9a6q43', 'no_lang_code', 1, 'https://ror.org/03d9a6q43 Ecolab (United Kingdom)'),
(52876, 'https://ror.org/025ajkx98', 'no_lang_code', 1, 'https://ror.org/025ajkx98 Teleflex (Australia)'),
(52877, 'https://ror.org/051j13341', 'no_lang_code', 1, 'https://ror.org/051j13341 Gilead Sciences (Australia)'),
(52878, 'https://ror.org/027jc1q11', 'no_lang_code', 1, 'https://ror.org/027jc1q11 Edwards Lifesciences (United Kingdom)'),
(52879, 'https://ror.org/05hwj5b39', 'no_lang_code', 1, 'https://ror.org/05hwj5b39 Bio Nutrition Health Products (United Kingdom)'),
(52880, 'https://ror.org/02cv2sp17', 'no_lang_code', 1, 'https://ror.org/02cv2sp17 ASC Instrument (France)'),
(52881, 'https://ror.org/05gnhhg32', 'en', 1, 'https://ror.org/05gnhhg32 Carilene'),
(52882, 'https://ror.org/032vp6a84', 'no_lang_code', 1, 'https://ror.org/032vp6a84 Bioderma (France)'),
(52883, 'https://ror.org/00pmqdp10', 'no_lang_code', 1, 'https://ror.org/00pmqdp10 Aspide Medical (France)'),
(52884, 'https://ror.org/02sdyvc52', 'no_lang_code', 1, 'https://ror.org/02sdyvc52 Laboratoire CCD (France)'),
(52885, 'https://ror.org/05s1rn618', 'no_lang_code', 1, 'https://ror.org/05s1rn618 Comptoir Pharmaceutique & MƩdical (France)'),
(52886, 'https://ror.org/02gx53y06', 'no_lang_code', 1, 'https://ror.org/02gx53y06 Ab Medica (France)'),
(52887, 'https://ror.org/005wspd72', 'no_lang_code', 1, 'https://ror.org/005wspd72 Compumedics (Australia)'),
(52888, 'https://ror.org/05nnj5q38', 'no_lang_code', 1, 'https://ror.org/05nnj5q38 ACM Instruments (United Kingdom)'),
(52889, 'https://ror.org/05gpa6n30', 'no_lang_code', 1, 'https://ror.org/05gpa6n30 CSInstruments (France)'),
(52890, 'https://ror.org/03937a641', 'no_lang_code', 1, 'https://ror.org/03937a641 Acteon (United Kingdom)'),
(52891, 'https://ror.org/00bqv9n12', 'no_lang_code', 1, 'https://ror.org/00bqv9n12 Aston Medical (France)'),
(52892, 'https://ror.org/04qwja739', 'no_lang_code', 1, 'https://ror.org/04qwja739 Merit Medical (France)'),
(52893, 'https://ror.org/012y7dr10', 'en', 1, 'https://ror.org/012y7dr10 Biosystems Informatics Institute'),
(52894, 'https://ror.org/05katjf64', 'no_lang_code', 1, 'https://ror.org/05katjf64 Cidelec (France)'),
(52895, 'https://ror.org/034tqkr94', 'no_lang_code', 1, 'https://ror.org/034tqkr94 Bjl Laboratoires (France)'),
(52896, 'https://ror.org/009xea408', 'no_lang_code', 1, 'https://ror.org/009xea408 Aeronautical and General Instruments'),
(52897, 'https://ror.org/023bq4z36', 'no_lang_code', 1, 'https://ror.org/023bq4z36 Blue Industry and Science (France)'),
(52898, 'https://ror.org/04d1d9s98', 'en', 1, 'https://ror.org/04d1d9s98 Coopers Animal Health'),
(52899, 'https://ror.org/02qff3310', 'no_lang_code', 1, 'https://ror.org/02qff3310 Cosmalia (France)'),
(52900, 'https://ror.org/00227mf78', 'no_lang_code', 1, 'https://ror.org/00227mf78 AG Medical (France)'),
(52901, 'https://ror.org/02chg1452', 'no_lang_code', 1, 'https://ror.org/02chg1452 Institut Oenologique de Champagne (France)'),
(52902, 'https://ror.org/02wj99m39', 'en', 1, 'https://ror.org/02wj99m39 Charlton Installation Services'),
(52903, 'https://ror.org/042z3wd02', 'no_lang_code', 1, 'https://ror.org/042z3wd02 Halma (United Kingdom)'),
(52904, 'https://ror.org/028z16q57', 'fr', 1, 'https://ror.org/028z16q57 Institut de Biotechnologies Jacques Boy'),
(52905, 'https://ror.org/03x9c7x93', 'no_lang_code', 1, 'https://ror.org/03x9c7x93 Cryonic Medical (France)'),
(52906, 'https://ror.org/03nwwb023', 'fr', 1, 'https://ror.org/03nwwb023 Centre Médico Chirurgical de Tronquières'),
(52907, 'https://ror.org/03hnn1y72', 'no_lang_code', 1, 'https://ror.org/03hnn1y72 Sanitarium Health and Wellbeing (Australia)'),
(52908, 'https://ror.org/01rhy1775', 'no_lang_code', 1, 'https://ror.org/01rhy1775 Aveni (France)'),
(52909, 'https://ror.org/034nw2x49', 'no_lang_code', 1, 'https://ror.org/034nw2x49 TraceTag (France)'),
(52910, 'https://ror.org/03qj53n95', 'en', 1, 'https://ror.org/03qj53n95 Australian Road Research Board'),
(52911, 'https://ror.org/007jkh405', 'no_lang_code', 1, 'https://ror.org/007jkh405 Brothier (France)'),
(52912, 'https://ror.org/04xrc4v39', 'no_lang_code', 1, 'https://ror.org/04xrc4v39 Bioxis Pharmaceuticals (France)'),
(52913, 'https://ror.org/0124cbs22', 'no_lang_code', 1, 'https://ror.org/0124cbs22 Woolmark (Australia)'),
(52914, 'https://ror.org/05nj2pq60', 'no_lang_code', 1, 'https://ror.org/05nj2pq60 Alliance Instruments (France)'),
(52915, 'https://ror.org/04wn7zs59', 'no_lang_code', 1, 'https://ror.org/04wn7zs59 Allibert Medical (France)'),
(52916, 'https://ror.org/02qkvsy66', 'en', 1, 'https://ror.org/02qkvsy66 Cityzen Sciences'),
(52917, 'https://ror.org/00bc02d26', 'fr', 1, 'https://ror.org/00bc02d26 Cizeta Medicali'),
(52918, 'https://ror.org/01qr42c13', 'no_lang_code', 1, 'https://ror.org/01qr42c13 CAD Instruments (France)'),
(52919, 'https://ror.org/05nbt0w25', 'en', 1, 'https://ror.org/05nbt0w25 Avon Medical Centre'),
(52920, 'https://ror.org/00q6se919', 'no_lang_code', 1, 'https://ror.org/00q6se919 CL Medical (France)'),
(52921, 'https://ror.org/01dxdkd86', 'no_lang_code', 1, 'https://ror.org/01dxdkd86 Sela Light (France)'),
(52922, 'https://ror.org/013xqbx45', 'no_lang_code', 1, 'https://ror.org/013xqbx45 Caerbont Automotive Instruments (United Kingdom)'),
(52923, 'https://ror.org/02k45v753', 'no_lang_code', 1, 'https://ror.org/02k45v753 Vossloh (France)'),
(52924, 'https://ror.org/021z0c614', 'no_lang_code', 1, 'https://ror.org/021z0c614 Cambridge Nutritional Sciences (United Kingdom)'),
(52925, 'https://ror.org/01z72zc80', 'no_lang_code', 1, 'https://ror.org/01z72zc80 Ana Laboratoire'),
(52926, 'https://ror.org/05rwdy684', 'no_lang_code', 1, 'https://ror.org/05rwdy684 Bastion (United Kingdom)'),
(52927, 'https://ror.org/0473pps33', 'en', 1, 'https://ror.org/0473pps33 AMR Centre'),
(52928, 'https://ror.org/02sv6a835', 'no_lang_code', 1, 'https://ror.org/02sv6a835 DKD mƩdical (France)'),
(52929, 'https://ror.org/01waqh020', 'no_lang_code', 1, 'https://ror.org/01waqh020 Deltamedics (France)'),
(52930, 'https://ror.org/03ae66d75', 'no_lang_code', 1, 'https://ror.org/03ae66d75 Nuance Communications (United Kingdom)'),
(52931, 'https://ror.org/01xqxbt36', 'no_lang_code', 1, 'https://ror.org/01xqxbt36 DSM (France)'),
(52932, 'https://ror.org/02fmtdz23', 'no_lang_code', 1, 'https://ror.org/02fmtdz23 Duckworth & Kent (United Kingdom)'),
(52933, 'https://ror.org/01g087661', 'no_lang_code', 1, 'https://ror.org/01g087661 AR2i'),
(52934, 'https://ror.org/03dcnm155', 'no_lang_code', 1, 'https://ror.org/03dcnm155 Bentley Instruments (France)'),
(52935, 'https://ror.org/05xry8z31', 'fr', 1, 'https://ror.org/05xry8z31 Evaux Laboratoires'),
(52936, 'https://ror.org/049wtgt11', 'no_lang_code', 1, 'https://ror.org/049wtgt11 DuPont (France)'),
(52937, 'https://ror.org/050fr6z67', 'no_lang_code', 1, 'https://ror.org/050fr6z67 Dynamic Digital Depth (Australia)'),
(52938, 'https://ror.org/02ec6yy56', 'no_lang_code', 1, 'https://ror.org/02ec6yy56 Arkopharma (France)'),
(52939, 'https://ror.org/03ke2qx45', 'fr', 1, 'https://ror.org/03ke2qx45 Laboratoires Expanscience'),
(52940, 'https://ror.org/01336q621', 'no_lang_code', 1, 'https://ror.org/01336q621 DMS Imaging (France)'),
(52941, 'https://ror.org/01e89dr28', 'fr', 1, 'https://ror.org/01e89dr28 BFA Laboratoires'),
(52942, 'https://ror.org/00vbr4z12', 'no_lang_code', 1, 'https://ror.org/00vbr4z12 Paradigm (France)'),
(52943, 'https://ror.org/04jppe152', 'no_lang_code', 1, 'https://ror.org/04jppe152 ExxonMobil (France)'),
(52944, 'https://ror.org/02085m625', 'en', 1, 'https://ror.org/02085m625 Arplay Medical'),
(52945, 'https://ror.org/023g45t05', 'no_lang_code', 1, 'https://ror.org/023g45t05 ExxonMobil (United Kingdom)'),
(52946, 'https://ror.org/05x10y854', 'fr', 1, 'https://ror.org/05x10y854 France Chirurgie Instrumentation'),
(52947, 'https://ror.org/00ggfn496', 'fr', 1, 'https://ror.org/00ggfn496 Association de Recherche en Soins Infirmiers'),
(52948, 'https://ror.org/03s4bg735', 'no_lang_code', 1, 'https://ror.org/03s4bg735 Bio Composants MƩdicaux (France)'),
(52949, 'https://ror.org/00vcdkt35', 'no_lang_code', 1, 'https://ror.org/00vcdkt35 Elice (France)'),
(52950, 'https://ror.org/04qyvt278', 'no_lang_code', 1, 'https://ror.org/04qyvt278 Eclair (France)'),
(52951, 'https://ror.org/03mq0hx55', 'no_lang_code', 1, 'https://ror.org/03mq0hx55 ALP (France) Articles De Laboratoire De Precision'),
(52952, 'https://ror.org/01647qt90', 'no_lang_code', 1, 'https://ror.org/01647qt90 Genoscience Pharma (France)'),
(52953, 'https://ror.org/03dznjk55', 'fr', 1, 'https://ror.org/03dznjk55 Association de Recherche pour la Technologie et les Sciences'),
(52954, 'https://ror.org/03kf9t316', 'no_lang_code', 1, 'https://ror.org/03kf9t316 Geotechnical Instruments (United Kingdom)'),
(52955, 'https://ror.org/015ye0m82', 'no_lang_code', 1, 'https://ror.org/015ye0m82 Advance Product Services (United Kingdom)'),
(52956, 'https://ror.org/0363etv78', 'no_lang_code', 1, 'https://ror.org/0363etv78 Edra MƩdical (France)'),
(52957, 'https://ror.org/006fm3q16', 'no_lang_code', 1, 'https://ror.org/006fm3q16 Isomed (France)'),
(52958, 'https://ror.org/04rkxhv28', 'no_lang_code', 1, 'https://ror.org/04rkxhv28 Arysta LifeScience (France)'),
(52959, 'https://ror.org/02nephp76', 'no_lang_code', 1, 'https://ror.org/02nephp76 Gilson (United Kingdom)'),
(52960, 'https://ror.org/04nxqr324', 'no_lang_code', 1, 'https://ror.org/04nxqr324 Gilson (France)'),
(52961, 'https://ror.org/03eckez71', 'en', 1, 'https://ror.org/03eckez71 Innovative Medical Partners (France)'),
(52962, 'https://ror.org/01gzrtw66', 'no_lang_code', 1, 'https://ror.org/01gzrtw66 FEV (France)'),
(52963, 'https://ror.org/01awkss54', 'no_lang_code', 1, 'https://ror.org/01awkss54 TE Connectivity (France)'),
(52964, 'https://ror.org/00dqtka84', 'no_lang_code', 1, 'https://ror.org/00dqtka84 FIM Medical (France)'),
(52965, 'https://ror.org/00r7jg830', 'no_lang_code', 1, 'https://ror.org/00r7jg830 Laboratoires ABIA (France)'),
(52966, 'https://ror.org/02jpm4g18', 'no_lang_code', 1, 'https://ror.org/02jpm4g18 Grant Instruments (United Kingdom)'),
(52967, 'https://ror.org/03nxzws18', 'no_lang_code', 1, 'https://ror.org/03nxzws18 Stada Arzneimittel (United Kingdom)'),
(52968, 'https://ror.org/02z0z0932', 'no_lang_code', 1, 'https://ror.org/02z0z0932 Sofralab (France)'),
(52969, 'https://ror.org/02pycb953', 'no_lang_code', 1, 'https://ror.org/02pycb953 Biophytis (France)'),
(52970, 'https://ror.org/03a05sb88', 'fr', 1, 'https://ror.org/03a05sb88 Laboratoires i2m'),
(52971, 'https://ror.org/0117c5950', 'no_lang_code', 1, 'https://ror.org/0117c5950 Funktion One Research (United Kingdom)'),
(52972, 'https://ror.org/022xahy44', 'no_lang_code', 1, 'https://ror.org/022xahy44 Furukawa Electric (United Kingdom)'),
(52973, 'https://ror.org/01sy9dm60', 'no_lang_code', 1, 'https://ror.org/01sy9dm60 Embody (France)'),
(52974, 'https://ror.org/00fanpm32', 'no_lang_code', 1, 'https://ror.org/00fanpm32 Ransom Naturals (United Kingdom)'),
(52975, 'https://ror.org/0377ycc43', 'no_lang_code', 1, 'https://ror.org/0377ycc43 Sefam (France)'),
(52976, 'https://ror.org/05fdcyv20', 'no_lang_code', 1, 'https://ror.org/05fdcyv20 Gecko Biomedical (France)'),
(52977, 'https://ror.org/02f6ecw55', 'fr', 1, 'https://ror.org/02f6ecw55 Entreprise de Fournitures et d''Assistance MƩdicale'),
(52978, 'https://ror.org/0014hfa49', 'fr', 1, 'https://ror.org/0014hfa49 Institut Clinident'),
(52979, 'https://ror.org/02pegt135', 'no_lang_code', 1, 'https://ror.org/02pegt135 Helioscreen (France)'),
(52980, 'https://ror.org/04rnwed46', 'en', 1, 'https://ror.org/04rnwed46 Environmental Earth Sciences'),
(52981, 'https://ror.org/008gfyt86', 'fr', 1, 'https://ror.org/008gfyt86 Groupe ICV Institut coopƩratif du vin'),
(52982, 'https://ror.org/01pjqre40', 'no_lang_code', 1, 'https://ror.org/01pjqre40 Illuminate Group (Australia)'),
(52983, 'https://ror.org/00vmgnj07', 'no_lang_code', 1, 'https://ror.org/00vmgnj07 Ereie (France)'),
(52984, 'https://ror.org/04fxgys42', 'no_lang_code', 1, 'https://ror.org/04fxgys42 Espiner Medical (United Kingdom)'),
(52985, 'https://ror.org/04fczh442', 'no_lang_code', 1, 'https://ror.org/04fczh442 Holiste (France)'),
(52986, 'https://ror.org/03v08ap24', 'no_lang_code', 1, 'https://ror.org/03v08ap24 HMS-Vilgo (France)'),
(52987, 'https://ror.org/01s8sge84', 'no_lang_code', 1, 'https://ror.org/01s8sge84 Institut Esthederm (France)'),
(52988, 'https://ror.org/029ca0b10', 'no_lang_code', 1, 'https://ror.org/029ca0b10 Impeto Medical (France)'),
(52989, 'https://ror.org/045x2a702', 'fr', 1, 'https://ror.org/045x2a702 Institut EuropƩen de Gestion'),
(52990, 'https://ror.org/01vmb7766', 'en', 1, 'https://ror.org/01vmb7766 Laboratoire Phytoceutic'),
(52991, 'https://ror.org/03x3b8v35', 'fr', 1, 'https://ror.org/03x3b8v35 Institut Maupertuis'),
(52992, 'https://ror.org/04w7sf714', 'no_lang_code', 1, 'https://ror.org/04w7sf714 Instruments MƩdecine VƩtƩrinaire (France)'),
(52993, 'https://ror.org/051tbm140', 'no_lang_code', 1, 'https://ror.org/051tbm140 In''Tech Medical (France)'),
(52994, 'https://ror.org/025mn7712', 'no_lang_code', 1, 'https://ror.org/025mn7712 InFlectis BioScience'),
(52995, 'https://ror.org/02k1h3369', 'fr', 1, 'https://ror.org/02k1h3369 Institut de Recherche Fondamentale en Technologies Solaire'),
(52996, 'https://ror.org/02wtsha51', 'no_lang_code', 1, 'https://ror.org/02wtsha51 Teva Pharmaceuticals (Australia)');
INSERT INTO `rors` VALUES
(52997, 'https://ror.org/014n5hm22', 'no_lang_code', 1, 'https://ror.org/014n5hm22 Sanofi (Austria)'),
(52998, 'https://ror.org/032baaz38', 'no_lang_code', 1, 'https://ror.org/032baaz38 OrthoD (United Kingdom)'),
(52999, 'https://ror.org/04hydf024', 'no_lang_code', 1, 'https://ror.org/04hydf024 Oceaneering International (United States)'),
(53000, 'https://ror.org/01cmnv018', 'fr', 1, 'https://ror.org/01cmnv018 Institut des Neurosciences Cliniques de Rennes'),
(53001, 'https://ror.org/03yn44v82', 'fr', 1, 'https://ror.org/03yn44v82 Institut Georges Lopez'),
(53002, 'https://ror.org/042edgv29', 'fr', 1, 'https://ror.org/042edgv29 Institut National de Police Scientifique'),
(53003, 'https://ror.org/023pwvd91', 'it', 1, 'https://ror.org/023pwvd91 Academy of the bran Accademia della Crusca'),
(53004, 'https://ror.org/04eq4yv25', 'fr', 1, 'https://ror.org/04eq4yv25 Institut Regional Des Materiaux Avance'),
(53005, 'https://ror.org/00bg9m975', 'en', 1, 'https://ror.org/00bg9m975 Astro Space Center'),
(53006, 'https://ror.org/03fz9ws15', 'en', 1, 'https://ror.org/03fz9ws15 Institute Of Science De La Vision'),
(53007, 'https://ror.org/05vtq0k76', 'no_lang_code', 1, 'https://ror.org/05vtq0k76 Instant Access Technologies (United Kingdom)'),
(53008, 'https://ror.org/00vj8hy88', 'no_lang_code', 1, 'https://ror.org/00vj8hy88 Hendrix Genetics (France)'),
(53009, 'https://ror.org/05d34d003', 'fr', 1, 'https://ror.org/05d34d003 Institut SupƩrieur de Plasturgie d''AlenƧon'),
(53010, 'https://ror.org/037tm7f56', 'en', 1, 'https://ror.org/037tm7f56 Courant Institute of Mathematical Sciences'),
(53011, 'https://ror.org/03yy8am44', 'en', 1, 'https://ror.org/03yy8am44 Institute for Applied Science'),
(53012, 'https://ror.org/001s4x714', 'fr', 1, 'https://ror.org/001s4x714 Institut SupƩrieur des MatƩriaux du Mans'),
(53013, 'https://ror.org/039ztcx57', 'fr', 1, 'https://ror.org/039ztcx57 Institut de Recherche en HƩmatologie et Transplantation'),
(53014, 'https://ror.org/0218s1743', 'fr', 1, 'https://ror.org/0218s1743 Institut Technique de DƩveloppement des Produits de la Mer'),
(53015, 'https://ror.org/03esh6f70', 'no_lang_code', 1, 'https://ror.org/03esh6f70 International Flavors & Fragrances (France)'),
(53016, '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'),
(53017, 'https://ror.org/01fgwy751', 'en', 1, 'https://ror.org/01fgwy751 Arbeitsgemeinschaft der Wissenschaftlichen Medizinischen Fachgesellschaften e.V. Association of the Scientific Medical Societies'),
(53018, 'https://ror.org/04h4t0r16', 'en', 1, 'https://ror.org/04h4t0r16 International Committee of the Red Cross'),
(53019, 'https://ror.org/0014agb17', 'no_lang_code', 1, 'https://ror.org/0014agb17 Stago (France)'),
(53020, 'https://ror.org/03b17a012', 'en', 1, 'https://ror.org/03b17a012 Bureau of Economic Analysis'),
(53021, 'https://ror.org/02gcrjm32', 'fr', 1, 'https://ror.org/02gcrjm32 MƩthode Jeanne Piaubert institute'),
(53022, 'https://ror.org/01ssrp339', 'en', 1, 'https://ror.org/01ssrp339 VeDeCoM Institute'),
(53023, 'https://ror.org/03z2y7827', 'no_lang_code', 1, 'https://ror.org/03z2y7827 InstaGroup (United Kingdom)'),
(53024, 'https://ror.org/0187psc61', 'en', 1, 'https://ror.org/0187psc61 Scottish Intercollegiate Guidelines Network'),
(53025, 'https://ror.org/02x228738', 'en', 1, 'https://ror.org/02x228738 Intergovernmental Panel on Climate Change'),
(53026, 'https://ror.org/05j1j8v70', 'no_lang_code', 1, 'https://ror.org/05j1j8v70 KCI (United Kingdom)'),
(53027, 'https://ror.org/01tc3c489', 'no_lang_code', 1, 'https://ror.org/01tc3c489 PAC (France)'),
(53028, 'https://ror.org/03vyddc91', 'en', 1, 'https://ror.org/03vyddc91 Healthcare Improvement Scotland'),
(53029, 'https://ror.org/02pdcxe11', 'no_lang_code', 1, 'https://ror.org/02pdcxe11 Int''Air Medical (France)'),
(53030, 'https://ror.org/04k3nyd23', 'no_lang_code', 1, 'https://ror.org/04k3nyd23 InGen (France)'),
(53031, 'https://ror.org/057d4hm13', 'fr', 1, 'https://ror.org/057d4hm13 Installations Magasins Gerard Rocquet'),
(53032, 'https://ror.org/032nv2431', 'no_lang_code', 1, 'https://ror.org/032nv2431 Intelligence in Medical Technologies (France)'),
(53033, 'https://ror.org/059ehfk60', 'fr', 1, 'https://ror.org/059ehfk60 SociĆ©tĆ© d’Installation TĆ©lĆ©phonique et Signalisation'),
(53034, 'https://ror.org/005k2pp84', 'en', 1, 'https://ror.org/005k2pp84 Innovascience Laboratoire Innovascience'),
(53035, 'https://ror.org/019ex7f36', 'no_lang_code', 1, 'https://ror.org/019ex7f36 Safe Patient Systems (United Kingdom)'),
(53036, 'https://ror.org/044xt5998', 'no_lang_code', 1, 'https://ror.org/044xt5998 Advanced Medical Institute (Australia)'),
(53037, 'https://ror.org/02m7qby09', 'no_lang_code', 1, 'https://ror.org/02m7qby09 Nuxe (France)'),
(53038, 'https://ror.org/039fsnc94', 'no_lang_code', 1, 'https://ror.org/039fsnc94 Oenobiol (France)'),
(53039, 'https://ror.org/011mmtr14', 'no_lang_code', 1, 'https://ror.org/011mmtr14 LEA Networks (France)'),
(53040, 'https://ror.org/04xctba91', 'no_lang_code', 1, 'https://ror.org/04xctba91 Symatese (France)'),
(53041, 'https://ror.org/03mhzjs57', 'no_lang_code', 1, 'https://ror.org/03mhzjs57 INTER.MED (France)'),
(53042, 'https://ror.org/001f5k487', 'no_lang_code', 1, 'https://ror.org/001f5k487 Precilens (France)'),
(53043, 'https://ror.org/029ea9548', 'no_lang_code', 1, 'https://ror.org/029ea9548 Laboratoire Sicobel (France)'),
(53044, 'https://ror.org/016ppxm14', 'no_lang_code', 1, 'https://ror.org/016ppxm14 Intermark Medical Innovations (United Kingdom)'),
(53045, 'https://ror.org/00kny8y22', 'fr', 1, 'https://ror.org/00kny8y22 Laboratoire Excell'),
(53046, 'https://ror.org/05vh1g220', 'no_lang_code', 1, 'https://ror.org/05vh1g220 Klinger (United Kingdom)'),
(53047, 'https://ror.org/043yba110', 'no_lang_code', 1, 'https://ror.org/043yba110 Laboratoires Genevrier (France)'),
(53048, 'https://ror.org/05nazes57', 'no_lang_code', 1, 'https://ror.org/05nazes57 L3 MƩdical (France)'),
(53049, 'https://ror.org/04f3f9v34', 'no_lang_code', 1, 'https://ror.org/04f3f9v34 Tradiphar (France)'),
(53050, 'https://ror.org/03w3bmy56', 'no_lang_code', 1, 'https://ror.org/03w3bmy56 Laboratoires Aditec (France)'),
(53051, 'https://ror.org/059jy0w68', 'no_lang_code', 1, 'https://ror.org/059jy0w68 HRA Pharma (France)'),
(53052, 'https://ror.org/02z45mp76', 'no_lang_code', 1, 'https://ror.org/02z45mp76 Alere (Australia)'),
(53053, 'https://ror.org/02y4q0y44', 'no_lang_code', 1, 'https://ror.org/02y4q0y44 AkzoNobel (France)'),
(53054, 'https://ror.org/04tj9xe28', 'no_lang_code', 1, 'https://ror.org/04tj9xe28 Laphal (France)'),
(53055, 'https://ror.org/0560m4761', 'fr', 1, 'https://ror.org/0560m4761 Institut de Prise en Charge de l''ObƩsitƩ en Alsace'),
(53056, 'https://ror.org/01tfxc804', 'no_lang_code', 1, 'https://ror.org/01tfxc804 Thalgo (France)'),
(53057, 'https://ror.org/00wbjq302', 'no_lang_code', 1, 'https://ror.org/00wbjq302 IRIS Instruments (France)'),
(53058, 'https://ror.org/048r71s66', 'en', 1, 'https://ror.org/048r71s66 Ceres Laboratory Laboratoire Ceres'),
(53059, 'https://ror.org/00pt3xy74', 'no_lang_code', 1, 'https://ror.org/00pt3xy74 Effik (France)'),
(53060, 'https://ror.org/05rvvjw12', 'no_lang_code', 1, 'https://ror.org/05rvvjw12 Chemineau Labs (France) Laboratoires Chemineau'),
(53061, 'https://ror.org/052yn8h13', 'no_lang_code', 1, 'https://ror.org/052yn8h13 Riga (France)'),
(53062, 'https://ror.org/022aa0w74', 'no_lang_code', 1, 'https://ror.org/022aa0w74 Laboratoires M. Richard (France)'),
(53063, 'https://ror.org/00j8xde38', 'no_lang_code', 1, 'https://ror.org/00j8xde38 Eurobio (France)'),
(53064, 'https://ror.org/04rpy7390', 'no_lang_code', 1, 'https://ror.org/04rpy7390 Groupe Clarins (France)'),
(53065, 'https://ror.org/00zq45236', 'no_lang_code', 1, 'https://ror.org/00zq45236 SurgiMedia (France)'),
(53066, 'https://ror.org/02682jj74', 'no_lang_code', 1, 'https://ror.org/02682jj74 Ceraver (France)'),
(53067, 'https://ror.org/04hkh7617', 'no_lang_code', 1, 'https://ror.org/04hkh7617 Cyclopharma (France)'),
(53068, 'https://ror.org/04tb15285', 'no_lang_code', 1, 'https://ror.org/04tb15285 Laboratoire France BƩbƩ Nutrition (France)'),
(53069, 'https://ror.org/015r6qx80', 'no_lang_code', 1, 'https://ror.org/015r6qx80 Laboratoires d''Anjou (France)'),
(53070, 'https://ror.org/05t30dz33', 'no_lang_code', 1, 'https://ror.org/05t30dz33 G-Pharm (France)'),
(53071, 'https://ror.org/014ezhp82', 'no_lang_code', 1, 'https://ror.org/014ezhp82 Laboratory Supplies and Instruments (United Kingdom)'),
(53072, 'https://ror.org/03dhess34', 'no_lang_code', 1, 'https://ror.org/03dhess34 Laboratoires Gilbert (France)'),
(53073, 'https://ror.org/04g5kd725', 'no_lang_code', 1, 'https://ror.org/04g5kd725 IST Medical (France)'),
(53074, 'https://ror.org/05n1xkq03', 'no_lang_code', 1, 'https://ror.org/05n1xkq03 Yves Rocher (France)'),
(53075, 'https://ror.org/04p972q78', 'no_lang_code', 1, 'https://ror.org/04p972q78 Procter & Gamble (France)'),
(53076, 'https://ror.org/0161tv133', 'no_lang_code', 1, 'https://ror.org/0161tv133 Memscap (France)'),
(53077, 'https://ror.org/00wvhys96', 'no_lang_code', 1, 'https://ror.org/00wvhys96 Puig (France)'),
(53078, 'https://ror.org/02vh2pt65', 'en', 1, 'https://ror.org/02vh2pt65 Ludwig Cancer Research'),
(53079, 'https://ror.org/05nm81f72', 'no_lang_code', 1, 'https://ror.org/05nm81f72 Braas Monier (United Kingdom)'),
(53080, 'https://ror.org/01g84kr32', 'no_lang_code', 1, 'https://ror.org/01g84kr32 Payot (France)'),
(53081, 'https://ror.org/01e473h50', 'en', 1, 'https://ror.org/01e473h50 Ludwig Cancer Research'),
(53082, 'https://ror.org/01510f568', 'no_lang_code', 1, 'https://ror.org/01510f568 Setec (France)'),
(53083, 'https://ror.org/037b4r736', 'no_lang_code', 1, 'https://ror.org/037b4r736 Rodael (France)'),
(53084, 'https://ror.org/00610tn07', 'no_lang_code', 1, 'https://ror.org/00610tn07 Medicalex (France)'),
(53085, 'https://ror.org/04hv9tr61', 'no_lang_code', 1, 'https://ror.org/04hv9tr61 Laboratoires PhodƩ (France)'),
(53086, 'https://ror.org/00ncbzn09', 'no_lang_code', 1, 'https://ror.org/00ncbzn09 Phytocos (France)'),
(53087, 'https://ror.org/043eaeg43', 'no_lang_code', 1, 'https://ror.org/043eaeg43 Laboratoire de Dermo-CosmƩtique Animale (France)'),
(53088, 'https://ror.org/051334k24', 'fr', 1, 'https://ror.org/051334k24 Institution Nationale des Invalides'),
(53089, 'https://ror.org/03ccjhx84', 'no_lang_code', 1, 'https://ror.org/03ccjhx84 Medicamat (France)'),
(53090, 'https://ror.org/04zaa8r69', 'fr', 1, 'https://ror.org/04zaa8r69 Laboratoire de Physique du Rayonnement et de la LumiĆØre'),
(53091, 'https://ror.org/028qtah59', 'no_lang_code', 1, 'https://ror.org/028qtah59 Dodie (France)'),
(53092, 'https://ror.org/02nvfeg84', 'en', 1, 'https://ror.org/02nvfeg84 Marble Arch Medical Centre'),
(53093, 'https://ror.org/01hzsk060', 'no_lang_code', 1, 'https://ror.org/01hzsk060 Gojo (France)'),
(53094, 'https://ror.org/042f4rs03', 'no_lang_code', 1, 'https://ror.org/042f4rs03 Laurane Medical (France)'),
(53095, 'https://ror.org/03ybb7335', 'no_lang_code', 1, 'https://ror.org/03ybb7335 Laboratoires Rivadis (France)'),
(53096, 'https://ror.org/00e56ek71', 'no_lang_code', 1, 'https://ror.org/00e56ek71 Groupe Winncare (France)'),
(53097, 'https://ror.org/00b52f734', 'no_lang_code', 1, 'https://ror.org/00b52f734 Laboratoires Sebbin (France)'),
(53098, 'https://ror.org/01xa11r83', 'no_lang_code', 1, 'https://ror.org/01xa11r83 Sequenom (United Kingdom)'),
(53099, 'https://ror.org/0382x5c07', 'no_lang_code', 1, 'https://ror.org/0382x5c07 Sebia (France)'),
(53100, 'https://ror.org/030wbs841', 'no_lang_code', 1, 'https://ror.org/030wbs841 Medicodose Systems (France)'),
(53101, 'https://ror.org/03ckjfz66', 'no_lang_code', 1, 'https://ror.org/03ckjfz66 Synerlab (France)'),
(53102, 'https://ror.org/01kspqs18', 'no_lang_code', 1, 'https://ror.org/01kspqs18 Medicold (France)'),
(53103, 'https://ror.org/04fyf9d79', 'fr', 1, 'https://ror.org/04fyf9d79 Laboratoire Saint Martin'),
(53104, 'https://ror.org/05rk35s69', 'no_lang_code', 1, 'https://ror.org/05rk35s69 Laboratoires Standa (France)'),
(53105, 'https://ror.org/031eerz69', 'no_lang_code', 1, 'https://ror.org/031eerz69 Medicrea (France)'),
(53106, 'https://ror.org/03b0wgg06', 'no_lang_code', 1, 'https://ror.org/03b0wgg06 Laboratoires SVR (France)'),
(53107, 'https://ror.org/04xh47750', 'no_lang_code', 1, 'https://ror.org/04xh47750 Laboratories Synth Innove (France)'),
(53108, 'https://ror.org/04de0c074', 'en', 1, 'https://ror.org/04de0c074 Melbourn Science Park'),
(53109, 'https://ror.org/027jzhs47', 'no_lang_code', 1, 'https://ror.org/027jzhs47 Lavipharm (France)'),
(53110, 'https://ror.org/03e1deg09', 'no_lang_code', 1, 'https://ror.org/03e1deg09 Laboratoires Vivacy (France)'),
(53111, 'https://ror.org/02mtcrz14', 'fr', 1, 'https://ror.org/02mtcrz14 Enilia Ensmic'),
(53112, 'https://ror.org/02dwsbm05', 'no_lang_code', 1, 'https://ror.org/02dwsbm05 Melet Schloesing Laboratoires (France)'),
(53113, 'https://ror.org/05aw35e64', 'no_lang_code', 1, 'https://ror.org/05aw35e64 MatƩriel MƩdical (France)'),
(53114, 'https://ror.org/051xra320', 'no_lang_code', 1, 'https://ror.org/051xra320 Biocodex (France)'),
(53115, 'https://ror.org/05rzbbw97', 'no_lang_code', 1, 'https://ror.org/05rzbbw97 Life Medical Control (France)'),
(53116, 'https://ror.org/02ephh346', 'en', 1, 'https://ror.org/02ephh346 Metabrain Research'),
(53117, 'https://ror.org/037j2g266', 'no_lang_code', 1, 'https://ror.org/037j2g266 Wockhardt (France)'),
(53118, 'https://ror.org/05crsng41', 'no_lang_code', 1, 'https://ror.org/05crsng41 Maxi-Steam (Australia)'),
(53119, 'https://ror.org/0521n7n83', 'no_lang_code', 1, 'https://ror.org/0521n7n83 Microsoft (France)'),
(53120, 'https://ror.org/00grcq349', 'no_lang_code', 1, 'https://ror.org/00grcq349 Mdoloris Medical Systems (France)'),
(53121, 'https://ror.org/008sh5980', 'no_lang_code', 1, 'https://ror.org/008sh5980 Midas Mediscience (United Kingdom)'),
(53122, 'https://ror.org/055azc127', 'no_lang_code', 1, 'https://ror.org/055azc127 MinMaxMedical (France)'),
(53123, 'https://ror.org/05v7gs072', 'fr', 1, 'https://ror.org/05v7gs072 Nextep'),
(53124, 'https://ror.org/00s75ft26', 'no_lang_code', 1, 'https://ror.org/00s75ft26 Ormihl (France)'),
(53125, 'https://ror.org/03pskz739', 'no_lang_code', 1, 'https://ror.org/03pskz739 Molecular Engines Laboratories (France)'),
(53126, 'https://ror.org/038b7ts62', 'no_lang_code', 1, 'https://ror.org/038b7ts62 LSO Medical (France)'),
(53127, 'https://ror.org/00p287g25', 'no_lang_code', 1, 'https://ror.org/00p287g25 Nintendo (France)'),
(53128, 'https://ror.org/01j01re85', 'no_lang_code', 1, 'https://ror.org/01j01re85 Prince Medical (France)'),
(53129, 'https://ror.org/053tfgv50', 'no_lang_code', 1, 'https://ror.org/053tfgv50 Laboratoires Nogues (France)'),
(53130, 'https://ror.org/02v1vhf29', 'no_lang_code', 1, 'https://ror.org/02v1vhf29 Presi (France)'),
(53131, 'https://ror.org/043mfwz11', 'no_lang_code', 1, 'https://ror.org/043mfwz11 Fruits DƩlice (France)'),
(53132, 'https://ror.org/01sqj1z22', 'no_lang_code', 1, 'https://ror.org/01sqj1z22 Pi (United Kingdom)'),
(53133, 'https://ror.org/0559k7072', 'no_lang_code', 1, 'https://ror.org/0559k7072 Moria (France)'),
(53134, 'https://ror.org/021h7sd56', 'no_lang_code', 1, 'https://ror.org/021h7sd56 Medical Process (France)'),
(53135, 'https://ror.org/00996ck84', 'no_lang_code', 1, 'https://ror.org/00996ck84 MƩdical Innovation DƩveloppement (France)'),
(53136, 'https://ror.org/02hmf0879', 'en', 1, 'https://ror.org/02hmf0879 Northern Sydney Local Health District'),
(53137, 'https://ror.org/047nkw990', 'no_lang_code', 1, 'https://ror.org/047nkw990 Ella BachƩ (France)'),
(53138, 'https://ror.org/03t9wc557', 'no_lang_code', 1, 'https://ror.org/03t9wc557 Medical innovation (France)'),
(53139, 'https://ror.org/03n2my419', 'no_lang_code', 1, 'https://ror.org/03n2my419 Platinum Equity (United Kingdom)'),
(53140, 'https://ror.org/01atm1h75', 'no_lang_code', 1, 'https://ror.org/01atm1h75 Laboratoires Prod''Hyg (France)'),
(53141, 'https://ror.org/02c7hqm03', 'no_lang_code', 1, 'https://ror.org/02c7hqm03 Laboratoires Spiral (France)'),
(53142, 'https://ror.org/00bgpxp73', 'no_lang_code', 1, 'https://ror.org/00bgpxp73 Robotik Technology (France)'),
(53143, 'https://ror.org/04fz10a73', 'no_lang_code', 1, 'https://ror.org/04fz10a73 Medical Production (France)'),
(53144, 'https://ror.org/0003yay73', 'no_lang_code', 1, 'https://ror.org/0003yay73 SEE Laborde JP (France)'),
(53145, 'https://ror.org/00gpm0e44', 'no_lang_code', 1, 'https://ror.org/00gpm0e44 NTX Research (France)'),
(53146, 'https://ror.org/02kqtfa81', 'en', 1, 'https://ror.org/02kqtfa81 Medical Solutions'),
(53147, 'https://ror.org/02j6sa144', 'no_lang_code', 1, 'https://ror.org/02j6sa144 Protip Medical (France)'),
(53148, 'https://ror.org/03ev0vh37', 'no_lang_code', 1, 'https://ror.org/03ev0vh37 P2A Medical (France)'),
(53149, 'https://ror.org/011e5e822', 'no_lang_code', 1, 'https://ror.org/011e5e822 NVH Medicinal (France)'),
(53150, 'https://ror.org/03z08wj79', 'no_lang_code', 1, 'https://ror.org/03z08wj79 Psychometric Research & Development (United Kingdom)'),
(53151, 'https://ror.org/00rd9tc64', 'fr', 1, 'https://ror.org/00rd9tc64 Laboratoire Dr Renaud'),
(53152, 'https://ror.org/01t5xrf37', 'no_lang_code', 1, 'https://ror.org/01t5xrf37 Sapphire Research & Electronics (United Kingdom)'),
(53153, 'https://ror.org/03b0fve92', 'fr', 1, 'https://ror.org/03b0fve92 Herbarom Laboratoire'),
(53154, 'https://ror.org/00bp6rb10', 'no_lang_code', 1, 'https://ror.org/00bp6rb10 Quantum (Australia)'),
(53155, 'https://ror.org/00n16p279', 'no_lang_code', 1, 'https://ror.org/00n16p279 Setaram Instrumentation (France)'),
(53156, 'https://ror.org/05h78k766', 'no_lang_code', 1, 'https://ror.org/05h78k766 Baker Hughes (United Kingdom)'),
(53157, 'https://ror.org/03t8yfs10', 'no_lang_code', 1, 'https://ror.org/03t8yfs10 Dermscan Group (France)'),
(53158, 'https://ror.org/02dc2kg74', 'no_lang_code', 1, 'https://ror.org/02dc2kg74 Aurea Agrosciences (France)'),
(53159, 'https://ror.org/031ahp525', 'no_lang_code', 1, 'https://ror.org/031ahp525 Parburch Medical Developments (United Kingdom)'),
(53160, 'https://ror.org/02q4y5974', 'no_lang_code', 1, 'https://ror.org/02q4y5974 Laboratoire Odost (France)'),
(53161, 'https://ror.org/04zg3kj04', 'no_lang_code', 1, 'https://ror.org/04zg3kj04 Scaleo Medical (France)'),
(53162, 'https://ror.org/04kt6g810', 'no_lang_code', 1, 'https://ror.org/04kt6g810 Shell (France)'),
(53163, 'https://ror.org/037405c78', 'en', 1, 'https://ror.org/037405c78 Cancer Research UK Manchester Institute'),
(53164, 'https://ror.org/00gkes048', 'no_lang_code', 1, 'https://ror.org/00gkes048 Oncomedics (France)'),
(53165, 'https://ror.org/005yk2x17', 'no_lang_code', 1, 'https://ror.org/005yk2x17 OneFit Medical (France)'),
(53166, 'https://ror.org/03tdpge58', 'no_lang_code', 1, 'https://ror.org/03tdpge58 Scalzo Automotive Research (Australia)'),
(53167, 'https://ror.org/02aqcpd84', 'no_lang_code', 1, 'https://ror.org/02aqcpd84 A3IP (France)'),
(53168, 'https://ror.org/012bs5594', 'no_lang_code', 1, 'https://ror.org/012bs5594 Cegedim (France)'),
(53169, 'https://ror.org/019vgq189', 'no_lang_code', 1, 'https://ror.org/019vgq189 Schiller (France)'),
(53170, 'https://ror.org/044zhgv69', 'no_lang_code', 1, 'https://ror.org/044zhgv69 Strainstall (United Kingdom)'),
(53171, 'https://ror.org/04mba0b61', 'no_lang_code', 1, 'https://ror.org/04mba0b61 Structural Science Composites (United Kingdom)'),
(53172, 'https://ror.org/004hdwp61', 'no_lang_code', 1, 'https://ror.org/004hdwp61 Resonance Health (Australia)'),
(53173, 'https://ror.org/03geggj88', 'no_lang_code', 1, 'https://ror.org/03geggj88 Perrigo (France)'),
(53174, 'https://ror.org/04xxthg27', 'no_lang_code', 1, 'https://ror.org/04xxthg27 Science et MƩdecine (France)'),
(53175, 'https://ror.org/01sc29z88', 'no_lang_code', 1, 'https://ror.org/01sc29z88 SLB MƩdical (France)'),
(53176, 'https://ror.org/05h2qqq38', 'no_lang_code', 1, 'https://ror.org/05h2qqq38 Rhopoint Instruments (United Kingdom)'),
(53177, 'https://ror.org/040y2n469', 'no_lang_code', 1, 'https://ror.org/040y2n469 Jules Richard Instruments (France)'),
(53178, 'https://ror.org/04f350r05', 'fr', 1, 'https://ror.org/04f350r05 PhagogĆØne'),
(53179, 'https://ror.org/05t2bc229', 'no_lang_code', 1, 'https://ror.org/05t2bc229 SociĆ©tĆ© franƧaise d’instruments de chirurgie Sofic (France)'),
(53180, 'https://ror.org/05snmjd73', 'no_lang_code', 1, 'https://ror.org/05snmjd73 SurgiQual Institute (France)'),
(53181, 'https://ror.org/04yacgh83', 'no_lang_code', 1, 'https://ror.org/04yacgh83 SoftFil (France)'),
(53182, 'https://ror.org/01rvrhf27', 'no_lang_code', 1, 'https://ror.org/01rvrhf27 Photonic Research Systems (United Kingdom)'),
(53183, 'https://ror.org/00z7y2783', 'no_lang_code', 1, 'https://ror.org/00z7y2783 Nutreov Laboratoires (France)'),
(53184, 'https://ror.org/02enra703', 'no_lang_code', 1, 'https://ror.org/02enra703 SCL International'),
(53185, 'https://ror.org/006qdp021', 'no_lang_code', 1, 'https://ror.org/006qdp021 Scot Young Research (United Kingdom)'),
(53186, 'https://ror.org/02serab94', 'no_lang_code', 1, 'https://ror.org/02serab94 Sopac Medical (France)'),
(53187, 'https://ror.org/038d5d459', 'en', 1, 'https://ror.org/038d5d459 Scottish Health Services'),
(53188, 'https://ror.org/01avy4c79', 'no_lang_code', 1, 'https://ror.org/01avy4c79 Synchro Medical (France)'),
(53189, 'https://ror.org/04xsq5430', 'no_lang_code', 1, 'https://ror.org/04xsq5430 Sotec MƩdical (France)'),
(53190, 'https://ror.org/01fawrr58', 'no_lang_code', 1, 'https://ror.org/01fawrr58 Selenium Medical (France)'),
(53191, 'https://ror.org/02f1jpe62', 'en', 1, 'https://ror.org/02f1jpe62 South West Thames Institute for Renal Research'),
(53192, 'https://ror.org/003zwxt43', 'no_lang_code', 1, 'https://ror.org/003zwxt43 Total Security Installations (United Kingdom)'),
(53193, 'https://ror.org/05mh5m090', 'no_lang_code', 1, 'https://ror.org/05mh5m090 Spenco Medical (United Kingdom)'),
(53194, 'https://ror.org/01bb5z206', 'fr', 1, 'https://ror.org/01bb5z206 Technologie MƩdicale (France)'),
(53195, 'https://ror.org/05hnbrd32', 'no_lang_code', 1, 'https://ror.org/05hnbrd32 Wessex Lifts (United Kingdom)'),
(53196, 'https://ror.org/05vd6yn18', 'no_lang_code', 1, 'https://ror.org/05vd6yn18 EDAP TMS (France)'),
(53197, 'https://ror.org/04g9yb321', 'no_lang_code', 1, 'https://ror.org/04g9yb321 West Pharmaceutical Services (United Kingdom)'),
(53198, 'https://ror.org/04z0bfr53', 'no_lang_code', 1, 'https://ror.org/04z0bfr53 Urgo Laboratories (France)'),
(53199, 'https://ror.org/02d823f39', 'no_lang_code', 1, 'https://ror.org/02d823f39 Trendrail (United KIngdom)'),
(53200, 'https://ror.org/02820xq34', 'no_lang_code', 1, 'https://ror.org/02820xq34 Boskalis (United Kingdom)'),
(53201, 'https://ror.org/03ssw7f31', 'no_lang_code', 1, 'https://ror.org/03ssw7f31 Trewavis Surgical (Australia)'),
(53202, 'https://ror.org/032dtwy97', 'no_lang_code', 1, 'https://ror.org/032dtwy97 Trod Medical (France)'),
(53203, 'https://ror.org/00fje3r15', 'no_lang_code', 1, 'https://ror.org/00fje3r15 Tethys Instruments (France)'),
(53204, 'https://ror.org/03a62s155', 'en', 1, 'https://ror.org/03a62s155 Westminster Guarantee Protection Trustees'),
(53205, 'https://ror.org/03a4r5t71', 'en', 1, 'https://ror.org/03a4r5t71 Vanguard Healthcare'),
(53206, 'https://ror.org/01n6t9x28', 'no_lang_code', 1, 'https://ror.org/01n6t9x28 UCB Pharma (France)'),
(53207, 'https://ror.org/02gb0nx59', 'no_lang_code', 1, 'https://ror.org/02gb0nx59 Centre d''Orthro-Podologie & d''OrthopƩdie Thion Medical (France)'),
(53208, 'https://ror.org/0287qz723', 'no_lang_code', 1, 'https://ror.org/0287qz723 Thomas Sinclair Laboratories (France)'),
(53209, 'https://ror.org/036xxhv13', 'no_lang_code', 1, 'https://ror.org/036xxhv13 Invisio (Germany)'),
(53210, 'https://ror.org/03wjq0y66', 'no_lang_code', 1, 'https://ror.org/03wjq0y66 Isotopx (United Kingdom)'),
(53211, 'https://ror.org/00nqbw566', 'no_lang_code', 1, 'https://ror.org/00nqbw566 Thames Medical (United Kingdom)'),
(53212, 'https://ror.org/0019h1k84', 'en', 1, 'https://ror.org/0019h1k84 Joint European Torus'),
(53213, 'https://ror.org/0529fxt39', 'en', 1, 'https://ror.org/0529fxt39 Palo Alto Research Center'),
(53214, 'https://ror.org/03ggtzp34', 'en', 1, 'https://ror.org/03ggtzp34 Dr. Reddy''s Foundation'),
(53215, 'https://ror.org/032sxkb16', 'en', 1, 'https://ror.org/032sxkb16 Central Institute of Temperate Horticulture'),
(53216, 'https://ror.org/012fexm34', 'no_lang_code', 1, 'https://ror.org/012fexm34 Edwards Lifesciences (Switzerland)'),
(53217, 'https://ror.org/01hfpy566', 'en', 1, 'https://ror.org/01hfpy566 Institute of Astronomy and Astrophysics, Academia Sinica'),
(53218, 'https://ror.org/01tpvdq80', 'en', 1, 'https://ror.org/01tpvdq80 Institute of Physics, Academia Sinica 中央研究院物理研究所'),
(53219, 'https://ror.org/03haqsp75', 'en', 1, 'https://ror.org/03haqsp75 Institute of Atomic and Molecular Sciences, Academia Sinica äø­å¤®ē ”ē©¶é™¢åŽŸå­čˆ‡åˆ†å­ē§‘å­øē ”ē©¶ę‰€'),
(53220, 'https://ror.org/00ex2js61', 'en', 1, 'https://ror.org/00ex2js61 Research Center for Applied Science, Academia Sinica äø­å¤®ē ”ē©¶é™¢ę‡‰ē”Øē§‘å­øē ”ē©¶äø­åæƒ'),
(53221, 'https://ror.org/02gq5b653', 'no_lang_code', 1, 'https://ror.org/02gq5b653 Electro Automation (Ireland)'),
(53222, 'https://ror.org/016m85y83', 'de', 1, 'https://ror.org/016m85y83 Fachkommission für Hochspannungsfragen'),
(53223, 'https://ror.org/03n06wy62', 'no_lang_code', 1, 'https://ror.org/03n06wy62 Algae Health (Ireland) Slainte Alga Teoranta'),
(53224, 'https://ror.org/00p03yg71', 'en', 1, 'https://ror.org/00p03yg71 Istituto Superconduttori, Materiali Innovativi e Dispositivi Superconducting and other Innovative Materials and Devices Institute'),
(53225, 'https://ror.org/00ss52190', 'no_lang_code', 1, 'https://ror.org/00ss52190 Laboratoire Pino Aliprandini (Switzerland)'),
(53226, 'https://ror.org/01fe75p74', 'en', 1, 'https://ror.org/01fe75p74 Chinese Culinary Institute'),
(53227, 'https://ror.org/011hxwn54', 'en', 1, 'https://ror.org/011hxwn54 Asia Pacific Center for Theoretical Physics'),
(53228, 'https://ror.org/01vgh8b31', 'en', 1, 'https://ror.org/01vgh8b31 Alpinia Institute'),
(53229, 'https://ror.org/03v7tny92', 'en', 1, 'https://ror.org/03v7tny92 Institute of Physics Rosario Instituto de FĆ­sica Rosario'),
(53230, 'https://ror.org/051m3n143', 'en', 1, 'https://ror.org/051m3n143 Environmental Research Instruments'),
(53231, 'https://ror.org/01dagn361', 'en', 1, 'https://ror.org/01dagn361 TIFR Centre for Interdisciplinary Sciences'),
(53232, 'https://ror.org/0089bg420', 'en', 1, 'https://ror.org/0089bg420 Daresbury Laboratory'),
(53233, 'https://ror.org/040rzp686', 'en', 1, 'https://ror.org/040rzp686 Hair Science Institute'),
(53234, 'https://ror.org/01v4s0f07', 'en', 1, 'https://ror.org/01v4s0f07 Variable Energy Cyclotron Centre'),
(53235, 'https://ror.org/04gmfhf08', 'en', 1, 'https://ror.org/04gmfhf08 Applied Research Associates'),
(53236, 'https://ror.org/05d7v2265', 'no_lang_code', 1, 'https://ror.org/05d7v2265 Hanlun Information (China) å…“ä¼¦äæ”ęÆęœ‰é™å…¬åø'),
(53237, 'https://ror.org/05gemrx09', 'no_lang_code', 1, 'https://ror.org/05gemrx09 Argomedical (Switzerland)'),
(53238, 'https://ror.org/002j9py90', 'no_lang_code', 1, 'https://ror.org/002j9py90 Harry Winston (Switzerland)'),
(53239, 'https://ror.org/05bhe6d02', 'no_lang_code', 1, 'https://ror.org/05bhe6d02 MSA Schweiz GmbH Mine Safety Appliances (Switzerland)'),
(53240, 'https://ror.org/00geaym80', 'no_lang_code', 1, 'https://ror.org/00geaym80 Artificial Sensing Instruments (Switzerland)'),
(53241, 'https://ror.org/017mw4x28', 'en', 1, 'https://ror.org/017mw4x28 Healthcare Technology Innovation Centre'),
(53242, 'https://ror.org/00aamwa29', 'no_lang_code', 1, 'https://ror.org/00aamwa29 Schaeffer (Switzerland)'),
(53243, 'https://ror.org/00212dq27', 'no_lang_code', 1, 'https://ror.org/00212dq27 Elekta (Switzerland)'),
(53244, 'https://ror.org/0387d5286', 'no_lang_code', 1, 'https://ror.org/0387d5286 Atheris Laboratories (Switzerland)'),
(53245, 'https://ror.org/0160rhq33', 'en', 1, 'https://ror.org/0160rhq33 Dalmia Institute of Scientific & Industrial Research'),
(53246, 'https://ror.org/00baskk38', 'en', 1, 'https://ror.org/00baskk38 Institut für Biomedizinische Technik Institute for Biomedical Engineering'),
(53247, 'https://ror.org/0422kq922', 'no_lang_code', 1, 'https://ror.org/0422kq922 ELEQ (Netherlands)'),
(53248, 'https://ror.org/030f1yb82', 'en', 1, 'https://ror.org/030f1yb82 Institut Icare'),
(53249, 'https://ror.org/032dyj305', 'en', 1, 'https://ror.org/032dyj305 Basko Healthcare'),
(53250, 'https://ror.org/04fjy3t60', 'no_lang_code', 1, 'https://ror.org/04fjy3t60 Digitech Services (New Zealand)'),
(53251, 'https://ror.org/02hbskw66', 'en', 1, 'https://ror.org/02hbskw66 Central Institute for Women in Agriculture'),
(53252, 'https://ror.org/02364qy53', 'de', 1, 'https://ror.org/02364qy53 Aron Vajna Historischer Blechblasinstrumentenbau'),
(53253, 'https://ror.org/01w4ggt72', 'no_lang_code', 1, 'https://ror.org/01w4ggt72 Boskalis (Netherlands) Koninklijke Boskalis Westminster N.V.'),
(53254, 'https://ror.org/02j5xfp60', 'no_lang_code', 1, 'https://ror.org/02j5xfp60 AOMB Intellectual Property (Netherlands)'),
(53255, 'https://ror.org/0552cbh05', 'no_lang_code', 1, 'https://ror.org/0552cbh05 B. Braun (Switzerland)'),
(53256, 'https://ror.org/01rmsm893', 'no_lang_code', 1, 'https://ror.org/01rmsm893 MJ Group (India)'),
(53257, 'https://ror.org/00xckqv95', 'en', 1, 'https://ror.org/00xckqv95 B.Well Swiss'),
(53258, 'https://ror.org/009pahg55', 'en', 1, 'https://ror.org/009pahg55 Mahatma Gandhi Institute for Rural Industrialization'),
(53259, 'https://ror.org/01ahf6552', 'no_lang_code', 1, 'https://ror.org/01ahf6552 Integrated Chinese Medicine (China)'),
(53260, 'https://ror.org/02trxsj91', 'no_lang_code', 1, 'https://ror.org/02trxsj91 Maisey (New Zealand)'),
(53261, 'https://ror.org/03b7qtd49', 'de', 1, 'https://ror.org/03b7qtd49 Büchi Labortechnik'),
(53262, 'https://ror.org/02zv3jm94', 'no_lang_code', 1, 'https://ror.org/02zv3jm94 Dentsply Sirona (Switzerland)'),
(53263, 'https://ror.org/04zwy1d58', 'no_lang_code', 1, 'https://ror.org/04zwy1d58 Burnside Autocyl (Ireland)'),
(53264, 'https://ror.org/00tjm9378', 'no_lang_code', 1, 'https://ror.org/00tjm9378 Mankind Pharma (India)'),
(53265, 'https://ror.org/04g335g49', 'no_lang_code', 1, 'https://ror.org/04g335g49 IRDAM (Switzerland)'),
(53266, 'https://ror.org/015sf2585', 'no_lang_code', 1, 'https://ror.org/015sf2585 Rebnok (India)'),
(53267, 'https://ror.org/04p76s709', 'no_lang_code', 1, 'https://ror.org/04p76s709 RPG Life Sciences (India)'),
(53268, 'https://ror.org/00hk9tb32', 'no_lang_code', 1, 'https://ror.org/00hk9tb32 CNH Industrial (Switzerland)'),
(53269, 'https://ror.org/054n2k594', 'en', 1, 'https://ror.org/054n2k594 Medical Biobank Swiss Institute'),
(53270, 'https://ror.org/033nhhq39', 'no_lang_code', 1, 'https://ror.org/033nhhq39 Medical Dispensing Systems (Netherlands)'),
(53271, 'https://ror.org/00qw4ms08', 'en', 1, 'https://ror.org/00qw4ms08 Clayton Foundation'),
(53272, 'https://ror.org/050jk8g19', 'no_lang_code', 1, 'https://ror.org/050jk8g19 Medical Technology Transfer (Netherlands)'),
(53273, 'https://ror.org/00n2n5x30', 'no_lang_code', 1, 'https://ror.org/00n2n5x30 Celtrak (Ireland)'),
(53274, 'https://ror.org/01gq9c873', 'no_lang_code', 1, 'https://ror.org/01gq9c873 Medicel (Switzerland)'),
(53275, 'https://ror.org/01vm4bk04', 'no_lang_code', 1, 'https://ror.org/01vm4bk04 SMT (India)'),
(53276, 'https://ror.org/003nd8341', 'no_lang_code', 1, 'https://ror.org/003nd8341 Medicoat (Switzerland)'),
(53277, 'https://ror.org/033x3jh42', 'no_lang_code', 1, 'https://ror.org/033x3jh42 Schmizo (Switzerland)'),
(53278, 'https://ror.org/01qasqf38', 'no_lang_code', 1, 'https://ror.org/01qasqf38 Nypro (Ireland)'),
(53279, 'https://ror.org/05hzbx907', 'en', 1, 'https://ror.org/05hzbx907 National Digital Research Centre'),
(53280, 'https://ror.org/0594rzx21', 'no_lang_code', 1, 'https://ror.org/0594rzx21 SIS Medical (Switzerland)'),
(53281, 'https://ror.org/014becm56', 'no_lang_code', 1, 'https://ror.org/014becm56 Meteolabor (Switzerland)'),
(53282, 'https://ror.org/01sj1p486', 'en', 1, 'https://ror.org/01sj1p486 Kerala Institute for Research, Training and Development Studies of Scheduled Castes and Tribes'),
(53283, 'https://ror.org/01vap4769', 'no_lang_code', 1, 'https://ror.org/01vap4769 Mintaka Fondation Pour la Recherche Medicale Mintaka Foundation for Medical Research'),
(53284, 'https://ror.org/03qdj6986', 'no_lang_code', 1, 'https://ror.org/03qdj6986 Becton Dickinson (Netherlands)'),
(53285, 'https://ror.org/00zb6nk96', 'fr', 1, 'https://ror.org/00zb6nk96 Labor Spiez Labor Spiez Laboratoire de Spiez Laboratorio Spiez Spiez Laboratory'),
(53286, 'https://ror.org/04d1eym69', 'no_lang_code', 1, 'https://ror.org/04d1eym69 Kingspan (Ireland)'),
(53287, 'https://ror.org/00nj0fk68', 'no_lang_code', 1, 'https://ror.org/00nj0fk68 Mitsui & Co (Ireland)'),
(53288, 'https://ror.org/05nqm0q11', 'no_lang_code', 1, 'https://ror.org/05nqm0q11 Institute for Sustainable Process Technology'),
(53289, 'https://ror.org/00467td76', 'no_lang_code', 1, 'https://ror.org/00467td76 Mallinckrodt (Ireland)'),
(53290, 'https://ror.org/02eyspm09', 'no_lang_code', 1, 'https://ror.org/02eyspm09 Kuiper Medical Instruments (Netherlands) Kuiper Medische Instrumenten'),
(53291, 'https://ror.org/00edhwf08', 'no_lang_code', 1, 'https://ror.org/00edhwf08 Oertli Instrumente (Switzerland)'),
(53292, 'https://ror.org/028x09v05', 'no_lang_code', 1, 'https://ror.org/028x09v05 Portasol (Ireland)'),
(53293, 'https://ror.org/02zvqs025', 'no_lang_code', 1, 'https://ror.org/02zvqs025 Shellfish Ireland (Ireland)'),
(53294, 'https://ror.org/0140krp16', 'no_lang_code', 1, 'https://ror.org/0140krp16 Mane (India)'),
(53295, 'https://ror.org/027whd792', 'no_lang_code', 1, 'https://ror.org/027whd792 Labomatic Instruments (Switzerland)'),
(53296, 'https://ror.org/029gyan70', 'no_lang_code', 1, 'https://ror.org/029gyan70 Ziemer Ophthalmic Systems (Switzerland)'),
(53297, 'https://ror.org/04q709a65', 'no_lang_code', 1, 'https://ror.org/04q709a65 Metabo (Switzerland)'),
(53298, 'https://ror.org/00cn31g95', 'no_lang_code', 1, 'https://ror.org/00cn31g95 L.A.C. (Switzerland)'),
(53299, 'https://ror.org/00qt1ww94', 'no_lang_code', 1, 'https://ror.org/00qt1ww94 Radiometer (Switzerland)'),
(53300, 'https://ror.org/01hnq0310', 'nl', 1, 'https://ror.org/01hnq0310 Promens Care'),
(53301, 'https://ror.org/04gnv7g45', 'no_lang_code', 1, 'https://ror.org/04gnv7g45 VAF Instruments (Netherlands)'),
(53302, 'https://ror.org/02q600s42', 'no_lang_code', 1, 'https://ror.org/02q600s42 Luciol Instruments (Switzerland)'),
(53303, 'https://ror.org/03rn2e120', 'no_lang_code', 1, 'https://ror.org/03rn2e120 Abbott (Switzerland)'),
(53304, 'https://ror.org/049tb1q96', 'no_lang_code', 1, 'https://ror.org/049tb1q96 Varian Medical Systems (Switzerland)'),
(53305, 'https://ror.org/02cn3rm21', 'en', 1, 'https://ror.org/02cn3rm21 Ludwig Cancer Research'),
(53306, 'https://ror.org/049vzz986', 'no_lang_code', 1, 'https://ror.org/049vzz986 Storz Medical (Switzerland)'),
(53307, 'https://ror.org/054fjrs33', 'no_lang_code', 1, 'https://ror.org/054fjrs33 Lutz Medical Engineering (Switzerland)'),
(53308, 'https://ror.org/00h4bvr24', 'no_lang_code', 1, 'https://ror.org/00h4bvr24 Vinitex Laboratoriuminrichtingen Vinitex Laboratory Systems (Netherlands)'),
(53309, 'https://ror.org/00e9xte80', 'de', 1, 'https://ror.org/00e9xte80 Pro Pferd'),
(53310, 'https://ror.org/05bgpbh03', 'no_lang_code', 1, 'https://ror.org/05bgpbh03 Vita Green Health Products (China) ē¶­ē‰¹å„éˆ'),
(53311, 'https://ror.org/00518yz61', 'no_lang_code', 1, 'https://ror.org/00518yz61 Straub Medical (Switzerland)'),
(53312, 'https://ror.org/04gbm5d64', 'en', 1, 'https://ror.org/04gbm5d64 Van Vliet Medical Supply'),
(53313, 'https://ror.org/05c87mw19', 'no_lang_code', 1, 'https://ror.org/05c87mw19 Vyome Biosciences (India)'),
(53314, 'https://ror.org/00rp2kf19', 'no_lang_code', 1, 'https://ror.org/00rp2kf19 Willson Band Instruments (Switzerland)'),
(53315, 'https://ror.org/046vvrs54', 'no_lang_code', 1, 'https://ror.org/046vvrs54 Texas Instruments (Netherlands)'),
(53316, 'https://ror.org/011srqz97', 'no_lang_code', 1, 'https://ror.org/011srqz97 Waitaki Biosciences (New Zealand)'),
(53317, 'https://ror.org/01t8cv576', 'no_lang_code', 1, 'https://ror.org/01t8cv576 Dr. Reddy''s Laboratories (Switzerland)'),
(53318, 'https://ror.org/01fhw0y06', 'no_lang_code', 1, 'https://ror.org/01fhw0y06 Abbott (India)'),
(53319, 'https://ror.org/05ynj8239', 'de', 1, 'https://ror.org/05ynj8239 Zentrum für Labormedizin'),
(53320, 'https://ror.org/04k5pc475', 'en', 1, 'https://ror.org/04k5pc475 Schweizerische Stiftung für Edelstein-Forschung Swiss Foundation for the Research of Gemstones'),
(53321, 'https://ror.org/014mtbm52', 'en', 1, 'https://ror.org/014mtbm52 Thommen Medical (Switzerland)'),
(53322, 'https://ror.org/03e2hk535', 'no_lang_code', 1, 'https://ror.org/03e2hk535 PerkinElmer (Netherlands)'),
(53323, 'https://ror.org/02pa5jt63', 'no_lang_code', 1, 'https://ror.org/02pa5jt63 Twente Medical Systems International (Netherlands)'),
(53324, 'https://ror.org/008h3f304', 'no_lang_code', 1, 'https://ror.org/008h3f304 Portmann Instruments (Switzerland)'),
(53325, 'https://ror.org/040wctg56', 'no_lang_code', 1, 'https://ror.org/040wctg56 Allergan (Switzerland)'),
(53326, 'https://ror.org/001qc6h12', 'no_lang_code', 1, 'https://ror.org/001qc6h12 Precisa Gravimetrics (Switzerland)'),
(53327, 'https://ror.org/02wykja76', 'no_lang_code', 1, 'https://ror.org/02wykja76 Theranostics (New Zealand)'),
(53328, 'https://ror.org/044s9c536', 'en', 1, 'https://ror.org/044s9c536 G. M. Reddy Research Foundation'),
(53329, 'https://ror.org/03bb8wr45', 'no_lang_code', 1, 'https://ror.org/03bb8wr45 Natus (New Zealand)'),
(53330, 'https://ror.org/05svfd950', 'en', 1, 'https://ror.org/05svfd950 Regional Research Institute of Unani Medicine'),
(53331, 'https://ror.org/04fg2k993', 'no_lang_code', 1, 'https://ror.org/04fg2k993 Biogen (Switzerland)'),
(53332, 'https://ror.org/02frayk71', 'no_lang_code', 1, 'https://ror.org/02frayk71 PerkinElmer (Ireland)'),
(53333, 'https://ror.org/03pyybh29', 'no_lang_code', 1, 'https://ror.org/03pyybh29 Richcore Lifesciences (India)'),
(53334, 'https://ror.org/02j572e46', 'no_lang_code', 1, 'https://ror.org/02j572e46 Danaher (Ireland)'),
(53335, 'https://ror.org/01jaw9d22', 'no_lang_code', 1, 'https://ror.org/01jaw9d22 Bellus Health (Switzerland)'),
(53336, 'https://ror.org/00wszf981', 'no_lang_code', 1, 'https://ror.org/00wszf981 Combilift (Ireland)'),
(53337, 'https://ror.org/00begqh73', 'no_lang_code', 1, 'https://ror.org/00begqh73 General Electric (New Zealand)'),
(53338, 'https://ror.org/005n1mk70', 'no_lang_code', 1, 'https://ror.org/005n1mk70 Cardinal Health (Switzerland)'),
(53339, 'https://ror.org/01qa0ew63', 'no_lang_code', 1, 'https://ror.org/01qa0ew63 AbbVie (Netherlands)'),
(53340, 'https://ror.org/05jddt560', 'no_lang_code', 1, 'https://ror.org/05jddt560 Cell Medica (Switzerland)'),
(53341, 'https://ror.org/02qh8xh72', 'no_lang_code', 1, 'https://ror.org/02qh8xh72 Dow Chemical (India)'),
(53342, 'https://ror.org/003kp3v47', 'no_lang_code', 1, 'https://ror.org/003kp3v47 DrƤger (Netherlands)'),
(53343, 'https://ror.org/00zq01589', 'no_lang_code', 1, 'https://ror.org/00zq01589 Cook Medical (India)'),
(53344, 'https://ror.org/00g7fhp37', 'no_lang_code', 1, 'https://ror.org/00g7fhp37 AbbVie (Ireland)'),
(53345, 'https://ror.org/00cezwy16', 'no_lang_code', 1, 'https://ror.org/00cezwy16 Enzo Life Sciences (Switzerland)'),
(53346, 'https://ror.org/0137xm018', 'no_lang_code', 1, 'https://ror.org/0137xm018 KCI (Ireland)'),
(53347, 'https://ror.org/01f67ew21', 'no_lang_code', 1, 'https://ror.org/01f67ew21 Hendrix Genetics (Netherlands)'),
(53348, 'https://ror.org/053k40h13', 'no_lang_code', 1, 'https://ror.org/053k40h13 Chevron (Netherlands)'),
(53349, 'https://ror.org/01txrxw72', 'no_lang_code', 1, 'https://ror.org/01txrxw72 Sanofi (Switzerland)'),
(53350, 'https://ror.org/03fxrgb29', 'no_lang_code', 1, 'https://ror.org/03fxrgb29 OmniActive Health Technologies (India)'),
(53351, 'https://ror.org/03b4j0710', 'no_lang_code', 1, 'https://ror.org/03b4j0710 National Instruments (Ireland)'),
(53352, 'https://ror.org/00w26fm43', 'no_lang_code', 1, 'https://ror.org/00w26fm43 Prothena (Ireland)'),
(53353, 'https://ror.org/008p7sp64', 'no_lang_code', 1, 'https://ror.org/008p7sp64 Millar (New Zealand)'),
(53354, 'https://ror.org/03h3r1n96', 'no_lang_code', 1, 'https://ror.org/03h3r1n96 Qiagen (Switzerland)'),
(53355, 'https://ror.org/030yesb42', 'no_lang_code', 1, 'https://ror.org/030yesb42 Fresenius Kabi (Netherlands)'),
(53356, 'https://ror.org/017vj1d34', 'no_lang_code', 1, 'https://ror.org/017vj1d34 Barco (Netherlands)'),
(53357, 'https://ror.org/01a097g74', 'no_lang_code', 1, 'https://ror.org/01a097g74 Sigma-Tau (Switzerland)'),
(53358, 'https://ror.org/01t305n31', 'no_lang_code', 1, 'https://ror.org/01t305n31 Texas Instruments (India)'),
(53359, 'https://ror.org/024a53a32', 'no_lang_code', 1, 'https://ror.org/024a53a32 Texas Instruments (Switzerland)'),
(53360, 'https://ror.org/059tq0w82', 'no_lang_code', 1, 'https://ror.org/059tq0w82 Teva Pharmaceuticals (Ireland)'),
(53361, 'https://ror.org/00kqjn528', 'en', 1, 'https://ror.org/00kqjn528 Taiwan Textile Research Institute ē“”ē¹”ē”¢ę„­ē¶œåˆē ”ē©¶ę‰€'),
(53362, 'https://ror.org/01nyg7313', 'en', 1, 'https://ror.org/01nyg7313 Institute of Medicinal Molecular Design åŒ»č–¬åˆ†å­čØ­čØˆē ”ē©¶ę‰€'),
(53363, 'https://ror.org/056rxsw51', 'en', 1, 'https://ror.org/056rxsw51 Advanced Life Science Institute å…ˆē«Æē”Ÿå‘½ē§‘å­¦ē ”ē©¶ę‰€'),
(53364, 'https://ror.org/05f5sjj19', 'en', 1, 'https://ror.org/05f5sjj19 Nordic Institute of Asian Studies Nordisk Institut for Asien Studier'),
(53365, 'https://ror.org/04ph02j10', 'en', 1, 'https://ror.org/04ph02j10 Asai Germanium Research Institute ę Ŗå¼ä¼šē¤¾ęµ…äŗ•ć‚²ćƒ«ćƒžćƒ‹ć‚¦ćƒ ē ”ē©¶ę‰€'),
(53366, 'https://ror.org/04cn6h279', 'en', 1, 'https://ror.org/04cn6h279 Japan Institute for Advanced Dentistry å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę­Æē§‘å…ˆē«ÆęŠ€č”“ē ”ē©¶ę‰€'),
(53367, 'https://ror.org/016en3a39', 'en', 1, 'https://ror.org/016en3a39 IMI TAMI Institute for Research and Development'),
(53368, 'https://ror.org/047qdeh65', 'no_lang_code', 1, 'https://ror.org/047qdeh65 Zetetic Institute'),
(53369, 'https://ror.org/05mv3wa59', 'en', 1, 'https://ror.org/05mv3wa59 Shikoku Research Institute ę Ŗå¼ä¼šē¤¾å››å›½ē·åˆē ”ē©¶ę‰€'),
(53370, 'https://ror.org/00xx3t779', 'de', 1, 'https://ror.org/00xx3t779 ITW'),
(53371, 'https://ror.org/02rpxbs81', 'no_lang_code', 1, 'https://ror.org/02rpxbs81 Biotest (United States)'),
(53372, 'https://ror.org/008bxhv54', 'en', 1, 'https://ror.org/008bxhv54 Jilin Zixin Pharmaceutical Industrial å‰ęž—ē“«é‘«čÆäøšč‚”ä»½ęœ‰é™å…¬åøå®˜ę–¹ē½‘ē«™'),
(53373, 'https://ror.org/01j9kqj67', 'en', 1, 'https://ror.org/01j9kqj67 Conaris'),
(53374, 'https://ror.org/04kthcs16', 'de', 1, 'https://ror.org/04kthcs16 IFF Weimar Institut für Fertigteiltechnik und Fertigbau Weimar'),
(53375, 'https://ror.org/03zwkpt70', 'no_lang_code', 1, 'https://ror.org/03zwkpt70 Atlas Copco (Switzerland)'),
(53376, 'https://ror.org/00c5kj875', 'no_lang_code', 1, 'https://ror.org/00c5kj875 Stratec (Switzerland)'),
(53377, 'https://ror.org/01y2cgj18', 'no_lang_code', 1, 'https://ror.org/01y2cgj18 D. Western Therapeutics Institute (Japan)'),
(53378, 'https://ror.org/03rkhvv36', 'en', 1, 'https://ror.org/03rkhvv36 Physical and Technical Institute Физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(53379, 'https://ror.org/05bnbgj20', 'en', 1, 'https://ror.org/05bnbgj20 Sri Lanka Institute of Nanotechnology'),
(53380, 'https://ror.org/00pfmb678', 'en', 1, 'https://ror.org/00pfmb678 Central Silk Technological Research Institute'),
(53381, 'https://ror.org/01qzj8a75', 'en', 1, 'https://ror.org/01qzj8a75 GlyTech ē³–éŽ–å·„å­¦ē ”ē©¶ę‰€ć«'),
(53382, 'https://ror.org/05qtw9471', 'en', 1, 'https://ror.org/05qtw9471 Life Science Patents'),
(53383, 'https://ror.org/048zg6t55', 'no_lang_code', 1, 'https://ror.org/048zg6t55 Jiangsu Huadong Institute Of Li-Ion Battery'),
(53384, 'https://ror.org/042rxpd62', 'en', 1, 'https://ror.org/042rxpd62 Institute of Rheological Functions of Food ćƒ¬ć‚Ŗćƒ­ć‚øćƒ¼ę©Ÿčƒ½é£Ÿå“ē ”ē©¶ę‰€'),
(53385, 'https://ror.org/027c7k196', 'en', 1, 'https://ror.org/027c7k196 Changchun Institute of Biological Products é•æę˜„ē”Ÿē‰©åˆ¶å“ē ”ē©¶ę‰€ 编辑'),
(53386, 'https://ror.org/05djstx53', 'en', 1, 'https://ror.org/05djstx53 Institute of Applied Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной физики ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(53387, 'https://ror.org/03zzdp409', 'de', 1, 'https://ror.org/03zzdp409 Institut Virion\\Serion'),
(53388, 'https://ror.org/05ykj7f85', 'en', 1, 'https://ror.org/05ykj7f85 Coir Board of India'),
(53389, 'https://ror.org/05rnqd221', 'de', 1, 'https://ror.org/05rnqd221 Institut für Prävention und Nachsorge'),
(53390, 'https://ror.org/0502kph39', 'en', 1, 'https://ror.org/0502kph39 Central Tasar Research & Training Institute'),
(53391, 'https://ror.org/03fthp652', 'en', 1, 'https://ror.org/03fthp652 Institute Of Pesticides Formulation Technology'),
(53392, 'https://ror.org/05tpaf310', 'en', 1, 'https://ror.org/05tpaf310 National Captioning Institute'),
(53393, 'https://ror.org/04hd32h80', 'en', 1, 'https://ror.org/04hd32h80 Illinois Back Institute'),
(53394, 'https://ror.org/04fyz3a12', 'de', 1, 'https://ror.org/04fyz3a12 Institut für Produktqualität'),
(53395, 'https://ror.org/0366pf663', 'en', 1, 'https://ror.org/0366pf663 Japan Institute of Wastewater Engineering Technology ę—„ęœ¬äø‹ę°“é“ę–°ęŠ€č”“ę©Ÿę§‹'),
(53396, '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 Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ епіГеміології та інфекційних хвороб Š›.Š’. Š“Ń€Š¾Š¼Š°ŃˆŠµŠ²ŃŃŒŠ½Š¾Š³Š¾ŠŠŠœŠ України'),
(53397, 'https://ror.org/04zdw2m37', 'en', 1, 'https://ror.org/04zdw2m37 All-Russian Scientific and Research Institute for Medical Engineering Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И Š˜Š”ŠŸŠ«Š¢ŠŠ¢Š•Š›Š¬ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠžŠ™ Š¢Š•Š„ŠŠ˜ŠšŠ˜'),
(53398, 'https://ror.org/020jh4z82', 'en', 1, 'https://ror.org/020jh4z82 Research Institute of Synthetic Fiber with the Pilot Plant ŠŠ°ŃƒŃ‡Š½Š¾ - ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ синтетического волокна с ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¼ завоГом'),
(53399, 'https://ror.org/05ee8a898', 'en', 1, 'https://ror.org/05ee8a898 State Titanium Research and Design Institute Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š˜Š¢ŠŠŠ'),
(53400, 'https://ror.org/03cepne78', 'en', 1, 'https://ror.org/03cepne78 Institute of Engineering Thermophysics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технічної теплофізики ŠŠŠ України'),
(53401, 'https://ror.org/01s776747', 'de', 1, 'https://ror.org/01s776747 KVB Institut für Konstruktion und Verbundbauweisen'),
(53402, 'https://ror.org/033wye414', 'de', 1, 'https://ror.org/033wye414 Schweißtechnische Lehr- und Versuchsanstalt'),
(53403, 'https://ror.org/02qwqb112', 'en', 1, 'https://ror.org/02qwqb112 Veterinary Diagnostics Institute'),
(53404, 'https://ror.org/050ve4r26', 'en', 1, 'https://ror.org/050ve4r26 Experimental Scientific Research Institute of Forging and Press Engineering Š­ŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ·Š½ŠµŃ‡Š½Š¾-прессового Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(53405, 'https://ror.org/03kcc6909', 'en', 1, 'https://ror.org/03kcc6909 Experimental Research Institute of Metal-Cutting Machine Tools ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»Š¾Ń€ŠµŠ¶ŃƒŃ‰ŠøŃ… станков'),
(53406, 'https://ror.org/04j4z1522', 'en', 1, 'https://ror.org/04j4z1522 Synthetic Rubber Research Institute named after S. V. Lebedeva ŠŠ˜Š˜ синтетического ŠŗŠ°ŃƒŃ‡ŃƒŠŗŠ° имени Š”. Š’. ЛебеГева'),
(53407, 'https://ror.org/047kshh42', 'en', 1, 'https://ror.org/047kshh42 East West Medical Research Institute'),
(53408, 'https://ror.org/05km36r23', 'en', 1, 'https://ror.org/05km36r23 Institute of Cytochemistry and Molecular Pharmacology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цитохимии Šø Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ фармакологии'),
(53409, 'https://ror.org/02netwe45', 'en', 1, 'https://ror.org/02netwe45 National Institute of Research on Jute and Allied Fibre Technology'),
(53410, 'https://ror.org/01mjy0s49', 'de', 1, 'https://ror.org/01mjy0s49 Friedrich-Wilhelm-Bessel-Institut Forschungsgesellschaft'),
(53411, 'https://ror.org/02c900574', 'en', 1, 'https://ror.org/02c900574 Powder Metallurgy Institute Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠžŠ ŠžŠØŠšŠžŠ’ŠžŠ™ ŠœŠ•Š¢ŠŠ›Š›Š£Š Š“Š˜Š˜'),
(53412, 'https://ror.org/0113xva09', 'en', 1, 'https://ror.org/0113xva09 Federal Agency for Legal Protection of Military Results, Special and Dual Purpose Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ агентство по правовой защите Ń€ŠµŠ·ŃƒŠ»ŃŒŃ‚Š°Ń‚Š¾Š² ŠøŠ½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Š¾Š¹ Š“ŠµŃŃ‚ŠµŠ»ŃŒŠ½Š¾ŃŃ‚Šø военного'),
(53413, 'https://ror.org/04sgvk352', 'en', 1, 'https://ror.org/04sgvk352 Centro de Salud Miguel de Cervantes Miguel de Cervantes Health Care Centre'),
(53414, 'https://ror.org/048f4bh03', 'de', 1, 'https://ror.org/048f4bh03 Institut für Automatisierung und Informatik'),
(53415, 'https://ror.org/05p87d983', 'en', 1, 'https://ror.org/05p87d983 Institute of Medical Polymers'),
(53416, 'https://ror.org/0037rj917', 'en', 1, 'https://ror.org/0037rj917 Institute of Mechanics of Metal-Polymer Systems Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики металлополимерных систем им. Š’.А. Белого'),
(53417, 'https://ror.org/04m7pe955', 'en', 1, 'https://ror.org/04m7pe955 Carter BloodCare'),
(53418, 'https://ror.org/01mfhw447', 'en', 1, 'https://ror.org/01mfhw447 1Globe Health Institute');
INSERT INTO `rors` VALUES
(53419, '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'),
(53420, 'https://ror.org/01tm2qj70', 'en', 1, 'https://ror.org/01tm2qj70 St. Petersburg Institute of Bioregulation and Gerontology ŠšŠ›Š˜ŠŠ˜ŠšŠ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢Š Š‘Š˜ŠžŠ Š•Š“Š£Š›ŠÆŠ¦Š˜Š˜ И Š“Š•Š ŠžŠŠ¢ŠžŠ›ŠžŠ“Š˜Š˜'),
(53421, 'https://ror.org/02zfe9916', 'en', 1, 'https://ror.org/02zfe9916 Gujarat Matikam Kalakari & Rural Technology Institute'),
(53422, 'https://ror.org/040f2sb18', 'en', 1, 'https://ror.org/040f2sb18 Walker Cancer Research Institute'),
(53423, 'https://ror.org/05mv7cd65', 'en', 1, 'https://ror.org/05mv7cd65 Russian State Archive of Scientific and Technical Documentation ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾Š³Š¾ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š¾Š±Š¾Ń€ŃƒŠ“Š¾Š²Š°Š½ŠøŃ Šø автоприборов'),
(53424, 'https://ror.org/00vsw8h69', 'en', 1, 'https://ror.org/00vsw8h69 MED Institute'),
(53425, 'https://ror.org/05jcbzw72', 'en', 1, 'https://ror.org/05jcbzw72 Scientific Research Institute of the Cable Industry был созГан ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кабельной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(53426, 'https://ror.org/01q61bm94', 'en', 1, 'https://ror.org/01q61bm94 Korea Institute of Maritime and Fisheries Technology'),
(53427, 'https://ror.org/00588h422', 'en', 1, 'https://ror.org/00588h422 Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry Ō³Ō±Ō± Õ•Ö€Õ£Õ”Õ¶Õ”ÕÆÕ”Õ¶ և Õ¤Õ„Õ²Õ”Õ£ÕøÖ€Õ®Õ”ÕÆÕ”Õ¶ Ö„Õ«Õ“Õ«Õ”ÕµÕ« Õ£Õ«ÕæÕ”ÕæÕ„Õ­Õ¶ÕøÕ¬ÕøÕ£Õ«Õ”ÕÆÕ”Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(53428, 'https://ror.org/02p481x03', 'de', 1, 'https://ror.org/02p481x03 Institut für Bioanalytik, Umwelt-Toxikologie und Biotechnologie Halle'),
(53429, 'https://ror.org/02747fj94', 'de', 1, 'https://ror.org/02747fj94 Günter-Köhler-Institut für Fügetechnik und Werkstoffprüfung'),
(53430, 'https://ror.org/03yqdp771', 'en', 1, 'https://ror.org/03yqdp771 Institut für Implantattechnologie und Biomaterialien Institute for ImplantTechnology and Biomaterials'),
(53431, 'https://ror.org/05ses5w88', 'de', 1, 'https://ror.org/05ses5w88 Institut für Lacke und Farben'),
(53432, 'https://ror.org/03szrx391', 'en', 1, 'https://ror.org/03szrx391 Agladze Inorganic Chemistry and Electrochemistry რ.įƒįƒ’įƒšįƒįƒ«įƒ˜įƒ” įƒįƒ įƒįƒįƒ įƒ’įƒįƒœįƒ£įƒšįƒ˜ įƒ„įƒ˜įƒ›įƒ˜įƒ˜įƒ”įƒ'),
(53433, 'https://ror.org/038d53f16', 'en', 1, 'https://ror.org/038d53f16 Agricultural Genetic Engineering Research Institute'),
(53434, 'https://ror.org/050rr3m98', 'en', 1, 'https://ror.org/050rr3m98 Institute for Radiological Image Sciences'),
(53435, 'https://ror.org/01ax0ps79', 'en', 1, 'https://ror.org/01ax0ps79 Agricultural Technology Research Institute'),
(53436, 'https://ror.org/00sc3t321', 'en', 1, 'https://ror.org/00sc3t321 Korea Automotive Technology Institute ķ•œźµ­ ģžė™ģ°Ø 기술 연구원'),
(53437, 'https://ror.org/044qz6d20', 'en', 1, 'https://ror.org/044qz6d20 Institute of Geotechnics and Engineering Survey in Construction Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геотехники Šø инженерных изысканий в ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Šµ'),
(53438, 'https://ror.org/05ha3xf54', 'en', 1, 'https://ror.org/05ha3xf54 Korea Institute of Atmospheric Prediction Systems ķ•œźµ­ ėŒ€źø° 예츔 ģ‹œģŠ¤ķ…œ ķ•™ķšŒ'),
(53439, 'https://ror.org/00v019t60', 'en', 1, 'https://ror.org/00v019t60 Korea Institute of Robot and Convergence ķ•œźµ­ė”œė“‡ģœµķ•©ģ—°źµ¬ģ›'),
(53440, 'https://ror.org/01wha1936', 'en', 1, 'https://ror.org/01wha1936 Austen BioInnovation Institute in Akron'),
(53441, 'https://ror.org/056f7w112', 'en', 1, 'https://ror.org/056f7w112 West Health'),
(53442, 'https://ror.org/022mx4d10', 'en', 1, 'https://ror.org/022mx4d10 Korea Photonics Technology Institute'),
(53443, 'https://ror.org/00prhpp43', 'en', 1, 'https://ror.org/00prhpp43 Bangladesh Jute Research Institute বাংলাদেশ পাট গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(53444, 'https://ror.org/02zhkt134', 'en', 1, 'https://ror.org/02zhkt134 Krylov State Research Center Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр им.'),
(53445, 'https://ror.org/03rbc9d50', 'en', 1, 'https://ror.org/03rbc9d50 Beijing Research Institute of Automation for Machinery Industry (China) åŒ—äŗ¬ęœŗę¢°å·„äøšč‡ŖåŠØåŒ–ē ”ē©¶ę‰€č½Æä»¶å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(53446, 'https://ror.org/012z62f48', 'en', 1, 'https://ror.org/012z62f48 China Academy of Launch Vehicle Technology äø­å›½čæč½½ē«ē®­ęŠ€ęœÆē ”ē©¶é™¢'),
(53447, 'https://ror.org/0396taz57', 'en', 1, 'https://ror.org/0396taz57 Kyoto Municipal Institute of Industrial Technology and Culture äŗ¬éƒ½åø‚ē«‹čŠøč”“å·„ē§‘å¤§å­¦å·„ę„­ęŠ€č”“ę–‡åŒ–ē ”ē©¶ę‰€'),
(53448, 'https://ror.org/05582qg24', 'no_lang_code', 1, 'https://ror.org/05582qg24 Medical Prognosis Institute (Denmark)'),
(53449, 'https://ror.org/02m6rz291', 'no_lang_code', 1, 'https://ror.org/02m6rz291 CHA Vaccine Institute (South Korea)'),
(53450, 'https://ror.org/04afcm768', 'en', 1, 'https://ror.org/04afcm768 Mediteranski institut za istraživanje života Mediterranean Institute for Life Sciences'),
(53451, 'https://ror.org/03a6ejk87', 'no_lang_code', 1, 'https://ror.org/03a6ejk87 CIS Pharma (Switzerland)'),
(53452, 'https://ror.org/03j99w497', 'en', 1, 'https://ror.org/03j99w497 Mercy Research'),
(53453, 'https://ror.org/01s0yrf11', 'en', 1, 'https://ror.org/01s0yrf11 Cheorwon Plasma Research Institute'),
(53454, 'https://ror.org/01kk11s67', 'no_lang_code', 1, 'https://ror.org/01kk11s67 Fosun Pharma (China)'),
(53455, 'https://ror.org/05axc5t79', 'no_lang_code', 1, 'https://ror.org/05axc5t79 MR&D (Italy)'),
(53456, 'https://ror.org/044gm0487', 'no_lang_code', 1, 'https://ror.org/044gm0487 China Ocean Shipping (China) äø­å›½čæœę“‹čæč¾“'),
(53457, 'https://ror.org/05m0z0h30', 'en', 1, 'https://ror.org/05m0z0h30 Nano and Advanced Materials Institute'),
(53458, 'https://ror.org/021r10935', 'en', 1, 'https://ror.org/021r10935 National Disaster Management Research Institute ģ „źµ­ ģž¬ė‚œ ꓀리 ģ—°źµ¬ģ†Œ'),
(53459, 'https://ror.org/01jq52c81', 'no_lang_code', 1, 'https://ror.org/01jq52c81 ECO Environmental Investments (China)'),
(53460, 'https://ror.org/015pn9s62', 'es', 1, 'https://ror.org/015pn9s62 Instituto Químico Biológico'),
(53461, 'https://ror.org/04kdzp623', 'no_lang_code', 1, 'https://ror.org/04kdzp623 Buhmwoo Institute of Technology Research (South Korea)'),
(53462, 'https://ror.org/05j2csz34', 'pt', 1, 'https://ror.org/05j2csz34 Institutos Lacte Institutos Lactec'),
(53463, 'https://ror.org/00cn0kw78', 'no_lang_code', 1, 'https://ror.org/00cn0kw78 Anhui Conch Design and Research Institute of Building Materials (China)'),
(53464, 'https://ror.org/01f4k3b46', 'en', 1, 'https://ror.org/01f4k3b46 China Electronic Product Reliability and Environmental Test Institute å·„äøšå’Œäæ”ęÆåŒ–éƒØē¬¬äŗ”ē”µå­ē ”ē©¶ę‰€'),
(53465, 'https://ror.org/02mkwcf87', 'id', 1, 'https://ror.org/02mkwcf87 Badan Penelitian dan Pengembangan Kesehatan'),
(53466, 'https://ror.org/008r0bg49', 'en', 1, 'https://ror.org/008r0bg49 Footwear & Recreation Technology Research Institute'),
(53467, 'https://ror.org/017y22r40', 'en', 1, 'https://ror.org/017y22r40 Fujian Metrology Institute'),
(53468, 'https://ror.org/003148c04', 'de', 1, 'https://ror.org/003148c04 Textile Research Institute Thuringia-Vogtland Textilforschungsinstitut Thüringen-Vogtland'),
(53469, 'https://ror.org/04t01vf56', 'en', 1, 'https://ror.org/04t01vf56 Gaia Medical Institute'),
(53470, 'https://ror.org/02r3xd587', 'en', 1, 'https://ror.org/02r3xd587 Central Research Institute of Geological Prospecting for Base and Precious Metals'),
(53471, 'https://ror.org/02kx4r613', 'en', 1, 'https://ror.org/02kx4r613 Girvan Institute of Technology'),
(53472, 'https://ror.org/001rkbe13', 'en', 1, 'https://ror.org/001rkbe13 National Institute of Biomedical Innovation, Health and Nutrition 国立研究開発法人 åŒ»č–¬åŸŗē›¤ 偄康 ę „é¤Šē ”ē©¶ę‰€'),
(53473, 'https://ror.org/05ra3zm12', 'en', 1, 'https://ror.org/05ra3zm12 Gulf South Research Corporation'),
(53474, 'https://ror.org/00p3ce068', 'en', 1, 'https://ror.org/00p3ce068 KIST Europe'),
(53475, 'https://ror.org/04f31ek03', 'en', 1, 'https://ror.org/04f31ek03 National Taiwan Craft Research and Development Institute å›½ē«‹å°ę¹¾å·„č‰ŗē ”ē©¶å‘å±•ē ”ē©¶ę‰€'),
(53476, 'https://ror.org/00k0vt064', 'en', 1, 'https://ror.org/00k0vt064 Research and Design Institute of Urea and Organic Synthesis Products ŠžŃ‚ŠŗŃ€Ń‹Ń‚Š¾Šµ Акционирское ŠžŠ±Ń‰ŠµŃŃ‚во. ИсслеГование. И проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мочевины Šø органического синтеза'),
(53477, 'https://ror.org/01xkgje29', 'en', 1, 'https://ror.org/01xkgje29 Helmholtz Moscow Research Institute of Eye Diseases Московский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ глазных болезней им. Š“ŠµŠ»ŃŒŠ¼Š³Š¾Š»ŃŒŃ†Š°'),
(53478, 'https://ror.org/0242ces81', 'en', 1, 'https://ror.org/0242ces81 Power Tool Institute'),
(53479, 'https://ror.org/05jjkgv58', 'en', 1, 'https://ror.org/05jjkgv58 High Pressure Gas Safety Institute of Japan é«˜åœ§åŠ›ć‚¬ć‚¹å®‰å…Øē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(53480, 'https://ror.org/03y740t04', 'en', 1, 'https://ror.org/03y740t04 Hisayama Research Institute For Lifestyle Diseases ćƒ’ć‚µćƒ¤ćƒžćƒ©ć‚¤ćƒ•ć‚¹ć‚æć‚¤ćƒ«ē ”ē©¶ę‰€'),
(53481, 'https://ror.org/05c18y737', 'no_lang_code', 1, 'https://ror.org/05c18y737 Prous Institute for Biomedical Research (Spain)'),
(53482, 'https://ror.org/04srvct20', 'en', 1, 'https://ror.org/04srvct20 Ophthalmos Eye Research & Therapeutic Institute'),
(53483, 'https://ror.org/04q7nkm38', 'en', 1, 'https://ror.org/04q7nkm38 Institute for Independent Studies Zürich'),
(53484, 'https://ror.org/0486zbr69', 'en', 1, 'https://ror.org/0486zbr69 Saika Technological Institute Foundation äø€čˆ¬č²”å›£ę³•äŗŗ é›‘č³€ęŠ€č”“ē ”ē©¶ę‰€'),
(53485, 'https://ror.org/024pgf395', 'en', 1, 'https://ror.org/024pgf395 Civilisations Matter'),
(53486, 'https://ror.org/05ne9z340', 'no_lang_code', 1, 'https://ror.org/05ne9z340 Foerster (Germany)'),
(53487, 'https://ror.org/032nv5f98', 'en', 1, 'https://ror.org/032nv5f98 ChildCare Education Institute'),
(53488, 'https://ror.org/02m5hv882', 'no_lang_code', 1, 'https://ror.org/02m5hv882 Saline Water Conversion Corporation'),
(53489, 'https://ror.org/01rejfk89', 'en', 1, 'https://ror.org/01rejfk89 Institute for Biotechnology and Medicine Industry'),
(53490, 'https://ror.org/009n12s59', 'en', 1, 'https://ror.org/009n12s59 Institute for Sustainable Communication'),
(53491, 'https://ror.org/02wg70j58', 'en', 1, 'https://ror.org/02wg70j58 Scientific Research Institute of Goznak ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гознака'),
(53492, 'https://ror.org/03kr7zn98', 'no_lang_code', 1, 'https://ror.org/03kr7zn98 Systena (Japan)'),
(53493, 'https://ror.org/007f41232', 'en', 1, 'https://ror.org/007f41232 Scripps Korea Antibody Institute ģŠ¤ķ¬ė¦½ģŠ¤ģ½”ė¦¬ģ•„ķ•­ģ²“ģ—°źµ¬ģ›'),
(53494, 'https://ror.org/05bsp2531', 'en', 1, 'https://ror.org/05bsp2531 Elektronikas un datorzinātņu institūts Institute of Electronics and Computer Science'),
(53495, 'https://ror.org/02gfxpt49', 'en', 1, 'https://ror.org/02gfxpt49 Seasteading Institute'),
(53496, 'https://ror.org/05tywyy79', 'no_lang_code', 1, 'https://ror.org/05tywyy79 Gazprom (Russia) ŠŸŃƒŠ±Š»ŠøŃ‡Š½Š¾Šµ Акционерное ŠžŠ±Ń‰ŠµŃŃ‚во Газпром'),
(53497, 'https://ror.org/04jc7qd72', 'en', 1, 'https://ror.org/04jc7qd72 Serum IVF'),
(53498, 'https://ror.org/038z7hb11', 'en', 1, 'https://ror.org/038z7hb11 Institute of Laboratory Animal Science'),
(53499, 'https://ror.org/03q7xbe07', 'en', 1, 'https://ror.org/03q7xbe07 Shanghai Chemical Reagent Research Institute'),
(53500, 'https://ror.org/03ttbtn09', 'no_lang_code', 1, 'https://ror.org/03ttbtn09 Institute of Musculoskeletal Science & Education (United States)'),
(53501, 'https://ror.org/03t46vz87', 'en', 1, 'https://ror.org/03t46vz87 Institute of Orthopedic Research and Education'),
(53502, 'https://ror.org/016dg3e07', 'no_lang_code', 1, 'https://ror.org/016dg3e07 International Drug Development Institute (Belgium)'),
(53503, 'https://ror.org/05hzgh473', 'no_lang_code', 1, 'https://ror.org/05hzgh473 Institute of Super Compression Technologies (Japan)'),
(53504, 'https://ror.org/04m8jz025', 'en', 1, 'https://ror.org/04m8jz025 South African Sugar Association'),
(53505, 'https://ror.org/04znf4t37', 'en', 1, 'https://ror.org/04znf4t37 Orthodontic World Institute'),
(53506, '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'),
(53507, 'https://ror.org/02ytgbr67', 'no_lang_code', 1, 'https://ror.org/02ytgbr67 Sports Turf Research Institute (United Kingdom)'),
(53508, 'https://ror.org/01x4t9w70', 'no_lang_code', 1, 'https://ror.org/01x4t9w70 Institute Po Zavaryavane (Bulgaria) Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š·Š°Š²Š°Ń€ŃŠ²Š°Š½Šµ'),
(53509, 'https://ror.org/04g5kkh98', 'no_lang_code', 1, 'https://ror.org/04g5kkh98 Stelic Institute (Japan)'),
(53510, 'https://ror.org/04t8pft48', 'no_lang_code', 1, 'https://ror.org/04t8pft48 Nanopolis Suzhou (China) č‹å·žēŗ³ē±³ē§‘ęŠ€å‘å±•ęœ‰é™å…¬åø'),
(53511, 'https://ror.org/026frww69', 'en', 1, 'https://ror.org/026frww69 Research Institute of Mine Rescue ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š“ŠžŠ ŠŠžŠ”ŠŸŠŠ”ŠŠ¢Š•Š›Š¬ŠŠžŠ“Šž ДЕЛА'),
(53512, 'https://ror.org/018yv7m63', 'sv', 1, 'https://ror.org/018yv7m63 Svenska Ɩrtmedicinska Institute'),
(53513, 'https://ror.org/03vvxhb60', 'en', 1, 'https://ror.org/03vvxhb60 Tianjin Municipal Research Institute for Family Planning å¤©ę“„åø‚č®”åˆ’ē”Ÿč‚²ē ”ē©¶ę‰€'),
(53514, 'https://ror.org/038h7ww88', 'en', 1, 'https://ror.org/038h7ww88 Taiwan Agricultural Chemicals and Toxic Substances Research Institute'),
(53515, 'https://ror.org/024n1jd19', 'en', 1, 'https://ror.org/024n1jd19 Eastern Mining-and-Metallurgical Research Institute for Nonferrous Metals Восточный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цветных металлов [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(53516, 'https://ror.org/0095dm157', 'no_lang_code', 1, 'https://ror.org/0095dm157 Tsumura Research Institute (Japan) ę“„ę‘ē·åˆē ”ē©¶ę‰€'),
(53517, 'https://ror.org/05reezh07', 'no_lang_code', 1, 'https://ror.org/05reezh07 Nauchno-issledovatelskiy Institut Tekhnologii Avtomobilnoy Promyshlennosti ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технологии Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(53518, 'https://ror.org/02kq0w941', 'en', 1, 'https://ror.org/02kq0w941 All-Russian Scientific Research Institute of metallurgical heat Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¹ теплотехники'),
(53519, 'https://ror.org/00662k397', 'en', 1, 'https://ror.org/00662k397 Scientific-Research Institute of Electric Power Transmission ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠžŠ”Š¢ŠžŠÆŠŠŠžŠ“Šž Š¢ŠžŠšŠ'),
(53520, 'https://ror.org/05sczh171', 'en', 1, 'https://ror.org/05sczh171 Institute for Problems of Cryobiology and Cryomedicine Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠ‘Š›Š•Šœ ŠšŠ Š†ŠžŠ‘Š†ŠžŠ›ŠžŠ“Š†Š‡ І ŠšŠ Š†ŠžŠœŠ•Š”Š˜Š¦Š˜ŠŠ˜ ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠžŠ‡ ŠŠšŠŠ”Š•ŠœŠ†Š‡ ŠŠŠ£Šš Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(53521, 'https://ror.org/04zp2d344', 'de', 1, 'https://ror.org/04zp2d344 Sächsisches Institut für die Druckindustrie'),
(53522, 'https://ror.org/03c39xh37', 'en', 1, 'https://ror.org/03c39xh37 Institute for applied Biology and Landscape Planning nstitut für angewandte Biologie und Landschaftsplanung'),
(53523, 'https://ror.org/04vh5z648', 'en', 1, 'https://ror.org/04vh5z648 Center for Interdisciplinary Studies of Molecular Interactions'),
(53524, 'https://ror.org/02719dy55', 'en', 1, 'https://ror.org/02719dy55 All-Russian Scientific Research Institute of Fats Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ жиров'),
(53525, 'https://ror.org/02fpe5k66', 'en', 1, 'https://ror.org/02fpe5k66 British Institute of Technology and E-commerce'),
(53526, 'https://ror.org/05axzm004', 'en', 1, 'https://ror.org/05axzm004 Acquisition, Technology & Logistics Agency é˜²č”›č£…å‚™åŗ'),
(53527, 'https://ror.org/0409fn624', 'en', 1, 'https://ror.org/0409fn624 Mammendorf Insitute for Physics and Medicine Mammendorfer Institut für Physik und Medizin'),
(53528, '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'),
(53529, 'https://ror.org/03zpshp42', 'en', 1, 'https://ror.org/03zpshp42 Rostov Research Institute of Oncology Ростовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ онкологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(53530, 'https://ror.org/04s3f1024', 'de', 1, 'https://ror.org/04s3f1024 Staatliches Weinbauinstitut Freiburg'),
(53531, 'https://ror.org/04ayj6s32', 'en', 1, 'https://ror.org/04ayj6s32 Scientific Research Institute of Technical Physics and Automation'),
(53532, 'https://ror.org/05tw6nm64', 'en', 1, 'https://ror.org/05tw6nm64 American Institute of Taxidermy'),
(53533, 'https://ror.org/00zrb8z36', 'en', 1, 'https://ror.org/00zrb8z36 Institute of the Meat and Dairy Industry'),
(53534, 'https://ror.org/035tqry63', 'de', 1, 'https://ror.org/035tqry63 AWA-Institut'),
(53535, 'https://ror.org/05e6y9g54', 'en', 1, 'https://ror.org/05e6y9g54 Vostochniy Research Institute for Mining Safety ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Š’Š¾ŃŃ‚ŠŠ˜Š˜ по безопасности работ в горной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(53536, 'https://ror.org/007cmf111', 'en', 1, 'https://ror.org/007cmf111 Eastern Research Institute of Coal Chemistry Восточный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(53537, 'https://ror.org/04t21k589', 'no_lang_code', 1, 'https://ror.org/04t21k589 Nexira (France)'),
(53538, 'https://ror.org/02zfj1j12', 'en', 1, 'https://ror.org/02zfj1j12 Australian Export Grains Innovation Centre'),
(53539, 'https://ror.org/03wpt5182', 'en', 1, 'https://ror.org/03wpt5182 All-Russian Scientific Research Institute of Viticulture and Winemaking behalf of JI Potapenko Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ винограГарства Šø Š²ŠøŠ½Š¾Š“ŠµŠ»ŠøŃ имени ŠÆ.И. ŠŸŠ¾Ń‚Š°ŠæŠµŠ½ŠŗŠ¾'),
(53540, 'https://ror.org/01dyffq73', 'en', 1, 'https://ror.org/01dyffq73 Burzynski Research Institute'),
(53541, 'https://ror.org/00w3cd056', 'en', 1, 'https://ror.org/00w3cd056 California Institute of Computer-Assisted Surgery'),
(53542, 'https://ror.org/03sxe4z39', 'en', 1, 'https://ror.org/03sxe4z39 Institute of Electronic Control Machines'),
(53543, 'https://ror.org/02dkph265', 'en', 1, 'https://ror.org/02dkph265 Russian State Scientific Center for Robotics and Technical Cybernetics Š¦ŠŠ˜Š˜ робототехники Šø технической кибернетики'),
(53544, 'https://ror.org/04xqmah83', 'en', 1, 'https://ror.org/04xqmah83 Scientific Research Institute of Steel ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š”Š¢ŠŠ›Š˜'),
(53545, 'https://ror.org/048h6zc16', 'en', 1, 'https://ror.org/048h6zc16 Research Institute of Chemicals for Polymeric Materials'),
(53546, 'https://ror.org/0422tyr14', 'en', 1, 'https://ror.org/0422tyr14 Federal State Scientific Institution Research Institute of Eye Diseases Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ глазных болезней'),
(53547, 'https://ror.org/0136wrs55', 'en', 1, 'https://ror.org/0136wrs55 Scientific Research and Design Institute of Technology Equipment Refining and Petrochemical Industries Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠšŠžŠŠ”Š¢Š Š£ŠšŠ¢ŠžŠ Š”ŠšŠž-Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠžŠ‘ŠžŠ Š£Š”ŠžŠ’ŠŠŠ˜ŠÆ ŠŠ•Š¤Š¢Š•ŠŸŠ•Š Š•Š ŠŠ‘ŠŠ¢Š«Š’ŠŠ®Š©Š•Š™ И ŠŠ•Š¤Š¢Š•Š„Š˜ŠœŠ˜Š§Š•Š”ŠšŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(53548, 'https://ror.org/02knn1508', 'en', 1, 'https://ror.org/02knn1508 Research and Technological Institute of Biological Industry Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологической ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(53549, 'https://ror.org/01j65xt21', 'en', 1, 'https://ror.org/01j65xt21 Rain Forest Research Institute'),
(53550, 'https://ror.org/04grwn689', 'en', 1, 'https://ror.org/04grwn689 Ufa Eye Research Institute'),
(53551, 'https://ror.org/00wjnd087', 'en', 1, 'https://ror.org/00wjnd087 Hari Shankar Singhania Elastomer And Tyre Research Institute'),
(53552, 'https://ror.org/02131zb90', 'en', 1, 'https://ror.org/02131zb90 The Research Institute for Fertilizers and Insectofungicides Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠ“Š¾Š±Ń€ŠµŠ½ŠøŠ¹ Šø ŠøŠ½ŃŠµŠŗŃ‚Š¾Ń„ŃƒŠ½Š³ŠøŃ†ŠøŠ“Š¾Š² имени ŠÆ. Š’. Дамойлова'),
(53553, 'https://ror.org/01yeyd808', 'en', 1, 'https://ror.org/01yeyd808 Life Science Institute'),
(53554, 'https://ror.org/053bhme26', 'en', 1, 'https://ror.org/053bhme26 Technological Design Institute of Scientific Instrument Engineering'),
(53555, 'https://ror.org/049yqqs33', 'en', 1, 'https://ror.org/049yqqs33 Heidelberg Institute for Stem Cell Technology and Experimental Medicine'),
(53556, 'https://ror.org/02bjrgr44', 'en', 1, 'https://ror.org/02bjrgr44 Scientific Research Institute of the Rubber Industry ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ резиновой ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(53557, 'https://ror.org/02ty8xh41', 'en', 1, 'https://ror.org/02ty8xh41 Himalayan Institute of Yoga Science and Philosophy'),
(53558, 'https://ror.org/035svbv36', 'en', 1, 'https://ror.org/035svbv36 Juntendo University Shizuoka Hospital é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žé™å²”ē—…é™¢'),
(53559, 'https://ror.org/05g1hyz84', 'en', 1, 'https://ror.org/05g1hyz84 Juntendo University Nerima Hospital é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žē·“é¦¬ē—…é™¢'),
(53560, 'https://ror.org/03gxkq182', 'en', 1, 'https://ror.org/03gxkq182 Juntendo University Urayasu Hospital é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žęµ¦å®‰ē—…é™¢'),
(53561, 'https://ror.org/02wp0er57', 'en', 1, 'https://ror.org/02wp0er57 Royal Jubilee Maternity Services'),
(53562, 'https://ror.org/05gyj2g50', 'en', 1, 'https://ror.org/05gyj2g50 Royal Victoria Hospital'),
(53563, 'https://ror.org/02tw69288', 'en', 1, 'https://ror.org/02tw69288 Mohawk Valley Psychiatric Center'),
(53564, 'https://ror.org/047s4cx41', 'en', 1, 'https://ror.org/047s4cx41 Pilgrim Psychiatric Center'),
(53565, 'https://ror.org/02yn1ge31', 'en', 1, 'https://ror.org/02yn1ge31 Carilion Roanoke Community Hospital'),
(53566, 'https://ror.org/02cm3s998', 'de', 1, 'https://ror.org/02cm3s998 Donauspital'),
(53567, 'https://ror.org/052rvpm80', 'en', 1, 'https://ror.org/052rvpm80 Chattahoochee Valley Community College'),
(53568, 'https://ror.org/03p504z95', 'no_lang_code', 1, 'https://ror.org/03p504z95 Rosogneupor (Russia) Š Š¾ŃŠ¾Š³Š½ŠµŃƒŠæŠ¾Ń€'),
(53569, 'https://ror.org/04qr72260', 'no_lang_code', 1, 'https://ror.org/04qr72260 Gateway Group (India)'),
(53570, 'https://ror.org/01nn1pw54', 'no_lang_code', 1, 'https://ror.org/01nn1pw54 Addgene'),
(53571, 'https://ror.org/006cer819', 'en', 1, 'https://ror.org/006cer819 Developmental Studies Hybridoma Bank'),
(53572, 'https://ror.org/01920rj20', 'en', 1, 'https://ror.org/01920rj20 Roslin Institute'),
(53573, 'https://ror.org/00fyrp007', 'en', 1, 'https://ror.org/00fyrp007 NeuroMab'),
(53574, 'https://ror.org/026dax180', 'en', 1, 'https://ror.org/026dax180 NIMH Repository and Genomics Resource'),
(53575, 'https://ror.org/05b50ej63', 'es', 1, 'https://ror.org/05b50ej63 Instituto de Investigaciones Biológicas Clemente Estable'),
(53576, 'https://ror.org/02x909r11', 'no_lang_code', 1, 'https://ror.org/02x909r11 Fonterra (United States)'),
(53577, 'https://ror.org/02cbc9x18', 'en', 1, 'https://ror.org/02cbc9x18 Ural Institute of Metals'),
(53578, 'https://ror.org/051bwap89', 'en', 1, 'https://ror.org/051bwap89 Institute for Information Recording Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем реєстрації інформації ŠŠŠ України'),
(53579, 'https://ror.org/01tx9js75', 'en', 1, 'https://ror.org/01tx9js75 Groundwater Center Grundwasser-Zentrum'),
(53580, 'https://ror.org/028m4pg81', 'en', 1, 'https://ror.org/028m4pg81 Kazakh Scientific Research Veterinary Institute'),
(53581, 'https://ror.org/035qjq024', 'no_lang_code', 1, 'https://ror.org/035qjq024 Niip Gradostroitelstva ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по разработке Š³ŠµŠ½ŠµŃ€Š°Š»ŃŒŠ½Ń‹Ń… планов Šø проектов застройки гороГов'),
(53582, 'https://ror.org/04yaz0z51', 'it', 1, 'https://ror.org/04yaz0z51 Ospedale San Raffaele Arcangelo'),
(53583, 'https://ror.org/00g7hs466', 'en', 1, 'https://ror.org/00g7hs466 Hyaluronan Research Institute ę Ŗå¼ä¼šē¤¾ ćƒ’ć‚¢ćƒ«ćƒ­ćƒ³é…øē ”ē©¶ę‰€'),
(53584, 'https://ror.org/02k7w8856', 'de', 1, 'https://ror.org/02k7w8856 Keramikinstitut'),
(53585, 'https://ror.org/04dvapm76', 'no_lang_code', 1, 'https://ror.org/04dvapm76 Canfield Scientific (United States)'),
(53586, 'https://ror.org/05j242h88', 'fr', 1, 'https://ror.org/05j242h88 RƩseau de SantƩ VitalitƩ VitalitƩ Health Network'),
(53587, 'https://ror.org/035k7f515', 'en', 1, 'https://ror.org/035k7f515 Shandong Food Fermentation Industry Research and Design Institute å±±äøœēœé£Ÿå“å‘é…µå·„äøšē ”ē©¶č®¾č®”é™¢'),
(53588, 'https://ror.org/01tk0cw08', 'en', 1, 'https://ror.org/01tk0cw08 Central Research Institute for Jute and Allied Fibres'),
(53589, 'https://ror.org/005zvr630', 'de', 1, 'https://ror.org/005zvr630 Forschungsinstitut für Anorganische Werkstoffe -Glas/Keramik'),
(53590, 'https://ror.org/01gv18538', 'en', 1, 'https://ror.org/01gv18538 Institute of Formulation, Analysis and Quality Control Research'),
(53591, 'https://ror.org/04we3tx21', 'en', 1, 'https://ror.org/04we3tx21 Institute of Geology of the Karelian Research Center Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии ŠšŠ°Ń€ŠŠ¦ Š ŠŠ'),
(53592, 'https://ror.org/03hcbtk03', 'en', 1, 'https://ror.org/03hcbtk03 Institut Dr Schrader Creachem'),
(53593, 'https://ror.org/04fv3z273', 'en', 1, 'https://ror.org/04fv3z273 Research Institute of Natural and Synthetic Diamonds'),
(53594, 'https://ror.org/00jwvkg84', 'en', 1, 'https://ror.org/00jwvkg84 Physics and Technology Institute of Metals and Alloys Физико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металлов Šø сплавов'),
(53595, 'https://ror.org/052kzcg37', 'en', 1, 'https://ror.org/052kzcg37 Indian Plywood Industries Research and Training Institute'),
(53596, 'https://ror.org/00b8nfj92', 'en', 1, 'https://ror.org/00b8nfj92 Jangheung Mushroom Industry Research ģž„ķ„źµ°ė²„ģ„Æģ‚°ģ—…ģ—°źµ¬ģ›'),
(53597, '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'),
(53598, 'https://ror.org/05rd7y749', 'en', 1, 'https://ror.org/05rd7y749 Seamester'),
(53599, 'https://ror.org/01r0w2t07', 'de', 1, 'https://ror.org/01r0w2t07 Mandat International'),
(53600, 'https://ror.org/05ssa1185', 'en', 1, 'https://ror.org/05ssa1185 State Scientific Production Association of Industrial Ecology'),
(53601, 'https://ror.org/01jvhre18', 'en', 1, 'https://ror.org/01jvhre18 IndraStra Global'),
(53602, 'https://ror.org/03tg26f52', 'en', 1, 'https://ror.org/03tg26f52 Bansal Institute Of Research Technology & Science'),
(53603, 'https://ror.org/021a66733', 'en', 1, 'https://ror.org/021a66733 Institute for Rural Engineering č¾²ę‘å·„å­¦ē ”ē©¶éƒØé–€'),
(53604, 'https://ror.org/01v0srp85', 'en', 1, 'https://ror.org/01v0srp85 Tropical Forest Research Institute'),
(53605, 'https://ror.org/03qvjzj64', 'en', 1, 'https://ror.org/03qvjzj64 St. John''s National Academy of Health Sciences'),
(53606, 'https://ror.org/00280kv44', 'no_lang_code', 1, 'https://ror.org/00280kv44 Micromun'),
(53607, 'https://ror.org/00hwty226', 'en', 1, 'https://ror.org/00hwty226 Xiamen Institute of Rare-earth Materials äø­å›½ē§‘å­¦é™¢ęµ·č„æē ”ē©¶é™¢åŽ¦é—ØēØ€åœŸęę–™ē ”ē©¶ę‰€'),
(53608, 'https://ror.org/05n0b7q40', 'en', 1, 'https://ror.org/05n0b7q40 Geological Exploration Institute of Shandong Zhengyuan å±±äøœę­£å…ƒåœ°č“Øå‹˜ęŸ„é™¢'),
(53609, 'https://ror.org/04f0ydx59', 'en', 1, 'https://ror.org/04f0ydx59 Bioengineering Center Š‘ŠøŠ¾ŠøŠ½Š¶ŠµŠ½ŠµŃ€ŠøŃ'),
(53610, 'https://ror.org/04s5ej408', 'en', 1, 'https://ror.org/04s5ej408 Kitasato University East Hospital åŒ—é‡Œå¤§å­¦ę±ē—…é™¢'),
(53611, 'https://ror.org/040w2dm02', 'en', 1, 'https://ror.org/040w2dm02 Interuniversity Institute for High Energies'),
(53612, 'https://ror.org/05pcmd548', 'en', 1, 'https://ror.org/05pcmd548 Institute of Chemistry of Silicates named after I.V. Grebenshchikov Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии силикатов имени И. Š’. Гребенщикова Š ŠŠ'),
(53613, 'https://ror.org/02jv3yx22', 'en', 1, 'https://ror.org/02jv3yx22 G.V. Karpenko Physical-Mechanical Institute Š¤Š†Š—Š˜ŠšŠž-ŠœŠ•Š„ŠŠŠ†Š§ŠŠ˜Š™ Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ Š†Šœ. Š“.Š’. ŠšŠŠ ŠŸŠ•ŠŠšŠ ŠAH Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(53614, 'https://ror.org/02890ms09', 'en', 1, 'https://ror.org/02890ms09 Kyushu Okinawa Agricultural Research Center ä¹å·žę²–ēø„č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(53615, 'https://ror.org/03hvvks39', 'en', 1, 'https://ror.org/03hvvks39 Institute for Polymer Mechanics'),
(53616, 'https://ror.org/040nrzc79', 'no_lang_code', 1, 'https://ror.org/040nrzc79 R.T. Vanderbilt Holding (United States)'),
(53617, 'https://ror.org/03xswyc88', 'en', 1, 'https://ror.org/03xswyc88 Reproductive Medicine Associates of New York'),
(53618, 'https://ror.org/00j681549', 'no_lang_code', 1, 'https://ror.org/00j681549 Sofradir (France)'),
(53619, 'https://ror.org/0193emr15', 'en', 1, 'https://ror.org/0193emr15 ASI Consulting Group (United States)'),
(53620, 'https://ror.org/03s2vt470', 'en', 1, 'https://ror.org/03s2vt470 BMJ Careers'),
(53621, 'https://ror.org/015y4fr56', 'en', 1, 'https://ror.org/015y4fr56 Institute of Paleontology A A Borisyak ŠŸŠ°Š»ŠµŠ¾Š½Ń‚Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени А. А. Š‘Š¾Ń€ŠøŃŃŠŗŠ° Š ŠŠ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(53622, 'https://ror.org/010m1h651', 'en', 1, 'https://ror.org/010m1h651 American College of Veterinary Ophthalmologists'),
(53623, 'https://ror.org/03msdt869', 'en', 1, 'https://ror.org/03msdt869 Institute of Plant and Animal Ecology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø растений Šø животных Š£Ń€Šž Š ŠŠ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(53624, 'https://ror.org/05gebng48', 'en', 1, 'https://ror.org/05gebng48 CPCL Polytechnic College'),
(53625, 'https://ror.org/02byy6y80', 'en', 1, 'https://ror.org/02byy6y80 Palm Beach Gardens Medical Center'),
(53626, 'https://ror.org/01vgqcc30', 'en', 1, 'https://ror.org/01vgqcc30 Abbey of the Holy Trinity'),
(53627, 'https://ror.org/040g76k92', 'no_lang_code', 1, 'https://ror.org/040g76k92 IQVIA (United Kingdom)'),
(53628, 'https://ror.org/03gzf6s70', 'no_lang_code', 1, 'https://ror.org/03gzf6s70 Steuler (Germany)'),
(53629, 'https://ror.org/02njr9k66', 'no_lang_code', 1, 'https://ror.org/02njr9k66 FWRadiology'),
(53630, 'https://ror.org/048g28j84', 'en', 1, 'https://ror.org/048g28j84 Industrial Technology Center of Okayama Prefecture å²”å±±ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(53631, 'https://ror.org/03006qf92', 'en', 1, 'https://ror.org/03006qf92 Reid Veterinary Hospital'),
(53632, 'https://ror.org/05td8h732', 'en', 1, 'https://ror.org/05td8h732 Florida State Collection of Arthropods'),
(53633, 'https://ror.org/05hsqsk33', 'en', 1, 'https://ror.org/05hsqsk33 Imaging Center'),
(53634, 'https://ror.org/02ep9me51', 'en', 1, 'https://ror.org/02ep9me51 Tonbridge School'),
(53635, 'https://ror.org/047kkxp41', 'en', 1, 'https://ror.org/047kkxp41 Institute of Vegetable and Floriculture Science é‡ŽčœčŠ±ćē ”ē©¶éƒØé–€'),
(53636, 'https://ror.org/02mahq469', 'en', 1, 'https://ror.org/02mahq469 Sri Lanka College of Paediatricians'),
(53637, 'https://ror.org/059w4gg22', 'en', 1, 'https://ror.org/059w4gg22 Village Veterinary Medical Center'),
(53638, 'https://ror.org/027kj2v52', 'en', 1, 'https://ror.org/027kj2v52 American Board of Veterinary Practitioners'),
(53639, 'https://ror.org/030t7nd77', 'en', 1, 'https://ror.org/030t7nd77 Beijing Radiation Center åŒ—äŗ¬åø‚č¾å°„äø­åæƒ'),
(53640, 'https://ror.org/03fqz3d07', 'no_lang_code', 1, 'https://ror.org/03fqz3d07 Chondrometrics (Germany)'),
(53641, 'https://ror.org/05n9nqv74', 'en', 1, 'https://ror.org/05n9nqv74 Western Region Agricultural Research Center č„æę—„ęœ¬č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(53642, 'https://ror.org/04yhya597', 'en', 1, 'https://ror.org/04yhya597 Blue Marble Space Institute of Science'),
(53643, 'https://ror.org/04hrt9p44', 'no_lang_code', 1, 'https://ror.org/04hrt9p44 Clariant (United States)'),
(53644, 'https://ror.org/05dd7v362', 'en', 1, 'https://ror.org/05dd7v362 DermSurgery Associates'),
(53645, 'https://ror.org/00k389086', 'no_lang_code', 1, 'https://ror.org/00k389086 Forsthoffer Associates (United States)'),
(53646, 'https://ror.org/044xdg011', 'no_lang_code', 1, 'https://ror.org/044xdg011 Toppan (United States)'),
(53647, 'https://ror.org/03kwycy34', 'en', 1, 'https://ror.org/03kwycy34 Harris Birthright Research Centre for Fetal Medicine'),
(53648, 'https://ror.org/01qp9b498', 'en', 1, 'https://ror.org/01qp9b498 Dominion Astrophysical Observatory'),
(53649, 'https://ror.org/01kxgx123', 'en', 1, 'https://ror.org/01kxgx123 Walsall Academy'),
(53650, 'https://ror.org/03r493e52', 'en', 1, 'https://ror.org/03r493e52 Institute of Bioorganic Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° биоорганической химии ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(53651, 'https://ror.org/0281xn193', 'en', 1, 'https://ror.org/0281xn193 Japan Society for Laser Surgery and Medicine ę—„ęœ¬ćƒ¬ćƒ¼ć‚¶ćƒ¼åŒ»å­¦ä¼š'),
(53652, 'https://ror.org/0378cd528', 'en', 1, 'https://ror.org/0378cd528 Institute for Cognitive Science Studies Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… Ų“Ł†Ų§Ų®ŲŖŪŒ'),
(53653, 'https://ror.org/04kdaf332', 'en', 1, 'https://ror.org/04kdaf332 Kauffman Physical Therapy'),
(53654, 'https://ror.org/02nbjdt61', 'en', 1, 'https://ror.org/02nbjdt61 Defense Contract Audit Agency'),
(53655, 'https://ror.org/04jebr251', 'en', 1, 'https://ror.org/04jebr251 International Civil Aviation Organization'),
(53656, 'https://ror.org/02v982853', 'no_lang_code', 1, 'https://ror.org/02v982853 NationalRad (United States)'),
(53657, 'https://ror.org/04pq1cd03', 'en', 1, 'https://ror.org/04pq1cd03 Central Region Agricultural Research Center äø­å¤®č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼:åŒ—é™øē ”ē©¶ę‹ ē‚¹'),
(53658, 'https://ror.org/00e7h6j41', 'en', 1, 'https://ror.org/00e7h6j41 Japan Institute of Leather Research ę—„ęœ¬ēš®é©ē ”ē©¶ę‰€'),
(53659, 'https://ror.org/051jcqr59', 'en', 1, 'https://ror.org/051jcqr59 Bytown Cat Hospital'),
(53660, 'https://ror.org/013qc1j71', 'en', 1, 'https://ror.org/013qc1j71 Paws & Claws Animal Hospital and Holistic Pet Center'),
(53661, 'https://ror.org/040d4nb67', 'no_lang_code', 1, 'https://ror.org/040d4nb67 Pharmerit (United States)'),
(53662, 'https://ror.org/00ntr9f13', 'no_lang_code', 1, 'https://ror.org/00ntr9f13 Pharmerit (Netherlands)'),
(53663, 'https://ror.org/05jg7dd90', 'no_lang_code', 1, 'https://ror.org/05jg7dd90 Photronics (United States)'),
(53664, 'https://ror.org/02bcs6e63', 'no_lang_code', 1, 'https://ror.org/02bcs6e63 Plant Lipids (India)'),
(53665, 'https://ror.org/03swnf798', 'en', 1, 'https://ror.org/03swnf798 Platte Valley Medical Center'),
(53666, 'https://ror.org/015g21p04', 'en', 1, 'https://ror.org/015g21p04 Marathon Veterinary Hospital'),
(53667, 'https://ror.org/05d64cx77', 'en', 1, 'https://ror.org/05d64cx77 Wellcome Trust Centre for the History of Medicine'),
(53668, 'https://ror.org/02x42kc45', 'en', 1, 'https://ror.org/02x42kc45 Sedgwick Museum of Earth Sciences'),
(53669, 'https://ror.org/003m2d425', 'no_lang_code', 1, 'https://ror.org/003m2d425 United BioSource Corporation (United Kingdom)'),
(53670, 'https://ror.org/008cftc05', 'en', 1, 'https://ror.org/008cftc05 Regional Center for Poison Control and Prevention'),
(53671, 'https://ror.org/034js7368', 'pt', 1, 'https://ror.org/034js7368 Sociedade Brasileira de Cirurgia PlƔstica'),
(53672, 'https://ror.org/056ezyb19', 'en', 1, 'https://ror.org/056ezyb19 Society of Analytical Psychology'),
(53673, 'https://ror.org/04pnnsh51', 'no_lang_code', 1, 'https://ror.org/04pnnsh51 Advanced Mask Technology Center (Germany)'),
(53674, 'https://ror.org/05fd45014', 'en', 1, 'https://ror.org/05fd45014 BresMed'),
(53675, 'https://ror.org/05h7bqz94', 'en', 1, 'https://ror.org/05h7bqz94 Brown-Spath & Associates'),
(53676, 'https://ror.org/013eh0c53', 'en', 1, 'https://ror.org/013eh0c53 American Institute for Psychoanalysis'),
(53677, 'https://ror.org/02sp4ja91', 'en', 1, 'https://ror.org/02sp4ja91 Institute of Physics. HI Amirkhanova Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики им. Š„.И. Амирханова'),
(53678, 'https://ror.org/00pemyx71', 'no_lang_code', 1, 'https://ror.org/00pemyx71 Sanas (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒŠć‚¹'),
(53679, 'https://ror.org/0505he277', 'no_lang_code', 1, 'https://ror.org/0505he277 Central Japan Railway (Japan) ę±ęµ·ę—…å®¢é‰„é“ę Ŗå¼ä¼šē¤¾'),
(53680, 'https://ror.org/04sygbn06', 'en', 1, 'https://ror.org/04sygbn06 CEP America'),
(53681, 'https://ror.org/03kse5219', 'en', 1, 'https://ror.org/03kse5219 Bell Equine Veterinary Clinic'),
(53682, 'https://ror.org/04wwp6r22', 'de', 1, 'https://ror.org/04wwp6r22 BG Klinik Tübingen'),
(53683, 'https://ror.org/044kkbh92', 'no_lang_code', 1, 'https://ror.org/044kkbh92 BMW Group (Germany)'),
(53684, 'https://ror.org/02ex12682', 'en', 1, 'https://ror.org/02ex12682 Michigan Hand & Wrist'),
(53685, 'https://ror.org/04mm9fg30', 'en', 1, 'https://ror.org/04mm9fg30 IMDEA Networks Instituto IMDEA Networks'),
(53686, 'https://ror.org/003h15w42', 'no_lang_code', 1, 'https://ror.org/003h15w42 Galaxy Advanced Engineering (United States)'),
(53687, 'https://ror.org/02skytd81', 'en', 1, 'https://ror.org/02skytd81 IMDEA Nanoscience Instituto IMDEA Nanociencia'),
(53688, 'https://ror.org/04rhps755', 'es', 1, 'https://ror.org/04rhps755 IMDEA Water Instituto IMDEA Agua'),
(53689, 'https://ror.org/04g4ezh90', 'en', 1, 'https://ror.org/04g4ezh90 IMDEA Food Instituto IMDEA Alimentación'),
(53690, 'https://ror.org/059qzhk26', 'fr', 1, 'https://ror.org/059qzhk26 HƓpital La Porte Verte'),
(53691, 'https://ror.org/0117j0167', 'no_lang_code', 1, 'https://ror.org/0117j0167 Envigo (United Kingdom)'),
(53692, 'https://ror.org/01e8d4510', 'it', 1, 'https://ror.org/01e8d4510 SDN Istituto di Ricerca Diagnostica e Nucleare'),
(53693, 'https://ror.org/03hkn9159', 'en', 1, 'https://ror.org/03hkn9159 Goulburn Valley Equine Hospital'),
(53694, 'https://ror.org/04xjjma71', 'en', 1, 'https://ror.org/04xjjma71 Institute of Chemistry, Academia Sinica'),
(53695, 'https://ror.org/03v3fza79', 'en', 1, 'https://ror.org/03v3fza79 Japan Radioisotope Association ę—„ęœ¬ć‚¢ć‚¤ć‚½ćƒˆćƒ¼ćƒ—å”ä¼š'),
(53696, 'https://ror.org/01nd4pb60', 'en', 1, 'https://ror.org/01nd4pb60 Kanagawa Environmental Research Center ē„žå„ˆå·ēœŒē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(53697, 'https://ror.org/01ksntm04', 'no_lang_code', 1, 'https://ror.org/01ksntm04 Oblikue Consulting (Spain)'),
(53698, 'https://ror.org/00vgm4247', 'en', 1, 'https://ror.org/00vgm4247 Tohoku Agricultural Research Center ę±åŒ—č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(53699, 'https://ror.org/01909jb21', 'fr', 1, 'https://ror.org/01909jb21 LycƩe Pierre-de-Fermat'),
(53700, 'https://ror.org/0229ja564', 'de', 1, 'https://ror.org/0229ja564 Kliniken des Landkreises Lƶrrach'),
(53701, 'https://ror.org/03zegg939', 'en', 1, 'https://ror.org/03zegg939 Diocese of Ely'),
(53702, 'https://ror.org/038xj9474', 'en', 1, 'https://ror.org/038xj9474 Okinawa Prefectural Agricultural Research Center ę²–ēø„ēœŒč¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(53703, 'https://ror.org/033sc9d20', 'en', 1, 'https://ror.org/033sc9d20 Kumamoto Orthopedic Surgery Hospital'),
(53704, 'https://ror.org/02mn08y26', 'en', 1, 'https://ror.org/02mn08y26 Ordnance Engineering College 中国人民解放军军械巄程学院'),
(53705, 'https://ror.org/0439y7f21', 'de', 1, 'https://ror.org/0439y7f21 Krebsregister Saarland'),
(53706, 'https://ror.org/0151hvz61', 'en', 1, 'https://ror.org/0151hvz61 San Diego Center for Spinal Disorders'),
(53707, 'https://ror.org/01607kg94', 'no_lang_code', 1, 'https://ror.org/01607kg94 Nokia (China)'),
(53708, 'https://ror.org/02bsxxg37', 'no_lang_code', 1, 'https://ror.org/02bsxxg37 PAGEPress (Italy)'),
(53709, 'https://ror.org/048rt2d32', 'nl', 1, 'https://ror.org/048rt2d32 Cicero Zorggroep'),
(53710, 'https://ror.org/057a4a874', 'no_lang_code', 1, 'https://ror.org/057a4a874 Sutherland HDL (United States)'),
(53711, 'https://ror.org/04hcjez88', 'no_lang_code', 1, 'https://ror.org/04hcjez88 Novel Health Strategies (United States)'),
(53712, 'https://ror.org/01ryjjz47', 'en', 1, 'https://ror.org/01ryjjz47 Siberian Institute of Plant Physiology and Biochemistry Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии Šø биохимии растений Š”Šž Š ŠŠ'),
(53713, 'https://ror.org/05ancvs60', 'en', 1, 'https://ror.org/05ancvs60 Siloam Eye Hospital ģ‹¤ė”œģ•”ģ•ˆź³¼ė³‘ģ›'),
(53714, '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'),
(53715, 'https://ror.org/052ce7c92', 'en', 1, 'https://ror.org/052ce7c92 Population Council'),
(53716, 'https://ror.org/01zt9h285', 'en', 1, 'https://ror.org/01zt9h285 Postgraduate Center for Mental Health'),
(53717, 'https://ror.org/00jz7d133', 'en', 1, 'https://ror.org/00jz7d133 Princess Alexandra Eye Pavilion'),
(53718, 'https://ror.org/00m5hxb63', 'en', 1, 'https://ror.org/00m5hxb63 Parrott Equine Associates'),
(53719, 'https://ror.org/023pc0v92', 'it', 1, 'https://ror.org/023pc0v92 Ospedale San Paolo'),
(53720, 'https://ror.org/0432s1v23', 'en', 1, 'https://ror.org/0432s1v23 University Vascular Associates'),
(53721, 'https://ror.org/05ap66461', 'en', 1, 'https://ror.org/05ap66461 University School'),
(53722, 'https://ror.org/01z38sf41', 'no_lang_code', 1, 'https://ror.org/01z38sf41 AmerisourceBergen (United States)'),
(53723, 'https://ror.org/00ye0ab97', 'no_lang_code', 1, 'https://ror.org/00ye0ab97 GREEN Tox (Switzerland)'),
(53724, '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'),
(53725, 'https://ror.org/03chnjt72', 'en', 1, 'https://ror.org/03chnjt72 Natural History Museum of Basel Naturhistorisches Museum Basel'),
(53726, 'https://ror.org/057zjf715', 'en', 1, 'https://ror.org/057zjf715 Centre for Applied Studies in International Negotiations'),
(53727, 'https://ror.org/03pext169', 'en', 1, 'https://ror.org/03pext169 National Agriculture in the Classroom'),
(53728, 'https://ror.org/044r2ge26', 'en', 1, 'https://ror.org/044r2ge26 Alpine Biology Center Centro Biologia Alpina'),
(53729, 'https://ror.org/03apaw308', 'de', 1, 'https://ror.org/03apaw308 Stiftung für Forschung in Spätantike und Mittelalter HR. Sennhauser'),
(53730, 'https://ror.org/00vzfcj75', 'de', 1, 'https://ror.org/00vzfcj75 Gesellschaft für Schweizerische Kunstgeschichte'),
(53731, 'https://ror.org/00nqrzf67', 'de', 1, 'https://ror.org/00nqrzf67 Aargauer Kantonsbibliothek'),
(53732, 'https://ror.org/01mmqh025', 'no_lang_code', 1, 'https://ror.org/01mmqh025 ADR-AC (Switzerland)'),
(53733, 'https://ror.org/01017e202', 'en', 1, 'https://ror.org/01017e202 Stiftung Bibliothek Werner Oechslin Werner Oechslin Library Foundation'),
(53734, 'https://ror.org/00vfhwc85', 'no_lang_code', 1, 'https://ror.org/00vfhwc85 Interlifescience (Switzerland)'),
(53735, 'https://ror.org/03ed0c093', 'en', 1, 'https://ror.org/03ed0c093 Cantonal Archives of the Grisons Staatsarchiv Graubünden'),
(53736, 'https://ror.org/052grs779', 'it', 1, 'https://ror.org/052grs779 Archivio di Stato del canton Ticino'),
(53737, 'https://ror.org/00arm4s37', 'de', 1, 'https://ror.org/00arm4s37 State Archives Basel-Stadt'),
(53738, 'https://ror.org/019hb2q78', 'de', 1, 'https://ror.org/019hb2q78 Staatsarchiv des Kantons Zürich'),
(53739, 'https://ror.org/027m3cy15', 'de', 1, 'https://ror.org/027m3cy15 Global Risk Forum GRF Davos'),
(53740, 'https://ror.org/03egrq064', 'fr', 1, 'https://ror.org/03egrq064 HƓpital NestlƩ'),
(53741, 'https://ror.org/02ed1t230', 'de', 1, 'https://ror.org/02ed1t230 Sprachatlas der Deutschen Schweiz'),
(53742, 'https://ror.org/024009532', 'fr', 1, 'https://ror.org/024009532 HƓpital de Beaumont'),
(53743, 'https://ror.org/03f3ngc78', 'no_lang_code', 1, 'https://ror.org/03f3ngc78 Sigmaplan (Switzerland)'),
(53744, 'https://ror.org/05nhx4339', 'en', 1, 'https://ror.org/05nhx4339 Umbricht Attorneys'),
(53745, 'https://ror.org/02stkxd13', 'fr', 1, 'https://ror.org/02stkxd13 MusƩe Cantonal d''ArchƩologie et d''Histoire'),
(53746, 'https://ror.org/039395021', 'fr', 1, 'https://ror.org/039395021 Vitrocentre Romont'),
(53747, 'https://ror.org/017ep6b53', 'de', 1, 'https://ror.org/017ep6b53 Natur Museum Luzern'),
(53748, 'https://ror.org/00kr3hh47', 'de', 1, 'https://ror.org/00kr3hh47 Antikenmuseum Basel und Sammlung Ludwig Basel Museum of Ancient Art and Ludwig Collection'),
(53749, 'https://ror.org/00vkatb78', 'no_lang_code', 1, 'https://ror.org/00vkatb78 BHP - Hanser und Partner (Switzerland)'),
(53750, 'https://ror.org/034e48p94', 'de', 1, 'https://ror.org/034e48p94 Kantonsspital Baden'),
(53751, 'https://ror.org/04qtg7h28', 'fr', 1, 'https://ror.org/04qtg7h28 Centre RƩgional d''Etudes des Populations Alpines'),
(53752, 'https://ror.org/03jevp076', 'fr', 1, 'https://ror.org/03jevp076 Service de la recherche Ʃducation'),
(53753, 'https://ror.org/01g0hty05', 'no_lang_code', 1, 'https://ror.org/01g0hty05 Interface Politikstudien (Switzerland) Interface Politikstudien Forschung Beratung'),
(53754, 'https://ror.org/01g1mjb10', 'fr', 1, 'https://ror.org/01g1mjb10 Cabinet Gastroenterology La Source-Beaulieu'),
(53755, 'https://ror.org/02mpqfe95', 'no_lang_code', 1, 'https://ror.org/02mpqfe95 GeoExpert (Switzerland)'),
(53756, 'https://ror.org/02k58vv46', 'en', 1, 'https://ror.org/02k58vv46 Institute for Work Research and Organizational Consultancy'),
(53757, 'https://ror.org/00seh5759', 'no_lang_code', 1, 'https://ror.org/00seh5759 Econcept (Switzerland)'),
(53758, 'https://ror.org/03qa42z85', 'it', 1, 'https://ror.org/03qa42z85 Librairie Droz'),
(53759, 'https://ror.org/00gz1s959', 'fr', 1, 'https://ror.org/00gz1s959 Archives d''Ɖtat de GenĆØve'),
(53760, 'https://ror.org/042n4vt36', 'fr', 1, 'https://ror.org/042n4vt36 DƩpartement des Finances et des Relations ExtƩrieures'),
(53761, 'https://ror.org/04zn57k32', 'it', 1, 'https://ror.org/04zn57k32 Augusta Raurica'),
(53762, 'https://ror.org/05qtqmn65', 'fr', 1, 'https://ror.org/05qtqmn65 Archives de l''Ɖtat de NeuchĆ¢tel'),
(53763, 'https://ror.org/000gzpv52', 'no_lang_code', 1, 'https://ror.org/000gzpv52 Arcadis (Switzerland)'),
(53764, 'https://ror.org/046x93w41', 'de', 1, 'https://ror.org/046x93w41 Berner Kantonalbank'),
(53765, 'https://ror.org/00w5rad21', 'fr', 1, 'https://ror.org/00w5rad21 Institut de Recherche et de Documentation PƩdagogique'),
(53766, 'https://ror.org/03nnkbc97', 'de', 1, 'https://ror.org/03nnkbc97 Institut für Ɩkologisch Systemische Therapie'),
(53767, 'https://ror.org/048vy2749', 'de', 1, 'https://ror.org/048vy2749 ViaStoria'),
(53768, 'https://ror.org/05d9rr978', 'fr', 1, 'https://ror.org/05d9rr978 HƓpital de l''enfance'),
(53769, 'https://ror.org/00aa64v88', 'fr', 1, 'https://ror.org/00aa64v88 Laboratoire Romand de Dendrochronologie'),
(53770, 'https://ror.org/055fj9x85', 'fr', 1, 'https://ror.org/055fj9x85 MusƩe Romain d''Avenches'),
(53771, 'https://ror.org/05fw7wg22', 'fr', 1, 'https://ror.org/05fw7wg22 LatƩnium'),
(53772, 'https://ror.org/00rath085', 'de', 1, 'https://ror.org/00rath085 Staatsarchiv Freiburg'),
(53773, 'https://ror.org/02r72vt69', 'it', 1, 'https://ror.org/02r72vt69 Liceo Cantonale'),
(53774, 'https://ror.org/010rsfq12', 'de', 1, 'https://ror.org/010rsfq12 Stadtbibliothek Schaffhausen'),
(53775, 'https://ror.org/03z18kf36', 'no_lang_code', 1, 'https://ror.org/03z18kf36 MFB-GeoConsulting (Switzerland)'),
(53776, 'https://ror.org/05aq07d91', 'en', 1, 'https://ror.org/05aq07d91 Abbey library of Saint Gall Stiftsbibliothek St. Gallen'),
(53777, 'https://ror.org/02tzeve03', 'en', 1, 'https://ror.org/02tzeve03 International Museum of Horology MusƩe international d''horlogerie'),
(53778, 'https://ror.org/016dt2y84', 'de', 1, 'https://ror.org/016dt2y84 Center Pro Natura of Champ-Pittet'),
(53779, 'https://ror.org/0139gxv26', 'fr', 1, 'https://ror.org/0139gxv26 Museum of Art and History MusƩe d''Art et d''Histoire'),
(53780, 'https://ror.org/03rkcd137', 'en', 1, 'https://ror.org/03rkcd137 Museum der Kulturen Basel Museum of Cultures'),
(53781, 'https://ror.org/04saem874', 'de', 1, 'https://ror.org/04saem874 Kloster St. Johann Müstair'),
(53782, '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'),
(53783, 'https://ror.org/0264vnq64', 'it', 1, 'https://ror.org/0264vnq64 Organizzazione Sociopsichiatrica Cantonale'),
(53784, 'https://ror.org/05ejhgb17', 'fr', 1, 'https://ror.org/05ejhgb17 Clinique Valmont'),
(53785, 'https://ror.org/023vxr720', 'no_lang_code', 1, 'https://ror.org/023vxr720 TK Consult (Switzerland)');
INSERT INTO `rors` VALUES
(53786, 'https://ror.org/0494r5h25', 'en', 1, 'https://ror.org/0494r5h25 Bundesgericht Federal Supreme Court of Switzerland Tribunal federal Tribunal fƩdƩral Tribunale federale'),
(53787, 'https://ror.org/0089a0566', 'de', 1, 'https://ror.org/0089a0566 Robert Walser-Zentrum'),
(53788, 'https://ror.org/02f3p0s49', 'de', 1, 'https://ror.org/02f3p0s49 Stockalperstiftung'),
(53789, 'https://ror.org/01azdfc53', 'en', 1, 'https://ror.org/01azdfc53 Psychiatrie Baselland Psychiatry Baselland'),
(53790, 'https://ror.org/05r3dyn47', 'en', 1, 'https://ror.org/05r3dyn47 Center for Systems Biology'),
(53791, 'https://ror.org/05n6yb463', 'no_lang_code', 1, 'https://ror.org/05n6yb463 Rütter Soceco (Switzerland)'),
(53792, 'https://ror.org/05e8cby31', 'no_lang_code', 1, 'https://ror.org/05e8cby31 Flury and Giuliani (Switzerland)'),
(53793, 'https://ror.org/04z6xe248', 'en', 1, 'https://ror.org/04z6xe248 Clinica Luganese Moncucco'),
(53794, 'https://ror.org/02bgabj83', 'en', 1, 'https://ror.org/02bgabj83 Center for Nutrition Policy and Promotion'),
(53795, 'https://ror.org/056mcm922', 'en', 1, 'https://ror.org/056mcm922 Grain Inspection, Packers and Stockyards Administration'),
(53796, 'https://ror.org/041przb21', 'de', 1, 'https://ror.org/041przb21 Forum Ost West'),
(53797, 'https://ror.org/00z6b1508', 'en', 1, 'https://ror.org/00z6b1508 National Agricultural Library'),
(53798, 'https://ror.org/02qhkmh27', 'en', 1, 'https://ror.org/02qhkmh27 USDA Rural Development'),
(53799, 'https://ror.org/035pp4s04', 'de', 1, 'https://ror.org/035pp4s04 Institut für Urheber- und Medienrecht'),
(53800, 'https://ror.org/0430mjq75', 'de', 1, 'https://ror.org/0430mjq75 Amt für Archäologie'),
(53801, 'https://ror.org/04f6f3e35', 'en', 1, 'https://ror.org/04f6f3e35 Archeologia Svizzera ArchƤologie Schweiz ArchƩologie Suisse Swiss Archaeology'),
(53802, 'https://ror.org/03cc4wz29', 'de', 1, 'https://ror.org/03cc4wz29 ArchƤologie Baselland'),
(53803, 'https://ror.org/05qkh8j74', 'de', 1, 'https://ror.org/05qkh8j74 Archäologischen Dienst Graubünden Servizio archeologico dei Grigioni servetsch archeologic dal Grischun'),
(53804, 'https://ror.org/01jr63883', 'de', 1, 'https://ror.org/01jr63883 INURA Zürich Institut'),
(53805, 'https://ror.org/00ntwgk39', 'fr', 1, 'https://ror.org/00ntwgk39 HƓpital Beau-SƩjour'),
(53806, 'https://ror.org/035881909', 'de', 1, 'https://ror.org/035881909 Lamprecht und Stamm Sozialforschung und Beratung'),
(53807, 'https://ror.org/00vqmez57', 'fr', 1, 'https://ror.org/00vqmez57 HƓpital de Cery'),
(53808, 'https://ror.org/04f5ks076', 'no_lang_code', 1, 'https://ror.org/04f5ks076 Japan Tobacco (Switzerland)'),
(53809, 'https://ror.org/05e83v334', 'no_lang_code', 1, 'https://ror.org/05e83v334 Sottas Formative Works (Switzerland)'),
(53810, 'https://ror.org/04beemq12', 'it', 1, 'https://ror.org/04beemq12 Memoriav'),
(53811, 'https://ror.org/01mk9jb73', 'fr', 1, 'https://ror.org/01mk9jb73 Hospital Neuchâtel'),
(53812, 'https://ror.org/057p1hr03', 'de', 1, 'https://ror.org/057p1hr03 KantonsarchƤologie Aargau'),
(53813, 'https://ror.org/01kd56x58', 'de', 1, 'https://ror.org/01kd56x58 Kantonsarchäologie des Kantons Zürich'),
(53814, 'https://ror.org/03hvkpj98', 'de', 1, 'https://ror.org/03hvkpj98 Klinik Sonnenhof'),
(53815, 'https://ror.org/0498qf076', 'de', 1, 'https://ror.org/0498qf076 Kantonsschule Enge'),
(53816, 'https://ror.org/00ymr0824', 'de', 1, 'https://ror.org/00ymr0824 Kantonsschule Sargans'),
(53817, 'https://ror.org/03vayv672', 'en', 1, 'https://ror.org/03vayv672 University of Veterinary Medicine ƁllatorvostudomƔnyi Egyetem'),
(53818, 'https://ror.org/03c3qzd14', 'no_lang_code', 1, 'https://ror.org/03c3qzd14 Neurotune (Switzerland)'),
(53819, 'https://ror.org/059sx8r46', 'no_lang_code', 1, 'https://ror.org/059sx8r46 Novo Business Consultants (Switzerland)'),
(53820, 'https://ror.org/04w9zgk85', 'de', 1, 'https://ror.org/04w9zgk85 Paul Sacher Stiftung'),
(53821, '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'),
(53822, 'https://ror.org/05qwesv66', 'no_lang_code', 1, 'https://ror.org/05qwesv66 Planconsult (Switzerland)'),
(53823, 'https://ror.org/00eqvhf81', 'no_lang_code', 1, 'https://ror.org/00eqvhf81 Urbaplan (Switzerland)'),
(53824, 'https://ror.org/01kk1vy78', 'de', 1, 'https://ror.org/01kk1vy78 Arbeitsstelle Schweiz des RISM Bureau suisse du RISM RISM Digital Center Ufficio svizzero RISM'),
(53825, 'https://ror.org/05hjw0y48', 'no_lang_code', 1, 'https://ror.org/05hjw0y48 Bedag Informatik (Switzerland)'),
(53826, 'https://ror.org/04cvw9c02', 'de', 1, 'https://ror.org/04cvw9c02 Library Am Guisanplatz'),
(53827, 'https://ror.org/00j6f3g48', 'de', 1, 'https://ror.org/00j6f3g48 Schweizerisches Institut für Kinder- und Jugendmedien'),
(53828, 'https://ror.org/04666hf17', 'no_lang_code', 1, 'https://ror.org/04666hf17 Academia Raetica'),
(53829, 'https://ror.org/05yjpzd92', 'fr', 1, 'https://ror.org/05yjpzd92 BibliothĆØque Cantonale Jurassienne'),
(53830, 'https://ror.org/004ea6c05', 'no_lang_code', 1, 'https://ror.org/004ea6c05 Bioanalytica (Switzerland)'),
(53831, 'https://ror.org/020bdm170', 'de', 1, 'https://ror.org/020bdm170 Biologie Labor'),
(53832, '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'),
(53833, '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'),
(53834, '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'),
(53835, 'https://ror.org/05cbxy397', 'de', 1, 'https://ror.org/05cbxy397 Dialog Ethik'),
(53836, 'https://ror.org/02agvwy44', 'no_lang_code', 1, 'https://ror.org/02agvwy44 Von Roll (Switzerland)'),
(53837, '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'),
(53838, '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'),
(53839, 'https://ror.org/01dawqf23', 'no_lang_code', 1, 'https://ror.org/01dawqf23 CSS (Switzerland)'),
(53840, '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'),
(53841, 'https://ror.org/04r3hry39', 'de', 1, 'https://ror.org/04r3hry39 Bündner Kunstmuseum'),
(53842, 'https://ror.org/01h5sw314', 'fr', 1, 'https://ror.org/01h5sw314 PrƩparation aux Examens PrƩalables'),
(53843, 'https://ror.org/019zrgy79', 'en', 1, 'https://ror.org/019zrgy79 Albrecht von Haller Foundation Albrecht von Haller-Stiftung'),
(53844, 'https://ror.org/010q0m202', 'de', 1, 'https://ror.org/010q0m202 BibliothĆØque de la Bourgeoisie de Berne Burgerbibliothek Bern Burgerbibliothek of Berne'),
(53845, 'https://ror.org/02keacx90', 'de', 1, 'https://ror.org/02keacx90 Kompetenzzentrum Gesundheit und Alter'),
(53846, 'https://ror.org/028e7fy95', 'de', 1, 'https://ror.org/028e7fy95 Büro für Arbeits und Sozialpolitische Studien'),
(53847, 'https://ror.org/001ydhs21', 'de', 1, 'https://ror.org/001ydhs21 Amt für Umwelt'),
(53848, 'https://ror.org/059zyq877', 'no_lang_code', 1, 'https://ror.org/059zyq877 Oliva (Switzerland)'),
(53849, 'https://ror.org/04dkz7q98', 'no_lang_code', 1, 'https://ror.org/04dkz7q98 eHealth Consulting (United States)'),
(53850, 'https://ror.org/00njy2393', 'fr', 1, 'https://ror.org/00njy2393 Caisse de PrƩvoyance du Personnel de l''Etat de Fribourg'),
(53851, 'https://ror.org/03wgrw884', 'fr', 1, 'https://ror.org/03wgrw884 Gymnase de La CitƩ Lausanne'),
(53852, 'https://ror.org/00y221604', 'de', 1, 'https://ror.org/00y221604 Amt für Raumentwicklung'),
(53853, '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'),
(53854, 'https://ror.org/01b2bca57', 'de', 1, 'https://ror.org/01b2bca57 ArchƤologische Bodenforschung des Kantons Basel-Stadt'),
(53855, 'https://ror.org/041jh8270', 'en', 1, 'https://ror.org/041jh8270 Archiv für Agrargeschichte Archives of Rural History'),
(53856, 'https://ror.org/056v7cj11', 'fr', 1, 'https://ror.org/056v7cj11 Archives de l''ancien ƉvĆŖchĆ© de BĆ¢le'),
(53857, 'https://ror.org/000yyt861', 'de', 1, 'https://ror.org/000yyt861 Cardiovascular Medicine at Klinik Im Park HerzgefƤss Medizin Klinik Im Park'),
(53858, 'https://ror.org/02pt0wv95', 'en', 1, 'https://ror.org/02pt0wv95 Centre for Training and Integrated Research In ASAL Development'),
(53859, 'https://ror.org/04c7g1a88', 'de', 1, 'https://ror.org/04c7g1a88 Amt für Städtebau'),
(53860, 'https://ror.org/01hqeag92', 'de', 1, 'https://ror.org/01hqeag92 ArchƤologischer Dienst des Kantons Bern'),
(53861, 'https://ror.org/03awvhn35', 'fr', 1, 'https://ror.org/03awvhn35 Centre Alpien de PhytogƩographie'),
(53862, 'https://ror.org/034w84t89', 'en', 1, 'https://ror.org/034w84t89 Centre International d''Etude du Sport International Centre for Sports Studies'),
(53863, 'https://ror.org/04waxbg79', 'en', 1, 'https://ror.org/04waxbg79 Fondation Suisse pour la Recherche en Microtechnique Swiss Foundation for Research in Microtechnology'),
(53864, 'https://ror.org/05jghsy80', 'de', 1, 'https://ror.org/05jghsy80 Holbein-Gymnasium Augsburg'),
(53865, 'https://ror.org/00dt0nn62', 'de', 1, 'https://ror.org/00dt0nn62 Pro Vistiliaco'),
(53866, 'https://ror.org/01bgzbz31', 'en', 1, 'https://ror.org/01bgzbz31 Schweizerische Gesellschaft für Soziologie Swiss Sociological Association'),
(53867, 'https://ror.org/05qaacr29', 'fr', 1, 'https://ror.org/05qaacr29 HƓpital intercantonal de la Broye'),
(53868, 'https://ror.org/04j5qh045', 'de', 1, 'https://ror.org/04j5qh045 Hospiz im Park'),
(53869, 'https://ror.org/05eayn621', 'no_lang_code', 1, 'https://ror.org/05eayn621 INFRAS (Switzerland)'),
(53870, 'https://ror.org/04n3be660', 'no_lang_code', 1, 'https://ror.org/04n3be660 GEO Partner (Switzerland)'),
(53871, 'https://ror.org/00qkaw379', 'no_lang_code', 1, 'https://ror.org/00qkaw379 GEOTEST (Switzerland)'),
(53872, 'https://ror.org/04tsrda09', 'de', 1, 'https://ror.org/04tsrda09 GeschƤftsstelle SVIAL'),
(53873, 'https://ror.org/04f84b035', 'de', 1, 'https://ror.org/04f84b035 Gesundheitsdepartement des Kantons Basel-Stadt'),
(53874, 'https://ror.org/055gjr823', 'de', 1, 'https://ror.org/055gjr823 Institut für Sozialwissenschaftliche Analysen und Beratung'),
(53875, 'https://ror.org/01qtj8126', 'la', 1, 'https://ror.org/01qtj8126 Foederatio Medicorum Helveticorum'),
(53876, 'https://ror.org/00q4d7711', 'fr', 1, 'https://ror.org/00q4d7711 Orthodontie MC20'),
(53877, 'https://ror.org/05kgdba77', 'de', 1, 'https://ror.org/05kgdba77 Gelenkzentrum Zürich'),
(53878, 'https://ror.org/02cvt8e16', 'en', 1, 'https://ror.org/02cvt8e16 Center for Pediatric Endocrinology Zurich Pädiatrisch-Endokrinologisches Zentrum Zürich'),
(53879, 'https://ror.org/01s8mna38', 'de', 1, 'https://ror.org/01s8mna38 Technische Fachschule Bern'),
(53880, 'https://ror.org/00k0msf85', 'no_lang_code', 1, 'https://ror.org/00k0msf85 Itopia (Switzerland)'),
(53881, 'https://ror.org/02v7y7w12', 'de', 1, 'https://ror.org/02v7y7w12 Liechtenstein Institute Liechtenstein-Institut'),
(53882, 'https://ror.org/04hexsd31', 'en', 1, 'https://ror.org/04hexsd31 Geneva Finance Research Institute'),
(53883, 'https://ror.org/035g0d030', 'no_lang_code', 1, 'https://ror.org/035g0d030 Axon Active (Switzerland)'),
(53884, 'https://ror.org/04c8y8w58', 'en', 1, 'https://ror.org/04c8y8w58 Institute of Archeology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ археології ŠŠŠ України'),
(53885, 'https://ror.org/05tkx8d31', 'no_lang_code', 1, 'https://ror.org/05tkx8d31 Madep (Switzerland)'),
(53886, 'https://ror.org/03c4z4v61', 'no_lang_code', 1, 'https://ror.org/03c4z4v61 Jean-Marc Blanc Consultant (Switzerland)'),
(53887, 'https://ror.org/02sn6x239', 'no_lang_code', 1, 'https://ror.org/02sn6x239 Mat-Tec (Switzerland)'),
(53888, 'https://ror.org/0112bn567', 'en', 1, 'https://ror.org/0112bn567 Institute of Ecology and Geography Institutul de Ecologie și Geografie'),
(53889, 'https://ror.org/02y9vr459', 'de', 1, 'https://ror.org/02y9vr459 Kantonale Planungsgruppe'),
(53890, 'https://ror.org/042qasc85', 'de', 1, 'https://ror.org/042qasc85 Kantonale Psychiatrische Dienste St Gallen'),
(53891, 'https://ror.org/00wznfw28', 'no_lang_code', 1, 'https://ror.org/00wznfw28 Planar (Switzerland)'),
(53892, 'https://ror.org/00048gf56', 'no_lang_code', 1, 'https://ror.org/00048gf56 Metron (Switzerland)'),
(53893, 'https://ror.org/041v0z526', 'no_lang_code', 1, 'https://ror.org/041v0z526 Planval (Switzerland)'),
(53894, 'https://ror.org/01yqdmr06', 'no_lang_code', 1, 'https://ror.org/01yqdmr06 Microscan Service (Switzerland)'),
(53895, 'https://ror.org/04tdwrq43', 'en', 1, 'https://ror.org/04tdwrq43 Bethesda Spital'),
(53896, 'https://ror.org/04e9p5d56', 'no_lang_code', 1, 'https://ror.org/04e9p5d56 MOR Informatik (Switzerland)'),
(53897, 'https://ror.org/04wz85195', 'de', 1, 'https://ror.org/04wz85195 Karl Jaspers Stiftung'),
(53898, 'https://ror.org/00c35nc92', 'en', 1, 'https://ror.org/00c35nc92 Cantonal Museum of Fine Arts MusƩe cantonal des beaux-arts'),
(53899, 'https://ror.org/031n2qp89', 'de', 1, 'https://ror.org/031n2qp89 Privatbüro Plus'),
(53900, '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'),
(53901, 'https://ror.org/00tbqf005', 'de', 1, 'https://ror.org/00tbqf005 Privatklinik Meiringen'),
(53902, 'https://ror.org/01bqscy27', 'fr', 1, 'https://ror.org/01bqscy27 Geneva Ethnography Museum Musée d''Ethnographie de Genève'),
(53903, 'https://ror.org/003hsj034', 'de', 1, 'https://ror.org/003hsj034 Pro Familia Schweiz'),
(53904, 'https://ror.org/03yahs006', 'en', 1, 'https://ror.org/03yahs006 MusƩe suisse du jeu Swiss Museum of Games'),
(53905, 'https://ror.org/05ffr4y89', 'de', 1, 'https://ror.org/05ffr4y89 Psychiatriezentrum Münsingen'),
(53906, 'https://ror.org/05vg8zj60', 'de', 1, 'https://ror.org/05vg8zj60 Kollegium für Hausarztmedizin'),
(53907, 'https://ror.org/04azbkk87', 'en', 1, 'https://ror.org/04azbkk87 Schweizerisches Institut für öffentliches Management Swiss Institute for Public Management'),
(53908, 'https://ror.org/00438z572', 'en', 1, 'https://ror.org/00438z572 Schweizerisches Sozialarchiv Swiss Social Archives'),
(53909, 'https://ror.org/01cdf1198', 'it', 1, 'https://ror.org/01cdf1198 Scuola Cantonale di Commercio Bellinzona'),
(53910, 'https://ror.org/02basy118', 'en', 1, 'https://ror.org/02basy118 Federation of Swiss Protestant Churches'),
(53911, 'https://ror.org/01dk5kp39', 'en', 1, 'https://ror.org/01dk5kp39 Bellikon Rehabilitation Clinic Rehaklinik Bellikon'),
(53912, 'https://ror.org/00y8acb95', 'fr', 1, 'https://ror.org/00y8acb95 Service de la SantƩ Publique'),
(53913, 'https://ror.org/055g2sd79', 'de', 1, 'https://ror.org/055g2sd79 Sozialwissenschaftliche Forschung und Beratung'),
(53914, 'https://ror.org/03dx2f169', 'de', 1, 'https://ror.org/03dx2f169 Schweizerische Vereinigung Industrie und Landwirtschaft'),
(53915, 'https://ror.org/04ykg4p88', 'de', 1, 'https://ror.org/04ykg4p88 Stiftung Landschaftsschutz Schweiz Swiss Foundation for Landscape Conservation'),
(53916, 'https://ror.org/03amgzq35', 'de', 1, 'https://ror.org/03amgzq35 Stiftung Zürcher Kinder- und Jugendheime'),
(53917, 'https://ror.org/032jwgq52', 'en', 1, 'https://ror.org/032jwgq52 Ausbildungs- und Tagungszentrum Bienenberg Theological Seminary Bienenberg'),
(53918, 'https://ror.org/045vees34', 'de', 1, 'https://ror.org/045vees34 Gfs-Zürich'),
(53919, 'https://ror.org/0551g0798', 'de', 1, 'https://ror.org/0551g0798 Schweizerische Pastoralsoziologische Institut'),
(53920, 'https://ror.org/03c1wwn39', 'no_lang_code', 1, 'https://ror.org/03c1wwn39 Treeze (Switzerland)'),
(53921, 'https://ror.org/00m7t6760', 'de', 1, 'https://ror.org/00m7t6760 Spital STS'),
(53922, 'https://ror.org/030j64f75', 'de', 1, 'https://ror.org/030j64f75 Neue Galerie Luzern'),
(53923, 'https://ror.org/00n95xs29', 'de', 1, 'https://ror.org/00n95xs29 Fotostiftung Schweiz'),
(53924, 'https://ror.org/01ms54191', 'en', 1, 'https://ror.org/01ms54191 Schweizerische Akademie der Pharmazeutische Wissenschaften Swiss Academy of Pharmaceutical Sciences'),
(53925, 'https://ror.org/04wjmv675', 'de', 1, 'https://ror.org/04wjmv675 Schweizerische Gesellschaft für Volkskunde'),
(53926, 'https://ror.org/01eah9363', 'it', 1, 'https://ror.org/01eah9363 Archivio di Stato di Firenze'),
(53927, 'https://ror.org/030zkq869', 'no_lang_code', 1, 'https://ror.org/030zkq869 Wenger Plattner (Switzerland)'),
(53928, 'https://ror.org/05tkn9009', 'no_lang_code', 1, 'https://ror.org/05tkn9009 Arcoplan (Switzerland)'),
(53929, 'https://ror.org/023eqmq44', 'de', 1, 'https://ror.org/023eqmq44 Wohnstadt'),
(53930, 'https://ror.org/02wv42418', 'en', 1, 'https://ror.org/02wv42418 ARGO Foundation ARGO Stiftung'),
(53931, 'https://ror.org/04t5d1438', 'en', 1, 'https://ror.org/04t5d1438 Unitectra'),
(53932, 'https://ror.org/052e5jr81', 'de', 1, 'https://ror.org/052e5jr81 Zentrum für Gefässkrankheiten'),
(53933, 'https://ror.org/000ew5688', 'en', 1, 'https://ror.org/000ew5688 Swiss Conference of Cantonal Ministers of Education'),
(53934, 'https://ror.org/05sejda23', 'en', 1, 'https://ror.org/05sejda23 Armenian National Survey for Seismic Protection'),
(53935, 'https://ror.org/03952ft31', 'en', 1, 'https://ror.org/03952ft31 Art as Foundation'),
(53936, 'https://ror.org/05wyxeg04', 'de', 1, 'https://ror.org/05wyxeg04 Arud'),
(53937, 'https://ror.org/03m9tq224', 'de', 1, 'https://ror.org/03m9tq224 Abwasserverband Altenrhein'),
(53938, 'https://ror.org/04x4bjr17', 'de', 1, 'https://ror.org/04x4bjr17 Universitätsklinik für Diabetologie, Endokrinologie, Ernährungsmedizin & Metabolismus'),
(53939, 'https://ror.org/02613e360', 'en', 1, 'https://ror.org/02613e360 International Center for Astronomical, Medical and Ecological Research'),
(53940, 'https://ror.org/00qrs4s60', 'no_lang_code', 1, 'https://ror.org/00qrs4s60 Beratungsdienste für Ausbildung und Beruf Aargau (Switzerland)'),
(53941, 'https://ror.org/01dxwkm60', 'de', 1, 'https://ror.org/01dxwkm60 Ad Baumgartner Sozialforschung'),
(53942, 'https://ror.org/019pz8z97', 'en', 1, 'https://ror.org/019pz8z97 Association of Ukrainian Cities ŠŃŠ¾Ń†Ń–Š°Ń†Ń–Ń міст України та громаГ'),
(53943, 'https://ror.org/00d9n9k04', 'no_lang_code', 1, 'https://ror.org/00d9n9k04 Agriforest (Switzerland)'),
(53944, 'https://ror.org/03s9vq845', 'de', 1, 'https://ror.org/03s9vq845 Aebli-NƤf-Stiftung'),
(53945, 'https://ror.org/04h11pr46', 'en', 1, 'https://ror.org/04h11pr46 Belgrade Centre for Security Policy'),
(53946, 'https://ror.org/00fjtyx23', 'fr', 1, 'https://ror.org/00fjtyx23 Association Fribourgeoise des Psychologues'),
(53947, 'https://ror.org/03f05ts54', 'it', 1, 'https://ror.org/03f05ts54 Fondazione Alpina per le Scienze della Vita'),
(53948, 'https://ror.org/05ye9s754', 'en', 1, 'https://ror.org/05ye9s754 Association Internationale de la SƩcuritƩ Sociale International Social Security Association'),
(53949, 'https://ror.org/041wkfa75', 'de', 1, 'https://ror.org/041wkfa75 Kantonsschule Baden'),
(53950, 'https://ror.org/03k699w20', 'de', 1, 'https://ror.org/03k699w20 Berlinische Galerie'),
(53951, 'https://ror.org/034sqmv32', 'en', 1, 'https://ror.org/034sqmv32 Agrophysical Research Institute Агрофизический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(53952, 'https://ror.org/05bzvq648', 'no_lang_code', 1, 'https://ror.org/05bzvq648 BSS Architekten (Switzerland)'),
(53953, 'https://ror.org/04mphxe26', 'no_lang_code', 1, 'https://ror.org/04mphxe26 Emmi (Switzerland)'),
(53954, 'https://ror.org/04g14s332', 'no_lang_code', 1, 'https://ror.org/04g14s332 Buchhofer (Switzerland)'),
(53955, 'https://ror.org/040mkwe50', 'de', 1, 'https://ror.org/040mkwe50 Kunsthalle Marcel Duchamp'),
(53956, 'https://ror.org/041qak036', 'no_lang_code', 1, 'https://ror.org/041qak036 Akanthus (Switzerland)'),
(53957, 'https://ror.org/019qf4t38', 'no_lang_code', 1, 'https://ror.org/019qf4t38 Mobsya'),
(53958, 'https://ror.org/02hce2n63', 'it', 1, 'https://ror.org/02hce2n63 Biblioteca Cantonale di Lugano'),
(53959, 'https://ror.org/038923331', 'en', 1, 'https://ror.org/038923331 BFF Bern'),
(53960, 'https://ror.org/00n83hf26', 'fr', 1, 'https://ror.org/00n83hf26 Association Savoir Patient'),
(53961, 'https://ror.org/02j716y15', 'de', 1, 'https://ror.org/02j716y15 Kantonsschule Alpenquai Luzern'),
(53962, 'https://ror.org/03a17hk77', 'fr', 1, 'https://ror.org/03a17hk77 Association Suisse pour le Service aux RƩgions et Communes'),
(53963, 'https://ror.org/05p1fxc65', 'en', 1, 'https://ror.org/05p1fxc65 Cedar Grove Institute for Sustainable Communities'),
(53964, 'https://ror.org/02qvj8k32', 'de', 1, 'https://ror.org/02qvj8k32 Schweizerische Bundeskanzlei'),
(53965, 'https://ror.org/05mzd7q50', 'en', 1, 'https://ror.org/05mzd7q50 Bildungsdirektion Volksschulamt Office of Elementary Education'),
(53966, 'https://ror.org/03gj08226', 'fr', 1, 'https://ror.org/03gj08226 Alimentarium'),
(53967, 'https://ror.org/00m2xfz17', 'no_lang_code', 1, 'https://ror.org/00m2xfz17 Bioengineering (Switzerland)'),
(53968, 'https://ror.org/01f7h5955', 'de', 1, 'https://ror.org/01f7h5955 Allgemeine Berufsschule Zürich'),
(53969, 'https://ror.org/03mx3cq03', 'no_lang_code', 1, 'https://ror.org/03mx3cq03 Atenisi Institute'),
(53970, 'https://ror.org/02xjhr934', 'en', 1, 'https://ror.org/02xjhr934 Dr. Lisbeth Hurni Coaching & Consulting Inhaberin Büro für Laufbahnpsychologie'),
(53971, 'https://ror.org/03q5hdj87', 'de', 1, 'https://ror.org/03q5hdj87 Allgemeine Gewerbeschule Basel'),
(53972, 'https://ror.org/05tk0mn61', 'no_lang_code', 1, 'https://ror.org/05tk0mn61 Büro Vatter (Switzerland)'),
(53973, 'https://ror.org/00zy1mb15', 'no_lang_code', 1, 'https://ror.org/00zy1mb15 CABI Kenya'),
(53974, 'https://ror.org/02neeny91', 'no_lang_code', 1, 'https://ror.org/02neeny91 AWK (Switzerland)'),
(53975, 'https://ror.org/05f33zm87', 'no_lang_code', 1, 'https://ror.org/05f33zm87 Axone (Switzerland)'),
(53976, 'https://ror.org/03jrc7315', 'fr', 1, 'https://ror.org/03jrc7315 Cabinet de Psychiatrie et PsychothƩrapie'),
(53977, 'https://ror.org/04cchyf16', 'en', 1, 'https://ror.org/04cchyf16 Anatolia College Κολλέγιο Ī‘Ī½Ī±Ļ„ĻŒĪ»Ī¹Ī±'),
(53978, 'https://ror.org/0508gqz32', 'no_lang_code', 1, 'https://ror.org/0508gqz32 Büro für Altlasten, Boden und Umwelt (Switzerland)'),
(53979, 'https://ror.org/03dryja89', 'no_lang_code', 1, 'https://ror.org/03dryja89 Bioterra (Switzerland)'),
(53980, 'https://ror.org/05nsn5c92', 'no_lang_code', 1, 'https://ror.org/05nsn5c92 Ammann (Switzerland)'),
(53981, 'https://ror.org/05d6awd42', 'no_lang_code', 1, 'https://ror.org/05d6awd42 Bachem (Switzerland)'),
(53982, 'https://ror.org/05xf0e721', 'de', 1, 'https://ror.org/05xf0e721 Amt für Gemeinden und Raumordnung'),
(53983, 'https://ror.org/03nhgnd83', 'no_lang_code', 1, 'https://ror.org/03nhgnd83 BAK Basel Economics (Switzerland)'),
(53984, 'https://ror.org/00zd9a055', 'de', 1, 'https://ror.org/00zd9a055 Amt für Wald und Naturgefahren'),
(53985, 'https://ror.org/00g3rdy81', 'en', 1, 'https://ror.org/00g3rdy81 Swiss Institute for Regenerative Medicine'),
(53986, 'https://ror.org/00bmpd145', 'en', 1, 'https://ror.org/00bmpd145 Charles Humbert 8'),
(53987, 'https://ror.org/01sct5s94', 'en', 1, 'https://ror.org/01sct5s94 Basel Institute on Governance'),
(53988, 'https://ror.org/059akse30', 'de', 1, 'https://ror.org/059akse30 Basler Afrika Bibliographien'),
(53989, 'https://ror.org/02bjeev04', 'en', 1, 'https://ror.org/02bjeev04 Albanian National Training and Technical Assistance Resource Center'),
(53990, 'https://ror.org/03rzvxq48', 'de', 1, 'https://ror.org/03rzvxq48 Museum Kleines Klingental'),
(53991, 'https://ror.org/022tr6d79', 'no_lang_code', 1, 'https://ror.org/022tr6d79 Basys (Germany)'),
(53992, 'https://ror.org/00d3z0048', 'en', 1, 'https://ror.org/00d3z0048 Center for Liberal Democratic Studies'),
(53993, 'https://ror.org/005ag3f48', 'no_lang_code', 1, 'https://ror.org/005ag3f48 Batrec (Switzerland)'),
(53994, 'https://ror.org/007x2j456', 'no_lang_code', 1, 'https://ror.org/007x2j456 Batumi Botanical Garden įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒ‘įƒįƒ¢įƒįƒœįƒ˜įƒ™įƒ£įƒ įƒ˜ įƒ‘įƒįƒ¦įƒ˜'),
(53995, 'https://ror.org/02nj3nr70', 'en', 1, 'https://ror.org/02nj3nr70 Caucasus Institute for Peace, Democracy and Development'),
(53996, 'https://ror.org/03hj6c016', 'en', 1, 'https://ror.org/03hj6c016 Berenson Allen Center for Noninvasive Brain Stimulation'),
(53997, 'https://ror.org/03kq6fs81', 'no_lang_code', 1, 'https://ror.org/03kq6fs81 Bau-, Verkehrs- und Energiedirektion (Switzerland)'),
(53998, 'https://ror.org/02pax0k58', 'fr', 1, 'https://ror.org/02pax0k58 Centre InterrƩgional de Perfectionnement'),
(53999, 'https://ror.org/032aq8297', 'fr', 1, 'https://ror.org/032aq8297 Alliance Sud'),
(54000, 'https://ror.org/05tstvt45', 'de', 1, 'https://ror.org/05tstvt45 Baudirektion Kanton Zürich'),
(54001, 'https://ror.org/00zy1vd16', 'fr', 1, 'https://ror.org/00zy1vd16 Centre National de Recherches sur l''Environnement'),
(54002, 'https://ror.org/00h16dr76', 'en', 1, 'https://ror.org/00h16dr76 Center for Social and Economic Research Центр ŃŠ¾Ń†Ń–Š°Š»ŃŒŠ½Š¾-економічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(54003, 'https://ror.org/02ez1h514', 'no_lang_code', 1, 'https://ror.org/02ez1h514 Center for Social Research Analitika'),
(54004, 'https://ror.org/05p46v555', 'en', 1, 'https://ror.org/05p46v555 Centre for Advanced Study'),
(54005, 'https://ror.org/02sqc6c92', 'en', 1, 'https://ror.org/02sqc6c92 Vive Zene Vive Zene Centar za terapiju i rehabilitaciju'),
(54006, 'https://ror.org/04wsv7966', 'en', 1, 'https://ror.org/04wsv7966 Center for Vascular Biology Research'),
(54007, 'https://ror.org/01zvbyp59', 'fr', 1, 'https://ror.org/01zvbyp59 Archives Cantonales Vaudoises'),
(54008, 'https://ror.org/04kbbt849', 'en', 1, 'https://ror.org/04kbbt849 Chemical Synthesis Lab'),
(54009, 'https://ror.org/03aqj2f62', 'fr', 1, 'https://ror.org/03aqj2f62 Institut des Sciences du VƩgƩtal'),
(54010, 'https://ror.org/053rebd44', 'it', 1, 'https://ror.org/053rebd44 Associazione Frantz Fanon'),
(54011, 'https://ror.org/00r9ndf16', 'en', 1, 'https://ror.org/00r9ndf16 Centre for Political Courage'),
(54012, 'https://ror.org/00q2tna33', 'it', 1, 'https://ror.org/00q2tna33 Associazione della Croce Rossa Italiana'),
(54013, 'https://ror.org/045518148', 'en', 1, 'https://ror.org/045518148 Centre for Regional Policy Research and Cooperation Studiorum'),
(54014, 'https://ror.org/04b988286', 'en', 1, 'https://ror.org/04b988286 Centre for Socio-Eco-Nomic Development'),
(54015, 'https://ror.org/00187xa56', 'no_lang_code', 1, 'https://ror.org/00187xa56 Crossject (France)'),
(54016, 'https://ror.org/00rxf9f27', 'en', 1, 'https://ror.org/00rxf9f27 Columbia Global Centers'),
(54017, 'https://ror.org/01d6br473', 'de', 1, 'https://ror.org/01d6br473 Christlicher Friedensdienst'),
(54018, 'https://ror.org/05p799h65', 'de', 1, 'https://ror.org/05p799h65 ch Stiftung für Eidgenössische Zusammenarbeit'),
(54019, 'https://ror.org/021tw0b31', 'fr', 1, 'https://ror.org/021tw0b31 ConfƩrence Intercantonale de l''Instruction Publique de la Suisse Romande et du Tessin'),
(54020, 'https://ror.org/02jj87h97', 'no_lang_code', 1, 'https://ror.org/02jj87h97 Elcotherm (Switzerland)'),
(54021, 'https://ror.org/05r0gt719', 'no_lang_code', 1, 'https://ror.org/05r0gt719 Dadar Athornan Institute'),
(54022, 'https://ror.org/00zs45r78', 'no_lang_code', 1, 'https://ror.org/00zs45r78 Circuit Therapeutics (United States)'),
(54023, 'https://ror.org/02384ye22', 'en', 1, 'https://ror.org/02384ye22 Dangoria Charitable Trust'),
(54024, 'https://ror.org/04kdvs983', 'en', 1, 'https://ror.org/04kdvs983 Archivio Segreto Vaticano Archivum Secretum Apostolicum Vaticanum Vatican Secret Archives'),
(54025, 'https://ror.org/01q1tcv22', 'en', 1, 'https://ror.org/01q1tcv22 Centre for Higher Education Centrum für Hochschulentwicklung'),
(54026, 'https://ror.org/000y6ah26', 'es', 1, 'https://ror.org/000y6ah26 CIUDAD'),
(54027, 'https://ror.org/05t2h5z30', 'no_lang_code', 1, 'https://ror.org/05t2h5z30 CLAC (Switzerland)'),
(54028, 'https://ror.org/02d5c3630', 'fr', 1, 'https://ror.org/02d5c3630 Institution de Lavigny'),
(54029, 'https://ror.org/05yg2by49', 'no_lang_code', 1, 'https://ror.org/05yg2by49 Dartfish (Switzerland)'),
(54030, 'https://ror.org/003w4a433', 'en', 1, 'https://ror.org/003w4a433 Corpus Vitrearum International Recherche Internationale sur le Vitrail'),
(54031, 'https://ror.org/05hq3fk51', 'de', 1, 'https://ror.org/05hq3fk51 Departement für Erziehung und Kultur'),
(54032, 'https://ror.org/01jd40n62', 'en', 1, 'https://ror.org/01jd40n62 Centre de ProcrƩation MƩdicalement AssistƩe Centre for Medically Assisted Procreation'),
(54033, 'https://ror.org/007kemd69', 'no_lang_code', 1, 'https://ror.org/007kemd69 Debiotech (Switzerland)'),
(54034, 'https://ror.org/04j3c4348', 'de', 1, 'https://ror.org/04j3c4348 Debrunner Sozialforschung und Projekte'),
(54035, 'https://ror.org/00memet03', 'no_lang_code', 1, 'https://ror.org/00memet03 Sunstar (Switzerland)'),
(54036, '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'),
(54037, 'https://ror.org/041hmhr55', 'de', 1, 'https://ror.org/041hmhr55 Denkmalpflege und ArchƤologie'),
(54038, 'https://ror.org/035a07q19', 'fr', 1, 'https://ror.org/035a07q19 Hirslanden Clinique des Grangettes'),
(54039, 'https://ror.org/0395s1g07', 'fr', 1, 'https://ror.org/0395s1g07 Clinique de La Source'),
(54040, 'https://ror.org/05sbk4q39', 'de', 1, 'https://ror.org/05sbk4q39 Clinique Montbrillant'),
(54041, 'https://ror.org/03r8and30', 'de', 1, 'https://ror.org/03r8and30 Club Bel Etage'),
(54042, 'https://ror.org/03ck95c19', 'en', 1, 'https://ror.org/03ck95c19 Institute for Regional Economics Библиотека Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° проблем Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(54043, 'https://ror.org/03dpmhz82', 'en', 1, 'https://ror.org/03dpmhz82 Ministry of Health of Kyrgyzstan ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾Š¹ Республики'),
(54044, 'https://ror.org/04t2jbs80', 'no_lang_code', 1, 'https://ror.org/04t2jbs80 Dionea (Switzerland)'),
(54045, 'https://ror.org/02k4k2v28', 'fr', 1, 'https://ror.org/02k4k2v28 Office MƩdico PƩdagogique'),
(54046, 'https://ror.org/012h24p18', 'de', 1, 'https://ror.org/012h24p18 Forschungs und Dokumentationsstelle Kind und Umwelt'),
(54047, 'https://ror.org/0047q0m13', 'no_lang_code', 1, 'https://ror.org/0047q0m13 Ecosens (Switzerland)'),
(54048, 'https://ror.org/016pgbd19', 'no_lang_code', 1, 'https://ror.org/016pgbd19 Ɖditions Gallimard (France)'),
(54049, 'https://ror.org/015zgrj36', 'de', 1, 'https://ror.org/015zgrj36 Egger Kommunikation'),
(54050, 'https://ror.org/04j690992', 'en', 1, 'https://ror.org/04j690992 Egypt Nanotechnology Center Ł…Ų±ŁƒŲ² Ł…ŲµŲ± Ł„Ł„Ł†Ų§Ł†Łˆ ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(54051, 'https://ror.org/00kdsdv26', 'fr', 1, 'https://ror.org/00kdsdv26 MusĆ©e d’histoire du Valais'),
(54052, 'https://ror.org/02bv9mm66', 'en', 1, 'https://ror.org/02bv9mm66 Eidgenössische Fachkommission für Biologische Sicherheit Swiss Expert Committee for Biosafety'),
(54053, 'https://ror.org/02ja02d95', 'no_lang_code', 1, 'https://ror.org/02ja02d95 Dr Heinrich JƤckli (Switzerland)'),
(54054, 'https://ror.org/01s307r42', 'no_lang_code', 1, 'https://ror.org/01s307r42 Drolshammer Strategy and Law (Switzerland)'),
(54055, 'https://ror.org/013177044', 'de', 1, 'https://ror.org/013177044 Dialog N'),
(54056, 'https://ror.org/04enpqf37', 'en', 1, 'https://ror.org/04enpqf37 Ambassade de Suisse aux Etats-Unis d’AmĆ©rique Embassy of Switzerland in Washington'),
(54057, 'https://ror.org/03apaxe73', 'no_lang_code', 1, 'https://ror.org/03apaxe73 E2A Architects (Switzerland)'),
(54058, 'https://ror.org/03rzhkf33', 'en', 1, 'https://ror.org/03rzhkf33 Australian Resources Research Centre'),
(54059, 'https://ror.org/021r5zp58', 'de', 1, 'https://ror.org/021r5zp58 Engeriedspital'),
(54060, 'https://ror.org/04gcpmc06', 'no_lang_code', 1, 'https://ror.org/04gcpmc06 Enter (Switzerland)'),
(54061, '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'),
(54062, 'https://ror.org/01jczg854', 'no_lang_code', 1, 'https://ror.org/01jczg854 Skat Consulting (Switzerland)'),
(54063, 'https://ror.org/003g8w998', 'de', 1, 'https://ror.org/003g8w998 Amt für Hochbauten'),
(54064, 'https://ror.org/002tnjb86', 'de', 1, 'https://ror.org/002tnjb86 Abteilung Bildungsplanung und Evaluation'),
(54065, 'https://ror.org/02gk2rq91', 'fr', 1, 'https://ror.org/02gk2rq91 Ɖcole Secondaire de Nyon Marens'),
(54066, 'https://ror.org/00pq1ak56', 'fr', 1, 'https://ror.org/00pq1ak56 Etablissement Primaire et Secondaire Vevey'),
(54067, 'https://ror.org/00wp3ct36', 'en', 1, 'https://ror.org/00wp3ct36 Euro Balkan University Универзитет Евро-Балкан'),
(54068, 'https://ror.org/0532w5z20', 'en', 1, 'https://ror.org/0532w5z20 European Institute for Legal Psychology Europäisches Institut für Rechtspsychologie'),
(54069, 'https://ror.org/057wy2y58', 'en', 1, 'https://ror.org/057wy2y58 European Platform of Women Scientists'),
(54070, 'https://ror.org/01t6wgp30', 'fr', 1, 'https://ror.org/01t6wgp30 Affidea'),
(54071, 'https://ror.org/02nntm845', 'it', 1, 'https://ror.org/02nntm845 Inclusione Andicap Ticino'),
(54072, 'https://ror.org/01dyja912', 'no_lang_code', 1, 'https://ror.org/01dyja912 Ferarihs'),
(54073, 'https://ror.org/04qb2wt25', 'de', 1, 'https://ror.org/04qb2wt25 Gesundheits- und Fürsorgedirektion des Kantons Bern'),
(54074, 'https://ror.org/02g9eyr35', 'de', 1, 'https://ror.org/02g9eyr35 Forum für Zeitfragen'),
(54075, 'https://ror.org/03ans1x38', 'de', 1, 'https://ror.org/03ans1x38 Departement Gesundheit und Soziales'),
(54076, 'https://ror.org/00bs8t174', 'de', 1, 'https://ror.org/00bs8t174 Gesundheitsdienst'),
(54077, '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'),
(54078, 'https://ror.org/05t96nf23', 'de', 1, 'https://ror.org/05t96nf23 Departement Bildung, Kultur und Sport'),
(54079, 'https://ror.org/029d43v21', 'en', 1, 'https://ror.org/029d43v21 Foundation for Research and Socio Ecological Harmony'),
(54080, 'https://ror.org/03cyt4c89', 'fr', 1, 'https://ror.org/03cyt4c89 HƓpital du Jura Bernois'),
(54081, 'https://ror.org/0231gtc30', 'fr', 1, 'https://ror.org/0231gtc30 Fondation de Nant'),
(54082, 'https://ror.org/04xzb7w94', 'fr', 1, 'https://ror.org/04xzb7w94 Fondation Gandur pour l’Art'),
(54083, 'https://ror.org/02c62pw26', 'no_lang_code', 1, 'https://ror.org/02c62pw26 Hosoya Schaefer Architects (Switzerland)'),
(54084, 'https://ror.org/01nzca339', 'en', 1, 'https://ror.org/01nzca339 Fondation Pierre du Bois Pierre du Bois Foundation'),
(54085, 'https://ror.org/00gc5g440', 'en', 1, 'https://ror.org/00gc5g440 Ballenberg Freilichtmuseum der Schweiz Ballenberg Swiss Open-Air Museum'),
(54086, 'https://ror.org/002750k58', 'fr', 1, 'https://ror.org/002750k58 Fondation Suisse pour les Téléthèses'),
(54087, 'https://ror.org/05f99zn18', 'en', 1, 'https://ror.org/05f99zn18 Fruit Growing Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠžŠ²Š¾Ń‰Š°Ń€ŃŃ‚во'),
(54088, 'https://ror.org/024t02d47', 'en', 1, 'https://ror.org/024t02d47 Hydrobiological Institute Š„ŠøŠ“Ń€Š¾Š±ŠøŠ¾Š»Š¾ŃˆŠŗŠø Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(54089, 'https://ror.org/0573v8y73', 'it', 1, 'https://ror.org/0573v8y73 Fondazione Bolle di Magadino'),
(54090, 'https://ror.org/05msa1857', 'it', 1, 'https://ror.org/05msa1857 Fondazione Pellegrini Canevascini'),
(54091, 'https://ror.org/01enwhw69', 'de', 1, 'https://ror.org/01enwhw69 Sozialamt des Kantons Thurgau'),
(54092, 'https://ror.org/01vag2q21', 'de', 1, 'https://ror.org/01vag2q21 Forel Klinik'),
(54093, 'https://ror.org/05qs24e23', 'no_lang_code', 1, 'https://ror.org/05qs24e23 Hier und Jetzt (Switzerland)'),
(54094, 'https://ror.org/00zm8c694', 'no_lang_code', 1, 'https://ror.org/00zm8c694 IC Infraconsult (Switzerland)'),
(54095, 'https://ror.org/037ne1y28', 'no_lang_code', 1, 'https://ror.org/037ne1y28 HighDim (Switzerland)'),
(54096, 'https://ror.org/0249zbx82', 'en', 1, 'https://ror.org/0249zbx82 Institutul de Cercetari Metalurgice Metallurgical Research Institute'),
(54097, 'https://ror.org/016fqsx25', 'en', 1, 'https://ror.org/016fqsx25 Formation Continue UNIL-EPFL'),
(54098, 'https://ror.org/0465j8q23', 'de', 1, 'https://ror.org/0465j8q23 Historischer Verein des Kantons Schwyz'),
(54099, 'https://ror.org/0541hm480', 'de', 1, 'https://ror.org/0541hm480 Stadtbibliothek Winterthur'),
(54100, 'https://ror.org/05y18s311', 'no_lang_code', 1, 'https://ror.org/05y18s311 Guagliardi Ruoss (Switzerland)'),
(54101, 'https://ror.org/04vmvjq74', 'de', 1, 'https://ror.org/04vmvjq74 Historisches Museum Olten'),
(54102, 'https://ror.org/05hkd2w18', 'fr', 1, 'https://ror.org/05hkd2w18 Gymnase de la rue des Alpes'),
(54103, 'https://ror.org/050qj5a78', 'fr', 1, 'https://ror.org/050qj5a78 Gymnase du Bugnon'),
(54104, 'https://ror.org/04b9pxw89', 'de', 1, 'https://ror.org/04b9pxw89 Gymnasien Kirchenfeld'),
(54105, 'https://ror.org/052xrhc79', 'de', 1, 'https://ror.org/052xrhc79 Gymnasium am Münsterplatz'),
(54106, 'https://ror.org/00g4vzf03', 'de', 1, 'https://ror.org/00g4vzf03 Stadt Zürich Hochbaudepartement'),
(54107, 'https://ror.org/05hy9mg53', 'de', 1, 'https://ror.org/05hy9mg53 Hochgebirgsklinik Davos'),
(54108, 'https://ror.org/02p85dj71', 'no_lang_code', 1, 'https://ror.org/02p85dj71 Geo7 (Switzerland)'),
(54109, 'https://ror.org/02yh57h22', 'de', 1, 'https://ror.org/02yh57h22 ForschungsstƤtte der Evangelischen Studiengemeinschaft'),
(54110, 'https://ror.org/02gmhaq29', 'de', 1, 'https://ror.org/02gmhaq29 Gerichte Zürich'),
(54111, 'https://ror.org/0254rs835', 'de', 1, 'https://ror.org/0254rs835 Gesellschaft für Hochschulforschung'),
(54112, 'https://ror.org/01w4jyd92', 'de', 1, 'https://ror.org/01w4jyd92 Hartmann Dreyer'),
(54113, 'https://ror.org/027r3eh78', 'no_lang_code', 1, 'https://ror.org/027r3eh78 Infrastructure Management Consultants (Switzerland)'),
(54114, 'https://ror.org/05bgkkd24', 'de', 1, 'https://ror.org/05bgkkd24 Spital Lachen'),
(54115, 'https://ror.org/02gb28e58', 'no_lang_code', 1, 'https://ror.org/02gb28e58 HƤssig Sustech (Switzerland)'),
(54116, 'https://ror.org/05ayx2752', 'no_lang_code', 1, 'https://ror.org/05ayx2752 Inser (Switzerland)'),
(54117, 'https://ror.org/02bt8gt55', 'fr', 1, 'https://ror.org/02bt8gt55 IMACTIS'),
(54118, 'https://ror.org/02k520m42', 'de', 1, 'https://ror.org/02k520m42 Imamed Radiologie Nordwest'),
(54119, 'https://ror.org/02dhdj549', 'fr', 1, 'https://ror.org/02dhdj549 Institut et MusƩe des Suisses dans le monde'),
(54120, 'https://ror.org/01h4ywk72', 'en', 1, 'https://ror.org/01h4ywk72 World Health Organization Regional Office for the Eastern Mediterranean'),
(54121, 'https://ror.org/04nfvby78', 'en', 1, 'https://ror.org/04nfvby78 World Health Organization Regional Office for the Western Pacific'),
(54122, 'https://ror.org/01m294726', 'en', 1, 'https://ror.org/01m294726 World Health Organization - Zimbabwe'),
(54123, 'https://ror.org/02af4h206', 'en', 1, 'https://ror.org/02af4h206 Institute of Archaeology and Ethnography Ō³Ō±Ō± Õ€Õ†Ō±Ō³Ō»ÕÕˆÕ’Ō¹Õ…Ō±Õ† ŌµÕŽ Ō±Ō¶Ō³Ō±Ō³ÕÕˆÕ’Ō¹Õ…Ō±Õ† Ō»Õ†ÕÕŌ»ÕÕˆÕ’Õ'),
(54124, 'https://ror.org/01gh34y65', 'fr', 1, 'https://ror.org/01gh34y65 Institut et MusƩe Voltaire'),
(54125, 'https://ror.org/05kz5x194', 'fr', 1, 'https://ror.org/05kz5x194 Clinique Romande de RƩadaptation'),
(54126, 'https://ror.org/05gvkjb48', 'en', 1, 'https://ror.org/05gvkjb48 Office of the Assistant Secretary for Planning and Evaluation'),
(54127, 'https://ror.org/03a1ck781', 'it', 1, 'https://ror.org/03a1ck781 Academia Engiadina'),
(54128, 'https://ror.org/001tn6x38', 'en', 1, 'https://ror.org/001tn6x38 Institut für Kommunikation & Führung Institute for Communication and Leadership'),
(54129, 'https://ror.org/01zvtwr46', 'de', 1, 'https://ror.org/01zvtwr46 Medizin Campus Bodensee'),
(54130, 'https://ror.org/04fj80m50', 'de', 1, 'https://ror.org/04fj80m50 Institut für Wirtschaftsstudien Basel'),
(54131, 'https://ror.org/05g23w557', 'fr', 1, 'https://ror.org/05g23w557 Institut National de la Statistique'),
(54132, 'https://ror.org/04y7jcj09', 'en', 1, 'https://ror.org/04y7jcj09 Institute of Hydrobiology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ГіГробіології'),
(54133, 'https://ror.org/05a73mk94', 'en', 1, 'https://ror.org/05a73mk94 Institut za poljoprivredu i turizam Poreč Institute of Agriculture and Tourism'),
(54134, 'https://ror.org/02asahb32', 'de', 1, 'https://ror.org/02asahb32 Institut Mathildenhƶhe Darmstadt'),
(54135, 'https://ror.org/03xt6as58', 'de', 1, 'https://ror.org/03xt6as58 Institut Montana Zugerberg'),
(54136, 'https://ror.org/02smqg134', 'fr', 1, 'https://ror.org/02smqg134 Institut SupƩrieur de Biotechnologie de Sfax'),
(54137, 'https://ror.org/00029be75', 'en', 1, 'https://ror.org/00029be75 Institute of Biology of Komi Scientific Centre Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° биологии Коми ŠŠ¦ Š£Ń€Šž Š ŠŠ'),
(54138, 'https://ror.org/05q1vsm15', 'en', 1, 'https://ror.org/05q1vsm15 International Society of Electrochemistry'),
(54139, 'https://ror.org/05mpgew40', 'en', 1, 'https://ror.org/05mpgew40 Institute of Botany ՀՀ Ō³Ō±Ō± Ō²ÕøÖ‚Õ½Õ”Õ¢Õ”Õ¶ÕøÖ‚Õ©ÕµÕ”Õ¶ Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(54140, 'https://ror.org/022hhet17', 'en', 1, 'https://ror.org/022hhet17 Carnegie Endowment for International Peace'),
(54141, 'https://ror.org/057mgt359', 'en', 1, 'https://ror.org/057mgt359 Institute of Cryobiology and Food Technology'),
(54142, 'https://ror.org/01s019j29', 'en', 1, 'https://ror.org/01s019j29 Prime Minister''s Office Finland StatsrƄdets Kansli Valtioneuvoston Kanslia'),
(54143, 'https://ror.org/0442vtt97', 'en', 1, 'https://ror.org/0442vtt97 National Association of Development Organizations'),
(54144, 'https://ror.org/037jk8996', 'en', 1, 'https://ror.org/037jk8996 Institute of Ecology of Mountain Territories Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø горных территорий Š ŠŠ'),
(54145, 'https://ror.org/0132ebm72', 'en', 1, 'https://ror.org/0132ebm72 Institute for Balkan Studies and Centre for Thracology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за балканистика с Ń†ŠµŠ½Ń‚ŃŠŃ€ по Ń‚Ń€Š°ŠŗŠ¾Š»Š¾Š³ŠøŃ'),
(54146, 'https://ror.org/04v87ev31', 'en', 1, 'https://ror.org/04v87ev31 Institute of Occupational Medicine'),
(54147, 'https://ror.org/059mh1c03', 'en', 1, 'https://ror.org/059mh1c03 Institute for Biomedical Diagnostics and Research NALAZ'),
(54148, 'https://ror.org/053cfm252', 'en', 1, 'https://ror.org/053cfm252 Institute for Conflict Transformation and Peacebuilding'),
(54149, 'https://ror.org/01m7dbh13', 'en', 1, 'https://ror.org/01m7dbh13 Coğrafiya İnstitutu Institute of Geography'),
(54150, 'https://ror.org/0597v6438', 'en', 1, 'https://ror.org/0597v6438 Institute for Economic Research and Policy Consulting Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ та політичних ŠŗŠ¾Š½ŃŃƒŠ»ŃŒŃ‚Š°Ń†Ń–Š¹'),
(54151, 'https://ror.org/03r6rhw30', 'en', 1, 'https://ror.org/03r6rhw30 Institute of Geological Sciences ŌµÖ€ÕÆÖ€Õ”Õ¢Õ”Õ¶Õ”ÕÆÕ”Õ¶ Õ£Õ«ÕæÕøÖ‚Õ©ÕµÕøÖ‚Õ¶Õ¶Õ„Ö€Õ«'),
(54152, 'https://ror.org/010y4ct40', 'it', 1, 'https://ror.org/010y4ct40 Istituto di Ortofonologia'),
(54153, 'https://ror.org/01y5w6t76', 'en', 1, 'https://ror.org/01y5w6t76 Istituto Trapianti d''Organo e Immunocitologia Organ Transplantation and Immunology Institute'),
(54154, 'https://ror.org/0074rcv14', 'en', 1, 'https://ror.org/0074rcv14 Institute for Soil Science and Agrochemistry Research Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ņ‘Ń€ŃƒŠ½Ń‚Š¾Š·Š½Š°Š²ŃŃ‚Š²Š° та агрохімії імені Šž.Š. Доколовського'),
(54155, 'https://ror.org/05b9eba69', 'en', 1, 'https://ror.org/05b9eba69 Institute for Soil Science and Agricultural Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠ¾Ń‡Š²Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Šø агрохимии Š”Šž Š ŠŠ'),
(54156, 'https://ror.org/00meqs091', 'de', 1, 'https://ror.org/00meqs091 Justiz Gemeinde und Kirchendirektion'),
(54157, 'https://ror.org/034aqje35', 'en', 1, 'https://ror.org/034aqje35 International Dialogue Centre'),
(54158, 'https://ror.org/04zkx3f21', 'en', 1, 'https://ror.org/04zkx3f21 Jinja Municipal Council'),
(54159, 'https://ror.org/058krbm80', 'de', 1, 'https://ror.org/058krbm80 Staatsarchiv Nidwalden'),
(54160, 'https://ror.org/016y4db75', 'en', 1, 'https://ror.org/016y4db75 Spital Linth'),
(54161, 'https://ror.org/013k74819', 'de', 1, 'https://ror.org/013k74819 KantonsarchƤologie'),
(54162, 'https://ror.org/01er6ka68', 'de', 1, 'https://ror.org/01er6ka68 KantonsarchƤologie'),
(54163, 'https://ror.org/00wt28973', 'de', 1, 'https://ror.org/00wt28973 Kantonsbibliothek von Appenzell Ausserrhoden'),
(54164, 'https://ror.org/01dxemz65', 'de', 1, 'https://ror.org/01dxemz65 Kantonsbibliothek Vadiana St.Gallen'),
(54165, 'https://ror.org/04qdg5539', 'de', 1, 'https://ror.org/04qdg5539 Kantonsschule am Burggraben'),
(54166, 'https://ror.org/03r9c3w85', 'de', 1, 'https://ror.org/03r9c3w85 Kantonsschule Freudenberg'),
(54167, 'https://ror.org/03rcnp347', 'de', 1, 'https://ror.org/03rcnp347 Kantonsschule Olten'),
(54168, 'https://ror.org/02vzx1287', 'de', 1, 'https://ror.org/02vzx1287 Kantonsschule Schaffhausen'),
(54169, 'https://ror.org/01qf8tz10', 'de', 1, 'https://ror.org/01qf8tz10 Kollegium Spiritus Sanctus Brig'),
(54170, 'https://ror.org/02sy3xj90', 'en', 1, 'https://ror.org/02sy3xj90 IFB AdipositasErkrankungen IFB Adiposity Diseases'),
(54171, 'https://ror.org/00mgaf355', 'de', 1, 'https://ror.org/00mgaf355 Kantonsschule Stadelhofen'),
(54172, 'https://ror.org/000x56e42', 'de', 1, 'https://ror.org/000x56e42 Kantonsschule Zug'),
(54173, 'https://ror.org/03why0p66', 'de', 1, 'https://ror.org/03why0p66 Interbion'),
(54174, 'https://ror.org/03j8n6z33', 'en', 1, 'https://ror.org/03j8n6z33 Reagan-Udall Foundation'),
(54175, 'https://ror.org/02fmm1979', 'de', 1, 'https://ror.org/02fmm1979 SpitƤler Schaffhausen'),
(54176, 'https://ror.org/003g9mh98', 'en', 1, 'https://ror.org/003g9mh98 International Center for Agribusiness Research and Education'),
(54177, 'https://ror.org/03v63hd28', 'no_lang_code', 1, 'https://ror.org/03v63hd28 Urangeologorazvedka УрангеологоразвеГка'),
(54178, 'https://ror.org/03fpt5m65', 'de', 1, 'https://ror.org/03fpt5m65 MVZ Labor Ravensburg'),
(54179, 'https://ror.org/00t6jgv77', 'en', 1, 'https://ror.org/00t6jgv77 Kazakh Scientific Reseach Institute for Ecology and Climate ŠšŠ¾Š¾Ń€Š“ŠøŠ½Š°Ń†ŠøŠ¾Š½Š½Š¾Š³Š¾ центра по ŠøŠ·Š¼ŠµŠ½ŠµŠ½ŠøŃŽ климата'),
(54180, 'https://ror.org/037wrv551', 'en', 1, 'https://ror.org/037wrv551 Kosovar Centre for Security Studies Qendra Kosovare pƫr Studime tƫ Sigurisƫ'),
(54181, 'https://ror.org/00gbp3k84', 'de', 1, 'https://ror.org/00gbp3k84 Klinik Bethesda'),
(54182, 'https://ror.org/034rw1w19', 'de', 1, 'https://ror.org/034rw1w19 Spital Muri'),
(54183, 'https://ror.org/04bbh4w12', 'es', 1, 'https://ror.org/04bbh4w12 Instituto Universitario de Profesiones Gerenciales'),
(54184, 'https://ror.org/02mkhqe40', 'de', 1, 'https://ror.org/02mkhqe40 Krisenintervention Schweiz'),
(54185, 'https://ror.org/0411rje29', 'no_lang_code', 1, 'https://ror.org/0411rje29 Laboratory of Glass Properties (Russia)'),
(54186, 'https://ror.org/04c87mr25', 'de', 1, 'https://ror.org/04c87mr25 Kulturamt Appenzell'),
(54187, 'https://ror.org/01a83sr17', 'de', 1, 'https://ror.org/01a83sr17 Kunsthaus Zug'),
(54188, 'https://ror.org/00yf3tm42', 'en', 1, 'https://ror.org/00yf3tm42 Center for Drug Evaluation and Research'),
(54189, 'https://ror.org/05hzdft06', 'en', 1, 'https://ror.org/05hzdft06 Center for Food Safety and Applied Nutrition'),
(54190, 'https://ror.org/02y55wr53', 'en', 1, 'https://ror.org/02y55wr53 Center for Veterinary Medicine'),
(54191, 'https://ror.org/05jmhh281', 'en', 1, 'https://ror.org/05jmhh281 National Center for Toxicological Research'),
(54192, 'https://ror.org/05r6hp586', 'no_lang_code', 1, 'https://ror.org/05r6hp586 Kutch Mahila Vikas Sanghatan'),
(54193, 'https://ror.org/006kf9d11', 'en', 1, 'https://ror.org/006kf9d11 Kyiv School of Economics ŠšŠøŃ—Š²ŃŃŒŠŗŠ° школа економіки'),
(54194, 'https://ror.org/00f89qm26', 'de', 1, 'https://ror.org/00f89qm26 Landesdenkmalamt Baden Württemberg'),
(54195, 'https://ror.org/03ce77208', 'en', 1, 'https://ror.org/03ce77208 Kyiv Mohyla Business School ŠšŠøŃ”Š²Š¾-ŠœŠ¾Š³ŠøŠ»ŃŠ½ŃŃŒŠŗŠ° Бізнес Школа'),
(54196, 'https://ror.org/05a9fs939', 'de', 1, 'https://ror.org/05a9fs939 Landwirtschaftliches Zentrum Liebegg'),
(54197, 'https://ror.org/0453rk787', 'fr', 1, 'https://ror.org/0453rk787 Laboratoire de Sciences de la Terre'),
(54198, 'https://ror.org/045gwct77', 'no_lang_code', 1, 'https://ror.org/045gwct77 Lenz & Staehelin (Switzerland)'),
(54199, 'https://ror.org/02c7g6d72', 'en', 1, 'https://ror.org/02c7g6d72 Lauener Foundation for Analytical Philosophy Lauener-Stiftung'),
(54200, 'https://ror.org/043m08574', 'fr', 1, 'https://ror.org/043m08574 Lausanne Natation'),
(54201, 'https://ror.org/04rxa0k64', 'it', 1, 'https://ror.org/04rxa0k64 Lega Ticinese Contro il Reumatismo'),
(54202, 'https://ror.org/039fymv14', 'no_lang_code', 1, 'https://ror.org/039fymv14 Malik Management (Switzerland)'),
(54203, 'https://ror.org/0535wgn29', 'en', 1, 'https://ror.org/0535wgn29 Mary Rose Trust'),
(54204, 'https://ror.org/03m2daf51', 'de', 1, 'https://ror.org/03m2daf51 Memory-Klinik Entlisberg'),
(54205, 'https://ror.org/00e17ad95', 'en', 1, 'https://ror.org/00e17ad95 Meyerlustenberger Lachenal Attorneys at Law');
INSERT INTO `rors` VALUES
(54206, 'https://ror.org/00pd5dx05', 'no_lang_code', 1, 'https://ror.org/00pd5dx05 Y-Parc (Switzerland)'),
(54207, 'https://ror.org/04rxsdm69', 'no_lang_code', 1, 'https://ror.org/04rxsdm69 Microsynth (Switzerland)'),
(54208, 'https://ror.org/044s8gt42', 'fr', 1, 'https://ror.org/044s8gt42 MusƩe cantonal de zoologie de Lausanne'),
(54209, 'https://ror.org/05crbhr50', 'fr', 1, 'https://ror.org/05crbhr50 MusƩe des beaux-arts de La Chaux-de-Fonds'),
(54210, 'https://ror.org/0135y0c80', 'de', 1, 'https://ror.org/0135y0c80 Mittelschul- und Berufsbildungsamt'),
(54211, 'https://ror.org/019fwhw29', 'en', 1, 'https://ror.org/019fwhw29 Muzeul Național al Ţăranului RomĆ¢n Romanian Peasant Museum'),
(54212, 'https://ror.org/04xcgfz03', 'no_lang_code', 1, 'https://ror.org/04xcgfz03 MME Legal (Switzerland)'),
(54213, 'https://ror.org/031zhyf70', 'it', 1, 'https://ror.org/031zhyf70 Museo di Valmaggia'),
(54214, 'https://ror.org/0229p0a70', 'it', 1, 'https://ror.org/0229p0a70 Museo Vincenzo Vela'),
(54215, 'https://ror.org/02waf2h92', 'no_lang_code', 1, 'https://ror.org/02waf2h92 Mobility Carsharing (Switzerland)'),
(54216, 'https://ror.org/041rqdp46', 'no_lang_code', 1, 'https://ror.org/041rqdp46 MCE Avocats (Switzerland)'),
(54217, 'https://ror.org/02nta4587', 'it', 1, 'https://ror.org/02nta4587 Museo Civico Villa dei Cedri'),
(54218, 'https://ror.org/05mrcfm45', 'es', 1, 'https://ror.org/05mrcfm45 Nes Naturaleza'),
(54219, 'https://ror.org/01kyt4w97', 'no_lang_code', 1, 'https://ror.org/01kyt4w97 NBE Therapeutics (Switzerland)'),
(54220, 'https://ror.org/00336ng80', 'de', 1, 'https://ror.org/00336ng80 Museum Appenzell'),
(54221, 'https://ror.org/05w1dmd75', 'no_lang_code', 1, 'https://ror.org/05w1dmd75 Med Discovery (Switzerland)'),
(54222, 'https://ror.org/03nwa6q52', 'no_lang_code', 1, 'https://ror.org/03nwa6q52 Med-Consilium (Switzerland)'),
(54223, 'https://ror.org/05avhxb06', 'de', 1, 'https://ror.org/05avhxb06 Museum im Lagerhaus'),
(54224, 'https://ror.org/043wdfc35', 'en', 1, 'https://ror.org/043wdfc35 Museum of Yugoslav History Muzej Jugoslavije'),
(54225, 'https://ror.org/05yj26y55', 'de', 1, 'https://ror.org/05yj26y55 Museo retico Museum retic RƤtisches Museum'),
(54226, 'https://ror.org/029vrd053', 'en', 1, 'https://ror.org/029vrd053 Nepal Centre for Contemporary Research'),
(54227, 'https://ror.org/001tk4253', 'no_lang_code', 1, 'https://ror.org/001tk4253 Philips (China)'),
(54228, 'https://ror.org/05am0hk18', 'de', 1, 'https://ror.org/05am0hk18 Rietberg Museum'),
(54229, 'https://ror.org/03zgyfe94', 'en', 1, 'https://ror.org/03zgyfe94 Mountain Research Initiative'),
(54230, 'https://ror.org/046nmb538', 'de', 1, 'https://ror.org/046nmb538 NET Metrix'),
(54231, 'https://ror.org/01nxvt824', 'de', 1, 'https://ror.org/01nxvt824 Museum zu Allerheiligen'),
(54232, 'https://ror.org/03txfss92', 'de', 1, 'https://ror.org/03txfss92 Museumsgesellschaft Zürich'),
(54233, 'https://ror.org/03asdhg22', 'no_lang_code', 1, 'https://ror.org/03asdhg22 Myx (Switzerland)'),
(54234, 'https://ror.org/04zs69r73', 'no_lang_code', 1, 'https://ror.org/04zs69r73 Oekoscience (Switzerland)'),
(54235, 'https://ror.org/035ded219', 'no_lang_code', 1, 'https://ror.org/035ded219 RhySearch (Switzerland)'),
(54236, 'https://ror.org/00a99dg75', 'de', 1, 'https://ror.org/00a99dg75 Medienboard Berlin-Brandenburg'),
(54237, 'https://ror.org/023g71078', 'no_lang_code', 1, 'https://ror.org/023g71078 Medignition (Switzerland)'),
(54238, 'https://ror.org/00m590d63', 'de', 1, 'https://ror.org/00m590d63 Mediplant'),
(54239, 'https://ror.org/03szsag65', 'de', 1, 'https://ror.org/03szsag65 ƖKK (Switzerland)'),
(54240, 'https://ror.org/02b7e7p97', 'en', 1, 'https://ror.org/02b7e7p97 Institute of Philosophy, Sociology and Law'),
(54241, 'https://ror.org/02f0t3e51', 'en', 1, 'https://ror.org/02f0t3e51 National Center of Space Research and Technology'),
(54242, 'https://ror.org/02whbzt53', 'no_lang_code', 1, 'https://ror.org/02whbzt53 Planair (Switzerland)'),
(54243, 'https://ror.org/039a0eq51', 'de', 1, 'https://ror.org/039a0eq51 Ostkirchliches Institut Regensburg'),
(54244, 'https://ror.org/0271pk470', 'en', 1, 'https://ror.org/0271pk470 Plant and Fungi Biotechnology Laboratory'),
(54245, 'https://ror.org/058pgtg13', 'en', 1, 'https://ror.org/058pgtg13 Evelina London Children''s Healthcare'),
(54246, 'https://ror.org/05j7bjh16', 'fr', 1, 'https://ror.org/05j7bjh16 Police Cantonale de GenĆØve'),
(54247, 'https://ror.org/05434yv04', 'de', 1, 'https://ror.org/05434yv04 Pestalozzianum'),
(54248, 'https://ror.org/001w3p255', 'de', 1, 'https://ror.org/001w3p255 Pflege-und Adoptivkinder Schweiz'),
(54249, 'https://ror.org/028kw5d11', 'no_lang_code', 1, 'https://ror.org/028kw5d11 New Guinea Binatang Research Center'),
(54250, 'https://ror.org/009j8n021', 'no_lang_code', 1, 'https://ror.org/009j8n021 Polynomics (Switzerland)'),
(54251, 'https://ror.org/000bcd992', 'it', 1, 'https://ror.org/000bcd992 Pontificio Istituto di Archeologia Cristiana'),
(54252, 'https://ror.org/04m1eta66', 'en', 1, 'https://ror.org/04m1eta66 Aigine Cultural Research Center'),
(54253, 'https://ror.org/00adb1q31', 'en', 1, 'https://ror.org/00adb1q31 Pushkin Museum Музей ŠøŠ·Š¾Š±Ń€Š°Š·ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… ŠøŃŠŗŃƒŃŃŃ‚Š² им. А.Š”. Пушкина'),
(54254, 'https://ror.org/02mw9as30', 'de', 1, 'https://ror.org/02mw9as30 Neues Museum Biel'),
(54255, 'https://ror.org/03ft9kk45', 'de', 1, 'https://ror.org/03ft9kk45 Praktischer Umweltschutz'),
(54256, 'https://ror.org/02xfh0g21', 'fr', 1, 'https://ror.org/02xfh0g21 RƩseau Fribourgeois de SantƩ Mentale'),
(54257, 'https://ror.org/048ztsn21', 'en', 1, 'https://ror.org/048ztsn21 Cochrane'),
(54258, 'https://ror.org/02aqwrz59', 'no_lang_code', 1, 'https://ror.org/02aqwrz59 R + R Burger Und Partner (Switzerland)'),
(54259, 'https://ror.org/05598yn68', 'no_lang_code', 1, 'https://ror.org/05598yn68 Ringier (Switzerland)'),
(54260, 'https://ror.org/057h5ne89', 'no_lang_code', 1, 'https://ror.org/057h5ne89 Robert-Grandpierre et Rapp (Switzerland)'),
(54261, 'https://ror.org/02eqdmy88', 'en', 1, 'https://ror.org/02eqdmy88 Geological Survey of Kyrgyzstan Š“ŠµŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń служба ŠšŃ‹Ń€Š³Ń‹Š·ŃŃ‚ана'),
(54262, 'https://ror.org/008yk9930', 'de', 1, 'https://ror.org/008yk9930 Rƶmisches Institut der Gƶrres-Gesellschaft'),
(54263, 'https://ror.org/05mczez68', 'no_lang_code', 1, 'https://ror.org/05mczez68 Rosenthaler + Partner (Switzerland)'),
(54264, 'https://ror.org/00zw38x02', 'en', 1, 'https://ror.org/00zw38x02 Research Center of Maternal and Child Health Protection'),
(54265, 'https://ror.org/01w3m1m52', 'de', 1, 'https://ror.org/01w3m1m52 Departementssekretariat Schul- und Sportdepartement'),
(54266, 'https://ror.org/04nht1525', 'no_lang_code', 1, 'https://ror.org/04nht1525 Sampark'),
(54267, 'https://ror.org/00w8ecv17', 'de', 1, 'https://ror.org/00w8ecv17 Die Schweizer Fachstelle'),
(54268, 'https://ror.org/03mse1e58', 'no_lang_code', 1, 'https://ror.org/03mse1e58 St.Galler Stadtwerke (Switzerland)'),
(54269, 'https://ror.org/03d9zp606', 'de', 1, 'https://ror.org/03d9zp606 Schweizerische Gesellschaft für Ländliche Geschichte'),
(54270, 'https://ror.org/02dw90x37', 'de', 1, 'https://ror.org/02dw90x37 Schweizerischer Gewerkschaftsbund Union syndicale suisse Unione sindacale svizzera'),
(54271, 'https://ror.org/01w5qzb22', 'de', 1, 'https://ror.org/01w5qzb22 NZZ am Sonntag'),
(54272, 'https://ror.org/047n5wn91', 'no_lang_code', 1, 'https://ror.org/047n5wn91 Scanco Medical (Switzerland)'),
(54273, 'https://ror.org/00ssvjd95', 'de', 1, 'https://ror.org/00ssvjd95 Schweizerische Koordinationsstelle für Bildungsforschung'),
(54274, 'https://ror.org/031ew1v21', 'no_lang_code', 1, 'https://ror.org/031ew1v21 Schaffner (Switzerland)'),
(54275, 'https://ror.org/03pe1pm82', 'no_lang_code', 1, 'https://ror.org/03pe1pm82 Scherrer (Switzerland)'),
(54276, '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'),
(54277, 'https://ror.org/03nzsxf62', 'de', 1, 'https://ror.org/03nzsxf62 Schweizer Presserat'),
(54278, 'https://ror.org/0300sbr79', 'en', 1, 'https://ror.org/0300sbr79 Competition Commission Secretariat Wettbewerbskommission'),
(54279, 'https://ror.org/018fjx211', 'de', 1, 'https://ror.org/018fjx211 Schweizer Zither-Kulturzentrum'),
(54280, 'https://ror.org/01z6p8p31', 'en', 1, 'https://ror.org/01z6p8p31 Office of Infectious Diseases'),
(54281, 'https://ror.org/03afd3583', 'en', 1, 'https://ror.org/03afd3583 Schweizerische Akademie für Entwicklung Swiss Academy for Development'),
(54282, 'https://ror.org/046q3s698', 'de', 1, 'https://ror.org/046q3s698 Schweizer Allianz Gentechfrei'),
(54283, 'https://ror.org/05x86b629', 'fr', 1, 'https://ror.org/05x86b629 SociƩtƩ d''Etudes TƶpffƩriennes'),
(54284, 'https://ror.org/05h634p83', 'no_lang_code', 1, 'https://ror.org/05h634p83 Credit Suisse (Switzerland)'),
(54285, 'https://ror.org/05h7xpn20', 'es', 1, 'https://ror.org/05h7xpn20 Servicio Nacional de MeteorologĆ­a e HidrologĆ­a del PerĆŗ'),
(54286, 'https://ror.org/05ynech64', 'es', 1, 'https://ror.org/05ynech64 Servicio Nacional de HidrologĆ­a y MeteorologĆ­a'),
(54287, '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'),
(54288, 'https://ror.org/015rwy490', 'de', 1, 'https://ror.org/015rwy490 Schweizerischer Juristenverein'),
(54289, 'https://ror.org/002ssx495', 'en', 1, 'https://ror.org/002ssx495 Parc National Suisse Parc Naziunal Svizzer Parco Nazionale Svizzero Schweizerischer Nationalpark Swiss National Park'),
(54290, 'https://ror.org/029k6t707', 'en', 1, 'https://ror.org/029k6t707 Institute of Ecosystem Study Istituto per lo Studio degli Ecosistemi'),
(54291, 'https://ror.org/02bbbyx25', 'en', 1, 'https://ror.org/02bbbyx25 Schweizerisches Gesundheitsobservatorium Swiss Health Observatory'),
(54292, 'https://ror.org/04jfcr240', 'no_lang_code', 1, 'https://ror.org/04jfcr240 Schwery Consulting (Switzerland)'),
(54293, 'https://ror.org/03ma5bv95', 'de', 1, 'https://ror.org/03ma5bv95 Statistische Amt Basel-Stadt'),
(54294, 'https://ror.org/02eg7y103', 'fr', 1, 'https://ror.org/02eg7y103 Direction de la SƩcuritƩ et de la Justice'),
(54295, 'https://ror.org/04bf54607', 'no_lang_code', 1, 'https://ror.org/04bf54607 Soudronic (Switzerland)'),
(54296, 'https://ror.org/02n7vdk57', 'no_lang_code', 1, 'https://ror.org/02n7vdk57 Soundtherm (Switzerland)'),
(54297, 'https://ror.org/009nd6m74', 'de', 1, 'https://ror.org/009nd6m74 Pro Helvetia'),
(54298, 'https://ror.org/01n0pr454', 'no_lang_code', 1, 'https://ror.org/01n0pr454 Scimetrica (Switzerland)'),
(54299, 'https://ror.org/05h0xb276', 'fr', 1, 'https://ror.org/05h0xb276 Service de l''Enfance et de la Jeunesse'),
(54300, 'https://ror.org/030dfzf23', 'de', 1, 'https://ror.org/030dfzf23 Sozialversicherungsgericht des Kantons Zürich'),
(54301, 'https://ror.org/02ezey555', 'no_lang_code', 1, 'https://ror.org/02ezey555 Strittmatter Partner (Switzerland)'),
(54302, 'https://ror.org/0396h7r78', 'no_lang_code', 1, 'https://ror.org/0396h7r78 Studi Associati (Switzerland)'),
(54303, 'https://ror.org/02p9aa336', 'fr', 1, 'https://ror.org/02p9aa336 Office de la Culture Section d''archƩologie et PalƩontologie'),
(54304, 'https://ror.org/036bs9x63', 'no_lang_code', 1, 'https://ror.org/036bs9x63 Suisag (Switzerland)'),
(54305, 'https://ror.org/04p4qmn53', 'no_lang_code', 1, 'https://ror.org/04p4qmn53 Suiselectra Consulting Engineers (Switzerland) Suiselectra Ingenieurunternehmung AG'),
(54306, 'https://ror.org/01camvb92', 'en', 1, 'https://ror.org/01camvb92 Fribourg Development Agency Promotion Ʃconomique du canton de Fribourg'),
(54307, 'https://ror.org/00nmpgc29', 'no_lang_code', 1, 'https://ror.org/00nmpgc29 Supercomputing Systems (Switzerland)'),
(54308, 'https://ror.org/0248vx102', 'de', 1, 'https://ror.org/0248vx102 Schweizerische Gesellschaft für Kardiologie'),
(54309, 'https://ror.org/046e4b521', 'fr', 1, 'https://ror.org/046e4b521 Direction GƩnƩrale de l''Enseignement Obligatoire - Enseignement Primaire'),
(54310, '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'),
(54311, 'https://ror.org/029005e08', 'fr', 1, 'https://ror.org/029005e08 DƩpartement de la SantƩ et de l''Action Sociale'),
(54312, 'https://ror.org/003r4c219', 'fr', 1, 'https://ror.org/003r4c219 Service de SantƩ de la Jeunesse'),
(54313, 'https://ror.org/037xabw57', 'en', 1, 'https://ror.org/037xabw57 Swiss Integrative Center for Human Health'),
(54314, 'https://ror.org/03c4j0595', 'en', 1, 'https://ror.org/03c4j0595 Court of Arbitration for Sport Tribunal arbitral du sport'),
(54315, 'https://ror.org/01006rc90', 'en', 1, 'https://ror.org/01006rc90 Staatsarchiv des Kantons Bern State Archive of Bern'),
(54316, 'https://ror.org/05wv7q844', 'no_lang_code', 1, 'https://ror.org/05wv7q844 Trimarca (Switzerland)'),
(54317, 'https://ror.org/03sf5ja42', 'en', 1, 'https://ror.org/03sf5ja42 Swiss Stem Cell Foundation'),
(54318, 'https://ror.org/02t7v9117', 'de', 1, 'https://ror.org/02t7v9117 Staatsarchiv Luzern'),
(54319, 'https://ror.org/036gejb44', 'en', 1, 'https://ror.org/036gejb44 Tuba City Regional Health Care'),
(54320, 'https://ror.org/036qrws31', 'de', 1, 'https://ror.org/036qrws31 Staatsarchiv des Kantons Solothurn'),
(54321, 'https://ror.org/04z91z113', 'no_lang_code', 1, 'https://ror.org/04z91z113 Symbios OrthopƩdie (Switzerland)'),
(54322, 'https://ror.org/05p5nhz16', 'de', 1, 'https://ror.org/05p5nhz16 Staatskanzlei des Kantons Zürich'),
(54323, 'https://ror.org/002dtc250', 'no_lang_code', 1, 'https://ror.org/002dtc250 Syndicom (Switzerland)'),
(54324, 'https://ror.org/00ddy0v87', 'it', 1, 'https://ror.org/00ddy0v87 Ufficio di Statistica'),
(54325, 'https://ror.org/00nxm9m32', 'de', 1, 'https://ror.org/00nxm9m32 Stadtarchiv Bern'),
(54326, 'https://ror.org/0326ky169', 'de', 1, 'https://ror.org/0326ky169 Theologische Hochschule Chur'),
(54327, 'https://ror.org/00vbwpw70', 'de', 1, 'https://ror.org/00vbwpw70 Stadtgalerie Bern'),
(54328, 'https://ror.org/00bfx7n30', 'no_lang_code', 1, 'https://ror.org/00bfx7n30 Tamedia (Switzerland)'),
(54329, 'https://ror.org/028xcfg40', 'en', 1, 'https://ror.org/028xcfg40 P.S. Pasternak Research Institute for Mountain Forestry Украинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного лесовоГства'),
(54330, 'https://ror.org/05n813p54', 'no_lang_code', 1, 'https://ror.org/05n813p54 Burckhardt+Partner (Switzerland)'),
(54331, 'https://ror.org/01avs2k90', 'en', 1, 'https://ror.org/01avs2k90 Ulugh Beg Astronomical Institute'),
(54332, 'https://ror.org/00h5qcp65', 'fr', 1, 'https://ror.org/00h5qcp65 Touring Club Suisse'),
(54333, 'https://ror.org/032bsv240', 'de', 1, 'https://ror.org/032bsv240 Independent Commission of Experts Switzerland – Second World War UnabhƤngige Expertenkommission Schweiz'),
(54334, 'https://ror.org/03dt0c328', 'no_lang_code', 1, 'https://ror.org/03dt0c328 Tornos (Switzerland)'),
(54335, 'https://ror.org/03y2n5b37', 'es', 1, 'https://ror.org/03y2n5b37 Universidad Católica Lumen Gentium'),
(54336, 'https://ror.org/00qkj1g75', 'no_lang_code', 1, 'https://ror.org/00qkj1g75 SKK Landschaftsarchitekten (Switzerland)'),
(54337, 'https://ror.org/01x802g65', 'en', 1, 'https://ror.org/01x802g65 MRC Centre for Regenerative Medicine'),
(54338, 'https://ror.org/03pvhr873', 'no_lang_code', 1, 'https://ror.org/03pvhr873 SNZ Ingenieure und Planer (Switzerland)'),
(54339, 'https://ror.org/01fy1r152', 'no_lang_code', 1, 'https://ror.org/01fy1r152 SociĆ©tĆ© d''Ɖtude de l''Environnement (Switzerland)'),
(54340, 'https://ror.org/00vnjz480', 'de', 1, 'https://ror.org/00vnjz480 Verwaltungsgericht Kantons Aargau'),
(54341, 'https://ror.org/042z4g643', 'de', 1, 'https://ror.org/042z4g643 Swisslex'),
(54342, 'https://ror.org/000sg8a95', 'de', 1, 'https://ror.org/000sg8a95 Vereinigung der Walliser Museen'),
(54343, 'https://ror.org/040ch1c18', 'en', 1, 'https://ror.org/040ch1c18 Women''s Right to Education Programme'),
(54344, 'https://ror.org/036awb582', 'de', 1, 'https://ror.org/036awb582 Verwaltungsgericht Kantons Zürich'),
(54345, 'https://ror.org/00cv3vp39', 'fr', 1, 'https://ror.org/00cv3vp39 Verzone Woods Architectes'),
(54346, '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'),
(54347, 'https://ror.org/003bz8x96', 'de', 1, 'https://ror.org/003bz8x96 WiederkƤuerklinik'),
(54348, 'https://ror.org/0269xd847', 'no_lang_code', 1, 'https://ror.org/0269xd847 Wüest Partner (Switzerland)'),
(54349, 'https://ror.org/00vts9t98', 'de', 1, 'https://ror.org/00vts9t98 VIA AudioVideoFotoKunst'),
(54350, 'https://ror.org/01rkrma98', 'en', 1, 'https://ror.org/01rkrma98 Virtu Public Affairs'),
(54351, 'https://ror.org/049ay0490', 'no_lang_code', 1, 'https://ror.org/049ay0490 Velobüro (Switzerland)'),
(54352, 'https://ror.org/01sja4271', 'no_lang_code', 1, 'https://ror.org/01sja4271 Vischer (Switzerland)'),
(54353, 'https://ror.org/02r3z7548', 'en', 1, 'https://ror.org/02r3z7548 Foundation for People with Rare Diseases Stiftung für Menschen mit seltenen Krankheiten'),
(54354, 'https://ror.org/03pjnvf85', 'en', 1, 'https://ror.org/03pjnvf85 Zürich Zoological Garden Zürich Zoologischer Garten'),
(54355, 'https://ror.org/01z5r3y12', 'de', 1, 'https://ror.org/01z5r3y12 Schweizerische Vereinigung für Landesplanung'),
(54356, 'https://ror.org/04ttxs071', 'en', 1, 'https://ror.org/04ttxs071 Berlin Zoological Garden Zoologischer Garten Berlin'),
(54357, 'https://ror.org/01nr0r658', 'de', 1, 'https://ror.org/01nr0r658 Vorarlberg Museum'),
(54358, 'https://ror.org/02r6dcw55', 'no_lang_code', 1, 'https://ror.org/02r6dcw55 Verlagsvertretung Susan Filges (Germany)'),
(54359, 'https://ror.org/01dph1h97', 'en', 1, 'https://ror.org/01dph1h97 Zurich Chamber of Commerce Zürcher Handelskammer'),
(54360, 'https://ror.org/019ygn834', 'de', 1, 'https://ror.org/019ygn834 Zentrum für Sprachtherapie'),
(54361, 'https://ror.org/003mh1m57', 'de', 1, 'https://ror.org/003mh1m57 Zürcher RehaZentrum Davos'),
(54362, 'https://ror.org/03cw8qd03', 'no_lang_code', 1, 'https://ror.org/03cw8qd03 Zurich Insurance Group (Switzerland) Zürich Versicherungen'),
(54363, 'https://ror.org/02dfnfz19', 'en', 1, 'https://ror.org/02dfnfz19 Women''s International League for Peace and Freedom'),
(54364, 'https://ror.org/03jrwxb40', 'no_lang_code', 1, 'https://ror.org/03jrwxb40 Zwahlen et Mayr (Switzerland)'),
(54365, 'https://ror.org/02897ye82', 'es', 1, 'https://ror.org/02897ye82 Fundación Alfonso Martín Escudero'),
(54366, 'https://ror.org/03zhx9h04', 'es', 1, 'https://ror.org/03zhx9h04 CaixaBank'),
(54367, 'https://ror.org/04zqaby77', 'no_lang_code', 1, 'https://ror.org/04zqaby77 Roemmers Laboratories (Argentina)'),
(54368, 'https://ror.org/01qwdc951', 'no_lang_code', 1, 'https://ror.org/01qwdc951 Bayer (Switzerland)'),
(54369, 'https://ror.org/03q56pj35', 'da', 1, 'https://ror.org/03q56pj35 BĆørnecancerfonden'),
(54370, 'https://ror.org/03pbfnd97', 'en', 1, 'https://ror.org/03pbfnd97 Foundation for Alcohol Research'),
(54371, 'https://ror.org/02kdrgt12', 'da', 1, 'https://ror.org/02kdrgt12 A.P. MĆøller og Hustru Chastine Mc-Kinney MĆøllers Fond'),
(54372, 'https://ror.org/0107h6s84', 'en', 1, 'https://ror.org/0107h6s84 Alfred Kordelin Foundation'),
(54373, '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'),
(54374, 'https://ror.org/04993kw89', 'de', 1, 'https://ror.org/04993kw89 Departement für Wirtschaft, Soziales und Umwelt'),
(54375, 'https://ror.org/020hnjs91', 'sv', 1, 'https://ror.org/020hnjs91 Alfred Ɩsterlunds Stiftelse'),
(54376, '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'),
(54377, 'https://ror.org/036jhs482', 'es', 1, 'https://ror.org/036jhs482 Fundación Alicia Koplowitz'),
(54378, 'https://ror.org/046q3c491', 'sv', 1, 'https://ror.org/046q3c491 Direktƶr Albert PƄhlssons Stiftelse fƶr VƤlgƶrenhet'),
(54379, 'https://ror.org/05wyebt73', 'fr', 1, 'https://ror.org/05wyebt73 Association pour l''Assistance Ć  Domicile aux Insuffisants Respiratoire Chroniques'),
(54380, 'https://ror.org/02195qc46', 'en', 1, 'https://ror.org/02195qc46 Bunge & Born Foundation'),
(54381, 'https://ror.org/02t0dpg32', 'en', 1, 'https://ror.org/02t0dpg32 Caesars Foundation'),
(54382, 'https://ror.org/03ytay263', 'en', 1, 'https://ror.org/03ytay263 Donald Woods Foundation'),
(54383, 'https://ror.org/03g2f4v48', 'fr', 1, 'https://ror.org/03g2f4v48 Angers Loire MƩtropole'),
(54384, 'https://ror.org/05vvvp143', 'en', 1, 'https://ror.org/05vvvp143 California Dried Plum Board'),
(54385, 'https://ror.org/048016404', 'da', 1, 'https://ror.org/048016404 Dansk KrƦftforsknings Fond'),
(54386, 'https://ror.org/031gcry19', 'de', 1, 'https://ror.org/031gcry19 JackstƤdt Stiftung'),
(54387, 'https://ror.org/01eeqch44', 'es', 1, 'https://ror.org/01eeqch44 Agencia Canaria de Investigación, Innovación y Sociedad de la Información'),
(54388, 'https://ror.org/04521r875', 'fr', 1, 'https://ror.org/04521r875 Agence de l''eau RhƓne MƩditerranƩe Corse'),
(54389, 'https://ror.org/03qps9x60', 'fr', 1, 'https://ror.org/03qps9x60 Agence des Aires Marines ProtƩgƩes'),
(54390, 'https://ror.org/01ars0856', 'en', 1, 'https://ror.org/01ars0856 Atlanta Clinical and Translational Science Institute'),
(54391, 'https://ror.org/00826gz80', 'de', 1, 'https://ror.org/00826gz80 Deutsche JosƩ Carreras LeukƤmie-Stiftung'),
(54392, 'https://ror.org/000x0ym82', 'no_lang_code', 1, 'https://ror.org/000x0ym82 LƤnsfƶrsƤkringar (Sweden)'),
(54393, 'https://ror.org/05akyca73', 'en', 1, 'https://ror.org/05akyca73 Agrisus Foundation – Sustainable Agriculture Fundação Agrisus'),
(54394, 'https://ror.org/01ar4tp47', 'en', 1, 'https://ror.org/01ar4tp47 Austrian Marshall Plan Foundation Marshallplan JubilƤumsstiftung'),
(54395, 'https://ror.org/02hfcar63', 'en', 1, 'https://ror.org/02hfcar63 Directorate General of Commercial Intelligence and Statistics'),
(54396, 'https://ror.org/02bz4qp22', 'en', 1, 'https://ror.org/02bz4qp22 Diabetes Research and Wellness Foundation'),
(54397, 'https://ror.org/02d6mgz84', 'en', 1, 'https://ror.org/02d6mgz84 ElƤinlƤƤketieteen Tutkimuksen TukisƤƤtiƶ Finnish Veterinary Foundation'),
(54398, 'https://ror.org/01nk16n48', 'en', 1, 'https://ror.org/01nk16n48 Azm & Saade Association'),
(54399, 'https://ror.org/00gsykk45', 'sv', 1, 'https://ror.org/00gsykk45 ƅhlĆ©n-Stiftelsen'),
(54400, 'https://ror.org/031h5fa94', 'de', 1, 'https://ror.org/031h5fa94 Baden-Württemberg Stiftung'),
(54401, 'https://ror.org/04wf7sx08', 'da', 1, 'https://ror.org/04wf7sx08 Eva og Henry FrƦnkels Mindefond'),
(54402, 'https://ror.org/039najk11', 'es', 1, 'https://ror.org/039najk11 Fundacion Florencio Fiorini'),
(54403, 'https://ror.org/0341e7068', 'en', 1, 'https://ror.org/0341e7068 Fondation pour la mƩdecine de laboratoire Foundation for laboratory medicine'),
(54404, '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'),
(54405, 'https://ror.org/027q2tw68', 'en', 1, 'https://ror.org/027q2tw68 National Centre for Research Methods'),
(54406, 'https://ror.org/04nq9y819', 'en', 1, 'https://ror.org/04nq9y819 Comic Relief'),
(54407, 'https://ror.org/05g34t253', 'no_lang_code', 1, 'https://ror.org/05g34t253 Planergemeinschaft für Stadt und Raum'),
(54408, 'https://ror.org/04v8d4779', 'es', 1, 'https://ror.org/04v8d4779 Fundación para la Innovación y la Prospectiva en Salud en España'),
(54409, 'https://ror.org/04ra91131', 'es', 1, 'https://ror.org/04ra91131 Fundación Ramón Areces'),
(54410, 'https://ror.org/051x4wh35', 'en', 1, 'https://ror.org/051x4wh35 Commonwealth Scholarship Commission'),
(54411, 'https://ror.org/03hzthr30', 'es', 1, 'https://ror.org/03hzthr30 Fundación Merck Salud'),
(54412, 'https://ror.org/05jdrrw50', 'de', 1, 'https://ror.org/05jdrrw50 Beilstein-Institut Beilstein-Institut zur Fƶrderung der Chemischen Wissenschaften'),
(54413, '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)'),
(54414, 'https://ror.org/04aj0cy60', 'en', 1, 'https://ror.org/04aj0cy60 Gabrielle’s Angel Foundation for Cancer Research'),
(54415, 'https://ror.org/04mbctq18', 'de', 1, 'https://ror.org/04mbctq18 Gebert Rüf Stiftung'),
(54416, 'https://ror.org/020apt798', 'en', 1, 'https://ror.org/020apt798 Finnish Foundation for Cardiovascular Research SydƤntutkimussƤƤtiƶ'),
(54417, 'https://ror.org/03f420b93', 'fi', 1, 'https://ror.org/03f420b93 Tekniikan EdistƤmissƤƤtiƶ'),
(54418, 'https://ror.org/01r2g4c66', 'en', 1, 'https://ror.org/01r2g4c66 Finnish Foundation of Veterinary Research Suomen elƤinlƤƤketieteen sƤƤtiƶ'),
(54419, 'https://ror.org/0593mby10', 'en', 1, 'https://ror.org/0593mby10 Finnish Medical Foundation Suomen LƤƤketieteen SƤƤtiƶ'),
(54420, 'https://ror.org/053a16167', 'no_lang_code', 1, 'https://ror.org/053a16167 IRT Group (Australia)'),
(54421, 'https://ror.org/01bgymr29', 'fr', 1, 'https://ror.org/01bgymr29 Fondation Innovations en Infectiologie'),
(54422, 'https://ror.org/0499cjb39', 'en', 1, 'https://ror.org/0499cjb39 Greek Society of Rheumatology'),
(54423, 'https://ror.org/02gn6ta77', 'en', 1, 'https://ror.org/02gn6ta77 Isaac Newton Trust'),
(54424, 'https://ror.org/05f32qs32', 'en', 1, 'https://ror.org/05f32qs32 Hellenic Thoracic Society Ελληνική Πνευμονολογική Εταιρεία'),
(54425, 'https://ror.org/04xtzf071', 'fr', 1, 'https://ror.org/04xtzf071 Fondation Gustave & Simone PrƩvot'),
(54426, 'https://ror.org/05mb6z682', 'da', 1, 'https://ror.org/05mb6z682 Helsefonden'),
(54427, 'https://ror.org/054zjbk29', 'no_lang_code', 1, 'https://ror.org/054zjbk29 ISIS Medical (France)'),
(54428, 'https://ror.org/0153me927', 'fr', 1, 'https://ror.org/0153me927 Fondation MathƩmatiques Jacques Hadamard'),
(54429, 'https://ror.org/04wxm6g36', 'en', 1, 'https://ror.org/04wxm6g36 Ministry of Defense ×žÖ“×©Ö°×‚×ØÖ·×“ ×”Ö·×‘Ö“Ö¼×˜ÖøÖ¼×—×•Ö¹×Ÿ'),
(54430, 'https://ror.org/001wmc692', 'fi', 1, 'https://ror.org/001wmc692 Lastentautien TutkimussƤƤtiƶ'),
(54431, 'https://ror.org/032j40h62', 'en', 1, 'https://ror.org/032j40h62 Edmond J. Safra Philanthropic Foundation Fondation Philanthropique Edmond J Safra'),
(54432, 'https://ror.org/03tj32a09', 'en', 1, 'https://ror.org/03tj32a09 Jacobs Foundation'),
(54433, 'https://ror.org/013ww9721', 'en', 1, 'https://ror.org/013ww9721 Fondation Philippe Wiener - Maurice Anspach Wiener - Anspach Foundation'),
(54434, 'https://ror.org/04j9bkg25', 'fr', 1, 'https://ror.org/04j9bkg25 Fondation Sécurité Routière'),
(54435, 'https://ror.org/022wvrv65', 'en', 1, 'https://ror.org/022wvrv65 Jalmari and Rauha Ahokas Foundation Jalmari ja Rauha Ahokkaan SƤƤtiƶ'),
(54436, 'https://ror.org/05h0e2y85', 'en', 1, 'https://ror.org/05h0e2y85 CittĆ  della Speranza Foundation'),
(54437, 'https://ror.org/02yqjk243', 'en', 1, 'https://ror.org/02yqjk243 Hope for Vision'),
(54438, 'https://ror.org/020tre550', 'en', 1, 'https://ror.org/020tre550 Ettore and Valeria Rossi Foundation Fondazione Ettore e Valeria Rossi'),
(54439, 'https://ror.org/052rbc006', 'it', 1, 'https://ror.org/052rbc006 Fondazione Oronzio e Niccolò De Nora'),
(54440, 'https://ror.org/02z5ef964', 'da', 1, 'https://ror.org/02z5ef964 HĆørslev-Fonden'),
(54441, 'https://ror.org/046m71h07', 'en', 1, 'https://ror.org/046m71h07 Ministry of Higher Education and Scientific Research وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(54442, 'https://ror.org/00r6p8t42', 'en', 1, 'https://ror.org/00r6p8t42 Jeansson Foundations Jeanssons Stiftelser'),
(54443, 'https://ror.org/009bet131', 'sv', 1, 'https://ror.org/009bet131 Gƶranssonska Stiftelserna'),
(54444, 'https://ror.org/01hgwbr42', 'sv', 1, 'https://ror.org/01hgwbr42 LinnƩa och Josef Carlssons Stiftelse'),
(54445, 'https://ror.org/05srw0r52', 'no_lang_code', 1, 'https://ror.org/05srw0r52 Check-Cap (Israel)'),
(54446, 'https://ror.org/04744k068', 'en', 1, 'https://ror.org/04744k068 Ministry of Industries and Innovation'),
(54447, 'https://ror.org/0269hs475', 'fi', 1, 'https://ror.org/0269hs475 Ida Montinin SƤƤtiƶ'),
(54448, 'https://ror.org/037pcte91', 'en', 1, 'https://ror.org/037pcte91 Forest Genetics Council'),
(54449, 'https://ror.org/0382jhd52', 'en', 1, 'https://ror.org/0382jhd52 Iketani Science and Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ę± č°·ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(54450, 'https://ror.org/00mgycb86', 'en', 1, 'https://ror.org/00mgycb86 Forschungskreis der ErnƤhrungsindustrie Research Association of the German Food Industry'),
(54451, 'https://ror.org/03hvqcb43', 'en', 1, 'https://ror.org/03hvqcb43 Foulkes Foundation'),
(54452, 'https://ror.org/05jf66d94', 'no_lang_code', 1, 'https://ror.org/05jf66d94 Juho Vainio Foundation Juho Vainion SƤƤtiƶ'),
(54453, 'https://ror.org/00fzq0880', 'fr', 1, 'https://ror.org/00fzq0880 Institut National de PrĆ©vention et d’Education pour la SantĆ©'),
(54454, 'https://ror.org/01wc3vt02', 'en', 1, 'https://ror.org/01wc3vt02 Jung Foundation for Science and Research Jung-Stiftung für Wissenschaft und Forschung'),
(54455, 'https://ror.org/05xs6nw18', 'en', 1, 'https://ror.org/05xs6nw18 Maud Kuistila Memorial Foundation Maud Kuistilan MuistosƤƤtiƶ'),
(54456, 'https://ror.org/02w907m39', 'en', 1, 'https://ror.org/02w907m39 Instrumentarium Science Foundation Instrumentariumin tiedesƤƤtiƶ'),
(54457, 'https://ror.org/05dn7bp33', 'en', 1, 'https://ror.org/05dn7bp33 Hartmann Müller Foundation'),
(54458, 'https://ror.org/03hvemf42', 'en', 1, 'https://ror.org/03hvemf42 Foundation for Education and European Culture Το ĪŠĪ“ĻĻ…Ī¼Ī± ΠαιΓείας και Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĪæĻ Ī ĪæĪ»Ī¹Ļ„Ī¹ĻƒĪ¼ĪæĻ'),
(54459, 'https://ror.org/020zqa202', 'en', 1, 'https://ror.org/020zqa202 International Association for the Study of Dreams'),
(54460, 'https://ror.org/00yjgag34', 'en', 1, 'https://ror.org/00yjgag34 International Psychoanalytical Association'),
(54461, 'https://ror.org/00zwv5854', 'en', 1, 'https://ror.org/00zwv5854 KAUTE-sƤƤtiƶ Kaute Foundation'),
(54462, 'https://ror.org/0068ff141', 'en', 1, 'https://ror.org/0068ff141 MƩditerranƩe Infection Foundation'),
(54463, 'https://ror.org/021k07d19', 'en', 1, 'https://ror.org/021k07d19 NestlƩ Foundation'),
(54464, 'https://ror.org/00dkwrz68', 'en', 1, 'https://ror.org/00dkwrz68 Kenneth Rainin Foundation'),
(54465, 'https://ror.org/00v64cg28', 'en', 1, 'https://ror.org/00v64cg28 Cambridge Innovation Institute'),
(54466, 'https://ror.org/03hph6c57', 'en', 1, 'https://ror.org/03hph6c57 Foundation for Urban and Regional Studies'),
(54467, 'https://ror.org/01tm9ja22', 'sv', 1, 'https://ror.org/01tm9ja22 Neurofƶrbundet'),
(54468, 'https://ror.org/04b6xpy41', 'en', 1, 'https://ror.org/04b6xpy41 Neuromuscular Research Association Basel'),
(54469, 'https://ror.org/00fmf4r59', 'sv', 1, 'https://ror.org/00fmf4r59 Kjell och MƤrta Beijers Stiftelse'),
(54470, 'https://ror.org/029vj4k86', 'fr', 1, 'https://ror.org/029vj4k86 Mutuelle GĆ©nĆ©rale de l''Ɖducation Nationale'),
(54471, 'https://ror.org/03g0p4t70', 'en', 1, 'https://ror.org/03g0p4t70 New Zealand wine'),
(54472, 'https://ror.org/05jwty529', 'en', 1, 'https://ror.org/05jwty529 Kone Foundation Koneen SƤƤtiƶ'),
(54473, 'https://ror.org/052jy0t06', 'en', 1, 'https://ror.org/052jy0t06 Kƶrber Foundation Kƶrber Stiftung'),
(54474, 'https://ror.org/04qy50a03', 'en', 1, 'https://ror.org/04qy50a03 Friedrich Naumann Foundation Friedrich-Naumann-Stiftung für die Freiheit'),
(54475, 'https://ror.org/05htmcq63', 'en', 1, 'https://ror.org/05htmcq63 Nordic Co-operation Nordiske Samarbejde'),
(54476, 'https://ror.org/001yjew72', 'en', 1, 'https://ror.org/001yjew72 Kumagai Foundation for Science and Technology ē†Šč°·ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(54477, 'https://ror.org/009qg7s70', 'en', 1, 'https://ror.org/009qg7s70 Parkinson’s Disease Foundation of India'),
(54478, 'https://ror.org/01v77xw68', 'en', 1, 'https://ror.org/01v77xw68 Virginia-Carolinas Peanut Promotions'),
(54479, 'https://ror.org/02mchxt20', 'en', 1, 'https://ror.org/02mchxt20 Fondation du Nord en cancƩrologie Northern Cancer Foundation'),
(54480, 'https://ror.org/026ftd493', 'pt', 1, 'https://ror.org/026ftd493 Fundação Gorceix'),
(54481, 'https://ror.org/02j4h8a39', 'pt', 1, 'https://ror.org/02j4h8a39 BoticÔrio Group Foundation Fundação Grupo BoticÔrio'),
(54482, 'https://ror.org/04tx4kg58', 'en', 1, 'https://ror.org/04tx4kg58 Northwest Scientific Association'),
(54483, 'https://ror.org/006sx7h90', 'es', 1, 'https://ror.org/006sx7h90 Fundación Sandra Ibarra de Solidaridad Frente al CÔncer'),
(54484, 'https://ror.org/00a7jbz14', 'es', 1, 'https://ror.org/00a7jbz14 Fundación Caja Navarra'),
(54485, 'https://ror.org/006hbj696', 'en', 1, 'https://ror.org/006hbj696 Radium Hemmets Research Funds Radiumhemmets forskningsfonder'),
(54486, 'https://ror.org/0179vv482', 'en', 1, 'https://ror.org/0179vv482 Office of Postsecondary Education'),
(54487, 'https://ror.org/01d2prf79', 'fr', 1, 'https://ror.org/01d2prf79 Direction GƩnƩrale des Entreprises'),
(54488, 'https://ror.org/01mzdh008', 'no_lang_code', 1, 'https://ror.org/01mzdh008 Equiservices Publishing (United States)'),
(54489, 'https://ror.org/02pyvsr17', 'en', 1, 'https://ror.org/02pyvsr17 Falk Foundation'),
(54490, 'https://ror.org/031s4pb13', 'en', 1, 'https://ror.org/031s4pb13 Office of Special Education and Rehabilitative Services'),
(54491, 'https://ror.org/00n58s174', 'en', 1, 'https://ror.org/00n58s174 Sveriges ƶgonlƤkarfƶrening Swedish Ophthalmological Society'),
(54492, 'https://ror.org/04w82sp73', 'fr', 1, 'https://ror.org/04w82sp73 SecrƩtariat GƩnƩral pour les Affaires RƩgionales'),
(54493, 'https://ror.org/0440znq24', 'en', 1, 'https://ror.org/0440znq24 Foundation Blanceflor'),
(54494, 'https://ror.org/046m7f751', 'en', 1, 'https://ror.org/046m7f751 Senri Life Science Foundation åƒé‡Œćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(54495, 'https://ror.org/021tj4g88', 'en', 1, 'https://ror.org/021tj4g88 SENSHIN Medical Research Foundation ę–°ęƒ…å ±å‡¦ē†ęŒÆčˆˆč²”å›£'),
(54496, 'https://ror.org/01n1pt995', 'sv', 1, 'https://ror.org/01n1pt995 Stiftelsen Kronprinsessan Margaretas ArbetsnƤmnd fƶr Synskadade'),
(54497, 'https://ror.org/0089t7988', 'en', 1, 'https://ror.org/0089t7988 Rosa Luxemburg Foundation Rosa-Luxemburg-Stiftung'),
(54498, 'https://ror.org/02z6q2y39', 'sv', 1, 'https://ror.org/02z6q2y39 Stiftelsen LƤngmanska Kulturfonden'),
(54499, 'https://ror.org/02kq92y46', 'en', 1, 'https://ror.org/02kq92y46 Shanghai Education Development Foundation äøŠęµ·åø‚ę•™č‚²å‘å±•åŸŗé‡‘ä¼š'),
(54500, 'https://ror.org/0446gjc92', 'en', 1, 'https://ror.org/0446gjc92 Oskar Ɩflund Foundation Oskar Ɩflunds Stiftelse'),
(54501, 'https://ror.org/02pqxz266', 'en', 1, 'https://ror.org/02pqxz266 STROKE-Riksfƶrbundet Swedish Stroke Association'),
(54502, 'https://ror.org/04hb33h70', 'de', 1, 'https://ror.org/04hb33h70 Nationalstiftung für Forschung Technologie und Entwicklung'),
(54503, 'https://ror.org/01m6j6z72', 'en', 1, 'https://ror.org/01m6j6z72 Russian Humanitarian Foundation Российский Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ ФонГ'),
(54504, 'https://ror.org/02dt42634', 'da', 1, 'https://ror.org/02dt42634 Otto MĆønsteds Fond'),
(54505, 'https://ror.org/009vp0837', 'fi', 1, 'https://ror.org/009vp0837 Paavo Nurmen SƤƤtiƶ'),
(54506, 'https://ror.org/01qe64w73', 'fi', 1, 'https://ror.org/01qe64w73 Finnish Brain Foundation Suomen AivosƤƤtiƶ'),
(54507, 'https://ror.org/03bj5da63', 'en', 1, 'https://ror.org/03bj5da63 PƤivikki and Sakari Sohlberg Foundation PƤivikki ja Sakari Sohlbergin sƤƤtiƶ'),
(54508, 'https://ror.org/00v6ky380', 'sv', 1, 'https://ror.org/00v6ky380 Stiftelsen fƶr vƄrd- och allergiforskning VƄrdal Stiftelsen'),
(54509, 'https://ror.org/02x0e6v58', 'en', 1, 'https://ror.org/02x0e6v58 Kusudohara Memorial Foundation åÆæåŽŸčØ˜åæµč²”å›£'),
(54510, 'https://ror.org/01ct9s926', 'hu', 1, 'https://ror.org/01ct9s926 Pallas AthƩnƩ Domus Animae AlapƭtvƔny'),
(54511, 'https://ror.org/038937755', 'en', 1, 'https://ror.org/038937755 Stiftelsen Forska Utan Djurfƶrsƶk Swedish Fund for Research Without Animal Experiments'),
(54512, 'https://ror.org/01hc0cn07', 'en', 1, 'https://ror.org/01hc0cn07 Stiftelsen Sveriges Sjƶmanshus Swedish Mercantile Marine Foundation'),
(54513, 'https://ror.org/031ww6378', 'en', 1, 'https://ror.org/031ww6378 Fujichiro Iijima Memorial Food Science Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗ é£Æå³¶č—¤åéƒŽčØ˜åæµé£Ÿå“ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(54514, 'https://ror.org/03y44ky43', 'en', 1, 'https://ror.org/03y44ky43 Vehicle Games Public Utility Foundation Memorial Foundation å…¬ē›Šč²”å›£ę³•äŗŗ č»Šäø”ē«¶ęŠ€å…¬ē›Šč³‡é‡‘čØ˜åæµč²”å›£'),
(54515, 'https://ror.org/00yp3hb50', 'fi', 1, 'https://ror.org/00yp3hb50 Tampereen TuberkuloosisƤƤtiƶ'),
(54516, 'https://ror.org/0267ebt82', 'fi', 1, 'https://ror.org/0267ebt82 Tauno Tƶnningin SƤƤtiƶ'),
(54517, 'https://ror.org/02s3w5b11', 'en', 1, 'https://ror.org/02s3w5b11 Thermal and Electric Energy Technology Foundation ē†±ćƒ»é›»ę°—ć‚Øćƒćƒ«ć‚®ćƒ¼ęŠ€č”“č²”å›£'),
(54518, 'https://ror.org/02najqa65', 'en', 1, 'https://ror.org/02najqa65 Thrivent Financial'),
(54519, 'https://ror.org/05pe31w16', 'en', 1, 'https://ror.org/05pe31w16 Shorai Foundation For Science And Technology å…¬ē›Šč²”å›£ę³•äŗŗ ę¾ē±Ÿē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(54520, 'https://ror.org/01654ws56', 'en', 1, 'https://ror.org/01654ws56 Technology Industries of Finland'),
(54521, 'https://ror.org/045r69s96', 'fi', 1, 'https://ror.org/045r69s96 Satakunnan Korkean Teknologian SƤƤtiƶ'),
(54522, 'https://ror.org/016p3p817', 'en', 1, 'https://ror.org/016p3p817 Stichting Vanderes Vanderes Foundation'),
(54523, 'https://ror.org/01eqe2r17', 'en', 1, 'https://ror.org/01eqe2r17 Signe and Ane Gyllenberg Foundation Signe ja Ane Gyllenbergin sƤƤtiƶ'),
(54524, 'https://ror.org/03e00a165', 'en', 1, 'https://ror.org/03e00a165 Lasten syƶpƤsƤƤtiƶ VƤre VƤre Foundation for Pediatric Cancer Research'),
(54525, 'https://ror.org/00ckakm23', 'en', 1, 'https://ror.org/00ckakm23 Sigrid JusƩliuksen sƤƤtiƶ Sigrid JusƩlius Foundation'),
(54526, 'https://ror.org/05j4zds77', 'en', 1, 'https://ror.org/05j4zds77 Virginia Lakes and Watersheds Association'),
(54527, 'https://ror.org/0574hzg66', 'en', 1, 'https://ror.org/0574hzg66 Yrjƶ Jahnsson Foundation Yrjƶ Jahnssonin sƤƤtiƶ'),
(54528, 'https://ror.org/03sbyrq11', 'en', 1, 'https://ror.org/03sbyrq11 SkogssƤllskapet Swedish Forest Society Foundation'),
(54529, 'https://ror.org/05m7g4v96', 'de', 1, 'https://ror.org/05m7g4v96 Von Behring-Rƶntgen-Stiftung'),
(54530, 'https://ror.org/05dze7277', 'en', 1, 'https://ror.org/05dze7277 Stanley Thomas Johnson Foundation Stanley Thomas Johnson Stiftung'),
(54531, 'https://ror.org/0066s0r72', 'en', 1, 'https://ror.org/0066s0r72 Ulla Tuominen Foundation Ulla Tuomisen SƤƤtiƶ'),
(54532, 'https://ror.org/05x217f96', 'de', 1, 'https://ror.org/05x217f96 Steirische Wirtschaftsfƶrderung'),
(54533, 'https://ror.org/04p4avd56', 'fr', 1, 'https://ror.org/04p4avd56 Société Académique de Genève'),
(54534, 'https://ror.org/01m41wz24', 'en', 1, 'https://ror.org/01m41wz24 Yamaguchi Endocrine Research Foundation'),
(54535, 'https://ror.org/01te5dc44', 'en', 1, 'https://ror.org/01te5dc44 Belgorod State University of Arts and Culture БелгороГский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(54536, 'https://ror.org/0590mw537', 'en', 1, 'https://ror.org/0590mw537 Ministry of Emergency Situations ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ по Гелам гражГанской обороны, чрезвычайным ŃŠøŃ‚ŃƒŠ°Ń†ŠøŃŠ¼ Šø ликвиГации послеГствий стихийных беГствий'),
(54537, 'https://ror.org/006cjkj15', 'en', 1, 'https://ror.org/006cjkj15 Institute for the Humanities and Information Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø информационных технологий'),
(54538, 'https://ror.org/00ez8pa22', 'en', 1, 'https://ror.org/00ez8pa22 Far Eastern State Institute of Arts Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(54539, 'https://ror.org/03gbw6p94', 'en', 1, 'https://ror.org/03gbw6p94 University of Technology Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Московской области Технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(54540, 'https://ror.org/00x8z6715', 'en', 1, 'https://ror.org/00x8z6715 Nevsky Institute of Language and Culture ŠŠµŠ²ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ·Ń‹ŠŗŠ° Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(54541, 'https://ror.org/046chmz66', 'en', 1, 'https://ror.org/046chmz66 Institute of Social Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… наук'),
(54542, 'https://ror.org/00njmse54', 'en', 1, 'https://ror.org/00njmse54 St. Petersburg University of the Humanities and Social Sciences Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃ€Š¾Ń„ŃŠ¾ŃŽŠ·Š¾Š² [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(54543, 'https://ror.org/05fe31323', 'en', 1, 'https://ror.org/05fe31323 Volga Region State Academy of Physical Culture, Sports and Tourism ŠŸŠ¾Š²Š¾Š»Š¶ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(54544, 'https://ror.org/05cwxhv57', 'en', 1, 'https://ror.org/05cwxhv57 V.V. Lukianov Orel Law Institute of the Ministry of Internal Affairs ŠžŠ Š›ŠžŠ’Š”ŠšŠ˜Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(54545, 'https://ror.org/02qcz1b43', 'en', 1, 'https://ror.org/02qcz1b43 Voronezh State Institute of Physical Culture Воронежский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(54546, 'https://ror.org/008rrb089', 'en', 1, 'https://ror.org/008rrb089 Vyatka State University of Humanities Š’ŃŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(54547, 'https://ror.org/04kt35s46', 'en', 1, 'https://ror.org/04kt35s46 Zabaikalsky State Humanitarian and Pedagogical University Š—Š°Š±Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š“. Š§ŠµŃ€Š½Ń‹ŃˆŠµŠ²ŃŠŗŠ¾Š³Š¾'),
(54548, 'https://ror.org/04h1r6547', 'es', 1, 'https://ror.org/04h1r6547 Academia Nacional de Ciencia y TecnologĆ­a'),
(54549, 'https://ror.org/027jwtt54', 'fi', 1, 'https://ror.org/027jwtt54 Arvo ja Lea Ylppƶ SƤƤtiƶ'),
(54550, 'https://ror.org/05h7zrz56', 'es', 1, 'https://ror.org/05h7zrz56 Atapuerca Foundation Fundación Atapuerca'),
(54551, 'https://ror.org/0183e1x96', 'en', 1, 'https://ror.org/0183e1x96 Minerals Council of Australia'),
(54552, 'https://ror.org/0003kpv33', 'en', 1, 'https://ror.org/0003kpv33 Biobanking and BioMolecular resources Research Infrastructure The Netherlands'),
(54553, 'https://ror.org/05pb4em20', 'en', 1, 'https://ror.org/05pb4em20 Bonn-Cologne Graduate School of Physics and Astronomy'),
(54554, 'https://ror.org/033pgsq69', 'no_lang_code', 1, 'https://ror.org/033pgsq69 Nova Insurance Services (China)'),
(54555, 'https://ror.org/056w8zz77', 'en', 1, 'https://ror.org/056w8zz77 Association chiropratique canadienne Canadian Chiropractic Association'),
(54556, 'https://ror.org/05g2nyd29', 'no_lang_code', 1, 'https://ror.org/05g2nyd29 BetaCat Pharmaceuticals (United States)'),
(54557, 'https://ror.org/028226726', 'en', 1, 'https://ror.org/028226726 Brian Mason Scientific & Technical Trust'),
(54558, 'https://ror.org/00cjvpn28', 'no_lang_code', 1, 'https://ror.org/00cjvpn28 Capital Group (United States)'),
(54559, 'https://ror.org/02sevrz47', 'es', 1, 'https://ror.org/02sevrz47 Gobierno de Chile'),
(54560, 'https://ror.org/02qab6y19', 'en', 1, 'https://ror.org/02qab6y19 China Environmental Protection Foundation'),
(54561, 'https://ror.org/03z45yy68', 'en', 1, 'https://ror.org/03z45yy68 Cicely Saunders International'),
(54562, 'https://ror.org/00t2x7r19', 'es', 1, 'https://ror.org/00t2x7r19 Centro Mexicano de Innovación en Energía Solar'),
(54563, 'https://ror.org/01r42z565', 'en', 1, 'https://ror.org/01r42z565 Computational Materials Science Initiative'),
(54564, 'https://ror.org/022482e21', 'en', 1, 'https://ror.org/022482e21 CRC for Spatial information'),
(54565, 'https://ror.org/00t1d7x20', 'no_lang_code', 1, 'https://ror.org/00t1d7x20 Clayton Biotechnologies (United States)'),
(54566, 'https://ror.org/04reg7v11', 'fr', 1, 'https://ror.org/04reg7v11 Conseil DƩpartemental de la Haute-Savoie'),
(54567, 'https://ror.org/04c9dah88', 'fr', 1, 'https://ror.org/04c9dah88 Conseil DƩpartemental des Vosges'),
(54568, 'https://ror.org/01ew2yc64', 'fr', 1, 'https://ror.org/01ew2yc64 Conseil Interprofessionnel du Vin de Bordeaux'),
(54569, 'https://ror.org/029c46924', 'fr', 1, 'https://ror.org/029c46924 Conseil RƩgional de Basse-Normandie'),
(54570, 'https://ror.org/053hq6b52', 'en', 1, 'https://ror.org/053hq6b52 Charlotte Metro Credit Union'),
(54571, 'https://ror.org/00gaz3763', 'en', 1, 'https://ror.org/00gaz3763 Legislative Council of Hong Kong é¦™ęøÆē‰¹åˆ„č”Œę”æå€ē«‹ę³•ęœƒ'),
(54572, 'https://ror.org/058yerw52', 'en', 1, 'https://ror.org/058yerw52 CRC CARE'),
(54573, 'https://ror.org/00qq8bd87', 'en', 1, 'https://ror.org/00qq8bd87 Consortium for the Advanced Simulation of Light Water Reactors'),
(54574, 'https://ror.org/04qb3yt59', 'it', 1, 'https://ror.org/04qb3yt59 Fondazione CRT'),
(54575, 'https://ror.org/03pmqmn38', 'it', 1, 'https://ror.org/03pmqmn38 Consorzio per la Fisica Trieste'),
(54576, 'https://ror.org/02gqwrx54', 'no_lang_code', 1, 'https://ror.org/02gqwrx54 Digiteo'),
(54577, 'https://ror.org/00mn4nn85', 'da', 1, 'https://ror.org/00mn4nn85 Svineafgiftsfonden'),
(54578, 'https://ror.org/02cxp1807', 'en', 1, 'https://ror.org/02cxp1807 Denver Zoo'),
(54579, 'https://ror.org/034ywsh12', 'en', 1, 'https://ror.org/034ywsh12 Northeast Climate Science Center'),
(54580, 'https://ror.org/02a6ezh03', 'es', 1, 'https://ror.org/02a6ezh03 Consejería de Educación y Empleo'),
(54581, 'https://ror.org/000kjq947', 'en', 1, 'https://ror.org/000kjq947 Department of Space'),
(54582, 'https://ror.org/0507cba95', 'en', 1, 'https://ror.org/0507cba95 Duchenne Now'),
(54583, 'https://ror.org/05csgyk98', 'en', 1, 'https://ror.org/05csgyk98 Egyptian Government'),
(54584, 'https://ror.org/03dnx2782', 'en', 1, 'https://ror.org/03dnx2782 Einhorn Family Charitable Trust'),
(54585, 'https://ror.org/01jkyjd96', 'en', 1, 'https://ror.org/01jkyjd96 Hebei Provincial Department of Education ę²³åŒ—ēœę•™č‚²åŽ…'),
(54586, 'https://ror.org/00xfww534', 'en', 1, 'https://ror.org/00xfww534 Energy Pipelines CRC'),
(54587, 'https://ror.org/03ct46856', 'en', 1, 'https://ror.org/03ct46856 Environment Canterbury'),
(54588, 'https://ror.org/01fcjp983', 'en', 1, 'https://ror.org/01fcjp983 Environmental Investment Centre Keskkonnainvesteeringute Keskus'),
(54589, 'https://ror.org/03n0fvd12', 'en', 1, 'https://ror.org/03n0fvd12 Government of Estonia Vabariigi Valitsus'),
(54590, 'https://ror.org/02cxejv02', 'en', 1, 'https://ror.org/02cxejv02 Epilepsy Study Consortium'),
(54591, 'https://ror.org/01ep8wa33', 'en', 1, 'https://ror.org/01ep8wa33 European Copper Institute'),
(54592, 'https://ror.org/01hffx244', 'no_lang_code', 1, 'https://ror.org/01hffx244 Sitra Suomen itsenƤisyyden juhlarahasto'),
(54593, 'https://ror.org/00whf4s48', 'en', 1, 'https://ror.org/00whf4s48 Finnish Parkinson Foundation Suomen Parkinson-sƤƤtiƶ'),
(54594, 'https://ror.org/0100zbm77', 'en', 1, 'https://ror.org/0100zbm77 Federation of European Biochemical Societies'),
(54595, 'https://ror.org/04h7caf58', 'it', 1, 'https://ror.org/04h7caf58 UBI Banca'),
(54596, 'https://ror.org/01grrhm91', 'fr', 1, 'https://ror.org/01grrhm91 Renatech'),
(54597, 'https://ror.org/05hnjz787', 'en', 1, 'https://ror.org/05hnjz787 Foundation for Growth Science ęˆé•·ē§‘å­¦å”ä¼š'),
(54598, 'https://ror.org/039vtmd91', 'no_lang_code', 1, 'https://ror.org/039vtmd91 Jazz Pharmaceuticals (Italy)'),
(54599, 'https://ror.org/0099z8h13', 'en', 1, 'https://ror.org/0099z8h13 Deutsch-Israelische Zusammenarbeit German-Israeli Cooperation'),
(54600, 'https://ror.org/011kmvk73', 'en', 1, 'https://ror.org/011kmvk73 Global Core Research Center for Ships and Offshore Plants ģ„ ė°• ė° ķ•“ģ–‘ ķ”ŒėžœķŠø źø€ė”œė²Œ 핵심 연구 센터'),
(54601, 'https://ror.org/048nacf41', 'en', 1, 'https://ror.org/048nacf41 Federal Government of Germany'),
(54602, 'https://ror.org/02yjb3a91', 'en', 1, 'https://ror.org/02yjb3a91 Deutsche Stiftung für Herzforschung German Heart Research Foundation'),
(54603, 'https://ror.org/00hd4jd19', 'en', 1, 'https://ror.org/00hd4jd19 East University Of Heilongjiang é»‘é¾ę±Ÿę±ę–¹å­øé™¢'),
(54604, 'https://ror.org/04waywn16', 'pt', 1, 'https://ror.org/04waywn16 Gabinete de Relações Internacionais da Ciência e do Ensino Superior'),
(54605, 'https://ror.org/03z32jx06', 'en', 1, 'https://ror.org/03z32jx06 GridPP'),
(54606, 'https://ror.org/05cjrnv40', 'es', 1, 'https://ror.org/05cjrnv40 Gobierno de La Rioja'),
(54607, 'https://ror.org/014jtt019', 'en', 1, 'https://ror.org/014jtt019 Government of Ireland'),
(54608, 'https://ror.org/02jrc9g69', 'fr', 1, 'https://ror.org/02jrc9g69 Gouvernement Princier'),
(54609, 'https://ror.org/04g9rr142', 'en', 1, 'https://ror.org/04g9rr142 Viet Nam Government');
INSERT INTO `rors` VALUES
(54610, 'https://ror.org/00swtqp09', 'en', 1, 'https://ror.org/00swtqp09 Key Laboratory of Guangdong Province å¹æäøœēœé‡ē‚¹å®žéŖŒå®¤'),
(54611, 'https://ror.org/00mntmj21', 'en', 1, 'https://ror.org/00mntmj21 Goyder Institute for Water Research'),
(54612, 'https://ror.org/0598sdq75', 'en', 1, 'https://ror.org/0598sdq75 Hastings Community Foundation'),
(54613, 'https://ror.org/01k8j4p29', 'en', 1, 'https://ror.org/01k8j4p29 Ministry of Economy, Development and Tourism ΄πουργείο ĪŸĪ¹ĪŗĪæĪ½ĪæĪ¼ĪÆĪ±Ļ‚, Ανάπτυξης και Ī¤ĪæĻ…ĻĪ¹ĻƒĪ¼ĪæĻ'),
(54614, 'https://ror.org/04ne34794', 'en', 1, 'https://ror.org/04ne34794 Ministry of Health ΄πουργείο ΄γείας'),
(54615, 'https://ror.org/00479t136', 'en', 1, 'https://ror.org/00479t136 Guangzhou Education Bureau å¹æå·žåø‚ę•™č‚²å±€'),
(54616, 'https://ror.org/04s64z252', 'en', 1, 'https://ror.org/04s64z252 Helmholtz Alliance Imaging and Curing Environmental Metabolic Diseases'),
(54617, 'https://ror.org/0568dpm54', 'en', 1, 'https://ror.org/0568dpm54 Drug Enforcement Administration'),
(54618, 'https://ror.org/03z2d7y96', 'en', 1, 'https://ror.org/03z2d7y96 Bureau of Labor Statistics'),
(54619, 'https://ror.org/05mc17455', 'en', 1, 'https://ror.org/05mc17455 U.S. Embassy and Consulates in India'),
(54620, 'https://ror.org/02vqa5k67', 'en', 1, 'https://ror.org/02vqa5k67 Iowa Department on Aging'),
(54621, 'https://ror.org/052ykh203', 'en', 1, 'https://ror.org/052ykh203 Ability Connection Colorado'),
(54622, 'https://ror.org/00t7qf371', 'en', 1, 'https://ror.org/00t7qf371 About Special Kids'),
(54623, 'https://ror.org/00pfxvf64', 'en', 1, 'https://ror.org/00pfxvf64 Aging In New York Fund'),
(54624, 'https://ror.org/02swngw30', 'en', 1, 'https://ror.org/02swngw30 Colorado Latino Leadership, Advocacy & Research Organization'),
(54625, 'https://ror.org/04zs9x940', 'en', 1, 'https://ror.org/04zs9x940 Aleutian Pribilof Islands Association'),
(54626, 'https://ror.org/01kz8dk96', 'en', 1, 'https://ror.org/01kz8dk96 Logansport State Hospital'),
(54627, 'https://ror.org/04a2k6j28', 'en', 1, 'https://ror.org/04a2k6j28 Volpe National Transportation Systems Center'),
(54628, 'https://ror.org/01evns552', 'en', 1, 'https://ror.org/01evns552 Louisiana Department of Insurance'),
(54629, 'https://ror.org/01100v986', 'en', 1, 'https://ror.org/01100v986 Madison County Urban league'),
(54630, 'https://ror.org/033trmh69', 'en', 1, 'https://ror.org/033trmh69 Bureau of the Fiscal Service'),
(54631, 'https://ror.org/00cz2hc49', 'en', 1, 'https://ror.org/00cz2hc49 Maryland State Office Of The Governor'),
(54632, 'https://ror.org/01emzvp42', 'en', 1, 'https://ror.org/01emzvp42 Parents Let''s Unite for Kids'),
(54633, 'https://ror.org/037v4t923', 'en', 1, 'https://ror.org/037v4t923 Family Health Council of Central Pennsylvania'),
(54634, 'https://ror.org/025c9h003', 'en', 1, 'https://ror.org/025c9h003 Michigan Department of Technology, Management & Budget'),
(54635, 'https://ror.org/03vwnv483', 'en', 1, 'https://ror.org/03vwnv483 Family Ties of Nevada'),
(54636, 'https://ror.org/04pz9s646', 'en', 1, 'https://ror.org/04pz9s646 Montachusett Opportunity Council'),
(54637, 'https://ror.org/052x2sm38', 'en', 1, 'https://ror.org/052x2sm38 Mississippi Department of Human Services'),
(54638, 'https://ror.org/00qrpes71', 'en', 1, 'https://ror.org/00qrpes71 Fishing Partnership Support Services'),
(54639, 'https://ror.org/02ejgsx19', 'en', 1, 'https://ror.org/02ejgsx19 Ramah Navajo School Board'),
(54640, 'https://ror.org/04j39xp17', 'en', 1, 'https://ror.org/04j39xp17 Agency for Persons with Disabilities'),
(54641, 'https://ror.org/01a9pzb45', 'en', 1, 'https://ror.org/01a9pzb45 National Association of Community Health Representatives'),
(54642, 'https://ror.org/00dzheg11', 'en', 1, 'https://ror.org/00dzheg11 National Family Planning & Reproductive Health Association'),
(54643, 'https://ror.org/0190gce36', 'en', 1, 'https://ror.org/0190gce36 Concerned Black Men National'),
(54644, 'https://ror.org/03b8y4g05', 'en', 1, 'https://ror.org/03b8y4g05 North Dakota Office of the Governor'),
(54645, 'https://ror.org/0065zvt37', 'en', 1, 'https://ror.org/0065zvt37 Central District Health Department'),
(54646, 'https://ror.org/05k829w13', 'en', 1, 'https://ror.org/05k829w13 New Mexico Alliance of Health Councils'),
(54647, 'https://ror.org/000dk5152', 'en', 1, 'https://ror.org/000dk5152 New Hampshire State Office of the Governor'),
(54648, 'https://ror.org/01nn8a447', 'en', 1, 'https://ror.org/01nn8a447 New Jersey State Office of the Governor'),
(54649, 'https://ror.org/04r0c8r10', 'en', 1, 'https://ror.org/04r0c8r10 Ohio Department of Aging'),
(54650, 'https://ror.org/04khzvv84', 'en', 1, 'https://ror.org/04khzvv84 Department of Medical Assistance Services'),
(54651, 'https://ror.org/00rnyt040', 'en', 1, 'https://ror.org/00rnyt040 Illinois Office of the Governor'),
(54652, 'https://ror.org/01c2z9a94', 'en', 1, 'https://ror.org/01c2z9a94 Ohio State Office of the Governor'),
(54653, 'https://ror.org/04zv3dn98', 'en', 1, 'https://ror.org/04zv3dn98 Westchester Institute for Human Development'),
(54654, 'https://ror.org/00jrvek48', 'en', 1, 'https://ror.org/00jrvek48 Oregon Department of Consumer and Business Services'),
(54655, 'https://ror.org/041sdt344', 'en', 1, 'https://ror.org/041sdt344 South Dakota Parent Connection'),
(54656, 'https://ror.org/01d6x6740', 'en', 1, 'https://ror.org/01d6x6740 Wyoming Office of the Governor'),
(54657, 'https://ror.org/041rkp090', 'en', 1, 'https://ror.org/041rkp090 Oregon Family Support Network'),
(54658, 'https://ror.org/04m9c9932', 'en', 1, 'https://ror.org/04m9c9932 Indiana Office of the Governor'),
(54659, 'https://ror.org/005s3t219', 'en', 1, 'https://ror.org/005s3t219 Boys and Girls Clubs of Metro Los Angeles'),
(54660, 'https://ror.org/033k6xs70', 'en', 1, 'https://ror.org/033k6xs70 Parents'' Place of Maryland'),
(54661, 'https://ror.org/03f57fs86', 'en', 1, 'https://ror.org/03f57fs86 Childrens Hospice International'),
(54662, 'https://ror.org/02wjzeq60', 'en', 1, 'https://ror.org/02wjzeq60 Statewide Parent Advocacy Network'),
(54663, 'https://ror.org/00r7c8242', 'no_lang_code', 1, 'https://ror.org/00r7c8242 Chitina Native Corporation (United States)'),
(54664, 'https://ror.org/02p2xd472', 'en', 1, 'https://ror.org/02p2xd472 Stockbridge Munsee Tribal Council'),
(54665, 'https://ror.org/02bq0x116', 'en', 1, 'https://ror.org/02bq0x116 United States Customs and Border Protection'),
(54666, 'https://ror.org/00fx0z455', 'en', 1, 'https://ror.org/00fx0z455 Tennessee Commission on Aging and Disability'),
(54667, 'https://ror.org/029gpxj36', 'en', 1, 'https://ror.org/029gpxj36 Texas Parent to Parent'),
(54668, 'https://ror.org/05q57a218', 'en', 1, 'https://ror.org/05q57a218 Arc of Kentucky'),
(54669, 'https://ror.org/0188dhg98', 'en', 1, 'https://ror.org/0188dhg98 Office of the Comptroller of the Currency'),
(54670, 'https://ror.org/05ng63712', 'en', 1, 'https://ror.org/05ng63712 Clifton T. Perkins Hospital Center'),
(54671, 'https://ror.org/038k2n210', 'en', 1, 'https://ror.org/038k2n210 Community Health Centers of Benton and Linn Counties'),
(54672, 'https://ror.org/03wfmrt38', 'en', 1, 'https://ror.org/03wfmrt38 Habitat International Coalition'),
(54673, 'https://ror.org/01g77mv66', 'en', 1, 'https://ror.org/01g77mv66 New York/New Jersey VA Health Care Network'),
(54674, 'https://ror.org/041t78y98', 'en', 1, 'https://ror.org/041t78y98 Atlanta VA Health Care System'),
(54675, 'https://ror.org/02hqqcn82', 'en', 1, 'https://ror.org/02hqqcn82 VA Eastern Kansas Health Care System'),
(54676, 'https://ror.org/02v6tqw40', 'no_lang_code', 1, 'https://ror.org/02v6tqw40 Innovative Research Group (Canada)'),
(54677, 'https://ror.org/054w3nm73', 'en', 1, 'https://ror.org/054w3nm73 VA Mid-Atlantic Health Care Network'),
(54678, 'https://ror.org/00c89j038', 'en', 1, 'https://ror.org/00c89j038 Innovative Research Institute for Cell Therapy'),
(54679, 'https://ror.org/023w6y044', 'en', 1, 'https://ror.org/023w6y044 VA Great Lakes Health Care System'),
(54680, 'https://ror.org/02z5aj645', 'en', 1, 'https://ror.org/02z5aj645 South Central VA Health Care Network'),
(54681, 'https://ror.org/02g8ke488', 'en', 1, 'https://ror.org/02g8ke488 VA Sunshine Healthcare Network'),
(54682, 'https://ror.org/05kcj6c10', 'en', 1, 'https://ror.org/05kcj6c10 VA Heartland Network'),
(54683, 'https://ror.org/025yjfh46', 'en', 1, 'https://ror.org/025yjfh46 VA MidSouth Healthcare Network'),
(54684, 'https://ror.org/02f2rgc17', 'en', 1, 'https://ror.org/02f2rgc17 VA Midwest Health Care Network'),
(54685, 'https://ror.org/031qpfn56', 'en', 1, 'https://ror.org/031qpfn56 VA Desert Pacific Healthcare Network'),
(54686, 'https://ror.org/03k6yxq48', 'en', 1, 'https://ror.org/03k6yxq48 Oklahoma City VA Health Care System'),
(54687, 'https://ror.org/054484h93', 'en', 1, 'https://ror.org/054484h93 VA Portland Health Care System'),
(54688, 'https://ror.org/00xr47e92', 'pt', 1, 'https://ror.org/00xr47e92 Instituto Nacional de CiĆŖncias dos Materiais em Nanotecnologia'),
(54689, 'https://ror.org/03mzbnj03', 'en', 1, 'https://ror.org/03mzbnj03 VA Southeast Network'),
(54690, 'https://ror.org/011qyt180', 'en', 1, 'https://ror.org/011qyt180 VA Office of Research and Development'),
(54691, 'https://ror.org/0527v1v90', 'en', 1, 'https://ror.org/0527v1v90 VA Heart of Texas Health Care Network'),
(54692, 'https://ror.org/05wfg6079', 'en', 1, 'https://ror.org/05wfg6079 Japan Arteriosclerosis Prevention Fund ę—„ęœ¬å‹•č„ˆē”¬åŒ–äŗˆé˜²ē ”ē©¶åŸŗé‡‘'),
(54693, 'https://ror.org/01x6zzb23', 'en', 1, 'https://ror.org/01x6zzb23 VA Rocky Mountain Network'),
(54694, 'https://ror.org/01rybzk66', 'en', 1, 'https://ror.org/01rybzk66 VA Capitol Health Care Network'),
(54695, 'https://ror.org/04m453044', 'en', 1, 'https://ror.org/04m453044 VA Northwest Network'),
(54696, 'https://ror.org/03vmxkp39', 'en', 1, 'https://ror.org/03vmxkp39 Iran Nanohealth Committee Food and Drug Organization'),
(54697, 'https://ror.org/05vg8h197', 'no_lang_code', 1, 'https://ror.org/05vg8h197 Japan Space Forum ę—„ęœ¬å®‡å®™ćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(54698, 'https://ror.org/03jan5912', 'en', 1, 'https://ror.org/03jan5912 Jiangsu Provincial Key Laboratory of Network and Information Security ę±Ÿč‹ēœē½‘ē»œäæ”ęÆå®‰å…Øé‡ē‚¹å®žéŖŒå®¤'),
(54699, 'https://ror.org/02z5d2h92', 'en', 1, 'https://ror.org/02z5d2h92 VA Healthcare System Serving Ohio, Indiana and Michigan'),
(54700, 'https://ror.org/04m589p37', 'no_lang_code', 1, 'https://ror.org/04m589p37 Irish Life (Ireland)'),
(54701, 'https://ror.org/00zjpfj13', 'no_lang_code', 1, 'https://ror.org/00zjpfj13 HBIS (China) ę²³åŒ—é’¢é“é›†å›¢ęœ‰é™å…¬åø'),
(54702, 'https://ror.org/03m3t7g30', 'en', 1, 'https://ror.org/03m3t7g30 Jeff Gordon Children''s Foundation'),
(54703, 'https://ror.org/0392x6996', 'en', 1, 'https://ror.org/0392x6996 Association Cartographique Internationale International Cartographic Association'),
(54704, 'https://ror.org/022qvpy75', 'en', 1, 'https://ror.org/022qvpy75 International Geographical Union Union GƩographique Internationale'),
(54705, 'https://ror.org/035pbyf96', 'en', 1, 'https://ror.org/035pbyf96 International Union of Anthropological and Ethnological Sciences'),
(54706, 'https://ror.org/04h5sdx36', 'en', 1, 'https://ror.org/04h5sdx36 International Union of Biological Sciences'),
(54707, 'https://ror.org/002e5rj75', 'en', 1, 'https://ror.org/002e5rj75 International Union of Food Science and Technology'),
(54708, 'https://ror.org/046rffv75', 'en', 1, 'https://ror.org/046rffv75 International Union of Geological Sciences'),
(54709, 'https://ror.org/01cejnk20', 'en', 1, 'https://ror.org/01cejnk20 International Union of Immunological Societies'),
(54710, 'https://ror.org/05sthzf60', 'en', 1, 'https://ror.org/05sthzf60 International Union of Materials Research Societies'),
(54711, 'https://ror.org/04dzj3g56', 'en', 1, 'https://ror.org/04dzj3g56 Jiangsu Key Laboratory of 3D Printing Equipment and Manufacturing ę±Ÿč‹ēœäø‰ē»“ę‰“å°č£…å¤‡äøŽåˆ¶é€ é‡ē‚¹å®žéŖŒå®¤'),
(54712, 'https://ror.org/038eh4b79', 'en', 1, 'https://ror.org/038eh4b79 Office of Patient Care Services'),
(54713, 'https://ror.org/01x63ge73', 'en', 1, 'https://ror.org/01x63ge73 International Union for Pure and Applied Biophysics'),
(54714, 'https://ror.org/04aekkh13', 'en', 1, 'https://ror.org/04aekkh13 International Union for Physical and Engineering Sciences in Medicine'),
(54715, 'https://ror.org/04dscat02', 'en', 1, 'https://ror.org/04dscat02 Israel National Nanotechnology Initiative'),
(54716, 'https://ror.org/03k352971', 'en', 1, 'https://ror.org/03k352971 C.W. Bill Young VA Medical Center'),
(54717, 'https://ror.org/013zszd91', 'en', 1, 'https://ror.org/013zszd91 Israel Water Authority ×ž×•×¢×¦×Ŗ רשות המים'),
(54718, 'https://ror.org/00y3qx097', 'en', 1, 'https://ror.org/00y3qx097 Kennel Club Charitable Trust'),
(54719, 'https://ror.org/05mx4xx46', 'en', 1, 'https://ror.org/05mx4xx46 Weihai Science and Technology Bureau åØęµ·åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(54720, 'https://ror.org/05frzy624', 'nl', 1, 'https://ror.org/05frzy624 Kennisnet'),
(54721, 'https://ror.org/044kgk540', 'en', 1, 'https://ror.org/044kgk540 John L. McClellan Memorial Veterans Hospital'),
(54722, 'https://ror.org/02d6kc626', 'en', 1, 'https://ror.org/02d6kc626 Olin E. Teague Veterans Medical Center'),
(54723, 'https://ror.org/02n35gd31', 'fi', 1, 'https://ror.org/02n35gd31 KH Renlundin sƤƤtiƶ'),
(54724, 'https://ror.org/04zrk8409', 'en', 1, 'https://ror.org/04zrk8409 Kansas Board of Regents'),
(54725, 'https://ror.org/00q9d8f64', 'en', 1, 'https://ror.org/00q9d8f64 Joint Graduate School of Energy and Environment ąøšąø±ąø“ąø‘ąø“ąø•ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ą¹ˆąø§ąø”ąø”ą¹‰ąø²ąø™ąøžąø„ąø±ąø‡ąø‡ąø²ąø™ą¹ąø„ąø°ąøŖąø“ą¹ˆąø‡ą¹ąø§ąø”ąø„ą¹‰ąø­ąø”'),
(54726, 'https://ror.org/01pe6xq34', 'en', 1, 'https://ror.org/01pe6xq34 Joseph Drown Foundation'),
(54727, 'https://ror.org/00jn8v512', 'en', 1, 'https://ror.org/00jn8v512 Khaled bin Sultan Living Oceans Foundation'),
(54728, 'https://ror.org/05g801a49', 'en', 1, 'https://ror.org/05g801a49 Kurdistan Regional Government Ų­ŁƒŁˆŁ…Ų© Ų§Ł‚Ł„ŁŠŁ… ŁƒŲ±ŲÆŲ³ŲŖŲ§Ł†ā€Žā€Ž Ų­Ś©ŁˆŁˆŁ…Ū•ŲŖŪŒ Ł‡Ū•Ų±ŪŽŁ…ŪŒ Ś©ŁˆŲ±ŲÆŲ³ŲŖŲ§Ł†'),
(54729, 'https://ror.org/005gp3d85', 'en', 1, 'https://ror.org/005gp3d85 Korea National Park Service'),
(54730, 'https://ror.org/045krvc71', 'fr', 1, 'https://ror.org/045krvc71 Labex Action'),
(54731, 'https://ror.org/03g19es12', 'fr', 1, 'https://ror.org/03g19es12 Labex Synorg'),
(54732, 'https://ror.org/018p41404', 'en', 1, 'https://ror.org/018p41404 Korean Chemical Society'),
(54733, 'https://ror.org/03bc19b89', 'en', 1, 'https://ror.org/03bc19b89 Korean Endocrine Society ėŒ€ķ•œė‚“ė¶„ė¹„ķ•™ķšŒ'),
(54734, 'https://ror.org/01rjj8a34', 'en', 1, 'https://ror.org/01rjj8a34 Bruce W. Carter VA Medical Center'),
(54735, 'https://ror.org/04xvc2q17', 'en', 1, 'https://ror.org/04xvc2q17 Lancaster Royal Grammar School'),
(54736, 'https://ror.org/01vaht437', 'en', 1, 'https://ror.org/01vaht437 Korean Society of Radiology'),
(54737, 'https://ror.org/054kry619', 'en', 1, 'https://ror.org/054kry619 Korean Society of Medical Ultrasound'),
(54738, 'https://ror.org/03s8dv541', 'en', 1, 'https://ror.org/03s8dv541 Magnetic Health Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ē£ę°—å„åŗ·ē§‘å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(54739, 'https://ror.org/01pz9tv63', 'en', 1, 'https://ror.org/01pz9tv63 A*STAR Joint Council Office'),
(54740, 'https://ror.org/03hj69t32', 'en', 1, 'https://ror.org/03hj69t32 Max Planck Center for Visual Computing and Communication'),
(54741, 'https://ror.org/03zf8zy80', 'en', 1, 'https://ror.org/03zf8zy80 Metanexus Institute'),
(54742, 'https://ror.org/05tte3254', 'en', 1, 'https://ror.org/05tte3254 Federal Government of Mexico Gobierno de la RepĆŗblica'),
(54743, 'https://ror.org/046g3bm52', 'no_lang_code', 1, 'https://ror.org/046g3bm52 MEC'),
(54744, 'https://ror.org/03114vz20', 'en', 1, 'https://ror.org/03114vz20 Central New York Research Corporation'),
(54745, 'https://ror.org/05g1gph86', 'en', 1, 'https://ror.org/05g1gph86 Nutrition International'),
(54746, 'https://ror.org/037042411', 'en', 1, 'https://ror.org/037042411 International Fistball Association'),
(54747, 'https://ror.org/01g7pk335', 'en', 1, 'https://ror.org/01g7pk335 Martinez VA Medical Center'),
(54748, 'https://ror.org/045vn2806', 'en', 1, 'https://ror.org/045vn2806 AIMS@JCU'),
(54749, 'https://ror.org/05rdz5425', 'en', 1, 'https://ror.org/05rdz5425 Ministerstwo Rolnictwa i Rozwoju Wsi Ministry of Agriculture and Rural Development'),
(54750, 'https://ror.org/056hf8h17', 'en', 1, 'https://ror.org/056hf8h17 Ministry of Commerce of the People''s Republic of China åÆ¹å¤–č“øę˜“ē»ęµŽåˆä½œéƒØ'),
(54751, 'https://ror.org/02yrzyf97', 'en', 1, 'https://ror.org/02yrzyf97 Office of Research Services'),
(54752, 'https://ror.org/00y2wtn40', 'en', 1, 'https://ror.org/00y2wtn40 Office of Minority Health'),
(54753, 'https://ror.org/01c75m640', 'en', 1, 'https://ror.org/01c75m640 Office of Minority Health and Health Equity'),
(54754, 'https://ror.org/03jt5gp45', 'en', 1, 'https://ror.org/03jt5gp45 John Cochran VA Medical Center'),
(54755, 'https://ror.org/02v6f4y51', 'en', 1, 'https://ror.org/02v6f4y51 National Academy of Sciences India ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤…ą¤•ą¤¾ą¤¦ą¤®ą„€, भारत'),
(54756, 'https://ror.org/0417t4z61', 'en', 1, 'https://ror.org/0417t4z61 Minnesota Partnership for Biotechnology and Medical Genomics'),
(54757, 'https://ror.org/054jfj847', 'en', 1, 'https://ror.org/054jfj847 Banque nationale de Belgique Belgische Nationalbank National Bank of Belgium Nationale Bank van Belgiƫ'),
(54758, 'https://ror.org/021p56f43', 'en', 1, 'https://ror.org/021p56f43 Laboratory for Social and Neural Systems Research'),
(54759, 'https://ror.org/01x29k385', 'en', 1, 'https://ror.org/01x29k385 Northwell Health Orthopaedic Institute'),
(54760, 'https://ror.org/028dac806', 'en', 1, 'https://ror.org/028dac806 Arthur Smith Institute for Urology'),
(54761, 'https://ror.org/04xam4r33', 'en', 1, 'https://ror.org/04xam4r33 Institute for Social and Environmental Research-Nepal'),
(54762, 'https://ror.org/04ackq833', 'en', 1, 'https://ror.org/04ackq833 Lumbini Eye Institute'),
(54763, 'https://ror.org/01h0swx54', 'en', 1, 'https://ror.org/01h0swx54 Municipality De Malargue'),
(54764, 'https://ror.org/01rmhx355', 'en', 1, 'https://ror.org/01rmhx355 Muscular Dystrophy Ireland'),
(54765, 'https://ror.org/02kvhs631', 'en', 1, 'https://ror.org/02kvhs631 Benson-Henry Institute'),
(54766, 'https://ror.org/00ps92954', 'no_lang_code', 1, 'https://ror.org/00ps92954 Nagase (Japan) é•·ē€¬ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(54767, 'https://ror.org/0067hwx77', 'en', 1, 'https://ror.org/0067hwx77 Nanjing Health and Health Commission å—äŗ¬åø‚å«ē”Ÿå±€'),
(54768, 'https://ror.org/026bfbm57', 'en', 1, 'https://ror.org/026bfbm57 Nanocem'),
(54769, 'https://ror.org/04zdeh149', 'en', 1, 'https://ror.org/04zdeh149 VA Sepulveda Ambulatory Care Center'),
(54770, 'https://ror.org/03gzs6562', 'no_lang_code', 1, 'https://ror.org/03gzs6562 Narishige (Japan)'),
(54771, 'https://ror.org/01xz9k981', 'en', 1, 'https://ror.org/01xz9k981 National Research Institute of Cultural Heritage źµ­ė¦½ė¬øķ™”ģž¬ģ—°źµ¬ģ†Œ'),
(54772, 'https://ror.org/053abfv27', 'en', 1, 'https://ror.org/053abfv27 Canadian Automotive Partnership Council Conseil du Partenariat du Secteur Canadien de l''Automobile'),
(54773, 'https://ror.org/00m5y7t24', 'en', 1, 'https://ror.org/00m5y7t24 BIGCCS'),
(54774, 'https://ror.org/05nzc1r88', 'en', 1, 'https://ror.org/05nzc1r88 The Synergetic Innovation Center for Advanced Materials ę±Ÿč‹å…ˆčæ›ē”Ÿē‰©äøŽåŒ–å­¦åˆ¶é€ ååŒåˆ›ę–°äø­åæƒ'),
(54775, 'https://ror.org/05f8ada11', 'no_lang_code', 1, 'https://ror.org/05f8ada11 Neurotrack Technologies (United States)'),
(54776, 'https://ror.org/05nf05q11', 'en', 1, 'https://ror.org/05nf05q11 Nebraska Game and Parks Commission'),
(54777, 'https://ror.org/0135zve36', 'en', 1, 'https://ror.org/0135zve36 California Native Plant Society'),
(54778, 'https://ror.org/05ezpt146', 'no_lang_code', 1, 'https://ror.org/05ezpt146 China Ningbo International Cooperation (China) äø­å›½å®ę³¢å›½é™…åˆä½œ'),
(54779, 'https://ror.org/0392hft58', 'en', 1, 'https://ror.org/0392hft58 Nissay Culture Foundation ę—„ęœ¬ē”Ÿå‘½äæé™ŗē›øäŗ’ä¼šē¤¾'),
(54780, 'https://ror.org/02nnywp42', 'en', 1, 'https://ror.org/02nnywp42 North Carolina Department of Public Safety'),
(54781, 'https://ror.org/03982hf34', 'en', 1, 'https://ror.org/03982hf34 New Huadu Business School ę–°åŽéƒ½å•†å­¦é™¢'),
(54782, 'https://ror.org/04zwxgg32', 'no_lang_code', 1, 'https://ror.org/04zwxgg32 Nexen (Canada)'),
(54783, 'https://ror.org/008cqbc52', 'en', 1, 'https://ror.org/008cqbc52 Next Generation Infrastructures Stichting Next Generation Infrastructures'),
(54784, 'https://ror.org/05kzgnp84', 'en', 1, 'https://ror.org/05kzgnp84 Changchun Bureau of Science and Technology é•æę˜„åø‚ē§‘ęŠ€å±€'),
(54785, 'https://ror.org/04g2fg147', 'en', 1, 'https://ror.org/04g2fg147 Ohio Water Development Authority'),
(54786, 'https://ror.org/03h4b0p21', 'no_lang_code', 1, 'https://ror.org/03h4b0p21 Oil India (India)'),
(54787, 'https://ror.org/05a15vf47', 'en', 1, 'https://ror.org/05a15vf47 Oil Industry Development Board'),
(54788, 'https://ror.org/0520gqb12', 'en', 1, 'https://ror.org/0520gqb12 Oklahoma Center for Adult Stem Cell Research'),
(54789, 'https://ror.org/0246a9012', 'en', 1, 'https://ror.org/0246a9012 Direction gƩnƩrale Statistique Statistics Belgium'),
(54790, 'https://ror.org/01nmsj266', 'en', 1, 'https://ror.org/01nmsj266 Pacific Alzheimer Research Foundation'),
(54791, 'https://ror.org/00hxz0s44', 'no_lang_code', 1, 'https://ror.org/00hxz0s44 Bodycote (Canada)'),
(54792, 'https://ror.org/014pp1s07', 'en', 1, 'https://ror.org/014pp1s07 Port Authority of New York and New Jersey'),
(54793, 'https://ror.org/006t5z227', 'no_lang_code', 1, 'https://ror.org/006t5z227 OP Financial Group (Finland)'),
(54794, 'https://ror.org/04tac1482', 'en', 1, 'https://ror.org/04tac1482 Pittsburgh Supercomputing Center'),
(54795, 'https://ror.org/02k4dcs46', 'en', 1, 'https://ror.org/02k4dcs46 National Engineering Research Center of Electromagnetic Radiation Control Materials å›½å®¶ē”µē£č¾å°„ęŽ§åˆ¶ęę–™å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(54796, 'https://ror.org/047939x15', 'en', 1, 'https://ror.org/047939x15 Penn Center for AIDS Research'),
(54797, 'https://ror.org/05ehreb88', 'en', 1, 'https://ror.org/05ehreb88 Pennsylvania Commission on Crime and Delinquency'),
(54798, 'https://ror.org/05j159997', 'nl', 1, 'https://ror.org/05j159997 Prins Bernhard Cultuurfonds'),
(54799, 'https://ror.org/03teh1j22', 'es', 1, 'https://ror.org/03teh1j22 Fundación Pro CNIC'),
(54800, 'https://ror.org/04ts80387', 'en', 1, 'https://ror.org/04ts80387 Project ALS'),
(54801, 'https://ror.org/0004a4056', 'en', 1, 'https://ror.org/0004a4056 Alabama Department of Senior Services'),
(54802, 'https://ror.org/05fbtm431', 'en', 1, 'https://ror.org/05fbtm431 R and D Center for Valuable Recycling'),
(54803, 'https://ror.org/05qjt5a38', 'en', 1, 'https://ror.org/05qjt5a38 Royal Canadian Military Institute'),
(54804, 'https://ror.org/04dacya36', 'en', 1, 'https://ror.org/04dacya36 Renewable Energy and Energy Efficiency Organization به ŲŖŲ§Ų±Ł†Ł…Ų§ŪŒ سازمان Ų§Ł†Ų±Ś˜ŪŒ Ł‡Ų§ŪŒ تجدیدپذیر و بهره وری Ų§Ł†Ų±Ś˜ŪŒ برق خوؓ Ų¢Ł…ŲÆŪŒŲÆ.'),
(54805, 'https://ror.org/036p2ma86', 'en', 1, 'https://ror.org/036p2ma86 Research Partnership to Secure Energy for America'),
(54806, 'https://ror.org/00z4tjm61', 'en', 1, 'https://ror.org/00z4tjm61 Reservoir Engineering Research Institute'),
(54807, 'https://ror.org/02vmzh064', 'nl', 1, 'https://ror.org/02vmzh064 Revalidatiefonds'),
(54808, 'https://ror.org/02md09461', 'en', 1, 'https://ror.org/02md09461 World Bank Group'),
(54809, 'https://ror.org/03kxdn807', 'ms', 1, 'https://ror.org/03kxdn807 Universiti Tenaga Nasional'),
(54810, 'https://ror.org/05x0m9n95', 'en', 1, 'https://ror.org/05x0m9n95 Heilongjiang Institute of Technology'),
(54811, 'https://ror.org/02s9kjn30', 'en', 1, 'https://ror.org/02s9kjn30 Robert W Deutsch Foundation'),
(54812, 'https://ror.org/00k9vtb32', 'en', 1, 'https://ror.org/00k9vtb32 Schweizerische Hochschulkonferen Swiss University Conference'),
(54813, 'https://ror.org/046ckcg70', 'no_lang_code', 1, 'https://ror.org/046ckcg70 Zeal (United Kingdom)'),
(54814, 'https://ror.org/00ppegh42', 'en', 1, 'https://ror.org/00ppegh42 Scientific Research Support Fund ŲµŁ†ŲÆŁˆŁ‚ دعم البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(54815, 'https://ror.org/01rdc9p22', 'en', 1, 'https://ror.org/01rdc9p22 Shepherd Foundation'),
(54816, 'https://ror.org/04ndcjq03', 'en', 1, 'https://ror.org/04ndcjq03 Shanghai Nanotechnology Promotion Center äøŠęµ·åø‚ēŗ³ē±³ē§‘ęŠ€äøŽäŗ§äøšå‘å±•äæƒčæ›äø­åæƒ'),
(54817, 'https://ror.org/045ejp222', 'en', 1, 'https://ror.org/045ejp222 Shandong Provincial Agriculture Department å±±äøœēœå†œäøšåŽ… ę‰æåŠž'),
(54818, 'https://ror.org/041qqrw82', 'en', 1, 'https://ror.org/041qqrw82 Singapore Centre for Environmental Life Sciences Engineering'),
(54819, 'https://ror.org/056d4s875', 'fr', 1, 'https://ror.org/056d4s875 SociƩtƩ AcadƩmique Vaudoise'),
(54820, 'https://ror.org/020gjh112', 'en', 1, 'https://ror.org/020gjh112 Sino-Danish Centre for Education and Research äø­å›½äø¹éŗ¦ē§‘ē ”ę•™č‚²äø­åæƒ'),
(54821, 'https://ror.org/04trax135', 'en', 1, 'https://ror.org/04trax135 Sophia Foundation for Children'),
(54822, 'https://ror.org/059091v77', 'fr', 1, 'https://ror.org/059091v77 Onco Lille'),
(54823, 'https://ror.org/02wpjr618', 'en', 1, 'https://ror.org/02wpjr618 Government of Austria Ɩsterreichische Bundesregierung'),
(54824, 'https://ror.org/01xzvwk54', 'es', 1, 'https://ror.org/01xzvwk54 Universidad Latinoamericana'),
(54825, 'https://ror.org/01dkyny41', 'es', 1, 'https://ror.org/01dkyny41 Universidad UNIACC'),
(54826, 'https://ror.org/03ht51987', 'en', 1, 'https://ror.org/03ht51987 Norwegian Agriculture Agency'),
(54827, 'https://ror.org/05ak1kg07', 'en', 1, 'https://ror.org/05ak1kg07 Foundation for Japanese Chemical Research å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åŒ–å­¦ē ”ē©¶ä¼š'),
(54828, 'https://ror.org/049k08p55', 'en', 1, 'https://ror.org/049k08p55 STandUP for Energy'),
(54829, 'https://ror.org/032rnvf90', 'no_lang_code', 1, 'https://ror.org/032rnvf90 BBMG (China) åŒ—äŗ¬é‡‘éš…ęŽ§č‚”ęœ‰é™å…¬åø'),
(54830, 'https://ror.org/01wyt3891', 'en', 1, 'https://ror.org/01wyt3891 State and Federal Contractors Water Agency'),
(54831, 'https://ror.org/00mjd8b34', 'en', 1, 'https://ror.org/00mjd8b34 Ministerstvo financí České republiky Ministry of Finance of the Czech Republic'),
(54832, 'https://ror.org/054chcy06', 'no_lang_code', 1, 'https://ror.org/054chcy06 Hong Kong Standards and Testing Centre (China) é¦™ęøÆę ‡å‡†åŠę£€å®šäø­åæƒ'),
(54833, 'https://ror.org/00rwprq91', 'no_lang_code', 1, 'https://ror.org/00rwprq91 StemSoft Software (Canada)'),
(54834, 'https://ror.org/033hwwn95', 'nl', 1, 'https://ror.org/033hwwn95 Stichting Achmea Slachtoffer en Samenleving'),
(54835, 'https://ror.org/03bwk9n44', 'en', 1, 'https://ror.org/03bwk9n44 Strategic Initiative Materials in Flanders'),
(54836, 'https://ror.org/03bc5w075', 'en', 1, 'https://ror.org/03bc5w075 State Committee on Science and Technology'),
(54837, 'https://ror.org/00zps9v98', 'en', 1, 'https://ror.org/00zps9v98 Swedish Rheumatism Association'),
(54838, 'https://ror.org/04rmevh30', 'en', 1, 'https://ror.org/04rmevh30 Stiftelsen HƤstforskning Swedish Norwegian Foundation for Equine Research'),
(54839, 'https://ror.org/03g2j2c90', 'en', 1, 'https://ror.org/03g2j2c90 St Andrews Community Hospital'),
(54840, 'https://ror.org/02w30ae27', 'en', 1, 'https://ror.org/02w30ae27 SYSU-CMU International Joint Research Institute'),
(54841, 'https://ror.org/034eg5a26', 'en', 1, 'https://ror.org/034eg5a26 Government of Ghana'),
(54842, 'https://ror.org/04eqn7j88', 'en', 1, 'https://ror.org/04eqn7j88 Swartz Foundation'),
(54843, 'https://ror.org/00xtmkg39', 'no_lang_code', 1, 'https://ror.org/00xtmkg39 Taiwan Power (Taiwan) å°ē£é›»åŠ›å…¬åø'),
(54844, 'https://ror.org/044ktnx96', 'en', 1, 'https://ror.org/044ktnx96 Bureau of Energy ē¶“ęæŸéƒØčƒ½ęŗå±€'),
(54845, 'https://ror.org/037866t57', 'en', 1, 'https://ror.org/037866t57 Tenovus Scotland'),
(54846, 'https://ror.org/02r88m968', 'en', 1, 'https://ror.org/02r88m968 Tamkin Foundation'),
(54847, 'https://ror.org/030ebc654', 'en', 1, 'https://ror.org/030ebc654 Hefei Material Science and Technology Center åˆč‚„ē‰©č“Øē§‘å­¦ęŠ€ęœÆäø­åæƒ'),
(54848, 'https://ror.org/015xp8e19', 'de', 1, 'https://ror.org/015xp8e19 Thüringer Ministerium für Bildung, Jugend und Sport'),
(54849, 'https://ror.org/059fv9z04', 'en', 1, 'https://ror.org/059fv9z04 Fok Ying Tung Foundation'),
(54850, 'https://ror.org/04zwrha85', 'en', 1, 'https://ror.org/04zwrha85 Victorian Responsible Gambling Foundation'),
(54851, 'https://ror.org/00qmvrz07', 'en', 1, 'https://ror.org/00qmvrz07 Vietnam International Education Cooperation Department'),
(54852, 'https://ror.org/01vddpb46', 'no_lang_code', 1, 'https://ror.org/01vddpb46 Winetech (South Africa)'),
(54853, 'https://ror.org/05gbven85', 'en', 1, 'https://ror.org/05gbven85 Wisconsin Institutes for Discovery'),
(54854, 'https://ror.org/01m84dy33', 'en', 1, 'https://ror.org/01m84dy33 WonKwang Health Science University'),
(54855, 'https://ror.org/02n1y8269', 'en', 1, 'https://ror.org/02n1y8269 Wales Institute of Cognitive Neuroscience'),
(54856, 'https://ror.org/0380vn954', 'en', 1, 'https://ror.org/0380vn954 Department of Information Technology, Biotechnology and Science and Technology'),
(54857, 'https://ror.org/02zhp7e72', 'en', 1, 'https://ror.org/02zhp7e72 World Federation of Scientists'),
(54858, 'https://ror.org/04qe38n20', 'en', 1, 'https://ror.org/04qe38n20 World Horse Welfare'),
(54859, 'https://ror.org/03bpesm64', 'pt', 1, 'https://ror.org/03bpesm64 Instituto Nacional de CiĆŖncia e Tecnologia em Entomologia Molecular'),
(54860, 'https://ror.org/00twt5233', 'en', 1, 'https://ror.org/00twt5233 Wyoming Water Development Commission'),
(54861, 'https://ror.org/02gvfwj85', 'en', 1, 'https://ror.org/02gvfwj85 Jilin Province Youth Development Foundation å‰ęž—ēœé’å°‘å¹“å‘å±•åŸŗé‡‘ä¼š'),
(54862, 'https://ror.org/00mwckg53', 'no_lang_code', 1, 'https://ror.org/00mwckg53 Wesco (Japan) ę Ŗå¼ä¼šē¤¾ć‚¦ć‚Øć‚¹ć‚³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(54863, 'https://ror.org/05g1thn98', 'en', 1, 'https://ror.org/05g1thn98 Shanxi Province Youth Development Foundation å±±č„æēœé’å°‘å¹“å‘å±•åŸŗé‡‘ä¼š'),
(54864, 'https://ror.org/04dbch786', 'no_lang_code', 1, 'https://ror.org/04dbch786 Yandex (Russia) ЯнГекс'),
(54865, 'https://ror.org/00zez7q62', 'no_lang_code', 1, 'https://ror.org/00zez7q62 Armatury Group (Czechia)'),
(54866, 'https://ror.org/01zk2ze43', 'no_lang_code', 1, 'https://ror.org/01zk2ze43 Lukrom (Czechia)'),
(54867, 'https://ror.org/006x9vy35', 'no_lang_code', 1, 'https://ror.org/006x9vy35 Air Jihlava Service (Czechia)'),
(54868, 'https://ror.org/00f2df561', 'no_lang_code', 1, 'https://ror.org/00f2df561 Arming (Czechia)'),
(54869, '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'),
(54870, 'https://ror.org/00xxcdz88', 'no_lang_code', 1, 'https://ror.org/00xxcdz88 Air Technic (Czechia)'),
(54871, 'https://ror.org/03acjy802', 'no_lang_code', 1, 'https://ror.org/03acjy802 Aroma Praha (Czechia)'),
(54872, 'https://ror.org/0526qf682', 'no_lang_code', 1, 'https://ror.org/0526qf682 AirshipClub (Czechia)'),
(54873, 'https://ror.org/00fxeax19', 'no_lang_code', 1, 'https://ror.org/00fxeax19 AIS (Czechia)'),
(54874, 'https://ror.org/015dee208', 'no_lang_code', 1, 'https://ror.org/015dee208 FCC Austria Abfall Service AG'),
(54875, 'https://ror.org/04xyg3765', 'no_lang_code', 1, 'https://ror.org/04xyg3765 Arthrocentrum'),
(54876, 'https://ror.org/01vhsvw18', 'no_lang_code', 1, 'https://ror.org/01vhsvw18 Artinel (Czechia)'),
(54877, 'https://ror.org/0306jpb35', 'no_lang_code', 1, 'https://ror.org/0306jpb35 AK signal Brno (Czechia)'),
(54878, 'https://ror.org/02e6vz398', 'en', 1, 'https://ror.org/02e6vz398 Agentura regionƔlnƭho rozvoje Regional Development Agency'),
(54879, 'https://ror.org/01mpb1315', 'no_lang_code', 1, 'https://ror.org/01mpb1315 Artisys (Czechia)'),
(54880, 'https://ror.org/0176j2f59', 'no_lang_code', 1, 'https://ror.org/0176j2f59 AK Svejkovský, KabelkovÔ, Šlauf (Czechia)'),
(54881, 'https://ror.org/000r42360', 'no_lang_code', 1, 'https://ror.org/000r42360 M Plus (Czechia)'),
(54882, 'https://ror.org/02k7tdq49', 'no_lang_code', 1, 'https://ror.org/02k7tdq49 Pokorný (Czechia)'),
(54883, 'https://ror.org/02hb3dy29', 'cs', 1, 'https://ror.org/02hb3dy29 Asociace Českých a Slovenských Zinkoven'),
(54884, 'https://ror.org/02ky4wg41', 'no_lang_code', 1, 'https://ror.org/02ky4wg41 Asekol (Czechia)'),
(54885, 'https://ror.org/03bmbxh67', 'no_lang_code', 1, 'https://ror.org/03bmbxh67 AteliƩry TapisƩriƭ sro'),
(54886, 'https://ror.org/019m3rc39', 'no_lang_code', 1, 'https://ror.org/019m3rc39 Asipo (Czechia)'),
(54887, 'https://ror.org/01w3da479', 'no_lang_code', 1, 'https://ror.org/01w3da479 Asistenčnƭ Centrum (Czechia)'),
(54888, 'https://ror.org/02f66na56', 'no_lang_code', 1, 'https://ror.org/02f66na56 Akzo Nobel (Czechia)'),
(54889, 'https://ror.org/03kyg9945', 'no_lang_code', 1, 'https://ror.org/03kyg9945 Asklepion'),
(54890, 'https://ror.org/03mbvnm11', 'no_lang_code', 1, 'https://ror.org/03mbvnm11 ALB expert (Czechia)'),
(54891, 'https://ror.org/03kpfb968', 'cs', 1, 'https://ror.org/03kpfb968 Centrum LĆ©ÄebnĆ© Rehabilitace Liberec'),
(54892, 'https://ror.org/032j4xk85', 'cs', 1, 'https://ror.org/032j4xk85 Asociace FinancovƔnƭ Infrastruktury Pro Mobilitu'),
(54893, 'https://ror.org/02brgbw95', 'no_lang_code', 1, 'https://ror.org/02brgbw95 Albertina icome Praha (Czechia)'),
(54894, 'https://ror.org/02f0a4552', 'en', 1, 'https://ror.org/02f0a4552 Czech Scientific Society for Mycology ČeskĆ” VědeckĆ” Společnost Pro Mykologii'),
(54895, 'https://ror.org/037hw2x70', 'no_lang_code', 1, 'https://ror.org/037hw2x70 Asociace GumƔrenskƩ Technologie Zlƭn (Czechia)'),
(54896, 'https://ror.org/01w4md275', 'en', 1, 'https://ror.org/01w4md275 Asociace hotelů a restaurací České republiky Czech Association of Hotels and Restaurants'),
(54897, 'https://ror.org/04hd4af29', 'no_lang_code', 1, 'https://ror.org/04hd4af29 Alcoma (Czechia)'),
(54898, 'https://ror.org/03zk5vq23', 'cs', 1, 'https://ror.org/03zk5vq23 Asociace Korozních Inženýrů'),
(54899, 'https://ror.org/00t83rb52', 'no_lang_code', 1, 'https://ror.org/00t83rb52 Ales (Czechia)'),
(54900, 'https://ror.org/04bt71y08', 'en', 1, 'https://ror.org/04bt71y08 Asociace leteckých výrobců Association of the Czech AeroSpace Industry'),
(54901, 'https://ror.org/02kx3za73', 'no_lang_code', 1, 'https://ror.org/02kx3za73 Alfarma (Czechia)'),
(54902, 'https://ror.org/05wjqtf52', 'cs', 1, 'https://ror.org/05wjqtf52 Asociace Pedagogů ZÔkladního Školství České Republiky'),
(54903, 'https://ror.org/02t4ead83', 'cs', 1, 'https://ror.org/02t4ead83 Expresnƭ AstronomickƩ Informace'),
(54904, 'https://ror.org/01bmmtg52', 'cs', 1, 'https://ror.org/01bmmtg52 Asociace Poskytovatelů SociÔlních Služeb České Republiky'),
(54905, 'https://ror.org/011jwng84', 'en', 1, 'https://ror.org/011jwng84 Kolin Institute of Technology Kolínský Technologický Institut'),
(54906, 'https://ror.org/005zs1640', 'cs', 1, 'https://ror.org/005zs1640 Asociace Pro MlĆ”dež Vědu a Techniku'),
(54907, 'https://ror.org/028vpwk62', 'no_lang_code', 1, 'https://ror.org/028vpwk62 Sady KlÔŔterec nad Ohří (Czechia)'),
(54908, 'https://ror.org/04d3cgn96', 'no_lang_code', 1, 'https://ror.org/04d3cgn96 Alginit (Czechia)'),
(54909, 'https://ror.org/02m4t4k66', 'en', 1, 'https://ror.org/02m4t4k66 Asociace Pro Vodu ČR Czech Water Association'),
(54910, 'https://ror.org/05qnx7t56', 'cs', 1, 'https://ror.org/05qnx7t56 Svaz ChovatelÅÆ Prasat v ČechĆ”ch a na Moravě'),
(54911, 'https://ror.org/00wqy9447', 'no_lang_code', 1, 'https://ror.org/00wqy9447 Algon (Czechia)'),
(54912, 'https://ror.org/02gw7aa83', 'no_lang_code', 1, 'https://ror.org/02gw7aa83 Alimpex Food (Czechia)'),
(54913, 'https://ror.org/00akda788', 'no_lang_code', 1, 'https://ror.org/00akda788 1 - Cube (Czechia)'),
(54914, 'https://ror.org/02cttc493', 'en', 1, 'https://ror.org/02cttc493 Alliance Forum Foundation'),
(54915, 'https://ror.org/02ss2ye92', 'cs', 1, 'https://ror.org/02ss2ye92 Obnovitelných Zdrojů Energie'),
(54916, 'https://ror.org/036dc0221', 'no_lang_code', 1, 'https://ror.org/036dc0221 2EL (Czechia)'),
(54917, 'https://ror.org/03tts4y20', 'no_lang_code', 1, 'https://ror.org/03tts4y20 Allowance (Czechia)'),
(54918, 'https://ror.org/02dmdfh75', 'no_lang_code', 1, 'https://ror.org/02dmdfh75 2VV (Czechia)'),
(54919, 'https://ror.org/00k602276', 'cs', 1, 'https://ror.org/00k602276 Asociace Svazů Chovatelů Koní České Republiky'),
(54920, 'https://ror.org/02nw2dj06', 'no_lang_code', 1, 'https://ror.org/02nw2dj06 3E Praha Engineering (Czechia)'),
(54921, 'https://ror.org/005tr1q75', 'no_lang_code', 1, 'https://ror.org/005tr1q75 Alpiq Generation (Czechia)'),
(54922, 'https://ror.org/002ah4568', 'no_lang_code', 1, 'https://ror.org/002ah4568 3Dim Laboratory (Czechia)'),
(54923, 'https://ror.org/01j8jme87', 'no_lang_code', 1, 'https://ror.org/01j8jme87 ASPK'),
(54924, 'https://ror.org/02z4xsh88', 'no_lang_code', 1, 'https://ror.org/02z4xsh88 3G Consulting Engineers (Czechia)'),
(54925, 'https://ror.org/00d45ws96', 'no_lang_code', 1, 'https://ror.org/00d45ws96 Asseco (Czechia)'),
(54926, 'https://ror.org/04ansg437', 'no_lang_code', 1, 'https://ror.org/04ansg437 Altech (Czechia)'),
(54927, 'https://ror.org/00g0srg04', 'no_lang_code', 1, 'https://ror.org/00g0srg04 3S Sedlak (Czechia)'),
(54928, 'https://ror.org/04d51r796', 'no_lang_code', 1, 'https://ror.org/04d51r796 Altron (Czechia)'),
(54929, 'https://ror.org/03q6nea03', 'no_lang_code', 1, 'https://ror.org/03q6nea03 Alucast (Czechia)'),
(54930, 'https://ror.org/01ex2n145', 'no_lang_code', 1, 'https://ror.org/01ex2n145 Alumistr (Czechia)'),
(54931, 'https://ror.org/00n8cd549', 'en', 1, 'https://ror.org/00n8cd549 JGC-S Scholarship Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ę®ćƒ»å®Ÿå‰å„Øå­¦ä¼š'),
(54932, 'https://ror.org/00ddb1628', 'no_lang_code', 1, 'https://ror.org/00ddb1628 Ataco (Czechia)'),
(54933, 'https://ror.org/03yqdcb49', 'no_lang_code', 1, 'https://ror.org/03yqdcb49 A-Spektrum (Czechia)'),
(54934, 'https://ror.org/028mkng75', 'no_lang_code', 1, 'https://ror.org/028mkng75 ATE (Czechia)'),
(54935, 'https://ror.org/03bbymp68', 'no_lang_code', 1, 'https://ror.org/03bbymp68 Amati-Denak (Czechia)'),
(54936, 'https://ror.org/03pww3q25', 'no_lang_code', 1, 'https://ror.org/03pww3q25 Atea Praha (Czechia)'),
(54937, 'https://ror.org/02cw1xf64', 'no_lang_code', 1, 'https://ror.org/02cw1xf64 A. KTI (Czechia)'),
(54938, 'https://ror.org/03a2v5m77', 'no_lang_code', 1, 'https://ror.org/03a2v5m77 Atega (Czechia)'),
(54939, 'https://ror.org/00fpjma30', 'no_lang_code', 1, 'https://ror.org/00fpjma30 Atelier Fontes (Czechia)'),
(54940, 'https://ror.org/03s5bsk62', 'no_lang_code', 1, 'https://ror.org/03s5bsk62 Amberg (Czechia)'),
(54941, 'https://ror.org/02gkttc21', 'no_lang_code', 1, 'https://ror.org/02gkttc21 Atelier T plan (Czechia)'),
(54942, 'https://ror.org/04a9esj71', 'no_lang_code', 1, 'https://ror.org/04a9esj71 Amec Foster Wheeler (Czechia)'),
(54943, 'https://ror.org/02mgem015', 'no_lang_code', 1, 'https://ror.org/02mgem015 Abegu (Czechia)'),
(54944, 'https://ror.org/016h91621', 'no_lang_code', 1, 'https://ror.org/016h91621 Amest (Czechia)'),
(54945, 'https://ror.org/049a7m162', 'no_lang_code', 1, 'https://ror.org/049a7m162 Abitec (Czechia)'),
(54946, 'https://ror.org/02n50e113', 'no_lang_code', 1, 'https://ror.org/02n50e113 Atro Rýmařov (Czechia)'),
(54947, 'https://ror.org/00qbq1b12', 'no_lang_code', 1, 'https://ror.org/00qbq1b12 ABM Architekti (Czechia)'),
(54948, 'https://ror.org/03bfvr743', 'no_lang_code', 1, 'https://ror.org/03bfvr743 ATS Telcom Praha (Czechia)'),
(54949, 'https://ror.org/0298sz047', 'no_lang_code', 1, 'https://ror.org/0298sz047 AMI Communications (Czechia)'),
(54950, 'https://ror.org/00s7jd712', 'no_lang_code', 1, 'https://ror.org/00s7jd712 ABS Jets (Czechia)'),
(54951, 'https://ror.org/005q35q21', 'no_lang_code', 1, 'https://ror.org/005q35q21 AMT (Czechia)'),
(54952, 'https://ror.org/0007v1468', 'no_lang_code', 1, 'https://ror.org/0007v1468 Amtek (Czechia)'),
(54953, 'https://ror.org/04wk76v17', 'cs', 1, 'https://ror.org/04wk76v17 ACCENDO – Centrum pro vědu a výzkum'),
(54954, 'https://ror.org/05kvwxg84', 'no_lang_code', 1, 'https://ror.org/05kvwxg84 Amylon (Czechia)'),
(54955, 'https://ror.org/03nc73a98', 'no_lang_code', 1, 'https://ror.org/03nc73a98 Aura (Czechia)'),
(54956, 'https://ror.org/03hsrn882', 'no_lang_code', 1, 'https://ror.org/03hsrn882 ANAKAN (Czechia)'),
(54957, 'https://ror.org/04btwgw22', 'no_lang_code', 1, 'https://ror.org/04btwgw22 Aura (Czechia)'),
(54958, 'https://ror.org/05ybw6w30', 'no_lang_code', 1, 'https://ror.org/05ybw6w30 ACRE (Czechia)'),
(54959, 'https://ror.org/03n40zw95', 'no_lang_code', 1, 'https://ror.org/03n40zw95 Analytika (Czechia)'),
(54960, 'https://ror.org/02qa5kg76', 'en', 1, 'https://ror.org/02qa5kg76 Australian Regenerative Medicine Institute'),
(54961, 'https://ror.org/042q5vh09', 'no_lang_code', 1, 'https://ror.org/042q5vh09 Acrea (Czechia)'),
(54962, 'https://ror.org/02z2my330', 'no_lang_code', 1, 'https://ror.org/02z2my330 Anapartners (Czechia)'),
(54963, 'https://ror.org/04ntbmy72', 'no_lang_code', 1, 'https://ror.org/04ntbmy72 ANC Components (Czechia)'),
(54964, 'https://ror.org/02spbvv79', 'no_lang_code', 1, 'https://ror.org/02spbvv79 Activair (Czechia)'),
(54965, 'https://ror.org/013nc8024', 'no_lang_code', 1, 'https://ror.org/013nc8024 Angermeier (Czechia)'),
(54966, 'https://ror.org/01v9ehc48', 'no_lang_code', 1, 'https://ror.org/01v9ehc48 ADA AkustickĆ” Emise (Czechia)'),
(54967, 'https://ror.org/03n2rkn85', 'no_lang_code', 1, 'https://ror.org/03n2rkn85 Autel (Czechia)'),
(54968, 'https://ror.org/01makav45', 'no_lang_code', 1, 'https://ror.org/01makav45 AutoCont (Czechia)'),
(54969, 'https://ror.org/00vy0bt98', 'no_lang_code', 1, 'https://ror.org/00vy0bt98 Anita B (Czechia)'),
(54970, 'https://ror.org/018rnp883', 'no_lang_code', 1, 'https://ror.org/018rnp883 AdamovskƩ Strojƭrny (Czechia)'),
(54971, 'https://ror.org/03pzt8k43', 'no_lang_code', 1, 'https://ror.org/03pzt8k43 Ankara (Czechia)'),
(54972, 'https://ror.org/00h588p66', 'no_lang_code', 1, 'https://ror.org/00h588p66 ADP (Czechia)'),
(54973, 'https://ror.org/0030qrq56', 'no_lang_code', 1, 'https://ror.org/0030qrq56 Anopress IT (Czechia)'),
(54974, 'https://ror.org/04evkr214', 'no_lang_code', 1, 'https://ror.org/04evkr214 Advacam (Czechia)'),
(54975, 'https://ror.org/03zszr857', 'no_lang_code', 1, 'https://ror.org/03zszr857 Apex (Czechia)'),
(54976, 'https://ror.org/03zh8em07', 'no_lang_code', 1, 'https://ror.org/03zh8em07 Advanced World Transport (Czechia)'),
(54977, 'https://ror.org/05tz0an20', 'cs', 1, 'https://ror.org/05tz0an20 Autoklub České Republiky'),
(54978, 'https://ror.org/00ggtj069', 'no_lang_code', 1, 'https://ror.org/00ggtj069 ADW (Czechia)'),
(54979, 'https://ror.org/00jyvgk83', 'no_lang_code', 1, 'https://ror.org/00jyvgk83 Autometal (Czechia)'),
(54980, 'https://ror.org/02e18ra65', 'no_lang_code', 1, 'https://ror.org/02e18ra65 Av Engineering (Czechia)'),
(54981, 'https://ror.org/0161kev09', 'no_lang_code', 1, 'https://ror.org/0161kev09 APPLIC (Czechia)'),
(54982, 'https://ror.org/034v70g29', 'no_lang_code', 1, 'https://ror.org/034v70g29 AEV (Czechia)'),
(54983, 'https://ror.org/03n0h8b63', 'no_lang_code', 1, 'https://ror.org/03n0h8b63 Applycon (Czechia)'),
(54984, 'https://ror.org/040n64385', 'no_lang_code', 1, 'https://ror.org/040n64385 AVE (Czechia)'),
(54985, 'https://ror.org/001p94d66', 'no_lang_code', 1, 'https://ror.org/001p94d66 Aveflor (Czechia)'),
(54986, 'https://ror.org/02yzb7x61', 'no_lang_code', 1, 'https://ror.org/02yzb7x61 ƅF (Czechia)'),
(54987, 'https://ror.org/04wk0vx02', 'no_lang_code', 1, 'https://ror.org/04wk0vx02 Aveko Servomotory (Czechia)'),
(54988, 'https://ror.org/051y3re62', 'no_lang_code', 1, 'https://ror.org/051y3re62 Aproks (Czechia)'),
(54989, 'https://ror.org/01psvhy06', 'no_lang_code', 1, 'https://ror.org/01psvhy06 AG COM (Czechia)'),
(54990, 'https://ror.org/03vccbd52', 'no_lang_code', 1, 'https://ror.org/03vccbd52 AVG Technologies (Czechia)'),
(54991, 'https://ror.org/01njzmh10', 'no_lang_code', 1, 'https://ror.org/01njzmh10 AG Info (Czechia)'),
(54992, 'https://ror.org/03nrthd98', 'no_lang_code', 1, 'https://ror.org/03nrthd98 Avia Propeller (Czechia)'),
(54993, 'https://ror.org/045vf4q62', 'no_lang_code', 1, 'https://ror.org/045vf4q62 Apronex (Czechia)'),
(54994, 'https://ror.org/00yswm660', 'en', 1, 'https://ror.org/00yswm660 Japan National Society for the Prevent of Blindness å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ęœ¬å¤±ę˜Žäŗˆé˜²å”ä¼š'),
(54995, 'https://ror.org/00w282m94', 'no_lang_code', 1, 'https://ror.org/00w282m94 APT (Czechia)'),
(54996, 'https://ror.org/0264aj944', 'no_lang_code', 1, 'https://ror.org/0264aj944 AWIK House Production (Czechia)'),
(54997, 'https://ror.org/004ef5a73', 'no_lang_code', 1, 'https://ror.org/004ef5a73 AGC Flat Glass Czech (Czechia)'),
(54998, 'https://ror.org/01y3wh736', 'no_lang_code', 1, 'https://ror.org/01y3wh736 Agenda (Czechia)'),
(54999, 'https://ror.org/02bed6993', 'no_lang_code', 1, 'https://ror.org/02bed6993 Axys Varilab (Czechia)'),
(55000, 'https://ror.org/00zwvxv21', 'no_lang_code', 1, 'https://ror.org/00zwvxv21 AQ SPOL (Czechia)'),
(55001, 'https://ror.org/01cfx5y86', 'no_lang_code', 1, 'https://ror.org/01cfx5y86 AZ Consult (Czechia)'),
(55002, 'https://ror.org/00s796p60', 'no_lang_code', 1, 'https://ror.org/00s796p60 Agentura Motiv P (Czechia)'),
(55003, 'https://ror.org/0102bq490', 'no_lang_code', 1, 'https://ror.org/0102bq490 AQD-envitest (Czechia)'),
(55004, 'https://ror.org/00002d369', 'no_lang_code', 1, 'https://ror.org/00002d369 Azacycles (Czechia)'),
(55005, 'https://ror.org/007t9rq67', 'no_lang_code', 1, 'https://ror.org/007t9rq67 Aqua Procon (Czechia)'),
(55006, 'https://ror.org/01w6ccy36', 'no_lang_code', 1, 'https://ror.org/01w6ccy36 AZS 98 (Czechia)'),
(55007, 'https://ror.org/04g6hvq78', 'no_lang_code', 1, 'https://ror.org/04g6hvq78 Agentura Pro RegionƔlnƭ Rozvoj (Czechia)'),
(55008, 'https://ror.org/045e9yd97', 'no_lang_code', 1, 'https://ror.org/045e9yd97 Aqua-contact (Czechia)'),
(55009, 'https://ror.org/056tpcd64', 'no_lang_code', 1, 'https://ror.org/056tpcd64 Ageris (Czechia)'),
(55010, 'https://ror.org/031xm4t96', 'no_lang_code', 1, 'https://ror.org/031xm4t96 BeHo (Czechia)'),
(55011, 'https://ror.org/03tvfzx75', 'no_lang_code', 1, 'https://ror.org/03tvfzx75 KovofiniÅ” (Czechia)'),
(55012, 'https://ror.org/03w670d24', 'no_lang_code', 1, 'https://ror.org/03w670d24 Agico (Czechia)'),
(55013, 'https://ror.org/02qsttk04', 'no_lang_code', 1, 'https://ror.org/02qsttk04 AQUAdem (Czechia)'),
(55014, 'https://ror.org/03weyxt18', 'no_lang_code', 1, 'https://ror.org/03weyxt18 Aquamonitoring (Czechia)'),
(55015, 'https://ror.org/05hw2fa25', 'no_lang_code', 1, 'https://ror.org/05hw2fa25 Agra Group (Czechia)'),
(55016, 'https://ror.org/041swdb02', 'no_lang_code', 1, 'https://ror.org/041swdb02 B. Braun (Czechia) B. Braun Avitum'),
(55017, 'https://ror.org/02p1hm914', 'no_lang_code', 1, 'https://ror.org/02p1hm914 AgriKomp Bohemia (Czechia)'),
(55018, 'https://ror.org/04xatxw44', 'no_lang_code', 1, 'https://ror.org/04xatxw44 Aquion (Czechia)'),
(55019, 'https://ror.org/04jmfdf65', 'no_lang_code', 1, 'https://ror.org/04jmfdf65 BFP Lesy a statky TomÔŔe Bati'),
(55020, 'https://ror.org/00413jh46', 'no_lang_code', 1, 'https://ror.org/00413jh46 Agrio (Czechia)'),
(55021, 'https://ror.org/045mezg88', 'no_lang_code', 1, 'https://ror.org/045mezg88 Arcdata (Czechia)'),
(55022, 'https://ror.org/03y443x30', 'no_lang_code', 1, 'https://ror.org/03y443x30 AGRO-Merin (Czechia)'),
(55023, 'https://ror.org/033h71b08', 'cs', 1, 'https://ror.org/033h71b08 ArcheologickƩ Centrum Olomouc'),
(55024, 'https://ror.org/04e25nh11', 'no_lang_code', 1, 'https://ror.org/04e25nh11 Agro Chomutice (Czechia)'),
(55025, 'https://ror.org/03s5ftr79', 'cs', 1, 'https://ror.org/03s5ftr79 ArchitektonickĆ” KancelÔř Burian Křivinka'),
(55026, 'https://ror.org/005ft2876', 'no_lang_code', 1, 'https://ror.org/005ft2876 Ardeapharma (Czechia)'),
(55027, 'https://ror.org/00y9v7w55', 'no_lang_code', 1, 'https://ror.org/00y9v7w55 Agro (Czechia)'),
(55028, 'https://ror.org/02kez5066', 'no_lang_code', 1, 'https://ror.org/02kez5066 Backer Elektro (Czechia)'),
(55029, 'https://ror.org/05v629t58', 'no_lang_code', 1, 'https://ror.org/05v629t58 Argo-Hytos (Czechia)'),
(55030, 'https://ror.org/00y4c9c34', 'no_lang_code', 1, 'https://ror.org/00y4c9c34 Agro PodlesĆ­ (Czechia)'),
(55031, 'https://ror.org/00wphza66', 'no_lang_code', 1, 'https://ror.org/00wphza66 Argus Geo SystƩm (Czechia)'),
(55032, 'https://ror.org/03v1j6q03', 'no_lang_code', 1, 'https://ror.org/03v1j6q03 BaHa (Czechia)'),
(55033, 'https://ror.org/01dt2yc71', 'no_lang_code', 1, 'https://ror.org/01dt2yc71 Agro RubĆ­n (Czechia)'),
(55034, 'https://ror.org/05k1g7h17', 'no_lang_code', 1, 'https://ror.org/05k1g7h17 Aries (Czechia)'),
(55035, 'https://ror.org/04gk7sd03', 'no_lang_code', 1, 'https://ror.org/04gk7sd03 Benes A Lat (Czechia)'),
(55036, 'https://ror.org/02ebsfr31', 'no_lang_code', 1, 'https://ror.org/02ebsfr31 AGRO StoŔíkovice (Czechia)'),
(55037, 'https://ror.org/054rd8b94', 'no_lang_code', 1, 'https://ror.org/054rd8b94 ARKO Consult (Czechia)'),
(55038, 'https://ror.org/03nq3xp69', 'no_lang_code', 1, 'https://ror.org/03nq3xp69 Balak (Czechia)'),
(55039, 'https://ror.org/05rv0ab64', 'no_lang_code', 1, 'https://ror.org/05rv0ab64 BÔňské projekty Teplice'),
(55040, 'https://ror.org/00tvd2s73', 'no_lang_code', 1, 'https://ror.org/00tvd2s73 AGRO-Partner (Czechia)'),
(55041, 'https://ror.org/00v6wgj18', 'no_lang_code', 1, 'https://ror.org/00v6wgj18 BBT-Materials Processing (Czechia)'),
(55042, 'https://ror.org/05vkhtr02', 'no_lang_code', 1, 'https://ror.org/05vkhtr02 BCS Engineering (Czechia)'),
(55043, 'https://ror.org/026gpk522', 'no_lang_code', 1, 'https://ror.org/026gpk522 AgroBio Opava (Czechia)'),
(55044, 'https://ror.org/00fb2p217', 'no_lang_code', 1, 'https://ror.org/00fb2p217 Barco (Czechia)'),
(55045, 'https://ror.org/02vznf045', 'no_lang_code', 1, 'https://ror.org/02vznf045 BDO Audit (Czechia)'),
(55046, 'https://ror.org/027x0q215', 'no_lang_code', 1, 'https://ror.org/027x0q215 Agroeko Žamberk (Czechia)'),
(55047, 'https://ror.org/00p9cwr43', 'no_lang_code', 1, 'https://ror.org/00p9cwr43 Barekol (Czechia)');
INSERT INTO `rors` VALUES
(55048, 'https://ror.org/011m09981', 'no_lang_code', 1, 'https://ror.org/011m09981 Agroel (Czechia)'),
(55049, 'https://ror.org/00qw13455', 'no_lang_code', 1, 'https://ror.org/00qw13455 Bednar Fmt (Czechia)'),
(55050, 'https://ror.org/03brbzh91', 'no_lang_code', 1, 'https://ror.org/03brbzh91 Baroza (Czechia)'),
(55051, 'https://ror.org/05sdnkt23', 'no_lang_code', 1, 'https://ror.org/05sdnkt23 Agrofarm (Czechia)'),
(55052, 'https://ror.org/03z4thr66', 'no_lang_code', 1, 'https://ror.org/03z4thr66 Barvy a laky Hostivař (Czechia)'),
(55053, 'https://ror.org/03f196d58', 'no_lang_code', 1, 'https://ror.org/03f196d58 Agrogen (Czechia)'),
(55054, 'https://ror.org/05337tn35', 'no_lang_code', 1, 'https://ror.org/05337tn35 Beleco (Czechia)'),
(55055, 'https://ror.org/05y0h1m73', 'no_lang_code', 1, 'https://ror.org/05y0h1m73 Agrointeg (Czechia)'),
(55056, 'https://ror.org/004cqq657', 'no_lang_code', 1, 'https://ror.org/004cqq657 Bemagro (Czechia)'),
(55057, 'https://ror.org/01s1asf08', 'no_lang_code', 1, 'https://ror.org/01s1asf08 Agrokomplex Ohře (Czechia)'),
(55058, 'https://ror.org/0476y1408', 'no_lang_code', 1, 'https://ror.org/0476y1408 Basaltex (Czechia)'),
(55059, 'https://ror.org/04t6d6d70', 'no_lang_code', 1, 'https://ror.org/04t6d6d70 BASF (Czechia)'),
(55060, 'https://ror.org/00jqzcd41', 'no_lang_code', 1, 'https://ror.org/00jqzcd41 Benefit CZ (Czechia)'),
(55061, 'https://ror.org/04xs06471', 'no_lang_code', 1, 'https://ror.org/04xs06471 AgroKonzulta Žamberk (Czechia)'),
(55062, 'https://ror.org/00rknv324', 'no_lang_code', 1, 'https://ror.org/00rknv324 Agromont Vimperk (Czechia)'),
(55063, 'https://ror.org/03c5aw809', 'no_lang_code', 1, 'https://ror.org/03c5aw809 BENEKOVterm (Czechia)'),
(55064, 'https://ror.org/046xnnd03', 'no_lang_code', 1, 'https://ror.org/046xnnd03 Benet Gold (Czechia)'),
(55065, 'https://ror.org/05ffbqz77', 'no_lang_code', 1, 'https://ror.org/05ffbqz77 Bańa (Czechia)'),
(55066, 'https://ror.org/03qk9fj07', 'no_lang_code', 1, 'https://ror.org/03qk9fj07 Agropodnik Kosetice (Czechia)'),
(55067, 'https://ror.org/01vtfdn94', 'no_lang_code', 1, 'https://ror.org/01vtfdn94 Bentglass (Czechia)'),
(55068, 'https://ror.org/05gc01c65', 'no_lang_code', 1, 'https://ror.org/05gc01c65 Agroprojekce LitomyŔl (Czechia)'),
(55069, 'https://ror.org/035ppa085', 'no_lang_code', 1, 'https://ror.org/035ppa085 Bentley Czech (Czechia)'),
(55070, 'https://ror.org/022wy8e87', 'no_lang_code', 1, 'https://ror.org/022wy8e87 Bauer Technics'),
(55071, 'https://ror.org/01ns2nc58', 'no_lang_code', 1, 'https://ror.org/01ns2nc58 BENZ-HMB CZECH (Czechia)'),
(55072, 'https://ror.org/02whm6n40', 'no_lang_code', 1, 'https://ror.org/02whm6n40 Agroprojekt (Czechia)'),
(55073, 'https://ror.org/02k8hq379', 'no_lang_code', 1, 'https://ror.org/02k8hq379 Berman Group (Czechia)'),
(55074, 'https://ror.org/00be7h315', 'no_lang_code', 1, 'https://ror.org/00be7h315 Bayer (Czechia)'),
(55075, 'https://ror.org/0142b0n41', 'no_lang_code', 1, 'https://ror.org/0142b0n41 Berry Servis (Czechia)'),
(55076, 'https://ror.org/04avh2p37', 'no_lang_code', 1, 'https://ror.org/04avh2p37 AGROSAD VelkƩ Bƭlovice (Czechia)'),
(55077, 'https://ror.org/03kc1ze55', 'no_lang_code', 1, 'https://ror.org/03kc1ze55 Beskyd Fryčovice (Czechia)'),
(55078, 'https://ror.org/00wb1mn80', 'no_lang_code', 1, 'https://ror.org/00wb1mn80 Bestex (Czechia)'),
(55079, 'https://ror.org/059r9r992', 'no_lang_code', 1, 'https://ror.org/059r9r992 Agrosoft TƔbor (Czechia)'),
(55080, 'https://ror.org/02a412665', 'no_lang_code', 1, 'https://ror.org/02a412665 Beton TěŔovice (Czechia)'),
(55081, 'https://ror.org/00bx5zt27', 'no_lang_code', 1, 'https://ror.org/00bx5zt27 Bazar strojÅÆ (Czechia)'),
(55082, 'https://ror.org/0584khc13', 'no_lang_code', 1, 'https://ror.org/0584khc13 Agrospol VelkĆ” Bystřice (Czechia)'),
(55083, 'https://ror.org/012qa0c42', 'no_lang_code', 1, 'https://ror.org/012qa0c42 Betonconsult (Czechia)'),
(55084, 'https://ror.org/00bat7f70', 'no_lang_code', 1, 'https://ror.org/00bat7f70 Buzuluk (Czechia)'),
(55085, 'https://ror.org/01ej37345', 'no_lang_code', 1, 'https://ror.org/01ej37345 Betonika Spol (Czechia)'),
(55086, 'https://ror.org/0333r2w37', 'no_lang_code', 1, 'https://ror.org/0333r2w37 ŽDB DrÔtovna (Czechia)'),
(55087, 'https://ror.org/02b31q323', 'no_lang_code', 1, 'https://ror.org/02b31q323 Agrospol AgrÔrní Družstvo (Czechia)'),
(55088, 'https://ror.org/01bhb9v37', 'no_lang_code', 1, 'https://ror.org/01bhb9v37 Betotech (Czechia)'),
(55089, 'https://ror.org/01kzkqx40', 'no_lang_code', 1, 'https://ror.org/01kzkqx40 Agrostis TrƔvnƭky (Czechia)'),
(55090, 'https://ror.org/03pxb4090', 'no_lang_code', 1, 'https://ror.org/03pxb4090 Betula Pendula (Czechia)'),
(55091, 'https://ror.org/038trbs43', 'cs', 1, 'https://ror.org/038trbs43 BEZK'),
(55092, 'https://ror.org/04ekm7c52', 'no_lang_code', 1, 'https://ror.org/04ekm7c52 C Modul (Czechia)'),
(55093, 'https://ror.org/04ke7v690', 'no_lang_code', 1, 'https://ror.org/04ke7v690 C and D (Czechia)'),
(55094, 'https://ror.org/01xpnt789', 'en', 1, 'https://ror.org/01xpnt789 Czech Society of Biomechanics'),
(55095, 'https://ror.org/019fb4526', 'no_lang_code', 1, 'https://ror.org/019fb4526 BG Sys HT (Czechia)'),
(55096, 'https://ror.org/00ey19s74', 'no_lang_code', 1, 'https://ror.org/00ey19s74 Bilfinger MCE (Czechia)'),
(55097, 'https://ror.org/05x8mfj57', 'en', 1, 'https://ror.org/05x8mfj57 Czech Society for Quality ČeskĆ” Společnost pro Jakost'),
(55098, 'https://ror.org/033bq7c05', 'no_lang_code', 1, 'https://ror.org/033bq7c05 Bioconsult (Czechia)'),
(55099, 'https://ror.org/03ymdxs56', 'en', 1, 'https://ror.org/03ymdxs56 Biocom'),
(55100, 'https://ror.org/0592xtw71', 'en', 1, 'https://ror.org/0592xtw71 Czech Society Of International Law ČeskĆ” společnost pro mezinĆ”rodnĆ­ prĆ”vo'),
(55101, 'https://ror.org/048mh8s80', 'no_lang_code', 1, 'https://ror.org/048mh8s80 Calimmune (United States)'),
(55102, 'https://ror.org/02fx0j357', 'no_lang_code', 1, 'https://ror.org/02fx0j357 Continuous Acquisition and Lifecycle Support (Czechia)'),
(55103, 'https://ror.org/05kntkn59', 'no_lang_code', 1, 'https://ror.org/05kntkn59 Biocont Laboratory (Czechia)'),
(55104, 'https://ror.org/015vtg089', 'no_lang_code', 1, 'https://ror.org/015vtg089 Biodegradace (Czechia)'),
(55105, 'https://ror.org/04pjk3w61', 'no_lang_code', 1, 'https://ror.org/04pjk3w61 Can Superconductors (Czechia)'),
(55106, 'https://ror.org/0232e8038', 'no_lang_code', 1, 'https://ror.org/0232e8038 BioEnviro (Czechia)'),
(55107, 'https://ror.org/05n2b6e77', 'en', 1, 'https://ror.org/05n2b6e77 Czech Bat Conservation Society ČeskĆ” společnost pro ochranu netopýrÅÆ'),
(55108, 'https://ror.org/00y6ymy93', 'no_lang_code', 1, 'https://ror.org/00y6ymy93 Nutreco (Czechia)'),
(55109, 'https://ror.org/05r8b0p26', 'no_lang_code', 1, 'https://ror.org/05r8b0p26 Biofarm Dora (Czechia)'),
(55110, 'https://ror.org/00z3pv627', 'no_lang_code', 1, 'https://ror.org/00z3pv627 BioFish (Czechia)'),
(55111, 'https://ror.org/02szs1583', 'en', 1, 'https://ror.org/02szs1583 Czech Society for Building Law'),
(55112, 'https://ror.org/029mmrr68', 'no_lang_code', 1, 'https://ror.org/029mmrr68 Capricor Therapeutics (United States)'),
(55113, 'https://ror.org/05s7vvm14', 'no_lang_code', 1, 'https://ror.org/05s7vvm14 Bioinstitut'),
(55114, 'https://ror.org/05ah2fk15', 'cs', 1, 'https://ror.org/05ah2fk15 ČeskĆ” Spořitelna'),
(55115, 'https://ror.org/00zfhgg86', 'no_lang_code', 1, 'https://ror.org/00zfhgg86 AeskuLab (Czechia)'),
(55116, 'https://ror.org/02b2zxh20', 'no_lang_code', 1, 'https://ror.org/02b2zxh20 Biologicals (Czechia)'),
(55117, 'https://ror.org/05nrfbq13', 'en', 1, 'https://ror.org/05nrfbq13 Czech Welding Society ČeskĆ” SvÔřečskĆ” Společnost ANB'),
(55118, 'https://ror.org/01kqpfp08', 'no_lang_code', 1, 'https://ror.org/01kqpfp08 Biomedica (Czechia)'),
(55119, 'https://ror.org/02gktfy53', 'no_lang_code', 1, 'https://ror.org/02gktfy53 Tyrolit (Czechia)'),
(55120, 'https://ror.org/04t4d1t15', 'no_lang_code', 1, 'https://ror.org/04t4d1t15 Cardion (Czechia)'),
(55121, 'https://ror.org/04e3g2b28', 'no_lang_code', 1, 'https://ror.org/04e3g2b28 Biopol Paints (Czechia)'),
(55122, 'https://ror.org/047909p37', 'no_lang_code', 1, 'https://ror.org/047909p37 ČAS Service (Czechia)'),
(55123, 'https://ror.org/00tjk7247', 'no_lang_code', 1, 'https://ror.org/00tjk7247 BiopreparƔty (Czechia)'),
(55124, 'https://ror.org/00927ty10', 'no_lang_code', 1, 'https://ror.org/00927ty10 Cayman Chemical (United States)'),
(55125, 'https://ror.org/047nxq723', 'en', 1, 'https://ror.org/047nxq723 Czech Forum for Development Cooperation České fórum pro rozvojovou spoluprÔci'),
(55126, 'https://ror.org/038vzy124', 'no_lang_code', 1, 'https://ror.org/038vzy124 Bios Služby VýpočetnĆ­ Techniky (Czechia)'),
(55127, 'https://ror.org/003z52m74', 'no_lang_code', 1, 'https://ror.org/003z52m74 CCS (Czechia)'),
(55128, 'https://ror.org/02x4y2b54', 'cs', 1, 'https://ror.org/02x4y2b54 ČeskĆ© Loděnice'),
(55129, 'https://ror.org/059aa2e10', 'no_lang_code', 1, 'https://ror.org/059aa2e10 ČD InformačnĆ­ SystĆ©my (Czechia)'),
(55130, 'https://ror.org/01b2xa564', 'no_lang_code', 1, 'https://ror.org/01b2xa564 Czech Radiocommunications (Czechia) České Radiokomunikace'),
(55131, 'https://ror.org/042t14b38', 'no_lang_code', 1, 'https://ror.org/042t14b38 iBioTech (Czechia)'),
(55132, 'https://ror.org/03g34vx58', 'no_lang_code', 1, 'https://ror.org/03g34vx58 ČD Telematika (Czechia)'),
(55133, 'https://ror.org/0381s2a22', 'no_lang_code', 1, 'https://ror.org/0381s2a22 CE Traffic (Czechia)'),
(55134, 'https://ror.org/05etrt910', 'no_lang_code', 1, 'https://ror.org/05etrt910 BioVendor (Czechia)'),
(55135, 'https://ror.org/01zsbqm47', 'en', 1, 'https://ror.org/01zsbqm47 Electrotechnical Association of the Czech Republic ČeskomoravskÔ elektrotechnickÔ asociace'),
(55136, 'https://ror.org/025decp49', 'no_lang_code', 1, 'https://ror.org/025decp49 Cech Engineering (Czechia)'),
(55137, 'https://ror.org/01v6a8g28', 'en', 1, 'https://ror.org/01v6a8g28 Czech Moravian Commodity Exchange Kladno ČeskomoravskÔ komoditní burza Kladno'),
(55138, 'https://ror.org/02vmhk782', 'no_lang_code', 1, 'https://ror.org/02vmhk782 Cecho Bohumil CempĆ­rek (Czechia)'),
(55139, 'https://ror.org/00v1gsr34', 'no_lang_code', 1, 'https://ror.org/00v1gsr34 Blata (Czechia)'),
(55140, 'https://ror.org/058ypfn29', 'cs', 1, 'https://ror.org/058ypfn29 DiecĆ©ze litoměřickĆ”'),
(55141, 'https://ror.org/03ztqsz78', 'cs', 1, 'https://ror.org/03ztqsz78 ČeskomoravskĆ” Společnost ChovatelÅÆ'),
(55142, 'https://ror.org/00fkcvn38', 'no_lang_code', 1, 'https://ror.org/00fkcvn38 BlatenskĆ” ryba (Czechia)'),
(55143, 'https://ror.org/04dkxv608', 'no_lang_code', 1, 'https://ror.org/04dkxv608 Českomoravský Cement (Czechia)'),
(55144, 'https://ror.org/04sevde02', 'cs', 1, 'https://ror.org/04sevde02 Českomoravský Svaz MlékÔrenský'),
(55145, 'https://ror.org/01fpb1t36', 'no_lang_code', 1, 'https://ror.org/01fpb1t36 Blue Ray (Czechia)'),
(55146, 'https://ror.org/053tymx43', 'cs', 1, 'https://ror.org/053tymx43 ČeskoslovenskÔ Obchodní Banka'),
(55147, 'https://ror.org/018ze1g95', 'no_lang_code', 1, 'https://ror.org/018ze1g95 Good Sailors (Czechia)'),
(55148, 'https://ror.org/05m9zbc57', 'no_lang_code', 1, 'https://ror.org/05m9zbc57 ČeskoslovenskĆ” Plavba LabskĆ” (Czechia) ČeskoslovenskĆ” PlavebnĆ­ AkciovĆ” Společnost LabskĆ”'),
(55149, 'https://ror.org/00h1t5780', 'no_lang_code', 1, 'https://ror.org/00h1t5780 Bmto Group (Czechia)'),
(55150, 'https://ror.org/024xpqd61', 'no_lang_code', 1, 'https://ror.org/024xpqd61 AB Neo (Czechia)'),
(55151, 'https://ror.org/05xa8nr60', 'no_lang_code', 1, 'https://ror.org/05xa8nr60 Bodycote (Czechia)'),
(55152, 'https://ror.org/05rz5mc59', 'no_lang_code', 1, 'https://ror.org/05rz5mc59 Cellular Biomedicine Group (United States)'),
(55153, 'https://ror.org/04jtx4r25', 'no_lang_code', 1, 'https://ror.org/04jtx4r25 Bogges (Czechia)'),
(55154, 'https://ror.org/014tm9824', 'no_lang_code', 1, 'https://ror.org/014tm9824 Czechoslovak Society for Microbiology (Czechia) ČeskoslovenskĆ” společnost mikrobiologickĆ”'),
(55155, 'https://ror.org/00exwt685', 'en', 1, 'https://ror.org/00exwt685 Czechoslovak Society for Forensic Genetics ČeskoslovenskĆ© společnosti pro forenznĆ­ genetiku'),
(55156, 'https://ror.org/02zwqdg19', 'no_lang_code', 1, 'https://ror.org/02zwqdg19 Bohemian Software Consulting (Czechia)'),
(55157, 'https://ror.org/04fe4pq10', 'no_lang_code', 1, 'https://ror.org/04fe4pq10 Cemex (Czechia)'),
(55158, 'https://ror.org/05bdnn452', 'no_lang_code', 1, 'https://ror.org/05bdnn452 Bohemiaseed (Czechia)'),
(55159, 'https://ror.org/00cwx0b58', 'no_lang_code', 1, 'https://ror.org/00cwx0b58 Bohemilk (Czechia)'),
(55160, 'https://ror.org/03jnwsv20', 'no_lang_code', 1, 'https://ror.org/03jnwsv20 Československý Lloyd (Czechia)'),
(55161, 'https://ror.org/053jawq64', 'no_lang_code', 1, 'https://ror.org/053jawq64 Centaurea (Czechia)'),
(55162, 'https://ror.org/03ajhc397', 'no_lang_code', 1, 'https://ror.org/03ajhc397 BohuŔovickÔ MlékÔrna (Czechia)'),
(55163, 'https://ror.org/01ef7dt45', 'no_lang_code', 1, 'https://ror.org/01ef7dt45 Centec (Czechia)'),
(55164, 'https://ror.org/05y1gzz92', 'no_lang_code', 1, 'https://ror.org/05y1gzz92 GHH-Bonatrans (Czechia)'),
(55165, 'https://ror.org/029kacy52', 'no_lang_code', 1, 'https://ror.org/029kacy52 Český MÔk (Czechia)'),
(55166, 'https://ror.org/055tc0a50', 'no_lang_code', 1, 'https://ror.org/055tc0a50 Central European Biosystems (Czechia)'),
(55167, 'https://ror.org/048e5wt68', 'no_lang_code', 1, 'https://ror.org/048e5wt68 Bonnel Technologie (Czechia)'),
(55168, 'https://ror.org/05f6xwx81', 'en', 1, 'https://ror.org/05f6xwx81 Czech Otter Foundation Fund Český nadačnĆ­ fond pro vydru'),
(55169, 'https://ror.org/034fvq480', 'en', 1, 'https://ror.org/034fvq480 Czech Olympic Committee Český Olympijský Výbor'),
(55170, 'https://ror.org/039rjaf45', 'no_lang_code', 1, 'https://ror.org/039rjaf45 Bosch Rexroth (Czechia)'),
(55171, 'https://ror.org/013vrgb28', 'en', 1, 'https://ror.org/013vrgb28 Czech Radio Český rozhlas'),
(55172, 'https://ror.org/02zk59x78', 'en', 1, 'https://ror.org/02zk59x78 Central European Advisory Group'),
(55173, 'https://ror.org/001esq883', 'en', 1, 'https://ror.org/001esq883 Czech Fishing Union Český rybÔřský svaz'),
(55174, 'https://ror.org/03w948j83', 'en', 1, 'https://ror.org/03w948j83 Czech Statistical Office Český statistický ĆŗÅ™ad'),
(55175, 'https://ror.org/00yktj852', 'no_lang_code', 1, 'https://ror.org/00yktj852 BOVA Březnice (Czechia)'),
(55176, 'https://ror.org/0111g6367', 'no_lang_code', 1, 'https://ror.org/0111g6367 Suez (Czechia)'),
(55177, 'https://ror.org/03reeyx55', 'en', 1, 'https://ror.org/03reeyx55 Czech Beef Breeders Association Český svaz chovatelů masného skotu'),
(55178, 'https://ror.org/049hp1z35', 'no_lang_code', 1, 'https://ror.org/049hp1z35 Bratři HorĆ”kovĆ© (Czechia)'),
(55179, 'https://ror.org/018dfgy98', 'no_lang_code', 1, 'https://ror.org/018dfgy98 Centro de Calculo Igs Software (Czechia)'),
(55180, 'https://ror.org/02058sj25', 'no_lang_code', 1, 'https://ror.org/02058sj25 Brazzale Moravia (Czechia)'),
(55181, 'https://ror.org/01q9t2q68', 'cs', 1, 'https://ror.org/01q9t2q68 ČeskÔ Unie Sportu'),
(55182, 'https://ror.org/00v4fnn72', 'no_lang_code', 1, 'https://ror.org/00v4fnn72 Briklis (Czechia)'),
(55183, 'https://ror.org/02p4b8678', 'cs', 1, 'https://ror.org/02p4b8678 Český Svaz Včelařů'),
(55184, 'https://ror.org/0064vct34', 'no_lang_code', 1, 'https://ror.org/0064vct34 BrněnskĆ© VodĆ”rny a Kanalizace (Czechia)'),
(55185, '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'),
(55186, 'https://ror.org/04zksj147', 'en', 1, 'https://ror.org/04zksj147 Centre For Innovation And Development Centrum InovacĆ­ a Rozvoje'),
(55187, 'https://ror.org/00rtz3610', 'en', 1, 'https://ror.org/00rtz3610 Centre for Investment Development and Innovation Centrum investic, rozvoje a inovacĆ­'),
(55188, 'https://ror.org/00cmkfq61', 'no_lang_code', 1, 'https://ror.org/00cmkfq61 Appecastro (Czechia)'),
(55189, 'https://ror.org/01fve6x10', 'cs', 1, 'https://ror.org/01fve6x10 Centrum PasivnĆ­ho Domu'),
(55190, 'https://ror.org/01qh4pm19', 'en', 1, 'https://ror.org/01qh4pm19 Korea Meteorological Institute'),
(55191, 'https://ror.org/029y5xd69', 'cs', 1, 'https://ror.org/029y5xd69 Centrum pro Bezpečný StĆ”t'),
(55192, 'https://ror.org/02dknz829', 'no_lang_code', 1, 'https://ror.org/02dknz829 Cezea - Å lechtitelskĆ” Stanice (Czechia)'),
(55193, 'https://ror.org/04f7gm277', 'no_lang_code', 1, 'https://ror.org/04f7gm277 Junker (Czechia)'),
(55194, 'https://ror.org/02e9grz11', 'no_lang_code', 1, 'https://ror.org/02e9grz11 CIMTO (Czechia) Centrum pro informace a mechanické testovÔní obalů'),
(55195, 'https://ror.org/0586vk124', 'en', 1, 'https://ror.org/0586vk124 CGB Laboratory CGB laboratoř'),
(55196, '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Ć­'),
(55197, 'https://ror.org/03wk3qv94', 'no_lang_code', 1, 'https://ror.org/03wk3qv94 CGI (Czechia)'),
(55198, 'https://ror.org/03mw0t712', 'no_lang_code', 1, 'https://ror.org/03mw0t712 Atos (Czechia)'),
(55199, 'https://ror.org/00qks3d19', 'en', 1, 'https://ror.org/00qks3d19 Kansas Department of Commerce'),
(55200, 'https://ror.org/051p4pj36', 'no_lang_code', 1, 'https://ror.org/051p4pj36 Chaps (Czechia)'),
(55201, 'https://ror.org/02r51sa72', 'no_lang_code', 1, 'https://ror.org/02r51sa72 Charvat AXL (Czechia)'),
(55202, 'https://ror.org/00kbr7y65', 'no_lang_code', 1, 'https://ror.org/00kbr7y65 BurgSys (Czechia)'),
(55203, 'https://ror.org/04a8hmx75', 'no_lang_code', 1, 'https://ror.org/04a8hmx75 Chateau Bzenec (Czechia)'),
(55204, 'https://ror.org/05mygvq15', 'no_lang_code', 1, 'https://ror.org/05mygvq15 Sportas (Czechia)'),
(55205, 'https://ror.org/01t0sgr89', 'no_lang_code', 1, 'https://ror.org/01t0sgr89 Chemcosport (Czechia)'),
(55206, 'https://ror.org/033v4eh59', 'no_lang_code', 1, 'https://ror.org/033v4eh59 Clutex (Czechia)'),
(55207, 'https://ror.org/040hz3y05', 'no_lang_code', 1, 'https://ror.org/040hz3y05 CNC Technology (Czechia)'),
(55208, 'https://ror.org/01zchyr17', 'no_lang_code', 1, 'https://ror.org/01zchyr17 Chemispol (Czechia)'),
(55209, 'https://ror.org/00zyea842', 'no_lang_code', 1, 'https://ror.org/00zyea842 CNS (Czechia)'),
(55210, 'https://ror.org/05sgndn97', 'no_lang_code', 1, 'https://ror.org/05sgndn97 Code Creator (Czechia)'),
(55211, 'https://ror.org/03c7h8w67', 'en', 1, 'https://ror.org/03c7h8w67 Centre for the Study of Democracy and Culture Centrum pro Studium Demokracie a Kultury'),
(55212, 'https://ror.org/017dxtw95', 'en', 1, 'https://ror.org/017dxtw95 Centre for Research Development and Innovation Centrum pro výzkum, vývoj a inovace'),
(55213, 'https://ror.org/01km9ds98', 'no_lang_code', 1, 'https://ror.org/01km9ds98 Codep (Czechia)'),
(55214, 'https://ror.org/04dg1g218', 'no_lang_code', 1, 'https://ror.org/04dg1g218 Cisco Systems (Czechia)'),
(55215, 'https://ror.org/04x99ga69', 'no_lang_code', 1, 'https://ror.org/04x99ga69 Čepro (Czechia)'),
(55216, 'https://ror.org/00bjp5r54', 'no_lang_code', 1, 'https://ror.org/00bjp5r54 Color Spectrum (Czechia)'),
(55217, 'https://ror.org/05s5wce38', 'no_lang_code', 1, 'https://ror.org/05s5wce38 Chemopharma (Austria)'),
(55218, 'https://ror.org/047107639', 'no_lang_code', 1, 'https://ror.org/047107639 Cernin (Czechia)'),
(55219, 'https://ror.org/00vp7bk08', 'no_lang_code', 1, 'https://ror.org/00vp7bk08 Casale Project (Czechia)'),
(55220, 'https://ror.org/01rpma152', 'no_lang_code', 1, 'https://ror.org/01rpma152 Colorlak (Czechia)'),
(55221, 'https://ror.org/01g0s0p65', 'no_lang_code', 1, 'https://ror.org/01g0s0p65 Colosseum (Czechia)'),
(55222, 'https://ror.org/04p78q286', 'no_lang_code', 1, 'https://ror.org/04p78q286 Colsys (Czechia)'),
(55223, 'https://ror.org/054hgcr68', 'no_lang_code', 1, 'https://ror.org/054hgcr68 Chemoprojekt (Czechia)'),
(55224, 'https://ror.org/056vxkd58', 'en', 1, 'https://ror.org/056vxkd58 CzechTrade ČeskÔ Agentura na Podporu Obchodu'),
(55225, 'https://ror.org/00qcg1942', 'no_lang_code', 1, 'https://ror.org/00qcg1942 CHemProtect (Czechia)'),
(55226, 'https://ror.org/054746w96', 'no_lang_code', 1, 'https://ror.org/054746w96 Columna Centrum'),
(55227, 'https://ror.org/01ss91v48', 'no_lang_code', 1, 'https://ror.org/01ss91v48 Com-Sys Trade (Czechia)'),
(55228, 'https://ror.org/03f6vnx95', 'no_lang_code', 1, 'https://ror.org/03f6vnx95 Comet System (Czechia)'),
(55229, 'https://ror.org/00tqvk397', 'en', 1, 'https://ror.org/00tqvk397 Czech Association of Fire Officers ČeskĆ” Asociace Hasičských DÅÆstojnĆ­kÅÆ'),
(55230, 'https://ror.org/00rq99817', 'no_lang_code', 1, 'https://ror.org/00rq99817 ChipInvest (Czechia)'),
(55231, 'https://ror.org/04d23mg64', 'no_lang_code', 1, 'https://ror.org/04d23mg64 Chirana (Czechia)'),
(55232, 'https://ror.org/03h43ej82', 'no_lang_code', 1, 'https://ror.org/03h43ej82 Comimpex (Czechia)'),
(55233, 'https://ror.org/04051ah92', 'cs', 1, 'https://ror.org/04051ah92 ČeskÔ Asociace Pedagogického Výzkumu'),
(55234, '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'),
(55235, 'https://ror.org/0293b6371', 'no_lang_code', 1, 'https://ror.org/0293b6371 Chirastar KDT (Czechia)'),
(55236, 'https://ror.org/04kkref88', 'en', 1, 'https://ror.org/04kkref88 Czech ICT Alliance ČeskÔ asociace pro IT služby'),
(55237, 'https://ror.org/05smkqj74', 'no_lang_code', 1, 'https://ror.org/05smkqj74 Compact Bohemia (Czechia)'),
(55238, 'https://ror.org/01kmxmj87', 'no_lang_code', 1, 'https://ror.org/01kmxmj87 Brantner Walter (Czechia)'),
(55239, 'https://ror.org/02w29b595', 'no_lang_code', 1, 'https://ror.org/02w29b595 Chmelarstvi Druzstvo Žatec (Czechia)'),
(55240, 'https://ror.org/04jq2dg02', 'cs', 1, 'https://ror.org/04jq2dg02 ČeskÔ Asociace Steeplachase'),
(55241, 'https://ror.org/05ef3yq64', 'cs', 1, 'https://ror.org/05ef3yq64 Academia NakladatelstvĆ­'),
(55242, 'https://ror.org/031zns335', 'no_lang_code', 1, 'https://ror.org/031zns335 Compas Automatizace (Czechia)'),
(55243, 'https://ror.org/02t98da76', 'en', 1, 'https://ror.org/02t98da76 Czech Biogas Association ČeskÔ BioplynovÔ Asociace'),
(55244, 'https://ror.org/03apfzf38', 'no_lang_code', 1, 'https://ror.org/03apfzf38 ChoceňskÔ MlékÔrn (Czechia)'),
(55245, 'https://ror.org/020vrbx29', 'no_lang_code', 1, 'https://ror.org/020vrbx29 F.P.S. Arco (Czechia)'),
(55246, 'https://ror.org/037ax5f60', 'no_lang_code', 1, 'https://ror.org/037ax5f60 Breeding Cooperative Impuls (Czechia) Chovatelské Družstvo Impuls'),
(55247, 'https://ror.org/01zj3x449', 'no_lang_code', 1, 'https://ror.org/01zj3x449 Chovservis (Czechia)'),
(55248, 'https://ror.org/014bj9h93', 'cs', 1, 'https://ror.org/014bj9h93 ČeskÔ EnergetickÔ Asociace'),
(55249, 'https://ror.org/05j45ps30', 'no_lang_code', 1, 'https://ror.org/05j45ps30 Compotech (Czechia)'),
(55250, 'https://ror.org/000kmds53', 'no_lang_code', 1, 'https://ror.org/000kmds53 Chryso (United States)'),
(55251, 'https://ror.org/01h724050', 'no_lang_code', 1, 'https://ror.org/01h724050 CI2'),
(55252, 'https://ror.org/010zgd654', 'cs', 1, 'https://ror.org/010zgd654 ČeskĆ” GeografickĆ” Společnost'),
(55253, 'https://ror.org/01dhtjr14', 'no_lang_code', 1, 'https://ror.org/01dhtjr14 Composite Components (Czechia)'),
(55254, 'https://ror.org/05s7bjk78', 'no_lang_code', 1, 'https://ror.org/05s7bjk78 Cicero (Czechia)'),
(55255, 'https://ror.org/0308hqt67', 'no_lang_code', 1, 'https://ror.org/0308hqt67 Compuplast International (Czechia)'),
(55256, 'https://ror.org/00f4jy747', 'no_lang_code', 1, 'https://ror.org/00f4jy747 CID International (Czechia)'),
(55257, 'https://ror.org/05q6e7g57', 'no_lang_code', 1, 'https://ror.org/05q6e7g57 Cidem Hranice (Czechia)'),
(55258, 'https://ror.org/02pb4ss95', 'cs', 1, 'https://ror.org/02pb4ss95 ČeskÔ Hlava'),
(55259, 'https://ror.org/05t395q46', 'no_lang_code', 1, 'https://ror.org/05t395q46 CĆ­gler Software (Czechia)'),
(55260, 'https://ror.org/0497wpq23', 'no_lang_code', 1, 'https://ror.org/0497wpq23 ČIP Plus (Czechia)'),
(55261, 'https://ror.org/046nvcx94', 'cs', 1, 'https://ror.org/046nvcx94 ČeskĆ” HutnickĆ” Společnost'),
(55262, 'https://ror.org/02445zq85', 'no_lang_code', 1, 'https://ror.org/02445zq85 Tec 21'),
(55263, 'https://ror.org/04bag3882', 'no_lang_code', 1, 'https://ror.org/04bag3882 CIUR (Czechia)'),
(55264, 'https://ror.org/00dcm7m32', 'no_lang_code', 1, 'https://ror.org/00dcm7m32 Civitas per Populi'),
(55265, 'https://ror.org/031mphy63', 'no_lang_code', 1, 'https://ror.org/031mphy63 Comtes DFM (Czechia)'),
(55266, 'https://ror.org/05de2f050', 'no_lang_code', 1, 'https://ror.org/05de2f050 ČKD Blansko (Czechia)'),
(55267, 'https://ror.org/02efjfe53', 'cs', 1, 'https://ror.org/02efjfe53 ČeskĆ” KinantropologickĆ” Společnost'),
(55268, 'https://ror.org/0252gcq98', 'no_lang_code', 1, 'https://ror.org/0252gcq98 Consultest (Czechia)'),
(55269, '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ě'),
(55270, 'https://ror.org/01s4ptg67', 'no_lang_code', 1, 'https://ror.org/01s4ptg67 Clasic (Czechia)'),
(55271, 'https://ror.org/0453b8r94', 'cs', 1, 'https://ror.org/0453b8r94 ČeskÔ Krajina'),
(55272, 'https://ror.org/026xhpy07', 'no_lang_code', 1, 'https://ror.org/026xhpy07 Consulting Company Novasoft (Czechia)'),
(55273, 'https://ror.org/03w38en78', 'no_lang_code', 1, 'https://ror.org/03w38en78 Classic Oil (Czechia)'),
(55274, 'https://ror.org/01gdbxe81', 'en', 1, 'https://ror.org/01gdbxe81 Czech Medical Chamber ČeskĆ” lĆ©kařskĆ” komora'),
(55275, 'https://ror.org/05x1f4x57', 'no_lang_code', 1, 'https://ror.org/05x1f4x57 Consygen CZ (Czechia)'),
(55276, 'https://ror.org/009g2k883', 'no_lang_code', 1, 'https://ror.org/009g2k883 Cleantex (Czechia)'),
(55277, 'https://ror.org/04vmsv961', 'cs', 1, 'https://ror.org/04vmsv961 ČeskÔ MembrÔnovÔ Platforma'),
(55278, 'https://ror.org/037fjvr70', 'no_lang_code', 1, 'https://ror.org/037fjvr70 CleverMaps (Czechia)'),
(55279, 'https://ror.org/04t5tgf48', 'no_lang_code', 1, 'https://ror.org/04t5tgf48 Conte Energy (Czechia)'),
(55280, 'https://ror.org/05mtsfd08', 'no_lang_code', 1, 'https://ror.org/05mtsfd08 CleverTech (Czechia)'),
(55281, 'https://ror.org/051mfdq62', 'cs', 1, 'https://ror.org/051mfdq62 ČeskĆ” NĆ”rodopisnĆ” Společnost'),
(55282, 'https://ror.org/02dw1m470', 'no_lang_code', 1, 'https://ror.org/02dw1m470 Conteg (Czechia)'),
(55283, 'https://ror.org/04jcq5y30', 'no_lang_code', 1, 'https://ror.org/04jcq5y30 Denas Color (Czechia)'),
(55284, 'https://ror.org/035kbp941', 'no_lang_code', 1, 'https://ror.org/035kbp941 Dendera (Czechia)'),
(55285, 'https://ror.org/01a1e7r70', 'no_lang_code', 1, 'https://ror.org/01a1e7r70 Dendria (Czechia)'),
(55286, 'https://ror.org/02b0bmh39', 'no_lang_code', 1, 'https://ror.org/02b0bmh39 HutnickĆ” zaměstnaneckĆ” pojiŔńovna ČeskĆ” PrÅÆmyslovĆ” ZdravotnĆ­ PojiŔńovna (Czechia)'),
(55287, 'https://ror.org/00meg4816', 'no_lang_code', 1, 'https://ror.org/00meg4816 Veolia (Czechia)'),
(55288, 'https://ror.org/043tgen92', 'no_lang_code', 1, 'https://ror.org/043tgen92 Coprosys-LVI (Czechia)'),
(55289, 'https://ror.org/015j7rx80', 'no_lang_code', 1, 'https://ror.org/015j7rx80 Ders (Czechia)'),
(55290, 'https://ror.org/00yy4rd30', 'no_lang_code', 1, 'https://ror.org/00yy4rd30 Descent (Czechia)'),
(55291, 'https://ror.org/00g3hdg93', 'en', 1, 'https://ror.org/00g3hdg93 KancelÔř PoslaneckĆ© sněmovny Office of the Chamber of Deputies'),
(55292, 'https://ror.org/05chynf20', 'no_lang_code', 1, 'https://ror.org/05chynf20 Designfoods (Czechia)'),
(55293, 'https://ror.org/05whaqa79', 'cs', 1, 'https://ror.org/05whaqa79 ČeskÔ RozvojovÔ Agentura'),
(55294, 'https://ror.org/05ypkce93', 'no_lang_code', 1, 'https://ror.org/05ypkce93 Cortis Consulting'),
(55295, 'https://ror.org/019w0cd69', 'no_lang_code', 1, 'https://ror.org/019w0cd69 Despa ok (Czechia)'),
(55296, 'https://ror.org/05fy92604', 'no_lang_code', 1, 'https://ror.org/05fy92604 Destrux (Czechia)'),
(55297, 'https://ror.org/00pg1wz48', 'no_lang_code', 1, 'https://ror.org/00pg1wz48 Detas (Czechia)'),
(55298, 'https://ror.org/046q5nj25', 'cs', 1, 'https://ror.org/046q5nj25 ČeskĆ” SpeleologickĆ” Společnost'),
(55299, 'https://ror.org/020d0v548', 'no_lang_code', 1, 'https://ror.org/020d0v548 Crea Hydro&Energy (Czechia)'),
(55300, 'https://ror.org/02jmje486', 'cs', 1, 'https://ror.org/02jmje486 DětskĆ© Centrum Paprsek'),
(55301, 'https://ror.org/05y0t3w48', 'no_lang_code', 1, 'https://ror.org/05y0t3w48 Creative Connections (Czechia)'),
(55302, 'https://ror.org/0063kr105', 'cs', 1, 'https://ror.org/0063kr105 DětskĆ© KrizovĆ© Centrum'),
(55303, 'https://ror.org/03zdztk57', 'no_lang_code', 1, 'https://ror.org/03zdztk57 Czech Credit Bureau (Czechia)'),
(55304, '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'),
(55305, 'https://ror.org/026qmmw74', 'cs', 1, 'https://ror.org/026qmmw74 ČeskĆ” Společnost ChemickĆ©ho InženýrstvĆ­'),
(55306, 'https://ror.org/044jgn488', 'no_lang_code', 1, 'https://ror.org/044jgn488 DevCom (Czechia)'),
(55307, 'https://ror.org/011fc5j67', 'no_lang_code', 1, 'https://ror.org/011fc5j67 Augur Consulting (Czechia)'),
(55308, 'https://ror.org/00wac5p69', 'no_lang_code', 1, 'https://ror.org/00wac5p69 Devimex (Czechia)'),
(55309, 'https://ror.org/00r01p496', 'no_lang_code', 1, 'https://ror.org/00r01p496 Crystalex (Czechia)'),
(55310, 'https://ror.org/02af9ge32', 'no_lang_code', 1, 'https://ror.org/02af9ge32 CS Plasting (Czechia)'),
(55311, 'https://ror.org/03q8z7066', 'no_lang_code', 1, 'https://ror.org/03q8z7066 DFC Design (Czechia)'),
(55312, 'https://ror.org/0405wn630', 'cs', 1, 'https://ror.org/0405wn630 ČeskĆ” Společnost EntomologickĆ”'),
(55313, 'https://ror.org/03yjc5j10', 'no_lang_code', 1, 'https://ror.org/03yjc5j10 CS Soft (Czechia)'),
(55314, 'https://ror.org/008jcqh21', 'no_lang_code', 1, 'https://ror.org/008jcqh21 CS-Beton (Czechia)'),
(55315, 'https://ror.org/00xb8n835', 'no_lang_code', 1, 'https://ror.org/00xb8n835 CS-Project (Czechia)'),
(55316, 'https://ror.org/037d48q80', 'en', 1, 'https://ror.org/037d48q80 Czech Society of Experimental Plant Biology ČeskĆ” společnost experimentĆ”lnĆ­ biologie rostlin'),
(55317, 'https://ror.org/048fh6562', 'en', 1, 'https://ror.org/048fh6562 Czech Society for Histo and Cytochemistry ČeskĆ” společnost histo-a cytochemickĆ”'),
(55318, 'https://ror.org/03b6b6988', 'no_lang_code', 1, 'https://ror.org/03b6b6988 Diamo (Czechia)'),
(55319, 'https://ror.org/00bn3c948', 'no_lang_code', 1, 'https://ror.org/00bn3c948 Czech Space Research Centre (Czechia)'),
(55320, 'https://ror.org/01efe3143', 'no_lang_code', 1, 'https://ror.org/01efe3143 DT VýhybkÔrna a Strojírna (Czechia)'),
(55321, 'https://ror.org/00svnts80', 'no_lang_code', 1, 'https://ror.org/00svnts80 DTO (Czechia)'),
(55322, 'https://ror.org/010nah411', 'no_lang_code', 1, 'https://ror.org/010nah411 DTZ (Czechia)'),
(55323, 'https://ror.org/036ef8v07', 'no_lang_code', 1, 'https://ror.org/036ef8v07 Cubespace (Czechia)'),
(55324, 'https://ror.org/03fp7s507', 'cs', 1, 'https://ror.org/03fp7s507 ArmƔda SpƔsy'),
(55325, 'https://ror.org/03gd5r229', 'no_lang_code', 1, 'https://ror.org/03gd5r229 Grupo Dibaq (Spain)'),
(55326, 'https://ror.org/043290w89', 'no_lang_code', 1, 'https://ror.org/043290w89 CVP Galvanika (Czechia)'),
(55327, 'https://ror.org/01wrq2g34', 'no_lang_code', 1, 'https://ror.org/01wrq2g34 DvořÔk (Czechia)'),
(55328, 'https://ror.org/04r6z2s60', 'no_lang_code', 1, 'https://ror.org/04r6z2s60 Dinel (Czechia)'),
(55329, 'https://ror.org/0091az632', 'no_lang_code', 1, 'https://ror.org/0091az632 Dynamic Future (Czechia)'),
(55330, 'https://ror.org/05jpnvr67', 'no_lang_code', 1, 'https://ror.org/05jpnvr67 Unicorn (Czechia)'),
(55331, 'https://ror.org/022580115', 'no_lang_code', 1, 'https://ror.org/022580115 Dynex (Czechia)'),
(55332, 'https://ror.org/04bm96s59', 'no_lang_code', 1, 'https://ror.org/04bm96s59 CZ Bijo (Czechia)'),
(55333, 'https://ror.org/01ct81870', 'cs', 1, 'https://ror.org/01ct81870 CZ Biom'),
(55334, 'https://ror.org/01aaykq16', 'no_lang_code', 1, 'https://ror.org/01aaykq16 Diram (Czechia)'),
(55335, 'https://ror.org/012et2c70', 'no_lang_code', 1, 'https://ror.org/012et2c70 CZ Fruit (Czechia)'),
(55336, 'https://ror.org/03g0bh391', 'no_lang_code', 1, 'https://ror.org/03g0bh391 Disam RT (Czechia)'),
(55337, 'https://ror.org/017fxz195', 'no_lang_code', 1, 'https://ror.org/017fxz195 Dyntec (Czechia)'),
(55338, 'https://ror.org/019dgfy14', 'no_lang_code', 1, 'https://ror.org/019dgfy14 Dystiff (Czechia)'),
(55339, 'https://ror.org/03g1xh439', 'no_lang_code', 1, 'https://ror.org/03g1xh439 ESL (Czechia)'),
(55340, 'https://ror.org/03fqv7d77', 'no_lang_code', 1, 'https://ror.org/03fqv7d77 Dispechem (Czechia)'),
(55341, 'https://ror.org/00ez64n04', 'no_lang_code', 1, 'https://ror.org/00ez64n04 Ditana (Czechia)'),
(55342, 'https://ror.org/008je7023', 'no_lang_code', 1, 'https://ror.org/008je7023 E therm TZ (Czechia)'),
(55343, 'https://ror.org/05a2qqv55', 'no_lang_code', 1, 'https://ror.org/05a2qqv55 DIZ Bohemia (Czechia)'),
(55344, 'https://ror.org/00k7st669', 'no_lang_code', 1, 'https://ror.org/00k7st669 Czech Aeroholding (Czechia) Český Aeroholding'),
(55345, 'https://ror.org/055m4g098', 'no_lang_code', 1, 'https://ror.org/055m4g098 E and H Services (Czechia)'),
(55346, 'https://ror.org/00138a023', 'no_lang_code', 1, 'https://ror.org/00138a023 E4t Electronics for Transportation (Czechia)'),
(55347, 'https://ror.org/04wjdbs69', 'no_lang_code', 1, 'https://ror.org/04wjdbs69 Czech Industry Group (Czechia)'),
(55348, 'https://ror.org/05nrryz05', 'no_lang_code', 1, 'https://ror.org/05nrryz05 Eago Systems (Czechia)'),
(55349, 'https://ror.org/03gjtay97', 'no_lang_code', 1, 'https://ror.org/03gjtay97 DLF Trifolium Hladké Životice (Czechia)'),
(55350, 'https://ror.org/010rabn19', 'no_lang_code', 1, 'https://ror.org/010rabn19 Electronic Control and Measurement (Czechia)'),
(55351, 'https://ror.org/02syz0429', 'no_lang_code', 1, 'https://ror.org/02syz0429 Eco Building Brno (Czechia)'),
(55352, 'https://ror.org/00qp6gv29', 'no_lang_code', 1, 'https://ror.org/00qp6gv29 ECO (Czechia)'),
(55353, 'https://ror.org/035rg2c54', 'no_lang_code', 1, 'https://ror.org/035rg2c54 ECO Management (Czechia)'),
(55354, 'https://ror.org/051bbpq39', 'no_lang_code', 1, 'https://ror.org/051bbpq39 Czech Machines (Czechia)'),
(55355, 'https://ror.org/04d730y78', 'cs', 1, 'https://ror.org/04d730y78 Domov Na JaroÅ”ce, PříspěvkovĆ” Organizace'),
(55356, 'https://ror.org/05xqftd54', 'no_lang_code', 1, 'https://ror.org/05xqftd54 Ecofer (Czechia)'),
(55357, 'https://ror.org/014we6j04', 'no_lang_code', 1, 'https://ror.org/014we6j04 Ecofuel Laboratories (Czechia)'),
(55358, 'https://ror.org/02bx6dk74', 'no_lang_code', 1, 'https://ror.org/02bx6dk74 Orbital 2 (Czechia)'),
(55359, 'https://ror.org/0126c8978', 'no_lang_code', 1, 'https://ror.org/0126c8978 Ecolab Znojmo (Czechia)'),
(55360, 'https://ror.org/01edvza61', 'no_lang_code', 1, 'https://ror.org/01edvza61 DopravnĆ­ akademie (Czechia)'),
(55361, 'https://ror.org/00qdgd523', 'no_lang_code', 1, 'https://ror.org/00qdgd523 Czech Precision Forge (Czechia)'),
(55362, 'https://ror.org/032ap5553', 'no_lang_code', 1, 'https://ror.org/032ap5553 Ecological Consulting (Czechia)'),
(55363, 'https://ror.org/008kw6k79', 'no_lang_code', 1, 'https://ror.org/008kw6k79 Ecoprogress (Czechia)'),
(55364, 'https://ror.org/050ha9v33', 'en', 1, 'https://ror.org/050ha9v33 Czech River Restoration Centre'),
(55365, 'https://ror.org/03hn7q415', 'no_lang_code', 1, 'https://ror.org/03hn7q415 Ecoprotect (Czechia)'),
(55366, 'https://ror.org/04sh8kd50', 'cs', 1, 'https://ror.org/04sh8kd50 DopravnĆ­ Podnik Hlavniho Mesta Prahy'),
(55367, 'https://ror.org/031xey008', 'no_lang_code', 1, 'https://ror.org/031xey008 Ecowasteenergy (Czechia)'),
(55368, 'https://ror.org/00qdrdx13', 'no_lang_code', 1, 'https://ror.org/00qdrdx13 Ecosoft (Czechia)'),
(55369, 'https://ror.org/04mhdyd20', 'no_lang_code', 1, 'https://ror.org/04mhdyd20 DopravnĆ­ podnik Karlovy Vary (Czechia)'),
(55370, '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'),
(55371, 'https://ror.org/045g2fs27', 'no_lang_code', 1, 'https://ror.org/045g2fs27 Ecotex (Czechia)'),
(55372, 'https://ror.org/04k4tkg23', 'no_lang_code', 1, 'https://ror.org/04k4tkg23 DSK (Czechia)'),
(55373, 'https://ror.org/03088af90', 'no_lang_code', 1, 'https://ror.org/03088af90 D3Soft (Czechia)'),
(55374, 'https://ror.org/00efyhw94', 'cs', 1, 'https://ror.org/00efyhw94 Editio JanĆ”Äek'),
(55375, 'https://ror.org/04m3vtn72', 'no_lang_code', 1, 'https://ror.org/04m3vtn72 Dopravnƭ podnik města ƚstƭ nad Labem (Czechia)'),
(55376, 'https://ror.org/05wrfa149', 'no_lang_code', 1, 'https://ror.org/05wrfa149 Dako Brno (Czechia)'),
(55377, 'https://ror.org/0190tnk59', 'no_lang_code', 1, 'https://ror.org/0190tnk59 DopravnĆ­ Podnik Ostrava Transport Company Ostrava (Czechia)'),
(55378, 'https://ror.org/01705m837', 'no_lang_code', 1, 'https://ror.org/01705m837 Dako-CZ (Czechia)'),
(55379, 'https://ror.org/03w4fjd93', 'no_lang_code', 1, 'https://ror.org/03w4fjd93 Edscha (Czechia)'),
(55380, 'https://ror.org/00nedks60', 'en', 1, 'https://ror.org/00nedks60 Wuxi Municipal Health Bureau ę— é””åø‚å«č®”å§”'),
(55381, 'https://ror.org/0206pct05', 'no_lang_code', 1, 'https://ror.org/0206pct05 Dopravoprojekt (Czechia)'),
(55382, 'https://ror.org/028mhjw69', 'no_lang_code', 1, 'https://ror.org/028mhjw69 Eduard Model Accessories (Czechia)'),
(55383, 'https://ror.org/04jan1235', 'no_lang_code', 1, 'https://ror.org/04jan1235 DĆ”lničnĆ­ Stavby Praha (Czechia)'),
(55384, 'https://ror.org/02z9x0k36', 'no_lang_code', 1, 'https://ror.org/02z9x0k36 Dosing - Dopravoprojekt Brno Group (Czechia)'),
(55385, 'https://ror.org/01sjfkd19', 'no_lang_code', 1, 'https://ror.org/01sjfkd19 EG Expert (Czechia)'),
(55386, 'https://ror.org/00b8vr735', 'no_lang_code', 1, 'https://ror.org/00b8vr735 Danone (Czechia)'),
(55387, 'https://ror.org/00jw9yq80', 'no_lang_code', 1, 'https://ror.org/00jw9yq80 Dosting (Czechia)'),
(55388, 'https://ror.org/02xem8119', 'no_lang_code', 1, 'https://ror.org/02xem8119 EGE (Czechia)'),
(55389, 'https://ror.org/0554h3h71', 'no_lang_code', 1, 'https://ror.org/0554h3h71 Ego Zlin (Czechia)'),
(55390, 'https://ror.org/00kcmem28', 'no_lang_code', 1, 'https://ror.org/00kcmem28 DAP Services (Czechia)'),
(55391, 'https://ror.org/052dd1f02', 'no_lang_code', 1, 'https://ror.org/052dd1f02 EGÚ Brno (Czechia)'),
(55392, 'https://ror.org/04jen3t84', 'no_lang_code', 1, 'https://ror.org/04jen3t84 Dasfos (Czechia)'),
(55393, 'https://ror.org/04jkk5b46', 'no_lang_code', 1, 'https://ror.org/04jkk5b46 Tech Aid Czech Branch (Czechia)'),
(55394, 'https://ror.org/04qyktt41', 'no_lang_code', 1, 'https://ror.org/04qyktt41 Datacon (Czechia)'),
(55395, 'https://ror.org/02ja04815', 'no_lang_code', 1, 'https://ror.org/02ja04815 Druchema (Czechia)'),
(55396, 'https://ror.org/0234nw002', 'no_lang_code', 1, 'https://ror.org/0234nw002 DSA (Czechia)'),
(55397, 'https://ror.org/01y7tp893', 'no_lang_code', 1, 'https://ror.org/01y7tp893 EGÚ Praha Engineering (Czechia)'),
(55398, 'https://ror.org/04pkthn83', 'no_lang_code', 1, 'https://ror.org/04pkthn83 Bech Akku Power Batteries (Czechia)'),
(55399, 'https://ror.org/01ht9nq84', 'no_lang_code', 1, 'https://ror.org/01ht9nq84 Dsd - DostƔl (Czechia)'),
(55400, 'https://ror.org/01cmyeg51', 'no_lang_code', 1, 'https://ror.org/01cmyeg51 ENBRA (Czechia)'),
(55401, 'https://ror.org/0402z8r91', 'no_lang_code', 1, 'https://ror.org/0402z8r91 Dega (Czechia)'),
(55402, 'https://ror.org/04k71ka82', 'no_lang_code', 1, 'https://ror.org/04k71ka82 EkoBio (Czechia)'),
(55403, 'https://ror.org/02czagv77', 'no_lang_code', 1, 'https://ror.org/02czagv77 SusChem České Technologické Platformy pro Udržitelnou Chemii'),
(55404, 'https://ror.org/01stqh938', 'no_lang_code', 1, 'https://ror.org/01stqh938 Eko-Kom (Czechia)'),
(55405, 'https://ror.org/011s5g254', 'no_lang_code', 1, 'https://ror.org/011s5g254 DEL (Czechia)'),
(55406, 'https://ror.org/05xj6ej51', 'cs', 1, 'https://ror.org/05xj6ej51 EnergetickĆ© Třebƭčsko'),
(55407, 'https://ror.org/047mjng73', 'no_lang_code', 1, 'https://ror.org/047mjng73 Delacon Biotechnik (Czechia)'),
(55408, 'https://ror.org/00qmpe609', 'no_lang_code', 1, 'https://ror.org/00qmpe609 Energocentrum (Czechia)'),
(55409, 'https://ror.org/05r434x22', 'no_lang_code', 1, 'https://ror.org/05r434x22 Ekogalva (Czechia)'),
(55410, 'https://ror.org/03jtbaq34', 'no_lang_code', 1, 'https://ror.org/03jtbaq34 F Air (Czechia)'),
(55411, 'https://ror.org/03p9qk185', 'no_lang_code', 1, 'https://ror.org/03p9qk185 FMP (Czechia)'),
(55412, 'https://ror.org/039azq733', 'no_lang_code', 1, 'https://ror.org/039azq733 Ekogroup Czech (Czechia)'),
(55413, 'https://ror.org/005wff754', 'no_lang_code', 1, 'https://ror.org/005wff754 Focam (Czechia)'),
(55414, 'https://ror.org/01b3d1c61', 'no_lang_code', 1, 'https://ror.org/01b3d1c61 Energoservis (Czechia)'),
(55415, 'https://ror.org/01s5pxv91', 'no_lang_code', 1, 'https://ror.org/01s5pxv91 Ekohydrogeo Žitný (Czechia)'),
(55416, 'https://ror.org/03jmp7p62', 'no_lang_code', 1, 'https://ror.org/03jmp7p62 FSC Bezpečnostnƭ Poradenstvƭ (Czechia)'),
(55417, 'https://ror.org/00x1wf347', 'no_lang_code', 1, 'https://ror.org/00x1wf347 Ekoles Projekt (Czechia)'),
(55418, 'https://ror.org/0204cak81', 'no_lang_code', 1, 'https://ror.org/0204cak81 Energostav (Czechia)'),
(55419, 'https://ror.org/04fkj8104', 'no_lang_code', 1, 'https://ror.org/04fkj8104 Fabconworks (Czechia)'),
(55420, 'https://ror.org/01zj9vv73', 'no_lang_code', 1, 'https://ror.org/01zj9vv73 Factorio Solutions (Czechia)'),
(55421, 'https://ror.org/01mwf3284', 'no_lang_code', 1, 'https://ror.org/01mwf3284 FaF Top-Color (Czechia)'),
(55422, 'https://ror.org/041kcnq11', 'no_lang_code', 1, 'https://ror.org/041kcnq11 Ekomor (Czechia)'),
(55423, 'https://ror.org/05vm6v844', 'no_lang_code', 1, 'https://ror.org/05vm6v844 Entracon (Czechia)'),
(55424, 'https://ror.org/05bs0r528', 'no_lang_code', 1, 'https://ror.org/05bs0r528 Ekopanely Servis (Czechia)'),
(55425, 'https://ror.org/00h59gj21', 'no_lang_code', 1, 'https://ror.org/00h59gj21 Faiveley Transport (Czechia)'),
(55426, 'https://ror.org/04j1khh38', 'no_lang_code', 1, 'https://ror.org/04j1khh38 Ekomont Litoměřice (Czechia)'),
(55427, 'https://ror.org/052161p79', 'no_lang_code', 1, 'https://ror.org/052161p79 Ekoplant (Slovakia)'),
(55428, 'https://ror.org/00h1tez17', 'no_lang_code', 1, 'https://ror.org/00h1tez17 Ekoport'),
(55429, 'https://ror.org/04szn7861', 'no_lang_code', 1, 'https://ror.org/04szn7861 ENVI (Czechia)'),
(55430, 'https://ror.org/04pzwgb48', 'no_lang_code', 1, 'https://ror.org/04pzwgb48 Fapros družstvo (Czechia)'),
(55431, 'https://ror.org/00m1w1e65', 'no_lang_code', 1, 'https://ror.org/00m1w1e65 Envi-Pur (Czechia)'),
(55432, 'https://ror.org/03yvmmw58', 'no_lang_code', 1, 'https://ror.org/03yvmmw58 Farma Žiro (Czechia)'),
(55433, 'https://ror.org/03tb0zs04', 'no_lang_code', 1, 'https://ror.org/03tb0zs04 Ekopron Metal (Czechia)'),
(55434, 'https://ror.org/05x9m4736', 'no_lang_code', 1, 'https://ror.org/05x9m4736 Farmak Moravia (Czechia)'),
(55435, 'https://ror.org/012hjj416', 'no_lang_code', 1, 'https://ror.org/012hjj416 Farmak (Czechia)'),
(55436, 'https://ror.org/00hhge266', 'no_lang_code', 1, 'https://ror.org/00hhge266 Agrofert (Czechia)'),
(55437, 'https://ror.org/036p1z483', 'no_lang_code', 1, 'https://ror.org/036p1z483 Enviconsult (Slovakia)'),
(55438, 'https://ror.org/05dyyxv94', 'no_lang_code', 1, 'https://ror.org/05dyyxv94 Ekostavby Brno (Czechia)'),
(55439, 'https://ror.org/05r866132', 'no_lang_code', 1, 'https://ror.org/05r866132 Ekosystem (Czechia)'),
(55440, 'https://ror.org/023b5vx71', 'no_lang_code', 1, 'https://ror.org/023b5vx71 Envipor (Czechia)'),
(55441, 'https://ror.org/05cpjt441', 'no_lang_code', 1, 'https://ror.org/05cpjt441 FEM Consulting (Czechia)'),
(55442, 'https://ror.org/02dbdb897', 'no_lang_code', 1, 'https://ror.org/02dbdb897 Ekotechnika (Czechia)'),
(55443, 'https://ror.org/046sbgc47', 'cs', 1, 'https://ror.org/046sbgc47 Envirex'),
(55444, 'https://ror.org/02p0kfv62', 'no_lang_code', 1, 'https://ror.org/02p0kfv62 Ekozink Praha (Czechia)'),
(55445, 'https://ror.org/03tyavm03', 'no_lang_code', 1, 'https://ror.org/03tyavm03 Envirmine (Czechia)'),
(55446, 'https://ror.org/02w3svm50', 'no_lang_code', 1, 'https://ror.org/02w3svm50 Femma (Czechia)'),
(55447, 'https://ror.org/00kxjhp06', 'no_lang_code', 1, 'https://ror.org/00kxjhp06 Feramat Cybernetics (Czechia)'),
(55448, 'https://ror.org/04605x106', 'no_lang_code', 1, 'https://ror.org/04605x106 Envirmine-Energo (Czechia)'),
(55449, 'https://ror.org/05k7znz17', 'no_lang_code', 1, 'https://ror.org/05k7znz17 Elcom (Czechia)'),
(55450, 'https://ror.org/04j9fty21', 'no_lang_code', 1, 'https://ror.org/04j9fty21 Elektrometall (Czechia)'),
(55451, 'https://ror.org/04c4xmn37', 'no_lang_code', 1, 'https://ror.org/04c4xmn37 Fermat (Czechia)'),
(55452, 'https://ror.org/04mmccm14', 'no_lang_code', 1, 'https://ror.org/04mmccm14 Elfe (Czechia)'),
(55453, 'https://ror.org/002ek1q97', 'no_lang_code', 1, 'https://ror.org/002ek1q97 Elisa Development (Czechia)'),
(55454, 'https://ror.org/03hscv116', 'no_lang_code', 1, 'https://ror.org/03hscv116 ENVItech Bohemia (Czechia)'),
(55455, 'https://ror.org/04s2v1839', 'no_lang_code', 1, 'https://ror.org/04s2v1839 Elisabeth Pharmacon (Czechia)'),
(55456, 'https://ror.org/054nzx465', 'no_lang_code', 1, 'https://ror.org/054nzx465 Ferring Pharmaceuticals (Czechia)'),
(55457, 'https://ror.org/02mt5a451', 'no_lang_code', 1, 'https://ror.org/02mt5a451 Ferro OK (Czechia)'),
(55458, 'https://ror.org/03nmqee71', 'no_lang_code', 1, 'https://ror.org/03nmqee71 Enzymix (Czechia)'),
(55459, 'https://ror.org/02c024156', 'no_lang_code', 1, 'https://ror.org/02c024156 Elmet (Czechia)'),
(55460, 'https://ror.org/00ahtnc04', 'no_lang_code', 1, 'https://ror.org/00ahtnc04 Festool (Czechia)'),
(55461, 'https://ror.org/02j12yp62', 'no_lang_code', 1, 'https://ror.org/02j12yp62 Elsklo (Czechia)'),
(55462, 'https://ror.org/03cd5c095', 'no_lang_code', 1, 'https://ror.org/03cd5c095 Fiedler Zdeněk (Czechia)'),
(55463, 'https://ror.org/05dq51n70', 'no_lang_code', 1, 'https://ror.org/05dq51n70 FilƔk (Czechia)'),
(55464, 'https://ror.org/0332e1g86', 'no_lang_code', 1, 'https://ror.org/0332e1g86 ERGOWORK (Czechia)'),
(55465, 'https://ror.org/04q9gyp88', 'no_lang_code', 1, 'https://ror.org/04q9gyp88 Mesit (Czechia)'),
(55466, 'https://ror.org/03ydrze65', 'no_lang_code', 1, 'https://ror.org/03ydrze65 Eltek (Czechia)'),
(55467, 'https://ror.org/0283yyc15', 'no_lang_code', 1, 'https://ror.org/0283yyc15 Erilens (Czechia)'),
(55468, 'https://ror.org/05wrzfv03', 'no_lang_code', 1, 'https://ror.org/05wrzfv03 Firel (Czechia)'),
(55469, 'https://ror.org/04kwhpd73', 'no_lang_code', 1, 'https://ror.org/04kwhpd73 Fish Farm Bohemia (Czechia)'),
(55470, 'https://ror.org/041yznd79', 'no_lang_code', 1, 'https://ror.org/041yznd79 Flash Steel Power (Czechia)'),
(55471, 'https://ror.org/0302b9e58', 'no_lang_code', 1, 'https://ror.org/0302b9e58 Elzaco (Czechia)'),
(55472, 'https://ror.org/008226x45', 'no_lang_code', 1, 'https://ror.org/008226x45 EM Brno (Czechia)'),
(55473, 'https://ror.org/02ny9ar26', 'no_lang_code', 1, 'https://ror.org/02ny9ar26 Escape Therapeutics (United States)'),
(55474, 'https://ror.org/04ye0br83', 'no_lang_code', 1, 'https://ror.org/04ye0br83 Flaveko (Czechia)'),
(55475, 'https://ror.org/031dfcr56', 'no_lang_code', 1, 'https://ror.org/031dfcr56 Em Test ČR (Czechia)'),
(55476, 'https://ror.org/02etwv439', 'no_lang_code', 1, 'https://ror.org/02etwv439 Flexisander (Czechia)'),
(55477, 'https://ror.org/02gyk4017', 'no_lang_code', 1, 'https://ror.org/02gyk4017 Espace Morava (Czechia)'),
(55478, 'https://ror.org/04e3kdv87', 'no_lang_code', 1, 'https://ror.org/04e3kdv87 Essa (Czechia)'),
(55479, 'https://ror.org/02rwb5s17', 'no_lang_code', 1, 'https://ror.org/02rwb5s17 Flowmon Networks (Czechia)'),
(55480, 'https://ror.org/03ce03q08', 'no_lang_code', 1, 'https://ror.org/03ce03q08 Essence Line (Czechia)'),
(55481, 'https://ror.org/04zp00x83', 'no_lang_code', 1, 'https://ror.org/04zp00x83 FLSmidth (Czechia)'),
(55482, 'https://ror.org/03pxknc36', 'no_lang_code', 1, 'https://ror.org/03pxknc36 Emerson (Czechia)'),
(55483, 'https://ror.org/01m4nmn07', 'no_lang_code', 1, 'https://ror.org/01m4nmn07 Emg ZlĆ­n (Czechia)'),
(55484, 'https://ror.org/01sddvn57', 'no_lang_code', 1, 'https://ror.org/01sddvn57 Elektro-System-Technik (Slovakia)'),
(55485, 'https://ror.org/04q79jy11', 'no_lang_code', 1, 'https://ror.org/04q79jy11 Fluxamat (Czechia)'),
(55486, 'https://ror.org/02szgft37', 'no_lang_code', 1, 'https://ror.org/02szgft37 Empo Praha (Czechia)'),
(55487, 'https://ror.org/04ngy9w38', 'no_lang_code', 1, 'https://ror.org/04ngy9w38 Estcom (Czechia)'),
(55488, 'https://ror.org/00wmkg231', 'no_lang_code', 1, 'https://ror.org/00wmkg231 FMP Lignum (Czechia)'),
(55489, 'https://ror.org/04nefpm69', 'no_lang_code', 1, 'https://ror.org/04nefpm69 Esto Cheb (Czechia)'),
(55490, 'https://ror.org/031nm9f90', 'no_lang_code', 1, 'https://ror.org/031nm9f90 Enantis (Czechia)'),
(55491, 'https://ror.org/05pmpsf41', 'no_lang_code', 1, 'https://ror.org/05pmpsf41 Fokus (Czechia)'),
(55492, 'https://ror.org/00fjx2954', 'no_lang_code', 1, 'https://ror.org/00fjx2954 Frentech Aerospace (Czechia)'),
(55493, 'https://ror.org/02yc7cj12', 'no_lang_code', 1, 'https://ror.org/02yc7cj12 ETD Transformatory (Czechia) Výkonové TransformÔtory'),
(55494, 'https://ror.org/00z9exx28', 'no_lang_code', 1, 'https://ror.org/00z9exx28 Eteria (Czechia)'),
(55495, 'https://ror.org/028a9tw57', 'no_lang_code', 1, 'https://ror.org/028a9tw57 Fritagro Nížkov (Czechia)'),
(55496, 'https://ror.org/00cbksp73', 'no_lang_code', 1, 'https://ror.org/00cbksp73 Foller (Czechia)'),
(55497, 'https://ror.org/05757bv38', 'no_lang_code', 1, 'https://ror.org/05757bv38 Fomex Team (Czechia)'),
(55498, 'https://ror.org/05rbv1z92', 'no_lang_code', 1, 'https://ror.org/05rbv1z92 Froněk (Czechia)'),
(55499, 'https://ror.org/05ps69x32', 'cs', 1, 'https://ror.org/05ps69x32 Fond DalŔího VzdělĆ”vĆ”nĆ­');
INSERT INTO `rors` VALUES
(55500, 'https://ror.org/00c8vzn79', 'no_lang_code', 1, 'https://ror.org/00c8vzn79 Fruko Schulz (Czechia)'),
(55501, 'https://ror.org/04vn0m402', 'no_lang_code', 1, 'https://ror.org/04vn0m402 Fytovita (Czechia)'),
(55502, 'https://ror.org/01ya98z16', 'no_lang_code', 1, 'https://ror.org/01ya98z16 ETK KolĆ­n (Czechia)'),
(55503, 'https://ror.org/046dvcc04', 'no_lang_code', 1, 'https://ror.org/046dvcc04 Forensic DNA Service (Czechia) ForenznĆ­ DNA servis'),
(55504, 'https://ror.org/02nfy1824', 'no_lang_code', 1, 'https://ror.org/02nfy1824 Eurofins (Czechia)'),
(55505, 'https://ror.org/0523ytz80', 'en', 1, 'https://ror.org/0523ytz80 FyzikĆ”lně Technický ZkuÅ”ebnĆ­ Ústav Physical Technical Testing Institute'),
(55506, 'https://ror.org/03gvq6m28', 'no_lang_code', 1, 'https://ror.org/03gvq6m28 Forest - Agro (Czechia)'),
(55507, 'https://ror.org/01qdk2c93', 'no_lang_code', 1, 'https://ror.org/01qdk2c93 G Mar Plus (Czechia)'),
(55508, 'https://ror.org/05mz3p784', 'no_lang_code', 1, 'https://ror.org/05mz3p784 Eurogas (Czechia)'),
(55509, 'https://ror.org/045bnzp02', 'no_lang_code', 1, 'https://ror.org/045bnzp02 Foresta (Czechia)'),
(55510, 'https://ror.org/00c2hgn02', 'no_lang_code', 1, 'https://ror.org/00c2hgn02 GDK (Czechia)'),
(55511, 'https://ror.org/03wnpwa90', 'no_lang_code', 1, 'https://ror.org/03wnpwa90 Eurom (Czechia)'),
(55512, 'https://ror.org/025twqg64', 'no_lang_code', 1, 'https://ror.org/025twqg64 EuroMISE (Czechia)'),
(55513, 'https://ror.org/02smhb616', 'no_lang_code', 1, 'https://ror.org/02smhb616 Form (Czechia)'),
(55514, '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)'),
(55515, 'https://ror.org/045668z75', 'no_lang_code', 1, 'https://ror.org/045668z75 Forsapi (Czechia)'),
(55516, 'https://ror.org/02bf3yr97', 'no_lang_code', 1, 'https://ror.org/02bf3yr97 Euronics Engineering (Czechia)'),
(55517, 'https://ror.org/05cvapf18', 'no_lang_code', 1, 'https://ror.org/05cvapf18 Gesko (Czechia)'),
(55518, 'https://ror.org/047znkp64', 'no_lang_code', 1, 'https://ror.org/047znkp64 Europanel (Czechia)'),
(55519, 'https://ror.org/044xp1b57', 'no_lang_code', 1, 'https://ror.org/044xp1b57 Fortex-AGS (Czechia)'),
(55520, 'https://ror.org/04fv8gj73', 'no_lang_code', 1, 'https://ror.org/04fv8gj73 European Business Enterprise (Czechia)'),
(55521, 'https://ror.org/02n6s9z93', 'no_lang_code', 1, 'https://ror.org/02n6s9z93 G M Chemie (Czechia)'),
(55522, 'https://ror.org/03b3zsb94', 'no_lang_code', 1, 'https://ror.org/03b3zsb94 Fosfa (Czechia)'),
(55523, 'https://ror.org/050awrw49', 'en', 1, 'https://ror.org/050awrw49 GEP Clinic'),
(55524, 'https://ror.org/00k5q8r19', 'no_lang_code', 1, 'https://ror.org/00k5q8r19 Gaben (Czechia)'),
(55525, 'https://ror.org/02ktqga51', 'no_lang_code', 1, 'https://ror.org/02ktqga51 Euroseal (Czechia)'),
(55526, 'https://ror.org/021vvf198', 'no_lang_code', 1, 'https://ror.org/021vvf198 Gabriel Chemie Bohemia (Czechia)'),
(55527, 'https://ror.org/03ff67370', 'no_lang_code', 1, 'https://ror.org/03ff67370 Eurosignal (Czechia)'),
(55528, 'https://ror.org/00mrdq115', 'no_lang_code', 1, 'https://ror.org/00mrdq115 EuroTec JKR (Czechia)'),
(55529, 'https://ror.org/0402k2258', 'no_lang_code', 1, 'https://ror.org/0402k2258 FPOS (Czechia)'),
(55530, 'https://ror.org/02phptz08', 'no_lang_code', 1, 'https://ror.org/02phptz08 Eutit (Czechia)'),
(55531, 'https://ror.org/01dxzkc83', 'no_lang_code', 1, 'https://ror.org/01dxzkc83 Gala (Czechia)'),
(55532, 'https://ror.org/02gkjb077', 'no_lang_code', 1, 'https://ror.org/02gkjb077 EVC Group (Czechia)'),
(55533, 'https://ror.org/043bw8c75', 'no_lang_code', 1, 'https://ror.org/043bw8c75 Eveco (Czechia)'),
(55534, 'https://ror.org/04mspgk29', 'no_lang_code', 1, 'https://ror.org/04mspgk29 Free Energy (Slovakia)'),
(55535, 'https://ror.org/02pfqzk70', 'no_lang_code', 1, 'https://ror.org/02pfqzk70 Galatek (Czechia)'),
(55536, 'https://ror.org/02nf56k69', 'cs', 1, 'https://ror.org/02nf56k69 Galerie Klatovy'),
(55537, 'https://ror.org/05h1ve754', 'no_lang_code', 1, 'https://ror.org/05h1ve754 NXP (Czechia)'),
(55538, 'https://ror.org/00a9x6k20', 'no_lang_code', 1, 'https://ror.org/00a9x6k20 Exact Control System (Czechia)'),
(55539, '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'),
(55540, 'https://ror.org/028r88847', 'no_lang_code', 1, 'https://ror.org/028r88847 Excalibur Army (Czechia)'),
(55541, 'https://ror.org/058tqt210', 'no_lang_code', 1, 'https://ror.org/058tqt210 Gallopro (Czechia)'),
(55542, 'https://ror.org/04z360s37', 'no_lang_code', 1, 'https://ror.org/04z360s37 EVPÚ Defence (Czechia)'),
(55543, 'https://ror.org/05rrc9f79', 'no_lang_code', 1, 'https://ror.org/05rrc9f79 Úsporné Bydlení (Czechia)'),
(55544, 'https://ror.org/02ngeps21', 'no_lang_code', 1, 'https://ror.org/02ngeps21 Garmin (Czechia)'),
(55545, 'https://ror.org/0521vgb23', 'no_lang_code', 1, 'https://ror.org/0521vgb23 Gas Komplet (Czechia)'),
(55546, 'https://ror.org/01cvk6k60', 'no_lang_code', 1, 'https://ror.org/01cvk6k60 Eyedea Recognition (Czechia)'),
(55547, 'https://ror.org/00hbgc813', 'no_lang_code', 1, 'https://ror.org/00hbgc813 H1.cz (Czechia)'),
(55548, 'https://ror.org/01qfgqn02', 'no_lang_code', 1, 'https://ror.org/01qfgqn02 Gascontrol Plast (Czechia)'),
(55549, 'https://ror.org/04e2w0r26', 'no_lang_code', 1, 'https://ror.org/04e2w0r26 Excon (Czechia)'),
(55550, 'https://ror.org/03sksgt72', 'no_lang_code', 1, 'https://ror.org/03sksgt72 Haal Elektro (Czechia)'),
(55551, 'https://ror.org/038sxqg91', 'no_lang_code', 1, 'https://ror.org/038sxqg91 Kelvion (Czechia)'),
(55552, 'https://ror.org/05mv2zc24', 'no_lang_code', 1, 'https://ror.org/05mv2zc24 Habena (Czechia)'),
(55553, 'https://ror.org/03zga9n09', 'no_lang_code', 1, 'https://ror.org/03zga9n09 Gemec Union (Czechia)'),
(55554, 'https://ror.org/02g3wex31', 'no_lang_code', 1, 'https://ror.org/02g3wex31 HalĆ­Å™ A DiviÅ” (Czechia)'),
(55555, 'https://ror.org/051bde843', 'no_lang_code', 1, 'https://ror.org/051bde843 HanĆ”ckĆ” ZemědělskĆ” Společnost Jevƭčko (Czechia)'),
(55556, 'https://ror.org/04waxaa96', 'en', 1, 'https://ror.org/04waxaa96 Gemini Eye Clinic Očnƭ klinika Gemini'),
(55557, 'https://ror.org/04nwny503', 'no_lang_code', 1, 'https://ror.org/04nwny503 Explat (Czechia)'),
(55558, 'https://ror.org/00s66s868', 'no_lang_code', 1, 'https://ror.org/00s66s868 Gemos (Czechia)'),
(55559, 'https://ror.org/03h6sns07', 'no_lang_code', 1, 'https://ror.org/03h6sns07 Gen Trend (Czechia)'),
(55560, 'https://ror.org/03r54xm51', 'no_lang_code', 1, 'https://ror.org/03r54xm51 Extrudo Bečice (Czechia)'),
(55561, 'https://ror.org/01mw5kc41', 'no_lang_code', 1, 'https://ror.org/01mw5kc41 Hanka Mochov (Czechia)'),
(55562, 'https://ror.org/05w383724', 'no_lang_code', 1, 'https://ror.org/05w383724 Hansen Electric (Czechia)'),
(55563, 'https://ror.org/039e1zg46', 'no_lang_code', 1, 'https://ror.org/039e1zg46 Immobiliser Central Europe (Czechia)'),
(55564, 'https://ror.org/02sk8y875', 'no_lang_code', 1, 'https://ror.org/02sk8y875 Genetrac (Czechia)'),
(55565, 'https://ror.org/047a1qt28', 'no_lang_code', 1, 'https://ror.org/047a1qt28 Balakryl (Czechia)'),
(55566, 'https://ror.org/032tfbg84', 'no_lang_code', 1, 'https://ror.org/032tfbg84 Danaher (Czechia)'),
(55567, 'https://ror.org/027e2aw51', 'no_lang_code', 1, 'https://ror.org/027e2aw51 HaSaM (Czechia)'),
(55568, 'https://ror.org/017sk3p30', 'no_lang_code', 1, 'https://ror.org/017sk3p30 Geniczech M (Czechia)'),
(55569, 'https://ror.org/05tsgwq26', 'no_lang_code', 1, 'https://ror.org/05tsgwq26 Gennet'),
(55570, 'https://ror.org/0018kxj28', 'no_lang_code', 1, 'https://ror.org/0018kxj28 Heat Transfer Systems (Czechia)'),
(55571, 'https://ror.org/0420a9r52', 'no_lang_code', 1, 'https://ror.org/0420a9r52 IMPS (Czechia)'),
(55572, 'https://ror.org/02z71hx86', 'no_lang_code', 1, 'https://ror.org/02z71hx86 Genomac'),
(55573, 'https://ror.org/04pg34p42', 'no_lang_code', 1, 'https://ror.org/04pg34p42 IMS-DraŔnar (Czechia)'),
(55574, 'https://ror.org/00zm06h90', 'en', 1, 'https://ror.org/00zm06h90 Genservice'),
(55575, 'https://ror.org/05f07wy20', 'no_lang_code', 1, 'https://ror.org/05f07wy20 In-Eko Team (Czechia)'),
(55576, 'https://ror.org/010bska32', 'no_lang_code', 1, 'https://ror.org/010bska32 Gentop Engineering (Czechia)'),
(55577, 'https://ror.org/0403h5q85', 'no_lang_code', 1, 'https://ror.org/0403h5q85 Indel (Slovakia)'),
(55578, 'https://ror.org/02nq7pz60', 'no_lang_code', 1, 'https://ror.org/02nq7pz60 Hedva (Czechia)'),
(55579, 'https://ror.org/01m08fh61', 'no_lang_code', 1, 'https://ror.org/01m08fh61 Help Forest (Czechia)'),
(55580, 'https://ror.org/021819p14', 'no_lang_code', 1, 'https://ror.org/021819p14 Geo Vision (Czechia)'),
(55581, 'https://ror.org/01tztjf78', 'no_lang_code', 1, 'https://ror.org/01tztjf78 Indet Safety Systems (Czechia)'),
(55582, 'https://ror.org/05bhj1f22', 'no_lang_code', 1, 'https://ror.org/05bhj1f22 Industrial Technology Systems (Czechia)'),
(55583, 'https://ror.org/01jzn1575', 'no_lang_code', 1, 'https://ror.org/01jzn1575 Inekon Group (Czechia)'),
(55584, 'https://ror.org/0470csm54', 'no_lang_code', 1, 'https://ror.org/0470csm54 Geocart (Czechia)'),
(55585, 'https://ror.org/009xyca19', 'no_lang_code', 1, 'https://ror.org/009xyca19 Heltos (Czechia)'),
(55586, 'https://ror.org/01w5cr084', 'no_lang_code', 1, 'https://ror.org/01w5cr084 Inflex (Czechia)'),
(55587, 'https://ror.org/02jpkyy67', 'no_lang_code', 1, 'https://ror.org/02jpkyy67 GeodƩzie Topos (Czechia)'),
(55588, 'https://ror.org/01t9z0h93', 'no_lang_code', 1, 'https://ror.org/01t9z0h93 Geodézie ČS (Czechia)'),
(55589, 'https://ror.org/00x0dmc73', 'no_lang_code', 1, 'https://ror.org/00x0dmc73 InfoScience (Czechia)'),
(55590, 'https://ror.org/059xss029', 'no_lang_code', 1, 'https://ror.org/059xss029 GeodĆ©zie Ledeč nad SĆ”zavou (Czechia)'),
(55591, 'https://ror.org/04bf2vs71', 'no_lang_code', 1, 'https://ror.org/04bf2vs71 Hemp Production (Czechia)'),
(55592, 'https://ror.org/02z625e97', 'no_lang_code', 1, 'https://ror.org/02z625e97 Herbacos Recordati (Czechia)'),
(55593, 'https://ror.org/02f0cvc21', 'no_lang_code', 1, 'https://ror.org/02f0cvc21 Hestego (Czechia)'),
(55594, 'https://ror.org/05xeax323', 'no_lang_code', 1, 'https://ror.org/05xeax323 Hestia (Czechia)'),
(55595, 'https://ror.org/05aqqa384', 'no_lang_code', 1, 'https://ror.org/05aqqa384 HET (Czechia)'),
(55596, 'https://ror.org/049g0ca30', 'no_lang_code', 1, 'https://ror.org/049g0ca30 Synthomer (Czechia)'),
(55597, 'https://ror.org/04mn22671', 'no_lang_code', 1, 'https://ror.org/04mn22671 HF-Czechforge (Czechia)'),
(55598, 'https://ror.org/005tenx48', 'no_lang_code', 1, 'https://ror.org/005tenx48 Geodrill (Czechia)'),
(55599, 'https://ror.org/001dcya02', 'no_lang_code', 1, 'https://ror.org/001dcya02 Hillex (Czechia)'),
(55600, 'https://ror.org/026k95836', 'no_lang_code', 1, 'https://ror.org/026k95836 Geodyn (Czechia)'),
(55601, 'https://ror.org/04vtyaw83', 'no_lang_code', 1, 'https://ror.org/04vtyaw83 GEOline (Czechia)'),
(55602, 'https://ror.org/01544jt07', 'no_lang_code', 1, 'https://ror.org/01544jt07 Hit Hofman (Czechia)'),
(55603, 'https://ror.org/02mfb9z52', 'no_lang_code', 1, 'https://ror.org/02mfb9z52 Geomin (Czechia)'),
(55604, 'https://ror.org/02ddz0p49', 'no_lang_code', 1, 'https://ror.org/02ddz0p49 Inomech (Czechia)'),
(55605, 'https://ror.org/021kzz686', 'no_lang_code', 1, 'https://ror.org/021kzz686 HOBAS (Czechia)'),
(55606, 'https://ror.org/0225hcv43', 'no_lang_code', 1, 'https://ror.org/0225hcv43 Georadis (Czechia)'),
(55607, 'https://ror.org/0089p6r11', 'no_lang_code', 1, 'https://ror.org/0089p6r11 Hobl & Pech (Czechia)'),
(55608, 'https://ror.org/012v1rw43', 'no_lang_code', 1, 'https://ror.org/012v1rw43 DodƔvky Automatizace (Czechia)'),
(55609, 'https://ror.org/05ft9p311', 'no_lang_code', 1, 'https://ror.org/05ft9p311 Hobra Å kolnĆ­k (Czechia)'),
(55610, 'https://ror.org/03tz15v17', 'no_lang_code', 1, 'https://ror.org/03tz15v17 Hochtief (Czechia)'),
(55611, 'https://ror.org/05tqtn688', 'no_lang_code', 1, 'https://ror.org/05tqtn688 Inpek (Czechia)'),
(55612, 'https://ror.org/01mv6b823', 'no_lang_code', 1, 'https://ror.org/01mv6b823 HolĆ­k International (Czechia)'),
(55613, 'https://ror.org/01ddpks56', 'no_lang_code', 1, 'https://ror.org/01ddpks56 Georeal (Czechia)'),
(55614, 'https://ror.org/01yg8x810', 'no_lang_code', 1, 'https://ror.org/01yg8x810 Holzbecher (Czechia)'),
(55615, 'https://ror.org/0375hkv63', 'no_lang_code', 1, 'https://ror.org/0375hkv63 Geostar (Czechia)'),
(55616, 'https://ror.org/04ynnbp72', 'en', 1, 'https://ror.org/04ynnbp72 Czech Chamber of Commerce HospodÔřskĆ” komora ČeskĆ© republiky'),
(55617, 'https://ror.org/01a134x88', 'no_lang_code', 1, 'https://ror.org/01a134x88 GeoTec GS (Czechia)'),
(55618, 'https://ror.org/038h93e72', 'no_lang_code', 1, 'https://ror.org/038h93e72 Inset (Czechia)'),
(55619, 'https://ror.org/03t06c531', 'cs', 1, 'https://ror.org/03t06c531 Geova'),
(55620, 'https://ror.org/013esgc34', 'no_lang_code', 1, 'https://ror.org/013esgc34 Instar ITS (Czechia)'),
(55621, 'https://ror.org/003dv1r84', 'no_lang_code', 1, 'https://ror.org/003dv1r84 Hostýnské Papírny (Czechia)'),
(55622, 'https://ror.org/03pjfjx36', 'no_lang_code', 1, 'https://ror.org/03pjfjx36 Institute of Bohuslav MartinÅÆ (Czechia)'),
(55623, 'https://ror.org/00v43af83', 'no_lang_code', 1, 'https://ror.org/00v43af83 Geovap (Czechia)'),
(55624, 'https://ror.org/04f1wge97', 'no_lang_code', 1, 'https://ror.org/04f1wge97 Houfek (Czechia)'),
(55625, 'https://ror.org/02s1wmc12', 'no_lang_code', 1, 'https://ror.org/02s1wmc12 Gepro (Czechia)'),
(55626, 'https://ror.org/03epajw45', 'no_lang_code', 1, 'https://ror.org/03epajw45 Howden (Czechia)'),
(55627, 'https://ror.org/02e281029', 'no_lang_code', 1, 'https://ror.org/02e281029 Institut Ocelových Konstrukcí (Czechia)'),
(55628, 'https://ror.org/056gmd082', 'no_lang_code', 1, 'https://ror.org/056gmd082 GfK (Czechia)'),
(55629, 'https://ror.org/04313jv58', 'no_lang_code', 1, 'https://ror.org/04313jv58 HST TechnoLogic (Czechia)'),
(55630, 'https://ror.org/04gzpwh55', 'no_lang_code', 1, 'https://ror.org/04gzpwh55 GGC Energy (Czechia)'),
(55631, 'https://ror.org/01hzc1x24', 'no_lang_code', 1, 'https://ror.org/01hzc1x24 Huddy Diamonds (Czechia)'),
(55632, 'https://ror.org/00s3nyy34', 'no_lang_code', 1, 'https://ror.org/00s3nyy34 Cemvin (Czechia)'),
(55633, 'https://ror.org/0233hap27', 'no_lang_code', 1, 'https://ror.org/0233hap27 Gist (Czechia)'),
(55634, 'https://ror.org/03z79c042', 'no_lang_code', 1, 'https://ror.org/03z79c042 RybÔřstvĆ­ Třeboň (Czechia)'),
(55635, 'https://ror.org/024zd3a64', 'no_lang_code', 1, 'https://ror.org/024zd3a64 Glass Atelier Morava (Czechia)'),
(55636, 'https://ror.org/0164z4p75', 'no_lang_code', 1, 'https://ror.org/0164z4p75 Glass Service (Czechia)'),
(55637, 'https://ror.org/01w0yqe56', 'en', 1, 'https://ror.org/01w0yqe56 Human Organ Project'),
(55638, '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'),
(55639, 'https://ror.org/05c5mh451', 'no_lang_code', 1, 'https://ror.org/05c5mh451 Glentor (Czechia)'),
(55640, 'https://ror.org/021zj1e70', 'no_lang_code', 1, 'https://ror.org/021zj1e70 Hutní MontÔže (Czechia)'),
(55641, 'https://ror.org/05qwteg84', 'no_lang_code', 1, 'https://ror.org/05qwteg84 GME (Czechia)'),
(55642, 'https://ror.org/03awcax09', 'no_lang_code', 1, 'https://ror.org/03awcax09 Hutní Projekt Frýdek-Místek (Czechia)'),
(55643, 'https://ror.org/0281ksw84', 'en', 1, 'https://ror.org/0281ksw84 Brno Observatory and Planetarium HvězdĆ”rna a planetĆ”rium Brno'),
(55644, 'https://ror.org/0507zc831', 'no_lang_code', 1, 'https://ror.org/0507zc831 GNSS Centre of Excellence'),
(55645, 'https://ror.org/025rzbp22', 'no_lang_code', 1, 'https://ror.org/025rzbp22 HydraulickĆ© Stroje A ZařízenĆ­ (Czechia)'),
(55646, 'https://ror.org/03dcymj98', 'no_lang_code', 1, 'https://ror.org/03dcymj98 Institut pro testovƔnƭ a certifikaci Institute for Testing and Certification (Czechia)'),
(55647, 'https://ror.org/050ahe644', 'no_lang_code', 1, 'https://ror.org/050ahe644 Hydroma (Czechia)'),
(55648, 'https://ror.org/04k417520', 'no_lang_code', 1, 'https://ror.org/04k417520 GoodMills Česko'),
(55649, 'https://ror.org/05gfvgk18', 'no_lang_code', 1, 'https://ror.org/05gfvgk18 Hydrosoft VeleslavĆ­n (Czechia)'),
(55650, 'https://ror.org/01zrvxg38', 'no_lang_code', 1, 'https://ror.org/01zrvxg38 Hydrostatika (Czechia)'),
(55651, 'https://ror.org/00v986r94', 'no_lang_code', 1, 'https://ror.org/00v986r94 Grade Medical (Czechia)'),
(55652, 'https://ror.org/02smzzj60', 'en', 1, 'https://ror.org/02smzzj60 Institut regionƔlnƭch informacƭ Institute for Regional Information'),
(55653, 'https://ror.org/04ypeyk27', 'no_lang_code', 1, 'https://ror.org/04ypeyk27 S&T (Czechia)'),
(55654, 'https://ror.org/01avhp493', 'no_lang_code', 1, 'https://ror.org/01avhp493 Institut StrategickƩ Podpory (Czechia)'),
(55655, 'https://ror.org/0326x9e38', 'no_lang_code', 1, 'https://ror.org/0326x9e38 Fosil Partner (Czechia)'),
(55656, 'https://ror.org/04etxq867', 'cs', 1, 'https://ror.org/04etxq867 Domov pro Seniory ĎƔblice'),
(55657, 'https://ror.org/02eas8236', 'no_lang_code', 1, 'https://ror.org/02eas8236 Ernst Leopold (Czechia)'),
(55658, 'https://ror.org/03bqgx731', 'no_lang_code', 1, 'https://ror.org/03bqgx731 Ingredia (Czechia)'),
(55659, 'https://ror.org/04r1srr11', 'en', 1, 'https://ror.org/04r1srr11 Institut Evaluací a SociÔlních Analýz Institute for Evaluation and Social Analyses'),
(55660, 'https://ror.org/03qs9kr26', 'no_lang_code', 1, 'https://ror.org/03qs9kr26 Benteler (Czechia)'),
(55661, 'https://ror.org/011bbc947', 'no_lang_code', 1, 'https://ror.org/011bbc947 DopravnĆ­ Podnik Města ČeskĆ© Budějovice'),
(55662, 'https://ror.org/05eft0257', 'no_lang_code', 1, 'https://ror.org/05eft0257 Hytech (Czechia)'),
(55663, 'https://ror.org/008jjpw82', 'no_lang_code', 1, 'https://ror.org/008jjpw82 ITA Intertact (Czechia)'),
(55664, 'https://ror.org/02qyrzz82', 'no_lang_code', 1, 'https://ror.org/02qyrzz82 I2L Research (Czechia)'),
(55665, 'https://ror.org/02n79p323', 'no_lang_code', 1, 'https://ror.org/02n79p323 ib1.cz (Czechia)'),
(55666, 'https://ror.org/04dzqh472', 'no_lang_code', 1, 'https://ror.org/04dzqh472 IBM (Czechia)'),
(55667, 'https://ror.org/0451k0g64', 'no_lang_code', 1, 'https://ror.org/0451k0g64 Institute of Applied Biotechnologies (Czechia)'),
(55668, 'https://ror.org/02p2rdc82', 'no_lang_code', 1, 'https://ror.org/02p2rdc82 Green Solution (Czechia)'),
(55669, 'https://ror.org/028s8ff87', 'no_lang_code', 1, 'https://ror.org/028s8ff87 Iconics (Czechia)'),
(55670, 'https://ror.org/00kkxjg31', 'no_lang_code', 1, 'https://ror.org/00kkxjg31 GreyCortex (Czechia)'),
(55671, 'https://ror.org/03t71q954', 'no_lang_code', 1, 'https://ror.org/03t71q954 GRYF (Czechia)'),
(55672, 'https://ror.org/013t7dx52', 'no_lang_code', 1, 'https://ror.org/013t7dx52 ICT Unie'),
(55673, 'https://ror.org/03vdw8k15', 'no_lang_code', 1, 'https://ror.org/03vdw8k15 ICZ (Czechia)'),
(55674, 'https://ror.org/01ydd6106', 'en', 1, 'https://ror.org/01ydd6106 INstrategy'),
(55675, 'https://ror.org/013g68144', 'en', 1, 'https://ror.org/013g68144 GS1 Czech Republic'),
(55676, 'https://ror.org/05nef8h70', 'no_lang_code', 1, 'https://ror.org/05nef8h70 GSP (Czechia)'),
(55677, 'https://ror.org/03wgey566', 'no_lang_code', 1, 'https://ror.org/03wgey566 INT-Informace a Technologie (Czechia)'),
(55678, 'https://ror.org/017g8xy67', 'no_lang_code', 1, 'https://ror.org/017g8xy67 IDEA StatiCa (Czechia)'),
(55679, 'https://ror.org/02rfvew21', 'no_lang_code', 1, 'https://ror.org/02rfvew21 Integrated Micro-Electronics (Czechia)'),
(55680, 'https://ror.org/04wsk8226', 'no_lang_code', 1, 'https://ror.org/04wsk8226 Idea-Envi (Czechia)'),
(55681, 'https://ror.org/016r49y78', 'no_lang_code', 1, 'https://ror.org/016r49y78 IntellMed (Czechia)'),
(55682, 'https://ror.org/0049tkm42', 'no_lang_code', 1, 'https://ror.org/0049tkm42 Intemac Solutions (Czechia)'),
(55683, 'https://ror.org/034bznj45', 'no_lang_code', 1, 'https://ror.org/034bznj45 Fresenius Kabi (Czechia)'),
(55684, 'https://ror.org/05dz4gs85', 'no_lang_code', 1, 'https://ror.org/05dz4gs85 Deutsche Telekom (Czechia)'),
(55685, 'https://ror.org/049gvsd25', 'no_lang_code', 1, 'https://ror.org/049gvsd25 Knorr-Bremse (Czechia)'),
(55686, 'https://ror.org/05tx9ga45', 'no_lang_code', 1, 'https://ror.org/05tx9ga45 InterEco (Czechia)'),
(55687, 'https://ror.org/05xm6zq64', 'no_lang_code', 1, 'https://ror.org/05xm6zq64 Iguassu Software Systems (Czechia)'),
(55688, 'https://ror.org/007wcet58', 'no_lang_code', 1, 'https://ror.org/007wcet58 GTW Bearings (Czechia)'),
(55689, 'https://ror.org/0168cex60', 'no_lang_code', 1, 'https://ror.org/0168cex60 Interfluid (Czechia)'),
(55690, 'https://ror.org/05ymvmg49', 'no_lang_code', 1, 'https://ror.org/05ymvmg49 GumĆ”rny Zubří (Czechia)'),
(55691, 'https://ror.org/03shzfz43', 'no_lang_code', 1, 'https://ror.org/03shzfz43 IKE (Slovakia)'),
(55692, 'https://ror.org/01764mn96', 'no_lang_code', 1, 'https://ror.org/01764mn96 Gumotex (Czechia)'),
(55693, 'https://ror.org/05behat95', 'en', 1, 'https://ror.org/05behat95 GymnƔzium Jana Palacha Jan Palach Private High School'),
(55694, 'https://ror.org/0078wde10', 'no_lang_code', 1, 'https://ror.org/0078wde10 IKP Consulting Engineers (Czechia)'),
(55695, 'https://ror.org/04bbdb654', 'cs', 1, 'https://ror.org/04bbdb654 GymnÔzium Žamberk'),
(55696, 'https://ror.org/02tma6r06', 'no_lang_code', 1, 'https://ror.org/02tma6r06 Gypstrend (Czechia)'),
(55697, 'https://ror.org/050dy3g96', 'no_lang_code', 1, 'https://ror.org/050dy3g96 IKT Advanced Technologies (Czechia)'),
(55698, 'https://ror.org/051fr8g96', 'no_lang_code', 1, 'https://ror.org/051fr8g96 GZ Media (Czechia)'),
(55699, 'https://ror.org/034xn6p88', 'no_lang_code', 1, 'https://ror.org/034xn6p88 ILD (Czechia)'),
(55700, 'https://ror.org/04f776z76', 'no_lang_code', 1, 'https://ror.org/04f776z76 Ircon (Czechia)'),
(55701, 'https://ror.org/04qv6zr56', 'no_lang_code', 1, 'https://ror.org/04qv6zr56 Ireks Enzyma (Czechia)'),
(55702, 'https://ror.org/0202hwy21', 'no_lang_code', 1, 'https://ror.org/0202hwy21 INTOS (Czechia)'),
(55703, 'https://ror.org/03az84415', 'no_lang_code', 1, 'https://ror.org/03az84415 Intriple (Czechia)'),
(55704, 'https://ror.org/04vkaw234', 'no_lang_code', 1, 'https://ror.org/04vkaw234 Imatech (Czechia)'),
(55705, 'https://ror.org/01teb0938', 'no_lang_code', 1, 'https://ror.org/01teb0938 Iscare I.V.F KlinickƩ Centrum ISCARE'),
(55706, 'https://ror.org/01b883r40', 'no_lang_code', 1, 'https://ror.org/01b883r40 INTV (Czechia)'),
(55707, 'https://ror.org/021z27d52', 'no_lang_code', 1, 'https://ror.org/021z27d52 Kaiser (Czechia)'),
(55708, 'https://ror.org/00pkj5048', 'no_lang_code', 1, 'https://ror.org/00pkj5048 Invaz (Czechia)'),
(55709, 'https://ror.org/02y0wsa73', 'no_lang_code', 1, 'https://ror.org/02y0wsa73 Institut pro SociÔlní a Ekonomické Analýzy'),
(55710, 'https://ror.org/05s6mnc45', 'no_lang_code', 1, 'https://ror.org/05s6mnc45 Invelt Industry International (Czechia)'),
(55711, 'https://ror.org/042nzp779', 'cs', 1, 'https://ror.org/042nzp779 ISES'),
(55712, 'https://ror.org/03vy9zw30', 'no_lang_code', 1, 'https://ror.org/03vy9zw30 Kalma (Czechia)'),
(55713, 'https://ror.org/032b9vb83', 'no_lang_code', 1, 'https://ror.org/032b9vb83 Ish Pumps Olomouc (Czechia)'),
(55714, 'https://ror.org/05b71ga35', 'no_lang_code', 1, 'https://ror.org/05b71ga35 Km - KƔmen (Czechia)'),
(55715, 'https://ror.org/00s2ktz06', 'no_lang_code', 1, 'https://ror.org/00s2ktz06 Isolit-Bravo (Czechia)'),
(55716, 'https://ror.org/04vnqft85', 'no_lang_code', 1, 'https://ror.org/04vnqft85 Kapa ZlĆ­n (Czechia)'),
(55717, 'https://ror.org/010qg4v35', 'en', 1, 'https://ror.org/010qg4v35 International Organization for Migration MezinƔrodnƭ organizace pro migraci'),
(55718, 'https://ror.org/039qk4e20', 'no_lang_code', 1, 'https://ror.org/039qk4e20 Isotra (Czechia)'),
(55719, 'https://ror.org/02r10ma13', 'no_lang_code', 1, 'https://ror.org/02r10ma13 IHI Corporation (Czechia)'),
(55720, 'https://ror.org/059c3dd05', 'no_lang_code', 1, 'https://ror.org/059c3dd05 Issa Czech (Czechia)'),
(55721, 'https://ror.org/02rffwf78', 'no_lang_code', 1, 'https://ror.org/02rffwf78 Kapsch (Czechia)'),
(55722, 'https://ror.org/04kkpea39', 'no_lang_code', 1, 'https://ror.org/04kkpea39 ITA (Czechia)'),
(55723, 'https://ror.org/054jtdj73', 'no_lang_code', 1, 'https://ror.org/054jtdj73 IQ Structures (Czechia)'),
(55724, 'https://ror.org/05v9bqs40', 'no_lang_code', 1, 'https://ror.org/05v9bqs40 ITAB'),
(55725, 'https://ror.org/04prad579', 'no_lang_code', 1, 'https://ror.org/04prad579 Karel ŘehÔk (Czechia)'),
(55726, 'https://ror.org/03722ks09', 'en', 1, 'https://ror.org/03722ks09 Institut pro Udržitelný Rozvoj Sídel Institute for Sustainable Development of Settlements'),
(55727, 'https://ror.org/01wa9sg17', 'no_lang_code', 1, 'https://ror.org/01wa9sg17 IQLANDIA'),
(55728, 'https://ror.org/035jk1w68', 'no_lang_code', 1, 'https://ror.org/035jk1w68 IVAR (Czechia)'),
(55729, 'https://ror.org/00z9nr140', 'cs', 1, 'https://ror.org/00z9nr140 KarlovarskĆ” KrajskĆ” Nemocnice'),
(55730, 'https://ror.org/054v7pb78', 'no_lang_code', 1, 'https://ror.org/054v7pb78 Teva Pharmaceuticals (Czechia)'),
(55731, 'https://ror.org/039x2ss79', 'no_lang_code', 1, 'https://ror.org/039x2ss79 Irbis (Czechia)'),
(55732, 'https://ror.org/01ry8n211', 'no_lang_code', 1, 'https://ror.org/01ry8n211 CNH Industrial (Czechia)'),
(55733, 'https://ror.org/039dcrv13', 'cs', 1, 'https://ror.org/039dcrv13 Muzeum Karlovy Vary'),
(55734, 'https://ror.org/05g3kjm83', 'no_lang_code', 1, 'https://ror.org/05g3kjm83 IVEP (Czechia)'),
(55735, 'https://ror.org/000zqbq25', 'no_lang_code', 1, 'https://ror.org/000zqbq25 Ivitas (Czechia)'),
(55736, 'https://ror.org/00sq92q44', 'no_lang_code', 1, 'https://ror.org/00sq92q44 Thun 1794 (Czechia)'),
(55737, 'https://ror.org/05ss23q56', 'no_lang_code', 1, 'https://ror.org/05ss23q56 KSK Precise Motion (Czechia)'),
(55738, 'https://ror.org/03ntvfv97', 'no_lang_code', 1, 'https://ror.org/03ntvfv97 IVV Engineering (Czechia)'),
(55739, 'https://ror.org/048npsb62', 'no_lang_code', 1, 'https://ror.org/048npsb62 Karned Tools (Czechia)'),
(55740, 'https://ror.org/045tr8m18', 'no_lang_code', 1, 'https://ror.org/045tr8m18 Kaspe (Czechia)'),
(55741, 'https://ror.org/0501jzx23', 'no_lang_code', 1, 'https://ror.org/0501jzx23 Kunst (Czechia)'),
(55742, 'https://ror.org/02q7wh890', 'no_lang_code', 1, 'https://ror.org/02q7wh890 J-VST (Czechia)'),
(55743, 'https://ror.org/05vh91d34', 'no_lang_code', 1, 'https://ror.org/05vh91d34 KB - Blok (Czechia)'),
(55744, 'https://ror.org/02gkz9k46', 'no_lang_code', 1, 'https://ror.org/02gkz9k46 Kvados (Czechia)'),
(55745, 'https://ror.org/03azdp011', 'no_lang_code', 1, 'https://ror.org/03azdp011 J. Jindra (Czechia)'),
(55746, 'https://ror.org/0484yn593', 'no_lang_code', 1, 'https://ror.org/0484yn593 KVS Ekodivize (Czechia)'),
(55747, 'https://ror.org/01yg7sq26', 'no_lang_code', 1, 'https://ror.org/01yg7sq26 Koenig & Bauer (Czechia)'),
(55748, 'https://ror.org/000qcd088', 'no_lang_code', 1, 'https://ror.org/000qcd088 L.E.T. Optomechanika (Czechia)'),
(55749, 'https://ror.org/021syp484', 'no_lang_code', 1, 'https://ror.org/021syp484 JabloneckƔ NƔstrojƔrna (Czechia)'),
(55750, 'https://ror.org/01vf7qd54', 'no_lang_code', 1, 'https://ror.org/01vf7qd54 L.K. Engineering (Czechia)'),
(55751, 'https://ror.org/00902kb83', 'no_lang_code', 1, 'https://ror.org/00902kb83 Kell (Czechia)'),
(55752, 'https://ror.org/05smskk65', 'no_lang_code', 1, 'https://ror.org/05smskk65 LabMediaServis (Czechia)'),
(55753, 'https://ror.org/04158f936', 'no_lang_code', 1, 'https://ror.org/04158f936 Kemwater ProChemie (Czechia)'),
(55754, 'https://ror.org/03q88m992', 'no_lang_code', 1, 'https://ror.org/03q88m992 Keramost (Czechia)'),
(55755, 'https://ror.org/00hm3z611', 'no_lang_code', 1, 'https://ror.org/00hm3z611 Keramtech (Czechia)'),
(55756, 'https://ror.org/01krcaf49', 'no_lang_code', 1, 'https://ror.org/01krcaf49 Kerima (Czechia)'),
(55757, 'https://ror.org/020v2gz03', 'no_lang_code', 1, 'https://ror.org/020v2gz03 Kessl (Czechia)'),
(55758, 'https://ror.org/04bv5ph58', 'no_lang_code', 1, 'https://ror.org/04bv5ph58 KHSanace (Czechia)'),
(55759, 'https://ror.org/0561waf62', 'no_lang_code', 1, 'https://ror.org/0561waf62 Laboratory Imaging (Czechia)'),
(55760, 'https://ror.org/028b18z22', 'en', 1, 'https://ror.org/028b18z22 Carbon Cycle and Ecosystems'),
(55761, 'https://ror.org/00pecb659', 'no_lang_code', 1, 'https://ror.org/00pecb659 Labrys'),
(55762, 'https://ror.org/00k5y4z24', 'no_lang_code', 1, 'https://ror.org/00k5y4z24 Kitl (Czechia)'),
(55763, 'https://ror.org/03rswp691', 'cs', 1, 'https://ror.org/03rswp691 KlasickĆ© a Å”panělskĆ© GymnĆ”zium, Brno-Bystrc'),
(55764, 'https://ror.org/048a8ap39', 'cs', 1, 'https://ror.org/048a8ap39 Labyrint'),
(55765, 'https://ror.org/04jfdra48', 'cs', 1, 'https://ror.org/04jfdra48 KlÔŔter ChotěŔov'),
(55766, 'https://ror.org/00wxgkf94', 'no_lang_code', 1, 'https://ror.org/00wxgkf94 LAC (Czechia)'),
(55767, 'https://ror.org/01vrx7006', 'no_lang_code', 1, 'https://ror.org/01vrx7006 KlatovskĆ© RybÔřstvĆ­ (Czechia)'),
(55768, 'https://ror.org/05gv51k44', 'no_lang_code', 1, 'https://ror.org/05gv51k44 KM Beta (Czechia)'),
(55769, 'https://ror.org/007h7ca29', 'no_lang_code', 1, 'https://ror.org/007h7ca29 KMC Group (Czechia)'),
(55770, 'https://ror.org/04x4bx294', 'no_lang_code', 1, 'https://ror.org/04x4bx294 Lach-Ner (Czechia)'),
(55771, 'https://ror.org/041fb0y12', 'no_lang_code', 1, 'https://ror.org/041fb0y12 Jakape (Czechia)'),
(55772, 'https://ror.org/05hvp7v67', 'no_lang_code', 1, 'https://ror.org/05hvp7v67 Lacrum VelkĆ© MeziÅ™Ć­ÄĆ­ (Czechia)'),
(55773, 'https://ror.org/059cchq73', 'no_lang_code', 1, 'https://ror.org/059cchq73 Knauf (Czechia)'),
(55774, 'https://ror.org/00pn2q632', 'no_lang_code', 1, 'https://ror.org/00pn2q632 Knitva (Czechia)'),
(55775, 'https://ror.org/02fn5yv16', 'no_lang_code', 1, 'https://ror.org/02fn5yv16 KNZ (Czechia)'),
(55776, 'https://ror.org/01wkabt06', 'no_lang_code', 1, 'https://ror.org/01wkabt06 Lammb Systems (Czechia)'),
(55777, 'https://ror.org/038r0kk66', 'no_lang_code', 1, 'https://ror.org/038r0kk66 Kobra Údlice (Czechia)'),
(55778, 'https://ror.org/04are6b10', 'no_lang_code', 1, 'https://ror.org/04are6b10 Sincon (Czechia)'),
(55779, 'https://ror.org/03d8wad17', 'no_lang_code', 1, 'https://ror.org/03d8wad17 Lanex (Czechia)'),
(55780, 'https://ror.org/02tr26h84', 'no_lang_code', 1, 'https://ror.org/02tr26h84 Koh-I-Noor (Czechia)'),
(55781, 'https://ror.org/03hwv4250', 'no_lang_code', 1, 'https://ror.org/03hwv4250 LAO - Průmyslové Systémy (Czechia)'),
(55782, 'https://ror.org/004s1x176', 'no_lang_code', 1, 'https://ror.org/004s1x176 JaP Jacina (Czechia)'),
(55783, 'https://ror.org/00c798y78', 'no_lang_code', 1, 'https://ror.org/00c798y78 Laser-Tech (Czechia)'),
(55784, 'https://ror.org/00j558r43', 'no_lang_code', 1, 'https://ror.org/00j558r43 Kolejconsult & Servis (Czechia)'),
(55785, 'https://ror.org/02bzbbw22', 'no_lang_code', 1, 'https://ror.org/02bzbbw22 LaserTherm (Czechia)'),
(55786, 'https://ror.org/04sr19j82', 'no_lang_code', 1, 'https://ror.org/04sr19j82 Lasvit (Czechia)'),
(55787, 'https://ror.org/02h5et257', 'no_lang_code', 1, 'https://ror.org/02h5et257 Koma (Czechia)'),
(55788, 'https://ror.org/03smjaw84', 'no_lang_code', 1, 'https://ror.org/03smjaw84 Lavaris (Czechia)'),
(55789, 'https://ror.org/02sn3n814', 'cs', 1, 'https://ror.org/02sn3n814 LĆ”zně Poděbrady (Czechia)'),
(55790, 'https://ror.org/01fgqjd55', 'no_lang_code', 1, 'https://ror.org/01fgqjd55 Masoma (Czechia)'),
(55791, 'https://ror.org/006rtrx18', 'no_lang_code', 1, 'https://ror.org/006rtrx18 KomerčnĆ­ ŽelezničnĆ­ Výzkum (Czechia)'),
(55792, 'https://ror.org/010tdmk44', 'no_lang_code', 1, 'https://ror.org/010tdmk44 Lec (Czechia)'),
(55793, 'https://ror.org/0252ba684', 'no_lang_code', 1, 'https://ror.org/0252ba684 Komfort (Czechia)'),
(55794, 'https://ror.org/056y2jv89', 'cs', 1, 'https://ror.org/056y2jv89 JazykovědnĆ© SdruženĆ­ ČeskĆ© Republiky'),
(55795, 'https://ror.org/00gr9gj95', 'no_lang_code', 1, 'https://ror.org/00gr9gj95 jCyte (United States)'),
(55796, 'https://ror.org/030pxca80', 'no_lang_code', 1, 'https://ror.org/030pxca80 Komix (Czechia)'),
(55797, 'https://ror.org/02k13v236', 'no_lang_code', 1, 'https://ror.org/02k13v236 Komutex (Czechia)'),
(55798, 'https://ror.org/005yyvy03', 'no_lang_code', 1, 'https://ror.org/005yyvy03 Lena Chemical (Czechia)'),
(55799, 'https://ror.org/00k2e8z33', 'no_lang_code', 1, 'https://ror.org/00k2e8z33 Koneko (Czechia)'),
(55800, 'https://ror.org/02505ds21', 'cs', 1, 'https://ror.org/02505ds21 Jednota HudebnĆ­ho Divadla'),
(55801, 'https://ror.org/01kj93b22', 'no_lang_code', 1, 'https://ror.org/01kj93b22 Jeku (Czechia)'),
(55802, 'https://ror.org/00j2jd568', 'no_lang_code', 1, 'https://ror.org/00j2jd568 LentiKat''s (Czechia)'),
(55803, 'https://ror.org/0395qzd79', 'no_lang_code', 1, 'https://ror.org/0395qzd79 KonekTel (Czechia)'),
(55804, 'https://ror.org/04fpmef97', 'no_lang_code', 1, 'https://ror.org/04fpmef97 Kontron (Czechia)'),
(55805, 'https://ror.org/011drtn64', 'no_lang_code', 1, 'https://ror.org/011drtn64 Jet Company (Czechia)'),
(55806, 'https://ror.org/016wa7380', 'no_lang_code', 1, 'https://ror.org/016wa7380 JHV Engineering'),
(55807, 'https://ror.org/01qk03z44', 'no_lang_code', 1, 'https://ror.org/01qk03z44 Lescus Cetkovice (Czechia)'),
(55808, 'https://ror.org/01ttd1h48', 'no_lang_code', 1, 'https://ror.org/01ttd1h48 LesoŔkolky (Czechia)'),
(55809, 'https://ror.org/02pe0yp46', 'cs', 1, 'https://ror.org/02pe0yp46 JIC'),
(55810, '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'),
(55811, 'https://ror.org/037dpnh08', 'no_lang_code', 1, 'https://ror.org/037dpnh08 Lesprojekt Východní Čechy (Czechia)'),
(55812, 'https://ror.org/037kt1n40', 'cs', 1, 'https://ror.org/037kt1n40 KoordinačnĆ­ Středisko pro ResortnĆ­ ZdravotnickĆ© InformačnĆ­ SystĆ©my'),
(55813, 'https://ror.org/03p0pyx76', 'cs', 1, 'https://ror.org/03p0pyx76 Lesy JƔchymov'),
(55814, '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'),
(55815, 'https://ror.org/04w2f6891', 'no_lang_code', 1, 'https://ror.org/04w2f6891 Heidenhain (Slovakia)'),
(55816, 'https://ror.org/031ph5b56', 'en', 1, 'https://ror.org/031ph5b56 Forests of the Town of Jirkov Lesy Města Jirkova'),
(55817, 'https://ror.org/0266xtw32', 'cs', 1, 'https://ror.org/0266xtw32 JihočeskĆ© Muzeum v Českých BudějovicĆ­ch'),
(55818, 'https://ror.org/03q5d1a68', 'no_lang_code', 1, 'https://ror.org/03q5d1a68 Lets Fly (Czechia)'),
(55819, 'https://ror.org/0068cft64', 'no_lang_code', 1, 'https://ror.org/0068cft64 Kornet (Czechia)'),
(55820, 'https://ror.org/02aezqa22', 'no_lang_code', 1, 'https://ror.org/02aezqa22 LetiÅ”tě Ostrava Ostrava Airport (Czechia)'),
(55821, 'https://ror.org/04nthjy68', 'no_lang_code', 1, 'https://ror.org/04nthjy68 Jimi (Czechia)'),
(55822, 'https://ror.org/02dkk5v76', 'no_lang_code', 1, 'https://ror.org/02dkk5v76 LetiÅ”tě Vodochody (Czechia) Vodochody Airport'),
(55823, 'https://ror.org/05twg5e95', 'no_lang_code', 1, 'https://ror.org/05twg5e95 Korund BenƔtky (Czechia)'),
(55824, 'https://ror.org/0008w9y84', 'no_lang_code', 1, 'https://ror.org/0008w9y84 Jinpo Plus (Czechia)'),
(55825, 'https://ror.org/02shrym55', 'no_lang_code', 1, 'https://ror.org/02shrym55 Kotouč Štramberk (Czechia)'),
(55826, 'https://ror.org/03mjxex31', 'no_lang_code', 1, 'https://ror.org/03mjxex31 Kotrbatý (Czechia)'),
(55827, 'https://ror.org/0028a6m81', 'no_lang_code', 1, 'https://ror.org/0028a6m81 Koutný (Czechia)'),
(55828, 'https://ror.org/05v80mh43', 'no_lang_code', 1, 'https://ror.org/05v80mh43 JizerskƩ PekƔrny (Czechia)'),
(55829, 'https://ror.org/00bf8wg73', 'no_lang_code', 1, 'https://ror.org/00bf8wg73 Kovo Novak (Czechia)'),
(55830, 'https://ror.org/045jxwb84', 'no_lang_code', 1, 'https://ror.org/045jxwb84 JK envi (Czechia)'),
(55831, 'https://ror.org/01emwg098', 'no_lang_code', 1, 'https://ror.org/01emwg098 Kovolis Hedvikov (Czechia)'),
(55832, 'https://ror.org/033qwae34', 'cs', 1, 'https://ror.org/033qwae34 LiberƔlnƭ institut'),
(55833, 'https://ror.org/02zc9dy23', 'no_lang_code', 1, 'https://ror.org/02zc9dy23 Kovolit (Czechia)'),
(55834, 'https://ror.org/02dddyz58', 'no_lang_code', 1, 'https://ror.org/02dddyz58 Johnson Controls (Czechia)'),
(55835, 'https://ror.org/03s8zxa22', 'no_lang_code', 1, 'https://ror.org/03s8zxa22 Josa (Czechia)'),
(55836, 'https://ror.org/00ajs1721', 'no_lang_code', 1, 'https://ror.org/00ajs1721 Koyo Bearings (Czechia)'),
(55837, 'https://ror.org/016241e94', 'no_lang_code', 1, 'https://ror.org/016241e94 LibereckƩ KotlƔrny Hƶlter (Czechia)'),
(55838, 'https://ror.org/037xrhm50', 'no_lang_code', 1, 'https://ror.org/037xrhm50 LibereckƩ Strojƭrny (Czechia)'),
(55839, 'https://ror.org/02jzd3t55', 'no_lang_code', 1, 'https://ror.org/02jzd3t55 KP Projekt (Czechia)'),
(55840, 'https://ror.org/0218gpe46', 'no_lang_code', 1, 'https://ror.org/0218gpe46 Licolor (Czechia)'),
(55841, 'https://ror.org/04vvq5g41', 'no_lang_code', 1, 'https://ror.org/04vvq5g41 KR Důlní služby (Czechia)'),
(55842, 'https://ror.org/022pcr506', 'no_lang_code', 1, 'https://ror.org/022pcr506 Licon Heat (Czechia)'),
(55843, 'https://ror.org/024tjte62', 'cs', 1, 'https://ror.org/024tjte62 KrajskĆ” HygienickĆ” Stanice Olomouci'),
(55844, 'https://ror.org/02341a605', 'cs', 1, 'https://ror.org/02341a605 KrajskĆ” nemocnice T. Bati'),
(55845, 'https://ror.org/00f9cn816', 'no_lang_code', 1, 'https://ror.org/00f9cn816 Lifetech (Czechia)'),
(55846, 'https://ror.org/050t4db88', 'cs', 1, 'https://ror.org/050t4db88 Sokolov Muzeum'),
(55847, 'https://ror.org/04g481a83', 'no_lang_code', 1, 'https://ror.org/04g481a83 Lift Servis (Czechia)'),
(55848, 'https://ror.org/00rng3h03', 'no_lang_code', 1, 'https://ror.org/00rng3h03 JV Projekt (Czechia)'),
(55849, 'https://ror.org/010b9pv54', 'no_lang_code', 1, 'https://ror.org/010b9pv54 LightGate (Czechia)'),
(55850, 'https://ror.org/03w4cze07', 'cs', 1, 'https://ror.org/03w4cze07 KrĆ”lovskĆ” kanonie premonstrĆ”tÅÆ na Strahově Strahov Monastery'),
(55851, 'https://ror.org/03vcy9z87', 'no_lang_code', 1, 'https://ror.org/03vcy9z87 KrampeHarex (Czechia)'),
(55852, 'https://ror.org/01rwf0y22', 'no_lang_code', 1, 'https://ror.org/01rwf0y22 Krill (Czechia)'),
(55853, 'https://ror.org/003a1f534', 'no_lang_code', 1, 'https://ror.org/003a1f534 Central European Media Enterprises (Czechia)'),
(55854, 'https://ror.org/05rgmyf21', 'no_lang_code', 1, 'https://ror.org/05rgmyf21 Kappa-P (Czechia)'),
(55855, 'https://ror.org/040z48t11', 'no_lang_code', 1, 'https://ror.org/040z48t11 KMB systems (Czechia)'),
(55856, 'https://ror.org/04h1j5a33', 'no_lang_code', 1, 'https://ror.org/04h1j5a33 K Profi (Czechia)'),
(55857, 'https://ror.org/00zbgzk38', 'cs', 1, 'https://ror.org/00zbgzk38 Kristina Colloredo-MansfeldovĆ”'),
(55858, 'https://ror.org/046yszb07', 'no_lang_code', 1, 'https://ror.org/046yszb07 Ligranit (Czechia)'),
(55859, 'https://ror.org/0491jra02', 'no_lang_code', 1, 'https://ror.org/0491jra02 KBK fire (Czechia)'),
(55860, 'https://ror.org/00r9ry950', 'no_lang_code', 1, 'https://ror.org/00r9ry950 K and K Technology (Czechia)'),
(55861, 'https://ror.org/05bz35w69', 'cs', 1, 'https://ror.org/05bz35w69 KrkonoŔskÔ Realitní'),
(55862, 'https://ror.org/04vn8dh18', 'no_lang_code', 1, 'https://ror.org/04vn8dh18 K2pharm (Czechia)'),
(55863, 'https://ror.org/038nh6c68', 'no_lang_code', 1, 'https://ror.org/038nh6c68 Kromilk (Czechia)'),
(55864, 'https://ror.org/01mz2aa07', 'no_lang_code', 1, 'https://ror.org/01mz2aa07 Kabelovna Kabex (Czechia)'),
(55865, 'https://ror.org/04qt5ez29', 'no_lang_code', 1, 'https://ror.org/04qt5ez29 Lihovar Lžín (Czechia)'),
(55866, 'https://ror.org/01b34qr50', 'no_lang_code', 1, 'https://ror.org/01b34qr50 Slovacke Strojirny (Czechia)'),
(55867, 'https://ror.org/0435zxb65', 'no_lang_code', 1, 'https://ror.org/0435zxb65 Kaipan (Czechia)'),
(55868, 'https://ror.org/003c3rv52', 'no_lang_code', 1, 'https://ror.org/003c3rv52 KÅ  Prefa (Czechia)'),
(55869, 'https://ror.org/04m7h9q42', 'no_lang_code', 1, 'https://ror.org/04m7h9q42 Limagrain (Czechia)'),
(55870, 'https://ror.org/01a1d1t26', 'no_lang_code', 1, 'https://ror.org/01a1d1t26 Lime Business Consulting (Czechia)'),
(55871, 'https://ror.org/03nd93634', 'no_lang_code', 1, 'https://ror.org/03nd93634 KSM Castings (Czechia)'),
(55872, 'https://ror.org/05r1nkw66', 'no_lang_code', 1, 'https://ror.org/05r1nkw66 Lineq (Czechia)'),
(55873, 'https://ror.org/026nvac34', 'no_lang_code', 1, 'https://ror.org/026nvac34 Lingea (Czechia)'),
(55874, 'https://ror.org/02tj78555', 'no_lang_code', 1, 'https://ror.org/02tj78555 Metra Blansko (Czechia)'),
(55875, 'https://ror.org/009qbz979', 'no_lang_code', 1, 'https://ror.org/009qbz979 Lintech (Czechia)'),
(55876, 'https://ror.org/05qrxbp40', 'no_lang_code', 1, 'https://ror.org/05qrxbp40 Lisi Automotive Form (Czechia)'),
(55877, 'https://ror.org/03qj6qh62', 'no_lang_code', 1, 'https://ror.org/03qj6qh62 Lyckeby Amylex (Czechia)'),
(55878, 'https://ror.org/0212my482', 'no_lang_code', 1, 'https://ror.org/0212my482 Metroprojekt Praha (Czechia)'),
(55879, 'https://ror.org/02md2rw68', 'no_lang_code', 1, 'https://ror.org/02md2rw68 Logis (Czechia)'),
(55880, 'https://ror.org/05hakte81', 'no_lang_code', 1, 'https://ror.org/05hakte81 LogopedickĆ” společnost MiloÅ”e SovĆ”ka (Czechia)'),
(55881, 'https://ror.org/05xk8yj88', 'no_lang_code', 1, 'https://ror.org/05xk8yj88 M Silnice (Czechia)'),
(55882, 'https://ror.org/05mk8pj48', 'no_lang_code', 1, 'https://ror.org/05mk8pj48 Metrostav (Czechia)'),
(55883, 'https://ror.org/053v42m50', 'no_lang_code', 1, 'https://ror.org/053v42m50 BrainScope (Czechia)'),
(55884, 'https://ror.org/02aaqrp97', 'no_lang_code', 1, 'https://ror.org/02aaqrp97 Lovochemie (Czechia)'),
(55885, 'https://ror.org/02273n860', 'no_lang_code', 1, 'https://ror.org/02273n860 Elvia (Czechia)'),
(55886, 'https://ror.org/029p38t95', 'no_lang_code', 1, 'https://ror.org/029p38t95 MEZ (Czechia)'),
(55887, 'https://ror.org/03qv00g45', 'no_lang_code', 1, 'https://ror.org/03qv00g45 Mavel (Czechia)'),
(55888, 'https://ror.org/03btg9194', 'cs', 1, 'https://ror.org/03btg9194 MezinÔrodní TestovÔní Drůbeže'),
(55889, 'https://ror.org/02ps7ts75', 'no_lang_code', 1, 'https://ror.org/02ps7ts75 MGE Data (Czechia)'),
(55890, 'https://ror.org/04wxr5s39', 'no_lang_code', 1, 'https://ror.org/04wxr5s39 MIA Studio (Czechia)'),
(55891, 'https://ror.org/05q9d6816', 'no_lang_code', 1, 'https://ror.org/05q9d6816 Mefi (Czechia)'),
(55892, 'https://ror.org/03g5kfc06', 'no_lang_code', 1, 'https://ror.org/03g5kfc06 MICo (Czechia)'),
(55893, 'https://ror.org/04pcraj31', 'en', 1, 'https://ror.org/04pcraj31 Museum of the Bohemian Paradise in Turnov Muzeum ČeskĆ©ho rĆ”je v Turnově'),
(55894, 'https://ror.org/03f1tq367', 'no_lang_code', 1, 'https://ror.org/03f1tq367 M line (Czechia)'),
(55895, 'https://ror.org/00hf9b998', 'no_lang_code', 1, 'https://ror.org/00hf9b998 Micos (Czechia)'),
(55896, 'https://ror.org/003prxb56', 'cs', 1, 'https://ror.org/003prxb56 Muzeum Cheb'),
(55897, 'https://ror.org/026xyq320', 'no_lang_code', 1, 'https://ror.org/026xyq320 Mikroelektronika (Czechia)'),
(55898, 'https://ror.org/00hf8n006', 'no_lang_code', 1, 'https://ror.org/00hf8n006 Mikroklima (Czechia)'),
(55899, 'https://ror.org/05cvdz556', 'cs', 1, 'https://ror.org/05cvdz556 Muzeum Jana Amose KomenskƩho'),
(55900, 'https://ror.org/01ktyn983', 'cs', 1, 'https://ror.org/01ktyn983 Muzeum jihovýchodnĆ­ Moravy ve ZlĆ­ně'),
(55901, 'https://ror.org/02dzmns02', 'no_lang_code', 1, 'https://ror.org/02dzmns02 Mikrop Čebín (Czechia)'),
(55902, 'https://ror.org/058g1v616', 'no_lang_code', 1, 'https://ror.org/058g1v616 Madeta (Czechia)'),
(55903, 'https://ror.org/02jygx492', 'cs', 1, 'https://ror.org/02jygx492 Museum of Kroměříž'),
(55904, 'https://ror.org/01dbp7q39', 'no_lang_code', 1, 'https://ror.org/01dbp7q39 Mikrotechna Praha (Czechia)'),
(55905, 'https://ror.org/04nh5he21', 'no_lang_code', 1, 'https://ror.org/04nh5he21 MaDeX (Czechia)'),
(55906, 'https://ror.org/049efks73', 'en', 1, 'https://ror.org/049efks73 Museum of the City of Usti nad Labem'),
(55907, 'https://ror.org/05nazff88', 'cs', 1, 'https://ror.org/05nazff88 Muzeum Novojičƭnska'),
(55908, 'https://ror.org/02ak6z209', 'no_lang_code', 1, 'https://ror.org/02ak6z209 Mvb Opava (Czechia)'),
(55909, 'https://ror.org/05qxpp357', 'no_lang_code', 1, 'https://ror.org/05qxpp357 Magna Exteriors (Czechia)'),
(55910, 'https://ror.org/03f889737', 'no_lang_code', 1, 'https://ror.org/03f889737 Milcom Servis (Czechia)'),
(55911, 'https://ror.org/02ean3b70', 'no_lang_code', 1, 'https://ror.org/02ean3b70 Mvvs (Czechia)'),
(55912, 'https://ror.org/01d1a4y61', 'no_lang_code', 1, 'https://ror.org/01d1a4y61 Malina Safety (Czechia)'),
(55913, 'https://ror.org/02askmp96', 'no_lang_code', 1, 'https://ror.org/02askmp96 Mycroft Mind (Czechia)'),
(55914, 'https://ror.org/01xtr4h58', 'no_lang_code', 1, 'https://ror.org/01xtr4h58 MydlÔřka (Czechia)'),
(55915, 'https://ror.org/03xcw7h27', 'no_lang_code', 1, 'https://ror.org/03xcw7h27 Malus (Czechia)'),
(55916, 'https://ror.org/0042d3p02', 'no_lang_code', 1, 'https://ror.org/0042d3p02 MZ Liberec (Czechia)'),
(55917, 'https://ror.org/05t9frg20', 'no_lang_code', 1, 'https://ror.org/05t9frg20 MAP Systems (Czechia)'),
(55918, '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'),
(55919, 'https://ror.org/02vw2x065', 'no_lang_code', 1, 'https://ror.org/02vw2x065 Minerva Boskovice (Czechia)'),
(55920, 'https://ror.org/03pzk8p04', 'no_lang_code', 1, 'https://ror.org/03pzk8p04 MARAT Engineering (Czechia)'),
(55921, 'https://ror.org/031ykaj51', 'no_lang_code', 1, 'https://ror.org/031ykaj51 Markent (Czechia)'),
(55922, 'https://ror.org/04f1k6x45', 'no_lang_code', 1, 'https://ror.org/04f1k6x45 Marshal Logistic (Czechia)'),
(55923, 'https://ror.org/013kx3552', 'cs', 1, 'https://ror.org/013kx3552 Bohuslav Martinu Foundation Nadace Bohuslava MartinÅÆ'),
(55924, 'https://ror.org/00hbn9p31', 'no_lang_code', 1, 'https://ror.org/00hbn9p31 MP KrƔsno (Czechia)'),
(55925, 'https://ror.org/04d9jqv19', 'no_lang_code', 1, 'https://ror.org/04d9jqv19 Minova Bohemia (Czechia)'),
(55926, 'https://ror.org/00c4q9a37', 'no_lang_code', 1, 'https://ror.org/00c4q9a37 Materialise (Czechia)'),
(55927, 'https://ror.org/01hrdvm22', 'cs', 1, 'https://ror.org/01hrdvm22 LeoÅ” JanĆ”Äek Foundation Nadace LeoÅ”e JanĆ”Äka'),
(55928, 'https://ror.org/05mcn5a93', 'cs', 1, 'https://ror.org/05mcn5a93 MAS DolnĆ­ Morava'),
(55929, 'https://ror.org/00debpx34', 'cs', 1, 'https://ror.org/00debpx34 MÅ  Na Smetance'),
(55930, 'https://ror.org/03t5pkx69', 'cs', 1, 'https://ror.org/03t5pkx69 MateřskĆ” Å”kolka SokolovskĆ”'),
(55931, 'https://ror.org/028gfev79', 'no_lang_code', 1, 'https://ror.org/028gfev79 Mitas (Czechia)'),
(55932, 'https://ror.org/0542dkz21', 'en', 1, 'https://ror.org/0542dkz21 Czech Environmental Partnership Foundation Nadace PartnerstvĆ­'),
(55933, 'https://ror.org/00gfyj628', 'no_lang_code', 1, 'https://ror.org/00gfyj628 Matex PM (Czechia)'),
(55934, 'https://ror.org/02t9fdk79', 'no_lang_code', 1, 'https://ror.org/02t9fdk79 MJM Litovel (Czechia)'),
(55935, 'https://ror.org/04xvyz885', 'no_lang_code', 1, 'https://ror.org/04xvyz885 Mavet (Czechia)'),
(55936, 'https://ror.org/0222yz688', 'cs', 1, 'https://ror.org/0222yz688 Nadace pro rozvoj architektury a stavitelstvĆ­'),
(55937, 'https://ror.org/01g7zqg94', 'cs', 1, 'https://ror.org/01g7zqg94 OleŔnice Dairy'),
(55938, 'https://ror.org/016xeth45', 'no_lang_code', 1, 'https://ror.org/016xeth45 Nadop-výroba NÔbytku (Czechia)'),
(55939, 'https://ror.org/00w673w61', 'no_lang_code', 1, 'https://ror.org/00w673w61 MB Pharma (Czechia)'),
(55940, 'https://ror.org/02csezg26', 'no_lang_code', 1, 'https://ror.org/02csezg26 MND Drilling & Services (Czechia)'),
(55941, 'https://ror.org/03vb3t637', 'no_lang_code', 1, 'https://ror.org/03vb3t637 Mc Velox (Czechia)'),
(55942, 'https://ror.org/05d5vda41', 'no_lang_code', 1, 'https://ror.org/05d5vda41 Nafigate Corporation (Czechia)'),
(55943, 'https://ror.org/05fg5zm77', 'no_lang_code', 1, 'https://ror.org/05fg5zm77 Modeco (Czechia)'),
(55944, 'https://ror.org/04320pg53', 'no_lang_code', 1, 'https://ror.org/04320pg53 MEAS Prog (Czechia)'),
(55945, 'https://ror.org/01pm3bs44', 'no_lang_code', 1, 'https://ror.org/01pm3bs44 Mechanical Design (Czechia)'),
(55946, 'https://ror.org/00tcadq57', 'no_lang_code', 1, 'https://ror.org/00tcadq57 PlastovƩ Stavebnƭ (Czechia)'),
(55947, 'https://ror.org/018hfge71', 'no_lang_code', 1, 'https://ror.org/018hfge71 Měď Povrly (Czechia)'),
(55948, 'https://ror.org/0268cyt91', 'no_lang_code', 1, 'https://ror.org/0268cyt91 Medetron (Czechia)'),
(55949, 'https://ror.org/02v9vwf84', 'no_lang_code', 1, 'https://ror.org/02v9vwf84 ModemTec (Czechia)'),
(55950, 'https://ror.org/04gf6tr14', 'no_lang_code', 1, 'https://ror.org/04gf6tr14 Fraus Publishing (Czechia) NakladatelstvĆ­ Fraus'),
(55951, 'https://ror.org/036cdfc81', 'no_lang_code', 1, 'https://ror.org/036cdfc81 Modřany Power (Czechia)'),
(55952, 'https://ror.org/03er5fw87', 'no_lang_code', 1, 'https://ror.org/03er5fw87 Nakladatelstvƭ TriƔda (Czechia)'),
(55953, 'https://ror.org/027pdc339', 'no_lang_code', 1, 'https://ror.org/027pdc339 NAM System (Czechia)'),
(55954, 'https://ror.org/04ztzvw60', 'no_lang_code', 1, 'https://ror.org/04ztzvw60 ModularTest (Czechia)'),
(55955, 'https://ror.org/01ndypd13', 'no_lang_code', 1, 'https://ror.org/01ndypd13 NanoTrade (Czechia)'),
(55956, 'https://ror.org/05n4ryh34', 'no_lang_code', 1, 'https://ror.org/05n4ryh34 Median (Czechia)'),
(55957, 'https://ror.org/02gx1h855', 'no_lang_code', 1, 'https://ror.org/02gx1h855 Mediap (Czechia)'),
(55958, 'https://ror.org/059wezj60', 'no_lang_code', 1, 'https://ror.org/059wezj60 Medicalc Software (Czechia)'),
(55959, 'https://ror.org/01z78yd74', 'cs', 1, 'https://ror.org/01z78yd74 Medico'),
(55960, 'https://ror.org/026bcj513', 'no_lang_code', 1, 'https://ror.org/026bcj513 MediCom (Czechia)'),
(55961, 'https://ror.org/043xc7z89', 'no_lang_code', 1, 'https://ror.org/043xc7z89 Molaris (Czechia)');
INSERT INTO `rors` VALUES
(55962, 'https://ror.org/0431dgb36', 'no_lang_code', 1, 'https://ror.org/0431dgb36 Medicprogress (Czechia)'),
(55963, 'https://ror.org/012eyjh05', 'no_lang_code', 1, 'https://ror.org/012eyjh05 Nanovia (Czechia)'),
(55964, 'https://ror.org/03f585086', 'no_lang_code', 1, 'https://ror.org/03f585086 Narex Sat (Czechia)'),
(55965, 'https://ror.org/04j3tfg80', 'no_lang_code', 1, 'https://ror.org/04j3tfg80 Medicton (Czechia)'),
(55966, 'https://ror.org/03cse4829', 'no_lang_code', 1, 'https://ror.org/03cse4829 Laboratoř Monitoring Praha (Czechia)'),
(55967, 'https://ror.org/01f827628', 'no_lang_code', 1, 'https://ror.org/01f827628 Mood International (Czechia)'),
(55968, 'https://ror.org/02bvkk348', 'cs', 1, 'https://ror.org/02bvkk348 NƔrodnƭ Akademie RegionƔlnƭho Managementu'),
(55969, 'https://ror.org/055q9j131', 'no_lang_code', 1, 'https://ror.org/055q9j131 Moraprim (Czechia)'),
(55970, 'https://ror.org/043mq8146', 'no_lang_code', 1, 'https://ror.org/043mq8146 MediGEN'),
(55971, 'https://ror.org/05b4e2111', 'cs', 1, 'https://ror.org/05b4e2111 National Stud at Kladruby nad Labem NĆ”rodnĆ­ hřebčƭn Kladruby nad Labem'),
(55972, 'https://ror.org/05ej13b74', 'cs', 1, 'https://ror.org/05ej13b74 NÔrodní Rada Osob se Zdravotním Postižením'),
(55973, 'https://ror.org/04n2a2465', 'no_lang_code', 1, 'https://ror.org/04n2a2465 Medihope (Czechia)'),
(55974, 'https://ror.org/04f2mnw52', 'no_lang_code', 1, 'https://ror.org/04f2mnw52 Moravia Cans (Czechia)'),
(55975, 'https://ror.org/04z4rna54', 'no_lang_code', 1, 'https://ror.org/04z4rna54 Interlacto (Czechia)'),
(55976, 'https://ror.org/05rjrds16', 'no_lang_code', 1, 'https://ror.org/05rjrds16 Moravoseed (Czechia)'),
(55977, 'https://ror.org/04gm8yz40', 'no_lang_code', 1, 'https://ror.org/04gm8yz40 MeDiLa'),
(55978, 'https://ror.org/03pt8bk73', 'cs', 1, 'https://ror.org/03pt8bk73 NĆ”rodnĆ­ ReferenčnĆ­ Centrum'),
(55979, 'https://ror.org/00qdpx246', 'en', 1, 'https://ror.org/00qdpx246 National Network of Healthy Cities NĆ”rodnĆ­ SĆ­Å„ Zdravých Měst'),
(55980, 'https://ror.org/04pgpfa18', 'no_lang_code', 1, 'https://ror.org/04pgpfa18 Mediware (Czechia)'),
(55981, 'https://ror.org/056kzn313', 'cs', 1, 'https://ror.org/056kzn313 NÔrodní Ústav Lidové Kultury'),
(55982, 'https://ror.org/05nynx616', 'en', 1, 'https://ror.org/05nynx616 EUC Group'),
(55983, 'https://ror.org/02gbye032', 'no_lang_code', 1, 'https://ror.org/02gbye032 Medkonsult (Czechia)'),
(55984, 'https://ror.org/037m48527', 'no_lang_code', 1, 'https://ror.org/037m48527 Native PR (Czechia)'),
(55985, 'https://ror.org/03ddp7810', 'no_lang_code', 1, 'https://ror.org/03ddp7810 Agrana (Czechia)'),
(55986, 'https://ror.org/02wys4090', 'no_lang_code', 1, 'https://ror.org/02wys4090 Natura (Czechia)'),
(55987, 'https://ror.org/00jpc6f46', 'no_lang_code', 1, 'https://ror.org/00jpc6f46 Megat (Czechia)'),
(55988, 'https://ror.org/042c1f005', 'no_lang_code', 1, 'https://ror.org/042c1f005 Moravian-Silesian Energy Cluster (Czechia)'),
(55989, 'https://ror.org/02bg32h47', 'no_lang_code', 1, 'https://ror.org/02bg32h47 Natural (Czechia)'),
(55990, 'https://ror.org/01y7r8c03', 'no_lang_code', 1, 'https://ror.org/01y7r8c03 NaturaServis (Czechia)'),
(55991, 'https://ror.org/03w8r3912', 'no_lang_code', 1, 'https://ror.org/03w8r3912 More (Czechia)'),
(55992, 'https://ror.org/05774jg90', 'no_lang_code', 1, 'https://ror.org/05774jg90 NAUPO (Czechia)'),
(55993, 'https://ror.org/00z95qt34', 'no_lang_code', 1, 'https://ror.org/00z95qt34 NAV Flight Services (Czechia)'),
(55994, 'https://ror.org/00mv65m72', 'no_lang_code', 1, 'https://ror.org/00mv65m72 Mosaic Event Management (United States)'),
(55995, 'https://ror.org/00wjmzv89', 'no_lang_code', 1, 'https://ror.org/00wjmzv89 Mepatek (Czechia)'),
(55996, 'https://ror.org/05mh9zj78', 'no_lang_code', 1, 'https://ror.org/05mh9zj78 Navertica (Czechia)'),
(55997, 'https://ror.org/04ygsjk43', 'no_lang_code', 1, 'https://ror.org/04ygsjk43 NELAN (Czechia)'),
(55998, 'https://ror.org/02djs4g52', 'no_lang_code', 1, 'https://ror.org/02djs4g52 Moser (Czechia)'),
(55999, 'https://ror.org/038evr161', 'no_lang_code', 1, 'https://ror.org/038evr161 Merci (Czechia)'),
(56000, 'https://ror.org/02vq7pf97', 'no_lang_code', 1, 'https://ror.org/02vq7pf97 SCIA (Czechia)'),
(56001, 'https://ror.org/0417bae26', 'no_lang_code', 1, 'https://ror.org/0417bae26 Merica (Czechia)'),
(56002, 'https://ror.org/0223gc275', 'cs', 1, 'https://ror.org/0223gc275 Nemocnice Atlas'),
(56003, 'https://ror.org/055vwz968', 'en', 1, 'https://ror.org/055vwz968 Blansko Hospital Nemocnice Blansko'),
(56004, 'https://ror.org/029081n45', 'no_lang_code', 1, 'https://ror.org/029081n45 FGR Factory (Czechia)'),
(56005, 'https://ror.org/044k3hm62', 'cs', 1, 'https://ror.org/044k3hm62 Nemocnice Břeclav'),
(56006, 'https://ror.org/03eh0pq56', 'no_lang_code', 1, 'https://ror.org/03eh0pq56 Merko'),
(56007, 'https://ror.org/054tjtv41', 'no_lang_code', 1, 'https://ror.org/054tjtv41 Motor Jikov (Czechia)'),
(56008, 'https://ror.org/01deknt13', 'no_lang_code', 1, 'https://ror.org/01deknt13 Motorpal (Czechia)'),
(56009, 'https://ror.org/016scq007', 'en', 1, 'https://ror.org/016scq007 HavlƭčkÅÆv Brod Hospital Nemocnice HavlƭčkÅÆv Brod'),
(56010, 'https://ror.org/01ghhpv55', 'no_lang_code', 1, 'https://ror.org/01ghhpv55 Motran Research (Czechia)'),
(56011, 'https://ror.org/0377qb339', 'no_lang_code', 1, 'https://ror.org/0377qb339 Merkurtoys (Czechia)'),
(56012, 'https://ror.org/017pyf298', 'cs', 1, 'https://ror.org/017pyf298 Nemocnice Jablonec nad Nisou'),
(56013, 'https://ror.org/02k944677', 'no_lang_code', 1, 'https://ror.org/02k944677 Mero Čr (Czechia)'),
(56014, 'https://ror.org/03qmjt802', 'no_lang_code', 1, 'https://ror.org/03qmjt802 MPD Plus (Czechia)'),
(56015, 'https://ror.org/00g6aeb47', 'cs', 1, 'https://ror.org/00g6aeb47 OblastnĆ­ nemocnice Kladno'),
(56016, 'https://ror.org/022gdx219', 'no_lang_code', 1, 'https://ror.org/022gdx219 MPower (Czechia)'),
(56017, 'https://ror.org/00j45v080', 'no_lang_code', 1, 'https://ror.org/00j45v080 MrƔz Agro (Czechia)'),
(56018, 'https://ror.org/04w0pnx62', 'cs', 1, 'https://ror.org/04w0pnx62 Nemocnice Milosrdných bratří'),
(56019, 'https://ror.org/04yp9az05', 'no_lang_code', 1, 'https://ror.org/04yp9az05 MRB Sazovice (Czechia)'),
(56020, 'https://ror.org/04tj33k86', 'en', 1, 'https://ror.org/04tj33k86 Church of the Merciful Sisters of Sts. Karel Boromejský'),
(56021, 'https://ror.org/04fwbdj26', 'cs', 1, 'https://ror.org/04fwbdj26 MěstskĆ” Nemocnice ČÔslav'),
(56022, 'https://ror.org/05hy29v76', 'cs', 1, 'https://ror.org/05hy29v76 Nemocnice Na PleŔi'),
(56023, 'https://ror.org/05gvxpc78', 'no_lang_code', 1, 'https://ror.org/05gvxpc78 MSA (Czechia)'),
(56024, 'https://ror.org/0558ky526', 'cs', 1, 'https://ror.org/0558ky526 MěstskĆ” Nemocnice Ostrava'),
(56025, 'https://ror.org/03hh11c46', 'no_lang_code', 1, 'https://ror.org/03hh11c46 MSV Metal StudƩnka (Czechia)'),
(56026, 'https://ror.org/04gc4rt71', 'cs', 1, 'https://ror.org/04gc4rt71 Nemocnice Prachatice'),
(56027, 'https://ror.org/036x9s723', 'no_lang_code', 1, 'https://ror.org/036x9s723 MTMP (Czechia)'),
(56028, 'https://ror.org/03n2kr187', 'cs', 1, 'https://ror.org/03n2kr187 MěstskĆ© lesy Chomutov'),
(56029, 'https://ror.org/01fgq2q09', 'cs', 1, 'https://ror.org/01fgq2q09 MěstskĆ© lesy Doksy'),
(56030, 'https://ror.org/022040e63', 'no_lang_code', 1, 'https://ror.org/022040e63 Murus (Czechia)'),
(56031, 'https://ror.org/02p4zk941', 'cs', 1, 'https://ror.org/02p4zk941 Nemocnice Sokolov'),
(56032, 'https://ror.org/00ar31v66', 'cs', 1, 'https://ror.org/00ar31v66 MěstskĆ© lesy Hradec KrĆ”lovĆ©'),
(56033, 'https://ror.org/05hwjr867', 'en', 1, 'https://ror.org/05hwjr867 Municipal Museum in Celakovice MěstskĆ© muzeum v ČelĆ”kovicĆ­ch'),
(56034, 'https://ror.org/05bqykp48', 'cs', 1, 'https://ror.org/05bqykp48 Nemocnice Třebƭč'),
(56035, 'https://ror.org/03ne0ps53', 'cs', 1, 'https://ror.org/03ne0ps53 Nemocnice u Sv. Jiří'),
(56036, 'https://ror.org/02pw80027', 'cs', 1, 'https://ror.org/02pw80027 Nemocnice VyŔkov'),
(56037, 'https://ror.org/046cz2w20', 'no_lang_code', 1, 'https://ror.org/046cz2w20 Nicolet (Czechia)'),
(56038, 'https://ror.org/05cf3m547', 'cs', 1, 'https://ror.org/05cf3m547 Nemocnice Znojmo'),
(56039, 'https://ror.org/00xv3af28', 'no_lang_code', 1, 'https://ror.org/00xv3af28 Nakladatelstvƭ LidovƩ Noviny (Czechia)'),
(56040, 'https://ror.org/01t9ygb95', 'no_lang_code', 1, 'https://ror.org/01t9ygb95 NMS Market Research (Czechia)'),
(56041, 'https://ror.org/02tg1a160', 'no_lang_code', 1, 'https://ror.org/02tg1a160 Ness Technologies'),
(56042, 'https://ror.org/01c8asw96', 'no_lang_code', 1, 'https://ror.org/01c8asw96 Nodus (Norway)'),
(56043, 'https://ror.org/051hq3021', 'no_lang_code', 1, 'https://ror.org/051hq3021 CTS Corporation (Czechia)'),
(56044, 'https://ror.org/02zsesr42', 'no_lang_code', 1, 'https://ror.org/02zsesr42 Net-system'),
(56045, 'https://ror.org/01vf7th45', 'no_lang_code', 1, 'https://ror.org/01vf7th45 Nortech (Czechia)'),
(56046, 'https://ror.org/04fwb5b39', 'no_lang_code', 1, 'https://ror.org/04fwb5b39 Net4gas (Czechia)'),
(56047, 'https://ror.org/00609hp35', 'no_lang_code', 1, 'https://ror.org/00609hp35 Netcope Technologies (Czechia)'),
(56048, 'https://ror.org/0447ggh32', 'no_lang_code', 1, 'https://ror.org/0447ggh32 Nethost (Czechia)'),
(56049, 'https://ror.org/055hmgs82', 'no_lang_code', 1, 'https://ror.org/055hmgs82 Network Group (Czechia)'),
(56050, 'https://ror.org/028yqyj67', 'no_lang_code', 1, 'https://ror.org/028yqyj67 New Gen (Czechia)'),
(56051, 'https://ror.org/03d795g20', 'no_lang_code', 1, 'https://ror.org/03d795g20 Newton Media (Czechia)'),
(56052, 'https://ror.org/011cj7r81', 'no_lang_code', 1, 'https://ror.org/011cj7r81 OstravskĆ© MěstskĆ© Lesy a Zeleň (Czechia)'),
(56053, 'https://ror.org/000kv2m87', 'no_lang_code', 1, 'https://ror.org/000kv2m87 Ostroj (Czechia)'),
(56054, 'https://ror.org/0059c0s27', 'no_lang_code', 1, 'https://ror.org/0059c0s27 Newton Technologies (Czechia)'),
(56055, 'https://ror.org/0430gjw29', 'no_lang_code', 1, 'https://ror.org/0430gjw29 Valbek (Czechia)'),
(56056, 'https://ror.org/04r05zv91', 'no_lang_code', 1, 'https://ror.org/04r05zv91 Osvětlenƭ Černoch (Czechia)'),
(56057, 'https://ror.org/025k4tn70', 'no_lang_code', 1, 'https://ror.org/025k4tn70 Novatisk (Czechia)'),
(56058, 'https://ror.org/0349gkc55', 'no_lang_code', 1, 'https://ror.org/0349gkc55 Obchodnƭ TiskƔrny Kolƭn'),
(56059, 'https://ror.org/04v75js20', 'no_lang_code', 1, 'https://ror.org/04v75js20 Noventis (Czechia)'),
(56060, 'https://ror.org/038ntmm55', 'no_lang_code', 1, 'https://ror.org/038ntmm55 Nexum Trilog (Czechia)'),
(56061, 'https://ror.org/02pgy4q18', 'no_lang_code', 1, 'https://ror.org/02pgy4q18 Noza (Czechia)'),
(56062, 'https://ror.org/041wbg141', 'no_lang_code', 1, 'https://ror.org/041wbg141 Ovus (Czechia)'),
(56063, 'https://ror.org/04cs4hx53', 'no_lang_code', 1, 'https://ror.org/04cs4hx53 NTD Group (Czechia)'),
(56064, 'https://ror.org/0209axq03', 'no_lang_code', 1, 'https://ror.org/0209axq03 OZM Research (Czechia)'),
(56065, 'https://ror.org/01xx5km06', 'no_lang_code', 1, 'https://ror.org/01xx5km06 NutriVet (Czechia)'),
(56066, 'https://ror.org/010xshk05', 'no_lang_code', 1, 'https://ror.org/010xshk05 PolabskƩ MlƩkƔrny (Czechia)'),
(56067, 'https://ror.org/01f3d0y31', 'no_lang_code', 1, 'https://ror.org/01f3d0y31 Nuvia (Czechia)'),
(56068, 'https://ror.org/002jh6a02', 'no_lang_code', 1, 'https://ror.org/002jh6a02 P and L (Czechia)'),
(56069, 'https://ror.org/02kxz7t24', 'no_lang_code', 1, 'https://ror.org/02kxz7t24 NWT (Czechia)'),
(56070, 'https://ror.org/055h4jb02', 'no_lang_code', 1, 'https://ror.org/055h4jb02 P and S (Czechia)'),
(56071, 'https://ror.org/01pfc0902', 'no_lang_code', 1, 'https://ror.org/01pfc0902 Nyklƭček (Czechia)'),
(56072, 'https://ror.org/01nkde212', 'no_lang_code', 1, 'https://ror.org/01nkde212 Pardam (Czechia)'),
(56073, 'https://ror.org/02mnc6m50', 'cs', 1, 'https://ror.org/02mnc6m50 PolabskƩ Muzeum'),
(56074, 'https://ror.org/05pq72r61', 'cs', 1, 'https://ror.org/05pq72r61 Poliklinika BudějovickĆ”'),
(56075, 'https://ror.org/00v4k2341', 'no_lang_code', 1, 'https://ror.org/00v4k2341 O.K. Servis Plus (Czechia)'),
(56076, 'https://ror.org/02d03yg51', 'no_lang_code', 1, 'https://ror.org/02d03yg51 Poll (Czechia)'),
(56077, 'https://ror.org/00q0ej829', 'no_lang_code', 1, 'https://ror.org/00q0ej829 PPF (Czechia)'),
(56078, 'https://ror.org/03s703b14', 'no_lang_code', 1, 'https://ror.org/03s703b14 Polpur (Czechia)'),
(56079, 'https://ror.org/01rq3me18', 'no_lang_code', 1, 'https://ror.org/01rq3me18 Polycase (Czechia)'),
(56080, 'https://ror.org/010e8xz82', 'no_lang_code', 1, 'https://ror.org/010e8xz82 Polycom (Czechia)'),
(56081, 'https://ror.org/03x1kny90', 'no_lang_code', 1, 'https://ror.org/03x1kny90 Palivový KombinÔt Ústí (Czechia)'),
(56082, 'https://ror.org/022psyh04', 'no_lang_code', 1, 'https://ror.org/022psyh04 Polyos (Czechia)'),
(56083, 'https://ror.org/05h3e9g05', 'cs', 1, 'https://ror.org/05h3e9g05 ObchodnĆ­ Akademie'),
(56084, 'https://ror.org/05akn9t25', 'no_lang_code', 1, 'https://ror.org/05akn9t25 Polypress (Czechia)'),
(56085, 'https://ror.org/0235qjz17', 'no_lang_code', 1, 'https://ror.org/0235qjz17 Panasonic (Czechia)'),
(56086, 'https://ror.org/01fjwg942', 'no_lang_code', 1, 'https://ror.org/01fjwg942 Ponast (Czechia)'),
(56087, 'https://ror.org/04cpbr209', 'en', 1, 'https://ror.org/04cpbr209 Regional Art Gallery Liberec'),
(56088, 'https://ror.org/03npdgz04', 'no_lang_code', 1, 'https://ror.org/03npdgz04 Papouch (Czechia)'),
(56089, 'https://ror.org/037fsex72', 'cs', 1, 'https://ror.org/037fsex72 Oblastnƭ galerie Vysočiny v Jihlavě Vysočina Regional Gallery in Jihlava'),
(56090, 'https://ror.org/055g4ha47', 'cs', 1, 'https://ror.org/055g4ha47 Oblastnƭ muzeum v Chomutově'),
(56091, 'https://ror.org/04z0vpw75', 'no_lang_code', 1, 'https://ror.org/04z0vpw75 Paramo (Czechia)'),
(56092, 'https://ror.org/00ef2rd26', 'cs', 1, 'https://ror.org/00ef2rd26 OblastnĆ­ muzeum v LitoměřicĆ­ch'),
(56093, 'https://ror.org/049z4x724', 'no_lang_code', 1, 'https://ror.org/049z4x724 PooslavĆ­ NovĆ” Ves (Slovakia)'),
(56094, 'https://ror.org/02d7qtk86', 'no_lang_code', 1, 'https://ror.org/02d7qtk86 Parkservis (Czechia)'),
(56095, 'https://ror.org/05ccjec47', 'cs', 1, 'https://ror.org/05ccjec47 OblastnĆ­ nemocnice KolĆ­n'),
(56096, 'https://ror.org/05s5ecm57', 'no_lang_code', 1, 'https://ror.org/05s5ecm57 Parma Technik (Czechia)'),
(56097, 'https://ror.org/01t6xt429', 'no_lang_code', 1, 'https://ror.org/01t6xt429 Porfix (Czechia)'),
(56098, 'https://ror.org/02dhhnz05', 'no_lang_code', 1, 'https://ror.org/02dhhnz05 Pars Komponenty (Czechia)'),
(56099, 'https://ror.org/028rwje97', 'cs', 1, 'https://ror.org/028rwje97 Ochrana fauny ČR'),
(56100, 'https://ror.org/04mtx5741', 'no_lang_code', 1, 'https://ror.org/04mtx5741 Pars Nova (Czechia)'),
(56101, 'https://ror.org/03k2mft71', 'no_lang_code', 1, 'https://ror.org/03k2mft71 Porsenna (Czechia)'),
(56102, 'https://ror.org/01d4cz113', 'no_lang_code', 1, 'https://ror.org/01d4cz113 Ochrana PodzemnĆ­ch Vod (Czechia)'),
(56103, 'https://ror.org/04vhskt34', 'no_lang_code', 1, 'https://ror.org/04vhskt34 Patria KobylĆ­ (Czechia)'),
(56104, 'https://ror.org/0016gwv87', 'no_lang_code', 1, 'https://ror.org/0016gwv87 PositronLabs (Czechia)'),
(56105, 'https://ror.org/04ec59978', 'en', 1, 'https://ror.org/04ec59978 Ocular Research Symposia Foundation'),
(56106, 'https://ror.org/01dykse44', 'no_lang_code', 1, 'https://ror.org/01dykse44 Patriot (Czechia)'),
(56107, 'https://ror.org/03ppytd12', 'no_lang_code', 1, 'https://ror.org/03ppytd12 PovodĆ­ Labe (Czechia)'),
(56108, 'https://ror.org/00njbc474', 'cs', 1, 'https://ror.org/00njbc474 Odborový Svaz Pracovníků Hornictví, Geologie a Naftového Průmyslu'),
(56109, 'https://ror.org/00d7dzb74', 'no_lang_code', 1, 'https://ror.org/00d7dzb74 PavEx (Czechia)'),
(56110, 'https://ror.org/04f5yeh75', 'no_lang_code', 1, 'https://ror.org/04f5yeh75 Rheinmetall (Czechia)'),
(56111, 'https://ror.org/01nf9fw76', 'no_lang_code', 1, 'https://ror.org/01nf9fw76 AFRY (Czechia)'),
(56112, 'https://ror.org/05fc31f73', 'no_lang_code', 1, 'https://ror.org/05fc31f73 PPG Deco Czech (Czechia)'),
(56113, 'https://ror.org/03ff99w93', 'no_lang_code', 1, 'https://ror.org/03ff99w93 OGResearch (Czechia)'),
(56114, 'https://ror.org/03scrbh72', 'no_lang_code', 1, 'https://ror.org/03scrbh72 Pavus (Czechia)'),
(56115, 'https://ror.org/00z8jse46', 'cs', 1, 'https://ror.org/00z8jse46 Prachatice Museum'),
(56116, 'https://ror.org/00pehtc22', 'no_lang_code', 1, 'https://ror.org/00pehtc22 Oikoymenh (Czechia)'),
(56117, 'https://ror.org/01c3yj543', 'no_lang_code', 1, 'https://ror.org/01c3yj543 Peter Brett Associates (Czechia)'),
(56118, 'https://ror.org/01zgn9c85', 'no_lang_code', 1, 'https://ror.org/01zgn9c85 Pragis (Czechia)'),
(56119, 'https://ror.org/02gsfpt44', 'no_lang_code', 1, 'https://ror.org/02gsfpt44 Pragochema (Czechia)'),
(56120, 'https://ror.org/046kv4j11', 'no_lang_code', 1, 'https://ror.org/046kv4j11 Pragoimex (Czechia)'),
(56121, 'https://ror.org/019bmyc06', 'no_lang_code', 1, 'https://ror.org/019bmyc06 PBS Power Equipment (Czechia)'),
(56122, 'https://ror.org/03aps1n19', 'no_lang_code', 1, 'https://ror.org/03aps1n19 Pragolab (Czechia)'),
(56123, 'https://ror.org/02s9m7114', 'no_lang_code', 1, 'https://ror.org/02s9m7114 PBT Rožnov (Czechia)'),
(56124, 'https://ror.org/00qma8b89', 'no_lang_code', 1, 'https://ror.org/00qma8b89 OKD (Czechia) Ostravsko-karvinskƩ doly'),
(56125, 'https://ror.org/05e3xsx31', 'no_lang_code', 1, 'https://ror.org/05e3xsx31 Pragolet (Czechia)'),
(56126, 'https://ror.org/03r3f8722', 'no_lang_code', 1, 'https://ror.org/03r3f8722 Pragometal (Czechia)'),
(56127, 'https://ror.org/003ghjh61', 'no_lang_code', 1, 'https://ror.org/003ghjh61 Pragoprojekt (Czechia)'),
(56128, 'https://ror.org/02vvdqe24', 'no_lang_code', 1, 'https://ror.org/02vvdqe24 OKF (Czechia)'),
(56129, 'https://ror.org/02krm5y67', 'no_lang_code', 1, 'https://ror.org/02krm5y67 Prague Casting Services (Czechia)'),
(56130, 'https://ror.org/02tqwr834', 'no_lang_code', 1, 'https://ror.org/02tqwr834 Pegas Gonda (Czechia)'),
(56131, 'https://ror.org/033gq4890', 'no_lang_code', 1, 'https://ror.org/033gq4890 Ɩkoplant International (Czechia)'),
(56132, 'https://ror.org/05qv1wg20', 'en', 1, 'https://ror.org/05qv1wg20 Prague Security Studies Institute'),
(56133, 'https://ror.org/00dkwfy62', 'cs', 1, 'https://ror.org/00dkwfy62 OkresnĆ­ HospodÔřskĆ” Komora'),
(56134, 'https://ror.org/02cyn6b25', 'cs', 1, 'https://ror.org/02cyn6b25 PelÄĆ”k a Partner Architekti'),
(56135, 'https://ror.org/0587n1k08', 'no_lang_code', 1, 'https://ror.org/0587n1k08 Prakab Prazska Kabelovna (Czechia)'),
(56136, 'https://ror.org/00269pf69', 'no_lang_code', 1, 'https://ror.org/00269pf69 Pramacom-Ht (Czechia)'),
(56137, 'https://ror.org/057qqaz54', 'no_lang_code', 1, 'https://ror.org/057qqaz54 Pražské služby (Czechia)'),
(56138, 'https://ror.org/00hg23335', 'no_lang_code', 1, 'https://ror.org/00hg23335 Pražské Vodovody a Kanalizace'),
(56139, 'https://ror.org/0406evy55', 'no_lang_code', 1, 'https://ror.org/0406evy55 PernĆ­k (Czechia)'),
(56140, 'https://ror.org/028qhp125', 'no_lang_code', 1, 'https://ror.org/028qhp125 Preciosa Beauty (Czechia)'),
(56141, 'https://ror.org/0432ndn22', 'cs', 1, 'https://ror.org/0432ndn22 JindřichÅÆv Hradec Hospital Nemocnice JindřichÅÆv Hradec'),
(56142, 'https://ror.org/03y2whj58', 'no_lang_code', 1, 'https://ror.org/03y2whj58 PREdistribuce (Czechia)'),
(56143, 'https://ror.org/0514py963', 'no_lang_code', 1, 'https://ror.org/0514py963 OlChemIm (Czechia)'),
(56144, 'https://ror.org/03yqdkz93', 'no_lang_code', 1, 'https://ror.org/03yqdkz93 Preditest (Czechia)'),
(56145, 'https://ror.org/03yn3d916', 'no_lang_code', 1, 'https://ror.org/03yn3d916 Pexidr (Czechia)'),
(56146, 'https://ror.org/051tvr365', 'no_lang_code', 1, 'https://ror.org/051tvr365 Pharmaceutical Biotechnology (Czechia)'),
(56147, 'https://ror.org/01vqza407', 'no_lang_code', 1, 'https://ror.org/01vqza407 Phoenix Air (Czechia)'),
(56148, 'https://ror.org/03a2yyf19', 'no_lang_code', 1, 'https://ror.org/03a2yyf19 Prefa Praha (Czechia)'),
(56149, 'https://ror.org/0229km412', 'no_lang_code', 1, 'https://ror.org/0229km412 Photon Energy (Czechia)'),
(56150, 'https://ror.org/029kcrm61', 'no_lang_code', 1, 'https://ror.org/029kcrm61 Olma (Czechia)'),
(56151, 'https://ror.org/02yn1mx87', 'no_lang_code', 1, 'https://ror.org/02yn1mx87 Prikner - Tepelné zpracovÔní kovů (Czechia)'),
(56152, 'https://ror.org/022sj0h09', 'no_lang_code', 1, 'https://ror.org/022sj0h09 Primis (Czechia)'),
(56153, 'https://ror.org/01q216d88', 'no_lang_code', 1, 'https://ror.org/01q216d88 Phonexia (Czechia)'),
(56154, 'https://ror.org/0044gqz05', 'no_lang_code', 1, 'https://ror.org/0044gqz05 Perrigo (Czechia)'),
(56155, 'https://ror.org/05353z471', 'no_lang_code', 1, 'https://ror.org/05353z471 Pro-Aqua (Czechia)'),
(56156, 'https://ror.org/04h84s498', 'no_lang_code', 1, 'https://ror.org/04h84s498 Pilana (Czechia)'),
(56157, 'https://ror.org/022z4zx74', 'en', 1, 'https://ror.org/022z4zx74 PRO-BIO Association of Organic Farmers'),
(56158, 'https://ror.org/01gwjjy86', 'no_lang_code', 1, 'https://ror.org/01gwjjy86 PRO-BIO (Czechia)'),
(56159, 'https://ror.org/03nnhtv03', 'no_lang_code', 1, 'https://ror.org/03nnhtv03 PRO.MED.CS Praha (Czechia)'),
(56160, 'https://ror.org/022a5hk55', 'no_lang_code', 1, 'https://ror.org/022a5hk55 Pinkerton (Czechia)'),
(56161, 'https://ror.org/04jd3jd90', 'no_lang_code', 1, 'https://ror.org/04jd3jd90 Procter & Gamble - Rakona (Czechia)'),
(56162, 'https://ror.org/01evw4s98', 'no_lang_code', 1, 'https://ror.org/01evw4s98 Pipelife (Czechia)'),
(56163, 'https://ror.org/02a102m23', 'no_lang_code', 1, 'https://ror.org/02a102m23 OptimSys (Czechia)'),
(56164, 'https://ror.org/01x0syc85', 'no_lang_code', 1, 'https://ror.org/01x0syc85 Prodeco (Czechia)'),
(56165, 'https://ror.org/04wq40h64', 'no_lang_code', 1, 'https://ror.org/04wq40h64 Orange Controls (Czechia)'),
(56166, 'https://ror.org/05aaf8p37', 'no_lang_code', 1, 'https://ror.org/05aaf8p37 Pivo Praha (Czechia)'),
(56167, 'https://ror.org/0194wdc61', 'cs', 1, 'https://ror.org/0194wdc61 Profesní Komora SociÔlních Pracovníků'),
(56168, 'https://ror.org/01tcbbe23', 'no_lang_code', 1, 'https://ror.org/01tcbbe23 Organa (Czechia)'),
(56169, 'https://ror.org/02qvg6n57', 'no_lang_code', 1, 'https://ror.org/02qvg6n57 PROFiber Networking (Czechia)'),
(56170, 'https://ror.org/04yxwsj75', 'no_lang_code', 1, 'https://ror.org/04yxwsj75 Proficomms (Czechia)'),
(56171, 'https://ror.org/02vp0nc21', 'no_lang_code', 1, 'https://ror.org/02vp0nc21 Pivovar KƔcov (Czechia)'),
(56172, 'https://ror.org/023y6dh84', 'cs', 1, 'https://ror.org/023y6dh84 Akademie Jana Amose KomenskƩho'),
(56173, 'https://ror.org/0450y4k66', 'cs', 1, 'https://ror.org/0450y4k66 Orlické Muzeum Choceň'),
(56174, 'https://ror.org/049vb3221', 'no_lang_code', 1, 'https://ror.org/049vb3221 Profinit (Czechia)'),
(56175, 'https://ror.org/01jak0h04', 'no_lang_code', 1, 'https://ror.org/01jak0h04 Orlik (Czechia)'),
(56176, 'https://ror.org/00bmwn733', 'no_lang_code', 1, 'https://ror.org/00bmwn733 Progeo (Czechia)'),
(56177, 'https://ror.org/01c8rdt53', 'no_lang_code', 1, 'https://ror.org/01c8rdt53 PKS holding (Czechia)'),
(56178, 'https://ror.org/006ag2j20', 'no_lang_code', 1, 'https://ror.org/006ag2j20 Progres Ekotech (Czechia)'),
(56179, 'https://ror.org/01k07rn44', 'no_lang_code', 1, 'https://ror.org/01k07rn44 Plasmametal (Czechia)'),
(56180, 'https://ror.org/00c5qfd88', 'no_lang_code', 1, 'https://ror.org/00c5qfd88 Ortotika (Czechia)'),
(56181, 'https://ror.org/015g04494', 'no_lang_code', 1, 'https://ror.org/015g04494 Projekt HTL (Czechia)'),
(56182, 'https://ror.org/036bzjr85', 'cs', 1, 'https://ror.org/036bzjr85 Projekt Odyssea'),
(56183, 'https://ror.org/024qfyn78', 'no_lang_code', 1, 'https://ror.org/024qfyn78 ACL Anodizing (Czechia)'),
(56184, 'https://ror.org/030q3v026', 'no_lang_code', 1, 'https://ror.org/030q3v026 Project Design and Development Agency (Czechia)'),
(56185, 'https://ror.org/03wex2p68', 'no_lang_code', 1, 'https://ror.org/03wex2p68 Plastmetal Engineering (Czechia)'),
(56186, 'https://ror.org/00dp6v107', 'no_lang_code', 1, 'https://ror.org/00dp6v107 Projekty Vodam (Czechia)'),
(56187, 'https://ror.org/05bfra354', 'no_lang_code', 1, 'https://ror.org/05bfra354 PTV (Czechia)'),
(56188, 'https://ror.org/02pw0we48', 'no_lang_code', 1, 'https://ror.org/02pw0we48 Pure Bohemia (Czechia)'),
(56189, 'https://ror.org/02rw4zb55', 'no_lang_code', 1, 'https://ror.org/02rw4zb55 Puruplast (Czechia)'),
(56190, 'https://ror.org/023rd7223', 'no_lang_code', 1, 'https://ror.org/023rd7223 Plosab (Czechia)'),
(56191, 'https://ror.org/00cjhk544', 'no_lang_code', 1, 'https://ror.org/00cjhk544 EP Energy (Czechia)'),
(56192, 'https://ror.org/009gady73', 'no_lang_code', 1, 'https://ror.org/009gady73 Prokop Rail (Czechia)'),
(56193, 'https://ror.org/03g6vn746', 'no_lang_code', 1, 'https://ror.org/03g6vn746 Proma Reha (Czechia)'),
(56194, 'https://ror.org/01vacyq18', 'no_lang_code', 1, 'https://ror.org/01vacyq18 PZP Komplet (Czechia)'),
(56195, 'https://ror.org/03xqzrz13', 'no_lang_code', 1, 'https://ror.org/03xqzrz13 QIP (Czechia)'),
(56196, 'https://ror.org/0593djr05', 'no_lang_code', 1, 'https://ror.org/0593djr05 Quality Quantity Time (Czechia)'),
(56197, 'https://ror.org/05a6fy491', 'no_lang_code', 1, 'https://ror.org/05a6fy491 Prometheus (Czechia)'),
(56198, 'https://ror.org/05y33cq80', 'no_lang_code', 1, 'https://ror.org/05y33cq80 FCC (Czechia)'),
(56199, 'https://ror.org/01zh1d994', 'no_lang_code', 1, 'https://ror.org/01zh1d994 PlzeňskĆ© MěstskĆ© DopravnĆ­ Podniky (Czechia)'),
(56200, 'https://ror.org/00effcn18', 'no_lang_code', 1, 'https://ror.org/00effcn18 Qualiform (Czechia)'),
(56201, 'https://ror.org/02h3yx664', 'no_lang_code', 1, 'https://ror.org/02h3yx664 Protean (Czechia)'),
(56202, 'https://ror.org/02vtg9w10', 'no_lang_code', 1, 'https://ror.org/02vtg9w10 Plzensky Prazdroj (Czechia)'),
(56203, 'https://ror.org/04g34ca09', 'no_lang_code', 1, 'https://ror.org/04g34ca09 Quinta Analytica (Czechia)'),
(56204, 'https://ror.org/03neag539', 'no_lang_code', 1, 'https://ror.org/03neag539 ProTyS (Czechia)'),
(56205, 'https://ror.org/0435cyx83', 'no_lang_code', 1, 'https://ror.org/0435cyx83 R-Princip (Czechia)'),
(56206, 'https://ror.org/04nr3tm35', 'no_lang_code', 1, 'https://ror.org/04nr3tm35 Provisco CS (Czechia)'),
(56207, 'https://ror.org/04znkfj06', 'cs', 1, 'https://ror.org/04znkfj06 PodjeÅ”tědskĆ© Museum'),
(56208, 'https://ror.org/02rbzf697', 'no_lang_code', 1, 'https://ror.org/02rbzf697 Huawei Technologies (France)'),
(56209, 'https://ror.org/04r287r86', 'no_lang_code', 1, 'https://ror.org/04r287r86 Provod (Czechia)'),
(56210, 'https://ror.org/05yjxqy63', 'no_lang_code', 1, 'https://ror.org/05yjxqy63 Podravka (Czechia)'),
(56211, 'https://ror.org/03m41z132', 'no_lang_code', 1, 'https://ror.org/03m41z132 Pohorelec (Czechia)'),
(56212, 'https://ror.org/02rp0e007', 'no_lang_code', 1, 'https://ror.org/02rp0e007 Air Navigation Services (Czechia) Řízení letového provozu České republiky'),
(56213, 'https://ror.org/02n2bgz18', 'en', 1, 'https://ror.org/02n2bgz18 Institute of Plasma Physics Istituto di Fisica del Plasma "Piero Caldirola"'),
(56214, 'https://ror.org/0280ypy82', 'no_lang_code', 1, 'https://ror.org/0280ypy82 Prvni Brnenska Strojirna (Czechia)'),
(56215, 'https://ror.org/03aagvh91', 'no_lang_code', 1, 'https://ror.org/03aagvh91 Prvnƭ regionƔlnƭ rozvojovƔ (Czechia)'),
(56216, 'https://ror.org/04yxgd218', 'no_lang_code', 1, 'https://ror.org/04yxgd218 RobotSystem (Czechia)'),
(56217, 'https://ror.org/04p055k28', 'no_lang_code', 1, 'https://ror.org/04p055k28 Prvnƭ SignƔlnƭ (Czechia)'),
(56218, 'https://ror.org/0369h0f23', 'no_lang_code', 1, 'https://ror.org/0369h0f23 RDS-CZ (Czechia)'),
(56219, 'https://ror.org/03ynzzx94', 'en', 1, 'https://ror.org/03ynzzx94 Indo Korea Science and Technology'),
(56220, 'https://ror.org/03b1jj954', 'no_lang_code', 1, 'https://ror.org/03b1jj954 PS Profi (Czechia)'),
(56221, 'https://ror.org/01gvgct71', 'no_lang_code', 1, 'https://ror.org/01gvgct71 RSC Spol (Czechia)'),
(56222, 'https://ror.org/00xj6v282', 'no_lang_code', 1, 'https://ror.org/00xj6v282 Rabbit ChotýŔany (Czechia)'),
(56223, 'https://ror.org/05jpbj586', 'no_lang_code', 1, 'https://ror.org/05jpbj586 Rabbit (Czechia)'),
(56224, 'https://ror.org/023sc6050', 'no_lang_code', 1, 'https://ror.org/023sc6050 Roko (Czechia)'),
(56225, 'https://ror.org/028tpvk07', 'no_lang_code', 1, 'https://ror.org/028tpvk07 PSP Pohony (Czechia)'),
(56226, 'https://ror.org/0328zx757', 'no_lang_code', 1, 'https://ror.org/0328zx757 Rolnické Družstvo Bezno (Czechia)'),
(56227, 'https://ror.org/02yrkqr67', 'cs', 1, 'https://ror.org/02yrkqr67 PsychiatrickĆ” Nemocnice Bohnice'),
(56228, 'https://ror.org/0550sx673', 'no_lang_code', 1, 'https://ror.org/0550sx673 Racom (Czechia)'),
(56229, 'https://ror.org/03adg5y95', 'no_lang_code', 1, 'https://ror.org/03adg5y95 Romill (Czechia)'),
(56230, 'https://ror.org/014j4nz90', 'no_lang_code', 1, 'https://ror.org/014j4nz90 Rosomac (Czechia)'),
(56231, 'https://ror.org/04nd4kk51', 'en', 1, 'https://ror.org/04nd4kk51 Ceramic Synthesis and Functionalization Laboratory Laboratoire de Synthèse et Fonctionnalisation des Céramiques'),
(56232, 'https://ror.org/04tv6wz75', 'en', 1, 'https://ror.org/04tv6wz75 Czech Council on Foreign Relations Rada pro mezinƔrodnƭ vztahy'),
(56233, 'https://ror.org/05w2mbr20', 'no_lang_code', 1, 'https://ror.org/05w2mbr20 Sellier & Bellot (Czechia)'),
(56234, 'https://ror.org/03rm6vq41', 'no_lang_code', 1, 'https://ror.org/03rm6vq41 Rotana (Czechia)'),
(56235, 'https://ror.org/00srskr42', 'no_lang_code', 1, 'https://ror.org/00srskr42 Rotas StrojĆ­rny (Czechia)'),
(56236, 'https://ror.org/04nknev17', 'no_lang_code', 1, 'https://ror.org/04nknev17 Semix Pluso (Czechia)'),
(56237, 'https://ror.org/006v2ze46', 'no_lang_code', 1, 'https://ror.org/006v2ze46 Prokop (Czechia)'),
(56238, 'https://ror.org/047rda748', 'no_lang_code', 1, 'https://ror.org/047rda748 Radanal (Czechia)'),
(56239, 'https://ror.org/03g1x1714', 'no_lang_code', 1, 'https://ror.org/03g1x1714 Materials Design (France)'),
(56240, 'https://ror.org/05k438q37', 'no_lang_code', 1, 'https://ror.org/05k438q37 Semma Therapeutics (United States)'),
(56241, 'https://ror.org/02ayg8518', 'no_lang_code', 1, 'https://ror.org/02ayg8518 Radioterapie HoleŔov (Czechia)'),
(56242, 'https://ror.org/02wkzst19', 'no_lang_code', 1, 'https://ror.org/02wkzst19 RPIC ViP (Czechia)'),
(56243, 'https://ror.org/01vgs6512', 'no_lang_code', 1, 'https://ror.org/01vgs6512 Semo (Czechia)'),
(56244, 'https://ror.org/04trkh314', 'no_lang_code', 1, 'https://ror.org/04trkh314 Rigetti Computing (United States)'),
(56245, 'https://ror.org/04244e638', 'no_lang_code', 1, 'https://ror.org/04244e638 RPS Ostrava (Czechia)'),
(56246, 'https://ror.org/01v2c2791', 'en', 1, 'https://ror.org/01v2c2791 Singapore Institute of Technology'),
(56247, 'https://ror.org/04ezttg26', 'no_lang_code', 1, 'https://ror.org/04ezttg26 Radom (Czechia)'),
(56248, 'https://ror.org/055bk3y86', 'no_lang_code', 1, 'https://ror.org/055bk3y86 Skill (Czechia)'),
(56249, 'https://ror.org/007e93p80', 'no_lang_code', 1, 'https://ror.org/007e93p80 Radon vos (Czechia)'),
(56250, 'https://ror.org/03cxpjh03', 'no_lang_code', 1, 'https://ror.org/03cxpjh03 Rumi Scientific (United States)'),
(56251, 'https://ror.org/04xhmxk63', 'no_lang_code', 1, 'https://ror.org/04xhmxk63 Ruml (Czechia)'),
(56252, 'https://ror.org/00w8qrj53', 'no_lang_code', 1, 'https://ror.org/00w8qrj53 Senagro (Czechia)'),
(56253, 'https://ror.org/02bcjkv07', 'no_lang_code', 1, 'https://ror.org/02bcjkv07 Rumpold (Czechia)'),
(56254, 'https://ror.org/04eet1p35', 'no_lang_code', 1, 'https://ror.org/04eet1p35 Rajmont (Czechia)'),
(56255, 'https://ror.org/026sz7x33', 'no_lang_code', 1, 'https://ror.org/026sz7x33 Innogy (Czechia)'),
(56256, 'https://ror.org/03p343x23', 'no_lang_code', 1, 'https://ror.org/03p343x23 Ramet (Czechia)'),
(56257, 'https://ror.org/058ke7e65', 'no_lang_code', 1, 'https://ror.org/058ke7e65 RybÔřstvĆ­ HlubokĆ” (Czechia)'),
(56258, 'https://ror.org/02hzadm05', 'cs', 1, 'https://ror.org/02hzadm05 RybÔřstvĆ­ KardaÅ”ova Řečice'),
(56259, 'https://ror.org/04k588f75', 'no_lang_code', 1, 'https://ror.org/04k588f75 Sev Litovel (Czechia)'),
(56260, 'https://ror.org/05j34w995', 'no_lang_code', 1, 'https://ror.org/05j34w995 RaŔelina (Czechia)'),
(56261, 'https://ror.org/01y7wy577', 'no_lang_code', 1, 'https://ror.org/01y7wy577 Rataj (Czechia)'),
(56262, 'https://ror.org/039309z32', 'no_lang_code', 1, 'https://ror.org/039309z32 Seva – Flora (Czechia)'),
(56263, 'https://ror.org/05vc7zb27', 'no_lang_code', 1, 'https://ror.org/05vc7zb27 Sevaron (Czechia)'),
(56264, 'https://ror.org/04061m789', 'no_lang_code', 1, 'https://ror.org/04061m789 RybÔřstvĆ­ LitomyÅ”l (RybÔřstvĆ­ LitomyÅ”l)'),
(56265, 'https://ror.org/0021ty105', 'cs', 1, 'https://ror.org/0021ty105 RybÔřstvĆ­ MariĆ”nskĆ© LĆ”zně'),
(56266, 'https://ror.org/019zz2s13', 'no_lang_code', 1, 'https://ror.org/019zz2s13 RybÔřstvĆ­ NovĆ© Hrady (Czechia)'),
(56267, 'https://ror.org/01yhceq35', 'no_lang_code', 1, 'https://ror.org/01yhceq35 RybnĆ­kÔřstvĆ­ Pohořelice'),
(56268, 'https://ror.org/02b513n57', 'no_lang_code', 1, 'https://ror.org/02b513n57 Severofrukt (Czechia)'),
(56269, 'https://ror.org/05gjmqb84', 'no_lang_code', 1, 'https://ror.org/05gjmqb84 Rawat Consulting (Czechia)'),
(56270, 'https://ror.org/049px2k81', 'no_lang_code', 1, 'https://ror.org/049px2k81 RCS Kladno (Czechia)'),
(56271, 'https://ror.org/05yexgq55', 'no_lang_code', 1, 'https://ror.org/05yexgq55 SeveromoravskƩ Vodovody a Kanalizace Ostrava (Czechia)'),
(56272, 'https://ror.org/02c7agb90', 'no_lang_code', 1, 'https://ror.org/02c7agb90 Ryor (Czechia)'),
(56273, 'https://ror.org/01nqp5d86', 'no_lang_code', 1, 'https://ror.org/01nqp5d86 RD Rýmařov (Czechia)'),
(56274, 'https://ror.org/03evznq35', 'no_lang_code', 1, 'https://ror.org/03evznq35 Sewaco (Czechia)'),
(56275, 'https://ror.org/00qrjwk72', 'no_lang_code', 1, 'https://ror.org/00qrjwk72 Sewio Networks (Czechia)'),
(56276, 'https://ror.org/05b3xjz72', 'no_lang_code', 1, 'https://ror.org/05b3xjz72 Reacont (Czechia)'),
(56277, 'https://ror.org/04yedeq20', 'no_lang_code', 1, 'https://ror.org/04yedeq20 SG - Geoinenring (Czechia)'),
(56278, 'https://ror.org/018vsyr42', 'no_lang_code', 1, 'https://ror.org/018vsyr42 SG-Geoprojekt (Czechia)'),
(56279, 'https://ror.org/02e72p904', 'no_lang_code', 1, 'https://ror.org/02e72p904 SGS (Czechia)'),
(56280, 'https://ror.org/05enwqt08', 'no_lang_code', 1, 'https://ror.org/05enwqt08 Real Eco Technik (Czechia)'),
(56281, 'https://ror.org/02eftzg28', 'no_lang_code', 1, 'https://ror.org/02eftzg28 Sherlog Trace (Czechia)'),
(56282, 'https://ror.org/00cw9jq79', 'no_lang_code', 1, 'https://ror.org/00cw9jq79 Sicar (Czechia)'),
(56283, 'https://ror.org/02mw71d90', 'no_lang_code', 1, 'https://ror.org/02mw71d90 Realistic (Czechia)'),
(56284, 'https://ror.org/04858sf96', 'no_lang_code', 1, 'https://ror.org/04858sf96 Sido (Czechia)'),
(56285, 'https://ror.org/04xg8v068', 'no_lang_code', 1, 'https://ror.org/04xg8v068 S.A.M. Metalizačnƭ společnost'),
(56286, 'https://ror.org/01zk5hm10', 'no_lang_code', 1, 'https://ror.org/01zk5hm10 Siga (Czechia)'),
(56287, 'https://ror.org/02ctvf237', 'no_lang_code', 1, 'https://ror.org/02ctvf237 SAM Holding (Czechia)'),
(56288, 'https://ror.org/02tga0d11', 'no_lang_code', 1, 'https://ror.org/02tga0d11 Saar Gummi (Czechia)'),
(56289, 'https://ror.org/00jz21w71', 'no_lang_code', 1, 'https://ror.org/00jz21w71 Ricardo Prague (Czechia)'),
(56290, 'https://ror.org/04q6jhb10', 'no_lang_code', 1, 'https://ror.org/04q6jhb10 Signal Projekt (Czechia)'),
(56291, 'https://ror.org/01z4tdd83', 'no_lang_code', 1, 'https://ror.org/01z4tdd83 Sady (Czechia)'),
(56292, 'https://ror.org/01brpj081', 'no_lang_code', 1, 'https://ror.org/01brpj081 Recutech (Czechia)'),
(56293, 'https://ror.org/05hy51730', 'no_lang_code', 1, 'https://ror.org/05hy51730 Sage Energo (Czechia)'),
(56294, 'https://ror.org/03sy7mc39', 'no_lang_code', 1, 'https://ror.org/03sy7mc39 Silmos (Czechia)'),
(56295, 'https://ror.org/05pafsz05', 'no_lang_code', 1, 'https://ror.org/05pafsz05 Sagittaria'),
(56296, 'https://ror.org/03tphp044', 'no_lang_code', 1, 'https://ror.org/03tphp044 Silnice Group (Czechia)'),
(56297, 'https://ror.org/00j4rmt21', 'no_lang_code', 1, 'https://ror.org/00j4rmt21 Redam (Czechia)'),
(56298, 'https://ror.org/031shee24', 'no_lang_code', 1, 'https://ror.org/031shee24 Silvi Nova (Czechia)'),
(56299, 'https://ror.org/02c51sy34', 'cs', 1, 'https://ror.org/02c51sy34 Ředitelství Silnic a DÔlnic'),
(56300, 'https://ror.org/01ap43e37', 'no_lang_code', 1, 'https://ror.org/01ap43e37 Šimeček (Czechia)'),
(56301, 'https://ror.org/05mq1qn32', 'no_lang_code', 1, 'https://ror.org/05mq1qn32 Simgeo (Czechia)'),
(56302, 'https://ror.org/035zqsp67', 'no_lang_code', 1, 'https://ror.org/035zqsp67 Regent Plus Žlutice (Czechia)'),
(56303, 'https://ror.org/01aee7q96', 'no_lang_code', 1, 'https://ror.org/01aee7q96 Saint-Gobain (Czechia)'),
(56304, 'https://ror.org/039t6ws48', 'no_lang_code', 1, 'https://ror.org/039t6ws48 Sindat (Czechia)'),
(56305, 'https://ror.org/01hkkxq34', 'no_lang_code', 1, 'https://ror.org/01hkkxq34 Sindlar (Czechia)'),
(56306, 'https://ror.org/04h32es78', 'no_lang_code', 1, 'https://ror.org/04h32es78 Sinpol (Czechia)'),
(56307, 'https://ror.org/04rjezz78', 'no_lang_code', 1, 'https://ror.org/04rjezz78 Samumed (United States)'),
(56308, 'https://ror.org/050g95t43', 'en', 1, 'https://ror.org/050g95t43 Regional Museum and Gallery Jicin'),
(56309, 'https://ror.org/016gtw459', 'no_lang_code', 1, 'https://ror.org/016gtw459 Sitel (Czechia)'),
(56310, 'https://ror.org/01x8yx033', 'no_lang_code', 1, 'https://ror.org/01x8yx033 Regional Museum of K. A. Polanek'),
(56311, 'https://ror.org/05qtdkf53', 'cs', 1, 'https://ror.org/05qtdkf53 RegionĆ”lnĆ­ muzeum v KolĆ­ně'),
(56312, 'https://ror.org/00qjy4068', 'no_lang_code', 1, 'https://ror.org/00qjy4068 RegionƔlnƭ PoradenskƔ Agentura (Czechia)'),
(56313, 'https://ror.org/03z152744', 'no_lang_code', 1, 'https://ror.org/03z152744 Sanborn (Czechia)'),
(56314, 'https://ror.org/05f65w564', 'cs', 1, 'https://ror.org/05f65w564 SjednocenÔ Organizace Nevidomých a Slabozrakých'),
(56315, 'https://ror.org/003fbkt80', 'en', 1, 'https://ror.org/003fbkt80 Czech Association of Development Agencies ČeskÔ asociace rozvojových agentur'),
(56316, 'https://ror.org/03z3t3x80', 'no_lang_code', 1, 'https://ror.org/03z3t3x80 Skd Trade (Czechia)'),
(56317, 'https://ror.org/03wp1bk10', 'no_lang_code', 1, 'https://ror.org/03wp1bk10 Regutec (Czechia)'),
(56318, 'https://ror.org/032wvex55', 'no_lang_code', 1, 'https://ror.org/032wvex55 Sangreen (Czechia)'),
(56319, 'https://ror.org/034qg4250', 'no_lang_code', 1, 'https://ror.org/034qg4250 Kavalier (Czechia)'),
(56320, 'https://ror.org/015cskm63', 'no_lang_code', 1, 'https://ror.org/015cskm63 Sat (Czechia)'),
(56321, 'https://ror.org/01ne55s87', 'no_lang_code', 1, 'https://ror.org/01ne55s87 SklÔřský Ústav Hradec KrĆ”lovĆ© (Czechia)'),
(56322, 'https://ror.org/018pszt58', 'no_lang_code', 1, 'https://ror.org/018pszt58 RekultivačnĆ­ Výstavba Most (Czechia)'),
(56323, 'https://ror.org/05tmxnq68', 'no_lang_code', 1, 'https://ror.org/05tmxnq68 Reliant (Czechia)'),
(56324, 'https://ror.org/00kwyj403', 'no_lang_code', 1, 'https://ror.org/00kwyj403 Sklopan Liberec (Czechia)'),
(56325, 'https://ror.org/05gnj5y10', 'no_lang_code', 1, 'https://ror.org/05gnj5y10 Rema SystƩm (Czechia)'),
(56326, 'https://ror.org/05f6rx494', 'cs', 1, 'https://ror.org/05f6rx494 Sativa Keřkov'),
(56327, 'https://ror.org/043yr1e87', 'no_lang_code', 1, 'https://ror.org/043yr1e87 Remedis (Czechia)'),
(56328, 'https://ror.org/00mp5e421', 'no_lang_code', 1, 'https://ror.org/00mp5e421 Satra (Czechia)'),
(56329, 'https://ror.org/02fy0bw29', 'no_lang_code', 1, 'https://ror.org/02fy0bw29 Remerx (Czechia)'),
(56330, 'https://ror.org/01fw5px83', 'no_lang_code', 1, 'https://ror.org/01fw5px83 Sklostroj Turnov (Czechia)'),
(56331, 'https://ror.org/00xk4q268', 'no_lang_code', 1, 'https://ror.org/00xk4q268 Å koda JS (Czechia)'),
(56332, 'https://ror.org/04mc4tx89', 'no_lang_code', 1, 'https://ror.org/04mc4tx89 Saurer (Czechia)'),
(56333, 'https://ror.org/00fakpg77', 'no_lang_code', 1, 'https://ror.org/00fakpg77 Rent-Pharm (Czechia)'),
(56334, 'https://ror.org/01wdvpr49', 'no_lang_code', 1, 'https://ror.org/01wdvpr49 Skoda Machine Tool (Czechia)'),
(56335, 'https://ror.org/03xb1vx63', 'no_lang_code', 1, 'https://ror.org/03xb1vx63 SBA-Expert (Czechia)'),
(56336, 'https://ror.org/00rtxv182', 'no_lang_code', 1, 'https://ror.org/00rtxv182 Rentel (Czechia)'),
(56337, 'https://ror.org/01zxt6b74', 'no_lang_code', 1, 'https://ror.org/01zxt6b74 SC & C (Czechia)'),
(56338, 'https://ror.org/05t0aaa57', 'no_lang_code', 1, 'https://ror.org/05t0aaa57 Scaled Biolabs (United States)'),
(56339, 'https://ror.org/00zyq8158', 'no_lang_code', 1, 'https://ror.org/00zyq8158 Reprogen (Czechia)'),
(56340, 'https://ror.org/02bfrst79', 'cs', 1, 'https://ror.org/02bfrst79 Socioklub'),
(56341, 'https://ror.org/01h2p6e89', 'no_lang_code', 1, 'https://ror.org/01h2p6e89 Scriptorium'),
(56342, 'https://ror.org/05adwpb80', 'en', 1, 'https://ror.org/05adwpb80 Regional Development Agency of South Bohemia'),
(56343, 'https://ror.org/02rs7f491', 'no_lang_code', 1, 'https://ror.org/02rs7f491 Resec (Czechia)'),
(56344, 'https://ror.org/02qd9nw41', 'no_lang_code', 1, 'https://ror.org/02qd9nw41 Å kola Welding (Czechia)'),
(56345, 'https://ror.org/05qepz429', 'no_lang_code', 1, 'https://ror.org/05qepz429 Resim (Czechia)'),
(56346, 'https://ror.org/00r1n9v29', 'cs', 1, 'https://ror.org/00r1n9v29 SdruženĆ© ambulantnĆ­ zařízenĆ­'),
(56347, 'https://ror.org/019206e14', 'en', 1, 'https://ror.org/019206e14 Automotive Industry Association Sdružení Automobilového Průmyslu'),
(56348, 'https://ror.org/00gpmkq36', 'cs', 1, 'https://ror.org/00gpmkq36 Česmad Bohemia'),
(56349, 'https://ror.org/05b1fze65', 'cs', 1, 'https://ror.org/05b1fze65 Sdružení Celiaků České Republiky'),
(56350, 'https://ror.org/04xks6074', 'no_lang_code', 1, 'https://ror.org/04xks6074 Skrivanek (Czechia)'),
(56351, 'https://ror.org/03tkf6a63', 'cs', 1, 'https://ror.org/03tkf6a63 Sdružení CEPAC'),
(56352, 'https://ror.org/03et8cz85', 'cs', 1, 'https://ror.org/03et8cz85 Asociace Nemocnic ČR'),
(56353, 'https://ror.org/05mjfsy88', 'en', 1, 'https://ror.org/05mjfsy88 National Laboratory for High Performance Computing'),
(56354, 'https://ror.org/044jcs946', 'cs', 1, 'https://ror.org/044jcs946 Sdružení Historiků České Republiky'),
(56355, 'https://ror.org/014dka479', 'no_lang_code', 1, 'https://ror.org/014dka479 Sky Paragliders (Czechia)'),
(56356, 'https://ror.org/05nhp5y26', 'en', 1, 'https://ror.org/05nhp5y26 Forest Nursery Association SdruženĆ­ lesnĆ­ch Å”kolkařů'),
(56357, 'https://ror.org/04b65h134', 'cs', 1, 'https://ror.org/04b65h134 SlĆ”deček Museum of Local History'),
(56358, 'https://ror.org/055phnh91', 'en', 1, 'https://ror.org/055phnh91 Linka bezpečƭ Safety Line Helpline'),
(56359, 'https://ror.org/04c792r17', 'cs', 1, 'https://ror.org/04c792r17 Sdružení obcí Orlicko'),
(56360, 'https://ror.org/0243qpk28', 'cs', 1, 'https://ror.org/0243qpk28 SdruženĆ­ Ozdravoven A LĆ©Äeben Okresu Trutnov'),
(56361, 'https://ror.org/00hat9k49', 'no_lang_code', 1, 'https://ror.org/00hat9k49 Sladovny Soufflet (Czechia)'),
(56362, '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'),
(56363, 'https://ror.org/01jxgkt53', 'no_lang_code', 1, 'https://ror.org/01jxgkt53 Slavona (Czechia)'),
(56364, 'https://ror.org/03pc1y818', 'no_lang_code', 1, 'https://ror.org/03pc1y818 Resta (Czechia)'),
(56365, 'https://ror.org/01xkm9f48', 'no_lang_code', 1, 'https://ror.org/01xkm9f48 Retap (Czechia)'),
(56366, 'https://ror.org/04chjhs81', 'no_lang_code', 1, 'https://ror.org/04chjhs81 SlƩvƔrna a ModelƔrna NovƩ Ransko'),
(56367, 'https://ror.org/05t81tk93', 'no_lang_code', 1, 'https://ror.org/05t81tk93 Retex (Czechia)'),
(56368, 'https://ror.org/03hj0ge77', 'no_lang_code', 1, 'https://ror.org/03hj0ge77 SlƩvƔrna Chomutov (Czechia)'),
(56369, 'https://ror.org/01ch84g48', 'no_lang_code', 1, 'https://ror.org/01ch84g48 Rex Controls (Czechia)'),
(56370, 'https://ror.org/05mvk0v07', 'no_lang_code', 1, 'https://ror.org/05mvk0v07 RFspin (Czechia)'),
(56371, 'https://ror.org/05506bz51', 'no_lang_code', 1, 'https://ror.org/05506bz51 Sofigen (Czechia)'),
(56372, 'https://ror.org/052rfqh94', 'no_lang_code', 1, 'https://ror.org/052rfqh94 Heunisch Brno (Czechia)'),
(56373, 'https://ror.org/05mxwbv26', 'no_lang_code', 1, 'https://ror.org/05mxwbv26 Soft Targets Protection Institute (Czechia)'),
(56374, 'https://ror.org/01ex2ev57', 'no_lang_code', 1, 'https://ror.org/01ex2ev57 SokolovskƩ Strojƭrny (Czechia)'),
(56375, 'https://ror.org/02bzv8r58', 'en', 1, 'https://ror.org/02bzv8r58 American Comparative Literature Association'),
(56376, 'https://ror.org/05bg8j971', 'en', 1, 'https://ror.org/05bg8j971 American Oil Chemists Society'),
(56377, 'https://ror.org/04y37vj38', 'en', 1, 'https://ror.org/04y37vj38 Association for Information Science and Technology'),
(56378, '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Ć­'),
(56379, 'https://ror.org/03qy0hv94', 'en', 1, 'https://ror.org/03qy0hv94 ITS and S Sdružení pro dopravní telematiku'),
(56380, 'https://ror.org/03tvvt638', 'en', 1, 'https://ror.org/03tvvt638 American Society of Church History'),
(56381, 'https://ror.org/02cynnb40', 'en', 1, 'https://ror.org/02cynnb40 The American Society of Criminology'),
(56382, 'https://ror.org/00qmtfb26', 'en', 1, 'https://ror.org/00qmtfb26 Agricultural And Forestry Machinery Association'),
(56383, 'https://ror.org/01akd1s31', 'no_lang_code', 1, 'https://ror.org/01akd1s31 SDS Exmost (Czechia)'),
(56384, 'https://ror.org/05dgj4s02', 'en', 1, 'https://ror.org/05dgj4s02 Association for Jewish Studies'),
(56385, 'https://ror.org/03t173c87', 'no_lang_code', 1, 'https://ror.org/03t173c87 Secar Bohemia (Czechia)'),
(56386, 'https://ror.org/00dnz1633', 'no_lang_code', 1, 'https://ror.org/00dnz1633 Seco Group (Czechia)'),
(56387, 'https://ror.org/05b409c22', 'en', 1, 'https://ror.org/05b409c22 Association of Clinical Scientists'),
(56388, 'https://ror.org/053j1ga94', 'no_lang_code', 1, 'https://ror.org/053j1ga94 Sedium (Czechia)'),
(56389, 'https://ror.org/05c84ff54', 'no_lang_code', 1, 'https://ror.org/05c84ff54 Sedlecký kaolin (Czechia)'),
(56390, 'https://ror.org/05dm26171', 'en', 1, 'https://ror.org/05dm26171 Behavior Genetics Association'),
(56391, 'https://ror.org/0086yq776', 'no_lang_code', 1, 'https://ror.org/0086yq776 SEEIF Ceramic (Czechia)'),
(56392, 'https://ror.org/04dc7cj39', 'no_lang_code', 1, 'https://ror.org/04dc7cj39 SEKO Brno (Czechia)'),
(56393, 'https://ror.org/003vk8x91', 'cs', 1, 'https://ror.org/003vk8x91 Selekta Pacov'),
(56394, 'https://ror.org/040anqg48', 'no_lang_code', 1, 'https://ror.org/040anqg48 Stƶri Mantel (Czechia)'),
(56395, 'https://ror.org/045htpw71', 'en', 1, 'https://ror.org/045htpw71 Dictionary Society of North America'),
(56396, 'https://ror.org/02g63mv84', 'no_lang_code', 1, 'https://ror.org/02g63mv84 Strabag Rail (Czechia)'),
(56397, 'https://ror.org/04yqshc53', 'en', 1, 'https://ror.org/04yqshc53 German Studies Association'),
(56398, 'https://ror.org/00qm34c52', 'no_lang_code', 1, 'https://ror.org/00qm34c52 Strasky Husty and Partners (Czechia)'),
(56399, 'https://ror.org/0009bne42', 'en', 1, 'https://ror.org/0009bne42 Immigration and Ethnic History Society'),
(56400, 'https://ror.org/01zn7n052', 'cs', 1, 'https://ror.org/01zn7n052 StřednĆ­ PrÅÆmyslovĆ” Å”kola a ObchodnĆ­ Akademie Uherský Brod'),
(56401, 'https://ror.org/02va58e96', 'en', 1, 'https://ror.org/02va58e96 Central Bohemian Research Library StředočeskĆ” vědeckĆ” knihovka v Kladně'),
(56402, 'https://ror.org/03nm3et74', 'en', 1, 'https://ror.org/03nm3et74 Whiting Foundation'),
(56403, 'https://ror.org/017w1jt07', 'no_lang_code', 1, 'https://ror.org/017w1jt07 StrojĆ­renskĆ© InovačnĆ­ Centrum (Czechia)'),
(56404, 'https://ror.org/03frxfd09', 'no_lang_code', 1, 'https://ror.org/03frxfd09 Smart Software (Czechia)'),
(56405, 'https://ror.org/011np0p15', 'cs', 1, 'https://ror.org/011np0p15 Strojírenský ZkuŔební Ústav'),
(56406, 'https://ror.org/03c6bbm42', 'no_lang_code', 1, 'https://ror.org/03c6bbm42 Smart Technik (Czechia)'),
(56407, 'https://ror.org/02bspcn72', 'no_lang_code', 1, 'https://ror.org/02bspcn72 Strojírna Novotný (Czechia)'),
(56408, 'https://ror.org/05d3q8024', 'no_lang_code', 1, 'https://ror.org/05d3q8024 SmartMotion (Czechia)'),
(56409, 'https://ror.org/04c7mjp03', 'en', 1, 'https://ror.org/04c7mjp03 Latin American Studies Association'),
(56410, 'https://ror.org/03c8sng38', 'no_lang_code', 1, 'https://ror.org/03c8sng38 SMP (Czechia)'),
(56411, 'https://ror.org/02cf3zf10', 'no_lang_code', 1, 'https://ror.org/02cf3zf10 StrojĆ­rna Tyc (Czechia)'),
(56412, 'https://ror.org/02k0pre66', 'no_lang_code', 1, 'https://ror.org/02k0pre66 StrojĆ­rny Bohdalice (Czechia)'),
(56413, 'https://ror.org/03mb0qq13', 'en', 1, 'https://ror.org/03mb0qq13 National Book Critics Circle'),
(56414, 'https://ror.org/00tzc0330', 'no_lang_code', 1, 'https://ror.org/00tzc0330 SMTplus (Czechia)'),
(56415, 'https://ror.org/0049pvf34', 'no_lang_code', 1, 'https://ror.org/0049pvf34 Strojírny OlŔovec (Czechia)'),
(56416, 'https://ror.org/015cg7d75', 'cs', 1, 'https://ror.org/015cg7d75 SociƔlnƭ Agentura'),
(56417, 'https://ror.org/01g3ety71', 'no_lang_code', 1, 'https://ror.org/01g3ety71 SocioFactor (Czechia)'),
(56418, 'https://ror.org/05anxz392', 'no_lang_code', 1, 'https://ror.org/05anxz392 StrojĆ­rny Podzimek (Czechia)'),
(56419, 'https://ror.org/02zp2vk95', 'en', 1, 'https://ror.org/02zp2vk95 National Inventors Hall of Fame'),
(56420, 'https://ror.org/00cyfpb31', 'no_lang_code', 1, 'https://ror.org/00cyfpb31 StrojĆ­rny a stavby Třinec (Czechia)'),
(56421, 'https://ror.org/00c7xe135', 'no_lang_code', 1, 'https://ror.org/00c7xe135 Strojmetal Aluminium Forging (Czechia)'),
(56422, 'https://ror.org/05pzshy96', 'no_lang_code', 1, 'https://ror.org/05pzshy96 Tenez (Czechia)'),
(56423, 'https://ror.org/05d81xr24', 'en', 1, 'https://ror.org/05d81xr24 National Organization for the Professional Advancement of Black Chemists and Chemical Engineers'),
(56424, 'https://ror.org/054xw4485', 'no_lang_code', 1, 'https://ror.org/054xw4485 TenzovƔhy (Czechia)');
INSERT INTO `rors` VALUES
(56425, 'https://ror.org/005a9av86', 'no_lang_code', 1, 'https://ror.org/005a9av86 STS Prachatice (Czechia)'),
(56426, 'https://ror.org/054tqs184', 'no_lang_code', 1, 'https://ror.org/054tqs184 Teramed (Czechia)'),
(56427, 'https://ror.org/03tbk6q11', 'no_lang_code', 1, 'https://ror.org/03tbk6q11 Terezia (Czechia)'),
(56428, 'https://ror.org/01ykng114', 'en', 1, 'https://ror.org/01ykng114 National Science and Technology Medals Foundation'),
(56429, 'https://ror.org/019vv3z40', 'en', 1, 'https://ror.org/019vv3z40 Pen-Faulkner Foundation'),
(56430, 'https://ror.org/05j15g034', 'no_lang_code', 1, 'https://ror.org/05j15g034 STÚ K (Czechia)'),
(56431, 'https://ror.org/04e14gy75', 'no_lang_code', 1, 'https://ror.org/04e14gy75 Styl Plzeň (Czechia)'),
(56432, 'https://ror.org/04s9b1414', 'no_lang_code', 1, 'https://ror.org/04s9b1414 Sudop Group (Czechia)'),
(56433, 'https://ror.org/00nzvp437', 'en', 1, 'https://ror.org/00nzvp437 Population Association of America'),
(56434, 'https://ror.org/05cv4ab20', 'en', 1, 'https://ror.org/05cv4ab20 Poultry Science Association'),
(56435, 'https://ror.org/045661064', 'no_lang_code', 1, 'https://ror.org/045661064 SvÔrovský (Czechia)'),
(56436, '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'),
(56437, 'https://ror.org/05h7qq668', 'cs', 1, 'https://ror.org/05h7qq668 Svaz Chovatelů Českého Strakatého Skotu'),
(56438, 'https://ror.org/04arfmc53', 'cs', 1, 'https://ror.org/04arfmc53 Svaz Chovatelů HolŔtýnského Skotu ČR'),
(56439, 'https://ror.org/01x9abe66', 'cs', 1, 'https://ror.org/01x9abe66 Svaz ChovatelÅÆ OvcĆ­ a Koz'),
(56440, 'https://ror.org/0165j6v88', 'cs', 1, 'https://ror.org/0165j6v88 Unie Geologických Asociací'),
(56441, 'https://ror.org/03ryswf50', 'no_lang_code', 1, 'https://ror.org/03ryswf50 Solar Monitor (Czechia)'),
(56442, 'https://ror.org/033zy3080', 'no_lang_code', 1, 'https://ror.org/033zy3080 Union Lesnƭ BrƔna (Czechia)'),
(56443, 'https://ror.org/00fg6ye96', 'cs', 1, 'https://ror.org/00fg6ye96 Svaz PěstitelÅÆ A ZpracovatelÅÆ Olejnin'),
(56444, 'https://ror.org/04e9mhs65', 'no_lang_code', 1, 'https://ror.org/04e9mhs65 SolarEnvi (Czechia)'),
(56445, 'https://ror.org/020k5bg95', 'no_lang_code', 1, 'https://ror.org/020k5bg95 Fujirebio (Czechia)'),
(56446, 'https://ror.org/03tg5rf69', 'no_lang_code', 1, 'https://ror.org/03tg5rf69 Uniplast Pardubice (Czechia)'),
(56447, 'https://ror.org/04dedrk57', 'en', 1, 'https://ror.org/04dedrk57 Association of Foundries'),
(56448, 'https://ror.org/05afyvv15', 'no_lang_code', 1, 'https://ror.org/05afyvv15 Sonberk (Czechia)'),
(56449, 'https://ror.org/01xz6zr49', 'no_lang_code', 1, 'https://ror.org/01xz6zr49 Vamet (Czechia)'),
(56450, 'https://ror.org/040ppeb55', 'no_lang_code', 1, 'https://ror.org/040ppeb55 Unique Textiles (Czechia)'),
(56451, 'https://ror.org/04wrbmd83', 'no_lang_code', 1, 'https://ror.org/04wrbmd83 Vanessa air (Czechia)'),
(56452, 'https://ror.org/01d5z1p97', 'cs', 1, 'https://ror.org/01d5z1p97 Svaz Vinařů ČeskĆ© Republiky'),
(56453, 'https://ror.org/00nxfq722', 'no_lang_code', 1, 'https://ror.org/00nxfq722 VÔpenka VitoŔov (Czechia)'),
(56454, 'https://ror.org/0293bgt12', 'no_lang_code', 1, 'https://ror.org/0293bgt12 Unites Systems (Czechia)'),
(56455, 'https://ror.org/005jnhy27', 'cs', 1, 'https://ror.org/005jnhy27 Svaz Výrobců Cementu'),
(56456, 'https://ror.org/01d2pjm58', 'no_lang_code', 1, 'https://ror.org/01d2pjm58 Universal Production Partners (Czechia)'),
(56457, 'https://ror.org/0197zpg25', 'no_lang_code', 1, 'https://ror.org/0197zpg25 SOR Libchavy (Czechia)'),
(56458, 'https://ror.org/030ceys03', 'no_lang_code', 1, 'https://ror.org/030ceys03 Vapos (Czechia)'),
(56459, 'https://ror.org/02w9wt917', 'no_lang_code', 1, 'https://ror.org/02w9wt917 Space Devices (Czechia)'),
(56460, 'https://ror.org/02r44k041', 'no_lang_code', 1, 'https://ror.org/02r44k041 Svit (Czechia)'),
(56461, 'https://ror.org/0506vaz69', 'no_lang_code', 1, 'https://ror.org/0506vaz69 Varroc Lighting Systems (United States)'),
(56462, 'https://ror.org/05fsqes40', 'no_lang_code', 1, 'https://ror.org/05fsqes40 SpeechTech (Czechia)'),
(56463, 'https://ror.org/04cd0p048', 'no_lang_code', 1, 'https://ror.org/04cd0p048 Svoboda (Czechia)'),
(56464, 'https://ror.org/01w2v6t15', 'cs', 1, 'https://ror.org/01w2v6t15 SpektroskopickĆ” Společnost Jana Marka Marci'),
(56465, 'https://ror.org/0491q1q03', 'no_lang_code', 1, 'https://ror.org/0491q1q03 Spel (Czechia)'),
(56466, 'https://ror.org/056p5a020', 'no_lang_code', 1, 'https://ror.org/056p5a020 SVS FEM (Czechia)'),
(56467, 'https://ror.org/02hhv3y44', 'no_lang_code', 1, 'https://ror.org/02hhv3y44 Speltronic (Czechia)'),
(56468, 'https://ror.org/03ftcvv28', 'en', 1, 'https://ror.org/03ftcvv28 Science & Technology Park (Czechia) Vědecko Technologický Park'),
(56469, 'https://ror.org/056028189', 'no_lang_code', 1, 'https://ror.org/056028189 Swietelsky (Austria)'),
(56470, 'https://ror.org/00pxr4197', 'no_lang_code', 1, 'https://ror.org/00pxr4197 Security Paper Mill (Czechia)'),
(56471, 'https://ror.org/045b4zv25', 'no_lang_code', 1, 'https://ror.org/045b4zv25 Vega (Czechia)'),
(56472, 'https://ror.org/00dtszh11', 'no_lang_code', 1, 'https://ror.org/00dtszh11 S Group Holding (Czechia)'),
(56473, 'https://ror.org/00ca8m310', 'cs', 1, 'https://ror.org/00ca8m310 Společenstvo KominĆ­kÅÆ ČeskĆ© republiky'),
(56474, 'https://ror.org/01qv89346', 'cs', 1, 'https://ror.org/01qv89346 SpolečnĆ” Vize'),
(56475, 'https://ror.org/03rez2z80', 'no_lang_code', 1, 'https://ror.org/03rez2z80 Libri Prohibiti'),
(56476, 'https://ror.org/01hqrb170', 'no_lang_code', 1, 'https://ror.org/01hqrb170 Synlab Czech (Czechia)'),
(56477, 'https://ror.org/05q2t4173', 'no_lang_code', 1, 'https://ror.org/05q2t4173 Vejce (Czechia)'),
(56478, 'https://ror.org/02c4b8082', 'no_lang_code', 1, 'https://ror.org/02c4b8082 Velaz (Czechia)'),
(56479, 'https://ror.org/0073d8m13', 'no_lang_code', 1, 'https://ror.org/0073d8m13 Velvana (Czechia)'),
(56480, 'https://ror.org/035r6h173', 'no_lang_code', 1, 'https://ror.org/035r6h173 Glasiert (Czechia)'),
(56481, 'https://ror.org/00wacrh06', 'no_lang_code', 1, 'https://ror.org/00wacrh06 Solitea (Czechia)'),
(56482, 'https://ror.org/02tq1vp04', 'no_lang_code', 1, 'https://ror.org/02tq1vp04 Ventura-Venkov (Czechia)'),
(56483, 'https://ror.org/03harvh27', 'no_lang_code', 1, 'https://ror.org/03harvh27 Technika Pro MěřenĆ­ a Automatizaci (Czechia)'),
(56484, 'https://ror.org/02vpeth71', 'en', 1, 'https://ror.org/02vpeth71 Museum of Romani Culture Muzeum romskƩ kultury'),
(56485, 'https://ror.org/055wsxp82', 'no_lang_code', 1, 'https://ror.org/055wsxp82 DivadelnĆ­ Noviny (Czechia)'),
(56486, 'https://ror.org/01b9jf692', 'no_lang_code', 1, 'https://ror.org/01b9jf692 Vepaspol Olomouc (Czechia)'),
(56487, 'https://ror.org/029xeav48', 'no_lang_code', 1, 'https://ror.org/029xeav48 T-string Pardubice (Czechia)'),
(56488, 'https://ror.org/020drq148', 'no_lang_code', 1, 'https://ror.org/020drq148 Vesa Velhartice (Czechia)'),
(56489, 'https://ror.org/050gvvy47', 'no_lang_code', 1, 'https://ror.org/050gvvy47 TFA (Czechia)'),
(56490, 'https://ror.org/02vaxhm79', 'cs', 1, 'https://ror.org/02vaxhm79 Společnost pro Studium Sekt a Nových NĆ”boženských SměrÅÆ'),
(56491, 'https://ror.org/02w58yh14', 'no_lang_code', 1, 'https://ror.org/02w58yh14 Veskom (Czechia)'),
(56492, 'https://ror.org/052pcv042', 'no_lang_code', 1, 'https://ror.org/052pcv042 TCC (Czechia)'),
(56493, 'https://ror.org/05wggj048', 'no_lang_code', 1, 'https://ror.org/05wggj048 Vestado (Czechia)'),
(56494, 'https://ror.org/05yh12c19', 'cs', 1, 'https://ror.org/05yh12c19 Společnost pro Technologie Ochrany PamĆ”tek'),
(56495, 'https://ror.org/05hxrt533', 'no_lang_code', 1, 'https://ror.org/05hxrt533 Tatra (Czechia)'),
(56496, 'https://ror.org/0027ecy34', 'cs', 1, 'https://ror.org/0027ecy34 Společnost pro Trvale Udržitelný Život'),
(56497, 'https://ror.org/00mdxht46', 'en', 1, 'https://ror.org/00mdxht46 Prison Service of the Czech Republic VězeňskĆ” služba ČeskĆ© republiky'),
(56498, 'https://ror.org/05herht24', 'en', 1, 'https://ror.org/05herht24 Czechoslovak Society of Arts and Sciences'),
(56499, 'https://ror.org/0373b8g76', 'no_lang_code', 1, 'https://ror.org/0373b8g76 Tagro (Czechia)'),
(56500, 'https://ror.org/04d7xaq68', 'no_lang_code', 1, 'https://ror.org/04d7xaq68 Takt (Czechia)'),
(56501, 'https://ror.org/010g1a428', 'no_lang_code', 1, 'https://ror.org/010g1a428 VHS Brno (Czechia)'),
(56502, 'https://ror.org/01yx6f755', 'cs', 1, 'https://ror.org/01yx6f755 Společnost pro Veřejnou Dopravu'),
(56503, 'https://ror.org/05k6wtk05', 'no_lang_code', 1, 'https://ror.org/05k6wtk05 Taktici (Czechia)'),
(56504, 'https://ror.org/0509gz575', 'no_lang_code', 1, 'https://ror.org/0509gz575 Via Alta (Czechia)'),
(56505, 'https://ror.org/02h6xem40', 'en', 1, 'https://ror.org/02h6xem40 Czech Society for Nutrition Společnost pro výživu'),
(56506, 'https://ror.org/03xr48a26', 'cs', 1, 'https://ror.org/03xr48a26 Společnost pro Výzkum a VzdělĆ”vĆ”nĆ­'),
(56507, 'https://ror.org/02en4cz69', 'no_lang_code', 1, 'https://ror.org/02en4cz69 Viapont (Czechia)'),
(56508, 'https://ror.org/05jkrds81', 'no_lang_code', 1, 'https://ror.org/05jkrds81 Vibrom (Czechia)'),
(56509, 'https://ror.org/00rtnjm51', 'no_lang_code', 1, 'https://ror.org/00rtnjm51 Taranis Invest (Czechia)'),
(56510, 'https://ror.org/05rgnr577', 'en', 1, 'https://ror.org/05rgnr577 Science and Technology Parks Association Společnost Vědeckotechnických ParkÅÆ'),
(56511, 'https://ror.org/0276snn96', 'no_lang_code', 1, 'https://ror.org/0276snn96 Tarpo (Czechia)'),
(56512, 'https://ror.org/05gn2nm29', 'no_lang_code', 1, 'https://ror.org/05gn2nm29 Viditech (Czechia)'),
(56513, 'https://ror.org/02nwjr777', 'cs', 1, 'https://ror.org/02nwjr777 Spolek PRO BIO PoradenstvĆ­'),
(56514, 'https://ror.org/01wx7v544', 'no_lang_code', 1, 'https://ror.org/01wx7v544 Tatsuno Europe (Czechia)'),
(56515, 'https://ror.org/01kq7c949', 'no_lang_code', 1, 'https://ror.org/01kq7c949 Wine cellars KutnĆ” Hora (Czechia)'),
(56516, 'https://ror.org/05k7j3y71', 'no_lang_code', 1, 'https://ror.org/05k7j3y71 SportovnĆ­ Centrum Atlas (Czechia)'),
(56517, 'https://ror.org/02pasr011', 'no_lang_code', 1, 'https://ror.org/02pasr011 Teaz (Czechia)'),
(56518, 'https://ror.org/00aw6xe57', 'en', 1, 'https://ror.org/00aw6xe57 Cave Administration of the Czech Republic SprÔva Jeskyní České Republiky'),
(56519, 'https://ror.org/02d57p683', 'cs', 1, 'https://ror.org/02d57p683 Administration of the National Park České Švýcarsko'),
(56520, 'https://ror.org/003garz92', 'no_lang_code', 1, 'https://ror.org/003garz92 Techem (Czechia)'),
(56521, 'https://ror.org/05mddv816', 'cs', 1, 'https://ror.org/05mddv816 SprƔva NƔrodnƭho Parku Podyjƭ'),
(56522, 'https://ror.org/04wf28y22', 'no_lang_code', 1, 'https://ror.org/04wf28y22 Techmix (Czechia)'),
(56523, 'https://ror.org/04k2s8g66', 'cs', 1, 'https://ror.org/04k2s8g66 VĆ­tkovickĆ” Nemocnice'),
(56524, 'https://ror.org/0482qwy81', 'cs', 1, 'https://ror.org/0482qwy81 SprĆ”va ŽelezničnĆ­ DopravnĆ­ Cesty'),
(56525, 'https://ror.org/02xtbq882', 'en', 1, 'https://ror.org/02xtbq882 Institute of Theoretical Physics 中国科学院理论物理研究所'),
(56526, 'https://ror.org/00r8ne687', 'no_lang_code', 1, 'https://ror.org/00r8ne687 Viton (Czechia)'),
(56527, 'https://ror.org/02bbbxs36', 'no_lang_code', 1, 'https://ror.org/02bbbxs36 Spyron (Czechia)'),
(56528, 'https://ror.org/01reter38', 'no_lang_code', 1, 'https://ror.org/01reter38 VKV Praha (Czechia)'),
(56529, '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.'),
(56530, 'https://ror.org/00jr9ks41', 'no_lang_code', 1, 'https://ror.org/00jr9ks41 Techniserv (Czechia)'),
(56531, 'https://ror.org/03twrdm38', 'no_lang_code', 1, 'https://ror.org/03twrdm38 Technistone (Czechia)'),
(56532, 'https://ror.org/003b2vh96', 'no_lang_code', 1, 'https://ror.org/003b2vh96 StavebnĆ­ Geologie - GeoprÅÆzkum ČeskĆ© Budějovice (Czechia)'),
(56533, 'https://ror.org/03310k523', 'no_lang_code', 1, 'https://ror.org/03310k523 Technofiber (Czechia)'),
(56534, 'https://ror.org/01b2z3d97', 'cs', 1, 'https://ror.org/01b2z3d97 VlastivědnĆ© Muzeum v Å umperku'),
(56535, 'https://ror.org/00v2c3q38', 'no_lang_code', 1, 'https://ror.org/00v2c3q38 Stap (Czechia)'),
(56536, 'https://ror.org/03rrdjf11', 'no_lang_code', 1, 'https://ror.org/03rrdjf11 Vlnovice Å pĆ­s (Czechia)'),
(56537, 'https://ror.org/02f0n4z35', 'en', 1, 'https://ror.org/02f0n4z35 TechnologickĆ” platforma EnergetickĆ” bezpečnost ČR Technology Platform Energy Security'),
(56538, 'https://ror.org/056yng194', 'no_lang_code', 1, 'https://ror.org/056yng194 Stapro (Czechia)'),
(56539, 'https://ror.org/02fcpv249', 'en', 1, 'https://ror.org/02fcpv249 TechnologickÔ Platforma UdržitelnÔ energetika Technology Platform Sustainable Energy for the Czech Republic'),
(56540, 'https://ror.org/04w6hdb78', 'no_lang_code', 1, 'https://ror.org/04w6hdb78 Starmon (Czechia)'),
(56541, 'https://ror.org/02ghv2v70', 'no_lang_code', 1, 'https://ror.org/02ghv2v70 Statek HornĆ­ Dvorce (Czechia)'),
(56542, 'https://ror.org/00dqzma51', 'no_lang_code', 1, 'https://ror.org/00dqzma51 VýrobnĆ­ družstvo SlezskĆ” Hořina (Czechia)'),
(56543, 'https://ror.org/00ccse471', 'en', 1, 'https://ror.org/00ccse471 State Regional Archives Litomerice StĆ”tnĆ­ oblastnĆ­ archiv v LitoměřicĆ­ch'),
(56544, 'https://ror.org/04avma498', 'no_lang_code', 1, 'https://ror.org/04avma498 VodĆ”renskĆ” AkciovĆ” Společnost (Czechia)'),
(56545, 'https://ror.org/03pmr7d81', 'en', 1, 'https://ror.org/03pmr7d81 National Technology Platform for Road Transport TechnologickĆ” platforma silničnĆ­ doprava'),
(56546, 'https://ror.org/01e6knz33', 'cs', 1, 'https://ror.org/01e6knz33 TechnologickƩ centrum Pƭsek'),
(56547, 'https://ror.org/00ammxx28', 'en', 1, 'https://ror.org/00ammxx28 Regional State Archives in Trebon StĆ”tnĆ­ oblastnĆ­ archiv v Třeboni'),
(56548, 'https://ror.org/0444qc238', 'no_lang_code', 1, 'https://ror.org/0444qc238 VodĆ”renskĆ” Společnost Chrudim (Czechia)'),
(56549, 'https://ror.org/04mt41a04', 'no_lang_code', 1, 'https://ror.org/04mt41a04 TechTest (Czechia)'),
(56550, 'https://ror.org/010w5rh03', 'no_lang_code', 1, 'https://ror.org/010w5rh03 VodÔrna KÔraný (Czechia)'),
(56551, 'https://ror.org/01vv4bg03', 'no_lang_code', 1, 'https://ror.org/01vv4bg03 VodnĆ­ Cesty (Czechia)'),
(56552, 'https://ror.org/055p3bc36', 'no_lang_code', 1, 'https://ror.org/055p3bc36 Teknia (Czechia)'),
(56553, 'https://ror.org/02eh4at60', 'no_lang_code', 1, 'https://ror.org/02eh4at60 VODNI DILA - TBD (Czechia)'),
(56554, 'https://ror.org/05dbs4128', 'no_lang_code', 1, 'https://ror.org/05dbs4128 O2 Czech Republic (Czechia)'),
(56555, 'https://ror.org/05rhhvk61', 'no_lang_code', 1, 'https://ror.org/05rhhvk61 VodnĆ­ zdroje Chrudim (Czechia)'),
(56556, 'https://ror.org/01r2m8t59', 'en', 1, 'https://ror.org/01r2m8t59 State Veterinary Administration'),
(56557, 'https://ror.org/00396dy63', 'no_lang_code', 1, 'https://ror.org/00396dy63 VodnĆ­ Zdroje Ekomonitor (Czechia)'),
(56558, 'https://ror.org/03harpv89', 'no_lang_code', 1, 'https://ror.org/03harpv89 VodnĆ­ Zdroje GLS Praha (Czechia)'),
(56559, 'https://ror.org/019d8yq85', 'no_lang_code', 1, 'https://ror.org/019d8yq85 Vyrtych TPI (Czechia)'),
(56560, 'https://ror.org/02j9na081', 'no_lang_code', 1, 'https://ror.org/02j9na081 Vodní zdroje HoleŔov (Czechia)'),
(56561, 'https://ror.org/045cfxc86', 'no_lang_code', 1, 'https://ror.org/045cfxc86 VodohospodÔřský podnik (Czechia)'),
(56562, 'https://ror.org/00n2epv23', 'no_lang_code', 1, 'https://ror.org/00n2epv23 StÔtní Výzkumný Ústav pro Stavbu Strojů (Czechia)'),
(56563, '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'),
(56564, 'https://ror.org/05vsweb26', 'no_lang_code', 1, 'https://ror.org/05vsweb26 Government Testing Laboratory of Machines (Czechia) StÔtní zkuŔebna strojů'),
(56565, 'https://ror.org/038hy2g58', 'no_lang_code', 1, 'https://ror.org/038hy2g58 Vojenské Lesy a Statky ČR (Czechia)'),
(56566, 'https://ror.org/00rvj3h03', 'no_lang_code', 1, 'https://ror.org/00rvj3h03 Vp Agro (Czechia)'),
(56567, 'https://ror.org/02bam3g77', 'cs', 1, 'https://ror.org/02bam3g77 VyŔŔí OdbornĆ” Å kola InformačnĆ­ch Služeb'),
(56568, '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'),
(56569, 'https://ror.org/0489x2521', 'no_lang_code', 1, 'https://ror.org/0489x2521 Vrsanska Uhelna (Czechia)'),
(56570, 'https://ror.org/01n85sk92', 'no_lang_code', 1, 'https://ror.org/01n85sk92 Stavoprojekta (Czechia)'),
(56571, 'https://ror.org/02nn2c651', 'no_lang_code', 1, 'https://ror.org/02nn2c651 Stavos Brno (Czechia)'),
(56572, 'https://ror.org/02z0tm307', 'no_lang_code', 1, 'https://ror.org/02z0tm307 Vrtný a Geologický Průzkum (Czechia)'),
(56573, 'https://ror.org/00cpjsn56', 'no_lang_code', 1, 'https://ror.org/00cpjsn56 VTL Blansko (Czechia)'),
(56574, 'https://ror.org/02faz3r42', 'cs', 1, 'https://ror.org/02faz3r42 VyŔŔí OdbornĆ” Å kola StřednĆ­ PrÅÆmyslovĆ” Å kola'),
(56575, 'https://ror.org/055y56x88', 'en', 1, 'https://ror.org/055y56x88 Stein Resort'),
(56576, 'https://ror.org/04b2avy95', 'no_lang_code', 1, 'https://ror.org/04b2avy95 Vuchz (Czechia)'),
(56577, 'https://ror.org/03dsw3e52', 'no_lang_code', 1, 'https://ror.org/03dsw3e52 Steinhauser (Czechia)'),
(56578, 'https://ror.org/00vnx7m69', 'cs', 1, 'https://ror.org/00vnx7m69 VýzkumnÔ Stanice VinohradnickÔ'),
(56579, 'https://ror.org/059hma273', 'no_lang_code', 1, 'https://ror.org/059hma273 Vums Legend (Czechia)'),
(56580, 'https://ror.org/02mh2m364', 'no_lang_code', 1, 'https://ror.org/02mh2m364 Vupek - Economy (Czechia)'),
(56581, 'https://ror.org/051h8nm81', 'no_lang_code', 1, 'https://ror.org/051h8nm81 Vuste - Apis (Czechia)'),
(56582, 'https://ror.org/0241sqg91', 'no_lang_code', 1, 'https://ror.org/0241sqg91 Stinchcombe Technology (Czechia)'),
(56583, 'https://ror.org/04h0yyj73', 'cs', 1, 'https://ror.org/04h0yyj73 VzdělĆ”vacĆ­ centrum pro veřejnou SprĆ”vu'),
(56584, 'https://ror.org/055df5q89', 'no_lang_code', 1, 'https://ror.org/055df5q89 Vuvl (Czechia)'),
(56585, 'https://ror.org/03c7ss521', 'no_lang_code', 1, 'https://ror.org/03c7ss521 STMicroelectronics (Czechia)'),
(56586, 'https://ror.org/0549nvv93', 'no_lang_code', 1, 'https://ror.org/0549nvv93 Vws Memsep (Czechia)'),
(56587, 'https://ror.org/04cgmq851', 'en', 1, 'https://ror.org/04cgmq851 Society for Ethnomusicology'),
(56588, 'https://ror.org/01p67ns08', 'no_lang_code', 1, 'https://ror.org/01p67ns08 Výrobně ObchodnĆ­ Družstvo Zdislavice (Czechia)'),
(56589, 'https://ror.org/01wa1cb54', 'no_lang_code', 1, 'https://ror.org/01wa1cb54 TESCO SW (Czechia)'),
(56590, 'https://ror.org/030jevs33', 'no_lang_code', 1, 'https://ror.org/030jevs33 TESLA Electrontubes (Czechia)'),
(56591, 'https://ror.org/008rtq165', 'en', 1, 'https://ror.org/008rtq165 Society for the Study of Social Problems'),
(56592, 'https://ror.org/048xrz015', 'no_lang_code', 1, 'https://ror.org/048xrz015 Testima (Czechia)'),
(56593, 'https://ror.org/000yxte11', 'en', 1, 'https://ror.org/000yxte11 Southern Historical Association'),
(56594, 'https://ror.org/037xwh335', 'no_lang_code', 1, 'https://ror.org/037xwh335 Maspex (Czechia)'),
(56595, 'https://ror.org/00fq8a754', 'en', 1, 'https://ror.org/00fq8a754 Svenska Akademien Swedish Academy'),
(56596, 'https://ror.org/036vxea50', 'no_lang_code', 1, 'https://ror.org/036vxea50 Walramcom (Czechia)'),
(56597, 'https://ror.org/052p9pa08', 'en', 1, 'https://ror.org/052p9pa08 Theatre Library Association'),
(56598, 'https://ror.org/043agw178', 'no_lang_code', 1, 'https://ror.org/043agw178 TG Drives (Czechia)'),
(56599, 'https://ror.org/04pyjfp28', 'no_lang_code', 1, 'https://ror.org/04pyjfp28 Watrex (Czechia)'),
(56600, 'https://ror.org/0335xmv35', 'en', 1, 'https://ror.org/0335xmv35 Weed Science Society of America'),
(56601, 'https://ror.org/03pfa6e38', 'no_lang_code', 1, 'https://ror.org/03pfa6e38 TGS Nastroje-Stroje-Technologicke Sluzby (Czechia)'),
(56602, 'https://ror.org/05m135a87', 'no_lang_code', 1, 'https://ror.org/05m135a87 Wekus (Czechia)'),
(56603, 'https://ror.org/010ssmx53', 'en', 1, 'https://ror.org/010ssmx53 Prague Castle SprÔva Pražského Hradu'),
(56604, 'https://ror.org/00t8egy48', 'no_lang_code', 1, 'https://ror.org/00t8egy48 Thermona (Czechia)'),
(56605, 'https://ror.org/007gnnh23', 'no_lang_code', 1, 'https://ror.org/007gnnh23 Welltest (Czechia)'),
(56606, 'https://ror.org/05dart064', 'no_lang_code', 1, 'https://ror.org/05dart064 TovĆ”rna HasicĆ­ Techniky Polička (Czechia)'),
(56607, 'https://ror.org/03ha1m790', 'no_lang_code', 1, 'https://ror.org/03ha1m790 Wienerberger (Czechia)'),
(56608, 'https://ror.org/00270m654', 'no_lang_code', 1, 'https://ror.org/00270m654 Wiesner Hager (Czechia)'),
(56609, 'https://ror.org/05ra0f154', 'no_lang_code', 1, 'https://ror.org/05ra0f154 TIRSO (Czechia)'),
(56610, 'https://ror.org/00p8gje40', 'no_lang_code', 1, 'https://ror.org/00p8gje40 TiĆŗ-Plast (Czechia)'),
(56611, 'https://ror.org/025db4c72', 'no_lang_code', 1, 'https://ror.org/025db4c72 TLP (Czechia)'),
(56612, 'https://ror.org/04a2jrr93', 'no_lang_code', 1, 'https://ror.org/04a2jrr93 Wista (Czechia)'),
(56613, 'https://ror.org/00q6td368', 'no_lang_code', 1, 'https://ror.org/00q6td368 Wolf and Danniel (Czechia)'),
(56614, 'https://ror.org/006atkg72', 'no_lang_code', 1, 'https://ror.org/006atkg72 Wolfsberg LeteckƔ TovƔrna (Czechia)'),
(56615, 'https://ror.org/02hg9fh47', 'no_lang_code', 1, 'https://ror.org/02hg9fh47 Univerza (Czechia)'),
(56616, 'https://ror.org/00dbv2r88', 'no_lang_code', 1, 'https://ror.org/00dbv2r88 Wombat (Czechia)'),
(56617, 'https://ror.org/039nme287', 'no_lang_code', 1, 'https://ror.org/039nme287 Woodcomp (Czechia)'),
(56618, 'https://ror.org/01g152h78', 'no_lang_code', 1, 'https://ror.org/01g152h78 TNS Servis (Czechia)'),
(56619, 'https://ror.org/05x13kz70', 'no_lang_code', 1, 'https://ror.org/05x13kz70 Workswell (Czechia)'),
(56620, 'https://ror.org/027z29k25', 'no_lang_code', 1, 'https://ror.org/027z29k25 UPS Technology (Czechia)'),
(56621, 'https://ror.org/03q3ejp70', 'no_lang_code', 1, 'https://ror.org/03q3ejp70 X Com Base (Czechia)'),
(56622, 'https://ror.org/02jkxh593', 'no_lang_code', 1, 'https://ror.org/02jkxh593 Tocoen (Czechia)'),
(56623, 'https://ror.org/00rcr5k60', 'no_lang_code', 1, 'https://ror.org/00rcr5k60 UpVision (Czechia)'),
(56624, 'https://ror.org/01pg8d938', 'no_lang_code', 1, 'https://ror.org/01pg8d938 X Therma'),
(56625, 'https://ror.org/02pp0vd17', 'no_lang_code', 1, 'https://ror.org/02pp0vd17 Toma (Czechia)'),
(56626, 'https://ror.org/05js6gq32', 'no_lang_code', 1, 'https://ror.org/05js6gq32 Urbanismus Architektura Design Studio (Czechia)'),
(56627, 'https://ror.org/046s0ap47', 'no_lang_code', 1, 'https://ror.org/046s0ap47 XT Card (Czechia)'),
(56628, 'https://ror.org/003rrdh33', 'no_lang_code', 1, 'https://ror.org/003rrdh33 Tomst (Czechia)'),
(56629, 'https://ror.org/05t4n3357', 'no_lang_code', 1, 'https://ror.org/05t4n3357 Ybux (Czechia)'),
(56630, 'https://ror.org/009d05f16', 'no_lang_code', 1, 'https://ror.org/009d05f16 Top - Modern (Czechia)'),
(56631, 'https://ror.org/04ffchc57', 'no_lang_code', 1, 'https://ror.org/04ffchc57 Top Alulit (Czechia)'),
(56632, 'https://ror.org/02xzfn017', 'no_lang_code', 1, 'https://ror.org/02xzfn017 Top-Bio (Czechia)'),
(56633, 'https://ror.org/00ptgc951', 'no_lang_code', 1, 'https://ror.org/00ptgc951 Zepo Bělohrad (Czechia)'),
(56634, 'https://ror.org/03enna516', 'no_lang_code', 1, 'https://ror.org/03enna516 Z Group Steel Holding (Czechia)'),
(56635, 'https://ror.org/01tmqyy34', 'no_lang_code', 1, 'https://ror.org/01tmqyy34 ZaklƔdƔnƭ Staveb (Czechia)'),
(56636, 'https://ror.org/00ecyj017', 'no_lang_code', 1, 'https://ror.org/00ecyj017 TOS Svitavy (Czechia)'),
(56637, 'https://ror.org/05jxt4a42', 'no_lang_code', 1, 'https://ror.org/05jxt4a42 Toseda (Czechia)'),
(56638, 'https://ror.org/036skbs59', 'cs', 1, 'https://ror.org/036skbs59 ZĆ”kladnĆ­ Å kola a MateřskĆ” Å kola Angel'),
(56639, 'https://ror.org/041d7vh36', 'no_lang_code', 1, 'https://ror.org/041d7vh36 Total (Czechia)'),
(56640, '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'),
(56641, 'https://ror.org/00jcm9s26', 'cs', 1, 'https://ror.org/00jcm9s26 ToulcÅÆv DvÅÆr'),
(56642, 'https://ror.org/04bej5z04', 'no_lang_code', 1, 'https://ror.org/04bej5z04 Tovek (Czechia)'),
(56643, 'https://ror.org/018ryqx18', 'cs', 1, 'https://ror.org/018ryqx18 ZÔkladní Ŕkola Brno'),
(56644, 'https://ror.org/04ef3fk55', 'en', 1, 'https://ror.org/04ef3fk55 Institute for the Study of Totalitarian Regimes Ústav pro Studium Totalitních Režimů'),
(56645, 'https://ror.org/01dr2x580', 'cs', 1, 'https://ror.org/01dr2x580 ZÔkladní Škola Vachkova'),
(56646, 'https://ror.org/04cbqcv03', 'no_lang_code', 1, 'https://ror.org/04cbqcv03 Tpa Čr (Czechia)'),
(56647, 'https://ror.org/0021qzn44', 'cs', 1, 'https://ror.org/0021qzn44 Ústav Sportovní Medicíny'),
(56648, 'https://ror.org/02shpxe08', 'no_lang_code', 1, 'https://ror.org/02shpxe08 Transcon Electronic Systems (Czechia)'),
(56649, 'https://ror.org/04ys5fv56', 'cs', 1, 'https://ror.org/04ys5fv56 ZĆ”padočeskĆ” Galerie v Plzni'),
(56650, 'https://ror.org/05j6a3y70', 'no_lang_code', 1, 'https://ror.org/05j6a3y70 ZAS Věž (Czechia)'),
(56651, 'https://ror.org/004542426', 'cs', 1, 'https://ror.org/004542426 Ústav T. G. Masaryka'),
(56652, 'https://ror.org/05vgxgc56', 'no_lang_code', 1, 'https://ror.org/05vgxgc56 Trask Solutions (Czechia)'),
(56653, 'https://ror.org/0258a5n35', 'en', 1, 'https://ror.org/0258a5n35 Institute for Spatial Development Ústav územního rozvoje'),
(56654, 'https://ror.org/04maqxw13', 'no_lang_code', 1, 'https://ror.org/04maqxw13 Tratec (Czechia)'),
(56655, 'https://ror.org/03xrsh834', 'no_lang_code', 1, 'https://ror.org/03xrsh834 Trendex Nova (Czechia)'),
(56656, 'https://ror.org/025dke180', 'no_lang_code', 1, 'https://ror.org/025dke180 Žatec (Czechia)'),
(56657, 'https://ror.org/02tfw2a59', 'no_lang_code', 1, 'https://ror.org/02tfw2a59 Trevos Kostalov (Czechia)'),
(56658, 'https://ror.org/02aa8pv85', 'no_lang_code', 1, 'https://ror.org/02aa8pv85 Ústav Využití Plynu (Czechia)'),
(56659, 'https://ror.org/03b364z86', 'no_lang_code', 1, 'https://ror.org/03b364z86 Trevos (Czechia)'),
(56660, 'https://ror.org/00t6k4c45', 'cs', 1, 'https://ror.org/00t6k4c45 ZD KrƔsnƔ Hora Nad Vltavou (Czechia)'),
(56661, 'https://ror.org/045ykqf07', 'no_lang_code', 1, 'https://ror.org/045ykqf07 Triangolo (Czechia)'),
(56662, '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ý'),
(56663, 'https://ror.org/021sjh871', 'no_lang_code', 1, 'https://ror.org/021sjh871 TriFoil Imaging (United States)'),
(56664, 'https://ror.org/04e3nxf09', 'no_lang_code', 1, 'https://ror.org/04e3nxf09 Triga (Czechia)'),
(56665, 'https://ror.org/028gzd671', 'no_lang_code', 1, 'https://ror.org/028gzd671 Trigad (Czechia)'),
(56666, 'https://ror.org/019z0b657', 'no_lang_code', 1, 'https://ror.org/019z0b657 V-Projekt (Czechia)'),
(56667, 'https://ror.org/00a2crp77', 'no_lang_code', 1, 'https://ror.org/00a2crp77 ViDiS (Czechia)'),
(56668, 'https://ror.org/04pxnww65', 'no_lang_code', 1, 'https://ror.org/04pxnww65 TriloByte Statistical Software (Czechia)'),
(56669, 'https://ror.org/024s9tn87', 'no_lang_code', 1, 'https://ror.org/024s9tn87 Trimill (Czechia)'),
(56670, 'https://ror.org/01c2pab95', 'no_lang_code', 1, 'https://ror.org/01c2pab95 Vial (Norway)'),
(56671, 'https://ror.org/00716cx46', 'no_lang_code', 1, 'https://ror.org/00716cx46 VMK (Czechia)'),
(56672, 'https://ror.org/02pb4xx87', 'cs', 1, 'https://ror.org/02pb4xx87 Zdravotní Ústav Se Sídlem v Ústí nad Labem'),
(56673, 'https://ror.org/035qjfd74', 'no_lang_code', 1, 'https://ror.org/035qjfd74 Třinecký Inženýring (Czechia)'),
(56674, 'https://ror.org/03b3dd703', 'no_lang_code', 1, 'https://ror.org/03b3dd703 Trios (Czechia)'),
(56675, 'https://ror.org/05yq91m89', 'cs', 1, 'https://ror.org/05yq91m89 ZdravotnickĆ” ZĆ”chrannĆ” Služba HlavnĆ­ho Města Prahy'),
(56676, 'https://ror.org/00wnsmv12', 'cs', 1, 'https://ror.org/00wnsmv12 ZdravotnickĆ” ZĆ”chrannĆ” Služba JihočeskĆ©ho Kraje'),
(56677, 'https://ror.org/05rgkkt42', 'no_lang_code', 1, 'https://ror.org/05rgkkt42 Vafo Praha (Czechia)'),
(56678, 'https://ror.org/048dgbt58', 'no_lang_code', 1, 'https://ror.org/048dgbt58 Triton Turnov (Czechia)'),
(56679, 'https://ror.org/01y0rs066', 'cs', 1, 'https://ror.org/01y0rs066 ZdravotnickÔ ZÔchrannÔ Služba KrÔlovéhradeckého Kraje'),
(56680, 'https://ror.org/0450ydh81', 'no_lang_code', 1, 'https://ror.org/0450ydh81 Vakabrnocz (Czechia)'),
(56681, 'https://ror.org/01ey4aq86', 'no_lang_code', 1, 'https://ror.org/01ey4aq86 Trs (Czechia)'),
(56682, 'https://ror.org/04m08s625', 'no_lang_code', 1, 'https://ror.org/04m08s625 Vaklima (Czechia)'),
(56683, 'https://ror.org/02h4pfs82', 'en', 1, 'https://ror.org/02h4pfs82 Institute of Industrial Engineering'),
(56684, 'https://ror.org/030nks913', 'no_lang_code', 1, 'https://ror.org/030nks913 ZEAS Lysice (Czechia)'),
(56685, 'https://ror.org/006jv7t09', 'no_lang_code', 1, 'https://ror.org/006jv7t09 TSI System (Czechia)'),
(56686, 'https://ror.org/019h4w337', 'no_lang_code', 1, 'https://ror.org/019h4w337 VƔlcovna Trub (Czechia)'),
(56687, 'https://ror.org/00nq6zy28', 'no_lang_code', 1, 'https://ror.org/00nq6zy28 Zebr (Czechia)'),
(56688, 'https://ror.org/05rbqz184', 'no_lang_code', 1, 'https://ror.org/05rbqz184 Valeo (Czechia)'),
(56689, 'https://ror.org/03cnpnn47', 'no_lang_code', 1, 'https://ror.org/03cnpnn47 TT Servis (Czechia)'),
(56690, 'https://ror.org/01y5dqg31', 'no_lang_code', 1, 'https://ror.org/01y5dqg31 Zeelandia (Czechia)'),
(56691, 'https://ror.org/01356gm80', 'cs', 1, 'https://ror.org/01356gm80 ZelinÔřskĆ” unie Čech a Moravy'),
(56692, 'https://ror.org/04mcr1694', 'no_lang_code', 1, 'https://ror.org/04mcr1694 Walmark (Czechia)'),
(56693, 'https://ror.org/01xy5wy39', 'no_lang_code', 1, 'https://ror.org/01xy5wy39 Želivka (Czechia)'),
(56694, 'https://ror.org/04c5v7077', 'no_lang_code', 1, 'https://ror.org/04c5v7077 TTC Marconi (Czechia)'),
(56695, 'https://ror.org/024hftt26', 'no_lang_code', 1, 'https://ror.org/024hftt26 ZemědělskĆ© Družstvo Å itbořice (Czechia)'),
(56696, 'https://ror.org/02fmfgp89', 'no_lang_code', 1, 'https://ror.org/02fmfgp89 Termosondy Kladno (Czechia)'),
(56697, 'https://ror.org/02gkvw867', 'no_lang_code', 1, 'https://ror.org/02gkvw867 Zemcheba (Czechia)'),
(56698, 'https://ror.org/02atyww07', 'no_lang_code', 1, 'https://ror.org/02atyww07 TM Jesenice (Czechia)'),
(56699, 'https://ror.org/008rnfn31', 'no_lang_code', 1, 'https://ror.org/008rnfn31 TTS Group (Czechia)'),
(56700, 'https://ror.org/0534tk365', 'no_lang_code', 1, 'https://ror.org/0534tk365 ZemědělskĆ” a DopravnĆ­ Technika (Czechia)'),
(56701, 'https://ror.org/03tyvpq48', 'en', 1, 'https://ror.org/03tyvpq48 Prague Zoo ZoologickĆ” Zahrada'),
(56702, 'https://ror.org/02876kb37', 'no_lang_code', 1, 'https://ror.org/02876kb37 ZP Otice (Czechia)'),
(56703, 'https://ror.org/03x8v6f75', 'no_lang_code', 1, 'https://ror.org/03x8v6f75 ZemědělskĆ” Agentura (Czechia)'),
(56704, 'https://ror.org/04r8jnk80', 'no_lang_code', 1, 'https://ror.org/04r8jnk80 Sloveč (Czechia)'),
(56705, 'https://ror.org/05jngx315', 'no_lang_code', 1, 'https://ror.org/05jngx315 ZPA Smart Energy (Czechia)'),
(56706, 'https://ror.org/014r06x83', 'no_lang_code', 1, 'https://ror.org/014r06x83 ZPA Ekoreg (Czechia)'),
(56707, 'https://ror.org/018vhj234', 'no_lang_code', 1, 'https://ror.org/018vhj234 Turnex (Czechia)'),
(56708, 'https://ror.org/03q51sy36', 'no_lang_code', 1, 'https://ror.org/03q51sy36 ZPA Pecky (Czechia)'),
(56709, 'https://ror.org/01tp4m681', 'no_lang_code', 1, 'https://ror.org/01tp4m681 TÜV Nord (Czechia)'),
(56710, 'https://ror.org/01jhs2k85', 'no_lang_code', 1, 'https://ror.org/01jhs2k85 TVD TechnickÔ Výroba (Czechia)'),
(56711, 'https://ror.org/05wmvrv56', 'no_lang_code', 1, 'https://ror.org/05wmvrv56 SlezskĆ” Dubina (Czechia)'),
(56712, 'https://ror.org/03eeyeh88', 'cs', 1, 'https://ror.org/03eeyeh88 TyfloCentrum Brno'),
(56713, 'https://ror.org/04mhfc493', 'no_lang_code', 1, 'https://ror.org/04mhfc493 Agroholding (Czechia)'),
(56714, 'https://ror.org/01aej3c59', 'no_lang_code', 1, 'https://ror.org/01aej3c59 Tylex Letovice (Czechia)'),
(56715, 'https://ror.org/04b2kpa50', 'no_lang_code', 1, 'https://ror.org/04b2kpa50 ZemědělskĆ© družstvo BaÅ”nice (Czechia)'),
(56716, 'https://ror.org/00jgvmv83', 'no_lang_code', 1, 'https://ror.org/00jgvmv83 ŽPSV (Czechia)'),
(56717, 'https://ror.org/05cpqn402', 'no_lang_code', 1, 'https://ror.org/05cpqn402 ZPT Vigantice (Czechia)'),
(56718, 'https://ror.org/0404zsw10', 'no_lang_code', 1, 'https://ror.org/0404zsw10 ZPV Rožnov (Czechia)'),
(56719, 'https://ror.org/034f13e71', 'no_lang_code', 1, 'https://ror.org/034f13e71 ŽSD (Czechia)'),
(56720, 'https://ror.org/05bb2ws56', 'no_lang_code', 1, 'https://ror.org/05bb2ws56 ZUD (Czechia)'),
(56721, 'https://ror.org/05q0yrx29', 'no_lang_code', 1, 'https://ror.org/05q0yrx29 ZVU (Czechia)'),
(56722, 'https://ror.org/011jzth85', 'no_lang_code', 1, 'https://ror.org/011jzth85 ZVU KovƔrna (Czechia)'),
(56723, 'https://ror.org/01xjdvt46', 'no_lang_code', 1, 'https://ror.org/01xjdvt46 ZVVZ (Czechia)'),
(56724, 'https://ror.org/02q6y5t34', 'cs', 1, 'https://ror.org/02q6y5t34 TýmovÔ iniciativa pro místní udržitelný rozvoj'),
(56725, 'https://ror.org/04wsg8a03', 'no_lang_code', 1, 'https://ror.org/04wsg8a03 U-24 (Czechia)'),
(56726, 'https://ror.org/05b3j8482', 'no_lang_code', 1, 'https://ror.org/05b3j8482 Unex (Czechia)'),
(56727, 'https://ror.org/04zkpdz50', 'no_lang_code', 1, 'https://ror.org/04zkpdz50 ZZN Pelhřimov (Czechia)'),
(56728, 'https://ror.org/05f3wa926', 'no_lang_code', 1, 'https://ror.org/05f3wa926 Unica Technologies (Czechia)'),
(56729, 'https://ror.org/02jmdhd96', 'no_lang_code', 1, 'https://ror.org/02jmdhd96 Unidataz (Czechia)'),
(56730, 'https://ror.org/01ddk2e73', 'cs', 1, 'https://ror.org/01ddk2e73 ZemědělskĆ© Družstvo Čechtice'),
(56731, 'https://ror.org/03ff02h25', 'no_lang_code', 1, 'https://ror.org/03ff02h25 ZemědělskĆ” a ekologickĆ” regionĆ”lnĆ­ agentura (Czechia)'),
(56732, 'https://ror.org/0422vfg55', 'cs', 1, 'https://ror.org/0422vfg55 ZemědělskĆ© Družstvo Dolany'),
(56733, 'https://ror.org/01rjx0g69', 'cs', 1, 'https://ror.org/01rjx0g69 ZemědělskĆ© Družstvo JesenĆ­k'),
(56734, 'https://ror.org/01dx78504', 'no_lang_code', 1, 'https://ror.org/01dx78504 ZEZ Praha (Czechia)'),
(56735, 'https://ror.org/04gffqv96', 'no_lang_code', 1, 'https://ror.org/04gffqv96 ZF Engineering (Czechia)'),
(56736, 'https://ror.org/03429t854', 'cs', 1, 'https://ror.org/03429t854 ZemědělskĆ© Družstvo Kojčice'),
(56737, 'https://ror.org/02mfcc374', 'no_lang_code', 1, 'https://ror.org/02mfcc374 Živa (Czechia)'),
(56738, 'https://ror.org/02fwjaz02', 'cs', 1, 'https://ror.org/02fwjaz02 Život90'),
(56739, 'https://ror.org/045tder48', 'cs', 1, 'https://ror.org/045tder48 ZemědělskĆ© družstvo LiběŔice'),
(56740, 'https://ror.org/00a9saw63', 'cs', 1, 'https://ror.org/00a9saw63 ZkuŔebna Kamene a Kameniva'),
(56741, 'https://ror.org/00cagd171', 'cs', 1, 'https://ror.org/00cagd171 ZemědělskĆ© Družstvo Maleč'),
(56742, 'https://ror.org/00g92jb54', 'no_lang_code', 1, 'https://ror.org/00g92jb54 ZlĆ­n Precision (Czechia)'),
(56743, 'https://ror.org/05515m078', 'no_lang_code', 1, 'https://ror.org/05515m078 Značky Plzeň (Czechia)'),
(56744, 'https://ror.org/0546ny985', 'en', 1, 'https://ror.org/0546ny985 Adriatic Research Institute'),
(56745, 'https://ror.org/047xr9y18', 'cs', 1, 'https://ror.org/047xr9y18 Znalecký Ústav Bezpečnosti a Ochrany ZdravĆ­'),
(56746, 'https://ror.org/03bzwhy87', 'cs', 1, 'https://ror.org/03bzwhy87 ZemědělskĆ© Družstvo VlastnĆ­kÅÆ MrĆ”kotĆ­n'),
(56747, 'https://ror.org/01gshs668', 'cs', 1, 'https://ror.org/01gshs668 Český Svaz OchrĆ”ncÅÆ Přírody VlaÅ”im'),
(56748, 'https://ror.org/030zp3k15', 'no_lang_code', 1, 'https://ror.org/030zp3k15 ZemědělskĆ© Družstvo Vrchovina (Czechia)'),
(56749, 'https://ror.org/044kfsb93', 'cs', 1, 'https://ror.org/044kfsb93 ZemědělskĆ© ObchodnĆ­ Družstvo KĆ”men'),
(56750, 'https://ror.org/01ct6ew56', 'no_lang_code', 1, 'https://ror.org/01ct6ew56 ZONER software (Czechia)'),
(56751, 'https://ror.org/00fzxtk71', 'en', 1, 'https://ror.org/00fzxtk71 Joint Laboratory for Extreme Conditions Matter Properties č„æå—ē§‘ęŠ€å¤§å­¦ęžē«Æę”ä»¶ē‰©č“Øē‰¹ę€§č”åˆå®žéŖŒå®¤'),
(56752, 'https://ror.org/04m55z708', 'no_lang_code', 1, 'https://ror.org/04m55z708 Zemos (Czechia)'),
(56753, 'https://ror.org/05ghvzc65', 'no_lang_code', 1, 'https://ror.org/05ghvzc65 Sanofi (Czechia)'),
(56754, 'https://ror.org/00me50c36', 'en', 1, 'https://ror.org/00me50c36 Avraham Y. Goldratt Institute'),
(56755, 'https://ror.org/01datx010', 'en', 1, 'https://ror.org/01datx010 Designability'),
(56756, 'https://ror.org/00e8pgs50', 'de', 1, 'https://ror.org/00e8pgs50 Beckmann-Institut für Technologieentwicklung'),
(56757, 'https://ror.org/01eb88c92', 'en', 1, 'https://ror.org/01eb88c92 Animal Health Institute'),
(56758, 'https://ror.org/05bhnv771', 'en', 1, 'https://ror.org/05bhnv771 Board Institute'),
(56759, 'https://ror.org/058kkmh35', 'en', 1, 'https://ror.org/058kkmh35 Asbestos Institute'),
(56760, 'https://ror.org/0493txn47', 'en', 1, 'https://ror.org/0493txn47 Canadian Energy Research Institute'),
(56761, 'https://ror.org/03md8p445', 'en', 1, 'https://ror.org/03md8p445 The Cancer Institute Hospital ćŒć‚“ē ”ęœ‰ę˜Žē—…é™¢'),
(56762, 'https://ror.org/05kk1a757', 'no_lang_code', 1, 'https://ror.org/05kk1a757 Daikin (United States) ćƒ€ć‚¤ć‚­ćƒ³å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(56763, 'https://ror.org/0091pmq63', 'en', 1, 'https://ror.org/0091pmq63 DermaCare Neuroscience Institute'),
(56764, 'https://ror.org/04tshyq54', 'en', 1, 'https://ror.org/04tshyq54 Deutsches Institut für Zell und Gewebeersatz German Institute for Cell and Tissue Replacement'),
(56765, 'https://ror.org/041c3d085', 'en', 1, 'https://ror.org/041c3d085 JSC Scientific Research Institute of Motor Transport ŠžŠŠž ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾Š³Š¾ транспорта'),
(56766, 'https://ror.org/05smnbn20', 'no_lang_code', 1, 'https://ror.org/05smnbn20 Foerster (United States)'),
(56767, 'https://ror.org/04gam2n80', 'en', 1, 'https://ror.org/04gam2n80 Gravure Association of the Americas'),
(56768, 'https://ror.org/04mwbja62', 'en', 1, 'https://ror.org/04mwbja62 Guangzhou Special Pressure Equipment Testing and Research Institute å¹æå·žē‰¹ē§ę‰æåŽ‹č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(56769, 'https://ror.org/0225cyg31', 'de', 1, 'https://ror.org/0225cyg31 Senatsverwaltung für Wirtschaft, Energie und Betriebe'),
(56770, 'https://ror.org/01a29cf93', 'de', 1, 'https://ror.org/01a29cf93 Institut für Industrielle Pharmazie'),
(56771, 'https://ror.org/02v8n3s74', 'en', 1, 'https://ror.org/02v8n3s74 Institute for Advanced Engineering ź³ źø‰ 공학 ģ—°źµ¬ģ†Œ'),
(56772, 'https://ror.org/051f1yf64', 'de', 1, 'https://ror.org/051f1yf64 Institut Kardiale Diagnostik und Therapie'),
(56773, 'https://ror.org/05v0k1d18', 'de', 1, 'https://ror.org/05v0k1d18 Institut für Korrosionsschutz Dresden'),
(56774, 'https://ror.org/05dad0z78', 'de', 1, 'https://ror.org/05dad0z78 ICM Chemnitz'),
(56775, 'https://ror.org/010c2f249', 'en', 1, 'https://ror.org/010c2f249 Institute of Electrodynamics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ електроГинаміки ŠŠŠ України'),
(56776, 'https://ror.org/019ngyx76', 'en', 1, 'https://ror.org/019ngyx76 Institute for Environmental Management'),
(56777, 'https://ror.org/043b3da62', 'es', 1, 'https://ror.org/043b3da62 Instituto HologrƔfico Terrasun Terrasun Holographic Institute'),
(56778, 'https://ror.org/02737yq40', 'en', 1, 'https://ror.org/02737yq40 Fesenkov Astrophysical Institute Астрофизический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š’. Š“. Фесенкова'),
(56779, 'https://ror.org/04r6r5p42', 'az', 1, 'https://ror.org/04r6r5p42 Neft Kimya Prosesləri Institutu'),
(56780, 'https://ror.org/01cm3mn51', 'no_lang_code', 1, 'https://ror.org/01cm3mn51 Liaison Technologies (United States)'),
(56781, 'https://ror.org/01f15r266', 'en', 1, 'https://ror.org/01f15r266 Inha University in Tashkent Toshkent Shahridagi Inha Universiteti'),
(56782, 'https://ror.org/05d1wpf45', 'en', 1, 'https://ror.org/05d1wpf45 Islamic Azad University, Dezful Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŲŒ ŲÆŲ²ŁŁˆŁ„'),
(56783, 'https://ror.org/03sxhq344', 'pl', 1, 'https://ror.org/03sxhq344 Instytut Innowacji Przemysłu Mleczarskiego'),
(56784, 'https://ror.org/05qp2sp52', 'en', 1, 'https://ror.org/05qp2sp52 Beijing Dongfang Hongsheng New Energy Application Technology Research Institute åŒ—äŗ¬äøœę–¹ēŗ¢å‡ę–°čƒ½ęŗåŗ”ē”ØęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åøē®€ä»‹'),
(56785, 'https://ror.org/030qj9p34', 'no_lang_code', 1, 'https://ror.org/030qj9p34 Čisté Kovy (Czechia)'),
(56786, 'https://ror.org/04ve9h794', 'no_lang_code', 1, 'https://ror.org/04ve9h794 Bernard (Czechia)'),
(56787, 'https://ror.org/03d013e69', 'no_lang_code', 1, 'https://ror.org/03d013e69 Ipra (Czechia)'),
(56788, 'https://ror.org/03b9ne411', 'no_lang_code', 1, 'https://ror.org/03b9ne411 VH Pharma (Czechia)'),
(56789, 'https://ror.org/04h006113', 'pt', 1, 'https://ror.org/04h006113 Instituto Sapientia'),
(56790, 'https://ror.org/04hp0zc29', 'en', 1, 'https://ror.org/04hp0zc29 Institut für Telematik Institute for Telematics'),
(56791, 'https://ror.org/03pkbp732', 'en', 1, 'https://ror.org/03pkbp732 Brick and Tile Research Institute Institut für Ziegelforschung Essen e. V.'),
(56792, 'https://ror.org/00emm5t38', 'en', 1, 'https://ror.org/00emm5t38 The International Heart Institute of Montana'),
(56793, 'https://ror.org/00wfp9c14', 'pt', 1, 'https://ror.org/00wfp9c14 Instituto de Pesquisas da Marinha'),
(56794, 'https://ror.org/03p2b2376', 'en', 1, 'https://ror.org/03p2b2376 Laser Spine Institute'),
(56795, 'https://ror.org/03xpstx66', 'en', 1, 'https://ror.org/03xpstx66 Korea Testing & Research Institute ķ•œźµ­ķ™”ķ•™ģœµķ•©ģ‹œķ—˜ģ—°źµ¬ģ›'),
(56796, 'https://ror.org/02cxqcz78', 'en', 1, 'https://ror.org/02cxqcz78 Korean Institute of Footwear and Leather Technology ķ•œźµ­ģ‹ ė°œķ”¼ķ˜ģ—°źµ¬ģ›'),
(56797, 'https://ror.org/05923xh51', 'en', 1, 'https://ror.org/05923xh51 Ludwig Cancer Research'),
(56798, 'https://ror.org/02vq4f039', 'no_lang_code', 1, 'https://ror.org/02vq4f039 Mitsubishi Research Institute (Japan) äø‰č±ē·åˆē ”ē©¶ę‰€'),
(56799, 'https://ror.org/02c2fwh71', 'en', 1, 'https://ror.org/02c2fwh71 Molecular Medicine Research Institute'),
(56800, 'https://ror.org/04pdw9n09', 'en', 1, 'https://ror.org/04pdw9n09 Medipolis Medical Research Institute'),
(56801, 'https://ror.org/04s36mr71', 'en', 1, 'https://ror.org/04s36mr71 Northeast Maritime Institute'),
(56802, 'https://ror.org/03bqmms96', 'en', 1, 'https://ror.org/03bqmms96 Southern African Institute of Mining and Metallurgy'),
(56803, 'https://ror.org/0483kh086', 'en', 1, 'https://ror.org/0483kh086 Ukrainian Oil and Gas Institute Ukrainsky neftegazovy institut'),
(56804, 'https://ror.org/007fdqr82', 'no_lang_code', 1, 'https://ror.org/007fdqr82 Kemira (Germany)'),
(56805, 'https://ror.org/02q5hpt66', 'en', 1, 'https://ror.org/02q5hpt66 Shazhou Professional Institute Of Technology ę²™ę“²čŒäøšå·„å­¦é™¢'),
(56806, 'https://ror.org/02jtr7413', 'no_lang_code', 1, 'https://ror.org/02jtr7413 Takasago (United States)'),
(56807, 'https://ror.org/03ycssf34', 'no_lang_code', 1, 'https://ror.org/03ycssf34 ArcelorMittal (United States)'),
(56808, 'https://ror.org/02v6ch155', 'en', 1, 'https://ror.org/02v6ch155 Steel Tank Institute'),
(56809, 'https://ror.org/00y3jnz30', 'en', 1, 'https://ror.org/00y3jnz30 Huaneng Clean Energy Research Institute ęø…ę“čƒ½ęŗęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(56810, 'https://ror.org/04sqxkj61', 'no_lang_code', 1, 'https://ror.org/04sqxkj61 Business Innovation Center (Bulgaria)'),
(56811, 'https://ror.org/059g52507', 'no_lang_code', 1, 'https://ror.org/059g52507 3Bar Biologics (United States)'),
(56812, 'https://ror.org/04sgcdd21', 'no_lang_code', 1, 'https://ror.org/04sgcdd21 Accelerated Ag Technologies (United States)'),
(56813, 'https://ror.org/008trbj46', 'no_lang_code', 1, 'https://ror.org/008trbj46 Aging Community Coordinated Enterprises and Supportive Services (United States)'),
(56814, 'https://ror.org/04zgrks73', 'no_lang_code', 1, 'https://ror.org/04zgrks73 Access Sensor Technologies (United States)'),
(56815, 'https://ror.org/03xt1x768', 'en', 1, 'https://ror.org/03xt1x768 State Key Laboratory of Oncogene and Related Genes ē™ŒåŸŗå› åŠē›øå…³åŸŗå› å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(56816, 'https://ror.org/00re71s87', 'en', 1, 'https://ror.org/00re71s87 Advanced Heliophysics'),
(56817, 'https://ror.org/012a3nb13', 'no_lang_code', 1, 'https://ror.org/012a3nb13 Aeolis Research (United States)'),
(56818, 'https://ror.org/00hg21s64', 'no_lang_code', 1, 'https://ror.org/00hg21s64 AgraTek (United States)'),
(56819, 'https://ror.org/0369xey85', 'no_lang_code', 1, 'https://ror.org/0369xey85 Agren (United States)'),
(56820, 'https://ror.org/02mtem749', 'no_lang_code', 1, 'https://ror.org/02mtem749 Airfoils (United States)'),
(56821, 'https://ror.org/0205xz563', 'en', 1, 'https://ror.org/0205xz563 State Key Laboratory of Plant Genomics ę¤ē‰©åŸŗå› ē»„å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(56822, 'https://ror.org/02zedqe26', 'no_lang_code', 1, 'https://ror.org/02zedqe26 AlgaXperts (United States)'),
(56823, 'https://ror.org/043534r75', 'en', 1, 'https://ror.org/043534r75 Alliance of Community Assistance Ministries'),
(56824, 'https://ror.org/010s15j79', 'en', 1, 'https://ror.org/010s15j79 Calypso Farm and Ecology Center'),
(56825, 'https://ror.org/04fr05v05', 'en', 1, 'https://ror.org/04fr05v05 Carolina Farm Stewardship Association'),
(56826, 'https://ror.org/04v4gsn35', 'no_lang_code', 1, 'https://ror.org/04v4gsn35 Allyke (United States)'),
(56827, 'https://ror.org/0553gct64', 'no_lang_code', 1, 'https://ror.org/0553gct64 Catalina Sea Ranch (United States)'),
(56828, 'https://ror.org/04dr38k67', 'no_lang_code', 1, 'https://ror.org/04dr38k67 Alpha Space Test and Research Alliance (United States)'),
(56829, 'https://ror.org/00kg1dd44', 'en', 1, 'https://ror.org/00kg1dd44 The American Chestnut Foundation'),
(56830, 'https://ror.org/01ccqrj78', 'en', 1, 'https://ror.org/01ccqrj78 American Olive Oil Producers Association'),
(56831, 'https://ror.org/01tra1r17', 'no_lang_code', 1, 'https://ror.org/01tra1r17 American Solar (United States)'),
(56832, 'https://ror.org/02fyz1125', 'no_lang_code', 1, 'https://ror.org/02fyz1125 AmeriQual Group (United States)'),
(56833, 'https://ror.org/05rngf387', 'en', 1, 'https://ror.org/05rngf387 Ear and Balance Institute'),
(56834, 'https://ror.org/05ddm8177', 'en', 1, 'https://ror.org/05ddm8177 Center of Southwest Culture'),
(56835, 'https://ror.org/05yas2736', 'nl', 1, 'https://ror.org/05yas2736 Nederlands Oogheelkundig Onderzoek'),
(56836, 'https://ror.org/05kg16203', 'en', 1, 'https://ror.org/05kg16203 Center Of Theological Inquiry'),
(56837, 'https://ror.org/02rkywr68', 'no_lang_code', 1, 'https://ror.org/02rkywr68 Annidis (Canada)'),
(56838, 'https://ror.org/023w52n18', 'no_lang_code', 1, 'https://ror.org/023w52n18 EarthDance'),
(56839, 'https://ror.org/04dc5j714', 'no_lang_code', 1, 'https://ror.org/04dc5j714 Antimicrobial Materials (United States)'),
(56840, 'https://ror.org/045g9rz48', 'no_lang_code', 1, 'https://ror.org/045g9rz48 Applied Coherent Technology (United States)'),
(56841, 'https://ror.org/0037kdt92', 'no_lang_code', 1, 'https://ror.org/0037kdt92 Aptimmune Biologics (United States)'),
(56842, 'https://ror.org/02hdsgf16', 'no_lang_code', 1, 'https://ror.org/02hdsgf16 Cereon Biotechnology (United States)'),
(56843, 'https://ror.org/04pm9rq79', 'no_lang_code', 1, 'https://ror.org/04pm9rq79 Ceres Imaging (United States)'),
(56844, 'https://ror.org/01km6z968', 'en', 1, 'https://ror.org/01km6z968 Arcadia'),
(56845, 'https://ror.org/028xfa567', 'en', 1, 'https://ror.org/028xfa567 Arkansas Hunger Relief Alliance'),
(56846, 'https://ror.org/00b6h7f51', 'en', 1, 'https://ror.org/00b6h7f51 Economic Development Commission of Floridas Space Coast'),
(56847, 'https://ror.org/03zp7y418', 'en', 1, 'https://ror.org/03zp7y418 McAuliffe-Shepard Discovery Center'),
(56848, 'https://ror.org/04r0vb371', 'no_lang_code', 1, 'https://ror.org/04r0vb371 Asilomar Bio (United States)'),
(56849, 'https://ror.org/00x9jsn18', 'en', 1, 'https://ror.org/00x9jsn18 EdVenture'),
(56850, 'https://ror.org/024p2bs62', 'en', 1, 'https://ror.org/024p2bs62 City Schoolyard Garden'),
(56851, 'https://ror.org/04m281x40', 'no_lang_code', 1, 'https://ror.org/04m281x40 Clairvoyant Technology (United States)'),
(56852, 'https://ror.org/02nx6st79', 'no_lang_code', 1, 'https://ror.org/02nx6st79 Eloret (United States)'),
(56853, 'https://ror.org/04fdch955', 'no_lang_code', 1, 'https://ror.org/04fdch955 Clean Energy (United States)'),
(56854, 'https://ror.org/01pbm8h26', 'no_lang_code', 1, 'https://ror.org/01pbm8h26 ClearSign Combustion (United States)'),
(56855, 'https://ror.org/00da4yk20', 'en', 1, 'https://ror.org/00da4yk20 Association of Africans Living in Vermont'),
(56856, 'https://ror.org/05f5ptb49', 'no_lang_code', 1, 'https://ror.org/05f5ptb49 CBS Corporation (United States)'),
(56857, 'https://ror.org/04pn65m27', 'no_lang_code', 1, 'https://ror.org/04pn65m27 Eltopia Communications (United States)'),
(56858, 'https://ror.org/05n0new61', 'no_lang_code', 1, 'https://ror.org/05n0new61 Enterade (United States)'),
(56859, 'https://ror.org/020rm3x22', 'en', 1, 'https://ror.org/020rm3x22 Community EnCompass'),
(56860, 'https://ror.org/01qfzbz52', 'en', 1, 'https://ror.org/01qfzbz52 College of the Muscogee Nation'),
(56861, 'https://ror.org/016q8y748', 'no_lang_code', 1, 'https://ror.org/016q8y748 Bilcare Research (United States)'),
(56862, 'https://ror.org/05s4v9088', 'no_lang_code', 1, 'https://ror.org/05s4v9088 BioChemInsights (United States)'),
(56863, 'https://ror.org/029nby494', 'no_lang_code', 1, 'https://ror.org/029nby494 Epicrop Technologies (United States)');
INSERT INTO `rors` VALUES
(56864, 'https://ror.org/039vvd931', 'en', 1, 'https://ror.org/039vvd931 Community Action Agency of St. Louis County'),
(56865, 'https://ror.org/02mf43q40', 'en', 1, 'https://ror.org/02mf43q40 Community Action of Skagit County'),
(56866, 'https://ror.org/03w1ne740', 'en', 1, 'https://ror.org/03w1ne740 Community Alliance with Family Farmers'),
(56867, 'https://ror.org/054vyqa42', 'sv', 1, 'https://ror.org/054vyqa42 Sven och Dagmar SalƩn Stiftelse'),
(56868, 'https://ror.org/03g9fv045', 'en', 1, 'https://ror.org/03g9fv045 Community Food and Agriculture Coalition'),
(56869, 'https://ror.org/055y0va06', 'sv', 1, 'https://ror.org/055y0va06 Jerringfonden'),
(56870, 'https://ror.org/008c8w304', 'no_lang_code', 1, 'https://ror.org/008c8w304 BotaniPharm (United States)'),
(56871, 'https://ror.org/05feyk235', 'en', 1, 'https://ror.org/05feyk235 Comparative Aircraft Flight Efficiency Foundation'),
(56872, 'https://ror.org/03fcyc593', 'no_lang_code', 1, 'https://ror.org/03fcyc593 Concurrent Solutions (United States)'),
(56873, 'https://ror.org/02afgrw28', 'no_lang_code', 1, 'https://ror.org/02afgrw28 BrioBiotech (United States)'),
(56874, 'https://ror.org/02ghcyg39', 'en', 1, 'https://ror.org/02ghcyg39 LƤkemedelsakademin Swedish Academy of Pharmaceutical Sciences'),
(56875, 'https://ror.org/05j1paw03', 'en', 1, 'https://ror.org/05j1paw03 Conference of Research Workers in Animal Diseases'),
(56876, 'https://ror.org/05g9y6w44', 'no_lang_code', 1, 'https://ror.org/05g9y6w44 Connecting Health Innovations (United States)'),
(56877, 'https://ror.org/04m8am631', 'no_lang_code', 1, 'https://ror.org/04m8am631 eWind Solutions (United States)'),
(56878, 'https://ror.org/0032wbe47', 'no_lang_code', 1, 'https://ror.org/0032wbe47 Exosome Diagnostics (United States)'),
(56879, 'https://ror.org/055hhfr85', 'en', 1, 'https://ror.org/055hhfr85 Cornell Cooperative Extension Association of Jefferson County'),
(56880, 'https://ror.org/031aht432', 'no_lang_code', 1, 'https://ror.org/031aht432 ExoTerra Resources (United States)'),
(56881, 'https://ror.org/01pvt8a36', 'en', 1, 'https://ror.org/01pvt8a36 Experimental Station'),
(56882, 'https://ror.org/02g867t84', 'no_lang_code', 1, 'https://ror.org/02g867t84 Impact Instruments (South Africa)'),
(56883, 'https://ror.org/05snsev90', 'en', 1, 'https://ror.org/05snsev90 Cornell Cooperative Extension Sullivan County'),
(56884, 'https://ror.org/01m61nc85', 'en', 1, 'https://ror.org/01m61nc85 Exploration Place'),
(56885, 'https://ror.org/01p1h7798', 'no_lang_code', 1, 'https://ror.org/01p1h7798 Harry Saul Minnow Farm (United States)'),
(56886, 'https://ror.org/01sqsqt89', 'no_lang_code', 1, 'https://ror.org/01sqsqt89 Cottage Systems (United States)'),
(56887, 'https://ror.org/02hv5e369', 'no_lang_code', 1, 'https://ror.org/02hv5e369 Roche (China)'),
(56888, 'https://ror.org/00qa5z221', 'en', 1, 'https://ror.org/00qa5z221 Hart Community Homes'),
(56889, 'https://ror.org/01eqtac57', 'no_lang_code', 1, 'https://ror.org/01eqtac57 Crabtree (United States)'),
(56890, 'https://ror.org/04re16484', 'en', 1, 'https://ror.org/04re16484 Farmer Veteran Coalition'),
(56891, 'https://ror.org/023kj5402', 'no_lang_code', 1, 'https://ror.org/023kj5402 Craig Technologies (United States)'),
(56892, 'https://ror.org/00s1r6f43', 'en', 1, 'https://ror.org/00s1r6f43 Fayette County Community Action Agency'),
(56893, 'https://ror.org/04y8ye406', 'en', 1, 'https://ror.org/04y8ye406 Harvest Home Farmer’s Market'),
(56894, 'https://ror.org/03ytvxz34', 'en', 1, 'https://ror.org/03ytvxz34 Crossroads Community Food Network'),
(56895, 'https://ror.org/042x2ns13', 'en', 1, 'https://ror.org/042x2ns13 Field and Fork Network'),
(56896, 'https://ror.org/038v7k315', 'en', 1, 'https://ror.org/038v7k315 Hawthorne Valley Association'),
(56897, 'https://ror.org/043m6pv20', 'en', 1, 'https://ror.org/043m6pv20 DC Central Kitchen'),
(56898, 'https://ror.org/01xc6q930', 'no_lang_code', 1, 'https://ror.org/01xc6q930 Florida Maxima (United States)'),
(56899, 'https://ror.org/01xxyhd49', 'no_lang_code', 1, 'https://ror.org/01xxyhd49 Hazel Technologies (United States)'),
(56900, 'https://ror.org/03ky6bg94', 'en', 1, 'https://ror.org/03ky6bg94 Food Bank of Northeast Georgia'),
(56901, 'https://ror.org/04dg8np90', 'en', 1, 'https://ror.org/04dg8np90 Food Basket (United States)'),
(56902, 'https://ror.org/035jj1q51', 'no_lang_code', 1, 'https://ror.org/035jj1q51 Heartland Plant Innovations (United States)'),
(56903, 'https://ror.org/05tv0zk25', 'en', 1, 'https://ror.org/05tv0zk25 The Food Group'),
(56904, 'https://ror.org/033bpfz21', 'no_lang_code', 1, 'https://ror.org/033bpfz21 Deep Space Industries (United States)'),
(56905, 'https://ror.org/007vffa52', 'no_lang_code', 1, 'https://ror.org/007vffa52 Foodlink'),
(56906, 'https://ror.org/05v4v2w58', 'en', 1, 'https://ror.org/05v4v2w58 Hebron Theological College'),
(56907, 'https://ror.org/006c4xb83', 'en', 1, 'https://ror.org/006c4xb83 Foundation for Agricultural and Rural Resource Management and Sustainability'),
(56908, 'https://ror.org/05j6b7w15', 'no_lang_code', 1, 'https://ror.org/05j6b7w15 Foundation Instruments (United States)'),
(56909, 'https://ror.org/0257x6t90', 'en', 1, 'https://ror.org/0257x6t90 Delta Water Management Research Unit'),
(56910, 'https://ror.org/05bcrb290', 'en', 1, 'https://ror.org/05bcrb290 Franklinton Gardens'),
(56911, 'https://ror.org/02m1c9x13', 'no_lang_code', 1, 'https://ror.org/02m1c9x13 Kellogg’s Research Labs (United States)'),
(56912, 'https://ror.org/01tphyy47', 'en', 1, 'https://ror.org/01tphyy47 Gagarin Research and Test Cosmonaut Training Center Центр поГготовки космонавтов имени Š®. А. Гагарина'),
(56913, 'https://ror.org/02yv37y71', 'en', 1, 'https://ror.org/02yv37y71 Dunn''s Fish Farm'),
(56914, 'https://ror.org/04wjnw514', 'en', 1, 'https://ror.org/04wjnw514 Kona Pacific Public Charter School'),
(56915, 'https://ror.org/03ymtvg12', 'no_lang_code', 1, 'https://ror.org/03ymtvg12 Garner Industries (United States)'),
(56916, 'https://ror.org/04q0q2e16', 'en', 1, 'https://ror.org/04q0q2e16 Gateway Greening'),
(56917, 'https://ror.org/02zwrab63', 'no_lang_code', 1, 'https://ror.org/02zwrab63 ePaint (United States)'),
(56918, 'https://ror.org/049p61e38', 'en', 1, 'https://ror.org/049p61e38 Lantern Community Services'),
(56919, 'https://ror.org/00b3qfx47', 'no_lang_code', 1, 'https://ror.org/00b3qfx47 Larad (United States)'),
(56920, 'https://ror.org/006j60y94', 'no_lang_code', 1, 'https://ror.org/006j60y94 GeoControl Systems (United States)'),
(56921, 'https://ror.org/04rahxj70', 'en', 1, 'https://ror.org/04rahxj70 Arkansas Land and Community Development'),
(56922, 'https://ror.org/01xtnj706', 'no_lang_code', 1, 'https://ror.org/01xtnj706 Latitude Engineering (United States)'),
(56923, 'https://ror.org/01xfxak12', 'no_lang_code', 1, 'https://ror.org/01xfxak12 Hill Manufacturing (United States)'),
(56924, 'https://ror.org/017hkkd29', 'en', 1, 'https://ror.org/017hkkd29 Leadership for Urban Renewal Network'),
(56925, 'https://ror.org/05e1aft90', 'en', 1, 'https://ror.org/05e1aft90 Hmong American Farmers Association'),
(56926, 'https://ror.org/00hg0yg56', 'en', 1, 'https://ror.org/00hg0yg56 Gleaners Food Bank of Indiana'),
(56927, 'https://ror.org/02amm2b67', 'no_lang_code', 1, 'https://ror.org/02amm2b67 Global Algae Innovations (United States)'),
(56928, 'https://ror.org/03m6q2j85', 'en', 1, 'https://ror.org/03m6q2j85 Ho Chunk Community Development Corporation'),
(56929, 'https://ror.org/04sz6yt35', 'en', 1, 'https://ror.org/04sz6yt35 Level Playing Field Institute'),
(56930, 'https://ror.org/00671p325', 'en', 1, 'https://ror.org/00671p325 Honey Bee Research Institute and Nature Center'),
(56931, 'https://ror.org/0504frq03', 'en', 1, 'https://ror.org/0504frq03 Global Growers'),
(56932, 'https://ror.org/010vrw806', 'no_lang_code', 1, 'https://ror.org/010vrw806 GMEP Engineers (United States)'),
(56933, 'https://ror.org/01sfj0e28', 'en', 1, 'https://ror.org/01sfj0e28 Live Well Colorado'),
(56934, 'https://ror.org/03zyvg021', 'en', 1, 'https://ror.org/03zyvg021 Horizon Performance'),
(56935, 'https://ror.org/04vrse873', 'no_lang_code', 1, 'https://ror.org/04vrse873 Grafted Growers (United States)'),
(56936, 'https://ror.org/02drx6g21', 'en', 1, 'https://ror.org/02drx6g21 The Local Crowd'),
(56937, 'https://ror.org/01nw9t679', 'en', 1, 'https://ror.org/01nw9t679 Horn Canna Farm'),
(56938, 'https://ror.org/05wng9697', 'en', 1, 'https://ror.org/05wng9697 Greening of Detroit'),
(56939, 'https://ror.org/05wqf0473', 'no_lang_code', 1, 'https://ror.org/05wqf0473 Gross Wen Technologies (United States)'),
(56940, 'https://ror.org/00rnjkw50', 'en', 1, 'https://ror.org/00rnjkw50 Huerta del Valle'),
(56941, 'https://ror.org/01rkjqk76', 'en', 1, 'https://ror.org/01rkjqk76 Local Food Hub'),
(56942, 'https://ror.org/022k30226', 'en', 1, 'https://ror.org/022k30226 Local Matters'),
(56943, 'https://ror.org/02a03v538', 'en', 1, 'https://ror.org/02a03v538 The Harley School'),
(56944, 'https://ror.org/00v5n6851', 'no_lang_code', 1, 'https://ror.org/00v5n6851 Malin Space Science Systems (United States)'),
(56945, 'https://ror.org/02d641m75', 'fr', 1, 'https://ror.org/02d641m75 TƩlƩvie'),
(56946, 'https://ror.org/05hehnx86', 'en', 1, 'https://ror.org/05hehnx86 Hunger Task Force'),
(56947, 'https://ror.org/05jtrhd14', 'en', 1, 'https://ror.org/05jtrhd14 Department of Early Education and Care'),
(56948, 'https://ror.org/010wkhc71', 'en', 1, 'https://ror.org/010wkhc71 MEF Associates'),
(56949, 'https://ror.org/004j18068', 'no_lang_code', 1, 'https://ror.org/004j18068 ILC Dover (United States)'),
(56950, 'https://ror.org/057mm6758', 'no_lang_code', 1, 'https://ror.org/057mm6758 MEI Technologies (United States)'),
(56951, 'https://ror.org/02xx53s78', 'no_lang_code', 1, 'https://ror.org/02xx53s78 Membrane Protective Technologies (United States)'),
(56952, 'https://ror.org/018whpc62', 'no_lang_code', 1, 'https://ror.org/018whpc62 MEP Equine Solutions (United States)'),
(56953, 'https://ror.org/02tbvs543', 'no_lang_code', 1, 'https://ror.org/02tbvs543 Indigo Information Services (United States)'),
(56954, 'https://ror.org/0294hqc16', 'no_lang_code', 1, 'https://ror.org/0294hqc16 LZ Technology (United States)'),
(56955, 'https://ror.org/05qepn613', 'no_lang_code', 1, 'https://ror.org/05qepn613 Merrill (United States)'),
(56956, 'https://ror.org/0304fdb16', 'no_lang_code', 1, 'https://ror.org/0304fdb16 Infinite Eversole Specialty Crop Services (United states)'),
(56957, 'https://ror.org/022vfzj49', 'no_lang_code', 1, 'https://ror.org/022vfzj49 mAbDx (United States)'),
(56958, 'https://ror.org/022dzrb13', 'no_lang_code', 1, 'https://ror.org/022dzrb13 InnovaSea Systems (United States)'),
(56959, 'https://ror.org/049yngf89', 'no_lang_code', 1, 'https://ror.org/049yngf89 Made In Space (United States)'),
(56960, 'https://ror.org/048f13k87', 'no_lang_code', 1, 'https://ror.org/048f13k87 Inquiry Technologies (United States)'),
(56961, 'https://ror.org/02ew8y783', 'no_lang_code', 1, 'https://ror.org/02ew8y783 Magnetic Development (United States)'),
(56962, 'https://ror.org/01zrfm954', 'en', 1, 'https://ror.org/01zrfm954 Mid Ohio Foodbank'),
(56963, 'https://ror.org/04z9gtp37', 'no_lang_code', 1, 'https://ror.org/04z9gtp37 Integrated Concurrent Systems Associates (United States)'),
(56964, 'https://ror.org/02rkz3z54', 'no_lang_code', 1, 'https://ror.org/02rkz3z54 Phytosynthetix (United States)'),
(56965, 'https://ror.org/03nffrn19', 'en', 1, 'https://ror.org/03nffrn19 Niagara County'),
(56966, 'https://ror.org/00tcg9r48', 'en', 1, 'https://ror.org/00tcg9r48 Pinnacle Prevention'),
(56967, 'https://ror.org/0403nr398', 'en', 1, 'https://ror.org/0403nr398 Presbyterian Healthcare Services'),
(56968, 'https://ror.org/03t1z6m58', 'en', 1, 'https://ror.org/03t1z6m58 Central Scientific Research Diesel Institute Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š“ŠøŠ·ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(56969, 'https://ror.org/05m7ng931', 'en', 1, 'https://ror.org/05m7ng931 Professional Beef Services'),
(56970, 'https://ror.org/01xves834', 'no_lang_code', 1, 'https://ror.org/01xves834 IRISNDT (United States)'),
(56971, 'https://ror.org/037e0dj26', 'no_lang_code', 1, 'https://ror.org/037e0dj26 Professional Solutions (United States)'),
(56972, 'https://ror.org/05mspvn40', 'no_lang_code', 1, 'https://ror.org/05mspvn40 Isuzu Motors (United States)'),
(56973, 'https://ror.org/00rb4m505', 'en', 1, 'https://ror.org/00rb4m505 The Nurture Nature Center'),
(56974, 'https://ror.org/0536ez586', 'no_lang_code', 1, 'https://ror.org/0536ez586 NWB Sensors (United States)'),
(56975, 'https://ror.org/02kqef212', 'en', 1, 'https://ror.org/02kqef212 Spark Imagination and Science Center'),
(56976, 'https://ror.org/00s4b3607', 'no_lang_code', 1, 'https://ror.org/00s4b3607 J M Malone and Son (United States)'),
(56977, 'https://ror.org/029pg7f58', 'no_lang_code', 1, 'https://ror.org/029pg7f58 Oculogica (United States)'),
(56978, 'https://ror.org/01c5qhp69', 'no_lang_code', 1, 'https://ror.org/01c5qhp69 SciGlob (United States)'),
(56979, 'https://ror.org/05bh15594', 'no_lang_code', 1, 'https://ror.org/05bh15594 Odysea (United States)'),
(56980, 'https://ror.org/00ns9df65', 'no_lang_code', 1, 'https://ror.org/00ns9df65 Seattle Photonics Associates (United States)'),
(56981, 'https://ror.org/017bbk264', 'en', 1, 'https://ror.org/017bbk264 Ohio Ecological Food and Farm Association'),
(56982, 'https://ror.org/04x7s4297', 'no_lang_code', 1, 'https://ror.org/04x7s4297 Chart Industries (United States)'),
(56983, 'https://ror.org/05k1j1x39', 'no_lang_code', 1, 'https://ror.org/05k1j1x39 JES Tech (United States)'),
(56984, 'https://ror.org/025506c66', 'no_lang_code', 1, 'https://ror.org/025506c66 Smart Vision Works International (United States)'),
(56985, 'https://ror.org/04v51kr79', 'en', 1, 'https://ror.org/04v51kr79 Ola Grimsby Institute'),
(56986, 'https://ror.org/05yjjky95', 'no_lang_code', 1, 'https://ror.org/05yjjky95 One Resonance Sensors (United States)'),
(56987, 'https://ror.org/03247gm88', 'no_lang_code', 1, 'https://ror.org/03247gm88 Solidtech Animal Health (United States)'),
(56988, 'https://ror.org/03hd5ck45', 'en', 1, 'https://ror.org/03hd5ck45 Rochester Roots'),
(56989, 'https://ror.org/05pw2f159', 'en', 1, 'https://ror.org/05pw2f159 Somali Bantu Community Association of Maine'),
(56990, 'https://ror.org/00pw0tx86', 'en', 1, 'https://ror.org/00pw0tx86 Open Source Robotics Foundation'),
(56991, 'https://ror.org/02bhr4m87', 'en', 1, 'https://ror.org/02bhr4m87 Rodale Institute'),
(56992, 'https://ror.org/00r36q916', 'no_lang_code', 1, 'https://ror.org/00r36q916 Sonomotion (United States)'),
(56993, 'https://ror.org/01ppth096', 'en', 1, 'https://ror.org/01ppth096 Opportunity Link'),
(56994, 'https://ror.org/019qmfe51', 'en', 1, 'https://ror.org/019qmfe51 South Central Community Action Programs'),
(56995, 'https://ror.org/05ezypx20', 'en', 1, 'https://ror.org/05ezypx20 Southeast Island School District'),
(56996, 'https://ror.org/011x9em51', 'en', 1, 'https://ror.org/011x9em51 Southern Appalachian Highlands Conservancy'),
(56997, 'https://ror.org/04634r813', 'en', 1, 'https://ror.org/04634r813 Southwest Badger Resource Conservation and Development Council'),
(56998, 'https://ror.org/03rr2e670', 'no_lang_code', 1, 'https://ror.org/03rr2e670 STS International'),
(56999, 'https://ror.org/03bwbnb24', 'en', 1, 'https://ror.org/03bwbnb24 Southwestern Community College - North Carolina'),
(57000, 'https://ror.org/00pqvxn28', 'no_lang_code', 1, 'https://ror.org/00pqvxn28 ORB Studio (United States)'),
(57001, 'https://ror.org/01afvgj08', 'en', 1, 'https://ror.org/01afvgj08 Sacramento Food Bank and Family Services'),
(57002, 'https://ror.org/000pgrd37', 'no_lang_code', 1, 'https://ror.org/000pgrd37 Kairosys (United States)'),
(57003, 'https://ror.org/00s5m1b41', 'no_lang_code', 1, 'https://ror.org/00s5m1b41 Oregon Tilth'),
(57004, 'https://ror.org/04qes5008', 'no_lang_code', 1, 'https://ror.org/04qes5008 Stony Creek Colors (United States)'),
(57005, 'https://ror.org/000jc2g50', 'no_lang_code', 1, 'https://ror.org/000jc2g50 Stratacor (United States)'),
(57006, 'https://ror.org/0070hxd21', 'no_lang_code', 1, 'https://ror.org/0070hxd21 Sunhai Bioadhesive Technologies (United States)'),
(57007, 'https://ror.org/03z550b52', 'en', 1, 'https://ror.org/03z550b52 Sustainable Molokai'),
(57008, 'https://ror.org/05ax3zs14', 'no_lang_code', 1, 'https://ror.org/05ax3zs14 Abzena (United States)'),
(57009, 'https://ror.org/03ps0vw43', 'en', 1, 'https://ror.org/03ps0vw43 Organization for Refugee and Immigrant Success'),
(57010, 'https://ror.org/043xkan55', 'no_lang_code', 1, 'https://ror.org/043xkan55 San Miguel Produce (United States)'),
(57011, 'https://ror.org/00gyg9a78', 'en', 1, 'https://ror.org/00gyg9a78 Sustainable Aviation Foundation'),
(57012, 'https://ror.org/04hzhm502', 'no_lang_code', 1, 'https://ror.org/04hzhm502 SyncThink (United States)'),
(57013, 'https://ror.org/026z1cz75', 'no_lang_code', 1, 'https://ror.org/026z1cz75 PathSensors (United States)'),
(57014, 'https://ror.org/045x5q326', 'en', 1, 'https://ror.org/045x5q326 Sciencenter'),
(57015, 'https://ror.org/01gg29e32', 'no_lang_code', 1, 'https://ror.org/01gg29e32 System Science Applications (United States)'),
(57016, 'https://ror.org/031yv9651', 'en', 1, 'https://ror.org/031yv9651 Thunder Valley Community Development Corporation'),
(57017, 'https://ror.org/0092jp739', 'en', 1, 'https://ror.org/0092jp739 Thundermist Health Center'),
(57018, 'https://ror.org/01xbswg83', 'no_lang_code', 1, 'https://ror.org/01xbswg83 Tea Hawaii (United States)'),
(57019, 'https://ror.org/03fyfhn57', 'en', 1, 'https://ror.org/03fyfhn57 Town and Country Veterinary Clinic'),
(57020, 'https://ror.org/057721542', 'no_lang_code', 1, 'https://ror.org/057721542 TeamScape (United States)'),
(57021, 'https://ror.org/052gh5147', 'en', 1, 'https://ror.org/052gh5147 Tenagra Observatories'),
(57022, 'https://ror.org/038ypnm26', 'es', 1, 'https://ror.org/038ypnm26 Ministerio del Poder Popular para la Educación Universitaria, Ciencia y Tecnología'),
(57023, 'https://ror.org/00xzncb58', 'en', 1, 'https://ror.org/00xzncb58 Texas Organic Farmers and Gardeners Association'),
(57024, 'https://ror.org/02ykqap15', 'no_lang_code', 1, 'https://ror.org/02ykqap15 XploSafe (United States)'),
(57025, 'https://ror.org/05m8j0776', 'no_lang_code', 1, 'https://ror.org/05m8j0776 Trotti and Associates (United States)'),
(57026, 'https://ror.org/03rdhpn16', 'en', 1, 'https://ror.org/03rdhpn16 Trumbull Neighborhood Partnership'),
(57027, 'https://ror.org/00964b496', 'en', 1, 'https://ror.org/00964b496 Young Men''s Christian Association Of Greater Grand Rapids'),
(57028, 'https://ror.org/04s5w2j10', 'en', 1, 'https://ror.org/04s5w2j10 Trust for Conservation Innovation'),
(57029, 'https://ror.org/00r2wb002', 'en', 1, 'https://ror.org/00r2wb002 Youth Policy Institute'),
(57030, 'https://ror.org/005tvtr96', 'en', 1, 'https://ror.org/005tvtr96 Youthprise'),
(57031, 'https://ror.org/009759b62', 'no_lang_code', 1, 'https://ror.org/009759b62 ZetrOZ Systems (United States)'),
(57032, 'https://ror.org/01e6r0071', 'no_lang_code', 1, 'https://ror.org/01e6r0071 Tubs (United States)'),
(57033, 'https://ror.org/01bgvrv25', 'no_lang_code', 1, 'https://ror.org/01bgvrv25 Valeo Physical Therapy (United States)'),
(57034, 'https://ror.org/01h6jr916', 'no_lang_code', 1, 'https://ror.org/01h6jr916 Visolis (United States)'),
(57035, 'https://ror.org/04jjxvn13', 'no_lang_code', 1, 'https://ror.org/04jjxvn13 Unmanned Experts (United States)'),
(57036, 'https://ror.org/04fb46f50', 'no_lang_code', 1, 'https://ror.org/04fb46f50 VisuGen Global (United States)'),
(57037, 'https://ror.org/00gxcsd97', 'en', 1, 'https://ror.org/00gxcsd97 TLC Foundation'),
(57038, 'https://ror.org/05htqbc94', 'no_lang_code', 1, 'https://ror.org/05htqbc94 VRM Labs (United States)'),
(57039, 'https://ror.org/011f1xp18', 'no_lang_code', 1, 'https://ror.org/011f1xp18 Waste Hub (United States)'),
(57040, 'https://ror.org/0053tww73', 'no_lang_code', 1, 'https://ror.org/0053tww73 Web Vision Centers (United States)'),
(57041, 'https://ror.org/02v6y4f91', 'en', 1, 'https://ror.org/02v6y4f91 Wholesome Wave Foundation Charitable Ventures'),
(57042, 'https://ror.org/04r70jx96', 'no_lang_code', 1, 'https://ror.org/04r70jx96 Windcall Manufacturing (United States)'),
(57043, 'https://ror.org/01a1zts48', 'en', 1, 'https://ror.org/01a1zts48 Windham Regional Community Council'),
(57044, 'https://ror.org/022kqm498', 'en', 1, 'https://ror.org/022kqm498 Wings of Eagles Discovery Center'),
(57045, 'https://ror.org/026mffr50', 'en', 1, 'https://ror.org/026mffr50 Wisconsin Cheese Makers Association'),
(57046, 'https://ror.org/045eygx28', 'en', 1, 'https://ror.org/045eygx28 Wisconsin Veterinary Medical Association'),
(57047, 'https://ror.org/014f0f469', 'en', 1, 'https://ror.org/014f0f469 Working Landscapes'),
(57048, 'https://ror.org/00fran495', 'en', 1, 'https://ror.org/00fran495 World Farmers'),
(57049, 'https://ror.org/00h9czn48', 'no_lang_code', 1, 'https://ror.org/00h9czn48 Mill City Grows (United States)'),
(57050, 'https://ror.org/00vgnwa79', 'no_lang_code', 1, 'https://ror.org/00vgnwa79 N&R Engineering Management & Services (United States)'),
(57051, 'https://ror.org/03qc9s178', 'en', 1, 'https://ror.org/03qc9s178 Minorities in Agriculture, Natural Resources and Related Sciences'),
(57052, 'https://ror.org/00jb81722', 'en', 1, 'https://ror.org/00jb81722 National Sustainable Agriculture Coalition'),
(57053, 'https://ror.org/04zgf8140', 'no_lang_code', 1, 'https://ror.org/04zgf8140 Mirtech (United States)'),
(57054, 'https://ror.org/05xqnpb54', 'en', 1, 'https://ror.org/05xqnpb54 National Young Farmers Coalition'),
(57055, 'https://ror.org/01jfc8691', 'en', 1, 'https://ror.org/01jfc8691 The Wild Ramp'),
(57056, 'https://ror.org/014tfzt26', 'no_lang_code', 1, 'https://ror.org/014tfzt26 Metabolic Modeling Services (New Zealand)'),
(57057, 'https://ror.org/031f8aj53', 'en', 1, 'https://ror.org/031f8aj53 Missouri Department of Agriculture'),
(57058, 'https://ror.org/055kj8f51', 'en', 1, 'https://ror.org/055kj8f51 Mitchell School District'),
(57059, 'https://ror.org/04hwhvs78', 'no_lang_code', 1, 'https://ror.org/04hwhvs78 Model Software (United States)'),
(57060, 'https://ror.org/04hv8pj43', 'no_lang_code', 1, 'https://ror.org/04hv8pj43 NBD Nanotechnologies (United States)'),
(57061, 'https://ror.org/04h3a1y15', 'en', 1, 'https://ror.org/04h3a1y15 Mountain Comprehensive Health'),
(57062, 'https://ror.org/038dc1s14', 'no_lang_code', 1, 'https://ror.org/038dc1s14 Crew Services (United States)'),
(57063, 'https://ror.org/05qryz546', 'en', 1, 'https://ror.org/05qryz546 National Farmers Organization'),
(57064, 'https://ror.org/04m37yt03', 'en', 1, 'https://ror.org/04m37yt03 New Mexico Farmers’ Marketing Association'),
(57065, 'https://ror.org/02hswyz47', 'no_lang_code', 1, 'https://ror.org/02hswyz47 Next Generation Technology (United States)'),
(57066, 'https://ror.org/04tvb5e69', 'en', 1, 'https://ror.org/04tvb5e69 Wolfe’s Neck Farm'),
(57067, 'https://ror.org/057fxch52', 'en', 1, 'https://ror.org/057fxch52 Matthew 25'),
(57068, 'https://ror.org/05tpefp81', 'cs', 1, 'https://ror.org/05tpefp81 PovodĆ­ Moravy'),
(57069, 'https://ror.org/03w4xck32', 'cs', 1, 'https://ror.org/03w4xck32 PovodĆ­ Ohře'),
(57070, 'https://ror.org/038q8t720', 'cs', 1, 'https://ror.org/038q8t720 PovodĆ­ Vltavy'),
(57071, 'https://ror.org/00vxg2528', 'en', 1, 'https://ror.org/00vxg2528 Yokohama Foundation for Advancement of Medical Science ęØŖęµœē·åˆåŒ»å­¦ęŒÆčˆˆč²”å›£'),
(57072, 'https://ror.org/035kjdm29', 'en', 1, 'https://ror.org/035kjdm29 Head of Government of the Republic of Tunisia'),
(57073, 'https://ror.org/02p1epn78', 'no_lang_code', 1, 'https://ror.org/02p1epn78 Soair (United States)'),
(57074, 'https://ror.org/04vqztg05', 'en', 1, 'https://ror.org/04vqztg05 North South Institute'),
(57075, 'https://ror.org/047asg479', 'en', 1, 'https://ror.org/047asg479 Organic Farm School'),
(57076, 'https://ror.org/00wvdj807', 'no_lang_code', 1, 'https://ror.org/00wvdj807 XtendWave (United States)'),
(57077, 'https://ror.org/04jmzkq74', 'en', 1, 'https://ror.org/04jmzkq74 Alzheimer Disease International'),
(57078, 'https://ror.org/04x0p4p48', 'no_lang_code', 1, 'https://ror.org/04x0p4p48 Abbott (Belgium)'),
(57079, 'https://ror.org/02jvzs806', 'en', 1, 'https://ror.org/02jvzs806 East Midlands Academic Health Science Network'),
(57080, 'https://ror.org/00yrbts90', 'en', 1, 'https://ror.org/00yrbts90 H&M Foundation'),
(57081, 'https://ror.org/05aq4y378', 'en', 1, 'https://ror.org/05aq4y378 Clinica Valle Giulia'),
(57082, 'https://ror.org/05972na11', 'no_lang_code', 1, 'https://ror.org/05972na11 CryoLife (United Kingdom)'),
(57083, 'https://ror.org/00d0m6v41', 'en', 1, 'https://ror.org/00d0m6v41 Aid Health and Development Onlus'),
(57084, 'https://ror.org/00555bk04', 'no_lang_code', 1, 'https://ror.org/00555bk04 Cultech (United Kingdom)'),
(57085, 'https://ror.org/04fhhgs91', 'en', 1, 'https://ror.org/04fhhgs91 ALERTAsia Foundation'),
(57086, 'https://ror.org/03y9bvk93', 'en', 1, 'https://ror.org/03y9bvk93 Bolton NHS Foundation Trust'),
(57087, 'https://ror.org/00d9y8h06', 'ca', 1, 'https://ror.org/00d9y8h06 Servei de Salut de les Illes Balears'),
(57088, 'https://ror.org/005f11v91', 'no_lang_code', 1, 'https://ror.org/005f11v91 EndoSphere (United States)'),
(57089, 'https://ror.org/00q1rv339', 'en', 1, 'https://ror.org/00q1rv339 CURE International UK'),
(57090, 'https://ror.org/03x3d2a47', 'no_lang_code', 1, 'https://ror.org/03x3d2a47 All American Pharmaceutical (United States)'),
(57091, 'https://ror.org/013bz8f47', 'no_lang_code', 1, 'https://ror.org/013bz8f47 Enteromed (United Kingdom)'),
(57092, 'https://ror.org/025e2dr05', 'es', 1, 'https://ror.org/025e2dr05 Fundación Cerebro y Mente'),
(57093, 'https://ror.org/001zd1d95', 'no_lang_code', 1, 'https://ror.org/001zd1d95 Alliance Pharmaceuticals (United Kingdom)'),
(57094, 'https://ror.org/02e801388', 'no_lang_code', 1, 'https://ror.org/02e801388 Bio-Competence Centre of Healthy Dairy Products (Estonia) Tervisliku Piima Biotehnoloogiate Arenduskeskus'),
(57095, 'https://ror.org/00rh52j13', 'en', 1, 'https://ror.org/00rh52j13 Cwm Taf University Health Board Ymddiriedolaeth GIG Cwm Taf'),
(57096, 'https://ror.org/040fx6j66', 'no_lang_code', 1, 'https://ror.org/040fx6j66 EpiPharm (Switzerland)'),
(57097, 'https://ror.org/03tw90478', 'nl', 1, 'https://ror.org/03tw90478 Hartcentrum Hasselt'),
(57098, 'https://ror.org/05tgveb11', 'no_lang_code', 1, 'https://ror.org/05tgveb11 Altana (Netherlands)'),
(57099, 'https://ror.org/02bpbnv34', 'no_lang_code', 1, 'https://ror.org/02bpbnv34 AM–Pharma (Netherlands)'),
(57100, 'https://ror.org/04zqw9t81', 'en', 1, 'https://ror.org/04zqw9t81 Helsingin Diakonissalaitos Helsinki Deaconess Institute'),
(57101, 'https://ror.org/042gk2p39', 'no_lang_code', 1, 'https://ror.org/042gk2p39 Herba Naturalle (United Kingdom)'),
(57102, 'https://ror.org/02fwyek38', 'no_lang_code', 1, 'https://ror.org/02fwyek38 Cycleurope (Sweden)'),
(57103, 'https://ror.org/02jcwga55', 'es', 1, 'https://ror.org/02jcwga55 Federación Alba Andalucía'),
(57104, 'https://ror.org/05enx7587', 'en', 1, 'https://ror.org/05enx7587 Hong Kong Council on Smoking and Health é¦™ęøÆåøē…™čˆ‡å„åŗ·å§”å“”ęœƒ'),
(57105, 'https://ror.org/032hfv632', 'no_lang_code', 1, 'https://ror.org/032hfv632 Bristol-Myers Squibb (Germany)'),
(57106, 'https://ror.org/02t7mb865', 'fr', 1, 'https://ror.org/02t7mb865 HƓpital de Saint-Loup'),
(57107, 'https://ror.org/003n34405', 'no_lang_code', 1, 'https://ror.org/003n34405 Horphag Research (Switzerland)'),
(57108, 'https://ror.org/05gwp6g74', 'en', 1, 'https://ror.org/05gwp6g74 Accredited Private Hospital Villa Regina Ospedale Privato Accreditato Villa Regina'),
(57109, 'https://ror.org/01rqhg698', 'no_lang_code', 1, 'https://ror.org/01rqhg698 Europastry (Spain)'),
(57110, 'https://ror.org/02800a946', 'tr', 1, 'https://ror.org/02800a946 Ankara Fıtık Merkezi'),
(57111, 'https://ror.org/00s7ek396', 'pt', 1, 'https://ror.org/00s7ek396 Hospital Estadual MƔrio Covas'),
(57112, 'https://ror.org/05c2q0q08', 'no_lang_code', 1, 'https://ror.org/05c2q0q08 Applied Pharma Research (Switzerland)'),
(57113, 'https://ror.org/00cfkaw62', 'en', 1, 'https://ror.org/00cfkaw62 The European Academy of Gynaecological Surgery'),
(57114, 'https://ror.org/05pwp0t27', 'no_lang_code', 1, 'https://ror.org/05pwp0t27 Getinge (United States)'),
(57115, 'https://ror.org/01k4dy133', 'no_lang_code', 1, 'https://ror.org/01k4dy133 TheraTears (United States)'),
(57116, 'https://ror.org/056p0fy66', 'no_lang_code', 1, 'https://ror.org/056p0fy66 Daval International (United Kingdom)'),
(57117, 'https://ror.org/03sfwdd85', 'fr', 1, 'https://ror.org/03sfwdd85 AlterSantƩ'),
(57118, 'https://ror.org/00v8tzb98', 'no_lang_code', 1, 'https://ror.org/00v8tzb98 Archemix (United States)'),
(57119, 'https://ror.org/053qhtw56', 'no_lang_code', 1, 'https://ror.org/053qhtw56 Imam Hossein Hospital'),
(57120, 'https://ror.org/02n9shp96', 'no_lang_code', 1, 'https://ror.org/02n9shp96 Dentaid (Spain)'),
(57121, 'https://ror.org/022w0b336', 'no_lang_code', 1, 'https://ror.org/022w0b336 ALK-Abelló (Netherlands)'),
(57122, 'https://ror.org/00828d816', 'it', 1, 'https://ror.org/00828d816 Studio Odontoiatrico Mangano'),
(57123, 'https://ror.org/02pqj5664', 'no_lang_code', 1, 'https://ror.org/02pqj5664 Eurosets (Italy)'),
(57124, 'https://ror.org/038jmw351', 'en', 1, 'https://ror.org/038jmw351 Department of Health Canton of Zurich Gesundheitsdirektion Kanton Zürich'),
(57125, 'https://ror.org/054q96n74', 'no_lang_code', 1, 'https://ror.org/054q96n74 AstraZeneca (Germany)'),
(57126, 'https://ror.org/02fyj2e56', 'en', 1, 'https://ror.org/02fyj2e56 Calderdale and Huddersfield NHS Foundation Trust'),
(57127, 'https://ror.org/05w8yzs02', 'es', 1, 'https://ror.org/05w8yzs02 Innpulsa'),
(57128, 'https://ror.org/04r796168', 'no_lang_code', 1, 'https://ror.org/04r796168 DiagNodus (United Kingdom)'),
(57129, 'https://ror.org/03ds2he10', 'no_lang_code', 1, 'https://ror.org/03ds2he10 Atrium Medical (Australia)'),
(57130, 'https://ror.org/01xc3wx73', 'en', 1, 'https://ror.org/01xc3wx73 Exeter Primary Care'),
(57131, 'https://ror.org/044sr7e96', 'no_lang_code', 1, 'https://ror.org/044sr7e96 Difa Cooper (Italy)'),
(57132, 'https://ror.org/00qe6gb33', 'no_lang_code', 1, 'https://ror.org/00qe6gb33 Nuvo Pharmaceuticals (Canada)'),
(57133, 'https://ror.org/02cf8gj49', 'no_lang_code', 1, 'https://ror.org/02cf8gj49 IBSA Farmaceutici (Italy)'),
(57134, 'https://ror.org/03krr1g45', 'nl', 1, 'https://ror.org/03krr1g45 Aveleijn'),
(57135, 'https://ror.org/001m0em47', 'en', 1, 'https://ror.org/001m0em47 German Doctors'),
(57136, 'https://ror.org/03jx7ar65', 'no_lang_code', 1, 'https://ror.org/03jx7ar65 DOCxcellence (Germany)'),
(57137, 'https://ror.org/03be8p176', 'en', 1, 'https://ror.org/03be8p176 Dolan Park Hospital'),
(57138, 'https://ror.org/03haydy69', 'no_lang_code', 1, 'https://ror.org/03haydy69 Cambridge Weight Plan (United Kingdom)'),
(57139, 'https://ror.org/02t15ae18', 'no_lang_code', 1, 'https://ror.org/02t15ae18 AXA Health (United Kingdom)'),
(57140, 'https://ror.org/02s113s62', 'en', 1, 'https://ror.org/02s113s62 Eyehope'),
(57141, 'https://ror.org/04sdeyq07', 'no_lang_code', 1, 'https://ror.org/04sdeyq07 B. Braun (Spain)'),
(57142, 'https://ror.org/05hqyp882', 'no_lang_code', 1, 'https://ror.org/05hqyp882 MedSkin Solutions (Germany)'),
(57143, 'https://ror.org/053ax5y02', 'no_lang_code', 1, 'https://ror.org/053ax5y02 Barry Callebaut (Belgium)'),
(57144, 'https://ror.org/00wcjzh22', 'no_lang_code', 1, 'https://ror.org/00wcjzh22 Dr. Peithner KG (Austria)'),
(57145, 'https://ror.org/04sw4ge25', 'en', 1, 'https://ror.org/04sw4ge25 DSC Services'),
(57146, 'https://ror.org/0278syk25', 'en', 1, 'https://ror.org/0278syk25 Canadian Foundation for Women’s Health'),
(57147, 'https://ror.org/02kf9ya90', 'no_lang_code', 1, 'https://ror.org/02kf9ya90 Baxter (Italy)'),
(57148, 'https://ror.org/05ceh6345', 'no_lang_code', 1, 'https://ror.org/05ceh6345 Dukat (Croatia)'),
(57149, 'https://ror.org/04qqvvm35', 'no_lang_code', 1, 'https://ror.org/04qqvvm35 EyeSonix (United States)'),
(57150, 'https://ror.org/048q77b60', 'en', 1, 'https://ror.org/048q77b60 Irish Pharmacy Union'),
(57151, 'https://ror.org/02d4f0r15', 'no_lang_code', 1, 'https://ror.org/02d4f0r15 Fazer (Finland)'),
(57152, 'https://ror.org/00z1c3x88', 'en', 1, 'https://ror.org/00z1c3x88 Bergman Clinics'),
(57153, 'https://ror.org/04dg86p75', 'no_lang_code', 1, 'https://ror.org/04dg86p75 Isdin (Spain)'),
(57154, 'https://ror.org/020yxp837', 'de', 1, 'https://ror.org/020yxp837 Berliner Krebsgesellschaft'),
(57155, 'https://ror.org/0151f9x82', 'no_lang_code', 1, 'https://ror.org/0151f9x82 BHR Pharmaceuticals (United Kingdom)'),
(57156, 'https://ror.org/05bzbnj80', 'no_lang_code', 1, 'https://ror.org/05bzbnj80 Bifodan (Denmark)'),
(57157, 'https://ror.org/054c9y537', 'en', 1, 'https://ror.org/054c9y537 Bundeszentrale für Gesundheitliche Aufklärung Federal Centre for Health Education'),
(57158, 'https://ror.org/013aa1717', 'en', 1, 'https://ror.org/013aa1717 Isle of Wight NHS Trust'),
(57159, 'https://ror.org/03by5ya49', 'no_lang_code', 1, 'https://ror.org/03by5ya49 Epiim (Estonia)'),
(57160, 'https://ror.org/00z3eck08', 'it', 1, 'https://ror.org/00z3eck08 Casa di Cura San Michele'),
(57161, 'https://ror.org/045xrc244', 'no_lang_code', 1, 'https://ror.org/045xrc244 ISO Arzneimittel (Germany)'),
(57162, 'https://ror.org/02tx52885', 'no_lang_code', 1, 'https://ror.org/02tx52885 Nutrition & SantƩ (Spain)'),
(57163, 'https://ror.org/02wmh7s95', 'no_lang_code', 1, 'https://ror.org/02wmh7s95 CasaLuker (Colombia)'),
(57164, 'https://ror.org/01aagfe76', 'no_lang_code', 1, 'https://ror.org/01aagfe76 Efamol (United Kingdom)'),
(57165, 'https://ror.org/03n30a589', 'no_lang_code', 1, 'https://ror.org/03n30a589 U.S. Stem Cell (United States)'),
(57166, 'https://ror.org/0381nq624', 'fr', 1, 'https://ror.org/0381nq624 FƩdƩration Internationale de Football Association'),
(57167, 'https://ror.org/00a1wp308', 'en', 1, 'https://ror.org/00a1wp308 Effective Intervention'),
(57168, 'https://ror.org/004q7a047', 'no_lang_code', 1, 'https://ror.org/004q7a047 Bioline Products (Czechia)'),
(57169, 'https://ror.org/032skq703', 'no_lang_code', 1, 'https://ror.org/032skq703 Joimax (Germany)'),
(57170, 'https://ror.org/03fvjvp95', 'no_lang_code', 1, 'https://ror.org/03fvjvp95 GDI Integrated Facility Services (Canada)'),
(57171, 'https://ror.org/02c19c733', 'no_lang_code', 1, 'https://ror.org/02c19c733 Femeda (United Kingdom)'),
(57172, 'https://ror.org/05jhd9y87', 'no_lang_code', 1, 'https://ror.org/05jhd9y87 Biosignatures (United Kingdom)'),
(57173, 'https://ror.org/04tgkyt11', 'no_lang_code', 1, 'https://ror.org/04tgkyt11 Froceth (Lithuania)'),
(57174, 'https://ror.org/03vrwsp35', 'no_lang_code', 1, 'https://ror.org/03vrwsp35 Ferring Pharmaceuticals (France)'),
(57175, 'https://ror.org/00jsvb253', 'no_lang_code', 1, 'https://ror.org/00jsvb253 Biotropics Malaysia (Malaysia)'),
(57176, 'https://ror.org/02t9kcf24', 'it', 1, 'https://ror.org/02t9kcf24 Istituto Europeo di Microchirurgia Oculare'),
(57177, 'https://ror.org/00feyy410', 'it', 1, 'https://ror.org/00feyy410 Associaizone per lo Studio della Sclerosi Sistemica e delle Malattie'),
(57178, 'https://ror.org/0451etm15', 'it', 1, 'https://ror.org/0451etm15 Associazione Medici Diabetologi'),
(57179, 'https://ror.org/031g1ba05', 'no_lang_code', 1, 'https://ror.org/031g1ba05 Mannatech (United States)'),
(57180, 'https://ror.org/02h2r8882', 'en', 1, 'https://ror.org/02h2r8882 Central Council for Research in Yoga & Naturopathy'),
(57181, 'https://ror.org/03kj3qm29', 'it', 1, 'https://ror.org/03kj3qm29 Associazione Italiana Vulvodinia Onlus'),
(57182, 'https://ror.org/04hb5tw27', 'no_lang_code', 1, 'https://ror.org/04hb5tw27 Jafco (Japan)'),
(57183, 'https://ror.org/05kmpn815', 'no_lang_code', 1, 'https://ror.org/05kmpn815 Marigot (Ireland)'),
(57184, 'https://ror.org/01cabyw47', 'no_lang_code', 1, 'https://ror.org/01cabyw47 Marinomed Biotech (Austria)'),
(57185, 'https://ror.org/003r56a21', 'no_lang_code', 1, 'https://ror.org/003r56a21 Mastelli (Italy)'),
(57186, 'https://ror.org/05rpby975', 'en', 1, 'https://ror.org/05rpby975 Chios Mastiha Growers Association'),
(57187, 'https://ror.org/02cnwya81', 'no_lang_code', 1, 'https://ror.org/02cnwya81 Nordic Sugar (Finland)'),
(57188, 'https://ror.org/03h1ytk17', 'en', 1, 'https://ror.org/03h1ytk17 Kindercare Pediatrics'),
(57189, 'https://ror.org/01m15jk16', 'no_lang_code', 1, 'https://ror.org/01m15jk16 Maywufa (Taiwan)'),
(57190, 'https://ror.org/02ztj7h33', 'it', 1, 'https://ror.org/02ztj7h33 Federazione Ordini Farmacisti Italiani'),
(57191, 'https://ror.org/011xgdn77', 'no_lang_code', 1, 'https://ror.org/011xgdn77 Medical CaƱada (Spain)'),
(57192, 'https://ror.org/0469pxf24', 'en', 1, 'https://ror.org/0469pxf24 Medicor Foundation'),
(57193, 'https://ror.org/03kkjyc12', 'no_lang_code', 1, 'https://ror.org/03kkjyc12 Medigene (Germany)'),
(57194, 'https://ror.org/01nvbq395', 'en', 1, 'https://ror.org/01nvbq395 Food for Health Ireland'),
(57195, 'https://ror.org/02skr9c69', 'es', 1, 'https://ror.org/02skr9c69 Cerveceros de EspaƱa The Brewers of Spain'),
(57196, 'https://ror.org/02htkw777', 'de', 1, 'https://ror.org/02htkw777 Stiftung Chance Stiftung Chance für das kritisch kranke Kind'),
(57197, 'https://ror.org/004cvgs24', 'en', 1, 'https://ror.org/004cvgs24 Food Ingredient and Health Research Institute'),
(57198, 'https://ror.org/03wfcm341', 'no_lang_code', 1, 'https://ror.org/03wfcm341 Nobilis Therapeutics (United States)'),
(57199, 'https://ror.org/05841h928', 'en', 1, 'https://ror.org/05841h928 North Central London Research Consortium'),
(57200, 'https://ror.org/00y3snf11', 'en', 1, 'https://ror.org/00y3snf11 Warrington and Halton Teaching Hospitals NHS Foundation Trust'),
(57201, 'https://ror.org/043xarp69', 'no_lang_code', 1, 'https://ror.org/043xarp69 Knop Laboratories (Chile)'),
(57202, 'https://ror.org/04kz28h20', 'no_lang_code', 1, 'https://ror.org/04kz28h20 Meril Life Sciences (India)'),
(57203, 'https://ror.org/04zzrht05', 'en', 1, 'https://ror.org/04zzrht05 North Tees and Hartlepool NHS Foundation Trust'),
(57204, 'https://ror.org/052hty126', 'no_lang_code', 1, 'https://ror.org/052hty126 Konpharma (Italy)'),
(57205, 'https://ror.org/01dq08926', 'nl', 1, 'https://ror.org/01dq08926 Stichting Kinderpostzegels Nederland'),
(57206, 'https://ror.org/04kvtp152', 'no_lang_code', 1, 'https://ror.org/04kvtp152 Danone (Germany)'),
(57207, 'https://ror.org/03p4nrj93', 'es', 1, 'https://ror.org/03p4nrj93 Fundación para la Fibromialgia y el Síndrome de Fatiga Crónica'),
(57208, 'https://ror.org/032d9sg77', 'en', 1, 'https://ror.org/032d9sg77 Kumasi Centre for Collaborative Research in Tropical Medicine'),
(57209, 'https://ror.org/03xhdc358', 'fr', 1, 'https://ror.org/03xhdc358 Direction GƩnƩrale de la Pharmacie, du MƩdicament et des Laboratoires'),
(57210, 'https://ror.org/03tygvc25', 'en', 1, 'https://ror.org/03tygvc25 Chinese Association for the Study of Pain'),
(57211, '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'),
(57212, 'https://ror.org/02pv1pj08', 'no_lang_code', 1, 'https://ror.org/02pv1pj08 Northern Therapeutics (Canada)'),
(57213, 'https://ror.org/02kctrc72', 'nl', 1, 'https://ror.org/02kctrc72 Stichting Wetenschappelijk Onderzoek het Oogziekenhuis'),
(57214, 'https://ror.org/018qejt38', 'no_lang_code', 1, 'https://ror.org/018qejt38 Bausch & Lomb (France)'),
(57215, 'https://ror.org/02czvz038', 'no', 1, 'https://ror.org/02czvz038 Norsk Ergoterapeutforbund Norwegian Occupational Therapist Association - Occupational Therapists'),
(57216, 'https://ror.org/01y0zfy93', 'no_lang_code', 1, 'https://ror.org/01y0zfy93 Medtronic (Singapore)'),
(57217, 'https://ror.org/030ybgp98', 'en', 1, 'https://ror.org/030ybgp98 Mother and Child Foundation'),
(57218, 'https://ror.org/04hrwvd56', 'no_lang_code', 1, 'https://ror.org/04hrwvd56 Moximed (United States)'),
(57219, 'https://ror.org/05ypvb778', 'no_lang_code', 1, 'https://ror.org/05ypvb778 Novintethical Pharma (Switzerland)'),
(57220, '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'),
(57221, 'https://ror.org/032wae568', 'no_lang_code', 1, 'https://ror.org/032wae568 Elea (Argentina)'),
(57222, 'https://ror.org/02h420k27', 'no_lang_code', 1, 'https://ror.org/02h420k27 Nuga Medical (South Korea)'),
(57223, 'https://ror.org/05xc9cz73', 'en', 1, 'https://ror.org/05xc9cz73 Nutraveris'),
(57224, 'https://ror.org/02g1dfh62', 'no_lang_code', 1, 'https://ror.org/02g1dfh62 Fulltec (Switzerland)'),
(57225, 'https://ror.org/007hfqg84', 'no_lang_code', 1, 'https://ror.org/007hfqg84 Nutricia (United Kingdom)'),
(57226, 'https://ror.org/02htmn026', 'en', 1, 'https://ror.org/02htmn026 Civil Service Council مجلس الخدمة Ų§Ł„Ł…ŲÆŁ†ŁŠŲ©'),
(57227, 'https://ror.org/03k4rxa78', 'no_lang_code', 1, 'https://ror.org/03k4rxa78 Obalon (United States)'),
(57228, 'https://ror.org/02xqq7c82', 'no_lang_code', 1, 'https://ror.org/02xqq7c82 Octapharma (France)'),
(57229, 'https://ror.org/00zpf2822', 'no_lang_code', 1, 'https://ror.org/00zpf2822 Laboratorios Sophia (Mexico)'),
(57230, 'https://ror.org/04e5xac72', 'no_lang_code', 1, 'https://ror.org/04e5xac72 Clasado BioSciences (United Kingdom)'),
(57231, 'https://ror.org/00wsb3r63', 'no_lang_code', 1, 'https://ror.org/00wsb3r63 Ocutec (United Kingdom)'),
(57232, 'https://ror.org/03we5jj07', 'de', 1, 'https://ror.org/03we5jj07 OH DO KWAN Stiftung Ludmilla Pankofer und Carl Wiedmeier'),
(57233, 'https://ror.org/05nmp7m26', 'no_lang_code', 1, 'https://ror.org/05nmp7m26 Laccure (Sweden)'),
(57234, 'https://ror.org/0261c1d14', 'no_lang_code', 1, 'https://ror.org/0261c1d14 Okhotsk Kai Hospital ć‚Ŗćƒ›ćƒ¼ćƒ„ć‚Æęµ·ē—…é™¢'),
(57235, 'https://ror.org/01rjdjc72', 'en', 1, 'https://ror.org/01rjdjc72 Olberon (United Kingdom)'),
(57236, 'https://ror.org/04rmmk750', 'no_lang_code', 1, 'https://ror.org/04rmmk750 GAIA (Germany)'),
(57237, 'https://ror.org/05q6g7072', 'no_lang_code', 1, 'https://ror.org/05q6g7072 Laila Impex (India)'),
(57238, 'https://ror.org/04g5zwy64', 'de', 1, 'https://ror.org/04g5zwy64 Clinic for Sleep Medicine Klinik für Schlafmedizin'),
(57239, 'https://ror.org/01cbq7w74', 'it', 1, 'https://ror.org/01cbq7w74 Clinica Odontoiatrica Salzano Tirone'),
(57240, 'https://ror.org/05nh4qq71', 'en', 1, 'https://ror.org/05nh4qq71 Orchid'),
(57241, 'https://ror.org/00jtnvh80', 'en', 1, 'https://ror.org/00jtnvh80 Netherlands Center for Occupational Diseases Netherlands Centrum for Occupational Diseases'),
(57242, 'https://ror.org/044s3bf07', 'nl', 1, 'https://ror.org/044s3bf07 Nederlandse Hoofdpijn Vereniging'),
(57243, 'https://ror.org/04fqe7a64', 'no_lang_code', 1, 'https://ror.org/04fqe7a64 OrganOx (United Kingdom)'),
(57244, 'https://ror.org/008mcnd42', 'no_lang_code', 1, 'https://ror.org/008mcnd42 Origin BioMed (Canada)'),
(57245, 'https://ror.org/01mgtdr23', 'no_lang_code', 1, 'https://ror.org/01mgtdr23 Baxter (France)'),
(57246, 'https://ror.org/0503fq502', 'no_lang_code', 1, 'https://ror.org/0503fq502 Neuren Pharmaceuticals (New Zealand)'),
(57247, 'https://ror.org/00fsjhf77', 'es', 1, 'https://ror.org/00fsjhf77 Instituto Neurológico de Colombia'),
(57248, 'https://ror.org/018ct3570', 'en', 1, 'https://ror.org/018ct3570 Oslo Sports Trauma Research Center Senter for Idrettsskadeforskning'),
(57249, 'https://ror.org/00y1hj465', 'no_lang_code', 1, 'https://ror.org/00y1hj465 Baxter (South Korea)'),
(57250, 'https://ror.org/03hmb2468', 'no_lang_code', 1, 'https://ror.org/03hmb2468 Neurotechnics (United Kingdom)'),
(57251, 'https://ror.org/01ambd593', 'no_lang_code', 1, 'https://ror.org/01ambd593 Otsuka (Indonesia)'),
(57252, 'https://ror.org/02bexj159', 'no_lang_code', 1, 'https://ror.org/02bexj159 Lead Chemical (Japan)'),
(57253, 'https://ror.org/011bzst67', 'no_lang_code', 1, 'https://ror.org/011bzst67 Leiber (Germany)'),
(57254, 'https://ror.org/02q0ygf45', 'no_lang_code', 1, 'https://ror.org/02q0ygf45 OBS Medical (United Kingdom)'),
(57255, 'https://ror.org/04qx49k93', 'no_lang_code', 1, 'https://ror.org/04qx49k93 Gehrlicher (Germany)'),
(57256, 'https://ror.org/02mcwd725', 'en', 1, 'https://ror.org/02mcwd725 Bòrd SSN Dùn Phris agus an Gall-Ghaidhealaibh NHS Dumfries and Galloway'),
(57257, 'https://ror.org/055kp8612', 'no_lang_code', 1, 'https://ror.org/055kp8612 Libbs (Brazil)'),
(57258, 'https://ror.org/03wdref81', 'no_lang_code', 1, 'https://ror.org/03wdref81 Remedial Centre Hospital'),
(57259, 'https://ror.org/05aqc8c91', 'de', 1, 'https://ror.org/05aqc8c91 Gelenkpunkt'),
(57260, 'https://ror.org/0116f3t39', 'no_lang_code', 1, 'https://ror.org/0116f3t39 Verman (Finland)'),
(57261, 'https://ror.org/02a9kts05', 'no_lang_code', 1, 'https://ror.org/02a9kts05 Baxter (Colombia)'),
(57262, 'https://ror.org/02ra2yn55', 'fr', 1, 'https://ror.org/02ra2yn55 Ligue Pulmonaire Genevoise'),
(57263, 'https://ror.org/01g15q926', 'no_lang_code', 1, 'https://ror.org/01g15q926 Origin Sciences (United Kingdom)'),
(57264, 'https://ror.org/01spx4y35', 'en', 1, 'https://ror.org/01spx4y35 London Eye Hospital'),
(57265, 'https://ror.org/0172dx143', 'no_lang_code', 1, 'https://ror.org/0172dx143 Advanced Medical Solutions (Germany)'),
(57266, 'https://ror.org/01x62am17', 'no_lang_code', 1, 'https://ror.org/01x62am17 Paladin Pharma (Italy)'),
(57267, 'https://ror.org/00c5hbd86', 'no_lang_code', 1, 'https://ror.org/00c5hbd86 Panin (Italy)'),
(57268, 'https://ror.org/02cfx3y90', 'en', 1, 'https://ror.org/02cfx3y90 Community Information, Empowerment and Transparency'),
(57269, 'https://ror.org/00m48tn76', 'no_lang_code', 1, 'https://ror.org/00m48tn76 LiveLeaf (United States)'),
(57270, 'https://ror.org/03mfyst18', 'no_lang_code', 1, 'https://ror.org/03mfyst18 Perseus PCI (United States)'),
(57271, 'https://ror.org/05kagrs11', 'no_lang_code', 1, 'https://ror.org/05kagrs11 Competence Centre on Health Technologies (Estonia) Tervisetehnoloogiate Arenduskeskus'),
(57272, 'https://ror.org/00447xj53', 'no_lang_code', 1, 'https://ror.org/00447xj53 Lombard Medical (United Kingdom)'),
(57273, 'https://ror.org/039k72k82', 'en', 1, 'https://ror.org/039k72k82 Concept Foundation'),
(57274, 'https://ror.org/02gaw4292', 'de', 1, 'https://ror.org/02gaw4292 Verwaltungs-Berufsgenossenschaft'),
(57275, 'https://ror.org/03jvn6861', 'no_lang_code', 1, 'https://ror.org/03jvn6861 PharmaFGP (Germany)'),
(57276, 'https://ror.org/00hz19x62', 'no_lang_code', 1, 'https://ror.org/00hz19x62 Pharma Nord (United Kingdom)'),
(57277, 'https://ror.org/04yy1mz94', 'en', 1, 'https://ror.org/04yy1mz94 Royal Belgian Society for Surgery'),
(57278, 'https://ror.org/011nmry48', 'no_lang_code', 1, 'https://ror.org/011nmry48 PharmEcosse (United Kingdom)'),
(57279, 'https://ror.org/01ecxzf56', 'no_lang_code', 1, 'https://ror.org/01ecxzf56 Cool Down (Switzerland)'),
(57280, 'https://ror.org/032951a18', 'no_lang_code', 1, 'https://ror.org/032951a18 Lycotec (United Kingdom)'),
(57281, 'https://ror.org/01e2zk874', 'en', 1, 'https://ror.org/01e2zk874 Lymphoma Research Trust'),
(57282, 'https://ror.org/011ccs949', 'no_lang_code', 1, 'https://ror.org/011ccs949 Phoenix (Italy)'),
(57283, 'https://ror.org/012pz6314', 'no_lang_code', 1, 'https://ror.org/012pz6314 TRB Chemedica International (Switzerland)'),
(57284, 'https://ror.org/00k065b17', 'it', 1, 'https://ror.org/00k065b17 Fondazione Crescere Insieme al Sant''Anna'),
(57285, 'https://ror.org/01w50vm31', 'no_lang_code', 1, 'https://ror.org/01w50vm31 SMART Medical Systems (Israel)'),
(57286, 'https://ror.org/01hd27x96', 'de', 1, 'https://ror.org/01hd27x96 Deutsche Gesellschaft für Psychoanalyse, Psychotherapie, Psychosomatik und Tiefenpsychologie'),
(57287, 'https://ror.org/02ww5xj89', 'en', 1, 'https://ror.org/02ww5xj89 Samnium Medica'),
(57288, 'https://ror.org/01vvp4329', 'no_lang_code', 1, 'https://ror.org/01vvp4329 Smart Salt (United States)'),
(57289, 'https://ror.org/03a2dk673', 'no_lang_code', 1, 'https://ror.org/03a2dk673 Snap40 (United Kingdom)'),
(57290, 'https://ror.org/03cn5jj91', 'pt', 1, 'https://ror.org/03cn5jj91 Hospital Municipal São José'),
(57291, 'https://ror.org/02hanc252', 'no_lang_code', 1, 'https://ror.org/02hanc252 Social Security Office (Thailand)'),
(57292, 'https://ror.org/023j1w312', 'sv', 1, 'https://ror.org/023j1w312 Skandinaviska Kiropraktorhƶgskolan'),
(57293, 'https://ror.org/048gkn792', 'no_lang_code', 1, 'https://ror.org/048gkn792 Inversago Pharma (Canada)'),
(57294, 'https://ror.org/035aahr55', 'en', 1, 'https://ror.org/035aahr55 The Egyptian IVF-ET Center Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł…ŲµŲ±ŁŠ لأطفال Ų§Ł„Ų£Ł†Ų§ŲØŁŠŲØ'),
(57295, 'https://ror.org/0165tjs71', 'fr', 1, 'https://ror.org/0165tjs71 EurasantƩ'),
(57296, 'https://ror.org/01t825428', 'en', 1, 'https://ror.org/01t825428 The Eve Appeal'),
(57297, 'https://ror.org/03fs77m09', 'no_lang_code', 1, 'https://ror.org/03fs77m09 GILUPI (Germany)'),
(57298, 'https://ror.org/02qnzpb65', 'en', 1, 'https://ror.org/02qnzpb65 The Farah Hospital'),
(57299, 'https://ror.org/00sb6vz77', 'no_lang_code', 1, 'https://ror.org/00sb6vz77 Valid International (United Kingdom)'),
(57300, 'https://ror.org/03psr2094', 'de', 1, 'https://ror.org/03psr2094 GKV Spitzenverband'),
(57301, 'https://ror.org/034dekp80', 'en', 1, 'https://ror.org/034dekp80 Great Orchestra of Christmas Charity Wielka Orkiestra Świątecznej Pomocy'),
(57302, 'https://ror.org/04z435g27', 'en', 1, 'https://ror.org/04z435g27 South Asian Clinical Toxicology Research Collaboration'),
(57303, 'https://ror.org/03x5tah73', 'no_lang_code', 1, 'https://ror.org/03x5tah73 Vaximm (Germany)'),
(57304, 'https://ror.org/00fan0f25', 'no_lang_code', 1, 'https://ror.org/00fan0f25 Servier (China)'),
(57305, 'https://ror.org/00mjfwd15', 'no_lang_code', 1, 'https://ror.org/00mjfwd15 Vectorite Biomedical (Taiwan) é‘«å“ē”ŸåŒ»ē§‘ęŠ€'),
(57306, 'https://ror.org/05wk4ae67', 'no_lang_code', 1, 'https://ror.org/05wk4ae67 Servier (Germany)'),
(57307, 'https://ror.org/00v3zdx13', 'no_lang_code', 1, 'https://ror.org/00v3zdx13 Servier (Egypt)'),
(57308, 'https://ror.org/03ywwjy69', 'en', 1, 'https://ror.org/03ywwjy69 The Howard Foundation'),
(57309, 'https://ror.org/02fj56008', 'no_lang_code', 1, 'https://ror.org/02fj56008 Vestergaard (Switzerland)'),
(57310, 'https://ror.org/04t4g7j44', 'en', 1, 'https://ror.org/04t4g7j44 Changhua County Public Health Bureau å½°åŒ–ēø£č”›ē”Ÿå±€');
INSERT INTO `rors` VALUES
(57311, 'https://ror.org/05319p535', 'no_lang_code', 1, 'https://ror.org/05319p535 SilverCloud (Ireland)'),
(57312, 'https://ror.org/02c0pn910', 'no_lang_code', 1, 'https://ror.org/02c0pn910 Winclove Probiotics (Netherlands)'),
(57313, 'https://ror.org/0279am519', 'no_lang_code', 1, 'https://ror.org/0279am519 KSL Consulting (Denmark)'),
(57314, 'https://ror.org/026xgbm91', 'en', 1, 'https://ror.org/026xgbm91 Viewpoint Vision'),
(57315, 'https://ror.org/02fjtnt35', 'en', 1, 'https://ror.org/02fjtnt35 Southern Health and Social Care Trust'),
(57316, 'https://ror.org/028mrxf52', 'en', 1, 'https://ror.org/028mrxf52 Wrightington, Wigan and Leigh NHS Foundation Trust'),
(57317, 'https://ror.org/02ynj6025', 'en', 1, 'https://ror.org/02ynj6025 Vision Impact Institute'),
(57318, 'https://ror.org/00pcyna40', 'en', 1, 'https://ror.org/00pcyna40 Hyderabad Cleft Society'),
(57319, 'https://ror.org/010knjd35', 'no_lang_code', 1, 'https://ror.org/010knjd35 Vivostat (Denmark)'),
(57320, 'https://ror.org/041mqc477', 'no_lang_code', 1, 'https://ror.org/041mqc477 Zija International (United States)'),
(57321, 'https://ror.org/04mg7be43', 'no_lang_code', 1, 'https://ror.org/04mg7be43 Guna (Italy)'),
(57322, 'https://ror.org/00qdbgv91', 'no_lang_code', 1, 'https://ror.org/00qdbgv91 Soylent (United States)'),
(57323, 'https://ror.org/04zrd1t35', 'no_lang_code', 1, 'https://ror.org/04zrd1t35 Zambon (Switzerland)'),
(57324, 'https://ror.org/02msz7b29', 'en', 1, 'https://ror.org/02msz7b29 Zankli Medical Centre'),
(57325, 'https://ror.org/011af0v55', 'en', 1, 'https://ror.org/011af0v55 Spectrum Community Health CIC'),
(57326, 'https://ror.org/01tq9ra93', 'en', 1, 'https://ror.org/01tq9ra93 War Child'),
(57327, 'https://ror.org/03segdh23', 'en', 1, 'https://ror.org/03segdh23 GynePro Medical'),
(57328, 'https://ror.org/01e98yd03', 'no_lang_code', 1, 'https://ror.org/01e98yd03 Water-Jel Technologies (United Kingdom)'),
(57329, 'https://ror.org/05xv38e59', 'no_lang_code', 1, 'https://ror.org/05xv38e59 Brf (Brazil)'),
(57330, 'https://ror.org/017qmh907', 'no_lang_code', 1, 'https://ror.org/017qmh907 Zhejiang Yongning Pharma (China)'),
(57331, 'https://ror.org/01y84kk86', 'no_lang_code', 1, 'https://ror.org/01y84kk86 Wepa Apothekenbedarf (Germany)'),
(57332, 'https://ror.org/04ykj1118', 'no_lang_code', 1, 'https://ror.org/04ykj1118 Gynius (Sweden)'),
(57333, 'https://ror.org/00yerav41', 'no_lang_code', 1, 'https://ror.org/00yerav41 Quantum Pharmaceutical (United Kingdom)'),
(57334, 'https://ror.org/0180s3q15', 'nl', 1, 'https://ror.org/0180s3q15 Omring'),
(57335, 'https://ror.org/008545842', 'en', 1, 'https://ror.org/008545842 White Clinic'),
(57336, 'https://ror.org/050fgea76', 'no_lang_code', 1, 'https://ror.org/050fgea76 Kazahstanskoe Obshchestvo Bariatricheskih i Metabolicheskih Hirurgov ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾Šµ общество бариатрических Šø метаболических Ń…ŠøŃ€ŃƒŃ€Š³Š¾Š² Š ŠžŠž'),
(57337, 'https://ror.org/02nwyam20', 'no_lang_code', 1, 'https://ror.org/02nwyam20 Stryker (Netherlands)'),
(57338, 'https://ror.org/02y9vw172', 'no_lang_code', 1, 'https://ror.org/02y9vw172 Plethora Solutions (United Kingdom)'),
(57339, 'https://ror.org/05pe6et34', 'no_lang_code', 1, 'https://ror.org/05pe6et34 Recuperat-ion (Spain)'),
(57340, 'https://ror.org/04h6ep125', 'no_lang_code', 1, 'https://ror.org/04h6ep125 Synairgen (United Kingdom)'),
(57341, 'https://ror.org/04t7jet59', 'no_lang_code', 1, 'https://ror.org/04t7jet59 Stryker (Switzerland)'),
(57342, 'https://ror.org/03c0asn85', 'no_lang_code', 1, 'https://ror.org/03c0asn85 Redax (Italy)'),
(57343, 'https://ror.org/00frd0c49', 'no_lang_code', 1, 'https://ror.org/00frd0c49 Thornton and Ross (United Kingdom)'),
(57344, 'https://ror.org/01vx59p26', 'no_lang_code', 1, 'https://ror.org/01vx59p26 Synapse (Greece)'),
(57345, 'https://ror.org/04yeh2x21', 'de', 1, 'https://ror.org/04yeh2x21 Refonet'),
(57346, 'https://ror.org/014fa1z03', 'da', 1, 'https://ror.org/014fa1z03 Regionshospital Nordjylland'),
(57347, 'https://ror.org/04030gz13', 'en', 1, 'https://ror.org/04030gz13 KriminalvƄrden Swedish Prison and Probation Service'),
(57348, 'https://ror.org/002jv8g15', 'es', 1, 'https://ror.org/002jv8g15 Fundación para La Investigación del Vino y La Nutrición'),
(57349, 'https://ror.org/03bvd4t69', 'no_lang_code', 1, 'https://ror.org/03bvd4t69 Kyowa Kirin (France)'),
(57350, 'https://ror.org/046pkq184', 'no_lang_code', 1, 'https://ror.org/046pkq184 Provexis (United Kingdom)'),
(57351, 'https://ror.org/03yf63872', 'sv', 1, 'https://ror.org/03yf63872 Probi'),
(57352, 'https://ror.org/051mqhp34', 'no_lang_code', 1, 'https://ror.org/051mqhp34 Psicon (United Kingdom)'),
(57353, 'https://ror.org/05yp06a73', 'de', 1, 'https://ror.org/05yp06a73 Schweizerische Gesellschaft für Pulmonale Hypertonie'),
(57354, 'https://ror.org/00dv58j78', 'en', 1, 'https://ror.org/00dv58j78 Protexin'),
(57355, 'https://ror.org/05h876969', 'de', 1, 'https://ror.org/05h876969 Stiftung Mandacaru'),
(57356, 'https://ror.org/043vk3t22', 'no_lang_code', 1, 'https://ror.org/043vk3t22 Terumo (Belgium)'),
(57357, 'https://ror.org/05d2j9p36', 'en', 1, 'https://ror.org/05d2j9p36 Texas Life Science Foundation'),
(57358, 'https://ror.org/037hmn502', 'no_lang_code', 1, 'https://ror.org/037hmn502 PROGAL (Colombia)'),
(57359, 'https://ror.org/023sxys58', 'no_lang_code', 1, 'https://ror.org/023sxys58 Purdue Pharma (Canada)'),
(57360, 'https://ror.org/01nw8jb24', 'en', 1, 'https://ror.org/01nw8jb24 Aim Foundation'),
(57361, 'https://ror.org/023k9vr64', 'no_lang_code', 1, 'https://ror.org/023k9vr64 PROGE FARM (Italy)'),
(57362, 'https://ror.org/049x86d03', 'en', 1, 'https://ror.org/049x86d03 Academic Health Science Partnership'),
(57363, 'https://ror.org/03gc62f43', 'no_lang_code', 1, 'https://ror.org/03gc62f43 Laxdale Foodservice (United Kingdom)'),
(57364, 'https://ror.org/01vb7db28', 'en', 1, 'https://ror.org/01vb7db28 Bionomics International'),
(57365, 'https://ror.org/00s1jty20', 'en', 1, 'https://ror.org/00s1jty20 Biotechnology Institute'),
(57366, 'https://ror.org/03e1kgt76', 'en', 1, 'https://ror.org/03e1kgt76 Council of State Governments Midwest'),
(57367, 'https://ror.org/041s25165', 'en', 1, 'https://ror.org/041s25165 National Association of Attorneys General'),
(57368, 'https://ror.org/0113xgn62', 'en', 1, 'https://ror.org/0113xgn62 Ahtna Heritage Foundation'),
(57369, 'https://ror.org/0394zmz22', 'en', 1, 'https://ror.org/0394zmz22 Building Child and Family Initiatives'),
(57370, 'https://ror.org/01kbfg076', 'en', 1, 'https://ror.org/01kbfg076 American Water Resources Association'),
(57371, 'https://ror.org/008qz0n88', 'no_lang_code', 1, 'https://ror.org/008qz0n88 Blue Sky Research (United States)'),
(57372, 'https://ror.org/05nvpz682', 'en', 1, 'https://ror.org/05nvpz682 AI Access Foundation'),
(57373, 'https://ror.org/0317vxn45', 'en', 1, 'https://ror.org/0317vxn45 Chaminade College Preparatory School'),
(57374, 'https://ror.org/03383wt55', 'en', 1, 'https://ror.org/03383wt55 Broome-Tioga Board of Cooperative Educational Services'),
(57375, 'https://ror.org/0332tkb18', 'en', 1, 'https://ror.org/0332tkb18 Amiq Institute'),
(57376, 'https://ror.org/024rjga53', 'en', 1, 'https://ror.org/024rjga53 Monroe 2-Orleans BOCES'),
(57377, 'https://ror.org/0579h7m09', 'no_lang_code', 1, 'https://ror.org/0579h7m09 Creative Research Enterprises (United States)'),
(57378, 'https://ror.org/04gfyfa37', 'en', 1, 'https://ror.org/04gfyfa37 Boston Partners in Education'),
(57379, 'https://ror.org/04n8xcj92', 'en', 1, 'https://ror.org/04n8xcj92 Alabama School of Fine Arts'),
(57380, 'https://ror.org/04z3y3b74', 'en', 1, 'https://ror.org/04z3y3b74 Chicago Children’s Museum'),
(57381, 'https://ror.org/005wqmj88', 'en', 1, 'https://ror.org/005wqmj88 Alaska Geological Society'),
(57382, 'https://ror.org/03yh6aq45', 'en', 1, 'https://ror.org/03yh6aq45 Alaska Institute for Justice'),
(57383, 'https://ror.org/008v85a91', 'en', 1, 'https://ror.org/008v85a91 Alaska Native Heritage Center'),
(57384, 'https://ror.org/024wpqc10', 'en', 1, 'https://ror.org/024wpqc10 Alaska Native Science Commission'),
(57385, 'https://ror.org/02em8e723', 'en', 1, 'https://ror.org/02em8e723 Brunswick Community College'),
(57386, 'https://ror.org/010y9qk38', 'en', 1, 'https://ror.org/010y9qk38 Center for the Advancement of Hispanics in Science and Engineering Education'),
(57387, 'https://ror.org/040ctp848', 'en', 1, 'https://ror.org/040ctp848 Aleut International Association'),
(57388, 'https://ror.org/01g62gh72', 'en', 1, 'https://ror.org/01g62gh72 Buehler Challenger & Science Center'),
(57389, 'https://ror.org/04z9wzt26', 'en', 1, 'https://ror.org/04z9wzt26 Appalachia-Science in the Public Interest'),
(57390, 'https://ror.org/00fk5gz64', 'en', 1, 'https://ror.org/00fk5gz64 Bunker Hill Elementary School'),
(57391, 'https://ror.org/02bwxd425', 'no_lang_code', 1, 'https://ror.org/02bwxd425 Applied Dynamics International (United States)'),
(57392, 'https://ror.org/01r32p017', 'en', 1, 'https://ror.org/01r32p017 North Texas Regional Center for Innovation and Commercialization'),
(57393, 'https://ror.org/02mtnaz94', 'en', 1, 'https://ror.org/02mtnaz94 Cyber Innovation Center'),
(57394, 'https://ror.org/02qscpy04', 'no_lang_code', 1, 'https://ror.org/02qscpy04 Applied Scientific Research (United States)'),
(57395, 'https://ror.org/05pgfe605', 'no_lang_code', 1, 'https://ror.org/05pgfe605 Dansk Sundhedssikring'),
(57396, 'https://ror.org/00k4wxv40', 'en', 1, 'https://ror.org/00k4wxv40 American Academy of Political and Social Science'),
(57397, 'https://ror.org/0128rbw31', 'en', 1, 'https://ror.org/0128rbw31 American Academy of Underwater Sciences'),
(57398, 'https://ror.org/04zd8zs90', 'en', 1, 'https://ror.org/04zd8zs90 California Indian Museum and Cultural Center'),
(57399, 'https://ror.org/02b5w5t35', 'en', 1, 'https://ror.org/02b5w5t35 American Arbitration Association'),
(57400, 'https://ror.org/0264mj391', 'en', 1, 'https://ror.org/0264mj391 Grace Hudson Museum and Sun House'),
(57401, 'https://ror.org/0269gkq77', 'en', 1, 'https://ror.org/0269gkq77 Perot Museum of Nature and Science'),
(57402, 'https://ror.org/05jp2s596', 'en', 1, 'https://ror.org/05jp2s596 California Public Interest Research Group'),
(57403, 'https://ror.org/041wcwm28', 'en', 1, 'https://ror.org/041wcwm28 American Association of Physical Anthropologists'),
(57404, 'https://ror.org/04z0aed53', 'en', 1, 'https://ror.org/04z0aed53 The Clay Minerals Society'),
(57405, 'https://ror.org/035zsgw07', 'no_lang_code', 1, 'https://ror.org/035zsgw07 Cambridge Collaborative (United States)'),
(57406, 'https://ror.org/05fqw3447', 'en', 1, 'https://ror.org/05fqw3447 Carter County Museum'),
(57407, 'https://ror.org/04gm2d409', 'no_lang_code', 1, 'https://ror.org/04gm2d409 Cellulose Sciences International (United States)'),
(57408, 'https://ror.org/04a409h19', 'en', 1, 'https://ror.org/04a409h19 Dawson Education Cooperative'),
(57409, 'https://ror.org/04c275n83', 'en', 1, 'https://ror.org/04c275n83 Center for Accessible Technology'),
(57410, 'https://ror.org/007ca3v86', 'en', 1, 'https://ror.org/007ca3v86 Council for Advancement and Support of Education'),
(57411, 'https://ror.org/03qhz4n98', 'en', 1, 'https://ror.org/03qhz4n98 Center for Excellence in Education'),
(57412, 'https://ror.org/007tk2m83', 'no_lang_code', 1, 'https://ror.org/007tk2m83 Cleveland-Cliffs (United States)'),
(57413, 'https://ror.org/01sr4q713', 'en', 1, 'https://ror.org/01sr4q713 Center for International Environmental Law'),
(57414, 'https://ror.org/024r4w520', 'en', 1, 'https://ror.org/024r4w520 Island Press'),
(57415, 'https://ror.org/05mrk2t44', 'en', 1, 'https://ror.org/05mrk2t44 Center for Snow and Avalanche Studies'),
(57416, 'https://ror.org/047yyd552', 'en', 1, 'https://ror.org/047yyd552 American Foundry Society'),
(57417, 'https://ror.org/05e2tvq95', 'en', 1, 'https://ror.org/05e2tvq95 Defense Contract Management Agency'),
(57418, 'https://ror.org/04pz1vx14', 'en', 1, 'https://ror.org/04pz1vx14 Coastal Marine Biolabs'),
(57419, 'https://ror.org/04z256d90', 'en', 1, 'https://ror.org/04z256d90 Governor''s Office of Planning and Research'),
(57420, 'https://ror.org/04kzcc298', 'en', 1, 'https://ror.org/04kzcc298 Cognitive Medical Systems'),
(57421, 'https://ror.org/01v8fa928', 'en', 1, 'https://ror.org/01v8fa928 American Institute of Hydrology'),
(57422, 'https://ror.org/00gxvz816', 'en', 1, 'https://ror.org/00gxvz816 Associated Colleges of Central Kansas'),
(57423, 'https://ror.org/04bsbyy14', 'en', 1, 'https://ror.org/04bsbyy14 Delmarva Advisory Council'),
(57424, 'https://ror.org/003438m13', 'en', 1, 'https://ror.org/003438m13 Associated Colleges of the Twin Cities'),
(57425, 'https://ror.org/00cnyek90', 'en', 1, 'https://ror.org/00cnyek90 American Institute of Professional Geologists'),
(57426, 'https://ror.org/02ypxp350', 'en', 1, 'https://ror.org/02ypxp350 Metal Powder Industries Federation'),
(57427, 'https://ror.org/03q9mj749', 'en', 1, 'https://ror.org/03q9mj749 American Public Works Association'),
(57428, 'https://ror.org/02dpw9611', 'en', 1, 'https://ror.org/02dpw9611 Digital Harbor Foundation'),
(57429, 'https://ror.org/037mx5d24', 'en', 1, 'https://ror.org/037mx5d24 American Society for Clinical Investigation'),
(57430, 'https://ror.org/04304fr42', 'en', 1, 'https://ror.org/04304fr42 National Finance Center'),
(57431, 'https://ror.org/01d0zv889', 'en', 1, 'https://ror.org/01d0zv889 Milton J. Rubenstein Museum of Science and Technology'),
(57432, 'https://ror.org/00v8kbs06', 'en', 1, 'https://ror.org/00v8kbs06 Discovery Museum and Planetarium'),
(57433, 'https://ror.org/05y6ppz60', 'en', 1, 'https://ror.org/05y6ppz60 Don Harrington Discovery Center'),
(57434, 'https://ror.org/030bv9h77', 'en', 1, 'https://ror.org/030bv9h77 Holloman Air Force Base'),
(57435, 'https://ror.org/05n07wm39', 'en', 1, 'https://ror.org/05n07wm39 Colorado Community College System'),
(57436, 'https://ror.org/04j2vda74', 'en', 1, 'https://ror.org/04j2vda74 DuPage Children''s Museum'),
(57437, 'https://ror.org/00ayb2728', 'en', 1, 'https://ror.org/00ayb2728 Patrick Air Force Base'),
(57438, 'https://ror.org/055tvcv06', 'en', 1, 'https://ror.org/055tvcv06 Four Corners School of Outdoor Education'),
(57439, 'https://ror.org/03772c153', 'en', 1, 'https://ror.org/03772c153 Future of Privacy Forum'),
(57440, 'https://ror.org/00bkg1j27', 'en', 1, 'https://ror.org/00bkg1j27 The Astronauts Memorial Foundation'),
(57441, 'https://ror.org/050tgz329', 'en', 1, 'https://ror.org/050tgz329 Eastern Maine Community College'),
(57442, 'https://ror.org/01wgg7498', 'en', 1, 'https://ror.org/01wgg7498 Atomic Heritage Foundation'),
(57443, 'https://ror.org/01fdfdf14', 'en', 1, 'https://ror.org/01fdfdf14 The Econometric Society'),
(57444, 'https://ror.org/046tgw891', 'en', 1, 'https://ror.org/046tgw891 New Hampshire Audubon'),
(57445, 'https://ror.org/029b3y474', 'en', 1, 'https://ror.org/029b3y474 Edgecombe Community College'),
(57446, 'https://ror.org/04x4dcg02', 'en', 1, 'https://ror.org/04x4dcg02 Thinkery'),
(57447, 'https://ror.org/009tt1y46', 'en', 1, 'https://ror.org/009tt1y46 Autodesk Foundation'),
(57448, 'https://ror.org/05x4n5887', 'en', 1, 'https://ror.org/05x4n5887 Information Systems Audit and Control Association'),
(57449, 'https://ror.org/01ck0ze30', 'en', 1, 'https://ror.org/01ck0ze30 Metropolitan Educational Cooperative Service Unit'),
(57450, 'https://ror.org/04h15t444', 'en', 1, 'https://ror.org/04h15t444 Bay Area Discovery Museum'),
(57451, 'https://ror.org/02gfcne25', 'en', 1, 'https://ror.org/02gfcne25 Eidos Education'),
(57452, 'https://ror.org/018w38s46', 'en', 1, 'https://ror.org/018w38s46 Giant Screen Cinema Association'),
(57453, 'https://ror.org/05a90wj20', 'en', 1, 'https://ror.org/05a90wj20 Girl Scouts of NE Kansas and NW Missouri'),
(57454, 'https://ror.org/001f8m487', 'en', 1, 'https://ror.org/001f8m487 Global Environment and Technology Foundation'),
(57455, 'https://ror.org/02kh18p78', 'en', 1, 'https://ror.org/02kh18p78 Elementary Institute of Science'),
(57456, 'https://ror.org/001zdb338', 'it', 1, 'https://ror.org/001zdb338 Fondazione ISAL'),
(57457, 'https://ror.org/029qv0y24', 'en', 1, 'https://ror.org/029qv0y24 The Connecticut Audubon Society'),
(57458, 'https://ror.org/03m84n725', 'en', 1, 'https://ror.org/03m84n725 California Governor’s Office of Emergency Services'),
(57459, 'https://ror.org/000y51230', 'en', 1, 'https://ror.org/000y51230 Vermont Natural Resources Council'),
(57460, 'https://ror.org/01g6k1070', 'en', 1, 'https://ror.org/01g6k1070 HighScope'),
(57461, 'https://ror.org/03ze2q110', 'en', 1, 'https://ror.org/03ze2q110 Essex Westford School District'),
(57462, 'https://ror.org/04ngqwc75', 'en', 1, 'https://ror.org/04ngqwc75 Hilton Pond Center for Piedmont Natural History'),
(57463, 'https://ror.org/05h5s3f74', 'no_lang_code', 1, 'https://ror.org/05h5s3f74 Holtec International (United States)'),
(57464, 'https://ror.org/00a8x7j67', 'en', 1, 'https://ror.org/00a8x7j67 Federal Law Enforcement Training Centers'),
(57465, 'https://ror.org/03b6wj477', 'en', 1, 'https://ror.org/03b6wj477 Corning Museum of Glass'),
(57466, 'https://ror.org/00ck5vv44', 'en', 1, 'https://ror.org/00ck5vv44 Ignited'),
(57467, 'https://ror.org/027vp5j60', 'en', 1, 'https://ror.org/027vp5j60 Huntsville Madison County Chamber'),
(57468, 'https://ror.org/0308e9714', 'no_lang_code', 1, 'https://ror.org/0308e9714 Insite Medical Technologies (United States)'),
(57469, 'https://ror.org/04c6zpp14', 'en', 1, 'https://ror.org/04c6zpp14 InSites'),
(57470, 'https://ror.org/05bp5yn81', 'en', 1, 'https://ror.org/05bp5yn81 Fiber Optic Association'),
(57471, 'https://ror.org/04705pk24', 'en', 1, 'https://ror.org/04705pk24 California Institute Of Medical Science'),
(57472, 'https://ror.org/05c3kx226', 'en', 1, 'https://ror.org/05c3kx226 First Alaskans Institute'),
(57473, 'https://ror.org/02wq1wf87', 'en', 1, 'https://ror.org/02wq1wf87 Council for Opportunity in Education'),
(57474, 'https://ror.org/02zhc2371', 'no_lang_code', 1, 'https://ror.org/02zhc2371 Innovative Technology Laboratories (United States)'),
(57475, 'https://ror.org/03g2qrf69', 'en', 1, 'https://ror.org/03g2qrf69 Florida Council of Teachers of Mathematics'),
(57476, 'https://ror.org/00g3t0998', 'en', 1, 'https://ror.org/00g3t0998 The Bureau of Overseas Buildings Operations'),
(57477, 'https://ror.org/03chvfw61', 'en', 1, 'https://ror.org/03chvfw61 International Community for Auditory Display'),
(57478, 'https://ror.org/04bbrxk94', 'en', 1, 'https://ror.org/04bbrxk94 Council of Athabascan Tribal Governments'),
(57479, 'https://ror.org/01j2f9q17', 'en', 1, 'https://ror.org/01j2f9q17 TerrainWorks'),
(57480, 'https://ror.org/00pwy8p79', 'en', 1, 'https://ror.org/00pwy8p79 International Foundation for Entrepreneurship, Science, and Technology'),
(57481, 'https://ror.org/042dk7821', 'en', 1, 'https://ror.org/042dk7821 Madison Children''s Museum'),
(57482, 'https://ror.org/04yxf9085', 'en', 1, 'https://ror.org/04yxf9085 Maine Discovery Museum'),
(57483, 'https://ror.org/0464wn274', 'en', 1, 'https://ror.org/0464wn274 Sericultural Research Institute 养殖研究所'),
(57484, 'https://ror.org/012n4jm27', 'en', 1, 'https://ror.org/012n4jm27 State Technical College of Missouri'),
(57485, 'https://ror.org/05tt58068', 'en', 1, 'https://ror.org/05tt58068 Nevin Scrimshaw International Nutrition Foundation'),
(57486, 'https://ror.org/001vtsp98', 'en', 1, 'https://ror.org/001vtsp98 Institute for Educational Inquiry'),
(57487, 'https://ror.org/02cj39680', 'en', 1, 'https://ror.org/02cj39680 Malheur Field Station'),
(57488, 'https://ror.org/006rzj065', 'en', 1, 'https://ror.org/006rzj065 Institute for Environmental Research and Education'),
(57489, 'https://ror.org/00gens972', 'en', 1, 'https://ror.org/00gens972 Living Tongues Institute for Endangered Languages'),
(57490, 'https://ror.org/044vvxq04', 'en', 1, 'https://ror.org/044vvxq04 International Society for Chronobiology'),
(57491, 'https://ror.org/05qtxj124', 'en', 1, 'https://ror.org/05qtxj124 National Academy of Public Administration'),
(57492, 'https://ror.org/02cqykx88', 'en', 1, 'https://ror.org/02cqykx88 International Society of Service Innovation Professionals'),
(57493, 'https://ror.org/041n62j20', 'en', 1, 'https://ror.org/041n62j20 Maryland Department of Legislative Services'),
(57494, 'https://ror.org/02r2n8660', 'en', 1, 'https://ror.org/02r2n8660 The Loka Institute'),
(57495, 'https://ror.org/01va9fe31', 'no_lang_code', 1, 'https://ror.org/01va9fe31 Inslaw (United States)'),
(57496, 'https://ror.org/02krjt890', 'en', 1, 'https://ror.org/02krjt890 Institute for Learning Innovation'),
(57497, 'https://ror.org/01hz8zy20', 'en', 1, 'https://ror.org/01hz8zy20 Los Angeles Council of Black Professional Engineers'),
(57498, 'https://ror.org/01e32p682', 'en', 1, 'https://ror.org/01e32p682 Island Resources Foundation'),
(57499, 'https://ror.org/0075qjc87', 'en', 1, 'https://ror.org/0075qjc87 Mathematics Education Collaborative'),
(57500, 'https://ror.org/015w53b07', 'en', 1, 'https://ror.org/015w53b07 NACE International'),
(57501, 'https://ror.org/03h007a78', 'en', 1, 'https://ror.org/03h007a78 Association for Tropical Biology and Conservation'),
(57502, 'https://ror.org/05vfzkq36', 'en', 1, 'https://ror.org/05vfzkq36 National Association of Counties'),
(57503, 'https://ror.org/0215tq732', 'no_lang_code', 1, 'https://ror.org/0215tq732 MEI Asset Protection (United States)'),
(57504, 'https://ror.org/053xtf838', 'en', 1, 'https://ror.org/053xtf838 Mendocino Coast District Hospital'),
(57505, 'https://ror.org/003c3g222', 'en', 1, 'https://ror.org/003c3g222 Mental Research Institute'),
(57506, 'https://ror.org/01x3y4k69', 'en', 1, 'https://ror.org/01x3y4k69 Kalamazoo Psychiatric Hospital'),
(57507, 'https://ror.org/05m94vg70', 'en', 1, 'https://ror.org/05m94vg70 National Association of Home Builders'),
(57508, 'https://ror.org/048ga6v20', 'en', 1, 'https://ror.org/048ga6v20 Mesa Public Schools'),
(57509, 'https://ror.org/01axx9y09', 'en', 1, 'https://ror.org/01axx9y09 Kawaiisu Language and Cultural Center'),
(57510, 'https://ror.org/039xvf459', 'en', 1, 'https://ror.org/039xvf459 Kentucky Department of Revenue'),
(57511, 'https://ror.org/00be8q935', 'en', 1, 'https://ror.org/00be8q935 National Board for Professional Teaching Standards'),
(57512, 'https://ror.org/043jpam45', 'en', 1, 'https://ror.org/043jpam45 Keystone Initiative for Network Based Education and Research'),
(57513, 'https://ror.org/05bw8dc26', 'en', 1, 'https://ror.org/05bw8dc26 Newfound Harbor Marine Institute'),
(57514, 'https://ror.org/00w8p4b22', 'en', 1, 'https://ror.org/00w8p4b22 Peoria Hospital'),
(57515, 'https://ror.org/041x9ee87', 'no_lang_code', 1, 'https://ror.org/041x9ee87 Klar Scientific (United States)'),
(57516, 'https://ror.org/01ecxwt20', 'en', 1, 'https://ror.org/01ecxwt20 Center for Teaching Thinking'),
(57517, 'https://ror.org/01ehh4g09', 'en', 1, 'https://ror.org/01ehh4g09 Metropolitan Washington Council of Governments'),
(57518, 'https://ror.org/03sbhxr82', 'en', 1, 'https://ror.org/03sbhxr82 Mid-Pacific Institute'),
(57519, 'https://ror.org/00kk4ng10', 'en', 1, 'https://ror.org/00kk4ng10 The Institute for Advanced Physics'),
(57520, 'https://ror.org/01kr18419', 'en', 1, 'https://ror.org/01kr18419 Middle East Institute'),
(57521, 'https://ror.org/05jr0p734', 'en', 1, 'https://ror.org/05jr0p734 Joint Interoperability Test Command'),
(57522, 'https://ror.org/04vs51a50', 'en', 1, 'https://ror.org/04vs51a50 Midtown Educational Foundation'),
(57523, 'https://ror.org/00nyscn52', 'en', 1, 'https://ror.org/00nyscn52 National Council for Advanced Manufacturing'),
(57524, 'https://ror.org/02jddhc12', 'en', 1, 'https://ror.org/02jddhc12 Laguna Research'),
(57525, 'https://ror.org/03r4phk79', 'en', 1, 'https://ror.org/03r4phk79 Land Information Access Association'),
(57526, 'https://ror.org/00cjqwv82', 'en', 1, 'https://ror.org/00cjqwv82 Minnesota''s Private Colleges'),
(57527, 'https://ror.org/014gzk937', 'en', 1, 'https://ror.org/014gzk937 Langley Porter Psychiatric Hospital and Clinics'),
(57528, 'https://ror.org/0580n4369', 'en', 1, 'https://ror.org/0580n4369 Minnesota Science Teachers Association'),
(57529, 'https://ror.org/03jykpa72', 'en', 1, 'https://ror.org/03jykpa72 National Congress of American Indians'),
(57530, 'https://ror.org/03jm9y996', 'en', 1, 'https://ror.org/03jm9y996 Lawrence Semiconductor Research Laboratory'),
(57531, 'https://ror.org/012n40c33', 'en', 1, 'https://ror.org/012n40c33 Mississippi Museum of Natural Science'),
(57532, 'https://ror.org/03p2pvt93', 'en', 1, 'https://ror.org/03p2pvt93 National Council on Crime and Delinquency'),
(57533, 'https://ror.org/00nv0e804', 'en', 1, 'https://ror.org/00nv0e804 Nebraska Council on Economic Education'),
(57534, 'https://ror.org/04vs52k24', 'en', 1, 'https://ror.org/04vs52k24 Legacy International'),
(57535, 'https://ror.org/00g7amd04', 'en', 1, 'https://ror.org/00g7amd04 Missouri Academy of Science'),
(57536, 'https://ror.org/05sf78r66', 'en', 1, 'https://ror.org/05sf78r66 Organizations Concerned About Rural Education'),
(57537, 'https://ror.org/05e0am895', 'en', 1, 'https://ror.org/05e0am895 Mobile Area Education Foundation'),
(57538, 'https://ror.org/01mj0ma27', 'en', 1, 'https://ror.org/01mj0ma27 Orlando Science Center'),
(57539, 'https://ror.org/05ne0js61', 'en', 1, 'https://ror.org/05ne0js61 Modoc County Office of Education'),
(57540, 'https://ror.org/04ex7c508', 'en', 1, 'https://ror.org/04ex7c508 Oshkosh Public Museum'),
(57541, 'https://ror.org/05rpe4a45', 'en', 1, 'https://ror.org/05rpe4a45 Nebraska State College System'),
(57542, 'https://ror.org/0211h1012', 'en', 1, 'https://ror.org/0211h1012 GC Media'),
(57543, 'https://ror.org/03rjqyx74', 'en', 1, 'https://ror.org/03rjqyx74 Montana Science Teachers Association'),
(57544, 'https://ror.org/03p03fd83', 'en', 1, 'https://ror.org/03p03fd83 Montgomery Botanical Center'),
(57545, 'https://ror.org/017g1tr52', 'en', 1, 'https://ror.org/017g1tr52 Morrison Tech'),
(57546, 'https://ror.org/02hbjq124', 'no_lang_code', 1, 'https://ror.org/02hbjq124 Network Foundation Technologies (United States)'),
(57547, 'https://ror.org/0290cy459', 'no_lang_code', 1, 'https://ror.org/0290cy459 Motion Scientific (United States)'),
(57548, 'https://ror.org/05712eb04', 'en', 1, 'https://ror.org/05712eb04 Pacific Sociological Association'),
(57549, 'https://ror.org/056jvp908', 'en', 1, 'https://ror.org/056jvp908 Nebraska Independent College Foundation'),
(57550, 'https://ror.org/03vvy2n47', 'en', 1, 'https://ror.org/03vvy2n47 Mountain Studies Institute'),
(57551, 'https://ror.org/02f3qjz81', 'en', 1, 'https://ror.org/02f3qjz81 PaleoCultural Research Group'),
(57552, 'https://ror.org/01zzpzt34', 'en', 1, 'https://ror.org/01zzpzt34 RNA Society'),
(57553, 'https://ror.org/006wckc26', 'en', 1, 'https://ror.org/006wckc26 Neutron Scattering Society of America'),
(57554, 'https://ror.org/030gep771', 'en', 1, 'https://ror.org/030gep771 Roanoke-Chowan Community College'),
(57555, 'https://ror.org/05htm1j67', 'en', 1, 'https://ror.org/05htm1j67 National Gardening Association'),
(57556, 'https://ror.org/01w36fb33', 'it', 1, 'https://ror.org/01w36fb33 Agenzia Sanitaria e Sociale Regionale'),
(57557, 'https://ror.org/00ks0x650', 'en', 1, 'https://ror.org/00ks0x650 Neville Public Museum'),
(57558, 'https://ror.org/03anfar33', 'en', 1, 'https://ror.org/03anfar33 Rocky Mountain Institute'),
(57559, 'https://ror.org/01vjv9396', 'en', 1, 'https://ror.org/01vjv9396 Virginia Living Museum'),
(57560, 'https://ror.org/00xy72355', 'en', 1, 'https://ror.org/00xy72355 Rocky Mountain School of Expeditionary Learning'),
(57561, 'https://ror.org/04hfn2h85', 'en', 1, 'https://ror.org/04hfn2h85 National Health Council'),
(57562, 'https://ror.org/00yeqdq24', 'en', 1, 'https://ror.org/00yeqdq24 Center for Aquatic Sciences'),
(57563, 'https://ror.org/03jp2xz10', 'en', 1, 'https://ror.org/03jp2xz10 Intercultural Center for Research in Education'),
(57564, 'https://ror.org/01tdq4v27', 'en', 1, 'https://ror.org/01tdq4v27 RUTE Foundations'),
(57565, 'https://ror.org/01cs7w326', 'en', 1, 'https://ror.org/01cs7w326 NTL Institute for Applied Behavioral Science'),
(57566, 'https://ror.org/051nkwd95', 'en', 1, 'https://ror.org/051nkwd95 New Renaissance Institute'),
(57567, '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'),
(57568, 'https://ror.org/041b88186', 'en', 1, 'https://ror.org/041b88186 Intercultural Development Research Association'),
(57569, 'https://ror.org/039ngxv93', 'en', 1, 'https://ror.org/039ngxv93 Saginaw Chippewa Tribal College'),
(57570, 'https://ror.org/03exkkm57', 'no_lang_code', 1, 'https://ror.org/03exkkm57 Polaris Research and Development (United States)'),
(57571, 'https://ror.org/03nkqys97', 'en', 1, 'https://ror.org/03nkqys97 New York City Police Department'),
(57572, 'https://ror.org/024hyfk31', 'en', 1, 'https://ror.org/024hyfk31 Polish Institute of Arts and Sciences of America'),
(57573, 'https://ror.org/05mphpp98', 'en', 1, 'https://ror.org/05mphpp98 Saint Mary''s School'),
(57574, 'https://ror.org/01d7a8h40', 'en', 1, 'https://ror.org/01d7a8h40 NewPath Research'),
(57575, 'https://ror.org/05q2w8v63', 'en', 1, 'https://ror.org/05q2w8v63 Salvadori Center'),
(57576, 'https://ror.org/01xhd2w58', 'no_lang_code', 1, 'https://ror.org/01xhd2w58 Prescient Surgical (United States)'),
(57577, 'https://ror.org/032h4fk17', 'en', 1, 'https://ror.org/032h4fk17 San Francisco Zoo'),
(57578, 'https://ror.org/02r0j1w74', 'en', 1, 'https://ror.org/02r0j1w74 Program Support Center'),
(57579, 'https://ror.org/02qa68339', 'en', 1, 'https://ror.org/02qa68339 National Parks Conservation Association'),
(57580, 'https://ror.org/010tc4s75', 'en', 1, 'https://ror.org/010tc4s75 Sanibel-Captiva Conservation Foundation'),
(57581, 'https://ror.org/003y38f74', 'en', 1, 'https://ror.org/003y38f74 National Recreation and Park Association'),
(57582, 'https://ror.org/02dyt2y09', 'en', 1, 'https://ror.org/02dyt2y09 Public Laboratory for Open Technology and Science'),
(57583, 'https://ror.org/05be8g764', 'en', 1, 'https://ror.org/05be8g764 Public Responsibility in Medicine and Research'),
(57584, 'https://ror.org/039fmvr98', 'en', 1, 'https://ror.org/039fmvr98 Southwestern Vermont Health Care'),
(57585, 'https://ror.org/020mhtx24', 'en', 1, 'https://ror.org/020mhtx24 Southeast Career Technical Academy'),
(57586, 'https://ror.org/056w6an22', 'en', 1, 'https://ror.org/056w6an22 North Carolina Department of Administration'),
(57587, 'https://ror.org/02wwqa894', 'en', 1, 'https://ror.org/02wwqa894 Central Carolina Technical College'),
(57588, 'https://ror.org/02ewxar05', 'en', 1, 'https://ror.org/02ewxar05 School for Field Studies'),
(57589, 'https://ror.org/04xj4zj95', 'en', 1, 'https://ror.org/04xj4zj95 Southeast Tech'),
(57590, 'https://ror.org/01r2vqh34', 'en', 1, 'https://ror.org/01r2vqh34 North Carolina Office of the Governor'),
(57591, 'https://ror.org/03h9qwy97', 'en', 1, 'https://ror.org/03h9qwy97 Southeastern Regional Education Service Center'),
(57592, 'https://ror.org/02zvcx647', 'en', 1, 'https://ror.org/02zvcx647 Science Club'),
(57593, 'https://ror.org/00kh9dy12', 'en', 1, 'https://ror.org/00kh9dy12 Science Museum of Western Virginia'),
(57594, 'https://ror.org/004xnky59', 'en', 1, 'https://ror.org/004xnky59 Science Museum of Virginia'),
(57595, 'https://ror.org/05gb36730', 'en', 1, 'https://ror.org/05gb36730 Levin Institute'),
(57596, 'https://ror.org/02wsg8t40', 'en', 1, 'https://ror.org/02wsg8t40 Scientists Center for Animal Welfare'),
(57597, 'https://ror.org/00szg4x05', 'en', 1, 'https://ror.org/00szg4x05 Technology Student Association'),
(57598, 'https://ror.org/01vw8ee97', 'en', 1, 'https://ror.org/01vw8ee97 Rhode Island Department of Elementary and Secondary Education'),
(57599, 'https://ror.org/0370kn134', 'en', 1, 'https://ror.org/0370kn134 Southwest Center for Educational Excellence'),
(57600, 'https://ror.org/0598gge11', 'en', 1, 'https://ror.org/0598gge11 Ridgewater College'),
(57601, 'https://ror.org/03cr9cq69', 'no_lang_code', 1, 'https://ror.org/03cr9cq69 Rivanna Medical (United States)'),
(57602, 'https://ror.org/045znsy82', 'en', 1, 'https://ror.org/045znsy82 River Valley Community College'),
(57603, 'https://ror.org/03vnp0789', 'en', 1, 'https://ror.org/03vnp0789 Siskiyou County Office of Education'),
(57604, 'https://ror.org/03hx4df17', 'en', 1, 'https://ror.org/03hx4df17 Instructional Research Group'),
(57605, 'https://ror.org/04bt3ez84', 'no_lang_code', 1, 'https://ror.org/04bt3ez84 SmalTec International (United States)'),
(57606, 'https://ror.org/01xpn7z95', 'en', 1, 'https://ror.org/01xpn7z95 Sustainable Horizons Institute'),
(57607, 'https://ror.org/03nawys62', 'en', 1, 'https://ror.org/03nawys62 Thorne Nature Experience'),
(57608, 'https://ror.org/05t04rb70', 'en', 1, 'https://ror.org/05t04rb70 National Consumer Law Center'),
(57609, 'https://ror.org/03ggp5v59', 'en', 1, 'https://ror.org/03ggp5v59 Society For Applied Spectroscopy'),
(57610, 'https://ror.org/02gx2rj64', 'en', 1, 'https://ror.org/02gx2rj64 Tahoe Regional Planning Agency'),
(57611, 'https://ror.org/004ehjz87', 'en', 1, 'https://ror.org/004ehjz87 Society for Biomaterials'),
(57612, 'https://ror.org/042z8c185', 'en', 1, 'https://ror.org/042z8c185 Tarkio College'),
(57613, 'https://ror.org/003s9de04', 'en', 1, 'https://ror.org/003s9de04 TMT Observatory'),
(57614, 'https://ror.org/053pqt666', 'en', 1, 'https://ror.org/053pqt666 Society for Modeling and Simulation International'),
(57615, 'https://ror.org/006ab0n43', 'en', 1, 'https://ror.org/006ab0n43 Community Frameworks'),
(57616, 'https://ror.org/052farg34', 'en', 1, 'https://ror.org/052farg34 Trenholm State Community College'),
(57617, 'https://ror.org/04wx5ek40', 'en', 1, 'https://ror.org/04wx5ek40 Tau Beta Pi Association'),
(57618, 'https://ror.org/01q3wpv10', 'en', 1, 'https://ror.org/01q3wpv10 St. Mark''s School of Texas'),
(57619, 'https://ror.org/01bbdh545', 'en', 1, 'https://ror.org/01bbdh545 The Nurture Nature Foundation'),
(57620, 'https://ror.org/034hg1w33', 'en', 1, 'https://ror.org/034hg1w33 Tribal Nations Research Group'),
(57621, 'https://ror.org/00h2dy637', 'en', 1, 'https://ror.org/00h2dy637 Teachers Development Group'),
(57622, 'https://ror.org/053t8d971', 'en', 1, 'https://ror.org/053t8d971 Teaching Channel'),
(57623, 'https://ror.org/03574zr06', 'en', 1, 'https://ror.org/03574zr06 Ocean Institute'),
(57624, 'https://ror.org/02vf9n064', 'en', 1, 'https://ror.org/02vf9n064 Oceanic Research Group'),
(57625, 'https://ror.org/029hj0c48', 'en', 1, 'https://ror.org/029hj0c48 Space Foundation'),
(57626, 'https://ror.org/048sptm58', 'en', 1, 'https://ror.org/048sptm58 OCTANE FOUNDATION'),
(57627, 'https://ror.org/00xma8d72', 'en', 1, 'https://ror.org/00xma8d72 Stonewall Learning Center'),
(57628, 'https://ror.org/00qedn974', 'en', 1, 'https://ror.org/00qedn974 Strategic Education Research Partnership'),
(57629, 'https://ror.org/046df5t56', 'en', 1, 'https://ror.org/046df5t56 U.S. Space and Rocket Center'),
(57630, 'https://ror.org/02wq0c278', 'en', 1, 'https://ror.org/02wq0c278 Success for All Foundation'),
(57631, 'https://ror.org/00hygje57', 'en', 1, 'https://ror.org/00hygje57 Undersea and Hyperbaric Medical Society'),
(57632, 'https://ror.org/01093dx30', 'en', 1, 'https://ror.org/01093dx30 Urban Land Institute'),
(57633, 'https://ror.org/02c3t8t42', 'en', 1, 'https://ror.org/02c3t8t42 West Virginia Research Technology Park'),
(57634, 'https://ror.org/049hac046', 'en', 1, 'https://ror.org/049hac046 Oklahoma State Regents for Higher Education'),
(57635, 'https://ror.org/019164h44', 'en', 1, 'https://ror.org/019164h44 OSU-University Multispectral Laboratories'),
(57636, 'https://ror.org/02q1t6t25', 'en', 1, 'https://ror.org/02q1t6t25 Usenix Association'),
(57637, 'https://ror.org/04phz6672', 'en', 1, 'https://ror.org/04phz6672 Old Colorado City Historical Society'),
(57638, 'https://ror.org/05k8f3f74', 'en', 1, 'https://ror.org/05k8f3f74 Utah Society for Environmental Education'),
(57639, 'https://ror.org/02q3wwm43', 'en', 1, 'https://ror.org/02q3wwm43 Telluride Science Research Center'),
(57640, 'https://ror.org/05dweaz25', 'en', 1, 'https://ror.org/05dweaz25 Vision Education and Media'),
(57641, 'https://ror.org/04mqvep70', 'en', 1, 'https://ror.org/04mqvep70 Orange County Department of Education'),
(57642, 'https://ror.org/0151kez15', 'en', 1, 'https://ror.org/0151kez15 United Negro College Fund'),
(57643, 'https://ror.org/02abmp507', 'en', 1, 'https://ror.org/02abmp507 United States Postal Service Office of Inspector General'),
(57644, 'https://ror.org/05262w896', 'en', 1, 'https://ror.org/05262w896 US Virtual Astronomical Observatory'),
(57645, 'https://ror.org/02jf05b83', 'en', 1, 'https://ror.org/02jf05b83 The 21st Century Partnership for STEM Education'),
(57646, 'https://ror.org/001smqx66', 'no_lang_code', 1, 'https://ror.org/001smqx66 ZSX Medical (United States)'),
(57647, 'https://ror.org/00kc1k067', 'en', 1, 'https://ror.org/00kc1k067 The White Oak Institute'),
(57648, 'https://ror.org/04ngsnt90', 'en', 1, 'https://ror.org/04ngsnt90 The Baum Foundation'),
(57649, 'https://ror.org/05syayg48', 'en', 1, 'https://ror.org/05syayg48 Wyoming Outdoor Council'),
(57650, 'https://ror.org/04kqymn96', 'en', 1, 'https://ror.org/04kqymn96 Wild Salmon Center'),
(57651, 'https://ror.org/02v8jq558', 'en', 1, 'https://ror.org/02v8jq558 Xerces Society'),
(57652, 'https://ror.org/02rhspt79', 'en', 1, 'https://ror.org/02rhspt79 University of Hawaii Maui College'),
(57653, 'https://ror.org/05gjj8523', 'en', 1, 'https://ror.org/05gjj8523 Yellowstone Forever'),
(57654, 'https://ror.org/041twma66', 'en', 1, 'https://ror.org/041twma66 Science Factory'),
(57655, 'https://ror.org/03kqtp318', 'en', 1, 'https://ror.org/03kqtp318 BioBricks Foundation'),
(57656, 'https://ror.org/058s7pp59', 'en', 1, 'https://ror.org/058s7pp59 Northcentral Arkansas Education Cooperative'),
(57657, 'https://ror.org/03qx3mk66', 'en', 1, 'https://ror.org/03qx3mk66 New York City Foundation for Computer Science Education'),
(57658, 'https://ror.org/05je0gs16', 'en', 1, 'https://ror.org/05je0gs16 San Diego Archaeological Center'),
(57659, 'https://ror.org/05mavg897', 'en', 1, 'https://ror.org/05mavg897 Society for Organizational Learning'),
(57660, 'https://ror.org/056npsb07', 'en', 1, 'https://ror.org/056npsb07 Union City Public Schools'),
(57661, 'https://ror.org/02rzjbv15', 'en', 1, 'https://ror.org/02rzjbv15 Virtual Reality Medical Center'),
(57662, 'https://ror.org/00cdkww69', 'en', 1, 'https://ror.org/00cdkww69 Williamsburg Technical College'),
(57663, 'https://ror.org/028vbzs83', 'en', 1, 'https://ror.org/028vbzs83 Children’s Museum of Houston'),
(57664, 'https://ror.org/025c18611', 'en', 1, 'https://ror.org/025c18611 Wildlands Network'),
(57665, 'https://ror.org/03xx7rp81', 'en', 1, 'https://ror.org/03xx7rp81 Council for Adult and Experiential Learning'),
(57666, 'https://ror.org/04qb91x19', 'en', 1, 'https://ror.org/04qb91x19 Latin School of Chicago'),
(57667, 'https://ror.org/01yjps198', 'en', 1, 'https://ror.org/01yjps198 Long Now Foundation'),
(57668, 'https://ror.org/04s679e90', 'en', 1, 'https://ror.org/04s679e90 Western Foundation of Vertebrate Zoology'),
(57669, 'https://ror.org/014n97p37', 'en', 1, 'https://ror.org/014n97p37 Wisconsin Legislative Council'),
(57670, 'https://ror.org/00mks2g63', 'en', 1, 'https://ror.org/00mks2g63 Foundation for Human Potential'),
(57671, 'https://ror.org/01m9n6c96', 'en', 1, 'https://ror.org/01m9n6c96 National Science & Technology Education Partnership'),
(57672, 'https://ror.org/04sy1dy83', 'en', 1, 'https://ror.org/04sy1dy83 West Virginia Network'),
(57673, 'https://ror.org/00ame3479', 'en', 1, 'https://ror.org/00ame3479 Work Opportunity Center'),
(57674, 'https://ror.org/008nyfh72', 'en', 1, 'https://ror.org/008nyfh72 World Future Society'),
(57675, 'https://ror.org/003bxg127', 'en', 1, 'https://ror.org/003bxg127 Whitaker Center for Science and the Arts'),
(57676, 'https://ror.org/05g7jpw53', 'no_lang_code', 1, 'https://ror.org/05g7jpw53 Cory Laboratories'),
(57677, 'https://ror.org/00j6ana21', 'no_lang_code', 1, 'https://ror.org/00j6ana21 Abcombi Biosciences (United States)'),
(57678, 'https://ror.org/047bx1161', 'no_lang_code', 1, 'https://ror.org/047bx1161 Alaska Biological Research (United States)'),
(57679, 'https://ror.org/01mkr0b50', 'no_lang_code', 1, 'https://ror.org/01mkr0b50 InsightFinder (United States)'),
(57680, 'https://ror.org/00jtqvs23', 'en', 1, 'https://ror.org/00jtqvs23 Fraser Research'),
(57681, 'https://ror.org/02xpekp13', 'en', 1, 'https://ror.org/02xpekp13 Community Living'),
(57682, 'https://ror.org/01cbsja09', 'no_lang_code', 1, 'https://ror.org/01cbsja09 Acadia Harvest (United States)'),
(57683, 'https://ror.org/0518w2v98', 'en', 1, 'https://ror.org/0518w2v98 Benjamin Banneker Association'),
(57684, 'https://ror.org/04sv8h433', 'no_lang_code', 1, 'https://ror.org/04sv8h433 Activated Research Company (United States)'),
(57685, 'https://ror.org/025222y07', 'en', 1, 'https://ror.org/025222y07 Council of the Inspectors General on Integrity and Efficiency'),
(57686, 'https://ror.org/02dhsf930', 'no_lang_code', 1, 'https://ror.org/02dhsf930 CSD Nano (United States)'),
(57687, 'https://ror.org/02r0j7m07', 'en', 1, 'https://ror.org/02r0j7m07 Addiction Research Foundation'),
(57688, 'https://ror.org/05ye26511', 'no_lang_code', 1, 'https://ror.org/05ye26511 TechSolve (United States)'),
(57689, 'https://ror.org/0073whr05', 'no_lang_code', 1, 'https://ror.org/0073whr05 Fujitsu (United States)'),
(57690, 'https://ror.org/05kkspf37', 'en', 1, 'https://ror.org/05kkspf37 CueThink'),
(57691, 'https://ror.org/007jwqb84', 'en', 1, 'https://ror.org/007jwqb84 French River Education Center'),
(57692, 'https://ror.org/0082g5x07', 'en', 1, 'https://ror.org/0082g5x07 Better Education Inc'),
(57693, 'https://ror.org/032y37w70', 'en', 1, 'https://ror.org/032y37w70 American Distance Education Consortium'),
(57694, 'https://ror.org/05hzdqf47', 'en', 1, 'https://ror.org/05hzdqf47 Adirondack Area Network'),
(57695, 'https://ror.org/03qb61g53', 'no_lang_code', 1, 'https://ror.org/03qb61g53 Adnoviv (United States)'),
(57696, 'https://ror.org/028jtth96', 'en', 1, 'https://ror.org/028jtth96 Intelecom Learning'),
(57697, 'https://ror.org/02he45g63', 'en', 1, 'https://ror.org/02he45g63 Discovery Center of Idaho'),
(57698, 'https://ror.org/02zcey775', 'en', 1, 'https://ror.org/02zcey775 Bijhem Scientific'),
(57699, 'https://ror.org/02z7cqw59', 'no_lang_code', 1, 'https://ror.org/02z7cqw59 Inter-Mountain Laboratories (United States)'),
(57700, 'https://ror.org/008e4jj26', 'en', 1, 'https://ror.org/008e4jj26 Delaware Valley Industrial Resource Center'),
(57701, 'https://ror.org/02nqpk824', 'no_lang_code', 1, 'https://ror.org/02nqpk824 Advantageous Systems (United States)'),
(57702, 'https://ror.org/01mz87517', 'no_lang_code', 1, 'https://ror.org/01mz87517 BioInspira (United States)'),
(57703, 'https://ror.org/02tg91795', 'en', 1, 'https://ror.org/02tg91795 Aegean Conferences'),
(57704, 'https://ror.org/021m7am85', 'no_lang_code', 1, 'https://ror.org/021m7am85 BioMat Sciences (United States)'),
(57705, 'https://ror.org/05xet3f85', 'en', 1, 'https://ror.org/05xet3f85 Interlochen Center for the Arts'),
(57706, 'https://ror.org/04j7z5d67', 'no_lang_code', 1, 'https://ror.org/04j7z5d67 Aerospace Testing (United States)'),
(57707, 'https://ror.org/03taj9579', 'en', 1, 'https://ror.org/03taj9579 East Bay Consortium of Educational Institutions'),
(57708, 'https://ror.org/01hfvmc98', 'no_lang_code', 1, 'https://ror.org/01hfvmc98 Akervall Technologies (United States)'),
(57709, 'https://ror.org/0003h1s51', 'en', 1, 'https://ror.org/0003h1s51 International Adsorption Society'),
(57710, 'https://ror.org/04shda628', 'no_lang_code', 1, 'https://ror.org/04shda628 Biorasis (United States)'),
(57711, 'https://ror.org/02nrkmk47', 'no_lang_code', 1, 'https://ror.org/02nrkmk47 Edison Agrosciences (United States)'),
(57712, 'https://ror.org/02dc84z12', 'en', 1, 'https://ror.org/02dc84z12 International Archaeological Research Institute'),
(57713, 'https://ror.org/00fpjmb27', 'en', 1, 'https://ror.org/00fpjmb27 Alignment Nashville'),
(57714, 'https://ror.org/05ma3wj87', 'no_lang_code', 1, 'https://ror.org/05ma3wj87 Genoverde Biosciences (United States)'),
(57715, 'https://ror.org/0362ndm62', 'en', 1, 'https://ror.org/0362ndm62 Educational Media Resources'),
(57716, 'https://ror.org/00zkc0z81', 'no_lang_code', 1, 'https://ror.org/00zkc0z81 SteelCloud (United States)'),
(57717, 'https://ror.org/05f6hbt77', 'no_lang_code', 1, 'https://ror.org/05f6hbt77 AmebaGone (United States)'),
(57718, 'https://ror.org/042xens09', 'no_lang_code', 1, 'https://ror.org/042xens09 BiotecEra (United States)'),
(57719, 'https://ror.org/04j2nkn49', 'no_lang_code', 1, 'https://ror.org/04j2nkn49 Educational Solutions (United States)'),
(57720, 'https://ror.org/02tpd3k28', 'no_lang_code', 1, 'https://ror.org/02tpd3k28 IntellADAPT (United States)'),
(57721, 'https://ror.org/012729810', 'no_lang_code', 1, 'https://ror.org/012729810 GeoEngineers (United States)'),
(57722, 'https://ror.org/03wh2ff79', 'no_lang_code', 1, 'https://ror.org/03wh2ff79 International Isotopes (United States)'),
(57723, 'https://ror.org/046n2mh17', 'no_lang_code', 1, 'https://ror.org/046n2mh17 Electrocon International (United States)'),
(57724, 'https://ror.org/02sy4cy69', 'en', 1, 'https://ror.org/02sy4cy69 Palynological Society'),
(57725, 'https://ror.org/01wvkcg78', 'en', 1, 'https://ror.org/01wvkcg78 Eli Whitney Museum'),
(57726, 'https://ror.org/006zme475', 'no_lang_code', 1, 'https://ror.org/006zme475 Embedded Research Solutions (United States)'),
(57727, 'https://ror.org/05kjrdd45', 'no_lang_code', 1, 'https://ror.org/05kjrdd45 Enable Biosciences (United States)'),
(57728, 'https://ror.org/054khgx03', 'en', 1, 'https://ror.org/054khgx03 International Science and Technology Institute'),
(57729, 'https://ror.org/0055vz979', 'no_lang_code', 1, 'https://ror.org/0055vz979 Glauconix (United States)'),
(57730, 'https://ror.org/05gdr4s75', 'en', 1, 'https://ror.org/05gdr4s75 Amerind Museum'),
(57731, 'https://ror.org/05bt97174', 'no_lang_code', 1, 'https://ror.org/05bt97174 enEvolv (United States)'),
(57732, 'https://ror.org/02627jy68', 'no_lang_code', 1, 'https://ror.org/02627jy68 Amriton (United States)'),
(57733, 'https://ror.org/02b9nqj69', 'no_lang_code', 1, 'https://ror.org/02b9nqj69 Bluewater International (United States)'),
(57734, 'https://ror.org/01x6mgf32', 'no_lang_code', 1, 'https://ror.org/01x6mgf32 Anchor Science (United States)'),
(57735, 'https://ror.org/00qrpbx56', 'en', 1, 'https://ror.org/00qrpbx56 Angstron Materials (United States)'),
(57736, 'https://ror.org/00vc9tk32', 'en', 1, 'https://ror.org/00vc9tk32 Inuit Circumpolar Council'),
(57737, 'https://ror.org/01tsmdw03', 'no_lang_code', 1, 'https://ror.org/01tsmdw03 Equinosis (United States)'),
(57738, 'https://ror.org/0079d7396', 'no_lang_code', 1, 'https://ror.org/0079d7396 Bountiful Applied Research Corporation (United States)'),
(57739, 'https://ror.org/05bfdfr32', 'en', 1, 'https://ror.org/05bfdfr32 Anoka-Hennepin School District'),
(57740, 'https://ror.org/05wcjxp35', 'no_lang_code', 1, 'https://ror.org/05wcjxp35 Great Minds in STEM (United States)'),
(57741, 'https://ror.org/05v8dvy39', 'no_lang_code', 1, 'https://ror.org/05v8dvy39 Essentium Materials (United States)'),
(57742, 'https://ror.org/01583x474', 'no_lang_code', 1, 'https://ror.org/01583x474 Invictus Medical (United States)'),
(57743, 'https://ror.org/03edzye91', 'no_lang_code', 1, 'https://ror.org/03edzye91 Apama Medical (United States)'),
(57744, 'https://ror.org/00fg6ww52', 'no_lang_code', 1, 'https://ror.org/00fg6ww52 Buck Research Instruments (United States)'),
(57745, 'https://ror.org/00evne535', 'no_lang_code', 1, 'https://ror.org/00evne535 Apollo Medical Devices (United States)'),
(57746, 'https://ror.org/00tpyts80', 'no_lang_code', 1, 'https://ror.org/00tpyts80 H-Tech Laboratories (United States)'),
(57747, 'https://ror.org/00d435084', 'no_lang_code', 1, 'https://ror.org/00d435084 Factory Physics (United States)'),
(57748, 'https://ror.org/031wqxd08', 'no_lang_code', 1, 'https://ror.org/031wqxd08 IONEX Research Corporation (United States)'),
(57749, 'https://ror.org/04fdxtz57', 'no_lang_code', 1, 'https://ror.org/04fdxtz57 Far Eastern Shipping (United States)'),
(57750, 'https://ror.org/03srr7476', 'en', 1, 'https://ror.org/03srr7476 Iridescent'),
(57751, 'https://ror.org/054a8d283', 'no_lang_code', 1, 'https://ror.org/054a8d283 Applied LifeSciences & Systems (United States)'),
(57752, 'https://ror.org/02hptfp27', 'no_lang_code', 1, 'https://ror.org/02hptfp27 Caduceus Intelligence Corporation (United States)'),
(57753, 'https://ror.org/01903zs91', 'no_lang_code', 1, 'https://ror.org/01903zs91 iSono Health (United States)'),
(57754, 'https://ror.org/04ft4my53', 'no_lang_code', 1, 'https://ror.org/04ft4my53 Filament Games (United States)'),
(57755, 'https://ror.org/04ade1b90', 'en', 1, 'https://ror.org/04ade1b90 Calista Education and Culture'),
(57756, 'https://ror.org/02d750026', 'no_lang_code', 1, 'https://ror.org/02d750026 Fossil Energy Research (United States)'),
(57757, 'https://ror.org/01df9n019', 'no_lang_code', 1, 'https://ror.org/01df9n019 Applied Science Associates (United States)'),
(57758, 'https://ror.org/0301h9a14', 'no_lang_code', 1, 'https://ror.org/0301h9a14 AppScale (United States)'),
(57759, 'https://ror.org/01fsv3111', 'no_lang_code', 1, 'https://ror.org/01fsv3111 Health Fidelity (United States)'),
(57760, 'https://ror.org/04r7wpm53', 'no_lang_code', 1, 'https://ror.org/04r7wpm53 HealthMyne (United States)'),
(57761, 'https://ror.org/03w26j609', 'no_lang_code', 1, 'https://ror.org/03w26j609 Cardiac Motion (United States)'),
(57762, 'https://ror.org/0012k7s49', 'en', 1, 'https://ror.org/0012k7s49 Apri Health'),
(57763, 'https://ror.org/050hmr449', 'en', 1, 'https://ror.org/050hmr449 Jackson Hole Wildlife Film Festival'),
(57764, 'https://ror.org/05rezdz06', 'no_lang_code', 1, 'https://ror.org/05rezdz06 Heat Transfer Research & Development (United States)'),
(57765, 'https://ror.org/04z76wj11', 'no_lang_code', 1, 'https://ror.org/04z76wj11 Caribou Biosciences (United States)'),
(57766, 'https://ror.org/05tb20n61', 'no_lang_code', 1, 'https://ror.org/05tb20n61 AquaMatrix International (United States)'),
(57767, 'https://ror.org/015xqq593', 'no_lang_code', 1, 'https://ror.org/015xqq593 Heat Transfer Research (United States)'),
(57768, 'https://ror.org/02evzb864', 'en', 1, 'https://ror.org/02evzb864 JES & Co'),
(57769, 'https://ror.org/01jt2k297', 'no_lang_code', 1, 'https://ror.org/01jt2k297 MaxQ (United States)');
INSERT INTO `rors` VALUES
(57770, 'https://ror.org/03188nr56', 'no_lang_code', 1, 'https://ror.org/03188nr56 Heavystone Laboratory (United States)'),
(57771, 'https://ror.org/03znth086', 'no_lang_code', 1, 'https://ror.org/03znth086 Carthago International Solutions (United States)'),
(57772, 'https://ror.org/0305w4x35', 'no_lang_code', 1, 'https://ror.org/0305w4x35 Art & Science Productions (United States)'),
(57773, 'https://ror.org/00ddrsv17', 'no_lang_code', 1, 'https://ror.org/00ddrsv17 Splitvane Engineers (United States)'),
(57774, 'https://ror.org/04a2d1y86', 'no_lang_code', 1, 'https://ror.org/04a2d1y86 Media Health Technologies (United States)'),
(57775, 'https://ror.org/042qe4k74', 'no_lang_code', 1, 'https://ror.org/042qe4k74 OESH Shoes (United States)'),
(57776, 'https://ror.org/021ayq160', 'no_lang_code', 1, 'https://ror.org/021ayq160 Arytha Biosciences (United States)'),
(57777, 'https://ror.org/00ettzs98', 'no_lang_code', 1, 'https://ror.org/00ettzs98 Ascent Bio-Nano Technologies (United States)'),
(57778, 'https://ror.org/0261z1079', 'en', 1, 'https://ror.org/0261z1079 Joint Educational Facilities'),
(57779, 'https://ror.org/04v2xy120', 'no_lang_code', 1, 'https://ror.org/04v2xy120 Higher Education Services (United States)'),
(57780, 'https://ror.org/04d7j1v83', 'no_lang_code', 1, 'https://ror.org/04d7j1v83 CCI Reprographics (United States)'),
(57781, 'https://ror.org/01nb8yv40', 'no_lang_code', 1, 'https://ror.org/01nb8yv40 Histogen (United States)'),
(57782, 'https://ror.org/00vcp8875', 'no_lang_code', 1, 'https://ror.org/00vcp8875 Mental Canvas (United States)'),
(57783, 'https://ror.org/025zg9b48', 'en', 1, 'https://ror.org/025zg9b48 Asset Stem Education'),
(57784, 'https://ror.org/053y21h59', 'no_lang_code', 1, 'https://ror.org/053y21h59 Metcut Research (United States)'),
(57785, 'https://ror.org/02zsjtp80', 'en', 1, 'https://ror.org/02zsjtp80 Associated Scientists at Woods Hole'),
(57786, 'https://ror.org/02v8ews69', 'no_lang_code', 1, 'https://ror.org/02v8ews69 Mid Michigan Research (United States)'),
(57787, 'https://ror.org/02xrnet37', 'no_lang_code', 1, 'https://ror.org/02xrnet37 Horizon Communications (United States)'),
(57788, 'https://ror.org/00xx1nv47', 'en', 1, 'https://ror.org/00xx1nv47 K2 Communications'),
(57789, 'https://ror.org/051k3ba49', 'no_lang_code', 1, 'https://ror.org/051k3ba49 Minnesota HealthSolutions (United States)'),
(57790, 'https://ror.org/038vwxf79', 'no_lang_code', 1, 'https://ror.org/038vwxf79 Miromatrix Medical (United States)'),
(57791, 'https://ror.org/01p4er784', 'en', 1, 'https://ror.org/01p4er784 Kawerak'),
(57792, 'https://ror.org/04kf58w92', 'en', 1, 'https://ror.org/04kf58w92 Autonomous Healthcare'),
(57793, 'https://ror.org/05ekyck71', 'no_lang_code', 1, 'https://ror.org/05ekyck71 KelaHealth (United States)'),
(57794, 'https://ror.org/036erhh43', 'no_lang_code', 1, 'https://ror.org/036erhh43 Chemsultants International (United States)'),
(57795, 'https://ror.org/05dd14b17', 'no_lang_code', 1, 'https://ror.org/05dd14b17 Ketron Optimization (United States)'),
(57796, 'https://ror.org/00h7mt060', 'no_lang_code', 1, 'https://ror.org/00h7mt060 HXI (United States)'),
(57797, 'https://ror.org/05t3jtz40', 'en', 1, 'https://ror.org/05t3jtz40 Baltimore Symphony Orchestra'),
(57798, 'https://ror.org/05v0wb549', 'en', 1, 'https://ror.org/05v0wb549 Kieve-Wavus Education'),
(57799, 'https://ror.org/004q2nj38', 'no_lang_code', 1, 'https://ror.org/004q2nj38 Hobi Instrument Services (United States)'),
(57800, 'https://ror.org/037xt0e18', 'no_lang_code', 1, 'https://ror.org/037xt0e18 MSTM (United States)'),
(57801, 'https://ror.org/03q9ez861', 'en', 1, 'https://ror.org/03q9ez861 Minorities in Mathematics, Science & Engineering'),
(57802, 'https://ror.org/00vkg4j33', 'en', 1, 'https://ror.org/00vkg4j33 Kinema Research & Software'),
(57803, 'https://ror.org/01wrzk743', 'no_lang_code', 1, 'https://ror.org/01wrzk743 MTPV Power (United States)'),
(57804, 'https://ror.org/01yj5pp70', 'no_lang_code', 1, 'https://ror.org/01yj5pp70 BBC Worldwide (United States)'),
(57805, 'https://ror.org/03jya5r16', 'no_lang_code', 1, 'https://ror.org/03jya5r16 MultiModel Research (United States)'),
(57806, 'https://ror.org/01tcmg746', 'no_lang_code', 1, 'https://ror.org/01tcmg746 Knox Medical Diagnostics (United States)'),
(57807, 'https://ror.org/00a1kgg63', 'no_lang_code', 1, 'https://ror.org/00a1kgg63 ACR Electronics (United States)'),
(57808, 'https://ror.org/02xejyg29', 'no_lang_code', 1, 'https://ror.org/02xejyg29 Nano Hydrophobics (United States)'),
(57809, 'https://ror.org/016df8p53', 'en', 1, 'https://ror.org/016df8p53 Koliber Biosciences'),
(57810, 'https://ror.org/051r8dh72', 'no_lang_code', 1, 'https://ror.org/051r8dh72 Nano3D Biosciences (United States)'),
(57811, 'https://ror.org/04ejqwk94', 'en', 1, 'https://ror.org/04ejqwk94 Ocean Research & Conservation Association'),
(57812, 'https://ror.org/00y0as388', 'no_lang_code', 1, 'https://ror.org/00y0as388 NanoAffix Science (United States)'),
(57813, 'https://ror.org/00mvezj69', 'no_lang_code', 1, 'https://ror.org/00mvezj69 Odorcept (United States)'),
(57814, 'https://ror.org/04c1q3311', 'no_lang_code', 1, 'https://ror.org/04c1q3311 NanoSynth Materials and Sensors (United States)'),
(57815, 'https://ror.org/02c2ejr08', 'en', 1, 'https://ror.org/02c2ejr08 National Black Graduate Student Association'),
(57816, 'https://ror.org/014a78w41', 'no_lang_code', 1, 'https://ror.org/014a78w41 Ideum (United States)'),
(57817, 'https://ror.org/04s8yyn61', 'en', 1, 'https://ror.org/04s8yyn61 National Committee on United States China Relations'),
(57818, 'https://ror.org/036k9cx83', 'en', 1, 'https://ror.org/036k9cx83 Las Vegas Academy of the Arts'),
(57819, 'https://ror.org/051jvhq51', 'no_lang_code', 1, 'https://ror.org/051jvhq51 Imbed Biosciences (United States)'),
(57820, 'https://ror.org/040s1e839', 'no_lang_code', 1, 'https://ror.org/040s1e839 Launchpad Central (United States)'),
(57821, 'https://ror.org/002kney35', 'no_lang_code', 1, 'https://ror.org/002kney35 Optical Polymer Research (United States)'),
(57822, 'https://ror.org/055ryq086', 'no_lang_code', 1, 'https://ror.org/055ryq086 TRC Companies (United States)'),
(57823, 'https://ror.org/01ywgyp97', 'no_lang_code', 1, 'https://ror.org/01ywgyp97 Independence Science (United States)'),
(57824, 'https://ror.org/038gq7z31', 'en', 1, 'https://ror.org/038gq7z31 Navajo Language Academy'),
(57825, 'https://ror.org/02c0af132', 'en', 1, 'https://ror.org/02c0af132 Indiana State Museum'),
(57826, 'https://ror.org/01yh14f85', 'no_lang_code', 1, 'https://ror.org/01yh14f85 OtoNexus Medical Technologies (United States)'),
(57827, 'https://ror.org/052ycjw90', 'en', 1, 'https://ror.org/052ycjw90 Corporation for Research and Educational Networking'),
(57828, 'https://ror.org/012x9fa64', 'no_lang_code', 1, 'https://ror.org/012x9fa64 NeuraMedica (United States)'),
(57829, 'https://ror.org/0365qmq92', 'no_lang_code', 1, 'https://ror.org/0365qmq92 Lena Biosciences (United States)'),
(57830, 'https://ror.org/02g2dv858', 'en', 1, 'https://ror.org/02g2dv858 New England Council'),
(57831, 'https://ror.org/03d4teb38', 'no_lang_code', 1, 'https://ror.org/03d4teb38 Infinitesimal (United States)'),
(57832, 'https://ror.org/047xpay52', 'no_lang_code', 1, 'https://ror.org/047xpay52 PAX Scientific (United States)'),
(57833, 'https://ror.org/05069qg36', 'no_lang_code', 1, 'https://ror.org/05069qg36 Infinity HealthCare (United States)'),
(57834, 'https://ror.org/03a5ewm40', 'no_lang_code', 1, 'https://ror.org/03a5ewm40 Rao Research and Consulting (United States)'),
(57835, 'https://ror.org/02fgqtv27', 'no_lang_code', 1, 'https://ror.org/02fgqtv27 LighTopTech (United States)'),
(57836, 'https://ror.org/02w74ad83', 'no_lang_code', 1, 'https://ror.org/02w74ad83 Nexmatix (United States)'),
(57837, 'https://ror.org/02g7z3v47', 'no_lang_code', 1, 'https://ror.org/02g7z3v47 List Biological Laboratories (United States)'),
(57838, 'https://ror.org/05r52pz56', 'no_lang_code', 1, 'https://ror.org/05r52pz56 Ratrix Technologies (United States)'),
(57839, 'https://ror.org/05baejf18', 'no_lang_code', 1, 'https://ror.org/05baejf18 PhylloTech (United States)'),
(57840, 'https://ror.org/00fr16483', 'no_lang_code', 1, 'https://ror.org/00fr16483 Leighton (United States)'),
(57841, 'https://ror.org/01nsm8h24', 'no_lang_code', 1, 'https://ror.org/01nsm8h24 Physical Devices (United States)'),
(57842, 'https://ror.org/03qm3c405', 'no_lang_code', 1, 'https://ror.org/03qm3c405 TerraFly (United States)'),
(57843, 'https://ror.org/05whcgs91', 'no_lang_code', 1, 'https://ror.org/05whcgs91 Picosense (United States)'),
(57844, 'https://ror.org/0134vhg32', 'en', 1, 'https://ror.org/0134vhg32 Haitian American Community Development Corporation'),
(57845, 'https://ror.org/04k175063', 'en', 1, 'https://ror.org/04k175063 Nona Research Foundation'),
(57846, 'https://ror.org/05fep0t76', 'no_lang_code', 1, 'https://ror.org/05fep0t76 LogicMill Technology (United States)'),
(57847, 'https://ror.org/03pjrzs58', 'no_lang_code', 1, 'https://ror.org/03pjrzs58 Pioneer Valley Books (United States)'),
(57848, 'https://ror.org/0501ptv55', 'no_lang_code', 1, 'https://ror.org/0501ptv55 nView Medical (United States)'),
(57849, 'https://ror.org/04cznqd05', 'en', 1, 'https://ror.org/04cznqd05 O’Donnell Associates'),
(57850, 'https://ror.org/03vjak553', 'no_lang_code', 1, 'https://ror.org/03vjak553 Plymouth Grating Laboratory (United States)'),
(57851, 'https://ror.org/05akv3y05', 'en', 1, 'https://ror.org/05akv3y05 National Association of Conservation Districts'),
(57852, 'https://ror.org/03zbwg385', 'no_lang_code', 1, 'https://ror.org/03zbwg385 Lumenware (United States)'),
(57853, 'https://ror.org/01d34f369', 'no_lang_code', 1, 'https://ror.org/01d34f369 Polnox (United States)'),
(57854, 'https://ror.org/00kzjzm37', 'no_lang_code', 1, 'https://ror.org/00kzjzm37 Brainly (United States)'),
(57855, 'https://ror.org/00nkq5n66', 'no_lang_code', 1, 'https://ror.org/00nkq5n66 Solinas Medical (United States)'),
(57856, 'https://ror.org/039ng5344', 'en', 1, 'https://ror.org/039ng5344 LXD Research & Display'),
(57857, 'https://ror.org/00evjez55', 'no_lang_code', 1, 'https://ror.org/00evjez55 Tethys Research (United States)'),
(57858, 'https://ror.org/05f6zz720', 'no_lang_code', 1, 'https://ror.org/05f6zz720 SolRayo (United States)'),
(57859, 'https://ror.org/01vwxjv55', 'no_lang_code', 1, 'https://ror.org/01vwxjv55 Prevail Health Solutions (United States)'),
(57860, 'https://ror.org/03e4xsk06', 'no_lang_code', 1, 'https://ror.org/03e4xsk06 Thalchemy (United States)'),
(57861, 'https://ror.org/00qahme67', 'no_lang_code', 1, 'https://ror.org/00qahme67 McCormick Environmental (United States)'),
(57862, 'https://ror.org/023mmvm94', 'no_lang_code', 1, 'https://ror.org/023mmvm94 Occipital (United States)'),
(57863, 'https://ror.org/01a0k3v66', 'no_lang_code', 1, 'https://ror.org/01a0k3v66 SonoVol (United States)'),
(57864, 'https://ror.org/04jey9359', 'no_lang_code', 1, 'https://ror.org/04jey9359 M4 Sciences (United States)'),
(57865, 'https://ror.org/05w7fem48', 'en', 1, 'https://ror.org/05w7fem48 South Bronx Overall Economic Development'),
(57866, 'https://ror.org/02bjfq514', 'no_lang_code', 1, 'https://ror.org/02bjfq514 MAA Laboratories (United States)'),
(57867, 'https://ror.org/0071kdv81', 'no_lang_code', 1, 'https://ror.org/0071kdv81 Chedd Angier Production (United States)'),
(57868, 'https://ror.org/01jtjrm75', 'no_lang_code', 1, 'https://ror.org/01jtjrm75 Provivi (United States)'),
(57869, 'https://ror.org/00ftkzk68', 'en', 1, 'https://ror.org/00ftkzk68 Children’s Museum of Atlanta'),
(57870, 'https://ror.org/000b1qx78', 'no_lang_code', 1, 'https://ror.org/000b1qx78 Revolution Research'),
(57871, 'https://ror.org/0154h5d61', 'no_lang_code', 1, 'https://ror.org/0154h5d61 Proximity Biosciences (United States)'),
(57872, 'https://ror.org/05sjtd719', 'en', 1, 'https://ror.org/05sjtd719 Southern Oregon Public Television'),
(57873, 'https://ror.org/04gckzn88', 'no_lang_code', 1, 'https://ror.org/04gckzn88 PuraCath Medical (United States)'),
(57874, 'https://ror.org/03mg8fc79', 'no_lang_code', 1, 'https://ror.org/03mg8fc79 Fred Rogers (United States)'),
(57875, 'https://ror.org/01jeebd83', 'en', 1, 'https://ror.org/01jeebd83 Rochester Engineering Society'),
(57876, 'https://ror.org/00f3p5990', 'no_lang_code', 1, 'https://ror.org/00f3p5990 Pyrochem Catalyst Company (United States)'),
(57877, 'https://ror.org/01tzn5f02', 'no_lang_code', 1, 'https://ror.org/01tzn5f02 Spectral MD (United States)'),
(57878, 'https://ror.org/03k57wy12', 'no_lang_code', 1, 'https://ror.org/03k57wy12 VesselTek Biomedical (United States)'),
(57879, 'https://ror.org/04vxvsq82', 'no_lang_code', 1, 'https://ror.org/04vxvsq82 Spectrum Research (United States)'),
(57880, 'https://ror.org/0108f5051', 'no_lang_code', 1, 'https://ror.org/0108f5051 Video Collaboratory (United States)'),
(57881, 'https://ror.org/03sp3a378', 'no_lang_code', 1, 'https://ror.org/03sp3a378 Expedeon (United States)'),
(57882, 'https://ror.org/02ffpzw40', 'no_lang_code', 1, 'https://ror.org/02ffpzw40 Spectrum Scientific (United States)'),
(57883, 'https://ror.org/00aw4mh72', 'no_lang_code', 1, 'https://ror.org/00aw4mh72 Madison Group (United States)'),
(57884, 'https://ror.org/053kqnj57', 'no_lang_code', 1, 'https://ror.org/053kqnj57 SpringActive (United States)'),
(57885, 'https://ror.org/03bvvfk64', 'no_lang_code', 1, 'https://ror.org/03bvvfk64 Quintara Biosciences (United States)'),
(57886, 'https://ror.org/0149vtr75', 'en', 1, 'https://ror.org/0149vtr75 Virginia Cooperative Extension'),
(57887, 'https://ror.org/011h51195', 'no_lang_code', 1, 'https://ror.org/011h51195 StabiLux Biosciences (United States)'),
(57888, 'https://ror.org/01m3r9s26', 'en', 1, 'https://ror.org/01m3r9s26 The Tor Project'),
(57889, 'https://ror.org/029fxva34', 'no_lang_code', 1, 'https://ror.org/029fxva34 Virta Laboratories (United States)'),
(57890, 'https://ror.org/000rhcj53', 'en', 1, 'https://ror.org/000rhcj53 Rainbow Research'),
(57891, 'https://ror.org/00485nf12', 'no_lang_code', 1, 'https://ror.org/00485nf12 TheBeamer (United States)'),
(57892, 'https://ror.org/009mmg508', 'no_lang_code', 1, 'https://ror.org/009mmg508 Vistex Composites (United States)'),
(57893, 'https://ror.org/05enva623', 'en', 1, 'https://ror.org/05enva623 Stark Education Partnership'),
(57894, 'https://ror.org/05r7sx321', 'en', 1, 'https://ror.org/05r7sx321 Workit Health'),
(57895, 'https://ror.org/041mscx66', 'no_lang_code', 1, 'https://ror.org/041mscx66 Vortex Hydro Energy (United States)'),
(57896, 'https://ror.org/00abcs339', 'no_lang_code', 1, 'https://ror.org/00abcs339 Stasys Medical (United States)'),
(57897, 'https://ror.org/01wzg5e03', 'no_lang_code', 1, 'https://ror.org/01wzg5e03 Topasol (United States)'),
(57898, 'https://ror.org/043emz428', 'en', 1, 'https://ror.org/043emz428 Institute for Science and Human Values'),
(57899, 'https://ror.org/005ebyb46', 'no_lang_code', 1, 'https://ror.org/005ebyb46 TutorGen (United States)'),
(57900, 'https://ror.org/00p24wc27', 'no_lang_code', 1, 'https://ror.org/00p24wc27 Zenwa (United States)'),
(57901, 'https://ror.org/05340km55', 'no_lang_code', 1, 'https://ror.org/05340km55 Sterling International (United States)'),
(57902, 'https://ror.org/03c9gd523', 'no_lang_code', 1, 'https://ror.org/03c9gd523 Yosemite International Consultants (United States)'),
(57903, 'https://ror.org/05jy2cf97', 'en', 1, 'https://ror.org/05jy2cf97 Science Center of Pinellas'),
(57904, 'https://ror.org/04kyvt253', 'no_lang_code', 1, 'https://ror.org/04kyvt253 ZeroUI (United States)'),
(57905, 'https://ror.org/0555sjc23', 'no_lang_code', 1, 'https://ror.org/0555sjc23 Universal Dialog (United States)'),
(57906, 'https://ror.org/010p8p018', 'en', 1, 'https://ror.org/010p8p018 Zoo Miami'),
(57907, 'https://ror.org/04fgkvt12', 'no_lang_code', 1, 'https://ror.org/04fgkvt12 ScienceMedia (United States)'),
(57908, 'https://ror.org/05kd3hv35', 'no_lang_code', 1, 'https://ror.org/05kd3hv35 V&R Energy Systems Research (United States)'),
(57909, 'https://ror.org/04jx2gq17', 'en', 1, 'https://ror.org/04jx2gq17 zyBooks'),
(57910, 'https://ror.org/01f80h865', 'no_lang_code', 1, 'https://ror.org/01f80h865 Varigen Biosciences (United States)'),
(57911, 'https://ror.org/02wj4f624', 'no_lang_code', 1, 'https://ror.org/02wj4f624 Scientific Imaging and Visualization (United States)'),
(57912, 'https://ror.org/05g1qrw85', 'no_lang_code', 1, 'https://ror.org/05g1qrw85 Yes Technologies (United States)'),
(57913, 'https://ror.org/04tsbxb91', 'no_lang_code', 1, 'https://ror.org/04tsbxb91 TAO Connect (United States)'),
(57914, 'https://ror.org/01kd1b507', 'no_lang_code', 1, 'https://ror.org/01kd1b507 Sunstream Scientific (United States)'),
(57915, 'https://ror.org/03faca780', 'no_lang_code', 1, 'https://ror.org/03faca780 Screenscope (United States)'),
(57916, 'https://ror.org/001d7gs74', 'no_lang_code', 1, 'https://ror.org/001d7gs74 DDC-I (United States)'),
(57917, 'https://ror.org/02zxj2k87', 'no_lang_code', 1, 'https://ror.org/02zxj2k87 Finn Partners (United States)'),
(57918, 'https://ror.org/04v7c9d77', 'no_lang_code', 1, 'https://ror.org/04v7c9d77 SoundRocket (United States)'),
(57919, 'https://ror.org/03j64fn02', 'no_lang_code', 1, 'https://ror.org/03j64fn02 MacKichan Software (United States)'),
(57920, 'https://ror.org/03ga0ws30', 'no_lang_code', 1, 'https://ror.org/03ga0ws30 Seismic Isolation Engineering (United States)'),
(57921, 'https://ror.org/0089jr070', 'en', 1, 'https://ror.org/0089jr070 Techbridge (United States)'),
(57922, 'https://ror.org/04h92e089', 'no_lang_code', 1, 'https://ror.org/04h92e089 Sintact Medical Systems (United States)'),
(57923, 'https://ror.org/02feh5a48', 'no_lang_code', 1, 'https://ror.org/02feh5a48 SHINE Medical Technologies (United States)'),
(57924, 'https://ror.org/03bd5dw30', 'no_lang_code', 1, 'https://ror.org/03bd5dw30 T3 Scientific (United States)'),
(57925, 'https://ror.org/05gz5te09', 'no_lang_code', 1, 'https://ror.org/05gz5te09 Sepragen Corporation (United States)'),
(57926, 'https://ror.org/013jg8087', 'no_lang_code', 1, 'https://ror.org/013jg8087 Solarmer Energy (United States)'),
(57927, 'https://ror.org/05fxqy444', 'no_lang_code', 1, 'https://ror.org/05fxqy444 Solarno (United States)'),
(57928, 'https://ror.org/01rdp0h57', 'en', 1, 'https://ror.org/01rdp0h57 Gansu Provincial Agriculture and Animal Husbandry'),
(57929, 'https://ror.org/01kfnjv17', 'en', 1, 'https://ror.org/01kfnjv17 Kunming Metallurgical Research Institute ę˜†ę˜Žå†¶é‡‘ē ”ē©¶ę‰€'),
(57930, 'https://ror.org/04nqrq322', 'en', 1, 'https://ror.org/04nqrq322 Shenzhen Entry-Exit Inspection and Quarantine Bureau'),
(57931, 'https://ror.org/04vqtes97', 'en', 1, 'https://ror.org/04vqtes97 Creedmoor Psychiatric Center'),
(57932, 'https://ror.org/04bymxx89', 'en', 1, 'https://ror.org/04bymxx89 Anhui and Huaihe River Institute of Hydraulic Research å®‰å¾½ēœę°“åˆ©éƒØę·®å§”ę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(57933, 'https://ror.org/03pkj2z67', 'en', 1, 'https://ror.org/03pkj2z67 Lanzhou Petrochemical Polytechnic å…°å·žēŸ³åŒ–čŒäøšęŠ€ęœÆå­¦é™¢'),
(57934, 'https://ror.org/003ayef58', 'en', 1, 'https://ror.org/003ayef58 Beijing Academy of Social Sciences åŒ—äŗ¬åø‚ē¤¾ä¼šē§‘å­¦é™¢'),
(57935, 'https://ror.org/038w3gx54', 'en', 1, 'https://ror.org/038w3gx54 Marine Biology Institute of Shandong Province å±±äøœēœęµ·ę“‹ē”Ÿē‰©ē ”ē©¶é™¢ 地址'),
(57936, 'https://ror.org/02csejj07', 'en', 1, 'https://ror.org/02csejj07 Chinese People ''s Liberation Army No.455 Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬å››äŗ”äŗ”åŒ»é™¢'),
(57937, 'https://ror.org/04vmpyg44', 'en', 1, 'https://ror.org/04vmpyg44 Fujian Academy of Medical Sciences ē¦å»ŗēœåŒ»å­¦ē§‘å­¦é™¢'),
(57938, 'https://ror.org/04svmxd14', 'en', 1, 'https://ror.org/04svmxd14 Changzhi University 长治学院'),
(57939, 'https://ror.org/05901gg63', 'en', 1, 'https://ror.org/05901gg63 Chemical Industry Press åŒ–å­¦å·„äøšå‡ŗē‰ˆē¤¾'),
(57940, 'https://ror.org/04t69c375', 'en', 1, 'https://ror.org/04t69c375 Baoshan College 宝山学院'),
(57941, 'https://ror.org/041100z65', 'en', 1, 'https://ror.org/041100z65 State Radio Regulation Of China å›½å®¶ę— ēŗæē”µē›‘ęµ‹äø­åæƒ'),
(57942, 'https://ror.org/00wztsq19', 'en', 1, 'https://ror.org/00wztsq19 Qilu Normal University é½é²åøˆčŒƒå­¦é™¢'),
(57943, 'https://ror.org/00d6bjs95', 'en', 1, 'https://ror.org/00d6bjs95 China Guangzhou Analysis and Testing Center äø­å›½å¹æå·žåˆ†ęžęµ‹čÆ•äø­åæƒ'),
(57944, 'https://ror.org/00kr06185', 'en', 1, 'https://ror.org/00kr06185 China Institute of Electronics äø­å›½ē”µå­å­¦ä¼š'),
(57945, 'https://ror.org/02h3k6w11', 'en', 1, 'https://ror.org/02h3k6w11 The Environmental Literacy Council'),
(57946, 'https://ror.org/0019sn611', 'en', 1, 'https://ror.org/0019sn611 Planning and Conservation League'),
(57947, 'https://ror.org/02rsv1244', 'en', 1, 'https://ror.org/02rsv1244 Gansu Research Academy of Forestry Science and Technology ē”˜č‚ƒęž—äøšē§‘ęŠ€ē ”ē©¶é™¢'),
(57948, 'https://ror.org/050ct8k07', 'en', 1, 'https://ror.org/050ct8k07 Beijing Institute of Labor Protection Science åŒ—äŗ¬åø‚åŠ³åŠØäæęŠ¤ē§‘å­¦ē ”ē©¶ę‰€'),
(57949, 'https://ror.org/02160gj87', 'en', 1, 'https://ror.org/02160gj87 Shaanxi Blood Center é™•č„æēœč”€ę¶²äø­åæƒ'),
(57950, 'https://ror.org/03cxfcq46', 'en', 1, 'https://ror.org/03cxfcq46 Beijing Urban Systems Engineering Research Center åŒ—äŗ¬åŸŽåø‚ē³»ē»Ÿå·„ēØ‹ē ”ē©¶äø­åæƒ'),
(57951, 'https://ror.org/059b2sn04', 'no_lang_code', 1, 'https://ror.org/059b2sn04 Guangdong Inspection and Quarantine Technology Center (China)'),
(57952, 'https://ror.org/04qkqhe87', 'en', 1, 'https://ror.org/04qkqhe87 Shandong Binzhou Pasturage Veterinary Academy å±±äøœēœę»Øå·žē•œē‰§å…½åŒ»ē ”ē©¶é™¢'),
(57953, 'https://ror.org/01qtkgt88', 'en', 1, 'https://ror.org/01qtkgt88 Beijing Municipal Commission of Urban Planning åŒ—äŗ¬åø‚č§„åˆ’å’Œå›½åœŸčµ„ęŗē®”ē†å§”å‘˜ä¼š'),
(57954, 'https://ror.org/01tqkhn82', 'en', 1, 'https://ror.org/01tqkhn82 Shandong Entry-Exit Inspection and Quarantine Bureau å±±äøœå‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(57955, 'https://ror.org/01v11cc68', 'en', 1, 'https://ror.org/01v11cc68 Tianjin International Joint Academy of Biomedicine å¤©ę“„å›½é™…č”åˆē”Ÿē‰©åŒ»å­¦ē ”ē©¶ę‰€'),
(57956, 'https://ror.org/01b2j5886', 'en', 1, 'https://ror.org/01b2j5886 Shandong University of Political Science and Law å±±äøœę”æę³•å­¦é™¢'),
(57957, 'https://ror.org/03rjzr314', 'en', 1, 'https://ror.org/03rjzr314 Guangdong Provincial Academy of Environmental Science'),
(57958, 'https://ror.org/00qhrkk71', 'en', 1, 'https://ror.org/00qhrkk71 Shandong Yingcai University å±±äøœč‹±ę‰å­¦é™¢'),
(57959, 'https://ror.org/032gz0g45', 'en', 1, 'https://ror.org/032gz0g45 Shanghai Entry-Exit Inspection and Quarantine Bureau äøŠęµ·å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(57960, 'https://ror.org/01gqah619', 'en', 1, 'https://ror.org/01gqah619 Guangxi Buffalo Research Institute'),
(57961, 'https://ror.org/00zcefp03', 'en', 1, 'https://ror.org/00zcefp03 Shanghai Institute of Measurement and Testing Technology äøŠęµ·ęµ‹é‡äøŽęµ‹čÆ•ęŠ€ęœÆē ”ē©¶ę‰€'),
(57962, 'https://ror.org/03dgcmw96', 'en', 1, 'https://ror.org/03dgcmw96 Yunnan Earthquake Prevention and Disaster Reduction äŗ‘å—ēœåœ°éœ‡å±€'),
(57963, 'https://ror.org/01xm48j65', 'en', 1, 'https://ror.org/01xm48j65 Shaanxi Provincial Seismological Bureau é™•č„æēœåœ°éœ‡å±€'),
(57964, 'https://ror.org/03haahd66', 'en', 1, 'https://ror.org/03haahd66 Environmental Protection Research Institute of Light Industry č½»å·„äøšēŽÆå¢ƒäæęŠ¤ē ”ē©¶ę‰€'),
(57965, 'https://ror.org/04xfd0826', 'en', 1, 'https://ror.org/04xfd0826 Shanghai Research Center for Wireless Communications äøŠęµ·ę— ēŗæé€šäæ”ē ”ē©¶äø­åæƒ'),
(57966, 'https://ror.org/02bjyz323', 'en', 1, 'https://ror.org/02bjyz323 Hebei University of Environmental Engineering ę²³åŒ—ēŽÆå¢ƒå·„ēØ‹å­¦é™¢'),
(57967, 'https://ror.org/02cejc171', 'en', 1, 'https://ror.org/02cejc171 Guangxi Normal University for Nationalities'),
(57968, 'https://ror.org/02490t938', 'en', 1, 'https://ror.org/02490t938 Sichuan Entry-Exit Inspection and Quarantine Bureau å››å·å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€ę£€éŖŒę£€ē–«ęŠ€ęœÆäø­åæƒ'),
(57969, 'https://ror.org/04hqa8c89', 'en', 1, 'https://ror.org/04hqa8c89 Gansu Qilian Mountains Water Conservation Forest Research Institute ē„čæžå±±ę°“ęŗę¶µå…»ęž—ē ”ē©¶é™¢'),
(57970, 'https://ror.org/01vcw4681', 'en', 1, 'https://ror.org/01vcw4681 Guangzhou Institute of Advanced Technology å¹æå·žäø­å›½ē§‘å­¦é™¢å…ˆčæ›ęŠ€ęœÆē ”ē©¶ę‰€'),
(57971, 'https://ror.org/041682e62', 'en', 1, 'https://ror.org/041682e62 Shenzhen Habitat Environment Committee ę·±åœ³åø‚äŗŗå±…ēŽÆå¢ƒå§”å‘˜ä¼š'),
(57972, 'https://ror.org/023xep540', 'en', 1, 'https://ror.org/023xep540 Qinghai Red Cross Hospital'),
(57973, 'https://ror.org/058wr8j84', 'en', 1, 'https://ror.org/058wr8j84 China Academy of Fiscal Science 中国蓢政科学研究院'),
(57974, 'https://ror.org/02r23w007', 'en', 1, 'https://ror.org/02r23w007 Xi''an Botanical Garden of Shaanxi Province é™•č„æč„æå®‰ę¤ē‰©å›­'),
(57975, 'https://ror.org/026a9y278', 'en', 1, 'https://ror.org/026a9y278 Guizhou Forestry Science Research Institute č“µå·žēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(57976, 'https://ror.org/04evm3p62', 'en', 1, 'https://ror.org/04evm3p62 Nanjing Product Quality Supervision and Inspection Institute'),
(57977, 'https://ror.org/0463yzy10', 'en', 1, 'https://ror.org/0463yzy10 Chongqing Population and Family Planning Science and Technology Research Institute é‡åŗ†åø‚äŗŗå£å’Œč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(57978, 'https://ror.org/05x9nc097', 'en', 1, 'https://ror.org/05x9nc097 Xiamen Maternal and Child Health Hospital åŽ¦é—Øå¦‡å¹¼äæå„é™¢'),
(57979, 'https://ror.org/041drfb04', 'en', 1, 'https://ror.org/041drfb04 Fruit Research Institute å¹æäøœēœå†œäøšē§‘å­¦é™¢ęžœę ‘ē ”ē©¶ę‰€'),
(57980, 'https://ror.org/03pentr35', 'en', 1, 'https://ror.org/03pentr35 Wuhan Applied Science and Technology School ę­¦ę±‰åŗ”ē”Øē§‘ęŠ€å­¦é™¢'),
(57981, 'https://ror.org/00c11v577', 'en', 1, 'https://ror.org/00c11v577 Rice Research Institute å¹æäøœēœå†œäøšē§‘å­¦é™¢ę°“ēØ»ē ”ē©¶ę‰€'),
(57982, 'https://ror.org/054dq1w53', 'en', 1, 'https://ror.org/054dq1w53 Sericulture and Agricultural Products Research Institute å¹æäøœēœå†œäøšē§‘å­¦é™¢čš•äøšäøŽå†œäŗ§å“åŠ å·„ē ”ē©¶ę‰€'),
(57983, 'https://ror.org/01n5xv175', 'en', 1, 'https://ror.org/01n5xv175 China Metallurgical Geology Bureau'),
(57984, 'https://ror.org/03gfeke93', 'en', 1, 'https://ror.org/03gfeke93 Guangdong Province Environmental Monitoring Center å¹æäøœēœēŽÆå¢ƒē›‘ęµ‹äø­åæƒ'),
(57985, 'https://ror.org/01qwf4k77', 'en', 1, 'https://ror.org/01qwf4k77 Jiangsu Province Blood Center ę±Ÿč‹ēœč”€ę¶²äø­åæƒ'),
(57986, 'https://ror.org/03cvc1094', 'en', 1, 'https://ror.org/03cvc1094 Jiangsu Provincial Academy of Environmental Science ę±Ÿč‹ēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(57987, 'https://ror.org/04m27xb90', 'en', 1, 'https://ror.org/04m27xb90 Jiangsu Provincial Quality Supervision and Inspection Institute'),
(57988, 'https://ror.org/01sbpdt14', 'en', 1, 'https://ror.org/01sbpdt14 Nanchang Normal University å—ę˜ŒåøˆčŒƒå­¦é™¢'),
(57989, 'https://ror.org/00at6yb56', 'en', 1, 'https://ror.org/00at6yb56 Jiangxi Province Soil and Water Conservation Science Research Institute ę±Ÿč„æēœę°“åœŸäæęŒē§‘å­¦ē ”ē©¶é™¢'),
(57990, 'https://ror.org/02xkaan08', 'en', 1, 'https://ror.org/02xkaan08 Jinan Municipal Environmental Protection Bureau ęµŽå—åø‚ēŽÆäæå±€'),
(57991, 'https://ror.org/05d0y1j25', 'en', 1, 'https://ror.org/05d0y1j25 Hubei Provincial Hospital of Integrative Medicine'),
(57992, 'https://ror.org/00yt18j75', 'en', 1, 'https://ror.org/00yt18j75 Animal Science Research Institute å¹æäøœēœå†œäøšē§‘å­¦é™¢åŠØē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(57993, 'https://ror.org/03r782805', 'en', 1, 'https://ror.org/03r782805 Danish Pain Research Center'),
(57994, 'https://ror.org/00px03f62', 'no_lang_code', 1, 'https://ror.org/00px03f62 Boehringer Ingelheim (Italy)'),
(57995, 'https://ror.org/04fh1gw55', 'no_lang_code', 1, 'https://ror.org/04fh1gw55 Boehringer Ingelheim (Netherlands)'),
(57996, 'https://ror.org/01v1pqp42', 'no_lang_code', 1, 'https://ror.org/01v1pqp42 Across (Spain)'),
(57997, 'https://ror.org/015k6vv14', 'no_lang_code', 1, 'https://ror.org/015k6vv14 Boehringer Ingelheim (Finland)'),
(57998, 'https://ror.org/04x8czz63', 'no_lang_code', 1, 'https://ror.org/04x8czz63 Bracco (Germany)'),
(57999, 'https://ror.org/02qbaz641', 'no_lang_code', 1, 'https://ror.org/02qbaz641 Luye Pharma (Switzerland)'),
(58000, 'https://ror.org/01pf0ts81', 'no_lang_code', 1, 'https://ror.org/01pf0ts81 Addex Therapeutics (Switzerland)'),
(58001, 'https://ror.org/014sv9994', 'en', 1, 'https://ror.org/014sv9994 Fujian Entry - Exit Inspection and Quarantine Bureau'),
(58002, 'https://ror.org/044mt4802', 'en', 1, 'https://ror.org/044mt4802 Central European Cooperative Oncology Group'),
(58003, 'https://ror.org/05r9t2t65', 'es', 1, 'https://ror.org/05r9t2t65 Fundación Teknon'),
(58004, 'https://ror.org/053qwyf63', 'no_lang_code', 1, 'https://ror.org/053qwyf63 Japan Tobacco (United States)'),
(58005, 'https://ror.org/00yggrf40', 'en', 1, 'https://ror.org/00yggrf40 Fondazione Italiana Sindromi Mielodisplastiche Italian Foundation of Myelodysplastic Syndromes'),
(58006, 'https://ror.org/05hkjyh45', 'no_lang_code', 1, 'https://ror.org/05hkjyh45 Alexion Pharma (Switzerland)'),
(58007, 'https://ror.org/04h6zzz03', 'no_lang_code', 1, 'https://ror.org/04h6zzz03 General Electric (Finland)'),
(58008, 'https://ror.org/04bharj65', 'no_lang_code', 1, 'https://ror.org/04bharj65 ALK-Abelló (Italy)'),
(58009, 'https://ror.org/05vtewd28', 'no_lang_code', 1, 'https://ror.org/05vtewd28 Chiasma (United States)'),
(58010, 'https://ror.org/04s4dtk79', 'no_lang_code', 1, 'https://ror.org/04s4dtk79 Mertiva (Sweden)'),
(58011, 'https://ror.org/013zs6k48', 'no_lang_code', 1, 'https://ror.org/013zs6k48 Immunogenics (United States)'),
(58012, 'https://ror.org/00xvtm334', 'no_lang_code', 1, 'https://ror.org/00xvtm334 Aqualis (Norway)'),
(58013, 'https://ror.org/0106jdf02', 'en', 1, 'https://ror.org/0106jdf02 The Lymphoma Academic Research Organisation'),
(58014, 'https://ror.org/02nkfan21', 'en', 1, 'https://ror.org/02nkfan21 Clinical Evaluation Research Unit'),
(58015, 'https://ror.org/03pejh002', 'no_lang_code', 1, 'https://ror.org/03pejh002 AMW (Germany)'),
(58016, 'https://ror.org/020j24g35', 'no_lang_code', 1, 'https://ror.org/020j24g35 Allergan (Netherlands)'),
(58017, 'https://ror.org/04jszep51', 'no_lang_code', 1, 'https://ror.org/04jszep51 Clinuvel Pharmaceuticals (Australia)'),
(58018, 'https://ror.org/03rmvk095', 'no_lang_code', 1, 'https://ror.org/03rmvk095 Genexine (South Korea)'),
(58019, 'https://ror.org/03zbwg482', 'no_lang_code', 1, 'https://ror.org/03zbwg482 Kowa (United States)'),
(58020, 'https://ror.org/05d0e9y67', 'no_lang_code', 1, 'https://ror.org/05d0e9y67 Eli Lilly (Italy)'),
(58021, 'https://ror.org/024fpfc76', 'no_lang_code', 1, 'https://ror.org/024fpfc76 CSL (Japan)'),
(58022, 'https://ror.org/01400tq86', 'no_lang_code', 1, 'https://ror.org/01400tq86 CSL (Switzerland)'),
(58023, 'https://ror.org/024w4dn76', 'no_lang_code', 1, 'https://ror.org/024w4dn76 GERCOR (France)'),
(58024, 'https://ror.org/01yac3k46', 'no_lang_code', 1, 'https://ror.org/01yac3k46 Engelhard Arzneimittel (Germany)'),
(58025, 'https://ror.org/0062ps924', 'no_lang_code', 1, 'https://ror.org/0062ps924 LABCATAL (France)'),
(58026, 'https://ror.org/049kvfv38', 'no_lang_code', 1, 'https://ror.org/049kvfv38 Daacro (Germany)'),
(58027, 'https://ror.org/04kej9b21', 'no_lang_code', 1, 'https://ror.org/04kej9b21 Ardeypharm (Germany)'),
(58028, 'https://ror.org/011nsnr29', 'no_lang_code', 1, 'https://ror.org/011nsnr29 LIDDS (Sweden)'),
(58029, 'https://ror.org/0291wkh90', 'no_lang_code', 1, 'https://ror.org/0291wkh90 Ethicare (Germany)'),
(58030, 'https://ror.org/05dh8ar36', 'no_lang_code', 1, 'https://ror.org/05dh8ar36 Gilead Sciences (Germany)'),
(58031, 'https://ror.org/02qacef07', 'no_lang_code', 1, 'https://ror.org/02qacef07 Gilead Sciences (Spain)'),
(58032, 'https://ror.org/03hxqcn24', 'no_lang_code', 1, 'https://ror.org/03hxqcn24 Gilead Sciences (Italy)'),
(58033, 'https://ror.org/045dptz13', 'en', 1, 'https://ror.org/045dptz13 Associazione QOL-ONE QOL-ONE Association'),
(58034, 'https://ror.org/04anq5q02', 'en', 1, 'https://ror.org/04anq5q02 Danish Multiple Sclerosis Center'),
(58035, 'https://ror.org/035n56j11', 'no_lang_code', 1, 'https://ror.org/035n56j11 AstraZeneca (Finland)'),
(58036, 'https://ror.org/04cd7aa36', 'no_lang_code', 1, 'https://ror.org/04cd7aa36 Farmaceutici Damor (Italy)'),
(58037, 'https://ror.org/03kphbm02', 'no_lang_code', 1, 'https://ror.org/03kphbm02 Lofarma (Italy)'),
(58038, 'https://ror.org/036zzh557', 'no_lang_code', 1, 'https://ror.org/036zzh557 Allergan (Canada)'),
(58039, 'https://ror.org/01jxkq910', 'no_lang_code', 1, 'https://ror.org/01jxkq910 Glaxosmithkline (Finland)'),
(58040, 'https://ror.org/01p9emh29', 'no_lang_code', 1, 'https://ror.org/01p9emh29 AXON Neuroscience (Cyprus)'),
(58041, 'https://ror.org/054df3r05', 'no_lang_code', 1, 'https://ror.org/054df3r05 GlaxoSmithKline (Sweden)'),
(58042, 'https://ror.org/04wt3vp12', 'no_lang_code', 1, 'https://ror.org/04wt3vp12 Roivant Sciences (Bermuda)'),
(58043, 'https://ror.org/046bcwj93', 'no_lang_code', 1, 'https://ror.org/046bcwj93 Associated Management Services (United States)'),
(58044, 'https://ror.org/01tvt4d48', 'no_lang_code', 1, 'https://ror.org/01tvt4d48 GlaxoSmithKline (India)'),
(58045, 'https://ror.org/029rf8d44', 'en', 1, 'https://ror.org/029rf8d44 Institut für Atemwegsforschung GmbH Respiratory Research Institute'),
(58046, 'https://ror.org/05xqrcz80', 'no_lang_code', 1, 'https://ror.org/05xqrcz80 Lundbeck (Italy)'),
(58047, 'https://ror.org/03ncmjy81', 'no_lang_code', 1, 'https://ror.org/03ncmjy81 Lusofarmaco (Italy)'),
(58048, 'https://ror.org/02j45y774', 'de', 1, 'https://ror.org/02j45y774 St. Hedwig-Krankenhaus'),
(58049, 'https://ror.org/00x56mf13', 'it', 1, 'https://ror.org/00x56mf13 Azienda Usl 8 Arezzo'),
(58050, 'https://ror.org/00xsr8926', 'fr', 1, 'https://ror.org/00xsr8926 Groupe d''Oncologie Radiothérapie Tête et Cou'),
(58051, 'https://ror.org/040dw4657', 'no_lang_code', 1, 'https://ror.org/040dw4657 Baxter (Belgium)'),
(58052, 'https://ror.org/02vpbac71', 'no_lang_code', 1, 'https://ror.org/02vpbac71 Bayer (Italy)'),
(58053, 'https://ror.org/01kkp5g91', 'es', 1, 'https://ror.org/01kkp5g91 Grupo Español de CÔncer de Pulmón'),
(58054, 'https://ror.org/02dq5y823', 'no_lang_code', 1, 'https://ror.org/02dq5y823 Bionorica (Austria)'),
(58055, 'https://ror.org/054m0e665', 'en', 1, 'https://ror.org/054m0e665 Grupo Español de Investigación en Sarcomas Spanish Research Group on Sarcomas'),
(58056, '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'),
(58057, 'https://ror.org/01g4e8585', 'en', 1, 'https://ror.org/01g4e8585 Andalusian Institute of Sexology and Psychology Instituto Andaluz de SexologĆ­a y PsicologĆ­a'),
(58058, 'https://ror.org/05mz4e808', 'no_lang_code', 1, 'https://ror.org/05mz4e808 N-Gene (United States)'),
(58059, 'https://ror.org/05taw7c97', 'no_lang_code', 1, 'https://ror.org/05taw7c97 NanoCarrier (Japan) ćƒŠćƒŽć‚­ćƒ£ćƒŖć‚¢ę Ŗå¼ä¼šē¤¾'),
(58060, 'https://ror.org/05p1s7a78', 'no_lang_code', 1, 'https://ror.org/05p1s7a78 Napp Pharmaceuticals (United Kingdom)'),
(58061, 'https://ror.org/04pp96p75', 'no_lang_code', 1, 'https://ror.org/04pp96p75 MediWound (Israel)'),
(58062, 'https://ror.org/00hj12c83', 'en', 1, 'https://ror.org/00hj12c83 Hammersmith Medicines Research'),
(58063, 'https://ror.org/0066zpp98', 'en', 1, 'https://ror.org/0066zpp98 Agricultural Genomics Institute at Shenzhen äø­å›½å†œäøšē§‘å­¦é™¢ę·±åœ³å†œäøšåŸŗå› ē»„ē ”ē©¶ę‰€'),
(58064, 'https://ror.org/013x1pp52', 'no_lang_code', 1, 'https://ror.org/013x1pp52 Hanmi Pharmaceutical (South Korea) ķ•œėÆøģ•½ķ’ˆ'),
(58065, 'https://ror.org/057w77e54', 'no_lang_code', 1, 'https://ror.org/057w77e54 Leo Pharma (United States)'),
(58066, 'https://ror.org/01k7ze855', 'no_lang_code', 1, 'https://ror.org/01k7ze855 Novasep (Belgium)'),
(58067, 'https://ror.org/055rf7657', 'no_lang_code', 1, 'https://ror.org/055rf7657 Roche (Sweden)'),
(58068, 'https://ror.org/02ta1jp69', 'no_lang_code', 1, 'https://ror.org/02ta1jp69 Roche (Hungary)'),
(58069, 'https://ror.org/00awvt671', 'no_lang_code', 1, 'https://ror.org/00awvt671 Roche (Finland)'),
(58070, 'https://ror.org/00f2tsn51', 'no_lang_code', 1, 'https://ror.org/00f2tsn51 Takeda (Italy)'),
(58071, 'https://ror.org/04qr62034', 'no_lang_code', 1, 'https://ror.org/04qr62034 Roche (Romania)'),
(58072, 'https://ror.org/01hyc1n91', 'no_lang_code', 1, 'https://ror.org/01hyc1n91 Roche (Czechia)'),
(58073, 'https://ror.org/04c5d0e65', 'no_lang_code', 1, 'https://ror.org/04c5d0e65 Minerva Neurosciences (United States)'),
(58074, 'https://ror.org/03nqfwv49', 'no_lang_code', 1, 'https://ror.org/03nqfwv49 IDEA (Germany)'),
(58075, 'https://ror.org/0441v1872', 'no_lang_code', 1, 'https://ror.org/0441v1872 Mipharm (Italy)'),
(58076, 'https://ror.org/02yq5yf84', 'no_lang_code', 1, 'https://ror.org/02yq5yf84 Morphotek (United States)'),
(58077, 'https://ror.org/058g8jq83', 'no_lang_code', 1, 'https://ror.org/058g8jq83 Sanofi (Brazil)'),
(58078, 'https://ror.org/040s9t622', 'no_lang_code', 1, 'https://ror.org/040s9t622 Novo Nordisk (Italy)'),
(58079, 'https://ror.org/0144enb05', 'no_lang_code', 1, 'https://ror.org/0144enb05 Novo Nordisk (Finland)'),
(58080, 'https://ror.org/053h97f78', 'no_lang_code', 1, 'https://ror.org/053h97f78 M’s Science Corporation (Japan)'),
(58081, 'https://ror.org/03n7jkz36', 'no_lang_code', 1, 'https://ror.org/03n7jkz36 Immunodiagnostic Systems (Denmark)'),
(58082, 'https://ror.org/00t52h563', 'no_lang_code', 1, 'https://ror.org/00t52h563 Luye Pharma (Germany)'),
(58083, 'https://ror.org/01mhc8r12', 'no_lang_code', 1, 'https://ror.org/01mhc8r12 Santen (Finland)'),
(58084, 'https://ror.org/01hzc1b78', 'en', 1, 'https://ror.org/01hzc1b78 Inamed'),
(58085, 'https://ror.org/00qsxq433', 'no_lang_code', 1, 'https://ror.org/00qsxq433 Santhera Pharmaceuticals (Switzerland)'),
(58086, 'https://ror.org/02mkrd102', 'no_lang_code', 1, 'https://ror.org/02mkrd102 Innovacell Biotechnologie (Austria)'),
(58087, 'https://ror.org/04dh3fc08', 'en', 1, 'https://ror.org/04dh3fc08 Office of the Secretary of Health and Human Services'),
(58088, 'https://ror.org/04p31sb09', 'no_lang_code', 1, 'https://ror.org/04p31sb09 Myovant Sciences (United States)'),
(58089, 'https://ror.org/03cmx5943', 'no_lang_code', 1, 'https://ror.org/03cmx5943 Bayer (Finland)'),
(58090, 'https://ror.org/026vbm280', 'no_lang_code', 1, 'https://ror.org/026vbm280 Theraclone Sciences (United States)'),
(58091, 'https://ror.org/02en9dz36', 'no_lang_code', 1, 'https://ror.org/02en9dz36 Valeas (Italy)'),
(58092, 'https://ror.org/05mrzft53', 'no_lang_code', 1, 'https://ror.org/05mrzft53 CSL (United Kingdom)'),
(58093, 'https://ror.org/02ww26h70', 'no_lang_code', 1, 'https://ror.org/02ww26h70 Shionogi (United States)'),
(58094, 'https://ror.org/04g1gk322', 'no_lang_code', 1, 'https://ror.org/04g1gk322 Pharmacosmos (Denmark)'),
(58095, 'https://ror.org/02w4b7q15', 'no_lang_code', 1, 'https://ror.org/02w4b7q15 Pharmaxis (United Kingdom)'),
(58096, 'https://ror.org/04x814r93', 'de', 1, 'https://ror.org/04x814r93 Vinforce'),
(58097, 'https://ror.org/030z9kz64', 'no_lang_code', 1, 'https://ror.org/030z9kz64 UCB Pharma (Japan) ćƒ¦ćƒ¼ć‚·ćƒ¼ćƒ“ćƒ¼ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(58098, 'https://ror.org/05q0wnh95', 'no_lang_code', 1, 'https://ror.org/05q0wnh95 Actigen (Denmark)'),
(58099, 'https://ror.org/018fcay07', 'no_lang_code', 1, 'https://ror.org/018fcay07 SLA Pharma (United Kingdom)'),
(58100, 'https://ror.org/048g8j049', 'no_lang_code', 1, 'https://ror.org/048g8j049 Oncoscience (Germany)'),
(58101, 'https://ror.org/04f3x2j17', 'no_lang_code', 1, 'https://ror.org/04f3x2j17 Sofar (Italy)'),
(58102, 'https://ror.org/02msncm75', 'no_lang_code', 1, 'https://ror.org/02msncm75 Zogenix (United Kingdom)'),
(58103, 'https://ror.org/02a7ejh44', 'no_lang_code', 1, 'https://ror.org/02a7ejh44 Stragen (France)'),
(58104, 'https://ror.org/05dhprc49', 'en', 1, 'https://ror.org/05dhprc49 Afeka College of Engineering אפקה - המכללה ×”××§×“×ž×™×Ŗ להנדהה ×‘×Ŗ×œ אביב'),
(58105, 'https://ror.org/044cwq841', 'de', 1, 'https://ror.org/044cwq841 AGO Austria'),
(58106, 'https://ror.org/03q33dp04', 'en', 1, 'https://ror.org/03q33dp04 Sichuan Provincial Hospital of Traditional Chinese Medicine å››å·ēœäø­åŒ»é™¢'),
(58107, 'https://ror.org/04zvdfd56', 'de', 1, 'https://ror.org/04zvdfd56 UniversitƤtszahnklinik Wien'),
(58108, 'https://ror.org/00qc9m834', 'en', 1, 'https://ror.org/00qc9m834 American College of Allergy, Asthma and Immunology'),
(58109, 'https://ror.org/03bpe7b73', 'en', 1, 'https://ror.org/03bpe7b73 American College of Nurse-Midwives'),
(58110, 'https://ror.org/00zb9ns77', 'en', 1, 'https://ror.org/00zb9ns77 American College of Phlebology'),
(58111, 'https://ror.org/0008ypy64', 'de', 1, 'https://ror.org/0008ypy64 BrustGesundheitZentrum Tirol'),
(58112, 'https://ror.org/058fx5466', 'en', 1, 'https://ror.org/058fx5466 University Radiology'),
(58113, 'https://ror.org/05nmdmf57', 'en', 1, 'https://ror.org/05nmdmf57 European Optical Society'),
(58114, 'https://ror.org/02n5pfm79', 'no_lang_code', 1, 'https://ror.org/02n5pfm79 Alfasigma (Italy)'),
(58115, 'https://ror.org/03waxp229', 'en', 1, 'https://ror.org/03waxp229 Acıbadem University Atakent Hospital'),
(58116, 'https://ror.org/03dw28302', 'en', 1, 'https://ror.org/03dw28302 BAU International University'),
(58117, 'https://ror.org/05fqhmm52', 'en', 1, 'https://ror.org/05fqhmm52 Chicago College of Oriental Medicine'),
(58118, 'https://ror.org/029zxzd20', 'en', 1, 'https://ror.org/029zxzd20 Antoni Jurasz University Hospital Szpital Uniwersytecki im. A. Jurasza'),
(58119, 'https://ror.org/04pj7f452', 'en', 1, 'https://ror.org/04pj7f452 Chirayu Medical College & Hospital'),
(58120, 'https://ror.org/05qf3bt68', 'fr', 1, 'https://ror.org/05qf3bt68 Centre Hospitalo-Universitaire Bab El Oued'),
(58121, 'https://ror.org/009fgen45', 'en', 1, 'https://ror.org/009fgen45 Chitwan Medical College'),
(58122, 'https://ror.org/05pz4ws32', 'en', 1, 'https://ror.org/05pz4ws32 Children''s Hospital of Chongqing Medical University'),
(58123, 'https://ror.org/036hbav43', 'en', 1, 'https://ror.org/036hbav43 Canadian College of Osteopathy'),
(58124, 'https://ror.org/03rk6g530', 'en', 1, 'https://ror.org/03rk6g530 Hospital Universitario HM Puerta del Sur University Hospital HM Puerta del Sur'),
(58125, 'https://ror.org/02ezjve56', 'en', 1, 'https://ror.org/02ezjve56 Canadian College of Massage and Hydrotherapy'),
(58126, 'https://ror.org/05165er51', 'en', 1, 'https://ror.org/05165er51 Danish College of General Practitioners Dansk Selskab for Almen Medicin'),
(58127, 'https://ror.org/00nmy1597', 'en', 1, 'https://ror.org/00nmy1597 College & Association of Registered Nurses of Alberta'),
(58128, 'https://ror.org/00d18j871', 'fr', 1, 'https://ror.org/00d18j871 CollĆØge d''Ɖtudes OstĆ©opathiques de MontrĆ©al'),
(58129, 'https://ror.org/00gygke76', 'en', 1, 'https://ror.org/00gygke76 Guangxi Academy of Special Crops å¹æč„æå£®ę—č‡Ŗę²»åŒŗęŸ‘ę””ē ”ē©¶ę‰€'),
(58130, 'https://ror.org/019pev732', 'en', 1, 'https://ror.org/019pev732 College of Pharmacists of British Columbia'),
(58131, 'https://ror.org/021g17t44', 'en', 1, 'https://ror.org/021g17t44 College of Physicians and Surgeons of Ontario'),
(58132, 'https://ror.org/0310zet56', 'no_lang_code', 1, 'https://ror.org/0310zet56 Shanghai Han Guan Bio Chip (China) äøŠęµ·åŽå† ē”Ÿē‰©čŠÆē‰‡ęœ‰é™å…¬åøē®€ä»‹'),
(58133, 'https://ror.org/050qytm65', 'en', 1, 'https://ror.org/050qytm65 Qingdao Party School of CPC äø­å›½å…±äŗ§å…šé’å²›åø‚å§”å‘˜ä¼šå…šę ”'),
(58134, 'https://ror.org/00n7f0287', 'en', 1, 'https://ror.org/00n7f0287 Shenzhen International Travel Health Care Center ę·±åœ³å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€ ę·±åœ³å›½é™…ę—…č”Œå«ē”Ÿäæå„äø­åæƒ'),
(58135, 'https://ror.org/0059g0z40', 'en', 1, 'https://ror.org/0059g0z40 Council of Colleges of Acupuncture and Oriental Medicine'),
(58136, 'https://ror.org/01kr22f12', 'en', 1, 'https://ror.org/01kr22f12 Tianjin Product Quality Supervision and Testing Technology Institute å¤©ę“„äŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒęŠ€ęœÆē ”ē©¶ę‰€'),
(58137, 'https://ror.org/05khxfe53', 'en', 1, 'https://ror.org/05khxfe53 University of Bojnord دانؓگاه ŲØŲ¬Ł†ŁˆŲ±ŲÆ'),
(58138, 'https://ror.org/04en0yf19', 'id', 1, 'https://ror.org/04en0yf19 Rumah Sakit Umum Pusat Sanglah Denpasar'),
(58139, 'https://ror.org/02jwahm23', 'en', 1, 'https://ror.org/02jwahm23 Doctors with Africa Cuamm Medici con l’Africa Cuamm'),
(58140, 'https://ror.org/0559vb332', 'en', 1, 'https://ror.org/0559vb332 D.A.V Centenary Dental College'),
(58141, 'https://ror.org/007322p37', 'en', 1, 'https://ror.org/007322p37 Dunsan Korean Medicine Hospital 단산 ķ•œģ˜ģ› 병원'),
(58142, 'https://ror.org/00x4qp065', 'en', 1, 'https://ror.org/00x4qp065 He University č¾½å®ä½•ę°åŒ»å­¦é™¢'),
(58143, 'https://ror.org/00dfpj523', 'en', 1, 'https://ror.org/00dfpj523 Heliodor Swiecicki Clinical Hospital Szpital Kliniczny im. Heliodora Święcickiego w Poznaniu'),
(58144, 'https://ror.org/045w1wd13', 'en', 1, 'https://ror.org/045w1wd13 Hellenic College of Treatment of Atherosclerosis Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Κολέγιο Ī˜ĪµĻĪ±Ļ€ĪµĪÆĪ±Ļ‚ της Ī‘ĪøĪ·ĻĪæĻƒĪŗĪ»Ī®ĻĻ‰ĻƒĪ·Ļ‚'),
(58145, 'https://ror.org/00p59qs14', 'en', 1, 'https://ror.org/00p59qs14 Ain Shams University Hospital'),
(58146, 'https://ror.org/054jdkk48', 'en', 1, 'https://ror.org/054jdkk48 Hanoi Medical University Hospital'),
(58147, 'https://ror.org/03k18qw23', 'en', 1, 'https://ror.org/03k18qw23 Hainan Eye Hospital'),
(58148, 'https://ror.org/003jb2109', 'en', 1, 'https://ror.org/003jb2109 European School of Osteopathy'),
(58149, 'https://ror.org/03y9rwp16', 'fr', 1, 'https://ror.org/03y9rwp16 HƓpitaux Universitaires Grand Ouest'),
(58150, 'https://ror.org/033ezdy84', 'es', 1, 'https://ror.org/033ezdy84 Hospital Universitario del Sureste'),
(58151, 'https://ror.org/03gtg9w20', 'es', 1, 'https://ror.org/03gtg9w20 Hospital Universitario del Vinalopó'),
(58152, 'https://ror.org/03rehvw54', 'pt', 1, 'https://ror.org/03rehvw54 Hospital das ClĆ­nicas da Universidade Federal de Pernambuco'),
(58153, 'https://ror.org/05xvh6h11', 'es', 1, 'https://ror.org/05xvh6h11 Los Comuneros Hospital Universitario de Bucaramanga'),
(58154, 'https://ror.org/02bh05k02', 'no_lang_code', 1, 'https://ror.org/02bh05k02 Chemo (Spain)'),
(58155, 'https://ror.org/02b082946', 'pt', 1, 'https://ror.org/02b082946 Hospital UniversitƔrio Oswaldo Cruz'),
(58156, 'https://ror.org/03pxttn44', 'pl', 1, 'https://ror.org/03pxttn44 Szpital Kliniczny Nr 1 we Wrocławiu'),
(58157, 'https://ror.org/018q88z15', 'es', 1, 'https://ror.org/018q88z15 Hospital Universitario Quirónsalud Madrid'),
(58158, 'https://ror.org/02mgs7839', 'en', 1, 'https://ror.org/02mgs7839 ESE University Hospital San Jorge Pereira'),
(58159, 'https://ror.org/05ymjt203', 'no_lang_code', 1, 'https://ror.org/05ymjt203 Kedrion (Italy)'),
(58160, 'https://ror.org/0039g6563', 'pt', 1, 'https://ror.org/0039g6563 Hospital UniversitƔrio - Universidade Federal de Juiz de Fora'),
(58161, 'https://ror.org/01d9cfw89', 'pt', 1, 'https://ror.org/01d9cfw89 Hospital UniversitƔrio Walter Cantƭdio'),
(58162, 'https://ror.org/00bqttt79', 'en', 1, 'https://ror.org/00bqttt79 Islamic Azad University, Marvdasht دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ų±ŁˆŲÆŲ“ŲŖ'),
(58163, 'https://ror.org/02emvpp12', 'no_lang_code', 1, 'https://ror.org/02emvpp12 Sarossa (Jersey)'),
(58164, 'https://ror.org/00xzj9k32', 'en', 1, 'https://ror.org/00xzj9k32 Clinical Investigation Center Plurithematic Tours'),
(58165, 'https://ror.org/01xevy941', 'pt', 1, 'https://ror.org/01xevy941 Hospital UniversitƔrio Lauro Wanderley Lauro Wanderley University Hospital'),
(58166, 'https://ror.org/01pyynr06', 'it', 1, 'https://ror.org/01pyynr06 SIOTEMA'),
(58167, 'https://ror.org/05f9vfg11', 'en', 1, 'https://ror.org/05f9vfg11 Huazhong University of Science and Technology Hospital'),
(58168, 'https://ror.org/007r4ws88', 'en', 1, 'https://ror.org/007r4ws88 Krishnadevaraya College of Dental Sciences and Hospital ą²•ą³ƒą²·ą³ą²£ą²¦ą³‡ą²µą²°ą²¾ą²Æ ದಂತ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(58169, 'https://ror.org/04wk3wd50', 'fr', 1, 'https://ror.org/04wk3wd50 AcadƩmie de Nancy-Metz'),
(58170, 'https://ror.org/01rd68671', 'en', 1, 'https://ror.org/01rd68671 Mae Fah Luang University Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąø”ą¹ˆąøŸą¹‰ąø²ąø«ąø„ąø§ąø‡'),
(58171, 'https://ror.org/05d585f89', 'en', 1, 'https://ror.org/05d585f89 Mahesh Bhattacharyya Homeopathic Medical College and Hospital'),
(58172, 'https://ror.org/01vvdem88', 'en', 1, 'https://ror.org/01vvdem88 National University Heart Centre Singapore'),
(58173, 'https://ror.org/02apyk545', 'en', 1, 'https://ror.org/02apyk545 Orygen'),
(58174, 'https://ror.org/031hkyx15', 'no_lang_code', 1, 'https://ror.org/031hkyx15 Johnson & Johnson (Hungary)'),
(58175, 'https://ror.org/0397v4g85', 'no_lang_code', 1, 'https://ror.org/0397v4g85 N-Gene (Hungary)'),
(58176, 'https://ror.org/041b8s785', 'no_lang_code', 1, 'https://ror.org/041b8s785 Clinipace (United States)'),
(58177, 'https://ror.org/04qfvk625', 'en', 1, 'https://ror.org/04qfvk625 William P. Clements Jr. University Hospital'),
(58178, 'https://ror.org/04113mk23', 'no_lang_code', 1, 'https://ror.org/04113mk23 Akupunkturforeningen'),
(58179, 'https://ror.org/058rwr454', 'en', 1, 'https://ror.org/058rwr454 University of Ottawa Skills and Simulation Centre'),
(58180, 'https://ror.org/04j032963', 'en', 1, 'https://ror.org/04j032963 New York School of Regional Anesthesia'),
(58181, 'https://ror.org/04jqt3k72', 'en', 1, 'https://ror.org/04jqt3k72 Minia University Hospital ŲÆŁ„ŁŠŁ„ الصحة Ų§Ł„Ł…ŲµŲ±ŁŠ'),
(58182, 'https://ror.org/04tkkqy57', 'en', 1, 'https://ror.org/04tkkqy57 Nam Dinh University of Nursing'),
(58183, 'https://ror.org/00gp99k74', 'en', 1, 'https://ror.org/00gp99k74 Shanghai Third People''s Hospital äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(58184, 'https://ror.org/02h7wt813', 'en', 1, 'https://ror.org/02h7wt813 Scottish School of Primary Care'),
(58185, 'https://ror.org/00ss42h10', 'en', 1, 'https://ror.org/00ss42h10 Riga East University Hospital Rīgas Austrumu klīniskā universitātes slimnīca'),
(58186, 'https://ror.org/020448x84', 'en', 1, 'https://ror.org/020448x84 Riverside University Health System - Medical Center');
INSERT INTO `rors` VALUES
(58187, 'https://ror.org/04v1ay816', 'es', 1, 'https://ror.org/04v1ay816 Hospital Universitario San Rafael San Rafael University Hospital'),
(58188, 'https://ror.org/00syaya36', 'en', 1, 'https://ror.org/00syaya36 Singapore College of Traditional Chinese Medicine'),
(58189, 'https://ror.org/03e4r0p06', 'en', 1, 'https://ror.org/03e4r0p06 The Royal College Of Anesthesiologists Of Thailand ąø£ąø²ąøŠąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø§ąø“ąøŖąø±ąøąøąøµąø§ąø“ąø—ąø¢ąø²ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(58190, 'https://ror.org/037s05q15', 'en', 1, 'https://ror.org/037s05q15 Reidman College'),
(58191, 'https://ror.org/005pe1772', 'en', 1, 'https://ror.org/005pe1772 Sixth Affiliated Hospital of Sun Yat-sen University äø­å±±å¤§å­¦é™„å±žē¬¬å…­åŒ»é™¢'),
(58192, 'https://ror.org/04yw93c88', 'en', 1, 'https://ror.org/04yw93c88 Lagos State Health Service Commission'),
(58193, 'https://ror.org/02tnw4027', 'ro', 1, 'https://ror.org/02tnw4027 Spitalul Universitar de Urgență Elias'),
(58194, 'https://ror.org/03ceh0618', 'en', 1, 'https://ror.org/03ceh0618 Sri Lanka College of Obstetricians & Gynaecologists'),
(58195, 'https://ror.org/00da4q652', 'en', 1, 'https://ror.org/00da4q652 Sutherland Cranial College of Osteopathy'),
(58196, 'https://ror.org/05ks75x17', 'no_lang_code', 1, 'https://ror.org/05ks75x17 Suyash Hospital'),
(58197, 'https://ror.org/00768sz96', 'en', 1, 'https://ror.org/00768sz96 Chinese People''s Armed Police Force Medical College Affiliated Hospital äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜ŸåŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(58198, 'https://ror.org/005gwb033', 'en', 1, 'https://ror.org/005gwb033 Taiwan College of Healthcare Executive'),
(58199, 'https://ror.org/01jkda844', 'en', 1, 'https://ror.org/01jkda844 West Cancer Center'),
(58200, 'https://ror.org/0146zsf67', 'en', 1, 'https://ror.org/0146zsf67 Tatyasaheb Kore Dental College and Research Centre'),
(58201, 'https://ror.org/04th56x69', 'en', 1, 'https://ror.org/04th56x69 THIM van der Laan University College Physiotherapy'),
(58202, 'https://ror.org/00fwp4v27', 'pt', 1, 'https://ror.org/00fwp4v27 Unidade Integrada de Farmacologia e Gastroenterologia'),
(58203, 'https://ror.org/036csaq39', 'en', 1, 'https://ror.org/036csaq39 The Third Affiliated Hospital of Guangzhou University of Traditional Chinese Medicine å¹æå·žäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äø‰åŒ»é™¢'),
(58204, 'https://ror.org/03wnxd135', 'en', 1, 'https://ror.org/03wnxd135 Second Affiliated Hospital of Fujian Medical University ē¦å»ŗåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(58205, 'https://ror.org/00bhbea87', 'en', 1, 'https://ror.org/00bhbea87 Second Affiliated Hospital of Jiangxi University of TCM ę±Ÿč„æäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(58206, 'https://ror.org/057bhmh42', 'en', 1, 'https://ror.org/057bhmh42 Second Affiliated Hospital of Shandong University of TCM å±±äøœäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(58207, 'https://ror.org/03qwdkr25', 'en', 1, 'https://ror.org/03qwdkr25 First Affiliated Hospital of Shihezi University Medical College ēŸ³ę²³å­å¤§å­¦åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(58208, 'https://ror.org/05kgqvw68', 'en', 1, 'https://ror.org/05kgqvw68 University MRI & Diagnostic Imaging Centers'),
(58209, 'https://ror.org/03esvmb28', 'en', 1, 'https://ror.org/03esvmb28 Kinderklinik Tübingen University Children''s Hospital Tübingen'),
(58210, 'https://ror.org/00a0bqh48', 'de', 1, 'https://ror.org/00a0bqh48 Klinik für Frauenheilkunde'),
(58211, 'https://ror.org/02d9e4911', 'de', 1, 'https://ror.org/02d9e4911 Universitätsklinik für Frauenheilkunde und Geburtshilfe'),
(58212, 'https://ror.org/04jgrem26', 'en', 1, 'https://ror.org/04jgrem26 OspidƩal MƔithreachais na hOllscoile, Luimneach University Maternity Hospital Limerick'),
(58213, 'https://ror.org/014knbk35', 'en', 1, 'https://ror.org/014knbk35 Tokyo Women''s Medical University Hospital ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(58214, 'https://ror.org/00pap0267', 'it', 1, 'https://ror.org/00pap0267 Azienda Universitaria Ospedaliera Consorziale - Policlinico Bari'),
(58215, 'https://ror.org/051fvq837', 'en', 1, 'https://ror.org/051fvq837 Hospital General Universitario Santa LucĆ­a Santa LucĆ­a University General Hospital'),
(58216, 'https://ror.org/04n8nb568', 'da', 1, 'https://ror.org/04n8nb568 Universitetshospitalernes Center for Sundhedsfaglig Forskning'),
(58217, 'https://ror.org/05rg5xr95', 'en', 1, 'https://ror.org/05rg5xr95 University General Surgeons'),
(58218, 'https://ror.org/043yx1v14', 'en', 1, 'https://ror.org/043yx1v14 University and Rehabilitation Clinics Ulm UniversitƤts und Rehabilitationskliniken Ulm'),
(58219, 'https://ror.org/05svdww41', 'en', 1, 'https://ror.org/05svdww41 University Hospital Medical Center Bezanijska kosa'),
(58220, 'https://ror.org/05kg2q446', 'en', 1, 'https://ror.org/05kg2q446 University Health Conway'),
(58221, 'https://ror.org/04ej3kx94', 'en', 1, 'https://ror.org/04ej3kx94 Bach & Godofsky Infectious Diseases'),
(58222, 'https://ror.org/015e4mc09', 'de', 1, 'https://ror.org/015e4mc09 UniversitƤts Kinder Frauenzentrum'),
(58223, 'https://ror.org/04a3njz22', 'en', 1, 'https://ror.org/04a3njz22 University Dermatology'),
(58224, 'https://ror.org/01mpr3h03', 'en', 1, 'https://ror.org/01mpr3h03 University Diagnostic Institute'),
(58225, 'https://ror.org/05y7rdz72', 'sl', 1, 'https://ror.org/05y7rdz72 Očesna Klinika UKC Ljubljana'),
(58226, 'https://ror.org/056gvz809', 'de', 1, 'https://ror.org/056gvz809 Klinik und Poliklinik für Augenheilkunde am Universitätsklinikum Carl Gustav Carus'),
(58227, 'https://ror.org/01vzx5p25', 'de', 1, 'https://ror.org/01vzx5p25 UniversitƤtsaugenklinik Magdeburg'),
(58228, 'https://ror.org/01vs0xq55', 'de', 1, 'https://ror.org/01vs0xq55 Universitätsklinik für Augenheilkunde'),
(58229, 'https://ror.org/02zmrd443', 'de', 1, 'https://ror.org/02zmrd443 Klinik und Poliklinik für Augenheilkunde Universitätsklinikum Regensburg'),
(58230, 'https://ror.org/028gw7a54', 'en', 1, 'https://ror.org/028gw7a54 University Gastroenterology'),
(58231, 'https://ror.org/00j1phe22', 'en', 1, 'https://ror.org/00j1phe22 University Clinical Hospital In Bialystok Uniwersyteckim Szpitalu Klinicznym w Białymstoku'),
(58232, 'https://ror.org/02psj8r24', 'en', 1, 'https://ror.org/02psj8r24 University Multipurpose Hospital for Active Treatment "Sveti Georgi" Университетската многопрофилна болница за активно лечение ā€žŠ”Š²ŠµŃ‚Šø Š“ŠµŠ¾Ń€Š³Šøā€œ'),
(58233, 'https://ror.org/05k40gs40', 'en', 1, 'https://ror.org/05k40gs40 University hospital Medical Information Network å¤§å­¦ē—…é™¢åŒ»ē™‚ęƒ…å ±ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(58234, 'https://ror.org/00w7fxv12', 'en', 1, 'https://ror.org/00w7fxv12 University Hospital Dr. Georgi Stranski Университетската болница за активно лечение ā€œŠ”-р Георги Š”Ń‚Ń€Š°Š½ŃŠŗŠøā€'),
(58235, 'https://ror.org/04backa61', 'no_lang_code', 1, 'https://ror.org/04backa61 Scientific Centre of Personalized Psychiatry Š—ŠŠž "ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр персонализированной психиатрии"'),
(58236, 'https://ror.org/0061w5363', 'sk', 1, 'https://ror.org/0061w5363 FakultnĆ” Nemocnica Trnava'),
(58237, 'https://ror.org/02ebx7v45', 'en', 1, 'https://ror.org/02ebx7v45 FrontiĆØre humaine International Human Frontier Science Program Organization'),
(58238, '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'),
(58239, 'https://ror.org/00ygteq35', 'no_lang_code', 1, 'https://ror.org/00ygteq35 Australian Coal Research (Australia)'),
(58240, 'https://ror.org/00ej70p06', 'en', 1, 'https://ror.org/00ej70p06 Orygen Youth Health'),
(58241, 'https://ror.org/03jt4bv90', 'en', 1, 'https://ror.org/03jt4bv90 University Hospitals Sharon Health Center'),
(58242, 'https://ror.org/01teb6y78', 'en', 1, 'https://ror.org/01teb6y78 Foundation for Glacier and Environmental Research'),
(58243, 'https://ror.org/00aqfrr40', 'pt', 1, 'https://ror.org/00aqfrr40 Hospital UniversitƔrio de Santa Maria'),
(58244, 'https://ror.org/00at08b36', 'es', 1, 'https://ror.org/00at08b36 Hospital Universitario de Torrejón'),
(58245, 'https://ror.org/01aq2mh35', 'en', 1, 'https://ror.org/01aq2mh35 UNM Children''s Hospital'),
(58246, 'https://ror.org/02veq1j93', 'de', 1, 'https://ror.org/02veq1j93 UniversitƤts Frauenklinik'),
(58247, 'https://ror.org/00xnymf93', 'nl', 1, 'https://ror.org/00xnymf93 Militaire Geestelijke Gezondheidszorg'),
(58248, 'https://ror.org/007nw9a41', 'en', 1, 'https://ror.org/007nw9a41 University Orthopaedic Associates'),
(58249, 'https://ror.org/00f378f80', 'sv', 1, 'https://ror.org/00f378f80 Akademiska Barnsjukhuset'),
(58250, 'https://ror.org/03khf7306', 'en', 1, 'https://ror.org/03khf7306 University Orthopedics Center'),
(58251, 'https://ror.org/0204j6811', 'en', 1, 'https://ror.org/0204j6811 Specialized Hospital for Active Treatment of Children''s Diseases Дпециализирана болница за активно лечение по Гетски болести'),
(58252, 'https://ror.org/05hadjh66', 'en', 1, 'https://ror.org/05hadjh66 Marshall Health'),
(58253, 'https://ror.org/03sqnmh94', 'en', 1, 'https://ror.org/03sqnmh94 Vienna School of Clinical Research'),
(58254, 'https://ror.org/0029et149', 'en', 1, 'https://ror.org/0029et149 University Reproductive Associates'),
(58255, 'https://ror.org/04fbjgg20', 'tr', 1, 'https://ror.org/04fbjgg20 Higher Specialization University Yüksek İhtisas Üniversitesi'),
(58256, 'https://ror.org/00sx7n004', 'en', 1, 'https://ror.org/00sx7n004 University Surgical Associates'),
(58257, 'https://ror.org/01xf55557', 'en', 1, 'https://ror.org/01xf55557 Altius Institute for Biomedical Sciences'),
(58258, 'https://ror.org/0561hjj97', 'en', 1, 'https://ror.org/0561hjj97 Milwaukee Health Department'),
(58259, 'https://ror.org/02084tv33', 'en', 1, 'https://ror.org/02084tv33 Herrin Hospital'),
(58260, 'https://ror.org/04wfzj177', 'en', 1, 'https://ror.org/04wfzj177 PeaceHealth St. Joseph Medical Center'),
(58261, 'https://ror.org/0460whz58', 'en', 1, 'https://ror.org/0460whz58 Orange County Global Medical Center'),
(58262, 'https://ror.org/05at6ra83', 'en', 1, 'https://ror.org/05at6ra83 Orange Regional Medical Center'),
(58263, 'https://ror.org/00n4f0h74', 'en', 1, 'https://ror.org/00n4f0h74 Johnson City Medical Center'),
(58264, 'https://ror.org/02pjd1n70', 'en', 1, 'https://ror.org/02pjd1n70 Children''s Hospital at Saint Francis'),
(58265, 'https://ror.org/01hpypq56', 'en', 1, 'https://ror.org/01hpypq56 Angeline Elizabeth Kirby Memorial Health Center'),
(58266, 'https://ror.org/01fqh9j23', 'en', 1, 'https://ror.org/01fqh9j23 Elmhurst Memorial Hospital'),
(58267, 'https://ror.org/05q3jcj22', 'en', 1, 'https://ror.org/05q3jcj22 Miami Serpentarium Laboratories'),
(58268, 'https://ror.org/00aeyav11', 'en', 1, 'https://ror.org/00aeyav11 Foundation for Biomedical Research'),
(58269, 'https://ror.org/02hbmed43', 'no_lang_code', 1, 'https://ror.org/02hbmed43 Safety Management Systems Aotearoa (New Zealand)'),
(58270, 'https://ror.org/01gmqt203', 'en', 1, 'https://ror.org/01gmqt203 Mental Health Foundation'),
(58271, 'https://ror.org/03zdy0d17', 'en', 1, 'https://ror.org/03zdy0d17 Motu Economic and Public Policy Research'),
(58272, 'https://ror.org/0132cpq10', 'en', 1, 'https://ror.org/0132cpq10 Edith Kanaka''ole Foundation'),
(58273, 'https://ror.org/05c9swc26', 'en', 1, 'https://ror.org/05c9swc26 Museum of New Zealand Te Papa Tongarewa'),
(58274, 'https://ror.org/02a8zfv27', 'en', 1, 'https://ror.org/02a8zfv27 Hokotehi Moriori Trust'),
(58275, 'https://ror.org/0585bbm72', 'en', 1, 'https://ror.org/0585bbm72 Clinical Infectious Disease Hospital named after S.P. Botkin ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠøŠ½Ń„ŠµŠŗŃ†ŠøŠ¾Š½Š½Š°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° имени Š”. П. Боткина'),
(58276, 'https://ror.org/029pazr57', 'en', 1, 'https://ror.org/029pazr57 Bon Secours Heart & Vascular Institute'),
(58277, 'https://ror.org/03ckvbj98', 'en', 1, 'https://ror.org/03ckvbj98 Bon Secours Liver Institute of Richmond'),
(58278, 'https://ror.org/02hk27r53', 'en', 1, 'https://ror.org/02hk27r53 Asian Institute of Medical Sciences'),
(58279, 'https://ror.org/05evjvn31', 'en', 1, 'https://ror.org/05evjvn31 Bon Secours Liver Institute of Hampton Roads'),
(58280, 'https://ror.org/042bx3y66', 'en', 1, 'https://ror.org/042bx3y66 Ablon Skin Institute and Research Center'),
(58281, 'https://ror.org/04cghs078', 'en', 1, 'https://ror.org/04cghs078 Catalina Research Institute'),
(58282, 'https://ror.org/02m901r68', 'en', 1, 'https://ror.org/02m901r68 Abrams Eye Institute'),
(58283, 'https://ror.org/00tt93p95', 'no_lang_code', 1, 'https://ror.org/00tt93p95 Healthycell (United States)'),
(58284, 'https://ror.org/03creye80', 'en', 1, 'https://ror.org/03creye80 Boucher Institute of Naturopathic Medicine'),
(58285, 'https://ror.org/0439nps09', 'en', 1, 'https://ror.org/0439nps09 Assil Eye Institute'),
(58286, 'https://ror.org/02cn88225', 'en', 1, 'https://ror.org/02cn88225 Boulder Institute for Sports Medicine'),
(58287, 'https://ror.org/05sa2hd66', 'en', 1, 'https://ror.org/05sa2hd66 Academic Medical Research Institute'),
(58288, 'https://ror.org/05b0t4w03', 'en', 1, 'https://ror.org/05b0t4w03 Association of Microfinance Institutions in Rwanda'),
(58289, 'https://ror.org/02smhv438', 'no_lang_code', 1, 'https://ror.org/02smhv438 BQS Institut für Qualität und Patientensicherheit (Germany)'),
(58290, 'https://ror.org/04zncpe92', 'en', 1, 'https://ror.org/04zncpe92 Access to Wholistic and Productive Living Institute'),
(58291, 'https://ror.org/005489b68', 'en', 1, 'https://ror.org/005489b68 Institute of Mind Control & Brain Development'),
(58292, 'https://ror.org/045z78c59', 'en', 1, 'https://ror.org/045z78c59 ADD Centre'),
(58293, 'https://ror.org/027h0s442', 'en', 1, 'https://ror.org/027h0s442 Brazosport Eye Institute'),
(58294, 'https://ror.org/04ppky291', 'en', 1, 'https://ror.org/04ppky291 Advanced Medical Research Institute'),
(58295, 'https://ror.org/03dsbfb14', 'en', 1, 'https://ror.org/03dsbfb14 Australian Institute of Tropical Health and Medicine'),
(58296, 'https://ror.org/05887gz78', 'lt', 1, 'https://ror.org/05887gz78 Centro poliklinika'),
(58297, 'https://ror.org/00cm7z053', 'en', 1, 'https://ror.org/00cm7z053 Health First'),
(58298, 'https://ror.org/052vdf235', 'en', 1, 'https://ror.org/052vdf235 Central Florida Neurosurgery Institute'),
(58299, 'https://ror.org/02dndmg40', 'en', 1, 'https://ror.org/02dndmg40 Advanced Heart and Vascular Institute of Hunterdon'),
(58300, 'https://ror.org/0445eft26', 'en', 1, 'https://ror.org/0445eft26 Advanced Memory Research Institute of New Jersey'),
(58301, 'https://ror.org/02kc8gm46', 'en', 1, 'https://ror.org/02kc8gm46 Brisbane Hand & Upper Limb Research Institute'),
(58302, 'https://ror.org/00gked521', 'en', 1, 'https://ror.org/00gked521 Advanced Vision Institute'),
(58303, 'https://ror.org/05vbgdg34', 'en', 1, 'https://ror.org/05vbgdg34 Central Texas Spine Institute'),
(58304, 'https://ror.org/05h3wd214', 'en', 1, 'https://ror.org/05h3wd214 Adventist Heart Institute'),
(58305, 'https://ror.org/02pj2bt04', 'en', 1, 'https://ror.org/02pj2bt04 Bucci Laser Vision Institute'),
(58306, 'https://ror.org/022bv4r09', 'en', 1, 'https://ror.org/022bv4r09 African Institute for Health and Development'),
(58307, 'https://ror.org/04t8gaz30', 'en', 1, 'https://ror.org/04t8gaz30 Ayurvedic Institute'),
(58308, 'https://ror.org/025pp2a41', 'en', 1, 'https://ror.org/025pp2a41 Bacharach Institute for Rehabilitation'),
(58309, 'https://ror.org/02yxqm243', 'en', 1, 'https://ror.org/02yxqm243 Budgetary Healthcare Institution of Omsk Region Regional Clinical Hospital'),
(58310, 'https://ror.org/02qktq607', 'en', 1, 'https://ror.org/02qktq607 Bulgarian Cardiac Institute'),
(58311, 'https://ror.org/042eeg142', 'en', 1, 'https://ror.org/042eeg142 Adelaide Institute for Sleep Health'),
(58312, 'https://ror.org/043dsjh82', 'en', 1, 'https://ror.org/043dsjh82 The Advanced IVF Institute'),
(58313, 'https://ror.org/02dtse057', 'en', 1, 'https://ror.org/02dtse057 The Ageless Aesthetic Institute'),
(58314, 'https://ror.org/02vwqfb11', 'en', 1, 'https://ror.org/02vwqfb11 Ainsworth Institute of Pain Management'),
(58315, 'https://ror.org/0021y6a82', 'en', 1, 'https://ror.org/0021y6a82 California Life Sciences Association'),
(58316, 'https://ror.org/01va8fr66', 'en', 1, 'https://ror.org/01va8fr66 Baim Institute for Clinical Research'),
(58317, 'https://ror.org/02q9v7665', 'en', 1, 'https://ror.org/02q9v7665 California Liver Research Institute'),
(58318, 'https://ror.org/02h4hqt24', 'en', 1, 'https://ror.org/02h4hqt24 Alberta Bone and Joint Health Institute'),
(58319, 'https://ror.org/05f508233', 'en', 1, 'https://ror.org/05f508233 Chan Heart Rhythm Institute'),
(58320, 'https://ror.org/04rtgxf38', 'en', 1, 'https://ror.org/04rtgxf38 Canadian Institute of Natural and Integrative Medicine'),
(58321, 'https://ror.org/01sgsyh36', 'en', 1, 'https://ror.org/01sgsyh36 Charleston Research Institute'),
(58322, 'https://ror.org/02jnh1883', 'en', 1, 'https://ror.org/02jnh1883 Canadian Sugar Institute'),
(58323, 'https://ror.org/01arb1p52', 'en', 1, 'https://ror.org/01arb1p52 Charlotte Sports Medicine Institute'),
(58324, 'https://ror.org/03ydnrx14', 'en', 1, 'https://ror.org/03ydnrx14 Connecticut Skin Institute'),
(58325, 'https://ror.org/00max4143', 'en', 1, 'https://ror.org/00max4143 Chattanooga Eye Institute'),
(58326, 'https://ror.org/005vqqr19', 'pt', 1, 'https://ror.org/005vqqr19 Instituto do CĆ¢ncer do Estado de SĆ£o Paulo'),
(58327, 'https://ror.org/030kcs678', 'en', 1, 'https://ror.org/030kcs678 Allergy Asthma Research Institute'),
(58328, 'https://ror.org/00hx49s62', 'en', 1, 'https://ror.org/00hx49s62 Cooper Institute for Reproductive Hormonal Disorders'),
(58329, 'https://ror.org/04p7je888', 'en', 1, 'https://ror.org/04p7je888 Alliance Integrative Medicine'),
(58330, 'https://ror.org/01yf7sx51', 'sk', 1, 'https://ror.org/01yf7sx51 Východoslovenský Onkologický Ústav'),
(58331, 'https://ror.org/00dd2mx78', 'en', 1, 'https://ror.org/00dd2mx78 Allied Biomedical Research Institute'),
(58332, 'https://ror.org/0447hzq61', 'en', 1, 'https://ror.org/0447hzq61 Cornea and Laser Eye Institute - Hersh Vision Group'),
(58333, 'https://ror.org/023t01j49', 'en', 1, 'https://ror.org/023t01j49 Bariatric Medical Institute of Texas'),
(58334, 'https://ror.org/02qsnza70', 'en', 1, 'https://ror.org/02qsnza70 Cornea Eye Institute'),
(58335, 'https://ror.org/02v72sd52', 'en', 1, 'https://ror.org/02v72sd52 Chhattisgarh Dental College & Research Institute'),
(58336, 'https://ror.org/0155dcf85', 'lt', 1, 'https://ror.org/0155dcf85 Alytaus Apskrities S. Kudirkos Ligoninė'),
(58337, 'https://ror.org/0216ch235', 'en', 1, 'https://ror.org/0216ch235 Coyle Institute'),
(58338, 'https://ror.org/003ebr303', 'en', 1, 'https://ror.org/003ebr303 Child Psychopharmacology Institute'),
(58339, 'https://ror.org/0293zyz69', 'en', 1, 'https://ror.org/0293zyz69 Cantor Spine Institute'),
(58340, 'https://ror.org/04fn5zr38', 'en', 1, 'https://ror.org/04fn5zr38 American SIDS Institute'),
(58341, 'https://ror.org/00rgw2q98', 'en', 1, 'https://ror.org/00rgw2q98 Canyon Ranch Institute'),
(58342, 'https://ror.org/04k24ww57', 'en', 1, 'https://ror.org/04k24ww57 Capital Region Special Surgery'),
(58343, 'https://ror.org/03feft235', 'en', 1, 'https://ror.org/03feft235 The Cardiac and Vascular Institute'),
(58344, 'https://ror.org/01kmtg526', 'en', 1, 'https://ror.org/01kmtg526 Children’s Institute'),
(58345, 'https://ror.org/047get849', 'en', 1, 'https://ror.org/047get849 Dallas Ear Institute'),
(58346, 'https://ror.org/01hf2y314', 'pt', 1, 'https://ror.org/01hf2y314 Instituto de Cardiologia do Distrito Federal'),
(58347, 'https://ror.org/03vxfws77', 'en', 1, 'https://ror.org/03vxfws77 Beals institute'),
(58348, 'https://ror.org/01ct2ab72', 'en', 1, 'https://ror.org/01ct2ab72 Angeles Clinic and Research Institute'),
(58349, 'https://ror.org/03c4ay951', 'en', 1, 'https://ror.org/03c4ay951 Cardiovascular Institute of Central Florida'),
(58350, 'https://ror.org/03003by36', 'fr', 1, 'https://ror.org/03003by36 Centre Hospitalier InterrƩgional Edith Cavell'),
(58351, 'https://ror.org/0515efc31', 'no_lang_code', 1, 'https://ror.org/0515efc31 Danone (China)'),
(58352, 'https://ror.org/05g8gd021', 'en', 1, 'https://ror.org/05g8gd021 Cardiovascular Institute of Michigan P.C'),
(58353, 'https://ror.org/01ztgpx39', 'en', 1, 'https://ror.org/01ztgpx39 Chongqing Institute of Genetics and Reproduction'),
(58354, 'https://ror.org/04gzrzz80', 'en', 1, 'https://ror.org/04gzrzz80 Apex Heart Institute'),
(58355, 'https://ror.org/00paktj46', 'no_lang_code', 1, 'https://ror.org/00paktj46 DARTNet Institute'),
(58356, 'https://ror.org/0590c4t82', 'en', 1, 'https://ror.org/0590c4t82 Academic Research in Complementary and Integrative Medicine'),
(58357, 'https://ror.org/01w5bhe03', 'en', 1, 'https://ror.org/01w5bhe03 Cardiovascular Institute of Northwest Florida'),
(58358, 'https://ror.org/029041c41', 'en', 1, 'https://ror.org/029041c41 Christiana Institute of Advanced Surgery'),
(58359, 'https://ror.org/04b0ys521', 'en', 1, 'https://ror.org/04b0ys521 CHRISTUS Transplant Institute'),
(58360, 'https://ror.org/00yqqsx19', 'en', 1, 'https://ror.org/00yqqsx19 Care Institute of Medical Sciences'),
(58361, 'https://ror.org/057b57860', 'en', 1, 'https://ror.org/057b57860 Dattoli Cancer Center and Brachytherapy Research Institute'),
(58362, 'https://ror.org/04tx7n689', 'en', 1, 'https://ror.org/04tx7n689 Chu Vision Institute'),
(58363, 'https://ror.org/059hsbq74', 'en', 1, 'https://ror.org/059hsbq74 Dearborn-Sah Institute For Joint Restoration'),
(58364, 'https://ror.org/00htvrc11', 'en', 1, 'https://ror.org/00htvrc11 Carolina BioOncology Institute'),
(58365, 'https://ror.org/039h4qc17', 'en', 1, 'https://ror.org/039h4qc17 DeClaire LaMacchia Orthopaedic Institute'),
(58366, 'https://ror.org/01e0c9e09', 'en', 1, 'https://ror.org/01e0c9e09 Carolina Headache Institute'),
(58367, 'https://ror.org/0062czq56', 'en', 1, 'https://ror.org/0062czq56 DeGarmo Institute of Medical Research'),
(58368, 'https://ror.org/05jd5rm48', 'en', 1, 'https://ror.org/05jd5rm48 Carolina Musculoskeletal Institute'),
(58369, 'https://ror.org/020cs7q41', 'en', 1, 'https://ror.org/020cs7q41 Clearview Cancer Institute'),
(58370, 'https://ror.org/001g69757', 'en', 1, 'https://ror.org/001g69757 Phelps County Regional Medical Center'),
(58371, 'https://ror.org/04prh3p48', 'en', 1, 'https://ror.org/04prh3p48 Full Plate Living'),
(58372, 'https://ror.org/03m0npv78', 'en', 1, 'https://ror.org/03m0npv78 Digestive Health Associates of Texas'),
(58373, 'https://ror.org/05fstx905', 'sk', 1, 'https://ror.org/05fstx905 NÔrodný Endokrinologický a Diabetologický Ústav'),
(58374, 'https://ror.org/026b8fb58', 'en', 1, 'https://ror.org/026b8fb58 Carolinas Pain Institute'),
(58375, 'https://ror.org/03egr7630', 'de', 1, 'https://ror.org/03egr7630 Diabetesinstitut Heidelberg'),
(58376, 'https://ror.org/000txyc96', 'en', 1, 'https://ror.org/000txyc96 Clinical Institute of Brain'),
(58377, 'https://ror.org/05ty37s47', 'en', 1, 'https://ror.org/05ty37s47 Clinical Hospital No 122 named after. L.G.Sokolova'),
(58378, 'https://ror.org/01g06kj70', 'no_lang_code', 1, 'https://ror.org/01g06kj70 Clinstile (Mexico)'),
(58379, 'https://ror.org/01vrgp187', 'en', 1, 'https://ror.org/01vrgp187 CODET Vision Institute'),
(58380, 'https://ror.org/008nt0z81', 'en', 1, 'https://ror.org/008nt0z81 Central Clinical Hospital of Civil Aviation'),
(58381, 'https://ror.org/05ane1z80', 'en', 1, 'https://ror.org/05ane1z80 Sheth M. L. Vaduwala Charitable Eye Hospital and Dr. Thakorbhai V. Patel Eye Institute'),
(58382, 'https://ror.org/040pncp85', 'en', 1, 'https://ror.org/040pncp85 Colorado Blood Cancer Institute'),
(58383, 'https://ror.org/00c5s4m23', 'en', 1, 'https://ror.org/00c5s4m23 State Scientific Center of Coloproctology'),
(58384, 'https://ror.org/00nqj3y93', 'en', 1, 'https://ror.org/00nqj3y93 Grand Rapids Women''s Health'),
(58385, 'https://ror.org/03xtgc164', 'en', 1, 'https://ror.org/03xtgc164 DuPage Medical Group'),
(58386, 'https://ror.org/00hchbn59', 'en', 1, 'https://ror.org/00hchbn59 Fetal Diagnostic Institute of the Pacific'),
(58387, 'https://ror.org/02n0p7v71', 'en', 1, 'https://ror.org/02n0p7v71 Desert Institute For Spine Care'),
(58388, 'https://ror.org/00w2zvp73', 'en', 1, 'https://ror.org/00w2zvp73 The Few Institute'),
(58389, 'https://ror.org/025wz7r34', 'en', 1, 'https://ror.org/025wz7r34 Gene Therapy Research Institution ę Ŗå¼ä¼šē¤¾éŗä¼å­ē ”ē©¶ę‰€'),
(58390, 'https://ror.org/037q5gj93', 'en', 1, 'https://ror.org/037q5gj93 First Coast Cardiovascular Institute'),
(58391, 'https://ror.org/035vbe686', 'en', 1, 'https://ror.org/035vbe686 Bel-Rea Institute'),
(58392, 'https://ror.org/02pjn5k45', 'de', 1, 'https://ror.org/02pjn5k45 Deutsches Institut für Telemedizin und Gesundheitsförderung'),
(58393, 'https://ror.org/01tt8er74', 'en', 1, 'https://ror.org/01tt8er74 Chongqing Maternal and Child Health Hospital'),
(58394, 'https://ror.org/05pv0dd97', 'en', 1, 'https://ror.org/05pv0dd97 Florida Cancer Care'),
(58395, 'https://ror.org/02g08q683', 'nl', 1, 'https://ror.org/02g08q683 Nederlands Paramedisch Instituut'),
(58396, 'https://ror.org/0501yf769', 'en', 1, 'https://ror.org/0501yf769 George Huntington Institute George-Huntington-Institut'),
(58397, 'https://ror.org/00tvc4894', 'en', 1, 'https://ror.org/00tvc4894 Florida Digestive Health Specialists'),
(58398, 'https://ror.org/00zc8sp15', 'en', 1, 'https://ror.org/00zc8sp15 Georgia Arrhythmia Consultants'),
(58399, 'https://ror.org/01t3v1178', 'en', 1, 'https://ror.org/01t3v1178 Florida Eye Microsurgical Institute'),
(58400, 'https://ror.org/04cas2957', 'no_lang_code', 1, 'https://ror.org/04cas2957 Non-Surgical Orthopaedics (United States)'),
(58401, 'https://ror.org/03aw1bv52', 'en', 1, 'https://ror.org/03aw1bv52 Rajamangala Institute of kidney disease ąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøŖąø–ąø²ąøšąø±ąø™ą¹‚ąø£ąø„ą¹„ąø•ą¹‚ąø£ąø„'),
(58402, 'https://ror.org/00zrvqw87', 'en', 1, 'https://ror.org/00zrvqw87 Georgia Nasal and Sinus Institute'),
(58403, 'https://ror.org/00tfz0s96', 'en', 1, 'https://ror.org/00tfz0s96 Biomed Research Institute'),
(58404, 'https://ror.org/05kxwfj75', 'en', 1, 'https://ror.org/05kxwfj75 East Florida Eye Institute'),
(58405, 'https://ror.org/03p2tn002', 'en', 1, 'https://ror.org/03p2tn002 Florida Pain Institute'),
(58406, 'https://ror.org/02z7tpb72', 'en', 1, 'https://ror.org/02z7tpb72 Amita Health'),
(58407, 'https://ror.org/010nxj438', 'en', 1, 'https://ror.org/010nxj438 Floridian Research Institute'),
(58408, 'https://ror.org/01tz5vj85', 'no_lang_code', 1, 'https://ror.org/01tz5vj85 Earlogic (South Korea)'),
(58409, 'https://ror.org/052ec2555', 'en', 1, 'https://ror.org/052ec2555 HealthCare Partners Institute for Applied Research and Education'),
(58410, 'https://ror.org/04w8qq712', 'es', 1, 'https://ror.org/04w8qq712 Instituto Ecuatoriano de Enfermedades Digestivas'),
(58411, 'https://ror.org/04y1ahe28', 'en', 1, 'https://ror.org/04y1ahe28 EEC Institute'),
(58412, 'https://ror.org/00ht9y350', 'en', 1, 'https://ror.org/00ht9y350 Elite Research Institute'),
(58413, 'https://ror.org/006t1gb51', 'en', 1, 'https://ror.org/006t1gb51 Heart & Vascular Institute of Florida'),
(58414, 'https://ror.org/02qmfy413', 'en', 1, 'https://ror.org/02qmfy413 Gibson Institute of Cognitive Research'),
(58415, 'https://ror.org/04njrx155', 'en', 1, 'https://ror.org/04njrx155 ELZA Institute'),
(58416, 'https://ror.org/04ew55674', 'en', 1, 'https://ror.org/04ew55674 Heart & Vascular Outcomes Research Institute'),
(58417, 'https://ror.org/04jm04j52', 'en', 1, 'https://ror.org/04jm04j52 Black Hills Regional Eye Institute'),
(58418, 'https://ror.org/02awj9960', 'de', 1, 'https://ror.org/02awj9960 Forschungsinstitut Havelhƶhe'),
(58419, 'https://ror.org/01yqwf941', 'en', 1, 'https://ror.org/01yqwf941 Kalispell Regional Healthcare'),
(58420, 'https://ror.org/00zrhn916', 'en', 1, 'https://ror.org/00zrhn916 Bleeding & Clotting Disorders Institute'),
(58421, 'https://ror.org/00en0kf81', 'en', 1, 'https://ror.org/00en0kf81 Glendale Heart Institute'),
(58422, 'https://ror.org/00ezhaq65', 'en', 1, 'https://ror.org/00ezhaq65 Fort Wayne Medical Institute'),
(58423, 'https://ror.org/05m9b9906', 'en', 1, 'https://ror.org/05m9b9906 Boise Kidney & Hypertension Institute'),
(58424, 'https://ror.org/0108d5e42', 'en', 1, 'https://ror.org/0108d5e42 Fox Valley Orthopedics'),
(58425, 'https://ror.org/049mk3j45', 'en', 1, 'https://ror.org/049mk3j45 Heart Institute'),
(58426, 'https://ror.org/01p02as95', 'it', 1, 'https://ror.org/01p02as95 Istituto Europeo per la Medicina Osteopatica'),
(58427, 'https://ror.org/04cj95h53', 'no_lang_code', 1, 'https://ror.org/04cj95h53 Global Medical Institutes (United States)'),
(58428, 'https://ror.org/02qzyds37', 'en', 1, 'https://ror.org/02qzyds37 Gordon Schanzlin New Vision Institute'),
(58429, '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'),
(58430, 'https://ror.org/0466ghp25', 'en', 1, 'https://ror.org/0466ghp25 Heekin Clinic'),
(58431, 'https://ror.org/047a78m29', 'en', 1, 'https://ror.org/047a78m29 Farzan Knowledge Development, Research and Technology Institute'),
(58432, 'https://ror.org/0585r9546', 'en', 1, 'https://ror.org/0585r9546 Farr Institute'),
(58433, 'https://ror.org/053dfbb70', 'en', 1, 'https://ror.org/053dfbb70 Immunology Research Institute in Gifu å²é˜œåŽæå…ē–«å­¦ē ”ē©¶ę‰€'),
(58434, 'https://ror.org/02w1djg46', 'es', 1, 'https://ror.org/02w1djg46 Fecunditas Instituto de Medicina Reproductiva'),
(58435, 'https://ror.org/015wgw417', 'de', 1, 'https://ror.org/015wgw417 Heidelberger Institut für Radioonkologie'),
(58436, 'https://ror.org/05e9aes39', 'en', 1, 'https://ror.org/05e9aes39 Chelyabinsk Regional Clinical Oncology Center Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ областной клинический онкологический Гиспансер'),
(58437, 'https://ror.org/036awca68', 'en', 1, 'https://ror.org/036awca68 Institute of Ophthalmology'),
(58438, 'https://ror.org/04hgg9s59', 'es', 1, 'https://ror.org/04hgg9s59 Fundacion Instituto de Reumatologia Fernando Chalem'),
(58439, 'https://ror.org/0425mk239', 'en', 1, 'https://ror.org/0425mk239 Gruter Institute'),
(58440, 'https://ror.org/05ppn2f94', 'no_lang_code', 1, 'https://ror.org/05ppn2f94 Institute for Quality Indicators (Sweden) Institutet fƶr kvalitetsindikatorer'),
(58441, 'https://ror.org/044a30492', 'en', 1, 'https://ror.org/044a30492 Gantt Clinical Research Institute'),
(58442, 'https://ror.org/027ybey37', 'en', 1, 'https://ror.org/027ybey37 Guangdong Institute of Biological Products and Drugs'),
(58443, 'https://ror.org/026c8da16', 'en', 1, 'https://ror.org/026c8da16 Gateway Aesthetic Institute and Laser Center'),
(58444, 'https://ror.org/01bdtz792', 'no_lang_code', 1, 'https://ror.org/01bdtz792 Burning Rock Biotech (China)'),
(58445, 'https://ror.org/05a3ksk07', 'en', 1, 'https://ror.org/05a3ksk07 GVK Emergency Management and Research Institute'),
(58446, 'https://ror.org/05980vk77', 'en', 1, 'https://ror.org/05980vk77 Hernando Eye Institute'),
(58447, '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)'),
(58448, 'https://ror.org/05gsbmf62', 'en', 1, 'https://ror.org/05gsbmf62 Herzig Eye Institute'),
(58449, 'https://ror.org/051d1hf40', 'es', 1, 'https://ror.org/051d1hf40 Halitus Instituto MƩdico'),
(58450, 'https://ror.org/05yjkn316', 'en', 1, 'https://ror.org/05yjkn316 Hamburg Institute for Therapy Research Hamburger Institut für Therapieforschung'),
(58451, 'https://ror.org/03wr2ty35', 'fr', 1, 'https://ror.org/03wr2ty35 Groupe Hospitalier de l''Institut Catholique de Lille'),
(58452, 'https://ror.org/01skcdk50', 'ca', 1, 'https://ror.org/01skcdk50 Catalan Retina Institute Institut CatalĆ  de Retina'),
(58453, 'https://ror.org/01an94380', 'fr', 1, 'https://ror.org/01an94380 Institut Emergences'),
(58454, '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'),
(58455, 'https://ror.org/01zmatx12', 'en', 1, 'https://ror.org/01zmatx12 Hassman Research Institute'),
(58456, 'https://ror.org/0194xa029', 'en', 1, 'https://ror.org/0194xa029 Oncology Institute of Vojvodina Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за онкологију Š’Š¾Ń˜Š²Š¾Š“ŠøŠ½Šµ'),
(58457, 'https://ror.org/0546j8a61', 'en', 1, 'https://ror.org/0546j8a61 Institute for Pulmonary Diseases of Vojvodina'),
(58458, 'https://ror.org/04kb8af13', 'en', 1, 'https://ror.org/04kb8af13 Havana Research Institute'),
(58459, 'https://ror.org/03ke8w717', 'en', 1, 'https://ror.org/03ke8w717 Houston Fertility Institute'),
(58460, 'https://ror.org/02n3gey39', 'en', 1, 'https://ror.org/02n3gey39 Institute for Advanced Laser Dentistry'),
(58461, 'https://ror.org/010h4w402', 'en', 1, 'https://ror.org/010h4w402 HCA Midwest Division'),
(58462, 'https://ror.org/00s65k733', 'en', 1, 'https://ror.org/00s65k733 Institute for Advanced Reconstruction'),
(58463, 'https://ror.org/02ztxmr86', 'en', 1, 'https://ror.org/02ztxmr86 Institute for Asthma and Allergy'),
(58464, 'https://ror.org/02xss3674', 'en', 1, 'https://ror.org/02xss3674 Institut für Klinisch Onkologische Forschung Institute of Clinical Cancer Research'),
(58465, 'https://ror.org/0398sv340', 'en', 1, 'https://ror.org/0398sv340 Vienna Challenge Chamber'),
(58466, 'https://ror.org/01bm8vs30', 'no_lang_code', 1, 'https://ror.org/01bm8vs30 Hubei Bio Pharmaceutical Industry Technology Institute (China)'),
(58467, 'https://ror.org/05mhs9m77', 'es', 1, 'https://ror.org/05mhs9m77 Instituto Privado de Hematología e Investigación Clínica'),
(58468, 'https://ror.org/05g37hp80', 'en', 1, 'https://ror.org/05g37hp80 Institute of Applied Economics and Health Research ApS'),
(58469, 'https://ror.org/05gqsqy69', 'de', 1, 'https://ror.org/05gqsqy69 Institut für Lungenforschung'),
(58470, 'https://ror.org/011ypec60', 'no_lang_code', 1, 'https://ror.org/011ypec60 Human Stem Cells Institute PJSC (Russia) Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дтволовых ŠšŠ»ŠµŃ‚Š¾Šŗ Человека'),
(58471, 'https://ror.org/049w74f06', 'de', 1, 'https://ror.org/049w74f06 Institut für Medizinische Diagnostik Berlin-Potsdam'),
(58472, 'https://ror.org/027jqx654', 'en', 1, 'https://ror.org/027jqx654 Institute for Human Reproduction'),
(58473, 'https://ror.org/036mqzt31', 'en', 1, 'https://ror.org/036mqzt31 Hunan Province Chest Hospital ę¹–å—ēœčƒøē§‘åŒ»é™¢'),
(58474, 'https://ror.org/019wxyf39', 'de', 1, 'https://ror.org/019wxyf39 Helios Klinik Hagen Ambrock'),
(58475, 'https://ror.org/03gv0kc08', 'fr', 1, 'https://ror.org/03gv0kc08 Oncolie'),
(58476, 'https://ror.org/03tr83233', 'en', 1, 'https://ror.org/03tr83233 Institute for Interdisciplinary Medicine ifi–Institut für interdisziplinƤre Medizin'),
(58477, 'https://ror.org/02437h829', 'sr', 1, 'https://ror.org/02437h829 Zavod ''''Konzilijum'''''),
(58478, 'https://ror.org/04azstb81', 'en', 1, 'https://ror.org/04azstb81 Hypertension Institute'),
(58479, 'https://ror.org/00gd0s828', 'en', 1, 'https://ror.org/00gd0s828 Institute For European Expertise in Physiology'),
(58480, 'https://ror.org/030nkeg78', 'es', 1, 'https://ror.org/030nkeg78 Insituto de Asistencia Reumatólogica Integral'),
(58481, 'https://ror.org/00wjdp131', 'en', 1, 'https://ror.org/00wjdp131 Institute for Food Safety and Health'),
(58482, 'https://ror.org/03n9p4x69', 'en', 1, 'https://ror.org/03n9p4x69 Institute for Orthopaedic Surgery & Sports Medicine'),
(58483, 'https://ror.org/02my3ed83', 'en', 1, 'https://ror.org/02my3ed83 Institute of Health Management Pachod'),
(58484, 'https://ror.org/0153n9c45', 'en', 1, 'https://ror.org/0153n9c45 Institute for Personal Excellence'),
(58485, 'https://ror.org/00ap4jg40', 'sl', 1, 'https://ror.org/00ap4jg40 InŔtitut za preventivno medicino'),
(58486, 'https://ror.org/04xqmb911', 'en', 1, 'https://ror.org/04xqmb911 Institut für Mikrobiologie und Hygiene Institute of Medical Microbiology and Hygiene'),
(58487, 'https://ror.org/0150fxq66', 'en', 1, 'https://ror.org/0150fxq66 Institute of Virology, Vaccines and Sera ā€œTorlakā€'),
(58488, 'https://ror.org/03epm2r70', 'en', 1, 'https://ror.org/03epm2r70 ICARE Eye Hospital & Postgraduate Institute'),
(58489, 'https://ror.org/04zp4vp65', 'en', 1, 'https://ror.org/04zp4vp65 Institute of Mental Health Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ментално зГравље'),
(58490, 'https://ror.org/00w2ggs58', 'en', 1, 'https://ror.org/00w2ggs58 Circle of Care'),
(58491, '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'),
(58492, 'https://ror.org/02qhn7905', 'en', 1, 'https://ror.org/02qhn7905 Idaho Urologic Institute'),
(58493, 'https://ror.org/01kc06n62', 'no_lang_code', 1, 'https://ror.org/01kc06n62 Vantage View (United States)'),
(58494, 'https://ror.org/01yt2c947', 'en', 1, 'https://ror.org/01yt2c947 The Institute for Scientific Information on Coffee'),
(58495, 'https://ror.org/0201xt342', 'en', 1, 'https://ror.org/0201xt342 Institute of Cosmetic and Laser Surgery'),
(58496, 'https://ror.org/04h0t7y80', 'pt', 1, 'https://ror.org/04h0t7y80 Instituto de Implantologia'),
(58497, 'https://ror.org/04ngt6a58', 'no_lang_code', 1, 'https://ror.org/04ngt6a58 Institute for Skin Research (Israel)'),
(58498, 'https://ror.org/04c9g9234', 'es', 1, 'https://ror.org/04c9g9234 Instituto de Investigación Biomédica de A Coruña'),
(58499, 'https://ror.org/027gkye86', 'fr', 1, 'https://ror.org/027gkye86 Geneva home care institution Institution Genevoise de Maintien Ć  Domicile'),
(58500, 'https://ror.org/02bd5jp47', 'en', 1, 'https://ror.org/02bd5jp47 Institute for the Study of Urologic Diseases Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪœĪµĪ»Ī­Ļ„Ī·Ļ‚ ĪŸĻ…ĻĪæĪ»ĪæĪ³Ī¹ĪŗĻŽĪ½ Ī Ī±ĪøĪ®ĻƒĪµĻ‰Ī½'),
(58501, 'https://ror.org/00gvwhq75', 'en', 1, 'https://ror.org/00gvwhq75 Institute for Transformative Technologies'),
(58502, 'https://ror.org/05a4m8k76', 'es', 1, 'https://ror.org/05a4m8k76 Hospital de Especialidades JosƩ Carrasco Arteaga'),
(58503, 'https://ror.org/03bpyhp77', 'en', 1, 'https://ror.org/03bpyhp77 Social Insurance Institute ĪŠĪ“ĻĻ…Ī¼Ī± ĪšĪæĪ¹Ī½Ļ‰Ī½Ī¹ĪŗĻŽĪ½ Ī‘ĻƒĻ†Ī±Ī»ĪÆĻƒĪµĻ‰Ī½'),
(58504, 'https://ror.org/02k3jph89', 'pt', 1, 'https://ror.org/02k3jph89 Instituto de CiĆŖncias FarmacĆŖuticas'),
(58505, 'https://ror.org/01tr7z120', 'en', 1, 'https://ror.org/01tr7z120 Institut National de la SantƩ Publique National Institute of Public Health'),
(58506, 'https://ror.org/00r9kn296', 'es', 1, 'https://ror.org/00r9kn296 Instituto Oncológico Dr. Rosell'),
(58507, 'https://ror.org/03eyfxj96', 'ro', 1, 'https://ror.org/03eyfxj96 Spitalul Clinic Judeţean de Urgenţe "Sf. Spiridon" Iaşi'),
(58508, 'https://ror.org/00hg1xm75', 'pt', 1, 'https://ror.org/00hg1xm75 ABCD Institute Instituto ABCD'),
(58509, 'https://ror.org/01p894e02', 'en', 1, 'https://ror.org/01p894e02 Institute of Health Visiting'),
(58510, 'https://ror.org/02jgzx216', 'en', 1, 'https://ror.org/02jgzx216 The Institute of Addiction Medicine'),
(58511, 'https://ror.org/03ckfsa43', 'en', 1, 'https://ror.org/03ckfsa43 Institute of Population, Health and Development'),
(58512, 'https://ror.org/007c43p06', 'pt', 1, 'https://ror.org/007c43p06 Brazilian Institute of Osteopathy Instituto Brasileiro de Osteopatia'),
(58513, 'https://ror.org/05vhw2a70', 'en', 1, 'https://ror.org/05vhw2a70 Institute of Kidney Lifescience Technologies'),
(58514, 'https://ror.org/05sa02996', 'en', 1, 'https://ror.org/05sa02996 The Institute of Aesthetic Surgery'),
(58515, 'https://ror.org/00s6s1191', 'en', 1, 'https://ror.org/00s6s1191 Institute for Progressive Medicine'),
(58516, 'https://ror.org/03fmtg610', 'de', 1, 'https://ror.org/03fmtg610 Institut für alternative und nachhaltige Ernährung'),
(58517, 'https://ror.org/03xmq3f10', 'en', 1, 'https://ror.org/03xmq3f10 Institute for Regenerative and Cellular Medicine'),
(58518, 'https://ror.org/02bttzs67', 'pt', 1, 'https://ror.org/02bttzs67 Instituto Brasiliense de Otorrinolaringologia'),
(58519, 'https://ror.org/046np1j53', 'sr', 1, 'https://ror.org/046np1j53 Institut za Reumatologiju'),
(58520, 'https://ror.org/053n8e896', 'pt', 1, 'https://ror.org/053n8e896 Instituto do Sono'),
(58521, 'https://ror.org/05c25gm39', 'es', 1, 'https://ror.org/05c25gm39 Cardiovascular Institute of Rosario Instituto Cardiovascular de Rosario'),
(58522, 'https://ror.org/0130pvq33', 'en', 1, 'https://ror.org/0130pvq33 Institute of Skin and Product Evaluation'),
(58523, 'https://ror.org/0160xcw76', 'pt', 1, 'https://ror.org/0160xcw76 Fundação Saúde'),
(58524, 'https://ror.org/02q13mm97', 'en', 1, 'https://ror.org/02q13mm97 Regenerative Medicine Institute'),
(58525, 'https://ror.org/040a4rx48', 'fr', 1, 'https://ror.org/040a4rx48 Institut SupĆ©rieur du Sport et de l’Éducation Physique de Sfax'),
(58526, 'https://ror.org/00t6f7r78', 'pt', 1, 'https://ror.org/00t6f7r78 Instituto Financeiro para o Desenvolvimento Regional'),
(58527, 'https://ror.org/01fyfmc75', 'es', 1, 'https://ror.org/01fyfmc75 Instituto MƩdico DAMIC'),
(58528, 'https://ror.org/014fcp763', 'pt', 1, 'https://ror.org/014fcp763 Instituto de Gastroenterologia de Goiânia'),
(58529, 'https://ror.org/053q96737', 'en', 1, 'https://ror.org/053q96737 International Renal Research Institute of Vicenza'),
(58530, 'https://ror.org/02ffj8167', 'es', 1, 'https://ror.org/02ffj8167 Instituto Hispalense de Pediatria'),
(58531, 'https://ror.org/00113vt82', 'en', 1, 'https://ror.org/00113vt82 International Spine and Pain Institute'),
(58532, 'https://ror.org/05s432v08', 'en', 1, 'https://ror.org/05s432v08 Institute of Vaccine and Medical Biologicals'),
(58533, 'https://ror.org/00k87m820', 'es', 1, 'https://ror.org/00k87m820 Instituto de Cancerologƭa Las AmƩricas'),
(58534, 'https://ror.org/00jzckp39', 'es', 1, 'https://ror.org/00jzckp39 Instituto Dr. Jaime Slullitel'),
(58535, 'https://ror.org/05xte2s27', 'de', 1, 'https://ror.org/05xte2s27 Institut für Versorgungsforschung in der Onkologie'),
(58536, 'https://ror.org/04bzrjn90', 'es', 1, 'https://ror.org/04bzrjn90 Instituto Jalisciense de CancerologĆ­a'),
(58537, 'https://ror.org/05jrvwk92', 'pt', 1, 'https://ror.org/05jrvwk92 ClĆ­nica e Instituto de Oftalmologia Ivo CorrĆŖa Meyer'),
(58538, 'https://ror.org/04ftscg80', 'pt', 1, 'https://ror.org/04ftscg80 Instituto Paulista de Estudos e Pesquisas em Oftalmologia'),
(58539, 'https://ror.org/00xmdg797', 'en', 1, 'https://ror.org/00xmdg797 Canary Institute of Cancer Research Instituto Canario de Investigación del CÔncer'),
(58540, 'https://ror.org/00rq8s219', 'en', 1, 'https://ror.org/00rq8s219 Knight Dermatology Institute'),
(58541, 'https://ror.org/01hq5vx73', 'en', 1, 'https://ror.org/01hq5vx73 Irish Nutrition & Dietetic Institute'),
(58542, 'https://ror.org/059hprj06', 'es', 1, 'https://ror.org/059hprj06 Hospital Recoletas Campo Grande'),
(58543, 'https://ror.org/001czh282', 'en', 1, 'https://ror.org/001czh282 The Irvine Institute of Medicine & Cosmetic Surgery'),
(58544, 'https://ror.org/054azm735', 'es', 1, 'https://ror.org/054azm735 Instituto de OncologĆ­a de Rosario'),
(58545, 'https://ror.org/0130c0t65', 'no_lang_code', 1, 'https://ror.org/0130c0t65 Instituto Lala (Mexico)'),
(58546, 'https://ror.org/01wq36e29', 'en', 1, 'https://ror.org/01wq36e29 Kochan Institute for Healing Arts Research'),
(58547, 'https://ror.org/01tt4qx37', 'en', 1, 'https://ror.org/01tt4qx37 Kuwait Institute for Medical Specialization'),
(58548, 'https://ror.org/02t771148', 'en', 1, 'https://ror.org/02t771148 National Cancer Institute'),
(58549, 'https://ror.org/03x78vf16', 'es', 1, 'https://ror.org/03x78vf16 Instituto MƩdico Platense'),
(58550, 'https://ror.org/011yfra46', 'pt', 1, 'https://ror.org/011yfra46 Instituto Ivo Pitanguy'),
(58551, 'https://ror.org/000kkgk42', 'es', 1, 'https://ror.org/000kkgk42 Instituto de OncologĆ­a y RadiobiologĆ­a'),
(58552, 'https://ror.org/00qa3s733', 'es', 1, 'https://ror.org/00qa3s733 Heart Institute Bucaramanga Instituto del Corazón de Bucaramanga'),
(58553, 'https://ror.org/01gycem28', 'pt', 1, 'https://ror.org/01gycem28 Dermatological Center Dona Libânia Instituto de Dermatologia Dona Libania'),
(58554, 'https://ror.org/02ebs9s22', 'es', 1, 'https://ror.org/02ebs9s22 Instituto MƩdico TinerfeƱo'),
(58555, 'https://ror.org/02et0er40', 'en', 1, 'https://ror.org/02et0er40 Institut Jaques-Dalcroze'),
(58556, 'https://ror.org/02x8fdg77', 'en', 1, 'https://ror.org/02x8fdg77 Lake Erie Research Institute'),
(58557, 'https://ror.org/05dd2e480', 'en', 1, 'https://ror.org/05dd2e480 JEM Research Institute'),
(58558, 'https://ror.org/00d619908', 'es', 1, 'https://ror.org/00d619908 Instituto Mexicano de OftalmologĆ­a IAP'),
(58559, 'https://ror.org/00nvqm770', 'pt', 1, 'https://ror.org/00nvqm770 Instituto de Medicina AvanƧada'),
(58560, 'https://ror.org/05dd4dx68', 'es', 1, 'https://ror.org/05dd4dx68 Institute of Hematology and Immunology Instituto de HematologĆ­a e InmunologĆ­a'),
(58561, 'https://ror.org/01zhtdv64', 'es', 1, 'https://ror.org/01zhtdv64 Hospital General De Zona'),
(58562, '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'),
(58563, 'https://ror.org/006gcvq32', 'en', 1, 'https://ror.org/006gcvq32 The Milton H. Erickson Foundation'),
(58564, 'https://ror.org/04caxkq63', 'en', 1, 'https://ror.org/04caxkq63 LCC Medical Research Institute'),
(58565, 'https://ror.org/004znty77', 'en', 1, 'https://ror.org/004znty77 Joint Replacement Institute'),
(58566, 'https://ror.org/02cdcxq67', 'es', 1, 'https://ror.org/02cdcxq67 Instituto de Salud de Bucaramanga'),
(58567, 'https://ror.org/03n4vgh07', 'en', 1, 'https://ror.org/03n4vgh07 Jordan-Young Institute'),
(58568, 'https://ror.org/03z7zv664', 'es', 1, 'https://ror.org/03z7zv664 Instituto de Salud del Estado de MƩxico'),
(58569, 'https://ror.org/0575y1m09', 'es', 1, 'https://ror.org/0575y1m09 Instituto de Salud MusculoesquelƩtica'),
(58570, 'https://ror.org/04wnsdv29', 'en', 1, 'https://ror.org/04wnsdv29 Mandya Institute of Medical Sciences ą²®ą²‚ą²”ą³ą²Æ ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²«ą³ ą²®ą³†ą²”ą²æą²•ą²²ą³ ą²øą³ˆą²Øą³ą²øą³'),
(58571, 'https://ror.org/00fq8t576', 'en', 1, 'https://ror.org/00fq8t576 Liberian Institute for Biomedical Research'),
(58572, 'https://ror.org/054bkqx30', 'pt', 1, 'https://ror.org/054bkqx30 Instituto de Terapia Integrada e Oriental'),
(58573, 'https://ror.org/03zqa2346', 'en', 1, 'https://ror.org/03zqa2346 Manitoba Institute for Patient Safety'),
(58574, 'https://ror.org/045ayna68', 'en', 1, 'https://ror.org/045ayna68 Justin Parker Neurological Institute'),
(58575, 'https://ror.org/02qthww36', 'en', 1, 'https://ror.org/02qthww36 Libin Cardiovascular Institute of Alberta'),
(58576, 'https://ror.org/05pnxjq94', 'no_lang_code', 1, 'https://ror.org/05pnxjq94 Kaali Institute Kaali Intezet'),
(58577, 'https://ror.org/014w2tt04', 'en', 1, 'https://ror.org/014w2tt04 Life Care Institute of Medical Sciences & Research'),
(58578, 'https://ror.org/01mze9517', 'it', 1, 'https://ror.org/01mze9517 Istituto di Ematologia di Bologna'),
(58579, 'https://ror.org/01sp6c076', 'en', 1, 'https://ror.org/01sp6c076 Kansas City Area Life Sciences Institute'),
(58580, 'https://ror.org/02s8t4443', 'en', 1, 'https://ror.org/02s8t4443 Kansas City Research Institute'),
(58581, 'https://ror.org/04gw1ym87', 'pt', 1, 'https://ror.org/04gw1ym87 Instituto do CƩrebro de Brasƭlia'),
(58582, 'https://ror.org/00xt7wr93', 'en', 1, 'https://ror.org/00xt7wr93 Michigan Institute of Urology'),
(58583, 'https://ror.org/02qq1pn56', 'es', 1, 'https://ror.org/02qq1pn56 Liga Nacional Contra el CƔncer'),
(58584, 'https://ror.org/02ze9rw51', 'en', 1, 'https://ror.org/02ze9rw51 KaRaMinds'),
(58585, 'https://ror.org/04xg96b46', 'pt', 1, 'https://ror.org/04xg96b46 Instituto de Oncologia do ParanĆ”'),
(58586, 'https://ror.org/02sxbsz55', 'en', 1, 'https://ror.org/02sxbsz55 Castanera Institute of Ophthalmology Instituto de OftalmologĆ­a Castanera'),
(58587, 'https://ror.org/023grzj16', 'en', 1, 'https://ror.org/023grzj16 Karachi Institute of Heart Diseases'),
(58588, 'https://ror.org/03e5wjh27', 'en', 1, 'https://ror.org/03e5wjh27 Mayfield Brain & Spine'),
(58589, 'https://ror.org/04hc4vy44', 'en', 1, 'https://ror.org/04hc4vy44 Los Angeles Neurological Institute'),
(58590, 'https://ror.org/00y3gz942', 'eu', 1, 'https://ror.org/00y3gz942 Clinic IMQ Zorrotzaurre'),
(58591, 'https://ror.org/00hf4ew78', 'en', 1, 'https://ror.org/00hf4ew78 OpenBiome'),
(58592, 'https://ror.org/013cqn582', 'en', 1, 'https://ror.org/013cqn582 McGuire Institute'),
(58593, 'https://ror.org/03n556v93', 'es', 1, 'https://ror.org/03n556v93 Instituto para la Atención y Prevención de las Adicciones'),
(58594, 'https://ror.org/049snp549', 'es', 1, 'https://ror.org/049snp549 Instituto para NiƱos Ciegos y Sordos del Valle del Cauca'),
(58595, 'https://ror.org/022vsje77', 'pt', 1, 'https://ror.org/022vsje77 Hospital IPO Instituto Paranaense de Otorrinolaringologia'),
(58596, 'https://ror.org/04vkz4w22', 'en', 1, 'https://ror.org/04vkz4w22 Rowe Neurology Institute'),
(58597, 'https://ror.org/009xczs96', 'en', 1, 'https://ror.org/009xczs96 Midas Multispeciality Hospital'),
(58598, 'https://ror.org/000emaz53', 'en', 1, 'https://ror.org/000emaz53 Midwest Aortic & Vascular Institute'),
(58599, 'https://ror.org/03ddhm954', 'en', 1, 'https://ror.org/03ddhm954 Keogh Institute for Medical Research'),
(58600, 'https://ror.org/00108f448', 'en', 1, 'https://ror.org/00108f448 Midwest Institute for Minimally Invasive Therapies'),
(58601, 'https://ror.org/014qd2j86', 'pt', 1, 'https://ror.org/014qd2j86 Instituto Scribner'),
(58602, 'https://ror.org/05x5j6e28', 'en', 1, 'https://ror.org/05x5j6e28 The Hospital of Central Connecticut'),
(58603, 'https://ror.org/03ypq8732', 'es', 1, 'https://ror.org/03ypq8732 Instituto Sexológico Murciano'),
(58604, 'https://ror.org/03f5v0b74', 'en', 1, 'https://ror.org/03f5v0b74 Midwest Stone Institute'),
(58605, 'https://ror.org/005zj1y35', 'es', 1, 'https://ror.org/005zj1y35 Somdex Ginecologia Dr. Santiago Dexeus'),
(58606, 'https://ror.org/016978714', 'en', 1, 'https://ror.org/016978714 Lung Institute'),
(58607, 'https://ror.org/04rd2ca50', 'pt', 1, 'https://ror.org/04rd2ca50 Instituto Tropical de Medicina Reprodutiva'),
(58608, 'https://ror.org/00wa55978', 'en', 1, 'https://ror.org/00wa55978 Lymphatic Malformation Institute');
INSERT INTO `rors` VALUES
(58609, 'https://ror.org/00c7tye13', 'pt', 1, 'https://ror.org/00c7tye13 Medcin Dermatologia'),
(58610, 'https://ror.org/00b168w70', 'es', 1, 'https://ror.org/00b168w70 ClĆ­nica IVI Alicante'),
(58611, 'https://ror.org/03707xt68', 'en', 1, 'https://ror.org/03707xt68 Minimally Invasive Pain Institute'),
(58612, 'https://ror.org/046h4sg67', 'pt', 1, 'https://ror.org/046h4sg67 Instituto Vascular BH'),
(58613, 'https://ror.org/04zymc478', 'en', 1, 'https://ror.org/04zymc478 National Cancer Institute of Sri Lanka'),
(58614, 'https://ror.org/00a34ea95', 'ro', 1, 'https://ror.org/00a34ea95 Institutul Regional de Gastroenterologie Prof. Dr. Octavian Fodor'),
(58615, 'https://ror.org/03vkvz969', 'en', 1, 'https://ror.org/03vkvz969 National Institute of Lymphology'),
(58616, 'https://ror.org/02d893y24', 'en', 1, 'https://ror.org/02d893y24 Medical Mission Institute Missionsärztliches Institut Würzburg'),
(58617, 'https://ror.org/02qs4wf90', 'en', 1, 'https://ror.org/02qs4wf90 National Institute of Neurosciences & Hospital'),
(58618, 'https://ror.org/04sqj7m79', 'en', 1, 'https://ror.org/04sqj7m79 National Heart Foundation Hospital & Research Institute'),
(58619, 'https://ror.org/055273664', 'en', 1, 'https://ror.org/055273664 National Heart Institute'),
(58620, 'https://ror.org/01krara14', 'en', 1, 'https://ror.org/01krara14 Metropolitan Jewish Health System'),
(58621, 'https://ror.org/03vkvcw90', 'en', 1, 'https://ror.org/03vkvcw90 Montana Health Research Institute'),
(58622, 'https://ror.org/0405m4551', 'en', 1, 'https://ror.org/0405m4551 MedStar Heart & Vascular Institute'),
(58623, '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'),
(58624, 'https://ror.org/03kh2bz92', 'en', 1, 'https://ror.org/03kh2bz92 National Institute of Public Health ąŗŖąŗ°ąŗ–ąŗ²ąŗšąŗ±ąŗ™ąŗŖąŗ²ąŗ—ąŗ²ąŗ„ąŗ°ąŗ™ąŗ°ąŗŖąŗøąŗą»ąŗ«ą»ˆąŗ‡ąŗŠąŗ²ąŗ”'),
(58625, 'https://ror.org/04vvsta47', 'en', 1, 'https://ror.org/04vvsta47 National Institute for Health Care Reform'),
(58626, 'https://ror.org/04atyxw20', 'en', 1, 'https://ror.org/04atyxw20 Morrison Vein Institute'),
(58627, 'https://ror.org/016d4cn96', 'en', 1, 'https://ror.org/016d4cn96 Memorial Healthcare System'),
(58628, 'https://ror.org/043m5qs92', 'en', 1, 'https://ror.org/043m5qs92 New Mexico Heart Institute'),
(58629, 'https://ror.org/01xsmp527', 'en', 1, 'https://ror.org/01xsmp527 New York Glaucoma Research Institute'),
(58630, 'https://ror.org/04xbtey77', 'en', 1, 'https://ror.org/04xbtey77 National Institute for Public Safety Health'),
(58631, 'https://ror.org/05psxec48', 'en', 1, 'https://ror.org/05psxec48 Hunan Institute of Mental Health ę¹–å—ēœåæƒē†å«ē”Ÿē ”ē©¶ę‰€'),
(58632, 'https://ror.org/039mjhc39', 'no_lang_code', 1, 'https://ror.org/039mjhc39 Masih Daneshvari Hospital Ł…ŁˆŲ³Ų³Ł‡ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ł…Ł„ŪŒ سل و ŲØŪŒŁ…Ų§Ų±ŪŒŁ‡Ų§ŪŒ ریوی'),
(58633, 'https://ror.org/004fmny49', 'en', 1, 'https://ror.org/004fmny49 Mercy NeuroScience Institute'),
(58634, 'https://ror.org/05bvayz93', 'no_lang_code', 1, 'https://ror.org/05bvayz93 Muhimbili Orthopaedic Institute'),
(58635, 'https://ror.org/02201aj62', 'en', 1, 'https://ror.org/02201aj62 National Research Institute'),
(58636, 'https://ror.org/00t9eqw18', 'en', 1, 'https://ror.org/00t9eqw18 NZ Respiratory & Sleep Institute'),
(58637, 'https://ror.org/04dn07m96', 'es', 1, 'https://ror.org/04dn07m96 Instituto Nacional de las Mujeres National Institute of Women'),
(58638, 'https://ror.org/01kkh1557', 'en', 1, 'https://ror.org/01kkh1557 Miami Dermatology and Laser Institute'),
(58639, 'https://ror.org/054zhk838', 'en', 1, 'https://ror.org/054zhk838 National Scientific Center "M.D. Strazhesko Institute of Cardiology" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр ''М.Š”. Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карГіології ім. Дтражеска'),
(58640, 'https://ror.org/012m33j29', 'en', 1, 'https://ror.org/012m33j29 NKP Salve Institute of Medical Sciences and Lata Mangeshkar Hospital'),
(58641, 'https://ror.org/018akcp84', 'en', 1, 'https://ror.org/018akcp84 Multiple Sclerosis Research Institute'),
(58642, 'https://ror.org/04vr72n28', 'en', 1, 'https://ror.org/04vr72n28 Michigan Head and Spine Institute'),
(58643, 'https://ror.org/03zgxjc71', 'en', 1, 'https://ror.org/03zgxjc71 Ohio Gastroenterology and Liver Institute'),
(58644, 'https://ror.org/04x7hfy59', 'en', 1, 'https://ror.org/04x7hfy59 Naples Community Hospital Healthcare System'),
(58645, 'https://ror.org/04avexy41', 'en', 1, 'https://ror.org/04avexy41 North American Family Institute'),
(58646, 'https://ror.org/01zgn7x32', 'en', 1, 'https://ror.org/01zgn7x32 Ohio Sinus Institute'),
(58647, 'https://ror.org/03rp11m69', 'en', 1, 'https://ror.org/03rp11m69 Municipal Autonomous Healthcare Institution'),
(58648, 'https://ror.org/00hsk0n38', 'en', 1, 'https://ror.org/00hsk0n38 Sonoma West Medical Center'),
(58649, 'https://ror.org/002rp9w47', 'en', 1, 'https://ror.org/002rp9w47 National Institute of Emergency Medicine "Pirogov"'),
(58650, 'https://ror.org/017ymfm59', 'en', 1, 'https://ror.org/017ymfm59 Oklahoma Cancer Specialists and Research Institute'),
(58651, 'https://ror.org/05amk1r13', 'en', 1, 'https://ror.org/05amk1r13 Children''s City Clinical Hospital ā„–11'),
(58652, 'https://ror.org/03z71e370', 'en', 1, 'https://ror.org/03z71e370 Municipal Budgetary Health care Institution "Clinical and Diagnostic Center" Health'),
(58653, 'https://ror.org/02smpkw21', 'en', 1, 'https://ror.org/02smpkw21 Northern Cancer Institute'),
(58654, 'https://ror.org/049kj1302', 'es', 1, 'https://ror.org/049kj1302 Instituto de GastroenterologĆ­a'),
(58655, 'https://ror.org/00h4bp382', 'en', 1, 'https://ror.org/00h4bp382 Oklahoma Heart Institute'),
(58656, 'https://ror.org/008vha608', 'no_lang_code', 1, 'https://ror.org/008vha608 NestlƩ (South Africa)'),
(58657, 'https://ror.org/03s477z20', 'en', 1, 'https://ror.org/03s477z20 Penny George Institute for Health and Healing'),
(58658, 'https://ror.org/024r17c76', 'en', 1, 'https://ror.org/024r17c76 17-я Š³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń поликлиника 17th City Children''s Clinical Polyclinic'),
(58659, 'https://ror.org/00qb56q84', 'en', 1, 'https://ror.org/00qb56q84 Hospital at Smolensk Station ŠŠ£Š— ŠžŃ‚Š“ŠµŠ»ŠµŠ½Ń‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° на ст. Дмоленск ŠžŠŠž «РЖД»'),
(58660, 'https://ror.org/04q14s497', 'en', 1, 'https://ror.org/04q14s497 Peregrine Eye and Laser Institute'),
(58661, 'https://ror.org/0431xay97', 'no_lang_code', 1, 'https://ror.org/0431xay97 pfm medical (Germany)'),
(58662, 'https://ror.org/04v9dga39', 'en', 1, 'https://ror.org/04v9dga39 NOVO Cellular Medicine Institute'),
(58663, '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"'),
(58664, 'https://ror.org/00yjka566', 'en', 1, 'https://ror.org/00yjka566 Neurogen Brain & Spine Institute'),
(58665, 'https://ror.org/032q9qk24', 'no_lang_code', 1, 'https://ror.org/032q9qk24 Novum Pharmaceutical Research Services (United States)'),
(58666, 'https://ror.org/0346nyf55', 'en', 1, 'https://ror.org/0346nyf55 Oncology Institute of Hope and Innovation'),
(58667, 'https://ror.org/01zwbyz86', 'en', 1, 'https://ror.org/01zwbyz86 Pharmacology Research Institute'),
(58668, 'https://ror.org/02ea83075', 'en', 1, 'https://ror.org/02ea83075 Neurological Research Institute'),
(58669, 'https://ror.org/02fp4k302', 'en', 1, 'https://ror.org/02fp4k302 City Hospital ā„– 1 named after. ON. Semashko'),
(58670, 'https://ror.org/01bn2tj09', 'en', 1, 'https://ror.org/01bn2tj09 Palm Beach Neurology'),
(58671, 'https://ror.org/05am1q986', 'en', 1, 'https://ror.org/05am1q986 Pharmalog (Germany)'),
(58672, 'https://ror.org/02mtbpn10', 'en', 1, 'https://ror.org/02mtbpn10 NeuroModulation Technique'),
(58673, 'https://ror.org/05tfxp741', 'en', 1, 'https://ror.org/05tfxp741 Ocean Road Cancer Institute'),
(58674, 'https://ror.org/048d4kk91', 'no_lang_code', 1, 'https://ror.org/048d4kk91 National Bioproducts Institute (South Africa)'),
(58675, 'https://ror.org/03jxkz251', 'it', 1, 'https://ror.org/03jxkz251 Istituto Tumori Bari'),
(58676, 'https://ror.org/049gtbp49', 'en', 1, 'https://ror.org/049gtbp49 ProCare Odessa Heart Institute'),
(58677, 'https://ror.org/05ng5j404', 'en', 1, 'https://ror.org/05ng5j404 Saratov City Clinical Hospital ā„– 2 named. IN AND. Razumovsky'),
(58678, 'https://ror.org/050p5yf06', 'en', 1, 'https://ror.org/050p5yf06 Open Medicine Institute'),
(58679, 'https://ror.org/049at5m16', 'en', 1, 'https://ror.org/049at5m16 Cypress Pointe Pain Management'),
(58680, 'https://ror.org/0307hqx04', 'en', 1, 'https://ror.org/0307hqx04 Vinnytsya Regional Psychoneurological Hospital named after Academician O.I. Yushchenko'),
(58681, 'https://ror.org/042j4et55', 'en', 1, 'https://ror.org/042j4et55 Philippines Tuberculosis Society'),
(58682, 'https://ror.org/01bs4z154', 'en', 1, 'https://ror.org/01bs4z154 NeuroSpine Institute'),
(58683, 'https://ror.org/05pnggp67', 'en', 1, 'https://ror.org/05pnggp67 Oregon Urology Institute'),
(58684, 'https://ror.org/05qz4m566', 'en', 1, 'https://ror.org/05qz4m566 Regional Clinical Hospital named after II Mechnikov'),
(58685, 'https://ror.org/02pzmtt36', 'en', 1, 'https://ror.org/02pzmtt36 Physician’s Hair Institute'),
(58686, 'https://ror.org/013cjx333', 'en', 1, 'https://ror.org/013cjx333 Physicians Laser and Dermatology Institute'),
(58687, 'https://ror.org/030ss4c03', 'en', 1, 'https://ror.org/030ss4c03 Bharath Hospital & Institute of Oncology'),
(58688, 'https://ror.org/04x5fjw90', 'en', 1, 'https://ror.org/04x5fjw90 OrthoCarolina Research Institute'),
(58689, 'https://ror.org/02xtw2e05', 'en', 1, 'https://ror.org/02xtw2e05 Plano Cancer Institute'),
(58690, 'https://ror.org/01b1d2r15', 'en', 1, 'https://ror.org/01b1d2r15 Plastic Surgery Institute of San Francisco'),
(58691, 'https://ror.org/018w1ab26', 'en', 1, 'https://ror.org/018w1ab26 Instituto Salgado de SaĆŗde Integral Salgado Institute of Integral Health'),
(58692, 'https://ror.org/03r50rc39', 'en', 1, 'https://ror.org/03r50rc39 Orthopaedic Institute for Children'),
(58693, 'https://ror.org/04901sx27', 'en', 1, 'https://ror.org/04901sx27 Port Macquarie Base Hospital'),
(58694, 'https://ror.org/02yvvjz71', 'en', 1, 'https://ror.org/02yvvjz71 Orthopaedic Institute of Western Kentucky'),
(58695, 'https://ror.org/04c0eje39', 'en', 1, 'https://ror.org/04c0eje39 Regional Public Health Care Institution "City Hospital No. 5, Barnaul" ŠšŃ€Š°ŠµŠ²Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Ā«Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–5, г. Š‘Š°Ń€Š½Š°ŃƒŠ»Ā»'),
(58696, 'https://ror.org/01r157087', 'en', 1, 'https://ror.org/01r157087 Orthopaedic Specialty Institute'),
(58697, 'https://ror.org/05kv4r135', 'en', 1, 'https://ror.org/05kv4r135 Regional State Budget Health Care Institution "Regional Clinical Hospital" ŠšŃ€Š°ŠµŠ²Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Ā«ŠšŃ€Š°ŠµŠ²Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°Ā»'),
(58698, 'https://ror.org/04dv35865', 'en', 1, 'https://ror.org/04dv35865 San Antonio Endovascular & Heart Institute'),
(58699, 'https://ror.org/040gwjm94', 'no_lang_code', 1, 'https://ror.org/040gwjm94 MusclePharm Sports Science Institute (United States)'),
(58700, 'https://ror.org/00p75zw90', 'en', 1, 'https://ror.org/00p75zw90 Regional State Budgetary Healthcare Institution "Smolensk Regional Clinical Hospital" ŠžŠ±Š»Š°ŃŃ‚Š½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Ā«Š”Š¼Š¾Š»ŠµŠ½ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°Ā»'),
(58701, 'https://ror.org/05js1ap63', 'en', 1, 'https://ror.org/05js1ap63 Prairie Vascular Institute'),
(58702, 'https://ror.org/04n43dm09', 'en', 1, 'https://ror.org/04n43dm09 Colorado Sleep Institute'),
(58703, 'https://ror.org/003y1qj16', 'en', 1, 'https://ror.org/003y1qj16 Sanyu Africa Research Institute'),
(58704, 'https://ror.org/0101p7966', 'en', 1, 'https://ror.org/0101p7966 Orthopedic Sports Medicine & Spine Care Institute'),
(58705, 'https://ror.org/045jrd330', 'en', 1, 'https://ror.org/045jrd330 Dallas Nephrology Associates'),
(58706, 'https://ror.org/045d8mm77', 'en', 1, 'https://ror.org/045d8mm77 Precision Research Institute'),
(58707, 'https://ror.org/03kc8nj63', 'de', 1, 'https://ror.org/03kc8nj63 Medizinisches Wirtschaftsinstitut'),
(58708, 'https://ror.org/05ccbwp98', 'en', 1, 'https://ror.org/05ccbwp98 Premier Clinical Research Institute'),
(58709, 'https://ror.org/044xe3t49', 'lt', 1, 'https://ror.org/044xe3t49 Respublikinės Kauno Ligoninės'),
(58710, 'https://ror.org/01r8yv121', 'en', 1, 'https://ror.org/01r8yv121 Research & Development Institute'),
(58711, 'https://ror.org/032y5sx52', 'en', 1, 'https://ror.org/032y5sx52 HealthONE'),
(58712, 'https://ror.org/023swa857', 'en', 1, 'https://ror.org/023swa857 Sarasota Retina Institute'),
(58713, 'https://ror.org/00qtj8f75', 'en', 1, 'https://ror.org/00qtj8f75 Princeton Medical Institute'),
(58714, 'https://ror.org/04qzmty18', 'en', 1, 'https://ror.org/04qzmty18 Saroj Gupta Cancer Centre & Research Institute'),
(58715, 'https://ror.org/04ssr4v64', 'en', 1, 'https://ror.org/04ssr4v64 Research Institute for Child Psychology and Pathopsychology Vyskumny Ustav Detskej Psychologie a Patopsychologie'),
(58716, 'https://ror.org/011z6ge83', 'no_lang_code', 1, 'https://ror.org/011z6ge83 Proderm (Germany)'),
(58717, 'https://ror.org/04xkx8s32', 'en', 1, 'https://ror.org/04xkx8s32 Nasser Institute hospital'),
(58718, 'https://ror.org/04fx78583', 'en', 1, 'https://ror.org/04fx78583 CalNeuro Research Group'),
(58719, 'https://ror.org/05w3mbc13', 'no_lang_code', 1, 'https://ror.org/05w3mbc13 Shenzhen Hanke Bioengineering (China)'),
(58720, 'https://ror.org/04fap3q60', 'en', 1, 'https://ror.org/04fap3q60 Pacific Rim Electrophysiology Research Institute'),
(58721, 'https://ror.org/028gsb865', 'en', 1, 'https://ror.org/028gsb865 Research Institute of South Florida'),
(58722, 'https://ror.org/05avj5s69', 'en', 1, 'https://ror.org/05avj5s69 Shenzhen Genoimmune Medical Institute'),
(58723, 'https://ror.org/03rzd8715', 'en', 1, 'https://ror.org/03rzd8715 Michigan Healthcare Professionals'),
(58724, 'https://ror.org/00878jj67', 'en', 1, 'https://ror.org/00878jj67 Pain Management Institute'),
(58725, 'https://ror.org/01ntyhv86', 'en', 1, 'https://ror.org/01ntyhv86 Prostate Institute of America'),
(58726, 'https://ror.org/00bpfyj89', 'en', 1, 'https://ror.org/00bpfyj89 Shenzhen Inno Translational Medicine Institute'),
(58727, 'https://ror.org/00gdw7f12', 'en', 1, 'https://ror.org/00gdw7f12 Royal Dutch Pharmacists Association'),
(58728, 'https://ror.org/0168gzc62', 'en', 1, 'https://ror.org/0168gzc62 Public institution Respublikinė Šiauliai Hospital'),
(58729, 'https://ror.org/05x6pvv95', 'en', 1, 'https://ror.org/05x6pvv95 Retina Institute'),
(58730, 'https://ror.org/00gteb412', 'en', 1, 'https://ror.org/00gteb412 Retina Macula Institute'),
(58731, 'https://ror.org/0260mkc43', 'en', 1, 'https://ror.org/0260mkc43 Retina Research Institute of Texas'),
(58732, 'https://ror.org/01pk0nx86', 'en', 1, 'https://ror.org/01pk0nx86 Retina Specialty Institute'),
(58733, 'https://ror.org/04pnmxh23', 'en', 1, 'https://ror.org/04pnmxh23 Public Health Research Institute Of India'),
(58734, 'https://ror.org/021ayzg23', 'no_lang_code', 1, 'https://ror.org/021ayzg23 Institut MƩrieux (United States)'),
(58735, 'https://ror.org/03k6pst70', 'en', 1, 'https://ror.org/03k6pst70 Kharkiv Regional Clinical Psychiatric Hospital No 3 Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° обласна клінічна психіатрична Š»Ń–ŠŗŠ°Ń€Š½Ń'),
(58736, 'https://ror.org/008pyjt05', 'en', 1, 'https://ror.org/008pyjt05 Institut für Pathologie Celle Institute of Pathology Celle'),
(58737, 'https://ror.org/00gnc0t86', 'en', 1, 'https://ror.org/00gnc0t86 Sleep to Live Institute'),
(58738, 'https://ror.org/00fb1n669', 'en', 1, 'https://ror.org/00fb1n669 Rhode Island Mood and Memory Research Institute'),
(58739, 'https://ror.org/001av7v52', 'en', 1, 'https://ror.org/001av7v52 Dr. h.c. Robert Mathys Stiftung für Forschung RMS Foundation'),
(58740, 'https://ror.org/00dmsga81', 'en', 1, 'https://ror.org/00dmsga81 Palomar Health'),
(58741, 'https://ror.org/01m9bke74', 'en', 1, 'https://ror.org/01m9bke74 State Clinical Hospital "Clinical Oncology Center No. 1'),
(58742, 'https://ror.org/03gv2tj61', 'no_lang_code', 1, 'https://ror.org/03gv2tj61 Scottsdale Research Institute (United States)'),
(58743, 'https://ror.org/03pnhfc19', 'no_lang_code', 1, 'https://ror.org/03pnhfc19 Dermatrendz'),
(58744, 'https://ror.org/04cmvex31', 'ru', 1, 'https://ror.org/04cmvex31 Arkhangel''skiy Klinicheskiy Onkologicheskiy Dispanser ŠŃ€Ń…Š°Š½Š³ŠµŠ»ŃŒŃŠŗŠøŠ¹ клинический онкологический Гиспансер'),
(58745, 'https://ror.org/05prbcv50', 'en', 1, 'https://ror.org/05prbcv50 Ruane Medical'),
(58746, 'https://ror.org/02trxcb02', 'en', 1, 'https://ror.org/02trxcb02 Pyatigorsk Oncology Center ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ онкологический Гиспансер'),
(58747, 'https://ror.org/02207mt46', 'en', 1, 'https://ror.org/02207mt46 Pelvic & Sexual Health Institute'),
(58748, 'https://ror.org/01jykf083', 'en', 1, 'https://ror.org/01jykf083 The Seattle Institute for Cardiac Research'),
(58749, 'https://ror.org/005hc0b16', 'en', 1, 'https://ror.org/005hc0b16 Stavropol Regional Clinical Oncology Center Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ областной клинический онкологический Гиспансер'),
(58750, 'https://ror.org/02wx2j769', 'en', 1, 'https://ror.org/02wx2j769 South Coast Dermatology Institute'),
(58751, 'https://ror.org/00hkez230', 'en', 1, 'https://ror.org/00hkez230 Leningrad Regional Cancer Center ЛенинграГский областной онкологический Гиспансер'),
(58752, 'https://ror.org/04evbhe06', 'en', 1, 'https://ror.org/04evbhe06 Arkhangelsk Children''s Clinical Hospital named P.G.Vyzhletsova ŠŃ€Ń…Š°Š½Š³ŠµŠ»ŃŒŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° им. П.Š“. Выжцовой'),
(58753, 'https://ror.org/04jzqr098', 'en', 1, 'https://ror.org/04jzqr098 Texas Institute for Hip & Knee Surgery'),
(58754, 'https://ror.org/0012pe324', 'en', 1, 'https://ror.org/0012pe324 Maharaj Institute of Immune Regenerative Medicine'),
(58755, 'https://ror.org/00wz6jq51', 'en', 1, 'https://ror.org/00wz6jq51 Sentara CarePlex Hospital'),
(58756, 'https://ror.org/024s37521', 'en', 1, 'https://ror.org/024s37521 Scientific Research Institute of First Aid to them. N.V. Sklifosovsky ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ чрезвычайных ŃŠøŃ‚ŃƒŠ°Ń†ŠøŠ¹. Š. Š’. Дклифосовский'),
(58757, 'https://ror.org/02rgedp64', 'en', 1, 'https://ror.org/02rgedp64 Southeast Renal Research Institute'),
(58758, 'https://ror.org/04ffwr418', 'en', 1, 'https://ror.org/04ffwr418 City Clinical Hospital No15 named. O. M. Filatova Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–15 n.a O.M. Филатов'),
(58759, 'https://ror.org/02rpznn70', 'en', 1, 'https://ror.org/02rpznn70 Sinus & Respiratory Disease Center'),
(58760, 'https://ror.org/0075ba798', 'en', 1, 'https://ror.org/0075ba798 Southeastern Spine Center & Research Institute'),
(58761, 'https://ror.org/055j6t743', 'en', 1, 'https://ror.org/055j6t743 Texas Institute of Dermatology Laser and Cosmetic Surgery'),
(58762, 'https://ror.org/03yk6x532', 'en', 1, 'https://ror.org/03yk6x532 Texas Liver Institute'),
(58763, 'https://ror.org/01wsec828', 'en', 1, 'https://ror.org/01wsec828 Sentara Heart Hospital'),
(58764, 'https://ror.org/05q50g776', 'en', 1, 'https://ror.org/05q50g776 Republican Clinical Hospital named after G.G. Kuvatova Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–. G.G. ŠšŃƒŠ²Š°Ń‚Š¾Š²'),
(58765, 'https://ror.org/032wmfz20', 'no_lang_code', 1, 'https://ror.org/032wmfz20 Tower Clinical Trials (United States)'),
(58766, 'https://ror.org/0194n5932', 'no_lang_code', 1, 'https://ror.org/0194n5932 Thanyarak Institute ąø§ąø±ąø•ąø“ąøŖąø–ąø²ąøšąø±ąø™ąø˜ąø±ąøąøąø²ąø£ąø±ąøąø©ą¹Œ'),
(58767, 'https://ror.org/041avvw93', 'en', 1, 'https://ror.org/041avvw93 Riverside Transplantation Institute'),
(58768, 'https://ror.org/05a9rbd10', 'en', 1, 'https://ror.org/05a9rbd10 Sage Bariatric Institute'),
(58769, 'https://ror.org/02dqwa472', 'en', 1, 'https://ror.org/02dqwa472 SerenaGroup Research Institute'),
(58770, 'https://ror.org/054p08670', 'en', 1, 'https://ror.org/054p08670 Regional Children''s Hospital No1'),
(58771, 'https://ror.org/009w6v212', 'en', 1, 'https://ror.org/009w6v212 Nizhny Novgorod Regional Clinical Hospital named after Semashko ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° им. Š.А.Демашко'),
(58772, 'https://ror.org/02t4fs169', 'en', 1, 'https://ror.org/02t4fs169 Southwest Kidney Institute'),
(58773, 'https://ror.org/05hgkmq81', 'en', 1, 'https://ror.org/05hgkmq81 Servy Institute for Reproductive Endocrinology'),
(58774, 'https://ror.org/02ez87631', 'en', 1, 'https://ror.org/02ez87631 Samara City Children''s Clinical Hospital No. 1 named after NN Ivanova Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–1 им. Š.Š. Иванов'),
(58775, 'https://ror.org/021as9859', 'en', 1, 'https://ror.org/021as9859 City Children''s Hospital No. 22 Š”ŠµŃ‚ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–22'),
(58776, 'https://ror.org/0425kp210', 'en', 1, 'https://ror.org/0425kp210 San Diego Spine Institute'),
(58777, 'https://ror.org/03yef6m79', 'en', 1, 'https://ror.org/03yef6m79 Oncological Dispensary No. 2 ŠžŠ½ŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Гиспансер ā„– 2'),
(58778, 'https://ror.org/04gbkes05', 'en', 1, 'https://ror.org/04gbkes05 National Retina Institute'),
(58779, 'https://ror.org/02w9pcv48', 'en', 1, 'https://ror.org/02w9pcv48 Orenburg Regional Clinical Oncology Center ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ областной клинический онкологический Гиспансер'),
(58780, 'https://ror.org/04g6dp887', 'en', 1, 'https://ror.org/04g6dp887 NeuroCognitive Institute'),
(58781, 'https://ror.org/021x2ed48', 'en', 1, 'https://ror.org/021x2ed48 Sports Concussion Institute'),
(58782, 'https://ror.org/000g2fe29', 'en', 1, 'https://ror.org/000g2fe29 Perm Regional Oncology Center ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(58783, 'https://ror.org/05ty23t08', 'en', 1, 'https://ror.org/05ty23t08 The Neurological Institute'),
(58784, 'https://ror.org/02zv70s92', 'en', 1, 'https://ror.org/02zv70s92 Tyumen Regional Oncological Dispensary Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(58785, 'https://ror.org/0169ka518', 'en', 1, 'https://ror.org/0169ka518 Shandong Provincial Institute of Dermatology and Venereology å±±äøœēœēš®č‚¤ę€§ē—…ē ”ē©¶ę‰€'),
(58786, 'https://ror.org/00zsz8144', 'en', 1, 'https://ror.org/00zsz8144 Ulyanovsk Regional Clinical Hospital Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(58787, 'https://ror.org/03crycs56', 'en', 1, 'https://ror.org/03crycs56 Regional Center for the Prevention and Control of AIDS Volgograd ВолгограГский областной центр профилактики Šø Š±Š¾Ń€ŃŒŠ±Ń‹ со Š”ŠŸŠ˜Š”Š¾Š¼'),
(58788, 'https://ror.org/056v2vw30', 'en', 1, 'https://ror.org/056v2vw30 The Orthopaedic Institute'),
(58789, 'https://ror.org/05kcpxy10', 'en', 1, 'https://ror.org/05kcpxy10 Tula Regional Clinical Hospital Š¢ŃƒŠ»ŃŒŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(58790, 'https://ror.org/044ef5h76', 'en', 1, 'https://ror.org/044ef5h76 Shanghai Cell Therapy Research Institute'),
(58791, 'https://ror.org/02hapf869', 'en', 1, 'https://ror.org/02hapf869 Institute of Early Childhood Research Staatsinstitut für Frühpädagogik'),
(58792, 'https://ror.org/01ncxv941', 'en', 1, 'https://ror.org/01ncxv941 St. Petersburg State Medical Academy "City Hospital No. 26"'),
(58793, 'https://ror.org/04hprbe92', 'en', 1, 'https://ror.org/04hprbe92 The Pelvic Floor Institute'),
(58794, 'https://ror.org/00wdh3g19', 'en', 1, 'https://ror.org/00wdh3g19 St. Francis Sleep, Allergy, and Lung Institute'),
(58795, 'https://ror.org/0530nw968', 'en', 1, 'https://ror.org/0530nw968 The Prompt Institute'),
(58796, 'https://ror.org/04m0x6q45', 'en', 1, 'https://ror.org/04m0x6q45 Republican Scientific and Practical Centre for Traumatology and Orthopedics'),
(58797, 'https://ror.org/00ctszj26', 'en', 1, 'https://ror.org/00ctszj26 Cleveland Shoulder Institute'),
(58798, 'https://ror.org/02rgbry52', 'en', 1, 'https://ror.org/02rgbry52 ShangHai JiAi Genetics & IVF Institute äøŠęµ·å‰ēˆ±é—ä¼ äøŽä½“å¤–å—ē²¾ē ”ē©¶ę‰€'),
(58799, 'https://ror.org/009914361', 'en', 1, 'https://ror.org/009914361 Zaporizhzhia Medical Academy of Post-Graduate Education Ministry of Health of Ukraine Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ° меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŠæŃ–ŃŠ»ŃŠ“ŠøŠæŠ»Š¾Š¼Š½Š¾Ń— освіти ŠœŃ–ністерства охорони Š·Š“Š¾Ń€Š¾Š²ā€™Ń України'),
(58800, 'https://ror.org/04akv9b62', 'en', 1, 'https://ror.org/04akv9b62 Shanghai Pudong Institute of Education Development'),
(58801, 'https://ror.org/05qsrmb73', 'en', 1, 'https://ror.org/05qsrmb73 Shanxi Institute of Endemic Diseases'),
(58802, 'https://ror.org/05x0bqw91', 'en', 1, 'https://ror.org/05x0bqw91 Infectious Diseases and the Research Institute'),
(58803, 'https://ror.org/02w7z1d65', 'en', 1, 'https://ror.org/02w7z1d65 Stem Cell Institute'),
(58804, 'https://ror.org/05tgjcd06', 'en', 1, 'https://ror.org/05tgjcd06 National Institute of Brain and Rehabilitation Sciences'),
(58805, 'https://ror.org/01bxb2y87', 'en', 1, 'https://ror.org/01bxb2y87 The Core Institute'),
(58806, 'https://ror.org/038k26971', 'en', 1, 'https://ror.org/038k26971 The Roxbury Institute'),
(58807, 'https://ror.org/05tg5qm65', 'en', 1, 'https://ror.org/05tg5qm65 Stiles Eyecare Excellence'),
(58808, 'https://ror.org/01mxmb797', 'en', 1, 'https://ror.org/01mxmb797 Stockholm Environment Institute'),
(58809, 'https://ror.org/01xz2wh36', 'en', 1, 'https://ror.org/01xz2wh36 The Eye Care Institute'),
(58810, 'https://ror.org/03r6h3t89', 'en', 1, 'https://ror.org/03r6h3t89 St. Petersburg State Medical Academy "City Polyclinic ā„–44" Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ "Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń поликлиника ā„–44"'),
(58811, 'https://ror.org/028pd3m58', 'en', 1, 'https://ror.org/028pd3m58 Female Pelvic Medicine Institute of Virginia'),
(58812, 'https://ror.org/010rnsd21', 'en', 1, 'https://ror.org/010rnsd21 Consultative and Diagnostic Center'),
(58813, 'https://ror.org/03qacnx75', 'en', 1, 'https://ror.org/03qacnx75 Kursk Regional Clinical Oncology Center ŠŗŃƒŃ€ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(58814, 'https://ror.org/05wd4ca48', 'en', 1, 'https://ror.org/05wd4ca48 Nikiforov Russian Center of Emergency and Radiation Medicine ŠŠøŠŗŠøŃ„Š¾Ń€Š¾Š² Российский центр ŃŠŗŃŃ‚Ń€ŠµŠ½Š½Š¾Š¹ Šø раГиационной меГицины'),
(58815, 'https://ror.org/0426yhw42', 'en', 1, 'https://ror.org/0426yhw42 St. Petersburg State Health Care Institution "Elizabethan Hospital" Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Š•Š»ŠøŠ·Š°Š²ŠµŃ‚ŠøŠ½ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(58816, 'https://ror.org/05geszq97', 'en', 1, 'https://ror.org/05geszq97 The Speech and Stuttering Institute'),
(58817, 'https://ror.org/00ddc4178', 'en', 1, 'https://ror.org/00ddc4178 Voronezh Regional Clinical Oncology Center Воронежский областной клинический онкологический Гиспансер'),
(58818, 'https://ror.org/02dg40g44', 'en', 1, 'https://ror.org/02dg40g44 St. Petersburg State Budgetary Healthcare Institution "City Polyclinic No. 106"'),
(58819, 'https://ror.org/03bx4c072', 'en', 1, 'https://ror.org/03bx4c072 The Spine Institute'),
(58820, 'https://ror.org/025w0ga63', 'en', 1, 'https://ror.org/025w0ga63 Spine Institute on the Emerald Coast'),
(58821, 'https://ror.org/02yy16t83', 'en', 1, 'https://ror.org/02yy16t83 St. Petersburg State Health Care Foundation "Mariinsky City Hospital"'),
(58822, 'https://ror.org/059vcy092', 'en', 1, 'https://ror.org/059vcy092 State Autonomous Institution of Health Interregional Clinical Diagnostic Center ŠŸŠ¾Š»ŠøŃ‚ŠøŠŗŠ° ŠŗŠ¾Š½Ń„ŠøŠ“ŠµŠ½Ń†ŠøŠ°Š»ŃŒŠ½Š¾ŃŃ‚Šø ŠæŠµŃ€ŃŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… Ганных сайта'),
(58823, 'https://ror.org/03jz6qp63', 'en', 1, 'https://ror.org/03jz6qp63 Murmansk Regional Oncology Center ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(58824, 'https://ror.org/018332h72', 'en', 1, 'https://ror.org/018332h72 Samara City N.I. Pirogov Clinical Hospital ā„–1 Дамара Š.И. ŠŸŠøŃ€Š¾Š³Š¾Š²ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–1'),
(58825, 'https://ror.org/00mjzz278', 'en', 1, 'https://ror.org/00mjzz278 Unimed Medical Institute'),
(58826, 'https://ror.org/00vc32940', 'en', 1, 'https://ror.org/00vc32940 Children''s City Policlinic No. 45'),
(58827, 'https://ror.org/03grgqr35', 'en', 1, 'https://ror.org/03grgqr35 Moscow City Clinical Hospital after V.M. Buyanov Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° им. Š’. М. Š‘ŃƒŃŠ½Š¾Š²Š°'),
(58828, 'https://ror.org/033knrw51', 'en', 1, 'https://ror.org/033knrw51 Republican Center for the Prevention and Control of AIDS and Infectious Diseases'),
(58829, 'https://ror.org/04y9nj467', 'en', 1, 'https://ror.org/04y9nj467 Healing Institute'),
(58830, 'https://ror.org/00hrr4a84', 'en', 1, 'https://ror.org/00hrr4a84 Regional Clinical Hospital No 4 ГБУЗ ŠžŠ±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–4'),
(58831, 'https://ror.org/00pdz5e98', 'en', 1, 'https://ror.org/00pdz5e98 Strimling Dermatology, Laser & Vein Institute'),
(58832, 'https://ror.org/05fch8r16', 'en', 1, 'https://ror.org/05fch8r16 Specialized Clinical Psychiatric Hospital No. 1 Š”ŠæŠµŃ†ŠøŠ°Š»ŠøŠ·ŠøŃ€Š¾Š²Š°Š½Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠæŃŠøŃ…ŠøŠ°Ń‚Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 1'),
(58833, 'https://ror.org/02jwr3j75', 'en', 1, 'https://ror.org/02jwr3j75 City Clinical Oncology Center ГороГской клинический онкологический Гиспансер'),
(58834, 'https://ror.org/03bjjd024', 'en', 1, 'https://ror.org/03bjjd024 Woolfson Eye Institute'),
(58835, 'https://ror.org/0010r2q05', 'en', 1, 'https://ror.org/0010r2q05 United Medical Research Institute'),
(58836, 'https://ror.org/02jhtag43', 'en', 1, 'https://ror.org/02jhtag43 Sun Research Institute'),
(58837, 'https://ror.org/03vgzp053', 'en', 1, 'https://ror.org/03vgzp053 Regional Children''s Clinical Hospital No. 1 Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ ДверГловской области ŠžŠ±Š»Š°ŃŃ‚Š½Š°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–1'),
(58838, 'https://ror.org/00dtsng04', 'en', 1, 'https://ror.org/00dtsng04 Republican Clinical Hospital of the Ministry of Health of the Republic of Tatarstan'),
(58839, 'https://ror.org/04z0cdx68', 'en', 1, 'https://ror.org/04z0cdx68 SurgOne Foregut Institute'),
(58840, 'https://ror.org/03swmst19', 'en', 1, 'https://ror.org/03swmst19 State Autonomous Healthcare Institution of the Novosibirsk Region "City Clinical Polyclinic No. 1"'),
(58841, 'https://ror.org/03jbnw407', 'fr', 1, 'https://ror.org/03jbnw407 Brides-les-Bains Thermes de Brides-les-Bains'),
(58842, 'https://ror.org/030s5fz93', 'en', 1, 'https://ror.org/030s5fz93 Thomas John Vision Institute'),
(58843, 'https://ror.org/04n4wd093', 'en', 1, 'https://ror.org/04n4wd093 Institute for Respiratory Health'),
(58844, 'https://ror.org/05kk2ma90', 'en', 1, 'https://ror.org/05kk2ma90 TobaccoFree Research Institute'),
(58845, 'https://ror.org/040hgf597', 'en', 1, 'https://ror.org/040hgf597 Institute for Liver Health'),
(58846, 'https://ror.org/0350na611', 'en', 1, 'https://ror.org/0350na611 Institute for Patient- and Family-Centered Care'),
(58847, 'https://ror.org/019wc4e54', 'en', 1, 'https://ror.org/019wc4e54 Tallahassee Cancer Institute'),
(58848, 'https://ror.org/01nsbm866', 'en', 1, 'https://ror.org/01nsbm866 Moscow Research and Clinical Center for Neuropsychiatry'),
(58849, 'https://ror.org/02j0qcn83', 'en', 1, 'https://ror.org/02j0qcn83 Institute for the Blind and Partially Sighted Instituttet for Blinde og Svagsynede'),
(58850, 'https://ror.org/03gqc7y13', 'en', 1, 'https://ror.org/03gqc7y13 Institute for Exercise and Environmental Medicine'),
(58851, 'https://ror.org/00ermfs73', 'en', 1, 'https://ror.org/00ermfs73 Budgetary Health Care Institution of the Omsk Region "Clinical Oncology Center"'),
(58852, 'https://ror.org/04r5abx10', 'en', 1, 'https://ror.org/04r5abx10 Territory Neurology & Research Institute'),
(58853, 'https://ror.org/02qhvwx61', 'no_lang_code', 1, 'https://ror.org/02qhvwx61 Guz "Tul''skiy Oblastnoy Onkologicheskiy Dispanser'),
(58854, 'https://ror.org/00v9j9683', 'en', 1, 'https://ror.org/00v9j9683 Institute for Diabetes Discovery'),
(58855, 'https://ror.org/03gj9g134', 'en', 1, 'https://ror.org/03gj9g134 Translational Research Institute for Metabolism and Diabetes'),
(58856, 'https://ror.org/041e7q719', 'en', 1, 'https://ror.org/041e7q719 Institute of Molecular and Translational Medicine Ústav molekulĆ”rnĆ­ a translačnĆ­ medicĆ­ny'),
(58857, 'https://ror.org/03zrdj512', 'en', 1, 'https://ror.org/03zrdj512 GOUZ YaO "Solovyov NV Clinical Emergency Hospital"'),
(58858, 'https://ror.org/01m92rg76', 'ro', 1, 'https://ror.org/01m92rg76 Institutul Oncologic din Republica Moldova Oncological Institute of the Republic of Moldova'),
(58859, 'https://ror.org/055jf3p69', 'de', 1, 'https://ror.org/055jf3p69 Wissenschaftliches Institut der AOK'),
(58860, 'https://ror.org/04j5wtv36', 'en', 1, 'https://ror.org/04j5wtv36 Centre commun de recherche Directorate-General Joint Research Centre Gemeinsame Forschungsstelle'),
(58861, 'https://ror.org/00p7q3334', 'en', 1, 'https://ror.org/00p7q3334 Women''s Pelvic Health Institute'),
(58862, 'https://ror.org/02xq21g71', 'en', 1, 'https://ror.org/02xq21g71 International Heart and Lung Institute'),
(58863, 'https://ror.org/00arjmf19', 'en', 1, 'https://ror.org/00arjmf19 Triple O Medical Services'),
(58864, 'https://ror.org/04vz3bz63', 'en', 1, 'https://ror.org/04vz3bz63 Inspired Spine'),
(58865, 'https://ror.org/01g868933', 'no_lang_code', 1, 'https://ror.org/01g868933 The Johrei Institute'),
(58866, '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'),
(58867, 'https://ror.org/02p046236', 'en', 1, 'https://ror.org/02p046236 Turner Eye Institute'),
(58868, 'https://ror.org/01g73y611', 'en', 1, 'https://ror.org/01g73y611 Jones Institute'),
(58869, 'https://ror.org/0002rg505', 'en', 1, 'https://ror.org/0002rg505 Vascular Institute of Virginia'),
(58870, 'https://ror.org/05a4nj078', 'en', 1, 'https://ror.org/05a4nj078 Centro Común de Investigación Joint Research Center'),
(58871, 'https://ror.org/011wa8w96', 'en', 1, 'https://ror.org/011wa8w96 Yunnan Institute For Drug Abuse äŗ‘å—ēœčÆē‰©ę»„ē”Øē ”ē©¶ę‰€'),
(58872, 'https://ror.org/03cne5517', 'en', 1, 'https://ror.org/03cne5517 Kotsanis Institute'),
(58873, 'https://ror.org/018ymm591', 'en', 1, 'https://ror.org/018ymm591 Vimhans PrimaMed Super Speciality Hospital'),
(58874, 'https://ror.org/031334b36', 'en', 1, 'https://ror.org/031334b36 Krongrad Institute'),
(58875, 'https://ror.org/00xhgth11', 'de', 1, 'https://ror.org/00xhgth11 Zydolab - Institut für Zytologie und Immunzytochemie'),
(58876, 'https://ror.org/01q2pxs68', 'en', 1, 'https://ror.org/01q2pxs68 Vinmec International Hospital'),
(58877, 'https://ror.org/01ece3a48', 'en', 1, 'https://ror.org/01ece3a48 The Mayer Institute'),
(58878, 'https://ror.org/00st10j60', 'en', 1, 'https://ror.org/00st10j60 Virginia Cancer Institute'),
(58879, 'https://ror.org/02v14dw26', 'en', 1, 'https://ror.org/02v14dw26 Virginia Gastroenterology Institute'),
(58880, 'https://ror.org/035ts5t23', 'en', 1, 'https://ror.org/035ts5t23 Virginia Spine Institute'),
(58881, 'https://ror.org/047e6a566', 'en', 1, 'https://ror.org/047e6a566 Westwood Institute for Anxiety Disorders'),
(58882, 'https://ror.org/03tdp3e45', 'en', 1, 'https://ror.org/03tdp3e45 Wellish Vision Institute'),
(58883, 'https://ror.org/055m95h02', 'en', 1, 'https://ror.org/055m95h02 Werlhof Institute'),
(58884, 'https://ror.org/04erj2z02', 'en', 1, 'https://ror.org/04erj2z02 Virpiniemen liikuntaopisto Virpiniemi Sports Institute'),
(58885, 'https://ror.org/02g9smc25', 'no_lang_code', 1, 'https://ror.org/02g9smc25 VRR Diagnostic Services (India)'),
(58886, 'https://ror.org/01yrsvz42', 'en', 1, 'https://ror.org/01yrsvz42 Vitality Institute'),
(58887, 'https://ror.org/02ksqjt48', 'en', 1, 'https://ror.org/02ksqjt48 VitalStrategic Research Institute'),
(58888, 'https://ror.org/03j81hg31', 'fr', 1, 'https://ror.org/03j81hg31 Association de MusicothƩrapie Applications et Recherches Cliniques'),
(58889, 'https://ror.org/00ngrws44', 'en', 1, 'https://ror.org/00ngrws44 China Anti-Aging Association äø­å›½ęŠ—č”°č€äæƒčæ›ä¼š'),
(58890, 'https://ror.org/04t1yja74', 'fr', 1, 'https://ror.org/04t1yja74 Association des Neuro-Oncologues d’Expression FranƧaise'),
(58891, 'https://ror.org/04957ke43', 'en', 1, 'https://ror.org/04957ke43 Coalition of Asian-American Independent Practice Association'),
(58892, 'https://ror.org/00a2ywd05', 'en', 1, 'https://ror.org/00a2ywd05 Acid Maltase Deficiency Association'),
(58893, 'https://ror.org/021nbzt76', 'fr', 1, 'https://ror.org/021nbzt76 Association FranƧaise de Lutte Anti-Rhumastismale'),
(58894, 'https://ror.org/00m4xrb97', 'en', 1, 'https://ror.org/00m4xrb97 Toronto Sleep Institute'),
(58895, 'https://ror.org/0173wmw02', 'fr', 1, 'https://ror.org/0173wmw02 Association des MƩdecins d''Urgence du QuƩbec'),
(58896, 'https://ror.org/04z8yvn47', 'en', 1, 'https://ror.org/04z8yvn47 Chinese Anti-Cancer Association äø­å›½ęŠ—ē™Œåä¼š'),
(58897, 'https://ror.org/01t34hq68', 'en', 1, 'https://ror.org/01t34hq68 Association Rwandaise Des Diabetiques Rwanda Diabetes Association'),
(58898, 'https://ror.org/017cay976', 'en', 1, 'https://ror.org/017cay976 Orlovsky Oncology Dispensary'),
(58899, 'https://ror.org/03t4ktv29', 'fr', 1, 'https://ror.org/03t4ktv29 Association Clinique et ThƩrapeutique Infantile du Val de Marne'),
(58900, 'https://ror.org/05wz0rz65', 'fr', 1, 'https://ror.org/05wz0rz65 Association SahƩlienne de Recherche AppliquƩe pour le DƩveloppement Durable'),
(58901, 'https://ror.org/00jk33f78', 'en', 1, 'https://ror.org/00jk33f78 Acute Leukemia French Association'),
(58902, 'https://ror.org/04babz459', 'fr', 1, 'https://ror.org/04babz459 Association Schizo Oui'),
(58903, 'https://ror.org/01z9be204', 'en', 1, 'https://ror.org/01z9be204 ADIR Association'),
(58904, 'https://ror.org/00kv52794', 'en', 1, 'https://ror.org/00kv52794 Chinese Medical Doctor Association äø­å›½åŒ»åøˆåä¼š'),
(58905, 'https://ror.org/00axvkc03', 'fr', 1, 'https://ror.org/00axvkc03 Association FranƧaise de Chirurgie'),
(58906, 'https://ror.org/0345t3q13', 'en', 1, 'https://ror.org/0345t3q13 Interdisciplinary Dental Education Academy'),
(58907, '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'),
(58908, 'https://ror.org/01w8qz314', 'fr', 1, 'https://ror.org/01w8qz314 Association Tunisienne Contre le Cancer'),
(58909, 'https://ror.org/05gt42d74', 'en', 1, 'https://ror.org/05gt42d74 Cardiovascular and Interventional Radiological Society of Europe'),
(58910, 'https://ror.org/0085er114', 'en', 1, 'https://ror.org/0085er114 Asthma Society of Ireland'),
(58911, 'https://ror.org/039wqqg43', 'en', 1, 'https://ror.org/039wqqg43 Association for Children at Risk ×”×¢×ž×•×Ŗ×” לילדים בהיכון'),
(58912, 'https://ror.org/015t3ef28', 'de', 1, 'https://ror.org/015t3ef28 Augenstern'),
(58913, 'https://ror.org/04bmdeb43', 'fr', 1, 'https://ror.org/04bmdeb43 Ages et Vie'),
(58914, 'https://ror.org/03d5zbb55', 'en', 1, 'https://ror.org/03d5zbb55 Alberta Pharmacists Association'),
(58915, 'https://ror.org/054wms778', 'fr', 1, 'https://ror.org/054wms778 Association pour l''Utilisation du Rein Artificiel'),
(58916, 'https://ror.org/0050bt095', 'en', 1, 'https://ror.org/0050bt095 Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine'),
(58917, 'https://ror.org/02ywc9x30', 'en', 1, 'https://ror.org/02ywc9x30 The Korean Society of Blood and Marrow Transplantation ėŒ€ķ•œ ķ˜ˆģ•” ģˆœķ™˜ ķ•™ķšŒ'),
(58918, 'https://ror.org/00zrhqg94', 'en', 1, 'https://ror.org/00zrhqg94 Ikatan Dokter Anak Indonesia Indonesian Pediatric Society'),
(58919, 'https://ror.org/007847151', 'en', 1, 'https://ror.org/007847151 Australian and New Zealand Intensive Care Society'),
(58920, 'https://ror.org/00eytwa65', 'en', 1, 'https://ror.org/00eytwa65 Allied Research Society'),
(58921, 'https://ror.org/05f1s6j82', 'en', 1, 'https://ror.org/05f1s6j82 Association for Pediatric Pulmonary Hypertension'),
(58922, 'https://ror.org/00cr1ar81', 'en', 1, 'https://ror.org/00cr1ar81 Australian and New Zealand Society of Palliative Medicine'),
(58923, 'https://ror.org/023vxq234', 'en', 1, 'https://ror.org/023vxq234 Association for the Advancement of Medical Instrumentation'),
(58924, 'https://ror.org/036yga598', 'de', 1, 'https://ror.org/036yga598 Arbeitsgemeinschaft für Klinische Ernährung'),
(58925, 'https://ror.org/01cv0ss35', 'en', 1, 'https://ror.org/01cv0ss35 American Academy of Orthopaedic Manual Physical Therapists'),
(58926, 'https://ror.org/046sm3c31', 'de', 1, 'https://ror.org/046sm3c31 Austrian Society of Hypertension Ɩsterreichische Gesellschaft für Hypertensiologie'),
(58927, 'https://ror.org/01f2r3t53', 'en', 1, 'https://ror.org/01f2r3t53 Jinan Disabled Persons Federation'),
(58928, 'https://ror.org/057e5kw77', 'en', 1, 'https://ror.org/057e5kw77 American Academy of Osteopathy'),
(58929, 'https://ror.org/04hfec795', 'de', 1, 'https://ror.org/04hfec795 Ɩsterreichische Gesellschaft für Parodontologie'),
(58930, 'https://ror.org/0250yzd02', 'en', 1, 'https://ror.org/0250yzd02 Beacon Hill Academy'),
(58931, 'https://ror.org/05qgkbs55', 'en', 1, 'https://ror.org/05qgkbs55 Belgian Hematological Society'),
(58932, 'https://ror.org/03p0wky60', 'en', 1, 'https://ror.org/03p0wky60 American Association for Bronchology and Interventional Pulmonology'),
(58933, 'https://ror.org/03y2n4b36', 'en', 1, 'https://ror.org/03y2n4b36 Japanese Academy of Maxillofacial Implants'),
(58934, 'https://ror.org/00vhe9s39', 'en', 1, 'https://ror.org/00vhe9s39 American Association of Chairs of Departments of Psychiatry'),
(58935, 'https://ror.org/02ceryg42', 'en', 1, 'https://ror.org/02ceryg42 Belgian Society for Pneumology Belgische Vereniging voor Pneumologie'),
(58936, 'https://ror.org/032jj2n15', 'en', 1, 'https://ror.org/032jj2n15 American Association of Gynecologic Laparoscopists'),
(58937, 'https://ror.org/03n3nk688', 'en', 1, 'https://ror.org/03n3nk688 American Association of Kidney Patients'),
(58938, 'https://ror.org/04w87a187', 'fr', 1, 'https://ror.org/04w87a187 Adema 80'),
(58939, 'https://ror.org/024bsq388', 'en', 1, 'https://ror.org/024bsq388 Finnish Mass Spectrometry Society Suomen Massaspektrometrian Seura'),
(58940, 'https://ror.org/0095qtr23', 'en', 1, 'https://ror.org/0095qtr23 Finnish Society of Obstetrics and Gynaecology Suomen Gynekologiyhdistys'),
(58941, 'https://ror.org/018b60f22', 'en', 1, 'https://ror.org/018b60f22 Belgian Society for Pediatric Gastroenterology Hepatology and Nutrition'),
(58942, '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'),
(58943, 'https://ror.org/05y75g627', 'fr', 1, 'https://ror.org/05y75g627 Association des Familles de Traumatisés Crâniens d''Alsace'),
(58944, 'https://ror.org/03vf2kf90', 'en', 1, 'https://ror.org/03vf2kf90 Benelux Society of Phlebology Secretariat of the Benelux Society of Phlebology'),
(58945, 'https://ror.org/03d9g9t35', 'en', 1, 'https://ror.org/03d9g9t35 Finnish Society of Surgery Suomen Kirurgiyhdistys'),
(58946, 'https://ror.org/05parng43', 'en', 1, 'https://ror.org/05parng43 Bethlehem Arab Society for Rehabilitation Ų¬Ł…Ų¹ŁŠŲ© بيت لحم Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„ŲŖŲ£Ł‡ŁŠŁ„'),
(58947, 'https://ror.org/05abb3j67', 'en', 1, 'https://ror.org/05abb3j67 Croatian Society of Regional Anaesthesia and Analgesia Hrvatsko druŔtvo regionalne anestezije i analgezije'),
(58948, 'https://ror.org/05bgdck98', 'pt', 1, 'https://ror.org/05bgdck98 Instituto Nefrológico de Campinas'),
(58949, 'https://ror.org/011znd796', 'en', 1, 'https://ror.org/011znd796 American Medical Group Association'),
(58950, 'https://ror.org/05v4fng20', 'fr', 1, 'https://ror.org/05v4fng20 Association FranƧaise pour la Recherche Thermale'),
(58951, 'https://ror.org/04asxht25', 'en', 1, 'https://ror.org/04asxht25 Czech Society for Hypertension ČeskĆ” Společnost pro Hypertenzi'),
(58952, 'https://ror.org/057kxm327', 'fr', 1, 'https://ror.org/057kxm327 SociĆ©tĆ© Francophone d’Arthroscopie'),
(58953, 'https://ror.org/05v7vyj84', 'en', 1, 'https://ror.org/05v7vyj84 American Orthotic and Prosthetic Association'),
(58954, 'https://ror.org/006mdd626', 'pt', 1, 'https://ror.org/006mdd626 Sociedade Brasileira de Cirurgia de CabeƧa e PescoƧo'),
(58955, 'https://ror.org/03mbb6708', 'fr', 1, 'https://ror.org/03mbb6708 GƩrontopƓle Pierre Pfitzenmeyer'),
(58956, 'https://ror.org/00r4a9d75', 'pt', 1, 'https://ror.org/00r4a9d75 Sociedade Brasileira de Cirurgia TorƔcica'),
(58957, 'https://ror.org/033x4t230', 'fr', 1, 'https://ror.org/033x4t230 SociƩtƩ FranƧaise d''Allergologie'),
(58958, 'https://ror.org/01dszxr35', 'en', 1, 'https://ror.org/01dszxr35 American Pulse Association'),
(58959, 'https://ror.org/04qmha372', 'en', 1, 'https://ror.org/04qmha372 British Association of Urological Surgeons'),
(58960, 'https://ror.org/04bf36351', 'fr', 1, 'https://ror.org/04bf36351 SociƩtƩ Nationale FranƧaise de Colo-Proctologie'),
(58961, 'https://ror.org/01gw2gb17', 'fr', 1, 'https://ror.org/01gw2gb17 SociƩtƩ FranƧaise d''Endoscopie Digestive'),
(58962, 'https://ror.org/03dnhfz27', 'en', 1, 'https://ror.org/03dnhfz27 British Cardiovascular Intervention Society'),
(58963, 'https://ror.org/04k4egd33', 'fr', 1, 'https://ror.org/04k4egd33 Association Keoogo'),
(58964, 'https://ror.org/03benq302', 'fr', 1, 'https://ror.org/03benq302 Association Francophone pour les Soins Oncologiques de Support'),
(58965, 'https://ror.org/05dtj8q67', 'en', 1, 'https://ror.org/05dtj8q67 Obesity Medicine Association'),
(58966, 'https://ror.org/03fsf0027', 'en', 1, 'https://ror.org/03fsf0027 British Columbia Dental Hygienists'' Association'),
(58967, 'https://ror.org/00wp9fx28', 'fr', 1, 'https://ror.org/00wp9fx28 Association Mucoviscidose - ABCF2'),
(58968, 'https://ror.org/00c6acq81', 'nl', 1, 'https://ror.org/00c6acq81 Galactosemie Vereniging Nederland'),
(58969, 'https://ror.org/02kpbdq88', 'en', 1, 'https://ror.org/02kpbdq88 Danish Society of Cardiology Dansk Cardiologisk Selskab'),
(58970, 'https://ror.org/00rnp5y61', 'en', 1, 'https://ror.org/00rnp5y61 Kidney Care UK'),
(58971, 'https://ror.org/05smc1464', 'fr', 1, 'https://ror.org/05smc1464 Association Nationale d’Aide aux personnes HandicapĆ©es'),
(58972, 'https://ror.org/05vx20690', 'es', 1, 'https://ror.org/05vx20690 Sociedad EspaƱola de Patologƭa Digestiva'),
(58973, 'https://ror.org/03djwcj59', 'en', 1, 'https://ror.org/03djwcj59 The Dementia Association of Thailand ąøŖąø”ąø²ąø„ąø”ą¹‚ąø£ąø„ąøŖąø”ąø­ąø‡ą¹€ąøŖąø·ą¹ˆąø­ąø”ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(58974, 'https://ror.org/04ded4967', 'en', 1, 'https://ror.org/04ded4967 British Tinnitus Association'),
(58975, 'https://ror.org/05gvf0x42', 'en', 1, 'https://ror.org/05gvf0x42 Bulgarian Neuromuscular Diseases Association Š‘ŠŖŠ›Š“ŠŠ Š”ŠšŠ ŠŠ”ŠžŠ¦Š˜ŠŠ¦Š˜ŠÆ ЗА ŠŠ•Š’Š ŠžŠœŠ£Š”ŠšŠ£Š›ŠŠ˜ Š—ŠŠ‘ŠžŠ›ŠÆŠ’ŠŠŠ˜ŠÆ'),
(58976, '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'),
(58977, 'https://ror.org/04bkxkh03', 'de', 1, 'https://ror.org/04bkxkh03 Bundesverband Medizintechnologie German Medical Technology Association'),
(58978, 'https://ror.org/02bx28580', 'en', 1, 'https://ror.org/02bx28580 Dermatological Society of Thailand ąøŖąø”ąø²ąø„ąø”ą¹ąøžąø—ąø¢ą¹Œąøœąø“ąø§ąø«ąø™ąø±ąø‡ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(58979, 'https://ror.org/02nn2tc47', 'de', 1, 'https://ror.org/02nn2tc47 Arbeitsgemeinschaft Urologische Onkologie'),
(58980, 'https://ror.org/000re6s27', 'no_lang_code', 1, 'https://ror.org/000re6s27 CHO America (Canada)'),
(58981, 'https://ror.org/05dp34n52', 'es', 1, 'https://ror.org/05dp34n52 Asociación Argentina de Tenis'),
(58982, 'https://ror.org/05gsvv626', 'en', 1, 'https://ror.org/05gsvv626 Dermatology Society of South Africa'),
(58983, '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'),
(58984, 'https://ror.org/01bx1ra43', 'en', 1, 'https://ror.org/01bx1ra43 BundesƤrztekammer German Medical Association'),
(58985, 'https://ror.org/00ffe3313', 'en', 1, 'https://ror.org/00ffe3313 Deutsche Gesellschaft für Pneumologie und Beatmungsmedizin German Respiratory Society'),
(58986, 'https://ror.org/020kqbk80', 'en', 1, 'https://ror.org/020kqbk80 Cameroon Nutritional Science Society'),
(58987, 'https://ror.org/00zpm8f70', 'fr', 1, 'https://ror.org/00zpm8f70 FƩdƩration Antadir'),
(58988, 'https://ror.org/004vymz43', 'en', 1, 'https://ror.org/004vymz43 Diabetes Association of Thailand ąøŖąø”ąø²ąø„ąø”ą¹‚ąø£ąø„ą¹€ąøšąø²ąø«ąø§ąø²ąø™ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(58989, 'https://ror.org/0047xfq17', 'de', 1, 'https://ror.org/0047xfq17 Deutsche Gesellschaft für Neurogastroenterologie und Motilität');
INSERT INTO `rors` VALUES
(58990, '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'),
(58991, 'https://ror.org/0359pwd41', 'en', 1, 'https://ror.org/0359pwd41 Down Syndrome Association of Greater Toledo'),
(58992, 'https://ror.org/05jksah37', 'en', 1, 'https://ror.org/05jksah37 Asia Cornea Society'),
(58993, 'https://ror.org/050y6sw38', 'en', 1, 'https://ror.org/050y6sw38 Deutsche Stiftung Organtransplantation German Organ Transplantation Foundation'),
(58994, 'https://ror.org/022dwdg85', 'de', 1, 'https://ror.org/022dwdg85 Deutsche Gesellschaft für Angiologie Gesellschaft für Gefäßmedizin e.V.'),
(58995, 'https://ror.org/00322eq64', 'en', 1, 'https://ror.org/00322eq64 Association Canadienne des Chirurgiens GƩnƩraux Canadian Association of General Surgeons'),
(58996, 'https://ror.org/013z6ae41', 'en', 1, 'https://ror.org/013z6ae41 Deutsche Krebsgesellschaft German Cancer Society'),
(58997, 'https://ror.org/05k3yhz56', 'en', 1, 'https://ror.org/05k3yhz56 Association Canadienne de Protection MƩdicale Canadian Medical Protective Association'),
(58998, 'https://ror.org/05mht2065', 'en', 1, 'https://ror.org/05mht2065 Chinese Gerontology Society äø­å›½č€å¹“å­¦å’Œč€å¹“åŒ»å­¦å­¦ä¼š'),
(58999, 'https://ror.org/04qczj105', 'en', 1, 'https://ror.org/04qczj105 American Association of Sensory Electrodiagnostic Medicine'),
(59000, 'https://ror.org/034nqx294', 'en', 1, 'https://ror.org/034nqx294 Canadian Orthopaedic Foot and Ankle Society'),
(59001, 'https://ror.org/05qaf7a32', 'nl', 1, 'https://ror.org/05qaf7a32 Dutch Society for Obstetrics and Gynecology Nederlandse Vereniging voor Obstetrie en Gynaecologie'),
(59002, 'https://ror.org/0376sq070', 'en', 1, 'https://ror.org/0376sq070 Gifu Prefecture Medical Association 岐阜県医師会'),
(59003, 'https://ror.org/01p1gwk51', 'da', 1, 'https://ror.org/01p1gwk51 Landsforeningen VƦrn om Synet Ƙjenforeningen'),
(59004, 'https://ror.org/03vwqmf10', 'en', 1, 'https://ror.org/03vwqmf10 Global Health Association of Miami'),
(59005, 'https://ror.org/03e7cxq04', 'en', 1, 'https://ror.org/03e7cxq04 Canadian Society of Colon and Rectal Surgeons'),
(59006, 'https://ror.org/03rs9zz96', 'en', 1, 'https://ror.org/03rs9zz96 Government Medical Officers Association'),
(59007, 'https://ror.org/01nw4gp55', 'en', 1, 'https://ror.org/01nw4gp55 Canadian Society of Intestinal Research'),
(59008, 'https://ror.org/01aq0vw42', 'nl', 1, 'https://ror.org/01aq0vw42 Ergotherapie Nederland Nederlandse Vereniging van Ergotherapie'),
(59009, 'https://ror.org/037jjwb78', 'fr', 1, 'https://ror.org/037jjwb78 Association Pharmaceutique Belge'),
(59010, 'https://ror.org/0567gec15', 'en', 1, 'https://ror.org/0567gec15 The Memory Clinic'),
(59011, 'https://ror.org/02d0b6k80', 'en', 1, 'https://ror.org/02d0b6k80 Association Canadienne des Greffes Canadian Transplant Association'),
(59012, 'https://ror.org/03e7fa829', 'en', 1, 'https://ror.org/03e7fa829 Association of British Clinical Diabetologists'),
(59013, 'https://ror.org/034weys19', 'fr', 1, 'https://ror.org/034weys19 AMIS FSH'),
(59014, 'https://ror.org/021fhy603', 'en', 1, 'https://ror.org/021fhy603 Association of Cancer Online Resources'),
(59015, 'https://ror.org/00gkwfd59', 'en', 1, 'https://ror.org/00gkwfd59 Pathway'),
(59016, 'https://ror.org/000x2q781', 'en', 1, 'https://ror.org/000x2q781 Arthritis Associates of Southern California'),
(59017, 'https://ror.org/01t0tr298', 'en', 1, 'https://ror.org/01t0tr298 Academy of Cardiovascular Society Kardiyovasküler Akademi Derneği'),
(59018, 'https://ror.org/0214xre54', 'en', 1, 'https://ror.org/0214xre54 Guelph Wellington Seniors Association'),
(59019, 'https://ror.org/01s902n79', 'en', 1, 'https://ror.org/01s902n79 Association of Extremity Nerve Surgeons'),
(59020, 'https://ror.org/04zy2vv30', 'en', 1, 'https://ror.org/04zy2vv30 Gulf Heart Association'),
(59021, 'https://ror.org/01pxs4m78', 'en', 1, 'https://ror.org/01pxs4m78 Association of Gynaecologists and Obstetricians'),
(59022, 'https://ror.org/00t043b19', 'da', 1, 'https://ror.org/00t043b19 Dansk Selskab For Klassisk HomĆøopati'),
(59023, 'https://ror.org/055tmjh12', 'en', 1, 'https://ror.org/055tmjh12 Asthma Association ŠŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ Астма'),
(59024, 'https://ror.org/031f8xv45', 'en', 1, 'https://ror.org/031f8xv45 Children’s Aid Society of Hamilton'),
(59025, 'https://ror.org/01h5tah83', 'en', 1, 'https://ror.org/01h5tah83 Alliance Against Diabetes'),
(59026, 'https://ror.org/0206dgg42', 'pt', 1, 'https://ror.org/0206dgg42 Association of Brazilian Intensive Medicine Associação de Medicina Intensiva Brasileira'),
(59027, 'https://ror.org/00m0c9422', 'en', 1, 'https://ror.org/00m0c9422 Charleston Hematology Oncology Associates'),
(59028, 'https://ror.org/01zcmzh38', 'en', 1, 'https://ror.org/01zcmzh38 Health Informatics Society of Ireland'),
(59029, 'https://ror.org/03ad34z63', 'en', 1, 'https://ror.org/03ad34z63 Association of Children and Preventive Dentists of Serbia'),
(59030, 'https://ror.org/03ks8z635', 'en', 1, 'https://ror.org/03ks8z635 International Hyperbarics Association'),
(59031, 'https://ror.org/0031gef94', 'es', 1, 'https://ror.org/0031gef94 Sociedad EspaƱola de Medicina Interna'),
(59032, 'https://ror.org/053gt7v47', 'en', 1, 'https://ror.org/053gt7v47 Association of Pediatric Program Directors'),
(59033, 'https://ror.org/04h407e94', 'en', 1, 'https://ror.org/04h407e94 Chest Wall Injury Society'),
(59034, 'https://ror.org/03eg7wq38', 'tr', 1, 'https://ror.org/03eg7wq38 Turkish Emergency Medical Association Türkiye Acil Tıp Derneği'),
(59035, 'https://ror.org/039p74p43', 'en', 1, 'https://ror.org/039p74p43 Hellenic Cancer Society Ελληνική Αντικαρκινική Εταιρεία'),
(59036, 'https://ror.org/04qmeyd63', 'en', 1, 'https://ror.org/04qmeyd63 Association of Academic Professionals in Obstetrics and Gynaecology'),
(59037, 'https://ror.org/00bbh3b38', 'en', 1, 'https://ror.org/00bbh3b38 International Piezoelectric Surgery Academy'),
(59038, 'https://ror.org/016208791', 'en', 1, 'https://ror.org/016208791 Children’s Aid Society'),
(59039, 'https://ror.org/03jgde213', 'en', 1, 'https://ror.org/03jgde213 Hellenic Food Industries Association Ī£ĻĪ½Ī“ĪµĻƒĪ¼ĪæĻ‚ Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŽĪ½ Ī’Ī¹ĪæĪ¼Ī·Ļ‡Ī±Ī½Ī¹ĻŽĪ½ Τροφίμων'),
(59040, 'https://ror.org/001vn6g34', 'en', 1, 'https://ror.org/001vn6g34 Association of Specialty Physicians'),
(59041, 'https://ror.org/047zejf54', 'en', 1, 'https://ror.org/047zejf54 Chimes Society'),
(59042, 'https://ror.org/020616e42', 'en', 1, 'https://ror.org/020616e42 Senologic Hellenic Society Ελληνική Εταιρεία ĪœĪ±ĻƒĻ„ĪæĪ»ĪæĪ³ĪÆĪ±'),
(59043, 'https://ror.org/02rc09k84', 'en', 1, 'https://ror.org/02rc09k84 Hellenic Society for Chemotherapy Ελληνική Εταιρεία Χημειοθεραπείας'),
(59044, 'https://ror.org/03p2hyg63', 'en', 1, 'https://ror.org/03p2hyg63 National Association of Area Agencies on Aging'),
(59045, 'https://ror.org/05dsxqn95', 'en', 1, 'https://ror.org/05dsxqn95 ELEPAP-Rehabilitation for The Disabled Ελληνική Εταιρία Ī ĻĪæĻƒĻ„Ī±ĻƒĪÆĪ±Ļ‚ & Ī‘Ļ€ĪæĪŗĪ±Ļ„Ī±ĻƒĻ„Ī¬ĻƒĪµĻ‰Ļ‚ Αναπήρων Ī ĻĪæĻƒĻŽĻ€Ļ‰Ī½-ΕΛΕΠΑΠ'),
(59046, 'https://ror.org/037695w38', 'en', 1, 'https://ror.org/037695w38 National Association for Black Veterans'),
(59047, 'https://ror.org/02pe43019', 'en', 1, 'https://ror.org/02pe43019 National Asociation of General Practitioners in Bulgaria'),
(59048, 'https://ror.org/03w2j7e67', 'en', 1, 'https://ror.org/03w2j7e67 Xinhua Translational Institute for Cancer Pain äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žę–°åŽåŒ»é™¢'),
(59049, 'https://ror.org/03a011y73', 'et', 1, 'https://ror.org/03a011y73 Eesti Reumatoloogia Selts Estonian Rheumatology Society'),
(59050, 'https://ror.org/00ebjgp93', 'en', 1, 'https://ror.org/00ebjgp93 National Association of People with HIV Australia'),
(59051, 'https://ror.org/02jwgg565', 'en', 1, 'https://ror.org/02jwgg565 National Association of Statutory Health Insurance Physicians'),
(59052, 'https://ror.org/05gczn822', 'en', 1, 'https://ror.org/05gczn822 Hellenic Society of Hypertension Ελληνική Εταιρεία Ī„Ļ€Ī­ĻĻ„Ī±ĻƒĪ·Ļ‚'),
(59053, 'https://ror.org/026r68s65', 'en', 1, 'https://ror.org/026r68s65 International Thyroid Eye Disease Society'),
(59054, 'https://ror.org/03j3es427', 'de', 1, 'https://ror.org/03j3es427 Association of European Ayurvedic Physicians & Therapists Verband EuropƤischer Ayurveda-Mediziner & Therapeuten'),
(59055, 'https://ror.org/04h6ghc51', 'en', 1, 'https://ror.org/04h6ghc51 International WAGR Syndrome Association'),
(59056, 'https://ror.org/02hgpw430', 'en', 1, 'https://ror.org/02hgpw430 Association of the British Pharmaceutical Industry'),
(59057, 'https://ror.org/00r1f1395', 'en', 1, 'https://ror.org/00r1f1395 National Hematology Society ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Šµ гематологическое общество'),
(59058, 'https://ror.org/04erbf175', 'en', 1, 'https://ror.org/04erbf175 Russian Respiratory Society ŠœŠµŠ¶Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š¾Š±Ń‰ŠµŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Российское Респираторное ŠžŠ±Ń‰ŠµŃŃ‚во'),
(59059, 'https://ror.org/00q768c32', 'en', 1, 'https://ror.org/00q768c32 National Pecan Shellers Association'),
(59060, 'https://ror.org/039zvcc43', 'en', 1, 'https://ror.org/039zvcc43 Conemaugh Health System'),
(59061, 'https://ror.org/05d85fb80', 'en', 1, 'https://ror.org/05d85fb80 Hong Kong Island Women''s Association 香 ęøÆ å³¶ 婦 儳 聯 會'),
(59062, 'https://ror.org/00pqehw64', 'en', 1, 'https://ror.org/00pqehw64 National Stroke Association of Malaysia'),
(59063, 'https://ror.org/03h0ds251', 'en', 1, 'https://ror.org/03h0ds251 European Dairy Association'),
(59064, 'https://ror.org/02c9xpj15', 'en', 1, 'https://ror.org/02c9xpj15 National Stroke Association'),
(59065, 'https://ror.org/01hhggr08', 'en', 1, 'https://ror.org/01hhggr08 Humboldt Independent Practice Association'),
(59066, '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'),
(59067, 'https://ror.org/001qjw859', 'en', 1, 'https://ror.org/001qjw859 European Neuroendocrine Tumor Society'),
(59068, 'https://ror.org/02a5vfy19', 'en', 1, 'https://ror.org/02a5vfy19 Hunan Academy of Traditional Chinese Medicine ę¹–å—ēœäø­åŒ»čÆē ”ē©¶é™¢'),
(59069, 'https://ror.org/02xq0ba35', 'en', 1, 'https://ror.org/02xq0ba35 European Pathway Association'),
(59070, 'https://ror.org/0468xyb13', 'en', 1, 'https://ror.org/0468xyb13 Icelandic Félag sjúkraþjÔlfara The Icelandic Physiotherapy Association'),
(59071, 'https://ror.org/02vzhpz25', 'en', 1, 'https://ror.org/02vzhpz25 Irish Society of Chartered Physiotherapists'),
(59072, 'https://ror.org/03sk8zw22', 'nl', 1, 'https://ror.org/03sk8zw22 Nederlandse Internisten Vereniging'),
(59073, 'https://ror.org/029fymz93', 'fr', 1, 'https://ror.org/029fymz93 Association de Cardiologie - Ile de France'),
(59074, 'https://ror.org/03d8cnv56', 'en', 1, 'https://ror.org/03d8cnv56 Neighbourhood Pharmacy Association of Canada'),
(59075, 'https://ror.org/01nhpee59', 'en', 1, 'https://ror.org/01nhpee59 European Society for Intravenous Anaesthesia'),
(59076, 'https://ror.org/02pfg4167', 'en', 1, 'https://ror.org/02pfg4167 International Association for Human Values'),
(59077, 'https://ror.org/03wkx9d81', 'en', 1, 'https://ror.org/03wkx9d81 Israel Medical Association'),
(59078, 'https://ror.org/03r92yv86', 'en', 1, 'https://ror.org/03r92yv86 European Society for Surgical Research'),
(59079, 'https://ror.org/048m0by09', 'en', 1, 'https://ror.org/048m0by09 Indian Society of Critical Care Medicine'),
(59080, 'https://ror.org/01y2g0378', 'fr', 1, 'https://ror.org/01y2g0378 Association pour la Promotion du Sport chez l''Enfant Malade'),
(59081, 'https://ror.org/02qyyew72', 'en', 1, 'https://ror.org/02qyyew72 Nepal Red Cross Society'),
(59082, 'https://ror.org/015jb2v95', 'en', 1, 'https://ror.org/015jb2v95 Nepalese Psychological Association'),
(59083, 'https://ror.org/043cmyb92', 'en', 1, 'https://ror.org/043cmyb92 Israel Diabetes Association אגודה ×™×©×Ø××œ×™×Ŗ ×œ×”×•×›×Ø×Ŗ'),
(59084, 'https://ror.org/051bqjh49', 'en', 1, 'https://ror.org/051bqjh49 European Society of Cutaneous Lupus Erythematosus Europäische Gesellschaft für kutanen Lupus erythematodes'),
(59085, 'https://ror.org/02gzjez53', 'en', 1, 'https://ror.org/02gzjez53 Indiana Athletic Trainers Association'),
(59086, 'https://ror.org/013c16d18', 'en', 1, 'https://ror.org/013c16d18 European Society of Gynaecological Oncology'),
(59087, 'https://ror.org/01g0k2717', 'en', 1, 'https://ror.org/01g0k2717 Israeli Yoga Teachers Association ××Ø×’×•×Ÿ ×ž×•×Ø×™ היוגה ×‘×™×©×Ø××œ'),
(59088, 'https://ror.org/01kn7pj21', 'fr', 1, 'https://ror.org/01kn7pj21 Association pour la Recherche en Physiologie de l’Environnement'),
(59089, 'https://ror.org/05jxfq030', 'en', 1, 'https://ror.org/05jxfq030 Kidney Disease Association of Thailand'),
(59090, 'https://ror.org/03wjb0y70', 'en', 1, 'https://ror.org/03wjb0y70 Israeli Association for Cardiovascular Trials'),
(59091, 'https://ror.org/0480n9h26', 'nl', 1, 'https://ror.org/0480n9h26 Nederlandse Vereniging voor Radiologie'),
(59092, 'https://ror.org/01hga1v29', 'en', 1, 'https://ror.org/01hga1v29 New Brunswick Pharmacists’ Association'),
(59093, 'https://ror.org/02pqkyr67', 'en', 1, 'https://ror.org/02pqkyr67 New Jersey Psychological Association'),
(59094, 'https://ror.org/04qkw0x88', 'en', 1, 'https://ror.org/04qkw0x88 International CTEPH Association'),
(59095, 'https://ror.org/03hghb841', 'ro', 1, 'https://ror.org/03hghb841 Societatea Română de Anestezie şi Terapie Intensivă'),
(59096, 'https://ror.org/013kwyq90', 'en', 1, 'https://ror.org/013kwyq90 Nigerian Cardiac Society'),
(59097, 'https://ror.org/003tbyf39', 'en', 1, 'https://ror.org/003tbyf39 Romanian Society of Nephrology Societatii Romane de Nefrologie'),
(59098, 'https://ror.org/013848a06', 'en', 1, 'https://ror.org/013848a06 Italian Society of Physiotherapy SocietĆ  Italiana Fisioterapia'),
(59099, 'https://ror.org/00pbws926', 'en', 1, 'https://ror.org/00pbws926 Family Life Association of Swaziland'),
(59100, 'https://ror.org/0432mp741', 'en', 1, 'https://ror.org/0432mp741 Royal Health Awareness Society'),
(59101, 'https://ror.org/01skcyw40', 'ca', 1, 'https://ror.org/01skcyw40 Departament de Benestar i Drets Socials'),
(59102, 'https://ror.org/0472xf465', 'en', 1, 'https://ror.org/0472xf465 Nordic Society for Pediatric Hematology and Oncology'),
(59103, 'https://ror.org/021z2yz21', 'en', 1, 'https://ror.org/021z2yz21 Russian Society of Clinical Oncology Российское общество клинической онкологии'),
(59104, 'https://ror.org/02nwfp582', 'en', 1, 'https://ror.org/02nwfp582 Russian Society of Cardiology Российское карГиологическое общество'),
(59105, 'https://ror.org/008vhq233', 'en', 1, 'https://ror.org/008vhq233 North American Skull Base Society'),
(59106, 'https://ror.org/03hmdrw82', 'en', 1, 'https://ror.org/03hmdrw82 Russian Phlebology Association ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ флебологов России'),
(59107, 'https://ror.org/03ct3tn05', 'en', 1, 'https://ror.org/03ct3tn05 Italian Society of Periodontology and Implantology SocietĆ  Italiana di Parodontologia e Implantologia'),
(59108, 'https://ror.org/00vn3f760', 'en', 1, 'https://ror.org/00vn3f760 Rwanda Pediatric Association'),
(59109, 'https://ror.org/00jfqw572', 'de', 1, 'https://ror.org/00jfqw572 Austrian Society of Pneumology Ɩsterreichische Gesellschaft für Pneumologie'),
(59110, 'https://ror.org/04qs1qk86', 'de', 1, 'https://ror.org/04qs1qk86 Nord-Ostdeutsche Gesellschaft für Gynäkologische Onkologie'),
(59111, 'https://ror.org/030xn4p61', 'en', 1, 'https://ror.org/030xn4p61 Sadir Assistance'),
(59112, 'https://ror.org/05k2jeg48', 'en', 1, 'https://ror.org/05k2jeg48 North Suffolk Mental Health Association'),
(59113, 'https://ror.org/04njkp570', 'no_lang_code', 1, 'https://ror.org/04njkp570 Rahnuma'),
(59114, 'https://ror.org/00z31b133', 'no', 1, 'https://ror.org/00z31b133 Norsk Kiropraktorforening'),
(59115, 'https://ror.org/02mmpfj40', 'en', 1, 'https://ror.org/02mmpfj40 Bundesverband Deutscher ApothekerverbƤnde Federal Union of German Associations of Pharmacists'),
(59116, 'https://ror.org/0376avp13', 'en', 1, 'https://ror.org/0376avp13 Svenska Fotbollfƶrbundet Swedish Football Association'),
(59117, 'https://ror.org/026mq3948', 'en', 1, 'https://ror.org/026mq3948 Scandinavian College of Neuropsychopharmacology'),
(59118, 'https://ror.org/05wbdm460', 'en', 1, 'https://ror.org/05wbdm460 Swiss Ankylosing Spondylitis Association'),
(59119, 'https://ror.org/03m0x9887', 'en', 1, 'https://ror.org/03m0x9887 Schizophrenia Society of Ontario'),
(59120, 'https://ror.org/02a8scr35', 'no_lang_code', 1, 'https://ror.org/02a8scr35 Veikkaus (Finland)'),
(59121, 'https://ror.org/00t68m327', 'de', 1, 'https://ror.org/00t68m327 Balgrist Beteiligungs AG'),
(59122, 'https://ror.org/0043mrk19', 'en', 1, 'https://ror.org/0043mrk19 Norsk Smerteforening Norwegian Pain Society'),
(59123, 'https://ror.org/01ymyg650', 'en', 1, 'https://ror.org/01ymyg650 Japan Society of Laparoscopic Colorectal Surgery 第6å›žč…¹č…”é”äø‹å¤§č…øåˆ‡é™¤ē ”ē©¶ä¼š'),
(59124, 'https://ror.org/04yxf9667', 'en', 1, 'https://ror.org/04yxf9667 European Society of Hypertension SocietĆ  europea di ipertensione'),
(59125, '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'),
(59126, 'https://ror.org/001pkzr89', 'en', 1, 'https://ror.org/001pkzr89 Apotekforeningen Norwegian Pharmacy Association'),
(59127, 'https://ror.org/058nqnd90', 'en', 1, 'https://ror.org/058nqnd90 Japanese Society of CT Screening ę—„ęœ¬CT検診学会'),
(59128, 'https://ror.org/02097xt92', 'en', 1, 'https://ror.org/02097xt92 Iranian Orthopedic Association انجمن جراحان ارتوپدی Ų§ŪŒŲ±Ų§Ł†'),
(59129, 'https://ror.org/017gepd12', 'no', 1, 'https://ror.org/017gepd12 Landsforeningen Uventet BarnedĆød'),
(59130, 'https://ror.org/011e6t090', 'en', 1, 'https://ror.org/011e6t090 The Japanese Society of Intensive Care Medicine ę—„ęœ¬é›†äø­ę²»ē™‚åŒ»å­¦ä¼š'),
(59131, 'https://ror.org/002yjkk86', 'en', 1, 'https://ror.org/002yjkk86 Czech Surgical Society ČeskĆ” ChirurgickĆ” Společnost'),
(59132, 'https://ror.org/05ktmtk53', 'en', 1, 'https://ror.org/05ktmtk53 Kanagawa Prefecture Medical Association ē„žå„ˆå·ēœŒåŒ»åø«ä¼š'),
(59133, 'https://ror.org/01svr1620', 'fr', 1, 'https://ror.org/01svr1620 PharmaSuisse'),
(59134, 'https://ror.org/04jxvq020', 'en', 1, 'https://ror.org/04jxvq020 Nurse Maude Association'),
(59135, 'https://ror.org/043afx341', 'en', 1, 'https://ror.org/043afx341 Kaohsiung Breast Cancer Promotion and Education Society ē¤¾åœ˜ę³•äŗŗé«˜é›„åø‚ä¹³ē™Œé˜²ę²»č”›ę•™å­øęœƒ'),
(59136, 'https://ror.org/04k3a2264', 'en', 1, 'https://ror.org/04k3a2264 Turkish Ophthalmological Association Türk Oftalmoloji Derneği'),
(59137, 'https://ror.org/04n7wm262', 'en', 1, 'https://ror.org/04n7wm262 Sickle Cell Disease Association of America'),
(59138, 'https://ror.org/03mpzae61', 'en', 1, 'https://ror.org/03mpzae61 Kazakhstan Academy of Preventive Medicine АкаГемии профилактической меГицины'),
(59139, 'https://ror.org/050p4bn34', 'en', 1, 'https://ror.org/050p4bn34 Oakland Colon and Rectal Associates'),
(59140, 'https://ror.org/015aser35', 'en', 1, 'https://ror.org/015aser35 Psychiatric Association of Turkey Türkiye Psikiyatri Derneği'),
(59141, 'https://ror.org/02s7ywx66', 'en', 1, 'https://ror.org/02s7ywx66 Lions Eye Bank at Albany'),
(59142, 'https://ror.org/04hqw2h62', 'en', 1, 'https://ror.org/04hqw2h62 Kazakhstan Association on Sexual and Reproductive Health ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ°Ń Š°ŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ по половому Šø Ń€ŠµŠæŃ€Š¾Š“ŃƒŠŗŃ‚ŠøŠ²Š½Š¾Š¼Ńƒ Š·Š“Š¾Ń€Š¾Š²ŃŒŃŽ'),
(59143, 'https://ror.org/00yeh8c54', 'de', 1, 'https://ror.org/00yeh8c54 Schweizerische Ƅrztegesellschaft für Manuelle Medizin'),
(59144, 'https://ror.org/035gkt554', 'en', 1, 'https://ror.org/035gkt554 Sjƶgren’s Society of Canada'),
(59145, 'https://ror.org/02ckr4v59', 'ca', 1, 'https://ror.org/02ckr4v59 Collegi Oficial d''Infermeres i Infermers de Barcelona'),
(59146, 'https://ror.org/05kaht993', 'en', 1, 'https://ror.org/05kaht993 Skin of Color Society'),
(59147, 'https://ror.org/05m54mx02', 'en', 1, 'https://ror.org/05m54mx02 Ohio Dermatological Association'),
(59148, 'https://ror.org/02pndtz33', 'en', 1, 'https://ror.org/02pndtz33 Ohio Pediatric Research Association'),
(59149, 'https://ror.org/05t1byf51', 'en', 1, 'https://ror.org/05t1byf51 Ohio Physical Therapy Association'),
(59150, 'https://ror.org/05gxm7d74', 'en', 1, 'https://ror.org/05gxm7d74 Korea Pharmaceutical and Bio-Pharma Manufacturers Association ķ•œźµ­ģ œģ•½ė°”ģ“ģ˜¤ķ˜‘ķšŒ'),
(59151, 'https://ror.org/043sczt09', 'en', 1, 'https://ror.org/043sczt09 Ontario Association of Optometrists'),
(59152, 'https://ror.org/01ed1kg72', 'en', 1, 'https://ror.org/01ed1kg72 Ontario Ginseng Growers Association'),
(59153, 'https://ror.org/02c518c71', 'en', 1, 'https://ror.org/02c518c71 Swiss Society of Hypertension'),
(59154, 'https://ror.org/013mm0e79', 'en', 1, 'https://ror.org/013mm0e79 Korean Association for the Study of Targeted Therapy ķ‘œģ ģ¹˜ė£Œģ—°źµ¬ķšŒ ź°€ģž…'),
(59155, 'https://ror.org/04bsc0v25', 'en', 1, 'https://ror.org/04bsc0v25 Society for Cardiovascular Angiography and Interventions'),
(59156, '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'),
(59157, 'https://ror.org/033yj6a03', 'en', 1, 'https://ror.org/033yj6a03 Korean Association of Thyroid and Endocrine Surgeons ėŒ€ķ•œź°‘ģƒģ„ ė‚“ė¶„ė¹„ģ™øź³¼ķ•™ķšŒ'),
(59158, 'https://ror.org/02xypxj44', 'en', 1, 'https://ror.org/02xypxj44 Taiwan Association of Gynecologic Oncologists'),
(59159, 'https://ror.org/02349xy14', 'en', 1, 'https://ror.org/02349xy14 Korean Glaucoma Society ķ•œźµ­ė…¹ė‚“ģž„ķ•™ķšŒ'),
(59160, 'https://ror.org/024bhvy46', 'no_lang_code', 1, 'https://ror.org/024bhvy46 Population Services International'),
(59161, 'https://ror.org/05988vk42', 'en', 1, 'https://ror.org/05988vk42 Korean Society of Coloproctology ėŒ€ķ•œėŒ€ģž„ķ•­ė¬øķ•™ķšŒ'),
(59162, 'https://ror.org/03wkbzm88', 'en', 1, 'https://ror.org/03wkbzm88 Turkish Thoracic Society Türk Toraks Derneği'),
(59163, 'https://ror.org/00sqvb698', 'en', 1, 'https://ror.org/00sqvb698 Taiwan Lung Cancer Society'),
(59164, 'https://ror.org/04trvzz06', 'en', 1, 'https://ror.org/04trvzz06 Ontario Rheumatology Association'),
(59165, 'https://ror.org/03xaqy997', 'en', 1, 'https://ror.org/03xaqy997 Society for Minimally Invasive Spine Surgery'),
(59166, 'https://ror.org/00z2zyd49', 'en', 1, 'https://ror.org/00z2zyd49 US Apple Association'),
(59167, 'https://ror.org/042gx3p69', 'en', 1, 'https://ror.org/042gx3p69 Society For Pediatric Dermatology'),
(59168, 'https://ror.org/00j2yyv15', 'en', 1, 'https://ror.org/00j2yyv15 Taiwan Society of Cardiology'),
(59169, 'https://ror.org/04y25zx85', 'en', 1, 'https://ror.org/04y25zx85 Taiwan Society of Thrombosis and Hemostasis'),
(59170, 'https://ror.org/01kn25t14', 'en', 1, 'https://ror.org/01kn25t14 Korean Society of Interventional Cardiology ėŒ€ķ•œģ‹¬ķ˜ˆź“€ģ¤‘ģž¬ķ•™ķšŒ'),
(59171, 'https://ror.org/00zzaka68', 'en', 1, 'https://ror.org/00zzaka68 Society for Technology in Anesthesia'),
(59172, 'https://ror.org/05mv95n98', 'fr', 1, 'https://ror.org/05mv95n98 France Alzheimer et maladies apparentƩes France Alzheimer''s and related diseases'),
(59173, 'https://ror.org/04py26v74', 'en', 1, 'https://ror.org/04py26v74 Korean Society of Lipidology and Atherosclerosis ķ•œźµ­ģ§€ģ§ˆĀ·ė™ė§„ź²½ķ™”ķ•™ķšŒ'),
(59174, 'https://ror.org/02a4npq92', 'en', 1, 'https://ror.org/02a4npq92 Society for the Advancement of Blood Management'),
(59175, 'https://ror.org/014v0ay52', 'en', 1, 'https://ror.org/014v0ay52 Society for Promoting Participative Ecosystem Management'),
(59176, 'https://ror.org/02q2ct796', 'en', 1, 'https://ror.org/02q2ct796 Union Settlement'),
(59177, 'https://ror.org/00z3tee21', 'en', 1, 'https://ror.org/00z3tee21 Outpatient Endovascular and Interventional Society'),
(59178, 'https://ror.org/009vxx508', 'en', 1, 'https://ror.org/009vxx508 Tennessee Physical Therapy Association'),
(59179, 'https://ror.org/01e2b1f74', 'en', 1, 'https://ror.org/01e2b1f74 Society for Vascular Surgery'),
(59180, 'https://ror.org/029pcyp29', 'en', 1, 'https://ror.org/029pcyp29 Texas Academy of Family Physicians Foundation'),
(59181, 'https://ror.org/04d9c7c50', 'en', 1, 'https://ror.org/04d9c7c50 Society Hill Reproductive Medicine'),
(59182, 'https://ror.org/04mz17v36', 'en', 1, 'https://ror.org/04mz17v36 Texas Physical Therapy Association'),
(59183, 'https://ror.org/00zfpsw25', 'en', 1, 'https://ror.org/00zfpsw25 The Lung Association Saskatchewan'),
(59184, 'https://ror.org/033bt1t53', 'en', 1, 'https://ror.org/033bt1t53 Palestinian Family Planning and Protection Association'),
(59185, 'https://ror.org/0329bem96', 'en', 1, 'https://ror.org/0329bem96 Malaysian Endocrine and Metabolic Society'),
(59186, 'https://ror.org/057hq8k55', 'en', 1, 'https://ror.org/057hq8k55 Texas Society of Allied Health Professions'),
(59187, 'https://ror.org/01hpbbx98', 'fr', 1, 'https://ror.org/01hpbbx98 AcadƩmie de Paris'),
(59188, 'https://ror.org/03kbgb212', 'en', 1, 'https://ror.org/03kbgb212 Society of Alcoholism and other Addictions'),
(59189, 'https://ror.org/01zfzpp43', 'en', 1, 'https://ror.org/01zfzpp43 Malaysian Oil Scientists and Technologists Association'),
(59190, 'https://ror.org/02ymb2422', 'vi', 1, 'https://ror.org/02ymb2422 Hį»™i Tim mįŗ”ch hį»c Việt Nam Vietnam Heart Association'),
(59191, 'https://ror.org/03v5eb747', 'en', 1, 'https://ror.org/03v5eb747 Malaysian Society of Anaesthesiologists'),
(59192, 'https://ror.org/00f054b56', 'en', 1, 'https://ror.org/00f054b56 Thai Dietetic Association'),
(59193, 'https://ror.org/049yrqz47', 'vi', 1, 'https://ror.org/049yrqz47 Hį»™i Gastroenterology Việt Nam Vietnam Association of Gastroenterology'),
(59194, 'https://ror.org/05vvd0y68', 'en', 1, 'https://ror.org/05vvd0y68 Alzheimer Society London Middlesex'),
(59195, 'https://ror.org/03q39mv91', 'en', 1, 'https://ror.org/03q39mv91 Massage Therapist Association of Alberta'),
(59196, 'https://ror.org/022ktbf55', 'en', 1, 'https://ror.org/022ktbf55 Massage Therapists Association of British Columbia'),
(59197, 'https://ror.org/00krb3q77', 'de', 1, 'https://ror.org/00krb3q77 Freiwillige Akademische Gesellschaft Voluntary Academic Society'),
(59198, 'https://ror.org/01r34sc48', 'en', 1, 'https://ror.org/01r34sc48 Philippine Medical Association'),
(59199, 'https://ror.org/033wnk810', 'en', 1, 'https://ror.org/033wnk810 Voluntary Health Association of Goa'),
(59200, 'https://ror.org/04hgryz27', 'en', 1, 'https://ror.org/04hgryz27 American Professional Society of ADHD and Related Disorders'),
(59201, 'https://ror.org/02607jq78', 'en', 1, 'https://ror.org/02607jq78 Society of Military Orthopaedic Surgeons'),
(59202, 'https://ror.org/0229q5b07', 'en', 1, 'https://ror.org/0229q5b07 Medicon Valley Alliance'),
(59203, 'https://ror.org/023erdr66', 'en', 1, 'https://ror.org/023erdr66 Society of Musculoskeletal Medicine'),
(59204, 'https://ror.org/04z5nag80', 'en', 1, 'https://ror.org/04z5nag80 Medirex Group Academy'),
(59205, 'https://ror.org/01pyv5j09', 'en', 1, 'https://ror.org/01pyv5j09 American Pistachio Growers'),
(59206, 'https://ror.org/04883bn66', 'en', 1, 'https://ror.org/04883bn66 Western Trauma Association'),
(59207, 'https://ror.org/02vdkna52', 'en', 1, 'https://ror.org/02vdkna52 Wisconsin Elks Association'),
(59208, 'https://ror.org/024asvc11', 'en', 1, 'https://ror.org/024asvc11 Wisconsin Parkinson Association'),
(59209, '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'),
(59210, 'https://ror.org/006ds0328', 'en', 1, 'https://ror.org/006ds0328 World Molecular Imaging Society'),
(59211, 'https://ror.org/032k2hj66', 'pt', 1, 'https://ror.org/032k2hj66 Associação Portuguesa de Fertilidade'),
(59212, 'https://ror.org/01t2wgx84', 'pt', 1, 'https://ror.org/01t2wgx84 Associação Portuguesa de Hemofilia e de outras Coagulopatias Congénitas'),
(59213, 'https://ror.org/01xzv1t06', 'en', 1, 'https://ror.org/01xzv1t06 Somali Association of Arizona'),
(59214, 'https://ror.org/0245hme54', 'en', 1, 'https://ror.org/0245hme54 Himalayan Rescue Association'),
(59215, 'https://ror.org/05wry3s62', 'en', 1, 'https://ror.org/05wry3s62 Prader Willi Syndrome Association'),
(59216, 'https://ror.org/012recq09', 'en', 1, 'https://ror.org/012recq09 Society for Pediatric Anesthesia'),
(59217, 'https://ror.org/04z0csp04', 'en', 1, 'https://ror.org/04z0csp04 Primary Care Diabetes Society'),
(59218, 'https://ror.org/04bkr1a40', 'da', 1, 'https://ror.org/04bkr1a40 Psoriasisforeningen'),
(59219, 'https://ror.org/01yn20z87', 'en', 1, 'https://ror.org/01yn20z87 South African Society of Anaesthesiologists'),
(59220, 'https://ror.org/02z8q9w63', 'de', 1, 'https://ror.org/02z8q9w63 Schweizerische Ƅrztegesellschaft für Psycholytische Therapie'),
(59221, 'https://ror.org/0297tm887', 'en', 1, 'https://ror.org/0297tm887 Vascular Society of Southern Africa'),
(59222, 'https://ror.org/00te3yw40', 'en', 1, 'https://ror.org/00te3yw40 Medical Group of the Carolinas'),
(59223, 'https://ror.org/04kxpwr66', 'en', 1, 'https://ror.org/04kxpwr66 European Society for Diseases of the Esophagus'),
(59224, 'https://ror.org/046sb0j13', 'es', 1, 'https://ror.org/046sb0j13 Asociación Española de Psiquiatría del Niño y el Adolescente'),
(59225, 'https://ror.org/05a3a1625', 'en', 1, 'https://ror.org/05a3a1625 Professional Footballers'' Association'),
(59226, 'https://ror.org/039hp9c94', 'en', 1, 'https://ror.org/039hp9c94 Family Planning Association of Hong Kong'),
(59227, 'https://ror.org/04xpvy130', 'en', 1, 'https://ror.org/04xpvy130 Difficult Airways Society'),
(59228, 'https://ror.org/00ts5sd59', 'en', 1, 'https://ror.org/00ts5sd59 New York Society for the Prevention of Cruelty to Children'),
(59229, 'https://ror.org/03dq7j590', 'es', 1, 'https://ror.org/03dq7j590 Sociedad EspaƱola de Cuidados Intensivos PediƔtricos'),
(59230, 'https://ror.org/03k553r38', 'en', 1, 'https://ror.org/03k553r38 Qatar Diabetes Association'),
(59231, 'https://ror.org/03t9hh016', 'en', 1, 'https://ror.org/03t9hh016 Mountain Medicine Society of Nepal'),
(59232, 'https://ror.org/01y1na882', 'en', 1, 'https://ror.org/01y1na882 Finnish Association of People with Physical Disabilities'),
(59233, 'https://ror.org/01spyz863', 'es', 1, 'https://ror.org/01spyz863 Sociedad EspaƱola de Endoscopia Digestiva'),
(59234, 'https://ror.org/0209kwd29', 'en', 1, 'https://ror.org/0209kwd29 Western Michigan Society of Health Systems Pharmacists'),
(59235, 'https://ror.org/02wspvn72', 'en', 1, 'https://ror.org/02wspvn72 Yin Huo Health Association é“¶ē«å„åŗ·åä¼š'),
(59236, 'https://ror.org/04f2wpy12', 'no', 1, 'https://ror.org/04f2wpy12 Norsk CĆøliakiforening'),
(59237, 'https://ror.org/04e72pa13', 'en', 1, 'https://ror.org/04e72pa13 The Radiosurgery Society'),
(59238, 'https://ror.org/02f12qk21', 'en', 1, 'https://ror.org/02f12qk21 The Korean Society of Pediatric Hematology-Oncology'),
(59239, 'https://ror.org/048jjj865', 'es', 1, 'https://ror.org/048jjj865 Sociedad EspaƱola de Cirugƭa PediƔtrica'),
(59240, 'https://ror.org/022txv590', 'en', 1, 'https://ror.org/022txv590 The Society for the Relief of Disabled Children é¦™ęøÆå¼±čƒ½å…’ē«„č­·åŠ©ęœƒ'),
(59241, 'https://ror.org/032kph469', 'en', 1, 'https://ror.org/032kph469 The Korean Urological Oncology Society ķ•œźµ­ 비뇨기 종양 ķ•™ķšŒ'),
(59242, 'https://ror.org/05j35jp78', 'en', 1, 'https://ror.org/05j35jp78 The Lok Sin Tong Benevolent Society Kowloon ä¹é¾ęØ‚å–„å ‚'),
(59243, 'https://ror.org/02n3wzn79', 'en', 1, 'https://ror.org/02n3wzn79 The Taiwanese Osteoporosis Association äø­čÆę°‘åœ‹éŖØč³Ŗē–é¬†ē—‡å­øęœƒ'),
(59244, 'https://ror.org/05cven481', 'en', 1, 'https://ror.org/05cven481 UK Thalassaemia Society'),
(59245, 'https://ror.org/03t64vv46', 'en', 1, 'https://ror.org/03t64vv46 Phoenix Society for Burn Survivors'),
(59246, 'https://ror.org/01hkxy133', 'es', 1, 'https://ror.org/01hkxy133 Sociedad Española de Periodoncia y Osteointegración'),
(59247, 'https://ror.org/01bvxq084', 'es', 1, 'https://ror.org/01bvxq084 Sociedad EspaƱola de Trombosis y Hemostasia'),
(59248, 'https://ror.org/004d7av08', 'en', 1, 'https://ror.org/004d7av08 Sutherland Society'),
(59249, 'https://ror.org/02k7x9210', 'en', 1, 'https://ror.org/02k7x9210 The Korean Academy of Tuberculosis and Respiratory Diseases'),
(59250, 'https://ror.org/03kz34w09', 'en', 1, 'https://ror.org/03kz34w09 Sport Medicine Council of Alberta'),
(59251, 'https://ror.org/04nv6s061', 'en', 1, 'https://ror.org/04nv6s061 Canadian Heart Research Centre'),
(59252, 'https://ror.org/01xepk867', 'en', 1, 'https://ror.org/01xepk867 IMMUNOe Research Center'),
(59253, 'https://ror.org/04q33ey84', 'fr', 1, 'https://ror.org/04q33ey84 Centre Hospitalier Charles Perrens'),
(59254, 'https://ror.org/01pwm0502', 'en', 1, 'https://ror.org/01pwm0502 Canadian VIGOUR Centre'),
(59255, 'https://ror.org/033bq3134', 'en', 1, 'https://ror.org/033bq3134 Israeli Society for the Prevention of Heart Attacks'),
(59256, 'https://ror.org/027tkf265', 'en', 1, 'https://ror.org/027tkf265 Island Hospital'),
(59257, 'https://ror.org/05y1zs562', 'en', 1, 'https://ror.org/05y1zs562 404 General Military Hospital 404 Ī“ĪµĪ½Ī¹ĪŗĻŒ Ī£Ļ„ĻĪ±Ļ„Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(59258, 'https://ror.org/01kebx220', 'en', 1, 'https://ror.org/01kebx220 Clinical Research Organization'),
(59259, 'https://ror.org/01txxxh71', 'fr', 1, 'https://ror.org/01txxxh71 Centre Hospitalier du Pays d''Aix'),
(59260, 'https://ror.org/02h8c3526', 'en', 1, 'https://ror.org/02h8c3526 Cancer Care Specialists of Illinois'),
(59261, 'https://ror.org/056xm2x07', 'ro', 1, 'https://ror.org/056xm2x07 Spitalul Clinic Judetean de Urgenta Sibiu'),
(59262, 'https://ror.org/0267er755', 'fr', 1, 'https://ror.org/0267er755 Les HƓpitaux de Chartres'),
(59263, 'https://ror.org/04pfm8b84', 'en', 1, 'https://ror.org/04pfm8b84 Acadia Hospital'),
(59264, 'https://ror.org/02d741577', 'fr', 1, 'https://ror.org/02d741577 Centre Hospitalier RƩgional de Metz-Thionville'),
(59265, 'https://ror.org/01rxc2g24', 'no_lang_code', 1, 'https://ror.org/01rxc2g24 Accurate Clinical Management (United States)'),
(59266, 'https://ror.org/025yckn40', 'en', 1, 'https://ror.org/025yckn40 KSK Medical'),
(59267, 'https://ror.org/002d8xd40', 'no_lang_code', 1, 'https://ror.org/002d8xd40 Accurate Clinical Research (United States)'),
(59268, 'https://ror.org/03z5qqj48', 'en', 1, 'https://ror.org/03z5qqj48 Adam International Hospital'),
(59269, 'https://ror.org/03gsbap19', 'en', 1, 'https://ror.org/03gsbap19 Clinical Trial Center Maastricht'),
(59270, 'https://ror.org/00dyr0c82', 'en', 1, 'https://ror.org/00dyr0c82 Adena Regional Medical Center'),
(59271, 'https://ror.org/05908bk79', 'en', 1, 'https://ror.org/05908bk79 Cancer Center of Western Wisconsin'),
(59272, 'https://ror.org/0055t9634', 'en', 1, 'https://ror.org/0055t9634 Clinical Trials of South Carolina'),
(59273, 'https://ror.org/02wqv1w77', 'fr', 1, 'https://ror.org/02wqv1w77 Clinique du Pont Saint-Vaast'),
(59274, 'https://ror.org/0487c1f17', 'en', 1, 'https://ror.org/0487c1f17 Advanced Radiation Centers of New York'),
(59275, 'https://ror.org/023p7x818', 'en', 1, 'https://ror.org/023p7x818 Advocate Center for Pediatric Research'),
(59276, 'https://ror.org/03743p518', 'fr', 1, 'https://ror.org/03743p518 Imagerie Médicale et Radiothérapie DrÓme Ardèche'),
(59277, 'https://ror.org/02hxr7787', 'en', 1, 'https://ror.org/02hxr7787 Cancer Centers of Southwest Oklahoma'),
(59278, 'https://ror.org/04pmj8905', 'no_lang_code', 1, 'https://ror.org/04pmj8905 CM Hospital'),
(59279, 'https://ror.org/01fepwa31', 'fr', 1, 'https://ror.org/01fepwa31 Clinique du Sport'),
(59280, 'https://ror.org/05xfh8p29', 'no_lang_code', 1, 'https://ror.org/05xfh8p29 Baoji City Central Hospital å®éø”åø‚äø­åæƒåŒ»é™¢'),
(59281, 'https://ror.org/052w8rh87', 'no_lang_code', 1, 'https://ror.org/052w8rh87 Agunco'),
(59282, 'https://ror.org/02pedxm79', 'en', 1, 'https://ror.org/02pedxm79 The Centre of Chinese Medicine'),
(59283, 'https://ror.org/031pkxq11', 'no_lang_code', 1, 'https://ror.org/031pkxq11 Baotou Central Hospital åŒ…å¤“åø‚äø­åæƒåŒ»é™¢'),
(59284, 'https://ror.org/03yhxyz98', 'en', 1, 'https://ror.org/03yhxyz98 Chinese Medical Center'),
(59285, 'https://ror.org/03abchz62', 'en', 1, 'https://ror.org/03abchz62 Adventist Health Bakersfield'),
(59286, 'https://ror.org/02ak4m037', 'fr', 1, 'https://ror.org/02ak4m037 Institut de CancƩrologie de Bourgogne'),
(59287, 'https://ror.org/03bq83s83', 'en', 1, 'https://ror.org/03bq83s83 Capital Health Medical Center Hopewell'),
(59288, 'https://ror.org/01yegct87', 'en', 1, 'https://ror.org/01yegct87 Commonwealth Cancer Center'),
(59289, 'https://ror.org/033brdk22', 'no_lang_code', 1, 'https://ror.org/033brdk22 Centrexion Therapeutics (United States)'),
(59290, 'https://ror.org/049w02t38', 'en', 1, 'https://ror.org/049w02t38 Cardiovascular Clinical Science Foundation'),
(59291, 'https://ror.org/05rtpzn26', 'pt', 1, 'https://ror.org/05rtpzn26 Centro Hospitalar do Baixo Vouga'),
(59292, 'https://ror.org/0025r1k74', 'pt', 1, 'https://ror.org/0025r1k74 Centro Hospitalar Tondela-Viseu'),
(59293, 'https://ror.org/01a4ndw62', 'en', 1, 'https://ror.org/01a4ndw62 Chaitanya Hospital And Nursing Home'),
(59294, 'https://ror.org/02s70bh95', 'en', 1, 'https://ror.org/02s70bh95 Cardiovascular Research Center'),
(59295, 'https://ror.org/01krfgm39', 'en', 1, 'https://ror.org/01krfgm39 Alabama Clincal Therapeutics'),
(59296, 'https://ror.org/01cqbdz44', 'en', 1, 'https://ror.org/01cqbdz44 Community Health Center of Franklin County'),
(59297, 'https://ror.org/04kqtxx50', 'en', 1, 'https://ror.org/04kqtxx50 Chang Hua Hospital č”›ē”Ÿē¦åˆ©éƒØå½°åŒ–é†«é™¢'),
(59298, 'https://ror.org/03det7895', 'en', 1, 'https://ror.org/03det7895 Oncology Hematology Associates of Saginaw Valley'),
(59299, 'https://ror.org/02tzmns59', 'en', 1, 'https://ror.org/02tzmns59 Community Hospital of Anaconda'),
(59300, 'https://ror.org/00zn0ha79', 'en', 1, 'https://ror.org/00zn0ha79 Aljazeera Hospital'),
(59301, 'https://ror.org/04pgw5133', 'en', 1, 'https://ror.org/04pgw5133 Charlotte Hungerford Hospital'),
(59302, 'https://ror.org/057r18x87', 'no_lang_code', 1, 'https://ror.org/057r18x87 All Sum Research Center (Canada)'),
(59303, 'https://ror.org/035wxqn98', 'en', 1, 'https://ror.org/035wxqn98 Carolinas Center for Advanced Management of Pain'),
(59304, 'https://ror.org/008x2am79', 'en', 1, 'https://ror.org/008x2am79 Chengdu Women''s and Children''s Central Hospital ęˆéƒ½åø‚å¦‡å„³å„æē«„äø­åæƒåŒ»é™¢'),
(59305, 'https://ror.org/00mfnf459', 'en', 1, 'https://ror.org/00mfnf459 Carson Tahoe Regional Medical Center'),
(59306, 'https://ror.org/059ape351', 'no_lang_code', 1, 'https://ror.org/059ape351 CCM Clinical Research Group (United States)'),
(59307, 'https://ror.org/01f8v1064', 'en', 1, 'https://ror.org/01f8v1064 Altru Health System'),
(59308, 'https://ror.org/02vz7hv03', 'en', 1, 'https://ror.org/02vz7hv03 Comprehensive Blood & Cancer Center'),
(59309, 'https://ror.org/0576xfs30', 'en', 1, 'https://ror.org/0576xfs30 Behman Hospital'),
(59310, 'https://ror.org/04v67sh61', 'en', 1, 'https://ror.org/04v67sh61 Centeno-Schultz Clinic'),
(59311, 'https://ror.org/0581hjr43', 'en', 1, 'https://ror.org/0581hjr43 Bendigo Hospital'),
(59312, 'https://ror.org/022k58k47', 'en', 1, 'https://ror.org/022k58k47 Anchorage and Valley Radiation Therapy Centers'),
(59313, 'https://ror.org/019g4tc51', 'pt', 1, 'https://ror.org/019g4tc51 Androfert'),
(59314, 'https://ror.org/00m7jsz42', 'en', 1, 'https://ror.org/00m7jsz42 European Society for Hyperthermic Oncology'),
(59315, 'https://ror.org/009py3f05', 'en', 1, 'https://ror.org/009py3f05 Center for Child and Family Health'),
(59316, 'https://ror.org/020wka979', 'en', 1, 'https://ror.org/020wka979 CHRISTUS Highland Medical Center'),
(59317, 'https://ror.org/01qwms897', 'en', 1, 'https://ror.org/01qwms897 Bernstein Clinical Research Center'),
(59318, 'https://ror.org/05gdxv139', 'en', 1, 'https://ror.org/05gdxv139 Andros Clinica Day Surgery'),
(59319, 'https://ror.org/05trqa150', 'en', 1, 'https://ror.org/05trqa150 CHRISTUS St. Frances Cabrini Hospital'),
(59320, 'https://ror.org/04je70584', 'en', 1, 'https://ror.org/04je70584 Anhui Provincial Children''s Hospital å®‰å¾½ēœå„æē«„åŒ»é™¢'),
(59321, 'https://ror.org/00j1j3213', 'en', 1, 'https://ror.org/00j1j3213 Beverly Hills Cancer Center'),
(59322, 'https://ror.org/019ph5n64', 'en', 1, 'https://ror.org/019ph5n64 AnMed Health'),
(59323, 'https://ror.org/02pg06c63', 'en', 1, 'https://ror.org/02pg06c63 CHRISTUS St. Vincent Regional Cancer Center'),
(59324, 'https://ror.org/01t2rqa20', 'en', 1, 'https://ror.org/01t2rqa20 Annie Penn Hospital'),
(59325, 'https://ror.org/046ww9q34', 'it', 1, 'https://ror.org/046ww9q34 Casa di Cura CittĆ  di Roma'),
(59326, 'https://ror.org/05fzfv584', 'en', 1, 'https://ror.org/05fzfv584 Berlin Center for Epidemiology and Health Research'),
(59327, 'https://ror.org/005cttr84', 'en', 1, 'https://ror.org/005cttr84 Clackamas Radiation Oncology Center'),
(59328, 'https://ror.org/00dt6z133', 'en', 1, 'https://ror.org/00dt6z133 Big Horn Basin Regional Cancer Center'),
(59329, 'https://ror.org/03vrg9x02', 'en', 1, 'https://ror.org/03vrg9x02 Arkansas Heart Hospital'),
(59330, 'https://ror.org/03dp65d64', 'en', 1, 'https://ror.org/03dp65d64 Billings Clinic Cody'),
(59331, 'https://ror.org/053gtbc96', 'no_lang_code', 1, 'https://ror.org/053gtbc96 QPS (United States)'),
(59332, 'https://ror.org/022ases92', 'en', 1, 'https://ror.org/022ases92 Coram Clinical Trials'),
(59333, 'https://ror.org/00ppwb536', 'en', 1, 'https://ror.org/00ppwb536 Cleveland Sleep Research Center'),
(59334, 'https://ror.org/041045722', 'en', 1, 'https://ror.org/041045722 Bloom Fertility Centre'),
(59335, 'https://ror.org/04qjz7g79', 'sr', 1, 'https://ror.org/04qjz7g79 Klinika za Psihijatrijske Bolesti Dr Laza Lazarević'),
(59336, 'https://ror.org/00znarq76', 'en', 1, 'https://ror.org/00znarq76 Blanchard Valley Health System'),
(59337, 'https://ror.org/0498ha267', 'en', 1, 'https://ror.org/0498ha267 Armstrong Center for Medicine & Health'),
(59338, 'https://ror.org/018djsc63', 'fr', 1, 'https://ror.org/018djsc63 Espoir pour la Sante'),
(59339, 'https://ror.org/05hk5hv71', 'en', 1, 'https://ror.org/05hk5hv71 Stormont Vail Health'),
(59340, 'https://ror.org/05p9zq845', 'no_lang_code', 1, 'https://ror.org/05p9zq845 QPS (India)'),
(59341, 'https://ror.org/02trmev56', 'no_lang_code', 1, 'https://ror.org/02trmev56 Twist Bioscience (United States)'),
(59342, 'https://ror.org/02dx38m31', 'en', 1, 'https://ror.org/02dx38m31 Scientific Medical School Dr. Synergetic'),
(59343, 'https://ror.org/01gdexd83', 'en', 1, 'https://ror.org/01gdexd83 Clinica Gastrobese'),
(59344, 'https://ror.org/043gt9j70', 'en', 1, 'https://ror.org/043gt9j70 Arthritis Treatment Center'),
(59345, 'https://ror.org/01jscks03', 'en', 1, 'https://ror.org/01jscks03 Clinical Alliance for Research and Education-Infectious Diseases'),
(59346, 'https://ror.org/03pj64m52', 'en', 1, 'https://ror.org/03pj64m52 Bone and Joint Clinic of Baton Rouge'),
(59347, 'https://ror.org/015dptv07', 'en', 1, 'https://ror.org/015dptv07 Athens Orthopedic Clinic'),
(59348, 'https://ror.org/00axjbs56', 'en', 1, 'https://ror.org/00axjbs56 Borland Groover Clinic'),
(59349, 'https://ror.org/03ynpnz81', 'en', 1, 'https://ror.org/03ynpnz81 Atlantia Food Clinical Trials'),
(59350, 'https://ror.org/03b5vk392', 'en', 1, 'https://ror.org/03b5vk392 Center for Neurosciences'),
(59351, 'https://ror.org/026g21e16', 'en', 1, 'https://ror.org/026g21e16 Center for Atlantic Oral Surgery'),
(59352, 'https://ror.org/04pmrdd93', 'no_lang_code', 1, 'https://ror.org/04pmrdd93 ATP Clinical Research (United States)'),
(59353, 'https://ror.org/01kjnq750', 'en', 1, 'https://ror.org/01kjnq750 Atrium Medical Cente'),
(59354, 'https://ror.org/033hhy390', 'en', 1, 'https://ror.org/033hhy390 Boushahri Clinic'),
(59355, 'https://ror.org/04tf0ye64', 'en', 1, 'https://ror.org/04tf0ye64 Center for Psychiatry and Behavioral Medicine'),
(59356, 'https://ror.org/02wvtac27', 'en', 1, 'https://ror.org/02wvtac27 Clinical Pharmacology of Miami'),
(59357, 'https://ror.org/03nye1643', 'es', 1, 'https://ror.org/03nye1643 Complejo Hospitalario Dr. Arnulfo Arias Madrid'),
(59358, 'https://ror.org/057q38q18', 'en', 1, 'https://ror.org/057q38q18 Aurora BayCare Medical Center'),
(59359, 'https://ror.org/019a4hz49', 'en', 1, 'https://ror.org/019a4hz49 Clinical Research Atlanta'),
(59360, 'https://ror.org/041hmmv49', 'en', 1, 'https://ror.org/041hmmv49 Bronx Psychiatric Center'),
(59361, 'https://ror.org/04g9ryv67', 'en', 1, 'https://ror.org/04g9ryv67 Brooklyn Chest Hospital'),
(59362, 'https://ror.org/030edbc02', 'no_lang_code', 1, 'https://ror.org/030edbc02 Clinical Research Consultants (United States)'),
(59363, 'https://ror.org/026z0sj95', 'en', 1, 'https://ror.org/026z0sj95 California Center for Sleep Disorders'),
(59364, 'https://ror.org/01vy2pz67', 'en', 1, 'https://ror.org/01vy2pz67 Genesis Healthcare'),
(59365, 'https://ror.org/03xphxk37', 'es', 1, 'https://ror.org/03xphxk37 Centro de ImplantologĆ­a CirugĆ­a Oral y Maxilofacial'),
(59366, 'https://ror.org/05d7dmk69', 'en', 1, 'https://ror.org/05d7dmk69 ProHealth Care'),
(59367, 'https://ror.org/00m4szf61', 'en', 1, 'https://ror.org/00m4szf61 Aurora Medical Center in Summit'),
(59368, 'https://ror.org/042rbpa77', 'en', 1, 'https://ror.org/042rbpa77 Damascus Hospital مستؓفى ŲÆŁ…Ų“Ł‚'),
(59369, 'https://ror.org/00qbrqy09', 'en', 1, 'https://ror.org/00qbrqy09 Centerpoint Medical Center'),
(59370, 'https://ror.org/01pne6c96', 'no_lang_code', 1, 'https://ror.org/01pne6c96 Dar AlMaraa Center'),
(59371, 'https://ror.org/035ntcd25', 'en', 1, 'https://ror.org/035ntcd25 Central Vermont Medical Center'),
(59372, 'https://ror.org/02996kw76', 'en', 1, 'https://ror.org/02996kw76 Delaware Clinical & Laboratory Physicians'),
(59373, 'https://ror.org/04t5pq748', 'en', 1, 'https://ror.org/04t5pq748 Delos Clinical'),
(59374, 'https://ror.org/02j2pa220', 'en', 1, 'https://ror.org/02j2pa220 Delray Medical Center'),
(59375, 'https://ror.org/02f5z8140', 'en', 1, 'https://ror.org/02f5z8140 Alberta Hip and Knee Clinic'),
(59376, 'https://ror.org/018a3b122', 'en', 1, 'https://ror.org/018a3b122 Moriggia Pelascini Hospital Ospedale Moriggia Pelascini'),
(59377, 'https://ror.org/05p7ffb87', 'en', 1, 'https://ror.org/05p7ffb87 Riyadh Fertility and Reproductive Health Center Ł…Ų±ŁƒŲ² Ų§Ł„Ų±ŁŠŲ§Ų¶ للصحة Ų§Ł„Ų§Ł†Ų¬Ų§ŲØŁŠŲ©'),
(59378, 'https://ror.org/02hd7d161', 'en', 1, 'https://ror.org/02hd7d161 Deyang Stomatological Hospital å¾·é˜³å£č…”åŒ»é™¢'),
(59379, 'https://ror.org/04rg77e64', 'fr', 1, 'https://ror.org/04rg77e64 Centre d''Etudes et de Recherches pour l''Intensification du Traitement du DiabĆØte'),
(59380, 'https://ror.org/02tj1w674', 'no_lang_code', 1, 'https://ror.org/02tj1w674 Shahid Kamyab Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ Ś©Ų§Ł…ŪŒŲ§ŲØ'),
(59381, 'https://ror.org/01zjzsn17', 'en', 1, 'https://ror.org/01zjzsn17 Marshfield Clinic Weston Center'),
(59382, 'https://ror.org/047xc1q35', 'no_lang_code', 1, 'https://ror.org/047xc1q35 Eminence Clinical Research (United States)'),
(59383, 'https://ror.org/01qsyak13', 'nl', 1, 'https://ror.org/01qsyak13 Dianet'),
(59384, 'https://ror.org/03xhmcf52', 'en', 1, 'https://ror.org/03xhmcf52 Digestive Health Center of Louisiana'),
(59385, 'https://ror.org/05bn46e89', 'en', 1, 'https://ror.org/05bn46e89 Emory University Orthopaedics and Spine Hospital'),
(59386, 'https://ror.org/01cn1vy21', 'no_lang_code', 1, 'https://ror.org/01cn1vy21 Empire Clinical Research (United States)'),
(59387, 'https://ror.org/00pwnk256', 'it', 1, 'https://ror.org/00pwnk256 Centro Medicina della Riproduzione'),
(59388, 'https://ror.org/00yh56t79', 'en', 1, 'https://ror.org/00yh56t79 Doctors Hospital at Renaissance'),
(59389, 'https://ror.org/045xrnk02', 'fr', 1, 'https://ror.org/045xrnk02 Doctors Without Borders Médecins Sans Frontières'),
(59390, 'https://ror.org/03d5yat74', 'en', 1, 'https://ror.org/03d5yat74 Fuzhou Pulmonary Hospital of Fujian'),
(59391, 'https://ror.org/05ntm4g04', 'en', 1, 'https://ror.org/05ntm4g04 eSwiss Medical and Surgical Center'),
(59392, 'https://ror.org/05fbm4611', 'en', 1, 'https://ror.org/05fbm4611 University Hospitals Geauga Medical Center'),
(59393, 'https://ror.org/05fcjtk81', 'no_lang_code', 1, 'https://ror.org/05fcjtk81 Ethica (Canada)'),
(59394, 'https://ror.org/04td0jm23', 'en', 1, 'https://ror.org/04td0jm23 Euromedic'),
(59395, 'https://ror.org/038079n45', 'en', 1, 'https://ror.org/038079n45 Holy Family Memorial Hospital'),
(59396, 'https://ror.org/00z5hk082', 'en', 1, 'https://ror.org/00z5hk082 Cardiovascular European Research Center'),
(59397, 'https://ror.org/05fvh4506', 'en', 1, 'https://ror.org/05fvh4506 General Hospital of Filiates Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ – Κ.Ī„. Ī¦Ī¹Ī»Ī¹Ī±Ļ„ĻŽĪ½'),
(59398, 'https://ror.org/03fttgk04', 'en', 1, 'https://ror.org/03fttgk04 Hong Kong Eye Hospital é¦™ęøÆēœ¼ē§‘é†«é™¢'),
(59399, 'https://ror.org/025ryw752', 'en', 1, 'https://ror.org/025ryw752 Evergreen General Hospital'),
(59400, 'https://ror.org/003vps097', 'en', 1, 'https://ror.org/003vps097 Hope Cancer Clinic'),
(59401, 'https://ror.org/05xgv5563', 'de', 1, 'https://ror.org/05xgv5563 Tauern Hospital Zell am See Tauernkrankenhaus Zell am See'),
(59402, 'https://ror.org/01bs2hb43', 'en', 1, 'https://ror.org/01bs2hb43 Eye Center of North Florida'),
(59403, 'https://ror.org/04z99zb45', 'en', 1, 'https://ror.org/04z99zb45 Genesee Cancer & Blood Disease'),
(59404, 'https://ror.org/00dqec984', 'en', 1, 'https://ror.org/00dqec984 Hope Women''s Cancer Centers'),
(59405, 'https://ror.org/00tmbhz16', 'en', 1, 'https://ror.org/00tmbhz16 Genuine Research Center'),
(59406, 'https://ror.org/057601z40', 'en', 1, 'https://ror.org/057601z40 Tidelands Health'),
(59407, 'https://ror.org/005w1rm61', 'pt', 1, 'https://ror.org/005w1rm61 Hospital Alvorada'),
(59408, 'https://ror.org/05vvryp86', 'de', 1, 'https://ror.org/05vvryp86 Deutsches Zentrum für Musiktherapieforschung');
INSERT INTO `rors` VALUES
(59409, 'https://ror.org/04aercx33', 'pt', 1, 'https://ror.org/04aercx33 Hospital Ana Nery'),
(59410, 'https://ror.org/03kyy9y42', 'pt', 1, 'https://ror.org/03kyy9y42 Hospital Beatriz Ƃngelo'),
(59411, 'https://ror.org/02rcdta59', 'fr', 1, 'https://ror.org/02rcdta59 Centre Hospitalier d''AngoulĆŖme'),
(59412, 'https://ror.org/043hdf156', 'no_lang_code', 1, 'https://ror.org/043hdf156 Global BioClinical (United States)'),
(59413, 'https://ror.org/01twnqc61', 'en', 1, 'https://ror.org/01twnqc61 Good Samaritan Hospital'),
(59414, 'https://ror.org/05mx4yp68', 'en', 1, 'https://ror.org/05mx4yp68 Kennedy Clinic Hospital'),
(59415, 'https://ror.org/04rdhz191', 'es', 1, 'https://ror.org/04rdhz191 Hospital Comarcal de Inca'),
(59416, 'https://ror.org/022j22r70', 'pt', 1, 'https://ror.org/022j22r70 CUF Porto Hospital'),
(59417, 'https://ror.org/00pbfjy25', 'en', 1, 'https://ror.org/00pbfjy25 Grandview Medical Center'),
(59418, 'https://ror.org/0412yvb02', 'en', 1, 'https://ror.org/0412yvb02 Graves Gilbert Clinic'),
(59419, 'https://ror.org/050fnhx85', 'en', 1, 'https://ror.org/050fnhx85 Great Falls Clinic'),
(59420, 'https://ror.org/04t455g84', 'en', 1, 'https://ror.org/04t455g84 Great Lakes Cancer Management Specialists'),
(59421, 'https://ror.org/05w107e31', 'en', 1, 'https://ror.org/05w107e31 Great Lakes Clinical Trials'),
(59422, 'https://ror.org/01zqbjs16', 'pt', 1, 'https://ror.org/01zqbjs16 Hospital de Messejana'),
(59423, 'https://ror.org/0546e1p84', 'en', 1, 'https://ror.org/0546e1p84 Great Plains Regional Medical Center'),
(59424, 'https://ror.org/00tp6cr77', 'en', 1, 'https://ror.org/00tp6cr77 Fertility Centers of Illinois'),
(59425, 'https://ror.org/00dd86343', 'es', 1, 'https://ror.org/00dd86343 Hospital de Nens de Barcelona'),
(59426, 'https://ror.org/01y9dza79', 'en', 1, 'https://ror.org/01y9dza79 Florida Academic Dermatology Center'),
(59427, 'https://ror.org/04x0cjk42', 'en', 1, 'https://ror.org/04x0cjk42 Greater Regional Medical Center'),
(59428, 'https://ror.org/01qts1d13', 'en', 1, 'https://ror.org/01qts1d13 St. Mary''s Hospital Medical Center'),
(59429, 'https://ror.org/01ddyfs17', 'en', 1, 'https://ror.org/01ddyfs17 Group Health Centre'),
(59430, 'https://ror.org/04raj3421', 'es', 1, 'https://ror.org/04raj3421 Hospital El Escorial'),
(59431, 'https://ror.org/02d1y4603', 'pt', 1, 'https://ror.org/02d1y4603 Hospital Ernesto Dornelles'),
(59432, 'https://ror.org/0221nva21', 'en', 1, 'https://ror.org/0221nva21 Footscray Hospital'),
(59433, 'https://ror.org/054jcxz87', 'fr', 1, 'https://ror.org/054jcxz87 Groupe Hospitalier de la RƩgion de Mulhouse et Sud Alsace'),
(59434, 'https://ror.org/04cd6tt69', 'pt', 1, 'https://ror.org/04cd6tt69 Hospital Estadual Centra'),
(59435, 'https://ror.org/05a55tn50', 'en', 1, 'https://ror.org/05a55tn50 Forbes Hospital'),
(59436, 'https://ror.org/03vxcm824', 'es', 1, 'https://ror.org/03vxcm824 Hospital Pedro de Elizalde'),
(59437, 'https://ror.org/05jpvp811', 'en', 1, 'https://ror.org/05jpvp811 Fortius Clinic'),
(59438, 'https://ror.org/01zwdgr60', 'fr', 1, 'https://ror.org/01zwdgr60 Groupe Hospitalier Diaconesses Croix Saint-Simon'),
(59439, 'https://ror.org/05ngx7r22', 'es', 1, 'https://ror.org/05ngx7r22 Hospital de Guadarrama'),
(59440, 'https://ror.org/0595wzt18', 'en', 1, 'https://ror.org/0595wzt18 Guangdong 999 Brain Hospital 广东999č„‘ē§‘åŒ»é™¢'),
(59441, 'https://ror.org/02hrfw153', 'es', 1, 'https://ror.org/02hrfw153 Hospital Regional de Concepción'),
(59442, 'https://ror.org/04dr2j587', 'es', 1, 'https://ror.org/04dr2j587 Hospital Dr. Gustavo Fricke'),
(59443, 'https://ror.org/03trtgn80', 'pt', 1, 'https://ror.org/03trtgn80 Hospital Infantil Albert Sabin'),
(59444, 'https://ror.org/01v2qkv12', 'en', 1, 'https://ror.org/01v2qkv12 NEA Baptist Memorial Hospital'),
(59445, 'https://ror.org/04zdsga82', 'en', 1, 'https://ror.org/04zdsga82 Ruikang Affiliated Hospital of Guangxi Medical University å¹æč„æäø­åŒ»čÆå¤§å­¦é™„å±žē‘žåŗ·åŒ»é™¢'),
(59446, 'https://ror.org/01xst2e75', 'es', 1, 'https://ror.org/01xst2e75 Hospital General Mateu Orfila'),
(59447, 'https://ror.org/01y1pf628', 'en', 1, 'https://ror.org/01y1pf628 Gwinnett Medical Center'),
(59448, 'https://ror.org/01b9fxp59', 'es', 1, 'https://ror.org/01b9fxp59 Hospital HLA MediterrƔneo'),
(59449, 'https://ror.org/02v97gj05', 'en', 1, 'https://ror.org/02v97gj05 Firma Clinical Research'),
(59450, 'https://ror.org/02rh62014', 'en', 1, 'https://ror.org/02rh62014 US Cancer Management Corporation'),
(59451, 'https://ror.org/00apfzg17', 'pt', 1, 'https://ror.org/00apfzg17 Hospital OrtopƩdico de Passo Fundo'),
(59452, 'https://ror.org/021h7aq11', 'en', 1, 'https://ror.org/021h7aq11 Hand and Upper Limb Clinic'),
(59453, 'https://ror.org/044jw3b45', 'pt', 1, 'https://ror.org/044jw3b45 Hospital Pitangueiras'),
(59454, 'https://ror.org/05mrmvf37', 'no_lang_code', 1, 'https://ror.org/05mrmvf37 Hanzhong Central Hospital ę±‰äø­åø‚äø­åæƒåŒ»é™¢'),
(59455, 'https://ror.org/04ym85q78', 'es', 1, 'https://ror.org/04ym85q78 Hospital Plató'),
(59456, 'https://ror.org/03d4twy92', 'en', 1, 'https://ror.org/03d4twy92 Fuling Center Hospital of Chongqing é‡åŗ†åø‚ę¶Ŗé™µäø­åæƒåŒ»é™¢'),
(59457, 'https://ror.org/0188pyf14', 'en', 1, 'https://ror.org/0188pyf14 Hattiesburg Clinic'),
(59458, 'https://ror.org/01775kt69', 'es', 1, 'https://ror.org/01775kt69 Hospitales Regionales de Alta Especialidad'),
(59459, 'https://ror.org/03xzqpb53', 'pt', 1, 'https://ror.org/03xzqpb53 Hospital Regional de Presidente Prudente'),
(59460, 'https://ror.org/01ncapf89', 'en', 1, 'https://ror.org/01ncapf89 Healthpoint'),
(59461, 'https://ror.org/052zacv77', 'pt', 1, 'https://ror.org/052zacv77 Hospital Regional Publico do Araguaia'),
(59462, 'https://ror.org/05f8fxj66', 'pt', 1, 'https://ror.org/05f8fxj66 Hospital Risoleta Tolentino Neves'),
(59463, 'https://ror.org/000n8re15', 'es', 1, 'https://ror.org/000n8re15 Hospital San Juan de la Cruz'),
(59464, 'https://ror.org/006gamx40', 'es', 1, 'https://ror.org/006gamx40 Hospital Universitari de Santa Maria'),
(59465, 'https://ror.org/01yvh4c79', 'en', 1, 'https://ror.org/01yvh4c79 Hebei Yiling Hospital'),
(59466, 'https://ror.org/05ng03c96', 'pt', 1, 'https://ror.org/05ng03c96 Hospital SĆ£o Domingos'),
(59467, 'https://ror.org/01v1wt982', 'no_lang_code', 1, 'https://ror.org/01v1wt982 Imam Abdulrahman Al Faisal Hospital'),
(59468, 'https://ror.org/02r8sh830', 'de', 1, 'https://ror.org/02r8sh830 Helios UniversitƤtsklinikum Wuppertal'),
(59469, 'https://ror.org/00mvdvy94', 'pt', 1, 'https://ror.org/00mvdvy94 Hospital São José do Avaí'),
(59470, 'https://ror.org/00d5ej794', 'en', 1, 'https://ror.org/00d5ej794 Hematology\\Oncology Clinic'),
(59471, 'https://ror.org/015c7cy32', 'pt', 1, 'https://ror.org/015c7cy32 Hospital TotalCor'),
(59472, 'https://ror.org/016acvd35', 'en', 1, 'https://ror.org/016acvd35 Henry Ford Macomb Hospital'),
(59473, 'https://ror.org/03247yf20', 'de', 1, 'https://ror.org/03247yf20 Hernienzentrum Rottenburg am Neckar'),
(59474, 'https://ror.org/00ezv4e18', 'es', 1, 'https://ror.org/00ezv4e18 Hospital Viamed Valvanera'),
(59475, 'https://ror.org/02wn5ed02', 'es', 1, 'https://ror.org/02wn5ed02 Hospitales Nisa'),
(59476, 'https://ror.org/04xwcs454', 'en', 1, 'https://ror.org/04xwcs454 Inner Mongolia International Mongolian Hospital å†…č’™å¤å›½é™…č’™åŒ»é™¢å®˜ē½‘'),
(59477, 'https://ror.org/00k24ct23', 'en', 1, 'https://ror.org/00k24ct23 Hillcrest Hospital'),
(59478, 'https://ror.org/04ywqtw26', 'en', 1, 'https://ror.org/04ywqtw26 Houston Methodist Sugar Land Hospital'),
(59479, 'https://ror.org/02sdeme12', 'en', 1, 'https://ror.org/02sdeme12 Innovation Research Center'),
(59480, 'https://ror.org/0152qcr22', 'en', 1, 'https://ror.org/0152qcr22 HSHS St. Nicholas Hospital'),
(59481, 'https://ror.org/01zjb9d64', 'no_lang_code', 1, 'https://ror.org/01zjb9d64 Hiroshima Kyoritsu Hospital åŗƒå³¶å…±ē«‹ē—…é™¢'),
(59482, 'https://ror.org/004s4b254', 'en', 1, 'https://ror.org/004s4b254 Inspira Medical Center Vineland'),
(59483, 'https://ror.org/00sgef587', 'en', 1, 'https://ror.org/00sgef587 Inspira Medical Center Woodbury'),
(59484, 'https://ror.org/00p36v374', 'en', 1, 'https://ror.org/00p36v374 Humanity & Health'),
(59485, 'https://ror.org/0043n7w07', 'en', 1, 'https://ror.org/0043n7w07 Integrative Clinical Trials'),
(59486, 'https://ror.org/04gnkpp77', 'en', 1, 'https://ror.org/04gnkpp77 Jingzhou Central Hospital č†å·žåø‚äø­åæƒåŒ»é™¢'),
(59487, 'https://ror.org/05mnrce88', 'el', 1, 'https://ror.org/05mnrce88 Iakentro'),
(59488, 'https://ror.org/00126za90', 'fr', 1, 'https://ror.org/00126za90 HƓpital d''Instruction des ArmƩes Clermont-Tonnerre'),
(59489, 'https://ror.org/023gzq092', 'en', 1, 'https://ror.org/023gzq092 JosƩ R. Reyes Memorial Medical Center'),
(59490, 'https://ror.org/00131m973', 'en', 1, 'https://ror.org/00131m973 Mack Eye Center'),
(59491, 'https://ror.org/01xyh8d66', 'en', 1, 'https://ror.org/01xyh8d66 Magrabi Hospitals and Centers'),
(59492, 'https://ror.org/038t4rm13', 'en', 1, 'https://ror.org/038t4rm13 Kadlec Clinic'),
(59493, 'https://ror.org/0549yzf33', 'en', 1, 'https://ror.org/0549yzf33 Main Line Center for Laser Surgery'),
(59494, 'https://ror.org/04ac7y941', 'en', 1, 'https://ror.org/04ac7y941 Kaiping Central Hospital å¼€å¹³åø‚äø­åæƒåŒ»é™¢'),
(59495, 'https://ror.org/02vw1hj64', 'en', 1, 'https://ror.org/02vw1hj64 Main Line Fertility'),
(59496, 'https://ror.org/05w1qwk94', 'en', 1, 'https://ror.org/05w1qwk94 Kaiser Permanente Vacaville Medical Center'),
(59497, 'https://ror.org/00p327v48', 'en', 1, 'https://ror.org/00p327v48 International Clinic of Rehabilitation'),
(59498, 'https://ror.org/05xenh663', 'en', 1, 'https://ror.org/05xenh663 Kaiser Permanente Tysons Corner Medical Center'),
(59499, 'https://ror.org/05v5gqt78', 'en', 1, 'https://ror.org/05v5gqt78 International Spine, Pain & Performance'),
(59500, 'https://ror.org/03ecr5c85', 'en', 1, 'https://ror.org/03ecr5c85 Kaiser Permanente Burke Medical Center'),
(59501, 'https://ror.org/05ek56k41', 'en', 1, 'https://ror.org/05ek56k41 Kaiser Permanente Capitol Hill Medical Center'),
(59502, 'https://ror.org/02jng7h30', 'en', 1, 'https://ror.org/02jng7h30 Kaiser Permanente Gaithersburg Medical Center'),
(59503, 'https://ror.org/03h6d4166', 'en', 1, 'https://ror.org/03h6d4166 Iowa Lutheran Hospital'),
(59504, 'https://ror.org/00qjyeh27', 'en', 1, 'https://ror.org/00qjyeh27 Kaiser Permanente Rancho Cordova Medical Offices'),
(59505, 'https://ror.org/05ykvn529', 'en', 1, 'https://ror.org/05ykvn529 Manhattan Psychiatric Center'),
(59506, 'https://ror.org/03t30gb84', 'en', 1, 'https://ror.org/03t30gb84 Kaiser Permanente Woodlawn Medical Center'),
(59507, 'https://ror.org/04z5qv209', 'en', 1, 'https://ror.org/04z5qv209 Kalispell Regional Medical Center'),
(59508, 'https://ror.org/00w9n5q09', 'en', 1, 'https://ror.org/00w9n5q09 University Hospitals Landerbrook Health Center'),
(59509, 'https://ror.org/03qz9r039', 'en', 1, 'https://ror.org/03qz9r039 Rwanda Military Hospital'),
(59510, 'https://ror.org/029485619', 'en', 1, 'https://ror.org/029485619 Israel Sports Center for the Disabled ×ž×Ø×›×– ×”×”×¤×•×Ø×˜ לנכים ×‘×™×©×Ø××œ'),
(59511, 'https://ror.org/03t3mc268', 'en', 1, 'https://ror.org/03t3mc268 Pardee Hospital'),
(59512, 'https://ror.org/00r7hs904', 'it', 1, 'https://ror.org/00r7hs904 Istituto Clinico Sant''Ambrogio'),
(59513, 'https://ror.org/04x3fmq96', 'en', 1, 'https://ror.org/04x3fmq96 IVI Middle East Fertility Clinic'),
(59514, 'https://ror.org/05teqzw32', 'tr', 1, 'https://ror.org/05teqzw32 Ɩzel Ankara Umut Hastanesi'),
(59515, 'https://ror.org/038rjzg81', 'en', 1, 'https://ror.org/038rjzg81 Maria Parham Hospital'),
(59516, 'https://ror.org/017w9st76', 'en', 1, 'https://ror.org/017w9st76 Jackson-Madison County General Hospital'),
(59517, 'https://ror.org/03ftkmq63', 'en', 1, 'https://ror.org/03ftkmq63 Jacksonville Center for Clinical Research'),
(59518, 'https://ror.org/01pbcje80', 'en', 1, 'https://ror.org/01pbcje80 Key-Whitman Eye Center'),
(59519, 'https://ror.org/05gt5r361', 'de', 1, 'https://ror.org/05gt5r361 Marienhospital Osnabrück'),
(59520, 'https://ror.org/02nh1np55', 'en', 1, 'https://ror.org/02nh1np55 Kim''s Eye Hospital é‡‘ēœ¼ē§‘ē—…é™¢'),
(59521, 'https://ror.org/01jv6d279', 'en', 1, 'https://ror.org/01jv6d279 Vidant Beaufort Hospital'),
(59522, 'https://ror.org/02k6byd47', 'da', 1, 'https://ror.org/02k6byd47 Kong Christian X''s Gigthospital'),
(59523, 'https://ror.org/039nzp647', 'en', 1, 'https://ror.org/039nzp647 King''s Daughters Medical Center'),
(59524, 'https://ror.org/01e3d3j88', 'en', 1, 'https://ror.org/01e3d3j88 Jefferson County Health Center'),
(59525, 'https://ror.org/0566emh82', 'en', 1, 'https://ror.org/0566emh82 KKT Orthopedic Spine Center'),
(59526, 'https://ror.org/03s54zb62', 'en', 1, 'https://ror.org/03s54zb62 Jefferson Hospital'),
(59527, 'https://ror.org/00etqq360', 'en', 1, 'https://ror.org/00etqq360 Marshfield Clinic'),
(59528, 'https://ror.org/035p50w29', 'en', 1, 'https://ror.org/035p50w29 Knox Community Hospital'),
(59529, 'https://ror.org/01kn5qq40', 'en', 1, 'https://ror.org/01kn5qq40 Maruyama Memorial General Hospital äøøå±±čØ˜åæµē·åˆē—…é™¢'),
(59530, 'https://ror.org/04scta677', 'en', 1, 'https://ror.org/04scta677 Japan Clinical Cancer Research Organization ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗ ę—„ęœ¬ćŒć‚“č‡ØåŗŠč©¦éØ“ęŽØé€²ę©Ÿę§‹'),
(59531, 'https://ror.org/01t45et45', 'en', 1, 'https://ror.org/01t45et45 Methodist West Hospital'),
(59532, 'https://ror.org/00s528j33', 'no_lang_code', 1, 'https://ror.org/00s528j33 Mianyang Central Hospital ē»µé˜³åø‚äø­åæƒåŒ»é™¢'),
(59533, 'https://ror.org/01kxhkq76', 'en', 1, 'https://ror.org/01kxhkq76 Mary Greeley Medical Center'),
(59534, 'https://ror.org/026mkby59', 'en', 1, 'https://ror.org/026mkby59 Microclinic International'),
(59535, 'https://ror.org/027mnhk47', 'en', 1, 'https://ror.org/027mnhk47 Korea National Enterprise for Clinical Trials ķ•œźµ­ģž„ģƒģ‹œķ—˜ģ‚°ģ—…ė³øė¶€'),
(59536, 'https://ror.org/03cbwdg94', 'en', 1, 'https://ror.org/03cbwdg94 Catalan Society of Family and Community Medicine'),
(59537, 'https://ror.org/0408r6k10', 'en', 1, 'https://ror.org/0408r6k10 Mary Washington Hospital'),
(59538, 'https://ror.org/01pt9mg14', 'en', 1, 'https://ror.org/01pt9mg14 MidMichigan Medical Center - Midland'),
(59539, 'https://ror.org/03bf8xe98', 'en', 1, 'https://ror.org/03bf8xe98 Midstate Medical Center'),
(59540, 'https://ror.org/000z10z62', 'en', 1, 'https://ror.org/000z10z62 VA National Center of Oncology after Fanarjyan Վ.Ō±. Õ–Õ”Õ¶Õ”Ö€Õ»ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ուռուցքՔբՔնությՔն Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(59541, 'https://ror.org/020vypr53', 'no', 1, 'https://ror.org/020vypr53 Kristiansund Sykehus'),
(59542, 'https://ror.org/04fasw929', 'no_lang_code', 1, 'https://ror.org/04fasw929 MB Clinical Research and Consulting (United States)'),
(59543, 'https://ror.org/03rhbz403', 'en', 1, 'https://ror.org/03rhbz403 Kuala Lumpur Sports Medicine Centre'),
(59544, 'https://ror.org/00rg8e315', 'en', 1, 'https://ror.org/00rg8e315 Foshan Maternity and Child Health Care Hospital ä½›å±±åø‚å¦‡å¹¼äæå„é™¢'),
(59545, 'https://ror.org/00sash423', 'no_lang_code', 1, 'https://ror.org/00sash423 Kunming Tongren Hospital ę˜†ę˜ŽåŒä»åŒ»é™¢'),
(59546, 'https://ror.org/000pw2z54', 'es', 1, 'https://ror.org/000pw2z54 Maternal Perinatal Hospital Mónica Pretelini'),
(59547, 'https://ror.org/05qqdh613', 'en', 1, 'https://ror.org/05qqdh613 Nebraska Cancer Research Center'),
(59548, 'https://ror.org/04eme8h94', 'en', 1, 'https://ror.org/04eme8h94 Los Angeles Clinical Trials'),
(59549, 'https://ror.org/02f4m9w39', 'en', 1, 'https://ror.org/02f4m9w39 Lake Huron Medical Center'),
(59550, 'https://ror.org/049s06a25', 'en', 1, 'https://ror.org/049s06a25 Southeast Radiation Oncology Group'),
(59551, 'https://ror.org/02tkzg027', 'en', 1, 'https://ror.org/02tkzg027 Lakeland Community Hospital'),
(59552, 'https://ror.org/00pk3rj18', 'en', 1, 'https://ror.org/00pk3rj18 Neuro Pain Medical Center'),
(59553, 'https://ror.org/036yzwp60', 'en', 1, 'https://ror.org/036yzwp60 Lakeview Hospital'),
(59554, 'https://ror.org/02qpa9w62', 'en', 1, 'https://ror.org/02qpa9w62 Larue Carter Hospital'),
(59555, 'https://ror.org/02p9va007', 'id', 1, 'https://ror.org/02p9va007 Rumah Sakit Umum Haji Surabaya'),
(59556, 'https://ror.org/02sv3b352', 'en', 1, 'https://ror.org/02sv3b352 NeuroVita Clinic Клиника ŠŠµŠ¹Ń€Š¾Š²ŠøŃ‚а'),
(59557, 'https://ror.org/01x55sj80', 'en', 1, 'https://ror.org/01x55sj80 Smilow Cancer Hospital Care Center'),
(59558, 'https://ror.org/000dspf25', 'en', 1, 'https://ror.org/000dspf25 McNeel Eye Center'),
(59559, 'https://ror.org/05kwbcj56', 'en', 1, 'https://ror.org/05kwbcj56 Legacy Meridian Park Medical Center'),
(59560, 'https://ror.org/011d4mb30', 'en', 1, 'https://ror.org/011d4mb30 Legacy Mount Hood Medical Center'),
(59561, 'https://ror.org/05jfknj25', 'en', 1, 'https://ror.org/05jfknj25 Legacy Salmon Creek Medical Center'),
(59562, 'https://ror.org/03r5kty13', 'en', 1, 'https://ror.org/03r5kty13 Lehigh Center for Clinical Research'),
(59563, 'https://ror.org/042yx6h67', 'de', 1, 'https://ror.org/042yx6h67 Medalp Imst - Zentrum für ambulante Chirurgie Betriebs'),
(59564, 'https://ror.org/04h3x0y40', 'en', 1, 'https://ror.org/04h3x0y40 Geisinger Lewistown Hospital'),
(59565, 'https://ror.org/00cj4je85', 'no_lang_code', 1, 'https://ror.org/00cj4je85 Worldwide Clinical Trials (United States)'),
(59566, 'https://ror.org/00rkprb29', 'no_lang_code', 1, 'https://ror.org/00rkprb29 Lianyungang Oriental Hospital čæžäŗ‘ęøÆåø‚äøœę–¹åŒ»é™¢'),
(59567, 'https://ror.org/05b9hfy12', 'en', 1, 'https://ror.org/05b9hfy12 Lifecenter Hospital'),
(59568, 'https://ror.org/02gg23171', 'de', 1, 'https://ror.org/02gg23171 Medizinisches Versorgungszentrum Prof. Mathey, Prof. Schofer'),
(59569, 'https://ror.org/01xv43c68', 'en', 1, 'https://ror.org/01xv43c68 Lindner Center of HOPE'),
(59570, 'https://ror.org/02by0qa70', 'az', 1, 'https://ror.org/02by0qa70 Akademik Zərifə ʏliyeva adına Milli Oftalmologiya Mərkəzi'),
(59571, 'https://ror.org/000zjtf98', 'en', 1, 'https://ror.org/000zjtf98 Medical Center of South Arkansas'),
(59572, 'https://ror.org/05vnpr825', 'en', 1, 'https://ror.org/05vnpr825 Linear Clinical Research'),
(59573, 'https://ror.org/036mshe20', 'en', 1, 'https://ror.org/036mshe20 London Vision Clinic'),
(59574, 'https://ror.org/04h783r90', 'en', 1, 'https://ror.org/04h783r90 Lung Center of the Philippines'),
(59575, 'https://ror.org/013fdz725', 'en', 1, 'https://ror.org/013fdz725 Melbourne Sexual Health Centre'),
(59576, 'https://ror.org/03r29tc70', 'de', 1, 'https://ror.org/03r29tc70 Lungenklinik Hemer'),
(59577, 'https://ror.org/05393h285', 'en', 1, 'https://ror.org/05393h285 Memorial Hermann Memorial City Medical Center'),
(59578, 'https://ror.org/055zj4e19', 'en', 1, 'https://ror.org/055zj4e19 Centra Health'),
(59579, 'https://ror.org/03dvtch96', 'en', 1, 'https://ror.org/03dvtch96 Fairbanks Memorial Hospital'),
(59580, 'https://ror.org/00vwet919', 'en', 1, 'https://ror.org/00vwet919 Memorial Hospital of Carbondale'),
(59581, 'https://ror.org/02nz06f09', 'en', 1, 'https://ror.org/02nz06f09 Noran Neurological Clinic'),
(59582, 'https://ror.org/03g0fcj72', 'en', 1, 'https://ror.org/03g0fcj72 Sovah Health Martinsville'),
(59583, 'https://ror.org/02hngq018', 'en', 1, 'https://ror.org/02hngq018 Centre de fertilitƩ d''Ottawa Ottawa Fertility Centre'),
(59584, 'https://ror.org/021e99k21', 'en', 1, 'https://ror.org/021e99k21 Memorial Sisli Hospital'),
(59585, 'https://ror.org/03pxwfh12', 'en', 1, 'https://ror.org/03pxwfh12 Ottumwa Regional Health Center'),
(59586, 'https://ror.org/03bbcet56', 'fr', 1, 'https://ror.org/03bbcet56 Etablissements de SantƩ Mentale'),
(59587, 'https://ror.org/04tj2nz36', 'en', 1, 'https://ror.org/04tj2nz36 Northeast Center for Rehabilitation and Brain Injury'),
(59588, 'https://ror.org/03fgher32', 'en', 1, 'https://ror.org/03fgher32 UC Irvine Health'),
(59589, 'https://ror.org/027se6721', 'en', 1, 'https://ror.org/027se6721 Pacific Centre for Reproductive Medicine'),
(59590, 'https://ror.org/04n79vf04', 'en', 1, 'https://ror.org/04n79vf04 Northeast Radiation Oncology Center'),
(59591, 'https://ror.org/02k4egv76', 'en', 1, 'https://ror.org/02k4egv76 Pacific Fertility Center'),
(59592, 'https://ror.org/02x8t7c47', 'en', 1, 'https://ror.org/02x8t7c47 Northern California Melanoma Center'),
(59593, 'https://ror.org/02wtq1680', 'en', 1, 'https://ror.org/02wtq1680 Pain Cure Center'),
(59594, 'https://ror.org/024ws4n60', 'en', 1, 'https://ror.org/024ws4n60 McFarland Clinic - Boone'),
(59595, 'https://ror.org/007wy9707', 'en', 1, 'https://ror.org/007wy9707 Pali Momi Medical Center'),
(59596, 'https://ror.org/00dx38855', 'en', 1, 'https://ror.org/00dx38855 McFarland Clinic - Jefferson'),
(59597, 'https://ror.org/03w45gf56', 'en', 1, 'https://ror.org/03w45gf56 CHI Health Mercy Council Bluffs'),
(59598, 'https://ror.org/04we5xg30', 'en', 1, 'https://ror.org/04we5xg30 McFarland Clinic - Marshalltown'),
(59599, 'https://ror.org/0028e8s02', 'en', 1, 'https://ror.org/0028e8s02 McFarland Clinic - Fort Dodge'),
(59600, 'https://ror.org/04v2tad62', 'en', 1, 'https://ror.org/04v2tad62 Palm Beach Neurological Center'),
(59601, 'https://ror.org/052eqw254', 'en', 1, 'https://ror.org/052eqw254 Northwest Cancer Clinic'),
(59602, 'https://ror.org/05bq6d892', 'en', 1, 'https://ror.org/05bq6d892 Pamoja Tunaweza Women''s Centre'),
(59603, 'https://ror.org/00w440229', 'en', 1, 'https://ror.org/00w440229 Mercy Hospital Springfield'),
(59604, 'https://ror.org/0168g2651', 'en', 1, 'https://ror.org/0168g2651 Pan Am Clinic'),
(59605, 'https://ror.org/042k68148', 'en', 1, 'https://ror.org/042k68148 Mercy Regional Medical Center'),
(59606, 'https://ror.org/0345pts96', 'en', 1, 'https://ror.org/0345pts96 Paoli Hospital'),
(59607, 'https://ror.org/03fhrtz10', 'en', 1, 'https://ror.org/03fhrtz10 Northwestern Medicine Lake Forest Hospital'),
(59608, 'https://ror.org/008aexf53', 'en', 1, 'https://ror.org/008aexf53 Merrion Fertility Clinic'),
(59609, 'https://ror.org/02nds3w86', 'en', 1, 'https://ror.org/02nds3w86 Methodist Children’s Hospital'),
(59610, 'https://ror.org/042dbq096', 'en', 1, 'https://ror.org/042dbq096 Parker Adventist Hospital'),
(59611, 'https://ror.org/03z68z654', 'pl', 1, 'https://ror.org/03z68z654 Samodzielny Publiczny Szpital Specjalistyczny Chorób Płuc im. dr O. Sokołowskiego'),
(59612, 'https://ror.org/015dsp568', 'en', 1, 'https://ror.org/015dsp568 Rocky Mountain Multiple Sclerosis Clinic'),
(59613, 'https://ror.org/05f1hc953', 'en', 1, 'https://ror.org/05f1hc953 Parkland Health Center'),
(59614, 'https://ror.org/04e10fw49', 'en', 1, 'https://ror.org/04e10fw49 Parkview Hospital Randallia'),
(59615, 'https://ror.org/04q5vh665', 'no_lang_code', 1, 'https://ror.org/04q5vh665 Novindiet Clinic'),
(59616, 'https://ror.org/042s1np65', 'en', 1, 'https://ror.org/042s1np65 City Clinical Hospital No. 2 Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š‘Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 2'),
(59617, 'https://ror.org/01pyacx21', 'en', 1, 'https://ror.org/01pyacx21 Rogers Behavioral Health'),
(59618, 'https://ror.org/051ws8490', 'en', 1, 'https://ror.org/051ws8490 Rogue Regional Medical Center'),
(59619, 'https://ror.org/04jqvgn14', 'no_lang_code', 1, 'https://ror.org/04jqvgn14 Rose Research Center (United States)'),
(59620, 'https://ror.org/01zz40j33', 'en', 1, 'https://ror.org/01zz40j33 Nutrition Center of the Philippines'),
(59621, 'https://ror.org/05mg0j941', 'en', 1, 'https://ror.org/05mg0j941 Radiation Oncology Centers of Nevada'),
(59622, 'https://ror.org/02tyedh23', 'en', 1, 'https://ror.org/02tyedh23 Peninsula Cancer Center'),
(59623, 'https://ror.org/01zra9c68', 'en', 1, 'https://ror.org/01zra9c68 9-я клиника Минска 9th City Clinical Hospital'),
(59624, 'https://ror.org/046xv3q50', 'en', 1, 'https://ror.org/046xv3q50 Running Injury Clinic'),
(59625, 'https://ror.org/01sv4m290', 'en', 1, 'https://ror.org/01sv4m290 Randolph Health'),
(59626, 'https://ror.org/007aefc66', 'en', 1, 'https://ror.org/007aefc66 Pen Bay Medical Center'),
(59627, 'https://ror.org/03p352e02', 'en', 1, 'https://ror.org/03p352e02 Ophtalmological Center After S.V.Malayan'),
(59628, 'https://ror.org/00d110q75', 'en', 1, 'https://ror.org/00d110q75 Sacred Heart Hospital'),
(59629, 'https://ror.org/04k3xq990', 'en', 1, 'https://ror.org/04k3xq990 Phoenixville Hospital'),
(59630, 'https://ror.org/04sxdc114', 'en', 1, 'https://ror.org/04sxdc114 OhioHealth Mansfield Hospital'),
(59631, 'https://ror.org/059w81j32', 'en', 1, 'https://ror.org/059w81j32 Olathe Medical Center'),
(59632, 'https://ror.org/03qa48d48', 'en', 1, 'https://ror.org/03qa48d48 RSUD Prof. Dr. Saiful Anwar Malang'),
(59633, 'https://ror.org/02m6w0m37', 'en', 1, 'https://ror.org/02m6w0m37 St. Agnes Hospital'),
(59634, 'https://ror.org/03rc1y879', 'en', 1, 'https://ror.org/03rc1y879 Physicians'' Clinic of Iowa'),
(59635, 'https://ror.org/01waq5k48', 'en', 1, 'https://ror.org/01waq5k48 Academic Alliance in Dermatology'),
(59636, 'https://ror.org/03b9cq520', 'en', 1, 'https://ror.org/03b9cq520 Olympic Medical Center'),
(59637, 'https://ror.org/022bpxw56', 'en', 1, 'https://ror.org/022bpxw56 SOUSEIKAI Global Clinical Research Center'),
(59638, 'https://ror.org/053a2h986', 'en', 1, 'https://ror.org/053a2h986 Saint Alphonsus Health System'),
(59639, 'https://ror.org/00sdedd93', 'en', 1, 'https://ror.org/00sdedd93 UPMC Central Pa'),
(59640, 'https://ror.org/02tnzjs62', 'no_lang_code', 1, 'https://ror.org/02tnzjs62 Oliak Center'),
(59641, 'https://ror.org/05nc6an52', 'en', 1, 'https://ror.org/05nc6an52 Saint Alphonsus Medical Center'),
(59642, 'https://ror.org/00gyq3v51', 'no_lang_code', 1, 'https://ror.org/00gyq3v51 Hospital Pitas'),
(59643, 'https://ror.org/02b6wm085', 'en', 1, 'https://ror.org/02b6wm085 Sanford Broadway Medical Center'),
(59644, 'https://ror.org/05vg37x37', 'en', 1, 'https://ror.org/05vg37x37 Saint Alphonsus Medical Center'),
(59645, 'https://ror.org/01ga08073', 'en', 1, 'https://ror.org/01ga08073 Saint Alphonsus Medical Center'),
(59646, 'https://ror.org/01w09ak35', 'en', 1, 'https://ror.org/01w09ak35 Lehigh Valley Hospital-Pocono'),
(59647, 'https://ror.org/01r4qbv69', 'en', 1, 'https://ror.org/01r4qbv69 Patras Olympian Hospital ĪŸĪ»ĻĪ¼Ļ€Ī¹ĪæĪ½ Ī˜ĪµĻĪ±Ļ€ĪµĻ…Ļ„Ī®ĻĪ¹Īæ Πάτρας'),
(59648, 'https://ror.org/04r55zh03', 'fr', 1, 'https://ror.org/04r55zh03 Clinique Mutualiste de l''Estuaire'),
(59649, 'https://ror.org/003smky23', 'en', 1, 'https://ror.org/003smky23 Sanford Health'),
(59650, 'https://ror.org/02gc95f39', 'en', 1, 'https://ror.org/02gc95f39 Omid Fertility Clinic Ś©Ł„ŪŒŁ†ŪŒŚ© باروری Ų§Ł…ŪŒŲÆ'),
(59651, 'https://ror.org/03557sb27', 'es', 1, 'https://ror.org/03557sb27 Policlinica Metropolitana'),
(59652, 'https://ror.org/04pgck314', 'en', 1, 'https://ror.org/04pgck314 Mount Carmel St. Ann''s'),
(59653, 'https://ror.org/05qa66z68', 'en', 1, 'https://ror.org/05qa66z68 MISH Hospital and Clinics'),
(59654, 'https://ror.org/03tyb0e26', 'en', 1, 'https://ror.org/03tyb0e26 St. Anthony Hospital'),
(59655, 'https://ror.org/01hgbws94', 'en', 1, 'https://ror.org/01hgbws94 St. Catherine Hospital'),
(59656, 'https://ror.org/02dfv3292', 'en', 1, 'https://ror.org/02dfv3292 Portsmouth Regional Hospital'),
(59657, 'https://ror.org/003w29077', 'en', 1, 'https://ror.org/003w29077 Ontario Clinical Oncology Group'),
(59658, 'https://ror.org/04cm10r73', 'en', 1, 'https://ror.org/04cm10r73 Jon J van Rood Centre for Clinical Transfusion Research'),
(59659, 'https://ror.org/01mn8sk35', 'en', 1, 'https://ror.org/01mn8sk35 Presbyterian Kaseman Hospital'),
(59660, 'https://ror.org/03s1pms78', 'en', 1, 'https://ror.org/03s1pms78 Presbyterian Rust Medical Center'),
(59661, 'https://ror.org/03fszbf20', 'en', 1, 'https://ror.org/03fszbf20 Optimus Clinical Research'),
(59662, 'https://ror.org/00e81jd95', 'no_lang_code', 1, 'https://ror.org/00e81jd95 Sapporo Higashi Tokushukai Hospital ęœ­å¹Œę±ę€„ē™¾č²Øåŗ—'),
(59663, 'https://ror.org/00kh76710', 'en', 1, 'https://ror.org/00kh76710 Rasool Akram Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų­Ų¶Ų±ŲŖ Ų±Ų³ŁˆŁ„ اکرم'),
(59664, 'https://ror.org/01zekf440', 'en', 1, 'https://ror.org/01zekf440 Missouri Baptist Sullivan Hospital'),
(59665, 'https://ror.org/02b2vbn56', 'en', 1, 'https://ror.org/02b2vbn56 Saud Al-babtain Cardiac Centre Ł…Ų±ŁƒŲ² سعود Ų§Ł„ŲØŲ§ŲØŲ·ŁŠŁ† للقلب'),
(59666, 'https://ror.org/01kpv7172', 'en', 1, 'https://ror.org/01kpv7172 Saviour Hospital'),
(59667, 'https://ror.org/0440a2x91', 'en', 1, 'https://ror.org/0440a2x91 St. Francis Regional Medical Center'),
(59668, 'https://ror.org/00m3xsv93', 'nl', 1, 'https://ror.org/00m3xsv93 Revalidatieziekenhuis RevArte'),
(59669, 'https://ror.org/033s1aj42', 'en', 1, 'https://ror.org/033s1aj42 Moorabbin Hospital'),
(59670, 'https://ror.org/03hgdak73', 'no_lang_code', 1, 'https://ror.org/03hgdak73 Clinic Asklepio Larissa Ī˜ĪµĻĪ±Ļ€ĪµĻ…Ļ„Ī®ĻĪ¹Īæ Ī‘ĻƒĪŗĪ»Ī·Ļ€Ī¹ĪµĪÆĪæ Ī›Ī¬ĻĪ¹ĻƒĪ±Ļ‚ ΕΠΕ'),
(59671, 'https://ror.org/05vcqrs05', 'de', 1, 'https://ror.org/05vcqrs05 Rehaklinik Zihlschlacht'),
(59672, 'https://ror.org/04fr6kc62', 'de', 1, 'https://ror.org/04fr6kc62 Schƶn Klinik Bad Aibling'),
(59673, 'https://ror.org/01ffp9w12', 'en', 1, 'https://ror.org/01ffp9w12 Schwartz Laser Eye Center'),
(59674, 'https://ror.org/03tcxks04', 'en', 1, 'https://ror.org/03tcxks04 St. James Healthcare'),
(59675, 'https://ror.org/00pfyq622', 'no_lang_code', 1, 'https://ror.org/00pfyq622 Procare Riaya Hospital مستؓفى بروكار ريايا'),
(59676, 'https://ror.org/02kx02a45', 'en', 1, 'https://ror.org/02kx02a45 Mon Health Medical Center'),
(59677, 'https://ror.org/0276cxx52', 'en', 1, 'https://ror.org/0276cxx52 Prostate Cancer Clinical Trials Consortium'),
(59678, 'https://ror.org/015z2xk75', 'en', 1, 'https://ror.org/015z2xk75 Providence Holy Cross Medical Center'),
(59679, 'https://ror.org/05dshav68', 'en', 1, 'https://ror.org/05dshav68 Providence Regional Medical Center Everett'),
(59680, 'https://ror.org/0260x4r86', 'en', 1, 'https://ror.org/0260x4r86 Mercy Clinic Cancer and Hematology'),
(59681, 'https://ror.org/055bjxf28', 'en', 1, 'https://ror.org/055bjxf28 Retina Clinic'),
(59682, 'https://ror.org/01vfhjf72', 'en', 1, 'https://ror.org/01vfhjf72 Mount Sinai Rehabilitation Hospital'),
(59683, 'https://ror.org/02d21y725', 'en', 1, 'https://ror.org/02d21y725 Rice Memorial Hospital'),
(59684, 'https://ror.org/008dhsm98', 'en', 1, 'https://ror.org/008dhsm98 Saint Joseph Hospital East'),
(59685, 'https://ror.org/04xkbx134', 'en', 1, 'https://ror.org/04xkbx134 Providence Saint Joseph Medical Center'),
(59686, 'https://ror.org/00vxq6174', 'en', 1, 'https://ror.org/00vxq6174 Mountain Blue Cancer Care Center'),
(59687, 'https://ror.org/05maag353', 'en', 1, 'https://ror.org/05maag353 Providence Willamette Falls Medical Center'),
(59688, 'https://ror.org/05b1whg73', 'en', 1, 'https://ror.org/05b1whg73 OSF St. Joseph Medical Center'),
(59689, 'https://ror.org/05a76fs70', 'en', 1, 'https://ror.org/05a76fs70 Sentara Virginia Beach General Hospital'),
(59690, 'https://ror.org/04nz0rp18', 'en', 1, 'https://ror.org/04nz0rp18 Riverton Hospital'),
(59691, 'https://ror.org/04zdc2070', 'en', 1, 'https://ror.org/04zdc2070 Mountain Diabetes and Endocrine Center'),
(59692, 'https://ror.org/03mwphj92', 'en', 1, 'https://ror.org/03mwphj92 Rochester Center for Behavioral Medicine'),
(59693, 'https://ror.org/047j0w511', 'en', 1, 'https://ror.org/047j0w511 St. Joseph Mercy Canton'),
(59694, 'https://ror.org/04kazdy71', 'en', 1, 'https://ror.org/04kazdy71 Shaanxi Provincial Hospital of Traditional Chinese Medicine'),
(59695, 'https://ror.org/02yfds142', 'en', 1, 'https://ror.org/02yfds142 SoutheastHEALTH'),
(59696, 'https://ror.org/04rh37t51', 'en', 1, 'https://ror.org/04rh37t51 Shafran Gastroenterology Center'),
(59697, 'https://ror.org/04p3m1723', 'en', 1, 'https://ror.org/04p3m1723 MultiCare Auburn Medical Center'),
(59698, 'https://ror.org/05fwfqf82', 'en', 1, 'https://ror.org/05fwfqf82 Charlotte Eye Ear Nose & Throat Associates'),
(59699, 'https://ror.org/03exf6a43', 'en', 1, 'https://ror.org/03exf6a43 Reproductive Science Medical Center'),
(59700, 'https://ror.org/02k6hv566', 'en', 1, 'https://ror.org/02k6hv566 Shahid Gangalal National Heart Centre'),
(59701, 'https://ror.org/051gnmd75', 'no_lang_code', 1, 'https://ror.org/051gnmd75 Musculoskeletal Clinical Regulatory Advisers (United States)'),
(59702, 'https://ror.org/01cv9kh50', 'en', 1, 'https://ror.org/01cv9kh50 Southeast Nebraska Cancer Center'),
(59703, 'https://ror.org/03drnws57', 'fr', 1, 'https://ror.org/03drnws57 Sheikh Ragheb Harb Hospital'),
(59704, 'https://ror.org/05q11w119', 'en', 1, 'https://ror.org/05q11w119 Southeast Retina Center'),
(59705, 'https://ror.org/05htkf588', 'en', 1, 'https://ror.org/05htkf588 Shandong Eye Hospital'),
(59706, 'https://ror.org/00v1ygn94', 'en', 1, 'https://ror.org/00v1ygn94 Southeastern Medical Oncology Center'),
(59707, 'https://ror.org/02mfv5g23', 'en', 1, 'https://ror.org/02mfv5g23 Cancer Clinic'),
(59708, 'https://ror.org/05w9jxk76', 'es', 1, 'https://ror.org/05w9jxk76 Nueva Opción'),
(59709, 'https://ror.org/003z39n14', 'en', 1, 'https://ror.org/003z39n14 Shanghai International Medical Center'),
(59710, 'https://ror.org/0362zrb32', 'en', 1, 'https://ror.org/0362zrb32 Swanson Center'),
(59711, 'https://ror.org/05kbmt076', 'en', 1, 'https://ror.org/05kbmt076 Southeastern Health'),
(59712, 'https://ror.org/05j8e7885', 'en', 1, 'https://ror.org/05j8e7885 St. Luke''s Hospital'),
(59713, 'https://ror.org/029ra6018', 'en', 1, 'https://ror.org/029ra6018 Saint Luke''s South Hospital'),
(59714, 'https://ror.org/03ma3hr46', 'en', 1, 'https://ror.org/03ma3hr46 St. Mary-Corwin Medical Center'),
(59715, 'https://ror.org/02van6g18', 'en', 1, 'https://ror.org/02van6g18 Syrentis Clinical Research'),
(59716, 'https://ror.org/00tna7897', 'en', 1, 'https://ror.org/00tna7897 Sheltering Arms Physical Rehabilitation Centers'),
(59717, 'https://ror.org/04snwz472', 'en', 1, 'https://ror.org/04snwz472 Southern Cross Fertility & IVF Centre'),
(59718, 'https://ror.org/020whm440', 'en', 1, 'https://ror.org/020whm440 St. Mary Mercy Livonia'),
(59719, 'https://ror.org/005snq210', 'en', 1, 'https://ror.org/005snq210 Southern Ocean Medical Center'),
(59720, 'https://ror.org/04m17xs91', 'en', 1, 'https://ror.org/04m17xs91 National Center of Cardiology and Internal Medicine'),
(59721, 'https://ror.org/00qy8yz42', 'en', 1, 'https://ror.org/00qy8yz42 Children’s Hospital at Erlanger'),
(59722, 'https://ror.org/05xwdg192', 'en', 1, 'https://ror.org/05xwdg192 Southern Ohio Medical Center'),
(59723, 'https://ror.org/046nba540', 'en', 1, 'https://ror.org/046nba540 St. Mary''s Medical Center'),
(59724, 'https://ror.org/03h7ehw84', 'en', 1, 'https://ror.org/03h7ehw84 Saint Mary''s Regional Medical Center'),
(59725, 'https://ror.org/00vkrpr95', 'en', 1, 'https://ror.org/00vkrpr95 Southwest Regional Wound Care Center'),
(59726, 'https://ror.org/01m1xx561', 'en', 1, 'https://ror.org/01m1xx561 Taizhou Fourth People''s Hospital ęø©å²­åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(59727, 'https://ror.org/03fc2zn41', 'en', 1, 'https://ror.org/03fc2zn41 Tallahassee Orthopedic Clinic'),
(59728, 'https://ror.org/017dyf006', 'en', 1, 'https://ror.org/017dyf006 Pediatric Hospital of Sinaloa'),
(59729, 'https://ror.org/03f6gnd82', 'en', 1, 'https://ror.org/03f6gnd82 St. Rita''s Medical Center'),
(59730, 'https://ror.org/042agnp26', 'en', 1, 'https://ror.org/042agnp26 Sparta Cancer Center'),
(59731, 'https://ror.org/01ytv0571', 'en', 1, 'https://ror.org/01ytv0571 SingHealth Polyclinics'),
(59732, 'https://ror.org/03pe5z861', 'en', 1, 'https://ror.org/03pe5z861 Kirklin Clinic'),
(59733, 'https://ror.org/004zscr15', 'en', 1, 'https://ror.org/004zscr15 St. Peter''s Hospital'),
(59734, 'https://ror.org/05h4bcs36', 'en', 1, 'https://ror.org/05h4bcs36 June E. Nylen Cancer Center'),
(59735, 'https://ror.org/01bg37c61', 'no_lang_code', 1, 'https://ror.org/01bg37c61 Spaulding Clinical Research (United States)'),
(59736, 'https://ror.org/03k706h10', 'en', 1, 'https://ror.org/03k706h10 Mark H. Zangmeister Cancer Center'),
(59737, 'https://ror.org/04m7qna91', 'en', 1, 'https://ror.org/04m7qna91 Sirindhorn National Medical Rehabilitation Institute ąøŖąø–ąø²ąøšąø±ąø™ąøŖąø“ąø£ąø“ąø™ąø˜ąø£ą¹€ąøžąø·ą¹ˆąø­ąøąø²ąø£ąøŸąø·ą¹‰ąø™ąøŸąø¹ąøŖąø”ąø£ąø£ąø–ąø ąø²ąøžąø—ąø²ąø‡ąøąø²ąø£ą¹ąøžąø—ąø¢ą¹Œą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(59738, 'https://ror.org/05hm3dk81', 'en', 1, 'https://ror.org/05hm3dk81 Tennessee Orthopaedic Clinics'),
(59739, 'https://ror.org/04qw37741', 'en', 1, 'https://ror.org/04qw37741 The Medical Center of Aurora'),
(59740, 'https://ror.org/00w52p532', 'en', 1, 'https://ror.org/00w52p532 Specialized Arab Hospital مستؓفى عربي Ł…ŲŖŲ®ŲµŲµ'),
(59741, 'https://ror.org/05jm48923', 'sv', 1, 'https://ror.org/05jm48923 Ryggkirurgiska Kliniken i StrƤngnƤs'),
(59742, 'https://ror.org/04qmnd212', 'en', 1, 'https://ror.org/04qmnd212 Ste. Genevieve County Memorial Hospital'),
(59743, 'https://ror.org/034q4hd34', 'en', 1, 'https://ror.org/034q4hd34 Sts. Mary & Elizabeth Hospital'),
(59744, 'https://ror.org/01ckkpd50', 'en', 1, 'https://ror.org/01ckkpd50 Orthopaedic Specialty Clinic'),
(59745, 'https://ror.org/04masrj05', 'en', 1, 'https://ror.org/04masrj05 Salina Regional Health Center'),
(59746, 'https://ror.org/00rcpde19', 'en', 1, 'https://ror.org/00rcpde19 Qinhuangdao Second Hospital'),
(59747, 'https://ror.org/01kwfx619', 'en', 1, 'https://ror.org/01kwfx619 Second Hospital of Tangshan'),
(59748, 'https://ror.org/00djc6h11', 'en', 1, 'https://ror.org/00djc6h11 UW Cancer Center Johnson Creek'),
(59749, 'https://ror.org/01zyk3031', 'en', 1, 'https://ror.org/01zyk3031 Sydney Hernia Specialists Clinic'),
(59750, 'https://ror.org/04qd1fg21', 'en', 1, 'https://ror.org/04qd1fg21 Springfield Clinic'),
(59751, 'https://ror.org/0065jhh26', 'en', 1, 'https://ror.org/0065jhh26 Cancer Center of Hawaii'),
(59752, 'https://ror.org/01jrr6c68', 'en', 1, 'https://ror.org/01jrr6c68 Springfield Regional Medical Center'),
(59753, 'https://ror.org/04r7rm468', 'en', 1, 'https://ror.org/04r7rm468 The Center for Mind-Body Medicine'),
(59754, 'https://ror.org/03c0nts38', 'en', 1, 'https://ror.org/03c0nts38 Woman’s Hospital of Texas'),
(59755, 'https://ror.org/0270p7k56', 'no_lang_code', 1, 'https://ror.org/0270p7k56 Shin Nippon Biomedical Laboratories (United States)'),
(59756, 'https://ror.org/01mr7bg63', 'en', 1, 'https://ror.org/01mr7bg63 The Women’s Imaging Center'),
(59757, 'https://ror.org/008n6hb03', 'en', 1, 'https://ror.org/008n6hb03 Vachira Phuket Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøØąø¹ąø™ąø¢ą¹Œąø§ąøŠąø“ąø£ąø°ąø ąø¹ą¹€ąøą¹‡ąø•'),
(59758, 'https://ror.org/01nqn2b57', 'no_lang_code', 1, 'https://ror.org/01nqn2b57 SocraTec R&D (Germany)'),
(59759, 'https://ror.org/02bkhhg93', 'en', 1, 'https://ror.org/02bkhhg93 Arthritis and Rheumatism Associates'),
(59760, 'https://ror.org/01pagm392', 'en', 1, 'https://ror.org/01pagm392 Valmontone Hospital'),
(59761, 'https://ror.org/00kpegb17', 'de', 1, 'https://ror.org/00kpegb17 St.-Antonius-Hospital Gronau'),
(59762, 'https://ror.org/00kcr8113', 'en', 1, 'https://ror.org/00kcr8113 Charleston County''s Department of Alcohol and Other Drug Abuse Services'),
(59763, 'https://ror.org/03aysbj82', 'de', 1, 'https://ror.org/03aysbj82 OncoRay OncoRay – Nationales Zentrum für Strahlenforschung in der Onkologie'),
(59764, 'https://ror.org/02qk94m81', 'en', 1, 'https://ror.org/02qk94m81 Vancouver Clinic'),
(59765, 'https://ror.org/00yvr3a11', 'en', 1, 'https://ror.org/00yvr3a11 Children’s Hospital at TriStar Centennial'),
(59766, 'https://ror.org/01jygxx11', 'no_lang_code', 1, 'https://ror.org/01jygxx11 ThedaCare'),
(59767, 'https://ror.org/05grhsk96', 'no_lang_code', 1, 'https://ror.org/05grhsk96 Vanderbilt Health'),
(59768, 'https://ror.org/0118bqm57', 'en', 1, 'https://ror.org/0118bqm57 Vanderbilt Psychiatric Hospital'),
(59769, 'https://ror.org/055kjct22', 'en', 1, 'https://ror.org/055kjct22 Asante Three Rivers Medical Center'),
(59770, 'https://ror.org/04c2qqq25', 'en', 1, 'https://ror.org/04c2qqq25 St. Vincent Carmel Hospital'),
(59771, 'https://ror.org/05jy72h47', 'en', 1, 'https://ror.org/05jy72h47 The Fifth People’s Hospital of Suzhou č‹å·žåø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(59772, 'https://ror.org/056bmw021', 'hr', 1, 'https://ror.org/056bmw021 Opća Bolnica Varaždin'),
(59773, 'https://ror.org/0405wpw62', 'en', 1, 'https://ror.org/0405wpw62 Vasan Eye Care Hospital'),
(59774, 'https://ror.org/01mjp5v83', 'en', 1, 'https://ror.org/01mjp5v83 South Jordan Health Center'),
(59775, 'https://ror.org/00nt56514', 'en', 1, 'https://ror.org/00nt56514 First People''s Hospital of Yuhang District ę­å·žåø‚ä½™ę­åŒŗē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(59776, 'https://ror.org/04n800n16', 'en', 1, 'https://ror.org/04n800n16 South Pointe Hospital'),
(59777, 'https://ror.org/02t4nzq07', 'en', 1, 'https://ror.org/02t4nzq07 Fuzhou Second Hospital ē¦å·žåø‚ē¬¬äŗŒåŒ»é™¢'),
(59778, 'https://ror.org/019wqcg20', 'en', 1, 'https://ror.org/019wqcg20 Stanford Health Care'),
(59779, 'https://ror.org/01fd5y629', 'no_lang_code', 1, 'https://ror.org/01fd5y629 Tomitahama Hospital'),
(59780, 'https://ror.org/00qjf4t92', 'en', 1, 'https://ror.org/00qjf4t92 Stanger Hospital'),
(59781, 'https://ror.org/052eesz64', 'no_lang_code', 1, 'https://ror.org/052eesz64 Veeda Clinical Research (India)'),
(59782, 'https://ror.org/03w71jp71', 'en', 1, 'https://ror.org/03w71jp71 Toledo Clinic Cancer Center'),
(59783, 'https://ror.org/03m412394', 'en', 1, 'https://ror.org/03m412394 START Clinic'),
(59784, 'https://ror.org/0336dfn75', 'en', 1, 'https://ror.org/0336dfn75 Toledo Clinic Cancer Center'),
(59785, 'https://ror.org/05j54qh77', 'en', 1, 'https://ror.org/05j54qh77 Chagrin Highlands Health Center'),
(59786, 'https://ror.org/02h07t345', 'en', 1, 'https://ror.org/02h07t345 Queen Square Radiosurgery Centre'),
(59787, 'https://ror.org/02cy2d039', 'en', 1, 'https://ror.org/02cy2d039 Westlake Health Center'),
(59788, 'https://ror.org/02mwqcj16', 'en', 1, 'https://ror.org/02mwqcj16 Memorial Health System'),
(59789, 'https://ror.org/02d950z41', 'en', 1, 'https://ror.org/02d950z41 Altasciences Clinical Research Vince & Associates'),
(59790, 'https://ror.org/058ma0d84', 'en', 1, 'https://ror.org/058ma0d84 Tƶƶlƶ Hospital'),
(59791, 'https://ror.org/02kcjwx60', 'en', 1, 'https://ror.org/02kcjwx60 Suburban Community Hospital'),
(59792, 'https://ror.org/01efeew70', 'en', 1, 'https://ror.org/01efeew70 Vince Lombardi Cancer Clinic'),
(59793, 'https://ror.org/03kgjaz64', 'en', 1, 'https://ror.org/03kgjaz64 Vince Lombardi Cancer Clinic'),
(59794, 'https://ror.org/01736k933', 'en', 1, 'https://ror.org/01736k933 Vince Lombardi Cancer Clinic'),
(59795, 'https://ror.org/01wqw7p30', 'en', 1, 'https://ror.org/01wqw7p30 Wuhou District People''s Hospital, Chengdu ęˆéƒ½åø‚ę­¦ä¾ÆåŒŗäŗŗę°‘åŒ»é™¢'),
(59796, 'https://ror.org/04thvph49', 'en', 1, 'https://ror.org/04thvph49 Virginia Center for Reproductive Medicine'),
(59797, 'https://ror.org/01dfa6f88', 'en', 1, 'https://ror.org/01dfa6f88 West Suburban Medical Center'),
(59798, 'https://ror.org/01derjp85', 'en', 1, 'https://ror.org/01derjp85 Western Illinois Cancer Treatment Center'),
(59799, 'https://ror.org/05arjk578', 'en', 1, 'https://ror.org/05arjk578 Trinity Health'),
(59800, 'https://ror.org/0079qbp72', 'en', 1, 'https://ror.org/0079qbp72 Uniontown Hospital Radiation Oncology'),
(59801, 'https://ror.org/00396f155', 'no_lang_code', 1, 'https://ror.org/00396f155 Yuli Hospital ēŽ‰é‡Œé†«é™¢ęœ¬éƒØ'),
(59802, 'https://ror.org/045m3df12', 'en', 1, 'https://ror.org/045m3df12 Tseung Kwan O Hospital å°‡č»ę¾³é†«é™¢'),
(59803, 'https://ror.org/00a43s158', 'nl', 1, 'https://ror.org/00a43s158 Hart voor Research Aalst'),
(59804, 'https://ror.org/05xd60306', 'en', 1, 'https://ror.org/05xd60306 Yulin Orthopedics Hospital of Chinese and Western Medicine ēŽ‰ęž—åø‚äø­č„æåŒ»ē»“åˆéŖØē§‘åŒ»é™¢ę˜Æ'),
(59805, 'https://ror.org/03bqkge93', 'en', 1, 'https://ror.org/03bqkge93 Upper Valley Medical Center'),
(59806, 'https://ror.org/02c4a9n85', 'en', 1, 'https://ror.org/02c4a9n85 Yuma Oncology Center'),
(59807, 'https://ror.org/05wsh0y70', 'en', 1, 'https://ror.org/05wsh0y70 Williams Plastic Surgery Specialists'),
(59808, 'https://ror.org/01cny4f98', 'en', 1, 'https://ror.org/01cny4f98 Zhangzhou Municipal Hospital of Fujian Province ē¦å»ŗēœę¼³å·žåø‚åŒ»é™¢'),
(59809, 'https://ror.org/0101cd070', 'en', 1, 'https://ror.org/0101cd070 Women''s Cancer Center of Nevada'),
(59810, 'https://ror.org/05sgvn942', 'en', 1, 'https://ror.org/05sgvn942 Valor Health'),
(59811, 'https://ror.org/01jfd9z49', 'en', 1, 'https://ror.org/01jfd9z49 Zhengzhou Children''s Hospital ę²³å—ēœå„æē«„åŒ»é™¢'),
(59812, 'https://ror.org/04e69hx24', 'en', 1, 'https://ror.org/04e69hx24 Bristol Regional Medical Center'),
(59813, 'https://ror.org/01z5evd58', 'en', 1, 'https://ror.org/01z5evd58 Zhengzhou City Hospital éƒ‘å·žåø‚äø­åŒ»é™¢'),
(59814, 'https://ror.org/00js7yw33', 'en', 1, 'https://ror.org/00js7yw33 Holston Valley Medical Center'),
(59815, 'https://ror.org/03xzqj858', 'en', 1, 'https://ror.org/03xzqj858 Piramal Clinical Research'),
(59816, 'https://ror.org/058q6bh20', 'en', 1, 'https://ror.org/058q6bh20 Sheridan Memorial Hospital'),
(59817, 'https://ror.org/03jfdh841', 'en', 1, 'https://ror.org/03jfdh841 Japan Petroleum Energy Center ēŸ³ę²¹ć‚Øćƒćƒ«ć‚®ćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(59818, 'https://ror.org/03wnr4x73', 'en', 1, 'https://ror.org/03wnr4x73 Samsung Life Public Welfare Foundation 삼성 ģƒėŖ… 복지 ģž¬ė‹Ø'),
(59819, 'https://ror.org/01g0kzv83', 'no_lang_code', 1, 'https://ror.org/01g0kzv83 Biosearch Life (Spain)'),
(59820, 'https://ror.org/031afvj24', 'en', 1, 'https://ror.org/031afvj24 Agency for Community Treatment Services'),
(59821, 'https://ror.org/054gy5e97', 'en', 1, 'https://ror.org/054gy5e97 Agency for Integrated Care'),
(59822, 'https://ror.org/05hdpwb59', 'en', 1, 'https://ror.org/05hdpwb59 Fatmawati Hospital Rumah Sakit Umum Pusat Fatmawati'),
(59823, 'https://ror.org/02076gf69', 'en', 1, 'https://ror.org/02076gf69 Psychiatry Region Zealand Psykiatrien Region SjƦlland'),
(59824, 'https://ror.org/049fybn29', 'en', 1, 'https://ror.org/049fybn29 Northern Area Armed Forces Hospital'),
(59825, 'https://ror.org/045qrr805', 'en', 1, 'https://ror.org/045qrr805 Ministry of Economy and Finance'),
(59826, 'https://ror.org/022yxs707', 'en', 1, 'https://ror.org/022yxs707 Intermutualist Agency'),
(59827, 'https://ror.org/015a8sc23', 'en', 1, 'https://ror.org/015a8sc23 Bell County Public Health District'),
(59828, 'https://ror.org/019ntzn33', 'no_lang_code', 1, 'https://ror.org/019ntzn33 International Drug Agency for Pharmaceutical Industry (Egypt)'),
(59829, 'https://ror.org/04nyjea81', 'en', 1, 'https://ror.org/04nyjea81 Capital Health'),
(59830, 'https://ror.org/04jbh8n08', 'en', 1, 'https://ror.org/04jbh8n08 Detroit Area Agency on Aging'),
(59831, 'https://ror.org/04vdzam19', 'en', 1, 'https://ror.org/04vdzam19 Ministry of Local Government, Rural Development and Co-operatives ą¦øą§ą¦„ą¦¾ą¦Øą§€ą¦Æą¦¼ সরকার, ą¦Ŗą¦²ą§ą¦²ą§€ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ও সমবায় ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(59832, 'https://ror.org/00s8c9279', 'de', 1, 'https://ror.org/00s8c9279 Knappschaftsklinikum Saar'),
(59833, 'https://ror.org/003dfn956', 'en', 1, 'https://ror.org/003dfn956 Department of Health & Family Welfare'),
(59834, 'https://ror.org/05p017741', 'en', 1, 'https://ror.org/05p017741 Centre of Excellence for Health, Immunity and Infections'),
(59835, 'https://ror.org/03zn9nd89', 'en', 1, 'https://ror.org/03zn9nd89 Department of Health Kagawaran ng Kalusugan'),
(59836, 'https://ror.org/05kzst346', 'en', 1, 'https://ror.org/05kzst346 Maricopa County Department of Public Health'),
(59837, 'https://ror.org/023j0b748', 'es', 1, 'https://ror.org/023j0b748 ClĆ­nica Diagonal'),
(59838, 'https://ror.org/02ccsj972', 'de', 1, 'https://ror.org/02ccsj972 Cnopf Children''s Hospital Cnopf“sche Kinderklinik'),
(59839, 'https://ror.org/02zfmm828', 'en', 1, 'https://ror.org/02zfmm828 Community Ministry of Prince George’s County'),
(59840, 'https://ror.org/044q6km85', 'en', 1, 'https://ror.org/044q6km85 Ministry of Health and Quality of Life'),
(59841, 'https://ror.org/05gtere25', 'no_lang_code', 1, 'https://ror.org/05gtere25 Vabiotech (Vietnam)'),
(59842, 'https://ror.org/03qv0rv36', 'no_lang_code', 1, 'https://ror.org/03qv0rv36 Eisai (Taiwan)'),
(59843, 'https://ror.org/02v8db677', 'de', 1, 'https://ror.org/02v8db677 KRH Klinikum Agnes Karll Laatzen'),
(59844, 'https://ror.org/0590fg074', 'en', 1, 'https://ror.org/0590fg074 Environmental Health'),
(59845, 'https://ror.org/05xs81d10', 'no_lang_code', 1, 'https://ror.org/05xs81d10 "Hadji Dimitar" Hospital MHAT ā€œHadji Dimitarā€ ŠœŠ‘ŠŠ› "ЄаГжи Š”ŠøŠ¼ŠøŃ‚ŃŠŃ€"'),
(59846, 'https://ror.org/00msj0306', 'no_lang_code', 1, 'https://ror.org/00msj0306 St.Caridad Hospital'),
(59847, 'https://ror.org/04p7qvm31', 'en', 1, 'https://ror.org/04p7qvm31 Ministry of Health'),
(59848, 'https://ror.org/00xgg4d44', 'tr', 1, 'https://ror.org/00xgg4d44 Erzincan Mengücek Gazi Eğitim ve Araştırma Hastanesi'),
(59849, 'https://ror.org/040frxb47', 'en', 1, 'https://ror.org/040frxb47 Niger State Ministry of Health'),
(59850, 'https://ror.org/02cesks36', 'en', 1, 'https://ror.org/02cesks36 Family Service Agency of the Central Coast'),
(59851, 'https://ror.org/00knv0d66', 'en', 1, 'https://ror.org/00knv0d66 Ministry for Social Equality ×”×ž×©×Ø×“ לשוויון חברתי'),
(59852, 'https://ror.org/04mjpp490', 'en', 1, 'https://ror.org/04mjpp490 Finnish Medicines Agency Fimea'),
(59853, 'https://ror.org/01txxvd81', 'pl', 1, 'https://ror.org/01txxvd81 Uniwersytecki Szpital Kliniczny w Opolu'),
(59854, 'https://ror.org/01yzgk702', 'en', 1, 'https://ror.org/01yzgk702 Ministry of Public Health وزارت ŲµŲ­ŲŖ عامه'),
(59855, 'https://ror.org/00eggnv95', 'en', 1, 'https://ror.org/00eggnv95 Finnish Safety and Chemicals Agency SƤkerhets- och kemikalieverket Turvallisuus- ja kemikaalivirasto'),
(59856, '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'),
(59857, 'https://ror.org/057s1m822', 'en', 1, 'https://ror.org/057s1m822 Florida Department of Citrus'),
(59858, 'https://ror.org/04ee1hr21', 'en', 1, 'https://ror.org/04ee1hr21 Ministry of Education and Skills Development'),
(59859, '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'),
(59860, 'https://ror.org/01fse5k28', 'en', 1, 'https://ror.org/01fse5k28 Eesti Siseministeerium Ministry of the Interior'),
(59861, 'https://ror.org/00g25n390', 'en', 1, 'https://ror.org/00g25n390 Ministry of Tourism, Sport and the Arts');
INSERT INTO `rors` VALUES
(59862, 'https://ror.org/03nzaax06', 'en', 1, 'https://ror.org/03nzaax06 Ministry of Foreign Affairs äø­čÆę°‘åœ‹å¤–äŗ¤éƒØ'),
(59863, 'https://ror.org/05kp26h23', 'en', 1, 'https://ror.org/05kp26h23 National Nutrition Agency'),
(59864, 'https://ror.org/02wymnj87', 'en', 1, 'https://ror.org/02wymnj87 Osaka Prefectural Government 大阪府'),
(59865, 'https://ror.org/01dd1x730', 'fr', 1, 'https://ror.org/01dd1x730 Clinique Saint Jean'),
(59866, 'https://ror.org/01f19gv14', 'en', 1, 'https://ror.org/01f19gv14 New York City Department for the Aging'),
(59867, 'https://ror.org/00r8ksq80', 'en', 1, 'https://ror.org/00r8ksq80 Ministry of Health'),
(59868, 'https://ror.org/057schw20', 'de', 1, 'https://ror.org/057schw20 Schƶn Klinik Berchtesgadener Land'),
(59869, 'https://ror.org/030yqfm02', 'es', 1, 'https://ror.org/030yqfm02 Ministerio de Salud'),
(59870, 'https://ror.org/01va37t86', 'en', 1, 'https://ror.org/01va37t86 New York City Department of Correction'),
(59871, 'https://ror.org/00cb3r984', 'fr', 1, 'https://ror.org/00cb3r984 Ministry of Public Health Ministère de la Santé Publique'),
(59872, 'https://ror.org/02kyv4s47', 'en', 1, 'https://ror.org/02kyv4s47 Ministry of National Health Services Regulation and Coordination وزارت ŲµŲ­ŲŖā€Žā€Ž'),
(59873, 'https://ror.org/03z77se46', 'en', 1, 'https://ror.org/03z77se46 Hawaii Department of Human Services'),
(59874, 'https://ror.org/02r17me31', 'en', 1, 'https://ror.org/02r17me31 Ministry Of Health'),
(59875, 'https://ror.org/03nszce13', 'it', 1, 'https://ror.org/03nszce13 Ospedale Pediatrico Giovanni XXIII'),
(59876, 'https://ror.org/029p55913', 'en', 1, 'https://ror.org/029p55913 Ministry of Public Health and Social Assistance'),
(59877, 'https://ror.org/035btw704', 'de', 1, 'https://ror.org/035btw704 Johanna-Etienne-Krankenhaus'),
(59878, 'https://ror.org/02465hh03', 'en', 1, 'https://ror.org/02465hh03 Ministry of Health, Community Development, Gender, Elderly and Children'),
(59879, 'https://ror.org/05j4tjy04', 'en', 1, 'https://ror.org/05j4tjy04 Ministry of Health and Social Welfare'),
(59880, 'https://ror.org/00v8gng44', 'en', 1, 'https://ror.org/00v8gng44 The American Legion Department of Wisconsin'),
(59881, 'https://ror.org/05d788x61', 'en', 1, 'https://ror.org/05d788x61 Redmond Fire Department'),
(59882, 'https://ror.org/05d0mtf30', 'en', 1, 'https://ror.org/05d0mtf30 Ministry of Public Health'),
(59883, 'https://ror.org/022ebn524', 'no_lang_code', 1, 'https://ror.org/022ebn524 Hennepin County'),
(59884, 'https://ror.org/00fymwf34', 'en', 1, 'https://ror.org/00fymwf34 UnaSource Health'),
(59885, 'https://ror.org/04v719x65', 'en', 1, 'https://ror.org/04v719x65 Beat Nb'),
(59886, 'https://ror.org/01dje3226', 'en', 1, 'https://ror.org/01dje3226 The Stern Cardiovascular Foundation'),
(59887, 'https://ror.org/058x4qg04', 'en', 1, 'https://ror.org/058x4qg04 A Step Ahead Foundation'),
(59888, 'https://ror.org/03w7cqb73', 'en', 1, 'https://ror.org/03w7cqb73 Jack Jablonski BEL13VE in Miracles Foundation'),
(59889, 'https://ror.org/036cvn086', 'it', 1, 'https://ror.org/036cvn086 Fondazione A.R. Card Onlus'),
(59890, 'https://ror.org/02yy1n467', 'en', 1, 'https://ror.org/02yy1n467 Belgian Burn Foundation'),
(59891, 'https://ror.org/023pcfd52', 'en', 1, 'https://ror.org/023pcfd52 Foundation for Cardiac Surgery'),
(59892, 'https://ror.org/018et7876', 'en', 1, 'https://ror.org/018et7876 Columbus Ophthalmology Associates'),
(59893, 'https://ror.org/05fp5vn06', 'en', 1, 'https://ror.org/05fp5vn06 Absenger Cancer Education Foundation'),
(59894, 'https://ror.org/00xvxvn83', 'en', 1, 'https://ror.org/00xvxvn83 European Foundation for the Study of Chronic Liver Failure'),
(59895, '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'),
(59896, 'https://ror.org/036wdbz11', 'en', 1, 'https://ror.org/036wdbz11 Auto Dealers Caring for Kids Foundation'),
(59897, 'https://ror.org/056xgt572', 'en', 1, 'https://ror.org/056xgt572 Colorado Springs Osteopathic Foundation'),
(59898, 'https://ror.org/01zqwsv76', 'it', 1, 'https://ror.org/01zqwsv76 Fondazione FADOI'),
(59899, 'https://ror.org/03bjx6g30', 'en', 1, 'https://ror.org/03bjx6g30 Africa Mental Health Foundation'),
(59900, 'https://ror.org/000dkqr98', 'en', 1, 'https://ror.org/000dkqr98 Community Eye Care Foundation'),
(59901, 'https://ror.org/003akqg03', 'en', 1, 'https://ror.org/003akqg03 Aidan Foundation'),
(59902, 'https://ror.org/044dx6h83', 'en', 1, 'https://ror.org/044dx6h83 AIDS Healthcare Foundation'),
(59903, 'https://ror.org/005mppy75', 'en', 1, 'https://ror.org/005mppy75 Community Pharmacy Foundation'),
(59904, 'https://ror.org/00j1czq77', 'en', 1, 'https://ror.org/00j1czq77 Foundation for Cardiovascular Biomedical Research and Gene and Cell Therapy'),
(59905, 'https://ror.org/002jbbs61', 'nl', 1, 'https://ror.org/002jbbs61 Continentie Stichting Nederland'),
(59906, 'https://ror.org/05aaaax52', 'en', 1, 'https://ror.org/05aaaax52 Alana''s Foundation'),
(59907, 'https://ror.org/03yqmy809', 'de', 1, 'https://ror.org/03yqmy809 Albert und Barbara von Metzler-Stiftung'),
(59908, 'https://ror.org/036khbq65', 'en', 1, 'https://ror.org/036khbq65 The Alberta Paraplegic Foundation'),
(59909, 'https://ror.org/03kps0c77', 'no_lang_code', 1, 'https://ror.org/03kps0c77 Cool Sorption (Denmark)'),
(59910, 'https://ror.org/02fmwa274', 'en', 1, 'https://ror.org/02fmwa274 Brain and Cognition Discovery Foundation'),
(59911, 'https://ror.org/02a22wk73', 'it', 1, 'https://ror.org/02a22wk73 Fondazione Farmacogenomica FiorGen'),
(59912, 'https://ror.org/0592a5f63', 'en', 1, 'https://ror.org/0592a5f63 Foundation for Spinal Cord Research Moelle Epinière et Motricité Québec'),
(59913, 'https://ror.org/057kybq87', 'en', 1, 'https://ror.org/057kybq87 Bridgewater Community Healthcare NHS Foundation Trust'),
(59914, 'https://ror.org/00fztf021', 'en', 1, 'https://ror.org/00fztf021 Alliance Foundation Trials'),
(59915, 'https://ror.org/01jgxbq59', 'en', 1, 'https://ror.org/01jgxbq59 AlterMed Research Foundation'),
(59916, 'https://ror.org/03xrx2656', 'en', 1, 'https://ror.org/03xrx2656 Cure Foundation'),
(59917, 'https://ror.org/03jgzzv46', 'en', 1, 'https://ror.org/03jgzzv46 Alternating Hemiplegia of Childhood Foundation'),
(59918, 'https://ror.org/00kxda681', 'en', 1, 'https://ror.org/00kxda681 American Foundation for Addiction Research'),
(59919, 'https://ror.org/01q02kv80', 'en', 1, 'https://ror.org/01q02kv80 Foundation for Faces of Children'),
(59920, 'https://ror.org/02a1x2s63', 'en', 1, 'https://ror.org/02a1x2s63 American Legion of Iowa Foundation'),
(59921, 'https://ror.org/04zv2wf02', 'no_lang_code', 1, 'https://ror.org/04zv2wf02 Damien Foundation'),
(59922, 'https://ror.org/05epcyx33', 'en', 1, 'https://ror.org/05epcyx33 Foundation for Education and Musculoskeletal Research'),
(59923, 'https://ror.org/05dyf1y62', 'no_lang_code', 1, 'https://ror.org/05dyf1y62 Byrraju Foundation'),
(59924, 'https://ror.org/02jsea915', 'en', 1, 'https://ror.org/02jsea915 De Cavel Family SIDS Foundation'),
(59925, 'https://ror.org/026envs24', 'en', 1, 'https://ror.org/026envs24 Paradigm Foundation'),
(59926, 'https://ror.org/03e0ext69', 'en', 1, 'https://ror.org/03e0ext69 Andrews Research & Education Foundation'),
(59927, 'https://ror.org/05ya6s054', 'en', 1, 'https://ror.org/05ya6s054 Canadian Foundation for Dental Hygiene Research and Education'),
(59928, 'https://ror.org/03qx0ne83', 'en', 1, 'https://ror.org/03qx0ne83 Dean Foundation'),
(59929, 'https://ror.org/00j8m2v88', 'en', 1, 'https://ror.org/00j8m2v88 Foundation for Southwest Orthopedic Research'),
(59930, 'https://ror.org/04pxn5h75', 'en', 1, 'https://ror.org/04pxn5h75 Arab Foundation For Freedoms And Equality'),
(59931, 'https://ror.org/04ge4r742', 'en', 1, 'https://ror.org/04ge4r742 Capio Research Foundation'),
(59932, 'https://ror.org/04yjzvg70', 'en', 1, 'https://ror.org/04yjzvg70 Arizona Oncology Foundation'),
(59933, 'https://ror.org/03tv7jf42', 'en', 1, 'https://ror.org/03tv7jf42 Fondazione per la Ricerca Farmacologica Gianni Benzi Gianni Benzi Pharmacological Research Foundation'),
(59934, 'https://ror.org/050mwvy04', 'no_lang_code', 1, 'https://ror.org/050mwvy04 Admin Partners (Switzerland)'),
(59935, 'https://ror.org/05c9r4685', 'en', 1, 'https://ror.org/05c9r4685 Dignity Health'),
(59936, 'https://ror.org/037dqnd52', 'en', 1, 'https://ror.org/037dqnd52 The Goldfarb Foundation'),
(59937, 'https://ror.org/03bh0nj27', 'en', 1, 'https://ror.org/03bh0nj27 Goldseker Foundation'),
(59938, 'https://ror.org/0192sgm30', 'sv', 1, 'https://ror.org/0192sgm30 Gorthonstiftelsen'),
(59939, 'https://ror.org/04ktmrv21', 'en', 1, 'https://ror.org/04ktmrv21 Graham Boeckh Foundation'),
(59940, 'https://ror.org/053kvet57', 'en', 1, 'https://ror.org/053kvet57 Dolfinger-McMahon Foundation'),
(59941, 'https://ror.org/026qrcc48', 'en', 1, 'https://ror.org/026qrcc48 Gujarat Kidney Foundation'),
(59942, 'https://ror.org/04ewmmy12', 'en', 1, 'https://ror.org/04ewmmy12 The Challenging Behaviour Foundation'),
(59943, 'https://ror.org/049w8dr20', 'en', 1, 'https://ror.org/049w8dr20 Gwendolyn Strong Foundation'),
(59944, 'https://ror.org/01emd7z98', 'en', 1, 'https://ror.org/01emd7z98 Asia Diabetes Foundation äŗšę“²ē³–å°æē—…åŸŗé‡‘ä¼š'),
(59945, 'https://ror.org/04qjgaa08', 'en', 1, 'https://ror.org/04qjgaa08 Foundation Children with Spinal Muscular Atrophy'),
(59946, 'https://ror.org/03cyvc844', 'en', 1, 'https://ror.org/03cyvc844 "Woman Health & Family Planning" Charity Foundation БлагоГійний фонГ "Жінка зГоров''я та сімейного ŠæŠ»Š°Š½ŃƒŠ²Š°Š½Š½Ń"'),
(59947, 'https://ror.org/0550wc655', 'en', 1, 'https://ror.org/0550wc655 Charles H. Hood Foundation'),
(59948, 'https://ror.org/053p3yh76', 'no_lang_code', 1, 'https://ror.org/053p3yh76 Walder Wyss (Switzerland)'),
(59949, 'https://ror.org/023p1v236', 'en', 1, 'https://ror.org/023p1v236 Australian Childhood Foundation'),
(59950, 'https://ror.org/01tf40c53', 'en', 1, 'https://ror.org/01tf40c53 Healing Touch Worldwide Foundation'),
(59951, 'https://ror.org/018695p26', 'en', 1, 'https://ror.org/018695p26 Health and Social Development Foundation Š¤Š¾Š½Š“Š°Ń†ŠøŃ "ЗГраве Šø социално развитие"'),
(59952, 'https://ror.org/010xh5279', 'en', 1, 'https://ror.org/010xh5279 Fragile X Research Foundation Of Canada'),
(59953, 'https://ror.org/02psfb488', 'en', 1, 'https://ror.org/02psfb488 China Soong Ching Ling Foundation'),
(59954, 'https://ror.org/05xrv5316', 'en', 1, 'https://ror.org/05xrv5316 Hellenic Osteoporosis Foundation Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪŸĻƒĻ„ĪµĪæĻ€ĻŒĻĻ‰ĻƒĪ·Ļ‚'),
(59955, 'https://ror.org/05ngdrj30', 'fr', 1, 'https://ror.org/05ngdrj30 Fondation FranƧaise pour la Recherche sur l''Epilepsie'),
(59956, 'https://ror.org/04gqrmc82', 'en', 1, 'https://ror.org/04gqrmc82 Australasian Gastro Intestinal Research Foundation'),
(59957, 'https://ror.org/00wz52266', 'es', 1, 'https://ror.org/00wz52266 Fundación Hermano Miguel'),
(59958, 'https://ror.org/019pd0m31', 'en', 1, 'https://ror.org/019pd0m31 Hildegard Grunow Foundation Hildegard-Grunow-Stiftung'),
(59959, 'https://ror.org/0208m9g76', 'en', 1, 'https://ror.org/0208m9g76 The Hubbard Foundation'),
(59960, 'https://ror.org/01q00j872', 'en', 1, 'https://ror.org/01q00j872 HipKnee Arkansas Foundation'),
(59961, 'https://ror.org/04jx66z14', 'pt', 1, 'https://ror.org/04jx66z14 Fundação Edson Queiroz'),
(59962, 'https://ror.org/055g9vf08', 'en', 1, 'https://ror.org/055g9vf08 Human Development Research Foundation'),
(59963, 'https://ror.org/024603t93', 'en', 1, 'https://ror.org/024603t93 Interventional Orthopedics Foundation'),
(59964, 'https://ror.org/0052b4n21', 'pt', 1, 'https://ror.org/0052b4n21 Fundação Ataulpho de Paiva'),
(59965, 'https://ror.org/03cj17c02', 'en', 1, 'https://ror.org/03cj17c02 Holistic Health Research Centre'),
(59966, 'https://ror.org/04wwppp44', 'en', 1, 'https://ror.org/04wwppp44 The O.P. and W.E. Edwards Foundation'),
(59967, 'https://ror.org/04ak3w704', 'en', 1, 'https://ror.org/04ak3w704 Italian Network for Tumor Biotherapy Foundation Network Italiano per la Bioterapia dei Tumori Fondazione'),
(59968, 'https://ror.org/05p5naa72', 'en', 1, 'https://ror.org/05p5naa72 IWK Foundation'),
(59969, 'https://ror.org/05sgz5r12', 'da', 1, 'https://ror.org/05sgz5r12 Ensomme Gamles Vaern'),
(59970, 'https://ror.org/03ckmzz49', 'en', 1, 'https://ror.org/03ckmzz49 Egyptian Foundation for Cancer Research'),
(59971, 'https://ror.org/036da3063', 'en', 1, 'https://ror.org/036da3063 HĆ“pital Libanais Geitaoui - CHU Lebanese Hospital Geitaoui-University Medical Center المستؓفى Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠ Ų§Ł„Ų¬Ų¹ŁŠŲŖŲ§ŁˆŁŠ'),
(59972, 'https://ror.org/04h3kb791', 'en', 1, 'https://ror.org/04h3kb791 Electrophysiology Research Foundation'),
(59973, 'https://ror.org/0156jsd27', 'en', 1, 'https://ror.org/0156jsd27 James B. and Lois R. Archer Charitable Foundation'),
(59974, 'https://ror.org/021qj7h23', 'en', 1, 'https://ror.org/021qj7h23 Hypersomnia Foundation'),
(59975, 'https://ror.org/01mzwmh52', 'en', 1, 'https://ror.org/01mzwmh52 British Columbia Rehabilitation Foundation'),
(59976, 'https://ror.org/04vt5s449', 'en', 1, 'https://ror.org/04vt5s449 Cure CP'),
(59977, 'https://ror.org/00rrdxz53', 'en', 1, 'https://ror.org/00rrdxz53 Nambudripad''s Allergy Research Foundation'),
(59978, 'https://ror.org/02vzd2x77', 'en', 1, 'https://ror.org/02vzd2x77 Life Extension Foundation'),
(59979, 'https://ror.org/01b0d9a10', 'en', 1, 'https://ror.org/01b0d9a10 Lifelong Vision Foundation'),
(59980, 'https://ror.org/03xrhty12', 'en', 1, 'https://ror.org/03xrhty12 JH Rahn Foundation'),
(59981, 'https://ror.org/03qcwne61', 'en', 1, 'https://ror.org/03qcwne61 Nashville Public Library'),
(59982, 'https://ror.org/0306c2632', 'en', 1, 'https://ror.org/0306c2632 Inflammation Research Foundation'),
(59983, 'https://ror.org/02ww9rk15', 'en', 1, 'https://ror.org/02ww9rk15 National Foundation for Autism Research'),
(59984, 'https://ror.org/022p9j404', 'nl', 1, 'https://ror.org/022p9j404 Nationale Intensive Care Evaluatie Stichting'),
(59985, 'https://ror.org/01wpjz328', 'en', 1, 'https://ror.org/01wpjz328 The IBC Network Foundation'),
(59986, 'https://ror.org/01pt05f05', 'en', 1, 'https://ror.org/01pt05f05 The Living Legacy Foundation'),
(59987, 'https://ror.org/00knzje15', 'en', 1, 'https://ror.org/00knzje15 Lloyd A. Fry Foundation'),
(59988, 'https://ror.org/03k7rfp93', 'en', 1, 'https://ror.org/03k7rfp93 NEGES Foundation'),
(59989, 'https://ror.org/04vjj4994', 'en', 1, 'https://ror.org/04vjj4994 Nepal Family Development Foundation'),
(59990, 'https://ror.org/0556qd820', 'en', 1, 'https://ror.org/0556qd820 Inland Empire Liver Foundation'),
(59991, 'https://ror.org/04rrktd29', 'en', 1, 'https://ror.org/04rrktd29 Joseph M. Still Research Foundation'),
(59992, 'https://ror.org/030ehsk26', 'no_lang_code', 1, 'https://ror.org/030ehsk26 Luther Marketing Group (United Kingdom)'),
(59993, 'https://ror.org/058ab9q40', 'en', 1, 'https://ror.org/058ab9q40 The Lynn Sage Foundation'),
(59994, 'https://ror.org/02neq6p97', 'en', 1, 'https://ror.org/02neq6p97 M.S.I. Foundation'),
(59995, 'https://ror.org/05aznfd39', 'en', 1, 'https://ror.org/05aznfd39 Network of European Foundations'),
(59996, 'https://ror.org/04wkxh813', 'en', 1, 'https://ror.org/04wkxh813 Neurologique Foundation'),
(59997, 'https://ror.org/04y8jf896', 'en', 1, 'https://ror.org/04y8jf896 Interventional Stroke Therapy Outcomes Registry'),
(59998, 'https://ror.org/05cfhyk75', 'en', 1, 'https://ror.org/05cfhyk75 Neys-van Hoogstraten Foundation'),
(59999, 'https://ror.org/044zwp896', 'es', 1, 'https://ror.org/044zwp896 Fundación Andrés Marcio Marcio Andres Foundation'),
(60000, 'https://ror.org/02x62c182', 'en', 1, 'https://ror.org/02x62c182 Her Many Voices Foundation'),
(60001, 'https://ror.org/057c4v611', 'en', 1, 'https://ror.org/057c4v611 International Brain Research Foundation'),
(60002, 'https://ror.org/04fxbva21', 'en', 1, 'https://ror.org/04fxbva21 Marine Corps – Law Enforcement Foundation'),
(60003, 'https://ror.org/00vsg4120', 'en', 1, 'https://ror.org/00vsg4120 North Georgia Heart Foundation'),
(60004, 'https://ror.org/057sba841', 'en', 1, 'https://ror.org/057sba841 Keloid Research Foundation'),
(60005, 'https://ror.org/01g373s33', 'en', 1, 'https://ror.org/01g373s33 International Hyperbaric Medical Foundation'),
(60006, 'https://ror.org/05wgs8j78', 'en', 1, 'https://ror.org/05wgs8j78 Northwest Oklahoma Osteopathic Foundation'),
(60007, 'https://ror.org/03wqpgn56', 'en', 1, 'https://ror.org/03wqpgn56 Kigezi Healthcare Foundation'),
(60008, 'https://ror.org/00t32cq90', 'en', 1, 'https://ror.org/00t32cq90 FĆødselsstiftelsen Maternity Foundation'),
(60009, 'https://ror.org/04zame467', 'en', 1, 'https://ror.org/04zame467 Kulas Foundation'),
(60010, 'https://ror.org/03nas4306', 'en', 1, 'https://ror.org/03nas4306 Fisheries Administration įžšįžŠįŸ’įž‹įž”įž¶įž› įž‡įž›įž•įž›'),
(60011, 'https://ror.org/03k50x073', 'en', 1, 'https://ror.org/03k50x073 Mats Uldal Humanitarian Foundation'),
(60012, 'https://ror.org/00qtc6702', 'en', 1, 'https://ror.org/00qtc6702 Nurses for Newborns'),
(60013, 'https://ror.org/03s92re04', 'en', 1, 'https://ror.org/03s92re04 Nursing Science Foundation Switzerland Stiftung Pflegewissenschaften Schweiz'),
(60014, 'https://ror.org/05hs5ga57', 'en', 1, 'https://ror.org/05hs5ga57 Qualitouch-HC Foundation'),
(60015, 'https://ror.org/01659vw12', 'en', 1, 'https://ror.org/01659vw12 Nutritional Research Foundation'),
(60016, 'https://ror.org/04cd54f48', 'en', 1, 'https://ror.org/04cd54f48 Landon Pediatric Foundation'),
(60017, 'https://ror.org/020nhna33', 'en', 1, 'https://ror.org/020nhna33 American College of Osteopathic Obstetricians & Gynecologists'),
(60018, 'https://ror.org/05c4jjy50', 'en', 1, 'https://ror.org/05c4jjy50 Medica Foundation'),
(60019, 'https://ror.org/048qh2s42', 'en', 1, 'https://ror.org/048qh2s42 OASI Bioresearch Foundation'),
(60020, 'https://ror.org/00bkk2469', 'en', 1, 'https://ror.org/00bkk2469 Medarva Healthcare'),
(60021, 'https://ror.org/04khtec53', 'en', 1, 'https://ror.org/04khtec53 Paul Ruby Foundation for Parkinson’s Research'),
(60022, 'https://ror.org/02687k192', 'en', 1, 'https://ror.org/02687k192 Barbara Lee Family Foundation'),
(60023, 'https://ror.org/00jdndk37', 'en', 1, 'https://ror.org/00jdndk37 The Lee Spark NF Foundation'),
(60024, 'https://ror.org/03gnnp686', 'en', 1, 'https://ror.org/03gnnp686 Ocular Immunology and Uveitis Foundation'),
(60025, 'https://ror.org/0415b1145', 'en', 1, 'https://ror.org/0415b1145 Leiomyosarcoma Direct Research Foundation'),
(60026, 'https://ror.org/02zx70081', 'en', 1, 'https://ror.org/02zx70081 Omair Sana Foundation'),
(60027, 'https://ror.org/00g5rbh32', 'en', 1, 'https://ror.org/00g5rbh32 Michigan Pharmacists Association'),
(60028, 'https://ror.org/02m0hdc77', 'en', 1, 'https://ror.org/02m0hdc77 Jesse & Julie Rasch Foundation'),
(60029, 'https://ror.org/02s04ww23', 'en', 1, 'https://ror.org/02s04ww23 Ronan Thompson Foundation'),
(60030, 'https://ror.org/042t5qg73', 'en', 1, 'https://ror.org/042t5qg73 Miina SillanpƤƤ Foundation Miina SillanpƤƤn SƤƤtiƶ'),
(60031, 'https://ror.org/051ay2y67', 'en', 1, 'https://ror.org/051ay2y67 Rashi Foundation קרן רש"י'),
(60032, 'https://ror.org/01hgadp56', 'en', 1, 'https://ror.org/01hgadp56 ALS Finding a Cure'),
(60033, 'https://ror.org/031rmrw34', 'en', 1, 'https://ror.org/031rmrw34 Pediatric Blood and Marrow Transplant Foundation'),
(60034, 'https://ror.org/017s9e951', 'en', 1, 'https://ror.org/017s9e951 Institute for Rehabilitation and Research Foundation'),
(60035, 'https://ror.org/05wzgbw88', 'en', 1, 'https://ror.org/05wzgbw88 Mitsukoshi Health and Welfare Foundation č²”å›£ę³•äŗŗäø‰č¶ŠåŽšē”Ÿäŗ‹ę„­å›£'),
(60036, 'https://ror.org/02gxv2217', 'en', 1, 'https://ror.org/02gxv2217 Pedorthic Research Foundation of Canada'),
(60037, 'https://ror.org/020vv3w23', 'fi', 1, 'https://ror.org/020vv3w23 InvalidisƤƤtiƶ'),
(60038, 'https://ror.org/05jyzkb74', 'en', 1, 'https://ror.org/05jyzkb74 Pennsylvania Allergy and Asthma Association'),
(60039, 'https://ror.org/04q1tq423', 'en', 1, 'https://ror.org/04q1tq423 The Sandra A. Daugherty Foundation'),
(60040, 'https://ror.org/00wk6gg04', 'en', 1, 'https://ror.org/00wk6gg04 Musculoskeletal Orthopedic Research and Education Foundation'),
(60041, 'https://ror.org/041ee2w62', 'en', 1, 'https://ror.org/041ee2w62 Michael Reese Research and Education Foundation'),
(60042, 'https://ror.org/00yy1mz70', 'en', 1, 'https://ror.org/00yy1mz70 Osteopathic Founders Foundation'),
(60043, 'https://ror.org/039m3qq17', 'en', 1, 'https://ror.org/039m3qq17 Choroideremia Research Foundation'),
(60044, 'https://ror.org/058g4tt51', 'da', 1, 'https://ror.org/058g4tt51 Edgar Schnohr og hustru Gilberte Schnohr''s Fond'),
(60045, 'https://ror.org/0413e4b06', 'no', 1, 'https://ror.org/0413e4b06 Solveig and Johan P. Sommer''s foundation Solveig og Johan P. Sommers stiftelse'),
(60046, 'https://ror.org/007d0bq34', 'en', 1, 'https://ror.org/007d0bq34 Maier Foundation'),
(60047, 'https://ror.org/03yjh4902', 'en', 1, 'https://ror.org/03yjh4902 ResOrtho Foundation ResOrtho Stiftung'),
(60048, 'https://ror.org/002jbzp90', 'en', 1, 'https://ror.org/002jbzp90 Sceptor Pain Foundation'),
(60049, 'https://ror.org/05mb9sm33', 'en', 1, 'https://ror.org/05mb9sm33 Texas Cardiac Arrhythmia'),
(60050, 'https://ror.org/03bv7bz63', 'en', 1, 'https://ror.org/03bv7bz63 South Sound Care Foundation'),
(60051, 'https://ror.org/01p3c7261', 'en', 1, 'https://ror.org/01p3c7261 The Peter and Elizabeth C. Tower Foundation'),
(60052, 'https://ror.org/03s58x415', 'no_lang_code', 1, 'https://ror.org/03s58x415 Deichmann (Germany)'),
(60053, 'https://ror.org/0087pxt17', 'es', 1, 'https://ror.org/0087pxt17 Fundación Pethema'),
(60054, 'https://ror.org/058yj6h98', 'en', 1, 'https://ror.org/058yj6h98 Respiratory Clinical Trials'),
(60055, 'https://ror.org/0049tqy16', 'en', 1, 'https://ror.org/0049tqy16 St. Hope Foundation'),
(60056, 'https://ror.org/000518j63', 'no', 1, 'https://ror.org/000518j63 Stavanger Acute Medicine Foundation for Education and Research Stavanger Akuttmedisinfond for utdanning og forskning'),
(60057, 'https://ror.org/0212s7037', 'en', 1, 'https://ror.org/0212s7037 The Asper Foundation'),
(60058, 'https://ror.org/01frh6r56', 'no_lang_code', 1, 'https://ror.org/01frh6r56 Seguros Caracas Liberty Mutual (Venezuela)'),
(60059, 'https://ror.org/0066mxd71', 'de', 1, 'https://ror.org/0066mxd71 Rexrodt von Fircks Stiftung'),
(60060, 'https://ror.org/025qj9586', 'en', 1, 'https://ror.org/025qj9586 Semmes Murphey Foundation'),
(60061, 'https://ror.org/01gxyxa13', 'en', 1, 'https://ror.org/01gxyxa13 Setting Scoliosis Straight Foundation'),
(60062, 'https://ror.org/03h79ns34', 'en', 1, 'https://ror.org/03h79ns34 Bowmen Family Foundation'),
(60063, 'https://ror.org/029tn0z88', 'en', 1, 'https://ror.org/029tn0z88 Strabismus Research Foundation'),
(60064, 'https://ror.org/002smyn79', 'en', 1, 'https://ror.org/002smyn79 Sun Protection Foundation'),
(60065, 'https://ror.org/00k82d071', 'en', 1, 'https://ror.org/00k82d071 The Chopra Foundation'),
(60066, 'https://ror.org/04t7xhp38', 'en', 1, 'https://ror.org/04t7xhp38 Side-Out Foundation'),
(60067, 'https://ror.org/016006q30', 'en', 1, 'https://ror.org/016006q30 Slocum Research and Education Foundation'),
(60068, 'https://ror.org/00yyvga88', 'en', 1, 'https://ror.org/00yyvga88 Small Enterprise Foundation'),
(60069, 'https://ror.org/02t63ax82', 'en', 1, 'https://ror.org/02t63ax82 Surya Chest Foundation'),
(60070, 'https://ror.org/0205c6c55', 'en', 1, 'https://ror.org/0205c6c55 Pine Street Foundation'),
(60071, 'https://ror.org/04mddwq63', 'en', 1, 'https://ror.org/04mddwq63 Susan L. Bader Foundation of Hope'),
(60072, 'https://ror.org/04bhbrs76', 'en', 1, 'https://ror.org/04bhbrs76 River Styx Foundation'),
(60073, 'https://ror.org/02p6m2x11', 'en', 1, 'https://ror.org/02p6m2x11 The Piton Foundation'),
(60074, 'https://ror.org/05jgnq975', 'en', 1, 'https://ror.org/05jgnq975 Early Childhood Initiative Foundation'),
(60075, 'https://ror.org/0193k3909', 'en', 1, 'https://ror.org/0193k3909 Swedish Nutrition Foundation'),
(60076, 'https://ror.org/0300tx783', 'en', 1, 'https://ror.org/0300tx783 Planet Water Foundation'),
(60077, 'https://ror.org/00dbfqh37', 'en', 1, 'https://ror.org/00dbfqh37 Golden Helix Foundation'),
(60078, 'https://ror.org/0172qgn96', 'en', 1, 'https://ror.org/0172qgn96 The Eisner Foundation'),
(60079, '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'),
(60080, 'https://ror.org/05q2kbw66', 'en', 1, 'https://ror.org/05q2kbw66 The Heartburn Foundation'),
(60081, 'https://ror.org/025n23k97', 'en', 1, 'https://ror.org/025n23k97 Planet Wheeler Foundation'),
(60082, 'https://ror.org/0212kmf07', 'en', 1, 'https://ror.org/0212kmf07 Saving Faces'),
(60083, 'https://ror.org/00k98as45', 'en', 1, 'https://ror.org/00k98as45 Perinatal Quality Foundation'),
(60084, 'https://ror.org/03n2efg67', 'en', 1, 'https://ror.org/03n2efg67 Hoffberger Family Philanthropies'),
(60085, 'https://ror.org/035d5ht51', 'en', 1, 'https://ror.org/035d5ht51 The Fan Fox and Leslie R. Samuels Foundation'),
(60086, 'https://ror.org/0560yf995', 'en', 1, 'https://ror.org/0560yf995 Feminist Majority Foundation'),
(60087, 'https://ror.org/033nznn12', 'en', 1, 'https://ror.org/033nznn12 Hong Kong Blood Cancer Foundation é¦™ęøÆč”€ē™ŒåŸŗé‡‘'),
(60088, 'https://ror.org/040emdb43', 'en', 1, 'https://ror.org/040emdb43 Fetal Medicine Foundation Belgium Foetale Geneeskunde'),
(60089, 'https://ror.org/04pmb3j40', 'en', 1, 'https://ror.org/04pmb3j40 Hong Kong Lung Foundation'),
(60090, 'https://ror.org/00c0e8k87', 'en', 1, 'https://ror.org/00c0e8k87 Pothecary Witham Weld Solicitors'),
(60091, 'https://ror.org/01p47g940', 'es', 1, 'https://ror.org/01p47g940 Fundación Huésped'),
(60092, 'https://ror.org/05v54nj07', 'en', 1, 'https://ror.org/05v54nj07 Finnish Research Foundation for Orthopaedics and Traumatology Ortopedian ja traumatologian tutkimussƤƤtiƶ'),
(60093, 'https://ror.org/019fmzd26', 'en', 1, 'https://ror.org/019fmzd26 Plough Foundation'),
(60094, 'https://ror.org/04e40d584', 'en', 1, 'https://ror.org/04e40d584 Taipei Fubon Bank Philanthropy Foundation å°åŒ—åÆŒé‚¦éŠ€č”Œå…¬ē›Šę…ˆå–„åŸŗé‡‘ęœƒ'),
(60095, 'https://ror.org/017t5ge61', 'en', 1, 'https://ror.org/017t5ge61 Polk Bros. Foundation'),
(60096, 'https://ror.org/03q5gxs50', 'en', 1, 'https://ror.org/03q5gxs50 Peter G. Dodge Foundation'),
(60097, 'https://ror.org/02hk1y795', 'en', 1, 'https://ror.org/02hk1y795 TargetCancer Foundation'),
(60098, 'https://ror.org/004n9g494', 'en', 1, 'https://ror.org/004n9g494 Task Applied Science'),
(60099, 'https://ror.org/04c8g2w89', 'en', 1, 'https://ror.org/04c8g2w89 Mulago Foundation'),
(60100, 'https://ror.org/04tagby45', 'en', 1, 'https://ror.org/04tagby45 Triodos Bank'),
(60101, 'https://ror.org/02k3h7m33', 'en', 1, 'https://ror.org/02k3h7m33 The Stop ALD Foundation'),
(60102, 'https://ror.org/002pzb313', 'en', 1, 'https://ror.org/002pzb313 The Kidney Foundation of Thailand ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ą¹‚ąø£ąø„ą¹„ąø•ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(60103, 'https://ror.org/02dgz7m30', 'en', 1, 'https://ror.org/02dgz7m30 Tahija Foundation Yayasan Tahija'),
(60104, 'https://ror.org/03greb419', 'en', 1, 'https://ror.org/03greb419 Turkish Metabolic Surgery Foundation'),
(60105, 'https://ror.org/02c7gw327', 'en', 1, 'https://ror.org/02c7gw327 Thistle Foundation'),
(60106, 'https://ror.org/05724sa39', 'en', 1, 'https://ror.org/05724sa39 Fondation Sandra Schmirler Sandra Schmirler Foundation'),
(60107, 'https://ror.org/05rtsqz84', 'en', 1, 'https://ror.org/05rtsqz84 Ben''s Dream'),
(60108, 'https://ror.org/00nx7kq05', 'en', 1, 'https://ror.org/00nx7kq05 Wayne D Kuni & Joan E Kuni Foundation'),
(60109, 'https://ror.org/03rsvnv92', 'en', 1, 'https://ror.org/03rsvnv92 The Sashbear Foundation'),
(60110, 'https://ror.org/04p9df934', 'en', 1, 'https://ror.org/04p9df934 Winnicott Foundation'),
(60111, 'https://ror.org/0223m1p35', 'en', 1, 'https://ror.org/0223m1p35 Shade Foundation'),
(60112, 'https://ror.org/05kj9dv08', 'en', 1, 'https://ror.org/05kj9dv08 The SHM Foundation'),
(60113, 'https://ror.org/021tj2a07', 'en', 1, 'https://ror.org/021tj2a07 National Urea Cycle Disorders Foundation'),
(60114, 'https://ror.org/03q4enq27', 'en', 1, 'https://ror.org/03q4enq27 Thomas & Jeanne Elmezzi Foundation'),
(60115, 'https://ror.org/01t307872', 'en', 1, 'https://ror.org/01t307872 Progressive Agriculture Foundation'),
(60116, 'https://ror.org/00hech464', 'en', 1, 'https://ror.org/00hech464 The Ojai Foundation'),
(60117, 'https://ror.org/03naec835', 'en', 1, 'https://ror.org/03naec835 The Solomon Foundation'),
(60118, 'https://ror.org/0582awy59', 'en', 1, 'https://ror.org/0582awy59 Sparrow Thoracic Cardiovascular Institute'),
(60119, 'https://ror.org/03n2zvn26', 'en', 1, 'https://ror.org/03n2zvn26 United Healthcare Children''s Foundation'),
(60120, 'https://ror.org/04qm5g479', 'en', 1, 'https://ror.org/04qm5g479 Thought Field Therapy Foundation'),
(60121, 'https://ror.org/0385e6y24', 'en', 1, 'https://ror.org/0385e6y24 Urological Research Foundation'),
(60122, 'https://ror.org/04t03ph12', 'en', 1, 'https://ror.org/04t03ph12 Danish Agency for Institutions and Educational Grants'),
(60123, 'https://ror.org/00brfrj94', 'en', 1, 'https://ror.org/00brfrj94 Veterans for America'),
(60124, 'https://ror.org/032eyp751', 'en', 1, 'https://ror.org/032eyp751 Vietnamese Voluntary Foundation'),
(60125, 'https://ror.org/013t72710', 'en', 1, 'https://ror.org/013t72710 Windward Islands Research and Education Foundation'),
(60126, 'https://ror.org/0364jg040', 'en', 1, 'https://ror.org/0364jg040 Pure North'),
(60127, 'https://ror.org/050htcf02', 'en', 1, 'https://ror.org/050htcf02 Proliance Orthopedic Associates'),
(60128, 'https://ror.org/0305pf426', 'no_lang_code', 1, 'https://ror.org/0305pf426 Wadsworth Golf Construction Company (United States)'),
(60129, 'https://ror.org/04krek379', 'en', 1, 'https://ror.org/04krek379 Watching Over Mothers & Babies'),
(60130, 'https://ror.org/045d4st33', 'en', 1, 'https://ror.org/045d4st33 Yoga Science Foundation'),
(60131, 'https://ror.org/04ybb1s66', 'en', 1, 'https://ror.org/04ybb1s66 Foundation Van Goethem-Brichant'),
(60132, 'https://ror.org/04bvb7577', 'en', 1, 'https://ror.org/04bvb7577 WellMed Charitable Foundation'),
(60133, 'https://ror.org/00hz6qz36', 'en', 1, 'https://ror.org/00hz6qz36 Western States Endurance Run Foundation'),
(60134, 'https://ror.org/05pegpf07', 'en', 1, 'https://ror.org/05pegpf07 Western Orthopedics Foundation'),
(60135, 'https://ror.org/050782b52', 'no_lang_code', 1, 'https://ror.org/050782b52 A-SKIN (Netherlands)'),
(60136, 'https://ror.org/00vbx3555', 'en', 1, 'https://ror.org/00vbx3555 White Clover Wellness and Research Center'),
(60137, 'https://ror.org/0181jsv49', 'no_lang_code', 1, 'https://ror.org/0181jsv49 Cromsource (Netherlands)'),
(60138, 'https://ror.org/030nx8440', 'no_lang_code', 1, 'https://ror.org/030nx8440 A.S. Watson (Netherlands)'),
(60139, 'https://ror.org/05ea7a262', 'en', 1, 'https://ror.org/05ea7a262 Eat2Move'),
(60140, 'https://ror.org/02xb05b57', 'no_lang_code', 1, 'https://ror.org/02xb05b57 Crospon (Ireland)'),
(60141, 'https://ror.org/03qhzdc37', 'no_lang_code', 1, 'https://ror.org/03qhzdc37 Bühlmann (Switzerland)'),
(60142, 'https://ror.org/05fwtr092', 'nl', 1, 'https://ror.org/05fwtr092 Arbo Unie'),
(60143, 'https://ror.org/041a6v281', 'nl', 1, 'https://ror.org/041a6v281 Centrum Verslavings Onderzoek'),
(60144, 'https://ror.org/04m55rk62', 'no_lang_code', 1, 'https://ror.org/04m55rk62 Archipel Zorggroep (Netherlands)'),
(60145, 'https://ror.org/03rmatq71', 'nl', 1, 'https://ror.org/03rmatq71 CED Groep'),
(60146, 'https://ror.org/05jrbdv26', 'en', 1, 'https://ror.org/05jrbdv26 Expertise Center Vocational Education Expertisecentrum Beroepsonderwijs'),
(60147, 'https://ror.org/017ecm653', 'en', 1, 'https://ror.org/017ecm653 Academic Center for Evidence-Based Sports Medicine'),
(60148, 'https://ror.org/0452c3x52', 'nl', 1, 'https://ror.org/0452c3x52 D.H. Heijne Stichting'),
(60149, 'https://ror.org/052bwcm79', 'nl', 1, 'https://ror.org/052bwcm79 Capri Hartrevalidatie'),
(60150, 'https://ror.org/02x67gd16', 'no_lang_code', 1, 'https://ror.org/02x67gd16 CameraPil (Netherlands)'),
(60151, 'https://ror.org/00r83s510', 'nl', 1, 'https://ror.org/00r83s510 Virenze'),
(60152, 'https://ror.org/05d63m431', 'en', 1, 'https://ror.org/05d63m431 Carbohydrate Competence Center'),
(60153, 'https://ror.org/03tx1jp34', 'nl', 1, 'https://ror.org/03tx1jp34 De Forensische Zorgspecialisten'),
(60154, 'https://ror.org/02tgb3473', 'en', 1, 'https://ror.org/02tgb3473 Reach-Aut Academic Centre for Autism'),
(60155, 'https://ror.org/01xhgcw67', 'no_lang_code', 1, 'https://ror.org/01xhgcw67 De Friesland Zorgverzekeraar (Netherlands)'),
(60156, 'https://ror.org/04r5kab60', 'no_lang_code', 1, 'https://ror.org/04r5kab60 Arteg (Netherlands)'),
(60157, 'https://ror.org/01jrsap74', 'nl', 1, 'https://ror.org/01jrsap74 Stichting De Opbouw'),
(60158, 'https://ror.org/00y5txd68', 'no_lang_code', 1, 'https://ror.org/00y5txd68 Elfi-Tech (Israel)'),
(60159, 'https://ror.org/01fqyr702', 'nl', 1, 'https://ror.org/01fqyr702 De Twentse Zorgcentra'),
(60160, 'https://ror.org/03vjvtz41', 'no_lang_code', 1, 'https://ror.org/03vjvtz41 PronoKal Group (Spain)'),
(60161, 'https://ror.org/00dfdhy47', 'nl', 1, 'https://ror.org/00dfdhy47 Stichting Artrose Zorg'),
(60162, 'https://ror.org/03g9a1538', 'no_lang_code', 1, 'https://ror.org/03g9a1538 Embedded Fitness (Netherlands)'),
(60163, 'https://ror.org/05vgtss27', 'en', 1, 'https://ror.org/05vgtss27 C Care Orthopedics'),
(60164, 'https://ror.org/04wqn7h33', 'no_lang_code', 1, 'https://ror.org/04wqn7h33 AEGEA Medical (United States)'),
(60165, 'https://ror.org/013k8vr26', 'en', 1, 'https://ror.org/013k8vr26 Deltaplan Dementie Deltaplan dementia'),
(60166, 'https://ror.org/018wek193', 'no_lang_code', 1, 'https://ror.org/018wek193 The eNose (Netherlands)'),
(60167, 'https://ror.org/043mdy139', 'no_lang_code', 1, 'https://ror.org/043mdy139 Dentaid (Netherlands)'),
(60168, 'https://ror.org/01523c327', 'no_lang_code', 1, 'https://ror.org/01523c327 Centraal Ziekenfonds (Netherlands)'),
(60169, 'https://ror.org/02rycyg15', 'nl', 1, 'https://ror.org/02rycyg15 Depressie Vereniging'),
(60170, 'https://ror.org/02s8ewa53', 'no_lang_code', 1, 'https://ror.org/02s8ewa53 Hemics (Netherlands)'),
(60171, 'https://ror.org/04md5tc32', 'nl', 1, 'https://ror.org/04md5tc32 Entrea'),
(60172, 'https://ror.org/003n39s44', 'nl', 1, 'https://ror.org/003n39s44 Apotheek Haagse Ziekenhuizen Pharmacy Hague Hospital'),
(60173, 'https://ror.org/008a4xs91', 'en', 1, 'https://ror.org/008a4xs91 Alan Turing Institute Almere'),
(60174, 'https://ror.org/03ed6ba60', 'nl', 1, 'https://ror.org/03ed6ba60 Epilepsiefonds'),
(60175, 'https://ror.org/01qyj3s68', 'en', 1, 'https://ror.org/01qyj3s68 Koninklijke Nederlandse Atletiek Unie Royal Dutch Athletics Federation'),
(60176, 'https://ror.org/03n243a44', 'nl', 1, 'https://ror.org/03n243a44 Atria'),
(60177, 'https://ror.org/033zc3t08', 'nl', 1, 'https://ror.org/033zc3t08 Stichting Erasmus Trustfonds'),
(60178, 'https://ror.org/032vv2x86', 'nl', 1, 'https://ror.org/032vv2x86 Diapriva Diapriva Dialysezentrum Amsterdam'),
(60179, 'https://ror.org/05k9gkx37', 'nl', 1, 'https://ror.org/05k9gkx37 Erfelijke Stofwisselingsziekten Nederland'),
(60180, 'https://ror.org/010jxjq13', 'nl', 1, 'https://ror.org/010jxjq13 Dimence'),
(60181, 'https://ror.org/014ef6110', 'nl', 1, 'https://ror.org/014ef6110 Alexander Monro Ziekenhuis'),
(60182, 'https://ror.org/003meye08', 'en', 1, 'https://ror.org/003meye08 Avans+'),
(60183, 'https://ror.org/03p00z818', 'en', 1, 'https://ror.org/03p00z818 Dutch Lung Cancer Research Group'),
(60184, 'https://ror.org/0392bhy50', 'nl', 1, 'https://ror.org/0392bhy50 DOH Zorggroep'),
(60185, 'https://ror.org/01a2crk92', 'nl', 1, 'https://ror.org/01a2crk92 Dokter Izak Wessel Stichting'),
(60186, 'https://ror.org/007sjwq14', 'nl', 1, 'https://ror.org/007sjwq14 Dokter Wittenberg Stichting'),
(60187, 'https://ror.org/01qyj4j90', 'en', 1, 'https://ror.org/01qyj4j90 CityLab010'),
(60188, 'https://ror.org/03nx7mw09', 'no_lang_code', 1, 'https://ror.org/03nx7mw09 B. Braun (Netherlands)'),
(60189, 'https://ror.org/04c4nbz33', 'nl', 1, 'https://ror.org/04c4nbz33 AmbulanceZorg Rotterdam-Rijnmond'),
(60190, 'https://ror.org/01zacdj41', 'nl', 1, 'https://ror.org/01zacdj41 Amstelland Fysiotherapie'),
(60191, 'https://ror.org/00hbvz117', 'en', 1, 'https://ror.org/00hbvz117 Dutch Association for Regional Anesthesia'),
(60192, 'https://ror.org/0153zg311', 'no_lang_code', 1, 'https://ror.org/0153zg311 Bauerfeind (Netherlands)'),
(60193, 'https://ror.org/05qwpv987', 'nl', 1, 'https://ror.org/05qwpv987 VeiligheidNL'),
(60194, 'https://ror.org/00zbyrh97', 'nl', 1, 'https://ror.org/00zbyrh97 Bavo Stichting Heemstede'),
(60195, 'https://ror.org/05e2s1y16', 'no_lang_code', 1, 'https://ror.org/05e2s1y16 AngioDynamics (Netherlands)'),
(60196, 'https://ror.org/03bz8z424', 'nl', 1, 'https://ror.org/03bz8z424 Dystonie Vereniging'),
(60197, 'https://ror.org/02xztvm24', 'en', 1, 'https://ror.org/02xztvm24 Dutch Endovascular Alliance'),
(60198, 'https://ror.org/048bjga67', 'no_lang_code', 1, 'https://ror.org/048bjga67 Evalan (Netherlands)'),
(60199, 'https://ror.org/01442sk86', 'no_lang_code', 1, 'https://ror.org/01442sk86 Bayer (Netherlands)'),
(60200, 'https://ror.org/00cfpf441', 'nl', 1, 'https://ror.org/00cfpf441 Evean'),
(60201, 'https://ror.org/05wwhq151', 'de', 1, 'https://ror.org/05wwhq151 Technologiestiftung Berlin Technologiestiftung Innovationszentrum Berlin'),
(60202, 'https://ror.org/02bc7xp68', 'en', 1, 'https://ror.org/02bc7xp68 Dutch Healthcare Authority Nederlandse Zorgautoriteit'),
(60203, 'https://ror.org/009v0hs75', 'nl', 1, 'https://ror.org/009v0hs75 Stichting Bergh in het Zadel'),
(60204, 'https://ror.org/04zmc7w78', 'en', 1, 'https://ror.org/04zmc7w78 Netherlands Nutrition Centre Stichting Voedingscentrum'),
(60205, 'https://ror.org/01bqsaw31', 'en', 1, 'https://ror.org/01bqsaw31 Parkwood Institute'),
(60206, 'https://ror.org/0598b8w92', 'nl', 1, 'https://ror.org/0598b8w92 Nederlandse Vereniging voor Hepatologie'),
(60207, 'https://ror.org/05qce6816', 'no_lang_code', 1, 'https://ror.org/05qce6816 BioClin (Netherlands)'),
(60208, 'https://ror.org/028248q44', 'nl', 1, 'https://ror.org/028248q44 Nederlandse Vereniging van Podotherapeuten'),
(60209, 'https://ror.org/04kcgyj43', 'en', 1, 'https://ror.org/04kcgyj43 The Microsoft Research - University of Trento Centre for Computational and Systems Biology'),
(60210, 'https://ror.org/04ja13179', 'no_lang_code', 1, 'https://ror.org/04ja13179 AQLANE Medical (Netherlands)'),
(60211, 'https://ror.org/05hcyxs26', 'nl', 1, 'https://ror.org/05hcyxs26 Fietsersbond'),
(60212, 'https://ror.org/034k8cv93', 'no_lang_code', 1, 'https://ror.org/034k8cv93 Zimmer Biomet (Netherlands)'),
(60213, 'https://ror.org/00mw0j492', 'en', 1, 'https://ror.org/00mw0j492 Fit Kids Foundation'),
(60214, 'https://ror.org/059rjv992', 'no_lang_code', 1, 'https://ror.org/059rjv992 EarlySense (Israel)'),
(60215, 'https://ror.org/04318hx17', 'nl', 1, 'https://ror.org/04318hx17 Antes'),
(60216, 'https://ror.org/00yvav781', 'no_lang_code', 1, 'https://ror.org/00yvav781 FluxPlus (Netherlands)'),
(60217, 'https://ror.org/05grjt380', 'no_lang_code', 1, 'https://ror.org/05grjt380 Focal Meditech (Netherlands)'),
(60218, 'https://ror.org/01mm9kz68', 'no_lang_code', 1, 'https://ror.org/01mm9kz68 GD Medical Pharma (Netherlands)'),
(60219, 'https://ror.org/01ks64q75', 'no_lang_code', 1, 'https://ror.org/01ks64q75 BIRR (Netherlands)'),
(60220, 'https://ror.org/01cwg1p04', 'en', 1, 'https://ror.org/01cwg1p04 Foundation Centrum ''45 Stichting Centrum ''45'),
(60221, 'https://ror.org/01xazqf25', 'nl', 1, 'https://ror.org/01xazqf25 Geriant'),
(60222, 'https://ror.org/01j5rwt89', 'en', 1, 'https://ror.org/01j5rwt89 Influenza Foundation of Thailand ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ąøŖą¹ˆąø‡ą¹€ąøŖąø“ąø£ąø”ąøąø²ąø£ąøØąø¶ąøąø©ąø²ą¹„ąø‚ą¹‰ąø«ąø§ąø±ąø”ą¹ƒąø«ąøą¹ˆ'),
(60223, 'https://ror.org/01tx2e407', 'nl', 1, 'https://ror.org/01tx2e407 Vlaams Agentschap Zorg en Gezondheid'),
(60224, 'https://ror.org/03h83vk17', 'fr', 1, 'https://ror.org/03h83vk17 Ministère De La Santé'),
(60225, 'https://ror.org/04jntfm70', 'de', 1, 'https://ror.org/04jntfm70 Deutsche Lepra- und Tuberkulosehilfe'),
(60226, 'https://ror.org/00c9v5g25', 'nl', 1, 'https://ror.org/00c9v5g25 Stichting FORCE'),
(60227, 'https://ror.org/02fyhvd52', 'nl', 1, 'https://ror.org/02fyhvd52 Fonds de Gavere'),
(60228, 'https://ror.org/00dkp4z50', 'nl', 1, 'https://ror.org/00dkp4z50 GGD Rotterdam-Rijnmond Gemeentelijke gezondheidsdienst Rotterdam-Rijnmond'),
(60229, 'https://ror.org/042s2nd27', 'nl', 1, 'https://ror.org/042s2nd27 GGD Zeeland Gemeentelijke gezondheidsdienst Zeeland'),
(60230, 'https://ror.org/04ms2sw50', 'nl', 1, 'https://ror.org/04ms2sw50 Dienst Gezondheid & Jeugd'),
(60231, 'https://ror.org/02kj9za59', 'nl', 1, 'https://ror.org/02kj9za59 GGD West-Brabant Gemeentelijke gezondheidsdienst West-Brabant'),
(60232, 'https://ror.org/00ysd3163', 'nl', 1, 'https://ror.org/00ysd3163 Fonds voor het Hart'),
(60233, 'https://ror.org/00394zv26', 'en', 1, 'https://ror.org/00394zv26 Department of Disease Control'),
(60234, 'https://ror.org/01nsg2f90', 'nl', 1, 'https://ror.org/01nsg2f90 Robuust'),
(60235, 'https://ror.org/00zdfr649', 'nl', 1, 'https://ror.org/00zdfr649 Stichting Zonnige Jeugd'),
(60236, 'https://ror.org/056v13058', 'nl', 1, 'https://ror.org/056v13058 Fonds Verstandelijk Gehandicapten'),
(60237, 'https://ror.org/04c0z9s56', 'nl', 1, 'https://ror.org/04c0z9s56 GGZ Delfland'),
(60238, 'https://ror.org/05g52s684', 'nl', 1, 'https://ror.org/05g52s684 Kijvelanden'),
(60239, 'https://ror.org/02xjdnj70', 'nl', 1, 'https://ror.org/02xjdnj70 Amstelring'),
(60240, 'https://ror.org/01kmd8x15', 'nl', 1, 'https://ror.org/01kmd8x15 Oostvaarderskliniek'),
(60241, 'https://ror.org/00b3xjw51', 'nl', 1, 'https://ror.org/00b3xjw51 GGZ Noord-Holland-Noord'),
(60242, 'https://ror.org/00354aw77', 'no_lang_code', 1, 'https://ror.org/00354aw77 Bristol-Myers Squibb (Netherlands)'),
(60243, 'https://ror.org/00byb9q66', 'no_lang_code', 1, 'https://ror.org/00byb9q66 Fractyl (United States)'),
(60244, 'https://ror.org/03ph8dz38', 'nl', 1, 'https://ror.org/03ph8dz38 GGZ Westelijk Noord-Brabant'),
(60245, 'https://ror.org/05atcw115', 'no_lang_code', 1, 'https://ror.org/05atcw115 GlaxoSmithKline (Netherlands)'),
(60246, 'https://ror.org/01x4thh14', 'en', 1, 'https://ror.org/01x4thh14 CR2O'),
(60247, 'https://ror.org/01j0j2s89', 'nl', 1, 'https://ror.org/01j0j2s89 Zeeuws Hand & Pols Centrum'),
(60248, 'https://ror.org/04g22a016', 'en', 1, 'https://ror.org/04g22a016 Vision Research ROPARD Foundation'),
(60249, 'https://ror.org/0492chx91', 'en', 1, 'https://ror.org/0492chx91 Go4children'),
(60250, 'https://ror.org/03n3g7r56', 'no_lang_code', 1, 'https://ror.org/03n3g7r56 Goodlife (Netherlands)'),
(60251, 'https://ror.org/05mpph804', 'no_lang_code', 1, 'https://ror.org/05mpph804 Frisian Flag (Indonesia)'),
(60252, 'https://ror.org/0204aj955', 'nl', 1, 'https://ror.org/0204aj955 Gouverneur Kremers Centrum'),
(60253, 'https://ror.org/02hp0cc95', 'en', 1, 'https://ror.org/02hp0cc95 Health & Motion'),
(60254, 'https://ror.org/042xwgm79', 'nl', 1, 'https://ror.org/042xwgm79 Fysio Schambergen'),
(60255, 'https://ror.org/01s361a76', 'no_lang_code', 1, 'https://ror.org/01s361a76 Boston Scientific (Belgium)'),
(60256, 'https://ror.org/04wpjg525', 'en', 1, 'https://ror.org/04wpjg525 Food & Nutrition'),
(60257, 'https://ror.org/031m0hs53', 'en', 1, 'https://ror.org/031m0hs53 Commit'),
(60258, 'https://ror.org/004xe4a74', 'no_lang_code', 1, 'https://ror.org/004xe4a74 Fyzzio (Netherlands)'),
(60259, 'https://ror.org/01bcv2838', 'no_lang_code', 1, 'https://ror.org/01bcv2838 Haemonetics (Netherlands)'),
(60260, 'https://ror.org/03qjsg132', 'no_lang_code', 1, 'https://ror.org/03qjsg132 Gadeta (Netherlands)'),
(60261, 'https://ror.org/0015kmr33', 'nl', 1, 'https://ror.org/0015kmr33 OHRA Onderlinge ziektekostenverzekeringsfonds van Hoogere RijksAmbtenaren'),
(60262, 'https://ror.org/04xg9g962', 'nl', 1, 'https://ror.org/04xg9g962 Condite'),
(60263, 'https://ror.org/03vkbjy63', 'nl', 1, 'https://ror.org/03vkbjy63 Conrisq Groep'),
(60264, 'https://ror.org/02pd5tw33', 'en', 1, 'https://ror.org/02pd5tw33 Kenniscentrum Sport Knowledge Centre for Sport Netherlands'),
(60265, 'https://ror.org/04488aw82', 'no_lang_code', 1, 'https://ror.org/04488aw82 Kellogg’s (Belgium)'),
(60266, 'https://ror.org/047qv2c31', 'no_lang_code', 1, 'https://ror.org/047qv2c31 Mammoet (Netherlands)'),
(60267, 'https://ror.org/007b8s847', 'nl', 1, 'https://ror.org/007b8s847 GGD Haaglanden Gemeentelijke gezondheidsdienst Haaglanden'),
(60268, 'https://ror.org/04abjbr81', 'da', 1, 'https://ror.org/04abjbr81 Danish Agency for Labour Market and Recruitment Styrelsen for Arbejdsmarked og Rekruttering'),
(60269, 'https://ror.org/04eqf2x52', 'no_lang_code', 1, 'https://ror.org/04eqf2x52 Heelkunde Friesland (Netherlands)'),
(60270, 'https://ror.org/03x67yw88', 'nl', 1, 'https://ror.org/03x67yw88 Orthopedie Groot Eindhoven'),
(60271, 'https://ror.org/04g9szr12', 'nl', 1, 'https://ror.org/04g9szr12 Marti-Keuning Eckhardt Stichting'),
(60272, 'https://ror.org/033zx3z52', 'nl', 1, 'https://ror.org/033zx3z52 Kennisinstituut Bier'),
(60273, 'https://ror.org/011rkqa43', 'no_lang_code', 1, 'https://ror.org/011rkqa43 Nano-Ditech (United States)'),
(60274, 'https://ror.org/05bmt9g57', 'no_lang_code', 1, 'https://ror.org/05bmt9g57 Hero Benelux (Netherlands)'),
(60275, 'https://ror.org/046dq9976', 'nl', 1, 'https://ror.org/046dq9976 Cordaid'),
(60276, 'https://ror.org/05321n235', 'nl', 1, 'https://ror.org/05321n235 Kenter Jeugdhulp'),
(60277, 'https://ror.org/00vj56071', 'no_lang_code', 1, 'https://ror.org/00vj56071 Mathys (Netherlands)'),
(60278, 'https://ror.org/0460chp58', 'en', 1, 'https://ror.org/0460chp58 Nationaal Initiatief Hersenen & Cognitie National Initiative Brain & Cognition'),
(60279, 'https://ror.org/04v6y1533', 'nl', 1, 'https://ror.org/04v6y1533 Maurits en Anna de Kock Stichting'),
(60280, 'https://ror.org/054d83h93', 'nl', 1, 'https://ror.org/054d83h93 Cornelia-Stichting'),
(60281, 'https://ror.org/03g7v9982', 'nl', 1, 'https://ror.org/03g7v9982 HilverZorg'),
(60282, 'https://ror.org/030kv0w79', 'nl', 1, 'https://ror.org/030kv0w79 Medisch Coƶrdinerend Centrum Omnes'),
(60283, 'https://ror.org/02qw11p11', 'no_lang_code', 1, 'https://ror.org/02qw11p11 Hollister (Germany)'),
(60284, 'https://ror.org/028fe5j11', 'no_lang_code', 1, 'https://ror.org/028fe5j11 Halyard (United Kingdom)'),
(60285, 'https://ror.org/04fb0r664', 'en', 1, 'https://ror.org/04fb0r664 National Foundation for the Elderly Stichting Nationaal Ouderenfonds'),
(60286, 'https://ror.org/03s453j88', 'no_lang_code', 1, 'https://ror.org/03s453j88 Cristal Therapeutics (Netherlands)'),
(60287, 'https://ror.org/02drjk215', 'no_lang_code', 1, 'https://ror.org/02drjk215 NestlƩ (Netherlands)'),
(60288, 'https://ror.org/02258bk69', 'nl', 1, 'https://ror.org/02258bk69 Kliniek ViaSana'),
(60289, 'https://ror.org/04ctmwv54', 'nl', 1, 'https://ror.org/04ctmwv54 MeanderGroep Zuid-Limburg'),
(60290, 'https://ror.org/02hcvyf40', 'nl', 1, 'https://ror.org/02hcvyf40 HSK Groep'),
(60291, 'https://ror.org/01mgbxm56', 'nl', 1, 'https://ror.org/01mgbxm56 Kliniek voor Parodontologie Rotterdam'),
(60292, 'https://ror.org/03meq3766', 'nl', 1, 'https://ror.org/03meq3766 Stichting OFOM'),
(60293, 'https://ror.org/034nhtc63', 'nl', 1, 'https://ror.org/034nhtc63 Oogvereniging The Eye Association Netherlands'),
(60294, 'https://ror.org/00gtzdm25', 'nl', 1, 'https://ror.org/00gtzdm25 Natuur- en GezondheidsProducten Nederland'),
(60295, 'https://ror.org/02tj1ha51', 'no_lang_code', 1, 'https://ror.org/02tj1ha51 Ophtec (Netherlands)'),
(60296, 'https://ror.org/03ktrr903', 'no_lang_code', 1, 'https://ror.org/03ktrr903 Hu-Friedy (United States)'),
(60297, 'https://ror.org/03b7e6556', 'no_lang_code', 1, 'https://ror.org/03b7e6556 Nea International (Netherlands)'),
(60298, 'https://ror.org/057a13j38', 'nl', 1, 'https://ror.org/057a13j38 Mediant Geestelijke Gezondheidszorg'),
(60299, 'https://ror.org/033zmys03', 'nl', 1, 'https://ror.org/033zmys03 Nederlands Astmacentrum Davos'),
(60300, 'https://ror.org/02162rn53', 'en', 1, 'https://ror.org/02162rn53 Koninklijke Nederlandse Organisatie van Verloskundigen Royal Dutch Organization of Midwives'),
(60301, 'https://ror.org/02a1s0g57', 'nl', 1, 'https://ror.org/02a1s0g57 Huis voor de Zorg'),
(60302, 'https://ror.org/057ybbc09', 'no_lang_code', 1, 'https://ror.org/057ybbc09 N. V. Pharma (India)'),
(60303, 'https://ror.org/04p56b975', 'no_lang_code', 1, 'https://ror.org/04p56b975 Medimate (Netherlands)'),
(60304, 'https://ror.org/0357qk965', 'nl', 1, 'https://ror.org/0357qk965 Huisartsen Oostelijk Zuid Limburg'),
(60305, 'https://ror.org/056vah748', 'nl', 1, 'https://ror.org/056vah748 Federatie Medisch Specialisten'),
(60306, 'https://ror.org/048qt5n54', 'nl', 1, 'https://ror.org/048qt5n54 Koninklijke Nederlandse Klim- en Bergsport Vereniging'),
(60307, 'https://ror.org/01y36r136', 'no_lang_code', 1, 'https://ror.org/01y36r136 Orthica (Netherlands)'),
(60308, 'https://ror.org/04ph6g561', 'no_lang_code', 1, 'https://ror.org/04ph6g561 Brocacef Groep (Netherlands)'),
(60309, 'https://ror.org/018q2vm69', 'no_lang_code', 1, 'https://ror.org/018q2vm69 MediRisk (Netherlands)'),
(60310, 'https://ror.org/03en95y37', 'nl', 1, 'https://ror.org/03en95y37 Merem'),
(60311, 'https://ror.org/04e53cd15', 'nl', 1, 'https://ror.org/04e53cd15 Nederlandse Obesitas Kliniek'),
(60312, 'https://ror.org/02dn5sb95', 'no_lang_code', 1, 'https://ror.org/02dn5sb95 Medivis (Italy)'),
(60313, 'https://ror.org/043dpra13', 'no_lang_code', 1, 'https://ror.org/043dpra13 Eurocept Groep Eurocept Group (Netherlands)'),
(60314, 'https://ror.org/006gr2m12', 'nl', 1, 'https://ror.org/006gr2m12 Nederlandse Vereniging van Orthodontisten'),
(60315, 'https://ror.org/02ndam774', 'no_lang_code', 1, 'https://ror.org/02ndam774 Medspray (Netherlands)'),
(60316, 'https://ror.org/02v1bhf02', 'nl', 1, 'https://ror.org/02v1bhf02 Nederlandse Vereniging voor Acupunctuur'),
(60317, 'https://ror.org/04dm9th67', 'nl', 1, 'https://ror.org/04dm9th67 Nederlandse Vereniging voor Heelkunde'),
(60318, 'https://ror.org/00g49cs57', 'nl', 1, 'https://ror.org/00g49cs57 Mentaal Beter');
INSERT INTO `rors` VALUES
(60319, 'https://ror.org/059gs6g36', 'en', 1, 'https://ror.org/059gs6g36 KSYOS TeleMedical Centre KSYOS TeleMedisch Centrum'),
(60320, 'https://ror.org/04cjq4e24', 'nl', 1, 'https://ror.org/04cjq4e24 Nederlandse Vereniging voor Reumatologie'),
(60321, 'https://ror.org/010vx8x83', 'no_lang_code', 1, 'https://ror.org/010vx8x83 Menzis (Netherlands)'),
(60322, 'https://ror.org/01wjwqr61', 'nl', 1, 'https://ror.org/01wjwqr61 Innofeet Voetencentrum Nijenhuis'),
(60323, 'https://ror.org/05sj77784', 'en', 1, 'https://ror.org/05sj77784 Dutch Hospital Association'),
(60324, 'https://ror.org/012chae64', 'no_lang_code', 1, 'https://ror.org/012chae64 Merck (Netherlands)'),
(60325, 'https://ror.org/04dz2w781', 'no_lang_code', 1, 'https://ror.org/04dz2w781 Nemo Healthcare (Netherlands)'),
(60326, 'https://ror.org/03c8kfz86', 'no_lang_code', 1, 'https://ror.org/03c8kfz86 Innopastry (Netherlands)'),
(60327, 'https://ror.org/02crgsc42', 'no_lang_code', 1, 'https://ror.org/02crgsc42 Innospense (Netherlands)'),
(60328, 'https://ror.org/05a8epj20', 'en', 1, 'https://ror.org/05a8epj20 Pension Fund for Care and Well-Being Stichting Pensioenfonds Zorg en Welzijn'),
(60329, 'https://ror.org/047b6h508', 'no_lang_code', 1, 'https://ror.org/047b6h508 Lamepro Benelux (Netherlands)'),
(60330, 'https://ror.org/00pfepj55', 'no_lang_code', 1, 'https://ror.org/00pfepj55 Metrisquare (Netherlands)'),
(60331, 'https://ror.org/04qh1sk44', 'en', 1, 'https://ror.org/04qh1sk44 Stoke Mandeville Spinal Research'),
(60332, 'https://ror.org/053p3br36', 'no_lang_code', 1, 'https://ror.org/053p3br36 PharmaJet (United States)'),
(60333, 'https://ror.org/02braec51', 'en', 1, 'https://ror.org/02braec51 Dutch Expert Centre for Screening Landelijk ReferentieCentrum voor Bevolkingsonderzoek'),
(60334, 'https://ror.org/00qxws716', 'en', 1, 'https://ror.org/00qxws716 InnoSportLab'),
(60335, 'https://ror.org/0230gcj41', 'nl', 1, 'https://ror.org/0230gcj41 Phelps Stichting voor Spastici'),
(60336, 'https://ror.org/051y5hr89', 'no_lang_code', 1, 'https://ror.org/051y5hr89 Landsbond der Christelijke Mutualiteiten (Belgium)'),
(60337, 'https://ror.org/04gv1ap07', 'nl', 1, 'https://ror.org/04gv1ap07 Nederlandse Vereniging van Artsen voor Musculoskeletale Geneeskunde'),
(60338, 'https://ror.org/01d2t6428', 'nl', 1, 'https://ror.org/01d2t6428 Laurens'),
(60339, 'https://ror.org/04g1f3s05', 'nl', 1, 'https://ror.org/04g1f3s05 Gemeente Leiden'),
(60340, 'https://ror.org/05vxg1z76', 'no_lang_code', 1, 'https://ror.org/05vxg1z76 Physeon (Switzerland)'),
(60341, 'https://ror.org/05dwehn62', 'no_lang_code', 1, 'https://ror.org/05dwehn62 Physiol (Belgium)'),
(60342, 'https://ror.org/04qnj3s85', 'en', 1, 'https://ror.org/04qnj3s85 InSpine'),
(60343, 'https://ror.org/038kt0m24', 'nl', 1, 'https://ror.org/038kt0m24 Lelie Zorggroep'),
(60344, 'https://ror.org/01ydthg97', 'en', 1, 'https://ror.org/01ydthg97 Nijmegen Institute for Scientist Practitioners in Addiction'),
(60345, 'https://ror.org/043e6bd18', 'nl', 1, 'https://ror.org/043e6bd18 NIM Maatschappelijk Werk'),
(60346, 'https://ror.org/05hnxef10', 'no_lang_code', 1, 'https://ror.org/05hnxef10 NinePoint Medical (United States)'),
(60347, 'https://ror.org/00vkpdt16', 'nl', 1, 'https://ror.org/00vkpdt16 Movisie'),
(60348, 'https://ror.org/04htftw90', 'no_lang_code', 1, 'https://ror.org/04htftw90 Pluryn'),
(60349, 'https://ror.org/00mptwf92', 'en', 1, 'https://ror.org/00mptwf92 MS4 Research Institute'),
(60350, 'https://ror.org/01scra789', 'nl', 1, 'https://ror.org/01scra789 Instituut voor Positieve Psychologie'),
(60351, 'https://ror.org/03exh6913', 'nl', 1, 'https://ror.org/03exh6913 Podocentrum Alkmaar'),
(60352, 'https://ror.org/04zs9v841', 'no_lang_code', 1, 'https://ror.org/04zs9v841 Multi Electrical System (Suriname)'),
(60353, 'https://ror.org/01tm5k604', 'nl', 1, 'https://ror.org/01tm5k604 Treant Zorggroep'),
(60354, 'https://ror.org/037tym531', 'no_lang_code', 1, 'https://ror.org/037tym531 InterMed (United States)'),
(60355, 'https://ror.org/0182mv832', 'nl', 1, 'https://ror.org/0182mv832 Multiple Sclerose Vereniging Nederland'),
(60356, 'https://ror.org/044g5sj75', 'nl', 1, 'https://ror.org/044g5sj75 Departement Cultuur, Jeugd en Media'),
(60357, 'https://ror.org/021hkh665', 'no_lang_code', 1, 'https://ror.org/021hkh665 Polyganics (Netherlands)'),
(60358, 'https://ror.org/01an3vn51', 'no_lang_code', 1, 'https://ror.org/01an3vn51 MDxHealth (Netherlands)'),
(60359, 'https://ror.org/03naar428', 'nl', 1, 'https://ror.org/03naar428 Postmaster Psychologie Opleidingen'),
(60360, 'https://ror.org/057r0z941', 'nl', 1, 'https://ror.org/057r0z941 Praktijkondersteuning Zuidoost-Brabant'),
(60361, 'https://ror.org/04sce8194', 'nl', 1, 'https://ror.org/04sce8194 Praktikon'),
(60362, 'https://ror.org/05eqpm581', 'no_lang_code', 1, 'https://ror.org/05eqpm581 LINK (Netherlands)'),
(60363, 'https://ror.org/020sarg10', 'nl', 1, 'https://ror.org/020sarg10 Stichting Stimuleringsfonds Rouw'),
(60364, 'https://ror.org/04vz2j713', 'no_lang_code', 1, 'https://ror.org/04vz2j713 Interpolis (Netherlands)'),
(60365, 'https://ror.org/00xe2gs46', 'nl', 1, 'https://ror.org/00xe2gs46 Stichting Artsenlaboratorium en Trombosedienst'),
(60366, 'https://ror.org/05nvt9206', 'no_lang_code', 1, 'https://ror.org/05nvt9206 NutriLeads (Netherlands)'),
(60367, 'https://ror.org/035thvx71', 'nl', 1, 'https://ror.org/035thvx71 Proteion'),
(60368, 'https://ror.org/018g01631', 'de', 1, 'https://ror.org/018g01631 Salus Klinik'),
(60369, 'https://ror.org/01crhqr30', 'nl', 1, 'https://ror.org/01crhqr30 Ipse de Bruggen'),
(60370, 'https://ror.org/02nr63q87', 'en', 1, 'https://ror.org/02nr63q87 Psychotherapy & Movement'),
(60371, 'https://ror.org/04tg2rn58', 'no_lang_code', 1, 'https://ror.org/04tg2rn58 IQ Medical Ventures (Netherlands)'),
(60372, 'https://ror.org/05x6vad86', 'en', 1, 'https://ror.org/05x6vad86 Save by Seva Foundation Stichting Save by Seva'),
(60373, 'https://ror.org/02fxhk514', 'nl', 1, 'https://ror.org/02fxhk514 Nederlandse Vereniging voor Plastische Chirurgie'),
(60374, 'https://ror.org/02axh0j46', 'nl', 1, 'https://ror.org/02axh0j46 PsyQ'),
(60375, 'https://ror.org/015nq5b13', 'nl', 1, 'https://ror.org/015nq5b13 Nederlandse Ski Vereniging'),
(60376, 'https://ror.org/03z4x4n61', 'no_lang_code', 1, 'https://ror.org/03z4x4n61 Lysosomal Therapeutics (United States)'),
(60377, 'https://ror.org/04wnnpk31', 'no_lang_code', 1, 'https://ror.org/04wnnpk31 Pulmonx (United States)'),
(60378, 'https://ror.org/012m0jg51', 'nl', 1, 'https://ror.org/012m0jg51 Instituut voor Verantwoord Medicijngebruik'),
(60379, 'https://ror.org/0516ccm91', 'no_lang_code', 1, 'https://ror.org/0516ccm91 OIM Orthopedie (Netherlands)'),
(60380, 'https://ror.org/055vbz424', 'no_lang_code', 1, 'https://ror.org/055vbz424 Score (Netherlands)'),
(60381, 'https://ror.org/009cq8s89', 'no_lang_code', 1, 'https://ror.org/009cq8s89 Olympus (Netherlands)'),
(60382, 'https://ror.org/042yqf226', 'nl', 1, 'https://ror.org/042yqf226 Sint Maartenskliniek'),
(60383, 'https://ror.org/01574pc21', 'no_lang_code', 1, 'https://ror.org/01574pc21 Ferring LƤkemedel (Sweden)'),
(60384, 'https://ror.org/0215ym372', 'no_lang_code', 1, 'https://ror.org/0215ym372 Sense Textile (Netherlands)'),
(60385, 'https://ror.org/03w498803', 'en', 1, 'https://ror.org/03w498803 IVO Addiction Research Institute'),
(60386, 'https://ror.org/048a4sn26', 'nl', 1, 'https://ror.org/048a4sn26 Stichting Adriaan Metius'),
(60387, 'https://ror.org/05cej7184', 'nl', 1, 'https://ror.org/05cej7184 SIDN Fonds'),
(60388, 'https://ror.org/02xqfym19', 'nl', 1, 'https://ror.org/02xqfym19 Stichting Afasie Nederland'),
(60389, 'https://ror.org/01htfbe02', 'en', 1, 'https://ror.org/01htfbe02 Sight and Life'),
(60390, 'https://ror.org/054svy457', 'no_lang_code', 1, 'https://ror.org/054svy457 SilverFit (Netherlands)'),
(60391, 'https://ror.org/01are8h73', 'nl', 1, 'https://ror.org/01are8h73 Regio Gooi en Vechtstreek'),
(60392, 'https://ror.org/03fd2y933', 'nl', 1, 'https://ror.org/03fd2y933 Stichting Agis Zorginnovatiefonds'),
(60393, 'https://ror.org/0540d1y92', 'nl', 1, 'https://ror.org/0540d1y92 AO Nederland'),
(60394, 'https://ror.org/02jky7c94', 'no_lang_code', 1, 'https://ror.org/02jky7c94 SkƄnemejerier (Sweden)'),
(60395, 'https://ror.org/00m3p9e86', 'nl', 1, 'https://ror.org/00m3p9e86 Stichting Semmy'),
(60396, 'https://ror.org/04t5qmm38', 'nl', 1, 'https://ror.org/04t5qmm38 Agora'),
(60397, 'https://ror.org/02nmj4h80', 'en', 1, 'https://ror.org/02nmj4h80 Roessingh Concern'),
(60398, 'https://ror.org/04p16rp27', 'no_lang_code', 1, 'https://ror.org/04p16rp27 Slow Control (France)'),
(60399, 'https://ror.org/034a28j20', 'no_lang_code', 1, 'https://ror.org/034a28j20 Smith & Nephew (Switzerland)'),
(60400, 'https://ror.org/0164nmw44', 'en', 1, 'https://ror.org/0164nmw44 AGIS'),
(60401, 'https://ror.org/00jaff906', 'no_lang_code', 1, 'https://ror.org/00jaff906 Surgimab (France)'),
(60402, 'https://ror.org/02dsghr34', 'no_lang_code', 1, 'https://ror.org/02dsghr34 Happiest Baby (United States)'),
(60403, 'https://ror.org/01jbeyb43', 'en', 1, 'https://ror.org/01jbeyb43 SPRINT'),
(60404, 'https://ror.org/03pp2ae67', 'nl', 1, 'https://ror.org/03pp2ae67 Surinaamse Postspaarbank'),
(60405, 'https://ror.org/04v5fn795', 'nl', 1, 'https://ror.org/04v5fn795 Stichting Apotheek der Haarlemse Ziekenhuizen'),
(60406, 'https://ror.org/00q6rn894', 'nl', 1, 'https://ror.org/00q6rn894 Stichting Urologisch Wetenschappelijk Onderzoek'),
(60407, 'https://ror.org/04e796m94', 'fr', 1, 'https://ror.org/04e796m94 SociƩtƩ Francophone Posture Equilibre Locomotion'),
(60408, 'https://ror.org/01qvdp131', 'no_lang_code', 1, 'https://ror.org/01qvdp131 Solace Therapeutics (United States)'),
(60409, 'https://ror.org/001hc9y40', 'no_lang_code', 1, 'https://ror.org/001hc9y40 ResMed (Netherlands)'),
(60410, 'https://ror.org/03za4at61', 'nl', 1, 'https://ror.org/03za4at61 Nationaal MS Fonds'),
(60411, 'https://ror.org/04byjbp28', 'nl', 1, 'https://ror.org/04byjbp28 Centrum Aquamarijn'),
(60412, 'https://ror.org/01erpqc93', 'nl', 1, 'https://ror.org/01erpqc93 Revalidatie Nederland'),
(60413, 'https://ror.org/02qpd5a14', 'nl', 1, 'https://ror.org/02qpd5a14 Volandis'),
(60414, 'https://ror.org/00740sw32', 'en', 1, 'https://ror.org/00740sw32 Asklepios Foundation'),
(60415, 'https://ror.org/03m7jfm83', 'nl', 1, 'https://ror.org/03m7jfm83 Sophia Revalidatie'),
(60416, 'https://ror.org/00ccsy875', 'nl', 1, 'https://ror.org/00ccsy875 Tante Louise'),
(60417, 'https://ror.org/03b60ep93', 'nl', 1, 'https://ror.org/03b60ep93 Stichting Bio Stichting Bio Kinderrevalidatie'),
(60418, 'https://ror.org/04qc37m11', 'no_lang_code', 1, 'https://ror.org/04qc37m11 TeamAlert'),
(60419, 'https://ror.org/036qh7831', 'nl', 1, 'https://ror.org/036qh7831 Revant medisch specialistische revalidatie'),
(60420, 'https://ror.org/058x0nn53', 'nl', 1, 'https://ror.org/058x0nn53 Centrum Oosterwal'),
(60421, 'https://ror.org/05fnnp231', 'no_lang_code', 1, 'https://ror.org/05fnnp231 Revive Therapeutics (Canada)'),
(60422, 'https://ror.org/01w48gk31', 'nl', 1, 'https://ror.org/01w48gk31 Lange Land Ziekenhuis'),
(60423, 'https://ror.org/02wmkpz59', 'nl', 1, 'https://ror.org/02wmkpz59 Sport Medisch Centrum Papendal'),
(60424, 'https://ror.org/04jxcha86', 'nl', 1, 'https://ror.org/04jxcha86 Stichting Vooruit'),
(60425, 'https://ror.org/059gavv29', 'nl', 1, 'https://ror.org/059gavv29 Rijnlands Revalidatie Centrum'),
(60426, 'https://ror.org/03t8qvt86', 'en', 1, 'https://ror.org/03t8qvt86 Team Westland'),
(60427, 'https://ror.org/030zk4850', 'nl', 1, 'https://ror.org/030zk4850 RINO Zuid'),
(60428, 'https://ror.org/02a0z8v73', 'nl', 1, 'https://ror.org/02a0z8v73 Stichting de Verre Bergen'),
(60429, 'https://ror.org/052c2ng98', 'nl', 1, 'https://ror.org/052c2ng98 ROC Leeuwenborgh'),
(60430, 'https://ror.org/04jfsvb44', 'nl', 1, 'https://ror.org/04jfsvb44 Star Medisch Diagnostisch Centrum'),
(60431, 'https://ror.org/03k261948', 'nl', 1, 'https://ror.org/03k261948 Roessingh, Centrum voor Revalidatie'),
(60432, 'https://ror.org/05xzd4n85', 'nl', 1, 'https://ror.org/05xzd4n85 Stichting Roomsch Catholyk Oude Armen kantoor'),
(60433, 'https://ror.org/05j0e3q89', 'en', 1, 'https://ror.org/05j0e3q89 Roparun Foundation Stichting Roparun'),
(60434, 'https://ror.org/02s6t9r74', 'no_lang_code', 1, 'https://ror.org/02s6t9r74 Teva Pharmaceuticals (Netherlands)'),
(60435, 'https://ror.org/04whgpk43', 'nl', 1, 'https://ror.org/04whgpk43 Brijder Brijder Verslavingszorg'),
(60436, 'https://ror.org/05pabx459', 'nl', 1, 'https://ror.org/05pabx459 STECR'),
(60437, 'https://ror.org/01k2ap794', 'nl', 1, 'https://ror.org/01k2ap794 Stichting Zorgondersteuningsfonds'),
(60438, 'https://ror.org/03czygt47', 'nl', 1, 'https://ror.org/03czygt47 Stichting Gereformeerd of Burgerweeshuis te Haarlem'),
(60439, 'https://ror.org/00qmvv685', 'nl', 1, 'https://ror.org/00qmvv685 Stichting Emmafonds'),
(60440, 'https://ror.org/03tdgzq48', 'nl', 1, 'https://ror.org/03tdgzq48 Vrienden van het Sophia'),
(60441, 'https://ror.org/02cwrcd13', 'nl', 1, 'https://ror.org/02cwrcd13 Stichting Gezondheidscentra Eindhoven'),
(60442, 'https://ror.org/0029ghb74', 'nl', 1, 'https://ror.org/0029ghb74 Stichting Vrienden van het Hart'),
(60443, 'https://ror.org/04w0g9c06', 'no_lang_code', 1, 'https://ror.org/04w0g9c06 RR Mechatronics (Netherlands)'),
(60444, 'https://ror.org/00gqmky69', 'no_lang_code', 1, 'https://ror.org/00gqmky69 Achmea (Netherlands)'),
(60445, 'https://ror.org/01braxd57', 'nl', 1, 'https://ror.org/01braxd57 Stichting Warande'),
(60446, 'https://ror.org/01e2kx306', 'no_lang_code', 1, 'https://ror.org/01e2kx306 Stichting Handbike Events'),
(60447, 'https://ror.org/00wtffy45', 'nl', 1, 'https://ror.org/00wtffy45 Stichting Westelijke Tuinsteden'),
(60448, 'https://ror.org/03bzzj274', 'nl', 1, 'https://ror.org/03bzzj274 Stichting Hartcentrum Twente'),
(60449, 'https://ror.org/00s3sar63', 'nl', 1, 'https://ror.org/00s3sar63 Stichting Hartekind'),
(60450, 'https://ror.org/00x5ydx53', 'nl', 1, 'https://ror.org/00x5ydx53 Stichting HemoBase'),
(60451, 'https://ror.org/003dey933', 'nl', 1, 'https://ror.org/003dey933 Stichting Hofje Codde en Van Beresteyn'),
(60452, 'https://ror.org/03ghw7z04', 'nl', 1, 'https://ror.org/03ghw7z04 Uitvoeringsinstituut Werknemersverzekeringen'),
(60453, 'https://ror.org/05g6kcv24', 'nl', 1, 'https://ror.org/05g6kcv24 IZZ Zorgverzekering'),
(60454, 'https://ror.org/0345gq170', 'nl', 1, 'https://ror.org/0345gq170 Thebe'),
(60455, 'https://ror.org/010xsbj02', 'nl', 1, 'https://ror.org/010xsbj02 Stichting Kenniscentrum Dementie op Jonge Leeftijd'),
(60456, 'https://ror.org/03cev2h16', 'nl', 1, 'https://ror.org/03cev2h16 Stichting Kinderen en Kansen'),
(60457, 'https://ror.org/01nzrnn89', 'nl', 1, 'https://ror.org/01nzrnn89 Vanboeijen'),
(60458, 'https://ror.org/036br4307', 'en', 1, 'https://ror.org/036br4307 TKI Agri & Food'),
(60459, 'https://ror.org/036187n68', 'nl', 1, 'https://ror.org/036187n68 Lyvore'),
(60460, 'https://ror.org/03qdk1w56', 'en', 1, 'https://ror.org/03qdk1w56 Dutch Health Care Inspectorate Inspectie voor de Gezondheidszorg'),
(60461, 'https://ror.org/02vja3r71', 'no_lang_code', 1, 'https://ror.org/02vja3r71 Vascular Insights (United States)'),
(60462, 'https://ror.org/01gy2bm93', 'no_lang_code', 1, 'https://ror.org/01gy2bm93 VDL Groep (Netherlands)'),
(60463, 'https://ror.org/054zktz40', 'nl', 1, 'https://ror.org/054zktz40 TKI Treco'),
(60464, 'https://ror.org/02etw4c89', 'nl', 1, 'https://ror.org/02etw4c89 Vereniging EMDR'),
(60465, 'https://ror.org/02z138x11', 'nl', 1, 'https://ror.org/02z138x11 Maatschap Friese Longartsen'),
(60466, 'https://ror.org/0479zah75', 'nl', 1, 'https://ror.org/0479zah75 Stichting LOOP'),
(60467, 'https://ror.org/001edkr35', 'nl', 1, 'https://ror.org/001edkr35 Vereniging Nederland-Davos'),
(60468, 'https://ror.org/01sf6dn24', 'no_lang_code', 1, 'https://ror.org/01sf6dn24 Procter & Gamble (Netherlands)'),
(60469, 'https://ror.org/03thqn741', 'nl', 1, 'https://ror.org/03thqn741 Vereniging Nederlandse Cateringorganisaties'),
(60470, 'https://ror.org/01fw4cw44', 'en', 1, 'https://ror.org/01fw4cw44 Transcare'),
(60471, 'https://ror.org/00srb9238', 'nl', 1, 'https://ror.org/00srb9238 Stichting Mitialto'),
(60472, 'https://ror.org/05beaz940', 'nl', 1, 'https://ror.org/05beaz940 Vereniging van Zorgaanbieders voor Zorgcommunicatie'),
(60473, 'https://ror.org/01r4eh644', 'en', 1, 'https://ror.org/01r4eh644 Lunar and Planetary Institute'),
(60474, 'https://ror.org/02nray311', 'no_lang_code', 1, 'https://ror.org/02nray311 Meda (Germany)'),
(60475, 'https://ror.org/017cm0005', 'nl', 1, 'https://ror.org/017cm0005 Nieuwegein Fonds'),
(60476, 'https://ror.org/013e4mp15', 'nl', 1, 'https://ror.org/013e4mp15 Wantveld'),
(60477, 'https://ror.org/05n521861', 'nl', 1, 'https://ror.org/05n521861 Vereniging van Groothandelaren in Bloemkwekerijprodukten'),
(60478, 'https://ror.org/02vsng207', 'nl', 1, 'https://ror.org/02vsng207 Jellinek'),
(60479, 'https://ror.org/019rxjv66', 'no_lang_code', 1, 'https://ror.org/019rxjv66 Tricolast (Belgium)'),
(60480, 'https://ror.org/03deszr39', 'en', 1, 'https://ror.org/03deszr39 Defence Against Cancer Foundation'),
(60481, 'https://ror.org/04983vw43', 'no_lang_code', 1, 'https://ror.org/04983vw43 Coƶperatie VGZ (Netherlands)'),
(60482, 'https://ror.org/02r0jj466', 'nl', 1, 'https://ror.org/02r0jj466 Stichting Weeshuis der Doopsgezinden'),
(60483, 'https://ror.org/04wfwab40', 'no_lang_code', 1, 'https://ror.org/04wfwab40 Vion Food Group (Netherlands)'),
(60484, 'https://ror.org/04jddfp89', 'no_lang_code', 1, 'https://ror.org/04jddfp89 Vision2Health (Netherlands)'),
(60485, 'https://ror.org/03791x537', 'en', 1, 'https://ror.org/03791x537 U-center'),
(60486, 'https://ror.org/01nxgy670', 'no_lang_code', 1, 'https://ror.org/01nxgy670 Welzijnservices (Netherlands)'),
(60487, 'https://ror.org/04q3h7t52', 'nl', 1, 'https://ror.org/04q3h7t52 Stichting Nationaal Fonds Het Gehandicapte Kind'),
(60488, 'https://ror.org/04gca2h74', 'no_lang_code', 1, 'https://ror.org/04gca2h74 UCB Pharma (Netherlands)'),
(60489, 'https://ror.org/05cygvk74', 'en', 1, 'https://ror.org/05cygvk74 Pactive Motion'),
(60490, 'https://ror.org/01nxgpa50', 'nl', 1, 'https://ror.org/01nxgpa50 Stofberg Preventie & Coaching'),
(60491, 'https://ror.org/00rybq012', 'en', 1, 'https://ror.org/00rybq012 VitalinQ'),
(60492, 'https://ror.org/0013dpg50', 'no_lang_code', 1, 'https://ror.org/0013dpg50 Umenz (Netherlands)'),
(60493, 'https://ror.org/0413n0f20', 'fr', 1, 'https://ror.org/0413n0f20 Loterie Nationale Nationale loterij Nationallotterie'),
(60494, 'https://ror.org/04t2ed417', 'en', 1, 'https://ror.org/04t2ed417 Vitalis WoonZorg Group'),
(60495, 'https://ror.org/04yv75396', 'no_lang_code', 1, 'https://ror.org/04yv75396 UnivƩ (Netherlands)'),
(60496, 'https://ror.org/01a0jnf88', 'nl', 1, 'https://ror.org/01a0jnf88 Landsteiner Instituut'),
(60497, 'https://ror.org/05k3cv262', 'nl', 1, 'https://ror.org/05k3cv262 Willem Meindert de Hoop Stichting'),
(60498, 'https://ror.org/00remyc86', 'nl', 1, 'https://ror.org/00remyc86 Stichting Panta Rhei'),
(60499, 'https://ror.org/00af9q554', 'no_lang_code', 1, 'https://ror.org/00af9q554 Vitromics (Netherlands)'),
(60500, 'https://ror.org/03ytsc046', 'nl', 1, 'https://ror.org/03ytsc046 IJsselheem'),
(60501, 'https://ror.org/00cdpwj98', 'no_lang_code', 1, 'https://ror.org/00cdpwj98 Vivisol (Netherlands)'),
(60502, 'https://ror.org/00g715g80', 'nl', 1, 'https://ror.org/00g715g80 Stichting Physico'),
(60503, 'https://ror.org/04chanh47', 'nl', 1, 'https://ror.org/04chanh47 ZorgKeuzeLab'),
(60504, 'https://ror.org/03vn3r884', 'nl', 1, 'https://ror.org/03vn3r884 Zorg in Ontwikkeling'),
(60505, 'https://ror.org/0297r6906', 'nl', 1, 'https://ror.org/0297r6906 Vlaamse Vereniging voor Obstetrie en Gynaecolo'),
(60506, 'https://ror.org/05dw0jd27', 'no_lang_code', 1, 'https://ror.org/05dw0jd27 Xendo (Netherlands)'),
(60507, 'https://ror.org/0356ywp11', 'nl', 1, 'https://ror.org/0356ywp11 Stichting Rehabilitatie ā€˜92'),
(60508, 'https://ror.org/0564c7p76', 'nl', 1, 'https://ror.org/0564c7p76 Verslavingszorg Noord Nederland'),
(60509, 'https://ror.org/056jbdt18', 'no_lang_code', 1, 'https://ror.org/056jbdt18 Yakult (Netherlands)'),
(60510, 'https://ror.org/04phw6a61', 'nl', 1, 'https://ror.org/04phw6a61 de Posten'),
(60511, 'https://ror.org/00feb6h18', 'nl', 1, 'https://ror.org/00feb6h18 Stichting RevaZorg'),
(60512, 'https://ror.org/042v6ch48', 'nl', 1, 'https://ror.org/042v6ch48 Zorgverzekeraars Nederland'),
(60513, 'https://ror.org/004pfc251', 'nl', 1, 'https://ror.org/004pfc251 Middelbaar Beroeps Onderwijs'),
(60514, 'https://ror.org/04gpeah71', 'nl', 1, 'https://ror.org/04gpeah71 Zorggroep Kans'),
(60515, 'https://ror.org/00vtp3850', 'nl', 1, 'https://ror.org/00vtp3850 Zorggroep Meander'),
(60516, 'https://ror.org/03m1gem82', 'no_lang_code', 1, 'https://ror.org/03m1gem82 Zambon (Netherlands)'),
(60517, 'https://ror.org/0320z2q35', 'nl', 1, 'https://ror.org/0320z2q35 Zorggroep Sint Maarten'),
(60518, 'https://ror.org/014epsm02', 'no_lang_code', 1, 'https://ror.org/014epsm02 Novamedia (Netherlands)'),
(60519, 'https://ror.org/05m0fyt06', 'nl', 1, 'https://ror.org/05m0fyt06 Zorggroep Solis'),
(60520, 'https://ror.org/024gr4122', 'nl', 1, 'https://ror.org/024gr4122 Vrienden WKZ'),
(60521, 'https://ror.org/00xs43h36', 'nl', 1, 'https://ror.org/00xs43h36 Vrienden van Heideheuvel'),
(60522, 'https://ror.org/053ad7843', 'nl', 1, 'https://ror.org/053ad7843 ZZG zorggroep'),
(60523, 'https://ror.org/00d7qnf81', 'nl', 1, 'https://ror.org/00d7qnf81 Zorg voor innoveren'),
(60524, 'https://ror.org/05nxrmr92', 'no_lang_code', 1, 'https://ror.org/05nxrmr92 Werk-Goed Bedrijfskleding alle rechten voorbehouden Werkgoed (Netherlands)'),
(60525, 'https://ror.org/05cj0xg89', 'de', 1, 'https://ror.org/05cj0xg89 Akademie Für Osteopathie'),
(60526, 'https://ror.org/04dhrzj96', 'de', 1, 'https://ror.org/04dhrzj96 Aturo'),
(60527, 'https://ror.org/01e5bev19', 'no_lang_code', 1, 'https://ror.org/01e5bev19 480 Biomedical (United States)'),
(60528, 'https://ror.org/00v3fhy84', 'nl', 1, 'https://ror.org/00v3fhy84 Stichting Zorgdraad'),
(60529, 'https://ror.org/008adck89', 'no_lang_code', 1, 'https://ror.org/008adck89 Analyze & Realize (Germany)'),
(60530, 'https://ror.org/04n9aye53', 'en', 1, 'https://ror.org/04n9aye53 Bundesverwaltungsamt FedĀ­erĀ­al OfĀ­fice of AdĀ­minĀ­isĀ­traĀ­tion'),
(60531, 'https://ror.org/049kfbr47', 'de', 1, 'https://ror.org/049kfbr47 Aktion Benni'),
(60532, 'https://ror.org/01pa6t272', 'no_lang_code', 1, 'https://ror.org/01pa6t272 Abbott (Austria)'),
(60533, 'https://ror.org/033n2wq55', 'de', 1, 'https://ror.org/033n2wq55 Aktion Mensch'),
(60534, 'https://ror.org/01ap05s72', 'de', 1, 'https://ror.org/01ap05s72 Bundeswehrkrankenhaus'),
(60535, 'https://ror.org/04a7kqd39', 'de', 1, 'https://ror.org/04a7kqd39 Asklepios Klinik Langen'),
(60536, 'https://ror.org/032b8d361', 'en', 1, 'https://ror.org/032b8d361 Minneapolis VA Medical Center'),
(60537, 'https://ror.org/05c3qep79', 'no_lang_code', 1, 'https://ror.org/05c3qep79 C-RAD (Sweden)'),
(60538, 'https://ror.org/04dqgsa85', 'en', 1, 'https://ror.org/04dqgsa85 CS Diagnostics'),
(60539, 'https://ror.org/001nh6z22', 'no_lang_code', 1, 'https://ror.org/001nh6z22 CA DIGITAL (Germany)'),
(60540, 'https://ror.org/036qh8f11', 'de', 1, 'https://ror.org/036qh8f11 Augencentrum Rosenheim'),
(60541, 'https://ror.org/03rpvpe67', 'de', 1, 'https://ror.org/03rpvpe67 Geriatrische Gesundheitszentren'),
(60542, 'https://ror.org/0431amh23', 'en', 1, 'https://ror.org/0431amh23 Klinik für Augenheilkunde Ophthalmology Clinic'),
(60543, 'https://ror.org/04x747113', 'de', 1, 'https://ror.org/04x747113 Evangelisches Krankenhaus Hamm'),
(60544, 'https://ror.org/00zqz6907', 'no_lang_code', 1, 'https://ror.org/00zqz6907 Alder (United States)'),
(60545, 'https://ror.org/04b0dke26', 'no_lang_code', 1, 'https://ror.org/04b0dke26 Cancer Prevention Pharmaceuticals (United States)'),
(60546, 'https://ror.org/03q5c2s89', 'pl', 1, 'https://ror.org/03q5c2s89 Centralny Szpital Kliniczny'),
(60547, 'https://ror.org/05fdgz909', 'de', 1, 'https://ror.org/05fdgz909 Evangelische Kliniken Gelsenkirchen'),
(60548, 'https://ror.org/037rv3j62', 'de', 1, 'https://ror.org/037rv3j62 Klinik Blankenstein'),
(60549, 'https://ror.org/05y6zv446', 'en', 1, 'https://ror.org/05y6zv446 Capio Clinic in the Park Capio Klinik im Park'),
(60550, 'https://ror.org/012g7b973', 'no_lang_code', 1, 'https://ror.org/012g7b973 axios Pharma (Germany)'),
(60551, 'https://ror.org/05tt0dn44', 'en', 1, 'https://ror.org/05tt0dn44 Alesco Concepts'),
(60552, 'https://ror.org/01cyatv27', 'no_lang_code', 1, 'https://ror.org/01cyatv27 CTI BioPharma (United Kingdom)'),
(60553, 'https://ror.org/00vh0j257', 'no_lang_code', 1, 'https://ror.org/00vh0j257 Alexion (Germany)'),
(60554, 'https://ror.org/058wnr349', 'no_lang_code', 1, 'https://ror.org/058wnr349 Cardialysis (Netherlands)'),
(60555, 'https://ror.org/05xn2x639', 'no_lang_code', 1, 'https://ror.org/05xn2x639 Curacyte (Germany)'),
(60556, 'https://ror.org/01j6p1p64', 'no_lang_code', 1, 'https://ror.org/01j6p1p64 Alimera Sciences (Germany)'),
(60557, 'https://ror.org/01wc8t239', 'no_lang_code', 1, 'https://ror.org/01wc8t239 Curaden (Switzerland)'),
(60558, 'https://ror.org/0149ncr63', 'no_lang_code', 1, 'https://ror.org/0149ncr63 Alvotech (Germany)'),
(60559, 'https://ror.org/00dvqrz49', 'de', 1, 'https://ror.org/00dvqrz49 Helios Amper-Klinikum Dachau'),
(60560, 'https://ror.org/02b941k82', 'no_lang_code', 1, 'https://ror.org/02b941k82 Korian (Germany)'),
(60561, 'https://ror.org/00qwmz024', 'no_lang_code', 1, 'https://ror.org/00qwmz024 CardioSec (Germany)'),
(60562, 'https://ror.org/01fmvjf05', 'no_lang_code', 1, 'https://ror.org/01fmvjf05 Curetis (Germany)'),
(60563, 'https://ror.org/01kkj4786', 'de', 1, 'https://ror.org/01kkj4786 BARMER GEK'),
(60564, 'https://ror.org/04dg4zc02', 'de', 1, 'https://ror.org/04dg4zc02 Gemeinschaftskrankenhaus Herdecke'),
(60565, 'https://ror.org/01qkbtc88', 'no_lang_code', 1, 'https://ror.org/01qkbtc88 CVRx (United States)'),
(60566, 'https://ror.org/03p371b74', 'en', 1, 'https://ror.org/03p371b74 Herford Hospital Klinikum Herford'),
(60567, 'https://ror.org/04w9ddv64', 'de', 1, 'https://ror.org/04w9ddv64 Caritas-Krankenhaus St. Josef'),
(60568, 'https://ror.org/02xyd6272', 'no_lang_code', 1, 'https://ror.org/02xyd6272 Bauerfeind (Germany)'),
(60569, 'https://ror.org/00pz61m54', 'de', 1, 'https://ror.org/00pz61m54 Schƶn Klinik Hamburg Eilbek'),
(60570, 'https://ror.org/050kj6p21', 'no_lang_code', 1, 'https://ror.org/050kj6p21 Alloheim (Germany)'),
(60571, 'https://ror.org/04pjs3n80', 'en', 1, 'https://ror.org/04pjs3n80 Cyclomed medical services & consulting'),
(60572, 'https://ror.org/05jjc0y03', 'no_lang_code', 1, 'https://ror.org/05jjc0y03 Alphamade (Berlin)'),
(60573, 'https://ror.org/03weyyh46', 'de', 1, 'https://ror.org/03weyyh46 Asklepios Klinikum Harburg'),
(60574, 'https://ror.org/02xs7rw35', 'no_lang_code', 1, 'https://ror.org/02xs7rw35 Almased (Germany)'),
(60575, 'https://ror.org/01ej30k87', 'de', 1, 'https://ror.org/01ej30k87 Kompetenznetz Darmerkrankungen'),
(60576, 'https://ror.org/00w2wr428', 'no_lang_code', 1, 'https://ror.org/00w2wr428 Cefak (Germany)'),
(60577, 'https://ror.org/01bs6bj47', 'de', 1, 'https://ror.org/01bs6bj47 BDH Bundesverband Rehabilitation'),
(60578, 'https://ror.org/00ec18z53', 'no_lang_code', 1, 'https://ror.org/00ec18z53 BEGO Implant Systems (Germany)'),
(60579, 'https://ror.org/0196d3y13', 'en', 1, 'https://ror.org/0196d3y13 Ambulantes Reha-Zentrum Berlin Adlershof Ambulatory Rehabilitation Center Berlin Adlershof'),
(60580, 'https://ror.org/04f2wf871', 'de', 1, 'https://ror.org/04f2wf871 Centrum für Integrierte Onkologie'),
(60581, 'https://ror.org/03c7ycp20', 'de', 1, 'https://ror.org/03c7ycp20 Deutsche Neurodermitis Stiftung'),
(60582, 'https://ror.org/054ey2125', 'de', 1, 'https://ror.org/054ey2125 Behandlungszentrum Aschau'),
(60583, 'https://ror.org/01erge413', 'no_lang_code', 1, 'https://ror.org/01erge413 Amedon (Germany)'),
(60584, 'https://ror.org/02mdj2060', 'de', 1, 'https://ror.org/02mdj2060 Zentrum Überleben'),
(60585, 'https://ror.org/03cmwaa13', 'no_lang_code', 1, 'https://ror.org/03cmwaa13 ABX-CRO Advanced Pharmaceutical Services (Germany)'),
(60586, 'https://ror.org/01jekr004', 'de', 1, 'https://ror.org/01jekr004 Centrum für Operative Urologie Bremen'),
(60587, 'https://ror.org/045qccw34', 'no_lang_code', 1, 'https://ror.org/045qccw34 Bemer (Liechtenstein)'),
(60588, 'https://ror.org/030arp767', 'no_lang_code', 1, 'https://ror.org/030arp767 Acandis (Germany)'),
(60589, 'https://ror.org/02dfbwd57', 'no_lang_code', 1, 'https://ror.org/02dfbwd57 Amedrix (Germany)'),
(60590, 'https://ror.org/0157gcv59', 'no_lang_code', 1, 'https://ror.org/0157gcv59 Acarix (Denmark)'),
(60591, 'https://ror.org/01zmdh962', 'de', 1, 'https://ror.org/01zmdh962 Arbeiterwohlfahrt München'),
(60592, 'https://ror.org/03famzf42', 'de', 1, 'https://ror.org/03famzf42 Acqua Klinik'),
(60593, 'https://ror.org/02rdz4018', 'en', 1, 'https://ror.org/02rdz4018 Karen Horney Institut'),
(60594, 'https://ror.org/0203bxz75', 'no_lang_code', 1, 'https://ror.org/0203bxz75 Cerbomed (Germany)'),
(60595, 'https://ror.org/010fhjt40', 'de', 1, 'https://ror.org/010fhjt40 Stiftung Berliner Sparkasse'),
(60596, 'https://ror.org/00frk6j35', 'de', 1, 'https://ror.org/00frk6j35 Berner Augenklinik am Lindenhofspital'),
(60597, 'https://ror.org/04zkhyt19', 'de', 1, 'https://ror.org/04zkhyt19 Deutsche Parkinson Vereinigung e.V'),
(60598, 'https://ror.org/009j5xv46', 'de', 1, 'https://ror.org/009j5xv46 Berufsgenossenschaft für Gesundheitsdienst und Wohlfahrtspflege'),
(60599, 'https://ror.org/05ngmaw16', 'no_lang_code', 1, 'https://ror.org/05ngmaw16 Certmedica (Germany)'),
(60600, 'https://ror.org/04kt7f841', 'de', 1, 'https://ror.org/04kt7f841 Berufsgenossenschaftliche Unfallklinik Frankfurt am Main'),
(60601, 'https://ror.org/01q428f30', 'no_lang_code', 1, 'https://ror.org/01q428f30 Cesra (Germany)'),
(60602, 'https://ror.org/03572ah39', 'no_lang_code', 1, 'https://ror.org/03572ah39 Actelion (Germany)'),
(60603, 'https://ror.org/00afzcs08', 'no_lang_code', 1, 'https://ror.org/00afzcs08 HumanTotalCare (Netherlands)'),
(60604, 'https://ror.org/01ex7e298', 'de', 1, 'https://ror.org/01ex7e298 Berufsverband der FrauenƤrzte'),
(60605, 'https://ror.org/02w1dxn42', 'nl', 1, 'https://ror.org/02w1dxn42 Rugpoli'),
(60606, 'https://ror.org/022fkpc23', 'no_lang_code', 1, 'https://ror.org/022fkpc23 Dr. Reddy''s Laboratories (Germany)'),
(60607, 'https://ror.org/00nvb4q10', 'no_lang_code', 1, 'https://ror.org/00nvb4q10 Active Bio Life Science (Germany)'),
(60608, 'https://ror.org/035gsd054', 'no_lang_code', 1, 'https://ror.org/035gsd054 Chemie³ (Germany)'),
(60609, 'https://ror.org/058n6ep94', 'de', 1, 'https://ror.org/058n6ep94 Bethlehem Gesundheitszentrum Stolberg'),
(60610, 'https://ror.org/04w4jta18', 'de', 1, 'https://ror.org/04w4jta18 Acura Kliniken'),
(60611, 'https://ror.org/03vc76c84', 'de', 1, 'https://ror.org/03vc76c84 BG Klinikum Duisburg'),
(60612, 'https://ror.org/03phvnn05', 'no_lang_code', 1, 'https://ror.org/03phvnn05 Andair AG (Switzerland)'),
(60613, 'https://ror.org/042g9vq32', 'de', 1, 'https://ror.org/042g9vq32 BG Klinikum Bergmannstrost Halle'),
(60614, 'https://ror.org/01zrbp537', 'no_lang_code', 1, 'https://ror.org/01zrbp537 Chiesi (Germany)'),
(60615, 'https://ror.org/04x84m665', 'de', 1, 'https://ror.org/04x84m665 Adipositas Zentrum Oberhausen'),
(60616, 'https://ror.org/05mv0x382', 'no_lang_code', 1, 'https://ror.org/05mv0x382 Biebertaler Blutegelzucht (Germany)'),
(60617, 'https://ror.org/04y5tkt43', 'de', 1, 'https://ror.org/04y5tkt43 BIG Direkt Gesund'),
(60618, 'https://ror.org/03xhpsm17', 'nl', 1, 'https://ror.org/03xhpsm17 Andros Mannenkliniek'),
(60619, 'https://ror.org/04nkwzq76', 'en', 1, 'https://ror.org/04nkwzq76 Anfomed Society for Applied Research in Medicine'),
(60620, 'https://ror.org/01xfewa62', 'de', 1, 'https://ror.org/01xfewa62 Arbeitsgemeinschaft Dermatologische Onkologie'),
(60621, 'https://ror.org/04p3kfc87', 'no_lang_code', 1, 'https://ror.org/04p3kfc87 ClinAssess (Germany)'),
(60622, 'https://ror.org/059gjhp96', 'no_lang_code', 1, 'https://ror.org/059gjhp96 Adtec Plasma Technology (United Kingdom)'),
(60623, 'https://ror.org/05hnk1p44', 'de', 1, 'https://ror.org/05hnk1p44 Klinik für Herzchirurgie Karlsruhe'),
(60624, 'https://ror.org/045k5xj29', 'de', 1, 'https://ror.org/045k5xj29 Allgemeiner Deutscher Tanzlehrerverband'),
(60625, 'https://ror.org/0266fnb18', 'no_lang_code', 1, 'https://ror.org/0266fnb18 BioTeSys (Germany)'),
(60626, 'https://ror.org/03w1b6j67', 'no_lang_code', 1, 'https://ror.org/03w1b6j67 Bitop (Germany)'),
(60627, 'https://ror.org/03fack110', 'de', 1, 'https://ror.org/03fack110 Anna Mueller Grocholski-Stiftung'),
(60628, 'https://ror.org/05sw1mq09', 'en', 1, 'https://ror.org/05sw1mq09 Clinical Research Center Kiel'),
(60629, 'https://ror.org/02c1jfh03', 'de', 1, 'https://ror.org/02c1jfh03 Aenne Speck Stiftung'),
(60630, 'https://ror.org/03xd8mt09', 'en', 1, 'https://ror.org/03xd8mt09 ANOA'),
(60631, 'https://ror.org/03gzy9q74', 'de', 1, 'https://ror.org/03gzy9q74 Agaplesion Bethesda Klinik'),
(60632, 'https://ror.org/0182jz384', 'de', 1, 'https://ror.org/0182jz384 Age Stiftung'),
(60633, 'https://ror.org/02w6f6b92', 'de', 1, 'https://ror.org/02w6f6b92 Deutsche Rheuma-Liga'),
(60634, 'https://ror.org/03y9g2t13', 'no_lang_code', 1, 'https://ror.org/03y9g2t13 Boehringer Ingelheim (Denmark)'),
(60635, 'https://ror.org/03r76e753', 'de', 1, 'https://ror.org/03r76e753 RheiĀ­nisch-BerĀ­giĀ­sche VerĀ­lagsĀ­geĀ­sellĀ­schaft'),
(60636, 'https://ror.org/03nsv9b85', 'de', 1, 'https://ror.org/03nsv9b85 Reproduktionsmedizin München'),
(60637, 'https://ror.org/01rfvvq43', 'no_lang_code', 1, 'https://ror.org/01rfvvq43 Boston Scientific (Germany)'),
(60638, 'https://ror.org/021bvd011', 'no_lang_code', 1, 'https://ror.org/021bvd011 Boston Scientific (Netherlands)'),
(60639, 'https://ror.org/01pwcqj21', 'no_lang_code', 1, 'https://ror.org/01pwcqj21 Columbia Shipmanagement (Germany)'),
(60640, 'https://ror.org/01z8ch088', 'en', 1, 'https://ror.org/01z8ch088 Compliant Concept'),
(60641, 'https://ror.org/00jwb3477', 'nl', 1, 'https://ror.org/00jwb3477 Flemish Taekwondo Association Vlaamse Taekwondo Bond'),
(60642, 'https://ror.org/00wj7ww55', 'de', 1, 'https://ror.org/00wj7ww55 Deutscher Berufsverband der Hals-Nasen-OhrenƤrzte e. V'),
(60643, 'https://ror.org/02qfg2147', 'de', 1, 'https://ror.org/02qfg2147 Brost Stiftung'),
(60644, 'https://ror.org/0217f6q14', 'de', 1, 'https://ror.org/0217f6q14 D•A•CH-Gesellschaft'),
(60645, 'https://ror.org/05qkht728', 'no_lang_code', 1, 'https://ror.org/05qkht728 Credentis (Switzerland)'),
(60646, 'https://ror.org/004cmqw89', 'no_lang_code', 1, 'https://ror.org/004cmqw89 AOK Allgemeine Ortskrankenkasse'),
(60647, 'https://ror.org/024bw4368', 'de', 1, 'https://ror.org/024bw4368 Bund gegen Alkohol und Drogen im Straßenverkehr'),
(60648, 'https://ror.org/02e9sbg40', 'de', 1, 'https://ror.org/02e9sbg40 Deutscher Berufsverband Rettungsdienst e.V'),
(60649, 'https://ror.org/05ygse102', 'no_lang_code', 1, 'https://ror.org/05ygse102 Shell (Germany)'),
(60650, 'https://ror.org/04xj8xr09', 'de', 1, 'https://ror.org/04xj8xr09 Deutscher Psoriasis Bund'),
(60651, 'https://ror.org/01tpy1912', 'de', 1, 'https://ror.org/01tpy1912 Bundesverband der HƶrgerƤte-Industrie'),
(60652, 'https://ror.org/04a87yd07', 'de', 1, 'https://ror.org/04a87yd07 Bundesverband SelbststƤndiger Physiotherapeuten'),
(60653, 'https://ror.org/054vkyc79', 'de', 1, 'https://ror.org/054vkyc79 Evangelisches Krankenhaus Kƶnigin Elisabeth Herzberge'),
(60654, 'https://ror.org/056y4sn81', 'de', 1, 'https://ror.org/056y4sn81 Evangelisches Krankenhaus Gƶttingen-Weende'),
(60655, 'https://ror.org/05q4r1796', 'de', 1, 'https://ror.org/05q4r1796 Evangelische Lungenklinik Berlin'),
(60656, 'https://ror.org/02ahksm63', 'de', 1, 'https://ror.org/02ahksm63 Diakonie Baden'),
(60657, 'https://ror.org/03ysbjx45', 'de', 1, 'https://ror.org/03ysbjx45 Fachklinik 360°'),
(60658, 'https://ror.org/03a3zhd98', 'es', 1, 'https://ror.org/03a3zhd98 Fundación Neumosur'),
(60659, 'https://ror.org/05ns7k858', 'nl', 1, 'https://ror.org/05ns7k858 EspƩrance Stichting Esperance'),
(60660, 'https://ror.org/04qstxt95', 'no_lang_code', 1, 'https://ror.org/04qstxt95 Apomedica (Austria)'),
(60661, 'https://ror.org/02qmczs49', 'no_lang_code', 1, 'https://ror.org/02qmczs49 Devicia (Sweden)'),
(60662, 'https://ror.org/00nc2d154', 'no_lang_code', 1, 'https://ror.org/00nc2d154 NestlƩ (Germany)'),
(60663, 'https://ror.org/019dx5122', 'de', 1, 'https://ror.org/019dx5122 Deutsche Gesellschaft für Ultraschall in der Medizin'),
(60664, 'https://ror.org/051md9f18', 'de', 1, 'https://ror.org/051md9f18 Apothekerstiftung Westfalen-Lippe'),
(60665, 'https://ror.org/054zxwt86', 'de', 1, 'https://ror.org/054zxwt86 Evangelisches Krankenhaus Mettmann'),
(60666, 'https://ror.org/0479nnv27', 'no_lang_code', 1, 'https://ror.org/0479nnv27 Dentium (South Korea)'),
(60667, 'https://ror.org/00k19bf64', 'no_lang_code', 1, 'https://ror.org/00k19bf64 AppPeople (Germany)'),
(60668, 'https://ror.org/03m85x183', 'no_lang_code', 1, 'https://ror.org/03m85x183 KLS Martin (Germany)'),
(60669, 'https://ror.org/0395pak08', 'en', 1, 'https://ror.org/0395pak08 AAB College Kolegji AAB'),
(60670, 'https://ror.org/04xx57w85', 'no_lang_code', 1, 'https://ror.org/04xx57w85 Gelita (Germany)'),
(60671, 'https://ror.org/02ztdvb08', 'de', 1, 'https://ror.org/02ztdvb08 Stiftung Empiris'),
(60672, 'https://ror.org/03vbmcv19', 'no_lang_code', 1, 'https://ror.org/03vbmcv19 E&L Medical Systems (Germany)'),
(60673, 'https://ror.org/02skrkk58', 'de', 1, 'https://ror.org/02skrkk58 Gemeinschaftskrankenhaus Havelhƶhe'),
(60674, 'https://ror.org/02z2af868', 'no_lang_code', 1, 'https://ror.org/02z2af868 K-Implant (Germany)'),
(60675, 'https://ror.org/04b98k103', 'de', 1, 'https://ror.org/04b98k103 Dƶpfer Schulen Regensburg'),
(60676, 'https://ror.org/04swy5694', 'nl', 1, 'https://ror.org/04swy5694 Dokter Bosman'),
(60677, 'https://ror.org/00pvtfc31', 'no_lang_code', 1, 'https://ror.org/00pvtfc31 Serag-Wiessner (Germany)'),
(60678, 'https://ror.org/00w7n4066', 'en', 1, 'https://ror.org/00w7n4066 Mikaelyan Institute of Surgery Õ„Ō»Õ”Ō±Õ…ŌµŌ¼Õ…Ō±Õ† ÕŽŌ»ÕŌ±Ō²ÕˆÕ’ŌŗÕˆÕ’Ō¹Õ…Ō±Õ† Ō»Õ†ÕÕŌ»ÕÕˆÕ’Õ'),
(60679, 'https://ror.org/04578ze73', 'no_lang_code', 1, 'https://ror.org/04578ze73 Derma Consult (Germany)'),
(60680, 'https://ror.org/01ccgqb68', 'de', 1, 'https://ror.org/01ccgqb68 Dermatologie Freiburg'),
(60681, 'https://ror.org/01mvtpp50', 'de', 1, 'https://ror.org/01mvtpp50 Arbeitsgemeinschaft für Krebsbekämpfung'),
(60682, 'https://ror.org/04rcd2e35', 'de', 1, 'https://ror.org/04rcd2e35 Fachklinik St. Marienstift Dammer Berge'),
(60683, 'https://ror.org/00pvgnv60', 'de', 1, 'https://ror.org/00pvgnv60 Fachklinik Weinbƶhla'),
(60684, 'https://ror.org/0513wsw42', 'de', 1, 'https://ror.org/0513wsw42 Deutsche AIDS-Gesellschaft'),
(60685, 'https://ror.org/03zzm8134', 'en', 1, 'https://ror.org/03zzm8134 Deutschen Akademie für Flug- und Reisemedizin German Academy for Aviation and Travel Medicine'),
(60686, 'https://ror.org/01j811c15', 'en', 1, 'https://ror.org/01j811c15 German Inflammatory Bowel Diseases Study Group'),
(60687, 'https://ror.org/01545pc85', 'de', 1, 'https://ror.org/01545pc85 Fachkrankenhaus Hubertusburg'),
(60688, 'https://ror.org/05cc53v60', 'de', 1, 'https://ror.org/05cc53v60 Fachverband SAPV Hessen'),
(60689, 'https://ror.org/03hmqk966', 'de', 1, 'https://ror.org/03hmqk966 Albert Schweitzer Klinik'),
(60690, 'https://ror.org/018hhzz02', 'nl', 1, 'https://ror.org/018hhzz02 Bouman GGZ Bouman Geestelijke Gezondheidszorg'),
(60691, 'https://ror.org/046gp2614', 'de', 1, 'https://ror.org/046gp2614 Deutsche Gesellschaft für Anästhesiologie und Intensivmedizin'),
(60692, 'https://ror.org/057hhh802', 'de', 1, 'https://ror.org/057hhh802 Verband Deutscher Mineralbrunnen'),
(60693, 'https://ror.org/03rr0h512', 'de', 1, 'https://ror.org/03rr0h512 Feuerwehr Brühl'),
(60694, 'https://ror.org/03kqk1x83', 'de', 1, 'https://ror.org/03kqk1x83 Deutsche Gesellschaft für Transaktionsanalyse'),
(60695, 'https://ror.org/00ha4p191', 'de', 1, 'https://ror.org/00ha4p191 Diakonie Klinikum Jung-Stilling'),
(60696, 'https://ror.org/048knfw55', 'no_lang_code', 1, 'https://ror.org/048knfw55 Gesundes Kinzigtal (Germany)'),
(60697, 'https://ror.org/00hndgp31', 'de', 1, 'https://ror.org/00hndgp31 Deutsche Interdisziplinäre Vereinigung für Intensiv- und Notfallmedizin'),
(60698, 'https://ror.org/02x8kf546', 'en', 1, 'https://ror.org/02x8kf546 ARCUS Sportkliniken ARCUS Sports Clinic'),
(60699, 'https://ror.org/00m42s140', 'de', 1, 'https://ror.org/00m42s140 Deutsche Gesellschaft für Internationale Zusammenarbeit German Corporation for International Cooperation'),
(60700, 'https://ror.org/057484769', 'no_lang_code', 1, 'https://ror.org/057484769 Fine Treatment (United Kingdom)'),
(60701, 'https://ror.org/03hvx4842', 'de', 1, 'https://ror.org/03hvx4842 Gesundheitsnetz Rhein-Neckar'),
(60702, 'https://ror.org/006ggeh68', 'no_lang_code', 1, 'https://ror.org/006ggeh68 Bentley (Germany)'),
(60703, 'https://ror.org/04by43e81', 'de', 1, 'https://ror.org/04by43e81 GOIN Gesundheitsorganisation'),
(60704, 'https://ror.org/007emtd94', 'no_lang_code', 1, 'https://ror.org/007emtd94 Nielsen (Germany)'),
(60705, 'https://ror.org/05cvd1d02', 'no_lang_code', 1, 'https://ror.org/05cvd1d02 Diamed Medizintechnik (Germany)'),
(60706, 'https://ror.org/03zxn7k97', 'de', 1, 'https://ror.org/03zxn7k97 Die ZahnƤrzte.ch'),
(60707, 'https://ror.org/039kzrb23', 'no_lang_code', 1, 'https://ror.org/039kzrb23 Nuvisan (Germany)'),
(60708, 'https://ror.org/001xy0e42', 'de', 1, 'https://ror.org/001xy0e42 Ƅrztliche Akademie für Psychotherapie von Kindern und Jugendlichen'),
(60709, 'https://ror.org/039phvz68', 'no_lang_code', 1, 'https://ror.org/039phvz68 GHD GesundHeits GmbH Deutschland (Germany)'),
(60710, 'https://ror.org/05d4yeg66', 'de', 1, 'https://ror.org/05d4yeg66 Ria & Arthur Dietschweiler Stiftung'),
(60711, 'https://ror.org/049n8jv26', 'en', 1, 'https://ror.org/049n8jv26 Diagnostic and Treatment Centre Berlin Diagnostisch Therapeutisches Zentrum'),
(60712, 'https://ror.org/01ne3xe80', 'de', 1, 'https://ror.org/01ne3xe80 Ƅrztliche Gesellschaft zur Gesundheitsfƶrderung e.V'),
(60713, 'https://ror.org/03erpd422', 'de', 1, 'https://ror.org/03erpd422 Förderkreis Hilfe für krebskranke Kinder'),
(60714, 'https://ror.org/02ts4qr04', 'no_lang_code', 1, 'https://ror.org/02ts4qr04 Disphar International (Netherlands)'),
(60715, 'https://ror.org/05129cd91', 'no_lang_code', 1, 'https://ror.org/05129cd91 Dürr Dental (Germany)'),
(60716, 'https://ror.org/008cpgt80', 'no_lang_code', 1, 'https://ror.org/008cpgt80 DJO Global (Germany)'),
(60717, 'https://ror.org/00fdh5j55', 'no_lang_code', 1, 'https://ror.org/00fdh5j55 Given Imaging (Germany)'),
(60718, 'https://ror.org/03qafw071', 'de', 1, 'https://ror.org/03qafw071 Vitos'),
(60719, 'https://ror.org/02j4hfc40', 'no_lang_code', 1, 'https://ror.org/02j4hfc40 Glaukos (United States)'),
(60720, 'https://ror.org/04xh4nj31', 'no_lang_code', 1, 'https://ror.org/04xh4nj31 EDAP TMS (Germany)'),
(60721, 'https://ror.org/052vnzp53', 'de', 1, 'https://ror.org/052vnzp53 Fƶrderverein Hilfe bei Prostatakrebs'),
(60722, 'https://ror.org/05916vc09', 'no_lang_code', 1, 'https://ror.org/05916vc09 DMG (Germany)'),
(60723, 'https://ror.org/01m5mwt22', 'de', 1, 'https://ror.org/01m5mwt22 Asklepios Fachklinikum Tiefenbrunn'),
(60724, 'https://ror.org/050t8nt82', 'no_lang_code', 1, 'https://ror.org/050t8nt82 Glycemicon (Switzerland)'),
(60725, 'https://ror.org/001gp6102', 'de', 1, 'https://ror.org/001gp6102 Edel + weiss ZahnƤrzte'),
(60726, 'https://ror.org/05pp3ka35', 'no_lang_code', 1, 'https://ror.org/05pp3ka35 Dr. Ausbüttel (Germany)'),
(60727, 'https://ror.org/04gbqr315', 'de', 1, 'https://ror.org/04gbqr315 Forschungsgesellschaft Atemwegerkrankungen'),
(60728, 'https://ror.org/0041kxp69', 'en', 1, 'https://ror.org/0041kxp69 Dr.Heiko Pult Optometry and Vision Research'),
(60729, 'https://ror.org/02zkjhv23', 'de', 1, 'https://ror.org/02zkjhv23 Eifelklinik Manderscheid'),
(60730, 'https://ror.org/05rtjbe93', 'de', 1, 'https://ror.org/05rtjbe93 Asklepios OrthopƤdische Klinik Lindenlohe'),
(60731, 'https://ror.org/01t10vs30', 'no_lang_code', 1, 'https://ror.org/01t10vs30 Eisai (Germany)'),
(60732, 'https://ror.org/008gj9m82', 'de', 1, 'https://ror.org/008gj9m82 Lesmüller-Stiftung'),
(60733, 'https://ror.org/036arc746', 'de', 1, 'https://ror.org/036arc746 Kompetenznetz LeukƤmien'),
(60734, 'https://ror.org/02b3z0y06', 'de', 1, 'https://ror.org/02b3z0y06 Asklepios Kliniken Schildautal'),
(60735, 'https://ror.org/050pcsr04', 'en', 1, 'https://ror.org/050pcsr04 Dr. Becker Rhein-Sieg Clinic Dr. Becker Rhein-Sieg-Klinik'),
(60736, 'https://ror.org/015d6sb27', 'no_lang_code', 1, 'https://ror.org/015d6sb27 GP Pharm (Spain)'),
(60737, 'https://ror.org/00t1kaa78', 'no_lang_code', 1, 'https://ror.org/00t1kaa78 Grifols (Germany)'),
(60738, 'https://ror.org/05hbymd96', 'de', 1, 'https://ror.org/05hbymd96 Hauschka Stiftung'),
(60739, 'https://ror.org/03zfqb242', 'de', 1, 'https://ror.org/03zfqb242 Elefanten Apotheke'),
(60740, 'https://ror.org/036gpm141', 'de', 1, 'https://ror.org/036gpm141 Asklepios Neurologische Klinik Falkenstein'),
(60741, 'https://ror.org/02kjx8221', 'no_lang_code', 1, 'https://ror.org/02kjx8221 Dr. Loges (Germany)'),
(60742, 'https://ror.org/055tk9p53', 'de', 1, 'https://ror.org/055tk9p53 Asklepios'),
(60743, 'https://ror.org/023ytjs26', 'no_lang_code', 1, 'https://ror.org/023ytjs26 Hasomed (Germany)'),
(60744, 'https://ror.org/00sn12234', 'no_lang_code', 1, 'https://ror.org/00sn12234 GS Elektromed. GerƤte G. Stemple (Germany)'),
(60745, 'https://ror.org/04d3z1s95', 'no_lang_code', 1, 'https://ror.org/04d3z1s95 Dr. Mattiola & Partner AG (Switzerland)'),
(60746, 'https://ror.org/05955c602', 'de', 1, 'https://ror.org/05955c602 HausƤrzteverband Sachsen-Anhalt'),
(60747, 'https://ror.org/034fc8f37', 'no_lang_code', 1, 'https://ror.org/034fc8f37 Guangdong Junfeng Spectrum (China)'),
(60748, 'https://ror.org/05hgx8v86', 'no_lang_code', 1, 'https://ror.org/05hgx8v86 Elixir Medical (United States)'),
(60749, 'https://ror.org/01x1jpq68', 'no_lang_code', 1, 'https://ror.org/01x1jpq68 Dr. Niedermaier Pharma (Germany)'),
(60750, 'https://ror.org/01cpc0e60', 'no_lang_code', 1, 'https://ror.org/01cpc0e60 Haider Bioswing (Germany)'),
(60751, 'https://ror.org/007rj1t21', 'nl', 1, 'https://ror.org/007rj1t21 Janusz Korczak Stichting'),
(60752, 'https://ror.org/050ja5z71', 'no_lang_code', 1, 'https://ror.org/050ja5z71 HausMed (Germany)'),
(60753, 'https://ror.org/00jhkj736', 'no_lang_code', 1, 'https://ror.org/00jhkj736 Dr. Pfleger Arzneimittel (Germany)'),
(60754, 'https://ror.org/04ayaxc32', 'de', 1, 'https://ror.org/04ayaxc32 Elterninitiative Krebskranker Kinder im Saarland'),
(60755, 'https://ror.org/053x0fn40', 'de', 1, 'https://ror.org/053x0fn40 IKK Classic'),
(60756, 'https://ror.org/03y40yh62', 'de', 1, 'https://ror.org/03y40yh62 Stiftung Depressionsforschung'),
(60757, 'https://ror.org/05epfm497', 'en', 1, 'https://ror.org/05epfm497 Hautok + Hautok Cosmetics'),
(60758, 'https://ror.org/05dx5b564', 'de', 1, 'https://ror.org/05dx5b564 Immanuel Klinikum Bernau'),
(60759, 'https://ror.org/0335jxq92', 'no_lang_code', 1, 'https://ror.org/0335jxq92 Immundiagnostik (Germany)'),
(60760, 'https://ror.org/02fqx5560', 'no_lang_code', 1, 'https://ror.org/02fqx5560 Implandata Ophthalmic Products (Germany)'),
(60761, 'https://ror.org/01h0snt56', 'no_lang_code', 1, 'https://ror.org/01h0snt56 Emmedi (Italy)'),
(60762, 'https://ror.org/036cpmb86', 'no_lang_code', 1, 'https://ror.org/036cpmb86 Emotra (Sweden)'),
(60763, 'https://ror.org/038phvh31', 'no_lang_code', 1, 'https://ror.org/038phvh31 INC Research (United Kingdom)'),
(60764, 'https://ror.org/00m64hf65', 'de', 1, 'https://ror.org/00m64hf65 Emovis'),
(60765, 'https://ror.org/047tk1g21', 'no_lang_code', 1, 'https://ror.org/047tk1g21 Indena (France)'),
(60766, 'https://ror.org/04mftqn06', 'no_lang_code', 1, 'https://ror.org/04mftqn06 Heimomed Heinze (Germany)'),
(60767, 'https://ror.org/05ncexg51', 'en', 1, 'https://ror.org/05ncexg51 Atos Medical'),
(60768, 'https://ror.org/02mez3a16', 'de', 1, 'https://ror.org/02mez3a16 Integrierte Psychiatrie Winterthur'),
(60769, 'https://ror.org/03psazt82', 'no_lang_code', 1, 'https://ror.org/03psazt82 Ingredia (France)'),
(60770, 'https://ror.org/00ey8ew03', 'no_lang_code', 1, 'https://ror.org/00ey8ew03 Lƶwenstein Medical (Germany)'),
(60771, 'https://ror.org/030mnsr75', 'no_lang_code', 1, 'https://ror.org/030mnsr75 Helbo Photodynamic Systems (Germany)'),
(60772, 'https://ror.org/0525jdx88', 'de', 1, 'https://ror.org/0525jdx88 Diakonie Kork'),
(60773, 'https://ror.org/04sdwnk70', 'de', 1, 'https://ror.org/04sdwnk70 Werner und Erika Messmer Stiftung'),
(60774, 'https://ror.org/04d2erj26', 'de', 1, 'https://ror.org/04d2erj26 Buchinger Wilhelmi'),
(60775, 'https://ror.org/036vjnj69', 'no_lang_code', 1, 'https://ror.org/036vjnj69 Innomedis (Germany)'),
(60776, 'https://ror.org/00g63xj11', 'de', 1, 'https://ror.org/00g63xj11 Helios Klinik Kipfenberg'),
(60777, 'https://ror.org/026rvyt77', 'de', 1, 'https://ror.org/026rvyt77 Klinik Bavaria'),
(60778, 'https://ror.org/04sr0hc76', 'de', 1, 'https://ror.org/04sr0hc76 Helios Kliniken Mittelweser'),
(60779, 'https://ror.org/04y18m106', 'de', 1, 'https://ror.org/04y18m106 Helios Klinikum Erfurt'),
(60780, 'https://ror.org/018gc9r78', 'en', 1, 'https://ror.org/018gc9r78 Helios Hospital Schwerin Helios Kliniken Schwerin'),
(60781, 'https://ror.org/05hgh1g19', 'en', 1, 'https://ror.org/05hgh1g19 Helios Hospital Berlin-Buch Helios Klinikum Berlin-Buch'),
(60782, 'https://ror.org/049yad652', 'de', 1, 'https://ror.org/049yad652 Erwin Rƶver Stiftung'),
(60783, 'https://ror.org/0013xzr62', 'en', 1, 'https://ror.org/0013xzr62 International Maitland Teacher Association'),
(60784, 'https://ror.org/05ktfmr66', 'de', 1, 'https://ror.org/05ktfmr66 Helios Vogtland Klinikum Plauen'),
(60785, 'https://ror.org/029cqm867', 'de', 1, 'https://ror.org/029cqm867 Hospital Krefeld-Düsseldorf'),
(60786, 'https://ror.org/0528jqb23', 'no_lang_code', 1, 'https://ror.org/0528jqb23 Inspire Medical Systems (United States)'),
(60787, 'https://ror.org/04z28dj81', 'fr', 1, 'https://ror.org/04z28dj81 Institut Aguettant'),
(60788, 'https://ror.org/028v8ft65', 'en', 1, 'https://ror.org/028v8ft65 HELIOS Klinikum Bad Saarow Helios Hospital Bad Saarow'),
(60789, 'https://ror.org/00qtpwp08', 'de', 1, 'https://ror.org/00qtpwp08 Institut Dr. Schauerte'),
(60790, 'https://ror.org/02tzf4h03', 'en', 1, 'https://ror.org/02tzf4h03 Hermann Buhl Institut');
INSERT INTO `rors` VALUES
(60791, 'https://ror.org/00jp3t114', 'de', 1, 'https://ror.org/00jp3t114 Helios Hospital Siegburg Helios Klinikum Siegburg'),
(60792, 'https://ror.org/03kz92t11', 'no_lang_code', 1, 'https://ror.org/03kz92t11 Hermes Arzneimittel (Germany)'),
(60793, 'https://ror.org/04r88rm51', 'no_lang_code', 1, 'https://ror.org/04r88rm51 Intersurgical (Germany)'),
(60794, 'https://ror.org/048kfq149', 'de', 1, 'https://ror.org/048kfq149 HIZ Berlin'),
(60795, 'https://ror.org/00td6v066', 'de', 1, 'https://ror.org/00td6v066 HELIOS Klinikum Emil von Behring Helios Klinikum Emil von Behring'),
(60796, 'https://ror.org/022r80268', 'no_lang_code', 1, 'https://ror.org/022r80268 Intuitive Surgical (Switzerland)'),
(60797, 'https://ror.org/00vppgp96', 'de', 1, 'https://ror.org/00vppgp96 Marienhaus Klinikum Hetzelstift Neustadt'),
(60798, 'https://ror.org/00dkbxq38', 'no_lang_code', 1, 'https://ror.org/00dkbxq38 Hikma Pharmaceuticals (Germany)'),
(60799, 'https://ror.org/00wqjrk21', 'de', 1, 'https://ror.org/00wqjrk21 Institut für Medizinische Informatik, Biometrie und Epidemiologie'),
(60800, 'https://ror.org/0151g7j48', 'en', 1, 'https://ror.org/0151g7j48 Histiocyte Society'),
(60801, 'https://ror.org/00dhqzt16', 'de', 1, 'https://ror.org/00dhqzt16 INVADE Institut für Versorgungsforschung'),
(60802, 'https://ror.org/026jf4w16', 'en', 1, 'https://ror.org/026jf4w16 Hessian Ministry for Social Affairs and Integration Hessisches Ministerium für Soziales und Integration'),
(60803, 'https://ror.org/04b85d432', 'de', 1, 'https://ror.org/04b85d432 UniversitƤts-HNO-Klinik Heidelberg'),
(60804, 'https://ror.org/001b17f86', 'en', 1, 'https://ror.org/001b17f86 Conseil EuropƩen European Council EuropƤischer Rat'),
(60805, 'https://ror.org/01pndgw26', 'de', 1, 'https://ror.org/01pndgw26 Klinik und Poliklinik für Hals-Nasen-Ohren-Heilkunde'),
(60806, 'https://ror.org/03zvpee43', 'de', 1, 'https://ror.org/03zvpee43 Hochschule für Gesundheitsorientierte Wissenschaften Rhein-Neckar'),
(60807, 'https://ror.org/04yx65w97', 'de', 1, 'https://ror.org/04yx65w97 Institut für Palliative Care'),
(60808, 'https://ror.org/033gvjm02', 'de', 1, 'https://ror.org/033gvjm02 Klinik Lüneburger Heide'),
(60809, 'https://ror.org/022rrds39', 'de', 1, 'https://ror.org/022rrds39 Hoffnungsbaum'),
(60810, 'https://ror.org/007zn4n28', 'no_lang_code', 1, 'https://ror.org/007zn4n28 Hologic (Germany)'),
(60811, 'https://ror.org/03h1j4f11', 'de', 1, 'https://ror.org/03h1j4f11 KrankenhƤuser Landkreis Freudenstadt'),
(60812, 'https://ror.org/02722xq19', 'de', 1, 'https://ror.org/02722xq19 Klinik Niederrhein'),
(60813, 'https://ror.org/0230sdn30', 'no_lang_code', 1, 'https://ror.org/0230sdn30 Hoya Surgical Optics (Germany)'),
(60814, 'https://ror.org/04s366p63', 'de', 1, 'https://ror.org/04s366p63 Klinikum Sindelfingen-Bƶblingen'),
(60815, 'https://ror.org/00x1td960', 'de', 1, 'https://ror.org/00x1td960 Klinik Roderbirke'),
(60816, 'https://ror.org/007857862', 'no_lang_code', 1, 'https://ror.org/007857862 Kreiskrankenhaus Gummersbach'),
(60817, 'https://ror.org/00ekwj913', 'no_lang_code', 1, 'https://ror.org/00ekwj913 Humedics (Germany)'),
(60818, 'https://ror.org/033x1wr64', 'de', 1, 'https://ror.org/033x1wr64 Klinik Rosenberg'),
(60819, 'https://ror.org/01dgzjt17', 'de', 1, 'https://ror.org/01dgzjt17 Hospital MƤrkisch-Oderland Krankenhaus MƤrkisch-Oderland'),
(60820, 'https://ror.org/00esbf302', 'de', 1, 'https://ror.org/00esbf302 St. Elisabeth-Krankenhaus Leipzig'),
(60821, 'https://ror.org/01mp0e364', 'de', 1, 'https://ror.org/01mp0e364 Infektionsmedizinisches Centrum Hamburg'),
(60822, 'https://ror.org/049btft62', 'de', 1, 'https://ror.org/049btft62 Netzwerk der Rehabilitationsforschung in Nordrhein-Westfalen'),
(60823, 'https://ror.org/04cba8s74', 'en', 1, 'https://ror.org/04cba8s74 Competence Network Multiple Sclerosis Kompetenznetz Multiple Sklerose'),
(60824, 'https://ror.org/01v6tyf80', 'de', 1, 'https://ror.org/01v6tyf80 Institut für Ganzheitliche Medizin und Wissenschaft'),
(60825, 'https://ror.org/02q1k8269', 'de', 1, 'https://ror.org/02q1k8269 Krebsgesellschaft Nordrhein-Westfalen'),
(60826, 'https://ror.org/04ztvxe73', 'de', 1, 'https://ror.org/04ztvxe73 Kreiskrankenhaus Emmendingen'),
(60827, 'https://ror.org/03326wy09', 'en', 1, 'https://ror.org/03326wy09 Institut für Therapie- und Gesundheitsforschung Institute for Therapy and Health Research'),
(60828, 'https://ror.org/04mae1e30', 'de', 1, 'https://ror.org/04mae1e30 Deutsche WirbelsƤulengesellschaft'),
(60829, 'https://ror.org/041kzk395', 'no_lang_code', 1, 'https://ror.org/041kzk395 Elektror Airsystems (Germany)'),
(60830, 'https://ror.org/0093yfm43', 'de', 1, 'https://ror.org/0093yfm43 Institut für Verhaltenstherapie-Ausbildung Hamburg'),
(60831, 'https://ror.org/01ddazc14', 'de', 1, 'https://ror.org/01ddazc14 Marienkrankenhaus Kassel'),
(60832, 'https://ror.org/02psykc67', 'de', 1, 'https://ror.org/02psykc67 Marienkrankenhaus Hamburg'),
(60833, 'https://ror.org/02bxvq813', 'de', 1, 'https://ror.org/02bxvq813 Klinik und Poliklinik für Frauenheilkunde und Fortpflanzungsmedizin'),
(60834, 'https://ror.org/01vb5ks25', 'de', 1, 'https://ror.org/01vb5ks25 Martini-Klinik'),
(60835, 'https://ror.org/02j2kw336', 'no_lang_code', 1, 'https://ror.org/02j2kw336 Molteni Farmaceutici (Italy)'),
(60836, 'https://ror.org/04p94z953', 'de', 1, 'https://ror.org/04p94z953 Klinikum Rheine'),
(60837, 'https://ror.org/01sq6ck73', 'de', 1, 'https://ror.org/01sq6ck73 Monika Kutzner Stiftung'),
(60838, 'https://ror.org/03cr5e788', 'de', 1, 'https://ror.org/03cr5e788 Klinik und Poliklinik für Hals-, Nasen-, Ohrenheilkunde'),
(60839, 'https://ror.org/02skjv125', 'no_lang_code', 1, 'https://ror.org/02skjv125 Mathys (Switzerland)'),
(60840, 'https://ror.org/02wv74f83', 'no_lang_code', 1, 'https://ror.org/02wv74f83 Mathys (Germany)'),
(60841, 'https://ror.org/05k64t167', 'de', 1, 'https://ror.org/05k64t167 Lahntalklinik'),
(60842, 'https://ror.org/02bkjp178', 'no_lang_code', 1, 'https://ror.org/02bkjp178 Max Zeller Sƶhne (Switzerland)'),
(60843, 'https://ror.org/02j0fhg41', 'de', 1, 'https://ror.org/02j0fhg41 Moritz Klinik'),
(60844, 'https://ror.org/04hd04g86', 'en', 1, 'https://ror.org/04hd04g86 Agaplesion Markus Hospital Agaplesion Markus Krankenhaus'),
(60845, 'https://ror.org/0101mv631', 'de', 1, 'https://ror.org/0101mv631 Klinik und Poliklinik für Kinder- und Jugendmedizin'),
(60846, 'https://ror.org/05y895e77', 'de', 1, 'https://ror.org/05y895e77 Landesuntersuchungsanstalt Sachsen'),
(60847, 'https://ror.org/049g3g548', 'de', 1, 'https://ror.org/049g3g548 Sana Kliniken Leipziger Land'),
(60848, 'https://ror.org/00tdtmz24', 'no_lang_code', 1, 'https://ror.org/00tdtmz24 Lapharm (Germany)'),
(60849, 'https://ror.org/04pse2556', 'de', 1, 'https://ror.org/04pse2556 Klinik und Poliklinik für Kinder- und Jugendpsychiatrie'),
(60850, 'https://ror.org/000p04g78', 'de', 1, 'https://ror.org/000p04g78 Ministerium für Soziales, Arbeit, Gesundheit und Demografie'),
(60851, 'https://ror.org/02kbfhq14', 'de', 1, 'https://ror.org/02kbfhq14 Laserklinik Karlsruhe'),
(60852, 'https://ror.org/01g4jev56', 'no_lang_code', 1, 'https://ror.org/01g4jev56 Philips (Finland) Philips Oy'),
(60853, 'https://ror.org/04dbahf95', 'de', 1, 'https://ror.org/04dbahf95 Klinik und Poliklinik für Mund-, Kiefer- und Gesichtschirurgie'),
(60854, 'https://ror.org/03h3mye18', 'de', 1, 'https://ror.org/03h3mye18 NBank'),
(60855, 'https://ror.org/0430haf92', 'no_lang_code', 1, 'https://ror.org/0430haf92 Medartis (Switzerland)'),
(60856, 'https://ror.org/019a9a780', 'de', 1, 'https://ror.org/019a9a780 Klinik Kƶnig-Ludwig Haus'),
(60857, 'https://ror.org/03477rg40', 'no_lang_code', 1, 'https://ror.org/03477rg40 Neomedic International (Spain)'),
(60858, 'https://ror.org/04s3ast04', 'de', 1, 'https://ror.org/04s3ast04 Klinik und Poliklinik für Neurologie'),
(60859, 'https://ror.org/02g4bxh77', 'en', 1, 'https://ror.org/02g4bxh77 Medbase'),
(60860, 'https://ror.org/00qqw1b44', 'de', 1, 'https://ror.org/00qqw1b44 Klinik und Poliklinik für Nuklearmedizin'),
(60861, 'https://ror.org/05pax0z40', 'no_lang_code', 1, 'https://ror.org/05pax0z40 Medi (Germany)'),
(60862, 'https://ror.org/02kj91m96', 'en', 1, 'https://ror.org/02kj91m96 Leipzig Heart Institute'),
(60863, 'https://ror.org/04h9drp94', 'no_lang_code', 1, 'https://ror.org/04h9drp94 Leo Pharma (Germany)'),
(60864, 'https://ror.org/05y922z47', 'en', 1, 'https://ror.org/05y922z47 Leonardis Foundation'),
(60865, 'https://ror.org/035mdk862', 'no_lang_code', 1, 'https://ror.org/035mdk862 Medi-Tate (Israel)'),
(60866, 'https://ror.org/05pzx1a74', 'no_lang_code', 1, 'https://ror.org/05pzx1a74 Lipogen (Israel)'),
(60867, 'https://ror.org/01a7n9s35', 'no_lang_code', 1, 'https://ror.org/01a7n9s35 Medico-Academic Consultings (Germany)'),
(60868, 'https://ror.org/03h8wam21', 'de', 1, 'https://ror.org/03h8wam21 Schön Klinik München Schwabing'),
(60869, 'https://ror.org/01hf1z671', 'no_lang_code', 1, 'https://ror.org/01hf1z671 LIV Pharma (Germany)'),
(60870, 'https://ror.org/029705428', 'en', 1, 'https://ror.org/029705428 Department of Education'),
(60871, 'https://ror.org/03xgnab40', 'de', 1, 'https://ror.org/03xgnab40 Neurologisches Fachkrankenhaus für Bewegungsstörungen/Parkinson'),
(60872, 'https://ror.org/05sqsny02', 'no_lang_code', 1, 'https://ror.org/05sqsny02 Lophius Biosciences (Germany)'),
(60873, 'https://ror.org/04zys7342', 'de', 1, 'https://ror.org/04zys7342 Klinik und Poliklinik für Psychiatrie und Psychotherapie des Kindes- und Jugendalters'),
(60874, 'https://ror.org/05ch34p88', 'de', 1, 'https://ror.org/05ch34p88 Neurologisches Rehabilitationszentrum Leipzig'),
(60875, 'https://ror.org/05agddf32', 'de', 1, 'https://ror.org/05agddf32 MVZ - Kurfürstendamm'),
(60876, 'https://ror.org/00f180m78', 'de', 1, 'https://ror.org/00f180m78 Klinik und Poliklinik für Psychosomatik und Psychotherapie'),
(60877, 'https://ror.org/01b4gqk18', 'de', 1, 'https://ror.org/01b4gqk18 Sana Klinikum'),
(60878, 'https://ror.org/04bpnyr93', 'en', 1, 'https://ror.org/04bpnyr93 Aesthetico'),
(60879, 'https://ror.org/027nwsc63', 'en', 1, 'https://ror.org/027nwsc63 Medical Genetics Center Medizinisch Genetisches Zentrum'),
(60880, 'https://ror.org/01dc7nx94', 'de', 1, 'https://ror.org/01dc7nx94 Luisenkrankenhaus'),
(60881, 'https://ror.org/01nxxp011', 'de', 1, 'https://ror.org/01nxxp011 Klinik und Poliklinik für Psychosomatische Medizin und Psychotherapie'),
(60882, 'https://ror.org/01rhjvw42', 'no_lang_code', 1, 'https://ror.org/01rhjvw42 NewConceptOncology (Germany)'),
(60883, 'https://ror.org/039skw388', 'no_lang_code', 1, 'https://ror.org/039skw388 Lundbeck (Germany)'),
(60884, 'https://ror.org/02mqqja67', 'de', 1, 'https://ror.org/02mqqja67 Lungenheilkunde München-Pasing'),
(60885, 'https://ror.org/036w42389', 'de', 1, 'https://ror.org/036w42389 Niedersächsisches Landesamt für Soziales, Jugend und Familie'),
(60886, 'https://ror.org/01ec7fw73', 'de', 1, 'https://ror.org/01ec7fw73 Klinik und Poliklinik für Psychosomatische Medizin und Psychotherapie'),
(60887, 'https://ror.org/03qv69876', 'de', 1, 'https://ror.org/03qv69876 Lungenklinik Kƶln-Merheim'),
(60888, 'https://ror.org/01nwbp351', 'de', 1, 'https://ror.org/01nwbp351 Nierenzentrum Heidelberg'),
(60889, 'https://ror.org/04h616z85', 'de', 1, 'https://ror.org/04h616z85 LVR-Klinik Bonn'),
(60890, 'https://ror.org/00gfym921', 'de', 1, 'https://ror.org/00gfym921 Klinik und Poliklinik für Urologie'),
(60891, 'https://ror.org/00aj8m584', 'no_lang_code', 1, 'https://ror.org/00aj8m584 Optana (Germany)'),
(60892, 'https://ror.org/05g6ncb39', 'de', 1, 'https://ror.org/05g6ncb39 Niederƶsterreichischer Gesundheits- und Sozialfond'),
(60893, 'https://ror.org/05my1gr06', 'nl', 1, 'https://ror.org/05my1gr06 Stichting Toegepast Wetenschappelijk Instituut voor Neuromodulatie'),
(60894, 'https://ror.org/00ef78t34', 'no_lang_code', 1, 'https://ror.org/00ef78t34 Novaliq (Germany)'),
(60895, 'https://ror.org/056efxn58', 'de', 1, 'https://ror.org/056efxn58 Klinik und Poliklinik für Urologie, Kinderurologie und Andrologie'),
(60896, 'https://ror.org/00rmx3f80', 'no_lang_code', 1, 'https://ror.org/00rmx3f80 Novatex (Germany)'),
(60897, 'https://ror.org/0264gwr07', 'no_lang_code', 1, 'https://ror.org/0264gwr07 Novel (Germany)'),
(60898, 'https://ror.org/02r15q206', 'no_lang_code', 1, 'https://ror.org/02r15q206 Novitas BKK (Germany)'),
(60899, 'https://ror.org/02fxb8p51', 'de', 1, 'https://ror.org/02fxb8p51 Familie Mehdorn Stiftung'),
(60900, 'https://ror.org/03nyzw632', 'no_lang_code', 1, 'https://ror.org/03nyzw632 Novo Nordisk (Germany)'),
(60901, 'https://ror.org/0584knp84', 'no_lang_code', 1, 'https://ror.org/0584knp84 Nucleix (Israel)'),
(60902, 'https://ror.org/002hjb015', 'de', 1, 'https://ror.org/002hjb015 Klinik und Poliklinik für Mund-, Kiefer- und Plastische Gesichtschirurgie'),
(60903, 'https://ror.org/037da6921', 'pl', 1, 'https://ror.org/037da6921 Fundacja NUTRICIA NUTRICIA Foundation'),
(60904, 'https://ror.org/05t6cb670', 'no_lang_code', 1, 'https://ror.org/05t6cb670 MetaX - Institut für Diätetik (Germany)'),
(60905, 'https://ror.org/05r2zqh89', 'no_lang_code', 1, 'https://ror.org/05r2zqh89 Nutricia (Germany)'),
(60906, 'https://ror.org/028e4qh46', 'no_lang_code', 1, 'https://ror.org/028e4qh46 New Valve Technology (Germany)'),
(60907, 'https://ror.org/01awb6242', 'de', 1, 'https://ror.org/01awb6242 Kliniken des Bezirks Oberbayern'),
(60908, 'https://ror.org/05wsbcr05', 'de', 1, 'https://ror.org/05wsbcr05 Medprevent Ottobrunn'),
(60909, 'https://ror.org/040h2ty70', 'no_lang_code', 1, 'https://ror.org/040h2ty70 Optima Pharmazeutische (Germany)'),
(60910, 'https://ror.org/049sbnt53', 'no_lang_code', 1, 'https://ror.org/049sbnt53 Migros (Switzerland)'),
(60911, 'https://ror.org/052c7xn57', 'de', 1, 'https://ror.org/052c7xn57 Oberberg Stiftung'),
(60912, 'https://ror.org/0007f0665', 'no_lang_code', 1, 'https://ror.org/0007f0665 MicroPort Orthopedics (Netherlands)'),
(60913, '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é'),
(60914, 'https://ror.org/02dt6qg89', 'no_lang_code', 1, 'https://ror.org/02dt6qg89 Organ Recovery Systems (Belgium)'),
(60915, 'https://ror.org/04hjayk14', 'no_lang_code', 1, 'https://ror.org/04hjayk14 Terumo (Germany)'),
(60916, 'https://ror.org/04n052q31', 'no_lang_code', 1, 'https://ror.org/04n052q31 Miha Bodytec (Germany)'),
(60917, 'https://ror.org/01jw20968', 'no_lang_code', 1, 'https://ror.org/01jw20968 Orochemie (Germany)'),
(60918, 'https://ror.org/00qr9d796', 'no_lang_code', 1, 'https://ror.org/00qr9d796 Perrigo (Germany)'),
(60919, 'https://ror.org/03sk0gd87', 'no_lang_code', 1, 'https://ror.org/03sk0gd87 Orthofix (Italy)'),
(60920, 'https://ror.org/05j6kar92', 'no_lang_code', 1, 'https://ror.org/05j6kar92 Omnicare Pharma (Germany)'),
(60921, 'https://ror.org/01qwfvp91', 'no_lang_code', 1, 'https://ror.org/01qwfvp91 Orthogen (Germany)'),
(60922, 'https://ror.org/0372q3g13', 'no_lang_code', 1, 'https://ror.org/0372q3g13 oncgnostics (Germany)'),
(60923, 'https://ror.org/0581as286', 'en', 1, 'https://ror.org/0581as286 Square Hospitals'),
(60924, 'https://ror.org/045axgc25', 'de', 1, 'https://ror.org/045axgc25 Ministerium für Arbeit, Gesundheit und Soziales des Landes Nordrhein-Westfalen'),
(60925, 'https://ror.org/01anv7k29', 'de', 1, 'https://ror.org/01anv7k29 Klinikum am Weissenhof'),
(60926, 'https://ror.org/0439wry26', 'de', 1, 'https://ror.org/0439wry26 Ministerium für Heimat, Kommunales, Bau und Gleichstellung des Landes Nordrhein-Westfalen'),
(60927, 'https://ror.org/03z5ka349', 'de', 1, 'https://ror.org/03z5ka349 Klinikum Konstanz'),
(60928, 'https://ror.org/01249zp52', 'en', 1, 'https://ror.org/01249zp52 Osteopathie Plus'),
(60929, 'https://ror.org/03fsnw247', 'no_lang_code', 1, 'https://ror.org/03fsnw247 OnkoDataMed (Germany)'),
(60930, 'https://ror.org/05w3d1m46', 'de', 1, 'https://ror.org/05w3d1m46 Ɩsterreichische Gesellschaft für AnƤsthesiologie, Reanimation und Intensivmedizin'),
(60931, 'https://ror.org/029hy6086', 'de', 1, 'https://ror.org/029hy6086 Klinikverbund Südwest'),
(60932, 'https://ror.org/01f23xx77', 'de', 1, 'https://ror.org/01f23xx77 Misereor'),
(60933, 'https://ror.org/01h6pad21', 'de', 1, 'https://ror.org/01h6pad21 Psychologische Praxengemeinschaft'),
(60934, 'https://ror.org/000ad3960', 'no_lang_code', 1, 'https://ror.org/000ad3960 Oystershell (Belgium)'),
(60935, 'https://ror.org/0198kn518', 'de', 1, 'https://ror.org/0198kn518 Sächsisches Staatsministerium für Soziales und Verbraucherschutz'),
(60936, 'https://ror.org/05mvyv273', 'de', 1, 'https://ror.org/05mvyv273 Das Onkologische und Palliativmedizinische Netzwerk Landshut'),
(60937, 'https://ror.org/018w9fc90', 'no_lang_code', 1, 'https://ror.org/018w9fc90 Sachtleben (Germany)'),
(60938, 'https://ror.org/05dyfnr03', 'de', 1, 'https://ror.org/05dyfnr03 Park-Klinik Birkenwerder'),
(60939, 'https://ror.org/0071tdq26', 'de', 1, 'https://ror.org/0071tdq26 Sana Klinikum Lichtenberg'),
(60940, 'https://ror.org/01w1m0197', 'de', 1, 'https://ror.org/01w1m0197 Park-Klinik Weißensee'),
(60941, 'https://ror.org/04wbedy98', 'no_lang_code', 1, 'https://ror.org/04wbedy98 Storch und Beller'),
(60942, 'https://ror.org/05yh2yz22', 'de', 1, 'https://ror.org/05yh2yz22 Krankenhaus Jerusalem'),
(60943, 'https://ror.org/055w00q26', 'de', 1, 'https://ror.org/055w00q26 Parkinson-Klinik Ortenau'),
(60944, 'https://ror.org/02wr5jh59', 'no_lang_code', 1, 'https://ror.org/02wr5jh59 Pulmonx (Switzerland)'),
(60945, 'https://ror.org/03y7y3w57', 'de', 1, 'https://ror.org/03y7y3w57 Parkklinik Wiesbaden Schlangenbad'),
(60946, 'https://ror.org/05b58s093', 'no_lang_code', 1, 'https://ror.org/05b58s093 Pentracor (Germany)'),
(60947, 'https://ror.org/04zj53020', 'no_lang_code', 1, 'https://ror.org/04zj53020 Onkotrakt (Germany)'),
(60948, 'https://ror.org/04gj3vw69', 'de', 1, 'https://ror.org/04gj3vw69 Physiotherapie und Lauftherapie Zentrum'),
(60949, 'https://ror.org/03n61m405', 'no_lang_code', 1, 'https://ror.org/03n61m405 Onkovis (Germany)'),
(60950, 'https://ror.org/0022e0327', 'no_lang_code', 1, 'https://ror.org/0022e0327 Schaper & Brümmer (Germany)'),
(60951, 'https://ror.org/00rad0v56', 'no_lang_code', 1, 'https://ror.org/00rad0v56 Kona Medical (United States)'),
(60952, 'https://ror.org/055x1zb82', 'no_lang_code', 1, 'https://ror.org/055x1zb82 Osypka (Germany)'),
(60953, 'https://ror.org/05090cn78', 'de', 1, 'https://ror.org/05090cn78 Onkozentrum Dresden'),
(60954, 'https://ror.org/029zvxp24', 'no_lang_code', 1, 'https://ror.org/029zvxp24 Diamant (Germany)'),
(60955, 'https://ror.org/02xw5a882', 'no_lang_code', 1, 'https://ror.org/02xw5a882 QD Laser (Germany)'),
(60956, 'https://ror.org/00bvdsg05', 'de', 1, 'https://ror.org/00bvdsg05 Krankenhaus Agatharied'),
(60957, 'https://ror.org/050k6mb72', 'no_lang_code', 1, 'https://ror.org/050k6mb72 PharmaCept (Germany)'),
(60958, 'https://ror.org/02devh349', 'de', 1, 'https://ror.org/02devh349 Schƶn Klinik Neustadt'),
(60959, 'https://ror.org/04cm8jr24', 'de', 1, 'https://ror.org/04cm8jr24 Klinikum Würzburg Mitte'),
(60960, 'https://ror.org/039g7tm38', 'de', 1, 'https://ror.org/039g7tm38 Alzheimer Schweiz'),
(60961, 'https://ror.org/057889117', 'de', 1, 'https://ror.org/057889117 Investitionsbank Sachsen-Anhalt'),
(60962, 'https://ror.org/02mgzgr95', 'it', 1, 'https://ror.org/02mgzgr95 Istituto delle Scienze Neurologiche di Bologna'),
(60963, 'https://ror.org/05pkc2853', 'no_lang_code', 1, 'https://ror.org/05pkc2853 SCHWIND eye-tech-solutions (Germany)'),
(60964, 'https://ror.org/05xp1nk14', 'no_lang_code', 1, 'https://ror.org/05xp1nk14 Isarna Therapeutics (Germany)'),
(60965, 'https://ror.org/01gm5fk44', 'de', 1, 'https://ror.org/01gm5fk44 Informationszentrum für Sexualität und Gesundheit'),
(60966, 'https://ror.org/04vdm6x24', 'de', 1, 'https://ror.org/04vdm6x24 Senatsverwaltung für Gesundheit, Pflege und Gleichstellung'),
(60967, 'https://ror.org/0118ke170', 'no_lang_code', 1, 'https://ror.org/0118ke170 Itamar Medical (Israel)'),
(60968, 'https://ror.org/016sspy41', 'no_lang_code', 1, 'https://ror.org/016sspy41 SeneCura Kliniken und Heime (Austria)'),
(60969, 'https://ror.org/03tre7r66', 'no_lang_code', 1, 'https://ror.org/03tre7r66 Isotopen Technologien München (Germany)'),
(60970, 'https://ror.org/03qb4sg13', 'no_lang_code', 1, 'https://ror.org/03qb4sg13 Septodont (France)'),
(60971, 'https://ror.org/02z8m4v62', 'en', 1, 'https://ror.org/02z8m4v62 IVF Centers Prof. Zech Willkommen in den IVF Zentren Prof. Zech'),
(60972, 'https://ror.org/02wv88v83', 'no_lang_code', 1, 'https://ror.org/02wv88v83 Ivoclar Vivadent (Germany)'),
(60973, 'https://ror.org/03xsf0n03', 'no_lang_code', 1, 'https://ror.org/03xsf0n03 Sevika Medical (Switzerland)'),
(60974, 'https://ror.org/04cwh4511', 'no_lang_code', 1, 'https://ror.org/04cwh4511 KPMG (Australia)'),
(60975, 'https://ror.org/01zpcsk19', 'no_lang_code', 1, 'https://ror.org/01zpcsk19 SIGNUS Medizintechnik (Germany)'),
(60976, 'https://ror.org/008zpgd78', 'no_lang_code', 1, 'https://ror.org/008zpgd78 Qualissima (France)'),
(60977, 'https://ror.org/04crn0128', 'no_lang_code', 1, 'https://ror.org/04crn0128 Agrokor (Croatia)'),
(60978, 'https://ror.org/04w65pb91', 'no_lang_code', 1, 'https://ror.org/04w65pb91 SIGVARIS Group (Switzerland)'),
(60979, 'https://ror.org/014hhbt69', 'nl', 1, 'https://ror.org/014hhbt69 ALS Centrum Nederland'),
(60980, 'https://ror.org/00ab7gt92', 'no_lang_code', 1, 'https://ror.org/00ab7gt92 Sinclair Pharma'),
(60981, 'https://ror.org/02xa21y06', 'en', 1, 'https://ror.org/02xa21y06 QUIRIS Healthcare'),
(60982, 'https://ror.org/05jnah305', 'no_lang_code', 1, 'https://ror.org/05jnah305 novacare (Germany)'),
(60983, 'https://ror.org/00vsbee25', 'de', 1, 'https://ror.org/00vsbee25 Jüdisches Krankenhaus Berlin'),
(60984, 'https://ror.org/02q7g9n47', 'no_lang_code', 1, 'https://ror.org/02q7g9n47 Phonak (Germany)'),
(60985, 'https://ror.org/044s59k57', 'de', 1, 'https://ror.org/044s59k57 SƤchsisches Krankenhaus Rodewisch'),
(60986, 'https://ror.org/03rmb1244', 'no_lang_code', 1, 'https://ror.org/03rmb1244 Radiometer (Germany)'),
(60987, 'https://ror.org/03y9e9713', 'de', 1, 'https://ror.org/03y9e9713 Raphaelsklinik Münster'),
(60988, 'https://ror.org/01kdwe889', 'no_lang_code', 1, 'https://ror.org/01kdwe889 Juzo (Germany)'),
(60989, 'https://ror.org/038c74q03', 'no_lang_code', 1, 'https://ror.org/038c74q03 Reck Technik (Germany)'),
(60990, 'https://ror.org/04v9hjm42', 'de', 1, 'https://ror.org/04v9hjm42 Juliusspital Foundation Stiftung Juliusspital'),
(60991, 'https://ror.org/04q550429', 'de', 1, 'https://ror.org/04q550429 Sozialversicherung für Landwirtschaft, Forsten und Gartenbau'),
(60992, 'https://ror.org/04q81mh44', 'no_lang_code', 1, 'https://ror.org/04q81mh44 Piramal (United Kingdom)'),
(60993, 'https://ror.org/00mwvbx98', 'no_lang_code', 1, 'https://ror.org/00mwvbx98 K2M (United States)'),
(60994, 'https://ror.org/03y5bbq43', 'no_lang_code', 1, 'https://ror.org/03y5bbq43 PlantTec Medical (Germany)'),
(60995, 'https://ror.org/00nganv68', 'no_lang_code', 1, 'https://ror.org/00nganv68 Regedent (Switzerland)'),
(60996, 'https://ror.org/026p92b89', 'no_lang_code', 1, 'https://ror.org/026p92b89 KA Medical (United States)'),
(60997, 'https://ror.org/009gj6k64', 'de', 1, 'https://ror.org/009gj6k64 DRK Kamillus Klinik'),
(60998, 'https://ror.org/0084rd854', 'en', 1, 'https://ror.org/0084rd854 Institute for Sports Medicine Sportmedizinische Institut'),
(60999, 'https://ror.org/01prj4323', 'de', 1, 'https://ror.org/01prj4323 Regio Kliniken'),
(61000, 'https://ror.org/03a1e0438', 'no_lang_code', 1, 'https://ror.org/03a1e0438 Kaneka (Germany)'),
(61001, 'https://ror.org/013ne8p22', 'de', 1, 'https://ror.org/013ne8p22 Poliklinik für Endokrinologie, Diabetologie und Präventivmedizin'),
(61002, 'https://ror.org/02rw7eq98', 'de', 1, 'https://ror.org/02rw7eq98 Rehaklinik Glotterbad'),
(61003, 'https://ror.org/02mj1v005', 'de', 1, 'https://ror.org/02mj1v005 Poliklinik für Präventive Zahnheilkunde und Kinderzahnheilkunde'),
(61004, 'https://ror.org/00q236z92', 'de', 1, 'https://ror.org/00q236z92 SRH Wald-Klinikum Gera'),
(61005, 'https://ror.org/03rswdy10', 'de', 1, 'https://ror.org/03rswdy10 Poliklinik für Zahnärztliche Prothetik'),
(61006, 'https://ror.org/01ynege53', 'no_lang_code', 1, 'https://ror.org/01ynege53 Rehaptix'),
(61007, 'https://ror.org/03rf7pf16', 'de', 1, 'https://ror.org/03rf7pf16 Karl Schlecht Stiftung'),
(61008, 'https://ror.org/01bavmk12', 'de', 1, 'https://ror.org/01bavmk12 Poliklinik für Zahnärztliche Prothetik mit Propädeutik'),
(61009, 'https://ror.org/020f8h126', 'de', 1, 'https://ror.org/020f8h126 Poliklinik für Zahnärztliche Prothetik und Werkstoffkunde'),
(61010, 'https://ror.org/050wz9j65', 'de', 1, 'https://ror.org/050wz9j65 Rehazentrum Wilhelmshaven'),
(61011, 'https://ror.org/028vdf012', 'no_lang_code', 1, 'https://ror.org/028vdf012 RelaxBogen (Germany)'),
(61012, 'https://ror.org/045xvrw74', 'en', 1, 'https://ror.org/045xvrw74 German Insurance Association Gesamtverband der Deutschen Versicherungswirtschaft'),
(61013, 'https://ror.org/038esqp30', 'de', 1, 'https://ror.org/038esqp30 St. Elisabethen-Krankenhaus Frankfurt'),
(61014, 'https://ror.org/04gpj3340', 'de', 1, 'https://ror.org/04gpj3340 Poliklinik für Zahnerhaltung und Parodontologie'),
(61015, 'https://ror.org/03nemnn25', 'no_lang_code', 1, 'https://ror.org/03nemnn25 Karr Dental (Switzerland)'),
(61016, 'https://ror.org/00nkf9b38', 'de', 1, 'https://ror.org/00nkf9b38 St. Marien- und St. Annastiftskrankenhaus'),
(61017, 'https://ror.org/04gxk9y84', 'de', 1, 'https://ror.org/04gxk9y84 Kassenärztliche Vereinigung Baden-Württemberg'),
(61018, 'https://ror.org/0470v5z93', 'de', 1, 'https://ror.org/0470v5z93 Post Apotheke'),
(61019, 'https://ror.org/02c30a260', 'en', 1, 'https://ror.org/02c30a260 Republican Scientific and Practical Centre of Pulmonology and Tuberculosis Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр пульмонологии Šø Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»ŠµŠ·Š° Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŠ°Š½ŃŠŗŃ– навукова-практычны Ń†ŃŠ½Ń‚Ń€ ŠæŃƒŠ»ŃŒŠ¼Š°Š½Š°Š»Š¾Š³Ń–Ń– і Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»Ń‘Š·Ńƒ'),
(61020, 'https://ror.org/04eqa0k17', 'de', 1, 'https://ror.org/04eqa0k17 KassenƤrztliche Vereinigung Sachsen-Anhalt'),
(61021, 'https://ror.org/05scpew87', 'de', 1, 'https://ror.org/05scpew87 St. Josefskrankenhaus Freiburg'),
(61022, 'https://ror.org/02paqmq68', 'de', 1, 'https://ror.org/02paqmq68 St. Vinzenz Kliniken Pfronten im AllgƤu'),
(61023, 'https://ror.org/00snsrx64', 'no_lang_code', 1, 'https://ror.org/00snsrx64 Precisis (Germany)'),
(61024, 'https://ror.org/019v04n80', 'de', 1, 'https://ror.org/019v04n80 Katholisches Krankenhaus St. Johann Nepomuk'),
(61025, 'https://ror.org/01arv1h94', 'en', 1, 'https://ror.org/01arv1h94 St. Josefs-Hospital Cloppenburg'),
(61026, 'https://ror.org/03dn8ag70', 'de', 1, 'https://ror.org/03dn8ag70 KaufmƤnnische Krankenkasse'),
(61027, 'https://ror.org/01zv88x17', 'no_lang_code', 1, 'https://ror.org/01zv88x17 Juno Therapeutics (Germany)'),
(61028, 'https://ror.org/04a59jq61', 'no_lang_code', 1, 'https://ror.org/04a59jq61 Procon (Germany)'),
(61029, 'https://ror.org/03wkdtr38', 'no_lang_code', 1, 'https://ror.org/03wkdtr38 Profound Medical (Canada)'),
(61030, 'https://ror.org/023pbyr02', 'no_lang_code', 1, 'https://ror.org/023pbyr02 SteadySense (Austria)'),
(61031, 'https://ror.org/00zy6xm60', 'no_lang_code', 1, 'https://ror.org/00zy6xm60 KCI (Germany)'),
(61032, 'https://ror.org/05dyssa78', 'no_lang_code', 1, 'https://ror.org/05dyssa78 Provascular (Germany)'),
(61033, 'https://ror.org/00reds669', 'de', 1, 'https://ror.org/00reds669 St. Mauritius Therapieklinik'),
(61034, 'https://ror.org/01dwwvh23', 'de', 1, 'https://ror.org/01dwwvh23 rgb Onkologisches Management'),
(61035, 'https://ror.org/03vhzfd61', 'no_lang_code', 1, 'https://ror.org/03vhzfd61 SteriPharm (Germany)'),
(61036, 'https://ror.org/01jm7yc11', 'no_lang_code', 1, 'https://ror.org/01jm7yc11 KCI (Netherlands)'),
(61037, 'https://ror.org/0208vms90', 'de', 1, 'https://ror.org/0208vms90 Landesbank Baden-Württemberg'),
(61038, 'https://ror.org/00pw9bg10', 'no_lang_code', 1, 'https://ror.org/00pw9bg10 Merz (United States)'),
(61039, 'https://ror.org/04xhn5b95', 'de', 1, 'https://ror.org/04xhn5b95 Universitätsklinik für Kinder und Jugendpsychiatrie'),
(61040, 'https://ror.org/03d8ync95', 'de', 1, 'https://ror.org/03d8ync95 Stiftung Deutsche Depressionshilfe'),
(61041, 'https://ror.org/009xp9857', 'de', 1, 'https://ror.org/009xp9857 Deutsche Stiftung Eierstockkrebs'),
(61042, 'https://ror.org/04f6tvf20', 'no_lang_code', 1, 'https://ror.org/04f6tvf20 PSI CRO (United Kingdom)'),
(61043, 'https://ror.org/03rmqr166', 'de', 1, 'https://ror.org/03rmqr166 KfH Kuratorium für Dialyse und Nierentransplantation'),
(61044, 'https://ror.org/050eva982', 'en', 1, 'https://ror.org/050eva982 German Council for Scientific Information Infrastructures Rat für Informationsinfrastrukturen'),
(61045, 'https://ror.org/021crbk07', 'sv', 1, 'https://ror.org/021crbk07 Riddargatan 1'),
(61046, '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'),
(61047, 'https://ror.org/04xdas356', 'no_lang_code', 1, 'https://ror.org/04xdas356 Unfallkasse Rheinland-Pfalz (Germany)'),
(61048, 'https://ror.org/055kyaa64', 'de', 1, 'https://ror.org/055kyaa64 Rheinhessen-Fachklinik Mainz'),
(61049, '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'),
(61050, 'https://ror.org/02ntwx703', 'de', 1, 'https://ror.org/02ntwx703 Stiftung Irene'),
(61051, 'https://ror.org/01ezw9n40', 'de', 1, 'https://ror.org/01ezw9n40 OrthopƤdische UniversitƤtsklinik'),
(61052, 'https://ror.org/031nmyb26', 'en', 1, 'https://ror.org/031nmyb26 Reference Institute for Bioanalytics Referenzinstitut für Bioanalytik'),
(61053, 'https://ror.org/00adthh60', 'de', 1, 'https://ror.org/00adthh60 Vestische Caritas-Kliniken'),
(61054, 'https://ror.org/05nvfzh19', 'de', 1, 'https://ror.org/05nvfzh19 Leppermühle'),
(61055, 'https://ror.org/05nhtke22', 'de', 1, 'https://ror.org/05nhtke22 Vinzenzkrankenhaus Hannover'),
(61056, 'https://ror.org/04kn1yz10', 'de', 1, 'https://ror.org/04kn1yz10 Rosenpark Klinik'),
(61057, 'https://ror.org/04janzm11', 'de', 1, 'https://ror.org/04janzm11 Rotkreuzklinikum München'),
(61058, 'https://ror.org/053k58g56', 'de', 1, 'https://ror.org/053k58g56 Rückenzentrum am Michel'),
(61059, 'https://ror.org/05c06xk76', 'de', 1, 'https://ror.org/05c06xk76 Universitätsklinik für Stereotaktische Neurochirurgie'),
(61060, 'https://ror.org/02w0smy45', 'de', 1, 'https://ror.org/02w0smy45 Universitätsklinik für Strahlentherapie'),
(61061, 'https://ror.org/00dpz6e68', 'de', 1, 'https://ror.org/00dpz6e68 Rut- und Klaus-Bahlsen-Stiftung'),
(61062, 'https://ror.org/03nayh382', 'no_lang_code', 1, 'https://ror.org/03nayh382 VITA (Germany)'),
(61063, 'https://ror.org/037rc8f81', 'no_lang_code', 1, 'https://ror.org/037rc8f81 S-Biomedic (Germany)'),
(61064, 'https://ror.org/00cgpr989', 'en', 1, 'https://ror.org/00cgpr989 Lucamed'),
(61065, 'https://ror.org/05jpsw268', 'de', 1, 'https://ror.org/05jpsw268 SƤchsische Krebsgesellschaft'),
(61066, 'https://ror.org/05sxgd993', 'de', 1, 'https://ror.org/05sxgd993 Stiftung Leben mit Krebs'),
(61067, 'https://ror.org/02zvbmm61', 'en', 1, 'https://ror.org/02zvbmm61 Vitos Orthopedic Clinic Kassel Vitos OrthopƤdische Klinik Kassel'),
(61068, 'https://ror.org/00mx9kh08', 'de', 1, 'https://ror.org/00mx9kh08 MEDIAN Klaus-Miehlke-Klinik Wiesbaden'),
(61069, 'https://ror.org/05medrv10', 'de', 1, 'https://ror.org/05medrv10 Klinik und Poliklinik für Psychotherapie und Psychosomatik'),
(61070, 'https://ror.org/0309b0n18', 'no_lang_code', 1, 'https://ror.org/0309b0n18 VOCO (Germany)'),
(61071, 'https://ror.org/03hw0pv02', 'de', 1, 'https://ror.org/03hw0pv02 Vogtland-Klinik'),
(61072, 'https://ror.org/02t7cwz48', 'de', 1, 'https://ror.org/02t7cwz48 Stiftung Tumorforschung Kopf-Hals'),
(61073, 'https://ror.org/032b8z185', 'no_lang_code', 1, 'https://ror.org/032b8z185 Vygon (Germany)'),
(61074, 'https://ror.org/02dqsp291', 'de', 1, 'https://ror.org/02dqsp291 UniversitƤts-Frauenklinik des Saarlandes'),
(61075, 'https://ror.org/05b6jwz86', 'no_lang_code', 1, 'https://ror.org/05b6jwz86 World of Medicine (Germany)'),
(61076, 'https://ror.org/04rr26086', 'de', 1, 'https://ror.org/04rr26086 UniversitƤtskinderklinik'),
(61077, 'https://ror.org/00ktr8190', 'no_lang_code', 1, 'https://ror.org/00ktr8190 Fujifilm (Germany)'),
(61078, 'https://ror.org/041n30849', 'de', 1, 'https://ror.org/041n30849 Union zur Fƶrderung von Oel- und Proteinpflanzen e.V.'),
(61079, 'https://ror.org/03h9eev95', 'de', 1, 'https://ror.org/03h9eev95 Theo und Friedl Schƶller-Stiftung'),
(61080, 'https://ror.org/03gsjff75', 'de', 1, 'https://ror.org/03gsjff75 Waldburg-Zeil Kliniken'),
(61081, 'https://ror.org/04nqf3887', 'de', 1, 'https://ror.org/04nqf3887 Schön Klinik Nürnberg Fürth'),
(61082, 'https://ror.org/00v2d0427', 'de', 1, 'https://ror.org/00v2d0427 Waldkrankenhaus Rudolf Elle'),
(61083, 'https://ror.org/049fxhe24', 'de', 1, 'https://ror.org/049fxhe24 Klinik Bad Bergzabern'),
(61084, 'https://ror.org/001x5fb42', 'de', 1, 'https://ror.org/001x5fb42 Therapiezentrum Harburg'),
(61085, 'https://ror.org/002rstz54', 'no_lang_code', 1, 'https://ror.org/002rstz54 TherapySelect (Germany)'),
(61086, 'https://ror.org/02ts9m233', 'en', 1, 'https://ror.org/02ts9m233 Sudan Medical Specialization Board'),
(61087, 'https://ror.org/056ha9e61', 'de', 1, 'https://ror.org/056ha9e61 Urologische Klinik München'),
(61088, 'https://ror.org/002jry571', 'no_lang_code', 1, 'https://ror.org/002jry571 Ypsomed (Switzerland)'),
(61089, 'https://ror.org/01m5aac17', 'no_lang_code', 1, 'https://ror.org/01m5aac17 Ypsomed (Germany)'),
(61090, 'https://ror.org/00w93yd70', 'no_lang_code', 1, 'https://ror.org/00w93yd70 Süddeutsche Zuckerrübenverwertungs-Genossenschaft (Germany)'),
(61091, 'https://ror.org/04ppvf629', 'no_lang_code', 1, 'https://ror.org/04ppvf629 Weleda (Switzerland)'),
(61092, 'https://ror.org/02kfmqh26', 'de', 1, 'https://ror.org/02kfmqh26 ZahnƤrzte an der Kleinmachnower Schleuse Stahnsdorf'),
(61093, 'https://ror.org/04rwyp244', 'de', 1, 'https://ror.org/04rwyp244 St. Maria-Hilf-Krankenhaus'),
(61094, 'https://ror.org/03hcgt996', 'no_lang_code', 1, 'https://ror.org/03hcgt996 Top Caredent (Switzerland)'),
(61095, 'https://ror.org/04enecq37', 'de', 1, 'https://ror.org/04enecq37 Dental Clinic of Bochum Zahnklinik Bochum'),
(61096, 'https://ror.org/01599jv46', 'no_lang_code', 1, 'https://ror.org/01599jv46 Zambon (Germany)'),
(61097, 'https://ror.org/05tkcx517', 'no_lang_code', 1, 'https://ror.org/05tkcx517 Tƶpfer (Germany)'),
(61098, 'https://ror.org/028fgzq86', 'de', 1, 'https://ror.org/028fgzq86 Aktion Pink'),
(61099, 'https://ror.org/00qbqb540', 'de', 1, 'https://ror.org/00qbqb540 Verbundkrankenhaus Bernkastel'),
(61100, 'https://ror.org/008xssk57', 'no_lang_code', 1, 'https://ror.org/008xssk57 gesetzlichen Krankenversicherungen gkv informatik (Germany)'),
(61101, 'https://ror.org/00mtc2v89', 'no_lang_code', 1, 'https://ror.org/00mtc2v89 WH Pharmawerk (Germany)'),
(61102, 'https://ror.org/046dsav87', 'no_lang_code', 1, 'https://ror.org/046dsav87 Swisstom (Switzerland)'),
(61103, 'https://ror.org/019ca7044', 'en', 1, 'https://ror.org/019ca7044 Starnberg Hospital'),
(61104, 'https://ror.org/035f67744', 'en', 1, 'https://ror.org/035f67744 Labor Pachmann'),
(61105, 'https://ror.org/025z7kb61', 'de', 1, 'https://ror.org/025z7kb61 Willi Drache Stiftung'),
(61106, 'https://ror.org/02et29s96', 'no_lang_code', 1, 'https://ror.org/02et29s96 Remedent (Belgium)'),
(61107, 'https://ror.org/05kfwsr87', 'de', 1, 'https://ror.org/05kfwsr87 Wirbelsäulen-Institut München'),
(61108, 'https://ror.org/03twz1019', 'de', 1, 'https://ror.org/03twz1019 Wissenschaftliche Gesellschaft Freiburg'),
(61109, 'https://ror.org/03cba0s60', 'de', 1, 'https://ror.org/03cba0s60 Klinik für Neuropädiatrie und Muskelerkrankungen'),
(61110, 'https://ror.org/000466g76', 'no_lang_code', 1, 'https://ror.org/000466g76 Techniker Krankenkasse (Germany)'),
(61111, 'https://ror.org/022n0hr86', 'no_lang_code', 1, 'https://ror.org/022n0hr86 Synimmune (Germany)'),
(61112, 'https://ror.org/03z1g1222', 'no_lang_code', 1, 'https://ror.org/03z1g1222 TransTissue (Germany)'),
(61113, 'https://ror.org/03b69tw84', 'de', 1, 'https://ror.org/03b69tw84 HNO Bad Bramstedt'),
(61114, 'https://ror.org/05cbe5r14', 'de', 1, 'https://ror.org/05cbe5r14 Zentrum für Psychiatrie Emmendingen'),
(61115, 'https://ror.org/005hh6506', 'no_lang_code', 1, 'https://ror.org/005hh6506 Syntellix (Germany)'),
(61116, 'https://ror.org/05q7twd40', 'de', 1, 'https://ror.org/05q7twd40 Zentrum für Psychiatrie Südwürttemberg'),
(61117, 'https://ror.org/01ztfkn28', 'no_lang_code', 1, 'https://ror.org/01ztfkn28 Trautwein (Germany)'),
(61118, 'https://ror.org/0440mmj74', 'en', 1, 'https://ror.org/0440mmj74 World Childhood Foundation'),
(61119, 'https://ror.org/00p41ea31', 'de', 1, 'https://ror.org/00p41ea31 Verband der Privaten Krankenversicherung'),
(61120, 'https://ror.org/007416t51', 'no_lang_code', 1, 'https://ror.org/007416t51 Sysmex (Germany)'),
(61121, 'https://ror.org/00tnb5p85', 'de', 1, 'https://ror.org/00tnb5p85 Zentrum für Therapeutisches Reiten Johannisberg e.V.'),
(61122, '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'),
(61123, 'https://ror.org/050g10a24', 'no_lang_code', 1, 'https://ror.org/050g10a24 Zimmer Biomet (Switzerland)'),
(61124, 'https://ror.org/00dr70705', 'de', 1, 'https://ror.org/00dr70705 Frauenklinik an der Elbe'),
(61125, 'https://ror.org/040cmp171', 'no_lang_code', 1, 'https://ror.org/040cmp171 Asahi Kasei (Germany)'),
(61126, 'https://ror.org/00s64g989', 'de', 1, 'https://ror.org/00s64g989 Zentrum für Zahn-, Mund- und Kieferheilkunde Poliklinik für Zahnerhaltung und Parodontologie'),
(61127, 'https://ror.org/032kej893', 'de', 1, 'https://ror.org/032kej893 Poliklinik für Zahnärztliche Prothetik'),
(61128, 'https://ror.org/01612ta13', 'en', 1, 'https://ror.org/01612ta13 Aboriginal Health and Medical Research Council of New South Wales'),
(61129, 'https://ror.org/05qtv1p74', 'de', 1, 'https://ror.org/05qtv1p74 Zentrum für Pathologie und Zytodiagnostik'),
(61130, 'https://ror.org/04ps8kg42', 'en', 1, 'https://ror.org/04ps8kg42 Central and North West Queensland Medicare Local'),
(61131, 'https://ror.org/039d9wk42', 'en', 1, 'https://ror.org/039d9wk42 Adventist HealthCare'),
(61132, 'https://ror.org/04mp3v976', 'no_lang_code', 1, 'https://ror.org/04mp3v976 Zur Rose Pharma (Germany)'),
(61133, 'https://ror.org/05knza467', 'en', 1, 'https://ror.org/05knza467 Central Australian Remote Health Development Services'),
(61134, 'https://ror.org/02c4vbg64', 'en', 1, 'https://ror.org/02c4vbg64 Maari Ma Health'),
(61135, 'https://ror.org/05p2gad32', 'en', 1, 'https://ror.org/05p2gad32 Malabam Health Board Aboriginal Corporation'),
(61136, 'https://ror.org/02t9tba68', 'en', 1, 'https://ror.org/02t9tba68 Rare Cancers Australia'),
(61137, 'https://ror.org/03w9gyy65', 'en', 1, 'https://ror.org/03w9gyy65 GI Cancer Institute'),
(61138, 'https://ror.org/01e5pnp05', 'en', 1, 'https://ror.org/01e5pnp05 Bloomhill Cancer Care'),
(61139, 'https://ror.org/004gchq58', 'en', 1, 'https://ror.org/004gchq58 Cooperative Trials Group for Neuro-Oncology'),
(61140, 'https://ror.org/05y9nr091', 'en', 1, 'https://ror.org/05y9nr091 Arts OutWest'),
(61141, 'https://ror.org/04vxexg79', 'en', 1, 'https://ror.org/04vxexg79 MiiMi Aboriginal Corporation'),
(61142, 'https://ror.org/015jr2d68', 'en', 1, 'https://ror.org/015jr2d68 Dandenong Ranges Music Council'),
(61143, 'https://ror.org/00m6z3x97', 'en', 1, 'https://ror.org/00m6z3x97 Boronia Multicultural Services'),
(61144, 'https://ror.org/01dmsg505', 'en', 1, 'https://ror.org/01dmsg505 South Coast Medical Service Aboriginal Corporation'),
(61145, 'https://ror.org/02z84jh79', 'en', 1, 'https://ror.org/02z84jh79 Brain Tumour Alliance Australia'),
(61146, 'https://ror.org/00x1yxe92', 'en', 1, 'https://ror.org/00x1yxe92 Far West Local Health District'),
(61147, 'https://ror.org/0198gqt55', 'en', 1, 'https://ror.org/0198gqt55 Australia and New Zealand Melanoma Trials Group'),
(61148, 'https://ror.org/05rnrcn92', 'en', 1, 'https://ror.org/05rnrcn92 Counterpart'),
(61149, 'https://ror.org/0552kvw18', 'en', 1, 'https://ror.org/0552kvw18 Australia New Zealand Gynaecological Oncology Group'),
(61150, 'https://ror.org/03dfj7v30', 'en', 1, 'https://ror.org/03dfj7v30 ANZCHOG'),
(61151, 'https://ror.org/03vq6fv28', 'en', 1, 'https://ror.org/03vq6fv28 Breast Cancer Network Australia'),
(61152, 'https://ror.org/0239ann44', 'en', 1, 'https://ror.org/0239ann44 Goulburn Valley Health'),
(61153, 'https://ror.org/0468zsk48', 'en', 1, 'https://ror.org/0468zsk48 Bulgarr Ngaru Medical Aboriginal Corporation'),
(61154, 'https://ror.org/04vjrjb03', 'en', 1, 'https://ror.org/04vjrjb03 Illawarra Women''s Health Centre'),
(61155, 'https://ror.org/02hpc5z27', 'en', 1, 'https://ror.org/02hpc5z27 Maralinga Tjarutja'),
(61156, 'https://ror.org/00pc21z31', 'en', 1, 'https://ror.org/00pc21z31 Tharawal Aboriginal'),
(61157, 'https://ror.org/00zxvps74', 'en', 1, 'https://ror.org/00zxvps74 Indigenous Wellbeing Centre'),
(61158, 'https://ror.org/05mty4w15', 'en', 1, 'https://ror.org/05mty4w15 Paediatric Integrated Cancer Service'),
(61159, 'https://ror.org/01aw97q13', 'en', 1, 'https://ror.org/01aw97q13 Ishar Multicultural Women''s Health Centre'),
(61160, 'https://ror.org/01f8wmr43', 'en', 1, 'https://ror.org/01f8wmr43 Jacaranda Community Centre'),
(61161, 'https://ror.org/042xrv022', 'da', 1, 'https://ror.org/042xrv022 Dansk Centralbibliotek for Sydslesvig'),
(61162, 'https://ror.org/04jbfxj71', 'no_lang_code', 1, 'https://ror.org/04jbfxj71 Kalwun (Australia)'),
(61163, 'https://ror.org/020yhzm14', 'en', 1, 'https://ror.org/020yhzm14 Kildonan UnitingCare'),
(61164, 'https://ror.org/058avwz62', 'en', 1, 'https://ror.org/058avwz62 CanRevive'),
(61165, 'https://ror.org/03wtz8b43', 'en', 1, 'https://ror.org/03wtz8b43 Kimberley Aboriginal Medical Services'),
(61166, 'https://ror.org/00mn1ve16', 'en', 1, 'https://ror.org/00mn1ve16 Kurranulla Aboriginal Corporation'),
(61167, 'https://ror.org/00at7nn49', 'en', 1, 'https://ror.org/00at7nn49 Liverpool Women''s Health Centre'),
(61168, 'https://ror.org/02mpkkr38', 'en', 1, 'https://ror.org/02mpkkr38 Aboriginal Health Council of South Australia'),
(61169, 'https://ror.org/014cpc426', 'en', 1, 'https://ror.org/014cpc426 Walgett Aboriginal Medical Service'),
(61170, 'https://ror.org/02agbat11', 'en', 1, 'https://ror.org/02agbat11 Wellington Aboriginal Corporation Health Service'),
(61171, 'https://ror.org/04h3xw934', 'en', 1, 'https://ror.org/04h3xw934 Western Sydney Community Forum'),
(61172, 'https://ror.org/019y11h89', 'en', 1, 'https://ror.org/019y11h89 Western NSW Local Health District'),
(61173, 'https://ror.org/03k4avy53', 'no_lang_code', 1, 'https://ror.org/03k4avy53 Winanga-Li'),
(61174, 'https://ror.org/03gy9dj46', 'en', 1, 'https://ror.org/03gy9dj46 Bear Valley'),
(61175, 'https://ror.org/03z7gnm21', 'en', 1, 'https://ror.org/03z7gnm21 Center for the Improvement of Child Caring'),
(61176, 'https://ror.org/02aers703', 'en', 1, 'https://ror.org/02aers703 Gemstone Foundation'),
(61177, 'https://ror.org/03sevk723', 'en', 1, 'https://ror.org/03sevk723 Divya Shanthi Christian Association and Trust'),
(61178, 'https://ror.org/01jngdt03', 'en', 1, 'https://ror.org/01jngdt03 Genetic Information Research Institute'),
(61179, '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'),
(61180, 'https://ror.org/004w3b772', 'en', 1, 'https://ror.org/004w3b772 Alice Hamilton Occupational Health Center'),
(61181, 'https://ror.org/01p78m944', 'en', 1, 'https://ror.org/01p78m944 Dominican Women''s Development Center'),
(61182, 'https://ror.org/0562b6777', 'en', 1, 'https://ror.org/0562b6777 Center for World Indigenous Studies'),
(61183, 'https://ror.org/05cb6kb05', 'en', 1, 'https://ror.org/05cb6kb05 Penn Highlands DuBois'),
(61184, 'https://ror.org/0471rft76', 'en', 1, 'https://ror.org/0471rft76 Global Alzheimer''s Platform Foundation'),
(61185, 'https://ror.org/052hwbh23', 'no_lang_code', 1, 'https://ror.org/052hwbh23 Centerline Digital (United States)'),
(61186, 'https://ror.org/04sn1zv12', 'en', 1, 'https://ror.org/04sn1zv12 Global Biological Standards Institute'),
(61187, 'https://ror.org/03y902w77', 'en', 1, 'https://ror.org/03y902w77 MidMichigan Medical Center - Alpena'),
(61188, 'https://ror.org/035ws6k56', 'en', 1, 'https://ror.org/035ws6k56 Bioelectromagnetics Society'),
(61189, 'https://ror.org/03849s113', 'en', 1, 'https://ror.org/03849s113 Central Brain Tumor Registry of the United States'),
(61190, 'https://ror.org/01xcb3b67', 'en', 1, 'https://ror.org/01xcb3b67 American Academy of Health Behavior'),
(61191, 'https://ror.org/00tc0zx28', 'en', 1, 'https://ror.org/00tc0zx28 Aspirus Ironwood Hospital'),
(61192, 'https://ror.org/018w9pb03', 'en', 1, 'https://ror.org/018w9pb03 Central Park West Health Center'),
(61193, 'https://ror.org/00bcgyq51', 'en', 1, 'https://ror.org/00bcgyq51 Great Lakes Environmental Center'),
(61194, 'https://ror.org/04e6xj170', 'en', 1, 'https://ror.org/04e6xj170 Centre For Digestive Diseases'),
(61195, 'https://ror.org/03waq1x26', 'en', 1, 'https://ror.org/03waq1x26 Lakewood Health System'),
(61196, 'https://ror.org/051y66958', 'en', 1, 'https://ror.org/051y66958 Grinnell Regional Medical Center'),
(61197, 'https://ror.org/04he90472', 'en', 1, 'https://ror.org/04he90472 American Association for Cancer Education'),
(61198, 'https://ror.org/03djmp837', 'en', 1, 'https://ror.org/03djmp837 Gritman Medical Center'),
(61199, 'https://ror.org/036501p19', 'en', 1, 'https://ror.org/036501p19 Gulf Marine Institute of Technology'),
(61200, 'https://ror.org/00byypm17', 'en', 1, 'https://ror.org/00byypm17 American Health Research Institute'),
(61201, 'https://ror.org/03f9y3f86', 'en', 1, 'https://ror.org/03f9y3f86 Chesterfield Family Practice Center'),
(61202, 'https://ror.org/03h4vsb09', 'en', 1, 'https://ror.org/03h4vsb09 St. Francis Foundation'),
(61203, 'https://ror.org/01n46fg04', 'en', 1, 'https://ror.org/01n46fg04 Everglades Area Health Education Center'),
(61204, 'https://ror.org/03xvt9b17', 'en', 1, 'https://ror.org/03xvt9b17 Hayward Area Memorial Hospital'),
(61205, 'https://ror.org/009tgn030', 'en', 1, 'https://ror.org/009tgn030 American Pancreatic Association'),
(61206, 'https://ror.org/05jb7jk98', 'en', 1, 'https://ror.org/05jb7jk98 Southeast Health District'),
(61207, 'https://ror.org/00awtmg03', 'en', 1, 'https://ror.org/00awtmg03 Northern New Mexico Health Center'),
(61208, 'https://ror.org/00a4sne40', 'en', 1, 'https://ror.org/00a4sne40 The Evolution Institute'),
(61209, 'https://ror.org/02dn5zf89', 'en', 1, 'https://ror.org/02dn5zf89 American Psychopathological Association'),
(61210, '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įŗæ'),
(61211, 'https://ror.org/04cakc678', 'en', 1, 'https://ror.org/04cakc678 Healthcare Association of New York State'),
(61212, 'https://ror.org/014b0sj15', 'en', 1, 'https://ror.org/014b0sj15 Kansas City Indian Center'),
(61213, 'https://ror.org/03pab6q64', 'en', 1, 'https://ror.org/03pab6q64 Children''s Diagnostic & Treatment Center'),
(61214, 'https://ror.org/02wg7hx42', 'en', 1, 'https://ror.org/02wg7hx42 American Society for Apheresis'),
(61215, 'https://ror.org/02sqx2x96', 'en', 1, 'https://ror.org/02sqx2x96 Heart Valve Society of America'),
(61216, 'https://ror.org/05q3rkb48', 'en', 1, 'https://ror.org/05q3rkb48 Mile Bluff Medical Center'),
(61217, 'https://ror.org/03yv08q03', 'en', 1, 'https://ror.org/03yv08q03 Family Guidance Centers'),
(61218, 'https://ror.org/04stq9b42', 'en', 1, 'https://ror.org/04stq9b42 Family Healthcare'),
(61219, 'https://ror.org/02vrnsq93', 'en', 1, 'https://ror.org/02vrnsq93 Hilo Medical Center'),
(61220, 'https://ror.org/0299yrd21', 'en', 1, 'https://ror.org/0299yrd21 Ferre Institute'),
(61221, 'https://ror.org/03h0d2228', 'en', 1, 'https://ror.org/03h0d2228 California Northstate University'),
(61222, 'https://ror.org/04en82c62', 'en', 1, 'https://ror.org/04en82c62 American Tai Chi and Qigong Association'),
(61223, 'https://ror.org/04mnk3a22', 'en', 1, 'https://ror.org/04mnk3a22 Lutheran SeniorLife'),
(61224, 'https://ror.org/04nfn2y71', 'en', 1, 'https://ror.org/04nfn2y71 Ferry County Memorial Hospital'),
(61225, 'https://ror.org/03sc3x439', 'en', 1, 'https://ror.org/03sc3x439 Flagstaff Medical Center'),
(61226, 'https://ror.org/05teweq93', 'en', 1, 'https://ror.org/05teweq93 Androgen Excess and PCOS Society'),
(61227, 'https://ror.org/02cw3t849', 'en', 1, 'https://ror.org/02cw3t849 Suncoast Hospice Institute'),
(61228, 'https://ror.org/00536jb56', 'en', 1, 'https://ror.org/00536jb56 Hospital Consortium of San Mateo County'),
(61229, 'https://ror.org/02bec1n20', 'en', 1, 'https://ror.org/02bec1n20 Milwaukee Emergency Center for Animals'),
(61230, 'https://ror.org/00pejz095', 'en', 1, 'https://ror.org/00pejz095 Foundation for Worker, Veteran and Environmental Health'),
(61231, 'https://ror.org/033jqx441', 'de', 1, 'https://ror.org/033jqx441 Hospital zum Heiligen Geist'),
(61232, 'https://ror.org/025nas141', 'es', 1, 'https://ror.org/025nas141 CONAPAC Civil Association for Conservation of the Peruvian Amazon Environment'),
(61233, 'https://ror.org/03m723j50', 'en', 1, 'https://ror.org/03m723j50 Anson County Health Department'),
(61234, 'https://ror.org/017pp1416', 'en', 1, 'https://ror.org/017pp1416 St. Gallen Oncology Conferences'),
(61235, 'https://ror.org/009ewjt73', 'en', 1, 'https://ror.org/009ewjt73 Four Winds Hospital'),
(61236, 'https://ror.org/04crv0223', 'en', 1, 'https://ror.org/04crv0223 Clear Lake Medical Foundation'),
(61237, 'https://ror.org/015q26m05', 'en', 1, 'https://ror.org/015q26m05 Clearwater Valley Hospital and Clinics'),
(61238, 'https://ror.org/05dcdha72', 'en', 1, 'https://ror.org/05dcdha72 Canton-Potsdam Hospital'),
(61239, 'https://ror.org/04tyx7m15', 'en', 1, 'https://ror.org/04tyx7m15 Carolinas Hospital System');
INSERT INTO `rors` VALUES
(61240, 'https://ror.org/02cp0yq73', 'no_lang_code', 1, 'https://ror.org/02cp0yq73 Cleveland Research (United States)'),
(61241, 'https://ror.org/05415x202', 'en', 1, 'https://ror.org/05415x202 Caron'),
(61242, 'https://ror.org/013213t18', 'en', 1, 'https://ror.org/013213t18 Catholic Leadership Institute'),
(61243, 'https://ror.org/03szj8a51', 'en', 1, 'https://ror.org/03szj8a51 Hussman Institute for Autism'),
(61244, 'https://ror.org/05vstp197', 'en', 1, 'https://ror.org/05vstp197 Association of American Cancer Institutes'),
(61245, 'https://ror.org/022vwef69', 'en', 1, 'https://ror.org/022vwef69 G.A. Carmichael Family Health Center'),
(61246, 'https://ror.org/023kfdf75', 'en', 1, 'https://ror.org/023kfdf75 Association for Chemoreception Sciences'),
(61247, 'https://ror.org/055bwx684', 'en', 1, 'https://ror.org/055bwx684 Association for Utah Community Health'),
(61248, 'https://ror.org/01smr1h94', 'en', 1, 'https://ror.org/01smr1h94 Telligen'),
(61249, 'https://ror.org/02qxd8910', 'en', 1, 'https://ror.org/02qxd8910 Columbus Center'),
(61250, 'https://ror.org/01fg1c160', 'en', 1, 'https://ror.org/01fg1c160 Association of Black Cardiologists'),
(61251, 'https://ror.org/020rmwt56', 'en', 1, 'https://ror.org/020rmwt56 Institute for Global Ethics'),
(61252, 'https://ror.org/01gcrbc43', 'en', 1, 'https://ror.org/01gcrbc43 Center for Human Genetics'),
(61253, 'https://ror.org/029ctf279', 'en', 1, 'https://ror.org/029ctf279 Association of Black Health-System Pharmacists'),
(61254, 'https://ror.org/02ygjtg18', 'en', 1, 'https://ror.org/02ygjtg18 Association of Oncology Social Work'),
(61255, 'https://ror.org/01khddn76', 'en', 1, 'https://ror.org/01khddn76 Conquer Chiari'),
(61256, 'https://ror.org/02c81d080', 'en', 1, 'https://ror.org/02c81d080 Institute for Rare and Neglected Diseases Drug Discovery'),
(61257, 'https://ror.org/018fz1017', 'en', 1, 'https://ror.org/018fz1017 Institute for Research and Evaluation'),
(61258, 'https://ror.org/01d1z3k86', 'en', 1, 'https://ror.org/01d1z3k86 Iron Disorders Institute'),
(61259, 'https://ror.org/00h92wx89', 'en', 1, 'https://ror.org/00h92wx89 Cooley Dickinson Health Care'),
(61260, 'https://ror.org/00fzvsb30', 'en', 1, 'https://ror.org/00fzvsb30 The Coordinating Center'),
(61261, 'https://ror.org/02sz82d98', 'en', 1, 'https://ror.org/02sz82d98 Center for Neurologic Study'),
(61262, 'https://ror.org/02e6fp975', 'en', 1, 'https://ror.org/02e6fp975 Copper Queen Community Hospital'),
(61263, 'https://ror.org/053w4zz03', 'en', 1, 'https://ror.org/053w4zz03 Association for Academic Minority Physicians'),
(61264, 'https://ror.org/01bhvb147', 'en', 1, 'https://ror.org/01bhvb147 Critical Illness & Trauma Foundation'),
(61265, 'https://ror.org/02gee2j04', 'en', 1, 'https://ror.org/02gee2j04 Center for Public Service Communications'),
(61266, 'https://ror.org/04gsrxt60', 'en', 1, 'https://ror.org/04gsrxt60 J.C. Blair Memorial Hospital'),
(61267, 'https://ror.org/01kqrgb09', 'en', 1, 'https://ror.org/01kqrgb09 Banner Thunderbird Medical Center'),
(61268, 'https://ror.org/04mjm3795', 'en', 1, 'https://ror.org/04mjm3795 Jackson Medical Mall Thad Cochran Center'),
(61269, 'https://ror.org/03n4cgv79', 'en', 1, 'https://ror.org/03n4cgv79 Memphis Center For Reproductive Health'),
(61270, 'https://ror.org/0540mv626', 'en', 1, 'https://ror.org/0540mv626 AHEC West'),
(61271, 'https://ror.org/00w4apt74', 'en', 1, 'https://ror.org/00w4apt74 Jefferson Healthcare'),
(61272, 'https://ror.org/004nvjv21', 'en', 1, 'https://ror.org/004nvjv21 Center for Research Strategies'),
(61273, 'https://ror.org/00w22yy94', 'en', 1, 'https://ror.org/00w22yy94 Bartlett Regional Hospital'),
(61274, 'https://ror.org/02ntzaq32', 'en', 1, 'https://ror.org/02ntzaq32 International Society for Applied Cardiovascular Biology'),
(61275, 'https://ror.org/00gzx6s15', 'en', 1, 'https://ror.org/00gzx6s15 Johns Hopkins Berman Institute of Bioethics'),
(61276, 'https://ror.org/04rk3mm93', 'en', 1, 'https://ror.org/04rk3mm93 International Cannabinoid Research Society'),
(61277, 'https://ror.org/05yf87y86', 'en', 1, 'https://ror.org/05yf87y86 Juvenile Protective Association'),
(61278, 'https://ror.org/04devjv87', 'en', 1, 'https://ror.org/04devjv87 International Eosinophil Society'),
(61279, 'https://ror.org/012zbs470', 'en', 1, 'https://ror.org/012zbs470 Maryland Medical Research Institute'),
(61280, 'https://ror.org/03vf6ym20', 'en', 1, 'https://ror.org/03vf6ym20 Kawasaki Disease Foundation'),
(61281, 'https://ror.org/04jj1kk85', 'en', 1, 'https://ror.org/04jj1kk85 International Neuroethics Society'),
(61282, 'https://ror.org/04q7gws66', 'en', 1, 'https://ror.org/04q7gws66 Natural Philosophy Institute'),
(61283, 'https://ror.org/03frm6q70', 'en', 1, 'https://ror.org/03frm6q70 Trios Health'),
(61284, 'https://ror.org/00fh64z73', 'en', 1, 'https://ror.org/00fh64z73 The Performance Institute'),
(61285, 'https://ror.org/05b7by496', 'en', 1, 'https://ror.org/05b7by496 International Neuromodulation Society'),
(61286, 'https://ror.org/05tmk0k30', 'en', 1, 'https://ror.org/05tmk0k30 Massachusetts Health & Hospital Association'),
(61287, 'https://ror.org/03j0gg417', 'en', 1, 'https://ror.org/03j0gg417 The Knee Society'),
(61288, 'https://ror.org/02vra9861', 'no_lang_code', 1, 'https://ror.org/02vra9861 International Pemphigus & Pemphigoid Foundation'),
(61289, 'https://ror.org/05rmea943', 'en', 1, 'https://ror.org/05rmea943 International Society for Heart Research'),
(61290, 'https://ror.org/031h5e705', 'en', 1, 'https://ror.org/031h5e705 International Society of Differentiation'),
(61291, 'https://ror.org/00hmegz79', 'en', 1, 'https://ror.org/00hmegz79 International Society for Neuroethology'),
(61292, 'https://ror.org/0487hf333', 'en', 1, 'https://ror.org/0487hf333 Pikeville Medical Center'),
(61293, 'https://ror.org/05dc02738', 'en', 1, 'https://ror.org/05dc02738 International Society for Cellular Therapy'),
(61294, 'https://ror.org/04cvz3k71', 'en', 1, 'https://ror.org/04cvz3k71 Kona Community Hospital'),
(61295, 'https://ror.org/03rwphv90', 'en', 1, 'https://ror.org/03rwphv90 International Society for Quality of Life Research'),
(61296, 'https://ror.org/04rw83w19', 'en', 1, 'https://ror.org/04rw83w19 Avera McKennan Hospital & University Health Center'),
(61297, 'https://ror.org/04w47cg22', 'en', 1, 'https://ror.org/04w47cg22 Neosho Memorial Regional Medical Center'),
(61298, 'https://ror.org/03t3y2m33', 'en', 1, 'https://ror.org/03t3y2m33 International Behavioral Neuroscience Society'),
(61299, 'https://ror.org/03wwk8c55', 'en', 1, 'https://ror.org/03wwk8c55 Nepal Fertility Care Center'),
(61300, 'https://ror.org/03m5a3737', 'en', 1, 'https://ror.org/03m5a3737 Shandong Chest Hospital'),
(61301, 'https://ror.org/008qav573', 'en', 1, 'https://ror.org/008qav573 The Foundation for Peripheral Neuropathy'),
(61302, 'https://ror.org/05gshbf51', 'no_lang_code', 1, 'https://ror.org/05gshbf51 Sign Media (United States)'),
(61303, 'https://ror.org/048vgwq64', 'en', 1, 'https://ror.org/048vgwq64 New Hampshire Nurses'' Association'),
(61304, 'https://ror.org/04vj7nb44', 'en', 1, 'https://ror.org/04vj7nb44 Mercy Fitzgerald Hospital'),
(61305, 'https://ror.org/04pk7nd85', 'en', 1, 'https://ror.org/04pk7nd85 Providence Community Health Centers'),
(61306, 'https://ror.org/02j787g88', 'en', 1, 'https://ror.org/02j787g88 Skin Science Institute'),
(61307, 'https://ror.org/01zt8rh15', 'en', 1, 'https://ror.org/01zt8rh15 Foundation of New York State Nurses'),
(61308, 'https://ror.org/029tztb09', 'en', 1, 'https://ror.org/029tztb09 Society for Acupuncture Research'),
(61309, 'https://ror.org/03x3mrm69', 'es', 1, 'https://ror.org/03x3mrm69 Insitituto Mexicano de Investigación de Familia y Población Yo quiero Yo puedo'),
(61310, 'https://ror.org/00cde8652', 'en', 1, 'https://ror.org/00cde8652 Laureate Psychiatric Clinic and Hospital'),
(61311, 'https://ror.org/02b184226', 'en', 1, 'https://ror.org/02b184226 Niagara Falls Memorial Medical Center'),
(61312, 'https://ror.org/052w5jd94', 'en', 1, 'https://ror.org/052w5jd94 Microcirculatory Society'),
(61313, 'https://ror.org/02pg9t310', 'en', 1, 'https://ror.org/02pg9t310 PrimaryPlus'),
(61314, 'https://ror.org/03w65s121', 'en', 1, 'https://ror.org/03w65s121 Noyes Memorial Hospital'),
(61315, 'https://ror.org/05gff4a37', 'en', 1, 'https://ror.org/05gff4a37 Society for Invertebrate Pathology'),
(61316, 'https://ror.org/0138yyw30', 'en', 1, 'https://ror.org/0138yyw30 Society for Neuroeconomics'),
(61317, 'https://ror.org/01h0pkb03', 'no_lang_code', 1, 'https://ror.org/01h0pkb03 MizMedi Hospital'),
(61318, 'https://ror.org/042y6y279', 'en', 1, 'https://ror.org/042y6y279 The Lloyd Society'),
(61319, 'https://ror.org/02a9re713', 'en', 1, 'https://ror.org/02a9re713 Moebius Syndrome Foundation'),
(61320, 'https://ror.org/053hn4213', 'en', 1, 'https://ror.org/053hn4213 North American Hair Research Society'),
(61321, 'https://ror.org/056pp8v93', 'en', 1, 'https://ror.org/056pp8v93 Monadnock Community Hospital'),
(61322, 'https://ror.org/04816wc22', 'en', 1, 'https://ror.org/04816wc22 Society on Neuroimmune Pharmacology'),
(61323, 'https://ror.org/04ckqjc98', 'en', 1, 'https://ror.org/04ckqjc98 South Bend Medical Foundation'),
(61324, 'https://ror.org/00ngea848', 'en', 1, 'https://ror.org/00ngea848 Mercy Health - Lorain Hospital'),
(61325, 'https://ror.org/021z26c54', 'en', 1, 'https://ror.org/021z26c54 The Morton Center'),
(61326, 'https://ror.org/0468q7p56', 'en', 1, 'https://ror.org/0468q7p56 North Little Rock Health Department'),
(61327, 'https://ror.org/00cj1jz35', 'en', 1, 'https://ror.org/00cj1jz35 Catholic Charities Archdiocese of Washington'),
(61328, 'https://ror.org/041zgk078', 'en', 1, 'https://ror.org/041zgk078 Northeastern Mental Health Center'),
(61329, 'https://ror.org/03rcjma25', 'en', 1, 'https://ror.org/03rcjma25 Spanish Peaks Regional Health Center'),
(61330, 'https://ror.org/00dw21h32', 'en', 1, 'https://ror.org/00dw21h32 Flint Hills Community Health Center'),
(61331, 'https://ror.org/05540q762', 'en', 1, 'https://ror.org/05540q762 Northern Westchester Hospital'),
(61332, 'https://ror.org/001pef276', 'no_lang_code', 1, 'https://ror.org/001pef276 Safecor (United States)'),
(61333, 'https://ror.org/03qan5r71', 'no_lang_code', 1, 'https://ror.org/03qan5r71 Macrogen (South Korea) 마크딜젠'),
(61334, 'https://ror.org/03swt5851', 'en', 1, 'https://ror.org/03swt5851 St. James Mercy Hospital'),
(61335, 'https://ror.org/042gsyn68', 'en', 1, 'https://ror.org/042gsyn68 Odessa Memorial Healthcare Center'),
(61336, 'https://ror.org/03z2eez35', 'en', 1, 'https://ror.org/03z2eez35 Madison County Health Department'),
(61337, 'https://ror.org/002e72m14', 'en', 1, 'https://ror.org/002e72m14 St. Joseph Hospital'),
(61338, 'https://ror.org/03zx2vv67', 'en', 1, 'https://ror.org/03zx2vv67 Oklahoma Blood Institute'),
(61339, 'https://ror.org/01nz0vz73', 'en', 1, 'https://ror.org/01nz0vz73 FamilieSCN2A Foundation'),
(61340, 'https://ror.org/02fm2jq60', 'en', 1, 'https://ror.org/02fm2jq60 Maine Hospital Association'),
(61341, 'https://ror.org/03yazg833', 'en', 1, 'https://ror.org/03yazg833 St. Peter’s Child Development Center'),
(61342, 'https://ror.org/01a1t3a07', 'en', 1, 'https://ror.org/01a1t3a07 Oregon Law Center'),
(61343, 'https://ror.org/05jxxs868', 'en', 1, 'https://ror.org/05jxxs868 Tropical Disease Foundation'),
(61344, 'https://ror.org/05qv09308', 'en', 1, 'https://ror.org/05qv09308 St. Petersburg School of Religion and Philosophy Центр Š½Š°ŃƒŃ‡Š½Š¾-ŠæŃ€Š¾ŃŠ²ŠµŃ‚ŠøŃ‚ŠµŠ»ŃŒŃŠŗŠøŃ… Šø религиозно-философских программ'),
(61345, 'https://ror.org/00rca3h04', 'en', 1, 'https://ror.org/00rca3h04 Our Lady of the Lake Children''s Hospital'),
(61346, 'https://ror.org/02ez32078', 'en', 1, 'https://ror.org/02ez32078 Stereology Resource Center'),
(61347, 'https://ror.org/02sp87b11', 'en', 1, 'https://ror.org/02sp87b11 Pacific Tuberculosis and Cancer Research'),
(61348, 'https://ror.org/00nkysz86', 'en', 1, 'https://ror.org/00nkysz86 European School of Oncology'),
(61349, 'https://ror.org/04dst9624', 'en', 1, 'https://ror.org/04dst9624 The PANSS Institute'),
(61350, 'https://ror.org/024gbbh50', 'en', 1, 'https://ror.org/024gbbh50 Syosset Hospital'),
(61351, 'https://ror.org/00n5sdz31', 'en', 1, 'https://ror.org/00n5sdz31 Taylor Regional Hospital'),
(61352, 'https://ror.org/04typ7821', 'en', 1, 'https://ror.org/04typ7821 Tri Center'),
(61353, 'https://ror.org/003tvwa79', 'en', 1, 'https://ror.org/003tvwa79 Tri-State Community Health Center'),
(61354, 'https://ror.org/05g8axa09', 'en', 1, 'https://ror.org/05g8axa09 Tri-County Community Mental Health Center'),
(61355, 'https://ror.org/017emx724', 'en', 1, 'https://ror.org/017emx724 San Francisco Medical Society'),
(61356, 'https://ror.org/04vpsne51', 'en', 1, 'https://ror.org/04vpsne51 Facial Pain Association'),
(61357, 'https://ror.org/022hz3j90', 'de', 1, 'https://ror.org/022hz3j90 Krankenhaus Waldfriede'),
(61358, 'https://ror.org/00am1hd38', 'en', 1, 'https://ror.org/00am1hd38 United Leukodystrophy Foundation'),
(61359, 'https://ror.org/00343zp30', 'en', 1, 'https://ror.org/00343zp30 Action Potential'),
(61360, 'https://ror.org/02tgkny75', 'en', 1, 'https://ror.org/02tgkny75 Weisenthal Cancer Group'),
(61361, 'https://ror.org/015sdn055', 'no_lang_code', 1, 'https://ror.org/015sdn055 Universal Cells (United States)'),
(61362, 'https://ror.org/05ggj5w37', 'en', 1, 'https://ror.org/05ggj5w37 Utah AIDS Foundation'),
(61363, 'https://ror.org/0088a9521', 'no_lang_code', 1, 'https://ror.org/0088a9521 Universe Technical Translation (United States)'),
(61364, 'https://ror.org/02c9etv94', 'en', 1, 'https://ror.org/02c9etv94 West End Revitalization Association'),
(61365, 'https://ror.org/05ctk4y92', 'en', 1, 'https://ror.org/05ctk4y92 William W Backus Hospital'),
(61366, 'https://ror.org/01z1n5c47', 'en', 1, 'https://ror.org/01z1n5c47 Raymond G. Murphy VA Medical Center'),
(61367, 'https://ror.org/03z1jm984', 'en', 1, 'https://ror.org/03z1jm984 Western Governors Association'),
(61368, 'https://ror.org/01zynd687', 'en', 1, 'https://ror.org/01zynd687 Wind Hollow Foundation'),
(61369, 'https://ror.org/0127psw24', 'en', 1, 'https://ror.org/0127psw24 Visiting Nurse Association'),
(61370, 'https://ror.org/02snnvx48', 'en', 1, 'https://ror.org/02snnvx48 Wound Healing Society'),
(61371, 'https://ror.org/0295gwn16', 'en', 1, 'https://ror.org/0295gwn16 National Association of Hispanic Nurses'),
(61372, 'https://ror.org/05ya9gp75', 'no_lang_code', 1, 'https://ror.org/05ya9gp75 Winston Pharmaceuticals (United States)'),
(61373, 'https://ror.org/015fhgq54', 'en', 1, 'https://ror.org/015fhgq54 National Association of Women Judges'),
(61374, 'https://ror.org/00m4vvn06', 'en', 1, 'https://ror.org/00m4vvn06 National Association on Drug Abuse Problems'),
(61375, 'https://ror.org/00zma5460', 'es', 1, 'https://ror.org/00zma5460 Instituto Nacional de Investigación en Salud Pública'),
(61376, 'https://ror.org/05r643345', 'en', 1, 'https://ror.org/05r643345 Women''s Resource Center'),
(61377, 'https://ror.org/00jpddv49', 'no_lang_code', 1, 'https://ror.org/00jpddv49 Algomedix (United States)'),
(61378, 'https://ror.org/01yfz8598', 'en', 1, 'https://ror.org/01yfz8598 National Center of Security and Protection'),
(61379, 'https://ror.org/02dts1820', 'no_lang_code', 1, 'https://ror.org/02dts1820 Delpor (United States)'),
(61380, 'https://ror.org/04898h931', 'no_lang_code', 1, 'https://ror.org/04898h931 Dfusion (United States)'),
(61381, 'https://ror.org/03bwk1778', 'no_lang_code', 1, 'https://ror.org/03bwk1778 Behavioral Diagnostics (United States)'),
(61382, 'https://ror.org/052e10e62', 'no_lang_code', 1, 'https://ror.org/052e10e62 IsoPlexis (United States)'),
(61383, 'https://ror.org/05msdft16', 'no_lang_code', 1, 'https://ror.org/05msdft16 PDX Pharmaceuticals (United States)'),
(61384, 'https://ror.org/02r7ybh06', 'no_lang_code', 1, 'https://ror.org/02r7ybh06 Seven Bridges Genomics (United States)'),
(61385, 'https://ror.org/01rsq7s41', 'no_lang_code', 1, 'https://ror.org/01rsq7s41 JT Pharmaceuticals (United States)'),
(61386, 'https://ror.org/04dk78q10', 'no_lang_code', 1, 'https://ror.org/04dk78q10 BioVinc (United States)'),
(61387, 'https://ror.org/01g4c0s50', 'no_lang_code', 1, 'https://ror.org/01g4c0s50 Digital Artefacts (United States)'),
(61388, 'https://ror.org/00933dx23', 'no_lang_code', 1, 'https://ror.org/00933dx23 Perfusion Solution (United States)'),
(61389, 'https://ror.org/04f6ttz68', 'no_lang_code', 1, 'https://ror.org/04f6ttz68 GeneTAG Technology (United States)'),
(61390, 'https://ror.org/04m718665', 'no_lang_code', 1, 'https://ror.org/04m718665 Collaborations Pharmaceuticals (United States)'),
(61391, 'https://ror.org/053q9dm05', 'no_lang_code', 1, 'https://ror.org/053q9dm05 Progenitec (United States)'),
(61392, 'https://ror.org/03vn93v04', 'no_lang_code', 1, 'https://ror.org/03vn93v04 GlucoSentient (United States)'),
(61393, 'https://ror.org/01fsqmr25', 'no_lang_code', 1, 'https://ror.org/01fsqmr25 CrossLife Technologies (United States)'),
(61394, 'https://ror.org/00jnayz98', 'no_lang_code', 1, 'https://ror.org/00jnayz98 HelixBind (United States)'),
(61395, 'https://ror.org/057j2mw04', 'no_lang_code', 1, 'https://ror.org/057j2mw04 NanoHybrids (United States)'),
(61396, 'https://ror.org/000jtf850', 'no_lang_code', 1, 'https://ror.org/000jtf850 Sinopia Biosciences (United States)'),
(61397, 'https://ror.org/03h3pc979', 'no_lang_code', 1, 'https://ror.org/03h3pc979 Media Rez (United States)'),
(61398, 'https://ror.org/054zjpg49', 'no_lang_code', 1, 'https://ror.org/054zjpg49 OneVax (United States)'),
(61399, 'https://ror.org/00b5yqe44', 'no_lang_code', 1, 'https://ror.org/00b5yqe44 Myolex (United States)'),
(61400, 'https://ror.org/020254c55', 'en', 1, 'https://ror.org/020254c55 Caucaseco Scientific Research Center Centro de Investigación Científica Caucaseco'),
(61401, 'https://ror.org/03x91xm81', 'no_lang_code', 1, 'https://ror.org/03x91xm81 Vascular BioSciences (United States)'),
(61402, 'https://ror.org/01pwq1j60', 'no_lang_code', 1, 'https://ror.org/01pwq1j60 N2 Biomedical (United States)'),
(61403, 'https://ror.org/01a5kys78', 'no_lang_code', 1, 'https://ror.org/01a5kys78 Q-State Biosciences (United States)'),
(61404, 'https://ror.org/02827mj70', 'no_lang_code', 1, 'https://ror.org/02827mj70 Regenerative Medical Solutions (United States)'),
(61405, 'https://ror.org/03w55an86', 'no_lang_code', 1, 'https://ror.org/03w55an86 NutritionQuest (United States)'),
(61406, 'https://ror.org/02tge6s12', 'no_lang_code', 1, 'https://ror.org/02tge6s12 Accutest (India)'),
(61407, 'https://ror.org/0185gtc53', 'no_lang_code', 1, 'https://ror.org/0185gtc53 Drs. Fine, Hoffman & Sims'),
(61408, 'https://ror.org/049yq6285', 'no_lang_code', 1, 'https://ror.org/049yq6285 ActivMed Practices & Research (United States)'),
(61409, 'https://ror.org/00b095n33', 'no_lang_code', 1, 'https://ror.org/00b095n33 Ribometrix (United States)'),
(61410, 'https://ror.org/05m074r21', 'en', 1, 'https://ror.org/05m074r21 Berkshire Health Systems'),
(61411, 'https://ror.org/01cbz4y30', 'en', 1, 'https://ror.org/01cbz4y30 Christiana Gynecologic Oncology'),
(61412, 'https://ror.org/0044b0b76', 'en', 1, 'https://ror.org/0044b0b76 HealthCare Partners Medical Group'),
(61413, 'https://ror.org/0270xn642', 'no_lang_code', 1, 'https://ror.org/0270xn642 Bio-Images Drug Delivery (United Kingdom)'),
(61414, 'https://ror.org/05k71bz17', 'no_lang_code', 1, 'https://ror.org/05k71bz17 Biocinese (Brazil) Centro de Estudos BiofarmacĆŖuticos'),
(61415, 'https://ror.org/04rhwda32', 'en', 1, 'https://ror.org/04rhwda32 Heartland Hematology and Oncology'),
(61416, 'https://ror.org/03vnkza15', 'en', 1, 'https://ror.org/03vnkza15 Aga Khan Development Network'),
(61417, 'https://ror.org/00q3dem22', 'no_lang_code', 1, 'https://ror.org/00q3dem22 Aggredyne (United States)'),
(61418, 'https://ror.org/05bgwpv79', 'no_lang_code', 1, 'https://ror.org/05bgwpv79 Bioenergy Life Science (United States)'),
(61419, 'https://ror.org/02f5ccn55', 'no_lang_code', 1, 'https://ror.org/02f5ccn55 Sun Pharma (United States)'),
(61420, 'https://ror.org/031yrna52', 'no_lang_code', 1, 'https://ror.org/031yrna52 Ajinomoto (United States)'),
(61421, 'https://ror.org/03vsr5p38', 'no_lang_code', 1, 'https://ror.org/03vsr5p38 BioScience Laboratories (United States)'),
(61422, 'https://ror.org/01907r966', 'en', 1, 'https://ror.org/01907r966 Eastern Connecticut Hematology and Oncology Associates'),
(61423, 'https://ror.org/04h35xj16', 'en', 1, 'https://ror.org/04h35xj16 Alaska Breast Care & Surgery'),
(61424, 'https://ror.org/05sdkg034', 'no_lang_code', 1, 'https://ror.org/05sdkg034 Boehringer Ingelheim (Argentina)'),
(61425, 'https://ror.org/0044j7z53', 'en', 1, 'https://ror.org/0044j7z53 Hematology and Oncology Associates of Northeastern Pennsylvania'),
(61426, 'https://ror.org/04bzrt549', 'no_lang_code', 1, 'https://ror.org/04bzrt549 Boston Medical Group (Colombia)'),
(61427, 'https://ror.org/006dhhj35', 'en', 1, 'https://ror.org/006dhhj35 Alaska Oncology & Hematology'),
(61428, 'https://ror.org/00waaf760', 'no_lang_code', 1, 'https://ror.org/00waaf760 Eugonia Ευγονία'),
(61429, 'https://ror.org/02kp6ds19', 'en', 1, 'https://ror.org/02kp6ds19 Boulder Neurosurgical & Spine Associates'),
(61430, 'https://ror.org/03epcb283', 'en', 1, 'https://ror.org/03epcb283 Brain Matters Research'),
(61431, 'https://ror.org/00vs5xf39', 'en', 1, 'https://ror.org/00vs5xf39 Hematology Oncology Associates of Fredericksburg'),
(61432, 'https://ror.org/00sqneq52', 'en', 1, 'https://ror.org/00sqneq52 Bronson Battle Creek Hospital'),
(61433, 'https://ror.org/00vhpak23', 'no_lang_code', 1, 'https://ror.org/00vhpak23 Evidation Health (United States)'),
(61434, 'https://ror.org/05hc6gd57', 'en', 1, 'https://ror.org/05hc6gd57 C.I. Trials'),
(61435, 'https://ror.org/020wh9z45', 'no', 1, 'https://ror.org/020wh9z45 Evjeklinikken'),
(61436, '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'),
(61437, 'https://ror.org/048n17y91', 'en', 1, 'https://ror.org/048n17y91 Excelsior Orthopaedics'),
(61438, 'https://ror.org/01m5a8633', 'en', 1, 'https://ror.org/01m5a8633 Alaska Women''s Cancer Care'),
(61439, 'https://ror.org/01n95cx06', 'no_lang_code', 1, 'https://ror.org/01n95cx06 Chugai Pharma (United States)'),
(61440, 'https://ror.org/010n18211', 'en', 1, 'https://ror.org/010n18211 California Allergy and Asthma Medical Group'),
(61441, 'https://ror.org/04w3zd882', 'en', 1, 'https://ror.org/04w3zd882 Hematology Oncology Associates'),
(61442, 'https://ror.org/011h26k47', 'no_lang_code', 1, 'https://ror.org/011h26k47 Investor (Sweden)'),
(61443, 'https://ror.org/02yaq1v87', 'pt', 1, 'https://ror.org/02yaq1v87 Faculdade de Medicina de Petrópolis'),
(61444, 'https://ror.org/01bftyb90', 'en', 1, 'https://ror.org/01bftyb90 Hematology Oncology Consultants'),
(61445, 'https://ror.org/04qqn5v91', 'en', 1, 'https://ror.org/04qqn5v91 Hematology Oncology Consultants'),
(61446, 'https://ror.org/02va7tv42', 'no_lang_code', 1, 'https://ror.org/02va7tv42 Allergan (Taiwan)'),
(61447, 'https://ror.org/04h8ph678', 'en', 1, 'https://ror.org/04h8ph678 Cancer Care of Western North Carolina'),
(61448, 'https://ror.org/059rgaq66', 'sv', 1, 'https://ror.org/059rgaq66 Fertilitetscentrum'),
(61449, 'https://ror.org/03vgg3427', 'en', 1, 'https://ror.org/03vgg3427 American Joint Replacement Registry'),
(61450, 'https://ror.org/05tn6ve98', 'en', 1, 'https://ror.org/05tn6ve98 First Dayton CyberKnife'),
(61451, 'https://ror.org/00geycx93', 'en', 1, 'https://ror.org/00geycx93 Hematology & Oncology Consultants'),
(61452, 'https://ror.org/02rmzps48', 'no_lang_code', 1, 'https://ror.org/02rmzps48 Cliantha (India)'),
(61453, 'https://ror.org/017esgv14', 'en', 1, 'https://ror.org/017esgv14 Anchorage Associates in Radiation Medicine'),
(61454, 'https://ror.org/05b8d3v21', 'en', 1, 'https://ror.org/05b8d3v21 Antalya IVF'),
(61455, 'https://ror.org/047bp3m73', 'en', 1, 'https://ror.org/047bp3m73 Florida Urology Associates'),
(61456, 'https://ror.org/035e6q027', 'fr', 1, 'https://ror.org/035e6q027 Languedoc MutualitƩ'),
(61457, 'https://ror.org/04e456155', 'en', 1, 'https://ror.org/04e456155 Cardiovascular Research Associates'),
(61458, 'https://ror.org/00ynkhx66', 'no_lang_code', 1, 'https://ror.org/00ynkhx66 Care Team Solutions (United States)'),
(61459, 'https://ror.org/036mx0561', 'fr', 1, 'https://ror.org/036mx0561 Clinique Claude-Bernard'),
(61460, 'https://ror.org/02y1vmj66', 'it', 1, 'https://ror.org/02y1vmj66 Epatocentro Ticino'),
(61461, 'https://ror.org/04wh5hg83', 'no_lang_code', 1, 'https://ror.org/04wh5hg83 Caris Life Sciences (United States)'),
(61462, 'https://ror.org/01k1j7593', 'en', 1, 'https://ror.org/01k1j7593 Highlands Oncology Group'),
(61463, 'https://ror.org/01v2w4d05', 'fr', 1, 'https://ror.org/01v2w4d05 Clinique Mutualiste La Sagesse'),
(61464, 'https://ror.org/02b3f5j20', 'no_lang_code', 1, 'https://ror.org/02b3f5j20 Apollo Endosurgery (United States)'),
(61465, 'https://ror.org/05cvcn611', 'fr', 1, 'https://ror.org/05cvcn611 Clinique du Grand Large'),
(61466, 'https://ror.org/05v5gb241', 'en', 1, 'https://ror.org/05v5gb241 Carolina Arthritis Associates'),
(61467, 'https://ror.org/00kw4g054', 'no_lang_code', 1, 'https://ror.org/00kw4g054 Apotex (United States)'),
(61468, 'https://ror.org/04nmnyc35', 'en', 1, 'https://ror.org/04nmnyc35 Carolina Performance'),
(61469, 'https://ror.org/01ya56e34', 'fr', 1, 'https://ror.org/01ya56e34 Clinique du MillƩnaire'),
(61470, 'https://ror.org/00jmmae07', 'en', 1, 'https://ror.org/00jmmae07 Fox Valley Surgical Associates'),
(61471, 'https://ror.org/058196w54', 'en', 1, 'https://ror.org/058196w54 Carolina Urology Partners'),
(61472, 'https://ror.org/05set4688', 'en', 1, 'https://ror.org/05set4688 Aria - Jefferson Health'),
(61473, 'https://ror.org/00dxw4v18', 'fr', 1, 'https://ror.org/00dxw4v18 HƓpital Couple Enfant'),
(61474, 'https://ror.org/04z27mz17', 'fr', 1, 'https://ror.org/04z27mz17 Clinique Hartmann'),
(61475, 'https://ror.org/018x1j412', 'en', 1, 'https://ror.org/018x1j412 Franciscan Health Indianapolis'),
(61476, 'https://ror.org/048hv9z27', 'es', 1, 'https://ror.org/048hv9z27 Centro de Infertilidad y Reproducción Humana'),
(61477, 'https://ror.org/02qkddx94', 'en', 1, 'https://ror.org/02qkddx94 Arizona Pain Specialists'),
(61478, 'https://ror.org/00128qj25', 'fr', 1, 'https://ror.org/00128qj25 Clinique Neuro-Outaouais'),
(61479, 'https://ror.org/01tfhsg94', 'fr', 1, 'https://ror.org/01tfhsg94 HƓpital EuropƩen'),
(61480, 'https://ror.org/05tja9q19', 'no_lang_code', 1, 'https://ror.org/05tja9q19 Teva Pharmaceuticals (Spain)'),
(61481, 'https://ror.org/02yzgv231', 'en', 1, 'https://ror.org/02yzgv231 Franciscan Health Mooresville'),
(61482, 'https://ror.org/00n3baz54', 'en', 1, 'https://ror.org/00n3baz54 Arthritis and Rheumatic Disease Specialties'),
(61483, 'https://ror.org/04jf1d362', 'fr', 1, 'https://ror.org/04jf1d362 HÓpital Jean Jaurès'),
(61484, 'https://ror.org/05vctz765', 'en', 1, 'https://ror.org/05vctz765 Arthritis Northwest'),
(61485, 'https://ror.org/028a0s046', 'en', 1, 'https://ror.org/028a0s046 Franciscan St Anthony Health – Michigan City'),
(61486, 'https://ror.org/04qvenw96', 'fr', 1, 'https://ror.org/04qvenw96 Clinique Victor Hugo'),
(61487, 'https://ror.org/014xwn672', 'en', 1, 'https://ror.org/014xwn672 Asheville Hematology & Oncology'),
(61488, 'https://ror.org/036rq4p38', 'en', 1, 'https://ror.org/036rq4p38 Freeman Health System'),
(61489, 'https://ror.org/04rkyw928', 'fr', 1, 'https://ror.org/04rkyw928 L''HƓpital Nord Franche-ComtƩ'),
(61490, 'https://ror.org/02chsc169', 'fr', 1, 'https://ror.org/02chsc169 Centre Hospitalier CompiĆØgne-Noyon'),
(61491, 'https://ror.org/031h5rk76', 'es', 1, 'https://ror.org/031h5rk76 Asociación Colombiana de Diabetes'),
(61492, 'https://ror.org/027yanw18', 'no_lang_code', 1, 'https://ror.org/027yanw18 CMIC Group (Japan)'),
(61493, 'https://ror.org/02nn5y377', 'fr', 1, 'https://ror.org/02nn5y377 HƓpital PrivƩ Jean Mermo'),
(61494, 'https://ror.org/025009514', 'en', 1, 'https://ror.org/025009514 Coastal Orthopedics'),
(61495, 'https://ror.org/00xhn5c68', 'pt', 1, 'https://ror.org/00xhn5c68 Fundação Altino Ventura'),
(61496, 'https://ror.org/024hscy29', 'fr', 1, 'https://ror.org/024hscy29 Centre Hospitalier de Bigorre'),
(61497, 'https://ror.org/00g0ak246', 'en', 1, 'https://ror.org/00g0ak246 Assisting Nature'),
(61498, 'https://ror.org/01rsw3c42', 'pt', 1, 'https://ror.org/01rsw3c42 Fundação Bahiana de Infectologia'),
(61499, 'https://ror.org/03ambf510', 'en', 1, 'https://ror.org/03ambf510 Horizon Oncology Center'),
(61500, 'https://ror.org/04eynfz47', 'en', 1, 'https://ror.org/04eynfz47 Collier Neurologic Specialists'),
(61501, 'https://ror.org/0572qg377', 'en', 1, 'https://ror.org/0572qg377 Associated Neurologists of Southern Connecticut'),
(61502, 'https://ror.org/02j5f0439', 'es', 1, 'https://ror.org/02j5f0439 Fundación Neumológica Colombiana'),
(61503, 'https://ror.org/05tr65377', 'en', 1, 'https://ror.org/05tr65377 Associates in Women’s Health'),
(61504, 'https://ror.org/05rg8gm93', 'en', 1, 'https://ror.org/05rg8gm93 HƓtel-Dieu Grace Healthcare'),
(61505, 'https://ror.org/02hyv7840', 'no_lang_code', 1, 'https://ror.org/02hyv7840 Columbia Asia'),
(61506, 'https://ror.org/00cftt483', 'no_lang_code', 1, 'https://ror.org/00cftt483 Hoya Surgical Optics (United States)'),
(61507, 'https://ror.org/036yvkz90', 'no_lang_code', 1, 'https://ror.org/036yvkz90 NestlƩ (Belgium)'),
(61508, 'https://ror.org/04gc7k725', 'en', 1, 'https://ror.org/04gc7k725 Chesapeake Urology Associates'),
(61509, 'https://ror.org/00qj38h30', 'en', 1, 'https://ror.org/00qj38h30 Columbus Oncology and Hematology Associates'),
(61510, 'https://ror.org/023z23g03', 'en', 1, 'https://ror.org/023z23g03 Galiz Research'),
(61511, 'https://ror.org/00562d506', 'en', 1, 'https://ror.org/00562d506 Chicago Anesthesia Pain Specialists'),
(61512, 'https://ror.org/057qnv003', 'en', 1, 'https://ror.org/057qnv003 Gaston Hematology & Oncology Associates'),
(61513, 'https://ror.org/01zdv2629', 'en', 1, 'https://ror.org/01zdv2629 Joliet Oncology-Hematology Associates'),
(61514, 'https://ror.org/00np8k310', 'pt', 1, 'https://ror.org/00np8k310 Gastrocirurgia de BrasĆ­lia'),
(61515, 'https://ror.org/04dpmwx08', 'en', 1, 'https://ror.org/04dpmwx08 Compassionate Cancer Care'),
(61516, 'https://ror.org/0514yze14', 'no_lang_code', 1, 'https://ror.org/0514yze14 Huons (South Korea)'),
(61517, 'https://ror.org/01jj3v002', 'en', 1, 'https://ror.org/01jj3v002 Austin Speech Labs'),
(61518, 'https://ror.org/03308zq86', 'en', 1, 'https://ror.org/03308zq86 Huron Gastro'),
(61519, 'https://ror.org/04gbh9b75', 'no_lang_code', 1, 'https://ror.org/04gbh9b75 General Electric (Spain)'),
(61520, 'https://ror.org/03cb3w715', 'en', 1, 'https://ror.org/03cb3w715 Congenital Muscle Disease International Registry'),
(61521, 'https://ror.org/00fgz4k79', 'no_lang_code', 1, 'https://ror.org/00fgz4k79 Novita Healthcare (Australia)'),
(61522, 'https://ror.org/03vyf7w04', 'en', 1, 'https://ror.org/03vyf7w04 Kaiser Permanente Baldwin Park Medical Center'),
(61523, 'https://ror.org/031caxb92', 'en', 1, 'https://ror.org/031caxb92 Kaiser Permanente West Los Angeles Medical Center'),
(61524, 'https://ror.org/052yr7741', 'no_lang_code', 1, 'https://ror.org/052yr7741 Azienda di Servizi alla Persona di Pavia (Italy)'),
(61525, 'https://ror.org/05258cy55', 'no_lang_code', 1, 'https://ror.org/05258cy55 Genmab (United States)'),
(61526, 'https://ror.org/05a9k3463', 'en', 1, 'https://ror.org/05a9k3463 Kaiser Permanente Franklin Medical Offices'),
(61527, 'https://ror.org/0188v8a70', 'no_lang_code', 1, 'https://ror.org/0188v8a70 Icon (United States)'),
(61528, 'https://ror.org/05535a176', 'en', 1, 'https://ror.org/05535a176 Kaiser Permanente Orange County Irvine Medical Center'),
(61529, 'https://ror.org/031q6s296', 'no_lang_code', 1, 'https://ror.org/031q6s296 Cosmos Technologies (United States)'),
(61530, 'https://ror.org/015sq8750', 'en', 1, 'https://ror.org/015sq8750 Kaiser Permanente Lone Tree Medical Offices'),
(61531, 'https://ror.org/01mwnbk39', 'en', 1, 'https://ror.org/01mwnbk39 Kaiser Permanente Modesto Medical Center and Medical Offices'),
(61532, 'https://ror.org/05d14ax96', 'no_lang_code', 1, 'https://ror.org/05d14ax96 Gilead Sciences (France)'),
(61533, 'https://ror.org/01a13fh38', 'en', 1, 'https://ror.org/01a13fh38 Icon Early Phase Services'),
(61534, 'https://ror.org/05gkev856', 'en', 1, 'https://ror.org/05gkev856 European Society for Blood and Marrow Transplantation'),
(61535, 'https://ror.org/01q9c7s07', 'en', 1, 'https://ror.org/01q9c7s07 Kaiser Permanente Richmond Medical Center'),
(61536, 'https://ror.org/022wfr829', 'en', 1, 'https://ror.org/022wfr829 Kaiser Permanente Rock Creek Medical Offices'),
(61537, 'https://ror.org/03vdexs55', 'en', 1, 'https://ror.org/03vdexs55 Global Alliance for Regenerative Medicine'),
(61538, 'https://ror.org/05jtxmk62', 'en', 1, 'https://ror.org/05jtxmk62 Baptist Health Corbin'),
(61539, 'https://ror.org/02j0s2m43', 'en', 1, 'https://ror.org/02j0s2m43 Barney''s Pharmacy'),
(61540, 'https://ror.org/042y18291', 'en', 1, 'https://ror.org/042y18291 Kaiser Permanente Zion Medical Center'),
(61541, 'https://ror.org/056tvxc50', 'en', 1, 'https://ror.org/056tvxc50 Baptist Health Paducah'),
(61542, 'https://ror.org/018d0rc68', 'en', 1, 'https://ror.org/018d0rc68 Kaiser Permanente San Marcos Medical Offices'),
(61543, 'https://ror.org/04z5qk104', 'en', 1, 'https://ror.org/04z5qk104 Community Hospital'),
(61544, 'https://ror.org/0031x0638', 'en', 1, 'https://ror.org/0031x0638 Barrie Urology Group'),
(61545, 'https://ror.org/05czd8n07', 'en', 1, 'https://ror.org/05czd8n07 Illinois Retina Associates'),
(61546, 'https://ror.org/05vbevg81', 'en', 1, 'https://ror.org/05vbevg81 Kaiser Permanente San Jose Medical Center'),
(61547, 'https://ror.org/00nrk9x91', 'en', 1, 'https://ror.org/00nrk9x91 Kaiser Permanente South Sacramento Medical Center'),
(61548, 'https://ror.org/00jrz2221', 'en', 1, 'https://ror.org/00jrz2221 Kaiser Permanente Stockton Medical Offices'),
(61549, 'https://ror.org/02r4exx90', 'en', 1, 'https://ror.org/02r4exx90 Barrow Brain and Spine'),
(61550, 'https://ror.org/015jb5761', 'en', 1, 'https://ror.org/015jb5761 Bay Area Breast Surgeons'),
(61551, 'https://ror.org/045wd8a95', 'en', 1, 'https://ror.org/045wd8a95 OSF St. Francis Hospital & Medical Group'),
(61552, 'https://ror.org/007g95547', 'no_lang_code', 1, 'https://ror.org/007g95547 Immunitor (Mongolia)'),
(61553, 'https://ror.org/02vmgqy82', 'en', 1, 'https://ror.org/02vmgqy82 Bay Area Retina Associates'),
(61554, 'https://ror.org/030yhh648', 'da', 1, 'https://ror.org/030yhh648 Dansk Fertilitetsklinik'),
(61555, 'https://ror.org/01qtxzw29', 'en', 1, 'https://ror.org/01qtxzw29 Kentuckiana Pulmonary Associates'),
(61556, 'https://ror.org/01fr3sh36', 'en', 1, 'https://ror.org/01fr3sh36 Beebe Healthcare'),
(61557, 'https://ror.org/02pq1z922', 'en', 1, 'https://ror.org/02pq1z922 Behavioral Health of the Palm Beaches'),
(61558, 'https://ror.org/02xbtxj19', 'en', 1, 'https://ror.org/02xbtxj19 Door County Medical Center'),
(61559, 'https://ror.org/03by80w61', 'en', 1, 'https://ror.org/03by80w61 Dayton Interventional Radiology'),
(61560, 'https://ror.org/0365ym773', 'en', 1, 'https://ror.org/0365ym773 Kinston Medical Specialists'),
(61561, 'https://ror.org/03t0g0q91', 'es', 1, 'https://ror.org/03t0g0q91 Grupo Gallego de CÔncer de Pulmón'),
(61562, 'https://ror.org/053nf2720', 'no_lang_code', 1, 'https://ror.org/053nf2720 Inion (Finland)'),
(61563, 'https://ror.org/03sywc351', 'en', 1, 'https://ror.org/03sywc351 Dayton Physicians Network'),
(61564, 'https://ror.org/054dhkd21', 'en', 1, 'https://ror.org/054dhkd21 Rheumatology Consultants'),
(61565, 'https://ror.org/03y6mg459', 'en', 1, 'https://ror.org/03y6mg459 Meditation De-Addiction Health AIDS Nutrition Trust'),
(61566, 'https://ror.org/00apa5z77', 'no_lang_code', 1, 'https://ror.org/00apa5z77 InquisitHealth (United States)'),
(61567, 'https://ror.org/05vpy0b11', 'no_lang_code', 1, 'https://ror.org/05vpy0b11 Integrative Health Technologies (United States)'),
(61568, 'https://ror.org/02h1dt688', 'de', 1, 'https://ror.org/02h1dt688 Klinikum Frankfurt Hƶchst'),
(61569, 'https://ror.org/03vct0j86', 'en', 1, 'https://ror.org/03vct0j86 Gynecologic Oncology Associates'),
(61570, 'https://ror.org/01g7wf911', 'en', 1, 'https://ror.org/01g7wf911 Manhattan Physical Medicine and Rehabilitation'),
(61571, 'https://ror.org/034yah449', 'en', 1, 'https://ror.org/034yah449 Martin Foot and Ankle'),
(61572, 'https://ror.org/03pn50n78', 'no_lang_code', 1, 'https://ror.org/03pn50n78 DC2 (United States)'),
(61573, 'https://ror.org/00npraj80', 'en', 1, 'https://ror.org/00npraj80 Maryland Oncology Hematology'),
(61574, 'https://ror.org/05gag8m64', 'de', 1, 'https://ror.org/05gag8m64 Kreiskrankenhaus Dormagen'),
(61575, 'https://ror.org/04q43a127', 'no_lang_code', 1, 'https://ror.org/04q43a127 IPS Research (United States)'),
(61576, 'https://ror.org/01xs14k38', 'no_lang_code', 1, 'https://ror.org/01xs14k38 Medacta (United States)'),
(61577, 'https://ror.org/00k009k96', 'en', 1, 'https://ror.org/00k009k96 Kuchnir Dermatology & Dermatologic Surgery'),
(61578, 'https://ror.org/02n172j55', 'en', 1, 'https://ror.org/02n172j55 MedDerm Associates'),
(61579, 'https://ror.org/04dgj3g22', 'en', 1, 'https://ror.org/04dgj3g22 Coatesville Veterans Affairs Medical Center'),
(61580, 'https://ror.org/027w0yp05', 'en', 1, 'https://ror.org/027w0yp05 William C. Tallent Outpatient Clinic'),
(61581, 'https://ror.org/03cryrv62', 'en', 1, 'https://ror.org/03cryrv62 Denova Research'),
(61582, 'https://ror.org/03q7ay915', 'en', 1, 'https://ror.org/03q7ay915 TIAS School for Business and Society'),
(61583, 'https://ror.org/01yk61783', 'en', 1, 'https://ror.org/01yk61783 Lake Norman Oncology'),
(61584, 'https://ror.org/05mmjzg49', 'en', 1, 'https://ror.org/05mmjzg49 iResearch Atlanta'),
(61585, 'https://ror.org/00nvney28', 'en', 1, 'https://ror.org/00nvney28 Lake City VA Medical Center'),
(61586, 'https://ror.org/01b3ys956', 'en', 1, 'https://ror.org/01b3ys956 Doris Miller Department of Veterans Affairs Medical Center'),
(61587, 'https://ror.org/01yx43d58', 'en', 1, 'https://ror.org/01yx43d58 Medical Oncology Hematology Consultants'),
(61588, 'https://ror.org/04st1y556', 'it', 1, 'https://ror.org/04st1y556 La Maddalena'),
(61589, 'https://ror.org/0456c8v85', 'en', 1, 'https://ror.org/0456c8v85 Lake Norman Oncology'),
(61590, 'https://ror.org/00gxa5343', 'en', 1, 'https://ror.org/00gxa5343 Lake Region Healthcare'),
(61591, 'https://ror.org/04x50ay81', 'no_lang_code', 1, 'https://ror.org/04x50ay81 Lambda Therapeutic Research (India)'),
(61592, 'https://ror.org/01e542834', 'nl', 1, 'https://ror.org/01e542834 IrisZorg'),
(61593, 'https://ror.org/0055a4990', 'en', 1, 'https://ror.org/0055a4990 Dermatology Consulting Services'),
(61594, 'https://ror.org/00fjyk033', 'en', 1, 'https://ror.org/00fjyk033 Desert Medical Imaging'),
(61595, 'https://ror.org/02r89nc92', 'no_lang_code', 1, 'https://ror.org/02r89nc92 Medication Management (United States)'),
(61596, 'https://ror.org/023h0re83', 'en', 1, 'https://ror.org/023h0re83 Hawaii Cancer Care'),
(61597, 'https://ror.org/01dyphc41', 'es', 1, 'https://ror.org/01dyphc41 Diagnostico MaipĆŗ'),
(61598, 'https://ror.org/00r23c464', 'no_lang_code', 1, 'https://ror.org/00r23c464 MediciNova (United States)'),
(61599, 'https://ror.org/04y9b7t58', 'en', 1, 'https://ror.org/04y9b7t58 Italian Resuscitation Council'),
(61600, 'https://ror.org/02zkb9v82', 'no_lang_code', 1, 'https://ror.org/02zkb9v82 Revenue Management Solutions (United States)'),
(61601, 'https://ror.org/00n36xb70', 'es', 1, 'https://ror.org/00n36xb70 Liga Contra el Cancer Liga Peruana de Lucha contra el CƔncer'),
(61602, 'https://ror.org/01fnh4d22', 'en', 1, 'https://ror.org/01fnh4d22 Hazleton Eye Specialists'),
(61603, 'https://ror.org/03mmtg035', 'en', 1, 'https://ror.org/03mmtg035 Digestive & Liver Disease Specialists'),
(61604, 'https://ror.org/0093ach88', 'en', 1, 'https://ror.org/0093ach88 CHI Memorial Medical Group'),
(61605, 'https://ror.org/01kb5b139', 'no_lang_code', 1, 'https://ror.org/01kb5b139 Rite Aid (United States)'),
(61606, 'https://ror.org/0528hwm66', 'en', 1, 'https://ror.org/0528hwm66 The Japan-Multinational Trial Organization ę—„ęœ¬ćƒ»å¤šå›½é–“č‡ØåŗŠč©¦éØ“ę©Ÿę§‹'),
(61607, 'https://ror.org/04gpc6733', 'it', 1, 'https://ror.org/04gpc6733 Ospedale Santa Maria Goretti'),
(61608, 'https://ror.org/04qvz3512', 'en', 1, 'https://ror.org/04qvz3512 Louisiana Hematology Oncology Associates'),
(61609, 'https://ror.org/049s51r41', 'en', 1, 'https://ror.org/049s51r41 Men''s Health Boston'),
(61610, 'https://ror.org/03eq4wq29', 'no_lang_code', 1, 'https://ror.org/03eq4wq29 Metacure (United States)'),
(61611, 'https://ror.org/046k3mr17', 'en', 1, 'https://ror.org/046k3mr17 Healthcare Global Enterprises'),
(61612, 'https://ror.org/04a5jy818', 'en', 1, 'https://ror.org/04a5jy818 Michigan Orthopaedic Spine Surgeons'),
(61613, 'https://ror.org/04gqr8882', 'en', 1, 'https://ror.org/04gqr8882 Oncology Hematology Care'),
(61614, 'https://ror.org/05kn06p84', 'en', 1, 'https://ror.org/05kn06p84 Michigan Reproductive Medicine'),
(61615, 'https://ror.org/020szg916', 'en', 1, 'https://ror.org/020szg916 Newland Medical Associates'),
(61616, 'https://ror.org/05fr3nj53', 'en', 1, 'https://ror.org/05fr3nj53 Miller Orthopedic Specialist'),
(61617, 'https://ror.org/01gxkhe25', 'no_lang_code', 1, 'https://ror.org/01gxkhe25 Lumos Labs (United States)'),
(61618, 'https://ror.org/052z1v370', 'en', 1, 'https://ror.org/052z1v370 Nebraska Cancer Specialists'),
(61619, 'https://ror.org/01q8w7b22', 'no_lang_code', 1, 'https://ror.org/01q8w7b22 Mimetogen (United States)'),
(61620, 'https://ror.org/00hw4nh44', 'en', 1, 'https://ror.org/00hw4nh44 Newman Regional Health'),
(61621, 'https://ror.org/039b8pv66', 'en', 1, 'https://ror.org/039b8pv66 Oncology Specialists of Charlotte'),
(61622, 'https://ror.org/043rqx383', 'en', 1, 'https://ror.org/043rqx383 Pinnacle Oncology Hematology'),
(61623, 'https://ror.org/05vmsw483', 'en', 1, 'https://ror.org/05vmsw483 Minnesota Oncology'),
(61624, 'https://ror.org/01vzjtk91', 'en', 1, 'https://ror.org/01vzjtk91 Rocky Mountain Retina Consultants'),
(61625, 'https://ror.org/00g11cc66', 'en', 1, 'https://ror.org/00g11cc66 ATI Physical Therapy'),
(61626, 'https://ror.org/010xeam31', 'no_lang_code', 1, 'https://ror.org/010xeam31 Ono Pharmaceutical (United States)'),
(61627, 'https://ror.org/02309hn07', 'es', 1, 'https://ror.org/02309hn07 Via Libre'),
(61628, 'https://ror.org/044p0sr27', 'no_lang_code', 1, 'https://ror.org/044p0sr27 ProMetic Life Sciences (United States)'),
(61629, 'https://ror.org/00h93zw30', 'no_lang_code', 1, 'https://ror.org/00h93zw30 Optimata (Israel)'),
(61630, 'https://ror.org/05x1ves75', 'en', 1, 'https://ror.org/05x1ves75 NHS Fife'),
(61631, 'https://ror.org/019z87133', 'it', 1, 'https://ror.org/019z87133 Azienda Sanitaria Locale di Asti'),
(61632, 'https://ror.org/05k150873', 'en', 1, 'https://ror.org/05k150873 OASIS Clinic'),
(61633, 'https://ror.org/021px0753', 'en', 1, 'https://ror.org/021px0753 Moy, Fincher, Chipps Medical Group'),
(61634, 'https://ror.org/00zxr2615', 'no_lang_code', 1, 'https://ror.org/00zxr2615 Nordic Pharma (France)'),
(61635, 'https://ror.org/02cagam23', 'en', 1, 'https://ror.org/02cagam23 MultiCare Gig Harbor Medical Park'),
(61636, 'https://ror.org/02eyfd807', 'en', 1, 'https://ror.org/02eyfd807 Sacred Heart Medical Center at RiverBend'),
(61637, 'https://ror.org/04hc0rs25', 'en', 1, 'https://ror.org/04hc0rs25 Providence Regional Cancer Partnership'),
(61638, 'https://ror.org/05gctgr03', 'en', 1, 'https://ror.org/05gctgr03 Nebraska Hematology-Oncology'),
(61639, 'https://ror.org/05qmfrv53', 'en', 1, 'https://ror.org/05qmfrv53 St John of God Murdoch Hospital'),
(61640, 'https://ror.org/01zh1d121', 'it', 1, 'https://ror.org/01zh1d121 Ospedale Misericordia e Dolce'),
(61641, 'https://ror.org/03s49qk39', 'en', 1, 'https://ror.org/03s49qk39 NephroCare'),
(61642, 'https://ror.org/04f17kc16', 'it', 1, 'https://ror.org/04f17kc16 Ospedale S.Gennaro'),
(61643, 'https://ror.org/02r6d9v55', 'no_lang_code', 1, 'https://ror.org/02r6d9v55 Equilab International (Indonesia)'),
(61644, 'https://ror.org/048xg4d81', 'en', 1, 'https://ror.org/048xg4d81 Northern Indiana Cancer Research Consortium'),
(61645, 'https://ror.org/052s3m976', 'en', 1, 'https://ror.org/052s3m976 Neurosurgeons of New Jersey'),
(61646, 'https://ror.org/03tqdk258', 'en', 1, 'https://ror.org/03tqdk258 Saint Luke''s East Hospital'),
(61647, 'https://ror.org/03f4hd425', 'en', 1, 'https://ror.org/03f4hd425 Northshore Oncology Associates'),
(61648, 'https://ror.org/05hrw6q11', 'en', 1, 'https://ror.org/05hrw6q11 Ovation Fertility'),
(61649, 'https://ror.org/044jq0109', 'no_lang_code', 1, 'https://ror.org/044jq0109 NeuroTrials Research (United States)'),
(61650, 'https://ror.org/03gn7k041', 'no_lang_code', 1, 'https://ror.org/03gn7k041 NestlƩ (China)'),
(61651, 'https://ror.org/00rq7v092', 'en', 1, 'https://ror.org/00rq7v092 Compass Oncology'),
(61652, 'https://ror.org/04ed27a31', 'en', 1, 'https://ror.org/04ed27a31 New England Retina Associates'),
(61653, 'https://ror.org/01ta1nw48', 'no_lang_code', 1, 'https://ror.org/01ta1nw48 Alivation (United States)'),
(61654, 'https://ror.org/05hr4m393', 'en', 1, 'https://ror.org/05hr4m393 Northwest Medical Specialties'),
(61655, 'https://ror.org/0135q5188', 'en', 1, 'https://ror.org/0135q5188 Q-Pharm'),
(61656, 'https://ror.org/03emyr182', 'en', 1, 'https://ror.org/03emyr182 New Mexico Cancer Center'),
(61657, 'https://ror.org/059151f39', 'pl', 1, 'https://ror.org/059151f39 Samodzielny Publiczny Szpital Kliniczny im. prof. W. Orłowskiego CMKP'),
(61658, 'https://ror.org/05ep1jp78', 'no_lang_code', 1, 'https://ror.org/05ep1jp78 SGS (Belgium)'),
(61659, 'https://ror.org/03dsbzv79', 'en', 1, 'https://ror.org/03dsbzv79 Radiation Oncology Associates'),
(61660, 'https://ror.org/02dbytc62', 'no_lang_code', 1, 'https://ror.org/02dbytc62 Novartis (Mexico)'),
(61661, 'https://ror.org/04yctj498', 'en', 1, 'https://ror.org/04yctj498 Panhandle Eye Group'),
(61662, 'https://ror.org/04gpmm421', 'en', 1, 'https://ror.org/04gpmm421 Invision Sally Jobe'),
(61663, 'https://ror.org/00wa5kg71', 'en', 1, 'https://ror.org/00wa5kg71 Shenandoah Oncology'),
(61664, 'https://ror.org/05c1xy536', 'en', 1, 'https://ror.org/05c1xy536 Arizona Oncology'),
(61665, 'https://ror.org/04mpvkk30', 'no_lang_code', 1, 'https://ror.org/04mpvkk30 Sientra (United States)'),
(61666, 'https://ror.org/013f5rs96', 'en', 1, 'https://ror.org/013f5rs96 PCR Oncology'),
(61667, 'https://ror.org/04v77c541', 'en', 1, 'https://ror.org/04v77c541 Sierra Eye Associates'),
(61668, 'https://ror.org/00jts5t62', 'no_lang_code', 1, 'https://ror.org/00jts5t62 SIFI Medtech (Italy)'),
(61669, 'https://ror.org/00zsny525', 'en', 1, 'https://ror.org/00zsny525 Pediatric Nephrology of Alabama'),
(61670, 'https://ror.org/05btveq09', 'de', 1, 'https://ror.org/05btveq09 SLK-Kliniken Heilbronn'),
(61671, 'https://ror.org/05nqjs332', 'en', 1, 'https://ror.org/05nqjs332 Regeneris Medical'),
(61672, 'https://ror.org/04pfbqx48', 'en', 1, 'https://ror.org/04pfbqx48 South Health Campus'),
(61673, 'https://ror.org/05d3c1829', 'no_lang_code', 1, 'https://ror.org/05d3c1829 Pfizer (India)'),
(61674, 'https://ror.org/05aatnq11', 'en', 1, 'https://ror.org/05aatnq11 Respiratory and Meningeal Pathogens Research Unit'),
(61675, 'https://ror.org/00fjzr749', 'no_lang_code', 1, 'https://ror.org/00fjzr749 Sanguine Biosciences (United States)'),
(61676, 'https://ror.org/039868y11', 'no_lang_code', 1, 'https://ror.org/039868y11 Pharma Medica Research (Canada)'),
(61677, 'https://ror.org/02x8dnq97', 'no_lang_code', 1, 'https://ror.org/02x8dnq97 Sanofi (Argentina)'),
(61678, 'https://ror.org/0389djt38', 'no_lang_code', 1, 'https://ror.org/0389djt38 Nu Skin (United States)'),
(61679, 'https://ror.org/04rhkcf19', 'no_lang_code', 1, 'https://ror.org/04rhkcf19 Santech (United States)'),
(61680, 'https://ror.org/05rnt2n49', 'no_lang_code', 1, 'https://ror.org/05rnt2n49 National Power (United Kingdom)'),
(61681, 'https://ror.org/01p4cs333', 'en', 1, 'https://ror.org/01p4cs333 Saskatoon Medical Imaging'),
(61682, 'https://ror.org/03vx7r377', 'en', 1, 'https://ror.org/03vx7r377 Retina Associates of Florida'),
(61683, 'https://ror.org/03vfc4p83', 'no_lang_code', 1, 'https://ror.org/03vfc4p83 Octapharma (United States)'),
(61684, 'https://ror.org/05157de90', 'en', 1, 'https://ror.org/05157de90 Philadelphia Eye Associates'),
(61685, 'https://ror.org/032e5zb24', 'en', 1, 'https://ror.org/032e5zb24 Save the Children'),
(61686, 'https://ror.org/04993ye45', 'en', 1, 'https://ror.org/04993ye45 Retina Vitreous Associates of Florida'),
(61687, 'https://ror.org/00xg0sp11', 'en', 1, 'https://ror.org/00xg0sp11 Phoenix Molecular Imaging'),
(61688, 'https://ror.org/02hrkdj18', 'no_lang_code', 1, 'https://ror.org/02hrkdj18 Willow Wood (United States)'),
(61689, 'https://ror.org/04hk0mm26', 'en', 1, 'https://ror.org/04hk0mm26 Phoenix Neurological Associates'),
(61690, 'https://ror.org/03r4ey572', 'no_lang_code', 1, 'https://ror.org/03r4ey572 Schweiger Dermatology Group (United States)'),
(61691, 'https://ror.org/057kz9b56', 'en', 1, 'https://ror.org/057kz9b56 Southern Oncology Specialists'),
(61692, 'https://ror.org/05f4jn380', 'no_lang_code', 1, 'https://ror.org/05f4jn380 Omni Med'),
(61693, 'https://ror.org/01n51hq73', 'en', 1, 'https://ror.org/01n51hq73 Self Regional Healthcare'),
(61694, 'https://ror.org/03yx5ta37', 'en', 1, 'https://ror.org/03yx5ta37 Richmond Behavioral Associates'),
(61695, 'https://ror.org/00zbyy251', 'en', 1, 'https://ror.org/00zbyy251 Southwest Women''s Oncology'),
(61696, 'https://ror.org/0135fer63', 'no_lang_code', 1, 'https://ror.org/0135fer63 Senju Pharmaceutical (United States)'),
(61697, 'https://ror.org/03twnzp51', 'en', 1, 'https://ror.org/03twnzp51 YMCA of Greater Vancouver'),
(61698, 'https://ror.org/05qvwyg13', 'de', 1, 'https://ror.org/05qvwyg13 Spitalzentrum Centre hospitalier Biel- Bienne'),
(61699, 'https://ror.org/02p0etp25', 'en', 1, 'https://ror.org/02p0etp25 St. Joseph Heritage Medical Group'),
(61700, 'https://ror.org/000crk757', 'en', 1, 'https://ror.org/000crk757 St. Vincent''s Birmingham'),
(61701, 'https://ror.org/050g5gp35', 'no_lang_code', 1, 'https://ror.org/050g5gp35 Premaitha Health (United Kingdom)'),
(61702, 'https://ror.org/05q4t9480', 'en', 1, 'https://ror.org/05q4t9480 Star Spine & Sport'),
(61703, 'https://ror.org/05vp7ha71', 'en', 1, 'https://ror.org/05vp7ha71 Thrombolysis in Myocardial Infarction Study Group');
INSERT INTO `rors` VALUES
(61704, 'https://ror.org/01e5m5282', 'no_lang_code', 1, 'https://ror.org/01e5m5282 Swedish Orphan Biovitrum (United States)'),
(61705, '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'),
(61706, 'https://ror.org/03h96m993', 'fr', 1, 'https://ror.org/03h96m993 Les Thermes d’Allevard'),
(61707, 'https://ror.org/03d5cyq12', 'en', 1, 'https://ror.org/03d5cyq12 TriWest Research Associates'),
(61708, 'https://ror.org/025t8a623', 'no_lang_code', 1, 'https://ror.org/025t8a623 StemGenex (United States)'),
(61709, 'https://ror.org/02p2ybt36', 'no_lang_code', 1, 'https://ror.org/02p2ybt36 Stryker (Japan)'),
(61710, 'https://ror.org/01e38mp30', 'en', 1, 'https://ror.org/01e38mp30 Surgical Associates of Neenah'),
(61711, 'https://ror.org/00qt5a094', 'en', 1, 'https://ror.org/00qt5a094 Tropical Gastroenterology & Nutrition group'),
(61712, 'https://ror.org/02rxx7m82', 'no_lang_code', 1, 'https://ror.org/02rxx7m82 Sewon Cellontech (South Korea)'),
(61713, 'https://ror.org/03ssybn81', 'en', 1, 'https://ror.org/03ssybn81 Synergy Health'),
(61714, 'https://ror.org/01csjxv16', 'no_lang_code', 1, 'https://ror.org/01csjxv16 Targeted Medical Pharma (United States)'),
(61715, 'https://ror.org/007rr9202', 'en', 1, 'https://ror.org/007rr9202 Utah Cancer Specialists'),
(61716, 'https://ror.org/01krbfc31', 'en', 1, 'https://ror.org/01krbfc31 Tennessee Cancer Specialists'),
(61717, 'https://ror.org/01r74wp43', 'no_lang_code', 1, 'https://ror.org/01r74wp43 Syneos Health (United States)'),
(61718, 'https://ror.org/0102aw075', 'en', 1, 'https://ror.org/0102aw075 Valley Health System'),
(61719, 'https://ror.org/00st8mg19', 'it', 1, 'https://ror.org/00st8mg19 L''organizzazione Ospedale di Civitanova M'),
(61720, 'https://ror.org/055papc77', 'en', 1, 'https://ror.org/055papc77 Tennessee Retina'),
(61721, 'https://ror.org/03754ky26', 'en', 1, 'https://ror.org/03754ky26 Tennessee Oncology'),
(61722, 'https://ror.org/04fj57991', 'en', 1, 'https://ror.org/04fj57991 Westside Medical Associates of Los Angeles'),
(61723, 'https://ror.org/01gsv1y98', 'no_lang_code', 1, 'https://ror.org/01gsv1y98 Vimta (India)'),
(61724, 'https://ror.org/03tbabt10', 'en', 1, 'https://ror.org/03tbabt10 Virginia Cancer Specialists'),
(61725, 'https://ror.org/02vv8px12', 'en', 1, 'https://ror.org/02vv8px12 Texas Dermatology and Laser Specialists'),
(61726, 'https://ror.org/03vb1w478', 'en', 1, 'https://ror.org/03vb1w478 Texas Digestive Disease Consultants'),
(61727, 'https://ror.org/00vhf1j84', 'en', 1, 'https://ror.org/00vhf1j84 Whitten Laser Eye'),
(61728, 'https://ror.org/0252twa85', 'en', 1, 'https://ror.org/0252twa85 Virtua Memorial Hospital'),
(61729, 'https://ror.org/00mystw63', 'en', 1, 'https://ror.org/00mystw63 Texas Plastic Surgery'),
(61730, 'https://ror.org/00gy3sh45', 'en', 1, 'https://ror.org/00gy3sh45 Virtua Voorhees Hospital'),
(61731, 'https://ror.org/04t6gkr49', 'en', 1, 'https://ror.org/04t6gkr49 Alliance for Canadian Health Outcomes Research in Diabetes'),
(61732, 'https://ror.org/03048zv53', 'en', 1, 'https://ror.org/03048zv53 Western Sky Medical Research'),
(61733, 'https://ror.org/02awhp844', 'en', 1, 'https://ror.org/02awhp844 Vision Specialists of Michigan'),
(61734, 'https://ror.org/020ay6p95', 'en', 1, 'https://ror.org/020ay6p95 Z Urology'),
(61735, 'https://ror.org/01dvqbe93', 'en', 1, 'https://ror.org/01dvqbe93 Children''s Health Council'),
(61736, 'https://ror.org/01st9qd69', 'de', 1, 'https://ror.org/01st9qd69 Vista Klinik'),
(61737, 'https://ror.org/059j7sj66', 'no_lang_code', 1, 'https://ror.org/059j7sj66 Wockhardt (United States)'),
(61738, 'https://ror.org/04vnjb193', 'en', 1, 'https://ror.org/04vnjb193 Vascular Interventional Advances'),
(61739, 'https://ror.org/00jemq805', 'en', 1, 'https://ror.org/00jemq805 World Vision International'),
(61740, 'https://ror.org/01ha8kc92', 'en', 1, 'https://ror.org/01ha8kc92 Waverly Hematology Oncology'),
(61741, 'https://ror.org/01fytb163', 'no_lang_code', 1, 'https://ror.org/01fytb163 Ciclo de Mutação (Brazil)'),
(61742, 'https://ror.org/0059chz26', 'no_lang_code', 1, 'https://ror.org/0059chz26 International Medical Research (Germany)'),
(61743, 'https://ror.org/038420j04', 'en', 1, 'https://ror.org/038420j04 Abalone Council Australia'),
(61744, 'https://ror.org/00e765c94', 'no_lang_code', 1, 'https://ror.org/00e765c94 Goolwa Pipi (Australia)'),
(61745, 'https://ror.org/03jh4jw93', 'en', 1, 'https://ror.org/03jh4jw93 CSIRO Health and Biosecurity'),
(61746, 'https://ror.org/05d3qwz48', 'no_lang_code', 1, 'https://ror.org/05d3qwz48 Honey & Fox (Australia)'),
(61747, 'https://ror.org/004myp730', 'en', 1, 'https://ror.org/004myp730 Northern Territory Seafood Council'),
(61748, 'https://ror.org/01saavf11', 'en', 1, 'https://ror.org/01saavf11 Australian Recreational Fishing Foundation'),
(61749, 'https://ror.org/002zcct17', 'en', 1, 'https://ror.org/002zcct17 Australian Rural Leadership Foundation'),
(61750, 'https://ror.org/013v77n27', 'no_lang_code', 1, 'https://ror.org/013v77n27 Australian Seafood Industries (Australia)'),
(61751, 'https://ror.org/01qx93189', 'en', 1, 'https://ror.org/01qx93189 Amateur Fishermen''s Association of the Northern Territory'),
(61752, 'https://ror.org/00wy8pn71', 'en', 1, 'https://ror.org/00wy8pn71 Aquaculture Council of Western Australia'),
(61753, 'https://ror.org/0286p2f78', 'en', 1, 'https://ror.org/0286p2f78 NZ Rock Lobster Industry Council'),
(61754, 'https://ror.org/0161ee609', 'en', 1, 'https://ror.org/0161ee609 Australian Southern Bluefin Tuna Industry Association'),
(61755, 'https://ror.org/05fp35w93', 'no_lang_code', 1, 'https://ror.org/05fp35w93 Ausvet (Australia)'),
(61756, 'https://ror.org/04k5a4r11', 'en', 1, 'https://ror.org/04k5a4r11 Futurefish Foundation'),
(61757, 'https://ror.org/03acet573', 'no_lang_code', 1, 'https://ror.org/03acet573 IC Independent Consulting (Australia)'),
(61758, 'https://ror.org/03aggr754', 'no_lang_code', 1, 'https://ror.org/03aggr754 Infofish (Australia)'),
(61759, 'https://ror.org/014m2qe90', 'no_lang_code', 1, 'https://ror.org/014m2qe90 Australian Aquaculture Support Services (Australia)'),
(61760, 'https://ror.org/049gpxk45', 'en', 1, 'https://ror.org/049gpxk45 OceanWatch Australia'),
(61761, 'https://ror.org/0481c6y41', 'en', 1, 'https://ror.org/0481c6y41 Australian Barramundi Farmers Association'),
(61762, 'https://ror.org/03ta38n35', 'en', 1, 'https://ror.org/03ta38n35 Inland Fisheries Service'),
(61763, 'https://ror.org/04tv9yw85', 'en', 1, 'https://ror.org/04tv9yw85 C-AID Consultants'),
(61764, 'https://ror.org/00tmrk624', 'en', 1, 'https://ror.org/00tmrk624 Australian Council of Prawn Fisheries'),
(61765, 'https://ror.org/02tb42851', 'en', 1, 'https://ror.org/02tb42851 Cairns Professional Game Fishing Association'),
(61766, 'https://ror.org/02n59hk56', 'en', 1, 'https://ror.org/02n59hk56 Australian Farm Institute'),
(61767, 'https://ror.org/03fcke922', 'en', 1, 'https://ror.org/03fcke922 Australian Institute of Food Science and Technology'),
(61768, 'https://ror.org/01h90nm51', 'en', 1, 'https://ror.org/01h90nm51 Marine Discovery Centre'),
(61769, 'https://ror.org/03zqjf227', 'en', 1, 'https://ror.org/03zqjf227 Panaquatic'),
(61770, 'https://ror.org/0037fca11', 'en', 1, 'https://ror.org/0037fca11 Australian Maritime and Fisheries Academy'),
(61771, 'https://ror.org/0505n3394', 'en', 1, 'https://ror.org/0505n3394 Pearl Producers Association'),
(61772, 'https://ror.org/05fmyxw97', 'no_lang_code', 1, 'https://ror.org/05fmyxw97 Fishwell Consulting (Australia)'),
(61773, 'https://ror.org/04x80tf13', 'en', 1, 'https://ror.org/04x80tf13 Recfish Australia'),
(61774, 'https://ror.org/054rg6027', 'en', 1, 'https://ror.org/054rg6027 Port Kennedy Association'),
(61775, 'https://ror.org/032fd8x63', 'en', 1, 'https://ror.org/032fd8x63 Primary Industries Education Foundation Australia'),
(61776, 'https://ror.org/05hx1v477', 'en', 1, 'https://ror.org/05hx1v477 Moreton Bay Seafood Industry Association'),
(61777, 'https://ror.org/05s2x3814', 'en', 1, 'https://ror.org/05s2x3814 Recfishwest'),
(61778, 'https://ror.org/00kgh8k48', 'en', 1, 'https://ror.org/00kgh8k48 Recreational Fishing Alliance of NSW'),
(61779, 'https://ror.org/0295j0z22', 'en', 1, 'https://ror.org/0295j0z22 Professional Fishermen’s Association'),
(61780, 'https://ror.org/03n17ds51', 'en', 1, 'https://ror.org/03n17ds51 Agriculture and Food'),
(61781, 'https://ror.org/01fjcp824', 'en', 1, 'https://ror.org/01fjcp824 Tasmania Mures'),
(61782, 'https://ror.org/03p14dc73', 'en', 1, 'https://ror.org/03p14dc73 Queensland Seafood Industry Association'),
(61783, 'https://ror.org/0267w9f76', 'en', 1, 'https://ror.org/0267w9f76 Rural Training Initiatives'),
(61784, 'https://ror.org/02hp35j69', 'en', 1, 'https://ror.org/02hp35j69 RDS Partners'),
(61785, 'https://ror.org/026px0m21', 'en', 1, 'https://ror.org/026px0m21 Spencer Gulf King Prawns'),
(61786, 'https://ror.org/04vw6de50', 'en', 1, 'https://ror.org/04vw6de50 Seafood South Australia'),
(61787, 'https://ror.org/04yqk3j23', 'en', 1, 'https://ror.org/04yqk3j23 Seafood Industry Victoria'),
(61788, 'https://ror.org/02yndaw76', 'no_lang_code', 1, 'https://ror.org/02yndaw76 Sydney Fish Market (Australia)'),
(61789, 'https://ror.org/01t96az37', 'en', 1, 'https://ror.org/01t96az37 Oysters South Australia'),
(61790, 'https://ror.org/013ebq793', 'it', 1, 'https://ror.org/013ebq793 Consorzio Interuniversitario Nazionale La Chimica Per L''Ambiente'),
(61791, 'https://ror.org/03qy1wr49', 'no_lang_code', 1, 'https://ror.org/03qy1wr49 Tasmanian Abalone Council (Australia)'),
(61792, 'https://ror.org/03sg89w32', 'en', 1, 'https://ror.org/03sg89w32 Western Australian Fishing Industry Council'),
(61793, 'https://ror.org/024jrfp78', 'en', 1, 'https://ror.org/024jrfp78 South Australian Sardine Industry Association'),
(61794, 'https://ror.org/01g1xp238', 'en', 1, 'https://ror.org/01g1xp238 Western Rock Lobster Council'),
(61795, 'https://ror.org/038tfar48', 'sq', 1, 'https://ror.org/038tfar48 Spitali Universitar Shefqet Ndroqi'),
(61796, 'https://ror.org/05fnerq37', 'en', 1, 'https://ror.org/05fnerq37 Parks and Wildlife Service'),
(61797, 'https://ror.org/016dnyj85', 'en', 1, 'https://ror.org/016dnyj85 Tasmanian Salmonid Growers Association'),
(61798, 'https://ror.org/00vc39d35', 'en', 1, 'https://ror.org/00vc39d35 South East Trawl Fishing Industry Association'),
(61799, 'https://ror.org/00f91fg22', 'en', 1, 'https://ror.org/00f91fg22 Tasmanian Seafood Industry Council'),
(61800, 'https://ror.org/006bc1e54', 'en', 1, 'https://ror.org/006bc1e54 Southern Fishermen Association'),
(61801, 'https://ror.org/02bzsgg26', 'en', 1, 'https://ror.org/02bzsgg26 Association of University Presses'),
(61802, 'https://ror.org/05y8mf384', 'it', 1, 'https://ror.org/05y8mf384 Centro Interuniversitario di Ricerca Per lo Sviluppo sostenibile'),
(61803, 'https://ror.org/038f5ab46', 'en', 1, 'https://ror.org/038f5ab46 University Colleges Australia'),
(61804, 'https://ror.org/025scfy30', 'no_lang_code', 1, 'https://ror.org/025scfy30 VivaTech (United States)'),
(61805, 'https://ror.org/055cpj147', 'it', 1, 'https://ror.org/055cpj147 Centro Interuniversitario di Ricerca sui Peptidi Bioattivi'),
(61806, 'https://ror.org/052414247', 'en', 1, 'https://ror.org/052414247 Centre for Studies in Economics and Finance'),
(61807, 'https://ror.org/03b8cqm18', 'it', 1, 'https://ror.org/03b8cqm18 Consorzio Interuniversitario Regionale Pugliese'),
(61808, 'https://ror.org/00qf73c06', 'it', 1, 'https://ror.org/00qf73c06 Associazione Istituzione Libera UniversitĆ  Nuorese'),
(61809, 'https://ror.org/02mywds70', 'it', 1, 'https://ror.org/02mywds70 Consorzio Interuniversitario ReattivitĆ  Chimica e Catalisi'),
(61810, 'https://ror.org/0443rrm71', 'it', 1, 'https://ror.org/0443rrm71 Consorzio inter-Universitario per la previsione e la prevenzione dei Grandi RIschi'),
(61811, 'https://ror.org/00gdq8383', 'fr', 1, 'https://ror.org/00gdq8383 Alliance UniversitƩ-Entreprise de Grenoble'),
(61812, 'https://ror.org/05t3agv77', 'en', 1, 'https://ror.org/05t3agv77 American University of Beirut New York Office'),
(61813, 'https://ror.org/03k2mbt67', 'it', 1, 'https://ror.org/03k2mbt67 Consorzio Universitario per l''Ateneo della Sicilia occidentale e del bacino del Mediterraneo UNISOM'),
(61814, 'https://ror.org/00jms8c74', 'no_lang_code', 1, 'https://ror.org/00jms8c74 Applied University Research (United States)'),
(61815, 'https://ror.org/015mpw953', 'es', 1, 'https://ror.org/015mpw953 Corporación Universitaria para el Desarrollo de Internet'),
(61816, 'https://ror.org/03t7h7x05', 'es', 1, 'https://ror.org/03t7h7x05 Asociación de Universidades Grupo Montevideo'),
(61817, 'https://ror.org/036d1z676', 'pt', 1, 'https://ror.org/036d1z676 Associação Rede de Universidades da Terceira Idade'),
(61818, 'https://ror.org/03vhd0091', 'en', 1, 'https://ror.org/03vhd0091 Alma'),
(61819, 'https://ror.org/02b3gtx40', 'it', 1, 'https://ror.org/02b3gtx40 Ente Regionale per il Diritto allo Studio Universitario del Piemonte'),
(61820, 'https://ror.org/0541h6s03', 'es', 1, 'https://ror.org/0541h6s03 Fundación Universitaria Iberoamericana'),
(61821, 'https://ror.org/04r4esr16', 'es', 1, 'https://ror.org/04r4esr16 Hospital Odontológico Universidad de Barcelona'),
(61822, 'https://ror.org/05wk1qp57', 'ro', 1, 'https://ror.org/05wk1qp57 FundaÅ£ia pentru Formare Profesională şi ƎnvăţămĆ¢nt Preuniversitar - Viitor'),
(61823, 'https://ror.org/03eyr3b88', 'es', 1, 'https://ror.org/03eyr3b88 Fundación Empresa-Universidad Gallega'),
(61824, 'https://ror.org/05nf6pg47', 'en', 1, 'https://ror.org/05nf6pg47 European Inter-University Association of Society, Science and Technology'),
(61825, 'https://ror.org/02y9p0566', 'es', 1, 'https://ror.org/02y9p0566 Centro Cultural de EspaƱa en Malabo'),
(61826, 'https://ror.org/0278r4c85', 'en', 1, 'https://ror.org/0278r4c85 First Affiliated Hospital of Xinxiang Medical University'),
(61827, 'https://ror.org/03d6gdk92', 'sv', 1, 'https://ror.org/03d6gdk92 Folkuniversitetet'),
(61828, 'https://ror.org/04drdn069', 'fr', 1, 'https://ror.org/04drdn069 Presses Universitaires de France'),
(61829, 'https://ror.org/00cf1wm13', 'es', 1, 'https://ror.org/00cf1wm13 Conferencia de Rectores de las Universidades EspaƱolas'),
(61830, 'https://ror.org/012738550', 'no_lang_code', 1, 'https://ror.org/012738550 INiTS (Austria)'),
(61831, 'https://ror.org/026g05v14', 'fr', 1, 'https://ror.org/026g05v14 Conseil Interuniversitaire de la CommunautƩ FranƧaise de Belgique'),
(61832, 'https://ror.org/04pexwy87', 'it', 1, 'https://ror.org/04pexwy87 Consorzio Interuniversitario Nazionale EnSiEL Consorzio Interuniversitario Nazionale per Energia e Sistemi Elettrici'),
(61833, 'https://ror.org/03hdhwe72', 'it', 1, 'https://ror.org/03hdhwe72 Consorzio Interuniversitario Nazionale per la Bio-Oncologia'),
(61834, 'https://ror.org/01kq0a723', 'it', 1, 'https://ror.org/01kq0a723 CINFAI Consorzio Interuniversitario Nazionale per la Fisica delle Atmosfere e delle Idrosfere'),
(61835, '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'),
(61836, 'https://ror.org/02f3rf591', 'en', 1, 'https://ror.org/02f3rf591 Russian Venture Company Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š²ŠµŠ½Ń‡ŃƒŃ€Š½Š°Ń ŠŗŠ¾Š¼ŠæŠ°Š½ŠøŃ'),
(61837, 'https://ror.org/03rshf720', 'de', 1, 'https://ror.org/03rshf720 Innovationsgesellschaft Technische UniversitƤt Braunschweig'),
(61838, 'https://ror.org/05110bn15', 'en', 1, 'https://ror.org/05110bn15 Euskoiker Foundation'),
(61839, 'https://ror.org/03jmcnx26', 'en', 1, 'https://ror.org/03jmcnx26 Southern Shark Industry Alliance'),
(61840, 'https://ror.org/02svxyd97', 'en', 1, 'https://ror.org/02svxyd97 League of European Research Universities'),
(61841, 'https://ror.org/02j3yct66', 'en', 1, 'https://ror.org/02j3yct66 Interuniversity Graduate School of Psychometrics and Sociometrics'),
(61842, 'https://ror.org/01n4hxm67', 'en', 1, 'https://ror.org/01n4hxm67 Interuniversitair Centrum voor Onderwijswetenschappen Interuniversity Center for Educational Research'),
(61843, 'https://ror.org/03t7mrd69', 'en', 1, 'https://ror.org/03t7mrd69 Quality Assurance Netherlands Universities'),
(61844, 'https://ror.org/04dammg70', 'en', 1, 'https://ror.org/04dammg70 Penza State Technological University'),
(61845, 'https://ror.org/052q1fv39', 'it', 1, 'https://ror.org/052q1fv39 Istituto Nazionale per le Ricerche Cardiovascolari'),
(61846, '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'),
(61847, '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 ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Šø ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ŃŠŗŠ° библиотека Босне Šø Єерцеговине'),
(61848, 'https://ror.org/05p20q348', 'pt', 1, 'https://ror.org/05p20q348 Sindicato Nacional dos Professores Licenciados pelos PolitƩcnicos e Universidades'),
(61849, 'https://ror.org/00d36eq66', 'en', 1, 'https://ror.org/00d36eq66 National and University Library "St. Kliment of Ohrid" ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Šø ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ŃŠŗŠ° библиотека ā€žŠ”Š². ŠšŠ»ŠøŠ¼ŠµŠ½Ń‚ ŠžŃ…Ń€ŠøŠ“ŃŠŗŠø ā€œ'),
(61850, 'https://ror.org/00qpnm303', 'no_lang_code', 1, 'https://ror.org/00qpnm303 Phranakhon Rajabhat University'),
(61851, 'https://ror.org/05xzsm645', 'en', 1, 'https://ror.org/05xzsm645 Trung Vuong University ĐẔi hį»c Trʰng Vʰʔng'),
(61852, 'https://ror.org/029ted261', 'ga', 1, 'https://ror.org/029ted261 Sabhal Mòr Ostaig'),
(61853, 'https://ror.org/04gg6jm72', 'en', 1, 'https://ror.org/04gg6jm72 European Center for Peace and Development'),
(61854, 'https://ror.org/02v2jvk84', 'no_lang_code', 1, 'https://ror.org/02v2jvk84 Univa (United States)'),
(61855, 'https://ror.org/03t4faz67', 'en', 1, 'https://ror.org/03t4faz67 Russell Group'),
(61856, 'https://ror.org/01txy2515', 'no_lang_code', 1, 'https://ror.org/01txy2515 Greenyard Fresh (Germany)'),
(61857, 'https://ror.org/005vj6496', 'no_lang_code', 1, 'https://ror.org/005vj6496 Greenyard Fresh (United Kingdom)'),
(61858, 'https://ror.org/02kaggc24', 'no_lang_code', 1, 'https://ror.org/02kaggc24 Univercell-Biosolutions (France)'),
(61859, 'https://ror.org/03gtaf306', 'no_lang_code', 1, 'https://ror.org/03gtaf306 Univerexport (Serbia)'),
(61860, 'https://ror.org/04cyd9q39', 'en', 1, 'https://ror.org/04cyd9q39 Universities and Colleges Admissions Service'),
(61861, 'https://ror.org/01hzh7w96', 'en', 1, 'https://ror.org/01hzh7w96 University Industry Demonstration Partnership'),
(61862, 'https://ror.org/0114pns79', 'fr', 1, 'https://ror.org/0114pns79 UniversitƩ du Travail Paul Pastur'),
(61863, 'https://ror.org/05abkk781', 'en', 1, 'https://ror.org/05abkk781 Universities Scotland'),
(61864, 'https://ror.org/00mmfs450', 'en', 1, 'https://ror.org/00mmfs450 Universities UK'),
(61865, 'https://ror.org/042pj0j50', 'fr', 1, 'https://ror.org/042pj0j50 Agence Universitaire de la Francophonie'),
(61866, 'https://ror.org/05kbg7k66', 'en', 1, 'https://ror.org/05kbg7k66 Berkeley Art Museum and Pacific Film Archive'),
(61867, 'https://ror.org/02m6eba18', 'en', 1, 'https://ror.org/02m6eba18 Mountview Theatre School'),
(61868, 'https://ror.org/03q1wc761', 'fr', 1, 'https://ror.org/03q1wc761 UniversitƩ Jean Lorougnon GuƩdƩ'),
(61869, 'https://ror.org/03jmahf97', 'en', 1, 'https://ror.org/03jmahf97 Institut de Recherche de l''Agriculture Biologique Research Institute of Organic Agriculture'),
(61870, 'https://ror.org/01a51dp76', 'en', 1, 'https://ror.org/01a51dp76 University High School'),
(61871, 'https://ror.org/01wywr782', 'en', 1, 'https://ror.org/01wywr782 Institut National des RadioƩlƩments Institute for Radioelements'),
(61872, 'https://ror.org/019q9za18', 'es', 1, 'https://ror.org/019q9za18 Instituto de Tecnologƭa CerƔmica'),
(61873, 'https://ror.org/04318pf64', 'es', 1, 'https://ror.org/04318pf64 Instituto Nicaraguense de Pesca y Acuicultura'),
(61874, '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'),
(61875, 'https://ror.org/029qzhb32', 'en', 1, 'https://ror.org/029qzhb32 Zvitambo Institute for Maternal and Child Health Research'),
(61876, 'https://ror.org/0319y6677', 'en', 1, 'https://ror.org/0319y6677 Stafford University'),
(61877, 'https://ror.org/038zxmy79', 'en', 1, 'https://ror.org/038zxmy79 University Vocational Awards Council'),
(61878, 'https://ror.org/04c1ham66', 'bs', 1, 'https://ror.org/04c1ham66 Univerzitet Za Poslovne Studije'),
(61879, 'https://ror.org/058tkvp17', 'en', 1, 'https://ror.org/058tkvp17 University Resident Theatre Association'),
(61880, 'https://ror.org/019bv8923', 'en', 1, 'https://ror.org/019bv8923 University Specialized Hospital for Active Treatment of Endocrinology Университетска специализирана болница за активно лечение по ŠµŠ½Š“Š¾ŠŗŃ€ŠøŠ½Š¾Š»Š¾Š³ŠøŃ'),
(61881, 'https://ror.org/050ept838', 'en', 1, 'https://ror.org/050ept838 Road Safety Institute Panos Mylonas Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪŸĪ“Ī¹ĪŗĪ®Ļ‚ Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±Ļ‚ "Πάνος ĪœĻ…Ī»Ļ‰Ī½Ī¬Ļ‚"'),
(61882, 'https://ror.org/02nb5ap42', 'en', 1, 'https://ror.org/02nb5ap42 Deutsche Evangelische Institut für Altertumswissenschaft German Protestant Institute of Archaeology'),
(61883, 'https://ror.org/01ckbyj78', 'en', 1, 'https://ror.org/01ckbyj78 Foundation Institute for Regional Development Fundacja Instytut Rozwoju Regionalnego'),
(61884, 'https://ror.org/01tdaqj45', 'de', 1, 'https://ror.org/01tdaqj45 FWU Institut für Film und Bild in Wissenschaft und Unterricht'),
(61885, 'https://ror.org/05ksnhc43', 'en', 1, 'https://ror.org/05ksnhc43 Physical-Chemical Institute O. Bogatsky Фізико-хімічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ім. Šž.Š’. Š‘Š¾Š³Š°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ ŠŠŠ України'),
(61886, 'https://ror.org/02xffg312', 'en', 1, 'https://ror.org/02xffg312 Buildings Performance Institute Europe'),
(61887, 'https://ror.org/001m64s20', 'en', 1, 'https://ror.org/001m64s20 Bulgarian Antarctic Institute Š‘ŠŖŠ›Š“ŠŠ Š”ŠšŠ˜ ŠŠŠ¢ŠŠ ŠšŠ¢Š˜Š§Š•Š”ŠšŠ˜ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(61888, 'https://ror.org/02x2pnc94', 'no_lang_code', 1, 'https://ror.org/02x2pnc94 Advanced Sports Installations (Estonia)'),
(61889, 'https://ror.org/02bt8sv61', 'en', 1, 'https://ror.org/02bt8sv61 Cacapon Institute'),
(61890, 'https://ror.org/021b7gr78', 'en', 1, 'https://ror.org/021b7gr78 The Africa-America Institute'),
(61891, 'https://ror.org/00dehxn63', 'en', 1, 'https://ror.org/00dehxn63 Canadian Fasteners Institute'),
(61892, 'https://ror.org/02c02vy89', 'en', 1, 'https://ror.org/02c02vy89 African Institute for Mathematical Sciences Taasisi ya Afrika ya Sayansi ya Hisabati'),
(61893, 'https://ror.org/05v57yz73', 'en', 1, 'https://ror.org/05v57yz73 Against Abuse'),
(61894, 'https://ror.org/01eas6g83', 'en', 1, 'https://ror.org/01eas6g83 Canadian Precast Prestressed Concrete Institute'),
(61895, 'https://ror.org/01bqcrq32', 'en', 1, 'https://ror.org/01bqcrq32 Against Violence & Abuse'),
(61896, 'https://ror.org/05we0sj60', 'en', 1, 'https://ror.org/05we0sj60 Food Research and Development Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за изслеГване Šø развитие на храните'),
(61897, 'https://ror.org/005ajjs97', 'en', 1, 'https://ror.org/005ajjs97 Caribbean Agricultural Research and Development Institute'),
(61898, 'https://ror.org/050dmq329', 'en', 1, 'https://ror.org/050dmq329 The AIDS Institute'),
(61899, 'https://ror.org/04dtt7385', 'en', 1, 'https://ror.org/04dtt7385 The Casco Bay Assyriological Institute'),
(61900, 'https://ror.org/01fhhqb25', 'en', 1, 'https://ror.org/01fhhqb25 Albert Einstein Academy'),
(61901, 'https://ror.org/03dpet089', 'en', 1, 'https://ror.org/03dpet089 Organisation of European Cancer Institutes'),
(61902, 'https://ror.org/04hg8qq17', 'en', 1, 'https://ror.org/04hg8qq17 Royal Incorporation of Architects in Scotland'),
(61903, 'https://ror.org/032mk7q57', 'en', 1, 'https://ror.org/032mk7q57 American Institute for Afghanistan Studies'),
(61904, 'https://ror.org/04d42nn29', 'no_lang_code', 1, 'https://ror.org/04d42nn29 DWA (Netherlands)'),
(61905, 'https://ror.org/054mtjm83', 'en', 1, 'https://ror.org/054mtjm83 NatureBridge'),
(61906, 'https://ror.org/007nc6623', 'en', 1, 'https://ror.org/007nc6623 The American Law Institute'),
(61907, 'https://ror.org/030f3bz67', 'en', 1, 'https://ror.org/030f3bz67 Amsterdam Institute for International Development'),
(61908, 'https://ror.org/00ppzj833', 'en', 1, 'https://ror.org/00ppzj833 The Applied Research Institute - Jerusalem معهد الابحاث Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© - القدس'),
(61909, 'https://ror.org/03jqhsm88', 'en', 1, 'https://ror.org/03jqhsm88 Gaidar Institute for Economic Policy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Š¹ политики имени Š•. Š¢. ГайГара'),
(61910, 'https://ror.org/001g4fr45', 'nl', 1, 'https://ror.org/001g4fr45 Het Nieuwe Instituut'),
(61911, 'https://ror.org/02je6ph26', 'fr', 1, 'https://ror.org/02je6ph26 Institut Paul Bocuse'),
(61912, 'https://ror.org/01n8pm979', 'no_lang_code', 1, 'https://ror.org/01n8pm979 Insta (Finland)'),
(61913, 'https://ror.org/03kzw7k63', 'no_lang_code', 1, 'https://ror.org/03kzw7k63 Insta (Germany)'),
(61914, 'https://ror.org/04y6cx804', 'en', 1, 'https://ror.org/04y6cx804 EGMONT – The Royal Institute for International Relations'),
(61915, 'https://ror.org/043gdn302', 'en', 1, 'https://ror.org/043gdn302 Association of Ethiopian Microfinance Institutions į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆ›į‹­įŠ­įˆ® į‹į‹­įŠ“įŠ•įˆµ į‰°į‰‹įˆ›į‰µ įˆ›įˆ…į‰ įˆ­'),
(61916, 'https://ror.org/0440bgy37', 'no_lang_code', 1, 'https://ror.org/0440bgy37 EHI Retail Institute (Germany)'),
(61917, 'https://ror.org/01n69pc33', 'de', 1, 'https://ror.org/01n69pc33 Instand'),
(61918, 'https://ror.org/05cxhm587', 'en', 1, 'https://ror.org/05cxhm587 Channel Islands Marine & Wildlife Institute'),
(61919, 'https://ror.org/05yh4az66', 'no_lang_code', 1, 'https://ror.org/05yh4az66 Instant Advice (Sweden)'),
(61920, 'https://ror.org/026v7sm97', 'en', 1, 'https://ror.org/026v7sm97 Eidos Institute'),
(61921, 'https://ror.org/02tr9yc56', 'en', 1, 'https://ror.org/02tr9yc56 Horizon House'),
(61922, 'https://ror.org/00ftze589', 'en', 1, 'https://ror.org/00ftze589 Einstein Institute of Science'),
(61923, 'https://ror.org/02hfr4n62', 'no_lang_code', 1, 'https://ror.org/02hfr4n62 Hamburg Port Consulting (Germany)'),
(61924, 'https://ror.org/05acg0e96', 'no_lang_code', 1, 'https://ror.org/05acg0e96 High Speed Sustainable Manufacturing Institute (United Kingdom)'),
(61925, 'https://ror.org/026d46e20', 'en', 1, 'https://ror.org/026d46e20 Chartered Institute of Environmental Health'),
(61926, 'https://ror.org/01nhpc584', 'en', 1, 'https://ror.org/01nhpc584 Huther Doyle'),
(61927, 'https://ror.org/02zw96388', 'en', 1, 'https://ror.org/02zw96388 Chartered Institute of Housing'),
(61928, 'https://ror.org/00np5jz23', 'en', 1, 'https://ror.org/00np5jz23 Chartered Institute of Taxation'),
(61929, 'https://ror.org/00dav3y17', 'nl', 1, 'https://ror.org/00dav3y17 Huygen Installatie Adviseurs'),
(61930, 'https://ror.org/04xer1p89', 'en', 1, 'https://ror.org/04xer1p89 Austrian Standards Ɩsterreichisches Normungsinstitut'),
(61931, 'https://ror.org/035ysxq78', 'sl', 1, 'https://ror.org/035ysxq78 Energetska agencija za Podravje Energy Agency of Podravje'),
(61932, 'https://ror.org/04mhcqm57', 'en', 1, 'https://ror.org/04mhcqm57 QMI Solutions'),
(61933, 'https://ror.org/05v6ze002', 'de', 1, 'https://ror.org/05v6ze002 Energieinstitut Vorarlberg'),
(61934, 'https://ror.org/049a2sy14', 'en', 1, 'https://ror.org/049a2sy14 Chautauqua Institution'),
(61935, 'https://ror.org/049skrn36', 'en', 1, 'https://ror.org/049skrn36 Baltic Institute of Social Sciences Baltijas Sociālo zinātņu institūts'),
(61936, 'https://ror.org/01ezxj338', 'en', 1, 'https://ror.org/01ezxj338 TAFE Queensland Gold Coast'),
(61937, 'https://ror.org/05g0bc010', 'en', 1, 'https://ror.org/05g0bc010 Baltic Institute of Advanced Technology Baltijos pažangių technologijų institutas'),
(61938, 'https://ror.org/03e9v4151', 'en', 1, 'https://ror.org/03e9v4151 I4CE – Institute for Climate Economics'),
(61939, 'https://ror.org/04yw4y185', 'en', 1, 'https://ror.org/04yw4y185 Entrada Institute'),
(61940, 'https://ror.org/02vfq9e70', 'en', 1, 'https://ror.org/02vfq9e70 Bangladesh Institute of ICT in Development ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ą¦†ą¦‡ą¦øą¦æą¦Ÿą¦æ বাংলাদেশ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(61941, 'https://ror.org/0352fvv75', 'de', 1, 'https://ror.org/0352fvv75 Institut für Arbeitsmedizin, Sicherheitstechnik und Ergonomie'),
(61942, 'https://ror.org/039rx1821', 'no_lang_code', 1, 'https://ror.org/039rx1821 Institut für Angewandte Produktions-Technologie (Germany)'),
(61943, 'https://ror.org/03b7av255', 'en', 1, 'https://ror.org/03b7av255 CMC Research Institutes'),
(61944, 'https://ror.org/04w19j463', 'en', 1, 'https://ror.org/04w19j463 European Alliance Against Depression'),
(61945, 'https://ror.org/05wbxb284', 'de', 1, 'https://ror.org/05wbxb284 Bifa Umweltinstitut'),
(61946, 'https://ror.org/05ttdgs63', 'en', 1, 'https://ror.org/05ttdgs63 Heilbronn Institute for Mathematical Research'),
(61947, 'https://ror.org/05vqf7304', 'en', 1, 'https://ror.org/05vqf7304 Panhellenic Confederation of Unions of Agricultural Cooperatives Πανελλήνια Ī£Ļ…Ī½ĪæĪ¼ĪæĻƒĻ€ĪæĪ½Ī“ĪÆĪ± Ī•Ī½ĻŽĻƒĪµĻ‰Ī½ Ī‘Ī³ĻĪæĻ„Ī¹ĪŗĻŽĪ½ Ī£Ļ…Ī½ĪµĻ„Ī±Ī¹ĻĪ¹ĻƒĪ¼ĻŽĪ½'),
(61948, 'https://ror.org/03yqjpf13', 'en', 1, 'https://ror.org/03yqjpf13 Icelandic Institute for Intelligent Machines'),
(61949, 'https://ror.org/03gq7nj97', 'en', 1, 'https://ror.org/03gq7nj97 Community Action for Safe Alternatives'),
(61950, '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'),
(61951, 'https://ror.org/05h9ndr48', 'en', 1, 'https://ror.org/05h9ndr48 Institute Of Historic Building Conservation'),
(61952, 'https://ror.org/00ggq9934', 'en', 1, 'https://ror.org/00ggq9934 European Conference of Transport Research Institutes'),
(61953, 'https://ror.org/01ber0266', 'fr', 1, 'https://ror.org/01ber0266 Institut D’Eco-PĆ©dagogie'),
(61954, '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'),
(61955, 'https://ror.org/05kemy048', 'en', 1, 'https://ror.org/05kemy048 European Forest Institute'),
(61956, 'https://ror.org/04ng8qp45', 'pt', 1, 'https://ror.org/04ng8qp45 Instituto da Habitação e da Reabilitação Urbana'),
(61957, 'https://ror.org/043qm9c80', 'es', 1, 'https://ror.org/043qm9c80 Instituto tecnológico de MatemÔtica Industrial'),
(61958, 'https://ror.org/01r0fjf28', 'en', 1, 'https://ror.org/01r0fjf28 European Institute of Education and Social Policy'),
(61959, 'https://ror.org/01j6bp769', 'en', 1, 'https://ror.org/01j6bp769 European Network of Building Research Institutes'),
(61960, 'https://ror.org/0536ax941', 'en', 1, 'https://ror.org/0536ax941 Copenhagen Institute of Interaction Design'),
(61961, 'https://ror.org/00ykfqt39', 'en', 1, 'https://ror.org/00ykfqt39 European Nuclear Safety Training & Tutoring Institute'),
(61962, 'https://ror.org/01ctr9c93', 'en', 1, 'https://ror.org/01ctr9c93 European Science Communication Institute'),
(61963, 'https://ror.org/02w083059', 'en', 1, 'https://ror.org/02w083059 Immigrant Institute Immigrant-institutet'),
(61964, 'https://ror.org/03rywge40', 'no_lang_code', 1, 'https://ror.org/03rywge40 Beijing Institute of Architectural Design (China)'),
(61965, 'https://ror.org/01qe70573', 'en', 1, 'https://ror.org/01qe70573 Families and Work Institute'),
(61966, 'https://ror.org/00gxft621', 'en', 1, 'https://ror.org/00gxft621 Belgian Welding Institute Belgisch Instituut voor Lastechniek'),
(61967, 'https://ror.org/041azcz03', 'en', 1, 'https://ror.org/041azcz03 Cultural Heritage & Education'),
(61968, 'https://ror.org/0516brw47', 'en', 1, 'https://ror.org/0516brw47 Indian Institute of Wheat and Barley Research ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤—ą„‡ą¤¹ą„‚ą¤‚ और ą¤œą„Œ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(61969, 'https://ror.org/00g55y949', 'no_lang_code', 1, 'https://ror.org/00g55y949 BGI Europe (Denmark)'),
(61970, 'https://ror.org/0198za406', 'en', 1, 'https://ror.org/0198za406 Palm Research Center Pusat Penelitian Kelapa Sawit'),
(61971, 'https://ror.org/00hn6vp12', 'no_lang_code', 1, 'https://ror.org/00hn6vp12 Indutherm (Spain)'),
(61972, 'https://ror.org/01j3dkq17', 'fr', 1, 'https://ror.org/01j3dkq17 Institut de Recherches en IngƩnierie des Surfaces'),
(61973, 'https://ror.org/007ht4b44', 'en', 1, 'https://ror.org/007ht4b44 Financial Services Institute of Australasia'),
(61974, 'https://ror.org/05nm1mt28', 'de', 1, 'https://ror.org/05nm1mt28 DBI - Gastechnologisches Institut'),
(61975, 'https://ror.org/025jpkh15', 'fr', 1, 'https://ror.org/025jpkh15 Institut Eco-Conseil'),
(61976, 'https://ror.org/05b9wad22', 'en', 1, 'https://ror.org/05b9wad22 Flint Institute Of Arts'),
(61977, 'https://ror.org/03gh3xj41', 'en', 1, 'https://ror.org/03gh3xj41 Institut ekonomskih nauka Institute of Economic Sciences'),
(61978, 'https://ror.org/05p0jfk72', 'no_lang_code', 1, 'https://ror.org/05p0jfk72 Infas Institut für Angewandte Sozialwissenschaft (Germany)'),
(61979, 'https://ror.org/04qn48008', 'no_lang_code', 1, 'https://ror.org/04qn48008 BioSense Institute'),
(61980, 'https://ror.org/00ad1c858', 'no_lang_code', 1, 'https://ror.org/00ad1c858 Botswana Vaccine Institute (Botswana)'),
(61981, 'https://ror.org/02gf6fa33', 'en', 1, 'https://ror.org/02gf6fa33 Forschungsinstitut für Musiktheater Research Institute for Music Theater Studies'),
(61982, 'https://ror.org/029drer02', 'de', 1, 'https://ror.org/029drer02 Institut für Chemo- und Biosensorik'),
(61983, 'https://ror.org/05rgt3j80', 'en', 1, 'https://ror.org/05rgt3j80 International Institute of Refrigeration'),
(61984, 'https://ror.org/02h91ww72', 'en', 1, 'https://ror.org/02h91ww72 Institute for Research and Innovation in Social Services'),
(61985, 'https://ror.org/03gsqqb61', 'de', 1, 'https://ror.org/03gsqqb61 Institut für Soziale Infrastruktur'),
(61986, 'https://ror.org/01qdggq75', 'cs', 1, 'https://ror.org/01qdggq75 Institut RestaurovĆ”nĆ­ a KonzervačnĆ­ch Technik'),
(61987, 'https://ror.org/046ra5d44', 'en', 1, 'https://ror.org/046ra5d44 Institut für angewandte Bauinformatik Institute of Applied Building Informatics'),
(61988, 'https://ror.org/04e3xe586', 'fr', 1, 'https://ror.org/04e3xe586 Institut National d''Excellence en SantƩ et en Services Sociaux'),
(61989, 'https://ror.org/03b68tz43', 'en', 1, 'https://ror.org/03b68tz43 Institut für Bau- Umwelt- und Solarforschung Institute for Construction, Environmental and Solar Research'),
(61990, 'https://ror.org/02936ek65', 'fr', 1, 'https://ror.org/02936ek65 Institut Pierre Vernier'),
(61991, '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'),
(61992, 'https://ror.org/01dxqkr82', 'en', 1, 'https://ror.org/01dxqkr82 Institute of Biophysics and Biomedical Engineering Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по биофизика Šø биомеГицинско инженерство'),
(61993, 'https://ror.org/00fr2wv68', 'en', 1, 'https://ror.org/00fr2wv68 "Professor Tsvetan Lazarov" Defence Institute'),
(61994, 'https://ror.org/041v5wj47', 'en', 1, 'https://ror.org/041v5wj47 Institute of Mineralogy, Geochemistry and Crystallochemistry of Rare Elements Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ минералогии Šø геохимии реГких ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š¾Š²'),
(61995, 'https://ror.org/04w3zk015', 'no_lang_code', 1, 'https://ror.org/04w3zk015 IDEXX Laboratories (France)'),
(61996, 'https://ror.org/03q1bec86', 'en', 1, 'https://ror.org/03q1bec86 Slovak Governance Institute'),
(61997, 'https://ror.org/02p5pfd82', 'pt', 1, 'https://ror.org/02p5pfd82 Instituto de Gestão Financeira e Equipamentos da Justiça'),
(61998, 'https://ror.org/032cggj38', 'en', 1, 'https://ror.org/032cggj38 Institute of Alcohol Studies'),
(61999, 'https://ror.org/03zrdpv47', 'en', 1, 'https://ror.org/03zrdpv47 Institute of Molecular Biology and Biotechnology'),
(62000, 'https://ror.org/05ck6jr09', 'de', 1, 'https://ror.org/05ck6jr09 Universum Bremen'),
(62001, 'https://ror.org/045pm7d82', 'en', 1, 'https://ror.org/045pm7d82 Peace Action, Training and Research Institute of Romania'),
(62002, 'https://ror.org/021scha67', 'en', 1, 'https://ror.org/021scha67 Institute of Biological Problems of the North Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологических проблем Девера Š”Š’Šž'),
(62003, 'https://ror.org/03t4ypp04', 'es', 1, 'https://ror.org/03t4ypp04 Instituto de Medicina Genómica'),
(62004, 'https://ror.org/05fz3xt27', 'en', 1, 'https://ror.org/05fz3xt27 Institute of Polymer Materials and Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии растений, генетики Šø биоинженерии'),
(62005, 'https://ror.org/00q03be40', 'fr', 1, 'https://ror.org/00q03be40 L’Institut Wallon de l’Évaluation, de la Prospective et de la Statistique'),
(62006, 'https://ror.org/017k7p668', 'en', 1, 'https://ror.org/017k7p668 Institute of Public Affairs Instytut Spraw Publicznych'),
(62007, 'https://ror.org/000372389', 'en', 1, 'https://ror.org/000372389 Intellectual Property Institute'),
(62008, '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'),
(62009, 'https://ror.org/01em1bx15', 'no_lang_code', 1, 'https://ror.org/01em1bx15 Inston (United States)'),
(62010, 'https://ror.org/00nhtf127', 'no_lang_code', 1, 'https://ror.org/00nhtf127 InStream Fisheries Research (Canada)'),
(62011, 'https://ror.org/05gjkvy96', 'en', 1, 'https://ror.org/05gjkvy96 Institute of Cultural Affairs'),
(62012, 'https://ror.org/036xccj73', 'en', 1, 'https://ror.org/036xccj73 Institute for Research and Development ā€œUtripā€ InÅ”titut za raziskave in razvoj "Utrip"'),
(62013, 'https://ror.org/050w2w956', 'no_lang_code', 1, 'https://ror.org/050w2w956 inStream Media (United States)'),
(62014, 'https://ror.org/02vj92h59', 'en', 1, 'https://ror.org/02vj92h59 IAM RoadSmart'),
(62015, 'https://ror.org/041gbt667', 'en', 1, 'https://ror.org/041gbt667 Institute of Semitic Studies'),
(62016, 'https://ror.org/030v00e77', 'en', 1, 'https://ror.org/030v00e77 Institute for the International Education of Students'),
(62017, 'https://ror.org/00rv22c87', 'de', 1, 'https://ror.org/00rv22c87 ift Rosenheim'),
(62018, 'https://ror.org/00f23qy62', 'en', 1, 'https://ror.org/00f23qy62 Institute for Bulgarian Language Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š±ŃŠŠ»Š³Š°Ń€ŃŠŗŠø език'),
(62019, 'https://ror.org/02mts0a81', 'en', 1, 'https://ror.org/02mts0a81 Institut de Recherches Sociales Internationales Institute for International Social Research'),
(62020, 'https://ror.org/03cdkd641', 'en', 1, 'https://ror.org/03cdkd641 Institute of Social and Economic Studies of Population'),
(62021, 'https://ror.org/04ye58e76', 'pl', 1, 'https://ror.org/04ye58e76 Instytut Europy Środkowo-Wschodniej'),
(62022, 'https://ror.org/00vaeh811', 'en', 1, 'https://ror.org/00vaeh811 Institute for Environmental Security'),
(62023, 'https://ror.org/011fdmv87', 'no_lang_code', 1, 'https://ror.org/011fdmv87 InSysBio (Russia) Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ системной биологии'),
(62024, 'https://ror.org/05v384f19', 'pt', 1, 'https://ror.org/05v384f19 Instituto dos Vinhos do Douro e Porto'),
(62025, 'https://ror.org/021a9n650', 'en', 1, 'https://ror.org/021a9n650 Institute of Technology and Development Foundation'),
(62026, 'https://ror.org/003wpag88', 'es', 1, 'https://ror.org/003wpag88 Instituto Geofƭsico de la Escuela PolitƩcnica Nacional'),
(62027, 'https://ror.org/025vxa670', 'es', 1, 'https://ror.org/025vxa670 Instituto Interamericano de Cooperación para la Agricultura'),
(62028, 'https://ror.org/05cctmc18', 'en', 1, 'https://ror.org/05cctmc18 Institute of Transport and Communications Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по транспорт Šø ŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠø'),
(62029, 'https://ror.org/03ypsgm65', 'en', 1, 'https://ror.org/03ypsgm65 Institute of Information Technologies Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠž Š˜ŠŠ¤ŠžŠ ŠœŠŠ¦Š˜ŠžŠŠŠ˜ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š˜'),
(62030, 'https://ror.org/00qrrpk64', 'en', 1, 'https://ror.org/00qrrpk64 International Health Central American Institute Foundation'),
(62031, 'https://ror.org/01g8e7412', 'es', 1, 'https://ror.org/01g8e7412 Instituto Interamericano de Cooperación para la Agricultura'),
(62032, 'https://ror.org/01t3xs363', 'en', 1, 'https://ror.org/01t3xs363 Institute for Governance & Sustainable Development'),
(62033, 'https://ror.org/00fr05644', 'en', 1, 'https://ror.org/00fr05644 Institute for International Economic and Political Studies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŃ… Šø политических исслеГований'),
(62034, 'https://ror.org/01tjqkz09', 'en', 1, 'https://ror.org/01tjqkz09 Institute for Government'),
(62035, 'https://ror.org/03ppy8d91', 'en', 1, 'https://ror.org/03ppy8d91 International Institute for Mesopotamian Area Studies'),
(62036, 'https://ror.org/00xms2q31', 'en', 1, 'https://ror.org/00xms2q31 Institute of International Visual Arts'),
(62037, 'https://ror.org/02kk3jn69', 'en', 1, 'https://ror.org/02kk3jn69 Institute of Women and Ethnic Studies'),
(62038, 'https://ror.org/00142p479', 'en', 1, 'https://ror.org/00142p479 Institute for Human Development'),
(62039, 'https://ror.org/043z96f51', 'en', 1, 'https://ror.org/043z96f51 International League Against Epilepsy'),
(62040, 'https://ror.org/04cykn118', 'es', 1, 'https://ror.org/04cykn118 Instituto Mayor Campesino'),
(62041, 'https://ror.org/025kvpn26', 'en', 1, 'https://ror.org/025kvpn26 International Institute for Humanistic Studies'),
(62042, 'https://ror.org/057wrv854', 'en', 1, 'https://ror.org/057wrv854 International Minerals Innovation Institute'),
(62043, 'https://ror.org/05hte8b97', 'en', 1, 'https://ror.org/05hte8b97 Institute on Social Theory and Dynamics ē¤¾ä¼šē†č«–ćƒ»å‹•ę…‹ē ”ē©¶ę‰€'),
(62044, 'https://ror.org/050wsc124', 'en', 1, 'https://ror.org/050wsc124 Institute of Licensing'),
(62045, 'https://ror.org/04hc7z719', 'en', 1, 'https://ror.org/04hc7z719 International Theatre Institute'),
(62046, 'https://ror.org/00e4n7b29', 'en', 1, 'https://ror.org/00e4n7b29 Institutet fƶr SprƄk och Folkminnen Swedish Institute for Language and Folklore'),
(62047, 'https://ror.org/052fc5r55', 'en', 1, 'https://ror.org/052fc5r55 International Water Institute'),
(62048, 'https://ror.org/03y8xgp13', 'es', 1, 'https://ror.org/03y8xgp13 Instituto Nacional de Higiene, EpidemiologĆ­a y MicrobiologĆ­a'),
(62049, 'https://ror.org/01qa6vq89', 'pl', 1, 'https://ror.org/01qa6vq89 Instytutu Melioracji i Użytków Zielonych'),
(62050, 'https://ror.org/01x87jt81', 'en', 1, 'https://ror.org/01x87jt81 Institute of Macromolecular Chemistry Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ хімії Š²ŠøŃŠ¾ŠŗŠ¾Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½ŠøŃ… сполук'),
(62051, 'https://ror.org/04veg0s53', 'en', 1, 'https://ror.org/04veg0s53 International Institute for Information Design'),
(62052, 'https://ror.org/03s6z8117', 'en', 1, 'https://ror.org/03s6z8117 Institution of Chemical Engineers'),
(62053, 'https://ror.org/03vfz6856', 'en', 1, 'https://ror.org/03vfz6856 Institute for Public Policy Research'),
(62054, 'https://ror.org/01y0vt648', 'no_lang_code', 1, 'https://ror.org/01y0vt648 Institute for Quality, Safety and Transportation (Germany)'),
(62055, 'https://ror.org/00xq2zb07', 'en', 1, 'https://ror.org/00xq2zb07 Institute of Nature Management Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ'),
(62056, 'https://ror.org/05ymqz659', 'es', 1, 'https://ror.org/05ymqz659 Instituto Nacional de Silicosis'),
(62057, 'https://ror.org/04jxbkz90', 'en', 1, 'https://ror.org/04jxbkz90 Institute for Programming research and Algorithmics'),
(62058, 'https://ror.org/05v0b3r22', 'en', 1, 'https://ror.org/05v0b3r22 Institute for Public Affairs InŔtitút pre verejné otÔzky'),
(62059, 'https://ror.org/05xsbq070', 'en', 1, 'https://ror.org/05xsbq070 Institute of Medical Ethics and Bioethics, n. f Ústav medicínskej etiky a bioetiky'),
(62060, 'https://ror.org/037p5ng50', 'en', 1, 'https://ror.org/037p5ng50 Bolivian Forest Research Institute Instituto Boliviano de Investigación Forestal'),
(62061, 'https://ror.org/05hxzkx81', 'es', 1, 'https://ror.org/05hxzkx81 Instituto Canario de Investigaciones Agrarias'),
(62062, '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'),
(62063, 'https://ror.org/01w4b7951', 'en', 1, 'https://ror.org/01w4b7951 Institute for Recent History of Serbia Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за новију ŠøŃŃ‚Š¾Ń€ŠøŃ˜Ńƒ'),
(62064, 'https://ror.org/05jsj3p18', 'en', 1, 'https://ror.org/05jsj3p18 National Agricultural Research Institute'),
(62065, 'https://ror.org/01gpc7s59', 'es', 1, 'https://ror.org/01gpc7s59 Instituto Colombiano de Medicina Tropical'),
(62066, 'https://ror.org/0147q3t04', 'es', 1, 'https://ror.org/0147q3t04 Instituto Cubano de Investigaciones de los Derivados de la Caña de Azúcar'),
(62067, 'https://ror.org/0529ecj14', 'no_lang_code', 1, 'https://ror.org/0529ecj14 Institut für Solartechnologien (Germany)'),
(62068, 'https://ror.org/02f9nks69', 'es', 1, 'https://ror.org/02f9nks69 Instituto Tecnico Agronómico Provincial'),
(62069, 'https://ror.org/01zdajg53', 'de', 1, 'https://ror.org/01zdajg53 Ɩsterreichische Lateinamerika-Institut'),
(62070, 'https://ror.org/0133gy754', 'en', 1, 'https://ror.org/0133gy754 Oglebay Institute'),
(62071, 'https://ror.org/016d1vx88', 'en', 1, 'https://ror.org/016d1vx88 Institute Society and Technology Instituut Samenleving en Technologie'),
(62072, 'https://ror.org/00bcsba68', 'pt', 1, 'https://ror.org/00bcsba68 Instituto das Tecnologias de Informação na Justiça'),
(62073, 'https://ror.org/01cqv3m94', 'no_lang_code', 1, 'https://ror.org/01cqv3m94 Indear (Argentina)'),
(62074, 'https://ror.org/02vm8jd66', 'no_lang_code', 1, 'https://ror.org/02vm8jd66 RT-RK Institute for Computer Based Systems (Serbia)'),
(62075, 'https://ror.org/01w723627', 'en', 1, 'https://ror.org/01w723627 Austrian Institute of Ecology Ɩsterreichische Ɩkologie Institut'),
(62076, 'https://ror.org/027n77q19', 'no', 1, 'https://ror.org/027n77q19 Institutt for Eksperimentell Medisinsk Forskning'),
(62077, 'https://ror.org/048b33h38', 'en', 1, 'https://ror.org/048b33h38 JBI International'),
(62078, 'https://ror.org/005n4rr58', 'en', 1, 'https://ror.org/005n4rr58 Scientific Research Institute of Introscopy ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ интроскопии'),
(62079, 'https://ror.org/0165m4813', 'en', 1, 'https://ror.org/0165m4813 Research Institute of Radiology'),
(62080, 'https://ror.org/029z1nr51', 'fr', 1, 'https://ror.org/029z1nr51 RĆ©seau FranƧais des Instituts d''Ɖtudes AvancĆ©es'),
(62081, '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ā€'),
(62082, 'https://ror.org/015sgx450', 'de', 1, 'https://ror.org/015sgx450 Richard-Strauss-Institut'),
(62083, 'https://ror.org/0253bfw77', 'en', 1, 'https://ror.org/0253bfw77 The National Institute for Strategic Studies ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стратегічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(62084, 'https://ror.org/000ffa622', 'en', 1, 'https://ror.org/000ffa622 Patriarchal Institute of Patristic Studies Ī Ī±Ļ„ĻĪ¹Ī±ĻĻ‡Ī¹ĪŗĻŒĪ½ ΙΓρυμα Ī Ī±Ļ„ĪµĻĪ¹ĪŗĻŽĪ½ ĪœĪµĪ»ĪµĻ„ĻŽĪ½'),
(62085, 'https://ror.org/03m3ca021', 'en', 1, 'https://ror.org/03m3ca021 RMIT Europe'),
(62086, 'https://ror.org/0246b6g90', 'en', 1, 'https://ror.org/0246b6g90 Kansas Coalition Against Sexual and Domestic Violence'),
(62087, 'https://ror.org/041t9rh23', 'en', 1, 'https://ror.org/041t9rh23 People of Color Against AIDS Network'),
(62088, 'https://ror.org/033w89p27', 'en', 1, 'https://ror.org/033w89p27 Kansas Health Institute'),
(62089, 'https://ror.org/05kp0wh78', 'en', 1, 'https://ror.org/05kp0wh78 Sagamore Institute'),
(62090, 'https://ror.org/02esr1a07', 'en', 1, 'https://ror.org/02esr1a07 Saint Joseph’s Translational Research Institute'),
(62091, 'https://ror.org/04aa9an38', 'ro', 1, 'https://ror.org/04aa9an38 Institutul Naţional al Patrimoniului'),
(62092, 'https://ror.org/008dffq15', 'hu', 1, 'https://ror.org/008dffq15 Nemzeti SzakkĆ©pzĆ©si Ć©s FelnőttkĆ©pzĆ©si Hivatal'),
(62093, 'https://ror.org/01z230y48', 'en', 1, 'https://ror.org/01z230y48 Canadian National Institute Of Health'),
(62094, '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'),
(62095, 'https://ror.org/004rbvh98', 'en', 1, 'https://ror.org/004rbvh98 Phi Delta Phi'),
(62096, 'https://ror.org/05v6zeb66', 'en', 1, 'https://ror.org/05v6zeb66 Koninklijk Nederlands Instituut te Rome Royal Netherlands Institute in Rome'),
(62097, 'https://ror.org/040696g13', 'no_lang_code', 1, 'https://ror.org/040696g13 PI Photovoltaik-Institut (Germany)'),
(62098, 'https://ror.org/03jraf938', 'en', 1, 'https://ror.org/03jraf938 The Piegan Institute'),
(62099, 'https://ror.org/05h9fft46', 'en', 1, 'https://ror.org/05h9fft46 North Carolina Coalition Against Domestic Violence'),
(62100, 'https://ror.org/03nz9nk15', 'no_lang_code', 1, 'https://ror.org/03nz9nk15 Selekt Výskumný a Šľachtiteľský Ústav (Slovakia)'),
(62101, 'https://ror.org/00ga74481', 'en', 1, 'https://ror.org/00ga74481 Hollanda Araştırma Enstitüsü Netherlands Institute in Turkey'),
(62102, 'https://ror.org/0556k3d61', 'hu', 1, 'https://ror.org/0556k3d61 PuskƔs Tivadar TƔvkƶzlƩsi Technikum'),
(62103, 'https://ror.org/024h8zy86', 'en', 1, 'https://ror.org/024h8zy86 Schothorst Feed Research'),
(62104, 'https://ror.org/01w2qw957', 'no_lang_code', 1, 'https://ror.org/01w2qw957 Shanghai Research Institute of Building Sciences (China) äøŠęµ·å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢');
INSERT INTO `rors` VALUES
(62105, 'https://ror.org/04vbm7a71', 'en', 1, 'https://ror.org/04vbm7a71 Nederlands Instituut voor Internationale Betrekkingen Clingendael Netherlands Institute of International Relations Clingendael'),
(62106, 'https://ror.org/04132ev69', 'nl', 1, 'https://ror.org/04132ev69 Nederlands Instituut voor Lastechniek'),
(62107, 'https://ror.org/04c2c2109', 'de', 1, 'https://ror.org/04c2c2109 Kunststoff-Institut Lüdenscheid Kunststoff-Institut für das mittelständische Wirtschaft NRW GmbH'),
(62108, 'https://ror.org/008gsg955', 'en', 1, 'https://ror.org/008gsg955 Liga Portuguesa Contra a Epilepsia Portuguese League Against Epilepsy'),
(62109, 'https://ror.org/03kke0n21', 'en', 1, 'https://ror.org/03kke0n21 Stockholm Environment Institute'),
(62110, 'https://ror.org/02xdygm42', 'en', 1, 'https://ror.org/02xdygm42 Prevention Institute'),
(62111, 'https://ror.org/03wr30131', 'en', 1, 'https://ror.org/03wr30131 Laban/Bartenieff Institute of Movement Studies'),
(62112, 'https://ror.org/02g0sqt82', 'en', 1, 'https://ror.org/02g0sqt82 Social Care Institute for Excellence'),
(62113, 'https://ror.org/0444szm67', 'en', 1, 'https://ror.org/0444szm67 Stockholm Institute of Communication Science'),
(62114, 'https://ror.org/04syg0e16', 'en', 1, 'https://ror.org/04syg0e16 Nederlands Instituut voor Meerpartijendemocratie Netherlands Institute for Multiparty Democracy'),
(62115, 'https://ror.org/01am91k72', 'en', 1, 'https://ror.org/01am91k72 Prospex Institute'),
(62116, 'https://ror.org/02kxkxq59', 'en', 1, 'https://ror.org/02kxkxq59 Working Men’s Institute'),
(62117, 'https://ror.org/01kh6gx25', 'en', 1, 'https://ror.org/01kh6gx25 Sustainable Europe Research Institute'),
(62118, 'https://ror.org/0028eqh41', 'en', 1, 'https://ror.org/0028eqh41 Recovery Institute of Southwest Michigan'),
(62119, 'https://ror.org/00qc4yc66', 'en', 1, 'https://ror.org/00qc4yc66 New Mexico Military Institute'),
(62120, 'https://ror.org/0348jjn37', 'es', 1, 'https://ror.org/0348jjn37 Redit'),
(62121, 'https://ror.org/01cg3ht11', 'en', 1, 'https://ror.org/01cg3ht11 Institutet fƶr Kvalitetsutveckling Swedish Institute for Quality'),
(62122, 'https://ror.org/02q9rf286', 'en', 1, 'https://ror.org/02q9rf286 Sustainable Development Institute'),
(62123, 'https://ror.org/00bqgmr50', 'en', 1, 'https://ror.org/00bqgmr50 Svenska Institutet i Athen Swedish Institute at Athens'),
(62124, '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'),
(62125, 'https://ror.org/052hz8t89', 'en', 1, 'https://ror.org/052hz8t89 Lietuvos Istorijos Institutas Lithuanian Institute of History'),
(62126, 'https://ror.org/05s6qms04', 'fr', 1, 'https://ror.org/05s6qms04 Institut Jacques Delors'),
(62127, 'https://ror.org/03skdv165', 'en', 1, 'https://ror.org/03skdv165 Institute of Educational Policy Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ΕκπαιΓευτικής Πολιτικής'),
(62128, 'https://ror.org/001561737', 'en', 1, 'https://ror.org/001561737 Research Institute Orion'),
(62129, 'https://ror.org/013fj3d42', 'en', 1, 'https://ror.org/013fj3d42 State Enterprise "State Road Research Institute named M.P.Shulgina'),
(62130, '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'),
(62131, 'https://ror.org/01pr5e984', 'en', 1, 'https://ror.org/01pr5e984 New York State Coalition Against Domestic Violence'),
(62132, 'https://ror.org/009fecc06', 'no_lang_code', 1, 'https://ror.org/009fecc06 Staten Island Museum'),
(62133, 'https://ror.org/03rtrf513', 'en', 1, 'https://ror.org/03rtrf513 New Energy Coalition'),
(62134, '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'),
(62135, 'https://ror.org/03yt10624', 'en', 1, 'https://ror.org/03yt10624 Loretto Community'),
(62136, 'https://ror.org/02srhtt90', 'en', 1, 'https://ror.org/02srhtt90 Ukrainian Institute for Public Policy'),
(62137, 'https://ror.org/05re20904', 'en', 1, 'https://ror.org/05re20904 Westminster Cathedral'),
(62138, 'https://ror.org/04e91sk65', 'en', 1, 'https://ror.org/04e91sk65 The Westminster Historical Society'),
(62139, 'https://ror.org/04aax7b26', 'en', 1, 'https://ror.org/04aax7b26 The Health Care Science Institute ćƒ˜ćƒ«ć‚¹ć‚±ć‚¢ē§‘å­¦ē ”ē©¶ę‰€'),
(62140, 'https://ror.org/02cpxnn28', 'en', 1, 'https://ror.org/02cpxnn28 Wilmington Public Library'),
(62141, 'https://ror.org/00qmy0x85', 'en', 1, 'https://ror.org/00qmy0x85 Internationaal Instituut voor de stedelijke omgeving International Institute for the Urban Environment'),
(62142, 'https://ror.org/05c45t605', 'en', 1, 'https://ror.org/05c45t605 Internationale Lignin-Institut The International Lignin Institute'),
(62143, 'https://ror.org/00pgef156', 'en', 1, 'https://ror.org/00pgef156 End Domestic Abuse Wisconsin'),
(62144, 'https://ror.org/02rr12038', 'de', 1, 'https://ror.org/02rr12038 LVR-Institut für Landeskunde und Regionalgeschichte'),
(62145, 'https://ror.org/038z8c944', 'en', 1, 'https://ror.org/038z8c944 WiseEuropa'),
(62146, 'https://ror.org/04kpjf880', 'en', 1, 'https://ror.org/04kpjf880 Mexican Cultural Institute'),
(62147, 'https://ror.org/033p8v660', 'no_lang_code', 1, 'https://ror.org/033p8v660 Wita Proteomics (Germany)'),
(62148, 'https://ror.org/03vnkwk82', 'en', 1, 'https://ror.org/03vnkwk82 The Mussar Institute'),
(62149, 'https://ror.org/02qwdgg40', 'no_lang_code', 1, 'https://ror.org/02qwdgg40 VDE Prüf- und Zertifizierungsinstitut (Germany)'),
(62150, 'https://ror.org/0555zm156', 'en', 1, 'https://ror.org/0555zm156 Middle East Research Institute'),
(62151, 'https://ror.org/02z02sq57', 'en', 1, 'https://ror.org/02z02sq57 Maine Central Institute'),
(62152, 'https://ror.org/004skt070', 'fi', 1, 'https://ror.org/004skt070 TTS Tyƶtehoseura'),
(62153, 'https://ror.org/02eez3a27', 'en', 1, 'https://ror.org/02eez3a27 The Nautical Institute'),
(62154, 'https://ror.org/003d4z032', 'en', 1, 'https://ror.org/003d4z032 World Music Institute'),
(62155, 'https://ror.org/01hg8wj19', 'en', 1, 'https://ror.org/01hg8wj19 Migration Institute of Australia'),
(62156, 'https://ror.org/01c3bft48', 'no_lang_code', 1, 'https://ror.org/01c3bft48 MainStream Aquaculture (Australia)'),
(62157, 'https://ror.org/02djm4k77', 'no_lang_code', 1, 'https://ror.org/02djm4k77 Wowiwe Instruction (United States)'),
(62158, 'https://ror.org/01mkcqs35', 'en', 1, 'https://ror.org/01mkcqs35 Public Policy and Management Institute VieŔosios politikos ir vadybos institutas'),
(62159, 'https://ror.org/01m3vxn57', 'en', 1, 'https://ror.org/01m3vxn57 York Minster'),
(62160, 'https://ror.org/01px69d78', 'en', 1, 'https://ror.org/01px69d78 The Research Institute for the Care of Older People'),
(62161, 'https://ror.org/05x8k4a38', 'en', 1, 'https://ror.org/05x8k4a38 Health Insurance Institute of Slovenia Zavod za zdravstveno zavarovanje Slovenije'),
(62162, 'https://ror.org/00s50z725', 'en', 1, 'https://ror.org/00s50z725 Metamorphose VI AISBL'),
(62163, 'https://ror.org/04s1wfe13', 'en', 1, 'https://ror.org/04s1wfe13 Jewish Historical Institute Żydowski Instytut Historyczny im. Emanuela Ringelbluma'),
(62164, 'https://ror.org/04f49yt17', 'en', 1, 'https://ror.org/04f49yt17 The Wiener Library'),
(62165, 'https://ror.org/00j4jtq38', 'en', 1, 'https://ror.org/00j4jtq38 Thelonious Monk Institute of Jazz'),
(62166, 'https://ror.org/02r4hr462', 'en', 1, 'https://ror.org/02r4hr462 Istituto Virtuale dei Nano Film Virtual Institute of Nano Films'),
(62167, 'https://ror.org/02vhnq558', 'sq', 1, 'https://ror.org/02vhnq558 Instituti Kombƫtar i Shƫndetƫsisƫ Publike'),
(62168, 'https://ror.org/016frzz57', 'en', 1, 'https://ror.org/016frzz57 Welding Technology Institute of Australia'),
(62169, 'https://ror.org/03ydr6t04', 'en', 1, 'https://ror.org/03ydr6t04 Maritime Institute of Eastern Mediterranean'),
(62170, 'https://ror.org/051wgfj58', 'en', 1, 'https://ror.org/051wgfj58 Institute of Biological, Environmental and Rural Sciences'),
(62171, 'https://ror.org/008pe8240', 'en', 1, 'https://ror.org/008pe8240 West Asia-North Africa Institute معهد ŲŗŲ±ŲØ آسيا - Ų“Ł…Ų§Ł„ Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§'),
(62172, 'https://ror.org/04g4j1336', 'nl', 1, 'https://ror.org/04g4j1336 Vlaams Instituut Gezond Leven'),
(62173, 'https://ror.org/05rg3v683', 'en', 1, 'https://ror.org/05rg3v683 West Virginia Coalition Against Domestic Violence'),
(62174, 'https://ror.org/02s322r10', 'en', 1, 'https://ror.org/02s322r10 Narodowy Instytut Audiowizualny National Audiovisual Institute'),
(62175, 'https://ror.org/02dzzqz47', 'en', 1, 'https://ror.org/02dzzqz47 Mount Fuji Research Institute åÆŒå£«ē·åˆē ”ē©¶ę‰€'),
(62176, 'https://ror.org/02xyxjs42', 'no_lang_code', 1, 'https://ror.org/02xyxjs42 Cthulhu Ventures (United States)'),
(62177, 'https://ror.org/05qxkh644', 'no_lang_code', 1, 'https://ror.org/05qxkh644 INSEAD'),
(62178, 'https://ror.org/024jtk794', 'en', 1, 'https://ror.org/024jtk794 Munson-Williams-Proctor Arts Institute'),
(62179, 'https://ror.org/02xfvtk67', 'en', 1, 'https://ror.org/02xfvtk67 Mechanics'' Institute'),
(62180, 'https://ror.org/03349yg63', 'en', 1, 'https://ror.org/03349yg63 Mediterranean Institute for Primary Care'),
(62181, 'https://ror.org/0405fd303', 'no_lang_code', 1, 'https://ror.org/0405fd303 Medica (United States)'),
(62182, 'https://ror.org/00k388f40', 'no_lang_code', 1, 'https://ror.org/00k388f40 NanoBioImaging (China)'),
(62183, 'https://ror.org/0032hsp73', 'no_lang_code', 1, 'https://ror.org/0032hsp73 Athenex (China)'),
(62184, 'https://ror.org/05e59pk11', 'no_lang_code', 1, 'https://ror.org/05e59pk11 Green Tomato (China)'),
(62185, 'https://ror.org/04jx53751', 'no_lang_code', 1, 'https://ror.org/04jx53751 ConvenientPower Systems (China)'),
(62186, 'https://ror.org/036wd5777', 'no_lang_code', 1, 'https://ror.org/036wd5777 Group Sense (China) ę¬Šę™ŗé›†åœ˜'),
(62187, 'https://ror.org/016hga078', 'no_lang_code', 1, 'https://ror.org/016hga078 Infowise (China)'),
(62188, 'https://ror.org/01vjf9109', 'no_lang_code', 1, 'https://ror.org/01vjf9109 Coolsure (China)'),
(62189, 'https://ror.org/035c0tw34', 'no_lang_code', 1, 'https://ror.org/035c0tw34 GS1 Hong Kong'),
(62190, 'https://ror.org/01af2ae87', 'no_lang_code', 1, 'https://ror.org/01af2ae87 Innopage (China)'),
(62191, 'https://ror.org/0164s1237', 'no_lang_code', 1, 'https://ror.org/0164s1237 New A Innovation (China)'),
(62192, 'https://ror.org/02k6fy602', 'no_lang_code', 1, 'https://ror.org/02k6fy602 Guangdong Hiway Integrated Circuit Technology (China)'),
(62193, 'https://ror.org/04ttbbx73', 'no_lang_code', 1, 'https://ror.org/04ttbbx73 Innovation Team (China) å‰µę–°åœ˜éšŠęœ‰é™å…¬åø'),
(62194, 'https://ror.org/0522a8916', 'no_lang_code', 1, 'https://ror.org/0522a8916 Print-Rite (China) 天威 (å®‰ę·)'),
(62195, 'https://ror.org/05aaad433', 'no_lang_code', 1, 'https://ror.org/05aaad433 Heartisans (China)'),
(62196, 'https://ror.org/02w1g8568', 'en', 1, 'https://ror.org/02w1g8568 The Academy of Sciences of Hong Kong 香港科学院'),
(62197, 'https://ror.org/018ek4r92', 'no_lang_code', 1, 'https://ror.org/018ek4r92 Cosmact (China)'),
(62198, 'https://ror.org/008jsgk36', 'no_lang_code', 1, 'https://ror.org/008jsgk36 Fano Labs (China) ę³•čÆŗå®žéŖŒå®¤'),
(62199, 'https://ror.org/00vx9pd91', 'en', 1, 'https://ror.org/00vx9pd91 Hong Kong Cosmetic Association é¦™ęøÆåŒ–ē²§å“åŒę„­å”ęœƒęœ‰é™å…¬åø'),
(62200, 'https://ror.org/038vtqc18', 'no_lang_code', 1, 'https://ror.org/038vtqc18 Acoustic Arc (China) å£°ę³¢å›½é™…ęœ‰é™å…¬åø'),
(62201, 'https://ror.org/015rkeq20', 'no_lang_code', 1, 'https://ror.org/015rkeq20 Innoverz (China)'),
(62202, 'https://ror.org/0007q9r82', 'no_lang_code', 1, 'https://ror.org/0007q9r82 NiCADa Research & Development (China)'),
(62203, 'https://ror.org/040f9jx84', 'no_lang_code', 1, 'https://ror.org/040f9jx84 Acumen Environmental Engineering & Technologies (China) ę•é”ēŽÆå¢ƒå·„ēØ‹äøŽęŠ€ęœÆ'),
(62204, 'https://ror.org/010t34638', 'no_lang_code', 1, 'https://ror.org/010t34638 Insight (China)'),
(62205, 'https://ror.org/011qk9n39', 'en', 1, 'https://ror.org/011qk9n39 Hong Kong Electro-Plating Merchants Association'),
(62206, 'https://ror.org/00gxm5663', 'no_lang_code', 1, 'https://ror.org/00gxm5663 Craft Group (China)'),
(62207, 'https://ror.org/0437bmy49', 'no_lang_code', 1, 'https://ror.org/0437bmy49 Admomo Media (China)'),
(62208, 'https://ror.org/02gtpap31', 'en', 1, 'https://ror.org/02gtpap31 Institute of Industrial Engineers å·„äøšå·„ēØ‹åøˆå­¦ä¼š'),
(62209, 'https://ror.org/02ns8zp42', 'no_lang_code', 1, 'https://ror.org/02ns8zp42 Numerical Method (China)'),
(62210, 'https://ror.org/0317vtg57', 'no_lang_code', 1, 'https://ror.org/0317vtg57 Advanced Card Systems (China) å…ˆčæ›ēš„å”ē‰‡ē³»ē»Ÿ'),
(62211, 'https://ror.org/059vdg789', 'no_lang_code', 1, 'https://ror.org/059vdg789 nwStor (China)'),
(62212, 'https://ror.org/02q5b4225', 'en', 1, 'https://ror.org/02q5b4225 Hong Kong Association For Integration Of Chinese-Western Medicine'),
(62213, 'https://ror.org/02x6qh956', 'no_lang_code', 1, 'https://ror.org/02x6qh956 Cybersys Computer (China)'),
(62214, 'https://ror.org/00zgs1h87', 'no_lang_code', 1, 'https://ror.org/00zgs1h87 Advanced Interconnect Technologies (China) å…ˆčæ›ēš„äŗ’čæžęŠ€ęœÆ'),
(62215, 'https://ror.org/02pyy0k06', 'en', 1, 'https://ror.org/02pyy0k06 Interactive Systems & Technologies'),
(62216, 'https://ror.org/00fhzqb79', 'en', 1, 'https://ror.org/00fhzqb79 Hong Kong Association for the Advancement of Science and Technology é¦™ęøÆē§‘ęŠ€å”é€²ęœƒ'),
(62217, 'https://ror.org/033ptv654', 'no_lang_code', 1, 'https://ror.org/033ptv654 Objective Solutions (China)'),
(62218, 'https://ror.org/04r2ex566', 'no_lang_code', 1, 'https://ror.org/04r2ex566 Cypress (China)'),
(62219, 'https://ror.org/007h50662', 'no_lang_code', 1, 'https://ror.org/007h50662 Advanced Materials Enterprises (China) å…ˆčæ›ęę–™ä¼äøš'),
(62220, 'https://ror.org/01cnhdd85', 'en', 1, 'https://ror.org/01cnhdd85 Hong Kong Association of Registered Tour Co-ordinators é¦™ęøÆčØ»å†Šå°ŽéŠå”ęœƒ'),
(62221, 'https://ror.org/01e8kt239', 'no_lang_code', 1, 'https://ror.org/01e8kt239 International Transport Information Systems (China)'),
(62222, 'https://ror.org/052wkga64', 'no_lang_code', 1, 'https://ror.org/052wkga64 APT Electronics (China)'),
(62223, 'https://ror.org/01yn40g02', 'en', 1, 'https://ror.org/01yn40g02 Hong Kong Bar Association é¦™ęøÆå¤§å¾‹åø«å…¬ęœƒ'),
(62224, 'https://ror.org/0347rqq77', 'no_lang_code', 1, 'https://ror.org/0347rqq77 OceanX Technology (China)'),
(62225, 'https://ror.org/02gze7m48', 'en', 1, 'https://ror.org/02gze7m48 Hong Kong Biotechnology Organization é¦™ęøÆē”Ÿē‰©ē§‘ęŠ€å”ęœƒ'),
(62226, 'https://ror.org/000j5qy96', 'no_lang_code', 1, 'https://ror.org/000j5qy96 AdvanPro (China)'),
(62227, 'https://ror.org/0474e7473', 'no_lang_code', 1, 'https://ror.org/0474e7473 Hong Kong Blind Union é¦™ęøÆå¤±ę˜Žäŗŗå”é€²ęœƒ'),
(62228, 'https://ror.org/044z1kj72', 'en', 1, 'https://ror.org/044z1kj72 Internet Professional Association äŗ’čÆē¶²å°ˆę„­å”ęœƒ'),
(62229, 'https://ror.org/02a7a3437', 'no_lang_code', 1, 'https://ror.org/02a7a3437 DiagCor (China)'),
(62230, 'https://ror.org/04kddx345', 'en', 1, 'https://ror.org/04kddx345 Hong Kong Business Angel Network é¦™ęøÆå•†äøšå¤©ä½æē½‘'),
(62231, 'https://ror.org/03k7e2020', 'no_lang_code', 1, 'https://ror.org/03k7e2020 Ironfly Technologies (China)'),
(62232, 'https://ror.org/026rmwf78', 'no_lang_code', 1, 'https://ror.org/026rmwf78 Aesi (China) å…‰äø€ē³»ēµ±ļ¼ˆé¦™ęøÆļ¼‰'),
(62233, 'https://ror.org/003ydcg07', 'no_lang_code', 1, 'https://ror.org/003ydcg07 Aidyia (China)'),
(62234, 'https://ror.org/04ptvr660', 'no_lang_code', 1, 'https://ror.org/04ptvr660 Gene (China) é¦™ęøÆåŸŗå› ęœ‰é™å…¬åø'),
(62235, 'https://ror.org/03vfggs20', 'en', 1, 'https://ror.org/03vfggs20 One Earth Designs'),
(62236, 'https://ror.org/03fxqrk78', 'no_lang_code', 1, 'https://ror.org/03fxqrk78 AiSoft Technology (China)'),
(62237, 'https://ror.org/0455r8m48', 'no_lang_code', 1, 'https://ror.org/0455r8m48 IT Channel (China) ē§‘ęŠ€åÆ¼čˆŖ'),
(62238, 'https://ror.org/04b6wfh41', 'no_lang_code', 1, 'https://ror.org/04b6wfh41 Alford Industries (China) é˜æå°”ē¦å¾·å·„äøš'),
(62239, 'https://ror.org/0510xwc60', 'no_lang_code', 1, 'https://ror.org/0510xwc60 Oursky (China)'),
(62240, 'https://ror.org/01en03795', 'no_lang_code', 1, 'https://ror.org/01en03795 Amasic (China)'),
(62241, 'https://ror.org/01cqas505', 'en', 1, 'https://ror.org/01cqas505 Hong Kong General Chamber of Commerce'),
(62242, 'https://ror.org/02ey7f844', 'no_lang_code', 1, 'https://ror.org/02ey7f844 Pacific Medical (China)'),
(62243, 'https://ror.org/00251mh42', 'no_lang_code', 1, 'https://ror.org/00251mh42 Amonics (China)'),
(62244, 'https://ror.org/047qrwb61', 'no_lang_code', 1, 'https://ror.org/047qrwb61 Amos Enterprise (China) é˜æčŽ«ę–Æä¼äøšęœ‰é™å…¬åø'),
(62245, 'https://ror.org/04b4psm33', 'no_lang_code', 1, 'https://ror.org/04b4psm33 Anpac Semiconductor (China) å®‰åø•å…‹åŠåÆ¼ä½“ęœ‰é™å…¬åø'),
(62246, 'https://ror.org/04r9c8c47', 'en', 1, 'https://ror.org/04r9c8c47 Hong Kong Computer Society'),
(62247, 'https://ror.org/02c3k5572', 'no_lang_code', 1, 'https://ror.org/02c3k5572 AP Photonics (China) ę„›ä½©å„€å…‰é›»ęŠ€č”“ęœ‰é™å…¬åø'),
(62248, 'https://ror.org/009y9e888', 'no_lang_code', 1, 'https://ror.org/009y9e888 Pacific Satellite (China)'),
(62249, 'https://ror.org/03rfsht69', 'no_lang_code', 1, 'https://ror.org/03rfsht69 Jason Medical Holdings (China) å‚‘ę£®é†«ē™‚ęŽ§č‚”'),
(62250, 'https://ror.org/01820fp17', 'en', 1, 'https://ror.org/01820fp17 Hong Kong Convention and Exhibition Centre é¦™ęøÆęœƒč­°å±•č¦½äø­åæƒ'),
(62251, 'https://ror.org/024hh3630', 'no_lang_code', 1, 'https://ror.org/024hh3630 Dracaena Life (China) é¾™č”€ę ‘ē”Ÿå‘½ęŠ€ęœÆ'),
(62252, 'https://ror.org/00ebpsa72', 'en', 1, 'https://ror.org/00ebpsa72 Cyberport 數碼港'),
(62253, 'https://ror.org/036f01c07', 'no_lang_code', 1, 'https://ror.org/036f01c07 Pacific World Industrial (China)'),
(62254, 'https://ror.org/055f7gc82', 'no_lang_code', 1, 'https://ror.org/055f7gc82 Dragonchip (China)'),
(62255, 'https://ror.org/04g1tx361', 'no_lang_code', 1, 'https://ror.org/04g1tx361 AppoTech (China) å“ę¦®é›†ęˆé›»č·Æē§‘ęŠ€ęœ‰é™å…¬åø'),
(62256, 'https://ror.org/03t5ky459', 'no_lang_code', 1, 'https://ror.org/03t5ky459 Tech Dragon Limited (China)'),
(62257, 'https://ror.org/03f617c76', 'no_lang_code', 1, 'https://ror.org/03f617c76 ASD Technology (China)'),
(62258, 'https://ror.org/04b4yfd09', 'no_lang_code', 1, 'https://ror.org/04b4yfd09 DSP4YOU (China)'),
(62259, 'https://ror.org/02hbtf857', 'en', 1, 'https://ror.org/02hbtf857 Hong Kong Design Centre é¦™ęøÆčØ­čØˆäø­åæƒ'),
(62260, 'https://ror.org/035ttr831', 'no_lang_code', 1, 'https://ror.org/035ttr831 Pantarei Design (China)'),
(62261, 'https://ror.org/03wj3bs34', 'no_lang_code', 1, 'https://ror.org/03wj3bs34 Hai Kang Life (China) ęµ·åŗ·ē”Ÿå‘½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(62262, 'https://ror.org/04rttan30', 'no_lang_code', 1, 'https://ror.org/04rttan30 Tech Pro (China)'),
(62263, 'https://ror.org/01nfhmh79', 'no_lang_code', 1, 'https://ror.org/01nfhmh79 E I L (China)'),
(62264, 'https://ror.org/00hw06340', 'no_lang_code', 1, 'https://ror.org/00hw06340 Pedorthic Technology (China)'),
(62265, 'https://ror.org/057hps485', 'no_lang_code', 1, 'https://ror.org/057hps485 Atpath Technologies (China)'),
(62266, 'https://ror.org/0252z0n87', 'no_lang_code', 1, 'https://ror.org/0252z0n87 Peer Intelligence Technology (China)'),
(62267, 'https://ror.org/030wgts54', 'en', 1, 'https://ror.org/030wgts54 Hong Kong Electrical Appliances Manufacturers Association é¦™ęøÆē”µå™Øåˆ¶é€ å•†åä¼š'),
(62268, 'https://ror.org/050d32d16', 'no_lang_code', 1, 'https://ror.org/050d32d16 Hong Kong Telecommunications Limited (China)'),
(62269, 'https://ror.org/05wgqxk32', 'en', 1, 'https://ror.org/05wgqxk32 Hong Kong Electronic Industries Association é¦™ęøÆé›»å­ę„­å•†ęœƒ'),
(62270, 'https://ror.org/02zn0w908', 'no_lang_code', 1, 'https://ror.org/02zn0w908 Auvi (China)'),
(62271, 'https://ror.org/0317nyv30', 'en', 1, 'https://ror.org/0317nyv30 Hong Kong Export Credit Insurance Corporation'),
(62272, 'https://ror.org/00vdwj549', 'en', 1, 'https://ror.org/00vdwj549 Textile Council of Hong Kong'),
(62273, 'https://ror.org/02s0pv682', 'en', 1, 'https://ror.org/02s0pv682 Hong Kong Exporters’ Association é¦™ęøÆå‡ŗå£å•†åä¼š'),
(62274, 'https://ror.org/03890pj38', 'no_lang_code', 1, 'https://ror.org/03890pj38 Axiom (China)'),
(62275, 'https://ror.org/03kj2mz58', 'en', 1, 'https://ror.org/03kj2mz58 Hong Kong Far Infrared Rays Association é¦™ęøÆé ē“…å¤–ē·šå”ęœƒ'),
(62276, 'https://ror.org/04pb98034', 'no_lang_code', 1, 'https://ror.org/04pb98034 TFI Digital Media Limited (China)'),
(62277, 'https://ror.org/049naj365', 'no_lang_code', 1, 'https://ror.org/049naj365 B-Free Technology (China)'),
(62278, 'https://ror.org/002mt0228', 'no_lang_code', 1, 'https://ror.org/002mt0228 Eltis Microelectronics (China)'),
(62279, 'https://ror.org/00v70rk54', 'no_lang_code', 1, 'https://ror.org/00v70rk54 BBPOS (China)'),
(62280, 'https://ror.org/05hjg3r73', 'en', 1, 'https://ror.org/05hjg3r73 Hong Kong Federation of Innovative Technologies and Manufacturing Industries é¦™ęøÆå‰µę–°ē§‘ęŠ€åŠč£½é€ ę„­čÆåˆēø½ęœƒ'),
(62281, 'https://ror.org/04nga4641', 'no_lang_code', 1, 'https://ror.org/04nga4641 Diodes (China)'),
(62282, 'https://ror.org/01n6k5w94', 'en', 1, 'https://ror.org/01n6k5w94 BEAM Society'),
(62283, 'https://ror.org/02jr9jv46', 'en', 1, 'https://ror.org/02jr9jv46 Hong Kong Federation of Youth Groups é¦™ęøÆé’å¹“å”ęœƒ'),
(62284, 'https://ror.org/03pcp9q42', 'no_lang_code', 1, 'https://ror.org/03pcp9q42 PharmacoGenetics (China)'),
(62285, 'https://ror.org/038xegj08', 'no_lang_code', 1, 'https://ror.org/038xegj08 TPC (China)'),
(62286, 'https://ror.org/03metqd67', 'no_lang_code', 1, 'https://ror.org/03metqd67 eNano Health (China)'),
(62287, 'https://ror.org/029eyr524', 'en', 1, 'https://ror.org/029eyr524 Hong Kong Food Council é¦™ęøÆé£Ÿå“å§”å“”ęœƒ'),
(62288, 'https://ror.org/03kb01078', 'en', 1, 'https://ror.org/03kb01078 Hong Kong Green Building Council é¦™ęøÆē¶ č‰²å»ŗēÆ‰č­°ęœƒ'),
(62289, 'https://ror.org/01h3wfb62', 'en', 1, 'https://ror.org/01h3wfb62 Trade and Industry Department å·„ę„­č²æę˜“ē½²'),
(62290, 'https://ror.org/03ag4ep03', 'no_lang_code', 1, 'https://ror.org/03ag4ep03 Pixel Magic Systems (China)'),
(62291, 'https://ror.org/056s60883', 'en', 1, 'https://ror.org/056s60883 Hong Kong Hide & Leather Traders'' Association é¦™ęøÆēš®ę„­å•†ęœƒęœ‰é™å…¬åø'),
(62292, 'https://ror.org/05tbpks29', 'no_lang_code', 1, 'https://ror.org/05tbpks29 TradeCity Cybersoft (China)'),
(62293, 'https://ror.org/00h8mkp41', 'no_lang_code', 1, 'https://ror.org/00h8mkp41 Bloombase (China)'),
(62294, 'https://ror.org/045t4ag71', 'en', 1, 'https://ror.org/045t4ag71 Hong Kong Hotels Association é¦™ęøÆé…’åŗ—äøšåä¼š'),
(62295, 'https://ror.org/00vs6f587', 'en', 1, 'https://ror.org/00vs6f587 Hong Kong Information Technology Federation é¦™ęøÆč³‡čØŠē§‘ęŠ€å•†ęœƒ'),
(62296, 'https://ror.org/02hnfym30', 'no_lang_code', 1, 'https://ror.org/02hnfym30 Platysens (China)'),
(62297, 'https://ror.org/00t8z0x94', 'en', 1, 'https://ror.org/00t8z0x94 Hong Kong Information Technology Joint Council é¦™ęøÆč³‡čØŠē§‘ęŠ€čÆęœƒ'),
(62298, 'https://ror.org/03ca37b25', 'en', 1, 'https://ror.org/03ca37b25 Hong Kong Institute of Biotechnology é¦™ęøÆē”Ÿē‰©ē§‘ęŠ€å­¦é™¢'),
(62299, 'https://ror.org/00ag0s904', 'en', 1, 'https://ror.org/00ag0s904 The Boys'' & Girls'' Clubs Association of Hong Kong é¦™ęøÆå°ē«„ē¾¤ē›Šęœƒ'),
(62300, 'https://ror.org/0233w8s77', 'no_lang_code', 1, 'https://ror.org/0233w8s77 Playnote (China)'),
(62301, 'https://ror.org/05xpxhd51', 'no_lang_code', 1, 'https://ror.org/05xpxhd51 Portable Innovation Technology (China)'),
(62302, 'https://ror.org/01dmaez27', 'en', 1, 'https://ror.org/01dmaez27 Hong Kong Institute of Vocational Education é¦™ęøÆå°ˆę„­ę•™č‚²å­øé™¢'),
(62303, 'https://ror.org/03e6wzs70', 'no_lang_code', 1, 'https://ror.org/03e6wzs70 Unisen Group (China)'),
(62304, 'https://ror.org/016ksqd60', 'en', 1, 'https://ror.org/016ksqd60 Hong Kong Institution of Engineers é¦™ęøÆå·„ēØ‹åøˆå­¦ä¼š'),
(62305, 'https://ror.org/05jv1dg95', 'no_lang_code', 1, 'https://ror.org/05jv1dg95 eSpot Lighting (China)'),
(62306, 'https://ror.org/02w8vq828', 'en', 1, 'https://ror.org/02w8vq828 Hong Kong International Arbitration Centre é¦™ęøÆå›½é™…ä»²č£äø­åæƒ'),
(62307, 'https://ror.org/02k2g5975', 'no_lang_code', 1, 'https://ror.org/02k2g5975 PowerELab (China)'),
(62308, 'https://ror.org/05ec5ky31', 'no_lang_code', 1, 'https://ror.org/05ec5ky31 Eternal East Group (China)'),
(62309, 'https://ror.org/034twfm68', 'en', 1, 'https://ror.org/034twfm68 Hong Kong Jewellery & Jade Manufacturers Association é¦™ęøÆē å®ēŽ‰ēŸ³åŽ‚å•†ä¼š'),
(62310, 'https://ror.org/02fttt453', 'no_lang_code', 1, 'https://ror.org/02fttt453 VCAST (China)'),
(62311, 'https://ror.org/05b4q6y22', 'en', 1, 'https://ror.org/05b4q6y22 Hong Kong Jewelry Manufacturers'' Association é¦™ęøÆē åÆ¶č£½é€ ę„­å» å•†ęœƒ'),
(62312, 'https://ror.org/00w4zfe96', 'no_lang_code', 1, 'https://ror.org/00w4zfe96 Chaowei Group (China)'),
(62313, 'https://ror.org/00c6gyc33', 'no_lang_code', 1, 'https://ror.org/00c6gyc33 Everplant Technology (China)'),
(62314, 'https://ror.org/011rk9932', 'no_lang_code', 1, 'https://ror.org/011rk9932 Prenetics (China)'),
(62315, 'https://ror.org/05wany963', 'en', 1, 'https://ror.org/05wany963 Hong Kong Footwear Federation'),
(62316, 'https://ror.org/01hbaf921', 'en', 1, 'https://ror.org/01hbaf921 Hong Kong Medical and Healthcare Device Industries Association é¦™ęøÆé†«ē™‚åŠäæå„å™Øęč”Œę„­å”ęœƒ'),
(62317, 'https://ror.org/02qze4h25', 'no_lang_code', 1, 'https://ror.org/02qze4h25 Caching Technology (China)'),
(62318, 'https://ror.org/02kmbbe05', 'en', 1, 'https://ror.org/02kmbbe05 Hong Kong Surface Finishing Society é¦™ęøÆč”Øé¢å¤„ē†å­¦ä¼š'),
(62319, 'https://ror.org/00905q798', 'en', 1, 'https://ror.org/00905q798 Hong Kong Metals Manufacturers Association é¦™ęøÆé‡‘å±¬č£½é€ ę„­å”ęœƒ'),
(62320, 'https://ror.org/04q57k124', 'en', 1, 'https://ror.org/04q57k124 Hong Kong New Generation Cultural Association é¦™ęøÆę–°äø€ä»£ę–‡åŒ–å”ęœƒ'),
(62321, 'https://ror.org/02pvf2m42', 'no_lang_code', 1, 'https://ror.org/02pvf2m42 Progressive Technology (China)'),
(62322, 'https://ror.org/00qvnyw14', 'no_lang_code', 1, 'https://ror.org/00qvnyw14 Jets Technics (China)'),
(62323, 'https://ror.org/04zhz8n61', 'en', 1, 'https://ror.org/04zhz8n61 Hong Kong Optical Manufacturers Association é¦™ęøÆå…‰å­¦åˆ¶é€ å•†åä¼š'),
(62324, 'https://ror.org/03rkn9a03', 'en', 1, 'https://ror.org/03rkn9a03 Federation of Hong Kong Industries'),
(62325, 'https://ror.org/04b3dps61', 'no_lang_code', 1, 'https://ror.org/04b3dps61 CapitaLogic (China)'),
(62326, 'https://ror.org/01scxhk26', 'no_lang_code', 1, 'https://ror.org/01scxhk26 Fern (China)'),
(62327, 'https://ror.org/02rqvg733', 'en', 1, 'https://ror.org/02rqvg733 Hong Kong Organic Waste Recycling Centre é¦™ęøÆęœ‰ę©Ÿč³‡ęŗå†ē”Ÿäø­'),
(62328, 'https://ror.org/01hyggk46', 'no_lang_code', 1, 'https://ror.org/01hyggk46 PSP Security (China)'),
(62329, 'https://ror.org/01x23ex04', 'no_lang_code', 1, 'https://ror.org/01x23ex04 CAS Logistics (China)'),
(62330, 'https://ror.org/00wmar339', 'no_lang_code', 1, 'https://ror.org/00wmar339 JSAB Technologies (China)'),
(62331, 'https://ror.org/051451b66', 'no_lang_code', 1, 'https://ror.org/051451b66 Finima Innovations (China)'),
(62332, 'https://ror.org/00g2ec863', 'en', 1, 'https://ror.org/00g2ec863 Hong Kong Pharmaceutical Manufacturers Association é¦™ęøÆåˆ¶čÆå•†åä¼šęœ‰é™å…¬åø'),
(62333, 'https://ror.org/00ytg8k67', 'en', 1, 'https://ror.org/00ytg8k67 Hong Kong Principals’ Institute é¦™ęøÆę ”é•æä¼š'),
(62334, 'https://ror.org/05mp1w822', 'no_lang_code', 1, 'https://ror.org/05mp1w822 Cathay Photonics (China) åœ‹ę³°å…‰é›»ęœ‰é™å…¬åø'),
(62335, 'https://ror.org/04jyhzm90', 'no_lang_code', 1, 'https://ror.org/04jyhzm90 FirsTune (China)'),
(62336, 'https://ror.org/01txhcw25', 'no_lang_code', 1, 'https://ror.org/01txhcw25 Cell Technology (China)'),
(62337, 'https://ror.org/03qsja474', 'no_lang_code', 1, 'https://ror.org/03qsja474 Radica Systems (China)'),
(62338, 'https://ror.org/04sdv1b42', 'no_lang_code', 1, 'https://ror.org/04sdv1b42 JSpectrum (China)'),
(62339, 'https://ror.org/003km8q97', 'en', 1, 'https://ror.org/003km8q97 Hong Kong Opto-Mechatronics Industries Association é¦™ęøÆäø­čÆēœ¼é”č£½é€ å» å•†ęœƒęœ‰é™å…¬åø'),
(62340, 'https://ror.org/04w41nt03', 'no_lang_code', 1, 'https://ror.org/04w41nt03 Kalloc Studios (China)'),
(62341, 'https://ror.org/00gncg762', 'en', 1, 'https://ror.org/00gncg762 Hong Kong Plastic Machinery Association é¦™ęøÆå”‘ę–™ęœŗę¢°åä¼š'),
(62342, 'https://ror.org/037qebp73', 'no_lang_code', 1, 'https://ror.org/037qebp73 Ram-Chem (China)'),
(62343, 'https://ror.org/04x5g9003', 'en', 1, 'https://ror.org/04x5g9003 Hong Kong Plastics Manufacturers Association é¦™ęøÆå”‘č† ę„­å» å•†ęœ‰é™å…¬åø'),
(62344, 'https://ror.org/003f1a217', 'no_lang_code', 1, 'https://ror.org/003f1a217 Bizconline (China)'),
(62345, 'https://ror.org/054vdk688', 'no_lang_code', 1, 'https://ror.org/054vdk688 KanHan Technologies (China)'),
(62346, 'https://ror.org/03c57q417', 'en', 1, 'https://ror.org/03c57q417 Hong Kong Policy Research Institute é¦™ęøÆé”˜ę™Æ'),
(62347, 'https://ror.org/04nh45n53', 'no_lang_code', 1, 'https://ror.org/04nh45n53 Reasonable Software House (China)'),
(62348, 'https://ror.org/02gbmxj61', 'no_lang_code', 1, 'https://ror.org/02gbmxj61 Certizen (China) ēæ¹ę™‰é›»å­å•†å‹™ęœ‰é™å…¬åø'),
(62349, 'https://ror.org/02nyad521', 'no_lang_code', 1, 'https://ror.org/02nyad521 CHTC Fong’s Industries (China)'),
(62350, 'https://ror.org/025z7st22', 'en', 1, 'https://ror.org/025z7st22 Hong Kong Printed Circuit Association é¦™ęøÆå°åˆ¶ē”µč·Æåä¼š'),
(62351, 'https://ror.org/02apbtx51', 'en', 1, 'https://ror.org/02apbtx51 Hong Kong Printers Association é¦™ęøÆå°åˆ·ę„­å•†ęœƒ'),
(62352, 'https://ror.org/01ncm8z56', 'no_lang_code', 1, 'https://ror.org/01ncm8z56 CET Opto (China)'),
(62353, 'https://ror.org/01bq0yy21', 'no_lang_code', 1, 'https://ror.org/01bq0yy21 RediSem (China)'),
(62354, 'https://ror.org/01dzptr68', 'no_lang_code', 1, 'https://ror.org/01dzptr68 Four Directions (China)'),
(62355, 'https://ror.org/03nm59d75', 'en', 1, 'https://ror.org/03nm59d75 Hong Kong R&D Centre for Logistics and Supply Chain Management Enabling Technologies é¦™ęøÆē‰©ęµåŠä¾›åŗ”é“¾ē®”ē†åŗ”ē”ØęŠ€ęœÆē ”å‘äø­åæƒ'),
(62356, 'https://ror.org/04ffj1463', 'no_lang_code', 1, 'https://ror.org/04ffj1463 Kingdee (China)'),
(62357, 'https://ror.org/05cxhgh47', 'en', 1, 'https://ror.org/05cxhgh47 China Aircraft Services Limited äø­åœ‹é£›ę©Ÿęœå‹™ęœ‰é™å…¬åø'),
(62358, 'https://ror.org/040kksw48', 'no_lang_code', 1, 'https://ror.org/040kksw48 Rehab-Robotics (China)'),
(62359, 'https://ror.org/05hwkqh71', 'no_lang_code', 1, 'https://ror.org/05hwkqh71 Frenzoo (China)'),
(62360, 'https://ror.org/02r82ad48', 'en', 1, 'https://ror.org/02r82ad48 Hong Kong Retail Management Association é¦™ęøÆé›¶å”®ē®”ē†åä¼š'),
(62361, 'https://ror.org/05xqdb208', 'no_lang_code', 1, 'https://ror.org/05xqdb208 Frontier Advanced Technology (China)'),
(62362, 'https://ror.org/059n2nf73', 'no_lang_code', 1, 'https://ror.org/059n2nf73 Hong Kong RFID (China)'),
(62363, 'https://ror.org/0024e4j94', 'no_lang_code', 1, 'https://ror.org/0024e4j94 China Financial Services Holdings (China) äø­åœ‹é‡‘čžęŠ•č³‡ē®”ē†ęœ‰é™å…¬åø'),
(62364, 'https://ror.org/03gtgjs38', 'no_lang_code', 1, 'https://ror.org/03gtgjs38 Retraction (China)'),
(62365, 'https://ror.org/0246sc786', 'no_lang_code', 1, 'https://ror.org/0246sc786 Kontel Microsystems (China)'),
(62366, 'https://ror.org/0026yhs27', 'no_lang_code', 1, 'https://ror.org/0026yhs27 China Resources (China) čÆę½¤é›†åœ˜'),
(62367, 'https://ror.org/04w4yzw62', 'no_lang_code', 1, 'https://ror.org/04w4yzw62 Fujitsu (China)'),
(62368, 'https://ror.org/00c671n77', 'en', 1, 'https://ror.org/00c671n77 Hong Kong Small and Medium Enterprises Association é¦™ęøÆäø­å°ä¼äøšč”ä¼š'),
(62369, 'https://ror.org/01fhjwb62', 'en', 1, 'https://ror.org/01fhjwb62 Chinese General Chamber of Commerce é¦™ęøÆäø­čÆēø½å•†ęœƒ'),
(62370, 'https://ror.org/03ry0z171', 'no_lang_code', 1, 'https://ror.org/03ry0z171 Koofy Development (China)'),
(62371, 'https://ror.org/01ba3f557', 'en', 1, 'https://ror.org/01ba3f557 Chinese Manufacturers'' Association of Hong Kong é¦™ęøÆäø­čÆå» å•†čÆåˆęœƒ'),
(62372, 'https://ror.org/00sw6qf69', 'en', 1, 'https://ror.org/00sw6qf69 Hong Kong Statistical Society é¦™ęøÆēµ±čØˆå­øęœƒ'),
(62373, 'https://ror.org/0058pdq21', 'no_lang_code', 1, 'https://ror.org/0058pdq21 Rodsum Wireless (China)'),
(62374, 'https://ror.org/00ar42c47', 'no_lang_code', 1, 'https://ror.org/00ar42c47 Fustec (China) åÆŒé”ē§‘ęŠ€åœ‹éš›ęœ‰é™å…¬åø'),
(62375, 'https://ror.org/00ws3fz89', 'en', 1, 'https://ror.org/00ws3fz89 Hong Kong Tourism Board é¦™ęøÆę—…éŠē™¼å±•å±€'),
(62376, 'https://ror.org/02bh71182', 'no_lang_code', 1, 'https://ror.org/02bh71182 Chuang''s Consortium International (China) åŗ„ę°å›½é™…č“¢å›¢'),
(62377, 'https://ror.org/01dx9ap19', 'no_lang_code', 1, 'https://ror.org/01dx9ap19 Gameone Holdings (China) ę™ŗå‚²ęŽ§č‚”ęœ‰é™å…¬åø'),
(62378, 'https://ror.org/05wnrmt13', 'en', 1, 'https://ror.org/05wnrmt13 Hong Kong Watch Manufacturers Association é¦™ęøÆč”Øå» å•†ęœƒęœ‰é™å…¬åø'),
(62379, 'https://ror.org/002j3c366', 'en', 1, 'https://ror.org/002j3c366 Hong Kong Wireless Technology Industry Association é¦™ęøÆę— ēŗæē§‘ęŠ€å·„äøšåä¼š'),
(62380, 'https://ror.org/04kxcwc73', 'en', 1, 'https://ror.org/04kxcwc73 Law Society of Hong Kong é¦™ęøÆå¾‹åø«ęœƒ'),
(62381, 'https://ror.org/05kxkht56', 'en', 1, 'https://ror.org/05kxkht56 The Gemmological Association of Hong Kong'),
(62382, 'https://ror.org/04ff87f07', 'no_lang_code', 1, 'https://ror.org/04ff87f07 Gene Tech (China)'),
(62383, 'https://ror.org/03r2hkg16', 'no_lang_code', 1, 'https://ror.org/03r2hkg16 Chungnam Group (China) åæ å—é›†å›¢'),
(62384, 'https://ror.org/044bvzh33', 'no_lang_code', 1, 'https://ror.org/044bvzh33 Sanwa Technologies (China)'),
(62385, 'https://ror.org/03gpgyd64', 'no_lang_code', 1, 'https://ror.org/03gpgyd64 GeneHarbor (China)'),
(62386, 'https://ror.org/0119xsz74', 'no_lang_code', 1, 'https://ror.org/0119xsz74 City Image Technology (China) åŸŽåø‚å½¢č±”ęŠ€ęœÆ'),
(62387, 'https://ror.org/02ewh7078', 'en', 1, 'https://ror.org/02ewh7078 Clothing Industry Training Authority åˆ¶č”£äøšč®­ē»ƒå±€'),
(62388, 'https://ror.org/01tbd0258', 'no_lang_code', 1, 'https://ror.org/01tbd0258 Lexiwave Technology (China)'),
(62389, 'https://ror.org/037jwt041', 'no_lang_code', 1, 'https://ror.org/037jwt041 Clover Seed (China) é«˜čÆēØ®å­'),
(62390, 'https://ror.org/0493mnj50', 'no_lang_code', 1, 'https://ror.org/0493mnj50 Clovergreen (China)'),
(62391, 'https://ror.org/00z0gd065', 'no_lang_code', 1, 'https://ror.org/00z0gd065 Idealand Electronics (China) ē†ęƒ³å’Œē”µå­'),
(62392, 'https://ror.org/008ztbx56', 'no_lang_code', 1, 'https://ror.org/008ztbx56 Global Technic Enterprises (China)'),
(62393, 'https://ror.org/01pcjfy81', 'en', 1, 'https://ror.org/01pcjfy81 Savantas Policy Institute'),
(62394, 'https://ror.org/04fmkfb67', 'no_lang_code', 1, 'https://ror.org/04fmkfb67 DĆ -Jiāng Innovations Science and Technology (China) å¤§ē–†åˆ›ę–°ē§‘ęŠ€ęœ‰é™å…¬åø'),
(62395, 'https://ror.org/04sjk7a65', 'no_lang_code', 1, 'https://ror.org/04sjk7a65 LinkedTech Solutions (China)'),
(62396, 'https://ror.org/01dshmj81', 'no_lang_code', 1, 'https://ror.org/01dshmj81 New Universe Environmental Group (China) ę–°å®‡åœ‹éš›åÆ¦ę„­(集團)ęœ‰é™å…¬åø'),
(62397, 'https://ror.org/00sdawb83', 'en', 1, 'https://ror.org/00sdawb83 Co-operatives of Innovative Intellectuals åˆ›ę–°ēŸ„čÆ†åˆ†å­åˆä½œē¤¾'),
(62398, 'https://ror.org/053afye15', 'no_lang_code', 1, 'https://ror.org/053afye15 iMusicTech (China)'),
(62399, 'https://ror.org/04jj4c328', 'no_lang_code', 1, 'https://ror.org/04jj4c328 AECOM (China)'),
(62400, 'https://ror.org/05aana297', 'no_lang_code', 1, 'https://ror.org/05aana297 Glory Sky Group (China)'),
(62401, 'https://ror.org/03r9sb108', 'no_lang_code', 1, 'https://ror.org/03r9sb108 LinkPowerTechnology (China)'),
(62402, 'https://ror.org/00k7bh212', 'no_lang_code', 1, 'https://ror.org/00k7bh212 Sengital (China)'),
(62403, 'https://ror.org/00fagmh73', 'no_lang_code', 1, 'https://ror.org/00fagmh73 LiteMagic (China) ē£Šę˜Žē§‘ęŠ€'),
(62404, 'https://ror.org/05yaab071', 'no_lang_code', 1, 'https://ror.org/05yaab071 Googol Technology (China)'),
(62405, 'https://ror.org/00r2ty054', 'no_lang_code', 1, 'https://ror.org/00r2ty054 Lively Impact (China)'),
(62406, 'https://ror.org/04hhsd771', 'no_lang_code', 1, 'https://ror.org/04hhsd771 Solomon Systech (China)'),
(62407, 'https://ror.org/054hrx607', 'no_lang_code', 1, 'https://ror.org/054hrx607 ShaoLin Microsystems (China)'),
(62408, 'https://ror.org/02thf7b44', 'no_lang_code', 1, 'https://ror.org/02thf7b44 SillyCube Technology (China)'),
(62409, 'https://ror.org/04esny758', 'en', 1, 'https://ror.org/04esny758 Hong Kong Cytogenetics and Medical Genetics Centre åŒ»ē–—åŸŗå› äø­åæƒęœ‰é™å…¬åø'),
(62410, 'https://ror.org/04r6pf442', 'no_lang_code', 1, 'https://ror.org/04r6pf442 Logital (China)'),
(62411, 'https://ror.org/05rpz9w55', 'no_lang_code', 1, 'https://ror.org/05rpz9w55 Gowell (China)'),
(62412, 'https://ror.org/04rjcfg43', 'no_lang_code', 1, 'https://ror.org/04rjcfg43 Star Vision (China)'),
(62413, 'https://ror.org/03aeycp46', 'no_lang_code', 1, 'https://ror.org/03aeycp46 Meyer (China) ē¾Žäŗžå»šå…·ę——č‰¦åŗ—'),
(62414, 'https://ror.org/03w7z8f72', 'no_lang_code', 1, 'https://ror.org/03w7z8f72 GP Batteries (China)'),
(62415, 'https://ror.org/00ahxp428', 'no_lang_code', 1, 'https://ror.org/00ahxp428 Micom Tech (China)'),
(62416, 'https://ror.org/04d0zy231', 'no_lang_code', 1, 'https://ror.org/04d0zy231 Grant Technology (China)'),
(62417, 'https://ror.org/04g67gh56', 'no_lang_code', 1, 'https://ror.org/04g67gh56 Studio-R'),
(62418, 'https://ror.org/059wdnr97', 'no_lang_code', 1, 'https://ror.org/059wdnr97 Lotus Innovative Health (China)'),
(62419, 'https://ror.org/0128g9342', 'no_lang_code', 1, 'https://ror.org/0128g9342 Storage Computer (China) å„²å­˜é›»č…¦'),
(62420, 'https://ror.org/026cpqs41', 'en', 1, 'https://ror.org/026cpqs41 Graphic Arts Association of Hong Kong'),
(62421, 'https://ror.org/04b5qs470', 'no_lang_code', 1, 'https://ror.org/04b5qs470 SinoCDN (China)'),
(62422, 'https://ror.org/0341fmf68', 'no_lang_code', 1, 'https://ror.org/0341fmf68 Lucky Technology (China) å¹øčæęŠ€ęœÆ'),
(62423, 'https://ror.org/02t3k2v42', 'no_lang_code', 1, 'https://ror.org/02t3k2v42 Suga International Holdings (China)'),
(62424, 'https://ror.org/04zr3n007', 'no_lang_code', 1, 'https://ror.org/04zr3n007 Green Energy Engineering Consultancy (China)'),
(62425, 'https://ror.org/0029tjt59', 'no_lang_code', 1, 'https://ror.org/0029tjt59 Milescan Technologies (China)'),
(62426, 'https://ror.org/046fssx10', 'no_lang_code', 1, 'https://ror.org/046fssx10 Sun Cupid Technology (China) å¤Ŗé˜³äø˜ęÆ”ē‰¹ē§‘ęŠ€'),
(62427, 'https://ror.org/00h644t73', 'no_lang_code', 1, 'https://ror.org/00h644t73 Green Island Chinese Medicine International Group (China)'),
(62428, 'https://ror.org/0122c9a54', 'no_lang_code', 1, 'https://ror.org/0122c9a54 Suntek Computer Systems (China) äø‰ę±Ÿé›»č…¦ē§‘ęŠ€'),
(62429, 'https://ror.org/05r783042', 'no_lang_code', 1, 'https://ror.org/05r783042 Vitargent (China)'),
(62430, 'https://ror.org/03yyvfk78', 'no_lang_code', 1, 'https://ror.org/03yyvfk78 Milo''s Knitwear (China) ē±³ę“›ēš„é’ˆē»‡å“'),
(62431, 'https://ror.org/04bcbnh21', 'no_lang_code', 1, 'https://ror.org/04bcbnh21 Zensis (China)'),
(62432, 'https://ror.org/02xs6t089', 'en', 1, 'https://ror.org/02xs6t089 SupBuyer (China)'),
(62433, 'https://ror.org/03dkatp24', 'no_lang_code', 1, 'https://ror.org/03dkatp24 Longchang Group (China)'),
(62434, 'https://ror.org/05bfb6c92', 'no_lang_code', 1, 'https://ror.org/05bfb6c92 Zetakey Solutions (China)'),
(62435, 'https://ror.org/01jsj3b27', 'no_lang_code', 1, 'https://ror.org/01jsj3b27 Suren Systems (China) č„æę¦®ē§‘ęŠ€ęœ‰é™å…¬åø'),
(62436, 'https://ror.org/046mdph26', 'no_lang_code', 1, 'https://ror.org/046mdph26 Vitelic Technology (China)'),
(62437, 'https://ror.org/02wks8h31', 'no_lang_code', 1, 'https://ror.org/02wks8h31 MixSemi (China)'),
(62438, 'https://ror.org/00bazmd55', 'no_lang_code', 1, 'https://ror.org/00bazmd55 Well Being Digital (China)'),
(62439, 'https://ror.org/01tn6aq30', 'no_lang_code', 1, 'https://ror.org/01tn6aq30 Da Tang Xi Shi Group (China)'),
(62440, 'https://ror.org/03jpdh152', 'no_lang_code', 1, 'https://ror.org/03jpdh152 Well Synergy International (China)'),
(62441, 'https://ror.org/00y9w2r94', 'no_lang_code', 1, 'https://ror.org/00y9w2r94 Ta Solutions (China)'),
(62442, 'https://ror.org/03f20tk20', 'no_lang_code', 1, 'https://ror.org/03f20tk20 Pixelworks (China)'),
(62443, 'https://ror.org/051h3ee29', 'no_lang_code', 1, 'https://ror.org/051h3ee29 M-Gen Mobile Technology (China)'),
(62444, 'https://ror.org/01ctr6v45', 'no_lang_code', 1, 'https://ror.org/01ctr6v45 Wincas Technology (China)'),
(62445, 'https://ror.org/02eh06394', 'no_lang_code', 1, 'https://ror.org/02eh06394 Made in Sense (China)'),
(62446, 'https://ror.org/05pf8rm83', 'en', 1, 'https://ror.org/05pf8rm83 Modernized Chinese Medicine International Association å›½é™…ēŽ°ä»£åŒ–äø­čÆ'),
(62447, 'https://ror.org/048byev10', 'no_lang_code', 1, 'https://ror.org/048byev10 MotherApp (China)'),
(62448, 'https://ror.org/02pr5zn71', 'no_lang_code', 1, 'https://ror.org/02pr5zn71 Wisers (China)'),
(62449, 'https://ror.org/00bz31e77', 'no_lang_code', 1, 'https://ror.org/00bz31e77 Waste & Environmental Technologies (China)'),
(62450, 'https://ror.org/01q8yy239', 'no_lang_code', 1, 'https://ror.org/01q8yy239 Manicon Technology (China)'),
(62451, 'https://ror.org/03573kt53', 'no_lang_code', 1, 'https://ror.org/03573kt53 Mosway Semiconductor (China)'),
(62452, 'https://ror.org/00zgbag39', 'no_lang_code', 1, 'https://ror.org/00zgbag39 WiseSpot (China)'),
(62453, 'https://ror.org/012adm074', 'no_lang_code', 1, 'https://ror.org/012adm074 Multi Base (China)'),
(62454, 'https://ror.org/02qy75381', 'no_lang_code', 1, 'https://ror.org/02qy75381 Cisco Systems (China)'),
(62455, 'https://ror.org/00h6s9634', 'no_lang_code', 1, 'https://ror.org/00h6s9634 Yfisoft (China)'),
(62456, 'https://ror.org/0100xdb42', 'no_lang_code', 1, 'https://ror.org/0100xdb42 Multichannel (China) 多通道'),
(62457, 'https://ror.org/01b7f0c49', 'no_lang_code', 1, 'https://ror.org/01b7f0c49 WCW Technology (China)'),
(62458, 'https://ror.org/028ngh465', 'en', 1, 'https://ror.org/028ngh465 Young Entrepreneurs Development Council'),
(62459, 'https://ror.org/01bjkqp85', 'no_lang_code', 1, 'https://ror.org/01bjkqp85 Maxful (China)'),
(62460, 'https://ror.org/043ca0x76', 'no_lang_code', 1, 'https://ror.org/043ca0x76 Nam Kwong Electric (China) å—å…‰é›»å“ęœ‰é™å…¬åø'),
(62461, 'https://ror.org/05vd34735', 'en', 1, 'https://ror.org/05vd34735 National Centre for Immunisation Research & Surveillance'),
(62462, 'https://ror.org/011rjve03', 'en', 1, 'https://ror.org/011rjve03 Health Education and Training Institute'),
(62463, 'https://ror.org/02nhpf205', 'fr', 1, 'https://ror.org/02nhpf205 CancƩropƓle Lyon Auvergne-RhƓne-Alpes'),
(62464, 'https://ror.org/03s3cgk74', 'fr', 1, 'https://ror.org/03s3cgk74 Laboratoire de Mesure du Carbone 14'),
(62465, 'https://ror.org/058h5ns38', 'fr', 1, 'https://ror.org/058h5ns38 CancƩropƓle Grand Sud-Ouest'),
(62466, 'https://ror.org/04rhf8d87', 'fr', 1, 'https://ror.org/04rhf8d87 CancƩropƓle Nord-Ouest'),
(62467, 'https://ror.org/013ctv878', 'fr', 1, 'https://ror.org/013ctv878 Centre d''Ʃtude des solidaritƩs sociales'),
(62468, 'https://ror.org/058snr381', 'fr', 1, 'https://ror.org/058snr381 Observatoire RƩgional de la SantƩ et du Social'),
(62469, 'https://ror.org/01q447526', 'fr', 1, 'https://ror.org/01q447526 Observatoire RĆ©gional de la SantĆ© d’Alsace'),
(62470, 'https://ror.org/01xw83c56', 'fr', 1, 'https://ror.org/01xw83c56 Registre gƩnƩral des cancers de Lille et de sa rƩgion'),
(62471, 'https://ror.org/051eb2f11', 'fr', 1, 'https://ror.org/051eb2f11 Centre Hospitalier de la DracƩnie'),
(62472, 'https://ror.org/02bn1dj67', 'fr', 1, 'https://ror.org/02bn1dj67 Centre d''ƉpidĆ©miologie sur les Causes MĆ©dicales de DĆ©cĆØs'),
(62473, 'https://ror.org/035qztk95', 'en', 1, 'https://ror.org/035qztk95 Riga Energy Agency Rīgas enerģētikas aģentūra'),
(62474, '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'),
(62475, 'https://ror.org/00m8yma53', 'en', 1, 'https://ror.org/00m8yma53 Architectural Design Agency ŠŃ€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-Дизайнерска ŠŠ³ŠµŠ½Ń†ŠøŃ ŠžŠžŠ”'),
(62476, 'https://ror.org/043xhrz72', 'en', 1, 'https://ror.org/043xhrz72 Badan Meteorologi, Klimatologi, dan Geofisika Meteorological, Climatological, And Geophysical Agency'),
(62477, 'https://ror.org/003rwad73', 'de', 1, 'https://ror.org/003rwad73 Bundesverband Herzkranke Kinder'),
(62478, 'https://ror.org/00z6nt756', 'en', 1, 'https://ror.org/00z6nt756 Aberdeen Harbour Board'),
(62479, 'https://ror.org/02fx3wf30', 'de', 1, 'https://ror.org/02fx3wf30 Bundesverband IT-Mittelstand'),
(62480, 'https://ror.org/038ravk06', 'en', 1, 'https://ror.org/038ravk06 Abraham Lincoln Bicentennial Foundation'),
(62481, 'https://ror.org/029v5kx43', 'en', 1, 'https://ror.org/029v5kx43 BahĆ”''Ć­ Agency for Social and Economic Development'),
(62482, 'https://ror.org/01n78v775', 'de', 1, 'https://ror.org/01n78v775 Bundesverband Kalksandsteinindustrie'),
(62483, 'https://ror.org/059q78r10', 'en', 1, 'https://ror.org/059q78r10 Ministry of Health'),
(62484, 'https://ror.org/055ehs005', 'no_lang_code', 1, 'https://ror.org/055ehs005 Bundesverbandes Keramische Industrie (Germany)'),
(62485, 'https://ror.org/02tn9qe75', 'en', 1, 'https://ror.org/02tn9qe75 Accreditation and Quality Assurance Commission لجنة الاعتماد ŁˆŲ¶Ł…Ų§Ł† Ų§Ł„Ų¬ŁˆŲÆŲ©'),
(62486, 'https://ror.org/002pjp005', 'en', 1, 'https://ror.org/002pjp005 Baltic Marine Environment Protection Commission'),
(62487, 'https://ror.org/02qp22n14', 'en', 1, 'https://ror.org/02qp22n14 Association for Supply Chain Management, Procurement and Logistics Bundesverband Materialwirtschaft, Einkauf und Logistik'),
(62488, 'https://ror.org/0211fbv71', 'en', 1, 'https://ror.org/0211fbv71 Academy of Engineering Sciences Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ł‡Ł†ŲÆŲ³ŁŠŲ©'),
(62489, 'https://ror.org/029bt1211', 'en', 1, 'https://ror.org/029bt1211 Sudan Academy for Banking and Financial Sciences Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ł…ŲµŲ±ŁŁŠŲ© ŁˆŲ§Ł„Ł…Ų§Ł„ŁŠŲ©'),
(62490, 'https://ror.org/04hwz0a59', 'de', 1, 'https://ror.org/04hwz0a59 Bundesverband mittelstƤndische Wirtschaft'),
(62491, 'https://ror.org/00pw5mk76', 'de', 1, 'https://ror.org/00pw5mk76 Bundesverband Naturkost Naturwaren'),
(62492, 'https://ror.org/00vcfn567', 'en', 1, 'https://ror.org/00vcfn567 Association of German Public Banks Bundesverband Ɩffentlicher Banken Deutschlands'),
(62493, 'https://ror.org/04mrvfq25', 'fr', 1, 'https://ror.org/04mrvfq25 Agence pour l’Entreprise & l’Innovation'),
(62494, 'https://ror.org/013bx1v37', 'no_lang_code', 1, 'https://ror.org/013bx1v37 Banedanmark (Denmark)'),
(62495, 'https://ror.org/03v2qmr34', 'fr', 1, 'https://ror.org/03v2qmr34 Agence pour le dƩveloppement de l''emploi'),
(62496, 'https://ror.org/004zxvq64', 'en', 1, 'https://ror.org/004zxvq64 Bundesministerium der Finanzen Federal Ministry of Finance'),
(62497, 'https://ror.org/03428zt70', 'en', 1, 'https://ror.org/03428zt70 Bangladesh Medical Research Council'),
(62498, 'https://ror.org/02s2m5c86', 'de', 1, 'https://ror.org/02s2m5c86 Bundesverband Reifenhandel und Vulkaniseur-Handwerk'),
(62499, 'https://ror.org/01ve3tk51', 'en', 1, 'https://ror.org/01ve3tk51 Administrative Conference of the United States'),
(62500, 'https://ror.org/05d0pa414', 'en', 1, 'https://ror.org/05d0pa414 Bundesverband Solarwirtschaft German Solar Association'),
(62501, 'https://ror.org/01w3c2c15', 'fr', 1, 'https://ror.org/01w3c2c15 Belga'),
(62502, 'https://ror.org/04pdkbc41', 'de', 1, 'https://ror.org/04pdkbc41 VAF Bundesverband Telekommunikation'),
(62503, 'https://ror.org/026p9k915', 'pl', 1, 'https://ror.org/026p9k915 Agencja Rozwoju Miasta'),
(62504, 'https://ror.org/00nypd214', 'en', 1, 'https://ror.org/00nypd214 Bundesverband WindEnergie German Wind Energy Association'),
(62505, 'https://ror.org/03gaznv39', 'en', 1, 'https://ror.org/03gaznv39 Bundesministerium für Justiz Federal Ministry of Justice'),
(62506, 'https://ror.org/024cyxm63', 'fr', 1, 'https://ror.org/024cyxm63 Bruxelles-PropretƩ'),
(62507, 'https://ror.org/01tevac66', 'no_lang_code', 1, 'https://ror.org/01tevac66 Agencja Rozwoju Przemysłu SA Industrial Development Agency JSC (Poland)'),
(62508, 'https://ror.org/00ch65t46', 'en', 1, 'https://ror.org/00ch65t46 Auvergne-Rhone-Alpes Entreprises'),
(62509, 'https://ror.org/04nfvqg35', 'es', 1, 'https://ror.org/04nfvqg35 Barcelona Energia'),
(62510, 'https://ror.org/04pxj3v44', 'en', 1, 'https://ror.org/04pxj3v44 Agency for Innovation and Technology Transfer Agenția pentru Inovare și Transfer Tehnologic Агентство по Š˜Š½Š¾Š²Š°Ń†ŠøŠø Šø Š¢ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¼Ńƒ'),
(62511, 'https://ror.org/03f53yd09', 'fr', 1, 'https://ror.org/03f53yd09 Certifer'),
(62512, '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'),
(62513, 'https://ror.org/01tp7ze67', 'fr', 1, 'https://ror.org/01tp7ze67 Energieagence'),
(62514, '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)'),
(62515, 'https://ror.org/00d2xk240', 'de', 1, 'https://ror.org/00d2xk240 Bayerisches Staatsministerium der Finanzen, für Landesentwicklung und Heimat'),
(62516, 'https://ror.org/01h1t5f62', 'en', 1, 'https://ror.org/01h1t5f62 Bulgarian Small and Medium Enterprises Promotion Agency'),
(62517, 'https://ror.org/03taw0g66', 'en', 1, 'https://ror.org/03taw0g66 Agency for Social Analyses ŠŠ³ŠµŠ½Ń†ŠøŃŃ‚Š° за социални анализи');
INSERT INTO `rors` VALUES
(62518, 'https://ror.org/015gyv119', 'no_lang_code', 1, 'https://ror.org/015gyv119 Austrian Federal Computing Centre Bundesrechenzentrum (Austria)'),
(62519, 'https://ror.org/00169v428', 'en', 1, 'https://ror.org/00169v428 The Sitia Development Organisation Ο ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ Ανάπτυξης Σητείας'),
(62520, 'https://ror.org/03p7qab35', 'en', 1, 'https://ror.org/03p7qab35 Atlantic Arc Commission'),
(62521, 'https://ror.org/01yx4gk53', 'en', 1, 'https://ror.org/01yx4gk53 Office of the Secretary of Natural Resources'),
(62522, 'https://ror.org/046ec1h37', 'de', 1, 'https://ror.org/046ec1h37 Bundesverband Baustoffe - Steine und Erden German Building Materials Association'),
(62523, 'https://ror.org/007dnkv23', 'en', 1, 'https://ror.org/007dnkv23 Presidential Executive Office ŠŠ“Š¼ŠøŠ½ŠøŃŃ‚Ń€Š°Ń†ŠøŃ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Š°'),
(62524, 'https://ror.org/05rr45446', 'de', 1, 'https://ror.org/05rr45446 Bundesverband CarSharing'),
(62525, 'https://ror.org/010m1c258', 'fr', 1, 'https://ror.org/010m1c258 Agence eSantƩ'),
(62526, 'https://ror.org/02m0d9n15', 'de', 1, 'https://ror.org/02m0d9n15 Bundesverband der Deutschen Binnenschiffahrt'),
(62527, 'https://ror.org/01y335991', 'en', 1, 'https://ror.org/01y335991 Institute of Transport Engineering Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ транспортного Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(62528, 'https://ror.org/011k1kc60', 'en', 1, 'https://ror.org/011k1kc60 Bundesverband der Deutschen Luft- und Raumfahrtindustrie German Aerospace Industries Association'),
(62529, 'https://ror.org/04gdd6b52', 'en', 1, 'https://ror.org/04gdd6b52 European Youth Information and Counselling Agency EuropƤesch Jugendinformatioun an Berodungsassistent'),
(62530, 'https://ror.org/03zqt7766', 'de', 1, 'https://ror.org/03zqt7766 Bundesverband der Deutschen Tourismuswirtschaft Federal Association of the German Tourism Industry'),
(62531, 'https://ror.org/04fjx8e69', 'en', 1, 'https://ror.org/04fjx8e69 The Deputy Prime Minister''s Office'),
(62532, 'https://ror.org/04340b392', 'no_lang_code', 1, 'https://ror.org/04340b392 Agency9 (Sweden)'),
(62533, 'https://ror.org/03eszxk44', 'en', 1, 'https://ror.org/03eszxk44 Berkeley-Charleston-Dorchester Council of Governments'),
(62534, 'https://ror.org/00aakw318', 'en', 1, 'https://ror.org/00aakw318 Ministry of Foreign Affairs ę–°åŠ å”å¤–äŗ¤éƒØ'),
(62535, 'https://ror.org/05hrscm27', 'fr', 1, 'https://ror.org/05hrscm27 CRIIRAD Commission de Recherche et d’Information IndĆ©pendantes sur la RadioactivitĆ©'),
(62536, 'https://ror.org/03dnebc81', 'en', 1, 'https://ror.org/03dnebc81 Bundesverband der Deutschen Volksbanken und Raiffeisenbanken National Association of German Cooperative Bank'),
(62537, 'https://ror.org/02k9k1t09', 'pt', 1, 'https://ror.org/02k9k1t09 Administração e Gestão de Sistemas de Salubridade'),
(62538, 'https://ror.org/05dzk5241', 'en', 1, 'https://ror.org/05dzk5241 Bern Economic Development Agency Standortfƶrderung Kanton Bern'),
(62539, 'https://ror.org/02738s524', 'de', 1, 'https://ror.org/02738s524 Bundesverband der Deutschen Ziegelindustrie'),
(62540, 'https://ror.org/00a7jw027', 'fr', 1, 'https://ror.org/00a7jw027 Agence FranƧaise pour le DĆ©veloppement et la Promotion de l’Agriculture Biologique'),
(62541, 'https://ror.org/01cdkgk90', 'en', 1, 'https://ror.org/01cdkgk90 Churches’ Commission for Migrants in Europe'),
(62542, 'https://ror.org/015jj1011', 'fr', 1, 'https://ror.org/015jj1011 Minister of the Interior Ministère de l''Intérieur'),
(62543, 'https://ror.org/01w34q495', 'de', 1, 'https://ror.org/01w34q495 Bundesvereinigung der Deutschen ErnƤhrungsindustrie Federation of German Food and Drink Industries'),
(62544, 'https://ror.org/03x58gj82', 'en', 1, 'https://ror.org/03x58gj82 Alabama Bicentennial Commission'),
(62545, 'https://ror.org/03r7ya547', 'de', 1, 'https://ror.org/03r7ya547 Der Ɩsterreichische Weinbauverband'),
(62546, 'https://ror.org/03hfst573', 'en', 1, 'https://ror.org/03hfst573 Arizona Secretary of State''s Office'),
(62547, 'https://ror.org/04ckzvj54', 'en', 1, 'https://ror.org/04ckzvj54 Consumer Protection Commission ŠšŠ¾Š¼ŠøŃŠøŃ за защита на потребителите'),
(62548, 'https://ror.org/00h05fc28', 'en', 1, 'https://ror.org/00h05fc28 Alabama Department of Economic and Community Affairs'),
(62549, 'https://ror.org/03knart10', 'fr', 1, 'https://ror.org/03knart10 Agence France-Presse'),
(62550, 'https://ror.org/03e3mtv29', 'en', 1, 'https://ror.org/03e3mtv29 Frank and Rosemary Iovieno Caring for Children Foundation'),
(62551, 'https://ror.org/001amex23', 'en', 1, 'https://ror.org/001amex23 Missouri Secretary of State''s Office'),
(62552, 'https://ror.org/04951gp18', 'en', 1, 'https://ror.org/04951gp18 Alabama Historical Commission'),
(62553, 'https://ror.org/01dznag44', 'en', 1, 'https://ror.org/01dznag44 Office of Washington Secretary of State'),
(62554, 'https://ror.org/0580q1236', 'en', 1, 'https://ror.org/0580q1236 Alaska Department of Commerce, Community and Economic Development'),
(62555, 'https://ror.org/001hybk69', 'en', 1, 'https://ror.org/001hybk69 Association of German Banks Bundesverband deutscher Banken'),
(62556, 'https://ror.org/00vdwtt91', 'en', 1, 'https://ror.org/00vdwtt91 National Black Leadership Commission on AIDS'),
(62557, 'https://ror.org/056kqr545', 'fr', 1, 'https://ror.org/056kqr545 Agence Locale de l''Energie et du Climat de la MƩtropole de Lyon'),
(62558, 'https://ror.org/03751qd82', 'en', 1, 'https://ror.org/03751qd82 The Alaska Sea Otter and Steller Sea Lion Commission'),
(62559, 'https://ror.org/04ynzkj24', 'no_lang_code', 1, 'https://ror.org/04ynzkj24 Blackboard (United States)'),
(62560, 'https://ror.org/05m9b8032', 'fr', 1, 'https://ror.org/05m9b8032 Agence Luxembourgeoise d''Action Culturelle'),
(62561, 'https://ror.org/05jzn3892', 'de', 1, 'https://ror.org/05jzn3892 Bundesverband Flachglas Federal Flat Glass Association'),
(62562, 'https://ror.org/05aw74s61', 'en', 1, 'https://ror.org/05aw74s61 Commission Internationale des Examens de Conduite Automobile The International Commission for Driver Testing'),
(62563, 'https://ror.org/049x6dn19', 'en', 1, 'https://ror.org/049x6dn19 Irish Blood Transfusion Service SeirbhĆ­s FuilaistriĆŗchĆ”in na hƉireann'),
(62564, 'https://ror.org/03rf8vd59', 'de', 1, 'https://ror.org/03rf8vd59 Bundesverband Freier Radios'),
(62565, 'https://ror.org/010sks923', 'en', 1, 'https://ror.org/010sks923 The Mediterranean Science Commission'),
(62566, 'https://ror.org/00khsrq71', 'de', 1, 'https://ror.org/00khsrq71 Bundesverband Garten- Landschafts- und Sportplatzbau'),
(62567, 'https://ror.org/04txdsx22', 'de', 1, 'https://ror.org/04txdsx22 Allgemeiner Deutscher Fahrrad-Club'),
(62568, 'https://ror.org/01q4pmw61', 'de', 1, 'https://ror.org/01q4pmw61 Bundesverband Glaukom-Selbsthilfe'),
(62569, 'https://ror.org/01syk7628', 'fr', 1, 'https://ror.org/01syk7628 Agence Nationale de Protection de l''Environnement'),
(62570, 'https://ror.org/01cv6t012', 'no_lang_code', 1, 'https://ror.org/01cv6t012 Board of Innovation (Belgium)'),
(62571, 'https://ror.org/05wwp6197', 'de', 1, 'https://ror.org/05wwp6197 Bundeswehrzentralkrankenhaus Koblenz'),
(62572, 'https://ror.org/00dfw9p58', 'fr', 1, 'https://ror.org/00dfw9p58 SantƩ Publique France'),
(62573, 'https://ror.org/035t6ww14', 'en', 1, 'https://ror.org/035t6ww14 National Museum of Ireland'),
(62574, 'https://ror.org/02kp07769', 'en', 1, 'https://ror.org/02kp07769 American Conference of Governmental Industrial Hygienists'),
(62575, 'https://ror.org/041wbs441', 'it', 1, 'https://ror.org/041wbs441 Commissione Nazionale per le SocietĆ  e la Borsa'),
(62576, 'https://ror.org/03r7nme33', 'de', 1, 'https://ror.org/03r7nme33 Bundesverband SekundƤrrohstoffe und Entsorgung'),
(62577, 'https://ror.org/050m8a892', 'en', 1, 'https://ror.org/050m8a892 Commodity Futures Trading Commission'),
(62578, 'https://ror.org/01cad8852', 'ga', 1, 'https://ror.org/01cad8852 FƔilte Ireland'),
(62579, 'https://ror.org/01scdmg11', 'fr', 1, 'https://ror.org/01scdmg11 Agence des SystĆØmes d’information PartagĆ©s de SantĆ©'),
(62580, 'https://ror.org/006424y87', 'en', 1, 'https://ror.org/006424y87 Office of the Attorney General'),
(62581, 'https://ror.org/03dp0nd82', 'en', 1, 'https://ror.org/03dp0nd82 British Board of AgrƩment'),
(62582, 'https://ror.org/04vbsjz82', 'en', 1, 'https://ror.org/04vbsjz82 Danish Ministry of Children and Education Undervisningsministeriet'),
(62583, 'https://ror.org/02tf3z094', 'en', 1, 'https://ror.org/02tf3z094 British Board of Film Classification'),
(62584, 'https://ror.org/02pn32n10', 'en', 1, 'https://ror.org/02pn32n10 British High Commission Singapore'),
(62585, 'https://ror.org/025ypjv50', 'en', 1, 'https://ror.org/025ypjv50 Community Water and Sanitation Agency'),
(62586, 'https://ror.org/03aqz1r62', 'en', 1, 'https://ror.org/03aqz1r62 British High Commission Nairobi'),
(62587, 'https://ror.org/01nm2rj64', 'fr', 1, 'https://ror.org/01nm2rj64 Agence pour la CoopƩration Scientifique Afrique Luxembourg'),
(62588, 'https://ror.org/04stwsr82', 'fr', 1, 'https://ror.org/04stwsr82 Agence pour la Promotion de la CrƩation Industrielle'),
(62589, 'https://ror.org/01s1egc39', 'no_lang_code', 1, 'https://ror.org/01s1egc39 Dashboard (United Kingdom)'),
(62590, 'https://ror.org/05hn8j260', 'no_lang_code', 1, 'https://ror.org/05hn8j260 Administrația Porturilor Maritime Constantza Port (Romania)'),
(62591, 'https://ror.org/03ddkyw71', 'en', 1, 'https://ror.org/03ddkyw71 Bulgarian Food Safety Agency Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° ŠŠ³ŠµŠ½Ń†ŠøŃ по Безопасност на Єраните'),
(62592, 'https://ror.org/00jztws02', 'en', 1, 'https://ror.org/00jztws02 Defence Equipment and Support'),
(62593, 'https://ror.org/02t4g5c48', 'en', 1, 'https://ror.org/02t4g5c48 Arab Civil Aviation Commission Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų·ŁŠŲ±Ų§Ł† Ų§Ł„Ł…ŲÆŁ†ŁŠ'),
(62594, 'https://ror.org/021m1ad11', 'de', 1, 'https://ror.org/021m1ad11 AWO Bundesverband Arbeiterwohlfahrt Bundesverband'),
(62595, 'https://ror.org/053amty26', 'en', 1, 'https://ror.org/053amty26 Delaware Heritage Commission'),
(62596, 'https://ror.org/03rd9h303', 'en', 1, 'https://ror.org/03rd9h303 Delaware River Basin Commission'),
(62597, 'https://ror.org/03d4vn886', 'it', 1, 'https://ror.org/03d4vn886 Consorzio Mipa'),
(62598, 'https://ror.org/032a11168', 'de', 1, 'https://ror.org/032a11168 Arbeitsgemeinschaft Mauerziegel'),
(62599, 'https://ror.org/029kkqw66', 'en', 1, 'https://ror.org/029kkqw66 Democratic Commission for Human Development'),
(62600, 'https://ror.org/05wdqnb80', 'en', 1, 'https://ror.org/05wdqnb80 Construction Industry Training Board'),
(62601, 'https://ror.org/008923h68', 'en', 1, 'https://ror.org/008923h68 Archives State Agency Š”ŃŠŃ€Š¶Š°Š²Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ "Архиви"'),
(62602, 'https://ror.org/01y6s8j60', 'en', 1, 'https://ror.org/01y6s8j60 Cyprus Post Kıbrıs Posta Ofisi'),
(62603, 'https://ror.org/045kyae46', 'en', 1, 'https://ror.org/045kyae46 Ministry of Agriculture and Fisheries'),
(62604, 'https://ror.org/03w4n2z21', 'de', 1, 'https://ror.org/03w4n2z21 Bundesamt für Weinbau'),
(62605, 'https://ror.org/02gg0at36', 'en', 1, 'https://ror.org/02gg0at36 Council of European Aerospace Societies'),
(62606, 'https://ror.org/021pght82', 'en', 1, 'https://ror.org/021pght82 An Roinn Caiteachais Phoiblí agus Athchóirithe Department of Public Expenditure and Reform'),
(62607, 'https://ror.org/02xh5g973', 'en', 1, 'https://ror.org/02xh5g973 Ministry of Healthcare Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ€Õ”Õ¶Ö€Õ”ÕŗÕ„ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ Õ”Õ¼ÕøÕ²Õ»Õ”ÕŗÕ”Õ°ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ¶Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(62608, 'https://ror.org/056te6132', 'en', 1, 'https://ror.org/056te6132 Ceemet'),
(62609, 'https://ror.org/02f8fjx04', 'en', 1, 'https://ror.org/02f8fjx04 Ashtabula County Mental Health & Recovery Services Board'),
(62610, 'https://ror.org/00j1gmf24', 'en', 1, 'https://ror.org/00j1gmf24 The Department of Arkansas Heritage'),
(62611, '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'),
(62612, 'https://ror.org/00rdva175', 'en', 1, 'https://ror.org/00rdva175 Bundesagentur für Arbeit Federal Employment Agency'),
(62613, 'https://ror.org/04gjwsq09', 'en', 1, 'https://ror.org/04gjwsq09 European Association for Local Democracy'),
(62614, 'https://ror.org/05hamn538', 'en', 1, 'https://ror.org/05hamn538 Bundesanstalt für Agrarwirtschaft Federal Institute of Agricultural Economics'),
(62615, 'https://ror.org/04xxknx59', 'en', 1, 'https://ror.org/04xxknx59 Council on Health Research for Development'),
(62616, 'https://ror.org/046hgyp50', 'en', 1, 'https://ror.org/046hgyp50 Cowlitz-Wahkiakum Council of Governments'),
(62617, 'https://ror.org/002z7gg85', 'en', 1, 'https://ror.org/002z7gg85 Department of the Taoiseach Roinn an Taoisigh'),
(62618, 'https://ror.org/04k9aq609', 'en', 1, 'https://ror.org/04k9aq609 ECDL Foundation'),
(62619, 'https://ror.org/02jnvb825', 'en', 1, 'https://ror.org/02jnvb825 Department of Cultural Heritage Kultūros paveldo departamentas'),
(62620, 'https://ror.org/042tbn311', 'en', 1, 'https://ror.org/042tbn311 Department of Defence'),
(62621, 'https://ror.org/05b0gd358', 'en', 1, 'https://ror.org/05b0gd358 Detroit Rescue Mission Ministries'),
(62622, 'https://ror.org/0546h2150', 'en', 1, 'https://ror.org/0546h2150 Department of Disaster Prevention and Mitigation ąøąø£ąø”ąø›ą¹‰ąø­ąø‡ąøąø±ąø™ą¹ąø„ąø°ąøšąø£ąø£ą¹€ąø—ąø²ąøŖąø²ąø˜ąø²ąø£ąø“ąø ąø±ąø¢'),
(62623, 'https://ror.org/03r8s5d09', 'en', 1, 'https://ror.org/03r8s5d09 Coimisean nan Croitearan Crofting Commission'),
(62624, 'https://ror.org/02d0ewh10', 'en', 1, 'https://ror.org/02d0ewh10 Florida Department of Economic Opportunity'),
(62625, 'https://ror.org/003jehd84', 'en', 1, 'https://ror.org/003jehd84 Cromarty Firth Fishery Board'),
(62626, 'https://ror.org/00d01mn47', 'de', 1, 'https://ror.org/00d01mn47 ECOVIN Bundesverband Ɩkologischer Weinbau'),
(62627, 'https://ror.org/013gmhc80', 'en', 1, 'https://ror.org/013gmhc80 Development Agency for Amvrakikos Ī‘Ī½Ī±Ļ€Ļ„Ļ…Ī¾Ī¹Ī±ĪŗĻŒĻ‚ ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ Ī‘Ī¼Ī²ĻĪ±ĪŗĪ¹ĪŗĪæĻ'),
(62628, 'https://ror.org/032331w61', 'en', 1, 'https://ror.org/032331w61 Development Agency of Karditsa'),
(62629, 'https://ror.org/00n0egr15', 'en', 1, 'https://ror.org/00n0egr15 Development Agency of Serbia Развојна Š°Š³ŠµŠ½Ń†ŠøŃ˜Š° Š”Ń€Š±ŠøŃ˜Šµ'),
(62630, 'https://ror.org/04dt6nf05', 'en', 1, 'https://ror.org/04dt6nf05 European Plasticisers'),
(62631, 'https://ror.org/04zyrd219', 'cs', 1, 'https://ror.org/04zyrd219 Agentura pro podporu podnikƔnƭ a investic CzechInvest'),
(62632, 'https://ror.org/03q2s0610', 'no_lang_code', 1, 'https://ror.org/03q2s0610 Edgewater Federal Solutions (United States)'),
(62633, 'https://ror.org/03h6a8753', 'en', 1, 'https://ror.org/03h6a8753 Education and Early Childhood Development'),
(62634, 'https://ror.org/027shs254', 'en', 1, 'https://ror.org/027shs254 Development Agency of Thessaloniki Αναπτυξιακή ĪĪæĪ¼ĪæĻ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚ Ī‘.Ī•'),
(62635, 'https://ror.org/03acn2870', 'en', 1, 'https://ror.org/03acn2870 Executive Agency Electronic Communication Networks and Information Systems'),
(62636, 'https://ror.org/01p93xj71', 'en', 1, 'https://ror.org/01p93xj71 Danish Board of District Heating'),
(62637, 'https://ror.org/05b2ydd02', 'en', 1, 'https://ror.org/05b2ydd02 Executive Agency Maritime Administration Š˜Š·ŠæŃŠŠ»Š½ŠøŃ‚ŠµŠ»Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ "ŠœŠ¾Ń€ŃŠŗŠ° ŠŠ“Š¼ŠøŠ½ŠøŃŃ‚Ń€Š°Ń†ŠøŃ"'),
(62638, 'https://ror.org/00n92fc55', 'en', 1, 'https://ror.org/00n92fc55 Danish Business Authority'),
(62639, 'https://ror.org/0210g9419', 'no_lang_code', 1, 'https://ror.org/0210g9419 ƅre Skidfabrik (Sweden)'),
(62640, 'https://ror.org/0126xra53', 'en', 1, 'https://ror.org/0126xra53 Hellenic Agency for Local Development and Local Government Ελληνική Εταιρία Τοπικής Ανάπτυξης και Ī‘Ļ…Ļ„ĪæĪ“Ī¹ĪæĪÆĪŗĪ·ĻƒĪ·Ļ‚'),
(62641, 'https://ror.org/02vmmpc69', 'en', 1, 'https://ror.org/02vmmpc69 Fairfax-Falls Church Community Services Board'),
(62642, 'https://ror.org/00kzfz874', 'en', 1, 'https://ror.org/00kzfz874 Latvijas Republikas Ekonomikas ministrija Ministry of Economics'),
(62643, 'https://ror.org/04w5qyg24', 'en', 1, 'https://ror.org/04w5qyg24 Maryland Emergency Management Agency'),
(62644, 'https://ror.org/02w5vdf29', 'en', 1, 'https://ror.org/02w5vdf29 Caribbean Health Research Council'),
(62645, 'https://ror.org/055gtbq27', 'en', 1, 'https://ror.org/055gtbq27 Tennessee Emergency Management Agency'),
(62646, 'https://ror.org/05xyc2351', 'en', 1, 'https://ror.org/05xyc2351 All-Russian Scientific Research Institute of Freshwater Fisheries Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пресновоГного рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²a'),
(62647, 'https://ror.org/01vdscs87', 'en', 1, 'https://ror.org/01vdscs87 All-Russian Research Institute for Animal Health Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š·Š“Š¾Ń€Š¾Š²ŃŒŃ животных'),
(62648, 'https://ror.org/00ebq8d78', 'en', 1, 'https://ror.org/00ebq8d78 Catholic Agency for Overseas Development'),
(62649, 'https://ror.org/00jb49g69', 'en', 1, 'https://ror.org/00jb49g69 JSC Federal Center for Geoecological Systems'),
(62650, 'https://ror.org/0262wvq91', 'no_lang_code', 1, 'https://ror.org/0262wvq91 Celerity (United States)'),
(62651, 'https://ror.org/03pm9cy40', 'it', 1, 'https://ror.org/03pm9cy40 Agenzia Energetica Della Provincia Di Livorno'),
(62652, 'https://ror.org/05dbmr667', 'en', 1, 'https://ror.org/05dbmr667 Entidade de Serviços Partilhados da Administração Pública Government Shared Services Entity'),
(62653, 'https://ror.org/0410sm148', 'en', 1, 'https://ror.org/0410sm148 Federal Management Partners'),
(62654, 'https://ror.org/009tmjw71', 'en', 1, 'https://ror.org/009tmjw71 Environmental Centre for Administration and Technology VieŔoji įstaiga Aplinkosaugos valdymo ir technologijų'),
(62655, 'https://ror.org/04b855715', 'en', 1, 'https://ror.org/04b855715 Pakistan Environmental Protection Agency'),
(62656, 'https://ror.org/05rjfmp35', 'no_lang_code', 1, 'https://ror.org/05rjfmp35 Alexium (United States)'),
(62657, 'https://ror.org/02b5y2p11', 'en', 1, 'https://ror.org/02b5y2p11 Department of Fisheries and Marine Research Τμήματος Αλιείας και Ī˜Ī±Ī»Ī±ĻƒĻƒĪÆĻ‰Ī½ Ī•ĻĪµĻ…Ī½ĻŽĪ½'),
(62658, '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'),
(62659, 'https://ror.org/0003ang68', 'en', 1, 'https://ror.org/0003ang68 Federal Forestry Agency of Russia Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń Š»ŠµŃŠ½Š°Ń служба России'),
(62660, 'https://ror.org/03drbv102', 'pt', 1, 'https://ror.org/03drbv102 Escola de Negócios e Administração'),
(62661, 'https://ror.org/02hf3eh91', 'no_lang_code', 1, 'https://ror.org/02hf3eh91 Eska (Netherlands)'),
(62662, 'https://ror.org/00pqj0a35', 'en', 1, 'https://ror.org/00pqj0a35 An Roinn DlĆ­ agus Cirt Department of Justice'),
(62663, 'https://ror.org/04gwfmd61', 'en', 1, 'https://ror.org/04gwfmd61 Department of Livestock Development ąøąø£ąø”ąø›ąøØąøøąøŖąø±ąø•ąø§ą¹Œ'),
(62664, 'https://ror.org/04y9x6j75', 'en', 1, 'https://ror.org/04y9x6j75 All-Russian Research Geological Oil Institute Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефти'),
(62665, 'https://ror.org/04896fz93', 'fr', 1, 'https://ror.org/04896fz93 Commission Internationale pour la Protection des Alpes'),
(62666, 'https://ror.org/02f0tm013', 'id', 1, 'https://ror.org/02f0tm013 Direktorat Jenderal Peternakan dan Kesehatan Hewan'),
(62667, 'https://ror.org/05pwe3434', 'en', 1, 'https://ror.org/05pwe3434 The Federal Trust'),
(62668, 'https://ror.org/01scevc62', 'en', 1, 'https://ror.org/01scevc62 Directorate of Fisheries Fiskeridirektoratet'),
(62669, 'https://ror.org/00sxe1e69', 'en', 1, 'https://ror.org/00sxe1e69 Citizens Committee for Historic Preservation'),
(62670, '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'),
(62671, 'https://ror.org/01t85ct65', 'en', 1, 'https://ror.org/01t85ct65 European Association of Research Managers and Administrators'),
(62672, 'https://ror.org/018hb5750', 'en', 1, 'https://ror.org/018hb5750 European Aviation Safety Agency'),
(62673, 'https://ror.org/038ntq021', 'en', 1, 'https://ror.org/038ntq021 European Biodiesel Board'),
(62674, 'https://ror.org/039exhw19', 'no_lang_code', 1, 'https://ror.org/039exhw19 Federalimentare (Italy)'),
(62675, 'https://ror.org/04h6dc762', 'en', 1, 'https://ror.org/04h6dc762 State Board of Education'),
(62676, 'https://ror.org/02ng64w29', 'en', 1, 'https://ror.org/02ng64w29 Dobrich Local Agency for Energy Management Добрич ŠŠ³ŠµŠ½Ń†ŠøŃ за ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŠµ на ŠµŠ½ŠµŃ€Š³ŠøŃŃ‚а'),
(62677, 'https://ror.org/036qa5g72', 'en', 1, 'https://ror.org/036qa5g72 Coachella Valley Association of Governments'),
(62678, 'https://ror.org/02gww2486', 'bs', 1, 'https://ror.org/02gww2486 Federalni hidrometeoroloŔki zavod'),
(62679, 'https://ror.org/03n6ptv32', 'en', 1, 'https://ror.org/03n6ptv32 Coastal Watershed Council'),
(62680, 'https://ror.org/003vwv291', 'en', 1, 'https://ror.org/003vwv291 Asiantaeth Trwyddedu Gyrwyr a Cherbydau Driver and Vehicle Licensing Agency'),
(62681, 'https://ror.org/008s4ef43', 'en', 1, 'https://ror.org/008s4ef43 European Federation of Agencies and Regions for Energy and Environment'),
(62682, 'https://ror.org/01k814a06', 'en', 1, 'https://ror.org/01k814a06 Coconut Industry Board'),
(62683, 'https://ror.org/04xytpa07', 'en', 1, 'https://ror.org/04xytpa07 European Council for an Energy Efficient Economy'),
(62684, 'https://ror.org/01rc3sz57', 'en', 1, 'https://ror.org/01rc3sz57 European Shippers'' Council'),
(62685, 'https://ror.org/04c9j0t17', 'en', 1, 'https://ror.org/04c9j0t17 Collingswood Public Schools'),
(62686, 'https://ror.org/02fse8e52', 'en', 1, 'https://ror.org/02fse8e52 Federation of Sri Lankan Local Government Authorities'),
(62687, 'https://ror.org/04f41jv37', 'en', 1, 'https://ror.org/04f41jv37 Flanders Environment Agency Vlaamse Milieumaatschappij'),
(62688, 'https://ror.org/018y30a94', 'en', 1, 'https://ror.org/018y30a94 Dutch Fish Marketing Board Nederlands Visbureau'),
(62689, 'https://ror.org/01g3jyj45', 'no_lang_code', 1, 'https://ror.org/01g3jyj45 Fermion Government Services (United States)'),
(62690, 'https://ror.org/04qs09z04', 'en', 1, 'https://ror.org/04qs09z04 Florida Certification Board'),
(62691, 'https://ror.org/02wy0xt13', 'en', 1, 'https://ror.org/02wy0xt13 European Council on Refugees and Exiles'),
(62692, 'https://ror.org/026kkn784', 'en', 1, 'https://ror.org/026kkn784 Columbus Consolidated Government'),
(62693, 'https://ror.org/03njbda75', 'en', 1, 'https://ror.org/03njbda75 Danish Ministry of Finance Finansministeriet'),
(62694, 'https://ror.org/049sf4b15', 'de', 1, 'https://ror.org/049sf4b15 Finanzministerium des Landes Schleswig-Holstein'),
(62695, 'https://ror.org/05sj3q575', 'en', 1, 'https://ror.org/05sj3q575 European Union Agency for Law Enforcement Cooperation'),
(62696, 'https://ror.org/05cendc56', 'en', 1, 'https://ror.org/05cendc56 East Baton Rouge Parish School System'),
(62697, 'https://ror.org/05tnntp68', 'en', 1, 'https://ror.org/05tnntp68 Commission de Formation de l''Est Ontarien Eastern Ontario Training Board'),
(62698, 'https://ror.org/03b2mxf68', 'en', 1, 'https://ror.org/03b2mxf68 European Transport Safety Council'),
(62699, 'https://ror.org/01pdtb768', 'en', 1, 'https://ror.org/01pdtb768 Health Protection Agency'),
(62700, 'https://ror.org/050s4mf29', 'en', 1, 'https://ror.org/050s4mf29 Danish Nature Agency Naturstyrelsen'),
(62701, 'https://ror.org/04g526d38', 'en', 1, 'https://ror.org/04g526d38 European Utilities Telecom Council'),
(62702, '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'),
(62703, 'https://ror.org/0498wda10', 'en', 1, 'https://ror.org/0498wda10 European Writers'' Council'),
(62704, 'https://ror.org/0445snd35', 'en', 1, 'https://ror.org/0445snd35 Federal Motor Transport Authority Kraftfahrt-Bundesamt'),
(62705, 'https://ror.org/05w2j5k62', 'en', 1, 'https://ror.org/05w2j5k62 International Commission on Illumination Internationale Beleuchtungskommission'),
(62706, 'https://ror.org/00xe3w941', 'en', 1, 'https://ror.org/00xe3w941 Applied Energy Lab Ī•ĻĪ³Ī±ĻƒĻ„Ī®ĻĪ¹Īæ Ī•Ļ†Ī±ĻĪ¼ĪæĪ³ĻŽĪ½ Ενέργειας'),
(62707, 'https://ror.org/02gefwx29', 'en', 1, 'https://ror.org/02gefwx29 Department of Metropolitan Development'),
(62708, 'https://ror.org/00q3w5456', 'en', 1, 'https://ror.org/00q3w5456 Hellenic Civil Aviation Authority Ī„Ļ€Ī·ĻĪµĻƒĪÆĪ± Πολιτικής Αεροπορίας'),
(62709, 'https://ror.org/04yvash73', 'en', 1, 'https://ror.org/04yvash73 International Commission on Non-Ionizing Radiation Protection'),
(62710, 'https://ror.org/05shez493', 'en', 1, 'https://ror.org/05shez493 Employment and Economic Development Office Tyƶ- ja elinkeinotoimisto'),
(62711, 'https://ror.org/02xgad785', 'en', 1, 'https://ror.org/02xgad785 Maryland Commission on African American History and Culture'),
(62712, 'https://ror.org/03qjg1411', 'en', 1, 'https://ror.org/03qjg1411 Maryland-National Capital Park and Planning Commission'),
(62713, 'https://ror.org/01h8pyj37', 'en', 1, 'https://ror.org/01h8pyj37 International Commission on Radiological Protection'),
(62714, 'https://ror.org/013kktc25', 'en', 1, 'https://ror.org/013kktc25 Tsehootsooi Medical Center'),
(62715, 'https://ror.org/017sz1f45', 'en', 1, 'https://ror.org/017sz1f45 ICLEI - Local Governments for Sustainability Canada'),
(62716, 'https://ror.org/02cme9q04', 'en', 1, 'https://ror.org/02cme9q04 NHS Forth Valley'),
(62717, 'https://ror.org/059rsrh95', 'en', 1, 'https://ror.org/059rsrh95 FORZA, Agency For Sustainable Development of The Carpathian Region Агентство ŃŠæŃ€ŠøŃŠ½Š½Ń ŃŃ‚Š°Š»Š¾Š¼Ńƒ Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ Ń€ŠµŠ³Ń–Š¾Š½Ńƒ Š¤ŠžŠ Š—Š'),
(62718, 'https://ror.org/00bbwmf07', 'en', 1, 'https://ror.org/00bbwmf07 International Council of Associations for Science Education'),
(62719, 'https://ror.org/00hbkpf98', 'en', 1, 'https://ror.org/00hbkpf98 Commission de la Sante Mentale du Canada Mental Health Commission of Canada'),
(62720, 'https://ror.org/04c3g7r30', 'en', 1, 'https://ror.org/04c3g7r30 ICLEI - Local Governments for Sustainability'),
(62721, 'https://ror.org/01y434d35', 'en', 1, 'https://ror.org/01y434d35 International Council of Marine Industry Associations'),
(62722, 'https://ror.org/03k3ymr68', 'en', 1, 'https://ror.org/03k3ymr68 Mental Health and Recovery Services Board of Seneca, Sandusky and Wyandot Counties'),
(62723, 'https://ror.org/05eg09m10', 'en', 1, 'https://ror.org/05eg09m10 Fujian Province Science and Technology Association ē¦å»ŗēœē§‘å­¦ęŠ€ęœÆåä¼š'),
(62724, 'https://ror.org/02px07p57', 'no_lang_code', 1, 'https://ror.org/02px07p57 Siniat (United Kingdom)'),
(62725, 'https://ror.org/037qvtm25', 'de', 1, 'https://ror.org/037qvtm25 Hessisches Kultusministerium'),
(62726, 'https://ror.org/00nv19w68', 'en', 1, 'https://ror.org/00nv19w68 International Council of Museums'),
(62727, 'https://ror.org/03f5qdn26', 'pt', 1, 'https://ror.org/03f5qdn26 Fundace Fundação para Pesquisa e Desenvolvimento da Administração, Contabilidade e Economia'),
(62728, 'https://ror.org/01rjhdz41', 'de', 1, 'https://ror.org/01rjhdz41 Hessisches Ministerium für Umwelt, Klimaschutz, Landwirtschaft und Verbraucherschutz'),
(62729, 'https://ror.org/029rs5v28', 'en', 1, 'https://ror.org/029rs5v28 Mental Health, Drug & Alcohol Services Board of Logan and Champaign'),
(62730, 'https://ror.org/020h7tk57', 'en', 1, 'https://ror.org/020h7tk57 Lafourche Parish School District'),
(62731, 'https://ror.org/00e8eg742', 'no_lang_code', 1, 'https://ror.org/00e8eg742 LAMA (Italy)'),
(62732, 'https://ror.org/05bfjdn05', 'en', 1, 'https://ror.org/05bfjdn05 Learning and Skills Development Agency'),
(62733, 'https://ror.org/03r97zp68', 'pt', 1, 'https://ror.org/03r97zp68 Direcção dos Serviços da Reforma Jurídica e do Direito Internacional'),
(62734, 'https://ror.org/03r9dgm57', 'en', 1, 'https://ror.org/03r9dgm57 Alaska Native Health Board'),
(62735, 'https://ror.org/05v791212', 'en', 1, 'https://ror.org/05v791212 International Food & Agricultural Trade Policy Council'),
(62736, 'https://ror.org/04dr8r009', 'no_lang_code', 1, 'https://ror.org/04dr8r009 Technologisches Gewerbemuseum Tgm'),
(62737, 'https://ror.org/04pqc7b65', 'en', 1, 'https://ror.org/04pqc7b65 Granite Falls Family Medical Care Center'),
(62738, 'https://ror.org/044b5hs67', 'en', 1, 'https://ror.org/044b5hs67 Greater Lafourche Port Commission'),
(62739, 'https://ror.org/017cark40', 'en', 1, 'https://ror.org/017cark40 Hopi Cultural Center'),
(62740, 'https://ror.org/03mdx1k69', 'en', 1, 'https://ror.org/03mdx1k69 Greater Portland Council of Governments'),
(62741, 'https://ror.org/000z10w71', 'en', 1, 'https://ror.org/000z10w71 Boston Landmarks Commission'),
(62742, 'https://ror.org/05763y646', 'en', 1, 'https://ror.org/05763y646 General Directorate for National Roads and Motorways Generalna Dyrekcja Dróg Krajowych i Autostrad'),
(62743, 'https://ror.org/05b2nvq86', 'no_lang_code', 1, 'https://ror.org/05b2nvq86 Hotblock Onboard (France)'),
(62744, 'https://ror.org/00sg44t81', 'no_lang_code', 1, 'https://ror.org/00sg44t81 Houot Agencement (France)'),
(62745, 'https://ror.org/02xzsz056', 'no_lang_code', 1, 'https://ror.org/02xzsz056 Masquelier’s (Netherlands)'),
(62746, 'https://ror.org/04s4yxp35', 'es', 1, 'https://ror.org/04s4yxp35 Asociación de InformÔticos del Uruguay'),
(62747, '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'),
(62748, 'https://ror.org/04ahnh094', 'no_lang_code', 1, 'https://ror.org/04ahnh094 Lattice Government Services (United States)'),
(62749, 'https://ror.org/00ynr1103', 'en', 1, 'https://ror.org/00ynr1103 Houston Parks Board'),
(62750, 'https://ror.org/04dvm6828', 'en', 1, 'https://ror.org/04dvm6828 Human Service Agency'),
(62751, 'https://ror.org/0006wrh30', 'en', 1, 'https://ror.org/0006wrh30 Consejo OleĆ­cola Internacional International Olive Council'),
(62752, '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'),
(62753, 'https://ror.org/00929bm89', 'en', 1, 'https://ror.org/00929bm89 Iberia Parish Government'),
(62754, 'https://ror.org/01fgay757', 'en', 1, 'https://ror.org/01fgay757 Guyana Forestry Commission'),
(62755, 'https://ror.org/05tj70371', 'en', 1, 'https://ror.org/05tj70371 International Council on Clean Transportation Internationaler Rat für sauberen Verkehr'),
(62756, 'https://ror.org/0057p6x39', 'en', 1, 'https://ror.org/0057p6x39 International Risk Governance Council'),
(62757, 'https://ror.org/04qkwfk36', 'en', 1, 'https://ror.org/04qkwfk36 Icelandic Transport Authority SamgƶngurƔưuneytiư'),
(62758, 'https://ror.org/01rakqm07', 'en', 1, 'https://ror.org/01rakqm07 General Directorate of Highways Türkiye Cumhuriyeti Karayolları Genel Müdürlüğü'),
(62759, 'https://ror.org/013pbgw67', 'fr', 1, 'https://ror.org/013pbgw67 ID Champagne-Ardenne'),
(62760, 'https://ror.org/03t6zfb73', 'en', 1, 'https://ror.org/03t6zfb73 Idaho State Department of Agriculture'),
(62761, 'https://ror.org/03sh73423', 'en', 1, 'https://ror.org/03sh73423 State Environmental Service Valsts vides dienests'),
(62762, 'https://ror.org/00wq2sy59', 'no_lang_code', 1, 'https://ror.org/00wq2sy59 Iggesund Paperboard (Sweden)'),
(62763, 'https://ror.org/00avkj256', 'en', 1, 'https://ror.org/00avkj256 Interstate Commission for Water Coordination of Central Asia ŠœŠµŠ¶Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š¾Ń€Š“ŠøŠ½Š°Ń†ŠøŠ¾Š½Š½Š°Ń Š²Š¾Š“Š¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š¼ŠøŃŃŠøŃ'),
(62764, 'https://ror.org/05ad53425', 'en', 1, 'https://ror.org/05ad53425 Maryland Department of General Services'),
(62765, 'https://ror.org/032ab1973', 'en', 1, 'https://ror.org/032ab1973 Geological Survey Department'),
(62766, 'https://ror.org/00yy4hw75', 'de', 1, 'https://ror.org/00yy4hw75 Industrievereinigung Kunststoffverpackungen'),
(62767, 'https://ror.org/04q4xms21', 'en', 1, 'https://ror.org/04q4xms21 Independent Expert Consulting Board to Promote Scientific Research Activity in Kazakhstan ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½Š“Š°Ņ“Ń‹ ғылыми-Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ қызметін Š“Š°Š¼Ń‹Ń‚ŃƒŅ“Š° арналған Ń‚Ó™ŃƒŠµŠ»ŃŃ–Š· сараптамалық кеңес Š±ŠµŃ€Ńƒ кеңесі'),
(62768, 'https://ror.org/03kjbs929', 'en', 1, 'https://ror.org/03kjbs929 Rural Payments Agency'),
(62769, 'https://ror.org/04qbxvw09', 'no_lang_code', 1, 'https://ror.org/04qbxvw09 MAMA-86'),
(62770, 'https://ror.org/04zk0zd97', 'en', 1, 'https://ror.org/04zk0zd97 Georgia Department of Juvenile Justice'),
(62771, 'https://ror.org/00ce2eb04', 'en', 1, 'https://ror.org/00ce2eb04 Georgia Emergency Management Agency'),
(62772, 'https://ror.org/02gr2xd08', 'en', 1, 'https://ror.org/02gr2xd08 Lietuvos geologijos tarnyba Lithuanian Geological Survey'),
(62773, 'https://ror.org/00809fn97', 'en', 1, 'https://ror.org/00809fn97 Lietuvos Respublikos Aplinkos Ministerija Ministry of Environment of the Republic of Lithuania'),
(62774, 'https://ror.org/0352k4r92', 'en', 1, 'https://ror.org/0352k4r92 Indian Nations Council of Governments'),
(62775, 'https://ror.org/00b1efb93', 'en', 1, 'https://ror.org/00b1efb93 Lietuvos Respublikos energetikos ministerija Ministry of Energy of the Republic of Lithuania'),
(62776, 'https://ror.org/00bhqk118', 'en', 1, 'https://ror.org/00bhqk118 Terviseamet Health Board'),
(62777, 'https://ror.org/020y5qm10', 'en', 1, 'https://ror.org/020y5qm10 Ministry of Health of the Republic of Lithuania'),
(62778, 'https://ror.org/032y2wk86', 'en', 1, 'https://ror.org/032y2wk86 Georgia Public Broadcasting'),
(62779, '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'),
(62780, 'https://ror.org/003dqz155', 'en', 1, 'https://ror.org/003dqz155 Indiana Professional Licensing Agency'),
(62781, 'https://ror.org/04k414517', 'en', 1, 'https://ror.org/04k414517 Lietuvos Respublikos teisingumo ministerija Ministry of Justice of the Republic of Lithuania'),
(62782, 'https://ror.org/04npq0213', 'en', 1, 'https://ror.org/04npq0213 Contact Helpline'),
(62783, 'https://ror.org/042qxra19', 'en', 1, 'https://ror.org/042qxra19 Lietuvos saugios laivybos administracija The Lithuanian Maritime Safety Administration'),
(62784, 'https://ror.org/0181x9z82', 'en', 1, 'https://ror.org/0181x9z82 National Agency for Technological Development'),
(62785, 'https://ror.org/03fvsys22', 'lt', 1, 'https://ror.org/03fvsys22 Jonavos Rajono Savivaldybė'),
(62786, 'https://ror.org/03dmmx952', 'en', 1, 'https://ror.org/03dmmx952 Israel-Europe R&D Directorate'),
(62787, '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'),
(62788, 'https://ror.org/043ch9202', 'de', 1, 'https://ror.org/043ch9202 Ministerium der Justiz Nordrhein-Westfalen'),
(62789, 'https://ror.org/048favk11', 'no_lang_code', 1, 'https://ror.org/048favk11 Isastur (Spain)'),
(62790, 'https://ror.org/00wt3rj94', 'no_lang_code', 1, 'https://ror.org/00wt3rj94 Technopolis (Finland)'),
(62791, 'https://ror.org/00ve9f380', 'de', 1, 'https://ror.org/00ve9f380 Ministerium des Innern des Landes Nordrhein-Westfalen'),
(62792, 'https://ror.org/033zvg385', 'no_lang_code', 1, 'https://ror.org/033zvg385 Kab Bygge-Og Boligadministration (Denmark)'),
(62793, 'https://ror.org/05ez11m68', 'en', 1, 'https://ror.org/05ez11m68 Kahoolawe Island Reserve Commission'),
(62794, 'https://ror.org/019rn2x79', 'en', 1, 'https://ror.org/019rn2x79 Kansas Board of Pharmacy'),
(62795, 'https://ror.org/030q87z73', 'en', 1, 'https://ror.org/030q87z73 Loughs Agency'),
(62796, 'https://ror.org/03qffpf96', 'fr', 1, 'https://ror.org/03qffpf96 Agence pour l''Observation de la RƩunion'),
(62797, 'https://ror.org/026bgaz55', 'en', 1, 'https://ror.org/026bgaz55 Louisiana Organ Procurement Agency'),
(62798, 'https://ror.org/0410wtw69', 'fr', 1, 'https://ror.org/0410wtw69 Gouvernement de la Nouvelle-CalƩdonie'),
(62799, 'https://ror.org/02cq13n41', 'en', 1, 'https://ror.org/02cq13n41 Kentucky Commission on Human Rights'),
(62800, 'https://ror.org/05dtnxd20', 'en', 1, 'https://ror.org/05dtnxd20 Israel Olive Oil Board'),
(62801, 'https://ror.org/02e8y3865', 'en', 1, 'https://ror.org/02e8y3865 Keskkonnaministeerium Ministry of the Environment'),
(62802, 'https://ror.org/02qk9nj07', 'en', 1, 'https://ror.org/02qk9nj07 Ministero delle Infrastrutture e dei Trasporti Ministry of Infrastructures and Transport'),
(62803, 'https://ror.org/05hfj9732', 'en', 1, 'https://ror.org/05hfj9732 Minsk Regional Institute of Education Development Минский областной ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(62804, 'https://ror.org/03zx5da06', 'en', 1, 'https://ror.org/03zx5da06 Government of Nova Scotia'),
(62805, 'https://ror.org/03n983v14', 'en', 1, 'https://ror.org/03n983v14 Federal Aviation Office Luftfahrt-Bundesamt'),
(62806, 'https://ror.org/0518zn197', 'en', 1, 'https://ror.org/0518zn197 International Commission on Radiation Units and Measurements'),
(62807, 'https://ror.org/05qw5qh97', 'en', 1, 'https://ror.org/05qw5qh97 Macedonian Information Agency МакеГонска информативна Š°Š³ŠµŠ½Ń†ŠøŃ˜Š°'),
(62808, 'https://ror.org/0279ce674', 'no_lang_code', 1, 'https://ror.org/0279ce674 Econboard (Italy)'),
(62809, 'https://ror.org/0266pt959', 'lt', 1, 'https://ror.org/0266pt959 Klaipėdos Miesto Savivaldybė'),
(62810, 'https://ror.org/00tqqep04', 'en', 1, 'https://ror.org/00tqqep04 Jewish Agency for Israel ההוכנות היהודית לארׄ ×™×©×Ø××œ'),
(62811, 'https://ror.org/0240hhb81', 'en', 1, 'https://ror.org/0240hhb81 Konsumentverket Swedish Consumer Agency'),
(62812, 'https://ror.org/01gwe4v50', 'en', 1, 'https://ror.org/01gwe4v50 International Association for the Exchange of Students for Technical Experience ŠœŠµŃ“ŃƒŠ½Š°Ń€Š¾Š“Š½Š° Š°ŃŠ¾Ń†ŠøŃ˜Š°Ń†ŠøŃ˜Š° за размена на ŃŃ‚ŃƒŠ“ŠµŠ½Ń‚Šø за техничко ŠøŃŠŗŃƒŃŃ‚во'),
(62813, 'https://ror.org/00p2smd09', 'en', 1, 'https://ror.org/00p2smd09 Manchester Climate Change Agency'),
(62814, 'https://ror.org/02atm6p71', 'en', 1, 'https://ror.org/02atm6p71 Marches Energy Agency'),
(62815, 'https://ror.org/050r87w51', 'en', 1, 'https://ror.org/050r87w51 North Atlantic Salmon Conservation Organization'),
(62816, 'https://ror.org/03cz3xh96', 'lt', 1, 'https://ror.org/03cz3xh96 Marijampolė municipality Marijampolės savivaldybė'),
(62817, 'https://ror.org/03n603b32', 'de', 1, 'https://ror.org/03n603b32 Bundesverband der SelbstƤndigen Deutscher Gewerbeverband'),
(62818, 'https://ror.org/00j38z902', 'en', 1, 'https://ror.org/00j38z902 Malta Intelligent Energy Management Agency'),
(62819, 'https://ror.org/02ybk0k36', 'en', 1, 'https://ror.org/02ybk0k36 Ministarstvo komunikacija i prometa Ministry of Communication and Transport'),
(62820, 'https://ror.org/00gpshd30', 'en', 1, 'https://ror.org/00gpshd30 Midcoast Watersheds Council'),
(62821, 'https://ror.org/038631f57', 'en', 1, 'https://ror.org/038631f57 Ministry of Economy of the Republic of Bulgaria ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на икономиката на Република Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(62822, 'https://ror.org/01zn9ea79', 'fr', 1, 'https://ror.org/01zn9ea79 MinistĆØre de la Production Animale et des Ressources Halieutiques'),
(62823, 'https://ror.org/00bjnxh67', 'en', 1, 'https://ror.org/00bjnxh67 Ministry of Economy'),
(62824, 'https://ror.org/05evttw71', 'es', 1, 'https://ror.org/05evttw71 Ministerio de Salud - Provincia de Buenos Aires'),
(62825, 'https://ror.org/04zxd7e56', 'en', 1, 'https://ror.org/04zxd7e56 Ministarstvo finansija-uprava carina Ministry of Finance and Economy'),
(62826, 'https://ror.org/01pva1129', 'bs', 1, 'https://ror.org/01pva1129 Ministarstvo Gospodarstva'),
(62827, 'https://ror.org/010x6sj87', 'en', 1, 'https://ror.org/010x6sj87 Ministry of Culture and Sport of the Republic of Kazakhstan ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ ŠœÓ™Š“ŠµŠ½ŠøŠµŃ‚ және спорт министрлігі'),
(62828, 'https://ror.org/05g1fka72', 'de', 1, 'https://ror.org/05g1fka72 Ministerium der Deutschsprachigen Gemeinschaft'),
(62829, 'https://ror.org/01j5rta38', 'es', 1, 'https://ror.org/01j5rta38 Ministerio de Salud'),
(62830, 'https://ror.org/04zrq7c15', 'en', 1, 'https://ror.org/04zrq7c15 Ministria e Financave dhe Ekonomisƫ Ministry of Finance'),
(62831, 'https://ror.org/03pdr1e82', 'en', 1, 'https://ror.org/03pdr1e82 Ministarstvo graditeljstva i prostornoga uređenja Ministry of Construction and Physical Planning'),
(62832, 'https://ror.org/0408v1a31', 'fr', 1, 'https://ror.org/0408v1a31 Ministère de la Santé'),
(62833, 'https://ror.org/03tqbke55', 'en', 1, 'https://ror.org/03tqbke55 Ministarstvo nauke i Tehnologije Ministry of Science and Technology'),
(62834, 'https://ror.org/0289qmg93', 'en', 1, 'https://ror.org/0289qmg93 Ministarstvo Pravosuđa Ministry of Justice'),
(62835, 'https://ror.org/039jt6988', 'en', 1, 'https://ror.org/039jt6988 Ministrstvo za infrastrukturo Ministry of Infrastructure'),
(62836, 'https://ror.org/052w5r042', 'en', 1, 'https://ror.org/052w5r042 Ministry of Natural Resources and Environment ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ прироГных Ń€ŠµŃŃƒŃ€ŃŠ¾Š² Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Российской ФеГерации'),
(62837, 'https://ror.org/016p05413', 'es', 1, 'https://ror.org/016p05413 Ministerio de Salud PĆŗblica y Asistencia Social'),
(62838, 'https://ror.org/052qbca19', 'en', 1, 'https://ror.org/052qbca19 Ministrstvo za javno upravo Ministry of Public Administration'),
(62839, 'https://ror.org/01zvw4x71', 'en', 1, 'https://ror.org/01zvw4x71 Ministry of Ecology and Natural Resources of Ukraine ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ екології та прироГних Ń€ŠµŃŃƒŃ€ŃŃ–Š² України'),
(62840, 'https://ror.org/05c2g3729', 'en', 1, 'https://ror.org/05c2g3729 Ministarstvo vanjskih poslova Ministarstvo vanjskih poslova Ministry of Foreign Affairs ŠœŠøŠ½ŠøŃŃ‚Š°Ń€ŃŃ‚Š²Š¾ иностраних послова'),
(62841, 'https://ror.org/00s8pzv55', 'en', 1, 'https://ror.org/00s8pzv55 Ministry of Economic Development and Trade ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ економічного Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ і торгівлі України'),
(62842, 'https://ror.org/046w98q07', 'pt', 1, 'https://ror.org/046w98q07 Ministério da Saúde'),
(62843, 'https://ror.org/058fm6761', 'en', 1, 'https://ror.org/058fm6761 Ministrstvo za Obrambo Republike Slovenije Ministry of Defence'),
(62844, 'https://ror.org/04p4jbz48', 'de', 1, 'https://ror.org/04p4jbz48 Ministerium für Umwelt und Verbraucherschutz'),
(62845, 'https://ror.org/04nars592', 'en', 1, 'https://ror.org/04nars592 Ministrstvo za okolje in prostor Ministry of the Environment and Spatial Planning'),
(62846, 'https://ror.org/046bz5635', 'en', 1, 'https://ror.org/046bz5635 Ministry of Economy of the Republic of Belarus ŠœŃ–Š½Ń–ŃŃ‚ŃŃ€ŃŃ‚Š²Š° ŃŠŗŠ°Š½Š¾Š¼Ń–ŠŗŃ– Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(62847, 'https://ror.org/03vapwt48', 'en', 1, 'https://ror.org/03vapwt48 Lietuvos Respublikos ūkio ministerija Ministry of Economy of the Republic of Lithuania'),
(62848, 'https://ror.org/041hf3v66', 'fr', 1, 'https://ror.org/041hf3v66 Ministre de la ForĆŖt,de la Mer et de l''Environnement'),
(62849, 'https://ror.org/04m6gem67', 'en', 1, 'https://ror.org/04m6gem67 Ministry of Education and Science of Georgia įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ’įƒįƒœįƒįƒ—įƒšįƒ”įƒ‘įƒ˜įƒ”įƒ įƒ“įƒ įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒ˜įƒ” įƒ”įƒįƒ›įƒ˜įƒœįƒ˜įƒ”įƒ¢įƒ įƒ'),
(62850, 'https://ror.org/039k9vd92', 'en', 1, 'https://ror.org/039k9vd92 Ministry of Education and Culture ΄πουργείο ΠαιΓείας και Ī ĪæĪ»Ī¹Ļ„Ī¹ĻƒĪ¼ĪæĻ'),
(62851, 'https://ror.org/048nyba16', 'en', 1, 'https://ror.org/048nyba16 Ministry of Mines and Geology Ministère des Mines et de la Géologie'),
(62852, 'https://ror.org/00sp8me03', 'en', 1, 'https://ror.org/00sp8me03 Flemish Community'),
(62853, 'https://ror.org/05k7qec05', 'fr', 1, 'https://ror.org/05k7qec05 Ministère de l''Education Nationale de CÓte d''Ivoire'),
(62854, 'https://ror.org/0055wm418', 'de', 1, 'https://ror.org/0055wm418 Ministerium der Finanzen des Landes Sachsen-Anhalt'),
(62855, 'https://ror.org/01cvj0j25', 'de', 1, 'https://ror.org/01cvj0j25 Ministerium des Innern und für Sport Rheinland-Pfalz'),
(62856, 'https://ror.org/004hsfv29', 'en', 1, 'https://ror.org/004hsfv29 Ministry for Finance'),
(62857, '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'),
(62858, 'https://ror.org/02dcxvm61', 'de', 1, 'https://ror.org/02dcxvm61 Ministerium für Umwelt, Energie, Ernährung und Forsten Rheinland Pfalz'),
(62859, 'https://ror.org/03qgxqd23', 'fr', 1, 'https://ror.org/03qgxqd23 MinistĆØre de l''Agriculture, de l''Elevage et de l''Hydraulique'),
(62860, 'https://ror.org/01y9p8471', 'en', 1, 'https://ror.org/01y9p8471 Ministry of Labour, Social Insurance and Social Solidarity ΄πουργείο Ī•ĻĪ³Ī±ĻƒĪÆĪ±Ļ‚ και ĪšĪæĪ¹Ī½Ļ‰Ī½Ī¹ĪŗĪ®Ļ‚ Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±Ļ‚ & ĪšĪæĪ¹Ī½Ļ‰Ī½Ī¹ĪŗĪ®Ļ‚ Ī‘Ī»Ī»Ī·Ī»ĪµĪ³Ī³ĻĪ·Ļ‚'),
(62861, 'https://ror.org/058atjp47', 'en', 1, 'https://ror.org/058atjp47 Ministry of Energy of the Republic of Bulgaria ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на енергетиката на Република Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(62862, 'https://ror.org/016bxe465', 'en', 1, 'https://ror.org/016bxe465 Ministry of Energy, Commerce, Industry and Tourism ΄πουργείο Ενέργειας, Εμπορίου, Βιομηχανίας και Ī¤ĪæĻ…ĻĪ¹ĻƒĪ¼ĪæĻ,'),
(62863, 'https://ror.org/049ragm77', 'de', 1, 'https://ror.org/049ragm77 Ministerium für Verkehr des Landes Nordrhein-Westfalen'),
(62864, 'https://ror.org/05fc6mp70', 'en', 1, 'https://ror.org/05fc6mp70 General Directorate of Forestry ORMAN GENEL MƜDƜRLƜĞƜ'),
(62865, 'https://ror.org/01y69kh47', 'en', 1, 'https://ror.org/01y69kh47 Ministry of Environment and Physical Planning ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ за животна среГина Šø просторно ŠæŠ»Š°Š½ŠøŃ€Š°ŃšŠµ'),
(62866, 'https://ror.org/041hn9r79', 'en', 1, 'https://ror.org/041hn9r79 Ministry of Agriculture and Agrarian Reform وزارة الزراعة ŁˆŲ§Ł„Ų„ŲµŁ„Ų§Ų­ Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠ'),
(62867, 'https://ror.org/05vr8kn83', 'en', 1, 'https://ror.org/05vr8kn83 Ministry of Agriculture, Food and Forestry ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на земеГелието Šø горите, Ministerstvo na zemedelieto i gorite'),
(62868, 'https://ror.org/05x7v0b39', 'en', 1, 'https://ror.org/05x7v0b39 Ministry of Agriculture and Forestry ąŗąŗ°ąŗŠąŗ§ąŗ‡ ກະສຓກຳ ແຄະ ąŗ›ą»ˆąŗ²ą»„ąŗ”ą»‰'),
(62869, 'https://ror.org/00xtpf729', 'pt', 1, 'https://ror.org/00xtpf729 Ministério da Ciência e Tecnologia'),
(62870, 'https://ror.org/00exf0825', 'en', 1, 'https://ror.org/00exf0825 Ministry of Agriculture and Food ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø ŠæŃ€Š¾Š“Š¾Š²Š¾Š»ŃŒŃŃ‚Š²ŠøŃ Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(62871, 'https://ror.org/01k218104', 'en', 1, 'https://ror.org/01k218104 FjƔrmƔla- og efnahagsrƔưuneytiư Ministry of Finance and Economic Affairs'),
(62872, 'https://ror.org/015aajy26', 'en', 1, 'https://ror.org/015aajy26 Ministry of Finance ŠœŠøŠ½ŠøŃŃ‚Š°Ń€ за финансии'),
(62873, 'https://ror.org/02vfbts58', 'en', 1, 'https://ror.org/02vfbts58 Ministerstwo Finansów Ministry of Finance'),
(62874, 'https://ror.org/044d6nj38', 'en', 1, 'https://ror.org/044d6nj38 Ministry of Agriculture'),
(62875, 'https://ror.org/04b8rvg36', 'en', 1, 'https://ror.org/04b8rvg36 Ministero del lavoro e delle politiche sociali Ministry of Labour and Social Policies'),
(62876, 'https://ror.org/03y9jct87', 'en', 1, 'https://ror.org/03y9jct87 Ministry of Finance ×žÖ“×©Ö°×‚×ØÖ·×“ הַאוֹצָר'),
(62877, 'https://ror.org/03pbjsf94', 'en', 1, 'https://ror.org/03pbjsf94 Danish Ministry of Industry, Business and Financial Affairs Erhvervsministeriets opgave'),
(62878, 'https://ror.org/02benpk44', 'fr', 1, 'https://ror.org/02benpk44 Ministère de la Famille, de l''Intégration et à la Grande Région'),
(62879, 'https://ror.org/02vjrna94', 'fr', 1, 'https://ror.org/02vjrna94 Ministère de la Fonction Publique et de la Réforme Administrative'),
(62880, 'https://ror.org/0157pp245', 'en', 1, 'https://ror.org/0157pp245 Ministry of Communications and Technology وزارة ال؄تصالات ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(62881, 'https://ror.org/05y6t7072', 'lt', 1, 'https://ror.org/05y6t7072 BirÅ”tono Savivaldybė'),
(62882, 'https://ror.org/012r2dp17', 'ro', 1, 'https://ror.org/012r2dp17 Ministerul Comunicațiilor și Societății Informaționale'),
(62883, 'https://ror.org/04vkaka98', 'en', 1, 'https://ror.org/04vkaka98 Ministry of Foreign Affairs ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ закорГонних справ України'),
(62884, 'https://ror.org/03jm70514', 'en', 1, 'https://ror.org/03jm70514 Ministry of Foreign Affairs ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на Š²ŃŠŠ½ŃˆŠ½ŠøŃ‚е работи'),
(62885, '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'),
(62886, 'https://ror.org/0393kd737', 'en', 1, 'https://ror.org/0393kd737 Ministry of Health'),
(62887, 'https://ror.org/04b78z783', 'en', 1, 'https://ror.org/04b78z783 Ministerstvo hospodƔrstva Slovenskej republiky Ministry of Economy of the Slovak Republic');
INSERT INTO `rors` VALUES
(62888, 'https://ror.org/03jswvp59', 'en', 1, 'https://ror.org/03jswvp59 Ministry for Health'),
(62889, 'https://ror.org/0175bfp64', 'en', 1, 'https://ror.org/0175bfp64 Ministria e Shƫndetƫsisƫ dhe Mbrojtjes Sociale Ministry of Health and Social Protection'),
(62890, 'https://ror.org/02vf30q73', 'en', 1, 'https://ror.org/02vf30q73 Ministry of Health Эрүүл Š¼ŃŠ½Š“ийн ŃŠ°Š¼'),
(62891, 'https://ror.org/05dx52749', 'en', 1, 'https://ror.org/05dx52749 Ministry of Health and Wellness'),
(62892, 'https://ror.org/02hzqtm46', 'pl', 1, 'https://ror.org/02hzqtm46 Ministerstwo Infrastruktury'),
(62893, 'https://ror.org/04yydwx07', 'nl', 1, 'https://ror.org/04yydwx07 Ministerie van Volksgezondheid'),
(62894, 'https://ror.org/043smtf02', 'en', 1, 'https://ror.org/043smtf02 Ministry of Health'),
(62895, 'https://ror.org/05ryb2603', 'en', 1, 'https://ror.org/05ryb2603 Ministerstwo Rodziny, Pracy i Polityki Społecznej Ministry of Family, Labour and Social Policy'),
(62896, 'https://ror.org/05yay3q52', 'en', 1, 'https://ror.org/05yay3q52 Ministry of Education and Higher Education'),
(62897, 'https://ror.org/00w1qwz28', 'en', 1, 'https://ror.org/00w1qwz28 Ministerstwo Inwestycji i Rozwoju Ministry of Investment and Development'),
(62898, 'https://ror.org/05yd2zc58', 'en', 1, 'https://ror.org/05yd2zc58 Ministry of Industry, Commerce, Agriculture and Fisheries'),
(62899, 'https://ror.org/007zske95', 'en', 1, 'https://ror.org/007zske95 Ministerstwo Sprawiedliwośc Ministry of Justice of the Republic of Poland'),
(62900, 'https://ror.org/034kyps37', 'en', 1, 'https://ror.org/034kyps37 Ministry of Information Society and Administration'),
(62901, 'https://ror.org/0415vh479', 'en', 1, 'https://ror.org/0415vh479 Ministry of Interior Mинистерство на Š²ŃŠŃ‚Ń€ŠµŃˆŠ½ŠøŃ‚Šµ работи'),
(62902, 'https://ror.org/045z49291', 'en', 1, 'https://ror.org/045z49291 Ministerul Apărării Naționale Ministry of National Defence'),
(62903, 'https://ror.org/03cej8561', 'en', 1, 'https://ror.org/03cej8561 Ministarstvo unutarnjih poslova Republike Hrvatske Ministry of the Interior'),
(62904, 'https://ror.org/03519pp33', 'en', 1, 'https://ror.org/03519pp33 Agenţia Naţională Antidrog National Anti-drug Agency'),
(62905, 'https://ror.org/05nhh6248', 'en', 1, 'https://ror.org/05nhh6248 Ministry of the Interior ΄πουργείο Ī•ĻƒĻ‰Ļ„ĪµĻĪ¹ĪŗĻŽĪ½'),
(62906, 'https://ror.org/051y11y24', 'en', 1, 'https://ror.org/051y11y24 Justitiedepartementet Ministry of Justice'),
(62907, 'https://ror.org/00nhyfw74', 'en', 1, 'https://ror.org/00nhyfw74 Ministry of Justice Oikeusministeriƶ'),
(62908, 'https://ror.org/02bv86w93', 'en', 1, 'https://ror.org/02bv86w93 Danish Ministry of Justice Justitsministeriet'),
(62909, 'https://ror.org/04pgsn829', 'en', 1, 'https://ror.org/04pgsn829 Ministry of Justice of the Republic of Kazakhstan ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ó˜Š“Ń–Š»ŠµŃ‚ министрлігі'),
(62910, 'https://ror.org/00mjzrw90', 'en', 1, 'https://ror.org/00mjzrw90 Ministarstvo Pravde u Vladi Crne Gore Ministry of Justice'),
(62911, 'https://ror.org/02d5jky69', 'en', 1, 'https://ror.org/02d5jky69 Ministry of Communication and Information Technology į‹“.įˆ į‹Øįˆ˜įŒˆįŠ“įŠ›įŠ“ įŠ¢įŠ•įŽįˆ­įˆœįˆ½įŠ• į‰“įŠ­įŠ–įˆŽįŒ‚ įˆšįŠ’įˆµį‰“įˆ­'),
(62912, 'https://ror.org/03anhbw86', 'en', 1, 'https://ror.org/03anhbw86 Regional Energy Agency Регионална енергийна Š°Š³ŠµŠ½Ń†ŠøŃ - Русе'),
(62913, 'https://ror.org/01v434r56', 'es', 1, 'https://ror.org/01v434r56 Agencia Tributaria'),
(62914, 'https://ror.org/04vm99k83', 'en', 1, 'https://ror.org/04vm99k83 Ministerul Tineretului şi Sportului Ministry of Youth and Sports'),
(62915, 'https://ror.org/00dxjhh32', 'fr', 1, 'https://ror.org/00dxjhh32 Agence Nationale pour l''Emploi National Employment Agency'),
(62916, 'https://ror.org/04gjr7b93', 'de', 1, 'https://ror.org/04gjr7b93 Ministerium für Kinder, Familie, Flüchtlinge und Integration des Landes Nordrhein-Westfalen'),
(62917, 'https://ror.org/026h0ny75', 'en', 1, 'https://ror.org/026h0ny75 IgazsÔgügyi Minisztérium Ministry of Justice'),
(62918, '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'),
(62919, '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'),
(62920, 'https://ror.org/03jpstz64', 'en', 1, 'https://ror.org/03jpstz64 Ministry of Science and Technology ąŗąŗ°ąŗŠąŗ§ąŗ‡ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ąŗŖąŗ²ąŗ” ą»ąŗ„ąŗ°ą»€ąŗ•ąŗ±ąŗą»‚ąŗ™ą»‚ąŗ„ąŗŠąŗµ'),
(62921, 'https://ror.org/02q7gp705', 'en', 1, 'https://ror.org/02q7gp705 Ministry of Science and Technology įˆ³į‹­įŠ•įˆµ įŠ„įŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ įˆšįŠ’įˆµį‰“įˆ­'),
(62922, 'https://ror.org/014h86b15', 'en', 1, 'https://ror.org/014h86b15 Ministry of Shipping and Island Policy ΄πουργείο Εμπορικής ĪĪ±Ļ…Ļ„Ī¹Ī»ĪÆĪ±Ļ‚'),
(62923, 'https://ror.org/032ttbd57', 'en', 1, 'https://ror.org/032ttbd57 Ministry of Security of Bosnia and Herzegovina'),
(62924, 'https://ror.org/02yx0ge43', 'en', 1, 'https://ror.org/02yx0ge43 Eesti Sotsiaalministeerium Ministry of Social Affairs'),
(62925, 'https://ror.org/02nkkj123', 'en', 1, 'https://ror.org/02nkkj123 Danish Ministry of Taxation Skatteministeriet'),
(62926, 'https://ror.org/025mfxt76', 'en', 1, 'https://ror.org/025mfxt76 Human Resources Agency of New Britain'),
(62927, 'https://ror.org/00c480063', 'en', 1, 'https://ror.org/00c480063 New Hampshire Association of Conservation Commissions'),
(62928, 'https://ror.org/01r1k7826', 'en', 1, 'https://ror.org/01r1k7826 New Jersey Sports and Exposition Authority'),
(62929, 'https://ror.org/02hp6vh93', 'en', 1, 'https://ror.org/02hp6vh93 New Jersey Pinelands Commission'),
(62930, 'https://ror.org/02g8v2v69', 'en', 1, 'https://ror.org/02g8v2v69 National Cancer Registry'),
(62931, 'https://ror.org/01mf87c05', 'de', 1, 'https://ror.org/01mf87c05 ParitƤtisches Bildungswerk Bundesverband'),
(62932, 'https://ror.org/000275q75', 'en', 1, 'https://ror.org/000275q75 Department of Public Service'),
(62933, 'https://ror.org/01bz76d25', 'no_lang_code', 1, 'https://ror.org/01bz76d25 NextGen Federal Systems (United States)'),
(62934, 'https://ror.org/01nmnpy52', 'en', 1, 'https://ror.org/01nmnpy52 Ministry for Tourism'),
(62935, 'https://ror.org/041cran12', 'en', 1, 'https://ror.org/041cran12 National House Building Council'),
(62936, 'https://ror.org/05wx2c490', 'en', 1, 'https://ror.org/05wx2c490 NHS Bradford Districts Clinical Commissioning Group'),
(62937, 'https://ror.org/039p5as73', 'en', 1, 'https://ror.org/039p5as73 NHS Eastern Cheshire Clinical Commissioning Group'),
(62938, 'https://ror.org/05jrpd556', 'de', 1, 'https://ror.org/05jrpd556 Niedersächsisches Ministerium für Wirtschaft, Arbeit und Verkehr'),
(62939, 'https://ror.org/03ms7da52', 'de', 1, 'https://ror.org/03ms7da52 Niedersächsisches Ministerium für Inneres und Sport'),
(62940, 'https://ror.org/003mgr108', 'de', 1, 'https://ror.org/003mgr108 Bundesverband Photovoltaic Austria'),
(62941, 'https://ror.org/00tmwt177', 'en', 1, 'https://ror.org/00tmwt177 Agency of European innovations'),
(62942, 'https://ror.org/03w3tb520', 'en', 1, 'https://ror.org/03w3tb520 National Commission on Correctional Health Care'),
(62943, 'https://ror.org/025sfcn53', 'en', 1, 'https://ror.org/025sfcn53 Pioneer Valley Planning Commission'),
(62944, 'https://ror.org/02nsc9n54', 'en', 1, 'https://ror.org/02nsc9n54 Local Enterprise Office Cork North & West'),
(62945, 'https://ror.org/036gs9v48', 'en', 1, 'https://ror.org/036gs9v48 North East Atlantic Fisheries Commission'),
(62946, 'https://ror.org/04y3hfp43', 'en', 1, 'https://ror.org/04y3hfp43 Ministry of Agriculture of the Russian Federation ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Российской ФеГерации'),
(62947, 'https://ror.org/053zb8g23', 'en', 1, 'https://ror.org/053zb8g23 Plaquemines Parish Government'),
(62948, 'https://ror.org/04kgekf96', 'no_lang_code', 1, 'https://ror.org/04kgekf96 Sputnik Š”ŠæŃƒŃ‚Š½ŠøŠŗ'),
(62949, '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'),
(62950, 'https://ror.org/00yjk3k17', 'en', 1, 'https://ror.org/00yjk3k17 Ministry of Transport, Communications and Works ΄πουργείο ĪœĪµĻ„Ī±Ļ†ĪæĻĻŽĪ½, Ī•Ļ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½ και ĪˆĻĪ³Ļ‰Ī½'),
(62951, 'https://ror.org/01pd36221', 'en', 1, 'https://ror.org/01pd36221 Police Department Policijos departamentas'),
(62952, 'https://ror.org/04ebkyp66', 'en', 1, 'https://ror.org/04ebkyp66 National Council of Teachers of English'),
(62953, 'https://ror.org/0554q2022', 'en', 1, 'https://ror.org/0554q2022 Ministry of Transport, Information Technology and Communications ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на транспорта, информационните технологии Šø ŃŃŠŠ¾Š±Ń‰ŠµŠ½ŠøŃŃ‚Š° на Република Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(62954, 'https://ror.org/05dbddb11', 'en', 1, 'https://ror.org/05dbddb11 Northern Cheyenne Tribal Board of Health'),
(62955, 'https://ror.org/00q7qmn76', 'en', 1, 'https://ror.org/00q7qmn76 Polish Air Navigation Services Agency Polska Agencja Żeglugi Powietrznej'),
(62956, 'https://ror.org/05j4s2c10', 'en', 1, 'https://ror.org/05j4s2c10 Northern Ireland Commissioner for Children and Young People'),
(62957, 'https://ror.org/00d6ce877', 'en', 1, 'https://ror.org/00d6ce877 National Council on Patient Information and Education'),
(62958, 'https://ror.org/01nfbwg92', 'en', 1, 'https://ror.org/01nfbwg92 Northern Ireland Statistics and Research Agency'),
(62959, 'https://ror.org/044y4ky78', 'en', 1, 'https://ror.org/044y4ky78 Northern Ireland Tourist Board'),
(62960, 'https://ror.org/04mja2r14', 'it', 1, 'https://ror.org/04mja2r14 Pontificia commissione di archeologia sacra Pontificium consilium archaeologiae sacrae'),
(62961, 'https://ror.org/02eyayb49', 'en', 1, 'https://ror.org/02eyayb49 Northern Lighthouse Board'),
(62962, 'https://ror.org/005n3jc56', 'en', 1, 'https://ror.org/005n3jc56 Ministry of Water Resources and Meteorology įž€įŸ’įžšįžŸįž½įž„įž’įž“įž’įž¶įž“įž‘įž¹įž€įž“įž·įž„įž§įžįž»įž“įž·įž™įž˜'),
(62963, 'https://ror.org/04n0kdq05', 'en', 1, 'https://ror.org/04n0kdq05 SamsĆø Energiakademi SamsĆø Energy Academy'),
(62964, 'https://ror.org/05wnw8q41', 'en', 1, 'https://ror.org/05wnw8q41 San Francisco Bay Conservation and Development Commission'),
(62965, 'https://ror.org/05xdfr133', 'en', 1, 'https://ror.org/05xdfr133 North-West Public Health Research Center'),
(62966, 'https://ror.org/020a52n70', 'en', 1, 'https://ror.org/020a52n70 Department of Planning & Building'),
(62967, 'https://ror.org/052z4cr88', 'en', 1, 'https://ror.org/052z4cr88 Chemins de fer fƩdƩraux suisses Schweizerische Bundesbahnen Swiss Federal Railways'),
(62968, 'https://ror.org/03sjfbk05', 'en', 1, 'https://ror.org/03sjfbk05 National Environment Commission'),
(62969, 'https://ror.org/044qm0e47', 'en', 1, 'https://ror.org/044qm0e47 Ministry of Petroleum and Energy Olje- og energidepartementet'),
(62970, 'https://ror.org/046qfjt27', 'en', 1, 'https://ror.org/046qfjt27 National Evaluation and Accreditation Agency ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ за Š¾Ń†ŠµŠ½ŃŠ²Š°Š½Šµ Šø Š°ŠŗŃ€ŠµŠ“ŠøŃ‚Š°Ń†ŠøŃ'),
(62971, 'https://ror.org/04acy3777', 'en', 1, 'https://ror.org/04acy3777 Science Council'),
(62972, 'https://ror.org/05f96jg21', 'it', 1, 'https://ror.org/05f96jg21 PromoFirenze PromoFirenze Azienda Speciale della Camera di Commercio di Firenze'),
(62973, 'https://ror.org/02yhdrk95', 'en', 1, 'https://ror.org/02yhdrk95 Mississippi Blues Trail'),
(62974, 'https://ror.org/046rj3t65', 'en', 1, 'https://ror.org/046rj3t65 Lembaga Warisan Negara National Heritage Board ą®¤ąÆ‡ą®šą®æą®Æ ą®®ą®°ą®ŖąÆą®ŸąÆˆą®®ąÆˆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ 国家文物局'),
(62975, 'https://ror.org/052gbj065', 'en', 1, 'https://ror.org/052gbj065 Mississippi Board of Pharmacy'),
(62976, 'https://ror.org/057mvkb89', 'en', 1, 'https://ror.org/057mvkb89 AgĆŖncia de Empreendedores Sociais Social Entrepreneurs Agency'),
(62977, 'https://ror.org/02xcbvq61', 'en', 1, 'https://ror.org/02xcbvq61 Public Limited Company for Radioactive Waste Management RadioaktĆ­v HulladĆ©kokat Kezelő KƶzhasznĆŗ'),
(62978, 'https://ror.org/04fs1av96', 'en', 1, 'https://ror.org/04fs1av96 Public Health Accreditation Board'),
(62979, 'https://ror.org/05bk3hg51', 'en', 1, 'https://ror.org/05bk3hg51 Montana Department of Labor & Industry'),
(62980, 'https://ror.org/023a7m452', 'en', 1, 'https://ror.org/023a7m452 Jewish Community Centre Association of North America'),
(62981, 'https://ror.org/009neaa43', 'en', 1, 'https://ror.org/009neaa43 Public Investment Development Agency VieŔųjų investicijų plėtros agentÅ«ra'),
(62982, 'https://ror.org/035jb5191', 'en', 1, 'https://ror.org/035jb5191 Nova Scotia Advisory Commission on AIDS'),
(62983, 'https://ror.org/01fh2dk93', 'en', 1, 'https://ror.org/01fh2dk93 Montana Department of Justice'),
(62984, 'https://ror.org/029z8r738', 'en', 1, 'https://ror.org/029z8r738 Olympic Council of Ireland'),
(62985, 'https://ror.org/00rwx5a44', 'en', 1, 'https://ror.org/00rwx5a44 National Directorate General for Disaster Management'),
(62986, 'https://ror.org/012rg8a11', 'en', 1, 'https://ror.org/012rg8a11 Icelandic Road and Coastal Administration Vegagerưin'),
(62987, 'https://ror.org/000ak5281', 'en', 1, 'https://ror.org/000ak5281 Missouri Department of Public Safety'),
(62988, 'https://ror.org/01pv9g403', 'en', 1, 'https://ror.org/01pv9g403 Nacionaline mokejimo agentura National Paying Agency'),
(62989, 'https://ror.org/01jr0rj76', 'en', 1, 'https://ror.org/01jr0rj76 Texas Department of Public Safety'),
(62990, 'https://ror.org/04xf9tg94', 'en', 1, 'https://ror.org/04xf9tg94 Sewerage Board of Limassol – Amathus Ī£Ļ…Ī¼Ī²ĪæĻĪ»Ī¹Īæ Ī‘Ļ€ĪæĻ‡ĪµĻ„ĪµĻĻƒĪµĻ‰Ī½ Ī›ĪµĪ¼ĪµĻƒĪæĻ - Ī‘Ī¼Ī±ĪøĪæĻĪ½Ļ„Ī±Ļ‚'),
(62991, 'https://ror.org/029bb7n62', 'no_lang_code', 1, 'https://ror.org/029bb7n62 Industrias PeƱoles PeƱoles (Mexico)'),
(62992, 'https://ror.org/002jr8r89', 'en', 1, 'https://ror.org/002jr8r89 Public Service Development Agency įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒ”įƒ įƒ•įƒ˜įƒ”įƒ”įƒ‘įƒ˜įƒ” įƒ’įƒįƒœįƒ•įƒ˜įƒ—įƒįƒ įƒ”įƒ‘įƒ˜įƒ” įƒ”įƒįƒįƒ’įƒ”įƒœįƒ¢įƒ'),
(62993, 'https://ror.org/051hnz082', 'no_lang_code', 1, 'https://ror.org/051hnz082 Silvapa (Portugal)'),
(62994, 'https://ror.org/01zq0ty45', 'en', 1, 'https://ror.org/01zq0ty45 Public Waste Agency of Flanders'),
(62995, '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'),
(62996, 'https://ror.org/0376fv627', 'en', 1, 'https://ror.org/0376fv627 Department of Public Works Τμήμα Ī”Ī·Ī¼ĪæĻƒĪÆĻ‰Ī½ ĪˆĻĪ³Ļ‰Ī½'),
(62997, 'https://ror.org/04t5t5q13', 'en', 1, 'https://ror.org/04t5t5q13 State of Ohio Board of Pharmacy'),
(62998, 'https://ror.org/05ybbth24', 'en', 1, 'https://ror.org/05ybbth24 National Youth Agency'),
(62999, 'https://ror.org/03s9rtw86', 'en', 1, 'https://ror.org/03s9rtw86 National Adult Literacy Agency'),
(63000, 'https://ror.org/00jmt8d06', 'en', 1, 'https://ror.org/00jmt8d06 Agentschap Telecom Radiocommunications Agency'),
(63001, 'https://ror.org/0221pe749', 'en', 1, 'https://ror.org/0221pe749 Pakistan Council of Research in Water Resources'),
(63002, 'https://ror.org/009mwch30', 'en', 1, 'https://ror.org/009mwch30 Slovenian Nuclear Safety Administration Uprava Republike Slovenije za Jedrsko Varnost'),
(63003, 'https://ror.org/041dptm21', 'en', 1, 'https://ror.org/041dptm21 Sofia Energy Agency ŠŠ”ŠžŠ¦Š˜ŠŠ¦Š˜ŠÆ ŠŠ ŠŠ“Š•ŠŠ¦Š˜ŠÆŠ¢Š ЗА Š•ŠŠ•Š Š“Š˜Š™ŠŠ Š”ŠžŠ¤Š˜ŠÆ'),
(63004, 'https://ror.org/01ejspd55', 'no_lang_code', 1, 'https://ror.org/01ejspd55 Ranheim Paper & Board (Norway)'),
(63005, 'https://ror.org/038wqs208', 'en', 1, 'https://ror.org/038wqs208 National Agency for Education Skolverket'),
(63006, 'https://ror.org/01h2zyy62', 'pt', 1, 'https://ror.org/01h2zyy62 Serviços Partilhados do Ministério da Saúde'),
(63007, 'https://ror.org/031hazy16', 'en', 1, 'https://ror.org/031hazy16 Springboard'),
(63008, 'https://ror.org/024b0tx86', 'it', 1, 'https://ror.org/024b0tx86 Scuola Nazionale dell''Amministrazione'),
(63009, 'https://ror.org/04zpnp088', 'en', 1, 'https://ror.org/04zpnp088 Southern States Energy Board'),
(63010, 'https://ror.org/008d47791', 'no_lang_code', 1, 'https://ror.org/008d47791 Novem (Netherlands)'),
(63011, 'https://ror.org/03rb53j96', 'en', 1, 'https://ror.org/03rb53j96 Directorate for Inland Waterways Direkcija za vodne puteve Plovput Š”ŠøŃ€ŠµŠŗŃ†ŠøŃ˜Š° за воГне ŠæŃƒŃ‚еве ŠŸŠ»Š¾Š²ŠæŃƒŃ‚'),
(63012, 'https://ror.org/0073p9c35', 'en', 1, 'https://ror.org/0073p9c35 National Board for Certified Counselors'),
(63013, 'https://ror.org/04j8mbe63', 'en', 1, 'https://ror.org/04j8mbe63 Nevada State Board of Pharmacy'),
(63014, 'https://ror.org/02xq4xp48', 'en', 1, 'https://ror.org/02xq4xp48 State Agency for Metrological and Technical Surveillance Š”ŃŠŃ€Š¶Š°Š²Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ за метрологичен Šø технически наГзор'),
(63015, 'https://ror.org/036j7gs78', 'en', 1, 'https://ror.org/036j7gs78 Nevada Dairy Commission'),
(63016, 'https://ror.org/0280brb18', 'en', 1, 'https://ror.org/0280brb18 Southington Public School'),
(63017, 'https://ror.org/005ds8z67', 'en', 1, 'https://ror.org/005ds8z67 Nevada Department of Agriculture'),
(63018, 'https://ror.org/00m0pp561', 'en', 1, 'https://ror.org/00m0pp561 National Board of Patents and Registration of Finland Patentti- ja rekisterihallitus'),
(63019, 'https://ror.org/04egyjm03', 'en', 1, 'https://ror.org/04egyjm03 Nevada Department of Education'),
(63020, 'https://ror.org/01mymm084', 'en', 1, 'https://ror.org/01mymm084 Technological Educational Institute of Western Greece Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Δυτικής ΕλλάΓας'),
(63021, 'https://ror.org/004v3gj87', 'en', 1, 'https://ror.org/004v3gj87 Ministry of Emergency Situations Š¢Ó©Ń‚ŠµŠ½ŃˆŠµ жағГайлар министрлігі'),
(63022, 'https://ror.org/048snpq13', 'en', 1, 'https://ror.org/048snpq13 Resource Management Agency'),
(63023, 'https://ror.org/01e0s4559', 'en', 1, 'https://ror.org/01e0s4559 Ministry of Labour and Social Protection Republic of Belarus ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Ń‚Ń€ŃƒŠ“Š° Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ защиты Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(63024, 'https://ror.org/000p6eh83', 'en', 1, 'https://ror.org/000p6eh83 Rio Grande Council of Governments'),
(63025, 'https://ror.org/018e02524', 'en', 1, 'https://ror.org/018e02524 Ministrstvo za Kmetijstvo, Gozdarstvo in Prehrano Ministry of Agriculture, Forestry and Food Security'),
(63026, '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'),
(63027, 'https://ror.org/03y5ebv30', 'en', 1, 'https://ror.org/03y5ebv30 Regulatory Agency for Electronic Communications and Postal Services Š ŠµŠ³ŃƒŠ»Š°Ń‚Š¾Ń€Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ˜Š° за електронске ŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŃ˜Šµ Šø ŠæŠ¾ŃˆŃ‚Š°Š½ŃŠŗŠµ услуге'),
(63028, 'https://ror.org/000m4se28', 'en', 1, 'https://ror.org/000m4se28 Aerospace Research Institute Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł‡ŁˆŲ§ŁŲ¶Ų§ā€Ž'),
(63029, 'https://ror.org/00ddcgv12', 'en', 1, 'https://ror.org/00ddcgv12 State Phytosanitary Administration StĆ”tnĆ­ RostlinolĆ©kařskĆ” SprĆ”va'),
(63030, 'https://ror.org/0231kk931', 'en', 1, 'https://ror.org/0231kk931 African Institute for Mathematical Sciences Ghana'),
(63031, 'https://ror.org/01reqdm50', 'en', 1, 'https://ror.org/01reqdm50 Institute of Electron Physics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ електронної фізики Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ физики'),
(63032, 'https://ror.org/03q5grb87', 'fr', 1, 'https://ror.org/03q5grb87 AcadƩmie des Sciences et des Technologies d''AlgƩrie'),
(63033, 'https://ror.org/037g7hc89', 'en', 1, 'https://ror.org/037g7hc89 National Statistical Service of the Republic of Armenia Ō±Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ¾Õ«Õ³Õ”ÕÆÕ”Õ£Ö€Õ”ÕÆÕ”Õ¶ Õ®Õ”Õ¼Õ”ÕµÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(63034, 'https://ror.org/00dkg9f08', 'nl', 1, 'https://ror.org/00dkg9f08 Royal Dirkzwager'),
(63035, 'https://ror.org/03zmfa837', 'en', 1, 'https://ror.org/03zmfa837 Rochester Institute of Technology - Dubai معهد روتؓستر Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ - دبي'),
(63036, 'https://ror.org/03a0vt050', 'en', 1, 'https://ror.org/03a0vt050 Institute of Inorganic Methodologies and Plasmas Istituto di Metodologie Inorganiche e dei Plasmi'),
(63037, 'https://ror.org/01g5j9962', 'en', 1, 'https://ror.org/01g5j9962 Stoughton Youth Commission'),
(63038, 'https://ror.org/00f65v533', 'en', 1, 'https://ror.org/00f65v533 Strategic Investment Board'),
(63039, 'https://ror.org/021923v79', 'en', 1, 'https://ror.org/021923v79 Institute of Marine Geology and Geophysics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ морской геологии Šø геофизики'),
(63040, 'https://ror.org/035a15991', 'es', 1, 'https://ror.org/035a15991 Instituto Argentino de RadioastronomĆ­a'),
(63041, 'https://ror.org/02b12qx63', 'en', 1, 'https://ror.org/02b12qx63 SAGA Heavy Ion Medical Accelerator in Tosu ä¹å·žå›½éš›é‡ē²’å­ē·šćŒć‚“ę²»ē™‚ć‚»ćƒ³ć‚æ'),
(63042, 'https://ror.org/035seyp42', 'en', 1, 'https://ror.org/035seyp42 Institut de MathƩmatiques et de Sciences Physiques Institute of Mathematics and Physics'),
(63043, 'https://ror.org/04asgtj30', 'en', 1, 'https://ror.org/04asgtj30 Baoding University'),
(63044, 'https://ror.org/03cthg118', 'en', 1, 'https://ror.org/03cthg118 Istituto di ricerca Santa Marinella Santa Marinella Research Institute'),
(63045, 'https://ror.org/00p0gp915', 'en', 1, 'https://ror.org/00p0gp915 Saudi Digital Library Ų§Ł„Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ų±Ł‚Ł…ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ©'),
(63046, 'https://ror.org/02ba86714', 'en', 1, 'https://ror.org/02ba86714 Surrey Board of Trade'),
(63047, 'https://ror.org/01fst1562', 'no_lang_code', 1, 'https://ror.org/01fst1562 Sceptica Scientific (United Kingdom)'),
(63048, 'https://ror.org/02a62fq70', 'en', 1, 'https://ror.org/02a62fq70 Susquehanna River Basin Commission'),
(63049, 'https://ror.org/00bc51d88', 'it', 1, 'https://ror.org/00bc51d88 Istituto di Nanotecnologia'),
(63050, 'https://ror.org/002mzw222', 'en', 1, 'https://ror.org/002mzw222 Cape Coast Technical University'),
(63051, 'https://ror.org/05waykt95', 'no_lang_code', 1, 'https://ror.org/05waykt95 Schlumberger (Russia)'),
(63052, 'https://ror.org/02xfypx32', 'en', 1, 'https://ror.org/02xfypx32 Sustainable Economic Development Agency'),
(63053, 'https://ror.org/022g12y09', 'en', 1, 'https://ror.org/022g12y09 Sustainable Energy Development Agency'),
(63054, 'https://ror.org/02133fc38', 'no_lang_code', 1, 'https://ror.org/02133fc38 Stinger Ghaffarian Technologies (United States)'),
(63055, 'https://ror.org/058ddgs73', 'en', 1, 'https://ror.org/058ddgs73 Center for Art and Media Karlsruhe Zentrum für Kunst und Medien'),
(63056, 'https://ror.org/042hg5r91', 'en', 1, 'https://ror.org/042hg5r91 Institute of Quantum Materials Science Š—ŠŠž "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ квантового Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ"'),
(63057, 'https://ror.org/04scxn396', 'hu', 1, 'https://ror.org/04scxn396 KƶzbeszerzĆ©si Ć©s EllĆ”tĆ”si FőigazgatósĆ”g'),
(63058, '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'),
(63059, 'https://ror.org/003cp7918', 'en', 1, 'https://ror.org/003cp7918 Shanghai Micro Satellite Engineering Center äøŠęµ·å¾®åž‹å«ę˜Ÿå·„ēØ‹äø­åæƒ'),
(63060, 'https://ror.org/00xn99b04', 'en', 1, 'https://ror.org/00xn99b04 Central Research Institute of Chemistry and Mechanics'),
(63061, 'https://ror.org/04vptn707', 'en', 1, 'https://ror.org/04vptn707 Shanghai Institute of Quality Inspection and Technical Research äøŠęµ·åø‚č“Øé‡ē›‘ē£ę£€éŖŒęŠ€ęœÆē ”ē©¶é™¢'),
(63062, 'https://ror.org/02ykbvm42', 'en', 1, 'https://ror.org/02ykbvm42 Centre for Materials for Electronics Technology'),
(63063, 'https://ror.org/04sx9wp33', 'en', 1, 'https://ror.org/04sx9wp33 CSIRO Manufacturing'),
(63064, 'https://ror.org/02wdyv422', 'en', 1, 'https://ror.org/02wdyv422 Ministry for Transport, Infrastructure and Capital Projects'),
(63065, 'https://ror.org/05bdngh08', 'fr', 1, 'https://ror.org/05bdngh08 ECAM-EPMI'),
(63066, 'https://ror.org/03s0pk098', 'fr', 1, 'https://ror.org/03s0pk098 Ɖcole SupĆ©rieure en Sciences AppliquĆ©es de Tlemcen'),
(63067, 'https://ror.org/051yzyq64', 'no_lang_code', 1, 'https://ror.org/051yzyq64 Techtra (Poland)'),
(63068, 'https://ror.org/03v60jr94', 'no_lang_code', 1, 'https://ror.org/03v60jr94 Springer Nature (Switzerland)'),
(63069, 'https://ror.org/05wd8bb75', 'en', 1, 'https://ror.org/05wd8bb75 Iraq Virtual Science Library'),
(63070, 'https://ror.org/054q52n39', 'no_lang_code', 1, 'https://ror.org/054q52n39 Stallergenes Greer (United States)'),
(63071, 'https://ror.org/05cdfm144', 'it', 1, 'https://ror.org/05cdfm144 Istituto di Cibernetica ā€œEduardo Caianielloā€'),
(63072, 'https://ror.org/048m5jb39', 'en', 1, 'https://ror.org/048m5jb39 Extreme Light Infrastructure - Nuclear Physics'),
(63073, 'https://ror.org/0498x1v76', 'en', 1, 'https://ror.org/0498x1v76 Texoma Council of Governments'),
(63074, 'https://ror.org/05sc3yb31', 'en', 1, 'https://ror.org/05sc3yb31 Sunyani Technical University'),
(63075, 'https://ror.org/04pms6p91', 'en', 1, 'https://ror.org/04pms6p91 Ivan Vazov National Library ŠŠ°Ń€Š¾Š“Š½Š° библиотека "Иван Вазов"'),
(63076, 'https://ror.org/02szepc22', 'en', 1, 'https://ror.org/02szepc22 Suzhou Institute of Systems Medicine č‹å·žåø‚ē³»ē»ŸåŒ»å­¦ē ”ē©¶ę‰€'),
(63077, 'https://ror.org/02cabnz35', 'no_lang_code', 1, 'https://ror.org/02cabnz35 Elytt Energy (Spain)'),
(63078, 'https://ror.org/02zmk8084', 'en', 1, 'https://ror.org/02zmk8084 John von Neumann Institute for Computing John von Neumann-Institut für Computing'),
(63079, 'https://ror.org/03n9kt276', 'en', 1, 'https://ror.org/03n9kt276 The Audience Agency'),
(63080, 'https://ror.org/003xptq40', 'no_lang_code', 1, 'https://ror.org/003xptq40 Ex-Polon Kwieciński Fornalski Spółka Cywilna (Poland)'),
(63081, 'https://ror.org/05h63pk13', 'en', 1, 'https://ror.org/05h63pk13 Baltic and International Maritime Council'),
(63082, 'https://ror.org/0079vgv93', 'en', 1, 'https://ror.org/0079vgv93 Edwards Air Force Base'),
(63083, 'https://ror.org/01hpfvd96', 'no_lang_code', 1, 'https://ror.org/01hpfvd96 Unilever (Australia)'),
(63084, 'https://ror.org/043smqe02', 'no_lang_code', 1, 'https://ror.org/043smqe02 Unilever (Indonesia)'),
(63085, 'https://ror.org/04r3tf602', 'no_lang_code', 1, 'https://ror.org/04r3tf602 Joshua Mqabuko Nkomo Polytechnic'),
(63086, 'https://ror.org/00p5h5h82', 'en', 1, 'https://ror.org/00p5h5h82 ELI-HU Research and Development Non-Profit'),
(63087, 'https://ror.org/01dt03b80', 'no_lang_code', 1, 'https://ror.org/01dt03b80 Unilever (Japan)'),
(63088, 'https://ror.org/02fnwm920', 'en', 1, 'https://ror.org/02fnwm920 Conference Board'),
(63089, 'https://ror.org/00d96ax77', 'en', 1, 'https://ror.org/00d96ax77 An Roinn Iompair, Turasóireachta agus Spóirt Department of Transport, Tourism and Sport'),
(63090, 'https://ror.org/055e0ds53', 'en', 1, 'https://ror.org/055e0ds53 Electoral Commission'),
(63091, 'https://ror.org/00vvey578', 'en', 1, 'https://ror.org/00vvey578 Taiya Inlet Watershed Council'),
(63092, 'https://ror.org/02z7d4y66', 'no_lang_code', 1, 'https://ror.org/02z7d4y66 Keylane (Netherlands)'),
(63093, 'https://ror.org/02gteh527', 'en', 1, 'https://ror.org/02gteh527 European Mentoring Coaching Council'),
(63094, 'https://ror.org/05azkwn61', 'en', 1, 'https://ror.org/05azkwn61 National Board of Customs Tullihallitus'),
(63095, 'https://ror.org/0593bs311', 'en', 1, 'https://ror.org/0593bs311 Vernadsky National Library of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° бібліотека України імені Š’. І. Š’ŠµŃ€Š½Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(63096, 'https://ror.org/025yhyr08', 'en', 1, 'https://ror.org/025yhyr08 Directorate of Fisheries Fiskistofa'),
(63097, '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ığı'),
(63098, 'https://ror.org/02qhbts44', 'en', 1, 'https://ror.org/02qhbts44 Vernadsky State Geological Museum Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Геологический Музей им. Š’.И. ВернаГского Š ŠŠ'),
(63099, 'https://ror.org/03x542r19', 'en', 1, 'https://ror.org/03x542r19 Business France'),
(63100, 'https://ror.org/055sgbp02', 'en', 1, 'https://ror.org/055sgbp02 Live Art Development Agency'),
(63101, 'https://ror.org/007wym039', 'en', 1, 'https://ror.org/007wym039 Henan University of Engineering ę²³å—å·„ēØ‹å­¦é™¢'),
(63102, 'https://ror.org/03cznfh76', 'en', 1, 'https://ror.org/03cznfh76 London Mathematical Laboratory'),
(63103, 'https://ror.org/02f83md58', 'en', 1, 'https://ror.org/02f83md58 Zhejiang Library ęµ™ę±Ÿå›¾ä¹¦é¦†'),
(63104, 'https://ror.org/03t25gb93', 'en', 1, 'https://ror.org/03t25gb93 Pamiatkový úrad Slovenskej republiky The Monuments Board of the Slovak Republic'),
(63105, 'https://ror.org/0384jmk48', 'en', 1, 'https://ror.org/0384jmk48 Citizens Advice'),
(63106, 'https://ror.org/01jq9hd27', 'sv', 1, 'https://ror.org/01jq9hd27 National Agency for Special Needs Education and Schools Specialpedagogiska Skolmyndigheten'),
(63107, 'https://ror.org/00sd4s212', 'fr', 1, 'https://ror.org/00sd4s212 Institut SupĆ©rieur des Ɖtudes Technologiques de Nabeul المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© ŲØŲŖŲ§ŲØŁ„'),
(63108, 'https://ror.org/008gn7430', 'en', 1, 'https://ror.org/008gn7430 Environment Agency of Iceland Umhverfisstofnun'),
(63109, 'https://ror.org/02a3p3j66', 'en', 1, 'https://ror.org/02a3p3j66 Institute for Creation Research'),
(63110, 'https://ror.org/0336k1122', 'en', 1, 'https://ror.org/0336k1122 The Reading Agency'),
(63111, 'https://ror.org/05xnfc553', 'ro', 1, 'https://ror.org/05xnfc553 Colegiul National Mihai Eminescu'),
(63112, 'https://ror.org/01jt38m64', 'en', 1, 'https://ror.org/01jt38m64 Institute for Energetics and Interphases Istituto per Energetica e Interfasi'),
(63113, 'https://ror.org/033z65h39', 'en', 1, 'https://ror.org/033z65h39 Ministry of Higher and Tertiary Education'),
(63114, 'https://ror.org/021z1mz76', 'en', 1, 'https://ror.org/021z1mz76 Institute of Organic Synthesis and Photoreactivity Istituto di Sintesi Organica e FotoreattivitĆ '),
(63115, 'https://ror.org/05hky6p02', 'en', 1, 'https://ror.org/05hky6p02 Institute of Atmospheric Pollution Research Istituto sull’Inquinamento Atmosferico'),
(63116, 'https://ror.org/059jjdh21', 'en', 1, 'https://ror.org/059jjdh21 Nanjing Boiler and Pressure Vessel Inspection Institute å—äŗ¬åø‚é”…ē‚‰åŽ‹åŠ›å®¹å™Øę£€éŖŒē ”ē©¶é™¢'),
(63117, 'https://ror.org/00rtmek18', 'no_lang_code', 1, 'https://ror.org/00rtmek18 Nobel Academy'),
(63118, 'https://ror.org/04570m236', 'en', 1, 'https://ror.org/04570m236 Landsbókasafn ƍslands HĆ”skólabókasafn National and University Library of Iceland'),
(63119, 'https://ror.org/01vn81v55', 'no_lang_code', 1, 'https://ror.org/01vn81v55 Numina Group (United States)'),
(63120, 'https://ror.org/030qwwd12', 'no_lang_code', 1, 'https://ror.org/030qwwd12 The Springboard Consultancy (United Kingdom)'),
(63121, 'https://ror.org/05hadht38', 'no_lang_code', 1, 'https://ror.org/05hadht38 National Informatics Corporation (Iran) ي ؓرکت Ł…Ł„ŁŠ Ų§Ł†ŁŁˆŲ±Ł…Ų§ŲŖŁŠŚ©'),
(63122, 'https://ror.org/02qh6my57', 'en', 1, 'https://ror.org/02qh6my57 Skogsstyrelsen Swedish Forest Agency'),
(63123, 'https://ror.org/05941t046', 'en', 1, 'https://ror.org/05941t046 Cymdeithas Llywodraeth Leol Cymru Welsh Local Government Association'),
(63124, 'https://ror.org/006npbt15', 'en', 1, 'https://ror.org/006npbt15 Veterinaar- ja Toiduamet Veterinary and Food Board'),
(63125, 'https://ror.org/03dn9ew70', 'en', 1, 'https://ror.org/03dn9ew70 WAMITAB'),
(63126, 'https://ror.org/00k852a29', 'en', 1, 'https://ror.org/00k852a29 West Virginia Division of Natural Resources'),
(63127, 'https://ror.org/016jvwb81', 'no_lang_code', 1, 'https://ror.org/016jvwb81 Octoly (France)'),
(63128, 'https://ror.org/02ammvg77', 'en', 1, 'https://ror.org/02ammvg77 Westminster Schools'),
(63129, 'https://ror.org/03dzbma55', 'en', 1, 'https://ror.org/03dzbma55 Western Development Commission'),
(63130, 'https://ror.org/03b8swz18', 'de', 1, 'https://ror.org/03b8swz18 Thüringer Ministerium für Umwelt, Energie und Naturschutz'),
(63131, 'https://ror.org/005781837', 'en', 1, 'https://ror.org/005781837 Water Board of Lemesos Ī£Ļ…Ī¼Ī²ĪæĻĪ»Ī¹Īæ ΄Γατοπρομήθειας Ī›ĪµĪ¼ĪµĻƒĪæĻ'),
(63132, 'https://ror.org/02ssta106', 'en', 1, 'https://ror.org/02ssta106 CỄc ThĆŗ y Việt Nam Department of Animal Health'),
(63133, 'https://ror.org/038dn8481', 'en', 1, 'https://ror.org/038dn8481 United Nations Economic Commission for Europe'),
(63134, 'https://ror.org/04z3rz137', 'no_lang_code', 1, 'https://ror.org/04z3rz137 ANKO (Greece) Αναπτυξιακή Δυτικής ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(63135, 'https://ror.org/05n4dxt42', 'en', 1, 'https://ror.org/05n4dxt42 Wayne-Finger Lakes BOCES'),
(63136, 'https://ror.org/0112jky20', 'en', 1, 'https://ror.org/0112jky20 Vilnius City Municipality Administration'),
(63137, 'https://ror.org/00nczhw32', 'en', 1, 'https://ror.org/00nczhw32 Municipal Enterprise for Social Development Trikalon Ī”Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ· ĪšĪ±Ī»Ī±Ī¼Ļ€Ī¬ĪŗĪ±Ļ‚ 28 & Αμπάτη Τρίκαλα,'),
(63138, 'https://ror.org/01ppbq689', 'no_lang_code', 1, 'https://ror.org/01ppbq689 WEBAGENCY E-Commerce (Germany)'),
(63139, 'https://ror.org/015ggv447', 'en', 1, 'https://ror.org/015ggv447 United Nations Economic Commission for Latin America and the Caribbean'),
(63140, 'https://ror.org/02x76rz89', 'en', 1, 'https://ror.org/02x76rz89 United States Anti-Doping Agency'),
(63141, 'https://ror.org/002gcqm12', 'en', 1, 'https://ror.org/002gcqm12 State Tax Inspectorate Valstybinė Mokesčių Inspekcija'),
(63142, 'https://ror.org/03x35bg73', 'en', 1, 'https://ror.org/03x35bg73 Wyoming Department of Agriculture'),
(63143, 'https://ror.org/04crq6e59', 'en', 1, 'https://ror.org/04crq6e59 State Consumer Rights Protection Authority Valstybinė ne maisto Produktų Inspekcija prie ÅŖkio Ministerijos'),
(63144, 'https://ror.org/02a7e9x96', 'en', 1, 'https://ror.org/02a7e9x96 Federation of German Consumer Organisations Verbraucherzentrale Bundesverband'),
(63145, 'https://ror.org/034kzpn81', 'en', 1, 'https://ror.org/034kzpn81 Vermont Department of Libraries'),
(63146, 'https://ror.org/01xa8e295', 'en', 1, 'https://ror.org/01xa8e295 An Bord Ɓrachais SlƔinte ShaorƔlaigh Vhi Healthcare'),
(63147, 'https://ror.org/04kd20m98', 'en', 1, 'https://ror.org/04kd20m98 Department for Economic Affairs Volkswirtschaftsdirektion'),
(63148, 'https://ror.org/03hcmsw69', 'en', 1, 'https://ror.org/03hcmsw69 Cardiff Tourist Information Centre'),
(63149, 'https://ror.org/03y008h18', 'en', 1, 'https://ror.org/03y008h18 Vermont Judiciary'),
(63150, 'https://ror.org/04z4pf693', 'en', 1, 'https://ror.org/04z4pf693 Sholem Aleichem Amur State University ŠŸŃ€ŠøŠ°Š¼ŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шолом-Алейхема'),
(63151, 'https://ror.org/024nvcs33', 'en', 1, 'https://ror.org/024nvcs33 Military Space Academy named after AF Mozhaisky Военно-ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени А. Ф. Можайского'),
(63152, 'https://ror.org/058t7m662', 'en', 1, 'https://ror.org/058t7m662 Ivanovo State Polytechnic University Ивановского Š³Š¾ŃŃƒŠ“арственного политехнического ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š°'),
(63153, 'https://ror.org/04c7f6285', 'en', 1, 'https://ror.org/04c7f6285 Irkutsk State Agrarian University named after A.A. Ezhevsky Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А.А. Ежевского'),
(63154, 'https://ror.org/0548hz093', 'en', 1, 'https://ror.org/0548hz093 Russian State Agrarian Correspondence University Российский Š³Š¾ŃŃƒŠ“арственный аграрный заочный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(63155, 'https://ror.org/01c75js78', 'en', 1, 'https://ror.org/01c75js78 Military Academy of Radiation, Chemical and Biological Protection Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ раГиационной, химической Šø биологической защиты'),
(63156, 'https://ror.org/05xb0z813', 'en', 1, 'https://ror.org/05xb0z813 Government Vidarbha Institute of Science and Humanities'),
(63157, 'https://ror.org/00r0vv945', 'en', 1, 'https://ror.org/00r0vv945 Voronezh State University of Forestry and Technologies Воронежский Š³Š¾ŃŃƒŠ“арственный лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š“.ф. ŠœŠ¾Ń€Š¾Š·Š¾Š²Š°'),
(63158, 'https://ror.org/03gwmvd28', 'en', 1, 'https://ror.org/03gwmvd28 The Caspian Scientific Research Institute of Arid Aarming ŠŸŃ€ŠøŠŗŠ°ŃŠæŠøŠ¹ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ариГного Š·ŠµŠ¼Š»ŠµŠ“ŠµŠ»ŠøŃ'),
(63159, 'https://ror.org/02wj1da11', 'en', 1, 'https://ror.org/02wj1da11 Dagestan Scientific Research Institute of Agriculture Named After F.G. Kysriev Š¤Š“Š‘ŠŠ£ Š”ŠŠ“Š•Š”Š¢ŠŠŠ”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š”Š•Š›Š¬Š”ŠšŠžŠ“Šž Š„ŠžŠ—ŠÆŠ™Š”Š¢Š’Š Š˜ŠœŠ•ŠŠ˜ Ф.Š“.ŠšŠ˜Š”Š Š˜Š•Š’Š'),
(63160, 'https://ror.org/01yetjs28', 'en', 1, 'https://ror.org/01yetjs28 Kirov Research Institute of Hematology and Blood Transfusion FMBA ŠšŠøŃ€Š¾Š²ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гематологии Šø ŠæŠµŃ€ŠµŠ»ŠøŠ²Š°Š½ŠøŃ крови Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(63161, 'https://ror.org/027g7ga88', 'en', 1, 'https://ror.org/027g7ga88 All-Russian Research Institute Gradient Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «ГраГиент»'),
(63162, 'https://ror.org/0219db520', 'en', 1, 'https://ror.org/0219db520 All-Russian Research Institute "Signal" Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «Дигнал»'),
(63163, 'https://ror.org/048tmw498', 'no_lang_code', 1, 'https://ror.org/048tmw498 Viogem Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¾ŃŃƒŃˆŠµŠ½ŠøŃŽ месторожГений полезных ископаемых, защите инженерных ŃŠ¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠ¹ от Š¾Š±Š²Š¾Š“Š½ŠµŠ½ŠøŃ, ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Ń‹Š¼ горным работам, геомеханике, геофизике, гиГротехнике, геологии Šø Š¼Š°Ń€ŠŗŃˆŠµŠ¹Š“ŠµŃ€ŃŠŗŠ¾Š¼Ńƒ Гелу'),
(63164, 'https://ror.org/04qpssw85', 'en', 1, 'https://ror.org/04qpssw85 State Research Center of the Russian Federation Š¦ŠŠ˜Š˜ Электроприбор'),
(63165, 'https://ror.org/058awzy03', 'en', 1, 'https://ror.org/058awzy03 Scientific Research Institute of Flax Mechanization Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Š²Š¾Š·Š“ŠµŠ»Ń‹Š²Š°Š½ŠøŃ льна'),
(63166, 'https://ror.org/03d9hbb17', 'en', 1, 'https://ror.org/03d9hbb17 All-Russian Research Institute of Brewing, Non-Alcoholic and Wine Industry Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŸŠøŠ²Š¾Š²Š°Ń€ŠµŠ½Š½Š¾Š¹, Š‘ŠµŠ·Š°Š»ŠŗŠ¾Š³Š¾Š»ŃŒŠ½Š¾Š¹ И Š’ŠøŠ½Š¾Š“ŠµŠ»ŃŒŃ‡ŠµŃŠŗŠ¾Š¹ ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63167, 'https://ror.org/05hf6yg30', 'no_lang_code', 1, 'https://ror.org/05hf6yg30 Central Research Institute for Special Machinery (Russia) Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(63168, 'https://ror.org/00g98sq23', 'en', 1, 'https://ror.org/00g98sq23 Central Research Institute of Communications'),
(63169, '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"'),
(63170, 'https://ror.org/035198g37', 'en', 1, 'https://ror.org/035198g37 All-Russian Scientific Research Institute of Floriculture and Subtropical Crops Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цветовоГства Šø ŃŃƒŠ±Ń‚Ń€Š¾ŠæŠøŃ‡ŠµŃŠŗŠøŃ… ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€'),
(63171, 'https://ror.org/039zvkm26', 'en', 1, 'https://ror.org/039zvkm26 Central Scientific Research Institute of Geology of Non-metallic Minerals'),
(63172, 'https://ror.org/00sn3eq47', 'en', 1, 'https://ror.org/00sn3eq47 All-Russian Horticultural Institute for Breeding, Agrotechnology and Nursery Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ Š”Š•Š›Š•ŠšŠ¦Š˜ŠžŠŠŠž-Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š”ŠŠ”ŠžŠ’ŠžŠ”Š”Š¢Š’Š И ŠŸŠ˜Š¢ŠžŠœŠŠ˜ŠšŠžŠ’ŠžŠ”Š”Š¢Š’Š'),
(63173, 'https://ror.org/02s6y7k21', 'en', 1, 'https://ror.org/02s6y7k21 Central Research Institute of Materials Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ материалов'),
(63174, 'https://ror.org/03sgkc956', 'en', 1, 'https://ror.org/03sgkc956 All-Russian Rice Research Institute Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ риса'),
(63175, 'https://ror.org/05rbhdv87', 'en', 1, 'https://ror.org/05rbhdv87 Central Scientific Research Institute of Measuring Equipment Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ˜Š˜ ŠøŠ·Š¼ŠµŃ€ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ Š°ŠæŠæŠ°Ń€Š°Ń‚ŃƒŃ€Ń‹'),
(63176, 'https://ror.org/007d31z96', 'no_lang_code', 1, 'https://ror.org/007d31z96 All-Russian Institute of Light Alloys (Russia) Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лёгких сплавов Ā«Š’Š˜Š›Š”Ā»'),
(63177, 'https://ror.org/05hrf7s75', 'en', 1, 'https://ror.org/05hrf7s75 All-Russian State Scientific Research Institute for Control, Standardization and Certification of Veterinary Preparations Всероссийский Š³Š¾ŃŃƒŠ“арственный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»Ń, станГартизации Šø сертификации ветеринарных препаратов'),
(63178, 'https://ror.org/00g2rx327', 'en', 1, 'https://ror.org/00g2rx327 All-Russian Research and Design Institute of Metallurgical Engineering Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(63179, 'https://ror.org/04z4kzf83', 'no_lang_code', 1, 'https://ror.org/04z4kzf83 A.P. Krylov All-Russian Oil and Gas Research Institute (Russia) Акционерное общество «Всероссийский нефтегазовый Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени акаГемика А.П. ŠšŃ€Ń‹Š»Š¾Š²Š°Ā»'),
(63180, 'https://ror.org/03g7p4332', 'no_lang_code', 1, 'https://ror.org/03g7p4332 Geologorazvedka (Russia) ГеологоразвеГка'),
(63181, 'https://ror.org/00n99mq57', 'en', 1, 'https://ror.org/00n99mq57 Siberian Research, Design and Design Institute of Aluminum and Electrode Industry Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Š»ŃŽŠ¼ŠøŠ½ŠøŠµŠ²Š¾Š¹ Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š“Š½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63182, 'https://ror.org/02ye0gt70', 'en', 1, 'https://ror.org/02ye0gt70 All-Russian Research Institute of Chemical Technology Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической технологии'),
(63183, '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 Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГротехники Šø мелиорации имени А. Š. ŠšŠ¾ŃŃ‚ŃŠŗŠ¾Š²Š°'),
(63184, 'https://ror.org/02w6cg233', 'en', 1, 'https://ror.org/02w6cg233 Central Research Institute of Building Constructions named after VA Kucherenko Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ†ŠøŠ¹ имени Š’.А. ŠšŃƒŃ‡ŠµŃ€ŠµŠ½ŠŗŠ¾'),
(63185, 'https://ror.org/02dnrfk87', 'en', 1, 'https://ror.org/02dnrfk87 Chechen Scientific Research Institute of Agriculture Чеченский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63186, 'https://ror.org/059p3be55', 'en', 1, 'https://ror.org/059p3be55 All-Russian Research and Design Institute of Hard Alloys and Refractory Metals Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ тверГых сплавов Šø Ń‚ŃƒŠ³Š¾ŠæŠ»Š°Š²ŠŗŠøŃ… металлов'),
(63187, 'https://ror.org/04n6ern89', 'no_lang_code', 1, 'https://ror.org/04n6ern89 Concern Energomera (Russia)'),
(63188, 'https://ror.org/02s5nq722', 'en', 1, 'https://ror.org/02s5nq722 All-Russian Research Institute of Relay Engineering Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ релейной инженерии'),
(63189, 'https://ror.org/04nsjct52', 'no_lang_code', 1, 'https://ror.org/04nsjct52 VNIIPelkhozkhim Š ŃŠ·Š°Š½Šø был организован Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по технологии Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠµ Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ в сельском Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Šµ Š¼ŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Ń‹Ń… ŃƒŠ“Š¾Š±Ń€ŠµŠ½ŠøŠ¹ Šø химических среГств защиты растений'),
(63190, 'https://ror.org/03cmpa045', 'en', 1, 'https://ror.org/03cmpa045 Altai Scientific Research Institute of Machine Building Technology Алтайский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технологии Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(63191, 'https://ror.org/0529wwy54', 'en', 1, 'https://ror.org/0529wwy54 Institute of New Carbon Materials and Technologies'),
(63192, 'https://ror.org/03mjn8x60', 'en', 1, 'https://ror.org/03mjn8x60 Moscow Scientific-Research Television Institute Московский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ телевизионный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63193, 'https://ror.org/00g473r84', 'en', 1, 'https://ror.org/00g473r84 All-Russian Scientific Research Institute of Livestock Mechanization Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации животновоГства'),
(63194, 'https://ror.org/05agwvf41', 'en', 1, 'https://ror.org/05agwvf41 All-Union Scientific Research Institute of Woodworking Industry Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“ŠµŃ€ŠµŠ²Š¾Š¾Š±Ń€Š°Š±Š°Ń‚Ń‹Š²Š°ŃŽŃ‰ŠµŠ¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63195, 'https://ror.org/02d4waw41', 'no_lang_code', 1, 'https://ror.org/02d4waw41 Lirsot (Russia) Лирсот'),
(63196, 'https://ror.org/01zzk8a60', 'no_lang_code', 1, 'https://ror.org/01zzk8a60 Instorff (Russia) Š˜Š½ŃŃ‚Š¾Ń€Ń„Š°'),
(63197, 'https://ror.org/02gqm6h10', 'no_lang_code', 1, 'https://ror.org/02gqm6h10 Centerprogramsystems Центрпрограммсистем'),
(63198, 'https://ror.org/008khgq16', 'no_lang_code', 1, 'https://ror.org/008khgq16 Integra (Russia) Š’ŠŠ˜Š˜Š‘Š¢-Š‘ŃƒŃ€Š¾Š²Š¾Š¹ ŠøŠ½ŃŃ‚Ń€ŃƒŠ¼ŠµŠ½Ń‚'),
(63199, 'https://ror.org/05pntjg19', 'en', 1, 'https://ror.org/05pntjg19 Amur Scientific Center ŠŠ¼ŃƒŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(63200, 'https://ror.org/01wxbtj35', 'en', 1, 'https://ror.org/01wxbtj35 All-Russian Scientific Research Institute of Butter and Cheese Making Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃŠ»Š¾Š“ŠµŠ»ŠøŃ Šø ŃŃ‹Ń€Š¾Š“ŠµŠ»ŠøŃ'),
(63201, 'https://ror.org/035397c59', 'en', 1, 'https://ror.org/035397c59 Atlantic Research Institute of Fisheries and Oceanography Атлантический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø океанографии'),
(63202, 'https://ror.org/01859cw58', 'en', 1, 'https://ror.org/01859cw58 All-Russian Research Institute of Civil Defense Š’ŃŠµŃŠ¾ŃŽŠ·Š½Š¾Š³Š¾ ŠŠ˜Š˜ гражГанской обороны'),
(63203, 'https://ror.org/01zaaey39', 'no_lang_code', 1, 'https://ror.org/01zaaey39 Interregional Open Social Institute ŠœŠµŠ¶Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ открытый ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63204, 'https://ror.org/00ag0hf75', 'en', 1, 'https://ror.org/00ag0hf75 Diagnostic and Prevention Research Institute for Human and Animal Diseases ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гиагностики Šø профилактики болезней человека Šø животных'),
(63205, 'https://ror.org/02bwjed35', 'en', 1, 'https://ror.org/02bwjed35 Central Design and Technology Institute of Valve Construction Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Ń€Š¼Š°Ń‚ŃƒŃ€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(63206, 'https://ror.org/02a71hb33', 'en', 1, 'https://ror.org/02a71hb33 Azov Scientific Research Institute of Fisheries Азовский ŠŠ˜Š˜ Рыбного Š„Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63207, 'https://ror.org/00rejsz57', 'en', 1, 'https://ror.org/00rejsz57 All-Russian Scientific and Research Institute of Brucellosis and Tuberculosis of Animals Всеросcийский Š½Š°ŃƒŃ‡Š½Š¾-исcŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š±Ń€ŃƒŃ†ŠµŠ»Š»ŠµŠ·Š° Šø Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»ŠµŠ·Š° животных');
INSERT INTO `rors` VALUES
(63208, 'https://ror.org/04skssb35', 'en', 1, 'https://ror.org/04skssb35 The Federal State Budgetary Scientific Institution "Izmerov Research Institute of Occupational Health" Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицины Ń‚Ń€ŃƒŠ“Š° имени акаГемика Š.Ф. Š˜Š·Š¼ŠµŃ€Š¾Š²Š°Ā»'),
(63209, 'https://ror.org/05bbfjb19', 'en', 1, 'https://ror.org/05bbfjb19 Balakovo Engineering and Technology Institute Балаковский инженерно-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63210, '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 РУП Ā«ŠŠ°ŃƒŃ‡Š½Š¾-практический центр ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø по Š¶ŠøŠ²Š¾Ń‚Š½Š¾Š²Š¾Š“ŃŃ‚Š²ŃƒĀ»'),
(63211, 'https://ror.org/00nz1s384', 'no_lang_code', 1, 'https://ror.org/00nz1s384 Belorusneft (Belarus) Š‘ŠµŠ»Š¾Ń€ŃƒŃŠ½ŠµŃ„Ń‚ŃŒ'),
(63212, 'https://ror.org/04xkyrk98', 'no_lang_code', 1, 'https://ror.org/04xkyrk98 OJSC VNIIST (Russia) Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Ńƒ Šø ŃŠŗŃŠæŠ»ŃƒŠ°Ń‚Š°Ń†ŠøŠø Ń‚Ń€ŃƒŠ±Š¾ŠæŃ€Š¾Š²Š¾Š“Š¾Š², Š¾Š±ŃŠŠµŠŗŃ‚Š¾Š²'),
(63213, 'https://ror.org/03xygbe46', 'en', 1, 'https://ror.org/03xygbe46 All-Russian Research Institute for Silviculture and Mechanization of Forestry ФБУ Š’ŠŠ˜Š˜Š›Šœ'),
(63214, 'https://ror.org/00f11nx42', 'no_lang_code', 1, 'https://ror.org/00f11nx42 Belmehanobchermet (Russia)'),
(63215, 'https://ror.org/05jct2b89', 'en', 1, 'https://ror.org/05jct2b89 Ekaterinburg Research Institute of Viral Infections Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠŠ˜Š˜ Š²ŠøŃ€ŃƒŃŠ½Ń‹Ń… инфекций'),
(63216, 'https://ror.org/02xshzv74', 'en', 1, 'https://ror.org/02xshzv74 Kazan Research Institute of Epidemiology and Microbiology'),
(63217, 'https://ror.org/05pgmek29', 'en', 1, 'https://ror.org/05pgmek29 Nizhny Tagil Institute for Testing Metals ŠŠøŠ¶Š½ŠµŃ‚Š°Š³ŠøŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠæŃ‹Ń‚Š°Š½ŠøŃ металлов'),
(63218, 'https://ror.org/05fhdzx69', 'en', 1, 'https://ror.org/05fhdzx69 Federal Scientific Agroengineering Center VIM Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ агроинженерный центр Š’Š˜Šœ"'),
(63219, 'https://ror.org/00gxxdv05', 'en', 1, 'https://ror.org/00gxxdv05 Nizhniy Novgorod Research Institute of Epidemiology and Microbiology named after Academician I.N. Blokhina АкаГемик И.Š. Блохина ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(63220, 'https://ror.org/01cj7ev47', 'en', 1, 'https://ror.org/01cj7ev47 All-Russian Research Institute of Reclaimed Lands Всероссийский ŠŠ˜Š˜ мелиорированных земель'),
(63221, 'https://ror.org/0191ymw19', 'en', 1, 'https://ror.org/0191ymw19 Russian Scientific Research Neurosurgical Institute Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. проф. А.Š›. Поленова'),
(63222, 'https://ror.org/015peq218', 'en', 1, 'https://ror.org/015peq218 Omsk Research Institute of Natural Focal Infections ŠžŠ¼ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ естественных очаговых инфекций'),
(63223, 'https://ror.org/00dqsh274', 'en', 1, 'https://ror.org/00dqsh274 Research Institute of Agriculture of Crimea ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° ŠšŃ€Ń‹Š¼Š°'),
(63224, 'https://ror.org/02y0e7413', 'en', 1, 'https://ror.org/02y0e7413 Scientific Research Institute of Biochemistry ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии'),
(63225, 'https://ror.org/0160dkh89', 'en', 1, 'https://ror.org/0160dkh89 All-Russian Research Institute of Biological Plant Protection Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š‘Š˜ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠžŠ™ Š—ŠŠ©Š˜Š¢Š« Š ŠŠ”Š¢Š•ŠŠ˜Š™'),
(63226, 'https://ror.org/04kg4fr36', 'en', 1, 'https://ror.org/04kg4fr36 Saint-Petersburg Research Institute of Ear, Throat, Nose and Speech Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠŠ˜Š˜ ŃƒŃ…Š°, горла, носа Šø речи'),
(63227, 'https://ror.org/027cccy65', 'en', 1, 'https://ror.org/027cccy65 All-Russian Scientific Research Institute of Refrigeration Industry Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ЄолоГильной ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63228, 'https://ror.org/01mp7gg57', 'en', 1, 'https://ror.org/01mp7gg57 All-Russian Scientific Research Institute of Irrigation and Agricultural Water Supply "Raduga" Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Ń€Š¾ŃˆŠµŠ½ŠøŃ Šø ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š²Š¾Š“Š¾ŃŠ½Š°Š±Š¶ŠµŠ½ŠøŃ «РаГуга»'),
(63229, 'https://ror.org/035w30858', 'en', 1, 'https://ror.org/035w30858 Kaliningrad Frontier Institute of the Federal Security Service of Russia ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“ŃŠŗŠøŠ¹ пограничный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ФДБ России'),
(63230, 'https://ror.org/00shp5f66', 'en', 1, 'https://ror.org/00shp5f66 Saratov Research Institute of Traumatology and Orthopedics Даратовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии'),
(63231, 'https://ror.org/04rnk3y84', 'en', 1, 'https://ror.org/04rnk3y84 All-Russian Scientific Research Institute of Experimental Veterinary Sciences. Ya.R. Kovalenko Š¤Š“Š‘ŠŠ£ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ ветеринарии им. ŠÆ.Š . Коваленко'),
(63232, 'https://ror.org/02k9pct19', 'en', 1, 'https://ror.org/02k9pct19 Institute of Physiology, Komi Science Center Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¹ физиологии Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ'),
(63233, 'https://ror.org/00a5fnb74', 'en', 1, 'https://ror.org/00a5fnb74 Perm Military Institute ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ военный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63234, 'https://ror.org/01fz81h65', 'en', 1, 'https://ror.org/01fz81h65 Dagestan Scientific Center of the Russian Academy of Sciences Дагестанский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук'),
(63235, 'https://ror.org/054ep4r90', 'en', 1, 'https://ror.org/054ep4r90 Federal Scientific Center for Feed Production and Agroecology named after V.R. Williams Всероссийский ŠŠ˜Š˜ кормов имени Š’. Š . Š’ŠøŠ»ŃŒŃŠ¼ŃŠ°'),
(63236, 'https://ror.org/02ftn0461', 'en', 1, 'https://ror.org/02ftn0461 Ryazan Higher Airborne Command School named after. V. F. Margelov Š ŃŠ·Š°Š½ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ возГушно-Гесантное команГное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ им. Š’. Ф. ŠœŠ°Ń€Š³ŠµŠ»Š¾Š²'),
(63237, '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 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Šø Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(63238, 'https://ror.org/05y57mm42', 'en', 1, 'https://ror.org/05y57mm42 All-Russian Scientific Research Institute of Flax Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ льна'),
(63239, 'https://ror.org/048kbkr42', 'en', 1, 'https://ror.org/048kbkr42 Federal Service for Technical and Export Control Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба по Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ¾Š¼Ńƒ Šø ŃŠŗŃŠæŠ¾Ń€Ń‚Š½Š¾Š¼Ńƒ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŽ'),
(63240, 'https://ror.org/003gcpg05', 'en', 1, 'https://ror.org/003gcpg05 Institute of Superhigh-Frequency Semiconductor Electronics of the Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ микроволновой ŠæŠ¾Š»ŃƒŠæŃ€Š¾Š²Š¾Š“Š½ŠøŠŗŠ¾Š²Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø Š ŠŠ'),
(63241, 'https://ror.org/029dhqq81', 'en', 1, 'https://ror.org/029dhqq81 All-Russian Research Institute of Food Additives Всероссийский ŠŠ˜Š˜ пищевых Гобавок'),
(63242, 'https://ror.org/01dwpz371', 'en', 1, 'https://ror.org/01dwpz371 All-Russian Scientific Research Institute of Grain and Products of its Processing Всероссийский ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Зерна Šø ŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š² его переработки'),
(63243, 'https://ror.org/0019q7242', 'en', 1, 'https://ror.org/0019q7242 Ural Scientific Research Institute of Dermatovenerology and Immunopathology'),
(63244, 'https://ror.org/04vdhyw52', 'en', 1, 'https://ror.org/04vdhyw52 All-Russian Scientific Research Institute of high-frequency currents named after VP Vologdin ā€œŠ’ŃŠµŃ€Š¾ŃŃŠøŠ¹ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ токов высокой Ń‡Š°ŃŃ‚Š¾Ń‚Ń‹ā€ им. Š’.П. ВологГина'),
(63245, 'https://ror.org/04m8qbk11', 'en', 1, 'https://ror.org/04m8qbk11 Urals Research Institute for the Protection of Maternity and Infancy Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠŠ˜Š˜ охраны материнства Šø млаГенчества'),
(63246, 'https://ror.org/00vgqhr90', 'en', 1, 'https://ror.org/00vgqhr90 Federal State Budgetary Scientific Institution Caspian Fisheries Research Institute Дагестанский филиал Š¤Š“Š‘ŠŠ£ Каспийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63247, 'https://ror.org/053e3ts04', 'en', 1, 'https://ror.org/053e3ts04 Research Institute of Problems of Storage Rosrezerva ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ агентства по Š³Š¾ŃŃƒŠ“арственным резервам'),
(63248, 'https://ror.org/04fak9718', 'en', 1, 'https://ror.org/04fak9718 All-Russian Scientific - Research Institute of Horse Breeding Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коневоГства'),
(63249, 'https://ror.org/00y245p24', 'en', 1, 'https://ror.org/00y245p24 Ural Institute of Traumatology and Orthopedics named after V.D. Chaklin Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии имени Š’.Š”. Чаклина'),
(63250, 'https://ror.org/01kbeda11', 'en', 1, 'https://ror.org/01kbeda11 Rostov-on-Don Research Institute of Radio Communications Š ŠžŠ”Š¢ŠžŠ’Š”ŠšŠ˜Š™-ŠŠ-Š”ŠžŠŠ£ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š ŠŠ”Š˜ŠžŠ”Š’ŠÆŠ—Š˜'),
(63251, 'https://ror.org/01q4rp502', 'en', 1, 'https://ror.org/01q4rp502 All-Russian Scientific Research Institute of Hydrocarbon Raw Materials Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠ³Š»ŠµŠ²Š¾Š“Š¾Ń€Š¾Š“Š½Š¾Š³Š¾ сырья'),
(63252, 'https://ror.org/057n4jt40', 'en', 1, 'https://ror.org/057n4jt40 All-Russian Scientific Research Institute for Irrigated Agriculture'),
(63253, 'https://ror.org/001e26h79', 'en', 1, 'https://ror.org/001e26h79 All-Russian Scientific Research Institute of Soybean Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сои'),
(63254, 'https://ror.org/025g2vb69', 'en', 1, 'https://ror.org/025g2vb69 All-Russian Research Institute of Irrigation Vegetable and Melon Crops Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Ń€Š¾ŃˆŠ°ŠµŠ¼Š¾Š³Š¾ овощевоГства Šø бахчевоГства'),
(63255, 'https://ror.org/03ad6jw85', 'en', 1, 'https://ror.org/03ad6jw85 State Research Institute of Highly Pure Biopreparations Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾ā€‘ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ особо чистых биопрепаратов'),
(63256, 'https://ror.org/0058b2697', 'en', 1, 'https://ror.org/0058b2697 All-Russian Scientific Research Institute of Lupine Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š»ŃŽŠæŠøŠ½Š°'),
(63257, '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'),
(63258, 'https://ror.org/04c31he75', 'en', 1, 'https://ror.org/04c31he75 Central Research Institute of Starch-and-Vaccine Industry and Non-Carrageenaceous Saccharose Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ крахмала'),
(63259, 'https://ror.org/04wsa7713', 'en', 1, 'https://ror.org/04wsa7713 All-Russian Scientific-Research Institute Of Mineral Resources named after N.M. Fedorovsky Всероссийский ŠŠ˜Š˜ Š¼ŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ сырья имени Š. М. ФеГоровского'),
(63260, '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 Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технического ремонта Šø Š¾Š±ŃŠ»ŃƒŠ¶ŠøŠ²Š°Š½ŠøŃ тракторного парка'),
(63261, 'https://ror.org/04cnfv189', 'en', 1, 'https://ror.org/04cnfv189 State Research Institute of Applied Problems Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГных проблем»'),
(63262, 'https://ror.org/04ah1mm76', 'en', 1, 'https://ror.org/04ah1mm76 State Research Institute of Mechanical Engineering Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ" им. Š’.Š’. Бахирева'),
(63263, 'https://ror.org/05mag7924', 'en', 1, 'https://ror.org/05mag7924 State Scientific Research Navigation and Hydrographic Institute Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ навигационно-гиГрографического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š°'),
(63264, 'https://ror.org/02t41e292', 'en', 1, 'https://ror.org/02t41e292 Russian Space Systems Российские космические системы'),
(63265, 'https://ror.org/04r4vyn58', 'no_lang_code', 1, 'https://ror.org/04r4vyn58 State Scientific - Research Institute of Chemical Products (Russia) Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химических ŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š²'),
(63266, 'https://ror.org/05q23ne91', 'en', 1, 'https://ror.org/05q23ne91 State Research Institute "Crystal" Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ā«ŠšŃ€ŠøŃŃ‚Š°Š»Š»Ā»'),
(63267, 'https://ror.org/02cgrtm37', 'en', 1, 'https://ror.org/02cgrtm37 East-Siberian Institute of Medical and Ecological Research Восточно-Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГико-ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований'),
(63268, 'https://ror.org/04fd00748', 'en', 1, 'https://ror.org/04fd00748 Central Research Institute" Dolphin " Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "Š”ŠµŠ»ŃŒŃ„ŠøŠ½"'),
(63269, 'https://ror.org/016ta0z75', 'en', 1, 'https://ror.org/016ta0z75 Institute of Agroengineering and Environmental Problems of Agricultural Production Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ агроинженерных Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… проблем ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ произвоГства'),
(63270, 'https://ror.org/05hthhc05', 'en', 1, 'https://ror.org/05hthhc05 State Institute for the Design of Non-Ferrous Metallurgy Enterprises Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃŽ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠ¹ цветной Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø'),
(63271, 'https://ror.org/057tmwv53', 'no_lang_code', 1, 'https://ror.org/057tmwv53 Comet (Russia) комета'),
(63272, 'https://ror.org/00k722394', 'en', 1, 'https://ror.org/00k722394 Krasnodar Research Institute of Storage and Processing of Agricultural Products ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø переработки ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŠæŃ€Š¾Š“ŃƒŠŗŃ†ŠøŠø'),
(63273, 'https://ror.org/01jabqj59', 'en', 1, 'https://ror.org/01jabqj59 State Specialized Design Institute Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ специализированный проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63274, 'https://ror.org/0435jga27', 'en', 1, 'https://ror.org/0435jga27 Taganrog Research Institute of Communications Таганрогский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ²ŃŠ·Šø'),
(63275, 'https://ror.org/00q1ddg22', 'en', 1, 'https://ror.org/00q1ddg22 North-Caucasian Zonal Research Institute of Horticulture and Viticulture Деверо-Кавказский Š—Š¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ саГовоГства Šø винограГарства'),
(63276, 'https://ror.org/011f5zy27', 'no_lang_code', 1, 'https://ror.org/011f5zy27 Oceanpribor (Russia) ŠžŠŗŠµŠ°Š½ŠæŃ€ŠøŠ±Š¾Ń€'),
(63277, 'https://ror.org/04yek5g30', 'no_lang_code', 1, 'https://ror.org/04yek5g30 FSUE FNPTS NIIIS named after Yu.Sedakov (Russia)'),
(63278, 'https://ror.org/032btfw79', 'en', 1, 'https://ror.org/032btfw79 Ural Scientific Research Institute of Composite Materials Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ композиционных материалов'),
(63279, 'https://ror.org/02ap03539', 'no_lang_code', 1, 'https://ror.org/02ap03539 Rosinformagrotekh Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информации Šø технико-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŃ… обоснований Š“Š»Ń инженерно-технического Š¾Š±ŠµŃŠæŠµŃ‡ŠµŠ½ŠøŃ Š°Š³Ń€Š¾ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š³Š¾ комплекса'),
(63280, 'https://ror.org/0184n6078', 'en', 1, 'https://ror.org/0184n6078 Central Scientific Research Radio Engineering Institute named after Academician A.I. Berg Š¦ŠŠ˜Š Š¢Š˜ им. aкаГемика А.И.Берга'),
(63281, 'https://ror.org/018k0qv55', 'no_lang_code', 1, 'https://ror.org/018k0qv55 Sozvezdie (Russia) Воронежский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹'),
(63282, 'https://ror.org/01ch1s087', 'en', 1, 'https://ror.org/01ch1s087 Russian Research Institute of Problems of Land Reclamation Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем мелиорации земель'),
(63283, 'https://ror.org/01ett0051', 'no_lang_code', 1, 'https://ror.org/01ett0051 Research Institute of Precision Instruments (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ прецизионных приборов'),
(63284, 'https://ror.org/00dc5v408', 'en', 1, 'https://ror.org/00dc5v408 Research and Design and Technological Institute of Rolling Stock ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ поГвижного состава'),
(63285, 'https://ror.org/00nna6j59', 'en', 1, 'https://ror.org/00nna6j59 Far Eastern Scientific Research Institute of Hydraulic Engineering and Reclamation Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ ŠŠ˜Š˜ гиГротехники Šø мелиорации'),
(63286, 'https://ror.org/04z9e1z18', 'en', 1, 'https://ror.org/04z9e1z18 Scientific Research Institute of Industrial Television Rastr ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š³Š¾ Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ Растр'),
(63287, 'https://ror.org/02cb9fc76', 'en', 1, 'https://ror.org/02cb9fc76 Federal Agrarian Scientific Center of the North-East named after NV Rudnitsky Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ аграрный Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Деверо-Востока имени Š.Š’. Š ŃƒŠ“Š½ŠøŃ†ŠŗŠ¾Š³Š¾'),
(63288, 'https://ror.org/05fyggb33', 'no_lang_code', 1, 'https://ror.org/05fyggb33 Research Institute VOLGA (Russia) ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Ā«Š’ŠžŠ›Š“ŠĀ»'),
(63289, 'https://ror.org/01ftfrf48', 'no_lang_code', 1, 'https://ror.org/01ftfrf48 Gidropribor ГиГроприбор'),
(63290, 'https://ror.org/03r78y930', 'en', 1, 'https://ror.org/03r78y930 Siberian Research Institute of Geology, Geophysics and Mineral Resources Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Геологии, Геофизики Šø ŠœŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ сырья'),
(63291, 'https://ror.org/05d6m6x98', 'en', 1, 'https://ror.org/05d6m6x98 Kaluga Research Institute of Telemechanical Devices Калужский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ телемеханических ŃƒŃŃ‚Ń€Š¾Š¹ŃŃ‚Š²'),
(63292, 'https://ror.org/034ahxs15', 'en', 1, 'https://ror.org/034ahxs15 The State Scientific Research Institute of Civil Aviation Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гражГанской авиации'),
(63293, 'https://ror.org/00f905c89', 'en', 1, 'https://ror.org/00f905c89 Leningrad branch Central Science Research Telecommunications Institute Š›Š•ŠŠ˜ŠŠ“Š ŠŠ”Š”ŠšŠžŠ• ŠžŠ¢Š”Š•Š›Š•ŠŠ˜Š• Š¦Š•ŠŠ¢Š ŠŠ›Š¬ŠŠžŠ“Šž ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠžŠ“Šž Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢Š Š”Š’ŠÆŠ—Š˜'),
(63294, 'https://ror.org/02qmdtn88', 'no_lang_code', 1, 'https://ror.org/02qmdtn88 Scientific Research Institute of Polymer Material (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ полимерных материалов'),
(63295, 'https://ror.org/00p4t5755', 'en', 1, 'https://ror.org/00p4t5755 Research Institute of Radio Š¤Š“Š£ŠŸ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГио'),
(63296, 'https://ror.org/04pc4cw42', 'en', 1, 'https://ror.org/04pc4cw42 Research Institute Submicron ŠŠ˜Š˜ Š”ŃƒŠ±Š¼ŠøŠŗŃ€Š¾Š½'),
(63297, 'https://ror.org/04bfex435', 'en', 1, 'https://ror.org/04bfex435 Scientific Research Institute of Optoelectronic Instrumentation ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптико-ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š³Š¾ ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(63298, 'https://ror.org/00qb33m26', 'en', 1, 'https://ror.org/00qb33m26 Research Institute of Scientific Research and Production Association ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ Šø произвоГственного Š¾Š±ŃŠŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ'),
(63299, 'https://ror.org/03f2t9x29', 'en', 1, 'https://ror.org/03f2t9x29 Research Institute of Semiconductor Devices ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠ¾Š»ŃƒŠæŃ€Š¾Š²Š¾Š“Š½ŠøŠŗŠ¾Š²Ń‹Ń… приборов'),
(63300, 'https://ror.org/01ykzp537', 'no_lang_code', 1, 'https://ror.org/01ykzp537 Institute of Electronic Measurements KVARZ (Russia) Ā«Š¤ŠŠŸŠ¦ Ā«ŠŠŠ˜ŠŸŠ˜ Ā«ŠšŠ²Š°Ń€Ń†Ā» имени А.П. Š“Š¾Ń€ŃˆŠŗŠ¾Š²Š°Ā»'),
(63301, 'https://ror.org/02dszyb81', 'en', 1, 'https://ror.org/02dszyb81 Scientific Research Institute for Standardization and Unification ŠŠ°ŃƒŃ‡Š½Š¾Ā­ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ станГартизации Šø ŃƒŠ½ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø'),
(63302, 'https://ror.org/04ya8jc69', 'en', 1, 'https://ror.org/04ya8jc69 All-Russian Research Institute of Agriculture and Soil Protection from erosion'),
(63303, 'https://ror.org/04h411m05', 'no_lang_code', 1, 'https://ror.org/04h411m05 Transneft (Russia) Š¢Ń€Š°Š½ŃŠ½ŠµŃ„Ń‚ŃŒ'),
(63304, 'https://ror.org/02rpbcj12', 'en', 1, 'https://ror.org/02rpbcj12 Scientific Research Institute of Technology named after AP Aleksandrov ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ А. П. АлексанГров'),
(63305, 'https://ror.org/04b7phn87', 'en', 1, 'https://ror.org/04b7phn87 Kursk Research Institute of Agricultural Production ŠšŠ£Š Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŠ“Š ŠžŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ“Šž ŠŸŠ ŠžŠ˜Š—Š’ŠžŠ”Š”Š¢Š’Š'),
(63306, 'https://ror.org/0104w4x66', 'en', 1, 'https://ror.org/0104w4x66 Institute of Engineering Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инженерной физики Российской ФеГерации'),
(63307, 'https://ror.org/01qncxn10', 'en', 1, 'https://ror.org/01qncxn10 Television Research Institute ŠŠ˜Š˜ Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ'),
(63308, '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'),
(63309, 'https://ror.org/03rv77e70', 'no_lang_code', 1, 'https://ror.org/03rv77e70 Scientific Research Institute of Parachute Construction (Russia) ŠŠ˜Š˜ ŠæŠ°Ń€Š°ŃˆŃŽŃ‚Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(63310, 'https://ror.org/05y5s3t98', 'en', 1, 'https://ror.org/05y5s3t98 Scientific Research Institute of Agrarian Problems of Khakassia'),
(63311, '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 ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем морских технологий Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(63312, 'https://ror.org/00sv3ym08', 'en', 1, 'https://ror.org/00sv3ym08 Institute of Precision Mechanics and Computer Science S.A. Lebedev Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ точной механики Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники имени Š”. А. ЛебеГева Š ŠŠ'),
(63313, 'https://ror.org/0225rdk98', 'en', 1, 'https://ror.org/0225rdk98 Institute of Materials Science of the Khabarovsk Scientific Center Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(63314, 'https://ror.org/03wbses72', 'no_lang_code', 1, 'https://ror.org/03wbses72 Polyus Research Institute of M.F.Stelmakh (Russia)'),
(63315, 'https://ror.org/03d8xcp24', 'en', 1, 'https://ror.org/03d8xcp24 VA Afanasyev Research Institute of Fur-breeding and Rabbit breeding'),
(63316, 'https://ror.org/056n9vg63', 'en', 1, 'https://ror.org/056n9vg63 Research Institute Ekran ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63317, 'https://ror.org/05dk70562', 'en', 1, 'https://ror.org/05dk70562 Scientific and Research Institute Voskhod ŠŠ˜Š˜ ВосхоГ'),
(63318, 'https://ror.org/00bh9qz66', 'en', 1, 'https://ror.org/00bh9qz66 Mavlyutov Institute of Mechanics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики им Š .Š . ŠœŠ°Š²Š»ŃŽŃ‚Š¾Š²Š°'),
(63319, 'https://ror.org/02n5fqy27', 'en', 1, 'https://ror.org/02n5fqy27 Siberian Aeronautical Research Institute Named After S.A. Chaplygin Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиации им. Š”. А. Чаплыгина'),
(63320, 'https://ror.org/03ms5pa94', 'no_lang_code', 1, 'https://ror.org/03ms5pa94 IrkutskNIIHimmash (Russia)'),
(63321, 'https://ror.org/00krjyc70', 'en', 1, 'https://ror.org/00krjyc70 Head Design Institute Chelyabinskgrazhdanproekt'),
(63322, 'https://ror.org/03651dk72', 'no_lang_code', 1, 'https://ror.org/03651dk72 Gipronickel Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“ŠøŠæŃ€Š¾Š½ŠøŠŗŠµŠ»ŃŒ'),
(63323, 'https://ror.org/05wnvb372', 'en', 1, 'https://ror.org/05wnvb372 Research Institute of Medical Climatology and Rehabilitation Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинской климатологии Šø Š²Š¾ŃŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š³Š¾ Š»ŠµŃ‡ŠµŠ½ŠøŃ'),
(63324, 'https://ror.org/043qcaa25', 'en', 1, 'https://ror.org/043qcaa25 The Joint Institute of Mechanical Engineering'),
(63325, 'https://ror.org/002fqzg39', 'en', 1, 'https://ror.org/002fqzg39 Military Institute Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ военное авиационное инженерное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ'),
(63326, 'https://ror.org/04d7gd791', 'en', 1, 'https://ror.org/04d7gd791 Institute of Monitoring of Climatic and Ecological Systems Главный ŠŗŠ¾Ń€ŠæŃƒŃ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мониторинга климатических Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… систем Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(63327, 'https://ror.org/05rfv2111', 'en', 1, 'https://ror.org/05rfv2111 All-Russian Research Institute of Radio Equipment ŠžŃ€Š“ŠµŠ½Š° Š¢Ń€ŃƒŠ“Š¾Š²Š¾Š³Š¾ ŠšŃ€Š°ŃŠ½Š¾Š³Š¾ Знамени Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š“ŠøŠ¾Š°ŠæŠæŠ°Ń€Š°Ń‚ŃƒŃ€Ń‹'),
(63328, 'https://ror.org/02ra28290', 'en', 1, 'https://ror.org/02ra28290 Irkutsk Research Institute of the Forestry Industry Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лесной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63329, 'https://ror.org/05673tf87', 'en', 1, 'https://ror.org/05673tf87 Irkutsk Antiplague Research Institute of Siberia and Far East Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠæŃ€Š¾Ń‚ŠøŠ²Š¾Ń‡ŃƒŠ¼Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дибири Šø Š”Š°Š»ŃŒŠ½ŠµŠ³Š¾ Востока'),
(63330, 'https://ror.org/0324qh176', 'en', 1, 'https://ror.org/0324qh176 Institute of Biology Ufa Science Center Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Уфимского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра'),
(63331, 'https://ror.org/027gawg81', 'en', 1, 'https://ror.org/027gawg81 Kharkiv State Veterinary Academy Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° Гержавна зооветеринарна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(63332, 'https://ror.org/03b0cj417', 'no_lang_code', 1, 'https://ror.org/03b0cj417 Almaz-Antey (Russia) ŠšŠ¾Š½Ń†ŠµŃ€Š½ Š’ŠšŠž "Алмаз-Антей'),
(63333, 'https://ror.org/00je6d832', 'en', 1, 'https://ror.org/00je6d832 Scientific Research Engineering Institute ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ–Š•ŠŠ•Š ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(63334, 'https://ror.org/020whct63', 'no_lang_code', 1, 'https://ror.org/020whct63 Research Institute "Pilot" (Russia)'),
(63335, 'https://ror.org/01kfqj356', 'en', 1, 'https://ror.org/01kfqj356 Tula University Тульский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(63336, 'https://ror.org/050f6zs19', 'en', 1, 'https://ror.org/050f6zs19 Krasnodar Research Institute of Agriculture named after P. Lukyanenko ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ ŠŠ˜Š˜ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° имени П. П. Š›ŃƒŠŗŃŒŃŠ½ŠµŠ½ŠŗŠ¾'),
(63337, 'https://ror.org/001x3nr42', 'en', 1, 'https://ror.org/001x3nr42 The BE Vedeneev All Russia Institute of Hydraulic Engineering Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГротехники имени Š‘.Š•. ВеГенеева'),
(63338, 'https://ror.org/04xgx9819', 'en', 1, 'https://ror.org/04xgx9819 Krasnodar Research Institute of Fishery ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63339, 'https://ror.org/049cw4s75', 'en', 1, 'https://ror.org/049cw4s75 North Caucasian Research Institute of Mountain and Foothill Agriculture Деверо-Кавказский ŠŠ˜Š˜ горного Šø преГгорного сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63340, 'https://ror.org/01rbsaw22', 'en', 1, 'https://ror.org/01rbsaw22 Acoustic Institute named after NN Andreev ŠŠŗŃƒŃŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š. Š. АнГреева'),
(63341, 'https://ror.org/02phqhd85', 'en', 1, 'https://ror.org/02phqhd85 Research Institute of Hermes ŠŠ˜Š˜ "Š“Š•Š ŠœŠ•Š”"'),
(63342, 'https://ror.org/00pbt4z69', 'en', 1, 'https://ror.org/00pbt4z69 North Caucasian Zonal Scientific Research Veterinary Institute Деверо-Кавказский Š—Š¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ветеринарный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63343, 'https://ror.org/00b1twa08', 'no_lang_code', 1, 'https://ror.org/00b1twa08 Scientific and Production Association of Electromechanics (Russia)'),
(63344, 'https://ror.org/021es5e59', 'en', 1, 'https://ror.org/021es5e59 Moscow Institute of Thermal Technology ŠšŠ¾Ń€ŠæŠ¾Ń€Š°Ń†ŠøŃ Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплотехники'),
(63345, 'https://ror.org/037t5k894', 'en', 1, 'https://ror.org/037t5k894 Russian Research and Design Institute of Titanium and Magnesium Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š˜Š¢ŠŠŠ И ŠœŠŠ“ŠŠ˜ŠÆ'),
(63346, 'https://ror.org/00g7nbz02', 'no_lang_code', 1, 'https://ror.org/00g7nbz02 SZNIIMESH Деверо-запаГный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Šø ŃŠ»ŠµŠŗŃ‚Ń€ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63347, 'https://ror.org/03q57f308', 'no_lang_code', 1, 'https://ror.org/03q57f308 Nizhny Novgorod Research Institute of Radio Engineering (Russia) Ā«Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-произвоГственный центр Ā«ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиотехники»'),
(63348, 'https://ror.org/019j1v294', 'en', 1, 'https://ror.org/019j1v294 "Š¤ŠŠŸŠ¦ "ŠŠ˜Š˜ приклаГной химии" FNPC Research Institute of Applied Chemistry'),
(63349, 'https://ror.org/05n1bhg28', 'no_lang_code', 1, 'https://ror.org/05n1bhg28 Kazancompressormash ŠšŠ°Š·Š°Š½ŃŒŠŗŠ¾Š¼ŠæŃ€ŠµŃŃŠ¾Ń€Š¼Š°Ńˆ'),
(63350, 'https://ror.org/02tfjqk24', 'no_lang_code', 1, 'https://ror.org/02tfjqk24 Stalproekt (Russia) Š”Ń‚Š°Š»ŃŒŠæŃ€Š¾ŠµŠŗŃ‚'),
(63351, 'https://ror.org/00ktvw306', 'en', 1, 'https://ror.org/00ktvw306 Ufa Research Institute of Occupational Health and Human Ecology Уфимский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицины Ń‚Ń€ŃƒŠ“Š° Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø человека'),
(63352, 'https://ror.org/03x68sb69', 'en', 1, 'https://ror.org/03x68sb69 "VNIINM" named after AA Bochvar "Высокотехнологический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неорганических материалов имени акаГемика А.А. Бочвара"'),
(63353, 'https://ror.org/00x5f1424', 'no_lang_code', 1, 'https://ror.org/00x5f1424 Metrogiprotrans (Russia) ŠœŠµŃ‚Ń€Š¾Š³ŠøŠæŃ€Š¾Ń‚Ń€Š°Š½Ń'),
(63354, 'https://ror.org/0310e9d31', 'en', 1, 'https://ror.org/0310e9d31 Institute of Biotechnology and Veterinary Medicine Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биотехнологии Šø ветеринарной меГицины'),
(63355, 'https://ror.org/0203r7m17', 'no_lang_code', 1, 'https://ror.org/0203r7m17 Yarsintez ŠžŠŠž ŠŠ˜Š˜ «Ярсинтез»'),
(63356, 'https://ror.org/018k88765', 'en', 1, 'https://ror.org/018k88765 Central Research Institute for the Pulp and Paper Industry Š¾Ń€Š³Š°Š½ŠøŠ·ŃƒŠµŃ‚ŃŃ Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń†ŠµŠ»Š»ŃŽŠ»Š¾Š·Š½Š¾-бу­мажной пр'),
(63357, 'https://ror.org/01hprsv49', 'en', 1, 'https://ror.org/01hprsv49 Joint Stock Company National Research Institute Electron Ā«Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «Электрон»'),
(63358, 'https://ror.org/03vhksx27', 'en', 1, 'https://ror.org/03vhksx27 Research Institute of Instrument named after V.V. Tikhomirova ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ Š˜Š‘ŠžŠ ŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ Š˜ŠœŠ•ŠŠ˜ Š’.Š’. Š¢Š˜Š„ŠžŠœŠ˜Š ŠžŠ’Š'),
(63359, 'https://ror.org/01m9skf34', 'en', 1, 'https://ror.org/01m9skf34 Central Research Institute "Course" Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "ŠšŃƒŃ€Ń"'),
(63360, 'https://ror.org/00mcf6y06', 'no_lang_code', 1, 'https://ror.org/00mcf6y06 Novosibirsk Tuberculosis Research Institute ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»Ń‘Š·Š°'),
(63361, 'https://ror.org/03fgw4s80', 'no_lang_code', 1, 'https://ror.org/03fgw4s80 Scientific Research Institute of Marine Systems (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ морских систем'),
(63362, 'https://ror.org/00n1s7m36', 'no_lang_code', 1, 'https://ror.org/00n1s7m36 MosvodokanalNIIproject Institute (Russia) ŠœŠ¾ŃŠ²Š¾Š“Š¾ŠŗŠ°Š½Š°Š»ŠŠ˜Š˜ŠæŃ€Š¾ŠµŠŗŃ‚ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63363, 'https://ror.org/00f6n1x59', 'en', 1, 'https://ror.org/00f6n1x59 Far Eastern Scientific Research Institute of Mechanization and Electrification of Agriculture Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Šø ŃŠ»ŠµŠŗŃ‚Ń€ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63364, 'https://ror.org/01c0n4952', 'en', 1, 'https://ror.org/01c0n4952 Institute of Mining of the North after N.V.Chersky Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного Гела Девера после Š.Š’.Черского'),
(63365, 'https://ror.org/04sqtxy36', 'en', 1, 'https://ror.org/04sqtxy36 Research Institute "Quantum" ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŠ²Š°Š½Ń‚'),
(63366, 'https://ror.org/038m16120', 'en', 1, 'https://ror.org/038m16120 Military Academy of Strategic Missile Forces named after Peter the Great Š’ŠžŠ•ŠŠŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ Š Š’Š”Š Š˜ŠœŠ•ŠŠ˜ ŠŸŠ•Š¢Š Š Š’Š•Š›Š˜ŠšŠžŠ“Šž'),
(63367, 'https://ror.org/04w38zs89', 'no_lang_code', 1, 'https://ror.org/04w38zs89 Tver Wagon Building Institute (Russia) ŠŠ°ŃƒŃ‡Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ «Тверской ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ каретки»'),
(63368, 'https://ror.org/01793sb67', 'no_lang_code', 1, 'https://ror.org/01793sb67 Concern Granit-Electron (Russia) ŠšŠ¾Š½Ń†ŠµŃ€Š½ «Гранит-Электрон»'),
(63369, 'https://ror.org/049tttq19', 'en', 1, 'https://ror.org/049tttq19 Tula Institute of Design & Technology ŠŸŃ€Š¾ŠµŠŗŃ‚Š½Š¾-ŠšŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ Технологический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(63370, 'https://ror.org/01ctszf41', 'no_lang_code', 1, 'https://ror.org/01ctszf41 United Machinery Technologies (Russia)'),
(63371, 'https://ror.org/01080h262', 'no_lang_code', 1, 'https://ror.org/01080h262 Research Institute of Cosmic and Aviation Materials (Russia) ŠŠ°ŃƒŃ‡Š½Š¾ – ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космических Šø авиационных материалов'),
(63372, 'https://ror.org/00wsvb073', 'no_lang_code', 1, 'https://ror.org/00wsvb073 "Institute" Energosetproject" Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ā«Š­ŠŠ•Š Š“ŠžŠ”Š•Š¢Š¬ŠŸŠ ŠžŠ•ŠšŠ¢Ā»'),
(63373, 'https://ror.org/05ge22856', 'en', 1, 'https://ror.org/05ge22856 All-Russian Research Institute of Veterinary Sanitation, Hygiene and Ecology Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарной санитарии, гигиены Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(63374, 'https://ror.org/04250rf44', 'en', 1, 'https://ror.org/04250rf44 JSC Institute Hydroproject ŠŠž Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ГиГропроект»'),
(63375, 'https://ror.org/03d9yvx07', 'no_lang_code', 1, 'https://ror.org/03d9yvx07 Medinstill (United States)'),
(63376, 'https://ror.org/00tsc5z15', 'no_lang_code', 1, 'https://ror.org/00tsc5z15 Gazpromekt (Russia) Š“Š°Š·ŠŸŃ€Š¾ŠµŠŗŃ‚'),
(63377, 'https://ror.org/05x5sjp46', 'no_lang_code', 1, 'https://ror.org/05x5sjp46 VolgoUralNIPIgaz (Russia)'),
(63378, 'https://ror.org/01vw41f50', 'en', 1, 'https://ror.org/01vw41f50 Federal State Budget Scientific Institution "Nizhny Novgorod Research Institute of Agriculture"'),
(63379, 'https://ror.org/040mkk956', 'en', 1, 'https://ror.org/040mkk956 Energy Institute named after G.M. Krzhizhanovsky Энергетический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š“.М. ŠšŃ€Š¶ŠøŠ¶Š°Š½Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(63380, 'https://ror.org/045vmw703', 'en', 1, 'https://ror.org/045vmw703 Tatar Scientific Research And Design Institute of Petroleum Engineering Š¢ŠŠ¢ŠŠ Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠž-ŠšŠžŠŠ”Š¢Š Š£ŠšŠ¢ŠžŠ Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŠ•Š¤Š¢ŠÆŠŠžŠ“Šž ŠœŠŠØŠ˜ŠŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ'),
(63381, 'https://ror.org/02smtnw54', 'no_lang_code', 1, 'https://ror.org/02smtnw54 Tatneft (Russia) Š¢Š°Ń‚Š½ŠµŃ„Ń‚ŃŒ'),
(63382, 'https://ror.org/05e5vsw78', 'no_lang_code', 1, 'https://ror.org/05e5vsw78 Lukoil (Russia) Š˜ŃŃ‚Š¾Ń€ŠøŃ'),
(63383, 'https://ror.org/050scpn75', 'en', 1, 'https://ror.org/050scpn75 Ural Scientific Research and Design Institute of Galurgy Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š°Š»ŃƒŃ€Š³ŠøŠø'),
(63384, 'https://ror.org/016vktt70', 'no_lang_code', 1, 'https://ror.org/016vktt70 Giprotruboprovod, JSC ŠŠž Ā«Š“ŠøŠæŃ€Š¾Ń‚Ń€ŃƒŠ±Š¾ŠæŃ€Š¾Š²Š¾Š“Ā»'),
(63385, 'https://ror.org/02jy5y626', 'en', 1, 'https://ror.org/02jy5y626 Voronezh Research Institute Vega Воронежский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63386, 'https://ror.org/05518k367', 'en', 1, 'https://ror.org/05518k367 Institute of Applied Physics Акционерного ŠžŠ±Ń‰ŠµŃŃ‚ва Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной физики'),
(63387, 'https://ror.org/05bnagb09', 'no_lang_code', 1, 'https://ror.org/05bnagb09 All-Russian Research and Design Institute of Electric Locomotive Industry (Russia) Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š²Š¾Š·Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(63388, 'https://ror.org/014aahx46', 'en', 1, 'https://ror.org/014aahx46 Central Research and Design Institute of Fuel Equipment for Automotive and Stationary Engines Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ топливной Š°ŠæŠæŠ°Ń€Š°Ń‚ŃƒŃ€Ń‹ автотракторных Šø стационарных Гвигателей'),
(63389, 'https://ror.org/01yfptf89', 'no_lang_code', 1, 'https://ror.org/01yfptf89 OAO Š¢Ń€ŃƒŠ±Š½Š°Ń ŠœŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń ŠšŠ¾Š¼ŠæŠ°Š½ŠøŃ Pipe Metallurgical (Russia)'),
(63390, 'https://ror.org/027g02171', 'ru', 1, 'https://ror.org/027g02171 Zarubezhneft Š—Š°Ń€ŃƒŠ±ŠµŠ¶Š½ŠµŃ„Ń‚ŃŒ'),
(63391, 'https://ror.org/03krv7d59', 'en', 1, 'https://ror.org/03krv7d59 All-Russian Research and Design Institute of Nuclear and Power Engineering Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ атомного Šø ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(63392, 'https://ror.org/05t4mrn89', 'no_lang_code', 1, 'https://ror.org/05t4mrn89 Scientific Research Institute of Metallurgical Technology (Russia)'),
(63393, 'https://ror.org/04exgja93', 'en', 1, 'https://ror.org/04exgja93 Institute of Optoelectronic Information Technologies ŠžŃ‚ŠŗŃ€Ń‹Ń‚Š¾Šµ акционерное общество "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптико-ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Ń‹Ń… информационных технологий"'),
(63394, 'https://ror.org/04zw7qt81', 'no_lang_code', 1, 'https://ror.org/04zw7qt81 VNIIStrudormash (Russia) Š’ŠŠ˜Š˜ŃŃ‚Ń€Š¾Š¹Š“Š¾Ń€Š¼Š°Ńˆ'),
(63395, 'https://ror.org/034x52m63', 'no_lang_code', 1, 'https://ror.org/034x52m63 VNIPIvzryvgeofizika Š’ŠŠ˜ŠŸŠ˜Š²Š·Ń€Ń‹Š²Š³ŠµŠ¾Ń„ŠøŠ·ŠøŠŗŠ°'),
(63396, 'https://ror.org/04m4kv128', 'en', 1, 'https://ror.org/04m4kv128 Institute of Plastics named after G. Petrov Акционерное общество Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пластмасс имени Š“.Š”.ŠŸŠµŃ‚Ń€Š¾Š²Š°Ā»'),
(63397, 'https://ror.org/045che656', 'en', 1, 'https://ror.org/045che656 Research Institute of Fur Industry ŠŠ˜Š˜ ŠœŠµŃ…ŠŸŃ€Š¾Š¼'),
(63398, 'https://ror.org/02ybby158', 'en', 1, 'https://ror.org/02ybby158 International Institute of Industrial Property ŠœŠ•Š–Š”Š£ŠŠŠ ŠžŠ”ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ™ Š”ŠžŠ‘Š”Š¢Š’Š•ŠŠŠžŠ”Š¢Š˜'),
(63399, 'https://ror.org/05gwh5f13', 'no_lang_code', 1, 'https://ror.org/05gwh5f13 Sistema (Russia)'),
(63400, 'https://ror.org/04krrjy26', 'en', 1, 'https://ror.org/04krrjy26 All-Russian Scientific Research Institute of Pulp and Paper Industry Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¦Š•Š›Š›Š®Š›ŠžŠ—ŠŠž-Š‘Š£ŠœŠŠ–ŠŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(63401, 'https://ror.org/056acjt11', 'no_lang_code', 1, 'https://ror.org/056acjt11 Research Institute of Technology (Russia)'),
(63402, 'https://ror.org/01ajch036', 'no_lang_code', 1, 'https://ror.org/01ajch036 Irgiredmet (Russia) Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Грагоценных Šø реГких металлов Šø алмазов'),
(63403, 'https://ror.org/04eq28s42', 'en', 1, 'https://ror.org/04eq28s42 Scientific Research Institute of Computer Complexes. M.A. Kartsev ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… комплексов'),
(63404, 'https://ror.org/03skfnn63', 'no_lang_code', 1, 'https://ror.org/03skfnn63 Ruselprom (Russia)'),
(63405, 'https://ror.org/02ee49b39', 'no_lang_code', 1, 'https://ror.org/02ee49b39 Sibur (Russia)'),
(63406, 'https://ror.org/04hjc2592', 'en', 1, 'https://ror.org/04hjc2592 Kazan Research Institute of Aviation Technologies Казанский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных технологий'),
(63407, 'https://ror.org/05r3yzq04', 'en', 1, 'https://ror.org/05r3yzq04 All-Russian Scientific Research Institute for Operation of Nuclear Power Plants Всероссийский ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŃŠŗŃŠæŠ»ŃƒŠ°Ń‚Š°Ń†ŠøŠø атомных ŃŠ»ŠµŠŗŃ‚Ń€Š¾ŃŃ‚Š°Š½Ń†ŠøŠ¹'),
(63408, 'https://ror.org/008dfd567', 'no_lang_code', 1, 'https://ror.org/008dfd567 Plasma (Russia)'),
(63409, 'https://ror.org/04wgrw793', 'en', 1, 'https://ror.org/04wgrw793 All-Russian Scientific Research Institute of Radio Engineering Всероссийский ŠŠ˜Š˜ РаГиотехники'),
(63410, 'https://ror.org/01ke7y772', 'no_lang_code', 1, 'https://ror.org/01ke7y772 KO VNIIMETMASH Колпинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(63411, 'https://ror.org/017swdm43', 'no_lang_code', 1, 'https://ror.org/017swdm43 Rosgeo (Russia) РосГео'),
(63412, 'https://ror.org/00e7v1604', 'en', 1, 'https://ror.org/00e7v1604 Central Research Institute of Automation and Hydraulics Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø гиГравлики'),
(63413, 'https://ror.org/05q13b263', 'no_lang_code', 1, 'https://ror.org/05q13b263 NIIhimmash (Russia)'),
(63414, 'https://ror.org/03xkdt868', 'en', 1, 'https://ror.org/03xkdt868 Research Institute of Nonwoven Materials'),
(63415, 'https://ror.org/01dnmm403', 'no_lang_code', 1, 'https://ror.org/01dnmm403 Ural Mining and Metallurgical Company (Russia) ŠžŃ‚ŠŗŃ€Ń‹Ń‚Š¾Šµ акционерное общество Ā«Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŗŠ¾Š¼ŠæŠ°Š½ŠøŃ'),
(63416, 'https://ror.org/03mbybz64', 'en', 1, 'https://ror.org/03mbybz64 Research and Design Institute of the Equipment for Tyre Industry ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¾Š±Š¾Ń€ŃƒŠ“Š¾Š²Š°Š½ŠøŃŽ Š“Š»Ń шинной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63417, 'https://ror.org/0179kd988', 'no_lang_code', 1, 'https://ror.org/0179kd988 Nipigormash (Russia) ŠŠ˜ŠŸŠ˜Š“ŠžŠ ŠœŠŠØ'),
(63418, 'https://ror.org/01bnkw221', 'no_lang_code', 1, 'https://ror.org/01bnkw221 Magnitogorsk Gipromez (Russia) ŠžŠŠž "ŠœŠŠ“ŠŠ˜Š¢ŠžŠ“ŠžŠ Š”ŠšŠ˜Š™ Š“Š˜ŠŸŠ ŠžŠœŠ•Š—"'),
(63419, 'https://ror.org/014xkga58', 'no_lang_code', 1, 'https://ror.org/014xkga58 Research Institute for Oilfield Chemistry (Russia) ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ЄИМИИ'),
(63420, 'https://ror.org/0259eer23', 'en', 1, 'https://ror.org/0259eer23 Khabarovsk Scientific Research Institute of Epidemiology and Microbiology Єабаровский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(63421, 'https://ror.org/03xjh0j86', 'en', 1, 'https://ror.org/03xjh0j86 National Institute of Aviation Technologies ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных технологий'),
(63422, 'https://ror.org/016d5wx23', 'no_lang_code', 1, 'https://ror.org/016d5wx23 Institute Giprostroymost Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гипростроймост'),
(63423, 'https://ror.org/014m5jx39', 'en', 1, 'https://ror.org/014m5jx39 Scientific Research Institute of Mining ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Горного Гела'),
(63424, 'https://ror.org/03zv9wh20', 'no_lang_code', 1, 'https://ror.org/03zv9wh20 Scientific Research Institute of Precision Mechanics (Russia)'),
(63425, 'https://ror.org/039vtca92', 'en', 1, 'https://ror.org/039vtca92 Research And Design Institute of Electric Coal Products ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠž-Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š­Š›Š•ŠšŠ¢Š ŠžŠ£Š“ŠžŠ›Š¬ŠŠ«Š„ Š˜Š—Š”Š•Š›Š˜Š™'),
(63426, 'https://ror.org/0204q4d57', 'en', 1, 'https://ror.org/0204q4d57 Texas Wheat Producers Board and Association');
INSERT INTO `rors` VALUES
(63427, 'https://ror.org/02275hy54', 'no_lang_code', 1, 'https://ror.org/02275hy54 Scientific Research Institute of Semiconductor Mechanical Engineering (Russia)'),
(63428, 'https://ror.org/05whnha37', 'en', 1, 'https://ror.org/05whnha37 Institute Belniis ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Šµ Ń€ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠ¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ по ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Ńƒ "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š‘ŠµŠ»ŠŠ˜Š˜Š”"'),
(63429, 'https://ror.org/038ksq075', 'no_lang_code', 1, 'https://ror.org/038ksq075 Niiteplopribor (Russia) ŠŠ˜Š˜Š¢ŠµŠæŠ»Š¾ŠæŃ€ŠøŠ±Š¾Ń€'),
(63430, 'https://ror.org/01vd5cb71', 'en', 1, 'https://ror.org/01vd5cb71 Scientific Research Institute Elpa Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «Элпа»'),
(63431, 'https://ror.org/03wn3aq07', 'no_lang_code', 1, 'https://ror.org/03wn3aq07 Scientific Research Institute "Girikond" (Russia)'),
(63432, 'https://ror.org/00dg9e448', 'en', 1, 'https://ror.org/00dg9e448 Isotherm Research Institute ŠŠ˜Š˜ "Š˜Š·Š¾Ń‚ŠµŃ€Š¼"'),
(63433, 'https://ror.org/00x935r91', 'no_lang_code', 1, 'https://ror.org/00x935r91 MoszhilNIIproekt ŠœŠ¾ŃŠ¶ŠøŠ»ŠŠ˜Š˜ŠæŃ€Š¾ŠµŠŗŃ‚'),
(63434, 'https://ror.org/036rv4s60', 'en', 1, 'https://ror.org/036rv4s60 Scientific and Research Institute of High-Voltage Apparatus ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Š²Š¾Š»ŃŒŃ‚Š½Š¾Š³Š¾ Š¾Š±Š¾Ń€ŃƒŠ“Š¾Š²Š°Š½ŠøŃ'),
(63435, 'https://ror.org/038jzt119', 'en', 1, 'https://ror.org/038jzt119 Scientific Research Institute "Kulon" ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š¼Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ «Кулон»'),
(63436, 'https://ror.org/006j3m787', 'en', 1, 'https://ror.org/006j3m787 Specialized Scientific Research Institute of Instrument Engineering'),
(63437, 'https://ror.org/025dn7p74', 'uk', 1, 'https://ror.org/025dn7p74 Ukrnaftokhimproect'),
(63438, 'https://ror.org/02tdv0r69', 'no_lang_code', 1, 'https://ror.org/02tdv0r69 "Зенит ТрейГинг" Zenit Trading (Russia)'),
(63439, 'https://ror.org/05xaptb67', 'no_lang_code', 1, 'https://ror.org/05xaptb67 Uralniti (Russia) Š£Ń€Š°Š»ŠŠ˜Š¢Š˜'),
(63440, 'https://ror.org/002zm9348', 'no_lang_code', 1, 'https://ror.org/002zm9348 VNIIGIS ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геофизических исслеГований геологоразвеГочных скважин['),
(63441, 'https://ror.org/04a8px331', 'en', 1, 'https://ror.org/04a8px331 Russian Institute of Radionavigation and Time Российский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГионавигации Šø времени'),
(63442, 'https://ror.org/05thgmv59', 'en', 1, 'https://ror.org/05thgmv59 Research Institute "Argon" ŠŠ˜Š˜ "Аргон"'),
(63443, 'https://ror.org/02qv8f649', 'en', 1, 'https://ror.org/02qv8f649 Research Institute of Mining Geomechanics and Mine Surveying ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горно'),
(63444, 'https://ror.org/01zzq1m54', 'en', 1, 'https://ror.org/01zzq1m54 Central Scientific and Research Institute of the Sewing Industry ŠžŠŠž "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Швейной ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø"'),
(63445, 'https://ror.org/034vp3v91', 'no_lang_code', 1, 'https://ror.org/034vp3v91 Research Institute "Pulsar" (Russia) ŠŠŠ£Š§ŠŠž-ŠŸŠ ŠžŠ˜Š—Š’ŠžŠ”Š”Š¢Š’Š•ŠŠŠžŠ• ŠŸŠ Š•Š”ŠŸŠ Š˜ŠÆŠ¢Š˜Š• "ŠŸŠ£Š›Š¬Š”ŠŠ "'),
(63446, 'https://ror.org/04wmqsp35', 'no_lang_code', 1, 'https://ror.org/04wmqsp35 The Ural Scientific-Research Institute of Architecture and Construction (Russia)'),
(63447, 'https://ror.org/05xabex37', 'en', 1, 'https://ror.org/05xabex37 Research Institute of Refining and Petrochemical Industry" MASMA " ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нафтопереробки "МАДМА"'),
(63448, 'https://ror.org/0001g7380', 'en', 1, 'https://ror.org/0001g7380 Research Institute "Vector" ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "Вектор"'),
(63449, 'https://ror.org/01snp8f97', 'no_lang_code', 1, 'https://ror.org/01snp8f97 The Russian Research Institute of the Tube & Pipe Industries (Russia) Российский Š½Š°ŃƒŃ‡Š½Š¾ā€“ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚Ń€ŃƒŠ±Š½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63450, 'https://ror.org/049j4jr36', 'en', 1, 'https://ror.org/049j4jr36 "Московский ŠŠ˜Š˜Š”Š„ Ā«ŠŠµŠ¼Ń‡ŠøŠ½Š¾Š²ŠŗŠ°Ā» Moscow Research Institute" Nemchinovka "'),
(63451, 'https://ror.org/00x9re747', 'en', 1, 'https://ror.org/00x9re747 Scientific Research Institute for the Kursk Magnetic Anomaly named after L.D. Shevyakova ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по проблемам ŠšŃƒŃ€ŃŠŗŠ¾Š¹ магнитной аномалии имени Š›.Š”. ŠØŠµŠ²ŃŠŗŠ¾Š²Š°'),
(63452, 'https://ror.org/01p85sc95', 'no_lang_code', 1, 'https://ror.org/01p85sc95 PJSC "VNIIPThimnefteapparatury" (Russia)'),
(63453, 'https://ror.org/01nesd228', 'en', 1, 'https://ror.org/01nesd228 Russian Research Institute of the Sugar Industry Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сахарной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63454, 'https://ror.org/0292bdr58', 'en', 1, 'https://ror.org/0292bdr58 Research Institute of Disinfectology Rospotrebnadzor ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гезинфектологии РоспотребнаГзора'),
(63455, '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 ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Черноземной полосы имени Š’.Š’. Š”Š¾ŠŗŃƒŃ‡Š°ŠµŠ²Š°'),
(63456, 'https://ror.org/02kqpay82', 'no_lang_code', 1, 'https://ror.org/02kqpay82 Scientific Research Institute of Sanitary Technology (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сантехники'),
(63457, 'https://ror.org/02z8dkq59', 'en', 1, 'https://ror.org/02z8dkq59 Russian Research Institute of Hematology and Transfusiology Российский ŠŠ˜Š˜ гематологии Šø Ń‚Ń€Š°Š½ŃŃ„ŃƒŠ·ŠøŠ¾Š»Š¾Š³ŠøŠø'),
(63458, 'https://ror.org/001d11g88', 'en', 1, 'https://ror.org/001d11g88 Agricultural Research Institute for South-East Region ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Юго-Восточного'),
(63459, '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 Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»ŃŒŠ½Š¾-технического Š¾Š±ŠµŃŠæŠµŃ‡ŠµŠ½ŠøŃ им. генерала армии А.Š’. Š„Ń€ŃƒŠ»Ń‘Š²Š°'),
(63460, 'https://ror.org/05xs8j551', 'no_lang_code', 1, 'https://ror.org/05xs8j551 Institute of Technology and Production Organization (Russia)'),
(63461, 'https://ror.org/05t7cak84', 'en', 1, 'https://ror.org/05t7cak84 Scientific and Research Technological Institute Progress ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ā«ŠŸŃ€Š¾Š³Ń€ŠµŃŃ'),
(63462, 'https://ror.org/00rarg214', 'no_lang_code', 1, 'https://ror.org/00rarg214 Penza Electrotechnical Research Institute (Russia) Пензенский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹'),
(63463, 'https://ror.org/00nd3vv76', 'en', 1, 'https://ror.org/00nd3vv76 Scientific and Research Institute of Textile Materials ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠŗŃŃ‚ŠøŠ»ŃŒŠ½Ń‹Ń… материалов'),
(63464, 'https://ror.org/03qc6zh37', 'en', 1, 'https://ror.org/03qc6zh37 Research Institute "Agat"'),
(63465, 'https://ror.org/04vje9y05', 'en', 1, 'https://ror.org/04vje9y05 Research Institute of Development and Operation of oil-field Pipes ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ разработки Šø ŃŠŗŃŠæŠ»ŃƒŠ°Ń‚Š°Ń†ŠøŠø OCTG'),
(63466, 'https://ror.org/00grk8n10', 'en', 1, 'https://ror.org/00grk8n10 Scientific Research Institute of Computing Machinery ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники'),
(63467, 'https://ror.org/00hs4m805', 'en', 1, 'https://ror.org/00hs4m805 Research Institute of Tire Industry ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ шинной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63468, 'https://ror.org/047tgb953', 'en', 1, 'https://ror.org/047tgb953 Federal Scientific Center for Medical and Preventive Health Risk Management Technologies Š›ŃŽŠ±Š¾Šµ использование материалов Š“Š¾ŠæŃƒŃŠŗŠ°ŠµŃ‚ŃŃ Ń‚Š¾Š»ŃŒŠŗŠ¾ с ŃŠ¾Š³Š»Š°ŃŠøŃ ŠæŃ€Š°Š²Š¾Š¾Š±Š»Š°Š“Š°Ń‚ŠµŠ»Ń'),
(63469, 'https://ror.org/02csy5q06', 'no_lang_code', 1, 'https://ror.org/02csy5q06 LIT-PHONON (Russia)'),
(63470, 'https://ror.org/02c38ff88', 'en', 1, 'https://ror.org/02c38ff88 Central Research Textile Institute Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Ń‚ŠµŠŗŃŃ‚ŠøŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63471, 'https://ror.org/01r5tp796', 'en', 1, 'https://ror.org/01r5tp796 Research Institute of Measuring Equipment ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŠ·Š¼ŠµŃ€ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники'),
(63472, 'https://ror.org/04hf4he50', 'no_lang_code', 1, 'https://ror.org/04hf4he50 Ukrainian Research Institute of Cable Industry (Ukraine)'),
(63473, 'https://ror.org/026737t17', 'en', 1, 'https://ror.org/026737t17 Saratov Research Institute of Rural Hygiene Даратовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельской гигиены'),
(63474, 'https://ror.org/050jrfq68', 'en', 1, 'https://ror.org/050jrfq68 Research Institute of Metallurgy Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠøĀ»'),
(63475, 'https://ror.org/04e2kfy26', 'en', 1, 'https://ror.org/04e2kfy26 Scientific Research Clinical Institute. L.I. Sverzhevsky ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ клинический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚. Š›.И. Двержевского'),
(63476, 'https://ror.org/046qpde88', 'en', 1, 'https://ror.org/046qpde88 Scientific Research Institute of Horticulture of Siberia named after М.А. Lisavenko'),
(63477, 'https://ror.org/04qbrde71', 'en', 1, 'https://ror.org/04qbrde71 Siberian Research Institute of Mechanization and Electrification of Agriculture Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Šø ŃŠ»ŠµŠŗŃ‚Ń€ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63478, 'https://ror.org/04vgmy976', 'en', 1, 'https://ror.org/04vgmy976 Russian Scientific Center "Applied Chemistry" Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ā«ŠŸŃ€ŠøŠŗŠ»Š°Š“Š½Š°Ń Ń…ŠøŠ¼ŠøŃĀ»'),
(63479, 'https://ror.org/00wm96095', 'en', 1, 'https://ror.org/00wm96095 24-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны России 24th Central Research Institute of the Russian Defence Ministry'),
(63480, 'https://ror.org/00yjcvf23', 'en', 1, 'https://ror.org/00yjcvf23 40-й Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны Российской ФеГерации 40th State Research Institute of the Ministry of Defence of the Russian Federation'),
(63481, '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'),
(63482, 'https://ror.org/0433ct737', 'no_lang_code', 1, 'https://ror.org/0433ct737 NIIAS ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информатизации, автоматизации Šø ŃŠ²ŃŠ·Šø на железноГорожном транспорте'),
(63483, 'https://ror.org/053fj3b72', 'en', 1, 'https://ror.org/053fj3b72 27-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны Российской ФеГерации 27th Central Research Institute of the Ministry of Defence of the Russian Federation'),
(63484, 'https://ror.org/03e92b619', 'en', 1, 'https://ror.org/03e92b619 3-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½Š¾Š±Š¾Ń€Š¾Š½Ń‹ России 3rd Central Research Institute of the Russian Defence Ministry'),
(63485, 'https://ror.org/013dvfk22', 'en', 1, 'https://ror.org/013dvfk22 4-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны России 4th Central Research Institute of the Russian Defence Ministry'),
(63486, 'https://ror.org/05b7yq612', 'en', 1, 'https://ror.org/05b7yq612 Ukrainian Institute for the Design of Metallurgical Plants Украинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃŽ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŃ… завоГов'),
(63487, '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 Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инженерных войск ŠœŠøŠ½ŠøŃŃ‚ерства обороны Российской ФеГерации'),
(63488, 'https://ror.org/02b1w8773', 'no_lang_code', 1, 'https://ror.org/02b1w8773 Giproniiaviaprom Š“ŠøŠæŃ€Š¾ŠŠ˜Š˜Š°Š²ŠøŠ°ŠæŃ€Š¾Š¼'),
(63489, 'https://ror.org/03t8xys90', 'en', 1, 'https://ror.org/03t8xys90 Shakhty Scientific Research and Design Coal Institute Шахтинский ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š£Š³Š¾Š»ŃŒŠ½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63490, 'https://ror.org/046wacp46', 'en', 1, 'https://ror.org/046wacp46 South-Russian State Polytechnic University named after MI Platov'),
(63491, 'https://ror.org/03har5c20', 'no_lang_code', 1, 'https://ror.org/03har5c20 Roszheldorproject (Russia) РосжелГорпроект'),
(63492, 'https://ror.org/053t6pj86', 'en', 1, 'https://ror.org/053t6pj86 Povolzhsky Research Institute of Ecological and Meliorative Technologies Волжский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³Š¾-мелиоративных технологий'),
(63493, 'https://ror.org/00rdb5f98', 'en', 1, 'https://ror.org/00rdb5f98 All-Russian Scientific Research Institute of Agrochemistry named after D.N. Pryanishnikova Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”.Š.ŠŸŃ€ŃŠ½ŠøŃˆŠ½ŠøŠŗŠ¾Š²Š°'),
(63494, 'https://ror.org/05dhs6t85', 'en', 1, 'https://ror.org/05dhs6t85 Krasnodar Higher Military School named after General of the Army S. Shtemenko ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ военное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ имени генерала армии Š”.М.Штеменко'),
(63495, 'https://ror.org/01x2aqm70', 'en', 1, 'https://ror.org/01x2aqm70 Tatar Scientific Research Institute of Agriculture Татарский ŠŠ˜Š˜ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63496, 'https://ror.org/036qc8g42', 'en', 1, 'https://ror.org/036qc8g42 Siberian Research Institute of Agriculture and Peat'),
(63497, 'https://ror.org/047mfz132', 'en', 1, 'https://ror.org/047mfz132 Siberian Scientific Research Institute of Oil Industry'),
(63498, 'https://ror.org/02qgskp52', 'en', 1, 'https://ror.org/02qgskp52 Institute of Medical Cell Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинских клеточных технологий'),
(63499, 'https://ror.org/02m679f68', 'en', 1, 'https://ror.org/02m679f68 Tula Artillery Engineering Institute Тульский артиллерийский инженерный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63500, 'https://ror.org/05gjb9r34', 'en', 1, 'https://ror.org/05gjb9r34 Siberian Research and Technological Institute for Processing Agricultural Products Š”ŠøŠ±ŠøŃ€ŃŠŗŠ¾Š¼Ńƒ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š¼Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ переработки ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŠæŃ€Š¾Š“ŃƒŠŗŃ†ŠøŠø'),
(63501, 'https://ror.org/022prt504', 'en', 1, 'https://ror.org/022prt504 Air Force Academy named after Professor NE Zhukovsky and Yu.A. Gagarin Военно-Š²Š¾Š·Š“ŃƒŃˆŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени профессора Š. Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾ Šø Š®. А. Гагарина'),
(63502, 'https://ror.org/0442x7317', 'en', 1, 'https://ror.org/0442x7317 Siberian State Order of the Red Banner of Labor Research Institute of Metrology Дибирский Š³Š¾ŃŃƒŠ“арственный орГена Š¢Ń€ŃƒŠ“ового ŠšŃ€Š°ŃŠ½Š¾Š³Š¾ Знамени Š½Š°ŃƒŃ‡Š½Š¾- ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(63503, 'https://ror.org/00zecgp48', 'en', 1, 'https://ror.org/00zecgp48 Scientific Research and Design Institute of Nitric Industry and Organic Synthesis Products ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ азотной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø Šø ŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š² органического синтеза'),
(63504, 'https://ror.org/03ya3p525', 'en', 1, 'https://ror.org/03ya3p525 Nizhny Novgorod State University of Engineering and Economics ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ инженерно-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(63505, 'https://ror.org/0018ymk77', 'no_lang_code', 1, 'https://ror.org/0018ymk77 Sibtsvetmetniiproekt Š”Š˜Š‘Š¦Š’Š•Š¢ŠœŠ•Š¢ŠŠ˜Š˜ŠŸŠ ŠžŠ•ŠšŠ¢'),
(63506, 'https://ror.org/00f9bzb82', 'no_lang_code', 1, 'https://ror.org/00f9bzb82 OAO Giproniselprom (Russia)'),
(63507, 'https://ror.org/03c1m8990', 'no_lang_code', 1, 'https://ror.org/03c1m8990 Institute Tsvetmetobrabotka Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Цветметобработка'),
(63508, 'https://ror.org/04gkr8m24', 'en', 1, 'https://ror.org/04gkr8m24 "ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ¾Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°" Kostroma Research Institute of Agriculture'),
(63509, 'https://ror.org/01ca0jg10', 'en', 1, 'https://ror.org/01ca0jg10 Krasnoyarsk Research Institute of Animal Husbandry ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ животновоГства'),
(63510, 'https://ror.org/04n7qr785', 'en', 1, 'https://ror.org/04n7qr785 Stavropol Research Institute of Agriculture Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠ¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63511, 'https://ror.org/03yhtwa63', 'en', 1, 'https://ror.org/03yhtwa63 Magadan Research Institute of Agriculture МагаГанский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63512, 'https://ror.org/03bn62179', 'en', 1, 'https://ror.org/03bn62179 Vilnius Higher Command School of Radioelectronics Air Defense Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠ¾Š³Š¾ Š²Ń‹ŃŃˆŠµŠ³Š¾ команГного ŃƒŃ‡ŠøŠ»ŠøŃ‰Š° Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø ŠŸŠ’Šž'),
(63513, 'https://ror.org/02hgfj293', 'en', 1, 'https://ror.org/02hgfj293 Siberian Research Institute of Agricultural Economics Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Š”Š¤ŠŠ¦Š Š ŠŠ'),
(63514, 'https://ror.org/00hcsjz98', 'en', 1, 'https://ror.org/00hcsjz98 Agrarian Science Center "Donskoy" Аграрный Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр «Донской»'),
(63515, 'https://ror.org/02n5gsq82', 'no_lang_code', 1, 'https://ror.org/02n5gsq82 Giprokoks (Ukraine) Š“Š˜ŠŸŠ ŠžŠšŠžŠšŠ”'),
(63516, 'https://ror.org/00v8t0x13', 'en', 1, 'https://ror.org/00v8t0x13 St. Petersburg Scientific Research Institute of Forestry Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лесного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63517, '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'),
(63518, 'https://ror.org/003p49p42', 'no_lang_code', 1, 'https://ror.org/003p49p42 Fundamentproekt (Russia) Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚ŠæŃ€Š¾ŠµŠŗŃ‚'),
(63519, 'https://ror.org/04dpyhy23', 'en', 1, 'https://ror.org/04dpyhy23 Association of American Veterinary Medical Colleges'),
(63520, 'https://ror.org/04ee9p839', 'en', 1, 'https://ror.org/04ee9p839 American Marketing Association'),
(63521, 'https://ror.org/04s21va03', 'en', 1, 'https://ror.org/04s21va03 Mythopoeic Society'),
(63522, 'https://ror.org/04rg8xb30', 'en', 1, 'https://ror.org/04rg8xb30 American Institute of Mining, Metallurgical, and Petroleum Engineers'),
(63523, 'https://ror.org/014v16267', 'en', 1, 'https://ror.org/014v16267 American Association for Agricultural Education'),
(63524, 'https://ror.org/0055vg673', 'en', 1, 'https://ror.org/0055vg673 Business History Conference'),
(63525, 'https://ror.org/0470pce88', 'en', 1, 'https://ror.org/0470pce88 Smolensk Scientific Research Institute of Agriculture Дмоленский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(63526, 'https://ror.org/0564x6103', 'en', 1, 'https://ror.org/0564x6103 Council of Scientific Society Presidents'),
(63527, 'https://ror.org/01cjh3728', 'en', 1, 'https://ror.org/01cjh3728 Research Institute of Bakery Industry ŠŠ˜Š˜ хлебопекарной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63528, 'https://ror.org/02h0gy831', 'en', 1, 'https://ror.org/02h0gy831 Institute of Transportation Engineers'),
(63529, 'https://ror.org/05cc6ax93', 'en', 1, 'https://ror.org/05cc6ax93 American College of Theriogenologists'),
(63530, 'https://ror.org/05byjjz14', 'en', 1, 'https://ror.org/05byjjz14 Ural Scientific Research Veterinary Institute Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ветеринарный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63531, 'https://ror.org/000tk0v89', 'no_lang_code', 1, 'https://ror.org/000tk0v89 Giprotyumenneftegaz (Russia) Š“ŠøŠæŃ€Š¾Ń‚ŃŽŠ¼ŠµŠ½Š½ŠµŃ„Ń‚ŠµŠ³Š°Š·'),
(63532, 'https://ror.org/0453axf13', 'en', 1, 'https://ror.org/0453axf13 Financial Management Association International'),
(63533, 'https://ror.org/05rmpy443', 'en', 1, 'https://ror.org/05rmpy443 Institute of Navigation'),
(63534, 'https://ror.org/01q8vz920', 'en', 1, 'https://ror.org/01q8vz920 Stavropol Research Institute of Animal Production and Feed Production Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ ŠŠ˜Š˜ животновоГства Šø кормопроизвоГства'),
(63535, 'https://ror.org/03t6zvf73', 'en', 1, 'https://ror.org/03t6zvf73 National Academy of Inventors'),
(63536, 'https://ror.org/04qd74z60', 'en', 1, 'https://ror.org/04qd74z60 Society for Personality Assessment'),
(63537, 'https://ror.org/005zkh270', 'en', 1, 'https://ror.org/005zkh270 American Risk and Insurance Association'),
(63538, 'https://ror.org/01zqjg022', 'en', 1, 'https://ror.org/01zqjg022 United States Association for Computational Mechanics'),
(63539, 'https://ror.org/01vw57x46', 'no_lang_code', 1, 'https://ror.org/01vw57x46 Rosneft (Russia) Š Š¾ŃŠ½ŠµĢŃ„Ń‚ŃŒ'),
(63540, 'https://ror.org/04frvwq31', 'en', 1, 'https://ror.org/04frvwq31 International Research Society for Public Management'),
(63541, 'https://ror.org/04smcbj26', 'en', 1, 'https://ror.org/04smcbj26 Council of Educators in Landscape Architecture'),
(63542, 'https://ror.org/01g09cg68', 'en', 1, 'https://ror.org/01g09cg68 Health Physics Society'),
(63543, 'https://ror.org/01t20fb17', 'en', 1, 'https://ror.org/01t20fb17 Society of Naval Architects and Marine Engineers'),
(63544, 'https://ror.org/036b8s592', 'en', 1, 'https://ror.org/036b8s592 The Folklore Society'),
(63545, 'https://ror.org/01t8k0773', 'en', 1, 'https://ror.org/01t8k0773 Society for the Scientific Study of Sexuality'),
(63546, 'https://ror.org/00dg6q264', 'en', 1, 'https://ror.org/00dg6q264 National Academy of Kinesiology'),
(63547, 'https://ror.org/0520y8c54', 'no_lang_code', 1, 'https://ror.org/0520y8c54 SverdNIIhimmash ДверГловский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химического Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(63548, 'https://ror.org/00cdtmq09', 'en', 1, 'https://ror.org/00cdtmq09 North American Society for Sport Management'),
(63549, 'https://ror.org/01zd5r820', 'no_lang_code', 1, 'https://ror.org/01zd5r820 Energostal (Ukraine) Š£ŠšŠ ŠŠ˜ŠŠ”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š¢Š•Š„ŠŠ˜Š§Š•Š”ŠšŠ˜Š™ Š¦Š•ŠŠ¢Š  ŠœŠ•Š¢ŠŠ›Š›Š£Š Š“Š˜Š§Š•Š”ŠšŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(63550, 'https://ror.org/04bddhf44', 'en', 1, 'https://ror.org/04bddhf44 American Medical Writers Association'),
(63551, 'https://ror.org/03cyrwm25', 'en', 1, 'https://ror.org/03cyrwm25 National Council on Family Relations'),
(63552, 'https://ror.org/00wkvrs75', 'en', 1, 'https://ror.org/00wkvrs75 State Scientific Research Institute of Biological Instrumentation Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š‘Š˜ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠžŠ“Šž ŠŸŠ Š˜Š‘ŠžŠ ŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ'),
(63553, 'https://ror.org/03q5f3h16', 'en', 1, 'https://ror.org/03q5f3h16 National Women''s Studies Association'),
(63554, 'https://ror.org/05n6vhy89', 'en', 1, 'https://ror.org/05n6vhy89 Jacobs Levy Equity Management'),
(63555, 'https://ror.org/04k8w6g96', 'en', 1, 'https://ror.org/04k8w6g96 National Tax Association'),
(63556, 'https://ror.org/02npqkq54', 'en', 1, 'https://ror.org/02npqkq54 Human Factors and Ergonomics Society'),
(63557, 'https://ror.org/03cvn7e55', 'en', 1, 'https://ror.org/03cvn7e55 Women In Technology International'),
(63558, 'https://ror.org/0597zww19', 'en', 1, 'https://ror.org/0597zww19 African Literature Association'),
(63559, 'https://ror.org/03900bm02', 'en', 1, 'https://ror.org/03900bm02 Institute for Public Relations'),
(63560, 'https://ror.org/01zfykz78', 'en', 1, 'https://ror.org/01zfykz78 Network of Schools of Public Policy, Affairs, and Administration'),
(63561, 'https://ror.org/05gga8159', 'en', 1, 'https://ror.org/05gga8159 Yakut Scientific Research Institute of Agriculture ŠÆŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° имени М.Š“. Дафронова'),
(63562, 'https://ror.org/029crhw36', 'no_lang_code', 1, 'https://ror.org/029crhw36 Siberian Research and Design Institute (Russia) Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63563, 'https://ror.org/01eb2ss72', 'no_lang_code', 1, 'https://ror.org/01eb2ss72 Stallergenes Greer (Australia)'),
(63564, 'https://ror.org/02wazkc54', 'en', 1, 'https://ror.org/02wazkc54 Ivanovo State Agricultural Academy named after D.K. Belyaev Š˜Š²Š°Š½Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Š”.К. Š‘ŠµŠ»ŃŠµŠ²Š°'),
(63565, 'https://ror.org/04aexvn38', 'no_lang_code', 1, 'https://ror.org/04aexvn38 Stallergenes Greer (Spain)'),
(63566, 'https://ror.org/0516ekw41', 'en', 1, 'https://ror.org/0516ekw41 Federal Protective Service Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба охраны'),
(63567, 'https://ror.org/05damwn69', 'en', 1, 'https://ror.org/05damwn69 Naval Academy named after Admiral of the Fleet of the Soviet Union NG Kuznetsov ŠœŠ¾Ń€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ им. АГмирала флота Доветского Š”Š¾ŃŽŠ·Š° Š. Š“. ŠšŃƒŠ·Š½ŠµŃ†Š¾Š²'),
(63568, 'https://ror.org/04cfbcn47', 'en', 1, 'https://ror.org/04cfbcn47 Mikhailovsky Military Artillery Academy ŠœŠøŃ…Š°Š¹Š»Š¾Š²ŃŠŗŠ°Ń Š²Š¾ŠµŠ½Š½Š°Ń Š°Ń€Ń‚ŠøŠ»Š»ŠµŃ€ŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(63569, 'https://ror.org/00wwk7w85', 'en', 1, 'https://ror.org/00wwk7w85 Federal Scientific Center for Agroecology, Integrated Land Reclamation and Protective Afforestation'),
(63570, 'https://ror.org/057dje809', 'en', 1, 'https://ror.org/057dje809 KBP Instrument Design Bureau ŠšŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾Šµ Š±ŃŽŃ€Š¾ ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ им. акаГемика А. Š“. Шипунова'),
(63571, 'https://ror.org/04crchr76', 'en', 1, 'https://ror.org/04crchr76 Military Academy of Communications named after Marshal of the Soviet Union SM Budennogo Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠ²ŃŠ·Šø имени ŠœŠ°Ń€ŃˆŠ°Š»Š° Доветского Š”Š¾ŃŽŠ·Š° Š”. М. Š‘ŃƒŠ“Ń‘Š½Š½Š¾Š³Š¾'),
(63572, '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 Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ возГушно-космической обороны имени Š¼Š°Ń€ŃˆŠ°Š»Š° Доветского Š”Š¾ŃŽŠ·Š° Š“.К. Š–ŃƒŠŗŠ¾Š²Š°'),
(63573, 'https://ror.org/03xdgrg08', 'no_lang_code', 1, 'https://ror.org/03xdgrg08 Academician M.F. Reshetnev Information Satellite Systems (Russia) Ā«Š˜ŠŠ¤ŠžŠ ŠœŠŠ¦Š˜ŠžŠŠŠ«Š• Š”ŠŸŠ£Š¢ŠŠ˜ŠšŠžŠ’Š«Š• Š”Š˜Š”Š¢Š•ŠœŠ«Ā» имени акаГемика М.Ф. Š ŠµŃˆŠµŃ‚Š½Ń‘Š²Š°Ā»'),
(63574, 'https://ror.org/04a19s309', 'en', 1, 'https://ror.org/04a19s309 Academician Pilyugin Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный центр автоматики Šø ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ имени акаГемика Š. А. ŠŸŠøŠ»ŃŽŠ³ŠøŠ½Š°'),
(63575, '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) ŠŠŸŠž автоматики имени акаГемика Š. А. Демихатова'),
(63576, 'https://ror.org/010rhww45', 'en', 1, 'https://ror.org/010rhww45 Experimental Factory of Scientific Engineering and Special Design Department Š­ŠšŠ”ŠŸŠ•Š Š˜ŠœŠ•ŠŠ¢ŠŠ›Š¬ŠŠ«Š™ Š—ŠŠ’ŠžŠ” ŠŠŠ£Š§ŠŠžŠ“Šž ŠŸŠ Š˜Š‘ŠžŠ ŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ Š”Šž Š”ŠŸŠ•Š¦Š˜ŠŠ›Š¬ŠŠ«Šœ ŠšŠžŠŠ”Š¢Š Š£ŠšŠ¢ŠžŠ Š”ŠšŠ˜Šœ Š‘Š®Š Šž'),
(63577, 'https://ror.org/006knem90', 'en', 1, 'https://ror.org/006knem90 Tatar Scientific Research Institute of Agrochemistry and Soil Science Татарский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ агрохимии Šø ŠæŠ¾Ń‡Š²Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ - обособленное ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€Š½Š¾Šµ поГразГеление Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Š³Š¾ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŃ науки'),
(63578, 'https://ror.org/0320mrm05', 'no_lang_code', 1, 'https://ror.org/0320mrm05 Academician V.P.Makeyev State Rocket Centre (Russia) Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ракетный центр имени акаГемика Š’.П. Макеева'),
(63579, 'https://ror.org/0567jx130', 'en', 1, 'https://ror.org/0567jx130 Combined Arms Academy of the Armed Forces of the Russian Federation ŠžŠ±Ń‰ŠµŠ²Š¾Š¹ŃŠŗŠ¾Š²Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š’Š¾Š¾Ń€ŃƒŠ¶Ń‘Š½Š½Ń‹Ń… Дил Российской ФеГерации'),
(63580, 'https://ror.org/0557kgc34', 'en', 1, 'https://ror.org/0557kgc34 Computing Center Š’Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ центр'),
(63581, 'https://ror.org/03y5fjm90', 'en', 1, 'https://ror.org/03y5fjm90 Special Design Bureau for Automation of Marine Research Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Š³Š¾ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŃ науки Š”ŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾Š³Š¾ Š±ŃŽŃ€Š¾ среГств автоматизации морских исслеГований Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(63582, 'https://ror.org/019taje90', 'en', 1, 'https://ror.org/019taje90 Institute of Technology of Metals Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š˜ ŠœŠ•Š¢ŠŠ›Š›ŠžŠ’'),
(63583, 'https://ror.org/02j6dqk07', 'no_lang_code', 1, 'https://ror.org/02j6dqk07 Coletex (Russia) ŠšŠ¾Š»ŠµŃ‚ŠµŠŗŃ'),
(63584, 'https://ror.org/030d9pd22', 'en', 1, 'https://ror.org/030d9pd22 International Academy of Ecology, Human and Nature Safety ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук ŃŠŗŠ¾Š»Š¾Š³ŠøŠø, безопасности человека Šø прироГы'),
(63585, '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 Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š’Š¾Š·Š“ŃƒŃˆŠ½Š¾-Гесантных войск Š’Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½Š½Ń‹Ń… Дил Российской ФеГерации им. ŠœŠ°Ń€ŃˆŠ°Š»Š° Доветского Š”Š¾ŃŽŠ·Š° А.М. Василевский'),
(63586, 'https://ror.org/03t5r4496', 'no_lang_code', 1, 'https://ror.org/03t5r4496 Zvezda (Russia) ЗвезГа'),
(63587, 'https://ror.org/05bfe1413', 'no_lang_code', 1, 'https://ror.org/05bfe1413 NPO Energomash (Russia) ŠŠŸŠž Š­Š½ŠµŃ€Š³Š¾Š¼Š°Ńˆ'),
(63588, '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 Детский Š½Š°ŃƒŃ‡Š½Š¾-клинический центр инфекционных заболеваний Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(63589, 'https://ror.org/03fvze758', 'en', 1, 'https://ror.org/03fvze758 Research Institute of Comprehensive Exploitation of Mineral Resources Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем комплексного Š¾ŃŠ²Š¾ŠµŠ½ŠøŃ неГр Š ŠŠ'),
(63590, 'https://ror.org/049e30b03', 'en', 1, 'https://ror.org/049e30b03 Complex Scientific Research Institute. H.I. Ibrahimov ŠšŠ¾Š¼ŠæŠ»ŠµŠŗŃŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š„. И. Š˜Š±Ń€Š°Š³ŠøŠ¼Š¾Š²Š° Российской акаГемии наук'),
(63591, 'https://ror.org/01fvvak72', 'en', 1, 'https://ror.org/01fvvak72 Russian Engineering Academy Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŠøŠ½Š¶ŠµŠ½ŠµŃ€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(63592, 'https://ror.org/029jy4332', 'en', 1, 'https://ror.org/029jy4332 Military University Военный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(63593, 'https://ror.org/03w9cnt37', 'en', 1, 'https://ror.org/03w9cnt37 Gansu Normal University for Nationalities ē”˜č‚ƒę°‘ę—åøˆčŒƒå­¦é™¢'),
(63594, 'https://ror.org/04wmrj902', 'no_lang_code', 1, 'https://ror.org/04wmrj902 Guangdong Baiyun University ź“‘ė™ė°±ģš“ėŒ€ķ•™źµėŠ”'),
(63595, 'https://ror.org/00xdme738', 'en', 1, 'https://ror.org/00xdme738 Hunan Radio and Television University ę¹–å—å¹æę’­ē”µč§†å¤§å­¦'),
(63596, 'https://ror.org/01551ga11', 'en', 1, 'https://ror.org/01551ga11 Hunan International Economics University ę¹–å—ę¶‰å¤–ē»ęµŽå­¦é™¢'),
(63597, 'https://ror.org/059s9d453', 'en', 1, 'https://ror.org/059s9d453 Liming Vocational University é»Žę˜ŽčŒäøšå¤§å­¦'),
(63598, 'https://ror.org/02vdh2x09', 'en', 1, 'https://ror.org/02vdh2x09 City College of Dongguan University of Technology äøœčŽžē†å·„å­¦é™¢åŸŽåø‚å­¦é™¢'),
(63599, 'https://ror.org/05495v729', 'en', 1, 'https://ror.org/05495v729 Luliang University 吕梁学院'),
(63600, 'https://ror.org/00xh1ex65', 'en', 1, 'https://ror.org/00xh1ex65 Harbin Huade University å“ˆå°”ę»ØåŽå¾·å­¦é™¢'),
(63601, 'https://ror.org/05k2j8e48', 'en', 1, 'https://ror.org/05k2j8e48 Jiangxi University of Technology ę±Ÿč„æē§‘ęŠ€å­¦é™¢'),
(63602, 'https://ror.org/05sg01b25', 'en', 1, 'https://ror.org/05sg01b25 Minnan University of Science and Technology'),
(63603, 'https://ror.org/012czx379', 'en', 1, 'https://ror.org/012czx379 Jingdezhen University 景德镇学院'),
(63604, 'https://ror.org/01de7qg49', 'en', 1, 'https://ror.org/01de7qg49 Cangzhou Normal University ę²§å·žåøˆčŒƒå­¦é™¢'),
(63605, 'https://ror.org/0221fhj86', 'en', 1, 'https://ror.org/0221fhj86 Heihe University 黑河学院'),
(63606, 'https://ror.org/05hxcq922', 'en', 1, 'https://ror.org/05hxcq922 Heilongjiang Electric Power Workers University é»‘é¾™ę±Ÿē”µåŠ›čŒå·„å¤§å­¦'),
(63607, 'https://ror.org/00146qx36', 'en', 1, 'https://ror.org/00146qx36 Jiujiang Vocational University ä¹ę±ŸčŒäøšå¤§å­¦'),
(63608, 'https://ror.org/032sv9d33', 'en', 1, 'https://ror.org/032sv9d33 Jiyang College of Zhejiang A&F University'),
(63609, 'https://ror.org/01cv0qm48', 'en', 1, 'https://ror.org/01cv0qm48 Heilongjiang International University'),
(63610, 'https://ror.org/05weh2538', 'en', 1, 'https://ror.org/05weh2538 Henan Radio and Television University ę²³å—å¹æę’­ē”µč§†å¤§å­¦'),
(63611, 'https://ror.org/050g87e49', 'en', 1, 'https://ror.org/050g87e49 Henan Forestry Vocational College ę²³å—ęž—äøščŒäøšå­¦é™¢'),
(63612, 'https://ror.org/01bx4e159', 'no_lang_code', 1, 'https://ror.org/01bx4e159 Shandong Xiehe University å±±äøœåå’Œå­¦é™¢'),
(63613, 'https://ror.org/01243ws42', 'en', 1, 'https://ror.org/01243ws42 TianjinSino-German University of Applied Sciences å¤©ę“„äø­å¾·åŗ”ē”ØęŠ€ęœÆå¤§å­¦'),
(63614, 'https://ror.org/032fx1s95', 'no_lang_code', 1, 'https://ror.org/032fx1s95 Xi''an Peihua University č„æå®‰åŸ¹åŽå­¦é™¢'),
(63615, 'https://ror.org/04zxtq045', 'en', 1, 'https://ror.org/04zxtq045 Xiamen Nanyang University åŽ¦é—Øå—ę“‹å­¦é™¢'),
(63616, 'https://ror.org/05kqdk687', 'en', 1, 'https://ror.org/05kqdk687 Xiangyang Hospital of Traditional Chinese Medicine č„„é˜³äø­åŒ»åŒ»é™¢'),
(63617, 'https://ror.org/03qn8zy63', 'en', 1, 'https://ror.org/03qn8zy63 Xi''an Aeronautical University č„æå®‰čˆŖē©ŗå­¦é™¢'),
(63618, 'https://ror.org/03sxsay12', 'en', 1, 'https://ror.org/03sxsay12 Yangzhou Vocational University ę‰¬å·žåø‚čŒäøšå¤§å­¦'),
(63619, 'https://ror.org/0499b1896', 'en', 1, 'https://ror.org/0499b1896 Yantai Nanshan University ēƒŸå°å—å±±å­¦é™¢'),
(63620, 'https://ror.org/04egk7864', 'en', 1, 'https://ror.org/04egk7864 Yunnan Open University äŗ‘å—å¼€ę”¾å¤§å­¦'),
(63621, 'https://ror.org/027714w23', 'no_lang_code', 1, 'https://ror.org/027714w23 Zhejiang Shangfeng Industry (China) ęµ™ę±ŸäøŠęµ·å·„äøš'),
(63622, 'https://ror.org/03wgebb29', 'en', 1, 'https://ror.org/03wgebb29 Beijing Nonferrous Metals and Rare Earth Applications Institute åŒ—äŗ¬ęœ‰č‰²é‡‘å±žäøŽēØ€åœŸåŗ”ē”Øē ”ē©¶ę‰€'),
(63623, 'https://ror.org/000vg1h78', 'en', 1, 'https://ror.org/000vg1h78 Beijing Institute of Nutritional Sources åŒ—äŗ¬åø‚č„å…»ęŗē ”ē©¶ę‰€'),
(63624, 'https://ror.org/01rb6gh35', 'en', 1, 'https://ror.org/01rb6gh35 China Railway Fifth Survey and Design Institute Group äø­å›½é“č·Æē¬¬äŗ”å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢é›†å›¢'),
(63625, 'https://ror.org/04xhs0x67', 'no_lang_code', 1, 'https://ror.org/04xhs0x67 Beijing Survey and Design Institute (China) åŒ—äŗ¬åø‚å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢ęœ‰é™'),
(63626, 'https://ror.org/00rhvvr45', 'no_lang_code', 1, 'https://ror.org/00rhvvr45 China Railway Shanghai Design Institute Group (China) äø­é“äøŠęµ·č®¾č®”é™¢é›†å›¢'),
(63627, 'https://ror.org/02e8xmx84', 'en', 1, 'https://ror.org/02e8xmx84 China International Engineering Design & Research Institute äø­ęœŗå›½é™…å·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(63628, 'https://ror.org/02qby5382', 'en', 1, 'https://ror.org/02qby5382 Anhui Institute of Architectural Research and Design'),
(63629, 'https://ror.org/048p60388', 'no_lang_code', 1, 'https://ror.org/048p60388 Beijing Railway Institute of Mechanical & Electrical Engineering Group (China) åŒ—äŗ¬é“é“å·„ēØ‹ęœŗē”µęŠ€ęœÆē ”ē©¶ę‰€č‚”ä»½ęœ‰é™å…¬'),
(63630, 'https://ror.org/01r7kys31', 'en', 1, 'https://ror.org/01r7kys31 Anhui DingHeng Manufacturing Industry Technology Research Institute å®‰å¾½é¼Žę’åˆ¶é€ ęŠ€ęœÆē ”ē©¶é™¢'),
(63631, 'https://ror.org/02gynz496', 'en', 1, 'https://ror.org/02gynz496 MCC Huatian Engineering and Technology Corporation äø­å†¶åŽå¤©å·„ēØ‹ęŠ€ęœÆå…¬åø'),
(63632, 'https://ror.org/00vx4ds80', 'no_lang_code', 1, 'https://ror.org/00vx4ds80 Anhui Fuhuang Architectural Design Research (China)'),
(63633, 'https://ror.org/04emf4852', 'en', 1, 'https://ror.org/04emf4852 Xi''an Railway Survey and Design Institute č„æå®‰é“č·Æå‹˜ęµ‹č®¾č®”é™¢'),
(63634, 'https://ror.org/05gftfe97', 'no_lang_code', 1, 'https://ror.org/05gftfe97 China Mobile (China) äø­å›½ē§»åŠØ'),
(63635, 'https://ror.org/033wz4y55', 'no_lang_code', 1, 'https://ror.org/033wz4y55 Anhui East China Institute of Optoelectronic Technology (China)'),
(63636, 'https://ror.org/01bg7hf93', 'no_lang_code', 1, 'https://ror.org/01bg7hf93 Anhui Huizhou Geological Safety Research Institute (China)'),
(63637, 'https://ror.org/03q3een69', 'no_lang_code', 1, 'https://ror.org/03q3een69 China Communications Construction Company (China) äø­å›½äŗ¤é€šå»ŗč®¾å…¬åø'),
(63638, 'https://ror.org/01bac4y65', 'en', 1, 'https://ror.org/01bac4y65 Beijing Tianheng Pharmaceutical Research Institute åŒ—äŗ¬å¤©č””čÆē‰©ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63639, 'https://ror.org/04sbhzq93', 'en', 1, 'https://ror.org/04sbhzq93 China Nonferrous Metals Changsha Investigation Design Institute äø­å›½ęœ‰č‰²é‡‘å±žé•æę²™å‹˜åÆŸč®¾č®”é™¢'),
(63640, 'https://ror.org/01fmwwp26', 'en', 1, 'https://ror.org/01fmwwp26 China Special Equipment Inspection and Research Institute äø­å›½ē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(63641, 'https://ror.org/01nqeer97', 'en', 1, 'https://ror.org/01nqeer97 Anhui Special Equipment Inspection Institute'),
(63642, 'https://ror.org/02h6hms35', 'no_lang_code', 1, 'https://ror.org/02h6hms35 Anhui Transport Consulting & Design Institute (China) å®‰å¾½äŗ¤é€šå’ØčÆ¢č®¾č®”é™¢'),
(63643, 'https://ror.org/05ypnbp35', 'no_lang_code', 1, 'https://ror.org/05ypnbp35 Anhui Provincial Urban Construction Design & Research Institute (China)'),
(63644, 'https://ror.org/033mgm122', 'no_lang_code', 1, 'https://ror.org/033mgm122 China Datang Corporation (China) äø­å›½å¤§å”é›†å›¢ē§‘ęŠ€ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63645, 'https://ror.org/00fpj7t66', 'no_lang_code', 1, 'https://ror.org/00fpj7t66 China General Nuclear Power Corporation (China) 中国广核集团'),
(63646, 'https://ror.org/02rehe313', 'en', 1, 'https://ror.org/02rehe313 China Communications Tianjin Port Exploration & Design Institute äø­äŗ¤å¤©å’Œęœŗę¢°č®¾å¤‡åˆ¶é€ '),
(63647, 'https://ror.org/03wjb5650', 'no_lang_code', 1, 'https://ror.org/03wjb5650 China International Marine Containers (China) 中国国际海运集装箱'),
(63648, 'https://ror.org/04y08pq82', 'no_lang_code', 1, 'https://ror.org/04y08pq82 CCCC Wuhan Harbour Engineering Design and Research (China) 中交武汉港湾巄程设讔研究院'),
(63649, 'https://ror.org/00n7rz703', 'no_lang_code', 1, 'https://ror.org/00n7rz703 South China Municipal Engineering Design and Research Institute (China) äø­å›½åø‚ę”æå·„ēØ‹äø­å—č®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬'),
(63650, 'https://ror.org/04rveb346', 'no_lang_code', 1, 'https://ror.org/04rveb346 China State Shipbuilding (China) äø­å›½čˆ¹čˆ¶å·„äøšé›†å›¢å…¬åø'),
(63651, 'https://ror.org/048xn9q22', 'en', 1, 'https://ror.org/048xn9q22 China National Petroleum and Chemical Planning Institute ēŸ³ę²¹å’ŒåŒ–å­¦å·„äøšč§„åˆ’é™¢'),
(63652, 'https://ror.org/02nbbm116', 'no_lang_code', 1, 'https://ror.org/02nbbm116 Changchun Municipal Engineering Design and Research Institute (China) é•æę˜„åø‚åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢ č”ē³»ē”µčÆ'),
(63653, 'https://ror.org/05rn7n590', 'no_lang_code', 1, 'https://ror.org/05rn7n590 HeidelbergCement (Italy)'),
(63654, 'https://ror.org/00bh8v131', 'en', 1, 'https://ror.org/00bh8v131 Changjiang Institute of Survey, Planning, Design and Research é•æę±Ÿå‹˜ęµ‹č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(63655, 'https://ror.org/02pgg0p54', 'en', 1, 'https://ror.org/02pgg0p54 Russian Union of Refrigeration Enterprises Российский ŃŠ¾ŃŽŠ· ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠ¹ Ń…Š¾Š»Š¾Š“ŠøŠ»ŃŒŠ½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63656, 'https://ror.org/05egxdg81', 'en', 1, 'https://ror.org/05egxdg81 Institute of Advanced Manufacturing Technology'),
(63657, 'https://ror.org/0353t4m91', 'no_lang_code', 1, 'https://ror.org/0353t4m91 First Automotive Works (China)'),
(63658, 'https://ror.org/010znyz59', 'en', 1, 'https://ror.org/010znyz59 Beijing Agricultural Machinery Research Institute åŒ—äŗ¬åø‚å†œäøšęœŗę¢°ē ”ē©¶ę‰€'),
(63659, 'https://ror.org/018e2qw40', 'en', 1, 'https://ror.org/018e2qw40 Chongqing Metrology Quality Inspection and Research Institute é‡åŗ†åø‚č®”é‡č“Øé‡ę£€ęµ‹ē ”ē©¶é™¢'),
(63660, 'https://ror.org/02emh6z37', 'no_lang_code', 1, 'https://ror.org/02emh6z37 Changzhou Institute of Printed Electronics Industry åøøå·žå°åˆ·ē”µå­äŗ§äøšē ”ē©¶é™¢é”µ'),
(63661, 'https://ror.org/0192men59', 'en', 1, 'https://ror.org/0192men59 Changzhou Institute of Mechatronic Technology åøøå·žęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(63662, 'https://ror.org/04wgf7387', 'no_lang_code', 1, 'https://ror.org/04wgf7387 Beijing Building Construction Research Institute (China) åŒ—äŗ¬å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63663, 'https://ror.org/028xtjj97', 'no_lang_code', 1, 'https://ror.org/028xtjj97 Chengdu Design & Research Institute of Building Materials Industry (China) ęˆéƒ½å»ŗē­‘ęę–™å·„äøšč®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬'),
(63664, 'https://ror.org/05tq31x39', 'no_lang_code', 1, 'https://ror.org/05tq31x39 Beijing Automotive Group (China) åŒ—äŗ¬ę±½č½¦å·„äøšęŽ§č‚”ęœ‰é™č“£ä»»å…¬åø'),
(63665, 'https://ror.org/01bs84e19', 'no_lang_code', 1, 'https://ror.org/01bs84e19 CCCC Highway Consultants (China) äø­äŗ¤å…¬č·Æč§„åˆ’č®¾č®”é™¢ęœ‰é™å…¬åø'),
(63666, 'https://ror.org/02v74rx67', 'en', 1, 'https://ror.org/02v74rx67 Chengdu Pump Application Technology Research Institute'),
(63667, 'https://ror.org/00tpwmd46', 'en', 1, 'https://ror.org/00tpwmd46 China Household Electrical Appliances Research Institute 中国家用电器研究院'),
(63668, 'https://ror.org/0329dzd04', 'no_lang_code', 1, 'https://ror.org/0329dzd04 Vanke (China) 萬科'),
(63669, 'https://ror.org/001h7kn14', 'no_lang_code', 1, 'https://ror.org/001h7kn14 Hefei Design and Research Institute of Coal Industry (China) ē…¤ē‚­å·„äøšåˆč‚„č®¾č®”ē ”ē©¶é™¢'),
(63670, 'https://ror.org/014nzyr79', 'en', 1, 'https://ror.org/014nzyr79 China Railway Economic and Planning Research Institute äø­å›½é“č·Æē»ęµŽäøŽč§„åˆ’ē ”ē©¶é™¢'),
(63671, 'https://ror.org/05qw55b97', 'en', 1, 'https://ror.org/05qw55b97 China Railway Construction Machinery Research & Design Institute äø­é“å·„ēØ‹ęœŗę¢°ē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åøé™¢ē®€ä»‹'),
(63672, 'https://ror.org/041zqvj62', 'no_lang_code', 1, 'https://ror.org/041zqvj62 Toray (China) 东丽'),
(63673, 'https://ror.org/03gyssm79', 'no_lang_code', 1, 'https://ror.org/03gyssm79 China Railway Construction Corporation (China) äø­å›½é“č·Æå»ŗč®¾ę€»å…¬åø'),
(63674, 'https://ror.org/02vx4zx98', 'en', 1, 'https://ror.org/02vx4zx98 Beijing Jingshida Electromechanical Equipment Research Institute åŒ—äŗ¬åø‚č­¦č§†č¾¾ęœŗē”µč®¾å¤‡ē ”ē©¶ę‰€ęœ‰é™'),
(63675, 'https://ror.org/02pzg9066', 'no_lang_code', 1, 'https://ror.org/02pzg9066 China Railway Major Bridge Reconnaissance & Design Institute (China) äø­å›½é“č·Æå¤§ę”„å‹˜åÆŸč®¾č®”é™¢'),
(63676, 'https://ror.org/03wdfwr71', 'en', 1, 'https://ror.org/03wdfwr71 Guangdong Testing Institute for Product Quality Supervision å¹æäøœēœäŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒē ”ē©¶é™¢'),
(63677, 'https://ror.org/02crg7060', 'en', 1, 'https://ror.org/02crg7060 Guangzhou Urban Planning Survey & Design Institute å¹æå·žåø‚åŸŽåø‚č§„åˆ’å‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢'),
(63678, 'https://ror.org/04fxnt467', 'en', 1, 'https://ror.org/04fxnt467 Guangdong Institute of Rare Metals'),
(63679, 'https://ror.org/01f6j5k03', 'en', 1, 'https://ror.org/01f6j5k03 Harbin Liushun Electric Automation Design Institute å“ˆå°”ę»Øåø‚å…­é”ŗē”µę°”č‡ŖåŠØåŒ–č®¾č®”ē ”ē©¶ę‰€'),
(63680, 'https://ror.org/04cyde307', 'en', 1, 'https://ror.org/04cyde307 Guangdong Southern Telecommunication Planning Consulting & Design Institute å¹æäøœå—ę–¹ē”µäæ”č§„åˆ’å’ØčÆ¢č®¾č®”é™¢ęœ‰é™å…¬åø'),
(63681, 'https://ror.org/03x92hw77', 'no_lang_code', 1, 'https://ror.org/03x92hw77 Beijing Municipal Engineering Design and Research Institute (China) åŒ—äŗ¬åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(63682, 'https://ror.org/023byrq13', 'en', 1, 'https://ror.org/023byrq13 Guangdong Province Special Equipment Testing and Research Institute Zhuhai Testing Institute å¹æäøœēœē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢ē ęµ·ę£€ęµ‹é™¢'),
(63683, 'https://ror.org/01t81st47', 'en', 1, 'https://ror.org/01t81st47 Yantai Academy of Agricultural Sciences ēƒŸå°å†œäøšē§‘å­¦é™¢'),
(63684, 'https://ror.org/03q4yat34', 'no_lang_code', 1, 'https://ror.org/03q4yat34 Guangdong Taibao Medical Technology (China) å¹æäøœę³°å®åŒ»ē–—ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(63685, 'https://ror.org/01xbd6g65', 'en', 1, 'https://ror.org/01xbd6g65 Beijing Institute of Neurosurgery'),
(63686, 'https://ror.org/059mggq50', 'en', 1, 'https://ror.org/059mggq50 Hunan Coal Science Research Institute ę¹–å—ēœē…¤ē‚­ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63687, 'https://ror.org/01dqs7f31', 'en', 1, 'https://ror.org/01dqs7f31 Guangdong Research Institute of Water Resources and Hydropower å¹æäøœēœę°“åˆ©ę°“ē”µē§‘å­¦ē ”ē©¶é™¢'),
(63688, 'https://ror.org/022qbnw53', 'en', 1, 'https://ror.org/022qbnw53 Guangdong Province Welding Technology Institute'),
(63689, 'https://ror.org/025c9az97', 'en', 1, 'https://ror.org/025c9az97 Hunan Nonferrous Metal Research Institute ę¹–å—ęœ‰č‰²é‡‘å±žē ”ē©¶é™¢åˆ›å»ŗ'),
(63690, 'https://ror.org/0297e7684', 'no_lang_code', 1, 'https://ror.org/0297e7684 Sanhua Holding Group (China) äø‰åŽęŽ§č‚”é›†å›¢'),
(63691, 'https://ror.org/05m4yff41', 'en', 1, 'https://ror.org/05m4yff41 Guangdong Institute of New Materials å¹æäøœēœę–°ęę–™ē ”ē©¶ę‰€'),
(63692, 'https://ror.org/05j918z43', 'en', 1, 'https://ror.org/05j918z43 Hunan Institute of Nuclear Agronomy and Space Breeding ę¹–å—ēœę øå†œå­¦äøŽčˆŖå¤©č‚²ē§ē ”ē©¶ę‰€'),
(63693, 'https://ror.org/00ahhj040', 'en', 1, 'https://ror.org/00ahhj040 Hangzhou Quality and Technical Supervision and Testing Institute ę­å·žåø‚č“Øé‡ęŠ€ęœÆē›‘ē£ę£€ęµ‹é™¢'),
(63694, 'https://ror.org/00mr5v348', 'no_lang_code', 1, 'https://ror.org/00mr5v348 Jinan Foundry and Metalforming Machinery Research Institute (China) ęµŽå—é“øé€ é”»åŽ‹ęœŗę¢°ē ”ē©¶ę‰€'),
(63695, 'https://ror.org/05cvya303', 'en', 1, 'https://ror.org/05cvya303 Harbin FRP Research Institute å“ˆå°”ę»ØēŽ»ē’ƒé’¢ē ”ē©¶é™¢'),
(63696, 'https://ror.org/02n6fv369', 'en', 1, 'https://ror.org/02n6fv369 Jinhua Academy of Agricultural Sciences'),
(63697, 'https://ror.org/05wbeav13', 'en', 1, 'https://ror.org/05wbeav13 Hunan Rare Earth Metal Material Research Institute ę¹–å—ēØ€åœŸé‡‘å±žęę–™ē ”ē©¶ę‰€');
INSERT INTO `rors` VALUES
(63698, 'https://ror.org/01t1hq354', 'en', 1, 'https://ror.org/01t1hq354 Soil and Fertilizer Institute of Hunan Province ę¹–å—ēœåœŸå£¤č‚„ę–™ē ”ē©¶ę‰€ęˆ'),
(63699, 'https://ror.org/04xrq1760', 'en', 1, 'https://ror.org/04xrq1760 Jurong Jinghou Machinery Research Institute å„å®¹äŗ¬ä¾Æęœŗę¢°ē ”ē©¶ę‰€'),
(63700, 'https://ror.org/029t9vk58', 'no_lang_code', 1, 'https://ror.org/029t9vk58 Yonker Environmental Protection (China) ę°øęø…ēŽÆäæč‚”ä»½ęœ‰é™å…¬åø'),
(63701, 'https://ror.org/046268q59', 'no_lang_code', 1, 'https://ror.org/046268q59 Foshan Ceramics Research Institute (China) ä½›å±±åø‚é™¶ē“·ē ”ē©¶ę‰€ęœ‰é™'),
(63702, 'https://ror.org/05w23xy58', 'en', 1, 'https://ror.org/05w23xy58 Guangxi Machinery Industry Research Institute'),
(63703, 'https://ror.org/05datya05', 'en', 1, 'https://ror.org/05datya05 Hunan Institute of Energy Storage Materials and Devices ę¹–å—ēœå‚Øčƒ½ęę–™äøŽå™Øä»¶ē ”ē©¶ę‰€'),
(63704, 'https://ror.org/05sshc517', 'en', 1, 'https://ror.org/05sshc517 Kunshan Industrial Technology Research Institute ę˜†å±±åø‚å·„äøšęŠ€ęœÆē ”ē©¶é™¢'),
(63705, 'https://ror.org/03qw6d546', 'no_lang_code', 1, 'https://ror.org/03qw6d546 Lanzhou Nonferrous Metals Design and Research Institute (China)'),
(63706, 'https://ror.org/025hrcs91', 'en', 1, 'https://ror.org/025hrcs91 Hefei Urban Planning & Design Institute åˆč‚„åø‚č§„åˆ’č®¾č®”é™¢'),
(63707, 'https://ror.org/02w9cqe69', 'en', 1, 'https://ror.org/02w9cqe69 Guangxi Transportation Research Institute å¹æč„æäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(63708, 'https://ror.org/05jca5f53', 'en', 1, 'https://ror.org/05jca5f53 Heilongjiang Academy of Agricultural Machinery Engineering é»‘é¾™ę±Ÿēœå†œäøšęœŗę¢°å·„ēØ‹ē§‘å­¦ē ”ē©¶é™¢'),
(63709, 'https://ror.org/02c97sq75', 'en', 1, 'https://ror.org/02c97sq75 Liaoning Provincial Institute of Agricultural Mechanization č¾½å®ēœå†œäøšęœŗę¢°åŒ–ē ”ē©¶ę‰€'),
(63710, 'https://ror.org/05cv5pe55', 'en', 1, 'https://ror.org/05cv5pe55 Fujian Fisheries Research Institute ē¦å»ŗēœę°“äŗ§ē ”ē©¶ę‰€'),
(63711, 'https://ror.org/0491qs096', 'en', 1, 'https://ror.org/0491qs096 The Third Affiliated Hospital of Zhejiang Chinese Medical University ęµ™ę±Ÿäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äø‰åŒ»é™¢čŽ«'),
(63712, 'https://ror.org/050yrsr44', 'en', 1, 'https://ror.org/050yrsr44 All-Russian Scientific Research Institute of Confectionery Industry Š¤Š“Š‘ŠŠ£ Всероссийский ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŠ¾Š½Š“ŠøŃ‚ŠµŃ€ŃŠŗŠ¾Š¹ ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63713, 'https://ror.org/01b45e393', 'en', 1, 'https://ror.org/01b45e393 Samara Academy of State and Municipal Management Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Šø Š¼ŃƒŠ½ŠøŃ†ŠøŠæŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(63714, 'https://ror.org/0233jyt67', 'en', 1, 'https://ror.org/0233jyt67 Fujian Electric Power Survey & Design Institute ē¦å»ŗēœē”µåŠ›å‹˜ęµ‹č®¾č®”é™¢'),
(63715, 'https://ror.org/00nswcb05', 'no_lang_code', 1, 'https://ror.org/00nswcb05 Guangzhou Academy of Building Research (China)'),
(63716, 'https://ror.org/04sy98p67', 'en', 1, 'https://ror.org/04sy98p67 Lishui Academy of Agricultural Sciences'),
(63717, 'https://ror.org/05rf8fe56', 'en', 1, 'https://ror.org/05rf8fe56 Liuzhou Institute of Automation Science'),
(63718, 'https://ror.org/01cg3n190', 'no_lang_code', 1, 'https://ror.org/01cg3n190 Inner Mongolia Electric Power Survey & Design Institute (China) å†…č’™å¤ē”µåŠ›å‹˜ęµ‹č®¾č®”é™¢'),
(63719, 'https://ror.org/05j0ypg59', 'en', 1, 'https://ror.org/05j0ypg59 Gansu Great Wall Electrical and Electronics Engineering Research Institute ē”˜č‚ƒé•æåŸŽē”µå·„ē”µå™Øå·„ēØ‹ē ”ē©¶é™¢'),
(63720, 'https://ror.org/01hf44t80', 'en', 1, 'https://ror.org/01hf44t80 Guangzhou Institute of Applied Software Technology, Chinese Academy of Sciences å¹æå·žäø­å›½ē§‘å­¦é™¢č½Æä»¶åŗ”ē”ØęŠ€ęœÆē ”ē©¶ę‰€'),
(63721, 'https://ror.org/00gy01w86', 'en', 1, 'https://ror.org/00gy01w86 Heilongjiang Provincial Institute of Hydraulic Research é»‘é¾™ę±Ÿēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(63722, 'https://ror.org/04wgdr728', 'en', 1, 'https://ror.org/04wgdr728 Guangzhou Research Institute of Synthetic Materials'),
(63723, 'https://ror.org/02ebrh849', 'en', 1, 'https://ror.org/02ebrh849 Gansu Academy of Machinery Science ē”˜č‚ƒēœęœŗę¢°ē§‘å­¦ē ”ē©¶é™¢'),
(63724, 'https://ror.org/0149mnh61', 'no_lang_code', 1, 'https://ror.org/0149mnh61 Henan Energy & Chemical Industry Group (China) ę²³å—čƒ½ęŗåŒ–å·„é›†å›¢ęœ‰é™å…¬åø'),
(63725, 'https://ror.org/00mxc5141', 'no_lang_code', 1, 'https://ror.org/00mxc5141 Sehenstar Energy Technology (China) č‹å·žåå®ę³°čŠ‚čƒ½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(63726, 'https://ror.org/007ecf642', 'en', 1, 'https://ror.org/007ecf642 Henan Province Quality and Technical Supervision Bureau ę²³å—ēœč“Øé‡ęŠ€ęœÆē›‘ē£å±€'),
(63727, 'https://ror.org/037b6wy35', 'no_lang_code', 1, 'https://ror.org/037b6wy35 CITIC Group (China)'),
(63728, 'https://ror.org/01sf33a48', 'en', 1, 'https://ror.org/01sf33a48 Guangzhou Fiber Products Inspection and Research Institute å¹æå·žēŗ¤ē»“äŗ§å“ę£€ęµ‹ē ”ē©¶é™¢'),
(63729, 'https://ror.org/02be8ew78', 'no_lang_code', 1, 'https://ror.org/02be8ew78 SCIVIC Engineering Corporation (China) ęœŗę¢°å·„äøšē¬¬å››č®¾č®”ē ”ē©¶é™¢'),
(63730, 'https://ror.org/05qcfb174', 'en', 1, 'https://ror.org/05qcfb174 Henan Province Water Conservancy Survey and Design Research ę²³å—ēœę°“åˆ©å‹˜ęµ‹č®¾č®”ē ”ē©¶ęœ‰é™å…¬åø'),
(63731, 'https://ror.org/002k1r174', 'en', 1, 'https://ror.org/002k1r174 State-owned Assets Supervision and Administration Commission of the State Council å›½åŠ”é™¢å›½ęœ‰čµ„äŗ§ē›‘ē£ē®”ē†å§”å‘˜ä¼š'),
(63732, 'https://ror.org/036n8hs79', 'en', 1, 'https://ror.org/036n8hs79 Guangzhou Institute of Mechanical Design å¹æå·žęœŗę¢°č®¾č®”ē ”ē©¶ę‰€ē®€ä»‹'),
(63733, 'https://ror.org/0114hcc46', 'no_lang_code', 1, 'https://ror.org/0114hcc46 Guangzhou Mechanical Engineering Research Institute (China) å¹æå·žęœŗę¢°ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63734, 'https://ror.org/04gfyef21', 'no_lang_code', 1, 'https://ror.org/04gfyef21 Guangzhou Metro Group (China)'),
(63735, 'https://ror.org/00ed67a38', 'no_lang_code', 1, 'https://ror.org/00ed67a38 Chunlan (China) ę˜„å…°'),
(63736, 'https://ror.org/01bf03r65', 'en', 1, 'https://ror.org/01bf03r65 Jiangsu Provincial Urban Planning and Design Institute ę±Ÿč‹ēœåŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢ęˆ'),
(63737, 'https://ror.org/017veh155', 'en', 1, 'https://ror.org/017veh155 South China Robotics Innovative Research Institute å—åŽęœŗå™Øäŗŗåˆ›ę–°ē ”ē©¶é™¢'),
(63738, 'https://ror.org/0569x1756', 'en', 1, 'https://ror.org/0569x1756 Guangdong Provincial Architectural Design and Research Institute å¹æäøœēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(63739, 'https://ror.org/056pc6w59', 'en', 1, 'https://ror.org/056pc6w59 Guilin Electrical Equipment Research Institute ę”‚ęž—ē”µå™Øē§‘å­¦ē ”ē©¶é™¢ęœ‰é™'),
(63740, 'https://ror.org/001z3ck59', 'no_lang_code', 1, 'https://ror.org/001z3ck59 Jiangsu Institute of Ecomones (China) ę±Ÿč‹ēœęæ€ē“ ē ”ē©¶ę‰€'),
(63741, 'https://ror.org/035br3k73', 'no_lang_code', 1, 'https://ror.org/035br3k73 China Aluminum International Engineering Corporation Limited (China) äø­å›½é“äøšå›½é™…å·„ēØ‹ęœ‰é™å…¬åø'),
(63742, 'https://ror.org/01aew1m62', 'en', 1, 'https://ror.org/01aew1m62 Jiangsu Vocational Institute of Commerce ę±Ÿč‹ē»č“øčŒäøšęŠ€ęœÆå­¦é™¢'),
(63743, 'https://ror.org/01py2n540', 'no_lang_code', 1, 'https://ror.org/01py2n540 Guizhou Aerospace Power Science & Tech (China) č“µå·žčˆŖå¤©åŠØåŠ›ęŠ€ęœÆ'),
(63744, 'https://ror.org/00753dy67', 'en', 1, 'https://ror.org/00753dy67 Hunan Provincial Agricultural Machinery Authority ę¹–å—ēœå†œäøšęœŗę¢°ē®”ē†å±€'),
(63745, 'https://ror.org/049jpjz09', 'en', 1, 'https://ror.org/049jpjz09 Guangdong Institute of Intelligent Manufacturing å¹æäøœēœę™ŗčƒ½åˆ¶é€ ē ”ē©¶ę‰€ęˆ'),
(63746, 'https://ror.org/044a9d018', 'en', 1, 'https://ror.org/044a9d018 Jiangsu Industry Technology Research Institute ę±Ÿč‹å·„äøšęŠ€ęœÆē ”ē©¶é™¢'),
(63747, 'https://ror.org/02atexs87', 'no_lang_code', 1, 'https://ror.org/02atexs87 Kangmei Pharmaceutical (China) åŗ·ē¾ŽčÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(63748, 'https://ror.org/035hazd92', 'en', 1, 'https://ror.org/035hazd92 Jiangsu Institute of Metrology ę±Ÿč‹ēœč®”é‡ē§‘å­¦ē ”ē©¶é™¢'),
(63749, 'https://ror.org/048wp8t87', 'no_lang_code', 1, 'https://ror.org/048wp8t87 Jiangsu Province Metallurgical Design Institute (China) ę±Ÿč‹ēœå†¶é‡‘č®¾č®”é™¢ęœ‰é™å…¬åø'),
(63750, 'https://ror.org/02xyaf767', 'en', 1, 'https://ror.org/02xyaf767 Transnational University Limburg'),
(63751, 'https://ror.org/01vg4mj91', 'no_lang_code', 1, 'https://ror.org/01vg4mj91 Jiangsu Provincial Posts & Telecommunications Planning & Design Institute (China) ę±Ÿč‹ēœé‚®ē”µč§„åˆ’č®¾č®”é™¢ęœ‰é™č“£ä»»å…¬åø'),
(63752, 'https://ror.org/0220p2586', 'en', 1, 'https://ror.org/0220p2586 Guizhou Institute of Biology č“µå·žēœē”Ÿē‰©ē ”ē©¶ę‰€'),
(63753, 'https://ror.org/05mq0z459', 'no_lang_code', 1, 'https://ror.org/05mq0z459 Jiangsu Radio Scientific Research Institute (China) ę±Ÿč‹ēœę— ēŗæē”µē§‘å­¦ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(63754, 'https://ror.org/053v9t488', 'no_lang_code', 1, 'https://ror.org/053v9t488 Daqo (China) 大全'),
(63755, 'https://ror.org/055f13495', 'en', 1, 'https://ror.org/055f13495 Guizhou Electric Power Design and Research Institute č“µå·žē”µåŠ›č®¾č®”ē ”ē©¶é™¢'),
(63756, 'https://ror.org/01d7fe160', 'no_lang_code', 1, 'https://ror.org/01d7fe160 Sixin (China)'),
(63757, 'https://ror.org/048jfe862', 'en', 1, 'https://ror.org/048jfe862 Nanjing Architecture Design and Research Institute å—äŗ¬åø‚å»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(63758, 'https://ror.org/00ctyfm67', 'en', 1, 'https://ror.org/00ctyfm67 Nanjing Institute of Railway Technology'),
(63759, 'https://ror.org/00jkdkv87', 'no_lang_code', 1, 'https://ror.org/00jkdkv87 Zonhon Biopharma Institute ę±Ÿč‹ä¼—ēŗ¢ē”Ÿē‰©å·„ēØ‹åˆ›čÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63760, 'https://ror.org/026z6mp76', 'en', 1, 'https://ror.org/026z6mp76 Guizhou Water Conservancy and Hydropower Survey and Design Institute č“µå·žę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”é™¢'),
(63761, 'https://ror.org/015ddje41', 'en', 1, 'https://ror.org/015ddje41 Jiangxi Fisheries Research Institute ę±Ÿč„æēœę°“äŗ§ē§‘å­¦ē ”ē©¶ę‰€'),
(63762, 'https://ror.org/010he8702', 'no_lang_code', 1, 'https://ror.org/010he8702 Beijing Enterprises Water Group (China)'),
(63763, 'https://ror.org/042t78q04', 'no_lang_code', 1, 'https://ror.org/042t78q04 Nanjing Surveying and Mapping Research Institute (China) å—äŗ¬åø‚ęµ‹ē»˜å‹˜åÆŸē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(63764, 'https://ror.org/03s2thv57', 'en', 1, 'https://ror.org/03s2thv57 Newford Research Institute of Advanced Technology ēŗ½ē¦å¾·å…ˆčæ›ęŠ€ęœÆē ”ē©¶ę‰€'),
(63765, 'https://ror.org/02ptkm873', 'no_lang_code', 1, 'https://ror.org/02ptkm873 Jiangyin Traffic Planning Survey & Design Institute (China) ę±Ÿé˜“åø‚äŗ¤é€šč§„åˆ’å‹˜åÆŸč®¾č®”é™¢ęœ‰é™å…¬åøå‰'),
(63766, 'https://ror.org/02tzmrb07', 'en', 1, 'https://ror.org/02tzmrb07 Guodian Institute of Science and Technology å›½ē”µē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(63767, 'https://ror.org/05h57he97', 'en', 1, 'https://ror.org/05h57he97 Ningbo Entry-Exit Inspection And Quarantine Bureau å®ę³¢å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(63768, 'https://ror.org/01mrfz775', 'en', 1, 'https://ror.org/01mrfz775 Jiaxing Hengchuang Electric Design and Research Institute å˜‰å…“ę’åˆ›ē”µåŠ›č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åøę˜Žē»˜åˆ†å…¬'),
(63769, 'https://ror.org/04bj5db66', 'en', 1, 'https://ror.org/04bj5db66 Ningbo Intelligent Manufacturing Industry Research Institute å®ę³¢ę™ŗčƒ½åˆ¶é€ äøšē ”ē©¶ę‰€'),
(63770, 'https://ror.org/03pw0zs24', 'no_lang_code', 1, 'https://ror.org/03pw0zs24 Jilin Electric Power Research Institute (China) å‰ęž—ēœē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63771, 'https://ror.org/01varr368', 'no_lang_code', 1, 'https://ror.org/01varr368 PowerChina (China) äø­å›½ē”µåŠ›å»ŗč®¾é›†å›¢å…¬åø'),
(63772, 'https://ror.org/01gy1fv44', 'en', 1, 'https://ror.org/01gy1fv44 Qinhuangdao Audio-Visual Machinery Research Institute ē§¦ēš‡å²›č§†å¬ęœŗę¢°ē ”ē©¶ę‰€'),
(63773, 'https://ror.org/039n5wp46', 'no_lang_code', 1, 'https://ror.org/039n5wp46 Qinhuangdao Glass Industry Research and Design Institute (China) ē§¦ēš‡å²›ēŽ»ē’ƒå·„äøšē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åø'),
(63774, 'https://ror.org/02qcpmn35', 'en', 1, 'https://ror.org/02qcpmn35 Northwest Institute of Mining and Metallurgy č„æåŒ—ēŸæå†¶ē ”ē©¶é™¢'),
(63775, 'https://ror.org/00ky61211', 'en', 1, 'https://ror.org/00ky61211 Shanghai Light Industry Research Institute äøŠęµ·č½»å·„äøšē ”ē©¶é™¢'),
(63776, 'https://ror.org/04zvdhe55', 'en', 1, 'https://ror.org/04zvdhe55 Institute of Nuclear Power Operations'),
(63777, 'https://ror.org/04vvag751', 'en', 1, 'https://ror.org/04vvag751 Sichuan Food Fermentation Industry Research and Design Institute å››å·ēœé£Ÿå“å‘é…µå·„äøšē ”ē©¶č®¾č®”é™¢'),
(63778, 'https://ror.org/02jpsw347', 'no_lang_code', 1, 'https://ror.org/02jpsw347 Kelun Group (China) å››å·ē§‘ä¼¦čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(63779, 'https://ror.org/03b2atp15', 'en', 1, 'https://ror.org/03b2atp15 Shaanxi Coal Chemical Industry Technology Research Institute é™•č„æē…¤äøšåŒ–å·„ęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(63780, 'https://ror.org/04azzhq34', 'no_lang_code', 1, 'https://ror.org/04azzhq34 Shanghai Construction Group (China) äøŠęµ·å»ŗå·„é›†å›¢'),
(63781, 'https://ror.org/012hbj192', 'en', 1, 'https://ror.org/012hbj192 Sichuan Highway Design and Research Institute å››å·ēœäŗ¤é€ščæč¾“åŽ…å…¬č·Æč§„åˆ’å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢'),
(63782, 'https://ror.org/03kxtax58', 'en', 1, 'https://ror.org/03kxtax58 Sichuan Institute of Building Research å››å·ēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(63783, 'https://ror.org/04g4hv039', 'en', 1, 'https://ror.org/04g4hv039 Shaanxi Research Design Institute of Petroleum and Chemical Industry é™•č„æēœēŸ³ę²¹åŒ–å·„ē ”ē©¶č®¾č®”é™¢'),
(63784, 'https://ror.org/01pw44479', 'en', 1, 'https://ror.org/01pw44479 Shanghai Power Equipment Research Institute äøŠęµ·ē”µåŠ›č®¾å¤‡ē ”ē©¶é™¢'),
(63785, 'https://ror.org/044wmmj34', 'en', 1, 'https://ror.org/044wmmj34 Hefei Institute of Technology Innovation'),
(63786, 'https://ror.org/00f32vr09', 'en', 1, 'https://ror.org/00f32vr09 Guangxi South Subtropical Agricultural Research Institute å¹æč„æå—äŗšēƒ­åø¦å†œäøšē§‘å­¦ē ”ē©¶ę‰€'),
(63787, 'https://ror.org/03t4zvk50', 'en', 1, 'https://ror.org/03t4zvk50 Laser Research Institute å±±äøœēœē§‘å­¦é™¢ęæ€å…‰ē ”ē©¶ę‰€'),
(63788, 'https://ror.org/00g2kbc16', 'en', 1, 'https://ror.org/00g2kbc16 Shanghai Shipbuilding Technology Research Institute äøŠęµ·é€ čˆ¹ęŠ€ęœÆē ”ē©¶é™¢'),
(63789, 'https://ror.org/0090cxj04', 'en', 1, 'https://ror.org/0090cxj04 Shandong Academy of Agricultural Machinery Sciences å±±äøœēœå†œäøšęœŗę¢°ē§‘å­¦ē ”ē©¶é™¢å§‹'),
(63790, 'https://ror.org/001rebv08', 'en', 1, 'https://ror.org/001rebv08 People''s Bank of China äø­å›½äŗŗę°‘é“¶č”Œ'),
(63791, 'https://ror.org/01tsmee46', 'en', 1, 'https://ror.org/01tsmee46 Shanghai Special Equipment Supervision and Inspection Institute äøŠęµ·ē‰¹ē§č®¾å¤‡ę£€ęµ‹ęŠ€ęœÆē ”ē©¶é™¢'),
(63792, 'https://ror.org/04xxxza58', 'en', 1, 'https://ror.org/04xxxza58 Wenzhou Institute of Technology Testing & Calibration ęø©å·žē†å·„å­¦é™¢ęµ‹čÆ•äøŽę ”å‡†'),
(63793, 'https://ror.org/00hvq0c10', 'en', 1, 'https://ror.org/00hvq0c10 Shanghai Fire Research Institute'),
(63794, 'https://ror.org/026f8z808', 'en', 1, 'https://ror.org/026f8z808 Shandong Academy of Building Research å±±äøœēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(63795, 'https://ror.org/056tm2d87', 'en', 1, 'https://ror.org/056tm2d87 Suzhou Electrical Apparatus Science Academy č‹å·žē”µå™Øē§‘å­¦ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(63796, 'https://ror.org/02zznv955', 'en', 1, 'https://ror.org/02zznv955 Shanghai Tunnel Engineering Rail Transit Design & Research Institute äøŠęµ·åø‚éš§é“å·„ēØ‹č½Øé“äŗ¤é€šč®¾č®”ē ”ē©¶é™¢'),
(63797, 'https://ror.org/044yb1859', 'en', 1, 'https://ror.org/044yb1859 Shandong Academy of Environmental Science å±±äøœēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶č®¾č®”é™¢åœ°'),
(63798, 'https://ror.org/040nzs042', 'en', 1, 'https://ror.org/040nzs042 Shenyang Fire Research Institute'),
(63799, 'https://ror.org/00r2s0s14', 'en', 1, 'https://ror.org/00r2s0s14 Shandong Institute of Food and Drug Inspection å±±äøœēœé£Ÿå“čÆå“ę£€éŖŒē ”ē©¶é™¢'),
(63800, 'https://ror.org/044zwsy33', 'en', 1, 'https://ror.org/044zwsy33 Suzhou Industrial Park Vocational Technical College č‹å·žå·„äøšå›­åŒŗčŒäøšęŠ€ęœÆå­¦é™¢'),
(63801, 'https://ror.org/027rn2111', 'en', 1, 'https://ror.org/027rn2111 Suzhou Vocational Institute of Industrial Technology ꜉ č‹å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(63802, 'https://ror.org/02n2dfg29', 'en', 1, 'https://ror.org/02n2dfg29 Sichuan Fire Research Institute'),
(63803, 'https://ror.org/01fbkw579', 'no_lang_code', 1, 'https://ror.org/01fbkw579 Wuhan Institute of Geo-Environmental Industry and Technology (China) ę­¦ę±‰åœ°č“ØēŽÆå¢ƒå·„ēØ‹ęŠ€ęœÆē ”ē©¶ę‰€'),
(63804, 'https://ror.org/05xd3cs50', 'en', 1, 'https://ror.org/05xd3cs50 Shanghai Water Conservancy Engineering Design & Research Institute äøŠęµ·åø‚ę°“åˆ©å·„ēØ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™'),
(63805, 'https://ror.org/01qr4nw81', 'en', 1, 'https://ror.org/01qr4nw81 Suzhou Nonferrous Metals Research Institute č‹å·žęœ‰č‰²é‡‘å±žē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63806, 'https://ror.org/055qdna38', 'en', 1, 'https://ror.org/055qdna38 Shanghai Harbour Engineering Design & Research Institute äøŠęµ·ęµ·ę¹¾å·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(63807, 'https://ror.org/05k1xe006', 'no_lang_code', 1, 'https://ror.org/05k1xe006 Shandong Provincial Communications Planning and Design Institute (China) å±±äøœēœäŗ¤é€šč§„åˆ’č®¾č®”é™¢'),
(63808, 'https://ror.org/02abbq608', 'en', 1, 'https://ror.org/02abbq608 Suzhou Thermal Engineering Research Institute č‹å·žēƒ­å·„ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63809, 'https://ror.org/016qtng06', 'en', 1, 'https://ror.org/016qtng06 Shangqiu Institute of Technology å•†äø˜å·„å­¦é™¢ē®€ä»‹'),
(63810, 'https://ror.org/00a4qwj68', 'en', 1, 'https://ror.org/00a4qwj68 Shandong Institute of Metrology å±±äøœēœč®”é‡ē§‘å­¦ē ”ē©¶é™¢'),
(63811, 'https://ror.org/05bbyvt75', 'en', 1, 'https://ror.org/05bbyvt75 Shantou Ultrasonic Instrument Research Institute 汕夓超声仪器研究所'),
(63812, 'https://ror.org/048d2bt95', 'en', 1, 'https://ror.org/048d2bt95 Shandong Institute for Product Quality Inspection å±±äøœēœäŗ§å“č“Øé‡ę£€éŖŒē ”ē©¶é™¢'),
(63813, 'https://ror.org/037z0v527', 'en', 1, 'https://ror.org/037z0v527 Institute of Oceanographic Instrumentation å±±äøœēœē§‘å­¦é™¢ęµ·ę“‹ä»Ŗå™Øä»Ŗč”Øē ”ē©¶ę‰€ 地址'),
(63814, 'https://ror.org/05wzmn116', 'en', 1, 'https://ror.org/05wzmn116 Shandong Huanghe Delta Institute of Textile Science and Technology å±±äøœé»„ę²³äø‰č§’ę“²ēŗŗē»‡ē§‘ęŠ€ē ”ē©¶é™¢äŗŽ'),
(63815, 'https://ror.org/00ab95029', 'en', 1, 'https://ror.org/00ab95029 Wuxi Institute of Technology 无锔理巄学院'),
(63816, 'https://ror.org/00sz56h79', 'en', 1, 'https://ror.org/00sz56h79 HKUST Shenzhen Research Institute'),
(63817, 'https://ror.org/04c6m2d57', 'no_lang_code', 1, 'https://ror.org/04c6m2d57 Wuxi Guolian Development (China) ę— é””å›½č”å‘å±•é›†å›¢'),
(63818, 'https://ror.org/05gk6fr31', 'en', 1, 'https://ror.org/05gk6fr31 Traffic Management Research Institute'),
(63819, 'https://ror.org/0314qy595', 'no_lang_code', 1, 'https://ror.org/0314qy595 Shanghai Electric (China) äøŠęµ·ē”µę°”é›†å›¢'),
(63820, 'https://ror.org/05baxg638', 'no_lang_code', 1, 'https://ror.org/05baxg638 Ningbo Putian Information Industry (China) å®ę³¢ę™®å¤©äæ”ęÆäŗ§äøš'),
(63821, 'https://ror.org/020jz8z49', 'en', 1, 'https://ror.org/020jz8z49 Thermal Power Research Institute č„æå®‰ēƒ­å·„ē ”ē©¶é™¢'),
(63822, 'https://ror.org/02t835g30', 'en', 1, 'https://ror.org/02t835g30 Shanghai Architectural Design & Research Institute äøŠęµ·å»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63823, 'https://ror.org/02g4n2f85', 'en', 1, 'https://ror.org/02g4n2f85 Shanxi Academy of Building Research å±±č„æēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(63824, 'https://ror.org/04ceqst84', 'no_lang_code', 1, 'https://ror.org/04ceqst84 China XD Group (China) 中国脿电集团'),
(63825, 'https://ror.org/02pnqx643', 'en', 1, 'https://ror.org/02pnqx643 Shanxi Electromechanical Design and Research Institute å±±č„æęœŗę¢°č®¾č®”ē ”ē©¶é™¢'),
(63826, 'https://ror.org/03bpcr835', 'en', 1, 'https://ror.org/03bpcr835 Tianjin Fire Research Institute å…¬å®‰éƒØå¤©ę“„ę¶ˆé˜²ē ”ē©¶ę‰€ē®€ä»‹'),
(63827, 'https://ror.org/01ankx725', 'en', 1, 'https://ror.org/01ankx725 Shanghai Electric Apparatus Research Institute äøŠęµ·ē”µå™Øē§‘å­¦ē ”ē©¶ę‰€'),
(63828, 'https://ror.org/02r57zt28', 'en', 1, 'https://ror.org/02r57zt28 Qingdao Academy of Agricultural Sciences'),
(63829, 'https://ror.org/04ztb5g16', 'no_lang_code', 1, 'https://ror.org/04ztb5g16 Shanxi Provincial Institute of Chemical Industry (China) å±±č„æēœåŒ–å·„ē ”ē©¶ę‰€'),
(63830, 'https://ror.org/01dynsx63', 'en', 1, 'https://ror.org/01dynsx63 Xi''an Micromotor Research Institute č„æå®‰å¾®ē”µęœŗē ”ē©¶ę‰€'),
(63831, 'https://ror.org/046fag481', 'no_lang_code', 1, 'https://ror.org/046fag481 China Shenhua Energy (China) ē„žåŽčƒ½ęŗ'),
(63832, 'https://ror.org/02habex41', 'en', 1, 'https://ror.org/02habex41 Tianjin Plastics Research Institute å¤©ę“„åø‚å”‘ę–™ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(63833, 'https://ror.org/05we3nb76', 'en', 1, 'https://ror.org/05we3nb76 China Fishery Machinery and Instrument Research Institute ęø”äøšęœŗę¢°ä»Ŗå™Øē ”ē©¶ę‰€åˆ›'),
(63834, 'https://ror.org/00pdf6q45', 'en', 1, 'https://ror.org/00pdf6q45 Xiamen Institute of Building Research Group åŽ¦é—Øå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(63835, 'https://ror.org/01cpeja57', 'no_lang_code', 1, 'https://ror.org/01cpeja57 Shenyang Aluminum & Magnesium Engineering & Research Institute (China) ę²‰é˜³é“é•č®¾č®”ē ”ē©¶é™¢'),
(63836, 'https://ror.org/020p5zy41', 'en', 1, 'https://ror.org/020p5zy41 Xinjiang Uygur Autonomous Region Institute of Metrology and Measurement ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗč®”é‡ęµ‹čÆ•ē ”ē©¶é™¢'),
(63837, 'https://ror.org/01nzt4j48', 'no_lang_code', 1, 'https://ror.org/01nzt4j48 SGIDI Engineering Consulting (China) äøŠęµ·å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢'),
(63838, 'https://ror.org/03j057g08', 'no_lang_code', 1, 'https://ror.org/03j057g08 Shenyang Academy of Environmental Sciences (China) ę²ˆé˜³ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(63839, 'https://ror.org/05etzsm06', 'en', 1, 'https://ror.org/05etzsm06 Shenzhen Academy of Aerospace Technology ę·±åœ³čˆŖå¤©ē§‘ęŠ€ē ”ē©¶é™¢'),
(63840, 'https://ror.org/00at16584', 'no_lang_code', 1, 'https://ror.org/00at16584 Huafon Group (China) 华峰集团'),
(63841, 'https://ror.org/025hs2285', 'no_lang_code', 1, 'https://ror.org/025hs2285 Hilong (China) ęµ·éš†é›†å›¢ē¬¬'),
(63842, 'https://ror.org/04zv3rp09', 'en', 1, 'https://ror.org/04zv3rp09 Shenzhen Academy of Metrology and Quality Inspection ę·±åœ³åø‚č®”é‡č“Øé‡ę£€ęµ‹ē ”ē©¶é™¢'),
(63843, 'https://ror.org/05qm99d82', 'en', 1, 'https://ror.org/05qm99d82 Nihon University Itabashi Hospital ę—„ęœ¬å¤§å­¦ęæę©‹ē—…é™¢'),
(63844, 'https://ror.org/00wa5fs40', 'no_lang_code', 1, 'https://ror.org/00wa5fs40 Shenzhen General Institute of Architectural Design and Research (China) ę·±åœ³åø‚å»ŗē­‘č®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(63845, 'https://ror.org/00cn4vr32', 'en', 1, 'https://ror.org/00cn4vr32 Wanda Cultural Tourism Planning and Research Institute äø‡č¾¾ę–‡åŒ–ę—…ęøøč§„åˆ’ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63846, 'https://ror.org/039vzrf55', 'no_lang_code', 1, 'https://ror.org/039vzrf55 Shenzhen Institute of Building Research (China) ę·±åœ³åø‚å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(63847, 'https://ror.org/03wtw1749', 'en', 1, 'https://ror.org/03wtw1749 Shanghai Zhaozhan Metal Materials äøŠęµ·é‡‘å±¬ęę–™ęœ‰é™å…¬åø'),
(63848, 'https://ror.org/00mzd6670', 'no_lang_code', 1, 'https://ror.org/00mzd6670 Shenzhen Institute of Innovation Design (China) ę·±åœ³åø‚åˆ›ę–°č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63849, 'https://ror.org/01e2dpk50', 'no_lang_code', 1, 'https://ror.org/01e2dpk50 Yuntianhua Group (China)'),
(63850, 'https://ror.org/03j3raf08', 'no_lang_code', 1, 'https://ror.org/03j3raf08 Medzone Healthcare (China)'),
(63851, 'https://ror.org/01h027j09', 'en', 1, 'https://ror.org/01h027j09 Shenzhen Academy of Robotics äø“ę·±åœ³åø‚ę™ŗčƒ½ęœŗå™Øäŗŗē ”ē©¶é™¢'),
(63852, 'https://ror.org/0554tsp75', 'en', 1, 'https://ror.org/0554tsp75 Zhejiang Modern Architectural Design & Research Institute ęµ™ę±ŸēœēŽ°ä»£å»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(63853, 'https://ror.org/023jx0404', 'no_lang_code', 1, 'https://ror.org/023jx0404 Coal Industry Jinan Design & Research Institute (China) ē…¤ē‚­å·„äøšęµŽå—č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63854, 'https://ror.org/04yt00889', 'no_lang_code', 1, 'https://ror.org/04yt00889 Samsung (China) äø‰ę˜Ÿē”µå­äø­å›½'),
(63855, 'https://ror.org/00kskf856', 'no_lang_code', 1, 'https://ror.org/00kskf856 Chinatex Posts and Telecommunications Consulting and Design Institute (China) äø­č®Æé‚®ē”µå’ØčÆ¢č®¾č®”é™¢ęœ‰é™å…¬åø'),
(63856, 'https://ror.org/01tys1796', 'en', 1, 'https://ror.org/01tys1796 Yunnan Supply and Marketing Cooperatives'),
(63857, 'https://ror.org/004n78r59', 'no_lang_code', 1, 'https://ror.org/004n78r59 Hetman Petro Sahaidachnyi National Army Academy ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŃŃƒŃ…Š¾ŠæŃƒŃ‚Š½ŠøŃ… Š²Ń–Š¹ŃŃŒŠŗ імені Š³ŠµŃ‚ŃŒŠ¼Š°Š½Š° ŠŸŠµŃ‚Ń€Š° ДагайГачного'),
(63858, 'https://ror.org/02pk6rm23', 'en', 1, 'https://ror.org/02pk6rm23 Chengdu Surveying Geotechnical Research Institute äø­å†¶ęˆéƒ½å‹˜åÆŸē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(63859, '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'),
(63860, 'https://ror.org/03jn38r85', 'en', 1, 'https://ror.org/03jn38r85 Collaborative Innovation Center of Quantum Matter é‡å­ē‰©č“Øē§‘å­¦ååŒåˆ›ę–°äø­åæƒ'),
(63861, 'https://ror.org/00nf44j26', 'no_lang_code', 1, 'https://ror.org/00nf44j26 Zhejiang Runtu (China) ęµ™ę±Ÿé—°åœŸč‚”ä»½ęœ‰é™å…¬åø'),
(63862, 'https://ror.org/01sa5tb56', 'en', 1, 'https://ror.org/01sa5tb56 Islamic Azad University, Aliabad Katoul Ų¬Ų§Ł…Ų¹Ų© Ų¢Ų²Ų§ŲÆ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ، Ų¹Ł„ŁŠ Ų£ŲØŲ§ŲÆ Ł‚Ų·ŁˆŁ„'),
(63863, 'https://ror.org/02d9xx252', 'en', 1, 'https://ror.org/02d9xx252 Bilquis Postgraduate College For Women Ų®ŁˆŲ§ŲŖŪŒŁ† کے لئے ŲØŁ„Ł‚ŪŒŲ³ Ų§ŪŒŲ¬ŁˆŚ©ŪŒŲ“Ł† کالج'),
(63864, 'https://ror.org/04c77tp80', 'en', 1, 'https://ror.org/04c77tp80 Yunnan Institute of Tropical Crops äŗ‘å—ēƒ­åø¦ä½œē‰©ē ”ē©¶ę‰€'),
(63865, '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'),
(63866, 'https://ror.org/057r0bm85', 'en', 1, 'https://ror.org/057r0bm85 Zhejiang Sorfa Life Science Research ęµ™ę±Ÿē”•åŽē”Ÿå‘½ē§‘å­¦ē ”ē©¶č‚”ä»½ęœ‰é™å…¬åø'),
(63867, 'https://ror.org/02bnzce68', 'en', 1, 'https://ror.org/02bnzce68 Radiation Safety Directorate Š”ŠøŃ€ŠµŠŗŃ†ŠøŃ˜Š° за Ń€Š°Š“ŠøŃ˜Š°Ń†ŠøŠ¾Š½Š° ŃŠøŠ³ŃƒŃ€Š½Š¾ŃŃ‚'),
(63868, 'https://ror.org/036p9e334', 'en', 1, 'https://ror.org/036p9e334 Yunnan Water Conservancy and Hydropower Survey and Design Institute'),
(63869, 'https://ror.org/04ypjrs34', 'en', 1, 'https://ror.org/04ypjrs34 National Supercomputing Center in Wuxi ę— é””å›½å®¶č¶…ēŗ§č®”ē®—äø­åæƒ'),
(63870, 'https://ror.org/05ban5b47', 'en', 1, 'https://ror.org/05ban5b47 Shenzhen Special Equipment Safety Inspection Institute ę·±åœ³åø‚ē‰¹ē§č®¾å¤‡å®‰å…Øę£€éŖŒē ”ē©¶é™¢'),
(63871, 'https://ror.org/01g140v14', 'en', 1, 'https://ror.org/01g140v14 China Spallation Neutron Source 中国散裂中子源巄程'),
(63872, 'https://ror.org/031q99e43', 'fr', 1, 'https://ror.org/031q99e43 Institut PrƩpaVogt'),
(63873, 'https://ror.org/02na80n77', 'en', 1, 'https://ror.org/02na80n77 Zhangjiagang Smartgrid Fanghua Electrical Energy Storage Research Institute å¼ å®¶ęøÆę™ŗčƒ½ē”µē½‘ę–¹åŽē”µčƒ½å‚Øčƒ½ē ”ē©¶ę‰€'),
(63874, 'https://ror.org/01jb3sz14', 'en', 1, 'https://ror.org/01jb3sz14 Zhejiang Institute of Special Equipment Inspection ęµ™ę±Ÿēœē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(63875, 'https://ror.org/02558jz83', 'en', 1, 'https://ror.org/02558jz83 Shenzhen Terahertz Technology Innovation Research Institute ę·±åœ³åø‚å¤Ŗčµ«å…¹ē§‘ęŠ€åˆ›ę–°ē ”ē©¶é™¢'),
(63876, 'https://ror.org/02ree3t31', 'no_lang_code', 1, 'https://ror.org/02ree3t31 Zigong Light Industry Design Institute (China) č‡Ŗč“”åø‚č½»å·„äøšč®¾č®”ē ”ē©¶é™¢'),
(63877, 'https://ror.org/01f2k3r93', 'no_lang_code', 1, 'https://ror.org/01f2k3r93 Shenzhen Yihua Computer (China) ę·±åœ³ę€”åŒ–ē”µč„‘č‚”ä»½ęœ‰é™å…¬åø'),
(63878, 'https://ror.org/01c9d4e73', 'en', 1, 'https://ror.org/01c9d4e73 Mandalay University of Distance Education'),
(63879, 'https://ror.org/01bffta28', 'en', 1, 'https://ror.org/01bffta28 Zhejiang Institute of Freshwater Fisheries ęµ™ę±Ÿēœę·”ę°“ę°“äŗ§ē ”ē©¶ę‰€'),
(63880, 'https://ror.org/04kvstc88', 'en', 1, 'https://ror.org/04kvstc88 Yiwu Science and Technology Research Institute ęµ™ę±Ÿå·„äøšå¤§å­¦ä¹‰ä¹Œē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(63881, 'https://ror.org/0201w0c54', 'en', 1, 'https://ror.org/0201w0c54 Shijiazhuang Academy of Agriculture and Forestry Sciences ēŸ³å®¶åŗ„åø‚å†œęž—ē§‘å­¦ē ”ē©¶é™¢'),
(63882, 'https://ror.org/02n6dhr29', 'en', 1, 'https://ror.org/02n6dhr29 Zhejiang Water Conservancy and Hydropower Survey and Design Institute ęµ™ę±Ÿēœę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”é™¢'),
(63883, 'https://ror.org/009rsan39', 'pt', 1, 'https://ror.org/009rsan39 Centro UniversitƔrio UNINOVAFAPI'),
(63884, 'https://ror.org/046tg4t13', 'en', 1, 'https://ror.org/046tg4t13 Zhangjiagang Intelligent Power Research Institute å¼ å®¶ęøÆę™ŗčƒ½ē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢'),
(63885, 'https://ror.org/00xn1x092', 'no_lang_code', 1, 'https://ror.org/00xn1x092 Changchun Gold Research Institute (China)'),
(63886, 'https://ror.org/00eqa6a26', 'no_lang_code', 1, 'https://ror.org/00eqa6a26 Sichuan Provincial Architectural Design and Research Institute (China) å››å·ēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(63887, 'https://ror.org/007y7ej30', 'en', 1, 'https://ror.org/007y7ej30 Beijing Microelectronics Technology Institute'),
(63888, 'https://ror.org/03mzdwb95', 'en', 1, 'https://ror.org/03mzdwb95 Guangzhou Quality Supervision, Inspection and Research Institute å¹æå·žč“Øé‡ē›‘ē£ę£€ęµ‹ē ”ē©¶é™¢'),
(63889, 'https://ror.org/05xt21n42', 'no_lang_code', 1, 'https://ror.org/05xt21n42 Zhejiang Yuhua Electronics (China) ęµ™ę±Ÿč£•åŽē”µå™Øęœ‰é™å…¬åø'),
(63890, 'https://ror.org/00p18a507', 'no_lang_code', 1, 'https://ror.org/00p18a507 China First Heavy Industries (China) äø­å›½ē¬¬äø€é‡åž‹ęœŗę¢°č‹±'),
(63891, 'https://ror.org/00p24re17', 'no_lang_code', 1, 'https://ror.org/00p24re17 Zhongji Test Equipment (China) äø­ęœŗčÆ•éŖŒč£…å¤‡č‚”ä»½ęœ‰é™å…¬åø'),
(63892, 'https://ror.org/04pe7qe08', 'no_lang_code', 1, 'https://ror.org/04pe7qe08 Aero Engine Corporation of China (China) äø­å›½čˆŖē©ŗå‘åŠØęœŗé›†å›¢'),
(63893, 'https://ror.org/00gvfpz28', 'en', 1, 'https://ror.org/00gvfpz28 Beijing Automation Control Equipment Institute åŒ—äŗ¬č‡ŖåŠØåŒ–ęŽ§åˆ¶č®¾å¤‡ē ”ē©¶ę‰€åˆ›å»ŗäŗŽ'),
(63894, 'https://ror.org/01egb4878', 'no_lang_code', 1, 'https://ror.org/01egb4878 Beijing Enterprises (China)'),
(63895, 'https://ror.org/04pfhpy42', 'no_lang_code', 1, 'https://ror.org/04pfhpy42 Beijing Drainage Group (China) åŒ—äŗ¬ęŽ’ę°“é›†å›¢'),
(63896, 'https://ror.org/05x0rwj57', 'no_lang_code', 1, 'https://ror.org/05x0rwj57 Changzhou Architectural Research Institute Group (China) åøøå·žåø‚å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(63897, 'https://ror.org/00wg0ca52', 'no_lang_code', 1, 'https://ror.org/00wg0ca52 Beijing Longda Light Industry Holding (China) åŒ—äŗ¬éš†č¾¾č½»å·„ęŽ§č‚”ęœ‰é™č“£ä»»å…¬åø'),
(63898, 'https://ror.org/02pps8d22', 'en', 1, 'https://ror.org/02pps8d22 Anhui 3D Printing Intelligent Equipment Industry Technology Research Institute å®‰å¾½ēœę˜„č°·3Dę‰“å°ę™ŗčƒ½č£…å¤‡äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63899, 'https://ror.org/02gvdqg22', 'en', 1, 'https://ror.org/02gvdqg22 Changzhou Changchao Electronic Research Institute åøøå·žåø‚åøøč¶…ē”µå­ē ”ē©¶ę‰€'),
(63900, 'https://ror.org/01hh1mx02', 'no_lang_code', 1, 'https://ror.org/01hh1mx02 Beijing Guodaotong Highway Design & Research Institute (China) åŒ—äŗ¬å›½é“é€šå…¬č·Æč®¾č®”ē ”ē©¶é™¢'),
(63901, 'https://ror.org/02hxk7x55', 'no_lang_code', 1, 'https://ror.org/02hxk7x55 Beijing Institute of Power Machinery (China) åŒ—äŗ¬åŠØåŠ›ęœŗę¢°ē ”ē©¶ę‰€'),
(63902, 'https://ror.org/05datqy35', 'en', 1, 'https://ror.org/05datqy35 Changzhou City Planning and Design Institute åøøå·žåø‚č§„åˆ’č®¾č®”é™¢'),
(63903, 'https://ror.org/04mw2ty13', 'en', 1, 'https://ror.org/04mw2ty13 Anhui Institute of Information Technology ꜉ 安徽俔息巄程学院'),
(63904, 'https://ror.org/04982zn36', 'en', 1, 'https://ror.org/04982zn36 Anhui Academy of Coal Science å®‰å¾½ēœē…¤ē‚­ē§‘å­¦ē ”ē©¶é™¢'),
(63905, 'https://ror.org/055vcsm02', 'no_lang_code', 1, 'https://ror.org/055vcsm02 Risun (China) ę—­é™½é›†åœ˜'),
(63906, 'https://ror.org/004b20975', 'en', 1, 'https://ror.org/004b20975 Changzhou Vocational Institute of Textile and Garment åøøå·žēŗŗē»‡ęœč£…čŒäøšęŠ€ęœÆå­¦é™¢'),
(63907, 'https://ror.org/02n76vp69', 'en', 1, 'https://ror.org/02n76vp69 Changzhou Zhiye Medical Devices Institute åøøå·žåø‚ę™ŗäøšåŒ»ē–—ä»Ŗå™Øē ”ē©¶ę‰€ęœ‰'),
(63908, 'https://ror.org/02wwrad14', 'en', 1, 'https://ror.org/02wwrad14 Anhui Water Conservancy and Hydropower Survey and Design Institute å®‰å¾½ēœę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”é™¢'),
(63909, 'https://ror.org/03cw0ad25', 'no_lang_code', 1, 'https://ror.org/03cw0ad25 Beijing Urban Construction Design & Development Group (China)'),
(63910, 'https://ror.org/00cd12q64', 'en', 1, 'https://ror.org/00cd12q64 Beijing Zhenxing Metrology & Measurement Institute åŒ—äŗ¬ęŒÆå…“č®”é‡ęµ‹čÆ•ē ”ē©¶ę‰€'),
(63911, 'https://ror.org/02ydbtz72', 'no_lang_code', 1, 'https://ror.org/02ydbtz72 Chengdu Industrial Equipment Installation (China) ęˆéƒ½åø‚å·„äøšč®¾å¤‡å®‰č£…å…¬åø ē‰ˆęƒę‰€ęœ‰'),
(63912, 'https://ror.org/0274zyn92', 'en', 1, 'https://ror.org/0274zyn92 Binzhou Technician College ę»Øå·žåø‚ęŠ€åøˆå­¦é™¢'),
(63913, 'https://ror.org/04yr0q610', 'no_lang_code', 1, 'https://ror.org/04yr0q610 Chengdu Tiger Microwave Technology (China) ęˆéƒ½ę³°ę ¼å¾®ę³¢ęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(63914, 'https://ror.org/03wj9h986', 'no_lang_code', 1, 'https://ror.org/03wj9h986 China Huadian Corporation (China) äø­å›½åŽē”µé›†å›¢å…¬åø'),
(63915, 'https://ror.org/02vxhn688', 'en', 1, 'https://ror.org/02vxhn688 Chenguang Research Institute of Chemical Industry'),
(63916, 'https://ror.org/02waqvh82', 'no_lang_code', 1, 'https://ror.org/02waqvh82 China Building Standard Design and Research Institute (China) 中国建筑标准设讔研究院'),
(63917, 'https://ror.org/0078x3268', 'no_lang_code', 1, 'https://ror.org/0078x3268 Sinolight (China) äø­å›½č½»å·„é›†å›¢ęœ‰é™å…¬åø'),
(63918, 'https://ror.org/054wntq63', 'en', 1, 'https://ror.org/054wntq63 Suzhou Chien-Shiung Institute of Technology č‹å·žå„é›„čŒäøšęŠ€ęœÆå­¦é™¢'),
(63919, 'https://ror.org/05kextd02', 'no_lang_code', 1, 'https://ror.org/05kextd02 Holsin Engineering Consulting Group (China) åˆčÆšå·„ēØ‹å’ØčÆ¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(63920, 'https://ror.org/05y0rb755', 'no_lang_code', 1, 'https://ror.org/05y0rb755 Dalian Plastics Research Institute (China) å¤§čæžå”‘ę–™ē ”ē©¶ę‰€'),
(63921, 'https://ror.org/03a2tkf74', 'no_lang_code', 1, 'https://ror.org/03a2tkf74 Zhejiang Energy Group (China) ęµ™ę±Ÿēœčƒ½ęŗé›†å›¢ęœ‰é™å…¬åø'),
(63922, 'https://ror.org/02pxqb184', 'no_lang_code', 1, 'https://ror.org/02pxqb184 Dalian Synthetic Fiber Research and Design Institute (China) å¤§čæžåˆęˆēŗ¤ē»“ē ”ē©¶č®¾č®”é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(63923, 'https://ror.org/03ds52424', 'no_lang_code', 1, 'https://ror.org/03ds52424 Electromechanical Device Installation (China) ęœŗē”µč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(63924, 'https://ror.org/00ndnb620', 'en', 1, 'https://ror.org/00ndnb620 Energy Research Institute å±±äøœēœē§‘å­¦é™¢čƒ½ęŗē ”ē©¶ę‰€'),
(63925, 'https://ror.org/018jxrz45', 'no_lang_code', 1, 'https://ror.org/018jxrz45 China Tianjin Tools Research Institute (China) 中国天擄巄具研究院'),
(63926, 'https://ror.org/00mg6mc02', 'no_lang_code', 1, 'https://ror.org/00mg6mc02 China National Salt Industry Corporation (China) äø­å›½ē›äøšę€»å…¬åø'),
(63927, 'https://ror.org/00txf1d86', 'no_lang_code', 1, 'https://ror.org/00txf1d86 Danyang Hengan Chemical (China) äø¹é˜³åø‚ę’å®‰åŒ–å·„ęœ‰é™å…¬åøę˜Æ'),
(63928, 'https://ror.org/05998tm92', 'en', 1, 'https://ror.org/05998tm92 Fujian Inspection and Research Institute for Product Quality ē¦å»ŗēœäŗ§å“č“Øé‡ę£€éŖŒē ”ē©¶é™¢'),
(63929, 'https://ror.org/00f5sa326', 'en', 1, 'https://ror.org/00f5sa326 Fujian Institute of Microbiology ē¦å»ŗēœå¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(63930, 'https://ror.org/04yep8s05', 'no_lang_code', 1, 'https://ror.org/04yep8s05 Fujian Petrochemical Group (China) ē¦å»ŗēŸ³ę²¹åŒ–å·„é›†å›¢ęœ‰é™č“£ä»»å…¬åø'),
(63931, 'https://ror.org/0330st597', 'en', 1, 'https://ror.org/0330st597 Fujian Special Equipment Inspection Institute ē¦å»ŗēœē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(63932, 'https://ror.org/00gth1k53', 'en', 1, 'https://ror.org/00gth1k53 Chongqing Academy of Environmental Science é‡åŗ†åø‚ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(63933, 'https://ror.org/04yabfc65', 'en', 1, 'https://ror.org/04yabfc65 Gansu Institute of Mechanical and Electrical Technology ē”˜č‚ƒęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢ 地址'),
(63934, 'https://ror.org/0052whg11', 'en', 1, 'https://ror.org/0052whg11 Gansu Research Institute of Chemical Industry ē”˜č‚ƒēœåŒ–å·„ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(63935, 'https://ror.org/04f63ne57', 'no_lang_code', 1, 'https://ror.org/04f63ne57 Chongqing Construction Engineering Investment Holding (China) é‡åŗ†å»ŗå·„ęŠ•čµ„ęŽ§č‚”'),
(63936, 'https://ror.org/04ntr0v89', 'en', 1, 'https://ror.org/04ntr0v89 Dongguan Frontier Technology Research Institute äøœčŽžå‰ę²æęŠ€ęœÆē ”ē©¶é™¢'),
(63937, 'https://ror.org/04h4zjp06', 'en', 1, 'https://ror.org/04h4zjp06 Dongguan LungCheong Institute of Intelligent Technology äøœčŽžé¾™ę˜Œę™ŗčƒ½ęŠ€ęœÆē ”ē©¶é™¢ē®€ä»‹'),
(63938, 'https://ror.org/01c5bvd13', 'en', 1, 'https://ror.org/01c5bvd13 Dongguan South China Design and Innovation Institute äøœčŽžåŽå—č®¾č®”åˆ›ę–°ē ”ē©¶é™¢'),
(63939, 'https://ror.org/027adfw95', 'no_lang_code', 1, 'https://ror.org/027adfw95 Chongqing Sinstar Packaging Machinery (China) é‡åŗ†ę–°ę˜ŸåŒ…č£…ęœŗę¢°'),
(63940, 'https://ror.org/003gy5515', 'en', 1, 'https://ror.org/003gy5515 Biology Institute of Shandong Academy of Sciences å±±äøœēœē§‘å­¦é™¢ē”Ÿē‰©ē ”ē©¶ę‰€'),
(63941, 'https://ror.org/00mmxpv38', 'no_lang_code', 1, 'https://ror.org/00mmxpv38 Chongqing Yongda Precision Machinery (China) é‡åŗ†ę°øč¾¾ē²¾åÆ†ęœŗę¢°'),
(63942, 'https://ror.org/01sx2d521', 'en', 1, 'https://ror.org/01sx2d521 Guangdong Shunde Innovative Design Institute å¹æäøœé”ŗå¾·åˆ›ę–°č®¾č®”é™¢'),
(63943, 'https://ror.org/03b5k1h67', 'en', 1, 'https://ror.org/03b5k1h67 Guangdong Food Industry Research Institute å¹æäøœēœé£Ÿå“å·„äøšē ”ē©¶ę‰€'),
(63944, 'https://ror.org/00n6b8986', 'no_lang_code', 1, 'https://ror.org/00n6b8986 Guangdong Southern China Special Gas Institute (China) å¹æäøœå—åŽē‰¹ę®Šę°”ä½“ē ”ē©¶ę‰€'),
(63945, 'https://ror.org/0312bsv17', 'en', 1, 'https://ror.org/0312bsv17 Guangdong Urban & Rural Planning and Design Institute å¹æäøœēœåŸŽä¹”č§„åˆ’č®¾č®”é™¢'),
(63946, 'https://ror.org/05xzn7m56', 'en', 1, 'https://ror.org/05xzn7m56 Guangdong Provincial Institute of Grain Science and Technology å¹æäøœēœē²®é£Ÿē§‘å­¦ē ”ē©¶ę‰€'),
(63947, 'https://ror.org/022k2qy30', 'en', 1, 'https://ror.org/022k2qy30 Guilin Tea Research Institute ę”‚ęž—čŒ¶å¶ē ”ē©¶ę‰€'),
(63948, 'https://ror.org/006gwfr44', 'no_lang_code', 1, 'https://ror.org/006gwfr44 Sailun Jinyu Group (China) 赛轮金宇集团'),
(63949, 'https://ror.org/05xhh0z05', 'no_lang_code', 1, 'https://ror.org/05xhh0z05 CCFEB Industrial Equipment Installation (China) äø­å»ŗäŗ”å±€å·„äøšč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(63950, 'https://ror.org/03bkmgf03', 'en', 1, 'https://ror.org/03bkmgf03 Guangdong Hydropower Planning & Design Institute'),
(63951, 'https://ror.org/01599zj86', 'en', 1, 'https://ror.org/01599zj86 Guangxi Hydraulic Power Machinery Research Institute å¹æč„æę°“åˆ©ęœŗę¢°ē ”ē©¶ę‰€'),
(63952, 'https://ror.org/05500xy74', 'no_lang_code', 1, 'https://ror.org/05500xy74 Guangdong Industrial Equipment Installation (China) å¹æäøœēœå·„äøšč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(63953, 'https://ror.org/05tedyt08', 'no_lang_code', 1, 'https://ror.org/05tedyt08 Everbright International (China) äø­å›½å…‰å¤§å›½é™…ęœ‰é™å…¬åø'),
(63954, 'https://ror.org/02e1zdz48', 'en', 1, 'https://ror.org/02e1zdz48 Guangxi Special Equipment Inspection Institute å¹æč„æå£®ę—č‡Ŗę²»åŒŗē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(63955, 'https://ror.org/00pgy4f30', 'no_lang_code', 1, 'https://ror.org/00pgy4f30 China Electric Equipment Group (China) äø­ē”µē”µę°”é›†å›¢ęœ‰é™å…¬åø'),
(63956, 'https://ror.org/040hegx59', 'en', 1, 'https://ror.org/040hegx59 Guangxi Agricultural Machinery Research Institute å¹æč„æå†œäøšęœŗę¢°ē ”ē©¶é™¢'),
(63957, 'https://ror.org/000hc5726', 'no_lang_code', 1, 'https://ror.org/000hc5726 First Design and Research Institute MI China (China) 中国第一设讔研究院'),
(63958, 'https://ror.org/052h3h832', 'en', 1, 'https://ror.org/052h3h832 Guangxi Institute of Oceanography 广脿海擋研究所'),
(63959, 'https://ror.org/02vg9gp47', 'en', 1, 'https://ror.org/02vg9gp47 Guangzhou Building Materials Institute å¹æå·žå»ŗē­‘ęę–™ē ”ē©¶ę‰€'),
(63960, 'https://ror.org/01wtjkn81', 'en', 1, 'https://ror.org/01wtjkn81 Guangdong Special Equipment Inspection and Research Institute å¹æäøœēœē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(63961, 'https://ror.org/03z4z1b55', 'en', 1, 'https://ror.org/03z4z1b55 Guangdong Iron and Steel Research Institute å¹æäøœēœé’¢é“ē ”ē©¶ę‰€'),
(63962, 'https://ror.org/000wc3348', 'en', 1, 'https://ror.org/000wc3348 Guangdong Machinery Research Institute å¹æäøœēœęœŗę¢°ē ”ē©¶ę‰€'),
(63963, 'https://ror.org/0353dhs61', 'en', 1, 'https://ror.org/0353dhs61 Hubei Polytechnic Institute ę¹– 北 职 业 ꊀ 术 å­¦ 院 简 介'),
(63964, 'https://ror.org/01hf8qc75', 'en', 1, 'https://ror.org/01hf8qc75 Hubei Provincial Water Resources and Hydropower Planning Survey and Design Institute ę¹–åŒ—ēœę°“åˆ©ę°“ē”µč§„åˆ’å‹˜ęµ‹č®¾č®”é™¢'),
(63965, 'https://ror.org/00hw5pa98', 'no_lang_code', 1, 'https://ror.org/00hw5pa98 Hunan Agricultural Products (China) ę¹–å—å†œäŗ§å“'),
(63966, 'https://ror.org/01qjhbg05', 'en', 1, 'https://ror.org/01qjhbg05 Guangzhou Railway Polytechnic å¹æå·žé“č·ÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(63967, 'https://ror.org/04p1qqj97', 'en', 1, 'https://ror.org/04p1qqj97 Hunan Communications Research Institute ę¹–å—äŗ¤é€šē ”ē©¶é™¢'),
(63968, 'https://ror.org/03dhkf841', 'no_lang_code', 1, 'https://ror.org/03dhkf841 Hangzhou West-Lake Fountain Installation Serials (China) ę­å·žč„æę¹–å–·ę³‰č®¾å¤‡ęˆå„—ęœ‰é™å…¬åø'),
(63969, 'https://ror.org/050bxqn58', 'en', 1, 'https://ror.org/050bxqn58 Xihu Institute of Electronic Research ę­å·žč„æę¹–ē”µå­ē ”ē©¶ę‰€'),
(63970, 'https://ror.org/01cxrh590', 'en', 1, 'https://ror.org/01cxrh590 South China National Centre of Metrology åŽå—å›½å®¶č®”é‡ęµ‹čÆ•äø­åæƒ'),
(63971, 'https://ror.org/04jxank96', 'en', 1, 'https://ror.org/04jxank96 Hunan Non-ferrous Metallurgical Labor Protection Institute ę¹–å—ēœęœ‰č‰²é‡‘å±žåŠ³åŠØäæęŠ¤ē ”ē©¶ę‰€'),
(63972, 'https://ror.org/02b9rcr39', 'en', 1, 'https://ror.org/02b9rcr39 Harbin Institute of Petroleum å“ˆå°”ę»ØēŸ³ę²¹å­¦é™¢'),
(63973, 'https://ror.org/02vy7sg87', 'en', 1, 'https://ror.org/02vy7sg87 Hunan Rice Research Institute ę¹–å—ēœę°“ēØ»ē ”ē©¶ę‰€'),
(63974, 'https://ror.org/04vrn7932', 'en', 1, 'https://ror.org/04vrn7932 Hunan Software Vocational Institute ę¹–å—č½Æä»¶čŒäøšå­¦é™¢'),
(63975, 'https://ror.org/05cmpp263', 'en', 1, 'https://ror.org/05cmpp263 Hunan Vocational College of Safety Technology ę¹–å—å®‰å…ØęŠ€ęœÆčŒäøšå­¦é™¢'),
(63976, 'https://ror.org/0391pty66', 'no_lang_code', 1, 'https://ror.org/0391pty66 Hunan Xiangdian Test Research Institute (China) ę¹–å—ę¹˜ē”µęµ‹čÆ•ē ”ē©¶ę‰€'),
(63977, 'https://ror.org/05bbfzp96', 'en', 1, 'https://ror.org/05bbfzp96 Harbin Welding Institute å“ˆå°”ę»Øē„ŠęŽ„ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(63978, 'https://ror.org/02fqh4r06', 'en', 1, 'https://ror.org/02fqh4r06 Jiangsu Provincial Marine and Fisheries Bureau ę±Ÿč‹ēœęµ·ę“‹äøŽęø”äøšå±€ 地址'),
(63979, 'https://ror.org/01hy8fk80', 'en', 1, 'https://ror.org/01hy8fk80 Guizhou Electromechanical Research and Design Institute'),
(63980, 'https://ror.org/01s5dew76', 'en', 1, 'https://ror.org/01s5dew76 Institute of Food Science and Technology é£Ÿå“ē§‘å­¦äøŽęŠ€ęœÆē ”ē©¶ę‰€'),
(63981, 'https://ror.org/00ag2q384', 'en', 1, 'https://ror.org/00ag2q384 Hebei Research Institute of Microbiology ę²³åŒ—ēœå¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(63982, 'https://ror.org/05wzyqm87', 'en', 1, 'https://ror.org/05wzyqm87 Guizhou Institute of Building Materials Science Research and Design Institute'),
(63983, 'https://ror.org/05r1f9v61', 'en', 1, 'https://ror.org/05r1f9v61 Guizhou Provincial Institute of Mountain Agricultural Machinery'),
(63984, 'https://ror.org/03zp7sq53', 'no_lang_code', 1, 'https://ror.org/03zp7sq53 Hefei Municipal Design and Research Institute (China) åˆč‚„åø‚åø‚ę”æč®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(63985, 'https://ror.org/05x0baj11', 'en', 1, 'https://ror.org/05x0baj11 Tianyi Institute of Biological Technology åˆč‚„å¤©äø€ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€ęˆ'),
(63986, 'https://ror.org/01em57323', 'en', 1, 'https://ror.org/01em57323 Guizhou Province Chemical Industry Research Institute'),
(63987, 'https://ror.org/01a1ft290', 'en', 1, 'https://ror.org/01a1ft290 Institute of Industry Technology Guangzhou å¹æå·žäø­å›½ē§‘å­¦é™¢å·„äøšęŠ€ęœÆē ”ē©¶é™¢'),
(63988, 'https://ror.org/035brg434', 'no_lang_code', 1, 'https://ror.org/035brg434 Guizhou Magic Pharmaceutical (China)'),
(63989, 'https://ror.org/02bfrg439', 'en', 1, 'https://ror.org/02bfrg439 Heilongjiang Academy of Forestry é»‘é¾™ę±Ÿēœęž—äøšē§‘å­¦é™¢'),
(63990, 'https://ror.org/03ekz9c12', 'no_lang_code', 1, 'https://ror.org/03ekz9c12 Guizhou Winstar Hydraulic Transmission Machinery (China) č“µå·žå‡Æę˜Ÿę¶²åŠ›ä¼ åŠØęœŗę¢°ęœ‰é™å…¬åø'),
(63991, 'https://ror.org/04vpw5755', 'en', 1, 'https://ror.org/04vpw5755 Heilongjiang Institute of Wood Science é»‘é¾™ę±ŸēœęœØęē§‘å­¦ē ”ē©¶ę‰€'),
(63992, 'https://ror.org/00a2qtn46', 'en', 1, 'https://ror.org/00a2qtn46 Heilongjiang Provincial Metrology and Testing Institute é»‘é¾™ę±Ÿēœč®”é‡ę£€å®šęµ‹čÆ•é™¢ ꊀ'),
(63993, 'https://ror.org/00xqhy713', 'en', 1, 'https://ror.org/00xqhy713 Heilongjiang Vocational Institute of Ecological Engineering é»‘é¾™ę±Ÿē”Ÿę€å·„ēØ‹čŒäøšå­¦é™¢'),
(63994, 'https://ror.org/05h8w0m23', 'en', 1, 'https://ror.org/05h8w0m23 Leukaemia & Lymphoma NI'),
(63995, 'https://ror.org/01wm3c497', 'en', 1, 'https://ror.org/01wm3c497 Prostate Cancer Research'),
(63996, 'https://ror.org/03n4ayy20', 'en', 1, 'https://ror.org/03n4ayy20 RAFT'),
(63997, 'https://ror.org/04q38p245', 'en', 1, 'https://ror.org/04q38p245 Restore'),
(63998, 'https://ror.org/028v1x030', 'en', 1, 'https://ror.org/028v1x030 Reverse Rett'),
(63999, 'https://ror.org/0324mr378', 'en', 1, 'https://ror.org/0324mr378 Borne Foundation'),
(64000, 'https://ror.org/046s87c39', 'en', 1, 'https://ror.org/046s87c39 The Lewy Body Society'),
(64001, 'https://ror.org/00jsa0k29', 'en', 1, 'https://ror.org/00jsa0k29 PBC Foundation'),
(64002, 'https://ror.org/04wqtzp08', 'no_lang_code', 1, 'https://ror.org/04wqtzp08 Henan Provincial Institute of Communications Planning Survey & Design (China) ę²³å—ēœäŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(64003, 'https://ror.org/031nqzs81', 'en', 1, 'https://ror.org/031nqzs81 Horological Research Institute of Light Industry č½»å·„äøšé’Ÿč”Øē ”ē©¶ę‰€'),
(64004, 'https://ror.org/02q5y6156', 'en', 1, 'https://ror.org/02q5y6156 Nanchang Institute of Science & Technology'),
(64005, 'https://ror.org/048shx058', 'no_lang_code', 1, 'https://ror.org/048shx058 Wuxi Taiji industry (China) ę— é””åø‚å¤Ŗęžå®žäøšč‚”ä»½ęœ‰é™å…¬åø'),
(64006, 'https://ror.org/01jah5c57', 'no_lang_code', 1, 'https://ror.org/01jah5c57 ATK Holding Group (China)'),
(64007, 'https://ror.org/02hqs8f63', 'en', 1, 'https://ror.org/02hqs8f63 Nanjing Institute of Mechatronic Technology å—äŗ¬ęœŗē”µęŠ€ęœÆē ”ē©¶ę‰€'),
(64008, 'https://ror.org/03m002728', 'no_lang_code', 1, 'https://ror.org/03m002728 Jiangsu Gaoke Applied Science Research Institute (China) ę±Ÿč‹é«˜ē§‘åŗ”ē”Øē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(64009, 'https://ror.org/01d4y8v03', 'en', 1, 'https://ror.org/01d4y8v03 Jiangsu Vocational Institute of Architectural Technology ę±Ÿč‹å»ŗē­‘čŒäøšęŠ€ęœÆå­¦é™¢'),
(64010, 'https://ror.org/009cevv08', 'en', 1, 'https://ror.org/009cevv08 Institute of Research of Iron and Steel Shasteel 钢铁研究所研究所'),
(64011, 'https://ror.org/05qfv6h82', 'no_lang_code', 1, 'https://ror.org/05qfv6h82 Nanjing Lishui Electronics Research Institute (China) å—äŗ¬äø½ę°“ē”µå­ē ”ē©¶ę‰€'),
(64012, 'https://ror.org/0412z8048', 'no_lang_code', 1, 'https://ror.org/0412z8048 Jiangsu Kawei Auto Industrial Group (China) ę±Ÿč‹å”åØę±½č½¦å·„äøšé›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(64013, 'https://ror.org/05tt6m403', 'en', 1, 'https://ror.org/05tt6m403 Nanjing Polytechnic Institute å—äŗ¬å·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(64014, 'https://ror.org/04pekda06', 'no_lang_code', 1, 'https://ror.org/04pekda06 Jiangsu Maritime Institute å›½é™…ę•™č‚²äŗ¤ęµäøŽęœåŠ”äø­åæƒ'),
(64015, 'https://ror.org/00zy60964', 'en', 1, 'https://ror.org/00zy60964 Jiangsu Province Special Equipment Safety Supervision and Inspection Institute ę±Ÿč‹ēœē‰¹ē§č®¾å¤‡å®‰å…Øē›‘ē£ę£€éŖŒē ”ē©¶é™¢ę— é””åˆ†é™¢'),
(64016, 'https://ror.org/036kvqx88', 'no_lang_code', 1, 'https://ror.org/036kvqx88 Jiangsu Provincial Architectural Design and Research Institute (China) ę±Ÿč‹ēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(64017, 'https://ror.org/02mnaa826', 'no_lang_code', 1, 'https://ror.org/02mnaa826 China Design Group (China) 中设设讔集团肔份'),
(64018, 'https://ror.org/034yf9p50', 'no_lang_code', 1, 'https://ror.org/034yf9p50 Nanjing Water Conservancy Planning & Design Institute (China) å—äŗ¬åø‚ę°“åˆ©č§„åˆ’č®¾č®”é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(64019, 'https://ror.org/02gdmz419', 'en', 1, 'https://ror.org/02gdmz419 Liaoning Provincial Bureau of Quality and Technical Supervision č¾½å®ēœč“Øé‡ęŠ€ęœÆē›‘ē£å±€'),
(64020, 'https://ror.org/034jmpk69', 'en', 1, 'https://ror.org/034jmpk69 North China Municipal Engineering Design & Research Institute äø­å›½åø‚ę”æå·„ēØ‹åŽåŒ—č®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(64021, 'https://ror.org/01ny34961', 'no_lang_code', 1, 'https://ror.org/01ny34961 China Huarong Energy (China) äø­å›½åŽčžčƒ½ęŗ'),
(64022, 'https://ror.org/01gpm9f56', 'no_lang_code', 1, 'https://ror.org/01gpm9f56 Jiangsu Provincial Water Survey & Design Institute (China) ę±Ÿč‹ēœę°“åˆ©å‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø');
INSERT INTO `rors` VALUES
(64023, 'https://ror.org/033fj2y02', 'en', 1, 'https://ror.org/033fj2y02 Liaoning Petroleum Equipment Institute č¾½å®é™†ęµ·ēŸ³ę²¹č£…å¤‡ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(64024, 'https://ror.org/04j4jwe91', 'en', 1, 'https://ror.org/04j4jwe91 Jiangsu Institute of Hydraulic Science and Technology ę±Ÿč‹ēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(64025, 'https://ror.org/03c4brc68', 'no_lang_code', 1, 'https://ror.org/03c4brc68 Nantong Tongbo Equipment Installation Engineering (China) å—é€šé€šåšč®¾å¤‡å®‰č£…å·„ēØ‹ęœ‰é™å…¬åø'),
(64026, 'https://ror.org/00822yz63', 'en', 1, 'https://ror.org/00822yz63 Liaoning Planning and Design Institute of Post and Telecommunication č¾½å®é‚®ē”µč§„åˆ’č®¾č®”é™¢ęœ‰é™å…¬åøē‰ˆ'),
(64027, 'https://ror.org/047qkza04', 'no_lang_code', 1, 'https://ror.org/047qkza04 Jiangsu Yanjiang Chemical Resources Development Research Institute (China) ę±Ÿč‹ę²æę±ŸåŒ–å­¦čµ„ęŗå¼€å‘ē ”ē©¶é™¢'),
(64028, 'https://ror.org/02azzxw19', 'en', 1, 'https://ror.org/02azzxw19 Liaoning Water Conservancy Society 辽宁省氓利学会'),
(64029, 'https://ror.org/01b5yxj44', 'no_lang_code', 1, 'https://ror.org/01b5yxj44 Jiangxi Institute of Agricultural Machinery (Company) ę±Ÿč„æå†œäøšęœŗę¢°ē ”ē©¶ę‰€'),
(64030, '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ú'),
(64031, 'https://ror.org/0013rer79', 'no_lang_code', 1, 'https://ror.org/0013rer79 Ningbo Transportation Planning and Design Institute (China)'),
(64032, 'https://ror.org/05vdz3s03', 'no_lang_code', 1, 'https://ror.org/05vdz3s03 Ningxia Machinery Research Institute (China)'),
(64033, 'https://ror.org/043my4k18', 'en', 1, 'https://ror.org/043my4k18 Jiangxi Provincial Institute of Water Resources Planning and Design ę±Ÿč„æēœę°“åˆ©č§„åˆ’č®¾č®”ē ”ē©¶é™¢ ē‰ˆęƒę‰€ęœ‰'),
(64034, 'https://ror.org/04ttwb316', 'en', 1, 'https://ror.org/04ttwb316 Northwest Research Institute of Chemical Industry č„æåŒ—åŒ–å·„ē ”ē©¶é™¢'),
(64035, 'https://ror.org/023fyxd70', 'en', 1, 'https://ror.org/023fyxd70 Panzhihua Academy of Agriculture and Forestry Sciences ę”€ęžčŠ±åø‚å†œęž—ē§‘å­¦ē ”ē©¶é™¢ę˜Æē”±'),
(64036, 'https://ror.org/04acgky61', 'en', 1, 'https://ror.org/04acgky61 Luoyang Cement Engineering Design and Research Institute ę“›é˜³ę°“ę³„å·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(64037, 'https://ror.org/03m6cnv16', 'no_lang_code', 1, 'https://ror.org/03m6cnv16 NTST Forestry Machine Manufacture Installation (China) NTST ęž—äøšęœŗę¢°åˆ¶é€ å®‰č£…'),
(64038, 'https://ror.org/047by7h51', 'no_lang_code', 1, 'https://ror.org/047by7h51 Luoyang Sanlong Installation and Maintenance (China) ę“›é˜³äø‰éš†å®‰č£…ę£€äæ®ęœ‰é™å…¬åø'),
(64039, 'https://ror.org/040pyq062', 'no_lang_code', 1, 'https://ror.org/040pyq062 Shandong Lianxing Energy Group (China) å±±äøœč”ę˜Ÿčƒ½ęŗé›†å›¢'),
(64040, 'https://ror.org/05vtgxb02', 'no_lang_code', 1, 'https://ror.org/05vtgxb02 Jinan Municipal Engineering Design & Research Institute (China) ęµŽå—åø‚åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(64041, 'https://ror.org/01f4ntp03', 'en', 1, 'https://ror.org/01f4ntp03 Material and Industrial Technology Research Institute Beijing ę–°ęę–™äøŽäŗ§äøšęŠ€ęœÆåŒ—äŗ¬ē ”ē©¶é™¢'),
(64042, 'https://ror.org/03x1j8d96', 'no_lang_code', 1, 'https://ror.org/03x1j8d96 China Railway Design Corporation (China) äø­å›½é“č·Æč®¾č®”é›†å›¢ęœ‰é™å…¬åø'),
(64043, 'https://ror.org/01wcts620', 'en', 1, 'https://ror.org/01wcts620 Shandong Transportation Research Institute å±±äøœēœäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(64044, 'https://ror.org/01rvzsj56', 'en', 1, 'https://ror.org/01rvzsj56 Qingdao Aerospace Semiconductor Research Institute é’å²›čˆŖå¤©åŠåÆ¼ä½“ē ”ē©¶ę‰€ęœ‰é™å…¬åøåŽŸ'),
(64045, 'https://ror.org/0222tsk12', 'en', 1, 'https://ror.org/0222tsk12 Shanghai Electric Tool Research Institute äøŠęµ·ē”µåŠØå·„å…·ē ”ē©¶ę‰€'),
(64046, 'https://ror.org/024aa1608', 'en', 1, 'https://ror.org/024aa1608 Shanghai Pesticide Research Institute äøŠęµ·åø‚å†œčÆē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(64047, 'https://ror.org/00z74rd31', 'no_lang_code', 1, 'https://ror.org/00z74rd31 Shanghai FRP Research Institute (China) äøŠęµ·ēŽ»ē’ƒé’¢ē ”ē©¶ę‰€'),
(64048, 'https://ror.org/04dmkfz43', 'no_lang_code', 1, 'https://ror.org/04dmkfz43 Decai Decoration (China) å¾·ę‰č£é£¾č‚”ä»½ęœ‰é™å…¬'),
(64049, 'https://ror.org/0097ttw21', 'no_lang_code', 1, 'https://ror.org/0097ttw21 Qingdao Installation & Construction (China) é’å²›å®‰č£…å»ŗč®¾č‚”ä»½ęœ‰é™å…¬åø'),
(64050, 'https://ror.org/044f58834', 'no_lang_code', 1, 'https://ror.org/044f58834 Shanghai Huayi Group (China) äøŠęµ·åŽč°Šļ¼ˆé›†å›¢ļ¼‰å…¬åø'),
(64051, 'https://ror.org/00jvma136', 'no_lang_code', 1, 'https://ror.org/00jvma136 Shanghai Industrial Boiler Research Institute (China) äøŠęµ·å·„äøšé”…ē‚‰ē ”ē©¶ę‰€'),
(64052, 'https://ror.org/03ssqhs45', 'en', 1, 'https://ror.org/03ssqhs45 Qingdao Institute of Animal Husbandry and Veterinary Medicine é’å²›åø‚ē•œē‰§å…½åŒ»ē ”ē©¶ę‰€'),
(64053, 'https://ror.org/03j1pdd39', 'en', 1, 'https://ror.org/03j1pdd39 Shanghai Industrial Technology Institute äøŠęµ·å·„äøšęŠ€ęœÆå­¦é™¢'),
(64054, 'https://ror.org/04re28h79', 'en', 1, 'https://ror.org/04re28h79 Shaanxi Institute of International Trade & Commerce 陕脿国际商蓸学院'),
(64055, 'https://ror.org/01vqbzy86', 'en', 1, 'https://ror.org/01vqbzy86 Shanghai Laser Technology Institute äøŠęµ·åø‚ęæ€å…‰ęŠ€ęœÆē ”ē©¶ę‰€'),
(64056, 'https://ror.org/00gznmy49', 'en', 1, 'https://ror.org/00gznmy49 Shaanxi Railway Institute 陕脿铁道学院'),
(64057, 'https://ror.org/04jvr6m30', 'no_lang_code', 1, 'https://ror.org/04jvr6m30 China Post (China) 中国邮政'),
(64058, 'https://ror.org/057h57w33', 'en', 1, 'https://ror.org/057h57w33 Qiqihar Institute of Engineering é½é½å“ˆå°”å·„ēØ‹å­¦é™¢'),
(64059, 'https://ror.org/04k7c8d26', 'no_lang_code', 1, 'https://ror.org/04k7c8d26 Shanghai Institute of Process Automation Instrumentation (China) äøŠęµ·å·„äøšč‡ŖåŠØåŒ–ä»Ŗč”Øē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(64060, 'https://ror.org/05ceqm842', 'no_lang_code', 1, 'https://ror.org/05ceqm842 CNEX (China)'),
(64061, 'https://ror.org/003tn6j35', 'en', 1, 'https://ror.org/003tn6j35 Shandong Institute of Agricultural Sustainable Development å±±äøœå†œäøšåÆęŒē»­å‘å±•ē ”ē©¶é™¢'),
(64062, 'https://ror.org/04vmegd74', 'en', 1, 'https://ror.org/04vmegd74 Shanghai Landscape Architectural Design Research institute äøŠęµ·å›­ęž—å»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(64063, 'https://ror.org/03gb38m78', 'en', 1, 'https://ror.org/03gb38m78 Shanghai Tongji Urban Planning and Design Institute äøŠęµ·åŒęµŽåŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢åœØåŒ'),
(64064, 'https://ror.org/01wxtxj33', 'no_lang_code', 1, 'https://ror.org/01wxtxj33 Shanghai Urban Transportation Design Institute (China) äøŠęµ·åø‚äŗ¤é€šč®¾č®”é™¢'),
(64065, 'https://ror.org/03gwaxw53', 'en', 1, 'https://ror.org/03gwaxw53 Services Australia'),
(64066, 'https://ror.org/01n94r461', 'en', 1, 'https://ror.org/01n94r461 Shandong Academy of Forestry å±±äøœēœęž—äøšē§‘å­¦é™¢'),
(64067, 'https://ror.org/00zsjqa04', 'en', 1, 'https://ror.org/00zsjqa04 Light Industry Hangzhou Electromechanical Design Institute č½»å·„äøšę­å·žęœŗē”µč®¾č®”ē ”ē©¶é™¢'),
(64068, 'https://ror.org/005ysj118', 'en', 1, 'https://ror.org/005ysj118 Changzhou Vocational Institute of Light Industry åøøå·žč½»å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(64069, 'https://ror.org/02y8m9y76', 'en', 1, 'https://ror.org/02y8m9y76 Beijing Institute of Water åŒ—äŗ¬ę°“ē ”ē©¶ę‰€'),
(64070, 'https://ror.org/05k393r70', 'en', 1, 'https://ror.org/05k393r70 Hunan Energy Research Institute ę¹–å—ēœčƒ½ęŗē ”ē©¶ę‰€'),
(64071, 'https://ror.org/00wgtjd08', 'en', 1, 'https://ror.org/00wgtjd08 Guangdong Institute of Arts and Sciences å¹æäøœę–‡ē†čŒäøšå­¦é™¢'),
(64072, 'https://ror.org/01n4hda81', 'no_lang_code', 1, 'https://ror.org/01n4hda81 Shandong Huanneng Design Institute (China) å±±äøœēŽÆčƒ½č®¾č®”é™¢'),
(64073, 'https://ror.org/03xk2yz39', 'en', 1, 'https://ror.org/03xk2yz39 Shandong Institute of Commerce & Technology å±±äøœå•†äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(64074, 'https://ror.org/057zxk877', 'no_lang_code', 1, 'https://ror.org/057zxk877 Tianjin Aolian Special Steel Structure Installation Engineering (China) å¤©ę“„åø‚å„„č”ē‰¹é’¢ē»“ęž„å®‰č£…å·„ēØ‹ęœ‰é™å…¬åø'),
(64075, 'https://ror.org/0158njk12', 'no_lang_code', 1, 'https://ror.org/0158njk12 Shanxi Industrial Equipment Installation Group (Taiwan) å±±č„æēœå·„äøšč®¾å¤‡å®‰č£…é›†å›¢ęœ‰é™å…¬åø'),
(64076, 'https://ror.org/05acyge75', 'no_lang_code', 1, 'https://ror.org/05acyge75 Shantou Light Industrial Machinery Factory (China) ę±•å¤“č½»å·„ęœŗę¢°åŽ‚ęœ‰é™å…¬åø'),
(64077, 'https://ror.org/04q6c1q57', 'en', 1, 'https://ror.org/04q6c1q57 Shandong Academy of Pharmaceutical Sciences å±±äøœēœčÆå­¦ē§‘å­¦é™¢'),
(64078, 'https://ror.org/02tthqe19', 'en', 1, 'https://ror.org/02tthqe19 Tianjin Institute of Advanced Technology å¤©ę“„äø­ē§‘å…ˆčæ›ęŠ€ęœÆē ”ē©¶é™¢'),
(64079, 'https://ror.org/008hpge95', 'no_lang_code', 1, 'https://ror.org/008hpge95 Shenzhen Metro (China) ę·±åœ³åø‚åœ°é“'),
(64080, 'https://ror.org/023t03t27', 'en', 1, 'https://ror.org/023t03t27 Shandong Ocean and Fisheries Department å±±äøœēœęµ·ę“‹äøŽęø”äøšåŽ…'),
(64081, 'https://ror.org/05y7veh17', 'en', 1, 'https://ror.org/05y7veh17 Shanxi Transportation Research Institute å±±č„æēœäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(64082, 'https://ror.org/0014vc978', 'en', 1, 'https://ror.org/0014vc978 Shanxi Provincial Traffic Planning Survey and Design Institute å±±č„æēœäŗ¤é€šč§„åˆ’å‹˜åÆŸč®¾č®”é™¢'),
(64083, 'https://ror.org/010ryc044', 'no_lang_code', 1, 'https://ror.org/010ryc044 Tianjin Research Institute of Electric Science (China) å¤©ę“„ē”µę°”ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(64084, 'https://ror.org/01pjqz574', 'no_lang_code', 1, 'https://ror.org/01pjqz574 Zibo Qixiang Petrochemical Industry Group (China) ę·„åšåÆē„„ēŸ³åŒ–å·„äøšé›†å›¢'),
(64085, 'https://ror.org/00xgj2b15', 'no_lang_code', 1, 'https://ror.org/00xgj2b15 Tianjin Food Group (China) å¤©ę“„é£Ÿå“é›†å›¢'),
(64086, 'https://ror.org/02t8wny28', 'no_lang_code', 1, 'https://ror.org/02t8wny28 Tianjin Ganghang Installation Engineering (China) å¤©ę“„ęøÆčˆŖå®‰č£…å·„ēØ‹ęœ‰é™č“£ä»»å…¬åø'),
(64087, 'https://ror.org/04nk2tb51', 'en', 1, 'https://ror.org/04nk2tb51 Shandong Special Equipment Inspection Institute å±±äøœēœē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(64088, 'https://ror.org/016k9q072', 'no_lang_code', 1, 'https://ror.org/016k9q072 Shandong Academy of Textile Science (China) å±±äøœēŗŗē»‡ē§‘å­¦ē ”ē©¶é™¢'),
(64089, 'https://ror.org/028kjem67', 'en', 1, 'https://ror.org/028kjem67 Solar Energy Research Institute of Sun Yat-sen University é”ŗå¾·äø­å±±å¤§å­¦å¤Ŗé˜³čƒ½ē ”ē©¶é™¢ē”±'),
(64090, 'https://ror.org/01tbkq861', 'no_lang_code', 1, 'https://ror.org/01tbkq861 Tianjin Geothermal Exploration, Development and Design Institute (China) å¤©ę“„åœ°ēƒ­å‹˜ęŸ„å¼€å‘č®¾č®”é™¢'),
(64091, 'https://ror.org/00rxcx675', 'en', 1, 'https://ror.org/00rxcx675 Tianjin Heat Treatment Research Institute å¤©ę“„åø‚ēƒ­å¤„ē†ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(64092, 'https://ror.org/05fbfky85', 'en', 1, 'https://ror.org/05fbfky85 Sichuan Dongpo China Kimchi Industrial Technology Research Institute å››å·äøœå”äø­å›½ę³”čœäŗ§äøšęŠ€ęœÆē ”ē©¶é™¢ę˜Æåŗ”ę³”'),
(64093, 'https://ror.org/03pydxa09', 'en', 1, 'https://ror.org/03pydxa09 Tianjin Institute of Metrological Supervision Testing å¤©ę“„č®”é‡ē›‘ē£ę£€ęµ‹ē§‘å­¦ē ”ē©¶é™¢'),
(64094, 'https://ror.org/02zk30t14', 'no_lang_code', 1, 'https://ror.org/02zk30t14 Wolong Electric Group Hangzhou Research Institute (China)'),
(64095, 'https://ror.org/01mdgds23', 'en', 1, 'https://ror.org/01mdgds23 Sichuan Machinery Research and Design Institute å››å·ēœęœŗę¢°ē ”ē©¶č®¾č®”é™¢ęœŗ'),
(64096, 'https://ror.org/042h3jc15', 'en', 1, 'https://ror.org/042h3jc15 Suzhou Electronic Products Inspection č‹å·žē”µå­äŗ§å“ę£€éŖŒę‰€'),
(64097, 'https://ror.org/00r2js569', 'no_lang_code', 1, 'https://ror.org/00r2js569 Golden Concord Group (China) 金色 康科德集团'),
(64098, 'https://ror.org/04h9hnm31', 'en', 1, 'https://ror.org/04h9hnm31 Tianjin Metallurgical Vocational Technical College å¤©ę“„å†¶é‡‘čŒäøšęŠ€ęœÆå­¦é™¢'),
(64099, 'https://ror.org/05tm3n275', 'no_lang_code', 1, 'https://ror.org/05tm3n275 ARTS Group (China) č‰ŗęœÆ 组'),
(64100, 'https://ror.org/05xwtrp65', 'en', 1, 'https://ror.org/05xwtrp65 Suzhou Industrial Park Institute of Services Outsourcing č‹å·žå·„äøšå›­åŒŗęœåŠ”å¤–åŒ…čŒäøšå­¦é™¢'),
(64101, 'https://ror.org/02dw6dx51', 'no_lang_code', 1, 'https://ror.org/02dw6dx51 Sinograin (China) 中储粮'),
(64102, 'https://ror.org/01c8w8x70', 'en', 1, 'https://ror.org/01c8w8x70 Tianjin North Garden Ecological Environmental Engineering Research Institute å¤©ę“„åŒ—å›­ē”Ÿę€ēŽÆå¢ƒå·„ēØ‹ē ”ē©¶ę‰€'),
(64103, 'https://ror.org/0305q1250', 'en', 1, 'https://ror.org/0305q1250 Wuhan Modern Urban Agriculture Planning and Design Institute ę­¦ę±‰ēŽ°ä»£éƒ½åø‚å†œäøšč§„åˆ’č®¾č®”é™¢č‚”ä»½ęœ‰é™å…¬'),
(64104, 'https://ror.org/05krfyb07', 'no_lang_code', 1, 'https://ror.org/05krfyb07 MEMS RIGHT (China)'),
(64105, 'https://ror.org/00ycq1k13', 'en', 1, 'https://ror.org/00ycq1k13 Wuhan Municipal Engineering Design & Research Institute ę­¦ę±‰åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åøē®€ä»‹'),
(64106, 'https://ror.org/02gdweq07', 'en', 1, 'https://ror.org/02gdweq07 Suzhou Institute of Trade & Commerce č‹å·žåø‚å•†č“øå­¦é™¢'),
(64107, 'https://ror.org/057ngkn52', 'no_lang_code', 1, 'https://ror.org/057ngkn52 Xianyang Research and Design Institute of Ceramics (China) å’øé˜³é™¶ē“·ē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åø'),
(64108, 'https://ror.org/03ywvs716', 'en', 1, 'https://ror.org/03ywvs716 Suzhou Polytechnic Institute of Agriculture č‹å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(64109, 'https://ror.org/00a9kc733', 'no_lang_code', 1, 'https://ror.org/00a9kc733 Tianjin Rubber Industry Institute (China) å¤©ę“„åø‚ę©”čƒ¶å·„äøšē ”ē©¶ę‰€'),
(64110, 'https://ror.org/02mcdae06', 'en', 1, 'https://ror.org/02mcdae06 Wuhan Ship Development & Design Institute ę­¦ę±‰čˆ¹čˆ¶č®¾č®”ē ”ē©¶é™¢'),
(64111, 'https://ror.org/04m2bcn74', 'no_lang_code', 1, 'https://ror.org/04m2bcn74 System Equipment (China) ē³»ē»Ÿč®¾å¤‡'),
(64112, 'https://ror.org/025mpfp07', 'en', 1, 'https://ror.org/025mpfp07 Tianjin Special Equipment Supervision and Inspection Technology Research Institute å¤©ę“„åø‚ē‰¹ē§č®¾å¤‡ē›‘ē£ę£€ęŸ„ę£€éŖŒęŠ€ęœÆē ”ē©¶é™¢'),
(64113, 'https://ror.org/01pmqys24', 'en', 1, 'https://ror.org/01pmqys24 Tianjin Textile Machinery and Equipment Research Institute å¤©ę“„ēŗŗē»‡ęœŗę¢°å™Øęē ”ē©¶ę‰€'),
(64114, 'https://ror.org/01s5hh873', 'en', 1, 'https://ror.org/01s5hh873 Xinjiang Institute of Engineering 新疆巄程学院'),
(64115, 'https://ror.org/03hmm9666', 'no_lang_code', 1, 'https://ror.org/03hmm9666 Tianjin Energy Investment Group (China) å¤©ę“„čƒ½ęŗęŠ•čµ„é›†å›¢ęœ‰é™å…¬åø'),
(64116, 'https://ror.org/00swjtf68', 'en', 1, 'https://ror.org/00swjtf68 Anhui Institute of Robotics Industrial Technology Research Institute å®‰å¾½å·„ēØ‹å¤§å­¦ęœŗå™Øäŗŗäŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(64117, 'https://ror.org/01mj1ap13', 'en', 1, 'https://ror.org/01mj1ap13 Xinjiang Industry Technical College ę–°ē–†č½»å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(64118, 'https://ror.org/035mna818', 'en', 1, 'https://ror.org/035mna818 Wuhan Academy of Agricultural Sciences ę­¦ę±‰åø‚å†œäøšē§‘å­¦é™¢'),
(64119, 'https://ror.org/0087dde40', 'no_lang_code', 1, 'https://ror.org/0087dde40 Taixing First Construction Group (China) ę³°å…“äø€å»ŗå»ŗč®¾é›†å›¢ęœ‰é™å…¬åø'),
(64120, 'https://ror.org/01f91hj24', 'no_lang_code', 1, 'https://ror.org/01f91hj24 Xinjiang Machinery Research Institute (China) ę–°ē–†ęœŗę¢°ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(64121, 'https://ror.org/049w4dp92', 'en', 1, 'https://ror.org/049w4dp92 Wuhu Hit Robot Technology Research Institute å“ˆē‰¹ęœŗå™Øäŗŗē ”ē©¶é™¢'),
(64122, 'https://ror.org/05wd2ky28', 'en', 1, 'https://ror.org/05wd2ky28 Tianjin Academy for Intelligent Recognition Technologies å¤©ę“„äø­ē§‘ę™ŗčƒ½čÆ†åˆ«äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(64123, 'https://ror.org/00dy5pp48', 'no_lang_code', 1, 'https://ror.org/00dy5pp48 Lanzhou Great Wall Electrical Corporation å…°å·žé•æåŸŽē”µå·„č‚”ä»½ęœ‰é™å…¬åø'),
(64124, 'https://ror.org/00xnkp952', 'en', 1, 'https://ror.org/00xnkp952 Xinjiang Uygur Autonomous Region Institute Inspection of Special Equipment ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(64125, 'https://ror.org/022t97w40', 'en', 1, 'https://ror.org/022t97w40 Guomao Engineering Design Institute 国蓸巄程设讔院'),
(64126, 'https://ror.org/008qws759', 'en', 1, 'https://ror.org/008qws759 Xinjiang Uygur Autonomous Region Product Quality Supervision and Inspection Institute ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗäŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒē ”ē©¶é™¢'),
(64127, 'https://ror.org/00jma7w30', 'en', 1, 'https://ror.org/00jma7w30 Wuxi Dongfang Environmental Engineering Design Institute ę— é””åø‚äøœę–¹ēŽÆå¢ƒå·„ēØ‹č®¾č®”ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(64128, 'https://ror.org/00s011v85', 'no_lang_code', 1, 'https://ror.org/00s011v85 Coal Industry Taiyuan Design and Research Institute (China) ē…¤ē‚­å·„äøšå¤ŖåŽŸč®¾č®”ē ”ē©¶é™¢'),
(64129, 'https://ror.org/03snx9z92', 'en', 1, 'https://ror.org/03snx9z92 Wuxi Fuel Injection Equipment Research Institute äø­å›½ē¬¬äø€ę±½č½¦č‚”ä»½ęœ‰é™å…¬åøę— é””ę²¹ę³µę²¹å˜“ē ”ē©¶ę‰€'),
(64130, 'https://ror.org/0475cs869', 'no_lang_code', 1, 'https://ror.org/0475cs869 Wuxi Industrial Equipment Installation (China) ę— é””åø‚å·„äøšč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(64131, 'https://ror.org/05qf0w940', 'no_lang_code', 1, 'https://ror.org/05qf0w940 Tongling Nonferrous Metals Group Holding (China) é“œé™µęœ‰č‰²é‡‘å±žé›†å›¢ęŽ§č‚”ęœ‰é™å…¬åø'),
(64132, 'https://ror.org/04rp1yr92', 'en', 1, 'https://ror.org/04rp1yr92 Yancheng Vocational Institute of Industry Technology ē›åŸŽå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(64133, 'https://ror.org/02grzhe48', 'en', 1, 'https://ror.org/02grzhe48 Yangzhou Polytechnic Institute ę‰¬å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(64134, 'https://ror.org/02d0fkx94', 'en', 1, 'https://ror.org/02d0fkx94 Taiyuan Institute of Technology'),
(64135, 'https://ror.org/00hc2b418', 'en', 1, 'https://ror.org/00hc2b418 Wuxi Pneumatic Technology Research Institute'),
(64136, 'https://ror.org/043kg1637', 'no_lang_code', 1, 'https://ror.org/043kg1637 Chambroad Chemical Industry Research Institute (China) é¦™ęøÆåŒ–å­¦å·„äøšē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(64137, 'https://ror.org/0009f0p28', 'en', 1, 'https://ror.org/0009f0p28 Wuxi Municipal Product Quality Supervision and Inspection Institute ę— é””åø‚äŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒé™¢'),
(64138, 'https://ror.org/04mf01f43', 'no_lang_code', 1, 'https://ror.org/04mf01f43 Wanda Group (China) 万达集团'),
(64139, 'https://ror.org/04yq0fn97', 'no_lang_code', 1, 'https://ror.org/04yq0fn97 Yueyang Changling Equipment Research Institute (China) å²³é˜³é•æå²­č®¾å¤‡ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(64140, 'https://ror.org/03mbt7q53', 'en', 1, 'https://ror.org/03mbt7q53 Wuxi Wind Power Design and Research Institute ę— é””é£Žē”µč®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(64141, 'https://ror.org/01dkhme60', 'en', 1, 'https://ror.org/01dkhme60 First Research Institute of the Ministry of Public Security å…¬å®‰éƒØē¬¬äø€ē ”ē©¶ę‰€'),
(64142, 'https://ror.org/02z4pnd66', 'no_lang_code', 1, 'https://ror.org/02z4pnd66 Zhejiang Modern Chinese Medicine and Natural Medicine Research Institute (China) ęµ™ę±ŸēŽ°ä»£äø­čÆäøŽå¤©ē„¶čÆē‰©ē ”ē©¶é™¢ęœ‰é™å…¬åøäŗŽ'),
(64143, 'https://ror.org/00jzxnz73', 'en', 1, 'https://ror.org/00jzxnz73 The Third Institute of the Ministry of Public Security å…¬å®‰éƒØē¬¬äø‰ē ”ē©¶ę‰€'),
(64144, 'https://ror.org/00f89ms08', 'en', 1, 'https://ror.org/00f89ms08 Zhejiang Province Institute of Architectural Design and Research ęµ™ę±Ÿēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(64145, 'https://ror.org/04zh2hd39', 'no_lang_code', 1, 'https://ror.org/04zh2hd39 Yunnan Investment Group (China) äŗ‘ęŠ•é›†å›¢'),
(64146, 'https://ror.org/011cs1z84', 'en', 1, 'https://ror.org/011cs1z84 Zhejiang Provincial Institute of Communications Planning,Design & Research ęµ™ę±Ÿēœäŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(64147, 'https://ror.org/04y76yy92', 'no_lang_code', 1, 'https://ror.org/04y76yy92 Zheng yan Seed (China) éƒ‘ē‡•ē§å­'),
(64148, 'https://ror.org/02vnfe476', 'no_lang_code', 1, 'https://ror.org/02vnfe476 Zhe jiang Research Institute of Traditional Chinese Medicine (China) ęµ™ę±Ÿēœäø­åŒ»čÆē ”ē©¶é™¢'),
(64149, 'https://ror.org/01dt3rt55', 'en', 1, 'https://ror.org/01dt3rt55 Wuzhou Food and Drug Administration ę¢§å·žåø‚é£Ÿå“čÆå“ē›‘ē£ē®”ē†å±€'),
(64150, 'https://ror.org/03bw4fh67', 'no_lang_code', 1, 'https://ror.org/03bw4fh67 Zhejiang Seahead Ship Design And Research Institute (China) ęµ™ę±Ÿę¬£ęµ·čˆ¹čˆ¶č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(64151, 'https://ror.org/053zgay46', 'en', 1, 'https://ror.org/053zgay46 Zhejiang Institute of Modern Textile Industry ęµ™ę±ŸēœēŽ°ä»£ēŗŗē»‡å·„äøšē ”ē©¶é™¢'),
(64152, 'https://ror.org/05f399j69', 'en', 1, 'https://ror.org/05f399j69 Zhejiang Metallurgical Research Institute ęµ™ę±Ÿå†¶é‡‘ē ”ē©¶é™¢'),
(64153, 'https://ror.org/03aqaa732', 'en', 1, 'https://ror.org/03aqaa732 Yunnan Machinery Research and Design Institute äŗ‘å—ēœęœŗę¢°ē ”ē©¶č®¾č®”é™¢'),
(64154, 'https://ror.org/03myvh511', 'en', 1, 'https://ror.org/03myvh511 Zhangzhou Vocational and Technical College ę¼³å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(64155, 'https://ror.org/03k52at40', 'en', 1, 'https://ror.org/03k52at40 Academy of Philosophy ģ² ķ•™ ģ•„ģ¹“ė°ėÆø'),
(64156, 'https://ror.org/05ynh7w25', 'no_lang_code', 1, 'https://ror.org/05ynh7w25 ZheJiang East Crystal Electronic (China) ęµ™ę±Ÿäøœę™¶ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(64157, 'https://ror.org/026w3f849', 'no_lang_code', 1, 'https://ror.org/026w3f849 Jiangsu Yonggang Group (China)'),
(64158, 'https://ror.org/05xh4v485', 'en', 1, 'https://ror.org/05xh4v485 Korean Political Science Association ķ•œźµ­ģ •ģ¹˜ķ•™ķšŒ'),
(64159, 'https://ror.org/04e5z5943', 'en', 1, 'https://ror.org/04e5z5943 Tasan Cultural Foundation ė‹¤ģ‚°ķ•™ģˆ ė¬øķ™”ģž¬ė‹Øģ€ 근세'),
(64160, 'https://ror.org/019w5wj36', 'no_lang_code', 1, 'https://ror.org/019w5wj36 (주)ģ—ģ–“ė ˆģø Airrane (South Korea)'),
(64161, 'https://ror.org/03v27je35', 'no_lang_code', 1, 'https://ror.org/03v27je35 (주)ģ…€ė£Øė©”ė“œėŠ” Cellumed (South Korea)'),
(64162, 'https://ror.org/00k872414', 'en', 1, 'https://ror.org/00k872414 Korean Association for Radiation Application ķ•œźµ­ė°©ģ‚¬ģ„ ģ§„ķ„ķ˜‘ķšŒ'),
(64163, 'https://ror.org/024xby240', 'no_lang_code', 1, 'https://ror.org/024xby240 Airport Facilities Management (South Korea) 공항 ģ‹œģ„¤ ꓀리 (주)'),
(64164, 'https://ror.org/02y0st784', 'en', 1, 'https://ror.org/02y0st784 The Korean Archeological Society ķ•œźµ­ź³ ź³ ķ•™ķšŒė¼ ķ•œė‹¤'),
(64165, 'https://ror.org/01j2rpy06', 'en', 1, 'https://ror.org/01j2rpy06 Ajou Motor College 아주 ģžė™ģ°Ø ėŒ€ķ•™'),
(64166, 'https://ror.org/022ypyz07', 'no_lang_code', 1, 'https://ror.org/022ypyz07 (주)중앙산업 Chungang Industry (South Korea)'),
(64167, 'https://ror.org/04q586p77', 'en', 1, 'https://ror.org/04q586p77 Choonhae College of Health Sciences ģ¶©ķ•“ 걓강 과학 ėŒ€ķ•™'),
(64168, 'https://ror.org/02epwnv39', 'no_lang_code', 1, 'https://ror.org/02epwnv39 ILJIN Group (South Korea) ģ¼ģ§„ 그룹'),
(64169, 'https://ror.org/03dyavz10', 'en', 1, 'https://ror.org/03dyavz10 Institute for National Security Strategy źµ­ź°€ģ•ˆė³“ģ „ėžµģ—°źµ¬ģ›'),
(64170, 'https://ror.org/04pwwk213', 'no_lang_code', 1, 'https://ror.org/04pwwk213 HIC (South Korea)'),
(64171, 'https://ror.org/05fgdse54', 'en', 1, 'https://ror.org/05fgdse54 Korea Association for Nondestructive Testing ķ•œźµ­ ė¹„ķŒŒź““ 검사 ķ˜‘ķšŒ'),
(64172, 'https://ror.org/00jz5ch17', 'no_lang_code', 1, 'https://ror.org/00jz5ch17 Jangan University ģž„ģ•ˆėŒ€ķ•™źµ'),
(64173, 'https://ror.org/05gq6gs51', 'en', 1, 'https://ror.org/05gq6gs51 Korean Association for Radiation Protection ėŒ€ķ•œė°©ģ‚¬ģ„ ė°©ģ–“ķ•™ķšŒ'),
(64174, 'https://ror.org/00zbas770', 'en', 1, 'https://ror.org/00zbas770 Art History Association Of Korea ķ•œźµ­ėÆøģˆ ģ‚¬ķ•™ķšŒ'),
(64175, 'https://ror.org/01m64ks43', 'en', 1, 'https://ror.org/01m64ks43 The Association of East Asian Ancient Studies ź³ ėŒ€ ģ•„ģ‹œģ•„ ķ•™ķšŒ'),
(64176, 'https://ror.org/04z9hzj86', 'no_lang_code', 1, 'https://ror.org/04z9hzj86 Jeil Pharmaceutical (South Korea) ģ œģ¼ģ•½ķ’ˆ ģ£¼ģ‹ķšŒģ‚¬'),
(64177, 'https://ror.org/0111fqb28', 'en', 1, 'https://ror.org/0111fqb28 (사)ķ•œźµ­ėŠ„ė„ ķ˜‘ķšŒ Korea Management Association'),
(64178, 'https://ror.org/01prjex52', 'en', 1, 'https://ror.org/01prjex52 Andong Science University ģ•ˆė™ź³¼ķ•™ėŒ€ķ•™źµ'),
(64179, 'https://ror.org/01g4vtd10', 'en', 1, 'https://ror.org/01g4vtd10 Keimyung College University 계명 문화 ėŒ€ķ•™'),
(64180, 'https://ror.org/02h812s98', 'en', 1, 'https://ror.org/02h812s98 Korea Social Science Research Council ķ•œźµ­ģ‚¬ķšŒź³¼ķ•™ģ—°źµ¬ķ˜‘ģ˜ķšŒ'),
(64181, 'https://ror.org/00ydadx21', 'no_lang_code', 1, 'https://ror.org/00ydadx21 Cheonan Yonam College ģ²œģ•ˆģ—°ģ•”ėŒ€ķ•™'),
(64182, 'https://ror.org/04h1h5j74', 'no_lang_code', 1, 'https://ror.org/04h1h5j74 NDT Engineering & Aerospace (South Korea) ė¹„ķŒŒź““ ģ—”ģ§€ė‹ˆģ–“ė§ ė° ķ•­ź³µ 우주 ģœ ķ•œ 공사'),
(64183, 'https://ror.org/04vw91v95', 'no_lang_code', 1, 'https://ror.org/04vw91v95 Cheongam College ģ²­ģ•”ėŒ€ķ•™źµ'),
(64184, 'https://ror.org/026afmr97', 'en', 1, 'https://ror.org/026afmr97 Korean Comparative Education Society ķ•œźµ­ 비교 교윔 ķ•™ķšŒ'),
(64185, 'https://ror.org/00mmnvh11', 'no_lang_code', 1, 'https://ror.org/00mmnvh11 Asia Pacific Satellite (South Korea)'),
(64186, 'https://ror.org/04xskva03', 'en', 1, 'https://ror.org/04xskva03 Maekyung Institute for Safety and Environment 매경 ģ•ˆģ „ķ™˜ź²½ģ—°źµ¬ģ›'),
(64187, 'https://ror.org/02d4zgx43', 'no_lang_code', 1, 'https://ror.org/02d4zgx43 AP Systems (South Korea) ģ—ģ“ķ”¼ģ‹œģŠ¤ķ…œ(주)'),
(64188, 'https://ror.org/011m4cv61', 'en', 1, 'https://ror.org/011m4cv61 Korea Atomic Industrial Forum ķ•œźµ­ģ›ģžė „ģ‚°ģ—…ķšŒģ˜'),
(64189, 'https://ror.org/03k8nq416', 'en', 1, 'https://ror.org/03k8nq416 Asian Comparative Folklore Society ģ•„ģ‹œģ•„ 비교 민간 ģ‚¬ķšŒ'),
(64190, 'https://ror.org/05k2dce86', 'en', 1, 'https://ror.org/05k2dce86 Donga Broadcasting University of Arts ė™ģ•„ė°©ģ†”ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(64191, 'https://ror.org/004tf5h21', 'en', 1, 'https://ror.org/004tf5h21 Korea Radiation Industry Association ķ•œźµ­ė°©ģ‚¬ģ„ ģ‚°ģ—…ķ•™ķšŒ'),
(64192, 'https://ror.org/05kch1b73', 'en', 1, 'https://ror.org/05kch1b73 Institute of Justice ķ•™ķšŒ ģ •ģ˜ģ˜'),
(64193, 'https://ror.org/01ppnms58', 'en', 1, 'https://ror.org/01ppnms58 Korea Medical Devices Industry Association ķ•œźµ­ģ˜ė£Œźø°źø°ģ‚°ģ—…ķ˜‘ķšŒ'),
(64194, 'https://ror.org/02ghs8a63', 'en', 1, 'https://ror.org/02ghs8a63 Federation of Busan Science and Technology ė¶€ģ‚°ź³¼ķ•™źø°ģˆ ķ˜‘ģ˜ķšŒ'),
(64195, 'https://ror.org/02f9qkk54', 'no_lang_code', 1, 'https://ror.org/02f9qkk54 Korea Smart Manufacturing Industry Association (South Korea) ķ•œźµ­ 스마트 ģ œģ”°ģ—… ķ˜‘ķšŒ'),
(64196, 'https://ror.org/03fhvyq37', 'en', 1, 'https://ror.org/03fhvyq37 Korean Technical Management Institute ķ•œźµ­źø°ģˆ ź²½ģ˜ģ—°źµ¬ģ›'),
(64197, 'https://ror.org/03kcd5067', 'en', 1, 'https://ror.org/03kcd5067 Donggwon Science and Technology University ė™ģ›ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(64198, 'https://ror.org/049986y36', 'en', 1, 'https://ror.org/049986y36 Chinese Literature Society ģ¤‘źµ­ģøė¬øķ•™ķšŒ'),
(64199, 'https://ror.org/03dys8z83', 'no_lang_code', 1, 'https://ror.org/03dys8z83 Bexel (South Korea) 범셀'),
(64200, 'https://ror.org/01az28z25', 'no_lang_code', 1, 'https://ror.org/01az28z25 FutureChem (South Korea) ėÆøėž˜ģ˜ 화학'),
(64201, 'https://ror.org/01v1h2b88', 'en', 1, 'https://ror.org/01v1h2b88 The Society of Modern Literature Theory ķ˜„ėŒ€ 문학 ģ“ė”  ķ•™ķšŒ'),
(64202, 'https://ror.org/03ft28352', 'no_lang_code', 1, 'https://ror.org/03ft28352 Innovation Performance Group (South Korea) ģ•„ģ“ķ”¼ź·øė£¹'),
(64203, 'https://ror.org/00agxat90', 'en', 1, 'https://ror.org/00agxat90 Asia Foundation ģ•„ģ‹œģ•„ ģž¬ė‹Ø'),
(64204, 'https://ror.org/03j9rnw13', 'en', 1, 'https://ror.org/03j9rnw13 The Korean Folklore Society ķ•œźµ­ ėÆ¼ģ† ķ•™ķšŒ'),
(64205, 'https://ror.org/046qqhz73', 'en', 1, 'https://ror.org/046qqhz73 Korea Research Institute for Construction Policy ķ•œźµ­ź±“ģ„¤źø°ģˆ ģ—°źµ¬ģ›'),
(64206, 'https://ror.org/04h6rvh11', 'no_lang_code', 1, 'https://ror.org/04h6rvh11 Kai Biotech (South Korea) ė°”ģ“ģ˜¤ ķ…Œķ¬ ģ£¼ģ‹ ķšŒģ‚¬ ģ¹“ģ“'),
(64207, 'https://ror.org/04xtdqy92', 'no_lang_code', 1, 'https://ror.org/04xtdqy92 Gumi Electronics & Information Technology Research Institute (South Korea) źµ¬ėÆøģ „ģžģ •ė³“źø°ģˆ ģ›'),
(64208, 'https://ror.org/01zh21529', 'no_lang_code', 1, 'https://ror.org/01zh21529 Daegu TechnoPark ėŒ€źµ¬ķ…Œķ¬ė…øķŒŒķ¬'),
(64209, 'https://ror.org/05jt2eq53', 'en', 1, 'https://ror.org/05jt2eq53 Korea Nuclear International Cooperation Foundation ķ•œźµ­ģ›ģžė „ķ˜‘ė „ģž¬ė‹Ø'),
(64210, 'https://ror.org/026wyr849', 'en', 1, 'https://ror.org/026wyr849 Economic Geographical Society of Korea ķ•œźµ­ź²½ģ œģ§€ė¦¬ķ•™ķšŒ'),
(64211, 'https://ror.org/046vsfw69', 'en', 1, 'https://ror.org/046vsfw69 Korea Economic History Society ź²½ģ œģ‚¬ķ•™ķšŒ'),
(64212, 'https://ror.org/007w7dm12', 'en', 1, 'https://ror.org/007w7dm12 Korean Studies Institute ķ•œźµ­źµ­ķ•™ģ§„ķ„ģ›'),
(64213, 'https://ror.org/009zm7e81', 'no_lang_code', 1, 'https://ror.org/009zm7e81 Boditech Med (South Korea) 바디 ķ… ė©”ė“œ'),
(64214, 'https://ror.org/01zs00411', 'en', 1, 'https://ror.org/01zs00411 Korea Testing Certification ķ•œźµ­źø°ź³„ģ „źø°ģ „ģžģ‹œķ—˜ģ—°źµ¬ģ›'),
(64215, 'https://ror.org/03t07pn25', 'no_lang_code', 1, 'https://ror.org/03t07pn25 Ecosense (South Korea) ģ—ģ½”ģ„¼ģŠ¤'),
(64216, 'https://ror.org/03pj17v68', 'en', 1, 'https://ror.org/03pj17v68 Jeonnam Bioindustry Foundation 전남 ė°”ģ“ģ˜¤ ģ‚°ģ—… ģž¬ė‹Ø'),
(64217, 'https://ror.org/05wwazp63', 'no_lang_code', 1, 'https://ror.org/05wwazp63 Adone (South Korea) ģ£¼ģ‹ķšŒģ‚¬ ģ—ė“œģ›'),
(64218, 'https://ror.org/03qs3qx17', 'no_lang_code', 1, 'https://ror.org/03qs3qx17 Sejong Institute ģ„øģ¢…ģ—°źµ¬ģ†Œ'),
(64219, 'https://ror.org/00rpc7954', 'en', 1, 'https://ror.org/00rpc7954 International Tuberculosis Research Center źµ­ģ œź²°ķ•µģ—°źµ¬ģ†Œ'),
(64220, 'https://ror.org/04pv2qa77', 'en', 1, 'https://ror.org/04pv2qa77 Center of Excellence in Wireless & Information Technology'),
(64221, 'https://ror.org/027xb9s90', 'no_lang_code', 1, 'https://ror.org/027xb9s90 Alteogen (South Korea) ģ•Œķ…Œģ˜¤ģ  '),
(64222, 'https://ror.org/02e2v3t76', 'en', 1, 'https://ror.org/02e2v3t76 Korea Medicine Research Institute ķ•œźµ­ ģ˜ģ•½ 연구원'),
(64223, 'https://ror.org/03h3tha15', 'en', 1, 'https://ror.org/03h3tha15 Chungbuk Provincial College ģ¶©ė¶ė„ė¦½ėŒ€ķ•™'),
(64224, 'https://ror.org/009x2yy51', 'en', 1, 'https://ror.org/009x2yy51 Busan Digital University 부산 디지털 ėŒ€ķ•™źµ'),
(64225, 'https://ror.org/01n7byd59', 'en', 1, 'https://ror.org/01n7byd59 Chungkang College of Cultural Industries ģ²­ź°•ė¬øķ™”ģ‚°ģ—…ėŒ€ķ•™źµ'),
(64226, 'https://ror.org/05q950e27', 'en', 1, 'https://ror.org/05q950e27 English Language and Literature Association of Korea ķ•œźµ­ģ˜ģ–“ģ˜ė¬øķ•™ķšŒ'),
(64227, 'https://ror.org/012q0kv84', 'en', 1, 'https://ror.org/012q0kv84 French Culture and Arts Society ķ”„ėž‘ģŠ¤ė¬øķ™”ģ˜ˆģˆ ķ•™ķšŒ'),
(64228, 'https://ror.org/01hjn9g45', 'en', 1, 'https://ror.org/01hjn9g45 The Busan Metropolitan Simin Municipal Library ė¶€ģ‚°ģ‹œė¦½ģ‹œėÆ¼ė„ģ„œź“€'),
(64229, 'https://ror.org/03g01jm12', 'fr', 1, 'https://ror.org/03g01jm12 Institut FranƧais de SƩoul'),
(64230, 'https://ror.org/03ej4ab68', 'no_lang_code', 1, 'https://ror.org/03ej4ab68 Partron (South Korea) 파트딠'),
(64231, 'https://ror.org/05far8k50', 'en', 1, 'https://ror.org/05far8k50 The French Society of Korea ķ•œźµ­ķ”„ėž‘ģŠ¤ķ•™ķšŒ'),
(64232, 'https://ror.org/05mw5z210', 'no_lang_code', 1, 'https://ror.org/05mw5z210 (ģž¬ė‹Ø)ė¶€ģ‚°ķ…Œķ¬ė…øķŒŒķ¬ Busan TechnoPark'),
(64233, 'https://ror.org/05kb58m03', 'en', 1, 'https://ror.org/05kb58m03 21st Century Political Science Association 21ģ„øźø°ģ •ģ¹˜ķ•™ķšŒ'),
(64234, 'https://ror.org/00y34pm04', 'no_lang_code', 1, 'https://ror.org/00y34pm04 Fusion Software (South Korea)'),
(64235, 'https://ror.org/0355rmf69', 'en', 1, 'https://ror.org/0355rmf69 Northeast Asian Forest Forum ė™ė¶ģ•„ ģ‚°ė¦¼ķ¬ėŸ¼'),
(64236, 'https://ror.org/02pxwy266', 'no_lang_code', 1, 'https://ror.org/02pxwy266 (주)캐리마 Carima (South Korea)'),
(64237, 'https://ror.org/05pagb310', 'en', 1, 'https://ror.org/05pagb310 Korean Women''s Literature ź³ ė ¤ 사항'),
(64238, 'https://ror.org/04w5hf447', 'en', 1, 'https://ror.org/04w5hf447 Future Early Childhood Education Society ėÆøėž˜ģœ ģ•„źµģœ”ķ•™ķšŒ'),
(64239, 'https://ror.org/05rekxz26', 'en', 1, 'https://ror.org/05rekxz26 Hallym University of Graduate Studies ķ•œė¦¼źµ­ģ œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(64240, 'https://ror.org/021ywyg68', 'en', 1, 'https://ror.org/021ywyg68 Korea Infrastructure Organization for Nanotechnology źµ­ź°€ė‚˜ė…øģøķ”„ė¼ķ˜‘ģ˜ģ²“'),
(64241, 'https://ror.org/03s3e1h32', 'en', 1, 'https://ror.org/03s3e1h32 Korean Society for Indian Philosophy ģøė„ģ² ķ•™ķšŒ'),
(64242, 'https://ror.org/032412d97', 'en', 1, 'https://ror.org/032412d97 Seoul Business Agency'),
(64243, 'https://ror.org/03a53n517', 'en', 1, 'https://ror.org/03a53n517 Jeju participation environmental solidarity 제주 ģ°øģ—¬ ķ™˜ź²½ ģ—°ėŒ€'),
(64244, 'https://ror.org/057q47t40', 'en', 1, 'https://ror.org/057q47t40 Jeju Regional Business Evaluation Foundation 제주 지역 사업 ķ‰ź°€ ģž¬ė‹Ø'),
(64245, 'https://ror.org/006pcz623', 'no_lang_code', 1, 'https://ror.org/006pcz623 Informatica (South Korea) ģøķ¬ė§¤ķ‹°ģ¹“'),
(64246, 'https://ror.org/01a00zk92', 'en', 1, 'https://ror.org/01a00zk92 Jeju Tourism University ģ œģ£¼ź“€ź“‘ėŒ€ķ•™źµ'),
(64247, 'https://ror.org/0599fy865', 'en', 1, 'https://ror.org/0599fy865 Pan-Korea English Teachers Association ķŒ¬ģ½”ė¦¬ģ•„ģ˜ģ–“źµģœ”ķ•™ķšŒ'),
(64248, 'https://ror.org/00bngsg68', 'no_lang_code', 1, 'https://ror.org/00bngsg68 Kukdong Communication (South Korea) ź·¹ė™ķ†µģ‹ '),
(64249, 'https://ror.org/02p3n3q94', 'no_lang_code', 1, 'https://ror.org/02p3n3q94 Fiberpro (South Korea) ķŒŒģ“ė²„ķ”„ė”œ'),
(64250, 'https://ror.org/000245824', 'en', 1, 'https://ror.org/000245824 Future Human Resources Research Institute ėÆøėž˜ ģøģ  ģžģ› ģ—°źµ¬ģ†Œ'),
(64251, 'https://ror.org/00agtd172', 'no_lang_code', 1, 'https://ror.org/00agtd172 Jin Tech (South Korea) ģ§„ķ…Œķ¬'),
(64252, 'https://ror.org/05d5mtz58', 'no_lang_code', 1, 'https://ror.org/05d5mtz58 Hansol Chemical (South Korea) ķ•œģ†”ģ¼€ėÆøģ¹¼'),
(64253, 'https://ror.org/004zrqc30', 'en', 1, 'https://ror.org/004zrqc30 Gangdong University ź°•ė™ ėŒ€ķ•™źµ'),
(64254, 'https://ror.org/03f1dy734', 'en', 1, 'https://ror.org/03f1dy734 Korean Society of Mathematical Education ģ‚¬ė‹Øė²•ģø ķ•œźµ­ģˆ˜ķ•™źµģœ”ķ•™ķšŒ ģ •ź“€'),
(64255, 'https://ror.org/0412x6661', 'en', 1, 'https://ror.org/0412x6661 Korea Research Institute of Mechanical Facilities Industry ėŒ€ķ•œźø°ź³„ģ„¤ė¹„ģ‚°ģ—…ģ—°źµ¬ģ›'),
(64256, 'https://ror.org/03q78z367', 'en', 1, 'https://ror.org/03q78z367 The Genetics Society of Korea ķ•œźµ­ģœ ģ „ķ•™ķšŒ'),
(64257, 'https://ror.org/02gt4vn57', 'en', 1, 'https://ror.org/02gt4vn57 Kaywon University of Art & Design ģ¼€ģ“ģ› 미술 ėŒ€ķ•™'),
(64258, 'https://ror.org/033bjbc43', 'en', 1, 'https://ror.org/033bjbc43 Korea Baduk Association ķ•œźµ­źø°ģ›'),
(64259, 'https://ror.org/005hd0857', 'no_lang_code', 1, 'https://ror.org/005hd0857 Intergen Consulting Group (South Korea) ģøķ„°ģ   ģ»Øģ„¤ķŒ… 그룹'),
(64260, 'https://ror.org/00hx3p021', 'en', 1, 'https://ror.org/00hx3p021 Regional Geographical Society of Korea ķ•œźµ­ 지리 ķ•™ķšŒ'),
(64261, 'https://ror.org/01anfr786', 'en', 1, 'https://ror.org/01anfr786 International Area Studies Society źµ­ģ œģ§€ģ—­ķ•™ķšŒ'),
(64262, 'https://ror.org/04c8qrb95', 'en', 1, 'https://ror.org/04c8qrb95 Korea Environmental Education Association ķ•œźµ­ ķ™˜ź²½ 교윔 ģ—°ķ•©ķšŒ'),
(64263, 'https://ror.org/01xp2eb39', 'en', 1, 'https://ror.org/01xp2eb39 The International Association for Korean Language Education źµ­ģ œķ•œźµ­ģ–“źµģœ”ķ•™ķšŒ'),
(64264, 'https://ror.org/03nwyka65', 'en', 1, 'https://ror.org/03nwyka65 International Association of Korean Literary and Cultural Studies źµ­ģ œķ•œźµ­ė¬øķ•™ė¬øķ™”ķ•™ķšŒ'),
(64265, 'https://ror.org/034q8g297', 'en', 1, 'https://ror.org/034q8g297 University of Brain Education źµ­ģ œė‡Œźµģœ”ģ¢…ķ•©ėŒ€ķ•™ģ›ėŒ€ķ•™źµ ķ™ˆķŽ˜ģ“ģ§€'),
(64266, 'https://ror.org/052td7g28', 'en', 1, 'https://ror.org/052td7g28 Korea Peace Institute ķ•œźµ­ ķ‰ķ™” ģ—°źµ¬ģ†Œ'),
(64267, 'https://ror.org/02ktcfe74', 'en', 1, 'https://ror.org/02ktcfe74 Kimpo University ź¹€ķ¬ ėŒ€ķ•™źµ'),
(64268, 'https://ror.org/004427313', 'en', 1, 'https://ror.org/004427313 International Association of Comparative Korean Studies źµ­ģ œė¹„źµķ•œźµ­ķ•™ķšŒ'),
(64269, 'https://ror.org/02qtf7714', 'no_lang_code', 1, 'https://ror.org/02qtf7714 KoreaBio 코리아 ė°”ģ“ģ˜¤'),
(64270, 'https://ror.org/01rs2d517', 'en', 1, 'https://ror.org/01rs2d517 Women in Nuclear Korea'),
(64271, 'https://ror.org/03jyeqt59', 'no_lang_code', 1, 'https://ror.org/03jyeqt59 Korea Bio Solution (South Korea) ķ•œźµ­ė°”ģ“ģ˜¤ģ†”ė£Øģ…˜'),
(64272, 'https://ror.org/03enb9971', 'en', 1, 'https://ror.org/03enb9971 Korean International Maritime Law Association ķ•œźµ­ķ•“ģ‚¬ė²•ķ•™ķšŒ'),
(64273, 'https://ror.org/04y85rv20', 'en', 1, 'https://ror.org/04y85rv20 Honam Archaeological Society ķ˜øė‚Øź³ ź³ ķ•™ķšŒ'),
(64274, 'https://ror.org/054hffs36', 'en', 1, 'https://ror.org/054hffs36 Global Cultural Contents Association 세계 문화 ģ½˜ķ…ģø  ķ•™ķšŒ'),
(64275, 'https://ror.org/01abfdk81', 'en', 1, 'https://ror.org/01abfdk81 Korean Society for Biology Education'),
(64276, 'https://ror.org/009ztd224', 'en', 1, 'https://ror.org/009ztd224 Re-shaping Development Institute źø€ė”œė²Œ 개발 ģ—°źµ¬ģ†Œ'),
(64277, 'https://ror.org/01q6hrk40', 'en', 1, 'https://ror.org/01q6hrk40 Korean Association of Law Schools ķ•œźµ­ ė²•ėŒ€'),
(64278, 'https://ror.org/02an66777', 'en', 1, 'https://ror.org/02an66777 International Network for Korean Language and Culture źµ­ģ œķ•œźµ­ģ–øģ–“ė¬øķ™”ķ•™ķšŒ'),
(64279, 'https://ror.org/0072dwk79', 'en', 1, 'https://ror.org/0072dwk79 Hosan University ķ˜øģ‚°ėŒ€ķ•™źµ'),
(64280, 'https://ror.org/025ny0a47', 'en', 1, 'https://ror.org/025ny0a47 Global Education and Culture Institute źø€ė”œė²Œźµģœ”ė¬øķ™”ģ—°źµ¬ģ›'),
(64281, 'https://ror.org/033dqre27', 'en', 1, 'https://ror.org/033dqre27 Brand Design Association of Korea'),
(64282, 'https://ror.org/0358qh338', 'en', 1, 'https://ror.org/0358qh338 Costume Culture Association ģ˜ģƒ 문화 ķ˜‘ķšŒ'),
(64283, 'https://ror.org/03vcpp131', 'en', 1, 'https://ror.org/03vcpp131 21st Century Foreign Language Academy 21세기 외국얓 학원'),
(64284, 'https://ror.org/05tk66d69', 'en', 1, 'https://ror.org/05tk66d69 Human Rights Solidarity ģøź¶Œģ—°ėŒ€ėŠ”'),
(64285, 'https://ror.org/04zpwwx37', 'en', 1, 'https://ror.org/04zpwwx37 Korean Brecht Society ķ•œźµ­ėøŒė ˆķžˆķŠøķ•™ķšŒ'),
(64286, 'https://ror.org/01eakvg09', 'en', 1, 'https://ror.org/01eakvg09 Global English Teachers Association źø€ė”œė²Œ ģ˜ģ–“ 교사 ķ˜‘ķšŒ'),
(64287, 'https://ror.org/022yj5z48', 'en', 1, 'https://ror.org/022yj5z48 Critical Sociological Association of Korea ķ•œźµ­ ģ¤‘ģš” ģ‚¬ķšŒ ķ•™ķšŒ'),
(64288, 'https://ror.org/04tv6gw72', 'en', 1, 'https://ror.org/04tv6gw72 Hyundai Research Institute ķ˜„ėŒ€ź²½ģ œģ—°źµ¬ģ›'),
(64289, 'https://ror.org/05x4ndx32', 'en', 1, 'https://ror.org/05x4ndx32 Korea Communications Industry Cooperative ķ•œźµ­ė°©ģ†”ķ†µģ‹ ģ‚°ģ—…ķ˜‘ė™ģ”°ķ•© ģ”°ķ•©ģ†Œź°œ ģøģ‚¬ė§ ģ•ˆė‚“ģž…ė‹ˆė‹¤'),
(64290, 'https://ror.org/05gfq0q56', 'no_lang_code', 1, 'https://ror.org/05gfq0q56 Global optical communication (South Korea) źø€ė”œė²Œź“‘ķ†µģ‹ '),
(64291, 'https://ror.org/0068qef60', 'en', 1, 'https://ror.org/0068qef60 Korean Broadcasters Association ķ•œźµ­ė°©ģ†”ķ˜‘ķšŒ'),
(64292, 'https://ror.org/04w6mhj60', 'no_lang_code', 1, 'https://ror.org/04w6mhj60 JSM Technology Korea (South Korea) ģ œģ“ģ—ģŠ¤ģ— ķ…Œķ¬ė†€ėŸ¬ģ§€ģ½”ė¦¬ģ•„'),
(64293, 'https://ror.org/04fsntv73', 'no_lang_code', 1, 'https://ror.org/04fsntv73 Koguryo Bohai Society 고구려 ė°œķ•“ ķ•™ķšŒ'),
(64294, 'https://ror.org/02ykcjw41', 'en', 1, 'https://ror.org/02ykcjw41 James Joyce Society of Korea ķ•œźµ­ģ œģž„ģŠ¤ģ”°ģ“ģŠ¤ķ•™ķšŒ'),
(64295, 'https://ror.org/04qgd6703', 'no_lang_code', 1, 'https://ror.org/04qgd6703 Hyundai Engineering (South Korea) ķ˜„ėŒ€ģ—”ģ§€ė‹ˆģ–“ė§'),
(64296, 'https://ror.org/05gk7hr65', 'no_lang_code', 1, 'https://ror.org/05gk7hr65 CrystalGenomics (South Korea) 크리스탈 ģœ ģ „ģ²“ķ•™'),
(64297, 'https://ror.org/05jhaqb62', 'no_lang_code', 1, 'https://ror.org/05jhaqb62 (주)ģž„ģ„±E.P.S에 ģ˜¤ģ‹ ź²ƒģ„ ķ™˜ģ˜ķ•©ė‹ˆė‹¤ Jangsung (South Korea)'),
(64298, 'https://ror.org/02p3w0b60', 'en', 1, 'https://ror.org/02p3w0b60 Koguryeo College 고구려 ėŒ€ķ•™'),
(64299, 'https://ror.org/02xm3a386', 'en', 1, 'https://ror.org/02xm3a386 Korean Calligraphy Association ķ•œźµ­ģ„œģ˜ˆķ˜‘ķšŒ'),
(64300, 'https://ror.org/00ycgaj92', 'en', 1, 'https://ror.org/00ycgaj92 Association of Japanology in East Asia ė™ģ•„ģ‹œģ•„ģ¼ė³øķ•™ķšŒ'),
(64301, 'https://ror.org/03q0nr592', 'no_lang_code', 1, 'https://ror.org/03q0nr592 Hankuk Carbon (South Korea) ķ•œźµ­ 칓본'),
(64302, 'https://ror.org/05cx42j02', 'en', 1, 'https://ror.org/05cx42j02 Korea University of International Studies ķ•œė°˜ė„źµ­ģ œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(64303, 'https://ror.org/04ahbgg16', 'en', 1, 'https://ror.org/04ahbgg16 Culinary Society of Korea ķ•œźµ­ģ”°ė¦¬ķ•™ķšŒ'),
(64304, 'https://ror.org/03jm8py90', 'en', 1, 'https://ror.org/03jm8py90 Dongbang Culture University ė™ė°© 문화 ėŒ€ķ•™źµ'),
(64305, 'https://ror.org/009nm7068', 'no_lang_code', 1, 'https://ror.org/009nm7068 Nanjing Zhongyi Architectural Design Institute (China) å—äŗ¬äø­ę„å»ŗē­‘č®¾č®”é™¢'),
(64306, 'https://ror.org/05jsb4h04', 'en', 1, 'https://ror.org/05jsb4h04 Korea Association of Vocational Education ķ•œźµ­ģ§ģ—…ėŠ„ė „źµģœ”ķ˜‘ķšŒ'),
(64307, 'https://ror.org/03ra80q23', 'no_lang_code', 1, 'https://ror.org/03ra80q23 (주)제욱 Jeuk (South Korea)'),
(64308, 'https://ror.org/01hqxj822', 'en', 1, 'https://ror.org/01hqxj822 Cybercommunication Academic Society'),
(64309, 'https://ror.org/01me33t36', 'en', 1, 'https://ror.org/01me33t36 Korean Society of East-West Comparative Literature ķ•œźµ­ė™ģ„œė¹„źµė¬øķ•™ķ•™ķšŒ'),
(64310, 'https://ror.org/04dtz3153', 'en', 1, 'https://ror.org/04dtz3153 Green Life Knowledge Economy Research Institute ė…¹ģƒ‰ ģƒķ™œ ģ§€ģ‹ 경제 ģ—°źµ¬ģ†Œ'),
(64311, 'https://ror.org/04yj3me46', 'no_lang_code', 1, 'https://ror.org/04yj3me46 Iljin Radiation Engineering (South Korea) ģ¼ģ§„ė°©ģ‚¬ģ„ ģ—”ģ§€ė‹ˆģ–“ė§'),
(64312, 'https://ror.org/02r4j2j30', 'en', 1, 'https://ror.org/02r4j2j30 Korean Society for Child Education ķ•œźµ­ģ•„ė™źµģœ”ķ•™ķšŒ'),
(64313, 'https://ror.org/010zncz41', 'en', 1, 'https://ror.org/010zncz41 JEI University ģøģ²œģž¬ėŠ„ėŒ€ķ•™źµ'),
(64314, 'https://ror.org/01tbn4j76', 'en', 1, 'https://ror.org/01tbn4j76 Gumi University 구미 ėŒ€ķ•™źµ'),
(64315, 'https://ror.org/01prhbv23', 'en', 1, 'https://ror.org/01prhbv23 Korean Society for Eco Early Childhood Education ķ•œźµ­ģƒķƒœģœ ģ•„źµģœ”ķ•™ķšŒ'),
(64316, 'https://ror.org/01mh12h63', 'en', 1, 'https://ror.org/01mh12h63 Gwangyang Health College ź“‘ģ–‘ė³“ź±“ėŒ€ķ•™'),
(64317, 'https://ror.org/04h0ns222', 'en', 1, 'https://ror.org/04h0ns222 Korean Society of Child Welfare ķ•œźµ­ģ•„ė™ė³µģ§€ķ•™ķšŒ'),
(64318, 'https://ror.org/02dwzga38', 'en', 1, 'https://ror.org/02dwzga38 The Korean Economic Association ķ•œźµ­ź²½ģ œķ•™ķšŒ'),
(64319, 'https://ror.org/05gn27172', 'en', 1, 'https://ror.org/05gn27172 Society for Asian Philosophy in Korea ķ•œźµ­ė™ģ–‘ģ² ķ•™ķšŒ'),
(64320, 'https://ror.org/05mfwdr57', 'en', 1, 'https://ror.org/05mfwdr57 Gyeongbuk IT Convergence Industrial Technology Institute 경북ITģœµķ•©ģ‚°ģ—…źø°ģˆ ģ›'),
(64321, 'https://ror.org/03t85np98', 'en', 1, 'https://ror.org/03t85np98 Cyber University of Korea ģ‚¬ģ“ė²„ ėŒ€ķ•™źµ'),
(64322, 'https://ror.org/056840095', 'en', 1, 'https://ror.org/056840095 Korea Economic Research Institute ķ•œźµ­ź²½ģ œģ—°źµ¬ģ›'),
(64323, 'https://ror.org/03y32jh60', 'en', 1, 'https://ror.org/03y32jh60 Gyeongbuk Marine Bio-Industry Research Institute 경북 ķ•“ģ–‘ ģƒė¬¼ ģ‚°ģ—… 연구원'),
(64324, 'https://ror.org/01ra2eg48', 'en', 1, 'https://ror.org/01ra2eg48 The Korea Society for Children''s Media ķ•œźµ­ģ–“ė¦°ģ“ėÆøė””ģ–“ķ•™ķšŒģ— ģžˆģŠµė‹ˆė‹¤'),
(64325, 'https://ror.org/05ba5yp12', 'no_lang_code', 1, 'https://ror.org/05ba5yp12 Daeduk University ėŒ€ė• ėŒ€ķ•™źµ'),
(64326, 'https://ror.org/01ayka222', 'en', 1, 'https://ror.org/01ayka222 Korea Children''s Rights Society ķ•œźµ­ģ•„ė™ź¶Œė¦¬ķ•™ķšŒ'),
(64327, 'https://ror.org/02fn9fg65', 'en', 1, 'https://ror.org/02fn9fg65 Korean Educational Idea Association ķ•œźµ­źµģœ”ģ‚¬ģƒģ—°źµ¬ķšŒ'),
(64328, 'https://ror.org/05wp4m669', 'no_lang_code', 1, 'https://ror.org/05wp4m669 Korea Educational Broadcasting System ķ•œźµ­źµģœ”ė°©ģ†”ź³µģ‚¬'),
(64329, 'https://ror.org/01pk2qg94', 'en', 1, 'https://ror.org/01pk2qg94 The Daedong Philosophical Association ėŒ€ė™ ģ² ķ•™ķšŒ'),
(64330, 'https://ror.org/03e14yd37', 'en', 1, 'https://ror.org/03e14yd37 Korea Christian Educational Information Society źø°ė…źµźµģœ”ģ •ė³“ķ•™ķšŒ'),
(64331, 'https://ror.org/00c56ep98', 'en', 1, 'https://ror.org/00c56ep98 The Korean Society for the Economics and Finance of Education ķ•œźµ­źµģœ”ģž¬ģ •ź²½ģ œķ•™ķšŒ'),
(64332, 'https://ror.org/03x2b6b27', 'en', 1, 'https://ror.org/03x2b6b27 Gyeongnam Provincial Namhae College ź²½ė‚Øė„ė¦½ė‚Øķ•“ėŒ€ķ•™'),
(64333, 'https://ror.org/02bb56y97', 'en', 1, 'https://ror.org/02bb56y97 Daegu Visually Impaired Culture Center ėŒ€źµ¬ģ‹œź°ģž„ģ• ģøė¬øķ™”ģ›'),
(64334, 'https://ror.org/05r2fn790', 'en', 1, 'https://ror.org/05r2fn790 Korean Educational Psychology Association ķ•œźµ­źµģœ”ģ‹¬ė¦¬ķ•™ķšŒ'),
(64335, 'https://ror.org/038wddm10', 'en', 1, 'https://ror.org/038wddm10 Gyeongnam Provincial Geochang College ź²½ė‚Øė„ė¦½ź±°ģ°½ėŒ€ķ•™'),
(64336, 'https://ror.org/03qbvh110', 'en', 1, 'https://ror.org/03qbvh110 Korean Christian Society ķ•œźµ­źø°ė…źµķ•™ķšŒ'),
(64337, 'https://ror.org/04yvkkx28', 'en', 1, 'https://ror.org/04yvkkx28 Korean Educational Research Association ķ•œźµ­źµģœ”ķ•™ķšŒ'),
(64338, 'https://ror.org/005yy5d32', 'en', 1, 'https://ror.org/005yy5d32 Nantong Snake Treatment Research Institute'),
(64339, 'https://ror.org/04k1aj657', 'en', 1, 'https://ror.org/04k1aj657 The Korea Society of Fashion Design ķ•œźµ­ķŒØģ…˜ė””ģžģøķ•™ķšŒ'),
(64340, 'https://ror.org/04b305x04', 'en', 1, 'https://ror.org/04b305x04 Institue of the History of Christianity in Korea ķ•œźµ­źµķšŒģ‚¬ķ•™ķšŒ'),
(64341, 'https://ror.org/04gm1dg38', 'en', 1, 'https://ror.org/04gm1dg38 The Daegu Historical Association ėŒ€źµ¬ 역사 ķ•™ķšŒ'),
(64342, 'https://ror.org/00atn8q90', 'en', 1, 'https://ror.org/00atn8q90 Korean Geographical Society ķ•œźµ­ģ§€ė¦¬ķ•™ķšŒ'),
(64343, 'https://ror.org/04xbnb295', 'en', 1, 'https://ror.org/04xbnb295 Korean Elementary Art Education Association ķ•œźµ­ģ“ˆė“±ėÆøģˆ źµģœ”ķ•™ķšŒ'),
(64344, 'https://ror.org/05ay2w302', 'en', 1, 'https://ror.org/05ay2w302 Society of Korean Classical Literature Education ķ•œźµ­ź³ ģ „ė¬øķ•™źµģœ”ķ•™ķšŒ'),
(64345, 'https://ror.org/036rtm992', 'en', 1, 'https://ror.org/036rtm992 Taegu Science University ėŒ€źµ¬ 과학 ėŒ€ķ•™źµ'),
(64346, 'https://ror.org/023c92218', 'en', 1, 'https://ror.org/023c92218 Korea Leisure and Recreation Association ķ•œźµ­ ė ˆģ € ė ˆķ¬ė¦¬ģ—ģ“ģ…˜ ķ˜‘ķšŒ'),
(64347, 'https://ror.org/04tdzkh55', 'en', 1, 'https://ror.org/04tdzkh55 The Korean Society for the Study of Elementary Education ķ•œźµ­ģ“ˆė“±źµģœ”ķ•™ķšŒ'),
(64348, 'https://ror.org/047xkn445', 'en', 1, 'https://ror.org/047xkn445 Geological Society of Korea ėŒ€ķ•œģ§€ģ§ˆķ•™ķšŒ'),
(64349, 'https://ror.org/032w21978', 'en', 1, 'https://ror.org/032w21978 Korean Association for Lifelong Education ķ•œźµ­ ģƒģ•  교윔 ķ˜‘ķšŒ'),
(64350, 'https://ror.org/0560xy784', 'en', 1, 'https://ror.org/0560xy784 The Korea English Education Society ķ•œźµ­ ģ˜ģ–“ 교윔 ķ•™ķšŒ'),
(64351, 'https://ror.org/028vnkj24', 'en', 1, 'https://ror.org/028vnkj24 Korea Lift College ķ•œźµ­ģŠ¹ź°•źø°ėŒ€ķ•™źµ'),
(64352, 'https://ror.org/023wbge51', 'en', 1, 'https://ror.org/023wbge51 Korean German Language and Literature Society ķ•œźµ­ė…ģ–“ė…ė¬øķ•™ķšŒ'),
(64353, 'https://ror.org/039dc8c42', 'en', 1, 'https://ror.org/039dc8c42 Korean Academy of Speech-Language Pathology and Audiology'),
(64354, 'https://ror.org/04598a202', 'en', 1, 'https://ror.org/04598a202 The Korean Historical Association ģ—­ģ‚¬ķ•™ķšŒ'),
(64355, 'https://ror.org/01yagnz59', 'en', 1, 'https://ror.org/01yagnz59 Korean Clinical Psychcological Association'),
(64356, 'https://ror.org/05taf4c66', 'en', 1, 'https://ror.org/05taf4c66 The Korean Society Of Literary Education ķ•œźµ­ 문학 교윔 ķ•™ķšŒ'),
(64357, 'https://ror.org/007s1fv27', 'en', 1, 'https://ror.org/007s1fv27 Tianjin Municipal Engineering Design and Research Institute 天擄市市政巄程设讔研究总院'),
(64358, 'https://ror.org/042pabj96', 'en', 1, 'https://ror.org/042pabj96 Shandong Institute of Quantum Science and Technology å±±äøœé‡å­ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(64359, 'https://ror.org/02y8hcw86', 'en', 1, 'https://ror.org/02y8hcw86 Korean Psychological Association ķ•œźµ­ģ‹¬ė¦¬ķ•™ķšŒ'),
(64360, 'https://ror.org/029db8m77', 'no_lang_code', 1, 'https://ror.org/029db8m77 Dynavolt Tech (China) å¹æäøœēŒ›ē‹®ę–°čƒ½ęŗē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(64361, 'https://ror.org/025pqy228', 'en', 1, 'https://ror.org/025pqy228 YIJUN Institute of International Law ģ“ģ¤€ źµ­ģ œė²• 학원'),
(64362, 'https://ror.org/05wvzc243', 'en', 1, 'https://ror.org/05wvzc243 (사)ķ•œźµ­ģ •ė³“ķ†µģ‹ źø°ģˆ ģ‚°ģ—…ķ˜‘ķšŒ- Korea Information & Communication Technology Industry Association'),
(64363, 'https://ror.org/02jgyee30', 'en', 1, 'https://ror.org/02jgyee30 The Society of Korean Traditional Costume ķ•œė³µė¬øķ™”ķ•™ķšŒ'),
(64364, 'https://ror.org/02r21h126', 'en', 1, 'https://ror.org/02r21h126 The Society for Chinese Cultural Studies ģ¤‘źµ­ė¬øķ™”ģ—°źµ¬ķ•™ķšŒ'),
(64365, 'https://ror.org/04tadm242', 'en', 1, 'https://ror.org/04tadm242 Korean Association of Geography and Environmental Education ķ•œźµ­ģ§€ė¦¬ķ™˜ź²½źµģœ”ķ•™ķšŒ'),
(64366, 'https://ror.org/04e6xnh25', 'en', 1, 'https://ror.org/04e6xnh25 Intelligent Image and Information System ģ§€ėŠ„ķ˜• ģ“ėÆøģ§€ ė° 정볓 ģ‹œģŠ¤ķ…œ'),
(64367, 'https://ror.org/05ttqxn20', 'en', 1, 'https://ror.org/05ttqxn20 The Society Of Korean Literary Therapy ķ•œźµ­ 문학 치료 ķ•™ķšŒ'),
(64368, 'https://ror.org/005205v40', 'en', 1, 'https://ror.org/005205v40 Korean Society for Industrial and Organizational Psychology ķ•œźµ­ģ‚°ģ—…ė°ģ”°ģ§ģ‹¬ė¦¬ķ•™ķšŒ');
INSERT INTO `rors` VALUES
(64369, 'https://ror.org/03qxezw14', 'en', 1, 'https://ror.org/03qxezw14 Korea Integrated Logistics Association ķ•œźµ­ķ†µķ•©ė¬¼ė„˜ķ˜‘ķšŒ'),
(64370, 'https://ror.org/04ccgt898', 'en', 1, 'https://ror.org/04ccgt898 Daejeon Health Institute of Technology ėŒ€ģ „ė³“ź±“ėŒ€ķ•™źµ'),
(64371, 'https://ror.org/004drsj12', 'en', 1, 'https://ror.org/004drsj12 Korean Institute of Interior Design ķ•œźµ­ģ‹¤ė‚“ė””ģžģøķ•™ķšŒėŠ”'),
(64372, 'https://ror.org/01w94b128', 'en', 1, 'https://ror.org/01w94b128 Korean Association of Comparative Criminal Law ķ•œźµ­ė¹„źµķ˜•ģ‚¬ė²•ķ•™ķšŒ'),
(64373, 'https://ror.org/033r7gh92', 'en', 1, 'https://ror.org/033r7gh92 Korea Society Of IT Services ķ•œźµ­ITģ„œė¹„ģŠ¤ķ•™ķšŒ'),
(64374, 'https://ror.org/05es75p31', 'en', 1, 'https://ror.org/05es75p31 Korea Environmental Policy and Administration Society ķ•œźµ­ ķ™˜ź²½ ģ •ģ±… ꓀리 ķ•™ķšŒ'),
(64375, 'https://ror.org/00qdcrt37', 'en', 1, 'https://ror.org/00qdcrt37 Korean Constitutional Law Association ķ•œźµ­ķ—Œė²•ķ•™ķšŒ'),
(64376, 'https://ror.org/01h6y6f73', 'en', 1, 'https://ror.org/01h6y6f73 The Korean Society of Contemporary European Studies ķ•œźµ­ģœ ėŸ½ķ•™ķšŒ'),
(64377, 'https://ror.org/05wp72p02', 'en', 1, 'https://ror.org/05wp72p02 Korea Marketing Management Association ķ•œźµ­ ė§ˆģ¼€ķŒ… 경영 ķ•™ķšŒ'),
(64378, 'https://ror.org/02ernp878', 'en', 1, 'https://ror.org/02ernp878 Korea Engineering Consultants Corporation ķ•œźµ­ģ¢…ķ•©źø°ģˆ '),
(64379, 'https://ror.org/01t748q81', 'en', 1, 'https://ror.org/01t748q81 Korea Exercise Rehabilitation Association ķ•œźµ­ģš“ė™ģž¬ķ™œķ˜‘ķšŒ'),
(64380, 'https://ror.org/009361291', 'en', 1, 'https://ror.org/009361291 Korean Scholars of Marketing Science ķ•œźµ­ ė§ˆģ¼€ķŒ… ķ•™ģž'),
(64381, 'https://ror.org/027tx3c52', 'en', 1, 'https://ror.org/027tx3c52 Korea Medical Devices Industrial Cooperative Association ķ•œźµ­ ģ˜ė£Œ źø°źø° ģ‚°ģ—… ģ”°ķ•©'),
(64382, 'https://ror.org/03dkhv024', 'en', 1, 'https://ror.org/03dkhv024 Korean Cinema Association ķ•œźµ­ ģ˜ķ™” ķ˜‘ķšŒ'),
(64383, 'https://ror.org/02z6x1r54', 'en', 1, 'https://ror.org/02z6x1r54 Dandelion Medical Welfare Social Cooperative ėÆ¼ė“¤ė ˆ ģ˜ė£Œ 복지 ģ‚¬ķšŒ ķ˜‘ė™ ģ”°ķ•©'),
(64384, 'https://ror.org/0256gay97', 'en', 1, 'https://ror.org/0256gay97 Korean Society for Consumer Studies ķ•œźµ­ģ†Œė¹„ģžķ•™ķšŒ'),
(64385, 'https://ror.org/00x0k1767', 'en', 1, 'https://ror.org/00x0k1767 Korean Consumption Culture Association ķ•œźµ­ģ†Œė¹„ė¬øķ™”ķ•™ķšŒ'),
(64386, 'https://ror.org/035ybn758', 'en', 1, 'https://ror.org/035ybn758 Korean Finance Association ķ•œźµ­ģž¬ė¬“ķ•™ķšŒ'),
(64387, 'https://ror.org/00z4cvh19', 'en', 1, 'https://ror.org/00z4cvh19 Korean Association of Middle Eastern Studies ķ•œźµ­ ģ¤‘ė™ ķ•™ķšŒ'),
(64388, 'https://ror.org/01kegt086', 'en', 1, 'https://ror.org/01kegt086 Korea Contents Association'),
(64389, 'https://ror.org/048zkw057', 'no_lang_code', 1, 'https://ror.org/048zkw057 Korea Financial Engineering Consulting (South Korea) ķ•œźµ­ 금융 공학 ģ»Øģ„¤ķŒ…'),
(64390, 'https://ror.org/05e81p556', 'en', 1, 'https://ror.org/05e81p556 Korea Corporate Education Center ķ•œźµ­źø°ģ—…źµģœ”ģ„¼ķ„°'),
(64391, 'https://ror.org/05e8j1012', 'en', 1, 'https://ror.org/05e8j1012 The Modern English Drama Association of Korea ķ˜„ėŒ€ ķ•œźµ­ ģ—°ź·¹ ķ•™ķšŒ'),
(64392, 'https://ror.org/01t7bdx98', 'en', 1, 'https://ror.org/01t7bdx98 Korean Financial Management Association ķ•œźµ­ ģž¬ė¬“ ꓀리 ķ˜‘ķšŒ'),
(64393, 'https://ror.org/03wfdhy86', 'en', 1, 'https://ror.org/03wfdhy86 The Modern Linguistic Society Of Korea ķ•œźµ­ ķ˜„ėŒ€ ģ–øģ–“ ķ•™ķšŒ'),
(64394, 'https://ror.org/01pgkb997', 'no_lang_code', 1, 'https://ror.org/01pgkb997 KG Chemical (South Korea)'),
(64395, 'https://ror.org/015bwbz64', 'en', 1, 'https://ror.org/015bwbz64 Korea Cosmetic Association ėŒ€ķ•œķ™”ģž„ķ’ˆķ˜‘ķšŒ'),
(64396, 'https://ror.org/03ptfj749', 'en', 1, 'https://ror.org/03ptfj749 Korea Petroleum Quality & Distribution Authority ķ•œźµ­ ģ„ģœ  ķ’ˆģ§ˆ ꓀리국'),
(64397, 'https://ror.org/01pgq0p78', 'en', 1, 'https://ror.org/01pgq0p78 Korea Fisheries Resources Agency ķ•œźµ­ ģˆ˜ģ‚° ģžģ› 공사'),
(64398, 'https://ror.org/046xx9480', 'en', 1, 'https://ror.org/046xx9480 Korea Counseling Graduate University ķ•œźµ­ģƒė‹“ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(64399, 'https://ror.org/03s87dw57', 'en', 1, 'https://ror.org/03s87dw57 Korean Counseling Association ķ•œźµ­ģƒė‹“ķ•™ķšŒ'),
(64400, 'https://ror.org/03qvhaa35', 'en', 1, 'https://ror.org/03qvhaa35 The Korean Association for Mongolian Studies ķ•œźµ­ 몽골 연구 ķ˜‘ķšŒ'),
(64401, 'https://ror.org/008vv7y59', 'en', 1, 'https://ror.org/008vv7y59 The Korea Association of Foreign Language Education ķ•œźµ­ 외국얓 교윔 ķ˜‘ķšŒ'),
(64402, 'https://ror.org/00e373235', 'en', 1, 'https://ror.org/00e373235 Korean Alliance for Health, Physical Education, Recreation, and Dance ķ•œźµ­ģ²“ģœ”ķ•™ķšŒ'),
(64403, 'https://ror.org/05d34xs41', 'en', 1, 'https://ror.org/05d34xs41 The Korean Association for Multicultural Education ķ•œźµ­ 다문화 교윔 ķ˜‘ķšŒ'),
(64404, 'https://ror.org/006ec3357', 'en', 1, 'https://ror.org/006ec3357 Culinary Institute of Korea'),
(64405, 'https://ror.org/025v5g975', 'en', 1, 'https://ror.org/025v5g975 Korean Music Therapy Association ķ•œźµ­ ģŒģ•… 치료 ķ˜‘ķšŒ'),
(64406, 'https://ror.org/02h221462', 'en', 1, 'https://ror.org/02h221462 Korean Association of Public Safety and Criminal Justice ķ•œźµ­ź³µģ•ˆķ–‰ģ •ķ•™ķšŒ'),
(64407, 'https://ror.org/01eps0y04', 'en', 1, 'https://ror.org/01eps0y04 The Association of Korean Cultural and Historical Geographers ķ•œźµ­ė¬øķ™”ģ—­ģ‚¬ģ§€ė¦¬ķ•™ķšŒ'),
(64408, 'https://ror.org/0214mhn29', 'en', 1, 'https://ror.org/0214mhn29 The Korea institute for Religion and Culture ķ•œźµ­ģ¢…źµė¬øķ™”ģ—°źµ¬ģ†Œ'),
(64409, 'https://ror.org/00t8tnj85', 'en', 1, 'https://ror.org/00t8tnj85 Korea Customs Trade Development Institute ķ•œźµ­ ź“€ģ„øė¬“ģ—­ź°œė°œģ›'),
(64410, 'https://ror.org/01b30ww12', 'en', 1, 'https://ror.org/01b30ww12 Korea Drug Research Association ėŒ€ķ•œ ė§ˆģ•½ 연구 ķ•™ķšŒ'),
(64411, 'https://ror.org/04q19fq93', 'en', 1, 'https://ror.org/04q19fq93 Korea IT Developer Cooperative ķ•œźµ­ ģ•„ģ“ķ‹° (IT) ź°œė°œģž ķ˜‘ė™ ģ”°ķ•©'),
(64412, 'https://ror.org/02xq34z61', 'en', 1, 'https://ror.org/02xq34z61 (사)ķ•œźµ­ė””ģ§€ķ„øė””ģžģøķ˜‘ģ˜ķšŒ Korea Digital Design Council'),
(64413, 'https://ror.org/02trvhh22', 'no_lang_code', 1, 'https://ror.org/02trvhh22 Korea Accounting Standards Board ķ•œźµ­ ķšŒź³„ 기준 원'),
(64414, 'https://ror.org/01fp3t562', 'en', 1, 'https://ror.org/01fp3t562 Korea Digital Hospital Export Agency ķ•œźµ­ė””ģ§€ķ„øė³‘ģ›ģˆ˜ģ¶œģ”°ķ•©'),
(64415, 'https://ror.org/02667ne44', 'en', 1, 'https://ror.org/02667ne44 Korea Housing Association'),
(64416, 'https://ror.org/020nwtk72', 'en', 1, 'https://ror.org/020nwtk72 Korean Society for Digital Policy ķ•œźµ­ė””ģ§€ķ„øģ •ģ±…ķ•™ķšŒ'),
(64417, 'https://ror.org/05m5d6945', 'en', 1, 'https://ror.org/05m5d6945 Human Development Institute ģøź°„ 개발 ģ—°źµ¬ģ†Œ'),
(64418, 'https://ror.org/02ptmys64', 'en', 1, 'https://ror.org/02ptmys64 Korean Nuclear Society ķ•œźµ­ģ›ģžė „ķ•™ķšŒ'),
(64419, 'https://ror.org/04vxnz547', 'en', 1, 'https://ror.org/04vxnz547 (주)ķ•œźµ­ģœ ķ†µź³¼ķ•™ģ—°źµ¬ģ†Œ Korea Distribution Science Institute'),
(64420, 'https://ror.org/02zjbky29', 'en', 1, 'https://ror.org/02zjbky29 Korea Advertising Society ķ•œźµ­ ź“‘ź³  ķ•™ķšŒ'),
(64421, 'https://ror.org/05gkpvg94', 'en', 1, 'https://ror.org/05gkpvg94 Korean Institute of Southeast Asian Studies ģ‚¬ė‹Øė²•ģø ķ•œźµ­ė™ė‚Øģ•„ģ—°źµ¬ģ†Œ'),
(64422, 'https://ror.org/01vq8q751', 'en', 1, 'https://ror.org/01vq8q751 Korean Industrial Economic Association ķ•œźµ­ģ‚°ģ—…ź²½ģ œķ•™ķšŒ'),
(64423, 'https://ror.org/012hgcz59', 'en', 1, 'https://ror.org/012hgcz59 Korean Community Welfare Society ķ•œźµ­ģ§€ģ—­ģ‚¬ķšŒė³µģ§€ķ•™ķšŒ'),
(64424, 'https://ror.org/05bshbg41', 'en', 1, 'https://ror.org/05bshbg41 The Korean Society of Special Education ķ•œźµ­ķŠ¹ģˆ˜źµģœ”ķ•™ķšŒ'),
(64425, 'https://ror.org/027s3ss22', 'en', 1, 'https://ror.org/027s3ss22 Korea Industrial Technology Association ķ•œźµ­ ģ‚°ģ—… 기술 ģ§„ķ„ ķ˜‘ķšŒ'),
(64426, 'https://ror.org/02xdxcj12', 'en', 1, 'https://ror.org/02xdxcj12 The Korean Drama Society ķ•œźµ­ė“œė¼ė§ˆķ•™ķšŒ'),
(64427, 'https://ror.org/05c1vs952', 'en', 1, 'https://ror.org/05c1vs952 Open Cyber University of Korea ķ•œźµ­ģ—“ė¦°ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(64428, 'https://ror.org/057hzyr27', 'en', 1, 'https://ror.org/057hzyr27 Korean Society For Philosophy East-West ķ•œźµ­ė™ģ„œģ² ķ•™ķšŒ'),
(64429, 'https://ror.org/02fakmn72', 'en', 1, 'https://ror.org/02fakmn72 Korea Academic Society of Industrial Organization ķ•œźµ­ ģ‚°ģ—… ķ•™ķšŒ'),
(64430, 'https://ror.org/05aykjy67', 'en', 1, 'https://ror.org/05aykjy67 Korea Testing Laboratory ķ•œźµ­ ģ‹¤ķ—˜ 연구원'),
(64431, 'https://ror.org/02zpms144', 'en', 1, 'https://ror.org/02zpms144 Korean Society of Alchol Science and Health Behavior ķ•œźµ­ ģ•Œģ½”ģ˜¬ ģ¤‘ė… ķ•™ķšŒ'),
(64432, 'https://ror.org/05skt5b53', 'en', 1, 'https://ror.org/05skt5b53 Korean Infant and Child Care Society ķ•œźµ­ ģœ ģ•„ 볓윔 ķ•™ķšŒ'),
(64433, 'https://ror.org/05411zh25', 'en', 1, 'https://ror.org/05411zh25 The Korea Association of Yeolin Education ķ•œźµ­ģ—“ė¦°źµģœ”ķ•™ķšŒ'),
(64434, 'https://ror.org/017xn7477', 'en', 1, 'https://ror.org/017xn7477 The Korean Rural Sociological Society ķ•œźµ­ė†ģ“Œģ‚¬ķšŒķ•™ķšŒ'),
(64435, 'https://ror.org/007mm3r71', 'no_lang_code', 1, 'https://ror.org/007mm3r71 Korea Petroleum Group (South Korea) ķ•œźµ­ ģ„ģœ  그룹'),
(64436, 'https://ror.org/036n3de45', 'en', 1, 'https://ror.org/036n3de45 The Korean Society of Management Information Systems ķ•œźµ­ 경영 정볓 ķ•™ķšŒ'),
(64437, 'https://ror.org/0195qz106', 'en', 1, 'https://ror.org/0195qz106 Korea Security Association ķ•œźµ­ ģ¦ź¶Œģ—… ķ˜‘ķšŒ'),
(64438, 'https://ror.org/05vw7gr61', 'en', 1, 'https://ror.org/05vw7gr61 The Korean Association for Policy Analysis and Evaluation ė…„ ģ¶œė²”ķ•œ ķ•œźµ­ģ •ģ±…ė¶„ģ„ķ‰ź°€ķ•™ķšŒėŠ” ģ§€źøˆź¹Œģ§€'),
(64439, 'https://ror.org/02frmqt72', 'no_lang_code', 1, 'https://ror.org/02frmqt72 Korea Information System (South Korea) ķ•œźµ­ 정볓 ģ‹œģŠ¤ķ…œ'),
(64440, 'https://ror.org/05gennv44', 'en', 1, 'https://ror.org/05gennv44 Korea Service Management Society ķ•œźµ­ģ„œė¹„ģŠ¤ź²½ģ˜ķ•™ķšŒ'),
(64441, 'https://ror.org/059ccn340', 'en', 1, 'https://ror.org/059ccn340 Korea International Accounting Association ķ•œźµ­źµ­ģ œķšŒź³„ķ•™ķšŒ'),
(64442, 'https://ror.org/04xxm7a37', 'en', 1, 'https://ror.org/04xxm7a37 Korea Association of Information Systems ķ•œźµ­ģ •ė³“ģ‹œģŠ¤ķ…œķ•™ķšŒ'),
(64443, 'https://ror.org/029v0q071', 'en', 1, 'https://ror.org/029v0q071 Korean Society for Education through Art ķ•œźµ­źµ­ģ œėÆøģˆ źµģœ”ķ•™ķšŒ'),
(64444, 'https://ror.org/02ndpzr30', 'en', 1, 'https://ror.org/02ndpzr30 The Korean Physical Society ķ•œźµ­ė¬¼ė¦¬ķ•™ķšŒ'),
(64445, 'https://ror.org/05qapvh61', 'en', 1, 'https://ror.org/05qapvh61 The Korean Association of Slavic Eurasian Studies'),
(64446, 'https://ror.org/040cjb096', 'en', 1, 'https://ror.org/040cjb096 Korea Art Education Association ķ•œźµ­ 미술 교윔 ķ•™ķšŒ'),
(64447, 'https://ror.org/01a19sv16', 'en', 1, 'https://ror.org/01a19sv16 Korean Social Science Data Center ķ•œźµ­ģ‚¬ķšŒź³¼ķ•™ė°ģ“ķ„°ģ„¼ķ„°'),
(64448, 'https://ror.org/05k7yfd33', 'en', 1, 'https://ror.org/05k7yfd33 Korea Lifelong Education Center ķ•œźµ­ķ‰ģƒźµģœ”ģ›'),
(64449, 'https://ror.org/0326a4r74', 'en', 1, 'https://ror.org/0326a4r74 The Art History Research Institute of Korea ķ•œźµ­ 미술 사학 ģ—°źµ¬ģ†Œ'),
(64450, 'https://ror.org/02eyz9636', 'en', 1, 'https://ror.org/02eyz9636 The Korean Society for Practical Theology ķ•œźµ­ ģ‹¤ģ²œ ģ‹ ķ•™ķšŒ'),
(64451, 'https://ror.org/03thvaw95', 'en', 1, 'https://ror.org/03thvaw95 International Fiscal Association Korea źµ­ģ œģ”°ģ„øķ˜‘ķšŒ'),
(64452, 'https://ror.org/024emcc52', 'en', 1, 'https://ror.org/024emcc52 The Korean Institute of Communications and Information Sciences ķ•œźµ­ 통신 정볓 ķ•™ķšŒ'),
(64453, 'https://ror.org/01yvzps21', 'en', 1, 'https://ror.org/01yvzps21 The Korean Association of Primary English Education ķ•œźµ­ ģ“ˆė“± ģ˜ģ–“ 교윔 ķ˜‘ķšŒ'),
(64454, 'https://ror.org/00tq75c95', 'en', 1, 'https://ror.org/00tq75c95 Korea Association for Social Welfare Studies'),
(64455, 'https://ror.org/01zbb0s29', 'en', 1, 'https://ror.org/01zbb0s29 Center for Art Studies ķ•œźµ­ģ˜ˆģˆ ģ—°źµ¬ģ†Œ'),
(64456, 'https://ror.org/00d8yqt37', 'en', 1, 'https://ror.org/00d8yqt37 The Korean Association for Public Administration ķ•œźµ­ 행정 ķ•™ķšŒ'),
(64457, 'https://ror.org/0179kz909', 'en', 1, 'https://ror.org/0179kz909 Korea Internet e-Commerce Association ķ•œźµ­ģøķ„°ė„·ģ „ģžģƒź±°ėž˜ķ•™ķšŒ'),
(64458, 'https://ror.org/006bvz121', 'en', 1, 'https://ror.org/006bvz121 Korea Public Relations Consultancy Association ķ•œźµ­ ķ™ė³“ ģƒė‹“ķšŒ'),
(64459, 'https://ror.org/021h96b10', 'en', 1, 'https://ror.org/021h96b10 Korean Association Of Business Education ķ•œźµ­ 경영 교윔 ķ•™ķšŒ'),
(64460, 'https://ror.org/00n2pkx76', 'en', 1, 'https://ror.org/00n2pkx76 Korea Invention Promotion Association ķ•œźµ­ė°œėŖ…ģ§„ķ„ķšŒ'),
(64461, 'https://ror.org/002xt1d94', 'en', 1, 'https://ror.org/002xt1d94 Korea Reformed Theological Society ķ•œźµ­ 개혁 ģ‹ ķ•™ķšŒ'),
(64462, 'https://ror.org/05kh3e232', 'en', 1, 'https://ror.org/05kh3e232 Korea Academy of Mental Health Social Work ķ•œźµ­ģ •ģ‹ ė³“ź±“ģ‚¬ķšŒė³µģ§€ķ•™ķšŒ'),
(64463, 'https://ror.org/01nyd3m56', 'en', 1, 'https://ror.org/01nyd3m56 The Korean Regional Development Association ķ•œźµ­ģ§€ģ—­ź°œė°œķ•™ķšŒ'),
(64464, 'https://ror.org/02930yz47', 'no_lang_code', 1, 'https://ror.org/02930yz47 Korea Kacoh (South Korea) 코리아칓코'),
(64465, 'https://ror.org/05cjv8495', 'en', 1, 'https://ror.org/05cjv8495 Korea Association of Chinese Language and Literature ķ•œźµ­ģ¤‘ģ–“ģ¤‘ė¬øķ•™ķšŒ'),
(64466, 'https://ror.org/01vppps02', 'en', 1, 'https://ror.org/01vppps02 The Korean Association for the Study of English Language and Linguistics ķ•œźµ­ģ˜ģ–“ķ•™ķšŒ'),
(64467, 'https://ror.org/02p1cew82', 'en', 1, 'https://ror.org/02p1cew82 Korean Society for Engineering Education ķ•œźµ­ź³µķ•™źµģœ”ķ•™ķšŒ'),
(64468, 'https://ror.org/04mtmfz79', 'en', 1, 'https://ror.org/04mtmfz79 Korea Regional Economic Reserach institute ķ•œźµ­ 지역 경제 연구원'),
(64469, 'https://ror.org/028dztp68', 'en', 1, 'https://ror.org/028dztp68 The Korean Society of British and American Fiction ķ•œźµ­ź·¼ėŒ€ģ˜ėÆøģ†Œģ„¤ķ•™ķšŒ'),
(64470, 'https://ror.org/0246ppj64', 'en', 1, 'https://ror.org/0246ppj64 Korea Music Educators Society ķ•œźµ­ģŒģ•…źµģœ”ķ•™ķšŒ'),
(64471, 'https://ror.org/025162850', 'en', 1, 'https://ror.org/025162850 The Korean Society Of Western Civilization ķ•œźµ­ ģ„œģ–‘ 문명 ķ•™ķšŒ'),
(64472, 'https://ror.org/03x36kh13', 'en', 1, 'https://ror.org/03x36kh13 New Testament Society of Korea ķ•œźµ­ģ‹ ģ•½ķ•™ķšŒ'),
(64473, 'https://ror.org/04s0cpt97', 'en', 1, 'https://ror.org/04s0cpt97 Latin American Studies Association of Korea ķ•œźµ­ė¼ķ‹“ģ•„ė©”ė¦¬ģ¹“ķ•™ķšŒ'),
(64474, 'https://ror.org/039wxfg33', 'en', 1, 'https://ror.org/039wxfg33 The Association for Historical Studies on Korean National Movement ķ•œźµ­ėÆ¼ģ”±ģš“ė™ģ‚¬ķ•™ķšŒ'),
(64475, 'https://ror.org/009fkjn48', 'en', 1, 'https://ror.org/009fkjn48 Korea Moral Education Association ķ•œźµ­ė„ė•źµģœ”ķ•™ķšŒ'),
(64476, 'https://ror.org/024qq7b50', 'en', 1, 'https://ror.org/024qq7b50 The Korean Society for Brain and Neural Sciences ķ•œźµ­ė‡Œģ‹ ź²½ź³¼ķ•™ķšŒ'),
(64477, 'https://ror.org/00kpke984', 'en', 1, 'https://ror.org/00kpke984 Society for Korean Traditional Performing Arts ķ•œźµ­ģ „ķ†µź³µģ—°ģ˜ˆģˆ ķ•™ķšŒ'),
(64478, 'https://ror.org/01bwbfp70', 'en', 1, 'https://ror.org/01bwbfp70 Korean Society of Systematic Theology ķ•œźµ­ ģ‹ ķ•™ ėŒ€ķ•™ģ›'),
(64479, 'https://ror.org/03dt4rv96', 'en', 1, 'https://ror.org/03dt4rv96 Korean Society for Emotion and Sensibility ķ•œźµ­ź°ģ„±ź³¼ķ•™ķšŒ'),
(64480, 'https://ror.org/04r0s7h58', 'en', 1, 'https://ror.org/04r0s7h58 Korean Society for Western Medieval History ķ•œźµ­ ģ„œģ–‘ 중세사 ķ•™ķšŒ'),
(64481, 'https://ror.org/00hy0ds89', 'en', 1, 'https://ror.org/00hy0ds89 The Society of Korean Performance Art and Culture ķ•œźµ­ 공연 예술 ķ•™ķšŒ'),
(64482, 'https://ror.org/00kv86506', 'en', 1, 'https://ror.org/00kv86506 Korean Association for Archaeological Heritage ķ•œźµ­ė§¤ģž„ė¬øķ™”ģž¬ķ˜‘ķšŒ'),
(64483, 'https://ror.org/00zypna12', 'en', 1, 'https://ror.org/00zypna12 Korean Association For Studies of Philosophical Thought ķ•œźµ­ ģ² ķ•™ ģ—°źµ¬ķšŒ'),
(64484, 'https://ror.org/0199vce98', 'en', 1, 'https://ror.org/0199vce98 Korean Society for Teaching English Literature ķ•œźµ­ģ˜ėÆøė¬øķ•™źµģœ”ķ•™ķšŒ'),
(64485, 'https://ror.org/0269yjk51', 'en', 1, 'https://ror.org/0269yjk51 The Musicological Society of Korea ķ•œźµ­ ģŒģ•… ķ•™ķšŒ'),
(64486, 'https://ror.org/01p0mtg35', 'en', 1, 'https://ror.org/01p0mtg35 The Society of Korean Practical Arts Education Research ķ•œźµ­ģ‹¤ź³¼źµģœ”ģ—°źµ¬ķ•™ķšŒ'),
(64487, 'https://ror.org/04hqk4797', 'en', 1, 'https://ror.org/04hqk4797 The Korean Society of Art Theories ķ•œźµ­ėÆøģˆ ģ“ė” ķ•™ķšŒ'),
(64488, 'https://ror.org/03qranw91', 'en', 1, 'https://ror.org/03qranw91 Korean Philosophical Association ķ•œźµ­ ģ² ķ•™ķšŒ'),
(64489, 'https://ror.org/0538yth83', 'en', 1, 'https://ror.org/0538yth83 Korea Association of Teachers of English ķ•œźµ­ģ˜ģ–“źµģœ”ķ•™ķšŒ'),
(64490, 'https://ror.org/035hyrv04', 'en', 1, 'https://ror.org/035hyrv04 Korean Association of Feminist Philosophers ķ•œźµ­ 여성 ģ² ķ•™ģž ķ˜‘ķšŒ'),
(64491, 'https://ror.org/0072xr450', 'en', 1, 'https://ror.org/0072xr450 The Korean Association for Children with Special Needs ķ•œźµ­ķŠ¹ģˆ˜ģ•„ė™ķ•™ķšŒ'),
(64492, 'https://ror.org/01kp5ce13', 'en', 1, 'https://ror.org/01kp5ce13 Korean Sociological Association ķ•œźµ­ģ‚¬ķšŒķ•™ķšŒ'),
(64493, 'https://ror.org/00m2gz195', 'en', 1, 'https://ror.org/00m2gz195 Korean Society for Political Thought ķ•œźµ­ģ •ģ¹˜ģ‚¬ģƒķ•™ķšŒ'),
(64494, 'https://ror.org/01srd9017', 'en', 1, 'https://ror.org/01srd9017 Korean Association of Southeast Asian Studies ķ•œźµ­ė™ė‚Øģ•„ķ•™ķšŒ'),
(64495, 'https://ror.org/01kapv839', 'en', 1, 'https://ror.org/01kapv839 Korea Women''s Associations United ķ•œźµ­ 여성 단첓 ģ—°ķ•©'),
(64496, 'https://ror.org/00yzc7459', 'en', 1, 'https://ror.org/00yzc7459 Korea Entrepreneurship Foundation ķ•œźµ­ģ²­ė…„źø°ģ—…ź°€ģ •ģ‹ ģž¬ė‹Ø'),
(64497, 'https://ror.org/00b2xm665', 'en', 1, 'https://ror.org/00b2xm665 Korean Society of Sport Psychology ķ•œźµ­ģŠ¤ķ¬ģø ģ‹¬ė¦¬ķ•™ķšŒ'),
(64498, 'https://ror.org/01sz7sf77', 'en', 1, 'https://ror.org/01sz7sf77 Korean Association of Real Estate Law ķ•œźµ­ ė¶€ė™ģ‚°ė²• ķ•™ķšŒ'),
(64499, 'https://ror.org/01g37sx43', 'en', 1, 'https://ror.org/01g37sx43 The Korea Society for Chinese Studies ķ•œźµ­ģ¤‘źµ­ķ•™ķšŒ'),
(64500, 'https://ror.org/03tks8n61', 'en', 1, 'https://ror.org/03tks8n61 Korean Ethics Education Association ķ•œźµ­ģœ¤ė¦¬źµģœ”ķ•™ķšŒ'),
(64501, 'https://ror.org/0319gez47', 'en', 1, 'https://ror.org/0319gez47 Korean Women''s Association for Communication Studies ķ•œźµ­ 여성 ķ•™ķšŒ'),
(64502, 'https://ror.org/037e82q62', 'en', 1, 'https://ror.org/037e82q62 The Korean Association for Christian Ethics ķ•œźµ­ źø°ė…źµ ģœ¤ė¦¬ķ•™ķšŒ'),
(64503, 'https://ror.org/047ygyr49', 'en', 1, 'https://ror.org/047ygyr49 The Korean Association for Dialectology ķ•œźµ­ė°©ģ–øķ•™ķšŒ'),
(64504, 'https://ror.org/044wnr609', 'en', 1, 'https://ror.org/044wnr609 The Korean Association of Ethics ķ•œźµ­ģœ¤ė¦¬ķ•™ķšŒ'),
(64505, 'https://ror.org/02ct9ew61', 'en', 1, 'https://ror.org/02ct9ew61 Korean Urban Management Association ķ•œźµ­ė„ģ‹œķ–‰ģ •ķ•™ķšŒ'),
(64506, 'https://ror.org/05p0krc37', 'en', 1, 'https://ror.org/05p0krc37 The Korean Society of Greco-Roman Studies ķ•œźµ­ģ„œģ–‘ź³ ģ „ķ•™ķšŒ'),
(64507, 'https://ror.org/02dmx2h89', 'en', 1, 'https://ror.org/02dmx2h89 Korean Family studies Association ķ•œźµ­ź°€ģ”±ķ•™ķšŒ'),
(64508, 'https://ror.org/04z1ghe08', 'en', 1, 'https://ror.org/04z1ghe08 Korean Publishing Science Society ķ•œźµ­ 출판 ķ•™ķšŒ'),
(64509, 'https://ror.org/045dsac53', 'en', 1, 'https://ror.org/045dsac53 Korean Association of Women''s History ķ•œźµ­ 여성사 ķ˜‘ķšŒ'),
(64510, 'https://ror.org/00k1mne41', 'en', 1, 'https://ror.org/00k1mne41 Korean Family Resource Management Association ķ•œźµ­ź°€ģ”±ģžģ›ź²½ģ˜ķ•™ķšŒ'),
(64511, 'https://ror.org/00pxdqq86', 'en', 1, 'https://ror.org/00pxdqq86 The T.S. Eliot Society of Korea ķ•œźµ­T.S.ģ—˜ė¦¬ģ—‡ķ•™ķšŒ'),
(64512, 'https://ror.org/05h577t51', 'en', 1, 'https://ror.org/05h577t51 Korean Family Welfare Society ķ•œźµ­ź°€ģ”±ģ‚¬ķšŒė³µģ§€ķ•™ķšŒģ˜'),
(64513, 'https://ror.org/0455j8q41', 'en', 1, 'https://ror.org/0455j8q41 Korea Dance Association ģ‚¬ė‹Øė²•ģø ķ•œźµ­ė¬“ģš©ķ˜‘ķšŒ'),
(64514, 'https://ror.org/04twmwz92', 'en', 1, 'https://ror.org/04twmwz92 Korean Association for Religious Education ķ•œźµ­ 종교 교윔 ķ˜‘ķšŒ'),
(64515, 'https://ror.org/03taw9026', 'en', 1, 'https://ror.org/03taw9026 Korean Association of Physical Education and Sport for Girls and Women ķ•œźµ­ 첓윔 첓윔 ģŠ¤ķ¬ģø  ķ˜‘ķšŒ'),
(64516, 'https://ror.org/02929hv86', 'en', 1, 'https://ror.org/02929hv86 The Korean Society of Design Culture ķ•œźµ­ė””ģžģøė¬øķ™”ķ•™ķšŒ'),
(64517, 'https://ror.org/05he9zt43', 'en', 1, 'https://ror.org/05he9zt43 Korean Association for Religious Studies ķ•œźµ­ 종교 ķ•™ķšŒ'),
(64518, 'https://ror.org/01rw44x65', 'en', 1, 'https://ror.org/01rw44x65 Korean Society of Design Science ķ•œźµ­ė””ģžģøķ•™ķšŒ'),
(64519, 'https://ror.org/023gs4b42', 'en', 1, 'https://ror.org/023gs4b42 Korean Association of Sport Pedagogy ķ•œźµ­ģŠ¤ķ¬ģø źµģœ”ķ•™ķšŒ'),
(64520, 'https://ror.org/025bqp693', 'en', 1, 'https://ror.org/025bqp693 Korean Association Of Rusists ķ•œźµ­ ė£Øģ‹œģŠ¤ķŠø ķ˜‘ķšŒ'),
(64521, 'https://ror.org/05hmph265', 'en', 1, 'https://ror.org/05hmph265 The Korean Association of Sports and Entertainment Law ķ•œźµ­ģŠ¤ķ¬ģø ģ—”ķ„°ķ…ŒģøėØ¼ķŠøė²•ķ•™ķšŒ'),
(64522, 'https://ror.org/028hjhm59', 'en', 1, 'https://ror.org/028hjhm59 The Korean Society for the Philosophy of Science ķ•œźµ­ ģ² ķ•™ ķ•™ķšŒ'),
(64523, 'https://ror.org/04y0apy28', 'en', 1, 'https://ror.org/04y0apy28 The Korean Society for Early Childhood Education ķ•œźµ­ģœ ģ•„źµģœ”ķ•™ķšŒ'),
(64524, 'https://ror.org/03ax0vt93', 'en', 1, 'https://ror.org/03ax0vt93 Korea Society of Strategic Management ķ•œźµ­ģ „ėžµź²½ģ˜ķ•™ķšŒ'),
(64525, 'https://ror.org/04kgxe034', 'en', 1, 'https://ror.org/04kgxe034 Korean Association of Exercise Physiology ķ•œźµ­ģš“ė™ģƒė¦¬ķ•™ķšŒ'),
(64526, 'https://ror.org/03n01va58', 'en', 1, 'https://ror.org/03n01va58 Korean Association of Family Therapy'),
(64527, 'https://ror.org/02vtcpw89', 'en', 1, 'https://ror.org/02vtcpw89 The Korean Society for German History ķ•œźµ­ė…ģ¼ģ‚¬ķ•™ķšŒ'),
(64528, 'https://ror.org/04am0wd41', 'en', 1, 'https://ror.org/04am0wd41 Korean Technology Education Association ķ•œźµ­źø°ģˆ źµģœ”ķ•™ķšŒ'),
(64529, 'https://ror.org/00hk4sk41', 'en', 1, 'https://ror.org/00hk4sk41 The Korean Generative Grammar Circle ķ•œźµ­ 문법 ķ•™ķšŒ'),
(64530, 'https://ror.org/01j90hd50', 'en', 1, 'https://ror.org/01j90hd50 Korea Institute of Youth Facility and Environment'),
(64531, 'https://ror.org/03zpdjb80', 'en', 1, 'https://ror.org/03zpdjb80 Korean Literature Theory and Criticism Society ķ•œźµ­ė¬øķ•™ģ“ė” ź³¼ ė¹„ķ‰ķ•™ķšŒ'),
(64532, 'https://ror.org/01ryvqz49', 'en', 1, 'https://ror.org/01ryvqz49 The Korean Literature Association ķ•œźµ­ė¬øķ•™ķšŒ'),
(64533, 'https://ror.org/04j7c2756', 'en', 1, 'https://ror.org/04j7c2756 The Korean Society for Gifted and Talented ķ•œźµ­ģ˜ģž¬źµģœ”ķ•™ķšŒ'),
(64534, 'https://ror.org/0017thv62', 'en', 1, 'https://ror.org/0017thv62 The Korean Social and Personality Psychological Association ķ•œźµ­ ģ‚¬ķšŒ ė° ģøģ„± 심리 ķ•™ķšŒ'),
(64535, 'https://ror.org/01k722e67', 'en', 1, 'https://ror.org/01k722e67 The Korean Society for Literature and Religion ķ•œźµ­ė¬øķ•™ź³¼ģ¢…źµķ•™ķšŒ'),
(64536, 'https://ror.org/02t9r5804', 'en', 1, 'https://ror.org/02t9r5804 Korea Institute of Theological Information ķ•œźµ­ģ‹ ķ•™ģ •ė³“ģ—°źµ¬ģ›'),
(64537, 'https://ror.org/03nkgv042', 'en', 1, 'https://ror.org/03nkgv042 Korean Historical Folklore Institute ķ•œźµ­ģ—­ģ‚¬ėÆ¼ģ†ķ•™ķšŒ'),
(64538, 'https://ror.org/017j78t37', 'en', 1, 'https://ror.org/017j78t37 Korea-China Science & Technology Cooperation Center ķ•œģ¤‘ 과학 기술 ķ˜‘ė „ 센터'),
(64539, 'https://ror.org/02gsggh97', 'en', 1, 'https://ror.org/02gsggh97 Korea Tourism Organization ķ•œźµ­ź“€ź“‘ź³µģ‚¬'),
(64540, 'https://ror.org/00rs3yk18', 'en', 1, 'https://ror.org/00rs3yk18 Korean Home Economics Education Association ķ•œźµ­ź°€ģ •ź³¼źµģœ”ķ•™ķšŒ 회'),
(64541, 'https://ror.org/05p3nte65', 'en', 1, 'https://ror.org/05p3nte65 The Korean Society for the Study of Career Education ķ•œźµ­ 직업 교윔 ģ—°źµ¬ķšŒ'),
(64542, 'https://ror.org/04qnq8c95', 'en', 1, 'https://ror.org/04qnq8c95 Korean Social Theory Association ķ•œźµ­ģ‚¬ķšŒģ“ė” ķ•™ķšŒ'),
(64543, 'https://ror.org/0489td242', 'en', 1, 'https://ror.org/0489td242 Korean Spanish Literature Society ķ•œźµ­ģŠ¤ķŽ˜ģøģ–“ė¬øķ•™ķšŒ'),
(64544, 'https://ror.org/02qv9b386', 'en', 1, 'https://ror.org/02qv9b386 Korean Housing Association ėŒ€ķ•œ ģ£¼ķƒ ģ”°ķ•©'),
(64545, 'https://ror.org/05db7s640', 'en', 1, 'https://ror.org/05db7s640 Korean Accounting Association ķ•œźµ­ķšŒź³„ķ•™ķšŒ'),
(64546, 'https://ror.org/005g0ws49', 'en', 1, 'https://ror.org/005g0ws49 Tax Law Association'),
(64547, 'https://ror.org/01dk6as53', 'en', 1, 'https://ror.org/01dk6as53 Korea Tourism College ķ•œźµ­ź“€ź“‘ėŒ€ķ•™źµ'),
(64548, 'https://ror.org/029rkvw49', 'en', 1, 'https://ror.org/029rkvw49 The Korean Society for Sociology of Education ķ•œźµ­ ģ‚¬ķšŒ ķ•™ķšŒ'),
(64549, 'https://ror.org/05wmm6h38', 'en', 1, 'https://ror.org/05wmm6h38 The Korean Society for the Study of Teacher Education ķ•œźµ­źµģ›źµģœ”ķ•™ķšŒ'),
(64550, 'https://ror.org/02vn18x32', 'en', 1, 'https://ror.org/02vn18x32 The Textlinguistic Society of Korea ķ•œźµ­ķ…ģŠ¤ķŠøģ–øģ–“ķ•™ķšŒ'),
(64551, 'https://ror.org/050s80f40', 'en', 1, 'https://ror.org/050s80f40 Korea Agricultural Economics Association ķ•œźµ­ė†ģ—…ź²½ģ œķ•™ķšŒ'),
(64552, 'https://ror.org/03vhyy859', 'en', 1, 'https://ror.org/03vhyy859 Korea Tourism Research Association ķ•œźµ­ź“€ź“‘ģ—°źµ¬ķ•™ķšŒ'),
(64553, 'https://ror.org/01f7zsh14', 'en', 1, 'https://ror.org/01f7zsh14 Korean Theatre Education Association ķ•œźµ­ģ—°ź·¹źµģœ”ķ•™ķšŒ'),
(64554, 'https://ror.org/01cscw292', 'en', 1, 'https://ror.org/01cscw292 The Korean Society for School Science ėŒ€ķ•œ 학교 ķ•™ķšŒ'),
(64555, 'https://ror.org/02zwzx824', 'en', 1, 'https://ror.org/02zwzx824 Urban Design Institute of Korea ķ•œźµ­ ė„ģ‹œ ė””ģžģø 학원'),
(64556, 'https://ror.org/0118x3091', 'en', 1, 'https://ror.org/0118x3091 The Society of Study for Korean Music Education ķ•œźµ­źµ­ģ•…źµģœ”ģ—°źµ¬ķ•™ķšŒ'),
(64557, 'https://ror.org/012qbtt58', 'en', 1, 'https://ror.org/012qbtt58 Korean Society of Interpretation and Translation Studies 우리 ķ•œźµ­ķ†µģ—­ė²ˆģ—­ķ•™ķšŒź°€'),
(64558, 'https://ror.org/003mmwh92', 'en', 1, 'https://ror.org/003mmwh92 Korean Musicological Society ķ•œźµ­źµ­ģ•…ķ•™ķšŒ'),
(64559, 'https://ror.org/00vy04v88', 'en', 1, 'https://ror.org/00vy04v88 The Society of Korean Language and Culture ķ•œźµ­ģ–“ģ™€ ķ•œźµ­ 문화 ķ•™ķšŒ'),
(64560, 'https://ror.org/04nrp9v23', 'en', 1, 'https://ror.org/04nrp9v23 Korea Society of Translators ķ•œźµ­ė²ˆģ—­ź°€ķ˜‘ķšŒ'),
(64561, 'https://ror.org/018x0pp27', 'en', 1, 'https://ror.org/018x0pp27 The Korean Urban Geographical Society ķ•œźµ­ė„ģ‹œģ§€ė¦¬ķ•™ķšŒ'),
(64562, 'https://ror.org/01w38z049', 'en', 1, 'https://ror.org/01w38z049 The Korean Language And Culture Education Society ķ•œźµ­ģ–øģ–“ė¬øķ™”źµģœ”ķ•™ķšŒ'),
(64563, 'https://ror.org/016wmdb91', 'en', 1, 'https://ror.org/016wmdb91 Korea Venture Business Association ė²¤ģ²˜źø°ģ—…ķ˜‘ķšŒ'),
(64564, 'https://ror.org/0199wd076', 'en', 1, 'https://ror.org/0199wd076 Korean Library And Information Science Society ķ•œźµ­ ė„ģ„œź“€ 정볓 ķ•™ķšŒ'),
(64565, 'https://ror.org/04cf0ca19', 'en', 1, 'https://ror.org/04cf0ca19 The Society of Living Environment System ķ•œźµ­ģƒķ™œķ™˜ź²½ķ•™ķšŒ'),
(64566, 'https://ror.org/05s7r0436', 'en', 1, 'https://ror.org/05s7r0436 The Society of Korean Language Education ķ•œźµ­ģ–“źµģœ”ķ•™ķšŒ'),
(64567, 'https://ror.org/05tf3bx05', 'en', 1, 'https://ror.org/05tf3bx05 Korea-American Association ķ•œėÆø ķ˜‘ķšŒ'),
(64568, 'https://ror.org/016096484', 'en', 1, 'https://ror.org/016096484 Society of Korean Classical Woman Literature ķ•œźµ­ź³ ģ „ģ—¬ģ„±ė¬øķ•™ķšŒ'),
(64569, 'https://ror.org/02w82cx27', 'en', 1, 'https://ror.org/02w82cx27 Korean Social History Association ķ•œźµ­ ģ‚¬ķšŒģ‚¬ ķ˜‘ķšŒ'),
(64570, 'https://ror.org/04x5v4156', 'en', 1, 'https://ror.org/04x5v4156 Korean Arabic Arabic Literature Society ģ•„ėžģ–“ ģ•„ėžģ–“ ė¬øķ•™ķšŒ'),
(64571, 'https://ror.org/02y8rvp52', 'en', 1, 'https://ror.org/02y8rvp52 Korean Language Institute ģ—°ģ„øėŒ€ķ•™źµ ķ•œźµ­ģ–“ķ•™ė‹¹ģ€'),
(64572, 'https://ror.org/03fdkrb80', 'en', 1, 'https://ror.org/03fdkrb80 The Sociolinguistic Society of Korea ķ•œźµ­ ģ‚¬ķšŒ ģ–øģ–“ ķ•™ķšŒ'),
(64573, 'https://ror.org/051pt2g47', 'en', 1, 'https://ror.org/051pt2g47 Korean-German Vocational College ķ•œė…ģ§ģ—…ģ „ė¬øķ•™źµ'),
(64574, 'https://ror.org/02dxc4q15', 'en', 1, 'https://ror.org/02dxc4q15 Korean Japanese Association ķ•œģ¼ķ˜‘ķšŒ'),
(64575, 'https://ror.org/01npvq928', 'en', 1, 'https://ror.org/01npvq928 Korea International Trade Research Institute ķ•œźµ­ 묓역 연구원'),
(64576, 'https://ror.org/01j9g7106', 'no_lang_code', 1, 'https://ror.org/01j9g7106 Korea Innotech (South Korea) ź³ ė ¤ģ“ė…øķ…Œķ¬'),
(64577, 'https://ror.org/04nexjf43', 'en', 1, 'https://ror.org/04nexjf43 Korean Language Society ķ•œźø€ ķ•™ķšŒ'),
(64578, 'https://ror.org/019037b12', 'en', 1, 'https://ror.org/019037b12 The Korean Association for Local Government & Administration Studies ėŒ€ķ•œ 지방 행정 ķ•™ķšŒ'),
(64579, 'https://ror.org/043gbyv69', 'en', 1, 'https://ror.org/043gbyv69 Korean Academy of Social Welfare ķ•œźµ­ ģ‚¬ķšŒ 복지'),
(64580, 'https://ror.org/02tdp6375', 'en', 1, 'https://ror.org/02tdp6375 Korean Association Of Social Welfare Policy ķ•œźµ­ ģ‚¬ķšŒ 복지 ģ •ģ±… ķ•™ķšŒ'),
(64581, 'https://ror.org/04d6d4n84', 'en', 1, 'https://ror.org/04d6d4n84 Korean Beauty Society ķ•œźµ­ ė·°ķ‹° ķ•™ķšŒ'),
(64582, 'https://ror.org/05j84vd61', 'en', 1, 'https://ror.org/05j84vd61 Korean Association of Space & Environment Research ķ•œźµ­ 우주 ķ™˜ź²½ 연구 ķ•™ķšŒ'),
(64583, 'https://ror.org/0339jm562', 'en', 1, 'https://ror.org/0339jm562 The Linguistic Society of Korea ķ•œźµ­ģ–øģ–“ķ•™ķšŒ'),
(64584, 'https://ror.org/002da4m58', 'en', 1, 'https://ror.org/002da4m58 Korean Bible Society ķ•œźµ­ ģ„±ģ„œ 공회'),
(64585, 'https://ror.org/01bxb0563', 'en', 1, 'https://ror.org/01bxb0563 Kyung Hee Cyber University ź²½ķ¬ģ‚¬ģ“ė²„ėŒ€ķ•™źµ/ę…¶ē†™ģ‚¬ģ“ė²„å¤§å­øę ”'),
(64586, 'https://ror.org/057t9t071', 'en', 1, 'https://ror.org/057t9t071 Kyung-in Women''s University ź²½ ģ—¬ģž ėŒ€ķ•™źµ'),
(64587, 'https://ror.org/05qp95904', 'en', 1, 'https://ror.org/05qp95904 Korean Society for Journalism and Communication Studies ķ•œźµ­ ģ €ė„ė¦¬ģ¦˜ ģ»¤ė®¤ė‹ˆģ¼€ģ“ģ…˜ ķ•™ķšŒ'),
(64588, 'https://ror.org/05r0sb604', 'en', 1, 'https://ror.org/05r0sb604 Kyungbok University ź²½ė³µėŒ€ķ•™źµ'),
(64589, 'https://ror.org/03y64fn77', 'en', 1, 'https://ror.org/03y64fn77 The Korean Academic Society of Business Administration And Law ķ•œźµ­ 경영 ķ•™ķšŒ'),
(64590, 'https://ror.org/02zh3z112', 'en', 1, 'https://ror.org/02zh3z112 Korea Association of Chinese Language Education ķ•œźµ­ ģ–øģ–“ 교윔 ķ•™ķšŒ'),
(64591, 'https://ror.org/03d3d5f32', 'en', 1, 'https://ror.org/03d3d5f32 Kyungmin University ź²½ėÆ¼ėŒ€ķ•™źµ'),
(64592, 'https://ror.org/01hp1ex72', 'en', 1, 'https://ror.org/01hp1ex72 Korean Association For Local Government Studies ķ•œźµ­ģ§€ė°©ģžģ¹˜ķ•™ķšŒėŠ”'),
(64593, 'https://ror.org/02jv1px47', 'en', 1, 'https://ror.org/02jv1px47 Kyungnam College of Information and Technology ź²½ė‚Øģ •ė³“ėŒ€ķ•™źµ'),
(64594, 'https://ror.org/02apbz725', 'en', 1, 'https://ror.org/02apbz725 Korean Society of Civil Engineers ėŒ€ķ•œ 토목 ķ•™ķšŒ'),
(64595, 'https://ror.org/00wjmqn02', 'en', 1, 'https://ror.org/00wjmqn02 Korean Logistics Research Association ķ•œźµ­ė¬¼ė„˜ķ•™ķšŒ'),
(64596, 'https://ror.org/00cafe722', 'en', 1, 'https://ror.org/00cafe722 The Korea Association for Han-Character and Classical Written Language Education ķ•œźµ­ ķ•œė¬øķ•™ ė° ź³ ģ „ 문얓 교윔 ķ˜‘ķšŒ'),
(64597, 'https://ror.org/025ptz228', 'en', 1, 'https://ror.org/025ptz228 Korean Marketing Association ķ•œźµ­ė§ˆģ¼€ķŒ…ķ•™ķšŒ'),
(64598, 'https://ror.org/054z4z240', 'en', 1, 'https://ror.org/054z4z240 Korea International Understanding Education Society ķ•œźµ­ 국제 ģ“ķ•“ 교윔 ķ•™ķšŒ'),
(64599, 'https://ror.org/02pjxh370', 'en', 1, 'https://ror.org/02pjxh370 Medieval and Early Modern English Studies Association of Korea ķ•œźµ­ģ¤‘ģ„øė„“ė„¤ģƒģŠ¤ģ˜ė¬øķ•™ķšŒ'),
(64600, 'https://ror.org/00wc09b24', 'en', 1, 'https://ror.org/00wc09b24 The Korean Society of Eastern Art Studies ķ•œźµ­ ė™ģ„œģ–‘ ķ•™ķšŒ'),
(64601, 'https://ror.org/05agz2w73', 'en', 1, 'https://ror.org/05agz2w73 The Korean Society of Sports Science ėŒ€ķ•œ 첓윔 ķ•™ķšŒ'),
(64602, 'https://ror.org/005ccd956', 'en', 1, 'https://ror.org/005ccd956 Korean Association for History of Modern Art ķ˜„ėŒ€ėÆøģˆ ģ‚¬ķ•™ķšŒ'),
(64603, 'https://ror.org/04qh86j58', 'en', 1, 'https://ror.org/04qh86j58 Korean Association Of Science and Technology Studies ķ•œźµ­ 과학 기술 ķ•™ķšŒ'),
(64604, 'https://ror.org/02kxkje75', 'en', 1, 'https://ror.org/02kxkje75 Association for the Study of Literature & Environment 문학 ė° ķ™˜ź²½ ķ•™ķšŒ'),
(64605, 'https://ror.org/05e2j7v98', 'en', 1, 'https://ror.org/05e2j7v98 The Modern English Society of Korea ķ˜„ėŒ€ ķ•œźµ­ ģ˜ģ–“ ķ•™ķšŒ'),
(64606, 'https://ror.org/01h9v1373', 'no_lang_code', 1, 'https://ror.org/01h9v1373 Language Science (South Korea) 언얓과학'),
(64607, 'https://ror.org/011mzb617', 'en', 1, 'https://ror.org/011mzb617 Masan University ė§ˆģ‚° ėŒ€ķ•™źµ'),
(64608, 'https://ror.org/03k6gyz62', 'en', 1, 'https://ror.org/03k6gyz62 The Korean Association of Literature and Film ķ•œźµ­ 문학 ģ˜ķ™” ķ•™ķšŒ'),
(64609, 'https://ror.org/02e246391', 'en', 1, 'https://ror.org/02e246391 Korean Mathematical Society ķ•œźµ­ ģˆ˜ķ•™ķšŒ'),
(64610, 'https://ror.org/04jadnp30', 'en', 1, 'https://ror.org/04jadnp30 Korean Classics Research Society ķ•œźµ­ ź³ ģ „ ķ•™ķšŒ'),
(64611, 'https://ror.org/05spnqq37', 'en', 1, 'https://ror.org/05spnqq37 The Society of Korean Literary Criticism ķ•œźµ­ė¹„ķ‰ė¬øķ•™ķšŒėŠ”'),
(64612, 'https://ror.org/05ba3vx21', 'en', 1, 'https://ror.org/05ba3vx21 Modern Korean Literature Assocation ķ•œźµ­ ź·¼ėŒ€ ė¬øķ•™ķšŒ'),
(64613, 'https://ror.org/01f573w53', 'en', 1, 'https://ror.org/01f573w53 Korean Cognitive and Biological Psychology Society ķ•œźµ­ģøģ§€ė°ģƒė¬¼ģ‹¬ė¦¬ķ•™ķšŒ'),
(64614, 'https://ror.org/01712vn60', 'en', 1, 'https://ror.org/01712vn60 Medical Device Information & Technology Assistance Center'),
(64615, 'https://ror.org/01nsk1909', 'no_lang_code', 1, 'https://ror.org/01nsk1909 Medifron (South Korea)'),
(64616, 'https://ror.org/02t0g3v76', 'en', 1, 'https://ror.org/02t0g3v76 The Korean Association of Language Studies ķ•œźµ­ģ–øģ–“ģ—°źµ¬ķ•™ķšŒ'),
(64617, 'https://ror.org/02qqdvw36', 'en', 1, 'https://ror.org/02qqdvw36 Korea Communication Association ķ•œźµ­ 통신 ķ˜‘ķšŒ'),
(64618, 'https://ror.org/05sjd4488', 'en', 1, 'https://ror.org/05sjd4488 The Linguistic Science Society ģ–øģ–“ź³¼ķ•™ķšŒ'),
(64619, 'https://ror.org/03vnxht79', 'no_lang_code', 1, 'https://ror.org/03vnxht79 Medipost (South Korea) 메디 ķ¬ģŠ¤ķŠø'),
(64620, 'https://ror.org/02ajr4b89', 'en', 1, 'https://ror.org/02ajr4b89 Korean Society of Comparision Labor Law ķ•œźµ­ė¹„źµė…øė™ė²•ķ•™ķšŒ'),
(64621, 'https://ror.org/03vabkb23', 'en', 1, 'https://ror.org/03vabkb23 Korea Institute of Human Resources Development źµ­ź°€ź³¼ķ•™źø°ģˆ ģøė „ź°œė°œģ›'),
(64622, 'https://ror.org/05e91m220', 'no_lang_code', 1, 'https://ror.org/05e91m220 NC bit (South Korea)'),
(64623, 'https://ror.org/022535b24', 'no_lang_code', 1, 'https://ror.org/022535b24 Korea Sensor Technology (South Korea) ķ•œźµ­ ģ„¼ģ„œ 기술'),
(64624, 'https://ror.org/03cg2g747', 'en', 1, 'https://ror.org/03cg2g747 Korea Counseling Psychology Association ķ•œźµ­ ģƒė‹“ 심리 ķ•™ķšŒ'),
(64625, 'https://ror.org/04h002109', 'no_lang_code', 1, 'https://ror.org/04h002109 Space Solutions (South Korea) 우주 ģ†”ė£Øģ…˜'),
(64626, 'https://ror.org/056zvrd21', 'en', 1, 'https://ror.org/056zvrd21 The Korean Criminal Law Association ķ•œźµ­ ķ˜•ė²• ķ˜‘ķšŒ'),
(64627, 'https://ror.org/04980ww45', 'no_lang_code', 1, 'https://ror.org/04980ww45 Nemo Partners (South Korea) ė„¤ėŖØķŒŒķŠøė„ˆģ¦ˆ'),
(64628, 'https://ror.org/05a4qc136', 'en', 1, 'https://ror.org/05a4qc136 The Modern English Education Society'),
(64629, 'https://ror.org/02w5yvv06', 'no_lang_code', 1, 'https://ror.org/02w5yvv06 Neo Access (South Korea) ė„¤ģ˜¤ģ—‘ģ„øģŠ¤'),
(64630, 'https://ror.org/039t1kw64', 'en', 1, 'https://ror.org/039t1kw64 The Korean Society for Culture and Arts Education Studies ķ•œźµ­ 문화 예술 교윔 ķ•™ķšŒ'),
(64631, 'https://ror.org/02f9z7g16', 'en', 1, 'https://ror.org/02f9z7g16 The Society Of Modern Grammar ķ˜„ėŒ€ 문법 ķ•™ķšŒ'),
(64632, 'https://ror.org/00p285362', 'en', 1, 'https://ror.org/00p285362 The Society for Dance Documentation & History 묓용 ķ˜‘ķšŒ ė¬øģ„œ ė° 역사'),
(64633, 'https://ror.org/0406egb04', 'no_lang_code', 1, 'https://ror.org/0406egb04 Adbiotech (South Korea)'),
(64634, 'https://ror.org/00p46pc96', 'no_lang_code', 1, 'https://ror.org/00p46pc96 (주)ė„„ģŠ¤ė°”ģ“ģ˜¤ Nex Bio (South Korea)'),
(64635, 'https://ror.org/01pv18527', 'en', 1, 'https://ror.org/01pv18527 The Association of North-east Asian Cultures ė™ė¶ģ•„ģ‹œģ•„ė¬øķ™”ķ•™ķšŒ'),
(64636, 'https://ror.org/04nwskz42', 'en', 1, 'https://ror.org/04nwskz42 Korea Economic Law Association ķ•œźµ­ź²½ģ œė²•ķ•™ķšŒ'),
(64637, 'https://ror.org/03fmpbg41', 'en', 1, 'https://ror.org/03fmpbg41 Reformed Graduate University'),
(64638, 'https://ror.org/00b7g1a82', 'en', 1, 'https://ror.org/00b7g1a82 Reformed Theological Institute 개혁 ģ‹ ķ•™ 연구원'),
(64639, 'https://ror.org/01njzma31', 'en', 1, 'https://ror.org/01njzma31 Mokpo Science University ėŖ©ķ¬ź³¼ķ•™ėŒ€ķ•™źµ'),
(64640, 'https://ror.org/012hhd379', 'en', 1, 'https://ror.org/012hhd379 The Anglican Church of Korea ėŒ€ķ•œģ„±ź³µķšŒ ꓀구 ķ™ˆķŽ˜ģ“ģ§€'),
(64641, 'https://ror.org/04wyd3784', 'en', 1, 'https://ror.org/04wyd3784 Philosophy Of Education Society Of Korea ķ•œźµ­ 교윔 ģ² ķ•™ķšŒ'),
(64642, 'https://ror.org/01v0e7752', 'en', 1, 'https://ror.org/01v0e7752 The Korean Educational Administration Society ķ•œźµ­ 교윔 행정 ķ•™ķšŒ'),
(64643, 'https://ror.org/03xyxqq59', 'en', 1, 'https://ror.org/03xyxqq59 Korean Association for the Society of Religion ķ•œźµ­ 종교 ģ‚¬ķšŒ'),
(64644, 'https://ror.org/05h8mcx43', 'en', 1, 'https://ror.org/05h8mcx43 Korean Association of Architectural History ź±“ģ¶•ģ—­ģ‚¬ķ•™ķšŒ'),
(64645, 'https://ror.org/00se45k92', 'en', 1, 'https://ror.org/00se45k92 Korea Open Association Early Childhood Education ķ•œźµ­ģ—“ė¦°ģœ ģ•„źµģœ”ķ•™ķšŒ'),
(64646, 'https://ror.org/01gwm2d88', 'en', 1, 'https://ror.org/01gwm2d88 Korean Society For Curriculum Studies ķ•œźµ­źµģœ”ź³¼ģ •ķ•™ķšŒ'),
(64647, 'https://ror.org/05jd85x98', 'en', 1, 'https://ror.org/05jd85x98 Korean Cultural Dynamics ė™ģ–‘ė¬øķ™”ģ—°źµ¬ģ›'),
(64648, 'https://ror.org/02qwswa66', 'no_lang_code', 1, 'https://ror.org/02qwswa66 Genoss (South Korea)'),
(64649, 'https://ror.org/03ygfng20', 'en', 1, 'https://ror.org/03ygfng20 The Society Eastern Philosophy ė™ģ–‘ģ² ķ•™ģ—°źµ¬ķšŒ'),
(64650, 'https://ror.org/01b4h2w02', 'en', 1, 'https://ror.org/01b4h2w02 Seoul Institute of the Arts ģ„œģšø 예술 ėŒ€ķ•™'),
(64651, 'https://ror.org/02ra22j36', 'en', 1, 'https://ror.org/02ra22j36 Nano Technology Research Association ė‚˜ė…øģœµķ•©ģ‚°ģ—…ģ—°źµ¬ģ”°ķ•©'),
(64652, 'https://ror.org/04dqc4x73', 'en', 1, 'https://ror.org/04dqc4x73 Osan University ģ˜¤ģ‚°ėŒ€ķ•™'),
(64653, 'https://ror.org/03efra385', 'no_lang_code', 1, 'https://ror.org/03efra385 Manchurian Society 만주 ģ‚¬ķšŒ'),
(64654, 'https://ror.org/05w0m3461', 'no_lang_code', 1, 'https://ror.org/05w0m3461 Autech Group (South Korea) ģ˜¤ķ…ź·øė£¹ģ€'),
(64655, 'https://ror.org/026c0g860', 'no_lang_code', 1, 'https://ror.org/026c0g860 Samil Industry (South Korea)'),
(64656, 'https://ror.org/01mbh6s37', 'no_lang_code', 1, 'https://ror.org/01mbh6s37 PricewaterhouseCoopers (South Korea)'),
(64657, 'https://ror.org/024swd842', 'no_lang_code', 1, 'https://ror.org/024swd842 KuboTek (South Korea) 쿠볓 ķ…'),
(64658, 'https://ror.org/03wpcjb05', 'no_lang_code', 1, 'https://ror.org/03wpcjb05 Samoo Architects & Engineers (South Korea)'),
(64659, 'https://ror.org/00d5asq22', 'no_lang_code', 1, 'https://ror.org/00d5asq22 Pansori Society ķŒģ†Œė¦¬ķ•™ķšŒėŠ”'),
(64660, 'https://ror.org/045272c39', 'no_lang_code', 1, 'https://ror.org/045272c39 Samyoung Unitech (South Korea)'),
(64661, 'https://ror.org/045195s13', 'no_lang_code', 1, 'https://ror.org/045195s13 Nara Controls (South Korea)'),
(64662, 'https://ror.org/04v6xjb97', 'en', 1, 'https://ror.org/04v6xjb97 The Society of Philosophical Studies ģ² ķ•™ģ—°źµ¬ķšŒ'),
(64663, 'https://ror.org/03p6bmy35', 'no_lang_code', 1, 'https://ror.org/03p6bmy35 Biocera (South Korea) ė°”ģ“ģ˜¤ ģ—ė¼'),
(64664, 'https://ror.org/01tnmcm04', 'en', 1, 'https://ror.org/01tnmcm04 Scientists and Engineers Without Borders źµ­ź²½ģ—†ėŠ” 과학 기술 ģ‚¬ķšŒ'),
(64665, 'https://ror.org/020b78451', 'en', 1, 'https://ror.org/020b78451 Sejong Cyber University ģ„øģ¢…ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(64666, 'https://ror.org/032j0jn37', 'en', 1, 'https://ror.org/032j0jn37 National Institute of Korean History ķ•œźµ­ 역사 ģ—°źµ¬ģ†Œ'),
(64667, 'https://ror.org/00eqzvz74', 'no_lang_code', 1, 'https://ror.org/00eqzvz74 Terrasun (South Korea) ķ…Œė¼ 손'),
(64668, 'https://ror.org/04t7p9y73', 'no_lang_code', 1, 'https://ror.org/04t7p9y73 (ģž¬)ķ¬ķ•­ķ…Œķ¬ė…øķŒŒķ¬ Pohang TechnoPark (South Korea)'),
(64669, 'https://ror.org/03xxysc72', 'no_lang_code', 1, 'https://ror.org/03xxysc72 SensorTec (South Korea)'),
(64670, 'https://ror.org/013te4x73', 'no_lang_code', 1, 'https://ror.org/013te4x73 Vitzro Tech (South Korea) ė¹„ģø ė”œ ķ…Œķ¬'),
(64671, 'https://ror.org/04d1kva62', 'no_lang_code', 1, 'https://ror.org/04d1kva62 YD Global Life Science (South Korea) ģ™€ģ“ė””ģƒėŖ…ź³¼ķ•™'),
(64672, 'https://ror.org/01wf22864', 'en', 1, 'https://ror.org/01wf22864 Seoil University ē‘žé€øå¤§å­øę ”,'),
(64673, 'https://ror.org/023h03q35', 'en', 1, 'https://ror.org/023h03q35 National Institute for Lifelong Education źµ­ź°€ķ‰ģƒźµģœ”ģ§„ķ„ģ›'),
(64674, 'https://ror.org/05rmdvv71', 'no_lang_code', 1, 'https://ror.org/05rmdvv71 Worldwide Intellectual Property Service (South Korea) 전세계 지적 ģž¬ģ‚°ź¶Œ ģ„œė¹„ģŠ¤'),
(64675, 'https://ror.org/015pwqr12', 'en', 1, 'https://ror.org/015pwqr12 National Sports Promotion Corporation źµ­ėÆ¼ģ²“ģœ”ģ§„ķ„ź³µė‹Ø'),
(64676, 'https://ror.org/04ptgyz27', 'en', 1, 'https://ror.org/04ptgyz27 Korean Academic Society for Public Relations ķ•œźµ­PRķ•™ķšŒ'),
(64677, 'https://ror.org/04fndbe13', 'no_lang_code', 1, 'https://ror.org/04fndbe13 Woo Young Medical (South Korea) 우 영 ģ˜ė£Œ'),
(64678, 'https://ror.org/02an5qv02', 'en', 1, 'https://ror.org/02an5qv02 Seoul University of Buddhism ģ„œģšøė¶ˆźµėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(64679, 'https://ror.org/04h7sxq81', 'no_lang_code', 1, 'https://ror.org/04h7sxq81 Winus Technology (South Korea) ģœ„ė„ˆģŠ¤ 과학 기술'),
(64680, 'https://ror.org/001hkh847', 'en', 1, 'https://ror.org/001hkh847 Sorabol College ģ„œė¼ė²ŒėŒ€ķ•™'),
(64681, 'https://ror.org/00c232088', 'en', 1, 'https://ror.org/00c232088 The Society of Service Science ģ„œė¹„ģŠ¤ ź³¼ķ•™ķšŒ'),
(64682, 'https://ror.org/04n3n8t23', 'no_lang_code', 1, 'https://ror.org/04n3n8t23 U-Tel (South Korea) ģœ ķ…”'),
(64683, 'https://ror.org/03994m394', 'no_lang_code', 1, 'https://ror.org/03994m394 Tech Valley (South Korea) ķ…Œķ¬ė°øė¦¬'),
(64684, 'https://ror.org/03sw09b87', 'no_lang_code', 1, 'https://ror.org/03sw09b87 SFC (South Korea)'),
(64685, 'https://ror.org/058yas979', 'en', 1, 'https://ror.org/058yas979 Technology Management Economics Society źø°ģˆ ź²½ģ˜ź²½ģ œķ•™ķšŒ'),
(64686, 'https://ror.org/00hzd4z47', 'no_lang_code', 1, 'https://ror.org/00hzd4z47 Sharing and Technologies Incorporated (South Korea) 공유 ė° źø°ģˆ ė²•ģøģ˜'),
(64687, 'https://ror.org/00vpqzk55', 'no_lang_code', 1, 'https://ror.org/00vpqzk55 SillaJen (South Korea) ģ   ģ˜ģž'),
(64688, 'https://ror.org/025x5jh64', 'en', 1, 'https://ror.org/025x5jh64 Daedong Han Literary Society ėŒ€ė™ķ•œė¬øķ•™ķšŒ'),
(64689, 'https://ror.org/02m3rv513', 'en', 1, 'https://ror.org/02m3rv513 Shingu College ģ‹ źµ¬ėŒ€ķ•™źµ'),
(64690, 'https://ror.org/01h8s5550', 'en', 1, 'https://ror.org/01h8s5550 Korea Intelligent Information Systems Society ķ•œźµ­ ģ§€ėŠ„ 정볓 ģ‹œģŠ¤ķ…œ ķ•™ķšŒ'),
(64691, 'https://ror.org/007mhqn04', 'en', 1, 'https://ror.org/007mhqn04 Songwon University ģ†”ģ›ėŒ€ķ•™źµ'),
(64692, 'https://ror.org/00sc0e019', 'en', 1, 'https://ror.org/00sc0e019 Shinhan University ģ‹ ķ•œ ėŒ€ķ•™źµ'),
(64693, 'https://ror.org/03hhghr21', 'en', 1, 'https://ror.org/03hhghr21 The Korean Social Security Association ķ•œźµ­ ģ‚¬ķšŒ ė³“ģž„ ķ˜‘ķšŒ'),
(64694, 'https://ror.org/05eaeap32', 'en', 1, 'https://ror.org/05eaeap32 Korean Speech-Language & Hearing Association'),
(64695, 'https://ror.org/019aqfx79', 'en', 1, 'https://ror.org/019aqfx79 The Japanese Culture Association of Korea ķ•œźµ­ģ¼ė³øė¬øķ™”ķ•™ķšŒ'),
(64696, 'https://ror.org/05mr5xg41', 'en', 1, 'https://ror.org/05mr5xg41 Shinsung University 신성 ėŒ€ķ•™źµ'),
(64697, 'https://ror.org/03r6fm605', 'en', 1, 'https://ror.org/03r6fm605 Japanese Language & Culture Association of Korea ģ¼ė³øģ–øģ–“ė¬øķ™”ķ•™ķšŒė„¼'),
(64698, 'https://ror.org/01yywym13', 'en', 1, 'https://ror.org/01yywym13 The Society for the Studies of Silla History ģ‹ ė¼ 역사 ķ•™ķšŒ'),
(64699, 'https://ror.org/05cdh3h43', 'en', 1, 'https://ror.org/05cdh3h43 The Korean Association of General Education ėŒ€ķ•œ 교윔 ģ“ķšŒ'),
(64700, 'https://ror.org/02qjrh386', 'en', 1, 'https://ror.org/02qjrh386 Korea Association of japanology ķ•œźµ­ģ¼ė³øķ•™ķšŒ'),
(64701, 'https://ror.org/051awps38', 'en', 1, 'https://ror.org/051awps38 Soongeui Women''s College ģˆ­ģ˜ģ—¬ģžėŒ€ķ•™źµ'),
(64702, 'https://ror.org/04t17k048', 'en', 1, 'https://ror.org/04t17k048 Society for Korean Ancient History ķ•œźµ­ ź³ ėŒ€ģ‚¬ ķ•™ķšŒ'),
(64703, 'https://ror.org/01jwwa840', 'en', 1, 'https://ror.org/01jwwa840 Korea Soongsil Cyber ​​University ķ•œźµ­ģ‚¬ģ“ė²„ėŒ€ķ•™źµ ģ¢…ė”œģŗ ķ¼ģŠ¤'),
(64704, 'https://ror.org/018g7an25', 'no_lang_code', 1, 'https://ror.org/018g7an25 Emart (South Korea) ģ“ė§ˆķŠø'),
(64705, 'https://ror.org/0058tb798', 'en', 1, 'https://ror.org/0058tb798 The Society for Teaching English through Media ģ˜ģƒģ˜ģ–“źµģœ”ķ•™ķšŒ'),
(64706, 'https://ror.org/00k1vj692', 'en', 1, 'https://ror.org/00k1vj692 Dongyang Hanmoon Association ė™ģ–‘ ķ•œė¬ø ģ—°ķ•©ķšŒ'),
(64707, 'https://ror.org/04bkx5428', 'en', 1, 'https://ror.org/04bkx5428 The Korean Association of Small Buisness Studies ķ•œźµ­ģ¤‘ģ†Œźø°ģ—…ķ•™ķšŒ'),
(64708, 'https://ror.org/012q4vx20', 'en', 1, 'https://ror.org/012q4vx20 Korean Psychological Association of Culture and Social Issues ķ•œźµ­ė¬øķ™”ė°ģ‚¬ķšŒė¬øģ œģ‹¬ė¦¬ķ•™ķšŒ'),
(64709, 'https://ror.org/05wjeww18', 'en', 1, 'https://ror.org/05wjeww18 BuildingSMART Korea ģ„œģšø 스마트 ė¹Œė”©'),
(64710, 'https://ror.org/018dqxd30', 'en', 1, 'https://ror.org/018dqxd30 Korea Thinking and Expression Society ķ•œźµ­ 사고 ķ‘œķ˜„ ģ‚¬ķšŒ'),
(64711, 'https://ror.org/03artrq79', 'en', 1, 'https://ror.org/03artrq79 Association of Western Art History ķ•œźµ­ģ„œģ–‘ėÆøģˆ ģ‚¬ķ•™ķšŒ 회'),
(64712, 'https://ror.org/04thcs884', 'en', 1, 'https://ror.org/04thcs884 Korean Society of Modern Philosophy ģ„œģ–‘ź·¼ėŒ€ģ² ķ•™ķšŒ'),
(64713, 'https://ror.org/014dg3r13', 'en', 1, 'https://ror.org/014dg3r13 The Korean Society for Industrial Education ķ•œźµ­ģ‚°ģ—…źµģœ”ķ•™ķšŒ'),
(64714, 'https://ror.org/051mxsx19', 'no_lang_code', 1, 'https://ror.org/051mxsx19 SP Technology (South Korea) ģ—ģŠ¤ķ”¼ķ…'),
(64715, 'https://ror.org/01shdwj89', 'en', 1, 'https://ror.org/01shdwj89 Korea Academic Society of Tourism Management ėŒ€ķ•œź“€ź“‘ź²½ģ˜ķ•™ķšŒ'),
(64716, 'https://ror.org/04kdp2897', 'en', 1, 'https://ror.org/04kdp2897 Tourism Management Research Organization ź“€ź“‘ź²½ģ˜ķ•™ķšŒ'),
(64717, 'https://ror.org/00j9f1256', 'no_lang_code', 1, 'https://ror.org/00j9f1256 Youngjin Technology (South Korea) ģ˜ģ§„źø°ģˆ  ģ£¼ģ‹ķšŒģ‚¬'),
(64718, 'https://ror.org/028bgy326', 'en', 1, 'https://ror.org/028bgy326 Westminster Graduate School of Theology ģ›ØģŠ¤ķŠøėÆ¼ģŠ¤ķ„°ģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(64719, 'https://ror.org/04sgsjj39', 'en', 1, 'https://ror.org/04sgsjj39 Korean Society for the Study of Social Education ķ•œźµ­ ģ‚¬ķšŒ 교윔 ķ•™ķšŒ'),
(64720, 'https://ror.org/00fbs6k07', 'no_lang_code', 1, 'https://ror.org/00fbs6k07 Stronghold Technology (South Korea)'),
(64721, 'https://ror.org/0537cyx03', 'en', 1, 'https://ror.org/0537cyx03 Agricultural Farmer''s Policy Institute ė†ģ—…ė†ėÆ¼ģ •ģ±…ģ—°źµ¬ģ†Œ 녀름'),
(64722, 'https://ror.org/04320sq35', 'en', 1, 'https://ror.org/04320sq35 Yeongnam Chinese Literature Society ģ˜ė‚Øģ¤‘źµ­ģ–“ė¬øķ•™ķšŒ'),
(64723, 'https://ror.org/03t6vm274', 'no_lang_code', 1, 'https://ror.org/03t6vm274 Wonkwang Digital University ģ›ź“‘ė””ģ§€ķ„øėŒ€ķ•™źµ'),
(64724, 'https://ror.org/0014sb331', 'en', 1, 'https://ror.org/0014sb331 Suncheon Jeil College ģˆœģ²œģ œģ¼ėŒ€ķ•™źµ'),
(64725, 'https://ror.org/02gegry54', 'en', 1, 'https://ror.org/02gegry54 Asia-Pacific Centre of Education for International Understanding ģœ ė„¤ģŠ¤ģ½”ģ˜ ģ§€ģ›ķ•˜ģ— ģ•„ģ‹œģ•„ ķƒœķ‰ģ–‘ 국제 ģ“ķ•“ 교윔 센터'),
(64726, 'https://ror.org/04astfq33', 'en', 1, 'https://ror.org/04astfq33 Youth Society Opening the Future ģ²­ģ†Œė…„ ģ‚¬ķšŒ ėÆøėž˜ė„¼ ģ—¬ėŠ”'),
(64727, 'https://ror.org/008cmt298', 'en', 1, 'https://ror.org/008cmt298 Sunlin University 선린 ėŒ€ķ•™źµ'),
(64728, 'https://ror.org/02ce9zg48', 'en', 1, 'https://ror.org/02ce9zg48 The Association of Comparative Study of World Literature ģ„øź³„ė¬øķ•™ė¹„źµķ•™ķšŒ'),
(64729, 'https://ror.org/024rmbk85', 'en', 1, 'https://ror.org/024rmbk85 The Yeats Society of Korea ķ•œźµ­ģ˜ˆģ“ģø ķ•™ķšŒ'),
(64730, 'https://ror.org/01t4th798', 'no_lang_code', 1, 'https://ror.org/01t4th798 Yeoju University ģ—¬ģ£¼ėŒ€ķ•™źµ'),
(64731, 'https://ror.org/01yarqc83', 'en', 1, 'https://ror.org/01yarqc83 Suwon Women’s University ģˆ˜ģ› ģ—¬ģž ėŒ€ķ•™źµ'),
(64732, 'https://ror.org/01bxcf222', 'no_lang_code', 1, 'https://ror.org/01bxcf222 EurasTech (South Korea) ģœ ė¼ģŠ¤ķ…');
INSERT INTO `rors` VALUES
(64733, 'https://ror.org/00dhaqb25', 'en', 1, 'https://ror.org/00dhaqb25 Yeongnam Archaeological Society ģ˜ė‚Øź³ ź³ ķ•™ķšŒ'),
(64734, 'https://ror.org/03zscq151', 'en', 1, 'https://ror.org/03zscq151 Suwon Science College ģˆ˜ģ› 과학 ėŒ€ķ•™'),
(64735, 'https://ror.org/01rte3169', 'en', 1, 'https://ror.org/01rte3169 Podar Ayurved Medical College'),
(64736, 'https://ror.org/03bftdb85', 'en', 1, 'https://ror.org/03bftdb85 Dr. B.R.K.R. Government Ayurvedic College'),
(64737, 'https://ror.org/016w6xc44', 'en', 1, 'https://ror.org/016w6xc44 Bhaktivedanta Hospital & Research Institute'),
(64738, 'https://ror.org/009ytmf35', 'en', 1, 'https://ror.org/009ytmf35 ACE Hospital'),
(64739, 'https://ror.org/05mmqpp85', 'en', 1, 'https://ror.org/05mmqpp85 Acharya Shri Chander College of Medical Sciences and Hospital'),
(64740, 'https://ror.org/02jx32965', 'en', 1, 'https://ror.org/02jx32965 Department of Science & Technology'),
(64741, 'https://ror.org/02b49vz59', 'en', 1, 'https://ror.org/02b49vz59 Dr. Panjabrao Deshmukh Memorial Medical College'),
(64742, 'https://ror.org/02nj97t48', 'en', 1, 'https://ror.org/02nj97t48 Adesh University'),
(64743, 'https://ror.org/05t86wg70', 'en', 1, 'https://ror.org/05t86wg70 Agartala Government Medical College'),
(64744, 'https://ror.org/03v4ccn82', 'en', 1, 'https://ror.org/03v4ccn82 Fortis Escorts Hospital ą¤«ą„‹ą¤°ą„ą¤Ÿą¤æą¤ø ą¤ą¤øą„ą¤•ą„‰ą¤°ą„ą¤Ÿą„ą¤ø ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(64745, 'https://ror.org/045tbyy79', 'no_lang_code', 1, 'https://ror.org/045tbyy79 Dr. Bidari’s Ashwini Hospital'),
(64746, 'https://ror.org/0078v1m45', 'en', 1, 'https://ror.org/0078v1m45 Government Ayurved College, Nanded'),
(64747, 'https://ror.org/03wcmbn72', 'en', 1, 'https://ror.org/03wcmbn72 Kims Bibi Hospital'),
(64748, 'https://ror.org/020a0s966', 'en', 1, 'https://ror.org/020a0s966 Bodyline Hospitals'),
(64749, 'https://ror.org/00997qd48', 'en', 1, 'https://ror.org/00997qd48 Goverment Siddha Medical College ą®…ą®°ą®šąÆ ą®šą®æą®¤ąÆą®¤ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(64750, 'https://ror.org/03rcmhq47', 'en', 1, 'https://ror.org/03rcmhq47 Apollo Hospitals ą¤…ą¤Ŗą„‹ą¤²ą„‹ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(64751, 'https://ror.org/02hw5jq67', 'en', 1, 'https://ror.org/02hw5jq67 Dr. Syamala Reddy Dental College Hospital & Research Center'),
(64752, 'https://ror.org/03b9tt486', 'en', 1, 'https://ror.org/03b9tt486 Ananthapuri Hospitals and Research Institute'),
(64753, 'https://ror.org/05wz8q607', 'en', 1, 'https://ror.org/05wz8q607 Apollo Cradle For Women & Children'),
(64754, 'https://ror.org/05h37xr68', 'en', 1, 'https://ror.org/05h37xr68 Asha Hospital'),
(64755, 'https://ror.org/01p9kdj82', 'no_lang_code', 1, 'https://ror.org/01p9kdj82 Sir Takhtasinhji General Hospital ąŖøąŖ° ąŖ¤ąŖ–ą«ąŖ¤ąŖøąŖæąŖ‚ąŖ¹ąŖœą«€ જનરલ ąŖ¹ą«‹ąŖøą«ąŖŖąŖæąŖŸąŖ²'),
(64756, 'https://ror.org/049weg966', 'en', 1, 'https://ror.org/049weg966 ESI - Post Graduate Institute of Medical Science and Research'),
(64757, 'https://ror.org/01eskr961', 'en', 1, 'https://ror.org/01eskr961 ESI - Post Graduate Institute of Medical Science and Research'),
(64758, 'https://ror.org/00a9yh217', 'en', 1, 'https://ror.org/00a9yh217 Employees State Insurance Post Graduate Institute of Medical Sciences and Research'),
(64759, 'https://ror.org/05a67cs45', 'en', 1, 'https://ror.org/05a67cs45 Central Council for Research in Siddha'),
(64760, 'https://ror.org/00drjse70', 'en', 1, 'https://ror.org/00drjse70 Balaji Dental & Craniofacial Hospital'),
(64761, 'https://ror.org/02qx4d724', 'en', 1, 'https://ror.org/02qx4d724 Bangalore Medical Center'),
(64762, 'https://ror.org/03tx9q361', 'no_lang_code', 1, 'https://ror.org/03tx9q361 Fortis Hospital ą¦«ą§‹ą¦°ą§ą¦Ÿą¦æą¦ø হসপিটাল'),
(64763, 'https://ror.org/00t8p6b60', 'en', 1, 'https://ror.org/00t8p6b60 Bapu Nature Cure Hospital & Yogashram'),
(64764, 'https://ror.org/02hn5dg93', 'en', 1, 'https://ror.org/02hn5dg93 Vaidyaratnam P.S. Varier Ayurveda College'),
(64765, 'https://ror.org/03kb9y492', 'en', 1, 'https://ror.org/03kb9y492 SDM College of Medical Science and Hospital ą²Žą²øą³ ಔಿ ą²Žą²®ą³ ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(64766, 'https://ror.org/034ad8717', 'en', 1, 'https://ror.org/034ad8717 Chaithanya Eye Hospital and Research Institute'),
(64767, 'https://ror.org/05hnet169', 'en', 1, 'https://ror.org/05hnet169 Chennai Skin Foundation & Yesudian Research Institute'),
(64768, 'https://ror.org/05xsa6v37', 'en', 1, 'https://ror.org/05xsa6v37 Government Ayurvedic College and Hospital Osmanabad ą¤øą¤°ą¤•ą¤¾ą¤°ą„€ ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ आणि ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ ą¤‰ą¤øą„ą¤®ą¤¾ą¤Øą¤¾ą¤¬ą¤¾ą¤¦'),
(64769, 'https://ror.org/04cka6191', 'en', 1, 'https://ror.org/04cka6191 Chethana Special School'),
(64770, 'https://ror.org/03fkhvq16', 'en', 1, 'https://ror.org/03fkhvq16 Desh Bhagat Ayurvedic College and Hospital'),
(64771, 'https://ror.org/007n0ss86', 'en', 1, 'https://ror.org/007n0ss86 Desh Bhagat University ਦੇਸ਼ ਭਗਤ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(64772, 'https://ror.org/058v1h521', 'no_lang_code', 1, 'https://ror.org/058v1h521 Cloudnine'),
(64773, 'https://ror.org/02zxg0r06', 'en', 1, 'https://ror.org/02zxg0r06 Institute of Applied Dermatology'),
(64774, 'https://ror.org/02z23mj13', 'en', 1, 'https://ror.org/02z23mj13 Kazakh Eye Research Institute ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ ŠŠ˜Š˜ глазных болезней Көз Š°ŃƒŃ€ŃƒŠ»Š°Ń€Ń‹ ŅšŠ°Š·Š°Ņ› ғылыми Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(64775, 'https://ror.org/04phk2284', 'en', 1, 'https://ror.org/04phk2284 Dolphin (PG) Institute of Bio Medical and Natural Science'),
(64776, 'https://ror.org/01apnjb23', 'no_lang_code', 1, 'https://ror.org/01apnjb23 Recipharm (Sweden)'),
(64777, 'https://ror.org/02kras730', 'no_lang_code', 1, 'https://ror.org/02kras730 Prexton Therapeutics (Netherlands)'),
(64778, 'https://ror.org/019jryw76', 'no_lang_code', 1, 'https://ror.org/019jryw76 Prexton Therapeutics (Switzerland)'),
(64779, 'https://ror.org/03psvch52', 'en', 1, 'https://ror.org/03psvch52 Dr. BMN College of Home Science Dr. BMN ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ़ ą¤¹ą„‹ą¤® साइंस'),
(64780, 'https://ror.org/03re7j391', 'no_lang_code', 1, 'https://ror.org/03re7j391 Osmotica Pharmaceutical (Hungary)'),
(64781, 'https://ror.org/02w2qw090', 'no_lang_code', 1, 'https://ror.org/02w2qw090 Charles River Laboratories (Germany)'),
(64782, 'https://ror.org/01hg18f75', 'no_lang_code', 1, 'https://ror.org/01hg18f75 SynAgile (United States)'),
(64783, 'https://ror.org/02kqsaj20', 'en', 1, 'https://ror.org/02kqsaj20 Krishna Maternity and Surgical Nursing Home'),
(64784, 'https://ror.org/024ay6y96', 'en', 1, 'https://ror.org/024ay6y96 The Anam Society for the Study Of Education 아남 교윔 ķ•™ķšŒ'),
(64785, 'https://ror.org/00ntvge22', 'en', 1, 'https://ror.org/00ntvge22 M.B.Barvalia Foundation’s Spandan Organizations'),
(64786, 'https://ror.org/02pn5rj08', 'en', 1, 'https://ror.org/02pn5rj08 State Key Laboratory of Cryptology åÆ†ē ē§‘å­¦ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤ē”±å›½å®¶åÆ†ē ē®”ē†å±€äø»ē®”'),
(64787, 'https://ror.org/01ne6ew22', 'no_lang_code', 1, 'https://ror.org/01ne6ew22 Xi''an Electric Furnace Research Institute (China) č„æå®‰ē”µē‚‰ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(64788, 'https://ror.org/03kgapk50', 'no_lang_code', 1, 'https://ror.org/03kgapk50 MAGJ Hospital'),
(64789, 'https://ror.org/05d2jmv32', 'en', 1, 'https://ror.org/05d2jmv32 Institute of Health Studies and Rehabilitation'),
(64790, 'https://ror.org/03jw91041', 'no_lang_code', 1, 'https://ror.org/03jw91041 Jindal Naturecure Institute ą¤œą¤æą¤‚ą¤¦ą¤² ą¤Øą„‡ą¤šą¤°ą¤šą¤° ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ'),
(64791, 'https://ror.org/047zg7c19', 'en', 1, 'https://ror.org/047zg7c19 K. J. Somaiya Hospital & Research Centre ą¤•ą„‡. ą¤œą„‡. ą¤øą„‹ą¤®ą¤Æą„ą¤Æą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤…ą¤ą¤Øą„ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤° ą¤•ą„‡ą„¤ ą¤œą„‡ą„¤ ą¤øą„‹ą¤®ą„ˆą¤Æą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(64792, 'https://ror.org/02d8efy02', 'en', 1, 'https://ror.org/02d8efy02 Institute of Neurosciences Kolkata ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦Øą¦æą¦‰ą¦°ą§‹ą¦øą¦¾ą¦‡ą¦Øą§ą¦øą§‡ą¦ø'),
(64793, 'https://ror.org/00qe7ms27', 'en', 1, 'https://ror.org/00qe7ms27 KG Hospital'),
(64794, 'https://ror.org/03jgxy838', 'en', 1, 'https://ror.org/03jgxy838 Institute of Reproductive Medicine ą¦°ą¦æą¦Ŗą§ą¦°ą§‹ą¦”ą¦¾ą¦•ą¦Ÿą¦æą¦­ মেঔিসিন ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(64795, 'https://ror.org/01drdtp87', 'en', 1, 'https://ror.org/01drdtp87 Shree Krishna Hospital ąŖ¶ą«ąŖ°ą«€ ąŖ•ą«ƒąŖ·ą«ąŖ£ ąŖ¹ą«‹ąŖøą«ąŖŖąŖæąŖŸąŖ²'),
(64796, 'https://ror.org/03y1kax64', 'en', 1, 'https://ror.org/03y1kax64 Micro & Nano Research Institute 微纳米研究所'),
(64797, 'https://ror.org/05jaz3369', 'no_lang_code', 1, 'https://ror.org/05jaz3369 Indian Immunologicals (India)'),
(64798, 'https://ror.org/03rr58081', 'en', 1, 'https://ror.org/03rr58081 Karnataka Medical Council'),
(64799, 'https://ror.org/0555rbr45', 'no_lang_code', 1, 'https://ror.org/0555rbr45 Hygienic Research Institute (India) ą¤øą„ą¤µą¤šą„ą¤›ą¤‚ą¤¦ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(64800, 'https://ror.org/04w54p329', 'en', 1, 'https://ror.org/04w54p329 International College of Nutrition ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ़ ą¤Øą„ą¤¤ą„ą¤°ą¤æą¤¤ą¤æą¤“ą¤‚'),
(64801, 'https://ror.org/05k8rth88', 'en', 1, 'https://ror.org/05k8rth88 ESIC Hospital इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤ˆą¤ą¤øą¤†ą¤ˆ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(64802, 'https://ror.org/035h0ne50', 'en', 1, 'https://ror.org/035h0ne50 Meher Hospitals'),
(64803, 'https://ror.org/05g9k3k07', 'en', 1, 'https://ror.org/05g9k3k07 Nethradhama Superspeciality Eye Hospital ą²Øą³‡ą²¤ą³ą²°ą²§ą²¾ą²® ą²øą³‚ą²Ŗą²°ą³ ą²øą³ą²Ŗą³†ą²¶ą²¾ą²²ą²æą²Ÿą²æ ą²•ą²£ą³ą²£ą²æą²Ø ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(64804, 'https://ror.org/01te4n153', 'en', 1, 'https://ror.org/01te4n153 Government Medical College'),
(64805, 'https://ror.org/01jwjz832', 'en', 1, 'https://ror.org/01jwjz832 Index Medical College, Hospital & Research Centre ą¤¦ą„‡ą¤µą„€ ą¤…ą¤¹ą¤æą¤²ą„ą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤øą¤Øą¤æą¤• ą¤•ą¤¾ą¤°ą„ą¤Æą¤¾ą¤²ą¤Æ, आर ą¤ą¤Ø ą¤Ÿą„€'),
(64806, 'https://ror.org/00wcc7f06', 'no_lang_code', 1, 'https://ror.org/00wcc7f06 Karmaveer Bhausaheb Hiray Dental College and Hospital'),
(64807, 'https://ror.org/00xbas612', 'en', 1, 'https://ror.org/00xbas612 Rabindranath Tagore International Institute of Cardiac Sciences'),
(64808, 'https://ror.org/053gsyk62', 'en', 1, 'https://ror.org/053gsyk62 Dagestan Center of Eye Microsurgery Дагестанский центр Š¼ŠøŠŗŃ€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø глаза'),
(64809, 'https://ror.org/0176h5851', 'en', 1, 'https://ror.org/0176h5851 Midnapore Homeopathic Medical College and Hospital মেদিনীপুর ą¦¹ą§‹ą¦®ą¦æą¦“ą¦Ŗą§ą¦Æą¦¾ą¦„ą¦æą¦• মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ą¦ą¦Øą§ą¦” হসপিটাল'),
(64810, 'https://ror.org/05reefs64', 'en', 1, 'https://ror.org/05reefs64 Noble Hospital'),
(64811, 'https://ror.org/03f3afg04', 'en', 1, 'https://ror.org/03f3afg04 Uttarakhand Ayurved University'),
(64812, 'https://ror.org/00vg62x98', 'en', 1, 'https://ror.org/00vg62x98 Indian Education Society''s V. N. Sule Guruji English Medium School ą¤µą„ą¤¹ą„€ ą¤ą¤Ø ą¤øą„ą¤³ą„‡ ą¤—ą„ą¤°ą„ą¤œą„€ ą¤‡ą¤‚ą¤—ą„ą¤°ą¤œą„€ ą¤®ą¤¾ą¤§ą„ą¤Æą¤® ą¤®ą¤¾ą¤§ą„ą¤Æą¤®ą¤æą¤• शाळा'),
(64813, 'https://ror.org/0237g7h29', 'en', 1, 'https://ror.org/0237g7h29 Moulana Hospital ą“®ąµ—ą“²ą“¾ą“Ø ą“¹ąµ‹ą“øąµą“Ŗą“æą“±ąµą“±ąµ½'),
(64814, 'https://ror.org/02qwr8r69', 'en', 1, 'https://ror.org/02qwr8r69 S Nijalingappa Medical College and HSK Hospital & Research Centre'),
(64815, 'https://ror.org/02esmse85', 'en', 1, 'https://ror.org/02esmse85 Nulife Hospital'),
(64816, 'https://ror.org/049zrr195', 'en', 1, 'https://ror.org/049zrr195 S.R. Kalla Memorial Gastro and General Hospital ą¤ą¤ø आर ą¤•ą¤²ą„ą¤²ą¤¾ ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤—ą„ˆą¤øą„ą¤Ÿą„ą¤°ą„‹ ą¤ą¤‚ą¤” जनरल ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(64817, 'https://ror.org/05cmc6v40', 'no_lang_code', 1, 'https://ror.org/05cmc6v40 Kirloskar Hospital'),
(64818, 'https://ror.org/00xaj0b77', 'en', 1, 'https://ror.org/00xaj0b77 Indo-US Super Speciality Hospital ą°­ą°¾ą°°ą°¤ą±-అమెరికా ą°øą±‚ą°Ŗą°°ą± ą°øą±ą°Ŗą±†ą°·ą°¾ą°²ą°æą°Ÿą±€ ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(64819, 'https://ror.org/01fqnwx40', 'en', 1, 'https://ror.org/01fqnwx40 M.V. Hospital and Research Centre'),
(64820, 'https://ror.org/01eb0bw82', 'no_lang_code', 1, 'https://ror.org/01eb0bw82 Sahaj Hospital सहज ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(64821, 'https://ror.org/043xmfp89', 'en', 1, 'https://ror.org/043xmfp89 Indravati Hospital & Research Centre ą¤‡ą¤‚ą¤¦ą„ą¤°ą¤¾ą¤µą¤¤ą„€ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(64822, 'https://ror.org/00azevz34', 'en', 1, 'https://ror.org/00azevz34 Oyster & Pearl Hospital'),
(64823, 'https://ror.org/049gvs161', 'en', 1, 'https://ror.org/049gvs161 National Allergy Asthma Bronchitis Institute'),
(64824, 'https://ror.org/04esbsa15', 'no_lang_code', 1, 'https://ror.org/04esbsa15 Samvedna Hospital ą¤øą¤‚ą¤µą„‡ą¤¦ą¤Øą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(64825, 'https://ror.org/03mzdta96', 'en', 1, 'https://ror.org/03mzdta96 Sanjivani Super Speciality Hospitals'),
(64826, 'https://ror.org/03wscj685', 'en', 1, 'https://ror.org/03wscj685 Sri Kalabyraveshwara Swamy Ayurvedic Medical College, Hospital and Research Center ą²¶ą³ą²°ą³€ ą²•ą²²ą²¾ą²­ą²°ą²£ą²µą³‡ą²¶ą³ą²µą²° ą²øą³ą²µą²¾ą²®ą²æ ą²†ą²Æą³ą²°ą³ą²µą³‡ą²¦ą²æą²•ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³† ą²®ą²¤ą³ą²¤ą³ ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(64827, 'https://ror.org/00zkpmz33', 'en', 1, 'https://ror.org/00zkpmz33 National Institute of Medical Statistics'),
(64828, 'https://ror.org/04g2esr52', 'en', 1, 'https://ror.org/04g2esr52 Seth Nandlal Dhoot Hospital'),
(64829, 'https://ror.org/0251z6a72', 'en', 1, 'https://ror.org/0251z6a72 Sri Sathya Sai Institute of Higher Medical Sciences ą°¶ą±ą°°ą±€ ą°øą°¤ą±ą°Æ సాయి ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°¹ą°Æą±ą°Æą°°ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°øą±ˆą°Øą±ą°øą±†ą°øą±'),
(64830, 'https://ror.org/04z0vgz60', 'en', 1, 'https://ror.org/04z0vgz60 Dhanvantari Ayurveda College Hospital and Research Centre'),
(64831, 'https://ror.org/01qybkd90', 'en', 1, 'https://ror.org/01qybkd90 Sri Venkateshwaraa Medical College Hospital and Research Centre ą®øąÆą®°ąÆ€ ą®µąÆ†ą®™ąÆą®•ą®ŸąÆ‡ą®øąÆą®µą®°ą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®ÆąÆą®µąÆ ą®®ąÆˆą®Æą®®ąÆ'),
(64832, 'https://ror.org/05j2z6f89', 'en', 1, 'https://ror.org/05j2z6f89 Delhi State Cancer Institute'),
(64833, 'https://ror.org/04kbbd545', 'en', 1, 'https://ror.org/04kbbd545 Shri Bhausaheb Hire Government Medical College & Hospital'),
(64834, 'https://ror.org/01f74qr97', 'en', 1, 'https://ror.org/01f74qr97 Shree O.H. Nazar Ayurved College Shree Swami Atmanand Saraswati Ayurved Hospital'),
(64835, 'https://ror.org/017h4eq96', 'en', 1, 'https://ror.org/017h4eq96 RG Stone Urology & Laparoscopy Hospital ą¤†ą¤°ą¤œą„€ ą¤øą„ą¤Ÿą„‹ą¤Ø ą¤Æą„‚ą¤°ą„‹ą¤²ą„‰ą¤œą„€ और ą¤²ą„ˆą¤Ŗą„ą¤°ą„‹ą¤øą„ą¤•ą„‹ą¤Ŗą„€ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(64836, 'https://ror.org/031p8aq28', 'en', 1, 'https://ror.org/031p8aq28 Stavya Spine Hospital & Research Institute ą¤øą„ą¤¤ą¤¾ą¤²ą„ą¤Æ ą¤øą„ą¤Ŗą¤¾ą¤‡ą¤Ø ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(64837, 'https://ror.org/00bhvbg93', 'no_lang_code', 1, 'https://ror.org/00bhvbg93 Sir Ivan Stedeford Hospital ą®šą®°ąÆ ą®ą®µą®©ąÆ ą®øąÆą®ŸąÆ†ą®ŸąÆą®ŖąÆ‹ą®°ąÆą®Ÿ ą®¹ą®¾ą®øąÆą®Ŗą®æą®Ÿą®²ąÆ'),
(64838, 'https://ror.org/04dagd274', 'en', 1, 'https://ror.org/04dagd274 Subharti Medical College ą¤Øą„‡ą¤¤ą¤¾ą¤œą„€ ą¤øą„ą¤­ą¤¾ą¤· ą¤šą¤‚ą¤¦ą„ą¤°ą¤¾ ą¤¬ą„‹ą¤ø ą¤øą„ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(64839, 'https://ror.org/0154kj662', 'no_lang_code', 1, 'https://ror.org/0154kj662 VGM Gastro Centre'),
(64840, 'https://ror.org/05kt6fp70', 'no_lang_code', 1, 'https://ror.org/05kt6fp70 Sumana Hospital సుమానా ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(64841, 'https://ror.org/00r7x5x17', 'en', 1, 'https://ror.org/00r7x5x17 Sunshine Hospitals ą°øą°Øą± ą°·ą±ˆą°Øą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±ą°øą±'),
(64842, 'https://ror.org/049b8gm87', 'en', 1, 'https://ror.org/049b8gm87 Teerthanker Mahaveer Medical College & Research Centre ą¤¤ą„€ą¤°ą„ą¤„ą¤‚ą¤•ą¤° ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(64843, 'https://ror.org/026vx6939', 'no_lang_code', 1, 'https://ror.org/026vx6939 Tanvir Hospital ą°¤ą°Øą±ą°µą±€ą°°ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(64844, 'https://ror.org/010azga70', 'en', 1, 'https://ror.org/010azga70 Tezpur Medical College & Hospital'),
(64845, 'https://ror.org/01g4ecg56', 'no_lang_code', 1, 'https://ror.org/01g4ecg56 Sooriya Hospital ą®šąÆ‚ą®°ą®æą®Æą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(64846, 'https://ror.org/02at8py67', 'en', 1, 'https://ror.org/02at8py67 Sparsh Hospital'),
(64847, 'https://ror.org/03tc6sd86', 'en', 1, 'https://ror.org/03tc6sd86 Target Institute of Medical Education & Research ą¤Ÿą¤¾ą¤°ą„ą¤—ą„‡ą¤Ÿ ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤ą¤œą„‚ą¤•ą„‡ą¤¶ą¤Ø & ą¤°ą¤æą¤øą¤°ą„ą¤š'),
(64848, 'https://ror.org/00f7qfv03', 'en', 1, 'https://ror.org/00f7qfv03 Sujata Birla Hospital and Medical Research Center'),
(64849, 'https://ror.org/03t8e0d04', 'en', 1, 'https://ror.org/03t8e0d04 YMT Ayurvedic Medical College & Hospital. P.G.Institute'),
(64850, 'https://ror.org/001eqde88', 'en', 1, 'https://ror.org/001eqde88 Z.V.M.Unani Medical College & Hospital'),
(64851, 'https://ror.org/052bj9b74', 'en', 1, 'https://ror.org/052bj9b74 The Korean Ceramic Society ėŒ€ķ•œ ė„ģž ķ•™ķšŒ'),
(64852, 'https://ror.org/01xje0t51', 'en', 1, 'https://ror.org/01xje0t51 Dongak Art History Association ė™ģ•…ėÆøģˆ ģ‚¬ķ•™ķšŒ'),
(64853, 'https://ror.org/04kpxf456', 'en', 1, 'https://ror.org/04kpxf456 The Korean History Education Society ķ•œźµ­ģ‚¬ 교윔 ķ•™ķšŒ'),
(64854, 'https://ror.org/04vkyz392', 'en', 1, 'https://ror.org/04vkyz392 Hangzhou Special Equipment Inspection and Research Institute ę­å·žåø‚ē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(64855, 'https://ror.org/00rbnn565', 'en', 1, 'https://ror.org/00rbnn565 Liaoning General Aviation Research Institute č¾½å®é€šē”ØčˆŖē©ŗē ”ē©¶é™¢'),
(64856, 'https://ror.org/055be5309', 'en', 1, 'https://ror.org/055be5309 Enshi Tujia and Miao Autonomous Prefecture Academy of Agricultural Sciences ę©ę–½åœŸå®¶ę—č‹—ę—č‡Ŗę²»å·žå†œäøšē§‘å­¦é™¢'),
(64857, 'https://ror.org/00nrddj33', 'en', 1, 'https://ror.org/00nrddj33 Luohe Academy of Agricultural Sciences ę²³å—ēœę¼Æę²³åø‚å†œäøšē§‘å­¦ē ”ē©¶ę‰€'),
(64858, 'https://ror.org/023kz8918', 'en', 1, 'https://ror.org/023kz8918 Ningbo Product Quality Supervision and Inspection Institute å®ę³¢äŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒē ”ē©¶é™¢'),
(64859, 'https://ror.org/03tb73372', 'en', 1, 'https://ror.org/03tb73372 Chongqing Academy of Forestry é‡åŗ†ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(64860, 'https://ror.org/01jzaby46', 'en', 1, 'https://ror.org/01jzaby46 Chongqing Three Gorges Academy of Agricultural Sciences é‡åŗ†äø‰å³”å†œäøšē§‘å­¦é™¢'),
(64861, 'https://ror.org/05e189971', 'en', 1, 'https://ror.org/05e189971 Heilongjiang Vocational College of Art é»‘é¾™ę±Ÿč‰ŗęœÆčŒäøšå­¦é™¢'),
(64862, 'https://ror.org/02a0rnh86', 'en', 1, 'https://ror.org/02a0rnh86 Qingdao Academy of Intelligent Industries é’å²›ę™ŗčƒ½äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(64863, 'https://ror.org/048wwkz81', 'en', 1, 'https://ror.org/048wwkz81 Henan Provincial Academy of Building Research ę²³å—ēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢ęœ‰'),
(64864, 'https://ror.org/04aa0zm65', 'en', 1, 'https://ror.org/04aa0zm65 Cloud Computing Center äŗ‘č®”ē®—äø­åæƒ'),
(64865, 'https://ror.org/051kc3x78', 'en', 1, 'https://ror.org/051kc3x78 Heze Academy of Agricultural Sciences čę³½å†œē§‘é™¢'),
(64866, 'https://ror.org/05wad7k45', 'en', 1, 'https://ror.org/05wad7k45 Sichuan Academy of Traditional Chinese Medicine å››å·ēœäø­åŒ»čÆē§‘å­¦é™¢'),
(64867, 'https://ror.org/0054tdg51', 'en', 1, 'https://ror.org/0054tdg51 Shandong Academy of Pesticide Science å±±äøœēœå†œčÆē§‘å­¦ē ”ē©¶é™¢'),
(64868, 'https://ror.org/04b3c9h40', 'no_lang_code', 1, 'https://ror.org/04b3c9h40 Dalian Academy of Reconnaissance and Mapping (China) å¤§čæžå‹˜ęµ‹ęµ‹ē»˜ē ”ē©¶é™¢'),
(64869, 'https://ror.org/04n3x5g15', 'en', 1, 'https://ror.org/04n3x5g15 Huzhou Academy of Agricultural Sciences ę¹–å·žå†œäøšē§‘å­¦'),
(64870, 'https://ror.org/01j8cv720', 'no_lang_code', 1, 'https://ror.org/01j8cv720 Changzhou Academy of Intelli-Ag Equipment (China) åøøå·žę™ŗčƒ½åŒ–č®¾å¤‡ē ”ē©¶é™¢'),
(64871, 'https://ror.org/0148z7881', 'no_lang_code', 1, 'https://ror.org/0148z7881 Chengdu Guoke Haibo Information Technology (China) ęˆéƒ½å›½ē§‘ęµ·åšäæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(64872, 'https://ror.org/021yk7r24', 'no_lang_code', 1, 'https://ror.org/021yk7r24 Shanghai Textile Holdings (China) äøŠęµ·ēŗŗē»‡ęŽ§č‚”é›†å›¢å…¬åø'),
(64873, 'https://ror.org/04ty5pz05', 'en', 1, 'https://ror.org/04ty5pz05 Jiangsu Provincial Academy of Forestry Science and Management ę±Ÿč‹ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(64874, 'https://ror.org/04wtt0690', 'no_lang_code', 1, 'https://ror.org/04wtt0690 Suzhou Institute of Building Science Group (China) č‹å·žåø‚å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(64875, 'https://ror.org/01j71j305', 'en', 1, 'https://ror.org/01j71j305 Tianjin TDBH Naval Architecture & Ocean Engineering Academy å¤©ę“„å¤©å¤§ę»Øęµ·čˆ¹čˆ¶äøŽęµ·ę“‹å·„ēØ‹ē ”ē©¶é™¢'),
(64876, 'https://ror.org/05s6v6872', 'en', 1, 'https://ror.org/05s6v6872 Chengdu Academy of Agriculture and Forestry Sciences ęˆéƒ½åø‚å†œęž—ē§‘å­¦é™¢'),
(64877, 'https://ror.org/01hahzp71', 'en', 1, 'https://ror.org/01hahzp71 Shanxi Academy of Forestry å±±č„æēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(64878, 'https://ror.org/05a8e5154', 'en', 1, 'https://ror.org/05a8e5154 Tianjin Academy of Environmental Sciences å¤©ę“„åø‚ēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶é™¢'),
(64879, 'https://ror.org/01ydbqk02', 'no_lang_code', 1, 'https://ror.org/01ydbqk02 Fujian Academy of Building Research (China) ē¦å»ŗēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(64880, 'https://ror.org/05sgs4n22', 'en', 1, 'https://ror.org/05sgs4n22 Jilin Academy of Agricultural Machinery å‰ęž—ēœå†œäøšęœŗę¢°ē ”ē©¶é™¢'),
(64881, 'https://ror.org/00mpsrh50', 'en', 1, 'https://ror.org/00mpsrh50 Zhangjiakou Academy of Agricultural Sciences å¼ å®¶å£åø‚å†œäøšē§‘å­¦é™¢å†œäøš'),
(64882, 'https://ror.org/001xr1669', 'en', 1, 'https://ror.org/001xr1669 Gansu Provincial Academy of Membrane Science and Technology ē”˜č‚ƒēœč†œē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(64883, 'https://ror.org/04c99ac72', 'no_lang_code', 1, 'https://ror.org/04c99ac72 Xi''an UniIC Semiconductors (China)'),
(64884, 'https://ror.org/03n9xd583', 'en', 1, 'https://ror.org/03n9xd583 Xinjiang Academy of Forestry ꜉ ę–°ē–†ęž—äøšē§‘å­¦é™¢'),
(64885, 'https://ror.org/032eb5z33', 'en', 1, 'https://ror.org/032eb5z33 Guizhou Academy of Testing & Analysis č“µå·žēœåˆ†ęžęµ‹čÆ•ē ”ē©¶é™¢'),
(64886, 'https://ror.org/03asfqn77', 'en', 1, 'https://ror.org/03asfqn77 Zhoukou City Academy of Agricultural Sciences å‘Øå£åø‚å†œäøšē§‘å­¦é™¢'),
(64887, 'https://ror.org/048yeyk79', 'no_lang_code', 1, 'https://ror.org/048yeyk79 Guzhou Transportation Planning Survey & Design Academe (China) č“µå·žäŗ¤é€šč§„åˆ’å‹˜åÆŸč®¾č®”é™¢ęœ‰é™å…¬åø'),
(64888, 'https://ror.org/01s7tq402', 'en', 1, 'https://ror.org/01s7tq402 Hainan Provincial Academy of Marine Fisheries and Aquaculture ęµ·å—ēœęµ·ę“‹äøŽęø”äøšē§‘å­¦é™¢'),
(64889, 'https://ror.org/05ntybz92', 'en', 1, 'https://ror.org/05ntybz92 Guangdong Provincial Academy of Building Research Group å¹æäøœēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢é›†å›¢'),
(64890, 'https://ror.org/012pz7r49', 'en', 1, 'https://ror.org/012pz7r49 Guangzhou Academy of Special Equipment Inspection and Testing å¹æå·žē‰¹ē§č®¾å¤‡ę£€ęµ‹ęŠ€ęœÆē ”ē©¶é™¢'),
(64891, 'https://ror.org/04ynn1b95', 'en', 1, 'https://ror.org/04ynn1b95 Astronomy and Space'),
(64892, 'https://ror.org/04jr4g753', 'en', 1, 'https://ror.org/04jr4g753 Osong Medical Innovation Foundation ģ˜¤ģ†”ģ²Øė‹Øģ˜ė£Œģ‚°ģ—…ģ§„ķ„ģž¬ė‹Ø'),
(64893, 'https://ror.org/01yj6y952', 'en', 1, 'https://ror.org/01yj6y952 Korean Society of Basic Design & Art ķ•œźµ­ ė””ģžģø 기쓈 ķ•™ķšŒ'),
(64894, 'https://ror.org/056q45x47', 'en', 1, 'https://ror.org/056q45x47 Korea Bio Polytechnic College ķ•œźµ­ķ“ė¦¬ķ…ė°”ģ“ģ˜¤ėŒ€ķ•™'),
(64895, 'https://ror.org/032dmkq14', 'en', 1, 'https://ror.org/032dmkq14 The Korean Society of Christian Religious Education ķ•œźµ­ źø°ė…źµ 교윔 ķ•™ķšŒ'),
(64896, 'https://ror.org/03kcfmk89', 'en', 1, 'https://ror.org/03kcfmk89 Suzhou Academy of Agricultural Sciences č‹å·žåø‚å†œäøšē§‘å­¦é™¢'),
(64897, 'https://ror.org/00ckc8f91', 'no_lang_code', 1, 'https://ror.org/00ckc8f91 Mamata General Hospital మమత ą°œą°Øą°°ą°²ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(64898, 'https://ror.org/02fqjqj75', 'fr', 1, 'https://ror.org/02fqjqj75 HƓpital Clinique Claude-Bernard'),
(64899, 'https://ror.org/00tem2640', 'en', 1, 'https://ror.org/00tem2640 Hyattsville Community Development Corporation'),
(64900, 'https://ror.org/00dka4r75', 'en', 1, 'https://ror.org/00dka4r75 Zhejiang Academy of Building Research & Design ęµ™ę±Ÿēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(64901, 'https://ror.org/056thpa20', 'en', 1, 'https://ror.org/056thpa20 International Drug Development'),
(64902, 'https://ror.org/02mt26r85', 'en', 1, 'https://ror.org/02mt26r85 Transportation Research Board'),
(64903, 'https://ror.org/01w7h4t60', 'en', 1, 'https://ror.org/01w7h4t60 Royal Hospital for Sick Children'),
(64904, 'https://ror.org/031ebne21', 'en', 1, 'https://ror.org/031ebne21 National Measurement Laboratory'),
(64905, 'https://ror.org/05xx7en86', 'en', 1, 'https://ror.org/05xx7en86 Division of Fossil Fuels Energy'),
(64906, 'https://ror.org/006h3y937', 'en', 1, 'https://ror.org/006h3y937 MRA Group'),
(64907, 'https://ror.org/05n6zrm60', 'en', 1, 'https://ror.org/05n6zrm60 SWOG Cancer Research Network'),
(64908, 'https://ror.org/04c54tg88', 'en', 1, 'https://ror.org/04c54tg88 IBA Lifesciences'),
(64909, 'https://ror.org/01xhnny36', 'en', 1, 'https://ror.org/01xhnny36 Korean German Literature Society ķ•œźµ­ ė…ģ¼ ė¬øķ•™ķšŒ'),
(64910, 'https://ror.org/05sn2dp47', 'en', 1, 'https://ror.org/05sn2dp47 The Society of Korean Language And Literature ģš°ė¦¬ģ–“ė¬øķ•™ķšŒ'),
(64911, 'https://ror.org/05a1zjh88', 'en', 1, 'https://ror.org/05a1zjh88 Korean Literature Research Society ķ•œźµ­ė¬øķ•™ģ—°źµ¬ķ•™ķšŒ'),
(64912, 'https://ror.org/03cv88167', 'en', 1, 'https://ror.org/03cv88167 Korea Social Science Data Archive ķ•œźµ­ģ‚¬ķšŒź³¼ķ•™ģžė£Œģ›'),
(64913, 'https://ror.org/056v3aw45', 'en', 1, 'https://ror.org/056v3aw45 Korean Economic and Business Association ķ•œźµ­ź²½ģ œķ†µģƒķ•™ķšŒ'),
(64914, 'https://ror.org/01ngg1n70', 'en', 1, 'https://ror.org/01ngg1n70 Korean Academy of International Business ķ•œźµ­źµ­ģ œź²½ģ˜ķ•™ķšŒ'),
(64915, 'https://ror.org/0528jzf19', 'en', 1, 'https://ror.org/0528jzf19 Korean Association of French Language and Literature ķ•œźµ­ ė¶ˆģ–“ ķ•™ķšŒ'),
(64916, 'https://ror.org/02ze37p54', 'en', 1, 'https://ror.org/02ze37p54 Chosun College of Science & Technology ģ”°ģ„ ģ“ź³µėŒ€ķ•™źµ'),
(64917, 'https://ror.org/00cjcx491', 'en', 1, 'https://ror.org/00cjcx491 Korean Academic Society of Taxation 씰세 ķ•™ķšŒ'),
(64918, 'https://ror.org/04n5pyx79', 'en', 1, 'https://ror.org/04n5pyx79 Korean Elementary Moral Education Society ķ•œźµ­ģ“ˆė“±ė„ė•źµģœ”ķ•™ķšŒ'),
(64919, 'https://ror.org/02p50nh51', 'en', 1, 'https://ror.org/02p50nh51 Korea-China Humanities Society ķ•œģ¤‘ģøė¬øķ•™ķšŒ'),
(64920, 'https://ror.org/0557n0d79', 'en', 1, 'https://ror.org/0557n0d79 The Association For Korean Law Of Property ķ•œźµ­ ė²•ģƒ ķ˜‘ķšŒ'),
(64921, 'https://ror.org/01wx5br04', 'en', 1, 'https://ror.org/01wx5br04 Korean Strategic Marketing Association ķ•œźµ­ ģ „ėžµ ė§ˆģ¼€ķŒ… ķ˜‘ķšŒ'),
(64922, 'https://ror.org/00t8fsx92', 'en', 1, 'https://ror.org/00t8fsx92 Korea Economic Development Institute ķ•œźµ­ź²½ģ œė°œģ „ķ•™ķšŒ'),
(64923, 'https://ror.org/04a44dr33', 'en', 1, 'https://ror.org/04a44dr33 Korean Society of Educational Technology ķ•œźµ­źµģœ”ź³µķ•™ķšŒ'),
(64924, 'https://ror.org/01h3gvb78', 'en', 1, 'https://ror.org/01h3gvb78 Korean Society for History of Education ķ•œźµ­źµģœ”ģ‚¬ķ•™ķšŒ'),
(64925, 'https://ror.org/02d5yh638', 'en', 1, 'https://ror.org/02d5yh638 Korean Association for Public Security Administration ķ•œźµ­ ź³µģ•ˆ ꓀리 ķ˜‘ķšŒ'),
(64926, 'https://ror.org/03t8yea54', 'en', 1, 'https://ror.org/03t8yea54 The Korean-German Society for the Educational Studies ķ•œė… 교윔 ķ•™ķšŒ'),
(64927, 'https://ror.org/03g45bs43', 'en', 1, 'https://ror.org/03g45bs43 The History of Korean Society ėŒ€ģ¤‘ģ„œģ‚¬ķ•™ķšŒ'),
(64928, 'https://ror.org/036xtjy06', 'en', 1, 'https://ror.org/036xtjy06 Shanghai Xiandai Architectural Design äøŠęµ·ēŽ°ä»£å»ŗē­‘č®¾č®”'),
(64929, 'https://ror.org/02wn4vf74', 'en', 1, 'https://ror.org/02wn4vf74 Korean Association for Political Economy ķ•œźµ­ģ‚¬ķšŒź²½ģ œķ•™ķšŒ'),
(64930, 'https://ror.org/029ssav87', 'en', 1, 'https://ror.org/029ssav87 DSMS Group of Institutions ą¦¦ą§ą¦°ą§ą¦—ą¦¾ą¦Ŗą§ą¦° ą¦øą§‹ą¦øą¦¾ą¦‡ą¦Ÿą¦æ অফ ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦øą¦¾ą¦‡ą¦Øą§ą¦ø'),
(64931, 'https://ror.org/01qvc7p18', 'en', 1, 'https://ror.org/01qvc7p18 The Japanese Language Literature Association of Korea ķ•œźµ­ģ¼ė³øģ–“ė¬øķ•™ķšŒ'),
(64932, 'https://ror.org/01w2py151', 'en', 1, 'https://ror.org/01w2py151 North Ossetian State Medical Academy Деверо-ŠžŃŠµŃ‚ŠøŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(64933, 'https://ror.org/01pe06664', 'no_lang_code', 1, 'https://ror.org/01pe06664 Hunan Yonker Investment Group (China) ę°øęø…ēŽÆå¢ƒē§‘ęŠ€äŗ§äøšé›†å›¢ęœ‰é™å…¬åø'),
(64934, 'https://ror.org/04vrkaw11', 'en', 1, 'https://ror.org/04vrkaw11 Jiangxi Institute of Red Soil ę±Ÿč„æēœēŗ¢å£¤ē ”ē©¶ę‰€'),
(64935, 'https://ror.org/006qwan38', 'en', 1, 'https://ror.org/006qwan38 Guangdong Work Injury Rehabilitation Hospital å¹æäøœēœå·„ä¼¤åŗ·å¤åŒ»é™¢'),
(64936, 'https://ror.org/02dnmrq53', 'en', 1, 'https://ror.org/02dnmrq53 Jiangxi Provincial Institute of Water Sciences ę±Ÿč„æēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(64937, 'https://ror.org/05ajbr617', 'en', 1, 'https://ror.org/05ajbr617 Zhejiang Fashion Institute of Technology ęµ™ę±Ÿēŗŗē»‡ęœč£…čŒäøšęŠ€ęœÆå­¦é™¢'),
(64938, 'https://ror.org/009j0tv77', 'en', 1, 'https://ror.org/009j0tv77 Guizhou Center for Disease Control and Prevention č“µå·žēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(64939, 'https://ror.org/0369eb468', 'en', 1, 'https://ror.org/0369eb468 Hainan Meteorology Administration ęµ·å—ēœę°”č±”å±€'),
(64940, 'https://ror.org/03xgzn792', 'en', 1, 'https://ror.org/03xgzn792 Beijing Polytechnic åŒ—äŗ¬ē”µå­ē§‘ęŠ€čŒäøšå­¦é™¢'),
(64941, 'https://ror.org/03654w628', 'en', 1, 'https://ror.org/03654w628 Shanghai Research Institute of Sports Science äøŠęµ·ä½“č‚²ē§‘å­¦ē ”ē©¶ę‰€'),
(64942, 'https://ror.org/041tqx430', 'en', 1, 'https://ror.org/041tqx430 Ningbo College of Health Sciences å®ę³¢å«ē”ŸčŒäøšęŠ€ęœÆå­¦é™¢'),
(64943, 'https://ror.org/011t9p927', 'en', 1, 'https://ror.org/011t9p927 China Internet Network Information Center äø­å›½äŗ’č”ē½‘ē»œäæ”ęÆäø­åæƒ'),
(64944, 'https://ror.org/00c2k1j60', 'en', 1, 'https://ror.org/00c2k1j60 Chongqing Bureau of Geology and Minerals Exploration é‡åŗ†åø‚åœ°č“ØēŸæäŗ§å‹˜ęŸ„å¼€å‘å±€'),
(64945, 'https://ror.org/03md1xx44', 'en', 1, 'https://ror.org/03md1xx44 Geological Exploration Technology Institute of Jiangsu Province åœ°č“Øå‹˜ęŸ„ęŠ€ęœÆé™¢'),
(64946, 'https://ror.org/034wjng68', 'en', 1, 'https://ror.org/034wjng68 Nuclear and Radiation Safety Center ę øäøŽč¾å°„å®‰å…Øäø­åæƒ'),
(64947, 'https://ror.org/05v7z3142', 'en', 1, 'https://ror.org/05v7z3142 Jiangmen Polytechnic ę±Ÿé—ØčŒäøšęŠ€ęœÆå­¦é™¢'),
(64948, 'https://ror.org/00hgh4525', 'no_lang_code', 1, 'https://ror.org/00hgh4525 Hetao College 河儗学院'),
(64949, 'https://ror.org/047rxfg53', 'en', 1, 'https://ror.org/047rxfg53 Tianjin Stomatological Hospital å¤©ę“„åø‚å£č…”åŒ»é™¢'),
(64950, 'https://ror.org/02w1tnr53', 'en', 1, 'https://ror.org/02w1tnr53 Scientific Institute of Pearl River Water Resources Protection ē ę±Ÿę°“čµ„ęŗäæęŠ¤ē§‘å­¦ē ”ē©¶ę‰€'),
(64951, 'https://ror.org/04m6cjv19', 'en', 1, 'https://ror.org/04m6cjv19 Development Research Center ę°“åˆ©éƒØå‘å±•ē ”ē©¶äø­åæƒ'),
(64952, 'https://ror.org/009qwp447', 'en', 1, 'https://ror.org/009qwp447 Suihua University ē»„åŒ–å­¦é™¢'),
(64953, 'https://ror.org/04js16v38', 'en', 1, 'https://ror.org/04js16v38 Hubei Academy of Environmental Sciences ę¹–åŒ—ēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(64954, 'https://ror.org/0146vv083', 'en', 1, 'https://ror.org/0146vv083 Shaanxi Xueqian Normal University'),
(64955, 'https://ror.org/05d5kcc69', 'en', 1, 'https://ror.org/05d5kcc69 Jiangxi College of Applied Technology ę±Ÿč„æåŗ”ē”ØęŠ€ęœÆčŒäøšå­¦é™¢'),
(64956, 'https://ror.org/03fbzmy04', 'no_lang_code', 1, 'https://ror.org/03fbzmy04 22q11 Ireland'),
(64957, 'https://ror.org/02ky5cy15', 'no_lang_code', 1, 'https://ror.org/02ky5cy15 Nuritas (Ireland)'),
(64958, 'https://ror.org/019k9ma82', 'en', 1, 'https://ror.org/019k9ma82 Hunan Research Academy of Environmental Sciences ę¹–å—ēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶é™¢'),
(64959, 'https://ror.org/030nw5b81', 'en', 1, 'https://ror.org/030nw5b81 ActionAid Ireland'),
(64960, 'https://ror.org/01bzgqf33', 'en', 1, 'https://ror.org/01bzgqf33 Oifig na nOibreacha PoiblĆ­ The Office of Public Works'),
(64961, 'https://ror.org/00cp1jc17', 'en', 1, 'https://ror.org/00cp1jc17 Java Clinical'),
(64962, 'https://ror.org/046yjt975', 'en', 1, 'https://ror.org/046yjt975 Focus Ireland'),
(64963, 'https://ror.org/00hr37w40', 'no_lang_code', 1, 'https://ror.org/00hr37w40 Kelada Pharmachem (Ireland)'),
(64964, 'https://ror.org/056k8rb32', 'no_lang_code', 1, 'https://ror.org/056k8rb32 OGT Amenity (Ireland)'),
(64965, 'https://ror.org/02wv4rx62', 'ga', 1, 'https://ror.org/02wv4rx62 Foróige'),
(64966, 'https://ror.org/01xqtwj78', 'no_lang_code', 1, 'https://ror.org/01xqtwj78 Agilent Technologies (Ireland)'),
(64967, 'https://ror.org/04vvqct18', 'en', 1, 'https://ror.org/04vvqct18 Cancer Clinical Research Trust'),
(64968, 'https://ror.org/059vazt48', 'no_lang_code', 1, 'https://ror.org/059vazt48 Halo Labs (United States)'),
(64969, 'https://ror.org/05g7ye804', 'en', 1, 'https://ror.org/05g7ye804 Fota Wildlife Park'),
(64970, 'https://ror.org/05r85wx35', 'no_lang_code', 1, 'https://ror.org/05r85wx35 Optrace (Ireland)'),
(64971, 'https://ror.org/021393933', 'en', 1, 'https://ror.org/021393933 Airmid Healthgroup'),
(64972, 'https://ror.org/01et03p29', 'en', 1, 'https://ror.org/01et03p29 Kerry Education and Training Board'),
(64973, 'https://ror.org/03qfpb645', 'en', 1, 'https://ror.org/03qfpb645 Cloyne Diocesan Youth Services'),
(64974, 'https://ror.org/03hebkk07', 'ga', 1, 'https://ror.org/03hebkk07 Ɓiseanna Tacaƭochta'),
(64975, 'https://ror.org/001xv6k34', 'no_lang_code', 1, 'https://ror.org/001xv6k34 Oran Pre-Cast (Ireland)'),
(64976, 'https://ror.org/02vdn6c95', 'en', 1, 'https://ror.org/02vdn6c95 Cluid Housing'),
(64977, 'https://ror.org/00j9g7s25', 'en', 1, 'https://ror.org/00j9g7s25 Kimmage Development Studies Centre'),
(64978, 'https://ror.org/02y20t868', 'no_lang_code', 1, 'https://ror.org/02y20t868 Kinesis Health Technologies (Ireland)'),
(64979, 'https://ror.org/02v8tah71', 'ga', 1, 'https://ror.org/02v8tah71 AisƩirƭ'),
(64980, 'https://ror.org/0113k2j28', 'no_lang_code', 1, 'https://ror.org/0113k2j28 Origin Enterprises (Ireland)'),
(64981, 'https://ror.org/014mmeq48', 'en', 1, 'https://ror.org/014mmeq48 Galway One World Centre'),
(64982, 'https://ror.org/034qbvs38', 'no_lang_code', 1, 'https://ror.org/034qbvs38 Kora Healthcare (Ireland)'),
(64983, 'https://ror.org/0072bx170', 'no_lang_code', 1, 'https://ror.org/0072bx170 Compact Imaging (United States)'),
(64984, 'https://ror.org/00kh8jx85', 'en', 1, 'https://ror.org/00kh8jx85 Learning Hub Limerick'),
(64985, 'https://ror.org/04sgnw557', 'no_lang_code', 1, 'https://ror.org/04sgnw557 Novartis (Ireland)'),
(64986, 'https://ror.org/01ghdd484', 'no_lang_code', 1, 'https://ror.org/01ghdd484 Ervia (Ireland)'),
(64987, 'https://ror.org/03jfezp45', 'no_lang_code', 1, 'https://ror.org/03jfezp45 Parameter Space (Ireland)'),
(64988, 'https://ror.org/03wcmj821', 'no_lang_code', 1, 'https://ror.org/03wcmj821 Lola Group (United Kingdom)'),
(64989, 'https://ror.org/008m7sk62', 'en', 1, 'https://ror.org/008m7sk62 Pavee Point'),
(64990, 'https://ror.org/04ehmzv20', 'en', 1, 'https://ror.org/04ehmzv20 COPE Galway'),
(64991, 'https://ror.org/04dnx8c79', 'en', 1, 'https://ror.org/04dnx8c79 American Council on Exercise'),
(64992, 'https://ror.org/03c5c0a39', 'no_lang_code', 1, 'https://ror.org/03c5c0a39 Genomics Medicine (Ireland)'),
(64993, 'https://ror.org/022ppya26', 'en', 1, 'https://ror.org/022ppya26 Cork Alliance Centre'),
(64994, 'https://ror.org/04z77bq11', 'no_lang_code', 1, 'https://ror.org/04z77bq11 Pieta House'),
(64995, 'https://ror.org/05bxe2n40', 'no_lang_code', 1, 'https://ror.org/05bxe2n40 Pilot Photonics (Ireland)'),
(64996, 'https://ror.org/03agg4249', 'en', 1, 'https://ror.org/03agg4249 Amnesty International Ireland'),
(64997, 'https://ror.org/05jnpxa89', 'no_lang_code', 1, 'https://ror.org/05jnpxa89 AnaBio Technologies (Ireland)'),
(64998, 'https://ror.org/05582kr93', 'no_lang_code', 1, 'https://ror.org/05582kr93 Analog Devices (Ireland)'),
(64999, 'https://ror.org/00xkt2t97', 'en', 1, 'https://ror.org/00xkt2t97 Animal Health Ireland'),
(65000, 'https://ror.org/03rc6pz65', 'ga', 1, 'https://ror.org/03rc6pz65 CroĆ­'),
(65001, 'https://ror.org/0522zz544', 'en', 1, 'https://ror.org/0522zz544 Gorta Self Help Africa'),
(65002, 'https://ror.org/02ngyjm59', 'en', 1, 'https://ror.org/02ngyjm59 Marine Renewables Industry Association'),
(65003, 'https://ror.org/02qd8zg55', 'no_lang_code', 1, 'https://ror.org/02qd8zg55 McCormick Advanced Marcomm Services (Ireland)'),
(65004, 'https://ror.org/014yvnw28', 'en', 1, 'https://ror.org/014yvnw28 Project Arts Centre'),
(65005, 'https://ror.org/03cterj73', 'no_lang_code', 1, 'https://ror.org/03cterj73 Aquila Bioscience (Ireland)'),
(65006, 'https://ror.org/0564cmz62', 'no_lang_code', 1, 'https://ror.org/0564cmz62 MCO (Ireland)'),
(65007, 'https://ror.org/0268c6h94', 'en', 1, 'https://ror.org/0268c6h94 Medfit Proactive Healthcare'),
(65008, 'https://ror.org/03h9jqz26', 'en', 1, 'https://ror.org/03h9jqz26 Free Legal Advice Centres'),
(65009, 'https://ror.org/046zes997', 'en', 1, 'https://ror.org/046zes997 Men Overcoming Violence'),
(65010, 'https://ror.org/00z33z605', 'no_lang_code', 1, 'https://ror.org/00z33z605 Arthritis Ireland'),
(65011, 'https://ror.org/01kpcqp30', 'en', 1, 'https://ror.org/01kpcqp30 Men’s Development Network'),
(65012, 'https://ror.org/016kjnf22', 'no_lang_code', 1, 'https://ror.org/016kjnf22 AstroTec Holding (Netherlands)'),
(65013, 'https://ror.org/0135rsr71', 'en', 1, 'https://ror.org/0135rsr71 MeabhairshlĆ”inte na hƉireann Mental Health Ireland'),
(65014, 'https://ror.org/022m1me97', 'en', 1, 'https://ror.org/022m1me97 Merchants Quay Ireland'),
(65015, 'https://ror.org/035g2m198', 'no_lang_code', 1, 'https://ror.org/035g2m198 ƉireComposites (Ireland)'),
(65016, 'https://ror.org/04bv4nc40', 'no_lang_code', 1, 'https://ror.org/04bv4nc40 Q4 Public Relations (Ireland)'),
(65017, 'https://ror.org/015nzpb92', 'no_lang_code', 1, 'https://ror.org/015nzpb92 Baldoyle Forum'),
(65018, 'https://ror.org/01qs6m282', 'no_lang_code', 1, 'https://ror.org/01qs6m282 Mergon (Ireland)'),
(65019, 'https://ror.org/014nbfa48', 'en', 1, 'https://ror.org/014nbfa48 DearbhĆŗ CĆ”ilĆ­ochta agus CĆ”ilĆ­ochtaĆ­ Ɖireann Quality and Qualifications Ireland'),
(65020, 'https://ror.org/05cc0x492', 'no_lang_code', 1, 'https://ror.org/05cc0x492 Hewlett Packard Enterprise (Ireland)'),
(65021, 'https://ror.org/038nz7z72', 'en', 1, 'https://ror.org/038nz7z72 Ballymun Job Centre'),
(65022, 'https://ror.org/03884sd33', 'en', 1, 'https://ror.org/03884sd33 Rape Crisis Network Ireland'),
(65023, 'https://ror.org/01wn5z925', 'en', 1, 'https://ror.org/01wn5z925 Horse Sport Ireland'),
(65024, 'https://ror.org/05eg7b102', 'no_lang_code', 1, 'https://ror.org/05eg7b102 BeoCare (United States)'),
(65025, 'https://ror.org/056wwd598', 'ga', 1, 'https://ror.org/056wwd598 DeafHear'),
(65026, 'https://ror.org/04sbmz064', 'no_lang_code', 1, 'https://ror.org/04sbmz064 BH Consulting (Ireland)'),
(65027, 'https://ror.org/03p928666', 'no_lang_code', 1, 'https://ror.org/03p928666 RedT Energy Storage (United Kingdom)'),
(65028, 'https://ror.org/01m708z37', 'no_lang_code', 1, 'https://ror.org/01m708z37 Bio-Marine Ingredients (Ireland)'),
(65029, 'https://ror.org/0146h2h75', 'no_lang_code', 1, 'https://ror.org/0146h2h75 IBM (Ireland)'),
(65030, 'https://ror.org/03r0hka23', 'no_lang_code', 1, 'https://ror.org/03r0hka23 RediCare (Ireland)'),
(65031, 'https://ror.org/048rar163', 'no_lang_code', 1, 'https://ror.org/048rar163 Reprodoc (Ireland)'),
(65032, 'https://ror.org/04a21y403', 'no_lang_code', 1, 'https://ror.org/04a21y403 Irish Home Energy Rating Energy Services (Ireland)'),
(65033, 'https://ror.org/05qcvps09', 'en', 1, 'https://ror.org/05qcvps09 Respond Housing Association'),
(65034, 'https://ror.org/03jnm8t41', 'no_lang_code', 1, 'https://ror.org/03jnm8t41 Alltech (Ireland)'),
(65035, 'https://ror.org/0304ps964', 'en', 1, 'https://ror.org/0304ps964 Dermot Foley Landscape Architects (Ireland)'),
(65036, 'https://ror.org/0152gf261', 'no_lang_code', 1, 'https://ror.org/0152gf261 Roche (Ireland)'),
(65037, 'https://ror.org/04bc14p57', 'no_lang_code', 1, 'https://ror.org/04bc14p57 Eurofins (Ireland)'),
(65038, 'https://ror.org/05q7ass71', 'en', 1, 'https://ror.org/05q7ass71 Immigrant Council of Ireland'),
(65039, 'https://ror.org/02e58j402', 'no_lang_code', 1, 'https://ror.org/02e58j402 Bioseutica (Netherlands)'),
(65040, 'https://ror.org/02rkpd451', 'en', 1, 'https://ror.org/02rkpd451 Saoirse Foundation'),
(65041, 'https://ror.org/04b0d8j03', 'en', 1, 'https://ror.org/04b0d8j03 Boardmatch'),
(65042, 'https://ror.org/01jz1e142', 'en', 1, 'https://ror.org/01jz1e142 Northwest Institute of Eco-Environment and Resources äø­å›½ē§‘å­¦é™¢č„æåŒ—ē”Ÿę€ēŽÆå¢ƒčµ„ęŗē ”ē©¶é™¢'),
(65043, 'https://ror.org/0506qpg95', 'no_lang_code', 1, 'https://ror.org/0506qpg95 Impedans (Ireland)'),
(65044, 'https://ror.org/005n8c828', 'en', 1, 'https://ror.org/005n8c828 Science Gallery International'),
(65045, 'https://ror.org/01cm9h109', 'en', 1, 'https://ror.org/01cm9h109 Disability Federation of Ireland'),
(65046, 'https://ror.org/01g34pr56', 'en', 1, 'https://ror.org/01g34pr56 Inclusion Ireland'),
(65047, 'https://ror.org/022zaft65', 'ga', 1, 'https://ror.org/022zaft65 Doras LuimnĆ­'),
(65048, 'https://ror.org/05k5h6g73', 'no_lang_code', 1, 'https://ror.org/05k5h6g73 Bodywhys'),
(65049, 'https://ror.org/00mzhwb11', 'no_lang_code', 1, 'https://ror.org/00mzhwb11 Ingersoll Rand (Ireland)'),
(65050, 'https://ror.org/04mrd1117', 'no_lang_code', 1, 'https://ror.org/04mrd1117 ServusNet Informatics (Ireland)'),
(65051, 'https://ror.org/02wnznw20', 'no_lang_code', 1, 'https://ror.org/02wnznw20 Boliden Tara Mines (Ireland)'),
(65052, 'https://ror.org/0394d5w22', 'no_lang_code', 1, 'https://ror.org/0394d5w22 SMA Magnetics (Poland)'),
(65053, 'https://ror.org/02kyk8452', 'en', 1, 'https://ror.org/02kyk8452 Shine Center for Autism'),
(65054, 'https://ror.org/05n083m46', 'no_lang_code', 1, 'https://ror.org/05n083m46 Innovation Zed (Ireland)'),
(65055, 'https://ror.org/01akqkg08', 'no_lang_code', 1, 'https://ror.org/01akqkg08 BrainWaveBank (United Kingdom)'),
(65056, 'https://ror.org/04gs82x94', 'no_lang_code', 1, 'https://ror.org/04gs82x94 Brandon Bioscience (Ireland)'),
(65057, 'https://ror.org/04z4hje09', 'en', 1, 'https://ror.org/04z4hje09 Early Childhood Ireland'),
(65058, 'https://ror.org/05v9der98', 'no_lang_code', 1, 'https://ror.org/05v9der98 Bridge Interpreting (Ireland)'),
(65059, 'https://ror.org/055h6f484', 'no_lang_code', 1, 'https://ror.org/055h6f484 Tekno Surgical (Ireland)'),
(65060, 'https://ror.org/0055bsh22', 'no_lang_code', 1, 'https://ror.org/0055bsh22 Burrenbeo Trust'),
(65061, 'https://ror.org/05hatgd07', 'no_lang_code', 1, 'https://ror.org/05hatgd07 Smartbay Ireland'),
(65062, 'https://ror.org/04b1e4w55', 'en', 1, 'https://ror.org/04b1e4w55 Business to Arts'),
(65063, 'https://ror.org/039ac0z09', 'en', 1, 'https://ror.org/039ac0z09 Social Justice Ireland'),
(65064, 'https://ror.org/049r2ed34', 'en', 1, 'https://ror.org/049r2ed34 Swim Ireland'),
(65065, 'https://ror.org/00cefgj13', 'no_lang_code', 1, 'https://ror.org/00cefgj13 Caredoc'),
(65066, 'https://ror.org/020vamp96', 'en', 1, 'https://ror.org/020vamp96 Family Carers Ireland'),
(65067, 'https://ror.org/05nh9ky12', 'en', 1, 'https://ror.org/05nh9ky12 Irish Archaeology Field School'),
(65068, 'https://ror.org/01e6c7y89', 'en', 1, 'https://ror.org/01e6c7y89 Carlow County Council Comhairle Contae Cheatharlach'),
(65069, 'https://ror.org/00qvayv53', 'en', 1, 'https://ror.org/00qvayv53 St Nicholas Trust'),
(65070, 'https://ror.org/02m014756', 'en', 1, 'https://ror.org/02m014756 Irish Council for Civil Liberties'),
(65071, 'https://ror.org/05fn69a96', 'en', 1, 'https://ror.org/05fn69a96 Irish Equine Centre'),
(65072, 'https://ror.org/0193t3v82', 'en', 1, 'https://ror.org/0193t3v82 EmployAbility Galway'),
(65073, 'https://ror.org/00naggm49', 'en', 1, 'https://ror.org/00naggm49 Enable Ireland'),
(65074, 'https://ror.org/008sxtj70', 'no_lang_code', 1, 'https://ror.org/008sxtj70 Manor Farm (Ireland)'),
(65075, 'https://ror.org/0587yj467', 'no_lang_code', 1, 'https://ror.org/0587yj467 MicroGen Biotech (Ireland)'),
(65076, 'https://ror.org/014x92w58', 'en', 1, 'https://ror.org/014x92w58 Irish Heritage Trust'),
(65077, 'https://ror.org/05tk02106', 'en', 1, 'https://ror.org/05tk02106 Suas Educational Development'),
(65078, 'https://ror.org/03kt9pk73', 'en', 1, 'https://ror.org/03kt9pk73 Ionad Cearta Imirceach na hƉireann Migrant Rights Centre Ireland'),
(65079, 'https://ror.org/04fwng791', 'no_lang_code', 1, 'https://ror.org/04fwng791 Castolin Eutectic (Ireland)'),
(65080, 'https://ror.org/05jvc9976', 'no_lang_code', 1, 'https://ror.org/05jvc9976 ENBIO (Ireland)'),
(65081, 'https://ror.org/0391e9v93', 'no_lang_code', 1, 'https://ror.org/0391e9v93 Minch Malt (Ireland)'),
(65082, 'https://ror.org/05espyj63', 'en', 1, 'https://ror.org/05espyj63 Irish Human Rights and Equality Commission'),
(65083, 'https://ror.org/00fp23a83', 'en', 1, 'https://ror.org/00fp23a83 Aras Nua-Ealaƭne na hƉireann Irish Museum of Modern Art'),
(65084, 'https://ror.org/025cyqr27', 'no_lang_code', 1, 'https://ror.org/025cyqr27 Molloy Environmental Systems (Ireland)'),
(65085, 'https://ror.org/02admgw40', 'no_lang_code', 1, 'https://ror.org/02admgw40 Sulzer (Ireland)'),
(65086, 'https://ror.org/025x7xq24', 'no_lang_code', 1, 'https://ror.org/025x7xq24 Cerbios (Switzerland)'),
(65087, 'https://ror.org/04xzvj604', 'no_lang_code', 1, 'https://ror.org/04xzvj604 Monaghan Biosciences (Ireland)'),
(65088, 'https://ror.org/00egzwg33', 'no_lang_code', 1, 'https://ror.org/00egzwg33 Cloughjordan Ecovillage'),
(65089, 'https://ror.org/03fgrnr69', 'en', 1, 'https://ror.org/03fgrnr69 Irish Penal Reform Trust'),
(65090, 'https://ror.org/005h0gs91', 'no_lang_code', 1, 'https://ror.org/005h0gs91 Enzolve Technologies (Ireland)'),
(65091, 'https://ror.org/049ck3c19', 'en', 1, 'https://ror.org/049ck3c19 Childminding Ireland'),
(65092, 'https://ror.org/01jsfh075', 'en', 1, 'https://ror.org/01jsfh075 Irish Refugee Council'),
(65093, 'https://ror.org/0559jvv76', 'no_lang_code', 1, 'https://ror.org/0559jvv76 Tango Telecom (Ireland)'),
(65094, 'https://ror.org/0095wvm02', 'no_lang_code', 1, 'https://ror.org/0095wvm02 Move4Parkinson’s'),
(65095, 'https://ror.org/02bvdyv86', 'no_lang_code', 1, 'https://ror.org/02bvdyv86 Equilume (Ireland)'),
(65096, 'https://ror.org/00wbknw54', 'no_lang_code', 1, 'https://ror.org/00wbknw54 Techworks Marine (Ireland)'),
(65097, 'https://ror.org/055n6t614', 'en', 1, 'https://ror.org/055n6t614 City of Dublin Skin and Cancer Hospital Charity'),
(65098, 'https://ror.org/00xfr3x03', 'no_lang_code', 1, 'https://ror.org/00xfr3x03 Plusvital (Ireland)'),
(65099, 'https://ror.org/03xabzk72', 'en', 1, 'https://ror.org/03xabzk72 Galway Clinic'),
(65100, 'https://ror.org/03j7v1b32', 'en', 1, 'https://ror.org/03j7v1b32 Multiple Sclerosis Society of Ireland'),
(65101, 'https://ror.org/04bnxk453', 'en', 1, 'https://ror.org/04bnxk453 Sport Ireland Spórt Ɖireann'),
(65102, 'https://ror.org/00vx7p454', 'en', 1, 'https://ror.org/00vx7p454 Glencree'),
(65103, 'https://ror.org/0219e8j10', 'no_lang_code', 1, 'https://ror.org/0219e8j10 Vast Solar (Australia)'),
(65104, 'https://ror.org/02cmtfp09', 'no_lang_code', 1, 'https://ror.org/02cmtfp09 European Recycling Platform (Ireland)'),
(65105, 'https://ror.org/03wjek566', 'en', 1, 'https://ror.org/03wjek566 Nasc The Irish Immigrant Support Centre'),
(65106, 'https://ror.org/04eftem11', 'en', 1, 'https://ror.org/04eftem11 Irish Society for the Prevention of Cruelty to Animals'),
(65107, 'https://ror.org/049d7dw39', 'en', 1, 'https://ror.org/049d7dw39 Youth Theatre Ireland'),
(65108, 'https://ror.org/053k9rz58', 'en', 1, 'https://ror.org/053k9rz58 National Association of Regional Game Councils'),
(65109, 'https://ror.org/03jrrs135', 'en', 1, 'https://ror.org/03jrrs135 National Disability Authority'),
(65110, 'https://ror.org/058v8m457', 'no_lang_code', 1, 'https://ror.org/058v8m457 Exergyn (Ireland)'),
(65111, 'https://ror.org/020tka774', 'no_lang_code', 1, 'https://ror.org/020tka774 Irish Horseracing Regulatory Board (Ireland)'),
(65112, 'https://ror.org/03vbs1928', 'no_lang_code', 1, 'https://ror.org/03vbs1928 Transpharmation (Ireland)'),
(65113, 'https://ror.org/0184neg38', 'no_lang_code', 1, 'https://ror.org/0184neg38 Vita Actives (Ireland)'),
(65114, 'https://ror.org/02wkqjs50', 'no_lang_code', 1, 'https://ror.org/02wkqjs50 Exerscout (Ireland)'),
(65115, 'https://ror.org/012ewnz96', 'en', 1, 'https://ror.org/012ewnz96 National Forum for the Enhancement of Teaching & Learning in Higher Education'),
(65116, 'https://ror.org/00xgwej35', 'no_lang_code', 1, 'https://ror.org/00xgwej35 Vitalograph (Ireland)'),
(65117, 'https://ror.org/016m9ee75', 'en', 1, 'https://ror.org/016m9ee75 Fatima Groups United'),
(65118, 'https://ror.org/02mad9e91', 'en', 1, 'https://ror.org/02mad9e91 Think-tank for Action on Social Change'),
(65119, 'https://ror.org/048db4454', 'en', 1, 'https://ror.org/048db4454 National Platform of Self Advocates'),
(65120, 'https://ror.org/01gxrv819', 'no_lang_code', 1, 'https://ror.org/01gxrv819 Vornia (Ireland)');
INSERT INTO `rors` VALUES
(65121, 'https://ror.org/04hpnke04', 'en', 1, 'https://ror.org/04hpnke04 Tusla - Child and Family Agency'),
(65122, 'https://ror.org/036grzb86', 'no_lang_code', 1, 'https://ror.org/036grzb86 Voysis (Ireland)'),
(65123, 'https://ror.org/01caasa64', 'en', 1, 'https://ror.org/01caasa64 Comhairle NĆ”isiĆŗnta na nƓg National Youth Council of Ireland'),
(65124, 'https://ror.org/0153x1x48', 'no_lang_code', 1, 'https://ror.org/0153x1x48 U-Casadh Project (Ireland)'),
(65125, 'https://ror.org/05ee18g42', 'en', 1, 'https://ror.org/05ee18g42 Lionra na hƉireann um Chomhionanns Transinscne Transgender Equality Network Ireland'),
(65126, 'https://ror.org/045x5zp74', 'no_lang_code', 1, 'https://ror.org/045x5zp74 NSilico (Ireland)'),
(65127, 'https://ror.org/00d6y7q19', 'no_lang_code', 1, 'https://ror.org/00d6y7q19 Avara Pharmaceutical Services (Ireland)'),
(65128, 'https://ror.org/00q167h80', 'no_lang_code', 1, 'https://ror.org/00q167h80 Phorest Salon Software (Ireland)'),
(65129, 'https://ror.org/02wbfy710', 'no_lang_code', 1, 'https://ror.org/02wbfy710 Xeolas Pharmaceuticals (Ireland)'),
(65130, 'https://ror.org/04mfdzp80', 'no_lang_code', 1, 'https://ror.org/04mfdzp80 YAMSU Technologies (Ireland)'),
(65131, 'https://ror.org/02pn2hw69', 'no_lang_code', 1, 'https://ror.org/02pn2hw69 Neuromod (Ireland)'),
(65132, 'https://ror.org/053ss9y09', 'pt', 1, 'https://ror.org/053ss9y09 Associação Kuyper para Estudos Transdisciplinares'),
(65133, 'https://ror.org/0468tse97', 'en', 1, 'https://ror.org/0468tse97 The Canadian Scientific & Christian Affiliation'),
(65134, 'https://ror.org/015m5qc77', 'en', 1, 'https://ror.org/015m5qc77 Expii'),
(65135, 'https://ror.org/02bwhra22', 'no_lang_code', 1, 'https://ror.org/02bwhra22 Cloudera (United States)'),
(65136, 'https://ror.org/0454xt523', 'es', 1, 'https://ror.org/0454xt523 Seminario Bíblico de Colombia Fundación Universitaria'),
(65137, 'https://ror.org/05mvt5123', 'no_lang_code', 1, 'https://ror.org/05mvt5123 Hyster-Yale Materials Handling (United States)'),
(65138, 'https://ror.org/05v15sz79', 'no_lang_code', 1, 'https://ror.org/05v15sz79 58.com (China)'),
(65139, 'https://ror.org/01j0j2q95', 'en', 1, 'https://ror.org/01j0j2q95 The Society of Korean Language and Literature źµ­ģ–“źµ­ė¬øķ•™ķšŒ'),
(65140, 'https://ror.org/0318jmw72', 'hu', 1, 'https://ror.org/0318jmw72 Magyar TehetsĆ©gsegĆ­tő Szervezetek SzƶvetsĆ©ge'),
(65141, 'https://ror.org/00fycd487', 'no_lang_code', 1, 'https://ror.org/00fycd487 Constellation Software (Canada)'),
(65142, 'https://ror.org/03qckzp50', 'no_lang_code', 1, 'https://ror.org/03qckzp50 AAC Technologies (China)'),
(65143, 'https://ror.org/01sbnfq90', 'no_lang_code', 1, 'https://ror.org/01sbnfq90 IAC (United States)'),
(65144, 'https://ror.org/02xd1z741', 'no_lang_code', 1, 'https://ror.org/02xd1z741 ACI Worldwide (United States)'),
(65145, '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'),
(65146, 'https://ror.org/03t9vst72', 'no_lang_code', 1, 'https://ror.org/03t9vst72 Icahn Enterprises (United States)'),
(65147, 'https://ror.org/02k9fzh35', 'no_lang_code', 1, 'https://ror.org/02k9fzh35 Cooper Standard (United States)'),
(65148, 'https://ror.org/04172zb59', 'no_lang_code', 1, 'https://ror.org/04172zb59 IDEXX Laboratories (United States)'),
(65149, 'https://ror.org/04vyg0r47', 'no_lang_code', 1, 'https://ror.org/04vyg0r47 Criteo (France)'),
(65150, 'https://ror.org/00xr42905', 'no_lang_code', 1, 'https://ror.org/00xr42905 Activision Blizzard (United States)'),
(65151, 'https://ror.org/03wc7j405', 'no_lang_code', 1, 'https://ror.org/03wc7j405 Adient (Ireland)'),
(65152, 'https://ror.org/00cw8st45', 'en', 1, 'https://ror.org/00cw8st45 Antiquities, Monuments and Museum Corporation'),
(65153, 'https://ror.org/05phhyq88', 'no_lang_code', 1, 'https://ror.org/05phhyq88 CSSC Offshore & Marine Engineering Company (China)'),
(65154, 'https://ror.org/02rf2nk31', 'no_lang_code', 1, 'https://ror.org/02rf2nk31 ADTRAN (United States)'),
(65155, 'https://ror.org/003k32q32', 'no_lang_code', 1, 'https://ror.org/003k32q32 Ctrip'),
(65156, 'https://ror.org/027szw220', 'no_lang_code', 1, 'https://ror.org/027szw220 Inphi (United States)'),
(65157, 'https://ror.org/05w9aqz69', 'no_lang_code', 1, 'https://ror.org/05w9aqz69 Tern (United Kingdom)'),
(65158, 'https://ror.org/04pq7rm89', 'no_lang_code', 1, 'https://ror.org/04pq7rm89 Deutsche Bƶrse (Germany)'),
(65159, 'https://ror.org/0474p4r72', 'no_lang_code', 1, 'https://ror.org/0474p4r72 Inspur (China) ęµŖę½®'),
(65160, 'https://ror.org/03tarb191', 'no_lang_code', 1, 'https://ror.org/03tarb191 Akamai (United States)'),
(65161, 'https://ror.org/00kn8e190', 'no_lang_code', 1, 'https://ror.org/00kn8e190 DHC Software (China)'),
(65162, 'https://ror.org/057z7x668', 'no_lang_code', 1, 'https://ror.org/057z7x668 Dialog Semiconductor (United Kingdom)'),
(65163, 'https://ror.org/0182dgx25', 'en', 1, 'https://ror.org/0182dgx25 Woolf Institute'),
(65164, 'https://ror.org/02gzaeb51', 'no_lang_code', 1, 'https://ror.org/02gzaeb51 Alliance Data (United States)'),
(65165, 'https://ror.org/00az85j53', 'no_lang_code', 1, 'https://ror.org/00az85j53 Dongfang Electric Corporation (China)'),
(65166, 'https://ror.org/01j1w6v73', 'no_lang_code', 1, 'https://ror.org/01j1w6v73 Allscripts (United States)'),
(65167, 'https://ror.org/055ar4y96', 'no_lang_code', 1, 'https://ror.org/055ar4y96 Dongfeng Motor Group (China)'),
(65168, 'https://ror.org/00fp6fj05', 'no_lang_code', 1, 'https://ror.org/00fp6fj05 NetEase (China) ē½‘ę˜“'),
(65169, 'https://ror.org/01dkjkq64', 'no_lang_code', 1, 'https://ror.org/01dkjkq64 Jingdong (China) 京东'),
(65170, 'https://ror.org/0197qw696', 'no_lang_code', 1, 'https://ror.org/0197qw696 Netflix (United States)'),
(65171, 'https://ror.org/01m2ydy56', 'no_lang_code', 1, 'https://ror.org/01m2ydy56 Altaba (United States)'),
(65172, 'https://ror.org/04nxxn125', 'no_lang_code', 1, 'https://ror.org/04nxxn125 Amadeus (Spain)'),
(65173, 'https://ror.org/00rxg5003', 'no_lang_code', 1, 'https://ror.org/00rxg5003 Nets (Denmark)'),
(65174, 'https://ror.org/014y0b014', 'no_lang_code', 1, 'https://ror.org/014y0b014 NetScout (United States)'),
(65175, 'https://ror.org/00mh5ga26', 'no_lang_code', 1, 'https://ror.org/00mh5ga26 East Japan Railway (Japan) ę±ę—„ęœ¬ę—…å®¢é‰„é“ę Ŗå¼ä¼šē¤¾'),
(65176, 'https://ror.org/05bqqpf42', 'no_lang_code', 1, 'https://ror.org/05bqqpf42 Ambarella (United States)'),
(65177, 'https://ror.org/04gzzzx19', 'en', 1, 'https://ror.org/04gzzzx19 Korean Language and Literature Society ķ•œźµ­ģ–øģ–“ė¬øķ•™ķšŒ'),
(65178, 'https://ror.org/04rt77q92', 'no_lang_code', 1, 'https://ror.org/04rt77q92 Eaton (Ireland)'),
(65179, 'https://ror.org/023es3c27', 'no_lang_code', 1, 'https://ror.org/023es3c27 Anheuser-Busch InBev (Belgium)'),
(65180, 'https://ror.org/04fkpdv59', 'no_lang_code', 1, 'https://ror.org/04fkpdv59 Nexteer Automotive (United States)'),
(65181, 'https://ror.org/0300wj933', 'en', 1, 'https://ror.org/0300wj933 Korean History Society ķ•œźµ­ģ—­ģ‚¬ģ—°źµ¬ķšŒ'),
(65182, 'https://ror.org/02ztwrd91', 'no_lang_code', 1, 'https://ror.org/02ztwrd91 JAC Motors (China) 江淮汽车'),
(65183, 'https://ror.org/056yydt13', 'no_lang_code', 1, 'https://ror.org/056yydt13 ZTT (China) ę±Ÿč‹äø­å¤©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(65184, 'https://ror.org/0269t5q92', 'no_lang_code', 1, 'https://ror.org/0269t5q92 Electronic Arts (United States)'),
(65185, 'https://ror.org/02c451b44', 'en', 1, 'https://ror.org/02c451b44 The English Linguistics Society of Korea ķ•œźµ­ģ˜ģ–“ķ•™ķ•™ķšŒ'),
(65186, 'https://ror.org/0505b0847', 'no_lang_code', 1, 'https://ror.org/0505b0847 Joyson Electronics (China) å‡čƒœē”µå­'),
(65187, 'https://ror.org/04k7xq042', 'no_lang_code', 1, 'https://ror.org/04k7xq042 Jiangxi Copper (China) ę±Ÿč„æé“œäøš'),
(65188, 'https://ror.org/00zymfp03', 'no_lang_code', 1, 'https://ror.org/00zymfp03 Electronics for Imaging (United States)'),
(65189, 'https://ror.org/04tz2xx73', 'no_lang_code', 1, 'https://ror.org/04tz2xx73 Nutanix (United States)'),
(65190, 'https://ror.org/04fg7ry98', 'no_lang_code', 1, 'https://ror.org/04fg7ry98 Arista (United States)'),
(65191, 'https://ror.org/00j0sx021', 'no_lang_code', 1, 'https://ror.org/00j0sx021 Johnson Controls (Ireland)'),
(65192, 'https://ror.org/03ff82720', 'no_lang_code', 1, 'https://ror.org/03ff82720 Johnson Electric (China) å¾·ę˜Œé›»ę©ŸęŽ§č‚”ęœ‰é™å…¬åø'),
(65193, 'https://ror.org/01k184b43', 'no_lang_code', 1, 'https://ror.org/01k184b43 Onex (Canada)'),
(65194, 'https://ror.org/01etg0b86', 'en', 1, 'https://ror.org/01etg0b86 Korean Association For Housing Policy Studies ķ•œźµ­ģ£¼ķƒķ•™ķšŒ'),
(65195, 'https://ror.org/03rw2rj66', 'no_lang_code', 1, 'https://ror.org/03rw2rj66 JXTG Holdings (Japan) JXćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(65196, 'https://ror.org/04nzfkq05', 'no_lang_code', 1, 'https://ror.org/04nzfkq05 Exor (Netherlands)'),
(65197, 'https://ror.org/03feknn04', 'en', 1, 'https://ror.org/03feknn04 The Korean Society of Modern Chinese Literature ķ•œźµ­ģ¤‘źµ­ķ˜„ėŒ€ė¬øķ•™ķ•™ķšŒ'),
(65198, 'https://ror.org/02jh1bj14', 'no_lang_code', 1, 'https://ror.org/02jh1bj14 Oshkosh (United States)'),
(65199, 'https://ror.org/03nvser95', 'no_lang_code', 1, 'https://ror.org/03nvser95 ASM Pacific Technology (China)'),
(65200, 'https://ror.org/05npd2m35', 'no_lang_code', 1, 'https://ror.org/05npd2m35 Overstock (United States)'),
(65201, 'https://ror.org/01sh85g09', 'no_lang_code', 1, 'https://ror.org/01sh85g09 Expedia Group (United States)'),
(65202, 'https://ror.org/010v2ez92', 'no_lang_code', 1, 'https://ror.org/010v2ez92 F5 Networks (United States)'),
(65203, 'https://ror.org/01rn6rn86', 'no_lang_code', 1, 'https://ror.org/01rn6rn86 Palo Alto Networks (United States)'),
(65204, 'https://ror.org/00y7n3708', 'no_lang_code', 1, 'https://ror.org/00y7n3708 Atlassian (United Kingdom)'),
(65205, 'https://ror.org/05p859a12', 'no_lang_code', 1, 'https://ror.org/05p859a12 Ferrari (Italy)'),
(65206, 'https://ror.org/0386abs67', 'no_lang_code', 1, 'https://ror.org/0386abs67 Automatic Data Processing (United States)'),
(65207, 'https://ror.org/038m7b802', 'no_lang_code', 1, 'https://ror.org/038m7b802 Pandora (United States)'),
(65208, 'https://ror.org/048gya260', 'no_lang_code', 1, 'https://ror.org/048gya260 Kerry Group (Ireland)'),
(65209, 'https://ror.org/01dr6h017', 'no_lang_code', 1, 'https://ror.org/01dr6h017 Pega (United States)'),
(65210, 'https://ror.org/05gc25a42', 'no_lang_code', 1, 'https://ror.org/05gc25a42 Keyence (Japan) ć‚­ćƒ¼ć‚Øćƒ³ć‚¹'),
(65211, 'https://ror.org/046j5g483', 'no_lang_code', 1, 'https://ror.org/046j5g483 Pegatron (Taiwan) å’Œē¢©čÆåˆē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(65212, 'https://ror.org/05j26dk60', 'no_lang_code', 1, 'https://ror.org/05j26dk60 AviChina Industry & Technology (China) äø­å›½čˆŖē©ŗē§‘ęŠ€å·„äøšč‚”ä»½ęœ‰é™å…¬åø'),
(65213, 'https://ror.org/03dnqre85', 'no_lang_code', 1, 'https://ror.org/03dnqre85 FireEye (United States)'),
(65214, 'https://ror.org/04hjzh827', 'no_lang_code', 1, 'https://ror.org/04hjzh827 First Solar (United States)'),
(65215, 'https://ror.org/04t8zgm64', 'no_lang_code', 1, 'https://ror.org/04t8zgm64 BAIC Motor (China)'),
(65216, 'https://ror.org/01stnfn33', 'no_lang_code', 1, 'https://ror.org/01stnfn33 Kingsoft (China) 金山软件'),
(65217, 'https://ror.org/04dgkhg68', 'no_lang_code', 1, 'https://ror.org/04dgkhg68 Snap (United States)'),
(65218, 'https://ror.org/03tmyjv73', 'no_lang_code', 1, 'https://ror.org/03tmyjv73 Fiserv (United States)'),
(65219, 'https://ror.org/00z8s7v19', 'no_lang_code', 1, 'https://ror.org/00z8s7v19 Fitbit (United States)'),
(65220, 'https://ror.org/04c5wp027', 'no_lang_code', 1, 'https://ror.org/04c5wp027 Bandai Namco (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒ³ćƒ€ć‚¤ćƒŠćƒ ć‚³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(65221, 'https://ror.org/04h48jk55', 'no_lang_code', 1, 'https://ror.org/04h48jk55 Ford Otosan (Turkey)'),
(65222, 'https://ror.org/02ew2ks20', 'no_lang_code', 1, 'https://ror.org/02ew2ks20 SoftBank Group (Japan) ć‚½ćƒ•ćƒˆćƒćƒ³ć‚Æć‚°ćƒ«ćƒ¼ćƒ—ę Ŗå¼ä¼šē¤¾'),
(65223, 'https://ror.org/02eytr588', 'no_lang_code', 1, 'https://ror.org/02eytr588 Phison (Taiwan)'),
(65224, 'https://ror.org/00vn8k536', 'no_lang_code', 1, 'https://ror.org/00vn8k536 Fujian Star-net (China)'),
(65225, 'https://ror.org/02sfdh709', 'no_lang_code', 1, 'https://ror.org/02sfdh709 Sohu (China) ęœē‹'),
(65226, 'https://ror.org/01v6p2g18', 'no_lang_code', 1, 'https://ror.org/01v6p2g18 Ahold Delhaize (Netherlands) Koninklijke Ahold Delhaize N.V.'),
(65227, 'https://ror.org/04d7w6g53', 'no_lang_code', 1, 'https://ror.org/04d7w6g53 Playtech (Isle of Man)'),
(65228, 'https://ror.org/0368h0402', 'no_lang_code', 1, 'https://ror.org/0368h0402 Sophos Group (United Kingdom)'),
(65229, 'https://ror.org/05rbhw377', 'no_lang_code', 1, 'https://ror.org/05rbhw377 Hanjin (South Korea) ķ•œģ§„ 그룹'),
(65230, 'https://ror.org/05htczx02', 'no_lang_code', 1, 'https://ror.org/05htczx02 Prada (Italy)'),
(65231, 'https://ror.org/00wja7n54', 'no_lang_code', 1, 'https://ror.org/00wja7n54 Fuyao Group (China)'),
(65232, 'https://ror.org/01t91mp11', 'no_lang_code', 1, 'https://ror.org/01t91mp11 Proofpoint (United States)'),
(65233, 'https://ror.org/05tr8ks89', 'no_lang_code', 1, 'https://ror.org/05tr8ks89 Splunk (United States)'),
(65234, 'https://ror.org/058x40223', 'no_lang_code', 1, 'https://ror.org/058x40223 Pure Storage (United States)'),
(65235, 'https://ror.org/031dc4703', 'no_lang_code', 1, 'https://ror.org/031dc4703 BlackRock (United States)'),
(65236, 'https://ror.org/00mgrqp66', 'no_lang_code', 1, 'https://ror.org/00mgrqp66 Jiuquan Iron & Steel (China) 酒泉钢铁'),
(65237, 'https://ror.org/02qyqxk84', 'no_lang_code', 1, 'https://ror.org/02qyqxk84 Qiagen (Netherlands)'),
(65238, 'https://ror.org/048cxnx33', 'no_lang_code', 1, 'https://ror.org/048cxnx33 Quality Systems (United States)'),
(65239, 'https://ror.org/057qdm128', 'no_lang_code', 1, 'https://ror.org/057qdm128 LendingClub (United States)'),
(65240, 'https://ror.org/006sbr164', 'no_lang_code', 1, 'https://ror.org/006sbr164 Gemalto (Netherlands)'),
(65241, 'https://ror.org/036246q84', 'no_lang_code', 1, 'https://ror.org/036246q84 Box (United States)'),
(65242, 'https://ror.org/01j0jk666', 'no_lang_code', 1, 'https://ror.org/01j0jk666 ResMed (United States)'),
(65243, 'https://ror.org/022352x20', 'no_lang_code', 1, 'https://ror.org/022352x20 Getinge (Sweden)'),
(65244, 'https://ror.org/05093ss78', 'no_lang_code', 1, 'https://ror.org/05093ss78 Lens Technology (China) č“ę€ē§‘ęŠ€'),
(65245, 'https://ror.org/02hcww794', 'no_lang_code', 1, 'https://ror.org/02hcww794 Suning (China)'),
(65246, 'https://ror.org/02587ed69', 'no_lang_code', 1, 'https://ror.org/02587ed69 Bucher Industries (Switzerland)'),
(65247, 'https://ror.org/00pb9rf78', 'no_lang_code', 1, 'https://ror.org/00pb9rf78 GoDaddy (United States)'),
(65248, 'https://ror.org/00m61xx36', 'no_lang_code', 1, 'https://ror.org/00m61xx36 Burelle (France)'),
(65249, 'https://ror.org/016v9qm56', 'no_lang_code', 1, 'https://ror.org/016v9qm56 GoerTek (China)'),
(65250, 'https://ror.org/01ms42351', 'no_lang_code', 1, 'https://ror.org/01ms42351 Leoni (Germany)'),
(65251, 'https://ror.org/0588fx246', 'no_lang_code', 1, 'https://ror.org/0588fx246 Rongsheng Petrochemical (China) č£ē››ēŸ³åŒ–č‚”ä»½ęœ‰é™å…¬åø'),
(65252, 'https://ror.org/050acz986', 'no_lang_code', 1, 'https://ror.org/050acz986 Gogo (United States)'),
(65253, 'https://ror.org/01gpd6e26', 'no_lang_code', 1, 'https://ror.org/01gpd6e26 Calix (United States)'),
(65254, 'https://ror.org/00xj9p276', 'no_lang_code', 1, 'https://ror.org/00xj9p276 GoPro (United States)'),
(65255, 'https://ror.org/01jcqgb80', 'no_lang_code', 1, 'https://ror.org/01jcqgb80 Leshi Internet Information and Technology (China) 乐视网'),
(65256, 'https://ror.org/03f668467', 'no_lang_code', 1, 'https://ror.org/03f668467 Supermicro (United States)'),
(65257, 'https://ror.org/019xwzn44', 'no_lang_code', 1, 'https://ror.org/019xwzn44 Great Wall Motors (China) é•æåŸŽę±½č½¦'),
(65258, 'https://ror.org/051b9ta18', 'no_lang_code', 1, 'https://ror.org/051b9ta18 SAIC Motor (China) äøŠę±½é›†å›¢'),
(65259, 'https://ror.org/03hw64936', 'no_lang_code', 1, 'https://ror.org/03hw64936 Campbell Soup (United States)'),
(65260, 'https://ror.org/026fzn952', 'no_lang_code', 1, 'https://ror.org/026fzn952 Guangzhou Automobile Group (China) å¹æå·žę±½č½¦é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(65261, 'https://ror.org/048j6j578', 'no_lang_code', 1, 'https://ror.org/048j6j578 Synchronoss (United States)'),
(65262, 'https://ror.org/03mz26918', 'no_lang_code', 1, 'https://ror.org/03mz26918 Cargotec (Finland)'),
(65263, 'https://ror.org/05k05ta39', 'no_lang_code', 1, 'https://ror.org/05k05ta39 Guidewire (United States)'),
(65264, 'https://ror.org/053v5e348', 'no_lang_code', 1, 'https://ror.org/053v5e348 Tableau Software (United States)'),
(65265, 'https://ror.org/00qbcq685', 'no_lang_code', 1, 'https://ror.org/00qbcq685 Cavium (United States)'),
(65266, 'https://ror.org/040a2d739', 'no_lang_code', 1, 'https://ror.org/040a2d739 Seagate (Ireland)'),
(65267, 'https://ror.org/05pxcg049', 'no_lang_code', 1, 'https://ror.org/05pxcg049 Take-Two Interactive (United States)'),
(65268, 'https://ror.org/04yzwa804', 'no_lang_code', 1, 'https://ror.org/04yzwa804 Sega Sammy (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ć‚¬ć‚µćƒŸćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(65269, 'https://ror.org/051qgy342', 'no_lang_code', 1, 'https://ror.org/051qgy342 CDK Global (United States)'),
(65270, 'https://ror.org/01eevfr57', 'no_lang_code', 1, 'https://ror.org/01eevfr57 Hankook Tire (South Korea) ķ•œźµ­ķƒ€ģ“ģ–“'),
(65271, 'https://ror.org/015qn9r22', 'no_lang_code', 1, 'https://ror.org/015qn9r22 Champion Technology Holdings (China)'),
(65272, 'https://ror.org/04nqpys93', 'no_lang_code', 1, 'https://ror.org/04nqpys93 Check Point (Israel)'),
(65273, 'https://ror.org/02t09mq75', 'no_lang_code', 1, 'https://ror.org/02t09mq75 SEI (United States)'),
(65274, 'https://ror.org/00247dx40', 'no_lang_code', 1, 'https://ror.org/00247dx40 Tatung (Taiwan) å¤§åŒč‚”ä»½ęœ‰é™å…¬åø'),
(65275, 'https://ror.org/0394wsn58', 'no_lang_code', 1, 'https://ror.org/0394wsn58 Harbin Electric Corporation (China) å“ˆå°”ę»Øē”µę°”é›†å›¢ęœ‰é™å…¬åø'),
(65276, 'https://ror.org/012tba185', 'no_lang_code', 1, 'https://ror.org/012tba185 Cheng Shin Rubber (Taiwan) ę­£ę–°ę©”č† å·„ę„­č‚”ä»½ęœ‰é™å…¬åø'),
(65277, 'https://ror.org/02h07sr78', 'no_lang_code', 1, 'https://ror.org/02h07sr78 Luxshare ICT (China) ē«‹č®Æē²¾åÆ†å·„äøšč‚”ä»½ęœ‰é™å…¬åø'),
(65278, 'https://ror.org/05psg6c12', 'no_lang_code', 1, 'https://ror.org/05psg6c12 Sensata Technologies (Netherlands)'),
(65279, 'https://ror.org/00rarw420', 'no_lang_code', 1, 'https://ror.org/00rarw420 Harmonic (United States)'),
(65280, 'https://ror.org/02eh7bh87', 'no_lang_code', 1, 'https://ror.org/02eh7bh87 Tebian Electric Apparatus (China) ē‰¹å˜ē”µå·„č‚”ä»½ęœ‰é™å…¬åø'),
(65281, 'https://ror.org/05xr0bc04', 'no_lang_code', 1, 'https://ror.org/05xr0bc04 ServiceNow (United States)'),
(65282, 'https://ror.org/04hzt6a67', 'no_lang_code', 1, 'https://ror.org/04hzt6a67 Hefei Meiling (China) åˆč‚„ē¾Žč±č‚”ä»½ęœ‰é™å…¬åø'),
(65283, 'https://ror.org/00c6xam17', 'no_lang_code', 1, 'https://ror.org/00c6xam17 Gezhouba Group (China) äø­å›½č‘›ę“²åé›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(65284, 'https://ror.org/05rb1p829', 'no_lang_code', 1, 'https://ror.org/05rb1p829 Chenming Group (China) 晨鸣集团'),
(65285, 'https://ror.org/02t3qgb38', 'no_lang_code', 1, 'https://ror.org/02t3qgb38 China GreatWall Technology Group (China) äø­å›½é•æåŸŽē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(65286, 'https://ror.org/04brysy78', 'no_lang_code', 1, 'https://ror.org/04brysy78 Masteel (China) 马钢集团'),
(65287, 'https://ror.org/01zc60580', 'no_lang_code', 1, 'https://ror.org/01zc60580 Heiwa (Japan) ę Ŗå¼ä¼šē¤¾å¹³å’Œ'),
(65288, 'https://ror.org/04pwn6a43', 'no_lang_code', 1, 'https://ror.org/04pwn6a43 China National Chemical Engineering (China) äø­å›½åŒ–å­¦å·„ēØ‹č‚”ä»½ęœ‰é™å…¬åø'),
(65289, 'https://ror.org/00vsv8c52', 'no_lang_code', 1, 'https://ror.org/00vsv8c52 China Electronics Corporation (China) äø­åœ‹é›»å­å…¬åø'),
(65290, 'https://ror.org/015epak69', 'no_lang_code', 1, 'https://ror.org/015epak69 Hengtong Optoelectronic (China) äŗØé€šå…‰ē”µ'),
(65291, 'https://ror.org/00v85ww51', 'no_lang_code', 1, 'https://ror.org/00v85ww51 China Railway Signal & Communication (China) äø­å›½é“č·Æé€šäæ”äæ”å·č‚”ä»½ęœ‰é™å…¬åø'),
(65292, 'https://ror.org/01nx55p33', 'no_lang_code', 1, 'https://ror.org/01nx55p33 Temenos Group (Switzerland)'),
(65293, 'https://ror.org/01zak2017', 'no_lang_code', 1, 'https://ror.org/01zak2017 MercadoLibre (Argentina)'),
(65294, 'https://ror.org/03jgnzt20', 'no_lang_code', 1, 'https://ror.org/03jgnzt20 China Telecom (China) 中国电俔'),
(65295, 'https://ror.org/00nkkk791', 'no_lang_code', 1, 'https://ror.org/00nkkk791 Shanghai Tunnel Engineering (China) äøŠęµ·éš§é“å·„ēØ‹'),
(65296, 'https://ror.org/009a2jy80', 'no_lang_code', 1, 'https://ror.org/009a2jy80 Hexagon (Sweden)'),
(65297, 'https://ror.org/01qkhw706', 'no_lang_code', 1, 'https://ror.org/01qkhw706 Christian Dior (France)'),
(65298, 'https://ror.org/013b8tn87', 'no_lang_code', 1, 'https://ror.org/013b8tn87 NetDragon (China)'),
(65299, 'https://ror.org/012pkqv60', 'no_lang_code', 1, 'https://ror.org/012pkqv60 Hikma Pharmaceuticals (United Kingdom)'),
(65300, 'https://ror.org/01gnxgt70', 'no_lang_code', 1, 'https://ror.org/01gnxgt70 Cimpress (Netherlands)'),
(65301, 'https://ror.org/01bctgj87', 'no_lang_code', 1, 'https://ror.org/01bctgj87 Hortonworks (United States)'),
(65302, 'https://ror.org/01r4zz038', 'no_lang_code', 1, 'https://ror.org/01r4zz038 Thomson Reuters (Canada)'),
(65303, 'https://ror.org/00a671n16', 'no_lang_code', 1, 'https://ror.org/00a671n16 Ultimate Software (United States)'),
(65304, 'https://ror.org/01qyrv456', 'no_lang_code', 1, 'https://ror.org/01qyrv456 Mettler-Toledo (United States)'),
(65305, 'https://ror.org/03b7gey53', 'no_lang_code', 1, 'https://ror.org/03b7gey53 Tianma Microelectronics (China) 天 é©¬å¾®ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(65306, 'https://ror.org/02hwfmb37', 'no_lang_code', 1, 'https://ror.org/02hwfmb37 Hundsun (China) ę’ē”Ÿē§‘ęŠ€'),
(65307, 'https://ror.org/00jcp4354', 'no_lang_code', 1, 'https://ror.org/00jcp4354 O-film (China) ę¬§č²ē§‘ęŠ€'),
(65308, 'https://ror.org/01nhsch47', 'no_lang_code', 1, 'https://ror.org/01nhsch47 Tianneng Power (China)'),
(65309, 'https://ror.org/0212cyj75', 'no_lang_code', 1, 'https://ror.org/0212cyj75 Micro Focus (United Kingdom)'),
(65310, 'https://ror.org/04k9ktn61', 'no_lang_code', 1, 'https://ror.org/04k9ktn61 Dahua Technology (China)'),
(65311, 'https://ror.org/04bhbcm79', 'no_lang_code', 1, 'https://ror.org/04bhbcm79 TOTVS (Brazil)'),
(65312, 'https://ror.org/02jqc2b23', 'no_lang_code', 1, 'https://ror.org/02jqc2b23 Zhen Ding Technology (Taiwan)'),
(65313, 'https://ror.org/01nnzv715', 'no_lang_code', 1, 'https://ror.org/01nnzv715 Shutterfly (United States)'),
(65314, 'https://ror.org/033403863', 'no_lang_code', 1, 'https://ror.org/033403863 Micro-Star International (Taiwan)'),
(65315, 'https://ror.org/04pdjr931', 'no_lang_code', 1, 'https://ror.org/04pdjr931 Xinxing Pipes International Development (China) ę–°å…“é“øē®”č‚”ä»½ęœ‰é™å…¬åø'),
(65316, 'https://ror.org/02shrfh49', 'no_lang_code', 1, 'https://ror.org/02shrfh49 Yutong (China)'),
(65317, 'https://ror.org/00f0mbf46', 'no_lang_code', 1, 'https://ror.org/00f0mbf46 TPV Technology (China) å† ę·ē§‘ęŠ€'),
(65318, 'https://ror.org/0265k7q42', 'no_lang_code', 1, 'https://ror.org/0265k7q42 Triumph Group (United States)'),
(65319, 'https://ror.org/03har1q80', 'no_lang_code', 1, 'https://ror.org/03har1q80 Yelp (United States)'),
(65320, 'https://ror.org/006fm2278', 'no_lang_code', 1, 'https://ror.org/006fm2278 Midea Group (China) ē¾Žēš„é›†å›¢'),
(65321, 'https://ror.org/04c3q9n71', 'no_lang_code', 1, 'https://ror.org/04c3q9n71 Truly International Holdings (China)'),
(65322, 'https://ror.org/03bmmqp43', 'en', 1, 'https://ror.org/03bmmqp43 Cell Stress Discoveries'),
(65323, 'https://ror.org/04sbypa54', 'no_lang_code', 1, 'https://ror.org/04sbypa54 Tsinghua Holdings (China) ęø…åŽęŽ§č‚”ęœ‰é™å…¬åø'),
(65324, 'https://ror.org/03n86v874', 'no_lang_code', 1, 'https://ror.org/03n86v874 Zillow Group (United States)'),
(65325, 'https://ror.org/016dc7q50', 'no_lang_code', 1, 'https://ror.org/016dc7q50 Yonyou (China) ē”Øå‹'),
(65326, 'https://ror.org/01s40r185', 'no_lang_code', 1, 'https://ror.org/01s40r185 Ubisoft (France)'),
(65327, 'https://ror.org/032ge1s57', 'no_lang_code', 1, 'https://ror.org/032ge1s57 YY (China)'),
(65328, 'https://ror.org/002a2eq29', 'no_lang_code', 1, 'https://ror.org/002a2eq29 Zynga (United States)'),
(65329, 'https://ror.org/05dng9k37', 'no_lang_code', 1, 'https://ror.org/05dng9k37 NAURA (China) åŒ—ę–¹åŽåˆ›'),
(65330, 'https://ror.org/005ep3598', 'no_lang_code', 1, 'https://ror.org/005ep3598 Zhejiang Chint Electrics (China) ęµ™ę±Ÿę­£ę³°ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(65331, 'https://ror.org/0263vns04', 'no_lang_code', 1, 'https://ror.org/0263vns04 Veeva Systems (United States)'),
(65332, 'https://ror.org/04tttpd30', 'no_lang_code', 1, 'https://ror.org/04tttpd30 Changhong (China) å››å·é•æč™¹ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(65333, 'https://ror.org/01fex4x77', 'no_lang_code', 1, 'https://ror.org/01fex4x77 VeriFone Systems (United States)'),
(65334, 'https://ror.org/03fqhrc68', 'no_lang_code', 1, 'https://ror.org/03fqhrc68 Verint Systems (United States)'),
(65335, 'https://ror.org/03q4mza74', 'no_lang_code', 1, 'https://ror.org/03q4mza74 NCSOFT (South Korea)'),
(65336, 'https://ror.org/04fnybk57', 'no_lang_code', 1, 'https://ror.org/04fnybk57 Wabco (Belgium)'),
(65337, 'https://ror.org/02svsbh35', 'no_lang_code', 1, 'https://ror.org/02svsbh35 Wix.com (Israel)'),
(65338, 'https://ror.org/002nnaj78', 'no_lang_code', 1, 'https://ror.org/002nnaj78 Walgreens Boots Alliance (United States)'),
(65339, 'https://ror.org/00wkv8m74', 'no_lang_code', 1, 'https://ror.org/00wkv8m74 Morrisons (United Kingdom)'),
(65340, 'https://ror.org/016qr5362', 'no_lang_code', 1, 'https://ror.org/016qr5362 Pentair (United Kingdom)'),
(65341, 'https://ror.org/02nn1vm89', 'no_lang_code', 1, 'https://ror.org/02nn1vm89 Workday (United States)'),
(65342, 'https://ror.org/03fps1283', 'no_lang_code', 1, 'https://ror.org/03fps1283 Sky (United Kingdom)'),
(65343, 'https://ror.org/03wb8cw02', 'no_lang_code', 1, 'https://ror.org/03wb8cw02 Skyworth (China) åˆ›ē»“'),
(65344, 'https://ror.org/05nwd8d95', 'no_lang_code', 1, 'https://ror.org/05nwd8d95 Kowsar Medical (Netherlands)'),
(65345, 'https://ror.org/05qwvj556', 'no_lang_code', 1, 'https://ror.org/05qwvj556 China National Heavy Duty Truck Group (China) äø­å›½é‡åž‹ę±½č½¦é›†å›¢ęœ‰é™å…¬åø'),
(65346, 'https://ror.org/01gjt0k11', 'no_lang_code', 1, 'https://ror.org/01gjt0k11 Sina (China) ę–°ęµŖ'),
(65347, 'https://ror.org/0086q4c12', 'no_lang_code', 1, 'https://ror.org/0086q4c12 Sino Biopharmaceutical (China) äø­å›½ē”Ÿē‰©åˆ¶čÆ'),
(65348, 'https://ror.org/01ebjwm20', 'no_lang_code', 1, 'https://ror.org/01ebjwm20 Springer Nature (Netherlands)'),
(65349, 'https://ror.org/03ph7q594', 'no_lang_code', 1, 'https://ror.org/03ph7q594 KLE Ayur World'),
(65350, 'https://ror.org/02bbj5z24', 'en', 1, 'https://ror.org/02bbj5z24 Division of Energy'),
(65351, 'https://ror.org/021c9ha45', 'en', 1, 'https://ror.org/021c9ha45 Vasantdada Patil Ayurvedic Medical College & Institute Of Yoga'),
(65352, 'https://ror.org/04ktfyy52', 'no_lang_code', 1, 'https://ror.org/04ktfyy52 Pfizer (China) č¾‰ē‘žå…¬åø'),
(65353, 'https://ror.org/04n11fv55', 'no_lang_code', 1, 'https://ror.org/04n11fv55 Cerner (Austria)'),
(65354, 'https://ror.org/04ty7jx71', 'en', 1, 'https://ror.org/04ty7jx71 Kalawati Saran Children''s Hospital'),
(65355, 'https://ror.org/05tt6ka81', 'en', 1, 'https://ror.org/05tt6ka81 Associated Radiologists'),
(65356, 'https://ror.org/03q2d8x50', 'en', 1, 'https://ror.org/03q2d8x50 Digestive CARE'),
(65357, 'https://ror.org/02vptss42', 'en', 1, 'https://ror.org/02vptss42 Hebrew SeniorLife'),
(65358, 'https://ror.org/03m0n3c07', 'it', 1, 'https://ror.org/03m0n3c07 Institute of Applied Mathematics and Information Technologies Istituto di Matematica Applicata e Tecnologie Informatiche'),
(65359, 'https://ror.org/00d6pe324', 'en', 1, 'https://ror.org/00d6pe324 Neurobehavioral Research Laboratory and Clinic'),
(65360, 'https://ror.org/0315e7x57', 'no_lang_code', 1, 'https://ror.org/0315e7x57 GL Assessment (United Kingdom)'),
(65361, 'https://ror.org/04gsz9w64', 'en', 1, 'https://ror.org/04gsz9w64 Reef Check Foundation'),
(65362, 'https://ror.org/02x9rq768', 'en', 1, 'https://ror.org/02x9rq768 Vitalant'),
(65363, 'https://ror.org/01dbbht76', 'en', 1, 'https://ror.org/01dbbht76 National Center for PTSD'),
(65364, 'https://ror.org/03rm3gk43', 'en', 1, 'https://ror.org/03rm3gk43 National Cancer Center Hospital East å›½ē«‹ćŒć‚“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼ę±ē—…é™¢'),
(65365, 'https://ror.org/03feqng50', 'en', 1, 'https://ror.org/03feqng50 Hopewell Fund'),
(65366, 'https://ror.org/03r55ca96', 'no_lang_code', 1, 'https://ror.org/03r55ca96 Hourglass Group (United Kingdom)'),
(65367, 'https://ror.org/02kkn9893', 'en', 1, 'https://ror.org/02kkn9893 Advocates for Children of New York'),
(65368, 'https://ror.org/05k2sh226', 'en', 1, 'https://ror.org/05k2sh226 Bard College Berlin'),
(65369, 'https://ror.org/04bfk3375', 'en', 1, 'https://ror.org/04bfk3375 Fedcap'),
(65370, 'https://ror.org/00v8mj605', 'en', 1, 'https://ror.org/00v8mj605 American Friends of the Hebrew University'),
(65371, 'https://ror.org/009zsxc75', 'en', 1, 'https://ror.org/009zsxc75 Institute on Science for Global Policy'),
(65372, 'https://ror.org/054m6hn21', 'en', 1, 'https://ror.org/054m6hn21 Center for Inquiry'),
(65373, 'https://ror.org/01r779962', 'en', 1, 'https://ror.org/01r779962 International Association of Research in Income and Wealth'),
(65374, 'https://ror.org/01f1xfq83', 'en', 1, 'https://ror.org/01f1xfq83 Tompkins Conservation'),
(65375, 'https://ror.org/055zc7842', 'en', 1, 'https://ror.org/055zc7842 Rockaway Waterfront Alliance'),
(65376, 'https://ror.org/035few730', 'en', 1, 'https://ror.org/035few730 International Society of Indoor Air Quality and Climate'),
(65377, 'https://ror.org/033famg97', 'en', 1, 'https://ror.org/033famg97 Association for Regional and International Underground Storage'),
(65378, 'https://ror.org/02ed4cj64', 'no_lang_code', 1, 'https://ror.org/02ed4cj64 Creative Commons'),
(65379, 'https://ror.org/036cy3843', 'en', 1, 'https://ror.org/036cy3843 Film Independent'),
(65380, 'https://ror.org/034mx6v37', 'en', 1, 'https://ror.org/034mx6v37 L.A. Theatre Works'),
(65381, 'https://ror.org/03g7k3c05', 'en', 1, 'https://ror.org/03g7k3c05 Art of Problem Solving Initiative'),
(65382, 'https://ror.org/03yccxk95', 'en', 1, 'https://ror.org/03yccxk95 Sponsors for Educational Opportunity'),
(65383, 'https://ror.org/020dfcj86', 'no_lang_code', 1, 'https://ror.org/020dfcj86 Manhattan Theatre Club (United States)'),
(65384, 'https://ror.org/02pcqkp81', 'no_lang_code', 1, 'https://ror.org/02pcqkp81 Artstor'),
(65385, 'https://ror.org/05qtmcx34', 'en', 1, 'https://ror.org/05qtmcx34 Environmental Justice Foundation'),
(65386, 'https://ror.org/04xrvq619', 'en', 1, 'https://ror.org/04xrvq619 StoryCorps'),
(65387, 'https://ror.org/014bh6885', 'en', 1, 'https://ror.org/014bh6885 Association of Metropolitan Water Agencies'),
(65388, 'https://ror.org/01vpvpx53', 'en', 1, 'https://ror.org/01vpvpx53 Technology Affinity Group'),
(65389, 'https://ror.org/01asjpz33', 'en', 1, 'https://ror.org/01asjpz33 Friends of the National Libraries'),
(65390, 'https://ror.org/03cwgd676', 'en', 1, 'https://ror.org/03cwgd676 National Information Standards Organization'),
(65391, 'https://ror.org/04d0xbz55', 'en', 1, 'https://ror.org/04d0xbz55 Behavioral Science & Policy Association'),
(65392, 'https://ror.org/005qxjw75', 'en', 1, 'https://ror.org/005qxjw75 Habitat for Humanity of Collier County'),
(65393, 'https://ror.org/01m52ey02', 'en', 1, 'https://ror.org/01m52ey02 Science Communication Institute'),
(65394, 'https://ror.org/04ddf4k47', 'en', 1, 'https://ror.org/04ddf4k47 Benefits Data Trust'),
(65395, 'https://ror.org/00wmyyg64', 'en', 1, 'https://ror.org/00wmyyg64 History & Policy'),
(65396, 'https://ror.org/05f7d9x89', 'en', 1, 'https://ror.org/05f7d9x89 NYC H2O'),
(65397, 'https://ror.org/03bmc1y32', 'en', 1, 'https://ror.org/03bmc1y32 Hope and Homes for Children'),
(65398, 'https://ror.org/03m3za047', 'en', 1, 'https://ror.org/03m3za047 Pecan Street'),
(65399, 'https://ror.org/00ye1p368', 'en', 1, 'https://ror.org/00ye1p368 Habitat for Humanity'),
(65400, 'https://ror.org/00659aj19', 'en', 1, 'https://ror.org/00659aj19 Philanthropy New York'),
(65401, 'https://ror.org/023j0tg36', 'en', 1, 'https://ror.org/023j0tg36 United States Association for Energy Economics'),
(65402, 'https://ror.org/00pdq3d37', 'en', 1, 'https://ror.org/00pdq3d37 Center for State and Local Government Excellence'),
(65403, 'https://ror.org/04qc4xv44', 'en', 1, 'https://ror.org/04qc4xv44 Institute for Strategic Dialogue'),
(65404, 'https://ror.org/01q53cr93', 'en', 1, 'https://ror.org/01q53cr93 New York City Arts in Education Roundtable'),
(65405, 'https://ror.org/00900hh96', 'no_lang_code', 1, 'https://ror.org/00900hh96 Washington Monthly (United States)'),
(65406, 'https://ror.org/0018yg518', 'en', 1, 'https://ror.org/0018yg518 Phoenix Bioinformatics'),
(65407, 'https://ror.org/037fbyh64', 'en', 1, 'https://ror.org/037fbyh64 Israel Antiquities Authority רשות העתיקות داﺌرة الآثار'),
(65408, 'https://ror.org/00w43nz28', 'en', 1, 'https://ror.org/00w43nz28 Clean Air Task Force'),
(65409, 'https://ror.org/05k460e55', 'en', 1, 'https://ror.org/05k460e55 Planetwork'),
(65410, 'https://ror.org/04kwv3995', 'en', 1, 'https://ror.org/04kwv3995 Council of Professional Associations on Federal Statistics'),
(65411, 'https://ror.org/04wm6mg86', 'en', 1, 'https://ror.org/04wm6mg86 Private Capital Research Institute'),
(65412, 'https://ror.org/045029d66', 'en', 1, 'https://ror.org/045029d66 John Muir Trust'),
(65413, 'https://ror.org/02m2pq682', 'en', 1, 'https://ror.org/02m2pq682 Open Space Institute'),
(65414, 'https://ror.org/02z2n2043', 'en', 1, 'https://ror.org/02z2n2043 Kent Wildlife Trust'),
(65415, 'https://ror.org/02s8kjs61', 'no_lang_code', 1, 'https://ror.org/02s8kjs61 Ensemble Studio Theatre (United States)'),
(65416, 'https://ror.org/05atyq880', 'en', 1, 'https://ror.org/05atyq880 ProPublica'),
(65417, 'https://ror.org/00a1a6c68', 'en', 1, 'https://ror.org/00a1a6c68 Committee on Capital Markets Regulation'),
(65418, 'https://ror.org/042k0ht81', 'en', 1, 'https://ror.org/042k0ht81 Manhattan District Attorney''s Office'),
(65419, 'https://ror.org/040hdea82', 'en', 1, 'https://ror.org/040hdea82 Coolidge Corner Theatre'),
(65420, 'https://ror.org/05hfx5z17', 'en', 1, 'https://ror.org/05hfx5z17 Public Radio Exchange'),
(65421, 'https://ror.org/00bsmqd31', 'en', 1, 'https://ror.org/00bsmqd31 Connecticut Public Broadcasting'),
(65422, 'https://ror.org/04zg20k47', 'en', 1, 'https://ror.org/04zg20k47 Public.Resource.Org'),
(65423, 'https://ror.org/025maj953', 'no_lang_code', 1, 'https://ror.org/025maj953 LyondellBasell (Germany)'),
(65424, 'https://ror.org/00tha0b59', 'en', 1, 'https://ror.org/00tha0b59 Scholars at Risk'),
(65425, 'https://ror.org/01gn3jg46', 'en', 1, 'https://ror.org/01gn3jg46 Sussex Wildlife Trust'),
(65426, 'https://ror.org/031x5nm39', 'no_lang_code', 1, 'https://ror.org/031x5nm39 Bühler (China)'),
(65427, 'https://ror.org/01zd6tj24', 'no_lang_code', 1, 'https://ror.org/01zd6tj24 Ineos (Belgium)'),
(65428, 'https://ror.org/0468j3t74', 'no_lang_code', 1, 'https://ror.org/0468j3t74 Panasonic (Russia)'),
(65429, 'https://ror.org/00tf0tc42', 'no_lang_code', 1, 'https://ror.org/00tf0tc42 Beiersdorf (Russia) БайерсГорф'),
(65430, 'https://ror.org/027cwk965', 'no_lang_code', 1, 'https://ror.org/027cwk965 Bühler (Austria)'),
(65431, 'https://ror.org/01989c577', 'no_lang_code', 1, 'https://ror.org/01989c577 EVRAZ (Russia)'),
(65432, 'https://ror.org/00gqs6306', 'no_lang_code', 1, 'https://ror.org/00gqs6306 Dolby (Sweden)'),
(65433, 'https://ror.org/05fd8mt79', 'no_lang_code', 1, 'https://ror.org/05fd8mt79 Casale (Switzerland)'),
(65434, 'https://ror.org/01qxec746', 'no_lang_code', 1, 'https://ror.org/01qxec746 Renault (Russia) Рено'),
(65435, 'https://ror.org/00qq6rm15', 'en', 1, 'https://ror.org/00qq6rm15 The Zalman Shazar Center ×ž×Ø×›×– זלמן שזר'),
(65436, 'https://ror.org/00a37dc87', 'en', 1, 'https://ror.org/00a37dc87 Pacific Standard'),
(65437, 'https://ror.org/03acf5r27', 'no_lang_code', 1, 'https://ror.org/03acf5r27 Siemens (Russia) Дименс'),
(65438, 'https://ror.org/047k73g37', 'no_lang_code', 1, 'https://ror.org/047k73g37 Mikron (Russia) ŠœŠøŠŗŃ€Š¾Š½'),
(65439, 'https://ror.org/007yv1g81', 'no_lang_code', 1, 'https://ror.org/007yv1g81 Teijin (Netherlands)'),
(65440, 'https://ror.org/05kt4a843', 'no_lang_code', 1, 'https://ror.org/05kt4a843 Owens Corning (Finland)'),
(65441, 'https://ror.org/0317tcf14', 'no_lang_code', 1, 'https://ror.org/0317tcf14 Vesuvius (United States)'),
(65442, 'https://ror.org/03rfn7203', 'no_lang_code', 1, 'https://ror.org/03rfn7203 Vesuvius (Belgium)'),
(65443, 'https://ror.org/01wmkgr68', 'no_lang_code', 1, 'https://ror.org/01wmkgr68 Link (Germany)'),
(65444, 'https://ror.org/035gcxp73', 'no_lang_code', 1, 'https://ror.org/035gcxp73 Foxlink (China) ę­£å““ē²¾åÆ†å·„äøš'),
(65445, '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'),
(65446, 'https://ror.org/00yec5b88', 'no_lang_code', 1, 'https://ror.org/00yec5b88 Macronix International (China)'),
(65447, 'https://ror.org/00wjyb955', 'no_lang_code', 1, 'https://ror.org/00wjyb955 Million Tech Development (China)'),
(65448, 'https://ror.org/05teyj036', 'no_lang_code', 1, 'https://ror.org/05teyj036 Karl Mayer (China) å”å°”čæˆč€¶'),
(65449, 'https://ror.org/01rhasd23', 'no_lang_code', 1, 'https://ror.org/01rhasd23 Mettler-Toledo (China) 梅特勒-ę‰˜åˆ©å¤š'),
(65450, 'https://ror.org/04xrcx824', 'no_lang_code', 1, 'https://ror.org/04xrcx824 NEC (China) ę—„ęœ¬é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(65451, 'https://ror.org/05sqbw136', 'no_lang_code', 1, 'https://ror.org/05sqbw136 Panasonic (China) ę¾äø‹ē”µå™Ø'),
(65452, 'https://ror.org/0503q8b31', 'no_lang_code', 1, 'https://ror.org/0503q8b31 II-VI (China)'),
(65453, 'https://ror.org/012xz1202', 'no_lang_code', 1, 'https://ror.org/012xz1202 Primax Electronics (China) č‡“ä¼øē§‘ęŠ€'),
(65454, 'https://ror.org/01b0cs606', 'no_lang_code', 1, 'https://ror.org/01b0cs606 Unilever (China) č”åˆåˆ©åŽ'),
(65455, 'https://ror.org/05ta4fp83', 'no_lang_code', 1, 'https://ror.org/05ta4fp83 Quanta Computer (China) 广达电脑'),
(65456, 'https://ror.org/03sjwka68', 'no_lang_code', 1, 'https://ror.org/03sjwka68 Realtek (China) ē‘žę˜±åŠå°Žé«”č‚”ä»½ęœ‰é™å…¬åø'),
(65457, 'https://ror.org/05k58k622', 'no_lang_code', 1, 'https://ror.org/05k58k622 Sunonwealth Electric Machine Industry (China)'),
(65458, 'https://ror.org/00b285s97', 'no_lang_code', 1, 'https://ror.org/00b285s97 ON Semiconductor (China)'),
(65459, 'https://ror.org/0034dyb91', 'no_lang_code', 1, 'https://ror.org/0034dyb91 ThyssenKrupp (China) č’‚ę£®å…‹č™ä¼Æč‚”ä»½å…¬åø'),
(65460, 'https://ror.org/01w7vxz02', 'no_lang_code', 1, 'https://ror.org/01w7vxz02 Wistron (China) ē·Æå‰µč³‡é€šč‚”ä»½ęœ‰é™å…¬åø'),
(65461, 'https://ror.org/00w6eec53', 'no_lang_code', 1, 'https://ror.org/00w6eec53 Medtronic (India)'),
(65462, 'https://ror.org/007ffat30', 'no_lang_code', 1, 'https://ror.org/007ffat30 Ajanta Pharma (India) ą¤…ą¤œą¤‚ą¤¤ą¤¾ ą¤«ą¤¾ą¤°ą„ą¤®ą¤¾ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(65463, 'https://ror.org/04kmk1j57', 'no_lang_code', 1, 'https://ror.org/04kmk1j57 Inventia (India)'),
(65464, 'https://ror.org/02axkfm22', 'no_lang_code', 1, 'https://ror.org/02axkfm22 Alarsin (India)'),
(65465, 'https://ror.org/04kwy9224', 'no_lang_code', 1, 'https://ror.org/04kwy9224 Alkem (India)'),
(65466, 'https://ror.org/04et4nb32', 'en', 1, 'https://ror.org/04et4nb32 Infinity Vision Dallas'),
(65467, 'https://ror.org/04qq4mg80', 'no_lang_code', 1, 'https://ror.org/04qq4mg80 ITC (India)'),
(65468, 'https://ror.org/012x2n652', 'en', 1, 'https://ror.org/012x2n652 Australian Council for Educational Research'),
(65469, 'https://ror.org/03ht1rb73', 'en', 1, 'https://ror.org/03ht1rb73 Aurous HealthCare'),
(65470, 'https://ror.org/05hb5sg68', 'no_lang_code', 1, 'https://ror.org/05hb5sg68 Johnson & Johnson (India) ą¤œą„‰ą¤Øą„ą¤øą¤Ø आणि ą¤œą„‰ą¤Øą„ą¤øą¤Ø ą¤Ŗą„ą¤°ą¤¾ą¤Æą¤µą„ą¤¹ą„‡ą¤Ÿ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤” ą¤œą„‰ą¤Øą„ą¤øą¤Ø और ą¤œą„‰ą¤Øą„ą¤øą¤Ø ą¤Ŗą„ą¤°ą¤¾ą¤Æą„‹ą¤œą¤æą¤¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤” ą²œą²¾ą²Øą³ą²øą²Øą³ ą²®ą²¤ą³ą²¤ą³ ą²œą²¾ą²Øą³ą²øą²Øą³ ą²Ŗą³ą²°ą³ˆą²µą³‡ą²Ÿą³ ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(65471, 'https://ror.org/02b3rrn27', 'no_lang_code', 1, 'https://ror.org/02b3rrn27 JSS Medical Research (India) ą¤œą„‡ą¤ą¤øą¤ą¤ø ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤°ą¤æą¤øą¤°ą„ą¤š इंऔिया ą¤Ŗą„ą¤°ą¤¾ą„¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤” ą²œą³†ą²Žą²øą³ą²Žą²øą³ ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ಸಂಶೋಧನಾ ಭಾರತ ą²Ŗą³ą²°ą³ˆ. ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(65472, 'https://ror.org/02sb0kr07', 'no_lang_code', 1, 'https://ror.org/02sb0kr07 Ayush Arihant (India) ą¤†ą¤Æą„ą¤· अरिहंत ą¤‡ą¤‚ą¤”ą¤øą„ą¤Ÿą„ą¤°ą„€ą¤œ'),
(65473, 'https://ror.org/020js1x50', 'no_lang_code', 1, 'https://ror.org/020js1x50 Baxter (India)'),
(65474, 'https://ror.org/03fgnpp77', 'no_lang_code', 1, 'https://ror.org/03fgnpp77 Syneos Health (India)'),
(65475, 'https://ror.org/03yq9y457', 'no_lang_code', 1, 'https://ror.org/03yq9y457 Bharat Serums and Vaccines (India)'),
(65476, 'https://ror.org/006gmcn85', 'en', 1, 'https://ror.org/006gmcn85 Kelkar Education Trust''s Scientific Research Centre'),
(65477, 'https://ror.org/01qm74v44', 'no_lang_code', 1, 'https://ror.org/01qm74v44 BIOCAD (India)'),
(65478, 'https://ror.org/038vs8686', 'en', 1, 'https://ror.org/038vs8686 Iraqi Association for Psychotherapy Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ© للعلاج Ų§Ł„Ł†ŁŲ³ŁŠ'),
(65479, 'https://ror.org/04254vt45', 'no_lang_code', 1, 'https://ror.org/04254vt45 Klinera (India) ą¤•ą„ą¤²ą„€ą¤°ą¤æą¤Æą¤¾ निगम भारत ąŖ•ą«ąŖ²ąŖæąŖąŖ°ąŖ¾ ąŖ•ą«‹ąŖ°ą«ąŖŖą«‹ąŖ°ą«‡ąŖ¶ąŖØ ąŖ‡ąŖØą«ąŖ”ąŖæąŖÆąŖ¾ ą²•ą³ą²²ą²æą²Øą³ą²‡ą²°ą²¾ ą²•ą²¾ą²°ą³ą²Ŗą³Šą²°ą³‡ą²·ą²Øą³ ಇಂಔಿಯಾ'),
(65480, 'https://ror.org/02nbv7m70', 'no_lang_code', 1, 'https://ror.org/02nbv7m70 Biogen (India)'),
(65481, 'https://ror.org/00nw2x646', 'no_lang_code', 1, 'https://ror.org/00nw2x646 LG (India) ą¤²ą¤œą„€ लाइफ ą¤øą¤¾ą¤‡ą¤‚ą¤øą„‡ą¤œ इंऔिया ą¤Ŗą„ą¤°ą¤¾ą„¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤” ą²²ą³‡ą²œą²æ ą²²ą³ˆą²«ą³ ą²øą³ˆą²Øą³ą²øą²øą³ ಇಂಔಿಯಾ ą²Ŗą³ą²°ą³ˆ. ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(65482, 'https://ror.org/01xyf9430', 'no_lang_code', 1, 'https://ror.org/01xyf9430 Boehringer Ingelheim (India)'),
(65483, 'https://ror.org/0243az357', 'no_lang_code', 1, 'https://ror.org/0243az357 LifeForce Homoeopathy (India)'),
(65484, 'https://ror.org/01zyz5223', 'no_lang_code', 1, 'https://ror.org/01zyz5223 Bonyf (Liechtenstein)'),
(65485, 'https://ror.org/050777m95', 'en', 1, 'https://ror.org/050777m95 Hebei Semiconductor Research Institute'),
(65486, 'https://ror.org/04b2w5n94', 'no_lang_code', 1, 'https://ror.org/04b2w5n94 Lotus Labs (India)'),
(65487, 'https://ror.org/03ffr1d28', 'no_lang_code', 1, 'https://ror.org/03ffr1d28 Claims (India)'),
(65488, 'https://ror.org/03mmctw95', 'no_lang_code', 1, 'https://ror.org/03mmctw95 MSN Laboratories (India)'),
(65489, 'https://ror.org/02nh1m314', 'no_lang_code', 1, 'https://ror.org/02nh1m314 Ravenbhel Healthcare (India)'),
(65490, 'https://ror.org/02knxf196', 'no_lang_code', 1, 'https://ror.org/02knxf196 TAKE Solutions (India)'),
(65491, 'https://ror.org/05wenf776', 'no_lang_code', 1, 'https://ror.org/05wenf776 Marico (India)'),
(65492, 'https://ror.org/00m0rkq68', 'no_lang_code', 1, 'https://ror.org/00m0rkq68 Mascot Spincontrol (India)'),
(65493, 'https://ror.org/03wgjx693', 'no_lang_code', 1, 'https://ror.org/03wgjx693 Maya Clinicals (India)'),
(65494, 'https://ror.org/01vzdsm24', 'no_lang_code', 1, 'https://ror.org/01vzdsm24 Medpace (India)'),
(65495, 'https://ror.org/042pg9146', 'no_lang_code', 1, 'https://ror.org/042pg9146 Micro Labs (India) ą²®ą³†ą³–ą²•ą³ą²°ą³†ą³‚ą³• ą²²ą³ą²Æą²¾ą²¬ą³ą²øą³ ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(65496, 'https://ror.org/025s0zm80', 'no_lang_code', 1, 'https://ror.org/025s0zm80 MS Clinical Research (India)'),
(65497, 'https://ror.org/01yknwh75', 'no_lang_code', 1, 'https://ror.org/01yknwh75 Cadila Pharmaceuticals (India)'),
(65498, 'https://ror.org/05kh7ew82', 'no_lang_code', 1, 'https://ror.org/05kh7ew82 NexusCRO (India)'),
(65499, 'https://ror.org/00w3s9s05', 'no_lang_code', 1, 'https://ror.org/00w3s9s05 CIDP Biotech (India)'),
(65500, 'https://ror.org/03tkqz180', 'no_lang_code', 1, 'https://ror.org/03tkqz180 Cipla (United States)'),
(65501, 'https://ror.org/05dw07152', 'no_lang_code', 1, 'https://ror.org/05dw07152 Novo Nordisk (India)'),
(65502, 'https://ror.org/00stcbe47', 'en', 1, 'https://ror.org/00stcbe47 Consortium Clinical Research'),
(65503, 'https://ror.org/0497jkw73', 'no_lang_code', 1, 'https://ror.org/0497jkw73 Olive Lifesciences (India)'),
(65504, 'https://ror.org/02tzdnt26', 'no_lang_code', 1, 'https://ror.org/02tzdnt26 Sante Mernaud (India)'),
(65505, 'https://ror.org/02vef8c56', 'no_lang_code', 1, 'https://ror.org/02vef8c56 Opto Circuits (India)'),
(65506, 'https://ror.org/01qtea582', 'no_lang_code', 1, 'https://ror.org/01qtea582 PAREXEL International (India)'),
(65507, 'https://ror.org/00g553t68', 'no_lang_code', 1, 'https://ror.org/00g553t68 Semler Research Center (India)'),
(65508, 'https://ror.org/02t40d841', 'no_lang_code', 1, 'https://ror.org/02t40d841 Serdia Pharmaceuticals (India)'),
(65509, 'https://ror.org/04f68cb23', 'en', 1, 'https://ror.org/04f68cb23 Patanjali Research Foundation'),
(65510, 'https://ror.org/043zsj038', 'no_lang_code', 1, 'https://ror.org/043zsj038 Sanofi (India) ą¤øą¤Øą„‹ą¤«ą„€'),
(65511, 'https://ror.org/0435vfk93', 'no_lang_code', 1, 'https://ror.org/0435vfk93 Philips (India)'),
(65512, 'https://ror.org/043k84k36', 'no_lang_code', 1, 'https://ror.org/043k84k36 Enovate Biolife (India)'),
(65513, 'https://ror.org/00s8enb31', 'no_lang_code', 1, 'https://ror.org/00s8enb31 Spectrum Clinical Research (India)'),
(65514, 'https://ror.org/039e7pd44', 'no_lang_code', 1, 'https://ror.org/039e7pd44 Pharmaceutical Product Development (India)'),
(65515, 'https://ror.org/01rwmh192', 'no_lang_code', 1, 'https://ror.org/01rwmh192 Excel Life Sciences (India)'),
(65516, 'https://ror.org/00n5daa95', 'en', 1, 'https://ror.org/00n5daa95 Spectrum Healthcare ą¤øą„ą¤Ŗą„‡ą¤•ą„ą¤Ÿą„ą¤°ą¤® ą¤†ą¤°ą„‹ą¤—ą„ą¤Æ'),
(65517, 'https://ror.org/049kc3j58', 'en', 1, 'https://ror.org/049kc3j58 PRA Health Sciences'),
(65518, 'https://ror.org/05be7j249', 'no_lang_code', 1, 'https://ror.org/05be7j249 Eye Tech Care (France)'),
(65519, 'https://ror.org/03q6e5e49', 'no_lang_code', 1, 'https://ror.org/03q6e5e49 Stempeutics (India)'),
(65520, 'https://ror.org/032dfqd82', 'no_lang_code', 1, 'https://ror.org/032dfqd82 Precise (India)'),
(65521, 'https://ror.org/013bmyp84', 'en', 1, 'https://ror.org/013bmyp84 Government of Himachal Pradesh हिमाचल ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ सचिवालय'),
(65522, 'https://ror.org/00szk3r18', 'no_lang_code', 1, 'https://ror.org/00szk3r18 IQVIA (India)'),
(65523, 'https://ror.org/03s9q6118', 'no_lang_code', 1, 'https://ror.org/03s9q6118 ICBio (India)'),
(65524, 'https://ror.org/05ft43x45', 'no_lang_code', 1, 'https://ror.org/05ft43x45 Themis (India)'),
(65525, 'https://ror.org/05qm21180', 'en', 1, 'https://ror.org/05qm21180 Beijing Advanced Sciences and Innovation Center åŒ—äŗ¬ē»¼åˆē ”ē©¶äø­åæƒ'),
(65526, 'https://ror.org/05jrea685', 'en', 1, 'https://ror.org/05jrea685 Center for Agricultural Research å†œäøšęŠ€ęœÆäø­åæƒ'),
(65527, 'https://ror.org/00t5sva18', 'en', 1, 'https://ror.org/00t5sva18 Center for Agricultural Resources Research å†œäøščµ„ęŗē ”ē©¶äø­åæƒ'),
(65528, 'https://ror.org/01ycn3984', 'en', 1, 'https://ror.org/01ycn3984 Changchun Observatory é•æę˜„äŗŗé€ å«ę˜Ÿč§‚ęµ‹ē«™'),
(65529, 'https://ror.org/02jmf0570', 'en', 1, 'https://ror.org/02jmf0570 Changsha Mineral Resources Exploration Center é•æę²™ēŸæäŗ§čµ„ęŗå‹˜ęŸ„äø­åæƒ'),
(65530, 'https://ror.org/0288css53', 'en', 1, 'https://ror.org/0288css53 Chengdu Documentation and Information Center ęˆéƒ½ę–‡ēŒ®ęƒ…ęŠ„äø­åæƒ'),
(65531, 'https://ror.org/02z2gfm30', 'en', 1, 'https://ror.org/02z2gfm30 Data Assurance and Communication Security äø­å›½ē§‘å­¦é™¢ę•°ę®äøŽé€šäæ”äæęŠ¤ē ”ē©¶ę•™č‚²äø­åæƒ'),
(65532, 'https://ror.org/02j79w189', 'en', 1, 'https://ror.org/02j79w189 Ram Poly Clinic'),
(65533, 'https://ror.org/03jzw9k83', 'no_lang_code', 1, 'https://ror.org/03jzw9k83 Torrent Pharma (India)'),
(65534, 'https://ror.org/005bzjd21', 'no_lang_code', 1, 'https://ror.org/005bzjd21 Roche (India)'),
(65535, 'https://ror.org/011byjj52', 'no_lang_code', 1, 'https://ror.org/011byjj52 Troikaa (India)'),
(65536, 'https://ror.org/05tb8hj85', 'no_lang_code', 1, 'https://ror.org/05tb8hj85 Arya Vaidya Sala'),
(65537, 'https://ror.org/022ftcx89', 'no_lang_code', 1, 'https://ror.org/022ftcx89 Zimmer Biomet (India)'),
(65538, 'https://ror.org/00xd7fg81', 'no_lang_code', 1, 'https://ror.org/00xd7fg81 Vedic Lifesciences (India)'),
(65539, 'https://ror.org/045yv2772', 'no_lang_code', 1, 'https://ror.org/045yv2772 Virchow BioTech (India)'),
(65540, 'https://ror.org/0200k4z47', 'no_lang_code', 1, 'https://ror.org/0200k4z47 Amneal (Switzerland)'),
(65541, 'https://ror.org/00rhats79', 'no_lang_code', 1, 'https://ror.org/00rhats79 Abbott (Singapore)'),
(65542, 'https://ror.org/00q9tch90', 'no_lang_code', 1, 'https://ror.org/00q9tch90 Amneal (India)'),
(65543, 'https://ror.org/0330hwr77', 'en', 1, 'https://ror.org/0330hwr77 AO Foundation'),
(65544, 'https://ror.org/00jap5g05', 'en', 1, 'https://ror.org/00jap5g05 AO Foundation'),
(65545, 'https://ror.org/013eh1m30', 'no_lang_code', 1, 'https://ror.org/013eh1m30 Astellas Pharma (India)'),
(65546, 'https://ror.org/023p4rz42', 'no_lang_code', 1, 'https://ror.org/023p4rz42 AstraZeneca (Singapore)'),
(65547, 'https://ror.org/04f5a5m96', 'no_lang_code', 1, 'https://ror.org/04f5a5m96 Apotex (India)'),
(65548, 'https://ror.org/04k92fs76', 'no_lang_code', 1, 'https://ror.org/04k92fs76 Amgen (India)'),
(65549, 'https://ror.org/03cky5d09', 'no_lang_code', 1, 'https://ror.org/03cky5d09 Amgen (Australia)'),
(65550, 'https://ror.org/03bhmb905', 'no_lang_code', 1, 'https://ror.org/03bhmb905 Amgen (Belgium)');
INSERT INTO `rors` VALUES
(65551, 'https://ror.org/0339vxy90', 'no_lang_code', 1, 'https://ror.org/0339vxy90 Becton Dickinson (India)'),
(65552, 'https://ror.org/033aqz496', 'no_lang_code', 1, 'https://ror.org/033aqz496 Biotronik (India)'),
(65553, 'https://ror.org/0597afe55', 'no_lang_code', 1, 'https://ror.org/0597afe55 BIOCAD (Russia)'),
(65554, 'https://ror.org/00rmh4k73', 'no_lang_code', 1, 'https://ror.org/00rmh4k73 Evotec (India)'),
(65555, 'https://ror.org/05hczvf86', 'no_lang_code', 1, 'https://ror.org/05hczvf86 Boehringer Ingelheim (China) å‹ƒęž—ę ¼ę®·ę ¼ēæ°'),
(65556, 'https://ror.org/03e9p3c51', 'no_lang_code', 1, 'https://ror.org/03e9p3c51 Boehringer Ingelheim (South Korea) ķ•œźµ­ė² ė§ź±°ģøź²”ķ•˜ģž„'),
(65557, 'https://ror.org/00fsz9s67', 'no_lang_code', 1, 'https://ror.org/00fsz9s67 Boehringer Ingelheim (Taiwan) å°ē£ē™¾éˆä½³ę®·ę ¼ēæ°č‚”ä»½ęœ‰é™å…¬åø'),
(65558, 'https://ror.org/04nn86d34', 'no_lang_code', 1, 'https://ror.org/04nn86d34 Mondelēz International (India)'),
(65559, 'https://ror.org/0159kpq91', 'no_lang_code', 1, 'https://ror.org/0159kpq91 Zydus Pharmaceuticals (United States)'),
(65560, 'https://ror.org/0048j1p96', 'no_lang_code', 1, 'https://ror.org/0048j1p96 Janssen (France)'),
(65561, 'https://ror.org/038rd9v60', 'no_lang_code', 1, 'https://ror.org/038rd9v60 Janssen (Germany)'),
(65562, 'https://ror.org/05py8xn22', 'no_lang_code', 1, 'https://ror.org/05py8xn22 Janssen (Hungary)'),
(65563, 'https://ror.org/01dcg9845', 'no_lang_code', 1, 'https://ror.org/01dcg9845 Janssen (Ireland)'),
(65564, 'https://ror.org/05sdrja69', 'no_lang_code', 1, 'https://ror.org/05sdrja69 Janssen (Italy)'),
(65565, 'https://ror.org/015vve507', 'no_lang_code', 1, 'https://ror.org/015vve507 Colgate-Palmolive (India)'),
(65566, 'https://ror.org/04cxegr21', 'no_lang_code', 1, 'https://ror.org/04cxegr21 Janssen (Netherlands)'),
(65567, 'https://ror.org/05af73403', 'no_lang_code', 1, 'https://ror.org/05af73403 Janssen (United States)'),
(65568, 'https://ror.org/03ey31514', 'no_lang_code', 1, 'https://ror.org/03ey31514 CliniRx (India)'),
(65569, 'https://ror.org/01zfjxa58', 'no_lang_code', 1, 'https://ror.org/01zfjxa58 Covance (India)'),
(65570, 'https://ror.org/04kfvhz20', 'no_lang_code', 1, 'https://ror.org/04kfvhz20 LivaNova (United States)'),
(65571, 'https://ror.org/03346b772', 'no_lang_code', 1, 'https://ror.org/03346b772 Daiichi Sankyo (India)'),
(65572, 'https://ror.org/028xc0m13', 'no_lang_code', 1, 'https://ror.org/028xc0m13 Dhathri Ayurveda (India)'),
(65573, 'https://ror.org/03jwdnh41', 'no_lang_code', 1, 'https://ror.org/03jwdnh41 Arbro Pharmaceuticals (India)'),
(65574, 'https://ror.org/01tp0e450', 'en', 1, 'https://ror.org/01tp0e450 Drugs for Neglected Diseases Initiative India'),
(65575, 'https://ror.org/01wtq2m33', 'no_lang_code', 1, 'https://ror.org/01wtq2m33 DSM (India)'),
(65576, 'https://ror.org/030dg0748', 'no_lang_code', 1, 'https://ror.org/030dg0748 Navitas Life Sciences (India)'),
(65577, 'https://ror.org/02kd16s45', 'no_lang_code', 1, 'https://ror.org/02kd16s45 OPKO Health (Ireland)'),
(65578, 'https://ror.org/006tkeh25', 'no_lang_code', 1, 'https://ror.org/006tkeh25 Icon (India) ą®ą®•ą®¾ą®©ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ ą®Ŗą®æą®°ąÆˆą®µąÆ‡ą®ŸąÆ'),
(65579, 'https://ror.org/03r86y726', 'no_lang_code', 1, 'https://ror.org/03r86y726 Fresenius Kabi (China)'),
(65580, 'https://ror.org/04z11gw67', 'no_lang_code', 1, 'https://ror.org/04z11gw67 Fresenius Medical Care (India)'),
(65581, 'https://ror.org/01cj13d80', 'no_lang_code', 1, 'https://ror.org/01cj13d80 Frutarom (Netherlands)'),
(65582, 'https://ror.org/04v9w1q77', 'no_lang_code', 1, 'https://ror.org/04v9w1q77 Kraft Heinz (India)'),
(65583, 'https://ror.org/002xf8h28', 'en', 1, 'https://ror.org/002xf8h28 Tobacco Harm Reduction 4 Life'),
(65584, 'https://ror.org/04a35vw13', 'no_lang_code', 1, 'https://ror.org/04a35vw13 Janssen (India)'),
(65585, 'https://ror.org/01cjdx044', 'no_lang_code', 1, 'https://ror.org/01cjdx044 Johnson & Johnson (Singapore)'),
(65586, 'https://ror.org/01qypmk37', 'no_lang_code', 1, 'https://ror.org/01qypmk37 Abbott (Chile)'),
(65587, 'https://ror.org/019yg2621', 'en', 1, 'https://ror.org/019yg2621 Lady Tata Memorial Trust'),
(65588, 'https://ror.org/01wxsyf11', 'no_lang_code', 1, 'https://ror.org/01wxsyf11 Lupin Pharmaceuticals (United States)'),
(65589, 'https://ror.org/02m7bcm44', 'no_lang_code', 1, 'https://ror.org/02m7bcm44 Medtronic (China) ē¾Žę•¦åŠ›'),
(65590, 'https://ror.org/03w4e6p22', 'no_lang_code', 1, 'https://ror.org/03w4e6p22 Meiji (India)'),
(65591, 'https://ror.org/05cq2am04', 'no_lang_code', 1, 'https://ror.org/05cq2am04 Merck (Singapore)'),
(65592, 'https://ror.org/042b0hg67', 'no_lang_code', 1, 'https://ror.org/042b0hg67 PepsiCo (India)'),
(65593, 'https://ror.org/05vft1j67', 'no_lang_code', 1, 'https://ror.org/05vft1j67 Cordis Automation (Netherlands)'),
(65594, 'https://ror.org/01cj5hx77', 'en', 1, 'https://ror.org/01cj5hx77 Atmiya University'),
(65595, 'https://ror.org/007n4g377', 'no_lang_code', 1, 'https://ror.org/007n4g377 Pharmacosmos (United States)'),
(65596, 'https://ror.org/04s5pra58', 'no_lang_code', 1, 'https://ror.org/04s5pra58 NestlƩ (India)'),
(65597, 'https://ror.org/027yjc737', 'en', 1, 'https://ror.org/027yjc737 United States Preventive Services Task Force'),
(65598, 'https://ror.org/02jwva135', 'no_lang_code', 1, 'https://ror.org/02jwva135 Piramal (United States)'),
(65599, 'https://ror.org/02yjv7f10', 'en', 1, 'https://ror.org/02yjv7f10 Population Services International'),
(65600, 'https://ror.org/01bnchp17', 'no_lang_code', 1, 'https://ror.org/01bnchp17 Procter & Gamble (India)'),
(65601, 'https://ror.org/05j1wft12', 'no_lang_code', 1, 'https://ror.org/05j1wft12 Taube Koret Center'),
(65602, 'https://ror.org/02wxyms40', 'no_lang_code', 1, 'https://ror.org/02wxyms40 Roquette FrĆØres (India)'),
(65603, 'https://ror.org/05j5wde68', 'en', 1, 'https://ror.org/05j5wde68 Eterna Massive Open Laboratory'),
(65604, 'https://ror.org/015drfm81', 'no_lang_code', 1, 'https://ror.org/015drfm81 Microsoft (Denmark)'),
(65605, 'https://ror.org/05etjgx39', 'en', 1, 'https://ror.org/05etjgx39 Council for International Exchange of Scholars'),
(65606, 'https://ror.org/00xgd4p18', 'no_lang_code', 1, 'https://ror.org/00xgd4p18 Knowledge Unlatched (Germany)'),
(65607, 'https://ror.org/04fgq7x14', 'no_lang_code', 1, 'https://ror.org/04fgq7x14 Smith & Nephew (Australia)'),
(65608, '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'),
(65609, 'https://ror.org/0150cj610', 'en', 1, 'https://ror.org/0150cj610 Program for Appropriate Technology in Health'),
(65610, 'https://ror.org/05j88yh83', 'no_lang_code', 1, 'https://ror.org/05j88yh83 Qiagen (India)'),
(65611, 'https://ror.org/02j488654', 'no_lang_code', 1, 'https://ror.org/02j488654 Abbott (China) 雅培'),
(65612, 'https://ror.org/00dzggj72', 'no_lang_code', 1, 'https://ror.org/00dzggj72 Takeda (Singapore)'),
(65613, 'https://ror.org/041g7ma18', 'no_lang_code', 1, 'https://ror.org/041g7ma18 Course Hero (United States)'),
(65614, 'https://ror.org/05388c580', 'en', 1, 'https://ror.org/05388c580 United Nations Children''s Fund India'),
(65615, 'https://ror.org/02z2b4x26', 'no_lang_code', 1, 'https://ror.org/02z2b4x26 UCB Pharma (India)'),
(65616, 'https://ror.org/021vwsa16', 'no_lang_code', 1, 'https://ror.org/021vwsa16 Wockhardt (Switzerland)'),
(65617, 'https://ror.org/04k7seg51', 'en', 1, 'https://ror.org/04k7seg51 Alberta Kidney Disease Network'),
(65618, 'https://ror.org/0187f2d05', 'fr', 1, 'https://ror.org/0187f2d05 HƓpital PrivƩ Marseille Beauregard'),
(65619, 'https://ror.org/01sv85c76', 'it', 1, 'https://ror.org/01sv85c76 Centro Studi GISED'),
(65620, 'https://ror.org/02cnr9p90', 'en', 1, 'https://ror.org/02cnr9p90 Asian Pacific Society of Cardiology'),
(65621, 'https://ror.org/03chexd92', 'es', 1, 'https://ror.org/03chexd92 Clinica Rotger'),
(65622, 'https://ror.org/05d5yxq17', 'no_lang_code', 1, 'https://ror.org/05d5yxq17 Bayer (China) ę‹œč€³äø­å›½'),
(65623, 'https://ror.org/0271pep11', 'en', 1, 'https://ror.org/0271pep11 Beck Institute for Cognitive Behavior Therapy'),
(65624, 'https://ror.org/02zgswx90', 'en', 1, 'https://ror.org/02zgswx90 Athletic Edge Sports Medicine'),
(65625, 'https://ror.org/0142eak56', 'no_lang_code', 1, 'https://ror.org/0142eak56 Blueprint Medicines (United States)'),
(65626, 'https://ror.org/00emmzb12', 'no_lang_code', 1, 'https://ror.org/00emmzb12 Boehringer Ingelheim (Norway)'),
(65627, 'https://ror.org/05qw2ag88', 'no_lang_code', 1, 'https://ror.org/05qw2ag88 Congenomics (United States)'),
(65628, 'https://ror.org/00n9q5753', 'en', 1, 'https://ror.org/00n9q5753 Cancer Trials Australia'),
(65629, 'https://ror.org/01gacnq13', 'no_lang_code', 1, 'https://ror.org/01gacnq13 Quest Diagnostics (United Kingdom)'),
(65630, 'https://ror.org/05kbfwb79', 'en', 1, 'https://ror.org/05kbfwb79 Center for Disease Analysis'),
(65631, 'https://ror.org/053z9ab73', 'de', 1, 'https://ror.org/053z9ab73 Johanniter-Krankenhaus Bonn'),
(65632, 'https://ror.org/05xnw5k32', 'en', 1, 'https://ror.org/05xnw5k32 Center for Non-Communicable Diseases'),
(65633, 'https://ror.org/02zscxh03', 'en', 1, 'https://ror.org/02zscxh03 Hollywood Orthopaedic Group'),
(65634, 'https://ror.org/04mnty788', 'es', 1, 'https://ror.org/04mnty788 Servicio Diabetología Hospital Córdoba'),
(65635, 'https://ror.org/03471w967', 'fr', 1, 'https://ror.org/03471w967 HƓpital Larrey'),
(65636, 'https://ror.org/01vrded44', 'en', 1, 'https://ror.org/01vrded44 Hotel Dieu Shaver Health and Rehabilitation Centre'),
(65637, 'https://ror.org/009hm2720', 'en', 1, 'https://ror.org/009hm2720 Laboratory for Biomedical Neurosciences'),
(65638, 'https://ror.org/02pwhra18', 'no_lang_code', 1, 'https://ror.org/02pwhra18 LakePharma (United States)'),
(65639, 'https://ror.org/04fr2ec26', 'fr', 1, 'https://ror.org/04fr2ec26 UC-Institut inter RƩgional pour la SAntƩ'),
(65640, 'https://ror.org/04z4aan47', 'en', 1, 'https://ror.org/04z4aan47 FƩdƩration Internationale de MƩdecine du Sport International Federation of Sports Medicine'),
(65641, 'https://ror.org/004hvek19', 'en', 1, 'https://ror.org/004hvek19 International League of Dermatological Societies'),
(65642, 'https://ror.org/002r94d59', 'en', 1, 'https://ror.org/002r94d59 Mediolanum Cardio Research'),
(65643, 'https://ror.org/02zz6x768', 'en', 1, 'https://ror.org/02zz6x768 Fundación Biomédica Neurounion Neurounion Biomedical Foundation'),
(65644, 'https://ror.org/014cakb16', 'en', 1, 'https://ror.org/014cakb16 European Heart Network'),
(65645, 'https://ror.org/027mcbx14', 'en', 1, 'https://ror.org/027mcbx14 Parachute'),
(65646, 'https://ror.org/00cnnb535', 'no_lang_code', 1, 'https://ror.org/00cnnb535 SIPN S.R.L. (Italy)'),
(65647, 'https://ror.org/00t442a43', 'no_lang_code', 1, 'https://ror.org/00t442a43 UCB Pharma (Spain)'),
(65648, 'https://ror.org/04v3ce875', 'en', 1, 'https://ror.org/04v3ce875 ICAR-Indian Institute of Maize Research'),
(65649, 'https://ror.org/02pqag031', 'en', 1, 'https://ror.org/02pqag031 Partnership for Dengue Control'),
(65650, 'https://ror.org/034c6t134', 'de', 1, 'https://ror.org/034c6t134 Pathodiagnostik Berlin'),
(65651, 'https://ror.org/01re5t323', 'en', 1, 'https://ror.org/01re5t323 Perry Maddocks Trollope Lawyers'),
(65652, 'https://ror.org/0025ycf95', 'no_lang_code', 1, 'https://ror.org/0025ycf95 Pivotal (Spain)'),
(65653, 'https://ror.org/053prtv35', 'en', 1, 'https://ror.org/053prtv35 Physicians East'),
(65654, 'https://ror.org/02arm0y30', 'en', 1, 'https://ror.org/02arm0y30 VA Center for Clinical Management Research'),
(65655, 'https://ror.org/01jxmb930', 'en', 1, 'https://ror.org/01jxmb930 Retina Care Specialists'),
(65656, 'https://ror.org/022772y06', 'no_lang_code', 1, 'https://ror.org/022772y06 Abnoba (South Korea) ģ•„ėøŒė…øė°”'),
(65657, 'https://ror.org/00qa68036', 'no_lang_code', 1, 'https://ror.org/00qa68036 Exactech (South Korea)'),
(65658, 'https://ror.org/02k8k3617', 'no_lang_code', 1, 'https://ror.org/02k8k3617 Actelion (South Korea)'),
(65659, 'https://ror.org/02j0mrt81', 'no_lang_code', 1, 'https://ror.org/02j0mrt81 Pharmicell (South Korea) ķŒŒėÆøģ…€'),
(65660, 'https://ror.org/01bypwr52', 'no_lang_code', 1, 'https://ror.org/01bypwr52 Aekyung (South Korea) ģ• ź²½'),
(65661, 'https://ror.org/00jkyke88', 'no_lang_code', 1, 'https://ror.org/00jkyke88 Novartis (South Korea) ė…øė°”ķ‹°ģŠ¤'),
(65662, 'https://ror.org/049zdyf95', 'en', 1, 'https://ror.org/049zdyf95 Yongin Mental Hospital ģš©ģøė„ģ •ģ‹ ė³‘ģ›'),
(65663, 'https://ror.org/0050zy157', 'no_lang_code', 1, 'https://ror.org/0050zy157 Fresenius Kabi (South Korea) ķ”„ė ˆģ§€ė‹ˆģš°ģŠ¤ģ¹“ė¹„ģ½”ė¦¬ģ•„'),
(65664, 'https://ror.org/059fafs66', 'no_lang_code', 1, 'https://ror.org/059fafs66 Allergan (South Korea) ģ—˜ėŸ¬ź°„'),
(65665, 'https://ror.org/012b6r490', 'no_lang_code', 1, 'https://ror.org/012b6r490 GeneMatrix (South Korea)'),
(65666, 'https://ror.org/03r0j3j15', 'no_lang_code', 1, 'https://ror.org/03r0j3j15 Amway (South Korea) 암웨'),
(65667, 'https://ror.org/03h9pej87', 'no_lang_code', 1, 'https://ror.org/03h9pej87 Geranti (South Korea) ź²Œėž€ķ‹°'),
(65668, 'https://ror.org/0344txx64', 'en', 1, 'https://ror.org/0344txx64 Medtronic (South Korea)'),
(65669, 'https://ror.org/01ejgx395', 'no_lang_code', 1, 'https://ror.org/01ejgx395 GL PharmTech (South Korea)'),
(65670, 'https://ror.org/04pchp455', 'no_lang_code', 1, 'https://ror.org/04pchp455 Astellas Pharma (South Korea) ģ•„ģŠ¤ķ…”ė¼ģŠ¤'),
(65671, 'https://ror.org/02c85tn61', 'en', 1, 'https://ror.org/02c85tn61 Goodball Academy źµæė³¼ķžė§ģ„¼ķ„°'),
(65672, 'https://ror.org/05thd7q59', 'no_lang_code', 1, 'https://ror.org/05thd7q59 AtoGen (South Korea) ģ—ģ“ķˆ¬ģ  '),
(65673, 'https://ror.org/02wgmby61', 'no_lang_code', 1, 'https://ror.org/02wgmby61 GreenCross Medical Science (South Korea)'),
(65674, 'https://ror.org/00kx5x153', 'no_lang_code', 1, 'https://ror.org/00kx5x153 Avixgen (South Korea) ģ—ė¹…ģŠ¤ģ  '),
(65675, 'https://ror.org/02r7hdt50', 'en', 1, 'https://ror.org/02r7hdt50 Gwangmyeong Mental Health Welfare Center ź“‘ėŖ…ģ‹œģ •ģ‹ ź±“ź°•ė³µģ§€ģ„¼ķ„°'),
(65676, 'https://ror.org/03dpx8939', 'no_lang_code', 1, 'https://ror.org/03dpx8939 Bayer (South Korea) ė°”ģ“ģ—˜'),
(65677, 'https://ror.org/02bb52086', 'no_lang_code', 1, 'https://ror.org/02bb52086 Mundipharma (South Korea)'),
(65678, 'https://ror.org/03an6e694', 'en', 1, 'https://ror.org/03an6e694 Myeongji Chunhye Hospital ėŖ…ģ§€ģ¶˜ķ˜œė³‘ģ›'),
(65679, 'https://ror.org/014vdg758', 'no_lang_code', 1, 'https://ror.org/014vdg758 Myungin Pharm (South Korea)'),
(65680, 'https://ror.org/011xqyx03', 'no_lang_code', 1, 'https://ror.org/011xqyx03 Hamsoa Pharmaceutical (South Korea) ķ•Øģ†Œģ•„ģ œģ•½'),
(65681, 'https://ror.org/04c10vw97', 'no_lang_code', 1, 'https://ror.org/04c10vw97 Myungmoon Pharm (South Korea)'),
(65682, 'https://ror.org/03qfrnd98', 'no_lang_code', 1, 'https://ror.org/03qfrnd98 BC World Pharm (South Korea)'),
(65683, 'https://ror.org/01kvmmx47', 'no_lang_code', 1, 'https://ror.org/01kvmmx47 Han Kook Shin Yak Pharmaceutical (South Korea)'),
(65684, 'https://ror.org/05g0va229', 'no_lang_code', 1, 'https://ror.org/05g0va229 Hana Pharm (South Korea) ķ•˜ė‚˜ģ œģ•½ģ£¼ģ‹ķšŒģ‚¬'),
(65685, 'https://ror.org/00gd17e24', 'no_lang_code', 1, 'https://ror.org/00gd17e24 Hanall Biopharma (South Korea) ķ•œģ˜¬ė°”ģ“ģ˜¤ķŒŒė§ˆ'),
(65686, 'https://ror.org/05scw8a36', 'no_lang_code', 1, 'https://ror.org/05scw8a36 Na Eun Hospital ė‚˜ģ€ 병원'),
(65687, 'https://ror.org/00hbpmz47', 'no_lang_code', 1, 'https://ror.org/00hbpmz47 Bioalpha (Malaysia)'),
(65688, 'https://ror.org/0191mq174', 'no_lang_code', 1, 'https://ror.org/0191mq174 Hanlim Pharm (South Korea) ķ•œė¦¼ģ œģ•½'),
(65689, 'https://ror.org/03zp29z47', 'no_lang_code', 1, 'https://ror.org/03zp29z47 Bioleaders (South Korea) ė°”ģ“ģ˜¤ė¦¬ė”ģŠ¤'),
(65690, 'https://ror.org/02wy00t81', 'no_lang_code', 1, 'https://ror.org/02wy00t81 Hanpoong Pharm (South Korea) ķ•œķ’ģ œģ•½'),
(65691, 'https://ror.org/0147f9026', 'no_lang_code', 1, 'https://ror.org/0147f9026 BMI (South Korea)'),
(65692, 'https://ror.org/0416ygn80', 'en', 1, 'https://ror.org/0416ygn80 National Development Institute of Korean Medicine ģøģž¬ģ±„ģš©ģ•ˆė‚“:ķ•œģ•½ģ§„ķ„ģž¬ė‹Ø'),
(65693, 'https://ror.org/05hzjar70', 'no_lang_code', 1, 'https://ror.org/05hzjar70 Bristol-Myers Squibb (South Korea) ėøŒė¦¬ģŠ¤ķ†Ø-ė§ˆģ“ģ–“ģŠ¤ ģŠ¤ķ…'),
(65694, 'https://ror.org/04cqpym76', 'en', 1, 'https://ror.org/04cqpym76 Hyoja Geriatric Hospital'),
(65695, 'https://ror.org/03c4tjd54', 'no_lang_code', 1, 'https://ror.org/03c4tjd54 Neonutra (South Korea)'),
(65696, 'https://ror.org/03b092790', 'no_lang_code', 1, 'https://ror.org/03b092790 NeuMed (United States)'),
(65697, 'https://ror.org/00azprd50', 'no_lang_code', 1, 'https://ror.org/00azprd50 Omiberry (South Korea) ķšØģ¢…ģ›'),
(65698, 'https://ror.org/0340bsg82', 'no_lang_code', 1, 'https://ror.org/0340bsg82 Hyundai Pharm (South Korea)'),
(65699, 'https://ror.org/022haww92', 'no_lang_code', 1, 'https://ror.org/022haww92 ICURE Pharm (South Korea) ģ•„ģ“ķģ–“'),
(65700, 'https://ror.org/026pdm559', 'no_lang_code', 1, 'https://ror.org/026pdm559 Il-Yang Pharmaceutical (South Korea) ģ¼ģ–‘ģ•½ķ’ˆ'),
(65701, 'https://ror.org/02929xv98', 'no_lang_code', 1, 'https://ror.org/02929xv98 Ildong (South Korea) ģ¼ė™ģ œģ•½'),
(65702, 'https://ror.org/0425zsq43', 'no_lang_code', 1, 'https://ror.org/0425zsq43 NutraPharm Tech (South Korea)'),
(65703, 'https://ror.org/01j8s5338', 'no_lang_code', 1, 'https://ror.org/01j8s5338 Ilsung Pharmaceuticals (South Korea) ģ¼ģ„± ģ œģ•½'),
(65704, 'https://ror.org/048n5zk82', 'en', 1, 'https://ror.org/048n5zk82 Onnuri Smile Eye Clinic'),
(65705, 'https://ror.org/02fq4hx73', 'no_lang_code', 1, 'https://ror.org/02fq4hx73 Syneos Health (South Korea)'),
(65706, 'https://ror.org/035rc4w74', 'no_lang_code', 1, 'https://ror.org/035rc4w74 PanGen Biotech (South Korea) ģ£¼ģ‹ķšŒģ‚¬ 팬젠'),
(65707, 'https://ror.org/01nfb0t34', 'no_lang_code', 1, 'https://ror.org/01nfb0t34 PAREXEL International (South Korea)'),
(65708, 'https://ror.org/02d4rx016', 'en', 1, 'https://ror.org/02d4rx016 International Ginseng & Herb Research Institute źøˆģ‚°źµ­ģ œģøģ‚¼ģ•½ģ“ˆģ—°źµ¬ģ†Œ'),
(65709, 'https://ror.org/03gzkvf55', 'no_lang_code', 1, 'https://ror.org/03gzkvf55 PeopleBio (South Korea)'),
(65710, 'https://ror.org/02c2tat87', 'no_lang_code', 1, 'https://ror.org/02c2tat87 Intoinworld ģøķˆ¬ģøģ›”ė“œėŠ”'),
(65711, 'https://ror.org/01xdejb38', 'no_lang_code', 1, 'https://ror.org/01xdejb38 iNtRON (South Korea) ģøķŠøė” ė°”ģ“ģ˜¤ķ…Œķ¬ė†€ė”œģ§€'),
(65712, 'https://ror.org/00qrd4818', 'no_lang_code', 1, 'https://ror.org/00qrd4818 Pharmbio Korea (South Korea)'),
(65713, 'https://ror.org/05c658986', 'no_lang_code', 1, 'https://ror.org/05c658986 Jeju TechnoPark ģ œģ£¼ķ…Œķ¬ė…øķŒŒķ¬'),
(65714, 'https://ror.org/02qv38g46', 'no_lang_code', 1, 'https://ror.org/02qv38g46 RBio (South Korea)'),
(65715, 'https://ror.org/00r2cc364', 'no_lang_code', 1, 'https://ror.org/00r2cc364 REGEN Biotech (South Korea)'),
(65716, 'https://ror.org/01bxc9g71', 'no_lang_code', 1, 'https://ror.org/01bxc9g71 (주)ģ§€ė‹ˆģŠ¤ JINIS Biopharmaceuticals (South Korea)'),
(65717, 'https://ror.org/04z27kp43', 'no_lang_code', 1, 'https://ror.org/04z27kp43 Juthis (South Korea)'),
(65718, 'https://ror.org/05n3q1w80', 'no_lang_code', 1, 'https://ror.org/05n3q1w80 Reyon Pharmaceutical (South Korea) ģ“ģ—°ģ œģ•½'),
(65719, 'https://ror.org/030nky627', 'no_lang_code', 1, 'https://ror.org/030nky627 Roche (South Korea) ķ•œźµ­ė”œģŠˆ'),
(65720, 'https://ror.org/058bqw857', 'no_lang_code', 1, 'https://ror.org/058bqw857 Sam Chun Dang Pharm (South Korea)'),
(65721, 'https://ror.org/00nhhef84', 'no_lang_code', 1, 'https://ror.org/00nhhef84 Sama Pharm (South Korea) ģ‚¼ģ•„ģ œģ•½'),
(65722, 'https://ror.org/04pr3cf18', 'no_lang_code', 1, 'https://ror.org/04pr3cf18 Bmvitek (South Korea) ė¹„ģ— ė°”ģ“ķ…'),
(65723, 'https://ror.org/01x7pyz19', 'no_lang_code', 1, 'https://ror.org/01x7pyz19 Boryung Pharma (South Korea) ė³“ė ¹ģ œģ•½ģ˜'),
(65724, 'https://ror.org/00t3nxd66', 'no_lang_code', 1, 'https://ror.org/00t3nxd66 Samjin Pharm (South Korea) ģ‚¼ģ§„ģ œģ•½'),
(65725, 'https://ror.org/002f4va27', 'no_lang_code', 1, 'https://ror.org/002f4va27 JW Shinyak (South Korea) JW신약'),
(65726, 'https://ror.org/04spkws63', 'no_lang_code', 1, 'https://ror.org/04spkws63 Botamedi (South Korea)'),
(65727, 'https://ror.org/003eds368', 'no_lang_code', 1, 'https://ror.org/003eds368 Samsung Pharm (South Korea) ģ‚¼ģ„±ģ œģ•½ćˆœ'),
(65728, 'https://ror.org/03zb2mt61', 'no_lang_code', 1, 'https://ror.org/03zb2mt61 Bukwang Pharmaceutical (South Korea) ė¶€ź“‘ģ•½ķ’ˆ'),
(65729, 'https://ror.org/02w4hck30', 'no_lang_code', 1, 'https://ror.org/02w4hck30 JW Pharmaceutical (South Korea) JWģ¤‘ģ™øģ œģ•½'),
(65730, 'https://ror.org/01dpe0a21', 'no_lang_code', 1, 'https://ror.org/01dpe0a21 Cell Biotech (South Korea) ģŽŒė°”ģ“ģ˜¤ķ…'),
(65731, 'https://ror.org/00wwj2d93', 'no_lang_code', 1, 'https://ror.org/00wwj2d93 CellaMedic Biotechnology (South Korea) ģ„øė¼ė©”ė”• ė°”ģ“ģ˜¤ķ…Œķ¬ė†€ėŸ¬ģ§€'),
(65732, 'https://ror.org/013crbb86', 'no_lang_code', 1, 'https://ror.org/013crbb86 Cellid (South Korea) ģ…€ė¦¬ė“œ'),
(65733, 'https://ror.org/04p6nsn05', 'no_lang_code', 1, 'https://ror.org/04p6nsn05 Kolmar Korea (South Korea) ķ•œźµ­ 콜마'),
(65734, 'https://ror.org/000h77t05', 'en', 1, 'https://ror.org/000h77t05 Songdo Hospital ģ„œģšøģ†”ė„ė³‘ģ›'),
(65735, 'https://ror.org/05qb29e48', 'no_lang_code', 1, 'https://ror.org/05qb29e48 Komipharm International (South Korea) ģ½”ėÆøķŒœ'),
(65736, 'https://ror.org/04v15r068', 'no_lang_code', 1, 'https://ror.org/04v15r068 Shin Poong Pharm (South Korea) ģ‹ ķ’ģ œģ•½ģ£¼ģ‹ķšŒģ‚¬'),
(65737, 'https://ror.org/008ke6x86', 'no_lang_code', 1, 'https://ror.org/008ke6x86 Chong Kun Dang Bio (South Korea) ģ¢…ź·¼ė‹¹ķ™€ė”©ģŠ¤'),
(65738, 'https://ror.org/01eqqdz04', 'en', 1, 'https://ror.org/01eqqdz04 Korea Association of Health Promotion ķ•œźµ­ź±“ź°•ź“€ė¦¬ķ˜‘ķšŒ'),
(65739, 'https://ror.org/02nkezr98', 'no_lang_code', 1, 'https://ror.org/02nkezr98 (주)ģ‹ ķ™”ģ˜ė£Œźø° Shinhwa Medical (South Korea)'),
(65740, 'https://ror.org/015rsk965', 'no_lang_code', 1, 'https://ror.org/015rsk965 SiliconSapiens (South Korea) 실 리코 ģ‚¬ķ”¼ģ—”ģŠ¤'),
(65741, 'https://ror.org/03mwc5x18', 'no_lang_code', 1, 'https://ror.org/03mwc5x18 Chunghwa Medipower (South Korea) ģ²­ķ™”ė©”ė””ķŒŒģ›Œ(주)'),
(65742, 'https://ror.org/00mr5jb15', 'no_lang_code', 1, 'https://ror.org/00mr5jb15 (주)ģ—ģŠ¤ķ‹°ģ•Œė°”ģ“ģ˜¤ķ… STR Biotech (South Korea)'),
(65743, 'https://ror.org/01v0cwt49', 'no_lang_code', 1, 'https://ror.org/01v0cwt49 Sungae Hospital 성애병원'),
(65744, 'https://ror.org/02j6s3h86', 'no_lang_code', 1, 'https://ror.org/02j6s3h86 Otsuka (South Korea) ķ•œźµ­ģ˜¤ģø ģ¹“ģ œģ•½'),
(65745, 'https://ror.org/0459zan02', 'no_lang_code', 1, 'https://ror.org/0459zan02 CL Pharm (South Korea)'),
(65746, 'https://ror.org/0517atn92', 'no_lang_code', 1, 'https://ror.org/0517atn92 (주)ģ‹¬ģœ  Symyoo'),
(65747, 'https://ror.org/00q650071', 'no_lang_code', 1, 'https://ror.org/00q650071 Korea Pharma (South Korea) ķ•œźµ­ķŒŒė§ˆ'),
(65748, 'https://ror.org/02dp69877', 'no_lang_code', 1, 'https://ror.org/02dp69877 Corepharmbio (South Korea)'),
(65749, 'https://ror.org/03039yw27', 'no_lang_code', 1, 'https://ror.org/03039yw27 Corestem (South Korea) ģ½”ģ•„ģŠ¤ķ…œ(주)'),
(65750, 'https://ror.org/00zhe2a05', 'no_lang_code', 1, 'https://ror.org/00zhe2a05 TEI Korea (South Korea)'),
(65751, 'https://ror.org/03tc50h17', 'no_lang_code', 1, 'https://ror.org/03tc50h17 Korea Yakult (South Korea) ķ•œźµ­ģ•¼ģæ ė„“ķŠø'),
(65752, 'https://ror.org/0447hq607', 'no_lang_code', 1, 'https://ror.org/0447hq607 (주)ģ”Øķ‹°ģ”Øė°”ģ“ģ˜¤ CTCBio (South Korea)'),
(65753, 'https://ror.org/03egtq807', 'en', 1, 'https://ror.org/03egtq807 Korean Otological Society ėŒ€ķ•œģ“ź³¼ķ•™ķšŒ'),
(65754, 'https://ror.org/05h9jst55', 'no_lang_code', 1, 'https://ror.org/05h9jst55 Dae Hwa Pharm (South Korea)'),
(65755, 'https://ror.org/01rqthp48', 'en', 1, 'https://ror.org/01rqthp48 The Korean Society for Anesthetic Pharmacology ėŒ€ķ•œė§ˆģ·Øģ•½ė¦¬ķ•™ķšŒ'),
(65756, 'https://ror.org/0080szk49', 'en', 1, 'https://ror.org/0080szk49 Korean Cancer Study Group ėŒ€ķ•œķ•­ģ•”ģš”ė²•ģ—°źµ¬ķšŒ ģž…ė‹ˆė‹¤'),
(65757, 'https://ror.org/04chh0y17', 'en', 1, 'https://ror.org/04chh0y17 Korean Continence Society ėŒ€ķ•œė°°ė‡Øģž„ģ• ģš”ģ‹¤źøˆķ•™ķšŒ'),
(65758, 'https://ror.org/00dvybz66', 'en', 1, 'https://ror.org/00dvybz66 Korean Society for the Study of Obesity ėŒ€ķ•œė¹„ė§Œķ•™ķšŒ ķ™ˆķŽ˜'),
(65759, 'https://ror.org/04t98sb97', 'en', 1, 'https://ror.org/04t98sb97 Daejeon Technopark ėŒ€ģ „ķ…Œķ¬ė…øķŒŒķ¬'),
(65760, 'https://ror.org/00shsg218', 'no_lang_code', 1, 'https://ror.org/00shsg218 Daewon Pharm (South Korea) ėŒ€ģ›ģ œģ•½'),
(65761, 'https://ror.org/01dcb8p36', 'no_lang_code', 1, 'https://ror.org/01dcb8p36 Dai Han Pharm (South Korea) ėŒ€ķ•œģ•½ķ’ˆź³µģ—…ģ£¼ģ‹ķšŒģ‚¬'),
(65762, 'https://ror.org/0304ak089', 'en', 1, 'https://ror.org/0304ak089 Korean Pancreatobiliary Association ėŒ€ķ•œģ·Œė‹“ė„ķ•™ķšŒ'),
(65763, 'https://ror.org/02yjcwm21', 'no_lang_code', 1, 'https://ror.org/02yjcwm21 Daiichi-Sankyo (South Korea) ķ•œźµ­ė‹¤ģ“ģ“ģ°Œģ‚°ģæ„ģ£¼ģ‹ķšŒģ‚¬'),
(65764, 'https://ror.org/03e8v6h48', 'en', 1, 'https://ror.org/03e8v6h48 The Korean Society for Microbiology and Biotechnology ķ•œźµ­ėÆøģƒė¬¼ģƒėŖ…ź³µķ•™ķšŒ'),
(65765, 'https://ror.org/04y922n71', 'no_lang_code', 1, 'https://ror.org/04y922n71 Daiseung Medics (South Korea) ėŒ€ģŠ¹ģ˜ė£Œźø°źø°(주)'),
(65766, 'https://ror.org/02en0fr62', 'en', 1, 'https://ror.org/02en0fr62 Korean Society of Interventional Neuroradiology ėŒ€ķ•œģ‹ ź²½ģ¤‘ģž¬ģ¹˜ė£Œģ˜ķ•™ķšŒ'),
(65767, 'https://ror.org/048gxh623', 'no_lang_code', 1, 'https://ror.org/048gxh623 Dalim (South Korea)'),
(65768, 'https://ror.org/053t76350', 'no_lang_code', 1, 'https://ror.org/053t76350 Wellbeing LS (South Korea) ģ›°ė¹™ģ—˜ģ—ģŠ¤'),
(65769, 'https://ror.org/03mxyhv84', 'no_lang_code', 1, 'https://ror.org/03mxyhv84 Kuhnil Pharma (South Korea) ź±“ģ¼ģ œģ•½'),
(65770, 'https://ror.org/05b4xvt53', 'no_lang_code', 1, 'https://ror.org/05b4xvt53 Wonbiogen (South Korea) ģ›ė°”ģ“ģ˜¤ģ  '),
(65771, 'https://ror.org/04m123659', 'no_lang_code', 1, 'https://ror.org/04m123659 Daewoo Pharma (South Korea) ėŒ€ģš°ģ œģ•½'),
(65772, 'https://ror.org/04z6dh903', 'no_lang_code', 1, 'https://ror.org/04z6dh903 Wonkwang Pharmaceutical (South Korea) ģ›ź“‘ģ œģ•½'),
(65773, 'https://ror.org/018mj3h16', 'en', 1, 'https://ror.org/018mj3h16 Seminary of the Southwest'),
(65774, 'https://ror.org/04s8r5v20', 'no_lang_code', 1, 'https://ror.org/04s8r5v20 Alvogen (South Korea)'),
(65775, 'https://ror.org/04zsrq347', 'en', 1, 'https://ror.org/04zsrq347 St. Paul''s Co-educational College č–äæē¾…ē”·å„³äø­å­ø'),
(65776, 'https://ror.org/01b5g4110', 'en', 1, 'https://ror.org/01b5g4110 Yang Hospital 양병원'),
(65777, 'https://ror.org/03baef921', 'no_lang_code', 1, 'https://ror.org/03baef921 Kwangdong Pharmaceutical ź“‘ė™ģ œģ•½'),
(65778, 'https://ror.org/055yqn475', 'en', 1, 'https://ror.org/055yqn475 Yonsei Proteome Research Center 연세 ķ”„ė”œķ…Œģ˜“ 연구원 단백첓 ė¶„ģ„'),
(65779, 'https://ror.org/02dpm0z59', 'no_lang_code', 1, 'https://ror.org/02dpm0z59 Kyungdong Pharmaceutical (South Korea) ź²½ė™ģ œģ•½'),
(65780, 'https://ror.org/02dzv6j38', 'en', 1, 'https://ror.org/02dzv6j38 Yulchon Foundation ģœØģ“Œģž¬ė‹Ø'),
(65781, 'https://ror.org/01ep52038', 'no_lang_code', 1, 'https://ror.org/01ep52038 L&K Biomed (South Korea)'),
(65782, 'https://ror.org/018mykm19', 'no_lang_code', 1, 'https://ror.org/018mykm19 Dinona (South Korea) ė‹¤ģ“ė…øė‚˜'),
(65783, 'https://ror.org/04wmbjv17', 'en', 1, 'https://ror.org/04wmbjv17 Seoul Sleep Center ģ„œģšøģˆ˜ė©“ķ“ė¦¬ė‹‰'),
(65784, 'https://ror.org/015csvh80', 'no_lang_code', 1, 'https://ror.org/015csvh80 (주)ķƒœģ›…ė©”ė””ģ¹¼ Taewoong Medical (South Korea)'),
(65785, 'https://ror.org/04xnk9j36', 'no_lang_code', 1, 'https://ror.org/04xnk9j36 Fujifilm (South Korea) ķ•œźµ­ķ›„ģ§€ķ•„ė¦„'),
(65786, 'https://ror.org/00p3qeq60', 'no_lang_code', 1, 'https://ror.org/00p3qeq60 YuYu Pharma (South Korea)'),
(65787, 'https://ror.org/02rcz2a29', 'no_lang_code', 1, 'https://ror.org/02rcz2a29 Bio Pharm Dongsung (South Korea) ė™ģ„±ģ œģ•½ģ£¼ģ‹ķšŒģ‚¬'),
(65788, 'https://ror.org/057hqh897', 'no_lang_code', 1, 'https://ror.org/057hqh897 Lundbeck (South Korea) ķ•œźµ­ė£¬ė“œė²”'),
(65789, 'https://ror.org/01ehetm20', 'no_lang_code', 1, 'https://ror.org/01ehetm20 Dongwoodang (South Korea) ė™ģš°ė‹¹ģ œģ•½'),
(65790, 'https://ror.org/01ykf3r31', 'no_lang_code', 1, 'https://ror.org/01ykf3r31 Elyson Pharm (South Korea) ģ—ė¦¬ģŠØģ œģ•½(주)'),
(65791, 'https://ror.org/02prs4262', 'no_lang_code', 1, 'https://ror.org/02prs4262 Dr.Chung’s Food (South Korea)'),
(65792, 'https://ror.org/02rzqa255', 'no_lang_code', 1, 'https://ror.org/02rzqa255 KT&G (South Korea) ģ£¼ģ‹ķšŒģ‚¬ ģ¼€ģ“ķ‹°ģ•¤ģ§€'),
(65793, 'https://ror.org/03y2sw318', 'no_lang_code', 1, 'https://ror.org/03y2sw318 EuBiologics (South Korea) ģœ ė°”ģ“ģ˜¤ė”œģ§ģŠ¤'),
(65794, 'https://ror.org/020tqff86', 'no_lang_code', 1, 'https://ror.org/020tqff86 Ebiche (South Korea) ģ“ė¹„ģ±„'),
(65795, 'https://ror.org/01hbex578', 'no_lang_code', 1, 'https://ror.org/01hbex578 Biosolution (South Korea) ė°”ģ“ģ˜¤ģ†”ė£Øģ…˜'),
(65796, 'https://ror.org/04jmg2j77', 'no_lang_code', 1, 'https://ror.org/04jmg2j77 Edwards Lifesciences (South Korea)'),
(65797, 'https://ror.org/05pjvcp59', 'no_lang_code', 1, 'https://ror.org/05pjvcp59 Ewha Biomedics (South Korea) ģ“ķ™”ė°”ģ“ģ˜¤ė©”ė”•ģŠ¤'),
(65798, 'https://ror.org/00yqxqx15', 'no_lang_code', 1, 'https://ror.org/00yqxqx15 OKTECH (China) ęµ·ę“‹ēŽ‹ē…§ę˜Žē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(65799, 'https://ror.org/023jrwe36', 'no_lang_code', 1, 'https://ror.org/023jrwe36 Sany (China) äø‰äø€é‡å·„č‚”ä»½ęœ‰é™å…¬åø'),
(65800, 'https://ror.org/02xab7z06', 'no_lang_code', 1, 'https://ror.org/02xab7z06 Chery Automobile (China) å„‡ē‘ž'),
(65801, 'https://ror.org/054deg252', 'no_lang_code', 1, 'https://ror.org/054deg252 Shanghai Huali Microelectronics (China) äøŠęµ·åŽåŠ›å¾®ē”µå­ęœ‰é™å…¬åø'),
(65802, 'https://ror.org/05atzd126', 'no_lang_code', 1, 'https://ror.org/05atzd126 Joyoung (China) 九阳'),
(65803, 'https://ror.org/00p4rkj69', 'no_lang_code', 1, 'https://ror.org/00p4rkj69 Qihoo 360 (China) å„‡č™Ž360'),
(65804, 'https://ror.org/01qw6et69', 'no_lang_code', 1, 'https://ror.org/01qw6et69 Xingx (China) ę˜Ÿę˜Ÿé›†å›¢ęœ‰é™å…¬åø'),
(65805, 'https://ror.org/0452w5362', 'no_lang_code', 1, 'https://ror.org/0452w5362 Phicomm (China) 斐讯'),
(65806, 'https://ror.org/00z46p261', 'no_lang_code', 1, 'https://ror.org/00z46p261 BBK Electronics (China) å¹æäøœę­„ę­„é«˜ē”µå­å·„äøšęœ‰é™å…¬åø'),
(65807, 'https://ror.org/01f390f45', 'no_lang_code', 1, 'https://ror.org/01f390f45 Guangxi Yuchai Machinery Group (China) ēŽ‰ęŸ“é›†å›¢'),
(65808, 'https://ror.org/03h1fpd36', 'no_lang_code', 1, 'https://ror.org/03h1fpd36 Nubia Technology (China) åŠŖęÆ”äŗžęŠ€č”“ęœ‰é™å…¬åø'),
(65809, 'https://ror.org/04gfm7t49', 'no_lang_code', 1, 'https://ror.org/04gfm7t49 Lifan (China) åŠ›åø†é›†å›¢'),
(65810, 'https://ror.org/05y3xma86', 'no_lang_code', 1, 'https://ror.org/05y3xma86 Coolpad (China)'),
(65811, 'https://ror.org/00qa3c235', 'no_lang_code', 1, 'https://ror.org/00qa3c235 Konka (China) 康佳集团'),
(65812, 'https://ror.org/00zv9r340', 'no_lang_code', 1, 'https://ror.org/00zv9r340 Pan Asia Technical Automotive Center (China) ę³›äŗšę±½č½¦ęŠ€ęœÆäø­åæƒ'),
(65813, 'https://ror.org/01rt7y457', 'no_lang_code', 1, 'https://ror.org/01rt7y457 Baogang Group (China)'),
(65814, 'https://ror.org/03bdrtb23', 'en', 1, 'https://ror.org/03bdrtb23 Wuxi Vocational Institute of Commerce ę— é””å•†äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(65815, 'https://ror.org/0199ey615', 'no_lang_code', 1, 'https://ror.org/0199ey615 Truking (China)'),
(65816, 'https://ror.org/02yjfp753', 'no_lang_code', 1, 'https://ror.org/02yjfp753 Donlim (China) å¹æäøœę–°å®ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(65817, 'https://ror.org/00whypb06', 'no_lang_code', 1, 'https://ror.org/00whypb06 Supor (China)'),
(65818, 'https://ror.org/056eew379', 'no_lang_code', 1, 'https://ror.org/056eew379 Shanghai Micro Electronics Equipment (China) äøŠęµ·å¾®ē”µå­č£…å¤‡'),
(65819, 'https://ror.org/01n2ba875', 'no_lang_code', 1, 'https://ror.org/01n2ba875 Tinno (China) ę·±åœ³å¤©ē‘ē§»åŠØęŠ€ęœÆęœ‰é™å…¬åø'),
(65820, 'https://ror.org/02c5y9t85', 'no_lang_code', 1, 'https://ror.org/02c5y9t85 Positec (China) å®ę—¶å¾—ē§‘ęŠ€'),
(65821, 'https://ror.org/002fe3c26', 'no_lang_code', 1, 'https://ror.org/002fe3c26 VTRON (China) åØåˆ›'),
(65822, 'https://ror.org/00fgwkr80', 'no_lang_code', 1, 'https://ror.org/00fgwkr80 Runze (China) é‡åŗ†ę¶¦ę³½åŒ»čÆ'),
(65823, 'https://ror.org/00nwrzz95', 'no_lang_code', 1, 'https://ror.org/00nwrzz95 Beijing Founder Electronics (China) åŒ—äŗ¬åŒ—å¤§ę–¹ę­£ē”µå­ęœ‰é™å…¬åø'),
(65824, 'https://ror.org/029dmf820', 'no_lang_code', 1, 'https://ror.org/029dmf820 Shandong Iron and Steel Group (China) å±±äøœé’¢é“é›†å›¢'),
(65825, 'https://ror.org/04aycct37', 'no_lang_code', 1, 'https://ror.org/04aycct37 Shinva (China) å±±äøœę–°åŽåŒ»ē–—å™Øę¢°č‚”ä»½ęœ‰é™å…¬åø'),
(65826, 'https://ror.org/01sag2n63', 'no_lang_code', 1, 'https://ror.org/01sag2n63 Guangdong Meiyan Jixiang Hydropower (China) å¹æäøœę¢…é›å‰ē„„ę°“ē”µč‚”ä»½ęœ‰é™å…¬åø'),
(65827, 'https://ror.org/01ef25a22', 'no_lang_code', 1, 'https://ror.org/01ef25a22 Shenwu Technology Group Corp (China) ē„žé›¾ē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(65828, 'https://ror.org/02hpa6r82', 'no_lang_code', 1, 'https://ror.org/02hpa6r82 Zhejiang Zhe Kuang Heavy Industries (China) ęµ™ēŸæé‡å·„'),
(65829, 'https://ror.org/0246q4714', 'no_lang_code', 1, 'https://ror.org/0246q4714 Comba (China) äŗ¬äæ”é€šäæ”'),
(65830, 'https://ror.org/05k953v63', 'no_lang_code', 1, 'https://ror.org/05k953v63 Gionee (China) 金立'),
(65831, 'https://ror.org/051xxew12', 'no_lang_code', 1, 'https://ror.org/051xxew12 Coship (China) ę·±åœ³åø‚åŒę“²ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(65832, 'https://ror.org/02rake840', 'no_lang_code', 1, 'https://ror.org/02rake840 Esquel Group (China)'),
(65833, 'https://ror.org/03kzhbn97', 'no_lang_code', 1, 'https://ror.org/03kzhbn97 Fotile (China) 方太'),
(65834, 'https://ror.org/03qqw3m37', 'no_lang_code', 1, 'https://ror.org/03qqw3m37 United Imaging Healthcare (China)'),
(65835, 'https://ror.org/0067g4302', 'no_lang_code', 1, 'https://ror.org/0067g4302 Meizu (China) é­…ę—ē§‘ęŠ€ęœ‰é™å…¬åø'),
(65836, 'https://ror.org/05apznb79', 'no_lang_code', 1, 'https://ror.org/05apznb79 Zeus Entertainment (China) å¤§čæžå¤©ē„žåØ±ä¹č‚”ä»½ęœ‰é™å…¬åø'),
(65837, 'https://ror.org/03qb1ht73', 'no_lang_code', 1, 'https://ror.org/03qb1ht73 Lishen (China) å¤©ę“„åŠ›ē„žē”µę± č‚”ä»½ęœ‰é™å…¬åø'),
(65838, 'https://ror.org/02e6k9z27', 'en', 1, 'https://ror.org/02e6k9z27 Wellcome Centre for Anti-Infectives Research'),
(65839, 'https://ror.org/00vg14y34', 'no_lang_code', 1, 'https://ror.org/00vg14y34 UnionPay (China) 银联'),
(65840, 'https://ror.org/00v025f24', 'no_lang_code', 1, 'https://ror.org/00v025f24 GDL (China)'),
(65841, 'https://ror.org/026xvz038', 'no_lang_code', 1, 'https://ror.org/026xvz038 iQIYI (China) ēˆ±å„‡č‰ŗ'),
(65842, 'https://ror.org/05crdvn36', 'en', 1, 'https://ror.org/05crdvn36 Wellcome Centre for Ethics and Humanities'),
(65843, 'https://ror.org/058stpv70', 'no_lang_code', 1, 'https://ror.org/058stpv70 Huainan Mining Industry Group (China) ę·®å—ēŸæäøšé›†å›¢'),
(65844, 'https://ror.org/05bjfv051', 'no_lang_code', 1, 'https://ror.org/05bjfv051 Changshu Switch Manufacturing (China) åøøē†Ÿå¼€å…³åˆ¶é€ ęœ‰é™å…¬åø'),
(65845, 'https://ror.org/040b19m18', 'en', 1, 'https://ror.org/040b19m18 Wellcome Centre for Infectious Diseases Research in Africa'),
(65846, 'https://ror.org/0172mzb45', 'en', 1, 'https://ror.org/0172mzb45 Wellcome Centre for Integrative Neuroimaging'),
(65847, 'https://ror.org/00rbqbc98', 'en', 1, 'https://ror.org/00rbqbc98 Wellcome Centre of Cultures and Environments of Health'),
(65848, 'https://ror.org/03kx7xv57', 'no_lang_code', 1, 'https://ror.org/03kx7xv57 Little Swan (China)'),
(65849, 'https://ror.org/019h3d096', 'no_lang_code', 1, 'https://ror.org/019h3d096 Hua Hong Semiconductor (China) čÆč™¹åŠå°Žé«”'),
(65850, 'https://ror.org/022vzex26', 'no_lang_code', 1, 'https://ror.org/022vzex26 Taiyuan Heavy Industry (China) å¤ŖåŽŸé‡å·„č‚”ä»½ęœ‰é™å…¬åø'),
(65851, 'https://ror.org/05av4bp24', 'no_lang_code', 1, 'https://ror.org/05av4bp24 Shougang (China) 首钢集团'),
(65852, 'https://ror.org/00h64t852', 'no_lang_code', 1, 'https://ror.org/00h64t852 SAIC-GM (China) äøŠę±½é€šē”Øę±½č½¦'),
(65853, 'https://ror.org/0242z8y86', 'no_lang_code', 1, 'https://ror.org/0242z8y86 Gridsum (China) å›½åŒē§‘ęŠ€ęœ‰é™å…¬åø'),
(65854, 'https://ror.org/01q6skw70', 'no_lang_code', 1, 'https://ror.org/01q6skw70 Shantui (China) å±±ęŽØå·„ēØ‹ęœŗę¢°č‚”ä»½ęœ‰é™å…¬åø'),
(65855, 'https://ror.org/00771gx20', 'no_lang_code', 1, 'https://ror.org/00771gx20 Aisino (China) čˆŖå¤©äæ”ęÆč‚”ä»½ęœ‰é™å…¬åø'),
(65856, 'https://ror.org/01bqq8340', 'no_lang_code', 1, 'https://ror.org/01bqq8340 Kunshan Govisionox Optoelectronic (China) ę˜†å±±å›½ę˜¾å…‰ē”µęœ‰é™å…¬åø'),
(65857, 'https://ror.org/03mjzvj44', 'no_lang_code', 1, 'https://ror.org/03mjzvj44 Optimum Nano (China)'),
(65858, 'https://ror.org/046916w66', 'no_lang_code', 1, 'https://ror.org/046916w66 XTC (China) å°å¤©ę‰'),
(65859, 'https://ror.org/05nqkcp91', 'no_lang_code', 1, 'https://ror.org/05nqkcp91 WengFu Group (China)'),
(65860, 'https://ror.org/0507jm035', 'no_lang_code', 1, 'https://ror.org/0507jm035 Umbo Computer Vision (United Kingdom)'),
(65861, 'https://ror.org/01ezqqb21', 'no_lang_code', 1, 'https://ror.org/01ezqqb21 Akilah Hospital مستؓفى عاقله'),
(65862, 'https://ror.org/03knd6b36', 'en', 1, 'https://ror.org/03knd6b36 Amnesty International'),
(65863, 'https://ror.org/053y4qc63', 'en', 1, 'https://ror.org/053y4qc63 United Cancer Support Foundation'),
(65864, 'https://ror.org/05vn8sm27', 'no_lang_code', 1, 'https://ror.org/05vn8sm27 IPG Transport (United Kingdom)'),
(65865, 'https://ror.org/004kfs587', 'en', 1, 'https://ror.org/004kfs587 Moscow City Hospital No 29 Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–29 им. Š.Š­.Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(65866, 'https://ror.org/01f0eaw14', 'en', 1, 'https://ror.org/01f0eaw14 The Global Alliance for LGBT Education'),
(65867, 'https://ror.org/009v92n69', 'en', 1, 'https://ror.org/009v92n69 Hassan Usman Katsina Polytechnic'),
(65868, 'https://ror.org/02wk38057', 'no_lang_code', 1, 'https://ror.org/02wk38057 2DHeat (United Kingdom)'),
(65869, 'https://ror.org/03txtgw38', 'no_lang_code', 1, 'https://ror.org/03txtgw38 2iC (United Kingdom)'),
(65870, 'https://ror.org/00008m859', 'no_lang_code', 1, 'https://ror.org/00008m859 3-Sci (United Kingdom)'),
(65871, 'https://ror.org/02phz7j25', 'no_lang_code', 1, 'https://ror.org/02phz7j25 3Brain (Switzerland)'),
(65872, 'https://ror.org/00c46pp52', 'no_lang_code', 1, 'https://ror.org/00c46pp52 3D Engineering Design (United Kingdom)'),
(65873, 'https://ror.org/03eyba682', 'no_lang_code', 1, 'https://ror.org/03eyba682 3DX-Ray (United Kingdom)'),
(65874, 'https://ror.org/03j8jac95', 'no_lang_code', 1, 'https://ror.org/03j8jac95 Norbain (United Kingdom)'),
(65875, 'https://ror.org/03qfd7n96', 'en', 1, 'https://ror.org/03qfd7n96 3G''S Development Trust'),
(65876, 'https://ror.org/04cv9th75', 'en', 1, 'https://ror.org/04cv9th75 Autism Initiatives'),
(65877, 'https://ror.org/04a9d3847', 'en', 1, 'https://ror.org/04a9d3847 Alton Towers Resort'),
(65878, 'https://ror.org/023s0f257', 'no_lang_code', 1, 'https://ror.org/023s0f257 42 Technology (United Kingdom)'),
(65879, 'https://ror.org/03945f733', 'no_lang_code', 1, 'https://ror.org/03945f733 Autolus (United Kingdom)'),
(65880, 'https://ror.org/02thsp703', 'no_lang_code', 1, 'https://ror.org/02thsp703 ASV (United Kingdom)'),
(65881, 'https://ror.org/055ff4r96', 'no_lang_code', 1, 'https://ror.org/055ff4r96 AutoTrip (United Kingdom)'),
(65882, 'https://ror.org/0515gyd10', 'no_lang_code', 1, 'https://ror.org/0515gyd10 Accoson (United Kingdom)'),
(65883, 'https://ror.org/05nvwdp14', 'no_lang_code', 1, 'https://ror.org/05nvwdp14 AM Technology (United Kingdom)'),
(65884, 'https://ror.org/001eccs90', 'no_lang_code', 1, 'https://ror.org/001eccs90 Amadeus Capital Partners (United Kingdom)'),
(65885, 'https://ror.org/035f7jt30', 'no_lang_code', 1, 'https://ror.org/035f7jt30 A.M.P Rose (United Kingdom)'),
(65886, 'https://ror.org/04shyvf77', 'no_lang_code', 1, 'https://ror.org/04shyvf77 Amalyst (United Kingdom)'),
(65887, 'https://ror.org/057rgnq16', 'en', 1, 'https://ror.org/057rgnq16 Aberdeenshire Council'),
(65888, 'https://ror.org/00rrtbd20', 'no_lang_code', 1, 'https://ror.org/00rrtbd20 EnerSys (United Kingdom)'),
(65889, 'https://ror.org/015ydew40', 'no_lang_code', 1, 'https://ror.org/015ydew40 Axess Technologies (United Kingdom)'),
(65890, 'https://ror.org/00dcyet50', 'no_lang_code', 1, 'https://ror.org/00dcyet50 S. Norton (United Kingdom)'),
(65891, 'https://ror.org/00xb05e36', 'no_lang_code', 1, 'https://ror.org/00xb05e36 Advanced Micro Devices (United Kingdom)'),
(65892, 'https://ror.org/038pmte38', 'no_lang_code', 1, 'https://ror.org/038pmte38 AC Goatham & Son (United Kingdom)'),
(65893, 'https://ror.org/0564t2w16', 'no_lang_code', 1, 'https://ror.org/0564t2w16 BG Research (United Kingdom)'),
(65894, 'https://ror.org/05ynabk26', 'en', 1, 'https://ror.org/05ynabk26 Avon and Somerset Police Authority'),
(65895, 'https://ror.org/00tc3yz20', 'no_lang_code', 1, 'https://ror.org/00tc3yz20 Babcock International Group (United Kingdom)'),
(65896, 'https://ror.org/00hwrpk97', 'no_lang_code', 1, 'https://ror.org/00hwrpk97 American Transmission Company (United States)'),
(65897, 'https://ror.org/02jpkw737', 'no_lang_code', 1, 'https://ror.org/02jpkw737 Acidophil (United Kingdom)'),
(65898, 'https://ror.org/01nzkak21', 'no_lang_code', 1, 'https://ror.org/01nzkak21 Baby2Body (United Kingdom)'),
(65899, 'https://ror.org/05tzavc93', 'no_lang_code', 1, 'https://ror.org/05tzavc93 Bakkavor (United Kingdom)'),
(65900, 'https://ror.org/02cfws461', 'no_lang_code', 1, 'https://ror.org/02cfws461 Actimass (United Kingdom)'),
(65901, 'https://ror.org/037sg1398', 'no_lang_code', 1, 'https://ror.org/037sg1398 Nymbl Science (United Kingdom)'),
(65902, 'https://ror.org/03h2jvh82', 'no_lang_code', 1, 'https://ror.org/03h2jvh82 Amethyst Research (United Kingdom)'),
(65903, 'https://ror.org/03c6vy245', 'en', 1, 'https://ror.org/03c6vy245 Action for Children'),
(65904, 'https://ror.org/01xjdd789', 'no_lang_code', 1, 'https://ror.org/01xjdd789 Action in Caerau & Ely (United Kingdom)'),
(65905, 'https://ror.org/0467xn953', 'en', 1, 'https://ror.org/0467xn953 Balhousie Care Group'),
(65906, 'https://ror.org/001398926', 'en', 1, 'https://ror.org/001398926 Balshaw’s Church of England High School'),
(65907, 'https://ror.org/01pgtee18', 'en', 1, 'https://ror.org/01pgtee18 Active Norfolk'),
(65908, 'https://ror.org/03vnpf028', 'en', 1, 'https://ror.org/03vnpf028 Joel Samson Ruvugo Traders'),
(65909, 'https://ror.org/04m20rz92', 'en', 1, 'https://ror.org/04m20rz92 Advanced Manufacturing Research Centre'),
(65910, 'https://ror.org/03kpa8902', 'en', 1, 'https://ror.org/03kpa8902 Coalition on Violence Against Women'),
(65911, 'https://ror.org/01wjb4152', 'no_lang_code', 1, 'https://ror.org/01wjb4152 Adoreboard (United Kingdom)'),
(65912, 'https://ror.org/01b04pq84', 'no_lang_code', 1, 'https://ror.org/01b04pq84 BAM Nuttall (United Kingdom)'),
(65913, 'https://ror.org/03h65g504', 'no_lang_code', 1, 'https://ror.org/03h65g504 Advanced Blast & Ballistic Systems (United Kingdom)'),
(65914, 'https://ror.org/01bgqbn96', 'en', 1, 'https://ror.org/01bgqbn96 Barbican Centre'),
(65915, 'https://ror.org/05e5xw908', 'no_lang_code', 1, 'https://ror.org/05e5xw908 Advanced Digital Innovation (United Kingdom)'),
(65916, 'https://ror.org/027m81w73', 'no_lang_code', 1, 'https://ror.org/027m81w73 Barco (United Kingdom)'),
(65917, 'https://ror.org/02zjnfj90', 'en', 1, 'https://ror.org/02zjnfj90 Barnardo''s'),
(65918, 'https://ror.org/03dnkwm40', 'no_lang_code', 1, 'https://ror.org/03dnkwm40 Anacail (United Kingdom)'),
(65919, 'https://ror.org/03kq7m969', 'no_lang_code', 1, 'https://ror.org/03kq7m969 Advanced Innovative Engineering (United Kingdom)'),
(65920, 'https://ror.org/029pvsr13', 'en', 1, 'https://ror.org/029pvsr13 Barnsley Metropolitan Borough Council'),
(65921, 'https://ror.org/02pvd9627', 'no_lang_code', 1, 'https://ror.org/02pvd9627 Barratt Developments (United Kingdom)'),
(65922, 'https://ror.org/04060wh35', 'no_lang_code', 1, 'https://ror.org/04060wh35 Advanced Microwave Technologies (United Kingdom)'),
(65923, 'https://ror.org/04vq10619', 'no_lang_code', 1, 'https://ror.org/04vq10619 Analytics Engines (United Kingdom)'),
(65924, 'https://ror.org/01144jm97', 'no_lang_code', 1, 'https://ror.org/01144jm97 Barrnon (United Kingdom)'),
(65925, 'https://ror.org/05npt9421', 'no_lang_code', 1, 'https://ror.org/05npt9421 Ancon (United Kingdom)'),
(65926, 'https://ror.org/024tkjg80', 'no_lang_code', 1, 'https://ror.org/024tkjg80 Aeirtec (United Kingdom)'),
(65927, 'https://ror.org/003f9vj48', 'no_lang_code', 1, 'https://ror.org/003f9vj48 Bauman Lyons Architects (United Kingdom)'),
(65928, 'https://ror.org/03n8g4g56', 'no_lang_code', 1, 'https://ror.org/03n8g4g56 Baxendale (United Kingdom)'),
(65929, 'https://ror.org/00pzjx720', 'no_lang_code', 1, 'https://ror.org/00pzjx720 Body Organ Biomedical (Taiwan)'),
(65930, 'https://ror.org/0432aqd92', 'en', 1, 'https://ror.org/0432aqd92 Andrew Faulkner Associates'),
(65931, 'https://ror.org/013q8p212', 'no_lang_code', 1, 'https://ror.org/013q8p212 Afimilk (United Kingdom)'),
(65932, 'https://ror.org/0267beb34', 'en', 1, 'https://ror.org/0267beb34 BECTU (United Kingdom)'),
(65933, 'https://ror.org/01qb3ks33', 'no_lang_code', 1, 'https://ror.org/01qb3ks33 Bellrock Technology (United Kingdom)'),
(65934, 'https://ror.org/03r5t9q47', 'no_lang_code', 1, 'https://ror.org/03r5t9q47 Benchmark Animal Health (United Kingdom)'),
(65935, 'https://ror.org/00bdbjn36', 'no_lang_code', 1, 'https://ror.org/00bdbjn36 Bennamann (United Kingdom)'),
(65936, 'https://ror.org/02q3pze66', 'en', 1, 'https://ror.org/02q3pze66 Age Action Alliance'),
(65937, 'https://ror.org/01sa95390', 'no_lang_code', 1, 'https://ror.org/01sa95390 Bernard Matthews (United Kingdom)'),
(65938, 'https://ror.org/02gs73d02', 'en', 1, 'https://ror.org/02gs73d02 Antich & Sons (United Kingdom)'),
(65939, 'https://ror.org/01rrttc44', 'no_lang_code', 1, 'https://ror.org/01rrttc44 Berry Gardens (United Kingdom)'),
(65940, 'https://ror.org/0398c6388', 'no_lang_code', 1, 'https://ror.org/0398c6388 BGT Materials (United Kingdom)'),
(65941, 'https://ror.org/0582kjq67', 'no_lang_code', 1, 'https://ror.org/0582kjq67 Antikor (United Kingdom)'),
(65942, 'https://ror.org/037xt3w76', 'en', 1, 'https://ror.org/037xt3w76 Bicester Town Council'),
(65943, 'https://ror.org/037tmrg70', 'no_lang_code', 1, 'https://ror.org/037tmrg70 Anton Paar (United Kingdom)'),
(65944, 'https://ror.org/04tkgz835', 'en', 1, 'https://ror.org/04tkgz835 Agricultural Engineering Precision Innovation Centre'),
(65945, 'https://ror.org/042wg4g29', 'en', 1, 'https://ror.org/042wg4g29 Agricultural Industries Confederation'),
(65946, 'https://ror.org/0453gw346', 'no_lang_code', 1, 'https://ror.org/0453gw346 Agrimetrics (United Kingdom)'),
(65947, 'https://ror.org/04wbhnv17', 'no_lang_code', 1, 'https://ror.org/04wbhnv17 Aptcore (United Kingdom)'),
(65948, 'https://ror.org/04yq6yj22', 'no_lang_code', 1, 'https://ror.org/04yq6yj22 AgSpace (United Kingdom)'),
(65949, 'https://ror.org/02xaygw50', 'no_lang_code', 1, 'https://ror.org/02xaygw50 Aqdot (United Kingdom)'),
(65950, 'https://ror.org/02rb7k030', 'no_lang_code', 1, 'https://ror.org/02rb7k030 AI Factory (United Kingdom)'),
(65951, 'https://ror.org/00d6gwq77', 'en', 1, 'https://ror.org/00d6gwq77 Extra Care Physiotherapy Centre'),
(65952, 'https://ror.org/00ahg0572', 'no_lang_code', 1, 'https://ror.org/00ahg0572 Syneos Health (Germany)'),
(65953, 'https://ror.org/032sv7e28', 'no_lang_code', 1, 'https://ror.org/032sv7e28 AiGameDev.com (Austria)'),
(65954, 'https://ror.org/03yfxxf37', 'no_lang_code', 1, 'https://ror.org/03yfxxf37 Air Black Box (United Kingdom)'),
(65955, 'https://ror.org/01wrnz920', 'no_lang_code', 1, 'https://ror.org/01wrnz920 Arcadis (United States)'),
(65956, 'https://ror.org/00ytxpg21', 'no_lang_code', 1, 'https://ror.org/00ytxpg21 Applied Multilayers (United Kingdom)'),
(65957, 'https://ror.org/03r1dwc49', 'no_lang_code', 1, 'https://ror.org/03r1dwc49 Harsco (United Kingdom)'),
(65958, 'https://ror.org/03jqpht28', 'no_lang_code', 1, 'https://ror.org/03jqpht28 Ferrovial (United Kingdom)'),
(65959, 'https://ror.org/02fpeer60', 'no_lang_code', 1, 'https://ror.org/02fpeer60 2-DTech (United Kingdom)'),
(65960, 'https://ror.org/059wz2726', 'no_lang_code', 1, 'https://ror.org/059wz2726 Archipelago Technology (United Kingdom)'),
(65961, 'https://ror.org/05fhjra85', 'en', 1, 'https://ror.org/05fhjra85 Ailtearachd is Dealbhadh na h-Alba Architecture and Design Scotland'),
(65962, 'https://ror.org/0470cr695', 'no_lang_code', 1, 'https://ror.org/0470cr695 AKT II (United Kingdom)'),
(65963, 'https://ror.org/040c9hz12', 'no_lang_code', 1, 'https://ror.org/040c9hz12 Tozer Seeds (United Kingdom)'),
(65964, 'https://ror.org/02ccc7d21', 'no_lang_code', 1, 'https://ror.org/02ccc7d21 Albatern (United Kingdom)'),
(65965, 'https://ror.org/00cgmem79', 'no_lang_code', 1, 'https://ror.org/00cgmem79 Power Roll (United Kingdom)'),
(65966, 'https://ror.org/0077fwc46', 'no_lang_code', 1, 'https://ror.org/0077fwc46 Big White Wall (United Kingdom)'),
(65967, 'https://ror.org/02f66ex89', 'no_lang_code', 1, 'https://ror.org/02f66ex89 Bio bean (United Kingdom)'),
(65968, 'https://ror.org/05rdw5k78', 'no_lang_code', 1, 'https://ror.org/05rdw5k78 Biocarbon Engineering (United Kingdom)'),
(65969, 'https://ror.org/01mzy1p82', 'no_lang_code', 1, 'https://ror.org/01mzy1p82 DaVinci Laboratories (United States)'),
(65970, 'https://ror.org/02qgeqz65', 'no_lang_code', 1, 'https://ror.org/02qgeqz65 Alcove (United Kingdom)'),
(65971, 'https://ror.org/01r15jk41', 'no_lang_code', 1, 'https://ror.org/01r15jk41 Biogelx (United Kingdom)'),
(65972, 'https://ror.org/02z3r7t23', 'en', 1, 'https://ror.org/02z3r7t23 Edinburgh Genomics'),
(65973, 'https://ror.org/017xc4380', 'no_lang_code', 1, 'https://ror.org/017xc4380 Alexander Dennis (United Kingdom)'),
(65974, 'https://ror.org/04vrwc094', 'no_lang_code', 1, 'https://ror.org/04vrwc094 Biome Technologies (United Kingdom)');
INSERT INTO `rors` VALUES
(65975, 'https://ror.org/00kq61997', 'no_lang_code', 1, 'https://ror.org/00kq61997 Arterius (United Kingdom)'),
(65976, 'https://ror.org/013t7g336', 'en', 1, 'https://ror.org/013t7g336 Bioregional'),
(65977, 'https://ror.org/001ky3808', 'no_lang_code', 1, 'https://ror.org/001ky3808 Allford Hall Monaghan Morris (United Kingdom)'),
(65978, 'https://ror.org/015b9mz47', 'no_lang_code', 1, 'https://ror.org/015b9mz47 Artworks Cymru'),
(65979, 'https://ror.org/02ktw5c97', 'no_lang_code', 1, 'https://ror.org/02ktw5c97 Walgreens Boots Alliance (United Kingdom)'),
(65980, 'https://ror.org/00qj80m76', 'no_lang_code', 1, 'https://ror.org/00qj80m76 BIPVco (United Kingdom)'),
(65981, 'https://ror.org/031mxty05', 'no_lang_code', 1, 'https://ror.org/031mxty05 Activ8rlives (United Kingdom)'),
(65982, 'https://ror.org/03yepnj33', 'no_lang_code', 1, 'https://ror.org/03yepnj33 ALP Technologies (United Kingdom)'),
(65983, 'https://ror.org/00a9f8892', 'en', 1, 'https://ror.org/00a9f8892 Bishop Simeon Trust'),
(65984, 'https://ror.org/044kv7f59', 'en', 1, 'https://ror.org/044kv7f59 Bishopsgate Institute'),
(65985, 'https://ror.org/024kww824', 'no_lang_code', 1, 'https://ror.org/024kww824 AlphaFox Systems (United Kingdom)'),
(65986, 'https://ror.org/0486wce04', 'en', 1, 'https://ror.org/0486wce04 Black Cultural Archives'),
(65987, 'https://ror.org/00qe9bz64', 'en', 1, 'https://ror.org/00qe9bz64 Blackpool Council'),
(65988, 'https://ror.org/03pengj43', 'es', 1, 'https://ror.org/03pengj43 Asociación de Comunidades Forestales de Peten'),
(65989, 'https://ror.org/02gn6qq35', 'no_lang_code', 1, 'https://ror.org/02gn6qq35 Bladon Jets (United Kingdom)'),
(65990, 'https://ror.org/03eg3xh26', 'no_lang_code', 1, 'https://ror.org/03eg3xh26 Bleepbleeps (United Kingdom)'),
(65991, 'https://ror.org/03reqkm68', 'no_lang_code', 1, 'https://ror.org/03reqkm68 Blendology (United Kingdom)'),
(65992, 'https://ror.org/00bmszw78', 'no_lang_code', 1, 'https://ror.org/00bmszw78 Block Dox (United Kingdom)'),
(65993, 'https://ror.org/00pss1k50', 'no_lang_code', 1, 'https://ror.org/00pss1k50 Bloodaxe Books (United Kingdom)'),
(65994, 'https://ror.org/02qms3512', 'no_lang_code', 1, 'https://ror.org/02qms3512 Assist Mi (United Kingdom)'),
(65995, 'https://ror.org/05drjse03', 'no_lang_code', 1, 'https://ror.org/05drjse03 Thermionix Energy (United Kingdom)'),
(65996, 'https://ror.org/02nncgd63', 'no_lang_code', 1, 'https://ror.org/02nncgd63 BNP Paribas (United Kingdom)'),
(65997, 'https://ror.org/00eb2vz50', 'en', 1, 'https://ror.org/00eb2vz50 Rail Delivery Group'),
(65998, 'https://ror.org/0514g5649', 'no_lang_code', 1, 'https://ror.org/0514g5649 Bodle Technologies (United Kingdom)'),
(65999, 'https://ror.org/00tn0fn37', 'no_lang_code', 1, 'https://ror.org/00tn0fn37 Jaywing (United Kingdom)'),
(66000, 'https://ror.org/05610bc49', 'en', 1, 'https://ror.org/05610bc49 Partnerships in Environmental Management for the Seas of East Asia'),
(66001, 'https://ror.org/03xzqa656', 'en', 1, 'https://ror.org/03xzqa656 Pembina Institute'),
(66002, 'https://ror.org/0455ncp47', 'en', 1, 'https://ror.org/0455ncp47 Association for Language Learning'),
(66003, 'https://ror.org/04n2kvd60', 'en', 1, 'https://ror.org/04n2kvd60 Conseil des AcadƩmies Canadiennes Council of Canadian Academies'),
(66004, 'https://ror.org/035cs2n55', 'en', 1, 'https://ror.org/035cs2n55 Association for Nutrition'),
(66005, 'https://ror.org/000jxr567', 'en', 1, 'https://ror.org/000jxr567 Association of Independent Museums'),
(66006, 'https://ror.org/04smgsr53', 'en', 1, 'https://ror.org/04smgsr53 Canal and River Trust'),
(66007, 'https://ror.org/04cegfm62', 'en', 1, 'https://ror.org/04cegfm62 The Rivers Trust'),
(66008, 'https://ror.org/05scsxp22', 'en', 1, 'https://ror.org/05scsxp22 Growth Networks Uganda'),
(66009, 'https://ror.org/02fp12092', 'no_lang_code', 1, 'https://ror.org/02fp12092 CeGaT (Germany)'),
(66010, 'https://ror.org/00jhee281', 'en', 1, 'https://ror.org/00jhee281 Centre for Innovation Excellence in Livestock'),
(66011, 'https://ror.org/044dmqn91', 'en', 1, 'https://ror.org/044dmqn91 Centre for Sustainable Healthcare'),
(66012, 'https://ror.org/00sg0ja15', 'en', 1, 'https://ror.org/00sg0ja15 Amgueddfa Ceredigion Ceredigion Museum'),
(66013, 'https://ror.org/00ayy7n17', 'no_lang_code', 1, 'https://ror.org/00ayy7n17 Aston Particle Technologies (United Kingdom)'),
(66014, 'https://ror.org/032x61x06', 'no_lang_code', 1, 'https://ror.org/032x61x06 Astrimmune (United Kingdom)'),
(66015, 'https://ror.org/03w12qr69', 'no_lang_code', 1, 'https://ror.org/03w12qr69 Clinipace (South Korea)'),
(66016, 'https://ror.org/044bzs788', 'no_lang_code', 1, 'https://ror.org/044bzs788 ATDBio (United Kingdom)'),
(66017, 'https://ror.org/01gkngr03', 'no_lang_code', 1, 'https://ror.org/01gkngr03 ATG UV Technology (United Kingdom)'),
(66018, 'https://ror.org/03jt3fb13', 'en', 1, 'https://ror.org/03jt3fb13 BiofoodCRO (South Korea) ė°”ģ“ģ˜¤ķ‘øė“œ CRO'),
(66019, 'https://ror.org/05bcwh715', 'en', 1, 'https://ror.org/05bcwh715 Alba Trees'),
(66020, 'https://ror.org/02j64yq05', 'en', 1, 'https://ror.org/02j64yq05 Auckland Castle Trust'),
(66021, 'https://ror.org/003da0193', 'no_lang_code', 1, 'https://ror.org/003da0193 Atlantis Resources (United Kingdom)'),
(66022, 'https://ror.org/05fxdte78', 'no_lang_code', 1, 'https://ror.org/05fxdte78 Ceva Animal Health (United Kingdom)'),
(66023, 'https://ror.org/03s0s8j32', 'en', 1, 'https://ror.org/03s0s8j32 Centre for Modelling & Simulation'),
(66024, 'https://ror.org/000qm5821', 'no_lang_code', 1, 'https://ror.org/000qm5821 Chain Biotechnology (United Kingdom)'),
(66025, 'https://ror.org/02hx87760', 'no_lang_code', 1, 'https://ror.org/02hx87760 Canary Wharf Group (United Kingdom)'),
(66026, 'https://ror.org/05ch0my81', 'no_lang_code', 1, 'https://ror.org/05ch0my81 Change of Paradigm (United Kingdom)'),
(66027, 'https://ror.org/05jxkdk91', 'en', 1, 'https://ror.org/05jxkdk91 Charity Commission for England and Wales'),
(66028, 'https://ror.org/03dnk5950', 'no_lang_code', 1, 'https://ror.org/03dnk5950 Canberra (United Kingdom)'),
(66029, 'https://ror.org/00bant556', 'en', 1, 'https://ror.org/00bant556 Charnwood Arts'),
(66030, 'https://ror.org/00rhakp81', 'en', 1, 'https://ror.org/00rhakp81 GAM Investments'),
(66031, 'https://ror.org/03dtb8870', 'no_lang_code', 1, 'https://ror.org/03dtb8870 Speechmatics (United Kingdom)'),
(66032, 'https://ror.org/00z84ne79', 'en', 1, 'https://ror.org/00z84ne79 Canterbury City Council'),
(66033, 'https://ror.org/03rkqvk58', 'en', 1, 'https://ror.org/03rkqvk58 Capital Enterprise'),
(66034, 'https://ror.org/04vazsk69', 'en', 1, 'https://ror.org/04vazsk69 Carbon Capture & Storage Association'),
(66035, 'https://ror.org/04mk8hf46', 'en', 1, 'https://ror.org/04mk8hf46 Amgueddfa Stori Caerdydd Cardiff Story Museum'),
(66036, 'https://ror.org/02mfx6g88', 'no_lang_code', 1, 'https://ror.org/02mfx6g88 Cardiocity (United Kingdom)'),
(66037, 'https://ror.org/01eq53z97', 'no_lang_code', 1, 'https://ror.org/01eq53z97 Chemoxy (United Kingdom)'),
(66038, 'https://ror.org/01j3dap11', 'en', 1, 'https://ror.org/01j3dap11 Cardiff West Community High School'),
(66039, 'https://ror.org/01rfqch15', 'en', 1, 'https://ror.org/01rfqch15 The Indonesian Institute, Center for Public Policy Research'),
(66040, 'https://ror.org/015b6zh04', 'en', 1, 'https://ror.org/015b6zh04 Cheshire West and Chester'),
(66041, 'https://ror.org/029ma5383', 'en', 1, 'https://ror.org/029ma5383 Care International'),
(66042, 'https://ror.org/00pvegc36', 'no_lang_code', 1, 'https://ror.org/00pvegc36 Chevron (United Kingdom)'),
(66043, 'https://ror.org/04h534k32', 'no_lang_code', 1, 'https://ror.org/04h534k32 Chiaro (United Kingdom)'),
(66044, 'https://ror.org/05dec7653', 'en', 1, 'https://ror.org/05dec7653 Children in Scotland'),
(66045, 'https://ror.org/01skxtv98', 'no_lang_code', 1, 'https://ror.org/01skxtv98 Citi Logik (United Kingdom)'),
(66046, 'https://ror.org/01qv4nh82', 'no_lang_code', 1, 'https://ror.org/01qv4nh82 Cartap (United Kingdom)'),
(66047, 'https://ror.org/055bsnv14', 'no_lang_code', 1, 'https://ror.org/055bsnv14 Clean Energy Prospector (United Kingdom)'),
(66048, 'https://ror.org/01xsvrg26', 'no_lang_code', 1, 'https://ror.org/01xsvrg26 Cascoda (United Kingdom)'),
(66049, 'https://ror.org/047bk8v58', 'no_lang_code', 1, 'https://ror.org/047bk8v58 Cast Metals Federation (United Kingdom)'),
(66050, 'https://ror.org/01fc2st08', 'no_lang_code', 1, 'https://ror.org/01fc2st08 Clear Water Revival (United Kingdom)'),
(66051, 'https://ror.org/04e116f14', 'no_lang_code', 1, 'https://ror.org/04e116f14 Cargill (Belgium)'),
(66052, 'https://ror.org/049rnt984', 'no_lang_code', 1, 'https://ror.org/049rnt984 Tyson Foods (United Kingdom)'),
(66053, 'https://ror.org/00bnbwc20', 'en', 1, 'https://ror.org/00bnbwc20 Castlefield Gallery'),
(66054, 'https://ror.org/04bsc7n50', 'no_lang_code', 1, 'https://ror.org/04bsc7n50 CoControl (United Kingdom)'),
(66055, 'https://ror.org/04r85yt40', 'no_lang_code', 1, 'https://ror.org/04r85yt40 Cojac (United Kingdom)'),
(66056, 'https://ror.org/01ttqmm87', 'no_lang_code', 1, 'https://ror.org/01ttqmm87 CatScI (United Kingdom)'),
(66057, 'https://ror.org/00380qe69', 'fr', 1, 'https://ror.org/00380qe69 ComitƩ Champagne ComitƩ Interprofessionnel du vin de Champagne'),
(66058, 'https://ror.org/00b8t8z12', 'no_lang_code', 1, 'https://ror.org/00b8t8z12 CAV Advanced Technologies (United Kingdom)'),
(66059, 'https://ror.org/03gtecx53', 'en', 1, 'https://ror.org/03gtecx53 Commonwealth Secretariat'),
(66060, 'https://ror.org/022sn6h14', 'no_lang_code', 1, 'https://ror.org/022sn6h14 Alvant (United Kingdom)'),
(66061, 'https://ror.org/025n3m882', 'no_lang_code', 1, 'https://ror.org/025n3m882 CCm Technologies (United Kingdom)'),
(66062, 'https://ror.org/03fcc9n48', 'no_lang_code', 1, 'https://ror.org/03fcc9n48 Celbius (United Kingdom)'),
(66063, 'https://ror.org/011nkhg51', 'no_lang_code', 1, 'https://ror.org/011nkhg51 Chromacity (United Kingdom)'),
(66064, 'https://ror.org/006pd7g98', 'no_lang_code', 1, 'https://ror.org/006pd7g98 Cell Guidance Systems (United Kingdom)'),
(66065, 'https://ror.org/039me2320', 'no_lang_code', 1, 'https://ror.org/039me2320 ValiRx (United Kingdom)'),
(66066, 'https://ror.org/0247e9n34', 'no_lang_code', 1, 'https://ror.org/0247e9n34 Cellucomp (United Kingdom)'),
(66067, 'https://ror.org/031194929', 'no_lang_code', 1, 'https://ror.org/031194929 Chrysalis Health & Beauty (United Kingdom)'),
(66068, 'https://ror.org/04ea9m912', 'no_lang_code', 1, 'https://ror.org/04ea9m912 Cellular Therapeutics (United Kingdom)'),
(66069, 'https://ror.org/04m5qh397', 'en', 1, 'https://ror.org/04m5qh397 Church of England'),
(66070, 'https://ror.org/028v17202', 'no_lang_code', 1, 'https://ror.org/028v17202 Compound Semiconductor Centre (United Kingdom)'),
(66071, 'https://ror.org/01yxxqf96', 'en', 1, 'https://ror.org/01yxxqf96 Concern Worldwide UK'),
(66072, 'https://ror.org/041sejv93', 'no_lang_code', 1, 'https://ror.org/041sejv93 Boeing (United Kingdom)'),
(66073, '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'),
(66074, 'https://ror.org/049yh6j39', 'no_lang_code', 1, 'https://ror.org/049yh6j39 CMCL Innovations (United Kingdom)'),
(66075, 'https://ror.org/03gy09487', 'no_lang_code', 1, 'https://ror.org/03gy09487 CN Bio Innovations (United Kingdom)'),
(66076, 'https://ror.org/0131enr16', 'no_lang_code', 1, 'https://ror.org/0131enr16 CNR Services International (United Kingdom)'),
(66077, 'https://ror.org/04f81me03', 'no_lang_code', 1, 'https://ror.org/04f81me03 Constellium (France)'),
(66078, 'https://ror.org/0294ypw92', 'en', 1, 'https://ror.org/0294ypw92 Coast to Capital'),
(66079, 'https://ror.org/002tj9208', 'en', 1, 'https://ror.org/002tj9208 Construction Industry Council'),
(66080, 'https://ror.org/00t6s9p18', 'en', 1, 'https://ror.org/00t6s9p18 Lloyd''s Maritime Academy'),
(66081, 'https://ror.org/03aw27j10', 'en', 1, 'https://ror.org/03aw27j10 Contact Theatre'),
(66082, 'https://ror.org/052bj1e57', 'no_lang_code', 1, 'https://ror.org/052bj1e57 Contamac (United Kingdom)'),
(66083, 'https://ror.org/03yzcrs31', 'en', 1, 'https://ror.org/03yzcrs31 Bradford District Care NHS Foundation Trust'),
(66084, 'https://ror.org/02z9np441', 'no_lang_code', 1, 'https://ror.org/02z9np441 CGA Simulations (United Kingdom)'),
(66085, 'https://ror.org/01k4fsz02', 'no_lang_code', 1, 'https://ror.org/01k4fsz02 Brainomix (United Kingdom)'),
(66086, 'https://ror.org/02bw9ra57', 'no_lang_code', 1, 'https://ror.org/02bw9ra57 Corium Solutions (United Kingdom)'),
(66087, 'https://ror.org/04tmm4t39', 'en', 1, 'https://ror.org/04tmm4t39 Creative Carbon Scotland'),
(66088, 'https://ror.org/021peq975', 'no_lang_code', 1, 'https://ror.org/021peq975 Bramble Energy (United Kingdom)'),
(66089, 'https://ror.org/02en1qh26', 'no_lang_code', 1, 'https://ror.org/02en1qh26 Creative Concern (United Kingdom)'),
(66090, 'https://ror.org/00w85kx21', 'en', 1, 'https://ror.org/00w85kx21 Breast Cancer Care'),
(66091, 'https://ror.org/05v9hkc73', 'no_lang_code', 1, 'https://ror.org/05v9hkc73 Covnetics (United Kingdom)'),
(66092, 'https://ror.org/03fqhsr33', 'no_lang_code', 1, 'https://ror.org/03fqhsr33 Breathing Buildings (United Kingdom)'),
(66093, 'https://ror.org/03na4j812', 'no_lang_code', 1, 'https://ror.org/03na4j812 CreaPhys (Germany)'),
(66094, 'https://ror.org/02yz5ze35', 'no_lang_code', 1, 'https://ror.org/02yz5ze35 Critical Solutions International (United States)'),
(66095, 'https://ror.org/0105p2r38', 'en', 1, 'https://ror.org/0105p2r38 Bristol and Bath Science Park'),
(66096, 'https://ror.org/03r0gs027', 'no_lang_code', 1, 'https://ror.org/03r0gs027 CrystecPharma (United Kingdom)'),
(66097, 'https://ror.org/0226gmk97', 'en', 1, 'https://ror.org/0226gmk97 Bristol Museum & Art Gallery'),
(66098, 'https://ror.org/03hhzh088', 'no_lang_code', 1, 'https://ror.org/03hhzh088 C-Tex (United Kingdom)'),
(66099, 'https://ror.org/051x0xg08', 'en', 1, 'https://ror.org/051x0xg08 Natura Foundation'),
(66100, 'https://ror.org/058t64323', 'pt', 1, 'https://ror.org/058t64323 CSEM'),
(66101, 'https://ror.org/02a98s891', 'en', 1, 'https://ror.org/02a98s891 Helmholtz Institute for RNA-based Infection Research Helmholtz-Institut für RNA-basierte Infektionsforschung'),
(66102, 'https://ror.org/020kx6615', 'en', 1, 'https://ror.org/020kx6615 Cultural Enterprise Office'),
(66103, 'https://ror.org/01gav0153', 'en', 1, 'https://ror.org/01gav0153 Bristol Green Capital Partnership'),
(66104, 'https://ror.org/01d0mcn71', 'en', 1, 'https://ror.org/01d0mcn71 Croft Additive Manufacturing'),
(66105, 'https://ror.org/03fmdyk54', 'no_lang_code', 1, 'https://ror.org/03fmdyk54 Cutting & Wear (United Kingdom)'),
(66106, 'https://ror.org/0577v7f42', 'en', 1, 'https://ror.org/0577v7f42 Crop Health and Protection'),
(66107, 'https://ror.org/02nv0e913', 'en', 1, 'https://ror.org/02nv0e913 Bristol Health Partners'),
(66108, 'https://ror.org/037g0v202', 'en', 1, 'https://ror.org/037g0v202 Bristol Hospitality Network'),
(66109, 'https://ror.org/05e6vta90', 'no_lang_code', 1, 'https://ror.org/05e6vta90 Cypralis (United Kingdom)'),
(66110, 'https://ror.org/05pd8ej68', 'no_lang_code', 1, 'https://ror.org/05pd8ej68 Crossword Cybersecurity (United Kingdom)'),
(66111, 'https://ror.org/001kj9s64', 'en', 1, 'https://ror.org/001kj9s64 Bristol Natural History Consortium'),
(66112, 'https://ror.org/056sbyc67', 'en', 1, 'https://ror.org/056sbyc67 Bristol Robotics Laboratory'),
(66113, 'https://ror.org/017hy4e72', 'en', 1, 'https://ror.org/017hy4e72 Crown Prosecution Service'),
(66114, 'https://ror.org/02vmc0j64', 'no_lang_code', 1, 'https://ror.org/02vmc0j64 D-RisQ (United Kingdom)'),
(66115, 'https://ror.org/041e3g390', 'no_lang_code', 1, 'https://ror.org/041e3g390 Crypta Labs (United Kingdom)'),
(66116, 'https://ror.org/04marmm60', 'no_lang_code', 1, 'https://ror.org/04marmm60 D2NA (United Kingdom)'),
(66117, 'https://ror.org/05bjekg60', 'no_lang_code', 1, 'https://ror.org/05bjekg60 Bristol Water (United Kingdom)'),
(66118, 'https://ror.org/0499kfe57', 'en', 1, 'https://ror.org/0499kfe57 Department for Work and Pensions'),
(66119, 'https://ror.org/0167cg095', 'no_lang_code', 1, 'https://ror.org/0167cg095 Daden (United Kingdom)'),
(66120, 'https://ror.org/021dst456', 'en', 1, 'https://ror.org/021dst456 Derby Museums'),
(66121, 'https://ror.org/01ak5f834', 'en', 1, 'https://ror.org/01ak5f834 Derbyshire County Council'),
(66122, 'https://ror.org/03x7gzh76', 'en', 1, 'https://ror.org/03x7gzh76 The Design Museum'),
(66123, 'https://ror.org/015ff4823', 'en', 1, 'https://ror.org/015ff4823 Sci-Tech Daresbury'),
(66124, 'https://ror.org/02mq35511', 'en', 1, 'https://ror.org/02mq35511 British Cycling'),
(66125, 'https://ror.org/035598n44', 'no_lang_code', 1, 'https://ror.org/035598n44 DCC Health & Beauty Solutions'),
(66126, 'https://ror.org/05jg7y437', 'no_lang_code', 1, 'https://ror.org/05jg7y437 Desktop Genetics (United Kingdom)'),
(66127, 'https://ror.org/03aearw79', 'en', 1, 'https://ror.org/03aearw79 Devon Guild of Craftsmen'),
(66128, 'https://ror.org/04pw43593', 'no_lang_code', 1, 'https://ror.org/04pw43593 British Glass'),
(66129, 'https://ror.org/05gcdb333', 'no_lang_code', 1, 'https://ror.org/05gcdb333 DataTalk (United Kingdom)'),
(66130, 'https://ror.org/043sy2j95', 'no_lang_code', 1, 'https://ror.org/043sy2j95 Devro (United Kingdom)'),
(66131, 'https://ror.org/03gtnj176', 'no_lang_code', 1, 'https://ror.org/03gtnj176 Diagnostic Sonar (United Kingdom)'),
(66132, 'https://ror.org/04e2ayg86', 'no_lang_code', 1, 'https://ror.org/04e2ayg86 Diagnostics for the Real World (United Kingdom)'),
(66133, 'https://ror.org/02yxzrq46', 'no_lang_code', 1, 'https://ror.org/02yxzrq46 Diamond Photofoil (United Kingdom)'),
(66134, 'https://ror.org/0483jcr74', 'no_lang_code', 1, 'https://ror.org/0483jcr74 British Precast (United Kingdom)'),
(66135, 'https://ror.org/03wsc5672', 'no_lang_code', 1, 'https://ror.org/03wsc5672 Digital Catapult (United Kingdom)'),
(66136, 'https://ror.org/017mwaf76', 'en', 1, 'https://ror.org/017mwaf76 British Water'),
(66137, 'https://ror.org/04w1svb78', 'no_lang_code', 1, 'https://ror.org/04w1svb78 Brother International (United Kingdom)'),
(66138, 'https://ror.org/02jfw5430', 'en', 1, 'https://ror.org/02jfw5430 Powys Dance'),
(66139, 'https://ror.org/00d1fsm72', 'no_lang_code', 1, 'https://ror.org/00d1fsm72 Dimensional Imaging (United Kingdom)'),
(66140, 'https://ror.org/051dx4d56', 'no_lang_code', 1, 'https://ror.org/051dx4d56 Bryant Symons Technologies (United Kingdom)'),
(66141, 'https://ror.org/02fjd2454', 'en', 1, 'https://ror.org/02fjd2454 Decom North Sea'),
(66142, 'https://ror.org/00gb9k226', 'no_lang_code', 1, 'https://ror.org/00gb9k226 DIPEx International (United Kingdom)'),
(66143, 'https://ror.org/049r93771', 'no_lang_code', 1, 'https://ror.org/049r93771 DNA Electronics (United Kingdom)'),
(66144, 'https://ror.org/040eyrz23', 'no_lang_code', 1, 'https://ror.org/040eyrz23 Domino (United Kingdom)'),
(66145, 'https://ror.org/017mxs556', 'en', 1, 'https://ror.org/017mxs556 Buglife'),
(66146, 'https://ror.org/04vv86192', 'en', 1, 'https://ror.org/04vv86192 Doncaster Council'),
(66147, 'https://ror.org/00x8he857', 'no_lang_code', 1, 'https://ror.org/00x8he857 Doncasters (United Kingdom)'),
(66148, 'https://ror.org/02gp9tw76', 'no_lang_code', 1, 'https://ror.org/02gp9tw76 Delta Motorsport (United Kingdom)'),
(66149, 'https://ror.org/009ba1g27', 'no_lang_code', 1, 'https://ror.org/009ba1g27 Bullion Tech (United Kingdom)'),
(66150, 'https://ror.org/03nh4nw42', 'no_lang_code', 1, 'https://ror.org/03nh4nw42 Dem Dx (United Kingdom)'),
(66151, 'https://ror.org/04kfpsj04', 'en', 1, 'https://ror.org/04kfpsj04 Business in the Community'),
(66152, 'https://ror.org/048mf0j29', 'en', 1, 'https://ror.org/048mf0j29 Business West'),
(66153, 'https://ror.org/04a0ct255', 'en', 1, 'https://ror.org/04a0ct255 Democracy Center'),
(66154, 'https://ror.org/007sv4q84', 'en', 1, 'https://ror.org/007sv4q84 Buxton Festival'),
(66155, 'https://ror.org/05scxdt25', 'en', 1, 'https://ror.org/05scxdt25 Drake Music'),
(66156, 'https://ror.org/02sfk5x26', 'no_lang_code', 1, 'https://ror.org/02sfk5x26 Byotrol (United Kingdom)'),
(66157, 'https://ror.org/00p10a639', 'no_lang_code', 1, 'https://ror.org/00p10a639 Drax (United Kingdom)'),
(66158, 'https://ror.org/007gr2e12', 'no_lang_code', 1, 'https://ror.org/007gr2e12 DRD Power (United Kingdom)'),
(66159, 'https://ror.org/05kvt2j84', 'no_lang_code', 1, 'https://ror.org/05kvt2j84 C4 Carbides (United Kingdom)'),
(66160, 'https://ror.org/03pch7e04', 'en', 1, 'https://ror.org/03pch7e04 CAG Consultants'),
(66161, 'https://ror.org/05451aa47', 'no_lang_code', 1, 'https://ror.org/05451aa47 DSV (United Kingdom)'),
(66162, 'https://ror.org/00nsted34', 'no_lang_code', 1, 'https://ror.org/00nsted34 Calon Cardio (United Kingdom)'),
(66163, 'https://ror.org/028casa56', 'no_lang_code', 1, 'https://ror.org/028casa56 GridDuck (United Kingdom)'),
(66164, 'https://ror.org/02dp0cj52', 'en', 1, 'https://ror.org/02dp0cj52 Dundee Contemporary Arts'),
(66165, 'https://ror.org/01mcf1q28', 'en', 1, 'https://ror.org/01mcf1q28 Durham Cathedral'),
(66166, 'https://ror.org/04rezdf48', 'no_lang_code', 1, 'https://ror.org/04rezdf48 Dycotec Materials (United Kingdom)'),
(66167, 'https://ror.org/016xf4y16', 'no_lang_code', 1, 'https://ror.org/016xf4y16 Dynamic Imaging (United Kingdom)'),
(66168, 'https://ror.org/0068m0j38', 'en', 1, 'https://ror.org/0068m0j38 Cancer Research UK Cambridge Center'),
(66169, 'https://ror.org/053ahvv37', 'en', 1, 'https://ror.org/053ahvv37 Esoterix'),
(66170, 'https://ror.org/02vy0w981', 'no_lang_code', 1, 'https://ror.org/02vy0w981 ESP Technology (United Kingdom)'),
(66171, 'https://ror.org/00kdtw736', 'no_lang_code', 1, 'https://ror.org/00kdtw736 Cambridge Carbon Capture (United Kingdom)'),
(66172, 'https://ror.org/013acqk67', 'no_lang_code', 1, 'https://ror.org/013acqk67 AMS (United Kingdom)'),
(66173, 'https://ror.org/00n0yt415', 'no_lang_code', 1, 'https://ror.org/00n0yt415 E4tech (United Kingdom)'),
(66174, 'https://ror.org/01158c721', 'en', 1, 'https://ror.org/01158c721 Estorick Collection of Modern Italian Art'),
(66175, 'https://ror.org/030vc9997', 'no_lang_code', 1, 'https://ror.org/030vc9997 Eagle Genomics (United Kingdom)'),
(66176, 'https://ror.org/00npqj595', 'en', 1, 'https://ror.org/00npqj595 Cambridge Curiosity and Imagination'),
(66177, 'https://ror.org/058qcqm21', 'en', 1, 'https://ror.org/058qcqm21 Early Intervention Foundation'),
(66178, 'https://ror.org/02069m354', 'en', 1, 'https://ror.org/02069m354 East Ayrshire Council'),
(66179, 'https://ror.org/010pgs956', 'no_lang_code', 1, 'https://ror.org/010pgs956 Cambridge Reactor Design (United Kingdom)'),
(66180, 'https://ror.org/02c2anw65', 'en', 1, 'https://ror.org/02c2anw65 East Belfast Mission'),
(66181, 'https://ror.org/02zw2vm28', 'en', 1, 'https://ror.org/02zw2vm28 EastSide Partnership'),
(66182, 'https://ror.org/05j2cg215', 'en', 1, 'https://ror.org/05j2cg215 Cambridge Housing Society'),
(66183, 'https://ror.org/03m7d0s87', 'en', 1, 'https://ror.org/03m7d0s87 Medilink East Midlands'),
(66184, 'https://ror.org/057wj6q87', 'en', 1, 'https://ror.org/057wj6q87 East Renfrewshire Council'),
(66185, 'https://ror.org/04rppdm80', 'en', 1, 'https://ror.org/04rppdm80 European and American Osteosarcoma Study Group'),
(66186, 'https://ror.org/0236s9n59', 'en', 1, 'https://ror.org/0236s9n59 East Sussex County Council'),
(66187, 'https://ror.org/03tzzx112', 'en', 1, 'https://ror.org/03tzzx112 E-Car Club'),
(66188, 'https://ror.org/01j8bzd71', 'no_lang_code', 1, 'https://ror.org/01j8bzd71 Cambridge Microelectronics (United Kingdom)'),
(66189, 'https://ror.org/02w3ejv56', 'no_lang_code', 1, 'https://ror.org/02w3ejv56 Eclipse Research Consultants (United Kingdom)'),
(66190, 'https://ror.org/05bqsm828', 'no_lang_code', 1, 'https://ror.org/05bqsm828 Cambridge Nanolitic (United Kingdom)'),
(66191, 'https://ror.org/041t08q89', 'no_lang_code', 1, 'https://ror.org/041t08q89 Handley Heating Services (United Kingdom)'),
(66192, 'https://ror.org/02m9wbt95', 'en', 1, 'https://ror.org/02m9wbt95 European Coil Coating Association'),
(66193, 'https://ror.org/02tszw848', 'en', 1, 'https://ror.org/02tszw848 European Energy Research Alliance Europese Alliantie voor Energieonderzoek'),
(66194, 'https://ror.org/02b3h4622', 'no_lang_code', 1, 'https://ror.org/02b3h4622 Cambridge Nanotherm (United Kingdom)'),
(66195, 'https://ror.org/034yp9n83', 'no_lang_code', 1, 'https://ror.org/034yp9n83 Ecometrica (United Kingdom)'),
(66196, 'https://ror.org/03dzmbv89', 'en', 1, 'https://ror.org/03dzmbv89 Cambridgeshire County Council'),
(66197, 'https://ror.org/033vexm94', 'no_lang_code', 1, 'https://ror.org/033vexm94 Econotherm (United Kingdom)'),
(66198, 'https://ror.org/00e02bd76', 'en', 1, 'https://ror.org/00e02bd76 European Marine Energy Centre'),
(66199, 'https://ror.org/037wd0n12', 'no_lang_code', 1, 'https://ror.org/037wd0n12 Farm Energy and Control Services (United Kingdom)'),
(66200, 'https://ror.org/01wmprq78', 'no_lang_code', 1, 'https://ror.org/01wmprq78 eCountability (United Kingdom)'),
(66201, 'https://ror.org/02vxnkm75', 'no_lang_code', 1, 'https://ror.org/02vxnkm75 GaitSmart (United Kingdom)'),
(66202, 'https://ror.org/01xm51j90', 'no_lang_code', 1, 'https://ror.org/01xm51j90 eCow Devon (United Kingdom)'),
(66203, 'https://ror.org/04bgfj122', 'no_lang_code', 1, 'https://ror.org/04bgfj122 Edelman (United Kingdom)'),
(66204, 'https://ror.org/013kn0e57', 'en', 1, 'https://ror.org/013kn0e57 Farming & Wildlife Advisory Group'),
(66205, 'https://ror.org/02qe51g80', 'en', 1, 'https://ror.org/02qe51g80 The Eden Rivers Trust'),
(66206, 'https://ror.org/024hrs294', 'no_lang_code', 1, 'https://ror.org/024hrs294 Eutechnyx (United Kingdom)'),
(66207, 'https://ror.org/004c4h916', 'en', 1, 'https://ror.org/004c4h916 Evaluation Support Scotland'),
(66208, 'https://ror.org/01hrwg648', 'en', 1, 'https://ror.org/01hrwg648 Avon Wildlife Trust'),
(66209, 'https://ror.org/03ydpmt51', 'no_lang_code', 1, 'https://ror.org/03ydpmt51 ffei (United Kingdom)'),
(66210, 'https://ror.org/05kvfm871', 'no_lang_code', 1, 'https://ror.org/05kvfm871 Fibercore (United Kingdom)'),
(66211, 'https://ror.org/022tsv947', 'no_lang_code', 1, 'https://ror.org/022tsv947 Fiberight (United Kingdom)'),
(66212, 'https://ror.org/01y6x9f04', 'no_lang_code', 1, 'https://ror.org/01y6x9f04 ColVisTec (Germany)'),
(66213, 'https://ror.org/04n99ng06', 'no_lang_code', 1, 'https://ror.org/04n99ng06 eLearning Studios (United Kingdom)'),
(66214, 'https://ror.org/04eacrz46', 'en', 1, 'https://ror.org/04eacrz46 Eversole Associates'),
(66215, 'https://ror.org/009bb4304', 'no_lang_code', 1, 'https://ror.org/009bb4304 Electricity North West (United Kingdom)'),
(66216, 'https://ror.org/03zw9ym67', 'no_lang_code', 1, 'https://ror.org/03zw9ym67 Electricity Storage Network (United Kingdom)'),
(66217, 'https://ror.org/026hfx847', 'no_lang_code', 1, 'https://ror.org/026hfx847 Electrosonic (United Kingdom)'),
(66218, 'https://ror.org/04hz7m473', 'no_lang_code', 1, 'https://ror.org/04hz7m473 Evonik (Switzerland)'),
(66219, 'https://ror.org/058y6z954', 'no_lang_code', 1, 'https://ror.org/058y6z954 Exagenica (United Kingdom)'),
(66220, 'https://ror.org/00zyzhx45', 'no_lang_code', 1, 'https://ror.org/00zyzhx45 ELG Carbon Fibre (United Kingdom)'),
(66221, 'https://ror.org/00myv8y06', 'no_lang_code', 1, 'https://ror.org/00myv8y06 Excivion (United Kingdom)'),
(66222, 'https://ror.org/001dvnn52', 'en', 1, 'https://ror.org/001dvnn52 Financial Conduct Authority'),
(66223, 'https://ror.org/00rm5gm86', 'en', 1, 'https://ror.org/00rm5gm86 Exemplar Associates'),
(66224, 'https://ror.org/00t0bdg44', 'no_lang_code', 1, 'https://ror.org/00t0bdg44 Exosect Enabling Technologies'),
(66225, 'https://ror.org/00xts7a11', 'no_lang_code', 1, 'https://ror.org/00xts7a11 Elisha Systems (United Kingdom)'),
(66226, 'https://ror.org/01fsnxq70', 'no_lang_code', 1, 'https://ror.org/01fsnxq70 Elite Antennas (United Kingdom)'),
(66227, 'https://ror.org/007nzgd38', 'no_lang_code', 1, 'https://ror.org/007nzgd38 Expedition (United Kingdom)'),
(66228, 'https://ror.org/00y2naf12', 'no_lang_code', 1, 'https://ror.org/00y2naf12 Firesouls (United Kingdom)'),
(66229, 'https://ror.org/04dtdfx84', 'no_lang_code', 1, 'https://ror.org/04dtdfx84 Exploristics (United Kingdom)'),
(66230, 'https://ror.org/018caxa54', 'en', 1, 'https://ror.org/018caxa54 Embody Orthopaedic'),
(66231, 'https://ror.org/00dj3pn18', 'no_lang_code', 1, 'https://ror.org/00dj3pn18 ExpreS2ion Biotechnologies (Denmark)'),
(66232, 'https://ror.org/01kstph72', 'no_lang_code', 1, 'https://ror.org/01kstph72 Emotech (United Kingdom)'),
(66233, 'https://ror.org/053sg5d59', 'no_lang_code', 1, 'https://ror.org/053sg5d59 Arconic (United Kingdom)'),
(66234, 'https://ror.org/04khvmp61', 'no_lang_code', 1, 'https://ror.org/04khvmp61 Fanuc (United Kingdom)'),
(66235, 'https://ror.org/026sr2a55', 'no_lang_code', 1, 'https://ror.org/026sr2a55 Encounters Arts (United Kingdom)'),
(66236, 'https://ror.org/00jg3eb36', 'en', 1, 'https://ror.org/00jg3eb36 Fischer Family Trust'),
(66237, 'https://ror.org/02zty9d43', 'en', 1, 'https://ror.org/02zty9d43 FAO/IAEA Agriculture and Biotechnology Laboratories'),
(66238, 'https://ror.org/027k9ac11', 'en', 1, 'https://ror.org/027k9ac11 Energy Networks Association'),
(66239, 'https://ror.org/05b0zb254', 'no_lang_code', 1, 'https://ror.org/05b0zb254 Far (United Kingdom)'),
(66240, 'https://ror.org/01jajf911', 'en', 1, 'https://ror.org/01jajf911 Energy Research Partnership'),
(66241, 'https://ror.org/01s8ycx98', 'en', 1, 'https://ror.org/01s8ycx98 Flatpack Film Festival'),
(66242, 'https://ror.org/01ahgf011', 'en', 1, 'https://ror.org/01ahgf011 Energy Systems Catapult'),
(66243, 'https://ror.org/02m4v1f10', 'no_lang_code', 1, 'https://ror.org/02m4v1f10 Energy Transitions (United Kingdom)'),
(66244, 'https://ror.org/04rxxfz69', 'en', 1, 'https://ror.org/04rxxfz69 Genomics England'),
(66245, 'https://ror.org/02vy6fy03', 'no_lang_code', 1, 'https://ror.org/02vy6fy03 GeoCento (United Kingdom)'),
(66246, 'https://ror.org/00rn0j915', 'no_lang_code', 1, 'https://ror.org/00rn0j915 Geo Green Power (United Kingdom)'),
(66247, 'https://ror.org/01085m037', 'no_lang_code', 1, 'https://ror.org/01085m037 Geolang (United Kingdom)'),
(66248, 'https://ror.org/00x4jvm44', 'no_lang_code', 1, 'https://ror.org/00x4jvm44 Flock (United Kingdom)'),
(66249, 'https://ror.org/059twtp92', 'no_lang_code', 1, 'https://ror.org/059twtp92 Entropea Labs (United Kingdom)'),
(66250, 'https://ror.org/05b887v59', 'no_lang_code', 1, 'https://ror.org/05b887v59 Flowgroup (United Kingdom)'),
(66251, 'https://ror.org/00bsgdw42', 'no_lang_code', 1, 'https://ror.org/00bsgdw42 Geomatic Ventures (United Kingdom)'),
(66252, 'https://ror.org/046nzts54', 'no_lang_code', 1, 'https://ror.org/046nzts54 Environmental Monitoring Solutions (United Kingdom)'),
(66253, 'https://ror.org/01ygra721', 'no_lang_code', 1, 'https://ror.org/01ygra721 Environmental Process Systems (United Kingdom)'),
(66254, 'https://ror.org/05wjcp323', 'no_lang_code', 1, 'https://ror.org/05wjcp323 Enza Zaden (Netherlands)'),
(66255, 'https://ror.org/03t2ahc57', 'no_lang_code', 1, 'https://ror.org/03t2ahc57 Eozone Group (United Kingdom)'),
(66256, 'https://ror.org/01gybxp05', 'no_lang_code', 1, 'https://ror.org/01gybxp05 Emteq (United Kingdom)'),
(66257, 'https://ror.org/04gf2dg91', 'no_lang_code', 1, 'https://ror.org/04gf2dg91 Epicardio (United Kingdom)'),
(66258, 'https://ror.org/00p2s1h75', 'en', 1, 'https://ror.org/00p2s1h75 Equality and Human Rights Commission'),
(66259, 'https://ror.org/0232zj786', 'no_lang_code', 1, 'https://ror.org/0232zj786 Focus Innovation (United Kingdom)'),
(66260, 'https://ror.org/01khbav88', 'no_lang_code', 1, 'https://ror.org/01khbav88 Getech (United Kingdom)'),
(66261, 'https://ror.org/03ww67x72', 'no_lang_code', 1, 'https://ror.org/03ww67x72 FlyingBinary (United Kingdom)'),
(66262, 'https://ror.org/02ghdcm41', 'en', 1, 'https://ror.org/02ghdcm41 Man Up Campaign'),
(66263, 'https://ror.org/02hp59b61', 'no_lang_code', 1, 'https://ror.org/02hp59b61 Folium Optics (United Kingdom)'),
(66264, 'https://ror.org/04cpcxa22', 'no_lang_code', 1, 'https://ror.org/04cpcxa22 Equipe Group (United Kingdom)'),
(66265, 'https://ror.org/028yfvv72', 'no_lang_code', 1, 'https://ror.org/028yfvv72 Equipmake (United Kingdom)'),
(66266, 'https://ror.org/04h2nqb04', 'en', 1, 'https://ror.org/04h2nqb04 Food Standards Scotland Inbhe-Bidhe Alba'),
(66267, 'https://ror.org/004q1d440', 'no_lang_code', 1, 'https://ror.org/004q1d440 HEL Group (United Kingdom)'),
(66268, 'https://ror.org/02f1ve384', 'no_lang_code', 1, 'https://ror.org/02f1ve384 Helia Photonics (United Kingdom)'),
(66269, 'https://ror.org/02888dy92', 'en', 1, 'https://ror.org/02888dy92 HelpAge International'),
(66270, 'https://ror.org/03pttjv50', 'en', 1, 'https://ror.org/03pttjv50 Glamorgan Archives'),
(66271, 'https://ror.org/059zjse65', 'en', 1, 'https://ror.org/059zjse65 Glasgow Housing Association'),
(66272, 'https://ror.org/0427ccd45', 'no_lang_code', 1, 'https://ror.org/0427ccd45 Forge (United Kingdom)'),
(66273, 'https://ror.org/05k1bk987', 'no_lang_code', 1, 'https://ror.org/05k1bk987 Hiflux (United Kingdom)'),
(66274, 'https://ror.org/05w1w8291', 'en', 1, 'https://ror.org/05w1w8291 High Peak Community Arts'),
(66275, 'https://ror.org/001kca336', 'no_lang_code', 1, 'https://ror.org/001kca336 Encirc (United Kingdom)'),
(66276, 'https://ror.org/053w2fj59', 'en', 1, 'https://ror.org/053w2fj59 Glass-House Community Led Design'),
(66277, 'https://ror.org/03rfc8789', 'en', 1, 'https://ror.org/03rfc8789 Foundation for Art and Creative Technology'),
(66278, 'https://ror.org/04ekj9p57', 'no_lang_code', 1, 'https://ror.org/04ekj9p57 GlenDimplex (United Kingdom)'),
(66279, 'https://ror.org/04yajxs70', 'en', 1, 'https://ror.org/04yajxs70 Frank P Matthews'),
(66280, 'https://ror.org/04c5hmr86', 'no_lang_code', 1, 'https://ror.org/04c5hmr86 Highway Resource Solutions (United Kingdom)'),
(66281, 'https://ror.org/038smd132', 'no_lang_code', 1, 'https://ror.org/038smd132 HiLight Semiconductor (United Kingdom)'),
(66282, 'https://ror.org/03eh9sb92', 'en', 1, 'https://ror.org/03eh9sb92 Historians Against Slavery'),
(66283, 'https://ror.org/057nkx415', 'no_lang_code', 1, 'https://ror.org/057nkx415 Historic Futures (United Kingdom)'),
(66284, 'https://ror.org/0096nz963', 'en', 1, 'https://ror.org/0096nz963 The Heritage Alliance'),
(66285, 'https://ror.org/05e9zkt34', 'en', 1, 'https://ror.org/05e9zkt34 Freshfields Bruckhaus Deringer'),
(66286, 'https://ror.org/00ztg7b72', 'en', 1, 'https://ror.org/00ztg7b72 Historical Association'),
(66287, 'https://ror.org/000n8h147', 'no_lang_code', 1, 'https://ror.org/000n8h147 Fripp Design (United Kingdom)'),
(66288, 'https://ror.org/01j82jb67', 'en', 1, 'https://ror.org/01j82jb67 Frontline Dance'),
(66289, 'https://ror.org/03nnrh396', 'no_lang_code', 1, 'https://ror.org/03nnrh396 Housing Quality Network (United Kingdom)'),
(66290, 'https://ror.org/02mag1e82', 'en', 1, 'https://ror.org/02mag1e82 Full Fact'),
(66291, 'https://ror.org/00etvy980', 'en', 1, 'https://ror.org/00etvy980 Gloucestershire Guild of Craftsmen'),
(66292, 'https://ror.org/03e3kzq14', 'no_lang_code', 1, 'https://ror.org/03e3kzq14 Hubbard Products (United Kingdom)'),
(66293, 'https://ror.org/02swqvf47', 'en', 1, 'https://ror.org/02swqvf47 PTEN Hamartoma Tumor Syndrome Foundation'),
(66294, 'https://ror.org/014d1nq39', 'en', 1, 'https://ror.org/014d1nq39 Hull History Centre'),
(66295, 'https://ror.org/02m7v0022', 'no_lang_code', 1, 'https://ror.org/02m7v0022 Fusion Innovations (United Kingdom)'),
(66296, 'https://ror.org/00dfz6605', 'en', 1, 'https://ror.org/00dfz6605 Future Transport Systems'),
(66297, 'https://ror.org/01ew95g57', 'no_lang_code', 1, 'https://ror.org/01ew95g57 Vir Biotechnology (Switzerland)'),
(66298, 'https://ror.org/04s5hmf73', 'en', 1, 'https://ror.org/04s5hmf73 The Hunterian'),
(66299, 'https://ror.org/05e7fdz72', 'no_lang_code', 1, 'https://ror.org/05e7fdz72 Futuregov (United Kingdom)'),
(66300, 'https://ror.org/03yqhkg72', 'no_lang_code', 1, 'https://ror.org/03yqhkg72 Hy-Line (United States)'),
(66301, 'https://ror.org/0181g3j87', 'no_lang_code', 1, 'https://ror.org/0181g3j87 Hybrid Air Vehicles (United Kingdom)'),
(66302, 'https://ror.org/01rcev019', 'no_lang_code', 1, 'https://ror.org/01rcev019 Hybrid Instruments (United Kingdom)'),
(66303, 'https://ror.org/04hc0ps23', 'no_lang_code', 1, 'https://ror.org/04hc0ps23 G-Volution (United Kingdom)'),
(66304, 'https://ror.org/00d2q3517', 'no_lang_code', 1, 'https://ror.org/00d2q3517 Arcadis (United Kingdom)'),
(66305, 'https://ror.org/04rv2he23', 'no_lang_code', 1, 'https://ror.org/04rv2he23 G''s Fresh (United Kingdom)'),
(66306, 'https://ror.org/036vxpt10', 'en', 1, 'https://ror.org/036vxpt10 Gama (United Kingdom)'),
(66307, 'https://ror.org/00yhnb286', 'no_lang_code', 1, 'https://ror.org/00yhnb286 Gnosys (United Kingdom)'),
(66308, 'https://ror.org/01h527v58', 'en', 1, 'https://ror.org/01h527v58 GBS Leiden'),
(66309, 'https://ror.org/01bax9607', 'no_lang_code', 1, 'https://ror.org/01bax9607 Hypha Discovery (United Kingdom)'),
(66310, 'https://ror.org/05e0we980', 'no_lang_code', 1, 'https://ror.org/05e0we980 Good Homes Alliance (United Kingdom)'),
(66311, 'https://ror.org/04kpqtt03', 'no_lang_code', 1, 'https://ror.org/04kpqtt03 i3D Robotics (United Kingdom)'),
(66312, 'https://ror.org/02c5w4v13', 'en', 1, 'https://ror.org/02c5w4v13 Gateshead Council'),
(66313, 'https://ror.org/05cg6gz18', 'no_lang_code', 1, 'https://ror.org/05cg6gz18 Ibex Innovations (United Kingdom)'),
(66314, 'https://ror.org/02vh2ts72', 'no_lang_code', 1, 'https://ror.org/02vh2ts72 Goodwin (United Kingdom)'),
(66315, 'https://ror.org/024bc3e07', 'no_lang_code', 1, 'https://ror.org/024bc3e07 Google (United Kingdom)'),
(66316, 'https://ror.org/002ywyv05', 'no_lang_code', 1, 'https://ror.org/002ywyv05 Icax (United Kingdom)'),
(66317, 'https://ror.org/032wy5y42', 'no_lang_code', 1, 'https://ror.org/032wy5y42 Innovative Cryogenic Engineering (United Kingdom)'),
(66318, 'https://ror.org/039xg1481', 'no_lang_code', 1, 'https://ror.org/039xg1481 Gateway (United Kingdom)'),
(66319, 'https://ror.org/04xe4ne75', 'en', 1, 'https://ror.org/04xe4ne75 Gouvernement de Maurice Government of Mauritius'),
(66320, 'https://ror.org/027g9mf44', 'en', 1, 'https://ror.org/027g9mf44 Government of the Philippines'),
(66321, 'https://ror.org/04jf04g79', 'en', 1, 'https://ror.org/04jf04g79 International Foundation for Integrated Care'),
(66322, 'https://ror.org/02jwva620', 'no_lang_code', 1, 'https://ror.org/02jwva620 Gelexir Healthcare (United Kingdom)'),
(66323, 'https://ror.org/00wrskr85', 'no_lang_code', 1, 'https://ror.org/00wrskr85 Igeolise (United Kingdom)'),
(66324, 'https://ror.org/0222rn292', 'no_lang_code', 1, 'https://ror.org/0222rn292 Hypetex (United Kingdom)'),
(66325, 'https://ror.org/003f9k191', 'en', 1, 'https://ror.org/003f9k191 Gem Arts'),
(66326, 'https://ror.org/01v7ngj48', 'en', 1, 'https://ror.org/01v7ngj48 Ikon Gallery'),
(66327, 'https://ror.org/0111grw10', 'no_lang_code', 1, 'https://ror.org/0111grw10 Graphitene (United Kingdom)'),
(66328, 'https://ror.org/03sbjj951', 'no_lang_code', 1, 'https://ror.org/03sbjj951 Gravitricity (United Kingdom)'),
(66329, 'https://ror.org/00jtr7j56', 'no_lang_code', 1, 'https://ror.org/00jtr7j56 Boris FX (United Kingdom)'),
(66330, 'https://ror.org/052ww7470', 'no_lang_code', 1, 'https://ror.org/052ww7470 General Mills (United Kingdom)'),
(66331, 'https://ror.org/00gssft54', 'no_lang_code', 1, 'https://ror.org/00gssft54 Invicro (United Kingdom)'),
(66332, 'https://ror.org/001x6t991', 'no_lang_code', 1, 'https://ror.org/001x6t991 Immaterial Labs (United Kingdom)'),
(66333, 'https://ror.org/01bat0e72', 'no_lang_code', 1, 'https://ror.org/01bat0e72 Impact Solutions (United Kingdom)'),
(66334, 'https://ror.org/03fxjr266', 'no_lang_code', 1, 'https://ror.org/03fxjr266 Impression Technologies (United Kingdom)'),
(66335, 'https://ror.org/014cnvs43', 'en', 1, 'https://ror.org/014cnvs43 Improvement Service'),
(66336, 'https://ror.org/03agtxq40', 'en', 1, 'https://ror.org/03agtxq40 Genetic Factors for Osteoporosis Consortium'),
(66337, 'https://ror.org/04nhsym74', 'no_lang_code', 1, 'https://ror.org/04nhsym74 Avatr (United Kingdom)'),
(66338, 'https://ror.org/04w38db16', 'no_lang_code', 1, 'https://ror.org/04w38db16 Inca Digital Printers (United Kingdom)'),
(66339, 'https://ror.org/02y5xjh56', 'en', 1, 'https://ror.org/02y5xjh56 International Neuroinformatics Coordinating Facility'),
(66340, 'https://ror.org/03ve00c59', 'no_lang_code', 1, 'https://ror.org/03ve00c59 Industrial Light & Magic (United Kingdom)'),
(66341, 'https://ror.org/033sqvz45', 'no_lang_code', 1, 'https://ror.org/033sqvz45 Industrial Phycology (United Kingdom)'),
(66342, 'https://ror.org/00p7fct09', 'no_lang_code', 1, 'https://ror.org/00p7fct09 Oxford Drug Design (United Kingdom)'),
(66343, 'https://ror.org/030nd5313', 'no_lang_code', 1, 'https://ror.org/030nd5313 Coventry (United Kingdom)'),
(66344, 'https://ror.org/059kpjd26', 'en', 1, 'https://ror.org/059kpjd26 Greater Shankill Partnership'),
(66345, 'https://ror.org/01qgwck47', 'en', 1, 'https://ror.org/01qgwck47 Green Alliance'),
(66346, 'https://ror.org/03kjkfb75', 'no_lang_code', 1, 'https://ror.org/03kjkfb75 It’s Fresh (United Kingdom)'),
(66347, 'https://ror.org/044w2a375', 'no_lang_code', 1, 'https://ror.org/044w2a375 Inspection Technologies (United Kingdom)'),
(66348, 'https://ror.org/04f3qs775', 'no_lang_code', 1, 'https://ror.org/04f3qs775 iThera Medical (Germany)'),
(66349, 'https://ror.org/01kfzv427', 'no_lang_code', 1, 'https://ror.org/01kfzv427 Green Running (United Kingdom)'),
(66350, 'https://ror.org/03z7s4z65', 'en', 1, 'https://ror.org/03z7s4z65 Inspiring Scotland'),
(66351, 'https://ror.org/00153ex82', 'no_lang_code', 1, 'https://ror.org/00153ex82 Socotec (United Kingdom)'),
(66352, 'https://ror.org/05wwj0f18', 'no_lang_code', 1, 'https://ror.org/05wwj0f18 Greengineering (United Kingdom)'),
(66353, 'https://ror.org/033sdmz09', 'no_lang_code', 1, 'https://ror.org/033sdmz09 ITS (United Kingdom)'),
(66354, 'https://ror.org/03xkqe691', 'no_lang_code', 1, 'https://ror.org/03xkqe691 Sweco (United Kingdom)'),
(66355, 'https://ror.org/01sxmq816', 'en', 1, 'https://ror.org/01sxmq816 J.P. Morgan'),
(66356, 'https://ror.org/02v72s867', 'no_lang_code', 1, 'https://ror.org/02v72s867 Jasco (United Kingdom)'),
(66357, 'https://ror.org/05g8xd728', 'en', 1, 'https://ror.org/05g8xd728 Jason Burges Studio'),
(66358, 'https://ror.org/00gef5g33', 'en', 1, 'https://ror.org/00gef5g33 Center for Beta Cell Therapy in Diabetes'),
(66359, 'https://ror.org/041ga0r52', 'no_lang_code', 1, 'https://ror.org/041ga0r52 GyroGear (United Kingdom)'),
(66360, 'https://ror.org/00erz7p38', 'no_lang_code', 1, 'https://ror.org/00erz7p38 Jellagen (United Kingdom)'),
(66361, 'https://ror.org/01qf53178', 'no_lang_code', 1, 'https://ror.org/01qf53178 Jellybooks (United Kingdom)'),
(66362, 'https://ror.org/04zjdjq28', 'no_lang_code', 1, 'https://ror.org/04zjdjq28 Hutchinson (United Kingdom)'),
(66363, 'https://ror.org/00wtwe162', 'en', 1, 'https://ror.org/00wtwe162 John Dora Consulting'),
(66364, 'https://ror.org/01f85g151', 'en', 1, 'https://ror.org/01f85g151 Creative Wick'),
(66365, 'https://ror.org/01rkf4y25', 'no_lang_code', 1, 'https://ror.org/01rkf4y25 Johnson Matthey Battery Systems (United Kingdom)'),
(66366, 'https://ror.org/0576zak10', 'no_lang_code', 1, 'https://ror.org/0576zak10 Intelligent Health (United Kingdom)'),
(66367, 'https://ror.org/00hd2sp32', 'no_lang_code', 1, 'https://ror.org/00hd2sp32 IntelliHep (United Kingdom)'),
(66368, 'https://ror.org/00we2ka15', 'no_lang_code', 1, 'https://ror.org/00we2ka15 Haemair (United Kingdom)'),
(66369, 'https://ror.org/02278he04', 'no_lang_code', 1, 'https://ror.org/02278he04 JSR Farming (United Kingdom)'),
(66370, 'https://ror.org/01s6fxv18', 'no_lang_code', 1, 'https://ror.org/01s6fxv18 Interactive Scientific (United Kingdom)'),
(66371, 'https://ror.org/03tfwa394', 'en', 1, 'https://ror.org/03tfwa394 Hampshire Constabulary'),
(66372, 'https://ror.org/05bsykf80', 'no_lang_code', 1, 'https://ror.org/05bsykf80 Hyperdrive Innovation (United Kingdom)'),
(66373, 'https://ror.org/01537rr61', 'en', 1, 'https://ror.org/01537rr61 JustGiving'),
(66374, 'https://ror.org/01d92aq70', 'no_lang_code', 1, 'https://ror.org/01d92aq70 InterDigital (United Kingdom)'),
(66375, 'https://ror.org/01d070g46', 'en', 1, 'https://ror.org/01d070g46 Haringey Council'),
(66376, 'https://ror.org/049kk5y54', 'en', 1, 'https://ror.org/049kk5y54 Siobhan Davies Studios'),
(66377, 'https://ror.org/0578b5015', 'no_lang_code', 1, 'https://ror.org/0578b5015 Indestructible Paint (United Kingdom)'),
(66378, 'https://ror.org/00qtezm52', 'no_lang_code', 1, 'https://ror.org/00qtezm52 HealthUnlocked (United Kingdom)'),
(66379, 'https://ror.org/00n6y9334', 'no_lang_code', 1, 'https://ror.org/00n6y9334 Kanichi (United Kingdom)'),
(66380, 'https://ror.org/05gsrqd02', 'en', 1, 'https://ror.org/05gsrqd02 International Crisis Group'),
(66381, 'https://ror.org/01ym1hq42', 'en', 1, 'https://ror.org/01ym1hq42 Federation of Environmental Trade Associations'),
(66382, 'https://ror.org/043tdpj13', 'no_lang_code', 1, 'https://ror.org/043tdpj13 Karm Research Group (United Kingdom)'),
(66383, 'https://ror.org/04a91ra66', 'no_lang_code', 1, 'https://ror.org/04a91ra66 Heathrow Airport Holdings (United Kingdom)'),
(66384, 'https://ror.org/0158zgz03', 'en', 1, 'https://ror.org/0158zgz03 International Longevity Centre'),
(66385, 'https://ror.org/01y659x67', 'no_lang_code', 1, 'https://ror.org/01y659x67 LabGenius (United Kingdom)'),
(66386, 'https://ror.org/01vr2v714', 'no_lang_code', 1, 'https://ror.org/01vr2v714 International Moisture Analysers (United Kingdom)'),
(66387, 'https://ror.org/0381np041', 'en', 1, 'https://ror.org/0381np041 Kent and Medway NHS and Social Care Partnership Trust'),
(66388, 'https://ror.org/03dvyec47', 'no_lang_code', 1, 'https://ror.org/03dvyec47 Lambda Films (United Kingdom)'),
(66389, 'https://ror.org/03kk81v06', 'en', 1, 'https://ror.org/03kk81v06 International Slavery Museum'),
(66390, 'https://ror.org/05c4ffc05', 'en', 1, 'https://ror.org/05c4ffc05 Lancashire Fire and Rescue Service'),
(66391, 'https://ror.org/04ymawg89', 'no_lang_code', 1, 'https://ror.org/04ymawg89 Ketonex (United Kingdom)'),
(66392, 'https://ror.org/037nsm974', 'no_lang_code', 1, 'https://ror.org/037nsm974 Landcatch (United Kingdom)'),
(66393, 'https://ror.org/01yr36w05', 'no_lang_code', 1, 'https://ror.org/01yr36w05 Key Organics (United Kingdom)'),
(66394, 'https://ror.org/04g81mm64', 'no_lang_code', 1, 'https://ror.org/04g81mm64 Keysight Technologies (United Kingdom)'),
(66395, 'https://ror.org/01504bq84', 'no_lang_code', 1, 'https://ror.org/01504bq84 Inventya (United Kingdom)'),
(66396, 'https://ror.org/02w4f0s33', 'no_lang_code', 1, 'https://ror.org/02w4f0s33 Larkfleet (United Kingdom)'),
(66397, 'https://ror.org/03vhfjx86', 'no_lang_code', 1, 'https://ror.org/03vhfjx86 Kimal (United Kingdom)'),
(66398, 'https://ror.org/05kt30h71', 'no_lang_code', 1, 'https://ror.org/05kt30h71 Laser 2000 (United Kingdom)'),
(66399, 'https://ror.org/0553r0192', 'no_lang_code', 1, 'https://ror.org/0553r0192 Ionix Advanced Technologies (United Kingdom)'),
(66400, 'https://ror.org/01pk4vy23', 'no_lang_code', 1, 'https://ror.org/01pk4vy23 Novanta (United Kingdom)'),
(66401, 'https://ror.org/043axjc63', 'no_lang_code', 1, 'https://ror.org/043axjc63 Kingfisher (United Kingdom)'),
(66402, 'https://ror.org/04dnw3t97', 'no_lang_code', 1, 'https://ror.org/04dnw3t97 Ionoptika (United Kingdom)'),
(66403, 'https://ror.org/04vncya87', 'no_lang_code', 1, 'https://ror.org/04vncya87 Laterit Productions (France)'),
(66404, 'https://ror.org/018dzfz24', 'no_lang_code', 1, 'https://ror.org/018dzfz24 KiWi Power (United Kingdom)'),
(66405, 'https://ror.org/05j1c1r74', 'no_lang_code', 1, 'https://ror.org/05j1c1r74 Ionotec (United Kingdom)'),
(66406, 'https://ror.org/05ndtje96', 'no_lang_code', 1, 'https://ror.org/05ndtje96 LaVision (United Kingdom)'),
(66407, 'https://ror.org/016frx827', 'en', 1, 'https://ror.org/016frx827 Knowledge Centre for Materials Chemistry'),
(66408, 'https://ror.org/039vmy627', 'en', 1, 'https://ror.org/039vmy627 Lawn Tennis Association'),
(66409, 'https://ror.org/05f71tw16', 'no_lang_code', 1, 'https://ror.org/05f71tw16 Ipsos (United Kingdom)'),
(66410, 'https://ror.org/00zy1tg06', 'en', 1, 'https://ror.org/00zy1tg06 Learning through Landscapes'),
(66411, 'https://ror.org/04cqfv685', 'no_lang_code', 1, 'https://ror.org/04cqfv685 Leeds City Region Enterprise Partnership (United Kingdom)'),
(66412, 'https://ror.org/01jpa7r59', 'en', 1, 'https://ror.org/01jpa7r59 West Africa Civil Society Institute'),
(66413, 'https://ror.org/03cvbjc43', 'it', 1, 'https://ror.org/03cvbjc43 I.R.C.C.S. Oasi Maria SS'),
(66414, 'https://ror.org/00dd2be17', 'no_lang_code', 1, 'https://ror.org/00dd2be17 Kite Entertainment (Ireland)'),
(66415, 'https://ror.org/01fygw054', 'en', 1, 'https://ror.org/01fygw054 Lifetime Lab'),
(66416, 'https://ror.org/01aaarj75', 'no_lang_code', 1, 'https://ror.org/01aaarj75 Baboro'),
(66417, 'https://ror.org/01sxvbm95', 'no_lang_code', 1, 'https://ror.org/01sxvbm95 10X Genomics (United States)'),
(66418, 'https://ror.org/04724nx69', 'en', 1, 'https://ror.org/04724nx69 Comhairle Contae Mhaigh Eo Mayo County Council'),
(66419, 'https://ror.org/02hw94g08', 'no_lang_code', 1, 'https://ror.org/02hw94g08 Ballyhoura Development (Ireland)'),
(66420, 'https://ror.org/03h8vnd21', 'no_lang_code', 1, 'https://ror.org/03h8vnd21 Mind the Gap Films (Ireland)'),
(66421, 'https://ror.org/04mfdcn64', 'en', 1, 'https://ror.org/04mfdcn64 Comhairle Contae MhuineachƔin Monaghan County Council'),
(66422, 'https://ror.org/02qd73916', 'no_lang_code', 1, 'https://ror.org/02qd73916 Brigit''s Garden'),
(66423, 'https://ror.org/04vsybf69', 'no_lang_code', 1, 'https://ror.org/04vsybf69 ADGS (Qatar)'),
(66424, 'https://ror.org/04q9fd590', 'en', 1, 'https://ror.org/04q9fd590 British Council'),
(66425, 'https://ror.org/04hxfpp72', 'no_lang_code', 1, 'https://ror.org/04hxfpp72 Ocean FM (Ireland)'),
(66426, 'https://ror.org/045wfpr34', 'en', 1, 'https://ror.org/045wfpr34 Comhairle Cathrach ChorcaĆ­ Cork City Council'),
(66427, 'https://ror.org/00q9egp83', 'no_lang_code', 1, 'https://ror.org/00q9egp83 Rough Magic Theatre (Ireland)'),
(66428, 'https://ror.org/05gkt5054', 'no_lang_code', 1, 'https://ror.org/05gkt5054 Agilent Technologies (Switzerland)'),
(66429, 'https://ror.org/03g7px163', 'en', 1, 'https://ror.org/03g7px163 Blackrock Castle Observatory');
INSERT INTO `rors` VALUES
(66430, 'https://ror.org/0590nw084', 'no_lang_code', 1, 'https://ror.org/0590nw084 Crossing the Line (Ireland)'),
(66431, 'https://ror.org/03czddz67', 'en', 1, 'https://ror.org/03czddz67 Gasóga na hƉireann Scouting Ireland'),
(66432, 'https://ror.org/04hqxxp09', 'en', 1, 'https://ror.org/04hqxxp09 ICS Skills'),
(66433, 'https://ror.org/01hm87p08', 'no_lang_code', 1, 'https://ror.org/01hm87p08 Stop. Watch Television (Ireland)'),
(66434, 'https://ror.org/05bz3n751', 'en', 1, 'https://ror.org/05bz3n751 Fighting Blindness'),
(66435, 'https://ror.org/04gea5y49', 'en', 1, 'https://ror.org/04gea5y49 Cork’s Technology Network'),
(66436, 'https://ror.org/00qvnkt09', 'no_lang_code', 1, 'https://ror.org/00qvnkt09 True Films (Ireland)'),
(66437, 'https://ror.org/026z05h78', 'no_lang_code', 1, 'https://ror.org/026z05h78 Shinawil (Ireland)'),
(66438, 'https://ror.org/01fgam068', 'en', 1, 'https://ror.org/01fgam068 Rediscovery Centre'),
(66439, 'https://ror.org/055jj1035', 'no_lang_code', 1, 'https://ror.org/055jj1035 Tile Films (Ireland)'),
(66440, 'https://ror.org/038t6hw46', 'en', 1, 'https://ror.org/038t6hw46 Al Emadi Hospital مستؓفى Ų§Ł„Ų¹Ł…Ų§ŲÆŁŠ'),
(66441, 'https://ror.org/04q50hn29', 'no_lang_code', 1, 'https://ror.org/04q50hn29 Whipsmart Media (Ireland)'),
(66442, 'https://ror.org/05wp9f048', 'en', 1, 'https://ror.org/05wp9f048 Al Kawther Secondary Independent School for Girls Ł…ŲÆŲ±Ų³Ų© Ų§Ł„ŁƒŁˆŲ«Ų± Ų§Ł„Ų«Ų§Ł†ŁˆŁŠŲ© للبنات'),
(66443, 'https://ror.org/03awp8j69', 'en', 1, 'https://ror.org/03awp8j69 Galway Education Centre'),
(66444, 'https://ror.org/0020kar26', 'en', 1, 'https://ror.org/0020kar26 Galway Film Centre'),
(66445, 'https://ror.org/01zgghk09', 'no_lang_code', 1, 'https://ror.org/01zgghk09 CoderDojo Foundation'),
(66446, 'https://ror.org/02yaqge44', 'en', 1, 'https://ror.org/02yaqge44 I Wish'),
(66447, 'https://ror.org/043d97677', 'en', 1, 'https://ror.org/043d97677 Junior Achievement'),
(66448, 'https://ror.org/04gpq6y25', 'en', 1, 'https://ror.org/04gpq6y25 Kildare Education Centre'),
(66449, 'https://ror.org/049ve2f77', 'no_lang_code', 1, 'https://ror.org/049ve2f77 Al Sulaiteen Agricultural & Industrial Complex (Qatar)'),
(66450, 'https://ror.org/05d8tdk47', 'en', 1, 'https://ror.org/05d8tdk47 Doha International Center for Interfaith Dialogue Ł…Ų±ŁƒŲ² Ų§Ł„ŲÆŁˆŲ­Ų© Ų§Ł„ŲÆŁˆŁ„ŁŠ Ł„Ų­ŁˆŲ§Ų± Ų§Ł„Ų£ŲÆŁŠŲ§Ł†'),
(66451, 'https://ror.org/05cbc2019', 'no_lang_code', 1, 'https://ror.org/05cbc2019 Al-Wataniya Concrete (Qatar)'),
(66452, 'https://ror.org/024t3b967', 'no_lang_code', 1, 'https://ror.org/024t3b967 TQ Pharma (Jordan) ؓركة التقدم للصناعات Ų§Ł„ŲÆŁˆŲ§Ų¦ŁŠŲ©'),
(66453, 'https://ror.org/05penet29', 'en', 1, 'https://ror.org/05penet29 Dr. Humeira Badsha Medical Center'),
(66454, 'https://ror.org/04k31nk35', 'en', 1, 'https://ror.org/04k31nk35 American International School in Egypt المدرسة Ų§Ł„Ų§Ł…Ų±ŁŠŁƒŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(66455, 'https://ror.org/02ard0m30', 'en', 1, 'https://ror.org/02ard0m30 American School of Doha المدرسة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© ŲØŲ§Ł„ŲÆŁˆŲ­Ų©'),
(66456, 'https://ror.org/00xxrde38', 'no_lang_code', 1, 'https://ror.org/00xxrde38 Educated Change (United Kingdom)'),
(66457, 'https://ror.org/010f98v62', 'no_lang_code', 1, 'https://ror.org/010f98v62 Encontech (Netherlands)'),
(66458, 'https://ror.org/04trmce08', 'no_lang_code', 1, 'https://ror.org/04trmce08 Energy Delivery Solutions (United States)'),
(66459, 'https://ror.org/0185gt671', 'en', 1, 'https://ror.org/0185gt671 The English Modern School'),
(66460, 'https://ror.org/02j29rq40', 'en', 1, 'https://ror.org/02j29rq40 Arab Medical Association Against Cancer ā€«Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł…ŁƒŲ§ŁŲ­Ų© Ų§Ł„Ų³Ų±Ų·Ų§Ł†ā€¬ā€Ž'),
(66461, 'https://ror.org/02c67p367', 'no_lang_code', 1, 'https://ror.org/02c67p367 Array Information Technology (United States)'),
(66462, 'https://ror.org/04pxsa259', 'no_lang_code', 1, 'https://ror.org/04pxsa259 EpiGear (Australia)'),
(66463, 'https://ror.org/0045hhf36', 'no_lang_code', 1, 'https://ror.org/0045hhf36 Ashghal Ł‡ŁŠŲ¦Ų© الأؓغال العامة'),
(66464, 'https://ror.org/00pfnk039', 'no_lang_code', 1, 'https://ror.org/00pfnk039 ExxonMobil (Qatar) Ų„ŁƒŲ³ŁˆŁ† Ł…ŁˆŲØŁŠŁ„ā€¬ā€Ž'),
(66465, 'https://ror.org/05txhgq68', 'en', 1, 'https://ror.org/05txhgq68 Vlaams Kenniscentrum Water Vlakwa'),
(66466, 'https://ror.org/02yzb5728', 'no_lang_code', 1, 'https://ror.org/02yzb5728 Awsaj Academy Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© أوساج'),
(66467, 'https://ror.org/04bpz1v84', 'es', 1, 'https://ror.org/04bpz1v84 FC Barcelona'),
(66468, 'https://ror.org/01agawy76', 'no_lang_code', 1, 'https://ror.org/01agawy76 Beth Mardutho'),
(66469, 'https://ror.org/04w6b5d66', 'no_lang_code', 1, 'https://ror.org/04w6b5d66 Informatica Qatar (Qatar)'),
(66470, 'https://ror.org/0393akr92', 'no_lang_code', 1, 'https://ror.org/0393akr92 Buijs Advice and Consultancy (Netherlands)'),
(66471, 'https://ror.org/05fj2by39', 'en', 1, 'https://ror.org/05fj2by39 Cairnmillar Institute'),
(66472, 'https://ror.org/00bwzfm31', 'no_lang_code', 1, 'https://ror.org/00bwzfm31 Cascade Biosystems (United States)'),
(66473, 'https://ror.org/0301h4330', 'it', 1, 'https://ror.org/0301h4330 Federazione Medico Sportiva Italiana'),
(66474, 'https://ror.org/04a0env39', 'no_lang_code', 1, 'https://ror.org/04a0env39 Catalytic Innovations (United States)'),
(66475, 'https://ror.org/05wtd8w10', 'no_lang_code', 1, 'https://ror.org/05wtd8w10 CEG International (Qatar)'),
(66476, 'https://ror.org/02s48dm85', 'en', 1, 'https://ror.org/02s48dm85 Centre de Recherche en NumƩrique de Sfax Digital Research Centre of Sfax'),
(66477, 'https://ror.org/03ytyhv33', 'no_lang_code', 1, 'https://ror.org/03ytyhv33 Intel (United Arab Emirates)'),
(66478, 'https://ror.org/05xpjer51', 'en', 1, 'https://ror.org/05xpjer51 Centre for Arab Genomic Studies'),
(66479, 'https://ror.org/04km3ca65', 'no_lang_code', 1, 'https://ror.org/04km3ca65 Intercommunale Waterleidingsmaatschappij van Veurne-Ambacht Intermunicipal Water Company of Veurne-Craft (Belgium)'),
(66480, 'https://ror.org/04s69jg60', 'en', 1, 'https://ror.org/04s69jg60 International Organisation for Knowledge Economy and Enterprise Development'),
(66481, 'https://ror.org/04gtfsy04', 'en', 1, 'https://ror.org/04gtfsy04 Atlantic Environmental Research Center Centro de Investigaciones Medioambientales del AtlƔntico'),
(66482, 'https://ror.org/05g0b2873', 'no_lang_code', 1, 'https://ror.org/05g0b2873 Cogent (United Kingdom)'),
(66483, 'https://ror.org/0428w4157', 'no_lang_code', 1, 'https://ror.org/0428w4157 Change Agents (Australia)'),
(66484, 'https://ror.org/04vwkmg79', 'en', 1, 'https://ror.org/04vwkmg79 Child Development Center Ł…Ų±ŁƒŲ² ŲŖŁ†Ł…ŁŠŲ© الأطفال'),
(66485, 'https://ror.org/008f0n203', 'no_lang_code', 1, 'https://ror.org/008f0n203 Care UK (United Kingdom)'),
(66486, 'https://ror.org/00p544d65', 'no_lang_code', 1, 'https://ror.org/00p544d65 Cyclone Energy Group (United States)'),
(66487, 'https://ror.org/00tpb3x19', 'no_lang_code', 1, 'https://ror.org/00tpb3x19 Infrastructure Research & Development (Qatar)'),
(66488, 'https://ror.org/02erc6n26', 'no_lang_code', 1, 'https://ror.org/02erc6n26 Information Technology for Market Leadership (Greece)'),
(66489, 'https://ror.org/01cnxqz37', 'en', 1, 'https://ror.org/01cnxqz37 Jeddah Institute for Speech and Hearing Ł…Ų±ŁƒŲ² Ų¬ŲÆŲ© للنطق ŁˆŲ§Ł„Ų³Ł…Ų¹'),
(66490, 'https://ror.org/057najf71', 'no_lang_code', 1, 'https://ror.org/057najf71 Kahramaa (Qatar)'),
(66491, 'https://ror.org/00aekg328', 'en', 1, 'https://ror.org/00aekg328 Global Dryland Alliance التحالف Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠ Ł„Ł„Ų£Ų±Ų§Ų¶ŁŠ الجافة'),
(66492, 'https://ror.org/01e80cj48', 'no_lang_code', 1, 'https://ror.org/01e80cj48 Gulf Drilling International (Qatar)'),
(66493, 'https://ror.org/054atdn20', 'en', 1, 'https://ror.org/054atdn20 King Abdullah Medical City Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ عبدالله Ų§Ł„Ų·ŲØŁŠŲ©'),
(66494, 'https://ror.org/0160gm722', 'en', 1, 'https://ror.org/0160gm722 Gulf English School Ł…ŲÆŲ±Ų³Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ų§Ł„Ų§Ł†Ų¬Ł„ŁŠŲ²ŁŠŁ‡'),
(66495, 'https://ror.org/03cmt3942', 'en', 1, 'https://ror.org/03cmt3942 National Museum New Delhi'),
(66496, 'https://ror.org/023fgyc14', 'no_lang_code', 1, 'https://ror.org/023fgyc14 Halliburton (Qatar)'),
(66497, 'https://ror.org/0072ngz93', 'no_lang_code', 1, 'https://ror.org/0072ngz93 Nectaerra'),
(66498, 'https://ror.org/00p6s4733', 'en', 1, 'https://ror.org/00p6s4733 Newton International School'),
(66499, 'https://ror.org/01s50gs59', 'no_lang_code', 1, 'https://ror.org/01s50gs59 North Oil Company (Qatar)'),
(66500, 'https://ror.org/01sph6713', 'en', 1, 'https://ror.org/01sph6713 The North South Institute'),
(66501, 'https://ror.org/03nwbtx86', 'no_lang_code', 1, 'https://ror.org/03nwbtx86 Libra Trading Company (Qatar)'),
(66502, 'https://ror.org/05w0gd052', 'en', 1, 'https://ror.org/05w0gd052 Mada Assistive Technology Centre Ł…Ų±ŁƒŲ² قطر Ł„Ł„ŲŖŁƒŁ†Ł„ŁˆŲ¬ŁŠŲ§ المساعدة مدى'),
(66503, 'https://ror.org/0221g4j08', 'no_lang_code', 1, 'https://ror.org/0221g4j08 OBERMEYER Planen + Beraten (Germany)'),
(66504, 'https://ror.org/00hhh2m32', 'no_lang_code', 1, 'https://ror.org/00hhh2m32 Hochtief (Qatar)'),
(66505, 'https://ror.org/03wyr0j06', 'no_lang_code', 1, 'https://ror.org/03wyr0j06 Iberdrola (Qatar)'),
(66506, 'https://ror.org/05v8ead08', 'no_lang_code', 1, 'https://ror.org/05v8ead08 Magaza (Qatar)'),
(66507, 'https://ror.org/01hy56d90', 'no_lang_code', 1, 'https://ror.org/01hy56d90 Marafeq (Qatar)'),
(66508, 'https://ror.org/026ajc257', 'no_lang_code', 1, 'https://ror.org/026ajc257 iHorizons (Qatar)'),
(66509, 'https://ror.org/02f59zk81', 'no_lang_code', 1, 'https://ror.org/02f59zk81 Occidental Petroleum (Qatar)'),
(66510, 'https://ror.org/028zc6k33', 'en', 1, 'https://ror.org/028zc6k33 Office of the Minister of State for Administrative Reform Ł…ŁƒŲŖŲØ وزير Ų§Ł„ŲÆŁˆŁ„Ų© Ł„Ų“Ų¤ŁˆŁ† Ų§Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ©'),
(66511, 'https://ror.org/05xxaa629', 'en', 1, 'https://ror.org/05xxaa629 Ministry of Culture and Sports وزارة الثقافه ŁˆŲ§Ł„Ų±ŁŠŲ§Ų¶Ł‡'),
(66512, 'https://ror.org/03pmvdv44', 'no_lang_code', 1, 'https://ror.org/03pmvdv44 IDT Biologika (Germany)'),
(66513, 'https://ror.org/00q0cd663', 'no_lang_code', 1, 'https://ror.org/00q0cd663 Ooredoo (Qatar) أوريدو'),
(66514, 'https://ror.org/00znysx20', 'no_lang_code', 1, 'https://ror.org/00znysx20 Optim Design (United States)'),
(66515, 'https://ror.org/00g5s2979', 'en', 1, 'https://ror.org/00g5s2979 Ministry of Public Health وزارة الصحة العامة'),
(66516, 'https://ror.org/00xhxgs05', 'no_lang_code', 1, 'https://ror.org/00xhxgs05 Oryx Publishing and Advertising (Qatar)'),
(66517, 'https://ror.org/058bqqp10', 'no_lang_code', 1, 'https://ror.org/058bqqp10 Qatargas (Qatar)'),
(66518, 'https://ror.org/04zvt6r42', 'en', 1, 'https://ror.org/04zvt6r42 Outreach Scout Foundation'),
(66519, 'https://ror.org/03djtgh02', 'en', 1, 'https://ror.org/03djtgh02 Primary Health Care Ł…Ų¤Ų³Ų³Ų© Ų§Ł„Ų±Ų¹Ų§ŁŠŲ© Ų§Ł„ŲµŲ­ŁŠŲ© Ų§Ł„Ų£ŁˆŁ„ŁŠŲ©'),
(66520, 'https://ror.org/04jstcr77', 'en', 1, 'https://ror.org/04jstcr77 Ministry of Transport and Communications وزارة Ų§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ ŁˆŲ§Ł„Ų§ŲŖŲµŲ§Ł„Ų§ŲŖ- المبنى Ų§Ł„Ų±Ų¦ŁŠŲ³ŁŠ'),
(66521, 'https://ror.org/0532vhk36', 'no_lang_code', 1, 'https://ror.org/0532vhk36 MODUS (Qatar)'),
(66522, 'https://ror.org/01jqa8y96', 'no_lang_code', 1, 'https://ror.org/01jqa8y96 Qatar Electricity & Water (Qatar)'),
(66523, 'https://ror.org/01ywkr738', 'en', 1, 'https://ror.org/01ywkr738 Prince Mohammad Bin Salman College of Business and Entrepreneurship ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£Ł…ŁŠŲ± Ł…Ų­Ł…ŲÆ بن سلمان لل؄دارة وريادة الأعمال'),
(66524, 'https://ror.org/02m9zj664', 'no_lang_code', 1, 'https://ror.org/02m9zj664 Quest Integrity (New Zealand)'),
(66525, 'https://ror.org/0362f0p45', 'en', 1, 'https://ror.org/0362f0p45 National Archives of India ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤­ą¤æą¤²ą„‡ą¤–ą¤¾ą¤—ą¤¾ą¤°'),
(66526, 'https://ror.org/05xg3zg64', 'no_lang_code', 1, 'https://ror.org/05xg3zg64 Sensory (United States)'),
(66527, 'https://ror.org/03sqtr018', 'no_lang_code', 1, 'https://ror.org/03sqtr018 Qatalum (Qatar)'),
(66528, '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'),
(66529, 'https://ror.org/05n6r8r02', 'no_lang_code', 1, 'https://ror.org/05n6r8r02 Ukrainian Center of Environmental and Water Projects (Ukraine)'),
(66530, 'https://ror.org/01f83ya71', 'en', 1, 'https://ror.org/01f83ya71 Royal Society for Asian Affairs'),
(66531, 'https://ror.org/017vypx03', 'no_lang_code', 1, 'https://ror.org/017vypx03 Qatar Biobank قطر ŲØŁŠŁˆŲØŁ†Łƒ'),
(66532, 'https://ror.org/010eqta40', 'en', 1, 'https://ror.org/010eqta40 Qatar Computer Emergency Response Team'),
(66533, 'https://ror.org/00ackcm59', 'no_lang_code', 1, 'https://ror.org/00ackcm59 Construction Development (Qatar)'),
(66534, 'https://ror.org/049n5v408', 'en', 1, 'https://ror.org/049n5v408 Qatar Financial Centre Authority'),
(66535, 'https://ror.org/01wm2fy87', 'no_lang_code', 1, 'https://ror.org/01wm2fy87 Schlumberger (Qatar)'),
(66536, 'https://ror.org/03axtnh73', 'en', 1, 'https://ror.org/03axtnh73 Qatar Green Building Council'),
(66537, 'https://ror.org/005r9px72', 'no_lang_code', 1, 'https://ror.org/005r9px72 Qatar Mining (Qatar)'),
(66538, 'https://ror.org/01mj0je13', 'no_lang_code', 1, 'https://ror.org/01mj0je13 Shafallah Center Ł…Ų±ŁƒŲ² الؓفلح'),
(66539, 'https://ror.org/049rajq70', 'en', 1, 'https://ror.org/049rajq70 Qatar Natural History Group'),
(66540, 'https://ror.org/02ps68973', 'no_lang_code', 1, 'https://ror.org/02ps68973 Vodafone (Qatar)'),
(66541, 'https://ror.org/03v5azw70', 'en', 1, 'https://ror.org/03v5azw70 Qatar Olympic Committee اللجنة Ų§Ł„Ų£ŁˆŁ„Ł…ŲØŁŠŲ© Ų§Ł„Ł‚Ų·Ų±ŁŠŲ©ā€Ž'),
(66542, 'https://ror.org/05jzxm583', 'no_lang_code', 1, 'https://ror.org/05jzxm583 Williams (United Kingdom)'),
(66543, 'https://ror.org/02a3mcc29', 'en', 1, 'https://ror.org/02a3mcc29 Wiltshire and Swindon History Centre'),
(66544, 'https://ror.org/05t869972', 'no_lang_code', 1, 'https://ror.org/05t869972 Shell (Qatar)'),
(66545, 'https://ror.org/044d15d71', 'en', 1, 'https://ror.org/044d15d71 Qatar Tourism Authority Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„Ų³ŁŠŲ§Ų­Ų©ā€Ž'),
(66546, 'https://ror.org/026xfzp73', 'no_lang_code', 1, 'https://ror.org/026xfzp73 Siemens (Qatar)'),
(66547, 'https://ror.org/03y5s5n06', 'no_lang_code', 1, 'https://ror.org/03y5s5n06 Smartec-Group (Egypt)'),
(66548, 'https://ror.org/0150d1t62', 'no_lang_code', 1, 'https://ror.org/0150d1t62 Spiretronic (Egypt)'),
(66549, 'https://ror.org/05f6z3f65', 'no_lang_code', 1, 'https://ror.org/05f6z3f65 Spiretronic (United States)'),
(66550, 'https://ror.org/01bt4t203', 'no_lang_code', 1, 'https://ror.org/01bt4t203 Synergation (United Kingdom)'),
(66551, 'https://ror.org/051d61326', 'no_lang_code', 1, 'https://ror.org/051d61326 Tata Consulting Engineers (Qatar)'),
(66552, 'https://ror.org/05bwm9830', 'en', 1, 'https://ror.org/05bwm9830 Telegraph Museum'),
(66553, 'https://ror.org/039grkz57', 'no_lang_code', 1, 'https://ror.org/039grkz57 The Behaviouralist (United Kingdom)'),
(66554, 'https://ror.org/04xpgws89', 'no_lang_code', 1, 'https://ror.org/04xpgws89 Toshiba Mitsubishi-Electric Industrial Systems Corporation (Japan) ę±čŠäø‰č±é›»ę©Ÿē”£ę„­ć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(66555, 'https://ror.org/0356p2h35', 'no_lang_code', 1, 'https://ror.org/0356p2h35 Total (Qatar)'),
(66556, 'https://ror.org/01mp4p403', 'en', 1, 'https://ror.org/01mp4p403 2-Spirited'),
(66557, 'https://ror.org/03emyb266', 'en', 1, 'https://ror.org/03emyb266 Active Aging Canada'),
(66558, 'https://ror.org/05qzes018', 'en', 1, 'https://ror.org/05qzes018 Active Healthy Kids'),
(66559, 'https://ror.org/00yk8z483', 'en', 1, 'https://ror.org/00yk8z483 Canadian Apheresis Group Groupe Canadien d''Aphérèse'),
(66560, 'https://ror.org/04hfnps81', 'en', 1, 'https://ror.org/04hfnps81 Canadian Arthritis Patient Alliance L’Alliance Canadienne des Arthritiques'),
(66561, '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'),
(66562, 'https://ror.org/02swpkm89', 'en', 1, 'https://ror.org/02swpkm89 HIV Community Link'),
(66563, 'https://ror.org/05gxd5275', 'en', 1, 'https://ror.org/05gxd5275 Association Canadienne pour la PrƩvention du Suicide Canadian Association for Suicide Prevention'),
(66564, 'https://ror.org/02mgny734', 'en', 1, 'https://ror.org/02mgny734 AIDS Vancouver'),
(66565, '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'),
(66566, 'https://ror.org/00pthr413', 'fr', 1, 'https://ror.org/00pthr413 HƓpital Fleurimont'),
(66567, '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'),
(66568, 'https://ror.org/03qhca141', 'en', 1, 'https://ror.org/03qhca141 All Nations Hope Network'),
(66569, 'https://ror.org/05cf80b72', 'en', 1, 'https://ror.org/05cf80b72 Cochrane'),
(66570, 'https://ror.org/03nhp6a75', 'en', 1, 'https://ror.org/03nhp6a75 Canadian Dental Hygienists Association'),
(66571, 'https://ror.org/00sveth74', 'en', 1, 'https://ror.org/00sveth74 Asian Community AIDS Services'),
(66572, 'https://ror.org/00wppnk92', 'en', 1, 'https://ror.org/00wppnk92 Assembly of First Nations'),
(66573, 'https://ror.org/01nvxm192', 'en', 1, 'https://ror.org/01nvxm192 Association Canadienne de Soins Palliatifs Canadian Hospice Palliative Care Association'),
(66574, 'https://ror.org/03n90de98', 'en', 1, 'https://ror.org/03n90de98 Canadian Institute of Child Health'),
(66575, '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'),
(66576, 'https://ror.org/027qg8776', 'en', 1, 'https://ror.org/027qg8776 Assembly of Manitoba Chiefs'),
(66577, 'https://ror.org/011hmms37', 'no_lang_code', 1, 'https://ror.org/011hmms37 Alliance Canadienne des MassothƩrapeutes Canadian Massage Therapy Aliance'),
(66578, 'https://ror.org/0369p0616', 'en', 1, 'https://ror.org/0369p0616 HealthCareCAN'),
(66579, 'https://ror.org/03x3py878', 'en', 1, 'https://ror.org/03x3py878 Association of Local Public Health Agencies'),
(66580, 'https://ror.org/0033kcc14', 'en', 1, 'https://ror.org/0033kcc14 Canadian Organization for Rare Disorders'),
(66581, 'https://ror.org/031eaaa87', 'en', 1, 'https://ror.org/031eaaa87 Association des Pharmaciens du Canada Canadian Pharmacists Association'),
(66582, 'https://ror.org/01t0p7s78', 'en', 1, 'https://ror.org/01t0p7s78 Canadian Red Cross Society Croix Rouge canadienne'),
(66583, 'https://ror.org/0371s1r94', 'en', 1, 'https://ror.org/0371s1r94 Canadian Rural Health Research Society SociƩtƩ Canadienne de Recherche en SantƩ Rurale'),
(66584, 'https://ror.org/048z7ap74', 'en', 1, 'https://ror.org/048z7ap74 Canadian Sleep Society SociƩtƩ Canadienne du Sommeil'),
(66585, 'https://ror.org/04e2hkj02', 'en', 1, 'https://ror.org/04e2hkj02 Homewood Research Institute'),
(66586, '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'),
(66587, 'https://ror.org/02xd7sw67', 'en', 1, 'https://ror.org/02xd7sw67 Autism Canada SociĆ©tĆ© canadienne de l’autisme'),
(66588, 'https://ror.org/039ezad24', 'en', 1, 'https://ror.org/039ezad24 Child, Adolescent and Family Mental Health'),
(66589, 'https://ror.org/00cza2v51', 'en', 1, 'https://ror.org/00cza2v51 Casey House'),
(66590, 'https://ror.org/02zawmw51', 'en', 1, 'https://ror.org/02zawmw51 BC Mental Health & Substance Use Services'),
(66591, 'https://ror.org/01xq1xt31', 'no_lang_code', 1, 'https://ror.org/01xq1xt31 Biotika'),
(66592, 'https://ror.org/05jdqs103', 'en', 1, 'https://ror.org/05jdqs103 Interior Health'),
(66593, 'https://ror.org/00td86h58', 'fr', 1, 'https://ror.org/00td86h58 Michel-Sarrazin'),
(66594, 'https://ror.org/01d41fy43', 'en', 1, 'https://ror.org/01d41fy43 International Society of Electrophysiology and Kinesiology'),
(66595, 'https://ror.org/033s51991', 'en', 1, 'https://ror.org/033s51991 ComunitĆ  Scientifica Italiana in Canada Italian Scientific Community in Canada'),
(66596, 'https://ror.org/04mwczr65', 'en', 1, 'https://ror.org/04mwczr65 Markham Museum'),
(66597, 'https://ror.org/020n6f578', 'en', 1, 'https://ror.org/020n6f578 MaRS'),
(66598, 'https://ror.org/01hvq8642', 'en', 1, 'https://ror.org/01hvq8642 Coalition for Research in Women''s Health'),
(66599, 'https://ror.org/03epkyk81', 'en', 1, 'https://ror.org/03epkyk81 Kahnawake Education Center'),
(66600, 'https://ror.org/05g3b0q91', 'en', 1, 'https://ror.org/05g3b0q91 Kahnawake Schools Diabetes Prevention Project'),
(66601, 'https://ror.org/01nxbsb84', 'en', 1, 'https://ror.org/01nxbsb84 Ottawa Baffin Nunavut Health Services'),
(66602, 'https://ror.org/03q29n119', 'en', 1, 'https://ror.org/03q29n119 Ottawa Public Health SantƩ Publique Ottawa'),
(66603, 'https://ror.org/01aw03h30', 'en', 1, 'https://ror.org/01aw03h30 MItoCanada'),
(66604, 'https://ror.org/03g4p4m13', 'en', 1, 'https://ror.org/03g4p4m13 Association Nationale Autochtone du DiabĆØte National Aboriginal Diabetes Association'),
(66605, 'https://ror.org/029m34v77', 'en', 1, 'https://ror.org/029m34v77 Irkutsk Regional Clinical Hospital Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(66606, 'https://ror.org/025j9qd03', 'en', 1, 'https://ror.org/025j9qd03 Lu’ma Native Housing Society'),
(66607, 'https://ror.org/05d8z4d22', 'en', 1, 'https://ror.org/05d8z4d22 PHS Community Services Society'),
(66608, 'https://ror.org/03zzxst70', 'en', 1, 'https://ror.org/03zzxst70 Thunderbird Partnership Foundation'),
(66609, 'https://ror.org/05e948p44', 'en', 1, 'https://ror.org/05e948p44 Native Mental Health Association of Canada'),
(66610, 'https://ror.org/04r3bfv41', 'en', 1, 'https://ror.org/04r3bfv41 Native Women''s Shelter of Montreal'),
(66611, 'https://ror.org/02adfx268', 'en', 1, 'https://ror.org/02adfx268 Native Youth Sexual Health Network'),
(66612, 'https://ror.org/03zdtbn70', 'en', 1, 'https://ror.org/03zdtbn70 Northwood'),
(66613, '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'),
(66614, 'https://ror.org/04mq2mh67', 'en', 1, 'https://ror.org/04mq2mh67 Ontario Long Term Care Association'),
(66615, 'https://ror.org/03tcqv962', 'fr', 1, 'https://ror.org/03tcqv962 Aids Moncton'),
(66616, 'https://ror.org/02pjk8429', 'en', 1, 'https://ror.org/02pjk8429 The Sisters of Charity of Ottawa les Soeurs de la CharitĆ© d’Ottawa'),
(66617, 'https://ror.org/02h0nxr45', 'no_lang_code', 1, 'https://ror.org/02h0nxr45 The Debajehmujig Creation Centre (Canada)'),
(66618, 'https://ror.org/001ej4640', 'en', 1, 'https://ror.org/001ej4640 Dignitas International'),
(66619, 'https://ror.org/0228dfp95', 'en', 1, 'https://ror.org/0228dfp95 MAB-Mackay Rehabilitation Centre'),
(66620, 'https://ror.org/00h4z8814', 'en', 1, 'https://ror.org/00h4z8814 Dr. Peter AIDS Foundation'),
(66621, 'https://ror.org/020ng9892', 'en', 1, 'https://ror.org/020ng9892 Canadian Society of Microbiologists SociƩtƩ Canadienne des Microbiologistes'),
(66622, 'https://ror.org/042zedv06', 'fr', 1, 'https://ror.org/042zedv06 SociƩtƩ QuƩbƩcoise de Lipidologie, de Nutrition et de MƩtabolisme'),
(66623, 'https://ror.org/042b06r32', 'en', 1, 'https://ror.org/042b06r32 The Society of Gynecologic Oncology of Canada'),
(66624, 'https://ror.org/04m97pf61', 'en', 1, 'https://ror.org/04m97pf61 First Nations Health and Social Secretariat of Manitoba'),
(66625, 'https://ror.org/05cgcnt36', 'en', 1, 'https://ror.org/05cgcnt36 Saint-Vincent Hospital'),
(66626, 'https://ror.org/005yzhk58', 'en', 1, 'https://ror.org/005yzhk58 Hassle Free Clinic'),
(66627, 'https://ror.org/05pf6rt98', 'en', 1, 'https://ror.org/05pf6rt98 Black Coalition for AIDS Prevention'),
(66628, 'https://ror.org/01e0e7p47', 'en', 1, 'https://ror.org/01e0e7p47 Positive Living North'),
(66629, 'https://ror.org/01zeqwe54', 'en', 1, 'https://ror.org/01zeqwe54 Bridgepoint Active Healthcare'),
(66630, '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'),
(66631, 'https://ror.org/04vg0e805', 'en', 1, 'https://ror.org/04vg0e805 The Polis Project'),
(66632, 'https://ror.org/03vtyfv85', 'en', 1, 'https://ror.org/03vtyfv85 Manitoba Harm Reduction Network'),
(66633, 'https://ror.org/03ngwn840', 'en', 1, 'https://ror.org/03ngwn840 Rainbow Health Ontario SantƩ arc-en-ciel Ontario'),
(66634, 'https://ror.org/015fr8y55', 'en', 1, 'https://ror.org/015fr8y55 Regent Park Community Health Centre'),
(66635, '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'),
(66636, 'https://ror.org/0421np737', 'en', 1, 'https://ror.org/0421np737 RƩseau de sensibilisation de sciences et technologie Science and Technology Awareness Network'),
(66637, 'https://ror.org/01d550q37', 'en', 1, 'https://ror.org/01d550q37 Science World at Telus World of Science'),
(66638, 'https://ror.org/05qc7mv40', 'fr', 1, 'https://ror.org/05qc7mv40 De Veber'),
(66639, 'https://ror.org/03a3t8q93', 'en', 1, 'https://ror.org/03a3t8q93 The Hearing Foundation of Canada'),
(66640, 'https://ror.org/018g3kw79', 'en', 1, 'https://ror.org/018g3kw79 The Marigold Foundation'),
(66641, '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'),
(66642, 'https://ror.org/03bd8jh67', 'en', 1, 'https://ror.org/03bd8jh67 Vancouver Coastal Health'),
(66643, 'https://ror.org/042n1mt30', 'en', 1, 'https://ror.org/042n1mt30 Friends For Life'),
(66644, 'https://ror.org/0159q3366', 'en', 1, 'https://ror.org/0159q3366 Vancouver Infectious Diseases Centre'),
(66645, 'https://ror.org/05xrp5e17', 'en', 1, 'https://ror.org/05xrp5e17 TheMuseum'),
(66646, 'https://ror.org/035ggpk09', 'en', 1, 'https://ror.org/035ggpk09 Tlicho Community Services Agency'),
(66647, 'https://ror.org/03d1xjg58', 'en', 1, 'https://ror.org/03d1xjg58 William Osler Health System'),
(66648, 'https://ror.org/0344v8a35', 'fr', 1, 'https://ror.org/0344v8a35 Ć  coeur d''homme'),
(66649, 'https://ror.org/005gz3f76', 'fr', 1, 'https://ror.org/005gz3f76 AcadƩmie Nationale des Sciences et Techniques du SƩnƩgal'),
(66650, 'https://ror.org/006g7b022', 'fr', 1, 'https://ror.org/006g7b022 ARCTIConnexion'),
(66651, 'https://ror.org/023p2b446', 'en', 1, 'https://ror.org/023p2b446 Dutch Art Institute'),
(66652, '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'),
(66653, 'https://ror.org/03n9t0w02', 'fr', 1, 'https://ror.org/03n9t0w02 Association des Doyennes et des Doyens des Ɖtudes SupĆ©rieures au QuĆ©bec'),
(66654, 'https://ror.org/01209ew92', 'fr', 1, 'https://ror.org/01209ew92 FƩdƩration des Maisons D''HƩbergement pour Femmes'),
(66655, 'https://ror.org/03antem13', 'fr', 1, 'https://ror.org/03antem13 Association QuƩbƩcoise des Enseignantes et des Enseignants du Primaire'),
(66656, 'https://ror.org/026ppbb29', 'fr', 1, 'https://ror.org/026ppbb29 FƩdƩration des ComitƩs de Parents du QuƩbec'),
(66657, 'https://ror.org/05h0pr162', 'fr', 1, 'https://ror.org/05h0pr162 FƩdƩration des Commissions Scolaires du QuƩbec'),
(66658, 'https://ror.org/05jnsc004', 'fr', 1, 'https://ror.org/05jnsc004 Association QuĆ©bĆ©coise du Personnel de Direction des Ɖcoles'),
(66659, 'https://ror.org/03e0kkv22', 'fr', 1, 'https://ror.org/03e0kkv22 Office des Personnes HandicapƩes du QuƩbec'),
(66660, 'https://ror.org/03xh8em43', 'fr', 1, 'https://ror.org/03xh8em43 OSEntreprendre'),
(66661, 'https://ror.org/006hdm859', 'fr', 1, 'https://ror.org/006hdm859 Parkinson Quebec'),
(66662, 'https://ror.org/052rh9n35', 'fr', 1, 'https://ror.org/052rh9n35 Centrale des Syndicats du QuƩbec'),
(66663, 'https://ror.org/048vxvs85', 'fr', 1, 'https://ror.org/048vxvs85 Regroupement des Maisons pour Femmes Victimes de Violence Conjugale'),
(66664, 'https://ror.org/00jw46w75', 'fr', 1, 'https://ror.org/00jw46w75 Regroupement des Organismes Communautaires QuƩbƩcoise de Lutte au DƩcrochage'),
(66665, 'https://ror.org/028jhf333', 'fr', 1, 'https://ror.org/028jhf333 Regroupement Provincial en Santé et Bien-Être des Hommes'),
(66666, 'https://ror.org/02qcmfw42', 'fr', 1, 'https://ror.org/02qcmfw42 Relais Femmes'),
(66667, 'https://ror.org/00gycng41', 'fr', 1, 'https://ror.org/00gycng41 Association des Radiologistes du QuƩbec'),
(66668, 'https://ror.org/040qnm310', 'no_lang_code', 1, 'https://ror.org/040qnm310 TES Global (United Kingdom)'),
(66669, 'https://ror.org/05p5dcf94', 'fr', 1, 'https://ror.org/05p5dcf94 RƩseau des Centres de Ressources PƩrinatales'),
(66670, 'https://ror.org/04jxxfd37', 'fr', 1, 'https://ror.org/04jxxfd37 RƩseau National d''Expertise en Trouble du Spectre de l''Autisme'),
(66671, 'https://ror.org/00h7z1q27', 'en', 1, 'https://ror.org/00h7z1q27 Campus Notre-Dame-de-Foy'),
(66672, 'https://ror.org/00qjpp897', 'en', 1, 'https://ror.org/00qjpp897 Centre Cyber-aide'),
(66673, 'https://ror.org/04n5ac152', 'en', 1, 'https://ror.org/04n5ac152 Quebec Network on Suicide, Mood Disorders and Related Disorders'),
(66674, 'https://ror.org/04jsqtz71', 'fr', 1, 'https://ror.org/04jsqtz71 Centre d''aide Pour Hommes de LanaudiĆØre'),
(66675, 'https://ror.org/0077tey39', 'fr', 1, 'https://ror.org/0077tey39 Centre Jacques-Cartier'),
(66676, 'https://ror.org/05j9mt277', 'fr', 1, 'https://ror.org/05j9mt277 RƩseau SolidaritƩ ItinƩrance du QuƩbec'),
(66677, 'https://ror.org/02a8tfk85', 'en', 1, 'https://ror.org/02a8tfk85 Centre d’innovation sociale en agriculture Centre of Social Innovation in Agriculture'),
(66678, 'https://ror.org/00y05vn70', 'en', 1, 'https://ror.org/00y05vn70 Montreal Police Service Service de Police de la Ville de MontrƩal'),
(66679, 'https://ror.org/037fm9770', 'fr', 1, 'https://ror.org/037fm9770 SociƩtƩ d''Habitation du QuƩbec'),
(66680, 'https://ror.org/03b3aa119', 'en', 1, 'https://ror.org/03b3aa119 Quebec Automobile Insurance Corporation SociƩtƩ de l''Assurance Automobile du QuƩbec'),
(66681, 'https://ror.org/058jpya11', 'fr', 1, 'https://ror.org/058jpya11 SociƩtƩ QuƩbƩcoise d''Hypertension ArtƩrielle'),
(66682, 'https://ror.org/041f9mm95', 'fr', 1, 'https://ror.org/041f9mm95 Gay Line Interligne'),
(66683, 'https://ror.org/02mndw455', 'fr', 1, 'https://ror.org/02mndw455 SociƩtƩ QuƩbƩcoise de NƩphrologie'),
(66684, 'https://ror.org/043njxm98', 'fr', 1, 'https://ror.org/043njxm98 Table Carrefour Violence Conjugale QuƩbec MƩtro'),
(66685, 'https://ror.org/00pvmfq97', 'no_lang_code', 1, 'https://ror.org/00pvmfq97 Galamedia (Canada)'),
(66686, 'https://ror.org/02yxyb555', 'fr', 1, 'https://ror.org/02yxyb555 Table de Concertation en Violence Conjugale de MontrƩal'),
(66687, 'https://ror.org/04104tq92', 'fr', 1, 'https://ror.org/04104tq92 Institut de Recherche Sur L’IntĆ©gration Professionnelle des Immigrants'),
(66688, 'https://ror.org/03wjy4481', 'no_lang_code', 1, 'https://ror.org/03wjy4481 Westin Limousine (Canada)'),
(66689, 'https://ror.org/01hs54b18', 'en', 1, 'https://ror.org/01hs54b18 Centre Casa'),
(66690, 'https://ror.org/0557f3j69', 'fr', 1, 'https://ror.org/0557f3j69 Communautique'),
(66691, 'https://ror.org/04rf2w592', 'fr', 1, 'https://ror.org/04rf2w592 Sercovie'),
(66692, 'https://ror.org/01v67wf52', 'fr', 1, 'https://ror.org/01v67wf52 Centre des AƮnƩs CƓte-des-Neiges'),
(66693, '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)'),
(66694, 'https://ror.org/05qw0wj36', 'fr', 1, 'https://ror.org/05qw0wj36 Cercle Finance du QuƩbec'),
(66695, 'https://ror.org/053f7j738', 'en', 1, 'https://ror.org/053f7j738 Institute for Knowledge Mobilization l''Institut pour la Mobilisation des Connaissances'),
(66696, 'https://ror.org/047xt4p04', 'fr', 1, 'https://ror.org/047xt4p04 Centre IntƩgrƩ de SantƩ et de Services Sociaux du Bas-Saint-Laurent'),
(66697, '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'),
(66698, 'https://ror.org/00y6jnc55', 'fr', 1, 'https://ror.org/00y6jnc55 L''Accord Mauricie'),
(66699, 'https://ror.org/01g81xd76', 'en', 1, 'https://ror.org/01g81xd76 Ministry of Culture and Communications MinistĆØre de la Culture et des Communications'),
(66700, 'https://ror.org/00mdmxm79', 'fr', 1, 'https://ror.org/00mdmxm79 CollĆØge de Rosemont'),
(66701, 'https://ror.org/02en5gq32', 'fr', 1, 'https://ror.org/02en5gq32 Commission Scolaire des Hautes RiviĆØres'),
(66702, 'https://ror.org/015966407', 'no_lang_code', 1, 'https://ror.org/015966407 Cryptomage (Poland)'),
(66703, 'https://ror.org/05vxe5982', 'no_lang_code', 1, 'https://ror.org/05vxe5982 Read-Gene (Poland)'),
(66704, 'https://ror.org/03b6dwx17', 'no_lang_code', 1, 'https://ror.org/03b6dwx17 Tricomed (Poland)'),
(66705, 'https://ror.org/00a21ek15', 'no_lang_code', 1, 'https://ror.org/00a21ek15 Delta Rafał Mikke (Poland)'),
(66706, 'https://ror.org/00bwrgp93', 'no_lang_code', 1, 'https://ror.org/00bwrgp93 Waldi (Poland)'),
(66707, 'https://ror.org/02nfvkt86', 'no_lang_code', 1, 'https://ror.org/02nfvkt86 Digitalia (Poland)'),
(66708, 'https://ror.org/05egxm427', 'no_lang_code', 1, 'https://ror.org/05egxm427 +H2O (Poland)'),
(66709, 'https://ror.org/05vndtw67', 'pl', 1, 'https://ror.org/05vndtw67 Instytut Wzornictwa Przemyslowego'),
(66710, 'https://ror.org/05rsjde41', 'no_lang_code', 1, 'https://ror.org/05rsjde41 Drukpol (Poland)'),
(66711, 'https://ror.org/04qtsfp18', 'no_lang_code', 1, 'https://ror.org/04qtsfp18 Inteco (Poland)'),
(66712, 'https://ror.org/05dv2rg34', 'no_lang_code', 1, 'https://ror.org/05dv2rg34 2P-Info (Poland)'),
(66713, 'https://ror.org/03d73se48', 'no_lang_code', 1, 'https://ror.org/03d73se48 EC Systems (Poland)'),
(66714, 'https://ror.org/009ygqw67', 'no_lang_code', 1, 'https://ror.org/009ygqw67 Ecoenergia (Poland)'),
(66715, 'https://ror.org/05bx22c71', 'no_lang_code', 1, 'https://ror.org/05bx22c71 Intel (Poland)'),
(66716, 'https://ror.org/04ywpy664', 'no_lang_code', 1, 'https://ror.org/04ywpy664 Ekoinwentyka (Poland)'),
(66717, 'https://ror.org/01nt4yq55', 'no_lang_code', 1, 'https://ror.org/01nt4yq55 Ekopoz (Poland)'),
(66718, 'https://ror.org/025zvp446', 'no_lang_code', 1, 'https://ror.org/025zvp446 Elektromontaż-Lublin (Poland)'),
(66719, 'https://ror.org/04sfxnf28', 'no_lang_code', 1, 'https://ror.org/04sfxnf28 Active Text (Poland)'),
(66720, 'https://ror.org/01ydvxb59', 'no_lang_code', 1, 'https://ror.org/01ydvxb59 Elgór + Hansen (Poland)'),
(66721, 'https://ror.org/03hrca821', 'no_lang_code', 1, 'https://ror.org/03hrca821 Interplastik (Poland)'),
(66722, 'https://ror.org/036b14153', 'no_lang_code', 1, 'https://ror.org/036b14153 Elsta Elektronika (Poland)'),
(66723, 'https://ror.org/03g4zd952', 'no_lang_code', 1, 'https://ror.org/03g4zd952 Emag Serwis (Poland)'),
(66724, 'https://ror.org/005rems48', 'en', 1, 'https://ror.org/005rems48 Interuniversity Center for Social Science Theory and Methodology'),
(66725, 'https://ror.org/003rwj896', 'no_lang_code', 1, 'https://ror.org/003rwj896 Ensol (Poland)'),
(66726, 'https://ror.org/03zp9j082', 'no_lang_code', 1, 'https://ror.org/03zp9j082 ISKRA Zakłady Precyzyjne (Poland)'),
(66727, 'https://ror.org/04p7mex89', 'no_lang_code', 1, 'https://ror.org/04p7mex89 Jagoda JPS (Poland)'),
(66728, 'https://ror.org/03rs7hg63', 'no_lang_code', 1, 'https://ror.org/03rs7hg63 Escort (Poland)'),
(66729, 'https://ror.org/057kr8834', 'no_lang_code', 1, 'https://ror.org/057kr8834 JIT Solutions (Poland)'),
(66730, 'https://ror.org/02qrd8y65', 'en', 1, 'https://ror.org/02qrd8y65 Euro-Centrum'),
(66731, 'https://ror.org/0594xf543', 'no_lang_code', 1, 'https://ror.org/0594xf543 Agrola (Poland)'),
(66732, 'https://ror.org/02rh42t66', 'no_lang_code', 1, 'https://ror.org/02rh42t66 JK (Poland)'),
(66733, 'https://ror.org/0541hzv22', 'no_lang_code', 1, 'https://ror.org/0541hzv22 K-UTEC Salt Technologies (Germany)'),
(66734, 'https://ror.org/028e4ya74', 'no_lang_code', 1, 'https://ror.org/028e4ya74 Maersk (Qatar)'),
(66735, 'https://ror.org/02etm4q91', 'pl', 1, 'https://ror.org/02etm4q91 Europejski Instytut Miedzi'),
(66736, 'https://ror.org/034dme430', 'no_lang_code', 1, 'https://ror.org/034dme430 Euros Energy (Poland)'),
(66737, 'https://ror.org/04kfnx806', 'no_lang_code', 1, 'https://ror.org/04kfnx806 K+S (Germany)'),
(66738, 'https://ror.org/0367rr790', 'no_lang_code', 1, 'https://ror.org/0367rr790 Eurotech (Poland)'),
(66739, 'https://ror.org/02jfjpx40', 'no_lang_code', 1, 'https://ror.org/02jfjpx40 Kabe (Poland)'),
(66740, 'https://ror.org/025c3rs34', 'en', 1, 'https://ror.org/025c3rs34 Akademia im. Jakuba z Paradyża w Gorzowie Wielkopolskim The Jacob of Paradies University'),
(66741, 'https://ror.org/05adk8w18', 'no_lang_code', 1, 'https://ror.org/05adk8w18 Kaliskie Zakłady Przemysłu Terenowego (Poland)'),
(66742, 'https://ror.org/02wvj4674', 'pl', 1, 'https://ror.org/02wvj4674 Kardio-Med Silesia'),
(66743, 'https://ror.org/05113d564', 'en', 1, 'https://ror.org/05113d564 Akademia Sztuki Wojennej War Studies Academy'),
(66744, 'https://ror.org/05dm7fw62', 'no_lang_code', 1, 'https://ror.org/05dm7fw62 Katcon (Poland)'),
(66745, 'https://ror.org/02yd1fb92', 'no_lang_code', 1, 'https://ror.org/02yd1fb92 Fes Trading (Poland)'),
(66746, 'https://ror.org/00qt31k61', 'no_lang_code', 1, 'https://ror.org/00qt31k61 Fido Intelligence (Poland)'),
(66747, 'https://ror.org/045embs06', 'en', 1, 'https://ror.org/045embs06 Fundacja Idea Rozwoju IDEA of Development Foundation'),
(66748, 'https://ror.org/044y8xw28', 'en', 1, 'https://ror.org/044y8xw28 Fundacja Itaka ITAKA Foundation'),
(66749, 'https://ror.org/03kx1j711', 'no_lang_code', 1, 'https://ror.org/03kx1j711 Future Voice System (Poland)'),
(66750, 'https://ror.org/01kbrc263', 'no_lang_code', 1, 'https://ror.org/01kbrc263 FUTRESynthesis (Poland)'),
(66751, 'https://ror.org/05t0r7338', 'pl', 1, 'https://ror.org/05t0r7338 Centrum Gamma Knife'),
(66752, 'https://ror.org/04matqb57', 'no_lang_code', 1, 'https://ror.org/04matqb57 Gamaplast (Poland)'),
(66753, 'https://ror.org/04dh4pw96', 'en', 1, 'https://ror.org/04dh4pw96 Gdansk Water Foundation Gdańska Fundacja Wody'),
(66754, 'https://ror.org/04rh1ph29', 'no_lang_code', 1, 'https://ror.org/04rh1ph29 Kompol (Poland)'),
(66755, 'https://ror.org/04ytn9a85', 'no_lang_code', 1, 'https://ror.org/04ytn9a85 General Electric (Poland)'),
(66756, 'https://ror.org/0042ng628', 'en', 1, 'https://ror.org/0042ng628 African Council on Narcotics'),
(66757, 'https://ror.org/04t7q4g45', 'no_lang_code', 1, 'https://ror.org/04t7q4g45 Andrychowska Fabryka Maszyn DEFUM (Poland)'),
(66758, 'https://ror.org/03ep0t884', 'no_lang_code', 1, 'https://ror.org/03ep0t884 ANGA Mechanical Seals (Poland) ANGA Uszczelnienia Mechaniczne'),
(66759, 'https://ror.org/05cb67q54', 'no_lang_code', 1, 'https://ror.org/05cb67q54 Anshar Studios (Poland)'),
(66760, 'https://ror.org/03tx11h32', 'no_lang_code', 1, 'https://ror.org/03tx11h32 Kuca (Poland)'),
(66761, 'https://ror.org/0338x2357', 'pl', 1, 'https://ror.org/0338x2357 Kutnowska Hodowla Buraka Cukrowego'),
(66762, 'https://ror.org/011pysq56', 'no_lang_code', 1, 'https://ror.org/011pysq56 Laboclinic (Poland)'),
(66763, 'https://ror.org/01s41x998', 'no_lang_code', 1, 'https://ror.org/01s41x998 ATM (Poland)'),
(66764, 'https://ror.org/01rqdcg33', 'pl', 1, 'https://ror.org/01rqdcg33 Laboratorium Datowań Bezwzględnych'),
(66765, 'https://ror.org/04q1k6w98', 'no_lang_code', 1, 'https://ror.org/04q1k6w98 ATM PP (Poland)'),
(66766, 'https://ror.org/008z9pq26', 'no_lang_code', 1, 'https://ror.org/008z9pq26 Audi (Italy)'),
(66767, 'https://ror.org/05jbr3j48', 'no_lang_code', 1, 'https://ror.org/05jbr3j48 Lakma (Poland)'),
(66768, 'https://ror.org/039vb7e80', 'no_lang_code', 1, 'https://ror.org/039vb7e80 Lars Lighting (Poland)'),
(66769, 'https://ror.org/00razdc11', 'no_lang_code', 1, 'https://ror.org/00razdc11 Avantor (Poland)'),
(66770, 'https://ror.org/000exqh08', 'no_lang_code', 1, 'https://ror.org/000exqh08 Azis Mining Service (Poland)'),
(66771, 'https://ror.org/04vv9sb16', 'no_lang_code', 1, 'https://ror.org/04vv9sb16 Lasertex (Poland)'),
(66772, 'https://ror.org/01ym0mb49', 'no_lang_code', 1, 'https://ror.org/01ym0mb49 Mikronika (Poland)'),
(66773, 'https://ror.org/007bw6q41', 'de', 1, 'https://ror.org/007bw6q41 Evangelische Hochschule Berlin'),
(66774, 'https://ror.org/02s97qm42', 'en', 1, 'https://ror.org/02s97qm42 European Consortium for Ocean Research Drilling'),
(66775, 'https://ror.org/052x5qt17', 'no_lang_code', 1, 'https://ror.org/052x5qt17 Baltic Ceramics Investments (Poland)'),
(66776, 'https://ror.org/01bs8p952', 'no_lang_code', 1, 'https://ror.org/01bs8p952 Logifact (Poland) Systemy Logistyczne'),
(66777, 'https://ror.org/037hasf44', 'no_lang_code', 1, 'https://ror.org/037hasf44 Bastik (Poland)'),
(66778, 'https://ror.org/0113knn38', 'no_lang_code', 1, 'https://ror.org/0113knn38 Geopartner (Poland)'),
(66779, 'https://ror.org/04atm1047', 'no_lang_code', 1, 'https://ror.org/04atm1047 Lubawa (Poland)'),
(66780, 'https://ror.org/01dz1nw58', 'no_lang_code', 1, 'https://ror.org/01dz1nw58 Bercanan (Poland)'),
(66781, 'https://ror.org/029wn1m36', 'no_lang_code', 1, 'https://ror.org/029wn1m36 Geotermia Mazowiecka (Poland)'),
(66782, 'https://ror.org/01sdpjb75', 'no_lang_code', 1, 'https://ror.org/01sdpjb75 Geotermia Uniejów (Poland)'),
(66783, 'https://ror.org/03x21fh86', 'en', 1, 'https://ror.org/03x21fh86 Biblioteka Śląska Silesian Library'),
(66784, 'https://ror.org/031vvza93', 'no_lang_code', 1, 'https://ror.org/031vvza93 Mabo (Poland)'),
(66785, 'https://ror.org/0086r2b45', 'no_lang_code', 1, 'https://ror.org/0086r2b45 Grupa Lotos (Poland)'),
(66786, 'https://ror.org/00vtf4k85', 'no_lang_code', 1, 'https://ror.org/00vtf4k85 BioScientia (Poland)'),
(66787, 'https://ror.org/04s3ttr38', 'no_lang_code', 1, 'https://ror.org/04s3ttr38 Maspex (Poland)'),
(66788, 'https://ror.org/035tncn14', 'no_lang_code', 1, 'https://ror.org/035tncn14 Grupa Wolff Wolff Group (Poland)'),
(66789, 'https://ror.org/059ya5h17', 'no_lang_code', 1, 'https://ror.org/059ya5h17 Bluetomation (Poland)'),
(66790, 'https://ror.org/05xcp0f40', 'no_lang_code', 1, 'https://ror.org/05xcp0f40 Heidelberg (Poland)'),
(66791, 'https://ror.org/038105c92', 'no_lang_code', 1, 'https://ror.org/038105c92 Marine Projects (Poland)'),
(66792, 'https://ror.org/027m4q536', 'no_lang_code', 1, 'https://ror.org/027m4q536 Bolmet (Poland)'),
(66793, 'https://ror.org/00a6g3p12', 'no_lang_code', 1, 'https://ror.org/00a6g3p12 Materials Engineers Group (Poland)'),
(66794, 'https://ror.org/05a2wb866', 'no_lang_code', 1, 'https://ror.org/05a2wb866 Boryszew (Poland)'),
(66795, 'https://ror.org/01rz7nn73', 'no_lang_code', 1, 'https://ror.org/01rz7nn73 BrainTech (Poland)'),
(66796, 'https://ror.org/03fc5a179', 'no_lang_code', 1, 'https://ror.org/03fc5a179 BTM Cluster (Poland)'),
(66797, 'https://ror.org/05ttsx632', 'no_lang_code', 1, 'https://ror.org/05ttsx632 C&T Elmech (Poland)'),
(66798, 'https://ror.org/00d0f1n88', 'no_lang_code', 1, 'https://ror.org/00d0f1n88 Carbograf (Poland)'),
(66799, 'https://ror.org/032w4ep19', 'no_lang_code', 1, 'https://ror.org/032w4ep19 IDAP Technology (Poland)'),
(66800, 'https://ror.org/00pvxy857', 'no_lang_code', 1, 'https://ror.org/00pvxy857 Cargotec (Poland)'),
(66801, 'https://ror.org/03ew4ty82', 'no_lang_code', 1, 'https://ror.org/03ew4ty82 Celiko (Poland)'),
(66802, 'https://ror.org/05kngp096', 'no_lang_code', 1, 'https://ror.org/05kngp096 Innerco (Poland)'),
(66803, 'https://ror.org/04wpnc326', 'no_lang_code', 1, 'https://ror.org/04wpnc326 Cells Therapy (Poland)'),
(66804, 'https://ror.org/03r9xyh10', 'no_lang_code', 1, 'https://ror.org/03r9xyh10 Inproel (Poland)'),
(66805, 'https://ror.org/00s4y3439', 'no_lang_code', 1, 'https://ror.org/00s4y3439 Cemet (Poland)'),
(66806, 'https://ror.org/03mrs5c75', 'no_lang_code', 1, 'https://ror.org/03mrs5c75 KuÅŗnia Stalowa Wola (Poland)'),
(66807, 'https://ror.org/00d32rn51', 'pl', 1, 'https://ror.org/00d32rn51 Centrum Badań Jakości Quality Research Center'),
(66808, 'https://ror.org/012q2m618', 'no_lang_code', 1, 'https://ror.org/012q2m618 Bosmal (Poland)'),
(66809, 'https://ror.org/039v1f004', 'no_lang_code', 1, 'https://ror.org/039v1f004 Centrum Badawczo - Produkcyjne DGT (Poland)'),
(66810, 'https://ror.org/03n1csv23', 'en', 1, 'https://ror.org/03n1csv23 Institute of Criminology of the Polish Forensic Association Polskie Towarzystwo Kryminalistyczne'),
(66811, 'https://ror.org/00fwfdb54', 'no_lang_code', 1, 'https://ror.org/00fwfdb54 Telesystem (Poland)'),
(66812, 'https://ror.org/02k7ex914', 'pl', 1, 'https://ror.org/02k7ex914 Institute of Law Studies Instytut Nauk Prawnych'),
(66813, 'https://ror.org/00sxv8m86', 'no_lang_code', 1, 'https://ror.org/00sxv8m86 Centre of Technology Transfer Emag (Poland)'),
(66814, 'https://ror.org/03aqxew96', 'no_lang_code', 1, 'https://ror.org/03aqxew96 ChM (Poland)'),
(66815, 'https://ror.org/039fs9a88', 'no_lang_code', 1, 'https://ror.org/039fs9a88 CMGI (Poland)'),
(66816, 'https://ror.org/04dm8py89', 'no_lang_code', 1, 'https://ror.org/04dm8py89 COBRO (Poland)'),
(66817, 'https://ror.org/05jz37f81', 'no_lang_code', 1, 'https://ror.org/05jz37f81 Consolidated Precision Products (Poland)'),
(66818, 'https://ror.org/0080qw039', 'no_lang_code', 1, 'https://ror.org/0080qw039 Horus Energia (Poland)'),
(66819, 'https://ror.org/04f07ep24', 'no_lang_code', 1, 'https://ror.org/04f07ep24 Corona (Poland)'),
(66820, 'https://ror.org/02heqf923', 'no_lang_code', 1, 'https://ror.org/02heqf923 Panasonic (Poland)'),
(66821, 'https://ror.org/02egnep81', 'no_lang_code', 1, 'https://ror.org/02egnep81 CRE Consulting (Poland)'),
(66822, 'https://ror.org/012nzs861', 'no_lang_code', 1, 'https://ror.org/012nzs861 Taps (Poland)'),
(66823, 'https://ror.org/032t23b63', 'no_lang_code', 1, 'https://ror.org/032t23b63 Search (Poland)'),
(66824, 'https://ror.org/02he8hw70', 'en', 1, 'https://ror.org/02he8hw70 Instytut Śląski w Opolu Silesian Institute in Opole'),
(66825, 'https://ror.org/0381acm07', 'no_lang_code', 1, 'https://ror.org/0381acm07 Samsung (Poland)'),
(66826, 'https://ror.org/03dhgb547', 'no_lang_code', 1, 'https://ror.org/03dhgb547 TOMSAD Tomasz Sadowski (Poland)'),
(66827, 'https://ror.org/04gy0kq46', 'no_lang_code', 1, 'https://ror.org/04gy0kq46 Scanmed (Poland)'),
(66828, 'https://ror.org/05qx2fb65', 'no_lang_code', 1, 'https://ror.org/05qx2fb65 SDS Optic (Poland)'),
(66829, 'https://ror.org/046swr926', 'no_lang_code', 1, 'https://ror.org/046swr926 Peptaderm (Poland)'),
(66830, 'https://ror.org/010vz8719', 'no_lang_code', 1, 'https://ror.org/010vz8719 Seen Semiconductors (Poland)'),
(66831, 'https://ror.org/02wq53r66', 'no_lang_code', 1, 'https://ror.org/02wq53r66 Tpa (Poland)'),
(66832, 'https://ror.org/04gbygd07', 'no_lang_code', 1, 'https://ror.org/04gbygd07 Transbit (Poland)'),
(66833, 'https://ror.org/04wr8sz35', 'no_lang_code', 1, 'https://ror.org/04wr8sz35 Petrol (Poland)'),
(66834, 'https://ror.org/04sxzk018', 'no_lang_code', 1, 'https://ror.org/04sxzk018 Phoenix Contact (Poland)'),
(66835, 'https://ror.org/01rwgmd28', 'no_lang_code', 1, 'https://ror.org/01rwgmd28 Sempre (Poland)'),
(66836, 'https://ror.org/030j6jf89', 'no_lang_code', 1, 'https://ror.org/030j6jf89 Trusted Information Consulting (Poland)'),
(66837, 'https://ror.org/01r7xf702', 'no_lang_code', 1, 'https://ror.org/01r7xf702 Fedor-Bis (Poland)'),
(66838, 'https://ror.org/031pan754', 'no_lang_code', 1, 'https://ror.org/031pan754 SentiOne (Poland)'),
(66839, 'https://ror.org/05h2sqk17', 'no_lang_code', 1, 'https://ror.org/05h2sqk17 Sewaco System (Poland)'),
(66840, 'https://ror.org/05186xw97', 'no_lang_code', 1, 'https://ror.org/05186xw97 Polbud-Pomorze (Poland)'),
(66841, 'https://ror.org/0571pz015', 'no_lang_code', 1, 'https://ror.org/0571pz015 VoicePIN.com (Poland)'),
(66842, 'https://ror.org/01bya3q34', 'no_lang_code', 1, 'https://ror.org/01bya3q34 SGL Carbon (Poland)'),
(66843, 'https://ror.org/04c7bhp05', 'no_lang_code', 1, 'https://ror.org/04c7bhp05 SGL Carbon (Germany)'),
(66844, 'https://ror.org/03q674f15', 'en', 1, 'https://ror.org/03q674f15 Polish Academy of Learning Polska Akademia Umiejętności'),
(66845, 'https://ror.org/04dvzv716', 'no_lang_code', 1, 'https://ror.org/04dvzv716 Polska Grupa Górnicza (Poland)'),
(66846, 'https://ror.org/04z5pp948', 'no_lang_code', 1, 'https://ror.org/04z5pp948 Skotan (Poland)'),
(66847, 'https://ror.org/033vfvr15', 'en', 1, 'https://ror.org/033vfvr15 Polish Chamber of Packaging Polska Izba Opakowań'),
(66848, 'https://ror.org/02e4kxk72', 'no_lang_code', 1, 'https://ror.org/02e4kxk72 Kupiec (Poland)'),
(66849, 'https://ror.org/02c289w86', 'pl', 1, 'https://ror.org/02c289w86 Słodownia Soufflet Polska'),
(66850, 'https://ror.org/01p8akv10', 'no_lang_code', 1, 'https://ror.org/01p8akv10 Polish Security Printing Works (Poland) Polska Wytwornia Papierow Wartosciowych'),
(66851, 'https://ror.org/031rh4g51', 'no_lang_code', 1, 'https://ror.org/031rh4g51 Soley (Poland)'),
(66852, 'https://ror.org/03s2zgf58', 'en', 1, 'https://ror.org/03s2zgf58 Polish Stem Cell Bank Polski Bank Komórek Macierzystych'),
(66853, 'https://ror.org/05es54b96', 'pl', 1, 'https://ror.org/05es54b96 Specjalistyczny Szpital Miejski im. M. Kopernika'),
(66854, 'https://ror.org/04rjsxs58', 'en', 1, 'https://ror.org/04rjsxs58 President of the Office of Electronic Communications Urząd Komunikacji Elektronicznej'),
(66855, 'https://ror.org/04wtyx265', 'no_lang_code', 1, 'https://ror.org/04wtyx265 Sprint (Poland)'),
(66856, 'https://ror.org/03gxz3j07', 'en', 1, 'https://ror.org/03gxz3j07 Polish Society of Oriental Art Polski Instytut Studiów nad Sztuką Świata');
INSERT INTO `rors` VALUES
(66857, 'https://ror.org/05fmpsp49', 'no_lang_code', 1, 'https://ror.org/05fmpsp49 Spyra Primo (Poland)'),
(66858, 'https://ror.org/01jyr6y47', 'pl', 1, 'https://ror.org/01jyr6y47 Polskie Stowarzyszenie Terapii Behawioralnej'),
(66859, 'https://ror.org/05t6aan57', 'no_lang_code', 1, 'https://ror.org/05t6aan57 Stalprodukt (Poland)'),
(66860, 'https://ror.org/052dx1v90', 'no_lang_code', 1, 'https://ror.org/052dx1v90 Chornobyl Center Š§Š¾Ń€Š½Š¾Š±ŠøŠ»ŃŒŃŃŒŠŗŠøŠ¹ центр'),
(66861, 'https://ror.org/038v45r36', 'no_lang_code', 1, 'https://ror.org/038v45r36 VĆØringer (Spain)'),
(66862, 'https://ror.org/000nw4a65', 'no_lang_code', 1, 'https://ror.org/000nw4a65 Polish Aviation Works Polskie Zakłady Lotnicze (Poland)'),
(66863, 'https://ror.org/00qw0ej89', 'no_lang_code', 1, 'https://ror.org/00qw0ej89 Vigo (Poland)'),
(66864, 'https://ror.org/042688r20', 'en', 1, 'https://ror.org/042688r20 Indian Pharmacist Association'),
(66865, 'https://ror.org/05ae3z928', 'no_lang_code', 1, 'https://ror.org/05ae3z928 VoiceLab (Poland)'),
(66866, 'https://ror.org/009dhvf97', 'en', 1, 'https://ror.org/009dhvf97 South Western Ambulance Service NHS Foundation Trust'),
(66867, 'https://ror.org/01m7cyk91', 'no_lang_code', 1, 'https://ror.org/01m7cyk91 PolymemTech (Poland)'),
(66868, 'https://ror.org/0229g8886', 'en', 1, 'https://ror.org/0229g8886 Warsaw School of Computer Science Warszawska Wyższa Szkoła Informatyki'),
(66869, 'https://ror.org/00tey2378', 'no_lang_code', 1, 'https://ror.org/00tey2378 Stem Cells Spin (Poland)'),
(66870, 'https://ror.org/01wfbns29', 'pl', 1, 'https://ror.org/01wfbns29 Powszechna Kasa Oszczędności Bank Polski Spółka Akcyjna'),
(66871, 'https://ror.org/049zj0z80', 'no_lang_code', 1, 'https://ror.org/049zj0z80 Sto (Poland)'),
(66872, 'https://ror.org/05q8qmk69', 'pl', 1, 'https://ror.org/05q8qmk69 Stowarzyszenie Radość Życia'),
(66873, 'https://ror.org/026s4w053', 'no_lang_code', 1, 'https://ror.org/026s4w053 Poznańska Hodowla Roślin (Poland)'),
(66874, 'https://ror.org/01ar8m914', 'en', 1, 'https://ror.org/01ar8m914 Polish Platform for Homeland Security Polska Platforma Bezpieczeństwa Wewnętrznego'),
(66875, 'https://ror.org/013w7en88', 'no_lang_code', 1, 'https://ror.org/013w7en88 Military Aviation Works No. 4 (Poland) Wojskowe Zakłady Lotnicze Nr 4'),
(66876, 'https://ror.org/05gv0tw76', 'no_lang_code', 1, 'https://ror.org/05gv0tw76 Eko-Energia (Poland)'),
(66877, 'https://ror.org/04rzp1e87', 'pl', 1, 'https://ror.org/04rzp1e87 Stowarzyszenie Pomocy Niepełnosprawnym Kierowcom'),
(66878, 'https://ror.org/03g2atw04', 'no_lang_code', 1, 'https://ror.org/03g2atw04 Mind (Poland)'),
(66879, 'https://ror.org/04q9spx56', 'no_lang_code', 1, 'https://ror.org/04q9spx56 Proen (Poland)'),
(66880, 'https://ror.org/01bqdbm60', 'pl', 1, 'https://ror.org/01bqdbm60 Szkoła Aspirantów Państwowej Straży Pożarnej'),
(66881, 'https://ror.org/00fb7th39', 'no_lang_code', 1, 'https://ror.org/00fb7th39 Elsit (Poland)'),
(66882, 'https://ror.org/04tb0r175', 'no_lang_code', 1, 'https://ror.org/04tb0r175 Szkuner (Poland)'),
(66883, 'https://ror.org/00de4mp23', 'no_lang_code', 1, 'https://ror.org/00de4mp23 Marko-Kolor (Poland)'),
(66884, 'https://ror.org/04smhj247', 'en', 1, 'https://ror.org/04smhj247 Szpital Kliniczny Przemienienia Pańskiego University Hospital of Lord’s Transfiguration'),
(66885, 'https://ror.org/02hpzh255', 'no_lang_code', 1, 'https://ror.org/02hpzh255 Lindo Catsystem (Poland)'),
(66886, 'https://ror.org/03pkrh852', 'no_lang_code', 1, 'https://ror.org/03pkrh852 Tauron Wytwarzanie (Poland)'),
(66887, 'https://ror.org/04k3h1n36', 'no_lang_code', 1, 'https://ror.org/04k3h1n36 ADW (Poland)'),
(66888, 'https://ror.org/02f9ma297', 'no_lang_code', 1, 'https://ror.org/02f9ma297 Tecna (Poland)'),
(66889, 'https://ror.org/05h3cvr32', 'no_lang_code', 1, 'https://ror.org/05h3cvr32 Tedspaw (Poland)'),
(66890, 'https://ror.org/0527t6d08', 'no_lang_code', 1, 'https://ror.org/0527t6d08 X-Code (Poland)'),
(66891, 'https://ror.org/03ydtyz77', 'no_lang_code', 1, 'https://ror.org/03ydtyz77 Tektura Opakowania Papier (Poland)'),
(66892, 'https://ror.org/029768m78', 'no_lang_code', 1, 'https://ror.org/029768m78 Maskpol (Poland)'),
(66893, 'https://ror.org/059tydn49', 'no_lang_code', 1, 'https://ror.org/059tydn49 Telvis (Poland)'),
(66894, 'https://ror.org/02axp7z77', 'no_lang_code', 1, 'https://ror.org/02axp7z77 Termetal (Poland)'),
(66895, 'https://ror.org/010c3p773', 'no_lang_code', 1, 'https://ror.org/010c3p773 Pure Biologics (Poland)'),
(66896, 'https://ror.org/05r0zxs60', 'no_lang_code', 1, 'https://ror.org/05r0zxs60 Qwed (Poland)'),
(66897, 'https://ror.org/029whta60', 'no_lang_code', 1, 'https://ror.org/029whta60 PBG (Poland)'),
(66898, 'https://ror.org/01vjge728', 'no_lang_code', 1, 'https://ror.org/01vjge728 Enika (Poland)'),
(66899, 'https://ror.org/02dr5rf50', 'no_lang_code', 1, 'https://ror.org/02dr5rf50 Maxon Motor (Switzerland)'),
(66900, 'https://ror.org/04sedqx04', 'no_lang_code', 1, 'https://ror.org/04sedqx04 Twerd (Poland)'),
(66901, 'https://ror.org/05mgh6q46', 'en', 1, 'https://ror.org/05mgh6q46 MB Recycling'),
(66902, 'https://ror.org/01tyxje26', 'en', 1, 'https://ror.org/01tyxje26 Regional Water Management Authority in Warsaw Regionalny Zarząd Gospodarki Wodnej w Warszawie'),
(66903, 'https://ror.org/059kvg223', 'no_lang_code', 1, 'https://ror.org/059kvg223 Hydromar (Poland)'),
(66904, 'https://ror.org/00xka5v70', 'no_lang_code', 1, 'https://ror.org/00xka5v70 Raziskovalna Genetika in Agrokemija Research Genetics and Agrochemistry (Slovenia)'),
(66905, 'https://ror.org/03wyyd750', 'no_lang_code', 1, 'https://ror.org/03wyyd750 Menard (Poland)'),
(66906, 'https://ror.org/05nzhg723', 'no_lang_code', 1, 'https://ror.org/05nzhg723 Merx (Poland)'),
(66907, 'https://ror.org/04zarx416', 'no_lang_code', 1, 'https://ror.org/04zarx416 Riela (Poland)'),
(66908, 'https://ror.org/03q3g6770', 'no_lang_code', 1, 'https://ror.org/03q3g6770 RIKA (Austria)'),
(66909, 'https://ror.org/05m7seh36', 'no_lang_code', 1, 'https://ror.org/05m7seh36 Mician (Germany)'),
(66910, 'https://ror.org/03x58jg90', 'no_lang_code', 1, 'https://ror.org/03x58jg90 Mikronatura Środowisko (Poland)'),
(66911, 'https://ror.org/03g24h954', 'en', 1, 'https://ror.org/03g24h954 MRS Training & Rescue'),
(66912, 'https://ror.org/016bfm023', 'no_lang_code', 1, 'https://ror.org/016bfm023 MLabs (Poland)'),
(66913, 'https://ror.org/013r0t984', 'no_lang_code', 1, 'https://ror.org/013r0t984 Fabryka Łożysk Tocznych Kraśnik Polish Bearings Factory (Poland)'),
(66914, 'https://ror.org/04byf5b56', 'no_lang_code', 1, 'https://ror.org/04byf5b56 Zakład Mechaniki Maszyn (Poland)'),
(66915, 'https://ror.org/05s28rs88', 'no_lang_code', 1, 'https://ror.org/05s28rs88 Modertrans (Poland)'),
(66916, 'https://ror.org/03dyp1558', 'no_lang_code', 1, 'https://ror.org/03dyp1558 MPTS (Poland)'),
(66917, 'https://ror.org/00ww76c39', 'en', 1, 'https://ror.org/00ww76c39 Muzeum Narodowe w Warszawie National Museum in Warsaw'),
(66918, 'https://ror.org/05dy2tj95', 'no_lang_code', 1, 'https://ror.org/05dy2tj95 Special Production Plant Gamrat (Poland) Zaklad Produkcji Specjalnej Gamrat'),
(66919, 'https://ror.org/01avd5833', 'pl', 1, 'https://ror.org/01avd5833 Narodowy Instytut Muzealnictwa i Ochrony Zbiorów'),
(66920, 'https://ror.org/01vph1q21', 'no_lang_code', 1, 'https://ror.org/01vph1q21 Eltraf (Poland)'),
(66921, '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'),
(66922, 'https://ror.org/05bf1hc74', 'no_lang_code', 1, 'https://ror.org/05bf1hc74 Lentex (Poland)'),
(66923, 'https://ror.org/056jpe255', 'no_lang_code', 1, 'https://ror.org/056jpe255 Automex (Poland)'),
(66924, 'https://ror.org/05kge5x46', 'no_lang_code', 1, 'https://ror.org/05kge5x46 AgeSoya (Poland)'),
(66925, 'https://ror.org/02yay2r30', 'no_lang_code', 1, 'https://ror.org/02yay2r30 Zurad (Poland)'),
(66926, 'https://ror.org/01dmy1650', 'no_lang_code', 1, 'https://ror.org/01dmy1650 Odlewnie Polskie (Poland)'),
(66927, 'https://ror.org/00gpd0h05', 'no_lang_code', 1, 'https://ror.org/00gpd0h05 Omnikon (Poland)'),
(66928, 'https://ror.org/02x2r7t05', 'no_lang_code', 1, 'https://ror.org/02x2r7t05 Nitrochem (Poland)'),
(66929, 'https://ror.org/03dnwsa64', 'no_lang_code', 1, 'https://ror.org/03dnwsa64 Opegieka (Poland)'),
(66930, 'https://ror.org/03cj4xr84', 'no_lang_code', 1, 'https://ror.org/03cj4xr84 Newind (Poland)'),
(66931, 'https://ror.org/012r7dj92', 'no_lang_code', 1, 'https://ror.org/012r7dj92 Silikony (Poland)'),
(66932, 'https://ror.org/05hpbxg82', 'no_lang_code', 1, 'https://ror.org/05hpbxg82 Nexteer Automotive (Poland)'),
(66933, 'https://ror.org/016azcq16', 'en', 1, 'https://ror.org/016azcq16 Meditest Niepubliczny Zakład Opieki Zdrowotnej Meditest. Diagnostyka Medyczna'),
(66934, 'https://ror.org/00qnj9c09', 'no_lang_code', 1, 'https://ror.org/00qnj9c09 Zakłady Energetyki Cieplnej (Poland)'),
(66935, 'https://ror.org/028e1nz03', 'no_lang_code', 1, 'https://ror.org/028e1nz03 Nitroerg (Poland)'),
(66936, 'https://ror.org/040fsr689', 'no_lang_code', 1, 'https://ror.org/040fsr689 Nomino (Poland)'),
(66937, 'https://ror.org/01wz1pj13', 'no_lang_code', 1, 'https://ror.org/01wz1pj13 Zaslaw (Poland)'),
(66938, 'https://ror.org/03jr6e130', 'no_lang_code', 1, 'https://ror.org/03jr6e130 Zębiec (Poland)'),
(66939, 'https://ror.org/05s0d1r23', 'no_lang_code', 1, 'https://ror.org/05s0d1r23 Zakłady Mechaniczne Tarnów (Poland)'),
(66940, 'https://ror.org/00rq4rf45', 'no_lang_code', 1, 'https://ror.org/00rq4rf45 Zeto (Poland)'),
(66941, 'https://ror.org/036hc2148', 'no_lang_code', 1, 'https://ror.org/036hc2148 ​Advanced Systems Technology (United States)'),
(66942, 'https://ror.org/02k6zwz49', 'no_lang_code', 1, 'https://ror.org/02k6zwz49 Zakłady Magnezytowe (Poland)'),
(66943, 'https://ror.org/02e4d0d63', 'en', 1, 'https://ror.org/02e4d0d63 Alabama Department of Forensic Sciences'),
(66944, 'https://ror.org/04fcsw843', 'en', 1, 'https://ror.org/04fcsw843 Virginia Department of Forensic Science'),
(66945, 'https://ror.org/01z2yst76', 'en', 1, 'https://ror.org/01z2yst76 Alaska Department of Public Safety'),
(66946, 'https://ror.org/0334ajr59', 'no_lang_code', 1, 'https://ror.org/0334ajr59 Development Services Group (United States)'),
(66947, 'https://ror.org/01bxfeh72', 'en', 1, 'https://ror.org/01bxfeh72 American Correctional Association'),
(66948, 'https://ror.org/03akcxx27', 'en', 1, 'https://ror.org/03akcxx27 District of Columbia Department of Forensic Sciences'),
(66949, 'https://ror.org/02acf6r22', 'no_lang_code', 1, 'https://ror.org/02acf6r22 Maroon Biotech (United States)'),
(66950, 'https://ror.org/04m6k0e70', 'no_lang_code', 1, 'https://ror.org/04m6k0e70 Drakontas (United States)'),
(66951, 'https://ror.org/00nwkxv42', 'en', 1, 'https://ror.org/00nwkxv42 McCrone Research Institute'),
(66952, 'https://ror.org/02a497926', 'en', 1, 'https://ror.org/02a497926 American Indian Development Associates'),
(66953, 'https://ror.org/03hqz0977', 'no_lang_code', 1, 'https://ror.org/03hqz0977 Microtrace (United States)'),
(66954, 'https://ror.org/00nz6vc25', 'en', 1, 'https://ror.org/00nz6vc25 Middle Rio Grande Development Council'),
(66955, 'https://ror.org/00pkkjm33', 'no_lang_code', 1, 'https://ror.org/00pkkjm33 Mistral Security (United States)'),
(66956, 'https://ror.org/04sqcre19', 'en', 1, 'https://ror.org/04sqcre19 Fredric Rieders Family Foundation'),
(66957, 'https://ror.org/05ksq6x45', 'en', 1, 'https://ror.org/05ksq6x45 American Society of Crime Laboratory Directors'),
(66958, 'https://ror.org/05k7h3711', 'en', 1, 'https://ror.org/05k7h3711 BOTEC Analysis'),
(66959, 'https://ror.org/00qt5t304', 'en', 1, 'https://ror.org/00qt5t304 Automated Regional Justice Information System'),
(66960, 'https://ror.org/039txbb33', 'no_lang_code', 1, 'https://ror.org/039txbb33 Nanogen (United States)'),
(66961, 'https://ror.org/057d9q433', 'no_lang_code', 1, 'https://ror.org/057d9q433 Great Basin Data Recovery (United States)'),
(66962, 'https://ror.org/049s75k27', 'en', 1, 'https://ror.org/049s75k27 Arkansas State Crime Laboratory'),
(66963, 'https://ror.org/059aemv20', 'en', 1, 'https://ror.org/059aemv20 National Association of Drug Court Professionals'),
(66964, 'https://ror.org/027xnhd66', 'no_lang_code', 1, 'https://ror.org/027xnhd66 Grier Forensics (United States)'),
(66965, 'https://ror.org/05waabg59', 'en', 1, 'https://ror.org/05waabg59 The Cancer Treatment Center'),
(66966, 'https://ror.org/00ybgpf59', 'en', 1, 'https://ror.org/00ybgpf59 National Council of Juvenile and Family Court Judges'),
(66967, 'https://ror.org/0245g4145', 'en', 1, 'https://ror.org/0245g4145 Houston Forensic Science Center'),
(66968, 'https://ror.org/011qz6c59', 'en', 1, 'https://ror.org/011qz6c59 Houston-Galveston Area Council'),
(66969, 'https://ror.org/04zy5hd61', 'en', 1, 'https://ror.org/04zy5hd61 National District Attorneys Association'),
(66970, 'https://ror.org/047kq9b85', 'en', 1, 'https://ror.org/047kq9b85 International Association of Directors of Law Enforcement Standards and Training'),
(66971, 'https://ror.org/0048qgt65', 'en', 1, 'https://ror.org/0048qgt65 BKForensics'),
(66972, 'https://ror.org/00jmssa97', 'en', 1, 'https://ror.org/00jmssa97 National Legal Aid & Defender Association'),
(66973, 'https://ror.org/05025g024', 'en', 1, 'https://ror.org/05025g024 Indiana Criminal Justice Institute'),
(66974, 'https://ror.org/05wbcyx60', 'no_lang_code', 1, 'https://ror.org/05wbcyx60 InnoGenomics (United States)'),
(66975, 'https://ror.org/04a4xjz41', 'en', 1, 'https://ror.org/04a4xjz41 Cadre Research'),
(66976, 'https://ror.org/01fn3sj65', 'en', 1, 'https://ror.org/01fn3sj65 Institute for Intergovernmental Research'),
(66977, 'https://ror.org/05tcv8k56', 'en', 1, 'https://ror.org/05tcv8k56 California Institute for Behavioral Health Solutions'),
(66978, 'https://ror.org/01949f364', 'en', 1, 'https://ror.org/01949f364 Northeastern Illinois Regional Crime Laboratory'),
(66979, 'https://ror.org/00vaaes23', 'en', 1, 'https://ror.org/00vaaes23 Northwest Professional Consortium'),
(66980, 'https://ror.org/019rrzp31', 'en', 1, 'https://ror.org/019rrzp31 Institute for Linguistic Evidence'),
(66981, 'https://ror.org/02md98x79', 'en', 1, 'https://ror.org/02md98x79 National White Collar Crime Center'),
(66982, 'https://ror.org/03cn5zn95', 'en', 1, 'https://ror.org/03cn5zn95 Occupational Research and Assessment'),
(66983, 'https://ror.org/011hfx640', 'en', 1, 'https://ror.org/011hfx640 Center For Policy Research'),
(66984, 'https://ror.org/02zm6bn93', 'en', 1, 'https://ror.org/02zm6bn93 Connections for Abused Women and their Children'),
(66985, 'https://ror.org/04f2vpk13', 'en', 1, 'https://ror.org/04f2vpk13 Paternity Testing Corporation Laboratories'),
(66986, 'https://ror.org/04jy9y087', 'en', 1, 'https://ror.org/04jy9y087 Pennsylvania Coalition Against Domestic Violence'),
(66987, 'https://ror.org/02na2cx67', 'no_lang_code', 1, 'https://ror.org/02na2cx67 Miltran (United States)'),
(66988, 'https://ror.org/04h51r045', 'en', 1, 'https://ror.org/04h51r045 Interdisciplinary Scientific Research'),
(66989, 'https://ror.org/01ngfjj64', 'no_lang_code', 1, 'https://ror.org/01ngfjj64 PharmChem (United States)'),
(66990, 'https://ror.org/00eep5m87', 'en', 1, 'https://ror.org/00eep5m87 International Association of Forensic Nurses'),
(66991, 'https://ror.org/03tv6h054', 'en', 1, 'https://ror.org/03tv6h054 Police Executive Research Forum'),
(66992, 'https://ror.org/04vxddf34', 'en', 1, 'https://ror.org/04vxddf34 IsoForensics'),
(66993, 'https://ror.org/01yymmk41', 'no_lang_code', 1, 'https://ror.org/01yymmk41 Maximus (United States)'),
(66994, 'https://ror.org/020qa8h77', 'en', 1, 'https://ror.org/020qa8h77 Coalition Against Trafficking Women'),
(66995, 'https://ror.org/04dge4z44', 'en', 1, 'https://ror.org/04dge4z44 Pretrial Justice Institute'),
(66996, 'https://ror.org/05em9b770', 'en', 1, 'https://ror.org/05em9b770 Justice & Security Strategies'),
(66997, 'https://ror.org/04x44n450', 'en', 1, 'https://ror.org/04x44n450 Justice Research and Statistics Association'),
(66998, 'https://ror.org/02kdshq54', 'en', 1, 'https://ror.org/02kdshq54 Connecticut Statistical Analysis Center'),
(66999, 'https://ror.org/0219smt59', 'en', 1, 'https://ror.org/0219smt59 The Justice Research Center'),
(67000, 'https://ror.org/02sksqx64', 'en', 1, 'https://ror.org/02sksqx64 Division of Public Defender Services'),
(67001, 'https://ror.org/04qfef108', 'en', 1, 'https://ror.org/04qfef108 Language Systems International College of English'),
(67002, 'https://ror.org/01rvq6e84', 'no_lang_code', 1, 'https://ror.org/01rvq6e84 The McCrone Group (United States)'),
(67003, 'https://ror.org/00nbvsp70', 'en', 1, 'https://ror.org/00nbvsp70 Pretrial Services Agency for the District of Columbia'),
(67004, 'https://ror.org/03f78hn46', 'no_lang_code', 1, 'https://ror.org/03f78hn46 Search'),
(67005, 'https://ror.org/003yky459', 'no_lang_code', 1, 'https://ror.org/003yky459 RentPath (United States)'),
(67006, 'https://ror.org/052213k81', 'en', 1, 'https://ror.org/052213k81 Day One'),
(67007, 'https://ror.org/02t2xcx21', 'en', 1, 'https://ror.org/02t2xcx21 Social Science Research and Evaluation'),
(67008, 'https://ror.org/028310354', 'no_lang_code', 1, 'https://ror.org/028310354 Social Policy Research Associates (United States)'),
(67009, 'https://ror.org/047pb7g40', 'en', 1, 'https://ror.org/047pb7g40 South Dakota Department of Public Safety'),
(67010, 'https://ror.org/0177wgn41', 'no_lang_code', 1, 'https://ror.org/0177wgn41 Stoney Forensic (United States)'),
(67011, 'https://ror.org/002m2fe15', 'en', 1, 'https://ror.org/002m2fe15 Telecommunications Industry Association'),
(67012, 'https://ror.org/01g5nae47', 'en', 1, 'https://ror.org/01g5nae47 Texas Association Against Sexual Assault'),
(67013, 'https://ror.org/05dvgxb17', 'en', 1, 'https://ror.org/05dvgxb17 The Center For Rural Development'),
(67014, 'https://ror.org/04d0tbe10', 'no_lang_code', 1, 'https://ror.org/04d0tbe10 Vanu (United States)'),
(67015, 'https://ror.org/03h8kn192', 'en', 1, 'https://ror.org/03h8kn192 International Union of Police Associations'),
(67016, 'https://ror.org/0257m1m09', 'no_lang_code', 1, 'https://ror.org/0257m1m09 Vere Software (United States)'),
(67017, 'https://ror.org/02sncd318', 'en', 1, 'https://ror.org/02sncd318 The Reed Institute'),
(67018, 'https://ror.org/01zxrsb29', 'en', 1, 'https://ror.org/01zxrsb29 Virginia Center for Policing Innovation'),
(67019, 'https://ror.org/01e15cb45', 'no_lang_code', 1, 'https://ror.org/01e15cb45 Bova (Taiwan)'),
(67020, 'https://ror.org/03w8g0847', 'en', 1, 'https://ror.org/03w8g0847 West Virginia Department of Military Affairs and Public Safety'),
(67021, 'https://ror.org/015mspw86', 'en', 1, 'https://ror.org/015mspw86 Western Forensic Law Enforcement Training Center'),
(67022, 'https://ror.org/03cwrs750', 'no_lang_code', 1, 'https://ror.org/03cwrs750 Allen (United States)'),
(67023, 'https://ror.org/04vv9rj91', 'no_lang_code', 1, 'https://ror.org/04vv9rj91 Data One Global (United States)'),
(67024, 'https://ror.org/05gvknb51', 'en', 1, 'https://ror.org/05gvknb51 Institute of Biomedical Physics Viện Vįŗ­t Lý Y Sinh'),
(67025, 'https://ror.org/018bj7h19', 'no_lang_code', 1, 'https://ror.org/018bj7h19 A J Tuck (United States)'),
(67026, 'https://ror.org/0250p1d07', 'no_lang_code', 1, 'https://ror.org/0250p1d07 Phenikaa (Vietnam)'),
(67027, 'https://ror.org/02v857h75', 'no_lang_code', 1, 'https://ror.org/02v857h75 Deregallera (United Kingdom)'),
(67028, 'https://ror.org/0286v3284', 'en', 1, 'https://ror.org/0286v3284 Institute of Hydrogeology and Geoecology. Ahmedsafina Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГрогеологии Šø Š³ŠµŠ¾ŃŠŗŠ¾Š»Š¾Š³ŠøŠø им. АхмеГсафина'),
(67029, 'https://ror.org/04f41f018', 'no_lang_code', 1, 'https://ror.org/04f41f018 Advanced Algorithm and Systems (Japan)'),
(67030, 'https://ror.org/04g5q3m07', 'no_lang_code', 1, 'https://ror.org/04g5q3m07 Dinntec (Colombia)'),
(67031, 'https://ror.org/009d3ws08', 'es', 1, 'https://ror.org/009d3ws08 Instituto de Investigaciones FĆ­sicas de Mar del Plata'),
(67032, 'https://ror.org/005n3yy14', 'en', 1, 'https://ror.org/005n3yy14 Institute of Physics and Technology науки Физико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(67033, 'https://ror.org/03a8ase89', 'en', 1, 'https://ror.org/03a8ase89 Institute of Physics of Molecules and Crystals Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики молекул Šø кристаллов'),
(67034, 'https://ror.org/04n1dwf03', 'no_lang_code', 1, 'https://ror.org/04n1dwf03 ECM Technologies (France)'),
(67035, 'https://ror.org/00g04a530', 'es', 1, 'https://ror.org/00g04a530 Instituto de FĆ­sica del Sur'),
(67036, 'https://ror.org/036w35554', 'en', 1, 'https://ror.org/036w35554 African Centre for Advanced Studies'),
(67037, 'https://ror.org/01xfv7487', 'no_lang_code', 1, 'https://ror.org/01xfv7487 Electric Ant Lab (Netherlands)'),
(67038, 'https://ror.org/0073twa91', 'en', 1, 'https://ror.org/0073twa91 Interdisciplinary Scientific Center J.-V. Poncelet'),
(67039, 'https://ror.org/02fn8bv93', 'en', 1, 'https://ror.org/02fn8bv93 Ambasciata d''Italia Embassy of Italy in Tel Aviv'),
(67040, 'https://ror.org/02vhzww23', 'no_lang_code', 1, 'https://ror.org/02vhzww23 Aizu Hokurei High School'),
(67041, 'https://ror.org/005rnqt78', 'no_lang_code', 1, 'https://ror.org/005rnqt78 Invenia (Canada)'),
(67042, 'https://ror.org/02x9fwx10', 'en', 1, 'https://ror.org/02x9fwx10 Ethiopian Space Science and Technology Institute į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆµį”įˆµ įˆ³į‹­įŠ•įˆµ įŠ„įŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ į‰°į‰‹įˆ'),
(67043, 'https://ror.org/04rfmre55', 'en', 1, 'https://ror.org/04rfmre55 Islamic Azad University of Marand'),
(67044, 'https://ror.org/00r2sd878', 'no_lang_code', 1, 'https://ror.org/00r2sd878 ISTEQ (Netherlands)'),
(67045, 'https://ror.org/00v9sab02', 'no_lang_code', 1, 'https://ror.org/00v9sab02 Iteratec (Germany)'),
(67046, 'https://ror.org/03g8he721', 'no_lang_code', 1, 'https://ror.org/03g8he721 EUV Labs (Russia)'),
(67047, 'https://ror.org/01e47g017', 'no_lang_code', 1, 'https://ror.org/01e47g017 FirstPass Engineering (United States)'),
(67048, 'https://ror.org/019enq229', 'no_lang_code', 1, 'https://ror.org/019enq229 Folio Photonics (United States)'),
(67049, 'https://ror.org/053yfc731', 'no_lang_code', 1, 'https://ror.org/053yfc731 Fomos-Materials (Russia)'),
(67050, 'https://ror.org/01wy0hc37', 'fr', 1, 'https://ror.org/01wy0hc37 Alistore'),
(67051, 'https://ror.org/03qe16108', 'en', 1, 'https://ror.org/03qe16108 Directorate General of Training'),
(67052, 'https://ror.org/02557nd11', 'en', 1, 'https://ror.org/02557nd11 Jinan Institute of Quantum Technology ęµŽå—é‡å­ęŠ€ęœÆē ”ē©¶é™¢'),
(67053, 'https://ror.org/05kk1wy06', 'no_lang_code', 1, 'https://ror.org/05kk1wy06 Greenerwave (France)'),
(67054, 'https://ror.org/005q1n430', 'it', 1, 'https://ror.org/005q1n430 Osservativa di Campo Imperatore'),
(67055, 'https://ror.org/02sgc5k80', 'no_lang_code', 1, 'https://ror.org/02sgc5k80 Grinm Advanced Materials (China) ęœ‰ē ”ę–°ęę–™č‚”ä»½ęœ‰é™å…¬åø'),
(67056, 'https://ror.org/001wkh665', 'no_lang_code', 1, 'https://ror.org/001wkh665 Kelenn Technology (France)'),
(67057, 'https://ror.org/0260evc53', 'de', 1, 'https://ror.org/0260evc53 Maschinenbauschule Ansbach'),
(67058, 'https://ror.org/04rjeh836', 'no_lang_code', 1, 'https://ror.org/04rjeh836 Patliputra University'),
(67059, 'https://ror.org/02qvs5504', 'no_lang_code', 1, 'https://ror.org/02qvs5504 Artwork Conversion Software (United States)'),
(67060, 'https://ror.org/007vees71', 'no_lang_code', 1, 'https://ror.org/007vees71 Gyan Data (India)'),
(67061, 'https://ror.org/029vth897', 'en', 1, 'https://ror.org/029vth897 Association for India’s Development'),
(67062, 'https://ror.org/04r8tna72', 'en', 1, 'https://ror.org/04r8tna72 Hadaf Institute of Higher Education'),
(67063, 'https://ror.org/00yy0tx50', 'no_lang_code', 1, 'https://ror.org/00yy0tx50 Hefei CAS Ion Medical and Technical Devices (China) åˆč‚„äø­ē§‘ē¦»å­åŒ»å­¦ęŠ€ęœÆč£…å¤‡'),
(67064, 'https://ror.org/03ktsar73', 'en', 1, 'https://ror.org/03ktsar73 AARP Foundation'),
(67065, 'https://ror.org/04g84km62', 'no_lang_code', 1, 'https://ror.org/04g84km62 KW Engineering (United States)'),
(67066, 'https://ror.org/04bapa014', 'no_lang_code', 1, 'https://ror.org/04bapa014 Hongzhiwei Technology (China) éøæä¹‹å¾®ē§‘ęŠ€'),
(67067, 'https://ror.org/05x6bj397', 'es', 1, 'https://ror.org/05x6bj397 Instituto Universitario Hospital Italiano'),
(67068, 'https://ror.org/03ja1tq30', 'no_lang_code', 1, 'https://ror.org/03ja1tq30 HOPE Innovations (Canada)'),
(67069, 'https://ror.org/052qx3616', 'no_lang_code', 1, 'https://ror.org/052qx3616 Hotto Link (Japan)'),
(67070, 'https://ror.org/00e6aar40', 'no_lang_code', 1, 'https://ror.org/00e6aar40 Illumisonics (Canada)'),
(67071, 'https://ror.org/05tf4ye04', 'no_lang_code', 1, 'https://ror.org/05tf4ye04 Laipac Technology (Canada)'),
(67072, 'https://ror.org/051yxch97', 'no_lang_code', 1, 'https://ror.org/051yxch97 LTCalcoli (Italy)'),
(67073, 'https://ror.org/053k9sq83', 'no_lang_code', 1, 'https://ror.org/053k9sq83 Lumetrics (United States)'),
(67074, 'https://ror.org/00gd30v42', 'no_lang_code', 1, 'https://ror.org/00gd30v42 Infinia ML (United States)'),
(67075, 'https://ror.org/0096z2k33', 'en', 1, 'https://ror.org/0096z2k33 Luxembourg School of Business'),
(67076, 'https://ror.org/027s2rg16', 'no_lang_code', 1, 'https://ror.org/027s2rg16 Machakos School'),
(67077, 'https://ror.org/0022jb369', 'en', 1, 'https://ror.org/0022jb369 Institute for Molecular Manufacturing'),
(67078, 'https://ror.org/00936xm65', 'en', 1, 'https://ror.org/00936xm65 Ajmal College of Arts and Science'),
(67079, 'https://ror.org/005278833', 'en', 1, 'https://ror.org/005278833 Maxwell Air Force Base'),
(67080, 'https://ror.org/04e0gjd70', 'it', 1, 'https://ror.org/04e0gjd70 Istituto Tecnico Industriale Alessandro Volta'),
(67081, 'https://ror.org/00sbgyf60', 'fr', 1, 'https://ror.org/00sbgyf60 Laboratoire de Recherche Scientifique'),
(67082, 'https://ror.org/04y03rz94', 'no_lang_code', 1, 'https://ror.org/04y03rz94 Muquans (France)'),
(67083, 'https://ror.org/01jttce46', 'en', 1, 'https://ror.org/01jttce46 Federal State Budget Scientific Institution Institute of Applied Mathematics and Automation Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ Š˜ŠšŠ›ŠŠ”ŠŠžŠ™ ŠœŠŠ¢Š•ŠœŠŠ¢Š˜ŠšŠ˜ И ŠŠ’Š¢ŠžŠœŠŠ¢Š˜Š—ŠŠ¦Š˜Š˜'),
(67084, 'https://ror.org/03wvwbe92', 'en', 1, 'https://ror.org/03wvwbe92 Nanjing Foreign Language School å—äŗ¬å¤–å›½čÆ­å­¦ę ”'),
(67085, 'https://ror.org/04tr7gf78', 'no_lang_code', 1, 'https://ror.org/04tr7gf78 Nanoacademic Technologies'),
(67086, 'https://ror.org/007s2zd20', 'no_lang_code', 1, 'https://ror.org/007s2zd20 Nanosc (Sweden)'),
(67087, 'https://ror.org/02xs8bd02', 'no_lang_code', 1, 'https://ror.org/02xs8bd02 Bergoz Instrumentation (France)'),
(67088, 'https://ror.org/00mm8xk76', 'it', 1, 'https://ror.org/00mm8xk76 Istituto di Istruzione Secondaria Superiore "V. Lilla" Francavilla Fontana - Oria'),
(67089, 'https://ror.org/00vf0sw72', 'no_lang_code', 1, 'https://ror.org/00vf0sw72 B M Birla Science Centre'),
(67090, 'https://ror.org/01bye2s58', 'en', 1, 'https://ror.org/01bye2s58 Breakthrough Science Society'),
(67091, 'https://ror.org/02zp3yd51', 'en', 1, 'https://ror.org/02zp3yd51 ARC Centre of Excellence for Gravitational Wave Discovery'),
(67092, 'https://ror.org/033hdxa37', 'en', 1, 'https://ror.org/033hdxa37 Brockhouse Institute for Materials Research'),
(67093, 'https://ror.org/056gaxr94', 'no_lang_code', 1, 'https://ror.org/056gaxr94 Cameca (United States)'),
(67094, 'https://ror.org/02zcam055', 'en', 1, 'https://ror.org/02zcam055 Canfranc Underground Laboratory Laboratorio SubterrƔneo de Canfranc'),
(67095, 'https://ror.org/03px6cm72', 'no_lang_code', 1, 'https://ror.org/03px6cm72 NBL Technovator Group (Japan)'),
(67096, 'https://ror.org/03t35rn28', 'en', 1, 'https://ror.org/03t35rn28 National Engineering and Scientific Commission'),
(67097, 'https://ror.org/05s58ph78', 'no_lang_code', 1, 'https://ror.org/05s58ph78 Niki (Greece)'),
(67098, 'https://ror.org/02694zd26', 'es', 1, 'https://ror.org/02694zd26 Centro de Recursos Educativos Avanzados'),
(67099, 'https://ror.org/05d6cw921', 'no_lang_code', 1, 'https://ror.org/05d6cw921 Nomura Plating (Japan)'),
(67100, 'https://ror.org/01dtas649', 'no_lang_code', 1, 'https://ror.org/01dtas649 Norstel (Sweden)'),
(67101, 'https://ror.org/019w0b107', 'no_lang_code', 1, 'https://ror.org/019w0b107 Choshu Industry (Japan) é•·å·žē”£ę„­'),
(67102, 'https://ror.org/059ydbh22', 'no_lang_code', 1, 'https://ror.org/059ydbh22 Oxipit (Lithuania)'),
(67103, 'https://ror.org/03schyf67', 'no_lang_code', 1, 'https://ror.org/03schyf67 CLEARink (United States)'),
(67104, 'https://ror.org/04rx5bj15', 'en', 1, 'https://ror.org/04rx5bj15 Istraživačka stanica Petnica Petnica Science Center'),
(67105, 'https://ror.org/021p0r140', 'no_lang_code', 1, 'https://ror.org/021p0r140 CLEARink (Canada)'),
(67106, 'https://ror.org/0428j9521', 'en', 1, 'https://ror.org/0428j9521 Fizika-Texnika Instituti Physicotechnical Institute'),
(67107, 'https://ror.org/04ee5c022', 'no_lang_code', 1, 'https://ror.org/04ee5c022 Cognitec (Germany)'),
(67108, 'https://ror.org/031ncfw92', 'no_lang_code', 1, 'https://ror.org/031ncfw92 PNDetector (Germany)'),
(67109, 'https://ror.org/04badap48', 'en', 1, 'https://ror.org/04badap48 Military Institute of Telecommunications and Informatization ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ зв''ŃŠ·ŠŗŃƒ'),
(67110, 'https://ror.org/01w3yjx71', 'en', 1, 'https://ror.org/01w3yjx71 Rome International Center for Materials Science'),
(67111, 'https://ror.org/0173tje75', 'no_lang_code', 1, 'https://ror.org/0173tje75 Compass Manufacturing Services (United States)'),
(67112, 'https://ror.org/01006t419', 'no_lang_code', 1, 'https://ror.org/01006t419 Corrected Electron Optical Systems (Germany)'),
(67113, 'https://ror.org/00r80fz20', 'en', 1, 'https://ror.org/00r80fz20 Quantum Gravity Research'),
(67114, 'https://ror.org/045xz7k18', 'no_lang_code', 1, 'https://ror.org/045xz7k18 Quazar Technologies (India)'),
(67115, 'https://ror.org/04wf30j82', 'en', 1, 'https://ror.org/04wf30j82 QuTech'),
(67116, 'https://ror.org/003mg4e46', 'no_lang_code', 1, 'https://ror.org/003mg4e46 Radosys (Hungary)'),
(67117, 'https://ror.org/051twfb64', 'no_lang_code', 1, 'https://ror.org/051twfb64 Reece Innovation (United Kingdom)'),
(67118, 'https://ror.org/05t4k0m36', 'no_lang_code', 1, 'https://ror.org/05t4k0m36 SHL Group (Taiwan)'),
(67119, 'https://ror.org/02cgy3m12', 'en', 1, 'https://ror.org/02cgy3m12 CSIRO Scientific Computing'),
(67120, '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ů'),
(67121, 'https://ror.org/01hcawk58', 'en', 1, 'https://ror.org/01hcawk58 Seoyeong University'),
(67122, 'https://ror.org/02bymqz65', 'no_lang_code', 1, 'https://ror.org/02bymqz65 Dassault SystĆØmes (Japan)'),
(67123, 'https://ror.org/01zvnqb17', 'no_lang_code', 1, 'https://ror.org/01zvnqb17 Organic Electronics Saxony (Germany)'),
(67124, 'https://ror.org/00az65y50', 'en', 1, 'https://ror.org/00az65y50 Research Organization for Information Science and Technology é«˜åŗ¦ęƒ…å ±ē§‘å­¦ęŠ€č”“ē ”ē©¶ę©Ÿę§‹'),
(67125, 'https://ror.org/03x0jax93', 'no_lang_code', 1, 'https://ror.org/03x0jax93 SpaceX (United States)'),
(67126, 'https://ror.org/01844pt54', 'en', 1, 'https://ror.org/01844pt54 Shantou Broadcasting and Television University 汕夓广播电视大学'),
(67127, 'https://ror.org/0151zbe59', 'no_lang_code', 1, 'https://ror.org/0151zbe59 Q2 Solutions (United States)'),
(67128, 'https://ror.org/03fxa2376', 'en', 1, 'https://ror.org/03fxa2376 Shenzhen Baoan High School Group ę·±åœ³åø‚å®å®‰äø­å­¦'),
(67129, 'https://ror.org/03b6wpc57', 'no_lang_code', 1, 'https://ror.org/03b6wpc57 Tech-X (United Kingdom)'),
(67130, 'https://ror.org/04m8nb974', 'no_lang_code', 1, 'https://ror.org/04m8nb974 SPring-8 (Japan) ć‚¹ćƒ—ćƒŖćƒ³ć‚°ć‚Øć‚¤ćƒˆć‚µćƒ¼ćƒ“ć‚¹'),
(67131, 'https://ror.org/0431q3e43', 'en', 1, 'https://ror.org/0431q3e43 Ensenada Institute of Technology Instituto Tecnológico de Ensenada'),
(67132, 'https://ror.org/03ast5668', 'no_lang_code', 1, 'https://ror.org/03ast5668 TetraScience (United States)'),
(67133, 'https://ror.org/00pvp5q54', 'en', 1, 'https://ror.org/00pvp5q54 State Cryptography Administration 国家密码箔理局'),
(67134, 'https://ror.org/01v49q824', 'en', 1, 'https://ror.org/01v49q824 Tianjin Internal Combustion Engine Research Institute å¤©ę“„å†…ē‡ƒęœŗē ”ē©¶ę‰€'),
(67135, 'https://ror.org/02k1g2k85', 'no_lang_code', 1, 'https://ror.org/02k1g2k85 Sunwave Solutions (China)'),
(67136, 'https://ror.org/03g5wrk88', 'no_lang_code', 1, 'https://ror.org/03g5wrk88 Simerics (United States)'),
(67137, 'https://ror.org/04wasyv34', 'no_lang_code', 1, 'https://ror.org/04wasyv34 Jingpin Materials (China) č‹å·žę™¶å“ę–°ęę–™č‚”ä»½ęœ‰é™å…¬åø'),
(67138, 'https://ror.org/002pnw495', 'en', 1, 'https://ror.org/002pnw495 Singapore-HUJ Alliance for Research and Enterprise'),
(67139, 'https://ror.org/04nhd8d77', 'no_lang_code', 1, 'https://ror.org/04nhd8d77 SwissLitho (Switzerland)'),
(67140, 'https://ror.org/05n1eva55', 'no_lang_code', 1, 'https://ror.org/05n1eva55 SwissScientific Technologies (Switzerland)'),
(67141, 'https://ror.org/00n9dn158', 'fr', 1, 'https://ror.org/00n9dn158 Institut Franco-Chinois de l''Energie NuclĆ©aire äø­ę³•ę øå·„ēØ‹äøŽęŠ€ęœÆå­¦é™¢'),
(67142, 'https://ror.org/04gjcva23', 'no_lang_code', 1, 'https://ror.org/04gjcva23 Two Sigma Investments (United States)'),
(67143, 'https://ror.org/01esz2741', 'no_lang_code', 1, 'https://ror.org/01esz2741 UIT Solutions (South Korea) ģœ ģ•„ģ“ķ‹°'),
(67144, 'https://ror.org/055qvdj66', 'no_lang_code', 1, 'https://ror.org/055qvdj66 MegaChips (United States)'),
(67145, 'https://ror.org/05dhnhb13', 'no_lang_code', 1, 'https://ror.org/05dhnhb13 Naftogaz (Ukraine) ŠŠ°Ń„Ń‚Š¾Š³Š°Š· України'),
(67146, 'https://ror.org/020wewy68', 'no_lang_code', 1, 'https://ror.org/020wewy68 Wind Power Engineering (Japan)'),
(67147, 'https://ror.org/010tw2j24', 'en', 1, 'https://ror.org/010tw2j24 Winnipeg Institute for Theoretical Physics'),
(67148, 'https://ror.org/03vt7za95', 'en', 1, 'https://ror.org/03vt7za95 Xi''an High Tech University č„æå®‰é«˜ę–°ē§‘ęŠ€čŒäøšå­¦é™¢'),
(67149, 'https://ror.org/02jfkxh18', 'en', 1, 'https://ror.org/02jfkxh18 Vietnam National University of Forestry'),
(67150, 'https://ror.org/0330j9a35', 'en', 1, 'https://ror.org/0330j9a35 University of Science and Technology, Meghalaya ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤®ą„‡ą¤˜ą¤¾ą¤²ą¤Æ'),
(67151, 'https://ror.org/03b6bz334', 'no_lang_code', 1, 'https://ror.org/03b6bz334 Voltaiq (United States)'),
(67152, 'https://ror.org/032dvkh62', 'en', 1, 'https://ror.org/032dvkh62 Thanhtay University TrĘ°į»ng ĐẔi hį»c ThĆ nh TĆ¢y'),
(67153, 'https://ror.org/054fvwy19', 'en', 1, 'https://ror.org/054fvwy19 Ironbridge Gorge Museum Trust'),
(67154, 'https://ror.org/047m1md22', 'no_lang_code', 1, 'https://ror.org/047m1md22 KUKA (United Kingdom)'),
(67155, 'https://ror.org/00k8z3892', 'en', 1, 'https://ror.org/00k8z3892 Leicestershire Fire and Rescue Service'),
(67156, 'https://ror.org/044kzfd07', 'en', 1, 'https://ror.org/044kzfd07 Leicestershire Police'),
(67157, 'https://ror.org/03cph9p23', 'en', 1, 'https://ror.org/03cph9p23 Leonard Cheshire'),
(67158, 'https://ror.org/0128g3b12', 'en', 1, 'https://ror.org/0128g3b12 LGBT Youth Scotland'),
(67159, 'https://ror.org/01368p749', 'en', 1, 'https://ror.org/01368p749 Lincolnshire County Council'),
(67160, 'https://ror.org/00za55k91', 'no_lang_code', 1, 'https://ror.org/00za55k91 Roper Technologies (United Kingdom)'),
(67161, 'https://ror.org/00xa7zj26', 'en', 1, 'https://ror.org/00xa7zj26 Lambeth Council'),
(67162, 'https://ror.org/00krgnp64', 'en', 1, 'https://ror.org/00krgnp64 London Sinfonietta'),
(67163, 'https://ror.org/00j82ww20', 'en', 1, 'https://ror.org/00j82ww20 Low Gillerthwaite Field Centre'),
(67164, 'https://ror.org/00rn98z33', 'no_lang_code', 1, 'https://ror.org/00rn98z33 Suntory (United Kingdom)'),
(67165, 'https://ror.org/02nstsj42', 'en', 1, 'https://ror.org/02nstsj42 BayMark Health Services'),
(67166, 'https://ror.org/02jqq3312', 'en', 1, 'https://ror.org/02jqq3312 Maidstone Museum'),
(67167, 'https://ror.org/038jgf307', 'en', 1, 'https://ror.org/038jgf307 National Army Museum'),
(67168, 'https://ror.org/01g3gak55', 'en', 1, 'https://ror.org/01g3gak55 The National Autistic Society'),
(67169, 'https://ror.org/048vp3g58', 'en', 1, 'https://ror.org/048vp3g58 Gardd Fotaneg Genedlaethol Cymru National Botanic Garden of Wales'),
(67170, 'https://ror.org/04kpt5t78', 'en', 1, 'https://ror.org/04kpt5t78 Manufacturing Technologies Association'),
(67171, 'https://ror.org/00gc37a46', 'no_lang_code', 1, 'https://ror.org/00gc37a46 Mowi (United Kingdom)'),
(67172, 'https://ror.org/01hz1eb30', 'en', 1, 'https://ror.org/01hz1eb30 Lloyd''s'),
(67173, 'https://ror.org/02bm86575', 'en', 1, 'https://ror.org/02bm86575 Mason Perkins Deafness Fund Onlus'),
(67174, 'https://ror.org/00dah2077', 'en', 1, 'https://ror.org/00dah2077 Consejo Nacional de Areas Protegidas National Council for Protected Areas'),
(67175, 'https://ror.org/03qyybc26', 'no_lang_code', 1, 'https://ror.org/03qyybc26 Kyocera (United Kingdom)'),
(67176, 'https://ror.org/02z50b706', 'en', 1, 'https://ror.org/02z50b706 Mauritian Wildlife Foundation'),
(67177, 'https://ror.org/05kmqx952', 'no_lang_code', 1, 'https://ror.org/05kmqx952 Mettler-Toledo (United Kingdom)'),
(67178, 'https://ror.org/02spn6s93', 'en', 1, 'https://ror.org/02spn6s93 National Energy Action'),
(67179, 'https://ror.org/02xf6ts56', 'en', 1, 'https://ror.org/02xf6ts56 National Flood Forum'),
(67180, 'https://ror.org/02vrtbq45', 'en', 1, 'https://ror.org/02vrtbq45 Gailearaidhean NĆ iseanta na h-Alba National Galleries of Scotland'),
(67181, 'https://ror.org/00a2pr463', 'en', 1, 'https://ror.org/00a2pr463 National Agricultural Genotyping Center'),
(67182, 'https://ror.org/01myp4b02', 'en', 1, 'https://ror.org/01myp4b02 Migrants Rights Network'),
(67183, 'https://ror.org/02wp5bm32', 'en', 1, 'https://ror.org/02wp5bm32 The National Holocaust Centre & Museum'),
(67184, 'https://ror.org/05shw9n80', 'en', 1, 'https://ror.org/05shw9n80 Mitchell Arts Centre'),
(67185, 'https://ror.org/05sdqca31', 'en', 1, 'https://ror.org/05sdqca31 NHS Employers'),
(67186, 'https://ror.org/040a3tj51', 'en', 1, 'https://ror.org/040a3tj51 Norfolk Museums Service'),
(67187, 'https://ror.org/01pbz1b98', 'en', 1, 'https://ror.org/01pbz1b98 Norfolk Record Office'),
(67188, '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'),
(67189, 'https://ror.org/00em2ph88', 'no_lang_code', 1, 'https://ror.org/00em2ph88 Catalent (United Kingdom)'),
(67190, 'https://ror.org/03356tk08', 'en', 1, 'https://ror.org/03356tk08 Newfoundland and Labrador Centre for Applied Health Research'),
(67191, 'https://ror.org/03ezkck64', 'en', 1, 'https://ror.org/03ezkck64 Chartered Management Institute'),
(67192, 'https://ror.org/029g0ec14', 'en', 1, 'https://ror.org/029g0ec14 Cyngor Sir Fynwy Monmouthshire County Council'),
(67193, 'https://ror.org/02vpqn405', 'en', 1, 'https://ror.org/02vpqn405 North Lanarkshire Council'),
(67194, 'https://ror.org/03j2yjz09', 'en', 1, 'https://ror.org/03j2yjz09 North Norfolk Clinical Commissioning Group'),
(67195, 'https://ror.org/01dkvcs48', 'en', 1, 'https://ror.org/01dkvcs48 North Somerset Council'),
(67196, 'https://ror.org/009bgdw98', 'en', 1, 'https://ror.org/009bgdw98 North Yorkshire County Council'),
(67197, 'https://ror.org/051r7gk37', 'en', 1, 'https://ror.org/051r7gk37 Northern Ireland Housing Executive'),
(67198, 'https://ror.org/04dx63c61', 'en', 1, 'https://ror.org/04dx63c61 Nottingham Contemporary'),
(67199, 'https://ror.org/00h0z3d69', 'en', 1, 'https://ror.org/00h0z3d69 Exeter Northcott Theatre'),
(67200, 'https://ror.org/03b8sbf49', 'en', 1, 'https://ror.org/03b8sbf49 Industrie, Tourisme et Investissement Industry, Tourism and Investment'),
(67201, 'https://ror.org/04snxr303', 'pt', 1, 'https://ror.org/04snxr303 Museu da Lourinhã'),
(67202, 'https://ror.org/01wn6mq04', 'en', 1, 'https://ror.org/01wn6mq04 Museum of London'),
(67203, 'https://ror.org/054j3ks98', 'no_lang_code', 1, 'https://ror.org/054j3ks98 Nuvia (United Kingdom)'),
(67204, 'https://ror.org/04n11wj95', 'en', 1, 'https://ror.org/04n11wj95 National Portrait Gallery'),
(67205, 'https://ror.org/058m30p27', 'en', 1, 'https://ror.org/058m30p27 National Society for Earthquake Technology'),
(67206, 'https://ror.org/05cxzzq07', 'en', 1, 'https://ror.org/05cxzzq07 Oldham Council'),
(67207, 'https://ror.org/04dsh5k81', 'en', 1, 'https://ror.org/04dsh5k81 Orchestra of the Age of Enlightenment'),
(67208, 'https://ror.org/03wqmmj05', 'no_lang_code', 1, 'https://ror.org/03wqmmj05 Furukawa Electric (Denmark)'),
(67209, 'https://ror.org/026fx4095', 'en', 1, 'https://ror.org/026fx4095 National Theatre Wales'),
(67210, 'https://ror.org/018112f03', 'en', 1, 'https://ror.org/018112f03 Parenting Across Scotland'),
(67211, 'https://ror.org/03hhqgr50', 'en', 1, 'https://ror.org/03hhqgr50 Peace Through Folk'),
(67212, 'https://ror.org/02b8fww89', 'en', 1, 'https://ror.org/02b8fww89 Pen International'),
(67213, 'https://ror.org/00xg4w305', 'en', 1, 'https://ror.org/00xg4w305 Outcomes Based Healthcare'),
(67214, 'https://ror.org/0042dc077', 'en', 1, 'https://ror.org/0042dc077 Peterborough City Council'),
(67215, 'https://ror.org/02spn2261', 'no_lang_code', 1, 'https://ror.org/02spn2261 Netzsch (United Kingdom)'),
(67216, 'https://ror.org/05g9paz74', 'en', 1, 'https://ror.org/05g9paz74 Oxford Spires Academy'),
(67217, 'https://ror.org/04wx50v02', 'en', 1, 'https://ror.org/04wx50v02 Newark Air Museum'),
(67218, 'https://ror.org/027qvm849', 'en', 1, 'https://ror.org/027qvm849 Future Earth'),
(67219, 'https://ror.org/02svwte58', 'en', 1, 'https://ror.org/02svwte58 Places for People'),
(67220, 'https://ror.org/00sch3b34', 'en', 1, 'https://ror.org/00sch3b34 Plymouth City Council'),
(67221, 'https://ror.org/05ecntp89', 'en', 1, 'https://ror.org/05ecntp89 Department for Communities'),
(67222, 'https://ror.org/043k8f492', 'et', 1, 'https://ror.org/043k8f492 PƵlva Haigla'),
(67223, 'https://ror.org/01amnkg95', 'en', 1, 'https://ror.org/01amnkg95 Refugee Action'),
(67224, 'https://ror.org/01k6zmz35', 'en', 1, 'https://ror.org/01k6zmz35 Refugee Council'),
(67225, 'https://ror.org/0404j2625', 'en', 1, 'https://ror.org/0404j2625 Poplar Housing and Regeneration Community Association'),
(67226, 'https://ror.org/01mwk7t47', 'en', 1, 'https://ror.org/01mwk7t47 Quality of Life Partnership'),
(67227, 'https://ror.org/03chj8432', 'en', 1, 'https://ror.org/03chj8432 Regen'),
(67228, 'https://ror.org/05ts5ga89', 'no_lang_code', 1, 'https://ror.org/05ts5ga89 Anton Paar (United States)'),
(67229, 'https://ror.org/0045cz905', 'en', 1, 'https://ror.org/0045cz905 Portobello High School'),
(67230, 'https://ror.org/01zpqtc05', 'en', 1, 'https://ror.org/01zpqtc05 Portsmouth City Council'),
(67231, 'https://ror.org/022z7sg09', 'en', 1, 'https://ror.org/022z7sg09 The Potteries Museum and Art Gallery'),
(67232, 'https://ror.org/02mwnrf70', 'en', 1, 'https://ror.org/02mwnrf70 Race Equality Foundation'),
(67233, 'https://ror.org/008hq2e16', 'no_lang_code', 1, 'https://ror.org/008hq2e16 Andritz (United Kingdom)'),
(67234, 'https://ror.org/05czbgw27', 'en', 1, 'https://ror.org/05czbgw27 Renewable Energy and Energy Efficiency Partnership'),
(67235, 'https://ror.org/01m5n8597', 'no_lang_code', 1, 'https://ror.org/01m5n8597 ReproCELL (United Kingdom)'),
(67236, 'https://ror.org/016tee698', 'en', 1, 'https://ror.org/016tee698 Resolution Fundation'),
(67237, 'https://ror.org/02dv7rd88', 'no_lang_code', 1, 'https://ror.org/02dv7rd88 Primetals Technologies (United Kingdom)'),
(67238, 'https://ror.org/04wn4nw41', 'en', 1, 'https://ror.org/04wn4nw41 Respect'),
(67239, 'https://ror.org/02wbkeq74', 'en', 1, 'https://ror.org/02wbkeq74 Restoke'),
(67240, 'https://ror.org/01qte9y06', 'no_lang_code', 1, 'https://ror.org/01qte9y06 Proboscis'),
(67241, 'https://ror.org/04efb7z73', 'en', 1, 'https://ror.org/04efb7z73 Rethink Mental Illness'),
(67242, 'https://ror.org/008w6ry40', 'no_lang_code', 1, 'https://ror.org/008w6ry40 Rigaku (United States)'),
(67243, 'https://ror.org/01qqvwg30', 'en', 1, 'https://ror.org/01qqvwg30 Sampad'),
(67244, 'https://ror.org/03yhvb593', 'en', 1, 'https://ror.org/03yhvb593 Royal African Society'),
(67245, 'https://ror.org/02zyhyh46', 'no_lang_code', 1, 'https://ror.org/02zyhyh46 Scottish Canals (United Kingdom)'),
(67246, 'https://ror.org/04aez6g96', 'en', 1, 'https://ror.org/04aez6g96 Scottish Community Development Centre'),
(67247, 'https://ror.org/00xrtc164', 'en', 1, 'https://ror.org/00xrtc164 Shetland Arts'),
(67248, 'https://ror.org/01gw2fq77', 'en', 1, 'https://ror.org/01gw2fq77 Shetland Museum and Archives'),
(67249, 'https://ror.org/02sgg7t92', 'en', 1, 'https://ror.org/02sgg7t92 Scottish Hydrogen and Fuel Cell Association'),
(67250, 'https://ror.org/05fhfab69', 'en', 1, 'https://ror.org/05fhfab69 PĆ rlamaid na h-Alba Scottish Parliament'),
(67251, 'https://ror.org/02tjpr954', 'en', 1, 'https://ror.org/02tjpr954 Scottish Poetry Library'),
(67252, 'https://ror.org/031zahk15', 'en', 1, 'https://ror.org/031zahk15 Royal National Theatre'),
(67253, 'https://ror.org/010rh0d62', 'en', 1, 'https://ror.org/010rh0d62 Scottish Refugee Council'),
(67254, 'https://ror.org/00y2cjt87', 'en', 1, 'https://ror.org/00y2cjt87 Royal Opera House'),
(67255, 'https://ror.org/03h41b845', 'no_lang_code', 1, 'https://ror.org/03h41b845 Royal Shakespeare Company (United Kingdom)'),
(67256, 'https://ror.org/047zp5633', 'en', 1, 'https://ror.org/047zp5633 Royal Society for Public Health'),
(67257, 'https://ror.org/00j1hxb77', 'en', 1, 'https://ror.org/00j1hxb77 Scottish Wildlife Trust'),
(67258, 'https://ror.org/03fxxfx37', 'en', 1, 'https://ror.org/03fxxfx37 Social Market Foundation'),
(67259, 'https://ror.org/03vebqe40', 'en', 1, 'https://ror.org/03vebqe40 Software Carpentry'),
(67260, 'https://ror.org/02cg7h320', 'en', 1, 'https://ror.org/02cg7h320 Salford Museum and Art Gallery'),
(67261, 'https://ror.org/01nb27779', 'no_lang_code', 1, 'https://ror.org/01nb27779 Capgemini (United Kingdom)'),
(67262, 'https://ror.org/04nzac004', 'no_lang_code', 1, 'https://ror.org/04nzac004 CRRC (United Kingdom)'),
(67263, 'https://ror.org/049fst917', 'en', 1, 'https://ror.org/049fst917 St Paul''s Cathedral'),
(67264, 'https://ror.org/05r33p655', 'en', 1, 'https://ror.org/05r33p655 Solas Festival'),
(67265, 'https://ror.org/04gyqbv83', 'en', 1, 'https://ror.org/04gyqbv83 Staffordshire County Council'),
(67266, 'https://ror.org/015jwe732', 'en', 1, 'https://ror.org/015jwe732 South Belfast Partnership Board'),
(67267, 'https://ror.org/044x9zq23', 'en', 1, 'https://ror.org/044x9zq23 The Community Trust'),
(67268, 'https://ror.org/05t952114', 'en', 1, 'https://ror.org/05t952114 Sensory Support Service'),
(67269, 'https://ror.org/0246dm313', 'en', 1, 'https://ror.org/0246dm313 South Downs National Park Authority'),
(67270, 'https://ror.org/04gs0zr76', 'en', 1, 'https://ror.org/04gs0zr76 South Lanarkshire Council'),
(67271, 'https://ror.org/022d92k39', 'en', 1, 'https://ror.org/022d92k39 SETsquared Partnership'),
(67272, 'https://ror.org/02m7qex15', 'en', 1, 'https://ror.org/02m7qex15 South West Yorkshire Partnership NHS Foundation Trust'),
(67273, 'https://ror.org/0305p8k71', 'en', 1, 'https://ror.org/0305p8k71 East Suffolk Council'),
(67274, 'https://ror.org/01cntn905', 'no_lang_code', 1, 'https://ror.org/01cntn905 BorgWarner (United Kingdom)'),
(67275, 'https://ror.org/025tf0837', 'en', 1, 'https://ror.org/025tf0837 South Yorkshire Fire and Rescue'),
(67276, 'https://ror.org/04e6ef560', 'en', 1, 'https://ror.org/04e6ef560 Southbank Centre'),
(67277, 'https://ror.org/037s2cq86', 'en', 1, 'https://ror.org/037s2cq86 British Chambers of Commerce'),
(67278, 'https://ror.org/01jjrv674', 'en', 1, 'https://ror.org/01jjrv674 Shakespeare Birthplace Trust'),
(67279, 'https://ror.org/05431pf33', 'en', 1, 'https://ror.org/05431pf33 Shakespeare Globe Trust'),
(67280, 'https://ror.org/01d20y590', 'de', 1, 'https://ror.org/01d20y590 Spiekermann and Wegener'),
(67281, 'https://ror.org/05gvbr510', 'en', 1, 'https://ror.org/05gvbr510 Staffordshire Film Archive'),
(67282, 'https://ror.org/01rxfp867', 'no_lang_code', 1, 'https://ror.org/01rxfp867 Spirit AeroSystems (United Kingdom)'),
(67283, 'https://ror.org/02d8xcv03', 'en', 1, 'https://ror.org/02d8xcv03 Chwaraeon Cymru Sport Wales'),
(67284, 'https://ror.org/03wt59215', 'en', 1, 'https://ror.org/03wt59215 Torbay Council'),
(67285, 'https://ror.org/0097v3890', 'fr', 1, 'https://ror.org/0097v3890 Bibliothèque d''étude et du patrimoine Bibliothèque de Toulouse'),
(67286, 'https://ror.org/00dw3s236', 'en', 1, 'https://ror.org/00dw3s236 Tearfund'),
(67287, 'https://ror.org/046pa0m07', 'en', 1, 'https://ror.org/046pa0m07 The National Lobster Hatchery'),
(67288, 'https://ror.org/03h1s0z86', 'en', 1, 'https://ror.org/03h1s0z86 Transparency International'),
(67289, 'https://ror.org/016gn8k28', 'en', 1, 'https://ror.org/016gn8k28 The Reader'),
(67290, 'https://ror.org/05nv0w557', 'en', 1, 'https://ror.org/05nv0w557 Terrence Higgins Trust'),
(67291, 'https://ror.org/03gjvye03', 'en', 1, 'https://ror.org/03gjvye03 Our Lady of Maryknoll Hospital č–ęÆé†«é™¢'),
(67292, 'https://ror.org/01phdew02', 'en', 1, 'https://ror.org/01phdew02 National Central Library åœ‹å®¶åœ–ę›øé¤Ø'),
(67293, 'https://ror.org/02k0mqf95', 'en', 1, 'https://ror.org/02k0mqf95 Campaign to End Loneliness'),
(67294, 'https://ror.org/04qtg7w92', 'en', 1, 'https://ror.org/04qtg7w92 Theatre Royal and Royal Concert Hall'),
(67295, 'https://ror.org/00mz2b614', 'en', 1, 'https://ror.org/00mz2b614 The Culture Capital Exchange'),
(67296, 'https://ror.org/01ka1xt91', 'en', 1, 'https://ror.org/01ka1xt91 York Theatre Royal'),
(67297, 'https://ror.org/051fwvb64', 'en', 1, 'https://ror.org/051fwvb64 Thackray Medical Museum'),
(67298, 'https://ror.org/00be4s518', 'en', 1, 'https://ror.org/00be4s518 Theodore Roosevelt Association'),
(67299, 'https://ror.org/04d0dqe91', 'en', 1, 'https://ror.org/04d0dqe91 Tunbridge Wells Museum & Art Gallery'),
(67300, 'https://ror.org/03fjysk97', 'en', 1, 'https://ror.org/03fjysk97 V&A Museum of Childhood');
INSERT INTO `rors` VALUES
(67301, 'https://ror.org/04vgzny65', 'no_lang_code', 1, 'https://ror.org/04vgzny65 Vestas (United Kingdom)'),
(67302, 'https://ror.org/04zyefw11', 'en', 1, 'https://ror.org/04zyefw11 Kern Community College District'),
(67303, 'https://ror.org/00c4rqe71', 'en', 1, 'https://ror.org/00c4rqe71 Watermans'),
(67304, 'https://ror.org/05kd5pz92', 'en', 1, 'https://ror.org/05kd5pz92 Wales & West Housing'),
(67305, 'https://ror.org/04zhncz06', 'en', 1, 'https://ror.org/04zhncz06 Weight Concern'),
(67306, 'https://ror.org/05a8q5k94', 'en', 1, 'https://ror.org/05a8q5k94 Water Industry Forum'),
(67307, 'https://ror.org/01vr3s065', 'en', 1, 'https://ror.org/01vr3s065 West Dunbartonshire Council'),
(67308, 'https://ror.org/01fddvx19', 'en', 1, 'https://ror.org/01fddvx19 West Lothian Council'),
(67309, 'https://ror.org/01m081680', 'en', 1, 'https://ror.org/01m081680 Thomas Pocklington Trust'),
(67310, 'https://ror.org/02ptdcx04', 'en', 1, 'https://ror.org/02ptdcx04 West Midlands Police'),
(67311, 'https://ror.org/040j2ng64', 'en', 1, 'https://ror.org/040j2ng64 Thomson Reuters Foundation'),
(67312, 'https://ror.org/00chs5h02', 'en', 1, 'https://ror.org/00chs5h02 Whitechapel Gallery'),
(67313, 'https://ror.org/04nsmsp44', 'en', 1, 'https://ror.org/04nsmsp44 Tinderbox Theatre'),
(67314, 'https://ror.org/00cdbmd44', 'en', 1, 'https://ror.org/00cdbmd44 Wired Sussex'),
(67315, 'https://ror.org/02vx6cf88', 'en', 1, 'https://ror.org/02vx6cf88 What Works Network'),
(67316, 'https://ror.org/05xg77x32', 'en', 1, 'https://ror.org/05xg77x32 Tyneside Cinema'),
(67317, 'https://ror.org/034b8wj92', 'en', 1, 'https://ror.org/034b8wj92 Yorkshire Dales Rivers Trust'),
(67318, 'https://ror.org/03x9t5820', 'en', 1, 'https://ror.org/03x9t5820 Working Families'),
(67319, 'https://ror.org/01mtztp63', 'en', 1, 'https://ror.org/01mtztp63 YoungMinds'),
(67320, 'https://ror.org/03m2a9c60', 'en', 1, 'https://ror.org/03m2a9c60 UK Health Forum'),
(67321, 'https://ror.org/016wmhd89', 'en', 1, 'https://ror.org/016wmhd89 WORLDwrite'),
(67322, 'https://ror.org/003c8wq34', 'en', 1, 'https://ror.org/003c8wq34 UK Music'),
(67323, 'https://ror.org/010ktw632', 'en', 1, 'https://ror.org/010ktw632 National Centre for Writing'),
(67324, 'https://ror.org/00pahkj72', 'no_lang_code', 1, 'https://ror.org/00pahkj72 Xilinx (Ireland)'),
(67325, 'https://ror.org/05xnmjv56', 'en', 1, 'https://ror.org/05xnmjv56 York Museums Trust'),
(67326, 'https://ror.org/018t0g992', 'en', 1, 'https://ror.org/018t0g992 York, North Yorkshire and East Riding Enterprise Partnership'),
(67327, 'https://ror.org/04j1vxv82', 'en', 1, 'https://ror.org/04j1vxv82 Yorkshire Agricultural Society'),
(67328, 'https://ror.org/03m659k95', 'en', 1, 'https://ror.org/03m659k95 Alfred Williams Heritage Society'),
(67329, 'https://ror.org/04b8c7j14', 'en', 1, 'https://ror.org/04b8c7j14 Association for Real Change'),
(67330, 'https://ror.org/04bw58q80', 'en', 1, 'https://ror.org/04bw58q80 32° East Ugandan Arts Trust'),
(67331, 'https://ror.org/03w8qvw44', 'no_lang_code', 1, 'https://ror.org/03w8qvw44 4D (United Kingdom)'),
(67332, 'https://ror.org/05k3f0d98', 'no_lang_code', 1, 'https://ror.org/05k3f0d98 All India Kisan Sabha अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ किसान सभा'),
(67333, 'https://ror.org/03nfq0y30', 'en', 1, 'https://ror.org/03nfq0y30 Association for Robots in Architecture'),
(67334, 'https://ror.org/0256tf124', 'en', 1, 'https://ror.org/0256tf124 Association for the Prevention of Torture'),
(67335, 'https://ror.org/05xn1q504', 'en', 1, 'https://ror.org/05xn1q504 All Ireland Institute for Hospice and Palliative Care'),
(67336, 'https://ror.org/04nrddh60', 'no_lang_code', 1, 'https://ror.org/04nrddh60 A Luck Associates (United Kingdom)'),
(67337, 'https://ror.org/04y159c60', 'en', 1, 'https://ror.org/04y159c60 Association for Young People’s Health'),
(67338, 'https://ror.org/02bf21z15', 'no_lang_code', 1, 'https://ror.org/02bf21z15 All Street Research (United Kingdom)'),
(67339, 'https://ror.org/02r6vy896', 'no_lang_code', 1, 'https://ror.org/02r6vy896 Adams Business Associates (United Kingdom)'),
(67340, 'https://ror.org/02ya7hp91', 'en', 1, 'https://ror.org/02ya7hp91 ALZHIR Museum and Memorial Complex Музейно-Š¼ŠµŠ¼Š¾Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ комплекс "ŠŠ›Š–Š˜Š " ŠœŅ±Ń€Š°Š¶Š°Š¹ мен Ā«ŠŠ›Š–Š˜Š Ā» мемориалГы ŠŗŠµŃˆŠµŠ½Ń–Š½Ń–Ņ£'),
(67341, 'https://ror.org/04g0z8x68', 'no_lang_code', 1, 'https://ror.org/04g0z8x68 Abeno Harukas Art Museum ć‚ć¹ć®ćƒćƒ«ć‚«ć‚¹ē¾Žč”“é¤Ø'),
(67342, 'https://ror.org/041d67p66', 'no_lang_code', 1, 'https://ror.org/041d67p66 Amalgamated Sugar (United States)'),
(67343, 'https://ror.org/04bfhdd88', 'en', 1, 'https://ror.org/04bfhdd88 Abergavenny Museum'),
(67344, 'https://ror.org/03pk2ae02', 'en', 1, 'https://ror.org/03pk2ae02 Amani Institute Uganda'),
(67345, 'https://ror.org/037a3hd22', 'en', 1, 'https://ror.org/037a3hd22 Aberlour'),
(67346, 'https://ror.org/02s7vda12', 'en', 1, 'https://ror.org/02s7vda12 Association of Breastfeeding Mothers'),
(67347, 'https://ror.org/03497yd66', 'en', 1, 'https://ror.org/03497yd66 Association of British Insurers'),
(67348, 'https://ror.org/03tfjft98', 'en', 1, 'https://ror.org/03tfjft98 American Bible Society'),
(67349, 'https://ror.org/0146jt667', 'en', 1, 'https://ror.org/0146jt667 Academic Health Science Network North East and North Cumbria'),
(67350, 'https://ror.org/010vm1c33', 'en', 1, 'https://ror.org/010vm1c33 American Institute of Indian Studies ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤Ø ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ इंऔियन ą¤øą„ą¤Ÿą¤”ą„€ą¤œ'),
(67351, 'https://ror.org/02v856y35', 'en', 1, 'https://ror.org/02v856y35 Association of British Orchestras'),
(67352, 'https://ror.org/012zsv435', 'no_lang_code', 1, 'https://ror.org/012zsv435 Academic Rights Press (United Kingdom)'),
(67353, 'https://ror.org/02xct9y17', 'en', 1, 'https://ror.org/02xct9y17 Amical Veterinary Centre'),
(67354, 'https://ror.org/05hdhmf73', 'en', 1, 'https://ror.org/05hdhmf73 Association of British Professional Conference Organisers'),
(67355, 'https://ror.org/01t5hzs18', 'en', 1, 'https://ror.org/01t5hzs18 Association of Chief Executives of Voluntary Organisations'),
(67356, 'https://ror.org/042sg7s37', 'en', 1, 'https://ror.org/042sg7s37 Association of Colleges'),
(67357, 'https://ror.org/053pr7h46', 'en', 1, 'https://ror.org/053pr7h46 Association of Convenience Stores'),
(67358, 'https://ror.org/03amggk32', 'en', 1, 'https://ror.org/03amggk32 Dupuytren Research Group'),
(67359, 'https://ror.org/01m08sy32', 'en', 1, 'https://ror.org/01m08sy32 The Association of Early Pregnancy Units'),
(67360, 'https://ror.org/03p878384', 'en', 1, 'https://ror.org/03p878384 Association of English Cathedrals'),
(67361, 'https://ror.org/055pc3y68', 'en', 1, 'https://ror.org/055pc3y68 Amina'),
(67362, 'https://ror.org/02pbw4p75', 'en', 1, 'https://ror.org/02pbw4p75 Association of Illustrators'),
(67363, 'https://ror.org/028vs0284', 'en', 1, 'https://ror.org/028vs0284 Academy of Ancient Music'),
(67364, 'https://ror.org/05h49ef04', 'en', 1, 'https://ror.org/05h49ef04 Association of Independent Crop Consultants'),
(67365, 'https://ror.org/0102z1w54', 'en', 1, 'https://ror.org/0102z1w54 Association of Industrial Laser Users'),
(67366, 'https://ror.org/00mddz208', 'no_lang_code', 1, 'https://ror.org/00mddz208 And Technology Research (United Kingdom)'),
(67367, 'https://ror.org/01jwwe165', 'en', 1, 'https://ror.org/01jwwe165 Association of London Environmental Health Managers'),
(67368, 'https://ror.org/03hqbt751', 'en', 1, 'https://ror.org/03hqbt751 Angela Ash Associates'),
(67369, 'https://ror.org/004z3ar85', 'no_lang_code', 1, 'https://ror.org/004z3ar85 Active Medicine (United Kingdom)'),
(67370, 'https://ror.org/052n05843', 'no_lang_code', 1, 'https://ror.org/052n05843 Osteotronix (United Kingdom)'),
(67371, 'https://ror.org/0321hn990', 'no_lang_code', 1, 'https://ror.org/0321hn990 Ad-Tech (United States)'),
(67372, 'https://ror.org/03xn5qf90', 'no_lang_code', 1, 'https://ror.org/03xn5qf90 Adelwitz Technologiezentrum (Germany)'),
(67373, 'https://ror.org/05pxqvv40', 'no_lang_code', 1, 'https://ror.org/05pxqvv40 Altmetric (United Kingdom)'),
(67374, 'https://ror.org/054hq6n04', 'no_lang_code', 1, 'https://ror.org/054hq6n04 Advanced Medical Equipment (United Kingdom)'),
(67375, 'https://ror.org/00gzp0b21', 'en', 1, 'https://ror.org/00gzp0b21 Association on Higher Education And Disability'),
(67376, 'https://ror.org/00ek25n05', 'no_lang_code', 1, 'https://ror.org/00ek25n05 Advanced Medical Solutions Group (United Kingdom)'),
(67377, 'https://ror.org/01nt99q97', 'en', 1, 'https://ror.org/01nt99q97 Aston Reinvestment Trust'),
(67378, 'https://ror.org/058g9dj28', 'en', 1, 'https://ror.org/058g9dj28 Advanced Propulsion Centre'),
(67379, 'https://ror.org/00vfdyp26', 'en', 1, 'https://ror.org/00vfdyp26 Finlands Nationalgalleri Finnish National Gallery Suomen Kansallisgalleria'),
(67380, 'https://ror.org/01rys6g13', 'no_lang_code', 1, 'https://ror.org/01rys6g13 Advent Life Sciences (United Kingdom)'),
(67381, 'https://ror.org/02m633z80', 'en', 1, 'https://ror.org/02m633z80 National Education Union'),
(67382, 'https://ror.org/02fkxw270', 'en', 1, 'https://ror.org/02fkxw270 African Centre for Global Health and Social Transformation'),
(67383, 'https://ror.org/05d1twd90', 'en', 1, 'https://ror.org/05d1twd90 Angelman Syndrome Support Education & Research Trust'),
(67384, 'https://ror.org/055es1h89', 'en', 1, 'https://ror.org/055es1h89 African Centre for Parliamentary Affairs'),
(67385, 'https://ror.org/02kb5g732', 'no_lang_code', 1, 'https://ror.org/02kb5g732 Aurelia Bioscience (United Kingdom)'),
(67386, 'https://ror.org/02ydg9890', 'en', 1, 'https://ror.org/02ydg9890 The Angelou Centre'),
(67387, 'https://ror.org/016grqh48', 'en', 1, 'https://ror.org/016grqh48 Mentor'),
(67388, 'https://ror.org/02c8pt668', 'en', 1, 'https://ror.org/02c8pt668 Auroville Foundation'),
(67389, 'https://ror.org/00kdkx513', 'en', 1, 'https://ror.org/00kdkx513 African Heritage and Educational Centre'),
(67390, 'https://ror.org/00xwvfm64', 'en', 1, 'https://ror.org/00xwvfm64 Australian Centre for Plant Functional Genomics'),
(67391, 'https://ror.org/01bkzhn35', 'en', 1, 'https://ror.org/01bkzhn35 Angling Trust'),
(67392, 'https://ror.org/00v4msg57', 'en', 1, 'https://ror.org/00v4msg57 African Network for Internationalization of Education'),
(67393, 'https://ror.org/05nf32d37', 'en', 1, 'https://ror.org/05nf32d37 Anglo-Norman Text Society'),
(67394, 'https://ror.org/02hw7mf60', 'en', 1, 'https://ror.org/02hw7mf60 Alfred Gillett Trust'),
(67395, 'https://ror.org/01r5zkn17', 'en', 1, 'https://ror.org/01r5zkn17 Angmering Community Centre'),
(67396, 'https://ror.org/01fxfr158', 'en', 1, 'https://ror.org/01fxfr158 Anna Lindh Foundation'),
(67397, 'https://ror.org/05f4wkm56', 'en', 1, 'https://ror.org/05f4wkm56 The Anne Frank Trust UK'),
(67398, 'https://ror.org/03730gy78', 'no_lang_code', 1, 'https://ror.org/03730gy78 Agile Scientific (Canada)'),
(67399, 'https://ror.org/03y5bcg65', 'en', 1, 'https://ror.org/03y5bcg65 Action for Trans Health'),
(67400, 'https://ror.org/00nj4dw70', 'en', 1, 'https://ror.org/00nj4dw70 Action Against Medical Accidents'),
(67401, 'https://ror.org/05x4f0t30', 'en', 1, 'https://ror.org/05x4f0t30 Avvai Village Welfare Society ą®…ą®µąÆą®µąÆˆ ą®•ą®æą®°ą®¾ą®®ą®®ąÆ ą®Øą®²ąÆą®µą®¾ą®“ąÆą®µąÆ ą®šą®™ąÆą®•ą®¤ąÆą®¤ą®¾ą®²ąÆ'),
(67402, 'https://ror.org/01enkn839', 'en', 1, 'https://ror.org/01enkn839 The Aquatic Coleoptera Conservation Trust'),
(67403, 'https://ror.org/05sswkg52', 'en', 1, 'https://ror.org/05sswkg52 Agricultural Genetics Institute Viện Di truyền NĆ“ng nghiệp'),
(67404, 'https://ror.org/03se4em19', 'no_lang_code', 1, 'https://ror.org/03se4em19 Axillium Research (United Kingdom)'),
(67405, 'https://ror.org/05ddcb021', 'en', 1, 'https://ror.org/05ddcb021 Bach Dancing and Dynamite Society'),
(67406, 'https://ror.org/022d66a71', 'pt', 1, 'https://ror.org/022d66a71 Hospital AraĆŗjo Jorge'),
(67407, 'https://ror.org/05qywhx26', 'en', 1, 'https://ror.org/05qywhx26 Ahmed Iqbal Ullah Education Trust'),
(67408, 'https://ror.org/03gs68n54', 'fr', 1, 'https://ror.org/03gs68n54 Aide et Recherche en CancƩrologie Digestive Fondation ARCAD'),
(67409, 'https://ror.org/043em9g67', 'en', 1, 'https://ror.org/043em9g67 Bali Animal Welfare Association'),
(67410, 'https://ror.org/037ef6262', 'en', 1, 'https://ror.org/037ef6262 Architects for Health'),
(67411, 'https://ror.org/04myjct49', 'no_lang_code', 1, 'https://ror.org/04myjct49 Airospring (United Kingdom)'),
(67412, 'https://ror.org/03mv51c78', 'en', 1, 'https://ror.org/03mv51c78 Airport Services Association'),
(67413, 'https://ror.org/01mvvkn82', 'no_lang_code', 1, 'https://ror.org/01mvvkn82 Svenskt fjƤll- och samemuseum Ɓjtte'),
(67414, 'https://ror.org/01fr1mq46', 'en', 1, 'https://ror.org/01fr1mq46 Balor Arts Centre'),
(67415, 'https://ror.org/02vqmr172', 'en', 1, 'https://ror.org/02vqmr172 Baltic Sea Cultural Centre in Gdańsk Nadbałtyckie Centrum Kultury'),
(67416, 'https://ror.org/00vrf8x48', 'en', 1, 'https://ror.org/00vrf8x48 Alamire Foundation'),
(67417, 'https://ror.org/04n1tep93', 'en', 1, 'https://ror.org/04n1tep93 Ardler Village Trust'),
(67418, 'https://ror.org/040109961', 'no_lang_code', 1, 'https://ror.org/040109961 ƅland Maritime Museum ƅlands sjƶfartsmuseum'),
(67419, 'https://ror.org/007tpha30', 'en', 1, 'https://ror.org/007tpha30 Barber Institute of Fine Arts'),
(67420, 'https://ror.org/02zwdks66', 'no_lang_code', 1, 'https://ror.org/02zwdks66 Arete (United Kingdom)'),
(67421, 'https://ror.org/05erea272', 'en', 1, 'https://ror.org/05erea272 Barrier Breakers Foundation'),
(67422, 'https://ror.org/03jbvpa78', 'en', 1, 'https://ror.org/03jbvpa78 Association for Play Therapy'),
(67423, 'https://ror.org/01yq1rp20', 'en', 1, 'https://ror.org/01yq1rp20 Comann Eachdraidh Bharabhais Agus Bhrù'),
(67424, 'https://ror.org/04f433167', 'en', 1, 'https://ror.org/04f433167 The Basketmakers Association'),
(67425, 'https://ror.org/02cqmj630', 'es', 1, 'https://ror.org/02cqmj630 Fundacion ArriarƔn'),
(67426, 'https://ror.org/02fzzq880', 'en', 1, 'https://ror.org/02fzzq880 Bath Social and Development Research'),
(67427, 'https://ror.org/01q3p9d41', 'fr', 1, 'https://ror.org/01q3p9d41 Arteria Association Arteria MƩdiation'),
(67428, 'https://ror.org/03vewy051', 'en', 1, 'https://ror.org/03vewy051 Bay Area Cardiology and Vascular Associates'),
(67429, 'https://ror.org/01f4st973', 'no_lang_code', 1, 'https://ror.org/01f4st973 Biocentre Technology (United Kingdom)'),
(67430, 'https://ror.org/05a9zc759', 'en', 1, 'https://ror.org/05a9zc759 Arts & Health South'),
(67431, 'https://ror.org/043jjxy03', 'en', 1, 'https://ror.org/043jjxy03 Bayimba'),
(67432, 'https://ror.org/02k3c5b92', 'en', 1, 'https://ror.org/02k3c5b92 Bee Farmers Association'),
(67433, 'https://ror.org/02brk6173', 'no_lang_code', 1, 'https://ror.org/02brk6173 Biomass and Fossil Fuel Research Alliance (United Kingdom)'),
(67434, 'https://ror.org/01gamcy45', 'no_lang_code', 1, 'https://ror.org/01gamcy45 Brain (Germany)'),
(67435, 'https://ror.org/02cyn4444', 'en', 1, 'https://ror.org/02cyn4444 Birmingham Museums Trust'),
(67436, 'https://ror.org/01fns9c92', 'en', 1, 'https://ror.org/01fns9c92 Black Country Living Museum'),
(67437, 'https://ror.org/02cyenj86', 'en', 1, 'https://ror.org/02cyenj86 Ashwell Museum'),
(67438, 'https://ror.org/00hc63q81', 'en', 1, 'https://ror.org/00hc63q81 Belfast Charitable Society'),
(67439, 'https://ror.org/04jq8tj07', 'en', 1, 'https://ror.org/04jq8tj07 ASEM Water Resources Research and Development Centre'),
(67440, 'https://ror.org/02z5b5082', 'en', 1, 'https://ror.org/02z5b5082 Belfast Healthy Cities'),
(67441, 'https://ror.org/04b4htq59', 'en', 1, 'https://ror.org/04b4htq59 Bell Educational Trust'),
(67442, 'https://ror.org/026dj7w39', 'en', 1, 'https://ror.org/026dj7w39 Bellahouston Academy'),
(67443, 'https://ror.org/02pgyqd67', 'en', 1, 'https://ror.org/02pgyqd67 Asian Arts Agency'),
(67444, 'https://ror.org/02evg2181', 'en', 1, 'https://ror.org/02evg2181 Bennetts Associates'),
(67445, 'https://ror.org/03w0gh820', 'en', 1, 'https://ror.org/03w0gh820 Bletchley Park Trust'),
(67446, 'https://ror.org/01xth0e33', 'en', 1, 'https://ror.org/01xth0e33 Asian Women Lone Parent Association'),
(67447, 'https://ror.org/01s1jrd75', 'sv', 1, 'https://ror.org/01s1jrd75 Bergslagssjukhuset'),
(67448, 'https://ror.org/04k3q6a72', 'en', 1, 'https://ror.org/04k3q6a72 Blind and Sight Impaired Society'),
(67449, 'https://ror.org/0553s6b03', 'no_lang_code', 1, 'https://ror.org/0553s6b03 Aspin (United Kingdom)'),
(67450, 'https://ror.org/04jdgsn04', 'en', 1, 'https://ror.org/04jdgsn04 Blue Marine Foundation'),
(67451, 'https://ror.org/021w6ye38', 'en', 1, 'https://ror.org/021w6ye38 Blueberry Academy'),
(67452, 'https://ror.org/00pcg1863', 'en', 1, 'https://ror.org/00pcg1863 Booksellers Association'),
(67453, 'https://ror.org/028yxzq51', 'en', 1, 'https://ror.org/028yxzq51 Lourdes Health System'),
(67454, 'https://ror.org/03h7rjb68', 'en', 1, 'https://ror.org/03h7rjb68 Botswana Institute for Technology Research and Innovation'),
(67455, 'https://ror.org/00e3s7s61', 'no_lang_code', 1, 'https://ror.org/00e3s7s61 BPR Medical (United Kingdom)'),
(67456, 'https://ror.org/00fq2kn23', 'no_lang_code', 1, 'https://ror.org/00fq2kn23 Associated Research (United States)'),
(67457, 'https://ror.org/021kyym11', 'en', 1, 'https://ror.org/021kyym11 Bradford Museums and Galleries'),
(67458, 'https://ror.org/03djjyk45', 'en', 1, 'https://ror.org/03djjyk45 Center for Effective Global Action'),
(67459, 'https://ror.org/02rd7vq77', 'en', 1, 'https://ror.org/02rd7vq77 Berkhamsted and District Archaeological Society'),
(67460, 'https://ror.org/011m7rj02', 'no_lang_code', 1, 'https://ror.org/011m7rj02 Brandon Medical (United Kingdom)'),
(67461, 'https://ror.org/02eqy2w38', 'en', 1, 'https://ror.org/02eqy2w38 Association for Decentralised Energy'),
(67462, 'https://ror.org/0424fq223', 'en', 1, 'https://ror.org/0424fq223 Berkshire Buckinghamshire and Oxfordshire Wildlife Trust'),
(67463, 'https://ror.org/03egje930', 'en', 1, 'https://ror.org/03egje930 Association for Learning Technology'),
(67464, 'https://ror.org/00jhfm416', 'pt', 1, 'https://ror.org/00jhfm416 Associação Brasileira de Esclerose Lateral Amiotrófica'),
(67465, 'https://ror.org/02r4h2g04', 'en', 1, 'https://ror.org/02r4h2g04 Association for Prevention and Control of Rabies in India'),
(67466, 'https://ror.org/04473af04', 'en', 1, 'https://ror.org/04473af04 Berneray Historical Society Comunn Eachdraidh BheĆ rnaraigh'),
(67467, 'https://ror.org/05fy44g10', 'pl', 1, 'https://ror.org/05fy44g10 Beskidzkie Centrum Onkologii Szpital Miejski im. Jana Pawla II w Bielsku-Bialej'),
(67468, 'https://ror.org/02ere1c15', 'en', 1, 'https://ror.org/02ere1c15 Brick Development Association'),
(67469, 'https://ror.org/050arpw16', 'en', 1, 'https://ror.org/050arpw16 British Dragonfly Society'),
(67470, 'https://ror.org/01ecdm936', 'en', 1, 'https://ror.org/01ecdm936 Brighton Museum'),
(67471, 'https://ror.org/04twq5n98', 'en', 1, 'https://ror.org/04twq5n98 Beverly Hills Cardiology'),
(67472, 'https://ror.org/01zgjgk72', 'en', 1, 'https://ror.org/01zgjgk72 Bexhill Museum'),
(67473, 'https://ror.org/00c0kg894', 'en', 1, 'https://ror.org/00c0kg894 Royal Pavilion'),
(67474, 'https://ror.org/04mw9je83', 'en', 1, 'https://ror.org/04mw9je83 Dudhope Multicultural Centre'),
(67475, 'https://ror.org/00zb6xd25', 'en', 1, 'https://ror.org/00zb6xd25 British Gear Association'),
(67476, 'https://ror.org/01w975c85', 'en', 1, 'https://ror.org/01w975c85 Brighton Peace and Environment Centre'),
(67477, 'https://ror.org/00pk8w333', 'en', 1, 'https://ror.org/00pk8w333 Bolton Library and Museum Services'),
(67478, 'https://ror.org/057nt4d90', 'en', 1, 'https://ror.org/057nt4d90 British Hydropower Association'),
(67479, 'https://ror.org/00yf53d07', 'en', 1, 'https://ror.org/00yf53d07 The Bill Douglas Cinema Museum'),
(67480, 'https://ror.org/0129pxj69', 'en', 1, 'https://ror.org/0129pxj69 British Industrial Design Association'),
(67481, 'https://ror.org/03wcq4p61', 'en', 1, 'https://ror.org/03wcq4p61 Britannia Panopticon'),
(67482, 'https://ror.org/05tcphk02', 'en', 1, 'https://ror.org/05tcphk02 British Institute of Facilities Management'),
(67483, 'https://ror.org/017z7ha20', 'en', 1, 'https://ror.org/017z7ha20 Doc Society'),
(67484, 'https://ror.org/00x0xxx58', 'en', 1, 'https://ror.org/00x0xxx58 British Institute of Non-Destructive Testing'),
(67485, 'https://ror.org/0317wv817', 'en', 1, 'https://ror.org/0317wv817 British and Irish Association of Zoos and Aquariums'),
(67486, 'https://ror.org/0441qc561', 'en', 1, 'https://ror.org/0441qc561 The British Antique Dealers Association'),
(67487, 'https://ror.org/01qqqf422', 'en', 1, 'https://ror.org/01qqqf422 British Arts Festivals Association'),
(67488, 'https://ror.org/01k3bjh49', 'en', 1, 'https://ror.org/01k3bjh49 British Machine Vision Association'),
(67489, 'https://ror.org/0453eyr18', 'no_lang_code', 1, 'https://ror.org/0453eyr18 Bill Harvey Associates (United Kingdom)'),
(67490, 'https://ror.org/00g96hn54', 'no_lang_code', 1, 'https://ror.org/00g96hn54 Bio Alternative Medical Devices (United Kingdom)'),
(67491, 'https://ror.org/016nc1s82', 'en', 1, 'https://ror.org/016nc1s82 British Association for Immediate Care Scotland'),
(67492, 'https://ror.org/05ccpr318', 'en', 1, 'https://ror.org/05ccpr318 British Meat Processors Association'),
(67493, 'https://ror.org/03t0jaj83', 'en', 1, 'https://ror.org/03t0jaj83 British Association for Islamic Studies'),
(67494, 'https://ror.org/003hksp74', 'no_lang_code', 1, 'https://ror.org/003hksp74 BWA (United Kingdom)'),
(67495, 'https://ror.org/03jrg4537', 'en', 1, 'https://ror.org/03jrg4537 British Association for South Asian Studies'),
(67496, 'https://ror.org/04myryz50', 'en', 1, 'https://ror.org/04myryz50 The Nuclear Institute'),
(67497, 'https://ror.org/00ykyfn41', 'no_lang_code', 1, 'https://ror.org/00ykyfn41 CB Healthcare (India)'),
(67498, 'https://ror.org/03w8ev131', 'en', 1, 'https://ror.org/03w8ev131 British Olympic Association'),
(67499, 'https://ror.org/02h3d3t16', 'en', 1, 'https://ror.org/02h3d3t16 Cadence Performance'),
(67500, 'https://ror.org/03zt57v78', 'no_lang_code', 1, 'https://ror.org/03zt57v78 CalciMedica (United States)'),
(67501, 'https://ror.org/00pyvsn14', 'en', 1, 'https://ror.org/00pyvsn14 British Association of Social Workers'),
(67502, 'https://ror.org/036g36489', 'en', 1, 'https://ror.org/036g36489 British Limousin Cattle Society'),
(67503, 'https://ror.org/045thzj17', 'es', 1, 'https://ror.org/045thzj17 Dirección Regional de Salud del Callao'),
(67504, 'https://ror.org/03rdg0s47', 'en', 1, 'https://ror.org/03rdg0s47 British Ports Association'),
(67505, 'https://ror.org/05kgk6p34', 'en', 1, 'https://ror.org/05kgk6p34 British Beet Research Organisation'),
(67506, 'https://ror.org/04g9aps05', 'en', 1, 'https://ror.org/04g9aps05 British Record Society'),
(67507, 'https://ror.org/020k77x19', 'no_lang_code', 1, 'https://ror.org/020k77x19 Callen Lenz (United Kingdom)'),
(67508, 'https://ror.org/02m51bd24', 'en', 1, 'https://ror.org/02m51bd24 British Bobsleigh and Skeleton Association'),
(67509, 'https://ror.org/00f4q6m47', 'en', 1, 'https://ror.org/00f4q6m47 British Screen Advisory Council'),
(67510, 'https://ror.org/04vwync56', 'en', 1, 'https://ror.org/04vwync56 British Cattle Veterinary Association'),
(67511, 'https://ror.org/04ebdby25', 'en', 1, 'https://ror.org/04ebdby25 Cambridge Cardiac Care Centre'),
(67512, 'https://ror.org/034r98c48', 'en', 1, 'https://ror.org/034r98c48 British Computer Association of the Blind'),
(67513, 'https://ror.org/03sp64371', 'en', 1, 'https://ror.org/03sp64371 British Council'),
(67514, 'https://ror.org/04qpdjf24', 'no_lang_code', 1, 'https://ror.org/04qpdjf24 Cambridge Research Biochemicals (United Kingdom)'),
(67515, 'https://ror.org/03f8ja864', 'en', 1, 'https://ror.org/03f8ja864 British Council'),
(67516, 'https://ror.org/05wvy7982', 'en', 1, 'https://ror.org/05wvy7982 The Campaign Against Living Miserably'),
(67517, 'https://ror.org/0410jfe71', 'en', 1, 'https://ror.org/0410jfe71 British Council'),
(67518, 'https://ror.org/04sf68197', 'en', 1, 'https://ror.org/04sf68197 British Crystallographic Association'),
(67519, 'https://ror.org/00td3vg19', 'en', 1, 'https://ror.org/00td3vg19 British Dam Society'),
(67520, 'https://ror.org/03yk8za83', 'en', 1, 'https://ror.org/03yk8za83 British Texel Sheep Society'),
(67521, 'https://ror.org/041dcmy53', 'en', 1, 'https://ror.org/041dcmy53 British Deaf Association'),
(67522, 'https://ror.org/052530s92', 'en', 1, 'https://ror.org/052530s92 Brunelcare'),
(67523, 'https://ror.org/045xczk16', 'en', 1, 'https://ror.org/045xczk16 Canterbury Archaeological Trust'),
(67524, 'https://ror.org/00ed5y156', 'en', 1, 'https://ror.org/00ed5y156 Koninklijke Maatschappij voor Dierkunde Antwerpen Royal Zoological Society of Antwerp'),
(67525, 'https://ror.org/03kfmyx03', 'en', 1, 'https://ror.org/03kfmyx03 Canterbury Museums and Galleries'),
(67526, 'https://ror.org/02gwwbd68', 'en', 1, 'https://ror.org/02gwwbd68 Capital Cardiology Associates'),
(67527, 'https://ror.org/03nr7d398', 'en', 1, 'https://ror.org/03nr7d398 Center for Evaluation and Development Mannheimer Zentrum für Evaluation und Entwicklungsforschung'),
(67528, 'https://ror.org/01cdys993', 'en', 1, 'https://ror.org/01cdys993 Manchester Health and Wellbeing Service'),
(67529, 'https://ror.org/008dq1c96', 'en', 1, 'https://ror.org/008dq1c96 Buccleuch Living Heritage Trust'),
(67530, 'https://ror.org/02fnw1n62', 'en', 1, 'https://ror.org/02fnw1n62 Budapest Centre for Mass Atrocities Prevention'),
(67531, 'https://ror.org/001a7dw94', 'de', 1, 'https://ror.org/001a7dw94 Krankenhaus der Barmherzigen Brüder Trier'),
(67532, 'https://ror.org/03pesqc02', 'en', 1, 'https://ror.org/03pesqc02 Center for Whale Research'),
(67533, 'https://ror.org/01q9c3q09', 'en', 1, 'https://ror.org/01q9c3q09 Buffs Social Club'),
(67534, 'https://ror.org/00wngta72', 'en', 1, 'https://ror.org/00wngta72 Bumblebee Conservation Trust'),
(67535, 'https://ror.org/031kmgt53', 'en', 1, 'https://ror.org/031kmgt53 Central Illinois Neuroscience Foundation'),
(67536, 'https://ror.org/01pdb1x94', 'en', 1, 'https://ror.org/01pdb1x94 Central Road Research Institute'),
(67537, 'https://ror.org/023fje098', 'en', 1, 'https://ror.org/023fje098 Canolfan y Dechnoleg Amgen Centre for Alternative Technology'),
(67538, 'https://ror.org/03zraew37', 'en', 1, 'https://ror.org/03zraew37 Centre for Contemporary Art'),
(67539, 'https://ror.org/05af7se92', 'en', 1, 'https://ror.org/05af7se92 Centre for Crime and Justice Studies'),
(67540, 'https://ror.org/053man137', 'en', 1, 'https://ror.org/053man137 Centre for Effective Dispute Resolution'),
(67541, 'https://ror.org/002pdme92', 'en', 1, 'https://ror.org/002pdme92 Centre for Environment Concerns'),
(67542, 'https://ror.org/023a61k53', 'en', 1, 'https://ror.org/023a61k53 Centre for Excellence for Looked After Children in Scotland'),
(67543, 'https://ror.org/013md5775', 'no_lang_code', 1, 'https://ror.org/013md5775 Centre for Factories of the Future (United Kingdom)'),
(67544, 'https://ror.org/05qs8zv09', 'en', 1, 'https://ror.org/05qs8zv09 Centre for Chinese Contemporary Art'),
(67545, 'https://ror.org/016k9n555', 'en', 1, 'https://ror.org/016k9n555 Centre for Cities'),
(67546, 'https://ror.org/03wts3073', 'en', 1, 'https://ror.org/03wts3073 Centre for Fine Arts Palais des Beaux-Arts Paleis voor Schone Kunsten'),
(67547, 'https://ror.org/04xgczp37', 'en', 1, 'https://ror.org/04xgczp37 Centre for Computing History'),
(67548, 'https://ror.org/053vgma94', 'en', 1, 'https://ror.org/053vgma94 Centre for Global Equality'),
(67549, 'https://ror.org/0111f0b05', 'en', 1, 'https://ror.org/0111f0b05 Centre for Historical Research and Documentation on War and Contemporary Society'),
(67550, 'https://ror.org/05gggsd38', 'en', 1, 'https://ror.org/05gggsd38 Centre for Responsible Credit'),
(67551, 'https://ror.org/02tahzf33', 'en', 1, 'https://ror.org/02tahzf33 Centre for Human Rights and Policy Studies'),
(67552, 'https://ror.org/050e1vh19', 'en', 1, 'https://ror.org/050e1vh19 Centre for Rural and Remote Mental Health'),
(67553, 'https://ror.org/055jfyy72', 'en', 1, 'https://ror.org/055jfyy72 Center for Indonesian Veterinary Analytical Studies'),
(67554, 'https://ror.org/00ksfyn98', 'en', 1, 'https://ror.org/00ksfyn98 Centre for Investigative Journalism'),
(67555, 'https://ror.org/04bxpq277', 'en', 1, 'https://ror.org/04bxpq277 Centre for Self Managed Learning'),
(67556, 'https://ror.org/016411e09', 'en', 1, 'https://ror.org/016411e09 Centre for Justice Innovation'),
(67557, 'https://ror.org/05pgvxf86', 'en', 1, 'https://ror.org/05pgvxf86 Innovation Centre for Sensor and Imaging Systems'),
(67558, 'https://ror.org/04jsfmm36', 'en', 1, 'https://ror.org/04jsfmm36 Centre for Literacy in Primary Education'),
(67559, 'https://ror.org/04wrn8f94', 'en', 1, 'https://ror.org/04wrn8f94 Centre for Sustainable Energy Use in Food'),
(67560, 'https://ror.org/03ybdm606', 'en', 1, 'https://ror.org/03ybdm606 Centre for Low Carbon Futures'),
(67561, 'https://ror.org/02j3g5e35', 'en', 1, 'https://ror.org/02j3g5e35 Centre for the Study of Labour and Mobility'),
(67562, 'https://ror.org/03vc6ep30', 'en', 1, 'https://ror.org/03vc6ep30 Center for Urban History of East Central Europe Центр Š¼Ń–ŃŃŒŠŗŠ¾Ń— історії Ń†ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-схіГної Європи'),
(67563, 'https://ror.org/019hmfn94', 'en', 1, 'https://ror.org/019hmfn94 Centre for Movement Disorders'),
(67564, 'https://ror.org/04nznt564', 'en', 1, 'https://ror.org/04nznt564 Centre for Nepal Studies'),
(67565, 'https://ror.org/011gdes44', 'en', 1, 'https://ror.org/011gdes44 Centre for Window and Cladding Technology'),
(67566, 'https://ror.org/00tzfk251', 'en', 1, 'https://ror.org/00tzfk251 Centre for Youth & Criminal Justice'),
(67567, 'https://ror.org/05p5d8426', 'en', 1, 'https://ror.org/05p5d8426 Centre for Performance Research'),
(67568, 'https://ror.org/056ve6962', 'fr', 1, 'https://ror.org/056ve6962 Centre National de Lutte Antiacridienne'),
(67569, 'https://ror.org/01jjvj470', 'en', 1, 'https://ror.org/01jjvj470 Centre for Polar Observation and Modelling'),
(67570, 'https://ror.org/047cyxk24', 'en', 1, 'https://ror.org/047cyxk24 Centre of Excellence for Sensory Impairment'),
(67571, 'https://ror.org/01wfksv89', 'en', 1, 'https://ror.org/01wfksv89 Centre on Dynamics of Ethnicity'),
(67572, 'https://ror.org/009x3z174', 'en', 1, 'https://ror.org/009x3z174 Butetown Community Centre'),
(67573, 'https://ror.org/00k6qmq88', 'en', 1, 'https://ror.org/00k6qmq88 Association of North East Councils'),
(67574, 'https://ror.org/04avaqv13', 'no_lang_code', 1, 'https://ror.org/04avaqv13 Ikonix (United States)'),
(67575, 'https://ror.org/03xfg5k88', 'en', 1, 'https://ror.org/03xfg5k88 Center for Responsible Enterprise And Trade'),
(67576, 'https://ror.org/02enpd448', 'en', 1, 'https://ror.org/02enpd448 Centre for Regeneration Excellence Wales'),
(67577, 'https://ror.org/05fdfq287', 'en', 1, 'https://ror.org/05fdfq287 Capital Museum é¦–éƒ½åšē‰©é¦†'),
(67578, 'https://ror.org/03tp6qw94', 'no_lang_code', 1, 'https://ror.org/03tp6qw94 Ceryx Medical (United Kingdom)'),
(67579, 'https://ror.org/00t3j9c50', 'en', 1, 'https://ror.org/00t3j9c50 The Heart House'),
(67580, 'https://ror.org/00q80jg86', 'en', 1, 'https://ror.org/00q80jg86 Champs Public Health Collaborative'),
(67581, 'https://ror.org/02bz1zq28', 'en', 1, 'https://ror.org/02bz1zq28 Tenet Healthcare'),
(67582, 'https://ror.org/04ycer023', 'en', 1, 'https://ror.org/04ycer023 Cardiovascular Medical Group'),
(67583, 'https://ror.org/02qb49x49', 'en', 1, 'https://ror.org/02qb49x49 Changes Community Health Project'),
(67584, 'https://ror.org/02hpv2m52', 'en', 1, 'https://ror.org/02hpv2m52 Charles Rennie Mackintosh Society'),
(67585, 'https://ror.org/0367sm721', 'en', 1, 'https://ror.org/0367sm721 Caribbean Disaster Emergency Management Agency'),
(67586, 'https://ror.org/05nhhvb42', 'en', 1, 'https://ror.org/05nhhvb42 Charles River Medical Associates'),
(67587, 'https://ror.org/04m541b31', 'en', 1, 'https://ror.org/04m541b31 Chartered Institute of Procurement & Supply'),
(67588, 'https://ror.org/05ge23e39', 'no_lang_code', 1, 'https://ror.org/05ge23e39 Carritech Research (United Kingdom)'),
(67589, 'https://ror.org/054bz5192', 'en', 1, 'https://ror.org/054bz5192 The Cartoon Museum'),
(67590, 'https://ror.org/04ta9xg75', 'en', 1, 'https://ror.org/04ta9xg75 Chartered Institution of Water and Environmental Management'),
(67591, 'https://ror.org/0183bsj57', 'en', 1, 'https://ror.org/0183bsj57 Chartered Insurance Institute'),
(67592, 'https://ror.org/02hg7p914', 'en', 1, 'https://ror.org/02hg7p914 Catalyst Science Discovery Centre'),
(67593, 'https://ror.org/04gv91m66', 'en', 1, 'https://ror.org/04gv91m66 Chartered Society of Designers'),
(67594, 'https://ror.org/012cr4712', 'en', 1, 'https://ror.org/012cr4712 Cedarwood Trust'),
(67595, 'https://ror.org/05ww0qy02', 'no_lang_code', 1, 'https://ror.org/05ww0qy02 Boehringer Ingelheim (Australia)'),
(67596, 'https://ror.org/009261g92', 'en', 1, 'https://ror.org/009261g92 Celtic FC Foundation'),
(67597, 'https://ror.org/04gq33t30', 'no_lang_code', 1, 'https://ror.org/04gq33t30 Chase Research Cryogenics (United Kingdom)'),
(67598, 'https://ror.org/01hr74d22', 'no_lang_code', 1, 'https://ror.org/01hr74d22 Boehringer Ingelheim (Brazil)'),
(67599, 'https://ror.org/01mfyt667', 'no_lang_code', 1, 'https://ror.org/01mfyt667 Celtic Research (United Kingdom)'),
(67600, 'https://ror.org/035hns865', 'no_lang_code', 1, 'https://ror.org/035hns865 Boehringer Ingelheim (Egypt)'),
(67601, 'https://ror.org/0521tgf76', 'en', 1, 'https://ror.org/0521tgf76 Cementitious Slag Makers Association'),
(67602, 'https://ror.org/048m65g43', 'en', 1, 'https://ror.org/048m65g43 Chess Valley Archaeological and Historical Society'),
(67603, 'https://ror.org/01jkb7292', 'no_lang_code', 1, 'https://ror.org/01jkb7292 Cheyney (United Kingdom)'),
(67604, 'https://ror.org/04npwyz19', 'en', 1, 'https://ror.org/04npwyz19 Church Service Society'),
(67605, 'https://ror.org/03b8fd746', 'en', 1, 'https://ror.org/03b8fd746 Chief Fire Officers Association'),
(67606, 'https://ror.org/029e72445', 'en', 1, 'https://ror.org/029e72445 Childhood Bereavement Network'),
(67607, 'https://ror.org/0332r9t93', 'en', 1, 'https://ror.org/0332r9t93 Children and War Foundation'),
(67608, 'https://ror.org/0433wdg24', 'en', 1, 'https://ror.org/0433wdg24 Children’s Arthritis Association'),
(67609, 'https://ror.org/049kty102', 'en', 1, 'https://ror.org/049kty102 Young Citizens'),
(67610, 'https://ror.org/02606x514', 'en', 1, 'https://ror.org/02606x514 Chilled Food Association'),
(67611, 'https://ror.org/05xwf9k95', 'no_lang_code', 1, 'https://ror.org/05xwf9k95 Clearsky Medical Diagnostics (United Kingdom)'),
(67612, 'https://ror.org/04efk6227', 'en', 1, 'https://ror.org/04efk6227 Clevedon Pier & Heritage Trust'),
(67613, 'https://ror.org/05r5t3g74', 'en', 1, 'https://ror.org/05r5t3g74 China National Silk Museum äø­å›½äøē»øåšē‰©é¦†'),
(67614, 'https://ror.org/01x1wtd34', 'en', 1, 'https://ror.org/01x1wtd34 China Port Museum äø­å›½ęøÆå£åšē‰©é¦†'),
(67615, 'https://ror.org/05bmf3j81', 'en', 1, 'https://ror.org/05bmf3j81 Clifton Suspension Bridge Trust'),
(67616, 'https://ror.org/0405ppk91', 'en', 1, 'https://ror.org/0405ppk91 Climate and Development Knowledge Network'),
(67617, 'https://ror.org/00ah0qh32', 'en', 1, 'https://ror.org/00ah0qh32 Climate Outreach'),
(67618, 'https://ror.org/007hz9242', 'no_lang_code', 1, 'https://ror.org/007hz9242 Clinical & Biomedical Computing (United Kingdom)'),
(67619, 'https://ror.org/02x7tr046', 'no_lang_code', 1, 'https://ror.org/02x7tr046 China Regenerative Medicine International (China) äø­åœ‹å†ē”Ÿé†«å­øåœ‹éš›ęœ‰é™å…¬åø'),
(67620, 'https://ror.org/036ak6q26', 'en', 1, 'https://ror.org/036ak6q26 Cloud Innovation Centre'),
(67621, 'https://ror.org/02b58rv90', 'en', 1, 'https://ror.org/02b58rv90 Defence Electronics History Society'),
(67622, 'https://ror.org/02zfxwc21', 'en', 1, 'https://ror.org/02zfxwc21 Derbyshire Community Health Services NHS Foundation Trust'),
(67623, 'https://ror.org/00wtq5187', 'en', 1, 'https://ror.org/00wtq5187 Design and Artists Copyright Society'),
(67624, 'https://ror.org/05j4kzc41', 'ro', 1, 'https://ror.org/05j4kzc41 Spitalul Clinic Județean de Urgență Cluj-Napoca'),
(67625, 'https://ror.org/058znqh71', 'en', 1, 'https://ror.org/058znqh71 Cranfield Trust'),
(67626, 'https://ror.org/03bjdat74', 'no_lang_code', 1, 'https://ror.org/03bjdat74 Design Science (United Kingdom)'),
(67627, 'https://ror.org/05pms6260', 'en', 1, 'https://ror.org/05pms6260 Development Trusts Association Scotland'),
(67628, 'https://ror.org/04e8ct712', 'en', 1, 'https://ror.org/04e8ct712 Dialogue Society'),
(67629, 'https://ror.org/04pjzs357', 'en', 1, 'https://ror.org/04pjzs357 Creative Foundation'),
(67630, 'https://ror.org/02rs65g13', 'no_lang_code', 1, 'https://ror.org/02rs65g13 Creavo (United Kingdom)'),
(67631, 'https://ror.org/01k9d6864', 'en', 1, 'https://ror.org/01k9d6864 Digital Curation Centre'),
(67632, 'https://ror.org/00y8xx462', 'no_lang_code', 1, 'https://ror.org/00y8xx462 Credit Data Research (United Kingdom)'),
(67633, 'https://ror.org/05ez2gd39', 'en', 1, 'https://ror.org/05ez2gd39 Digital Engineering and Test Centre'),
(67634, 'https://ror.org/00rkc1204', 'en', 1, 'https://ror.org/00rkc1204 Crichton Carbon Centre'),
(67635, 'https://ror.org/01jv0yc68', 'no_lang_code', 1, 'https://ror.org/01jv0yc68 Digital Native Academy (United Kingdom)'),
(67636, 'https://ror.org/05b4wdn22', 'en', 1, 'https://ror.org/05b4wdn22 Ecological Continuity Trust'),
(67637, 'https://ror.org/01rkbf580', 'en', 1, 'https://ror.org/01rkbf580 Economic and Social Research Foundation'),
(67638, 'https://ror.org/04ft60f45', 'en', 1, 'https://ror.org/04ft60f45 Cromarty Arts Trust'),
(67639, 'https://ror.org/0201v2f15', 'en', 1, 'https://ror.org/0201v2f15 Cromarty Courthouse Museum'),
(67640, 'https://ror.org/02pk1eg59', 'en', 1, 'https://ror.org/02pk1eg59 Cromarty History Society'),
(67641, 'https://ror.org/05r592159', 'en', 1, 'https://ror.org/05r592159 The Ectopic Pregnancy Trust'),
(67642, 'https://ror.org/05mef5z43', 'en', 1, 'https://ror.org/05mef5z43 Disabled Living Foundation'),
(67643, 'https://ror.org/0013qma95', 'en', 1, 'https://ror.org/0013qma95 Diseworth Heritage Centre'),
(67644, 'https://ror.org/006js8r49', 'en', 1, 'https://ror.org/006js8r49 Crop Protection Association'),
(67645, 'https://ror.org/05bg9sv56', 'en', 1, 'https://ror.org/05bg9sv56 Crossroads Youth & Community Association'),
(67646, 'https://ror.org/034j4sq33', 'no_lang_code', 1, 'https://ror.org/034j4sq33 Dispomedical (United Kingdom)'),
(67647, 'https://ror.org/04pngg224', 'no_lang_code', 1, 'https://ror.org/04pngg224 DJ Associates (United States)'),
(67648, 'https://ror.org/04xvgmn72', 'en', 1, 'https://ror.org/04xvgmn72 Centre for Cultural Heritage Preservation Ł…Ų±ŁƒŲ² حفظ التراث Ų§Ł„Ų«Ł‚Ų§ŁŁŠ'),
(67649, 'https://ror.org/01nd71k14', 'en', 1, 'https://ror.org/01nd71k14 Edinburgh City of Literature'),
(67650, 'https://ror.org/035x64r67', 'en', 1, 'https://ror.org/035x64r67 Down''s Syndrome Association'),
(67651, 'https://ror.org/04pc9r783', 'en', 1, 'https://ror.org/04pc9r783 Edinburgh World Heritage'),
(67652, 'https://ror.org/04k3sfn15', 'en', 1, 'https://ror.org/04k3sfn15 Le musƩe Dr Guislain Museum Dr Guislain'),
(67653, 'https://ror.org/001ajv156', 'no_lang_code', 1, 'https://ror.org/001ajv156 EES Research (United Kingdom)'),
(67654, 'https://ror.org/03dq65642', 'es', 1, 'https://ror.org/03dq65642 Instituto Mora Instituto de Investigaciones Dr. JosƩ Marƭa Luis Mora'),
(67655, 'https://ror.org/035wa3p49', 'no_lang_code', 1, 'https://ror.org/035wa3p49 Dream Laboratory (United Kingdom)'),
(67656, 'https://ror.org/02vmy5t39', 'en', 1, 'https://ror.org/02vmy5t39 Egyptian Foundation for Refugee Rights'),
(67657, 'https://ror.org/02pvz5132', 'en', 1, 'https://ror.org/02pvz5132 Cumberland and Westmorland Antiquarian and Archaeological Society'),
(67658, 'https://ror.org/03jaxrf75', 'en', 1, 'https://ror.org/03jaxrf75 Cumberland County Historical Society'),
(67659, 'https://ror.org/00hcdm003', 'en', 1, 'https://ror.org/00hcdm003 Curatio International Foundation'),
(67660, 'https://ror.org/04p5h5d21', 'en', 1, 'https://ror.org/04p5h5d21 Electoral Reform Society'),
(67661, 'https://ror.org/05j6sj461', 'de', 1, 'https://ror.org/05j6sj461 Museum Strom und Leben'),
(67662, 'https://ror.org/00gy7w809', 'en', 1, 'https://ror.org/00gy7w809 Dronah Foundation'),
(67663, 'https://ror.org/02qpnf892', 'en', 1, 'https://ror.org/02qpnf892 Czech Association for the Study of Religions ČeskĆ” společnost pro religionistiku'),
(67664, 'https://ror.org/00sydr738', 'no_lang_code', 1, 'https://ror.org/00sydr738 Electro-Medical Measurement Systems (United Kingdom)'),
(67665, 'https://ror.org/03ekrpq59', 'en', 1, 'https://ror.org/03ekrpq59 Dubai International Financial Centre'),
(67666, 'https://ror.org/006pekx06', 'en', 1, 'https://ror.org/006pekx06 Emmanuel Schools Foundation'),
(67667, 'https://ror.org/046qkca03', 'no_lang_code', 1, 'https://ror.org/046qkca03 Daniel Black and Associates (United States)'),
(67668, 'https://ror.org/04gwzxy46', 'en', 1, 'https://ror.org/04gwzxy46 End Violence Against Women'),
(67669, 'https://ror.org/00v907w21', 'en', 1, 'https://ror.org/00v907w21 Dubbo Hospital'),
(67670, 'https://ror.org/00ab8jq38', 'en', 1, 'https://ror.org/00ab8jq38 The DaCapo Music Foundation'),
(67671, 'https://ror.org/059v6k471', 'en', 1, 'https://ror.org/059v6k471 Dudley Associates'),
(67672, 'https://ror.org/05xrxf972', 'en', 1, 'https://ror.org/05xrxf972 Dumfries Museum and Camera Obscura'),
(67673, 'https://ror.org/05dk07j97', 'en', 1, 'https://ror.org/05dk07j97 Energy Technology Centre'),
(67674, 'https://ror.org/016gda025', 'en', 1, 'https://ror.org/016gda025 Dundee Blind and Partially Sighted Society'),
(67675, 'https://ror.org/05k9ygy91', 'en', 1, 'https://ror.org/05k9ygy91 Dundee Carers Centre'),
(67676, 'https://ror.org/00m1hwg25', 'en', 1, 'https://ror.org/00m1hwg25 English & Media Centre'),
(67677, 'https://ror.org/053yqvn66', 'en', 1, 'https://ror.org/053yqvn66 English Folk Dance and Song Society'),
(67678, 'https://ror.org/01m82kt84', 'en', 1, 'https://ror.org/01m82kt84 Durham Dales Health Federation'),
(67679, 'https://ror.org/014077748', 'da', 1, 'https://ror.org/014077748 Dansk Standard'),
(67680, 'https://ror.org/01h79xg57', 'no_lang_code', 1, 'https://ror.org/01h79xg57 Applied Graphene Materials (United Kingdom)'),
(67681, 'https://ror.org/02rtcze97', 'en', 1, 'https://ror.org/02rtcze97 Dansk Byplanlaboratorium The Danish Town Planning Institute'),
(67682, 'https://ror.org/03pr6f932', 'en', 1, 'https://ror.org/03pr6f932 Darbar'),
(67683, 'https://ror.org/0299hrs54', 'en', 1, 'https://ror.org/0299hrs54 Enlightened Myanmar Research Foundation'),
(67684, 'https://ror.org/01xzsbn64', 'en', 1, 'https://ror.org/01xzsbn64 Dutch Foundation for Literature Nederlands Letterenfonds'),
(67685, 'https://ror.org/04f204837', 'no_lang_code', 1, 'https://ror.org/04f204837 Enviresearch (United Kingdom)'),
(67686, 'https://ror.org/057gnjm41', 'en', 1, 'https://ror.org/057gnjm41 The Environmental Foundation for Africa'),
(67687, 'https://ror.org/01tftde85', 'cy', 1, 'https://ror.org/01tftde85 Cymdeithas Thomas Pennant'),
(67688, 'https://ror.org/0391mhw96', 'en', 1, 'https://ror.org/0391mhw96 The David Hume Institute'),
(67689, 'https://ror.org/000sec356', 'no_lang_code', 1, 'https://ror.org/000sec356 Epizone'),
(67690, 'https://ror.org/03t7fe423', 'en', 1, 'https://ror.org/03t7fe423 East Belfast Community Development Agency'),
(67691, 'https://ror.org/03xnq0g58', 'no_lang_code', 1, 'https://ror.org/03xnq0g58 David Jarvis Associates (United Kingdom)'),
(67692, 'https://ror.org/04agxqa78', 'en', 1, 'https://ror.org/04agxqa78 David Livingstone Trust'),
(67693, 'https://ror.org/05kt1vc49', 'en', 1, 'https://ror.org/05kt1vc49 Eric Liddell Centre'),
(67694, 'https://ror.org/03vd0wp03', 'en', 1, 'https://ror.org/03vd0wp03 DDR Museum'),
(67695, 'https://ror.org/02p6xqb83', 'en', 1, 'https://ror.org/02p6xqb83 Deaf Studies Trust'),
(67696, 'https://ror.org/017ppge98', 'en', 1, 'https://ror.org/017ppge98 CO2 Technology Centre Mongstad Teknologisenteret pƄ Mongstad'),
(67697, 'https://ror.org/050mver74', 'no_lang_code', 1, 'https://ror.org/050mver74 EBTIC'),
(67698, 'https://ror.org/02yqafw93', 'en', 1, 'https://ror.org/02yqafw93 Eurasia Foundation of Central Asia ФонГ Š•Š²Ń€Š°Š·ŠøŃ Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(67699, 'https://ror.org/056ytj938', 'en', 1, 'https://ror.org/056ytj938 Coastal Cancer Center'),
(67700, 'https://ror.org/054871422', 'en', 1, 'https://ror.org/054871422 Eureka'),
(67701, 'https://ror.org/026t78k29', 'en', 1, 'https://ror.org/026t78k29 Eastbridge Hospital'),
(67702, 'https://ror.org/00zam7c12', 'de', 1, 'https://ror.org/00zam7c12 Deutsche Initiative für Netzwerkinformation German Initiative for Network Information'),
(67703, 'https://ror.org/0117czb70', 'en', 1, 'https://ror.org/0117czb70 European Academy for Standardisation'),
(67704, 'https://ror.org/01em88r57', 'en', 1, 'https://ror.org/01em88r57 Community Connect Foundation'),
(67705, 'https://ror.org/03kky0014', 'en', 1, 'https://ror.org/03kky0014 Community Development and Health Network'),
(67706, 'https://ror.org/020x1hr04', 'en', 1, 'https://ror.org/020x1hr04 Community Health And Information Network'),
(67707, 'https://ror.org/04nbbfv42', 'en', 1, 'https://ror.org/04nbbfv42 Contemporary Visual Arts Network'),
(67708, 'https://ror.org/05t7k1t84', 'en', 1, 'https://ror.org/05t7k1t84 Community Media Association'),
(67709, 'https://ror.org/03sezsp15', 'en', 1, 'https://ror.org/03sezsp15 Cohen Medical Associates'),
(67710, 'https://ror.org/03caes622', 'en', 1, 'https://ror.org/03caes622 Colchester + Ipswich Museums'),
(67711, 'https://ror.org/03ak5rf34', 'en', 1, 'https://ror.org/03ak5rf34 The Colebrooke Centre'),
(67712, 'https://ror.org/03dbpxy52', 'de', 1, 'https://ror.org/03dbpxy52 DRK Kliniken Berlin'),
(67713, 'https://ror.org/01grm4y17', 'en', 1, 'https://ror.org/01grm4y17 Bavarian State Research Center for Agriculture Bayerische Landesanstalt für Landwirtschaft'),
(67714, 'https://ror.org/04jpkas74', 'de', 1, 'https://ror.org/04jpkas74 Albertinen Diakoniewerk'),
(67715, 'https://ror.org/021wky884', 'de', 1, 'https://ror.org/021wky884 St. Vincentius-Kliniken'),
(67716, 'https://ror.org/01wwsba50', 'de', 1, 'https://ror.org/01wwsba50 Zentrum für Rhinologie und Allergologie'),
(67717, 'https://ror.org/01dfmc653', 'de', 1, 'https://ror.org/01dfmc653 Krankenhaus Sachsenhausen'),
(67718, 'https://ror.org/02mwtkt95', 'en', 1, 'https://ror.org/02mwtkt95 Deutschen Zentrums für Kinder- und Jugendrheumatologie German Center for Pediatric and Adolescent Rheumatology'),
(67719, 'https://ror.org/05r2e4v78', 'de', 1, 'https://ror.org/05r2e4v78 BDH-Klinik Elzach'),
(67720, 'https://ror.org/05pef1484', 'de', 1, 'https://ror.org/05pef1484 Klinikum Links der Weser'),
(67721, 'https://ror.org/01ayxmp98', 'de', 1, 'https://ror.org/01ayxmp98 GFO Kliniken Bonn St. Marien-Hospital Bonn'),
(67722, 'https://ror.org/01s0fdm87', 'de', 1, 'https://ror.org/01s0fdm87 Malteser Waldkrankenhaus Erlangen'),
(67723, 'https://ror.org/01wvejv85', 'de', 1, 'https://ror.org/01wvejv85 Kliniken Maria Hilf'),
(67724, 'https://ror.org/0131as255', 'en', 1, 'https://ror.org/0131as255 Auditory Valley'),
(67725, 'https://ror.org/046tk5b58', 'no_lang_code', 1, 'https://ror.org/046tk5b58 Wala Heilmittel (Germany)'),
(67726, 'https://ror.org/0451dft51', 'no_lang_code', 1, 'https://ror.org/0451dft51 Ecofys (Germany)'),
(67727, 'https://ror.org/02awzpt50', 'de', 1, 'https://ror.org/02awzpt50 Agaplesion Frankfurter Diakonie Kliniken'),
(67728, 'https://ror.org/036j7xe27', 'de', 1, 'https://ror.org/036j7xe27 Augusta-Kranken-Anstalt'),
(67729, 'https://ror.org/02rx89054', 'de', 1, 'https://ror.org/02rx89054 Die Paracelsus Heilpraktikerschulen'),
(67730, 'https://ror.org/03daz6p93', 'de', 1, 'https://ror.org/03daz6p93 Evangelisches Klinikum Kƶln Weyertal'),
(67731, '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'),
(67732, 'https://ror.org/042a1e381', 'de', 1, 'https://ror.org/042a1e381 Clemenshospital Münster'),
(67733, 'https://ror.org/03sz41d72', 'de', 1, 'https://ror.org/03sz41d72 Südharz Klinikum'),
(67734, 'https://ror.org/01y36md93', 'de', 1, 'https://ror.org/01y36md93 Christoph-Dornier-Stiftung für Klinische Psychologie'),
(67735, 'https://ror.org/02kgsyn41', 'no_lang_code', 1, 'https://ror.org/02kgsyn41 Vacuumschmelze (Germany)'),
(67736, 'https://ror.org/01eggt963', 'de', 1, 'https://ror.org/01eggt963 Klinikum Lüdenscheid'),
(67737, 'https://ror.org/05k8q2h32', 'de', 1, 'https://ror.org/05k8q2h32 Institut für Dünnschichttechnologie und Mikrosensorik'),
(67738, 'https://ror.org/05h1ag309', 'de', 1, 'https://ror.org/05h1ag309 Marienhospital Gelsenkirchen'),
(67739, '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'),
(67740, 'https://ror.org/03snh5g40', 'de', 1, 'https://ror.org/03snh5g40 Ameos Klinikum Inntal'),
(67741, 'https://ror.org/01bynsf44', 'de', 1, 'https://ror.org/01bynsf44 Deutsche Akademie für Kinder- und Jugendmedizin'),
(67742, 'https://ror.org/00ke1nc44', 'de', 1, 'https://ror.org/00ke1nc44 Deutscher Beton- und Bautechnik-Verein'),
(67743, 'https://ror.org/05yk1x869', 'de', 1, 'https://ror.org/05yk1x869 Bezirkskrankenhaus Augsburg'),
(67744, 'https://ror.org/04xcr2824', 'en', 1, 'https://ror.org/04xcr2824 St. Anna Hospital'),
(67745, 'https://ror.org/03y19wk83', 'en', 1, 'https://ror.org/03y19wk83 Community Museum Project'),
(67746, 'https://ror.org/00ts92x19', 'de', 1, 'https://ror.org/00ts92x19 Bürgerhospital Frankfurt am Main'),
(67747, 'https://ror.org/035pc1920', 'en', 1, 'https://ror.org/035pc1920 German National Bone Marrow Donor Registry Zentrale Knochenmarkspender-Register Deutschland'),
(67748, 'https://ror.org/00qkegp41', 'de', 1, 'https://ror.org/00qkegp41 cts CaritasKlinikum Saarbrücken'),
(67749, 'https://ror.org/00xyype02', 'en', 1, 'https://ror.org/00xyype02 Community Woodlands Association'),
(67750, 'https://ror.org/040gtvq30', 'de', 1, 'https://ror.org/040gtvq30 Helios Endo-Klinik Hamburg'),
(67751, 'https://ror.org/02sk64d67', 'de', 1, 'https://ror.org/02sk64d67 Inn-Salzach-Klinikum');
INSERT INTO `rors` VALUES
(67752, 'https://ror.org/038xhby63', 'en', 1, 'https://ror.org/038xhby63 Comprehensive Cardiovascular'),
(67753, 'https://ror.org/05nawz538', 'en', 1, 'https://ror.org/05nawz538 Conect Association'),
(67754, 'https://ror.org/000erc082', 'en', 1, 'https://ror.org/000erc082 Conway Hall Ethical Society'),
(67755, 'https://ror.org/03hbejw10', 'en', 1, 'https://ror.org/03hbejw10 Collaborative Laboratory Services'),
(67756, 'https://ror.org/03aeskr81', 'en', 1, 'https://ror.org/03aeskr81 European Association for Biometrics'),
(67757, 'https://ror.org/03bxpek11', 'en', 1, 'https://ror.org/03bxpek11 Colonial Society of Massachusetts'),
(67758, 'https://ror.org/02cy8w246', 'en', 1, 'https://ror.org/02cy8w246 European Association of Archaeologists EvropskĆ” asociace archeologÅÆ'),
(67759, 'https://ror.org/02app9g37', 'en', 1, 'https://ror.org/02app9g37 Cool Farm Alliance'),
(67760, 'https://ror.org/00nrdj674', 'en', 1, 'https://ror.org/00nrdj674 Columbia Global Centers'),
(67761, 'https://ror.org/00v8ry163', 'en', 1, 'https://ror.org/00v8ry163 European Centre for Ecotoxicology and Toxicology of Chemicals'),
(67762, 'https://ror.org/004ee9657', 'en', 1, 'https://ror.org/004ee9657 Colwyn Bay Community Hospital'),
(67763, 'https://ror.org/018z6vq38', 'en', 1, 'https://ror.org/018z6vq38 CdLS Foundation UK & Ireland'),
(67764, 'https://ror.org/0426a7r83', 'en', 1, 'https://ror.org/0426a7r83 European Communication Research and Education Association'),
(67765, 'https://ror.org/04v9yk034', 'en', 1, 'https://ror.org/04v9yk034 Cornwall Museums Partnership'),
(67766, 'https://ror.org/02qesd198', 'en', 1, 'https://ror.org/02qesd198 Public Media Alliance'),
(67767, 'https://ror.org/0517ad239', 'en', 1, 'https://ror.org/0517ad239 Cornwall Partnership NHS Foundation Trust'),
(67768, 'https://ror.org/03dywr773', 'en', 1, 'https://ror.org/03dywr773 Community-Campus Partnerships for Health'),
(67769, 'https://ror.org/02nd24c78', 'en', 1, 'https://ror.org/02nd24c78 Men''s Health Forum'),
(67770, 'https://ror.org/00z8qb234', 'en', 1, 'https://ror.org/00z8qb234 Country Land and Business Association'),
(67771, 'https://ror.org/03wjazp93', 'no_lang_code', 1, 'https://ror.org/03wjazp93 Express Medicals (United Kingdom)'),
(67772, 'https://ror.org/01fe85m15', 'en', 1, 'https://ror.org/01fe85m15 Eyebeam'),
(67773, 'https://ror.org/05dxne691', 'en', 1, 'https://ror.org/05dxne691 European Public Health Association'),
(67774, 'https://ror.org/05t90a350', 'en', 1, 'https://ror.org/05t90a350 Fab Foundation'),
(67775, 'https://ror.org/0279ae125', 'en', 1, 'https://ror.org/0279ae125 Fordingbridge Museum Trust'),
(67776, 'https://ror.org/05xhx0t16', 'en', 1, 'https://ror.org/05xhx0t16 The Fairbanking Foundation'),
(67777, 'https://ror.org/03yc1zp27', 'en', 1, 'https://ror.org/03yc1zp27 European Second Language Association'),
(67778, 'https://ror.org/025ardq11', 'en', 1, 'https://ror.org/025ardq11 Forest Trends'),
(67779, 'https://ror.org/01mqrn417', 'en', 1, 'https://ror.org/01mqrn417 Coram'),
(67780, 'https://ror.org/05s6aww72', 'no_lang_code', 1, 'https://ror.org/05s6aww72 Zoetis (United Kingdom)'),
(67781, 'https://ror.org/0186mhr93', 'en', 1, 'https://ror.org/0186mhr93 European Society for Paediatric Oncology'),
(67782, 'https://ror.org/04y723v43', 'en', 1, 'https://ror.org/04y723v43 Driving Mobility'),
(67783, 'https://ror.org/03wfbz902', 'en', 1, 'https://ror.org/03wfbz902 Foster Care Associates Scotland'),
(67784, 'https://ror.org/056ph9112', 'en', 1, 'https://ror.org/056ph9112 Foundation for Common Land'),
(67785, 'https://ror.org/04wbhfm32', 'en', 1, 'https://ror.org/04wbhfm32 Exercise Science Consulting'),
(67786, 'https://ror.org/01ycfmb97', 'en', 1, 'https://ror.org/01ycfmb97 Foundation for Water Research'),
(67787, 'https://ror.org/025a7c117', 'en', 1, 'https://ror.org/025a7c117 Federation of Small Businesses'),
(67788, 'https://ror.org/0077tt432', 'en', 1, 'https://ror.org/0077tt432 Freud Museum'),
(67789, 'https://ror.org/00e2y6338', 'en', 1, 'https://ror.org/00e2y6338 Centre for Nursing Innovation'),
(67790, 'https://ror.org/05bmkf081', 'en', 1, 'https://ror.org/05bmkf081 Friends of Basrah Museum متحف البصرة'),
(67791, 'https://ror.org/02vt7ey12', 'en', 1, 'https://ror.org/02vt7ey12 FenArch'),
(67792, 'https://ror.org/00x43vj55', 'en', 1, 'https://ror.org/00x43vj55 Foundation Scotland'),
(67793, 'https://ror.org/04ctzs969', 'en', 1, 'https://ror.org/04ctzs969 Friends of the National Railway Museum'),
(67794, 'https://ror.org/05kc40c41', 'en', 1, 'https://ror.org/05kc40c41 Phoenix Futures'),
(67795, 'https://ror.org/04nzg6m33', 'en', 1, 'https://ror.org/04nzg6m33 Foundation Tallinn 2011 Sihtasutus Tallinn 2011 Ajalugu Š¦Š•Š›Š•Š’ŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• Ā«Š¢ŠŠ›Š›Š˜ŠŠ 2011Ā»'),
(67796, 'https://ror.org/031r1z972', 'en', 1, 'https://ror.org/031r1z972 Fetal Care Research Foundation'),
(67797, 'https://ror.org/05743ng93', 'en', 1, 'https://ror.org/05743ng93 Fife Coast and Countryside Trust'),
(67798, 'https://ror.org/03xepm880', 'no_lang_code', 1, 'https://ror.org/03xepm880 Fourth State (United Kingdom)'),
(67799, 'https://ror.org/05pgctg85', 'no_lang_code', 1, 'https://ror.org/05pgctg85 Fiji Museum'),
(67800, 'https://ror.org/019jheb81', 'en', 1, 'https://ror.org/019jheb81 Future Health Biobank'),
(67801, 'https://ror.org/01q15xv46', 'no_lang_code', 1, 'https://ror.org/01q15xv46 Financial Network Analytics (United Kingdom)'),
(67802, 'https://ror.org/0235g7a39', 'en', 1, 'https://ror.org/0235g7a39 Framework'),
(67803, 'https://ror.org/03xt9b909', 'en', 1, 'https://ror.org/03xt9b909 Galt Museum & Archives'),
(67804, 'https://ror.org/02wxpbn78', 'en', 1, 'https://ror.org/02wxpbn78 Findhorn Foundation'),
(67805, 'https://ror.org/009c3m506', 'no_lang_code', 1, 'https://ror.org/009c3m506 Gamma HealthCare (United States)'),
(67806, 'https://ror.org/039e9be94', 'en', 1, 'https://ror.org/039e9be94 Garden Street Academy'),
(67807, 'https://ror.org/04m3ze057', 'no_lang_code', 1, 'https://ror.org/04m3ze057 Bioinduction (United Kingdom)'),
(67808, 'https://ror.org/04aatd066', 'en', 1, 'https://ror.org/04aatd066 Franco-British Council'),
(67809, 'https://ror.org/054hzcj81', 'en', 1, 'https://ror.org/054hzcj81 Fintry Development Trust'),
(67810, 'https://ror.org/049hvrk60', 'en', 1, 'https://ror.org/049hvrk60 Fred Roche Foundation'),
(67811, 'https://ror.org/030ypsd98', 'en', 1, 'https://ror.org/030ypsd98 Free Word'),
(67812, 'https://ror.org/05xjndf54', 'en', 1, 'https://ror.org/05xjndf54 Freedom Festival Arts Trust'),
(67813, 'https://ror.org/01xdqzr09', 'en', 1, 'https://ror.org/01xdqzr09 The Geffrye Museum of the Home'),
(67814, 'https://ror.org/022aez802', 'en', 1, 'https://ror.org/022aez802 Shenyang First People''s Hospital ę²ˆé˜³åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(67815, 'https://ror.org/02seb1k33', 'en', 1, 'https://ror.org/02seb1k33 Freight Transport Association'),
(67816, 'https://ror.org/05xwnpp97', 'no_lang_code', 1, 'https://ror.org/05xwnpp97 Flexicare (United Kingdom)'),
(67817, 'https://ror.org/04e3cb039', 'en', 1, 'https://ror.org/04e3cb039 French Institute for Research in Africa'),
(67818, 'https://ror.org/00a43hv69', 'no_lang_code', 1, 'https://ror.org/00a43hv69 Benchmark (United Kingdom)'),
(67819, 'https://ror.org/00wqws496', 'fr', 1, 'https://ror.org/00wqws496 Institut FranƧais de Rabat'),
(67820, 'https://ror.org/01xpndd58', 'en', 1, 'https://ror.org/01xpndd58 GeoEnergy Research Centre'),
(67821, 'https://ror.org/01108tk20', 'en', 1, 'https://ror.org/01108tk20 Deutsche Vereinigung für Sportwissenschaft German Society of Sport Science'),
(67822, 'https://ror.org/058n53b84', 'en', 1, 'https://ror.org/058n53b84 Geographical Association'),
(67823, 'https://ror.org/05dnjaa32', 'es', 1, 'https://ror.org/05dnjaa32 Geophysical Institute of Peru Instituto GeofĆ­sico del PerĆŗ'),
(67824, 'https://ror.org/00c6b0n10', 'en', 1, 'https://ror.org/00c6b0n10 J. Paul Getty Museum'),
(67825, 'https://ror.org/04zjrqq94', 'en', 1, 'https://ror.org/04zjrqq94 George Sexton Associates'),
(67826, 'https://ror.org/05ftdtn89', 'en', 1, 'https://ror.org/05ftdtn89 Greater Manchester Police Museum & Archives'),
(67827, 'https://ror.org/049b1yp65', 'en', 1, 'https://ror.org/049b1yp65 Ghana Museums and Monuments Board'),
(67828, 'https://ror.org/05gdhyx59', 'en', 1, 'https://ror.org/05gdhyx59 The Georgian Concert Society'),
(67829, 'https://ror.org/03qa33147', 'en', 1, 'https://ror.org/03qa33147 Gladstone Pottery Museum'),
(67830, 'https://ror.org/02qq5pa23', 'no_lang_code', 1, 'https://ror.org/02qq5pa23 Geospatial Research (United Kingdom)'),
(67831, 'https://ror.org/017sc6v85', 'en', 1, 'https://ror.org/017sc6v85 Glasgow and West of Scotland Forum of Housing Associations'),
(67832, 'https://ror.org/01shrfv13', 'en', 1, 'https://ror.org/01shrfv13 International Association for the History of Religions'),
(67833, 'https://ror.org/0303trx77', 'en', 1, 'https://ror.org/0303trx77 Green and Seidner Family Practice Associates'),
(67834, 'https://ror.org/02arr6933', 'en', 1, 'https://ror.org/02arr6933 Centre for Contemporary Arts'),
(67835, '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'),
(67836, 'https://ror.org/004qqsw05', 'en', 1, 'https://ror.org/004qqsw05 Glasgow Centre for Inclusive Living'),
(67837, 'https://ror.org/02s9xjj68', 'en', 1, 'https://ror.org/02s9xjj68 Hansard Society'),
(67838, 'https://ror.org/02tf15f56', 'en', 1, 'https://ror.org/02tf15f56 Gregson Arts & Community Centre'),
(67839, 'https://ror.org/01q0egy64', 'no_lang_code', 1, 'https://ror.org/01q0egy64 Hanson & Associates (United Kingdom)'),
(67840, 'https://ror.org/03zvet229', 'en', 1, 'https://ror.org/03zvet229 Groninger Museum'),
(67841, 'https://ror.org/000s5ry87', 'en', 1, 'https://ror.org/000s5ry87 Glasgow West Housing Association'),
(67842, 'https://ror.org/03nm8wc96', 'en', 1, 'https://ror.org/03nm8wc96 Glenbow Museum'),
(67843, 'https://ror.org/03mqht986', 'no_lang_code', 1, 'https://ror.org/03mqht986 LogMeIn (United Kingdom)'),
(67844, 'https://ror.org/03m56sb16', 'en', 1, 'https://ror.org/03m56sb16 Gloag Foundation'),
(67845, 'https://ror.org/01smzda60', 'en', 1, 'https://ror.org/01smzda60 Global Canopy'),
(67846, 'https://ror.org/05ap64c35', 'no_lang_code', 1, 'https://ror.org/05ap64c35 Harare Central Hospital'),
(67847, 'https://ror.org/00q5t6695', 'no_lang_code', 1, 'https://ror.org/00q5t6695 Harland Medical Systems (United States)'),
(67848, 'https://ror.org/04jw55602', 'en', 1, 'https://ror.org/04jw55602 Global Stem cell & Regenerative medicine Acceleration Center'),
(67849, 'https://ror.org/01xzfht26', 'en', 1, 'https://ror.org/01xzfht26 Guide Dogs'),
(67850, 'https://ror.org/02mjbb212', 'ga', 1, 'https://ror.org/02mjbb212 Glór'),
(67851, 'https://ror.org/0229rjp19', 'en', 1, 'https://ror.org/0229rjp19 Health Action International'),
(67852, 'https://ror.org/02davjz41', 'en', 1, 'https://ror.org/02davjz41 Gunnersbury'),
(67853, 'https://ror.org/025je9g43', 'en', 1, 'https://ror.org/025je9g43 Glossop Heritage Trust'),
(67854, 'https://ror.org/01ssng043', 'en', 1, 'https://ror.org/01ssng043 Gurkha Welfare Trust'),
(67855, 'https://ror.org/007zz7317', 'no_lang_code', 1, 'https://ror.org/007zz7317 Health Action Partnership International (United Kingdom)'),
(67856, 'https://ror.org/024x1z891', 'en', 1, 'https://ror.org/024x1z891 Gloucestershire Wildlife Trust'),
(67857, 'https://ror.org/0468szt35', 'en', 1, 'https://ror.org/0468szt35 Gwynedd Archaeological Trust'),
(67858, 'https://ror.org/02fxg2r05', 'en', 1, 'https://ror.org/02fxg2r05 H-Net: Humanities & Social Sciences Online'),
(67859, 'https://ror.org/034a0hk59', 'en', 1, 'https://ror.org/034a0hk59 Health Innovation Manchester'),
(67860, 'https://ror.org/03pm6jn74', 'en', 1, 'https://ror.org/03pm6jn74 Health Nest Uganda'),
(67861, 'https://ror.org/04eb4dd81', 'en', 1, 'https://ror.org/04eb4dd81 Herefordshire & Worcestershire Earth Heritage Trust'),
(67862, 'https://ror.org/02q53zc57', 'en', 1, 'https://ror.org/02q53zc57 Hackney Museum'),
(67863, 'https://ror.org/01zdwy980', 'en', 1, 'https://ror.org/01zdwy980 Goldsmiths Community Centre'),
(67864, 'https://ror.org/05n8k2j59', 'en', 1, 'https://ror.org/05n8k2j59 Good Things Foundation'),
(67865, 'https://ror.org/0108dmg51', 'en', 1, 'https://ror.org/0108dmg51 The Hakluyt Society'),
(67866, 'https://ror.org/026e7vh85', 'no_lang_code', 1, 'https://ror.org/026e7vh85 Goodmark Medical (United States)'),
(67867, 'https://ror.org/001m3mk55', 'no_lang_code', 1, 'https://ror.org/001m3mk55 Healthcare over Internet Protocol Community Interest Company (United Kingdom)'),
(67868, 'https://ror.org/02dqn4533', 'en', 1, 'https://ror.org/02dqn4533 Halsway Manor National Centre for Folk Arts'),
(67869, 'https://ror.org/01x9n7m08', 'en', 1, 'https://ror.org/01x9n7m08 Govanhill Housing Association'),
(67870, 'https://ror.org/04edx5729', 'en', 1, 'https://ror.org/04edx5729 Turner-Fairbank Highway Research Center'),
(67871, 'https://ror.org/03ss3kc28', 'en', 1, 'https://ror.org/03ss3kc28 HealthWORKS Newcastle'),
(67872, 'https://ror.org/02edgp803', 'en', 1, 'https://ror.org/02edgp803 Grace Eyre'),
(67873, 'https://ror.org/05mf35n34', 'es', 1, 'https://ror.org/05mf35n34 Hospital Base'),
(67874, 'https://ror.org/00dw32w32', 'en', 1, 'https://ror.org/00dw32w32 The Healthy Pizza Company'),
(67875, 'https://ror.org/00jreav89', 'es', 1, 'https://ror.org/00jreav89 Hospital Base'),
(67876, 'https://ror.org/01tkrhw05', 'es', 1, 'https://ror.org/01tkrhw05 Hospital ClĆ­nico FUSAT'),
(67877, 'https://ror.org/01jpyha72', 'en', 1, 'https://ror.org/01jpyha72 The Heather Trust'),
(67878, 'https://ror.org/04bwj5j23', 'en', 1, 'https://ror.org/04bwj5j23 Alternative Technology Centre'),
(67879, 'https://ror.org/01sxva348', 'es', 1, 'https://ror.org/01sxva348 Hospital d''Igualada'),
(67880, 'https://ror.org/035rpst33', 'pt', 1, 'https://ror.org/035rpst33 Hospital das ClĆ­nicas da Universidade Federal de Minas Gerais'),
(67881, 'https://ror.org/03s13k126', 'pt', 1, 'https://ror.org/03s13k126 Hospital das Clínicas Samuel Libânio'),
(67882, 'https://ror.org/05r8kh365', 'en', 1, 'https://ror.org/05r8kh365 Helen Bamber Foundation'),
(67883, 'https://ror.org/05kgh1y38', 'es', 1, 'https://ror.org/05kgh1y38 Hospital de Carabineros'),
(67884, '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'),
(67885, 'https://ror.org/02ar1p116', 'es', 1, 'https://ror.org/02ar1p116 Hospital de Referencia La Equina'),
(67886, 'https://ror.org/026537666', 'en', 1, 'https://ror.org/026537666 Helen Storey Foundation'),
(67887, 'https://ror.org/0093ddg91', 'de', 1, 'https://ror.org/0093ddg91 NiedersƤchsisches Landesgesundheitsamt'),
(67888, 'https://ror.org/035zr6437', 'es', 1, 'https://ror.org/035zr6437 Hospital Dipreca'),
(67889, 'https://ror.org/026ped584', 'es', 1, 'https://ror.org/026ped584 Hospital Santiago Oriente - Dr. Luis Tisne Brousse'),
(67890, 'https://ror.org/03z6vda50', 'en', 1, 'https://ror.org/03z6vda50 Fachhochschule für die Wirtschaft Hannover University of Applied Sciences FHDW Hannover'),
(67891, 'https://ror.org/00fzeeb88', 'de', 1, 'https://ror.org/00fzeeb88 Landesamt für Soziales und Versorgung des Landes Brandenburg'),
(67892, 'https://ror.org/00jxnw682', 'ms', 1, 'https://ror.org/00jxnw682 Hospital Tuanku Ja’afar'),
(67893, 'https://ror.org/027nnzv91', 'es', 1, 'https://ror.org/027nnzv91 Hospital Italiano La Plata'),
(67894, 'https://ror.org/04wvz8b06', 'en', 1, 'https://ror.org/04wvz8b06 Hospitalfield'),
(67895, 'https://ror.org/00jfgw542', 'ms', 1, 'https://ror.org/00jfgw542 Hospital Sultanah Nur Zahirah'),
(67896, 'https://ror.org/03vgw1v49', 'en', 1, 'https://ror.org/03vgw1v49 Bundesamt für Migration und Flüchtlinge Federal Office for Migration and Refugees'),
(67897, 'https://ror.org/02k8em959', 'en', 1, 'https://ror.org/02k8em959 Housing Studies Association'),
(67898, 'https://ror.org/04a7hfh52', 'en', 1, 'https://ror.org/04a7hfh52 Howard Cottage Housing Association'),
(67899, 'https://ror.org/01xhhwe60', 'en', 1, 'https://ror.org/01xhhwe60 Bundesministerium der Justiz und für Verbraucherschutz Federal Ministry of Justice and Consumer Protection'),
(67900, 'https://ror.org/0308a9489', 'no_lang_code', 1, 'https://ror.org/0308a9489 Bristol Maid (United Kingdom)'),
(67901, 'https://ror.org/04713pn08', 'en', 1, 'https://ror.org/04713pn08 Huddersfield Local History Society'),
(67902, 'https://ror.org/056wznz27', 'de', 1, 'https://ror.org/056wznz27 Landesamt für Denkmalpflege Sachsen'),
(67903, 'https://ror.org/02k6hnt94', 'pt', 1, 'https://ror.org/02k6hnt94 Hospital Napoleão Laureano'),
(67904, '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'),
(67905, 'https://ror.org/05831r008', 'de', 1, 'https://ror.org/05831r008 Institut für Zuckerrübenforschung'),
(67906, 'https://ror.org/021eps607', 'de', 1, 'https://ror.org/021eps607 Hans-Bredow-Institut Hans-Bredow-Institute'),
(67907, 'https://ror.org/04hv2da60', 'no_lang_code', 1, 'https://ror.org/04hv2da60 i2 Media Research (United Kingdom)'),
(67908, 'https://ror.org/01qynw361', 'ms', 1, 'https://ror.org/01qynw361 Hospital Raja Perempuan Zainab II'),
(67909, 'https://ror.org/008pyv383', 'no_lang_code', 1, 'https://ror.org/008pyv383 i2r Medical (United Kingdom)'),
(67910, 'https://ror.org/01j5w9y89', 'en', 1, 'https://ror.org/01j5w9y89 The IARS International Institute'),
(67911, 'https://ror.org/0238mgj23', 'es', 1, 'https://ror.org/0238mgj23 Hospital Regional de Antofagasta'),
(67912, 'https://ror.org/0405v9k44', 'no_lang_code', 1, 'https://ror.org/0405v9k44 International Centre for Advanced Materials (United Kingdom)'),
(67913, 'https://ror.org/05d8p0254', 'es', 1, 'https://ror.org/05d8p0254 Hospital Regional de Arica Doctor Juan NoƩ Crevani'),
(67914, 'https://ror.org/04yzyns28', 'es', 1, 'https://ror.org/04yzyns28 Hospital Regional de Talca'),
(67915, 'https://ror.org/03h7pxc12', 'no_lang_code', 1, 'https://ror.org/03h7pxc12 Iceotope Technologies (United Kingdom)'),
(67916, 'https://ror.org/05ct4s596', 'en', 1, 'https://ror.org/05ct4s596 PLA Academy of Military Science 中国人民解放军军事科学院'),
(67917, 'https://ror.org/00d0y9x67', 'no_lang_code', 1, 'https://ror.org/00d0y9x67 Unlimited Group (United Kingdom)'),
(67918, 'https://ror.org/01shzby30', 'en', 1, 'https://ror.org/01shzby30 Industry and Parliament Trust'),
(67919, 'https://ror.org/01zpte707', 'en', 1, 'https://ror.org/01zpte707 Infrastructure Transitions Research Consortium'),
(67920, 'https://ror.org/04vx2nc87', 'no_lang_code', 1, 'https://ror.org/04vx2nc87 Igennus Healthcare Nutrition (United Kingdom)'),
(67921, 'https://ror.org/048par152', 'no_lang_code', 1, 'https://ror.org/048par152 Ingenious Targeting Laboratory (United States)'),
(67922, 'https://ror.org/00w7r8d30', 'en', 1, 'https://ror.org/00w7r8d30 The Hepatitis C Trust'),
(67923, 'https://ror.org/05qxvxf91', 'en', 1, 'https://ror.org/05qxvxf91 iHealth'),
(67924, 'https://ror.org/01f4evc04', 'en', 1, 'https://ror.org/01f4evc04 Culture Coventry'),
(67925, 'https://ror.org/02fddhv21', 'en', 1, 'https://ror.org/02fddhv21 Institute of Healthcare Engineering and Estate Management'),
(67926, 'https://ror.org/018rrky13', 'no_lang_code', 1, 'https://ror.org/018rrky13 Lanarkshire Enterprise Services Limited (United Kingdom)'),
(67927, 'https://ror.org/029587y03', 'en', 1, 'https://ror.org/029587y03 Ilfracombe Museum'),
(67928, 'https://ror.org/05e371w82', 'en', 1, 'https://ror.org/05e371w82 Hereford Health and Safety Group'),
(67929, 'https://ror.org/02gdxv606', 'no_lang_code', 1, 'https://ror.org/02gdxv606 Insect Research Systems (United Kingdom)'),
(67930, 'https://ror.org/0173en609', 'en', 1, 'https://ror.org/0173en609 In Flanders Fields Museum'),
(67931, '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'),
(67932, 'https://ror.org/04sgq7503', 'no_lang_code', 1, 'https://ror.org/04sgq7503 India Habitat Centre भारत ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤¾ą¤ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(67933, 'https://ror.org/03af8y353', 'no_lang_code', 1, 'https://ror.org/03af8y353 Hermes Medical Solutions (United Kingdom)'),
(67934, 'https://ror.org/05btsbq39', 'en', 1, 'https://ror.org/05btsbq39 Institute of Chartered Accountants in England and Wales'),
(67935, 'https://ror.org/01txftm96', 'en', 1, 'https://ror.org/01txftm96 Hertford County Hospital'),
(67936, 'https://ror.org/00eb43c50', 'en', 1, 'https://ror.org/00eb43c50 Institute for Justice & Democracy in Haiti'),
(67937, 'https://ror.org/01sy7jy68', 'nl', 1, 'https://ror.org/01sy7jy68 Stichting Hester'),
(67938, 'https://ror.org/02c10cc21', 'en', 1, 'https://ror.org/02c10cc21 Hft'),
(67939, 'https://ror.org/02znmjj29', 'no_lang_code', 1, 'https://ror.org/02znmjj29 High Force Research (United Kingdom)'),
(67940, 'https://ror.org/00jmvpm31', 'en', 1, 'https://ror.org/00jmvpm31 Institution of Engineering Designers'),
(67941, 'https://ror.org/032jca185', 'en', 1, 'https://ror.org/032jca185 Institute for Human Rights and Development in Africa'),
(67942, 'https://ror.org/0563brw86', 'en', 1, 'https://ror.org/0563brw86 Institute of Industry Analyst Relations'),
(67943, 'https://ror.org/04ve58z79', 'en', 1, 'https://ror.org/04ve58z79 Insigneo'),
(67944, 'https://ror.org/01zhys576', 'en', 1, 'https://ror.org/01zhys576 Institute of Practitioners in Advertising'),
(67945, 'https://ror.org/05fwhaq12', 'en', 1, 'https://ror.org/05fwhaq12 Higher Education Statistics Agency'),
(67946, 'https://ror.org/04h347b80', 'en', 1, 'https://ror.org/04h347b80 Institute of Art and Ideas'),
(67947, 'https://ror.org/036wgjt32', 'en', 1, 'https://ror.org/036wgjt32 Institute for Research in Schools'),
(67948, 'https://ror.org/030b5a298', 'en', 1, 'https://ror.org/030b5a298 Japan Institute of International Affairs ę—„ęœ¬å›½éš›å•é”Œē ”ē©¶ę‰€'),
(67949, 'https://ror.org/04ehnbe71', 'en', 1, 'https://ror.org/04ehnbe71 Generation 2.0 for Rights, Equality & Diversity'),
(67950, 'https://ror.org/01z6vsq11', 'en', 1, 'https://ror.org/01z6vsq11 Heritage Medical Research Clinic'),
(67951, 'https://ror.org/00wjwzs60', 'en', 1, 'https://ror.org/00wjwzs60 Institute for Sound & Music'),
(67952, 'https://ror.org/03z50sg96', 'en', 1, 'https://ror.org/03z50sg96 Institute for Conflict Research'),
(67953, 'https://ror.org/05gzzg873', 'en', 1, 'https://ror.org/05gzzg873 Institute for Voluntary Action Research'),
(67954, 'https://ror.org/00w6sdm89', 'en', 1, 'https://ror.org/00w6sdm89 Institute for Cultural Diplomacy'),
(67955, 'https://ror.org/01pg0y117', 'en', 1, 'https://ror.org/01pg0y117 The Institute for Food Brain and Behaviour'),
(67956, 'https://ror.org/01hg6wr34', 'es', 1, 'https://ror.org/01hg6wr34 Instituto de Lengua y Cultura Aymara'),
(67957, 'https://ror.org/03hr98c08', 'en', 1, 'https://ror.org/03hr98c08 The History Teachers'' Association of Australia'),
(67958, 'https://ror.org/04v5fxp58', 'en', 1, 'https://ror.org/04v5fxp58 Institute of Cast Metals Engineers'),
(67959, 'https://ror.org/05f32fm39', 'en', 1, 'https://ror.org/05f32fm39 Hadejia Jama’are Komadugu Yobe Basin-Trust Fund'),
(67960, 'https://ror.org/02q2kw246', 'en', 1, 'https://ror.org/02q2kw246 The Institute of Concrete Technology'),
(67961, 'https://ror.org/02j79g662', 'en', 1, 'https://ror.org/02j79g662 Holocaust Educational Trust'),
(67962, 'https://ror.org/02n57gs70', 'en', 1, 'https://ror.org/02n57gs70 Holocaust Survivors Friendship Association'),
(67963, 'https://ror.org/038mf7084', 'en', 1, 'https://ror.org/038mf7084 Institute of Directors'),
(67964, 'https://ror.org/04abpa862', 'no_lang_code', 1, 'https://ror.org/04abpa862 Holst Centre (Netherlands)'),
(67965, 'https://ror.org/022jej057', 'en', 1, 'https://ror.org/022jej057 Institute of Economic Development'),
(67966, 'https://ror.org/00zyky634', 'en', 1, 'https://ror.org/00zyky634 Institute of Family Therapy'),
(67967, 'https://ror.org/04tk9hj58', 'no_lang_code', 1, 'https://ror.org/04tk9hj58 Hong Kong Maritime Museum é¦™ęøÆęµ·äŗ‹åšē‰©é¤Ø'),
(67968, 'https://ror.org/04ffrx392', 'en', 1, 'https://ror.org/04ffrx392 Chartered Institute for Archaeologists'),
(67969, 'https://ror.org/01fv2q409', 'en', 1, 'https://ror.org/01fv2q409 Horniman Museum and Gardens'),
(67970, 'https://ror.org/04k7q3y31', 'en', 1, 'https://ror.org/04k7q3y31 Horse Hospital'),
(67971, 'https://ror.org/04fnrqd89', 'en', 1, 'https://ror.org/04fnrqd89 Institute of Food Biotechnology and Genomics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ харчової біотехнології та геноміки'),
(67972, 'https://ror.org/00f20ws83', 'es', 1, 'https://ror.org/00f20ws83 Hospital Angeles Clinica Londres'),
(67973, 'https://ror.org/036d5sh68', 'en', 1, 'https://ror.org/036d5sh68 Institute of Food Science & Technology'),
(67974, 'https://ror.org/02z66xs22', 'en', 1, 'https://ror.org/02z66xs22 Institute of Travel & Tourism'),
(67975, 'https://ror.org/042eye458', 'en', 1, 'https://ror.org/042eye458 Institution of Agricultural Engineers'),
(67976, 'https://ror.org/052g82050', 'pt', 1, 'https://ror.org/052g82050 Instituto Akatu'),
(67977, 'https://ror.org/002bahc84', 'en', 1, 'https://ror.org/002bahc84 Institute of Materials Finishing'),
(67978, 'https://ror.org/03qs0wq41', 'no_lang_code', 1, 'https://ror.org/03qs0wq41 Cervantes Institute'),
(67979, 'https://ror.org/0467kh241', 'pt', 1, 'https://ror.org/0467kh241 Grupo de Açãoe Estudos Ambientais'),
(67980, 'https://ror.org/03e5mh597', 'en', 1, 'https://ror.org/03e5mh597 Broadstairs College'),
(67981, 'https://ror.org/03g4bhz29', 'en', 1, 'https://ror.org/03g4bhz29 Canterbury College'),
(67982, 'https://ror.org/03h8wyx14', 'pt', 1, 'https://ror.org/03h8wyx14 Instituto Paulo Gontijo'),
(67983, 'https://ror.org/04wdbw215', 'en', 1, 'https://ror.org/04wdbw215 Dover Technical College'),
(67984, 'https://ror.org/02xf24951', 'en', 1, 'https://ror.org/02xf24951 Folkestone College'),
(67985, 'https://ror.org/03eg1sw22', 'en', 1, 'https://ror.org/03eg1sw22 Sheppey College'),
(67986, 'https://ror.org/0485zq002', 'no_lang_code', 1, 'https://ror.org/0485zq002 Integrated Medicines (United Kingdom)'),
(67987, 'https://ror.org/03y46nb69', 'no_lang_code', 1, 'https://ror.org/03y46nb69 Intelligent Medical Objects (United States)'),
(67988, 'https://ror.org/02wrp2347', 'en', 1, 'https://ror.org/02wrp2347 International Bar Association'),
(67989, 'https://ror.org/05m8k7t58', 'es', 1, 'https://ror.org/05m8k7t58 Instituto de Información Científica y Tecnológica'),
(67990, 'https://ror.org/05q86pe27', 'en', 1, 'https://ror.org/05q86pe27 Institute of Seismology Š”ŠµŠ¹ŃŠ¼Š¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(67991, 'https://ror.org/0114n8z16', 'en', 1, 'https://ror.org/0114n8z16 International Brecht Society'),
(67992, 'https://ror.org/01c961y89', 'en', 1, 'https://ror.org/01c961y89 International Broadcasting Trust'),
(67993, 'https://ror.org/01gr3kq91', 'en', 1, 'https://ror.org/01gr3kq91 Interamerican Society of Cardiology Sociedad Interamericana de CardiologĆ­a'),
(67994, 'https://ror.org/01y5haq28', 'en', 1, 'https://ror.org/01y5haq28 Intercultural Institute Timisoara'),
(67995, 'https://ror.org/05kks9d30', 'en', 1, 'https://ror.org/05kks9d30 Interdisciplinary Centre for Storage, Transformation and Upgrading of Thermal Energy'),
(67996, 'https://ror.org/0591ds558', 'en', 1, 'https://ror.org/0591ds558 Internal Displacement Monitoring Centre'),
(67997, 'https://ror.org/048tb3g40', 'en', 1, 'https://ror.org/048tb3g40 International Security and Development Center'),
(67998, 'https://ror.org/02hjmkw90', 'en', 1, 'https://ror.org/02hjmkw90 Accademia internazionale di Scienze Ambientali International Academy of Environmental Sciences'),
(67999, 'https://ror.org/008nvwa10', 'en', 1, 'https://ror.org/008nvwa10 International Centre for Women Playwrights'),
(68000, 'https://ror.org/03ja7dr12', 'en', 1, 'https://ror.org/03ja7dr12 International Air Transport Association'),
(68001, 'https://ror.org/02nart969', 'en', 1, 'https://ror.org/02nart969 International Aluminium Institute'),
(68002, 'https://ror.org/01mdxbf79', 'en', 1, 'https://ror.org/01mdxbf79 International Centre on Space Technologies for Natural and Cultural Heritage å›½é™…č‡Ŗē„¶äøŽę–‡åŒ–é—äŗ§ē©ŗé—“ęŠ€ęœÆäø­åæƒ'),
(68003, 'https://ror.org/01c1sry94', 'en', 1, 'https://ror.org/01c1sry94 International Solid Waste Association'),
(68004, 'https://ror.org/04zmpab64', 'en', 1, 'https://ror.org/04zmpab64 International Association for the Study of Traditional Environments'),
(68005, 'https://ror.org/02wfk0r79', 'en', 1, 'https://ror.org/02wfk0r79 IWW Water Centre IWW Zentrum Wasser'),
(68006, 'https://ror.org/03pr7sz08', 'en', 1, 'https://ror.org/03pr7sz08 International Association of Plumbing and Mechanical Officials'),
(68007, 'https://ror.org/02hcvme33', 'de', 1, 'https://ror.org/02hcvme33 Institut für Nichtklassische Chemie'),
(68008, 'https://ror.org/05ay42146', 'en', 1, 'https://ror.org/05ay42146 Internet Service Providers Association'),
(68009, 'https://ror.org/03mrdtb06', 'en', 1, 'https://ror.org/03mrdtb06 International Association of Teachers of English as a Foreign Language'),
(68010, 'https://ror.org/00666kk80', 'en', 1, 'https://ror.org/00666kk80 European Molecular Biology Conference'),
(68011, 'https://ror.org/050qymw35', 'no_lang_code', 1, 'https://ror.org/050qymw35 InTouch Health (United States)'),
(68012, 'https://ror.org/02gk9xs23', 'no_lang_code', 1, 'https://ror.org/02gk9xs23 Investigators Research Group (United States)'),
(68013, 'https://ror.org/01qxe7a32', 'en', 1, 'https://ror.org/01qxe7a32 The Investment Association'),
(68014, 'https://ror.org/045wtka37', 'no_lang_code', 1, 'https://ror.org/045wtka37 Izola General Hospital SploŔna BolniŔnica Izola'),
(68015, 'https://ror.org/01mhhtp02', 'en', 1, 'https://ror.org/01mhhtp02 J P French Associates'),
(68016, 'https://ror.org/05qwbfs63', 'en', 1, 'https://ror.org/05qwbfs63 Iowa Diabetes and Endocrinology Research Center'),
(68017, 'https://ror.org/04fyq4a48', 'en', 1, 'https://ror.org/04fyq4a48 Jana Sanskriti Centre for Theatre of the Oppressed'),
(68018, 'https://ror.org/04z172717', 'en', 1, 'https://ror.org/04z172717 Iraqi Al-Amal Association Ų¬Ł…Ų¹ŁŠŲ© الامل Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ© - Ł…ŁƒŲŖŲØ كركوك'),
(68019, 'https://ror.org/03ze5je62', 'no_lang_code', 1, 'https://ror.org/03ze5je62 EngineersHRW (United Kingdom)'),
(68020, 'https://ror.org/010719r63', 'en', 1, 'https://ror.org/010719r63 Atmospheric Observatory of Austral Patagonia Observatorio AtmosfƩrico de la Patagonia Austral'),
(68021, 'https://ror.org/04kesq777', 'en', 1, 'https://ror.org/04kesq777 European Centre for Living Technology'),
(68022, 'https://ror.org/03yza5b87', 'fr', 1, 'https://ror.org/03yza5b87 HƓpitaux Iris Sud'),
(68023, 'https://ror.org/0390vgx68', 'en', 1, 'https://ror.org/0390vgx68 European Theoretical Spectroscopy Facility'),
(68024, 'https://ror.org/02gnws810', 'en', 1, 'https://ror.org/02gnws810 Irish Cultural Centre'),
(68025, 'https://ror.org/0488wz367', 'en', 1, 'https://ror.org/0488wz367 Wuyi University 五邑大学'),
(68026, 'https://ror.org/02yjnch11', 'en', 1, 'https://ror.org/02yjnch11 Japanese Foundation for Multidisciplinary Treatment of Cancer ćŒć‚“é›†å­¦ēš„ę²»ē™‚ē ”ē©¶č²”å›£'),
(68027, 'https://ror.org/05xrbcc66', 'en', 1, 'https://ror.org/05xrbcc66 Advanced Science Research Center å…ˆē«ÆåŸŗē¤Žē ”ē©¶ć‚»ćƒ³ć‚æ'),
(68028, 'https://ror.org/04py12f74', 'no_lang_code', 1, 'https://ror.org/04py12f74 PublicPolicy.ie (Ireland)'),
(68029, 'https://ror.org/018sp9t05', 'en', 1, 'https://ror.org/018sp9t05 Irish World Heritage Centre'),
(68030, 'https://ror.org/0013y6044', 'en', 1, 'https://ror.org/0013y6044 Irish Jewish Museum'),
(68031, 'https://ror.org/04cx28z93', 'en', 1, 'https://ror.org/04cx28z93 Jeremy Gardner Associates'),
(68032, 'https://ror.org/03cxfcp49', 'en', 1, 'https://ror.org/03cxfcp49 Bangladesh Islamic Foundation ইসলামিক ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą§‡ą¦¶ą¦Ø বাংলাদেশ'),
(68033, 'https://ror.org/02kswk287', 'en', 1, 'https://ror.org/02kswk287 Isles of Scilly Museum'),
(68034, 'https://ror.org/01994hy95', 'en', 1, 'https://ror.org/01994hy95 Islington Museum'),
(68035, 'https://ror.org/04nwvkj48', 'en', 1, 'https://ror.org/04nwvkj48 International Comparative Literature Association'),
(68036, 'https://ror.org/005rgra64', 'en', 1, 'https://ror.org/005rgra64 Israeli Cultural Institute Izraeli KulturƔlis IntƩzet'),
(68037, 'https://ror.org/047740987', 'en', 1, 'https://ror.org/047740987 Jimmy Mac’s Centre'),
(68038, 'https://ror.org/04m9ftx85', 'en', 1, 'https://ror.org/04m9ftx85 Istanbul Foundation for Research and Education İSTANBUL ARAŞTIRMA VE EĞİTİM VAKFI'),
(68039, 'https://ror.org/03dwcee04', 'en', 1, 'https://ror.org/03dwcee04 Co.As.It.'),
(68040, 'https://ror.org/05jexhf05', 'no_lang_code', 1, 'https://ror.org/05jexhf05 John Regan Associates (United Kingdom)'),
(68041, 'https://ror.org/04yw9z443', 'no_lang_code', 1, 'https://ror.org/04yw9z443 iTaukei Trust Fund Board'),
(68042, 'https://ror.org/046wv1d24', 'no_lang_code', 1, 'https://ror.org/046wv1d24 Itres (Canada)'),
(68043, 'https://ror.org/01d016e60', 'en', 1, 'https://ror.org/01d016e60 Jonathan A Law & Associates'),
(68044, 'https://ror.org/00nmsgd25', 'en', 1, 'https://ror.org/00nmsgd25 Keith Khan Associates'),
(68045, 'https://ror.org/0031tkh25', 'en', 1, 'https://ror.org/0031tkh25 International Genetically Engineered Machine Foundation'),
(68046, 'https://ror.org/038rkt253', 'en', 1, 'https://ror.org/038rkt253 Kelvingrove Art Gallery and Museum'),
(68047, 'https://ror.org/038gr4r81', 'en', 1, 'https://ror.org/038gr4r81 Hawley Collection'),
(68048, 'https://ror.org/02g918154', 'en', 1, 'https://ror.org/02g918154 Kent Archaeological Society'),
(68049, 'https://ror.org/02yt07f63', 'en', 1, 'https://ror.org/02yt07f63 Kent History and Library Centre'),
(68050, 'https://ror.org/05w0zaf96', 'en', 1, 'https://ror.org/05w0zaf96 International Hydropower Association'),
(68051, 'https://ror.org/04n78zc82', 'en', 1, 'https://ror.org/04n78zc82 Kenya Health Informatics Association'),
(68052, 'https://ror.org/040t3et06', 'en', 1, 'https://ror.org/040t3et06 Keswick Museum'),
(68053, 'https://ror.org/01z654s56', 'en', 1, 'https://ror.org/01z654s56 Kharadar General Hospital کھارادر جنرل ہسپتال'),
(68054, 'https://ror.org/00jh87v98', 'en', 1, 'https://ror.org/00jh87v98 International Lesbian, Gay, Bisexual, Trans and Intersex Association'),
(68055, 'https://ror.org/01r3ct535', 'no_lang_code', 1, 'https://ror.org/01r3ct535 Kheiron Medical Technologies (United Kingdom)'),
(68056, 'https://ror.org/04dbzyc13', 'en', 1, 'https://ror.org/04dbzyc13 Khizra Foundation'),
(68057, 'https://ror.org/05ejdaa80', 'en', 1, 'https://ror.org/05ejdaa80 Khoj International Artists'' Association'),
(68058, 'https://ror.org/04dcbs719', 'en', 1, 'https://ror.org/04dcbs719 International Longevity Centre - India'),
(68059, 'https://ror.org/039qtbx12', 'en', 1, 'https://ror.org/039qtbx12 Kidney Associates'),
(68060, 'https://ror.org/0016std27', 'en', 1, 'https://ror.org/0016std27 International Maritime Organization'),
(68061, 'https://ror.org/0338yqm59', 'en', 1, 'https://ror.org/0338yqm59 Kinetica Museum'),
(68062, 'https://ror.org/02sv3ne29', 'en', 1, 'https://ror.org/02sv3ne29 Kaivalya Education Foundation'),
(68063, 'https://ror.org/027zjnr49', 'en', 1, 'https://ror.org/027zjnr49 International New Town Institute'),
(68064, 'https://ror.org/00be2g057', 'en', 1, 'https://ror.org/00be2g057 King Faisal Center for Research and Islamic Studies Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„ Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(68065, 'https://ror.org/05jnhtw66', 'en', 1, 'https://ror.org/05jnhtw66 King Hussein Foundation Ł…Ų¤Ų³Ų³Ų© Ų§Ł„Ł…Ł„Łƒ Ų§Ł„Ų­Ų³ŁŠŁ†'),
(68066, 'https://ror.org/02bnwry33', 'en', 1, 'https://ror.org/02bnwry33 Karnataka Health Promotion Trust'),
(68067, 'https://ror.org/04cecjb61', 'en', 1, 'https://ror.org/04cecjb61 Lancaster City Museum'),
(68068, 'https://ror.org/04qgafw47', 'en', 1, 'https://ror.org/04qgafw47 The Katie Piper Foundation'),
(68069, 'https://ror.org/05q6xw994', 'en', 1, 'https://ror.org/05q6xw994 International Research School of Planetary Sciences'),
(68070, 'https://ror.org/03k3mtb84', 'en', 1, 'https://ror.org/03k3mtb84 Kino Klassika Foundation'),
(68071, 'https://ror.org/03n3erz85', 'en', 1, 'https://ror.org/03n3erz85 Koshish Charitable Trust ą¤•ą„‹ą¤¶ą¤æą¤¶'),
(68072, 'https://ror.org/015zzsp20', 'en', 1, 'https://ror.org/015zzsp20 Kirkgate Centre'),
(68073, 'https://ror.org/02szhc144', 'en', 1, 'https://ror.org/02szhc144 London Irish Centre'),
(68074, 'https://ror.org/04n96a723', 'en', 1, 'https://ror.org/04n96a723 Kraszna-Krausz Foundation'),
(68075, 'https://ror.org/05wm18065', 'en', 1, 'https://ror.org/05wm18065 Kirklees & Calderdale Rape & Sexual Abuse Counselling Centre'),
(68076, 'https://ror.org/001fg0044', 'en', 1, 'https://ror.org/001fg0044 London Rebuilding Society'),
(68077, 'https://ror.org/04ss19q24', 'en', 1, 'https://ror.org/04ss19q24 Kirknewton Community Development Trust'),
(68078, 'https://ror.org/05q846d47', 'en', 1, 'https://ror.org/05q846d47 Kyoto Costume Institute äŗ¬éƒ½ęœé£¾ę–‡åŒ–ē ”ē©¶č²”å›£'),
(68079, 'https://ror.org/01hzg6v66', 'en', 1, 'https://ror.org/01hzg6v66 London Social Science'),
(68080, 'https://ror.org/011v30d49', 'en', 1, 'https://ror.org/011v30d49 Knowle West Healthy Living Centre'),
(68081, 'https://ror.org/04cnp9g56', 'en', 1, 'https://ror.org/04cnp9g56 Conservancies KZN'),
(68082, 'https://ror.org/0132q8e84', 'no_lang_code', 1, 'https://ror.org/0132q8e84 Longenecker and Associates (United States)'),
(68083, 'https://ror.org/00y3b8e38', 'en', 1, 'https://ror.org/00y3b8e38 Lorna Young Foundation'),
(68084, 'https://ror.org/01qvbxx84', 'no_lang_code', 1, 'https://ror.org/01qvbxx84 Medical Moulded Products (United Kingdom)'),
(68085, 'https://ror.org/02vw9ek23', 'pl', 1, 'https://ror.org/02vw9ek23 Dolnośląskie Centrum Onkologii'),
(68086, 'https://ror.org/03bm1r569', 'en', 1, 'https://ror.org/03bm1r569 Medical Prescription Services'),
(68087, 'https://ror.org/013cbkm39', 'en', 1, 'https://ror.org/013cbkm39 Luing Cattle Society'),
(68088, 'https://ror.org/05fexxx29', 'no_lang_code', 1, 'https://ror.org/05fexxx29 Lumen (United Kingdom)'),
(68089, 'https://ror.org/05qjzj338', 'pl', 1, 'https://ror.org/05qjzj338 Lambda Warszawa Stowarzyszenie Lambda Warszawa'),
(68090, 'https://ror.org/0306jdn93', 'en', 1, 'https://ror.org/0306jdn93 The Ethical Small Traders Association'),
(68091, 'https://ror.org/02bze1z02', 'en', 1, 'https://ror.org/02bze1z02 Luton Culture'),
(68092, 'https://ror.org/04z020c77', 'en', 1, 'https://ror.org/04z020c77 Landscape Research & Management'),
(68093, 'https://ror.org/059wwav72', 'no_lang_code', 1, 'https://ror.org/059wwav72 M C I SantƩ Animale (Morocco)'),
(68094, 'https://ror.org/05fpcda55', 'en', 1, 'https://ror.org/05fpcda55 Landscape Research Group'),
(68095, 'https://ror.org/01kw4bf10', 'en', 1, 'https://ror.org/01kw4bf10 Medicines Patent Pool'),
(68096, 'https://ror.org/022gg8876', 'no_lang_code', 1, 'https://ror.org/022gg8876 MIE Medical Research (United Kingdom)'),
(68097, 'https://ror.org/015y4yq74', 'en', 1, 'https://ror.org/015y4yq74 Language and Learning Foundation भाषा और ą¤øą„€ą¤–ą¤Øą¤¾ ą¤«ą¤¾ą¤‰ą¤‚ą¤”ą„‡ą¤¶ą¤Ø'),
(68098, 'https://ror.org/00a1grh69', 'en', 1, 'https://ror.org/00a1grh69 Medicon Village'),
(68099, 'https://ror.org/02v1vde28', 'no_lang_code', 1, 'https://ror.org/02v1vde28 MGT Capital Investments (United Kingdom)'),
(68100, 'https://ror.org/03md19g63', 'en', 1, 'https://ror.org/03md19g63 Lapido Media'),
(68101, 'https://ror.org/017sdfy20', 'en', 1, 'https://ror.org/017sdfy20 Medieval Settlement Research Group'),
(68102, 'https://ror.org/00nge9944', 'en', 1, 'https://ror.org/00nge9944 Law & Society Trust'),
(68103, 'https://ror.org/01rz1yn84', 'en', 1, 'https://ror.org/01rz1yn84 Law Centres Network'),
(68104, 'https://ror.org/01apxt611', 'en', 1, 'https://ror.org/01apxt611 Medway NHS Foundation Trust'),
(68105, 'https://ror.org/02rmnz491', 'en', 1, 'https://ror.org/02rmnz491 Magna'),
(68106, 'https://ror.org/05xa78572', 'en', 1, 'https://ror.org/05xa78572 Association of Mental Health Providers'),
(68107, 'https://ror.org/01byxcr66', 'en', 1, 'https://ror.org/01byxcr66 Learning and Work Institute'),
(68108, 'https://ror.org/0584sxj05', 'en', 1, 'https://ror.org/0584sxj05 Metal Industries Research & Development Centre é‡‘å±¬å·„ę„­ē ”ē©¶ē™¼å±•äø­åæƒ'),
(68109, 'https://ror.org/044691a51', 'en', 1, 'https://ror.org/044691a51 LearnPlay Foundation'),
(68110, 'https://ror.org/04yf6py31', 'en', 1, 'https://ror.org/04yf6py31 The Meththa Foundation'),
(68111, 'https://ror.org/01wa67h94', 'en', 1, 'https://ror.org/01wa67h94 Metropolitan Arts Centre'),
(68112, 'https://ror.org/051x1jz81', 'en', 1, 'https://ror.org/051x1jz81 Leeds Community Foundation'),
(68113, 'https://ror.org/04nx3q556', 'en', 1, 'https://ror.org/04nx3q556 Metropolitan Black Police Association'),
(68114, 'https://ror.org/01je6ev79', 'en', 1, 'https://ror.org/01je6ev79 Manor Gardens Welfare Trust'),
(68115, 'https://ror.org/03723ft34', 'en', 1, 'https://ror.org/03723ft34 Legal Policy Research Centre Центр ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Š½ŠøŃ правовой политики'),
(68116, 'https://ror.org/05nggxc52', 'en', 1, 'https://ror.org/05nggxc52 Marin Endocrine Care and Research'),
(68117, 'https://ror.org/0126z0220', 'en', 1, 'https://ror.org/0126z0220 Midlands Arts Centre'),
(68118, 'https://ror.org/0473dy216', 'en', 1, 'https://ror.org/0473dy216 Midland Heart'),
(68119, 'https://ror.org/03sdvv968', 'en', 1, 'https://ror.org/03sdvv968 Marine Science Coordination Committee'),
(68120, 'https://ror.org/019n3pt49', 'no_lang_code', 1, 'https://ror.org/019n3pt49 4SC (Germany)'),
(68121, 'https://ror.org/04hkn2n95', 'en', 1, 'https://ror.org/04hkn2n95 Milapfest'),
(68122, 'https://ror.org/05sb8nh13', 'en', 1, 'https://ror.org/05sb8nh13 The Military Intelligence Museum'),
(68123, 'https://ror.org/02kchqd71', 'en', 1, 'https://ror.org/02kchqd71 Milnbank Housing Association'),
(68124, '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'),
(68125, 'https://ror.org/04tvh6p44', 'no_lang_code', 1, 'https://ror.org/04tvh6p44 Lime Associates (United Kingdom)'),
(68126, 'https://ror.org/04xawry97', 'en', 1, 'https://ror.org/04xawry97 Lincolnshire Partnership NHS Foundation Trust'),
(68127, 'https://ror.org/043yzag23', 'no_lang_code', 1, 'https://ror.org/043yzag23 Mademoiselle Desserts (United Kingdom)'),
(68128, 'https://ror.org/04gfk4b59', 'en', 1, 'https://ror.org/04gfk4b59 Ministerio de Cultura Ministry of Culture'),
(68129, 'https://ror.org/02whsfz82', 'en', 1, 'https://ror.org/02whsfz82 Ministry of Defence'),
(68130, 'https://ror.org/00zznvx80', 'en', 1, 'https://ror.org/00zznvx80 The Linenhall Arts Centre'),
(68131, 'https://ror.org/03ebpdd69', 'no_lang_code', 1, 'https://ror.org/03ebpdd69 Liquids Research (United Kingdom)'),
(68132, 'https://ror.org/04sdakz38', 'en', 1, 'https://ror.org/04sdakz38 The Matthew Elvidge Trust'),
(68133, 'https://ror.org/01xvefs70', 'en', 1, 'https://ror.org/01xvefs70 Ministry of Health and Sports'),
(68134, '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'),
(68135, 'https://ror.org/03qj46y39', 'en', 1, 'https://ror.org/03qj46y39 Ministry of Labour, Social Security and Services'),
(68136, 'https://ror.org/05xh18273', 'en', 1, 'https://ror.org/05xh18273 Media Standards Trust'),
(68137, 'https://ror.org/0311bpv57', 'en', 1, 'https://ror.org/0311bpv57 Lisburn & Castlereagh City Council'),
(68138, 'https://ror.org/044ga3f28', 'en', 1, 'https://ror.org/044ga3f28 Medic Mobile'),
(68139, 'https://ror.org/037a1dk33', 'no_lang_code', 1, 'https://ror.org/037a1dk33 Medical Architecture (United Kingdom)'),
(68140, 'https://ror.org/03dj32m19', 'en', 1, 'https://ror.org/03dj32m19 Local Area Research & Intelligence Association'),
(68141, 'https://ror.org/02sgk6k14', 'en', 1, 'https://ror.org/02sgk6k14 Local Government Association'),
(68142, 'https://ror.org/04kxvwk47', 'en', 1, 'https://ror.org/04kxvwk47 Local Trust'),
(68143, 'https://ror.org/00h9tn549', 'en', 1, 'https://ror.org/00h9tn549 Missenden Centre'),
(68144, 'https://ror.org/04476hk95', 'en', 1, 'https://ror.org/04476hk95 Institute for Social and Economic Research'),
(68145, 'https://ror.org/01cb4q924', 'en', 1, 'https://ror.org/01cb4q924 London Arts in Health Forum'),
(68146, 'https://ror.org/01q78gf04', 'no_lang_code', 1, 'https://ror.org/01q78gf04 MJ Medical (United Kingdom)'),
(68147, 'https://ror.org/02fcqpe40', 'en', 1, 'https://ror.org/02fcqpe40 Municipal Association of Victoria'),
(68148, 'https://ror.org/05kb1ze13', 'ro', 1, 'https://ror.org/05kb1ze13 Spitalul Clinic Judetean Mures'),
(68149, 'https://ror.org/05c7mzp22', 'pt', 1, 'https://ror.org/05c7mzp22 Museu Afro Brasil'),
(68150, 'https://ror.org/00vp3mb10', 'en', 1, 'https://ror.org/00vp3mb10 Byron Museum of History'),
(68151, 'https://ror.org/00h6bkr27', 'en', 1, 'https://ror.org/00h6bkr27 Museum Ethnographers Group'),
(68152, 'https://ror.org/03a3rm692', 'en', 1, 'https://ror.org/03a3rm692 Museum of Australian Democracy'),
(68153, 'https://ror.org/05vpe6993', 'en', 1, 'https://ror.org/05vpe6993 Museum of East Anglian Life'),
(68154, 'https://ror.org/05x542h52', 'es', 1, 'https://ror.org/05x542h52 Museo Nacional de EtnografĆ­a y Folklore'),
(68155, 'https://ror.org/05hj4dk05', 'pt', 1, 'https://ror.org/05hj4dk05 Museu de Lamego'),
(68156, 'https://ror.org/006m3k312', 'en', 1, 'https://ror.org/006m3k312 Museo de la Memoria y los Derechos Humanos Museum of Memory and Human Rights'),
(68157, 'https://ror.org/02zggew82', 'en', 1, 'https://ror.org/02zggew82 Museum Of Modern Art'),
(68158, 'https://ror.org/03x8p5f11', 'en', 1, 'https://ror.org/03x8p5f11 Molecular Sciences Software Institute'),
(68159, 'https://ror.org/04046a831', 'en', 1, 'https://ror.org/04046a831 Mondo Foundation'),
(68160, 'https://ror.org/01b0sfz46', 'en', 1, 'https://ror.org/01b0sfz46 National Centre for Contemporary Arts Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ центр современного ŠøŃŠŗŃƒŃŃŃ‚ва'),
(68161, 'https://ror.org/02j7asw37', 'en', 1, 'https://ror.org/02j7asw37 Moray Art Centre'),
(68162, 'https://ror.org/02ad86n55', 'en', 1, 'https://ror.org/02ad86n55 More Associates'),
(68163, 'https://ror.org/03fr3nn32', 'en', 1, 'https://ror.org/03fr3nn32 National Centre for Resilience'),
(68164, 'https://ror.org/051xqea68', 'en', 1, 'https://ror.org/051xqea68 Moseley Community Development Trust'),
(68165, 'https://ror.org/01dkdqg26', 'no_lang_code', 1, 'https://ror.org/01dkdqg26 Mote Research (United Kingdom)'),
(68166, 'https://ror.org/05vcmd458', 'en', 1, 'https://ror.org/05vcmd458 National Childbirth Trust'),
(68167, 'https://ror.org/036515p55', 'en', 1, 'https://ror.org/036515p55 Museum of the History of Science'),
(68168, 'https://ror.org/00e3esm33', 'en', 1, 'https://ror.org/00e3esm33 National Civil War Centre'),
(68169, 'https://ror.org/02er1v340', 'en', 1, 'https://ror.org/02er1v340 Mourne Heritage Trust'),
(68170, 'https://ror.org/01e10kr47', 'en', 1, 'https://ror.org/01e10kr47 Museum of the Order of St John'),
(68171, 'https://ror.org/00dxccz84', 'en', 1, 'https://ror.org/00dxccz84 Mpumalanga Deparment of Health'),
(68172, 'https://ror.org/04mk94w26', 'en', 1, 'https://ror.org/04mk94w26 National Coastal Tourism Academy'),
(68173, 'https://ror.org/013vwky05', 'en', 1, 'https://ror.org/013vwky05 Henriette-Bathily Women''s Museum'),
(68174, 'https://ror.org/00w0zag63', 'en', 1, 'https://ror.org/00w0zag63 National Council for Palliative Care'),
(68175, 'https://ror.org/02542wh83', 'en', 1, 'https://ror.org/02542wh83 Mull and Iona Community Trust'),
(68176, 'https://ror.org/00jd4hc03', 'en', 1, 'https://ror.org/00jd4hc03 Chomhairle NÔisiúnta Eacnamaíoch Shóialta National Economic and Social Council'),
(68177, 'https://ror.org/04jx1nd20', 'en', 1, 'https://ror.org/04jx1nd20 National Eczema Society'),
(68178, 'https://ror.org/05t9ac381', 'en', 1, 'https://ror.org/05t9ac381 MuseumNext'),
(68179, 'https://ror.org/04hhsn876', 'en', 1, 'https://ror.org/04hhsn876 National Employment Savings Trust'),
(68180, 'https://ror.org/00hzz2423', 'en', 1, 'https://ror.org/00hzz2423 National Gamete Donation Trust'),
(68181, 'https://ror.org/04byy6k28', 'en', 1, 'https://ror.org/04byy6k28 National Great Rivers Research and Education Center'),
(68182, 'https://ror.org/020yenx75', 'en', 1, 'https://ror.org/020yenx75 Museums Sheffield'),
(68183, 'https://ror.org/04m5xrq42', 'en', 1, 'https://ror.org/04m5xrq42 Music Venue Trust'),
(68184, 'https://ror.org/02jgmf723', 'en', 1, 'https://ror.org/02jgmf723 National Health Insurance Fund'),
(68185, 'https://ror.org/03y53a049', 'en', 1, 'https://ror.org/03y53a049 National Heritage Science Forum'),
(68186, 'https://ror.org/014pnnx80', 'en', 1, 'https://ror.org/014pnnx80 Myanmar Environment Institute'),
(68187, 'https://ror.org/037nqez35', 'en', 1, 'https://ror.org/037nqez35 Myanmar Geosciences Society'),
(68188, 'https://ror.org/01h6ebv15', 'en', 1, 'https://ror.org/01h6ebv15 mySociety'),
(68189, 'https://ror.org/022a78s92', 'en', 1, 'https://ror.org/022a78s92 Nafici Environmental Research'),
(68190, 'https://ror.org/03zc8zv24', 'en', 1, 'https://ror.org/03zc8zv24 National Ice Centre'),
(68191, 'https://ror.org/050ca4130', 'en', 1, 'https://ror.org/050ca4130 Namgyal Monastery Institute of Buddhist Studies Namgyal monastère Institut d''études bouddhistes'),
(68192, 'https://ror.org/011fkt075', 'en', 1, 'https://ror.org/011fkt075 Nanjing Museum å—äŗ¬åšē‰©é™¢'),
(68193, 'https://ror.org/0462c0k61', 'en', 1, 'https://ror.org/0462c0k61 Nanolayers'),
(68194, 'https://ror.org/05h9r7c77', 'en', 1, 'https://ror.org/05h9r7c77 National Museum of China äø­å›½å›½å®¶åšē‰©é¦†'),
(68195, 'https://ror.org/05wnsd310', 'en', 1, 'https://ror.org/05wnsd310 Chinese National Museum of Ethnology'),
(68196, 'https://ror.org/030192654', 'en', 1, 'https://ror.org/030192654 National Museum of Korea 국립중앙박물꓀'),
(68197, 'https://ror.org/02vp3n735', 'en', 1, 'https://ror.org/02vp3n735 National Museum of Natural History ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¾ą¤•ą„ƒą¤¤ą¤æą¤• इतिहास ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ, नई ą¤¦ą¤æą¤²ą„ą¤²ą„€');
INSERT INTO `rors` VALUES
(68198, 'https://ror.org/04q8xq606', 'en', 1, 'https://ror.org/04q8xq606 National Museum of the Royal Navy'),
(68199, 'https://ror.org/03n1jcy96', 'de', 1, 'https://ror.org/03n1jcy96 DRK Krankenhaus Altenkirchen-Hachenburg'),
(68200, 'https://ror.org/02p1e8c91', 'en', 1, 'https://ror.org/02p1e8c91 National Phenotypic Screening Centre'),
(68201, 'https://ror.org/02ma9m113', 'it', 1, 'https://ror.org/02ma9m113 Humanitas Castelli'),
(68202, 'https://ror.org/00e30wp67', 'en', 1, 'https://ror.org/00e30wp67 Northern Ireland Advanced Composites and Engineering Centre'),
(68203, 'https://ror.org/01cwznr13', 'no_lang_code', 1, 'https://ror.org/01cwznr13 IBI Group (United Kingdom)'),
(68204, 'https://ror.org/0076fay17', 'en', 1, 'https://ror.org/0076fay17 Ocala Research Institute'),
(68205, 'https://ror.org/05wyxfm90', 'en', 1, 'https://ror.org/05wyxfm90 National Ready Mixed Concrete Association'),
(68206, 'https://ror.org/024n0w036', 'no_lang_code', 1, 'https://ror.org/024n0w036 Nine Health CIC (United Kingdom)'),
(68207, 'https://ror.org/006y63v75', 'es', 1, 'https://ror.org/006y63v75 Museo de Historia Natural Noel Kempff Mercado'),
(68208, 'https://ror.org/042a1x396', 'no_lang_code', 1, 'https://ror.org/042a1x396 Nolan Associates (United Kingdom)'),
(68209, 'https://ror.org/022fw8624', 'en', 1, 'https://ror.org/022fw8624 Oil & Gas Innovation Centre'),
(68210, 'https://ror.org/03jf1cp95', 'en', 1, 'https://ror.org/03jf1cp95 Social Tech Trust'),
(68211, 'https://ror.org/02z1jjz10', 'no_lang_code', 1, 'https://ror.org/02z1jjz10 Ohmedics (United Kingdom)'),
(68212, 'https://ror.org/04x970698', 'en', 1, 'https://ror.org/04x970698 NonFerrous Materials Technology Development Centre'),
(68213, 'https://ror.org/037yg6j37', 'en', 1, 'https://ror.org/037yg6j37 Norfolk Archaeological Trust'),
(68214, 'https://ror.org/0572j1y15', 'en', 1, 'https://ror.org/0572j1y15 North Alabama Research Center'),
(68215, 'https://ror.org/04rapth36', 'no_lang_code', 1, 'https://ror.org/04rapth36 Ondine (Canada)'),
(68216, 'https://ror.org/05wfe5014', 'en', 1, 'https://ror.org/05wfe5014 National Scientific Center for Surgery named after A.N. Syzganov ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø им. А.Š. Дызганова'),
(68217, 'https://ror.org/01nxjag84', 'ro', 1, 'https://ror.org/01nxjag84 Institutul Medicina de Urgenta'),
(68218, 'https://ror.org/03c33cs95', 'en', 1, 'https://ror.org/03c33cs95 National Sheep Association'),
(68219, 'https://ror.org/02kje8711', 'en', 1, 'https://ror.org/02kje8711 National Slate Museum'),
(68220, 'https://ror.org/05cdbex20', 'en', 1, 'https://ror.org/05cdbex20 Agensi Angkasa Negara National Space Agency'),
(68221, 'https://ror.org/04258ak80', 'en', 1, 'https://ror.org/04258ak80 North of England Civic Trust'),
(68222, 'https://ror.org/008ntxv25', 'en', 1, 'https://ror.org/008ntxv25 National Subsea Research Initiative'),
(68223, 'https://ror.org/021fwfm07', 'en', 1, 'https://ror.org/021fwfm07 National Survivor User Network'),
(68224, 'https://ror.org/05cqwch71', 'en', 1, 'https://ror.org/05cqwch71 North Tolsta Historical Society'),
(68225, 'https://ror.org/04fjkn289', 'en', 1, 'https://ror.org/04fjkn289 Taigh Chearsabhagh Museum and Arts Centre'),
(68226, 'https://ror.org/02kf03x09', 'en', 1, 'https://ror.org/02kf03x09 National Center for Tuberculosis and Lung Disease'),
(68227, 'https://ror.org/00d6gc809', 'en', 1, 'https://ror.org/00d6gc809 Northampton General Hospital NHS Trust'),
(68228, 'https://ror.org/02tshe095', 'en', 1, 'https://ror.org/02tshe095 The National Trust'),
(68229, 'https://ror.org/038t8cx05', 'en', 1, 'https://ror.org/038t8cx05 Northern Architecture'),
(68230, 'https://ror.org/00qvjvf51', 'en', 1, 'https://ror.org/00qvjvf51 Catalyst'),
(68231, 'https://ror.org/02gjn0z15', 'en', 1, 'https://ror.org/02gjn0z15 Nationwide Building Society'),
(68232, 'https://ror.org/05k1fbt59', 'en', 1, 'https://ror.org/05k1fbt59 Natural History Society of Northumbria'),
(68233, 'https://ror.org/00kbh2120', 'no_lang_code', 1, 'https://ror.org/00kbh2120 Herbal Apothecary (United Kingdom)'),
(68234, 'https://ror.org/04yc4x775', 'en', 1, 'https://ror.org/04yc4x775 Northern Rock Foundation'),
(68235, 'https://ror.org/03nnaq439', 'en', 1, 'https://ror.org/03nnaq439 One to One Development Trust'),
(68236, 'https://ror.org/03hbnfz28', 'en', 1, 'https://ror.org/03hbnfz28 Nautical Archaeology Society'),
(68237, 'https://ror.org/04fgqxr51', 'en', 1, 'https://ror.org/04fgqxr51 Earth Trust'),
(68238, 'https://ror.org/01hj7gk80', 'en', 1, 'https://ror.org/01hj7gk80 One-Handed Musical Instrument'),
(68239, 'https://ror.org/05sjrzv10', 'en', 1, 'https://ror.org/05sjrzv10 National Deaf Children''s Society'),
(68240, 'https://ror.org/05370f467', 'en', 1, 'https://ror.org/05370f467 Northwest Heart Clinical Research'),
(68241, 'https://ror.org/018gn4336', 'en', 1, 'https://ror.org/018gn4336 Online Dating Association'),
(68242, 'https://ror.org/05bbr1905', 'de', 1, 'https://ror.org/05bbr1905 Nephrologisches Zentrum Emsland'),
(68243, 'https://ror.org/0137nq929', 'de', 1, 'https://ror.org/0137nq929 Nephrologisches Zentrum Villingen-Schwenningen'),
(68244, 'https://ror.org/03yy0w351', 'en', 1, 'https://ror.org/03yy0w351 Comunn Eachdraidh Nis'),
(68245, 'https://ror.org/013d7vw46', 'en', 1, 'https://ror.org/013d7vw46 Nottinghamshire Deaf Society'),
(68246, 'https://ror.org/04b8ktb84', 'en', 1, 'https://ror.org/04b8ktb84 Open Air Laboratories Network'),
(68247, 'https://ror.org/02kmv2v81', 'no_lang_code', 1, 'https://ror.org/02kmv2v81 Innovia Medical (United Kingdom)'),
(68248, 'https://ror.org/040dpbx94', 'no_lang_code', 1, 'https://ror.org/040dpbx94 Image Metrics (United Kingdom)'),
(68249, 'https://ror.org/02q189e70', 'no_lang_code', 1, 'https://ror.org/02q189e70 OptiBiotix (United Kingdom)'),
(68250, 'https://ror.org/01mcrzq55', 'en', 1, 'https://ror.org/01mcrzq55 Oral History Society'),
(68251, 'https://ror.org/03q4ccx33', 'en', 1, 'https://ror.org/03q4ccx33 Acropolis Museum ĪœĪæĻ…ĻƒĪµĪÆĪæ Ī‘ĪŗĻĻŒĻ€ĪæĪ»Ī·Ļ‚'),
(68252, 'https://ror.org/04wb05896', 'en', 1, 'https://ror.org/04wb05896 New Gorbals Housing Association'),
(68253, 'https://ror.org/031h6k742', 'no_lang_code', 1, 'https://ror.org/031h6k742 Numedicus (United Kingdom)'),
(68254, 'https://ror.org/01xz13x40', 'en', 1, 'https://ror.org/01xz13x40 New Walk Museum and Art Gallery'),
(68255, 'https://ror.org/037aan677', 'en', 1, 'https://ror.org/037aan677 New Zealand eScience Infrastructure'),
(68256, 'https://ror.org/04azfmk22', 'en', 1, 'https://ror.org/04azfmk22 Oasis Charitable Trust'),
(68257, 'https://ror.org/04m2re361', 'en', 1, 'https://ror.org/04m2re361 Ormiston Bushfield Academy'),
(68258, 'https://ror.org/01v801w64', 'en', 1, 'https://ror.org/01v801w64 Observatories and Research Facilities for European Seismology'),
(68259, 'https://ror.org/01heyg366', 'fr', 1, 'https://ror.org/01heyg366 MusƩe d''Orsay'),
(68260, 'https://ror.org/02sxph104', 'no_lang_code', 1, 'https://ror.org/02sxph104 Orsus Medical (United Kingdom)'),
(68261, 'https://ror.org/03m2tmd95', 'en', 1, 'https://ror.org/03m2tmd95 National Institute for Pharmaceutical Technology & Education'),
(68262, 'https://ror.org/01adw2y76', 'pt', 1, 'https://ror.org/01adw2y76 Osso'),
(68263, 'https://ror.org/04w013s63', 'en', 1, 'https://ror.org/04w013s63 Centre National de MƩmoire Historique National Center for Historical Memory'),
(68264, 'https://ror.org/03meb1477', 'en', 1, 'https://ror.org/03meb1477 Oswestry Town Museum'),
(68265, 'https://ror.org/04e8mam19', 'en', 1, 'https://ror.org/04e8mam19 Organic Centre Wales'),
(68266, 'https://ror.org/046dyet60', 'pt', 1, 'https://ror.org/046dyet60 Instituto Nacional de Psiquiatria do Desenvolvimento para CrianƧas e Adolescentes'),
(68267, 'https://ror.org/055twxx49', 'no_lang_code', 1, 'https://ror.org/055twxx49 SMC (United Kingdom)'),
(68268, 'https://ror.org/0311x9y29', 'no_lang_code', 1, 'https://ror.org/0311x9y29 National Milk Records (United Kingdom)'),
(68269, 'https://ror.org/00v9mrx93', 'en', 1, 'https://ror.org/00v9mrx93 Energy and Utility Skills'),
(68270, 'https://ror.org/03w2bez90', 'en', 1, 'https://ror.org/03w2bez90 National Mining Museum Scotland'),
(68271, 'https://ror.org/03wjhyh40', 'no_lang_code', 1, 'https://ror.org/03wjhyh40 Oxford Applied Research (United Kingdom)'),
(68272, 'https://ror.org/02ghr1636', 'en', 1, 'https://ror.org/02ghr1636 Museo Nacional de ArqueologĆ­a de Bolivia National Museum of Archaeology'),
(68273, 'https://ror.org/059jmsh97', 'en', 1, 'https://ror.org/059jmsh97 Oxford Centre for Drug Delivery Devices'),
(68274, 'https://ror.org/01dp90d46', 'en', 1, 'https://ror.org/01dp90d46 Peggy Dodd Centre'),
(68275, 'https://ror.org/01r0enz48', 'no_lang_code', 1, 'https://ror.org/01r0enz48 Oxford MicroMedical (United Kingdom)'),
(68276, 'https://ror.org/033t2dn25', 'en', 1, 'https://ror.org/033t2dn25 Oxleas NHS Foundation Trust'),
(68277, 'https://ror.org/04316xy59', 'en', 1, 'https://ror.org/04316xy59 PNLP'),
(68278, 'https://ror.org/00zpw7s04', 'en', 1, 'https://ror.org/00zpw7s04 Pacific Arts Association'),
(68279, 'https://ror.org/05yngzb68', 'en', 1, 'https://ror.org/05yngzb68 Penn Associates'),
(68280, 'https://ror.org/00y4jkk21', 'en', 1, 'https://ror.org/00y4jkk21 Pensions and Lifetime Savings Association'),
(68281, 'https://ror.org/03n3d2997', 'en', 1, 'https://ror.org/03n3d2997 Paediatric Emergency Research in the United Kingdom & Ireland'),
(68282, 'https://ror.org/00twy1r91', 'en', 1, 'https://ror.org/00twy1r91 National Association of British and Irish Millers'),
(68283, 'https://ror.org/01tmm2z04', 'en', 1, 'https://ror.org/01tmm2z04 National Association of British Market Authorities'),
(68284, 'https://ror.org/02gkmwf16', 'en', 1, 'https://ror.org/02gkmwf16 Pentucket Medical'),
(68285, 'https://ror.org/03989be61', 'en', 1, 'https://ror.org/03989be61 National Association of Cider Makers'),
(68286, 'https://ror.org/02z1j6f46', 'en', 1, 'https://ror.org/02z1j6f46 National Association of Eco-Friendly Salons and Spas'),
(68287, 'https://ror.org/054rzgh78', 'en', 1, 'https://ror.org/054rzgh78 National Association of Funeral Directors'),
(68288, 'https://ror.org/01ts47345', 'cy', 1, 'https://ror.org/01ts47345 Comunn Eachdraidh na Pairc'),
(68289, 'https://ror.org/05v99m436', 'en', 1, 'https://ror.org/05v99m436 People''s History Museum'),
(68290, 'https://ror.org/002ba7a80', 'en', 1, 'https://ror.org/002ba7a80 Pakistan and Kashmir Welfare Association'),
(68291, 'https://ror.org/01e8xap89', 'no_lang_code', 1, 'https://ror.org/01e8xap89 Peptide Protein Research (United Kingdom)'),
(68292, 'https://ror.org/01mhrge46', 'en', 1, 'https://ror.org/01mhrge46 Professional Publishers Association'),
(68293, 'https://ror.org/005mzjw74', 'en', 1, 'https://ror.org/005mzjw74 Permian Research Foundation'),
(68294, 'https://ror.org/04hk30d26', 'no_lang_code', 1, 'https://ror.org/04hk30d26 Perpetuity Research (United Kingdom)'),
(68295, 'https://ror.org/02j9vtb62', 'en', 1, 'https://ror.org/02j9vtb62 Perth & Kinross Association of Voluntary Service'),
(68296, 'https://ror.org/023gd8d44', 'en', 1, 'https://ror.org/023gd8d44 Perth and Kinross Heritage Trust'),
(68297, 'https://ror.org/008tjs116', 'no_lang_code', 1, 'https://ror.org/008tjs116 Porvair (United Kingdom)'),
(68298, 'https://ror.org/05m2dxd88', 'en', 1, 'https://ror.org/05m2dxd88 Peruvian Association of People Affected by Tuberculosis'),
(68299, 'https://ror.org/0223xwb92', 'en', 1, 'https://ror.org/0223xwb92 The Pevensey Court House Museum and Gaol'),
(68300, 'https://ror.org/01abd8q97', 'en', 1, 'https://ror.org/01abd8q97 Potato Processors Association'),
(68301, 'https://ror.org/02g2dpz81', 'no_lang_code', 1, 'https://ror.org/02g2dpz81 Pottstown Medical Specialists (United States)'),
(68302, 'https://ror.org/00q8xtg52', 'en', 1, 'https://ror.org/00q8xtg52 Palmetto Research Center'),
(68303, 'https://ror.org/006pcm806', 'en', 1, 'https://ror.org/006pcm806 The Philippine Women Centre of BC'),
(68304, 'https://ror.org/00n0f0m43', 'no_lang_code', 1, 'https://ror.org/00n0f0m43 Praxis (United Kingdom)'),
(68305, 'https://ror.org/00wbxbw73', 'en', 1, 'https://ror.org/00wbxbw73 Pre School Learning Alliance'),
(68306, 'https://ror.org/00fymn945', 'en', 1, 'https://ror.org/00fymn945 Pan-African Association'),
(68307, 'https://ror.org/00y4w6s19', 'no_lang_code', 1, 'https://ror.org/00y4w6s19 Parabola (United Kingdom)'),
(68308, 'https://ror.org/051abd045', 'en', 1, 'https://ror.org/051abd045 The Pier Arts Centre'),
(68309, 'https://ror.org/022s4gs38', 'en', 1, 'https://ror.org/022s4gs38 Parliamentary Advisory Council for Transport Safety'),
(68310, 'https://ror.org/05sevfb19', 'en', 1, 'https://ror.org/05sevfb19 Museo Nazionale Preistorico Etnografico Luigi Pigorini Pigorini National Museum of Prehistory and Ethnography'),
(68311, 'https://ror.org/02pvnr704', 'en', 1, 'https://ror.org/02pvnr704 Parliamentary Office of Science and Technology'),
(68312, 'https://ror.org/04q267888', 'en', 1, 'https://ror.org/04q267888 Pitt Rivers Museum'),
(68313, 'https://ror.org/03dsf5v84', 'en', 1, 'https://ror.org/03dsf5v84 Partick Housing Association'),
(68314, 'https://ror.org/036dda554', 'en', 1, 'https://ror.org/036dda554 Particulate Solid Research (United States)'),
(68315, 'https://ror.org/04caxfb95', 'en', 1, 'https://ror.org/04caxfb95 The Princes Foundation'),
(68316, 'https://ror.org/03fdaw896', 'en', 1, 'https://ror.org/03fdaw896 Learning Spaces Collaboratory'),
(68317, 'https://ror.org/0255b1449', 'en', 1, 'https://ror.org/0255b1449 Planet Earth Institute'),
(68318, 'https://ror.org/05ct52702', 'en', 1, 'https://ror.org/05ct52702 Planned Environment Therapy Trust'),
(68319, 'https://ror.org/01n6r0d03', 'en', 1, 'https://ror.org/01n6r0d03 PPMA Group of Associations'),
(68320, 'https://ror.org/05bvtbx10', 'en', 1, 'https://ror.org/05bvtbx10 The Patients Association'),
(68321, 'https://ror.org/01agawv85', 'en', 1, 'https://ror.org/01agawv85 Plymouth City Museum and Art Gallery'),
(68322, 'https://ror.org/05dq77c70', 'no_lang_code', 1, 'https://ror.org/05dq77c70 Promote Medical (United Kingdom)'),
(68323, 'https://ror.org/05av8vw53', 'fr', 1, 'https://ror.org/05av8vw53 Centre International de PoƩsie Marseille'),
(68324, 'https://ror.org/03d3dj187', 'no_lang_code', 1, 'https://ror.org/03d3dj187 Protected Trust Services (United Kingdom)'),
(68325, 'https://ror.org/02jqwk197', 'en', 1, 'https://ror.org/02jqwk197 National Centre for Product Design and Development Research'),
(68326, 'https://ror.org/03s9q3c79', 'en', 1, 'https://ror.org/03s9q3c79 Poetry International Foundation'),
(68327, 'https://ror.org/05a885w72', 'en', 1, 'https://ror.org/05a885w72 Peace Museum'),
(68328, 'https://ror.org/03c87q579', 'en', 1, 'https://ror.org/03c87q579 The Point of Care Foundation'),
(68329, 'https://ror.org/01bdg0p84', 'pl', 1, 'https://ror.org/01bdg0p84 Wojewódzki Szpital Specjalistyczny nr 5 im. św. Barbary w Sosnowcu'),
(68330, 'https://ror.org/00aejbn34', 'en', 1, 'https://ror.org/00aejbn34 Polish Cultural Festival Association'),
(68331, 'https://ror.org/02d807218', 'no_lang_code', 1, 'https://ror.org/02d807218 Peak Associates (United Kingdom)'),
(68332, 'https://ror.org/014xb2303', 'pl', 1, 'https://ror.org/014xb2303 Wojewódzki Szpital Specjalistyczny nr 4 w Bytomiu'),
(68333, 'https://ror.org/01bsx7b24', 'es', 1, 'https://ror.org/01bsx7b24 Fundación ProYungas'),
(68334, 'https://ror.org/03kg5d423', 'en', 1, 'https://ror.org/03kg5d423 PRS Legislative Research'),
(68335, 'https://ror.org/04c7j8965', 'en', 1, 'https://ror.org/04c7j8965 Pontus Research'),
(68336, 'https://ror.org/02scqxw19', 'en', 1, 'https://ror.org/02scqxw19 Art UK'),
(68337, 'https://ror.org/00czf4z07', 'en', 1, 'https://ror.org/00czf4z07 Pearl Medical Centre'),
(68338, 'https://ror.org/057eq1q68', 'en', 1, 'https://ror.org/057eq1q68 Ramblers'),
(68339, 'https://ror.org/01nsyw318', 'en', 1, 'https://ror.org/01nsyw318 Portsmouth Museum'),
(68340, 'https://ror.org/03v78xj45', 'en', 1, 'https://ror.org/03v78xj45 Public Health Research Consortium'),
(68341, 'https://ror.org/05rm7p925', 'en', 1, 'https://ror.org/05rm7p925 Raphael Samuel History Centre'),
(68342, 'https://ror.org/03ssym444', 'en', 1, 'https://ror.org/03ssym444 Publishers Licensing Services'),
(68343, 'https://ror.org/00m6ag204', 'en', 1, 'https://ror.org/00m6ag204 Pulitzer Arts Foundation'),
(68344, 'https://ror.org/05f5m2x04', 'no_lang_code', 1, 'https://ror.org/05f5m2x04 RAPID Biomedical (Germany)'),
(68345, 'https://ror.org/047m78h93', 'en', 1, 'https://ror.org/047m78h93 Puppet Centre Trust'),
(68346, 'https://ror.org/05jev2650', 'no_lang_code', 1, 'https://ror.org/05jev2650 Research Network Services (Germany)'),
(68347, 'https://ror.org/01x4yvt28', 'pt', 1, 'https://ror.org/01x4yvt28 Fundação Raquel e Martin Sain'),
(68348, 'https://ror.org/057zt9577', 'en', 1, 'https://ror.org/057zt9577 Putnoe Medical Centre'),
(68349, 'https://ror.org/03d5t5j62', 'en', 1, 'https://ror.org/03d5t5j62 Rare Breeds Survival Trust'),
(68350, 'https://ror.org/031kpa286', 'en', 1, 'https://ror.org/031kpa286 Q & T Recherche Sherbrooke Q & T Research'),
(68351, 'https://ror.org/05kdgvd18', 'en', 1, 'https://ror.org/05kdgvd18 Raspberry Pi Foundation'),
(68352, 'https://ror.org/011x0jf73', 'no_lang_code', 1, 'https://ror.org/011x0jf73 Razumkov Centre Центр Разумкова'),
(68353, 'https://ror.org/05qjcpt44', 'no_lang_code', 1, 'https://ror.org/05qjcpt44 Quantemplate (United Kingdom)'),
(68354, 'https://ror.org/02wgwcd78', 'en', 1, 'https://ror.org/02wgwcd78 Ribble Rivers Trust'),
(68355, 'https://ror.org/054snha28', 'en', 1, 'https://ror.org/054snha28 Reading International Solidarity Centre'),
(68356, 'https://ror.org/03wpswf31', 'no_lang_code', 1, 'https://ror.org/03wpswf31 Richard Allitt Associates (United Kingdom)'),
(68357, 'https://ror.org/00akavp61', 'en', 1, 'https://ror.org/00akavp61 Reading Museum'),
(68358, 'https://ror.org/05bhhjy59', 'en', 1, 'https://ror.org/05bhhjy59 Queen Elizabeth’s Academy'),
(68359, 'https://ror.org/00gm4dn95', 'no_lang_code', 1, 'https://ror.org/00gm4dn95 Richard Carter and Associates (United Kingdom)'),
(68360, 'https://ror.org/00635kd98', 'en', 1, 'https://ror.org/00635kd98 Queen Elizabeth Hospital Birmingham Charity'),
(68361, 'https://ror.org/0596srd08', 'en', 1, 'https://ror.org/0596srd08 Powell Cotton Museum'),
(68362, 'https://ror.org/02m4de687', 'no_lang_code', 1, 'https://ror.org/02m4de687 Reed Medical (United Kingdom)'),
(68363, 'https://ror.org/04y1w8a25', 'no_lang_code', 1, 'https://ror.org/04y1w8a25 Marshall Motor Holdings (United Kingdom)'),
(68364, 'https://ror.org/05j3nm367', 'en', 1, 'https://ror.org/05j3nm367 The Queen''s Foundation'),
(68365, 'https://ror.org/01fn7y155', 'no_lang_code', 1, 'https://ror.org/01fn7y155 Pharmaron (United Kingdom)'),
(68366, 'https://ror.org/02a2anr16', 'en', 1, 'https://ror.org/02a2anr16 Regional Education Centre for the area of primary care'),
(68367, 'https://ror.org/02n5j7g52', 'en', 1, 'https://ror.org/02n5j7g52 R&G Associates'),
(68368, 'https://ror.org/04zajmz25', 'en', 1, 'https://ror.org/04zajmz25 Regional Inter-agency Task Team on Children and AIDS'),
(68369, 'https://ror.org/00wjvk964', 'no_lang_code', 1, 'https://ror.org/00wjvk964 RAB Microfluidics (United Kingdom)'),
(68370, 'https://ror.org/012hyjz28', 'en', 1, 'https://ror.org/012hyjz28 Riverside Community Health Project'),
(68371, 'https://ror.org/055h9ry14', 'en', 1, 'https://ror.org/055h9ry14 RAC Foundation'),
(68372, 'https://ror.org/02rr7cf98', 'no_lang_code', 1, 'https://ror.org/02rr7cf98 Registry Trust (United Kingdom)'),
(68373, 'https://ror.org/05y0cez87', 'en', 1, 'https://ror.org/05y0cez87 Riverside'),
(68374, 'https://ror.org/02d9p5295', 'en', 1, 'https://ror.org/02d9p5295 Rail Research UK Association'),
(68375, 'https://ror.org/05m1f6211', 'no_lang_code', 1, 'https://ror.org/05m1f6211 3DReid (United Kingdom)'),
(68376, 'https://ror.org/045g91y28', 'no_lang_code', 1, 'https://ror.org/045g91y28 Riverside Medical Packaging (United Kingdom)'),
(68377, 'https://ror.org/01m06zm04', 'en', 1, 'https://ror.org/01m06zm04 Quakers'),
(68378, 'https://ror.org/02c39fv84', 'en', 1, 'https://ror.org/02c39fv84 Road Haulage Association'),
(68379, 'https://ror.org/054zq1h88', 'en', 1, 'https://ror.org/054zq1h88 Railway Industry Association'),
(68380, 'https://ror.org/040vbzm60', 'en', 1, 'https://ror.org/040vbzm60 Quakers'),
(68381, 'https://ror.org/048q5k041', 'en', 1, 'https://ror.org/048q5k041 Renewable Energy Association'),
(68382, 'https://ror.org/027y5z534', 'en', 1, 'https://ror.org/027y5z534 Roja Muthiah Research Library'),
(68383, 'https://ror.org/04q08td48', 'en', 1, 'https://ror.org/04q08td48 Republic Klaipeda Hospital Respublikinė Klaipėdos ligoninė'),
(68384, 'https://ror.org/00p65td76', 'en', 1, 'https://ror.org/00p65td76 Royal Pigeon Racing Association'),
(68385, 'https://ror.org/04xjc6b56', 'en', 1, 'https://ror.org/04xjc6b56 Rescobie Loch Development Association'),
(68386, 'https://ror.org/02x30pp94', 'en', 1, 'https://ror.org/02x30pp94 Royal Society for the Prevention of Accidents'),
(68387, 'https://ror.org/035q3vc94', 'en', 1, 'https://ror.org/035q3vc94 Royal Television Society'),
(68388, 'https://ror.org/01kegck15', 'en', 1, 'https://ror.org/01kegck15 Rotherham United Community Sports Trust'),
(68389, 'https://ror.org/05svg6v21', 'en', 1, 'https://ror.org/05svg6v21 Royal Yachting Association'),
(68390, 'https://ror.org/02e5tmt29', 'en', 1, 'https://ror.org/02e5tmt29 Rural Development Foundation of Pakistan'),
(68391, 'https://ror.org/05h0rfr48', 'en', 1, 'https://ror.org/05h0rfr48 Rural Self-Reliance Development Centre'),
(68392, 'https://ror.org/00g78ej16', 'en', 1, 'https://ror.org/00g78ej16 Research Institute for Disabled Consumers'),
(68393, 'https://ror.org/00bw9fz70', 'en', 1, 'https://ror.org/00bw9fz70 The Royal A​nglian Regiment Museum'),
(68394, 'https://ror.org/055zpaa68', 'pt', 1, 'https://ror.org/055zpaa68 Centro Panamericano de Fiebre Aftosa'),
(68395, 'https://ror.org/01g26n816', 'en', 1, 'https://ror.org/01g26n816 Saffron Walden Museum'),
(68396, 'https://ror.org/01ynbhc61', 'no_lang_code', 1, 'https://ror.org/01ynbhc61 SageTech Medical Equipment (United Kingdom)'),
(68397, 'https://ror.org/03qc0jc41', 'no_lang_code', 1, 'https://ror.org/03qc0jc41 Saratoga Cardiology Associates (United States)'),
(68398, 'https://ror.org/022wfhc10', 'en', 1, 'https://ror.org/022wfhc10 Royal Institution of Naval Architects'),
(68399, 'https://ror.org/00varvj20', 'no_lang_code', 1, 'https://ror.org/00varvj20 SAIC Motor (United Kingdom)'),
(68400, 'https://ror.org/01w90vg65', 'no_lang_code', 1, 'https://ror.org/01w90vg65 Sarissa Biomedical (United Kingdom)'),
(68401, 'https://ror.org/04n5gt552', 'en', 1, 'https://ror.org/04n5gt552 Supra-Regional Assay Service'),
(68402, 'https://ror.org/03x5d0y93', 'en', 1, 'https://ror.org/03x5d0y93 Royal Liverpool Philharmonic'),
(68403, 'https://ror.org/02g451n39', 'en', 1, 'https://ror.org/02g451n39 MusƩe royal de Mariemont Royal Museum of Mariemont'),
(68404, 'https://ror.org/016055452', 'en', 1, 'https://ror.org/016055452 Scottish Association of the Teachers of History'),
(68405, 'https://ror.org/05nk7f239', 'en', 1, 'https://ror.org/05nk7f239 Save the Rhino Trust'),
(68406, 'https://ror.org/04wsd7x43', 'en', 1, 'https://ror.org/04wsd7x43 The Scottish Forestry Trust'),
(68407, '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'),
(68408, 'https://ror.org/03w8kgm26', 'en', 1, 'https://ror.org/03w8kgm26 SB Science Management'),
(68409, 'https://ror.org/04vsshx67', 'en', 1, 'https://ror.org/04vsshx67 Scottish Graduate School for Arts & Humanities'),
(68410, 'https://ror.org/00gsd6w43', 'en', 1, 'https://ror.org/00gsd6w43 Scarborough Archaeological and Historical Society'),
(68411, 'https://ror.org/048swbb68', 'en', 1, 'https://ror.org/048swbb68 Scottish Jewish Archives Centre'),
(68412, 'https://ror.org/02s01qb70', 'en', 1, 'https://ror.org/02s01qb70 Scarborough Museums Trust'),
(68413, 'https://ror.org/042hdh758', 'en', 1, 'https://ror.org/042hdh758 School Health Research Network'),
(68414, 'https://ror.org/00186j916', 'en', 1, 'https://ror.org/00186j916 Scottish Music Industry Association'),
(68415, 'https://ror.org/02pvd8a14', 'en', 1, 'https://ror.org/02pvd8a14 The Schumacher Institute'),
(68416, 'https://ror.org/05mp3ea66', 'en', 1, 'https://ror.org/05mp3ea66 Sanctuary Housing'),
(68417, 'https://ror.org/01t263c97', 'en', 1, 'https://ror.org/01t263c97 Scottish Public Pensions Agency'),
(68418, 'https://ror.org/041q6vc74', 'en', 1, 'https://ror.org/041q6vc74 SANE Mental Health Charity'),
(68419, 'https://ror.org/02cby3y03', 'no_lang_code', 1, 'https://ror.org/02cby3y03 ScrewFast Foundations (United Kingdom)'),
(68420, 'https://ror.org/028j88e93', 'en', 1, 'https://ror.org/028j88e93 Shaw Trust'),
(68421, 'https://ror.org/00t3h6w64', 'en', 1, 'https://ror.org/00t3h6w64 Science Media Centre'),
(68422, 'https://ror.org/056hg4387', 'en', 1, 'https://ror.org/056hg4387 Shawlands Academy'),
(68423, 'https://ror.org/007ppd810', 'no_lang_code', 1, 'https://ror.org/007ppd810 Science Navigation Group (United Kingdom)'),
(68424, 'https://ror.org/02nr9m172', 'en', 1, 'https://ror.org/02nr9m172 Sheffield & Rotherham Wildlife Trust'),
(68425, 'https://ror.org/03bfpw005', 'en', 1, 'https://ror.org/03bfpw005 Sheffield Beekeepers'' Association'),
(68426, 'https://ror.org/03mvw5b45', 'en', 1, 'https://ror.org/03mvw5b45 Sheffield Industrial Museums Trust'),
(68427, 'https://ror.org/00j7mmn70', 'en', 1, 'https://ror.org/00j7mmn70 Science on Stage Europe'),
(68428, 'https://ror.org/031bpj056', 'no_lang_code', 1, 'https://ror.org/031bpj056 Sea Level Research (United Kingdom)'),
(68429, 'https://ror.org/04j8yhy50', 'en', 1, 'https://ror.org/04j8yhy50 Science Oxford'),
(68430, 'https://ror.org/00j5fn448', 'en', 1, 'https://ror.org/00j5fn448 Loden Foundation'),
(68431, 'https://ror.org/03f3pxe20', 'en', 1, 'https://ror.org/03f3pxe20 Shenyang Fifth People Hospital ę²ˆé˜³åø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(68432, 'https://ror.org/01fm8t129', 'en', 1, 'https://ror.org/01fm8t129 Scientific Studies Association İlmi Etüdler Derneğ'),
(68433, 'https://ror.org/02vp84g54', 'no_lang_code', 1, 'https://ror.org/02vp84g54 Sebastian Conran Associates (United Kingdom)'),
(68434, 'https://ror.org/00sv6gs75', 'en', 1, 'https://ror.org/00sv6gs75 Shenyang Sujiatun District Central Hospital ę²ˆé˜³åø‚č‹å®¶å±ÆåŒŗäø­åæƒåŒ»é™¢'),
(68435, 'https://ror.org/02c237f60', 'no_lang_code', 1, 'https://ror.org/02c237f60 Scotia Gas Networks (United Kingdom)'),
(68436, 'https://ror.org/018df9d45', 'no_lang_code', 1, 'https://ror.org/018df9d45 Zhongzhu Healthcare (China)'),
(68437, 'https://ror.org/023fnpq36', 'en', 1, 'https://ror.org/023fnpq36 Gweld Gwyddoniaeth See Science'),
(68438, 'https://ror.org/01nwj0553', 'en', 1, 'https://ror.org/01nwj0553 Scottish Association of Meat Wholesalers'),
(68439, 'https://ror.org/00e633366', 'en', 1, 'https://ror.org/00e633366 Scottish Cancer Foundation'),
(68440, 'https://ror.org/02gn97s12', 'en', 1, 'https://ror.org/02gn97s12 Scottish Civic Trust'),
(68441, 'https://ror.org/05x7p8987', 'en', 1, 'https://ror.org/05x7p8987 Scottish Collaboration for Public Health Research and Policy'),
(68442, 'https://ror.org/03m91y886', 'no_lang_code', 1, 'https://ror.org/03m91y886 Shirkat Gah'),
(68443, 'https://ror.org/05kykkq24', 'no_lang_code', 1, 'https://ror.org/05kykkq24 Sensatech Designs (United Kingdom)'),
(68444, 'https://ror.org/00k64aw37', 'en', 1, 'https://ror.org/00k64aw37 Scottish Family Business Association'),
(68445, 'https://ror.org/04srgzx66', 'en', 1, 'https://ror.org/04srgzx66 Scottish Federation of Housing Associations'),
(68446, 'https://ror.org/0021w4337', 'en', 1, 'https://ror.org/0021w4337 Scottish Fisheries Museum'),
(68447, 'https://ror.org/03wkr8v72', 'en', 1, 'https://ror.org/03wkr8v72 Serendib Foundation for Music and Performing Arts'),
(68448, 'https://ror.org/04q8qbp45', 'en', 1, 'https://ror.org/04q8qbp45 Shoreditch Trust'),
(68449, 'https://ror.org/02wq0b665', 'no_lang_code', 1, 'https://ror.org/02wq0b665 Short and Associates (United States)'),
(68450, 'https://ror.org/00kgx1e52', 'en', 1, 'https://ror.org/00kgx1e52 Caledonia Housing Association'),
(68451, 'https://ror.org/00tasa398', 'en', 1, 'https://ror.org/00tasa398 Society for Longitudinal and Lifecourse Studies'),
(68452, 'https://ror.org/0123gbz78', 'en', 1, 'https://ror.org/0123gbz78 CarbonCo-op'),
(68453, 'https://ror.org/003f4e996', 'en', 1, 'https://ror.org/003f4e996 Sir John Soane''s Museum'),
(68454, 'https://ror.org/00w3sh282', 'en', 1, 'https://ror.org/00w3sh282 Six Nations Indian Museum'),
(68455, 'https://ror.org/04a4fb261', 'en', 1, 'https://ror.org/04a4fb261 Society of Editors'),
(68456, 'https://ror.org/05f8ht569', 'en', 1, 'https://ror.org/05f8ht569 Institute of Bio-Sensing Technology'),
(68457, 'https://ror.org/03cz45f13', 'no', 1, 'https://ror.org/03cz45f13 Skedsmo Medisinske Senter'),
(68458, 'https://ror.org/014jakh31', 'en', 1, 'https://ror.org/014jakh31 Society of Energy Engineers and Managers'),
(68459, 'https://ror.org/04fyt3464', 'en', 1, 'https://ror.org/04fyt3464 Shaanxi History Museum é™•č„æåŽ†å²åšē‰©é¦†'),
(68460, 'https://ror.org/008m0sk32', 'no_lang_code', 1, 'https://ror.org/008m0sk32 Shandong Museum å±±äøœåšē‰©é¦†'),
(68461, 'https://ror.org/017s7a786', 'en', 1, 'https://ror.org/017s7a786 Renaissance Life Therapies'),
(68462, 'https://ror.org/057ydw805', 'no_lang_code', 1, 'https://ror.org/057ydw805 Shanghai Dramatic Arts Centre (China) äøŠęµ·čÆå‰§č‰ŗęœÆäø­åæƒ'),
(68463, 'https://ror.org/03h3p2g48', 'en', 1, 'https://ror.org/03h3p2g48 SolarAid'),
(68464, 'https://ror.org/0316mxt43', 'no_lang_code', 1, 'https://ror.org/0316mxt43 Shanghai Museum äøŠęµ·åšē‰©é¦†'),
(68465, 'https://ror.org/00rve9x39', 'en', 1, 'https://ror.org/00rve9x39 Shannon Applied Biotechnology Centre'),
(68466, 'https://ror.org/03stza714', 'no_lang_code', 1, 'https://ror.org/03stza714 Shanxi Museum å±±č„æåšē‰©é™¢'),
(68467, 'https://ror.org/02xqbzx59', 'no_lang_code', 1, 'https://ror.org/02xqbzx59 SLE (United Kingdom)'),
(68468, 'https://ror.org/04sg6fy71', 'en', 1, 'https://ror.org/04sg6fy71 Small Woods Association'),
(68469, 'https://ror.org/046c8ca27', 'en', 1, 'https://ror.org/046c8ca27 Nepal Participatory Action Network'),
(68470, 'https://ror.org/020zz6y73', 'en', 1, 'https://ror.org/020zz6y73 Smart Water Networks Forum'),
(68471, 'https://ror.org/00r071h34', 'en', 1, 'https://ror.org/00r071h34 Smith-Magenis Syndrome Foundation'),
(68472, 'https://ror.org/057bhaf38', 'en', 1, 'https://ror.org/057bhaf38 Smuts House Museum'),
(68473, 'https://ror.org/0106nad04', 'en', 1, 'https://ror.org/0106nad04 Snack, Nut and Crisp Manufacturers Association'),
(68474, 'https://ror.org/04h75qr14', 'en', 1, 'https://ror.org/04h75qr14 Sobhraj Maternity Hospital'),
(68475, 'https://ror.org/05pp5m809', 'en', 1, 'https://ror.org/05pp5m809 Southern African Social Policy Research Institute'),
(68476, 'https://ror.org/02wwq2595', 'en', 1, 'https://ror.org/02wwq2595 Social Research Association'),
(68477, 'https://ror.org/03n3xvs04', 'en', 1, 'https://ror.org/03n3xvs04 Solar Fuels Institute'),
(68478, 'https://ror.org/00e8byk21', 'en', 1, 'https://ror.org/00e8byk21 Soldiers of Oxfordshire Museum'),
(68479, 'https://ror.org/00shbds80', 'en', 1, 'https://ror.org/00shbds80 Dartington Service Design Lab'),
(68480, 'https://ror.org/02ykxyy09', 'en', 1, 'https://ror.org/02ykxyy09 Southwest Florida Research'),
(68481, 'https://ror.org/00xr7fv60', 'en', 1, 'https://ror.org/00xr7fv60 Social Science Baha'),
(68482, 'https://ror.org/01wbay932', 'en', 1, 'https://ror.org/01wbay932 SOVA Center for Information and Analysis Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Š¾-аналитического центра Дова'),
(68483, 'https://ror.org/01svaca56', 'no_lang_code', 1, 'https://ror.org/01svaca56 Songklanagarind Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąø‡ąø‚ąø„ąø²ąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(68484, 'https://ror.org/00fvsrz77', 'en', 1, 'https://ror.org/00fvsrz77 Society for Clinical Trials'),
(68485, 'https://ror.org/03283qn83', 'en', 1, 'https://ror.org/03283qn83 Society for Community Health Awareness Research and Action'),
(68486, 'https://ror.org/00cadqf40', 'en', 1, 'https://ror.org/00cadqf40 The Sophie Lancaster Foundation'),
(68487, 'https://ror.org/0276h0a46', 'en', 1, 'https://ror.org/0276h0a46 St Monica Trust'),
(68488, 'https://ror.org/05kz04g58', 'en', 1, 'https://ror.org/05kz04g58 Spacelink Learning Foundation'),
(68489, 'https://ror.org/04nhyzz08', 'en', 1, 'https://ror.org/04nhyzz08 St. Thomas Medical Group'),
(68490, 'https://ror.org/02w3bxb19', 'es', 1, 'https://ror.org/02w3bxb19 Asociación Herpetológica Española'),
(68491, 'https://ror.org/000kw4c48', 'en', 1, 'https://ror.org/000kw4c48 South Cheshire Astronomical Society'),
(68492, 'https://ror.org/04sy68g86', 'en', 1, 'https://ror.org/04sy68g86 South Cumbria Rivers Trust'),
(68493, 'https://ror.org/04p3gx041', 'no_lang_code', 1, 'https://ror.org/04p3gx041 Specialist Vehicle Research and Development (United Kingdom)'),
(68494, 'https://ror.org/05r9kh419', 'en', 1, 'https://ror.org/05r9kh419 South Devon Prime Beef'),
(68495, 'https://ror.org/04zpgzj77', 'en', 1, 'https://ror.org/04zpgzj77 South East Health Technologies Alliance'),
(68496, 'https://ror.org/02tkzjy36', 'no_lang_code', 1, 'https://ror.org/02tkzjy36 Sphere Medical (United Kingdom)'),
(68497, 'https://ror.org/021xnk312', 'sq', 1, 'https://ror.org/021xnk312 Stacion'),
(68498, 'https://ror.org/02q27pq78', 'en', 1, 'https://ror.org/02q27pq78 South East Rivers Trust'),
(68499, 'https://ror.org/00e7yhp68', 'no_lang_code', 1, 'https://ror.org/00e7yhp68 SR Research (Canada)'),
(68500, 'https://ror.org/01vf6n447', 'en', 1, 'https://ror.org/01vf6n447 Midlands Partnership NHS Foundation Trust'),
(68501, 'https://ror.org/01k469x92', 'en', 1, 'https://ror.org/01k469x92 St Albans and Hertfordshire Architectural and Archaeological Society'),
(68502, 'https://ror.org/04w11qx28', 'en', 1, 'https://ror.org/04w11qx28 South Essex Rape and Incest Crisis Centre'),
(68503, 'https://ror.org/05a133z08', 'en', 1, 'https://ror.org/05a133z08 St Albans Museums'),
(68504, 'https://ror.org/01cjyw781', 'en', 1, 'https://ror.org/01cjyw781 St Ethelburga’s Centre for Reconciliation and Peace'),
(68505, 'https://ror.org/000c2p832', 'en', 1, 'https://ror.org/000c2p832 South London Healthcare NHS Trust'),
(68506, 'https://ror.org/05bpzf670', 'en', 1, 'https://ror.org/05bpzf670 Dutch Institute for Alcohol Policy Nederlands Instituut voor Alcoholbeleid'),
(68507, 'https://ror.org/05c6afn23', 'en', 1, 'https://ror.org/05c6afn23 Start'),
(68508, 'https://ror.org/02g6z1s94', 'en', 1, 'https://ror.org/02g6z1s94 St Johns Theatre'),
(68509, 'https://ror.org/04rcfnb30', 'en', 1, 'https://ror.org/04rcfnb30 South West Heritage Trust'),
(68510, 'https://ror.org/03wwnte34', 'en', 1, 'https://ror.org/03wwnte34 South West Vineyards Association'),
(68511, 'https://ror.org/05qgvw694', 'en', 1, 'https://ror.org/05qgvw694 South Western Housing Society'),
(68512, 'https://ror.org/04h0bdf39', 'en', 1, 'https://ror.org/04h0bdf39 Sisters of Mercy of the Americas'),
(68513, 'https://ror.org/006a5r035', 'nl', 1, 'https://ror.org/006a5r035 Stedelijk Museum Amsterdam'),
(68514, 'https://ror.org/00t3e3c13', 'en', 1, 'https://ror.org/00t3e3c13 Steel Charitable Trust'),
(68515, 'https://ror.org/045bf0r64', 'en', 1, 'https://ror.org/045bf0r64 Suffolk Horse Society'),
(68516, 'https://ror.org/01b385s60', 'en', 1, 'https://ror.org/01b385s60 Suffolk Sheep Society'),
(68517, 'https://ror.org/00dfkj427', 'no_lang_code', 1, 'https://ror.org/00dfkj427 Summit Associates (United States)'),
(68518, 'https://ror.org/03saz4k78', 'no_lang_code', 1, 'https://ror.org/03saz4k78 TeleMedic Systems (United Kingdom)'),
(68519, 'https://ror.org/003dca267', 'en', 1, 'https://ror.org/003dca267 Stevenage Bioscience Catalyst'),
(68520, 'https://ror.org/0110z5t35', 'no_lang_code', 1, 'https://ror.org/0110z5t35 Telemetry Associates (United Kingdom)'),
(68521, 'https://ror.org/02byrdn19', 'en', 1, 'https://ror.org/02byrdn19 Surfers Against Sewage'),
(68522, 'https://ror.org/014e1k160', 'no_lang_code', 1, 'https://ror.org/014e1k160 Stockbridge Technology Centre (United Kingdom)'),
(68523, 'https://ror.org/058zx7d32', 'no_lang_code', 1, 'https://ror.org/058zx7d32 TESco Associates (United States)'),
(68524, 'https://ror.org/019yha079', 'en', 1, 'https://ror.org/019yha079 Sustainable Food Trust'),
(68525, 'https://ror.org/04fyc2a82', 'en', 1, 'https://ror.org/04fyc2a82 Sustainable Inshore Fisheries Trust'),
(68526, 'https://ror.org/01ffkb584', 'en', 1, 'https://ror.org/01ffkb584 Sustainable Livelihoods Foundation'),
(68527, 'https://ror.org/04x62fc64', 'no_lang_code', 1, 'https://ror.org/04x62fc64 Textile Recycling Association'),
(68528, 'https://ror.org/01f0ym620', 'en', 1, 'https://ror.org/01f0ym620 Teylers Museum'),
(68529, 'https://ror.org/02w2g9n75', 'en', 1, 'https://ror.org/02w2g9n75 Stonebridge Trust'),
(68530, 'https://ror.org/03c9tb453', 'en', 1, 'https://ror.org/03c9tb453 Swadhinata Trust'),
(68531, 'https://ror.org/030pt9011', 'en', 1, 'https://ror.org/030pt9011 Swansea Museum'),
(68532, 'https://ror.org/011hj0222', 'en', 1, 'https://ror.org/011hj0222 10:10 Climate Action'),
(68533, 'https://ror.org/04qzn0m54', 'en', 1, 'https://ror.org/04qzn0m54 The Academy at Shotton Hall'),
(68534, 'https://ror.org/02eazqp86', 'en', 1, 'https://ror.org/02eazqp86 Stornoway Historical Society'),
(68535, 'https://ror.org/041mvre90', 'en', 1, 'https://ror.org/041mvre90 The African Arts Trust'),
(68536, 'https://ror.org/02mpx2r50', 'en', 1, 'https://ror.org/02mpx2r50 The Alexander Centre'),
(68537, 'https://ror.org/048mkm910', 'en', 1, 'https://ror.org/048mkm910 Nemocnice Strakonice Strakonice Hospital'),
(68538, 'https://ror.org/0270vwd61', 'en', 1, 'https://ror.org/0270vwd61 American Museum and Gardens'),
(68539, 'https://ror.org/04a1y6x02', 'en', 1, 'https://ror.org/04a1y6x02 Strategic Society Centre'),
(68540, 'https://ror.org/029b7sx25', 'en', 1, 'https://ror.org/029b7sx25 Sydney Jewish Museum'),
(68541, 'https://ror.org/05tq87k41', 'en', 1, 'https://ror.org/05tq87k41 Sydney Living Museums'),
(68542, 'https://ror.org/047eefb18', 'en', 1, 'https://ror.org/047eefb18 Stratified Medicine Scotland'),
(68543, 'https://ror.org/04f187557', 'en', 1, 'https://ror.org/04f187557 Sylva Foundation'),
(68544, 'https://ror.org/03ky9yn97', 'en', 1, 'https://ror.org/03ky9yn97 Structural Timber Association'),
(68545, 'https://ror.org/02r4q7v71', 'en', 1, 'https://ror.org/02r4q7v71 Association of Child Psychotherapists'),
(68546, 'https://ror.org/022qrts95', 'no_lang_code', 1, 'https://ror.org/022qrts95 Tecomet (United Kingdom)'),
(68547, 'https://ror.org/00ejkk087', 'en', 1, 'https://ror.org/00ejkk087 Baroness Warsi Foundation'),
(68548, 'https://ror.org/00sy58v94', 'en', 1, 'https://ror.org/00sy58v94 Chung-Hwa Institute of Buddhist Studies äø­čÆä½›å­øē ”ē©¶ę‰€'),
(68549, 'https://ror.org/02qnz4080', 'en', 1, 'https://ror.org/02qnz4080 The Churches Conservation Trust'),
(68550, 'https://ror.org/04mfvsa73', 'en', 1, 'https://ror.org/04mfvsa73 The Cinema Museum'),
(68551, 'https://ror.org/05frbvt97', 'en', 1, 'https://ror.org/05frbvt97 The Bay Trust'),
(68552, 'https://ror.org/03y1x0461', 'en', 1, 'https://ror.org/03y1x0461 Citizens UK'),
(68553, 'https://ror.org/043hn3j55', 'en', 1, 'https://ror.org/043hn3j55 Tamba'),
(68554, 'https://ror.org/04gnvyj62', 'en', 1, 'https://ror.org/04gnvyj62 The BEARR Trust'),
(68555, 'https://ror.org/01zg6vj90', 'en', 1, 'https://ror.org/01zg6vj90 Tanzania Meteorological Agency'),
(68556, 'https://ror.org/00ywywm58', 'en', 1, 'https://ror.org/00ywywm58 Bevan Foundation'),
(68557, 'https://ror.org/03t6v9748', 'en', 1, 'https://ror.org/03t6v9748 The Communication Trust'),
(68558, 'https://ror.org/04fx4cs28', 'en', 1, 'https://ror.org/04fx4cs28 The Tavistock and Portman NHS Foundation Trust'),
(68559, 'https://ror.org/022kcpx61', 'en', 1, 'https://ror.org/022kcpx61 The Bewdley School'),
(68560, 'https://ror.org/02n6c2636', 'en', 1, 'https://ror.org/02n6c2636 The Constitution Society'),
(68561, 'https://ror.org/03666dk92', 'en', 1, 'https://ror.org/03666dk92 The Bingo Association'),
(68562, 'https://ror.org/05ahdap62', 'no_lang_code', 1, 'https://ror.org/05ahdap62 Taylor McKenzie (United Kingdom)'),
(68563, 'https://ror.org/02a7s3141', 'en', 1, 'https://ror.org/02a7s3141 Contemporary Art Society'),
(68564, 'https://ror.org/036vvw903', 'en', 1, 'https://ror.org/036vvw903 Blackwood'),
(68565, 'https://ror.org/00k8d8f82', 'en', 1, 'https://ror.org/00k8d8f82 The Bowes Museum'),
(68566, 'https://ror.org/034dfmd43', 'en', 1, 'https://ror.org/034dfmd43 The Data Lab'),
(68567, 'https://ror.org/04hsv5386', 'en', 1, 'https://ror.org/04hsv5386 British Association of Picture Libraries and Agencies'),
(68568, 'https://ror.org/05gsn4d81', 'en', 1, 'https://ror.org/05gsn4d81 Delius Trust'),
(68569, 'https://ror.org/04f0gqc60', 'en', 1, 'https://ror.org/04f0gqc60 The Democratic Society'),
(68570, 'https://ror.org/010npae67', 'en', 1, 'https://ror.org/010npae67 The Honourable Society of Lincoln''s Inn'),
(68571, 'https://ror.org/03rz1c626', 'en', 1, 'https://ror.org/03rz1c626 The Carbon Monoxide and Gas Safety Society'),
(68572, 'https://ror.org/01yrdw043', 'en', 1, 'https://ror.org/01yrdw043 Huntington''s Disease Association'),
(68573, 'https://ror.org/010jran45', 'en', 1, 'https://ror.org/010jran45 Carers Trust'),
(68574, 'https://ror.org/018jnkm11', 'no_lang_code', 1, 'https://ror.org/018jnkm11 Blacktrace (United States)'),
(68575, 'https://ror.org/01aptsm66', 'en', 1, 'https://ror.org/01aptsm66 Institute for In Vitro Sciences'),
(68576, 'https://ror.org/01dg1k785', 'no_lang_code', 1, 'https://ror.org/01dg1k785 Alliance for Multispecialty Research (United States)'),
(68577, 'https://ror.org/0094wp003', 'en', 1, 'https://ror.org/0094wp003 Ecological Sequestration Trust'),
(68578, 'https://ror.org/00scy5291', 'en', 1, 'https://ror.org/00scy5291 Centre for Contemporary Art and the Natural World'),
(68579, 'https://ror.org/037hv9r60', 'en', 1, 'https://ror.org/037hv9r60 Efficient Energy Centre'),
(68580, 'https://ror.org/04003b617', 'en', 1, 'https://ror.org/04003b617 Institute for Social Transformation'),
(68581, 'https://ror.org/02wtkky92', 'en', 1, 'https://ror.org/02wtkky92 The Emergency Planning Society'),
(68582, 'https://ror.org/0328qyd75', 'en', 1, 'https://ror.org/0328qyd75 The Equality Trust'),
(68583, 'https://ror.org/03snzra40', 'en', 1, 'https://ror.org/03snzra40 Institute of Information Security Professionals'),
(68584, 'https://ror.org/05d0gds53', 'en', 1, 'https://ror.org/05d0gds53 The Financial Inclusion Centre'),
(68585, 'https://ror.org/03g9ft432', 'en', 1, 'https://ror.org/03g9ft432 The Hearth'),
(68586, 'https://ror.org/03wb5j481', 'en', 1, 'https://ror.org/03wb5j481 The Facilities Society'),
(68587, 'https://ror.org/013pta043', 'en', 1, 'https://ror.org/013pta043 Noise Abatement Society'),
(68588, 'https://ror.org/04a5mbz91', 'en', 1, 'https://ror.org/04a5mbz91 Investor Relations Society'),
(68589, 'https://ror.org/031ftjj55', 'en', 1, 'https://ror.org/031ftjj55 Northumberland and Durham Family History Society'),
(68590, 'https://ror.org/04ke81j60', 'no_lang_code', 1, 'https://ror.org/04ke81j60 Katiba Institute'),
(68591, 'https://ror.org/00n3bma30', 'en', 1, 'https://ror.org/00n3bma30 The Operational Research Society'),
(68592, 'https://ror.org/03m9tj704', 'en', 1, 'https://ror.org/03m9tj704 The Kauri Museum'),
(68593, 'https://ror.org/02c2c0k38', 'en', 1, 'https://ror.org/02c2c0k38 The Parks Agency'),
(68594, 'https://ror.org/02h26j898', 'en', 1, 'https://ror.org/02h26j898 Kings Foundation'),
(68595, 'https://ror.org/02fqfwd96', 'en', 1, 'https://ror.org/02fqfwd96 FreeBSD Foundation'),
(68596, 'https://ror.org/01jgm3705', 'en', 1, 'https://ror.org/01jgm3705 Autism at Kingwood'),
(68597, 'https://ror.org/016skwe97', 'en', 1, 'https://ror.org/016skwe97 The Gate'),
(68598, 'https://ror.org/01ks5xj83', 'en', 1, 'https://ror.org/01ks5xj83 The Parks Trust'),
(68599, 'https://ror.org/051816580', 'en', 1, 'https://ror.org/051816580 Hackney Learning Trust'),
(68600, 'https://ror.org/044wa0621', 'en', 1, 'https://ror.org/044wa0621 Perry Foundation'),
(68601, 'https://ror.org/01crhk777', 'en', 1, 'https://ror.org/01crhk777 LGBT Foundation'),
(68602, 'https://ror.org/02861vh07', 'en', 1, 'https://ror.org/02861vh07 The Poetry Society'),
(68603, 'https://ror.org/037q25y47', 'en', 1, 'https://ror.org/037q25y47 The Lewis Carroll Society'),
(68604, 'https://ror.org/0409tje58', 'en', 1, 'https://ror.org/0409tje58 Press Association'),
(68605, 'https://ror.org/0051af203', 'en', 1, 'https://ror.org/0051af203 The Lindsay Leg Club Foundation'),
(68606, 'https://ror.org/04pw37k23', 'no_lang_code', 1, 'https://ror.org/04pw37k23 Deciwatt (United Kingdom)'),
(68607, 'https://ror.org/00twd4s32', 'en', 1, 'https://ror.org/00twd4s32 Great North Museum Hancock'),
(68608, 'https://ror.org/00qbdg904', 'en', 1, 'https://ror.org/00qbdg904 Road Clinical Hospital on Novosibirsk-Main JSC Russian Railways ŠŠ£Š— "Š”Š¾Ń€Š¾Š¶Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° на ст ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗ-Главный ŠžŠŠž "Š Š–Š”"'),
(68609, 'https://ror.org/05fh4qp85', 'en', 1, 'https://ror.org/05fh4qp85 The Grierson Trust'),
(68610, 'https://ror.org/03sq05k80', 'en', 1, 'https://ror.org/03sq05k80 Red Poll Cattle Society'),
(68611, 'https://ror.org/05mw0ee88', 'en', 1, 'https://ror.org/05mw0ee88 Instytut im. Jerzego Grotowskiego The Grotowski Institute'),
(68612, 'https://ror.org/006wjwp03', 'nl', 1, 'https://ror.org/006wjwp03 National Museum Nationale Kunstgalerij’ Rijksmuseum'),
(68613, 'https://ror.org/00gfzq956', 'en', 1, 'https://ror.org/00gfzq956 The McMinn Centre'),
(68614, 'https://ror.org/02vxq2c49', 'en', 1, 'https://ror.org/02vxq2c49 Royal Academy of Arts'),
(68615, 'https://ror.org/0039f4626', 'en', 1, 'https://ror.org/0039f4626 Royal Engineers Museum'),
(68616, 'https://ror.org/059mrwr24', 'no_lang_code', 1, 'https://ror.org/059mrwr24 The Medical Device (United Kingdom)'),
(68617, 'https://ror.org/00mezra25', 'en', 1, 'https://ror.org/00mezra25 The Hans GƔl Society'),
(68618, 'https://ror.org/03mw0xn70', 'no_lang_code', 1, 'https://ror.org/03mw0xn70 Royal London Group (United Kingdom)'),
(68619, 'https://ror.org/03wcjpf37', 'en', 1, 'https://ror.org/03wcjpf37 The Hellenic Centre'),
(68620, 'https://ror.org/043wep886', 'no_lang_code', 1, 'https://ror.org/043wep886 Mikhulu Trust'),
(68621, 'https://ror.org/05kpepv05', 'en', 1, 'https://ror.org/05kpepv05 The Vega Science Trust'),
(68622, 'https://ror.org/04ykwve34', 'en', 1, 'https://ror.org/04ykwve34 Saamarthya Foundation'),
(68623, 'https://ror.org/058efm270', 'en', 1, 'https://ror.org/058efm270 The Mill'),
(68624, 'https://ror.org/02hrnt925', 'en', 1, 'https://ror.org/02hrnt925 Samuel Johnson Birthplace Museum'),
(68625, 'https://ror.org/02xxmdw74', 'en', 1, 'https://ror.org/02xxmdw74 The Modernist Society'),
(68626, 'https://ror.org/04qke1n53', 'en', 1, 'https://ror.org/04qke1n53 Veterinary Medicines Directorate'),
(68627, 'https://ror.org/039cmfe51', 'en', 1, 'https://ror.org/039cmfe51 Vienna Institute for Urban Sustainability'),
(68628, 'https://ror.org/014fqyj02', 'en', 1, 'https://ror.org/014fqyj02 The National Allotment Society'),
(68629, 'https://ror.org/05ghfbv04', 'en', 1, 'https://ror.org/05ghfbv04 Sir James Knott Trust'),
(68630, 'https://ror.org/03hjbp089', 'en', 1, 'https://ror.org/03hjbp089 Wallace Kelsey Research Foundation'),
(68631, 'https://ror.org/02x6wmw65', 'en', 1, 'https://ror.org/02x6wmw65 The National Centre for Early Music'),
(68632, 'https://ror.org/02ja69h88', 'en', 1, 'https://ror.org/02ja69h88 The Society of Portrait Sculptors'),
(68633, 'https://ror.org/03mfwzh84', 'en', 1, 'https://ror.org/03mfwzh84 The Work Foundation'),
(68634, 'https://ror.org/04fsg5361', 'en', 1, 'https://ror.org/04fsg5361 Theatrescience'),
(68635, 'https://ror.org/04wn4j219', 'en', 1, 'https://ror.org/04wn4j219 National Telford Institute'),
(68636, 'https://ror.org/012c60617', 'en', 1, 'https://ror.org/012c60617 The Spectrum Centre'),
(68637, 'https://ror.org/01r7ewj84', 'en', 1, 'https://ror.org/01r7ewj84 Nerve Centre'),
(68638, 'https://ror.org/05nr25f03', 'no_lang_code', 1, 'https://ror.org/05nr25f03 Translational Research Platform for Veterinary Biologicals (India)'),
(68639, 'https://ror.org/04a3b0x78', 'en', 1, 'https://ror.org/04a3b0x78 The Tuke Centre'),
(68640, 'https://ror.org/04mvkev15', 'en', 1, 'https://ror.org/04mvkev15 Twentieth Century Society'),
(68641, 'https://ror.org/02bggcy46', 'en', 1, 'https://ror.org/02bggcy46 Transport and Health Study Group'),
(68642, 'https://ror.org/01g9gaq76', 'en', 1, 'https://ror.org/01g9gaq76 Xuzhou Cancer Hospital'),
(68643, 'https://ror.org/01g36xg54', 'en', 1, 'https://ror.org/01g36xg54 Trees and Design Action Group'),
(68644, 'https://ror.org/02ndp2s95', 'en', 1, 'https://ror.org/02ndp2s95 The UK Cards Association'),
(68645, 'https://ror.org/01kvaek42', 'en', 1, 'https://ror.org/01kvaek42 Thomas Mann Cultural Centre Thomo Manno Kultūros Centras'),
(68646, 'https://ror.org/015dvxx67', 'en', 1, 'https://ror.org/015dvxx67 Institute of Mental Health'),
(68647, 'https://ror.org/02vd17947', 'no_lang_code', 1, 'https://ror.org/02vd17947 Thornhill Medical (Canada)'),
(68648, 'https://ror.org/00ragt065', 'en', 1, 'https://ror.org/00ragt065 Trent Rivers Trust'),
(68649, 'https://ror.org/05y477617', 'en', 1, 'https://ror.org/05y477617 Comann Eachdraidh Uig'),
(68650, 'https://ror.org/048a6mf06', 'en', 1, 'https://ror.org/048a6mf06 Spencer Academies Trust'),
(68651, 'https://ror.org/011hgk177', 'no_lang_code', 1, 'https://ror.org/011hgk177 Thusanani Foundation'),
(68652, 'https://ror.org/03c388s57', 'en', 1, 'https://ror.org/03c388s57 United Kingdom Antarctic Heritage Trust'),
(68653, 'https://ror.org/05y8p4437', 'en', 1, 'https://ror.org/05y8p4437 Trials Methodology Research Network'),
(68654, 'https://ror.org/039zhwx76', 'en', 1, 'https://ror.org/039zhwx76 Buddhist Digital Resource Center'),
(68655, 'https://ror.org/01z28z523', 'en', 1, 'https://ror.org/01z28z523 Trinity House Community Resource Centre'),
(68656, 'https://ror.org/05p2t9n36', 'en', 1, 'https://ror.org/05p2t9n36 Anshan Hospital éžå±±åø‚é“č„æåŒ»é™¢'),
(68657, 'https://ror.org/05ekxjh51', 'en', 1, 'https://ror.org/05ekxjh51 The Research Network'),
(68658, 'https://ror.org/01zbsa271', 'en', 1, 'https://ror.org/01zbsa271 UK Centre for Tobacco & Alcohol Studies'),
(68659, 'https://ror.org/0342vn940', 'no_lang_code', 1, 'https://ror.org/0342vn940 Tromp Medical (Netherlands)');
INSERT INTO `rors` VALUES
(68660, 'https://ror.org/02afwny15', 'en', 1, 'https://ror.org/02afwny15 Tiree Community Development Trust'),
(68661, 'https://ror.org/05bc3r795', 'en', 1, 'https://ror.org/05bc3r795 UK Collaborative on Development Research'),
(68662, 'https://ror.org/02hm6a795', 'no_lang_code', 1, 'https://ror.org/02hm6a795 Tropical Marine Centre (United Kingdom)'),
(68663, 'https://ror.org/04zay9103', 'en', 1, 'https://ror.org/04zay9103 The Trussell Trust'),
(68664, 'https://ror.org/03vw5v747', 'en', 1, 'https://ror.org/03vw5v747 Toft Historical Society'),
(68665, 'https://ror.org/021v42516', 'en', 1, 'https://ror.org/021v42516 Glastonbury Abbey'),
(68666, 'https://ror.org/008kjzh81', 'en', 1, 'https://ror.org/008kjzh81 UK Irrigation Association'),
(68667, 'https://ror.org/001000g32', 'en', 1, 'https://ror.org/001000g32 Tullie House Museum and Art Gallery'),
(68668, 'https://ror.org/011yqtc07', 'en', 1, 'https://ror.org/011yqtc07 Turks and Caicos National Museum'),
(68669, 'https://ror.org/01e4h3c94', 'no_lang_code', 1, 'https://ror.org/01e4h3c94 Tony Coll and Associates (United Kingdom)'),
(68670, 'https://ror.org/010h6a642', 'en', 1, 'https://ror.org/010h6a642 Topsham Museum'),
(68671, 'https://ror.org/045p8ax41', 'en', 1, 'https://ror.org/045p8ax41 Turquoise Mountain'),
(68672, 'https://ror.org/006agn966', 'en', 1, 'https://ror.org/006agn966 Tor Lodge and Applecross Trust'),
(68673, 'https://ror.org/020ap9s27', 'en', 1, 'https://ror.org/020ap9s27 United Kingdom Petroleum Industry Association'),
(68674, 'https://ror.org/007wjj235', 'en', 1, 'https://ror.org/007wjj235 2Blades Foundation'),
(68675, 'https://ror.org/056ykyc11', 'no_lang_code', 1, 'https://ror.org/056ykyc11 Torbay Development Agency (United Kingdom)'),
(68676, 'https://ror.org/00nh4sd73', 'en', 1, 'https://ror.org/00nh4sd73 UK Quality Ash Association'),
(68677, 'https://ror.org/04d9w7y23', 'no_lang_code', 1, 'https://ror.org/04d9w7y23 TwoCan Associates (United Kingdom)'),
(68678, 'https://ror.org/03x6nht44', 'en', 1, 'https://ror.org/03x6nht44 Torquay Museum'),
(68679, 'https://ror.org/00je08x63', 'en', 1, 'https://ror.org/00je08x63 Tygerberg Children’s Hospital'),
(68680, 'https://ror.org/00j5pc081', 'en', 1, 'https://ror.org/00j5pc081 The UK Sepsis Trust'),
(68681, 'https://ror.org/040tfy969', 'en', 1, 'https://ror.org/040tfy969 Tyndall Centre'),
(68682, 'https://ror.org/04kdrdn36', 'en', 1, 'https://ror.org/04kdrdn36 Awdurdod Ystadegau''r DU UK Statistics Authority'),
(68683, 'https://ror.org/01y3m2562', 'en', 1, 'https://ror.org/01y3m2562 Tyne & Wear Building Preservation Trust'),
(68684, 'https://ror.org/01mj2ze90', 'en', 1, 'https://ror.org/01mj2ze90 Tyne Rivers Trust'),
(68685, 'https://ror.org/039xsf007', 'en', 1, 'https://ror.org/039xsf007 Otharlann Chontae ThĆ­r Eoghain Tyrone County Hospital'),
(68686, 'https://ror.org/012g5w926', 'en', 1, 'https://ror.org/012g5w926 Universal Rights Group'),
(68687, 'https://ror.org/02yczqn06', 'en', 1, 'https://ror.org/02yczqn06 UbonRatchathani Rice Research Center ąøØąø¹ąø™ąø¢ą¹Œąø§ąø“ąøˆąø±ąø¢ąø‚ą¹‰ąø²ąø§ąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(68688, 'https://ror.org/04t514251', 'no_lang_code', 1, 'https://ror.org/04t514251 UK-China Guangdong CCUS Centre'),
(68689, 'https://ror.org/020pnfy52', 'en', 1, 'https://ror.org/020pnfy52 University Alliance'),
(68690, 'https://ror.org/01pz7ej14', 'en', 1, 'https://ror.org/01pz7ej14 UK Carbon Capture and Research Centre'),
(68691, 'https://ror.org/057tkar12', 'en', 1, 'https://ror.org/057tkar12 Understanding Childhood Arthritis Network'),
(68692, 'https://ror.org/003aa7r63', 'en', 1, 'https://ror.org/003aa7r63 Uganda Red Cross Society'),
(68693, 'https://ror.org/0005q3137', 'en', 1, 'https://ror.org/0005q3137 Ultach Trust'),
(68694, 'https://ror.org/057tdt975', 'en', 1, 'https://ror.org/057tdt975 University of Warwick Science Park'),
(68695, 'https://ror.org/01xnh6j48', 'en', 1, 'https://ror.org/01xnh6j48 United Learning'),
(68696, 'https://ror.org/010e6zk56', 'en', 1, 'https://ror.org/010e6zk56 Urban Big Data Centre'),
(68697, 'https://ror.org/05rf93e76', 'en', 1, 'https://ror.org/05rf93e76 Voluntary Health Scotland'),
(68698, 'https://ror.org/037trk629', 'en', 1, 'https://ror.org/037trk629 Volunteer Dundee'),
(68699, 'https://ror.org/02a8fvh42', 'en', 1, 'https://ror.org/02a8fvh42 Useful Simple Trust'),
(68700, 'https://ror.org/05k533e16', 'en', 1, 'https://ror.org/05k533e16 Vana Trust'),
(68701, 'https://ror.org/01aary583', 'en', 1, 'https://ror.org/01aary583 Verbal Arts Centre'),
(68702, 'https://ror.org/02w9ngz08', 'no_lang_code', 1, 'https://ror.org/02w9ngz08 Verdesian (United Kingdom)'),
(68703, 'https://ror.org/027p78k86', 'no_lang_code', 1, 'https://ror.org/027p78k86 Ligand Pharmaceuticals (United Kingdom)'),
(68704, 'https://ror.org/04nzw6768', 'no_lang_code', 1, 'https://ror.org/04nzw6768 W. L. Gore & Associates (United Kingdom)'),
(68705, 'https://ror.org/039fta733', 'en', 1, 'https://ror.org/039fta733 West of England Centre for Inclusive Living'),
(68706, 'https://ror.org/02sbgzg70', 'en', 1, 'https://ror.org/02sbgzg70 Vine Trust'),
(68707, 'https://ror.org/00z58gx92', 'en', 1, 'https://ror.org/00z58gx92 Wai Yin Society'),
(68708, 'https://ror.org/0084xy061', 'no_lang_code', 1, 'https://ror.org/0084xy061 Vishuo Biomedical (Singapore)'),
(68709, 'https://ror.org/021d2w304', 'no_lang_code', 1, 'https://ror.org/021d2w304 Vivo Smart Medical Devices (United Kingdom)'),
(68710, 'https://ror.org/05r66v627', 'en', 1, 'https://ror.org/05r66v627 The AD Centre'),
(68711, 'https://ror.org/03h20ca94', 'en', 1, 'https://ror.org/03h20ca94 Walk Free Foundation'),
(68712, 'https://ror.org/012mrz395', 'no_lang_code', 1, 'https://ror.org/012mrz395 Walker Associates Architects (United Kingdom)'),
(68713, 'https://ror.org/05k0e7y54', 'en', 1, 'https://ror.org/05k0e7y54 Wallingford Museum'),
(68714, 'https://ror.org/028v2q832', 'en', 1, 'https://ror.org/028v2q832 Wear Rivers Trust'),
(68715, 'https://ror.org/0030fkc22', 'en', 1, 'https://ror.org/0030fkc22 Wandle'),
(68716, 'https://ror.org/02aaavs63', 'en', 1, 'https://ror.org/02aaavs63 Anglo-Boer War Museum'),
(68717, 'https://ror.org/02fyvxt44', 'no_lang_code', 1, 'https://ror.org/02fyvxt44 Drive DeVilbiss Healthcare (United Kingdom)'),
(68718, 'https://ror.org/005smnq10', 'en', 1, 'https://ror.org/005smnq10 The Welsh Black Cattle Society'),
(68719, 'https://ror.org/028awrr93', 'en', 1, 'https://ror.org/028awrr93 Woodbrooke'),
(68720, 'https://ror.org/02qqz2g41', 'en', 1, 'https://ror.org/02qqz2g41 Welsh Refugee Council'),
(68721, 'https://ror.org/05y05z458', 'en', 1, 'https://ror.org/05y05z458 Welwyn Archaeological Society'),
(68722, 'https://ror.org/05qnpc206', 'en', 1, 'https://ror.org/05qnpc206 Museums Northumberland'),
(68723, 'https://ror.org/03nkk3987', 'en', 1, 'https://ror.org/03nkk3987 Worcestershire Health and Care NHS Trust'),
(68724, 'https://ror.org/025s7rk09', 'en', 1, 'https://ror.org/025s7rk09 Wessex Chalk Stream and Rivers Trust'),
(68725, 'https://ror.org/01wey0b22', 'en', 1, 'https://ror.org/01wey0b22 West Cumbria Rivers Trust'),
(68726, 'https://ror.org/03hzr9w43', 'en', 1, 'https://ror.org/03hzr9w43 Club & Institute Union'),
(68727, 'https://ror.org/05fkmgk28', 'en', 1, 'https://ror.org/05fkmgk28 World Dementia Council'),
(68728, 'https://ror.org/01hthk989', 'en', 1, 'https://ror.org/01hthk989 World Endometriosis Research Foundation'),
(68729, 'https://ror.org/02980ky18', 'en', 1, 'https://ror.org/02980ky18 West of England Academic Health Science Network'),
(68730, 'https://ror.org/00k7xg884', 'en', 1, 'https://ror.org/00k7xg884 World Energy Council'),
(68731, 'https://ror.org/00darb407', 'en', 1, 'https://ror.org/00darb407 West Of Scotland Housing Association'),
(68732, 'https://ror.org/012xd9119', 'no_lang_code', 1, 'https://ror.org/012xd9119 WestCon Medical (United States)'),
(68733, 'https://ror.org/02hj84f21', 'en', 1, 'https://ror.org/02hj84f21 World Sugar Research Organisation'),
(68734, 'https://ror.org/02e5d6e23', 'en', 1, 'https://ror.org/02e5d6e23 The Western Front Association'),
(68735, 'https://ror.org/053gcq860', 'en', 1, 'https://ror.org/053gcq860 Wormingford Community Education Centre'),
(68736, 'https://ror.org/016hpv675', 'en', 1, 'https://ror.org/016hpv675 Westgate Hall'),
(68737, 'https://ror.org/00qavst65', 'en', 1, 'https://ror.org/00qavst65 Wuhan Puai Hospital ę­¦ę±‰ę™®ēˆ±åŒ»é™¢'),
(68738, 'https://ror.org/00ja58288', 'en', 1, 'https://ror.org/00ja58288 Wheal Martyn'),
(68739, 'https://ror.org/01m3mp859', 'en', 1, 'https://ror.org/01m3mp859 The Wye & Usk Foundation'),
(68740, 'https://ror.org/029n3ke88', 'no_lang_code', 1, 'https://ror.org/029n3ke88 Wyld (United Kingdom)'),
(68741, 'https://ror.org/042tf3y40', 'en', 1, 'https://ror.org/042tf3y40 Wild Trout Trust'),
(68742, 'https://ror.org/03hxhpz06', 'en', 1, 'https://ror.org/03hxhpz06 Wildlife Conservation Society United Kingdom'),
(68743, 'https://ror.org/05cz4ke42', 'en', 1, 'https://ror.org/05cz4ke42 Wildwood Trust'),
(68744, 'https://ror.org/02ykpj445', 'en', 1, 'https://ror.org/02ykpj445 Windrush Foundation'),
(68745, 'https://ror.org/04j9eba34', 'en', 1, 'https://ror.org/04j9eba34 Wysing Arts Centre'),
(68746, 'https://ror.org/05dmkvt76', 'en', 1, 'https://ror.org/05dmkvt76 Wise Monkey Foundation'),
(68747, 'https://ror.org/02nmjb623', 'no_lang_code', 1, 'https://ror.org/02nmjb623 Xi''an City Planning&Design Institute (China) č„æå®‰åø‚åŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(68748, 'https://ror.org/033d2dh14', 'en', 1, 'https://ror.org/033d2dh14 Wolverhampton Art Gallery'),
(68749, 'https://ror.org/034ds6p31', 'en', 1, 'https://ror.org/034ds6p31 Yunnan Archaeology äŗ‘å—ēœę–‡ē‰©č€ƒå¤ē ”ē©¶ę‰€ęˆē«‹äŗŽ'),
(68750, 'https://ror.org/04m1grf16', 'en', 1, 'https://ror.org/04m1grf16 Zambia Red Cross Society'),
(68751, 'https://ror.org/03prq2784', 'en', 1, 'https://ror.org/03prq2784 Zhuzhou Central Hospital ę Ŗę“²åø‚äø­åæƒåŒ»é™¢'),
(68752, 'https://ror.org/044dcv581', 'en', 1, 'https://ror.org/044dcv581 York Blind & Partially Sighted Society'),
(68753, 'https://ror.org/01rbmj730', 'en', 1, 'https://ror.org/01rbmj730 York Castle Museum'),
(68754, 'https://ror.org/005y6yz11', 'en', 1, 'https://ror.org/005y6yz11 Zoological Society of East Anglia'),
(68755, 'https://ror.org/02teqse50', 'en', 1, 'https://ror.org/02teqse50 Yorkshire & Humber Academic Health Science Network'),
(68756, 'https://ror.org/03hh6sn09', 'en', 1, 'https://ror.org/03hh6sn09 Yunnan Building Materials Research & Design Institute äŗ‘å—å¤§å­¦å»ŗē­‘äøŽč§„åˆ’å­¦é™¢'),
(68757, 'https://ror.org/00fd8gy33', 'en', 1, 'https://ror.org/00fd8gy33 Yorkshire Dales Millennium Trust'),
(68758, 'https://ror.org/0555yg896', 'en', 1, 'https://ror.org/0555yg896 Asha Foundation'),
(68759, 'https://ror.org/005trhy70', 'en', 1, 'https://ror.org/005trhy70 Young Women''s Trust'),
(68760, 'https://ror.org/019hsqt53', 'en', 1, 'https://ror.org/019hsqt53 Healing Fields Foundation ą°¹ą±€ą°²ą°æą°‚ą°—ą± ą°«ą±€ą°²ą±ą°”ą±ą°øą± ą°«ą±Œą°‚ą°”ą±‡ą°·ą°Øą±'),
(68761, 'https://ror.org/02bmxkm36', 'en', 1, 'https://ror.org/02bmxkm36 Deepak Foundation'),
(68762, 'https://ror.org/0592ben86', 'en', 1, 'https://ror.org/0592ben86 Indian Institute of Public Health Gandhinagar ભારતીય જન ąŖøą«ąŖµąŖ¾ąŖøą«ąŖ„ ąŖøąŖ‚ąŖøą«ąŖ„ąŖ¾ąŖØ ગાંધીનગર'),
(68763, 'https://ror.org/04mn04g76', 'en', 1, 'https://ror.org/04mn04g76 Rajasthan Police Academy ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤²ą¤æą¤ø ą¤…ą¤•ą¤¾ą¤¦ą¤®ą„€'),
(68764, 'https://ror.org/01bqrhe48', 'en', 1, 'https://ror.org/01bqrhe48 Institute of Genetics and Hospital for Genetic Diseases ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°œą±†ą°Øą°æą°Ÿą°æą°•ą±ą°øą± ą°…ą°‚ą°”ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą± ą°«ą°°ą± ą°œą±†ą°Øą±†ą°Ÿą°æą°•ą± ą°”ą°æą°øą±€ą°œą±†ą°øą±'),
(68765, 'https://ror.org/02nqa0m70', 'en', 1, 'https://ror.org/02nqa0m70 Schieffelin Institute of Health Research and Leprosy Centre'),
(68766, 'https://ror.org/026rd5w83', 'en', 1, 'https://ror.org/026rd5w83 Maharashtra Association of Anthropological Sciences ą¤®ą¤¾ą¤Øą¤µą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤…ą¤øą„‹ą¤øą¤æą¤ą¤¶ą¤Ø'),
(68767, 'https://ror.org/05w7dft64', 'en', 1, 'https://ror.org/05w7dft64 National Institute of Cancer Prevention and Research'),
(68768, 'https://ror.org/01byxa330', 'no_lang_code', 1, 'https://ror.org/01byxa330 Navdanya'),
(68769, 'https://ror.org/00je6er82', 'en', 1, 'https://ror.org/00je6er82 Mississippi Division of Medicaid'),
(68770, 'https://ror.org/0474hd478', 'no_lang_code', 1, 'https://ror.org/0474hd478 TLM Shahdara Hospital'),
(68771, 'https://ror.org/03fs9z545', 'en', 1, 'https://ror.org/03fs9z545 Mahidol Oxford Tropical Medicine Research Unit'),
(68772, 'https://ror.org/04jjxrc37', 'en', 1, 'https://ror.org/04jjxrc37 Office of the Governor'),
(68773, 'https://ror.org/00gd4j561', 'en', 1, 'https://ror.org/00gd4j561 West Virginia Bureau of Senior Services'),
(68774, 'https://ror.org/02egea792', 'en', 1, 'https://ror.org/02egea792 United Way of Greater Houston'),
(68775, 'https://ror.org/05vmv7z45', 'en', 1, 'https://ror.org/05vmv7z45 Arkansas Insurance Department'),
(68776, 'https://ror.org/005a3qv04', 'en', 1, 'https://ror.org/005a3qv04 Illinois Primary Health Care Association'),
(68777, 'https://ror.org/058pb0b36', 'en', 1, 'https://ror.org/058pb0b36 State of Vermont Office of Governor'),
(68778, 'https://ror.org/05vng4k71', 'en', 1, 'https://ror.org/05vng4k71 Kansas Office of the Governor'),
(68779, 'https://ror.org/04qwqk520', 'en', 1, 'https://ror.org/04qwqk520 State of Alaska Office of the Governor'),
(68780, 'https://ror.org/052pk7q80', 'en', 1, 'https://ror.org/052pk7q80 Alabama State Office of Governor'),
(68781, 'https://ror.org/0538ncp57', 'en', 1, 'https://ror.org/0538ncp57 Mount Sanford Tribal Consortium'),
(68782, 'https://ror.org/05vmzg372', 'no_lang_code', 1, 'https://ror.org/05vmzg372 Villares Metals (Brasil)'),
(68783, 'https://ror.org/054x00070', 'en', 1, 'https://ror.org/054x00070 Wisconsin Disability Association'),
(68784, 'https://ror.org/031exbw60', 'no_lang_code', 1, 'https://ror.org/031exbw60 Agilent Technologies (Brazil)'),
(68785, 'https://ror.org/01ka62b75', 'en', 1, 'https://ror.org/01ka62b75 Office of Governor'),
(68786, 'https://ror.org/03ezrv005', 'no_lang_code', 1, 'https://ror.org/03ezrv005 AgroBio Associação das Empresas de Biotecnologia na Agricultura e Agroindústria'),
(68787, 'https://ror.org/04pzbyz40', 'no_lang_code', 1, 'https://ror.org/04pzbyz40 Ananse (Brazil)'),
(68788, 'https://ror.org/05vfv3b25', 'no_lang_code', 1, 'https://ror.org/05vfv3b25 ArcelorMittal (Brazil)'),
(68789, 'https://ror.org/05v75d484', 'no_lang_code', 1, 'https://ror.org/05v75d484 Angus Bela Vista PecuƔria Central Bela Vista (Brazil)'),
(68790, 'https://ror.org/01mvkzd56', 'pt', 1, 'https://ror.org/01mvkzd56 Fundepag'),
(68791, 'https://ror.org/038jwkk56', 'no_lang_code', 1, 'https://ror.org/038jwkk56 Copersucar (Brazil)'),
(68792, 'https://ror.org/04h3mfd12', 'no_lang_code', 1, 'https://ror.org/04h3mfd12 Intel (Brazil)'),
(68793, 'https://ror.org/03gyt6j98', 'pt', 1, 'https://ror.org/03gyt6j98 Coopercitrus Cooperativa de Produtores Rurais'),
(68794, 'https://ror.org/05m7btq67', 'pt', 1, 'https://ror.org/05m7btq67 Associação Brasileira do Papelão Ondulado'),
(68795, 'https://ror.org/05bs2v013', 'no_lang_code', 1, 'https://ror.org/05bs2v013 ItaĆŗsa (Brazil)'),
(68796, 'https://ror.org/05hpw7264', 'pt', 1, 'https://ror.org/05hpw7264 CooxupƩ'),
(68797, 'https://ror.org/026m9xy48', 'no_lang_code', 1, 'https://ror.org/026m9xy48 AstraZeneca (Brazil)'),
(68798, 'https://ror.org/05smh3q72', 'no_lang_code', 1, 'https://ror.org/05smh3q72 JP Group (Brazil)'),
(68799, 'https://ror.org/01anktx53', 'no_lang_code', 1, 'https://ror.org/01anktx53 Sealed Air (Brazil)'),
(68800, 'https://ror.org/04qq74014', 'no_lang_code', 1, 'https://ror.org/04qq74014 Dedini Industrias De Base (Brazil)'),
(68801, 'https://ror.org/04f02tt58', 'no_lang_code', 1, 'https://ror.org/04f02tt58 Laboratório Teuto (Brazil)'),
(68802, 'https://ror.org/01ng1nj07', 'no_lang_code', 1, 'https://ror.org/01ng1nj07 Bio-Bras'),
(68803, 'https://ror.org/039mm4q57', 'no_lang_code', 1, 'https://ror.org/039mm4q57 Eaton (Brazil)'),
(68804, 'https://ror.org/01rfnpk52', 'no_lang_code', 1, 'https://ror.org/01rfnpk52 bioMƩrieux (Brazil)'),
(68805, 'https://ror.org/05dmqh951', 'no_lang_code', 1, 'https://ror.org/05dmqh951 Engemasa (Brazil)'),
(68806, 'https://ror.org/02m2t8v35', 'no_lang_code', 1, 'https://ror.org/02m2t8v35 Mahle (Brazil)'),
(68807, 'https://ror.org/010fz6j15', 'no_lang_code', 1, 'https://ror.org/010fz6j15 Equipalcool (Brazil)'),
(68808, 'https://ror.org/05wetj454', 'no_lang_code', 1, 'https://ror.org/05wetj454 Braskem (Brazil)'),
(68809, 'https://ror.org/016haaa50', 'no_lang_code', 1, 'https://ror.org/016haaa50 MetalgrƔfica Rojek (Brazil)'),
(68810, 'https://ror.org/025je7089', 'no_lang_code', 1, 'https://ror.org/025je7089 Atvos (Brazil)'),
(68811, 'https://ror.org/02hwd6186', 'no_lang_code', 1, 'https://ror.org/02hwd6186 Waelzholz (Brasil) Waelzholz Brasmetal Laminação'),
(68812, 'https://ror.org/00hc2mf91', 'no_lang_code', 1, 'https://ror.org/00hc2mf91 Microsoft (Brazil)'),
(68813, 'https://ror.org/05nwaqa23', 'no_lang_code', 1, 'https://ror.org/05nwaqa23 Celestica (Brasil)'),
(68814, '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'),
(68815, 'https://ror.org/00g832k89', 'pt', 1, 'https://ror.org/00g832k89 Grupo Montecitrus'),
(68816, 'https://ror.org/01ztwdy23', 'no_lang_code', 1, 'https://ror.org/01ztwdy23 CI&T (Brasil)'),
(68817, 'https://ror.org/03f9hxz36', 'no_lang_code', 1, 'https://ror.org/03f9hxz36 Companhia Brasileira de Aluminio'),
(68818, 'https://ror.org/04pqzwm85', 'no_lang_code', 1, 'https://ror.org/04pqzwm85 GlaxoSmithKline (Brazil)'),
(68819, 'https://ror.org/05thm6q88', 'no_lang_code', 1, 'https://ror.org/05thm6q88 IBM (Brazil)'),
(68820, 'https://ror.org/05qect977', 'no_lang_code', 1, 'https://ror.org/05qect977 Infibra (Brazil)'),
(68821, 'https://ror.org/0435yq060', 'no_lang_code', 1, 'https://ror.org/0435yq060 Ourofino SaĆŗde Animal (Brazil)'),
(68822, 'https://ror.org/02gcshf78', 'no_lang_code', 1, 'https://ror.org/02gcshf78 Natura (Brazil)'),
(68823, 'https://ror.org/05aytwf55', 'no_lang_code', 1, 'https://ror.org/05aytwf55 Owens Corning (Brazil)'),
(68824, 'https://ror.org/049gt8c76', 'no_lang_code', 1, 'https://ror.org/049gt8c76 Ultrapar (Brazil)'),
(68825, 'https://ror.org/013rhnj14', 'pt', 1, 'https://ror.org/013rhnj14 Instituto de Estudos de SaĆŗde Suplementar'),
(68826, 'https://ror.org/04qbw6v56', 'pt', 1, 'https://ror.org/04qbw6v56 NĆŗcleo Interdisciplinar da CiĆŖncia do Sono'),
(68827, 'https://ror.org/00bndmb79', 'no_lang_code', 1, 'https://ror.org/00bndmb79 TecnoBio (Brazil)'),
(68828, 'https://ror.org/024p6za61', 'no_lang_code', 1, 'https://ror.org/024p6za61 Solvay (Brazil)'),
(68829, 'https://ror.org/03xyc1c11', 'no_lang_code', 1, 'https://ror.org/03xyc1c11 Proteca (Brazil)'),
(68830, 'https://ror.org/024w3dd68', 'no_lang_code', 1, 'https://ror.org/024w3dd68 Tetra Pak (Brazil)'),
(68831, 'https://ror.org/00tgp6q68', 'no_lang_code', 1, 'https://ror.org/00tgp6q68 Voestalpine (Brazil)'),
(68832, 'https://ror.org/01b30v774', 'no_lang_code', 1, 'https://ror.org/01b30v774 Sakata (Brazil)'),
(68833, 'https://ror.org/03t0w9n05', 'no_lang_code', 1, 'https://ror.org/03t0w9n05 Sama (Brazil)'),
(68834, 'https://ror.org/01g7a7y43', 'no_lang_code', 1, 'https://ror.org/01g7a7y43 Noravank Foundation Õ†ÕøÖ€Õ”Õ¾Õ”Õ¶Ö„Ā» Õ°Õ«Õ“Õ¶Õ”Õ¤Ö€Õ”Õ“'),
(68835, 'https://ror.org/01tw5qz74', 'en', 1, 'https://ror.org/01tw5qz74 Aitchison College Ų§ŪŒŚ†ŪŒŲ³Ł† Ś©Ų§Ł„Ų¬ā€Ž'),
(68836, 'https://ror.org/043c0pj05', 'no_lang_code', 1, 'https://ror.org/043c0pj05 Saur (Armenia)'),
(68837, 'https://ror.org/029a61c63', 'en', 1, 'https://ror.org/029a61c63 Academy of Policy and Development'),
(68838, 'https://ror.org/02abp7362', 'no_lang_code', 1, 'https://ror.org/02abp7362 358 (Finland)'),
(68839, 'https://ror.org/03q8q9685', 'en', 1, 'https://ror.org/03q8q9685 Academia de Administrare Publică Academy of Public Administration'),
(68840, 'https://ror.org/01dsgn298', 'no_lang_code', 1, 'https://ror.org/01dsgn298 Al-Kasaba Theatre & Cinematheque Ł…Ų³Ų±Ų­ ŁˆŲ³ŁŠŁ†Ł…Ų§ŲŖŁƒ القصبة'),
(68841, 'https://ror.org/015480z05', 'en', 1, 'https://ror.org/015480z05 All-Russian Institute of Agrarian Problems and Informatics A.A.Nikonova Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрных проблем Šø информатики им. А.А.ŠŠøŠŗŠ¾Š½Š¾Š²Š°'),
(68842, 'https://ror.org/04a09r739', 'en', 1, 'https://ror.org/04a09r739 Academy of Public Administration under the President of the Kyrgyz Republic ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при ŠŸŃ€ŠµŠ·ŠøŠ“енте ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾Š¹ Республики'),
(68843, 'https://ror.org/04qer5752', 'en', 1, 'https://ror.org/04qer5752 Institute of Archaeology named after A.Kh.Margulan Ә.Š„. ŠœŠ°Ń€Ņ“Ņ±Š»Š°Š½ атынГағы ŠŃ€Ń…ŠµŠ¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(68844, 'https://ror.org/02efpnz39', 'fr', 1, 'https://ror.org/02efpnz39 AcadƩmie de Versailles'),
(68845, 'https://ror.org/03qsnan22', 'en', 1, 'https://ror.org/03qsnan22 Alaska Community Action on Toxics'),
(68846, 'https://ror.org/00esg0r84', 'en', 1, 'https://ror.org/00esg0r84 Abilities United'),
(68847, 'https://ror.org/037e7x320', 'no_lang_code', 1, 'https://ror.org/037e7x320 Actar (Spain)'),
(68848, 'https://ror.org/02easm151', 'no_lang_code', 1, 'https://ror.org/02easm151 Albion (United States)'),
(68849, 'https://ror.org/05pvcyy59', 'en', 1, 'https://ror.org/05pvcyy59 Aarhus Business College Aarhus Handelsforenings Aftenskole'),
(68850, 'https://ror.org/04tpe6y42', 'en', 1, 'https://ror.org/04tpe6y42 Dr. Sadhana Nayak’s Voice Clinic and Center'),
(68851, 'https://ror.org/00e3gp542', 'en', 1, 'https://ror.org/00e3gp542 National Library of New Zealand'),
(68852, 'https://ror.org/05tp36v93', 'en', 1, 'https://ror.org/05tp36v93 Advanced Center for Water Resources Development and Management'),
(68853, 'https://ror.org/02e6s3r40', 'es', 1, 'https://ror.org/02e6s3r40 Escuela Superior de Artes de YucatƔn'),
(68854, 'https://ror.org/05a1sck78', 'no_lang_code', 1, 'https://ror.org/05a1sck78 Alice Films (France)'),
(68855, 'https://ror.org/02h3fax78', 'en', 1, 'https://ror.org/02h3fax78 National library of Uzbekistan ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š° библиотека Узбекистана'),
(68856, 'https://ror.org/04mmeqg04', 'fr', 1, 'https://ror.org/04mmeqg04 Agence France Presse'),
(68857, 'https://ror.org/05r9ndf46', 'en', 1, 'https://ror.org/05r9ndf46 Al Sadu Society بيت Ų§Ł„Ų³ŲÆŁˆ'),
(68858, 'https://ror.org/04h8j1922', 'no_lang_code', 1, 'https://ror.org/04h8j1922 Alvin Ailey (United States)'),
(68859, 'https://ror.org/019qwdy63', 'en', 1, 'https://ror.org/019qwdy63 American Center Yangon'),
(68860, 'https://ror.org/02s040f34', 'es', 1, 'https://ror.org/02s040f34 Instituto de Investigaciones en Ciencias Agrarias de Rosario'),
(68861, 'https://ror.org/041a6wm28', 'en', 1, 'https://ror.org/041a6wm28 American Chamber of Commerce in Kosovo Oda Ekonomike Amerikane ne Kosove'),
(68862, 'https://ror.org/00rcg3441', 'en', 1, 'https://ror.org/00rcg3441 Shamakhy Astrophysical Observatory named after Nasraddin Tusi'),
(68863, 'https://ror.org/00jhpn059', 'en', 1, 'https://ror.org/00jhpn059 American University of Mongolia Монгол Š“Š°Ń…ŃŒ Америк Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(68864, 'https://ror.org/048c72h25', 'en', 1, 'https://ror.org/048c72h25 Anokhi Museum of Hand Printing ą¤…ą¤Øą„‹ą¤–ą„€ ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ'),
(68865, 'https://ror.org/04na1dr63', 'en', 1, 'https://ror.org/04na1dr63 Anthropological Survey of India'),
(68866, 'https://ror.org/03cnkgk49', 'en', 1, 'https://ror.org/03cnkgk49 Erie Arts and Culture'),
(68867, 'https://ror.org/03ch48z85', 'en', 1, 'https://ror.org/03ch48z85 American Visionary Art Museum'),
(68868, 'https://ror.org/05ar6z982', 'no_lang_code', 1, 'https://ror.org/05ar6z982 Antigua State College'),
(68869, 'https://ror.org/00s0qnx27', 'en', 1, 'https://ror.org/00s0qnx27 Apeejay Stya University'),
(68870, 'https://ror.org/046c3d965', 'en', 1, 'https://ror.org/046c3d965 Aquincum Institute of Technology'),
(68871, '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'),
(68872, 'https://ror.org/016tt0b65', 'en', 1, 'https://ror.org/016tt0b65 The Archaeological Society at Athens Εν Αθήναις Αρχαιολογική Εταιρεία'),
(68873, 'https://ror.org/046shck20', 'en', 1, 'https://ror.org/046shck20 Association for Social and Environmental Development'),
(68874, 'https://ror.org/01ab9wf13', 'en', 1, 'https://ror.org/01ab9wf13 Argentine Senate Honorable Senado de la Nación Argentina'),
(68875, 'https://ror.org/03cync167', 'en', 1, 'https://ror.org/03cync167 International Summer School of Photography'),
(68876, 'https://ror.org/00yenz435', 'en', 1, 'https://ror.org/00yenz435 AURA-J'),
(68877, 'https://ror.org/02twwc510', 'fr', 1, 'https://ror.org/02twwc510 Association des Journalistes Lesbiennes'),
(68878, 'https://ror.org/03jdn7e64', 'en', 1, 'https://ror.org/03jdn7e64 Association of University Research Parks'),
(68879, 'https://ror.org/011b4c141', 'en', 1, 'https://ror.org/011b4c141 Australian Council of Social Service'),
(68880, 'https://ror.org/05rx18c05', 'no_lang_code', 1, 'https://ror.org/05rx18c05 Aster Medcity'),
(68881, 'https://ror.org/01qegt208', 'en', 1, 'https://ror.org/01qegt208 Armenian Genocide Museum-Institute Foundation'),
(68882, 'https://ror.org/01ye8de62', 'en', 1, 'https://ror.org/01ye8de62 Athens Clarke County Police Department'),
(68883, 'https://ror.org/01g78rb53', 'fr', 1, 'https://ror.org/01g78rb53 Alliance Citoyenne'),
(68884, 'https://ror.org/01w7zp604', 'en', 1, 'https://ror.org/01w7zp604 Azerbaijan State Agricultural University Azərbaycan Dƶvlət Aqrar Universiteti'),
(68885, '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'),
(68886, 'https://ror.org/02yghr808', 'en', 1, 'https://ror.org/02yghr808 Asian Institute of Medical Sciences'),
(68887, 'https://ror.org/0229h7141', 'no_lang_code', 1, 'https://ror.org/0229h7141 Centre Culturel Bactria'),
(68888, 'https://ror.org/047enf178', 'en', 1, 'https://ror.org/047enf178 Bay Area Oppositional and Conduct Clinic'),
(68889, 'https://ror.org/00p7ztx41', 'en', 1, 'https://ror.org/00p7ztx41 Belarusian Economic Research and Outreach Center'),
(68890, 'https://ror.org/04fb9vg34', 'en', 1, 'https://ror.org/04fb9vg34 Baku Academy of Music Hacıbəyov adına Bakı Musiqi Akademiyası'),
(68891, 'https://ror.org/00qerf253', 'en', 1, 'https://ror.org/00qerf253 Belgrade Open School Beogradska Otvorena Skola'),
(68892, 'https://ror.org/04a0c3v54', 'no_lang_code', 1, 'https://ror.org/04a0c3v54 Azerbaijan Investment (Azerbaijan) Azərbaycan İnvestisiya Şirkəti'),
(68893, 'https://ror.org/05qgz8802', 'no_lang_code', 1, 'https://ror.org/05qgz8802 Ballas, Pelecanos & Associates (Greece)'),
(68894, 'https://ror.org/05tp3m188', 'en', 1, 'https://ror.org/05tp3m188 Bandaranaike Centre for International Studies'),
(68895, 'https://ror.org/03g93g135', 'en', 1, 'https://ror.org/03g93g135 Azerbaijan Social Work Public Union Azərbaycan Sosial İş İctimai Birliyi'),
(68896, 'https://ror.org/0039c1624', 'en', 1, 'https://ror.org/0039c1624 The Bhandarkar Oriental Research Institute भांऔारकर ą¤“ą¤°ą¤æą¤ą¤‚ą¤Ÿą¤² ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ'),
(68897, 'https://ror.org/018bg7z10', 'en', 1, 'https://ror.org/018bg7z10 Bangladesh Institute of Bank Management বাংলাদেশ ą¦‡ą¦Øą§ą¦øą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦¬ą§ą¦Æą¦¾ą¦‚ą¦• ą¦®ą§‡ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ'),
(68898, 'https://ror.org/05f4fay86', 'en', 1, 'https://ror.org/05f4fay86 Bethlehem Bible College'),
(68899, 'https://ror.org/04bphbz22', 'en', 1, 'https://ror.org/04bphbz22 Bhutan Centre for Media and Democracy'),
(68900, 'https://ror.org/00knfed84', 'en', 1, 'https://ror.org/00knfed84 Bangladesh Institute of International and Strategic Studies বাংলাদেশ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦ą¦Øą§ą¦” ą¦øą§ą¦Ÿą§ą¦°ą¦¾ą¦Ÿą§‡ą¦œą¦æą¦• ą¦øą§ą¦Ÿą¦¾ą¦”ą¦æą¦œ'),
(68901, 'https://ror.org/03wm0sn72', 'en', 1, 'https://ror.org/03wm0sn72 Barbados Community College'),
(68902, 'https://ror.org/05vz90k92', 'fr', 1, 'https://ror.org/05vz90k92 Bibliothèque d''Agglomération du Pays de Saint-Omer'),
(68903, 'https://ror.org/04hvavg21', 'no_lang_code', 1, 'https://ror.org/04hvavg21 BRAC ą¦¬ą§ą¦°ą§ą¦Æą¦¾ą¦• ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦°'),
(68904, 'https://ror.org/02gmjfa08', 'no_lang_code', 1, 'https://ror.org/02gmjfa08 Bhagat Phool Singh Mahila Vishwavidyalaya भगत ą¤«ą„‚ą¤² सिंह महिला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(68905, 'https://ror.org/02bpt5c58', 'en', 1, 'https://ror.org/02bpt5c58 Bush Heritage Australia'),
(68906, 'https://ror.org/01qxx5k95', 'no_lang_code', 1, 'https://ror.org/01qxx5k95 Botswana Open University'),
(68907, 'https://ror.org/023h7p541', 'en', 1, 'https://ror.org/023h7p541 Business Technology Incubator of Technical Faculties Belgrade'),
(68908, 'https://ror.org/03vg1zh21', 'no_lang_code', 1, 'https://ror.org/03vg1zh21 Brinks Gilson & Lione (United States)'),
(68909, 'https://ror.org/04gfanq43', 'no_lang_code', 1, 'https://ror.org/04gfanq43 British American Tobacco (Uzbekistan)'),
(68910, 'https://ror.org/04ex4j806', 'en', 1, 'https://ror.org/04ex4j806 Civil Service'),
(68911, 'https://ror.org/00mp54j66', 'en', 1, 'https://ror.org/00mp54j66 Bryansk Regional Scientific Universal Library. F. I. Tyutchev'),
(68912, 'https://ror.org/02nmtzc87', 'no_lang_code', 1, 'https://ror.org/02nmtzc87 Bitlink (Australia)'),
(68913, 'https://ror.org/052bwdm80', 'en', 1, 'https://ror.org/052bwdm80 Bucks County Intermediate Unit'),
(68914, 'https://ror.org/031v20w81', 'en', 1, 'https://ror.org/031v20w81 Blueenergy'),
(68915, 'https://ror.org/024gr5317', 'no_lang_code', 1, 'https://ror.org/024gr5317 Blueenergy'),
(68916, 'https://ror.org/00rnjpt59', 'en', 1, 'https://ror.org/00rnjpt59 Bulacan Agricultural State College'),
(68917, 'https://ror.org/03r4xtg30', 'en', 1, 'https://ror.org/03r4xtg30 Cat Tien National Park VĘ°į»n Quốc Gia CĆ”t TiĆŖn'),
(68918, 'https://ror.org/00smxfq50', 'en', 1, 'https://ror.org/00smxfq50 Bulgarian Association for the Promotion of Citizens Initiative Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ¾ ŃŠ“Ń€ŃƒŠ¶ŠµŠ½ŠøŠµ за Š½Š°ŃŃŠŃ€Ń‡Š°Š²Š°Š½Šµ на гражГанската инициатива'),
(68919, 'https://ror.org/03s3a5s78', 'en', 1, 'https://ror.org/03s3a5s78 Bulgarian Helsinki Committee'),
(68920, 'https://ror.org/04a59gq59', 'en', 1, 'https://ror.org/04a59gq59 Bureau of Plant Industry Kawanihan ng Paghahalaman'),
(68921, 'https://ror.org/05cr6kr86', 'en', 1, 'https://ror.org/05cr6kr86 Centre for Environment Education'),
(68922, 'https://ror.org/04723ev36', 'en', 1, 'https://ror.org/04723ev36 Centre for European Reform'),
(68923, 'https://ror.org/045y8mm25', 'en', 1, 'https://ror.org/045y8mm25 Centre for Multi-disciplinary Development Research'),
(68924, 'https://ror.org/03688j326', 'en', 1, 'https://ror.org/03688j326 Centre for Policy Alternatives'),
(68925, 'https://ror.org/01cregx09', 'en', 1, 'https://ror.org/01cregx09 Ceiba Foundation for Tropical Conservation'),
(68926, 'https://ror.org/04bk95661', 'en', 1, 'https://ror.org/04bk95661 Center for Advanced Defense Studies'),
(68927, 'https://ror.org/03trz9s27', 'en', 1, 'https://ror.org/03trz9s27 Centre for Social Innovation'),
(68928, 'https://ror.org/03b5pw144', 'en', 1, 'https://ror.org/03b5pw144 Centre for the Study of Culture and Society ą²øą²‚ą²øą³ą²•ą³ƒą²¤ą²æ ą²®ą²¤ą³ą²¤ą³ ಸಮಾಜ ą²…ą²§ą³ą²Æą²Æą²Ø ą²•ą³†ą³•ą²‚ą²¦ą³ą²°ą²¦'),
(68929, 'https://ror.org/059d9my13', 'en', 1, 'https://ror.org/059d9my13 Centre for Women War Victims'),
(68930, 'https://ror.org/0323bjj73', 'en', 1, 'https://ror.org/0323bjj73 Centre for Women’s Research'),
(68931, 'https://ror.org/05vvtz217', 'en', 1, 'https://ror.org/05vvtz217 Centre for Women''s Development Studies'),
(68932, 'https://ror.org/015pscp08', 'cs', 1, 'https://ror.org/015pscp08 Cesta Domu'),
(68933, 'https://ror.org/03whr7s66', 'en', 1, 'https://ror.org/03whr7s66 Center for Interdisciplinary Studies'),
(68934, 'https://ror.org/02qwv6g90', 'no_lang_code', 1, 'https://ror.org/02qwv6g90 Chab Dai'),
(68935, 'https://ror.org/01xaac745', 'en', 1, 'https://ror.org/01xaac745 Chai Found Music Workshop'),
(68936, 'https://ror.org/02r6bnp18', 'en', 1, 'https://ror.org/02r6bnp18 Chance for Education Å ance na vzdělĆ”nĆ­'),
(68937, 'https://ror.org/00pcsg584', 'en', 1, 'https://ror.org/00pcsg584 Turkiye Diyanet Foundation'),
(68938, 'https://ror.org/059rzps67', 'en', 1, 'https://ror.org/059rzps67 Center for Khmer Studies'),
(68939, 'https://ror.org/03zq31024', 'en', 1, 'https://ror.org/03zq31024 Chancellery of the Prime Minister Kancelaria Prezesa Rady Ministrów'),
(68940, 'https://ror.org/02bv7qz69', 'en', 1, 'https://ror.org/02bv7qz69 Center for Large Landscape Conservation'),
(68941, 'https://ror.org/05g94gn19', 'no_lang_code', 1, 'https://ror.org/05g94gn19 Change.org (United States)'),
(68942, 'https://ror.org/00h63w240', 'en', 1, 'https://ror.org/00h63w240 Universal University Š£Š½ŠøŠ²ŠµŃ€ŃŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(68943, 'https://ror.org/02g7f1v18', 'en', 1, 'https://ror.org/02g7f1v18 The Center for Public Integrity'),
(68944, 'https://ror.org/01sm4nm47', 'en', 1, 'https://ror.org/01sm4nm47 Boromarajonani College of Nursing ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø¢ąø²ąøšąø²ąø„ąøšąø£ąø”ąø£ąø²ąøŠąøŠąø™ąø™ąøµ ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(68945, 'https://ror.org/00g732a62', 'en', 1, 'https://ror.org/00g732a62 Calorx Teachers'' University'),
(68946, 'https://ror.org/01wb8ph33', 'en', 1, 'https://ror.org/01wb8ph33 Center for Social Sciences įƒ”įƒįƒŖįƒ˜įƒįƒšįƒ£įƒ  įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒįƒ—įƒ įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜'),
(68947, 'https://ror.org/0372j2579', 'en', 1, 'https://ror.org/0372j2579 Cambodian Institute for Cooperation and Peace įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įžįŸ’įž˜įŸ‚įžšįžŸįž˜įŸ’įžšįž¶įž”įŸ‹įžŸįž įž”įŸ’įžšįžįž·įž”įžįŸ’įžįž·įž€įž¶įžšįž“įž·įž„įžŸįž“įŸ’įžįž·įž—įž¶įž–'),
(68948, 'https://ror.org/05j0jp984', 'az', 1, 'https://ror.org/05j0jp984 Strateji Araşdırmalar Mərkəzi'),
(68949, 'https://ror.org/007zp0p53', 'en', 1, 'https://ror.org/007zp0p53 Canadian Institute of Technology Instituti Kanadez i Teknologjisƫ'),
(68950, 'https://ror.org/02zgtky13', 'en', 1, 'https://ror.org/02zgtky13 Center for the Study of Childhood and Adolescence'),
(68951, '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'),
(68952, 'https://ror.org/045e6n322', 'en', 1, 'https://ror.org/045e6n322 Chelsea Primary School'),
(68953, 'https://ror.org/00147y550', 'en', 1, 'https://ror.org/00147y550 Caribbean Institute for Meteorology and Hydrology'),
(68954, 'https://ror.org/03n4dkj44', 'no_lang_code', 1, 'https://ror.org/03n4dkj44 Chhandam School of Kathak'),
(68955, 'https://ror.org/02pd2vd80', 'en', 1, 'https://ror.org/02pd2vd80 Chicago Arts Partnerships in Education'),
(68956, 'https://ror.org/04mm4cb76', 'en', 1, 'https://ror.org/04mm4cb76 Chicago Youth Symphony Orchestras'),
(68957, 'https://ror.org/050bxrz29', 'en', 1, 'https://ror.org/050bxrz29 Citizen Engagement Laboratory'),
(68958, 'https://ror.org/039n1nw87', 'en', 1, 'https://ror.org/039n1nw87 New York City Council'),
(68959, 'https://ror.org/00aahmr77', 'en', 1, 'https://ror.org/00aahmr77 City of Asylum'),
(68960, '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'),
(68961, 'https://ror.org/02mjd7y85', 'en', 1, 'https://ror.org/02mjd7y85 Homeland Security and Emergency Management'),
(68962, 'https://ror.org/01z48vg94', 'en', 1, 'https://ror.org/01z48vg94 Central Adoption Resource Authority ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¦ą¤¤ą„ą¤¤ą¤• ą¤—ą„ą¤°ą¤¹ą¤£ संसाधन ą¤Ŗą„ą¤°ą¤¾ą¤§ą¤æą¤•ą¤°ą¤£'),
(68963, 'https://ror.org/05d4wmc20', 'en', 1, 'https://ror.org/05d4wmc20 City of Knowledge Ciudad del Saber'),
(68964, 'https://ror.org/01z2dq675', 'no_lang_code', 1, 'https://ror.org/01z2dq675 Chhandam School of Kathak'),
(68965, 'https://ror.org/01hsyq967', 'en', 1, 'https://ror.org/01hsyq967 Choithram College of Nursing ą¤šą„‹ą¤‡ą¤„ą¤°ą¤¾ą¤® ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ़ ą¤Øą¤°ą„ą¤øą¤æą¤‚ą¤—'),
(68966, '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'),
(68967, 'https://ror.org/00txb3a66', 'en', 1, 'https://ror.org/00txb3a66 Christchurch City Council'),
(68968, 'https://ror.org/02pf3fv69', 'en', 1, 'https://ror.org/02pf3fv69 Central Bank of Turkmenistan Türkmenistanyň Merkezi Banky'),
(68969, 'https://ror.org/024z18394', 'es', 1, 'https://ror.org/024z18394 Banco Central del Uruguay Central Bank of Uruguay'),
(68970, 'https://ror.org/03g64g296', 'en', 1, 'https://ror.org/03g64g296 The Christian and Missionary Alliance'),
(68971, 'https://ror.org/00ysy8y40', 'en', 1, 'https://ror.org/00ysy8y40 Cleveland FES Center'),
(68972, 'https://ror.org/008p4q226', 'en', 1, 'https://ror.org/008p4q226 Central State Archive of the Republic of Kazakhstan Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ архив Республики ŠšŠ°Š·Š°Ń…стан ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ ŠžŃ€Ń‚Š°Š»Ń‹Ņ› мемлекеттік мұрағаты'),
(68973, 'https://ror.org/05ttdrn83', 'en', 1, 'https://ror.org/05ttdrn83 Den Haag Centrum voor Strategische Studies The Hague Centre for Strategic Studies'),
(68974, 'https://ror.org/05dv0q502', 'en', 1, 'https://ror.org/05dv0q502 Chartered Institute of Management Accountants'),
(68975, 'https://ror.org/05djs6314', 'en', 1, 'https://ror.org/05djs6314 Clinton Foundation'),
(68976, 'https://ror.org/020esa803', 'es', 1, 'https://ror.org/020esa803 Club Matador'),
(68977, 'https://ror.org/03ww5we09', 'no_lang_code', 1, 'https://ror.org/03ww5we09 CMM Energy (United States)'),
(68978, 'https://ror.org/03n8a0v21', 'en', 1, 'https://ror.org/03n8a0v21 Coalition for Community Schools'),
(68979, 'https://ror.org/02nsvrr55', 'en', 1, 'https://ror.org/02nsvrr55 Centre for Conservation Biology & Sustainable Development'),
(68980, 'https://ror.org/03ysxv814', 'en', 1, 'https://ror.org/03ysxv814 Center for Contemporary Arts Prague Centrum pro SoučasnĆ© UměnĆ­ Praha'),
(68981, 'https://ror.org/01st8zv03', 'es', 1, 'https://ror.org/01st8zv03 ConCuerpos'),
(68982, 'https://ror.org/021ez5n36', 'en', 1, 'https://ror.org/021ez5n36 College of Science, Technology and Applied Arts of Trinidad and Tobago'),
(68983, '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'),
(68984, 'https://ror.org/04wxqpw15', 'en', 1, 'https://ror.org/04wxqpw15 Court of Appeal ąøØąø²ąø„ąø­ąøøąø—ąø˜ąø£ąø“ą¹Œ'),
(68985, 'https://ror.org/02k1py847', 'en', 1, 'https://ror.org/02k1py847 Conservation through Poverty Alleviation International'),
(68986, 'https://ror.org/02a3zx434', 'pt', 1, 'https://ror.org/02a3zx434 Conservatório Pernambucano de Música'),
(68987, 'https://ror.org/01sg0nk94', 'en', 1, 'https://ror.org/01sg0nk94 CR Rao Advanced Institute of Mathematics, Statistics and Computer Science'),
(68988, 'https://ror.org/033xmtn97', 'en', 1, 'https://ror.org/033xmtn97 Crimean Republican Institute of Post-Decisive Pedagogical Education ŠšŃ€Ń‹Š¼ŃŠŗŠøŠ¹ Ń€ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ постГипломного пеГагогического Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(68989, 'https://ror.org/05ww0cq12', 'en', 1, 'https://ror.org/05ww0cq12 Colorado Public Television'),
(68990, 'https://ror.org/02qst3a08', 'en', 1, 'https://ror.org/02qst3a08 Crimea University of Culture Art and Tourism'),
(68991, 'https://ror.org/022ka4k09', 'es', 1, 'https://ror.org/022ka4k09 Museo De Arte Contemporaneo'),
(68992, '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'),
(68993, 'https://ror.org/044cd9z60', 'en', 1, 'https://ror.org/044cd9z60 Cope Environmental Center'),
(68994, 'https://ror.org/0221z8061', 'en', 1, 'https://ror.org/0221z8061 Settlement Centre Waikato'),
(68995, 'https://ror.org/058hheg54', 'en', 1, 'https://ror.org/058hheg54 Hamilton Multicultural Services Trust'),
(68996, 'https://ror.org/00se8ng51', 'no_lang_code', 1, 'https://ror.org/00se8ng51 CSL Materials (United States)'),
(68997, 'https://ror.org/03t9eke74', 'en', 1, 'https://ror.org/03t9eke74 Corrymeela Community'),
(68998, 'https://ror.org/00mmb0c67', 'en', 1, 'https://ror.org/00mmb0c67 Human Resource Development Center Š¦ŠµŠ½Ń‚ŃŠŃ€ за развитие на Ń‡Š¾Š²ŠµŃˆŠŗŠøŃ‚Šµ Ń€ŠµŃŃƒŃ€ŃŠø'),
(68999, 'https://ror.org/00h2d3028', 'no_lang_code', 1, 'https://ror.org/00h2d3028 Umalusi'),
(69000, 'https://ror.org/04vc7kq70', 'en', 1, 'https://ror.org/04vc7kq70 Consejo de la Magistratura de la Nación Council of Magistrates of the Nation'),
(69001, 'https://ror.org/03kd8zx94', 'en', 1, 'https://ror.org/03kd8zx94 Council of State Administrators of Vocational Rehabilitation'),
(69002, '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'),
(69003, 'https://ror.org/03mf8nk10', 'en', 1, 'https://ror.org/03mf8nk10 DanChurchAid'),
(69004, 'https://ror.org/05xcdy991', 'en', 1, 'https://ror.org/05xcdy991 Department of Archaeology ą®¤ąÆŠą®²ąÆą®ŖąÆŠą®°ąÆą®³ą®æą®Æą®²ąÆ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ ą¶“ą·”ą¶»ą·ą·€ą·’ą¶Æą·Šā€ą¶ŗą· ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(69005, 'https://ror.org/01jc6t452', 'no_lang_code', 1, 'https://ror.org/01jc6t452 Dar al Athar al Islamiyyah Ł…Ų±ŁƒŲ² Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŲ§Ł†ŁŠ Ų§Ł„Ų«Ł‚Ų§ŁŁŠ - ŲÆŲ§Ų± الآثار Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(69006, 'https://ror.org/058qzvd72', 'en', 1, 'https://ror.org/058qzvd72 Cyprus Arbitration & Mediation Centre'),
(69007, 'https://ror.org/05fhxms97', 'en', 1, 'https://ror.org/05fhxms97 Dar Al-Kalima University College of Arts and Culture ŁƒŁ„ŁŠŲ© ŲÆŲ§Ų± Ų§Ł„ŁƒŁ„Ł…Ų© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„ŁŁ†ŁˆŁ† ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ©'),
(69008, 'https://ror.org/006t3b628', 'cs', 1, 'https://ror.org/006t3b628 Nadace České Architektury'),
(69009, 'https://ror.org/012tyys59', 'sq', 1, 'https://ror.org/012tyys59 Kolegji Dardania'),
(69010, 'https://ror.org/02yv9pn14', 'en', 1, 'https://ror.org/02yv9pn14 Department of Finance'),
(69011, 'https://ror.org/00fb17655', 'en', 1, 'https://ror.org/00fb17655 DJ Academy of Design'),
(69012, 'https://ror.org/01vspjx51', 'tl', 1, 'https://ror.org/01vspjx51 De La Salle Lipa'),
(69013, 'https://ror.org/0131ydd68', 'nl', 1, 'https://ror.org/0131ydd68 De Tijd'),
(69014, 'https://ror.org/05jwhr041', 'en', 1, 'https://ror.org/05jwhr041 Donetsk Christian University Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š„Ń€ŠøŃŃ‚ŠøŃŠ½ŃŃŒŠŗŠøŠ¹ Університет'),
(69015, 'https://ror.org/01xehft43', 'en', 1, 'https://ror.org/01xehft43 Delaware Youth Center'),
(69016, 'https://ror.org/022axmn44', 'en', 1, 'https://ror.org/022axmn44 Detroit River International Wildlife Refuge'),
(69017, 'https://ror.org/053mejc32', 'id', 1, 'https://ror.org/053mejc32 Dewan Kesenian Jakarta'),
(69018, 'https://ror.org/00ej43w89', 'en', 1, 'https://ror.org/00ej43w89 Dallas Office of Emergency Management'),
(69019, 'https://ror.org/05r04kd95', 'no_lang_code', 1, 'https://ror.org/05r04kd95 Dovzhenko Film Studios ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° ŠŗŃ–Š½Š¾ŃŃ‚ŃƒŠ“Ń–Ń Ń…ŃƒŠ“Š¾Š¶Š½Ń–Ń… Ń„Ń–Š»ŃŒŠ¼Ń–Š² імені Šž. Довженка'),
(69020, 'https://ror.org/04egvyc40', 'en', 1, 'https://ror.org/04egvyc40 DrawBridge'),
(69021, 'https://ror.org/02k3cg524', 'fi', 1, 'https://ror.org/02k3cg524 Demos Helsinki'),
(69022, 'https://ror.org/016vd5517', 'no_lang_code', 1, 'https://ror.org/016vd5517 Dillen Associates (United States)'),
(69023, 'https://ror.org/02297eg71', 'en', 1, 'https://ror.org/02297eg71 Democracy Development Centre Розвиток Гемократії'),
(69024, 'https://ror.org/01s3pkg06', 'en', 1, 'https://ror.org/01s3pkg06 Diplomatic Academy of Vienna Diplomatische Akademie Wien'),
(69025, 'https://ror.org/05jsp9k64', 'en', 1, 'https://ror.org/05jsp9k64 Economic Research Centre İqtisadi Tədqiqatlar Mərkəzi'),
(69026, 'https://ror.org/02rjrfe33', 'en', 1, 'https://ror.org/02rjrfe33 Earthjustice'),
(69027, 'https://ror.org/048t31q52', 'en', 1, 'https://ror.org/048t31q52 Hennadii Udovenko Diplomatic Academy Of Ukraine Дипломатична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України'),
(69028, 'https://ror.org/02n7f7n49', 'en', 1, 'https://ror.org/02n7f7n49 Diplomatic Academy of Vietnam Hį»c viện Ngoįŗ”i giao Việt Nam'),
(69029, 'https://ror.org/02veev176', 'es', 1, 'https://ror.org/02veev176 Instituto Nacional de Biodiversidad'),
(69030, 'https://ror.org/01fq8hw04', 'en', 1, 'https://ror.org/01fq8hw04 Evangelical Church Winning All'),
(69031, 'https://ror.org/0424v9t30', 'en', 1, 'https://ror.org/0424v9t30 Indian Institute of Water Management'),
(69032, 'https://ror.org/04xtpyw05', 'fr', 1, 'https://ror.org/04xtpyw05 Ɖcole Normale SupĆ©rieure Ɖcole Normale SupĆ©rieure d''Abidjan'),
(69033, 'https://ror.org/02wbvek51', 'en', 1, 'https://ror.org/02wbvek51 Edna Manley College of the Visual and Performing Arts'),
(69034, 'https://ror.org/04qnap020', 'en', 1, 'https://ror.org/04qnap020 World Healthal Trust'),
(69035, 'https://ror.org/00z610a60', 'en', 1, 'https://ror.org/00z610a60 Archivo y Biblioteca Nacionales de Bolivia National Archive and Library of Bolivia'),
(69036, 'https://ror.org/01zsng323', 'en', 1, 'https://ror.org/01zsng323 European Network of Guardianship Institutions'),
(69037, 'https://ror.org/0435vpd21', 'en', 1, 'https://ror.org/0435vpd21 Environmental Education Exchange'),
(69038, 'https://ror.org/01324gs33', 'no_lang_code', 1, 'https://ror.org/01324gs33 Elladam Consulting (Hungary)'),
(69039, 'https://ror.org/00x3qgf57', 'hu', 1, 'https://ror.org/00x3qgf57 Eötvös József GimnÔzium'),
(69040, 'https://ror.org/0345vzk85', 'en', 1, 'https://ror.org/0345vzk85 Equality Now'),
(69041, 'https://ror.org/008cg6v69', 'en', 1, 'https://ror.org/008cg6v69 Erdiston Teachers'' Training College'),
(69042, 'https://ror.org/031hre343', 'en', 1, 'https://ror.org/031hre343 Emirates Center for Strategic Studies and Research'),
(69043, 'https://ror.org/04hqk0696', 'en', 1, 'https://ror.org/04hqk0696 Fabric Workshop and Museum'),
(69044, 'https://ror.org/017vsz909', 'da', 1, 'https://ror.org/017vsz909 EUC Nordvestsjaelland ErhvervsUddannelses Center Nordvestsjaelland'),
(69045, 'https://ror.org/02v351s66', 'en', 1, 'https://ror.org/02v351s66 Australian Energy Council'),
(69046, 'https://ror.org/01e8m9d21', 'en', 1, 'https://ror.org/01e8m9d21 Ministry of Foreign Affairs وزارة Ų§Ł„Ų®Ų§Ų±Ų¬ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(69047, 'https://ror.org/018z2vp10', 'da', 1, 'https://ror.org/018z2vp10 Rybners'),
(69048, 'https://ror.org/01315ff40', 'en', 1, 'https://ror.org/01315ff40 English Language Teachers Association of India'),
(69049, 'https://ror.org/048ytzw49', 'es', 1, 'https://ror.org/048ytzw49 Escuela de Actores de Canarias'),
(69050, 'https://ror.org/0096pft28', 'fr', 1, 'https://ror.org/0096pft28 Espoir Vie-Togo'),
(69051, 'https://ror.org/017zq4f19', 'en', 1, 'https://ror.org/017zq4f19 Espoo Music Institute Espoon Musiikkiopisto'),
(69052, 'https://ror.org/00j7d4t09', 'fr', 1, 'https://ror.org/00j7d4t09 Institut EuropƩen De La QualitƩ Totale'),
(69053, 'https://ror.org/04c0nne72', 'en', 1, 'https://ror.org/04c0nne72 Rylsky Institute of Art Studies, Folklore and Ethnology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мистецтвознавства, Ń„Š¾Š»ŃŒŠŗŠ»Š¾Ń€ŠøŃŃ‚ŠøŠŗŠø та етнології ім. М. Š¢. Рильського'),
(69054, 'https://ror.org/00p1gt488', 'en', 1, 'https://ror.org/00p1gt488 European Association for the Defence of Human Rights'),
(69055, 'https://ror.org/003w3ym70', 'en', 1, 'https://ror.org/003w3ym70 FCT College of Education'),
(69056, 'https://ror.org/048954822', 'en', 1, 'https://ror.org/048954822 Flemish Radio and Television Broadcasting Organisation Vlaamse Radio- en Televisieomroeporganisatie'),
(69057, 'https://ror.org/05tbdj203', 'en', 1, 'https://ror.org/05tbdj203 Polistovsky National Nature Reserve ŠŸŠ¾Š»ŠøŃŃ‚Š¾Š²ŃŠŗŠøŠ¹ заповеГник'),
(69058, 'https://ror.org/027441620', 'en', 1, 'https://ror.org/027441620 Florence English Language Theatre Artists'),
(69059, 'https://ror.org/01x5kbv02', 'hu', 1, 'https://ror.org/01x5kbv02 Budapesti Fazekas MihÔly Gyakorló ÁltalÔnos Iskola és GimnÔzium'),
(69060, 'https://ror.org/003td8q57', 'pt', 1, 'https://ror.org/003td8q57 Faesa Centro Universitario'),
(69061, 'https://ror.org/04a092p69', 'no_lang_code', 1, 'https://ror.org/04a092p69 Fo Guang Shan 佛光山'),
(69062, 'https://ror.org/03mt2tp20', 'en', 1, 'https://ror.org/03mt2tp20 Federation for Self Financing Tertiary Education č‡Ŗč³‡é«˜ē­‰ę•™č‚²čÆē›Ÿ'),
(69063, 'https://ror.org/04s4ypk37', 'sq', 1, 'https://ror.org/04s4ypk37 Instituti i Sigurisƫ Ushqimore dhe Veterinarisƫ'),
(69064, 'https://ror.org/02jcdkn30', 'no_lang_code', 1, 'https://ror.org/02jcdkn30 Forum 2000'),
(69065, 'https://ror.org/05ydvwr43', 'no_lang_code', 1, 'https://ror.org/05ydvwr43 Full Radius Dance (United States)'),
(69066, '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'),
(69067, 'https://ror.org/00j75nc06', 'en', 1, 'https://ror.org/00j75nc06 First Floor Gallery Harare'),
(69068, 'https://ror.org/029w2ds07', 'en', 1, 'https://ror.org/029w2ds07 Foundation for International Cooperation In Higher Education of Taiwan č²”åœ˜ę³•äŗŗé«˜ē­‰ę•™č‚²åœ‹éš›åˆä½œåŸŗé‡‘ęœƒ'),
(69069, 'https://ror.org/0570trv98', 'en', 1, 'https://ror.org/0570trv98 Future Academy فيوتؓر Ų§ŁƒŲ§ŲÆŁŠŁ…Ł‰'),
(69070, 'https://ror.org/01j1yd322', 'en', 1, 'https://ror.org/01j1yd322 Foundation for Revitalisation of Local Health Traditions');
INSERT INTO `rors` VALUES
(69071, 'https://ror.org/01n95pm43', 'en', 1, 'https://ror.org/01n95pm43 Foundation for the Advancement of Social Theory'),
(69072, 'https://ror.org/01tqtaq02', 'no_lang_code', 1, 'https://ror.org/01tqtaq02 Fauji Fertilizer (Pakistan)'),
(69073, 'https://ror.org/04ex99s09', 'en', 1, 'https://ror.org/04ex99s09 Foundations of Success'),
(69074, 'https://ror.org/04c5enf18', 'en', 1, 'https://ror.org/04c5enf18 Galicia Jewish Museum Żydowskie Muzeum Galicja'),
(69075, 'https://ror.org/05xemz742', 'en', 1, 'https://ror.org/05xemz742 Government of Mizoram'),
(69076, 'https://ror.org/02tgy3j57', 'en', 1, 'https://ror.org/02tgy3j57 Uttarakhand Government'),
(69077, 'https://ror.org/04j57sj69', 'ga', 1, 'https://ror.org/04j57sj69 Garda SƭochƔna Inspectorate'),
(69078, 'https://ror.org/02s1nfr38', 'en', 1, 'https://ror.org/02s1nfr38 GDP Ayurvedic University'),
(69079, 'https://ror.org/0190s7p04', 'en', 1, 'https://ror.org/0190s7p04 AcadƩmie de France Ơ Rome French Academy in Rome'),
(69080, 'https://ror.org/014txmb23', 'en', 1, 'https://ror.org/014txmb23 Grace Mutual'),
(69081, 'https://ror.org/046qxha37', 'en', 1, 'https://ror.org/046qxha37 Azerbaijan Genetic Resources Institute Genetik Ehtiyatlar İnstitutu'),
(69082, 'https://ror.org/03060mz76', 'en', 1, 'https://ror.org/03060mz76 Greater Boston Interfaith Organization'),
(69083, 'https://ror.org/03vd5n125', 'no_lang_code', 1, 'https://ror.org/03vd5n125 FringeArts'),
(69084, 'https://ror.org/04k10z253', 'en', 1, 'https://ror.org/04k10z253 Green Capacity'),
(69085, 'https://ror.org/028pb7349', 'en', 1, 'https://ror.org/028pb7349 Green Circle Zelený kruh'),
(69086, 'https://ror.org/01p5xff03', 'no_lang_code', 1, 'https://ror.org/01p5xff03 Gorgias Press (United States)'),
(69087, 'https://ror.org/023nbxm56', 'en', 1, 'https://ror.org/023nbxm56 Green Liberty Zaļā brīvība'),
(69088, 'https://ror.org/033anq036', 'no_lang_code', 1, 'https://ror.org/033anq036 GreenTech Consultants (Sri Lanka)'),
(69089, 'https://ror.org/03jn9cy69', 'en', 1, 'https://ror.org/03jn9cy69 Harry S. Truman Presidential Library and Museum'),
(69090, 'https://ror.org/03tzxbr55', 'en', 1, 'https://ror.org/03tzxbr55 Georgian Arts and Culture Center įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜ įƒ®įƒ”įƒšįƒįƒ•įƒœįƒ”įƒ‘įƒ˜įƒ” ინეტიტუტი įƒ¬įƒįƒ›įƒ§įƒ•įƒįƒœįƒ˜ įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ˜'),
(69091, 'https://ror.org/00hty4y33', 'en', 1, 'https://ror.org/00hty4y33 Headlands Center for the Arts'),
(69092, 'https://ror.org/03n103c50', 'en', 1, 'https://ror.org/03n103c50 Habitat for Humanity'),
(69093, 'https://ror.org/038jw0f49', 'en', 1, 'https://ror.org/038jw0f49 The German Marshall Fund of the United States'),
(69094, 'https://ror.org/04g2vnx61', 'en', 1, 'https://ror.org/04g2vnx61 Hellenic Adult Education Association Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĪæĪ½Ī¹ĪŗĪ® ĪˆĪ½Ļ‰ĻƒĪ· Ī•ĪŗĻ€Ī±ĪÆĪ“ĪµĻ…ĻƒĪ·Ļ‚ Ενηλίκων'),
(69095, 'https://ror.org/00zqvjm52', 'en', 1, 'https://ror.org/00zqvjm52 Global Action Project'),
(69096, 'https://ror.org/05ss64h09', 'en', 1, 'https://ror.org/05ss64h09 Green Cross International'),
(69097, 'https://ror.org/052rzq754', 'no_lang_code', 1, 'https://ror.org/052rzq754 Global Professional Consulting (United States)'),
(69098, 'https://ror.org/040an2851', 'en', 1, 'https://ror.org/040an2851 Hellenic Children''s Museum Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ΠαιΓικό ĪœĪæĻ…ĻƒĪµĪÆĪæ'),
(69099, 'https://ror.org/00erpmf75', 'en', 1, 'https://ror.org/00erpmf75 Institute of Geography Named after Academician Hasan Aliyev'),
(69100, 'https://ror.org/04y2vsa64', 'no_lang_code', 1, 'https://ror.org/04y2vsa64 Hogan Lovells (United States)'),
(69101, 'https://ror.org/030qgq632', 'en', 1, 'https://ror.org/030qgq632 Her Majesty''s Inspectorate of Probation'),
(69102, 'https://ror.org/04rsv0546', 'no_lang_code', 1, 'https://ror.org/04rsv0546 Holland and Knight (United Arab Emirates)'),
(69103, 'https://ror.org/01bjs1d88', 'en', 1, 'https://ror.org/01bjs1d88 Helsingfors Konstmuseum Helsingin Taidemuseo Helsinki Art Museum'),
(69104, 'https://ror.org/03y298h26', 'en', 1, 'https://ror.org/03y298h26 HB Studio'),
(69105, 'https://ror.org/04gww5p47', 'en', 1, 'https://ror.org/04gww5p47 Heritage Lower Saint Lawrence'),
(69106, 'https://ror.org/0431j1g69', 'en', 1, 'https://ror.org/0431j1g69 Hendrick Hudson School District'),
(69107, 'https://ror.org/028wrtm78', 'en', 1, 'https://ror.org/028wrtm78 Hong Kong America Center'),
(69108, 'https://ror.org/041ec4084', 'en', 1, 'https://ror.org/041ec4084 Her Majesty''s Inspectorate of Constabulary in Scotland'),
(69109, 'https://ror.org/01neznn74', 'en', 1, 'https://ror.org/01neznn74 Honolulu Theatre for Youth'),
(69110, 'https://ror.org/05065r248', 'en', 1, 'https://ror.org/05065r248 Horn of Africa Press Institute'),
(69111, 'https://ror.org/01mqnjq55', 'en', 1, 'https://ror.org/01mqnjq55 Houston Galveston Institute'),
(69112, 'https://ror.org/02rfbsc53', 'fr', 1, 'https://ror.org/02rfbsc53 Institut SupĆ©rieur des Ɖtudes Technologiques en Communications de Tunis لمعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© في Ų§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ ŲØŲŖŁˆŁ†Ų³'),
(69113, 'https://ror.org/03y8jje75', 'en', 1, 'https://ror.org/03y8jje75 Banner Health Foundation'),
(69114, 'https://ror.org/00wvz2203', 'en', 1, 'https://ror.org/00wvz2203 Higher Learning Commission'),
(69115, 'https://ror.org/05tcyv616', 'es', 1, 'https://ror.org/05tcyv616 Instituto Superior Tecnológico de Artes del Ecuador'),
(69116, 'https://ror.org/00e452s52', 'en', 1, 'https://ror.org/00e452s52 Highlanes Gallery'),
(69117, 'https://ror.org/027yyz170', 'en', 1, 'https://ror.org/027yyz170 Himalayan Environmental Studies and Conservation Organization'),
(69118, 'https://ror.org/006j9rn47', 'en', 1, 'https://ror.org/006j9rn47 Hypatia of Alexandria Institute for Reflexion and Studies'),
(69119, 'https://ror.org/01f5kte17', 'en', 1, 'https://ror.org/01f5kte17 I Choose Life'),
(69120, 'https://ror.org/021j6vs44', 'en', 1, 'https://ror.org/021j6vs44 Iceland Symphony Orchestra SinfónĆ­uhljómsveit ƍslands'),
(69121, 'https://ror.org/025t58v56', 'no_lang_code', 1, 'https://ror.org/025t58v56 Iguacu'),
(69122, 'https://ror.org/05fkw0228', 'no_lang_code', 1, 'https://ror.org/05fkw0228 Delta International (Georgia) įƒ”įƒ”įƒ˜įƒž - ეეეტც įƒ“įƒ”įƒšįƒ¢įƒ'),
(69123, 'https://ror.org/05q52xn14', 'es', 1, 'https://ror.org/05q52xn14 Instituto de Medicina y BiologĆ­a Experimental de Cuyo'),
(69124, 'https://ror.org/00jet1p36', 'en', 1, 'https://ror.org/00jet1p36 Indian Institute of Forest Management ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ वन ą¤Ŗą„ą¤°ą¤¬ą¤Øą„ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(69125, 'https://ror.org/02ha7nd65', 'en', 1, 'https://ror.org/02ha7nd65 Indian Institute of Journalism and New Media'),
(69126, 'https://ror.org/046xn0c82', 'en', 1, 'https://ror.org/046xn0c82 Indian Institute of Mass Communication ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ जन ą¤øą¤‚ą¤šą¤¾ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(69127, 'https://ror.org/056xtp403', 'en', 1, 'https://ror.org/056xtp403 Institute of Archeology and Ethnography Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ археологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø'),
(69128, 'https://ror.org/010tqdr51', 'en', 1, 'https://ror.org/010tqdr51 The Institute for Bird Populations'),
(69129, 'https://ror.org/01sas2f78', 'es', 1, 'https://ror.org/01sas2f78 Instituto de Ciencias Astronómicas, de la Tierra y del Espacio'),
(69130, 'https://ror.org/012yc1x46', 'en', 1, 'https://ror.org/012yc1x46 Botanika İnstitutu Institute of Botany'),
(69131, 'https://ror.org/04d2pnx52', 'en', 1, 'https://ror.org/04d2pnx52 Institute for Complex Analysis of Regional Problems'),
(69132, 'https://ror.org/049rm1a24', 'en', 1, 'https://ror.org/049rm1a24 International Finance Corporation'),
(69133, 'https://ror.org/01y6sx232', 'sr', 1, 'https://ror.org/01y6sx232 Institut za savremenu istoriju'),
(69134, 'https://ror.org/04avmkt41', 'en', 1, 'https://ror.org/04avmkt41 Institute for Defence Studies and Analyses ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø और ą¤µą¤æą¤¶ą„ą¤²ą„‡ą¤·ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(69135, '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 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Šø кимиёи ба номи Š’.И.ŠŠøŠŗŠøŃ‚ŠøŠ½Šø ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŠø илмҳои Ņ¶ŃƒŠ¼Ņ³ŃƒŃ€ŠøŠø Тоҷикистон'),
(69136, 'https://ror.org/02mrr4460', 'en', 1, 'https://ror.org/02mrr4460 Institute for Education in International Media'),
(69137, 'https://ror.org/038y41363', 'cs', 1, 'https://ror.org/038y41363 Nadace Neziskovky'),
(69138, 'https://ror.org/02e2v3e15', 'es', 1, 'https://ror.org/02e2v3e15 Instituto de QuĆ­mica del Noroeste Argentino'),
(69139, 'https://ror.org/002tst934', 'en', 1, 'https://ror.org/002tst934 Institute for International Urban Development'),
(69140, 'https://ror.org/01v7z1116', 'it', 1, 'https://ror.org/01v7z1116 Istituto storico italiano per il Medio Evo'),
(69141, 'https://ror.org/04ff64s07', 'en', 1, 'https://ror.org/04ff64s07 Institute of Diplomacy and Foreign Relations'),
(69142, 'https://ror.org/04wdj7e85', 'en', 1, 'https://ror.org/04wdj7e85 LifeMoves'),
(69143, 'https://ror.org/019msr682', 'en', 1, 'https://ror.org/019msr682 Colmar Inra Research Centre Le Centre Inra de Colmar'),
(69144, 'https://ror.org/00bv27459', 'es', 1, 'https://ror.org/00bv27459 Instituto Superior de Investigaciones Biológicas'),
(69145, 'https://ror.org/00vtb6v32', 'en', 1, 'https://ror.org/00vtb6v32 Institute of Educational Sciences Institutul de Ştiinţe ale Educaţiei'),
(69146, '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 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š˜ŃŃ‚Š¾Ń€ŠøŠø АкаГемии ŠŠ°ŃƒŠŗ Республики Узбекистан'),
(69147, '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'),
(69148, 'https://ror.org/004zjze34', 'en', 1, 'https://ror.org/004zjze34 Institute for Security Studies'),
(69149, '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'),
(69150, 'https://ror.org/03k434963', 'pt', 1, 'https://ror.org/03k434963 Instituto de Estudos do Trabalho e Sociedade'),
(69151, 'https://ror.org/0470jgx16', 'en', 1, 'https://ror.org/0470jgx16 Institute for War and Peace Reporting'),
(69152, 'https://ror.org/04f5aam04', 'es', 1, 'https://ror.org/04f5aam04 Instituto de BiologĆ­a AgrĆ­cola de Mendoza'),
(69153, 'https://ror.org/01tpj7340', 'en', 1, 'https://ror.org/01tpj7340 Institute of Geology, Komi Science Centre Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Коми ŠŠ¦ Š£Ń€Šž Š ŠŠ'),
(69154, 'https://ror.org/04x0n3178', 'es', 1, 'https://ror.org/04x0n3178 Instituto de BiologĆ­a Molecular y Celular de Rosario'),
(69155, 'https://ror.org/00nwdkz22', 'en', 1, 'https://ror.org/00nwdkz22 Institute of Philosophy Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ філасофіі ŠŠ°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Š°Š¹ Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń– навук Š‘ŠµŠ»Š°Ń€ŃƒŃŃ– Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ философии ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(69156, 'https://ror.org/01rbf3264', 'az', 1, 'https://ror.org/01rbf3264 Azərbaycan Milli Elmlər Akademiyası Abbasqulu Ağa Bakıxanov Adina Tarix Institutu'),
(69157, 'https://ror.org/04d3hex36', 'en', 1, 'https://ror.org/04d3hex36 The Dialogue'),
(69158, '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'),
(69159, 'https://ror.org/02s5mpe65', 'en', 1, 'https://ror.org/02s5mpe65 The Intercultural Communication Institute'),
(69160, 'https://ror.org/04j4xtm35', 'en', 1, 'https://ror.org/04j4xtm35 Institute of Scientific Information on Social Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°ŃƒŃ‡Š½Š¾Š¹ информации по общественным наукам'),
(69161, 'https://ror.org/00pg29k97', 'en', 1, 'https://ror.org/00pg29k97 Intercultural Dialogue Foundation InterkulturƔlis PƔrbeszƩd AlapƭtvƔny'),
(69162, 'https://ror.org/05s04a010', 'en', 1, 'https://ror.org/05s04a010 Centre for Invasive Species Solution'),
(69163, 'https://ror.org/040f8w440', 'en', 1, 'https://ror.org/040f8w440 Institute of Social Sciences'),
(69164, 'https://ror.org/01dx39x96', 'en', 1, 'https://ror.org/01dx39x96 Institut druŔtvenih nauka Institute of Social Sciences'),
(69165, 'https://ror.org/01e9djz97', 'en', 1, 'https://ror.org/01e9djz97 International Bluegrass Music Association'),
(69166, 'https://ror.org/038cgya65', 'en', 1, 'https://ror.org/038cgya65 International Center for Advanced Research and Training'),
(69167, 'https://ror.org/025apse83', 'fr', 1, 'https://ror.org/025apse83 Binche MusƩe International du Carnaval et du Masque'),
(69168, 'https://ror.org/038a3t246', 'en', 1, 'https://ror.org/038a3t246 International Center for Transitional Justice'),
(69169, 'https://ror.org/05qwhr533', 'en', 1, 'https://ror.org/05qwhr533 International Center for Transitional Justice'),
(69170, 'https://ror.org/01dgmv528', 'en', 1, 'https://ror.org/01dgmv528 Institute of History of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ історії України ŠŠŠ України'),
(69171, 'https://ror.org/04yva1294', 'en', 1, 'https://ror.org/04yva1294 International Centre for Ethnic Studies ą¶¢ą¶±ą·€ą·ą¶»ą·Šą¶œą·’ą¶š ą¶…ą¶°ą·Šą¶ŗą¶ŗą¶± ą·ƒą¶³ą·„ą· ą¶¢ą·ą¶­ą·Šą¶ŗą¶±ą·Šą¶­ą¶» ą¶øą¶°ą·Šą¶ŗą·ƒą·Šą¶®ą·ą¶±ą¶ŗ'),
(69172, 'https://ror.org/016ja5m69', 'no_lang_code', 1, 'https://ror.org/016ja5m69 Investa (Australia)'),
(69173, 'https://ror.org/02ccaw114', 'en', 1, 'https://ror.org/02ccaw114 International Ceramics Studio Nemzetközi KerÔmia Stúdió'),
(69174, 'https://ror.org/01nnh1n81', 'fr', 1, 'https://ror.org/01nnh1n81 CIEP'),
(69175, 'https://ror.org/02qfrzf96', 'en', 1, 'https://ror.org/02qfrzf96 Isha Foundation'),
(69176, 'https://ror.org/03w7tz659', 'en', 1, 'https://ror.org/03w7tz659 Ishara Puppet Theatre Trust'),
(69177, 'https://ror.org/022gx5t47', 'en', 1, 'https://ror.org/022gx5t47 Contemporary Dance Center Центр современного танца'),
(69178, 'https://ror.org/029agyb27', 'en', 1, 'https://ror.org/029agyb27 Centre de Recherches pour le DƩveloppement International International Development Research Centre'),
(69179, 'https://ror.org/010t2jv54', 'es', 1, 'https://ror.org/010t2jv54 Columbus Theatre Teatro Colón'),
(69180, 'https://ror.org/05g6h0p60', 'en', 1, 'https://ror.org/05g6h0p60 International Graduate School of Leadership'),
(69181, 'https://ror.org/03gbabd35', 'en', 1, 'https://ror.org/03gbabd35 Institute of Coal Chemistry and Material Science Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŠø Šø химического Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(69182, 'https://ror.org/042q0et03', 'en', 1, 'https://ror.org/042q0et03 MI College'),
(69183, 'https://ror.org/05kjsed78', 'en', 1, 'https://ror.org/05kjsed78 International Press Center RƩsidence Palace - Internationales Pressezentrum'),
(69184, 'https://ror.org/047z5ry18', 'en', 1, 'https://ror.org/047z5ry18 Israeli Center for Libraries ×ž×Ø×›×– ההפר וההפריות'),
(69185, 'https://ror.org/02r4tgk06', 'en', 1, 'https://ror.org/02r4tgk06 International Renaissance Foundation ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ фонГ "Š’Ń–Š“Ń€Š¾Š“Š¶ŠµŠ½Š½Ń'),
(69186, 'https://ror.org/01x9xr535', 'en', 1, 'https://ror.org/01x9xr535 International School of Dakar'),
(69187, 'https://ror.org/05s192022', 'en', 1, 'https://ror.org/05s192022 International Studio & Curatorial Program'),
(69188, 'https://ror.org/034515739', 'no_lang_code', 1, 'https://ror.org/034515739 Jacobi Consulting (New Zealand)'),
(69189, 'https://ror.org/04x7abt37', 'en', 1, 'https://ror.org/04x7abt37 International University of Central Asia'),
(69190, 'https://ror.org/02vjtn770', 'en', 1, 'https://ror.org/02vjtn770 Internews'),
(69191, 'https://ror.org/01zfe1g78', 'en', 1, 'https://ror.org/01zfe1g78 The Interuniversity Institute for Research and Development'),
(69192, 'https://ror.org/03tf2ww78', 'en', 1, 'https://ror.org/03tf2ww78 Jammu and Kashmir Academy of Art, Culture and Languages'),
(69193, 'https://ror.org/03580ka59', 'en', 1, 'https://ror.org/03580ka59 Fulbright Japan ę—„ē±³ę•™č‚²å§”å“”ä¼š'),
(69194, 'https://ror.org/05q0txz94', 'es', 1, 'https://ror.org/05q0txz94 Jardƭn EtnobotƔnico de Oaxaca'),
(69195, 'https://ror.org/01zepqe17', 'en', 1, 'https://ror.org/01zepqe17 The Jerusalem Academy of Music and Dance האקדמיה למוהיקה ולמחול ×‘×™×Ø×•×©×œ×™×'),
(69196, 'https://ror.org/007b1fc92', 'no_lang_code', 1, 'https://ror.org/007b1fc92 INTAR'),
(69197, 'https://ror.org/004b2nf78', 'en', 1, 'https://ror.org/004b2nf78 Jewish Museum of Greece Ī•Ī²ĻĪ±ĻŠĪŗĻŒ ĪœĪæĻ…ĻƒĪµĪÆĪæ ΕλλάΓος'),
(69198, 'https://ror.org/00vbej866', 'en', 1, 'https://ror.org/00vbej866 Kalakshetra Foundation'),
(69199, 'https://ror.org/024e7ek05', 'no_lang_code', 1, 'https://ror.org/024e7ek05 Kaleidoscopio'),
(69200, 'https://ror.org/04c5nsm37', 'no_lang_code', 1, 'https://ror.org/04c5nsm37 Kalpavriksh'),
(69201, 'https://ror.org/03pvzeb17', 'en', 1, 'https://ror.org/03pvzeb17 Kansas City Public Schools'),
(69202, 'https://ror.org/04dk3n740', 'en', 1, 'https://ror.org/04dk3n740 Jordan National Gallery of Fine Arts المتحف Ų§Ł„ŁˆŲ·Ł†ŁŠ Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ Ł„Ł„ŁŁ†ŁˆŁ† Ų§Ł„Ų¬Ł…ŁŠŁ„Ų©'),
(69203, 'https://ror.org/0173qy615', 'en', 1, 'https://ror.org/0173qy615 Jordan Radio and Television Corporation Ł…Ų¤Ų³Ų³Ų© ال؄ذاعة ŁˆŲ§Ł„ŲŖŁ„ŁŲ²ŁŠŁˆŁ† Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ'),
(69204, 'https://ror.org/02sqn1q51', 'en', 1, 'https://ror.org/02sqn1q51 Karakalpakstan State Museum of Art named after I.V. Savitsky Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ музей ŠøŃŠŗŃƒŃŃŃ‚в имени И. Š’. Давицкого'),
(69205, 'https://ror.org/02p12t634', 'no_lang_code', 1, 'https://ror.org/02p12t634 Karnataka Chitrakala Parishath ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²šą²æą²¤ą³ą²°ą²•ą²²ą²¾ ą²Ŗą²°ą²æą²·ą²¤ą³'),
(69206, 'https://ror.org/02k35v311', 'es', 1, 'https://ror.org/02k35v311 Benemerito Hospital General con Especialidades "Juan Maria de Salvatierra"'),
(69207, 'https://ror.org/04c47m560', 'en', 1, 'https://ror.org/04c47m560 Kerala State Chalachitra Academy ą“•ąµ‡ą“°ą“³ ą“øą“‚ą“øąµą“„ą“¾ą“Ø ą“šą“²ą“šąµą“šą“æą“¤ąµą“° ą“…ą“•ąµą“•ą“¾ą“¦ą“®ą“æ'),
(69208, 'https://ror.org/03zwqne39', 'en', 1, 'https://ror.org/03zwqne39 The Judge Advocate General''s Legal Center and School'),
(69209, 'https://ror.org/00cpnjf66', 'en', 1, 'https://ror.org/00cpnjf66 Kathimerini Publishing (Greece) Oι ĪšĪ‘Ī˜Ī—ĪœĪ•Ī”Ī™ĪĪ•Ī£ Ī•ĪšĪ”ĪŸĪ£Ī•Ī™Ī£'),
(69210, 'https://ror.org/04m3c6y30', 'vi', 1, 'https://ror.org/04m3c6y30 Hį»c viện Tʰ phĆ”p'),
(69211, 'https://ror.org/02shbjh24', 'en', 1, 'https://ror.org/02shbjh24 Kazakh Research Institute of Plant Protection and Quarantine казахский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ защиты Šø карантина растений'),
(69212, 'https://ror.org/001aba497', 'pt', 1, 'https://ror.org/001aba497 Instituto Brasil Estados Unidos'),
(69213, 'https://ror.org/038mavt60', 'en', 1, 'https://ror.org/038mavt60 Astana Medical University ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Астана'),
(69214, 'https://ror.org/044h52h12', 'es', 1, 'https://ror.org/044h52h12 Poder Judicial de la Ciudad de Buenos Aires'),
(69215, 'https://ror.org/03gk5bm92', 'en', 1, 'https://ror.org/03gk5bm92 Kazakh-American Free University ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½-АмериканГық еркін ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(69216, 'https://ror.org/00gkr8739', 'en', 1, 'https://ror.org/00gkr8739 Psychoanalytical Association ŠŸŃŠøŃ…Š¾Š°Š½Š°Š»ŠøŃ‚ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ'),
(69217, 'https://ror.org/04p41m479', 'en', 1, 'https://ror.org/04p41m479 Ministry of Education and Science of the Republic of Tatarstan ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки Республики Татарстан'),
(69218, 'https://ror.org/04x2dgq71', 'en', 1, 'https://ror.org/04x2dgq71 Provincial Polyclinical Hospital in Toruń Wojewódzki Szpital Zespolony im. L. Rydygiera w Toruniu'),
(69219, 'https://ror.org/00nc9jd53', 'no_lang_code', 1, 'https://ror.org/00nc9jd53 Kharkiv Lit Museum Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š»Ń–Ń‚ŠµŃ€Š°Ń‚ŃƒŃ€Š½ŠøŠ¹ музей'),
(69220, 'https://ror.org/05acccr47', 'en', 1, 'https://ror.org/05acccr47 Judicial Yuan åøę³•é™¢'),
(69221, 'https://ror.org/01mryv087', 'en', 1, 'https://ror.org/01mryv087 The K.R. Cama Oriental Institute'),
(69222, 'https://ror.org/0575fjh40', 'en', 1, 'https://ror.org/0575fjh40 Kenya Association of Professional Counsellors'),
(69223, 'https://ror.org/0574xt008', 'no_lang_code', 1, 'https://ror.org/0574xt008 Kahoku Shimpō ę²³åŒ—ę–°å ±'),
(69224, 'https://ror.org/005d5fb76', 'en', 1, 'https://ror.org/005d5fb76 Kent State University Geauga'),
(69225, 'https://ror.org/02s29db36', 'fr', 1, 'https://ror.org/02s29db36 Kahuzi-BiƩga National Park'),
(69226, 'https://ror.org/00sxaat11', 'en', 1, 'https://ror.org/00sxaat11 King Abdulaziz Foundation For Research And Archives'),
(69227, 'https://ror.org/034p3rp25', 'en', 1, 'https://ror.org/034p3rp25 Kazakhstan Medical University ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½Š“Ń‹Ņ› меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(69228, 'https://ror.org/020gf2z05', 'en', 1, 'https://ror.org/020gf2z05 King County Council'),
(69229, 'https://ror.org/01hxaqe16', 'en', 1, 'https://ror.org/01hxaqe16 King Fahd Security College ŁƒŁ„ŁŠŲ© Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„Ų£Ł…Ł†ŁŠŲ©'),
(69230, 'https://ror.org/022nyvr86', 'en', 1, 'https://ror.org/022nyvr86 V.M. Koretsky Institute of State and Law Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гержави і права імені Š’. М. ŠšŠ¾Ń€ŠµŃ†ŃŒŠŗŠ¾Š³Š¾ ŠŠŠ України Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²Š° Šø права имени Š’. М. ŠšŠ¾Ń€ŠµŃ†ŠŗŠ¾Š³Š¾ ŠŠŠ Украины'),
(69231, 'https://ror.org/01ntfzr17', 'no_lang_code', 1, 'https://ror.org/01ntfzr17 La Strada'),
(69232, 'https://ror.org/01pfmmr39', 'en', 1, 'https://ror.org/01pfmmr39 Kotka Maritime Research Centre Meriturvallisuuden ja -liikenteen Tutkimuskeskus'),
(69233, 'https://ror.org/05qxwht78', 'en', 1, 'https://ror.org/05qxwht78 Dmitri Hvorostovsky Siberian State Institute of Arts Дибирский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² имени Š”Š¼ŠøŃ‚Ń€ŠøŃ Єворостовского'),
(69234, 'https://ror.org/022cj9d07', 'en', 1, 'https://ror.org/022cj9d07 Ladies College'),
(69235, 'https://ror.org/01ex19q32', 'en', 1, 'https://ror.org/01ex19q32 Kingswood Oxford'),
(69236, 'https://ror.org/05m905s87', 'en', 1, 'https://ror.org/05m905s87 Islamic Azad University, Masjed Soleyman دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ų³Ų¬ŲÆŲ³Ł„ŪŒŁ…Ų§Ł†'),
(69237, 'https://ror.org/00zjk7642', 'en', 1, 'https://ror.org/00zjk7642 Larkin University'),
(69238, 'https://ror.org/027h4hn14', 'no_lang_code', 1, 'https://ror.org/027h4hn14 Alma Media (Finland) Alma Media Oyj'),
(69239, 'https://ror.org/025jccm67', 'no_lang_code', 1, 'https://ror.org/025jccm67 Kobe Shimbun (Japan) ē„žęˆøę–°čž'),
(69240, 'https://ror.org/05czncj82', 'no_lang_code', 1, 'https://ror.org/05czncj82 Lasanaa'),
(69241, 'https://ror.org/048f1z657', 'no_lang_code', 1, 'https://ror.org/048f1z657 Kyiv International Institute of Sociology (Ukraine) ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ міжнароГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ соціології'),
(69242, 'https://ror.org/02djy5m07', 'no_lang_code', 1, 'https://ror.org/02djy5m07 Les Kurbas Center Š¦Š•ŠŠ¢Š  ЛЕДЯ ŠšŠ£Š Š‘ŠŠ”Š'),
(69243, 'https://ror.org/03f2nzb42', 'en', 1, 'https://ror.org/03f2nzb42 The LGBT Centre ЛГБТ Төв'),
(69244, 'https://ror.org/02jqsv109', 'en', 1, 'https://ror.org/02jqsv109 Margarita Rudomino All-Russia State Library for Foreign Literature Библиотека иностранной Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹'),
(69245, 'https://ror.org/04ks1pv36', 'en', 1, 'https://ror.org/04ks1pv36 Law Institute of Lithuania Teisės institutas'),
(69246, 'https://ror.org/01qmska07', 'no_lang_code', 1, 'https://ror.org/01qmska07 Kabar'),
(69247, 'https://ror.org/00rmabh56', 'en', 1, 'https://ror.org/00rmabh56 Lower East Side Printshop'),
(69248, 'https://ror.org/02vkaxr54', 'en', 1, 'https://ror.org/02vkaxr54 Library of Tibetan Works and Archives'),
(69249, 'https://ror.org/02451fm04', 'en', 1, 'https://ror.org/02451fm04 Kyrgyz State Law Academy ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(69250, 'https://ror.org/0323znp25', 'fr', 1, 'https://ror.org/0323znp25 BibliothĆØque Universitaire des Langues et Civilisations'),
(69251, 'https://ror.org/00mja9e27', 'en', 1, 'https://ror.org/00mja9e27 Kyrgyzskaya State Academy of Physical Culture and Sports ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(69252, 'https://ror.org/02gse4n09', 'en', 1, 'https://ror.org/02gse4n09 L. A. Orbeli Institute of Physiology NAS RA ՀՀ Ō³Ō±Ō± Ō±ÕÆÕ”Õ¤. Ō¼. Ō±. Õ•Ö€Õ¢Õ„Õ¬ÕøÖ‚ Õ”Õ¶Õ¾Õ”Õ¶ Õ–Õ«Õ¦Õ«ÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ« Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(69253, 'https://ror.org/015w40490', 'es', 1, 'https://ror.org/015w40490 Liceo Jubilar Juan Pablo II'),
(69254, 'https://ror.org/04d2zdx41', 'en', 1, 'https://ror.org/04d2zdx41 Labyrinth Musical Workshop ĪœĪæĻ…ĻƒĪ¹ĪŗĻŒ ĪµĻĪ³Ī±ĻƒĻ„Ī®ĻĪ¹ Ī›Ī±Ī²ĻĻĪ¹Ī½ĪøĪæĻ‚'),
(69255, 'https://ror.org/020p1sa64', 'en', 1, 'https://ror.org/020p1sa64 L.V. Prasad Film & TV Academy'),
(69256, 'https://ror.org/00nxm0568', 'en', 1, 'https://ror.org/00nxm0568 Lillstreet Art Center'),
(69257, 'https://ror.org/038c5v419', 'no_lang_code', 1, 'https://ror.org/038c5v419 NMAS Group (United States)'),
(69258, 'https://ror.org/0020qzt72', 'no_lang_code', 1, 'https://ror.org/0020qzt72 Mabou Mines (United States)'),
(69259, 'https://ror.org/03mq02m67', 'en', 1, 'https://ror.org/03mq02m67 Limón Institute'),
(69260, 'https://ror.org/00x0hb616', 'no_lang_code', 1, 'https://ror.org/00x0hb616 Mapei (United States)'),
(69261, 'https://ror.org/026xf4k55', 'en', 1, 'https://ror.org/026xf4k55 MeetFactory'),
(69262, 'https://ror.org/05t3tvt21', 'en', 1, 'https://ror.org/05t3tvt21 Asociación MeetShareDance MeetShareDance Association'),
(69263, 'https://ror.org/05n7m1k33', 'en', 1, 'https://ror.org/05n7m1k33 Loutky v Nemocnici Puppets in Hospital'),
(69264, 'https://ror.org/033ensv76', 'en', 1, 'https://ror.org/033ensv76 Lowry Memorial College & Group of Institutions'),
(69265, 'https://ror.org/03twgdg85', 'de', 1, 'https://ror.org/03twgdg85 Medizinische Zentrum für Gesundheit'),
(69266, 'https://ror.org/033893t28', 'no_lang_code', 1, 'https://ror.org/033893t28 Martin Chautari ą¤®ą¤¾ą¤°ą„ą¤Ÿą¤æą¤Ø ą¤šą„Œą¤¤ą¤¾ą¤°ą„€'),
(69267, 'https://ror.org/010rd4p08', 'no_lang_code', 1, 'https://ror.org/010rd4p08 OTJ Architects (United States)'),
(69268, 'https://ror.org/03ab9ve27', 'en', 1, 'https://ror.org/03ab9ve27 Mental Health America'),
(69269, 'https://ror.org/054yyyw60', 'no_lang_code', 1, 'https://ror.org/054yyyw60 Mada al-Carmel مدى Ų§Ł„ŁƒŲ±Ł…Ł„'),
(69270, 'https://ror.org/05r288y75', 'en', 1, 'https://ror.org/05r288y75 Magic Lantern Movies'),
(69271, 'https://ror.org/03jjc4667', 'en', 1, 'https://ror.org/03jjc4667 Ministry of Agriculture and Fisheries وزارة الزراعة ŁˆŲ§Ł„Ų«Ų±ŁˆŲ© Ų§Ł„Ų³Ł…ŁƒŁŠŲ© - سلطنة Ų¹ŁŁ…Ų§Ł†'),
(69272, 'https://ror.org/00f2tck44', 'fr', 1, 'https://ror.org/00f2tck44 Ministère de l''Agriculture et des Aménagements Hydrauliques'),
(69273, 'https://ror.org/02hqm2v55', 'en', 1, 'https://ror.org/02hqm2v55 Mahatma Gandhi Institute'),
(69274, 'https://ror.org/01vr3ck92', 'en', 1, 'https://ror.org/01vr3ck92 Matheny'),
(69275, 'https://ror.org/028chwx32', 'en', 1, 'https://ror.org/028chwx32 Ministry of Culture'),
(69276, 'https://ror.org/023m6zy08', 'no_lang_code', 1, 'https://ror.org/023m6zy08 Lokadharmi'),
(69277, 'https://ror.org/02tbvzj10', 'en', 1, 'https://ror.org/02tbvzj10 Ministry of Culture وزارة الثقافة'),
(69278, 'https://ror.org/03cfe5t18', 'en', 1, 'https://ror.org/03cfe5t18 The Mainichi ę Ŗå¼ä¼šē¤¾ęÆŽę—„ę–°čžē¤¾'),
(69279, 'https://ror.org/024m3bm98', 'ro', 1, 'https://ror.org/024m3bm98 Biblioteca Metropolitană București'),
(69280, 'https://ror.org/03cnz7c57', 'en', 1, 'https://ror.org/03cnz7c57 Ministry of Culture وزارة الثقافة'),
(69281, 'https://ror.org/00vtapt19', 'en', 1, 'https://ror.org/00vtapt19 The Mauritius Chamber of Commerce and Industry'),
(69282, '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'),
(69283, 'https://ror.org/03g8mjq73', 'en', 1, 'https://ror.org/03g8mjq73 London Fire Brigade'),
(69284, 'https://ror.org/014cjsd78', 'en', 1, 'https://ror.org/014cjsd78 Ministry of Defence of Armenia Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« ÕŗÕ”Õ·ÕæÕŗÕ”Õ¶ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ¶Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(69285, 'https://ror.org/02s03gc27', 'en', 1, 'https://ror.org/02s03gc27 Metta Development Foundation'),
(69286, 'https://ror.org/01dg8r335', 'en', 1, 'https://ror.org/01dg8r335 Ministry of Economy of the Republic of Uzbekistan O''zbekiston Respublikasi Iqtisodiyot Vazirligi'),
(69287, 'https://ror.org/04fp2d244', 'en', 1, 'https://ror.org/04fp2d244 Ministry of Education'),
(69288, 'https://ror.org/05ajf5338', 'fr', 1, 'https://ror.org/05ajf5338 MinistĆØre des Affaires Ɖconomiques et de la Promotion des Secteurs Productifs'),
(69289, 'https://ror.org/05jxn6e66', 'en', 1, 'https://ror.org/05jxn6e66 Ministry of Natural Resources and Environment ąŗąŗ°ąŗŠąŗ§ąŗ‡ ąŗŠąŗ±ąŗšąŗžąŗ°ąŗąŗ²ąŗąŗ­ąŗ™ ąŗ—ąŗ³ąŗ”ąŗ°ąŗŠąŗ²ąŗ” ແຄະ ąŗŖąŗ“ą»ˆąŗ‡ą»ąŗ§ąŗ”ąŗ„ą»‰ąŗ­ąŗ”'),
(69290, 'https://ror.org/01eeqkr30', 'en', 1, 'https://ror.org/01eeqkr30 The Ministry of Education and Science of the Kyrgyz Republic ŠšŃ‹Ń€Š³Ń‹Š· Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Š½ билим берүү жана илим министрлиги ŠœŠøŠ½ŠøŃŃ‚ерство Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾Š¹ Республики'),
(69291, 'https://ror.org/03c71f034', 'en', 1, 'https://ror.org/03c71f034 Los Angeles Police Department'),
(69292, 'https://ror.org/04z5sh748', 'es', 1, 'https://ror.org/04z5sh748 Ministerio Público Fiscal de la Ciudad Autónoma de Buenos Aires'),
(69293, 'https://ror.org/01rjqh621', 'en', 1, 'https://ror.org/01rjqh621 Ministry of Social Justice and Empowerment'),
(69294, 'https://ror.org/05w8pph52', 'en', 1, 'https://ror.org/05w8pph52 Ministry of Education'),
(69295, 'https://ror.org/058gtx933', 'en', 1, 'https://ror.org/058gtx933 Capital Academy of Finance and Humanities Š”Ń‚Š¾Š»ŠøŃ‡Š½Š°Ń Финансово-Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(69296, 'https://ror.org/01kj6qf31', 'en', 1, 'https://ror.org/01kj6qf31 Ministry of Welfare VelferưarrƔưuneytiư'),
(69297, 'https://ror.org/00gdary87', 'en', 1, 'https://ror.org/00gdary87 Mt Albert Primary School'),
(69298, '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'),
(69299, 'https://ror.org/01tm6bj89', 'en', 1, 'https://ror.org/01tm6bj89 Mazatlan Professional School of Dance'),
(69300, 'https://ror.org/0531tjg57', 'en', 1, 'https://ror.org/0531tjg57 Middlesex University'),
(69301, 'https://ror.org/022mnpm42', 'en', 1, 'https://ror.org/022mnpm42 Ministry of Natural Resources and Environmental Conservation'),
(69302, 'https://ror.org/00vjz3318', 'en', 1, 'https://ror.org/00vjz3318 Leksikografski zavod Miroslav Krleža Miroslav Krleža Institute of Lexicography'),
(69303, 'https://ror.org/050a13t43', 'en', 1, 'https://ror.org/050a13t43 Moscow State University Филиал Московского Š³Š¾ŃŃƒŠ“арственного ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š° имени М.Š’. Ломоносова в гороГе Š”ŃƒŃˆŠ°Š½Š±Šµ'),
(69304, 'https://ror.org/01gjnzx46', 'es', 1, 'https://ror.org/01gjnzx46 Cultura Instituto de Cultura, Turismo y Arte de Mazatlan'),
(69305, 'https://ror.org/01m965f91', 'it', 1, 'https://ror.org/01m965f91 Museo Civico di Zoologia'),
(69306, 'https://ror.org/05s075877', 'en', 1, 'https://ror.org/05s075877 Movement for Freedom Движение «За ДвобоГу»'),
(69307, 'https://ror.org/02z85gz67', 'en', 1, 'https://ror.org/02z85gz67 Institut Mittag-Leffler Mittag-Leffler Institute'),
(69308, 'https://ror.org/01pqjya71', 'en', 1, 'https://ror.org/01pqjya71 Ministerul Afacerilor Externe Ministry of Foreign Affairs'),
(69309, 'https://ror.org/00259sq91', 'en', 1, 'https://ror.org/00259sq91 MS Training Centre for Development Cooperation'),
(69310, 'https://ror.org/05fnwbw69', 'en', 1, 'https://ror.org/05fnwbw69 Ministry of Foreign Affairs Ž‰ŽØŽ‚ŽØŽŽ°Ž“Ž°ŽƒŽ© Ž‡Ž®ŽŠŽ° ŽŠŽ®ŽƒŽØŽ‚Ž° Ž‡Ž¬ŽŠŽ¬Ž‡Ž§Ž’Ž°'),
(69311, 'https://ror.org/05frq8d16', 'en', 1, 'https://ror.org/05frq8d16 Modern Art Research Institute Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃŃƒŃ‡Š°ŃŠ½Š¾Š³Š¾ мистецтва'),
(69312, 'https://ror.org/044dvga50', 'en', 1, 'https://ror.org/044dvga50 Bį»™ Ngoįŗ”i giao Việt Nam Ministry of Foreign Affairs'),
(69313, 'https://ror.org/00gesww49', 'en', 1, 'https://ror.org/00gesww49 Archivo nacional del Ecuador National Archives of Ecuador'),
(69314, 'https://ror.org/001ykgy03', 'fr', 1, 'https://ror.org/001ykgy03 MinistĆØre de l’Enseignement SupĆ©rieur et de la Recherche Scientifique'),
(69315, 'https://ror.org/01dt0bh70', 'en', 1, 'https://ror.org/01dt0bh70 Akademi Seni Budaya Dan Warisan Kebangsaan National Academy of Arts, Culture and Heritage'),
(69316, 'https://ror.org/01tmwk758', 'en', 1, 'https://ror.org/01tmwk758 Museum of Contemporary African Diasporan Arts'),
(69317, 'https://ror.org/05qr1wq31', 'en', 1, 'https://ror.org/05qr1wq31 Ministry of Industries and Production'),
(69318, 'https://ror.org/05291f140', 'en', 1, 'https://ror.org/05291f140 Molteno Institute for Language and Literacy'),
(69319, 'https://ror.org/00vkfxn17', 'en', 1, 'https://ror.org/00vkfxn17 Mongolia International University'),
(69320, 'https://ror.org/025y1an67', 'no_lang_code', 1, 'https://ror.org/025y1an67 Kerala Museum ą“•ąµ‡ą“°ą“³ ą“šą“°ą“æą“¤ąµą“° ą“®ąµą“Æąµ‚ą“øą“æą“Æą“‚'),
(69321, 'https://ror.org/03dkq2191', 'en', 1, 'https://ror.org/03dkq2191 Ministry of Internal Affairs ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Šž ЗА Š’ŠŠŠ¢Š Š•ŠØŠŠ˜ Š ŠŠ‘ŠžŠ¢Š˜'),
(69322, 'https://ror.org/0265f5c42', 'en', 1, 'https://ror.org/0265f5c42 Minshar School of Art ×ž× ×©×Ø ×œ××ž× ×•×Ŗ'),
(69323, 'https://ror.org/00v140q16', 'en', 1, 'https://ror.org/00v140q16 MIT University МИТ Универзитет'),
(69324, 'https://ror.org/03xnyzd31', 'en', 1, 'https://ror.org/03xnyzd31 Ministry of Internal Affairs of the Kyrgyz Republic ŠšŃ‹Ń€Š³Ń‹Š· Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Š½ Š˜Ń‡ŠŗŠø Š˜ŃˆŃ‚ŠµŃ€ ŠœŠøŠ½ŠøŃŃ‚Ń€Š»ŠøŠ³Šø ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел ŠšŠøŃ€Š³ŠøŠ·ŃŠŗŠ¾Š¹ Республики'),
(69325, 'https://ror.org/05de8nz58', 'en', 1, 'https://ror.org/05de8nz58 Uganda National Council for Higher Education'),
(69326, 'https://ror.org/038smxt70', 'en', 1, 'https://ror.org/038smxt70 Myanmar Institute of Information Technology'),
(69327, 'https://ror.org/0165cfe41', 'en', 1, 'https://ror.org/0165cfe41 Bį»™ Tʰ phĆ”p Ministry of Justice'),
(69328, 'https://ror.org/04bmy8c93', 'no_lang_code', 1, 'https://ror.org/04bmy8c93 Banco Montepio (Portugal)'),
(69329, 'https://ror.org/03sc8dz05', 'en', 1, 'https://ror.org/03sc8dz05 Ministry of Land Management, Urban Planning and Construction įž€įŸ’įžšįžŸįž½įž„įžšįŸ€įž”įž…įŸ†įžŠįŸ‚įž“įžŠįžø įž“įž‚įžšįž¼įž”įž“įžøįž™įž€įž˜įŸ’įž˜ įž“įž·įž„įžŸįŸ†įžŽįž„įŸ‹'),
(69330, 'https://ror.org/02mb6z761', 'en', 1, 'https://ror.org/02mb6z761 Myanmar Institute of Theology'),
(69331, 'https://ror.org/03jjzp129', 'en', 1, 'https://ror.org/03jjzp129 Los Angeles County Superior Court'),
(69332, 'https://ror.org/05c1nzq18', 'en', 1, 'https://ror.org/05c1nzq18 Commission de la Capitale Nationale National Capital Commission'),
(69333, 'https://ror.org/0293c7e71', 'fr', 1, 'https://ror.org/0293c7e71 Conservatoire des Arts et MƩtiers MultimƩdia'),
(69334, 'https://ror.org/00k8f0f41', 'en', 1, 'https://ror.org/00k8f0f41 National Institute of Technical Teachers’ Training and Research'),
(69335, 'https://ror.org/017ycry73', 'no_lang_code', 1, 'https://ror.org/017ycry73 Bhungroo (India)'),
(69336, 'https://ror.org/04sprnk40', 'en', 1, 'https://ror.org/04sprnk40 National Gallery of Arts'),
(69337, 'https://ror.org/05av08j02', 'es', 1, 'https://ror.org/05av08j02 Instituto Nacional de Medicina Tropical'),
(69338, 'https://ror.org/01235bb77', 'fr', 1, 'https://ror.org/01235bb77 Banque Nationale de GĆØnes'),
(69339, 'https://ror.org/00d58r705', 'en', 1, 'https://ror.org/00d58r705 Namgyal Tantric College ą¤Øą¤¾ą¤®ą¤—ą„ą¤Æą¤¾ą¤² ą¤®ą„‹ą¤Øą¤¾ą¤øą„ą¤Ÿą„ą¤°ą„€'),
(69340, 'https://ror.org/03ay16t61', 'en', 1, 'https://ror.org/03ay16t61 National Gugak Center 국립국악원'),
(69341, 'https://ror.org/04mwgzt90', 'en', 1, 'https://ror.org/04mwgzt90 National Health Systems Resource Centre'),
(69342, 'https://ror.org/01a402j88', 'en', 1, 'https://ror.org/01a402j88 National HIV/AIDS Secretariat'),
(69343, 'https://ror.org/01nmtfv20', 'en', 1, 'https://ror.org/01nmtfv20 National Defense University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž€įž¶įžšįž–įž¶įžšįž‡įž¶įžįž·'),
(69344, 'https://ror.org/01t2seb40', 'en', 1, 'https://ror.org/01t2seb40 National Disability Rights Network'),
(69345, 'https://ror.org/03vrs3080', 'en', 1, 'https://ror.org/03vrs3080 National Management Degree College'),
(69346, 'https://ror.org/00zs92e71', 'en', 1, 'https://ror.org/00zs92e71 National Museum of History åœ‹ē«‹ę­·å²åšē‰©é¤Ø'),
(69347, 'https://ror.org/05snn5v50', 'en', 1, 'https://ror.org/05snn5v50 National Institute for Defense Studies é˜²č”›ē ”ē©¶ę‰€'),
(69348, 'https://ror.org/02vdz8162', 'no_lang_code', 1, 'https://ror.org/02vdz8162 Natama'),
(69349, 'https://ror.org/01nj7ae17', 'en', 1, 'https://ror.org/01nj7ae17 National Organizations for Youth Safety'),
(69350, 'https://ror.org/004fa4s18', 'fr', 1, 'https://ror.org/004fa4s18 Ecole Nationale d’IngĆ©nieurs – Abderhamane Baba TourĆ©'),
(69351, 'https://ror.org/05tnmhm33', 'en', 1, 'https://ror.org/05tnmhm33 Employment Agency'),
(69352, '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 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гемографии Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… исслеГований имени М.Š’. ŠŸŃ‚ŃƒŃ…Šø ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Украины'),
(69353, 'https://ror.org/0477ytm39', 'en', 1, 'https://ror.org/0477ytm39 National Security and Defense Council of Ukraine РаГа Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— безпеки і оборони України'),
(69354, 'https://ror.org/040hg4198', 'en', 1, 'https://ror.org/040hg4198 National Youth Science Forum'),
(69355, 'https://ror.org/02r06d562', 'en', 1, 'https://ror.org/02r06d562 National Institute of Arts l''Institut National des Arts'),
(69356, 'https://ror.org/05jfg3b29', 'en', 1, 'https://ror.org/05jfg3b29 National Institute of Criminology OrszÔgos Kriminológiai Intézet'),
(69357, 'https://ror.org/027q5ca10', 'es', 1, 'https://ror.org/027q5ca10 Instituto Nacional de Patrimonio Cultural'),
(69358, 'https://ror.org/02st7ck79', 'en', 1, 'https://ror.org/02st7ck79 Museo Archeologico Nazionale di Napoli National Archaeological Museum'),
(69359, 'https://ror.org/004zmp616', 'en', 1, 'https://ror.org/004zmp616 National Institute of Ecology'),
(69360, 'https://ror.org/03qgydn21', 'es', 1, 'https://ror.org/03qgydn21 Escuela Nacional Superior de Ballet'),
(69361, 'https://ror.org/006xcew27', 'en', 1, 'https://ror.org/006xcew27 Doğa Koruma Merkezi Nature Conservation Centre'),
(69362, 'https://ror.org/01mm16571', 'de', 1, 'https://ror.org/01mm16571 Nawi Graz'),
(69363, 'https://ror.org/02169sk90', 'en', 1, 'https://ror.org/02169sk90 National Drug Addiction Center'),
(69364, 'https://ror.org/01bchpm90', 'en', 1, 'https://ror.org/01bchpm90 Instituto Nacional de Lenguas IndĆ­genas National Indigenous Languages Institute'),
(69365, 'https://ror.org/05evqrm94', 'en', 1, 'https://ror.org/05evqrm94 Nehru Memorial Museum & Library ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤øą„ą¤®ą¤¾ą¤°ą¤• ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ और ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æ'),
(69366, 'https://ror.org/02vdga848', 'no_lang_code', 1, 'https://ror.org/02vdga848 Neon Century (United Kingdom)'),
(69367, 'https://ror.org/033wxp778', 'en', 1, 'https://ror.org/033wxp778 photo.circle'),
(69368, 'https://ror.org/051a5x257', 'en', 1, 'https://ror.org/051a5x257 Nepal Water Conservation Foundation'),
(69369, 'https://ror.org/027nc8m92', 'en', 1, 'https://ror.org/027nc8m92 Northshore Education Consortium'),
(69370, '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'),
(69371, 'https://ror.org/03zn0nj77', 'en', 1, 'https://ror.org/03zn0nj77 New Museum'),
(69372, 'https://ror.org/04csk5x36', 'en', 1, 'https://ror.org/04csk5x36 Out & Equal Workplace Advocates'),
(69373, 'https://ror.org/05s8kep84', 'en', 1, 'https://ror.org/05s8kep84 Northern Ireland Civil Service StĆ”tseirbhĆ­s Thuaisceart Ɖireann'),
(69374, 'https://ror.org/02k0b2995', 'en', 1, 'https://ror.org/02k0b2995 Novita'),
(69375, 'https://ror.org/00xpayr72', 'es', 1, 'https://ror.org/00xpayr72 Planta Piloto de IngenierĆ­a QuĆ­mica'),
(69376, 'https://ror.org/01xgj3b22', 'en', 1, 'https://ror.org/01xgj3b22 Northern Ireland Office Oifig Thuaisceart Ɖireann'),
(69377, 'https://ror.org/03ee4bv96', 'en', 1, 'https://ror.org/03ee4bv96 New York City Bar Association'),
(69378, 'https://ror.org/02rshjz42', 'en', 1, 'https://ror.org/02rshjz42 Northumbria Police'),
(69379, 'https://ror.org/04mc93t41', 'en', 1, 'https://ror.org/04mc93t41 New York City Department of Transportation'),
(69380, 'https://ror.org/026hn9a19', 'en', 1, 'https://ror.org/026hn9a19 New York Musical Festival'),
(69381, 'https://ror.org/004n44f83', 'en', 1, 'https://ror.org/004n44f83 New Zealand Law Society'),
(69382, 'https://ror.org/05mdmem94', 'en', 1, 'https://ror.org/05mdmem94 Newpark Music Centre'),
(69383, 'https://ror.org/00p6c9322', 'no_lang_code', 1, 'https://ror.org/00p6c9322 Ngami Data Services (Botswana)'),
(69384, 'https://ror.org/049e8e889', 'en', 1, 'https://ror.org/049e8e889 Poetry Society of America'),
(69385, 'https://ror.org/02hr94v50', 'no_lang_code', 1, 'https://ror.org/02hr94v50 Office of the Ombudsman for Bermuda'),
(69386, 'https://ror.org/009sjag78', 'en', 1, 'https://ror.org/009sjag78 Education Group Akron Аркон'),
(69387, 'https://ror.org/00c1dss11', 'en', 1, 'https://ror.org/00c1dss11 Pearl Harbor Aviation Museum'),
(69388, 'https://ror.org/03vwaan51', 'en', 1, 'https://ror.org/03vwaan51 PetroVietnam University TrĘ°į»ng ĐẔi hį»c Dįŗ§u khĆ­ Việt Nam'),
(69389, 'https://ror.org/05q655z13', 'en', 1, 'https://ror.org/05q655z13 Omaha Community Foundation'),
(69390, 'https://ror.org/05ednck41', 'en', 1, 'https://ror.org/05ednck41 Brunei Polytechnic Politeknik Brunei'),
(69391, 'https://ror.org/02np7f480', 'en', 1, 'https://ror.org/02np7f480 Pham Van Dong University TrĘ°į»ng ĐẔi hį»c Phįŗ”m Văn Đồng'),
(69392, 'https://ror.org/048eb3m59', 'en', 1, 'https://ror.org/048eb3m59 Polytechnic College Suriname'),
(69393, 'https://ror.org/03k5dtn35', 'en', 1, 'https://ror.org/03k5dtn35 One Text Initiative'),
(69394, 'https://ror.org/052gthd20', 'en', 1, 'https://ror.org/052gthd20 Mural Arts Philadelphia'),
(69395, 'https://ror.org/04xf8jv21', 'es', 1, 'https://ror.org/04xf8jv21 Biblioteca Palafoxiana'),
(69396, 'https://ror.org/04nnjqq50', 'en', 1, 'https://ror.org/04nnjqq50 Philippine Cancer Society'),
(69397, 'https://ror.org/0220t3t55', 'no_lang_code', 1, 'https://ror.org/0220t3t55 Nikkei Business Publications (Japan) ę Ŗå¼ä¼šē¤¾ę—„ēµŒ'),
(69398, 'https://ror.org/03kyeae64', 'en', 1, 'https://ror.org/03kyeae64 Nile University'),
(69399, 'https://ror.org/038v0bj29', 'en', 1, 'https://ror.org/038v0bj29 Pomfret School'),
(69400, 'https://ror.org/00btw3p03', 'no_lang_code', 1, 'https://ror.org/00btw3p03 Nippon Television (Japan) ę—„ęœ¬ćƒ†ćƒ¬ćƒ“ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(69401, 'https://ror.org/03bnq5z51', 'en', 1, 'https://ror.org/03bnq5z51 Palestinian Center for Research and Cultural Dialogue Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁŁ„Ų³Ų·ŁŠŁ†ŁŠ للدراسات وحوار'),
(69402, 'https://ror.org/01gp9yw74', 'en', 1, 'https://ror.org/01gp9yw74 Open Society OtevřenĆ” Společnost'),
(69403, 'https://ror.org/03gzqe894', 'en', 1, 'https://ror.org/03gzqe894 Niels Brock'),
(69404, 'https://ror.org/052n2hz50', 'en', 1, 'https://ror.org/052n2hz50 Port Washington Public Library'),
(69405, 'https://ror.org/05434kd35', 'en', 1, 'https://ror.org/05434kd35 Portland Center Stage at The Armory'),
(69406, 'https://ror.org/034fv3460', 'no_lang_code', 1, 'https://ror.org/034fv3460 Procosi'),
(69407, 'https://ror.org/0589qa052', 'en', 1, 'https://ror.org/0589qa052 Phu Yen University TrĘ°į»ng ĐẔi Hį»c PhĆŗ YĆŖn'),
(69408, 'https://ror.org/02qgkae69', 'es', 1, 'https://ror.org/02qgkae69 Projazz Instituto Profesional'),
(69409, 'https://ror.org/02dt6mc98', 'es', 1, 'https://ror.org/02dt6mc98 Pronatura Noroeste'),
(69410, 'https://ror.org/05cfrq349', 'en', 1, 'https://ror.org/05cfrq349 Oregon Shakespeare Festival'),
(69411, 'https://ror.org/01jyjxa35', 'en', 1, 'https://ror.org/01jyjxa35 Open Health Systems Laboratory'),
(69412, 'https://ror.org/01fgzfp87', 'en', 1, 'https://ror.org/01fgzfp87 US Embassy in Turkmenistan'),
(69413, 'https://ror.org/0053bzc32', 'no_lang_code', 1, 'https://ror.org/0053bzc32 Proton (Malaysia)'),
(69414, 'https://ror.org/01q0r1k14', 'en', 1, 'https://ror.org/01q0r1k14 Office of National Intelligence'),
(69415, 'https://ror.org/02a4rw748', 'no_lang_code', 1, 'https://ror.org/02a4rw748 Kosovo Telecom (Kosovo) Telekomi i Kosovës Телеком Косова'),
(69416, 'https://ror.org/02k2w4w13', 'en', 1, 'https://ror.org/02k2w4w13 Rama Hospital & Research Centre'),
(69417, 'https://ror.org/054s1f192', 'no_lang_code', 1, 'https://ror.org/054s1f192 Post Bellum'),
(69418, 'https://ror.org/04gk2ac25', 'es', 1, 'https://ror.org/04gk2ac25 Ministerio PĆŗblico de la Defensa'),
(69419, 'https://ror.org/044t55e25', 'en', 1, 'https://ror.org/044t55e25 Participatory Development Training Centre ąŗŖąŗ¹ąŗ™ąŗąŗ¶ąŗąŗ­ąŗ»ąŗšąŗ®ąŗ»ąŗ”ąŗąŗ²ąŗ™ąŗžąŗ±ąŗ”ąŗ—ąŗ°ąŗ™ąŗ²ąŗ—ąŗµą»ˆąŗ”ąŗµąŗŖą»ˆąŗ§ąŗ™ąŗ®ą»ˆąŗ§ąŗ”'),
(69420, 'https://ror.org/05pvfsz50', 'en', 1, 'https://ror.org/05pvfsz50 Rochester Community and Technical College'),
(69421, 'https://ror.org/00qdxv953', 'no_lang_code', 1, 'https://ror.org/00qdxv953 Praktika Publishing House ŠŸŃ€Š°ŠŗŃ‚ŠøŠŗŠ°'),
(69422, 'https://ror.org/052rsaq92', 'no_lang_code', 1, 'https://ror.org/052rsaq92 PASSAsia (Sri Lanka)'),
(69423, 'https://ror.org/01gxrbz31', 'en', 1, 'https://ror.org/01gxrbz31 Rodrigues Economic Chamber and Industry'),
(69424, 'https://ror.org/05bgbfq25', 'en', 1, 'https://ror.org/05bgbfq25 Public Works Department Buildings and Roads'),
(69425, 'https://ror.org/00qjnpe47', 'no_lang_code', 1, 'https://ror.org/00qjnpe47 PatentVantage (United States)'),
(69426, 'https://ror.org/00tpdkh38', 'en', 1, 'https://ror.org/00tpdkh38 Ross School'),
(69427, 'https://ror.org/01a0mkb65', 'en', 1, 'https://ror.org/01a0mkb65 Archiv Hlavnƭho Města Prahy Prague City Archives'),
(69428, 'https://ror.org/02b27r753', 'en', 1, 'https://ror.org/02b27r753 Royal Education Council'),
(69429, 'https://ror.org/04wb42e09', 'en', 1, 'https://ror.org/04wb42e09 Royal Film Commission Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ų§Ł„Ų§Ų±ŲÆŁ†ŁŠŲ© للأفلام'),
(69430, 'https://ror.org/015mb8g48', 'en', 1, 'https://ror.org/015mb8g48 Royal Institute for Inter-Faith Studies المعهد Ų§Ł„Ł…Ł„ŁƒŁŠ للدراسات Ų§Ł„ŲÆŁŠŁ†ŁŠŲ©'),
(69431, 'https://ror.org/0525v4q94', 'en', 1, 'https://ror.org/0525v4q94 Royal School of Administration įžŸįž¶įž›įž¶įž—įž¼įž˜įž·įž“įŸ’įž‘įžšįžŠįŸ’įž‹įž”įž¶įž›'),
(69432, 'https://ror.org/0382h3v61', 'cs', 1, 'https://ror.org/0382h3v61 ZÔkladní Ŕkola a PraktickÔ Ŕkola SvítÔní'),
(69433, 'https://ror.org/02wcg0z91', 'en', 1, 'https://ror.org/02wcg0z91 Quebec Labrador Foundation'),
(69434, 'https://ror.org/01g8p7e44', 'no_lang_code', 1, 'https://ror.org/01g8p7e44 Publicis Groupe (France)'),
(69435, 'https://ror.org/017snwk31', 'en', 1, 'https://ror.org/017snwk31 Jerusalem Film and Television School'),
(69436, 'https://ror.org/01h4b6a51', 'pt', 1, 'https://ror.org/01h4b6a51 Observatório do Meio Rural'),
(69437, 'https://ror.org/05b2mvq54', 'en', 1, 'https://ror.org/05b2mvq54 Russian State University of Justice Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŸŃ€Š°Š²Š¾ŃŃƒŠ“ŠøŃ'),
(69438, 'https://ror.org/01brhxa96', 'en', 1, 'https://ror.org/01brhxa96 Library of the Russian Academy of Sciences Библиотека Российской акаГемии наук'),
(69439, 'https://ror.org/05b1ymr19', 'es', 1, 'https://ror.org/05b1ymr19 Universidad San Carlos'),
(69440, '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'),
(69441, 'https://ror.org/048bd3118', 'en', 1, 'https://ror.org/048bd3118 San Diego State University, Imperial Valley Campus'),
(69442, 'https://ror.org/0174crz24', 'en', 1, 'https://ror.org/0174crz24 Quip'),
(69443, 'https://ror.org/04081em55', 'en', 1, 'https://ror.org/04081em55 Residency Unlimited'),
(69444, 'https://ror.org/02kydsx93', 'en', 1, 'https://ror.org/02kydsx93 San Francisco County Transportation Authority'),
(69445, 'https://ror.org/028mtkm91', 'en', 1, 'https://ror.org/028mtkm91 San Francisco Police Department'),
(69446, 'https://ror.org/02he69d43', 'en', 1, 'https://ror.org/02he69d43 Kyiv Institute of Music. R. Glier ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ музики ім. Š .М.Глієра'),
(69447, 'https://ror.org/01kck2n84', 'en', 1, 'https://ror.org/01kck2n84 San Gabriel Pomona Regional Center'),
(69448, 'https://ror.org/020znap72', 'ro', 1, 'https://ror.org/020znap72 Asociația RomĆ¢nă de Artă Contemporană'),
(69449, 'https://ror.org/007pepr06', 'en', 1, 'https://ror.org/007pepr06 Sanskriti Foundation ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ą¤æ'),
(69450, 'https://ror.org/05ds1cx37', 'no_lang_code', 1, 'https://ror.org/05ds1cx37 RKB Mainichi Broadcasting (Japan) RKBęÆŽę—„ę”¾é€ę Ŗå¼ä¼šē¤¾'),
(69451, 'https://ror.org/01egfqj98', 'no_lang_code', 1, 'https://ror.org/01egfqj98 Sanskriti Samvardhan Mandal'),
(69452, 'https://ror.org/00f5a7a07', 'en', 1, 'https://ror.org/00f5a7a07 Rural Development Agency ąŗŖąŗ¹ąŗ™ąŗžąŗ±ąŗ”ąŗ—ąŗ°ąŗ™ąŗ²ąŗŠąŗ»ąŗ™ąŗ™ąŗ°ąŗšąŗ»ąŗ”');
INSERT INTO `rors` VALUES
(69453, 'https://ror.org/02gnftn41', 'en', 1, 'https://ror.org/02gnftn41 Saras Environment Consultant'),
(69454, 'https://ror.org/00g3bkn86', 'ms', 1, 'https://ror.org/00g3bkn86 Sarawak Biodiversity Centre'),
(69455, 'https://ror.org/016metk38', 'en', 1, 'https://ror.org/016metk38 Russian Museum of Ethnography Российский ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŃ‡ŠµŃŠŗŠøŠ¹ музей'),
(69456, 'https://ror.org/054xyqj29', 'en', 1, 'https://ror.org/054xyqj29 St. Vincent and the Grenadines Community College'),
(69457, 'https://ror.org/02eyqgr24', 'en', 1, 'https://ror.org/02eyqgr24 Russian State Archive of Literature and Arts Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ архив Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²Š°'),
(69458, 'https://ror.org/0477dxh89', 'no_lang_code', 1, 'https://ror.org/0477dxh89 The Seattle Times (United States)'),
(69459, 'https://ror.org/04xt6cc08', 'en', 1, 'https://ror.org/04xt6cc08 Second Air Division Memorial Library'),
(69460, 'https://ror.org/04kqnad16', 'en', 1, 'https://ror.org/04kqnad16 Svenska Hƶftprotesregistret The Swedish Hip Arthroplasty Register'),
(69461, 'https://ror.org/00ekkwn87', 'no_lang_code', 1, 'https://ror.org/00ekkwn87 Sedibeng TVET College'),
(69462, 'https://ror.org/0093qrn19', 'en', 1, 'https://ror.org/0093qrn19 Salzburg Global Seminar'),
(69463, 'https://ror.org/013fwa311', 'en', 1, 'https://ror.org/013fwa311 Sakhnin College ā€ŽŁƒŁ„ŁŠŲ© Ų³Ų®Ł†ŁŠŁ† Ł„ŲŖŲ£Ł‡ŁŠŁ„ Ų§Ł„Ł…Ų¹Ł„Ł…ŁŠŁ†'),
(69464, 'https://ror.org/03755pe12', 'en', 1, 'https://ror.org/03755pe12 Satyajit Ray Film and Television Institute'),
(69465, 'https://ror.org/05bdz6951', 'en', 1, 'https://ror.org/05bdz6951 Federal Senate Senado Federal'),
(69466, 'https://ror.org/040s56h35', 'en', 1, 'https://ror.org/040s56h35 Seoul Central District Court ģ„œģšøģ¤‘ģ•™ģ§€ė°©ė²•ģ›'),
(69467, 'https://ror.org/04wax6w38', 'fr', 1, 'https://ror.org/04wax6w38 Institut SupƩrieur PrivƩ Polytechnique'),
(69468, 'https://ror.org/026031778', 'en', 1, 'https://ror.org/026031778 Saudi Heritage Preservation Society'),
(69469, 'https://ror.org/01az4vq35', 'en', 1, 'https://ror.org/01az4vq35 Society for Education Welfare and Action Rural'),
(69470, 'https://ror.org/02p6rwd19', 'no_lang_code', 1, 'https://ror.org/02p6rwd19 Shalom Hartman Institute'),
(69471, 'https://ror.org/04cv2s677', 'no_lang_code', 1, 'https://ror.org/04cv2s677 ​Sevalanka Foundation'),
(69472, 'https://ror.org/026f02s60', 'en', 1, 'https://ror.org/026f02s60 Sir Arthur Lewis Community College'),
(69473, 'https://ror.org/014vs5452', 'en', 1, 'https://ror.org/014vs5452 Shakespeare Behind Bars'),
(69474, 'https://ror.org/0484jez12', 'en', 1, 'https://ror.org/0484jez12 Sharma Centre for Heritage Education India'),
(69475, 'https://ror.org/0020mxe10', 'en', 1, 'https://ror.org/0020mxe10 Shevchenko Institute of Literature Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š»Ń–Ń‚ŠµŃ€Š°Ń‚ŃƒŃ€Šø імені Тараса Шевченка ŠŠŠ України'),
(69476, 'https://ror.org/00zx4bg33', 'en', 1, 'https://ror.org/00zx4bg33 School of Social Work Roshni Nilaya'),
(69477, 'https://ror.org/038es3z80', 'pt', 1, 'https://ror.org/038es3z80 ClĆ­nica de Psiquiatria Psiquimei'),
(69478, 'https://ror.org/033mhgr78', 'en', 1, 'https://ror.org/033mhgr78 Srishti Institute of Art Design and Technology'),
(69479, 'https://ror.org/00n860n87', 'en', 1, 'https://ror.org/00n860n87 St. Vrain Valley School District'),
(69480, 'https://ror.org/02skssx66', 'en', 1, 'https://ror.org/02skssx66 The School of Visual Theatre בית ההפר ×œ×Ŗ×™××˜×Ø×•×Ÿ חזותי'),
(69481, 'https://ror.org/031s3hp40', 'es', 1, 'https://ror.org/031s3hp40 Stael Ruffinelli de Ortiz'),
(69482, 'https://ror.org/038ec0d06', 'no_lang_code', 1, 'https://ror.org/038ec0d06 Sri Caitanya Prema Samsthana'),
(69483, 'https://ror.org/00nx8qv29', 'en', 1, 'https://ror.org/00nx8qv29 Siena School for Liberal Arts'),
(69484, 'https://ror.org/0229sfh63', 'en', 1, 'https://ror.org/0229sfh63 Sri Lanka Foundation'),
(69485, 'https://ror.org/04fves037', 'no_lang_code', 1, 'https://ror.org/04fves037 Standard Chartered (Singapore)'),
(69486, 'https://ror.org/00jgz5a53', 'en', 1, 'https://ror.org/00jgz5a53 Sigmund Freud Museum'),
(69487, 'https://ror.org/05q5sqy38', 'en', 1, 'https://ror.org/05q5sqy38 Slovak National Gallery SlovenskƔ nƔrodnƔ galƩria'),
(69488, 'https://ror.org/01wm51k08', 'es', 1, 'https://ror.org/01wm51k08 Consejo Estatal Para la Cultura y las Artes de Hidalgo'),
(69489, 'https://ror.org/039ahdn18', 'en', 1, 'https://ror.org/039ahdn18 Slovak Rectors“Conference SlovenskÔ rektorskÔ konferencia'),
(69490, 'https://ror.org/01n2ebv18', 'en', 1, 'https://ror.org/01n2ebv18 Ukrainian State Employment Service Training Institute Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ піГготовки каГрів'),
(69491, 'https://ror.org/03hxrwp69', 'no_lang_code', 1, 'https://ror.org/03hxrwp69 Shopping Live (Russia)'),
(69492, 'https://ror.org/0550tq505', 'no_lang_code', 1, 'https://ror.org/0550tq505 Rolfes Henry (United States)'),
(69493, 'https://ror.org/0353nx598', 'en', 1, 'https://ror.org/0353nx598 Instituto Cultural Steve Biko'),
(69494, 'https://ror.org/00q8ds557', 'en', 1, 'https://ror.org/00q8ds557 The State Historical and Cultural Reserve "Trypillya Culture" Державний історико-ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½ŠøŠ¹ заповіГник Ā«Š¢Ń€ŠøŠæŃ–Š»ŃŒŃŃŒŠŗŠ° ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š°Ā»'),
(69495, 'https://ror.org/00z94ps04', 'en', 1, 'https://ror.org/00z94ps04 State Institute for Art Studies Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²Š¾Š·Š½Š°Š½ŠøŃ'),
(69496, 'https://ror.org/03mrd4308', 'en', 1, 'https://ror.org/03mrd4308 Salem City Schools'),
(69497, 'https://ror.org/042b7qk94', 'hi', 1, 'https://ror.org/042b7qk94 Ramakrishna Mission Vidyalaya'),
(69498, 'https://ror.org/02vt6dp03', 'it', 1, 'https://ror.org/02vt6dp03 Fondazione Studio Marangoni'),
(69499, 'https://ror.org/02cbaqx65', 'en', 1, 'https://ror.org/02cbaqx65 State of Rhode Island General Assembly'),
(69500, 'https://ror.org/01v9w5g84', 'en', 1, 'https://ror.org/01v9w5g84 Seattle Film Institute'),
(69501, 'https://ror.org/05927vd92', 'no_lang_code', 1, 'https://ror.org/05927vd92 Studio Olgoj Chorchoj'),
(69502, 'https://ror.org/01g0bw002', 'no_lang_code', 1, 'https://ror.org/01g0bw002 Tretyakov Gallery Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¢Ń€ŠµŃ‚ŃŒŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š“Š°Š»ŠµŃ€ŠµŃ'),
(69503, 'https://ror.org/03mk3w518', 'en', 1, 'https://ror.org/03mk3w518 Seattle Psychoanalytic Society and Institute'),
(69504, 'https://ror.org/008892w10', 'en', 1, 'https://ror.org/008892w10 Everyday Democracy'),
(69505, 'https://ror.org/006s3gt16', 'no_lang_code', 1, 'https://ror.org/006s3gt16 Hearst (United States)'),
(69506, 'https://ror.org/038n2xa05', 'en', 1, 'https://ror.org/038n2xa05 Supreme Court of the Republic of Slovenia Vrhovno sodiŔče Republike Slovenije'),
(69507, 'https://ror.org/05rg4er48', 'no_lang_code', 1, 'https://ror.org/05rg4er48 Sullivan and Worcester (United States)'),
(69508, 'https://ror.org/02gx09e94', 'en', 1, 'https://ror.org/02gx09e94 Surrey Police'),
(69509, 'https://ror.org/02mjj7x54', 'en', 1, 'https://ror.org/02mjj7x54 Sussex Police'),
(69510, 'https://ror.org/01axqd881', 'en', 1, 'https://ror.org/01axqd881 Swarnabhoomi Academy of Music'),
(69511, 'https://ror.org/02vrphe47', 'en', 1, 'https://ror.org/02vrphe47 Swaziland National Trust Commission'),
(69512, 'https://ror.org/01b003q34', 'no_lang_code', 1, 'https://ror.org/01b003q34 Sokrat'),
(69513, 'https://ror.org/05tje4e72', 'en', 1, 'https://ror.org/05tje4e72 Solidarity and Action Against the HIV Infection in India'),
(69514, 'https://ror.org/03y8dxm05', 'en', 1, 'https://ror.org/03y8dxm05 Sunraysia Institute of TAFE'),
(69515, 'https://ror.org/00tcrzw23', 'no_lang_code', 1, 'https://ror.org/00tcrzw23 Tawata Productions (New Zealand)'),
(69516, 'https://ror.org/003t9wy25', 'no_lang_code', 1, 'https://ror.org/003t9wy25 Sweekaar'),
(69517, 'https://ror.org/01cahbt32', 'no_lang_code', 1, 'https://ror.org/01cahbt32 Centre Régional Songhaï Songhai'),
(69518, 'https://ror.org/01etbpd39', 'en', 1, 'https://ror.org/01etbpd39 St. Scholastica''s College'),
(69519, 'https://ror.org/0171ejg62', 'en', 1, 'https://ror.org/0171ejg62 Sonoma Ecology Center'),
(69520, 'https://ror.org/05f8y8t16', 'no_lang_code', 1, 'https://ror.org/05f8y8t16 Mentaid'),
(69521, 'https://ror.org/04qtnvc29', 'en', 1, 'https://ror.org/04qtnvc29 Taichung City Government å°äø­åø‚ę”æåŗœ'),
(69522, 'https://ror.org/05ntjbh41', 'en', 1, 'https://ror.org/05ntjbh41 The Association of Boarding Schools'),
(69523, 'https://ror.org/04a1gmj86', 'no_lang_code', 1, 'https://ror.org/04a1gmj86 TCG Nordica'),
(69524, 'https://ror.org/02gkgnb87', 'en', 1, 'https://ror.org/02gkgnb87 Supreme Arbitration Court of the Russian Federation Š’Ń‹ŃŃˆŠøŠ¹ Арбитражный суГ Российской ФеГерации'),
(69525, 'https://ror.org/040d3j938', 'no_lang_code', 1, 'https://ror.org/040d3j938 Clearwater Group (United States)'),
(69526, 'https://ror.org/02a4rtb34', 'en', 1, 'https://ror.org/02a4rtb34 Taiwan Design Center å°ē£å‰µę„čØ­čØˆäø­åæƒ'),
(69527, 'https://ror.org/01eydjf18', 'en', 1, 'https://ror.org/01eydjf18 The Beles Group'),
(69528, 'https://ror.org/01hqnxa62', 'en', 1, 'https://ror.org/01hqnxa62 Te Wānanga o Raukawa'),
(69529, 'https://ror.org/02kn8f882', 'no_lang_code', 1, 'https://ror.org/02kn8f882 Taiwan Futures Exchange (Taiwan) č‡ŗē£ęœŸč²Øäŗ¤ę˜“ę‰€'),
(69530, 'https://ror.org/04xp1hk04', 'en', 1, 'https://ror.org/04xp1hk04 Southern Africa Nazarene University'),
(69531, 'https://ror.org/05sdt3y58', 'en', 1, 'https://ror.org/05sdt3y58 The Cabell Brand Center'),
(69532, 'https://ror.org/030ajmr16', 'en', 1, 'https://ror.org/030ajmr16 Royal Society for the Conservation of Nature'),
(69533, 'https://ror.org/0192srs23', 'en', 1, 'https://ror.org/0192srs23 Caribbean Electric Utility Services Corporation'),
(69534, 'https://ror.org/0373nkv83', 'en', 1, 'https://ror.org/0373nkv83 The Soar Foundation'),
(69535, 'https://ror.org/02h4ptt90', 'en', 1, 'https://ror.org/02h4ptt90 Taiwan Miaoli District Court č‡ŗē£č‹—ę —åœ°ę–¹ę³•é™¢'),
(69536, 'https://ror.org/05t61hc94', 'en', 1, 'https://ror.org/05t61hc94 The Center for Victims of Torture'),
(69537, 'https://ror.org/0045hsd50', 'en', 1, 'https://ror.org/0045hsd50 United States Educational Foundation in Pakistan'),
(69538, 'https://ror.org/006gdfw37', 'en', 1, 'https://ror.org/006gdfw37 Southern Association of Colleges and Schools'),
(69539, 'https://ror.org/01h5wyd82', 'en', 1, 'https://ror.org/01h5wyd82 Taiwan Public Television Service Foundation č²”åœ˜ę³•äŗŗå…¬å…±é›»č¦–ę–‡åŒ–äŗ‹ę„­åŸŗé‡‘ęœƒ'),
(69540, 'https://ror.org/02jv6dk34', 'en', 1, 'https://ror.org/02jv6dk34 Southern Environmental Law Center'),
(69541, 'https://ror.org/04qbfzp68', 'en', 1, 'https://ror.org/04qbfzp68 Centre for Child Evaluation & Teaching Ł…Ų±ŁƒŲ² ŲŖŁ‚ŁˆŁŠŁ… ŁˆŲŖŲ¹Ł„ŁŠŁ… الطفل'),
(69542, 'https://ror.org/00szj4f14', 'en', 1, 'https://ror.org/00szj4f14 Austrumeiropas Politikas Pētījumu Centrs Centre for Eastern European Policy Studies'),
(69543, 'https://ror.org/05pbk0158', 'en', 1, 'https://ror.org/05pbk0158 Taiwan Shilin District Prosecutors Office č‡ŗē£å£«ęž—åœ°ę–¹ęŖ¢åÆŸē½²'),
(69544, 'https://ror.org/01kde9c12', 'en', 1, 'https://ror.org/01kde9c12 Council on Higher Education'),
(69545, 'https://ror.org/00rcv1209', 'en', 1, 'https://ror.org/00rcv1209 The Crucible'),
(69546, 'https://ror.org/01yt2xt13', 'en', 1, 'https://ror.org/01yt2xt13 Youth Junction'),
(69547, 'https://ror.org/03xzzpw64', 'en', 1, 'https://ror.org/03xzzpw64 Delegation of the European Union to the Kyrgyz Republic'),
(69548, 'https://ror.org/00p9qs658', 'en', 1, 'https://ror.org/00p9qs658 Teller Madsen'),
(69549, 'https://ror.org/00nnrh863', 'en', 1, 'https://ror.org/00nnrh863 Tajik State Institute of Languages Š”ŠžŠŠ˜ŠØŠšŠŠ”ŠŠ˜ Š”ŠŠ’Š›ŠŠ¢Š˜Š˜ Š—ŠŠ‘ŠžŠ©ŠžŠ˜ тоГикистон БА номи сотим Š£Š›Š£Š“Š—ŠžŠ”Š'),
(69550, 'https://ror.org/01gf4c669', 'en', 1, 'https://ror.org/01gf4c669 The Elizabeth Foundation for the Arts'),
(69551, 'https://ror.org/0447ftg13', 'no_lang_code', 1, 'https://ror.org/0447ftg13 GEDI Gruppo Editoriale (Italy) Gruppo Editoriale L''Espresso'),
(69552, 'https://ror.org/01qc0qt89', 'en', 1, 'https://ror.org/01qc0qt89 Archiv VýtvarnĆ©ho UměnĆ­ The Fine Art Archive'),
(69553, 'https://ror.org/04yxq0914', 'no_lang_code', 1, 'https://ror.org/04yxq0914 Nexstar Media Group (United States)'),
(69554, 'https://ror.org/01rmwzy37', 'no_lang_code', 1, 'https://ror.org/01rmwzy37 Digital First Media (United States)'),
(69555, 'https://ror.org/05tbx9d85', 'no_lang_code', 1, 'https://ror.org/05tbx9d85 Wijeya Newspapers (Sri Lanka)'),
(69556, 'https://ror.org/04aywmt72', 'es', 1, 'https://ror.org/04aywmt72 Fundación Naturaleza y Hombre'),
(69557, 'https://ror.org/05cz09y50', 'no_lang_code', 1, 'https://ror.org/05cz09y50 Yomiuri Group (Japan) čŖ­å£²ę–°čž'),
(69558, 'https://ror.org/032xxp947', 'en', 1, 'https://ror.org/032xxp947 Geo Explore Foundation'),
(69559, 'https://ror.org/02qa6e442', 'no_lang_code', 1, 'https://ror.org/02qa6e442 Men-Tsee-Khang'),
(69560, 'https://ror.org/03718pw44', 'en', 1, 'https://ror.org/03718pw44 The Hindu Group (India)'),
(69561, 'https://ror.org/01mb4vz12', 'en', 1, 'https://ror.org/01mb4vz12 Tripura State Pollution Control Board'),
(69562, 'https://ror.org/01mb5fa95', 'en', 1, 'https://ror.org/01mb5fa95 Institute of Modern Knowledge named after A.M. Shirokova Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ ŃŃƒŃ‡Š°ŃŠ½Ń‹Ń… Š²ŠµŠ“Š°Ńž Ń–Š¼Ń А. М. Шырокава Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ современных знаний имени А. М. Широкова'),
(69563, 'https://ror.org/03fdvjw85', 'en', 1, 'https://ror.org/03fdvjw85 Ahmad Dahlan School of Economics Sekolah Tinggi Ilmu Ekonomi Ahmad Dahlan Jakarta'),
(69564, 'https://ror.org/014femp80', 'en', 1, 'https://ror.org/014femp80 University of Trans-Disciplinary Health Sciences and Technology'),
(69565, 'https://ror.org/00hy04j04', 'en', 1, 'https://ror.org/00hy04j04 The Judicial General Council of Mongolia Монгол Улсын Шүүхийн Ерөнхий Зөвлөл'),
(69566, 'https://ror.org/03p9ccw33', 'en', 1, 'https://ror.org/03p9ccw33 American Jazz Institute'),
(69567, 'https://ror.org/01msn1v37', 'en', 1, 'https://ror.org/01msn1v37 Tostan'),
(69568, 'https://ror.org/03ytbkh39', 'en', 1, 'https://ror.org/03ytbkh39 The Arboretum at Flagstaff'),
(69569, 'https://ror.org/01hsjdk31', 'no_lang_code', 1, 'https://ror.org/01hsjdk31 McClatchy (United States)'),
(69570, 'https://ror.org/00290ns09', 'en', 1, 'https://ror.org/00290ns09 SociĆ©tĆ© des Eiders de l’Arctique The Arctic Eider Society'),
(69571, 'https://ror.org/02yqvqf05', 'en', 1, 'https://ror.org/02yqvqf05 Tranby National Indigenous Adult Education and Training'),
(69572, 'https://ror.org/00kvy8r73', 'en', 1, 'https://ror.org/00kvy8r73 The Mountain Institute'),
(69573, 'https://ror.org/02d16vp83', 'en', 1, 'https://ror.org/02d16vp83 Biblioteka KombĆ«tare e KosovĆ«s National Library of Kosovo ŠŠ°Ń€Š¾Š“Š½Š° библиотека Косова'),
(69574, 'https://ror.org/01n6xge79', 'tr', 1, 'https://ror.org/01n6xge79 Türk Eğitim Vakfı'),
(69575, 'https://ror.org/048cscx90', 'en', 1, 'https://ror.org/048cscx90 Transparency International'),
(69576, 'https://ror.org/02wkq6598', 'no_lang_code', 1, 'https://ror.org/02wkq6598 Rezonansi įƒ įƒ”įƒ–įƒįƒœįƒįƒœįƒ”įƒ˜'),
(69577, 'https://ror.org/01gspzg10', 'no_lang_code', 1, 'https://ror.org/01gspzg10 TV Asahi (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ćƒ¬ćƒ“ęœę—„'),
(69578, 'https://ror.org/024bajv16', 'en', 1, 'https://ror.org/024bajv16 The Northwest School'),
(69579, 'https://ror.org/01m1ej943', 'en', 1, 'https://ror.org/01m1ej943 United Nations Children''s Fund Kosovo'),
(69580, 'https://ror.org/02facmr33', 'en', 1, 'https://ror.org/02facmr33 Toi Whakaari: NZ Drama School'),
(69581, 'https://ror.org/05e7atb82', 'en', 1, 'https://ror.org/05e7atb82 Directorate of Scheduled Tribes Development Department'),
(69582, 'https://ror.org/00mhw7g56', 'no_lang_code', 1, 'https://ror.org/00mhw7g56 Tulana'),
(69583, 'https://ror.org/021rrz441', 'en', 1, 'https://ror.org/021rrz441 BMCC Tribeca Performing Arts Center'),
(69584, 'https://ror.org/043c1f957', 'en', 1, 'https://ror.org/043c1f957 Union of Economists of Turkmenistan'),
(69585, 'https://ror.org/00tsh7c40', 'en', 1, 'https://ror.org/00tsh7c40 Ukrainian Association of Specialists on Overcoming the Consequences of Traumatic Events'),
(69586, 'https://ror.org/05kjkha92', 'en', 1, 'https://ror.org/05kjkha92 University Professional and Continuing Education Association'),
(69587, 'https://ror.org/018h4tb29', 'no_lang_code', 1, 'https://ror.org/018h4tb29 Ivan Honchar Museum Музей Івана Гончара'),
(69588, 'https://ror.org/02y0c7m95', 'en', 1, 'https://ror.org/02y0c7m95 United Nations University Institute on Computing and Society čÆåˆåœ‹å¤§å­øčØˆē®—čˆ‡ē¤¾ęœƒē ”ē©¶ę‰€'),
(69589, 'https://ror.org/00033n668', 'en', 1, 'https://ror.org/00033n668 Universiteti pƫr Biznes dhe Teknologji University for Business and Technology'),
(69590, 'https://ror.org/02jyhs326', 'en', 1, 'https://ror.org/02jyhs326 Ukrainian National Museum'),
(69591, 'https://ror.org/02skwfk85', 'en', 1, 'https://ror.org/02skwfk85 United States Court of Appeals for the Ninth Circuit'),
(69592, 'https://ror.org/03fmbdf82', 'en', 1, 'https://ror.org/03fmbdf82 United States Court of Appeals for the Seventh Circuit'),
(69593, 'https://ror.org/01ndq3682', 'en', 1, 'https://ror.org/01ndq3682 United States Courts'),
(69594, 'https://ror.org/00ycry713', 'en', 1, 'https://ror.org/00ycry713 TrĘ°į»ng ĐẔi Hį»c TĆ i ChĆ­nh - Marketing University of Finance - Marketing'),
(69595, 'https://ror.org/011tecf62', 'fr', 1, 'https://ror.org/011tecf62 UniversitƩ des Lettres et des Sciences Humaines de Bamako'),
(69596, 'https://ror.org/04ez8az68', 'en', 1, 'https://ror.org/04ez8az68 University of Swabi ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŲµŁˆŲ§ŲØŪŒā€¬ā€Ž'),
(69597, 'https://ror.org/03rqs0g29', 'en', 1, 'https://ror.org/03rqs0g29 Hį»™i NhĆ  bĆ”o Việt Nam Vietnam Journalists Association'),
(69598, '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'),
(69599, 'https://ror.org/030rrr070', 'en', 1, 'https://ror.org/030rrr070 West African Research Center'),
(69600, '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'),
(69601, 'https://ror.org/058yy5a17', 'en', 1, 'https://ror.org/058yy5a17 Urban Justice Center'),
(69602, 'https://ror.org/04ys74c57', 'en', 1, 'https://ror.org/04ys74c57 Western States Center'),
(69603, 'https://ror.org/00zbqep42', 'en', 1, 'https://ror.org/00zbqep42 U.S. Embassy in Burma'),
(69604, 'https://ror.org/01wag9e37', 'en', 1, 'https://ror.org/01wag9e37 Westford Academy'),
(69605, 'https://ror.org/05pyyqe62', 'no_lang_code', 1, 'https://ror.org/05pyyqe62 Voice of America (United States)'),
(69606, 'https://ror.org/02d6ntk65', 'en', 1, 'https://ror.org/02d6ntk65 Whitecliffe College of Arts and Design'),
(69607, 'https://ror.org/0412t9j29', 'no_lang_code', 1, 'https://ror.org/0412t9j29 Walker-Moffat (United States)'),
(69608, 'https://ror.org/03p8djp35', 'no_lang_code', 1, 'https://ror.org/03p8djp35 Uttarakhand Seva Nidhi Paryavaran Shiksha Sansthan'),
(69609, 'https://ror.org/03hensb66', 'en', 1, 'https://ror.org/03hensb66 Witness'),
(69610, 'https://ror.org/03b9dsq97', 'en', 1, 'https://ror.org/03b9dsq97 Xcellon School of Business'),
(69611, 'https://ror.org/05a0w0e26', 'en', 1, 'https://ror.org/05a0w0e26 Washington Glass School'),
(69612, 'https://ror.org/03v0pfp89', 'en', 1, 'https://ror.org/03v0pfp89 WATCH'),
(69613, 'https://ror.org/0033qx680', 'fi', 1, 'https://ror.org/0033qx680 Vamia'),
(69614, '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)'),
(69615, 'https://ror.org/00xm1m223', 'no_lang_code', 1, 'https://ror.org/00xm1m223 The Washington Times (United States)'),
(69616, 'https://ror.org/03mr6bx04', 'en', 1, 'https://ror.org/03mr6bx04 Zayed Higher Organization for Humanitarian Care and Special Needs Ų³Ų³Ų© زايد Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł…Ų¤Ų³Ų³Ų© زايد Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų±Ų¹Ų§ŁŠŲ© Ų§Ł„Ų„Ł†Ų³Ų§Ł†ŁŠŲ© ŁˆŲ§Ł„Ų„Ų­ŲŖŁŠŲ§Ų¬Ų§ŲŖ الخاصة'),
(69617, 'https://ror.org/01wze2x85', 'en', 1, 'https://ror.org/01wze2x85 Watsonville Community Hospital'),
(69618, 'https://ror.org/03ham4v40', 'it', 1, 'https://ror.org/03ham4v40 Opificio delle Pietre Dure'),
(69619, 'https://ror.org/04fj96439', 'no_lang_code', 1, 'https://ror.org/04fj96439 Vashon Partners (United States)'),
(69620, 'https://ror.org/03xvcse61', 'es', 1, 'https://ror.org/03xvcse61 Vasos Comunicantes'),
(69621, 'https://ror.org/02nnx0145', 'en', 1, 'https://ror.org/02nnx0145 Ekaterinburg Academy of Contemporary Art Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ современного ŠøŃŠŗŃƒŃŃŃ‚ва'),
(69622, 'https://ror.org/02w00g107', 'en', 1, 'https://ror.org/02w00g107 World Education Services'),
(69623, 'https://ror.org/03ntwd790', 'en', 1, 'https://ror.org/03ntwd790 Xavier Institute of Communications ą¤œą¤¼ą„‡ą¤µą¤æą¤Æą¤° ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤•ą¤®ą„ą¤Æą„ą¤Øą¤æą¤•ą„‡ą¤¶ą¤Øą„ą¤ø'),
(69624, 'https://ror.org/01sz34q98', 'en', 1, 'https://ror.org/01sz34q98 Anciens Combattants Canada Veterans Affairs Canada'),
(69625, 'https://ror.org/00xq4r679', 'en', 1, 'https://ror.org/00xq4r679 Veterinarians Without Borders Vétérinaires Sans Frontières'),
(69626, 'https://ror.org/00nn27y59', 'en', 1, 'https://ror.org/00nn27y59 World Policy Institute'),
(69627, '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)'),
(69628, 'https://ror.org/01cc0qc38', 'en', 1, 'https://ror.org/01cc0qc38 Victorian Bar'),
(69629, 'https://ror.org/05jh28309', 'en', 1, 'https://ror.org/05jh28309 Youth Development Administration é’å¹“ē™¼å±•ē½²'),
(69630, 'https://ror.org/009njsq50', 'en', 1, 'https://ror.org/009njsq50 Yunnan Vocational College of Mechanical and Electrical Technology äŗ‘å—ęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(69631, 'https://ror.org/04vkkc603', 'en', 1, 'https://ror.org/04vkkc603 Zambia National Broadcasting Corporation'),
(69632, 'https://ror.org/01dashf18', 'en', 1, 'https://ror.org/01dashf18 Wuhan College'),
(69633, 'https://ror.org/00244rn76', 'en', 1, 'https://ror.org/00244rn76 Zanzibar School of Health'),
(69634, 'https://ror.org/00pf88j43', 'no_lang_code', 1, 'https://ror.org/00pf88j43 WilderShares (United States)'),
(69635, 'https://ror.org/04ejzqx24', 'en', 1, 'https://ror.org/04ejzqx24 Team Restoration Ministries'),
(69636, 'https://ror.org/04fvg7665', 'en', 1, 'https://ror.org/04fvg7665 State Institute of Cultural Heritage of the Peoples of Turkmenistan Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½Š¾Š³Š¾ Š½Š°ŃŠ»ŠµŠ“ŠøŃ нароГов Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŠøŃŃ‚ана'),
(69637, 'https://ror.org/054zw5g61', 'de', 1, 'https://ror.org/054zw5g61 Jesuiten Jesuitenkolleg'),
(69638, 'https://ror.org/04e7x9x31', 'en', 1, 'https://ror.org/04e7x9x31 Open Acting Academy'),
(69639, 'https://ror.org/04yk11f14', 'en', 1, 'https://ror.org/04yk11f14 Tibetan Academy of Social Science č„æč—č‡Ŗę²»åŒŗē¤¾ä¼šē§‘å­¦é™¢'),
(69640, 'https://ror.org/054z0bn29', 'en', 1, 'https://ror.org/054z0bn29 Austrian Foundation for Development Research Ɩsterreichische Forschungsstiftung für Internationale Entwicklung'),
(69641, 'https://ror.org/03xa44945', 'en', 1, 'https://ror.org/03xa44945 Bavarian National Museum Bayerisches Nationalmuseum'),
(69642, 'https://ror.org/044889x78', 'de', 1, 'https://ror.org/044889x78 Kommission für Geschichte und Kultur der Deutschen in Südosteuropa'),
(69643, 'https://ror.org/05prp0x93', 'no_lang_code', 1, 'https://ror.org/05prp0x93 Viscovery Software (Austria)'),
(69644, 'https://ror.org/004z5ps61', 'de', 1, 'https://ror.org/004z5ps61 Gesundheitszentrum Oberndorf'),
(69645, 'https://ror.org/04h54m622', 'de', 1, 'https://ror.org/04h54m622 Gemeinschaftsklinikum Mittelrhein'),
(69646, 'https://ror.org/039r16z31', 'no_lang_code', 1, 'https://ror.org/039r16z31 Stratec (Germany)'),
(69647, 'https://ror.org/04ddadw63', 'en', 1, 'https://ror.org/04ddadw63 Vienna Institute for Nature Conservation & Analyses'),
(69648, 'https://ror.org/036y1an55', 'no_lang_code', 1, 'https://ror.org/036y1an55 Keysight Technologies (Austria)'),
(69649, 'https://ror.org/05rtd6p98', 'de', 1, 'https://ror.org/05rtd6p98 Gespag'),
(69650, 'https://ror.org/00qsjqq12', 'en', 1, 'https://ror.org/00qsjqq12 Greenland National Museum & Archives Nunatta Katersugaasivia Allagaateqarfialu'),
(69651, 'https://ror.org/02m8wcg72', 'da', 1, 'https://ror.org/02m8wcg72 Kroppedal Museum'),
(69652, 'https://ror.org/03gg0m324', 'en', 1, 'https://ror.org/03gg0m324 Danish Institute at Athens Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ της Δανίας ĻƒĻ„Ī·Ī½ Αθήνα'),
(69653, 'https://ror.org/05pzd7w96', 'en', 1, 'https://ror.org/05pzd7w96 Asiaq Greenland Survey'),
(69654, 'https://ror.org/0102cs330', 'da', 1, 'https://ror.org/0102cs330 Landsorganisation af Kvindekrisecentre'),
(69655, 'https://ror.org/012pegt90', 'it', 1, 'https://ror.org/012pegt90 Det Danske Institut i Rom - Accademia di Danimarca'),
(69656, 'https://ror.org/04sw0cd90', 'no_lang_code', 1, 'https://ror.org/04sw0cd90 Det Kongelige Nordiske Oldskriftselskab Royal Nordic Society of Antiquaries (Denmark)'),
(69657, 'https://ror.org/03xts3v71', 'da', 1, 'https://ror.org/03xts3v71 Orionplanetarium'),
(69658, 'https://ror.org/04fnvtv49', 'da', 1, 'https://ror.org/04fnvtv49 Tycho Brahe Planetarium'),
(69659, 'https://ror.org/02paymf25', 'no_lang_code', 1, 'https://ror.org/02paymf25 VeterinƦrmedicinsk Industriforening'),
(69660, 'https://ror.org/02a91xk32', 'da', 1, 'https://ror.org/02a91xk32 Dansk Filosofisk Selskab'),
(69661, 'https://ror.org/00mqaf442', 'no_lang_code', 1, 'https://ror.org/00mqaf442 GTS (Denmark)'),
(69662, 'https://ror.org/03hqq6242', 'es', 1, 'https://ror.org/03hqq6242 Plan Ceibal'),
(69663, 'https://ror.org/05rxmkq09', 'es', 1, 'https://ror.org/05rxmkq09 Fundación Ciencias Exactas y Naturales'),
(69664, 'https://ror.org/01tz3nb36', 'da', 1, 'https://ror.org/01tz3nb36 Museum Salling'),
(69665, 'https://ror.org/00qxn6s10', 'no_lang_code', 1, 'https://ror.org/00qxn6s10 Nordic BioAnalyis (Sweden)'),
(69666, 'https://ror.org/04n4nnv87', 'no_lang_code', 1, 'https://ror.org/04n4nnv87 Graphensic (Sweden)'),
(69667, 'https://ror.org/00za70p44', 'da', 1, 'https://ror.org/00za70p44 Museum SĆønderjylland'),
(69668, 'https://ror.org/00fkta435', 'no_lang_code', 1, 'https://ror.org/00fkta435 1928 Diagnostics (Sweden)'),
(69669, 'https://ror.org/012rxy285', 'no_lang_code', 1, 'https://ror.org/012rxy285 Greenely (Sweden)'),
(69670, 'https://ror.org/00g71t343', 'no_lang_code', 1, 'https://ror.org/00g71t343 Greinon (Sweden)'),
(69671, 'https://ror.org/0383d6s93', 'no_lang_code', 1, 'https://ror.org/0383d6s93 Blekinge Business Incubator (Sweden)'),
(69672, 'https://ror.org/00y8fja70', 'no_lang_code', 1, 'https://ror.org/00y8fja70 Ekomarine Paint (Sweden)'),
(69673, 'https://ror.org/041pfmf98', 'no_lang_code', 1, 'https://ror.org/041pfmf98 2D Fab (Sweden)'),
(69674, 'https://ror.org/05q88x431', 'no_lang_code', 1, 'https://ror.org/05q88x431 BnearIT (Sweden)'),
(69675, 'https://ror.org/0542txc19', 'no_lang_code', 1, 'https://ror.org/0542txc19 Elforest Technologies (Sweden)'),
(69676, 'https://ror.org/04j5w9585', 'no_lang_code', 1, 'https://ror.org/04j5w9585 3Eflow (Sweden)'),
(69677, 'https://ror.org/0009sdg88', 'no_lang_code', 1, 'https://ror.org/0009sdg88 Elways (Sweden)'),
(69678, 'https://ror.org/02ge9wf73', 'no_lang_code', 1, 'https://ror.org/02ge9wf73 Juteborg (Sweden)'),
(69679, 'https://ror.org/05p23jt70', 'no_lang_code', 1, 'https://ror.org/05p23jt70 Endovab Endovascular Development (Sweden)'),
(69680, 'https://ror.org/011jh0j93', 'no_lang_code', 1, 'https://ror.org/011jh0j93 4IT I (Sweden)'),
(69681, 'https://ror.org/04zv6cm02', 'no_lang_code', 1, 'https://ror.org/04zv6cm02 Dignitana (Sweden)'),
(69682, 'https://ror.org/00efjzq30', 'sv', 1, 'https://ror.org/00efjzq30 Kalmar LƤns Museum'),
(69683, 'https://ror.org/004jq5c54', 'no_lang_code', 1, 'https://ror.org/004jq5c54 Brighter (Sweden)'),
(69684, 'https://ror.org/01b0e9p06', 'en', 1, 'https://ror.org/01b0e9p06 East Sweden Energy Agency Energikontoret Ɩstergƶtland'),
(69685, 'https://ror.org/00n29yx59', 'no_lang_code', 1, 'https://ror.org/00n29yx59 Brockmann Geomatics (Sweden)'),
(69686, 'https://ror.org/02actgg20', 'no_lang_code', 1, 'https://ror.org/02actgg20 Adroit Science (Sweden)'),
(69687, 'https://ror.org/05cjqhm25', 'no_lang_code', 1, 'https://ror.org/05cjqhm25 Agilent Technologies (Sweden)'),
(69688, 'https://ror.org/03stctc86', 'no_lang_code', 1, 'https://ror.org/03stctc86 EnetjƤrn Natur (Sweden)'),
(69689, 'https://ror.org/02d7ecg84', 'no_lang_code', 1, 'https://ror.org/02d7ecg84 EnginZyme (Sweden)'),
(69690, 'https://ror.org/019yfmw38', 'no_lang_code', 1, 'https://ror.org/019yfmw38 Bryne (Sweden)'),
(69691, 'https://ror.org/010gf6775', 'no_lang_code', 1, 'https://ror.org/010gf6775 Katam (Sweden)'),
(69692, 'https://ror.org/02qar2r61', 'no_lang_code', 1, 'https://ror.org/02qar2r61 Enigio Time (Sweden)'),
(69693, 'https://ror.org/0067znv39', 'no_lang_code', 1, 'https://ror.org/0067znv39 Aditus Science (Sweden)'),
(69694, 'https://ror.org/00y0mtz34', 'no_lang_code', 1, 'https://ror.org/00y0mtz34 BTB Pharma (Sweden)'),
(69695, 'https://ror.org/02tdmp521', 'no_lang_code', 1, 'https://ror.org/02tdmp521 Health Solutions (Sweden)'),
(69696, 'https://ror.org/006s9cd49', 'no_lang_code', 1, 'https://ror.org/006s9cd49 European Willow Breeding (Sweden)'),
(69697, 'https://ror.org/04yws8253', 'no_lang_code', 1, 'https://ror.org/04yws8253 BuildSafe (Sweden)'),
(69698, 'https://ror.org/03pp91130', 'no_lang_code', 1, 'https://ror.org/03pp91130 Heliospectra (Sweden)'),
(69699, 'https://ror.org/02g861y66', 'no_lang_code', 1, 'https://ror.org/02g861y66 Againity (Sweden)'),
(69700, 'https://ror.org/04htmqx50', 'no_lang_code', 1, 'https://ror.org/04htmqx50 Evispot (Sweden)'),
(69701, 'https://ror.org/04de66260', 'no_lang_code', 1, 'https://ror.org/04de66260 Burt (Sweden)'),
(69702, 'https://ror.org/02zb0z080', 'no_lang_code', 1, 'https://ror.org/02zb0z080 Expektra (Sweden)'),
(69703, 'https://ror.org/017a2g404', 'no_lang_code', 1, 'https://ror.org/017a2g404 Hexicon (Sweden)'),
(69704, 'https://ror.org/051b0xe12', 'en', 1, 'https://ror.org/051b0xe12 Byggherrarna Sverige Swedish Construction Clients'),
(69705, 'https://ror.org/0190epk64', 'no_lang_code', 1, 'https://ror.org/0190epk64 C-Green Technology (Sweden)'),
(69706, 'https://ror.org/05qd6x152', 'no_lang_code', 1, 'https://ror.org/05qd6x152 Cascade Drives (Sweden)'),
(69707, 'https://ror.org/04gwy5274', 'no_lang_code', 1, 'https://ror.org/04gwy5274 Ferroamp Elektronik (Sweden)'),
(69708, 'https://ror.org/00kgt0r22', 'no_lang_code', 1, 'https://ror.org/00kgt0r22 Studi'),
(69709, 'https://ror.org/00k2ybc23', 'no_lang_code', 1, 'https://ror.org/00k2ybc23 Cavis Technologies (Sweden)'),
(69710, 'https://ror.org/00aqt1c17', 'no_lang_code', 1, 'https://ror.org/00aqt1c17 Klaria Pharma Holding (Sweden)'),
(69711, 'https://ror.org/01szy6y70', 'no_lang_code', 1, 'https://ror.org/01szy6y70 Aili Innovations (Sweden)'),
(69712, 'https://ror.org/04054a724', 'no_lang_code', 1, 'https://ror.org/04054a724 CellProtect Nordic Pharmaceuticals (Sweden)'),
(69713, 'https://ror.org/03z0a5562', 'en', 1, 'https://ror.org/03z0a5562 Krinova Incubator & Science Park'),
(69714, 'https://ror.org/03a1ecb29', 'no_lang_code', 1, 'https://ror.org/03a1ecb29 Fidesmo (Sweden)'),
(69715, 'https://ror.org/053v58q79', 'no_lang_code', 1, 'https://ror.org/053v58q79 Chalmers Ventures (Sweden)'),
(69716, 'https://ror.org/05pwnep21', 'no_lang_code', 1, 'https://ror.org/05pwnep21 Hytton Technologies (Sweden)'),
(69717, 'https://ror.org/028pznd91', 'no_lang_code', 1, 'https://ror.org/028pznd91 Chromafora (Sweden)'),
(69718, 'https://ror.org/01qvnjw08', 'no_lang_code', 1, 'https://ror.org/01qvnjw08 Flow Neuroscience (Sweden)'),
(69719, 'https://ror.org/01bfjbb09', 'no_lang_code', 1, 'https://ror.org/01bfjbb09 Akuru Pharma (Sweden)'),
(69720, 'https://ror.org/043e6pw81', 'no_lang_code', 1, 'https://ror.org/043e6pw81 Food Radar Systems (Sweden)'),
(69721, 'https://ror.org/017ez5470', 'no_lang_code', 1, 'https://ror.org/017ez5470 I-Tech (Sweden)'),
(69722, 'https://ror.org/02zzhpq74', 'en', 1, 'https://ror.org/02zzhpq74 Kungliga Akademien fƶr de fria konsterna Royal Academy of Fine Arts'),
(69723, 'https://ror.org/05ctt1694', 'no_lang_code', 1, 'https://ror.org/05ctt1694 Iamip (Sweden)'),
(69724, 'https://ror.org/017pcb882', 'no_lang_code', 1, 'https://ror.org/017pcb882 Framtidens Fƶretag (Sweden)'),
(69725, 'https://ror.org/01mgxxq41', 'no_lang_code', 1, 'https://ror.org/01mgxxq41 Clean Motion (Sweden)'),
(69726, 'https://ror.org/02agf1x24', 'no_lang_code', 1, 'https://ror.org/02agf1x24 AlzeCure Pharma (Sweden)'),
(69727, 'https://ror.org/02acrm202', 'no_lang_code', 1, 'https://ror.org/02acrm202 Ampersand (Sweden)'),
(69728, 'https://ror.org/04crvpe09', 'en', 1, 'https://ror.org/04crvpe09 Fƶreningen Svenskt Flyg Intresse Swedish Air Transport Society'),
(69729, 'https://ror.org/01b2xn187', 'no_lang_code', 1, 'https://ror.org/01b2xn187 CloneOpt (Sweden)'),
(69730, 'https://ror.org/00bhp9x86', 'sv', 1, 'https://ror.org/00bhp9x86 Fƶreningen Universitetsholdingbolag i Sverige'),
(69731, 'https://ror.org/05wvcb507', 'en', 1, 'https://ror.org/05wvcb507 Angered Hospital Angereds NƤrsjukhus'),
(69732, 'https://ror.org/059pfgk41', 'no_lang_code', 1, 'https://ror.org/059pfgk41 International Data Group (Sweden)'),
(69733, 'https://ror.org/04s9hnr69', 'no_lang_code', 1, 'https://ror.org/04s9hnr69 Fƶretagsfabriken i Kronoberg (Sweden)'),
(69734, 'https://ror.org/0327qwp89', 'no_lang_code', 1, 'https://ror.org/0327qwp89 Annexin Pharmaceuticals (Sweden)'),
(69735, 'https://ror.org/04jd5mx11', 'no_lang_code', 1, 'https://ror.org/04jd5mx11 iGW (Sweden)'),
(69736, 'https://ror.org/02vn97859', 'en', 1, 'https://ror.org/02vn97859 Arbejdermuseet The Workers Museum'),
(69737, 'https://ror.org/00dpzpk69', 'no_lang_code', 1, 'https://ror.org/00dpzpk69 Ilya Pharma (Sweden)'),
(69738, 'https://ror.org/05s2yxq27', 'en', 1, 'https://ror.org/05s2yxq27 Funder'),
(69739, 'https://ror.org/05fp2br79', 'no_lang_code', 1, 'https://ror.org/05fp2br79 Anolytech (Sweden)'),
(69740, 'https://ror.org/01tcx0921', 'sv', 1, 'https://ror.org/01tcx0921 LƤnsstyrelsen VƤstra Gƶtalands lƤn'),
(69741, 'https://ror.org/03dqgwy22', 'sv', 1, 'https://ror.org/03dqgwy22 Funka Nu'),
(69742, 'https://ror.org/05mk38d83', 'no_lang_code', 1, 'https://ror.org/05mk38d83 Codemill (Sweden)'),
(69743, 'https://ror.org/03tvfd726', 'no_lang_code', 1, 'https://ror.org/03tvfd726 Marin Miljƶanalys Marine Environmental Analysis (Sweden)'),
(69744, 'https://ror.org/04yt64d76', 'no_lang_code', 1, 'https://ror.org/04yt64d76 Informa (Sweden)'),
(69745, 'https://ror.org/02mjvaa14', 'no_lang_code', 1, 'https://ror.org/02mjvaa14 Arctic Business Incubator (Sweden)'),
(69746, 'https://ror.org/00y0dba52', 'no_lang_code', 1, 'https://ror.org/00y0dba52 Gedea Biotech (Sweden)'),
(69747, 'https://ror.org/03fjx1y08', 'no_lang_code', 1, 'https://ror.org/03fjx1y08 Gesynta Pharma (Sweden)'),
(69748, 'https://ror.org/03nq9vg83', 'no_lang_code', 1, 'https://ror.org/03nq9vg83 Getica (Sweden)'),
(69749, 'https://ror.org/01azp7v94', 'no_lang_code', 1, 'https://ror.org/01azp7v94 Glactone Pharma (Sweden)'),
(69750, 'https://ror.org/03w343k42', 'no_lang_code', 1, 'https://ror.org/03w343k42 Gleechi (Sweden)'),
(69751, 'https://ror.org/04jn6c360', 'no_lang_code', 1, 'https://ror.org/04jn6c360 Arne Jensen (Sweden)'),
(69752, 'https://ror.org/05j2cds40', 'sv', 1, 'https://ror.org/05j2cds40 Industriella UtvecklingsCentra'),
(69753, 'https://ror.org/046s5m283', 'no_lang_code', 1, 'https://ror.org/046s5m283 Lifesize (Sweden)'),
(69754, 'https://ror.org/02pctja18', 'no_lang_code', 1, 'https://ror.org/02pctja18 Ascilion (Sweden)'),
(69755, 'https://ror.org/02q3gyw25', 'no_lang_code', 1, 'https://ror.org/02q3gyw25 Lipigon Pharmaceuticals (Sweden)'),
(69756, 'https://ror.org/00135x916', 'no_lang_code', 1, 'https://ror.org/00135x916 Inkubera (Sweden)'),
(69757, 'https://ror.org/000c5n539', 'no_lang_code', 1, 'https://ror.org/000c5n539 Exensor Technology (Sweden)'),
(69758, 'https://ror.org/053f01012', 'no_lang_code', 1, 'https://ror.org/053f01012 Globalworks (Sweden)'),
(69759, 'https://ror.org/036wb1d88', 'no_lang_code', 1, 'https://ror.org/036wb1d88 Conspiro (Sweden)'),
(69760, 'https://ror.org/00nsfc592', 'no_lang_code', 1, 'https://ror.org/00nsfc592 Atrogi (Sweden)'),
(69761, 'https://ror.org/05cwv3v76', 'no_lang_code', 1, 'https://ror.org/05cwv3v76 Gnosco (Sweden)'),
(69762, 'https://ror.org/05mrwj523', 'no_lang_code', 1, 'https://ror.org/05mrwj523 Innovation SkƄne (Sweden)'),
(69763, 'https://ror.org/01emaft25', 'no_lang_code', 1, 'https://ror.org/01emaft25 Avantherm (Sweden)'),
(69764, 'https://ror.org/035hx4w46', 'no_lang_code', 1, 'https://ror.org/035hx4w46 Bristol-Myers Squibb (Sweden)'),
(69765, 'https://ror.org/01a7xtr20', 'no_lang_code', 1, 'https://ror.org/01a7xtr20 InnoVentum (Sweden)'),
(69766, 'https://ror.org/02jvvnm32', 'no_lang_code', 1, 'https://ror.org/02jvvnm32 Cortus Energy (Sweden)'),
(69767, 'https://ror.org/05f0grh52', 'sv', 1, 'https://ror.org/05f0grh52 Avfallshantering Ɩstra Skaraborg'),
(69768, 'https://ror.org/05w5q8v72', 'no_lang_code', 1, 'https://ror.org/05w5q8v72 Create (Sweden)'),
(69769, 'https://ror.org/03akdaa97', 'no_lang_code', 1, 'https://ror.org/03akdaa97 Inossia (Sweden)'),
(69770, 'https://ror.org/03f2hv234', 'no_lang_code', 1, 'https://ror.org/03f2hv234 AVL (Sweden)'),
(69771, 'https://ror.org/03ges2v44', 'no_lang_code', 1, 'https://ror.org/03ges2v44 CytaCoat (Sweden)'),
(69772, 'https://ror.org/028k2a581', 'no_lang_code', 1, 'https://ror.org/028k2a581 Meloq (Sweden)'),
(69773, 'https://ror.org/019yq4944', 'no_lang_code', 1, 'https://ror.org/019yq4944 LumenRadio (Sweden)'),
(69774, 'https://ror.org/04qtj6724', 'no_lang_code', 1, 'https://ror.org/04qtj6724 Berge (Sweden)'),
(69775, 'https://ror.org/03qsj7h32', 'no_lang_code', 1, 'https://ror.org/03qsj7h32 Danpet (Sweden)'),
(69776, 'https://ror.org/05g6xs632', 'no_lang_code', 1, 'https://ror.org/05g6xs632 LunaLEC (Sweden)'),
(69777, 'https://ror.org/0546g4411', 'no_lang_code', 1, 'https://ror.org/0546g4411 Bergskraft Bergslagen (Sweden)'),
(69778, 'https://ror.org/02t975260', 'no_lang_code', 1, 'https://ror.org/02t975260 Metrum (Sweden)'),
(69779, 'https://ror.org/0529ngj48', 'en', 1, 'https://ror.org/0529ngj48 Big Science Suppliers Network'),
(69780, 'https://ror.org/04t8wt911', 'no_lang_code', 1, 'https://ror.org/04t8wt911 DeviceRadio (Sweden)'),
(69781, 'https://ror.org/00k2j2d15', 'no_lang_code', 1, 'https://ror.org/00k2j2d15 Dirac Research (Sweden)'),
(69782, 'https://ror.org/00v3n0x68', 'no_lang_code', 1, 'https://ror.org/00v3n0x68 Bio-Works (Sweden)'),
(69783, 'https://ror.org/01dtngx32', 'no_lang_code', 1, 'https://ror.org/01dtngx32 Bioendev (Sweden)'),
(69784, 'https://ror.org/04tw1z259', 'no_lang_code', 1, 'https://ror.org/04tw1z259 Ideon Innovation (Sweden)'),
(69785, 'https://ror.org/01mey5f62', 'no_lang_code', 1, 'https://ror.org/01mey5f62 Meva Energy (Sweden)'),
(69786, 'https://ror.org/03w1yvq02', 'no_lang_code', 1, 'https://ror.org/03w1yvq02 PressCise (Sweden)'),
(69787, 'https://ror.org/04sdy1r02', 'no_lang_code', 1, 'https://ror.org/04sdy1r02 Lund Science (Sweden)'),
(69788, 'https://ror.org/03fb51s41', 'no_lang_code', 1, 'https://ror.org/03fb51s41 Biorecro (Sweden)'),
(69789, 'https://ror.org/05km3cw17', 'no_lang_code', 1, 'https://ror.org/05km3cw17 Prindit (Sweden)'),
(69790, 'https://ror.org/01s8h3924', 'no_lang_code', 1, 'https://ror.org/01s8h3924 Luxbright (Sweden)'),
(69791, 'https://ror.org/00a4rps73', 'no_lang_code', 1, 'https://ror.org/00a4rps73 Profu (Sweden)'),
(69792, 'https://ror.org/04fjeez29', 'no_lang_code', 1, 'https://ror.org/04fjeez29 Inuheat (Sweden)'),
(69793, 'https://ror.org/01jkn7h76', 'no_lang_code', 1, 'https://ror.org/01jkn7h76 Qamcom Research and Technology (Sweden)'),
(69794, 'https://ror.org/032qdxd79', 'no_lang_code', 1, 'https://ror.org/032qdxd79 Invisense (Sweden)'),
(69795, 'https://ror.org/051mvtt62', 'no_lang_code', 1, 'https://ror.org/051mvtt62 Maestro (Sweden)'),
(69796, 'https://ror.org/0071w5f09', 'no_lang_code', 1, 'https://ror.org/0071w5f09 Quintus Technologies (Sweden)'),
(69797, 'https://ror.org/03msnc432', 'no_lang_code', 1, 'https://ror.org/03msnc432 SpectraCure (Sweden)'),
(69798, 'https://ror.org/04s4cdp25', 'no_lang_code', 1, 'https://ror.org/04s4cdp25 QuizRR (Sweden)'),
(69799, 'https://ror.org/05y4aj433', 'no_lang_code', 1, 'https://ror.org/05y4aj433 Radarbolaget (Sweden)'),
(69800, 'https://ror.org/02cfw5538', 'no_lang_code', 1, 'https://ror.org/02cfw5538 Spectronic (Sweden)'),
(69801, 'https://ror.org/02cqajj62', 'sv', 1, 'https://ror.org/02cqajj62 Marin Biogas'),
(69802, 'https://ror.org/048c0wq03', 'no_lang_code', 1, 'https://ror.org/048c0wq03 Era (Sweden)'),
(69803, 'https://ror.org/02yx0p576', 'no_lang_code', 1, 'https://ror.org/02yx0p576 Rantor (Sweden)'),
(69804, 'https://ror.org/01j5kbq18', 'no_lang_code', 1, 'https://ror.org/01j5kbq18 EcoTech (Sweden)'),
(69805, 'https://ror.org/01wvgx920', 'no_lang_code', 1, 'https://ror.org/01wvgx920 Mavenoid (Sweden)'),
(69806, 'https://ror.org/05ch53314', 'no_lang_code', 1, 'https://ror.org/05ch53314 Mevia (Sweden)'),
(69807, 'https://ror.org/01fbez228', 'no_lang_code', 1, 'https://ror.org/01fbez228 Sprint Bioscience (Sweden)'),
(69808, 'https://ror.org/01jzvc390', 'no_lang_code', 1, 'https://ror.org/01jzvc390 Sweden Water Research (Sweden)'),
(69809, 'https://ror.org/03zxqg324', 'no_lang_code', 1, 'https://ror.org/03zxqg324 ReceptorPharma (Sweden)'),
(69810, 'https://ror.org/02agte379', 'sv', 1, 'https://ror.org/02agte379 Medeon'),
(69811, 'https://ror.org/00nc5nv80', 'no_lang_code', 1, 'https://ror.org/00nc5nv80 Midsummer (Sweden)'),
(69812, 'https://ror.org/05k5x9q51', 'no_lang_code', 1, 'https://ror.org/05k5x9q51 Medfield Diagnostics (Sweden)'),
(69813, 'https://ror.org/0147mxz16', 'no_lang_code', 1, 'https://ror.org/0147mxz16 Swedish Adrenaline (Sweden)'),
(69814, 'https://ror.org/04hzsme37', 'no_lang_code', 1, 'https://ror.org/04hzsme37 Medituner (Sweden)'),
(69815, 'https://ror.org/04tbskb64', 'no_lang_code', 1, 'https://ror.org/04tbskb64 Mimerse (Sweden)'),
(69816, 'https://ror.org/001v02q16', 'no_lang_code', 1, 'https://ror.org/001v02q16 RenFuel (Sweden)'),
(69817, 'https://ror.org/026q0wa78', 'en', 1, 'https://ror.org/026q0wa78 Uppsala Innovation Centre'),
(69818, 'https://ror.org/05mt2aq13', 'no_lang_code', 1, 'https://ror.org/05mt2aq13 Mimsi Materials (Sweden)'),
(69819, 'https://ror.org/00d2cdk21', 'no_lang_code', 1, 'https://ror.org/00d2cdk21 ReVibe Energy (Sweden)'),
(69820, 'https://ror.org/059dzmv47', 'no_lang_code', 1, 'https://ror.org/059dzmv47 UVElite (Sweden)'),
(69821, 'https://ror.org/027jtmq90', 'en', 1, 'https://ror.org/027jtmq90 Statens musikverk Swedish Performing Arts Agency'),
(69822, 'https://ror.org/017t6mt61', 'sv', 1, 'https://ror.org/017t6mt61 VA Syd'),
(69823, 'https://ror.org/05qbgtq98', 'no_lang_code', 1, 'https://ror.org/05qbgtq98 Minc (Sweden)'),
(69824, 'https://ror.org/057qey752', 'no_lang_code', 1, 'https://ror.org/057qey752 Sweheat & Cooling (Sweden)'),
(69825, 'https://ror.org/041v8ha59', 'sv', 1, 'https://ror.org/041v8ha59 Adopticum'),
(69826, 'https://ror.org/006de3561', 'no_lang_code', 1, 'https://ror.org/006de3561 Mindconnect (Sweden)'),
(69827, 'https://ror.org/013h5z577', 'en', 1, 'https://ror.org/013h5z577 Riksidrottsfƶrbundet Swedish Sports Confederation'),
(69828, 'https://ror.org/0566x7w31', 'sv', 1, 'https://ror.org/0566x7w31 BrƤcke Diakoni'),
(69829, 'https://ror.org/04ms3vt90', 'no_lang_code', 1, 'https://ror.org/04ms3vt90 Ten Medical Design (Sweden)'),
(69830, 'https://ror.org/05azvrx95', 'sv', 1, 'https://ror.org/05azvrx95 Carlanderska Sjukhuset'),
(69831, 'https://ror.org/00rjqge87', 'sv', 1, 'https://ror.org/00rjqge87 Tesch-Ɩvermo stiftelsen'),
(69832, 'https://ror.org/03rx9tc73', 'sv', 1, 'https://ror.org/03rx9tc73 VƤsttrafik'),
(69833, 'https://ror.org/03xg97b41', 'en', 1, 'https://ror.org/03xg97b41 Mind Music Labs'),
(69834, 'https://ror.org/0558qfp88', 'no_lang_code', 1, 'https://ror.org/0558qfp88 Veridict (Sweden)'),
(69835, 'https://ror.org/04bb5z418', 'no_lang_code', 1, 'https://ror.org/04bb5z418 Molecular Fingerprint (Sweden)'),
(69836, 'https://ror.org/00mkdy143', 'no_lang_code', 1, 'https://ror.org/00mkdy143 Vicore Pharma (Sweden)'),
(69837, 'https://ror.org/05sbd5m51', 'no_lang_code', 1, 'https://ror.org/05sbd5m51 Saintpro (Sweden)'),
(69838, 'https://ror.org/033pj6j32', 'en', 1, 'https://ror.org/033pj6j32 Konjunkturinstitutet National Institute of Economic Research'),
(69839, 'https://ror.org/001v0e970', 'no_lang_code', 1, 'https://ror.org/001v0e970 Movexum (Sweden)'),
(69840, 'https://ror.org/021e6jr16', 'sv', 1, 'https://ror.org/021e6jr16 Vetenskap I Skolan'),
(69841, 'https://ror.org/04y06jx93', 'en', 1, 'https://ror.org/04y06jx93 Cleantech Scandinavia'),
(69842, 'https://ror.org/05j8hq318', 'no_lang_code', 1, 'https://ror.org/05j8hq318 Sdiptech (Sweden)'),
(69843, 'https://ror.org/02f85ye32', 'no_lang_code', 1, 'https://ror.org/02f85ye32 Vultus (Sweden)'),
(69844, 'https://ror.org/017vb4h92', 'no_lang_code', 1, 'https://ror.org/017vb4h92 Seabased (Sweden)'),
(69845, 'https://ror.org/02vywq223', 'no_lang_code', 1, 'https://ror.org/02vywq223 Thinfilm (Sweden)'),
(69846, 'https://ror.org/05hvdj453', 'no_lang_code', 1, 'https://ror.org/05hvdj453 Semcon (Sweden)'),
(69847, 'https://ror.org/00h2xqq06', 'no_lang_code', 1, 'https://ror.org/00h2xqq06 Nano Control (Sweden)'),
(69848, 'https://ror.org/01bqshg74', 'no_lang_code', 1, 'https://ror.org/01bqshg74 Watty (Sweden)'),
(69849, 'https://ror.org/0540yt557', 'no_lang_code', 1, 'https://ror.org/0540yt557 Sensefarm (Sweden)'),
(69850, 'https://ror.org/05h7w4033', 'no_lang_code', 1, 'https://ror.org/05h7w4033 Wematter (Sweden)'),
(69851, 'https://ror.org/03mpmj050', 'no_lang_code', 1, 'https://ror.org/03mpmj050 Torkapparater (Sweden)'),
(69852, 'https://ror.org/03y7t4596', 'no_lang_code', 1, 'https://ror.org/03y7t4596 Sigrid Therapeutics (Sweden)'),
(69853, 'https://ror.org/03preh705', 'sv', 1, 'https://ror.org/03preh705 WeMind'),
(69854, 'https://ror.org/05f8krt68', 'en', 1, 'https://ror.org/05f8krt68 Sigtuna Foundation Sigtunastiftelsen'),
(69855, 'https://ror.org/04eh4dc20', 'no_lang_code', 1, 'https://ror.org/04eh4dc20 Winfoor (Sweden)'),
(69856, 'https://ror.org/05wmkk652', 'no_lang_code', 1, 'https://ror.org/05wmkk652 Sioo Wood Protection (Sweden)'),
(69857, 'https://ror.org/0020g8f52', 'sv', 1, 'https://ror.org/0020g8f52 Datorn I Utbildningen'),
(69858, 'https://ror.org/005b2xe71', 'no_lang_code', 1, 'https://ror.org/005b2xe71 WntResearch (Sweden)'),
(69859, 'https://ror.org/050cfca74', 'en', 1, 'https://ror.org/050cfca74 World Bioenergy Association'),
(69860, 'https://ror.org/05pq20j14', 'en', 1, 'https://ror.org/05pq20j14 National Museums of World Culture VƤrldskulturmuseerna'),
(69861, 'https://ror.org/024ng9141', 'en', 1, 'https://ror.org/024ng9141 Transport Analysis'),
(69862, 'https://ror.org/05mryp106', 'no_lang_code', 1, 'https://ror.org/05mryp106 Sixera Pharma (Sweden)'),
(69863, 'https://ror.org/055dkvv33', 'no_lang_code', 1, 'https://ror.org/055dkvv33 Zenergy (Sweden)'),
(69864, 'https://ror.org/02dpfs211', 'sv', 1, 'https://ror.org/02dpfs211 Svenska NationalkommittƩn fƶr kemi'),
(69865, 'https://ror.org/045neh952', 'no_lang_code', 1, 'https://ror.org/045neh952 Zenicor Medical Systems (Sweden)'),
(69866, 'https://ror.org/0173e2k48', 'no_lang_code', 1, 'https://ror.org/0173e2k48 Sol Voltaics (Sweden)'),
(69867, 'https://ror.org/059cetm58', 'no_lang_code', 1, 'https://ror.org/059cetm58 Uniswed (Sweden)'),
(69868, 'https://ror.org/034bnq460', 'no_lang_code', 1, 'https://ror.org/034bnq460 Solelia Greentech (Sweden)'),
(69869, 'https://ror.org/05fn6pg91', 'sv', 1, 'https://ror.org/05fn6pg91 Forska Sverige Research!Sweden'),
(69870, 'https://ror.org/00vf59397', 'no_lang_code', 1, 'https://ror.org/00vf59397 Neosense Technologies (Sweden)'),
(69871, 'https://ror.org/01s1h9f22', 'no_lang_code', 1, 'https://ror.org/01s1h9f22 SoletAer (Sweden)'),
(69872, 'https://ror.org/04f8bya54', 'sv', 1, 'https://ror.org/04f8bya54 Fryshuset'),
(69873, 'https://ror.org/000dpyn16', 'no_lang_code', 1, 'https://ror.org/000dpyn16 Zenuity (Sweden)'),
(69874, 'https://ror.org/05x67xq17', 'no_lang_code', 1, 'https://ror.org/05x67xq17 NeoZeo (Sweden)'),
(69875, 'https://ror.org/05mke6x94', 'en', 1, 'https://ror.org/05mke6x94 HƄll Sverige Rent Keep Sweden Tidy Foundation'),
(69876, 'https://ror.org/05wqvch42', 'no_lang_code', 1, 'https://ror.org/05wqvch42 Double Bond Pharmaceutical (Sweden)'),
(69877, 'https://ror.org/01gat1y32', 'no_lang_code', 1, 'https://ror.org/01gat1y32 No Picnic (Sweden)'),
(69878, 'https://ror.org/04zzb1s61', 'no_lang_code', 1, 'https://ror.org/04zzb1s61 Dyenamo (Sweden)'),
(69879, 'https://ror.org/0360xnj30', 'no_lang_code', 1, 'https://ror.org/0360xnj30 Strainlabs (Sweden)'),
(69880, 'https://ror.org/02b9c3t28', 'no_lang_code', 1, 'https://ror.org/02b9c3t28 Solibro Research (Sweden)'),
(69881, 'https://ror.org/02nwxkn91', 'no_lang_code', 1, 'https://ror.org/02nwxkn91 Solkompaniet (Sweden)'),
(69882, 'https://ror.org/01p35vs79', 'no_lang_code', 1, 'https://ror.org/01p35vs79 Echandia Marine (Sweden)'),
(69883, 'https://ror.org/0327fb755', 'no_lang_code', 1, 'https://ror.org/0327fb755 Heat Management (Sweden)'),
(69884, 'https://ror.org/0261y3y56', 'sv', 1, 'https://ror.org/0261y3y56 Konsthantverkscentrum'),
(69885, 'https://ror.org/01n2ss077', 'no_lang_code', 1, 'https://ror.org/01n2ss077 Stri (Sweden)'),
(69886, 'https://ror.org/01xwy3t39', 'no_lang_code', 1, 'https://ror.org/01xwy3t39 Northvolt (Sweden)'),
(69887, 'https://ror.org/002rnrf69', 'no_lang_code', 1, 'https://ror.org/002rnrf69 NORDIC BioEngineering (Sweden)'),
(69888, 'https://ror.org/02sjm2q41', 'no_lang_code', 1, 'https://ror.org/02sjm2q41 Ecofiltration (Sweden)'),
(69889, 'https://ror.org/02svwkx06', 'sv', 1, 'https://ror.org/02svwkx06 Svebio Svenska Bioenergifƶreningen'),
(69890, 'https://ror.org/01m8g2q39', 'no_lang_code', 1, 'https://ror.org/01m8g2q39 Noviga Research (Sweden)'),
(69891, 'https://ror.org/01709et08', 'sv', 1, 'https://ror.org/01709et08 Ɩstergƶtland Museum');
INSERT INTO `rors` VALUES
(69892, 'https://ror.org/0013pnn31', 'no_lang_code', 1, 'https://ror.org/0013pnn31 Ocean Harvesting Technologies (Sweden)'),
(69893, 'https://ror.org/0123m1q26', 'no_lang_code', 1, 'https://ror.org/0123m1q26 NordvƤstra SkƄnes Vatten och Avlopp (Sweden)'),
(69894, 'https://ror.org/00r492z79', 'no_lang_code', 1, 'https://ror.org/00r492z79 OikosLab Future Solutions (Sweden)'),
(69895, 'https://ror.org/0407kdz58', 'no_lang_code', 1, 'https://ror.org/0407kdz58 Lexplore (Sweden)'),
(69896, 'https://ror.org/014wwcs49', 'en', 1, 'https://ror.org/014wwcs49 Naturskyddsfƶreningen Swedish Society for Nature Conservation'),
(69897, 'https://ror.org/05fsww483', 'sv', 1, 'https://ror.org/05fsww483 Sunderby Folkhƶgskola'),
(69898, 'https://ror.org/00bdk5051', 'no_lang_code', 1, 'https://ror.org/00bdk5051 Polar Light Technologies (Sweden)'),
(69899, 'https://ror.org/02547f863', 'no_lang_code', 1, 'https://ror.org/02547f863 TeXtreme (Sweden)'),
(69900, 'https://ror.org/03ezj6665', 'sv', 1, 'https://ror.org/03ezj6665 NyfƶretagarCentrum'),
(69901, 'https://ror.org/02sw18145', 'no_lang_code', 1, 'https://ror.org/02sw18145 Sveriges Television (Sweden)'),
(69902, 'https://ror.org/00p5gtp56', 'no_lang_code', 1, 'https://ror.org/00p5gtp56 Patriksson Communication (Sweden)'),
(69903, 'https://ror.org/01krfhk43', 'no_lang_code', 1, 'https://ror.org/01krfhk43 Norrkƶping Visualisering (Sweden)'),
(69904, 'https://ror.org/03grydy67', 'no_lang_code', 1, 'https://ror.org/03grydy67 Pelago Bioscience (Sweden)'),
(69905, 'https://ror.org/00gwr4a27', 'en', 1, 'https://ror.org/00gwr4a27 Polismyndigheten Swedish Police Authority'),
(69906, 'https://ror.org/03tcray14', 'no_lang_code', 1, 'https://ror.org/03tcray14 Peppy Pals (Sweden)'),
(69907, 'https://ror.org/05q4wvm17', 'no_lang_code', 1, 'https://ror.org/05q4wvm17 Porslinsfabriken (Sweden)'),
(69908, 'https://ror.org/02c8ckq78', 'en', 1, 'https://ror.org/02c8ckq78 Svenskt Demenscentrum Swedish Dementia Centre'),
(69909, 'https://ror.org/002nebm43', 'no_lang_code', 1, 'https://ror.org/002nebm43 Pharem Biotech (Sweden)'),
(69910, 'https://ror.org/05c64fx98', 'en', 1, 'https://ror.org/05c64fx98 Stockholm Makerspace'),
(69911, 'https://ror.org/00bev4j15', 'en', 1, 'https://ror.org/00bev4j15 Sveriges Olympiska KommittƩ Swedish Olympic Committee'),
(69912, 'https://ror.org/02ndpa275', 'no_lang_code', 1, 'https://ror.org/02ndpa275 Pilloxa (Sweden)'),
(69913, 'https://ror.org/043ppxs71', 'no_lang_code', 1, 'https://ror.org/043ppxs71 PPAM Solkraft (Sweden)'),
(69914, 'https://ror.org/03xpfdf66', 'en', 1, 'https://ror.org/03xpfdf66 Dalarna Science Park'),
(69915, 'https://ror.org/008aazg21', 'no_lang_code', 1, 'https://ror.org/008aazg21 Predicare (Sweden)'),
(69916, 'https://ror.org/00rwrt808', 'en', 1, 'https://ror.org/00rwrt808 Tekniska Museet The National Museum of Science and Technology'),
(69917, 'https://ror.org/02sxtj815', 'sv', 1, 'https://ror.org/02sxtj815 Stockholms Stadsmission'),
(69918, 'https://ror.org/03v80r862', 'no_lang_code', 1, 'https://ror.org/03v80r862 Governo (Sweden)'),
(69919, 'https://ror.org/03ya27672', 'no_lang_code', 1, 'https://ror.org/03ya27672 Effecta (Sweden)'),
(69920, 'https://ror.org/00v2zc821', 'es', 1, 'https://ror.org/00v2zc821 Colegio Ɓrula'),
(69921, 'https://ror.org/00y1npz19', 'en', 1, 'https://ror.org/00y1npz19 Bridgeman Images'),
(69922, 'https://ror.org/05503ny65', 'it', 1, 'https://ror.org/05503ny65 Ospedale "Floraspe Renzetti"'),
(69923, 'https://ror.org/043726d89', 'en', 1, 'https://ror.org/043726d89 Athena Sustainable Materials Institute'),
(69924, 'https://ror.org/01ftj8q07', 'en', 1, 'https://ror.org/01ftj8q07 College of St George'),
(69925, 'https://ror.org/02wvyyg66', 'en', 1, 'https://ror.org/02wvyyg66 Automotive Council UK'),
(69926, 'https://ror.org/04a908t67', 'en', 1, 'https://ror.org/04a908t67 Centre for Equity Studies'),
(69927, 'https://ror.org/03hxch322', 'en', 1, 'https://ror.org/03hxch322 1947 Partition Archive'),
(69928, 'https://ror.org/04x8c0q56', 'en', 1, 'https://ror.org/04x8c0q56 Committee on Radioactive Waste Management'),
(69929, 'https://ror.org/04a0qg985', 'en', 1, 'https://ror.org/04a0qg985 Committee on the Administration of Justice'),
(69930, 'https://ror.org/05a9avq33', 'en', 1, 'https://ror.org/05a9avq33 Centre for Printing History and Culture'),
(69931, 'https://ror.org/054h9pe78', 'en', 1, 'https://ror.org/054h9pe78 British Council for Offices'),
(69932, 'https://ror.org/02an8as91', 'en', 1, 'https://ror.org/02an8as91 British Egg Industry Council'),
(69933, 'https://ror.org/02mf18m55', 'en', 1, 'https://ror.org/02mf18m55 Beijing Administration Institute åŒ—äŗ¬č”Œę”æå­¦é™¢'),
(69934, 'https://ror.org/01a1vdv95', 'en', 1, 'https://ror.org/01a1vdv95 British Safety Council'),
(69935, 'https://ror.org/03jdaez56', 'en', 1, 'https://ror.org/03jdaez56 Africa Research Institute'),
(69936, 'https://ror.org/05e475224', 'no_lang_code', 1, 'https://ror.org/05e475224 Cerberus Security Laboratories (United Kingdom)'),
(69937, 'https://ror.org/0307m3652', 'en', 1, 'https://ror.org/0307m3652 African Migration and Development Policy Centre'),
(69938, 'https://ror.org/01zjqjw24', 'en', 1, 'https://ror.org/01zjqjw24 Buckinghamshire Military Museum Trust'),
(69939, 'https://ror.org/05s9kz512', 'en', 1, 'https://ror.org/05s9kz512 Chawton House'),
(69940, 'https://ror.org/03zbfp751', 'en', 1, 'https://ror.org/03zbfp751 Aga Khan Foundation'),
(69941, 'https://ror.org/051twmh51', 'en', 1, 'https://ror.org/051twmh51 Aga Khan Foundation'),
(69942, 'https://ror.org/01f83vs23', 'no_lang_code', 1, 'https://ror.org/01f83vs23 C&A Foundation (Switzerland)'),
(69943, 'https://ror.org/00htsfa41', 'en', 1, 'https://ror.org/00htsfa41 Consumer Council for Water'),
(69944, 'https://ror.org/017kp0447', 'en', 1, 'https://ror.org/017kp0447 Cheshire Archives and Local Studies'),
(69945, 'https://ror.org/02nr4yf74', 'en', 1, 'https://ror.org/02nr4yf74 Copenhagen Consensus Center'),
(69946, 'https://ror.org/03247t449', 'en', 1, 'https://ror.org/03247t449 Campbell College'),
(69947, 'https://ror.org/040xcjs75', 'en', 1, 'https://ror.org/040xcjs75 Airports Council International Europe'),
(69948, 'https://ror.org/00408kc71', 'en', 1, 'https://ror.org/00408kc71 Education Authority'),
(69949, 'https://ror.org/05q6snw96', 'en', 1, 'https://ror.org/05q6snw96 Council for Wales of Voluntary Youth Services'),
(69950, 'https://ror.org/03xae5975', 'sv', 1, 'https://ror.org/03xae5975 Aleris HƤlsocentral BollnƤs'),
(69951, 'https://ror.org/030w0d671', 'en', 1, 'https://ror.org/030w0d671 Chetham’s Library'),
(69952, 'https://ror.org/01w56ba43', 'en', 1, 'https://ror.org/01w56ba43 Council on Energy, Environment and Water'),
(69953, 'https://ror.org/025z1qv19', 'no_lang_code', 1, 'https://ror.org/025z1qv19 Child Watabaran Center'),
(69954, 'https://ror.org/048shje05', 'no_lang_code', 1, 'https://ror.org/048shje05 Alomone Labs (Israel)'),
(69955, 'https://ror.org/03ajz9454', 'en', 1, 'https://ror.org/03ajz9454 China Society for Urban Studies'),
(69956, 'https://ror.org/01gh80505', 'en', 1, 'https://ror.org/01gh80505 Coventry and Warwickshire Partnership NHS Trust'),
(69957, 'https://ror.org/03jr24865', 'en', 1, 'https://ror.org/03jr24865 Blackpool Better Start'),
(69958, 'https://ror.org/01t8am602', 'en', 1, 'https://ror.org/01t8am602 Creative & Cultural Skills'),
(69959, 'https://ror.org/0130dgg46', 'en', 1, 'https://ror.org/0130dgg46 China-Britain Business Council'),
(69960, 'https://ror.org/00k1jzy36', 'en', 1, 'https://ror.org/00k1jzy36 Carnegie UK Trust'),
(69961, 'https://ror.org/046sdzq93', 'en', 1, 'https://ror.org/046sdzq93 Botswana Predator Conservation Trust'),
(69962, 'https://ror.org/04p858908', 'en', 1, 'https://ror.org/04p858908 Daedalus Trust'),
(69963, 'https://ror.org/01kh56070', 'fr', 1, 'https://ror.org/01kh56070 Conseil DƩpartemental de la Creuse'),
(69964, 'https://ror.org/02m9cpr85', 'en', 1, 'https://ror.org/02m9cpr85 Dag Hammarskjƶld Foundation'),
(69965, 'https://ror.org/0134kq024', 'en', 1, 'https://ror.org/0134kq024 Cell and Gene Therapy Catapult'),
(69966, 'https://ror.org/03k4hy467', 'en', 1, 'https://ror.org/03k4hy467 Virgin Care'),
(69967, 'https://ror.org/044xs7e53', 'no_lang_code', 1, 'https://ror.org/044xs7e53 RxMP Therapeutics (United States)'),
(69968, 'https://ror.org/01wy67352', 'en', 1, 'https://ror.org/01wy67352 CittĆ  di Castello Hospital'),
(69969, 'https://ror.org/01dqh8j58', 'en', 1, 'https://ror.org/01dqh8j58 National Institute of Disaster Management ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ आपदा ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(69970, 'https://ror.org/04j9qwe36', 'en', 1, 'https://ror.org/04j9qwe36 Danish Refugee Council Dansk FlygtningehjƦlp'),
(69971, 'https://ror.org/05p4qy229', 'en', 1, 'https://ror.org/05p4qy229 Shahid Beheshti Teacher Training College دانؓگاه تربیت معلم Ų“Ł‡ŪŒŲÆ ŲØŁ‡Ų“ŲŖŪŒ مؓهد'),
(69972, 'https://ror.org/05e7psn47', 'en', 1, 'https://ror.org/05e7psn47 Center for Domestic Violence Prevention'),
(69973, 'https://ror.org/02fwchg56', 'en', 1, 'https://ror.org/02fwchg56 Documentation Center of Cambodia'),
(69974, 'https://ror.org/008vf9155', 'en', 1, 'https://ror.org/008vf9155 The Donaldson Trust'),
(69975, 'https://ror.org/02fvbz323', 'en', 1, 'https://ror.org/02fvbz323 Dearne Valley College'),
(69976, 'https://ror.org/04gck6g78', 'en', 1, 'https://ror.org/04gck6g78 University of Modern Sciences Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(69977, 'https://ror.org/033bdbr41', 'es', 1, 'https://ror.org/033bdbr41 Dejusticia'),
(69978, 'https://ror.org/03kfjwh70', 'nl', 1, 'https://ror.org/03kfjwh70 College voor de Rechten van de Mens'),
(69979, 'https://ror.org/002kr4405', 'en', 1, 'https://ror.org/002kr4405 Delhi Foundation of Deaf Women'),
(69980, 'https://ror.org/00n9sjd15', 'en', 1, 'https://ror.org/00n9sjd15 Center for Human Rights and Conflict Resolution'),
(69981, 'https://ror.org/016a6yb46', 'en', 1, 'https://ror.org/016a6yb46 Dundee Heritage Trust'),
(69982, 'https://ror.org/0469msm38', 'it', 1, 'https://ror.org/0469msm38 Cineteca di Bologna'),
(69983, 'https://ror.org/03q51r998', 'no_lang_code', 1, 'https://ror.org/03q51r998 Valero Energy (United States)'),
(69984, 'https://ror.org/01de1bn24', 'no_lang_code', 1, 'https://ror.org/01de1bn24 Dextra Laboratories (United Kingdom)'),
(69985, 'https://ror.org/017p3r607', 'en', 1, 'https://ror.org/017p3r607 International Network of Civil Liberties Organizations'),
(69986, 'https://ror.org/00bvkj141', 'no_lang_code', 1, 'https://ror.org/00bvkj141 GS Caltex (South Korea)'),
(69987, 'https://ror.org/00bw0hk14', 'en', 1, 'https://ror.org/00bw0hk14 Center for Medical Technology Policy'),
(69988, 'https://ror.org/023gtz231', 'en', 1, 'https://ror.org/023gtz231 Elderly Accommodation Counsel'),
(69989, 'https://ror.org/05szkt337', 'en', 1, 'https://ror.org/05szkt337 Electric Infrastructure Security Council'),
(69990, 'https://ror.org/05qgprp76', 'no_lang_code', 1, 'https://ror.org/05qgprp76 Enterprise Products (United States)'),
(69991, 'https://ror.org/02xd41x41', 'de', 1, 'https://ror.org/02xd41x41 Forio'),
(69992, 'https://ror.org/04sn6zn93', 'en', 1, 'https://ror.org/04sn6zn93 Essex Wildlife Trust'),
(69993, 'https://ror.org/00t1n6362', 'no_lang_code', 1, 'https://ror.org/00t1n6362 OMV Petrom (Romania)'),
(69994, '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'),
(69995, 'https://ror.org/00xqr8q70', 'en', 1, 'https://ror.org/00xqr8q70 Fountainbridge Library'),
(69996, 'https://ror.org/0083kgt80', 'en', 1, 'https://ror.org/0083kgt80 Guildhall Library'),
(69997, 'https://ror.org/009n4zx75', 'en', 1, 'https://ror.org/009n4zx75 Conseil EuropƩen de Remanufacture European Remanufacturing Council'),
(69998, 'https://ror.org/0254e9x24', 'en', 1, 'https://ror.org/0254e9x24 Friends of Cumbria Archives'),
(69999, 'https://ror.org/01yfdk227', 'en', 1, 'https://ror.org/01yfdk227 Wigston College'),
(70000, 'https://ror.org/03mxt3314', 'en', 1, 'https://ror.org/03mxt3314 Family Mediation Council'),
(70001, 'https://ror.org/04rd9p896', 'en', 1, 'https://ror.org/04rd9p896 Felipe GonzÔlez Foundation Fundación Felipe GonzÔlez'),
(70002, 'https://ror.org/009rcpx96', 'en', 1, 'https://ror.org/009rcpx96 Feminist Archive North'),
(70003, 'https://ror.org/02kkwr259', 'it', 1, 'https://ror.org/02kkwr259 Ospedale Ferdinando Veneziale di Isernia'),
(70004, 'https://ror.org/03ang6a06', 'en', 1, 'https://ror.org/03ang6a06 The Fermanagh Trust'),
(70005, 'https://ror.org/03f358370', 'en', 1, 'https://ror.org/03f358370 Institute of Environmental Management and Assessment'),
(70006, 'https://ror.org/014ypdf93', 'en', 1, 'https://ror.org/014ypdf93 Fettes College'),
(70007, 'https://ror.org/04nwm6350', 'en', 1, 'https://ror.org/04nwm6350 Comhairle Choitcheann Teagaisg na h-Alba The General Teaching Council for Scotland'),
(70008, 'https://ror.org/01q5qmy44', 'en', 1, 'https://ror.org/01q5qmy44 Institute of Translation and Interpreting'),
(70009, 'https://ror.org/01x48j266', 'en', 1, 'https://ror.org/01x48j266 Hainan Modern Women and Children''s Hospital ęµ·å—ēŽ°ä»£å¦‡å„³å„æē«„åŒ»é™¢'),
(70010, 'https://ror.org/04c7t5k94', 'de', 1, 'https://ror.org/04c7t5k94 Institut für Mittelstandsforschung'),
(70011, 'https://ror.org/03x3nyk13', 'en', 1, 'https://ror.org/03x3nyk13 HAT Community Foundation'),
(70012, 'https://ror.org/01fkztr60', 'en', 1, 'https://ror.org/01fkztr60 Glasgow Women''s Library'),
(70013, 'https://ror.org/03js0ja63', 'en', 1, 'https://ror.org/03js0ja63 Havering College of Further and Higher Education'),
(70014, 'https://ror.org/04hpe2n33', 'en', 1, 'https://ror.org/04hpe2n33 Haywood Academy'),
(70015, 'https://ror.org/00sr3jx98', 'sv', 1, 'https://ror.org/00sr3jx98 VƄrdcentralen SilentzvƤgen'),
(70016, 'https://ror.org/03bgw1x40', 'en', 1, 'https://ror.org/03bgw1x40 Institute of Epidemiology, Disease Control and Research ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦ą¦Ŗą¦æą¦”ą§‡ą¦®ą§‹ą¦²ą§‹ą¦œą¦æ ঔিজিজ ą¦•ą¦Øą§ą¦Ÿą§ą¦°ą§‹ą¦² ą¦ą¦Øą§ą¦” ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š আইইঔিসিআর'),
(70017, 'https://ror.org/006h33619', 'no_lang_code', 1, 'https://ror.org/006h33619 Keleketla Library'),
(70018, 'https://ror.org/006qrkk22', 'en', 1, 'https://ror.org/006qrkk22 Hymers College'),
(70019, 'https://ror.org/05yd64b65', 'en', 1, 'https://ror.org/05yd64b65 High Life Highland'),
(70020, 'https://ror.org/049yd1k97', 'en', 1, 'https://ror.org/049yd1k97 Archivo Histórico de la Policía Nacional Guatemala National Police Archives'),
(70021, 'https://ror.org/02fa1wt71', 'en', 1, 'https://ror.org/02fa1wt71 The Incorporated Council of Law Reporting for England & Wales'),
(70022, 'https://ror.org/01w74v812', 'en', 1, 'https://ror.org/01w74v812 Environmental Council of the States'),
(70023, 'https://ror.org/04kb7h130', 'en', 1, 'https://ror.org/04kb7h130 Irrigation Management Training Institute'),
(70024, 'https://ror.org/02yqzy864', 'en', 1, 'https://ror.org/02yqzy864 Islamic Foundation for Ecology and Environmental Science'),
(70025, 'https://ror.org/00ja8fs25', 'en', 1, 'https://ror.org/00ja8fs25 Institute for Society, Population and Nature Instituto Sociedade População Natureza'),
(70026, 'https://ror.org/00f21ds03', 'en', 1, 'https://ror.org/00f21ds03 L''Istituto dei Sordi di Torino Turin Institute for the Deaf'),
(70027, 'https://ror.org/01e3mhx02', 'en', 1, 'https://ror.org/01e3mhx02 Japan Institute for Labour Policy and Training ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒę”æē­–ē ”ē©¶ćƒ»ē ”äæ®ę©Ÿę§‹'),
(70028, 'https://ror.org/03d022g94', 'en', 1, 'https://ror.org/03d022g94 Indonesian Coffee and Cocoa Research Institute'),
(70029, 'https://ror.org/03g1d8888', 'en', 1, 'https://ror.org/03g1d8888 Institute of Town Planners, Sri lanka'),
(70030, 'https://ror.org/05h8jev84', 'en', 1, 'https://ror.org/05h8jev84 JNCL-NCLIS'),
(70031, 'https://ror.org/00ya5ka53', 'en', 1, 'https://ror.org/00ya5ka53 Indus Resource Centre'),
(70032, 'https://ror.org/039g88209', 'no', 1, 'https://ror.org/039g88209 Kongsberg sykehus'),
(70033, 'https://ror.org/003kr8v19', 'en', 1, 'https://ror.org/003kr8v19 Linen Hall Library'),
(70034, 'https://ror.org/00t0v7w29', 'en', 1, 'https://ror.org/00t0v7w29 Min-On Concert Association ę°‘äø»éŸ³ę„½å”ä¼š'),
(70035, 'https://ror.org/02jwd3a38', 'no_lang_code', 1, 'https://ror.org/02jwd3a38 Minerva Laboratories (United Kingdom)'),
(70036, 'https://ror.org/04h8bnx49', 'en', 1, 'https://ror.org/04h8bnx49 Mitchell Library'),
(70037, 'https://ror.org/02dn4tb64', 'cs', 1, 'https://ror.org/02dn4tb64 Nemocnice KutnĆ” Hora'),
(70038, 'https://ror.org/03vj16b25', 'en', 1, 'https://ror.org/03vj16b25 Money Advice Trust'),
(70039, 'https://ror.org/04hse4551', 'no_lang_code', 1, 'https://ror.org/04hse4551 Kamukunji Paralegal Trust'),
(70040, 'https://ror.org/01h814g24', 'no_lang_code', 1, 'https://ror.org/01h814g24 Lanka Hydraulic Institute (Sri Lanka)'),
(70041, 'https://ror.org/03gdwf180', 'en', 1, 'https://ror.org/03gdwf180 National Film and Sound Archive of Australia'),
(70042, 'https://ror.org/05e3gef34', 'es', 1, 'https://ror.org/05e3gef34 Hospital Las Higueras'),
(70043, 'https://ror.org/011rkfr90', 'en', 1, 'https://ror.org/011rkfr90 National Videogame Museum'),
(70044, 'https://ror.org/00m48be82', 'en', 1, 'https://ror.org/00m48be82 National Council for Voluntary Youth Services'),
(70045, 'https://ror.org/00z5a4134', 'es', 1, 'https://ror.org/00z5a4134 Hospital Naval Almirante Adriazola de Talcahuano'),
(70046, 'https://ror.org/0160tym22', 'en', 1, 'https://ror.org/0160tym22 Ouseburn Trust'),
(70047, 'https://ror.org/01q4spz53', 'en', 1, 'https://ror.org/01q4spz53 National AIDS Trust'),
(70048, 'https://ror.org/04cd5hv25', 'en', 1, 'https://ror.org/04cd5hv25 New Leaf Center'),
(70049, 'https://ror.org/02sc13d13', 'en', 1, 'https://ror.org/02sc13d13 Pakistan Muslim Centre'),
(70050, 'https://ror.org/00dwnzj85', 'en', 1, 'https://ror.org/00dwnzj85 Newbattle Abbey College'),
(70051, 'https://ror.org/054rgmw54', 'en', 1, 'https://ror.org/054rgmw54 Palli Karma Sahayak Foundation ą¦Ŗą¦²ą§ą¦²ą§€ ą¦•ą¦°ą§ą¦®-ą¦øą¦¹ą¦¾ą§Ÿą¦• ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą§‡ą¦¶ą¦Øą„¤'),
(70052, 'https://ror.org/02st6h303', 'en', 1, 'https://ror.org/02st6h303 Archives Nationales du SƩnƩgal National Archives of Senegal'),
(70053, 'https://ror.org/030v3z925', 'en', 1, 'https://ror.org/030v3z925 Newcastle United Foundation'),
(70054, 'https://ror.org/003hx7248', 'es', 1, 'https://ror.org/003hx7248 Instituto Nicaragüense de Cultura'),
(70055, 'https://ror.org/02cvnka73', 'en', 1, 'https://ror.org/02cvnka73 Norfolk Rivers Trust'),
(70056, 'https://ror.org/02wvbw668', 'en', 1, 'https://ror.org/02wvbw668 The Marie Collins Foundation'),
(70057, 'https://ror.org/02t84ww49', 'en', 1, 'https://ror.org/02t84ww49 Pastoral Women''s Council'),
(70058, 'https://ror.org/047kbbm64', 'en', 1, 'https://ror.org/047kbbm64 Marine Stewardship Council'),
(70059, 'https://ror.org/00z7p5142', 'en', 1, 'https://ror.org/00z7p5142 North Devon Biosphere Foundation'),
(70060, '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'),
(70061, 'https://ror.org/04kpx4g09', 'en', 1, 'https://ror.org/04kpx4g09 Northern Ireland Council for Integrated Education'),
(70062, 'https://ror.org/00m1t4240', 'en', 1, 'https://ror.org/00m1t4240 National Library of Laos ąŗ«ą»ąŗŖąŗ°ą»ąŗøąŗ”ą»ąŗ«ą»ˆąŗ‡ąŗŠąŗ²ąŗ”'),
(70063, 'https://ror.org/01kwnqg78', 'en', 1, 'https://ror.org/01kwnqg78 Northern Ireland Council for Voluntary Action'),
(70064, 'https://ror.org/05jgm8734', 'en', 1, 'https://ror.org/05jgm8734 National Literacy Trust'),
(70065, 'https://ror.org/00a91y272', 'en', 1, 'https://ror.org/00a91y272 Redress'),
(70066, 'https://ror.org/05g94t868', 'en', 1, 'https://ror.org/05g94t868 Yorkshire Film Archive'),
(70067, 'https://ror.org/03nm0d152', 'en', 1, 'https://ror.org/03nm0d152 Media Archive for Central England'),
(70068, 'https://ror.org/05fxzh978', 'fr', 1, 'https://ror.org/05fxzh978 Laboratoire Philippe Auguste'),
(70069, 'https://ror.org/05p0tmv18', 'en', 1, 'https://ror.org/05p0tmv18 Nubuke Foundation'),
(70070, 'https://ror.org/03apry564', 'en', 1, 'https://ror.org/03apry564 Oak Field School and Sports College'),
(70071, 'https://ror.org/005p07d97', 'en', 1, 'https://ror.org/005p07d97 Consejo de Monumentos Nacionales National Monuments Council'),
(70072, 'https://ror.org/02af2ve13', 'en', 1, 'https://ror.org/02af2ve13 Orkney Library and Archive'),
(70073, 'https://ror.org/025a6yk46', 'en', 1, 'https://ror.org/025a6yk46 Rhondda Cynon Taff Library Service'),
(70074, 'https://ror.org/0447j3y44', 'en', 1, 'https://ror.org/0447j3y44 Ossett Academy'),
(70075, 'https://ror.org/05rs7mx39', 'en', 1, 'https://ror.org/05rs7mx39 Richmond School and Sixth Form College'),
(70076, 'https://ror.org/00djmfe91', 'en', 1, 'https://ror.org/00djmfe91 Schumacher College'),
(70077, 'https://ror.org/041gwe229', 'en', 1, 'https://ror.org/041gwe229 South African Council for Planners'),
(70078, 'https://ror.org/04fa9he73', 'en', 1, 'https://ror.org/04fa9he73 Robert Gordon''s College'),
(70079, 'https://ror.org/04570hm76', 'en', 1, 'https://ror.org/04570hm76 Private Sector Foundation Uganda'),
(70080, 'https://ror.org/03y6t7d21', 'en', 1, 'https://ror.org/03y6t7d21 Scottish Council for Voluntary Organisations'),
(70081, 'https://ror.org/004rh7a97', 'en', 1, 'https://ror.org/004rh7a97 Public Health Institute of Malawi'),
(70082, 'https://ror.org/04zsfh247', 'en', 1, 'https://ror.org/04zsfh247 Royal College of Occupational Therapists'),
(70083, 'https://ror.org/00yc8p775', 'en', 1, 'https://ror.org/00yc8p775 International Federation of Television Archives'),
(70084, 'https://ror.org/0121pvy84', 'en', 1, 'https://ror.org/0121pvy84 Scottish Social Services Council'),
(70085, 'https://ror.org/05yjmpq86', 'en', 1, 'https://ror.org/05yjmpq86 Royal College of Veterinary Surgeons'),
(70086, 'https://ror.org/00n3xk635', 'en', 1, 'https://ror.org/00n3xk635 Libraries Tasmania'),
(70087, 'https://ror.org/02ft9z011', 'en', 1, 'https://ror.org/02ft9z011 Royal College of Speech and Language Therapists'),
(70088, 'https://ror.org/05jp4w275', 'en', 1, 'https://ror.org/05jp4w275 Seethapathy Clinic and Hospital'),
(70089, 'https://ror.org/02xhnj226', 'en', 1, 'https://ror.org/02xhnj226 Mobox Foundation'),
(70090, 'https://ror.org/03wdrwf95', 'en', 1, 'https://ror.org/03wdrwf95 Shaoguan Railway Hospital éŸ¶å…³åø‚é“č·ÆåŒ»é™¢'),
(70091, 'https://ror.org/0568d6a68', 'en', 1, 'https://ror.org/0568d6a68 St. Francis Referral Hospital'),
(70092, 'https://ror.org/02ns8e576', 'en', 1, 'https://ror.org/02ns8e576 Naval Dockyards Society'),
(70093, 'https://ror.org/019jndt66', 'en', 1, 'https://ror.org/019jndt66 Textile Centre of Excellence'),
(70094, 'https://ror.org/00y8a5g73', 'en', 1, 'https://ror.org/00y8a5g73 Sabah Environmental Trust'),
(70095, 'https://ror.org/00rxtaa07', 'en', 1, 'https://ror.org/00rxtaa07 Thai-German Institute ąøŖąø–ąø²ąøšąø±ąø™ą¹„ąø—ąø¢-เยอรดัน'),
(70096, 'https://ror.org/00qb7v529', 'it', 1, 'https://ror.org/00qb7v529 Archivio di Stato di Roma'),
(70097, 'https://ror.org/00cmvzh60', 'en', 1, 'https://ror.org/00cmvzh60 The Portico Library'),
(70098, 'https://ror.org/04ah8f064', 'en', 1, 'https://ror.org/04ah8f064 Shropshire Archives'),
(70099, 'https://ror.org/033y2mr45', 'it', 1, 'https://ror.org/033y2mr45 Archivio di Stato di Venezia'),
(70100, 'https://ror.org/00tmbfm47', 'en', 1, 'https://ror.org/00tmbfm47 Ocean Tracking Network'),
(70101, 'https://ror.org/01kz8wz75', 'en', 1, 'https://ror.org/01kz8wz75 Abaseen Foundation'),
(70102, 'https://ror.org/03y83ve89', 'en', 1, 'https://ror.org/03y83ve89 Sing Up Foundation'),
(70103, 'https://ror.org/00e0czp98', 'en', 1, 'https://ror.org/00e0czp98 Sir Bobby Robson Foundation'),
(70104, 'https://ror.org/053236z94', 'en', 1, 'https://ror.org/053236z94 City of Stoke-on-Trent Sixth Form College'),
(70105, 'https://ror.org/05dwbzt62', 'en', 1, 'https://ror.org/05dwbzt62 Samata Foundation समता ą¤«ą¤¾ą¤‰ą¤Øą„ą¤”ą„‡ą¤¶ą¤Ø'),
(70106, 'https://ror.org/004mwvw05', 'en', 1, 'https://ror.org/004mwvw05 AfriChild Centre'),
(70107, 'https://ror.org/00cgyrr09', 'en', 1, 'https://ror.org/00cgyrr09 Sussex Recovery College'),
(70108, 'https://ror.org/044ve7993', 'en', 1, 'https://ror.org/044ve7993 Migration & Asylum Project'),
(70109, 'https://ror.org/04vcg0a87', 'no_lang_code', 1, 'https://ror.org/04vcg0a87 Golden Agri-Resources (Singapore)'),
(70110, 'https://ror.org/045bb6111', 'en', 1, 'https://ror.org/045bb6111 William Temple Foundation'),
(70111, 'https://ror.org/0109q6556', 'en', 1, 'https://ror.org/0109q6556 Tim Parry Johnathan Ball Peace Foundation'),
(70112, 'https://ror.org/00x0x6v41', 'en', 1, 'https://ror.org/00x0x6v41 Co-operative College'),
(70113, 'https://ror.org/01j2pmk70', 'en', 1, 'https://ror.org/01j2pmk70 Time-Line computer Archive'),
(70114, 'https://ror.org/02s437n13', 'en', 1, 'https://ror.org/02s437n13 The Textile Institute'),
(70115, 'https://ror.org/04svebv53', 'en', 1, 'https://ror.org/04svebv53 Softwarica College'),
(70116, 'https://ror.org/01rng5a32', 'en', 1, 'https://ror.org/01rng5a32 New City College'),
(70117, 'https://ror.org/00hdpb239', 'en', 1, 'https://ror.org/00hdpb239 The Tree Council'),
(70118, 'https://ror.org/00ztk9j52', 'en', 1, 'https://ror.org/00ztk9j52 Elders of Newscastle Upon Tyne'),
(70119, 'https://ror.org/00a4e3a70', 'no', 1, 'https://ror.org/00a4e3a70 Trondheim Hjertesenter'),
(70120, 'https://ror.org/01077pm86', 'en', 1, 'https://ror.org/01077pm86 UK Centre for Moisture in Buildings'),
(70121, 'https://ror.org/00tntqs89', 'en', 1, 'https://ror.org/00tntqs89 Wonder Foundation'),
(70122, 'https://ror.org/00zphcv39', 'en', 1, 'https://ror.org/00zphcv39 UK Green Building Council'),
(70123, 'https://ror.org/0408hpd14', 'en', 1, 'https://ror.org/0408hpd14 Feminist Archive South'),
(70124, 'https://ror.org/05rkvrx68', 'en', 1, 'https://ror.org/05rkvrx68 Centre Hospitalier Universitaire of Butare University Teaching Hospital of Butare'),
(70125, 'https://ror.org/04fqnjy45', 'en', 1, 'https://ror.org/04fqnjy45 The Feminist Library'),
(70126, 'https://ror.org/05rahmh70', 'en', 1, 'https://ror.org/05rahmh70 United Kingdom Council for Psychotherapy'),
(70127, 'https://ror.org/00rfg3b85', 'en', 1, 'https://ror.org/00rfg3b85 Working Class Movement Library'),
(70128, 'https://ror.org/02kzjed53', 'no_lang_code', 1, 'https://ror.org/02kzjed53 Value Chain Lab (United Kingdom)'),
(70129, 'https://ror.org/045m5hq56', 'en', 1, 'https://ror.org/045m5hq56 Foundation for Civil Society'),
(70130, 'https://ror.org/03d4czf80', 'en', 1, 'https://ror.org/03d4czf80 United Nations System Staff College'),
(70131, 'https://ror.org/022ma3798', 'en', 1, 'https://ror.org/022ma3798 World Travel and Tourism Council'),
(70132, 'https://ror.org/04ev8y062', 'no_lang_code', 1, 'https://ror.org/04ev8y062 Woundchek Laboratories (United Kingdom)'),
(70133, 'https://ror.org/02j5kt108', 'it', 1, 'https://ror.org/02j5kt108 Ospedale Veris Delli Ponti Scorrano'),
(70134, 'https://ror.org/04xm01g51', 'en', 1, 'https://ror.org/04xm01g51 Wrexham County Borough Museum & Archives'),
(70135, 'https://ror.org/01vxe0k23', 'en', 1, 'https://ror.org/01vxe0k23 Wales Co-operative Centre'),
(70136, 'https://ror.org/00r18kp26', 'bs', 1, 'https://ror.org/00r18kp26 OKC AbraÅ”ević The Youth Cultural Centre AbraÅ”ević'),
(70137, 'https://ror.org/00yk3tm64', 'fr', 1, 'https://ror.org/00yk3tm64 UniversitƩ des Sciences de la SantƩ'),
(70138, 'https://ror.org/03m3kst85', 'en', 1, 'https://ror.org/03m3kst85 Wales Council for Voluntary Action'),
(70139, 'https://ror.org/022y13z84', 'en', 1, 'https://ror.org/022y13z84 ZanaAfrica Foundation'),
(70140, 'https://ror.org/02s6z4m47', 'en', 1, 'https://ror.org/02s6z4m47 Warwickshire Wildlife Trust'),
(70141, 'https://ror.org/05bnh6b29', 'en', 1, 'https://ror.org/05bnh6b29 Institute of Group Analysis'),
(70142, 'https://ror.org/04gcfwh66', 'en', 1, 'https://ror.org/04gcfwh66 The First People''s Hospital of Zhaoqing č‚‡åŗ†åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(70143, 'https://ror.org/01jysap10', 'en', 1, 'https://ror.org/01jysap10 West Yorkshire Joint Services'),
(70144, 'https://ror.org/05hnrst22', 'en', 1, 'https://ror.org/05hnrst22 Westmill Sustainable Energy Trust'),
(70145, 'https://ror.org/03mv13182', 'en', 1, 'https://ror.org/03mv13182 Ways to Wellness'),
(70146, 'https://ror.org/014zfzp17', 'sk', 1, 'https://ror.org/014zfzp17 HvezdÔreň a PlanetÔrium M.R. ŠtefÔnika'),
(70147, 'https://ror.org/04jbk1p62', 'no_lang_code', 1, 'https://ror.org/04jbk1p62 Data:Lab Munich (Germany)'),
(70148, 'https://ror.org/04r7ckw96', 'es', 1, 'https://ror.org/04r7ckw96 Agrupación Astronómica de la Safor'),
(70149, 'https://ror.org/045dz4566', 'en', 1, 'https://ror.org/045dz4566 Submicron Heterostructures for Microelectronics Research and Engineering Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠŠ°ŃƒŃ‡Š½Š¾-технологический центр Š¼ŠøŠŗŃ€Š¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø Šø ŃŃƒŠ±Š¼ŠøŠŗŃ€Š¾Š½Š½Ń‹Ń… Š³ŠµŃ‚ŠµŃ€Š¾ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€ Российской акаГемии наук'),
(70150, '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'),
(70151, 'https://ror.org/04y51qn38', 'en', 1, 'https://ror.org/04y51qn38 Centre for Cosmology and Particle Physics Phenomenology'),
(70152, 'https://ror.org/04dgdk605', 'en', 1, 'https://ror.org/04dgdk605 Nationellt Forensiskt Centrum Swedish National Forensic Centre'),
(70153, 'https://ror.org/009rr6x76', 'es', 1, 'https://ror.org/009rr6x76 Instituto Tecnológico Superior de Xalapa'),
(70154, 'https://ror.org/00a0wam85', 'en', 1, 'https://ror.org/00a0wam85 Arizona School for the Arts'),
(70155, 'https://ror.org/01x41eb05', 'en', 1, 'https://ror.org/01x41eb05 University of Neyshabur دانؓگاه Ł†ŪŒŲ“Ų§ŲØŁˆŲ±'),
(70156, 'https://ror.org/033mn5m13', 'en', 1, 'https://ror.org/033mn5m13 Pasargad Institute for Advanced Innovative Solutions معهد ŲØŲ§Ų³Ų§Ų±Ų¬Ų§ŲÆ Ł„Ł„Ų­Ł„ŁˆŁ„ Ų§Ł„Ł…ŲØŲŖŁƒŲ±Ų© المتقدمة'),
(70157, 'https://ror.org/04tw9zq58', 'en', 1, 'https://ror.org/04tw9zq58 International Space Science Institute - Beijing 国际空闓科学研究所-åŒ—äŗ¬'),
(70158, 'https://ror.org/03h837345', 'nl', 1, 'https://ror.org/03h837345 Astronomisch Fysisch Onderzoek Nederland'),
(70159, 'https://ror.org/00zenaa75', 'en', 1, 'https://ror.org/00zenaa75 Beijing Academy of Smart Economy åŒ—äŗ¬ę™ŗčƒ½ē»ęµŽē ”ē©¶é™¢'),
(70160, 'https://ror.org/05jbsjy59', 'en', 1, 'https://ror.org/05jbsjy59 Iran Meteorological Organization سازمان Ł‡ŁˆŲ§Ų“Ł†Ų§Ų³ŪŒ Ų¬Ł…Ł‡ŁˆŲ±ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(70161, 'https://ror.org/008ehzy31', 'en', 1, 'https://ror.org/008ehzy31 World Academy of Art and Science'),
(70162, 'https://ror.org/041hvc055', 'en', 1, 'https://ror.org/041hvc055 Islamic Azad University Yasuj دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد یاسوج'),
(70163, 'https://ror.org/0331wa828', 'en', 1, 'https://ror.org/0331wa828 Universiti Xiamen Malaysia Xiamen University Malaysia'),
(70164, 'https://ror.org/00an5hx75', 'en', 1, 'https://ror.org/00an5hx75 Bennett University'),
(70165, 'https://ror.org/03eykm948', 'en', 1, 'https://ror.org/03eykm948 Islamic Azad University, Buin-Zahra'),
(70166, 'https://ror.org/04ramzc89', 'en', 1, 'https://ror.org/04ramzc89 Islamic Azad University, Langarud Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł„Ł†ŚÆŲ±ŁˆŲÆ'),
(70167, 'https://ror.org/00sh5y950', 'en', 1, 'https://ror.org/00sh5y950 Yantai Automobile Engineering Professional College ēƒŸå°ę±½č½¦å·„ēØ‹čŒäøšå­¦é™¢'),
(70168, 'https://ror.org/059q04r73', 'en', 1, 'https://ror.org/059q04r73 Leeds College of Building'),
(70169, 'https://ror.org/02qp5k481', 'en', 1, 'https://ror.org/02qp5k481 In-Q-Tel'),
(70170, 'https://ror.org/00zq3ce72', 'en', 1, 'https://ror.org/00zq3ce72 QuSoft'),
(70171, 'https://ror.org/01b3ygz78', 'de', 1, 'https://ror.org/01b3ygz78 Institut Kurz'),
(70172, 'https://ror.org/04q23qy39', 'en', 1, 'https://ror.org/04q23qy39 Chaudhary Ranbir Singh University ą¤šą„Œą¤§ą¤°ą„€ ą¤°ą¤£ą¤¬ą„€ą¤° सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(70173, 'https://ror.org/02sjwx878', 'en', 1, 'https://ror.org/02sjwx878 Condensed Matter Physics Research Center'),
(70174, 'https://ror.org/00khkb614', 'en', 1, 'https://ror.org/00khkb614 Laboratory of Excellence for Financial Regulation'),
(70175, 'https://ror.org/05277x335', 'en', 1, 'https://ror.org/05277x335 Joint Institute for Computational Sciences'),
(70176, 'https://ror.org/049ntvc74', 'fr', 1, 'https://ror.org/049ntvc74 Centre de Recherche NuclĆ©aire d’Alger Ł…Ų±ŁƒŲ² البحث Ų§Ł„Ł†ŁˆŁˆŁŠ بالجزائر'),
(70177, 'https://ror.org/039jhgf83', 'en', 1, 'https://ror.org/039jhgf83 China Automotive Engineering Research Institute äø­å›½ę±½č½¦å·„ēØ‹ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(70178, 'https://ror.org/05tekqt96', 'en', 1, 'https://ror.org/05tekqt96 National Laboratory for Superconductivity č¶…åÆ¼å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(70179, 'https://ror.org/03haheq63', 'no_lang_code', 1, 'https://ror.org/03haheq63 Engineering Technologies and Developments (Ukraine)'),
(70180, 'https://ror.org/03a111314', 'en', 1, 'https://ror.org/03a111314 Institute of History of Mediterranean Europe Istituto di Storia dell''Europa Mediterranea'),
(70181, 'https://ror.org/035y5td47', 'en', 1, 'https://ror.org/035y5td47 Institute for International Legal Studies Istituto di Studi Giuridici Internazionali'),
(70182, 'https://ror.org/05nzf7q96', 'en', 1, 'https://ror.org/05nzf7q96 Institute of Biomembranes, Bioenergetics and Molecular Biotechnologies Istituto di Biomembrane, Bioenergetica e Biotecnologie Molecolari'),
(70183, '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'''''),
(70184, 'https://ror.org/02gcxw165', 'it', 1, 'https://ror.org/02gcxw165 Istituto di Studi sul Mediterraneo Antico'),
(70185, '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ā€'),
(70186, 'https://ror.org/008fjbg42', 'en', 1, 'https://ror.org/008fjbg42 Institute for Sustainable Plant Protection Istituto per la Protezione Sostenibile delle Piante'),
(70187, 'https://ror.org/0042x6d59', 'de', 1, 'https://ror.org/0042x6d59 Zentrum für Seelische Gesundheit'),
(70188, 'https://ror.org/02qwy8e97', 'it', 1, 'https://ror.org/02qwy8e97 Institute for Research on Engines Istituto Motori'),
(70189, 'https://ror.org/02rzxrg25', 'it', 1, 'https://ror.org/02rzxrg25 Opera del Vocabolario Italiano'),
(70190, 'https://ror.org/0141vn777', 'en', 1, 'https://ror.org/0141vn777 Institute of Chemistry of Molecular Recognition Istituto di Chimica del Riconoscimento Molecolare'),
(70191, 'https://ror.org/028g3pe33', 'en', 1, 'https://ror.org/028g3pe33 Institute for Computational Linguistics ā€œA. Zampolliā€ Istituto di Linguistica Computazionale "A. Zampolli"'),
(70192, 'https://ror.org/011n2hw53', 'it', 1, 'https://ror.org/011n2hw53 Istituto per il Lessico Intellettuale Europeo e la Storia delle Idee'),
(70193, 'https://ror.org/0263zy895', 'it', 1, 'https://ror.org/0263zy895 Istituto di Metodologie Chimiche'),
(70194, 'https://ror.org/00x5wpm25', 'en', 1, 'https://ror.org/00x5wpm25 Institute for Archaeological and Monumental Heritage Istituto per i Beni Archeologici e Monumentali'),
(70195, 'https://ror.org/05nr7xa08', 'en', 1, 'https://ror.org/05nr7xa08 Institute of Polymers, Composites and Biomaterials Istituto dei Polimeri, Compositi e Biomateriali'),
(70196, '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'),
(70197, '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'),
(70198, 'https://ror.org/00ytw6m58', 'en', 1, 'https://ror.org/00ytw6m58 Institute of Environmental Geology and Geoengineering Istituto di Geologia Ambientale e Geoingegneria'),
(70199, 'https://ror.org/057c5p638', 'en', 1, 'https://ror.org/057c5p638 Indira Gandhi Delhi Technical University for Women'),
(70200, 'https://ror.org/044bfsy89', 'en', 1, 'https://ror.org/044bfsy89 Istituto di Ricerca sulla Crescita Economica Sostenibile Research Institute on Sustainable Economic Growth'),
(70201, 'https://ror.org/045zphe57', 'en', 1, 'https://ror.org/045zphe57 Institute for Agricultural and Earthmoving Machines Istituto per le Macchine Agricole e Movimento Terra'),
(70202, 'https://ror.org/03z58xd74', 'en', 1, 'https://ror.org/03z58xd74 Institute for the Dynamics of Environmental Processes Istituto per la Dinamica dei Processi Ambientali'),
(70203, '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'),
(70204, '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'),
(70205, 'https://ror.org/0221agg28', 'en', 1, 'https://ror.org/0221agg28 Construction Technologies Institute Istituto per le Tecnologie della Costruzione'),
(70206, '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'),
(70207, 'https://ror.org/00qg3d075', 'no_lang_code', 1, 'https://ror.org/00qg3d075 Ajelis (France)'),
(70208, 'https://ror.org/05ngeka81', 'no_lang_code', 1, 'https://ror.org/05ngeka81 Alcis Sports (India)'),
(70209, 'https://ror.org/03s84bz47', 'fr', 1, 'https://ror.org/03s84bz47 Centre Lavallois de Ressources Technologiques Clarte'),
(70210, 'https://ror.org/03g016n94', 'no_lang_code', 1, 'https://ror.org/03g016n94 AlyXan (France)'),
(70211, 'https://ror.org/05e357p42', 'fr', 1, 'https://ror.org/05e357p42 Centre National d''Art et de Culture Georges-Pompidou Centre Pompidou'),
(70212, 'https://ror.org/0105eee18', 'no_lang_code', 1, 'https://ror.org/0105eee18 Ariamis (France)'),
(70213, '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'),
(70214, 'https://ror.org/03z3k8g94', 'no_lang_code', 1, 'https://ror.org/03z3k8g94 Cliris (Switzerland)'),
(70215, 'https://ror.org/0249a2s92', 'no_lang_code', 1, 'https://ror.org/0249a2s92 Ginger (France) Groupe Ginger'),
(70216, 'https://ror.org/041gsht58', 'no_lang_code', 1, 'https://ror.org/041gsht58 Fealinx (France)'),
(70217, 'https://ror.org/00zhdk214', 'no_lang_code', 1, 'https://ror.org/00zhdk214 Axenis (France)'),
(70218, 'https://ror.org/03tht7k87', 'no_lang_code', 1, 'https://ror.org/03tht7k87 Dendris (France)'),
(70219, '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'),
(70220, 'https://ror.org/035pvn644', 'no_lang_code', 1, 'https://ror.org/035pvn644 Cooltech Applications (France)'),
(70221, 'https://ror.org/00c89gb03', 'no_lang_code', 1, 'https://ror.org/00c89gb03 Deveryware (France)'),
(70222, 'https://ror.org/02m528480', 'no_lang_code', 1, 'https://ror.org/02m528480 Cythelia (France)'),
(70223, 'https://ror.org/01twkx136', 'no_lang_code', 1, 'https://ror.org/01twkx136 Ecome (France)'),
(70224, 'https://ror.org/00dbps023', 'no_lang_code', 1, 'https://ror.org/00dbps023 Ɖolane (France)'),
(70225, 'https://ror.org/03amnyx79', 'no_lang_code', 1, 'https://ror.org/03amnyx79 Ecoat (France)'),
(70226, 'https://ror.org/01k101787', 'no_lang_code', 1, 'https://ror.org/01k101787 Idhelio (France)'),
(70227, 'https://ror.org/040jc3p57', 'it', 1, 'https://ror.org/040jc3p57 Associazione Radioamatori Italiani'),
(70228, 'https://ror.org/051b9wq78', 'no_lang_code', 1, 'https://ror.org/051b9wq78 Elicityl (France)'),
(70229, 'https://ror.org/04m83kv34', 'no_lang_code', 1, 'https://ror.org/04m83kv34 Eligo Bioscience (France)'),
(70230, 'https://ror.org/03g658126', 'no_lang_code', 1, 'https://ror.org/03g658126 Imaxio (France)'),
(70231, 'https://ror.org/03cgw6h63', 'no_lang_code', 1, 'https://ror.org/03cgw6h63 Elveflow (France)'),
(70232, 'https://ror.org/03d2jk391', 'fr', 1, 'https://ror.org/03d2jk391 Laboratoire de GƩnie Civil, Diagnostic et DurabilitƩ'),
(70233, 'https://ror.org/047xyhs39', 'no_lang_code', 1, 'https://ror.org/047xyhs39 Innodura (France)'),
(70234, 'https://ror.org/05dsek450', 'fr', 1, 'https://ror.org/05dsek450 HƩmostase et Dynamique Cellulaire Vasculaire'),
(70235, 'https://ror.org/02s3m2561', 'en', 1, 'https://ror.org/02s3m2561 Health Services and Performance Research Laboratory'),
(70236, 'https://ror.org/002a9y532', 'fr', 1, 'https://ror.org/002a9y532 Unité de Recherche Technologie et Analyses Laitières'),
(70237, 'https://ror.org/03sax3264', 'en', 1, 'https://ror.org/03sax3264 Southern Technical University الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„Ų¬Ł†ŁˆŲØŁŠŲ©'),
(70238, 'https://ror.org/02gs82g24', 'en', 1, 'https://ror.org/02gs82g24 Runway of Dreams Foundation'),
(70239, 'https://ror.org/01bdvsc06', 'sv', 1, 'https://ror.org/01bdvsc06 Swerim'),
(70240, 'https://ror.org/0443s9p82', 'en', 1, 'https://ror.org/0443s9p82 Center for High Pressure Science & Technology Advanced Research åŒ—äŗ¬é«˜åŽ‹ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(70241, 'https://ror.org/049dqrc28', 'en', 1, 'https://ror.org/049dqrc28 Center for High Pressure Science & Technology Advanced Research åŒ—äŗ¬é«˜åŽ‹ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(70242, 'https://ror.org/017g8gb14', 'no_lang_code', 1, 'https://ror.org/017g8gb14 Prime Discoveries (United States)'),
(70243, 'https://ror.org/054qp2w77', 'fr', 1, 'https://ror.org/054qp2w77 Institut des Hautes Ɖtudes du MinistĆØre de l''IntĆ©rieur'),
(70244, 'https://ror.org/04stw6a08', 'no_lang_code', 1, 'https://ror.org/04stw6a08 Unilever (France)'),
(70245, 'https://ror.org/03jqv7547', 'no_lang_code', 1, 'https://ror.org/03jqv7547 Lumibird (France)'),
(70246, 'https://ror.org/01j4nab63', 'no_lang_code', 1, 'https://ror.org/01j4nab63 Kereval (France)'),
(70247, 'https://ror.org/00w4q6f22', 'no_lang_code', 1, 'https://ror.org/00w4q6f22 Kontron (France)'),
(70248, 'https://ror.org/033ny7f81', 'fr', 1, 'https://ror.org/033ny7f81 Laboratoire d''Anthropologie et de Psychologie Cognitives et Sociales'),
(70249, 'https://ror.org/04beck307', 'no_lang_code', 1, 'https://ror.org/04beck307 Eau de Paris (France)'),
(70250, 'https://ror.org/01xpreq28', 'fr', 1, 'https://ror.org/01xpreq28 Laboratoire ArchƩomatƩriaux et PrƩvision de l''AltƩration'),
(70251, 'https://ror.org/00kewvc41', 'fr', 1, 'https://ror.org/00kewvc41 Laboratoire D''Ʃtude des RƩsidus et Contaminants Dans les Aliments'),
(70252, 'https://ror.org/0378sf364', 'fr', 1, 'https://ror.org/0378sf364 Laboratoire Structure et Dynamique par RƩsonance MagnƩtique'),
(70253, 'https://ror.org/03pm82185', 'no_lang_code', 1, 'https://ror.org/03pm82185 Lingua et Machina (France)'),
(70254, 'https://ror.org/05hjg4437', 'no_lang_code', 1, 'https://ror.org/05hjg4437 Evosens (France)'),
(70255, 'https://ror.org/04kwfkk85', 'no_lang_code', 1, 'https://ror.org/04kwfkk85 Nokia (France)'),
(70256, 'https://ror.org/03nt2n936', 'no_lang_code', 1, 'https://ror.org/03nt2n936 SilMach (France)'),
(70257, 'https://ror.org/01b6p7v84', 'no_lang_code', 1, 'https://ror.org/01b6p7v84 Platod (France)'),
(70258, 'https://ror.org/01m96mc18', 'no_lang_code', 1, 'https://ror.org/01m96mc18 Pragma Therapeutics (France)'),
(70259, 'https://ror.org/03hd9pr71', 'no_lang_code', 1, 'https://ror.org/03hd9pr71 Palumed (France)'),
(70260, 'https://ror.org/02dbpdq51', 'no_lang_code', 1, 'https://ror.org/02dbpdq51 DATA4 (France)'),
(70261, 'https://ror.org/02191ha15', 'no_lang_code', 1, 'https://ror.org/02191ha15 Sysnav (France)'),
(70262, 'https://ror.org/0086x0p73', 'no_lang_code', 1, 'https://ror.org/0086x0p73 Rouillard (Canada)'),
(70263, 'https://ror.org/01sjyas66', 'no_lang_code', 1, 'https://ror.org/01sjyas66 Orphelia Pharma (France)'),
(70264, 'https://ror.org/02epwv805', 'no_lang_code', 1, 'https://ror.org/02epwv805 Tekceleo (France)'),
(70265, 'https://ror.org/01x3ftb23', 'en', 1, 'https://ror.org/01x3ftb23 Biology of Infection DƩpartement Biologie Cellulaire et Infection'),
(70266, 'https://ror.org/01f8qyw75', 'en', 1, 'https://ror.org/01f8qyw75 Indian Institute of Information Technology, Pune ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø,ą¤Ŗą„ą¤£ą„‡'),
(70267, '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'),
(70268, 'https://ror.org/01wt3hp81', 'en', 1, 'https://ror.org/01wt3hp81 21st Century Education Research Institute 21世纪教育研究院'),
(70269, 'https://ror.org/055srzn87', 'en', 1, 'https://ror.org/055srzn87 9to5'),
(70270, 'https://ror.org/051ytw456', 'pt', 1, 'https://ror.org/051ytw456 ANDI ANDI – Comunicación y Derechos'),
(70271, 'https://ror.org/05ymybb54', 'en', 1, 'https://ror.org/05ymybb54 A Better Balance'),
(70272, 'https://ror.org/01pbfbp48', 'en', 1, 'https://ror.org/01pbfbp48 Abhivyakti Media for Development'),
(70273, 'https://ror.org/05c0pz938', 'pt', 1, 'https://ror.org/05c0pz938 Associação Brasileira de Pesquisadores Negros'),
(70274, 'https://ror.org/004y5mm20', 'en', 1, 'https://ror.org/004y5mm20 ACCE Institute'),
(70275, 'https://ror.org/0100dqc22', 'en', 1, 'https://ror.org/0100dqc22 Action Canada for Sexual Health and Rights'),
(70276, 'https://ror.org/00ctx3180', 'en', 1, 'https://ror.org/00ctx3180 Anveshi Research Centre for Women''s Studies'),
(70277, 'https://ror.org/02nz60c10', 'en', 1, 'https://ror.org/02nz60c10 Action Center on Race and the Economy'),
(70278, 'https://ror.org/055t40212', 'en', 1, 'https://ror.org/055t40212 Social Science Forum منتدى Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(70279, 'https://ror.org/01tmmd981', 'en', 1, 'https://ror.org/01tmmd981 Action Health Incorporated'),
(70280, 'https://ror.org/027fw3f96', 'en', 1, 'https://ror.org/027fw3f96 Arab Education Forum الملتقى Ų§Ł„ŲŖŲ±ŲØŁˆŁŠ Ų§Ł„Ų¹Ų±ŲØŁŠ'),
(70281, 'https://ror.org/01fr7xq53', 'en', 1, 'https://ror.org/01fr7xq53 Adaptive Design Association'),
(70282, 'https://ror.org/03zvmjp56', 'af', 1, 'https://ror.org/03zvmjp56 Afesis-Corplan'),
(70283, 'https://ror.org/00g7h8w74', 'en', 1, 'https://ror.org/00g7h8w74 Africa Centre for Energy Policy'),
(70284, 'https://ror.org/0280epy55', 'en', 1, 'https://ror.org/0280epy55 Arab Educational Information Network ؓبكة Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„ŲŖŲ±ŲØŁˆŁŠŲ©'),
(70285, 'https://ror.org/032ns4d39', 'en', 1, 'https://ror.org/032ns4d39 Arab Institute for Human Rights معهد Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ų­Ł‚ŁˆŁ‚ الانسان'),
(70286, 'https://ror.org/00kqgxx94', 'en', 1, 'https://ror.org/00kqgxx94 African Studies Association of India'),
(70287, 'https://ror.org/02hnqr243', 'en', 1, 'https://ror.org/02hnqr243 Arab NGO Network for Development ؓبكة المنظمات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© غير Ų§Ł„Ų­ŁƒŁˆŁ…ŁŠŲ© Ł„Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(70288, 'https://ror.org/002aev204', 'en', 1, 'https://ror.org/002aev204 African Institute for Leaders and Leadership'),
(70289, 'https://ror.org/03xw42v88', 'en', 1, 'https://ror.org/03xw42v88 African Woman and Child Feature Service'),
(70290, 'https://ror.org/007vw4k42', 'en', 1, 'https://ror.org/007vw4k42 Ag Innovations'),
(70291, 'https://ror.org/03med0831', 'en', 1, 'https://ror.org/03med0831 Al-Ahram Center for Political and Strategic Studies Ł…Ų±ŁƒŲ² الأهرام للدراسات Ų§Ł„Ų³ŁŠŲ§Ų³ŁŠŲ© ŁˆŲ§Ł„Ų§Ų³ŲŖŲ±Ų§ŲŖŁŠŲ¬ŁŠŲ©'),
(70292, 'https://ror.org/00tn5yw94', 'es', 1, 'https://ror.org/00tn5yw94 Red Argentina de Instituciones de MicrocrƩdito'),
(70293, 'https://ror.org/04bty2w72', 'en', 1, 'https://ror.org/04bty2w72 Albuquerque Academy'),
(70294, 'https://ror.org/00bq3m385', 'en', 1, 'https://ror.org/00bq3m385 Arise Citizens'' Policy Project'),
(70295, 'https://ror.org/03pm74b25', 'en', 1, 'https://ror.org/03pm74b25 Arkansas Community Colleges'),
(70296, 'https://ror.org/0538mca61', 'en', 1, 'https://ror.org/0538mca61 Align Economy Environment Equity'),
(70297, 'https://ror.org/01t3wc318', 'en', 1, 'https://ror.org/01t3wc318 All India Artisans and Craftworkers Welfare Association'),
(70298, 'https://ror.org/03496sr93', 'no_lang_code', 1, 'https://ror.org/03496sr93 ArteEast'),
(70299, 'https://ror.org/03bpswy98', 'en', 1, 'https://ror.org/03bpswy98 Alliance for a Just Society'),
(70300, 'https://ror.org/019qntf91', 'en', 1, 'https://ror.org/019qntf91 Article 19 Artigo 19'),
(70301, 'https://ror.org/03ar4yr57', 'en', 1, 'https://ror.org/03ar4yr57 Alliance for Justice'),
(70302, 'https://ror.org/022gyr952', 'en', 1, 'https://ror.org/022gyr952 Article 19'),
(70303, 'https://ror.org/04hc8pc27', 'en', 1, 'https://ror.org/04hc8pc27 The Allaince Advancing Regional Equity'),
(70304, 'https://ror.org/016xq8366', 'en', 1, 'https://ror.org/016xq8366 Arts & Science Council'),
(70305, 'https://ror.org/053rdtp97', 'en', 1, 'https://ror.org/053rdtp97 Artspace'),
(70306, 'https://ror.org/00hpx8e31', 'en', 1, 'https://ror.org/00hpx8e31 Asia Pacific Forum on Women, Law and Development'),
(70307, 'https://ror.org/00w46h989', 'en', 1, 'https://ror.org/00w46h989 Asian American Legal Defense and Education Fund'),
(70308, 'https://ror.org/01dsgkd63', 'en', 1, 'https://ror.org/01dsgkd63 Asian Americans/Pacific Islanders in Philanthropy'),
(70309, 'https://ror.org/02yvf4f12', 'en', 1, 'https://ror.org/02yvf4f12 Allied Media Projects'),
(70310, 'https://ror.org/059vdry28', 'en', 1, 'https://ror.org/059vdry28 Alternate Roots'),
(70311, 'https://ror.org/01tgg8632', 'en', 1, 'https://ror.org/01tgg8632 Asian Arts Initiative'),
(70312, 'https://ror.org/011rh1x94', 'en', 1, 'https://ror.org/011rh1x94 Alternative Law Forum'),
(70313, 'https://ror.org/04jg5kt84', 'en', 1, 'https://ror.org/04jg5kt84 Asian Pacific Environmental Network'),
(70314, 'https://ror.org/03f2wzg57', 'en', 1, 'https://ror.org/03f2wzg57 Asian-Pacific Resource and Research Centre for Women');
INSERT INTO `rors` VALUES
(70315, 'https://ror.org/025c20538', 'en', 1, 'https://ror.org/025c20538 America''s Voice'),
(70316, 'https://ror.org/04a7qxt37', 'en', 1, 'https://ror.org/04a7qxt37 InternetLab'),
(70317, 'https://ror.org/024srtw61', 'pt', 1, 'https://ror.org/024srtw61 Redes da MarƩ'),
(70318, 'https://ror.org/02e7nyv81', 'en', 1, 'https://ror.org/02e7nyv81 Associates Research'),
(70319, 'https://ror.org/04n8wxk74', 'en', 1, 'https://ror.org/04n8wxk74 American Immigration Lawyers Association'),
(70320, 'https://ror.org/029fsgw35', 'en', 1, 'https://ror.org/029fsgw35 Association for Democratic Reforms'),
(70321, 'https://ror.org/02f8pzn71', 'en', 1, 'https://ror.org/02f8pzn71 American Mandarin Society'),
(70322, 'https://ror.org/0491vhh68', 'en', 1, 'https://ror.org/0491vhh68 American Sustainable Business Institute'),
(70323, 'https://ror.org/04m4hft71', 'en', 1, 'https://ror.org/04m4hft71 Americans for Financial Reform Education Fund'),
(70324, 'https://ror.org/04sq27t34', 'en', 1, 'https://ror.org/04sq27t34 L''Association de la Promotion de la MƩdecine Traditionnelle PROMETRA International'),
(70325, 'https://ror.org/047py4r39', 'en', 1, 'https://ror.org/047py4r39 Americans for Indian Opportunity'),
(70326, 'https://ror.org/01xj9hs08', 'id', 1, 'https://ror.org/01xj9hs08 HuMA Perkumpulan HuMa Indonesia'),
(70327, 'https://ror.org/00ebf6w66', 'en', 1, 'https://ror.org/00ebf6w66 Americas Media Initiative'),
(70328, 'https://ror.org/01hc68e22', 'en', 1, 'https://ror.org/01hc68e22 Association of Baltimore Area Grantmakers'),
(70329, 'https://ror.org/0363ne177', 'en', 1, 'https://ror.org/0363ne177 ABFE'),
(70330, 'https://ror.org/03yjj4449', 'en', 1, 'https://ror.org/03yjj4449 El Museo'),
(70331, 'https://ror.org/02rrq9749', 'en', 1, 'https://ror.org/02rrq9749 Amnesty International Brazil'),
(70332, 'https://ror.org/053bgz920', 'en', 1, 'https://ror.org/053bgz920 Amnesty International USA'),
(70333, 'https://ror.org/00tpb5981', 'pt', 1, 'https://ror.org/00tpb5981 Conectas Conectas Direitos Humanos'),
(70334, 'https://ror.org/01z1azz52', 'en', 1, 'https://ror.org/01z1azz52 AIR'),
(70335, 'https://ror.org/02tjeq988', 'en', 1, 'https://ror.org/02tjeq988 Association of Media Women in Kenya'),
(70336, 'https://ror.org/04h3krc89', 'en', 1, 'https://ror.org/04h3krc89 National Secretariat - Indonesian Forum for Budget Transparency Sekretariat Nasional Forum Indonesia untuk Transparansi'),
(70337, 'https://ror.org/05h2nkq67', 'en', 1, 'https://ror.org/05h2nkq67 Association for Micro-Finance Institutions'),
(70338, 'https://ror.org/000eh9340', 'en', 1, 'https://ror.org/000eh9340 California Budget & Policy Center'),
(70339, 'https://ror.org/01dwwr847', 'en', 1, 'https://ror.org/01dwwr847 Filantropi Indonesia Indonesia Philanthropy Association'),
(70340, 'https://ror.org/03mc4hv80', 'en', 1, 'https://ror.org/03mc4hv80 California Latinas for Reproductive Justice'),
(70341, 'https://ror.org/03htrq259', 'en', 1, 'https://ror.org/03htrq259 Camino Public Relations'),
(70342, 'https://ror.org/01f3jm010', 'en', 1, 'https://ror.org/01f3jm010 Canadian Foundation for the Americas'),
(70343, 'https://ror.org/01qajny58', 'en', 1, 'https://ror.org/01qajny58 Capital Impact Partners'),
(70344, 'https://ror.org/04zqp3155', 'pt', 1, 'https://ror.org/04zqp3155 Movimento Interestadual das Quebradeiras de Coco BabaƧu'),
(70345, 'https://ror.org/02fkkph87', 'en', 1, 'https://ror.org/02fkkph87 CASA CASA de Maryland'),
(70346, 'https://ror.org/00kf1a996', 'pt', 1, 'https://ror.org/00kf1a996 Casa Fluminense'),
(70347, 'https://ror.org/04beybq30', 'en', 1, 'https://ror.org/04beybq30 Association to Contribute to Improve the Governance of Land, Water and Natural Resources'),
(70348, 'https://ror.org/00q1sca35', 'en', 1, 'https://ror.org/00q1sca35 Carnegie Moscow Center Московский Центр ŠšŠ°Ń€Š½ŠµŠ³Šø'),
(70349, 'https://ror.org/00fyaz829', 'en', 1, 'https://ror.org/00fyaz829 Catholics for Choice'),
(70350, 'https://ror.org/05q8qsw47', 'es', 1, 'https://ror.org/05q8qsw47 Católicas por el Derecho a Decidir'),
(70351, 'https://ror.org/05661qy18', 'no_lang_code', 1, 'https://ror.org/05661qy18 Ballet HispƔnico (United States)'),
(70352, 'https://ror.org/02r3mzm63', 'en', 1, 'https://ror.org/02r3mzm63 Center for Civic Policy'),
(70353, 'https://ror.org/03wkg1w97', 'en', 1, 'https://ror.org/03wkg1w97 Center for Democracy in the Americas'),
(70354, 'https://ror.org/044q96y41', 'en', 1, 'https://ror.org/044q96y41 Center for Economic and Social Rights'),
(70355, 'https://ror.org/03dg97q02', 'en', 1, 'https://ror.org/03dg97q02 Center for Economic Progress'),
(70356, 'https://ror.org/02mx3q756', 'en', 1, 'https://ror.org/02mx3q756 Better Life Association for Comprehensive Development'),
(70357, 'https://ror.org/00k8rrx20', 'pt', 1, 'https://ror.org/00k8rrx20 Centro de Estudos das RelaƧƵes de Trabalho e Desigualdades'),
(70358, 'https://ror.org/02m93y750', 'en', 1, 'https://ror.org/02m93y750 Center for Family Policy and Practice'),
(70359, 'https://ror.org/01dwh3q17', 'pt', 1, 'https://ror.org/01dwh3q17 Centro de Estudos e Pesquisa em SaĆŗde Coletiva'),
(70360, 'https://ror.org/04vr5fc04', 'en', 1, 'https://ror.org/04vr5fc04 China Association of Higher Educaiton äø­å›½é«˜ē­‰ę•™č‚²å­¦ä¼š'),
(70361, 'https://ror.org/02y2kap36', 'en', 1, 'https://ror.org/02y2kap36 Center for Global Policy Solutions'),
(70362, 'https://ror.org/01aq5nz90', 'en', 1, 'https://ror.org/01aq5nz90 China Development Brief äø­å›½å‘å±•ē®€ęŠ„'),
(70363, 'https://ror.org/05fbshr33', 'en', 1, 'https://ror.org/05fbshr33 National Housing Conference'),
(70364, 'https://ror.org/035f28x45', 'en', 1, 'https://ror.org/035f28x45 Zhicheng Public Interest Lawyers č‡“čÆšå…¬ē›Šå¾‹åøˆ'),
(70365, 'https://ror.org/05813hx64', 'en', 1, 'https://ror.org/05813hx64 Centre for Indigenous Cultures of Peru Centro de Culturas IndĆ­genas del PerĆŗ'),
(70366, 'https://ror.org/02qj00s11', 'en', 1, 'https://ror.org/02qj00s11 Center for International Policy'),
(70367, 'https://ror.org/02wfpbs86', 'en', 1, 'https://ror.org/02wfpbs86 China Family Planning Association äø­å›½č®”åˆ’ē”Ÿč‚²åä¼š'),
(70368, 'https://ror.org/01b9jms40', 'pt', 1, 'https://ror.org/01b9jms40 Centro de Estudos de SeguranƧa e Cidadania'),
(70369, 'https://ror.org/052ndyr48', 'en', 1, 'https://ror.org/052ndyr48 Center on Policy Initiatives'),
(70370, 'https://ror.org/03qbv1q25', 'en', 1, 'https://ror.org/03qbv1q25 China Institutes of Contemporary International Relations äø­å›½ēŽ°ä»£å›½é™…å…³ē³»ē ”ē©¶é™¢'),
(70371, 'https://ror.org/03m2raa30', 'en', 1, 'https://ror.org/03m2raa30 Beijing Gender Health Education Institute åŒ—äŗ¬ēŗŖå®‰å¾·å’ØčÆ¢äø­åæƒ'),
(70372, 'https://ror.org/016hmeh62', 'en', 1, 'https://ror.org/016hmeh62 Migrant Center For Human Rights'),
(70373, 'https://ror.org/042416g98', 'en', 1, 'https://ror.org/042416g98 China Education Press Agency äø­å›½ę•™č‚²ęŠ„åˆŠē¤¾'),
(70374, 'https://ror.org/04dsd4494', 'pt', 1, 'https://ror.org/04dsd4494 Central Única das Favelas'),
(70375, 'https://ror.org/01mesrv79', 'en', 1, 'https://ror.org/01mesrv79 Center for Neighborhood Technology'),
(70376, 'https://ror.org/0093y5e51', 'no_lang_code', 1, 'https://ror.org/0093y5e51 PanNature Trung tĆ¢m Con ngĘ°į»i vĆ  ThiĆŖn nhiĆŖn'),
(70377, 'https://ror.org/04bws0e60', 'en', 1, 'https://ror.org/04bws0e60 Centre for AIDS Development, Research and Evaluation'),
(70378, 'https://ror.org/004x6m349', 'en', 1, 'https://ror.org/004x6m349 Centre for Communication and Development Studies'),
(70379, 'https://ror.org/03546qf24', 'en', 1, 'https://ror.org/03546qf24 China Law Society'),
(70380, 'https://ror.org/052rhds27', 'en', 1, 'https://ror.org/052rhds27 Centre for Environmental Rights'),
(70381, 'https://ror.org/03rw4ty96', 'en', 1, 'https://ror.org/03rw4ty96 Beijing Social Work Development Center for Facilitators åŒ—äŗ¬åø‚åä½œč€…ē¤¾ä¼šå·„ä½œå‘å±•äø­åæƒ'),
(70382, 'https://ror.org/04bakg991', 'en', 1, 'https://ror.org/04bakg991 Center for Popular Democracy'),
(70383, 'https://ror.org/04d90y792', 'en', 1, 'https://ror.org/04d90y792 China Philanthropy Research Institute äø­å›½å…¬ē›Šē ”ē©¶é™¢'),
(70384, 'https://ror.org/05wyk6k55', 'en', 1, 'https://ror.org/05wyk6k55 Centre for Higher Education Trust'),
(70385, 'https://ror.org/058sdr222', 'en', 1, 'https://ror.org/058sdr222 Center for Public Policy Priorities'),
(70386, 'https://ror.org/05n7d5e22', 'en', 1, 'https://ror.org/05n7d5e22 Centre for Innovation Policy and Governance'),
(70387, 'https://ror.org/05ae5sf68', 'en', 1, 'https://ror.org/05ae5sf68 China Population Welfare Foundation äø­å›½äŗŗå£ē¦åˆ©åŸŗé‡‘ä¼š'),
(70388, 'https://ror.org/00j71tm53', 'en', 1, 'https://ror.org/00j71tm53 Beijing Yilian Legal Aid and Research Center of Labor åŒ—äŗ¬ä¹‰č”åŠ³åŠØę³•ę“åŠ©äøŽē ”ē©¶äø­åæƒ'),
(70389, 'https://ror.org/04aq1wg32', 'en', 1, 'https://ror.org/04aq1wg32 The Supreme People''s Procuratorate of the People''s Republic of China äø­å›½ę£€åÆŸå®˜åä¼š'),
(70390, 'https://ror.org/04w200405', 'en', 1, 'https://ror.org/04w200405 Beirut Art Center Ł…Ų±ŁƒŲ² بيروت للفن'),
(70391, 'https://ror.org/046vj6r42', 'en', 1, 'https://ror.org/046vj6r42 China Sexology Association äø­å›½ę€§å­¦ä¼š'),
(70392, 'https://ror.org/009xbxr65', 'en', 1, 'https://ror.org/009xbxr65 Beloved Community Center'),
(70393, 'https://ror.org/04sdkmx42', 'id', 1, 'https://ror.org/04sdkmx42 Ciliwung Merdeka'),
(70394, 'https://ror.org/01md5nh91', 'en', 1, 'https://ror.org/01md5nh91 Centre for Research and Technology Development'),
(70395, 'https://ror.org/04kw2cw23', 'en', 1, 'https://ror.org/04kw2cw23 Center for Responsible Lending'),
(70396, 'https://ror.org/03evgp013', 'en', 1, 'https://ror.org/03evgp013 Centre for Rural Legal Studies'),
(70397, 'https://ror.org/027f5c287', 'en', 1, 'https://ror.org/027f5c287 Citizen University'),
(70398, 'https://ror.org/011cev627', 'en', 1, 'https://ror.org/011cev627 Bend the Arc: A Jewish Partnership for Justice'),
(70399, 'https://ror.org/02awtmh12', 'en', 1, 'https://ror.org/02awtmh12 Centre for Rural Studies and Development'),
(70400, 'https://ror.org/02ngckp60', 'en', 1, 'https://ror.org/02ngckp60 Citizens’ Housing and Planning Association'),
(70401, 'https://ror.org/0551yxg63', 'en', 1, 'https://ror.org/0551yxg63 Centre for Social Justice'),
(70402, 'https://ror.org/02d894j61', 'hi', 1, 'https://ror.org/02d894j61 Bhasha'),
(70403, 'https://ror.org/05r957b25', 'en', 1, 'https://ror.org/05r957b25 Citizenship, Studies, Research, Information and Action'),
(70404, 'https://ror.org/054wvz232', 'en', 1, 'https://ror.org/054wvz232 Centre for Study of Society and Secularism'),
(70405, 'https://ror.org/05jh6qs86', 'en', 1, 'https://ror.org/05jh6qs86 Entrepreneurial Ecosystems'),
(70406, 'https://ror.org/01m0rks68', 'en', 1, 'https://ror.org/01m0rks68 City Year'),
(70407, 'https://ror.org/021wayr39', 'en', 1, 'https://ror.org/021wayr39 Big Sky Institute'),
(70408, 'https://ror.org/05395nj08', 'en', 1, 'https://ror.org/05395nj08 Civil Society Budget Advocacy Group'),
(70409, 'https://ror.org/05kavjv60', 'en', 1, 'https://ror.org/05kavjv60 Centre for the Study of Violence and Reconciliation'),
(70410, 'https://ror.org/02hv72q61', 'en', 1, 'https://ror.org/02hv72q61 Center for Rural Strategies'),
(70411, 'https://ror.org/02egkac43', 'en', 1, 'https://ror.org/02egkac43 TechSoup'),
(70412, 'https://ror.org/01s78ww38', 'en', 1, 'https://ror.org/01s78ww38 Border Network for Human Rights'),
(70413, 'https://ror.org/04qw67643', 'en', 1, 'https://ror.org/04qw67643 Community Labor United'),
(70414, 'https://ror.org/05kmtkm08', 'en', 1, 'https://ror.org/05kmtkm08 Community Life Project'),
(70415, 'https://ror.org/052zq7x94', 'pt', 1, 'https://ror.org/052zq7x94 Fundo Brasil Fundo Brasil de Direitos Humanos'),
(70416, 'https://ror.org/050h8nq90', 'en', 1, 'https://ror.org/050h8nq90 Collaboration on International ICT Policy in East and Southern Africa'),
(70417, 'https://ror.org/01vqq1j88', 'en', 1, 'https://ror.org/01vqq1j88 Community Voices Heard'),
(70418, 'https://ror.org/04469fh44', 'en', 1, 'https://ror.org/04469fh44 Colombian Commission of Jurists Comisión Colombiana de Juristas'),
(70419, 'https://ror.org/0070nd560', 'en', 1, 'https://ror.org/0070nd560 Comprehensive OBGYN'),
(70420, 'https://ror.org/050dsb089', 'en', 1, 'https://ror.org/050dsb089 Colorado Organization for Latina Opportunity and Reproductive Rights'),
(70421, 'https://ror.org/02v9x8e34', 'no_lang_code', 1, 'https://ror.org/02v9x8e34 Ocunexus Therapeutics (United States)'),
(70422, 'https://ror.org/01nmjw537', 'en', 1, 'https://ror.org/01nmjw537 Constituency for Africa'),
(70423, 'https://ror.org/046sr9880', 'pt', 1, 'https://ror.org/046sr9880 Instituto Brasileiro de Defesa do Consumidor'),
(70424, 'https://ror.org/00gvdzs88', 'en', 1, 'https://ror.org/00gvdzs88 Color Of Change'),
(70425, 'https://ror.org/02y14pt84', 'en', 1, 'https://ror.org/02y14pt84 Constitution and Reform Education Consortium'),
(70426, 'https://ror.org/05rzjz037', 'en', 1, 'https://ror.org/05rzjz037 Combine Resource Institution'),
(70427, 'https://ror.org/02hs9bv14', 'en', 1, 'https://ror.org/02hs9bv14 Committee to Protect Journalists'),
(70428, 'https://ror.org/05w78km23', 'pt', 1, 'https://ror.org/05w78km23 Instituto Brasileiro de AnƔlises Sociais e EconƓmicas'),
(70429, 'https://ror.org/04syf8713', 'en', 1, 'https://ror.org/04syf8713 Common Cause Education Fund'),
(70430, 'https://ror.org/0598sqh06', 'es', 1, 'https://ror.org/0598sqh06 Centro Regional de Derechos Humanos y Justicia de Género, Corporación Humanas'),
(70431, 'https://ror.org/03kecmv77', 'en', 1, 'https://ror.org/03kecmv77 Consumer Federation of America'),
(70432, 'https://ror.org/03f0f5j83', 'en', 1, 'https://ror.org/03f0f5j83 Communications Consortium Media Center'),
(70433, 'https://ror.org/00t5ymp38', 'en', 1, 'https://ror.org/00t5ymp38 Scientific Center of Zoology and Hydroecology ŌæÕ„Õ¶Õ¤Õ”Õ¶Õ”Õ¢Õ”Õ¶ÕøÖ‚Õ©ÕµÕ”Õ¶ և Õ°Õ«Õ¤Ö€ÕøÕ§ÕÆÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ« Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(70434, 'https://ror.org/057v97d67', 'en', 1, 'https://ror.org/057v97d67 Chengdu Shuguang Community Development Capacity Building Center'),
(70435, 'https://ror.org/03ymrta62', 'en', 1, 'https://ror.org/03ymrta62 Child Welfare Society of Kenya'),
(70436, 'https://ror.org/03kcznq08', 'en', 1, 'https://ror.org/03kcznq08 Convergence'),
(70437, 'https://ror.org/02jk5za03', 'en', 1, 'https://ror.org/02jk5za03 Women''s Rights International'),
(70438, 'https://ror.org/05k6f1688', 'en', 1, 'https://ror.org/05k6f1688 Children’s Action Alliance'),
(70439, 'https://ror.org/035az3a76', 'en', 1, 'https://ror.org/035az3a76 China Arms Control and Disarmament Association äø­å›½å†›ęŽ§äøŽč£å†›åä¼š'),
(70440, 'https://ror.org/03ye55p43', 'en', 1, 'https://ror.org/03ye55p43 Brazilian Interdisciplinary AIDS Association'),
(70441, 'https://ror.org/030z00d05', 'en', 1, 'https://ror.org/030z00d05 China Association for NGO Cooperation äø­å›½å›½é™…ę°‘é—“ē»„ē»‡åˆä½œäæƒčæ›ä¼š'),
(70442, 'https://ror.org/00dyj9f84', 'en', 1, 'https://ror.org/00dyj9f84 Communities Unlimited'),
(70443, 'https://ror.org/02e00fb34', 'en', 1, 'https://ror.org/02e00fb34 Cooper''s Ferry Partnership'),
(70444, 'https://ror.org/035dzbx92', 'en', 1, 'https://ror.org/035dzbx92 Community Aid International'),
(70445, 'https://ror.org/02eg9wt87', 'en', 1, 'https://ror.org/02eg9wt87 Community Catalyst'),
(70446, 'https://ror.org/03rkfnq75', 'en', 1, 'https://ror.org/03rkfnq75 Equal Education Law Centre'),
(70447, 'https://ror.org/01whqqg65', 'en', 1, 'https://ror.org/01whqqg65 Community Development Advocates of Detroit'),
(70448, 'https://ror.org/01msk4m94', 'en', 1, 'https://ror.org/01msk4m94 Education Law Center'),
(70449, 'https://ror.org/03wpmcv13', 'en', 1, 'https://ror.org/03wpmcv13 Education Through Music'),
(70450, 'https://ror.org/05awv5h47', 'en', 1, 'https://ror.org/05awv5h47 Community Development Corporation of Brownsville'),
(70451, 'https://ror.org/020x5hh56', 'en', 1, 'https://ror.org/020x5hh56 Council of Urban Professionals'),
(70452, 'https://ror.org/032q63062', 'en', 1, 'https://ror.org/032q63062 Equitas - International Centre for Human Rights Education'),
(70453, 'https://ror.org/016agrs27', 'en', 1, 'https://ror.org/016agrs27 Crescent City Community Land Trust'),
(70454, 'https://ror.org/02hvmpx91', 'es', 1, 'https://ror.org/02hvmpx91 ACICAFOC'),
(70455, 'https://ror.org/01pqxf729', 'pt', 1, 'https://ror.org/01pqxf729 Instituto Eqüit – GĆŖnero, Economia e Cidadania Global'),
(70456, 'https://ror.org/04sw2sb76', 'en', 1, 'https://ror.org/04sw2sb76 Cuban Artists Fund'),
(70457, 'https://ror.org/05gt2gw76', 'en', 1, 'https://ror.org/05gt2gw76 Educational Video Center'),
(70458, 'https://ror.org/005pgmf34', 'pt', 1, 'https://ror.org/005pgmf34 Associação Cultural de Mulheres Negras'),
(70459, 'https://ror.org/055kf5191', 'en', 1, 'https://ror.org/055kf5191 Fuping Development Institute åŒ—äŗ¬åÆŒå¹³å­¦ę ”'),
(70460, 'https://ror.org/02nq88n11', 'en', 1, 'https://ror.org/02nq88n11 Gamaliel'),
(70461, 'https://ror.org/01ekv6k42', 'en', 1, 'https://ror.org/01ekv6k42 Green Camel Bell ē»æé©¼é“ƒ'),
(70462, 'https://ror.org/02pzza935', 'en', 1, 'https://ror.org/02pzza935 Culture Resource Ų§Ł„Ł…ŁˆŲ±ŲÆ Ų§Ł„Ų«Ł‚Ų§ŁŁŠ'),
(70463, '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'),
(70464, 'https://ror.org/01qvanv50', 'en', 1, 'https://ror.org/01qvanv50 AshƩ'),
(70465, 'https://ror.org/04xh5t898', 'en', 1, 'https://ror.org/04xh5t898 Egyptian Center for Culture and Arts'),
(70466, 'https://ror.org/01emkn494', 'en', 1, 'https://ror.org/01emkn494 DC Arts & Humanities Education Collaborative'),
(70467, 'https://ror.org/01zs7ak06', 'pt', 1, 'https://ror.org/01zs7ak06 GeledƩs Instituto da Mulher Negra'),
(70468, 'https://ror.org/04b0ymk71', 'es', 1, 'https://ror.org/04b0ymk71 ESE:O'),
(70469, 'https://ror.org/01h3j2d14', 'en', 1, 'https://ror.org/01h3j2d14 Detroit Economic Growth Corporation'),
(70470, 'https://ror.org/047h63042', 'no_lang_code', 1, 'https://ror.org/047h63042 Eko-Konnect'),
(70471, 'https://ror.org/01s6jvm36', 'en', 1, 'https://ror.org/01s6jvm36 ExpandED Schools'),
(70472, 'https://ror.org/05v9zxy89', 'en', 1, 'https://ror.org/05v9zxy89 Georgia Stand-Up'),
(70473, 'https://ror.org/043amj005', 'en', 1, 'https://ror.org/043amj005 Development Alternatives with Women for a New Era'),
(70474, 'https://ror.org/00v3tje97', 'en', 1, 'https://ror.org/00v3tje97 The Faith & Politics Institute'),
(70475, 'https://ror.org/03spr2751', 'en', 1, 'https://ror.org/03spr2751 Empower Schools'),
(70476, 'https://ror.org/053fkzm08', 'en', 1, 'https://ror.org/053fkzm08 Gideon''s Promise'),
(70477, 'https://ror.org/02nrznb68', 'en', 1, 'https://ror.org/02nrznb68 Energy Programs Consortium'),
(70478, 'https://ror.org/01kbwt308', 'en', 1, 'https://ror.org/01kbwt308 International Planned Parenthood Federation'),
(70479, 'https://ror.org/0167k2h60', 'en', 1, 'https://ror.org/0167k2h60 Development Network of Indigenous Voluntary Associations'),
(70480, 'https://ror.org/025314t43', 'en', 1, 'https://ror.org/025314t43 EngageMedia'),
(70481, 'https://ror.org/04nm9tm11', 'en', 1, 'https://ror.org/04nm9tm11 Girls Not Brides'),
(70482, 'https://ror.org/00ghwyh51', 'en', 1, 'https://ror.org/00ghwyh51 Environmental Grantmakers Association'),
(70483, 'https://ror.org/05dhgv769', 'en', 1, 'https://ror.org/05dhgv769 Campaign for Migrant Worker Justice'),
(70484, 'https://ror.org/05jn4m407', 'en', 1, 'https://ror.org/05jn4m407 Environmental Health Coalition'),
(70485, 'https://ror.org/01m2mh218', 'en', 1, 'https://ror.org/01m2mh218 Dhow Countries Music Academy'),
(70486, 'https://ror.org/00yn65598', 'en', 1, 'https://ror.org/00yn65598 Environmental Simulation Center'),
(70487, 'https://ror.org/0187g4p12', 'en', 1, 'https://ror.org/0187g4p12 Down Syndrome Society of Kenya'),
(70488, 'https://ror.org/04k2y5271', 'en', 1, 'https://ror.org/04k2y5271 Epic Theatre Ensemble'),
(70489, 'https://ror.org/01a4m6398', 'no_lang_code', 1, 'https://ror.org/01a4m6398 Fahe'),
(70490, 'https://ror.org/05kcpgf42', 'en', 1, 'https://ror.org/05kcpgf42 Dudley Street Neighborhood Initiative'),
(70491, 'https://ror.org/05qt0wt98', 'en', 1, 'https://ror.org/05qt0wt98 Global Americans'),
(70492, 'https://ror.org/05tc5ha67', 'en', 1, 'https://ror.org/05tc5ha67 EARN'),
(70493, 'https://ror.org/042730j21', 'en', 1, 'https://ror.org/042730j21 Global Campaign for Education United States'),
(70494, 'https://ror.org/05s9qrg03', 'en', 1, 'https://ror.org/05s9qrg03 Equal Education'),
(70495, 'https://ror.org/04e12gr29', 'es', 1, 'https://ror.org/04e12gr29 Federación de Instituciones y Organismos Financieros Rurales'),
(70496, 'https://ror.org/05jskhr58', 'en', 1, 'https://ror.org/05jskhr58 Global Environmental Institute å…ØēƒēŽÆå¢ƒē ”ē©¶ę‰€'),
(70497, 'https://ror.org/01zd2ew48', 'en', 1, 'https://ror.org/01zd2ew48 Hlanganisa Institute for Development Southern Africa'),
(70498, 'https://ror.org/04fs8fj61', 'en', 1, 'https://ror.org/04fs8fj61 East Africa Law Society'),
(70499, 'https://ror.org/052brmw32', 'en', 1, 'https://ror.org/052brmw32 Centro Feminista de Estudos e Assessoria Feminist Center for Studies and Advisory Services'),
(70500, 'https://ror.org/04awy3v08', 'en', 1, 'https://ror.org/04awy3v08 Eastern Africa Centre for Constitutional Development Kituo cha Katiba'),
(70501, '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'),
(70502, 'https://ror.org/00w0b1y51', 'en', 1, 'https://ror.org/00w0b1y51 Global Press'),
(70503, 'https://ror.org/04n49tc44', 'en', 1, 'https://ror.org/04n49tc44 Economic Policy Research Institute'),
(70504, 'https://ror.org/05vd07545', 'no_lang_code', 1, 'https://ror.org/05vd07545 Filene'),
(70505, 'https://ror.org/04k0m1906', 'no_lang_code', 1, 'https://ror.org/04k0m1906 GlobalAgRisk (United States)'),
(70506, 'https://ror.org/02pv3ns50', 'no_lang_code', 1, 'https://ror.org/02pv3ns50 Go Sheng'),
(70507, 'https://ror.org/02bchz941', 'es', 1, 'https://ror.org/02bchz941 Instituto para la Seguridad y Democracia'),
(70508, 'https://ror.org/013b0x867', 'en', 1, 'https://ror.org/013b0x867 Florida Policy Institute'),
(70509, 'https://ror.org/02jwx1966', 'en', 1, 'https://ror.org/02jwx1966 Good Jobs First'),
(70510, 'https://ror.org/041mxbp20', 'en', 1, 'https://ror.org/041mxbp20 Housing and Community Development Network of New Jersey'),
(70511, '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'),
(70512, 'https://ror.org/02mwx3w72', 'en', 1, 'https://ror.org/02mwx3w72 Food and Finance High School'),
(70513, 'https://ror.org/01vbszv89', 'en', 1, 'https://ror.org/01vbszv89 The Institute for Southern Studies'),
(70514, 'https://ror.org/0501kzx55', 'en', 1, 'https://ror.org/0501kzx55 Grantmakers for Effective Organizations'),
(70515, 'https://ror.org/029ajv121', 'en', 1, 'https://ror.org/029ajv121 United Philanthropy Forum'),
(70516, 'https://ror.org/05fv6dp97', 'en', 1, 'https://ror.org/05fv6dp97 Grantmakers in the Arts'),
(70517, 'https://ror.org/03mxmdc96', 'en', 1, 'https://ror.org/03mxmdc96 Institute of Religious Studies Instituto de Estudos da Religião'),
(70518, 'https://ror.org/04tzn6q94', 'en', 1, 'https://ror.org/04tzn6q94 Grassroots Institute for Fundraising Training'),
(70519, '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'),
(70520, 'https://ror.org/02j1gpv02', 'en', 1, 'https://ror.org/02j1gpv02 Great Lakes Institute for Strategic Studies'),
(70521, 'https://ror.org/035jk1734', 'es', 1, 'https://ror.org/035jk1734 Forum Solidaridad PerĆŗ'),
(70522, 'https://ror.org/04kwf3417', 'en', 1, 'https://ror.org/04kwf3417 Housing California'),
(70523, 'https://ror.org/04p0tpz02', 'en', 1, 'https://ror.org/04p0tpz02 The Greenlining Institute'),
(70524, 'https://ror.org/04vy99971', 'en', 1, 'https://ror.org/04vy99971 Forward Cities'),
(70525, 'https://ror.org/01kqhzq55', 'pt', 1, 'https://ror.org/01kqhzq55 Associação Nacional de Direitos Humanos, Pesquisa e Pós-Graduação'),
(70526, 'https://ror.org/05caamn50', 'pt', 1, 'https://ror.org/05caamn50 Instituto para o Desenvolvimento do Jornalismo'),
(70527, 'https://ror.org/03n4e9s45', 'en', 1, 'https://ror.org/03n4e9s45 Human Services Coalition'),
(70528, 'https://ror.org/0151ap895', 'en', 1, 'https://ror.org/0151ap895 Institute for Transportation and Development Policy'),
(70529, 'https://ror.org/05avpf476', 'en', 1, 'https://ror.org/05avpf476 Gujarat Institute of Desert Ecology'),
(70530, 'https://ror.org/01nnqk936', 'en', 1, 'https://ror.org/01nnqk936 Gulf Coast Housing Partnership'),
(70531, 'https://ror.org/050c6pn54', 'en', 1, 'https://ror.org/050c6pn54 International Alliance on Natural Resources in Africa'),
(70532, 'https://ror.org/050qmy682', 'es', 1, 'https://ror.org/050qmy682 Fundación Nacional para el Desarrollo'),
(70533, 'https://ror.org/02h0a0v43', 'en', 1, 'https://ror.org/02h0a0v43 Institute for Development and Economic Analysis Perhimpunan IDEA'),
(70534, 'https://ror.org/02cxa8527', 'en', 1, 'https://ror.org/02cxa8527 iCivics'),
(70535, 'https://ror.org/039d0ar12', 'no_lang_code', 1, 'https://ror.org/039d0ar12 Hattaway Communications (United States)'),
(70536, 'https://ror.org/040x93a09', 'en', 1, 'https://ror.org/040x93a09 Hawaii Institute for Public Affairs'),
(70537, 'https://ror.org/03mj23d77', 'en', 1, 'https://ror.org/03mj23d77 Institute of Livelihood Research and Training ą°²ą±†ą±–ą°µą±ą°²ą±€ą°¹ą±ą°”ą± ą°°ą±€ą°øą±†ą°°ą±ą°šą± ą°…ą°‚ą°”ą± ą°Ÿą±ą°°ą±†ą±–ą°Øą°æą°‚ą°—ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą±'),
(70538, 'https://ror.org/040zv4433', 'en', 1, 'https://ror.org/040zv4433 Il’laramatak Community Concerns'),
(70539, 'https://ror.org/03vx81s20', 'en', 1, 'https://ror.org/03vx81s20 Mamta Health Institute for Mother and Child'),
(70540, 'https://ror.org/02gemh168', 'id', 1, 'https://ror.org/02gemh168 Asosiasi Perempuan Indonesia untuk Keadilan'),
(70541, 'https://ror.org/0557mg878', 'en', 1, 'https://ror.org/0557mg878 Independent Institute for Social Policy ŠŠµŠ·Š°Š²ŠøŃŠøŠ¼Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ политики'),
(70542, 'https://ror.org/00cx9zc82', 'en', 1, 'https://ror.org/00cx9zc82 Hill House Association'),
(70543, 'https://ror.org/04w1vws04', 'en', 1, 'https://ror.org/04w1vws04 Indian Institute of Dalit Studies दलित ą¤øą„ą¤Ÿą¤”ą„€ą¤œ का ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(70544, 'https://ror.org/03tkmjj17', 'en', 1, 'https://ror.org/03tkmjj17 Indian Law Resource Center'),
(70545, 'https://ror.org/020jcq616', 'en', 1, 'https://ror.org/020jcq616 Institute of Social Studies Trust'),
(70546, 'https://ror.org/008y34898', 'en', 1, 'https://ror.org/008y34898 Guangdong Association of STD and AIDS Prevention and Control å¹æäøœēœę€§ē—…č‰¾ę»‹ē—…é˜²ę²»åä¼š'),
(70547, 'https://ror.org/03aamfw77', 'en', 1, 'https://ror.org/03aamfw77 Freedman Consulting'),
(70548, 'https://ror.org/00w9dm031', 'en', 1, 'https://ror.org/00w9dm031 Institute on Taxation and Economic Policy'),
(70549, 'https://ror.org/057kcg264', 'en', 1, 'https://ror.org/057kcg264 Freedom of the Press Foundation'),
(70550, 'https://ror.org/04ntxw843', 'en', 1, 'https://ror.org/04ntxw843 International Cinema Education'),
(70551, 'https://ror.org/02mpe3v47', 'en', 1, 'https://ror.org/02mpe3v47 Fund for Constitutional Government'),
(70552, 'https://ror.org/05h9c9c83', 'en', 1, 'https://ror.org/05h9c9c83 Grupo de Información en Reproducción Elegida Information Group on Reproductive Choice'),
(70553, 'https://ror.org/02wqcra62', 'es', 1, 'https://ror.org/02wqcra62 Fundación para el Desarrollo Integral del Valle del Cauca ProPacífico'),
(70554, 'https://ror.org/05wm19m06', 'es', 1, 'https://ror.org/05wm19m06 Instituto CentroAmericano de Estudios para la Democracia Social'),
(70555, 'https://ror.org/02ftc0e34', 'en', 1, 'https://ror.org/02ftc0e34 Innovative Housing Institute'),
(70556, 'https://ror.org/032jd4h63', 'es', 1, 'https://ror.org/032jd4h63 Fundación Pro Vivienda Social'),
(70557, 'https://ror.org/034dmsh02', 'en', 1, 'https://ror.org/034dmsh02 Insight Center for Community Economic Development'),
(70558, 'https://ror.org/05j704380', 'en', 1, 'https://ror.org/05j704380 International Media Support'),
(70559, 'https://ror.org/05ahssc06', 'pt', 1, 'https://ror.org/05ahssc06 Instituto de Pesquisas e Estudos Afro Brasileiros'),
(70560, 'https://ror.org/05fe6f045', 'es', 1, 'https://ror.org/05fe6f045 Centro de AnÔlisis e Investigación Fundar'),
(70561, 'https://ror.org/0488afy73', 'en', 1, 'https://ror.org/0488afy73 Institute for Technology & Society Instituto de Tecnologia e Sociedade'),
(70562, 'https://ror.org/05t02jp64', 'en', 1, 'https://ror.org/05t02jp64 National Housing Trust'),
(70563, 'https://ror.org/024m9cy67', 'en', 1, 'https://ror.org/024m9cy67 Funders'' Network for Smart Growth and Livable Communities'),
(70564, 'https://ror.org/0144ggd58', 'en', 1, 'https://ror.org/0144ggd58 International Research and Development Actions'),
(70565, 'https://ror.org/045nmj854', 'pt', 1, 'https://ror.org/045nmj854 Terra de Direitos'),
(70566, 'https://ror.org/03qkv5w58', 'en', 1, 'https://ror.org/03qkv5w58 Inward Bound Mindfulness Education'),
(70567, 'https://ror.org/05ts8kw37', 'pt', 1, 'https://ror.org/05ts8kw37 Instituto de Terras do ParĆ”'),
(70568, 'https://ror.org/02x0dpr51', 'en', 1, 'https://ror.org/02x0dpr51 Intellectual Property Watch'),
(70569, 'https://ror.org/04g8zfc73', 'pt', 1, 'https://ror.org/04g8zfc73 Ethnic Media Institute Instituto Midia Ɖtnica'),
(70570, 'https://ror.org/00tay8944', 'es', 1, 'https://ror.org/00tay8944 Instituto Nacional de Derechos Humanos'),
(70571, 'https://ror.org/038tbvr34', 'pt', 1, 'https://ror.org/038tbvr34 Instituto Papai'),
(70572, 'https://ror.org/013ysep90', 'no_lang_code', 1, 'https://ror.org/013ysep90 Isandla Institute'),
(70573, 'https://ror.org/04j7q4722', 'en', 1, 'https://ror.org/04j7q4722 Institute for Jewish Policy Research'),
(70574, 'https://ror.org/01w3syr35', 'en', 1, 'https://ror.org/01w3syr35 Iseal Alliance'),
(70575, 'https://ror.org/054v2h819', 'en', 1, 'https://ror.org/054v2h819 Instituto Procomum Procomum Institute'),
(70576, 'https://ror.org/04kae8j43', 'en', 1, 'https://ror.org/04kae8j43 Instituto'),
(70577, 'https://ror.org/00t5yad55', 'en', 1, 'https://ror.org/00t5yad55 Isis-WICCE'),
(70578, 'https://ror.org/007q9sw85', 'en', 1, 'https://ror.org/007q9sw85 Institute for Law and Environmental Governance'),
(70579, 'https://ror.org/03kpvz984', 'en', 1, 'https://ror.org/03kpvz984 Jobs With Justice'),
(70580, 'https://ror.org/03s1pjm91', 'no_lang_code', 1, 'https://ror.org/03s1pjm91 LatinoJustice PRLDEF'),
(70581, 'https://ror.org/0089yx556', 'en', 1, 'https://ror.org/0089yx556 Lawyers Collective'),
(70582, 'https://ror.org/03a3z0217', 'en', 1, 'https://ror.org/03a3z0217 Institute for Research and Empowerment'),
(70583, 'https://ror.org/02djg6z12', 'en', 1, 'https://ror.org/02djg6z12 Institute for Science and International Security'),
(70584, 'https://ror.org/039y2jb71', 'en', 1, 'https://ror.org/039y2jb71 Lawyers'' Committee for Civil Rights Under Law'),
(70585, 'https://ror.org/03cxgaw61', 'no_lang_code', 1, 'https://ror.org/03cxgaw61 K-Rep Development Agency (Kenya)'),
(70586, 'https://ror.org/039dvf662', 'en', 1, 'https://ror.org/039dvf662 Kenya Community Development Foundation'),
(70587, 'https://ror.org/01s897575', 'en', 1, 'https://ror.org/01s897575 Leadership Conference Education Fund'),
(70588, 'https://ror.org/04y64y937', 'en', 1, 'https://ror.org/04y64y937 Kenya Human Rights Commission'),
(70589, 'https://ror.org/00cw00f88', 'en', 1, 'https://ror.org/00cw00f88 Media Council of Kenya'),
(70590, 'https://ror.org/04zdyxh40', 'en', 1, 'https://ror.org/04zdyxh40 Kenya Land Alliance'),
(70591, 'https://ror.org/01cjzrq61', 'en', 1, 'https://ror.org/01cjzrq61 Media Matters for America'),
(70592, 'https://ror.org/0287y3s68', 'en', 1, 'https://ror.org/0287y3s68 Echo Network Africa'),
(70593, 'https://ror.org/00awv0k06', 'es', 1, 'https://ror.org/00awv0k06 Instituto de Liderazgo Simone de Beauvoir'),
(70594, 'https://ror.org/01s2wtj48', 'pt', 1, 'https://ror.org/01s2wtj48 Instituto Sou da Paz'),
(70595, 'https://ror.org/01q0h5a15', 'en', 1, 'https://ror.org/01q0h5a15 Media Rights Agenda'),
(70596, 'https://ror.org/03wxe4k21', 'no_lang_code', 1, 'https://ror.org/03wxe4k21 Ketebul Music'),
(70597, 'https://ror.org/034v70z81', 'en', 1, 'https://ror.org/034v70z81 Medical Education Cooperation with Cuba'),
(70598, 'https://ror.org/004mh3p35', 'en', 1, 'https://ror.org/004mh3p35 Keystone Research Center'),
(70599, 'https://ror.org/023qjpe11', 'en', 1, 'https://ror.org/023qjpe11 LEAP Africa'),
(70600, 'https://ror.org/01qyb4t36', 'en', 1, 'https://ror.org/01qyb4t36 Interaction Institute for Social Change'),
(70601, 'https://ror.org/03k85sj46', 'en', 1, 'https://ror.org/03k85sj46 Learning Policy Institute'),
(70602, 'https://ror.org/03xpvmx27', 'en', 1, 'https://ror.org/03xpvmx27 Kovno Communications'),
(70603, 'https://ror.org/01e10rp58', 'en', 1, 'https://ror.org/01e10rp58 Interfaith Worker Justice'),
(70604, 'https://ror.org/05xht1n33', 'en', 1, 'https://ror.org/05xht1n33 Labor Community Strategy Center'),
(70605, 'https://ror.org/05mx2as72', 'es', 1, 'https://ror.org/05mx2as72 Comisión Mexicana de Defensa y Promoción de los Derechos Humanos'),
(70606, 'https://ror.org/04nt7yh90', 'en', 1, 'https://ror.org/04nt7yh90 Lambda Legal'),
(70607, 'https://ror.org/04rzrwk66', 'en', 1, 'https://ror.org/04rzrwk66 International Centre for Mathematical and Computer Sciences'),
(70608, 'https://ror.org/01hg97084', 'en', 1, 'https://ror.org/01hg97084 New York Theatre Workshop'),
(70609, 'https://ror.org/05cbsyd36', 'en', 1, 'https://ror.org/05cbsyd36 National Committee for Responsive Philanthropy'),
(70610, 'https://ror.org/02x9mk733', 'es', 1, 'https://ror.org/02x9mk733 Consejo Civil Mexicano para la Silvicultura Sostenible'),
(70611, 'https://ror.org/01t03c617', 'en', 1, 'https://ror.org/01t03c617 Newark Trust for Education'),
(70612, 'https://ror.org/008qv2m62', 'id', 1, 'https://ror.org/008qv2m62 Lembaga Gemawan'),
(70613, 'https://ror.org/049ya5256', 'en', 1, 'https://ror.org/049ya5256 Next City'),
(70614, 'https://ror.org/042bs8227', 'es', 1, 'https://ror.org/042bs8227 Centro Mexicano de Derecho Ambiental'),
(70615, 'https://ror.org/05qdccy43', 'en', 1, 'https://ror.org/05qdccy43 Lexington Institute'),
(70616, 'https://ror.org/00zc49422', 'en', 1, 'https://ror.org/00zc49422 Nexus Community Partners'),
(70617, 'https://ror.org/049sa5a53', 'en', 1, 'https://ror.org/049sa5a53 National Dance Institute of New Mexico'),
(70618, 'https://ror.org/0532k3p48', 'en', 1, 'https://ror.org/0532k3p48 Liberty Hill'),
(70619, 'https://ror.org/047smnk10', 'en', 1, 'https://ror.org/047smnk10 National Day Laborer Organizing Network'),
(70620, 'https://ror.org/01tmhf305', 'en', 1, 'https://ror.org/01tmhf305 Living Cities'),
(70621, 'https://ror.org/05b1g0108', 'en', 1, 'https://ror.org/05b1g0108 Michigan League for Public Policy'),
(70622, 'https://ror.org/05nrxp832', 'en', 1, 'https://ror.org/05nrxp832 National Economic and Social Rights Initiative'),
(70623, 'https://ror.org/00pkp3a47', 'en', 1, 'https://ror.org/00pkp3a47 Nkuzi Development Association'),
(70624, 'https://ror.org/05gwdv631', 'en', 1, 'https://ror.org/05gwdv631 Michigan Nonprofit Association'),
(70625, 'https://ror.org/00x8nv804', 'en', 1, 'https://ror.org/00x8nv804 National Employment Law Project'),
(70626, 'https://ror.org/02f2s6657', 'en', 1, 'https://ror.org/02f2s6657 Noida Deaf Society'),
(70627, 'https://ror.org/0291ys696', 'en', 1, 'https://ror.org/0291ys696 Michigan United'),
(70628, 'https://ror.org/017ebm718', 'no_lang_code', 1, 'https://ror.org/017ebm718 Inclusiv (United States)'),
(70629, 'https://ror.org/021yz3w04', 'en', 1, 'https://ror.org/021yz3w04 Los Angeles Area Chamber of Commerce'),
(70630, 'https://ror.org/024vwmq15', 'en', 1, 'https://ror.org/024vwmq15 Nonprofit Finance Fund'),
(70631, 'https://ror.org/00bb5xg53', 'en', 1, 'https://ror.org/00bb5xg53 Minnesota Council of Nonprofits'),
(70632, 'https://ror.org/04zfskg78', 'pt', 1, 'https://ror.org/04zfskg78 Fórum Nacional pela Democratização da Comunicação'),
(70633, 'https://ror.org/05c5x4241', 'en', 1, 'https://ror.org/05c5x4241 Fair Share Education Fund'),
(70634, 'https://ror.org/018j6fe30', 'en', 1, 'https://ror.org/018j6fe30 Mission Asset Fund'),
(70635, 'https://ror.org/00bcg1285', 'en', 1, 'https://ror.org/00bcg1285 Low Income Investment Fund'),
(70636, 'https://ror.org/04n09hm86', 'pt', 1, 'https://ror.org/04n09hm86 Fórum Nacional das Entidades Civis de Defesa do Consumidor'),
(70637, 'https://ror.org/02frgyp60', 'pt', 1, 'https://ror.org/02frgyp60 Instituto Nupef'),
(70638, 'https://ror.org/00fgx8j22', 'no_lang_code', 1, 'https://ror.org/00fgx8j22 Montfort Social Institute ą°®ą±‹ą°‚ą°Ÿą±ą°«ą±‹ą°°ą±ą°Ÿą± ą°øą±‹ą°·ą°²ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą±'),
(70639, 'https://ror.org/04gnd7n67', 'pt', 1, 'https://ror.org/04gnd7n67 Centro de Cultura Luiz Freire'),
(70640, 'https://ror.org/0037jxv73', 'en', 1, 'https://ror.org/0037jxv73 Mophradat'),
(70641, 'https://ror.org/01t41r490', 'en', 1, 'https://ror.org/01t41r490 National Hispanic Leadership Agenda'),
(70642, 'https://ror.org/04e0kmg62', 'pt', 1, 'https://ror.org/04e0kmg62 Favela Observatory Observatório de Favelas'),
(70643, 'https://ror.org/023j15q26', 'en', 1, 'https://ror.org/023j15q26 Maine Center for Economic Policy'),
(70644, 'https://ror.org/05cx65996', 'en', 1, 'https://ror.org/05cx65996 Ocean Doctor'),
(70645, 'https://ror.org/02q5pvy25', 'en', 1, 'https://ror.org/02q5pvy25 National Hispanic Media Coalition'),
(70646, 'https://ror.org/002ffx508', 'en', 1, 'https://ror.org/002ffx508 Make the Road New York'),
(70647, 'https://ror.org/002pa2q48', 'en', 1, 'https://ror.org/002pa2q48 National Immigration Law Center'),
(70648, 'https://ror.org/05t5az281', 'en', 1, 'https://ror.org/05t5az281 Mothering Justice'),
(70649, 'https://ror.org/03efa2608', 'en', 1, 'https://ror.org/03efa2608 National Indigenous Organization of Colombia Organización Nacional Indígena de Colombia'),
(70650, 'https://ror.org/04rb79711', 'en', 1, 'https://ror.org/04rb79711 Mountain Association for Community Economic Development'),
(70651, 'https://ror.org/00n03f122', 'pt', 1, 'https://ror.org/00n03f122 Malungu'),
(70652, 'https://ror.org/03v4d6h23', 'en', 1, 'https://ror.org/03v4d6h23 The National Institute for Latino Policy'),
(70653, 'https://ror.org/05hd64t60', 'en', 1, 'https://ror.org/05hd64t60 Movement Strategy Center'),
(70654, 'https://ror.org/01scpqc23', 'en', 1, 'https://ror.org/01scpqc23 Mapungubwe Institute for Strategic Reflection'),
(70655, 'https://ror.org/037a35y56', 'en', 1, 'https://ror.org/037a35y56 Moving the GoalPosts'),
(70656, 'https://ror.org/05cvbfc52', 'en', 1, 'https://ror.org/05cvbfc52 National Korean American Service & Education Consortium'),
(70657, 'https://ror.org/05f0ps005', 'en', 1, 'https://ror.org/05f0ps005 National Religious Campaign Against Torture'),
(70658, 'https://ror.org/00jeph960', 'pt', 1, 'https://ror.org/00jeph960 Museu do Samba'),
(70659, 'https://ror.org/04c4hz115', 'en', 1, 'https://ror.org/04c4hz115 Purdue University Fort Wayne'),
(70660, 'https://ror.org/00586yd41', 'en', 1, 'https://ror.org/00586yd41 National Skills Coalition'),
(70661, 'https://ror.org/01qnwjk32', 'en', 1, 'https://ror.org/01qnwjk32 National Women''s Health Network'),
(70662, 'https://ror.org/03ywsr457', 'en', 1, 'https://ror.org/03ywsr457 Native American Rights Fund'),
(70663, 'https://ror.org/020fdd961', 'en', 1, 'https://ror.org/020fdd961 Nautilus Institute'),
(70664, 'https://ror.org/00gxhds15', 'no_lang_code', 1, 'https://ror.org/00gxhds15 Ndifuna Ukwazi'),
(70665, 'https://ror.org/01v6svm30', 'en', 1, 'https://ror.org/01v6svm30 Neighborhood Funders Group'),
(70666, 'https://ror.org/01snh9k23', 'en', 1, 'https://ror.org/01snh9k23 NeighborWorks America'),
(70667, 'https://ror.org/01w3qd511', 'en', 1, 'https://ror.org/01w3qd511 NEO Philanthropy'),
(70668, 'https://ror.org/05ebjrj46', 'en', 1, 'https://ror.org/05ebjrj46 Nepal Centre for Contemporary Studies'),
(70669, 'https://ror.org/01a4v4q66', 'en', 1, 'https://ror.org/01a4v4q66 SNV Netherlands Development Organisation'),
(70670, 'https://ror.org/04sbndd39', 'en', 1, 'https://ror.org/04sbndd39 Muslim Advocates'),
(70671, 'https://ror.org/00dsaey03', 'en', 1, 'https://ror.org/00dsaey03 New Economy Project'),
(70672, 'https://ror.org/02kjm5h73', 'no_lang_code', 1, 'https://ror.org/02kjm5h73 Velez College'),
(70673, 'https://ror.org/01kr8fz72', 'en', 1, 'https://ror.org/01kr8fz72 Muslim Women''s Research and Action Forum'),
(70674, 'https://ror.org/01tx8tm66', 'en', 1, 'https://ror.org/01tx8tm66 New Florida Majority'),
(70675, 'https://ror.org/02yq4nm28', 'en', 1, 'https://ror.org/02yq4nm28 New Horizon Association for Social Development Ł…Ų¤Ų³Ų³Ų© أفاق جديدة Ł„Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(70676, 'https://ror.org/051tr9v76', 'en', 1, 'https://ror.org/051tr9v76 Oregon Center for Public Policy'),
(70677, 'https://ror.org/0055gxg92', 'en', 1, 'https://ror.org/0055gxg92 New Jersey Institute for Social Justice'),
(70678, 'https://ror.org/02qvc4v06', 'en', 1, 'https://ror.org/02qvc4v06 Massachusetts Budget and Policy Center'),
(70679, 'https://ror.org/030dxdj56', 'en', 1, 'https://ror.org/030dxdj56 Nanjing Collaborator Community Development Center å—äŗ¬åø‚åä½œč€…ē¤¾åŒŗå‘å±•äø­åæƒ'),
(70680, 'https://ror.org/013nqbx98', 'en', 1, 'https://ror.org/013nqbx98 Type Media Center'),
(70681, 'https://ror.org/04c1s0g33', 'en', 1, 'https://ror.org/04c1s0g33 Maya Educational Foundation'),
(70682, 'https://ror.org/016ftxq46', 'en', 1, 'https://ror.org/016ftxq46 New Orleans Workers’ Center for Racial Justice'),
(70683, 'https://ror.org/009vmn503', 'en', 1, 'https://ror.org/009vmn503 National AIDS Housing Coalition'),
(70684, 'https://ror.org/00fzv2y47', 'en', 1, 'https://ror.org/00fzv2y47 Maynard Institute'),
(70685, 'https://ror.org/011gmce08', 'en', 1, 'https://ror.org/011gmce08 National Association for Latino Community Asset Builders'),
(70686, 'https://ror.org/05hspww74', 'en', 1, 'https://ror.org/05hspww74 New Rules for Global Finance'),
(70687, 'https://ror.org/01n3xc149', 'es', 1, 'https://ror.org/01n3xc149 Oxfam MƩxico'),
(70688, 'https://ror.org/031bw2b05', 'en', 1, 'https://ror.org/031bw2b05 The New World Foundation'),
(70689, 'https://ror.org/05px4qj37', 'en', 1, 'https://ror.org/05px4qj37 Measures for Justice'),
(70690, 'https://ror.org/030mda749', 'en', 1, 'https://ror.org/030mda749 San Diego Housing Federation'),
(70691, 'https://ror.org/050skgy72', 'en', 1, 'https://ror.org/050skgy72 Playwrights Horizons'),
(70692, 'https://ror.org/05ff8j166', 'id', 1, 'https://ror.org/05ff8j166 Pancur Kasih Association Perkumpulan Pancur Kasih'),
(70693, 'https://ror.org/02wpzhj03', 'en', 1, 'https://ror.org/02wpzhj03 National Centre for Advocacy Studies'),
(70694, 'https://ror.org/02qhn8518', 'en', 1, 'https://ror.org/02qhn8518 Santa Fe Art Institute'),
(70695, 'https://ror.org/05s3f7036', 'en', 1, 'https://ror.org/05s3f7036 Policy Matters Ohio'),
(70696, 'https://ror.org/05m2vsm26', 'pt', 1, 'https://ror.org/05m2vsm26 Sociedade Paraense de Defesa dos Direitos Humanos'),
(70697, 'https://ror.org/05bp3t561', 'en', 1, 'https://ror.org/05bp3t561 The National Coalition on Black Civic Participation'),
(70698, 'https://ror.org/00ecnfg66', 'en', 1, 'https://ror.org/00ecnfg66 Political Research Associates'),
(70699, 'https://ror.org/04w96wv49', 'en', 1, 'https://ror.org/04w96wv49 Sustainability Accounting Standards Board'),
(70700, 'https://ror.org/01bz5gk50', 'no_lang_code', 1, 'https://ror.org/01bz5gk50 PHI'),
(70701, 'https://ror.org/03xtd0t75', 'en', 1, 'https://ror.org/03xtd0t75 Population Media Center'),
(70702, 'https://ror.org/01jet5112', 'en', 1, 'https://ror.org/01jet5112 Say Yes to Education'),
(70703, 'https://ror.org/00zhc6r97', 'en', 1, 'https://ror.org/00zhc6r97 Partners for the Common Good'),
(70704, 'https://ror.org/02b0gsr86', 'en', 1, 'https://ror.org/02b0gsr86 Southwestern Association for Indian Arts'),
(70705, 'https://ror.org/0245zq547', 'en', 1, 'https://ror.org/0245zq547 Programme on Women’s Economic, Social and Cultural Rights'),
(70706, 'https://ror.org/031xn1a76', 'no_lang_code', 1, 'https://ror.org/031xn1a76 Partners in Development for Research, Consulting and Training (Egypt) ؓركاؔ Ų§Ł„ŲŖŁ†Ł…ŁŠŲ© Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„Ų§Ų³ŲŖŲ“Ų§Ų±Ų§ŲŖ ŁˆŲ§Ł„ŲŖŲÆŲ±ŁŠŲØ'),
(70707, 'https://ror.org/00z28s026', 'en', 1, 'https://ror.org/00z28s026 Partnership for African Social & Governance Research'),
(70708, 'https://ror.org/00mmkx194', 'en', 1, 'https://ror.org/00mmkx194 Progress Michigan'),
(70709, 'https://ror.org/002wpgj09', 'no_lang_code', 1, 'https://ror.org/002wpgj09 Spaceworks'),
(70710, 'https://ror.org/01dgyad16', 'en', 1, 'https://ror.org/01dgyad16 Partnership for Working Families'),
(70711, 'https://ror.org/009778y68', 'en', 1, 'https://ror.org/009778y68 Project On Government Oversight'),
(70712, 'https://ror.org/02hzhm878', 'no_lang_code', 1, 'https://ror.org/02hzhm878 Spitfire Spark Change (United States)'),
(70713, 'https://ror.org/005898f12', 'en', 1, 'https://ror.org/005898f12 Project on Organizing, Development, Education, and Research'),
(70714, 'https://ror.org/017na5t98', 'en', 1, 'https://ror.org/017na5t98 Scruggs & Associates'),
(70715, 'https://ror.org/03xga3b69', 'en', 1, 'https://ror.org/03xga3b69 Prosperity Now'),
(70716, 'https://ror.org/02hvh2w75', 'pt', 1, 'https://ror.org/02hvh2w75 Comissão Pastoral da Terra'),
(70717, 'https://ror.org/039wwq736', 'en', 1, 'https://ror.org/039wwq736 Public Affairs Research Institute'),
(70718, 'https://ror.org/02f7edq28', 'en', 1, 'https://ror.org/02f7edq28 Section 27'),
(70719, 'https://ror.org/00rdsdk57', 'pt', 1, 'https://ror.org/00rdsdk57 Agência Patrícia Galvão'),
(70720, 'https://ror.org/00aqrhw18', 'pt', 1, 'https://ror.org/00aqrhw18 Associação Centro de Estudos de Economia SolidÔria do Atlântico'),
(70721, 'https://ror.org/058c5e806', 'en', 1, 'https://ror.org/058c5e806 Forest Peoples Programme'),
(70722, 'https://ror.org/044v30149', 'en', 1, 'https://ror.org/044v30149 People''s Action'),
(70723, 'https://ror.org/022wja523', 'en', 1, 'https://ror.org/022wja523 Security Council Report'),
(70724, 'https://ror.org/01tzf7a21', 'en', 1, 'https://ror.org/01tzf7a21 Public Interest Research and Advocacy Center'),
(70725, 'https://ror.org/05p8jxd51', 'en', 1, 'https://ror.org/05p8jxd51 Institut Hak Asasi Perempuan Institute for Women Human Rights'),
(70726, 'https://ror.org/04fd1ra95', 'en', 1, 'https://ror.org/04fd1ra95 Public Knowledge'),
(70727, 'https://ror.org/045rzp790', 'en', 1, 'https://ror.org/045rzp790 Sex Workers Education & Advocacy Taskforce'),
(70728, 'https://ror.org/04gw3cp30', 'es', 1, 'https://ror.org/04gw3cp30 Seminario Permanente de Investigación Agraria'),
(70729, 'https://ror.org/01201q996', 'en', 1, 'https://ror.org/01201q996 Sexuality Information and Education Council of the United States'),
(70730, 'https://ror.org/05je89049', 'en', 1, 'https://ror.org/05je89049 Strategic Concepts in Organizing and Policy Education'),
(70731, 'https://ror.org/025mrej82', 'en', 1, 'https://ror.org/025mrej82 Public Religion Research Institute'),
(70732, 'https://ror.org/037y0zy96', 'en', 1, 'https://ror.org/037y0zy96 Studies in Poverty and Inequality Institute'),
(70733, 'https://ror.org/031rhbf61', 'en', 1, 'https://ror.org/031rhbf61 Philanthropy Northwest'),
(70734, 'https://ror.org/03gf6ma44', 'en', 1, 'https://ror.org/03gf6ma44 Shaanxi Research Association for Women and Family é™•č„æēœå¦‡å„³ē†č®ŗå©šå§»å®¶åŗ­ē ”ē©¶ä¼š'),
(70735, 'https://ror.org/02dnkgs07', 'en', 1, 'https://ror.org/02dnkgs07 Studio in a School'),
(70736, 'https://ror.org/034j2a896', 'en', 1, 'https://ror.org/034j2a896 Rainforest Foundation Norway Regnskogfondet'),
(70737, 'https://ror.org/0490b3412', 'no_lang_code', 1, 'https://ror.org/0490b3412 Sue Mbaya & Associates (South Africa)'),
(70738, 'https://ror.org/015v8md60', 'en', 1, 'https://ror.org/015v8md60 PIR Center ПИР-Центр'),
(70739, 'https://ror.org/05e0fad36', 'no_lang_code', 1, 'https://ror.org/05e0fad36 Shangri-la Institute é¦™ę ¼é‡Œę‹‰åÆęŒē»­ē¤¾åŒŗå­¦ä¼š'),
(70740, 'https://ror.org/04vmq6d61', 'no_lang_code', 1, 'https://ror.org/04vmq6d61 Planact'),
(70741, 'https://ror.org/04d8rzx62', 'en', 1, 'https://ror.org/04d8rzx62 TakeAction Minnesota'),
(70742, 'https://ror.org/05pqevf46', 'en', 1, 'https://ror.org/05pqevf46 Reconnecting America'),
(70743, 'https://ror.org/05974x792', 'es', 1, 'https://ror.org/05974x792 Red Universitaria Mutis'),
(70744, 'https://ror.org/03c9pj817', 'en', 1, 'https://ror.org/03c9pj817 Tanganyika Law Society'),
(70745, 'https://ror.org/02xc11d36', 'en', 1, 'https://ror.org/02xc11d36 Chama cha Wanahabari Wanawake Tanzania Tanzania Media Women''s Association'),
(70746, 'https://ror.org/04nffa559', 'en', 1, 'https://ror.org/04nffa559 Sichuan Academy Of Social Sciences å››å·ēœē¤¾ä¼šē§‘å­¦é™¢'),
(70747, 'https://ror.org/006y2wa23', 'en', 1, 'https://ror.org/006y2wa23 The Foundation for a Civil Society'),
(70748, 'https://ror.org/05eqc4s73', 'en', 1, 'https://ror.org/05eqc4s73 Regional Plan Association'),
(70749, 'https://ror.org/00m0sd163', 'en', 1, 'https://ror.org/00m0sd163 Religious Coalition for Reproductive Choice'),
(70750, 'https://ror.org/03cnk2k35', 'no_lang_code', 1, 'https://ror.org/03cnk2k35 TCC Group (United States)'),
(70751, 'https://ror.org/0365n9z90', 'es', 1, 'https://ror.org/0365n9z90 Sisma Mujer'),
(70752, 'https://ror.org/014bnza38', 'en', 1, 'https://ror.org/014bnza38 Texas Housers'),
(70753, 'https://ror.org/03ahp4j53', 'en', 1, 'https://ror.org/03ahp4j53 Restaurant Opportunities Centers United'),
(70754, 'https://ror.org/05pd4an24', 'en', 1, 'https://ror.org/05pd4an24 Skylight'),
(70755, 'https://ror.org/04v8ha428', 'en', 1, 'https://ror.org/04v8ha428 Rights and Resources'),
(70756, 'https://ror.org/00cmk9h73', 'en', 1, 'https://ror.org/00cmk9h73 Smart Growth America'),
(70757, 'https://ror.org/00sbkq582', 'en', 1, 'https://ror.org/00sbkq582 Futuro'),
(70758, 'https://ror.org/05nrj5p09', 'en', 1, 'https://ror.org/05nrj5p09 The Acronym Institute for Disarmament Diplomacy'),
(70759, 'https://ror.org/04g0m9s20', 'no_lang_code', 1, 'https://ror.org/04g0m9s20 Riwaq');
INSERT INTO `rors` VALUES
(70760, 'https://ror.org/0434w4n54', 'en', 1, 'https://ror.org/0434w4n54 Center for Story-based Strategy'),
(70761, 'https://ror.org/01ppqae48', 'en', 1, 'https://ror.org/01ppqae48 The Golden Bridges Foundation'),
(70762, 'https://ror.org/03b0cap52', 'en', 1, 'https://ror.org/03b0cap52 Fundação Roberto Marinho Roberto Marinho Foundation'),
(70763, 'https://ror.org/05m5awa65', 'en', 1, 'https://ror.org/05m5awa65 Group of Institutes, Foundations and Enterprises Grupo de Institutos FundaƧƵes e Empresas'),
(70764, 'https://ror.org/02q58a426', 'en', 1, 'https://ror.org/02q58a426 African Leadership Institute'),
(70765, 'https://ror.org/02mq6af82', 'en', 1, 'https://ror.org/02mq6af82 Rockwood Leadership Institute'),
(70766, 'https://ror.org/05am5k237', 'en', 1, 'https://ror.org/05am5k237 Social Action'),
(70767, 'https://ror.org/0509fnv64', 'en', 1, 'https://ror.org/0509fnv64 League of Resident Theatres'),
(70768, 'https://ror.org/003v0x852', 'en', 1, 'https://ror.org/003v0x852 Aliansi Masyarakat Adat Nusantara Indigenous Peoples'' Alliance of the Archipelago'),
(70769, 'https://ror.org/00xc55195', 'en', 1, 'https://ror.org/00xc55195 The African Safari Foundation'),
(70770, 'https://ror.org/02s6awq69', 'en', 1, 'https://ror.org/02s6awq69 Institute for Nonprofit News'),
(70771, 'https://ror.org/01s8e3v68', 'en', 1, 'https://ror.org/01s8e3v68 American Society for Yad Vashem'),
(70772, 'https://ror.org/04mevkg92', 'en', 1, 'https://ror.org/04mevkg92 Rural Action'),
(70773, 'https://ror.org/04j4pfa24', 'en', 1, 'https://ror.org/04j4pfa24 Arms Control Association'),
(70774, 'https://ror.org/04e0phs31', 'en', 1, 'https://ror.org/04e0phs31 Rural Support Partners'),
(70775, 'https://ror.org/04k5c4t69', 'no_lang_code', 1, 'https://ror.org/04k5c4t69 Sa-Dhan'),
(70776, 'https://ror.org/0116x8861', 'en', 1, 'https://ror.org/0116x8861 Safe & Justice Michigan'),
(70777, 'https://ror.org/054h8jj30', 'en', 1, 'https://ror.org/054h8jj30 International Islamic Center for Population Studies and Research'),
(70778, 'https://ror.org/00zb61d94', 'en', 1, 'https://ror.org/00zb61d94 The Kenya Alliance of Resident Associations'),
(70779, 'https://ror.org/027c34053', 'en', 1, 'https://ror.org/027c34053 Safe Motherhood Ladies Association'),
(70780, 'https://ror.org/03sqqkw27', 'en', 1, 'https://ror.org/03sqqkw27 Society for Labour & Development'),
(70781, 'https://ror.org/03r32j025', 'no_lang_code', 1, 'https://ror.org/03r32j025 NeuroProof (Germany)'),
(70782, 'https://ror.org/04db4kr72', 'en', 1, 'https://ror.org/04db4kr72 Society for Social Uplift Through Rural Action'),
(70783, 'https://ror.org/05vr51226', 'en', 1, 'https://ror.org/05vr51226 Research and Information Centre Memorial ŠŠ°ŃƒŃ‡Š½Š¾-информационный центр ŠœŠµŠ¼Š¾Ń€ŠøŠ°Š»'),
(70784, 'https://ror.org/034mzgy05', 'fr', 1, 'https://ror.org/034mzgy05 Ashkal Alwan Ų£Ų“ŁƒŲ§Ł„ Ų£Ł„ŁˆŲ§Ł†'),
(70785, 'https://ror.org/0056a1265', 'en', 1, 'https://ror.org/0056a1265 Bank Information Center'),
(70786, 'https://ror.org/00cx7pr70', 'no_lang_code', 1, 'https://ror.org/00cx7pr70 Tiri (United Kingdom)'),
(70787, 'https://ror.org/019kg0t44', 'en', 1, 'https://ror.org/019kg0t44 Legatum Institute'),
(70788, 'https://ror.org/04s2xcs63', 'en', 1, 'https://ror.org/04s2xcs63 Solidago Foundation'),
(70789, 'https://ror.org/03p61g771', 'en', 1, 'https://ror.org/03p61g771 Toniic Institute'),
(70790, 'https://ror.org/05057ay57', 'en', 1, 'https://ror.org/05057ay57 Missouri Budget Project'),
(70791, 'https://ror.org/03wqzz907', 'en', 1, 'https://ror.org/03wqzz907 Topos'),
(70792, 'https://ror.org/01nke7b10', 'no_lang_code', 1, 'https://ror.org/01nke7b10 Soliya'),
(70793, 'https://ror.org/02sqcyb22', 'en', 1, 'https://ror.org/02sqcyb22 The Bronx Academy of Arts and Dance'),
(70794, 'https://ror.org/013ypha33', 'es', 1, 'https://ror.org/013ypha33 Asociación Nacional de Afrocolombianos Desplazados'),
(70795, 'https://ror.org/0153h6k87', 'en', 1, 'https://ror.org/0153h6k87 Feminist Institute for Democracy'),
(70796, 'https://ror.org/00b4tnh45', 'en', 1, 'https://ror.org/00b4tnh45 Campaign Legal Center'),
(70797, 'https://ror.org/05sce7z09', 'en', 1, 'https://ror.org/05sce7z09 South Asian Americans Leading Together'),
(70798, 'https://ror.org/03pbq8185', 'en', 1, 'https://ror.org/03pbq8185 National Council for Black Studies'),
(70799, 'https://ror.org/04ests719', 'en', 1, 'https://ror.org/04ests719 National Lesbian and Gay Journalists Association'),
(70800, 'https://ror.org/053br3t03', 'en', 1, 'https://ror.org/053br3t03 South Asians for Human Rights'),
(70801, 'https://ror.org/03khf9f69', 'en', 1, 'https://ror.org/03khf9f69 Turnaround for Children'),
(70802, 'https://ror.org/0557gff25', 'en', 1, 'https://ror.org/0557gff25 Twaweza Communications'),
(70803, 'https://ror.org/04gh4hn58', 'en', 1, 'https://ror.org/04gh4hn58 Southern Coalition for Social Justice'),
(70804, 'https://ror.org/033mfbr09', 'no_lang_code', 1, 'https://ror.org/033mfbr09 Ubuntu Institute'),
(70805, 'https://ror.org/021g78m61', 'en', 1, 'https://ror.org/021g78m61 Social Progress Imperative'),
(70806, 'https://ror.org/048k8a688', 'en', 1, 'https://ror.org/048k8a688 The Orderly Society Trust'),
(70807, 'https://ror.org/05d73n292', 'en', 1, 'https://ror.org/05d73n292 Uganda Association of Women Lawyers'),
(70808, 'https://ror.org/01wg0wd65', 'en', 1, 'https://ror.org/01wg0wd65 The Center for Arts Education'),
(70809, 'https://ror.org/018kbgx06', 'en', 1, 'https://ror.org/018kbgx06 Oretha Castle Haley Boulevard Merchants & Business Association'),
(70810, 'https://ror.org/022wdbc37', 'en', 1, 'https://ror.org/022wdbc37 Uganda Media Women’s Association'),
(70811, 'https://ror.org/00z57gh96', 'en', 1, 'https://ror.org/00z57gh96 Uganda National NGO Forum'),
(70812, 'https://ror.org/00216ta13', 'en', 1, 'https://ror.org/00216ta13 Center for the Study of Social Policy'),
(70813, 'https://ror.org/01v01s839', 'en', 1, 'https://ror.org/01v01s839 The GoDown Arts Centre'),
(70814, 'https://ror.org/00q6vbk50', 'en', 1, 'https://ror.org/00q6vbk50 Southern Mutual Help Association'),
(70815, 'https://ror.org/01cjtcc19', 'pt', 1, 'https://ror.org/01cjtcc19 Uma Gota no Oceano'),
(70816, 'https://ror.org/0411yf357', 'en', 1, 'https://ror.org/0411yf357 Central Compilation & Translation Bureau äø­å¤®ē¼–čÆ‘å±€ęÆ”č¾ƒę”æę²»äøŽē»ęµŽē ”ē©¶äø­åæƒ'),
(70817, 'https://ror.org/058vm0m82', 'pt', 1, 'https://ror.org/058vm0m82 Sindicato dos Trabalhadores Rurais de Caxias do Sul'),
(70818, 'https://ror.org/05sp7aa03', 'no_lang_code', 1, 'https://ror.org/05sp7aa03 US-China Strong'),
(70819, 'https://ror.org/036pz8x72', 'en', 1, 'https://ror.org/036pz8x72 UNITE-LA'),
(70820, 'https://ror.org/056n7tt65', 'en', 1, 'https://ror.org/056n7tt65 Coptic Evangelical Organization for Social Services Ų§Ł„Ł‚ŲØŲ·ŁŠŲ© Ų§Ł„Ų„Ł†Ų¬ŁŠŁ„ŁŠŲ© للخدمات Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© في ŲŖŁ‚'),
(70821, 'https://ror.org/02y5w9a36', 'en', 1, 'https://ror.org/02y5w9a36 United States Public Interest Research Group Education Fund'),
(70822, 'https://ror.org/01hptbr11', 'en', 1, 'https://ror.org/01hptbr11 Equal Rights Trust'),
(70823, 'https://ror.org/0377cab50', 'en', 1, 'https://ror.org/0377cab50 The Samdhana Institute'),
(70824, 'https://ror.org/05yaa8165', 'en', 1, 'https://ror.org/05yaa8165 West Africa Vocational Education'),
(70825, 'https://ror.org/02nxjx545', 'en', 1, 'https://ror.org/02nxjx545 The Sentencing Project'),
(70826, 'https://ror.org/05kn8zy50', 'en', 1, 'https://ror.org/05kn8zy50 Socio-Economic Rights Institute of South Africa'),
(70827, 'https://ror.org/0136rmr23', 'es', 1, 'https://ror.org/0136rmr23 Programa Venezolano de Educación Acción en Derechos Humanos'),
(70828, 'https://ror.org/01c85sy27', 'en', 1, 'https://ror.org/01c85sy27 Philanthropy West Virginia'),
(70829, 'https://ror.org/05v3ktf05', 'en', 1, 'https://ror.org/05v3ktf05 Inyathelo: The South African Institute for Advancement'),
(70830, 'https://ror.org/05kcyf633', 'en', 1, 'https://ror.org/05kcyf633 The Stuttering Association for the Young'),
(70831, 'https://ror.org/00j557793', 'en', 1, 'https://ror.org/00j557793 Western Organization of Resource Councils'),
(70832, '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'),
(70833, 'https://ror.org/02y83px33', 'no_lang_code', 1, 'https://ror.org/02y83px33 UNNATI ą¤‰ą¤Øą„ą¤Øą¤¤ą¤æ'),
(70834, 'https://ror.org/05f0pxv25', 'en', 1, 'https://ror.org/05f0pxv25 Sunlight Foundation'),
(70835, 'https://ror.org/02zdtxx58', 'en', 1, 'https://ror.org/02zdtxx58 Wheat Trust'),
(70836, 'https://ror.org/03yarwa09', 'en', 1, 'https://ror.org/03yarwa09 Update Institute of Professional Studies'),
(70837, 'https://ror.org/01e17wh10', 'no_lang_code', 1, 'https://ror.org/01e17wh10 Vikas Samvad'),
(70838, 'https://ror.org/050rahh61', 'en', 1, 'https://ror.org/050rahh61 The W. Haywood Burns Institute'),
(70839, 'https://ror.org/04yd1f040', 'en', 1, 'https://ror.org/04yd1f040 Urban Design Research Institute'),
(70840, 'https://ror.org/00hqts921', 'en', 1, 'https://ror.org/00hqts921 New Virginia Majority Education Fund'),
(70841, 'https://ror.org/03b9pqg16', 'en', 1, 'https://ror.org/03b9pqg16 The Wahid Institute'),
(70842, 'https://ror.org/03ps8mj31', 'en', 1, 'https://ror.org/03ps8mj31 Watershed Support Services and Activities Network'),
(70843, 'https://ror.org/04hytgp84', 'pt', 1, 'https://ror.org/04hytgp84 Instituto Vladimir Herzog'),
(70844, 'https://ror.org/05x8gcy84', 'en', 1, 'https://ror.org/05x8gcy84 Washington Office on Latin America'),
(70845, 'https://ror.org/0059vsf77', 'no_lang_code', 1, 'https://ror.org/0059vsf77 1st Edge (United States)'),
(70846, 'https://ror.org/00t87a490', 'no_lang_code', 1, 'https://ror.org/00t87a490 21st Century Systems (United States)'),
(70847, 'https://ror.org/05h4kd271', 'en', 1, 'https://ror.org/05h4kd271 Watershed Center'),
(70848, 'https://ror.org/058n1t885', 'no_lang_code', 1, 'https://ror.org/058n1t885 Actoprobe (United States)'),
(70849, 'https://ror.org/05md2f937', 'en', 1, 'https://ror.org/05md2f937 Consumer VOICE'),
(70850, 'https://ror.org/02rr9hy25', 'no_lang_code', 1, 'https://ror.org/02rr9hy25 AMPAC (United States)'),
(70851, 'https://ror.org/0552acy97', 'no_lang_code', 1, 'https://ror.org/0552acy97 AdƔmas Nano (United States)'),
(70852, 'https://ror.org/02fnwfw55', 'no_lang_code', 1, 'https://ror.org/02fnwfw55 AeroStream Communications (United States)'),
(70853, 'https://ror.org/05nb6mm11', 'en', 1, 'https://ror.org/05nb6mm11 Adaptive Cognitive Systems'),
(70854, 'https://ror.org/0086j2x90', 'no_lang_code', 1, 'https://ror.org/0086j2x90 Aerotech Research (United States)'),
(70855, 'https://ror.org/0344fac35', 'no_lang_code', 1, 'https://ror.org/0344fac35 A&P Technology (United States)'),
(70856, 'https://ror.org/02f3zfv55', 'no_lang_code', 1, 'https://ror.org/02f3zfv55 Adeptrix (United States)'),
(70857, 'https://ror.org/01hxz7b02', 'no_lang_code', 1, 'https://ror.org/01hxz7b02 Advent Systems (United States)'),
(70858, 'https://ror.org/01tbsny88', 'no_lang_code', 1, 'https://ror.org/01tbsny88 Advratech (United States)'),
(70859, 'https://ror.org/03w836z53', 'no_lang_code', 1, 'https://ror.org/03w836z53 Adient Medical (United States)'),
(70860, 'https://ror.org/033mdbt36', 'no_lang_code', 1, 'https://ror.org/033mdbt36 Aggamin (United States)'),
(70861, 'https://ror.org/04jav4h88', 'no_lang_code', 1, 'https://ror.org/04jav4h88 Adjuvance (United States)'),
(70862, 'https://ror.org/033rcy608', 'no_lang_code', 1, 'https://ror.org/033rcy608 Aechelon Technology (United States)'),
(70863, 'https://ror.org/01mbqee76', 'no_lang_code', 1, 'https://ror.org/01mbqee76 Agile RF Systems (United States)'),
(70864, 'https://ror.org/046dj2v49', 'no_lang_code', 1, 'https://ror.org/046dj2v49 AdTech Optics (United States)'),
(70865, 'https://ror.org/02ctd9k17', 'no_lang_code', 1, 'https://ror.org/02ctd9k17 Aereon (United States)'),
(70866, 'https://ror.org/02njsw853', 'no_lang_code', 1, 'https://ror.org/02njsw853 AAVogen (United States)'),
(70867, 'https://ror.org/02bdk9r92', 'no_lang_code', 1, 'https://ror.org/02bdk9r92 Advaita (United States)'),
(70868, 'https://ror.org/025q9pc81', 'no_lang_code', 1, 'https://ror.org/025q9pc81 AgileDelta (United States)'),
(70869, 'https://ror.org/02wvrc195', 'no_lang_code', 1, 'https://ror.org/02wvrc195 Ahmic Aerospace (United States)'),
(70870, 'https://ror.org/015a03w85', 'no_lang_code', 1, 'https://ror.org/015a03w85 Aero Thermo Technology (United States)'),
(70871, 'https://ror.org/03br5ck68', 'no_lang_code', 1, 'https://ror.org/03br5ck68 Absorption Systems (United States)'),
(70872, 'https://ror.org/024ps9968', 'no_lang_code', 1, 'https://ror.org/024ps9968 AI Signal Research (United States)'),
(70873, 'https://ror.org/05qgb2253', 'no_lang_code', 1, 'https://ror.org/05qgb2253 ABT Molecular Imaging (United States)'),
(70874, 'https://ror.org/0094qg225', 'no_lang_code', 1, 'https://ror.org/0094qg225 Advanced Design Consulting USA (United States)'),
(70875, 'https://ror.org/03r1eja77', 'no_lang_code', 1, 'https://ror.org/03r1eja77 Accacia International (United States)'),
(70876, 'https://ror.org/03rc7sa66', 'no_lang_code', 1, 'https://ror.org/03rc7sa66 Automation, Information, and Management Systems (United States)'),
(70877, 'https://ror.org/02h9s3z30', 'no_lang_code', 1, 'https://ror.org/02h9s3z30 Airflow Sciences (United States)'),
(70878, 'https://ror.org/00mycjp45', 'no_lang_code', 1, 'https://ror.org/00mycjp45 Custom Electronics (United States)'),
(70879, 'https://ror.org/0552brw50', 'no_lang_code', 1, 'https://ror.org/0552brw50 AirLift Environmental (United States)'),
(70880, 'https://ror.org/0449ygn91', 'no_lang_code', 1, 'https://ror.org/0449ygn91 Accel Diagnostics (United States)'),
(70881, 'https://ror.org/019btxj82', 'no_lang_code', 1, 'https://ror.org/019btxj82 Ajjer (United States)'),
(70882, 'https://ror.org/025kjws23', 'no_lang_code', 1, 'https://ror.org/025kjws23 Advanced Energy Dynamics (United States)'),
(70883, 'https://ror.org/048sjp277', 'no_lang_code', 1, 'https://ror.org/048sjp277 Akron Polymer Systems (United States)'),
(70884, 'https://ror.org/016cmyf08', 'no_lang_code', 1, 'https://ror.org/016cmyf08 Advanced Fiber Sensors (United States)'),
(70885, 'https://ror.org/05964ej87', 'no_lang_code', 1, 'https://ror.org/05964ej87 Akron Rubber Development Laboratory (United States)'),
(70886, 'https://ror.org/019j5vb98', 'no_lang_code', 1, 'https://ror.org/019j5vb98 ArrayFire (United States)'),
(70887, 'https://ror.org/00bhzer06', 'no_lang_code', 1, 'https://ror.org/00bhzer06 Akrotome Imaging (United States)'),
(70888, 'https://ror.org/01jp0wp57', 'no_lang_code', 1, 'https://ror.org/01jp0wp57 AccessData (United States)'),
(70889, 'https://ror.org/000m0gv46', 'no_lang_code', 1, 'https://ror.org/000m0gv46 SolAero Technologies (United States)'),
(70890, 'https://ror.org/0553f1x12', 'no_lang_code', 1, 'https://ror.org/0553f1x12 Advanced Fluidics (United States)'),
(70891, 'https://ror.org/02vaea525', 'no_lang_code', 1, 'https://ror.org/02vaea525 Akston Biosciences (United States)'),
(70892, 'https://ror.org/03yk1a741', 'no_lang_code', 1, 'https://ror.org/03yk1a741 Advanced Genomic Technology (United States)'),
(70893, 'https://ror.org/044ybps29', 'no_lang_code', 1, 'https://ror.org/044ybps29 Accord Solutions (United States)'),
(70894, 'https://ror.org/04p7gyb31', 'no_lang_code', 1, 'https://ror.org/04p7gyb31 Allure (United States)'),
(70895, 'https://ror.org/00bk62d14', 'no_lang_code', 1, 'https://ror.org/00bk62d14 Accudyne Systems (United States)'),
(70896, 'https://ror.org/03jxrtv34', 'no_lang_code', 1, 'https://ror.org/03jxrtv34 Alaskanativetech (United States)'),
(70897, 'https://ror.org/02ehgd331', 'no_lang_code', 1, 'https://ror.org/02ehgd331 Allvivo Vascular (United States)'),
(70898, 'https://ror.org/02ja16p07', 'no_lang_code', 1, 'https://ror.org/02ja16p07 Accumed Systems (United States)'),
(70899, 'https://ror.org/05j2afk93', 'no_lang_code', 1, 'https://ror.org/05j2afk93 Alpha Environmental (United States)'),
(70900, 'https://ror.org/00vacpg25', 'no_lang_code', 1, 'https://ror.org/00vacpg25 Alba-Technic (United States)'),
(70901, 'https://ror.org/02hc8ze18', 'no_lang_code', 1, 'https://ror.org/02hc8ze18 Advanced Life Technologies (United States)'),
(70902, 'https://ror.org/05ea00v44', 'no_lang_code', 1, 'https://ror.org/05ea00v44 AlphaMicron (United States)'),
(70903, 'https://ror.org/04hktxn88', 'no_lang_code', 1, 'https://ror.org/04hktxn88 Mantis Vision (Israel)'),
(70904, 'https://ror.org/03pm3k527', 'no_lang_code', 1, 'https://ror.org/03pm3k527 AlphaTRAC (United States)'),
(70905, 'https://ror.org/02m2edj71', 'no_lang_code', 1, 'https://ror.org/02m2edj71 Aldatu Biosciences (United States)'),
(70906, 'https://ror.org/02kgjbk95', 'no_lang_code', 1, 'https://ror.org/02kgjbk95 Advanced Media Research (United States)'),
(70907, 'https://ror.org/03nv0w254', 'no_lang_code', 1, 'https://ror.org/03nv0w254 Acorn Science & Innovation (United States)'),
(70908, 'https://ror.org/014p7yd77', 'no_lang_code', 1, 'https://ror.org/014p7yd77 Altius Space Machines (United States)'),
(70909, 'https://ror.org/001j88k95', 'no_lang_code', 1, 'https://ror.org/001j88k95 Alico Systems (United States)'),
(70910, 'https://ror.org/05k6q1750', 'no_lang_code', 1, 'https://ror.org/05k6q1750 Advanced Numerical Solutions (United States)'),
(70911, 'https://ror.org/000ymg434', 'no_lang_code', 1, 'https://ror.org/000ymg434 Amplification Technologies (United States)'),
(70912, 'https://ror.org/0251n1a38', 'no_lang_code', 1, 'https://ror.org/0251n1a38 Amprion (United States)'),
(70913, 'https://ror.org/04g5jfs38', 'no_lang_code', 1, 'https://ror.org/04g5jfs38 Advanced Optical Technologies (United States)'),
(70914, 'https://ror.org/02802hm84', 'no_lang_code', 1, 'https://ror.org/02802hm84 Tecplot (United States)'),
(70915, 'https://ror.org/029bmhr60', 'no_lang_code', 1, 'https://ror.org/029bmhr60 Amastan Technologies (United States)'),
(70916, 'https://ror.org/04zsmb304', 'no_lang_code', 1, 'https://ror.org/04zsmb304 Ambient Micro (United States)'),
(70917, 'https://ror.org/0222kcs48', 'no_lang_code', 1, 'https://ror.org/0222kcs48 Applied Sonics (United States)'),
(70918, 'https://ror.org/05eva4f61', 'no_lang_code', 1, 'https://ror.org/05eva4f61 API Engineering (United States)'),
(70919, 'https://ror.org/01h4n0g56', 'no_lang_code', 1, 'https://ror.org/01h4n0g56 Amydis (United States)'),
(70920, 'https://ror.org/00yjxga86', 'no_lang_code', 1, 'https://ror.org/00yjxga86 AnaBios (United States)'),
(70921, 'https://ror.org/05p6vxc40', 'no_lang_code', 1, 'https://ror.org/05p6vxc40 Amcom Communications (United States)'),
(70922, 'https://ror.org/03w764380', 'no_lang_code', 1, 'https://ror.org/03w764380 Amercom (United States)'),
(70923, 'https://ror.org/038x31d44', 'no_lang_code', 1, 'https://ror.org/038x31d44 Anagin (United States)'),
(70924, 'https://ror.org/00j3vdq65', 'no_lang_code', 1, 'https://ror.org/00j3vdq65 Applied BioMath (United States)'),
(70925, 'https://ror.org/03efpdt52', 'no_lang_code', 1, 'https://ror.org/03efpdt52 Applied Tissue Technologies (United States)'),
(70926, 'https://ror.org/00q29t979', 'no_lang_code', 1, 'https://ror.org/00q29t979 American Engineering & Manufacturing (United States)'),
(70927, 'https://ror.org/05m97qg65', 'no_lang_code', 1, 'https://ror.org/05m97qg65 Analog Photonics (United States)'),
(70928, 'https://ror.org/03rzjkf65', 'no_lang_code', 1, 'https://ror.org/03rzjkf65 Apptronik (United States)'),
(70929, 'https://ror.org/004bdfx91', 'no_lang_code', 1, 'https://ror.org/004bdfx91 American Engineering Group (United States)'),
(70930, 'https://ror.org/058bjkh55', 'no_lang_code', 1, 'https://ror.org/058bjkh55 Analysis, Integration & Design (United States)'),
(70931, 'https://ror.org/03ftfv496', 'no_lang_code', 1, 'https://ror.org/03ftfv496 Applied Decision Science (United States)'),
(70932, 'https://ror.org/057rf8v56', 'no_lang_code', 1, 'https://ror.org/057rf8v56 American Maglev Technology (United States)'),
(70933, 'https://ror.org/02xkae269', 'no_lang_code', 1, 'https://ror.org/02xkae269 AptaMatrix (United States)'),
(70934, 'https://ror.org/02gqfbn37', 'no_lang_code', 1, 'https://ror.org/02gqfbn37 Analytic Measures (United States)'),
(70935, 'https://ror.org/0439dh211', 'no_lang_code', 1, 'https://ror.org/0439dh211 Applied Design Labs (United States)'),
(70936, 'https://ror.org/002v8sr80', 'no_lang_code', 1, 'https://ror.org/002v8sr80 Aptek (United States)'),
(70937, 'https://ror.org/02pheq715', 'no_lang_code', 1, 'https://ror.org/02pheq715 Applied Engineering Management (United States)'),
(70938, 'https://ror.org/03953th04', 'no_lang_code', 1, 'https://ror.org/03953th04 American Metal Processing (United States)'),
(70939, 'https://ror.org/058ej4w72', 'no_lang_code', 1, 'https://ror.org/058ej4w72 Aptinyx (United States)'),
(70940, 'https://ror.org/02c8fyq88', 'no_lang_code', 1, 'https://ror.org/02c8fyq88 Antagen Pharmaceuticals (United States)'),
(70941, 'https://ror.org/05mbp3c63', 'no_lang_code', 1, 'https://ror.org/05mbp3c63 AnatomyWorks (United States)'),
(70942, 'https://ror.org/024h4bk68', 'no_lang_code', 1, 'https://ror.org/024h4bk68 American Xtal Technology (United States)'),
(70943, 'https://ror.org/04s8wpa22', 'no_lang_code', 1, 'https://ror.org/04s8wpa22 Aqua Resources (United States)'),
(70944, 'https://ror.org/01a5k3514', 'no_lang_code', 1, 'https://ror.org/01a5k3514 Anchor Technology (United States)'),
(70945, 'https://ror.org/029jmc311', 'no_lang_code', 1, 'https://ror.org/029jmc311 Amjet Turbine System (United States)'),
(70946, 'https://ror.org/04gv3sq83', 'no_lang_code', 1, 'https://ror.org/04gv3sq83 AngelMed (United States)'),
(70947, 'https://ror.org/00g65m314', 'no_lang_code', 1, 'https://ror.org/00g65m314 Applied Optronics (United States)'),
(70948, 'https://ror.org/04aca8627', 'no_lang_code', 1, 'https://ror.org/04aca8627 ATC Materials (United States)'),
(70949, 'https://ror.org/03zknp308', 'no_lang_code', 1, 'https://ror.org/03zknp308 Angel Secure Networks (United States)'),
(70950, 'https://ror.org/03d17d270', 'en', 1, 'https://ror.org/03d17d270 University of Washington Applied Physics Laboratory'),
(70951, 'https://ror.org/018smbg70', 'no_lang_code', 1, 'https://ror.org/018smbg70 Angstrom Designs (United States)'),
(70952, 'https://ror.org/02vhbqj87', 'no_lang_code', 1, 'https://ror.org/02vhbqj87 Arborsense (United States)'),
(70953, 'https://ror.org/01ffr8256', 'no_lang_code', 1, 'https://ror.org/01ffr8256 Annexon Biosciences (United States)'),
(70954, 'https://ror.org/05kq90346', 'no_lang_code', 1, 'https://ror.org/05kq90346 Oberon (United States)'),
(70955, 'https://ror.org/03atnhf44', 'no_lang_code', 1, 'https://ror.org/03atnhf44 Archimage (United States)'),
(70956, 'https://ror.org/00ze9yt51', 'no_lang_code', 1, 'https://ror.org/00ze9yt51 SP Industries (United States)'),
(70957, 'https://ror.org/04m2vv179', 'no_lang_code', 1, 'https://ror.org/04m2vv179 Arcos (United States)'),
(70958, 'https://ror.org/00jpxw560', 'no_lang_code', 1, 'https://ror.org/00jpxw560 Antheia (United States)'),
(70959, 'https://ror.org/02qjz4v31', 'no_lang_code', 1, 'https://ror.org/02qjz4v31 Arctan (United States)'),
(70960, 'https://ror.org/04drzaz56', 'no_lang_code', 1, 'https://ror.org/04drzaz56 Indivior (United States)'),
(70961, 'https://ror.org/02n82df02', 'no_lang_code', 1, 'https://ror.org/02n82df02 Argil (United States)'),
(70962, 'https://ror.org/035drqx74', 'no_lang_code', 1, 'https://ror.org/035drqx74 Argonide (United States)'),
(70963, 'https://ror.org/02n0t1662', 'no_lang_code', 1, 'https://ror.org/02n0t1662 Airborne Innovations (United States)'),
(70964, 'https://ror.org/042ac6m83', 'no_lang_code', 1, 'https://ror.org/042ac6m83 Ascent Solar (United States)'),
(70965, 'https://ror.org/057y00943', 'no_lang_code', 1, 'https://ror.org/057y00943 Argos Intelligence (United States)'),
(70966, 'https://ror.org/02p7tyt03', 'no_lang_code', 1, 'https://ror.org/02p7tyt03 SenSanna (United States)'),
(70967, 'https://ror.org/0269x8842', 'no_lang_code', 1, 'https://ror.org/0269x8842 AsclepiX Therapeutics (United States)'),
(70968, 'https://ror.org/045fe0126', 'no_lang_code', 1, 'https://ror.org/045fe0126 Aries Design Automation (United States)'),
(70969, 'https://ror.org/0397m3490', 'no_lang_code', 1, 'https://ror.org/0397m3490 Ash Access Technology (United States)'),
(70970, 'https://ror.org/014a3e682', 'no_lang_code', 1, 'https://ror.org/014a3e682 Arima Genomics (United States)'),
(70971, 'https://ror.org/02ztp3208', 'no_lang_code', 1, 'https://ror.org/02ztp3208 Ashton Security Laboratories (United States)'),
(70972, 'https://ror.org/02fgmdx09', 'no_lang_code', 1, 'https://ror.org/02fgmdx09 ACF-Metals (United States)'),
(70973, 'https://ror.org/0045nra89', 'no_lang_code', 1, 'https://ror.org/0045nra89 Arkham Technology (United States)'),
(70974, 'https://ror.org/04t5dkk11', 'no_lang_code', 1, 'https://ror.org/04t5dkk11 Rhinomed (United States)'),
(70975, 'https://ror.org/02hd3s336', 'no_lang_code', 1, 'https://ror.org/02hd3s336 AuSIM (United States)'),
(70976, 'https://ror.org/03dbje387', 'no_lang_code', 1, 'https://ror.org/03dbje387 Austral Engineering and Software (United States)'),
(70977, 'https://ror.org/001a3sv78', 'no_lang_code', 1, 'https://ror.org/001a3sv78 Cognitopia (United States)'),
(70978, 'https://ror.org/00ttwjh54', 'de', 1, 'https://ror.org/00ttwjh54 Georesearch Forschungsgesellschaft'),
(70979, 'https://ror.org/00dy9nm84', 'no_lang_code', 1, 'https://ror.org/00dy9nm84 Automated Precision (United States)'),
(70980, 'https://ror.org/00vk4n496', 'no_lang_code', 1, 'https://ror.org/00vk4n496 Assuage Pharmaceuticals (United States)'),
(70981, 'https://ror.org/03yavnj74', 'no_lang_code', 1, 'https://ror.org/03yavnj74 Advanced Space Technology Research (United States)'),
(70982, 'https://ror.org/01bq72s38', 'no_lang_code', 1, 'https://ror.org/01bq72s38 Astrileux (United States)'),
(70983, 'https://ror.org/052kgwk49', 'no_lang_code', 1, 'https://ror.org/052kgwk49 NETGEAR (United States)'),
(70984, 'https://ror.org/01epkyf81', 'no_lang_code', 1, 'https://ror.org/01epkyf81 Astrox (United States)'),
(70985, 'https://ror.org/03psr8197', 'no_lang_code', 1, 'https://ror.org/03psr8197 AsystBio (United States)'),
(70986, 'https://ror.org/0411mdb02', 'no_lang_code', 1, 'https://ror.org/0411mdb02 AVEKA (United States)'),
(70987, 'https://ror.org/02hqgbq45', 'no_lang_code', 1, 'https://ror.org/02hqgbq45 Unchained Labs (United States)'),
(70988, 'https://ror.org/031w8tq77', 'no_lang_code', 1, 'https://ror.org/031w8tq77 Atrex Energy (United States)'),
(70989, 'https://ror.org/00w7fsy96', 'no_lang_code', 1, 'https://ror.org/00w7fsy96 AVT Simulation (United States)'),
(70990, 'https://ror.org/01qgv9s91', 'no_lang_code', 1, 'https://ror.org/01qgv9s91 ATSP Innovations (United States)'),
(70991, 'https://ror.org/03m92j615', 'no_lang_code', 1, 'https://ror.org/03m92j615 Axiom (United States)'),
(70992, 'https://ror.org/027esmb72', 'no_lang_code', 1, 'https://ror.org/027esmb72 Attainment (United States)'),
(70993, 'https://ror.org/01wtyr048', 'no_lang_code', 1, 'https://ror.org/01wtyr048 Auger Communications (United States)'),
(70994, 'https://ror.org/02mpfyr18', 'no_lang_code', 1, 'https://ror.org/02mpfyr18 AxoSim (United States)'),
(70995, 'https://ror.org/0358rk857', 'no_lang_code', 1, 'https://ror.org/0358rk857 Hexagon (United States)'),
(70996, 'https://ror.org/03m252h72', 'no_lang_code', 1, 'https://ror.org/03m252h72 Bashpole Software (United States)'),
(70997, 'https://ror.org/01b0x7m05', 'no_lang_code', 1, 'https://ror.org/01b0x7m05 BST Systems (United States)'),
(70998, 'https://ror.org/05ykna326', 'no_lang_code', 1, 'https://ror.org/05ykna326 BatAndCat Sound Labs (United States)'),
(70999, 'https://ror.org/02wgxhz61', 'no_lang_code', 1, 'https://ror.org/02wgxhz61 Arradiance (United States)'),
(71000, 'https://ror.org/0009dkt68', 'no_lang_code', 1, 'https://ror.org/0009dkt68 Arrhythmotech (United States)'),
(71001, 'https://ror.org/0568zd681', 'no_lang_code', 1, 'https://ror.org/0568zd681 Backyard Brains (United States)'),
(71002, 'https://ror.org/01v4jae87', 'no_lang_code', 1, 'https://ror.org/01v4jae87 BTS Software Solutions (United States)'),
(71003, 'https://ror.org/02411h917', 'no_lang_code', 1, 'https://ror.org/02411h917 Bauer Associates (United States)'),
(71004, 'https://ror.org/05edrpk50', 'no_lang_code', 1, 'https://ror.org/05edrpk50 BCO (United States)'),
(71005, 'https://ror.org/0285kfv02', 'no_lang_code', 1, 'https://ror.org/0285kfv02 Biodesigns (United States)'),
(71006, 'https://ror.org/045x3e738', 'no_lang_code', 1, 'https://ror.org/045x3e738 BioFactura (United States)'),
(71007, 'https://ror.org/050b4xy13', 'no_lang_code', 1, 'https://ror.org/050b4xy13 BioFluidica (United States)'),
(71008, 'https://ror.org/05k78rz60', 'no_lang_code', 1, 'https://ror.org/05k78rz60 BioHybrid Solutions (United States)'),
(71009, 'https://ror.org/03xh8zm60', 'no_lang_code', 1, 'https://ror.org/03xh8zm60 Bakhtar Research and Engineering (United States)'),
(71010, 'https://ror.org/03ktp1v56', 'no_lang_code', 1, 'https://ror.org/03ktp1v56 NuSep (United States)'),
(71011, 'https://ror.org/05a5vr330', 'no_lang_code', 1, 'https://ror.org/05a5vr330 Precipio (United States)'),
(71012, 'https://ror.org/02677zc17', 'no_lang_code', 1, 'https://ror.org/02677zc17 Balcones Technologies (United States)'),
(71013, 'https://ror.org/00xsqes49', 'no_lang_code', 1, 'https://ror.org/00xsqes49 BioInvenu (United States)'),
(71014, 'https://ror.org/000rmdf62', 'no_lang_code', 1, 'https://ror.org/000rmdf62 BioLite (United States)'),
(71015, 'https://ror.org/001engn06', 'no_lang_code', 1, 'https://ror.org/001engn06 BRS Aerospace (United States)'),
(71016, 'https://ror.org/011bspp78', 'no_lang_code', 1, 'https://ror.org/011bspp78 Behavioral Pharma (United States)'),
(71017, 'https://ror.org/020yyec49', 'no_lang_code', 1, 'https://ror.org/020yyec49 Bally Ribbon Mills (United States)'),
(71018, 'https://ror.org/03nqaj348', 'no_lang_code', 1, 'https://ror.org/03nqaj348 Bell Biosystems (United States)'),
(71019, 'https://ror.org/00v2nch62', 'no_lang_code', 1, 'https://ror.org/00v2nch62 Barnstorm Research (United States)'),
(71020, 'https://ror.org/01j4y5573', 'no_lang_code', 1, 'https://ror.org/01j4y5573 Biomarker Profiles (United States)'),
(71021, 'https://ror.org/022pve491', 'no_lang_code', 1, 'https://ror.org/022pve491 Aura Technologies (United States)'),
(71022, 'https://ror.org/019jswg45', 'no_lang_code', 1, 'https://ror.org/019jswg45 Berkeley Air Monitoring Group (United States)'),
(71023, 'https://ror.org/04rg4ek57', 'no_lang_code', 1, 'https://ror.org/04rg4ek57 Materion (United States)'),
(71024, 'https://ror.org/0425hwa25', 'no_lang_code', 1, 'https://ror.org/0425hwa25 Biomedical Acoustics (United States)'),
(71025, 'https://ror.org/02a0gmf29', 'en', 1, 'https://ror.org/02a0gmf29 Biomedical Research Institute of Southern California'),
(71026, 'https://ror.org/03aw8az69', 'no_lang_code', 1, 'https://ror.org/03aw8az69 Biomedical Research Laboratories (United States)'),
(71027, 'https://ror.org/05pt1n025', 'no_lang_code', 1, 'https://ror.org/05pt1n025 Biosensing Instrument (United States)'),
(71028, 'https://ror.org/055dwzk58', 'no_lang_code', 1, 'https://ror.org/055dwzk58 Topricin (United States)'),
(71029, 'https://ror.org/0437mk135', 'no_lang_code', 1, 'https://ror.org/0437mk135 BioMimetic Systems (United States)'),
(71030, 'https://ror.org/03gs9sh82', 'no_lang_code', 1, 'https://ror.org/03gs9sh82 BioVentures (United States)'),
(71031, 'https://ror.org/034k42q64', 'no_lang_code', 1, 'https://ror.org/034k42q64 Beyond Photonics (United States)'),
(71032, 'https://ror.org/02act3e13', 'no_lang_code', 1, 'https://ror.org/02act3e13 BGI (United States)'),
(71033, 'https://ror.org/00xg85119', 'no_lang_code', 1, 'https://ror.org/00xg85119 Bite Technologies (United States)'),
(71034, 'https://ror.org/05qt0kq98', 'no_lang_code', 1, 'https://ror.org/05qt0kq98 BH Sensors (United States)'),
(71035, 'https://ror.org/05649qt81', 'no_lang_code', 1, 'https://ror.org/05649qt81 BiVACOR (United States)'),
(71036, 'https://ror.org/00235xz29', 'no_lang_code', 1, 'https://ror.org/00235xz29 BKF Systems (United States)'),
(71037, 'https://ror.org/022rh5p10', 'no_lang_code', 1, 'https://ror.org/022rh5p10 Black Swift Technologies (United States)'),
(71038, 'https://ror.org/0163j0p86', 'no_lang_code', 1, 'https://ror.org/0163j0p86 BlackBox Biometrics (United States)'),
(71039, 'https://ror.org/00sp0xc53', 'no_lang_code', 1, 'https://ror.org/00sp0xc53 Blackfynn (United States)'),
(71040, 'https://ror.org/00s78tb81', 'no_lang_code', 1, 'https://ror.org/00s78tb81 Blaze Bioscience (United States)'),
(71041, 'https://ror.org/03h8nf250', 'no_lang_code', 1, 'https://ror.org/03h8nf250 Binergy Scientific (United States)'),
(71042, 'https://ror.org/01hg9sk45', 'no_lang_code', 1, 'https://ror.org/01hg9sk45 BSC Associates (United States)'),
(71043, 'https://ror.org/00sj73q02', 'no_lang_code', 1, 'https://ror.org/00sj73q02 CoorsTek (United States)'),
(71044, 'https://ror.org/02ehf4193', 'no_lang_code', 1, 'https://ror.org/02ehf4193 Block Engineering (United States)'),
(71045, 'https://ror.org/00dnwkf25', 'no_lang_code', 1, 'https://ror.org/00dnwkf25 Blue Line Engineering (United States)'),
(71046, 'https://ror.org/02wmgyv80', 'no_lang_code', 1, 'https://ror.org/02wmgyv80 Brain Wellness and Biofeedback Center (United States)'),
(71047, 'https://ror.org/005sn8a68', 'no_lang_code', 1, 'https://ror.org/005sn8a68 Blue Marble Health (United States)'),
(71048, 'https://ror.org/000a82508', 'no_lang_code', 1, 'https://ror.org/000a82508 Blue Therapeutics (United States)'),
(71049, 'https://ror.org/04q2b1z76', 'no_lang_code', 1, 'https://ror.org/04q2b1z76 Brainquake (United States)'),
(71050, 'https://ror.org/01br0tv80', 'no_lang_code', 1, 'https://ror.org/01br0tv80 Brains4Drones (United States)'),
(71051, 'https://ror.org/054pnzp38', 'no_lang_code', 1, 'https://ror.org/054pnzp38 BMSEED (United States)'),
(71052, 'https://ror.org/054dqap80', 'no_lang_code', 1, 'https://ror.org/054dqap80 Brainxell (United States)'),
(71053, 'https://ror.org/05xr63b94', 'no_lang_code', 1, 'https://ror.org/05xr63b94 Cell Biologics (United States)'),
(71054, 'https://ror.org/01cxdpf04', 'no_lang_code', 1, 'https://ror.org/01cxdpf04 Cambridge Electronics (United States)'),
(71055, 'https://ror.org/01cbfpq42', 'no_lang_code', 1, 'https://ror.org/01cbfpq42 Braxton (United States)'),
(71056, 'https://ror.org/03fnt7n10', 'no_lang_code', 1, 'https://ror.org/03fnt7n10 BrightSpec'),
(71057, 'https://ror.org/04hqqb835', 'no_lang_code', 1, 'https://ror.org/04hqqb835 Camras Vision (United States)'),
(71058, 'https://ror.org/01c366927', 'no_lang_code', 1, 'https://ror.org/01c366927 BoroPharm (United States)'),
(71059, 'https://ror.org/04t9edw32', 'no_lang_code', 1, 'https://ror.org/04t9edw32 Camx Power (United States)'),
(71060, 'https://ror.org/04wfs4b35', 'no_lang_code', 1, 'https://ror.org/04wfs4b35 Brite Bio (United States)'),
(71061, 'https://ror.org/00bshqd32', 'no_lang_code', 1, 'https://ror.org/00bshqd32 Briteseed (United States)'),
(71062, 'https://ror.org/03b51p242', 'no_lang_code', 1, 'https://ror.org/03b51p242 Canget BioTekpharma (United States)'),
(71063, 'https://ror.org/04wfdnt11', 'no_lang_code', 1, 'https://ror.org/04wfdnt11 Brooks Rand Instruments (United States)'),
(71064, 'https://ror.org/04q17db63', 'no_lang_code', 1, 'https://ror.org/04q17db63 Brown Computer Company (United States)'),
(71065, 'https://ror.org/04r67z754', 'no_lang_code', 1, 'https://ror.org/04r67z754 Soleno Therapeutics (United States)'),
(71066, 'https://ror.org/05ej9rw09', 'no_lang_code', 1, 'https://ror.org/05ej9rw09 Capture Pharmaceuticals (United States)'),
(71067, 'https://ror.org/04tvaxw19', 'no_lang_code', 1, 'https://ror.org/04tvaxw19 DNA Diagnostics Center (United States)'),
(71068, 'https://ror.org/0488ezv32', 'no_lang_code', 1, 'https://ror.org/0488ezv32 Boston Dynamics (United States)'),
(71069, 'https://ror.org/03n8g5s30', 'no_lang_code', 1, 'https://ror.org/03n8g5s30 Carbon Carbon Advanced Technologies (United States)'),
(71070, 'https://ror.org/0113crs96', 'no_lang_code', 1, 'https://ror.org/0113crs96 BryCoat (United States)'),
(71071, 'https://ror.org/04vmcpd16', 'no_lang_code', 1, 'https://ror.org/04vmcpd16 Cell IDx (United States)'),
(71072, 'https://ror.org/01xy18563', 'no_lang_code', 1, 'https://ror.org/01xy18563 Cardax (United States)'),
(71073, 'https://ror.org/03yzz6t36', 'no_lang_code', 1, 'https://ror.org/03yzz6t36 Buildlab (United States)'),
(71074, 'https://ror.org/01de12660', 'no_lang_code', 1, 'https://ror.org/01de12660 Cell Podium (United States)'),
(71075, 'https://ror.org/03ns2gd62', 'no_lang_code', 1, 'https://ror.org/03ns2gd62 C-2 Innovations (United States)'),
(71076, 'https://ror.org/009k4kq70', 'no_lang_code', 1, 'https://ror.org/009k4kq70 Cardialen (United States)'),
(71077, 'https://ror.org/00kdmt348', 'no_lang_code', 1, 'https://ror.org/00kdmt348 Cellar Door Labs (United States)'),
(71078, 'https://ror.org/03z6qqm96', 'no_lang_code', 1, 'https://ror.org/03z6qqm96 Cardinal Engineering (United States)'),
(71079, 'https://ror.org/00yd8np83', 'en', 1, 'https://ror.org/00yd8np83 National University System'),
(71080, 'https://ror.org/00panym11', 'no_lang_code', 1, 'https://ror.org/00panym11 Cairn Biosciences (United States)'),
(71081, 'https://ror.org/02dswfg52', 'no_lang_code', 1, 'https://ror.org/02dswfg52 Cellf BIO (United States)'),
(71082, 'https://ror.org/02yw4ce16', 'no_lang_code', 1, 'https://ror.org/02yw4ce16 Surgical Energetics (United States)'),
(71083, 'https://ror.org/03p7n1480', 'no_lang_code', 1, 'https://ror.org/03p7n1480 Cardiosolv Ablation Technologies (United States)'),
(71084, 'https://ror.org/01mnn1775', 'no_lang_code', 1, 'https://ror.org/01mnn1775 Caktus Group (United States)'),
(71085, 'https://ror.org/03twde329', 'no_lang_code', 1, 'https://ror.org/03twde329 CellOptic (United States)'),
(71086, 'https://ror.org/00795nv73', 'no_lang_code', 1, 'https://ror.org/00795nv73 Care Progress (United States)'),
(71087, 'https://ror.org/021k8e418', 'no_lang_code', 1, 'https://ror.org/021k8e418 Calibrant Digital (United States)'),
(71088, 'https://ror.org/03t3fww40', 'no_lang_code', 1, 'https://ror.org/03t3fww40 CellSight Technologies (United States)'),
(71089, 'https://ror.org/042j4gm75', 'en', 1, 'https://ror.org/042j4gm75 Northwest Evaluation Association'),
(71090, 'https://ror.org/00ysde465', 'no_lang_code', 1, 'https://ror.org/00ysde465 Cenna Biosciences (United States)'),
(71091, 'https://ror.org/02pvvhr41', 'no_lang_code', 1, 'https://ror.org/02pvvhr41 Carrera Bioscience (United States)'),
(71092, 'https://ror.org/038zk4221', 'no_lang_code', 1, 'https://ror.org/038zk4221 Chip Scan (United States)'),
(71093, 'https://ror.org/017wf3d91', 'no_lang_code', 1, 'https://ror.org/017wf3d91 Case Engineering (United States)'),
(71094, 'https://ror.org/03d6kfv69', 'no_lang_code', 1, 'https://ror.org/03d6kfv69 Centripetal (United States)'),
(71095, 'https://ror.org/031fg5f22', 'no_lang_code', 1, 'https://ror.org/031fg5f22 Cofactor Genomics (United States)'),
(71096, 'https://ror.org/02td76a59', 'no_lang_code', 1, 'https://ror.org/02td76a59 Cassia (United States)'),
(71097, 'https://ror.org/028qge085', 'no_lang_code', 1, 'https://ror.org/028qge085 Century (United States)'),
(71098, 'https://ror.org/05vhsk894', 'no_lang_code', 1, 'https://ror.org/05vhsk894 ChromaTan'),
(71099, 'https://ror.org/00axw4v72', 'no_lang_code', 1, 'https://ror.org/00axw4v72 Cerahelix (United States)'),
(71100, 'https://ror.org/04pvsp066', 'no_lang_code', 1, 'https://ror.org/04pvsp066 Chromation (United States)'),
(71101, 'https://ror.org/03sbkjp44', 'no_lang_code', 1, 'https://ror.org/03sbkjp44 Cognionics (United States)'),
(71102, 'https://ror.org/021trq250', 'no_lang_code', 1, 'https://ror.org/021trq250 Ceebus Technologies (United States)'),
(71103, 'https://ror.org/043m46d79', 'no_lang_code', 1, 'https://ror.org/043m46d79 Cognitive Electronics (United States)'),
(71104, 'https://ror.org/02ss0eq82', 'en', 1, 'https://ror.org/02ss0eq82 Cognitive Engineering Research Institute'),
(71105, 'https://ror.org/005q59x71', 'no_lang_code', 1, 'https://ror.org/005q59x71 Ebb Therapeutics (United States)'),
(71106, 'https://ror.org/050tnyq31', 'no_lang_code', 1, 'https://ror.org/050tnyq31 Certerra (United States)'),
(71107, 'https://ror.org/05tay5389', 'no_lang_code', 1, 'https://ror.org/05tay5389 Cirrus Aircraft (United States)'),
(71108, 'https://ror.org/05q7g3j68', 'no_lang_code', 1, 'https://ror.org/05q7g3j68 CohesionForce (United States)'),
(71109, 'https://ror.org/037g37s09', 'no_lang_code', 1, 'https://ror.org/037g37s09 Concentris Systems (United States)'),
(71110, 'https://ror.org/009vrft62', 'no_lang_code', 1, 'https://ror.org/009vrft62 Cole Engineering Services (United States)'),
(71111, 'https://ror.org/02fw2tr12', 'no_lang_code', 1, 'https://ror.org/02fw2tr12 Concepts to Systems (United States)'),
(71112, 'https://ror.org/02h8yps76', 'no_lang_code', 1, 'https://ror.org/02h8yps76 Chadwick Optical (United States)'),
(71113, 'https://ror.org/03fgzbf19', 'no_lang_code', 1, 'https://ror.org/03fgzbf19 Concordance Health Solutions (United States)'),
(71114, 'https://ror.org/04gbdgm24', 'no_lang_code', 1, 'https://ror.org/04gbdgm24 Champions Oncology (United States)'),
(71115, 'https://ror.org/02nq2ye56', 'no_lang_code', 1, 'https://ror.org/02nq2ye56 Colorado Power Electronics (United States)'),
(71116, 'https://ror.org/00a07ag07', 'no_lang_code', 1, 'https://ror.org/00a07ag07 Conjugon (United States)'),
(71117, 'https://ror.org/00g18j041', 'no_lang_code', 1, 'https://ror.org/00g18j041 CM-Tec (United States)'),
(71118, 'https://ror.org/03nt6qk39', 'no_lang_code', 1, 'https://ror.org/03nt6qk39 CheckUp & Choices (United States)'),
(71119, 'https://ror.org/01rwgzt97', 'no_lang_code', 1, 'https://ror.org/01rwgzt97 CMA Technologies (United States)'),
(71120, 'https://ror.org/01h9cfp35', 'no_lang_code', 1, 'https://ror.org/01h9cfp35 Connecticut Analytical Corporation (United States)'),
(71121, 'https://ror.org/00q89h712', 'no_lang_code', 1, 'https://ror.org/00q89h712 Chem-Master International (United States)'),
(71122, 'https://ror.org/03v50hq42', 'no_lang_code', 1, 'https://ror.org/03v50hq42 Coapt (United States)'),
(71123, 'https://ror.org/04jvezd47', 'no_lang_code', 1, 'https://ror.org/04jvezd47 Conrad Technologies (United States)'),
(71124, 'https://ror.org/00jgjke27', 'no_lang_code', 1, 'https://ror.org/00jgjke27 Coating Systems Laboratories (United States)'),
(71125, 'https://ror.org/057e5gj07', 'no_lang_code', 1, 'https://ror.org/057e5gj07 Cobra Design & Engineering (United States)'),
(71126, 'https://ror.org/007z06v19', 'en', 1, 'https://ror.org/007z06v19 Global Impact'),
(71127, 'https://ror.org/0394gje76', 'no_lang_code', 1, 'https://ror.org/0394gje76 Command and Control Technologies Corporation (United States)'),
(71128, 'https://ror.org/02h6a5d26', 'no_lang_code', 1, 'https://ror.org/02h6a5d26 Codar Ocean Sensors (United States)'),
(71129, 'https://ror.org/01whfyx68', 'no_lang_code', 1, 'https://ror.org/01whfyx68 Codex Biosolutions (United States)'),
(71130, 'https://ror.org/030f1e584', 'no_lang_code', 1, 'https://ror.org/030f1e584 Cortrol Services (United States)'),
(71131, 'https://ror.org/051n93m20', 'no_lang_code', 1, 'https://ror.org/051n93m20 Genpact (United States)'),
(71132, 'https://ror.org/03z78jt35', 'no_lang_code', 1, 'https://ror.org/03z78jt35 Custom Scientific (United States)'),
(71133, 'https://ror.org/02g8fqy85', 'no_lang_code', 1, 'https://ror.org/02g8fqy85 CoolCad Electronics (United States)'),
(71134, 'https://ror.org/039psj505', 'no_lang_code', 1, 'https://ror.org/039psj505 Lightening Energy (United States)'),
(71135, 'https://ror.org/05fxdg983', 'no_lang_code', 1, 'https://ror.org/05fxdg983 Coramed (United States)'),
(71136, 'https://ror.org/01j0mz257', 'no_lang_code', 1, 'https://ror.org/01j0mz257 CyberOptics (United States)'),
(71137, 'https://ror.org/04zb5v345', 'no_lang_code', 1, 'https://ror.org/04zb5v345 COSM Advanced Manufacturing Systems (United States)'),
(71138, 'https://ror.org/057mfeh70', 'no_lang_code', 1, 'https://ror.org/057mfeh70 Coreform (United States)'),
(71139, 'https://ror.org/00tq4sv71', 'no_lang_code', 1, 'https://ror.org/00tq4sv71 Cynvec (United States)'),
(71140, 'https://ror.org/034n9ps55', 'no_lang_code', 1, 'https://ror.org/034n9ps55 Intelli-Firewall (United States)'),
(71141, 'https://ror.org/03nj9bh85', 'no_lang_code', 1, 'https://ror.org/03nj9bh85 Corgenix (United States)'),
(71142, 'https://ror.org/04b6bgg83', 'no_lang_code', 1, 'https://ror.org/04b6bgg83 Coridea (United States)'),
(71143, 'https://ror.org/042228s94', 'no_lang_code', 1, 'https://ror.org/042228s94 Cyteir Therapeutics (United States)'),
(71144, 'https://ror.org/02xy8q226', 'no_lang_code', 1, 'https://ror.org/02xy8q226 Composites Automation (United States)'),
(71145, 'https://ror.org/02raw1z52', 'no_lang_code', 1, 'https://ror.org/02raw1z52 Countervail Corporation (United States)'),
(71146, 'https://ror.org/03tdwc870', 'no_lang_code', 1, 'https://ror.org/03tdwc870 Compositex (United States)'),
(71147, 'https://ror.org/01974bd32', 'no_lang_code', 1, 'https://ror.org/01974bd32 CytoInformatics (United States)'),
(71148, 'https://ror.org/01ywq4g22', 'no_lang_code', 1, 'https://ror.org/01ywq4g22 CytoLumina Technologies (United States)'),
(71149, 'https://ror.org/042wbt424', 'no_lang_code', 1, 'https://ror.org/042wbt424 Cova (United States)'),
(71150, 'https://ror.org/02q284937', 'no_lang_code', 1, 'https://ror.org/02q284937 Corrdesa (United States)'),
(71151, 'https://ror.org/03wgnxg62', 'no_lang_code', 1, 'https://ror.org/03wgnxg62 Cytonics (United States)'),
(71152, 'https://ror.org/05bte7q71', 'no_lang_code', 1, 'https://ror.org/05bte7q71 Cytoptics (United States)'),
(71153, 'https://ror.org/00g5g8212', 'no_lang_code', 1, 'https://ror.org/00g5g8212 Ipsos (United States)'),
(71154, 'https://ror.org/034egr366', 'no_lang_code', 1, 'https://ror.org/034egr366 Cortest (United States)'),
(71155, 'https://ror.org/01504hb29', 'no_lang_code', 1, 'https://ror.org/01504hb29 Cytovale (United States)'),
(71156, 'https://ror.org/0230prd66', 'no_lang_code', 1, 'https://ror.org/0230prd66 Cox & Company (United States)'),
(71157, 'https://ror.org/05b1rj382', 'no_lang_code', 1, 'https://ror.org/05b1rj382 DHPC Technologies (United States)'),
(71158, 'https://ror.org/020bgk265', 'no_lang_code', 1, 'https://ror.org/020bgk265 D-2 Incorporated (United States)'),
(71159, 'https://ror.org/05e9tm050', 'no_lang_code', 1, 'https://ror.org/05e9tm050 Detectogen (United States)'),
(71160, 'https://ror.org/037668223', 'no_lang_code', 1, 'https://ror.org/037668223 cPacket (United States)'),
(71161, 'https://ror.org/02jcjsk08', 'no_lang_code', 1, 'https://ror.org/02jcjsk08 DRG Undersea Consulting (United States)'),
(71162, 'https://ror.org/03j0tz946', 'no_lang_code', 1, 'https://ror.org/03j0tz946 Detector Technology (United States)'),
(71163, 'https://ror.org/03781qc53', 'no_lang_code', 1, 'https://ror.org/03781qc53 Frontier Energy (United States)'),
(71164, 'https://ror.org/02n7nje79', 'no_lang_code', 1, 'https://ror.org/02n7nje79 Creative Aero Engineering Solutions (United States)'),
(71165, 'https://ror.org/014p3wd44', 'no_lang_code', 1, 'https://ror.org/014p3wd44 Creative Light Source (United States)'),
(71166, 'https://ror.org/04c7tcz65', 'no_lang_code', 1, 'https://ror.org/04c7tcz65 DeviceFarm (United States)'),
(71167, 'https://ror.org/03hjaw451', 'no_lang_code', 1, 'https://ror.org/03hjaw451 Daico Industries (United States)'),
(71168, 'https://ror.org/02kxj7753', 'no_lang_code', 1, 'https://ror.org/02kxj7753 Creative MicroSystems (United States)'),
(71169, 'https://ror.org/01bby3105', 'no_lang_code', 1, 'https://ror.org/01bby3105 DexMat (United States)'),
(71170, 'https://ror.org/00e965d05', 'no_lang_code', 1, 'https://ror.org/00e965d05 Dfuzion (United States)'),
(71171, 'https://ror.org/04xpmqs18', 'no_lang_code', 1, 'https://ror.org/04xpmqs18 DayStar (United States)'),
(71172, 'https://ror.org/014gfpc04', 'no_lang_code', 1, 'https://ror.org/014gfpc04 DCN (United States)'),
(71173, 'https://ror.org/001qkb777', 'no_lang_code', 1, 'https://ror.org/001qkb777 Creative Technologies (United States)'),
(71174, 'https://ror.org/04137sz34', 'no_lang_code', 1, 'https://ror.org/04137sz34 Daktari Diagnostics (United States)'),
(71175, 'https://ror.org/05fh3jm54', 'no_lang_code', 1, 'https://ror.org/05fh3jm54 Dayton T. Brown (United States)'),
(71176, 'https://ror.org/02af40965', 'no_lang_code', 1, 'https://ror.org/02af40965 Crecare (United States)'),
(71177, 'https://ror.org/011akm672', 'no_lang_code', 1, 'https://ror.org/011akm672 dbS Productions (United States)'),
(71178, 'https://ror.org/00qbns296', 'no_lang_code', 1, 'https://ror.org/00qbns296 Crestone (United States)'),
(71179, 'https://ror.org/03x89f523', 'no_lang_code', 1, 'https://ror.org/03x89f523 Model Driven Solutions (United States)'),
(71180, 'https://ror.org/03ct9r646', 'no_lang_code', 1, 'https://ror.org/03ct9r646 DBV Technology (United States)'),
(71181, 'https://ror.org/00pj4py55', 'no_lang_code', 1, 'https://ror.org/00pj4py55 American Systems (United States)'),
(71182, 'https://ror.org/01jk98t54', 'no_lang_code', 1, 'https://ror.org/01jk98t54 DoseOptics (United States)'),
(71183, 'https://ror.org/01dy6j730', 'no_lang_code', 1, 'https://ror.org/01dy6j730 Diamir (United States)'),
(71184, 'https://ror.org/041pxa775', 'no_lang_code', 1, 'https://ror.org/041pxa775 Critical Innovations (United States)'),
(71185, 'https://ror.org/0132eaf86', 'no_lang_code', 1, 'https://ror.org/0132eaf86 CRO Laboratories (United States)'),
(71186, 'https://ror.org/01y9tmc90', 'no_lang_code', 1, 'https://ror.org/01y9tmc90 DecImmune Therapeutics (United States)'),
(71187, 'https://ror.org/048nm0n40', 'no_lang_code', 1, 'https://ror.org/048nm0n40 Dust Identity (United States)'),
(71188, 'https://ror.org/04r7jvc53', 'no_lang_code', 1, 'https://ror.org/04r7jvc53 Diapin Therapeutics (United States)'),
(71189, 'https://ror.org/049wrg704', 'no_lang_code', 1, 'https://ror.org/049wrg704 Dovetail Genomics (United States)'),
(71190, 'https://ror.org/03kg58a97', 'no_lang_code', 1, 'https://ror.org/03kg58a97 Diassess (United States)'),
(71191, 'https://ror.org/00vyhrf09', 'no_lang_code', 1, 'https://ror.org/00vyhrf09 DEI Holdings (United States)'),
(71192, 'https://ror.org/05pzhrr59', 'no_lang_code', 1, 'https://ror.org/05pzhrr59 Light Curable Coatings (United States)'),
(71193, 'https://ror.org/05kjqse22', 'no_lang_code', 1, 'https://ror.org/05kjqse22 Deep Ocean Engineering (United States)');
INSERT INTO `rors` VALUES
(71194, 'https://ror.org/02zhx9s71', 'no_lang_code', 1, 'https://ror.org/02zhx9s71 Coltene (United States)'),
(71195, 'https://ror.org/04jgxcn84', 'no_lang_code', 1, 'https://ror.org/04jgxcn84 C&R Technologies (United States)'),
(71196, 'https://ror.org/05b9e3t13', 'no_lang_code', 1, 'https://ror.org/05b9e3t13 dTEC Systems (United States)'),
(71197, 'https://ror.org/053z1j925', 'no_lang_code', 1, 'https://ror.org/053z1j925 Digital Science Technologies (United States)'),
(71198, 'https://ror.org/03p8mx045', 'no_lang_code', 1, 'https://ror.org/03p8mx045 Curl Bio (United States)'),
(71199, 'https://ror.org/01vj91x16', 'no_lang_code', 1, 'https://ror.org/01vj91x16 Defense Engineering Corporation (United States)'),
(71200, 'https://ror.org/04fr05765', 'no_lang_code', 1, 'https://ror.org/04fr05765 Discerning Technologies (United States)'),
(71201, 'https://ror.org/02e7g3z76', 'no_lang_code', 1, 'https://ror.org/02e7g3z76 Curoverse (United States)'),
(71202, 'https://ror.org/05mq2av33', 'no_lang_code', 1, 'https://ror.org/05mq2av33 Dura Biotech (United States)'),
(71203, 'https://ror.org/01nh1pn53', 'no_lang_code', 1, 'https://ror.org/01nh1pn53 StereoVision Imaging (United States)'),
(71204, 'https://ror.org/011swmr49', 'no_lang_code', 1, 'https://ror.org/011swmr49 Durbin Group (United States)'),
(71205, 'https://ror.org/00nn13598', 'no_lang_code', 1, 'https://ror.org/00nn13598 Edge One (United States)'),
(71206, 'https://ror.org/04pb43063', 'no_lang_code', 1, 'https://ror.org/04pb43063 DWA Aluminum Composites (United States)'),
(71207, 'https://ror.org/02t3fqk56', 'no_lang_code', 1, 'https://ror.org/02t3fqk56 Digital Wave (United States)'),
(71208, 'https://ror.org/04h1th525', 'no_lang_code', 1, 'https://ror.org/04h1th525 DigitalSpace (United States)'),
(71209, 'https://ror.org/035ayvm38', 'no_lang_code', 1, 'https://ror.org/035ayvm38 Delaware Diamond Knives (United States)'),
(71210, 'https://ror.org/04wzaab37', 'en', 1, 'https://ror.org/04wzaab37 Delima Associates'),
(71211, 'https://ror.org/05gn3js43', 'no_lang_code', 1, 'https://ror.org/05gn3js43 DxTerity (United States)'),
(71212, 'https://ror.org/05cpqm110', 'no_lang_code', 1, 'https://ror.org/05cpqm110 Direct Electron (United States)'),
(71213, 'https://ror.org/00x8y2776', 'no_lang_code', 1, 'https://ror.org/00x8y2776 Dynalene (United States)'),
(71214, 'https://ror.org/04a1qr465', 'no_lang_code', 1, 'https://ror.org/04a1qr465 Denovx (United States)'),
(71215, 'https://ror.org/01pme5r05', 'no_lang_code', 1, 'https://ror.org/01pme5r05 DiSTI (United States)'),
(71216, 'https://ror.org/03q5h1s54', 'no_lang_code', 1, 'https://ror.org/03q5h1s54 ​Eicosis (United States)'),
(71217, 'https://ror.org/05eh8wd69', 'no_lang_code', 1, 'https://ror.org/05eh8wd69 Dependable Computing (United States)'),
(71218, 'https://ror.org/003gh6294', 'no_lang_code', 1, 'https://ror.org/003gh6294 Ejenta (United States)'),
(71219, 'https://ror.org/00semp387', 'no_lang_code', 1, 'https://ror.org/00semp387 Murphy Oil Corporation (United States)'),
(71220, 'https://ror.org/02ce15590', 'no_lang_code', 1, 'https://ror.org/02ce15590 Mood Media (United States)'),
(71221, 'https://ror.org/00fc9de56', 'no_lang_code', 1, 'https://ror.org/00fc9de56 Dog Star Technologies (United States)'),
(71222, 'https://ror.org/02sgs5a38', 'no_lang_code', 1, 'https://ror.org/02sgs5a38 Elcon (United States)'),
(71223, 'https://ror.org/01tpz3h22', 'no_lang_code', 1, 'https://ror.org/01tpz3h22 Electric Funstuff (United States)'),
(71224, 'https://ror.org/01eb6s760', 'no_lang_code', 1, 'https://ror.org/01eb6s760 Electric Propulsion Laboratory (United States)'),
(71225, 'https://ror.org/03knmxa92', 'en', 1, 'https://ror.org/03knmxa92 Dynamic Object Language Labs'),
(71226, 'https://ror.org/01f6x5c85', 'no_lang_code', 1, 'https://ror.org/01f6x5c85 Dynamic Systems Integration (United States)'),
(71227, 'https://ror.org/025emxq18', 'no_lang_code', 1, 'https://ror.org/025emxq18 DZYNE Technologies (United States)'),
(71228, 'https://ror.org/046qtkm10', 'no_lang_code', 1, 'https://ror.org/046qtkm10 Electroformed Nickel (United States)'),
(71229, 'https://ror.org/01cs5d441', 'no_lang_code', 1, 'https://ror.org/01cs5d441 E-Line Media (United States)'),
(71230, 'https://ror.org/049g84z21', 'no_lang_code', 1, 'https://ror.org/049g84z21 Electroimpact (United States)'),
(71231, 'https://ror.org/04cm43729', 'no_lang_code', 1, 'https://ror.org/04cm43729 Electron Optica (United States)'),
(71232, 'https://ror.org/010depv31', 'no_lang_code', 1, 'https://ror.org/010depv31 inTACT (United States)'),
(71233, 'https://ror.org/04jw9yz80', 'no_lang_code', 1, 'https://ror.org/04jw9yz80 Elex Biotech (United States)'),
(71234, 'https://ror.org/01qxrj975', 'no_lang_code', 1, 'https://ror.org/01qxrj975 Ellison Laboratories (United States)'),
(71235, 'https://ror.org/0463agq55', 'no_lang_code', 1, 'https://ror.org/0463agq55 Brown and Caldwell (United States)'),
(71236, 'https://ror.org/05c35hf12', 'no_lang_code', 1, 'https://ror.org/05c35hf12 Elysium Therapeutics (United States)'),
(71237, 'https://ror.org/021rm5384', 'no_lang_code', 1, 'https://ror.org/021rm5384 eMagin (United States)'),
(71238, 'https://ror.org/017jrd082', 'no_lang_code', 1, 'https://ror.org/017jrd082 Eclipse Bioinnovations (United States)'),
(71239, 'https://ror.org/04742eh45', 'no_lang_code', 1, 'https://ror.org/04742eh45 Embedded Systems (United States)'),
(71240, 'https://ror.org/0095m0q98', 'no_lang_code', 1, 'https://ror.org/0095m0q98 Eddy (United States)'),
(71241, 'https://ror.org/03zrkam54', 'no_lang_code', 1, 'https://ror.org/03zrkam54 Edge Case Research (United States)'),
(71242, 'https://ror.org/05a9ar681', 'no_lang_code', 1, 'https://ror.org/05a9ar681 Descartes Labs (United States)'),
(71243, 'https://ror.org/03pmk4927', 'no_lang_code', 1, 'https://ror.org/03pmk4927 Emerald Sky Technologies'),
(71244, 'https://ror.org/022k78750', 'no_lang_code', 1, 'https://ror.org/022k78750 ECD for the Masses (United States)'),
(71245, 'https://ror.org/02kg10n19', 'no_lang_code', 1, 'https://ror.org/02kg10n19 Design Intelligence (United States)'),
(71246, 'https://ror.org/021c2nt68', 'no_lang_code', 1, 'https://ror.org/021c2nt68 Emmune (United States)'),
(71247, 'https://ror.org/02xfc1977', 'no_lang_code', 1, 'https://ror.org/02xfc1977 Enthought (United States)'),
(71248, 'https://ror.org/045te9j93', 'no_lang_code', 1, 'https://ror.org/045te9j93 Empirical Systems Aerospace (United States)'),
(71249, 'https://ror.org/02nqa6n73', 'no_lang_code', 1, 'https://ror.org/02nqa6n73 Eskra Technical Products (United States)'),
(71250, 'https://ror.org/03bvswz74', 'no_lang_code', 1, 'https://ror.org/03bvswz74 Telesis Corporation (United States)'),
(71251, 'https://ror.org/03525gg68', 'no_lang_code', 1, 'https://ror.org/03525gg68 Entropic Systems (United States)'),
(71252, 'https://ror.org/02qcr0t64', 'no_lang_code', 1, 'https://ror.org/02qcr0t64 Endomimetics (United States)'),
(71253, 'https://ror.org/032cpcp20', 'no_lang_code', 1, 'https://ror.org/032cpcp20 ETI Instrument Systems (United States)'),
(71254, 'https://ror.org/02cfsj843', 'no_lang_code', 1, 'https://ror.org/02cfsj843 Envention (United States)'),
(71255, 'https://ror.org/028n3wq88', 'no_lang_code', 1, 'https://ror.org/028n3wq88 EndoProtech (United States)'),
(71256, 'https://ror.org/00ad9p542', 'no_lang_code', 1, 'https://ror.org/00ad9p542 Ferric (United States)'),
(71257, 'https://ror.org/00tjrva09', 'no_lang_code', 1, 'https://ror.org/00tjrva09 Envirochem (United States)'),
(71258, 'https://ror.org/00q9x4d93', 'no_lang_code', 1, 'https://ror.org/00q9x4d93 Eureka Aerospace (United States)'),
(71259, 'https://ror.org/02bn6gq21', 'no_lang_code', 1, 'https://ror.org/02bn6gq21 FGH Biotech (United States)'),
(71260, 'https://ror.org/04ap5hz50', 'no_lang_code', 1, 'https://ror.org/04ap5hz50 VSE Corporation (United States)'),
(71261, 'https://ror.org/000ecmj40', 'no_lang_code', 1, 'https://ror.org/000ecmj40 Evorx (United States)'),
(71262, 'https://ror.org/01z8avt53', 'no_lang_code', 1, 'https://ror.org/01z8avt53 Fibralign (United States)'),
(71263, 'https://ror.org/0195q2562', 'no_lang_code', 1, 'https://ror.org/0195q2562 Eon Corporation (United States)'),
(71264, 'https://ror.org/01qsj4k11', 'no_lang_code', 1, 'https://ror.org/01qsj4k11 Energesis Pharmaceuticals (United States)'),
(71265, 'https://ror.org/00p3qg519', 'en', 1, 'https://ror.org/00p3qg519 Exact Sports'),
(71266, 'https://ror.org/020emvx88', 'no_lang_code', 1, 'https://ror.org/020emvx88 EP Analytics (United States)'),
(71267, 'https://ror.org/055g1b266', 'no_lang_code', 1, 'https://ror.org/055g1b266 Energy Concepts (United States)'),
(71268, 'https://ror.org/00z1z4s30', 'no_lang_code', 1, 'https://ror.org/00z1z4s30 EpiBone (United States)'),
(71269, 'https://ror.org/05va3v984', 'no_lang_code', 1, 'https://ror.org/05va3v984 Expedition Technology (United States)'),
(71270, 'https://ror.org/05w58gm09', 'no_lang_code', 1, 'https://ror.org/05w58gm09 Fifth Gait Technologies (United States)'),
(71271, 'https://ror.org/02cmcyy37', 'no_lang_code', 1, 'https://ror.org/02cmcyy37 Exos (United States)'),
(71272, 'https://ror.org/05023n062', 'no_lang_code', 1, 'https://ror.org/05023n062 Energy Quest Technologies (United States)'),
(71273, 'https://ror.org/018mc6y79', 'no_lang_code', 1, 'https://ror.org/018mc6y79 Fimbrion Therapeutics (United States)'),
(71274, 'https://ror.org/035tvak16', 'no_lang_code', 1, 'https://ror.org/035tvak16 Experiad (United States)'),
(71275, 'https://ror.org/00wybgv46', 'no_lang_code', 1, 'https://ror.org/00wybgv46 Enformia (United States)'),
(71276, 'https://ror.org/04cprvb13', 'no_lang_code', 1, 'https://ror.org/04cprvb13 Engin-Ic (United States)'),
(71277, 'https://ror.org/03b4e1389', 'no_lang_code', 1, 'https://ror.org/03b4e1389 Fiore Industries (United States)'),
(71278, 'https://ror.org/00vbd8v64', 'no_lang_code', 1, 'https://ror.org/00vbd8v64 Episensors (United States)'),
(71279, 'https://ror.org/0107ykj49', 'no_lang_code', 1, 'https://ror.org/0107ykj49 Extreme Diagnostics (United States)'),
(71280, 'https://ror.org/02yj18485', 'no_lang_code', 1, 'https://ror.org/02yj18485 Engineering Matters (United States)'),
(71281, 'https://ror.org/04v8wx508', 'no_lang_code', 1, 'https://ror.org/04v8wx508 Ezenia (United States)'),
(71282, 'https://ror.org/04h516318', 'no_lang_code', 1, 'https://ror.org/04h516318 Firestar Technologies (United States)'),
(71283, 'https://ror.org/04pp9zs91', 'no_lang_code', 1, 'https://ror.org/04pp9zs91 Engineering Science Analysis (United States)'),
(71284, 'https://ror.org/00qmr3w93', 'no_lang_code', 1, 'https://ror.org/00qmr3w93 Fabrico Technology (United States)'),
(71285, 'https://ror.org/04ydsm425', 'no_lang_code', 1, 'https://ror.org/04ydsm425 Enhanced Systems Consulting (United States)'),
(71286, 'https://ror.org/027218r60', 'no_lang_code', 1, 'https://ror.org/027218r60 CounterPath (United States)'),
(71287, 'https://ror.org/01vqq8440', 'no_lang_code', 1, 'https://ror.org/01vqq8440 ERA Software Systems (United States)'),
(71288, 'https://ror.org/029mydn95', 'no_lang_code', 1, 'https://ror.org/029mydn95 Fischer Imaging (United States)'),
(71289, 'https://ror.org/00xfbtw98', 'no_lang_code', 1, 'https://ror.org/00xfbtw98 EnSolve Biosystems (United States)'),
(71290, 'https://ror.org/0429eqk16', 'no_lang_code', 1, 'https://ror.org/0429eqk16 Colfax (United States)'),
(71291, 'https://ror.org/03tqm1w89', 'no_lang_code', 1, 'https://ror.org/03tqm1w89 Erallo Technologies (United States)'),
(71292, 'https://ror.org/00648sd60', 'no_lang_code', 1, 'https://ror.org/00648sd60 Entanglement Technologies (United States)'),
(71293, 'https://ror.org/05hfzg379', 'no_lang_code', 1, 'https://ror.org/05hfzg379 Entech (United States)'),
(71294, 'https://ror.org/00v1wvp38', 'no_lang_code', 1, 'https://ror.org/00v1wvp38 Flashback Technologies (United States)'),
(71295, 'https://ror.org/04esx4309', 'no_lang_code', 1, 'https://ror.org/04esx4309 Fairmount Technologies (United States)'),
(71296, 'https://ror.org/02m23a643', 'no_lang_code', 1, 'https://ror.org/02m23a643 Fallbrook Engineering (United States)'),
(71297, 'https://ror.org/0269jcv25', 'no_lang_code', 1, 'https://ror.org/0269jcv25 Esensors (United States)'),
(71298, 'https://ror.org/040xrky57', 'no_lang_code', 1, 'https://ror.org/040xrky57 Falmouth Scientific (United States)'),
(71299, 'https://ror.org/027ckgt14', 'no_lang_code', 1, 'https://ror.org/027ckgt14 Flex Force Enterprises (United States)'),
(71300, 'https://ror.org/0534yb097', 'no_lang_code', 1, 'https://ror.org/0534yb097 Enterprise Sciences (United States)'),
(71301, 'https://ror.org/01t4ana66', 'no_lang_code', 1, 'https://ror.org/01t4ana66 Flexsys (United States)'),
(71302, 'https://ror.org/02gy8t657', 'no_lang_code', 1, 'https://ror.org/02gy8t657 Function Promoting Therapies (United States)'),
(71303, 'https://ror.org/05pdy0618', 'no_lang_code', 1, 'https://ror.org/05pdy0618 Generation 2 Materials Technology (United States)'),
(71304, 'https://ror.org/048maeh80', 'no_lang_code', 1, 'https://ror.org/048maeh80 KeyW (United States)'),
(71305, 'https://ror.org/02cpbjg46', 'no_lang_code', 1, 'https://ror.org/02cpbjg46 Fuse (United States)'),
(71306, 'https://ror.org/01z6gyk64', 'no_lang_code', 1, 'https://ror.org/01z6gyk64 Flight Works (United States)'),
(71307, 'https://ror.org/00ywmky87', 'no_lang_code', 1, 'https://ror.org/00ywmky87 Flightware (United States)'),
(71308, 'https://ror.org/05rsmmq85', 'no_lang_code', 1, 'https://ror.org/05rsmmq85 Fuss & O’Neill (United States)'),
(71309, 'https://ror.org/01qdnge68', 'no_lang_code', 1, 'https://ror.org/01qdnge68 Fluent (United States)'),
(71310, 'https://ror.org/04n3ta263', 'no_lang_code', 1, 'https://ror.org/04n3ta263 Flometrics (United States)'),
(71311, 'https://ror.org/05td67m16', 'no_lang_code', 1, 'https://ror.org/05td67m16 Fluid Synchrony (United States)'),
(71312, 'https://ror.org/03e14gy69', 'no_lang_code', 1, 'https://ror.org/03e14gy69 GenomeDesigns Lab (United States)'),
(71313, 'https://ror.org/00mg9qs62', 'no_lang_code', 1, 'https://ror.org/00mg9qs62 GC Systems (United States)'),
(71314, 'https://ror.org/00442nv52', 'no_lang_code', 1, 'https://ror.org/00442nv52 Globe Composite (United States)'),
(71315, 'https://ror.org/01n6ss875', 'no_lang_code', 1, 'https://ror.org/01n6ss875 Glosten (United States)'),
(71316, 'https://ror.org/02reydp80', 'no_lang_code', 1, 'https://ror.org/02reydp80 Glucan Biorenewables (United States)'),
(71317, 'https://ror.org/01bqqes77', 'no_lang_code', 1, 'https://ror.org/01bqqes77 Fluorescence Innovations (United States)'),
(71318, 'https://ror.org/03hrkx094', 'no_lang_code', 1, 'https://ror.org/03hrkx094 Gadusol Laboratories (United States)'),
(71319, 'https://ror.org/02jek3571', 'no_lang_code', 1, 'https://ror.org/02jek3571 Fluoresprobe Sciences (United States)'),
(71320, 'https://ror.org/02pep9116', 'no_lang_code', 1, 'https://ror.org/02pep9116 GlyTech (United States)'),
(71321, 'https://ror.org/05vh42w24', 'no_lang_code', 1, 'https://ror.org/05vh42w24 Gaia Herbs (United States)'),
(71322, 'https://ror.org/01286xj85', 'no_lang_code', 1, 'https://ror.org/01286xj85 FocusStart (United States)'),
(71323, 'https://ror.org/03q8mf789', 'no_lang_code', 1, 'https://ror.org/03q8mf789 Goleta Engineering (United States)'),
(71324, 'https://ror.org/052s7ab91', 'no_lang_code', 1, 'https://ror.org/052s7ab91 Folded Structures (United States)'),
(71325, 'https://ror.org/00w074307', 'no_lang_code', 1, 'https://ror.org/00w074307 GoofyFoot Labs (United States)'),
(71326, 'https://ror.org/058zn7e64', 'no_lang_code', 1, 'https://ror.org/058zn7e64 Teraphysics (United States)'),
(71327, 'https://ror.org/00gyqqh04', 'no_lang_code', 1, 'https://ror.org/00gyqqh04 Fiber Optic Manufacturing in Space (United States)'),
(71328, 'https://ror.org/00wp30s27', 'no_lang_code', 1, 'https://ror.org/00wp30s27 Keywords Studios (United States)'),
(71329, 'https://ror.org/019kjv407', 'no_lang_code', 1, 'https://ror.org/019kjv407 Gougeon Brothers (United States)'),
(71330, 'https://ror.org/03kwqy112', 'no_lang_code', 1, 'https://ror.org/03kwqy112 GPB Scientific (United States)'),
(71331, 'https://ror.org/01ns4tv82', 'no_lang_code', 1, 'https://ror.org/01ns4tv82 GPD Optoelectronics (United States)'),
(71332, 'https://ror.org/045832a47', 'no_lang_code', 1, 'https://ror.org/045832a47 GamesThatWork (United States)'),
(71333, 'https://ror.org/03vqhcv86', 'no_lang_code', 1, 'https://ror.org/03vqhcv86 Gamma Therapeutics (United States)'),
(71334, 'https://ror.org/009ne2259', 'no_lang_code', 1, 'https://ror.org/009ne2259 For Robin (United States)'),
(71335, 'https://ror.org/02wgzkd84', 'no_lang_code', 1, 'https://ror.org/02wgzkd84 Graf Research (United States)'),
(71336, 'https://ror.org/036y4q615', 'no_lang_code', 1, 'https://ror.org/036y4q615 Vector (United States)'),
(71337, 'https://ror.org/00r3k2f05', 'no_lang_code', 1, 'https://ror.org/00r3k2f05 Grainflow Dynamics (United States)'),
(71338, 'https://ror.org/041542g68', 'no_lang_code', 1, 'https://ror.org/041542g68 Foresite (United States)'),
(71339, 'https://ror.org/00b9t3w70', 'no_lang_code', 1, 'https://ror.org/00b9t3w70 TerraGo (United States)'),
(71340, 'https://ror.org/03jjj8766', 'en', 1, 'https://ror.org/03jjj8766 Green Technology'),
(71341, 'https://ror.org/031cp3483', 'no_lang_code', 1, 'https://ror.org/031cp3483 Gastops (United States)'),
(71342, 'https://ror.org/032pxea46', 'no_lang_code', 1, 'https://ror.org/032pxea46 Geost (United States)'),
(71343, 'https://ror.org/038rpm246', 'no_lang_code', 1, 'https://ror.org/038rpm246 GHKN Engineering (United States)'),
(71344, 'https://ror.org/05x55kp86', 'no_lang_code', 1, 'https://ror.org/05x55kp86 Forsythe Technologies (United States)'),
(71345, 'https://ror.org/01m9jpy59', 'no_lang_code', 1, 'https://ror.org/01m9jpy59 Greensea Systems (United States)'),
(71346, 'https://ror.org/00rkfts56', 'no_lang_code', 1, 'https://ror.org/00rkfts56 Gismo Therapeutics (United States)'),
(71347, 'https://ror.org/01wfg7444', 'no_lang_code', 1, 'https://ror.org/01wfg7444 Grid Logic (United States)'),
(71348, 'https://ror.org/047j8xx02', 'en', 1, 'https://ror.org/047j8xx02 Gear Research Institute'),
(71349, 'https://ror.org/005gnk787', 'no_lang_code', 1, 'https://ror.org/005gnk787 Fort Environmental Laboratories (United States)'),
(71350, 'https://ror.org/00axz0e09', 'no_lang_code', 1, 'https://ror.org/00axz0e09 E7 Ventures (United States)'),
(71351, 'https://ror.org/04zdent75', 'no_lang_code', 1, 'https://ror.org/04zdent75 Gem Power (United States)'),
(71352, 'https://ror.org/02r802v31', 'no_lang_code', 1, 'https://ror.org/02r802v31 Fortem Technologies (United States)'),
(71353, 'https://ror.org/058646248', 'no_lang_code', 1, 'https://ror.org/058646248 Gemini Computers (United States)'),
(71354, 'https://ror.org/00pjvg681', 'no_lang_code', 1, 'https://ror.org/00pjvg681 Global Aircraft (United States)'),
(71355, 'https://ror.org/01t4t8r38', 'no_lang_code', 1, 'https://ror.org/01t4t8r38 Gen-9 (United States)'),
(71356, 'https://ror.org/04hjm1265', 'no_lang_code', 1, 'https://ror.org/04hjm1265 Group W (United States)'),
(71357, 'https://ror.org/01k645a92', 'no_lang_code', 1, 'https://ror.org/01k645a92 Forward Photonics (United States)'),
(71358, 'https://ror.org/00cjhgf11', 'no_lang_code', 1, 'https://ror.org/00cjhgf11 FoVI3D (United States)'),
(71359, 'https://ror.org/00zay1847', 'no_lang_code', 1, 'https://ror.org/00zay1847 GTD Unlimited (United States)'),
(71360, 'https://ror.org/03bdktf45', 'no_lang_code', 1, 'https://ror.org/03bdktf45 Fracsun (United States)'),
(71361, 'https://ror.org/00n6bec83', 'no_lang_code', 1, 'https://ror.org/00n6bec83 Guernsey Coating Laboratories (United States)'),
(71362, 'https://ror.org/010pg4y69', 'no_lang_code', 1, 'https://ror.org/010pg4y69 Genapsys (United States)'),
(71363, 'https://ror.org/01m3qwn25', 'no_lang_code', 1, 'https://ror.org/01m3qwn25 Guidestar Optical Systems (United States)'),
(71364, 'https://ror.org/00h33cn96', 'no_lang_code', 1, 'https://ror.org/00h33cn96 Genendeavor (United States)'),
(71365, 'https://ror.org/01a5ymr35', 'no_lang_code', 1, 'https://ror.org/01a5ymr35 Global Science & Technology (United States)'),
(71366, 'https://ror.org/00hyx3015', 'no_lang_code', 1, 'https://ror.org/00hyx3015 Frequency Management International (United States)'),
(71367, 'https://ror.org/0542z7581', 'no_lang_code', 1, 'https://ror.org/0542z7581 Front Range Engineering (United States)'),
(71368, 'https://ror.org/05wjk9x59', 'no_lang_code', 1, 'https://ror.org/05wjk9x59 General Oceanics (United States)'),
(71369, 'https://ror.org/05p8b7e93', 'no_lang_code', 1, 'https://ror.org/05p8b7e93 Frontier Aerospace Corporation (United States)'),
(71370, 'https://ror.org/007whsh62', 'no_lang_code', 1, 'https://ror.org/007whsh62 Intertek (United States)'),
(71371, 'https://ror.org/03qe43686', 'no_lang_code', 1, 'https://ror.org/03qe43686 HNU Photonics (United States)'),
(71372, 'https://ror.org/0261n2w64', 'no_lang_code', 1, 'https://ror.org/0261n2w64 HS Owen (United States)'),
(71373, 'https://ror.org/047edpg75', 'en', 1, 'https://ror.org/047edpg75 HƓpital Psychiatrique du Beau Vallon Le Beau Vallon - Psychiatric Hospital'),
(71374, 'https://ror.org/04gqz0031', 'no_lang_code', 1, 'https://ror.org/04gqz0031 H6 Systems (United States)'),
(71375, 'https://ror.org/03g343n58', 'no_lang_code', 1, 'https://ror.org/03g343n58 FSCX (United States)'),
(71376, 'https://ror.org/01garp273', 'no_lang_code', 1, 'https://ror.org/01garp273 Fulcrum Composites (United States)'),
(71377, 'https://ror.org/04x95c937', 'no_lang_code', 1, 'https://ror.org/04x95c937 Health and Education Research Management and Epidemiologic Services (United States)'),
(71378, 'https://ror.org/04ganmj42', 'no_lang_code', 1, 'https://ror.org/04ganmj42 Herrick Technology Laboratories (United States)'),
(71379, 'https://ror.org/05n134d59', 'no_lang_code', 1, 'https://ror.org/05n134d59 Halcyon Biomedical (United States)'),
(71380, 'https://ror.org/01bycfv98', 'no_lang_code', 1, 'https://ror.org/01bycfv98 Ideas Engineering & Technology (United States)'),
(71381, 'https://ror.org/02d77hg59', 'no_lang_code', 1, 'https://ror.org/02d77hg59 ID Genomics (United States)'),
(71382, 'https://ror.org/03tny0b60', 'no_lang_code', 1, 'https://ror.org/03tny0b60 Hesperos (United States)'),
(71383, 'https://ror.org/02xvpd793', 'no_lang_code', 1, 'https://ror.org/02xvpd793 Heureka (United States)'),
(71384, 'https://ror.org/0186pgv50', 'no_lang_code', 1, 'https://ror.org/0186pgv50 iFIT Prosthetics (United States)'),
(71385, 'https://ror.org/02mdvw277', 'no_lang_code', 1, 'https://ror.org/02mdvw277 Hanby Environmental (United States)'),
(71386, 'https://ror.org/01tje5w07', 'no_lang_code', 1, 'https://ror.org/01tje5w07 Hydroacoustics (United States)'),
(71387, 'https://ror.org/02vparz93', 'no_lang_code', 1, 'https://ror.org/02vparz93 Hexagon Interactive (United States)'),
(71388, 'https://ror.org/05rq0zb63', 'no_lang_code', 1, 'https://ror.org/05rq0zb63 iK9'),
(71389, 'https://ror.org/04hjd4917', 'no_lang_code', 1, 'https://ror.org/04hjd4917 Hardric Laboratories (United States)'),
(71390, 'https://ror.org/034qcqw57', 'no_lang_code', 1, 'https://ror.org/034qcqw57 Hf Designworks (United States)'),
(71391, 'https://ror.org/00feqrp17', 'no_lang_code', 1, 'https://ror.org/00feqrp17 Hydronalix (United States)'),
(71392, 'https://ror.org/0582veh46', 'no_lang_code', 1, 'https://ror.org/0582veh46 HarmonoLogic (United States)'),
(71393, 'https://ror.org/03p9zdb14', 'no_lang_code', 1, 'https://ror.org/03p9zdb14 ISCO International (United States)'),
(71394, 'https://ror.org/02g6p0656', 'no_lang_code', 1, 'https://ror.org/02g6p0656 Harp Engineering (United States)'),
(71395, 'https://ror.org/051qp5024', 'no_lang_code', 1, 'https://ror.org/051qp5024 Hartsci (United States)'),
(71396, 'https://ror.org/05h1bjp83', 'no_lang_code', 1, 'https://ror.org/05h1bjp83 High Throughput Biology (United States)'),
(71397, 'https://ror.org/048kwbq96', 'no_lang_code', 1, 'https://ror.org/048kwbq96 ImCare Biotech (United States)'),
(71398, 'https://ror.org/02xvpn995', 'no_lang_code', 1, 'https://ror.org/02xvpn995 Hawaii Hydrogen Carriers (United States)'),
(71399, 'https://ror.org/058twjz75', 'no_lang_code', 1, 'https://ror.org/058twjz75 HyPerComp Engineering (United States)'),
(71400, 'https://ror.org/016ata990', 'no_lang_code', 1, 'https://ror.org/016ata990 Immuno Technologies (United States)'),
(71401, 'https://ror.org/01k1gfz56', 'no_lang_code', 1, 'https://ror.org/01k1gfz56 Hays Innovations (United States)'),
(71402, 'https://ror.org/059evmh03', 'no_lang_code', 1, 'https://ror.org/059evmh03 Hocuslocus (United States)'),
(71403, 'https://ror.org/030gh7x86', 'no_lang_code', 1, 'https://ror.org/030gh7x86 Immunosciences Lab (United States)'),
(71404, 'https://ror.org/01m5b4t98', 'no_lang_code', 1, 'https://ror.org/01m5b4t98 Hoh Aeronautics (United States)'),
(71405, 'https://ror.org/03fka6907', 'no_lang_code', 1, 'https://ror.org/03fka6907 Hyperion Technology Group (United States)'),
(71406, 'https://ror.org/02857w585', 'no_lang_code', 1, 'https://ror.org/02857w585 Hdm Systems (United States)'),
(71407, 'https://ror.org/042sca472', 'no_lang_code', 1, 'https://ror.org/042sca472 H-DOX (United States)'),
(71408, 'https://ror.org/04zp3gp22', 'no_lang_code', 1, 'https://ror.org/04zp3gp22 ImpeDx Diagnostics (United States)'),
(71409, 'https://ror.org/00wfb0t96', 'no_lang_code', 1, 'https://ror.org/00wfb0t96 Holoeye (United States)'),
(71410, 'https://ror.org/05mc59k43', 'no_lang_code', 1, 'https://ror.org/05mc59k43 Health Decision Technologies (United States)'),
(71411, 'https://ror.org/02bq53250', 'no_lang_code', 1, 'https://ror.org/02bq53250 Comfort Talk (United States)'),
(71412, 'https://ror.org/00darzp70', 'no_lang_code', 1, 'https://ror.org/00darzp70 Health Innovations (United States)'),
(71413, 'https://ror.org/020esap58', 'no_lang_code', 1, 'https://ror.org/020esap58 Valve (United States)'),
(71414, 'https://ror.org/04ea9we05', 'no_lang_code', 1, 'https://ror.org/04ea9we05 Hope Pharmaceuticals (United States)'),
(71415, 'https://ror.org/00amyy824', 'no_lang_code', 1, 'https://ror.org/00amyy824 In Vitro Admet Laboratories (United States)'),
(71416, 'https://ror.org/04w1vv369', 'no_lang_code', 1, 'https://ror.org/04w1vv369 Healthcare Technologies and Methods (United States)'),
(71417, 'https://ror.org/05kpzb522', 'no_lang_code', 1, 'https://ror.org/05kpzb522 InVivo Analytics (United States)'),
(71418, 'https://ror.org/0336yfm40', 'no_lang_code', 1, 'https://ror.org/0336yfm40 In Depth Engineering (United States)'),
(71419, 'https://ror.org/00s11fs62', 'no_lang_code', 1, 'https://ror.org/00s11fs62 iDEAL Technology (United States)'),
(71420, 'https://ror.org/03kmk3010', 'no_lang_code', 1, 'https://ror.org/03kmk3010 Inanovate (United States)'),
(71421, 'https://ror.org/04t7my217', 'no_lang_code', 1, 'https://ror.org/04t7my217 Inceptus (United States)'),
(71422, 'https://ror.org/04nwbht92', 'no_lang_code', 1, 'https://ror.org/04nwbht92 Tricol Biomedical (United States)'),
(71423, 'https://ror.org/00k2ykm07', 'no_lang_code', 1, 'https://ror.org/00k2ykm07 Industrial & Biomedical Sensors (United States)'),
(71424, 'https://ror.org/052ff1r50', 'no_lang_code', 1, 'https://ror.org/052ff1r50 IC Tech (United States)'),
(71425, 'https://ror.org/003cyvv46', 'no_lang_code', 1, 'https://ror.org/003cyvv46 h2med (United States)'),
(71426, 'https://ror.org/03nm9bt69', 'no_lang_code', 1, 'https://ror.org/03nm9bt69 Howell Laboratories (United States)'),
(71427, 'https://ror.org/00shyvc62', 'no_lang_code', 1, 'https://ror.org/00shyvc62 Icosystem (United States)'),
(71428, 'https://ror.org/035x03e98', 'no_lang_code', 1, 'https://ror.org/035x03e98 InEnTec (United States)'),
(71429, 'https://ror.org/04vda4c44', 'no_lang_code', 1, 'https://ror.org/04vda4c44 Hqphotonics (United States)'),
(71430, 'https://ror.org/00y1ncc66', 'no_lang_code', 1, 'https://ror.org/00y1ncc66 Idaho Scientific (United States)'),
(71431, 'https://ror.org/04fwehd44', 'no_lang_code', 1, 'https://ror.org/04fwehd44 InfoAssure (United States)'),
(71432, 'https://ror.org/01f7ac059', 'no_lang_code', 1, 'https://ror.org/01f7ac059 Inertial Labs (United States)'),
(71433, 'https://ror.org/05h4gap09', 'no_lang_code', 1, 'https://ror.org/05h4gap09 Innovative Design Engineeering & Analysis (United States)'),
(71434, 'https://ror.org/05bvpnp10', 'no_lang_code', 1, 'https://ror.org/05bvpnp10 HTD Biosystems (United States)'),
(71435, 'https://ror.org/05rczqt20', 'no_lang_code', 1, 'https://ror.org/05rczqt20 InertialWave (United States)'),
(71436, 'https://ror.org/01ame3c61', 'no_lang_code', 1, 'https://ror.org/01ame3c61 Innovital Systems (United States)'),
(71437, 'https://ror.org/04keq6987', 'en', 1, 'https://ror.org/04keq6987 Purdue University Northwest'),
(71438, 'https://ror.org/05m2t4v49', 'no_lang_code', 1, 'https://ror.org/05m2t4v49 Infinid Technologies (United States)'),
(71439, 'https://ror.org/02ca9pg17', 'no_lang_code', 1, 'https://ror.org/02ca9pg17 Inovatia Laboratories (United States)'),
(71440, 'https://ror.org/017747t25', 'no_lang_code', 1, 'https://ror.org/017747t25 Inovex (United States)'),
(71441, 'https://ror.org/024arph56', 'no_lang_code', 1, 'https://ror.org/024arph56 MorganFranklin (United States)'),
(71442, 'https://ror.org/00r838687', 'no_lang_code', 1, 'https://ror.org/00r838687 Inscope International (United States)'),
(71443, 'https://ror.org/038swrn45', 'no_lang_code', 1, 'https://ror.org/038swrn45 Critical Imaging (United States)'),
(71444, 'https://ror.org/05701hm88', 'no_lang_code', 1, 'https://ror.org/05701hm88 Infinite Technologies (United States)'),
(71445, 'https://ror.org/03k7v4244', 'no_lang_code', 1, 'https://ror.org/03k7v4244 Infinity (United States)'),
(71446, 'https://ror.org/01k3phj09', 'no_lang_code', 1, 'https://ror.org/01k3phj09 Infrascan (United States)'),
(71447, 'https://ror.org/03qdg6h95', 'no_lang_code', 1, 'https://ror.org/03qdg6h95 Inscopix (United States)'),
(71448, 'https://ror.org/05gwgrg94', 'no_lang_code', 1, 'https://ror.org/05gwgrg94 InflamaCore (United States)'),
(71449, 'https://ror.org/00976p334', 'no_lang_code', 1, 'https://ror.org/00976p334 Calando Pharmaceuticals (United States)'),
(71450, 'https://ror.org/02pr1pc58', 'no_lang_code', 1, 'https://ror.org/02pr1pc58 Inhibrx (United States)'),
(71451, 'https://ror.org/041yzwn62', 'no_lang_code', 1, 'https://ror.org/041yzwn62 Influx (United States)'),
(71452, 'https://ror.org/03p13vc55', 'no_lang_code', 1, 'https://ror.org/03p13vc55 Insilixa (United States)'),
(71453, 'https://ror.org/00vm5qp33', 'no_lang_code', 1, 'https://ror.org/00vm5qp33 Integrated Optical Circuit Consultants (United States)'),
(71454, 'https://ror.org/04jffap62', 'no_lang_code', 1, 'https://ror.org/04jffap62 Inkbit (United States)'),
(71455, 'https://ror.org/0220er837', 'no_lang_code', 1, 'https://ror.org/0220er837 Intraband (United States)'),
(71456, 'https://ror.org/0515r3k27', 'no_lang_code', 1, 'https://ror.org/0515r3k27 Integration Innovation (United States)'),
(71457, 'https://ror.org/00txmyx33', 'no_lang_code', 1, 'https://ror.org/00txmyx33 InnaVasc Medical (United States)'),
(71458, 'https://ror.org/023n14c26', 'no_lang_code', 1, 'https://ror.org/023n14c26 Integrity Systems (United States)'),
(71459, 'https://ror.org/030jahg19', 'no_lang_code', 1, 'https://ror.org/030jahg19 Intuidex (United States)'),
(71460, 'https://ror.org/00k8r3g38', 'no_lang_code', 1, 'https://ror.org/00k8r3g38 TPK (United States)'),
(71461, 'https://ror.org/01g6mxs55', 'no_lang_code', 1, 'https://ror.org/01g6mxs55 Inteligistics (United States)'),
(71462, 'https://ror.org/027d29w93', 'no_lang_code', 1, 'https://ror.org/027d29w93 InnovaPrep (United States)'),
(71463, 'https://ror.org/03an8gd42', 'no_lang_code', 1, 'https://ror.org/03an8gd42 intuVision (United States)'),
(71464, 'https://ror.org/00sqz4v59', 'no_lang_code', 1, 'https://ror.org/00sqz4v59 Innovatech (United States)'),
(71465, 'https://ror.org/036791a63', 'no_lang_code', 1, 'https://ror.org/036791a63 S&C Electric Company (United States)'),
(71466, 'https://ror.org/05rs58729', 'no_lang_code', 1, 'https://ror.org/05rs58729 Elbit Systems (United States)'),
(71467, 'https://ror.org/05hy8nr95', 'no_lang_code', 1, 'https://ror.org/05hy8nr95 Io Therapeutics (United States)'),
(71468, 'https://ror.org/00ms2qt30', 'no_lang_code', 1, 'https://ror.org/00ms2qt30 IntelliWheels (United States)'),
(71469, 'https://ror.org/00c393w57', 'no_lang_code', 1, 'https://ror.org/00c393w57 Intematix (United States)'),
(71470, 'https://ror.org/011bk2q57', 'no_lang_code', 1, 'https://ror.org/011bk2q57 IonField Systems (United States)'),
(71471, 'https://ror.org/016tbft40', 'no_lang_code', 1, 'https://ror.org/016tbft40 INTER Materials (United States)'),
(71472, 'https://ror.org/00mx4ey95', 'no_lang_code', 1, 'https://ror.org/00mx4ey95 Innovative Imaging and Research (United States)'),
(71473, 'https://ror.org/02ttgy424', 'no_lang_code', 1, 'https://ror.org/02ttgy424 Innovative Materials Testing Technologies (United States)'),
(71474, 'https://ror.org/05a0jk155', 'no_lang_code', 1, 'https://ror.org/05a0jk155 Innovative Materials & Processes (United States)'),
(71475, 'https://ror.org/00fz3d156', 'no_lang_code', 1, 'https://ror.org/00fz3d156 SmugMug (United States)'),
(71476, 'https://ror.org/05qzrmp73', 'no_lang_code', 1, 'https://ror.org/05qzrmp73 Instrumental Polymer Technologies (United States)'),
(71477, 'https://ror.org/00zzvzy79', 'no_lang_code', 1, 'https://ror.org/00zzvzy79 Novetta (United States)'),
(71478, 'https://ror.org/04gj4mv97', 'no_lang_code', 1, 'https://ror.org/04gj4mv97 Intact Genomics (United States)'),
(71479, 'https://ror.org/0273d1w91', 'no_lang_code', 1, 'https://ror.org/0273d1w91 Intan Technologies (United States)'),
(71480, 'https://ror.org/028ata669', 'no_lang_code', 1, 'https://ror.org/028ata669 IR Dynamics (United States)'),
(71481, 'https://ror.org/00ynqbp15', 'no_lang_code', 1, 'https://ror.org/00ynqbp15 Integra (United States)'),
(71482, 'https://ror.org/00dp5t753', 'no_lang_code', 1, 'https://ror.org/00dp5t753 Innoveering (United States)'),
(71483, 'https://ror.org/016g45z27', 'no_lang_code', 1, 'https://ror.org/016g45z27 Integran (United States)'),
(71484, 'https://ror.org/05845zh49', 'no_lang_code', 1, 'https://ror.org/05845zh49 Rochester Precision Optics (United States)'),
(71485, 'https://ror.org/03prqps50', 'no_lang_code', 1, 'https://ror.org/03prqps50 4Power (United States)'),
(71486, 'https://ror.org/03c7nm582', 'no_lang_code', 1, 'https://ror.org/03c7nm582 Innovimmune Biotherapeutics (United States)'),
(71487, 'https://ror.org/01nvxbj32', 'no_lang_code', 1, 'https://ror.org/01nvxbj32 JBS Technologies (United States)'),
(71488, 'https://ror.org/057t4ts30', 'no_lang_code', 1, 'https://ror.org/057t4ts30 Igenbio (United States)'),
(71489, 'https://ror.org/05hdh9883', 'no_lang_code', 1, 'https://ror.org/05hdh9883 JK Research (United States)'),
(71490, 'https://ror.org/01zstqa72', 'no_lang_code', 1, 'https://ror.org/01zstqa72 Kalyra Pharmaceuticals (United States)'),
(71491, 'https://ror.org/014eqv775', 'no_lang_code', 1, 'https://ror.org/014eqv775 International Therapeutics (United States)'),
(71492, 'https://ror.org/028g3cv81', 'no_lang_code', 1, 'https://ror.org/028g3cv81 Interphase Materials (United States)'),
(71493, 'https://ror.org/03tw07585', 'no_lang_code', 1, 'https://ror.org/03tw07585 Jackson and Tull (United States)'),
(71494, 'https://ror.org/02yf26450', 'no_lang_code', 1, 'https://ror.org/02yf26450 InterVision Media (United States)'),
(71495, 'https://ror.org/03m3bzv26', 'no_lang_code', 1, 'https://ror.org/03m3bzv26 Kytaro (United States)'),
(71496, 'https://ror.org/03q1m1j52', 'en', 1, 'https://ror.org/03q1m1j52 IST Research'),
(71497, 'https://ror.org/01xkrj909', 'no_lang_code', 1, 'https://ror.org/01xkrj909 L-Nutra (United States)'),
(71498, 'https://ror.org/05558br18', 'no_lang_code', 1, 'https://ror.org/05558br18 Jan Biotech (United States)'),
(71499, 'https://ror.org/05j5nk668', 'no_lang_code', 1, 'https://ror.org/05j5nk668 Kelly Space & Technology (United States)'),
(71500, 'https://ror.org/05mt98789', 'no_lang_code', 1, 'https://ror.org/05mt98789 iStar'),
(71501, 'https://ror.org/022mgyj90', 'no_lang_code', 1, 'https://ror.org/022mgyj90 Kennen Technologies (United States)'),
(71502, 'https://ror.org/00zr60y65', 'no_lang_code', 1, 'https://ror.org/00zr60y65 Jariet Technologies (United States)'),
(71503, 'https://ror.org/009kqey70', 'no_lang_code', 1, 'https://ror.org/009kqey70 Kennon (United States)'),
(71504, 'https://ror.org/009prqx82', 'no_lang_code', 1, 'https://ror.org/009prqx82 Jaybridge Robotics (United States)'),
(71505, 'https://ror.org/02kh9xe88', 'no_lang_code', 1, 'https://ror.org/02kh9xe88 Western Energy Support & Technology (United States)'),
(71506, 'https://ror.org/03cbybs32', 'no_lang_code', 1, 'https://ror.org/03cbybs32 Jericho Sciences (United States)'),
(71507, 'https://ror.org/01faqmz67', 'no_lang_code', 1, 'https://ror.org/01faqmz67 Kepley BioSystems (United States)'),
(71508, 'https://ror.org/01cm1jq76', 'no_lang_code', 1, 'https://ror.org/01cm1jq76 Kerberos International (United States)'),
(71509, 'https://ror.org/00vvpe721', 'en', 1, 'https://ror.org/00vvpe721 La Jolla Alcohol Research'),
(71510, 'https://ror.org/00xky7n51', 'no_lang_code', 1, 'https://ror.org/00xky7n51 Lawrie Technology (United States)'),
(71511, 'https://ror.org/04n66vw09', 'no_lang_code', 1, 'https://ror.org/04n66vw09 Lab Resources (United States)'),
(71512, 'https://ror.org/04y58vw51', 'en', 1, 'https://ror.org/04y58vw51 CarrotNewYork'),
(71513, 'https://ror.org/02wype295', 'no_lang_code', 1, 'https://ror.org/02wype295 Keystone Automation (United States)'),
(71514, 'https://ror.org/01ps6tc76', 'no_lang_code', 1, 'https://ror.org/01ps6tc76 Leaflabs (United States)'),
(71515, 'https://ror.org/02r895s37', 'no_lang_code', 1, 'https://ror.org/02r895s37 Kibow Biotech (United States)'),
(71516, 'https://ror.org/04pq4an73', 'no_lang_code', 1, 'https://ror.org/04pq4an73 Kiko Labs (United States)'),
(71517, 'https://ror.org/0260rem45', 'no_lang_code', 1, 'https://ror.org/0260rem45 Kinetic Art & Technology (United States)'),
(71518, 'https://ror.org/04stz1h78', 'en', 1, 'https://ror.org/04stz1h78 Learning Ovations'),
(71519, 'https://ror.org/00dmpd885', 'no_lang_code', 1, 'https://ror.org/00dmpd885 John Tiller Software (United States)'),
(71520, 'https://ror.org/016kk7667', 'no_lang_code', 1, 'https://ror.org/016kk7667 ClearMotion (United States)'),
(71521, 'https://ror.org/03djana98', 'no_lang_code', 1, 'https://ror.org/03djana98 LaCell (United States)'),
(71522, 'https://ror.org/05793mh68', 'no_lang_code', 1, 'https://ror.org/05793mh68 Kinetic Resolve (United States)'),
(71523, 'https://ror.org/05q86a639', 'no_lang_code', 1, 'https://ror.org/05q86a639 Levings & Associates (United States)'),
(71524, 'https://ror.org/00j1bpb72', 'no_lang_code', 1, 'https://ror.org/00j1bpb72 Johnson Engineering (United States)'),
(71525, 'https://ror.org/03mwh5n08', 'no_lang_code', 1, 'https://ror.org/03mwh5n08 Jonas (United States)'),
(71526, 'https://ror.org/02mqmfa65', 'no_lang_code', 1, 'https://ror.org/02mqmfa65 Liberty Ammunition (United States)'),
(71527, 'https://ror.org/056hm0802', 'no_lang_code', 1, 'https://ror.org/056hm0802 Life Cycle Engineering (United States)'),
(71528, 'https://ror.org/021cmds57', 'no_lang_code', 1, 'https://ror.org/021cmds57 Life Services (United States)'),
(71529, 'https://ror.org/01em2a424', 'no_lang_code', 1, 'https://ror.org/01em2a424 Land Sea Air Autonomy (United States)'),
(71530, 'https://ror.org/006w74372', 'no_lang_code', 1, 'https://ror.org/006w74372 Landec (United States)'),
(71531, 'https://ror.org/03c782j94', 'no_lang_code', 1, 'https://ror.org/03c782j94 Judd Systems Technologies (United States)'),
(71532, 'https://ror.org/02ekas647', 'no_lang_code', 1, 'https://ror.org/02ekas647 SDL (United States)'),
(71533, 'https://ror.org/01jkbqt36', 'no_lang_code', 1, 'https://ror.org/01jkbqt36 Lankard Materials Laboratory (United States)'),
(71534, 'https://ror.org/02fwrmp37', 'no_lang_code', 1, 'https://ror.org/02fwrmp37 Lifespan Associates (United States)'),
(71535, 'https://ror.org/0337b1h63', 'no_lang_code', 1, 'https://ror.org/0337b1h63 Juneteenth Productions (United States)'),
(71536, 'https://ror.org/03phkpc68', 'no_lang_code', 1, 'https://ror.org/03phkpc68 LightStanza (United States)'),
(71537, 'https://ror.org/05w0mz683', 'no_lang_code', 1, 'https://ror.org/05w0mz683 Juniper Industries (United States)'),
(71538, 'https://ror.org/039y9ma09', 'no_lang_code', 1, 'https://ror.org/039y9ma09 Laser & Plasma Technologies (United States)'),
(71539, 'https://ror.org/019ybb567', 'no_lang_code', 1, 'https://ror.org/019ybb567 LightLine Technologies (United States)'),
(71540, 'https://ror.org/04scw1t72', 'no_lang_code', 1, 'https://ror.org/04scw1t72 Laser Shot (United States)'),
(71541, 'https://ror.org/00mkb4d14', 'hu', 1, 'https://ror.org/00mkb4d14 Lechner TudƔskƶzpont'),
(71542, 'https://ror.org/05cam0y32', 'no_lang_code', 1, 'https://ror.org/05cam0y32 NTS (United States)'),
(71543, 'https://ror.org/0225s8473', 'no_lang_code', 1, 'https://ror.org/0225s8473 LaserGuide (United States)'),
(71544, 'https://ror.org/01sxy8636', 'no_lang_code', 1, 'https://ror.org/01sxy8636 LightPointe (United States)'),
(71545, 'https://ror.org/00we63k03', 'no_lang_code', 1, 'https://ror.org/00we63k03 Kiyatec (United States)'),
(71546, 'https://ror.org/010zs2155', 'no_lang_code', 1, 'https://ror.org/010zs2155 K Lab (United States)'),
(71547, 'https://ror.org/01ja22q26', 'no_lang_code', 1, 'https://ror.org/01ja22q26 Liquidmetal Technologies (United States)'),
(71548, 'https://ror.org/03ysgs202', 'no_lang_code', 1, 'https://ror.org/03ysgs202 Klogene (United States)'),
(71549, 'https://ror.org/010xxn679', 'no_lang_code', 1, 'https://ror.org/010xxn679 Linguastat (United States)'),
(71550, 'https://ror.org/044n3e324', 'no_lang_code', 1, 'https://ror.org/044n3e324 Knopp Biosciences (United States)'),
(71551, 'https://ror.org/02tn23649', 'no_lang_code', 1, 'https://ror.org/02tn23649 Litecom (United States)'),
(71552, 'https://ror.org/04smac308', 'no_lang_code', 1, 'https://ror.org/04smac308 Loc (United States)'),
(71553, 'https://ror.org/01adn4a11', 'no_lang_code', 1, 'https://ror.org/01adn4a11 LodeSpin Labs (United States)'),
(71554, 'https://ror.org/05ts3jd18', 'no_lang_code', 1, 'https://ror.org/05ts3jd18 Lumme Labs (United States)'),
(71555, 'https://ror.org/02vjrjn58', 'no_lang_code', 1, 'https://ror.org/02vjrjn58 Logistic Gliders (United States)'),
(71556, 'https://ror.org/01680n352', 'no_lang_code', 1, 'https://ror.org/01680n352 Lithium Innovations (United States)'),
(71557, 'https://ror.org/05xvry795', 'no_lang_code', 1, 'https://ror.org/05xvry795 Lund and Company Invention (United States)'),
(71558, 'https://ror.org/02xe5e906', 'no_lang_code', 1, 'https://ror.org/02xe5e906 Lupine Labs (United States)'),
(71559, 'https://ror.org/052s8df17', 'no_lang_code', 1, 'https://ror.org/052s8df17 Lithium Power (United States)'),
(71560, 'https://ror.org/05pk1g903', 'no_lang_code', 1, 'https://ror.org/05pk1g903 Luraco Technologies (United States)'),
(71561, 'https://ror.org/003s4zv17', 'no_lang_code', 1, 'https://ror.org/003s4zv17 EaglePicher Technologies (United States)'),
(71562, 'https://ror.org/014c4zc27', 'no_lang_code', 1, 'https://ror.org/014c4zc27 Liuman Technologies (United States)'),
(71563, 'https://ror.org/05snnkz52', 'no_lang_code', 1, 'https://ror.org/05snnkz52 Koning (United States)'),
(71564, 'https://ror.org/02qc0yf38', 'no_lang_code', 1, 'https://ror.org/02qc0yf38 LiveSchool (United States)'),
(71565, 'https://ror.org/031bfdk61', 'no_lang_code', 1, 'https://ror.org/031bfdk61 LM Group (United States)'),
(71566, 'https://ror.org/02yvdyk59', 'no_lang_code', 1, 'https://ror.org/02yvdyk59 Ksaria (United States)'),
(71567, 'https://ror.org/05jk0sf34', 'no_lang_code', 1, 'https://ror.org/05jk0sf34 LW Microsystems (United States)'),
(71568, 'https://ror.org/05sbkz135', 'no_lang_code', 1, 'https://ror.org/05sbkz135 LucidEnergy (United States)'),
(71569, 'https://ror.org/00fv3qf02', 'no_lang_code', 1, 'https://ror.org/00fv3qf02 Lyndra Therapeutics (United States)'),
(71570, 'https://ror.org/056qvg202', 'no_lang_code', 1, 'https://ror.org/056qvg202 Clock Spring (United States)'),
(71571, 'https://ror.org/0174fcn41', 'no_lang_code', 1, 'https://ror.org/0174fcn41 Maas Biolab (United States)'),
(71572, 'https://ror.org/01z2j4m77', 'no_lang_code', 1, 'https://ror.org/01z2j4m77 MC Power (United States)'),
(71573, 'https://ror.org/00nmjtf96', 'no_lang_code', 1, 'https://ror.org/00nmjtf96 Catalina (United States)'),
(71574, 'https://ror.org/01g75py92', 'no_lang_code', 1, 'https://ror.org/01g75py92 MAST Technologies (United States)'),
(71575, 'https://ror.org/04k8txf58', 'no_lang_code', 1, 'https://ror.org/04k8txf58 EpiSys Science (United States)'),
(71576, 'https://ror.org/0539c7x88', 'no_lang_code', 1, 'https://ror.org/0539c7x88 Madeleine Pharmaceuticals (United States)'),
(71577, 'https://ror.org/00srfk182', 'no_lang_code', 1, 'https://ror.org/00srfk182 Magicom (United States)'),
(71578, 'https://ror.org/05ak48w56', 'no_lang_code', 1, 'https://ror.org/05ak48w56 Materials Research Group (United States)'),
(71579, 'https://ror.org/0139hgh75', 'no_lang_code', 1, 'https://ror.org/0139hgh75 Meissa Vaccines (United States)'),
(71580, 'https://ror.org/00pkccj03', 'no_lang_code', 1, 'https://ror.org/00pkccj03 Magna-Tech P/M Labs (United States)'),
(71581, 'https://ror.org/02aebf083', 'no_lang_code', 1, 'https://ror.org/02aebf083 Melink (United States)'),
(71582, 'https://ror.org/00dqx9006', 'no_lang_code', 1, 'https://ror.org/00dqx9006 MicroVide (United States)'),
(71583, 'https://ror.org/04r0mp352', 'no_lang_code', 1, 'https://ror.org/04r0mp352 Magnetic Resonance Innovations (United States)'),
(71584, 'https://ror.org/0047fgf79', 'no_lang_code', 1, 'https://ror.org/0047fgf79 Micro-Leads (United States)'),
(71585, 'https://ror.org/05re8w736', 'no_lang_code', 1, 'https://ror.org/05re8w736 MEMStim (United States)'),
(71586, 'https://ror.org/0261w0b46', 'no_lang_code', 1, 'https://ror.org/0261w0b46 Micro-Precision Technologies (United States)'),
(71587, 'https://ror.org/027yhxh89', 'no_lang_code', 1, 'https://ror.org/027yhxh89 Magzor (United States)'),
(71588, 'https://ror.org/02700b480', 'no_lang_code', 1, 'https://ror.org/02700b480 MicroConnex (United States)'),
(71589, 'https://ror.org/02gfwnc58', 'en', 1, 'https://ror.org/02gfwnc58 Prague Film School'),
(71590, 'https://ror.org/01tc7df88', 'no_lang_code', 1, 'https://ror.org/01tc7df88 Manufacturing Laboratories (United States)'),
(71591, 'https://ror.org/05g9s8164', 'no_lang_code', 1, 'https://ror.org/05g9s8164 Gallagher (United States)'),
(71592, 'https://ror.org/03zpb4e90', 'no_lang_code', 1, 'https://ror.org/03zpb4e90 MapLarge (United States)'),
(71593, 'https://ror.org/01jq58g75', 'no_lang_code', 1, 'https://ror.org/01jq58g75 Micron Corporation (United States)'),
(71594, 'https://ror.org/033c33n67', 'no_lang_code', 1, 'https://ror.org/033c33n67 Marine Design Dynamics (United States)'),
(71595, 'https://ror.org/03286xn88', 'no_lang_code', 1, 'https://ror.org/03286xn88 Microprobes (United States)'),
(71596, 'https://ror.org/05j9p9809', 'no_lang_code', 1, 'https://ror.org/05j9p9809 Marvel Medtech (United States)'),
(71597, 'https://ror.org/05yj8y167', 'no_lang_code', 1, 'https://ror.org/05yj8y167 Mesh Robotics (United States)'),
(71598, 'https://ror.org/05125rf66', 'no_lang_code', 1, 'https://ror.org/05125rf66 Metabolic Nutritionals (United States)'),
(71599, 'https://ror.org/048104e91', 'no_lang_code', 1, 'https://ror.org/048104e91 Max Biopharma (United States)'),
(71600, 'https://ror.org/03jpft613', 'no_lang_code', 1, 'https://ror.org/03jpft613 Metal Storm (United States)'),
(71601, 'https://ror.org/00ygaqv05', 'no_lang_code', 1, 'https://ror.org/00ygaqv05 MetaMorph (United States)'),
(71602, 'https://ror.org/03ak5tq12', 'no_lang_code', 1, 'https://ror.org/03ak5tq12 Microscale (United States)'),
(71603, 'https://ror.org/052hfgr76', 'no_lang_code', 1, 'https://ror.org/052hfgr76 MBC Pharma (United States)'),
(71604, 'https://ror.org/01tgsx068', 'no_lang_code', 1, 'https://ror.org/01tgsx068 Microsonic Systems (United States)'),
(71605, 'https://ror.org/0013ssk40', 'no_lang_code', 1, 'https://ror.org/0013ssk40 Microtech Instruments (United States)'),
(71606, 'https://ror.org/02ve9pj54', 'no_lang_code', 1, 'https://ror.org/02ve9pj54 McCormick Stevenson (United States)'),
(71607, 'https://ror.org/031r9ct64', 'no_lang_code', 1, 'https://ror.org/031r9ct64 Metastable Instruments (United States)'),
(71608, 'https://ror.org/05cdt9d58', 'no_lang_code', 1, 'https://ror.org/05cdt9d58 Micro Vascular Theraputics (United States)'),
(71609, 'https://ror.org/013pphq47', 'no_lang_code', 1, 'https://ror.org/013pphq47 Metria Innovation (United States)'),
(71610, 'https://ror.org/05ntky919', 'no_lang_code', 1, 'https://ror.org/05ntky919 MD Informatics (United States)'),
(71611, 'https://ror.org/02b5ra378', 'no_lang_code', 1, 'https://ror.org/02b5ra378 Microwave Applications Group (United States)'),
(71612, 'https://ror.org/03bsbp090', 'no_lang_code', 1, 'https://ror.org/03bsbp090 Minitube (United States)'),
(71613, 'https://ror.org/03hbksy74', 'no_lang_code', 1, 'https://ror.org/03hbksy74 Airbus (United States)'),
(71614, 'https://ror.org/01yeg0z60', 'no_lang_code', 1, 'https://ror.org/01yeg0z60 MDA Engineering (United States)'),
(71615, 'https://ror.org/05tcvhs47', 'no_lang_code', 1, 'https://ror.org/05tcvhs47 Microwave Products and Technology (United States)'),
(71616, 'https://ror.org/02yy7ck11', 'no_lang_code', 1, 'https://ror.org/02yy7ck11 Metstat (United States)'),
(71617, 'https://ror.org/024jszt17', 'no_lang_code', 1, 'https://ror.org/024jszt17 Mgenuity (United States)'),
(71618, 'https://ror.org/01a9bcw11', 'no_lang_code', 1, 'https://ror.org/01a9bcw11 Mira Dx (United States)'),
(71619, 'https://ror.org/05gfawf80', 'no_lang_code', 1, 'https://ror.org/05gfawf80 MH Acoustics (United States)'),
(71620, 'https://ror.org/024hme737', 'no_lang_code', 1, 'https://ror.org/024hme737 Mirage Systems (United States)'),
(71621, 'https://ror.org/04m0rev75', 'en', 1, 'https://ror.org/04m0rev75 MidSchoolMath'),
(71622, 'https://ror.org/02dz3j209', 'no_lang_code', 1, 'https://ror.org/02dz3j209 First Wave Technologies (United States)'),
(71623, 'https://ror.org/04yt49153', 'no_lang_code', 1, 'https://ror.org/04yt49153 Micatu (United States)'),
(71624, 'https://ror.org/01ad0ky70', 'no_lang_code', 1, 'https://ror.org/01ad0ky70 Mikel (United States)'),
(71625, 'https://ror.org/00cr13h95', 'no_lang_code', 1, 'https://ror.org/00cr13h95 MillenniTek (United States)');
INSERT INTO `rors` VALUES
(71626, 'https://ror.org/04k2vba54', 'no_lang_code', 1, 'https://ror.org/04k2vba54 Molecular Theranostics (United States)'),
(71627, 'https://ror.org/01jx84k94', 'no_lang_code', 1, 'https://ror.org/01jx84k94 Millennium Dynamics (United States)'),
(71628, 'https://ror.org/04nem5m18', 'no_lang_code', 1, 'https://ror.org/04nem5m18 Molecule Works (United States)'),
(71629, 'https://ror.org/02bx3wt69', 'no_lang_code', 1, 'https://ror.org/02bx3wt69 Moller International (United States)'),
(71630, 'https://ror.org/00mvdnr09', 'no_lang_code', 1, 'https://ror.org/00mvdnr09 Mach Diamond Propulsion (United States)'),
(71631, 'https://ror.org/03qrymy45', 'no_lang_code', 1, 'https://ror.org/03qrymy45 Medsleuth (United States)'),
(71632, 'https://ror.org/01xfdgh94', 'no_lang_code', 1, 'https://ror.org/01xfdgh94 Motivational Educational Entertainment Productions (United States)'),
(71633, 'https://ror.org/0194gma78', 'no_lang_code', 1, 'https://ror.org/0194gma78 MosquitoMate (United States)'),
(71634, 'https://ror.org/00j4kjd92', 'no_lang_code', 1, 'https://ror.org/00j4kjd92 PocketLab (United States)'),
(71635, 'https://ror.org/02sdyzy02', 'no_lang_code', 1, 'https://ror.org/02sdyzy02 Moxtek (United States)'),
(71636, 'https://ror.org/02m2ek616', 'no_lang_code', 1, 'https://ror.org/02m2ek616 N&N Pharmaceuticals (United States)'),
(71637, 'https://ror.org/00t6eqy44', 'no_lang_code', 1, 'https://ror.org/00t6eqy44 MP Technologies (United States)'),
(71638, 'https://ror.org/00pftgq30', 'en', 1, 'https://ror.org/00pftgq30 DST Centre for Policy Research'),
(71639, 'https://ror.org/021ebxe23', 'no_lang_code', 1, 'https://ror.org/021ebxe23 Mi-Tech (United States)'),
(71640, 'https://ror.org/04xv9k977', 'no_lang_code', 1, 'https://ror.org/04xv9k977 N5 Sensors (United States)'),
(71641, 'https://ror.org/05334he48', 'no_lang_code', 1, 'https://ror.org/05334he48 C4 Therapeutics (United States)'),
(71642, 'https://ror.org/02eb2vj04', 'no_lang_code', 1, 'https://ror.org/02eb2vj04 Mitek Analytics (United States)'),
(71643, 'https://ror.org/022z6jk58', 'en', 1, 'https://ror.org/022z6jk58 MIT Lincoln Laboratory'),
(71644, 'https://ror.org/04x2kaj78', 'no_lang_code', 1, 'https://ror.org/04x2kaj78 NajĆ­t Technologies (United States)'),
(71645, 'https://ror.org/020fcm936', 'no_lang_code', 1, 'https://ror.org/020fcm936 MixZon (United States)'),
(71646, 'https://ror.org/020jzvw77', 'no_lang_code', 1, 'https://ror.org/020jzvw77 NDE Technologies (United States)'),
(71647, 'https://ror.org/00gc8q349', 'no_lang_code', 1, 'https://ror.org/00gc8q349 Nalu Scientific (United States)'),
(71648, 'https://ror.org/0561xd336', 'no_lang_code', 1, 'https://ror.org/0561xd336 Miyazaki Enterprises (United States)'),
(71649, 'https://ror.org/04mrfa287', 'no_lang_code', 1, 'https://ror.org/04mrfa287 NanoCor Therapeutics (United States)'),
(71650, 'https://ror.org/009mm8209', 'no_lang_code', 1, 'https://ror.org/009mm8209 nanoMAG (United States)'),
(71651, 'https://ror.org/04wkssk54', 'no_lang_code', 1, 'https://ror.org/04wkssk54 HumanN (United States)'),
(71652, 'https://ror.org/054px3h87', 'no_lang_code', 1, 'https://ror.org/054px3h87 Materials Resources (United States)'),
(71653, 'https://ror.org/041wapp49', 'no_lang_code', 1, 'https://ror.org/041wapp49 Pain Care Labs (United States)'),
(71654, 'https://ror.org/01d4cy209', 'no_lang_code', 1, 'https://ror.org/01d4cy209 NanoRidge (United States)'),
(71655, 'https://ror.org/02enjva13', 'no_lang_code', 1, 'https://ror.org/02enjva13 BitPlus (United States)'),
(71656, 'https://ror.org/034ca5920', 'no_lang_code', 1, 'https://ror.org/034ca5920 TSI (United States)'),
(71657, 'https://ror.org/02p6hd207', 'no_lang_code', 1, 'https://ror.org/02p6hd207 MMR Technologies (United States)'),
(71658, 'https://ror.org/01mj57h56', 'no_lang_code', 1, 'https://ror.org/01mj57h56 NanoSD (United States)'),
(71659, 'https://ror.org/040yamy52', 'no_lang_code', 1, 'https://ror.org/040yamy52 Multidisciplinary Software Systems Research (United States)'),
(71660, 'https://ror.org/02f1wt137', 'no_lang_code', 1, 'https://ror.org/02f1wt137 Nanoshell Company (United States)'),
(71661, 'https://ror.org/03fg3n924', 'no_lang_code', 1, 'https://ror.org/03fg3n924 Mobile Foundations (United States)'),
(71662, 'https://ror.org/01z6qfp70', 'no_lang_code', 1, 'https://ror.org/01z6qfp70 Neural Analytics (United States)'),
(71663, 'https://ror.org/03jcfvc38', 'no_lang_code', 1, 'https://ror.org/03jcfvc38 Multibeam (United States)'),
(71664, 'https://ror.org/006qepw66', 'no_lang_code', 1, 'https://ror.org/006qepw66 Moco (United States)'),
(71665, 'https://ror.org/04p42tf84', 'no_lang_code', 1, 'https://ror.org/04p42tf84 Nanosolar (United States)'),
(71666, 'https://ror.org/059ma6x24', 'no_lang_code', 1, 'https://ror.org/059ma6x24 Mod9 Technologies (United States)'),
(71667, 'https://ror.org/03knm9781', 'no_lang_code', 1, 'https://ror.org/03knm9781 Verasci (United States)'),
(71668, 'https://ror.org/05ps0t235', 'no_lang_code', 1, 'https://ror.org/05ps0t235 NanoVector (United States)'),
(71669, 'https://ror.org/05satps27', 'no_lang_code', 1, 'https://ror.org/05satps27 Modular Bionics (United States)'),
(71670, 'https://ror.org/017gepx61', 'no_lang_code', 1, 'https://ror.org/017gepx61 Modumetal (United States)'),
(71671, 'https://ror.org/03r5tj610', 'no_lang_code', 1, 'https://ror.org/03r5tj610 Natel Energy (United States)'),
(71672, 'https://ror.org/04693s912', 'no_lang_code', 1, 'https://ror.org/04693s912 NeuroGenetic Pharmaceuticals (United States)'),
(71673, 'https://ror.org/01vy25d07', 'no_lang_code', 1, 'https://ror.org/01vy25d07 Neurotargeting (United States)'),
(71674, 'https://ror.org/04zkxj954', 'no_lang_code', 1, 'https://ror.org/04zkxj954 Molecular Pathology Laboratory Network (United States)'),
(71675, 'https://ror.org/04h6dxr28', 'no_lang_code', 1, 'https://ror.org/04h6dxr28 Native American Technologies (United States)'),
(71676, 'https://ror.org/04tgzc455', 'no_lang_code', 1, 'https://ror.org/04tgzc455 Natural Process Design (United States)'),
(71677, 'https://ror.org/05jkqfy36', 'no_lang_code', 1, 'https://ror.org/05jkqfy36 Nevada Composites (United States)'),
(71678, 'https://ror.org/02vtv9k98', 'no_lang_code', 1, 'https://ror.org/02vtv9k98 Muse Technologies (United States)'),
(71679, 'https://ror.org/04a6c5752', 'no_lang_code', 1, 'https://ror.org/04a6c5752 Navitas Systems (United States)'),
(71680, 'https://ror.org/03k8xc952', 'no_lang_code', 1, 'https://ror.org/03k8xc952 NexGen Composites (United States)'),
(71681, 'https://ror.org/01z0qxf72', 'no_lang_code', 1, 'https://ror.org/01z0qxf72 NevadaNano (United States)'),
(71682, 'https://ror.org/059vy2q86', 'no_lang_code', 1, 'https://ror.org/059vy2q86 Nexgenia (United States)'),
(71683, 'https://ror.org/01p5b6z49', 'no_lang_code', 1, 'https://ror.org/01p5b6z49 Nota Laboratories (United States)'),
(71684, 'https://ror.org/03k9mc136', 'no_lang_code', 1, 'https://ror.org/03k9mc136 Nexogen (United States)'),
(71685, 'https://ror.org/047r0b042', 'no_lang_code', 1, 'https://ror.org/047r0b042 New Dimensions Research (United States)'),
(71686, 'https://ror.org/03t3qk565', 'no_lang_code', 1, 'https://ror.org/03t3qk565 Nou Systems (United States)'),
(71687, 'https://ror.org/02sqq3c53', 'no_lang_code', 1, 'https://ror.org/02sqq3c53 Next Energy Technologies (United States)'),
(71688, 'https://ror.org/05b0h7m33', 'en', 1, 'https://ror.org/05b0h7m33 ABC for Health'),
(71689, 'https://ror.org/00z5k4y41', 'no_lang_code', 1, 'https://ror.org/00z5k4y41 Novel (United States)'),
(71690, 'https://ror.org/00a5h4251', 'no_lang_code', 1, 'https://ror.org/00a5h4251 Noveratech (United States)'),
(71691, 'https://ror.org/047zh6a56', 'no_lang_code', 1, 'https://ror.org/047zh6a56 NHanced Semiconductors (United States)'),
(71692, 'https://ror.org/00d8dyw76', 'no_lang_code', 1, 'https://ror.org/00d8dyw76 Novilytic (United States)'),
(71693, 'https://ror.org/05rzgnh09', 'no_lang_code', 1, 'https://ror.org/05rzgnh09 Mycomed (United States)'),
(71694, 'https://ror.org/03cgqjh12', 'no_lang_code', 1, 'https://ror.org/03cgqjh12 US Night Vision (United States)'),
(71695, 'https://ror.org/015s7dk89', 'no_lang_code', 1, 'https://ror.org/015s7dk89 Nima (United States)'),
(71696, 'https://ror.org/04q731p20', 'no_lang_code', 1, 'https://ror.org/04q731p20 Nuclear Plasma Laboratories (United States)'),
(71697, 'https://ror.org/057052843', 'no_lang_code', 1, 'https://ror.org/057052843 Nimbic Systems (United States)'),
(71698, 'https://ror.org/00meeqp26', 'no_lang_code', 1, 'https://ror.org/00meeqp26 nPoint (United States)'),
(71699, 'https://ror.org/04k6h0163', 'no_lang_code', 1, 'https://ror.org/04k6h0163 Nrgtek (United States)'),
(71700, 'https://ror.org/05j97vt75', 'no_lang_code', 1, 'https://ror.org/05j97vt75 Nimbis Services (United States)'),
(71701, 'https://ror.org/00e6dgm57', 'no_lang_code', 1, 'https://ror.org/00e6dgm57 NewPath Learning (United States)'),
(71702, 'https://ror.org/04g8qkx61', 'no_lang_code', 1, 'https://ror.org/04g8qkx61 Newport Sensors (United States)'),
(71703, 'https://ror.org/05y07gt41', 'no_lang_code', 1, 'https://ror.org/05y07gt41 NxGEN Electronics (United States)'),
(71704, 'https://ror.org/02ag5zv31', 'no_lang_code', 1, 'https://ror.org/02ag5zv31 Zepto (United States)'),
(71705, 'https://ror.org/04z7mxt48', 'no_lang_code', 1, 'https://ror.org/04z7mxt48 O''Donnell Consulting Engineers (United States)'),
(71706, 'https://ror.org/01bdg6b26', 'no_lang_code', 1, 'https://ror.org/01bdg6b26 Newtec Services Group (United States)'),
(71707, 'https://ror.org/03nwzmg80', 'no_lang_code', 1, 'https://ror.org/03nwzmg80 Oasis Advanced Engineering (United States)'),
(71708, 'https://ror.org/01r2s9d65', 'no_lang_code', 1, 'https://ror.org/01r2s9d65 Ocular Proteomics (United States)'),
(71709, 'https://ror.org/00g2e9181', 'no_lang_code', 1, 'https://ror.org/00g2e9181 Njoy (United States)'),
(71710, 'https://ror.org/03dhfj813', 'no_lang_code', 1, 'https://ror.org/03dhfj813 Omnitech Robotics (United States)'),
(71711, 'https://ror.org/02s79t061', 'no_lang_code', 1, 'https://ror.org/02s79t061 Odyssey Space Research (United States)'),
(71712, 'https://ror.org/01q7fvf45', 'no_lang_code', 1, 'https://ror.org/01q7fvf45 NLA Diagnostics (United States)'),
(71713, 'https://ror.org/02d21wr69', 'no_lang_code', 1, 'https://ror.org/02d21wr69 On Time Systems (United States)'),
(71714, 'https://ror.org/02t1mbc20', 'no_lang_code', 1, 'https://ror.org/02t1mbc20 Nocturnal Product Development (United States)'),
(71715, 'https://ror.org/03bm0js68', 'no_lang_code', 1, 'https://ror.org/03bm0js68 Noddle (United States)'),
(71716, 'https://ror.org/01hktad75', 'no_lang_code', 1, 'https://ror.org/01hktad75 Optimal Solutions Software (United States)'),
(71717, 'https://ror.org/05t1cnz26', 'no_lang_code', 1, 'https://ror.org/05t1cnz26 Optimal Solutions (United States)'),
(71718, 'https://ror.org/05614wx46', 'no_lang_code', 1, 'https://ror.org/05614wx46 Optinav (United States)'),
(71719, 'https://ror.org/02kxycv91', 'no_lang_code', 1, 'https://ror.org/02kxycv91 NonInvasive Technologies (United States)'),
(71720, 'https://ror.org/03m2wvf63', 'no_lang_code', 1, 'https://ror.org/03m2wvf63 Nonlinear Control Strategies (United States)'),
(71721, 'https://ror.org/016715t42', 'no_lang_code', 1, 'https://ror.org/016715t42 One-Cycle Control (United States)'),
(71722, 'https://ror.org/05fn4fm08', 'no_lang_code', 1, 'https://ror.org/05fn4fm08 Optitek (United States)'),
(71723, 'https://ror.org/00wwv7522', 'no_lang_code', 1, 'https://ror.org/00wwv7522 MRJ Consulting (United States)'),
(71724, 'https://ror.org/030503z05', 'no_lang_code', 1, 'https://ror.org/030503z05 ONL Therapeutic (United States)'),
(71725, 'https://ror.org/00ap23p40', 'no_lang_code', 1, 'https://ror.org/00ap23p40 Noom (United States)'),
(71726, 'https://ror.org/05s4ahv53', 'no_lang_code', 1, 'https://ror.org/05s4ahv53 Optodot (United States)'),
(71727, 'https://ror.org/02jxepd37', 'no_lang_code', 1, 'https://ror.org/02jxepd37 Jamboxx (United States)'),
(71728, 'https://ror.org/02m0dvq27', 'no_lang_code', 1, 'https://ror.org/02m0dvq27 Onai (United States)'),
(71729, 'https://ror.org/04tnhnq23', 'no_lang_code', 1, 'https://ror.org/04tnhnq23 Kite (United States)'),
(71730, 'https://ror.org/04jd98e75', 'no_lang_code', 1, 'https://ror.org/04jd98e75 North Star Scientific (United States)'),
(71731, 'https://ror.org/0279hx849', 'no_lang_code', 1, 'https://ror.org/0279hx849 optX Imaging Systems (United States)'),
(71732, 'https://ror.org/00rbzv406', 'no_lang_code', 1, 'https://ror.org/00rbzv406 Object Computing (United States)'),
(71733, 'https://ror.org/0016cbc84', 'no_lang_code', 1, 'https://ror.org/0016cbc84 Northeast Semiconductor (United States)'),
(71734, 'https://ror.org/01kqva520', 'no_lang_code', 1, 'https://ror.org/01kqva520 Opus 12 (United States)'),
(71735, 'https://ror.org/050n5x481', 'no_lang_code', 1, 'https://ror.org/050n5x481 Openbeds (United States)'),
(71736, 'https://ror.org/00m6yzj29', 'no_lang_code', 1, 'https://ror.org/00m6yzj29 Northern Microdesign (United States)'),
(71737, 'https://ror.org/0566myk84', 'no_lang_code', 1, 'https://ror.org/0566myk84 Oral Health Solutions (United States)'),
(71738, 'https://ror.org/00t9fb122', 'no_lang_code', 1, 'https://ror.org/00t9fb122 OpenCell Technologies (United States)'),
(71739, 'https://ror.org/00ef1tn69', 'no_lang_code', 1, 'https://ror.org/00ef1tn69 Northern Power Systems (United States)'),
(71740, 'https://ror.org/05w4tdf58', 'no_lang_code', 1, 'https://ror.org/05w4tdf58 Ocean Bay (United States)'),
(71741, 'https://ror.org/00gzext40', 'no_lang_code', 1, 'https://ror.org/00gzext40 Operative Experience (United States)'),
(71742, 'https://ror.org/00cyj6q75', 'no_lang_code', 1, 'https://ror.org/00cyj6q75 Orbits Lightwave (United States)'),
(71743, 'https://ror.org/05vba0x81', 'no_lang_code', 1, 'https://ror.org/05vba0x81 Omitron (United States)'),
(71744, 'https://ror.org/042mf3776', 'no_lang_code', 1, 'https://ror.org/042mf3776 Ophidion (United States)'),
(71745, 'https://ror.org/02fpqqs63', 'no_lang_code', 1, 'https://ror.org/02fpqqs63 Omni Sciences (United States)'),
(71746, 'https://ror.org/04rfwez56', 'no_lang_code', 1, 'https://ror.org/04rfwez56 Vigor (United States)'),
(71747, 'https://ror.org/02mnkyy74', 'no_lang_code', 1, 'https://ror.org/02mnkyy74 Ozark Integrated Circuits (United States)'),
(71748, 'https://ror.org/00d17v460', 'no_lang_code', 1, 'https://ror.org/00d17v460 Pacific Antenna Systems (United States)'),
(71749, 'https://ror.org/03yc04z38', 'no_lang_code', 1, 'https://ror.org/03yc04z38 Oricula Therapeutics (United States)'),
(71750, 'https://ror.org/019z7bq36', 'no_lang_code', 1, 'https://ror.org/019z7bq36 Opti-Logic (United States)'),
(71751, 'https://ror.org/04qv17s63', 'no_lang_code', 1, 'https://ror.org/04qv17s63 Omniphase Defense Systems (United States)'),
(71752, 'https://ror.org/05m1hk967', 'no_lang_code', 1, 'https://ror.org/05m1hk967 Optical Air Data Systems (United States)'),
(71753, 'https://ror.org/0426eeb63', 'no_lang_code', 1, 'https://ror.org/0426eeb63 Pacific Research Group (United States)'),
(71754, 'https://ror.org/055e56m27', 'no_lang_code', 1, 'https://ror.org/055e56m27 Pacific Research Laboratories (United States)'),
(71755, 'https://ror.org/04jsnej34', 'no_lang_code', 1, 'https://ror.org/04jsnej34 Optical Coating Solutions (United States)'),
(71756, 'https://ror.org/02tcss727', 'no_lang_code', 1, 'https://ror.org/02tcss727 Oryn Therapeutics (United States)'),
(71757, 'https://ror.org/03jte8779', 'no_lang_code', 1, 'https://ror.org/03jte8779 Oceana Sensor (United States)'),
(71758, 'https://ror.org/00vmpjn90', 'no_lang_code', 1, 'https://ror.org/00vmpjn90 Oscilla Power (United States)'),
(71759, 'https://ror.org/03j042d77', 'no_lang_code', 1, 'https://ror.org/03j042d77 Osemi (United States)'),
(71760, 'https://ror.org/04gf5ve13', 'no_lang_code', 1, 'https://ror.org/04gf5ve13 Pandion Laboratories (United States)'),
(71761, 'https://ror.org/0383czy71', 'no_lang_code', 1, 'https://ror.org/0383czy71 Osmic Enterprises (United States)'),
(71762, 'https://ror.org/01nzm8x21', 'no_lang_code', 1, 'https://ror.org/01nzm8x21 Opticyte (United States)'),
(71763, 'https://ror.org/04cexx940', 'no_lang_code', 1, 'https://ror.org/04cexx940 OsteoVantage (United States)'),
(71764, 'https://ror.org/0450da943', 'no_lang_code', 1, 'https://ror.org/0450da943 PapGene (United States)'),
(71765, 'https://ror.org/04wxq1e36', 'no_lang_code', 1, 'https://ror.org/04wxq1e36 Otherlab'),
(71766, 'https://ror.org/00ky63q47', 'no_lang_code', 1, 'https://ror.org/00ky63q47 Pentum Group (United States)'),
(71767, 'https://ror.org/024y05r39', 'no_lang_code', 1, 'https://ror.org/024y05r39 Parabilis Space Technologies (United States)'),
(71768, 'https://ror.org/00e2b9v40', 'no_lang_code', 1, 'https://ror.org/00e2b9v40 Phoenix Digital (United States)'),
(71769, 'https://ror.org/00xgq3z19', 'no_lang_code', 1, 'https://ror.org/00xgq3z19 PeoplePower (United States)'),
(71770, 'https://ror.org/00c8vg612', 'no_lang_code', 1, 'https://ror.org/00c8vg612 Parasim (United States)'),
(71771, 'https://ror.org/0477qv361', 'no_lang_code', 1, 'https://ror.org/0477qv361 PeopleTec (United States)'),
(71772, 'https://ror.org/016d4nc35', 'no_lang_code', 1, 'https://ror.org/016d4nc35 Phoenix Integration (United States)'),
(71773, 'https://ror.org/033hs9r68', 'no_lang_code', 1, 'https://ror.org/033hs9r68 Partek (United States)'),
(71774, 'https://ror.org/02k82p965', 'no_lang_code', 1, 'https://ror.org/02k82p965 Oxford Computer Services (United States)'),
(71775, 'https://ror.org/020gc1m38', 'no_lang_code', 1, 'https://ror.org/020gc1m38 Particle Flux Analytics (United States)'),
(71776, 'https://ror.org/03vgx8d33', 'no_lang_code', 1, 'https://ror.org/03vgx8d33 Phoenix Nest (United States)'),
(71777, 'https://ror.org/04bvhr204', 'no_lang_code', 1, 'https://ror.org/04bvhr204 Ɖternelle (United States)'),
(71778, 'https://ror.org/0032xfd86', 'no_lang_code', 1, 'https://ror.org/0032xfd86 PerceptiMed (United States)'),
(71779, 'https://ror.org/01rxdrm66', 'no_lang_code', 1, 'https://ror.org/01rxdrm66 Passport Systems (United States)'),
(71780, 'https://ror.org/05ama3a60', 'no_lang_code', 1, 'https://ror.org/05ama3a60 Perceptive Innovations (United States)'),
(71781, 'https://ror.org/00cs5an78', 'no_lang_code', 1, 'https://ror.org/00cs5an78 Pixel Velocity (United States)'),
(71782, 'https://ror.org/03dyq3r35', 'no_lang_code', 1, 'https://ror.org/03dyq3r35 Path BioAnalytics (United States)'),
(71783, 'https://ror.org/05h0yx811', 'no_lang_code', 1, 'https://ror.org/05h0yx811 Forte (United States)'),
(71784, 'https://ror.org/03gejkf67', 'no_lang_code', 1, 'https://ror.org/03gejkf67 Eloquence Communications (United States)'),
(71785, 'https://ror.org/04y72be90', 'no_lang_code', 1, 'https://ror.org/04y72be90 Leyard (United States)'),
(71786, 'https://ror.org/05288bk55', 'no_lang_code', 1, 'https://ror.org/05288bk55 PatientsVoices (United States)'),
(71787, 'https://ror.org/01yxc0v75', 'no_lang_code', 1, 'https://ror.org/01yxc0v75 Photon Spot (United States)'),
(71788, 'https://ror.org/03ezxy459', 'no_lang_code', 1, 'https://ror.org/03ezxy459 Patz Materials and Technologies (United States)'),
(71789, 'https://ror.org/02s8g2315', 'no_lang_code', 1, 'https://ror.org/02s8g2315 Photonic Associates (United States)'),
(71790, 'https://ror.org/01a2p6r88', 'no_lang_code', 1, 'https://ror.org/01a2p6r88 ConsenSys (United States)'),
(71791, 'https://ror.org/0160qej13', 'no_lang_code', 1, 'https://ror.org/0160qej13 PhotoniCare (United States)'),
(71792, 'https://ror.org/01yphfr75', 'no_lang_code', 1, 'https://ror.org/01yphfr75 Planetary Systems (United States)'),
(71793, 'https://ror.org/01hyt0e74', 'no_lang_code', 1, 'https://ror.org/01hyt0e74 Plasma Controls (United States)'),
(71794, 'https://ror.org/0125wtc60', 'no_lang_code', 1, 'https://ror.org/0125wtc60 Pendar Technologies (United States)'),
(71795, 'https://ror.org/04hecxj58', 'no_lang_code', 1, 'https://ror.org/04hecxj58 Perlegen (United States)'),
(71796, 'https://ror.org/01pczxn53', 'no_lang_code', 1, 'https://ror.org/01pczxn53 Platelet BioGenesis (United States)'),
(71797, 'https://ror.org/00s3ykq41', 'no_lang_code', 1, 'https://ror.org/00s3ykq41 Photonics (United States)'),
(71798, 'https://ror.org/00g7r3086', 'no_lang_code', 1, 'https://ror.org/00g7r3086 Perpetua (United States)'),
(71799, 'https://ror.org/03kv24k79', 'no_lang_code', 1, 'https://ror.org/03kv24k79 Platinum Group Coatings (United States)'),
(71800, 'https://ror.org/0524fk031', 'no_lang_code', 1, 'https://ror.org/0524fk031 PLC Connections (United States)'),
(71801, 'https://ror.org/03mhtm362', 'no_lang_code', 1, 'https://ror.org/03mhtm362 Phyre Technologies (United States)'),
(71802, 'https://ror.org/05wh29r58', 'no_lang_code', 1, 'https://ror.org/05wh29r58 Persyst (United States)'),
(71803, 'https://ror.org/01sevvg89', 'no_lang_code', 1, 'https://ror.org/01sevvg89 Varidesk (United States)'),
(71804, 'https://ror.org/02tejbs37', 'no_lang_code', 1, 'https://ror.org/02tejbs37 Plureon (United States)'),
(71805, 'https://ror.org/01xq34439', 'no_lang_code', 1, 'https://ror.org/01xq34439 Plus Designs (United States)'),
(71806, 'https://ror.org/0140vs727', 'no_lang_code', 1, 'https://ror.org/0140vs727 Potrero Medical (United States)'),
(71807, 'https://ror.org/015q2vx96', 'no_lang_code', 1, 'https://ror.org/015q2vx96 Power+Energy (United States)'),
(71808, 'https://ror.org/059v90v79', 'no_lang_code', 1, 'https://ror.org/059v90v79 PowerPhotonic (United States)'),
(71809, 'https://ror.org/04h3ena29', 'no_lang_code', 1, 'https://ror.org/04h3ena29 Pointwise (United States)'),
(71810, 'https://ror.org/02qq0z290', 'no_lang_code', 1, 'https://ror.org/02qq0z290 Polarix (United States)'),
(71811, 'https://ror.org/000wrzy88', 'no_lang_code', 1, 'https://ror.org/000wrzy88 Pharmabridge (United States)'),
(71812, 'https://ror.org/00fpp6w90', 'no_lang_code', 1, 'https://ror.org/00fpp6w90 PowerFilm (United States)'),
(71813, 'https://ror.org/05nf1fg74', 'no_lang_code', 1, 'https://ror.org/05nf1fg74 Phyto-Technologies (United States)'),
(71814, 'https://ror.org/02k1cbm60', 'no_lang_code', 1, 'https://ror.org/02k1cbm60 PowerHouse Proteomic Systems (United States)'),
(71815, 'https://ror.org/01gystf83', 'no_lang_code', 1, 'https://ror.org/01gystf83 Pollere (United States)'),
(71816, 'https://ror.org/00a082661', 'no_lang_code', 1, 'https://ror.org/00a082661 Pollution Control Technologies (United States)'),
(71817, 'https://ror.org/04rmmkk14', 'no_lang_code', 1, 'https://ror.org/04rmmkk14 Fast Biomedical (United States)'),
(71818, 'https://ror.org/01cte4v14', 'no_lang_code', 1, 'https://ror.org/01cte4v14 PKG (United States)'),
(71819, 'https://ror.org/05nsj1513', 'no_lang_code', 1, 'https://ror.org/05nsj1513 Polyhedron Learning Media (United States)'),
(71820, 'https://ror.org/00x605y09', 'no_lang_code', 1, 'https://ror.org/00x605y09 Praeses (United States)'),
(71821, 'https://ror.org/00x5exn66', 'no_lang_code', 1, 'https://ror.org/00x5exn66 Picoyune (United States)'),
(71822, 'https://ror.org/021xt9947', 'no_lang_code', 1, 'https://ror.org/021xt9947 Polymer Exploration Group (United States)'),
(71823, 'https://ror.org/019t4cq59', 'no_lang_code', 1, 'https://ror.org/019t4cq59 Phase IV (United States)'),
(71824, 'https://ror.org/03gjp8j03', 'no_lang_code', 1, 'https://ror.org/03gjp8j03 Pratt & Miller (United States)'),
(71825, 'https://ror.org/03fn78r73', 'no_lang_code', 1, 'https://ror.org/03fn78r73 Vista Equity Partners (United States)'),
(71826, 'https://ror.org/05vnfvq50', 'no_lang_code', 1, 'https://ror.org/05vnfvq50 DM3D Technology (United States)'),
(71827, 'https://ror.org/01eygpy73', 'no_lang_code', 1, 'https://ror.org/01eygpy73 Phelix Therapeutics (United States)'),
(71828, 'https://ror.org/012g7ks33', 'no_lang_code', 1, 'https://ror.org/012g7ks33 Praxis BioSciences (United States)'),
(71829, 'https://ror.org/04dcrb539', 'no_lang_code', 1, 'https://ror.org/04dcrb539 PVI System Technology (United States)'),
(71830, 'https://ror.org/02rnmms39', 'no_lang_code', 1, 'https://ror.org/02rnmms39 Phelps2020 (United States)'),
(71831, 'https://ror.org/0421cc730', 'no_lang_code', 1, 'https://ror.org/0421cc730 Precision Polyolefins (United States)'),
(71832, 'https://ror.org/001272r51', 'no_lang_code', 1, 'https://ror.org/001272r51 Precision Vision (United States)'),
(71833, 'https://ror.org/00qh9vh90', 'no_lang_code', 1, 'https://ror.org/00qh9vh90 Phiar (United States)'),
(71834, 'https://ror.org/05hg5tz03', 'no_lang_code', 1, 'https://ror.org/05hg5tz03 PreCyte (United States)'),
(71835, 'https://ror.org/05csx4q88', 'no_lang_code', 1, 'https://ror.org/05csx4q88 Professional Analytical and Consulting Services (United States)'),
(71836, 'https://ror.org/05vcz8m66', 'no_lang_code', 1, 'https://ror.org/05vcz8m66 PredictionProbe (United States)'),
(71837, 'https://ror.org/05qavgd28', 'no_lang_code', 1, 'https://ror.org/05qavgd28 Philotek (United States)'),
(71838, 'https://ror.org/049s8hy38', 'no_lang_code', 1, 'https://ror.org/049s8hy38 Q4 (United States)'),
(71839, 'https://ror.org/055298e12', 'no_lang_code', 1, 'https://ror.org/055298e12 PreludeDx (United States)'),
(71840, 'https://ror.org/02xrvxv47', 'no_lang_code', 1, 'https://ror.org/02xrvxv47 Phoenix Analysis and Design Technologies (United States)'),
(71841, 'https://ror.org/0568fdx82', 'no_lang_code', 1, 'https://ror.org/0568fdx82 Expanse (United States)'),
(71842, 'https://ror.org/02kbr4940', 'no_lang_code', 1, 'https://ror.org/02kbr4940 Progressive Expert Consulting (United States)'),
(71843, 'https://ror.org/01p4gwr04', 'no_lang_code', 1, 'https://ror.org/01p4gwr04 Prenosis (United States)'),
(71844, 'https://ror.org/04xmn6g49', 'no_lang_code', 1, 'https://ror.org/04xmn6g49 Rapid Flow (United States)'),
(71845, 'https://ror.org/02v93s037', 'no_lang_code', 1, 'https://ror.org/02v93s037 Pressure Profile Systems (United States)'),
(71846, 'https://ror.org/04h9g9s69', 'no_lang_code', 1, 'https://ror.org/04h9g9s69 PreventAGE Health Care (United States)'),
(71847, 'https://ror.org/02r8vvy38', 'no_lang_code', 1, 'https://ror.org/02r8vvy38 ProLynx (United States)'),
(71848, 'https://ror.org/02d87mf22', 'no_lang_code', 1, 'https://ror.org/02d87mf22 Promentis Pharmaceuticals (United States)'),
(71849, 'https://ror.org/033qh4x19', 'no_lang_code', 1, 'https://ror.org/033qh4x19 Primaira (United States)'),
(71850, 'https://ror.org/00ss6h043', 'no_lang_code', 1, 'https://ror.org/00ss6h043 Promet Optics (United States)'),
(71851, 'https://ror.org/03m78yh78', 'no_lang_code', 1, 'https://ror.org/03m78yh78 Raven (United States)'),
(71852, 'https://ror.org/00snk4s58', 'no_lang_code', 1, 'https://ror.org/00snk4s58 Primus Consulting (United States)'),
(71853, 'https://ror.org/03qy3ay77', 'no_lang_code', 1, 'https://ror.org/03qy3ay77 Princeton BioMeditech (United States)'),
(71854, 'https://ror.org/04kerv846', 'no_lang_code', 1, 'https://ror.org/04kerv846 Pronghorn Technologies (United States)'),
(71855, 'https://ror.org/02rgxac86', 'no_lang_code', 1, 'https://ror.org/02rgxac86 Rayonix (United States)'),
(71856, 'https://ror.org/02nd16181', 'no_lang_code', 1, 'https://ror.org/02nd16181 Princeton Technology Advisors (United States)'),
(71857, 'https://ror.org/00pgx7e04', 'no_lang_code', 1, 'https://ror.org/00pgx7e04 Q-Flex (United States)'),
(71858, 'https://ror.org/03nyrwp51', 'no_lang_code', 1, 'https://ror.org/03nyrwp51 Prioria Robotics (United States)'),
(71859, 'https://ror.org/04tec8s48', 'no_lang_code', 1, 'https://ror.org/04tec8s48 Raytum Photonics (United States)'),
(71860, 'https://ror.org/05xjgsf03', 'no_lang_code', 1, 'https://ror.org/05xjgsf03 Qrono (United States)'),
(71861, 'https://ror.org/05dfdca35', 'no_lang_code', 1, 'https://ror.org/05dfdca35 Private Machines (United States)'),
(71862, 'https://ror.org/017ragh07', 'no_lang_code', 1, 'https://ror.org/017ragh07 ProActive Memory Services (United States)'),
(71863, 'https://ror.org/05mjt9j72', 'no_lang_code', 1, 'https://ror.org/05mjt9j72 RDMChem (United States)'),
(71864, 'https://ror.org/02b6vt253', 'no_lang_code', 1, 'https://ror.org/02b6vt253 Probus (United States)'),
(71865, 'https://ror.org/00ecwxa31', 'no_lang_code', 1, 'https://ror.org/00ecwxa31 Procedyne (United States)'),
(71866, 'https://ror.org/036nedf06', 'no_lang_code', 1, 'https://ror.org/036nedf06 Protection Engineering Consultants (United States)'),
(71867, 'https://ror.org/04y8bah34', 'no_lang_code', 1, 'https://ror.org/04y8bah34 Respec (United States)'),
(71868, 'https://ror.org/044tnwv36', 'no_lang_code', 1, 'https://ror.org/044tnwv36 ProteinOne (United States)'),
(71869, 'https://ror.org/04s0whm40', 'no_lang_code', 1, 'https://ror.org/04s0whm40 QT Medical (United States)'),
(71870, 'https://ror.org/04p52xd50', 'no_lang_code', 1, 'https://ror.org/04p52xd50 Renaissance Services (United States)'),
(71871, 'https://ror.org/00a6gz882', 'no_lang_code', 1, 'https://ror.org/00a6gz882 Renova Life (United States)'),
(71872, 'https://ror.org/04vpnsj12', 'no_lang_code', 1, 'https://ror.org/04vpnsj12 Quantix (United States)'),
(71873, 'https://ror.org/01pz1d457', 'no_lang_code', 1, 'https://ror.org/01pz1d457 Quantum Devices (United States)'),
(71874, 'https://ror.org/01wrvt331', 'no_lang_code', 1, 'https://ror.org/01wrvt331 Proteos (United States)'),
(71875, 'https://ror.org/00rqckp81', 'no_lang_code', 1, 'https://ror.org/00rqckp81 Quantum Diamond Technologies (United States)'),
(71876, 'https://ror.org/01en28k31', 'no_lang_code', 1, 'https://ror.org/01en28k31 Renova Therapeutics (United States)'),
(71877, 'https://ror.org/007ctn309', 'no_lang_code', 1, 'https://ror.org/007ctn309 Protochips (United States)'),
(71878, 'https://ror.org/04j5v1d21', 'no_lang_code', 1, 'https://ror.org/04j5v1d21 Real Prevention (United States)'),
(71879, 'https://ror.org/04hysr708', 'no_lang_code', 1, 'https://ror.org/04hysr708 Quantum Northwest (United States)'),
(71880, 'https://ror.org/03vyrq198', 'no_lang_code', 1, 'https://ror.org/03vyrq198 Quantum Opus (United States)'),
(71881, 'https://ror.org/02nmke270', 'no_lang_code', 1, 'https://ror.org/02nmke270 ProtonVDA (United States)'),
(71882, 'https://ror.org/02my5pn34', 'no_lang_code', 1, 'https://ror.org/02my5pn34 Renuvix (United States)'),
(71883, 'https://ror.org/00c2nxt31', 'no_lang_code', 1, 'https://ror.org/00c2nxt31 Querium (United States)'),
(71884, 'https://ror.org/05qxbj292', 'no_lang_code', 1, 'https://ror.org/05qxbj292 PsiKick (United States)'),
(71885, 'https://ror.org/055qcrf91', 'no_lang_code', 1, 'https://ror.org/055qcrf91 Quest Thermal Group (United States)'),
(71886, 'https://ror.org/02q2v3574', 'no_lang_code', 1, 'https://ror.org/02q2v3574 Research Applications (United States)'),
(71887, 'https://ror.org/045wyxp42', 'no_lang_code', 1, 'https://ror.org/045wyxp42 Quick-Med Technologies (United States)'),
(71888, 'https://ror.org/00qqrrn06', 'no_lang_code', 1, 'https://ror.org/00qqrrn06 Rebion (United States)'),
(71889, 'https://ror.org/04taye489', 'no_lang_code', 1, 'https://ror.org/04taye489 Hesco (United States)'),
(71890, 'https://ror.org/05jvx3v75', 'no_lang_code', 1, 'https://ror.org/05jvx3v75 Rebound (United States)'),
(71891, 'https://ror.org/02htdbf38', 'no_lang_code', 1, 'https://ror.org/02htdbf38 Quimba Software (United States)'),
(71892, 'https://ror.org/05y33n643', 'no_lang_code', 1, 'https://ror.org/05y33n643 PICO Technologies (United States)'),
(71893, 'https://ror.org/05kkb8h54', 'no_lang_code', 1, 'https://ror.org/05kkb8h54 Qusemde (United States)'),
(71894, 'https://ror.org/00wn45376', 'no_lang_code', 1, 'https://ror.org/00wn45376 CCP Technologies (United States)'),
(71895, 'https://ror.org/05df1km16', 'no_lang_code', 1, 'https://ror.org/05df1km16 Qynergy (United States)'),
(71896, 'https://ror.org/02c3crq07', 'no_lang_code', 1, 'https://ror.org/02c3crq07 RHK Technology (United States)'),
(71897, 'https://ror.org/014tnpn30', 'no_lang_code', 1, 'https://ror.org/014tnpn30 Recovery Record (United States)'),
(71898, 'https://ror.org/03na1cy38', 'no_lang_code', 1, 'https://ror.org/03na1cy38 R-Dex Systems (United States)'),
(71899, 'https://ror.org/05czpzc54', 'no_lang_code', 1, 'https://ror.org/05czpzc54 Recursion (United States)'),
(71900, 'https://ror.org/00qdw5r51', 'no_lang_code', 1, 'https://ror.org/00qdw5r51 Research, Evaluation and Social Solutions (United States)'),
(71901, 'https://ror.org/01ky4ht91', 'no_lang_code', 1, 'https://ror.org/01ky4ht91 Redbud Labs (United States)'),
(71902, 'https://ror.org/02pjjh503', 'no_lang_code', 1, 'https://ror.org/02pjjh503 Euphrates Vascular (United States)'),
(71903, 'https://ror.org/02d6wr926', 'no_lang_code', 1, 'https://ror.org/02d6wr926 Radial Analytics (United States)'),
(71904, 'https://ror.org/00tna8k65', 'no_lang_code', 1, 'https://ror.org/00tna8k65 Purilogics (United States)'),
(71905, 'https://ror.org/02p5jez93', 'no_lang_code', 1, 'https://ror.org/02p5jez93 Resolute Marine Energy (United States)'),
(71906, 'https://ror.org/036dvvv65', 'no_lang_code', 1, 'https://ror.org/036dvvv65 Radianse (United States)'),
(71907, 'https://ror.org/036zxb972', 'no_lang_code', 1, 'https://ror.org/036zxb972 Pursuant Health (United States)'),
(71908, 'https://ror.org/02bhkz014', 'no_lang_code', 1, 'https://ror.org/02bhkz014 Redwood Scientific (United States)'),
(71909, 'https://ror.org/04f8j4q19', 'no_lang_code', 1, 'https://ror.org/04f8j4q19 Response Technologies (United States)'),
(71910, 'https://ror.org/03qzgs943', 'no_lang_code', 1, 'https://ror.org/03qzgs943 Radiation Safety Engineering (United States)'),
(71911, 'https://ror.org/00gvawq92', 'no_lang_code', 1, 'https://ror.org/00gvawq92 Reflexion Health (United States)'),
(71912, 'https://ror.org/02pth2p46', 'no_lang_code', 1, 'https://ror.org/02pth2p46 Radiometrics (United States)'),
(71913, 'https://ror.org/05e89f902', 'no_lang_code', 1, 'https://ror.org/05e89f902 R3Logic (United States)'),
(71914, 'https://ror.org/024hp8310', 'no_lang_code', 1, 'https://ror.org/024hp8310 Radix (United States)'),
(71915, 'https://ror.org/02rvhvg10', 'no_lang_code', 1, 'https://ror.org/02rvhvg10 Ressler & Associates (United States)'),
(71916, 'https://ror.org/03988gk19', 'no_lang_code', 1, 'https://ror.org/03988gk19 RiboNova (United States)'),
(71917, 'https://ror.org/03nhrqg41', 'no_lang_code', 1, 'https://ror.org/03nhrqg41 ReThink Medical (United States)'),
(71918, 'https://ror.org/02chjw737', 'no_lang_code', 1, 'https://ror.org/02chjw737 Ramdo (United States)'),
(71919, 'https://ror.org/02pectn41', 'no_lang_code', 1, 'https://ror.org/02pectn41 RetiVue (United States)'),
(71920, 'https://ror.org/05nv8db86', 'no_lang_code', 1, 'https://ror.org/05nv8db86 RxFunction (United States)'),
(71921, 'https://ror.org/01zw36675', 'no_lang_code', 1, 'https://ror.org/01zw36675 RetrieverTech (United States)'),
(71922, 'https://ror.org/03av8vw41', 'no_lang_code', 1, 'https://ror.org/03av8vw41 Extremiti3D (United States)'),
(71923, 'https://ror.org/01r9z2t07', 'no_lang_code', 1, 'https://ror.org/01r9z2t07 Reinhart & Associates (United States)'),
(71924, 'https://ror.org/05e423n96', 'no_lang_code', 1, 'https://ror.org/05e423n96 naviHealth (United States)'),
(71925, 'https://ror.org/00tjt8p18', 'no_lang_code', 1, 'https://ror.org/00tjt8p18 RF Laboratories (United States)'),
(71926, 'https://ror.org/00mmqn314', 'no_lang_code', 1, 'https://ror.org/00mmqn314 Rincon Research (United States)'),
(71927, 'https://ror.org/031sjre66', 'no_lang_code', 1, 'https://ror.org/031sjre66 JIT Labs (United States)'),
(71928, 'https://ror.org/04dvvw492', 'no_lang_code', 1, 'https://ror.org/04dvvw492 Riparian Pharmaceuticals (United States)'),
(71929, 'https://ror.org/012qgxn42', 'no_lang_code', 1, 'https://ror.org/012qgxn42 Secondpeak (United States)'),
(71930, 'https://ror.org/040b2zb02', 'no_lang_code', 1, 'https://ror.org/040b2zb02 Riptide Autonomous Solutions (United States)'),
(71931, 'https://ror.org/01bnwnv33', 'no_lang_code', 1, 'https://ror.org/01bnwnv33 S&K Aerospace (United States)'),
(71932, 'https://ror.org/057ez4c69', 'no_lang_code', 1, 'https://ror.org/057ez4c69 Recon Dynamics (United States)'),
(71933, 'https://ror.org/03gnk9609', 'no_lang_code', 1, 'https://ror.org/03gnk9609 Sab Biotherapeutics (United States)'),
(71934, 'https://ror.org/03vhsyq48', 'no_lang_code', 1, 'https://ror.org/03vhsyq48 Sabre Engineering (United States)'),
(71935, 'https://ror.org/027xaw831', 'no_lang_code', 1, 'https://ror.org/027xaw831 SafelyYou (United States)'),
(71936, 'https://ror.org/01w50w965', 'no_lang_code', 1, 'https://ror.org/01w50w965 Robocasting (United States)'),
(71937, 'https://ror.org/00h46mj69', 'no_lang_code', 1, 'https://ror.org/00h46mj69 Seer Systems (United States)'),
(71938, 'https://ror.org/00phja430', 'no_lang_code', 1, 'https://ror.org/00phja430 Science and Technology in Atmospheric Research (United States)'),
(71939, 'https://ror.org/0119k2y25', 'no_lang_code', 1, 'https://ror.org/0119k2y25 Safeware Engineering (United States)'),
(71940, 'https://ror.org/01kkmzs26', 'no_lang_code', 1, 'https://ror.org/01kkmzs26 Seriad (United States)'),
(71941, 'https://ror.org/05xp03991', 'no_lang_code', 1, 'https://ror.org/05xp03991 Robotic Technology (United States)'),
(71942, 'https://ror.org/00h8xmr33', 'no_lang_code', 1, 'https://ror.org/00h8xmr33 Science Learning Resources (United States)'),
(71943, 'https://ror.org/03s1n7a78', 'no_lang_code', 1, 'https://ror.org/03s1n7a78 Carbon Block Technology (United States)'),
(71944, 'https://ror.org/01mdf9741', 'no_lang_code', 1, 'https://ror.org/01mdf9741 Old Harbor Native (United States)'),
(71945, 'https://ror.org/05h5vav12', 'no_lang_code', 1, 'https://ror.org/05h5vav12 Robust Analysis (United States)'),
(71946, 'https://ror.org/02sjef513', 'no_lang_code', 1, 'https://ror.org/02sjef513 ScienceTomorrow (United States)'),
(71947, 'https://ror.org/056qeft95', 'no_lang_code', 1, 'https://ror.org/056qeft95 Salus (United States)'),
(71948, 'https://ror.org/04m70k935', 'no_lang_code', 1, 'https://ror.org/04m70k935 Roccor (United States)'),
(71949, 'https://ror.org/03vmxd681', 'no_lang_code', 1, 'https://ror.org/03vmxd681 Scientific Computing Associates (United States)'),
(71950, 'https://ror.org/03j2gz928', 'no_lang_code', 1, 'https://ror.org/03j2gz928 Semandex Networks (United States)'),
(71951, 'https://ror.org/036j90q35', 'no_lang_code', 1, 'https://ror.org/036j90q35 Rockstep Solutions (United States)'),
(71952, 'https://ror.org/01mkqvv94', 'no_lang_code', 1, 'https://ror.org/01mkqvv94 Semba Biosciences (United States)'),
(71953, 'https://ror.org/05115zx74', 'no_lang_code', 1, 'https://ror.org/05115zx74 Sample6 (United States)'),
(71954, 'https://ror.org/04r7sbn40', 'no_lang_code', 1, 'https://ror.org/04r7sbn40 SemQuest (United States)'),
(71955, 'https://ror.org/048kr8422', 'no_lang_code', 1, 'https://ror.org/048kr8422 Rocky Mountain Scientific Laboratory (United States)'),
(71956, 'https://ror.org/02bh52216', 'no_lang_code', 1, 'https://ror.org/02bh52216 SeNA Research (United States)'),
(71957, 'https://ror.org/00pmn2q29', 'no_lang_code', 1, 'https://ror.org/00pmn2q29 Sencera Energy (United States)'),
(71958, 'https://ror.org/05f14j834', 'no_lang_code', 1, 'https://ror.org/05f14j834 R.M. Associates (United States)'),
(71959, 'https://ror.org/01s3wja21', 'no_lang_code', 1, 'https://ror.org/01s3wja21 Scientific Technologies Corporation (United States)'),
(71960, 'https://ror.org/04th9rm48', 'no_lang_code', 1, 'https://ror.org/04th9rm48 Senseeker Engineering (United States)'),
(71961, 'https://ror.org/02mb1sp44', 'no_lang_code', 1, 'https://ror.org/02mb1sp44 Royal Caliber (United States)'),
(71962, 'https://ror.org/01kkwex59', 'no_lang_code', 1, 'https://ror.org/01kkwex59 Scientific Toolworks (United States)'),
(71963, 'https://ror.org/044j7ag44', 'no_lang_code', 1, 'https://ror.org/044j7ag44 ForteBio (United States)'),
(71964, 'https://ror.org/02fk0da73', 'no_lang_code', 1, 'https://ror.org/02fk0da73 Sciogen (United States)'),
(71965, 'https://ror.org/00yc2my06', 'no_lang_code', 1, 'https://ror.org/00yc2my06 Sarcos (United States)'),
(71966, 'https://ror.org/02set1z89', 'no_lang_code', 1, 'https://ror.org/02set1z89 Sarda (United States)'),
(71967, 'https://ror.org/05ddbzg58', 'no_lang_code', 1, 'https://ror.org/05ddbzg58 Sarfez (United States)'),
(71968, 'https://ror.org/0012d5512', 'no_lang_code', 1, 'https://ror.org/0012d5512 SensoDx (United States)'),
(71969, 'https://ror.org/03tnkxb28', 'no_lang_code', 1, 'https://ror.org/03tnkxb28 RTS Labs (United States)'),
(71970, 'https://ror.org/022nx3d63', 'no_lang_code', 1, 'https://ror.org/022nx3d63 Savari (United States)'),
(71971, 'https://ror.org/0441qqc51', 'no_lang_code', 1, 'https://ror.org/0441qqc51 Scomm (United States)'),
(71972, 'https://ror.org/023098y68', 'no_lang_code', 1, 'https://ror.org/023098y68 Rubicon Technology (United States)'),
(71973, 'https://ror.org/000zes111', 'no_lang_code', 1, 'https://ror.org/000zes111 Sensopath Technologies (United States)'),
(71974, 'https://ror.org/03yx1ht46', 'no_lang_code', 1, 'https://ror.org/03yx1ht46 Savi (United States)'),
(71975, 'https://ror.org/04gmecg65', 'no_lang_code', 1, 'https://ror.org/04gmecg65 Runtime Verification (United States)'),
(71976, 'https://ror.org/01casvr19', 'no_lang_code', 1, 'https://ror.org/01casvr19 Scribe Biosciences (United States)'),
(71977, 'https://ror.org/05vxb7888', 'no_lang_code', 1, 'https://ror.org/05vxb7888 Schell Games (United States)'),
(71978, 'https://ror.org/01mbbap52', 'no_lang_code', 1, 'https://ror.org/01mbbap52 RTI (United States)'),
(71979, 'https://ror.org/00t5ata22', 'no_lang_code', 1, 'https://ror.org/00t5ata22 Scribner (United States)'),
(71980, 'https://ror.org/02807xv41', 'no_lang_code', 1, 'https://ror.org/02807xv41 Scripps Laboratories (United States)'),
(71981, 'https://ror.org/00fzcyf28', 'no_lang_code', 1, 'https://ror.org/00fzcyf28 Royal Engineered Composites (United States)'),
(71982, 'https://ror.org/01nfd5g36', 'no_lang_code', 1, 'https://ror.org/01nfd5g36 SDI Engineering (United States)'),
(71983, 'https://ror.org/01vv3bt38', 'no_lang_code', 1, 'https://ror.org/01vv3bt38 Vectrus (United States)'),
(71984, 'https://ror.org/01qnpya73', 'no_lang_code', 1, 'https://ror.org/01qnpya73 Signature Analytics (United States)'),
(71985, 'https://ror.org/01n8pt985', 'no_lang_code', 1, 'https://ror.org/01n8pt985 Seafire Micros (United States)'),
(71986, 'https://ror.org/00hgn5a42', 'no_lang_code', 1, 'https://ror.org/00hgn5a42 Sentien (United States)'),
(71987, 'https://ror.org/03x82b295', 'no_lang_code', 1, 'https://ror.org/03x82b295 Sila Nanotechnologies (United States)'),
(71988, 'https://ror.org/00yfk0297', 'no_lang_code', 1, 'https://ror.org/00yfk0297 Sentimetrix (United States)'),
(71989, 'https://ror.org/038te8s11', 'no_lang_code', 1, 'https://ror.org/038te8s11 Silatronix (United States)'),
(71990, 'https://ror.org/002xr5z77', 'no_lang_code', 1, 'https://ror.org/002xr5z77 SilBiotech (United States)'),
(71991, 'https://ror.org/02qb5y674', 'no_lang_code', 1, 'https://ror.org/02qb5y674 SilcsBio (United States)'),
(71992, 'https://ror.org/05y5sz883', 'no_lang_code', 1, 'https://ror.org/05y5sz883 Sequoia (United States)'),
(71993, 'https://ror.org/05mm6v485', 'no_lang_code', 1, 'https://ror.org/05mm6v485 Silicon Micro Display (United States)'),
(71994, 'https://ror.org/046myzn82', 'no_lang_code', 1, 'https://ror.org/046myzn82 Silk Technologies (United States)'),
(71995, 'https://ror.org/006sjd474', 'no_lang_code', 1, 'https://ror.org/006sjd474 Serimmune (United States)'),
(71996, 'https://ror.org/0197j6223', 'no_lang_code', 1, 'https://ror.org/0197j6223 Sofar Acoustics (United States)'),
(71997, 'https://ror.org/03qmxa265', 'no_lang_code', 1, 'https://ror.org/03qmxa265 Serionix (United States)'),
(71998, 'https://ror.org/00y7m9a70', 'no_lang_code', 1, 'https://ror.org/00y7m9a70 Silver Bullet Solutions (United States)'),
(71999, 'https://ror.org/02nw77796', 'no_lang_code', 1, 'https://ror.org/02nw77796 Sest (United States)'),
(72000, 'https://ror.org/01ba4rc77', 'no_lang_code', 1, 'https://ror.org/01ba4rc77 Silverside Detectors (United States)'),
(72001, 'https://ror.org/04wxb8m29', 'no_lang_code', 1, 'https://ror.org/04wxb8m29 SIM*VIVO (United States)'),
(72002, 'https://ror.org/01aht8130', 'no_lang_code', 1, 'https://ror.org/01aht8130 Simetri (United States)'),
(72003, 'https://ror.org/01xkxj196', 'no_lang_code', 1, 'https://ror.org/01xkxj196 Seward (United States)'),
(72004, 'https://ror.org/00mbpre48', 'no_lang_code', 1, 'https://ror.org/00mbpre48 Solano Pharmaceuticals (United States)'),
(72005, 'https://ror.org/035q5ds08', 'no_lang_code', 1, 'https://ror.org/035q5ds08 Simmtec (United States)'),
(72006, 'https://ror.org/05gaccq28', 'no_lang_code', 1, 'https://ror.org/05gaccq28 Solar Roadways (United States)'),
(72007, 'https://ror.org/030ygf420', 'no_lang_code', 1, 'https://ror.org/030ygf420 Simphotek (United States)'),
(72008, 'https://ror.org/02rv94a40', 'no_lang_code', 1, 'https://ror.org/02rv94a40 Shal Technologies (United States)'),
(72009, 'https://ror.org/03qj9zv39', 'no_lang_code', 1, 'https://ror.org/03qj9zv39 Space Information Laboratories (United States)'),
(72010, 'https://ror.org/042r8hg55', 'no_lang_code', 1, 'https://ror.org/042r8hg55 Solid State Ceramics (United States)'),
(72011, 'https://ror.org/0348zy043', 'no_lang_code', 1, 'https://ror.org/0348zy043 Shape Memory Medical (United States)'),
(72012, 'https://ror.org/05vddc675', 'no_lang_code', 1, 'https://ror.org/05vddc675 Shared Medical Technology (United States)'),
(72013, 'https://ror.org/04ba5ke19', 'no_lang_code', 1, 'https://ror.org/04ba5ke19 Sharma & Associates (United States)'),
(72014, 'https://ror.org/00hxc6390', 'no_lang_code', 1, 'https://ror.org/00hxc6390 NanoGraf (United States)'),
(72015, 'https://ror.org/056q25d31', 'no_lang_code', 1, 'https://ror.org/056q25d31 Sheehan Medical (United States)'),
(72016, 'https://ror.org/013fp1s35', 'no_lang_code', 1, 'https://ror.org/013fp1s35 SiOnyx (United States)'),
(72017, 'https://ror.org/04kryk212', 'no_lang_code', 1, 'https://ror.org/04kryk212 Spatial Cognition (United States)'),
(72018, 'https://ror.org/04gxzna55', 'no_lang_code', 1, 'https://ror.org/04gxzna55 Sippa Solutions (United States)'),
(72019, 'https://ror.org/050chtk28', 'no_lang_code', 1, 'https://ror.org/050chtk28 Shine Micro (United States)'),
(72020, 'https://ror.org/04kbpm904', 'no_lang_code', 1, 'https://ror.org/04kbpm904 Speak Agent (United States)'),
(72021, 'https://ror.org/051zjfd08', 'no_lang_code', 1, 'https://ror.org/051zjfd08 Somnarus (United States)'),
(72022, 'https://ror.org/045qk3139', 'no_lang_code', 1, 'https://ror.org/045qk3139 Shock Transients (United States)'),
(72023, 'https://ror.org/032pj3t23', 'no_lang_code', 1, 'https://ror.org/032pj3t23 SonarMed (United States)'),
(72024, 'https://ror.org/007mkk709', 'no_lang_code', 1, 'https://ror.org/007mkk709 Specialty Devices (United States)'),
(72025, 'https://ror.org/01n1jtd52', 'no_lang_code', 1, 'https://ror.org/01n1jtd52 Sonavex (United States)'),
(72026, 'https://ror.org/00pdfdm61', 'no_lang_code', 1, 'https://ror.org/00pdfdm61 Specialty Materials (United States)'),
(72027, 'https://ror.org/03e6g0j64', 'no_lang_code', 1, 'https://ror.org/03e6g0j64 Shuttle Pharmaceuticals (United States)'),
(72028, 'https://ror.org/00bg5mz75', 'no_lang_code', 1, 'https://ror.org/00bg5mz75 SkEyes Unlimited (United States)'),
(72029, 'https://ror.org/02y3xky07', 'no_lang_code', 1, 'https://ror.org/02y3xky07 Spectabit Optics (United States)'),
(72030, 'https://ror.org/04s87x939', 'no_lang_code', 1, 'https://ror.org/04s87x939 Sonivate Medical (United States)'),
(72031, 'https://ror.org/04084nh70', 'no_lang_code', 1, 'https://ror.org/04084nh70 SpectraDynamics (United States)'),
(72032, 'https://ror.org/04j7dh318', 'no_lang_code', 1, 'https://ror.org/04j7dh318 Skyhaven Systems (United States)'),
(72033, 'https://ror.org/05jckv214', 'no_lang_code', 1, 'https://ror.org/05jckv214 Spectra Group Limited (United States)'),
(72034, 'https://ror.org/048b89934', 'no_lang_code', 1, 'https://ror.org/048b89934 Sonoran Biosciences (United States)'),
(72035, 'https://ror.org/02dgsh587', 'no_lang_code', 1, 'https://ror.org/02dgsh587 SkySentry (United States)'),
(72036, 'https://ror.org/00jv6rk33', 'no_lang_code', 1, 'https://ror.org/00jv6rk33 Nehemiah Security (United States)'),
(72037, 'https://ror.org/00krh1q73', 'no_lang_code', 1, 'https://ror.org/00krh1q73 Smart Electric Grid (United States)'),
(72038, 'https://ror.org/043qmsk75', 'no_lang_code', 1, 'https://ror.org/043qmsk75 Spectradyne (United States)'),
(72039, 'https://ror.org/00shjhx05', 'no_lang_code', 1, 'https://ror.org/00shjhx05 SMD (United States)'),
(72040, 'https://ror.org/00ceqya16', 'no_lang_code', 1, 'https://ror.org/00ceqya16 Soterix Medical (United States)'),
(72041, 'https://ror.org/04k6f4x16', 'en', 1, 'https://ror.org/04k6f4x16 Sphere Institute'),
(72042, 'https://ror.org/001msz730', 'no_lang_code', 1, 'https://ror.org/001msz730 Spectrum Associates (United States)'),
(72043, 'https://ror.org/00y6d4r36', 'no_lang_code', 1, 'https://ror.org/00y6d4r36 Opticslah (United States)'),
(72044, 'https://ror.org/03de09841', 'no_lang_code', 1, 'https://ror.org/03de09841 SoundPipe Therapeutics (United States)'),
(72045, 'https://ror.org/04k7ptd73', 'no_lang_code', 1, 'https://ror.org/04k7ptd73 Spectral Platforms (United States)'),
(72046, 'https://ror.org/01hy7j205', 'no_lang_code', 1, 'https://ror.org/01hy7j205 Altum Pharmaceuticals (Canada)'),
(72047, 'https://ror.org/017pwjv59', 'no_lang_code', 1, 'https://ror.org/017pwjv59 Spectrum Coatings (United States)'),
(72048, 'https://ror.org/02sh2va57', 'no_lang_code', 1, 'https://ror.org/02sh2va57 SpeechVive (United States)'),
(72049, 'https://ror.org/0249hbq40', 'no_lang_code', 1, 'https://ror.org/0249hbq40 WestMountain Asset Management (United States)'),
(72050, 'https://ror.org/03vyewd38', 'no_lang_code', 1, 'https://ror.org/03vyewd38 Spero Devices (United States)'),
(72051, 'https://ror.org/02f33pm60', 'en', 1, 'https://ror.org/02f33pm60 Scottish Universities Insight Institute'),
(72052, 'https://ror.org/04vgqwj46', 'no_lang_code', 1, 'https://ror.org/04vgqwj46 Sigmatech (United States)'),
(72053, 'https://ror.org/04mnvpk76', 'no_lang_code', 1, 'https://ror.org/04mnvpk76 Diagnostic Photonics (United States)'),
(72054, 'https://ror.org/01nssfy55', 'no_lang_code', 1, 'https://ror.org/01nssfy55 Signals Analytics (United States)'),
(72055, 'https://ror.org/02hf1dy84', 'no_lang_code', 1, 'https://ror.org/02hf1dy84 Laboratory Catalyst Systems (United States)'),
(72056, 'https://ror.org/01119m545', 'no_lang_code', 1, 'https://ror.org/01119m545 Stf Technologies (United States)'),
(72057, 'https://ror.org/01qa1m185', 'no_lang_code', 1, 'https://ror.org/01qa1m185 SignalRx Pharmaceuticals (United States)');
INSERT INTO `rors` VALUES
(72058, 'https://ror.org/00tecmr39', 'no_lang_code', 1, 'https://ror.org/00tecmr39 Solutions Through Innovative Technologies (United States)'),
(72059, 'https://ror.org/04rrhkc58', 'en', 1, 'https://ror.org/04rrhkc58 MODUL University Dubai'),
(72060, 'https://ror.org/00mn4cb09', 'no_lang_code', 1, 'https://ror.org/00mn4cb09 Surfx Technologies (United States)'),
(72061, 'https://ror.org/009m9x557', 'no_lang_code', 1, 'https://ror.org/009m9x557 Storagenergy Technologies (United States)'),
(72062, 'https://ror.org/03p1mkz49', 'no_lang_code', 1, 'https://ror.org/03p1mkz49 SuviCa (United States)'),
(72063, 'https://ror.org/008tj1x05', 'no_lang_code', 1, 'https://ror.org/008tj1x05 Strange Loop Games (United States)'),
(72064, 'https://ror.org/04em20x54', 'no_lang_code', 1, 'https://ror.org/04em20x54 SVXR (United States)'),
(72065, 'https://ror.org/02088r143', 'no_lang_code', 1, 'https://ror.org/02088r143 Springstar (United States)'),
(72066, 'https://ror.org/04wd9yj02', 'no_lang_code', 1, 'https://ror.org/04wd9yj02 Strategic Analysis Enterprises (United States)'),
(72067, 'https://ror.org/03vsf4009', 'no_lang_code', 1, 'https://ror.org/03vsf4009 SR2 Group (United States)'),
(72068, 'https://ror.org/026kzh194', 'no_lang_code', 1, 'https://ror.org/026kzh194 Swallow Solutions (United States)'),
(72069, 'https://ror.org/01ftmwd24', 'no_lang_code', 1, 'https://ror.org/01ftmwd24 Stu Segall Productions (United States)'),
(72070, 'https://ror.org/04r99rr28', 'no_lang_code', 1, 'https://ror.org/04r99rr28 Swift Engineering (United States)'),
(72071, 'https://ror.org/01x37s187', 'no_lang_code', 1, 'https://ror.org/01x37s187 Stratom (United States)'),
(72072, 'https://ror.org/049ektt11', 'no_lang_code', 1, 'https://ror.org/049ektt11 Melior Discovery (United States)'),
(72073, 'https://ror.org/000n79883', 'no_lang_code', 1, 'https://ror.org/000n79883 Stresau Laboratory (United States)'),
(72074, 'https://ror.org/03x9v0p05', 'no_lang_code', 1, 'https://ror.org/03x9v0p05 Symbiotix Biotherapies (United States)'),
(72075, 'https://ror.org/04j65k592', 'no_lang_code', 1, 'https://ror.org/04j65k592 Stress Engineering Services (United States)'),
(72076, 'https://ror.org/000n9hp16', 'no_lang_code', 1, 'https://ror.org/000n9hp16 Stress Photonics (United States)'),
(72077, 'https://ror.org/04236xc45', 'en', 1, 'https://ror.org/04236xc45 Tama County Public Health & Home Care'),
(72078, 'https://ror.org/02pvg9820', 'no_lang_code', 1, 'https://ror.org/02pvg9820 StackFrame (United States)'),
(72079, 'https://ror.org/03zxxbe81', 'no_lang_code', 1, 'https://ror.org/03zxxbe81 Synaptic Research (United States)'),
(72080, 'https://ror.org/01s8p3017', 'no_lang_code', 1, 'https://ror.org/01s8p3017 Kinection (United States)'),
(72081, 'https://ror.org/02fdbrg94', 'no_lang_code', 1, 'https://ror.org/02fdbrg94 Smith & Co (United States)'),
(72082, 'https://ror.org/02vqkgx45', 'no_lang_code', 1, 'https://ror.org/02vqkgx45 Staib Instruments (United States)'),
(72083, 'https://ror.org/04byng292', 'no_lang_code', 1, 'https://ror.org/04byng292 Syncopated Products (United States)'),
(72084, 'https://ror.org/0558r0k17', 'no_lang_code', 1, 'https://ror.org/0558r0k17 Summit Technology Laboratory (United States)'),
(72085, 'https://ror.org/01m7j1c81', 'no_lang_code', 1, 'https://ror.org/01m7j1c81 Summit Test Solutions (United States)'),
(72086, 'https://ror.org/038cy9619', 'no_lang_code', 1, 'https://ror.org/038cy9619 Syncro Medical Innovations (United States)'),
(72087, 'https://ror.org/01r7f1531', 'no_lang_code', 1, 'https://ror.org/01r7f1531 Synertech PM (United States)'),
(72088, 'https://ror.org/03bkvs475', 'no_lang_code', 1, 'https://ror.org/03bkvs475 Sun Valley Technology (United States)'),
(72089, 'https://ror.org/04h7g2e84', 'no_lang_code', 1, 'https://ror.org/04h7g2e84 Advanced Technology Systems Company (United States)'),
(72090, 'https://ror.org/00ah6pg32', 'no_lang_code', 1, 'https://ror.org/00ah6pg32 SunRay Scientific (United States)'),
(72091, 'https://ror.org/03fpcyw06', 'no_lang_code', 1, 'https://ror.org/03fpcyw06 Synetics Systems Engineering Corp (United States)'),
(72092, 'https://ror.org/01021jx78', 'no_lang_code', 1, 'https://ror.org/01021jx78 Sunset Laboratory (United States)'),
(72093, 'https://ror.org/00vr1xq27', 'no_lang_code', 1, 'https://ror.org/00vr1xq27 Syntermed (United States)'),
(72094, 'https://ror.org/04fd8ks75', 'no_lang_code', 1, 'https://ror.org/04fd8ks75 Starfire Systems (United States)'),
(72095, 'https://ror.org/0284sm129', 'no_lang_code', 1, 'https://ror.org/0284sm129 SysLogic (United States)'),
(72096, 'https://ror.org/04bpmn027', 'no_lang_code', 1, 'https://ror.org/04bpmn027 Starix Technology (United States)'),
(72097, 'https://ror.org/00e27h292', 'no_lang_code', 1, 'https://ror.org/00e27h292 Synthonics (United States)'),
(72098, 'https://ror.org/00rbnp372', 'no_lang_code', 1, 'https://ror.org/00rbnp372 System Dynamics International (United States)'),
(72099, 'https://ror.org/00wg69w90', 'no_lang_code', 1, 'https://ror.org/00wg69w90 Starship Health Technologies (United States)'),
(72100, 'https://ror.org/00v28x102', 'no_lang_code', 1, 'https://ror.org/00v28x102 Syntrotek (United States)'),
(72101, 'https://ror.org/059r91969', 'no_lang_code', 1, 'https://ror.org/059r91969 Starodub (United States)'),
(72102, 'https://ror.org/027ya7x98', 'no_lang_code', 1, 'https://ror.org/027ya7x98 Systemech (United States)'),
(72103, 'https://ror.org/04ssknj45', 'no_lang_code', 1, 'https://ror.org/04ssknj45 Kalusugan + Kalakasan'),
(72104, 'https://ror.org/005ksdp35', 'no_lang_code', 1, 'https://ror.org/005ksdp35 Systems Analytics (United States)'),
(72105, 'https://ror.org/04ffrxx14', 'no_lang_code', 1, 'https://ror.org/04ffrxx14 Star Vision Technologies (United States)'),
(72106, 'https://ror.org/01c5fzf42', 'no_lang_code', 1, 'https://ror.org/01c5fzf42 STC Biologics (United States)'),
(72107, 'https://ror.org/01jdd8n67', 'no_lang_code', 1, 'https://ror.org/01jdd8n67 Tgv (United States)'),
(72108, 'https://ror.org/013wbpj39', 'no_lang_code', 1, 'https://ror.org/013wbpj39 Technology Focus (United States)'),
(72109, 'https://ror.org/015trrs98', 'no_lang_code', 1, 'https://ror.org/015trrs98 T2C-Energy (United States)'),
(72110, 'https://ror.org/01r5f5330', 'no_lang_code', 1, 'https://ror.org/01r5f5330 Tactical Communications Group (United States)'),
(72111, 'https://ror.org/01dr6j212', 'no_lang_code', 1, 'https://ror.org/01dr6j212 Tactical Edge (United States)'),
(72112, 'https://ror.org/05yawdh16', 'no_lang_code', 1, 'https://ror.org/05yawdh16 Stein Seal (United States)'),
(72113, 'https://ror.org/027hpkn10', 'no_lang_code', 1, 'https://ror.org/027hpkn10 Apogee Semiconductor (United States)'),
(72114, 'https://ror.org/03sxw1z96', 'no_lang_code', 1, 'https://ror.org/03sxw1z96 Stellar Exploration (United States)'),
(72115, 'https://ror.org/0382n1947', 'no_lang_code', 1, 'https://ror.org/0382n1947 Step Tools (United States)'),
(72116, 'https://ror.org/00drdr242', 'no_lang_code', 1, 'https://ror.org/00drdr242 AnywherEnergy (United States)'),
(72117, 'https://ror.org/04tjebs40', 'no_lang_code', 1, 'https://ror.org/04tjebs40 TargaGenix (United States)'),
(72118, 'https://ror.org/00jb5hw73', 'no_lang_code', 1, 'https://ror.org/00jb5hw73 Tasso (United States)'),
(72119, 'https://ror.org/04r4a0e87', 'no_lang_code', 1, 'https://ror.org/04r4a0e87 Breezing (United States)'),
(72120, 'https://ror.org/05nbh3n52', 'no_lang_code', 1, 'https://ror.org/05nbh3n52 Teachley (United States)'),
(72121, 'https://ror.org/0564c1v55', 'no_lang_code', 1, 'https://ror.org/0564c1v55 Technovative Applications (United States)'),
(72122, 'https://ror.org/05edycz02', 'no_lang_code', 1, 'https://ror.org/05edycz02 Tec-Masters (United States)'),
(72123, 'https://ror.org/045w00s14', 'no_lang_code', 1, 'https://ror.org/045w00s14 Tech 21 (United States)'),
(72124, 'https://ror.org/051wthz50', 'no_lang_code', 1, 'https://ror.org/051wthz50 Techulon (United States)'),
(72125, 'https://ror.org/056j2ng59', 'no_lang_code', 1, 'https://ror.org/056j2ng59 Techverse (United States)'),
(72126, 'https://ror.org/03j4q6459', 'no_lang_code', 1, 'https://ror.org/03j4q6459 CryoRay Coolers (United States)'),
(72127, 'https://ror.org/03wbd7629', 'no_lang_code', 1, 'https://ror.org/03wbd7629 Tela Innovations (United States)'),
(72128, 'https://ror.org/05fttpt98', 'no_lang_code', 1, 'https://ror.org/05fttpt98 The Eppley Laboratory (United States)'),
(72129, 'https://ror.org/04nt05y93', 'no_lang_code', 1, 'https://ror.org/04nt05y93 Third Pole Therapeutics (United States)'),
(72130, 'https://ror.org/01cepg588', 'no_lang_code', 1, 'https://ror.org/01cepg588 Haleakala Research and Development (United States)'),
(72131, 'https://ror.org/00vdc9c89', 'no_lang_code', 1, 'https://ror.org/00vdc9c89 Technology Applications Group (United States)'),
(72132, 'https://ror.org/04ea7gf23', 'no_lang_code', 1, 'https://ror.org/04ea7gf23 Kendrick Laboratories (United States)'),
(72133, 'https://ror.org/01ya1kj04', 'no_lang_code', 1, 'https://ror.org/01ya1kj04 TechnoView (United States)'),
(72134, 'https://ror.org/012j9gn20', 'no_lang_code', 1, 'https://ror.org/012j9gn20 Mackinac Technology (United States)'),
(72135, 'https://ror.org/02dbe0m82', 'no_lang_code', 1, 'https://ror.org/02dbe0m82 The Open Group (United States)'),
(72136, 'https://ror.org/0120p8e59', 'no_lang_code', 1, 'https://ror.org/0120p8e59 Dynapel Systems (United States)'),
(72137, 'https://ror.org/00npgvt11', 'no_lang_code', 1, 'https://ror.org/00npgvt11 Traverse Biosciences (United States)'),
(72138, 'https://ror.org/036m1sh27', 'no_lang_code', 1, 'https://ror.org/036m1sh27 Thorleaf Research (United States)'),
(72139, 'https://ror.org/044j01f08', 'no_lang_code', 1, 'https://ror.org/044j01f08 Traycer (United States)'),
(72140, 'https://ror.org/04rmh9q90', 'no_lang_code', 1, 'https://ror.org/04rmh9q90 Thornton Tomasetti (United States)'),
(72141, 'https://ror.org/059r55748', 'no_lang_code', 1, 'https://ror.org/059r55748 Triad (United States)'),
(72142, 'https://ror.org/033nee397', 'no_lang_code', 1, 'https://ror.org/033nee397 Theragnostic Technologies (United States)'),
(72143, 'https://ror.org/00wns3e34', 'no_lang_code', 1, 'https://ror.org/00wns3e34 Tiburon Associates (United States)'),
(72144, 'https://ror.org/018g2w043', 'no_lang_code', 1, 'https://ror.org/018g2w043 Therapeutic Vision (United States)'),
(72145, 'https://ror.org/03y71kj48', 'no_lang_code', 1, 'https://ror.org/03y71kj48 Tidewater Consulting (United States)'),
(72146, 'https://ror.org/04bzdmw10', 'no_lang_code', 1, 'https://ror.org/04bzdmw10 Tietronix (United States)'),
(72147, 'https://ror.org/04pa8hw67', 'no_lang_code', 1, 'https://ror.org/04pa8hw67 Lubris BioPharma (United States)'),
(72148, 'https://ror.org/04ecc9p69', 'no_lang_code', 1, 'https://ror.org/04ecc9p69 Tribologix (United States)'),
(72149, 'https://ror.org/01jmes654', 'no_lang_code', 1, 'https://ror.org/01jmes654 Tendeg (United States)'),
(72150, 'https://ror.org/01rm1r711', 'no_lang_code', 1, 'https://ror.org/01rm1r711 United Electric Controls (United States)'),
(72151, 'https://ror.org/029jf8535', 'no_lang_code', 1, 'https://ror.org/029jf8535 Tenet 3 (United States)'),
(72152, 'https://ror.org/04sksp841', 'no_lang_code', 1, 'https://ror.org/04sksp841 Troxler (United States)'),
(72153, 'https://ror.org/027b5pf36', 'no_lang_code', 1, 'https://ror.org/027b5pf36 True (United States)'),
(72154, 'https://ror.org/01sbfc546', 'no_lang_code', 1, 'https://ror.org/01sbfc546 Truventic (United States)'),
(72155, 'https://ror.org/03qfxy306', 'no_lang_code', 1, 'https://ror.org/03qfxy306 Turnkey Design Services (United States)'),
(72156, 'https://ror.org/015dkr863', 'no_lang_code', 1, 'https://ror.org/015dkr863 TCI Peptide Therapeutics (United States)'),
(72157, 'https://ror.org/048mkn426', 'no_lang_code', 1, 'https://ror.org/048mkn426 Tusaar (United States)'),
(72158, 'https://ror.org/0509zzg37', 'en', 1, 'https://ror.org/0509zzg37 Scripps MD Anderson Cancer Center'),
(72159, 'https://ror.org/04dkw8s94', 'no_lang_code', 1, 'https://ror.org/04dkw8s94 Tyvak (United States)'),
(72160, 'https://ror.org/05hmbdg55', 'no_lang_code', 1, 'https://ror.org/05hmbdg55 TerraMetrics (United States)'),
(72161, 'https://ror.org/03cjnda72', 'no_lang_code', 1, 'https://ror.org/03cjnda72 Topia Technology (United States)'),
(72162, 'https://ror.org/02txken21', 'no_lang_code', 1, 'https://ror.org/02txken21 Tesla Laboratories (United States)'),
(72163, 'https://ror.org/01sm6mt92', 'no_lang_code', 1, 'https://ror.org/01sm6mt92 Test & Evaluation Solutions (United States)'),
(72164, 'https://ror.org/009qyxk73', 'no_lang_code', 1, 'https://ror.org/009qyxk73 Theron Pharmaceuticals (United States)'),
(72165, 'https://ror.org/02ps3td80', 'no_lang_code', 1, 'https://ror.org/02ps3td80 Testco (United States)'),
(72166, 'https://ror.org/03233xn13', 'no_lang_code', 1, 'https://ror.org/03233xn13 Torc Robotics (United States)'),
(72167, 'https://ror.org/040e62975', 'no_lang_code', 1, 'https://ror.org/040e62975 US Biotest (United States)'),
(72168, 'https://ror.org/05hv95t40', 'no_lang_code', 1, 'https://ror.org/05hv95t40 Tetra Research (United States)'),
(72169, 'https://ror.org/00ny2ab23', 'no_lang_code', 1, 'https://ror.org/00ny2ab23 Thermal Storage Systems (United States)'),
(72170, 'https://ror.org/0065tt051', 'no_lang_code', 1, 'https://ror.org/0065tt051 U.S. Composites (United States)'),
(72171, 'https://ror.org/02r30tp91', 'no_lang_code', 1, 'https://ror.org/02r30tp91 Thermedical (United States)'),
(72172, 'https://ror.org/01jdgtk90', 'no_lang_code', 1, 'https://ror.org/01jdgtk90 UbiQD (United States)'),
(72173, 'https://ror.org/0046sdb63', 'no_lang_code', 1, 'https://ror.org/0046sdb63 Tosk (United States)'),
(72174, 'https://ror.org/042anhx64', 'no_lang_code', 1, 'https://ror.org/042anhx64 UCT Coatings (United States)'),
(72175, 'https://ror.org/03vx2yp60', 'no_lang_code', 1, 'https://ror.org/03vx2yp60 TeVido BioDevices (United States)'),
(72176, 'https://ror.org/04qxg2139', 'no_lang_code', 1, 'https://ror.org/04qxg2139 Ultra Safe Nuclear Corporation (United States)'),
(72177, 'https://ror.org/05qxpts92', 'no_lang_code', 1, 'https://ror.org/05qxpts92 Tex Tech Industries (United States)'),
(72178, 'https://ror.org/04xrw3922', 'no_lang_code', 1, 'https://ror.org/04xrw3922 Trace-Ability (United States)'),
(72179, 'https://ror.org/04rw71h18', 'no_lang_code', 1, 'https://ror.org/04rw71h18 UltraCell (United States)'),
(72180, 'https://ror.org/03x2dsw59', 'no_lang_code', 1, 'https://ror.org/03x2dsw59 Ultrasonic Technologies (United States)'),
(72181, 'https://ror.org/03aqkee12', 'no_lang_code', 1, 'https://ror.org/03aqkee12 Uniqarta (United States)'),
(72182, 'https://ror.org/02vzcwk04', 'no_lang_code', 1, 'https://ror.org/02vzcwk04 Vesperix (United States)'),
(72183, 'https://ror.org/039hf2675', 'no_lang_code', 1, 'https://ror.org/039hf2675 Vestar (United States)'),
(72184, 'https://ror.org/05g916f28', 'no_lang_code', 1, 'https://ror.org/05g916f28 Translational Sciences (United States)'),
(72185, 'https://ror.org/02zf60h18', 'no_lang_code', 1, 'https://ror.org/02zf60h18 United Language Group (United States)'),
(72186, 'https://ror.org/01fgny818', 'no_lang_code', 1, 'https://ror.org/01fgny818 Vacuum Process Engineering (United States)'),
(72187, 'https://ror.org/04p6f5632', 'no_lang_code', 1, 'https://ror.org/04p6f5632 ViaDerm (United States)'),
(72188, 'https://ror.org/01h2q5p96', 'no_lang_code', 1, 'https://ror.org/01h2q5p96 Transmural Systems (United States)'),
(72189, 'https://ror.org/005x7bz67', 'no_lang_code', 1, 'https://ror.org/005x7bz67 Transphorm (United States)'),
(72190, 'https://ror.org/03e6rtv28', 'no_lang_code', 1, 'https://ror.org/03e6rtv28 University Technical Services (United States)'),
(72191, 'https://ror.org/04qxwt159', 'no_lang_code', 1, 'https://ror.org/04qxwt159 Vidatak (United States)'),
(72192, 'https://ror.org/05vhgbn50', 'no_lang_code', 1, 'https://ror.org/05vhgbn50 Vidrio (United States)'),
(72193, 'https://ror.org/00ny9n194', 'no_lang_code', 1, 'https://ror.org/00ny9n194 SuperTurbo Technologies (United States)'),
(72194, 'https://ror.org/01wt5xg78', 'no_lang_code', 1, 'https://ror.org/01wt5xg78 User Systems (United States)'),
(72195, 'https://ror.org/01mm1y498', 'no_lang_code', 1, 'https://ror.org/01mm1y498 Viewpoint Molecular Targeting (United States)'),
(72196, 'https://ror.org/03847eh84', 'no_lang_code', 1, 'https://ror.org/03847eh84 Vigilant Cyber Systems (United States)'),
(72197, 'https://ror.org/03gmxkp43', 'no_lang_code', 1, 'https://ror.org/03gmxkp43 Vision Technology (United States)'),
(72198, 'https://ror.org/01zb9kf14', 'no_lang_code', 1, 'https://ror.org/01zb9kf14 Visionary Pharmaceuticals (United States)'),
(72199, 'https://ror.org/01r3j5512', 'no_lang_code', 1, 'https://ror.org/01r3j5512 Vasoptic Medical (United States)'),
(72200, 'https://ror.org/052ne1802', 'no_lang_code', 1, 'https://ror.org/052ne1802 Visonex (United States)'),
(72201, 'https://ror.org/043vk9688', 'no_lang_code', 1, 'https://ror.org/043vk9688 Vanilla Unmanned (United States)'),
(72202, 'https://ror.org/049wfr424', 'no_lang_code', 1, 'https://ror.org/049wfr424 VAWD (United States)'),
(72203, 'https://ror.org/01gfzgg34', 'no_lang_code', 1, 'https://ror.org/01gfzgg34 Vaxess Technologies (United States)'),
(72204, 'https://ror.org/04r17yy05', 'no_lang_code', 1, 'https://ror.org/04r17yy05 Visus (United States)'),
(72205, 'https://ror.org/015kbrv74', 'no_lang_code', 1, 'https://ror.org/015kbrv74 Vital Art and Science (United States)'),
(72206, 'https://ror.org/00y903920', 'no_lang_code', 1, 'https://ror.org/00y903920 Vcrsoft (United States)'),
(72207, 'https://ror.org/01vec9q19', 'no_lang_code', 1, 'https://ror.org/01vec9q19 Vital Probes (United States)'),
(72208, 'https://ror.org/01gtv1921', 'no_lang_code', 1, 'https://ror.org/01gtv1921 Virtual Phantoms (United States)'),
(72209, 'https://ror.org/03v9vd314', 'no_lang_code', 1, 'https://ror.org/03v9vd314 VitalQuan (United States)'),
(72210, 'https://ror.org/00wtxn298', 'no_lang_code', 1, 'https://ror.org/00wtxn298 West Coast Solutions (United States)'),
(72211, 'https://ror.org/04b3hkf22', 'no_lang_code', 1, 'https://ror.org/04b3hkf22 VR Rehab (United States)'),
(72212, 'https://ror.org/03tpfej15', 'no_lang_code', 1, 'https://ror.org/03tpfej15 Viti (United States)'),
(72213, 'https://ror.org/054grzz74', 'no_lang_code', 1, 'https://ror.org/054grzz74 Virtual Technology (United States)'),
(72214, 'https://ror.org/049xdy517', 'no_lang_code', 1, 'https://ror.org/049xdy517 VITOK Engineers (United States)'),
(72215, 'https://ror.org/00e1g1704', 'no_lang_code', 1, 'https://ror.org/00e1g1704 Vector Composites (United States)'),
(72216, 'https://ror.org/01f4r1a13', 'no_lang_code', 1, 'https://ror.org/01f4r1a13 Visca (United States)'),
(72217, 'https://ror.org/00tptkt39', 'no_lang_code', 1, 'https://ror.org/00tptkt39 NetDragon (United States)'),
(72218, 'https://ror.org/045c7x933', 'no_lang_code', 1, 'https://ror.org/045c7x933 VivaQuant (United States)'),
(72219, 'https://ror.org/02qwdn481', 'no_lang_code', 1, 'https://ror.org/02qwdn481 Vivor (United States)'),
(72220, 'https://ror.org/023wtw779', 'no_lang_code', 1, 'https://ror.org/023wtw779 Vektrex (United States)'),
(72221, 'https://ror.org/01d1pkv81', 'no_lang_code', 1, 'https://ror.org/01d1pkv81 Viz-Tek (United States)'),
(72222, 'https://ror.org/00tkbqn95', 'no_lang_code', 1, 'https://ror.org/00tkbqn95 Widder Brothers (United States)'),
(72223, 'https://ror.org/00exzt005', 'no_lang_code', 1, 'https://ror.org/00exzt005 Xalud Therapeutics (United States)'),
(72224, 'https://ror.org/02vnj6d40', 'no_lang_code', 1, 'https://ror.org/02vnj6d40 XCell Science (United States)'),
(72225, 'https://ror.org/02q9rgg45', 'no_lang_code', 1, 'https://ror.org/02q9rgg45 Widetronix (United States)'),
(72226, 'https://ror.org/00f6b3992', 'no_lang_code', 1, 'https://ror.org/00f6b3992 The 451 Group (United States)'),
(72227, 'https://ror.org/05qczpc79', 'no_lang_code', 1, 'https://ror.org/05qczpc79 Vocalid (United States)'),
(72228, 'https://ror.org/00gqx0b07', 'no_lang_code', 1, 'https://ror.org/00gqx0b07 Xenotran (United States)'),
(72229, 'https://ror.org/05tdgz517', 'no_lang_code', 1, 'https://ror.org/05tdgz517 Voci (United States)'),
(72230, 'https://ror.org/01bgyfj42', 'no_lang_code', 1, 'https://ror.org/01bgyfj42 Venable Instruments (United States)'),
(72231, 'https://ror.org/035pr7340', 'no_lang_code', 1, 'https://ror.org/035pr7340 BioRankings (United States)'),
(72232, 'https://ror.org/05bdyr549', 'no_lang_code', 1, 'https://ror.org/05bdyr549 VPDiagnostics (United States)'),
(72233, 'https://ror.org/01ep5y454', 'no_lang_code', 1, 'https://ror.org/01ep5y454 Venator Solutions (United States)'),
(72234, 'https://ror.org/01w142366', 'no_lang_code', 1, 'https://ror.org/01w142366 Venebio (United States)'),
(72235, 'https://ror.org/03z7fpr75', 'no_lang_code', 1, 'https://ror.org/03z7fpr75 VRC Metal Systems (United States)'),
(72236, 'https://ror.org/04xpvpa92', 'no_lang_code', 1, 'https://ror.org/04xpvpa92 Opt-E (United States)'),
(72237, 'https://ror.org/010wgsf71', 'no_lang_code', 1, 'https://ror.org/010wgsf71 Ventions (United States)'),
(72238, 'https://ror.org/00psjjw10', 'no_lang_code', 1, 'https://ror.org/00psjjw10 Ventrix (United States)'),
(72239, 'https://ror.org/0191qk654', 'no_lang_code', 1, 'https://ror.org/0191qk654 Vibration and Shock Technologies (United States)'),
(72240, 'https://ror.org/056pwa368', 'no_lang_code', 1, 'https://ror.org/056pwa368 Vtec Laboratories (United States)'),
(72241, 'https://ror.org/0203kq127', 'no_lang_code', 1, 'https://ror.org/0203kq127 Vulintus (United States)'),
(72242, 'https://ror.org/050fs4d54', 'no_lang_code', 1, 'https://ror.org/050fs4d54 247Solar Plant (United States)'),
(72243, 'https://ror.org/058gnjg35', 'no_lang_code', 1, 'https://ror.org/058gnjg35 Veralase (United States)'),
(72244, 'https://ror.org/04de8hn78', 'no_lang_code', 1, 'https://ror.org/04de8hn78 Verus Research (United States)'),
(72245, 'https://ror.org/04cd0dy46', 'no_lang_code', 1, 'https://ror.org/04cd0dy46 Winchester Technologies (United States)'),
(72246, 'https://ror.org/04w8dg967', 'no_lang_code', 1, 'https://ror.org/04w8dg967 VerdaSee Solutions (United States)'),
(72247, 'https://ror.org/032g5d438', 'no_lang_code', 1, 'https://ror.org/032g5d438 Xona Microfluidics (United States)'),
(72248, 'https://ror.org/04cby3g57', 'no_lang_code', 1, 'https://ror.org/04cby3g57 Wasatch Photonics (United States)'),
(72249, 'https://ror.org/010efbr18', 'no_lang_code', 1, 'https://ror.org/010efbr18 XUV Lasers (United States)'),
(72250, 'https://ror.org/03brmsq64', 'no_lang_code', 1, 'https://ror.org/03brmsq64 Veriskin (United States)'),
(72251, 'https://ror.org/05mkjwz44', 'no_lang_code', 1, 'https://ror.org/05mkjwz44 Windmill (United States)'),
(72252, 'https://ror.org/040dnvn05', 'no_lang_code', 1, 'https://ror.org/040dnvn05 Wave CPC (United States)'),
(72253, 'https://ror.org/00g1jg068', 'no_lang_code', 1, 'https://ror.org/00g1jg068 Xybion Corporation (United States)'),
(72254, 'https://ror.org/00nrdcp20', 'no_lang_code', 1, 'https://ror.org/00nrdcp20 Windmill International (United States)'),
(72255, 'https://ror.org/00xwb9867', 'no_lang_code', 1, 'https://ror.org/00xwb9867 WinSanTor (United States)'),
(72256, 'https://ror.org/050tt9n79', 'no_lang_code', 1, 'https://ror.org/050tt9n79 Y.K. Bae (United States)'),
(72257, 'https://ror.org/05x4we538', 'no_lang_code', 1, 'https://ror.org/05x4we538 Valepro (United States)'),
(72258, 'https://ror.org/01pydbv25', 'no_lang_code', 1, 'https://ror.org/01pydbv25 YAN Engines (United States)'),
(72259, 'https://ror.org/02fh3mq29', 'no_lang_code', 1, 'https://ror.org/02fh3mq29 Zietchick Research Institute (United States)'),
(72260, 'https://ror.org/05ds3hh45', 'no_lang_code', 1, 'https://ror.org/05ds3hh45 Gototags (United States)'),
(72261, 'https://ror.org/039kg2d97', 'no_lang_code', 1, 'https://ror.org/039kg2d97 YumaWorks (United States)'),
(72262, 'https://ror.org/021svyy15', 'no_lang_code', 1, 'https://ror.org/021svyy15 Yaso Therapeutics (United States)'),
(72263, 'https://ror.org/05fe9d430', 'no_lang_code', 1, 'https://ror.org/05fe9d430 Z-Terra (United States)'),
(72264, 'https://ror.org/01atc9m12', 'no_lang_code', 1, 'https://ror.org/01atc9m12 Wizbe Innovations (United States)'),
(72265, 'https://ror.org/02nfmpb07', 'no_lang_code', 1, 'https://ror.org/02nfmpb07 ZKxKZ (United States)'),
(72266, 'https://ror.org/00ryt4t07', 'no_lang_code', 1, 'https://ror.org/00ryt4t07 Zeomedix (United States)'),
(72267, 'https://ror.org/01k1p7y49', 'no_lang_code', 1, 'https://ror.org/01k1p7y49 Zeteo Tech (United States)'),
(72268, 'https://ror.org/05392nj09', 'no_lang_code', 1, 'https://ror.org/05392nj09 Zalgen (United States)'),
(72269, 'https://ror.org/00te3ej54', 'no_lang_code', 1, 'https://ror.org/00te3ej54 ZoneOne Pharma (United States)'),
(72270, 'https://ror.org/024wm7g15', 'no_lang_code', 1, 'https://ror.org/024wm7g15 Zdye (United States)'),
(72271, 'https://ror.org/05mtdc048', 'no_lang_code', 1, 'https://ror.org/05mtdc048 Zata Pharmaceuticals (United States)'),
(72272, 'https://ror.org/051860q83', 'no_lang_code', 1, 'https://ror.org/051860q83 AspenTech (United Kingdom)'),
(72273, 'https://ror.org/0518mdr56', 'no_lang_code', 1, 'https://ror.org/0518mdr56 Bruker (Austria)'),
(72274, 'https://ror.org/05jg70019', 'no_lang_code', 1, 'https://ror.org/05jg70019 3D Systems (United Kingdom)'),
(72275, 'https://ror.org/01qr6ev44', 'no_lang_code', 1, 'https://ror.org/01qr6ev44 Alps Electric (United Kingdom)'),
(72276, 'https://ror.org/05ncq9g28', 'no_lang_code', 1, 'https://ror.org/05ncq9g28 Altair Engineering (United Kingdom)'),
(72277, 'https://ror.org/050h08n21', 'en', 1, 'https://ror.org/050h08n21 Aquarius Population Health'),
(72278, 'https://ror.org/00bhf5527', 'no_lang_code', 1, 'https://ror.org/00bhf5527 Ethypharm (United Kingdom)'),
(72279, 'https://ror.org/05vjgy768', 'no_lang_code', 1, 'https://ror.org/05vjgy768 Atos (United Kingdom)'),
(72280, 'https://ror.org/00pdsbg03', 'no_lang_code', 1, 'https://ror.org/00pdsbg03 Arkema (United Kingdom)'),
(72281, 'https://ror.org/01g1qg816', 'en', 1, 'https://ror.org/01g1qg816 Northeast Cancer Centre'),
(72282, 'https://ror.org/01dzqde20', 'no_lang_code', 1, 'https://ror.org/01dzqde20 Autodesk (United Kingdom)'),
(72283, 'https://ror.org/04why9q78', 'no_lang_code', 1, 'https://ror.org/04why9q78 Bentley Systems (United Kingdom)'),
(72284, 'https://ror.org/024kstn81', 'no_lang_code', 1, 'https://ror.org/024kstn81 Bentley Systems (United States)'),
(72285, 'https://ror.org/01h14dd51', 'no_lang_code', 1, 'https://ror.org/01h14dd51 Axa (United Kingdom)'),
(72286, 'https://ror.org/01eqdrp13', 'no_lang_code', 1, 'https://ror.org/01eqdrp13 BMW (United Kingdom)'),
(72287, 'https://ror.org/059gc9059', 'no_lang_code', 1, 'https://ror.org/059gc9059 Bobst (United Kingdom)'),
(72288, 'https://ror.org/051hm2r46', 'no_lang_code', 1, 'https://ror.org/051hm2r46 Cemex (United Kingdom)'),
(72289, 'https://ror.org/0576yhz46', 'no_lang_code', 1, 'https://ror.org/0576yhz46 Cengage Learning (United Kingdom)'),
(72290, 'https://ror.org/051qqsf31', 'no_lang_code', 1, 'https://ror.org/051qqsf31 CeramTec (United Kingdom)'),
(72291, 'https://ror.org/02v08db54', 'no_lang_code', 1, 'https://ror.org/02v08db54 Constellium (United Kingdom)'),
(72292, 'https://ror.org/03yme5333', 'no_lang_code', 1, 'https://ror.org/03yme5333 Ciena (United Kingdom)'),
(72293, 'https://ror.org/04tpxn918', 'no_lang_code', 1, 'https://ror.org/04tpxn918 Deutsche Bank (United Kingdom)'),
(72294, 'https://ror.org/007jgnc83', 'no_lang_code', 1, 'https://ror.org/007jgnc83 Danieli (United Kingdom)'),
(72295, 'https://ror.org/05v7khc27', 'no_lang_code', 1, 'https://ror.org/05v7khc27 Disco (Germany)'),
(72296, 'https://ror.org/055qtnk39', 'no_lang_code', 1, 'https://ror.org/055qtnk39 DMG Mori (United Kingdom)'),
(72297, 'https://ror.org/02v21h460', 'no_lang_code', 1, 'https://ror.org/02v21h460 Finning (United Kingdom)'),
(72298, 'https://ror.org/01shd5g72', 'no_lang_code', 1, 'https://ror.org/01shd5g72 Electro Optical Systems (United Kingdom)'),
(72299, 'https://ror.org/03vyhtd35', 'no_lang_code', 1, 'https://ror.org/03vyhtd35 Bridgestone (United Kingdom)'),
(72300, 'https://ror.org/00cr5zh57', 'no_lang_code', 1, 'https://ror.org/00cr5zh57 Fonterra (Australia)'),
(72301, 'https://ror.org/02b68c504', 'no_lang_code', 1, 'https://ror.org/02b68c504 Eurostep (United Kingdom)'),
(72302, 'https://ror.org/03strdf60', 'no_lang_code', 1, 'https://ror.org/03strdf60 Velocity Laboratories (United States)'),
(72303, 'https://ror.org/026znxe07', 'en', 1, 'https://ror.org/026znxe07 Energy Safety Research Institute'),
(72304, 'https://ror.org/00gv7g150', 'en', 1, 'https://ror.org/00gv7g150 Clinica Esperanza/Hope Clinic'),
(72305, 'https://ror.org/036v1zd35', 'no_lang_code', 1, 'https://ror.org/036v1zd35 Semtech (United Kingdom)'),
(72306, 'https://ror.org/05e0gpk62', 'no_lang_code', 1, 'https://ror.org/05e0gpk62 Hottinger Baldwin Messtechnik (United Kingdom)'),
(72307, 'https://ror.org/0201da008', 'no_lang_code', 1, 'https://ror.org/0201da008 HCL Technologies (United States)'),
(72308, 'https://ror.org/009xgxm43', 'no_lang_code', 1, 'https://ror.org/009xgxm43 Hosokawa Micron (United Kingdom)'),
(72309, 'https://ror.org/0117s3e61', 'no_lang_code', 1, 'https://ror.org/0117s3e61 ID Quantique (United Kingdom)'),
(72310, 'https://ror.org/04c4wb253', 'no_lang_code', 1, 'https://ror.org/04c4wb253 Applus+ IDIADA (United Kingdom)'),
(72311, 'https://ror.org/05qg4my54', 'no_lang_code', 1, 'https://ror.org/05qg4my54 Henkel (United Kingdom)'),
(72312, 'https://ror.org/04xx77718', 'en', 1, 'https://ror.org/04xx77718 Bosom Buddies of Arizona'),
(72313, 'https://ror.org/03fk15c97', 'no_lang_code', 1, 'https://ror.org/03fk15c97 Itaconix (United Kingdom)'),
(72314, 'https://ror.org/05fenky51', 'no_lang_code', 1, 'https://ror.org/05fenky51 Interface (United Kingdom)'),
(72315, 'https://ror.org/04q80hd21', 'no_lang_code', 1, 'https://ror.org/04q80hd21 Innotec (United Kingdom)'),
(72316, 'https://ror.org/04gs4wp13', 'en', 1, 'https://ror.org/04gs4wp13 Internet Matters'),
(72317, 'https://ror.org/01e7k1548', 'no_lang_code', 1, 'https://ror.org/01e7k1548 Kistler (United Kingdom)'),
(72318, 'https://ror.org/02aqvpe76', 'no_lang_code', 1, 'https://ror.org/02aqvpe76 Inphi (United Kingdom)'),
(72319, 'https://ror.org/0489rbg31', 'no_lang_code', 1, 'https://ror.org/0489rbg31 Viavi Solutions (United Kingdom)'),
(72320, 'https://ror.org/04gvrvx60', 'no_lang_code', 1, 'https://ror.org/04gvrvx60 Kuehne + Nagel (United Kingdom)'),
(72321, 'https://ror.org/001hkv469', 'no_lang_code', 1, 'https://ror.org/001hkv469 Koch Industries (United Kingdom)'),
(72322, 'https://ror.org/04nbkxt24', 'no_lang_code', 1, 'https://ror.org/04nbkxt24 BearingPoint (United Kingdom)'),
(72323, 'https://ror.org/03zmk9a61', 'no_lang_code', 1, 'https://ror.org/03zmk9a61 Kerry Group (United Kingdom)'),
(72324, 'https://ror.org/03grn3q81', 'no_lang_code', 1, 'https://ror.org/03grn3q81 Lenzing (United Kingdom)'),
(72325, 'https://ror.org/02jy4mx12', 'no_lang_code', 1, 'https://ror.org/02jy4mx12 Lead Discovery Center (Germany)'),
(72326, 'https://ror.org/04gs0fr60', 'no_lang_code', 1, 'https://ror.org/04gs0fr60 Xenetic Biosciences (United Kingdom)'),
(72327, 'https://ror.org/05jkvk840', 'en', 1, 'https://ror.org/05jkvk840 London Internet Exchange'),
(72328, 'https://ror.org/04knb0h51', 'no_lang_code', 1, 'https://ror.org/04knb0h51 Heidenhain (United Kingdom)'),
(72329, 'https://ror.org/0288rsm64', 'no_lang_code', 1, 'https://ror.org/0288rsm64 Materialise (United Kingdom)'),
(72330, 'https://ror.org/01v7cer31', 'no_lang_code', 1, 'https://ror.org/01v7cer31 McKinsey & Company (United Kingdom)'),
(72331, 'https://ror.org/038h0z436', 'no_lang_code', 1, 'https://ror.org/038h0z436 Mitsubishi Corporation (United Kingdom)'),
(72332, 'https://ror.org/04n96q930', 'no_lang_code', 1, 'https://ror.org/04n96q930 Cardno (United Kingdom)'),
(72333, 'https://ror.org/04p2nj039', 'no_lang_code', 1, 'https://ror.org/04p2nj039 Zynga (United Kingdom)'),
(72334, 'https://ror.org/03nag2598', 'no_lang_code', 1, 'https://ror.org/03nag2598 NGK Insulators (United Kingdom)'),
(72335, 'https://ror.org/01bxzfe12', 'en', 1, 'https://ror.org/01bxzfe12 PROCURE'),
(72336, 'https://ror.org/00mz6cr89', 'en', 1, 'https://ror.org/00mz6cr89 Be Strong, Fight On!'),
(72337, 'https://ror.org/04k4a1317', 'en', 1, 'https://ror.org/04k4a1317 Coalition Against Childhood Cancer'),
(72338, 'https://ror.org/0324t6t86', 'en', 1, 'https://ror.org/0324t6t86 Elaine Roberts Foundation'),
(72339, 'https://ror.org/04b09jz40', 'en', 1, 'https://ror.org/04b09jz40 Noah''s Light Foundation'),
(72340, 'https://ror.org/007e09543', 'en', 1, 'https://ror.org/007e09543 Sammy''s Superheroes'),
(72341, 'https://ror.org/00e06he13', 'en', 1, 'https://ror.org/00e06he13 The Neuroblastoma Children''s Cancer Society'),
(72342, 'https://ror.org/02qjwrc97', 'no_lang_code', 1, 'https://ror.org/02qjwrc97 Northrop Grumman (United Kingdom)'),
(72343, 'https://ror.org/00hfjx819', 'no_lang_code', 1, 'https://ror.org/00hfjx819 OSRAM (United Kingdom)'),
(72344, 'https://ror.org/00ndx3g44', 'en', 1, 'https://ror.org/00ndx3g44 Hamamatsu University School of Medicine ęµœę¾åŒ»ē§‘å¤§å­¦'),
(72345, 'https://ror.org/03nnn1t12', 'no_lang_code', 1, 'https://ror.org/03nnn1t12 Outokumpu (United Kingdom)'),
(72346, 'https://ror.org/0177mph94', 'no_lang_code', 1, 'https://ror.org/0177mph94 New England Biolabs (United Kingdom)'),
(72347, 'https://ror.org/00v1x5b81', 'no_lang_code', 1, 'https://ror.org/00v1x5b81 PTC (United Kingdom)'),
(72348, 'https://ror.org/03d6nx810', 'no_lang_code', 1, 'https://ror.org/03d6nx810 Qorvo (United Kingdom)'),
(72349, 'https://ror.org/00913vr41', 'no_lang_code', 1, 'https://ror.org/00913vr41 Ricardo (India)'),
(72350, 'https://ror.org/05r52vr82', 'no_lang_code', 1, 'https://ror.org/05r52vr82 CACI International (United Kingdom)'),
(72351, 'https://ror.org/02fbp2e31', 'no_lang_code', 1, 'https://ror.org/02fbp2e31 Simworx (United Kingdom)'),
(72352, 'https://ror.org/041y46z19', 'no_lang_code', 1, 'https://ror.org/041y46z19 Richardson Electronics (United Kingdom)'),
(72353, 'https://ror.org/052r73a33', 'no_lang_code', 1, 'https://ror.org/052r73a33 PPG Industries (United Kingdom)'),
(72354, 'https://ror.org/05s9c0w76', 'no_lang_code', 1, 'https://ror.org/05s9c0w76 Semikron (United Kingdom)'),
(72355, 'https://ror.org/02vact186', 'no_lang_code', 1, 'https://ror.org/02vact186 Tobii (United Kingdom)'),
(72356, 'https://ror.org/04xad0v87', 'en', 1, 'https://ror.org/04xad0v87 Hamamatsu Japan Language College'),
(72357, 'https://ror.org/02bjbg379', 'no_lang_code', 1, 'https://ror.org/02bjbg379 Schunk (United Kingdom)'),
(72358, 'https://ror.org/02f3d5q63', 'no_lang_code', 1, 'https://ror.org/02f3d5q63 SMA Solar Technology (United Kingdom)'),
(72359, 'https://ror.org/00xa9v334', 'no_lang_code', 1, 'https://ror.org/00xa9v334 Equinor (United Kingdom)'),
(72360, 'https://ror.org/009wgy438', 'no_lang_code', 1, 'https://ror.org/009wgy438 Shell (Malaysia)'),
(72361, 'https://ror.org/04cap6186', 'en', 1, 'https://ror.org/04cap6186 Phelps Hospital'),
(72362, 'https://ror.org/05v6s8y05', 'en', 1, 'https://ror.org/05v6s8y05 Peconic Bay Medical Center'),
(72363, 'https://ror.org/011yfd550', 'no_lang_code', 1, 'https://ror.org/011yfd550 TerraVerdae BioWorks (United Kingdom)'),
(72364, 'https://ror.org/035g5pd63', 'no_lang_code', 1, 'https://ror.org/035g5pd63 Procomcure Biotech (Austria)'),
(72365, 'https://ror.org/001pxkx91', 'no_lang_code', 1, 'https://ror.org/001pxkx91 Givaudan (Sweden)'),
(72366, 'https://ror.org/00sj01y46', 'de', 1, 'https://ror.org/00sj01y46 Waldrappteam'),
(72367, 'https://ror.org/01xzsbk70', 'en', 1, 'https://ror.org/01xzsbk70 Vienna City Library Wienbibliothek im Rathaus'),
(72368, 'https://ror.org/02qrpm067', 'no_lang_code', 1, 'https://ror.org/02qrpm067 Topcon (United Kingdom)'),
(72369, 'https://ror.org/04w9wz255', 'de', 1, 'https://ror.org/04w9wz255 Zentrum für Erinnerungskultur und Geschichtsforschung'),
(72370, 'https://ror.org/016p2sb76', 'no_lang_code', 1, 'https://ror.org/016p2sb76 Particle Beam Lasers (United States)'),
(72371, 'https://ror.org/03yz4hz41', 'no_lang_code', 1, 'https://ror.org/03yz4hz41 Spectra Solutions (United States)'),
(72372, 'https://ror.org/00e73ws79', 'no_lang_code', 1, 'https://ror.org/00e73ws79 DO'),
(72373, 'https://ror.org/03g4xtf80', 'no_lang_code', 1, 'https://ror.org/03g4xtf80 Abilia (United Kingdom)'),
(72374, 'https://ror.org/04zzqcq74', 'no_lang_code', 1, 'https://ror.org/04zzqcq74 United Parcel Service (United Kingdom)'),
(72375, 'https://ror.org/05nq4je29', 'en', 1, 'https://ror.org/05nq4je29 British Athletics'),
(72376, 'https://ror.org/045j7j567', 'no_lang_code', 1, 'https://ror.org/045j7j567 Michelin (United Kingdom)'),
(72377, 'https://ror.org/01cf59p25', 'en', 1, 'https://ror.org/01cf59p25 Unlimited Potential'),
(72378, 'https://ror.org/033bbb825', 'no_lang_code', 1, 'https://ror.org/033bbb825 WƤrtsilƤ (United Kingdom)'),
(72379, 'https://ror.org/01zww3c78', 'en', 1, 'https://ror.org/01zww3c78 West Ridge Veterinary Practice'),
(72380, 'https://ror.org/02ykkkr84', 'no_lang_code', 1, 'https://ror.org/02ykkkr84 Klƶckner (United Kingdom)'),
(72381, 'https://ror.org/04he9e777', 'no_lang_code', 1, 'https://ror.org/04he9e777 NGK Insulators (Germany)'),
(72382, 'https://ror.org/033g4nk48', 'en', 1, 'https://ror.org/033g4nk48 Write Inspired'),
(72383, 'https://ror.org/02da8wy28', 'no_lang_code', 1, 'https://ror.org/02da8wy28 Energy to Power Solution (United States)'),
(72384, 'https://ror.org/04hjz3e92', 'no_lang_code', 1, 'https://ror.org/04hjz3e92 Glacigen Materials (United States)'),
(72385, 'https://ror.org/00z87ds37', 'no_lang_code', 1, 'https://ror.org/00z87ds37 HAMR Industries (United States)'),
(72386, 'https://ror.org/057htkt44', 'en', 1, 'https://ror.org/057htkt44 American Public Transportation Association'),
(72387, 'https://ror.org/05ccmn542', 'en', 1, 'https://ror.org/05ccmn542 Concrete Reinforcing Steel Institute'),
(72388, 'https://ror.org/03kqvwv81', 'en', 1, 'https://ror.org/03kqvwv81 Cooperative Mobility for Competitive Megaregions'),
(72389, 'https://ror.org/009cfk404', 'en', 1, 'https://ror.org/009cfk404 Electric Vehicle Transportation Center'),
(72390, 'https://ror.org/02mz0pc52', 'no_lang_code', 1, 'https://ror.org/02mz0pc52 Genex Systems (United States)'),
(72391, 'https://ror.org/0497txp66', 'en', 1, 'https://ror.org/0497txp66 Great Lakes Maritime Research Institute'),
(72392, 'https://ror.org/04fnrdj64', 'en', 1, 'https://ror.org/04fnrdj64 Gulf Coast Center for Evacuation and Transportation Resiliency'),
(72393, 'https://ror.org/00q0vag25', 'en', 1, 'https://ror.org/00q0vag25 William and Barbara Leonard Transportation Center'),
(72394, 'https://ror.org/04kkcah82', 'en', 1, 'https://ror.org/04kkcah82 Asphalt Institute'),
(72395, 'https://ror.org/053x1dt55', 'en', 1, 'https://ror.org/053x1dt55 Northeast Gas Association'),
(72396, 'https://ror.org/00cv80m81', 'no_lang_code', 1, 'https://ror.org/00cv80m81 Cambridge Systematics (United States)'),
(72397, 'https://ror.org/0230s3k26', 'en', 1, 'https://ror.org/0230s3k26 METRANS Transportation Center'),
(72398, 'https://ror.org/036vfgp53', 'en', 1, 'https://ror.org/036vfgp53 Preusser Research Group'),
(72399, 'https://ror.org/05sp89c28', 'en', 1, 'https://ror.org/05sp89c28 University Transportation Center for Alabama'),
(72400, 'https://ror.org/04g732g68', 'en', 1, 'https://ror.org/04g732g68 Southern Plains Transportation Center'),
(72401, 'https://ror.org/026t5rk78', 'en', 1, 'https://ror.org/026t5rk78 National Center for Intermodal Transportation'),
(72402, 'https://ror.org/05ac9kx40', 'en', 1, 'https://ror.org/05ac9kx40 National Center for Sustainable Transportation'),
(72403, 'https://ror.org/057aqdv46', 'en', 1, 'https://ror.org/057aqdv46 Center for Reliable Energy Systems'),
(72404, 'https://ror.org/01e2hm815', 'en', 1, 'https://ror.org/01e2hm815 Mid-Atlantic Transportation Sustainability Center'),
(72405, 'https://ror.org/04yd0my20', 'nl', 1, 'https://ror.org/04yd0my20 Stichting Jij Speelt de Hoofdrol'),
(72406, 'https://ror.org/057jjmm55', 'en', 1, 'https://ror.org/057jjmm55 Safer Sim'),
(72407, 'https://ror.org/02wvs7998', 'no_lang_code', 1, 'https://ror.org/02wvs7998 SES Group & Associates (United States)'),
(72408, 'https://ror.org/0229jz197', 'en', 1, 'https://ror.org/0229jz197 Technologies for Safe and Efficient Transportation'),
(72409, 'https://ror.org/05n4bbw51', 'en', 1, 'https://ror.org/05n4bbw51 National Highway Institute'),
(72410, 'https://ror.org/05ccm7722', 'en', 1, 'https://ror.org/05ccm7722 The TAU Institute'),
(72411, 'https://ror.org/04qby6e62', 'en', 1, 'https://ror.org/04qby6e62 Automotive Service Excellence'),
(72412, 'https://ror.org/03pz4a950', 'en', 1, 'https://ror.org/03pz4a950 University Transportation Research Center'),
(72413, 'https://ror.org/00h7cs967', 'en', 1, 'https://ror.org/00h7cs967 Mid-Atlantic University Transportation Center'),
(72414, 'https://ror.org/04xpwnc20', 'en', 1, 'https://ror.org/04xpwnc20 Transportation Learning Center'),
(72415, 'https://ror.org/011fc0n53', 'en', 1, 'https://ror.org/011fc0n53 National Transportation Research Center'),
(72416, 'https://ror.org/04aa0ed69', 'en', 1, 'https://ror.org/04aa0ed69 New England University Transportation Center'),
(72417, 'https://ror.org/04x8thz12', 'en', 1, 'https://ror.org/04x8thz12 University Transportation Center for Mobility'),
(72418, 'https://ror.org/01b8v0r63', 'en', 1, 'https://ror.org/01b8v0r63 Transportation Safety Institute'),
(72419, 'https://ror.org/0232kgx22', 'en', 1, 'https://ror.org/0232kgx22 Transportation Research Center for Livable Communities'),
(72420, 'https://ror.org/012pd4b91', 'en', 1, 'https://ror.org/012pd4b91 Western Transportation Institute'),
(72421, 'https://ror.org/05tgbdb80', 'en', 1, 'https://ror.org/05tgbdb80 American Trucking Associations'),
(72422, 'https://ror.org/02c7r5h24', 'no_lang_code', 1, 'https://ror.org/02c7r5h24 Sen-oku HakukoKan Museum ę³‰å±‹åšå¤é¤Ø'),
(72423, 'https://ror.org/05rxe5g18', 'en', 1, 'https://ror.org/05rxe5g18 Hokkaido Chitose College of Rehabilitation åŒ—ęµ·é“åƒę­³ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å¤§å­¦'),
(72424, 'https://ror.org/03pgcsa90', 'no_lang_code', 1, 'https://ror.org/03pgcsa90 Tobishima (Japan) 飛島建設'),
(72425, 'https://ror.org/010b0td06', 'en', 1, 'https://ror.org/010b0td06 Komatsu University å…¬ē«‹å°ę¾å¤§å­¦'),
(72426, 'https://ror.org/030z2kw43', 'en', 1, 'https://ror.org/030z2kw43 Museum of Natural and Environmental History, Shizuoka ćµć˜ć®ćć«åœ°ēƒē’°å¢ƒå²ćƒŸćƒ„ćƒ¼ć‚øć‚¢ćƒ '),
(72427, 'https://ror.org/00hanm733', 'en', 1, 'https://ror.org/00hanm733 Kyoto Prefectural Library and Archives äŗ¬éƒ½åŗœē«‹ē·åˆč³‡ę–™é¤Ø'),
(72428, 'https://ror.org/00bdxyz12', 'en', 1, 'https://ror.org/00bdxyz12 Hokkaido Arisu High School åŒ—ęµ·é“ęœ‰ę –é«˜ę ”'),
(72429, 'https://ror.org/03s52tj69', 'en', 1, 'https://ror.org/03s52tj69 Saitama Prefectural Kasukabe Special Support School åŸ¼ēŽ‰ēœŒē«‹ę˜„ę—„éƒØé¤Šč­·å­¦ę ”'),
(72430, 'https://ror.org/049bsvy30', 'en', 1, 'https://ror.org/049bsvy30 Oita Prefectural Hida Forest Engineering High School å¤§åˆ†ēœŒē«‹ę—„ē”°ęž—å·„é«˜'),
(72431, 'https://ror.org/05ceyw104', 'en', 1, 'https://ror.org/05ceyw104 Gifu Prefectural Gifu Kita Senior High School å²é˜œēœŒå²é˜œåŒ—é«˜'),
(72432, 'https://ror.org/03jqeq923', 'en', 1, 'https://ror.org/03jqeq923 Shonan University of Medical Sciences ę¹˜å—åŒ»ē™‚å¤§å­¦'),
(72433, 'https://ror.org/02cgf6x90', 'no_lang_code', 1, 'https://ror.org/02cgf6x90 Okayama Prefecture å²”å±±ēœŒč¾²ęž—ę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼ē”Ÿē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(72434, 'https://ror.org/0487zkp40', 'en', 1, 'https://ror.org/0487zkp40 Chiba Prefecture Cultural Property Center čŖåƒč‘‰ēœŒę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(72435, 'https://ror.org/00rat0g20', 'en', 1, 'https://ror.org/00rat0g20 Amanosan Cultural Heritages Research Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗ å¤©é‡Žå±±ę–‡åŒ–éŗē”£ē ”ē©¶ę‰€'),
(72436, 'https://ror.org/04yty3z13', 'en', 1, 'https://ror.org/04yty3z13 Japan Association for Fire Science and Engineering ę—„ęœ¬ē«ē½å­¦ä¼š'),
(72437, 'https://ror.org/03th12q46', 'en', 1, 'https://ror.org/03th12q46 Niigata Agro-Food University ę–°ę½Ÿé£Ÿę–™č¾²ę„­å¤§å­¦'),
(72438, 'https://ror.org/02qbfgp41', 'en', 1, 'https://ror.org/02qbfgp41 MOA Museum of Art MOAē¾Žč”“é¤Ø'),
(72439, 'https://ror.org/04m128g34', 'en', 1, 'https://ror.org/04m128g34 ECC Kokusai College of Foreign Languages ECCå›½éš›å¤–čŖžå°‚é–€å­¦ę ”'),
(72440, 'https://ror.org/04mabxa71', 'en', 1, 'https://ror.org/04mabxa71 NPO Net work for Shizuoka Prefecture Museum of Natural History é™å²”ēœŒč‡Ŗē„¶å²åšē‰©é¤ØćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(72441, 'https://ror.org/006kn8y54', 'en', 1, 'https://ror.org/006kn8y54 Kyoto City Archaeological Research Institute äŗ¬éƒ½åø‚č€ƒå¤č³‡ę–™é¤Ø'),
(72442, 'https://ror.org/02ycdjn07', 'en', 1, 'https://ror.org/02ycdjn07 Foundation Yamanashi Cultural Property Research Institute å±±ę¢Øę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(72443, 'https://ror.org/05fe0wm97', 'en', 1, 'https://ror.org/05fe0wm97 Rehabilitation College Shimane ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚«ćƒ¬ćƒƒć‚øå³¶ę ¹'),
(72444, 'https://ror.org/0342c0q79', 'en', 1, 'https://ror.org/0342c0q79 Shiga Prefecture Cultural Property Protection Association å…¬ē›Šč²”å›£ę³•äŗŗę»‹č³€ēœŒę–‡åŒ–č²”äæč­·å”ä¼š'),
(72445, 'https://ror.org/01ezwtn57', 'en', 1, 'https://ror.org/01ezwtn57 The Institution of Environmental Sciences'),
(72446, 'https://ror.org/03xd96m45', 'en', 1, 'https://ror.org/03xd96m45 Shikoku Central Hospital of the Mutual Aid Association of Public School Teachers å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆå››å›½äø­å¤®ē—…é™¢ć€ę„›åŖ›ēœŒć€ę—„ęœ¬'),
(72447, 'https://ror.org/00n20v437', 'en', 1, 'https://ror.org/00n20v437 Kochi Prefecture Archaeological Center é«˜ēŸ„ēœŒē«‹åŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(72448, 'https://ror.org/03knb5g53', 'en', 1, 'https://ror.org/03knb5g53 Institute of Environmental Rehabilitation and Conservation ē’°å¢ƒäæ®å¾©äæå…Øę©Ÿę§‹'),
(72449, 'https://ror.org/02eqnz251', 'en', 1, 'https://ror.org/02eqnz251 International Rescue System å›½éš›ćƒ¬ć‚¹ć‚­ćƒ„ćƒ¼ć‚·ć‚¹ćƒ†ćƒ '),
(72450, 'https://ror.org/01fhyd561', 'en', 1, 'https://ror.org/01fhyd561 Kyoto College of Economics 京都経済短期大学'),
(72451, 'https://ror.org/006s82919', 'no_lang_code', 1, 'https://ror.org/006s82919 Shishikari Sand Dune Museum ć„ć—ć‹ć‚Šē ‚äø˜ć®é¢Øč³‡ę–™é¤Ø'),
(72452, 'https://ror.org/02fpaqw26', 'en', 1, 'https://ror.org/02fpaqw26 Nagoya Future Culture College åå¤å±‹ęœŖę„ę–‡åŒ–å°‚é–€å­¦ę ”'),
(72453, 'https://ror.org/0555yfc83', 'en', 1, 'https://ror.org/0555yfc83 Epson Information Technology College ć‚Øćƒ—ć‚½ćƒ³ęƒ…å ±ē§‘å­¦å°‚é–€å­¦ę ”'),
(72454, 'https://ror.org/040xmsv41', 'no_lang_code', 1, 'https://ror.org/040xmsv41 Ibarakihigashi National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹čŒØåŸŽę±ē—…é™¢'),
(72455, 'https://ror.org/04b5cmy23', 'en', 1, 'https://ror.org/04b5cmy23 Chubu University Daiichi High School äø­éƒØå¤§å­¦ē¬¬äø€é«˜ē­‰å­¦ę ”'),
(72456, 'https://ror.org/039kky066', 'en', 1, 'https://ror.org/039kky066 Mie Chuo Medical Center äø‰é‡äø­å¤®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(72457, 'https://ror.org/05w2yhn64', 'en', 1, 'https://ror.org/05w2yhn64 Farmers Education Association Kashiwa Gakuen Agricultural Nutrition College éÆ‰ę·µå­¦åœ’č¾²ę„­ę „é¤Šå°‚é–€å­¦ę ”'),
(72458, 'https://ror.org/03y6p7b93', 'en', 1, 'https://ror.org/03y6p7b93 National Institute on Consumer Education ę¶ˆč²»č€…ę•™č‚²ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(72459, 'https://ror.org/03vyrmv17', 'no_lang_code', 1, 'https://ror.org/03vyrmv17 Ochanomizu University Kindergarten ćŠčŒ¶ć®ę°“å„³å­å¤§å­¦é™„å±žå¹¼ēØšåœ’'),
(72460, 'https://ror.org/04hsrr018', 'en', 1, 'https://ror.org/04hsrr018 Aichi Mizuho Junior College ę„›ēŸ„ćæćšć»ēŸ­ęœŸå¤§å­¦'),
(72461, 'https://ror.org/03r2hsf25', 'en', 1, 'https://ror.org/03r2hsf25 Asia Pacific Institute of Research äø€čˆ¬č²”å›£ę³•äŗŗ アジア太平擋研究所'),
(72462, 'https://ror.org/019z90y68', 'en', 1, 'https://ror.org/019z90y68 Children''s Play School Citizen Stage é‡§č·Æåø‚ć“ć©ć‚‚éŠå­¦é¤Ø'),
(72463, 'https://ror.org/02fxhgq54', 'en', 1, 'https://ror.org/02fxhgq54 East Riding of Yorkshire Council'),
(72464, 'https://ror.org/04ztf1t13', 'en', 1, 'https://ror.org/04ztf1t13 Institute Of Psychomedical Education For Children And Adults ćƒšćƒƒć‚Æē ”ē©¶ę‰€'),
(72465, 'https://ror.org/052scad51', 'no_lang_code', 1, 'https://ror.org/052scad51 Kurayoshi Museum å€‰å‰åšē‰©é¤Ø'),
(72466, 'https://ror.org/05g920a69', 'en', 1, 'https://ror.org/05g920a69 Hachinohe Kodai2 High School å…«ęˆøå·„ę„­å¤§å­¦ē¬¬äŗŒé«˜ē­‰å­¦ę ”'),
(72467, 'https://ror.org/00s653v54', 'en', 1, 'https://ror.org/00s653v54 Misato Observatory ćæć•ćØå¤©ę–‡å°'),
(72468, 'https://ror.org/004q1hy63', 'en', 1, 'https://ror.org/004q1hy63 Yamanashi Research Institute å…¬ē›Šč²”å›£ę³•äŗŗ å±±ę¢Øē·åˆē ”ē©¶ę‰€'),
(72469, 'https://ror.org/02qatsn60', 'en', 1, 'https://ror.org/02qatsn60 Itami City Museum ä¼Šäø¹åø‚ē«‹åšē‰©é¤Ø'),
(72470, 'https://ror.org/027zp7q69', 'en', 1, 'https://ror.org/027zp7q69 Kagoshima City Aquarium Foundation å…¬ē›Šč²”å›£ę³•äŗŗ é¹æå…å³¶åø‚ę°“ę—é¤Øå…¬ē¤¾'),
(72471, 'https://ror.org/0483am868', 'en', 1, 'https://ror.org/0483am868 Public interest incorporated foundation Keep Association å…¬ē›Šč²”å›£ę³•äŗŗć‚­ćƒ¼ćƒ—å”ä¼š'),
(72472, 'https://ror.org/05a8zr135', 'en', 1, 'https://ror.org/05a8zr135 Koto Cultural Community Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ę±Ÿę±åŒŗę–‡åŒ–ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£č²”å›£'),
(72473, 'https://ror.org/02a82mh07', 'en', 1, 'https://ror.org/02a82mh07 Middle East Institute of Japan å…¬ē›Šč²”å›£ę³•äŗŗ äø­ę±čŖæęŸ»ä¼š'),
(72474, 'https://ror.org/04ht09065', 'en', 1, 'https://ror.org/04ht09065 Idemitsu Museum Of Arts å‡ŗå…‰ē¾Žč”“é¤Ø'),
(72475, 'https://ror.org/04zaxn180', 'en', 1, 'https://ror.org/04zaxn180 Sendai Vocational College of Health and Welfare ä»™å°åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(72476, 'https://ror.org/04ga2h843', 'en', 1, 'https://ror.org/04ga2h843 Izumo Science Center 出雲科学館'),
(72477, 'https://ror.org/04x60sx56', 'en', 1, 'https://ror.org/04x60sx56 Hokkaido Environment Foundation å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“ē’°å¢ƒč²”å›£'),
(72478, 'https://ror.org/01a8dsa88', 'en', 1, 'https://ror.org/01a8dsa88 Hakodate Clinical Welfare College å‡½é¤Øč‡ØåŗŠē¦ē„‰å°‚é–€å­¦ę ”'),
(72479, 'https://ror.org/0525agk59', 'en', 1, 'https://ror.org/0525agk59 Cyber Campus Consortium TIES'),
(72480, 'https://ror.org/04yegz493', 'en', 1, 'https://ror.org/04yegz493 The Cattle Museum ē‰›ć®åšē‰©é¤Ø'),
(72481, 'https://ror.org/02prk5459', 'en', 1, 'https://ror.org/02prk5459 Saga Prefectural Museum ä½č³€ēœŒē«‹åšē‰©é¤Ø'),
(72482, 'https://ror.org/03xw8ff71', 'no_lang_code', 1, 'https://ror.org/03xw8ff71 Tokiwa Park ćØćć‚å‹•ē‰©åœ’');
INSERT INTO `rors` VALUES
(72483, 'https://ror.org/04qbg1g88', 'en', 1, 'https://ror.org/04qbg1g88 Saga Prefectural Police ä½č³€ēœŒč­¦åÆŸęœ¬éƒØ'),
(72484, 'https://ror.org/05x27ng08', 'no_lang_code', 1, 'https://ror.org/05x27ng08 Tsurugi Hospital å…¬ē«‹ć¤ć‚‹ćŽē—…é™¢'),
(72485, 'https://ror.org/03dzz0y33', 'en', 1, 'https://ror.org/03dzz0y33 Shinshu Medical and Welfare College äæ”å·žåŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(72486, 'https://ror.org/033m0cw03', 'en', 1, 'https://ror.org/033m0cw03 Hyogo Prefectural Institute for Educational Research and In-Service Training å…µåŗ«ēœŒē«‹ę•™č‚²ē ”äæ®ę‰€'),
(72487, 'https://ror.org/01n7e3q98', 'en', 1, 'https://ror.org/01n7e3q98 Chiba Prefectural Center Museum Otone Branch åƒč‘‰ēœŒē«‹äø­å¤®åšē‰©é¤Ø å¤§åˆ©ę ¹åˆ†é¤Ø'),
(72488, 'https://ror.org/006zxtd57', 'no_lang_code', 1, 'https://ror.org/006zxtd57 Boso no Mura åƒč‘‰ēœŒē«‹ęˆæē·ć®ć‚€ć‚‰'),
(72489, 'https://ror.org/03d873a26', 'en', 1, 'https://ror.org/03d873a26 Medical Business College åŒ»ē™‚ćƒ“ć‚øćƒć‚¹å°‚é–€å­¦ę ”'),
(72490, 'https://ror.org/05p6jx952', 'en', 1, 'https://ror.org/05p6jx952 Kishokai Medical Corporation åŒ»ē™‚ę³•äŗŗ č‘µé˜ä¼š'),
(72491, 'https://ror.org/04jdmkw08', 'no_lang_code', 1, 'https://ror.org/04jdmkw08 Kaseda Folklore Museum å—ć•ć¤ć¾åø‚ åŠ äø–ē”°éƒ·åœŸč³‡ę–™é¤Ø'),
(72492, 'https://ror.org/020sb4167', 'en', 1, 'https://ror.org/020sb4167 Environmental Construction College åå¤å±‹ē’°å¢ƒå»ŗčØ­å°‚é–€å­¦ę ”'),
(72493, 'https://ror.org/05b6t0e74', 'en', 1, 'https://ror.org/05b6t0e74 Hokkaido Prefectual Police åŒ—ęµ·é“č­¦åÆŸ'),
(72494, 'https://ror.org/01rmj8z79', 'en', 1, 'https://ror.org/01rmj8z79 Kitami Industrial Technology Center åŒ—č¦‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(72495, 'https://ror.org/01rx40j51', 'no_lang_code', 1, 'https://ror.org/01rx40j51 Muko City Cultural Museum å‘ę—„åø‚ę–‡åŒ–č³‡ę–™é¤Ø'),
(72496, 'https://ror.org/04dp5s194', 'en', 1, 'https://ror.org/04dp5s194 Wakayama Department of Agriculture, Forestry and Fisheries å’Œę­Œå±±ēœŒč¾²ęž—ę°“ē”£éƒØ'),
(72497, 'https://ror.org/00ssr7512', 'en', 1, 'https://ror.org/00ssr7512 Shikoku Central Medical Welfare Institute å››å›½äø­å¤®åŒ»ē™‚ē¦ē„‰ē·åˆå­¦é™¢'),
(72498, 'https://ror.org/04xc1rd71', 'no_lang_code', 1, 'https://ror.org/04xc1rd71 Yotsuya Medical Cube åŒ»ē™‚ę³•äŗŗē¤¾å›£ć‚ć‚“ć—ć‚“ä¼šå››č°·ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚­ćƒ„ćƒ¼ćƒ–'),
(72499, 'https://ror.org/05sz2c943', 'en', 1, 'https://ror.org/05sz2c943 Chiba Environment Foundation åƒč‘‰ēœŒē’°å¢ƒč²”å›£'),
(72500, 'https://ror.org/03z6ebp81', 'en', 1, 'https://ror.org/03z6ebp81 Ageo Nursing College äøŠå°¾ēœ‹č­·å°‚é–€å­¦ę ”'),
(72501, 'https://ror.org/01k3cnb05', 'no_lang_code', 1, 'https://ror.org/01k3cnb05 Kamiichi General Hospital ć‹ćæć„ć”ē·åˆē—…é™¢'),
(72502, 'https://ror.org/03g886m74', 'en', 1, 'https://ror.org/03g886m74 Saitama Prefectural Police åŸ¼ēŽ‰ēœŒč­¦åÆŸ'),
(72503, 'https://ror.org/03jwhs418', 'no_lang_code', 1, 'https://ror.org/03jwhs418 Grail (United States)'),
(72504, 'https://ror.org/0535jaz61', 'en', 1, 'https://ror.org/0535jaz61 National College Of Nursing å›½ē«‹ēœ‹č­·å¤§å­¦ę ”'),
(72505, 'https://ror.org/038xt6s70', 'en', 1, 'https://ror.org/038xt6s70 International Medical And Welfare College å›½éš›åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(72506, 'https://ror.org/04shejr14', 'en', 1, 'https://ror.org/04shejr14 The Historical Museum of Jomon Village Oku-Matsushima å„„ę¾å³¶ēø„ę–‡ę‘ę­“å²č³‡ę–™é¤Ø'),
(72507, 'https://ror.org/01scdrj09', 'en', 1, 'https://ror.org/01scdrj09 International Medical And Welfare College Nanao School å›½éš›åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”äøƒå°¾ę ”'),
(72508, 'https://ror.org/044pe8918', 'en', 1, 'https://ror.org/044pe8918 Otsu City Museum Of History å¤§ę“„åø‚ę­“å²åšē‰©é¤Ø'),
(72509, 'https://ror.org/04teget82', 'en', 1, 'https://ror.org/04teget82 The Osaka YWCA å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗļ¼¹ļ¼·ļ¼£ļ¼”'),
(72510, 'https://ror.org/02cemsw67', 'en', 1, 'https://ror.org/02cemsw67 Miyazaki Prefectural Library å®®å“ŽēœŒē«‹å›³ę›øé¤Ø'),
(72511, 'https://ror.org/00e9z4164', 'en', 1, 'https://ror.org/00e9z4164 Miyazaki Prefectural Art Museum å®®å“ŽēœŒē«‹ē¾Žč”“é¤Ø'),
(72512, 'https://ror.org/045852a14', 'no_lang_code', 1, 'https://ror.org/045852a14 Yamagata Prefectural Shinjo Hospital å±±å½¢ēœŒē«‹ę–°åŗ„ē—…é™¢'),
(72513, 'https://ror.org/02863ez16', 'en', 1, 'https://ror.org/02863ez16 Toyama Science Museum åÆŒå±±åø‚ē§‘å­¦åšē‰©é¤Ø'),
(72514, 'https://ror.org/02qwqem55', 'no_lang_code', 1, 'https://ror.org/02qwqem55 Hanazono Hospital čŠ±åœ’ē—…é™¢'),
(72515, 'https://ror.org/02nymy567', 'no_lang_code', 1, 'https://ror.org/02nymy567 Sapporo Minami Hospital ęœ­å¹Œå—ē—…é™¢'),
(72516, 'https://ror.org/056mjwa25', 'en', 1, 'https://ror.org/056mjwa25 Senshu University Kitakami welfare education technical school å°‚äæ®å¤§å­¦åŒ—äøŠē¦ē„‰ę•™č‚²å°‚é–€å­¦ę ”'),
(72517, 'https://ror.org/033gwzy17', 'en', 1, 'https://ror.org/033gwzy17 Miyagi Prefectural Research Institute of The Tagajo site å®®åŸŽēœŒå¤šč³€åŸŽč·”čŖæęŸ»ē ”ē©¶ę‰€'),
(72518, 'https://ror.org/03jrtp196', 'en', 1, 'https://ror.org/03jrtp196 Miyazaki Welfare Medical College å®®å“Žē¦ē„‰åŒ»ē™‚ć‚«ćƒ¬ćƒƒć‚ø'),
(72519, 'https://ror.org/056v6fd94', 'en', 1, 'https://ror.org/056v6fd94 Yamaguchi Prefectural Police å±±å£ēœŒč­¦åÆŸ'),
(72520, 'https://ror.org/042ag0556', 'en', 1, 'https://ror.org/042ag0556 Ehime Institute of Industrial Technology Paper Technology Center ę„›åŖ›ēœŒē”£ę„­ęŠ€č”“ē ”ē©¶ę‰€ ē“™ē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(72521, 'https://ror.org/03bd22t26', 'en', 1, 'https://ror.org/03bd22t26 Higashihiroshima Medical Center ę±åŗƒå³¶åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(72522, 'https://ror.org/01t2dy869', 'en', 1, 'https://ror.org/01t2dy869 Chiba City Lifelong Learning Center åƒč‘‰åø‚ ē”Ÿę¶Æå­¦ēæ’ć‚»ćƒ³ć‚æćƒ¼'),
(72523, 'https://ror.org/03hsr7383', 'en', 1, 'https://ror.org/03hsr7383 Fukuoka Higashi Medical Center ē¦å²”ę±åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(72524, 'https://ror.org/037dety09', 'en', 1, 'https://ror.org/037dety09 Okayama City Library 岔山市図書館'),
(72525, 'https://ror.org/04h8v0y52', 'en', 1, 'https://ror.org/04h8v0y52 Okayama University of Commerce Attached high School å²”å±±å•†ē§‘å¤§å­¦é™„å±žé«˜ē­‰å­¦ę ”'),
(72526, 'https://ror.org/01h3j3f09', 'no_lang_code', 1, 'https://ror.org/01h3j3f09 Mifune Dinosaur Museum å¾”čˆ¹ē”ŗęē«œåšē‰©é¤Ø'),
(72527, 'https://ror.org/05mmfy776', 'no_lang_code', 1, 'https://ror.org/05mmfy776 Tokushima Municipal Hospital 徳島市民病院'),
(72528, 'https://ror.org/02pdkr951', 'en', 1, 'https://ror.org/02pdkr951 The Tokugawa Institute for the History of Forestry å…¬ē›Šč²”å›£ę³•äŗŗå¾³å·é»Žę˜Žä¼š'),
(72529, 'https://ror.org/03ws8tc44', 'no_lang_code', 1, 'https://ror.org/03ws8tc44 Keiyu Orthopedic Hospital ę…¶å‹ę•“å½¢å¤–ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(72530, 'https://ror.org/03mhrjr30', 'en', 1, 'https://ror.org/03mhrjr30 Hiroshima Prefectural Library åŗƒå³¶ēœŒē«‹å›³ę›øé¤Ø'),
(72531, 'https://ror.org/035sr5g64', 'en', 1, 'https://ror.org/035sr5g64 Bunkyo Furusato History Museum ę–‡äŗ¬ćµć‚‹ć•ćØę­“å²é¤Ø'),
(72532, 'https://ror.org/01433fv30', 'en', 1, 'https://ror.org/01433fv30 Bunka Gakuen Nagano Technical College ę–‡åŒ–å­¦åœ’é•·é‡Žäæč‚²å°‚é–€å­¦ę ”'),
(72533, 'https://ror.org/05crg2f28', 'en', 1, 'https://ror.org/05crg2f28 Niigata Prefectural Library ę–°ę½ŸēœŒē«‹å›³ę›øé¤Ø'),
(72534, 'https://ror.org/01aa5rh15', 'en', 1, 'https://ror.org/01aa5rh15 Institute of Traditional Japanese Architecture ę—„ęœ¬å»ŗēÆ‰å°‚é–€å­¦ę ”'),
(72535, 'https://ror.org/03y6bke35', 'en', 1, 'https://ror.org/03y6bke35 Osaka Animal Plant & Ocean College å¤§é˜Ŗå‹•ę¤ē‰©ęµ·ę“‹å°‚é–€å­¦ę ”'),
(72536, 'https://ror.org/05gz1cs28', 'en', 1, 'https://ror.org/05gz1cs28 The Talent Development Education Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ę‰čƒ½é–‹ē™ŗę•™č‚²ē ”ē©¶č²”å›£'),
(72537, 'https://ror.org/01pet0423', 'en', 1, 'https://ror.org/01pet0423 Otemae College of Nutrition å¤§ę‰‹å‰ę „é¤Šå¤§å­¦'),
(72538, 'https://ror.org/024hvm870', 'en', 1, 'https://ror.org/024hvm870 Japan Electronics College ę—„ęœ¬é›»å­å°‚é–€å­¦ę ”'),
(72539, 'https://ror.org/02qmk8t53', 'en', 1, 'https://ror.org/02qmk8t53 Mirai Hospital 会 みらい病院'),
(72540, 'https://ror.org/043gj6932', 'en', 1, 'https://ror.org/043gj6932 Tokyo Technical College ę±äŗ¬ćƒ†ć‚Æćƒ‹ć‚«ćƒ«ć‚«ćƒ¬ćƒƒć‚ø'),
(72541, 'https://ror.org/006763s03', 'en', 1, 'https://ror.org/006763s03 Nemuro Education Institute 根室教育研究所'),
(72542, 'https://ror.org/04s40s883', 'no_lang_code', 1, 'https://ror.org/04s40s883 Toshima Hospital ę±äŗ¬éƒ½äæå„åŒ»ē™‚å…¬ē¤¾ č±Šå³¶ē—…é™¢'),
(72543, 'https://ror.org/0023wb355', 'en', 1, 'https://ror.org/0023wb355 Higashitagawa Culture Memorial Hall ę±ē”°å·ę–‡åŒ–čØ˜åæµé¤Ø'),
(72544, 'https://ror.org/04jbbs672', 'en', 1, 'https://ror.org/04jbbs672 Tokyo Metropolitan Foundation for History and Culture å…¬ē›Šč²”å›£ę³•äŗŗ ę±äŗ¬éƒ½ę­“å²ę–‡åŒ–č²”å›£'),
(72545, 'https://ror.org/03vyfg679', 'en', 1, 'https://ror.org/03vyfg679 Matsumoto City Hospital ę¾ęœ¬åø‚ē«‹ē—…é™¢'),
(72546, 'https://ror.org/009hj6r06', 'en', 1, 'https://ror.org/009hj6r06 Matsue History Museum ę¾ę±Ÿę­“å²åšē‰©é¤Ø'),
(72547, 'https://ror.org/02en3wr74', 'no_lang_code', 1, 'https://ror.org/02en3wr74 MitsukaidoKosei Hospital ę°“ęµ·é“åŽšē”Ÿē—…é™¢'),
(72548, 'https://ror.org/033kdaz63', 'en', 1, 'https://ror.org/033kdaz63 Himi City Library 氷見市立図書館'),
(72549, 'https://ror.org/02kgc0f98', 'en', 1, 'https://ror.org/02kgc0f98 Oyama City Museum å°å±±åø‚åšē‰©é¤Ø'),
(72550, 'https://ror.org/0182aka86', 'en', 1, 'https://ror.org/0182aka86 Tochigi Prefectural Police 栃木県警察'),
(72551, 'https://ror.org/03djxm153', 'no_lang_code', 1, 'https://ror.org/03djxm153 EDOSEN ę±Ÿęˆøå·å­¦åœ’ćŠćŠćŸć‹ć®ę£®å°‚é–€å­¦ę ”'),
(72552, 'https://ror.org/02zvd3556', 'en', 1, 'https://ror.org/02zvd3556 Okinawa Academy College ę²–ēø„ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼å°‚é–€å­¦ę ”'),
(72553, 'https://ror.org/045b7dz91', 'no_lang_code', 1, 'https://ror.org/045b7dz91 Echigo Matsunoyama Forest School Kiroro č¶Šå¾Œę¾ä¹‹å±±ć€Œę£®ć®å­¦ę ”ć€ć‚­ćƒ§ćƒ­ćƒ­'),
(72554, 'https://ror.org/04817hq10', 'en', 1, 'https://ror.org/04817hq10 Okinawa Prefecture ę²–ēø„ēœŒå…¬å®³č”›ē”Ÿē ”ē©¶ę‰€'),
(72555, 'https://ror.org/00c782c94', 'no_lang_code', 1, 'https://ror.org/00c782c94 Mitsubishi UFJ Research & Consulting (Japan) äø‰č±UFJćƒŖć‚µćƒ¼ćƒ&ć‚³ćƒ³ć‚µćƒ«ćƒ†ć‚£ćƒ³ć‚°'),
(72556, 'https://ror.org/01bxmvw18', 'en', 1, 'https://ror.org/01bxmvw18 Hebei Rehabilitation Hospital ę²³åŒ—ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(72557, 'https://ror.org/05t1nj016', 'no_lang_code', 1, 'https://ror.org/05t1nj016 Institute of Nutrition and Pathology (Japan) ę „é¤Šē—…ē†ē ”ē©¶ę‰€'),
(72558, 'https://ror.org/00fzf1h89', 'en', 1, 'https://ror.org/00fzf1h89 HOSEI Daini Junior and Senior High School ę³•ę”æå¤§å­¦ē¬¬äŗŒäø­'),
(72559, 'https://ror.org/01sqm5e44', 'no_lang_code', 1, 'https://ror.org/01sqm5e44 Shin Nippon Biomedical Laboratories (Japan) ę–°ę—„ęœ¬ćƒć‚¤ć‚Ŗćƒ”ćƒ‡ć‚£ć‚«ćƒ«ē ”ē©¶ę‰€'),
(72560, 'https://ror.org/020qrc968', 'en', 1, 'https://ror.org/020qrc968 The Shoto Museum of Art ęø‹č°·åŒŗē«‹ę¾ę¶›ē¾Žč”“é¤Ø'),
(72561, 'https://ror.org/029pnek19', 'no_lang_code', 1, 'https://ror.org/029pnek19 Institute for Rheumatic Diseases (Japan) ę Ŗå¼ä¼šē¤¾č† åŽŸē—…ē ”ē©¶ę‰€'),
(72562, 'https://ror.org/00xscwy84', 'en', 1, 'https://ror.org/00xscwy84 Shiga Prefectural Higashi Otsu High School ę»‹č³€ēœŒē«‹ę±å¤§ę“„é«˜'),
(72563, 'https://ror.org/04jafar77', 'en', 1, 'https://ror.org/04jafar77 Independent Administrative Agency National Museum of Art ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē¾Žč”“é¤Ø'),
(72564, 'https://ror.org/00e42m728', 'en', 1, 'https://ror.org/00e42m728 Kumamoto Prefectural Museum Network Center ē†Šęœ¬ēœŒåšē‰©é¤ØćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æć‚»ćƒ³ć‚æćƒ¼'),
(72565, 'https://ror.org/016nv1t74', 'en', 1, 'https://ror.org/016nv1t74 Kumamoto Prefectural College of Technology ē†Šęœ¬ēœŒē«‹ęŠ€č”“ēŸ­ęœŸå¤§å­¦ę ”'),
(72566, 'https://ror.org/0226qmh36', 'en', 1, 'https://ror.org/0226qmh36 Ishigaki City Library ēŸ³åž£åø‚ē«‹å›³ę›øé¤Ø'),
(72567, 'https://ror.org/041ajqr07', 'en', 1, 'https://ror.org/041ajqr07 Ishikawa Prefectural Library ēŸ³å·ēœŒē«‹å›³ę›øé¤Ø'),
(72568, 'https://ror.org/006mz4f81', 'en', 1, 'https://ror.org/006mz4f81 Ishikawa Prefectural Museum of History ēŸ³å·ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(72569, 'https://ror.org/01w82kb82', 'en', 1, 'https://ror.org/01w82kb82 Tamano General Medical College ēŽ‰é‡Žē·åˆåŒ»ē™‚å°‚å•å­¦ę ”'),
(72570, 'https://ror.org/011nerd04', 'no_lang_code', 1, 'https://ror.org/011nerd04 Kisarazu Hospital ęœØę›“ę“„ē—…é™¢'),
(72571, 'https://ror.org/05xkjsd30', 'no_lang_code', 1, 'https://ror.org/05xkjsd30 Nadogaya Hospital åęˆøćƒ¶č°·ē—…é™¢'),
(72572, 'https://ror.org/035zer135', 'no_lang_code', 1, 'https://ror.org/035zer135 Fukuoka City Museum ē¦å²”åø‚åšē‰©é¤Ø'),
(72573, 'https://ror.org/03z692463', 'en', 1, 'https://ror.org/03z692463 National Tax College ēØŽå‹™å¤§å­¦ę ”'),
(72574, 'https://ror.org/00e2xjp58', 'en', 1, 'https://ror.org/00e2xjp58 Anabuki Design College ē©“å¹ćƒ‡ć‚¶ć‚¤ćƒ³å°‚é–€å­¦ę ”'),
(72575, 'https://ror.org/00qr9qz34', 'en', 1, 'https://ror.org/00qr9qz34 Gamagori City Marine Science Museum č’²éƒ”åø‚ē”Ÿå‘½ć®ęµ·ē§‘å­¦é¤Ø'),
(72576, 'https://ror.org/04m7bm997', 'no_lang_code', 1, 'https://ror.org/04m7bm997 Arca (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ć‚«'),
(72577, 'https://ror.org/04zae5q03', 'en', 1, 'https://ror.org/04zae5q03 The Dainippon Silk Foundation 貔団法人 å¤§ę—„ęœ¬čš•ē³øä¼š'),
(72578, 'https://ror.org/02pnmfn82', 'en', 1, 'https://ror.org/02pnmfn82 Kanagawa Archeology Foundation ć‹ćŖćŒć‚č€ƒå¤å­¦č²”å›£'),
(72579, 'https://ror.org/056h7qt40', 'no_lang_code', 1, 'https://ror.org/056h7qt40 Hotoku Museum č²”å›£ę³•äŗŗå ±å¾³ē¦é‹ē¤¾'),
(72580, 'https://ror.org/00ged3985', 'en', 1, 'https://ror.org/00ged3985 Mieko Fuji Contemporary Dance School & Company åÆŒå£«ē¾Žęžå­ć‚³ćƒ³ćƒ†ćƒ³ćƒćƒ©ćƒŖćƒ¼ćƒ€ćƒ³ć‚¹ć‚¹ć‚Æćƒ¼ćƒ«ļ¼†ć‚«ćƒ³ćƒ‘ćƒ‹ćƒ¼'),
(72581, 'https://ror.org/0441nm020', 'en', 1, 'https://ror.org/0441nm020 Iwate Cultural Promotion agency č²”å›£ę³•äŗŗå²©ę‰‹ēœŒę–‡åŒ–ęŒÆčˆˆäŗ‹ę„­'),
(72582, 'https://ror.org/00abset84', 'en', 1, 'https://ror.org/00abset84 Art College kobe ć‚¢ćƒ¼ćƒˆć‚«ćƒ¬ćƒƒć‚øē„žęˆø'),
(72583, 'https://ror.org/0364rgm75', 'en', 1, 'https://ror.org/0364rgm75 Yomiuri Science and Technology College čŖ­å£²ē†å·„åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(72584, 'https://ror.org/01peek834', 'en', 1, 'https://ror.org/01peek834 National Art Institute č²”å›£ę³•äŗŗę°‘ę—čŠøč”“ē ”ē©¶ę‰€'),
(72585, 'https://ror.org/01t40ej06', 'en', 1, 'https://ror.org/01t40ej06 Toyota City Museum of Local History č±Šē”°åø‚éƒ·åœŸč³‡ę–™é¤Ø'),
(72586, 'https://ror.org/00yjfkj05', 'en', 1, 'https://ror.org/00yjfkj05 Chigasaki Rehabilitation College čŒ…ćƒ¶å“ŽćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€å­¦ę ”ćÆ'),
(72587, 'https://ror.org/00ekwzh02', 'en', 1, 'https://ror.org/00ekwzh02 Aomori Prefectural School Education Center é’ę£®ēœŒē·åˆå­¦ę ”ę•™č‚²ć‚»ćƒ³ć‚æ'),
(72588, 'https://ror.org/013z02f32', 'en', 1, 'https://ror.org/013z02f32 Shizuoka Prefecture Archaeological Center é™å²”ēœŒåŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(72589, 'https://ror.org/01c13f829', 'en', 1, 'https://ror.org/01c13f829 Kinki Polytechnic College čæ‘ē•æćƒćƒŖćƒ†ć‚Æć‚«ćƒ¬ćƒƒć‚ø'),
(72590, 'https://ror.org/05ttj6w10', 'en', 1, 'https://ror.org/05ttj6w10 Nishinari Labor Welfare Center č²”å›£ę³•äŗŗč„æęˆåŠ“åƒē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼'),
(72591, 'https://ror.org/01qsz2191', 'en', 1, 'https://ror.org/01qsz2191 Nagasaki Ajisai Hospital é•·å“Žé€“äæ”ē—…é™¢'),
(72592, 'https://ror.org/001pvd496', 'en', 1, 'https://ror.org/001pvd496 Kansai Vocational College of Medicine é–¢č„æåŒ»ē™‚å­¦åœ’å°‚é–€å­¦ę ”'),
(72593, 'https://ror.org/01z0d7163', 'en', 1, 'https://ror.org/01z0d7163 Shizuoka Prefecture Institute of Environmental Health Sciences é™å²”ēœŒē’°å¢ƒč”›ē”Ÿē§‘å­¦ē ”ē©¶ę‰€'),
(72594, 'https://ror.org/04qgwte94', 'en', 1, 'https://ror.org/04qgwte94 Shiun Junior High School é«˜ę¾åø‚ē«‹ē“«é›²äø­'),
(72595, 'https://ror.org/035130s04', 'no_lang_code', 1, 'https://ror.org/035130s04 Otepia Kochi Library é«˜ēŸ„åø‚ē«‹é«˜ēŸ„åø‚ę°‘å›³ę›øé¤Ø'),
(72596, 'https://ror.org/021t5ek61', 'en', 1, 'https://ror.org/021t5ek61 Kushiro City Museum é‡§č·Æåø‚ē«‹åšē‰©é¤Ø'),
(72597, 'https://ror.org/03j7j4362', 'en', 1, 'https://ror.org/03j7j4362 Kagoshima Prefectural Library é¹æå…å³¶ēœŒē«‹å›³ę›øé¤Ø'),
(72598, 'https://ror.org/042z8zj53', 'en', 1, 'https://ror.org/042z8zj53 Aso Information Business College Fukuoka éŗ»ē”Ÿęƒ…å ±ćƒ“ć‚øćƒć‚¹å°‚é–€å­¦ę ”ē¦å²”ę ”'),
(72599, 'https://ror.org/0047dfm96', 'en', 1, 'https://ror.org/0047dfm96 Shikoku Occupational Skills Development College é¦™å·č·ę„­čØ“ē·“ēŸ­ęœŸå¤§å­¦ę ”'),
(72600, 'https://ror.org/018aq0w85', 'en', 1, 'https://ror.org/018aq0w85 Ryugasaki City Museum of History and Folklore é¾ć‚±å“Žåø‚ę­“å²ę°‘äæ—č³‡ę–™é¤Ø'),
(72601, 'https://ror.org/00vx0am61', 'en', 1, 'https://ror.org/00vx0am61 Kagoshima Medical Corporation Association Nursing College é¹æå…å³¶ēœŒåŒ»ē™‚ę³•äŗŗå”ä¼šē«‹ēœ‹č­·å°‚é–€å­¦ę ”'),
(72602, 'https://ror.org/00dfbm658', 'en', 1, 'https://ror.org/00dfbm658 West Bengal State Council of Technical Education ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ কারিগরী পরিষদ'),
(72603, 'https://ror.org/05eq3g745', 'no_lang_code', 1, 'https://ror.org/05eq3g745 Balaji Utthan Sansthan ą¤¬ą¤¾ą¤²ą¤¾ą¤œą„€ ą¤‰ą¤¤ą„ą¤„ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(72604, 'https://ror.org/00d964061', 'en', 1, 'https://ror.org/00d964061 GoCare Health Solutions Limited'),
(72605, 'https://ror.org/04n9n6c96', 'en', 1, 'https://ror.org/04n9n6c96 Young Africa FOUNDATION'),
(72606, 'https://ror.org/00ygnz155', 'en', 1, 'https://ror.org/00ygnz155 University Transportation Center for Railway Safety'),
(72607, 'https://ror.org/02hgagx44', 'no_lang_code', 1, 'https://ror.org/02hgagx44 Bharat Immunologicals and Biologicals Corporation (India)'),
(72608, 'https://ror.org/00gsmyw97', 'en', 1, 'https://ror.org/00gsmyw97 Central Avian Research Institute ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤Ŗą¤•ą„ą¤·ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(72609, 'https://ror.org/04154se97', 'en', 1, 'https://ror.org/04154se97 Bidar Organization for Medicinal and Aromatic plants'),
(72610, 'https://ror.org/01n1cp186', 'en', 1, 'https://ror.org/01n1cp186 Central Institute for Research on Goats ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¬ą¤•ą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(72611, 'https://ror.org/03fwhmm19', 'en', 1, 'https://ror.org/03fwhmm19 Center for Constitutional Governance'),
(72612, 'https://ror.org/03gmwcy77', 'en', 1, 'https://ror.org/03gmwcy77 Centre for International Law Research and Policy'),
(72613, 'https://ror.org/00mv0vt78', 'no_lang_code', 1, 'https://ror.org/00mv0vt78 Biotech Park ą¤¬ą¤¾ą¤Æą„‹ą¤Ÿą„‡ą¤• ą¤Ŗą¤¾ą¤°ą„ą¤•'),
(72614, 'https://ror.org/048t29e55', 'en', 1, 'https://ror.org/048t29e55 Youth Network for Reform'),
(72615, 'https://ror.org/01ydq7s61', 'no_lang_code', 1, 'https://ror.org/01ydq7s61 GenePath Dx (India)'),
(72616, 'https://ror.org/0329af416', 'en', 1, 'https://ror.org/0329af416 Central Institute of Technology Kokrajhar ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą„‹ą¤•ą¤°ą¤¾ą¤ą¤¾ą¤°'),
(72617, 'https://ror.org/05qyca855', 'en', 1, 'https://ror.org/05qyca855 Centre of Technology & Entrepreneurship Development'),
(72618, 'https://ror.org/00vwnt173', 'en', 1, 'https://ror.org/00vwnt173 Animal Resources Development Department'),
(72619, 'https://ror.org/04q1ghb64', 'en', 1, 'https://ror.org/04q1ghb64 Aravali Foundation for Education'),
(72620, 'https://ror.org/00tw8zf26', 'en', 1, 'https://ror.org/00tw8zf26 Centre For Human Genetics'),
(72621, 'https://ror.org/03681th59', 'en', 1, 'https://ror.org/03681th59 Arunachal Pradesh State Council for Science & Technology'),
(72622, 'https://ror.org/05b2qtm61', 'en', 1, 'https://ror.org/05b2qtm61 Centre for Rural Education and Economic Development'),
(72623, 'https://ror.org/04dmgvm89', 'en', 1, 'https://ror.org/04dmgvm89 Dhanalakshmi Srinivasan Group of Institutions'),
(72624, 'https://ror.org/039c5k490', 'en', 1, 'https://ror.org/039c5k490 Centre For Wildlife Studies'),
(72625, 'https://ror.org/018jrds86', 'en', 1, 'https://ror.org/018jrds86 Directorate of Cashew Research ą¤•ą¤¾ą¤œą„‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(72626, 'https://ror.org/03j87dy80', 'en', 1, 'https://ror.org/03j87dy80 Directorate of Coldwater Fisheries Research ठंऔा ą¤Ŗą¤¾ą¤Øą„€ ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(72627, 'https://ror.org/02enk0533', 'en', 1, 'https://ror.org/02enk0533 Association for Awareness on Rural and Tribal Health Institute'),
(72628, 'https://ror.org/04j7knk69', 'en', 1, 'https://ror.org/04j7knk69 Association for Rural Development'),
(72629, 'https://ror.org/02pvp9c06', 'en', 1, 'https://ror.org/02pvp9c06 Indian Institute of Millets Research ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą¤¦ą¤Øą„ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(72630, 'https://ror.org/03ryk3848', 'no_lang_code', 1, 'https://ror.org/03ryk3848 Chacha Nehru Bal Chikitsalaya चाचा ą¤Øą„‡ą¤¹ą¤°ą„ बाल ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ą¤²ą¤Æ'),
(72631, 'https://ror.org/05vm6r550', 'en', 1, 'https://ror.org/05vm6r550 Indian Institute of Soybean Research ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‹ą¤Æą¤¾ą¤¬ą„€ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(72632, 'https://ror.org/02hzb7188', 'en', 1, 'https://ror.org/02hzb7188 Directorate of Weed Research खरपतवार ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(72633, 'https://ror.org/0333x0667', 'en', 1, 'https://ror.org/0333x0667 Avantha Centre for Industrial Research & Development ą¤”ą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤•ą„‡ ą¤²ą¤æą¤ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° अवंता'),
(72634, 'https://ror.org/00bhbn803', 'en', 1, 'https://ror.org/00bhbn803 Chellaram Hospital'),
(72635, 'https://ror.org/04h4wws08', 'no_lang_code', 1, 'https://ror.org/04h4wws08 Ayurvet (India) ą¤…ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¤'),
(72636, 'https://ror.org/021zpak95', 'en', 1, 'https://ror.org/021zpak95 Ayurvet Research Foundation'),
(72637, 'https://ror.org/020dpkm20', 'no_lang_code', 1, 'https://ror.org/020dpkm20 Bal Umang Drishya Sanstha बल उमंग ą¤¦ą„ƒą¤·ą„ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(72638, 'https://ror.org/0465gqv59', 'en', 1, 'https://ror.org/0465gqv59 Maharashtra Forest Department ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° वन विभाग'),
(72639, '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'),
(72640, 'https://ror.org/02xr5ws27', 'en', 1, 'https://ror.org/02xr5ws27 Andhra Pradesh Forest Department ą°†ą°‚ą°§ą±ą°°ą°Ŗą±ą°°ą°¦ą±‡ą°¶ą± ą°…ą°Ÿą°µą±€ శాఖ'),
(72641, 'https://ror.org/02ns3vy48', 'en', 1, 'https://ror.org/02ns3vy48 Forest Survey of India ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ वन ą¤øą¤°ą„ą¤µą„‡ą¤•ą„ą¤·ą¤£'),
(72642, 'https://ror.org/058qjc262', 'en', 1, 'https://ror.org/058qjc262 Central Muga Eri Research and Training Institute'),
(72643, 'https://ror.org/01anr5861', 'no_lang_code', 1, 'https://ror.org/01anr5861 Balipara Foundation'),
(72644, 'https://ror.org/02cc4y991', 'en', 1, 'https://ror.org/02cc4y991 Foundation for Agricultural Resources Management and Environmental Remediation'),
(72645, 'https://ror.org/04ea3ng91', 'no_lang_code', 1, 'https://ror.org/04ea3ng91 Codon Biosciences (India)'),
(72646, 'https://ror.org/0155p9f79', 'en', 1, 'https://ror.org/0155p9f79 Foundation for Environment and Economic Development Services'),
(72647, 'https://ror.org/05d8r3q58', 'en', 1, 'https://ror.org/05d8r3q58 Foundation for Neglected Disease Research ą²Øą²æą²°ą³ą²²ą²•ą³ą²·ą³ą²Æ ರೋಗ ą²°ą²æą²øą²°ą³ą²šą³ ą²«ą³Œą²‚ą²”ą³†ą³•ą²¶ą²Øą³'),
(72648, 'https://ror.org/01yfx8049', 'en', 1, 'https://ror.org/01yfx8049 Fragrance & Flavour Development Centre ą¤«ą„ą¤°ą¤¾ą¤—ą„ą¤°ą¤¾ą¤‚ą¤ø & ą¤«ą„ą¤²ą„‡ą¤µą¤° ą¤”ą„‡ą¤µą„‡ą¤²ą¤Ŗą¤®ą„‡ą¤‚ą¤Ÿ ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(72649, 'https://ror.org/03q5zq793', 'no_lang_code', 1, 'https://ror.org/03q5zq793 Genomix Biotech (India)'),
(72650, 'https://ror.org/01av07n65', 'no_lang_code', 1, 'https://ror.org/01av07n65 Suguna Holdings (India)'),
(72651, 'https://ror.org/005z3yp93', 'en', 1, 'https://ror.org/005z3yp93 Central Sericultural Germplasm Resources Centre'),
(72652, 'https://ror.org/02kd0zj59', 'en', 1, 'https://ror.org/02kd0zj59 Government Ayurvedic College and Hospital ą¦šą§°ą¦•ą¦¾ą§°ą§€ ą¦†ą¦Æą¦¼ą§ą§°ą§ą¦¬ą§‡ą¦¦ą¦æą¦• ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(72653, 'https://ror.org/04hpyv730', 'en', 1, 'https://ror.org/04hpyv730 Centre for Aromatic Plants'),
(72654, 'https://ror.org/01e6kag67', 'en', 1, 'https://ror.org/01e6kag67 Gujarat Science City'),
(72655, 'https://ror.org/02srgbx34', 'en', 1, 'https://ror.org/02srgbx34 Chilika Development Authority'),
(72656, 'https://ror.org/047q4fb87', 'en', 1, 'https://ror.org/047q4fb87 Indian Institute of Natural Resins and Gums'),
(72657, 'https://ror.org/051m5br28', 'en', 1, 'https://ror.org/051m5br28 Indian Society of Agribusiness Professionals'),
(72658, 'https://ror.org/03r8rb992', 'en', 1, 'https://ror.org/03r8rb992 International Institute of Biotechnology and Toxicology'),
(72659, 'https://ror.org/01t6ysk15', 'en', 1, 'https://ror.org/01t6ysk15 Koul Research Foundation'),
(72660, 'https://ror.org/04m3mhq27', 'en', 1, 'https://ror.org/04m3mhq27 Centre for Advanced Bioenergy Research'),
(72661, 'https://ror.org/04yva9a78', 'en', 1, 'https://ror.org/04yva9a78 Institute of Animal Health and Veterinary Biologicals ಪಶು ą²†ą²°ą³‹ą²—ą³ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²œą³ˆą²µą²æą²• ą²øą²‚ą²øą³ą²„ą³†'),
(72662, 'https://ror.org/01dqwwr24', 'en', 1, 'https://ror.org/01dqwwr24 Iora Ecological Solutions'),
(72663, 'https://ror.org/02wcjva51', 'en', 1, 'https://ror.org/02wcjva51 Institute of Forest Productivity वन ą¤‰ą¤¤ą„ą¤Ŗą¤¾ą¤¦ą¤•ą¤¤ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(72664, 'https://ror.org/04d3x5w26', 'en', 1, 'https://ror.org/04d3x5w26 Institute Of Horticulture Technology ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¬ą¤¾ą¤—ą¤µą¤¾ą¤Øą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€'),
(72665, 'https://ror.org/031eap517', 'en', 1, 'https://ror.org/031eap517 Delhi Development Authority ą¤¦ą¤æą¤²ą„ą¤²ą„€ विकास ą¤Ŗą„ą¤°ą¤¾ą¤§ą¤æą¤•ą¤°ą¤£'),
(72666, 'https://ror.org/03780jn86', 'en', 1, 'https://ror.org/03780jn86 Kalam Institute of Health Technology'),
(72667, 'https://ror.org/02j0qe342', 'en', 1, 'https://ror.org/02j0qe342 Dr. Kamakshi Memorial Hospital'),
(72668, 'https://ror.org/02k3mav14', 'no_lang_code', 1, 'https://ror.org/02k3mav14 Kamdhenu University કામધેનુ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(72669, 'https://ror.org/02e5d4a33', 'no_lang_code', 1, 'https://ror.org/02e5d4a33 Bafna Group (India)'),
(72670, 'https://ror.org/04svcpx91', 'hi', 1, 'https://ror.org/04svcpx91 Kanya Maha Vidyalaya ਕੰਨਿਆ ਮਹਾਂ ਵਿਦਿਆਲਾ'),
(72671, 'https://ror.org/04qwq4796', 'en', 1, 'https://ror.org/04qwq4796 Haffkine Institute ą¤¹ą¤«ą¤¼ą¤•ą„‡ą¤Ø ą¤Ŗą„ą¤°ą¤¶ą¤æą¤•ą„ą¤·ą¤£, ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą¤°ą„€ą¤•ą„ą¤·ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(72672, 'https://ror.org/0312mdb50', 'no_lang_code', 1, 'https://ror.org/0312mdb50 Hans Raj Mahila Maha Vidyalaya ਹੰਸ ਰਾਜ ਮਹਿਲਾ ਮਹਾ ਵਿਦਿਆਲਾ'),
(72673, 'https://ror.org/04gzt2g63', 'hi', 1, 'https://ror.org/04gzt2g63 Kendriya Vidyalaya Sangathan ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ संगठन'),
(72674, 'https://ror.org/01tcd5f78', 'no_lang_code', 1, 'https://ror.org/01tcd5f78 Kentropy Technologies (India)'),
(72675, 'https://ror.org/03w8zkt07', 'no_lang_code', 1, 'https://ror.org/03w8zkt07 Hester'),
(72676, 'https://ror.org/015w7jz26', 'en', 1, 'https://ror.org/015w7jz26 Kerala Livestock Development Board ą“•ąµ‡ą“°ą“³ ą“•ą“Øąµą“Øąµą“•ą“¾ą“²ą“æ ą“µą“æą“•ą“øą“Ø ą“¬ąµ‡ą“¾ąµ¼ą“”ąµ'),
(72677, 'https://ror.org/03tgvyd09', 'no_lang_code', 1, 'https://ror.org/03tgvyd09 Hi Tech BioSciences India (India)'),
(72678, 'https://ror.org/01yennm80', 'en', 1, 'https://ror.org/01yennm80 King Institute of Preventive Medicine and Research ą®¤ą®ŸąÆą®ŖąÆą®ŖąÆ ą®®ą®°ąÆą®ØąÆą®¤ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®•ą®æą®™ąÆ ą®‡ą®©ąÆą®øąÆą®Ÿą®æą®Ÿą®æą®ÆąÆ‚ą®ŸąÆ'),
(72679, 'https://ror.org/01c55fw55', 'en', 1, 'https://ror.org/01c55fw55 Krishi Vigyan Kendra, Ghatkhed Amravati'),
(72680, 'https://ror.org/03pczck54', 'en', 1, 'https://ror.org/03pczck54 ICAR-National Research Centre on Pig'),
(72681, 'https://ror.org/00y3zx547', 'no_lang_code', 1, 'https://ror.org/00y3zx547 Krishi Vigyan Kendra, Hingoli'),
(72682, 'https://ror.org/05n682z45', 'no_lang_code', 1, 'https://ror.org/05n682z45 Krishi Vigyan Kendra, Karda ą¤•ą„ƒą¤·ą„€ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° , करऔा'),
(72683, 'https://ror.org/05jcvbb33', 'no_lang_code', 1, 'https://ror.org/05jcvbb33 Kuantum Papers (India)'),
(72684, 'https://ror.org/00gjhva62', 'en', 1, 'https://ror.org/00gjhva62 Lifecare Innovations (India)'),
(72685, 'https://ror.org/03fv7j188', 'en', 1, 'https://ror.org/03fv7j188 Central Citrus Research Institute ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤²ą¤æą¤‚ą¤¬ą„‚ą¤µą¤°ą„ą¤—ą„€ą¤Æ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(72686, 'https://ror.org/006w0gs85', 'en', 1, 'https://ror.org/006w0gs85 Mazumdar Shaw Medical Foundation'),
(72687, 'https://ror.org/02jvh9y58', 'en', 1, 'https://ror.org/02jvh9y58 Moving Academy of Medicine and Biomedicine ą¤®ą„ą¤µą„ą¤¹ą„€ą¤‚ą¤— ą¤…ą„…ą¤•ą„…ą¤”ą¤®ą„€ ą¤…ą„‰ą¤« ą¤®ą„‡ą¤”ą„€ą¤øą¤æą¤Ø अँऔ ą¤¬ą¤¾ą¤Æą„‹ą¤®ą„‡ą¤”ą„€ą¤øą¤æą¤Ø'),
(72688, 'https://ror.org/01tv67y39', 'en', 1, 'https://ror.org/01tv67y39 Mustard Research and Promotion Consortium ą¤øą¤°ą¤øą„‹ą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤øą¤‚ą¤µą¤°ą„ą¤§ą¤Ø ą¤•ą¤‚ą¤øą„‹ą¤°ą„ą¤Ÿą¤æą¤Æą¤®'),
(72689, 'https://ror.org/01c0mrz71', 'en', 1, 'https://ror.org/01c0mrz71 Directorate of Poultry Research ą°ą°øą°æą°Žą°†ą°°ą±-ą°”ą±†ą±–ą°°ą±†ą°•ą±ą°Ÿą°°ą±‡ą°Ÿą± ą°Ŗą±Œą°²ą±ą°Ÿą±ą°°ą±€ ą°°ą±€ą°øą±†ą°°ą±ą°šą±'),
(72690, 'https://ror.org/03b1gtt44', 'en', 1, 'https://ror.org/03b1gtt44 Lipomic Healthcare (India)'),
(72691, 'https://ror.org/0354ckp94', 'en', 1, 'https://ror.org/0354ckp94 National Institute of High Security Animal Diseases ą¤‰ą¤šą„ą¤š ą¤øą„ą¤°ą¤•ą„ą¤·ą¤¾ ą¤Ŗą¤¶ą„ ą¤°ą„‹ą¤— ą¤•ą„‡ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(72692, 'https://ror.org/03pf1rt23', 'en', 1, 'https://ror.org/03pf1rt23 National Bureau of Agricultural Insect Resources'),
(72693, 'https://ror.org/03tdar888', 'en', 1, 'https://ror.org/03tdar888 North Eastern Space Applications Centre'),
(72694, 'https://ror.org/02nf4c779', 'no_lang_code', 1, 'https://ror.org/02nf4c779 Novo Informatics (India) ą¤Øą„‹ą¤µą„‹ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¾ą„¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(72695, 'https://ror.org/01d9dyv42', 'en', 1, 'https://ror.org/01d9dyv42 National Research Centre for Integrated Pest Management ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„‡ą¤•ą¤æą¤¤ ą¤Øą¤¾ą¤¶ą„€ą¤œą„€ą¤µ ą¤Ŗą„ą¤°ą¤¬ą¤Øą„ą¤§ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(72696, 'https://ror.org/02ae11525', 'no_lang_code', 1, 'https://ror.org/02ae11525 Biozeen (India)'),
(72697, 'https://ror.org/01fkqhn95', 'en', 1, 'https://ror.org/01fkqhn95 National Federation of Cooperative Sugar Factories ą¤•ą¤‚ą¤Ŗą¤Øą„€ ą¤•ą„‡ ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤«ą„‡ą¤”ą¤°ą„‡ą¤¶ą¤Ø - ą¤øą„‡ą¤¶ą¤Ø ą¤¶ą„ą¤—ą¤° ą¤«ą„ˆą¤•ą„ą¤Ÿą„ą¤°ą„€ą¤œ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(72698, 'https://ror.org/04x97rq71', 'en', 1, 'https://ror.org/04x97rq71 National Innovation Foundation નેશનલ ઇનોવેશન ąŖ«ąŖ¾ąŖ‰ąŖØą«ąŖ”ą«‡ąŖ¶ąŖØ ભારત'),
(72699, 'https://ror.org/0259rff80', 'no_lang_code', 1, 'https://ror.org/0259rff80 Manav Vikas Evam Sewa Sansthan'),
(72700, 'https://ror.org/033h29277', 'en', 1, 'https://ror.org/033h29277 Participatory Rural Development Foundation'),
(72701, 'https://ror.org/05j4aq945', 'en', 1, 'https://ror.org/05j4aq945 Peermade Development Society'),
(72702, 'https://ror.org/01hmsgz49', 'no_lang_code', 1, 'https://ror.org/01hmsgz49 Krishi Vigyan Kendra, Latur ą¤•ą„ƒą¤·ą„€ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°, ą¤²ą¤¾ą¤¤ą„‚ą¤°'),
(72703, 'https://ror.org/04mf96963', 'en', 1, 'https://ror.org/04mf96963 Prashanti Cancer Care Mission'),
(72704, 'https://ror.org/01hxmwm32', 'en', 1, 'https://ror.org/01hxmwm32 Punjab State Council for Science & Technology ਵਿਗਿਆਨ ਅਤੇ ąØ¤ąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ਦੇ ਲਈ ਪੰਜਾਬ ਰਾਜ ąØŖą©ąØ°ą©€ąØøąØ¼ąØ¦'),
(72705, 'https://ror.org/011pwcp79', 'en', 1, 'https://ror.org/011pwcp79 Research and Action in Natural Wealth Administration ą¤Øą„ˆą¤øą¤°ą„ą¤—ą¤æą¤• ą¤øą¤‚ą¤Ŗą¤¤ą„ą¤¤ą„€ ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤øą¤Ø ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø आणि ą¤•ą„ƒą¤¤ą„€'),
(72706, 'https://ror.org/019f08v97', 'en', 1, 'https://ror.org/019f08v97 Jundi-Shapur University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų¬Ł†ŲÆŪŒ ؓاپور ŲÆŲ²ŁŁˆŁ„'),
(72707, 'https://ror.org/01as6we94', 'en', 1, 'https://ror.org/01as6we94 Rama Devi Women''s University ରମା ଦେବୀ ମହିଳା ą¬¬ą¬æą¬¶ą­ą¬µ ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(72708, 'https://ror.org/05f60e681', 'en', 1, 'https://ror.org/05f60e681 Society For Environment And Development ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤°ą¤£ और विकास ą¤•ą„‡ ą¤²ą¤æą¤ ą¤øą„‹ą¤øą¤¾ą¤Æą¤Ÿą„€'),
(72709, 'https://ror.org/00dks7s70', 'no_lang_code', 1, 'https://ror.org/00dks7s70 SoftTeam Solutions (India)'),
(72710, 'https://ror.org/04f6hwk12', 'en', 1, 'https://ror.org/04f6hwk12 Shri A.M.M. Murugappa Chettiar Research Centre'),
(72711, 'https://ror.org/0469c4m52', 'en', 1, 'https://ror.org/0469c4m52 Saitama Prefectural River Museum åŸ¼ēŽ‰ēœŒē«‹å·ć®åšē‰©é¤Ø'),
(72712, 'https://ror.org/019t2m169', 'no_lang_code', 1, 'https://ror.org/019t2m169 Valagro (India)'),
(72713, 'https://ror.org/004dy8z51', 'no_lang_code', 1, 'https://ror.org/004dy8z51 Siddharth Starch (India)'),
(72714, 'https://ror.org/05he2ce30', 'en', 1, 'https://ror.org/05he2ce30 Social Awareness Through Human Involvement'),
(72715, 'https://ror.org/047ynz185', 'en', 1, 'https://ror.org/047ynz185 Sri Konda Laxman Telangana State Horticultural University ą°¶ą±ą°°ą±€ ą°•ą±Šą°‚ą°”ą°¾ ą°²ą°•ą±ą°·ą±ą°®ą°£ą± తెలంగాణ ą°°ą°¾ą°·ą±ą°Ÿą±ą°°ą°‚ ą°¹ą°¾ą°°ą±ą°Ÿą°æą°•ą°²ą±ą°šą°°ą± ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(72716, 'https://ror.org/00xctjm44', 'en', 1, 'https://ror.org/00xctjm44 P.V. Narsimha Rao Telangana Veterinary University PV ą°Øą°°ą°øą°æą°‚ą°¹ రావు తెలంగాణ ą°µą±†ą°Ÿą°°ą±ą°Øą°°ą±€ ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(72717, 'https://ror.org/02sb4r018', 'en', 1, 'https://ror.org/02sb4r018 Social Service Sericulture Project Trust'),
(72718, 'https://ror.org/03wa5d325', 'en', 1, 'https://ror.org/03wa5d325 Society for Applied Microwave Electronics Engineering & Research'),
(72719, 'https://ror.org/05sffjq44', 'en', 1, 'https://ror.org/05sffjq44 Veterinary And Animal Husbandry Services'),
(72720, 'https://ror.org/04td8e917', 'en', 1, 'https://ror.org/04td8e917 Uttar Pradesh Pandit Deen Dayal Upadhyaya Pashu Chikitsa Vigyan Vishwavidyalaya Evam Go-Anusandhan Sansthan'),
(72721, 'https://ror.org/01vv0b990', 'en', 1, 'https://ror.org/01vv0b990 Tamil Nadu Board of Rural Development ą®Šą®°ą®• ą®®ąÆ‡ą®®ąÆą®Ŗą®¾ą®ŸąÆą®ŸąÆ ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®µą®¾ą®°ą®æą®Æą®®ąÆ'),
(72722, 'https://ror.org/008nqzn46', 'no_lang_code', 1, 'https://ror.org/008nqzn46 Vigyan Prasar ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤øą¤¾ą¤°'),
(72723, 'https://ror.org/03yenn346', 'no_lang_code', 1, 'https://ror.org/03yenn346 Varsha Bioscience and Technology (India)'),
(72724, 'https://ror.org/003fxr642', 'no_lang_code', 1, 'https://ror.org/003fxr642 Vertiver (India) ą¤µą„‡ą¤°ą„ą¤¤ą¤æą¤µą¤°'),
(72725, 'https://ror.org/02b5gjr58', 'en', 1, 'https://ror.org/02b5gjr58 Vivekananda Institute of Biotechnology ą¦¬ą¦æą¦¬ą§‡ą¦•ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦¬ą¦¾ą¦Æą¦¼ą§‹ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(72726, 'https://ror.org/00c44w836', 'en', 1, 'https://ror.org/00c44w836 Vivekananda Memorial Hospital'),
(72727, 'https://ror.org/029xz9y97', 'en', 1, 'https://ror.org/029xz9y97 State Council of Science Technology & Environment, Meghalaya'),
(72728, 'https://ror.org/01cpb1168', 'en', 1, 'https://ror.org/01cpb1168 State Forest Research Institute'),
(72729, 'https://ror.org/03224rx59', 'en', 1, 'https://ror.org/03224rx59 Animal Husbandry and Veterinary Department'),
(72730, 'https://ror.org/01zm1c864', 'en', 1, 'https://ror.org/01zm1c864 Department of Animal Husbandry, Veterinary and Dairy Development'),
(72731, 'https://ror.org/0352b7b72', 'en', 1, 'https://ror.org/0352b7b72 Veterinary & Animal Husbandry'),
(72732, 'https://ror.org/00402k788', 'en', 1, 'https://ror.org/00402k788 Animal Husbandry & Veterinary'),
(72733, 'https://ror.org/0240nmn85', 'en', 1, 'https://ror.org/0240nmn85 Veterinary Biological and Research Institute'),
(72734, 'https://ror.org/028f0h308', 'en', 1, 'https://ror.org/028f0h308 Department of Animal Husbandry and Veterinary'),
(72735, 'https://ror.org/05106mv47', 'en', 1, 'https://ror.org/05106mv47 Department of Animal Husbandry Livestock, Fisheries & Veterinary ą¤Ŗą¤¶ą„ą¤Ŗą¤¾ą¤²ą¤Ø ą¤Ŗą¤¶ą„ą¤§ą¤Ø ą¤®ą¤¤ą„ą¤øą„ą¤Æ र ą¤Ŗą¤¶ą„'),
(72736, 'https://ror.org/02ma46909', 'en', 1, 'https://ror.org/02ma46909 WA Country Health Service'),
(72737, 'https://ror.org/00ffcee24', 'en', 1, 'https://ror.org/00ffcee24 Australian Hearing'),
(72738, 'https://ror.org/02wewap38', 'en', 1, 'https://ror.org/02wewap38 Ngaanyatjarra Health Service'),
(72739, 'https://ror.org/05s9qth02', 'en', 1, 'https://ror.org/05s9qth02 Australian Centre for Heart Health'),
(72740, 'https://ror.org/043vdcr39', 'en', 1, 'https://ror.org/043vdcr39 Mental Health Commission'),
(72741, 'https://ror.org/00qhbve66', 'no_lang_code', 1, 'https://ror.org/00qhbve66 PI Electronics (China)'),
(72742, 'https://ror.org/05bb7at98', 'no_lang_code', 1, 'https://ror.org/05bb7at98 Techmart Industrial Limited (China) ē§‘ę±‡å·„äøšęœŗę¢°ęœ‰é™å…¬åø'),
(72743, 'https://ror.org/037c00h05', 'no_lang_code', 1, 'https://ror.org/037c00h05 Hong Kong Auto Parts Industry Association (China) é¦™ęøÆę±½č»Šé›¶éƒØä»¶å·„ę„­å”ęœƒ'),
(72744, 'https://ror.org/05kwyy930', 'en', 1, 'https://ror.org/05kwyy930 The Hong Kong Council of Social Service é¦™ęøÆē¤¾ęœƒęœå‹™čÆęœƒ'),
(72745, 'https://ror.org/0176pnx67', 'en', 1, 'https://ror.org/0176pnx67 Hong Kong Institute of Contemporary Culture é¦™ęøÆē•¶ä»£ę–‡åŒ–äø­åæƒę–¼'),
(72746, 'https://ror.org/022sm0j70', 'en', 1, 'https://ror.org/022sm0j70 Chartered Institute of Arbitrators'),
(72747, 'https://ror.org/05s1rbd84', 'en', 1, 'https://ror.org/05s1rbd84 Hong Kong Trade Development Council é¦™ęøÆč²æę˜“ē™¼å±•å±€'),
(72748, 'https://ror.org/036hzfm30', 'no_lang_code', 1, 'https://ror.org/036hzfm30 Compass Technology (China)'),
(72749, 'https://ror.org/0189jyk25', 'en', 1, 'https://ror.org/0189jyk25 Aachen Institute for Nuclear Training'),
(72750, 'https://ror.org/04bpb0r34', 'no_lang_code', 1, 'https://ror.org/04bpb0r34 Aerospace Institut Aerospace Institute (Germany)'),
(72751, 'https://ror.org/01w1jem87', 'no_lang_code', 1, 'https://ror.org/01w1jem87 Alpenforschungsinstitut (Germany)'),
(72752, 'https://ror.org/01qvmm256', 'en', 1, 'https://ror.org/01qvmm256 Academy of Arts Education Akademie der Kulturellen Bildung'),
(72753, 'https://ror.org/023ec5d95', 'no_lang_code', 1, 'https://ror.org/023ec5d95 Akademie Überlingen (Germany)'),
(72754, 'https://ror.org/035wevv89', 'de', 1, 'https://ror.org/035wevv89 Bayerische Landesanstalt für Weinbau und Gartenbau'),
(72755, 'https://ror.org/059kj2n52', 'no_lang_code', 1, 'https://ror.org/059kj2n52 AnaKat (Germany)'),
(72756, 'https://ror.org/05ekwy955', 'de', 1, 'https://ror.org/05ekwy955 Betriebswirtschaftliches Institut für Empirische Gründungs- und Organisationsforschung'),
(72757, 'https://ror.org/00qeeg419', 'de', 1, 'https://ror.org/00qeeg419 Arbeitsgemeinschaft ƶkologischer Forschungsinstitute'),
(72758, 'https://ror.org/03t6w2288', 'en', 1, 'https://ror.org/03t6w2288 Arbeitskreis deutscher BildungsstƤtten Association of German Educational Organizations'),
(72759, 'https://ror.org/01q1pek17', 'en', 1, 'https://ror.org/01q1pek17 Hamburg Archaeological Museum'),
(72760, 'https://ror.org/042xrgf63', 'de', 1, 'https://ror.org/042xrgf63 Lehr- und Versuchsanstalt für Viehhaltung Hofgut Neumühle'),
(72761, 'https://ror.org/02tk5d259', 'no_lang_code', 1, 'https://ror.org/02tk5d259 Arotop Food & Environmet (Germany)'),
(72762, 'https://ror.org/03dqajd65', 'de', 1, 'https://ror.org/03dqajd65 Forschungsinstitut für Beschäftigung Arbeit Qualifikation'),
(72763, 'https://ror.org/00js99a33', 'de', 1, 'https://ror.org/00js99a33 Batteryuniversity'),
(72764, 'https://ror.org/0063jwc41', 'en', 1, 'https://ror.org/0063jwc41 Bauhaus Archive'),
(72765, 'https://ror.org/0432w2a74', 'no_lang_code', 1, 'https://ror.org/0432w2a74 Bochumer Institut für Technologie (Germany)'),
(72766, 'https://ror.org/05edmmt93', 'de', 1, 'https://ror.org/05edmmt93 Bayerisches Staatsinstitut für Hochschulforschung und Hochschulplanung'),
(72767, 'https://ror.org/0423yjj08', 'en', 1, 'https://ror.org/0423yjj08 Borderstep Institut für Innovation und Nachhaltigkeit Borderstep Institute for Innovation and Sustainability'),
(72768, 'https://ror.org/04zk07r40', 'en', 1, 'https://ror.org/04zk07r40 Brandenburg Institute for Society and Security Brandenburgische Institut für Gesellschaft und Sicherheit'),
(72769, 'https://ror.org/02hs0x989', 'de', 1, 'https://ror.org/02hs0x989 BDH-Klinik Hessisch Oldendorf'),
(72770, 'https://ror.org/03ev0dv90', 'no_lang_code', 1, 'https://ror.org/03ev0dv90 Bregau (Germany)'),
(72771, 'https://ror.org/010h7xw27', 'en', 1, 'https://ror.org/010h7xw27 BIOP Institute'),
(72772, 'https://ror.org/05y6s9s64', 'en', 1, 'https://ror.org/05y6s9s64 Berghof Foundation'),
(72773, 'https://ror.org/03a2rz261', 'de', 1, 'https://ror.org/03a2rz261 Bildungsinstitut im Gesundheitswesen'),
(72774, 'https://ror.org/01awf8081', 'de', 1, 'https://ror.org/01awf8081 BilSE - Institut für Bildung und Forschung'),
(72775, 'https://ror.org/03afbsk96', 'no_lang_code', 1, 'https://ror.org/03afbsk96 Sonic Healthcare (Germany)'),
(72776, 'https://ror.org/016mndq43', 'no_lang_code', 1, 'https://ror.org/016mndq43 Biota Institut für ökologische Forschung und Planung (Germany)'),
(72777, 'https://ror.org/04zs4f087', 'no_lang_code', 1, 'https://ror.org/04zs4f087 ERT (Germany)'),
(72778, 'https://ror.org/02gn59349', 'no_lang_code', 1, 'https://ror.org/02gn59349 Bau-Institut für Ressourceneffizientes und Nachhaltiges Bauen Birn (Germany)'),
(72779, 'https://ror.org/03qz20664', 'de', 1, 'https://ror.org/03qz20664 Brandenburg-Berliner Institut für Sozialwissenschaftliche Studien'),
(72780, 'https://ror.org/003cqeh33', 'de', 1, 'https://ror.org/003cqeh33 Institut Dr. Flad'),
(72781, 'https://ror.org/045cajz52', 'de', 1, 'https://ror.org/045cajz52 Dommuseum Hildesheim'),
(72782, 'https://ror.org/045r80614', 'no_lang_code', 1, 'https://ror.org/045r80614 CIP Chemisches Institut Pforzheim GmbH (Germany)'),
(72783, 'https://ror.org/03b7hqk30', 'de', 1, 'https://ror.org/03b7hqk30 Berufsforschungs- und Beratungsinstitut für interdisziplinäre Technikgestaltung'),
(72784, 'https://ror.org/00ahbw052', 'de', 1, 'https://ror.org/00ahbw052 Blindeninstitutsstiftung'),
(72785, 'https://ror.org/023teqr16', 'en', 1, 'https://ror.org/023teqr16 Parenting Research Centre'),
(72786, 'https://ror.org/0568cvb54', 'de', 1, 'https://ror.org/0568cvb54 Cogito Institut für Autonomieforschung'),
(72787, 'https://ror.org/00y61e316', 'de', 1, 'https://ror.org/00y61e316 Bremer Umweltinstitut'),
(72788, 'https://ror.org/04wy4bt38', 'en', 1, 'https://ror.org/04wy4bt38 Bundesinstitut für Bevölkerungsforschung Federal Institute for Population Research'),
(72789, 'https://ror.org/00f7ytv44', 'en', 1, 'https://ror.org/00f7ytv44 Curculio Institute'),
(72790, 'https://ror.org/05dtatp26', 'de', 1, 'https://ror.org/05dtatp26 Bundesverband Farbe Gestaltung Bautenschutz'),
(72791, 'https://ror.org/05npkqq45', 'de', 1, 'https://ror.org/05npkqq45 Bundesverband MuseumspƤdagogik'),
(72792, 'https://ror.org/03chegm58', 'no_lang_code', 1, 'https://ror.org/03chegm58 Cetex (Germany)'),
(72793, 'https://ror.org/02qh6py59', 'en', 1, 'https://ror.org/02qh6py59 Advocata Institute'),
(72794, 'https://ror.org/04sve9e90', 'no_lang_code', 1, 'https://ror.org/04sve9e90 Apollo Proton Cancer Centre'),
(72795, 'https://ror.org/0281t1271', 'de', 1, 'https://ror.org/0281t1271 Deutscher Energieholz- und Pellet-Verband'),
(72796, 'https://ror.org/0561c4v90', 'en', 1, 'https://ror.org/0561c4v90 DermaTronnier'),
(72797, 'https://ror.org/05eqhkk72', 'en', 1, 'https://ror.org/05eqhkk72 Deutscher Volkshochschul-Verband German Adult Education Association'),
(72798, 'https://ror.org/008en0y31', 'en', 1, 'https://ror.org/008en0y31 Deutsches Apotheken-Museum German Museum of Pharmacy'),
(72799, 'https://ror.org/04d5zsn45', 'de', 1, 'https://ror.org/04d5zsn45 Deutsch Amerikanisches Institut Saarland'),
(72800, 'https://ror.org/0076h6458', 'de', 1, 'https://ror.org/0076h6458 Deutsche Akademie für Städtebau und Landesplanung'),
(72801, 'https://ror.org/04wm69k66', 'en', 1, 'https://ror.org/04wm69k66 Deutsches Institut für Katastrophenmedizin German Institute for Disaster Medicine'),
(72802, 'https://ror.org/05v8nsf47', 'no_lang_code', 1, 'https://ror.org/05v8nsf47 Deutsches Dialog Institut (Germany)'),
(72803, 'https://ror.org/04csgyf07', 'de', 1, 'https://ror.org/04csgyf07 Deutsches Institut für Tropische und Subtropische Landwirtschaft'),
(72804, 'https://ror.org/01b2gkw73', 'de', 1, 'https://ror.org/01b2gkw73 Deutsche Angestellten-Akademie'),
(72805, 'https://ror.org/046wcrs16', 'de', 1, 'https://ror.org/046wcrs16 Deutsche Handwerksinstitut'),
(72806, 'https://ror.org/052fgf944', 'de', 1, 'https://ror.org/052fgf944 Deutsches Jungforscher Netzwerk - juFORUM'),
(72807, 'https://ror.org/057v40812', 'de', 1, 'https://ror.org/057v40812 Deutsches Krankenhaus Institut'),
(72808, 'https://ror.org/00sq9j129', 'de', 1, 'https://ror.org/00sq9j129 Deutsche Gesellschaft für Information und Wissen'),
(72809, 'https://ror.org/02p6n7f90', 'no_lang_code', 1, 'https://ror.org/02p6n7f90 DIAL (Germany)'),
(72810, 'https://ror.org/02h3t6028', 'no_lang_code', 1, 'https://ror.org/02h3t6028 Dr. Brill + Dr. Steinmann (Germany)'),
(72811, 'https://ror.org/02zjks284', 'en', 1, 'https://ror.org/02zjks284 European Federation for the Science and Technology of Lipids'),
(72812, 'https://ror.org/02xx9xx26', 'de', 1, 'https://ror.org/02xx9xx26 Dresdner Grundwasserforschungszentrum'),
(72813, 'https://ror.org/050208923', 'de', 1, 'https://ror.org/050208923 DRK-Blutspendedienst Baden-Württemberg - Hessen'),
(72814, 'https://ror.org/047jxb064', 'en', 1, 'https://ror.org/047jxb064 Network on Urban Research in the European Union'),
(72815, 'https://ror.org/014ze8513', 'no_lang_code', 1, 'https://ror.org/014ze8513 Dyckerhoff (Germany)'),
(72816, 'https://ror.org/01rfxdq93', 'de', 1, 'https://ror.org/01rfxdq93 Evangelisches Krankenhaus Oberhausen'),
(72817, 'https://ror.org/027d68d71', 'de', 1, 'https://ror.org/027d68d71 Pestel Institut'),
(72818, 'https://ror.org/039ppzb98', 'de', 1, 'https://ror.org/039ppzb98 Forschungsinstitut Betriebliche Bildung'),
(72819, 'https://ror.org/02n2sdp05', 'no_lang_code', 1, 'https://ror.org/02n2sdp05 Euro Institute for Information and Technology Transfer in Environmental Protection (Germany)'),
(72820, 'https://ror.org/02ywgn354', 'en', 1, 'https://ror.org/02ywgn354 Forschungsinstitut für Arbeit, Technik und Kultur Research Institute for Work, Technology and Culture'),
(72821, 'https://ror.org/04pqjcz08', 'no_lang_code', 1, 'https://ror.org/04pqjcz08 Kantar (Germany)'),
(72822, 'https://ror.org/01vksdv18', 'no_lang_code', 1, 'https://ror.org/01vksdv18 Mackie Research (New Zealand)'),
(72823, 'https://ror.org/017qypp02', 'no_lang_code', 1, 'https://ror.org/017qypp02 ExxonMobil (Germany)'),
(72824, 'https://ror.org/044w5t390', 'en', 1, 'https://ror.org/044w5t390 European Centre for Community Education'),
(72825, 'https://ror.org/0504t8c81', 'no_lang_code', 1, 'https://ror.org/0504t8c81 ERGONOMIC Institut für Arbeits- und Sozialforschung Forschungsgesellschaft (Germany)'),
(72826, 'https://ror.org/02v2egw15', 'de', 1, 'https://ror.org/02v2egw15 Diakonie Deutschland'),
(72827, 'https://ror.org/045ky2r08', 'de', 1, 'https://ror.org/045ky2r08 Erich-Brost-Institut'),
(72828, 'https://ror.org/052n2ew56', 'de', 1, 'https://ror.org/052n2ew56 DRK Bezirksverband Frankfurt'),
(72829, 'https://ror.org/0583z7951', 'en', 1, 'https://ror.org/0583z7951 Eckert Schools International'),
(72830, 'https://ror.org/03a8y0358', 'de', 1, 'https://ror.org/03a8y0358 FIVE - Forschungs- und Innovationsverbund an der Evangelischen Hochschule Freiburg'),
(72831, 'https://ror.org/03tn3hy29', 'en', 1, 'https://ror.org/03tn3hy29 Deutsches Rundfunkarchiv German Broadcasting Archive'),
(72832, 'https://ror.org/02bfx2y10', 'de', 1, 'https://ror.org/02bfx2y10 Innovationstransfer- und Forschungsinstitut Schwerin'),
(72833, 'https://ror.org/00nhwxe66', 'en', 1, 'https://ror.org/00nhwxe66 Deutsches Technikmuseum Berlin German Museum of Technology'),
(72834, 'https://ror.org/04msz5x82', 'en', 1, 'https://ror.org/04msz5x82 Deutsches Zentralinstitut für soziale Fragen German Central Institute for Social Issues'),
(72835, 'https://ror.org/04c3mjk87', 'de', 1, 'https://ror.org/04c3mjk87 DRK Landesverband Rheinland-Pfalz'),
(72836, 'https://ror.org/02hw5b420', 'de', 1, 'https://ror.org/02hw5b420 Dissens – Institut für Bildung und Forschung'),
(72837, 'https://ror.org/04sy0x836', 'de', 1, 'https://ror.org/04sy0x836 Kybernetische Organisation Planung Führung'),
(72838, 'https://ror.org/058phj376', 'de', 1, 'https://ror.org/058phj376 Forschungsanstalt für Waldökologie und Forstwirtschaft'),
(72839, 'https://ror.org/026gp9a94', 'en', 1, 'https://ror.org/026gp9a94 District Heating Research Institute FernwƤrme-Forschungsinstitut'),
(72840, 'https://ror.org/03905f420', 'en', 1, 'https://ror.org/03905f420 Forschungsinstitut Bioaktive Polymersysteme Research Institute Bioactive Polymer Systems'),
(72841, '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'),
(72842, 'https://ror.org/038ftp957', 'en', 1, 'https://ror.org/038ftp957 German Foreign Trade and Transport Academy'),
(72843, 'https://ror.org/02c05kw86', 'de', 1, 'https://ror.org/02c05kw86 Landwirtschaftlichen Zentrums Baden-Württemberg​'),
(72844, 'https://ror.org/02z7b0p22', 'de', 1, 'https://ror.org/02z7b0p22 Faktor 10 – Institut für nachhaltiges Wirtschaften gemeinnützige');
INSERT INTO `rors` VALUES
(72845, 'https://ror.org/02t061029', 'no_lang_code', 1, 'https://ror.org/02t061029 Fitbase'),
(72846, 'https://ror.org/01nmh8776', 'de', 1, 'https://ror.org/01nmh8776 Forschungsinstitut für Bergbaufolgelandschaften'),
(72847, 'https://ror.org/02cmy4j41', 'de', 1, 'https://ror.org/02cmy4j41 Forschungszentrum Ultraschall'),
(72848, 'https://ror.org/0210tb741', 'de', 1, 'https://ror.org/0210tb741 Forschungsinstitut für biologischen Landbau'),
(72849, 'https://ror.org/02gz1g089', 'de', 1, 'https://ror.org/02gz1g089 Forschungsinstitut für Denkmalpflege und Archäometrie'),
(72850, 'https://ror.org/04265mc69', 'de', 1, 'https://ror.org/04265mc69 Forschungsinstitut für innovative Arbeitsgestaltung und Prävention'),
(72851, 'https://ror.org/05h990w27', 'de', 1, 'https://ror.org/05h990w27 Forschungsinstitut Geragogik'),
(72852, 'https://ror.org/00hbteh17', 'de', 1, 'https://ror.org/00hbteh17 Forschungsvereinigung Elektrotechnik beim ZVEI'),
(72853, 'https://ror.org/02kxdc598', 'no_lang_code', 1, 'https://ror.org/02kxdc598 Forschungszentrum für Verbrennungsmotoren und Thermodynamik Rostock (Germany)'),
(72854, 'https://ror.org/01d2xqw69', 'de', 1, 'https://ror.org/01d2xqw69 Technologiezentrum Halbleitermaterialien'),
(72855, 'https://ror.org/011s5nh14', 'en', 1, 'https://ror.org/011s5nh14 Fraunhofer Center for Chemical-Biotechnological Processes Fraunhofer-Zentrum für Chemisch-Biotechnologische Prozesse'),
(72856, 'https://ror.org/00habgn55', 'de', 1, 'https://ror.org/00habgn55 Die Senatorin für Kinder und Bildung'),
(72857, 'https://ror.org/03hnh7f92', 'no_lang_code', 1, 'https://ror.org/03hnh7f92 Fürstenberg Institut (Germany)'),
(72858, 'https://ror.org/02c585m74', 'de', 1, 'https://ror.org/02c585m74 Behörde für Wissenschaft, Forschung und Gleichstellung'),
(72859, 'https://ror.org/05b38ps04', 'de', 1, 'https://ror.org/05b38ps04 Landesinstitut für Lehrerbildung und Schulentwicklung'),
(72860, 'https://ror.org/0017yad31', 'de', 1, 'https://ror.org/0017yad31 DGB Bildungswerk BUND'),
(72861, 'https://ror.org/02ezvhm25', 'de', 1, 'https://ror.org/02ezvhm25 Progenius'),
(72862, 'https://ror.org/00zrbk722', 'de', 1, 'https://ror.org/00zrbk722 Gesellschaft für Akademische Studienvorbereitung und Testentwicklung'),
(72863, 'https://ror.org/00w53fs94', 'de', 1, 'https://ror.org/00w53fs94 Forschungszentrum Küste'),
(72864, 'https://ror.org/03aj00617', 'en', 1, 'https://ror.org/03aj00617 German Musicological Society Gesellschaft für Musikforschung'),
(72865, 'https://ror.org/01hcrn459', 'en', 1, 'https://ror.org/01hcrn459 Education and Science Workers'' Union Gewerkschaft Erziehung und Wissenschaft'),
(72866, 'https://ror.org/05mmb8j87', 'de', 1, 'https://ror.org/05mmb8j87 Gollwitzer-Meier-Klinik'),
(72867, 'https://ror.org/031sbqx87', 'en', 1, 'https://ror.org/031sbqx87 Food, Beverages and Catering Union Gewerkschaft Nahrung-Genuss-GaststƤtten'),
(72868, 'https://ror.org/003q5e975', 'no_lang_code', 1, 'https://ror.org/003q5e975 Gewerbliche Institut für Umweltanalytik (Germany)'),
(72869, 'https://ror.org/04c83st90', 'en', 1, 'https://ror.org/04c83st90 Gustav Stresemann Institute Gustav-Stresemann-Institut'),
(72870, 'https://ror.org/02yvvjj13', 'no_lang_code', 1, 'https://ror.org/02yvvjj13 Cornelsen (Germany)'),
(72871, 'https://ror.org/019vk5v89', 'en', 1, 'https://ror.org/019vk5v89 Hamburg Institute for Vocational Education and Training Hamburger Institut für Berufliche Bildung'),
(72872, 'https://ror.org/01j7kyf72', 'en', 1, 'https://ror.org/01j7kyf72 Archdiocese of Cologne Erzbistum Kƶln'),
(72873, 'https://ror.org/03ve2mc46', 'de', 1, 'https://ror.org/03ve2mc46 Gewi-Institut für Gesundheitswirtschaft'),
(72874, 'https://ror.org/0053a1v22', 'de', 1, 'https://ror.org/0053a1v22 Hamburger Kunsthalle'),
(72875, 'https://ror.org/025nbs755', 'de', 1, 'https://ror.org/025nbs755 Gisela Vogel Institut für berufliche Bildung'),
(72876, 'https://ror.org/02eqrzb23', 'en', 1, 'https://ror.org/02eqrzb23 Global Nature Fund'),
(72877, 'https://ror.org/05d5xcc98', 'no_lang_code', 1, 'https://ror.org/05d5xcc98 Hannoversche Informationstechnologien (Germany)'),
(72878, 'https://ror.org/01m2aa958', 'de', 1, 'https://ror.org/01m2aa958 Hanse Institut Oldenburg Bildung und Gesundheit'),
(72879, 'https://ror.org/01kxwcg54', 'de', 1, 'https://ror.org/01kxwcg54 Schweißtechnische Lehr- und Versuchsanstalt Nord'),
(72880, 'https://ror.org/05a960335', 'de', 1, 'https://ror.org/05a960335 Hessische Zentrale für Datenverarbeitung'),
(72881, 'https://ror.org/01baj0246', 'de', 1, 'https://ror.org/01baj0246 Beratungs und Schulungsinstitut für Tierschutz bei Transport und Schlachtung'),
(72882, 'https://ror.org/01rztr650', 'de', 1, 'https://ror.org/01rztr650 Hessischer Volkshochschulverband'),
(72883, 'https://ror.org/031pj9222', 'de', 1, 'https://ror.org/031pj9222 Hygiene-Institut des Ruhrgebiets'),
(72884, 'https://ror.org/03ej9s373', 'de', 1, 'https://ror.org/03ej9s373 Institut für Industrieaerodynamik'),
(72885, 'https://ror.org/00e9neb15', 'no_lang_code', 1, 'https://ror.org/00e9neb15 Institut für Qualität im Management (Germany)'),
(72886, 'https://ror.org/00pg0dt16', 'de', 1, 'https://ror.org/00pg0dt16 Hessische LehrkrƤfteakademie'),
(72887, 'https://ror.org/04j7sfe76', 'no_lang_code', 1, 'https://ror.org/04j7sfe76 IBExU Institut für Sicherheitstechnik (Germany)'),
(72888, 'https://ror.org/04cmbqn37', 'de', 1, 'https://ror.org/04cmbqn37 Institut Berufs- und Innovationsforschung Medien'),
(72889, 'https://ror.org/01gw9bn12', 'de', 1, 'https://ror.org/01gw9bn12 HeurekaNet'),
(72890, 'https://ror.org/01xz87r89', 'de', 1, 'https://ror.org/01xz87r89 Institut für Betontechnologie und Oberflächenschutz'),
(72891, 'https://ror.org/0306mex37', 'de', 1, 'https://ror.org/0306mex37 Hochschul Informations System'),
(72892, 'https://ror.org/03xkxsc82', 'de', 1, 'https://ror.org/03xkxsc82 Institut für Berufs- und Sozialpädagogik'),
(72893, 'https://ror.org/01paq3405', 'de', 1, 'https://ror.org/01paq3405 Institut für Europäische Gesundheits- und Sozialwirtschaft'),
(72894, 'https://ror.org/03adsge54', 'en', 1, 'https://ror.org/03adsge54 Institut für Angewandte Bodenbiologie Institute for Applied Soil Biology'),
(72895, 'https://ror.org/05ctd7x03', 'en', 1, 'https://ror.org/05ctd7x03 Institut für Angewandte Ɩkosystemforschung Institute for Applied Ecosystem Research'),
(72896, 'https://ror.org/00mne8d28', 'no_lang_code', 1, 'https://ror.org/00mne8d28 Institut für Angewandte Funksystemtechnik (Germany)'),
(72897, 'https://ror.org/03gvee390', 'no_lang_code', 1, 'https://ror.org/03gvee390 Institut für Bahntechnik (Germany)'),
(72898, 'https://ror.org/03e5gcq07', 'de', 1, 'https://ror.org/03e5gcq07 Institut für Ausbildung Jugendlicher'),
(72899, 'https://ror.org/05ymeqj18', 'en', 1, 'https://ror.org/05ymeqj18 IfG.Research - The Institute for eGovernment'),
(72900, 'https://ror.org/00njqng43', 'de', 1, 'https://ror.org/00njqng43 Institut für Musikinstrumentenbau'),
(72901, 'https://ror.org/03k5dfv06', 'de', 1, 'https://ror.org/03k5dfv06 Behörde für Gesundheit und Verbraucherschutz'),
(72902, 'https://ror.org/03k30eb14', 'no_lang_code', 1, 'https://ror.org/03k30eb14 ifp Consulting (Germany)'),
(72903, 'https://ror.org/00eyegs12', 'de', 1, 'https://ror.org/00eyegs12 Institut für Kompetenz und Begabung'),
(72904, 'https://ror.org/02b66d538', 'de', 1, 'https://ror.org/02b66d538 Institut für Regionalmanagement'),
(72905, 'https://ror.org/00ea83k06', 'de', 1, 'https://ror.org/00ea83k06 Institut für Kommunikation und Wirtschaftsbildung'),
(72906, 'https://ror.org/03hx70e06', 'no_lang_code', 1, 'https://ror.org/03hx70e06 IFU Privates Institut für Analytik (Germany)'),
(72907, 'https://ror.org/056andb48', 'no_lang_code', 1, 'https://ror.org/056andb48 Institut für Leichte Elektrische Antriebe und Generatoren (Germany)'),
(72908, 'https://ror.org/041eygf45', 'de', 1, 'https://ror.org/041eygf45 Institut für Umweltplanung und Raumentwicklung'),
(72909, 'https://ror.org/05g5sdw63', 'no_lang_code', 1, 'https://ror.org/05g5sdw63 Institut für Molekularbiologie und Analytik (Germany)'),
(72910, 'https://ror.org/00761tq91', 'en', 1, 'https://ror.org/00761tq91 Institut für Gebäudeanalyse und Sanierungsplanung Institute for Building Analysis and Reconstruction Planning'),
(72911, 'https://ror.org/0047j9t38', 'de', 1, 'https://ror.org/0047j9t38 Institut für Informationsverarbeitung'),
(72912, 'https://ror.org/002jmh430', 'de', 1, 'https://ror.org/002jmh430 Institut zur Modernisierung von Wirtschafts- und BeschƤftigungsstrukturen'),
(72913, 'https://ror.org/028xc6z83', 'no_lang_code', 1, 'https://ror.org/028xc6z83 SpectrumK (Germany)'),
(72914, 'https://ror.org/00wvsjr52', 'no_lang_code', 1, 'https://ror.org/00wvsjr52 Ingenium (Germany)'),
(72915, 'https://ror.org/005ev0c40', 'no_lang_code', 1, 'https://ror.org/005ev0c40 IMU Institut (Germany)'),
(72916, 'https://ror.org/010qd1m54', 'no_lang_code', 1, 'https://ror.org/010qd1m54 Institut für Nachhaltige Landbewirtschaftung (Germany)'),
(72917, 'https://ror.org/02z96c921', 'no_lang_code', 1, 'https://ror.org/02z96c921 Institut für Normenmanagement (Germany)'),
(72918, '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)'),
(72919, 'https://ror.org/04mnn5409', 'no_lang_code', 1, 'https://ror.org/04mnn5409 Institut für Nachhaltige, Innovative und Angewandte Systemtechnik (Germany)'),
(72920, 'https://ror.org/00dg4wf63', 'de', 1, 'https://ror.org/00dg4wf63 Institut zur Fƶrderung von Bildung und Integration'),
(72921, 'https://ror.org/052k2qm78', 'no_lang_code', 1, 'https://ror.org/052k2qm78 Industrial Research & Engineering (Germany)'),
(72922, 'https://ror.org/02y5eka83', 'de', 1, 'https://ror.org/02y5eka83 Industriegewerkschaft Bauen-Agrar-Umwelt'),
(72923, 'https://ror.org/023d46310', 'en', 1, 'https://ror.org/023d46310 Institut Input'),
(72924, 'https://ror.org/01n1byn02', 'de', 1, 'https://ror.org/01n1byn02 Institut der Feuerwehr Nordrhein-Westfalen'),
(72925, 'https://ror.org/00sf4jq50', 'de', 1, 'https://ror.org/00sf4jq50 Institut für Brand- und Katastrophenschutz Heyrothsberge'),
(72926, 'https://ror.org/03557sx70', 'de', 1, 'https://ror.org/03557sx70 Institut für Angewandte Innovationsforschung'),
(72927, 'https://ror.org/000mrg216', 'no_lang_code', 1, 'https://ror.org/000mrg216 Industrieverband Feuerverzinken (Germany)'),
(72928, 'https://ror.org/04dmgcf89', 'de', 1, 'https://ror.org/04dmgcf89 Institut Für Angewandte Kulturforschung'),
(72929, 'https://ror.org/02rmvby88', 'de', 1, 'https://ror.org/02rmvby88 Institut für Angewandte Trainingswissenschaft'),
(72930, 'https://ror.org/01py4yp62', 'de', 1, 'https://ror.org/01py4yp62 Institut für Abfall, Abwasser, Site und Facility Management'),
(72931, 'https://ror.org/04yxsy717', 'no_lang_code', 1, 'https://ror.org/04yxsy717 Institut für Angewandte Verkehrs- und Tourismusforschung (Germany)'),
(72932, 'https://ror.org/04fcjpg80', 'de', 1, 'https://ror.org/04fcjpg80 Holzbau Deutschland-Institut'),
(72933, 'https://ror.org/05ycrqt76', 'de', 1, 'https://ror.org/05ycrqt76 Institut für angewandte Forschung im Bauwesen'),
(72934, 'https://ror.org/03c1b7x32', 'no_lang_code', 1, 'https://ror.org/03c1b7x32 Institut für Angewandte Gewässerökologie (Germany)'),
(72935, 'https://ror.org/040w54343', 'no_lang_code', 1, 'https://ror.org/040w54343 Institut Für Arbeits- und Baubetriebswissenschaft (Germany)'),
(72936, 'https://ror.org/04tjwpz93', 'de', 1, 'https://ror.org/04tjwpz93 Institut für Arbeitsmarktforschung und Jugendberufshilfe'),
(72937, 'https://ror.org/052rnf523', 'de', 1, 'https://ror.org/052rnf523 Institut für Assistenzsysteme und Qualifizierung'),
(72938, 'https://ror.org/03f8e0241', 'en', 1, 'https://ror.org/03f8e0241 Allensbach Institute Institut für Demoskopie Allensbach'),
(72939, 'https://ror.org/058rtc669', 'de', 1, 'https://ror.org/058rtc669 Institut für Diagnostik und Konservierung an Denkmalen in Sachsen und Sachsen-Anhalt'),
(72940, 'https://ror.org/032fpkt80', 'de', 1, 'https://ror.org/032fpkt80 Institut für Gewässerschutz Mesocosm Mesocosm'),
(72941, 'https://ror.org/03r7aan38', 'de', 1, 'https://ror.org/03r7aan38 Institut für Bauforschung'),
(72942, 'https://ror.org/03n9ycw45', 'no_lang_code', 1, 'https://ror.org/03n9ycw45 Institut für gewerbliche Wasserwirtschaft und Luftreinhaltung (Germany)'),
(72943, 'https://ror.org/010xsqw81', 'no_lang_code', 1, 'https://ror.org/010xsqw81 Institut für Bauphysik und Bauchemie (Germany)'),
(72944, 'https://ror.org/05xzypt50', 'en', 1, 'https://ror.org/05xzypt50 IDMRC Institut Engineering Design of Mechatronik System und MPLM'),
(72945, 'https://ror.org/01jw3cq70', 'no_lang_code', 1, 'https://ror.org/01jw3cq70 Institut für Entsorgung und Umwelttechnik (Germany)'),
(72946, 'https://ror.org/05jj4yb28', 'no_lang_code', 1, 'https://ror.org/05jj4yb28 Institut für Bauwerkserhaltung und Sanierung (Germany)'),
(72947, 'https://ror.org/05bnan144', 'de', 1, 'https://ror.org/05bnan144 Institut für Berufliche Aus- und Fortbildung'),
(72948, 'https://ror.org/00y9hdv35', 'de', 1, 'https://ror.org/00y9hdv35 Institut für Hämatopathologie Hamburg'),
(72949, 'https://ror.org/01qve8440', 'de', 1, 'https://ror.org/01qve8440 Institut für Berufliche Bildung'),
(72950, 'https://ror.org/05bvzth27', 'en', 1, 'https://ror.org/05bvzth27 Institut für Europäisches Medienrecht Institute of European Media Law'),
(72951, 'https://ror.org/030qw5707', 'no_lang_code', 1, 'https://ror.org/030qw5707 Institut für Experimentelle Psychophysiologie Institute for Experimental Psychophysiology (Germany)'),
(72952, 'https://ror.org/02r5q4n43', 'de', 1, 'https://ror.org/02r5q4n43 Institut für Finanzdienstleistungen'),
(72953, 'https://ror.org/00xa4tk19', 'en', 1, 'https://ror.org/00xa4tk19 Suratthani Cancer Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąøŖąøøąø£ąø²ąø©ąøŽąø£ą¹Œąø˜ąø²ąø™ąøµ'),
(72954, 'https://ror.org/0303j9k30', 'no_lang_code', 1, 'https://ror.org/0303j9k30 Institut für Betriebliche Bildung und Unternehmenskultur (Germany)'),
(72955, 'https://ror.org/040me2j46', 'es', 1, 'https://ror.org/040me2j46 Centro de Estudios FotosintƩticos y Bioquƭmicos'),
(72956, 'https://ror.org/014x0rv86', 'en', 1, 'https://ror.org/014x0rv86 Institut für Bildung und Kultur Institute for Education and Culture'),
(72957, 'https://ror.org/04x6bfw13', 'de', 1, 'https://ror.org/04x6bfw13 Gesellschaft für Pädagogik und Information'),
(72958, 'https://ror.org/01f30wv40', 'de', 1, 'https://ror.org/01f30wv40 Institut für Frauengesundheit'),
(72959, 'https://ror.org/03xa7rm31', 'de', 1, 'https://ror.org/03xa7rm31 Institut für Freizeitwissenschaft und Kulturarbeit'),
(72960, 'https://ror.org/05b75xp43', 'no_lang_code', 1, 'https://ror.org/05b75xp43 Institut für Geologie und Umwelt (Germany)'),
(72961, 'https://ror.org/02b790a63', 'en', 1, 'https://ror.org/02b790a63 Institute of Computer Vision and Applied Computer Sciences'),
(72962, 'https://ror.org/05e30np90', 'en', 1, 'https://ror.org/05e30np90 Institut für Gerontologische Forschung Institute for Gerontological Research'),
(72963, 'https://ror.org/01n8ggb71', 'en', 1, 'https://ror.org/01n8ggb71 Institut für Biodiversität Institute for Biodiversity'),
(72964, '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'),
(72965, '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'),
(72966, 'https://ror.org/051zgzc60', 'de', 1, 'https://ror.org/051zgzc60 Institut für Bodenkultur und Pflanzenbau'),
(72967, 'https://ror.org/052d0ye06', 'de', 1, 'https://ror.org/052d0ye06 Institut für Internationale Kommunikation'),
(72968, 'https://ror.org/05n6np283', 'no_lang_code', 1, 'https://ror.org/05n6np283 Gesellschaft für Konsumforschung GfK (Germany)'),
(72969, 'https://ror.org/05mj78g51', 'no_lang_code', 1, 'https://ror.org/05mj78g51 Institut für Markt- und Werbeforschung (Germany)'),
(72970, 'https://ror.org/04cghfw81', 'de', 1, 'https://ror.org/04cghfw81 Institut für Korrosions- und Schadensanalyse Dr.-Ing. Sabine Schultze'),
(72971, 'https://ror.org/00124ry56', 'no_lang_code', 1, 'https://ror.org/00124ry56 Institut für Modelle Beruflicher und Sozialer Entwicklung (Germany)'),
(72972, 'https://ror.org/045smr203', 'en', 1, 'https://ror.org/045smr203 Warm Heart Worldwide'),
(72973, 'https://ror.org/02w28c661', 'de', 1, 'https://ror.org/02w28c661 Institut für Kunststofftechnologie und -recycling'),
(72974, 'https://ror.org/0286azq87', 'de', 1, 'https://ror.org/0286azq87 Institut für kybernetisches Planen und Bauen'),
(72975, 'https://ror.org/00d22z552', 'de', 1, 'https://ror.org/00d22z552 Institut für Qualitätssicherung von Stoffsystemen Freiberg'),
(72976, 'https://ror.org/03wjf5d60', 'en', 1, 'https://ror.org/03wjf5d60 American Speech-Language-Hearing Foundation'),
(72977, 'https://ror.org/03d66dp54', 'no_lang_code', 1, 'https://ror.org/03d66dp54 ClĆ­nica MEDS (Chile)'),
(72978, 'https://ror.org/04r7vw960', 'de', 1, 'https://ror.org/04r7vw960 Institut für Regionale Innovation und Sozialforschung'),
(72979, 'https://ror.org/024gk5m97', 'en', 1, 'https://ror.org/024gk5m97 Institut für nachhaltige Berufsbildung & Management-Services Institute for Sustainable TVET & Management Services'),
(72980, 'https://ror.org/01ksmk704', 'de', 1, 'https://ror.org/01ksmk704 Institut für Rohrleitungsbau an der Fachhochschule Oldenburg'),
(72981, 'https://ror.org/0189mfq62', 'no_lang_code', 1, 'https://ror.org/0189mfq62 Deutsche Messe (Germany)'),
(72982, 'https://ror.org/02mwnke68', 'de', 1, 'https://ror.org/02mwnke68 Brüderkrankenhaus St. Josef Paderborn'),
(72983, 'https://ror.org/035kwsm70', 'en', 1, 'https://ror.org/035kwsm70 Institut für Neue Medien Institute for New Media'),
(72984, 'https://ror.org/00bs1hy45', 'en', 1, 'https://ror.org/00bs1hy45 Hospital PediƔtrico "Baca Ortiz" Pediatric Hospital "Baca Ortiz"'),
(72985, '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'),
(72986, 'https://ror.org/01bvph436', 'en', 1, 'https://ror.org/01bvph436 Rotunda – The Center for Human Reproduction'),
(72987, 'https://ror.org/05ydhxb54', 'no_lang_code', 1, 'https://ror.org/05ydhxb54 Sustainable Business Institute (Germany)'),
(72988, 'https://ror.org/001p6v129', 'de', 1, 'https://ror.org/001p6v129 Institut für Sicherheitstechnik / Schiffssicherheit'),
(72989, 'https://ror.org/0303jkh46', 'de', 1, 'https://ror.org/0303jkh46 Institut für Sozialarbeit und Sozialpädagogik'),
(72990, 'https://ror.org/0484fgk51', 'no_lang_code', 1, 'https://ror.org/0484fgk51 Institut für Pflanzenkultur (Germany)'),
(72991, 'https://ror.org/04bhvak10', 'de', 1, 'https://ror.org/04bhvak10 Institut für Soziale Arbeit'),
(72992, 'https://ror.org/01ffdac64', 'de', 1, 'https://ror.org/01ffdac64 Institut für Sozialforschung und Sozialplanung'),
(72993, 'https://ror.org/03dfgbb18', 'en', 1, 'https://ror.org/03dfgbb18 Institut für Sozialinnovation Institute for Social Innovation'),
(72994, 'https://ror.org/05sgwkz06', 'en', 1, 'https://ror.org/05sgwkz06 TepatitlƔn''s Institute for Theoretical Studies'),
(72995, 'https://ror.org/04b8mn532', 'de', 1, 'https://ror.org/04b8mn532 Institut für Sozialpädagogische Forschung Mainz'),
(72996, 'https://ror.org/0424wxn97', 'de', 1, 'https://ror.org/0424wxn97 Institut für Postfossile Logistik'),
(72997, 'https://ror.org/030t3gw93', 'de', 1, 'https://ror.org/030t3gw93 Institut für Praxisforschung und Projektberatung'),
(72998, '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'),
(72999, 'https://ror.org/01bxpwm10', 'de', 1, 'https://ror.org/01bxpwm10 Institut für Wasser und Boden Dr. Uhlmann'),
(73000, 'https://ror.org/0525ff954', 'no_lang_code', 1, 'https://ror.org/0525ff954 Institut Für Prozeßadaptive und Erfahrungsgeleitete Automatisierung (Germany)'),
(73001, 'https://ror.org/01q8n5k63', 'de', 1, 'https://ror.org/01q8n5k63 Institut für Prozessoptimierung und Informationstechnologien'),
(73002, 'https://ror.org/02nmjzp92', 'de', 1, 'https://ror.org/02nmjzp92 Institut für Wasserwirtschaft Siedlungswasserbau und Ɩkologie'),
(73003, 'https://ror.org/015706c71', 'no_lang_code', 1, 'https://ror.org/015706c71 Institut für Stahlbau Leipzig (Germany)'),
(73004, 'https://ror.org/05rg1zz45', 'de', 1, 'https://ror.org/05rg1zz45 Institut für Wildbiologie Göttingen und Dresden'),
(73005, '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)'),
(73006, 'https://ror.org/059q89q46', 'no_lang_code', 1, 'https://ror.org/059q89q46 Institut für Textiltechnik Augsburg (Germany)'),
(73007, 'https://ror.org/012797s84', 'no_lang_code', 1, 'https://ror.org/012797s84 Institut für Zukunftsorientierte Arbeitsgestaltung (Germany)'),
(73008, 'https://ror.org/00wg9tw09', 'de', 1, 'https://ror.org/00wg9tw09 Institut für Textoptimierung'),
(73009, 'https://ror.org/02zb6h937', 'de', 1, 'https://ror.org/02zb6h937 Institut Mensch, Ethik und Wissenschaft'),
(73010, 'https://ror.org/0121c6k67', 'no_lang_code', 1, 'https://ror.org/0121c6k67 Institut Stadt I MobilitƤt I Energie (Germany)'),
(73011, 'https://ror.org/054j2ss72', 'en', 1, 'https://ror.org/054j2ss72 New Insights for Tourism'),
(73012, 'https://ror.org/036md6q83', 'de', 1, 'https://ror.org/036md6q83 Inter 3 inter 3 Institut für Ressourcenmanagement'),
(73013, 'https://ror.org/0317mkd29', 'no_lang_code', 1, 'https://ror.org/0317mkd29 Interfels (Germany)'),
(73014, 'https://ror.org/04qv8g759', 'en', 1, 'https://ror.org/04qv8g759 International Baccalaureate'),
(73015, 'https://ror.org/04ttja383', 'de', 1, 'https://ror.org/04ttja383 Internationale Akademie Berlin'),
(73016, 'https://ror.org/04se47j24', 'en', 1, 'https://ror.org/04se47j24 International Council for Open and Distance Education'),
(73017, 'https://ror.org/00zx7vr24', 'no_lang_code', 1, 'https://ror.org/00zx7vr24 Kage Mikrofotografie (Germany)'),
(73018, 'https://ror.org/00m22r904', 'no_lang_code', 1, 'https://ror.org/00m22r904 Vim Spectrum'),
(73019, 'https://ror.org/023nd1r80', 'en', 1, 'https://ror.org/023nd1r80 International Council on Education for Teaching'),
(73020, 'https://ror.org/05pb19q07', 'en', 1, 'https://ror.org/05pb19q07 Institut für Internationale Stadtforschung Institute for International Urban Research'),
(73021, 'https://ror.org/01kgmpa94', 'en', 1, 'https://ror.org/01kgmpa94 Institut für innovative Verfahrenstechnik Institute for Innovative Process Engineering'),
(73022, 'https://ror.org/025frdg11', 'en', 1, 'https://ror.org/025frdg11 Institut für sozialwissenschaftliche Beratung Institute for Socio-Scientific Consultancy'),
(73023, 'https://ror.org/05yanja12', 'de', 1, 'https://ror.org/05yanja12 Institut für Wohnungswesen Immobilienwirtschaft Stadt- und Regionalentwicklung'),
(73024, 'https://ror.org/00ddzkr50', 'no_lang_code', 1, 'https://ror.org/00ddzkr50 Isogen (Germany)'),
(73025, 'https://ror.org/054a82660', 'de', 1, 'https://ror.org/054a82660 Institut Psychologie und Bedrohungsmanagement'),
(73026, 'https://ror.org/03abd2075', 'de', 1, 'https://ror.org/03abd2075 Institut für Angewandte Statistik'),
(73027, 'https://ror.org/045jy1q53', 'de', 1, 'https://ror.org/045jy1q53 Instituts für Strukturpolitik und Wirtschaftsförderung Gemeinnützige Gesellschaft'),
(73028, 'https://ror.org/021qr1j12', 'no_lang_code', 1, 'https://ror.org/021qr1j12 Institut für Innovative Technologien (Germany)'),
(73029, 'https://ror.org/00r4e6n79', 'de', 1, 'https://ror.org/00r4e6n79 Institut für Innovation, Transfer und Beratung'),
(73030, 'https://ror.org/02gtftk26', 'no_lang_code', 1, 'https://ror.org/02gtftk26 Institut für Technische Beratung und Produktentwicklung (Germany)'),
(73031, 'https://ror.org/01xxch676', 'de', 1, 'https://ror.org/01xxch676 Institut für Sozialforschung und Berufliche Weiterbildung'),
(73032, 'https://ror.org/00h03ws35', 'no_lang_code', 1, 'https://ror.org/00h03ws35 Institut für Umwelttechnologien (Germany)'),
(73033, 'https://ror.org/03bf2s235', 'de', 1, 'https://ror.org/03bf2s235 Institut für Umweltwirtschaftsanalysen Heidelberg'),
(73034, 'https://ror.org/03vz97823', 'de', 1, 'https://ror.org/03vz97823 Institut für Lonenstrahl– und Vakuumverfahrenstechnik'),
(73035, 'https://ror.org/02h8xbx21', 'de', 1, 'https://ror.org/02h8xbx21 Institut für Site und Facility Management'),
(73036, 'https://ror.org/02pf5x519', 'de', 1, 'https://ror.org/02pf5x519 Institut der Wirtschaft Thüringens'),
(73037, 'https://ror.org/03xzfkg70', 'no_lang_code', 1, 'https://ror.org/03xzfkg70 ISB (Germany)'),
(73038, 'https://ror.org/0125qer46', 'de', 1, 'https://ror.org/0125qer46 Die Johanniter'),
(73039, 'https://ror.org/03hm29g42', 'no_lang_code', 1, 'https://ror.org/03hm29g42 KHD Humboldt Wedag (Germany)'),
(73040, 'https://ror.org/02rdd6b90', 'no_lang_code', 1, 'https://ror.org/02rdd6b90 Johner Institut (Germany)'),
(73041, 'https://ror.org/01c1pcz80', 'de', 1, 'https://ror.org/01c1pcz80 Kleine Private Lehrinstitut Derksen'),
(73042, 'https://ror.org/018ftzc45', 'no_lang_code', 1, 'https://ror.org/018ftzc45 K8 Institute of Strategic Aesthetics (Germany)'),
(73043, 'https://ror.org/02epb4723', 'de', 1, 'https://ror.org/02epb4723 Klinik St. Irmingard'),
(73044, 'https://ror.org/03dyvyv84', 'de', 1, 'https://ror.org/03dyvyv84 Felsenweg-Institut'),
(73045, 'https://ror.org/054d0qa72', 'de', 1, 'https://ror.org/054d0qa72 Kasseler Institut für Ländliche Entwicklung'),
(73046, 'https://ror.org/05frf1z87', 'de', 1, 'https://ror.org/05frf1z87 Katalyse Institut'),
(73047, 'https://ror.org/02t7ezd72', 'de', 1, 'https://ror.org/02t7ezd72 Kulturpolitische Gesellschaft'),
(73048, 'https://ror.org/02nfc4q85', 'no_lang_code', 1, 'https://ror.org/02nfc4q85 Kunststoff Institut Südwest (Germany)'),
(73049, 'https://ror.org/028nwg363', 'de', 1, 'https://ror.org/028nwg363 Landesforst Mecklenburg‑Vorpommern'),
(73050, 'https://ror.org/015ad1e56', 'de', 1, 'https://ror.org/015ad1e56 Landesinstitut für Arbeitsgestaltung des Landes Nordrhein-Westfalen'),
(73051, 'https://ror.org/04d5bgh87', 'de', 1, 'https://ror.org/04d5bgh87 Landesanstalt für Kommunikation'),
(73052, 'https://ror.org/03catpf85', 'de', 1, 'https://ror.org/03catpf85 Landesinstitut für Präventives Handeln'),
(73053, 'https://ror.org/02z4esg96', 'de', 1, 'https://ror.org/02z4esg96 Landesanstalt für Landwirtschaft und Gartenbau'),
(73054, 'https://ror.org/0547r0f90', 'de', 1, 'https://ror.org/0547r0f90 Landesinstitut für Schule und Medien Berlin-Brandenburg'),
(73055, 'https://ror.org/025my6r54', 'de', 1, 'https://ror.org/025my6r54 Landeskriminalamt Niedersachsen'),
(73056, 'https://ror.org/04zt7e430', 'de', 1, 'https://ror.org/04zt7e430 Landesanstalt für Schweinezucht'),
(73057, 'https://ror.org/05rnzt975', 'de', 1, 'https://ror.org/05rnzt975 Landwirtschaftliches Technologiezentrum Augustenberg'),
(73058, 'https://ror.org/0000fr117', 'de', 1, 'https://ror.org/0000fr117 Landesbetrieb Landwirtschaft Hessen'),
(73059, 'https://ror.org/00mbc1g87', 'de', 1, 'https://ror.org/00mbc1g87 Chamber of Agriculture in Lower Saxony Landwirtschaftskammer Niedersachsen'),
(73060, 'https://ror.org/059k3xc14', 'de', 1, 'https://ror.org/059k3xc14 Landwirtschaftskammer Nordrhein-Westfalen'),
(73061, 'https://ror.org/02f0gnt04', 'no_lang_code', 1, 'https://ror.org/02f0gnt04 Jena Bioscience (Germany)'),
(73062, 'https://ror.org/03qwtkn62', 'de', 1, 'https://ror.org/03qwtkn62 Lebensmittelinstitut KIN'),
(73063, 'https://ror.org/039f79x37', 'de', 1, 'https://ror.org/039f79x37 M2C Institut für Angewandte Medienforschung'),
(73064, 'https://ror.org/05gcs8229', 'en', 1, 'https://ror.org/05gcs8229 Microstructure and Pores'),
(73065, 'https://ror.org/02pc86x52', 'de', 1, 'https://ror.org/02pc86x52 Leipziger Institut für Angewandte Weiterbildungsforschung'),
(73066, 'https://ror.org/0407aqe25', 'de', 1, 'https://ror.org/0407aqe25 Märkisches Institut für Technologie- und Innovationsförderung'),
(73067, 'https://ror.org/02a1xcr76', 'de', 1, 'https://ror.org/02a1xcr76 Mathe im Leben'),
(73068, 'https://ror.org/03225mv93', 'de', 1, 'https://ror.org/03225mv93 MuseumspƤdagogische Zentrum'),
(73069, 'https://ror.org/032kevw42', 'en', 1, 'https://ror.org/032kevw42 Magnetic Resonance Institute for Safety, Technology and Research'),
(73070, 'https://ror.org/04aej1r39', 'en', 1, 'https://ror.org/04aej1r39 Deutsche MTM-Vereinigung German MTM Association'),
(73071, 'https://ror.org/05c1tqh91', 'en', 1, 'https://ror.org/05c1tqh91 Museum am Rothenbaum Museum für Völkerkunde Hamburg'),
(73072, 'https://ror.org/057341e57', 'en', 1, 'https://ror.org/057341e57 Museum für Kunst und Gewerbe Hamburg Museum of Art and Design Hamburg'),
(73073, 'https://ror.org/01hs4tb08', 'de', 1, 'https://ror.org/01hs4tb08 Museumslandschaft Hessen Kassel'),
(73074, 'https://ror.org/00mczy147', 'de', 1, 'https://ror.org/00mczy147 Medien Management Institut'),
(73075, 'https://ror.org/04dmvwm54', 'de', 1, 'https://ror.org/04dmvwm54 Medizinische Akademie Erfurt'),
(73076, 'https://ror.org/05q8a8a56', 'en', 1, 'https://ror.org/05q8a8a56 Hospice Palliative Care Alliance of China Foundation'),
(73077, 'https://ror.org/02y1msw11', 'en', 1, 'https://ror.org/02y1msw11 Nature And Biodiversity Conservation Union Naturschutzbund Deutschland'),
(73078, 'https://ror.org/052gwma96', 'de', 1, 'https://ror.org/052gwma96 Medizinischer FakultƤtentag'),
(73079, 'https://ror.org/017jr1555', 'en', 1, 'https://ror.org/017jr1555 Mercator Institute for China Studies'),
(73080, 'https://ror.org/018fbs662', 'de', 1, 'https://ror.org/018fbs662 Nestor Bildungsinstitut'),
(73081, 'https://ror.org/03e7w2h22', 'en', 1, 'https://ror.org/03e7w2h22 NewClimate Institute'),
(73082, 'https://ror.org/002jq3415', 'en', 1, 'https://ror.org/002jq3415 Mercator Research Institute on Global Commons and Climate Change'),
(73083, 'https://ror.org/04yzfbe56', 'no_lang_code', 1, 'https://ror.org/04yzfbe56 Management Institut Bochum (Germany)'),
(73084, 'https://ror.org/057tsam22', 'de', 1, 'https://ror.org/057tsam22 mmb Institut'),
(73085, 'https://ror.org/00skh8d23', 'no_lang_code', 1, 'https://ror.org/00skh8d23 Modeinstitut Berlin (Germany)'),
(73086, 'https://ror.org/04tasdp68', 'no_lang_code', 1, 'https://ror.org/04tasdp68 NursIT Institute (Germany)'),
(73087, 'https://ror.org/01z2jfk91', 'de', 1, 'https://ror.org/01z2jfk91 Ostasien-Institut'),
(73088, 'https://ror.org/03na1e324', 'de', 1, 'https://ror.org/03na1e324 Ostbayerisches Technologie-Transfer-Institut'),
(73089, 'https://ror.org/03q2xbs92', 'no_lang_code', 1, 'https://ror.org/03q2xbs92 Ostwestfälisches Institut für Innovative Technologien in der Automatisierungstechnik (Germany)'),
(73090, 'https://ror.org/00bs41j64', 'en', 1, 'https://ror.org/00bs41j64 United Nations Department of Peacekeeping Operations'),
(73091, 'https://ror.org/04567sh69', 'en', 1, 'https://ror.org/04567sh69 United Nations Office on Drugs and Crime'),
(73092, 'https://ror.org/03nkb8t76', 'de', 1, 'https://ror.org/03nkb8t76 PƤdea'),
(73093, 'https://ror.org/033sga382', 'de', 1, 'https://ror.org/033sga382 Pathologie Hamburg-West'),
(73094, 'https://ror.org/03vmsb260', 'en', 1, 'https://ror.org/03vmsb260 United Nations University Institute for the Advanced Study of Sustainability å›½é€£å¤§å­¦ć‚µć‚¹ćƒ†ć‚¤ćƒŠćƒ“ćƒŖćƒ†ć‚£é«˜ē­‰ē ”ē©¶ę‰€'),
(73095, 'https://ror.org/01rxgdr42', 'de', 1, 'https://ror.org/01rxgdr42 PECO-Institut'),
(73096, 'https://ror.org/047d27s15', 'de', 1, 'https://ror.org/047d27s15 Permakultur Institut'),
(73097, 'https://ror.org/00717c553', 'de', 1, 'https://ror.org/00717c553 Philosophisch-Theologische Hochschule Münster'),
(73098, 'https://ror.org/013c0df84', 'de', 1, 'https://ror.org/013c0df84 Progress-Institut für Wirtschaftsforschung'),
(73099, 'https://ror.org/01jk11645', 'de', 1, 'https://ror.org/01jk11645 Institut für Tier-, Natur- und Umweltethik'),
(73100, 'https://ror.org/0425qnd07', 'no_lang_code', 1, 'https://ror.org/0425qnd07 Institut für Produktionsmanagement und Logistik (Germany)'),
(73101, 'https://ror.org/04wea6506', 'no_lang_code', 1, 'https://ror.org/04wea6506 Protekum (Germany)'),
(73102, 'https://ror.org/03xt7qs06', 'no_lang_code', 1, 'https://ror.org/03xt7qs06 Institut Raum & Energie (Germany)'),
(73103, 'https://ror.org/01c3m4791', 'no_lang_code', 1, 'https://ror.org/01c3m4791 Regio (Germany)'),
(73104, 'https://ror.org/02mq55t12', 'en', 1, 'https://ror.org/02mq55t12 Rhein-Ruhr Institut für angewandte Systeminnovation Rhine-Ruhr Institute for Applied Systeminnovation'),
(73105, 'https://ror.org/04zwys509', 'no_lang_code', 1, 'https://ror.org/04zwys509 Petkus (Germany)'),
(73106, 'https://ror.org/040t4st49', 'de', 1, 'https://ror.org/040t4st49 Ruhr-Forschungsinstitut für Innovations- und Strukturpolitik'),
(73107, 'https://ror.org/01drpqr75', 'no_lang_code', 1, 'https://ror.org/01drpqr75 Technologiezentrum Dresden (Germany)'),
(73108, 'https://ror.org/03q46bp55', 'no_lang_code', 1, 'https://ror.org/03q46bp55 Sapper Institut (Germany)'),
(73109, 'https://ror.org/051wgwg77', 'en', 1, 'https://ror.org/051wgwg77 Institute for Social Research and Project Consultancy'),
(73110, 'https://ror.org/01tfspm44', 'de', 1, 'https://ror.org/01tfspm44 Sozialwissenschaftliches Forschungszentrum Berlin-Brandenburg'),
(73111, 'https://ror.org/00ptgb077', 'de', 1, 'https://ror.org/00ptgb077 Staatsinstitut für Schulqualität und Bildungsforschung'),
(73112, 'https://ror.org/00yd0p282', 'en', 1, 'https://ror.org/00yd0p282 Institute of Microbiology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ микробиологии'),
(73113, 'https://ror.org/02b7wb227', 'de', 1, 'https://ror.org/02b7wb227 Feuerwehr Dortmund'),
(73114, 'https://ror.org/008pcc762', 'de', 1, 'https://ror.org/008pcc762 Museum Folkwang'),
(73115, 'https://ror.org/035ygmd05', 'no_lang_code', 1, 'https://ror.org/035ygmd05 Spiegel Institut (Germany)'),
(73116, 'https://ror.org/02cd38e76', 'de', 1, 'https://ror.org/02cd38e76 Jüdisches Museum'),
(73117, 'https://ror.org/03jy5m525', 'de', 1, 'https://ror.org/03jy5m525 StƤdtisches Museum Schloss Rheydt'),
(73118, 'https://ror.org/04ptve456', 'de', 1, 'https://ror.org/04ptve456 Dominikanerkloster Prenzlau'),
(73119, 'https://ror.org/02jskg402', 'de', 1, 'https://ror.org/02jskg402 Naturalienkabinett Waldenburg'),
(73120, 'https://ror.org/007gt1a87', 'de', 1, 'https://ror.org/007gt1a87 StƤdtisches Klinikum Dresden'),
(73121, 'https://ror.org/05d1vf827', 'de', 1, 'https://ror.org/05d1vf827 Klinikum Passau'),
(73122, 'https://ror.org/04jma3v53', 'de', 1, 'https://ror.org/04jma3v53 Steinbeis Forschungszentrum Technologie-Management Nordost'),
(73123, 'https://ror.org/03jyr3j92', 'de', 1, 'https://ror.org/03jyr3j92 Staatliche Lehr- und Versuchsanstalt für Gartenbau'),
(73124, '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'),
(73125, 'https://ror.org/00w894124', 'en', 1, 'https://ror.org/00w894124 Bochum Observatory Sternwarte Bochum'),
(73126, 'https://ror.org/04cxrsp65', 'de', 1, 'https://ror.org/04cxrsp65 Frankfurter Stiftung für Blinde und Sehbehinderte'),
(73127, 'https://ror.org/05m87nk97', 'de', 1, 'https://ror.org/05m87nk97 Stiftung SozialpƤdagogisches Institut'),
(73128, 'https://ror.org/02r6b5k11', 'no_lang_code', 1, 'https://ror.org/02r6b5k11 Sustainum Institut (Germany)'),
(73129, 'https://ror.org/00pptj576', 'de', 1, 'https://ror.org/00pptj576 Institut für Fortbildung, Forschung und Entwicklung'),
(73130, 'https://ror.org/029djbz77', 'de', 1, 'https://ror.org/029djbz77 Institut für Hygiene und Umwelt'),
(73131, 'https://ror.org/04j6d9v78', 'de', 1, 'https://ror.org/04j6d9v78 Institut für Instandhaltung und Korrosionsschutztechnik'),
(73132, 'https://ror.org/00hbc3482', 'de', 1, 'https://ror.org/00hbc3482 Institut für Innovations- und Informationsmanagement'),
(73133, 'https://ror.org/04hbw4m86', 'de', 1, 'https://ror.org/04hbw4m86 Institut für Energie- und Umwelttechnik'),
(73134, 'https://ror.org/02tt19214', 'de', 1, 'https://ror.org/02tt19214 Steyler Mission'),
(73135, 'https://ror.org/00rb4xa96', 'en', 1, 'https://ror.org/00rb4xa96 United Nations Office for Project Services'),
(73136, 'https://ror.org/03y4qb345', 'de', 1, 'https://ror.org/03y4qb345 Institut für Automobilwirtschaft'),
(73137, 'https://ror.org/01kcsv364', 'de', 1, 'https://ror.org/01kcsv364 Internationales Institut für Sozio-Informatik'),
(73138, 'https://ror.org/042s3g481', 'no_lang_code', 1, 'https://ror.org/042s3g481 Thuringian Institute of Sustainability and Climate Protection (Germany)'),
(73139, 'https://ror.org/01vpzfr92', 'de', 1, 'https://ror.org/01vpzfr92 ThüringenForst'),
(73140, 'https://ror.org/01bk4zx34', 'de', 1, 'https://ror.org/01bk4zx34 Thüringer Institut für Akademische Weiterbildung'),
(73141, 'https://ror.org/00hyd8090', 'de', 1, 'https://ror.org/00hyd8090 Institut für Medizinische Biometrie, Informatik und Epidemiologie'),
(73142, 'https://ror.org/024e1fw78', 'de', 1, 'https://ror.org/024e1fw78 Institut für Polymerwerkstoffe'),
(73143, 'https://ror.org/00etypk41', 'no_lang_code', 1, 'https://ror.org/00etypk41 Institut für Umformtechnik (Germany)'),
(73144, 'https://ror.org/040d99j97', 'en', 1, 'https://ror.org/040d99j97 Institut für Wissenschaft und Ethik Institute of Science and Ethics'),
(73145, 'https://ror.org/054kgce12', 'de', 1, 'https://ror.org/054kgce12 An-Institut für Transfer und Weiterbildung'),
(73146, 'https://ror.org/0029pc197', 'en', 1, 'https://ror.org/0029pc197 Institute of Electronic Business'),
(73147, 'https://ror.org/026zv7h71', 'de', 1, 'https://ror.org/026zv7h71 TUMAINI-Institut für Präventionsmanagement'),
(73148, 'https://ror.org/00cx3rx26', 'en', 1, 'https://ror.org/00cx3rx26 Overseas Museum Übersee Museum'),
(73149, 'https://ror.org/02dm92c46', 'de', 1, 'https://ror.org/02dm92c46 Europa-Institut'),
(73150, 'https://ror.org/02ypd0j53', 'en', 1, 'https://ror.org/02ypd0j53 Independent Institute for Environmental Issues Unabhängiges Institut für Umweltfragen'),
(73151, 'https://ror.org/057qmer80', 'en', 1, 'https://ror.org/057qmer80 Univation Institut für Evaluation Dr. Beywl & Associates'),
(73152, 'https://ror.org/00e8ed254', 'de', 1, 'https://ror.org/00e8ed254 Rhein-Ruhr Institut für Sozialforschung und Politikberatung'),
(73153, 'https://ror.org/01k8fm112', 'de', 1, 'https://ror.org/01k8fm112 UniversitƤt Bayern'),
(73154, 'https://ror.org/02dxkcn59', 'de', 1, 'https://ror.org/02dxkcn59 Hochschuldidaktischen Zentrum Sachsen'),
(73155, 'https://ror.org/0010cp777', 'de', 1, 'https://ror.org/0010cp777 Institut für Mittelstandsforschung'),
(73156, 'https://ror.org/05bv91d86', 'en', 1, 'https://ror.org/05bv91d86 Mannheim Centre for European Social Research Mannheimer Zentrum für Europäische Sozialforschung'),
(73157, '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'),
(73158, 'https://ror.org/02n94hw85', 'en', 1, 'https://ror.org/02n94hw85 Institut für Enterprise Systems Institute for Enterprise Systems'),
(73159, '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'),
(73160, 'https://ror.org/0099s2a30', 'en', 1, 'https://ror.org/0099s2a30 German United Services Trade Union Vereinte Dienstleistungsgewerkschaft'),
(73161, 'https://ror.org/00cx2cp03', 'en', 1, 'https://ror.org/00cx2cp03 Association of German Agricultural Analytic and Research Institutes'),
(73162, 'https://ror.org/042031a56', 'de', 1, 'https://ror.org/042031a56 Verband SƤchsischer Bildungsinstitute'),
(73163, 'https://ror.org/0220pa788', 'de', 1, 'https://ror.org/0220pa788 Verein für Psychosoziale Initiativen'),
(73164, 'https://ror.org/00jy7vv12', 'de', 1, 'https://ror.org/00jy7vv12 Verein für Umweltmanagement und Nachhaltigkeit in Finanzinstituten'),
(73165, 'https://ror.org/047ffme03', 'no_lang_code', 1, 'https://ror.org/047ffme03 Urban Institute (Germany)'),
(73166, 'https://ror.org/01j66t516', 'de', 1, 'https://ror.org/01j66t516 Verein zur Fƶrderung Agrar- und Stadtƶkologischer Projekte'),
(73167, 'https://ror.org/04bdqcb80', 'no_lang_code', 1, 'https://ror.org/04bdqcb80 Engineering Service Center und Handel (Germany)'),
(73168, 'https://ror.org/041d5xb89', 'de', 1, 'https://ror.org/041d5xb89 Verein zur Fƶrderung Innovativer Verfahren in der Logistik'),
(73169, 'https://ror.org/05cet1628', 'de', 1, 'https://ror.org/05cet1628 Wallraf-Richartz-Museum & Fondation Corboud Wallraf–Richartz-Museum'),
(73170, 'https://ror.org/04jrxee54', 'de', 1, 'https://ror.org/04jrxee54 Verkehrsinstitut München'),
(73171, 'https://ror.org/00c1g7649', 'no_lang_code', 1, 'https://ror.org/00c1g7649 werusys (Germany)'),
(73172, 'https://ror.org/011bx4w73', 'en', 1, 'https://ror.org/011bx4w73 Research Institute for Baker’s Yeast Versuchsanstalt der Hefeindustrie'),
(73173, 'https://ror.org/01nhxrw57', 'de', 1, 'https://ror.org/01nhxrw57 Westfalen-Kolleg'),
(73174, 'https://ror.org/0119wa702', 'de', 1, 'https://ror.org/0119wa702 Virtus - Institut für Neue Lehr- und Lernmethoden'),
(73175, 'https://ror.org/029cj7p46', 'no_lang_code', 1, 'https://ror.org/029cj7p46 Wetech (Germany)'),
(73176, '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'),
(73177, 'https://ror.org/04xchw238', 'de', 1, 'https://ror.org/04xchw238 Wissenschaftliches Institut für Infrastruktur und Kommunikationsdienste'),
(73178, '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'),
(73179, 'https://ror.org/045tbeb23', 'de', 1, 'https://ror.org/045tbeb23 Lehmbruck Museum'),
(73180, 'https://ror.org/03ytxnh35', 'de', 1, 'https://ror.org/03ytxnh35 Wilhelm-Jost-Institut'),
(73181, 'https://ror.org/048stab03', 'en', 1, 'https://ror.org/048stab03 World University Service'),
(73182, 'https://ror.org/027zp1m72', 'de', 1, 'https://ror.org/027zp1m72 Planetarium Bochum'),
(73183, 'https://ror.org/05ed09684', 'de', 1, 'https://ror.org/05ed09684 Zentrallaboratorium Deutscher Apotheker'),
(73184, 'https://ror.org/027mwd906', 'en', 1, 'https://ror.org/027mwd906 DEUTSCHES ZENTRUM DES INTERNATIONALEN THEATERINSTITUTS German Centre of the International Theatre Institute'),
(73185, 'https://ror.org/03zrqt452', 'de', 1, 'https://ror.org/03zrqt452 Medicover'),
(73186, 'https://ror.org/05xjtjs92', 'de', 1, 'https://ror.org/05xjtjs92 Museumsverbund Nordfriesland'),
(73187, 'https://ror.org/01mwqr173', 'de', 1, 'https://ror.org/01mwqr173 Professor Hellriegel Institut'),
(73188, 'https://ror.org/039jwf091', 'en', 1, 'https://ror.org/039jwf091 Acatech Deutsche Akademie der Technikwissenschaften'),
(73189, 'https://ror.org/05s4v9y95', 'en', 1, 'https://ror.org/05s4v9y95 InterPore'),
(73190, 'https://ror.org/04jcwf484', 'en', 1, 'https://ror.org/04jcwf484 Nordic e-Infrastructure Collaboration'),
(73191, 'https://ror.org/012yg6072', 'de', 1, 'https://ror.org/012yg6072 Institut für Angewandte Bauforschung Weimar'),
(73192, 'https://ror.org/030wmwa35', 'en', 1, 'https://ror.org/030wmwa35 Agentur für Erneuerbare Energien Renewable Energies Agency'),
(73193, 'https://ror.org/01h371j34', 'de', 1, 'https://ror.org/01h371j34 AGFW'),
(73194, 'https://ror.org/02kh0zv54', 'no_lang_code', 1, 'https://ror.org/02kh0zv54 Akasol (Germany)'),
(73195, 'https://ror.org/017yfyw84', 'no_lang_code', 1, 'https://ror.org/017yfyw84 Alanod (Germany)'),
(73196, 'https://ror.org/0521ccd18', 'no_lang_code', 1, 'https://ror.org/0521ccd18 AlzChem (Germany)'),
(73197, 'https://ror.org/0007cgk43', 'no_lang_code', 1, 'https://ror.org/0007cgk43 Ansys (Germany)'),
(73198, 'https://ror.org/02rj97169', 'no_lang_code', 1, 'https://ror.org/02rj97169 Drees & Sommer (Germany)'),
(73199, 'https://ror.org/05v2ry936', 'no_lang_code', 1, 'https://ror.org/05v2ry936 EEW Energy from Waste'),
(73200, 'https://ror.org/00w040886', 'no_lang_code', 1, 'https://ror.org/00w040886 Blockheizkraftwerks- TrƤger- und Betreibergesellschaft (Germany)'),
(73201, 'https://ror.org/03p3h5q71', 'no_lang_code', 1, 'https://ror.org/03p3h5q71 Datar Cancer Genetics (India)'),
(73202, 'https://ror.org/00cnznq20', 'de', 1, 'https://ror.org/00cnznq20 BUND-Hof Wendbüdel'),
(73203, 'https://ror.org/00xcgk367', 'de', 1, 'https://ror.org/00xcgk367 Arbeitsgruppe für regionale Struktur- und Umweltforschung'),
(73204, 'https://ror.org/010x76r82', 'no_lang_code', 1, 'https://ror.org/010x76r82 Azur Space Solar Power'),
(73205, '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'),
(73206, 'https://ror.org/03d76x287', 'no_lang_code', 1, 'https://ror.org/03d76x287 Bau- und Liegenschaftsbetrieb des Landes Nordrhein-Westfalen (Germany)'),
(73207, 'https://ror.org/030bwht90', 'de', 1, 'https://ror.org/030bwht90 Bayerisches Landeskriminalamt'),
(73208, 'https://ror.org/01hv3m305', 'no_lang_code', 1, 'https://ror.org/01hv3m305 Becker Technologies (Germany)'),
(73209, 'https://ror.org/02hv08979', 'no_lang_code', 1, 'https://ror.org/02hv08979 Consentec (Germany)'),
(73210, 'https://ror.org/039c5c386', 'no_lang_code', 1, 'https://ror.org/039c5c386 Concentrating Solar Power Services (Germany)'),
(73211, 'https://ror.org/011gpgf73', 'no_lang_code', 1, 'https://ror.org/011gpgf73 Berliner Stadtreinigungsbetriebe (Germany)'),
(73212, 'https://ror.org/04d3ma894', 'no_lang_code', 1, 'https://ror.org/04d3ma894 Berliner Wasserbetriebe (Germany)'),
(73213, 'https://ror.org/02pd8fm45', 'no_lang_code', 1, 'https://ror.org/02pd8fm45 BET (Germany)'),
(73214, 'https://ror.org/05wr0v850', 'no_lang_code', 1, 'https://ror.org/05wr0v850 Deutsche Amphibolin-Werke (Germany)'),
(73215, 'https://ror.org/03x5ddc63', 'no_lang_code', 1, 'https://ror.org/03x5ddc63 BABCOCK Industry & Power (Germany)'),
(73216, 'https://ror.org/04n3b1453', 'no_lang_code', 1, 'https://ror.org/04n3b1453 BioConsult SH (Germany)'),
(73217, 'https://ror.org/032vqbc18', 'en', 1, 'https://ror.org/032vqbc18 Deutsche Umwelthilfe Environmental Action Germany'),
(73218, 'https://ror.org/02pgv1b52', 'no_lang_code', 1, 'https://ror.org/02pgv1b52 BGT Bischoff Glastechnik (Germany)'),
(73219, 'https://ror.org/05spgjn72', 'de', 1, 'https://ror.org/05spgjn72 Deutsche Vereinigung für Verbrennungsforschung'),
(73220, 'https://ror.org/0441yn115', 'no_lang_code', 1, 'https://ror.org/0441yn115 Deutsche WindGuard (Germany)'),
(73221, 'https://ror.org/02azwm483', 'no_lang_code', 1, 'https://ror.org/02azwm483 EControl-Glas (Germany)'),
(73222, 'https://ror.org/04p0ywm72', 'en', 1, 'https://ror.org/04p0ywm72 Deutscher Gewerkschaftsbund German Trade Union Confederation'),
(73223, 'https://ror.org/02enpq749', 'de', 1, 'https://ror.org/02enpq749 Edith-Stein-Schulstiftung des Bistums Magdeburg'),
(73224, 'https://ror.org/01ymrn657', 'no_lang_code', 1, 'https://ror.org/01ymrn657 Devolo (Germany)'),
(73225, 'https://ror.org/01berdk28', 'no_lang_code', 1, 'https://ror.org/01berdk28 Strabag (Germany)'),
(73226, 'https://ror.org/01gczqs46', 'no_lang_code', 1, 'https://ror.org/01gczqs46 DK Recycling und Roheisen (Germany)'),
(73227, 'https://ror.org/01rpjzn46', 'no_lang_code', 1, 'https://ror.org/01rpjzn46 DMT Produktentwicklung (Germany)'),
(73228, 'https://ror.org/05vyqs083', 'no_lang_code', 1, 'https://ror.org/05vyqs083 Eisenhuth (Germany)'),
(73229, 'https://ror.org/0229amj70', 'no_lang_code', 1, 'https://ror.org/0229amj70 Drive-CarSharing (Germany)'),
(73230, 'https://ror.org/00q7z2571', 'de', 1, 'https://ror.org/00q7z2571 Forschungszentrum Energiespeichertechnologien'),
(73231, 'https://ror.org/046575319', 'no_lang_code', 1, 'https://ror.org/046575319 E-T-A Elektrotechnische Apparate (Germany)'),
(73232, 'https://ror.org/0016m8j28', 'no_lang_code', 1, 'https://ror.org/0016m8j28 Energie Aus Der Mitte (Germany)'),
(73233, 'https://ror.org/04h50xe73', 'de', 1, 'https://ror.org/04h50xe73 Energie-Anlagen Berlin'),
(73234, 'https://ror.org/02rdrw497', 'no_lang_code', 1, 'https://ror.org/02rdrw497 Ebert Ingenieure (Germany)'),
(73235, 'https://ror.org/02xe0vx90', 'no_lang_code', 1, 'https://ror.org/02xe0vx90 Energy & Meteo Systems (Germany)'),
(73236, 'https://ror.org/014dapq37', 'no_lang_code', 1, 'https://ror.org/014dapq37 Envitec Biogas (Germany)'),
(73237, 'https://ror.org/04tqfmc02', 'en', 1, 'https://ror.org/04tqfmc02 Biodiversity Heritage Library'),
(73238, 'https://ror.org/018n2ja79', 'en', 1, 'https://ror.org/018n2ja79 Atlas of Living Australia'),
(73239, 'https://ror.org/01ee9cx45', 'no_lang_code', 1, 'https://ror.org/01ee9cx45 Enercity (Germany)'),
(73240, 'https://ror.org/0516gh575', 'no_lang_code', 1, 'https://ror.org/0516gh575 Entwicklungsagentur Region Heide (Germany)'),
(73241, 'https://ror.org/02s2g4x03', 'no_lang_code', 1, 'https://ror.org/02s2g4x03 OVM/ECH Consulting Engineers (Germany)'),
(73242, 'https://ror.org/05e5sxk45', 'no_lang_code', 1, 'https://ror.org/05e5sxk45 ESWE Transport Company (Germany) ESWE Verkehrsgesellschaft'),
(73243, 'https://ror.org/03sdfca54', 'no_lang_code', 1, 'https://ror.org/03sdfca54 Rhein-Main-Verkehrsverbund'),
(73244, 'https://ror.org/02aj3k144', 'no_lang_code', 1, 'https://ror.org/02aj3k144 Flight Calibration Services (Germany)'),
(73245, 'https://ror.org/05ynxbz16', 'no_lang_code', 1, 'https://ror.org/05ynxbz16 Stadtwerke Dinslaken (Germany)'),
(73246, 'https://ror.org/01ccttc97', 'en', 1, 'https://ror.org/01ccttc97 Forschungsstelle für Energiewirtschaft Research Center for Energy Economics');
INSERT INTO `rors` VALUES
(73247, 'https://ror.org/00hgq7r66', 'no_lang_code', 1, 'https://ror.org/00hgq7r66 Fichtner (Germany)'),
(73248, 'https://ror.org/02zb58m60', 'no_lang_code', 1, 'https://ror.org/02zb58m60 Flowserve (Germany)'),
(73249, 'https://ror.org/01dc86h50', 'no_lang_code', 1, 'https://ror.org/01dc86h50 Fachverband GebƤude-Klima (Germany)'),
(73250, 'https://ror.org/026374683', 'no_lang_code', 1, 'https://ror.org/026374683 Forschungs- und Applikationslabor Plasmatechnik (Germany)'),
(73251, 'https://ror.org/04ftztx53', 'no_lang_code', 1, 'https://ror.org/04ftztx53 Fels-Werke (Germany)'),
(73252, 'https://ror.org/03xra4w63', 'de', 1, 'https://ror.org/03xra4w63 Forsa Forsa Institute for Social Research and Statistical Analysis'),
(73253, 'https://ror.org/0059myg49', 'de', 1, 'https://ror.org/0059myg49 Forschungsgemeinschaft Feuerfest'),
(73254, 'https://ror.org/015e70897', 'de', 1, 'https://ror.org/015e70897 Forschungsgemeinschaft für elektrische Anlagen und Stromwirtschaft'),
(73255, 'https://ror.org/02j2j7n26', 'no_lang_code', 1, 'https://ror.org/02j2j7n26 Schmid (Germany)'),
(73256, 'https://ror.org/01kf4j136', 'no_lang_code', 1, 'https://ror.org/01kf4j136 G.E.O.S. Ingenieurgesellschaft (Germany)'),
(73257, 'https://ror.org/03jp18535', 'no_lang_code', 1, 'https://ror.org/03jp18535 gec-co Global Engineering & Consulting (Germany)'),
(73258, 'https://ror.org/04jt5e503', 'no_lang_code', 1, 'https://ror.org/04jt5e503 German Association of the Automotive Industry (Germany) Verband der Automobilindustrie'),
(73259, 'https://ror.org/04j5xmb13', 'no_lang_code', 1, 'https://ror.org/04j5xmb13 Geologischer Dienst Nordrhein-Westfalen (Germany)'),
(73260, 'https://ror.org/04bp8ss57', 'no_lang_code', 1, 'https://ror.org/04bp8ss57 GEF Ingenieur (Germany)'),
(73261, 'https://ror.org/044ytdk33', 'en', 1, 'https://ror.org/044ytdk33 ForschungsVerbund Erneuerbare Energien Renewable Energy Research Association'),
(73262, 'https://ror.org/021yrfn07', 'no_lang_code', 1, 'https://ror.org/021yrfn07 Geothermie Neubrandenburg (Germany)'),
(73263, 'https://ror.org/00ehvs489', 'de', 1, 'https://ror.org/00ehvs489 Forschungsvereinigung Antriebstechnik'),
(73264, 'https://ror.org/00ynyd598', 'no_lang_code', 1, 'https://ror.org/00ynyd598 Gesellschaft für Materialforschung und Prüfungsanstalt für das Bauwesen (Germany)'),
(73265, 'https://ror.org/04gcqnd36', 'de', 1, 'https://ror.org/04gcqnd36 Gesteinslabor Dr. Eberhard Jahns'),
(73266, 'https://ror.org/05m9rb257', 'no_lang_code', 1, 'https://ror.org/05m9rb257 GEWOS (Germany)'),
(73267, 'https://ror.org/03acsgj85', 'no_lang_code', 1, 'https://ror.org/03acsgj85 Großmann Ingenieur Consult (Germany)'),
(73268, 'https://ror.org/01vd6wz59', 'no_lang_code', 1, 'https://ror.org/01vd6wz59 Hoppecke (Germany)'),
(73269, 'https://ror.org/003w8na57', 'no_lang_code', 1, 'https://ror.org/003w8na57 Hydroisotop (Germany)'),
(73270, 'https://ror.org/021pgbe15', 'no_lang_code', 1, 'https://ror.org/021pgbe15 hySolutions (Germany)'),
(73271, 'https://ror.org/029tp1n54', 'no_lang_code', 1, 'https://ror.org/029tp1n54 Institut für Arbeitswissenschaft und Unternehmensoptimierung (Germany)'),
(73272, 'https://ror.org/01af4em40', 'no_lang_code', 1, 'https://ror.org/01af4em40 IDS (Germany)'),
(73273, 'https://ror.org/046j18q84', 'de', 1, 'https://ror.org/046j18q84 Internationales Institut für Nachhaltiges Energiemanagement, Politik, Risiko und Soziale Innovationen'),
(73274, 'https://ror.org/037qmen77', 'no_lang_code', 1, 'https://ror.org/037qmen77 Graebener Maschinentechnik (Germany)'),
(73275, 'https://ror.org/02xzmkb45', 'no_lang_code', 1, 'https://ror.org/02xzmkb45 Infraserv (Germany)'),
(73276, 'https://ror.org/015z19759', 'no_lang_code', 1, 'https://ror.org/015z19759 Grosskraftwerk Mannheim (Germany)'),
(73277, 'https://ror.org/02rs64x70', 'no_lang_code', 1, 'https://ror.org/02rs64x70 Ingenieurgesellschaft für Zuverlässigkeit und Prozessmodellierung (Germany)'),
(73278, 'https://ror.org/00bkjqa40', 'no_lang_code', 1, 'https://ror.org/00bkjqa40 InnoLas Solutions (Germany)'),
(73279, 'https://ror.org/048amag53', 'no_lang_code', 1, 'https://ror.org/048amag53 GTT-Technologies (Germany)'),
(73280, 'https://ror.org/02n851422', 'no_lang_code', 1, 'https://ror.org/02n851422 Innovationszentrum für Mobilität und Gesellschaftlichen Wandel (Germany)'),
(73281, 'https://ror.org/05nt5a548', 'no_lang_code', 1, 'https://ror.org/05nt5a548 Q-Cells (Germany)'),
(73282, 'https://ror.org/014088296', 'no_lang_code', 1, 'https://ror.org/014088296 H2 Mobility (Germany)'),
(73283, 'https://ror.org/00bcept67', 'no_lang_code', 1, 'https://ror.org/00bcept67 Deutsches Institut für Bautechnik (Germany)'),
(73284, '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)'),
(73285, 'https://ror.org/03xz7zy75', 'no_lang_code', 1, 'https://ror.org/03xz7zy75 Hamburg Wasser (Germany)'),
(73286, 'https://ror.org/05s7heg81', 'de', 1, 'https://ror.org/05s7heg81 Institut für das Bauen mit Kunststoffen'),
(73287, 'https://ror.org/03170wz23', 'no_lang_code', 1, 'https://ror.org/03170wz23 Hochbahn (Germany)'),
(73288, 'https://ror.org/04znq7n20', 'no_lang_code', 1, 'https://ror.org/04znq7n20 HDG Bavaria (Germany)'),
(73289, 'https://ror.org/0467ep474', 'no_lang_code', 1, 'https://ror.org/0467ep474 Herrenknecht (Germany)'),
(73290, 'https://ror.org/03w15ax40', 'no_lang_code', 1, 'https://ror.org/03w15ax40 Herrenknecht Vertical (Germany)'),
(73291, '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'),
(73292, 'https://ror.org/04v78c088', 'de', 1, 'https://ror.org/04v78c088 Institut für Kälte-, Klima- und Energietechnik'),
(73293, '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'),
(73294, 'https://ror.org/03t0n2419', 'no_lang_code', 1, 'https://ror.org/03t0n2419 Hamburg Institut (Germany)'),
(73295, 'https://ror.org/03n01yk34', 'de', 1, 'https://ror.org/03n01yk34 Institut für Netz- und Anwendungstechnik'),
(73296, 'https://ror.org/02pn8ev67', 'no_lang_code', 1, 'https://ror.org/02pn8ev67 AGC Interpane (Germany)'),
(73297, 'https://ror.org/05vt21141', 'no_lang_code', 1, 'https://ror.org/05vt21141 Institut für Technische und Angewandte Physik (Germany)'),
(73298, 'https://ror.org/004sfne89', 'no_lang_code', 1, 'https://ror.org/004sfne89 Klinikum Westfalen (Germany)'),
(73299, 'https://ror.org/045jj6w47', 'en', 1, 'https://ror.org/045jj6w47 Institute for Building Systems Engineering Dresden Research and Application'),
(73300, 'https://ror.org/04taba362', 'no_lang_code', 1, 'https://ror.org/04taba362 Schmalz (Germany)'),
(73301, 'https://ror.org/02ta43q50', 'no_lang_code', 1, 'https://ror.org/02ta43q50 Jülicher Entsorgungsgesellschaft für Nuklearanlagen (Germany)'),
(73302, 'https://ror.org/04fne2y85', 'no_lang_code', 1, 'https://ror.org/04fne2y85 KACO New Energy (Germany)'),
(73303, 'https://ror.org/01nvzxh20', 'no_lang_code', 1, 'https://ror.org/01nvzxh20 DEEP.KBB (Germany)'),
(73304, 'https://ror.org/04t6sr026', 'de', 1, 'https://ror.org/04t6sr026 Klimaschutz- und Energieagentur Baden-Württemberg'),
(73305, 'https://ror.org/00xja4t18', 'no_lang_code', 1, 'https://ror.org/00xja4t18 Keramische Folien (Germany)'),
(73306, 'https://ror.org/02kd9ve64', 'no_lang_code', 1, 'https://ror.org/02kd9ve64 Kerntechnische Entsorgung Karlsruhe (Germany)'),
(73307, 'https://ror.org/04satts25', 'de', 1, 'https://ror.org/04satts25 Kreditanstalt für Wiederaufbau'),
(73308, 'https://ror.org/050pzta73', 'no_lang_code', 1, 'https://ror.org/050pzta73 Klaus Kuhn Edelstahlgießerei Kuhn Special Steel (Germany)'),
(73309, 'https://ror.org/04nqe0561', 'no_lang_code', 1, 'https://ror.org/04nqe0561 Hochtemperatur-Kernkraftwerk (Germany)'),
(73310, 'https://ror.org/037ec0y70', 'no_lang_code', 1, 'https://ror.org/037ec0y70 KleinwƤchter (Germany)'),
(73311, 'https://ror.org/0363jmm27', 'no_lang_code', 1, 'https://ror.org/0363jmm27 Mineralƶlverbundleitung (Germany)'),
(73312, 'https://ror.org/0144gtm47', 'de', 1, 'https://ror.org/0144gtm47 Ministerium für Finanzen und Europa'),
(73313, 'https://ror.org/052rc8810', 'de', 1, 'https://ror.org/052rc8810 Ministerium für Wirtschaft, Arbeit, Energie und Verkehr'),
(73314, 'https://ror.org/047krge18', 'no_lang_code', 1, 'https://ror.org/047krge18 Mobileeee (Germany)'),
(73315, 'https://ror.org/05f7ceg04', 'en', 1, 'https://ror.org/05f7ceg04 Hamburg Commercial Bank'),
(73316, 'https://ror.org/011g3fn28', 'no_lang_code', 1, 'https://ror.org/011g3fn28 Hatz (Germany)'),
(73317, 'https://ror.org/01eq1tg37', 'de', 1, 'https://ror.org/01eq1tg37 Landesbetrieb für Küstenschutz, Nationalpark und Meeresschutz Schleswig-Holstein'),
(73318, 'https://ror.org/0346t2s60', 'no_lang_code', 1, 'https://ror.org/0346t2s60 Trench (Germany)'),
(73319, 'https://ror.org/055ppaf52', 'no_lang_code', 1, 'https://ror.org/055ppaf52 Navigant (Germany)'),
(73320, 'https://ror.org/00qxryb75', 'de', 1, 'https://ror.org/00qxryb75 Landesnahverkehrsgesellschaft Niedersachsen'),
(73321, 'https://ror.org/04ms6c540', 'no_lang_code', 1, 'https://ror.org/04ms6c540 Nice Solar Energy (Germany)'),
(73322, 'https://ror.org/04b7azg23', 'no_lang_code', 1, 'https://ror.org/04b7azg23 Noack Laboratorien (Germany)'),
(73323, 'https://ror.org/050jaqw98', 'no_lang_code', 1, 'https://ror.org/050jaqw98 Normag (Germany)'),
(73324, 'https://ror.org/009v0gn86', 'no_lang_code', 1, 'https://ror.org/009v0gn86 Energetický a Průmyslový Holding (Czechia)'),
(73325, 'https://ror.org/04txnpk14', 'de', 1, 'https://ror.org/04txnpk14 Deutsch-französische Büro für die Energiewende'),
(73326, 'https://ror.org/0234p1g56', 'no_lang_code', 1, 'https://ror.org/0234p1g56 Kurz (Germany)'),
(73327, 'https://ror.org/0547yav62', 'no_lang_code', 1, 'https://ror.org/0547yav62 Institut für Ɩkologie und Politik Ɩkopol (Germany)'),
(73328, 'https://ror.org/00p2sbg88', 'en', 1, 'https://ror.org/00p2sbg88 Passive House Institute Passivhaus Institut'),
(73329, 'https://ror.org/02cc5nj87', 'no_lang_code', 1, 'https://ror.org/02cc5nj87 Mainzer Stadtwerke (Germany)'),
(73330, 'https://ror.org/05bj13d25', 'no_lang_code', 1, 'https://ror.org/05bj13d25 Pfalzwerke (Germany)'),
(73331, 'https://ror.org/04dc4tx21', 'de', 1, 'https://ror.org/04dc4tx21 Malteser-Krankenhaus'),
(73332, 'https://ror.org/05cx80085', 'no_lang_code', 1, 'https://ror.org/05cx80085 Plasmatreat (Germany)'),
(73333, 'https://ror.org/03thnsj45', 'no_lang_code', 1, 'https://ror.org/03thnsj45 Schlumberger (Germany)'),
(73334, 'https://ror.org/02qyv4b17', 'no_lang_code', 1, 'https://ror.org/02qyv4b17 ProCom (Germany)'),
(73335, 'https://ror.org/04hyej253', 'de', 1, 'https://ror.org/04hyej253 Margarethe Krupp-Stiftung'),
(73336, 'https://ror.org/052s9kd61', 'no_lang_code', 1, 'https://ror.org/052s9kd61 Prognos (Germany)'),
(73337, 'https://ror.org/02ntsjr39', 'no_lang_code', 1, 'https://ror.org/02ntsjr39 Prognos (Switzerland)'),
(73338, 'https://ror.org/0515dxk89', 'no_lang_code', 1, 'https://ror.org/0515dxk89 Proton Motor (Germany)'),
(73339, 'https://ror.org/05kvda021', 'no_lang_code', 1, 'https://ror.org/05kvda021 PV Crystalox Solar (Germany)'),
(73340, 'https://ror.org/04ar7w423', 'de', 1, 'https://ror.org/04ar7w423 Matthias-Claudius-Stiftung'),
(73341, 'https://ror.org/05r892e85', 'no_lang_code', 1, 'https://ror.org/05r892e85 r2b Energy Consulting (Germany)'),
(73342, 'https://ror.org/01ftjhs10', 'no_lang_code', 1, 'https://ror.org/01ftjhs10 Ramboll (Germany)'),
(73343, 'https://ror.org/04jqs6e58', 'de', 1, 'https://ror.org/04jqs6e58 RCI Banque Niederlassung Deutschland'),
(73344, 'https://ror.org/05a4ggb77', 'no_lang_code', 1, 'https://ror.org/05a4ggb77 Regionalverkehr Kƶln (Germany)'),
(73345, 'https://ror.org/03vxfyf12', 'no_lang_code', 1, 'https://ror.org/03vxfyf12 Max Bƶgl (Germany)'),
(73346, 'https://ror.org/04pje9c52', 'de', 1, 'https://ror.org/04pje9c52 Reha-Zentrum Bad Frankenhausen'),
(73347, 'https://ror.org/042zg6d08', 'de', 1, 'https://ror.org/042zg6d08 Max Zƶllner Stiftung'),
(73348, 'https://ror.org/0537wed62', 'no_lang_code', 1, 'https://ror.org/0537wed62 ROWO Coating (Germany)'),
(73349, 'https://ror.org/03425cy40', 'no_lang_code', 1, 'https://ror.org/03425cy40 ROM Technik (Germany)'),
(73350, 'https://ror.org/04kz50t81', 'no_lang_code', 1, 'https://ror.org/04kz50t81 SAACKE (Germany)'),
(73351, 'https://ror.org/03nx88210', 'en', 1, 'https://ror.org/03nx88210 Institute for Economic Research and Consulting'),
(73352, 'https://ror.org/0194rjs93', 'no_lang_code', 1, 'https://ror.org/0194rjs93 Schunk Carbon Technology (Germany)'),
(73353, 'https://ror.org/00tsej476', 'no_lang_code', 1, 'https://ror.org/00tsej476 Schwenk (Germany)'),
(73354, 'https://ror.org/030d0y072', 'no_lang_code', 1, 'https://ror.org/030d0y072 Fischer Group (Germany)'),
(73355, 'https://ror.org/03bysw038', 'no_lang_code', 1, 'https://ror.org/03bysw038 SFC Energy (Germany)'),
(73356, 'https://ror.org/02j6nge77', 'de', 1, 'https://ror.org/02j6nge77 Stephanus Stiftung'),
(73357, 'https://ror.org/038eaw106', 'no_lang_code', 1, 'https://ror.org/038eaw106 Stadtwerke Kƶln (Germany)'),
(73358, 'https://ror.org/05qaj2541', 'no_lang_code', 1, 'https://ror.org/05qaj2541 Senior Flexonics (Germany)'),
(73359, 'https://ror.org/00fjpwq08', 'no_lang_code', 1, 'https://ror.org/00fjpwq08 Stadtwerk Haßfurt (Germany)'),
(73360, 'https://ror.org/012m44z23', 'no_lang_code', 1, 'https://ror.org/012m44z23 Stadtwerke Duisburg (Germany)'),
(73361, 'https://ror.org/03kmaet43', 'no_lang_code', 1, 'https://ror.org/03kmaet43 Stadtwerke Jülich (Germany)'),
(73362, 'https://ror.org/04pe43p62', 'no_lang_code', 1, 'https://ror.org/04pe43p62 Stadtwerke Münster (Germany)'),
(73363, 'https://ror.org/05gde4s46', 'no_lang_code', 1, 'https://ror.org/05gde4s46 Stadtwerke Offenbach (Germany)'),
(73364, 'https://ror.org/05yey6m86', 'no_lang_code', 1, 'https://ror.org/05yey6m86 Europa Service Autovermietung (Germany)'),
(73365, 'https://ror.org/05vk7ky45', 'no_lang_code', 1, 'https://ror.org/05vk7ky45 Steca Elektronik (Germany)'),
(73366, 'https://ror.org/04sg6r946', 'no_lang_code', 1, 'https://ror.org/04sg6r946 Solarzentrum Stuttgart (Germany)'),
(73367, 'https://ror.org/01a1rwe53', 'no_lang_code', 1, 'https://ror.org/01a1rwe53 Solvis (Germany)'),
(73368, 'https://ror.org/00khe8x73', 'no_lang_code', 1, 'https://ror.org/00khe8x73 Tennet (Germany)'),
(73369, 'https://ror.org/00hxnw991', 'no_lang_code', 1, 'https://ror.org/00hxnw991 Theva (Germany)'),
(73370, 'https://ror.org/042ft0a49', 'de', 1, 'https://ror.org/042ft0a49 Stiftung Jugend forscht'),
(73371, 'https://ror.org/014p0zg39', 'no_lang_code', 1, 'https://ror.org/014p0zg39 Stiftung Liebenau (Germany)'),
(73372, 'https://ror.org/02xr5pg48', 'de', 1, 'https://ror.org/02xr5pg48 Stiftung Umweltenergierecht'),
(73373, 'https://ror.org/01gycb861', 'no_lang_code', 1, 'https://ror.org/01gycb861 Thyssengas (Germany)'),
(73374, 'https://ror.org/028tnj023', 'de', 1, 'https://ror.org/028tnj023 Stiftung Warentest'),
(73375, 'https://ror.org/00t2dcp03', 'no_lang_code', 1, 'https://ror.org/00t2dcp03 Sto (Germany)'),
(73376, 'https://ror.org/00z1ayq69', 'de', 1, 'https://ror.org/00z1ayq69 Propstei Johannesberg'),
(73377, 'https://ror.org/00g4wce19', 'no_lang_code', 1, 'https://ror.org/00g4wce19 Stoller Ingenieurtechnik (Germany)'),
(73378, 'https://ror.org/03dwh7z09', 'no_lang_code', 1, 'https://ror.org/03dwh7z09 Toyota Motor Corporation (Germany)'),
(73379, 'https://ror.org/01mf5nv72', 'no_lang_code', 1, 'https://ror.org/01mf5nv72 Truma (Germany)'),
(73380, 'https://ror.org/0012bhf27', 'no_lang_code', 1, 'https://ror.org/0012bhf27 Stuttgarter Straßenbahnen (Germany)'),
(73381, 'https://ror.org/02bk51c93', 'no_lang_code', 1, 'https://ror.org/02bk51c93 Südzucker (Germany)'),
(73382, 'https://ror.org/04bc6xb81', 'no_lang_code', 1, 'https://ror.org/04bc6xb81 Stadtwerke München (Germany)'),
(73383, 'https://ror.org/035tamt43', 'no_lang_code', 1, 'https://ror.org/035tamt43 Teamtechnik (Germany)'),
(73384, 'https://ror.org/00tfv5n82', 'no_lang_code', 1, 'https://ror.org/00tfv5n82 Tegut (Germany)'),
(73385, 'https://ror.org/032wvzg14', 'no_lang_code', 1, 'https://ror.org/032wvzg14 Volkswohnung (Germany)'),
(73386, 'https://ror.org/03jmpnx55', 'no_lang_code', 1, 'https://ror.org/03jmpnx55 VOLTARIS (Germany)'),
(73387, 'https://ror.org/05eqtsr60', 'no_lang_code', 1, 'https://ror.org/05eqtsr60 Energy Fuels (United States)'),
(73388, 'https://ror.org/03qm54y80', 'no_lang_code', 1, 'https://ror.org/03qm54y80 WƤtas WƤrmetauscher Sachsen (Germany)'),
(73389, 'https://ror.org/01zn6ne75', 'no_lang_code', 1, 'https://ror.org/01zn6ne75 Wilo (Germany)'),
(73390, 'https://ror.org/0544z8b75', 'en', 1, 'https://ror.org/0544z8b75 College Of Certified Psychophysiologists'),
(73391, 'https://ror.org/03p0pmr81', 'no_lang_code', 1, 'https://ror.org/03p0pmr81 Windenergiepark Westküste (Germany)'),
(73392, 'https://ror.org/05j4b8r17', 'pl', 1, 'https://ror.org/05j4b8r17 Wojewódzki Szpital Specjalistyczny Nr 2'),
(73393, 'https://ror.org/05akz4x40', 'no_lang_code', 1, 'https://ror.org/05akz4x40 Windpark Ellhƶft (Germany)'),
(73394, 'https://ror.org/03v5tv953', 'no_lang_code', 1, 'https://ror.org/03v5tv953 Wista (Germany)'),
(73395, 'https://ror.org/05ac30595', 'no_lang_code', 1, 'https://ror.org/05ac30595 Urenco (Germany)'),
(73396, 'https://ror.org/047rpw860', 'no_lang_code', 1, 'https://ror.org/047rpw860 Witzenhausen-Institut (Germany)'),
(73397, 'https://ror.org/02mcz6a08', 'no_lang_code', 1, 'https://ror.org/02mcz6a08 Wƶlfel (Germany)'),
(73398, 'https://ror.org/04v3qs268', 'no_lang_code', 1, 'https://ror.org/04v3qs268 VNG (Germany)'),
(73399, 'https://ror.org/0494ksh79', 'en', 1, 'https://ror.org/0494ksh79 Center of Applied Aeronautical Research Zentrum für Angewandte Luftfahrtforschung'),
(73400, 'https://ror.org/03vzbwz39', 'no_lang_code', 1, 'https://ror.org/03vzbwz39 Verkehrsbetriebe Hamburg-Holstein (Germany)'),
(73401, 'https://ror.org/04b55a558', 'no_lang_code', 1, 'https://ror.org/04b55a558 Leag (Germany)'),
(73402, 'https://ror.org/04j8z7v81', 'no_lang_code', 1, 'https://ror.org/04j8z7v81 Vitronic (Germany)'),
(73403, 'https://ror.org/02v4gph32', 'de', 1, 'https://ror.org/02v4gph32 VKTA'),
(73404, 'https://ror.org/00bf6gk85', 'no_lang_code', 1, 'https://ror.org/00bf6gk85 Volkswagen Financial Services (Germany)'),
(73405, 'https://ror.org/05n3kfc14', 'de', 1, 'https://ror.org/05n3kfc14 Zentrum Digitalisierung.Bayern'),
(73406, 'https://ror.org/0366nrw71', 'de', 1, 'https://ror.org/0366nrw71 Naturstiftung David'),
(73407, 'https://ror.org/05w9jj607', 'no_lang_code', 1, 'https://ror.org/05w9jj607 ZeoSys Medical (Germany)'),
(73408, 'https://ror.org/01jzb6k09', 'no_lang_code', 1, 'https://ror.org/01jzb6k09 Bioinformatics Solutions (Canada)'),
(73409, 'https://ror.org/00wnpy880', 'en', 1, 'https://ror.org/00wnpy880 Centre des sciences de l''Ontario Ontario Science Centre'),
(73410, 'https://ror.org/014bm1n40', 'en', 1, 'https://ror.org/014bm1n40 FIRST Robotics Canada'),
(73411, 'https://ror.org/02x8ye509', 'no_lang_code', 1, 'https://ror.org/02x8ye509 Innovation Cluster (Canada)'),
(73412, 'https://ror.org/05edt1q81', 'en', 1, 'https://ror.org/05edt1q81 Green Communities Canada'),
(73413, 'https://ror.org/04jcetk87', 'en', 1, 'https://ror.org/04jcetk87 Einstein Medical Center Montgomery'),
(73414, 'https://ror.org/00k1y3f49', 'en', 1, 'https://ror.org/00k1y3f49 Vector & Vector-Borne Diseases Research Institute'),
(73415, 'https://ror.org/03j7qvg12', 'no_lang_code', 1, 'https://ror.org/03j7qvg12 Typs (Canada)'),
(73416, 'https://ror.org/0024v4x89', 'en', 1, 'https://ror.org/0024v4x89 Anhui Geological Museum'),
(73417, 'https://ror.org/035rzmc67', 'en', 1, 'https://ror.org/035rzmc67 Anhui Academy of Medical Sciences å®‰å¾½ēœåŒ»å­¦ē§‘å­¦ē ”ē©¶é™¢'),
(73418, 'https://ror.org/01zy32z07', 'en', 1, 'https://ror.org/01zy32z07 Beijing Institue Of Electronics Technology And Application åŒ—äŗ¬ē”µå­ē§‘ęŠ€ęŠ€ęœÆē ”ē©¶ę‰€'),
(73419, 'https://ror.org/01nz7sp31', 'no_lang_code', 1, 'https://ror.org/01nz7sp31 Beijing Chemical Industry Research Institute (China) åŒ—äŗ¬åø‚åŒ–å­¦å·„äøšē ”ē©¶é™¢'),
(73420, 'https://ror.org/047r47y76', 'en', 1, 'https://ror.org/047r47y76 Beijing Computing Center'),
(73421, 'https://ror.org/04rgfx869', 'en', 1, 'https://ror.org/04rgfx869 Beijing Yingwu Conference Center åŒ—äŗ¬åŗ”ē‰©ä¼šč®®äø­åæƒ'),
(73422, 'https://ror.org/027327e78', 'en', 1, 'https://ror.org/027327e78 Conquer Cancer Foundation'),
(73423, 'https://ror.org/00qy2fm62', 'no_lang_code', 1, 'https://ror.org/00qy2fm62 Beijing Zhongke Science and Technology (China) åŒ—äŗ¬äø­ē§‘ē§‘ä»Ŗč‚”ä»½ęœ‰é™å…¬åø'),
(73424, 'https://ror.org/028fy7q25', 'en', 1, 'https://ror.org/028fy7q25 Botanical Society of China äø­å›½ę¤ē‰©å­¦ä¼š'),
(73425, 'https://ror.org/02zfaen51', 'en', 1, 'https://ror.org/02zfaen51 The Medical Foundation'),
(73426, 'https://ror.org/04nydew61', 'en', 1, 'https://ror.org/04nydew61 Clinical Research Associates'),
(73427, 'https://ror.org/02v388x60', 'en', 1, 'https://ror.org/02v388x60 Cheshire Image Bank'),
(73428, 'https://ror.org/047dy3w25', 'en', 1, 'https://ror.org/047dy3w25 Likhatchev Russian Research Institute for Cultural and Natural Heritage Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½Š¾Š³Š¾ Šø прироГного Š½Š°ŃŠ»ŠµŠ“ŠøŃ'),
(73429, 'https://ror.org/04vpesy43', 'en', 1, 'https://ror.org/04vpesy43 Beijing Glass Research Institute åŒ—äŗ¬ēŽ»ē’ƒē ”ē©¶é™¢'),
(73430, 'https://ror.org/03swddy62', 'en', 1, 'https://ror.org/03swddy62 Institute of Japanese Studies äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ę—„ęœ¬ē ”ē©¶ę‰€'),
(73431, 'https://ror.org/033mdyr61', 'en', 1, 'https://ror.org/033mdyr61 Institute of Taiwan Studies Chinese Academy of Social Sciences äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å°ę¹¾ē ”ē©¶ę‰€'),
(73432, 'https://ror.org/059h8x781', 'no_lang_code', 1, 'https://ror.org/059h8x781 China Central Television äø­å›½äø­å¤®ē”µč§†å°'),
(73433, 'https://ror.org/05gkrwe68', 'no_lang_code', 1, 'https://ror.org/05gkrwe68 Iasis Molecular Sciences (United States)'),
(73434, 'https://ror.org/00ysb4w16', 'en', 1, 'https://ror.org/00ysb4w16 Multi Vaccines Development Program'),
(73435, 'https://ror.org/02ystve88', 'no_lang_code', 1, 'https://ror.org/02ystve88 Sugen Life Sciences (India)'),
(73436, 'https://ror.org/02xsn7259', 'en', 1, 'https://ror.org/02xsn7259 Southern California Institute of Architecture'),
(73437, 'https://ror.org/03qxceh63', 'en', 1, 'https://ror.org/03qxceh63 Experimental Factory Magdeburg'),
(73438, 'https://ror.org/02sqk3z62', 'en', 1, 'https://ror.org/02sqk3z62 Changsha Normal University é•æę²™åøˆčŒƒå­¦é™¢'),
(73439, 'https://ror.org/00as6b113', 'en', 1, 'https://ror.org/00as6b113 Inner Mongolia Chifeng Forestry Science Research Institute å†…č’™å¤čµ¤å³°åø‚ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(73440, 'https://ror.org/032e2dp71', 'en', 1, 'https://ror.org/032e2dp71 China Business Executives Academy äø­å›½å¤§čæžé«˜ēŗ§ē»ē†å­¦é™¢'),
(73441, 'https://ror.org/00ft0fw96', 'en', 1, 'https://ror.org/00ft0fw96 China Centre for Resources Satellite Data and Application äø­å›½čµ„ęŗå«ę˜Ÿåŗ”ē”Øäø­åæƒ'),
(73442, 'https://ror.org/04kzfnz19', 'en', 1, 'https://ror.org/04kzfnz19 China National Democratic Construction Association äø­å›½ę°‘äø»å»ŗå›½ä¼š'),
(73443, 'https://ror.org/00375d304', 'en', 1, 'https://ror.org/00375d304 China Education and Research Network äø­å›½ę•™č‚²å’Œē§‘ē ”č®”ē®—ęœŗē½‘ē½‘ē»œäø­åæƒ'),
(73444, 'https://ror.org/04njzfy81', 'en', 1, 'https://ror.org/04njzfy81 China Electrotechnical Society äø­å›½ē”µå·„ęŠ€ęœÆå­¦ä¼š'),
(73445, 'https://ror.org/0466nq257', 'en', 1, 'https://ror.org/0466nq257 China Academic Degrees and Graduate Education Development Center äø­å›½å­¦ä½äøŽē ”ē©¶ē”Ÿę•™č‚²äæ”ęÆē½‘'),
(73446, 'https://ror.org/00qjps318', 'en', 1, 'https://ror.org/00qjps318 China Enterprise Confederation äø­å›½ä¼äøšč”åˆä¼š'),
(73447, 'https://ror.org/01mp98161', 'en', 1, 'https://ror.org/01mp98161 China Institute of Finance and Capital Markets'),
(73448, 'https://ror.org/03mf2zr07', 'en', 1, 'https://ror.org/03mf2zr07 Chinese Society of Plant Nutrition and Fertilizer Science äø­å›½ę¤ē‰©č„å…»äøŽč‚„ę–™å­¦ä¼š'),
(73449, 'https://ror.org/03qzxj964', 'en', 1, 'https://ror.org/03qzxj964 China National Institute of Standardization äø­å›½ę ‡å‡†åŒ–äøŽäæ”ęÆåˆ†ē±»ē¼–ē ē ”ē©¶ę‰€'),
(73450, 'https://ror.org/02ce6y193', 'en', 1, 'https://ror.org/02ce6y193 China Editology Society of Science Periodicals äø­å›½ē§‘ęŠ€ęœŸåˆŠē¼–č¾‘å­¦ä¼š'),
(73451, 'https://ror.org/05j9gp921', 'en', 1, 'https://ror.org/05j9gp921 China Science Center of International Eurasian Academy of Sciences å›½é™…ę¬§äŗšē§‘å­¦é™¢äø­å›½ē§‘å­¦äø­åæƒ'),
(73452, 'https://ror.org/00wp2vz04', 'no_lang_code', 1, 'https://ror.org/00wp2vz04 China Light Industry Press (China) äø­å›½č½»å·„äøšå‡ŗē‰ˆē¤¾'),
(73453, 'https://ror.org/03rqyzt93', 'no_lang_code', 1, 'https://ror.org/03rqyzt93 Beijing Tuofeng Technology Development (China)'),
(73454, 'https://ror.org/05gxqqz35', 'en', 1, 'https://ror.org/05gxqqz35 Freedom From Diabetes'),
(73455, 'https://ror.org/01y6y5368', 'no_lang_code', 1, 'https://ror.org/01y6y5368 China Metallurgical Planning Net (China) å†¶é‡‘å·„äøšč§„åˆ’ē ”ē©¶é™¢'),
(73456, 'https://ror.org/02p1tz049', 'no_lang_code', 1, 'https://ror.org/02p1tz049 China National Chemical Information Centre (China) äø­å›½åŒ–å·„äæ”ęÆäø­åæƒ'),
(73457, 'https://ror.org/038dte259', 'en', 1, 'https://ror.org/038dte259 China Academy of Information and Communications Technology'),
(73458, 'https://ror.org/024zcda42', 'no_lang_code', 1, 'https://ror.org/024zcda42 National Institutes of Pharmaceutical Research and Development (China) äø­å›½åŒ»čÆē ”ē©¶å¼€å‘äø­åæƒęœ‰é™å…¬åø'),
(73459, 'https://ror.org/03x2fre67', 'en', 1, 'https://ror.org/03x2fre67 China Science and Technology Museum äø­å›½ē§‘å­¦ęŠ€ęœÆé¦†'),
(73460, 'https://ror.org/03kgwfd55', 'en', 1, 'https://ror.org/03kgwfd55 Chinese Society for Cell Biology äø­å›½ē»†čƒžē”Ÿē‰©å­¦å­¦ä¼š'),
(73461, 'https://ror.org/02c8ew317', 'en', 1, 'https://ror.org/02c8ew317 Chinese Society for Plant Pathology äø­å›½ę¤ē‰©ē—…ē†å­¦ä¼š'),
(73462, 'https://ror.org/046hrxd41', 'en', 1, 'https://ror.org/046hrxd41 China Society of Plant Protection äø­å›½ę¤ē‰©äæęŠ¤å­¦ä¼š'),
(73463, 'https://ror.org/03nw9qk49', 'en', 1, 'https://ror.org/03nw9qk49 Chinese Society for Plant Biology äø­å›½ę¤ē‰©ē”Ÿē‰©å­¦ä¼š'),
(73464, 'https://ror.org/0130r4628', 'en', 1, 'https://ror.org/0130r4628 China Tibetology Research Center äø­å›½č—å­¦ē ”ē©¶äø­åæƒ'),
(73465, 'https://ror.org/01rk5br21', 'en', 1, 'https://ror.org/01rk5br21 China Association of Agricultural Science Societies äø­å›½å†œå­¦ä¼š'),
(73466, 'https://ror.org/011jjvt31', 'en', 1, 'https://ror.org/011jjvt31 Chinese Society of Forestry äø­å›½ęž—å­¦ä¼š'),
(73467, 'https://ror.org/02nj4qk22', 'en', 1, 'https://ror.org/02nj4qk22 Chinese Soil and Water Conservation Society äø­å›½ę°“åœŸäæęŒå­¦ä¼š'),
(73468, 'https://ror.org/058yyse25', 'en', 1, 'https://ror.org/058yyse25 China Training Center for Senior Civil Servants äø­å›½é«˜ēŗ§å…¬åŠ”å‘˜åŸ¹č®­äø­åæƒ'),
(73469, 'https://ror.org/04rp35a76', 'no_lang_code', 1, 'https://ror.org/04rp35a76 Yunnan Yingmao Biotechnology (China) äŗ‘å—č‹±čŒ‚ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(73470, 'https://ror.org/05hwakx34', 'en', 1, 'https://ror.org/05hwakx34 Chongqing Academy of Agricultural Sciences é‡åŗ†åø‚å†œäøšē§‘å­¦é™¢'),
(73471, 'https://ror.org/02dknqs67', 'no_lang_code', 1, 'https://ror.org/02dknqs67 China-US (Henan) Hormel Cancer Institute ę²³å—ēœč‚æē˜¤åŒ»é™¢'),
(73472, 'https://ror.org/0120q3031', 'en', 1, 'https://ror.org/0120q3031 Institute of Mathematics, Academia Sinica 中央研究院數學所'),
(73473, 'https://ror.org/04vnevw94', 'en', 1, 'https://ror.org/04vnevw94 Criminal Investigation Police University of China åˆ‘äŗ‹č°ƒęŸ„äø­å›½č­¦åÆŸå¤§å­¦'),
(73474, 'https://ror.org/03c4nqn69', 'en', 1, 'https://ror.org/03c4nqn69 Institute of Earth Sciences, Academia Sinica äø­å¤®ē ”ē©¶é™¢åœ°ēƒē§‘å­øē ”ē©¶ę‰€'),
(73475, 'https://ror.org/00z83z196', 'en', 1, 'https://ror.org/00z83z196 Institute of Information Science, Academia Sinica äø­å¤®ē ”ē©¶é™¢č³‡čØŠē§‘å­øē ”ē©¶ę‰€'),
(73476, 'https://ror.org/031mqp384', 'no_lang_code', 1, 'https://ror.org/031mqp384 Zhong Ke San Huan (China) äø­ē§‘äø‰ēŽÆ'),
(73477, 'https://ror.org/050qpg053', 'en', 1, 'https://ror.org/050qpg053 Research Center for Environmental Changes, Academia Sinica ē’°å¢ƒč®Šé·ē ”ē©¶äø­åæƒ'),
(73478, 'https://ror.org/000zgvm20', 'en', 1, 'https://ror.org/000zgvm20 Research Center for Information Technology Innovation, Academia Sinica äø­å¤®ē ”ē©¶é™¢č³‡čØŠē§‘ęŠ€å‰µę–°ē ”ē©¶äø­åæƒ'),
(73479, 'https://ror.org/00jj3h083', 'en', 1, 'https://ror.org/00jj3h083 Institute of Plant and Microbial Biology, Academia Sinica äø­å¤®ē ”ē©¶é™¢ę¤ē‰©ęšØå¾®ē”Ÿē‰©å­øē ”ē©¶ę‰€'),
(73480, 'https://ror.org/048evbw70', 'en', 1, 'https://ror.org/048evbw70 Institute of Cellular and Organismic Biology, Academia Sinica ē“°čƒžčˆ‡å€‹é«”ē”Ÿē‰©ē ”ē©¶ę‰€'),
(73481, 'https://ror.org/00jt3dw39', 'en', 1, 'https://ror.org/00jt3dw39 Institute of Biological Chemistry, Academia Sinica äø­å¤®ē ”ē©¶é™¢ē”Ÿē‰©åŒ–å­øē ”ē©¶ę‰€'),
(73482, 'https://ror.org/047sbcx71', 'en', 1, 'https://ror.org/047sbcx71 Institute of Molecular Biology, Academia Sinica äø­å¤®ē ”ē©¶é™¢åˆ†å­ē”Ÿē‰©ē ”ē©¶ę‰€'),
(73483, 'https://ror.org/040bb7493', 'en', 1, 'https://ror.org/040bb7493 Biodiversity Research Center, Academia Sinica 中央研究院 ē”Ÿē‰©å¤šęØ£ę€§ē ”ē©¶äø­åæƒ'),
(73484, 'https://ror.org/01bdefj47', 'en', 1, 'https://ror.org/01bdefj47 Institute of History and Philology, Academia Sinica äø­å¤®ē ”ē©¶é™¢ę­·å²čŖžčØ€ē ”ē©¶ę‰€ē ”ē©¶å¤§ęØ“ęŖ”ę”ˆé¤Ø'),
(73485, 'https://ror.org/01tvy6411', 'en', 1, 'https://ror.org/01tvy6411 Institute of Ethnology, Academia Sinica äø­å¤®ē ”ē©¶é™¢ę°‘ę—å­øē ”ē©¶ę‰€'),
(73486, 'https://ror.org/04bq1zr90', 'en', 1, 'https://ror.org/04bq1zr90 Institute of Modern History, Academia Sinica äø­å¤®ē ”ē©¶é™¢čæ‘ä»£å²ē ”ē©¶ę‰€ē ”ē©¶å¤§ęØ“'),
(73487, 'https://ror.org/01y8gzr79', 'en', 1, 'https://ror.org/01y8gzr79 Institute of Economics, Academia Sinica äø­å¤®ē ”ē©¶é™¢ē¶“ęæŸē ”ē©¶ę‰€'),
(73488, 'https://ror.org/0140nwe11', 'en', 1, 'https://ror.org/0140nwe11 Institute of European and American Studies, Academia Sinica äø­å¤®ē ”ē©¶é™¢ę­ē¾Žē ”ē©¶ę‰€'),
(73489, 'https://ror.org/02vf41z82', 'en', 1, 'https://ror.org/02vf41z82 Institute of Taiwan History, Academia Sinica äø­å¤®ē ”ē©¶é™¢č‡ŗē£å²ē ”ē©¶ę‰€ęŖ”ę”ˆé¤Ø'),
(73490, 'https://ror.org/00nf7ms20', 'en', 1, 'https://ror.org/00nf7ms20 Institute of Sociology, Academia Sinica äø­å¤®ē ”ē©¶é™¢ē¤¾ęœƒå­øē ”ē©¶ę‰€'),
(73491, 'https://ror.org/05r183591', 'en', 1, 'https://ror.org/05r183591 Institute of Linguistics, Academia Sinica äø­å¤®ē ”ē©¶é™¢čŖžčØ€å­øē ”ē©¶ę‰€'),
(73492, 'https://ror.org/001agqs13', 'en', 1, 'https://ror.org/001agqs13 Institute of Political Science, Academia Sinica 中央研究院政治學研究所'),
(73493, 'https://ror.org/0565h3a31', 'la', 1, 'https://ror.org/0565h3a31 Institutum Iurisprudentiae, Academia Sinica 中央研究院法律學研究所'),
(73494, 'https://ror.org/05n4swm55', 'en', 1, 'https://ror.org/05n4swm55 Research Center for Humanities and Social Sciences, Academia Sinica äø­å¤®ē ”ē©¶é™¢äŗŗę–‡ē¤¾ęœƒē§‘å­øē ”ē©¶äø­åæƒ'),
(73495, 'https://ror.org/0277pjz21', 'en', 1, 'https://ror.org/0277pjz21 Radio, Film & TV Design and Research Institute'),
(73496, 'https://ror.org/00ghnph13', 'en', 1, 'https://ror.org/00ghnph13 Fujian Blood Center ē¦å»ŗč”€ę¶²äø­åæƒ'),
(73497, 'https://ror.org/024xp9k29', 'en', 1, 'https://ror.org/024xp9k29 Fujian Institute of Education ē¦å»ŗę•™č‚²å­¦é™¢'),
(73498, 'https://ror.org/0264gw370', 'en', 1, 'https://ror.org/0264gw370 Guangdong Institute for Drug Control å¹æäøœēœčÆå“ę£€éŖŒę‰€'),
(73499, 'https://ror.org/023f8av81', 'en', 1, 'https://ror.org/023f8av81 Gansu Coalfield Geology Bureau ē”˜č‚ƒē…¤ē”°åœ°č“Øå±€'),
(73500, 'https://ror.org/02n9as466', 'en', 1, 'https://ror.org/02n9as466 Gansu Provincial Maternal and Child Health Hospital ē”˜č‚ƒēœå¦‡å¹¼äæå„é™¢'),
(73501, 'https://ror.org/037fk6k96', 'en', 1, 'https://ror.org/037fk6k96 Guangxi Zhuang Autonomous Region Hydraulic Research Institute å¹æč„æå£®ę—č‡Ŗę²»åŒŗę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(73502, 'https://ror.org/01etbrg32', 'en', 1, 'https://ror.org/01etbrg32 Henan Nonferrous Metals Geological Exploration Institute ę²³å—ēœęœ‰č‰²é‡‘å±žåœ°č“Øå‹˜ęŸ„ę€»é™¢'),
(73503, 'https://ror.org/0229pbn48', 'en', 1, 'https://ror.org/0229pbn48 Guangxi Open University 广脿开放大学'),
(73504, 'https://ror.org/01vav0149', 'en', 1, 'https://ror.org/01vav0149 Guizhou Botanical Garden č“µå·žēœę¤ē‰©å›­'),
(73505, 'https://ror.org/04zgxt121', 'en', 1, 'https://ror.org/04zgxt121 Bureau of Geology and Mineral Exploration and Development of Guizhou Province'),
(73506, 'https://ror.org/01c40z329', 'en', 1, 'https://ror.org/01c40z329 Heilongjiang Coldland Building Science Research Institute é»‘é¾™ę±ŸēœåÆ’åœ°å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(73507, 'https://ror.org/01kcan266', 'no_lang_code', 1, 'https://ror.org/01kcan266 CytoSMART Technologies (Netherlands)'),
(73508, 'https://ror.org/02s6c9b53', 'en', 1, 'https://ror.org/02s6c9b53 Israeli Association for the Study of Religions האגודה ×”×™×©×Ø××œ×™×Ŗ ×œ×—×§×Ø דתות'),
(73509, 'https://ror.org/02z2wvt20', 'en', 1, 'https://ror.org/02z2wvt20 Heilongjiang Provincial Environmental Science Research Institute é»‘é¾™ę±ŸēœēŽÆå¢ƒäæęŠ¤ē ”ē©¶ę‰€'),
(73510, 'https://ror.org/05vtc2x84', 'en', 1, 'https://ror.org/05vtc2x84 Henan Provincial Institute of Cultural Heritage and Archaeology ę²³å—ēœę–‡ē‰©č€ƒå¤ē ”ē©¶ę‰€'),
(73511, 'https://ror.org/049asma29', 'en', 1, 'https://ror.org/049asma29 Henan Institute of Geological Survey ę²³å—ēœåœ°č“Øč°ƒęŸ„å±€'),
(73512, 'https://ror.org/01qhcb906', 'en', 1, 'https://ror.org/01qhcb906 Hohhot Minzu College å‘¼å’Œęµ©ē‰¹ę°‘ę—å­¦é™¢'),
(73513, 'https://ror.org/04p8ncq94', 'en', 1, 'https://ror.org/04p8ncq94 Hainan Agricultural School ęµ·å—ēœå†œäøšå­¦ę ”'),
(73514, 'https://ror.org/00tpvmh02', 'no_lang_code', 1, 'https://ror.org/00tpvmh02 Huaibei Mining (China)'),
(73515, 'https://ror.org/03nrtjx51', 'en', 1, 'https://ror.org/03nrtjx51 Hainan Meteorological Service ęµ·å—ēœę°”č±”å±€'),
(73516, 'https://ror.org/05yc9cc15', 'en', 1, 'https://ror.org/05yc9cc15 Hainan Earthquake Administration ęµ·å—ēœåœ°éœ‡å±€'),
(73517, 'https://ror.org/05psp9534', 'en', 1, 'https://ror.org/05psp9534 Hangzhou Cancer Hospital ę­å·žåø‚č‚æē˜¤åŒ»é™¢'),
(73518, 'https://ror.org/03nxzvp26', 'en', 1, 'https://ror.org/03nxzvp26 Hangzhou Botanical Garden ę­å·žę¤ē‰©å›­'),
(73519, 'https://ror.org/007amws38', 'en', 1, 'https://ror.org/007amws38 Hubei Water Resources Research Institute ę¹–åŒ—ēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(73520, 'https://ror.org/05gpas306', 'en', 1, 'https://ror.org/05gpas306 Hangzhou Medical College ę­å·žåŒ»å­¦é™¢'),
(73521, 'https://ror.org/02gh10772', 'en', 1, 'https://ror.org/02gh10772 Hunan Police Academy ę¹–å—č­¦åÆŸå­¦é™¢'),
(73522, 'https://ror.org/029yvzm75', 'en', 1, 'https://ror.org/029yvzm75 Hunan Hydro&Power Design Institute ę¹–å—ę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢'),
(73523, 'https://ror.org/01awdtn69', 'no_lang_code', 1, 'https://ror.org/01awdtn69 SinoMaps Press äø­å›½åœ°å›¾å‡ŗē‰ˆē¤¾'),
(73524, 'https://ror.org/054fkw726', 'en', 1, 'https://ror.org/054fkw726 Hunan Institute of Microbiology ę¹–å—ēœå¾®ē”Ÿē‰©ē ”ē©¶é™¢'),
(73525, 'https://ror.org/02rkcky47', 'en', 1, 'https://ror.org/02rkcky47 Henan Provincial Institute of Land and Resources Sciences ę²³å—ēœå›½åœŸčµ„ęŗē§‘å­¦ē ”ē©¶é™¢'),
(73526, 'https://ror.org/04v84zc94', 'en', 1, 'https://ror.org/04v84zc94 China Academy of Management Sciences 中国箔理科学研究院'),
(73527, 'https://ror.org/04983b693', 'en', 1, 'https://ror.org/04983b693 Instrumentation Technology and Economy Institute ä»Ŗå™Øä»Ŗč”ØęŠ€ęœÆē»ęµŽē ”ē©¶ę‰€'),
(73528, 'https://ror.org/04cxszt91', 'en', 1, 'https://ror.org/04cxszt91 Karamay Central Hospital of Xinjiang å…‹ę‹‰ēŽ›ä¾åø‚äø­åæƒåŒ»é™¢'),
(73529, 'https://ror.org/01hq7pd83', 'en', 1, 'https://ror.org/01hq7pd83 The First Hospital of Kunming ę˜†ę˜Žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(73530, 'https://ror.org/00vk1xe75', 'en', 1, 'https://ror.org/00vk1xe75 Liaoning Vocational College of Medical č¾½å®åŒ»å­¦é™¢å­¦ęŠ„'),
(73531, 'https://ror.org/03616xn26', 'en', 1, 'https://ror.org/03616xn26 Liaoning Meteorological Bureau č¾½å®ēœę°”č±”å±€'),
(73532, 'https://ror.org/046ycbp23', 'en', 1, 'https://ror.org/046ycbp23 Research Institute of Machinery Industry Economic&Management ęœŗę¢°å·„äøšē»ęµŽäøŽē®”ē†ē ”ē©¶ę‰€'),
(73533, 'https://ror.org/04c6sva57', 'en', 1, 'https://ror.org/04c6sva57 Jiangsu Academy of Safety Science & Technology'),
(73534, 'https://ror.org/04knktv12', 'en', 1, 'https://ror.org/04knktv12 Jiujiang Maternal and Child Care Centres ä¹ę±Ÿåø‚å¦‡å¹¼äæå„é™¢'),
(73535, 'https://ror.org/01xaf3k63', 'no_lang_code', 1, 'https://ror.org/01xaf3k63 Metallurgical Industry Press (China) å†¶é‡‘å·„äøšå‡ŗē‰ˆē¤¾'),
(73536, 'https://ror.org/004cyfn34', 'en', 1, 'https://ror.org/004cyfn34 Jiangxi Provincial Academy of Medical Sciences ę±Ÿč„æēœåŒ»å­¦ē§‘å­¦é™¢'),
(73537, 'https://ror.org/011kf5918', 'en', 1, 'https://ror.org/011kf5918 Mianyang Institute of Traditional Chinese Medicine ē»µé˜³äø­åŒ»å­¦é™¢'),
(73538, 'https://ror.org/058edxh67', 'en', 1, 'https://ror.org/058edxh67 Jiangxi Institute Of Economic Administraors ę±Ÿč„æē»ęµŽē®”ē†å¹²éƒØå­¦é™¢'),
(73539, 'https://ror.org/04v9f3d81', 'en', 1, 'https://ror.org/04v9f3d81 Jiangsu Province Institute of Quality & Safety Engineering ę±Ÿč‹ēœč“Øé‡å®‰å…Øå·„ēØ‹ē ”ē©¶ę‰€'),
(73540, 'https://ror.org/05pzdnj43', 'en', 1, 'https://ror.org/05pzdnj43 Jiangsu Provincial Family Planning Institute of Science and Technology ę±Ÿč‹ēœč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(73541, 'https://ror.org/02r6vby11', 'en', 1, 'https://ror.org/02r6vby11 Beijing Research and Design Institute of Rubber Industry åŒ—äŗ¬ę©”čƒ¶å·„äøšē ”ē©¶č®¾č®”é™¢'),
(73542, 'https://ror.org/04pwkp704', 'en', 1, 'https://ror.org/04pwkp704 Department Of Agriculture and Rural Affairs Of Jiangxi Province ę±Ÿč„æēœå†œäøšåŽ…'),
(73543, 'https://ror.org/03nas7697', 'en', 1, 'https://ror.org/03nas7697 Jiang Xi Institute for Drug Control ę±Ÿč„æēœčÆå“ę£€éŖŒę£€ęµ‹ē ”ē©¶é™¢'),
(73544, 'https://ror.org/011hecd67', 'en', 1, 'https://ror.org/011hecd67 National Center for Gene Research äø­å›½ē§‘å­¦é™¢å›½å®¶åŸŗå› ē ”ē©¶äø­åæƒ'),
(73545, 'https://ror.org/04fhteb31', 'en', 1, 'https://ror.org/04fhteb31 National Center of Ocean Standards and Metrology å›½å®¶ęµ·ę“‹ę ‡å‡†č®”é‡äø­åæƒ'),
(73546, 'https://ror.org/03mxyqx84', 'en', 1, 'https://ror.org/03mxyqx84 National Center for Climate Change Strategy and International Cooperation å›½å®¶åŗ”åÆ¹ę°”å€™å˜åŒ–ęˆ˜ē•„ē ”ē©¶å’Œå›½é™…åˆä½œäø­åæƒ'),
(73547, 'https://ror.org/02hhzwx06', 'en', 1, 'https://ror.org/02hhzwx06 Police Dog Technical School č­¦ēŠ¬ęŠ€ęœÆå­¦ę ”'),
(73548, 'https://ror.org/052p82762', 'en', 1, 'https://ror.org/052p82762 Nanchang Center for Disease Control and Prevention å—ę˜Œåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(73549, 'https://ror.org/03j450x81', 'en', 1, 'https://ror.org/03j450x81 Nanyang Medical College å—é™½é†«å­øé«˜ē­‰å°ˆē§‘å­øę ”'),
(73550, 'https://ror.org/05k0v5b40', 'no_lang_code', 1, 'https://ror.org/05k0v5b40 Nanzhong Zhangzhongjing Hospital å—é˜³å¼ ä»²ę™ÆåŒ»é™¢'),
(73551, 'https://ror.org/01fr0xv11', 'en', 1, 'https://ror.org/01fr0xv11 Heilongjiang Provincial Wildlife Research Institute é»‘é¾™ę±Ÿēœé‡Žē”ŸåŠØē‰©ē ”ē©¶ę‰€'),
(73552, 'https://ror.org/03pz37k82', 'en', 1, 'https://ror.org/03pz37k82 Northwest Institute of Mechanical and Electrical Engineering č„æåŒ—ęœŗē”µå·„ēØ‹å­¦é™¢'),
(73553, 'https://ror.org/030zcqn97', 'en', 1, 'https://ror.org/030zcqn97 Ningbo Medical Center Lihuili Hospital å®ę³¢åø‚åŒ»ē–—äø­åæƒęŽęƒ åˆ©åŒ»é™¢'),
(73554, 'https://ror.org/051k1tf82', 'en', 1, 'https://ror.org/051k1tf82 Hainan Marine Monitoring and Forecasting Center ęµ·å—ęµ·ę“‹ē›‘ęµ‹é¢„ęŠ„äø­åæƒ'),
(73555, 'https://ror.org/0294v4s84', 'en', 1, 'https://ror.org/0294v4s84 Ningbo Municipal Bureau of Ecology and Environment'),
(73556, 'https://ror.org/05kq1zz28', 'en', 1, 'https://ror.org/05kq1zz28 Ningxia Academy of Social Sciences å®å¤ē¤¾ä¼šē§‘å­¦é™¢'),
(73557, 'https://ror.org/05t1wae93', 'en', 1, 'https://ror.org/05t1wae93 Puyang Vocational and Technical College ęæ®é˜³čŒäøšęŠ€ęœÆå­¦é™¢'),
(73558, 'https://ror.org/0311vkn02', 'no_lang_code', 1, 'https://ror.org/0311vkn02 Qinghai New Energy (China)'),
(73559, 'https://ror.org/00kfae706', 'en', 1, 'https://ror.org/00kfae706 Qinzhou Maternity and Child Health Care Hospital é’¦å·žåø‚å¦‡å¹¼äæå„é™¢'),
(73560, 'https://ror.org/00087rj45', 'en', 1, 'https://ror.org/00087rj45 Sanming Agricultural Science Research Institute äø‰ę˜Žåø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(73561, 'https://ror.org/04c0bqx97', 'en', 1, 'https://ror.org/04c0bqx97 Asia Pacific Construction Science and Technology Information Research Institute äŗšå¤Ŗå»ŗč®¾ē§‘ęŠ€äæ”ęÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(73562, 'https://ror.org/02k75d319', 'en', 1, 'https://ror.org/02k75d319 Shandong Police College å±±äøœč­¦åÆŸå­¦é™¢'),
(73563, 'https://ror.org/00s3xpq12', 'en', 1, 'https://ror.org/00s3xpq12 Shandong Freshwater Fisheries Research Institute å±±äøœēœę·”ę°“ęø”äøšē ”ē©¶é™¢'),
(73564, 'https://ror.org/05xv2zk35', 'en', 1, 'https://ror.org/05xv2zk35 Policy Research Center for Environment and Economy'),
(73565, 'https://ror.org/011g48w32', 'en', 1, 'https://ror.org/011g48w32 Institute of Sand Control, Shaanxi Academy of Forestry é™•č„æēœę²»ę²™ē ”ē©¶ę‰€'),
(73566, 'https://ror.org/0220ewf20', 'en', 1, 'https://ror.org/0220ewf20 Shandong Coalfield Geological Planning and Investigation Institute'),
(73567, 'https://ror.org/05ek0ze18', 'en', 1, 'https://ror.org/05ek0ze18 Shanghai Institute of Computing Technology äøŠęµ·åø‚č®”ē®—ęŠ€ęœÆē ”ē©¶ę‰€'),
(73568, 'https://ror.org/04pyk6020', 'en', 1, 'https://ror.org/04pyk6020 Shanghai Institute of Geological Survey äøŠęµ·åø‚åœ°č“Øč°ƒęŸ„ē ”ē©¶é™¢'),
(73569, 'https://ror.org/04cy5nh07', 'en', 1, 'https://ror.org/04cy5nh07 Shanghai Optical Instrument Research Institute äøŠęµ·å…‰å­¦ä»Ŗå™Øē ”ē©¶ę‰€'),
(73570, 'https://ror.org/009399a74', 'en', 1, 'https://ror.org/009399a74 Shanghai Institute of Science & Technology Management'),
(73571, 'https://ror.org/03cfv5b91', 'en', 1, 'https://ror.org/03cfv5b91 Shanghai Public Security Bureau äøŠęµ·åø‚å…¬å®‰å±€'),
(73572, 'https://ror.org/05ybgx820', 'no_lang_code', 1, 'https://ror.org/05ybgx820 Shanghai Science and Technical Publishers (China) äøŠęµ·ē§‘å­¦ęŠ€ęœÆå‡ŗē‰ˆē¤¾'),
(73573, 'https://ror.org/01ecwsw76', 'en', 1, 'https://ror.org/01ecwsw76 Shanghai Stock Exchange äøŠęµ·čÆåˆøäŗ¤ę˜“ę‰€'),
(73574, 'https://ror.org/03agmnc67', 'en', 1, 'https://ror.org/03agmnc67 Shougang Institute of Technology é¦–é’¢å·„å­¦é™¢ęˆē«‹äŗŽ'),
(73575, 'https://ror.org/04k4zw919', 'en', 1, 'https://ror.org/04k4zw919 Sichuan Economic Management Cadre College å››å·ēœē»ęµŽē®”ē†å¹²éƒØå­¦é™¢'),
(73576, 'https://ror.org/032z6r127', 'en', 1, 'https://ror.org/032z6r127 Sichuan Integrative Medicine Hosipital å››å·ēœäø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(73577, 'https://ror.org/021jpad90', 'en', 1, 'https://ror.org/021jpad90 General Administration of Sport of China 国家体育总局'),
(73578, 'https://ror.org/024pse488', 'en', 1, 'https://ror.org/024pse488 Systems Engineering Society of China äø­å›½ē³»ē»Ÿå·„ēØ‹å­¦ä¼š'),
(73579, 'https://ror.org/04het4147', 'en', 1, 'https://ror.org/04het4147 Chinese Neuroscience Society äø­å›½ē„žē»ē§‘å­¦å­¦ä¼š'),
(73580, 'https://ror.org/0587q0807', 'en', 1, 'https://ror.org/0587q0807 Sichuan Research Center of New Materials å››å·ēœę–°ęę–™ē ”ē©¶äø­åæƒ'),
(73581, 'https://ror.org/05hhh4g76', 'en', 1, 'https://ror.org/05hhh4g76 The Crop Science Society of China äø­å›½ä½œē‰©å­¦ä¼š'),
(73582, 'https://ror.org/043hxea55', 'en', 1, 'https://ror.org/043hxea55 The First People''s Hospital of Guiyang č“µé˜³åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(73583, 'https://ror.org/04scxn105', 'en', 1, 'https://ror.org/04scxn105 Dingxi City People''s Hospital å®šč„æåø‚äŗŗę°‘åŒ»é™¢'),
(73584, 'https://ror.org/05szwcv45', 'en', 1, 'https://ror.org/05szwcv45 Hunan Provincial Maternal and Child Health Hospital ę¹–å—ēœå¦‡å¹¼äæå„é™¢'),
(73585, 'https://ror.org/00phbja87', 'en', 1, 'https://ror.org/00phbja87 State Administration of Foreign Exchange 国家外汇箔理局'),
(73586, 'https://ror.org/005n4dc83', 'no_lang_code', 1, 'https://ror.org/005n4dc83 Tianjin Synthetic Material Research Institute (China) å¤©ę“„åø‚åˆęˆęę–™å·„äøšē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(73587, 'https://ror.org/01c4gq057', 'en', 1, 'https://ror.org/01c4gq057 Tongliao Academy of Agricultural Sciences é€šč¾½åø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(73588, 'https://ror.org/02h3fyk31', 'en', 1, 'https://ror.org/02h3fyk31 Xichang University č„æę˜Œå­¦é™¢'),
(73589, 'https://ror.org/04xar0g84', 'en', 1, 'https://ror.org/04xar0g84 Hainan Provincial Hospital of Traditional Chinese Medicine ęµ·å—ēœäø­åŒ»é™¢'),
(73590, 'https://ror.org/00502tg50', 'no_lang_code', 1, 'https://ror.org/00502tg50 Wanfang Data (China)'),
(73591, 'https://ror.org/05609xa16', 'en', 1, 'https://ror.org/05609xa16 Wenzhou-Kean University ęø©å·žč‚Æę©å¤§å­¦'),
(73592, 'https://ror.org/046je4759', 'en', 1, 'https://ror.org/046je4759 Western Returned Scholars AssociationĀ·Overseas-Educated Scholars Association of China ę¬§ē¾ŽåŒå­¦ä¼š'),
(73593, 'https://ror.org/0559db563', 'no_lang_code', 1, 'https://ror.org/0559db563 Xinjiang New Energy Research Institute (China)'),
(73594, 'https://ror.org/03mk77722', 'en', 1, 'https://ror.org/03mk77722 Xinjiang Police College'),
(73595, 'https://ror.org/02mqsna37', 'en', 1, 'https://ror.org/02mqsna37 Wuchang University of Technology ę­¦ę˜Œē†å·„å­¦é™¢'),
(73596, 'https://ror.org/0443rmh76', 'en', 1, 'https://ror.org/0443rmh76 Wuhan Blood Center ę­¦ę±‰č”€ę¶²äø­åæƒ'),
(73597, 'https://ror.org/01f0rgv52', 'en', 1, 'https://ror.org/01f0rgv52 Wuhan Prevention and Treatment Center for Occupational Diseases ę­¦ę±‰åø‚čŒäøšē—…é˜²ę²»é™¢'),
(73598, 'https://ror.org/04d9wma96', 'no_lang_code', 1, 'https://ror.org/04d9wma96 Xian Mechanical & Electric Institute (China) č„æå®‰ęœŗē”µē ”ē©¶ę‰€'),
(73599, 'https://ror.org/05wg75z42', 'en', 1, 'https://ror.org/05wg75z42 Children’s Hospital of Fudan University Xiamen Branch åŽ¦é—Øåø‚å„æē«„åŒ»é™¢ē®€ä»‹'),
(73600, 'https://ror.org/02ezs8594', 'en', 1, 'https://ror.org/02ezs8594 Yunnan Population and Family Planning Research Institute äŗ‘å—ēœäŗŗå£å’Œč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(73601, 'https://ror.org/04m2c1f16', 'en', 1, 'https://ror.org/04m2c1f16 Zhe Jiang Institute of Geology and Mineral Resource ęµ™ę±Ÿēœåœ°č“ØēŸæäŗ§ē ”ē©¶ę‰€'),
(73602, 'https://ror.org/04zs83x19', 'en', 1, 'https://ror.org/04zs83x19 Zhengzhou Railway Vocational & Technical College éƒ‘å·žé“č·ÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(73603, 'https://ror.org/00ceh5s45', 'es', 1, 'https://ror.org/00ceh5s45 Departamento de EpidemiologĆ­a'),
(73604, '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'),
(73605, 'https://ror.org/012gdwx28', 'es', 1, 'https://ror.org/012gdwx28 Centro de Salud Casa del Barco'),
(73606, 'https://ror.org/04enqja79', 'en', 1, 'https://ror.org/04enqja79 Andalusian Centre for Nanomedicine and Biotechnology Centro Andaluz de Nanomedicina y BiotecnologĆ­a'),
(73607, 'https://ror.org/04xezgr31', 'no_lang_code', 1, 'https://ror.org/04xezgr31 CIBBIM-Nanomedicine'),
(73608, 'https://ror.org/04ps07s38', 'ca', 1, 'https://ror.org/04ps07s38 Consorci Sanitari Garraf'),
(73609, 'https://ror.org/01gwdsm60', 'es', 1, 'https://ror.org/01gwdsm60 Fundación Andaluza Beturia para la Investigación en Salud'),
(73610, 'https://ror.org/01dxbn742', 'es', 1, 'https://ror.org/01dxbn742 Fundación A LA PAR'),
(73611, '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'),
(73612, 'https://ror.org/01ay03t14', 'no_lang_code', 1, 'https://ror.org/01ay03t14 13Therapeutics (United States)'),
(73613, 'https://ror.org/0110h6q82', 'en', 1, 'https://ror.org/0110h6q82 Clear Path for Veterans'),
(73614, 'https://ror.org/008hcnq44', 'en', 1, 'https://ror.org/008hcnq44 Action Toward Independence'),
(73615, 'https://ror.org/051c7bh69', 'no_lang_code', 1, 'https://ror.org/051c7bh69 Frequency Therapeutics (United States)'),
(73616, 'https://ror.org/00r9q8b87', 'no_lang_code', 1, 'https://ror.org/00r9q8b87 Click Diagnostics (United States)'),
(73617, 'https://ror.org/0584vt120', 'en', 1, 'https://ror.org/0584vt120 Advanced Functional Fabrics of America'),
(73618, 'https://ror.org/03x95rx80', 'pt', 1, 'https://ror.org/03x95rx80 Fundação de Apoio à Universidade do Rio Grande'),
(73619, 'https://ror.org/01mtjh577', 'no_lang_code', 1, 'https://ror.org/01mtjh577 Alivio Therapeutics (United States)'),
(73620, 'https://ror.org/02dr28080', 'no_lang_code', 1, 'https://ror.org/02dr28080 ContraFect (United States)'),
(73621, 'https://ror.org/021a1jy10', 'no_lang_code', 1, 'https://ror.org/021a1jy10 Amicrobe (United States)'),
(73622, 'https://ror.org/0008adq18', 'no_lang_code', 1, 'https://ror.org/0008adq18 Gel4Med (United States)'),
(73623, 'https://ror.org/05ykc8r61', 'no_lang_code', 1, 'https://ror.org/05ykc8r61 DocBox (United States)'),
(73624, 'https://ror.org/027b3vh68', 'no_lang_code', 1, 'https://ror.org/027b3vh68 Appili Therapeutics (Canada)'),
(73625, 'https://ror.org/04n1n6p22', 'en', 1, 'https://ror.org/04n1n6p22 Assistance Dogs of the West'),
(73626, 'https://ror.org/028q4wx16', 'en', 1, 'https://ror.org/028q4wx16 Association for Environmental Health and Sciences Foundation'),
(73627, 'https://ror.org/00xkmw397', 'no_lang_code', 1, 'https://ror.org/00xkmw397 AutoMedx (United States)'),
(73628, 'https://ror.org/00adtdy17', 'en', 1, 'https://ror.org/00adtdy17 Eastern Mediterranean Public Health Network'),
(73629, 'https://ror.org/02zscxx64', 'no_lang_code', 1, 'https://ror.org/02zscxx64 Electrosciences (United Kingdom)'),
(73630, 'https://ror.org/03cz6ea04', 'no_lang_code', 1, 'https://ror.org/03cz6ea04 Bainbridge Development Corporation (United States)'),
(73631, 'https://ror.org/022vzqd83', 'en', 1, 'https://ror.org/022vzqd83 Elemental Excelerator'),
(73632, 'https://ror.org/02ammwv45', 'en', 1, 'https://ror.org/02ammwv45 Health Crescendos Foundation');
INSERT INTO `rors` VALUES
(73633, 'https://ror.org/000k53a93', 'en', 1, 'https://ror.org/000k53a93 Emerald Coast Science Center'),
(73634, 'https://ror.org/04g47vg59', 'en', 1, 'https://ror.org/04g47vg59 Belle Chasse Academy'),
(73635, 'https://ror.org/02tdxsk76', 'en', 1, 'https://ror.org/02tdxsk76 Fidelco Guide Dog Foundation'),
(73636, 'https://ror.org/01vhc4245', 'en', 1, 'https://ror.org/01vhc4245 INFINITY Science Center'),
(73637, 'https://ror.org/04tfspg74', 'no_lang_code', 1, 'https://ror.org/04tfspg74 Information Visualization and Innovative Research'),
(73638, 'https://ror.org/0252vn140', 'en', 1, 'https://ror.org/0252vn140 Center for Collaborative Interdisciplinary Sciences'),
(73639, 'https://ror.org/043e44e41', 'en', 1, 'https://ror.org/043e44e41 Center for Regional Economic Competitiveness'),
(73640, 'https://ror.org/02kyd6w77', 'en', 1, 'https://ror.org/02kyd6w77 Izumi Biosciences'),
(73641, 'https://ror.org/02s2qpg90', 'en', 1, 'https://ror.org/02s2qpg90 Institute of Astronomy and National Astronomical Observatory'),
(73642, 'https://ror.org/04rw28498', 'en', 1, 'https://ror.org/04rw28498 K9 Partners for Patriots'),
(73643, 'https://ror.org/02nanfc50', 'en', 1, 'https://ror.org/02nanfc50 Michigan Works! Macomb/St. Clair'),
(73644, 'https://ror.org/03ge76j81', 'no_lang_code', 1, 'https://ror.org/03ge76j81 Kiio (United States)'),
(73645, 'https://ror.org/010bhd382', 'no_lang_code', 1, 'https://ror.org/010bhd382 Launch Alaska (United States)'),
(73646, 'https://ror.org/03r5vgh07', 'no_lang_code', 1, 'https://ror.org/03r5vgh07 Prytime Medical (United States)'),
(73647, 'https://ror.org/02wt4s775', 'en', 1, 'https://ror.org/02wt4s775 Naval Air Warfare Center Training Systems Division'),
(73648, 'https://ror.org/03rgkg396', 'en', 1, 'https://ror.org/03rgkg396 Military & Health Research Foundation'),
(73649, 'https://ror.org/03m73t838', 'no_lang_code', 1, 'https://ror.org/03m73t838 RenBio (United States)'),
(73650, 'https://ror.org/02y8n9198', 'en', 1, 'https://ror.org/02y8n9198 Renewable Energy Alaska Project'),
(73651, 'https://ror.org/02na2p746', 'en', 1, 'https://ror.org/02na2p746 Navy League of the United States'),
(73652, 'https://ror.org/00k085e72', 'no_lang_code', 1, 'https://ror.org/00k085e72 NanoMedical Systems (United States)'),
(73653, 'https://ror.org/01eb4hw22', 'no_lang_code', 1, 'https://ror.org/01eb4hw22 NeoMatrix Therapeutics (United States)'),
(73654, 'https://ror.org/05xg01v02', 'no_lang_code', 1, 'https://ror.org/05xg01v02 New Amsterdam Sciences (United States)'),
(73655, 'https://ror.org/05rc2ds55', 'no_lang_code', 1, 'https://ror.org/05rc2ds55 OtoScience Labs (United States)'),
(73656, 'https://ror.org/025mr0m62', 'en', 1, 'https://ror.org/025mr0m62 NEADS World Class Service Dogs Change'),
(73657, 'https://ror.org/02kqh4879', 'en', 1, 'https://ror.org/02kqh4879 Palmer Soil and Water Conservation District'),
(73658, 'https://ror.org/03rzz2412', 'en', 1, 'https://ror.org/03rzz2412 Paws Assisting Veterans'),
(73659, 'https://ror.org/047ycs764', 'en', 1, 'https://ror.org/047ycs764 paws4people'),
(73660, 'https://ror.org/029j07248', 'no_lang_code', 1, 'https://ror.org/029j07248 SpineThera (United States)'),
(73661, 'https://ror.org/03fvjsd23', 'no_lang_code', 1, 'https://ror.org/03fvjsd23 Prosthetic Design + Research (United States)'),
(73662, 'https://ror.org/055pxkc03', 'en', 1, 'https://ror.org/055pxkc03 The Korean Institute of Electrical and Electronic Material Engineers ķ•œźµ­ģ „źø°ģ „ģžģž¬ė£Œķ•™ķšŒ'),
(73663, 'https://ror.org/04bq6sg74', 'no_lang_code', 1, 'https://ror.org/04bq6sg74 Trifecta Solutions (United States)'),
(73664, 'https://ror.org/01wd8pk38', 'en', 1, 'https://ror.org/01wd8pk38 VA Connecticut Research and Education Foundation'),
(73665, 'https://ror.org/02c592745', 'en', 1, 'https://ror.org/02c592745 Virginia Department of Veterans Services'),
(73666, 'https://ror.org/05sz4dt57', 'en', 1, 'https://ror.org/05sz4dt57 Aberdeen Science Centre'),
(73667, 'https://ror.org/05b3amq72', 'no_lang_code', 1, 'https://ror.org/05b3amq72 Acesion Pharma (Denmark)'),
(73668, 'https://ror.org/00wy0mk13', 'en', 1, 'https://ror.org/00wy0mk13 Museum of Military Medicine'),
(73669, 'https://ror.org/02qfkfg14', 'no_lang_code', 1, 'https://ror.org/02qfkfg14 Cresset (United Kingdom)'),
(73670, 'https://ror.org/0229w9h56', 'no_lang_code', 1, 'https://ror.org/0229w9h56 Aurum Biosciences (United Kingdom)'),
(73671, 'https://ror.org/04bptvv47', 'en', 1, 'https://ror.org/04bptvv47 Daily Life'),
(73672, 'https://ror.org/05k45wk36', 'en', 1, 'https://ror.org/05k45wk36 Azerbaijan Medical Association Azərbaycan Tibb Assosiasiyası'),
(73673, 'https://ror.org/00vtjav66', 'en', 1, 'https://ror.org/00vtjav66 Darwin Centre'),
(73674, 'https://ror.org/002p8js91', 'en', 1, 'https://ror.org/002p8js91 Drugs & Diagnostics for Tropical Diseases'),
(73675, 'https://ror.org/01fef0w16', 'en', 1, 'https://ror.org/01fef0w16 EAT'),
(73676, 'https://ror.org/030aq8r67', 'no_lang_code', 1, 'https://ror.org/030aq8r67 Biocartis (Belgium)'),
(73677, 'https://ror.org/048r7yt92', 'en', 1, 'https://ror.org/048r7yt92 EngineeringUK'),
(73678, 'https://ror.org/02m3s6y46', 'en', 1, 'https://ror.org/02m3s6y46 Explore York'),
(73679, 'https://ror.org/03b0jrb97', 'no_lang_code', 1, 'https://ror.org/03b0jrb97 GhScientific'),
(73680, 'https://ror.org/05qnccv96', 'en', 1, 'https://ror.org/05qnccv96 British Dental Association'),
(73681, 'https://ror.org/03802zd28', 'en', 1, 'https://ror.org/03802zd28 Global Emerging Pathogens Treatment Consortium'),
(73682, 'https://ror.org/05sfhjs05', 'en', 1, 'https://ror.org/05sfhjs05 British Neuroscience Association'),
(73683, 'https://ror.org/042fkva46', 'no_lang_code', 1, 'https://ror.org/042fkva46 Graphic Science (United Kingdom)'),
(73684, 'https://ror.org/00y289c89', 'en', 1, 'https://ror.org/00y289c89 British Society for the History of Medicine'),
(73685, 'https://ror.org/00n2yhr54', 'en', 1, 'https://ror.org/00n2yhr54 Norton Priory Museum & Gardens'),
(73686, 'https://ror.org/00zwgem63', 'en', 1, 'https://ror.org/00zwgem63 Brooke'),
(73687, 'https://ror.org/03ka0hg89', 'en', 1, 'https://ror.org/03ka0hg89 Nova Laboratories'),
(73688, 'https://ror.org/04kybmr51', 'en', 1, 'https://ror.org/04kybmr51 S.I. Vavilov Institute for the History of Science and Technology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории ŠµŃŃ‚ŠµŃŃ‚Š²Š¾Š·Š½Š°Š½ŠøŃ Šø техники имени Š”. И. Вавилова Š ŠŠ'),
(73689, 'https://ror.org/02qp1kv78', 'en', 1, 'https://ror.org/02qp1kv78 Cambridge Hands-On Science'),
(73690, 'https://ror.org/03vqd0w40', 'en', 1, 'https://ror.org/03vqd0w40 Institute of Medical Ethics'),
(73691, 'https://ror.org/00j7rye35', 'en', 1, 'https://ror.org/00j7rye35 Cambridge Science Centre'),
(73692, 'https://ror.org/04a6evj08', 'no_lang_code', 1, 'https://ror.org/04a6evj08 Phagenesis (United Kingdom)'),
(73693, 'https://ror.org/000j37591', 'en', 1, 'https://ror.org/000j37591 British Psychoanalytical Society'),
(73694, 'https://ror.org/00m6hew51', 'en', 1, 'https://ror.org/00m6hew51 Center for Creative Initiatives in Health and Population'),
(73695, 'https://ror.org/02nkjx490', 'en', 1, 'https://ror.org/02nkjx490 PredictImmune'),
(73696, 'https://ror.org/02dt32p51', 'no_lang_code', 1, 'https://ror.org/02dt32p51 Intelesens (United Kingdom)'),
(73697, 'https://ror.org/009epkm94', 'en', 1, 'https://ror.org/009epkm94 Center for Environmental Concerns'),
(73698, 'https://ror.org/01e2h6r50', 'en', 1, 'https://ror.org/01e2h6r50 Dr Jenner''s House, Museum and Garden'),
(73699, 'https://ror.org/00cprwm60', 'en', 1, 'https://ror.org/00cprwm60 Center for Promotion of Advancement of Society'),
(73700, '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'),
(73701, 'https://ror.org/00e3c6786', 'en', 1, 'https://ror.org/00e3c6786 Scottish Council on Human Bioethics'),
(73702, 'https://ror.org/01jf25m17', 'no_lang_code', 1, 'https://ror.org/01jf25m17 Stealthyx (United Kingdom)'),
(73703, 'https://ror.org/01rhva785', 'es', 1, 'https://ror.org/01rhva785 Centro Nacional de Investigaciones en Salud Materno Infantil'),
(73704, 'https://ror.org/019r5ea24', 'en', 1, 'https://ror.org/019r5ea24 Suriname Indigenous Health Fund'),
(73705, 'https://ror.org/00z6x4k60', 'en', 1, 'https://ror.org/00z6x4k60 Jewish Museum London'),
(73706, 'https://ror.org/0308fvb52', 'en', 1, 'https://ror.org/0308fvb52 Science and Development Network'),
(73707, 'https://ror.org/04yptqa43', 'no_lang_code', 1, 'https://ror.org/04yptqa43 Thermofluidics (United Kingdom)'),
(73708, 'https://ror.org/02zw6k693', 'es', 1, 'https://ror.org/02zw6k693 Parque Explora'),
(73709, 'https://ror.org/01cesq109', 'en', 1, 'https://ror.org/01cesq109 Liverpool Medical Institution'),
(73710, 'https://ror.org/01jfknd16', 'no_lang_code', 1, 'https://ror.org/01jfknd16 Treventis (Canada)'),
(73711, 'https://ror.org/01jpxmr98', 'en', 1, 'https://ror.org/01jpxmr98 Mazingira Institute'),
(73712, 'https://ror.org/042ms5h77', 'en', 1, 'https://ror.org/042ms5h77 UK Council on Deafness'),
(73713, 'https://ror.org/006grep18', 'no_lang_code', 1, 'https://ror.org/006grep18 Science Spaza'),
(73714, 'https://ror.org/058ytte92', 'en', 1, 'https://ror.org/058ytte92 Cape Town Science Centre'),
(73715, 'https://ror.org/03j0pv717', 'es', 1, 'https://ror.org/03j0pv717 Consejo Superior De Salud Publica'),
(73716, 'https://ror.org/03xv8e740', 'no_lang_code', 1, 'https://ror.org/03xv8e740 ABmerit'),
(73717, 'https://ror.org/05mxfdw94', 'no_lang_code', 1, 'https://ror.org/05mxfdw94 DHI (Slovakia)'),
(73718, 'https://ror.org/001f11244', 'no_lang_code', 1, 'https://ror.org/001f11244 Adivit (Slovakia)'),
(73719, 'https://ror.org/000pwjf21', 'no_lang_code', 1, 'https://ror.org/000pwjf21 Documents Workflow Content (Slovakia)'),
(73720, 'https://ror.org/043q1rx18', 'no_lang_code', 1, 'https://ror.org/043q1rx18 Dytron (Slovakia)'),
(73721, 'https://ror.org/028c6av56', 'no_lang_code', 1, 'https://ror.org/028c6av56 Aroma Marketing (Slovakia)'),
(73722, 'https://ror.org/055c63105', 'no_lang_code', 1, 'https://ror.org/055c63105 IBM (Slovakia)'),
(73723, 'https://ror.org/053rk7239', 'no_lang_code', 1, 'https://ror.org/053rk7239 ETKM (Slovakia)'),
(73724, 'https://ror.org/00pph5857', 'no_lang_code', 1, 'https://ror.org/00pph5857 Atos (Slovakia)'),
(73725, 'https://ror.org/0166ary89', 'no_lang_code', 1, 'https://ror.org/0166ary89 Calibrium (Slovakia)'),
(73726, 'https://ror.org/0200a2h90', 'no_lang_code', 1, 'https://ror.org/0200a2h90 Equis (Slovakia)'),
(73727, 'https://ror.org/00wtqt111', 'no_lang_code', 1, 'https://ror.org/00wtqt111 Esox-Plast (Slovakia)'),
(73728, 'https://ror.org/00ah5w636', 'no_lang_code', 1, 'https://ror.org/00ah5w636 Centire Research (Slovakia)'),
(73729, 'https://ror.org/01231rh41', 'en', 1, 'https://ror.org/01231rh41 Georgia Department of Economic Development'),
(73730, 'https://ror.org/04d1fsz63', 'no_lang_code', 1, 'https://ror.org/04d1fsz63 Chemko (Slovakia)'),
(73731, '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'),
(73732, 'https://ror.org/02t4kbq20', 'no_lang_code', 1, 'https://ror.org/02t4kbq20 Fagor Ederlan (Slovakia)'),
(73733, 'https://ror.org/0057mhb40', 'no_lang_code', 1, 'https://ror.org/0057mhb40 Matador (Slovakia)'),
(73734, 'https://ror.org/007f5j378', 'no_lang_code', 1, 'https://ror.org/007f5j378 Cryosoft (Slovakia)'),
(73735, 'https://ror.org/04ajzzc58', 'no_lang_code', 1, 'https://ror.org/04ajzzc58 FineSoft (Slovakia)'),
(73736, 'https://ror.org/04xvc2765', 'no_lang_code', 1, 'https://ror.org/04xvc2765 Integra TDS (Slovakia)'),
(73737, 'https://ror.org/05ja07v76', 'no_lang_code', 1, 'https://ror.org/05ja07v76 Kinex Bearings (Slovakia)'),
(73738, 'https://ror.org/03wyta813', 'no_lang_code', 1, 'https://ror.org/03wyta813 Konstrukta Defence (Slovakia)'),
(73739, 'https://ror.org/027dj9r35', 'no_lang_code', 1, 'https://ror.org/027dj9r35 COLAS Slovakia (Slovakia)'),
(73740, 'https://ror.org/01mftq342', 'no_lang_code', 1, 'https://ror.org/01mftq342 Konzeko, spol (Slovakia)'),
(73741, 'https://ror.org/016ywe586', 'no_lang_code', 1, 'https://ror.org/016ywe586 Kvant (Slovakia)'),
(73742, 'https://ror.org/03w6dw671', 'no_lang_code', 1, 'https://ror.org/03w6dw671 IPM Solutions (Slovakia)'),
(73743, 'https://ror.org/020zksa59', 'no_lang_code', 1, 'https://ror.org/020zksa59 Informacne Technologie A Konzultacie (Slovakia)'),
(73744, 'https://ror.org/0169qcp97', 'no_lang_code', 1, 'https://ror.org/0169qcp97 Geocomplex (Slovakia)'),
(73745, 'https://ror.org/02qfef581', 'en', 1, 'https://ror.org/02qfef581 Nordic Optical Telescope Scientific Association'),
(73746, 'https://ror.org/013yc9k66', 'no_lang_code', 1, 'https://ror.org/013yc9k66 GEOtest Bratislava (Slovakia)'),
(73747, 'https://ror.org/057bmm383', 'no_lang_code', 1, 'https://ror.org/057bmm383 Lb Minerals (Slovakia)'),
(73748, 'https://ror.org/02z809f45', 'no_lang_code', 1, 'https://ror.org/02z809f45 Novekon (Slovakia)'),
(73749, 'https://ror.org/020tn0052', 'no_lang_code', 1, 'https://ror.org/020tn0052 LeikTec (Slovakia)'),
(73750, 'https://ror.org/00t48m413', 'no_lang_code', 1, 'https://ror.org/00t48m413 Johns Manville (Slovakia)'),
(73751, 'https://ror.org/014xvjk95', 'no_lang_code', 1, 'https://ror.org/014xvjk95 Observatory and Planetarium of PreŔov'),
(73752, 'https://ror.org/0086zck61', 'no_lang_code', 1, 'https://ror.org/0086zck61 Martimex (Slovakia)'),
(73753, 'https://ror.org/03g386s80', 'no_lang_code', 1, 'https://ror.org/03g386s80 Maspoma (Slovakia)'),
(73754, 'https://ror.org/05nd09v89', 'no_lang_code', 1, 'https://ror.org/05nd09v89 ON Semiconductor (Slovakia)'),
(73755, 'https://ror.org/01q206483', 'no_lang_code', 1, 'https://ror.org/01q206483 OVD - OvocinÔrske Družstvo (Slovakia)'),
(73756, 'https://ror.org/05mkmy494', 'no_lang_code', 1, 'https://ror.org/05mkmy494 Pansophia'),
(73757, 'https://ror.org/0521m4596', 'no_lang_code', 1, 'https://ror.org/0521m4596 McCarter (Slovakia)'),
(73758, 'https://ror.org/01y4d4d64', 'no_lang_code', 1, 'https://ror.org/01y4d4d64 MIA Engineering (Slovakia)'),
(73759, 'https://ror.org/015sra590', 'sk', 1, 'https://ror.org/015sra590 SlovenskƩ PlanetƔriƔ'),
(73760, 'https://ror.org/03apm9z31', 'no_lang_code', 1, 'https://ror.org/03apm9z31 NES (Slovakia)'),
(73761, 'https://ror.org/03s3tpp34', 'no_lang_code', 1, 'https://ror.org/03s3tpp34 Plantex (Slovakia)'),
(73762, 'https://ror.org/051r4h193', 'no_lang_code', 1, 'https://ror.org/051r4h193 PPA Controll (Slovakia)'),
(73763, 'https://ror.org/03191tc24', 'no_lang_code', 1, 'https://ror.org/03191tc24 Sembid'),
(73764, 'https://ror.org/02hdkm455', 'no_lang_code', 1, 'https://ror.org/02hdkm455 Novartis (Slovakia)'),
(73765, 'https://ror.org/00cx1hm79', 'no_lang_code', 1, 'https://ror.org/00cx1hm79 Sessler'),
(73766, 'https://ror.org/01hcney72', 'no_lang_code', 1, 'https://ror.org/01hcney72 Thyssenkrupp (Slovakia)'),
(73767, 'https://ror.org/02eg69p81', 'no_lang_code', 1, 'https://ror.org/02eg69p81 Research - Development Application Services (Slovakia)'),
(73768, 'https://ror.org/03ae4gt79', 'no_lang_code', 1, 'https://ror.org/03ae4gt79 Shimadzu (Slovakia)'),
(73769, 'https://ror.org/00grkfw93', 'no_lang_code', 1, 'https://ror.org/00grkfw93 SlovenskĆ” ElektrizačnĆ” PrenosovĆ” SĆŗstava (Slovakia)'),
(73770, 'https://ror.org/058pqk375', 'no_lang_code', 1, 'https://ror.org/058pqk375 Siemens (Slovakia)'),
(73771, 'https://ror.org/05t5yjz39', 'no_lang_code', 1, 'https://ror.org/05t5yjz39 SlovenskƩ MagnezitovƩ ZƔvody (Slovakia)'),
(73772, 'https://ror.org/017rfjf78', 'no_lang_code', 1, 'https://ror.org/017rfjf78 Riso (Slovakia)'),
(73773, 'https://ror.org/022869t47', 'no_lang_code', 1, 'https://ror.org/022869t47 Museum of SpiÅ”'),
(73774, 'https://ror.org/04fhe5c23', 'no_lang_code', 1, 'https://ror.org/04fhe5c23 Schrack Technik (Slovakia)'),
(73775, 'https://ror.org/02y5r2j71', 'no_lang_code', 1, 'https://ror.org/02y5r2j71 SpiŔcol (Slovakia)'),
(73776, 'https://ror.org/02kt1pm02', 'sk', 1, 'https://ror.org/02kt1pm02 ŠtÔtne Lesy Tatranského NÔrodního Parku'),
(73777, 'https://ror.org/02nzrsp96', 'sk', 1, 'https://ror.org/02nzrsp96 ŠtÔtny InŔtitút Odborného VzdelÔvania'),
(73778, 'https://ror.org/017rjkb90', 'no_lang_code', 1, 'https://ror.org/017rjkb90 Thermo Solar (Slovakia)'),
(73779, 'https://ror.org/02knymj82', 'sk', 1, 'https://ror.org/02knymj82 Kúpele VyŔné Ružbachy'),
(73780, 'https://ror.org/02a57s352', 'es', 1, 'https://ror.org/02a57s352 Centro Regional de Hemodonación'),
(73781, 'https://ror.org/02k7stp33', 'en', 1, 'https://ror.org/02k7stp33 National Institute for Education ŠtÔtny Pedagogický ústav'),
(73782, 'https://ror.org/04ed42k63', 'no_lang_code', 1, 'https://ror.org/04ed42k63 Voipac (Slovakia)'),
(73783, 'https://ror.org/02zxs5p14', 'no_lang_code', 1, 'https://ror.org/02zxs5p14 VSL Software (Slovakia)'),
(73784, 'https://ror.org/02w7mbz57', 'no_lang_code', 1, 'https://ror.org/02w7mbz57 Staton (Slovakia)'),
(73785, 'https://ror.org/04qdr2v32', 'no_lang_code', 1, 'https://ror.org/04qdr2v32 Sylex (Slovakia)'),
(73786, 'https://ror.org/00x74f485', 'en', 1, 'https://ror.org/00x74f485 Slovak Caves Administration SzlovÔkiai Barlangok IgazgatósÔga'),
(73787, 'https://ror.org/02h74qa12', 'es', 1, 'https://ror.org/02h74qa12 MĆŗtua Terrassa'),
(73788, 'https://ror.org/02taynh45', 'no_lang_code', 1, 'https://ror.org/02taynh45 SystƩmy Priemyselnej Informatiky (Slovakia)'),
(73789, 'https://ror.org/05xjjbz05', 'no_lang_code', 1, 'https://ror.org/05xjjbz05 Deutsche Telekom (Slovakia)'),
(73790, 'https://ror.org/02bm0dv51', 'no_lang_code', 1, 'https://ror.org/02bm0dv51 Way Industries (Slovakia)'),
(73791, 'https://ror.org/02z3t4v81', 'es', 1, 'https://ror.org/02z3t4v81 Programa de Salud Global'),
(73792, 'https://ror.org/05vs7jg22', 'en', 1, 'https://ror.org/05vs7jg22 World Health Organization - Slovakia'),
(73793, 'https://ror.org/01qwwqf39', 'no_lang_code', 1, 'https://ror.org/01qwwqf39 YMS (Slovakia)'),
(73794, 'https://ror.org/02sp9w679', 'sk', 1, 'https://ror.org/02sp9w679 Trojsten'),
(73795, 'https://ror.org/052z98995', 'no_lang_code', 1, 'https://ror.org/052z98995 VƔdium (Slovakia)'),
(73796, 'https://ror.org/02c3keg48', 'sk', 1, 'https://ror.org/02c3keg48 AsociƔcia Doktorandov Slovenska'),
(73797, 'https://ror.org/04ykypa08', 'no_lang_code', 1, 'https://ror.org/04ykypa08 PodbrezovÔ Iron Works (Slovakia) Železiarne PodbrezovÔ'),
(73798, 'https://ror.org/05rm2kt05', 'en', 1, 'https://ror.org/05rm2kt05 Slovak Technical Museum Slovenské Technické Múzeum'),
(73799, 'https://ror.org/03zr63661', 'en', 1, 'https://ror.org/03zr63661 Slovak Water Management Enterprise Slovenský VodohospodÔrsky Podnik'),
(73800, 'https://ror.org/04hjhj186', 'no_lang_code', 1, 'https://ror.org/04hjhj186 Biocartis (Switzerland)'),
(73801, 'https://ror.org/025v27q25', 'no_lang_code', 1, 'https://ror.org/025v27q25 Vegum (Slovakia)'),
(73802, 'https://ror.org/01wxthv91', 'sk', 1, 'https://ror.org/01wxthv91 SlovenskĆ” FyzikĆ”lna SpoločnosÅ„'),
(73803, 'https://ror.org/04ffg1496', 'no_lang_code', 1, 'https://ror.org/04ffg1496 Zts Inmart Atóm (Slovakia)'),
(73804, 'https://ror.org/04r425b39', 'en', 1, 'https://ror.org/04r425b39 Slovak Renewable Energy Agency'),
(73805, 'https://ror.org/013y3gm73', 'no_lang_code', 1, 'https://ror.org/013y3gm73 ZTS Sabinov (Slovakia)'),
(73806, 'https://ror.org/01hjd1v39', 'no_lang_code', 1, 'https://ror.org/01hjd1v39 Zelseed (Slovakia)'),
(73807, 'https://ror.org/05kbysy14', 'no_lang_code', 1, 'https://ror.org/05kbysy14 SlovenskƩ ElektrƔrne (Slovakia)'),
(73808, 'https://ror.org/03x7fn667', 'en', 1, 'https://ror.org/03x7fn667 Western Regional Research Center'),
(73809, 'https://ror.org/02gbdhj19', 'en', 1, 'https://ror.org/02gbdhj19 National Center for Agricultural Utilization Research'),
(73810, 'https://ror.org/03b08sh51', 'en', 1, 'https://ror.org/03b08sh51 Beltsville Agricultural Research Center'),
(73811, 'https://ror.org/03ks9ad25', 'no_lang_code', 1, 'https://ror.org/03ks9ad25 Hydrogen Slovakia (Slovakia)'),
(73812, 'https://ror.org/01cghcn81', 'en', 1, 'https://ror.org/01cghcn81 Southern Regional Research Center'),
(73813, 'https://ror.org/05kjsn706', 'sk', 1, 'https://ror.org/05kjsn706 Nemocnica Malacky'),
(73814, 'https://ror.org/052v5pn20', 'en', 1, 'https://ror.org/052v5pn20 Eastern Regional Research Center'),
(73815, 'https://ror.org/053g7ab72', 'en', 1, 'https://ror.org/053g7ab72 Grammar School GymnƔzium v Snine'),
(73816, 'https://ror.org/0519hbh33', 'no_lang_code', 1, 'https://ror.org/0519hbh33 Drevar (Slovakia)'),
(73817, 'https://ror.org/03n6j5f16', 'en', 1, 'https://ror.org/03n6j5f16 The Institute of Military History Vojenský historický ústav'),
(73818, 'https://ror.org/03tgx7h38', 'no_lang_code', 1, 'https://ror.org/03tgx7h38 EkoWatt (Slovakia)'),
(73819, 'https://ror.org/013607p24', 'sk', 1, 'https://ror.org/013607p24 Prevencia'),
(73820, 'https://ror.org/053j5m838', 'no_lang_code', 1, 'https://ror.org/053j5m838 Bitunova (Slovakia)'),
(73821, 'https://ror.org/054dwj411', 'no_lang_code', 1, 'https://ror.org/054dwj411 Geodis (Slovakia)'),
(73822, 'https://ror.org/00v7th354', 'en', 1, 'https://ror.org/00v7th354 The Mark Foundation for Cancer Research'),
(73823, 'https://ror.org/00gz53f50', 'en', 1, 'https://ror.org/00gz53f50 Centre for Public Policy Research'),
(73824, 'https://ror.org/01npr5x48', 'no_lang_code', 1, 'https://ror.org/01npr5x48 GNA Research (Israel)'),
(73825, 'https://ror.org/05dxjde67', 'en', 1, 'https://ror.org/05dxjde67 Memorial Medical Center Foundation'),
(73826, 'https://ror.org/04jvwj909', 'en', 1, 'https://ror.org/04jvwj909 Center for Jewish–Christian Understanding and Cooperation Center for Judeo-Christian Understanding and Cooperation'),
(73827, 'https://ror.org/04v85xx73', 'en', 1, 'https://ror.org/04v85xx73 Lester Smith Medical Research Institute'),
(73828, 'https://ror.org/04kz65y09', 'en', 1, 'https://ror.org/04kz65y09 Japan Society of English for Research ē ”ē©¶č€…ć®ćŸć‚ć®č‹±čŖž'),
(73829, 'https://ror.org/01vrvqh04', 'en', 1, 'https://ror.org/01vrvqh04 Association for Scottish Literary Studies'),
(73830, 'https://ror.org/04yr2xe56', 'en', 1, 'https://ror.org/04yr2xe56 The British Blockchain Association'),
(73831, 'https://ror.org/03aw29357', 'no_lang_code', 1, 'https://ror.org/03aw29357 Applied Spectral Imaging (United States)'),
(73832, 'https://ror.org/01tas7m50', 'en', 1, 'https://ror.org/01tas7m50 Africa Youth Growth Foundation'),
(73833, 'https://ror.org/00kbw8090', 'no_lang_code', 1, 'https://ror.org/00kbw8090 Hameln (Slovakia)'),
(73834, 'https://ror.org/03ybvq281', 'sk', 1, 'https://ror.org/03ybvq281 Strednej Odbornej Ŕkole Lesníckej BanskÔ Štiavnica'),
(73835, 'https://ror.org/015m1g269', 'no_lang_code', 1, 'https://ror.org/015m1g269 Auchem (Slovakia)'),
(73836, 'https://ror.org/04z999347', 'sk', 1, 'https://ror.org/04z999347 Centrum Pedagogicko PsychologickƩho Poradenstva a Prevencie'),
(73837, 'https://ror.org/039k6fv39', 'no_lang_code', 1, 'https://ror.org/039k6fv39 Vetservis (Slovakia)'),
(73838, 'https://ror.org/05d3b2x32', 'no_lang_code', 1, 'https://ror.org/05d3b2x32 GemerskĆ” NerudnĆ” SpoločnosÅ„ (Slovakia)'),
(73839, 'https://ror.org/01ghzbt10', 'sk', 1, 'https://ror.org/01ghzbt10 Nemocnica SvƤtƩho Michala'),
(73840, 'https://ror.org/00xcr3m62', 'sk', 1, 'https://ror.org/00xcr3m62 ŠtÔtny VeterinÔrny a Potravinový Ústav'),
(73841, 'https://ror.org/00e3qze54', 'no_lang_code', 1, 'https://ror.org/00e3qze54 AutomatizĆ”cia železničnej Dopravy (Slovakia)'),
(73842, 'https://ror.org/055a8sc47', 'no_lang_code', 1, 'https://ror.org/055a8sc47 Spa-ce.net'),
(73843, 'https://ror.org/032ddhe09', 'sk', 1, 'https://ror.org/032ddhe09 StrednÔ OdbornÔ Skola Lesnícka TvrdoŔín'),
(73844, 'https://ror.org/00pyf2p89', 'no_lang_code', 1, 'https://ror.org/00pyf2p89 TMG (Slovakia)'),
(73845, 'https://ror.org/002n9qz56', 'en', 1, 'https://ror.org/002n9qz56 European School of Materials'),
(73846, 'https://ror.org/02xg9a459', 'en', 1, 'https://ror.org/02xg9a459 Duchenne UK'),
(73847, 'https://ror.org/02vbwsy79', 'en', 1, 'https://ror.org/02vbwsy79 Australian Securities and Investments Commission'),
(73848, 'https://ror.org/03cfhyx33', 'en', 1, 'https://ror.org/03cfhyx33 Australian Taxation Office'),
(73849, 'https://ror.org/036jqev97', 'en', 1, 'https://ror.org/036jqev97 NDIS Quality and Safeguards Commission'),
(73850, 'https://ror.org/00zkrw974', 'en', 1, 'https://ror.org/00zkrw974 Canada''s Ecofiscal Commission'),
(73851, 'https://ror.org/040apba86', 'en', 1, 'https://ror.org/040apba86 Global Research and Advocacy Group'),
(73852, 'https://ror.org/00s5nzf91', 'en', 1, 'https://ror.org/00s5nzf91 Baoson Hospital Bệnh viện Đa khoa Bįŗ£o SĘ”n'),
(73853, '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 ŠŠ°ŃƒŠŗŠ¾Š²ŠøŠ¹ центр превентивної токсикології, харчової та хімічної безпеки імені акаГеміка Š›.І. ŠœŠµŠ“Š²ŠµŠ“Ń ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š° охорони зГоров''я України'),
(73854, 'https://ror.org/04q6f6q61', 'es', 1, 'https://ror.org/04q6f6q61 BiblioMadSalud'),
(73855, 'https://ror.org/016bjqk65', 'no_lang_code', 1, 'https://ror.org/016bjqk65 Abu Dhabi Health Services ؓركة أبوظبي للخدمات Ų§Ł„ŲµŲ­ŁŠŲ© - ŲµŲ­Ų©'),
(73856, 'https://ror.org/02gsa9r71', 'en', 1, 'https://ror.org/02gsa9r71 Shenyang Ninth People''s Hospital ę²ˆé˜³åø‚ē¬¬ä¹äŗŗę°‘åŒ»é™¢'),
(73857, 'https://ror.org/02n2g5x76', 'en', 1, 'https://ror.org/02n2g5x76 Meteorological Bureau of Shenzhen Municipality ę·±åœ³åø‚ę°”č±”å±€'),
(73858, 'https://ror.org/04ej3c950', 'en', 1, 'https://ror.org/04ej3c950 China Rural Technology Development Center äø­å›½å†œę‘ęŠ€ęœÆå¼€å‘äø­åæƒ'),
(73859, 'https://ror.org/05shbkc58', 'pt', 1, 'https://ror.org/05shbkc58 Unifunec - Centro UniversitƔrio de Santa FƩ do Sul'),
(73860, 'https://ror.org/02sgk6s93', 'en', 1, 'https://ror.org/02sgk6s93 Nagano University of Health and Medicine é•·é‡Žäæå„åŒ»ē™‚å¤§å­¦'),
(73861, 'https://ror.org/020jfw620', 'en', 1, 'https://ror.org/020jfw620 Hartpury University'),
(73862, 'https://ror.org/01ywdxb33', 'en', 1, 'https://ror.org/01ywdxb33 Bank of Estonia Eesti Pank'),
(73863, 'https://ror.org/04zmdqe71', 'en', 1, 'https://ror.org/04zmdqe71 Bank of Japan ę—„ęœ¬éŠ€č”Œ'),
(73864, 'https://ror.org/000cf1839', 'en', 1, 'https://ror.org/000cf1839 Bank of Latvia Latvijas Banka'),
(73865, 'https://ror.org/0008m0297', 'en', 1, 'https://ror.org/0008m0297 Bank of Lithuania Lietuvos Bankas'),
(73866, 'https://ror.org/044nbg291', 'en', 1, 'https://ror.org/044nbg291 Banca Națională a RomĆ¢niei National Bank of Romania'),
(73867, 'https://ror.org/048qms624', 'en', 1, 'https://ror.org/048qms624 Bank of Slovenia Banka Slovenije'),
(73868, 'https://ror.org/042wav684', 'en', 1, 'https://ror.org/042wav684 Bulgarian National Bank Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° нароГна банка'),
(73869, 'https://ror.org/00hn65a26', 'en', 1, 'https://ror.org/00hn65a26 Banco Central de la RepĆŗblica Argentina Central Bank of Argentina'),
(73870, 'https://ror.org/02mr3av04', 'en', 1, 'https://ror.org/02mr3av04 Central Bank of Cyprus Kıbrıs Merkez Bankası Kεντρική Τράπεζα της ĪšĻĻ€ĻĪæĻ…'),
(73871, 'https://ror.org/00j0ctk30', 'en', 1, 'https://ror.org/00j0ctk30 Banc Ceannais na hƉireann Central Bank of Ireland'),
(73872, 'https://ror.org/055e8bt13', 'en', 1, 'https://ror.org/055e8bt13 Banque centrale du Luxembourg Central Bank of Luxembourg'),
(73873, 'https://ror.org/03qtzdh23', 'en', 1, 'https://ror.org/03qtzdh23 Bank Ċentrali ta’ Malta Central Bank of Malta'),
(73874, 'https://ror.org/01hh2jh68', 'da', 1, 'https://ror.org/01hh2jh68 Danmarks Nationalbank'),
(73875, 'https://ror.org/05fk5tr28', 'en', 1, 'https://ror.org/05fk5tr28 Federal Reserve'),
(73876, 'https://ror.org/05qg1tz58', 'en', 1, 'https://ror.org/05qg1tz58 Federal Reserve Bank of Atlanta'),
(73877, 'https://ror.org/01djrhs97', 'en', 1, 'https://ror.org/01djrhs97 Federal Reserve Bank of Boston'),
(73878, 'https://ror.org/05ks2fq79', 'en', 1, 'https://ror.org/05ks2fq79 Federal Reserve Bank of Dallas'),
(73879, 'https://ror.org/0380n5h16', 'en', 1, 'https://ror.org/0380n5h16 Federal Reserve Bank of Minneapolis'),
(73880, 'https://ror.org/02gsb6172', 'en', 1, 'https://ror.org/02gsb6172 Federal Reserve Bank of Philadelphia'),
(73881, 'https://ror.org/058pmah25', 'en', 1, 'https://ror.org/058pmah25 Federal Reserve Bank of Richmond'),
(73882, 'https://ror.org/05p5xsx92', 'en', 1, 'https://ror.org/05p5xsx92 Federal Reserve Bank of San Francisco'),
(73883, 'https://ror.org/00t7bjm27', 'en', 1, 'https://ror.org/00t7bjm27 National Bank of Slovakia NƔrodnƔ banka Slovenska'),
(73884, 'https://ror.org/01rdcx205', 'en', 1, 'https://ror.org/01rdcx205 New Development Bank'),
(73885, 'https://ror.org/02a0n8d86', 'en', 1, 'https://ror.org/02a0n8d86 Saudi Arabian Monetary Authority Ł…Ų¤Ų³Ų³Ų© النقد Ų§Ł„Ų¹Ų±ŲØŁŠ Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠā€Ž'),
(73886, 'https://ror.org/00cgds605', 'en', 1, 'https://ror.org/00cgds605 Forum Ekonomi Islam Dunia World Islamic Economic Forum Foundation'),
(73887, 'https://ror.org/00ynzwx73', 'en', 1, 'https://ror.org/00ynzwx73 Afghan Paramount Welfare and Development Organization'),
(73888, 'https://ror.org/05hjgq553', 'en', 1, 'https://ror.org/05hjgq553 Children’s Future International'),
(73889, 'https://ror.org/03747hz63', 'en', 1, 'https://ror.org/03747hz63 The Task Force for Global Health'),
(73890, 'https://ror.org/05pqvqq46', 'en', 1, 'https://ror.org/05pqvqq46 Centre for Health and Social Justice'),
(73891, 'https://ror.org/04cwb1p56', 'de', 1, 'https://ror.org/04cwb1p56 Staats- und UniversitƤtsbibliothek Bremen'),
(73892, 'https://ror.org/016r7x187', 'no_lang_code', 1, 'https://ror.org/016r7x187 WiTricity (United States)'),
(73893, 'https://ror.org/02ttmc049', 'no_lang_code', 1, 'https://ror.org/02ttmc049 Accurate Solar Power (United States)'),
(73894, 'https://ror.org/006f3dv52', 'es', 1, 'https://ror.org/006f3dv52 Observatorio de Mortalidad Materna en MƩxico'),
(73895, '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'),
(73896, 'https://ror.org/04b93g231', 'en', 1, 'https://ror.org/04b93g231 Museum of Islamic Art متحف الفن Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(73897, 'https://ror.org/0146m4n64', 'no_lang_code', 1, 'https://ror.org/0146m4n64 Qatar Central Bank مصرف قطر Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(73898, 'https://ror.org/02vtew340', 'no_lang_code', 1, 'https://ror.org/02vtew340 NextTechnologies (Hungary)'),
(73899, 'https://ror.org/02d983k79', 'en', 1, 'https://ror.org/02d983k79 Equine Veterinary Medical Center Ł…Ų±ŁƒŲ² Ų§Ł„Ų®ŁŠŁˆŁ„ Ų§Ł„Ų·ŲØŁŠ Ų§Ł„ŲØŁŠŲ·Ų±ŁŠ'),
(73900, 'https://ror.org/02qn3rx87', 'en', 1, 'https://ror.org/02qn3rx87 Doha Centre for Media Freedom Ł…Ų±ŁƒŲ² Ų§Ł„ŲÆŁˆŲ­Ų© Ł„Ų­Ų±ŁŠŲ© ال؄علام'),
(73901, 'https://ror.org/030x88e61', 'no_lang_code', 1, 'https://ror.org/030x88e61 Micron Semiconductor (United Kingdom)'),
(73902, 'https://ror.org/00bwvyk18', 'no_lang_code', 1, 'https://ror.org/00bwvyk18 Qatar Credit Bureau Ł…Ų±ŁƒŲ² قطر Ł„Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ų§Ł„Ų§Ų¦ŲŖŁ…Ų§Ł†ŁŠŲ©'),
(73903, 'https://ror.org/003na7826', 'no_lang_code', 1, 'https://ror.org/003na7826 Takeda (Ireland)'),
(73904, 'https://ror.org/04jfar564', 'no_lang_code', 1, 'https://ror.org/04jfar564 Takeda (Australia)'),
(73905, 'https://ror.org/04pfpqx12', 'no_lang_code', 1, 'https://ror.org/04pfpqx12 Takeda (Sweden)'),
(73906, 'https://ror.org/056d2rn68', 'no_lang_code', 1, 'https://ror.org/056d2rn68 Takeda (Canada)'),
(73907, 'https://ror.org/03y3jby41', 'fr', 1, 'https://ror.org/03y3jby41 Centre National de Recherche et de Formation sur le Paludisme'),
(73908, 'https://ror.org/003mewa18', 'no_lang_code', 1, 'https://ror.org/003mewa18 Linde (Italy)'),
(73909, 'https://ror.org/04b9q9g40', 'en', 1, 'https://ror.org/04b9q9g40 African Rural University'),
(73910, 'https://ror.org/027przv47', 'en', 1, 'https://ror.org/027przv47 Flemish Parliament FlƤmisches Parlament Parlement Flamand Vlaams Parlement'),
(73911, 'https://ror.org/04nm3yk20', 'no_lang_code', 1, 'https://ror.org/04nm3yk20 Takeda (Austria)'),
(73912, 'https://ror.org/058yz2m16', 'en', 1, 'https://ror.org/058yz2m16 Wisconsin Project on Nuclear Arms Control'),
(73913, 'https://ror.org/046y50921', 'no_lang_code', 1, 'https://ror.org/046y50921 AB Vista (United Kingdom)'),
(73914, 'https://ror.org/00jbakb92', 'no_lang_code', 1, 'https://ror.org/00jbakb92 Branston (United Kingdom)'),
(73915, 'https://ror.org/01565d802', 'no_lang_code', 1, 'https://ror.org/01565d802 Locate Bio (United Kingdom)'),
(73916, 'https://ror.org/05kh76837', 'no_lang_code', 1, 'https://ror.org/05kh76837 Northern Gas Networks (United Kingdom)'),
(73917, 'https://ror.org/01sw7vm96', 'no_lang_code', 1, 'https://ror.org/01sw7vm96 We Predict (United Kingdom)'),
(73918, 'https://ror.org/058myeh47', 'no_lang_code', 1, 'https://ror.org/058myeh47 Semefab (United Kingdom)'),
(73919, 'https://ror.org/0574mcz98', 'en', 1, 'https://ror.org/0574mcz98 National Food Safety and Quality Service Servicio Nacional de Sanidad y Calidad Agroalimentaria'),
(73920, 'https://ror.org/04t10yj72', 'no_lang_code', 1, 'https://ror.org/04t10yj72 Reihoo (France)'),
(73921, 'https://ror.org/01ymz3j33', 'en', 1, 'https://ror.org/01ymz3j33 Tertiary Research and Education Network of South Africa'),
(73922, 'https://ror.org/04gp2qg91', 'en', 1, 'https://ror.org/04gp2qg91 Open Book Publishers'),
(73923, 'https://ror.org/04xw4m193', 'en', 1, 'https://ror.org/04xw4m193 Environmental Information Data Centre'),
(73924, 'https://ror.org/01at8a333', 'no_lang_code', 1, 'https://ror.org/01at8a333 Allogene Therapeutics (United States)'),
(73925, 'https://ror.org/00e98bw30', 'en', 1, 'https://ror.org/00e98bw30 Coalition of Open Access Policy Institutions'),
(73926, 'https://ror.org/01v5bs750', 'en', 1, 'https://ror.org/01v5bs750 Rayos Contra Cancer'),
(73927, 'https://ror.org/014em8n15', 'no_lang_code', 1, 'https://ror.org/014em8n15 Rubius Therapeutics (United States)'),
(73928, 'https://ror.org/0151gh112', 'en', 1, 'https://ror.org/0151gh112 Islamic Azad University Rasht Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد Ų±Ų“ŲŖā€Ž'),
(73929, 'https://ror.org/05ahnsa78', 'en', 1, 'https://ror.org/05ahnsa78 Institute of Political Science Instytut Nauki o Polityce'),
(73930, 'https://ror.org/00x67g916', 'en', 1, 'https://ror.org/00x67g916 Allensbach Hochschule Allensbach University'),
(73931, 'https://ror.org/056eeyx03', 'en', 1, 'https://ror.org/056eeyx03 Baden State Museum Badische Landesmuseum'),
(73932, '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'),
(73933, 'https://ror.org/01cmhh462', 'en', 1, 'https://ror.org/01cmhh462 Bavarian Broadcasting Bayerischer Rundfunk'),
(73934, 'https://ror.org/044jqqw48', 'de', 1, 'https://ror.org/044jqqw48 Staatliche Kunsthalle Karlsruhe'),
(73935, 'https://ror.org/03rvjsb61', 'de', 1, 'https://ror.org/03rvjsb61 Landtag Nordrhein-Westfalen Landtag of North Rhine-Westphalia'),
(73936, 'https://ror.org/00v1nkq94', 'de', 1, 'https://ror.org/00v1nkq94 Landesamt für Kultur und Denkmalpflege Mecklenburg-Vorpommern'),
(73937, 'https://ror.org/03t7jd518', 'de', 1, 'https://ror.org/03t7jd518 Duale Hochschule Gera-Eisenach'),
(73938, 'https://ror.org/05s31q962', 'no_lang_code', 1, 'https://ror.org/05s31q962 West German Broadcasting Cologne Westdeutscher Rundfunk'),
(73939, 'https://ror.org/02ktnrv41', 'de', 1, 'https://ror.org/02ktnrv41 Bundeskunsthalle'),
(73940, 'https://ror.org/026stee22', 'en', 1, 'https://ror.org/026stee22 Max Planck Institute of Animal Behavior Max-Planck-Institut für Verhaltensbiologie'),
(73941, 'https://ror.org/05k0x2619', 'en', 1, 'https://ror.org/05k0x2619 Max Planck-Bristol Centre for Minimal Biology'),
(73942, 'https://ror.org/02n9d1732', 'en', 1, 'https://ror.org/02n9d1732 Max Planck University of Twente Center for Complex Fluid Dynamics'),
(73943, 'https://ror.org/043q87b85', 'de', 1, 'https://ror.org/043q87b85 Wissenschaftliche Stadtbibliothek Mainz'),
(73944, 'https://ror.org/05s928n76', 'de', 1, 'https://ror.org/05s928n76 Bach Archiv Leipzig'),
(73945, 'https://ror.org/03ps48j85', 'de', 1, 'https://ror.org/03ps48j85 Hochschule für Musik Karlsruhe University of Music Karlsruhe'),
(73946, 'https://ror.org/03e28fz53', 'en', 1, 'https://ror.org/03e28fz53 Christus Stehlin Foundation for Cancer Research'),
(73947, 'https://ror.org/0482p8a89', 'en', 1, 'https://ror.org/0482p8a89 United Nations Economic and Social Commission for Asia and the Pacific'),
(73948, 'https://ror.org/02g0f3984', 'en', 1, 'https://ror.org/02g0f3984 Mercy Health Foundation'),
(73949, 'https://ror.org/01knk7v72', 'en', 1, 'https://ror.org/01knk7v72 Tameside and Glossop Integrated Care NHS Foundation Trust'),
(73950, 'https://ror.org/02vg92y09', 'en', 1, 'https://ror.org/02vg92y09 Whittington Health NHS Trust'),
(73951, 'https://ror.org/04s7e3d74', 'en', 1, 'https://ror.org/04s7e3d74 James Paget University Hospitals NHS Foundation Trust'),
(73952, 'https://ror.org/003hq9m95', 'en', 1, 'https://ror.org/003hq9m95 North Cumbria Integrated Care NHS Foundation Trust'),
(73953, 'https://ror.org/02srtzw86', 'fr', 1, 'https://ror.org/02srtzw86 Centre Hospitalier Intercommunal Castres-Mazamet'),
(73954, 'https://ror.org/02msnw927', 'id', 1, 'https://ror.org/02msnw927 Universitas Ibrahimy'),
(73955, 'https://ror.org/023y2na82', 'en', 1, 'https://ror.org/023y2na82 Human Fertilisation and Embryology Authority'),
(73956, 'https://ror.org/022cmsc90', 'en', 1, 'https://ror.org/022cmsc90 The CART Fund'),
(73957, 'https://ror.org/04rrnb020', 'en', 1, 'https://ror.org/04rrnb020 Al-Razi University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ų§Ų²ŁŠ'),
(73958, 'https://ror.org/04c7hmv88', 'de', 1, 'https://ror.org/04c7hmv88 Franziskus-Krankenhaus Berlin'),
(73959, 'https://ror.org/03p8xz723', 'de', 1, 'https://ror.org/03p8xz723 Lausitzer Seenland Klinikum'),
(73960, 'https://ror.org/00aejfc65', 'es', 1, 'https://ror.org/00aejfc65 Consejo Nacional de Ciencia y TecnologĆ­a'),
(73961, 'https://ror.org/01jfre984', 'no_lang_code', 1, 'https://ror.org/01jfre984 Aptiv (Ireland)'),
(73962, 'https://ror.org/017rhna63', 'no_lang_code', 1, 'https://ror.org/017rhna63 CNH Industrial (Netherlands)'),
(73963, 'https://ror.org/00xn0yt80', 'en', 1, 'https://ror.org/00xn0yt80 Chartered Institute of Personnel and Development'),
(73964, 'https://ror.org/01613vh25', 'en', 1, 'https://ror.org/01613vh25 Chief Scientist Office'),
(73965, 'https://ror.org/015s5md50', 'en', 1, 'https://ror.org/015s5md50 James Family Prescott YMCA'),
(73966, 'https://ror.org/02vz2wq60', 'en', 1, 'https://ror.org/02vz2wq60 Global Alliance to Prevent Prematurity and Stillbirth'),
(73967, 'https://ror.org/00zmwwm29', 'en', 1, 'https://ror.org/00zmwwm29 Northern Ireland Ambulance Service Health and Social Care Trust'),
(73968, 'https://ror.org/01w90cz05', 'fr', 1, 'https://ror.org/01w90cz05 Centre National des Soins Palliatifs et de la Fin de Vie'),
(73969, 'https://ror.org/019jqyn65', 'no_lang_code', 1, 'https://ror.org/019jqyn65 Vattenfall (United Kingdom)'),
(73970, 'https://ror.org/00me6gs45', 'no_lang_code', 1, 'https://ror.org/00me6gs45 LafargeHolcim (Switzerland)'),
(73971, 'https://ror.org/049bwzr51', 'en', 1, 'https://ror.org/049bwzr51 FHS St. Gallen Hochschule für Angewandte Wissenschaften University of Applied Sciences St. Gallen'),
(73972, 'https://ror.org/02g821610', 'en', 1, 'https://ror.org/02g821610 Hochschule für Technik Rapperswil University of Applied Sciences Rapperswil'),
(73973, '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'),
(73974, 'https://ror.org/0583afz97', 'fr', 1, 'https://ror.org/0583afz97 Ecole SupƩrieure d''Ambulancier et Soins d''Urgence Romande'),
(73975, 'https://ror.org/03wrbfs36', 'no_lang_code', 1, 'https://ror.org/03wrbfs36 LafargeHolcim (Canada)'),
(73976, 'https://ror.org/00cenf840', 'en', 1, 'https://ror.org/00cenf840 Providence Health & Services Alaska'),
(73977, 'https://ror.org/04wcx2r57', 'en', 1, 'https://ror.org/04wcx2r57 TrinityCare Hospice'),
(73978, 'https://ror.org/059aer881', 'en', 1, 'https://ror.org/059aer881 Eye Hospital in Bangalore'),
(73979, 'https://ror.org/010584e10', 'no_lang_code', 1, 'https://ror.org/010584e10 Exactech (United States)'),
(73980, 'https://ror.org/0129qsy61', 'no_lang_code', 1, 'https://ror.org/0129qsy61 CGI (Canada)'),
(73981, 'https://ror.org/009xejr53', 'de', 1, 'https://ror.org/009xejr53 Schön Klinik München Harlaching'),
(73982, 'https://ror.org/05rwdv390', 'de', 1, 'https://ror.org/05rwdv390 München Klinik Neuperlach'),
(73983, 'https://ror.org/03a7e0x93', 'de', 1, 'https://ror.org/03a7e0x93 München Klinik Harlaching'),
(73984, 'https://ror.org/00xgdcy02', 'de', 1, 'https://ror.org/00xgdcy02 Hermann-Josef-Krankenhaus Erkelenz'),
(73985, 'https://ror.org/00p64v472', 'no_lang_code', 1, 'https://ror.org/00p64v472 Aker (Norway)'),
(73986, 'https://ror.org/001zmxb62', 'en', 1, 'https://ror.org/001zmxb62 Greenland Ecosystem Monitoring'),
(73987, 'https://ror.org/019g08z42', 'en', 1, 'https://ror.org/019g08z42 East Suffolk and North Essex NHS Foundation Trust'),
(73988, 'https://ror.org/027etx825', 'no_lang_code', 1, 'https://ror.org/027etx825 Imerys (France)'),
(73989, 'https://ror.org/03jq3zh43', 'en', 1, 'https://ror.org/03jq3zh43 Institute for Children, Poverty & Homelessness'),
(73990, 'https://ror.org/01teevb58', 'no_lang_code', 1, 'https://ror.org/01teevb58 John Wood Group (United Kingdom)'),
(73991, 'https://ror.org/052c5hg93', 'no_lang_code', 1, 'https://ror.org/052c5hg93 GTT Communications (United States)'),
(73992, 'https://ror.org/00w6car46', 'no_lang_code', 1, 'https://ror.org/00w6car46 Liebherr (Switzerland)'),
(73993, 'https://ror.org/005ahed97', 'no_lang_code', 1, 'https://ror.org/005ahed97 Apollo Global Management (United States)'),
(73994, 'https://ror.org/05h4tg110', 'en', 1, 'https://ror.org/05h4tg110 Providence St. Mary Medical Center'),
(73995, 'https://ror.org/02gz79h29', 'en', 1, 'https://ror.org/02gz79h29 Shropshire Community Health NHS Trust'),
(73996, 'https://ror.org/03rs32p96', 'en', 1, 'https://ror.org/03rs32p96 Ballad Health'),
(73997, 'https://ror.org/039mxz635', 'en', 1, 'https://ror.org/039mxz635 The Australian Prevention Partnership Centre'),
(73998, 'https://ror.org/04rwdqv08', 'en', 1, 'https://ror.org/04rwdqv08 Jewish Community Center of Greater Buffalo'),
(73999, 'https://ror.org/014dgqr33', 'it', 1, 'https://ror.org/014dgqr33 Ordine Ospedaliero di San Giovanni di Dio Fatebenefratelli'),
(74000, 'https://ror.org/019z2v446', 'en', 1, 'https://ror.org/019z2v446 Rongo University'),
(74001, 'https://ror.org/03hqjqp33', 'no_lang_code', 1, 'https://ror.org/03hqjqp33 Arcadis (Netherlands)'),
(74002, 'https://ror.org/01tpbbf75', 'no_lang_code', 1, 'https://ror.org/01tpbbf75 Excelitas Technologies (United States)'),
(74003, 'https://ror.org/05sb89p83', 'en', 1, 'https://ror.org/05sb89p83 Greater Manchester Mental Health NHS Foundation Trust'),
(74004, 'https://ror.org/013e6jc10', 'no_lang_code', 1, 'https://ror.org/013e6jc10 Elixiron Immunotherapeutics (Taiwan) å®‰ē«‹ēŽŗč£ē”Ÿē‰©åŒ»čÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(74005, 'https://ror.org/00ttsnw25', 'en', 1, 'https://ror.org/00ttsnw25 College of Contract Management'),
(74006, 'https://ror.org/042qbe045', 'es', 1, 'https://ror.org/042qbe045 Centro de Investigación en Salud Dr. Hugo Mendoza'),
(74007, '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'),
(74008, 'https://ror.org/05b0xak35', 'no_lang_code', 1, 'https://ror.org/05b0xak35 NeuroEM Therapeutics (United States)'),
(74009, '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'),
(74010, 'https://ror.org/02bjkqr85', 'en', 1, 'https://ror.org/02bjkqr85 Office of Science and Technology Policy'),
(74011, 'https://ror.org/047berg44', 'en', 1, 'https://ror.org/047berg44 Telerehabilitation International'),
(74012, 'https://ror.org/019p75874', 'fr', 1, 'https://ror.org/019p75874 Château de Montsoreau Museum of Contemporary Art'),
(74013, 'https://ror.org/04m93x955', 'en', 1, 'https://ror.org/04m93x955 New York State Nurses Association'),
(74014, 'https://ror.org/00a0w0523', 'en', 1, 'https://ror.org/00a0w0523 Centre for East European and International Studies Zentrum für Osteuropa- und internationale Studien'),
(74015, 'https://ror.org/00ccqnx36', 'en', 1, 'https://ror.org/00ccqnx36 Institute of Food Resources of National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ харчових Ń€ŠµŃŃƒŃ€ŃŃ–Š² ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(74016, 'https://ror.org/036p5fk53', 'es', 1, 'https://ror.org/036p5fk53 Colegio Colombiano de Terapia Ocupacional'),
(74017, 'https://ror.org/057k96546', 'en', 1, 'https://ror.org/057k96546 Extreme Wellness Institute'),
(74018, 'https://ror.org/04v8m3j75', 'en', 1, 'https://ror.org/04v8m3j75 Oyster Hospital'),
(74019, 'https://ror.org/016bnqk64', 'en', 1, 'https://ror.org/016bnqk64 Humber Teaching NHS Foundation Trust'),
(74020, 'https://ror.org/030p2pd90', 'en', 1, 'https://ror.org/030p2pd90 Scientific Research Institute of Healthcare Organization and Medical Management ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ организации Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø меГицинского менеГжмента'),
(74021, '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'),
(74022, 'https://ror.org/03098r397', 'en', 1, 'https://ror.org/03098r397 Adaptive Physical Education'),
(74023, 'https://ror.org/01srayt58', 'en', 1, 'https://ror.org/01srayt58 ICLEI - Local Governments for Sustainability USA'),
(74024, 'https://ror.org/04w441351', 'en', 1, 'https://ror.org/04w441351 Levy Economics Institute of Bard College'),
(74025, 'https://ror.org/00rytkh49', 'en', 1, 'https://ror.org/00rytkh49 Shanghai Institute of Nutrition and Health 中国科学院 äøŠęµ·č„å…»äøŽå„åŗ·ē ”ē©¶é™¢'),
(74026, 'https://ror.org/05j5k1t23', 'en', 1, 'https://ror.org/05j5k1t23 Coleridge Initiative'),
(74027, 'https://ror.org/031sr2181', 'en', 1, 'https://ror.org/031sr2181 South African Sugarcane Research Institute'),
(74028, 'https://ror.org/04vcs0j60', 'en', 1, 'https://ror.org/04vcs0j60 Islamic Azad University, Ahvaz Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ł‡ŁˆŲ§Ų²'),
(74029, 'https://ror.org/05ympq522', 'fr', 1, 'https://ror.org/05ympq522 Ministère de l''Agriculture et de l''Èquipement Rural Senegal Ministry of Agriculture'),
(74030, 'https://ror.org/05rnb7025', 'en', 1, 'https://ror.org/05rnb7025 North Carolina Natural Heritage Program'),
(74031, 'https://ror.org/02a46t946', 'en', 1, 'https://ror.org/02a46t946 The Academic Association for Contemporary European Studies'),
(74032, 'https://ror.org/00ev5ap50', 'en', 1, 'https://ror.org/00ev5ap50 ZRT Laboratory'),
(74033, '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'),
(74034, 'https://ror.org/04md6sf54', 'lt', 1, 'https://ror.org/04md6sf54 State Forest Enterprise Valstybinių MiÅ”kų Urėdija'),
(74035, 'https://ror.org/02538qk16', 'no_lang_code', 1, 'https://ror.org/02538qk16 Wisdom Health (United States)'),
(74036, 'https://ror.org/05a7f9k79', 'en', 1, 'https://ror.org/05a7f9k79 Woldia University į‹ˆįˆį‹µį‹« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(74037, 'https://ror.org/00b691416', 'en', 1, 'https://ror.org/00b691416 Marine Megafauna Foundation'),
(74038, 'https://ror.org/05v5qdf34', 'fr', 1, 'https://ror.org/05v5qdf34 Groupe de Recherche en Ɖcologie Arctique'),
(74039, 'https://ror.org/00gvay066', 'pt', 1, 'https://ror.org/00gvay066 Instituto Gremar'),
(74040, 'https://ror.org/04srm5m98', 'en', 1, 'https://ror.org/04srm5m98 Global Flyway Network'),
(74041, 'https://ror.org/010whbs59', 'no_lang_code', 1, 'https://ror.org/010whbs59 Miyanomori Memorial Hospital åŒ»ē™‚ę³•äŗŗ č®ƒē”Ÿä¼š å®®ć®ę£®čØ˜åæµē—…é™¢'),
(74042, 'https://ror.org/05642yh85', 'pt', 1, 'https://ror.org/05642yh85 CananƩia Research Institute Instituto de Pesquisas CananƩia'),
(74043, 'https://ror.org/0390fys98', 'en', 1, 'https://ror.org/0390fys98 Centre for African Wetlands'),
(74044, 'https://ror.org/03sxp4873', 'en', 1, 'https://ror.org/03sxp4873 Florida Institute for Conservation Science'),
(74045, 'https://ror.org/04nzya351', 'en', 1, 'https://ror.org/04nzya351 R3 Animal'),
(74046, 'https://ror.org/00b4tzx19', 'fr', 1, 'https://ror.org/00b4tzx19 RƩseau National de Surveillance AƩrobiologique'),
(74047, 'https://ror.org/01d46py16', 'es', 1, 'https://ror.org/01d46py16 Centro Jambatu de Investigación y Conservación de Anfibios'),
(74048, 'https://ror.org/00x93xn27', 'en', 1, 'https://ror.org/00x93xn27 Falklands Conservation'),
(74049, 'https://ror.org/017f6te91', 'pt', 1, 'https://ror.org/017f6te91 Instituto Biopesca'),
(74050, 'https://ror.org/04zrvd864', 'en', 1, 'https://ror.org/04zrvd864 Silvestrum Climate Associates'),
(74051, 'https://ror.org/027jdb025', 'pt', 1, 'https://ror.org/027jdb025 Instituto Argonauta'),
(74052, 'https://ror.org/04jwyfm91', 'en', 1, 'https://ror.org/04jwyfm91 State Library of North Carolina'),
(74053, 'https://ror.org/037rvgb96', 'es', 1, 'https://ror.org/037rvgb96 Ecuatesis'),
(74054, 'https://ror.org/03zna7437', 'en', 1, 'https://ror.org/03zna7437 American College of Veterinary Radiology'),
(74055, 'https://ror.org/0300c1598', 'en', 1, 'https://ror.org/0300c1598 Gurukul School of Design'),
(74056, 'https://ror.org/04jkjhn93', 'en', 1, 'https://ror.org/04jkjhn93 Fraunhofer USA Center for Laser Applications'),
(74057, 'https://ror.org/04hphve78', 'en', 1, 'https://ror.org/04hphve78 Fraunhofer Centre for Applied Photonics'),
(74058, 'https://ror.org/03c3jbs89', 'en', 1, 'https://ror.org/03c3jbs89 Fraunhofer USA Center for Sustainable Energy Systems');
INSERT INTO `rors` VALUES
(74059, 'https://ror.org/054r9x893', 'en', 1, 'https://ror.org/054r9x893 Kazakh University of Technology and Business ŅšŠ°Š·Š°Ņ› Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ және бизнес ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(74060, 'https://ror.org/0419fj215', 'en', 1, 'https://ror.org/0419fj215 Aerospace Information Research Institute äø­å›½ē§‘å­¦é™¢ē©ŗå¤©äæ”ęÆåˆ›ę–°ē ”ē©¶é™¢'),
(74061, 'https://ror.org/02e4p6m45', 'en', 1, 'https://ror.org/02e4p6m45 Forschungsgruppe Soziale Neurowissenschaft Social Neuroscience Lab'),
(74062, 'https://ror.org/05kg6bp11', 'en', 1, 'https://ror.org/05kg6bp11 Allen Institute for Cell Science'),
(74063, 'https://ror.org/04nq8gx07', 'en', 1, 'https://ror.org/04nq8gx07 Unilever Foods Innovation Centre'),
(74064, 'https://ror.org/03kfw6k71', 'no_lang_code', 1, 'https://ror.org/03kfw6k71 Antea Group (France)'),
(74065, 'https://ror.org/020a37n11', 'es', 1, 'https://ror.org/020a37n11 Fundación Salvadoreña para el Desarrollo Económico y Social'),
(74066, 'https://ror.org/01f35f850', 'en', 1, 'https://ror.org/01f35f850 The Browns'' School'),
(74067, 'https://ror.org/03k0qge96', 'en', 1, 'https://ror.org/03k0qge96 The Ream Foundation'),
(74068, 'https://ror.org/01qceeg73', 'en', 1, 'https://ror.org/01qceeg73 Protein Research Foundation'),
(74069, 'https://ror.org/021ap3951', 'en', 1, 'https://ror.org/021ap3951 Institute of Business Leadership'),
(74070, 'https://ror.org/05qhjh740', 'en', 1, 'https://ror.org/05qhjh740 Asociación Fundación de Investigación Microbiomas Microbiomas Foundation'),
(74071, 'https://ror.org/05t99je22', 'fr', 1, 'https://ror.org/05t99je22 Unitaid'),
(74072, 'https://ror.org/00vcb3m70', 'en', 1, 'https://ror.org/00vcb3m70 Biological and Chemical Oceanography Data Management Office'),
(74073, 'https://ror.org/04wmff902', 'no_lang_code', 1, 'https://ror.org/04wmff902 Marvell (United States)'),
(74074, 'https://ror.org/027axbt27', 'en', 1, 'https://ror.org/027axbt27 Canadian Quantum Research Center'),
(74075, 'https://ror.org/00t8pc875', 'en', 1, 'https://ror.org/00t8pc875 National Brain Centre Rumah Sakit Pusat Otak Nasional'),
(74076, 'https://ror.org/03d0gny34', 'en', 1, 'https://ror.org/03d0gny34 Institute of Agricultural Machinery č¾²ę„­ē’°å¢ƒå¤‰å‹•ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(74077, 'https://ror.org/03w4gz080', 'en', 1, 'https://ror.org/03w4gz080 Advanced Analysis Center é«˜åŗ¦č§£ęžć‚»ćƒ³ć‚æćƒ¼'),
(74078, 'https://ror.org/01m69r865', 'en', 1, 'https://ror.org/01m69r865 Genetic Resources Center éŗä¼č³‡ęŗć‚»ćƒ³ć‚æćƒ¼'),
(74079, 'https://ror.org/00pnc3s81', 'en', 1, 'https://ror.org/00pnc3s81 Research Center for Agricultural Information Technology č¾²ę„­ęƒ…å ±ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(74080, 'https://ror.org/04hmq8q19', 'en', 1, 'https://ror.org/04hmq8q19 Center for Seeds and Seedlings ēØ®č‹—ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(74081, 'https://ror.org/011kc9d11', 'en', 1, 'https://ror.org/011kc9d11 Agri-Food Business Innovation Center é£Ÿč¾²ćƒ“ć‚øćƒć‚¹ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(74082, 'https://ror.org/05q4jz828', 'en', 1, 'https://ror.org/05q4jz828 National Zoological Gardens of South Africa'),
(74083, 'https://ror.org/041j42q70', 'en', 1, 'https://ror.org/041j42q70 South African Environmental Observation Network'),
(74084, 'https://ror.org/02zehhs18', 'en', 1, 'https://ror.org/02zehhs18 South African Agency for Science and Technology Advancement'),
(74085, 'https://ror.org/0486vjb84', 'en', 1, 'https://ror.org/0486vjb84 Himalayan Institute of Alternatives, Ladakh'),
(74086, 'https://ror.org/0409c3r50', 'en', 1, 'https://ror.org/0409c3r50 Institute for Fundamental Physics of the Universe'),
(74087, 'https://ror.org/022zx1s80', 'en', 1, 'https://ror.org/022zx1s80 DuPage Health Coalition'),
(74088, 'https://ror.org/02mcgxe24', 'en', 1, 'https://ror.org/02mcgxe24 Toyama Prefectural Agricultural, Forestry & Fisheries Research Center åÆŒå±±ēœŒč¾²ęž—ę°“ē”£ē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(74089, 'https://ror.org/015gwtc18', 'en', 1, 'https://ror.org/015gwtc18 Kochi Agricultural Technology Center é«˜ēŸ„ēœŒč¾²ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(74090, 'https://ror.org/013cg0x56', 'en', 1, 'https://ror.org/013cg0x56 Cleveland Metroparks'),
(74091, 'https://ror.org/04et42c10', 'en', 1, 'https://ror.org/04et42c10 Toronto Zoo'),
(74092, 'https://ror.org/00qapk656', 'en', 1, 'https://ror.org/00qapk656 Royal Alberta Museum'),
(74093, 'https://ror.org/00r4fsd57', 'en', 1, 'https://ror.org/00r4fsd57 North Canyon Medical Center'),
(74094, 'https://ror.org/04m0qbj67', 'en', 1, 'https://ror.org/04m0qbj67 Yukon Department of Environment'),
(74095, 'https://ror.org/029v85503', 'en', 1, 'https://ror.org/029v85503 Safer Medicines Trust'),
(74096, 'https://ror.org/02yrf1a56', 'en', 1, 'https://ror.org/02yrf1a56 Arctic Borderlands Ecological Knowledge Society'),
(74097, 'https://ror.org/02dr3v034', 'en', 1, 'https://ror.org/02dr3v034 Surgo Foundation'),
(74098, 'https://ror.org/0596exr16', 'en', 1, 'https://ror.org/0596exr16 Proyecto Mono Tocón Titi Monkey Project'),
(74099, 'https://ror.org/00f8ebm77', 'es', 1, 'https://ror.org/00f8ebm77 SELVA'),
(74100, 'https://ror.org/00byf8747', 'no_lang_code', 1, 'https://ror.org/00byf8747 Gorongosa National Park'),
(74101, 'https://ror.org/027z9pz32', 'en', 1, 'https://ror.org/027z9pz32 The SILVA Ribosomal RNA Database Project'),
(74102, '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'),
(74103, 'https://ror.org/03m8v6t10', 'en', 1, 'https://ror.org/03m8v6t10 Open Data Infrastructure for Social Science and Economic Innovations'),
(74104, 'https://ror.org/025zpy585', 'no_lang_code', 1, 'https://ror.org/025zpy585 Chemnitzer Werkstoffmechanik GmbH (Germany)'),
(74105, 'https://ror.org/01fn4wm94', 'no_lang_code', 1, 'https://ror.org/01fn4wm94 Bagilstein (Germany)'),
(74106, 'https://ror.org/01jzg2v44', 'no_lang_code', 1, 'https://ror.org/01jzg2v44 MKS Instruments (Germany)'),
(74107, 'https://ror.org/04r78f145', 'en', 1, 'https://ror.org/04r78f145 Austrian Physical Society Ɩsterreichische Physikalische Gesellschaft'),
(74108, 'https://ror.org/0364hq403', 'no_lang_code', 1, 'https://ror.org/0364hq403 AXO Dresden (Germany)'),
(74109, 'https://ror.org/0406r4n88', 'no_lang_code', 1, 'https://ror.org/0406r4n88 AIM Infrarot-Module (Germany)'),
(74110, 'https://ror.org/03xfq0m13', 'no_lang_code', 1, 'https://ror.org/03xfq0m13 DATEV (Germany) Datenverarbeitung und Dienstleistung für den steuerberatenden Beruf'),
(74111, 'https://ror.org/038f3wn67', 'no_lang_code', 1, 'https://ror.org/038f3wn67 Freiberger Compound Materials (Germany)'),
(74112, 'https://ror.org/037wwt484', 'no_lang_code', 1, 'https://ror.org/037wwt484 CosmoCode (Germany)'),
(74113, 'https://ror.org/04jpd4145', 'no_lang_code', 1, 'https://ror.org/04jpd4145 FormFactor (Germany)'),
(74114, 'https://ror.org/00tvmqw18', 'no_lang_code', 1, 'https://ror.org/00tvmqw18 GenISys (Germany)'),
(74115, 'https://ror.org/04jy0t377', 'no_lang_code', 1, 'https://ror.org/04jy0t377 Grintech (Germany)'),
(74116, 'https://ror.org/0054nhx50', 'no_lang_code', 1, 'https://ror.org/0054nhx50 EdgeWave (Germany)'),
(74117, 'https://ror.org/02vj4kn98', 'no_lang_code', 1, 'https://ror.org/02vj4kn98 Holoeye Photonics (Germany)'),
(74118, 'https://ror.org/04x67xp14', 'no_lang_code', 1, 'https://ror.org/04x67xp14 Holota Optics (Germany)'),
(74119, 'https://ror.org/03kw8ep35', 'no_lang_code', 1, 'https://ror.org/03kw8ep35 Industrial & Marine Service (Germany)'),
(74120, 'https://ror.org/03vnqze34', 'no_lang_code', 1, 'https://ror.org/03vnqze34 Extend3D (Germany)'),
(74121, 'https://ror.org/01z7f8509', 'no_lang_code', 1, 'https://ror.org/01z7f8509 EQUIcon (Germany)'),
(74122, 'https://ror.org/05kmgyb17', 'no_lang_code', 1, 'https://ror.org/05kmgyb17 Active Fiber Systems (Germany)'),
(74123, 'https://ror.org/0393vzh87', 'en', 1, 'https://ror.org/0393vzh87 Hearing4all'),
(74124, 'https://ror.org/03gzhtt54', 'no_lang_code', 1, 'https://ror.org/03gzhtt54 Crystal Consulting (Germany)'),
(74125, 'https://ror.org/005md5539', 'no_lang_code', 1, 'https://ror.org/005md5539 Colour Control Farbmesstechnik (Germany)'),
(74126, 'https://ror.org/05f0snp31', 'no_lang_code', 1, 'https://ror.org/05f0snp31 Armscor (South Africa)'),
(74127, 'https://ror.org/00msx4d41', 'no_lang_code', 1, 'https://ror.org/00msx4d41 FLAVIA IT (Germany)'),
(74128, 'https://ror.org/00rtdby49', 'no_lang_code', 1, 'https://ror.org/00rtdby49 Ingeneric (Germany)'),
(74129, 'https://ror.org/0179g4w23', 'no_lang_code', 1, 'https://ror.org/0179g4w23 Insiders Technologies (Germany)'),
(74130, 'https://ror.org/01aseef42', 'no_lang_code', 1, 'https://ror.org/01aseef42 Knowledge Raven Management (Germany)'),
(74131, 'https://ror.org/05n0xah55', 'de', 1, 'https://ror.org/05n0xah55 Ev. Diakonissenkrankenhaus Leipzig'),
(74132, 'https://ror.org/031cz5x07', 'no_lang_code', 1, 'https://ror.org/031cz5x07 Muehlhan (Germany)'),
(74133, 'https://ror.org/02ksyke18', 'no_lang_code', 1, 'https://ror.org/02ksyke18 Laserline (Germany)'),
(74134, 'https://ror.org/044jk0m18', 'no_lang_code', 1, 'https://ror.org/044jk0m18 Cesic (Germany)'),
(74135, 'https://ror.org/04j1sns16', 'no_lang_code', 1, 'https://ror.org/04j1sns16 Intego (Germany)'),
(74136, 'https://ror.org/045dj7z60', 'en', 1, 'https://ror.org/045dj7z60 International Fertilizer Development Center'),
(74137, 'https://ror.org/00jpm8e16', 'no_lang_code', 1, 'https://ror.org/00jpm8e16 Mattson Technology (Germany)'),
(74138, 'https://ror.org/00av7cz64', 'no_lang_code', 1, 'https://ror.org/00av7cz64 International Research Associates (United States)'),
(74139, 'https://ror.org/012k7ag19', 'no_lang_code', 1, 'https://ror.org/012k7ag19 IS-Wireless (Poland)'),
(74140, 'https://ror.org/01b9t8b35', 'no_lang_code', 1, 'https://ror.org/01b9t8b35 Medipan (Germany)'),
(74141, 'https://ror.org/02nw6hx08', 'no_lang_code', 1, 'https://ror.org/02nw6hx08 Janssen (United Kingdom)'),
(74142, 'https://ror.org/00kwmw966', 'no_lang_code', 1, 'https://ror.org/00kwmw966 MeVis BreastCare (Germany)'),
(74143, 'https://ror.org/04zj6ee21', 'no_lang_code', 1, 'https://ror.org/04zj6ee21 MeVis Medical Solutions (Germany)'),
(74144, 'https://ror.org/005dbxm61', 'no_lang_code', 1, 'https://ror.org/005dbxm61 Piezosystem Jena (Germany)'),
(74145, 'https://ror.org/03d23eg52', 'no_lang_code', 1, 'https://ror.org/03d23eg52 Mycronic (Sweden)'),
(74146, 'https://ror.org/03phr4149', 'no_lang_code', 1, 'https://ror.org/03phr4149 PVA TePla (Germany)'),
(74147, 'https://ror.org/00zrx8c87', 'no_lang_code', 1, 'https://ror.org/00zrx8c87 Optics Balzers (Germany)'),
(74148, 'https://ror.org/00e1wd906', 'en', 1, 'https://ror.org/00e1wd906 Institute of Electronics, Information and Communication Engineers é›»å­ęƒ…å ±é€šäæ”å­¦ä¼š'),
(74149, 'https://ror.org/04845gv95', 'en', 1, 'https://ror.org/04845gv95 The Physical Society of Japan ę—„ęœ¬ē‰©ē†å­¦ä¼š'),
(74150, 'https://ror.org/014r8q346', 'no_lang_code', 1, 'https://ror.org/014r8q346 The Scatter Works (United States)'),
(74151, 'https://ror.org/0135n9613', 'no_lang_code', 1, 'https://ror.org/0135n9613 SpaceTech (Germany)'),
(74152, 'https://ror.org/05smgv327', 'no_lang_code', 1, 'https://ror.org/05smgv327 SURAGUS (Germany)'),
(74153, 'https://ror.org/043fdq347', 'no_lang_code', 1, 'https://ror.org/043fdq347 SUSS MicroTec (Switzerland)'),
(74154, 'https://ror.org/05vcgwf09', 'no_lang_code', 1, 'https://ror.org/05vcgwf09 SUSS MicroTec (Germany)'),
(74155, 'https://ror.org/02g4h7104', 'no_lang_code', 1, 'https://ror.org/02g4h7104 Synopsys (Belgium)'),
(74156, 'https://ror.org/04946pg51', 'no_lang_code', 1, 'https://ror.org/04946pg51 Vemac (Germany)'),
(74157, 'https://ror.org/02yxqev59', 'no_lang_code', 1, 'https://ror.org/02yxqev59 Vistec Electron Beam (Germany)'),
(74158, 'https://ror.org/02z8nwe60', 'no_lang_code', 1, 'https://ror.org/02z8nwe60 Ushio (Germany)'),
(74159, 'https://ror.org/041ppys11', 'no_lang_code', 1, 'https://ror.org/041ppys11 Hesse (Germany)'),
(74160, 'https://ror.org/005h88p57', 'no_lang_code', 1, 'https://ror.org/005h88p57 ASELTA Nanographics (France)'),
(74161, 'https://ror.org/031xq8953', 'no_lang_code', 1, 'https://ror.org/031xq8953 Becker Photonik (Germany)'),
(74162, 'https://ror.org/01eqz2j94', 'no_lang_code', 1, 'https://ror.org/01eqz2j94 Astro- und Feinwerktechnik Adlershof (Germany)'),
(74163, 'https://ror.org/0259nbs47', 'no_lang_code', 1, 'https://ror.org/0259nbs47 ASYS Group (Germany) Asys Automatisierungssysteme'),
(74164, 'https://ror.org/05v0zt272', 'en', 1, 'https://ror.org/05v0zt272 Al-Saeeda University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³Ų¹ŁŠŲÆŲ©'),
(74165, 'https://ror.org/0341fqh65', 'en', 1, 'https://ror.org/0341fqh65 African Refuge'),
(74166, 'https://ror.org/007ferf45', 'en', 1, 'https://ror.org/007ferf45 Parker Conservation'),
(74167, 'https://ror.org/02c0bjd31', 'en', 1, 'https://ror.org/02c0bjd31 scidecode science consulting & research'),
(74168, 'https://ror.org/05qgcra83', 'en', 1, 'https://ror.org/05qgcra83 NIST Center for Neutron Research'),
(74169, 'https://ror.org/04a0y3b96', 'en', 1, 'https://ror.org/04a0y3b96 Material Measurement Laboratory'),
(74170, 'https://ror.org/016s8vs02', 'en', 1, 'https://ror.org/016s8vs02 Physical Measurement Laboratory'),
(74171, 'https://ror.org/00tbs6p91', 'en', 1, 'https://ror.org/00tbs6p91 Center for Nanoscale Science and Technology'),
(74172, 'https://ror.org/015xey021', 'en', 1, 'https://ror.org/015xey021 Communications Technology Laboratory'),
(74173, 'https://ror.org/0440c3437', 'en', 1, 'https://ror.org/0440c3437 Information Technology Laboratory'),
(74174, 'https://ror.org/00jsnkt88', 'no_lang_code', 1, 'https://ror.org/00jsnkt88 Dragonfly Data Science (New Zealand)'),
(74175, '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'),
(74176, 'https://ror.org/022a7nh32', 'en', 1, 'https://ror.org/022a7nh32 Chisholm Institute'),
(74177, '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'),
(74178, 'https://ror.org/055hrh286', 'en', 1, 'https://ror.org/055hrh286 Arctic Data Center'),
(74179, 'https://ror.org/0012p6j68', 'en', 1, 'https://ror.org/0012p6j68 National Electronic Information Consortium ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾-информационный ŠŗŠ¾Š½ŃŠ¾Ń€Ń†ŠøŃƒŠ¼'),
(74180, 'https://ror.org/035dxyg86', 'en', 1, 'https://ror.org/035dxyg86 Environs Kimberley'),
(74181, 'https://ror.org/00cqckx82', 'no_lang_code', 1, 'https://ror.org/00cqckx82 AbMax AntibodyChina (China) åŒ—äŗ¬å¤©ęˆę–°č„‰ē”Ÿē‰©ęŠ€ęœÆęœ‰é™å…¬åø'),
(74182, 'https://ror.org/05ak8xb62', 'es', 1, 'https://ror.org/05ak8xb62 Academia Nacional de Medicina Venezuela'),
(74183, 'https://ror.org/009rg7s27', 'no_lang_code', 1, 'https://ror.org/009rg7s27 Biomed Protection (United States)'),
(74184, 'https://ror.org/006992e45', 'en', 1, 'https://ror.org/006992e45 Yanan University Affiliated Hospital 延安大学附属医院'),
(74185, 'https://ror.org/04dcmpg83', 'en', 1, 'https://ror.org/04dcmpg83 Chongqing Public Health Medical Center é‡åŗ†åø‚å…¬å…±å«ē”ŸåŒ»ē–—ę•‘ę²»äø­åæƒ'),
(74186, 'https://ror.org/04dx81q90', 'en', 1, 'https://ror.org/04dx81q90 Cleveland Clinic London'),
(74187, 'https://ror.org/0291gez47', 'pt', 1, 'https://ror.org/0291gez47 Clinica De Doencas Renais De Brasilia'),
(74188, 'https://ror.org/04n6dab73', 'no_lang_code', 1, 'https://ror.org/04n6dab73 BioSolutions Halle (Germany)'),
(74189, 'https://ror.org/04dk55y19', 'en', 1, 'https://ror.org/04dk55y19 Africa Early Childhood Network'),
(74190, 'https://ror.org/03sa4ef12', 'no_lang_code', 1, 'https://ror.org/03sa4ef12 Torque (United States)'),
(74191, 'https://ror.org/03a6jbw84', 'fr', 1, 'https://ror.org/03a6jbw84 Agence RƩgionale de SantƩ Nouvelle-Aquitaine'),
(74192, 'https://ror.org/04mhsfn74', 'no_lang_code', 1, 'https://ror.org/04mhsfn74 Medlab Central (New Zealand)'),
(74193, 'https://ror.org/047hw1v81', 'no_lang_code', 1, 'https://ror.org/047hw1v81 BlueDot (Canada)'),
(74194, 'https://ror.org/020v2kg51', 'en', 1, 'https://ror.org/020v2kg51 Albuquerque Cat Clinic'),
(74195, 'https://ror.org/04y10pp77', 'en', 1, 'https://ror.org/04y10pp77 Amersham Vale Practice'),
(74196, 'https://ror.org/03e5fmj95', 'it', 1, 'https://ror.org/03e5fmj95 BresciaMEd'),
(74197, 'https://ror.org/044r8dr88', 'no_lang_code', 1, 'https://ror.org/044r8dr88 Pathlab (New Zealand)'),
(74198, 'https://ror.org/048j1wp71', 'en', 1, 'https://ror.org/048j1wp71 Saratoga Hospital'),
(74199, 'https://ror.org/01jzyr789', 'no_lang_code', 1, 'https://ror.org/01jzyr789 Bronkhorst (Netherlands)'),
(74200, 'https://ror.org/01t08q012', 'en', 1, 'https://ror.org/01t08q012 Coalition for Epidemic Preparedness Innovations'),
(74201, 'https://ror.org/052dmdr17', 'no_lang_code', 1, 'https://ror.org/052dmdr17 TrĘ°į»ng ĐẔi hį»c VinUni VinUniversity'),
(74202, 'https://ror.org/020az4v13', 'en', 1, 'https://ror.org/020az4v13 Animal Quarantine Office ą¤Ŗą¤¶ą„ ą¤•ą„ā€ą¤µą¤¾ą¤°ą„‡ą¤Øą„ą¤Ÿą¤¾ą¤ˆą¤Ø ą¤•ą¤¾ą¤°ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(74203, 'https://ror.org/039n0s143', 'en', 1, 'https://ror.org/039n0s143 Ann Arbor VA Medical Center'),
(74204, 'https://ror.org/02c4jmw40', 'no_lang_code', 1, 'https://ror.org/02c4jmw40 Convalife (China)'),
(74205, 'https://ror.org/00mf9x671', 'en', 1, 'https://ror.org/00mf9x671 Cook County Department of Public Health'),
(74206, 'https://ror.org/02by6tw17', 'no_lang_code', 1, 'https://ror.org/02by6tw17 APC Europe (Spain)'),
(74207, 'https://ror.org/00mffe072', 'no_lang_code', 1, 'https://ror.org/00mffe072 Advanced Procurement Center (United States)'),
(74208, 'https://ror.org/0072d4h61', 'no_lang_code', 1, 'https://ror.org/0072d4h61 Bioscience (China) åšå„„čµ›ę–Æ'),
(74209, 'https://ror.org/03k4zrh82', 'en', 1, 'https://ror.org/03k4zrh82 The People''s Hospital of LinXia äø“å¤å·žäŗŗę°‘åŒ»é™¢'),
(74210, 'https://ror.org/017fg3624', 'en', 1, 'https://ror.org/017fg3624 Arab Network for Early Childhood Development Ų§Ł„Ų“ŲØŁƒŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų·ŁŁˆŁ„Ų© Ų§Ł„Ł…ŲØŁƒŲ±Ų©'),
(74211, 'https://ror.org/048xr0t03', 'no_lang_code', 1, 'https://ror.org/048xr0t03 Cancerrop (South Korea)'),
(74212, 'https://ror.org/01ypsy903', 'en', 1, 'https://ror.org/01ypsy903 Asia-Pacific Regional Network for Early Childhood'),
(74213, 'https://ror.org/03htx4q40', 'en', 1, 'https://ror.org/03htx4q40 Carbon Valley Animal Hospital'),
(74214, 'https://ror.org/00n9sg246', 'en', 1, 'https://ror.org/00n9sg246 Association of British Neurologists'),
(74215, 'https://ror.org/01z3tch16', 'en', 1, 'https://ror.org/01z3tch16 Zhejiang Provincial Public Security Department ęµ™ę±Ÿēœå…¬å®‰åŽ…'),
(74216, 'https://ror.org/00rezvm23', 'no_lang_code', 1, 'https://ror.org/00rezvm23 Atea Pharmaceuticals (United States)'),
(74217, 'https://ror.org/000qx7w57', 'en', 1, 'https://ror.org/000qx7w57 Baokang Hospital Affiliated to Tianjin University of Traditional Chinese Medicine å¤©ę“„äø­åŒ»čÆå¤§å­¦é™„å±žäæåŗ·åŒ»é™¢'),
(74218, 'https://ror.org/05x4e6955', 'no_lang_code', 1, 'https://ror.org/05x4e6955 CarGurus (United States)'),
(74219, 'https://ror.org/05qz7n275', 'en', 1, 'https://ror.org/05qz7n275 Dazhou Central Hospital č¾¾å·žåø‚äø­åæƒåŒ»é™¢'),
(74220, 'https://ror.org/04j4j9405', 'no_lang_code', 1, 'https://ror.org/04j4j9405 Deargen (South Korea)'),
(74221, 'https://ror.org/05anb7a53', 'en', 1, 'https://ror.org/05anb7a53 Beijing Chaoyang Emergency Medical Center åŒ—äŗ¬ęœé˜³ę€„čÆŠęŠ¢ę•‘äø­åæƒ'),
(74222, 'https://ror.org/018zkg706', 'en', 1, 'https://ror.org/018zkg706 Beijing Emergency Medical Center åŒ—äŗ¬ę€„ę•‘äø­åæƒ'),
(74223, 'https://ror.org/04nneby83', 'es', 1, 'https://ror.org/04nneby83 Hospital Marina Baixa'),
(74224, 'https://ror.org/027h3dg90', 'no_lang_code', 1, 'https://ror.org/027h3dg90 InferVision (China)'),
(74225, 'https://ror.org/04rpfqy30', 'en', 1, 'https://ror.org/04rpfqy30 Caspr Biotech'),
(74226, 'https://ror.org/0125nre22', 'de', 1, 'https://ror.org/0125nre22 Kreisklinik Trostberg'),
(74227, 'https://ror.org/03xfq5k21', 'pt', 1, 'https://ror.org/03xfq5k21 Itaipu Binacional'),
(74228, 'https://ror.org/02dzn2z94', 'de', 1, 'https://ror.org/02dzn2z94 Berufsverband der Deutschen Dermatologen'),
(74229, 'https://ror.org/05c30e379', 'no_lang_code', 1, 'https://ror.org/05c30e379 Siuvo (China)'),
(74230, 'https://ror.org/0092tvz34', 'en', 1, 'https://ror.org/0092tvz34 Biodiversity and Nature Conservation Association'),
(74231, 'https://ror.org/02wrv8c89', 'en', 1, 'https://ror.org/02wrv8c89 Central Cotton Research Institute'),
(74232, 'https://ror.org/03qkems54', 'en', 1, 'https://ror.org/03qkems54 Wuhan Red Cross Hospital ę­¦ę±‰åø‚ēŗ¢åå­—ä¼šåŒ»é™¢'),
(74233, 'https://ror.org/01yx9b459', 'no_lang_code', 1, 'https://ror.org/01yx9b459 Fleetwood Specialty Pharmacy (United States)'),
(74234, 'https://ror.org/03kgydk02', 'en', 1, 'https://ror.org/03kgydk02 Harrison International Peace Hospital č””ę°“åø‚äŗŗę°‘åŒ»é™¢'),
(74235, 'https://ror.org/03h7jyq46', 'en', 1, 'https://ror.org/03h7jyq46 Foshan Second People''s Hospital ä½›å±±åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(74236, 'https://ror.org/038p1ty61', 'no_lang_code', 1, 'https://ror.org/038p1ty61 Jinyintan Hospital ę­¦ę±‰åø‚é‡‘é“¶ę½­åŒ»é™¢'),
(74237, 'https://ror.org/03s41ze97', 'en', 1, 'https://ror.org/03s41ze97 Zoo New England'),
(74238, 'https://ror.org/04ahz6d73', 'en', 1, 'https://ror.org/04ahz6d73 Department of Animal Husbandry ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ ą¤Ŗą¤¶ą„ą¤Ŗą¤¾ą¤²ą¤Ø'),
(74239, 'https://ror.org/04dtbmg64', 'en', 1, 'https://ror.org/04dtbmg64 Hengyang Academy of Agricultural Sciences č””é˜³åø‚å†œäøšē§‘å­¦é™¢'),
(74240, 'https://ror.org/02jkgv284', 'no_lang_code', 1, 'https://ror.org/02jkgv284 Weinan Central Hospital ęø­å—åø‚äø­åæƒåŒ»é™¢'),
(74241, 'https://ror.org/04tj88f69', 'en', 1, 'https://ror.org/04tj88f69 National University of Medical Sciences'),
(74242, 'https://ror.org/00ckgf271', 'en', 1, 'https://ror.org/00ckgf271 Centre for Interdisciplinary Research and Education'),
(74243, 'https://ror.org/047sn6763', 'en', 1, 'https://ror.org/047sn6763 Centre for Multidisciplinary Research in Health Science'),
(74244, 'https://ror.org/038dne681', 'fr', 1, 'https://ror.org/038dne681 Centre ParamƩdical Santy'),
(74245, 'https://ror.org/01a6bf324', 'no_lang_code', 1, 'https://ror.org/01a6bf324 Ofogh Koorosh Chain Stores ŁŲ±ŁˆŲ“ŚÆŲ§Ł‡ Ł‡Ų§ŪŒ Ų²Ł†Ų¬ŪŒŲ±Ł‡ ای افق کوروؓ'),
(74246, 'https://ror.org/014kzd996', 'en', 1, 'https://ror.org/014kzd996 Centro Pipistrelli Sardegna'),
(74247, 'https://ror.org/00vna7491', 'en', 1, 'https://ror.org/00vna7491 Handan Polytechnic College é‚ÆéƒøčŒäøšęŠ€ęœÆå­¦é™¢'),
(74248, 'https://ror.org/03hbkgr83', 'en', 1, 'https://ror.org/03hbkgr83 Chengdu Center for Disease Control and Prevention ęˆéƒ½åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74249, 'https://ror.org/04zt8gw89', 'en', 1, 'https://ror.org/04zt8gw89 Gold Coast Health'),
(74250, 'https://ror.org/01m2h6984', 'en', 1, 'https://ror.org/01m2h6984 Chameli Devi Institute of Pharmacy'),
(74251, 'https://ror.org/04ha18t27', 'en', 1, 'https://ror.org/04ha18t27 Chameli Devi Group of Institutions'),
(74252, 'https://ror.org/007e7b187', 'no_lang_code', 1, 'https://ror.org/007e7b187 Changchun Discovery Sciences (China) é•æę˜„å‰å¤§å¤©å…ƒåŒ–å­¦ęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(74253, 'https://ror.org/04mrnx789', 'en', 1, 'https://ror.org/04mrnx789 Charing Cross Cat Clinic'),
(74254, 'https://ror.org/01nwt2j78', 'no_lang_code', 1, 'https://ror.org/01nwt2j78 Sichuan Mianyang 404 Hospital å››å·ē»µé˜³å››ć€‡å››åŒ»é™¢'),
(74255, 'https://ror.org/029hsnk78', 'en', 1, 'https://ror.org/029hsnk78 Chiba-Nishi General Hospital åƒč‘‰č„æē·åˆē—…é™¢'),
(74256, 'https://ror.org/05err8h54', 'en', 1, 'https://ror.org/05err8h54 Musoon Women''s Clinic ęœØē”Ÿå©¦ē”¢ē§‘čØŗę‰€'),
(74257, 'https://ror.org/0588m4284', 'en', 1, 'https://ror.org/0588m4284 China Association of Acupuncture-Moxibustion äø­å›½é’ˆēøå­¦ä¼š'),
(74258, 'https://ror.org/05dfe8p27', 'en', 1, 'https://ror.org/05dfe8p27 Hangzhou Children''s Hospital ę­å·žåø‚å„æē«„åŒ»é™¢'),
(74259, 'https://ror.org/0238gcb09', 'en', 1, 'https://ror.org/0238gcb09 Qianjiang Central Hospital ę½œę±Ÿåø‚äø­åæƒåŒ»é™¢'),
(74260, 'https://ror.org/03fts7x30', 'en', 1, 'https://ror.org/03fts7x30 Yancheng Central Blood Station ē›åŸŽåø‚äø­åæƒč”€ē«™'),
(74261, 'https://ror.org/02x0x2d91', 'en', 1, 'https://ror.org/02x0x2d91 Yancheng Second People''s Hospital ē›åŸŽåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(74262, 'https://ror.org/0202z8x64', 'no_lang_code', 1, 'https://ror.org/0202z8x64 Associated Fund Administrators (Botswana)'),
(74263, 'https://ror.org/05q9ymz20', 'en', 1, 'https://ror.org/05q9ymz20 Xiang Yang No.1 People''s Hospital č„„é˜³åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(74264, 'https://ror.org/04e3jvd14', 'en', 1, 'https://ror.org/04e3jvd14 The First People''s Hospital of Wenling ęø©å²­åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(74265, 'https://ror.org/03j9dwf95', 'en', 1, 'https://ror.org/03j9dwf95 Mackay Junior College of Medicine, Nursing and Management é¦¬å•é†«č­·ē®”ē†å°ˆē§‘å­øę ”'),
(74266, 'https://ror.org/05kjn8d41', 'en', 1, 'https://ror.org/05kjn8d41 The Fourth People''s Hospital of Ningxia Hui Autonomous Region å®å¤å›žę—č‡Ŗę²»åŒŗē¬¬å››äŗŗę°‘åŒ»é™¢'),
(74267, 'https://ror.org/00w5h0n54', 'en', 1, 'https://ror.org/00w5h0n54 Wenzhou Central Hospital ęø©å·žåø‚äø­åæƒåŒ»é™¢'),
(74268, 'https://ror.org/05m7fas76', 'en', 1, 'https://ror.org/05m7fas76 The First People''s Hospital of Xiaoshan District, Hangzhou ę­å·žåø‚č§å±±åŒŗē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(74269, 'https://ror.org/04tbvjc27', 'en', 1, 'https://ror.org/04tbvjc27 Badr University in Cairo Ų¬Ų§Ł…Ų¹Ų© ŲØŲÆŲ± بالقاهرة'),
(74270, 'https://ror.org/01zs9ce87', 'en', 1, 'https://ror.org/01zs9ce87 Jingzhou Maternal and Child Health Hospital č†å·žåø‚å¦‡å¹¼äæå„é™¢'),
(74271, 'https://ror.org/05dy5ab02', 'it', 1, 'https://ror.org/05dy5ab02 ASST Fatebenefratelli Sacco'),
(74272, 'https://ror.org/03r5za471', 'en', 1, 'https://ror.org/03r5za471 Kiang Wu Hospital é”ę¹–é†«é™¢'),
(74273, 'https://ror.org/00h626c53', 'en', 1, 'https://ror.org/00h626c53 The Fourth People''s Hospital of Zibo City ę·„åšåø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(74274, 'https://ror.org/0305gdg87', 'en', 1, 'https://ror.org/0305gdg87 The First People''s Hospital of Tianmen å¤©é—Øåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(74275, 'https://ror.org/039nc2k59', 'en', 1, 'https://ror.org/039nc2k59 Weihai Chest Hospital åØęµ·åø‚čƒøē§‘åŒ»é™¢'),
(74276, 'https://ror.org/048nc2z47', 'en', 1, 'https://ror.org/048nc2z47 Xiamen Chang Gung Hospital åŽ¦é—Øé•æåŗšåŒ»é™¢'),
(74277, 'https://ror.org/0569p8y61', 'en', 1, 'https://ror.org/0569p8y61 The Eighth Hospital of Xi''an č„æå®‰åø‚ē¬¬å…«åŒ»é™¢'),
(74278, 'https://ror.org/05t45gr77', 'en', 1, 'https://ror.org/05t45gr77 Wuhan Center for Disease Control and Prevention ę­¦ę±‰åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74279, 'https://ror.org/00ty48v44', 'en', 1, 'https://ror.org/00ty48v44 The Fifth People''s Hospital of Anyang å®‰é˜³åø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(74280, 'https://ror.org/04dtzbe22', 'en', 1, 'https://ror.org/04dtzbe22 Shaheed Suhrawardy Medical College শহীদ ą¦øą§‹ą¦¹ą¦°ą¦¾ą¦“ą¦Æą¦¼ą¦¾ą¦°ą§ą¦¦ą§€ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(74281, 'https://ror.org/03krdwr84', 'en', 1, 'https://ror.org/03krdwr84 Guigang Orthopedic Hospital of Integrated Traditional Chinese and Western Medicine č“µęøÆåø‚äø­č„æåŒ»ē»“åˆéŖØē§‘åŒ»é™¢'),
(74282, 'https://ror.org/01sy5t684', 'en', 1, 'https://ror.org/01sy5t684 The First Hospital of Changsha é•æę²™åø‚ē¬¬äø€åŒ»é™¢'),
(74283, 'https://ror.org/02895kk89', 'en', 1, 'https://ror.org/02895kk89 Jiangxi Chest Hospital ę±Ÿč„æēœčƒøē§‘åŒ»é™¢'),
(74284, 'https://ror.org/03b489496', 'en', 1, 'https://ror.org/03b489496 Woodlands Health Campus'),
(74285, 'https://ror.org/04v3qgb32', 'no_lang_code', 1, 'https://ror.org/04v3qgb32 Fortis C-DOC Hospital ą¤«ą„‹ą¤°ą„ą¤Ÿą¤æą¤ø C-ą¤”ą„‰ą¤• ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(74286, 'https://ror.org/041v5th48', 'en', 1, 'https://ror.org/041v5th48 Affiliated Hospital of Shaanxi University of Chinese Medicine é™•č„æäø­åŒ»čÆå¤§å­¦é™„å±žåŒ»é™¢'),
(74287, 'https://ror.org/017cm6884', 'en', 1, 'https://ror.org/017cm6884 Baylor Scott & White Medical Center - Temple'),
(74288, 'https://ror.org/046znv447', 'en', 1, 'https://ror.org/046znv447 The Sixth People''s Hospital of Zhengzhou éƒ‘å·žåø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(74289, 'https://ror.org/01pbexw16', 'en', 1, 'https://ror.org/01pbexw16 The People''s Hospital Tongling é“œé™µåø‚äŗŗę°‘åŒ»é™¢'),
(74290, 'https://ror.org/04m4cy683', 'es', 1, 'https://ror.org/04m4cy683 Fundación Centro de Estudios Infectológicos'),
(74291, 'https://ror.org/052f2mx26', 'en', 1, 'https://ror.org/052f2mx26 Xi''an Chest Hospital č„æå®‰åø‚čƒøē§‘åŒ»é™¢'),
(74292, 'https://ror.org/0405ahw63', 'no_lang_code', 1, 'https://ror.org/0405ahw63 DNA Diagnostic (Denmark)'),
(74293, 'https://ror.org/00gk5fa11', 'en', 1, 'https://ror.org/00gk5fa11 Sheikh Shakhbout Medical City Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų“ŁŠŲ® ؓخبوط Ų§Ł„Ų·ŲØŁŠŲ©'),
(74294, 'https://ror.org/007stz924', 'no_lang_code', 1, 'https://ror.org/007stz924 DNARx (United States)'),
(74295, 'https://ror.org/01has8079', 'en', 1, 'https://ror.org/01has8079 The Central Hospital of Xiao gan å­ę„Ÿåø‚äø­åæƒåŒ»é™¢'),
(74296, 'https://ror.org/03gh4m991', 'en', 1, 'https://ror.org/03gh4m991 Yueyang Second People''s Hospital å²³é˜³åø‚äŗŒäŗŗę°‘åŒ»é™¢'),
(74297, 'https://ror.org/00f8k0n29', 'en', 1, 'https://ror.org/00f8k0n29 Earl Haig Secondary School'),
(74298, 'https://ror.org/03pt6v373', 'en', 1, 'https://ror.org/03pt6v373 Cancer Hospital of Huanxing Chaoyang District Beijing åŒ—äŗ¬åø‚ęœé˜³åŒŗę”“å…“č‚æē˜¤åŒ»é™¢'),
(74299, 'https://ror.org/050qvcs37', 'en', 1, 'https://ror.org/050qvcs37 Nanobiosensorics Laboratory'),
(74300, 'https://ror.org/01pdra218', 'it', 1, 'https://ror.org/01pdra218 Ospedale Civile di Voghera'),
(74301, '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'),
(74302, 'https://ror.org/02zjgn863', 'en', 1, 'https://ror.org/02zjgn863 Diabetes in Asia Study Group'),
(74303, 'https://ror.org/03800bc44', 'no_lang_code', 1, 'https://ror.org/03800bc44 Emweb (Belgium)'),
(74304, 'https://ror.org/012d67872', 'en', 1, 'https://ror.org/012d67872 Diagnostic Microbiology Development Program'),
(74305, 'https://ror.org/00n49pr77', 'no_lang_code', 1, 'https://ror.org/00n49pr77 Digital China Health (China) ē„žå·žåŒ»ē–—'),
(74306, 'https://ror.org/0170pdx26', 'no_lang_code', 1, 'https://ror.org/0170pdx26 Genetic Signatures (Australia)'),
(74307, 'https://ror.org/057fnvr81', 'no_lang_code', 1, 'https://ror.org/057fnvr81 Gentian Diagnostics (Sweden)'),
(74308, 'https://ror.org/02n5k9x47', 'no_lang_code', 1, 'https://ror.org/02n5k9x47 Guangzhou Jingpai Technology (China) å¹æå·žę™Æę“¾ē§‘ęŠ€ęœ‰é™å…¬åø'),
(74309, 'https://ror.org/036nvwz98', 'en', 1, 'https://ror.org/036nvwz98 Gorilla Doctors'),
(74310, 'https://ror.org/054we3s04', 'en', 1, 'https://ror.org/054we3s04 Guangzhou Zoo å¹æå·žåŠØē‰©å›­'),
(74311, 'https://ror.org/0106sdn14', 'en', 1, 'https://ror.org/0106sdn14 Gorilla Doctors'),
(74312, 'https://ror.org/006shyb38', 'en', 1, 'https://ror.org/006shyb38 GD Hospital & Diabetes Institute জিঔি হসপিটাল ą¦ą¦Øą§ą¦” ą¦”ą¦¾ą¦Æą¦¼ą¦¾ą¦¬ą§‡ą¦Ÿą¦æą¦ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(74313, 'https://ror.org/00nfe8z20', 'no_lang_code', 1, 'https://ror.org/00nfe8z20 Hachaklait (Israel) ×”×—×§×œ××™×Ŗ'),
(74314, 'https://ror.org/003mm3215', 'es', 1, 'https://ror.org/003mm3215 Mutualista Hospital EvangƩlico'),
(74315, 'https://ror.org/04ggx4175', 'es', 1, 'https://ror.org/04ggx4175 Hospital Zonal General De Agudos Descentralizado "Evita Pueblo"'),
(74316, 'https://ror.org/021n4pk58', 'en', 1, 'https://ror.org/021n4pk58 Hangzhou Women’s Hospital ę­å·žåø‚å¦‡ē§‘åŒ»é™¢'),
(74317, 'https://ror.org/040gqn094', 'en', 1, 'https://ror.org/040gqn094 HCOV Global'),
(74318, 'https://ror.org/019ytqh38', 'en', 1, 'https://ror.org/019ytqh38 Hubei 672 Orthopedics Hospital of Traditional Chinese Medicine and Western Medicine ę¹–åŒ—å…­äøƒäŗŒäø­č„æåŒ»ē»“åˆéŖØē§‘åŒ»é™¢'),
(74319, 'https://ror.org/04cyj7b39', 'no_lang_code', 1, 'https://ror.org/04cyj7b39 Finch Therapeutics (United States)'),
(74320, 'https://ror.org/02srfgm34', 'en', 1, 'https://ror.org/02srfgm34 Gibraltar Health Authority'),
(74321, 'https://ror.org/01hr4k271', 'en', 1, 'https://ror.org/01hr4k271 Health Commission of Anhui Province å®‰å¾½ēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(74322, 'https://ror.org/01pxxz681', 'en', 1, 'https://ror.org/01pxxz681 Zhejiang Medical and Health Group Hangzhou Hospital ęµ™ę±ŸēœåŒ»ē–—å„åŗ·é›†å›¢ę­å·žåŒ»é™¢'),
(74323, 'https://ror.org/05tfnan22', 'en', 1, 'https://ror.org/05tfnan22 Gansu Provincial Center for Disease Control and Prevention ē”˜č‚ƒēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74324, 'https://ror.org/04n3naf58', 'no_lang_code', 1, 'https://ror.org/04n3naf58 Sansure Biotech (China) åœ£ę¹˜ē”Ÿē‰©'),
(74325, 'https://ror.org/04mrmjg19', 'en', 1, 'https://ror.org/04mrmjg19 Huzhou Women and Children''s Hospital ę¹–å·žåø‚å¦‡å¹¼äæå„é™¢'),
(74326, 'https://ror.org/05vvt7a66', 'en', 1, 'https://ror.org/05vvt7a66 Health Protection Research Unit in Emerging and Zoonotic Infections at University of Liverpool'),
(74327, 'https://ror.org/04ff4e804', 'no_lang_code', 1, 'https://ror.org/04ff4e804 Eiken Chemical (Japan) ę „ē ”åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(74328, 'https://ror.org/02pthay30', 'en', 1, 'https://ror.org/02pthay30 Wuxi Ninth People''s Hospital ę— é””åø‚ē¬¬ä¹äŗŗę°‘åŒ»é™¢'),
(74329, 'https://ror.org/00jd3sh61', 'no_lang_code', 1, 'https://ror.org/00jd3sh61 HKScan (Finland)'),
(74330, 'https://ror.org/05q74qt68', 'en', 1, 'https://ror.org/05q74qt68 Hong Kong College of Health Service Executives é¦™ęøÆå«ē”Ÿå­¦é™¢č”Œę”æäŗŗå‘˜'),
(74331, 'https://ror.org/007h0mc98', 'en', 1, 'https://ror.org/007h0mc98 Hong Kong Tuberculosis, Chest and Heart Diseases Association é¦™ęøÆé˜²ē™†åæƒč‡ŸåŠčƒøē—…å”ęœƒ'),
(74332, 'https://ror.org/03s2sy313', 'no', 1, 'https://ror.org/03s2sy313 Horten Kommune'),
(74333, 'https://ror.org/05mh1nj06', 'es', 1, 'https://ror.org/05mh1nj06 Hospital de Emergencias Jose Casimiro Ulloa'),
(74334, 'https://ror.org/01grk2s95', 'pt', 1, 'https://ror.org/01grk2s95 Instituto Laura Fressatto'),
(74335, 'https://ror.org/0312nky31', 'en', 1, 'https://ror.org/0312nky31 Infection Control Africa Network'),
(74336, 'https://ror.org/04fpsr797', 'no_lang_code', 1, 'https://ror.org/04fpsr797 Intergen (Turkey) İntergen Genetik Hastalıklar Tanı Merkezi'),
(74337, 'https://ror.org/02xwh7n36', 'en', 1, 'https://ror.org/02xwh7n36 Conseil International des InfirmiĆØres International Council of Nurses'),
(74338, 'https://ror.org/02hnfcm12', 'en', 1, 'https://ror.org/02hnfcm12 International Engineering and Technology Institute'),
(74339, 'https://ror.org/03rtrce80', 'en', 1, 'https://ror.org/03rtrce80 National Centre for Infectious Diseases'),
(74340, 'https://ror.org/01ze2qb65', 'en', 1, 'https://ror.org/01ze2qb65 International Step by Step Association'),
(74341, 'https://ror.org/01t8k4098', 'no_lang_code', 1, 'https://ror.org/01t8k4098 Guhua Hospital äøŠęµ·åø‚å„‰č“¤åŒŗå¤åŽåŒ»é™¢'),
(74342, 'https://ror.org/05bvyxw62', 'es', 1, 'https://ror.org/05bvyxw62 Hospital Universitario de Sincelejo'),
(74343, 'https://ror.org/00h2m4d20', 'en', 1, 'https://ror.org/00h2m4d20 Hemophilia Center of Iran Ś©Ų§Ł†ŁˆŁ† Ł‡Ł…ŁˆŁŪŒŁ„ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(74344, 'https://ror.org/0553qpy92', 'it', 1, 'https://ror.org/0553qpy92 Istituto Zooprofilattico Sperimentale della Puglia e della Basilicata'),
(74345, 'https://ror.org/00c2n9b56', 'en', 1, 'https://ror.org/00c2n9b56 Jewish Voice for Peace'),
(74346, 'https://ror.org/03zd66h19', 'no_lang_code', 1, 'https://ror.org/03zd66h19 Inprother (Denmark)'),
(74347, 'https://ror.org/01jsw1s12', 'en', 1, 'https://ror.org/01jsw1s12 Florida Center for Dermatology'),
(74348, 'https://ror.org/054tz0d85', 'no_lang_code', 1, 'https://ror.org/054tz0d85 Medomics (China) ę±Ÿč‹ē¾Žå…‹åŒ»å­¦ęŠ€ęœÆęœ‰é™å…¬åø'),
(74349, 'https://ror.org/01kpf5k20', 'no_lang_code', 1, 'https://ror.org/01kpf5k20 Flow Pharma (United States)'),
(74350, 'https://ror.org/0532gcg76', 'en', 1, 'https://ror.org/0532gcg76 Institute for Disease Modeling'),
(74351, 'https://ror.org/03682zy57', 'en', 1, 'https://ror.org/03682zy57 Johannesburg Wildlife Vet'),
(74352, 'https://ror.org/016ayye29', 'en', 1, 'https://ror.org/016ayye29 Lusaka Apex Medical University'),
(74353, 'https://ror.org/05ccx1c95', 'da', 1, 'https://ror.org/05ccx1c95 LVK KvƦgdyrlƦgerne'),
(74354, 'https://ror.org/057zb9e55', 'no_lang_code', 1, 'https://ror.org/057zb9e55 Macopharma (Germany)'),
(74355, 'https://ror.org/05ypszq83', 'es', 1, 'https://ror.org/05ypszq83 Fundación IRAUy'),
(74356, 'https://ror.org/04k8x4m17', 'no_lang_code', 1, 'https://ror.org/04k8x4m17 Zabal Menuiseries (France)'),
(74357, 'https://ror.org/04p7c8496', 'en', 1, 'https://ror.org/04p7c8496 Medical Governance Research Institute åŒ»ē™‚ć‚¬ćƒćƒŠćƒ³ć‚¹ē ”ē©¶ę‰€'),
(74358, 'https://ror.org/03b7d3909', 'en', 1, 'https://ror.org/03b7d3909 National Diabetes Obesity and Cholesterol Foundation'),
(74359, 'https://ror.org/041nfer11', 'es', 1, 'https://ror.org/041nfer11 Menescalia Centro Veterinario'),
(74360, 'https://ror.org/02d9qgc11', 'en', 1, 'https://ror.org/02d9qgc11 Saudi Center for Disease Prevention and Control Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŁˆŁ‚Ų§ŁŠŲ© من الأمراض ŁˆŁ…ŁƒŲ§ŁŲ­ŲŖŁ‡Ų§'),
(74361, 'https://ror.org/02gqm1y63', 'no_lang_code', 1, 'https://ror.org/02gqm1y63 Minda Hospital ę¹–åŒ—ę°‘ę—å¤§å­¦é™„å±žę°‘å¤§åŒ»é™¢'),
(74362, 'https://ror.org/00f6a9h42', 'en', 1, 'https://ror.org/00f6a9h42 National Institute of Animal Biotechnology'),
(74363, 'https://ror.org/026q2n359', 'no_lang_code', 1, 'https://ror.org/026q2n359 Molecular Microbiology and Genomics Consultants (Germany)'),
(74364, 'https://ror.org/03np1sm50', 'no_lang_code', 1, 'https://ror.org/03np1sm50 MSCI (China)'),
(74365, 'https://ror.org/05cpqsp49', 'en', 1, 'https://ror.org/05cpqsp49 Miami Transplant Institute'),
(74366, 'https://ror.org/0276bkt19', 'en', 1, 'https://ror.org/0276bkt19 National Public Health Laboratory'),
(74367, 'https://ror.org/05crx6z12', 'en', 1, 'https://ror.org/05crx6z12 National Public Health Organization Ī•ĪøĪ½Ī¹ĪŗĻŒĻ‚ ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ Ī”Ī·Ī¼ĻŒĻƒĪ¹Ī±Ļ‚ ΄γείας'),
(74368, 'https://ror.org/05c4q7289', 'en', 1, 'https://ror.org/05c4q7289 WHO European Office for the Prevention and Control of NCD'),
(74369, 'https://ror.org/05wv5ps25', 'en', 1, 'https://ror.org/05wv5ps25 Noah''s Path'),
(74370, 'https://ror.org/028mbb924', 'en', 1, 'https://ror.org/028mbb924 North American Renderers Association'),
(74371, 'https://ror.org/05e58kh79', 'en', 1, 'https://ror.org/05e58kh79 Nebraska Public Health Laboratory'),
(74372, 'https://ror.org/00ebvm839', 'no_lang_code', 1, 'https://ror.org/00ebvm839 Northern Minerals (Australia)'),
(74373, 'https://ror.org/020tv9a29', 'no_lang_code', 1, 'https://ror.org/020tv9a29 New Century Pharmaceuticals (United States)'),
(74374, 'https://ror.org/02mffv097', 'en', 1, 'https://ror.org/02mffv097 Sepsis Trust NZ'),
(74375, 'https://ror.org/02hmsgf06', 'fr', 1, 'https://ror.org/02hmsgf06 Le Laboratoire P4 Inserm Jean MƩrieux'),
(74376, 'https://ror.org/05sjgdh57', 'en', 1, 'https://ror.org/05sjgdh57 Nigeria Centre for Disease Control'),
(74377, 'https://ror.org/05knvbx59', 'no_lang_code', 1, 'https://ror.org/05knvbx59 Nkmax (South Korea)'),
(74378, 'https://ror.org/055bszj51', 'no_lang_code', 1, 'https://ror.org/055bszj51 Peptide Institute (Japan) ę Ŗå¼ä¼šē¤¾ćƒšćƒ—ćƒćƒ‰ē ”ē©¶ę‰€'),
(74379, 'https://ror.org/04xee8d94', 'en', 1, 'https://ror.org/04xee8d94 Pulmonary Hospital of Lanzhou å…°å·žåø‚č‚ŗē§‘åŒ»é™¢'),
(74380, 'https://ror.org/004w4c708', 'no_lang_code', 1, 'https://ror.org/004w4c708 Pipestone (United States)'),
(74381, 'https://ror.org/02myr1w18', 'no_lang_code', 1, 'https://ror.org/02myr1w18 Pliant (United States)'),
(74382, 'https://ror.org/029b4kt29', 'en', 1, 'https://ror.org/029b4kt29 Livestock Breeding and Veterinary Department မွေးမြူရေးနှင့် į€€į€Æį€žį€›į€±į€ø į€¦į€øį€…į€®į€øį€Œį€¬į€”'),
(74383, 'https://ror.org/04jref587', 'en', 1, 'https://ror.org/04jref587 Loudi Central Hospital åØ„åŗ•åø‚äø­åæƒåŒ»é™¢'),
(74384, 'https://ror.org/05xdrcw34', 'no_lang_code', 1, 'https://ror.org/05xdrcw34 Regend Therapeutics (China)'),
(74385, 'https://ror.org/03bd9r350', 'en', 1, 'https://ror.org/03bd9r350 The Salvation Army China 救世军'),
(74386, 'https://ror.org/05ncx5x80', 'no_lang_code', 1, 'https://ror.org/05ncx5x80 PurpleSun (United States)'),
(74387, 'https://ror.org/01rqyfs68', 'nl', 1, 'https://ror.org/01rqyfs68 Huisarts en Wetenschap'),
(74388, 'https://ror.org/01bzbbd61', 'en', 1, 'https://ror.org/01bzbbd61 Gallup Korea'),
(74389, 'https://ror.org/05pwzcb81', 'en', 1, 'https://ror.org/05pwzcb81 Qingdao Women and Children''s Hospital é’å²›åø‚å¦‡å„³å„æē«„åŒ»é™¢'),
(74390, 'https://ror.org/04y0f6h17', 'no_lang_code', 1, 'https://ror.org/04y0f6h17 Resis (Italy)'),
(74391, 'https://ror.org/05qbj3p45', 'en', 1, 'https://ror.org/05qbj3p45 Royal Museums Greenwich'),
(74392, 'https://ror.org/01ayhb353', 'no_lang_code', 1, 'https://ror.org/01ayhb353 ATS Sardegna (Italy)'),
(74393, 'https://ror.org/03ez0zf69', 'en', 1, 'https://ror.org/03ez0zf69 Royal Observatory in Greenwich'),
(74394, 'https://ror.org/04qbqh473', 'en', 1, 'https://ror.org/04qbqh473 Royal Commission Medical Center'),
(74395, 'https://ror.org/01c0kpp64', 'en', 1, 'https://ror.org/01c0kpp64 University College of Azarabadegan Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ آذرآبادگان'),
(74396, 'https://ror.org/0247phc34', 'en', 1, 'https://ror.org/0247phc34 Rwanda Development Board'),
(74397, 'https://ror.org/04y938269', 'en', 1, 'https://ror.org/04y938269 Latin American Society for Travel Medicine Sociedad Latinoamericana de Medicina del Viajero'),
(74398, 'https://ror.org/00279h066', 'en', 1, 'https://ror.org/00279h066 Rwanda Wildlife Conservation Association'),
(74399, 'https://ror.org/011djka92', 'no_lang_code', 1, 'https://ror.org/011djka92 Sabin Medicina Diagnostica (Brazil)'),
(74400, 'https://ror.org/01a0hfp29', 'fr', 1, 'https://ror.org/01a0hfp29 Service Volontaire International'),
(74401, 'https://ror.org/03ejr8e18', 'en', 1, 'https://ror.org/03ejr8e18 Samson Institute For Ageing Research'),
(74402, 'https://ror.org/01gjgcg03', 'no_lang_code', 1, 'https://ror.org/01gjgcg03 Paragon Genomics (United States)'),
(74403, 'https://ror.org/02qdhmt11', 'es', 1, 'https://ror.org/02qdhmt11 ClĆ­nica Santa MarĆ­a'),
(74404, 'https://ror.org/04tp7cf63', 'en', 1, 'https://ror.org/04tp7cf63 Başkent University Alanya Hospital Başkent Üniversitesi Alanya Hastanesi'),
(74405, 'https://ror.org/0356fgm10', 'en', 1, 'https://ror.org/0356fgm10 The Carpentries'),
(74406, 'https://ror.org/00w05gw74', 'en', 1, 'https://ror.org/00w05gw74 PEG-Bio Biopharm é‡åŗ†ę“¾é‡‘ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(74407, 'https://ror.org/04wtsrd61', 'es', 1, 'https://ror.org/04wtsrd61 Instituto Universitario de Ciencias MƩdicas y Humanƭsticas de Nayarit'),
(74408, 'https://ror.org/05cqp3018', 'en', 1, 'https://ror.org/05cqp3018 Hospital Besar Sengkang Sengkang General Hospital ą®šąÆ†ą®™ąÆą®•ą®¾ą®™ąÆ பொது ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ ē››ęøÆē»¼åˆåŒ»é™¢'),
(74409, 'https://ror.org/015305q15', 'fr', 1, 'https://ror.org/015305q15 Centre Hospitalier Avranches Granville Le centre hospitalier Avranches Granville'),
(74410, 'https://ror.org/025qsj431', 'en', 1, 'https://ror.org/025qsj431 Bozhou People''s Hospital äŗ³å·žåø‚äŗŗę°‘åŒ»é™¢'),
(74411, 'https://ror.org/01e99h158', 'en', 1, 'https://ror.org/01e99h158 Velleja Research'),
(74412, 'https://ror.org/01d9dbd65', 'en', 1, 'https://ror.org/01d9dbd65 Africa Centres for Disease Control and Prevention'),
(74413, 'https://ror.org/04j0edb32', 'fr', 1, 'https://ror.org/04j0edb32 HƓpital PrivƩ Guillaume de Varye'),
(74414, 'https://ror.org/03rahtg67', 'en', 1, 'https://ror.org/03rahtg67 Scientific Research Group in Egypt'),
(74415, 'https://ror.org/03ckw1950', 'en', 1, 'https://ror.org/03ckw1950 Eastmed'),
(74416, 'https://ror.org/05ta2ab47', 'en', 1, 'https://ror.org/05ta2ab47 Sci Paper Edit'),
(74417, 'https://ror.org/056xvq727', 'de', 1, 'https://ror.org/056xvq727 Chemisches und VeterinƤruntersuchungsamt Ostwestfalen-Lippe'),
(74418, 'https://ror.org/04h9a4v60', 'no_lang_code', 1, 'https://ror.org/04h9a4v60 New Hope Liuhe (China)'),
(74419, 'https://ror.org/027ya8962', 'en', 1, 'https://ror.org/027ya8962 Anthrologica'),
(74420, 'https://ror.org/02sjprm39', 'en', 1, 'https://ror.org/02sjprm39 Fuzhou Maternity and Child Health Care Hospital ē¦å·žåø‚å¦‡å¹¼äæå„é™¢'),
(74421, 'https://ror.org/028wbxx26', 'en', 1, 'https://ror.org/028wbxx26 Spinney Vets'),
(74422, 'https://ror.org/00ggswp78', 'no_lang_code', 1, 'https://ror.org/00ggswp78 Ganesamoni Hospital'),
(74423, 'https://ror.org/02kx7v033', 'en', 1, 'https://ror.org/02kx7v033 ALAI Czech Republic ALAI ČeskÔ republika'),
(74424, 'https://ror.org/057pame33', 'en', 1, 'https://ror.org/057pame33 Commission communautaire commune Common Community Commission Gemeenschappelijke Gemeenschapscommissie'),
(74425, 'https://ror.org/00pv01967', 'en', 1, 'https://ror.org/00pv01967 Kunming Third People''s Hospital ę˜†ę˜Žåø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢ęˆ'),
(74426, 'https://ror.org/007wz9933', 'en', 1, 'https://ror.org/007wz9933 Shanghai Medical Information Center äøŠęµ·åø‚åŒ»ē–—äæé™©äæ”ęÆäø­åæƒ'),
(74427, 'https://ror.org/01ccnft78', 'no_lang_code', 1, 'https://ror.org/01ccnft78 Qiagen (Spain)'),
(74428, 'https://ror.org/02j3vjm91', 'no_lang_code', 1, 'https://ror.org/02j3vjm91 Guangxi Longtan Hospital ęŸ³å·žåø‚é¾™ę½­åŒ»é™¢'),
(74429, 'https://ror.org/053frp704', 'no_lang_code', 1, 'https://ror.org/053frp704 Yebio Bioengineering (China)'),
(74430, 'https://ror.org/01vs47t55', 'en', 1, 'https://ror.org/01vs47t55 Zhengzhou Jinshui District General Hospital éƒ‘å·žåø‚é‡‘ę°“åŒŗę€»åŒ»é™¢'),
(74431, 'https://ror.org/00byme428', 'fr', 1, 'https://ror.org/00byme428 Groupe FranƧais de Transplantation FƩcale'),
(74432, 'https://ror.org/00axm1v07', 'en', 1, 'https://ror.org/00axm1v07 Sudan Childhood Diabetes Association'),
(74433, 'https://ror.org/04ger2z06', 'en', 1, 'https://ror.org/04ger2z06 Shandong Maternal and Child Health Hospital å±±äøœēœå¦‡å¹¼äæå„é™¢'),
(74434, 'https://ror.org/02t268r72', 'en', 1, 'https://ror.org/02t268r72 People''s Hospital of Shiyan åå °åø‚äŗŗę°‘åŒ»é™¢'),
(74435, 'https://ror.org/01eda7a75', 'en', 1, 'https://ror.org/01eda7a75 Second People Hospital of Hunan ę¹–å—ēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(74436, 'https://ror.org/02p6pn278', 'en', 1, 'https://ror.org/02p6pn278 LEAP Science and Maths Schools'),
(74437, 'https://ror.org/05r8wgv86', 'en', 1, 'https://ror.org/05r8wgv86 Empower Tanzania'),
(74438, 'https://ror.org/02xae6c61', 'en', 1, 'https://ror.org/02xae6c61 Wuhu No 1 People''s Hospital čŠœę¹–åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(74439, 'https://ror.org/02ahp7e62', 'en', 1, 'https://ror.org/02ahp7e62 Boxing People''s Hospital åšå…“åŽæäŗŗę°‘åŒ»é™¢'),
(74440, 'https://ror.org/04xf4yw96', 'en', 1, 'https://ror.org/04xf4yw96 Tata Institute for Genetics and Society'),
(74441, 'https://ror.org/035mc8a13', 'fr', 1, 'https://ror.org/035mc8a13 LabƩo'),
(74442, 'https://ror.org/044yd5h03', 'fr', 1, 'https://ror.org/044yd5h03 CNR de la RƩsistance aux Antibiotiques'),
(74443, 'https://ror.org/03t65z939', 'no_lang_code', 1, 'https://ror.org/03t65z939 Sanya Central Hospital äø‰äŗšäø­åæƒåŒ»é™¢'),
(74444, 'https://ror.org/02tbjbv63', 'no_lang_code', 1, 'https://ror.org/02tbjbv63 Sino Biological (China)'),
(74445, 'https://ror.org/02yz89636', 'en', 1, 'https://ror.org/02yz89636 Sį»ž Y Tįŗ¾ THANH HƓA Thanh Hoa Department of Health'),
(74446, 'https://ror.org/04r7av415', 'no_lang_code', 1, 'https://ror.org/04r7av415 Silexon AI Technology (China)'),
(74447, 'https://ror.org/04yjbr930', 'en', 1, 'https://ror.org/04yjbr930 Shenzhen University Health Science Center'),
(74448, 'https://ror.org/01jk37618', 'no_lang_code', 1, 'https://ror.org/01jk37618 Singleron Biotechnologies (china)'),
(74449, 'https://ror.org/02a539305', 'no_lang_code', 1, 'https://ror.org/02a539305 Shanghai Senyi Medical Technology (China)'),
(74450, 'https://ror.org/00pxc7m47', 'no_lang_code', 1, 'https://ror.org/00pxc7m47 Shenzhen Bioeasy Biotechnology (China)'),
(74451, 'https://ror.org/00g87gv13', 'en', 1, 'https://ror.org/00g87gv13 Beijing Shijingshan Hospital åŒ—äŗ¬åø‚ēŸ³ę™Æå±±åŒ»é™¢'),
(74452, 'https://ror.org/05mp6hg50', 'en', 1, 'https://ror.org/05mp6hg50 Jinan Infectious Disease Hospital ęµŽå—åø‚ä¼ ęŸ“ē—…åŒ»é™¢'),
(74453, 'https://ror.org/0524grj14', 'en', 1, 'https://ror.org/0524grj14 The Sixth People''s Hospital of Shenyang ę²ˆé˜³åø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(74454, 'https://ror.org/05gre8525', 'no_lang_code', 1, 'https://ror.org/05gre8525 Solutia (Czechia)'),
(74455, 'https://ror.org/02zmj9y60', 'en', 1, 'https://ror.org/02zmj9y60 South African Medical Association'),
(74456, 'https://ror.org/04gqb3c37', 'no_lang_code', 1, 'https://ror.org/04gqb3c37 Southern Community Laboratories (New Zealand)'),
(74457, 'https://ror.org/03ed7ma04', 'en', 1, 'https://ror.org/03ed7ma04 Urban Upbound'),
(74458, 'https://ror.org/04gyvnw24', 'es', 1, 'https://ror.org/04gyvnw24 Clƭnica DƔvila'),
(74459, 'https://ror.org/005wx2316', 'no_lang_code', 1, 'https://ror.org/005wx2316 Value Farm Consulting (Japan) ćƒćƒŖćƒ„ćƒ¼ćƒ•ć‚”ćƒ¼ćƒ ćƒ»ć‚³ćƒ³ć‚µćƒ«ćƒ†ć‚£ćƒ³ć‚°'),
(74460, 'https://ror.org/01e7yxy62', 'no_lang_code', 1, 'https://ror.org/01e7yxy62 Vantage Health Solutions (Myanmar)'),
(74461, 'https://ror.org/02tkd3t39', 'de', 1, 'https://ror.org/02tkd3t39 WEK Tierarzt'),
(74462, 'https://ror.org/02jg20617', 'en', 1, 'https://ror.org/02jg20617 Veterinary Serum and Vaccine Research Institute معهد بحوث الامصال ŁˆŲ§Ł„Ł„Ł‚Ų§Ų­Ų§ŲŖ Ų§Ł„ŲØŁŠŲ·Ų±ŁŠŲ©'),
(74463, 'https://ror.org/00961se81', 'en', 1, 'https://ror.org/00961se81 First Consultants Medical Center'),
(74464, 'https://ror.org/04aczrd15', 'en', 1, 'https://ror.org/04aczrd15 Vietnamese - German Center of Excellence in Medical Research'),
(74465, 'https://ror.org/04k078691', 'it', 1, 'https://ror.org/04k078691 Ospedale D. Cotugno'),
(74466, 'https://ror.org/05q3h1130', 'no_lang_code', 1, 'https://ror.org/05q3h1130 TIB Molbiol (Germany)'),
(74467, 'https://ror.org/03yxxfa18', 'no_lang_code', 1, 'https://ror.org/03yxxfa18 WELLS BIO (United States)'),
(74468, 'https://ror.org/004jhjr33', 'en', 1, 'https://ror.org/004jhjr33 Vinh Phuc Department of Health'),
(74469, 'https://ror.org/00ddsq322', 'no_lang_code', 1, 'https://ror.org/00ddsq322 Viroclinics Biosciences (Netherlands)');
INSERT INTO `rors` VALUES
(74470, 'https://ror.org/03y7pbb54', 'en', 1, 'https://ror.org/03y7pbb54 Trailfinders Travel Clinic'),
(74471, 'https://ror.org/04je4qa93', 'en', 1, 'https://ror.org/04je4qa93 Zambia National Public Health Institute'),
(74472, 'https://ror.org/03ywzsn05', 'no_lang_code', 1, 'https://ror.org/03ywzsn05 Wen''s Food Group (China) ęø©ę°é£Ÿå“é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(74473, 'https://ror.org/052bx1y70', 'fr', 1, 'https://ror.org/052bx1y70 Clinique VƩtƩrinaire Benjamin Franklin'),
(74474, 'https://ror.org/02ad5vq71', 'no_lang_code', 1, 'https://ror.org/02ad5vq71 Winning Health Technology Group (China)'),
(74475, 'https://ror.org/043afjr64', 'en', 1, 'https://ror.org/043afjr64 Women''s Brain Project'),
(74476, 'https://ror.org/021fq8s19', 'en', 1, 'https://ror.org/021fq8s19 The Japanese Society of Gastroenterological Surgery ę—„ęœ¬ę¶ˆåŒ–å™Øå¤–ē§‘å­¦ä¼š'),
(74477, 'https://ror.org/01cyp2953', 'no_lang_code', 1, 'https://ror.org/01cyp2953 Xenstats (Poland)'),
(74478, 'https://ror.org/0138a8a04', 'en', 1, 'https://ror.org/0138a8a04 Xianning Central Hospital å’øå®åø‚äø­åæƒåŒ»é™¢'),
(74479, 'https://ror.org/03911p935', 'en', 1, 'https://ror.org/03911p935 World Health Organization - Afghanistan'),
(74480, 'https://ror.org/0292bqz47', 'en', 1, 'https://ror.org/0292bqz47 World Health Organization - Jordan'),
(74481, 'https://ror.org/035g8xb75', 'en', 1, 'https://ror.org/035g8xb75 World Health Organization - Lebanon'),
(74482, 'https://ror.org/005xgxx88', 'en', 1, 'https://ror.org/005xgxx88 World Health Organization - Morocco'),
(74483, 'https://ror.org/00b7zyg88', 'en', 1, 'https://ror.org/00b7zyg88 Museum of Old and New Art'),
(74484, 'https://ror.org/02zcn6j48', 'en', 1, 'https://ror.org/02zcn6j48 World Marrow Donor Association'),
(74485, 'https://ror.org/01ys4k188', 'en', 1, 'https://ror.org/01ys4k188 World Organisation of Family Doctors'),
(74486, 'https://ror.org/03707rf96', 'en', 1, 'https://ror.org/03707rf96 University of Tripoli Al-ahlia Ų¬Ų§Ł…Ų¹Ų© طرابلس Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(74487, 'https://ror.org/01mky9g42', 'en', 1, 'https://ror.org/01mky9g42 Snohomish Health District'),
(74488, 'https://ror.org/02vvkyr96', 'en', 1, 'https://ror.org/02vvkyr96 World Health Organization - Uganda'),
(74489, 'https://ror.org/00mxz0t84', 'no_lang_code', 1, 'https://ror.org/00mxz0t84 Wuhan Amysen Life Technology (China)'),
(74490, 'https://ror.org/04rdvs602', 'en', 1, 'https://ror.org/04rdvs602 Sullivan Nicolaides Pathology'),
(74491, 'https://ror.org/04em1gv44', 'en', 1, 'https://ror.org/04em1gv44 Yamagata Prefectural Institute of Public Health å±±å½¢ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(74492, 'https://ror.org/052cfvk26', 'en', 1, 'https://ror.org/052cfvk26 Yunnan Provincial Infectious Disease Hospital äŗ‘å—ēœä¼ ęŸ“ē—…äø“ē§‘åŒ»é™¢'),
(74493, 'https://ror.org/00qjtn636', 'en', 1, 'https://ror.org/00qjtn636 Qinghai No.3 People''s Hospital é’ęµ·ēœē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(74494, 'https://ror.org/0124z6a88', 'en', 1, 'https://ror.org/0124z6a88 Baoding People''s Hospital äæå®šåø‚äŗŗę°‘åŒ»é™¢'),
(74495, 'https://ror.org/054767b18', 'en', 1, 'https://ror.org/054767b18 Dawu County People''s Hospital å¤§ę‚ŸåŽæäŗŗę°‘åŒ»é™¢'),
(74496, 'https://ror.org/01kqcdh89', 'en', 1, 'https://ror.org/01kqcdh89 Wuhan Pulmonary Hospital ę­¦ę±‰åø‚č‚ŗē§‘åŒ»é™¢'),
(74497, 'https://ror.org/02xv4ae75', 'de', 1, 'https://ror.org/02xv4ae75 LKH Hochsteiermark'),
(74498, 'https://ror.org/02s7ck732', 'no_lang_code', 1, 'https://ror.org/02s7ck732 Wuhan Hankou Hospital ę­¦ę±‰åø‚ę±‰å£åŒ»é™¢'),
(74499, 'https://ror.org/00g15v148', 'no_lang_code', 1, 'https://ror.org/00g15v148 Nyangabgwe Referral Hospital'),
(74500, 'https://ror.org/04cv89q08', 'en', 1, 'https://ror.org/04cv89q08 Sukraraj Tropical & Infectious Disease Hospital'),
(74501, 'https://ror.org/0380dcc73', 'en', 1, 'https://ror.org/0380dcc73 Wuhan No. 7 Hospital ę­¦ę±‰åø‚ē¬¬äøƒåŒ»é™¢'),
(74502, 'https://ror.org/01yxkbf55', 'en', 1, 'https://ror.org/01yxkbf55 Xiaogan First People''s Hospital å­ę„Ÿåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(74503, 'https://ror.org/0090yh913', 'en', 1, 'https://ror.org/0090yh913 Xiangshan County First People''s Hospital č±”å±±åŽæē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(74504, 'https://ror.org/022fy9g59', 'en', 1, 'https://ror.org/022fy9g59 Hefei Infectious Disease Hospital åˆč‚„åø‚ä¼ ęŸ“ē—…åŒ»é™¢'),
(74505, 'https://ror.org/03j4gka24', 'en', 1, 'https://ror.org/03j4gka24 Pingliang People''s Hospital å¹³å‡‰åø‚äŗŗę°‘åŒ»é™¢'),
(74506, 'https://ror.org/01rbbfm88', 'en', 1, 'https://ror.org/01rbbfm88 Xiamen Blood Center åŽ¦é—Øåø‚äø­åæƒč”€ē«™'),
(74507, 'https://ror.org/02sjdcn27', 'no_lang_code', 1, 'https://ror.org/02sjdcn27 Huanggang Central Hospital'),
(74508, 'https://ror.org/04cr34a11', 'en', 1, 'https://ror.org/04cr34a11 Yichang Central People''s Hospital å®œę˜Œåø‚äø­åæƒäŗŗę°‘åŒ»é™¢'),
(74509, 'https://ror.org/03xv0cg46', 'en', 1, 'https://ror.org/03xv0cg46 Qingdao Eighth People''s Hospital é’å²›åø‚ē¬¬å…«äŗŗę°‘åŒ»é™¢'),
(74510, 'https://ror.org/029mxk035', 'no_lang_code', 1, 'https://ror.org/029mxk035 Wuhan Youfu Hospital ę­¦ę±‰åø‚ä¼˜ęŠšåŒ»é™¢'),
(74511, 'https://ror.org/02x5sw589', 'en', 1, 'https://ror.org/02x5sw589 Anyang Hospital of Traditional Chinese Medicine å®‰é˜³åø‚äø­åŒ»é™¢'),
(74512, 'https://ror.org/00e52k684', 'en', 1, 'https://ror.org/00e52k684 Fuyang Second People''s Hospital é˜œé˜³åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(74513, 'https://ror.org/00q1p9b30', 'en', 1, 'https://ror.org/00q1p9b30 Southern Tohoku General Hospital ē·åˆå—ę±åŒ—ē—…é™¢'),
(74514, 'https://ror.org/054tmk179', 'en', 1, 'https://ror.org/054tmk179 Isaac Newton Group'),
(74515, 'https://ror.org/05p1n6x86', 'en', 1, 'https://ror.org/05p1n6x86 MRC London Institute of Medical Sciences'),
(74516, 'https://ror.org/01egwg173', 'en', 1, 'https://ror.org/01egwg173 UK Astronomy Technology Centre'),
(74517, 'https://ror.org/04frbf545', 'en', 1, 'https://ror.org/04frbf545 Academy of Emergency Medicine and Care'),
(74518, 'https://ror.org/017dx9162', 'no_lang_code', 1, 'https://ror.org/017dx9162 Jiangsu T-mab BioPharma (China) ę±Ÿč‹ę³°åŗ·ē”Ÿē‰©åŒ»čÆęœ‰é™å…¬åøåˆ›'),
(74519, 'https://ror.org/0160cqn49', 'en', 1, 'https://ror.org/0160cqn49 Beijing Chang''an Integrated Traditional Chinese and Western Medicine Hospital åŒ—äŗ¬é•æå®‰äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(74520, 'https://ror.org/028xrre51', 'en', 1, 'https://ror.org/028xrre51 Qujiang People''s Hospital ę›²ę±ŸåŽæäŗŗę°‘åŒ»é™¢'),
(74521, 'https://ror.org/039zsrs49', 'es', 1, 'https://ror.org/039zsrs49 Instituto Tecnológico de Pabellón de Arteaga'),
(74522, 'https://ror.org/00khsgc96', 'no_lang_code', 1, 'https://ror.org/00khsgc96 The RebornCell (South Korea) ė”ė¦¬ė³øģ…€'),
(74523, 'https://ror.org/00dpp6p47', 'no_lang_code', 1, 'https://ror.org/00dpp6p47 Caixin (China) 蓢新传媒'),
(74524, 'https://ror.org/019yx9f29', 'no_lang_code', 1, 'https://ror.org/019yx9f29 Lundin Mining (Canada)'),
(74525, 'https://ror.org/043ajem71', 'en', 1, 'https://ror.org/043ajem71 Catalytic Longevity'),
(74526, 'https://ror.org/03e21p220', 'en', 1, 'https://ror.org/03e21p220 Central Hokkaido Animal Health Center ēœŒå¤®å®¶ē•œäæå„č”›ē”Ÿę‰€'),
(74527, 'https://ror.org/05rfsjn97', 'pt', 1, 'https://ror.org/05rfsjn97 Unidade Hospitalar de BraganƧa'),
(74528, 'https://ror.org/03b867n98', 'en', 1, 'https://ror.org/03b867n98 Tengzhou Central People''s Hospital ę»•å·žåø‚äø­åæƒäŗŗę°‘åŒ»é™¢'),
(74529, 'https://ror.org/00qtzg544', 'en', 1, 'https://ror.org/00qtzg544 Wuhan Wudong Hospital ę­¦ę±‰åø‚ę­¦äøœåŒ»é™¢'),
(74530, 'https://ror.org/02x760e19', 'en', 1, 'https://ror.org/02x760e19 Fuyang Maternity and Child Health Care Hospital é˜œé˜³åø‚å¦‡å„³å„æē«„åŒ»é™¢'),
(74531, 'https://ror.org/05tp04d37', 'no_lang_code', 1, 'https://ror.org/05tp04d37 Gavekal Intelligence Software (France)'),
(74532, 'https://ror.org/04j5ybr94', 'en', 1, 'https://ror.org/04j5ybr94 Henan Bioengineering Technology Research Center ę²³å—ēœē”Ÿē‰©å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(74533, 'https://ror.org/00jgaep33', 'es', 1, 'https://ror.org/00jgaep33 Dr. Lucio MelƩndez Hospital Zonal General de Agudos'),
(74534, 'https://ror.org/05aacdd70', 'es', 1, 'https://ror.org/05aacdd70 Hospital PiƱero'),
(74535, 'https://ror.org/03qvyw596', 'no_lang_code', 1, 'https://ror.org/03qvyw596 Genus (United States)'),
(74536, 'https://ror.org/05abbvq76', 'no_lang_code', 1, 'https://ror.org/05abbvq76 CD-adapco (United States)'),
(74537, 'https://ror.org/00mcaq341', 'no_lang_code', 1, 'https://ror.org/00mcaq341 Indi-Vet (Israel) אינדי-וט'),
(74538, 'https://ror.org/046m3e234', 'en', 1, 'https://ror.org/046m3e234 Public Health Clinical Center of Chengdu ęˆéƒ½åø‚å…¬å…±å«ē”Ÿäø“åŗŠåŒ»ē–—äø­åæƒ'),
(74539, 'https://ror.org/047x5tz06', 'es', 1, 'https://ror.org/047x5tz06 Incubadora Venezolana de la Ciencia'),
(74540, 'https://ror.org/04119yp22', 'no_lang_code', 1, 'https://ror.org/04119yp22 Ingine (United States)'),
(74541, 'https://ror.org/056f5eh80', 'en', 1, 'https://ror.org/056f5eh80 Arctic Research Center of the Yamal-Nenets Autonomous District ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃ Арктики'),
(74542, 'https://ror.org/0511c9v88', 'en', 1, 'https://ror.org/0511c9v88 Churapcha State Institute of Physical Education and Sports Š¤Š“Š‘ŠžŠ£ Š’Šž Š§ŃƒŃ€Š°ŠæŃ‡ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(74543, 'https://ror.org/04tms6279', 'en', 1, 'https://ror.org/04tms6279 Guangdong Provincial Center for Disease Control and Prevention å¹æäøœēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74544, 'https://ror.org/05vexvt14', 'en', 1, 'https://ror.org/05vexvt14 Koforidua Technical University'),
(74545, 'https://ror.org/043wq2k30', 'en', 1, 'https://ror.org/043wq2k30 East-Siberian Institute of Economics and Management Восточно-сибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø менеГжмента'),
(74546, 'https://ror.org/03wam2503', 'no_lang_code', 1, 'https://ror.org/03wam2503 P N Lee Statistics and Computing (United Kingdom)'),
(74547, 'https://ror.org/049wwwm08', 'en', 1, 'https://ror.org/049wwwm08 Environmental Development Centre'),
(74548, 'https://ror.org/059c3m342', 'no_lang_code', 1, 'https://ror.org/059c3m342 Patient Knowhow (United States)'),
(74549, 'https://ror.org/04dkfar71', 'en', 1, 'https://ror.org/04dkfar71 Shenzhen Bao''an District People''s Hospital ę·±åœ³åø‚å®å®‰åŒŗäŗŗę°‘åŒ»é™¢'),
(74550, 'https://ror.org/03mwwhq75', 'en', 1, 'https://ror.org/03mwwhq75 Higher School of Innovation Management Š’Ń‹ŃŃˆŠ°Ń школа инновационного менеГжмента'),
(74551, 'https://ror.org/0434zpn71', 'en', 1, 'https://ror.org/0434zpn71 International SƔmi Film Institute'),
(74552, 'https://ror.org/03nz7py16', 'en', 1, 'https://ror.org/03nz7py16 Italian Society for International Organization SocietĆ  Italiana Organizzazione Internazionale'),
(74553, 'https://ror.org/03ja1ng46', 'da', 1, 'https://ror.org/03ja1ng46 Nordisk Fond for MiljĆø og Udvikling'),
(74554, 'https://ror.org/0440hsj80', 'no_lang_code', 1, 'https://ror.org/0440hsj80 Perorsaanermik Ilinniarfik / College of Social Education'),
(74555, 'https://ror.org/00k8bhh21', 'en', 1, 'https://ror.org/00k8bhh21 Polar Libraries Colloquy'),
(74556, 'https://ror.org/01xpf5964', 'en', 1, 'https://ror.org/01xpf5964 SƔmi High School and Reindeer Husbandry School'),
(74557, 'https://ror.org/03dvxen85', 'no_lang_code', 1, 'https://ror.org/03dvxen85 Syktyvkar Forest Institute Дыктывкарский Лесной Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(74558, 'https://ror.org/039ayww40', 'en', 1, 'https://ror.org/039ayww40 The Yellow Tulip Project'),
(74559, 'https://ror.org/04swxte59', 'it', 1, 'https://ror.org/04swxte59 Scuola Superiore Meridionale'),
(74560, 'https://ror.org/036amgv56', 'en', 1, 'https://ror.org/036amgv56 London Borough of Hackney'),
(74561, 'https://ror.org/00hv1r627', 'en', 1, 'https://ror.org/00hv1r627 Shenzhen Research Institute of China University of Geosciences äø­å›½åœ°č“Øå¤§å­¦ę·±åœ³ē ”ē©¶é™¢'),
(74562, 'https://ror.org/01p5vg276', 'no_lang_code', 1, 'https://ror.org/01p5vg276 Centro Nacional de Endemias'),
(74563, 'https://ror.org/03ncps145', 'en', 1, 'https://ror.org/03ncps145 University of Torbat Heydarieh دانؓگاه ŲŖŲ±ŲØŲŖ Ų­ŪŒŲÆŲ±ŪŒŁ‡'),
(74564, 'https://ror.org/04p6vt455', 'no_lang_code', 1, 'https://ror.org/04p6vt455 Enveda Therapeutics (United States)'),
(74565, 'https://ror.org/0258gkt32', 'en', 1, 'https://ror.org/0258gkt32 Mohamed bin Zayed University of Artificial Intelligence Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ بن زايد Ł„Ł„Ų°ŁƒŲ§Ų” Ų§Ł„Ų§ŲµŲ·Ł†Ų§Ų¹ŁŠ'),
(74566, 'https://ror.org/032nt3q40', 'no_lang_code', 1, 'https://ror.org/032nt3q40 Nikken Sekkei (Japan) ę—„å»ŗčØ­čØˆ'),
(74567, 'https://ror.org/00m73vh91', 'no_lang_code', 1, 'https://ror.org/00m73vh91 RS Global (Poland)'),
(74568, 'https://ror.org/00faxb822', 'no_lang_code', 1, 'https://ror.org/00faxb822 DIGIBƍS (Spain)'),
(74569, 'https://ror.org/002bpzx43', 'no_lang_code', 1, 'https://ror.org/002bpzx43 Taro Pharmaceuticals (Israel)'),
(74570, 'https://ror.org/00czdkn85', 'en', 1, 'https://ror.org/00czdkn85 Eskişehir City Hospital Eskişehir Şehir Hastanesi'),
(74571, 'https://ror.org/03z9xj602', 'no_lang_code', 1, 'https://ror.org/03z9xj602 Actigen (United Kingdom)'),
(74572, 'https://ror.org/02t1hg644', 'no_lang_code', 1, 'https://ror.org/02t1hg644 Dantec Dynamics (Denmark)'),
(74573, 'https://ror.org/03r9jkk29', 'no_lang_code', 1, 'https://ror.org/03r9jkk29 Swarco (Austria)'),
(74574, 'https://ror.org/04bt02d30', 'en', 1, 'https://ror.org/04bt02d30 Hebei Provincial Center for Disease Control and Prevention ę²³åŒ—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74575, 'https://ror.org/00z3pae83', 'en', 1, 'https://ror.org/00z3pae83 Beijing Fengtai Disease Prevention and Control Center åŒ—äŗ¬åø‚äø°å°åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74576, 'https://ror.org/00g3f8n09', 'en', 1, 'https://ror.org/00g3f8n09 Ningbo Center for Disease Control and Prevention å®ę³¢åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74577, 'https://ror.org/007jnt575', 'en', 1, 'https://ror.org/007jnt575 Guangzhou Center for Disease Control and Prevention å¹æå·žåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74578, 'https://ror.org/0197nmp73', 'en', 1, 'https://ror.org/0197nmp73 Hubei Provincial Center for Disease Control and Prevention ę¹–åŒ—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74579, 'https://ror.org/0066efq29', 'en', 1, 'https://ror.org/0066efq29 Hunan Provincial Center for Disease Control and Prevention ę¹–å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ)'),
(74580, 'https://ror.org/020w9yc61', 'en', 1, 'https://ror.org/020w9yc61 Mianyang City Center for Disease Control and Prevention ē»µé˜³åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74581, 'https://ror.org/02e1p7g90', 'en', 1, 'https://ror.org/02e1p7g90 Liu Zhou Center for Disease Prevention and Control ęŸ³å·žē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74582, 'https://ror.org/03gdvgj95', 'en', 1, 'https://ror.org/03gdvgj95 Nanjing Municipal Center for Disease Control And Prevention å—äŗ¬åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74583, 'https://ror.org/03wneb138', 'en', 1, 'https://ror.org/03wneb138 National Institute for Parasitic Diseases'),
(74584, 'https://ror.org/02xnb4v27', 'en', 1, 'https://ror.org/02xnb4v27 National Center for AIDS/STD Control and Prevention,China CDC ę€§ē—…č‰¾ę»‹ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74585, 'https://ror.org/01v171a61', 'en', 1, 'https://ror.org/01v171a61 National Center for Women and Children’s Health, China CDC äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒå¦‡å¹¼äæå„äø­åæƒ'),
(74586, 'https://ror.org/04f7g6845', 'en', 1, 'https://ror.org/04f7g6845 National Institute for Communicable Disease Control and Prevention äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒä¼ ęŸ“ē—…é¢„é˜²ęŽ§åˆ¶ę‰€'),
(74587, 'https://ror.org/05whjqq05', 'en', 1, 'https://ror.org/05whjqq05 National Institute for Radiological Protection äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒč¾å°„é˜²ęŠ¤äøŽę øå®‰å…ØåŒ»å­¦ę‰€'),
(74588, 'https://ror.org/05n5mmr26', 'en', 1, 'https://ror.org/05n5mmr26 National Institute for Occupational Health and Poison Control äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒčŒäøšå«ē”ŸäøŽäø­ęÆ’ęŽ§åˆ¶ę‰€'),
(74589, 'https://ror.org/05eb58w69', 'en', 1, 'https://ror.org/05eb58w69 Ningxia Center for Diseases Prevention and Control å®å¤å›žę—č‡Ŗę²»åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74590, 'https://ror.org/03jc5ts66', 'no_lang_code', 1, 'https://ror.org/03jc5ts66 Tronox (United States)'),
(74591, 'https://ror.org/005mgvs97', 'en', 1, 'https://ror.org/005mgvs97 Shenyang Center for Disease Control and Prevention ę²ˆé˜³åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74592, 'https://ror.org/013a5fa56', 'en', 1, 'https://ror.org/013a5fa56 Jinshan Hospital of Fudan University å¤ę—¦å¤§å­¦é™„å±žé‡‘å±±åŒ»é™¢'),
(74593, 'https://ror.org/00tt3wc55', 'en', 1, 'https://ror.org/00tt3wc55 Xinjiang Uygur Autonomous Region Disease Prevention and Control Center ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74594, 'https://ror.org/02xy6bg05', 'en', 1, 'https://ror.org/02xy6bg05 Inner Mongolia Comprehensive Disease Prevention and Control Center å†…č’™å¤ē»¼åˆē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74595, 'https://ror.org/02e8jz218', 'no_lang_code', 1, 'https://ror.org/02e8jz218 Lhoist (Belgium)'),
(74596, 'https://ror.org/00983c961', 'en', 1, 'https://ror.org/00983c961 Xian Center for Disease Control and Prevention č„æå®‰åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74597, 'https://ror.org/02qdc7q41', 'en', 1, 'https://ror.org/02qdc7q41 Yunnan Center for Disease Control And Prevention äŗ‘å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74598, 'https://ror.org/05jxaw651', 'en', 1, 'https://ror.org/05jxaw651 Marine Ecology and Telemetry Research'),
(74599, 'https://ror.org/01fcvr303', 'en', 1, 'https://ror.org/01fcvr303 Gifu Academy of Forest Science and Culture å²é˜œēœŒē«‹ę£®ęž—ę–‡åŒ–ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(74600, 'https://ror.org/00scx1h10', 'en', 1, 'https://ror.org/00scx1h10 Health Education England'),
(74601, 'https://ror.org/01r58sr54', 'en', 1, 'https://ror.org/01r58sr54 National Center for Chronic and Noncommunicable Disease Control and Prevention äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒę…¢ę€§éžä¼ ęŸ“ę€§ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(74602, 'https://ror.org/05f1h4751', 'es', 1, 'https://ror.org/05f1h4751 Escuela Internacional de Negocios y Desarrollo Empresarial de Colombia'),
(74603, 'https://ror.org/0218xmz21', 'en', 1, 'https://ror.org/0218xmz21 Shenzhen Chronic Disease Prevention Center ę·±åœ³åø‚ę…¢ę€§ē—…é˜²ę²»äø­åæƒ'),
(74604, 'https://ror.org/05bk8br84', 'es', 1, 'https://ror.org/05bk8br84 Para La Tierra'),
(74605, 'https://ror.org/052sgg612', 'en', 1, 'https://ror.org/052sgg612 Arthur Rylah Institute for Environmental Research'),
(74606, 'https://ror.org/00wvyk770', 'en', 1, 'https://ror.org/00wvyk770 Guanacaste Conservation Area Área de Conservación Guanacaste'),
(74607, 'https://ror.org/015f8tz43', 'en', 1, 'https://ror.org/015f8tz43 North Dakota Game and Fish Department'),
(74608, 'https://ror.org/049n7x086', 'en', 1, 'https://ror.org/049n7x086 Government College Kodanchery ą“—ą“µą“£ąµā€ą“®ąµ†ą“Øąµą“±ąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“•ąµ‹ą“Ÿą“žąµą“šąµ‡ą“°ą“æ'),
(74609, 'https://ror.org/04sbxpy59', 'pt', 1, 'https://ror.org/04sbxpy59 Instituto de Conservação de Animais Silvestres'),
(74610, 'https://ror.org/04t8dcc90', 'en', 1, 'https://ror.org/04t8dcc90 Staffin Dinosaur Museum'),
(74611, 'https://ror.org/00p77dx36', 'en', 1, 'https://ror.org/00p77dx36 Usambara Field Studies Centre'),
(74612, 'https://ror.org/00451sn96', 'en', 1, 'https://ror.org/00451sn96 Alberta Biodiversity Monitoring Institute'),
(74613, 'https://ror.org/02k38kx21', 'en', 1, 'https://ror.org/02k38kx21 British Astronomical Association'),
(74614, 'https://ror.org/05d2a8p70', 'en', 1, 'https://ror.org/05d2a8p70 Golden West College'),
(74615, 'https://ror.org/02me45833', 'no_lang_code', 1, 'https://ror.org/02me45833 Plastal (Sweden)'),
(74616, 'https://ror.org/020v32r42', 'no_lang_code', 1, 'https://ror.org/020v32r42 Royal HaskoningDHV (Netherlands)'),
(74617, 'https://ror.org/02gv1pt92', 'no_lang_code', 1, 'https://ror.org/02gv1pt92 EVRAZ (United Kingdom)'),
(74618, 'https://ror.org/008n7jx79', 'en', 1, 'https://ror.org/008n7jx79 Institute of Sustainable Development, Environmental & Scientific Research'),
(74619, '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'),
(74620, 'https://ror.org/00e1xxm21', 'no_lang_code', 1, 'https://ror.org/00e1xxm21 Sogrape Vinhos (Portugal)'),
(74621, 'https://ror.org/051kay419', 'en', 1, 'https://ror.org/051kay419 Yandex School of Data Analysis Школа анализа Ганных'),
(74622, 'https://ror.org/02fzm7221', 'no_lang_code', 1, 'https://ror.org/02fzm7221 Gestamp (Spain)'),
(74623, 'https://ror.org/047dnad80', 'no_lang_code', 1, 'https://ror.org/047dnad80 Cemex (Mexico)'),
(74624, 'https://ror.org/0075t0c68', 'no_lang_code', 1, 'https://ror.org/0075t0c68 Wienerberger (Austria)'),
(74625, 'https://ror.org/014cg2q58', 'no_lang_code', 1, 'https://ror.org/014cg2q58 Atotech (Germany)'),
(74626, 'https://ror.org/05d236h53', 'no_lang_code', 1, 'https://ror.org/05d236h53 KRONOS (United States)'),
(74627, 'https://ror.org/01dj88q67', 'no_lang_code', 1, 'https://ror.org/01dj88q67 Besins Healthcare (Thailand)'),
(74628, 'https://ror.org/058zth179', 'no_lang_code', 1, 'https://ror.org/058zth179 Fiat Chrysler Automobiles (Japan)'),
(74629, 'https://ror.org/02vt89g81', 'no_lang_code', 1, 'https://ror.org/02vt89g81 Norgine (Netherlands)'),
(74630, 'https://ror.org/05hj93b82', 'no_lang_code', 1, 'https://ror.org/05hj93b82 HOBAS (Germany)'),
(74631, 'https://ror.org/04q3t9f84', 'no_lang_code', 1, 'https://ror.org/04q3t9f84 Saurer (Switzerland)'),
(74632, 'https://ror.org/059ze4t74', 'en', 1, 'https://ror.org/059ze4t74 German Data Forum Rat für Sozial- und Wirtschaftsdaten'),
(74633, 'https://ror.org/05sxwnt46', 'en', 1, 'https://ror.org/05sxwnt46 American Institute for Behavioral Research and Technology'),
(74634, 'https://ror.org/03q3a0475', 'no_lang_code', 1, 'https://ror.org/03q3a0475 General Electric (Netherlands)'),
(74635, 'https://ror.org/01rsndm95', 'en', 1, 'https://ror.org/01rsndm95 James Lind Institute'),
(74636, 'https://ror.org/0058ctf29', 'en', 1, 'https://ror.org/0058ctf29 Consortium of European Taxonomic Facilities'),
(74637, 'https://ror.org/045qf3j54', 'en', 1, 'https://ror.org/045qf3j54 Center for Security and Emerging Technology'),
(74638, 'https://ror.org/033ztm745', 'fr', 1, 'https://ror.org/033ztm745 Fondation Botnar'),
(74639, 'https://ror.org/01sah3s84', 'no_lang_code', 1, 'https://ror.org/01sah3s84 Mountain Data Group (United States)'),
(74640, 'https://ror.org/03kdbx663', 'en', 1, 'https://ror.org/03kdbx663 Hummingbird Monitoring Network'),
(74641, 'https://ror.org/046em8f15', 'en', 1, 'https://ror.org/046em8f15 Wyoming Game and Fish Department'),
(74642, 'https://ror.org/02758ch83', 'en', 1, 'https://ror.org/02758ch83 Alaska Wildlife Alliance'),
(74643, 'https://ror.org/039kcn609', 'en', 1, 'https://ror.org/039kcn609 Direktoratet for StrƄlevern og Atomtryggleik Norwegian Radiation and Nuclear Safety Authority'),
(74644, 'https://ror.org/05fh0et33', 'es', 1, 'https://ror.org/05fh0et33 Tierra Verde Naturaleza y Cultura Tierra Verde Nature and Culture'),
(74645, 'https://ror.org/03b57r242', 'no_lang_code', 1, 'https://ror.org/03b57r242 Himalayan Biodiversity Network'),
(74646, 'https://ror.org/0347csc19', 'en', 1, 'https://ror.org/0347csc19 East Foundation'),
(74647, 'https://ror.org/01dx2f060', 'fr', 1, 'https://ror.org/01dx2f060 Nature Environnement 17'),
(74648, 'https://ror.org/056bdp761', 'en', 1, 'https://ror.org/056bdp761 Indonesian Orthopaedic Association Perkumpulan Ahli Bedah Orthopaedi Indonesia'),
(74649, 'https://ror.org/00r2x0p54', 'no_lang_code', 1, 'https://ror.org/00r2x0p54 Biomark (United States)'),
(74650, 'https://ror.org/02xxmzs04', 'en', 1, 'https://ror.org/02xxmzs04 Wildlife Vets International'),
(74651, 'https://ror.org/03vjrde80', 'fr', 1, 'https://ror.org/03vjrde80 Institut Universitaire du Golfe de GuinƩe University Institute of the Gulf of Guinea'),
(74652, 'https://ror.org/01v7fn691', 'es', 1, 'https://ror.org/01v7fn691 Guyra Paraguay'),
(74653, 'https://ror.org/02f33m021', 'en', 1, 'https://ror.org/02f33m021 Carnegie Mellon University Africa'),
(74654, 'https://ror.org/02a54nf13', 'fr', 1, 'https://ror.org/02a54nf13 Ɖcole Nationale SupĆ©rieure de Statistique et d''Ɖconomie AppliquĆ©e'),
(74655, 'https://ror.org/03fcb4d35', 'fr', 1, 'https://ror.org/03fcb4d35 Pigier CƓte d''Ivoire'),
(74656, 'https://ror.org/02nv4cj15', 'no_lang_code', 1, 'https://ror.org/02nv4cj15 JSC R&D Center "Applied Logistics" (Russia) ŠŸŃ€ŠøŠŗŠ»Š°Š“Š½Š°Ń логистика'),
(74657, 'https://ror.org/04yzyf194', 'en', 1, 'https://ror.org/04yzyf194 Mahatma Gandhi University'),
(74658, 'https://ror.org/006vvm489', 'fr', 1, 'https://ror.org/006vvm489 Institut Universitaire d''Abidjan'),
(74659, 'https://ror.org/00ne4ap63', 'fr', 1, 'https://ror.org/00ne4ap63 UniversitƩ Tertiaire et Technologique-Lokko'),
(74660, 'https://ror.org/0358nsq19', 'fr', 1, 'https://ror.org/0358nsq19 UniversitƩ Pelefero Gon Coulibaly'),
(74661, 'https://ror.org/0510rka91', 'en', 1, 'https://ror.org/0510rka91 Adwa-Pan African University ዓድዋ į“įŠ• įŠ£įįˆŖįŠ« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(74662, 'https://ror.org/02k9trd04', 'en', 1, 'https://ror.org/02k9trd04 Pan African Institute for Development'),
(74663, 'https://ror.org/001q6ph30', 'en', 1, 'https://ror.org/001q6ph30 Barajas Clinic ClĆ­nica Barajas'),
(74664, 'https://ror.org/01radym16', 'en', 1, 'https://ror.org/01radym16 Institute of Agro-Products Processing Science and Technology äø­å›½å†œäøšē§‘å­¦é™¢å†œäŗ§å“åŠ å·„ę‰€'),
(74665, 'https://ror.org/05y77as28', 'no_lang_code', 1, 'https://ror.org/05y77as28 University Medical Pharmaceuticals (United States)'),
(74666, 'https://ror.org/0238awh09', 'no_lang_code', 1, 'https://ror.org/0238awh09 UNE Partnerships (Australia)'),
(74667, 'https://ror.org/01xpcj978', 'no_lang_code', 1, 'https://ror.org/01xpcj978 Severn Glocon Group (United Kingdom)'),
(74668, 'https://ror.org/01hzs1h88', 'no_lang_code', 1, 'https://ror.org/01hzs1h88 Universalbeton Heringen (Germany)'),
(74669, 'https://ror.org/04w8sxm43', 'en', 1, 'https://ror.org/04w8sxm43 University Hospitals of Derby and Burton NHS Foundation Trust'),
(74670, 'https://ror.org/020cha924', 'no_lang_code', 1, 'https://ror.org/020cha924 Universal-Kugellager-Fabrik (Germany)'),
(74671, 'https://ror.org/04yhhm579', 'no_lang_code', 1, 'https://ror.org/04yhhm579 Universal Music Group (United States)'),
(74672, 'https://ror.org/036q44x34', 'en', 1, 'https://ror.org/036q44x34 Babylon Health'),
(74673, 'https://ror.org/048gb8620', 'es', 1, 'https://ror.org/048gb8620 Centro Tecnológico Avanzado de La Piedra'),
(74674, 'https://ror.org/02wcq1q49', 'es', 1, 'https://ror.org/02wcq1q49 Fundacio Investigacio Hospital General Universitari De Valencia'),
(74675, 'https://ror.org/04730gw90', 'en', 1, 'https://ror.org/04730gw90 Marine Technical College ęµ·ęŠ€å¤§å­¦ę ”'),
(74676, 'https://ror.org/00zev5680', 'fr', 1, 'https://ror.org/00zev5680 Agitel-Formation'),
(74677, 'https://ror.org/044r8r947', 'no_lang_code', 1, 'https://ror.org/044r8r947 Ghana Institute of Languages'),
(74678, 'https://ror.org/02ghmtw61', 'en', 1, 'https://ror.org/02ghmtw61 Loyola University of Congo UniversitƩ Loyola du Congo'),
(74679, 'https://ror.org/00f330z90', 'en', 1, 'https://ror.org/00f330z90 Poma International Business University'),
(74680, 'https://ror.org/02yh27171', 'en', 1, 'https://ror.org/02yh27171 Edexcel University Institut Universitaire Edexcel du BƩnin'),
(74681, 'https://ror.org/0282sdt33', 'fr', 1, 'https://ror.org/0282sdt33 African University For Cooperative Development UniversitƩ Africaine de DƩveloppement CoopƩratif'),
(74682, 'https://ror.org/03qb80p98', 'fr', 1, 'https://ror.org/03qb80p98 New Dawn University UniversitƩ Aube Nouvelle'),
(74683, 'https://ror.org/03sd2sw82', 'no_lang_code', 1, 'https://ror.org/03sd2sw82 Stella Maris Polytechnic'),
(74684, 'https://ror.org/030zkp092', 'pt', 1, 'https://ror.org/030zkp092 Instituto Superior de Ciências de Educação à Distância'),
(74685, 'https://ror.org/02ngq1848', 'en', 1, 'https://ror.org/02ngq1848 DMI-St. John the Baptist University'),
(74686, 'https://ror.org/0419b0d30', 'en', 1, 'https://ror.org/0419b0d30 Abrar University Ų¬Ų§Ł…Ų¹Ų© Ų£ŲØŲ±Ų§Ų±'),
(74687, 'https://ror.org/01zmbg994', 'en', 1, 'https://ror.org/01zmbg994 Plasma University'),
(74688, 'https://ror.org/054qz6938', 'fr', 1, 'https://ror.org/054qz6938 Ɖcole de Gouvernance et d''Ɖconomie de Rabat'),
(74689, 'https://ror.org/00zpwvr27', 'en', 1, 'https://ror.org/00zpwvr27 Horseed International University'),
(74690, 'https://ror.org/018saep26', 'fr', 1, 'https://ror.org/018saep26 Ɖcole de Formation aux CarriĆØres de SantĆ©'),
(74691, 'https://ror.org/05cteqc05', 'en', 1, 'https://ror.org/05cteqc05 Somali International University'),
(74692, 'https://ror.org/01t876c68', 'en', 1, 'https://ror.org/01t876c68 Hormuud University'),
(74693, 'https://ror.org/02q4zda14', 'en', 1, 'https://ror.org/02q4zda14 Derby College'),
(74694, 'https://ror.org/02ddsx922', 'fr', 1, 'https://ror.org/02ddsx922 Institut SupƩrieur de l''Informatique et de Gestion'),
(74695, 'https://ror.org/04gfkf394', 'en', 1, 'https://ror.org/04gfkf394 National Centre for Clinical Research on Emerging Drugs'),
(74696, 'https://ror.org/044ydn458', 'en', 1, 'https://ror.org/044ydn458 Brazilian Institute of Neuroscience and Neurotechnology Instituto Brasileiro de NeurociĆŖncia e Neurotecnologia'),
(74697, 'https://ror.org/0366hg892', 'en', 1, 'https://ror.org/0366hg892 Zambia Forestry College'),
(74698, 'https://ror.org/05ervsk64', 'en', 1, 'https://ror.org/05ervsk64 Supershine University'),
(74699, 'https://ror.org/0278qhr30', 'en', 1, 'https://ror.org/0278qhr30 Northlake Behavioral Health System'),
(74700, 'https://ror.org/02bkncc34', 'en', 1, 'https://ror.org/02bkncc34 The Egyptian Society of Hematology and Research Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© لأمراض الدم ŁˆŲ§Ł„ŲØŲ­ŁˆŲ«'),
(74701, 'https://ror.org/054tr5c63', 'en', 1, 'https://ror.org/054tr5c63 Center for Inherited Blood Disorders'),
(74702, 'https://ror.org/02zyr1680', 'nl', 1, 'https://ror.org/02zyr1680 Beatrix Kinderziekenhuis'),
(74703, 'https://ror.org/03j5g5d55', 'nl', 1, 'https://ror.org/03j5g5d55 De Kinderkliniek'),
(74704, 'https://ror.org/02xmm1048', 'nl', 1, 'https://ror.org/02xmm1048 Willem-Alexander Kinderziekenhuis'),
(74705, 'https://ror.org/05yf3p710', 'en', 1, 'https://ror.org/05yf3p710 Egyptian Society of Laboratory Medicine Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© للطب المعملى'),
(74706, 'https://ror.org/046qhgy77', 'no_lang_code', 1, 'https://ror.org/046qhgy77 4D Pharma (United Kingdom)'),
(74707, 'https://ror.org/05br03w78', 'no_lang_code', 1, 'https://ror.org/05br03w78 Pflüger (Germany)'),
(74708, 'https://ror.org/006nx0g64', 'no_lang_code', 1, 'https://ror.org/006nx0g64 6 Dimensions Capital (United States)'),
(74709, 'https://ror.org/044t1vj04', 'no_lang_code', 1, 'https://ror.org/044t1vj04 ABEnzymes (Germany)'),
(74710, 'https://ror.org/01at1hy26', 'no_lang_code', 1, 'https://ror.org/01at1hy26 Amazentis (Switzerland)'),
(74711, 'https://ror.org/01r1pft76', 'no_lang_code', 1, 'https://ror.org/01r1pft76 Ambrx (United States)'),
(74712, 'https://ror.org/015vyg314', 'en', 1, 'https://ror.org/015vyg314 The National Institute of Neuromotor System المعهد Ų§Ł„Ł‚ŁˆŁ…ŁŠ للجهاز Ų§Ł„Ų­Ų±ŁƒŁŠ Ų§Ł„Ų¹ŲµŲØŁŠ'),
(74713, 'https://ror.org/00xr96s24', 'no_lang_code', 1, 'https://ror.org/00xr96s24 AIR Worldwide (United States)'),
(74714, 'https://ror.org/008h8bh21', 'no_lang_code', 1, 'https://ror.org/008h8bh21 Astellas Pharma (China) å®‰ę–Æę³°ę„åˆ¶čÆ'),
(74715, 'https://ror.org/049d04r12', 'no_lang_code', 1, 'https://ror.org/049d04r12 Arrakis Therapeutics (United States)'),
(74716, 'https://ror.org/03skc1w23', 'no_lang_code', 1, 'https://ror.org/03skc1w23 Boehringer Ingelheim (Philippines)'),
(74717, 'https://ror.org/00x27fn54', 'no_lang_code', 1, 'https://ror.org/00x27fn54 Advania (Sweden)'),
(74718, 'https://ror.org/04vmth013', 'no_lang_code', 1, 'https://ror.org/04vmth013 Sensorion (France)'),
(74719, 'https://ror.org/020cadp55', 'no_lang_code', 1, 'https://ror.org/020cadp55 Urkund (Sweden)'),
(74720, 'https://ror.org/03x1nzy67', 'no_lang_code', 1, 'https://ror.org/03x1nzy67 NHN (South Korea) ģ—”ģ—ģ“ģ¹˜ģ—” ģ£¼ģ‹ķšŒģ‚¬'),
(74721, 'https://ror.org/05hpj1j78', 'en', 1, 'https://ror.org/05hpj1j78 Egyptian Engineers Syndicate نقابة Ų§Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(74722, 'https://ror.org/015xh0s12', 'en', 1, 'https://ror.org/015xh0s12 Biosciences Research Support Foundation'),
(74723, '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'),
(74724, 'https://ror.org/01rtttn28', 'en', 1, 'https://ror.org/01rtttn28 AINET Association of English Teachers'),
(74725, 'https://ror.org/05ccdc018', 'en', 1, 'https://ror.org/05ccdc018 Asociación Colombiana de Cirugía Colombian Association of Surgery'),
(74726, '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'),
(74727, 'https://ror.org/02ahhqv73', 'es', 1, 'https://ror.org/02ahhqv73 Asociación Colombiana de Facultades de Ingeniería Association of Colombian Faculties of Engineering'),
(74728, 'https://ror.org/05wvw5722', 'es', 1, 'https://ror.org/05wvw5722 Asociación Colombiana de Gastroenterología Colombian Association of Gastroenterology'),
(74729, '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'),
(74730, 'https://ror.org/006efxj37', 'es', 1, 'https://ror.org/006efxj37 Confederación Latinoamericana de Religiosos Latin American and Caribbean Confederation of Religious Orders'),
(74731, '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'),
(74732, 'https://ror.org/02fcfe885', 'es', 1, 'https://ror.org/02fcfe885 Escuela Superior de Guerra'),
(74733, 'https://ror.org/03rf5a761', 'es', 1, 'https://ror.org/03rf5a761 Colombian Federation of Obstetrics and Gynecology Federación Colombiana de Obstetricia y Ginecología'),
(74734, 'https://ror.org/013deq447', 'es', 1, 'https://ror.org/013deq447 Federación de Aseguradores Colombianos Federation of Colombian Insurers'),
(74735, 'https://ror.org/04nagxm86', 'en', 1, 'https://ror.org/04nagxm86 Colombian Institute of Anthropology and History Instituto Colombiano de AntropologĆ­a e Historia'),
(74736, 'https://ror.org/04bphxp67', 'en', 1, 'https://ror.org/04bphxp67 Jesuit Centre for Theological Reflection'),
(74737, 'https://ror.org/02zsyv822', 'en', 1, 'https://ror.org/02zsyv822 Parliament of Ghana'),
(74738, 'https://ror.org/04py0zz23', 'nl', 1, 'https://ror.org/04py0zz23 Natural History Museum Brabant Natuurmuseum Brabant'),
(74739, 'https://ror.org/033xktk71', 'en', 1, 'https://ror.org/033xktk71 Electoral Institute for Sustainable Democracy in Africa'),
(74740, 'https://ror.org/03ss4v007', 'en', 1, 'https://ror.org/03ss4v007 Policy Center for the New South'),
(74741, 'https://ror.org/02bkvx667', 'en', 1, 'https://ror.org/02bkvx667 Research ICT Africa'),
(74742, 'https://ror.org/00ydhd623', 'en', 1, 'https://ror.org/00ydhd623 Institute for Global Dialogue'),
(74743, 'https://ror.org/010qfgc60', 'en', 1, 'https://ror.org/010qfgc60 African Heritage Institution'),
(74744, 'https://ror.org/04p79q706', 'en', 1, 'https://ror.org/04p79q706 African Centre for the Constructive Resolution of Disputes'),
(74745, 'https://ror.org/01yrg4t37', 'en', 1, 'https://ror.org/01yrg4t37 Partnership for Economic Policy'),
(74746, 'https://ror.org/00recnr76', 'en', 1, 'https://ror.org/00recnr76 Centre for Democracy and Development'),
(74747, 'https://ror.org/00dkekd57', 'en', 1, 'https://ror.org/00dkekd57 Institute of Economic Affairs, Ghana'),
(74748, 'https://ror.org/043mt5433', 'en', 1, 'https://ror.org/043mt5433 Organization for Social Science Research in Eastern and Southern Africa'),
(74749, 'https://ror.org/00exc4v70', 'fr', 1, 'https://ror.org/00exc4v70 Institut Amadeus'),
(74750, 'https://ror.org/05w9sm057', 'en', 1, 'https://ror.org/05w9sm057 Advocates Coalition for Development and Environment'),
(74751, 'https://ror.org/01v7g3220', 'en', 1, 'https://ror.org/01v7g3220 Flemish Advisory Council for Innovation & Enterprise Vlaamse Adviesraad voor Innoveren en Ondernemen'),
(74752, 'https://ror.org/02tygfm80', 'en', 1, 'https://ror.org/02tygfm80 Institute of Policy Analysis and Research - Rwanda'),
(74753, 'https://ror.org/03r9xsc20', 'en', 1, 'https://ror.org/03r9xsc20 Zambia Institute for Policy Analysis and Research'),
(74754, 'https://ror.org/04trsx227', 'en', 1, 'https://ror.org/04trsx227 Somali Institute for Development Research and Analysis'),
(74755, 'https://ror.org/01eg7wt17', 'en', 1, 'https://ror.org/01eg7wt17 Centre for Humanitarian Dialogue'),
(74756, 'https://ror.org/04rgtd041', 'en', 1, 'https://ror.org/04rgtd041 Horn Economic and Social Policy Institute'),
(74757, 'https://ror.org/01cxprv64', 'en', 1, 'https://ror.org/01cxprv64 Initiative Prospective Agricole et Rurale'),
(74758, 'https://ror.org/02xmsdw39', 'en', 1, 'https://ror.org/02xmsdw39 International Centre for Tax and Development'),
(74759, 'https://ror.org/00am9gf93', 'en', 1, 'https://ror.org/00am9gf93 Southern African Migration Programme'),
(74760, 'https://ror.org/0350qsk51', 'af', 1, 'https://ror.org/0350qsk51 Twende Mbele'),
(74761, 'https://ror.org/011se0j84', 'en', 1, 'https://ror.org/011se0j84 African Forum and Network on Debt and Development'),
(74762, 'https://ror.org/05ax1zq53', 'en', 1, 'https://ror.org/05ax1zq53 Kofi Annan International Peacekeeping Training Centre'),
(74763, 'https://ror.org/04mbzh492', 'en', 1, 'https://ror.org/04mbzh492 Nigerian Institute of International Affairs'),
(74764, 'https://ror.org/04edkgm69', 'en', 1, 'https://ror.org/04edkgm69 Centre for the Study of the Economies of Africa'),
(74765, 'https://ror.org/01zsz0b12', 'en', 1, 'https://ror.org/01zsz0b12 Institute for Justice and Reconciliation'),
(74766, 'https://ror.org/01camqg73', 'en', 1, 'https://ror.org/01camqg73 Tana High-Level Forum on Security in Africa'),
(74767, 'https://ror.org/00x8kv449', 'en', 1, 'https://ror.org/00x8kv449 Reality of Aid Africa Network'),
(74768, 'https://ror.org/0220w7a74', 'fr', 1, 'https://ror.org/0220w7a74 Centre D''analyse et de Recherche sur les Politiques Economiques et Sociales du Cameroun'),
(74769, 'https://ror.org/041n1pp62', 'en', 1, 'https://ror.org/041n1pp62 SouthSouthNorth'),
(74770, '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'),
(74771, 'https://ror.org/01sw43c97', 'no_lang_code', 1, 'https://ror.org/01sw43c97 Centre for Conflict Management and Transformation'),
(74772, 'https://ror.org/0539w9883', 'en', 1, 'https://ror.org/0539w9883 Eswatini Economic Policy Analysis and Research Centre'),
(74773, 'https://ror.org/01p27zg23', 'fr', 1, 'https://ror.org/01p27zg23 Centre Africain d’Etudes Internationales Diplomatiques Economiques et StratĆ©giques'),
(74774, 'https://ror.org/001zxk082', 'en', 1, 'https://ror.org/001zxk082 Centre for Natural Resource Governance'),
(74775, 'https://ror.org/02ce1xw45', 'fr', 1, 'https://ror.org/02ce1xw45 Groupe de Recherche et d’Analyse AppliquĆ©es pour le DĆ©veloppement'),
(74776, 'https://ror.org/03yqyyy69', 'en', 1, 'https://ror.org/03yqyyy69 United Nations Economic and Social Commission for Western Asia Ų§Ł„Ų„Ų³ŁƒŁˆŲ§ā€Ž'),
(74777, 'https://ror.org/02gahgd10', 'en', 1, 'https://ror.org/02gahgd10 The Initiative for Equal Rights'),
(74778, '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'),
(74779, 'https://ror.org/00b6x1q17', 'en', 1, 'https://ror.org/00b6x1q17 Hans Litten Archive Hans-Litten-Archiv'),
(74780, 'https://ror.org/0168c7237', 'en', 1, 'https://ror.org/0168c7237 State Public Scientific Technological Library of Siberian Branch of Russian Academy of Sciences Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŃƒŠ±Š»ŠøŃ‡Š½Š°Ń Š½Š°ŃƒŃ‡Š½Š¾-Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń библиотека Š”Šž Š ŠŠ'),
(74781, 'https://ror.org/01ky9e908', 'es', 1, 'https://ror.org/01ky9e908 Instituto Superior Tecnológico Loja'),
(74782, 'https://ror.org/04340dw19', 'en', 1, 'https://ror.org/04340dw19 euroCRIS'),
(74783, 'https://ror.org/00v8tjj64', 'de', 1, 'https://ror.org/00v8tjj64 Halle Zoo Zoologischer Garten Halle'),
(74784, 'https://ror.org/015bsfc29', 'en', 1, 'https://ror.org/015bsfc29 Network for Computational Modeling in the Social and Ecological Sciences'),
(74785, 'https://ror.org/05yawba35', 'en', 1, 'https://ror.org/05yawba35 Secretariat of Housing and Urban Development SecretarĆ­a de Desarrollo Urbano y Vivienda'),
(74786, 'https://ror.org/05tgamw04', 'en', 1, 'https://ror.org/05tgamw04 S.P.E.C.I.E.S.'),
(74787, 'https://ror.org/02fjjnc15', 'en', 1, 'https://ror.org/02fjjnc15 Interdisciplinary Earth Data Alliance'),
(74788, 'https://ror.org/00pwcvj19', 'de', 1, 'https://ror.org/00pwcvj19 Hamburg State and University Library Staats- und UniversitƤtsbibliothek Hamburg'),
(74789, 'https://ror.org/016728c22', 'no_lang_code', 1, 'https://ror.org/016728c22 Proteus (New Zealand)'),
(74790, 'https://ror.org/05s21y527', 'en', 1, 'https://ror.org/05s21y527 Sierra Leone Urban Research Centre'),
(74791, 'https://ror.org/01046sm89', 'es', 1, 'https://ror.org/01046sm89 Universidad Autónoma de Baja California Sur'),
(74792, 'https://ror.org/037fm3958', 'en', 1, 'https://ror.org/037fm3958 University of Halabja Ų²Ų§Ł†ŁƒŪ†Ł‰ Ł‡Ł‡ā€ŒŚµŁ‡ā€ŒŲØŲ¬Ł‡'),
(74793, 'https://ror.org/03t9s6f22', 'en', 1, 'https://ror.org/03t9s6f22 Forest Stewards Guild'),
(74794, 'https://ror.org/02xzap828', 'no_lang_code', 1, 'https://ror.org/02xzap828 Afrobarometer'),
(74795, 'https://ror.org/04qk3kg25', 'en', 1, 'https://ror.org/04qk3kg25 Defence Electronics Application Laboratory'),
(74796, 'https://ror.org/00wftwn37', 'en', 1, 'https://ror.org/00wftwn37 Defence Electronics Research Laboratory ą¤°ą¤•ą„ą¤·ą¤¾ ą¤‡ą¤²ą„‡ą¤•ą„ą¤Ÿą„ą¤°ą„‰ą¤Øą¤æą¤•ą„ą¤ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(74797, 'https://ror.org/02ydkfh68', 'en', 1, 'https://ror.org/02ydkfh68 Defence Institute of Bio-Energy Research'),
(74798, 'https://ror.org/00b0mey76', 'en', 1, 'https://ror.org/00b0mey76 Defence Institute of High Altitude Research'),
(74799, 'https://ror.org/02a8pvy33', 'en', 1, 'https://ror.org/02a8pvy33 Defence Institute of Psychological Research ą¤®ą¤Øą„‹ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ ą¤°ą¤•ą„ą¤·ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(74800, 'https://ror.org/0297zwz89', 'en', 1, 'https://ror.org/0297zwz89 Defence Materials and Stores Research and Development Establishment ą¤°ą¤•ą„ą¤·ą¤¾ ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ ą¤ą¤‚ą¤µ ą¤­ą¤£ą„ą¤”ą¤¾ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø तऄा विकास ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾'),
(74801, 'https://ror.org/02sfaqg86', 'en', 1, 'https://ror.org/02sfaqg86 Defence Scientific Information & Documentation Centre'),
(74802, 'https://ror.org/01yjnjk05', 'en', 1, 'https://ror.org/01yjnjk05 Defence Terrain Research Laboratory ą¤°ą¤•ą„ą¤·ą¤¾ ą¤­ą„‚-भाग और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(74803, 'https://ror.org/05ckan018', 'en', 1, 'https://ror.org/05ckan018 Gas Turbine Research Establishment'),
(74804, 'https://ror.org/05t826259', 'en', 1, 'https://ror.org/05t826259 Institute for Systems Studies & Analyses'),
(74805, 'https://ror.org/03c4qaa56', 'en', 1, 'https://ror.org/03c4qaa56 Institute of Technology Management ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø (ą¤†ą¤ˆ ą¤Ÿą„€ ą¤ą¤®) ą¤”ą„€ आर ą¤”ą„€ ओ, ą¤®ą¤øą„‚ą¤°ą„€'),
(74806, 'https://ror.org/03jy6ar87', 'en', 1, 'https://ror.org/03jy6ar87 Instruments Research & Development Establishment'),
(74807, 'https://ror.org/02gvtkt16', 'en', 1, 'https://ror.org/02gvtkt16 Integrated Test Range'),
(74808, 'https://ror.org/004tnhr10', 'en', 1, 'https://ror.org/004tnhr10 Laser Science & Technology Centre'),
(74809, 'https://ror.org/03vsxz193', 'en', 1, 'https://ror.org/03vsxz193 Advanced Centre for Energetic Materials ą¤Šą¤°ą„ą¤œą¤øą„ą¤µą„€ ą¤Ŗą¤¦ą¤¾ą¤°ą„ą¤„ ą¤‰ą¤Øą„ą¤Øą¤¤ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(74810, 'https://ror.org/02tbgn381', 'en', 1, 'https://ror.org/02tbgn381 Microwave Tube Research & Development Centre'),
(74811, 'https://ror.org/02a61vy29', 'en', 1, 'https://ror.org/02a61vy29 Advanced Numerical Research and Analysis Group ą¤‰ą¤Øą„ą¤Øą„ą¤¤ ą¤…ą¤‚ą¤•ą„€ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø तऄा ą¤µą¤æą¤¶ą„ą¤²ą„‡ą¤·ą¤£ ą¤øą¤®ą„‚ą¤¹'),
(74812, 'https://ror.org/04n881142', 'en', 1, 'https://ror.org/04n881142 Naval Materials Research Laboratory'),
(74813, 'https://ror.org/017kv7q60', 'en', 1, 'https://ror.org/017kv7q60 Naval Physical & Oceanographic Laboratory'),
(74814, 'https://ror.org/02szjr188', 'en', 1, 'https://ror.org/02szjr188 Naval Science & Technological Laboratory'),
(74815, 'https://ror.org/0179ktw44', 'en', 1, 'https://ror.org/0179ktw44 Advanced Systems Laboratory ą¤‰ą¤Øą„ą¤Øą¤¤ ą¤Ŗą„ą¤°ą¤£ą¤¾ą¤²ą„€ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(74816, 'https://ror.org/04wcs7k46', 'en', 1, 'https://ror.org/04wcs7k46 Proof & Experimental Establishment ą¤Ŗą„ą¤°ą„‚ą¤« ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¾ą¤¤ą„ą¤®ą¤• संगठन'),
(74817, 'https://ror.org/00wethk75', 'en', 1, 'https://ror.org/00wethk75 Research & Development Establishment (Engrs.) ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø आणि विकास ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾ ą¤‡ą¤‚ą¤œą¤æą¤Øą¤æą¤Æą¤°ą„ą¤ø'),
(74818, 'https://ror.org/05583vn45', 'en', 1, 'https://ror.org/05583vn45 Aerial Delivery Research and Development Establishment हवाई ą¤”ą¤æą¤²ą„€ą¤µą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(74819, 'https://ror.org/03mw5zj47', 'en', 1, 'https://ror.org/03mw5zj47 Research Centre Imarat ą°°ą±€ą°øą±†ą°°ą±ą°šą± ą°øą±†ą°‚ą°Ÿą°°ą± ą°‡ą°®ą°¾ą°°ą°¾ą°¤ą±'),
(74820, 'https://ror.org/02rpzt041', 'en', 1, 'https://ror.org/02rpzt041 Scientific Analysis Group'),
(74821, 'https://ror.org/003e1fb38', 'no_lang_code', 1, 'https://ror.org/003e1fb38 Snow & Avalanche Study Estt ą¤øą¤¾ą¤øą„‡ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(74822, 'https://ror.org/005e5y372', 'en', 1, 'https://ror.org/005e5y372 Aeronautical Development Establishment ą¤µą„ˆą¤®ą¤¾ą¤Øą¤æą¤•ą„€ विकास ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø ą²ą²°ą³†ą³‚ą²Øą²¾ą²Ÿą²æą²•ą²²ą³ ą²”ą³†ą²µą²²ą²Ŗą³ą²®ą³†ą²‚ą²Ÿą³ ą²Žą²øą³ą²Ÿą²¾ą²¬ą³ą²²ą²æą²·ą³ą²®ą³†ą²‚ą²Ÿą³'),
(74823, 'https://ror.org/00c20xw32', 'en', 1, 'https://ror.org/00c20xw32 Terminal Ballistics Research Laboratory'),
(74824, 'https://ror.org/00vhhsw45', 'en', 1, 'https://ror.org/00vhhsw45 Vehicles Research Development Establishment'),
(74825, 'https://ror.org/020dm9j49', 'en', 1, 'https://ror.org/020dm9j49 Armaments Research Board ą¤†ą¤Æą„ą¤§ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤¬ą„‹ą¤°ą„ą¤”'),
(74826, 'https://ror.org/035mr2h79', 'en', 1, 'https://ror.org/035mr2h79 Centre for Military Airworthiness and Certification ą¤øą„‡ą¤Øą¤¾ ą¤‰ą„œą¤Øą¤Æą„‹ą¤—ą„ą¤Æą¤¤ą¤¾ और ą¤Ŗą„ą¤°ą¤®ą¤¾ą¤£ą„€ą¤•ą¤°ą¤£ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(74827, 'https://ror.org/00ewyxm56', 'en', 1, 'https://ror.org/00ewyxm56 Centre for Air Borne System ą¤µą¤¾ą¤Æą„ą¤µą¤¾ą¤¹ą¤æą¤¤ ą¤Ŗą„ą¤°ą¤£ą¤¾ą¤²ą„€ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(74828, 'https://ror.org/01xnbq218', 'en', 1, 'https://ror.org/01xnbq218 Centre for Artificial Intelligence and Robotics ą¤•ą„ƒą¤¤ą„ą¤°ą¤æą¤® ą¤œą„ą¤žą¤¾ą¤Ø तऄा ą¤°ą„‹ą¤¬ą„‹ą¤Ÿą¤æą¤•ą„€ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(74829, 'https://ror.org/01j60ss54', 'es', 1, 'https://ror.org/01j60ss54 Asociación Jardín BotÔnico La Laguna'),
(74830, 'https://ror.org/0500v6t47', 'en', 1, 'https://ror.org/0500v6t47 Centre for Fire, Explosive and Environment Safety ą¤…ą¤—ą„ą¤Øą¤æ, ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤°ą¤£ तऄा ą¤µą¤æą¤øą„ą¤«ą„‹ą¤Ÿą¤• ą¤øą„ą¤°ą¤•ą„ą¤·ą¤¾ ą¤•ą„‡ą¤‚ą¤¦'),
(74831, 'https://ror.org/00e1em465', 'en', 1, 'https://ror.org/00e1em465 Centre for Personnel Talent Management ą¤•ą¤¾ą¤°ą„ą¤®ą¤æą¤• ą¤Ŗą„ą¤°ą¤¤ą¤æą¤­ą¤¾ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(74832, 'https://ror.org/055fwv607', 'en', 1, 'https://ror.org/055fwv607 Combat Vehicles Research and Development Establishment ą¤øą¤‚ą¤—ą„ą¤°ą¤¾ą¤® वाहन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø तऄा विकास ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Ø'),
(74833, 'https://ror.org/02k1mww18', 'en', 1, 'https://ror.org/02k1mww18 Defence Avionics Research Establishment ą¤°ą¤•ą„ą¤·ą¤¾ ą¤µą„ˆą¤®ą¤¾ą¤Øą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾'),
(74834, 'https://ror.org/00kc5p198', 'en', 1, 'https://ror.org/00kc5p198 Defence Bioengineering and Electromedical Laboratory ą¤°ą¤•ą„ą¤·ą¤¾ ą¤œą„ˆą¤µ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ और ą¤µą¤æą¤¦ą„ą¤Æą„ą¤¤ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤•ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(74835, 'https://ror.org/00gj56b42', 'en', 1, 'https://ror.org/00gj56b42 Friends of Rosie Children''s Cancer Research Fund'),
(74836, 'https://ror.org/023wh8b50', 'en', 1, 'https://ror.org/023wh8b50 Public Health Scotland'),
(74837, 'https://ror.org/01qw4g764', 'no_lang_code', 1, 'https://ror.org/01qw4g764 Mitsui (Japan) äø‰äŗ•ć‚°ćƒ«ćƒ¼ćƒ—'),
(74838, 'https://ror.org/01tbnxe16', 'en', 1, 'https://ror.org/01tbnxe16 BRIQ Institute on Behavior and Inequality'),
(74839, 'https://ror.org/01bd30j68', 'en', 1, 'https://ror.org/01bd30j68 Academy of Law Management of the Federal Penal Service of Russia ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ права Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š¤Š”Š˜Š'),
(74840, 'https://ror.org/01ennef75', 'en', 1, 'https://ror.org/01ennef75 MiMER Centre'),
(74841, 'https://ror.org/040ep5714', 'no_lang_code', 1, 'https://ror.org/040ep5714 Therabel (Netherlands)'),
(74842, 'https://ror.org/05eexsd91', 'no_lang_code', 1, 'https://ror.org/05eexsd91 Volition (Belgium)'),
(74843, 'https://ror.org/056tqe525', 'no_lang_code', 1, 'https://ror.org/056tqe525 Volition (United Kingdom)'),
(74844, 'https://ror.org/03mp7ed76', 'no_lang_code', 1, 'https://ror.org/03mp7ed76 Volition (United States)'),
(74845, 'https://ror.org/05ekw4q84', 'no_lang_code', 1, 'https://ror.org/05ekw4q84 Volition (Singapore)');
INSERT INTO `rors` VALUES
(74846, 'https://ror.org/0028eeh32', 'en', 1, 'https://ror.org/0028eeh32 Electronics and Radar Development Establishment ą²Žą²²ą³†ą²•ą³ą²Ÿą³ą²°ą²¾ą²Øą²æą²•ą³ą²øą³ ą²°ą³†ą²”ą²¾ą²°ą³ ą²”ą³†ą²µą²²ą²Ŗą³ą²®ą³†ą²‚ą²Ÿą³ ą²Žą²øą³ą²Ÿą²¾ą²¬ą³ą²²ą²æą²·ą³ą²®ą³†ą²‚ą²Ÿą³'),
(74847, 'https://ror.org/02bh93636', 'no_lang_code', 1, 'https://ror.org/02bh93636 Holtzbrinck Publishing Group (Germany)'),
(74848, 'https://ror.org/04gswd735', 'en', 1, 'https://ror.org/04gswd735 Institute of Medical Information - CAMS'),
(74849, 'https://ror.org/00fkq8j89', 'no_lang_code', 1, 'https://ror.org/00fkq8j89 ThrustMe (France)'),
(74850, 'https://ror.org/03w48ac58', 'no_lang_code', 1, 'https://ror.org/03w48ac58 Novo Nordisk (Mexico)'),
(74851, 'https://ror.org/02dkg4b27', 'no_lang_code', 1, 'https://ror.org/02dkg4b27 Kayser Automotive (Germany)'),
(74852, 'https://ror.org/018t24x84', 'en', 1, 'https://ror.org/018t24x84 Centre for Research and Information on Substance Abuse'),
(74853, 'https://ror.org/035evek51', 'no_lang_code', 1, 'https://ror.org/035evek51 Goldfinch Bio (United States)'),
(74854, 'https://ror.org/01ecxmq21', 'no_lang_code', 1, 'https://ror.org/01ecxmq21 Inari Agriculture (United States)'),
(74855, 'https://ror.org/041y61656', 'no_lang_code', 1, 'https://ror.org/041y61656 Heliae (United States)'),
(74856, 'https://ror.org/05wd66v55', 'no_lang_code', 1, 'https://ror.org/05wd66v55 Sanofi (Mexico)'),
(74857, 'https://ror.org/04dx8cb40', 'no_lang_code', 1, 'https://ror.org/04dx8cb40 Azotic Technologies (United Kingdom)'),
(74858, 'https://ror.org/0303cgc60', 'no_lang_code', 1, 'https://ror.org/0303cgc60 Ball Horticultural (United States)'),
(74859, 'https://ror.org/05dctta12', 'no_lang_code', 1, 'https://ror.org/05dctta12 Eurofarma (Brazil)'),
(74860, 'https://ror.org/046v1a544', 'no_lang_code', 1, 'https://ror.org/046v1a544 Bejo Zaden (Netherlands)'),
(74861, 'https://ror.org/006xv9y11', 'no_lang_code', 1, 'https://ror.org/006xv9y11 Haim Bio (South Korea)'),
(74862, 'https://ror.org/0263fkh30', 'no_lang_code', 1, 'https://ror.org/0263fkh30 Forma Therapeutics (United States)'),
(74863, 'https://ror.org/040k92z84', 'no_lang_code', 1, 'https://ror.org/040k92z84 Sanofi (Turkey)'),
(74864, 'https://ror.org/00mwqgc26', 'no_lang_code', 1, 'https://ror.org/00mwqgc26 Anocca (Sweden)'),
(74865, 'https://ror.org/006jfnq36', 'en', 1, 'https://ror.org/006jfnq36 American Farm Bureau Federation'),
(74866, 'https://ror.org/00jsec129', 'en', 1, 'https://ror.org/00jsec129 PƤdagogische Hochschule Oberƶsterreich University of Education Upper Austria'),
(74867, 'https://ror.org/00j0gr892', 'en', 1, 'https://ror.org/00j0gr892 Women''s Coalition of Zimbabwe'),
(74868, 'https://ror.org/00be0m967', 'en', 1, 'https://ror.org/00be0m967 United Nations University Institute for Sustainability and Peace å›½é€£å¤§å­¦ć‚µć‚¹ćƒ†ć‚¤ćƒŠćƒ“ćƒŖćƒ†ć‚£ćØå¹³å’Œē ”ē©¶ę‰€'),
(74869, 'https://ror.org/03xp99m49', 'en', 1, 'https://ror.org/03xp99m49 Institute for Integrated Management of Material Fluxes and of Resources'),
(74870, 'https://ror.org/040ac0g28', 'en', 1, 'https://ror.org/040ac0g28 University of Civil Protection Университет гражГанской защиты МЧД Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(74871, 'https://ror.org/057g8xr12', 'es', 1, 'https://ror.org/057g8xr12 Colección Ornitológica Phelps'),
(74872, 'https://ror.org/05t20pg33', 'en', 1, 'https://ror.org/05t20pg33 Institute for Natural Resources in Africa'),
(74873, 'https://ror.org/02e4kkg71', 'en', 1, 'https://ror.org/02e4kkg71 ProMedica Monroe Regional Hospital'),
(74874, 'https://ror.org/0217dn713', 'no_lang_code', 1, 'https://ror.org/0217dn713 Novanta (United States)'),
(74875, 'https://ror.org/02xf4n450', 'no_lang_code', 1, 'https://ror.org/02xf4n450 IEF-Werner (Germany)'),
(74876, 'https://ror.org/02fm9ey65', 'de', 1, 'https://ror.org/02fm9ey65 Mainzer Zentrum für Digitalität in den Geistes- und Kulturwissenschaften'),
(74877, 'https://ror.org/011jkz145', 'en', 1, 'https://ror.org/011jkz145 International Federation of Surveyors'),
(74878, 'https://ror.org/03rs4qr46', 'no_lang_code', 1, 'https://ror.org/03rs4qr46 MIMOT (Germany)'),
(74879, 'https://ror.org/04z5zpe30', 'en', 1, 'https://ror.org/04z5zpe30 United States Agricultural Information Network'),
(74880, 'https://ror.org/045rr1351', 'en', 1, 'https://ror.org/045rr1351 Alabama Library Association'),
(74881, 'https://ror.org/00rs9dy63', 'no_lang_code', 1, 'https://ror.org/00rs9dy63 Advanced Energy (United States)'),
(74882, 'https://ror.org/02cytaa95', 'en', 1, 'https://ror.org/02cytaa95 Islamic Azad University of Chalous دانؓگاه Ų¢Ų²Ų§ŲÆ Ś†Ų§Ł„ŁˆŲ³'),
(74883, 'https://ror.org/05a2cfm07', 'en', 1, 'https://ror.org/05a2cfm07 Islamic Azad University, Damghan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد دامغان'),
(74884, 'https://ror.org/05r6qy592', 'en', 1, 'https://ror.org/05r6qy592 Islamic Azad University Ilam Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§ŪŒŁ„Ų§Ł…'),
(74885, 'https://ror.org/04zdgqb89', 'en', 1, 'https://ror.org/04zdgqb89 Islamic Azad University Islamshahr Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد اسلامؓهر'),
(74886, 'https://ror.org/03aa31r16', 'en', 1, 'https://ror.org/03aa31r16 Islamic Azad University, Khorramabad Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų®Ų±Ł…ā€ŒŲ¢ŲØŲ§ŲÆ'),
(74887, 'https://ror.org/04w2yhr49', 'en', 1, 'https://ror.org/04w2yhr49 Islamic Azad University, Shoushtar Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓوؓتر'),
(74888, 'https://ror.org/01am3pw68', 'en', 1, 'https://ror.org/01am3pw68 Islamic Azad University, Zahedan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد زاهدان'),
(74889, 'https://ror.org/05pjhgh49', 'en', 1, 'https://ror.org/05pjhgh49 Centre for Research and Development'),
(74890, 'https://ror.org/01kfq1x58', 'en', 1, 'https://ror.org/01kfq1x58 Islamic Azad University, Abhar Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ابهر'),
(74891, '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'),
(74892, 'https://ror.org/00y16bh55', 'en', 1, 'https://ror.org/00y16bh55 Islamic Azad University, Ashtian Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų¢Ų“ŲŖŁŠŲ§Ł†'),
(74893, 'https://ror.org/05343ec73', 'en', 1, 'https://ror.org/05343ec73 Islamic Azad University, Azadshahr Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ آزادؓهر'),
(74894, 'https://ror.org/03hhrzm12', 'en', 1, 'https://ror.org/03hhrzm12 Islamic Azad University, Bushehr Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد ŲØŁˆŲ“Ł‡Ų±'),
(74895, 'https://ror.org/01j1q9a64', 'en', 1, 'https://ror.org/01j1q9a64 International Work Group for Indigenous Affairs'),
(74896, 'https://ror.org/00crw9046', 'en', 1, 'https://ror.org/00crw9046 Islamic Azad University, Estahban Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد استهبان'),
(74897, 'https://ror.org/00veca956', 'en', 1, 'https://ror.org/00veca956 Islamic Azad University, Firuzabad Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد فیروزآباد'),
(74898, 'https://ror.org/00gc85q68', 'es', 1, 'https://ror.org/00gc85q68 Corporación de Estudios Sociales y Educación'),
(74899, 'https://ror.org/00z6hkq67', 'es', 1, 'https://ror.org/00z6hkq67 Tierra'),
(74900, 'https://ror.org/02k34sh32', 'en', 1, 'https://ror.org/02k34sh32 Islamic Azad University, Jiroft Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد جیرفت'),
(74901, 'https://ror.org/02phdp391', 'en', 1, 'https://ror.org/02phdp391 California Fire Science Consortium'),
(74902, 'https://ror.org/00y5vq715', 'en', 1, 'https://ror.org/00y5vq715 Brennan Center for Justice'),
(74903, 'https://ror.org/038bemd25', 'en', 1, 'https://ror.org/038bemd25 Islamic Azad University, Khoy Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد خوی'),
(74904, 'https://ror.org/00kw49k87', 'en', 1, 'https://ror.org/00kw49k87 Equal Justice Initiative'),
(74905, 'https://ror.org/047hrmf08', 'en', 1, 'https://ror.org/047hrmf08 Islamic Azad University, Larestan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد لارستان'),
(74906, 'https://ror.org/03f84d710', 'en', 1, 'https://ror.org/03f84d710 Islamic Azad University, Malayer Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ł„Ų§ŪŒŲ±'),
(74907, 'https://ror.org/02psd3416', 'en', 1, 'https://ror.org/02psd3416 Islamic Azad University, Nowshahr Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ś†Ų§Ł„ŁˆŲ³'),
(74908, 'https://ror.org/05cpg6260', 'no_lang_code', 1, 'https://ror.org/05cpg6260 Roche (Lebanon)'),
(74909, 'https://ror.org/02tnr6p29', 'no_lang_code', 1, 'https://ror.org/02tnr6p29 Roche (Tunisia)'),
(74910, 'https://ror.org/032syc365', 'en', 1, 'https://ror.org/032syc365 Islamic Azad University, Omidieh Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ł…ŪŒŲÆŪŒŁ‡'),
(74911, 'https://ror.org/022ca9x91', 'en', 1, 'https://ror.org/022ca9x91 Islamic Azad University, Shahr-e-Qods Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓهر قدس'),
(74912, 'https://ror.org/03nsj9897', 'en', 1, 'https://ror.org/03nsj9897 Islamic Azad University, Sirjan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų³ŪŒŲ±Ų¬Ų§Ł†'),
(74913, 'https://ror.org/03jg7pr54', 'no_lang_code', 1, 'https://ror.org/03jg7pr54 Roche (Nicaragua)'),
(74914, 'https://ror.org/05c66m157', 'no_lang_code', 1, 'https://ror.org/05c66m157 Roche (Bolivia)'),
(74915, 'https://ror.org/04gbzz966', 'no_lang_code', 1, 'https://ror.org/04gbzz966 Roche (Bosnia-Herzegovina)'),
(74916, 'https://ror.org/002g7k102', 'no_lang_code', 1, 'https://ror.org/002g7k102 Dascena (United States)'),
(74917, 'https://ror.org/05h9m3b45', 'no_lang_code', 1, 'https://ror.org/05h9m3b45 Roche (Turkey)'),
(74918, 'https://ror.org/050q8cm26', 'no_lang_code', 1, 'https://ror.org/050q8cm26 Roche (Chile)'),
(74919, 'https://ror.org/03836m928', 'no_lang_code', 1, 'https://ror.org/03836m928 Roche (Ecuador)'),
(74920, 'https://ror.org/05v9ym429', 'no_lang_code', 1, 'https://ror.org/05v9ym429 Roche (Norway)'),
(74921, 'https://ror.org/00t7w7h84', 'fr', 1, 'https://ror.org/00t7w7h84 Le Soleil dans la Main'),
(74922, 'https://ror.org/04hewny41', 'nl', 1, 'https://ror.org/04hewny41 Iridium Cancer Network Iridium Kankernetwerk'),
(74923, 'https://ror.org/00rm7zs53', 'de', 1, 'https://ror.org/00rm7zs53 Zug Cantonal Hospital Zuger Kantonsspital'),
(74924, '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'),
(74925, 'https://ror.org/00h539j16', 'en', 1, 'https://ror.org/00h539j16 Bavarian Research Institute for Digital Transformation Bayerisches Forschungsinstitut für digitale Transformation'),
(74926, 'https://ror.org/04yne6f58', 'fr', 1, 'https://ror.org/04yne6f58 Clinique GƩnƩrale-Beaulieu GƩnƩrale-Beaulieu Clinic'),
(74927, 'https://ror.org/05w3aay26', 'en', 1, 'https://ror.org/05w3aay26 Centre Emys Emys Center'),
(74928, 'https://ror.org/03gd99e09', 'en', 1, 'https://ror.org/03gd99e09 Center of Immunology Pierre Fabre Centre d’Immunologie Pierre Fabre'),
(74929, 'https://ror.org/02qt0fz52', 'no_lang_code', 1, 'https://ror.org/02qt0fz52 Landeswasserversorgung (Germany)'),
(74930, 'https://ror.org/04tnv7w23', 'fr', 1, 'https://ror.org/04tnv7w23 Ɖcole SupĆ©rieure Polytechnique d''Antsiranana'),
(74931, 'https://ror.org/049qy6v50', 'en', 1, 'https://ror.org/049qy6v50 Zimbabwe Council For Higher Education'),
(74932, 'https://ror.org/02j4jwp55', 'en', 1, 'https://ror.org/02j4jwp55 Lung Cancer Initiative of North Carolina'),
(74933, 'https://ror.org/05tbc9841', 'en', 1, 'https://ror.org/05tbc9841 Cluster of Excellence "Matters of Activity. Image Space Material"'),
(74934, 'https://ror.org/04m797435', 'no_lang_code', 1, 'https://ror.org/04m797435 Adelphi Consult (Germany)'),
(74935, 'https://ror.org/0435jsb33', 'no_lang_code', 1, 'https://ror.org/0435jsb33 22nd Century Group (United States)'),
(74936, 'https://ror.org/04bjznv82', 'no_lang_code', 1, 'https://ror.org/04bjznv82 3-D Matrix (Japan)'),
(74937, 'https://ror.org/042cmjn68', 'no_lang_code', 1, 'https://ror.org/042cmjn68 3Shape (Denmark)'),
(74938, 'https://ror.org/05e1qh004', 'no_lang_code', 1, 'https://ror.org/05e1qh004 3V Sigma (Italy)'),
(74939, 'https://ror.org/01n8zce53', 'no_lang_code', 1, 'https://ror.org/01n8zce53 AllaChem (United States)'),
(74940, 'https://ror.org/00n1nbv85', 'no_lang_code', 1, 'https://ror.org/00n1nbv85 Advanced BioNutrition (United States)'),
(74941, 'https://ror.org/01n494f92', 'no_lang_code', 1, 'https://ror.org/01n494f92 A-dec (United States)'),
(74942, 'https://ror.org/0358t2s53', 'no_lang_code', 1, 'https://ror.org/0358t2s53 Neurelis (United States)'),
(74943, 'https://ror.org/00hq78102', 'no_lang_code', 1, 'https://ror.org/00hq78102 A.M. Surgical (United States)'),
(74944, 'https://ror.org/037pppx71', 'no_lang_code', 1, 'https://ror.org/037pppx71 Alcami (United States)'),
(74945, 'https://ror.org/05mp6sd67', 'no_lang_code', 1, 'https://ror.org/05mp6sd67 Aap Implantate (Germany)'),
(74946, 'https://ror.org/00xbvdz81', 'en', 1, 'https://ror.org/00xbvdz81 Organisation of Islamic Cooperation منظمة Ų§Ł„ŲŖŲ¹Ų§ŁˆŁ† Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(74947, 'https://ror.org/0366qxk70', 'en', 1, 'https://ror.org/0366qxk70 Islamic World Educational, Scientific and Cultural Organization منظمة العالم Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ Ł„Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ©'),
(74948, 'https://ror.org/04v5c4294', 'en', 1, 'https://ror.org/04v5c4294 FAHRİ KAYAHAN AİLE SAĞLIĞI MERKEZİ Malatya Fahri Kayahan Health Care Center'),
(74949, 'https://ror.org/0322cev20', 'no_lang_code', 1, 'https://ror.org/0322cev20 Affectiva (United States)'),
(74950, 'https://ror.org/0422rck44', 'no_lang_code', 1, 'https://ror.org/0422rck44 Allied Healthcare Products (United States)'),
(74951, 'https://ror.org/00ssr5f77', 'no_lang_code', 1, 'https://ror.org/00ssr5f77 Alphatec Spine Approach Technologies (United States)'),
(74952, 'https://ror.org/05wd41k10', 'no_lang_code', 1, 'https://ror.org/05wd41k10 Altergon (Italy)'),
(74953, 'https://ror.org/02s8aez42', 'no_lang_code', 1, 'https://ror.org/02s8aez42 Amann Girrbach (Austria)'),
(74954, 'https://ror.org/016qkze89', 'no_lang_code', 1, 'https://ror.org/016qkze89 Achieve Life Sciences (United States)'),
(74955, 'https://ror.org/02sfqqf20', 'no_lang_code', 1, 'https://ror.org/02sfqqf20 ACP Japan (Japan) ę—„ęœ¬ć‚Øćƒ¼ć‚·ćƒ¼ćƒ”ćƒ¼'),
(74956, 'https://ror.org/041d7hq08', 'no_lang_code', 1, 'https://ror.org/041d7hq08 Advance (Japan)'),
(74957, 'https://ror.org/05621b753', 'no_lang_code', 1, 'https://ror.org/05621b753 Acrux (Australia)'),
(74958, 'https://ror.org/03bb5zx34', 'no_lang_code', 1, 'https://ror.org/03bb5zx34 Vactronix Scientific (United States)'),
(74959, 'https://ror.org/014bb9r42', 'no_lang_code', 1, 'https://ror.org/014bb9r42 ACS Dobfar (Italy)'),
(74960, 'https://ror.org/01swx2932', 'fr', 1, 'https://ror.org/01swx2932 Institut Catholique d''Arts et MƩtiers'),
(74961, 'https://ror.org/056m22n36', 'no_lang_code', 1, 'https://ror.org/056m22n36 Active Implants (United States)'),
(74962, 'https://ror.org/038mfrf56', 'no_lang_code', 1, 'https://ror.org/038mfrf56 Agile Therapeutics (United States)'),
(74963, 'https://ror.org/036spp047', 'no_lang_code', 1, 'https://ror.org/036spp047 AcuFocus (United States)'),
(74964, 'https://ror.org/00dyz4s77', 'no_lang_code', 1, 'https://ror.org/00dyz4s77 Acura Pharmaceuticals (United States)'),
(74965, 'https://ror.org/03qekz127', 'no_lang_code', 1, 'https://ror.org/03qekz127 Adare Pharma Solutions (United States)'),
(74966, 'https://ror.org/0575r9t98', 'no_lang_code', 1, 'https://ror.org/0575r9t98 Agriculture Victoria Services (Australia)'),
(74967, 'https://ror.org/01qqp2h35', 'no_lang_code', 1, 'https://ror.org/01qqp2h35 Amano Enzyme (Japan)'),
(74968, 'https://ror.org/029g9r930', 'no_lang_code', 1, 'https://ror.org/029g9r930 Adc Therapeutics (Switzerland)'),
(74969, 'https://ror.org/032stxf15', 'no_lang_code', 1, 'https://ror.org/032stxf15 Aderans (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‡ćƒ©ćƒ³ć‚¹'),
(74970, 'https://ror.org/0027p4q12', 'no_lang_code', 1, 'https://ror.org/0027p4q12 AIMM Therapeutics (Netherlands)'),
(74971, 'https://ror.org/02dkhsm53', 'no_lang_code', 1, 'https://ror.org/02dkhsm53 Admedes (Germany)'),
(74972, 'https://ror.org/00kcb8667', 'no_lang_code', 1, 'https://ror.org/00kcb8667 Airway Technologies (United States)'),
(74973, 'https://ror.org/03bnhf738', 'no_lang_code', 1, 'https://ror.org/03bnhf738 Ambu (Denmark)'),
(74974, 'https://ror.org/04hg6v996', 'no_lang_code', 1, 'https://ror.org/04hg6v996 Minerals Technologies (United States)'),
(74975, 'https://ror.org/00rjxfx39', 'no_lang_code', 1, 'https://ror.org/00rjxfx39 E-Techco Group (China)'),
(74976, 'https://ror.org/00wks3b32', 'no_lang_code', 1, 'https://ror.org/00wks3b32 RealTimePurity (United States)'),
(74977, 'https://ror.org/021933p29', 'no_lang_code', 1, 'https://ror.org/021933p29 RUA Life Sciences (United Kingdom)'),
(74978, 'https://ror.org/02jrz7m81', 'no_lang_code', 1, 'https://ror.org/02jrz7m81 Alber (Germany)'),
(74979, 'https://ror.org/02xs43q30', 'no_lang_code', 1, 'https://ror.org/02xs43q30 American Med Systems (United States)'),
(74980, 'https://ror.org/0369a2x50', 'no_lang_code', 1, 'https://ror.org/0369a2x50 Albumedix (United Kingdom)'),
(74981, 'https://ror.org/058kq6588', 'no_lang_code', 1, 'https://ror.org/058kq6588 Apeiron Biologics (Austria)'),
(74982, 'https://ror.org/01kk57e40', 'no_lang_code', 1, 'https://ror.org/01kk57e40 Agency for Medical Innovations (Austria)'),
(74983, 'https://ror.org/01a7sne14', 'no_lang_code', 1, 'https://ror.org/01a7sne14 Apex (Taiwan)'),
(74984, 'https://ror.org/015999a88', 'no_lang_code', 1, 'https://ror.org/015999a88 Amino Up (Japan) ćˆ±ć‚¢ćƒŸćƒŽć‚¢ćƒƒćƒ—'),
(74985, 'https://ror.org/05n44hh60', 'no_lang_code', 1, 'https://ror.org/05n44hh60 Vetter (Germany) Vetter Pharma-Fertigung'),
(74986, 'https://ror.org/01gawax11', 'no_lang_code', 1, 'https://ror.org/01gawax11 Appvion (United States)'),
(74987, 'https://ror.org/04nf5v644', 'no_lang_code', 1, 'https://ror.org/04nf5v644 Ampio Pharmaceuticals (United States)'),
(74988, 'https://ror.org/056gwgh96', 'no_lang_code', 1, 'https://ror.org/056gwgh96 Alcon (Switzerland)'),
(74989, 'https://ror.org/05cs0pa90', 'no_lang_code', 1, 'https://ror.org/05cs0pa90 Alfred E. Tiefenbacher (Germany)'),
(74990, 'https://ror.org/05j4fc609', 'no_lang_code', 1, 'https://ror.org/05j4fc609 Anges (Japan)'),
(74991, 'https://ror.org/01rkbgp30', 'no_lang_code', 1, 'https://ror.org/01rkbgp30 Angiochem (Canada)'),
(74992, 'https://ror.org/01rvva743', 'no_lang_code', 1, 'https://ror.org/01rvva743 Ancora Heart (United States)'),
(74993, 'https://ror.org/04jb5a756', 'no_lang_code', 1, 'https://ror.org/04jb5a756 DJO Global (United States)'),
(74994, 'https://ror.org/03vdkes06', 'no_lang_code', 1, 'https://ror.org/03vdkes06 Archimica (Italy)'),
(74995, 'https://ror.org/01t92qx25', 'no_lang_code', 1, 'https://ror.org/01t92qx25 Arcturus Therapeutics (United States)'),
(74996, 'https://ror.org/02se42q89', 'no_lang_code', 1, 'https://ror.org/02se42q89 Kraton (United States)'),
(74997, 'https://ror.org/007ns0839', 'no_lang_code', 1, 'https://ror.org/007ns0839 Arjo (Sweden)'),
(74998, 'https://ror.org/0241kq529', 'no_lang_code', 1, 'https://ror.org/0241kq529 Aquanova (Germany)'),
(74999, 'https://ror.org/00j08hk87', 'no_lang_code', 1, 'https://ror.org/00j08hk87 Adama (Israel) אדמה בע"×žā€Ž'),
(75000, 'https://ror.org/01m7xb285', 'no_lang_code', 1, 'https://ror.org/01m7xb285 Aquestive (United States)'),
(75001, 'https://ror.org/01cvr7569', 'no_lang_code', 1, 'https://ror.org/01cvr7569 Auven Therapeutics (United States)'),
(75002, 'https://ror.org/04ckt1019', 'no_lang_code', 1, 'https://ror.org/04ckt1019 Arkion Life Sciences (United States)'),
(75003, 'https://ror.org/02pf7bx90', 'no_lang_code', 1, 'https://ror.org/02pf7bx90 Arrow International (United States)'),
(75004, 'https://ror.org/01gdcm534', 'no_lang_code', 1, 'https://ror.org/01gdcm534 Arte (Japan)'),
(75005, 'https://ror.org/05v7bvm48', 'no_lang_code', 1, 'https://ror.org/05v7bvm48 Arthrosurface (United States)'),
(75006, 'https://ror.org/006kn2235', 'no_lang_code', 1, 'https://ror.org/006kn2235 Anova Corp (Vietnam)'),
(75007, 'https://ror.org/033571q03', 'no_lang_code', 1, 'https://ror.org/033571q03 Asahi Intecc (Japan) ęœę—„ć‚¤ćƒ³ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(75008, 'https://ror.org/02mbz3q09', 'no_lang_code', 1, 'https://ror.org/02mbz3q09 Kaman (United States)'),
(75009, 'https://ror.org/05tvnhf16', 'no_lang_code', 1, 'https://ror.org/05tvnhf16 Anthogyr (France)'),
(75010, 'https://ror.org/00vy6y387', 'no_lang_code', 1, 'https://ror.org/00vy6y387 Bard Access Systems (United States)'),
(75011, 'https://ror.org/022pvsb81', 'no_lang_code', 1, 'https://ror.org/022pvsb81 Ascendis Pharma (Denmark)'),
(75012, 'https://ror.org/00m0wp850', 'no_lang_code', 1, 'https://ror.org/00m0wp850 Ascensia Diabetes Care (Switzerland)'),
(75013, 'https://ror.org/05ervg403', 'no_lang_code', 1, 'https://ror.org/05ervg403 Bardy Diagnostics (United States)'),
(75014, 'https://ror.org/00q51ae51', 'no_lang_code', 1, 'https://ror.org/00q51ae51 BAROnova (United States)'),
(75015, 'https://ror.org/022nfrj09', 'no_lang_code', 1, 'https://ror.org/022nfrj09 Aspect Imaging (Israel)'),
(75016, 'https://ror.org/00t4ywr83', 'no_lang_code', 1, 'https://ror.org/00t4ywr83 Goodman (Japan) ę Ŗå¼ä¼šē¤¾ć‚°ćƒƒćƒ‰ćƒžćƒ³'),
(75017, 'https://ror.org/05df8jb72', 'no_lang_code', 1, 'https://ror.org/05df8jb72 Atlas Antibodies (Sweden)'),
(75018, 'https://ror.org/0483jfq80', 'no_lang_code', 1, 'https://ror.org/0483jfq80 Atlas Spine (United States)'),
(75019, 'https://ror.org/00cvsxf87', 'no_lang_code', 1, 'https://ror.org/00cvsxf87 Atom Medical (Japan)'),
(75020, 'https://ror.org/05m6hq950', 'no_lang_code', 1, 'https://ror.org/05m6hq950 Atrion Medical (United States)'),
(75021, 'https://ror.org/03k3t0n26', 'en', 1, 'https://ror.org/03k3t0n26 KDZ - Centre for Public Administration Research Zentrum für Verwaltungsforschung'),
(75022, 'https://ror.org/02awaab90', 'no_lang_code', 1, 'https://ror.org/02awaab90 Avinger (United States)'),
(75023, 'https://ror.org/02f8q7239', 'no_lang_code', 1, 'https://ror.org/02f8q7239 Autonomix Medical (United States)'),
(75024, 'https://ror.org/02mjdk963', 'no_lang_code', 1, 'https://ror.org/02mjdk963 Axelgaard Manufacturing (United States)'),
(75025, 'https://ror.org/01ra0cf82', 'no_lang_code', 1, 'https://ror.org/01ra0cf82 Axonics Modulation Technologies (United States)'),
(75026, 'https://ror.org/02cvw8c86', 'no_lang_code', 1, 'https://ror.org/02cvw8c86 Axsome Therapeutics (United States)'),
(75027, 'https://ror.org/05etzat70', 'no_lang_code', 1, 'https://ror.org/05etzat70 AYR (United Kingdom)'),
(75028, 'https://ror.org/05966vw37', 'no_lang_code', 1, 'https://ror.org/05966vw37 Bezwada Biomedical (United States)'),
(75029, 'https://ror.org/00pam4d71', 'no_lang_code', 1, 'https://ror.org/00pam4d71 Badger Licensing (United States)'),
(75030, 'https://ror.org/04h7sky50', 'no_lang_code', 1, 'https://ror.org/04h7sky50 BFKW (United States)'),
(75031, 'https://ror.org/03kq4dk33', 'no_lang_code', 1, 'https://ror.org/03kq4dk33 Bicycle Therapeutics (United Kingdom)'),
(75032, 'https://ror.org/02qk0qj12', 'no_lang_code', 1, 'https://ror.org/02qk0qj12 Biedermann Motech (Germany)'),
(75033, 'https://ror.org/01jxtbx65', 'no_lang_code', 1, 'https://ror.org/01jxtbx65 Biedermann Technologies (Germany)'),
(75034, 'https://ror.org/01a289t25', 'no_lang_code', 1, 'https://ror.org/01a289t25 Bien-Air Medical Technologies (Switzerland)'),
(75035, 'https://ror.org/00qv2zm13', 'en', 1, 'https://ror.org/00qv2zm13 Agricultural Research Service - Pacific West Area'),
(75036, 'https://ror.org/03sqy6516', 'en', 1, 'https://ror.org/03sqy6516 Agricultural Research Service - Plains Area'),
(75037, 'https://ror.org/01gwd8297', 'no_lang_code', 1, 'https://ror.org/01gwd8297 Bio Medic Data Systems (United States)'),
(75038, 'https://ror.org/04d1tk502', 'en', 1, 'https://ror.org/04d1tk502 Agricultural Research Service - Midwest Area'),
(75039, 'https://ror.org/04qr9ne10', 'en', 1, 'https://ror.org/04qr9ne10 Agricultural Research Service - Northeast Area'),
(75040, 'https://ror.org/02pfwxe49', 'en', 1, 'https://ror.org/02pfwxe49 Agricultural Research Service - Southeast Area'),
(75041, 'https://ror.org/01hpqfn25', 'en', 1, 'https://ror.org/01hpqfn25 IBM Research - United Kingdom'),
(75042, 'https://ror.org/004zpe866', 'en', 1, 'https://ror.org/004zpe866 Beltsville Human Nutrition Research Center'),
(75043, 'https://ror.org/03s936v76', 'en', 1, 'https://ror.org/03s936v76 Children''s Nutrition Research Center at Baylor College of Medicine'),
(75044, 'https://ror.org/05a5x4q14', 'no_lang_code', 1, 'https://ror.org/05a5x4q14 BioAtla (United States)'),
(75045, 'https://ror.org/01d0zz505', 'en', 1, 'https://ror.org/01d0zz505 Jean Mayer Human Nutrition Research Center on Aging'),
(75046, 'https://ror.org/01s016274', 'no_lang_code', 1, 'https://ror.org/01s016274 BioCardia (United States)'),
(75047, 'https://ror.org/00dx35m16', 'en', 1, 'https://ror.org/00dx35m16 Western Human Nutrition Research Center'),
(75048, 'https://ror.org/05jwyv945', 'no_lang_code', 1, 'https://ror.org/05jwyv945 Biocrine (Sweden)'),
(75049, 'https://ror.org/01mm5pq64', 'no_lang_code', 1, 'https://ror.org/01mm5pq64 Biocure (United States)'),
(75050, 'https://ror.org/02xx2e359', 'no_lang_code', 1, 'https://ror.org/02xx2e359 Benvenue Medical (United States)'),
(75051, 'https://ror.org/000ahf130', 'no_lang_code', 1, 'https://ror.org/000ahf130 Hillenbrand (United States)'),
(75052, 'https://ror.org/02z9t3v16', 'no_lang_code', 1, 'https://ror.org/02z9t3v16 BioDerm (United States)'),
(75053, 'https://ror.org/04fewxg30', 'no_lang_code', 1, 'https://ror.org/04fewxg30 Probility Media (United States)'),
(75054, 'https://ror.org/002rc3h45', 'no_lang_code', 1, 'https://ror.org/002rc3h45 BioInteractions (United Kingdom)'),
(75055, 'https://ror.org/05b46br83', 'no_lang_code', 1, 'https://ror.org/05b46br83 Biokine (Israel)'),
(75056, 'https://ror.org/00hgexf21', 'no_lang_code', 1, 'https://ror.org/00hgexf21 TranS1 (United States)'),
(75057, 'https://ror.org/057ht2493', 'no_lang_code', 1, 'https://ror.org/057ht2493 Biolase (United States)'),
(75058, 'https://ror.org/03wa63r81', 'no_lang_code', 1, 'https://ror.org/03wa63r81 Bioness (United States)'),
(75059, 'https://ror.org/03g3vwd67', 'no_lang_code', 1, 'https://ror.org/03g3vwd67 Bridge Of Nucleic Acids Chemistry (Japan)'),
(75060, 'https://ror.org/036c61m13', 'no_lang_code', 1, 'https://ror.org/036c61m13 BioQ Pharma (United States)'),
(75061, 'https://ror.org/043m06r15', 'no_lang_code', 1, 'https://ror.org/043m06r15 Bioquell (United Kingdom)'),
(75062, 'https://ror.org/03tn4px69', 'no_lang_code', 1, 'https://ror.org/03tn4px69 BVI (United States)'),
(75063, 'https://ror.org/015w8rd21', 'no_lang_code', 1, 'https://ror.org/015w8rd21 Bonesupport (Sweden)'),
(75064, 'https://ror.org/009498z64', 'no_lang_code', 1, 'https://ror.org/009498z64 Joint Active Systems (United States)'),
(75065, 'https://ror.org/0488tfs18', 'no_lang_code', 1, 'https://ror.org/0488tfs18 Broncus (United States)'),
(75066, 'https://ror.org/033rxqp12', 'no_lang_code', 1, 'https://ror.org/033rxqp12 Quad-C Management (United States)'),
(75067, 'https://ror.org/02aqk7720', 'no_lang_code', 1, 'https://ror.org/02aqk7720 Apyx Medical (United States)'),
(75068, 'https://ror.org/02r6j5z05', 'no_lang_code', 1, 'https://ror.org/02r6j5z05 Bruin Biometrics (United States)'),
(75069, 'https://ror.org/0241de231', 'no_lang_code', 1, 'https://ror.org/0241de231 Burcon (Canada)'),
(75070, 'https://ror.org/03whb2884', 'no_lang_code', 1, 'https://ror.org/03whb2884 Brasseler (Germany) Gebr. Brasseler'),
(75071, 'https://ror.org/04s47xe02', 'no_lang_code', 1, 'https://ror.org/04s47xe02 Breg (United States)'),
(75072, 'https://ror.org/00nq5xx94', 'no_lang_code', 1, 'https://ror.org/00nq5xx94 CMR Surgical (United Kingdom)'),
(75073, 'https://ror.org/00bsbpb39', 'no_lang_code', 1, 'https://ror.org/00bsbpb39 Cannuflow (United States)'),
(75074, 'https://ror.org/05psz3234', 'no_lang_code', 1, 'https://ror.org/05psz3234 Bridge Pharma (United States)'),
(75075, 'https://ror.org/04zqtqt31', 'no_lang_code', 1, 'https://ror.org/04zqtqt31 CAO Group (United States)'),
(75076, 'https://ror.org/03pddbz77', 'no_lang_code', 1, 'https://ror.org/03pddbz77 CapsoVision (United States)'),
(75077, 'https://ror.org/0209sxq95', 'no_lang_code', 1, 'https://ror.org/0209sxq95 Brightwake (United Kingdom)'),
(75078, 'https://ror.org/05e823q15', 'no_lang_code', 1, 'https://ror.org/05e823q15 Capsum (France)'),
(75079, 'https://ror.org/01h0vdv12', 'no_lang_code', 1, 'https://ror.org/01h0vdv12 Bristol-Myers Squibb (Ireland)'),
(75080, 'https://ror.org/057w5q630', 'no_lang_code', 1, 'https://ror.org/057w5q630 Cara Therapeutics (United States)'),
(75081, 'https://ror.org/033mch573', 'no_lang_code', 1, 'https://ror.org/033mch573 Carag (Switzerland)'),
(75082, '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 Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ патології хребта та ŃŃƒŠ³Š»Š¾Š±Ń–Š² імені Дитенка'),
(75083, 'https://ror.org/03160qy64', 'no_lang_code', 1, 'https://ror.org/03160qy64 Cardiac Dimensions (United States)'),
(75084, 'https://ror.org/0321yg140', 'no_lang_code', 1, 'https://ror.org/0321yg140 Celularity (United States)'),
(75085, 'https://ror.org/05kyjqm05', 'no_lang_code', 1, 'https://ror.org/05kyjqm05 Cardio Flow (United States)'),
(75086, 'https://ror.org/05j855983', 'no_lang_code', 1, 'https://ror.org/05j855983 CEM (United States)'),
(75087, 'https://ror.org/0403afs59', 'no_lang_code', 1, 'https://ror.org/0403afs59 Centinel Spine (United States)'),
(75088, 'https://ror.org/058454n10', 'no_lang_code', 1, 'https://ror.org/058454n10 Centrix (United States)'),
(75089, 'https://ror.org/00xyaq666', 'no_lang_code', 1, 'https://ror.org/00xyaq666 Abcentra (United States)'),
(75090, 'https://ror.org/00rpy3653', 'no_lang_code', 1, 'https://ror.org/00rpy3653 Caregen (South Korea)'),
(75091, 'https://ror.org/03jqa1k37', 'no_lang_code', 1, 'https://ror.org/03jqa1k37 Cercacor (United States)'),
(75092, 'https://ror.org/01acc4e45', 'no_lang_code', 1, 'https://ror.org/01acc4e45 Castellini (Italy)'),
(75093, 'https://ror.org/014ze5k65', 'no_lang_code', 1, 'https://ror.org/014ze5k65 Catalyst Chemical Industries (India)'),
(75094, 'https://ror.org/01avpbm97', 'no_lang_code', 1, 'https://ror.org/01avpbm97 Chanel (United Kingdom)'),
(75095, 'https://ror.org/01jc4ps18', 'no_lang_code', 1, 'https://ror.org/01jc4ps18 CathRx (Australia)'),
(75096, 'https://ror.org/05n9p4847', 'no_lang_code', 1, 'https://ror.org/05n9p4847 SK Capital (United States)'),
(75097, 'https://ror.org/05qvjtg77', 'no_lang_code', 1, 'https://ror.org/05qvjtg77 Chemi (Italy)'),
(75098, 'https://ror.org/00y6pq124', 'no_lang_code', 1, 'https://ror.org/00y6pq124 Cefla (Italy)'),
(75099, 'https://ror.org/03mc14w65', 'no_lang_code', 1, 'https://ror.org/03mc14w65 Cellix Bio (India)'),
(75100, 'https://ror.org/041aqd617', 'no_lang_code', 1, 'https://ror.org/041aqd617 QVT (United States)'),
(75101, 'https://ror.org/05sbyq382', 'no_lang_code', 1, 'https://ror.org/05sbyq382 China Petrochemical Development Corporation (Taiwan) äø­åœ‹ēŸ³ę²¹åŒ–å­øå·„ę„­é–‹ē™¼č‚”ä»½ęœ‰é™å…¬åø'),
(75102, 'https://ror.org/044jzz105', 'no_lang_code', 1, 'https://ror.org/044jzz105 Clariance (Luxembourg)'),
(75103, 'https://ror.org/04h1ssz20', 'no_lang_code', 1, 'https://ror.org/04h1ssz20 CoDa Therapeutics (United States)'),
(75104, 'https://ror.org/04v1fvq31', 'no_lang_code', 1, 'https://ror.org/04v1fvq31 Chromocell (United States)'),
(75105, 'https://ror.org/016ye1q56', 'no_lang_code', 1, 'https://ror.org/016ye1q56 Cognetix (India)'),
(75106, 'https://ror.org/00k03v073', 'no_lang_code', 1, 'https://ror.org/00k03v073 CoImmune (United States)'),
(75107, 'https://ror.org/02s4vwe47', 'no_lang_code', 1, 'https://ror.org/02s4vwe47 CINOGY Technologies (Germany)'),
(75108, 'https://ror.org/00q2vrq29', 'no_lang_code', 1, 'https://ror.org/00q2vrq29 Collegium Pharmaceutical (United States)'),
(75109, 'https://ror.org/0432avs60', 'no_lang_code', 1, 'https://ror.org/0432avs60 Corium (United States)'),
(75110, 'https://ror.org/02esj6529', 'no_lang_code', 1, 'https://ror.org/02esj6529 Conagen (United States)'),
(75111, 'https://ror.org/04gwyv878', 'no_lang_code', 1, 'https://ror.org/04gwyv878 CorMatrix (United States)'),
(75112, 'https://ror.org/02w5mt348', 'no_lang_code', 1, 'https://ror.org/02w5mt348 Corvia Medical (United States)'),
(75113, 'https://ror.org/024s0ye18', 'no_lang_code', 1, 'https://ror.org/024s0ye18 Conformis (United States)'),
(75114, 'https://ror.org/013vv4k88', 'no_lang_code', 1, 'https://ror.org/013vv4k88 CosMED Pharmaceutical (Japan) ć‚³ć‚¹ćƒ”ćƒ‡ć‚£č£½č–¬'),
(75115, 'https://ror.org/037g1qp67', 'no_lang_code', 1, 'https://ror.org/037g1qp67 ConjuChem (Canada)'),
(75116, 'https://ror.org/01ftyyd55', 'no_lang_code', 1, 'https://ror.org/01ftyyd55 Coty (United States)'),
(75117, 'https://ror.org/03kk36z33', 'no_lang_code', 1, 'https://ror.org/03kk36z33 Cousin Biotech (France)'),
(75118, 'https://ror.org/02ztbx464', 'no_lang_code', 1, 'https://ror.org/02ztbx464 Conventus Orthopaedics (United States)'),
(75119, 'https://ror.org/053c4y589', 'no_lang_code', 1, 'https://ror.org/053c4y589 J.M. Huber Corporation (United States)'),
(75120, 'https://ror.org/029eqtm48', 'no_lang_code', 1, 'https://ror.org/029eqtm48 Cook Biotech (United States)'),
(75121, 'https://ror.org/01217ma45', 'no_lang_code', 1, 'https://ror.org/01217ma45 Footstar (United States)'),
(75122, 'https://ror.org/04v23a626', 'no_lang_code', 1, 'https://ror.org/04v23a626 CPH Innovations (United Kingdom)'),
(75123, 'https://ror.org/04r008d47', 'no_lang_code', 1, 'https://ror.org/04r008d47 CRG Services (United States)'),
(75124, 'https://ror.org/04ewmsk50', 'no_lang_code', 1, 'https://ror.org/04ewmsk50 CRISPR Therapeutics (Switzerland)'),
(75125, 'https://ror.org/0230dw403', 'no_lang_code', 1, 'https://ror.org/0230dw403 CrossRoads Extremity Systems (United States)'),
(75126, 'https://ror.org/04x0j9s13', 'no_lang_code', 1, 'https://ror.org/04x0j9s13 Crystal Pharmatech (United States)'),
(75127, 'https://ror.org/02c9ess02', 'no_lang_code', 1, 'https://ror.org/02c9ess02 CTL Amedica (United States)'),
(75128, 'https://ror.org/058n07v74', 'no_lang_code', 1, 'https://ror.org/058n07v74 Curemark (United States)'),
(75129, 'https://ror.org/05b6nrx87', 'no_lang_code', 1, 'https://ror.org/05b6nrx87 CooperSurgical (United States)'),
(75130, 'https://ror.org/056jz8j95', 'no_lang_code', 1, 'https://ror.org/056jz8j95 Spinal Elements (United States)'),
(75131, 'https://ror.org/00wrdbm93', 'no_lang_code', 1, 'https://ror.org/00wrdbm93 Cyberdyne (Japan) ć‚µć‚¤ćƒćƒ¼ćƒ€ć‚¤ćƒ³'),
(75132, 'https://ror.org/055r2kv75', 'no_lang_code', 1, 'https://ror.org/055r2kv75 Cybersonics (United States)'),
(75133, 'https://ror.org/00djr1538', 'no_lang_code', 1, 'https://ror.org/00djr1538 DCA (United Kingdom)'),
(75134, 'https://ror.org/05tzg1b68', 'no_lang_code', 1, 'https://ror.org/05tzg1b68 Cyclerion (United States)'),
(75135, 'https://ror.org/030pq6x19', 'no_lang_code', 1, 'https://ror.org/030pq6x19 Cynora (Germany)'),
(75136, 'https://ror.org/00tq9bz11', 'no_lang_code', 1, 'https://ror.org/00tq9bz11 Royalty Pharma (United States)'),
(75137, 'https://ror.org/02vfj3j86', 'no_lang_code', 1, 'https://ror.org/02vfj3j86 Shanghai Fudan Microelectronics (China) äøŠęµ·å¤ę—¦å¾®ē”µå­é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(75138, 'https://ror.org/05p0nrm77', 'no_lang_code', 1, 'https://ror.org/05p0nrm77 Shindengen Electric Manufacturing (Japan) ę–°é›»å…ƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75139, 'https://ror.org/04tcnqa94', 'no_lang_code', 1, 'https://ror.org/04tcnqa94 Tianshui Huatian Technology (China) åŽå¤©ē§‘ęŠ€'),
(75140, 'https://ror.org/04bnd9a95', 'no_lang_code', 1, 'https://ror.org/04bnd9a95 Shenzhen Goodix Technology (China) ę±‡é”¶ē§‘ęŠ€'),
(75141, 'https://ror.org/008f1m719', 'no_lang_code', 1, 'https://ror.org/008f1m719 Immune Pharmaceuticals (United States)'),
(75142, 'https://ror.org/039hfcg55', 'no_lang_code', 1, 'https://ror.org/039hfcg55 Parade Technologies (United States)'),
(75143, 'https://ror.org/027jnbj33', 'no_lang_code', 1, 'https://ror.org/027jnbj33 Allwinner Technology (China) å…Øåæ—'),
(75144, 'https://ror.org/00zvhfv21', 'no_lang_code', 1, 'https://ror.org/00zvhfv21 Silergy (China)'),
(75145, 'https://ror.org/0362sfm95', 'no_lang_code', 1, 'https://ror.org/0362sfm95 E4D Technologies (United States)'),
(75146, 'https://ror.org/04e2r7y81', 'no_lang_code', 1, 'https://ror.org/04e2r7y81 Powerchip (Taiwan) åŠ›ę™¶ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(75147, 'https://ror.org/02y9rwc40', 'no_lang_code', 1, 'https://ror.org/02y9rwc40 U-blox (Switzerland)'),
(75148, 'https://ror.org/01dwnnm75', 'no_lang_code', 1, 'https://ror.org/01dwnnm75 Shanghai Aerospace Automobile Electromechanical (China) äøŠęµ·čˆŖå¤©ę±½č½¦ęœŗē”µč‚”ä»½ęœ‰é™å…¬åø'),
(75149, 'https://ror.org/00y3rz519', 'no_lang_code', 1, 'https://ror.org/00y3rz519 Jiangsu Changjiang Electronics Technology (China) ę±Ÿč˜‡é•·é›»ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(75150, 'https://ror.org/053g4zj73', 'no_lang_code', 1, 'https://ror.org/053g4zj73 Raydium Semiconductor (Taiwan)'),
(75151, 'https://ror.org/05878p058', 'no_lang_code', 1, 'https://ror.org/05878p058 Silicon Motion (Taiwan) ę…§ę¦®ē§‘ęŠ€'),
(75152, 'https://ror.org/0493cs919', 'no_lang_code', 1, 'https://ror.org/0493cs919 Jusung Engineering (South Korea) ģ£¼ģ„±ģ—”ģ§€ė‹ˆģ–“ė§'),
(75153, 'https://ror.org/02g2x8w06', 'no_lang_code', 1, 'https://ror.org/02g2x8w06 Control4 (United States)'),
(75154, 'https://ror.org/00vwbk234', 'no_lang_code', 1, 'https://ror.org/00vwbk234 Melexis (Belgium)'),
(75155, 'https://ror.org/051d31036', 'no_lang_code', 1, 'https://ror.org/051d31036 ELAN Microelectronics (Taiwan) ē¾©éš†é›»å­'),
(75156, 'https://ror.org/036kzqv28', 'no_lang_code', 1, 'https://ror.org/036kzqv28 Sitronix Technology (Taiwan)'),
(75157, 'https://ror.org/02ws27m94', 'no_lang_code', 1, 'https://ror.org/02ws27m94 Besi (Netherlands)'),
(75158, 'https://ror.org/00mft6s50', 'no_lang_code', 1, 'https://ror.org/00mft6s50 Daihachi Chemical Industry (Japan)'),
(75159, 'https://ror.org/02gada206', 'no_lang_code', 1, 'https://ror.org/02gada206 Silicon Works (South Korea) 주)ģ‹¤ė¦¬ģ½˜ģ›ģŠ¤'),
(75160, 'https://ror.org/01nn9ej41', 'no_lang_code', 1, 'https://ror.org/01nn9ej41 Silicon Mitus (United States)'),
(75161, 'https://ror.org/02k7thy32', 'no_lang_code', 1, 'https://ror.org/02k7thy32 Daikyo Seiko (Japan) å¤§å”ē²¾å·„'),
(75162, 'https://ror.org/01r2vjq11', 'no_lang_code', 1, 'https://ror.org/01r2vjq11 Tower Semiconductor (Israel) ć‚æćƒÆćƒ¼ć‚»ćƒŸć‚³ćƒ³ćƒ€ć‚Æć‚æćƒ¼'),
(75163, 'https://ror.org/00cy9w266', 'no_lang_code', 1, 'https://ror.org/00cy9w266 Sensirion (Switzerland)'),
(75164, 'https://ror.org/00c31c476', 'no_lang_code', 1, 'https://ror.org/00c31c476 Vishay Intertechnology (United States)'),
(75165, 'https://ror.org/02whnz742', 'no_lang_code', 1, 'https://ror.org/02whnz742 Daio Paper Corporation (Japan)'),
(75166, 'https://ror.org/022pwfx49', 'no_lang_code', 1, 'https://ror.org/022pwfx49 SMART Global Holdings (United States)'),
(75167, 'https://ror.org/02fh8tg22', 'no_lang_code', 1, 'https://ror.org/02fh8tg22 Osaka Soda (Japan) å¤§é˜Ŗć‚½ćƒ¼ćƒ€'),
(75168, 'https://ror.org/00ycxta63', 'no_lang_code', 1, 'https://ror.org/00ycxta63 Hengdian Group DMEGC Magnetics (China)'),
(75169, 'https://ror.org/04ktbjv18', 'no_lang_code', 1, 'https://ror.org/04ktbjv18 Kulicke & Soffa (Singapore)'),
(75170, 'https://ror.org/00gw0v185', 'no_lang_code', 1, 'https://ror.org/00gw0v185 Inovance (China)'),
(75171, 'https://ror.org/01c7pa495', 'no_lang_code', 1, 'https://ror.org/01c7pa495 Powertech Technology (Taiwan) åŠ›ęˆē§‘ęŠ€'),
(75172, 'https://ror.org/01tyj4381', 'no_lang_code', 1, 'https://ror.org/01tyj4381 Sino-American Silicon Products (Taiwan)'),
(75173, 'https://ror.org/03phj8y65', 'no_lang_code', 1, 'https://ror.org/03phj8y65 Wonik IPS (South Korea) ģ›ģµģ•„ģ“ķ”¼ģ—ģŠ¤'),
(75174, 'https://ror.org/035gkst87', 'no_lang_code', 1, 'https://ror.org/035gkst87 Sigma Designs (United States)'),
(75175, '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'),
(75176, 'https://ror.org/004evz222', 'fr', 1, 'https://ror.org/004evz222 Association Nationale des Producteurs de Noisettes'),
(75177, 'https://ror.org/020swhw58', 'en', 1, 'https://ror.org/020swhw58 Insight Healthcare'),
(75178, 'https://ror.org/05nzfv767', 'no_lang_code', 1, 'https://ror.org/05nzfv767 Entangly (Sweden)'),
(75179, 'https://ror.org/035d70176', 'en', 1, 'https://ror.org/035d70176 Siberian Law University Дибирский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(75180, 'https://ror.org/04y1ast97', 'en', 1, 'https://ror.org/04y1ast97 Archives de l''Ɖtat Rijksarchief State Archives of Belgium'),
(75181, '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" Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Украинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинской реабилитации Šø ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠø ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Украины" Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГичної реабілітації та ŠŗŃƒŃ€Š¾Ń€Ń‚ології ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š° охорони зГоров''я України"'),
(75182, 'https://ror.org/01ye8r794', 'en', 1, 'https://ror.org/01ye8r794 Tropical Crops Genetic Resources Institute ēƒ­åø¦ä½œē‰©å“ē§čµ„ęŗē ”ē©¶ę‰€'),
(75183, 'https://ror.org/01w4k1v53', 'en', 1, 'https://ror.org/01w4k1v53 Rubber Research Institute äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢ę©”čƒ¶ē ”ē©¶ę‰€'),
(75184, 'https://ror.org/01aggbv66', 'en', 1, 'https://ror.org/01aggbv66 Mahendra Institute of Management and Technical Studies ą¬®ą¬¹ą­‡ą¬Øą­ą¬¦ą­ą¬° ą¬‡ą¬Øą¬·ą­ą¬Ÿą¬æą¬šą­ą­Ÿą­ą¬Ÿą­ ą¬…ą¬«ą­ ą¬®ą­ą­Ÿą¬¾ą¬Øą­‡ą¬œą¬®ą­‡ą¬£ą­ą¬Ÿ ą¬†ą¬£ą­ą¬” ą¬Ÿą­‡ą¬•ą­ą¬Øą¬æą¬•ą¬¾ą¬² ą¬·ą­ą¬Ÿą¬”ą¬æą¬ø (ą¬®ą¬æą¬®ą­ā€Œą¬Ÿą­ą¬ø)'),
(75185, 'https://ror.org/02e5fdp70', 'no_lang_code', 1, 'https://ror.org/02e5fdp70 Merit Medical (United States)'),
(75186, 'https://ror.org/05c4d7454', 'en', 1, 'https://ror.org/05c4d7454 Spice and Beverage Research Institute 香料鄮料研究所'),
(75187, 'https://ror.org/00xjqd715', 'en', 1, 'https://ror.org/00xjqd715 Coconut Research Institute äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢ę¤°å­ē ”ē©¶ę‰€'),
(75188, 'https://ror.org/025e41905', 'no_lang_code', 1, 'https://ror.org/025e41905 Diatex (France)'),
(75189, 'https://ror.org/04jeca075', 'en', 1, 'https://ror.org/04jeca075 South Subtropical Crops Research Institute å¹æäøœēœę¹›ę±Ÿåø‚éŗ»ē« åŒŗę¹–ē§€č·Æäø€å·'),
(75190, 'https://ror.org/03dkwk174', 'en', 1, 'https://ror.org/03dkwk174 Tropical Bioscience and Biotechnology Research Institute ēƒ­åø¦ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(75191, 'https://ror.org/05jnx3123', 'no_lang_code', 1, 'https://ror.org/05jnx3123 Dipharma (Italy)'),
(75192, 'https://ror.org/00a21fr98', 'en', 1, 'https://ror.org/00a21fr98 Environment and Plant Protection Research Institute ēŽÆå¢ƒäøŽę¤ē‰©äæęŠ¤ē ”ē©¶ę‰€'),
(75193, 'https://ror.org/00g46p143', 'en', 1, 'https://ror.org/00g46p143 Agricultural Product Processing Research Institute å†œäŗ§å“åŠ å·„ē ”ē©¶ę‰€'),
(75194, 'https://ror.org/05qrpwx06', 'en', 1, 'https://ror.org/05qrpwx06 Tropical Agricultural Machinery Research Institute å†œäøšęœŗę¢°ē ”ē©¶ę‰€'),
(75195, 'https://ror.org/0170b6c09', 'en', 1, 'https://ror.org/0170b6c09 Institute of Scientific and Technical Information'),
(75196, 'https://ror.org/03b9bgv12', 'no_lang_code', 1, 'https://ror.org/03b9bgv12 DemeRx (United States)'),
(75197, 'https://ror.org/01m9scr97', 'en', 1, 'https://ror.org/01m9scr97 Analysis and Testing Centre åˆ†ęžęµ‹čÆ•äø­åæƒ'),
(75198, 'https://ror.org/03kzpar53', 'en', 1, 'https://ror.org/03kzpar53 Haikou Experimental Station äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢ęµ·å£å®žéŖŒē«™'),
(75199, 'https://ror.org/05rvyrg53', 'en', 1, 'https://ror.org/05rvyrg53 Zhanjiang Experimental Station ę¹›ę±Ÿå®žéŖŒē«™'),
(75200, 'https://ror.org/00f2c2516', 'en', 1, 'https://ror.org/00f2c2516 Guangzhou Experimental Station äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢å¹æå·žå®žéŖŒē«™'),
(75201, 'https://ror.org/027vtzk17', 'no_lang_code', 1, 'https://ror.org/027vtzk17 DeRoyal (United States)'),
(75202, 'https://ror.org/05wg4vz65', 'no_lang_code', 1, 'https://ror.org/05wg4vz65 Phoenix Mecano (Switzerland)'),
(75203, 'https://ror.org/05ctcx759', 'no_lang_code', 1, 'https://ror.org/05ctcx759 Dong-A Pharmaceutical (South Korea)'),
(75204, 'https://ror.org/04v7v1m43', 'no_lang_code', 1, 'https://ror.org/04v7v1m43 DongKook Pharmaceutical (South Korea)'),
(75205, 'https://ror.org/00nz5p994', 'no_lang_code', 1, 'https://ror.org/00nz5p994 Dongwha Pharm (South Korea)'),
(75206, 'https://ror.org/01znjq697', 'no_lang_code', 1, 'https://ror.org/01znjq697 Dorf Ketal (India) ą¤”ą„‰ą¤°ą„ą¤«-ą¤•ą„‡ą¤Ÿą¤² ą¤•ą„‡ą¤®ą¤æą¤•ą¤²ą„ą¤ø इंऔिया ą¤Ŗą„ą¤°ą¤¾ą¤‡ą¤µą„‡ą¤Ÿ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(75207, 'https://ror.org/04gek0a04', 'no_lang_code', 1, 'https://ror.org/04gek0a04 Geistlich (Switzerland)'),
(75208, 'https://ror.org/00b49pe93', 'no_lang_code', 1, 'https://ror.org/00b49pe93 Dornier MedTech (Germany)'),
(75209, 'https://ror.org/02626d994', 'no_lang_code', 1, 'https://ror.org/02626d994 Edan (China)'),
(75210, 'https://ror.org/0374y9c72', 'no_lang_code', 1, 'https://ror.org/0374y9c72 DOT (Germany)'),
(75211, 'https://ror.org/04089mn23', 'no_lang_code', 1, 'https://ror.org/04089mn23 Edgewell Personal Care (United States)'),
(75212, 'https://ror.org/03a00yh12', 'no_lang_code', 1, 'https://ror.org/03a00yh12 Editas Medicine (United States)'),
(75213, 'https://ror.org/052464b83', 'no_lang_code', 1, 'https://ror.org/052464b83 Doxa (Sweden)'),
(75214, 'https://ror.org/04ahrkj41', 'no_lang_code', 1, 'https://ror.org/04ahrkj41 Elementis (United Kingdom)'),
(75215, 'https://ror.org/02nwwqk69', 'no_lang_code', 1, 'https://ror.org/02nwwqk69 Butamax (United States)'),
(75216, 'https://ror.org/051dcnw66', 'no_lang_code', 1, 'https://ror.org/051dcnw66 Drylock Technologies (Belgium)'),
(75217, 'https://ror.org/03vcxzw86', 'no_lang_code', 1, 'https://ror.org/03vcxzw86 DSG Technology (Norway)'),
(75218, 'https://ror.org/05p26dc09', 'no_lang_code', 1, 'https://ror.org/05p26dc09 Emery Oleochemicals (Malaysia)'),
(75219, 'https://ror.org/03zf99n20', 'no_lang_code', 1, 'https://ror.org/03zf99n20 Centrient Pharmaceuticals (Netherlands)'),
(75220, 'https://ror.org/01ppyqb03', 'no_lang_code', 1, 'https://ror.org/01ppyqb03 Cardinal Health (Ireland)'),
(75221, 'https://ror.org/02n2ng334', 'no_lang_code', 1, 'https://ror.org/02n2ng334 Emisphere Technologies (United States)'),
(75222, 'https://ror.org/02mcfj023', 'no_lang_code', 1, 'https://ror.org/02mcfj023 Cendres+MƩtaux (Switzerland)'),
(75223, 'https://ror.org/04khv4y21', 'no_lang_code', 1, 'https://ror.org/04khv4y21 Made For Retail (United States)'),
(75224, 'https://ror.org/01db4wa08', 'no_lang_code', 1, 'https://ror.org/01db4wa08 DUKSAN Neolux (South Korea)'),
(75225, 'https://ror.org/00myrf395', 'no_lang_code', 1, 'https://ror.org/00myrf395 Restech (United States)'),
(75226, 'https://ror.org/03f504c84', 'no_lang_code', 1, 'https://ror.org/03f504c84 Dow Chemical (France)'),
(75227, 'https://ror.org/015ccve61', 'no_lang_code', 1, 'https://ror.org/015ccve61 Dilon Technologies (United States)'),
(75228, 'https://ror.org/04n7n7219', 'no_lang_code', 1, 'https://ror.org/04n7n7219 Eagle Pharmaceuticals (United States)'),
(75229, 'https://ror.org/03s5ddr02', 'no_lang_code', 1, 'https://ror.org/03s5ddr02 EBR Systems (United States)'),
(75230, 'https://ror.org/03mhtfp97', 'no_lang_code', 1, 'https://ror.org/03mhtfp97 ECA Medical (United States)'),
(75231, 'https://ror.org/01xcek018', 'no_lang_code', 1, 'https://ror.org/01xcek018 Ensuiko Sugar Refining (Japan)'),
(75232, 'https://ror.org/05mz52w65', 'no_lang_code', 1, 'https://ror.org/05mz52w65 Ethris (Germany)'),
(75233, 'https://ror.org/01ddr6f40', 'no_lang_code', 1, 'https://ror.org/01ddr6f40 Enteris Biopharma (United States)'),
(75234, 'https://ror.org/019f6hy95', 'no_lang_code', 1, 'https://ror.org/019f6hy95 Duoject Medical Systems (Canada)'),
(75235, 'https://ror.org/0056pgw95', 'no_lang_code', 1, 'https://ror.org/0056pgw95 Eureka Therapeutics (United States)'),
(75236, 'https://ror.org/01ww58407', 'no_lang_code', 1, 'https://ror.org/01ww58407 Durect (United States)'),
(75237, 'https://ror.org/01d7h6313', 'no_lang_code', 1, 'https://ror.org/01d7h6313 Enzo Life Sciences (United States)'),
(75238, 'https://ror.org/028c7mm22', 'no_lang_code', 1, 'https://ror.org/028c7mm22 Delmar (Canada)'),
(75239, 'https://ror.org/00s6yzk33', 'no_lang_code', 1, 'https://ror.org/00s6yzk33 Exogenesis (United States)'),
(75240, 'https://ror.org/03455bm37', 'no_lang_code', 1, 'https://ror.org/03455bm37 Epix Pharmaceuticals (United States)'),
(75241, 'https://ror.org/008ww7s63', 'no_lang_code', 1, 'https://ror.org/008ww7s63 Eurobio Scientific (France)'),
(75242, 'https://ror.org/0171m6969', 'no_lang_code', 1, 'https://ror.org/0171m6969 Exploramed (United States)'),
(75243, 'https://ror.org/00g35nv72', 'no_lang_code', 1, 'https://ror.org/00g35nv72 EndoGastric Solutions (United States)'),
(75244, 'https://ror.org/052yc4b30', 'no_lang_code', 1, 'https://ror.org/052yc4b30 Exsymol (Monaco)'),
(75245, 'https://ror.org/029tw8r50', 'no_lang_code', 1, 'https://ror.org/029tw8r50 Eyesense (Germany)'),
(75246, 'https://ror.org/01vpqmh56', 'no_lang_code', 1, 'https://ror.org/01vpqmh56 Endologix (United States)'),
(75247, 'https://ror.org/05rjxhq89', 'no_lang_code', 1, 'https://ror.org/05rjxhq89 Erregierre (Italy)'),
(75248, 'https://ror.org/03ntya366', 'no_lang_code', 1, 'https://ror.org/03ntya366 Ezaki Glico (Japan) ę±Ÿå“Žć‚°ćƒŖć‚³ę Ŗå¼ä¼šē¤¾'),
(75249, 'https://ror.org/01pj6sv40', 'no_lang_code', 1, 'https://ror.org/01pj6sv40 EssilorLuxottica (France)'),
(75250, 'https://ror.org/01h39y763', 'no_lang_code', 1, 'https://ror.org/01h39y763 Endotronix (United States)'),
(75251, 'https://ror.org/024g3yp89', 'no_lang_code', 1, 'https://ror.org/024g3yp89 FGP (Italy)');
INSERT INTO `rors` VALUES
(75252, 'https://ror.org/01gzkj661', 'no_lang_code', 1, 'https://ror.org/01gzkj661 Essity (Sweden)'),
(75253, 'https://ror.org/02pqja087', 'no_lang_code', 1, 'https://ror.org/02pqja087 Engeneic (Australia)'),
(75254, 'https://ror.org/01z5cg313', 'no_lang_code', 1, 'https://ror.org/01z5cg313 Fabbrica Italiana Sintetici (Italy)'),
(75255, 'https://ror.org/034zjqs11', 'no_lang_code', 1, 'https://ror.org/034zjqs11 Scorpion Therapeutics (United States)'),
(75256, 'https://ror.org/02df3jd82', 'en', 1, 'https://ror.org/02df3jd82 Urolife Stone Hospital'),
(75257, 'https://ror.org/004z0nw85', 'no_lang_code', 1, 'https://ror.org/004z0nw85 Forestadent (Germany)'),
(75258, 'https://ror.org/03dpves30', 'no_lang_code', 1, 'https://ror.org/03dpves30 Estech Systems (United States)'),
(75259, 'https://ror.org/038pg5d86', 'no_lang_code', 1, 'https://ror.org/038pg5d86 Esteve QuĆ­mica (Spain)'),
(75260, 'https://ror.org/05d09jf58', 'no_lang_code', 1, 'https://ror.org/05d09jf58 Fonar (United States)'),
(75261, 'https://ror.org/02qpxnp21', 'no_lang_code', 1, 'https://ror.org/02qpxnp21 Fontem Ventures (Netherlands)'),
(75262, 'https://ror.org/057v6df68', 'no_lang_code', 1, 'https://ror.org/057v6df68 Nomura Holdings (Japan) é‡Žę‘ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(75263, 'https://ror.org/044eskk16', 'en', 1, 'https://ror.org/044eskk16 Team University'),
(75264, 'https://ror.org/013hxq561', 'en', 1, 'https://ror.org/013hxq561 University of the Sacred Heart Gulu'),
(75265, 'https://ror.org/029q69m70', 'en', 1, 'https://ror.org/029q69m70 Virtual University of Uganda'),
(75266, 'https://ror.org/0069k3e75', 'en', 1, 'https://ror.org/0069k3e75 Institute of Mental Health ą®•ąÆ€ą®“ąÆą®Ŗą®¾ą®•ąÆą®•ą®®ąÆ ą®…ą®°ą®šąÆ மனநல ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(75267, 'https://ror.org/05cf0ez61', 'en', 1, 'https://ror.org/05cf0ez61 Institute of Petroleum Studies Kampala'),
(75268, 'https://ror.org/05q5cdt12', 'en', 1, 'https://ror.org/05q5cdt12 Ministry of Law and Justice विधि और ą¤Øą„ą¤Æą¤¾ą¤Æ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(75269, 'https://ror.org/02caa0269', 'en', 1, 'https://ror.org/02caa0269 Infectious Diseases Institute'),
(75270, 'https://ror.org/02bjrj215', 'en', 1, 'https://ror.org/02bjrj215 Uganda Petroleum Institute'),
(75271, 'https://ror.org/03q1w5k18', 'en', 1, 'https://ror.org/03q1w5k18 Fins Medical University'),
(75272, 'https://ror.org/05re5gc10', 'en', 1, 'https://ror.org/05re5gc10 ISBAT University'),
(75273, 'https://ror.org/02488qf25', 'en', 1, 'https://ror.org/02488qf25 Metropolitan International University'),
(75274, 'https://ror.org/052djjn64', 'no_lang_code', 1, 'https://ror.org/052djjn64 Factor Bioscience (United States)'),
(75275, 'https://ror.org/049fqwf34', 'no_lang_code', 1, 'https://ror.org/049fqwf34 Fermion (Finland)'),
(75276, 'https://ror.org/039ywcc21', 'no_lang_code', 1, 'https://ror.org/039ywcc21 Fukuda Denshi (Japan)'),
(75277, 'https://ror.org/04q775h70', 'en', 1, 'https://ror.org/04q775h70 Terra Foundation for American Art'),
(75278, 'https://ror.org/02rt9z237', 'no_lang_code', 1, 'https://ror.org/02rt9z237 Hindawi (United Kingdom)'),
(75279, 'https://ror.org/014trz974', 'en', 1, 'https://ror.org/014trz974 Qualitative Data Repository'),
(75280, 'https://ror.org/0468x4e75', 'en', 1, 'https://ror.org/0468x4e75 UK Data Service'),
(75281, 'https://ror.org/028ap6052', 'en', 1, 'https://ror.org/028ap6052 Institute of Animal Biology NAAS Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біології тварин ŠŠŠŠ'),
(75282, 'https://ror.org/022ezeq21', 'no_lang_code', 1, 'https://ror.org/022ezeq21 ADMED (Switzerland) Analyses et Diagnostics Medicaux'),
(75283, '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 Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетичної та регенеративної меГицини ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України"'),
(75284, 'https://ror.org/05rgcq579', 'no_lang_code', 1, 'https://ror.org/05rgcq579 Derwen (United States)'),
(75285, '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 Š›.Š¢.ŠœŠ°Š»Š¾Ń— ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(75286, 'https://ror.org/0208ecv48', 'no_lang_code', 1, 'https://ror.org/0208ecv48 Amstein + Walthert (Switzerland)'),
(75287, 'https://ror.org/02rj0fp17', 'en', 1, 'https://ror.org/02rj0fp17 Pollinator Partnership'),
(75288, 'https://ror.org/02rtpt551', 'no_lang_code', 1, 'https://ror.org/02rtpt551 Boehringer Ingelheim (Switzerland)'),
(75289, 'https://ror.org/003fdpq59', 'no_lang_code', 1, 'https://ror.org/003fdpq59 Micos Engineering (Switzerland)'),
(75290, 'https://ror.org/041w6fe35', 'no_lang_code', 1, 'https://ror.org/041w6fe35 Spetec (Germany)'),
(75291, 'https://ror.org/01cdxzt16', 'en', 1, 'https://ror.org/01cdxzt16 Pakistan Scientific and Technological Information Centre پاکستان Ų³Ų§Ų¦Ł†Ų³ŪŒ اور ŲŖŚ©Ł†ŪŒŚ©ŪŒ Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ مرکز'),
(75292, 'https://ror.org/01qyyep84', 'en', 1, 'https://ror.org/01qyyep84 Community Agroecology Network'),
(75293, 'https://ror.org/01088yf98', 'en', 1, 'https://ror.org/01088yf98 Mabula Ground Hornbill Project'),
(75294, 'https://ror.org/00w1ev608', 'en', 1, 'https://ror.org/00w1ev608 Fundación Iguaque Iguaque Foundation'),
(75295, 'https://ror.org/04bhpte75', 'no_lang_code', 1, 'https://ror.org/04bhpte75 IPS Elektroniklabor (Germany)'),
(75296, 'https://ror.org/05997db74', 'en', 1, 'https://ror.org/05997db74 Global Institute for Water Security'),
(75297, 'https://ror.org/036j21948', 'no_lang_code', 1, 'https://ror.org/036j21948 Protix (Netherlands)'),
(75298, 'https://ror.org/000wyyt97', 'no_lang_code', 1, 'https://ror.org/000wyyt97 Theracule (Norway)'),
(75299, 'https://ror.org/023m36v90', 'no_lang_code', 1, 'https://ror.org/023m36v90 Family Inada (Japan) ćƒ•ć‚”ćƒŸćƒŖćƒ¼ć‚¤ćƒŠćƒ€ę Ŗå¼ä¼šē¤¾'),
(75300, 'https://ror.org/03repqx13', 'no_lang_code', 1, 'https://ror.org/03repqx13 Bluejay Mining (United Kingdom)'),
(75301, 'https://ror.org/046fxzx47', 'no_lang_code', 1, 'https://ror.org/046fxzx47 France Bed Holdings (Japan) ćƒ•ćƒ©ćƒ³ć‚¹ćƒ™ćƒƒćƒ‰ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(75302, 'https://ror.org/01x8bp388', 'no_lang_code', 1, 'https://ror.org/01x8bp388 ImageRive (Switzerland)'),
(75303, 'https://ror.org/057pf5h72', 'hu', 1, 'https://ror.org/057pf5h72 KiskunsƔg National Park KiskunsƔgi Nemzeti Park'),
(75304, 'https://ror.org/01afeqs63', 'no_lang_code', 1, 'https://ror.org/01afeqs63 PEEL Therapeutics (United States)'),
(75305, 'https://ror.org/002vfg852', 'no_lang_code', 1, 'https://ror.org/002vfg852 Ferno (United States)'),
(75306, 'https://ror.org/05cgh0738', 'no_lang_code', 1, 'https://ror.org/05cgh0738 Biocensus (United Kingdom)'),
(75307, 'https://ror.org/04jnzhb65', 'en', 1, 'https://ror.org/04jnzhb65 Artsdatabanken Norwegian Biodiversity Information Centre'),
(75308, 'https://ror.org/04yek5175', 'no_lang_code', 1, 'https://ror.org/04yek5175 Ferrosan Medical Devices (Denmark)'),
(75309, 'https://ror.org/0294vh269', 'no_lang_code', 1, 'https://ror.org/0294vh269 Fertin Pharma (Denmark)'),
(75310, 'https://ror.org/04g88st81', 'no_lang_code', 1, 'https://ror.org/04g88st81 Freund (Japan)'),
(75311, 'https://ror.org/023g9jn96', 'no_lang_code', 1, 'https://ror.org/023g9jn96 Fumakilla (Japan) ćƒ•ćƒžć‚­ćƒ©ćƒ¼'),
(75312, 'https://ror.org/04v300186', 'no_lang_code', 1, 'https://ror.org/04v300186 Filtertek (United States)'),
(75313, 'https://ror.org/00z0wts96', 'no_lang_code', 1, 'https://ror.org/00z0wts96 Fuji Chemical Industries (Japan) åÆŒå£«åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75314, 'https://ror.org/05xj42126', 'no_lang_code', 1, 'https://ror.org/05xj42126 FujiFilm VisualSonics (Canada)'),
(75315, 'https://ror.org/008enam71', 'en', 1, 'https://ror.org/008enam71 Polish Botanical Society Polskie Towarzystwo Botaniczne'),
(75316, 'https://ror.org/02y5zge30', 'no_lang_code', 1, 'https://ror.org/02y5zge30 Gene Signal (Switzerland)'),
(75317, 'https://ror.org/041vwff03', 'no_lang_code', 1, 'https://ror.org/041vwff03 Fuso Pharmaceutical Industries (Japan) ę‰¶ę”‘č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75318, 'https://ror.org/04r226n96', 'no_lang_code', 1, 'https://ror.org/04r226n96 Groupe LƩpine (France)'),
(75319, 'https://ror.org/01ndwmb50', 'no_lang_code', 1, 'https://ror.org/01ndwmb50 Alpek (Mexico)'),
(75320, 'https://ror.org/02f6hqb19', 'no_lang_code', 1, 'https://ror.org/02f6hqb19 Evive Biotech (China)'),
(75321, 'https://ror.org/05m43xv28', 'no_lang_code', 1, 'https://ror.org/05m43xv28 Halkey-Roberts (United States)'),
(75322, 'https://ror.org/01e0dz978', 'en', 1, 'https://ror.org/01e0dz978 VA Central Western Massachusetts Healthcare System'),
(75323, 'https://ror.org/00kan1k39', 'en', 1, 'https://ror.org/00kan1k39 VA Illiana Health Care System'),
(75324, 'https://ror.org/04qbg9n81', 'en', 1, 'https://ror.org/04qbg9n81 VA Northern Indiana Health Care System'),
(75325, 'https://ror.org/00acjv878', 'en', 1, 'https://ror.org/00acjv878 Oscar G. Johnson VA Medical Center'),
(75326, 'https://ror.org/020ajpe42', 'en', 1, 'https://ror.org/020ajpe42 Togus VA Medical Center'),
(75327, 'https://ror.org/037nrh939', 'en', 1, 'https://ror.org/037nrh939 John J. Pershing VA Medical Center'),
(75328, 'https://ror.org/04zkam251', 'en', 1, 'https://ror.org/04zkam251 Marion VA Medical Center'),
(75329, 'https://ror.org/02x7pye76', 'no_lang_code', 1, 'https://ror.org/02x7pye76 Sulzer (United States)'),
(75330, 'https://ror.org/01dt1nn03', 'en', 1, 'https://ror.org/01dt1nn03 VA Hudson Valley Health Care System'),
(75331, 'https://ror.org/01d4n7s11', 'en', 1, 'https://ror.org/01d4n7s11 Bath VA Medical Center'),
(75332, 'https://ror.org/052d8ge54', 'en', 1, 'https://ror.org/052d8ge54 Robert J. Dole VA Medical Center'),
(75333, 'https://ror.org/021rk6547', 'en', 1, 'https://ror.org/021rk6547 Erie VA Medical Center'),
(75334, 'https://ror.org/0385asg54', 'en', 1, 'https://ror.org/0385asg54 James E. Van Zandt VA Medical Center'),
(75335, 'https://ror.org/03t7gqr04', 'en', 1, 'https://ror.org/03t7gqr04 Alexandria VA Medical Center'),
(75336, 'https://ror.org/03tm9zz81', 'en', 1, 'https://ror.org/03tm9zz81 Eastern Oklahoma VA Health Care System'),
(75337, 'https://ror.org/05n0dm186', 'en', 1, 'https://ror.org/05n0dm186 Jack C. Montgomery VA Medical Center'),
(75338, 'https://ror.org/01wexqy53', 'en', 1, 'https://ror.org/01wexqy53 VA Gulf Coast Veterans Health Care System'),
(75339, 'https://ror.org/0218d9s98', 'en', 1, 'https://ror.org/0218d9s98 Louis A. Johnson VA Medical Center'),
(75340, 'https://ror.org/00ft0j474', 'en', 1, 'https://ror.org/00ft0j474 Lebanon VA Medical Center'),
(75341, 'https://ror.org/03wtmb115', 'en', 1, 'https://ror.org/03wtmb115 VA Butler Healthcare'),
(75342, 'https://ror.org/00wzysf74', 'en', 1, 'https://ror.org/00wzysf74 Wilkes-Barre VA Medical Center'),
(75343, 'https://ror.org/04q4pp553', 'en', 1, 'https://ror.org/04q4pp553 Wilmington VA Medical Center'),
(75344, 'https://ror.org/020xhpf63', 'en', 1, 'https://ror.org/020xhpf63 Martinsburg VA Medical Center'),
(75345, 'https://ror.org/01s8b3v69', 'en', 1, 'https://ror.org/01s8b3v69 Veterans Health Care System of the Ozarks'),
(75346, 'https://ror.org/03c46dy37', 'en', 1, 'https://ror.org/03c46dy37 Kerrville VA Medical Center'),
(75347, 'https://ror.org/036adbz09', 'en', 1, 'https://ror.org/036adbz09 Perry Point VA Medical Center'),
(75348, 'https://ror.org/035vbzz28', 'en', 1, 'https://ror.org/035vbzz28 El Paso VA Health Care System'),
(75349, 'https://ror.org/03fbrdz61', 'no_lang_code', 1, 'https://ror.org/03fbrdz61 Guided Therapy Systems (United States)'),
(75350, 'https://ror.org/03vwf8m18', 'en', 1, 'https://ror.org/03vwf8m18 Charles George VA Medical Center'),
(75351, 'https://ror.org/022kt1284', 'en', 1, 'https://ror.org/022kt1284 West Texas VA Health Care System'),
(75352, 'https://ror.org/033yxp207', 'no_lang_code', 1, 'https://ror.org/033yxp207 Gunze (Japan) ć‚°ćƒ³ć‚¼ę Ŗå¼ä¼šē¤¾'),
(75353, 'https://ror.org/01b9b0y72', 'no_lang_code', 1, 'https://ror.org/01b9b0y72 Gynesonics (United States)'),
(75354, 'https://ror.org/05sxtdc16', 'en', 1, 'https://ror.org/05sxtdc16 George H. O''Brien, Jr. VA Medical Center'),
(75355, 'https://ror.org/01r2s5391', 'en', 1, 'https://ror.org/01r2s5391 Beckley VA Medical Center'),
(75356, 'https://ror.org/00yfsq027', 'en', 1, 'https://ror.org/00yfsq027 Fayetteville VA Medical Center'),
(75357, 'https://ror.org/01np3r452', 'en', 1, 'https://ror.org/01np3r452 VA Montana Health Care System'),
(75358, 'https://ror.org/04k3nb528', 'no_lang_code', 1, 'https://ror.org/04k3nb528 Hallstar Beauty (United States)'),
(75359, 'https://ror.org/04dp0f897', 'en', 1, 'https://ror.org/04dp0f897 Cheyenne VA Medical Center'),
(75360, 'https://ror.org/02esp3r97', 'en', 1, 'https://ror.org/02esp3r97 VA Western Colorado Health Care System'),
(75361, 'https://ror.org/03tzxa223', 'en', 1, 'https://ror.org/03tzxa223 Grand Junction VA Medical Center'),
(75362, 'https://ror.org/025cs2j58', 'en', 1, 'https://ror.org/025cs2j58 Carl Vinson VA Medical Center'),
(75363, 'https://ror.org/041fffy58', 'en', 1, 'https://ror.org/041fffy58 Central Alabama Veterans Health Care System'),
(75364, 'https://ror.org/03fw4bm79', 'no_lang_code', 1, 'https://ror.org/03fw4bm79 Halocarbon (United States)'),
(75365, 'https://ror.org/02943gv98', 'en', 1, 'https://ror.org/02943gv98 Sheridan VA Medical Center'),
(75366, 'https://ror.org/059nam179', 'en', 1, 'https://ror.org/059nam179 VA Roseburg Healthcare System'),
(75367, 'https://ror.org/04941ww55', 'no_lang_code', 1, 'https://ror.org/04941ww55 Hamari Chemicals (Japan)'),
(75368, 'https://ror.org/01hthpr47', 'no_lang_code', 1, 'https://ror.org/01hthpr47 Hamilton Medical (Switzerland)'),
(75369, 'https://ror.org/00rtdgr72', 'en', 1, 'https://ror.org/00rtdgr72 Mann-Grandstaff VA Medical Center'),
(75370, 'https://ror.org/0428ha587', 'en', 1, 'https://ror.org/0428ha587 Orlando VA Medical Center'),
(75371, 'https://ror.org/02xpk4806', 'en', 1, 'https://ror.org/02xpk4806 VA Southern Nevada Healthcare System'),
(75372, 'https://ror.org/03d0nge43', 'en', 1, 'https://ror.org/03d0nge43 Fargo VA Health Care System'),
(75373, 'https://ror.org/03pcamk69', 'en', 1, 'https://ror.org/03pcamk69 VA Black Hills Health Care System'),
(75374, 'https://ror.org/04p162q02', 'en', 1, 'https://ror.org/04p162q02 Hershel Woody Williams VA Medical Center'),
(75375, 'https://ror.org/04hy71c73', 'no_lang_code', 1, 'https://ror.org/04hy71c73 Hangzhou DAC Biotech (China) ę­å·žå¤šē¦§ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(75376, 'https://ror.org/02scwd732', 'no_lang_code', 1, 'https://ror.org/02scwd732 Squadron Capital (China)'),
(75377, 'https://ror.org/05ee7tr34', 'en', 1, 'https://ror.org/05ee7tr34 Chillicothe VA Medical Center'),
(75378, 'https://ror.org/03p46dh90', 'en', 1, 'https://ror.org/03p46dh90 Aleda E. Lutz VA Medical Center'),
(75379, 'https://ror.org/055txj157', 'no_lang_code', 1, 'https://ror.org/055txj157 Gerresheimer (Germany)'),
(75380, 'https://ror.org/05qzqkd67', 'no_lang_code', 1, 'https://ror.org/05qzqkd67 Harro Hƶfliger (Germany)'),
(75381, 'https://ror.org/02mc5ry07', 'en', 1, 'https://ror.org/02mc5ry07 Battle Creek VA Medical Center'),
(75382, 'https://ror.org/05t0bve94', 'no_lang_code', 1, 'https://ror.org/05t0bve94 Geuder (Germany)'),
(75383, 'https://ror.org/01cbwsm82', 'no_lang_code', 1, 'https://ror.org/01cbwsm82 GF Biochemicals (Italy)'),
(75384, 'https://ror.org/00eqyc023', 'no_lang_code', 1, 'https://ror.org/00eqyc023 GI Dynamics (United States)'),
(75385, 'https://ror.org/00dys1t73', 'no_lang_code', 1, 'https://ror.org/00dys1t73 Gibaud (France)'),
(75386, 'https://ror.org/0568h1r52', 'no_lang_code', 1, 'https://ror.org/0568h1r52 Haselmeier (Germany)'),
(75387, 'https://ror.org/04nmcca26', 'no_lang_code', 1, 'https://ror.org/04nmcca26 Glykos (Finland)'),
(75388, 'https://ror.org/02jdwac97', 'no_lang_code', 1, 'https://ror.org/02jdwac97 H.C. Starck (Germany)'),
(75389, 'https://ror.org/03f9ys929', 'no_lang_code', 1, 'https://ror.org/03f9ys929 Giuliani (Italy)'),
(75390, 'https://ror.org/03s6arh89', 'no_lang_code', 1, 'https://ror.org/03s6arh89 Hexion (United States)'),
(75391, 'https://ror.org/01q4q2062', 'no_lang_code', 1, 'https://ror.org/01q4q2062 HighLife (France)'),
(75392, 'https://ror.org/05nnz8429', 'no_lang_code', 1, 'https://ror.org/05nnz8429 Health & Life (Taiwan) åˆäø–ē”Ÿé†«ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(75393, 'https://ror.org/040m02t59', 'no_lang_code', 1, 'https://ror.org/040m02t59 Hip Innovation Technology (United States)'),
(75394, 'https://ror.org/04fnfbg71', 'no_lang_code', 1, 'https://ror.org/04fnfbg71 HLT (United States)'),
(75395, 'https://ror.org/0119y0r05', 'no_lang_code', 1, 'https://ror.org/0119y0r05 Hokko Chemical Industry (Japan) åŒ—čˆˆåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75396, 'https://ror.org/04kdgxx63', 'no_lang_code', 1, 'https://ror.org/04kdgxx63 Heine Optotechnik (Germany)'),
(75397, 'https://ror.org/05tk43a11', 'no_lang_code', 1, 'https://ror.org/05tk43a11 Helix Biomedix (United States)'),
(75398, 'https://ror.org/03ac0z906', 'no_lang_code', 1, 'https://ror.org/03ac0z906 Helm (Germany)'),
(75399, 'https://ror.org/0043cxs41', 'no_lang_code', 1, 'https://ror.org/0043cxs41 Helperby Therapeutics (United Kingdom)'),
(75400, 'https://ror.org/00fdb3g61', 'no_lang_code', 1, 'https://ror.org/00fdb3g61 Henke-Sass Wolf (Germany)'),
(75401, 'https://ror.org/0558bev76', 'no_lang_code', 1, 'https://ror.org/0558bev76 IBC Pharmaceuticals (India)'),
(75402, 'https://ror.org/031cw6h45', 'no_lang_code', 1, 'https://ror.org/031cw6h45 I.C. Medical (United States)'),
(75403, 'https://ror.org/04zr5y856', 'no_lang_code', 1, 'https://ror.org/04zr5y856 Hexima (Australia)'),
(75404, 'https://ror.org/00jhgmb27', 'no_lang_code', 1, 'https://ror.org/00jhgmb27 iCeutica (United States)'),
(75405, 'https://ror.org/01ttqf142', 'no_lang_code', 1, 'https://ror.org/01ttqf142 Honshu Chemical Industry (Japan) ęœ¬å·žåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75406, 'https://ror.org/02v8v9r81', 'no_lang_code', 1, 'https://ror.org/02v8v9r81 Ichnos Sciences (United States)'),
(75407, 'https://ror.org/05qakzx30', 'no_lang_code', 1, 'https://ror.org/05qakzx30 IMDS (United States)'),
(75408, 'https://ror.org/03m06c639', 'no_lang_code', 1, 'https://ror.org/03m06c639 Immunolight (United States)'),
(75409, 'https://ror.org/03kxtd827', 'no_lang_code', 1, 'https://ror.org/03kxtd827 Hoyu (Japan) ćƒ›ćƒ¼ćƒ¦ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(75410, 'https://ror.org/053htj969', 'no_lang_code', 1, 'https://ror.org/053htj969 Clement Clarke International (United Kingdom)'),
(75411, 'https://ror.org/047wzf575', 'no_lang_code', 1, 'https://ror.org/047wzf575 ICU Medical (United States)'),
(75412, 'https://ror.org/04w44zd51', 'no_lang_code', 1, 'https://ror.org/04w44zd51 Ferno (United Kingdom)'),
(75413, 'https://ror.org/05abxfb94', 'no_lang_code', 1, 'https://ror.org/05abxfb94 Immunovative Therapies (Israel)'),
(75414, 'https://ror.org/05dy80606', 'no_lang_code', 1, 'https://ror.org/05dy80606 Zacros (Japan)'),
(75415, 'https://ror.org/03f6bb727', 'no_lang_code', 1, 'https://ror.org/03f6bb727 IGM Biosciences (United States)'),
(75416, 'https://ror.org/046z2j897', 'no_lang_code', 1, 'https://ror.org/046z2j897 Golden Biotech (Taiwan) åœ‹é¼Žē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(75417, 'https://ror.org/04rcck644', 'no_lang_code', 1, 'https://ror.org/04rcck644 Marcus (United States)'),
(75418, 'https://ror.org/02x8kt557', 'no_lang_code', 1, 'https://ror.org/02x8kt557 Impedimed (Australia)'),
(75419, 'https://ror.org/05g8qng11', 'no_lang_code', 1, 'https://ror.org/05g8qng11 Implantica (Switzerland)'),
(75420, 'https://ror.org/02vv1hv80', 'no_lang_code', 1, 'https://ror.org/02vv1hv80 HealthpointCapital (United States)'),
(75421, 'https://ror.org/05a2ass35', 'no_lang_code', 1, 'https://ror.org/05a2ass35 IMRIS (United States)'),
(75422, 'https://ror.org/05fdwfk56', 'no_lang_code', 1, 'https://ror.org/05fdwfk56 CK Hutchison (China) é•·ę±Ÿå’ŒčØ˜åÆ¦ę„­ęœ‰é™å…¬åø'),
(75423, 'https://ror.org/02sjajj43', 'no_lang_code', 1, 'https://ror.org/02sjajj43 IGM Group (Greece)'),
(75424, 'https://ror.org/04b885n69', 'no_lang_code', 1, 'https://ror.org/04b885n69 KalƩo (United States)'),
(75425, 'https://ror.org/01nnvad46', 'no_lang_code', 1, 'https://ror.org/01nnvad46 Hydromer (United States)'),
(75426, 'https://ror.org/05vebts22', 'no_lang_code', 1, 'https://ror.org/05vebts22 Hyprotek (United States)'),
(75427, 'https://ror.org/00az06337', 'no_lang_code', 1, 'https://ror.org/00az06337 ORIG3N (United States)'),
(75428, 'https://ror.org/01xvdt027', 'no_lang_code', 1, 'https://ror.org/01xvdt027 Intersect ENT (United States)'),
(75429, 'https://ror.org/020hmha06', 'en', 1, 'https://ror.org/020hmha06 Nordic Laboratory for Luminescence Dating Nordisk Laboratorium for Luminescensdatering'),
(75430, 'https://ror.org/0574dvv95', 'no_lang_code', 1, 'https://ror.org/0574dvv95 Recipharm (France)'),
(75431, 'https://ror.org/00pw1cb61', 'no_lang_code', 1, 'https://ror.org/00pw1cb61 Vyne Therapeutics (Israel)'),
(75432, 'https://ror.org/02tdz2z81', 'en', 1, 'https://ror.org/02tdz2z81 International Investment Bank Nemzetkƶzi BeruhƔzƔsi Bank'),
(75433, 'https://ror.org/0382c3j25', 'nl', 1, 'https://ror.org/0382c3j25 Nederlands Instituut Forensische Psychiatrie'),
(75434, 'https://ror.org/002823j22', 'en', 1, 'https://ror.org/002823j22 International Education Specialist College'),
(75435, 'https://ror.org/01m12mf31', 'no_lang_code', 1, 'https://ror.org/01m12mf31 Indus Biotech (India)'),
(75436, 'https://ror.org/02hj1n344', 'no_lang_code', 1, 'https://ror.org/02hj1n344 Industriale Chimica (Italy)'),
(75437, 'https://ror.org/05nkvqx24', 'no_lang_code', 1, 'https://ror.org/05nkvqx24 Industrie Borla (Italy)'),
(75438, 'https://ror.org/00s4w8768', 'no_lang_code', 1, 'https://ror.org/00s4w8768 First Quality (United States)'),
(75439, 'https://ror.org/05fj65g09', 'no_lang_code', 1, 'https://ror.org/05fj65g09 Incept (United States)'),
(75440, 'https://ror.org/03pchte23', 'no_lang_code', 1, 'https://ror.org/03pchte23 Infinitus (China) ę— é™ęžäø­åæƒ'),
(75441, 'https://ror.org/00gga3b91', 'no_lang_code', 1, 'https://ror.org/00gga3b91 Fisher & Paykel Appliances (New Zealand)'),
(75442, 'https://ror.org/036s90x07', 'no_lang_code', 1, 'https://ror.org/036s90x07 InCube Labs (United States)'),
(75443, 'https://ror.org/05h4bm507', 'no_lang_code', 1, 'https://ror.org/05h4bm507 STgenetics (United States)'),
(75444, 'https://ror.org/02zx0np06', 'no_lang_code', 1, 'https://ror.org/02zx0np06 Indian Ocean Medical Trading (Somalia)'),
(75445, 'https://ror.org/00p6fj621', 'no_lang_code', 1, 'https://ror.org/00p6fj621 Inis Biotech (Argentina)'),
(75446, 'https://ror.org/0309xc572', 'no_lang_code', 1, 'https://ror.org/0309xc572 Frontline Medical Products (United States)'),
(75447, 'https://ror.org/01dj1tt46', 'no_lang_code', 1, 'https://ror.org/01dj1tt46 Neuraxpharm (Spain)'),
(75448, 'https://ror.org/00emba706', 'no_lang_code', 1, 'https://ror.org/00emba706 Iridex (United States)'),
(75449, 'https://ror.org/04ney8y20', 'no_lang_code', 1, 'https://ror.org/04ney8y20 Glidewell (United States)'),
(75450, 'https://ror.org/05efkgw62', 'no_lang_code', 1, 'https://ror.org/05efkgw62 Innoviva (United States)'),
(75451, 'https://ror.org/04f1wdm76', 'no_lang_code', 1, 'https://ror.org/04f1wdm76 Gencor (China)'),
(75452, 'https://ror.org/012ktab60', 'no_lang_code', 1, 'https://ror.org/012ktab60 BrightPath Biotherapeutics (Japan)'),
(75453, 'https://ror.org/00qhpe738', 'no_lang_code', 1, 'https://ror.org/00qhpe738 Insightra Medical (United States)'),
(75454, 'https://ror.org/00r8dbc04', 'no_lang_code', 1, 'https://ror.org/00r8dbc04 Floratech (United States)'),
(75455, 'https://ror.org/000j0ys55', 'no_lang_code', 1, 'https://ror.org/000j0ys55 Grindeks (Latvia)'),
(75456, 'https://ror.org/05wpf8f91', 'no_lang_code', 1, 'https://ror.org/05wpf8f91 Integra LifeSciences (Switzerland)'),
(75457, 'https://ror.org/01xg16290', 'no_lang_code', 1, 'https://ror.org/01xg16290 Isagro (Italy)'),
(75458, 'https://ror.org/00tbnam70', 'no_lang_code', 1, 'https://ror.org/00tbnam70 iSense (United States)'),
(75459, 'https://ror.org/05fcgnx79', 'no_lang_code', 1, 'https://ror.org/05fcgnx79 Juul (United States)'),
(75460, 'https://ror.org/01whq1k34', 'en', 1, 'https://ror.org/01whq1k34 Biomedical Translation Research Center'),
(75461, 'https://ror.org/03ckxwf91', 'en', 1, 'https://ror.org/03ckxwf91 RIKEN Center for Advanced Intelligence Project ē‰¹å®šå›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ é©ę–°ēŸ„čƒ½ēµ±åˆē ”ē©¶ć‚»ćƒ³ć‚æ'),
(75462, 'https://ror.org/00q5t0010', 'en', 1, 'https://ror.org/00q5t0010 Leibniz Institute for Resilience Research Leibniz-Institut für Resilienzforschung'),
(75463, 'https://ror.org/05wxywg93', 'en', 1, 'https://ror.org/05wxywg93 Leibniz Institute for Financial Research SAFE Leibniz-Institut für Finanzmarktforschung Sustainable Architecture for Finance in Europe'),
(75464, 'https://ror.org/00s05em53', 'en', 1, 'https://ror.org/00s05em53 RIKEN BioResource Research Center ē†ē ”ćƒć‚¤ć‚ŖćƒŖć‚½ćƒ¼ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(75465, 'https://ror.org/00wf92r40', 'no_lang_code', 1, 'https://ror.org/00wf92r40 JW Medical Systems (China)'),
(75466, 'https://ror.org/01m9x8p33', 'no_lang_code', 1, 'https://ror.org/01m9x8p33 Isochem (France)'),
(75467, 'https://ror.org/032akv382', 'no_lang_code', 1, 'https://ror.org/032akv382 Aurinia (Canada)'),
(75468, 'https://ror.org/01ze2td62', 'no_lang_code', 1, 'https://ror.org/01ze2td62 Humanigen (United States)'),
(75469, 'https://ror.org/05bqwrx65', 'no_lang_code', 1, 'https://ror.org/05bqwrx65 IZI Medical (United States)'),
(75470, 'https://ror.org/016065f51', 'no_lang_code', 1, 'https://ror.org/016065f51 Kanto Chemical (Japan)'),
(75471, 'https://ror.org/04gwmyf31', 'no_lang_code', 1, 'https://ror.org/04gwmyf31 Katalyst Surgical (United States)'),
(75472, 'https://ror.org/03d5fcq90', 'no_lang_code', 1, 'https://ror.org/03d5fcq90 Curt G Joa (United States)'),
(75473, 'https://ror.org/02faq6h04', 'no_lang_code', 1, 'https://ror.org/02faq6h04 Air Water (Japan)'),
(75474, 'https://ror.org/001ex3n55', 'no_lang_code', 1, 'https://ror.org/001ex3n55 KOB (Germany)'),
(75475, 'https://ror.org/0018afc35', 'no_lang_code', 1, 'https://ror.org/0018afc35 JGC Catalysts and Chemicals (Japan)'),
(75476, 'https://ror.org/03qq2mk98', 'no_lang_code', 1, 'https://ror.org/03qq2mk98 KM Biologics (Japan) KMćƒć‚¤ć‚Ŗćƒ­ć‚øć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(75477, 'https://ror.org/04vf2n046', 'no_lang_code', 1, 'https://ror.org/04vf2n046 Kobayashi Pharmaceutical (Japan)'),
(75478, 'https://ror.org/023s2h905', 'no_lang_code', 1, 'https://ror.org/023s2h905 JGC (Japan) ę—„ę®ę Ŗå¼ä¼šē¤¾'),
(75479, 'https://ror.org/05849hq48', 'no_lang_code', 1, 'https://ror.org/05849hq48 KDS Development (United States)'),
(75480, 'https://ror.org/05rqzv890', 'no_lang_code', 1, 'https://ror.org/05rqzv890 Kobo Products (United States)'),
(75481, 'https://ror.org/02502ye72', 'no_lang_code', 1, 'https://ror.org/02502ye72 Kode Biotech (New Zealand)'),
(75482, 'https://ror.org/01jh73d13', 'no_lang_code', 1, 'https://ror.org/01jh73d13 Kemin (Belgium)'),
(75483, 'https://ror.org/0286p0f76', 'no_lang_code', 1, 'https://ror.org/0286p0f76 KemPharm (United States)'),
(75484, 'https://ror.org/0342pra74', 'no_lang_code', 1, 'https://ror.org/0342pra74 Koei Chemical (Japan) åŗƒę „åŒ–å­¦'),
(75485, 'https://ror.org/00r23cm16', 'no_lang_code', 1, 'https://ror.org/00r23cm16 Groupe Lesaffre Lesaffre (France)'),
(75486, 'https://ror.org/05mg74j30', 'it', 1, 'https://ror.org/05mg74j30 Fondazione Piemontese per la Ricerca sul Cancro Onlus'),
(75487, 'https://ror.org/00zjvm038', 'no_lang_code', 1, 'https://ror.org/00zjvm038 SecurAcath (United States)'),
(75488, 'https://ror.org/01yx4wq53', 'en', 1, 'https://ror.org/01yx4wq53 Delta Institute for Theoretical Physics'),
(75489, 'https://ror.org/0225a5s12', 'en', 1, 'https://ror.org/0225a5s12 Collaborative Innovation Center of Chemical Science and Engineering Tianjin å¤©ę“„åŒ–å­¦åŒ–å·„ååŒåˆ›ę–°äø­åæƒ'),
(75490, 'https://ror.org/02rcsxq19', 'no_lang_code', 1, 'https://ror.org/02rcsxq19 Eneos (Japan) ć‚Øćƒć‚Ŗć‚¹'),
(75491, 'https://ror.org/02w5xy446', 'en', 1, 'https://ror.org/02w5xy446 CAS Key Laboratory of Urban Pollutant Conversion äø­å›½ē§‘å­¦é™¢åŸŽåø‚ę±”ęŸ“ē‰©č½¬åŒ–é‡ē‚¹å®žéŖŒå®¤'),
(75492, 'https://ror.org/03b33b866', 'no_lang_code', 1, 'https://ror.org/03b33b866 KettenbachDental (Germany)'),
(75493, 'https://ror.org/00qfke340', 'en', 1, 'https://ror.org/00qfke340 Institute of Molecular Functional Materials åˆ†å­åŠŸčƒ½ęę–™ē ”ē©¶ę‰€'),
(75494, 'https://ror.org/004x7d471', 'en', 1, 'https://ror.org/004x7d471 Center for Light Energy Activated Redox Processes'),
(75495, 'https://ror.org/03sa1qm07', 'no_lang_code', 1, 'https://ror.org/03sa1qm07 Kyulux (Japan)'),
(75496, 'https://ror.org/05jtgpc57', 'en', 1, 'https://ror.org/05jtgpc57 Joint Center for Artificial Photosynthesis'),
(75497, 'https://ror.org/038ey3e97', 'en', 1, 'https://ror.org/038ey3e97 State Key Laboratory of Synthetic Chemistry åˆęˆåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(75498, 'https://ror.org/02048n894', 'en', 1, 'https://ror.org/02048n894 Joint Center for Quantum Information and Computer Science'),
(75499, 'https://ror.org/01h772984', 'en', 1, 'https://ror.org/01h772984 Southern Nevada Water Authority'),
(75500, 'https://ror.org/05x8b4491', 'en', 1, 'https://ror.org/05x8b4491 DKFZ-ZMBH Alliance'),
(75501, 'https://ror.org/0441q2c30', 'de', 1, 'https://ror.org/0441q2c30 DVGW - Technologiezentrum Wasser DVGW - Water Technology Center'),
(75502, 'https://ror.org/000aqgk72', 'de', 1, 'https://ror.org/000aqgk72 Photonik-Zentrum Kaiserslautern'),
(75503, 'https://ror.org/05r01jn71', 'no_lang_code', 1, 'https://ror.org/05r01jn71 HoMedics (United States)'),
(75504, 'https://ror.org/02tk0sb78', 'no_lang_code', 1, 'https://ror.org/02tk0sb78 Josef Meissner (Germany)'),
(75505, 'https://ror.org/01rwvbt41', 'no_lang_code', 1, 'https://ror.org/01rwvbt41 Integer (United States)'),
(75506, 'https://ror.org/01nm9xk96', 'no_lang_code', 1, 'https://ror.org/01nm9xk96 Kumho Petrochemical (South Korea) źøˆķ˜øģ„ģœ ķ™”ķ•™ ģ£¼ģ‹ķšŒģ‚¬'),
(75507, 'https://ror.org/04gvffr66', 'no_lang_code', 1, 'https://ror.org/04gvffr66 Olon (Italy)'),
(75508, 'https://ror.org/042d6f122', 'no_lang_code', 1, 'https://ror.org/042d6f122 Lacer (Spain)'),
(75509, 'https://ror.org/00b1jmk08', 'no_lang_code', 1, 'https://ror.org/00b1jmk08 Huizhou Kimree Technology (China) ęƒ å·žåø‚é‡‘ē‘žē§‘ęŠ€ęœ‰é™å…¬åø'),
(75510, 'https://ror.org/058wwsg41', 'no_lang_code', 1, 'https://ror.org/058wwsg41 Kinamed (United States)'),
(75511, 'https://ror.org/0388j8115', 'no_lang_code', 1, 'https://ror.org/0388j8115 Kind Consumer (United Kingdom)'),
(75512, 'https://ror.org/00sz65064', 'no_lang_code', 1, 'https://ror.org/00sz65064 Kringle Pharma (Japan) ć‚ÆćƒŖćƒ³ć‚°ćƒ«ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(75513, 'https://ror.org/04j0nks26', 'no_lang_code', 1, 'https://ror.org/04j0nks26 Kindeva Drug Delivery (United States)'),
(75514, 'https://ror.org/00jep9q10', 'no_lang_code', 1, 'https://ror.org/00jep9q10 KOSƉ (Japan) ę Ŗå¼ä¼šē¤¾ć‚³ćƒ¼ć‚»ćƒ¼'),
(75515, 'https://ror.org/00ghe3j58', 'no_lang_code', 1, 'https://ror.org/00ghe3j58 Koken (Japan) ę Ŗå¼ä¼šē¤¾é«˜ē ”'),
(75516, 'https://ror.org/00fc1yz57', 'no_lang_code', 1, 'https://ror.org/00fc1yz57 Laboratorios FarmaceĆŗticos Rovi (Spain)'),
(75517, 'https://ror.org/018mtsg06', 'no_lang_code', 1, 'https://ror.org/018mtsg06 Klox Technologies (Canada)'),
(75518, 'https://ror.org/04daygj89', 'es', 1, 'https://ror.org/04daygj89 Fundación María Cristina Masaveu Peterson María Cristina Masaveu Peterson Foundation'),
(75519, 'https://ror.org/05rdn4880', 'no_lang_code', 1, 'https://ror.org/05rdn4880 Lamberti (Italy)'),
(75520, 'https://ror.org/044g40g24', 'no_lang_code', 1, 'https://ror.org/044g40g24 Kumiai Chemical Industry (Japan) ć‚ÆćƒŸć‚¢ć‚¤åŒ–å­¦å·„ę„­'),
(75521, 'https://ror.org/01kqb2f52', 'no_lang_code', 1, 'https://ror.org/01kqb2f52 Kuraray Noritake Dental (Japan) ć‚Æćƒ©ćƒ¬ćƒŽćƒŖć‚æć‚±ćƒ‡ćƒ³ć‚æćƒ«ę Ŗå¼ä¼šē¤¾'),
(75522, 'https://ror.org/00jffhp45', 'no_lang_code', 1, 'https://ror.org/00jffhp45 POGO (United States)'),
(75523, 'https://ror.org/00v7p0n49', 'no_lang_code', 1, 'https://ror.org/00v7p0n49 Kyoto Pharmaceutical Industries (Japan) äŗ¬éƒ½č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75524, 'https://ror.org/04dptbd37', 'no_lang_code', 1, 'https://ror.org/04dptbd37 Kyowa Chemical Industry (Japan) å”å’ŒåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75525, 'https://ror.org/00qw2t413', 'no_lang_code', 1, 'https://ror.org/00qw2t413 Lifetech Scientific (China)'),
(75526, 'https://ror.org/007jmsy64', 'no_lang_code', 1, 'https://ror.org/007jmsy64 Laurus labs (India)'),
(75527, 'https://ror.org/02mnnbz19', 'no_lang_code', 1, 'https://ror.org/02mnnbz19 LeMaitre Vascular (United States)'),
(75528, 'https://ror.org/000z94124', 'no_lang_code', 1, 'https://ror.org/000z94124 Lensar (United States)'),
(75529, 'https://ror.org/05bh5xp98', 'no_lang_code', 1, 'https://ror.org/05bh5xp98 LimaCorporate (Italy)'),
(75530, 'https://ror.org/02gx5k306', 'no_lang_code', 1, 'https://ror.org/02gx5k306 Lexion Medical (United States)'),
(75531, 'https://ror.org/05e6hyp29', 'no_lang_code', 1, 'https://ror.org/05e6hyp29 Linak (Denmark)'),
(75532, 'https://ror.org/01813aq51', 'no_lang_code', 1, 'https://ror.org/01813aq51 Lohmann & Rauscher (Germany)'),
(75533, 'https://ror.org/03ey2p503', 'no_lang_code', 1, 'https://ror.org/03ey2p503 Linares Medical Devices (United States)'),
(75534, 'https://ror.org/00ssdzp21', 'no_lang_code', 1, 'https://ror.org/00ssdzp21 Lohmann (Germany)'),
(75535, 'https://ror.org/05fj56d84', 'no_lang_code', 1, 'https://ror.org/05fj56d84 Lorem Vascular (Singapore)'),
(75536, 'https://ror.org/03hh80g63', 'no_lang_code', 1, 'https://ror.org/03hh80g63 Lipocine (United States)'),
(75537, 'https://ror.org/01t2z2m96', 'no_lang_code', 1, 'https://ror.org/01t2z2m96 Lotte Fine Chemical (South Korea)'),
(75538, 'https://ror.org/00xt1mj08', 'no_lang_code', 1, 'https://ror.org/00xt1mj08 LRC Products (United States)'),
(75539, 'https://ror.org/00g5xkr82', 'no_lang_code', 1, 'https://ror.org/00g5xkr82 Lianyungang Runzhong Pharmaceutical (China) čæžäŗ‘ęøÆę¶¦ä¼—åˆ¶čÆęœ‰é™å…¬åø'),
(75540, 'https://ror.org/02fbcvn06', 'no_lang_code', 1, 'https://ror.org/02fbcvn06 Life Spine (United States)'),
(75541, 'https://ror.org/05f8zq626', 'no_lang_code', 1, 'https://ror.org/05f8zq626 Lumtec (Taiwan)'),
(75542, 'https://ror.org/00mdwv587', 'no_lang_code', 1, 'https://ror.org/00mdwv587 Lungpacer Medical (Canada)'),
(75543, 'https://ror.org/05cb4rb43', 'en', 1, 'https://ror.org/05cb4rb43 Morgridge Institute for Research'),
(75544, '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'),
(75545, 'https://ror.org/027h6z252', 'it', 1, 'https://ror.org/027h6z252 Agenzia Regionale Sanitaria della Puglia'),
(75546, 'https://ror.org/007022329', 'en', 1, 'https://ror.org/007022329 European Regional and Local Health Authorities'),
(75547, 'https://ror.org/00mz4by06', 'en', 1, 'https://ror.org/00mz4by06 Provinciaal Instituut voor Hygiƫne Provincial Institute for Hygiene'),
(75548, 'https://ror.org/03e8tm275', 'en', 1, 'https://ror.org/03e8tm275 Shriners Hospitals for Children'),
(75549, 'https://ror.org/02qexn916', 'en', 1, 'https://ror.org/02qexn916 Fondazione Banca degli Occhi del Veneto Onlus Veneto Eye Bank Foundation'),
(75550, 'https://ror.org/00pdgtx79', 'fr', 1, 'https://ror.org/00pdgtx79 Institut SupƩrieur de DƩveloppement Rural'),
(75551, 'https://ror.org/008y8yz21', 'en', 1, 'https://ror.org/008y8yz21 European Research Infrastructure on Highly Pathogenic Agents'),
(75552, 'https://ror.org/00hm4a331', 'en', 1, 'https://ror.org/00hm4a331 Antwerp Management School'),
(75553, 'https://ror.org/05r4c6c72', 'en', 1, 'https://ror.org/05r4c6c72 Hague Institute of Private International and Foreign Law Stichting Internationaal Juridisch Instituut'),
(75554, 'https://ror.org/05qk04938', 'no_lang_code', 1, 'https://ror.org/05qk04938 Lutronic (South Korea)'),
(75555, 'https://ror.org/05e9vrw02', 'en', 1, 'https://ror.org/05e9vrw02 Caritas Cyprus'),
(75556, 'https://ror.org/059tf1p39', 'nl', 1, 'https://ror.org/059tf1p39 Domus Medica'),
(75557, 'https://ror.org/00kc2sb72', 'fr', 1, 'https://ror.org/00kc2sb72 Centre Hospitalier RƩgional de Namur'),
(75558, 'https://ror.org/02gfcg256', 'no_lang_code', 1, 'https://ror.org/02gfcg256 Lysando (Liechtenstein)'),
(75559, 'https://ror.org/02x33sm05', 'en', 1, 'https://ror.org/02x33sm05 GoodPlanet Belgium'),
(75560, 'https://ror.org/02q6q3y87', 'fr', 1, 'https://ror.org/02q6q3y87 CHR Verviers'),
(75561, 'https://ror.org/04cj8by85', 'en', 1, 'https://ror.org/04cj8by85 International Foundation for Integrated Care'),
(75562, 'https://ror.org/03wh5v523', 'no_lang_code', 1, 'https://ror.org/03wh5v523 Machida Endoscope (Japan) ę Ŗå¼ä¼šē¤¾ē”ŗē”°č£½ä½œę‰€'),
(75563, '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'),
(75564, 'https://ror.org/049t4as69', 'fr', 1, 'https://ror.org/049t4as69 RƩseau des Acheteurs Hospitaliers'),
(75565, 'https://ror.org/045pdpn43', 'en', 1, 'https://ror.org/045pdpn43 Flanders Institute for Logistics Vlaams Instituut voor de Logistiek'),
(75566, 'https://ror.org/058j17k65', 'no_lang_code', 1, 'https://ror.org/058j17k65 Magic Leap (United States)'),
(75567, 'https://ror.org/03wj3r219', 'no_lang_code', 1, 'https://ror.org/03wj3r219 Magnolia Medical Technologies (United States)'),
(75568, 'https://ror.org/01nrhd027', 'nl', 1, 'https://ror.org/01nrhd027 Flemish Patiƫnt Platform vzw Vlaams Patiƫntenplatform'),
(75569, 'https://ror.org/0043ys591', 'no_lang_code', 1, 'https://ror.org/0043ys591 Magstim (United Kingdom)'),
(75570, 'https://ror.org/04gqv6f58', 'en', 1, 'https://ror.org/04gqv6f58 Missing Children Europe'),
(75571, 'https://ror.org/03xexem68', 'en', 1, 'https://ror.org/03xexem68 International Centre for Archival Research'),
(75572, 'https://ror.org/04tfcjh39', 'en', 1, 'https://ror.org/04tfcjh39 Child Rights Foundation Hintalovon Alapitvany'),
(75573, 'https://ror.org/03jc8h907', 'no_lang_code', 1, 'https://ror.org/03jc8h907 Aurigon (Hungary)'),
(75574, 'https://ror.org/02sdxcs63', 'en', 1, 'https://ror.org/02sdxcs63 Flemish Institute for Archives Vlaams Instituut voor Archivering'),
(75575, 'https://ror.org/03bwytd49', 'en', 1, 'https://ror.org/03bwytd49 HFC Hope for Children CRC Policy Center'),
(75576, 'https://ror.org/0123nj144', 'en', 1, 'https://ror.org/0123nj144 Egyptian Center for Innovation and Technology Development'),
(75577, 'https://ror.org/00svpda47', 'en', 1, 'https://ror.org/00svpda47 Euro-Arab Foundation for Higher Studies'),
(75578, 'https://ror.org/0131vqf73', 'no_lang_code', 1, 'https://ror.org/0131vqf73 LiveDo (Japan)'),
(75579, 'https://ror.org/032296482', 'no_lang_code', 1, 'https://ror.org/032296482 MAM Babyartikel (Germany)'),
(75580, 'https://ror.org/00fcv5w97', 'no_lang_code', 1, 'https://ror.org/00fcv5w97 Loewenstein Medical Technology (Germany)'),
(75581, 'https://ror.org/042b03f56', 'no_lang_code', 1, 'https://ror.org/042b03f56 Mane (France)'),
(75582, 'https://ror.org/04wgzww60', 'no_lang_code', 1, 'https://ror.org/04wgzww60 Mangar Health (United Kingdom)'),
(75583, 'https://ror.org/00zaasm74', 'no_lang_code', 1, 'https://ror.org/00zaasm74 MANI (Japan)'),
(75584, 'https://ror.org/0096ngc39', 'no_lang_code', 1, 'https://ror.org/0096ngc39 Medibeacon (United States)'),
(75585, 'https://ror.org/0143ggv59', 'no_lang_code', 1, 'https://ror.org/0143ggv59 Israel Corp (Israel) החברה ×œ×™×©×Ø××œ'),
(75586, 'https://ror.org/023dqar74', 'en', 1, 'https://ror.org/023dqar74 Intelligent Synthetic Biology Center ģ§€ėŠ„ķ˜• ė°”ģ“ģ˜¤ģ‹œģŠ¤ķ…œ 설계 ė° 합성 연구단'),
(75587, 'https://ror.org/01jbsqt52', 'no_lang_code', 1, 'https://ror.org/01jbsqt52 Medical Components (United States)'),
(75588, 'https://ror.org/01g67he48', 'no_lang_code', 1, 'https://ror.org/01g67he48 Medicaroid (Japan) ćƒ”ćƒ‡ć‚£ć‚«ćƒ­ć‚¤ćƒ‰'),
(75589, 'https://ror.org/019gqj590', 'no_lang_code', 1, 'https://ror.org/019gqj590 Mardil (United States)'),
(75590, 'https://ror.org/00a4gmh33', 'no_lang_code', 1, 'https://ror.org/00a4gmh33 Barricaid (United States)'),
(75591, 'https://ror.org/0244stc74', 'no_lang_code', 1, 'https://ror.org/0244stc74 Koh Young Technology (South Korea)'),
(75592, 'https://ror.org/059ab3182', 'no_lang_code', 1, 'https://ror.org/059ab3182 Medicomp (United States)'),
(75593, 'https://ror.org/02eb03q95', 'no_lang_code', 1, 'https://ror.org/02eb03q95 Adhera Therapeutics (United States)'),
(75594, 'https://ror.org/02fx6bp88', 'no_lang_code', 1, 'https://ror.org/02fx6bp88 Marine Polymer Technologies (United States)'),
(75595, 'https://ror.org/032133427', 'no_lang_code', 1, 'https://ror.org/032133427 Lumenis (Israel)'),
(75596, 'https://ror.org/05n8wtj80', 'no_lang_code', 1, 'https://ror.org/05n8wtj80 Mapi Pharma (Israel)'),
(75597, 'https://ror.org/0365pmp63', 'no_lang_code', 1, 'https://ror.org/0365pmp63 Maruishi Pharmaceutical (Japan) äøøēŸ³č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(75598, 'https://ror.org/04yxrw198', 'no_lang_code', 1, 'https://ror.org/04yxrw198 MediGuide (United States)'),
(75599, 'https://ror.org/03t8x3a11', 'no_lang_code', 1, 'https://ror.org/03t8x3a11 Cosmo Energy (Japan) ć‚³ć‚¹ćƒ¢ć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(75600, 'https://ror.org/02gkg4976', 'no_lang_code', 1, 'https://ror.org/02gkg4976 Medigus (Israel)'),
(75601, 'https://ror.org/01k48et73', 'no_lang_code', 1, 'https://ror.org/01k48et73 Maui Imaging (United States)'),
(75602, 'https://ror.org/03756wp26', 'no_lang_code', 1, 'https://ror.org/03756wp26 Medinol (Israel)'),
(75603, 'https://ror.org/03z02zc05', 'no_lang_code', 1, 'https://ror.org/03z02zc05 Medrobotics (United States)'),
(75604, 'https://ror.org/023s4zc74', 'no_lang_code', 1, 'https://ror.org/023s4zc74 Mayne Pharma (Australia)'),
(75605, 'https://ror.org/012cvjw59', 'no_lang_code', 1, 'https://ror.org/012cvjw59 Meagan Medical (United States)'),
(75606, 'https://ror.org/02w6mtg63', 'no_lang_code', 1, 'https://ror.org/02w6mtg63 Cantel Medical (United States)'),
(75607, 'https://ror.org/049h10h83', 'en', 1, 'https://ror.org/049h10h83 Tartu Ülikooli Loodusmuuseum University of Tartu Natural History Museum and Botanical Garden'),
(75608, 'https://ror.org/00qc6xh17', 'no_lang_code', 1, 'https://ror.org/00qc6xh17 Medacta International (Switzerland)'),
(75609, 'https://ror.org/033705f12', 'no_lang_code', 1, 'https://ror.org/033705f12 MEDRx (Japan)'),
(75610, 'https://ror.org/03q3hjg87', 'en', 1, 'https://ror.org/03q3hjg87 Research Institute of Wood Industry äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ ęœØęå·„äøšē ”ē©¶ę‰€'),
(75611, 'https://ror.org/051gfkj61', 'en', 1, 'https://ror.org/051gfkj61 Experimental Center of Forestry in North China äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢åŽåŒ—ęž—äøšå®žéŖŒäø­åæƒ'),
(75612, 'https://ror.org/00xymz606', 'en', 1, 'https://ror.org/00xymz606 Institute of Desertification Studies č’ę¼ åŒ–ē ”ē©¶ę‰€'),
(75613, 'https://ror.org/00z62fe95', 'no_lang_code', 1, 'https://ror.org/00z62fe95 Merete (Germany)'),
(75614, 'https://ror.org/05mks4240', 'en', 1, 'https://ror.org/05mks4240 Institute of Forest Ecology, Environment and Protection äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ę£®ęž—ē”Ÿę€ēŽÆå¢ƒäøŽäæęŠ¤ē ”ē©¶ę‰€'),
(75615, 'https://ror.org/01h5d6x15', 'en', 1, 'https://ror.org/01h5d6x15 Institute of Forest Resource Information Techniques äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢čµ„ęŗäæ”ęÆē ”ē©¶ę‰€'),
(75616, 'https://ror.org/05q5gzy49', 'en', 1, 'https://ror.org/05q5gzy49 Institute of New Technology of Forestry'),
(75617, 'https://ror.org/032e3d072', 'en', 1, 'https://ror.org/032e3d072 Institute of Wetland Research äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ę¹æåœ°ē ”ē©¶ę‰€'),
(75618, 'https://ror.org/01th5x258', 'en', 1, 'https://ror.org/01th5x258 Institute of Chemical Industry of Forest Products äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ęž—äŗ§åŒ–å­¦å·„äøšē ”ē©¶ę‰€'),
(75619, 'https://ror.org/03kczcb35', 'no_lang_code', 1, 'https://ror.org/03kczcb35 Merus (Netherlands)'),
(75620, 'https://ror.org/02nmvgz47', 'en', 1, 'https://ror.org/02nmvgz47 Research Institute of Forestry äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ęž—äøšē ”ē©¶ę‰€'),
(75621, 'https://ror.org/03b4jx157', 'en', 1, 'https://ror.org/03b4jx157 Research Institute of Resource Insects äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢čµ„ęŗę˜†č™«ē ”ē©¶ę‰€'),
(75622, 'https://ror.org/044snpb24', 'en', 1, 'https://ror.org/044snpb24 Research Institute of Forestry Policy and Information äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ęž—äøšē ”ē©¶ę‰€'),
(75623, 'https://ror.org/05sc11068', 'en', 1, 'https://ror.org/05sc11068 Research Institute of Subtropical Foresty äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢äŗšēƒ­åø¦ęž—äøšē ”ē©¶ę‰€'),
(75624, 'https://ror.org/00nkeq441', 'en', 1, 'https://ror.org/00nkeq441 Research Institute of Tropical Forestry äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ēƒ­åø¦ęž—äøšē ”ē©¶ę‰€'),
(75625, 'https://ror.org/008h0ge70', 'en', 1, 'https://ror.org/008h0ge70 Research Center of Saline and Akali Land of State Foresty Administration å›½å®¶ęž—äøšå±€ē›ē¢±åœ°ē ”ē©¶äø­åæƒäŗŽ'),
(75626, 'https://ror.org/041ms9k93', 'en', 1, 'https://ror.org/041ms9k93 Beijing Foresty Machinery Institute å›½å®¶ęž—äøšå’Œč‰åŽŸå±€åŒ—äŗ¬ęž—äøšęœŗę¢°ē ”ē©¶ę‰€'),
(75627, 'https://ror.org/02mj3be11', 'en', 1, 'https://ror.org/02mj3be11 Harbin Foresty Machinery Institute å›½å®¶ęž—äøšå±€å“ˆå°”ę»Øęž—äøšęœŗę¢°ē ”ē©¶ę‰€'),
(75628, 'https://ror.org/03rwvj817', 'no_lang_code', 1, 'https://ror.org/03rwvj817 Metran (Japan) ピトラン'),
(75629, 'https://ror.org/04e8tea51', 'no_lang_code', 1, 'https://ror.org/04e8tea51 Mevion Medical Systems (United States)'),
(75630, 'https://ror.org/01pj4qf10', 'en', 1, 'https://ror.org/01pj4qf10 Institute of Network Cultures'),
(75631, 'https://ror.org/050d14s15', 'en', 1, 'https://ror.org/050d14s15 Government Accountability Project'),
(75632, 'https://ror.org/01ab6z353', 'en', 1, 'https://ror.org/01ab6z353 American Action Forum'),
(75633, 'https://ror.org/058xg4r54', 'en', 1, 'https://ror.org/058xg4r54 Citizens Information Board'),
(75634, 'https://ror.org/0030sx194', 'no_lang_code', 1, 'https://ror.org/0030sx194 Altus Capital Partners (United States)'),
(75635, 'https://ror.org/04esmqk80', 'en', 1, 'https://ror.org/04esmqk80 Eucalyptus Research Center å›½å®¶ęž—äøšå’Œč‰åŽŸå±€ę”‰ę ‘ē ”ē©¶å¼€å‘äø­åæƒ'),
(75636, 'https://ror.org/02j7j4v81', 'no_lang_code', 1, 'https://ror.org/02j7j4v81 Paulownia Research Center å›½å®¶ęž—äøšå’Œč‰åŽŸå±€ę³”ę”ē ”ē©¶å¼€å‘äø­åæƒ'),
(75637, 'https://ror.org/04vadv522', 'en', 1, 'https://ror.org/04vadv522 Desert Forestry Experimental Center äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ę²™ę¼ ęž—äøšå®žéŖŒäø­åæƒ'),
(75638, 'https://ror.org/04jf69f85', 'en', 1, 'https://ror.org/04jf69f85 Experimental Center of Subtropical Forestry'),
(75639, 'https://ror.org/00rr70t41', 'en', 1, 'https://ror.org/00rr70t41 Experimental Center of Tropical Forestry äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ēƒ­åø¦ęž—äøšå®žéŖŒäø­åæƒ'),
(75640, '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'),
(75641, 'https://ror.org/05exhz950', 'no_lang_code', 1, 'https://ror.org/05exhz950 Akoya Biosciences (United States)'),
(75642, 'https://ror.org/006f8jv23', 'no_lang_code', 1, 'https://ror.org/006f8jv23 Fulcrum Therapeutics (United States)'),
(75643, 'https://ror.org/00bwm5s42', 'en', 1, 'https://ror.org/00bwm5s42 Te Kaunihera ā-Rohe o Waikato Waikato Regional Council'),
(75644, 'https://ror.org/02q0kch71', 'no_lang_code', 1, 'https://ror.org/02q0kch71 GenCat (United Kingdom)'),
(75645, 'https://ror.org/053344077', 'no_lang_code', 1, 'https://ror.org/053344077 Arsenal Biosciences (United States)'),
(75646, 'https://ror.org/011v4dm73', 'no_lang_code', 1, 'https://ror.org/011v4dm73 Averis Seeds (Netherlands)'),
(75647, 'https://ror.org/02wtsp571', 'en', 1, 'https://ror.org/02wtsp571 Hawke''s Bay Regional Council Te Kaunihera ā-Rohe o Te Matau-a-Māui'),
(75648, 'https://ror.org/059ytn208', 'no_lang_code', 1, 'https://ror.org/059ytn208 GenomeScan (Netherlands)'),
(75649, 'https://ror.org/03m691g30', 'en', 1, 'https://ror.org/03m691g30 Sabah Parks Taman-Taman Sabah'),
(75650, 'https://ror.org/0239xwa13', 'no_lang_code', 1, 'https://ror.org/0239xwa13 Helvetica Exploration Services (Switzerland)'),
(75651, 'https://ror.org/00ck5k311', 'no_lang_code', 1, 'https://ror.org/00ck5k311 Boundless Bio (United States)'),
(75652, 'https://ror.org/04rfxj670', 'no_lang_code', 1, 'https://ror.org/04rfxj670 Casma Therapeutics (United States)'),
(75653, 'https://ror.org/01h0bbn98', 'no_lang_code', 1, 'https://ror.org/01h0bbn98 Celltechgen (United States)'),
(75654, 'https://ror.org/01ycfd220', 'no_lang_code', 1, 'https://ror.org/01ycfd220 Cergentis (Netherlands)'),
(75655, 'https://ror.org/00gxg2532', 'en', 1, 'https://ror.org/00gxg2532 Association for BahÔ’í Studies'),
(75656, 'https://ror.org/00qmj8087', 'no_lang_code', 1, 'https://ror.org/00qmj8087 Ideaya Biosciences (United States)'),
(75657, 'https://ror.org/01mvsyt14', 'no_lang_code', 1, 'https://ror.org/01mvsyt14 Jnana Therapeutics (United States)'),
(75658, 'https://ror.org/03mq2gv27', 'no_lang_code', 1, 'https://ror.org/03mq2gv27 Cygnal Therapeutics (United States)'),
(75659, 'https://ror.org/0527cde49', 'no_lang_code', 1, 'https://ror.org/0527cde49 Epic Sciences (United States)'),
(75660, 'https://ror.org/03v44jk32', 'no_lang_code', 1, 'https://ror.org/03v44jk32 HZPC (Netherlands)'),
(75661, 'https://ror.org/026eeyk15', 'no', 1, 'https://ror.org/026eeyk15 Fjellhaug Internasjonale HĆøgskole Fjellhaug International University College'),
(75662, 'https://ror.org/028t9y815', 'en', 1, 'https://ror.org/028t9y815 German Coastal Engineering Research Council Kuratorium für Forschung im Küsteningenieurwesen'),
(75663, 'https://ror.org/030shh572', 'no_lang_code', 1, 'https://ror.org/030shh572 Future Science Group (United Kingdom)'),
(75664, 'https://ror.org/043h59p22', 'no_lang_code', 1, 'https://ror.org/043h59p22 Orbia (Mexico)'),
(75665, 'https://ror.org/00jzyfv14', 'no_lang_code', 1, 'https://ror.org/00jzyfv14 Meyra (Germany)'),
(75666, 'https://ror.org/005wzhk47', 'no_lang_code', 1, 'https://ror.org/005wzhk47 MiCell Technologies (United States)');
INSERT INTO `rors` VALUES
(75667, 'https://ror.org/03g878p38', 'no_lang_code', 1, 'https://ror.org/03g878p38 MicroMega (France)'),
(75668, 'https://ror.org/02q90qf63', 'no_lang_code', 1, 'https://ror.org/02q90qf63 Molecular Templates (United States)'),
(75669, 'https://ror.org/02yyjsa15', 'no_lang_code', 1, 'https://ror.org/02yyjsa15 MicroAire (United States)'),
(75670, 'https://ror.org/03p6znp21', 'no_lang_code', 1, 'https://ror.org/03p6znp21 Microban (United States)'),
(75671, 'https://ror.org/02dk28s26', 'no_lang_code', 1, 'https://ror.org/02dk28s26 Miragen Therapeutics (United States)'),
(75672, 'https://ror.org/036jn4298', 'en', 1, 'https://ror.org/036jn4298 The San Raffaele Telethon Institute for Gene Therapy'),
(75673, 'https://ror.org/03c05e753', 'no_lang_code', 1, 'https://ror.org/03c05e753 Misonix (United States)'),
(75674, 'https://ror.org/03hjnde67', 'no_lang_code', 1, 'https://ror.org/03hjnde67 ClearPoint Neuro (United States)'),
(75675, 'https://ror.org/00ehgcp58', 'no_lang_code', 1, 'https://ror.org/00ehgcp58 Mitaka Kohki (Japan)'),
(75676, 'https://ror.org/00v7rqs27', 'no_lang_code', 1, 'https://ror.org/00v7rqs27 Mitsui Sugar (Japan) äø‰äŗ•č£½ē³–ę Ŗå¼ä¼šē¤¾'),
(75677, 'https://ror.org/0457cab92', 'no_lang_code', 1, 'https://ror.org/0457cab92 Miyoshi Kasei (Japan) äø‰å„½åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(75678, 'https://ror.org/01eaqxy97', 'no_lang_code', 1, 'https://ror.org/01eaqxy97 Momentive (Japan) ćƒ¢ćƒ”ćƒ³ćƒ†ć‚£ćƒ–ćƒ»ćƒ‘ćƒ•ć‚©ćƒ¼ćƒžćƒ³ć‚¹ćƒ»ćƒžćƒ†ćƒŖć‚¢ćƒ«ć‚ŗćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(75679, 'https://ror.org/00z4kzd65', 'no_lang_code', 1, 'https://ror.org/00z4kzd65 Microline Surgical (United States)'),
(75680, 'https://ror.org/0345dvk21', 'no_lang_code', 1, 'https://ror.org/0345dvk21 Medtentia (Finland)'),
(75681, 'https://ror.org/00dsvzt91', 'no_lang_code', 1, 'https://ror.org/00dsvzt91 Mutabilis (France)'),
(75682, 'https://ror.org/04j9kzt69', 'no_lang_code', 1, 'https://ror.org/04j9kzt69 Mycovia Pharmaceuticals (United States)'),
(75683, 'https://ror.org/024kjmj54', 'no_lang_code', 1, 'https://ror.org/024kjmj54 Medtrade (United Kingdom)'),
(75684, 'https://ror.org/02ft3dk35', 'no_lang_code', 1, 'https://ror.org/02ft3dk35 Minerva Surgical (United States)'),
(75685, 'https://ror.org/01wzmc277', 'no_lang_code', 1, 'https://ror.org/01wzmc277 NAEJA-RGM Pharmaceuticals (Canada)'),
(75686, 'https://ror.org/05kdvbv21', 'no_lang_code', 1, 'https://ror.org/05kdvbv21 Mimedx (United States)'),
(75687, 'https://ror.org/02tezkz55', 'no_lang_code', 1, 'https://ror.org/02tezkz55 Nephros (United States)'),
(75688, 'https://ror.org/025y41g72', 'no_lang_code', 1, 'https://ror.org/025y41g72 Nagase ChemteX (Japan) ćƒŠć‚¬ć‚»ć‚±ćƒ ćƒ†ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(75689, 'https://ror.org/0121y9f76', 'no_lang_code', 1, 'https://ror.org/0121y9f76 NantWorks (United States)'),
(75690, 'https://ror.org/014pmjv51', 'no_lang_code', 1, 'https://ror.org/014pmjv51 Natreon (United States)'),
(75691, 'https://ror.org/00y650p73', 'no_lang_code', 1, 'https://ror.org/00y650p73 Neuboron (China)'),
(75692, 'https://ror.org/04cgxr267', 'no_lang_code', 1, 'https://ror.org/04cgxr267 NeuroMetrix (United States)'),
(75693, 'https://ror.org/01x1dz568', 'no_lang_code', 1, 'https://ror.org/01x1dz568 Neuronano (Sweden)'),
(75694, 'https://ror.org/0391nfv32', 'no_lang_code', 1, 'https://ror.org/0391nfv32 Neuronetics (United States)'),
(75695, 'https://ror.org/0083rgp58', 'no_lang_code', 1, 'https://ror.org/0083rgp58 Neurotech (United States)'),
(75696, 'https://ror.org/030w4f316', 'no_lang_code', 1, 'https://ror.org/030w4f316 Nemera (France)'),
(75697, 'https://ror.org/01xzey958', 'no_lang_code', 1, 'https://ror.org/01xzey958 Nemoto (Japan) ę ¹ęœ¬ęęž—å ‚'),
(75698, 'https://ror.org/0569qgz98', 'no_lang_code', 1, 'https://ror.org/0569qgz98 Meiko (Germany)'),
(75699, 'https://ror.org/01ngh1553', 'no_lang_code', 1, 'https://ror.org/01ngh1553 Avanos Medical (United States)'),
(75700, 'https://ror.org/05xk3sx84', 'no_lang_code', 1, 'https://ror.org/05xk3sx84 Neutrogena (United States)'),
(75701, 'https://ror.org/04x9bj553', 'no_lang_code', 1, 'https://ror.org/04x9bj553 New Japan Chemical (Japan) ę–°ę—„ęœ¬ē†åŒ–ę Ŗå¼ä¼šē¤¾'),
(75702, 'https://ror.org/03c55am86', 'no_lang_code', 1, 'https://ror.org/03c55am86 Nitto Boseki (Japan) ę—„ę±ē“”ēø¾ę Ŗå¼ä¼šē¤¾'),
(75703, 'https://ror.org/004sp0722', 'no_lang_code', 1, 'https://ror.org/004sp0722 Alpine Immune Sciences (United States)'),
(75704, 'https://ror.org/04c2v9g63', 'no_lang_code', 1, 'https://ror.org/04c2v9g63 Nutramax Laboratories (United States)'),
(75705, 'https://ror.org/02ptvta38', 'no_lang_code', 1, 'https://ror.org/02ptvta38 Nexstim (Finland)'),
(75706, 'https://ror.org/004tpxz33', 'no_lang_code', 1, 'https://ror.org/004tpxz33 Nichiban (Japan) ćƒ‹ćƒćƒćƒ³ę Ŗå¼ä¼šē¤¾'),
(75707, 'https://ror.org/01f8zjp46', 'no_lang_code', 1, 'https://ror.org/01f8zjp46 Nogra Pharma (Ireland)'),
(75708, 'https://ror.org/02zvmwy36', 'no_lang_code', 1, 'https://ror.org/02zvmwy36 NICO (United States)'),
(75709, 'https://ror.org/019gg0j03', 'no_lang_code', 1, 'https://ror.org/019gg0j03 Nuvaira (United States)'),
(75710, 'https://ror.org/029e02124', 'no_lang_code', 1, 'https://ror.org/029e02124 NoNO (Canada)'),
(75711, 'https://ror.org/00evn4913', 'no_lang_code', 1, 'https://ror.org/00evn4913 Norbrook (United Kingdom)'),
(75712, 'https://ror.org/01rsktd65', 'no_lang_code', 1, 'https://ror.org/01rsktd65 Northgate Technologies (United States)'),
(75713, 'https://ror.org/004776246', 'en', 1, 'https://ror.org/004776246 Capital University of Science and Technology جامعہ ŲÆŲ§Ų±Ų§Ł„Ų­Ś©ŁˆŁ…ŲŖ سائنس و Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒā€Ž'),
(75714, 'https://ror.org/02w6r3410', 'no_lang_code', 1, 'https://ror.org/02w6r3410 Nymox (Canada)'),
(75715, 'https://ror.org/05f3ypk72', 'no_lang_code', 1, 'https://ror.org/05f3ypk72 Nyxoah (Belgium)'),
(75716, 'https://ror.org/02paxq720', 'no_lang_code', 1, 'https://ror.org/02paxq720 Midmark (United States)'),
(75717, 'https://ror.org/02mswf653', 'no_lang_code', 1, 'https://ror.org/02mswf653 Milestone Scientific (United States)'),
(75718, 'https://ror.org/02vya1t32', 'fr', 1, 'https://ror.org/02vya1t32 Conseil RƩgional de l''Environnement du Bas-Saint-Laurent'),
(75719, 'https://ror.org/00mhjxz04', 'no_lang_code', 1, 'https://ror.org/00mhjxz04 NovaBiotics (United Kingdom)'),
(75720, 'https://ror.org/03y0xt433', 'no_lang_code', 1, 'https://ror.org/03y0xt433 Millet Innovation (France)'),
(75721, 'https://ror.org/01grpbq12', 'no_lang_code', 1, 'https://ror.org/01grpbq12 Novapharm Research (Australia)'),
(75722, 'https://ror.org/002j4n989', 'no_lang_code', 1, 'https://ror.org/002j4n989 Owens & Minor (United States)'),
(75723, 'https://ror.org/02hcxtx58', 'no_lang_code', 1, 'https://ror.org/02hcxtx58 Deinove (Germany)'),
(75724, 'https://ror.org/04vjzg452', 'no_lang_code', 1, 'https://ror.org/04vjzg452 Luxottica (Italy)'),
(75725, 'https://ror.org/00kxdws42', 'no_lang_code', 1, 'https://ror.org/00kxdws42 Neovasc Tiara (Canada)'),
(75726, 'https://ror.org/04yyf0g82', 'no_lang_code', 1, 'https://ror.org/04yyf0g82 Occlutech (Sweden)'),
(75727, 'https://ror.org/029p5cv63', 'no_lang_code', 1, 'https://ror.org/029p5cv63 Kazia Therapeutics (Australia)'),
(75728, 'https://ror.org/0102hgm33', 'no_lang_code', 1, 'https://ror.org/0102hgm33 Seelos Therapeutics (United States)'),
(75729, 'https://ror.org/00kr78d81', 'no_lang_code', 1, 'https://ror.org/00kr78d81 Nippon Chemiphar (Japan)'),
(75730, 'https://ror.org/04v636935', 'no_lang_code', 1, 'https://ror.org/04v636935 NP Medical (United States)'),
(75731, 'https://ror.org/03d2atk85', 'no_lang_code', 1, 'https://ror.org/03d2atk85 Oculus OptikgerƤte (Germany)'),
(75732, 'https://ror.org/01rce2188', 'no_lang_code', 1, 'https://ror.org/01rce2188 Omnicell (United States)'),
(75733, 'https://ror.org/03dqqhs56', 'no_lang_code', 1, 'https://ror.org/03dqqhs56 Nippon Steel Chemical and Material (Japan) ę—„é‰„ć‚±ćƒŸć‚«ćƒ«&ćƒžćƒ†ćƒŖć‚¢ćƒ«'),
(75734, 'https://ror.org/0225qq424', 'no_lang_code', 1, 'https://ror.org/0225qq424 Nippon Suisan Kaisha (Japan) ę—„ęœ¬ę°“ē”£ę Ŗå¼ä¼šē¤¾'),
(75735, 'https://ror.org/029krwz28', 'no_lang_code', 1, 'https://ror.org/029krwz28 OrthAlign (United States)'),
(75736, 'https://ror.org/03c9s1h69', 'no_lang_code', 1, 'https://ror.org/03c9s1h69 Ortho Tain (United States)'),
(75737, 'https://ror.org/04wy1ab83', 'no_lang_code', 1, 'https://ror.org/04wy1ab83 OptiScan (United States)'),
(75738, 'https://ror.org/044tp0a91', 'no_lang_code', 1, 'https://ror.org/044tp0a91 Morishita Jintan (Japan) ę£®äø‹ä»äø¹ę Ŗå¼ä¼šē¤¾'),
(75739, 'https://ror.org/04zs97627', 'no_lang_code', 1, 'https://ror.org/04zs97627 OQ (Oman)'),
(75740, 'https://ror.org/00q8frg87', 'no_lang_code', 1, 'https://ror.org/00q8frg87 Marathon (United States)'),
(75741, 'https://ror.org/05n85jt88', 'no_lang_code', 1, 'https://ror.org/05n85jt88 OrthoSensor (United States)'),
(75742, 'https://ror.org/02hew9107', 'no_lang_code', 1, 'https://ror.org/02hew9107 Orasure Technologies (United States)'),
(75743, 'https://ror.org/049pb7d13', 'no_lang_code', 1, 'https://ror.org/049pb7d13 Orbis Health Solutions (United States)'),
(75744, 'https://ror.org/01p7vjt17', 'no_lang_code', 1, 'https://ror.org/01p7vjt17 Oscor (United States)'),
(75745, 'https://ror.org/03gtgkk57', 'no_lang_code', 1, 'https://ror.org/03gtgkk57 Ore Holdings (United States)'),
(75746, 'https://ror.org/050rz1283', 'no_lang_code', 1, 'https://ror.org/050rz1283 Currax Pharmaceuticals (United States)'),
(75747, 'https://ror.org/034ywws88', 'no_lang_code', 1, 'https://ror.org/034ywws88 Osstem Implant (South Korea) ģ˜¤ģŠ¤ķ…œģž„ķ”Œėž€ķŠø'),
(75748, 'https://ror.org/00apa0w81', 'no_lang_code', 1, 'https://ror.org/00apa0w81 Paragon 28 (United States)'),
(75749, 'https://ror.org/00z14xy49', 'no_lang_code', 1, 'https://ror.org/00z14xy49 Ossur (United States)'),
(75750, 'https://ror.org/045g0dr61', 'no_lang_code', 1, 'https://ror.org/045g0dr61 Orient Chemical Industries (Japan) ć‚ŖćƒŖćƒ±ćƒ³ćƒˆåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75751, 'https://ror.org/044tqdm09', 'no_lang_code', 1, 'https://ror.org/044tqdm09 Osteomed (United States)'),
(75752, 'https://ror.org/00epa7w16', 'no_lang_code', 1, 'https://ror.org/00epa7w16 Paramount Bed (Japan) ćƒ‘ćƒ©ćƒžć‚¦ćƒ³ćƒˆćƒ™ćƒƒćƒ‰ę Ŗå¼ä¼šē¤¾'),
(75753, 'https://ror.org/03c5ds320', 'no_lang_code', 1, 'https://ror.org/03c5ds320 Oticon Medical (Denmark)'),
(75754, 'https://ror.org/05wmdnq05', 'no_lang_code', 1, 'https://ror.org/05wmdnq05 Ovid Therapeutics (United States)'),
(75755, 'https://ror.org/01p7awb13', 'no_lang_code', 1, 'https://ror.org/01p7awb13 Penumbra (United States)'),
(75756, 'https://ror.org/056ftg126', 'no_lang_code', 1, 'https://ror.org/056ftg126 Owen Mumford (United Kingdom)'),
(75757, 'https://ror.org/0248a9217', 'no_lang_code', 1, 'https://ror.org/0248a9217 Premier Dental Products (United States)'),
(75758, 'https://ror.org/02tzvyq07', 'no_lang_code', 1, 'https://ror.org/02tzvyq07 Perricone MD (United States)'),
(75759, 'https://ror.org/02vs13w52', 'no_lang_code', 1, 'https://ror.org/02vs13w52 Pride Mobility Products (United States)'),
(75760, 'https://ror.org/02v5ekm10', 'no_lang_code', 1, 'https://ror.org/02v5ekm10 Probiotical (Italy)'),
(75761, 'https://ror.org/037ap0k13', 'no_lang_code', 1, 'https://ror.org/037ap0k13 PetroIneos (United Kingdom)'),
(75762, 'https://ror.org/0006fww70', 'no_lang_code', 1, 'https://ror.org/0006fww70 Oxford Biotherapeutics (United Kingdom)'),
(75763, 'https://ror.org/0217hsv85', 'no_lang_code', 1, 'https://ror.org/0217hsv85 Piolax (Japan)'),
(75764, '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'),
(75765, 'https://ror.org/0288kcc12', 'no_lang_code', 1, 'https://ror.org/0288kcc12 Pixium Vision (France)'),
(75766, 'https://ror.org/037vpg713', 'en', 1, 'https://ror.org/037vpg713 Stockholm Environment Institute'),
(75767, 'https://ror.org/05wfwcv97', 'no_lang_code', 1, 'https://ror.org/05wfwcv97 Oakpont (Australia)'),
(75768, 'https://ror.org/01sexcc53', 'no_lang_code', 1, 'https://ror.org/01sexcc53 Planmeca (Finland)'),
(75769, 'https://ror.org/057pw8j03', 'no_lang_code', 1, 'https://ror.org/057pw8j03 Planmed (Finland)'),
(75770, 'https://ror.org/012n48z81', 'no_lang_code', 1, 'https://ror.org/012n48z81 Plasmology4 (United States)'),
(75771, 'https://ror.org/03ygk8b53', 'no_lang_code', 1, 'https://ror.org/03ygk8b53 Viveve (United States)'),
(75772, 'https://ror.org/01fmexj76', 'no_lang_code', 1, 'https://ror.org/01fmexj76 Primed (Germany) Primed Halberstadt Medizintechnik'),
(75773, 'https://ror.org/031jemm23', 'no_lang_code', 1, 'https://ror.org/031jemm23 Pharnext (France)'),
(75774, 'https://ror.org/050gyxr66', 'no_lang_code', 1, 'https://ror.org/050gyxr66 Progenity (United States)'),
(75775, 'https://ror.org/021gh4f04', 'no_lang_code', 1, 'https://ror.org/021gh4f04 Pola Chemical Industries (Japan)'),
(75776, 'https://ror.org/03xptpz88', 'no_lang_code', 1, 'https://ror.org/03xptpz88 Polar (Finland)'),
(75777, 'https://ror.org/00g3t5227', 'no_lang_code', 1, 'https://ror.org/00g3t5227 Phenex Pharmaceuticals (Germany)'),
(75778, 'https://ror.org/001087p83', 'no_lang_code', 1, 'https://ror.org/001087p83 Phenox (Germany)'),
(75779, 'https://ror.org/01v8wnr22', 'no_lang_code', 1, 'https://ror.org/01v8wnr22 Hitowa Holdings (Japan) ć²ćØć‚ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(75780, 'https://ror.org/05xfzy080', 'no_lang_code', 1, 'https://ror.org/05xfzy080 Propper Manufacturing (United States)'),
(75781, 'https://ror.org/0035phc29', 'no_lang_code', 1, 'https://ror.org/0035phc29 Pherin Pharmaceuticals (United States)'),
(75782, 'https://ror.org/02pyb2524', 'no_lang_code', 1, 'https://ror.org/02pyb2524 Poly Medicure (India)'),
(75783, 'https://ror.org/05d0zs426', 'no_lang_code', 1, 'https://ror.org/05d0zs426 Proteostasis Therapeutics (United States)'),
(75784, 'https://ror.org/01ncvmx07', 'no_lang_code', 1, 'https://ror.org/01ncvmx07 Protgen (China)'),
(75785, 'https://ror.org/0063h8607', 'no_lang_code', 1, 'https://ror.org/0063h8607 Protia (United States)'),
(75786, 'https://ror.org/032hxhk43', 'no_lang_code', 1, 'https://ror.org/032hxhk43 Polynt (Italy)'),
(75787, 'https://ror.org/05pek2z35', 'no_lang_code', 1, 'https://ror.org/05pek2z35 Providence Medical Technology (United States)'),
(75788, 'https://ror.org/008d3n094', 'no_lang_code', 1, 'https://ror.org/008d3n094 PYC Therapeutics (Australia)'),
(75789, 'https://ror.org/0525dzh79', 'no_lang_code', 1, 'https://ror.org/0525dzh79 Poseida Therapeutics (United States)'),
(75790, 'https://ror.org/05ekwg650', 'no_lang_code', 1, 'https://ror.org/05ekwg650 Rani Therapeutics (United States)'),
(75791, 'https://ror.org/02p752c24', 'no_lang_code', 1, 'https://ror.org/02p752c24 Pieris Pharmaceuticals (United States)'),
(75792, 'https://ror.org/0358p7h51', 'no_lang_code', 1, 'https://ror.org/0358p7h51 PureCircle (Malaysia)'),
(75793, 'https://ror.org/00feczr54', 'no_lang_code', 1, 'https://ror.org/00feczr54 PureCircle (United States)'),
(75794, 'https://ror.org/014pnrs95', 'no_lang_code', 1, 'https://ror.org/014pnrs95 Pigeon (Japan)'),
(75795, 'https://ror.org/033j0mq15', 'no_lang_code', 1, 'https://ror.org/033j0mq15 Qualicaps (Japan)'),
(75796, 'https://ror.org/03sanww46', 'no_lang_code', 1, 'https://ror.org/03sanww46 Qfix (United States)'),
(75797, 'https://ror.org/01n4hfa83', 'no_lang_code', 1, 'https://ror.org/01n4hfa83 QualiMed (Germany)'),
(75798, 'https://ror.org/02zek1917', 'no_lang_code', 1, 'https://ror.org/02zek1917 RaQualia Pharma (Japan) ćƒ©ć‚Æć‚ŖćƒŖć‚¢å‰µč–¬'),
(75799, 'https://ror.org/01f978p98', 'no_lang_code', 1, 'https://ror.org/01f978p98 Venus Concept (Canada)'),
(75800, 'https://ror.org/04753za72', 'no_lang_code', 1, 'https://ror.org/04753za72 Retractable Technologies (United States)'),
(75801, 'https://ror.org/041mg2534', 'no_lang_code', 1, 'https://ror.org/041mg2534 Retrotope (United States)'),
(75802, 'https://ror.org/01cat9493', 'no_lang_code', 1, 'https://ror.org/01cat9493 Raumedic (Germany)'),
(75803, 'https://ror.org/01yhcdk46', 'no_lang_code', 1, 'https://ror.org/01yhcdk46 Rex Medical (United States)'),
(75804, 'https://ror.org/055bp1561', 'no_lang_code', 1, 'https://ror.org/055bp1561 RaySearch Laboratories (Sweden)'),
(75805, 'https://ror.org/04dgene15', 'no_lang_code', 1, 'https://ror.org/04dgene15 Ocuphire Pharma (United States)'),
(75806, 'https://ror.org/039xjj562', 'no_lang_code', 1, 'https://ror.org/039xjj562 Rainbow Medical (Israel)'),
(75807, 'https://ror.org/02xse0222', 'no_lang_code', 1, 'https://ror.org/02xse0222 Rhizen Pharmaceuticals (Switzerland)'),
(75808, 'https://ror.org/04wysdg63', 'no_lang_code', 1, 'https://ror.org/04wysdg63 Redx Pharma (United Kingdom)'),
(75809, 'https://ror.org/021pfvj84', 'no_lang_code', 1, 'https://ror.org/021pfvj84 Refocus Group (United States)'),
(75810, 'https://ror.org/00e71xp25', 'no_lang_code', 1, 'https://ror.org/00e71xp25 RegeneRx Biopharmaceuticals (United States)'),
(75811, 'https://ror.org/03ckjgz67', 'no_lang_code', 1, 'https://ror.org/03ckjgz67 Rayner (United States)'),
(75812, 'https://ror.org/01fy15230', 'no_lang_code', 1, 'https://ror.org/01fy15230 Reliant Technologies (United States)'),
(75813, 'https://ror.org/0272z3408', 'no_lang_code', 1, 'https://ror.org/0272z3408 Relievant Medsystem (United States)'),
(75814, 'https://ror.org/05ygbx057', 'no_lang_code', 1, 'https://ror.org/05ygbx057 Renmatix (United States)'),
(75815, 'https://ror.org/03mxp7j39', 'no_lang_code', 1, 'https://ror.org/03mxp7j39 Rocky Mountain Orthodontics (United States)'),
(75816, 'https://ror.org/04hdpvy92', 'no_lang_code', 1, 'https://ror.org/04hdpvy92 RetinalGeniX Technologies (United States)'),
(75817, 'https://ror.org/00gnzfk51', 'no_lang_code', 1, 'https://ror.org/00gnzfk51 Sansho (Japan) äø‰ę™¶ę Ŗå¼ä¼šē¤¾'),
(75818, 'https://ror.org/05gjrga14', 'no_lang_code', 1, 'https://ror.org/05gjrga14 SACHEM (United States)'),
(75819, 'https://ror.org/02y8ft411', 'no_lang_code', 1, 'https://ror.org/02y8ft411 Rohto Pharmaceutical (Japan) ćƒ­ćƒ¼ćƒˆč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(75820, 'https://ror.org/02m1qaq93', 'no_lang_code', 1, 'https://ror.org/02m1qaq93 Rotam (China) č½®ä½œä½œē‰©ē§‘å­¦'),
(75821, 'https://ror.org/03fzgzt45', 'en', 1, 'https://ror.org/03fzgzt45 Saint Regis Mohawk Tribe'),
(75822, 'https://ror.org/0168wa849', 'no_lang_code', 1, 'https://ror.org/0168wa849 Sakai Chemical Industry (Japan) å ŗåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75823, 'https://ror.org/01r9c6a33', 'no_lang_code', 1, 'https://ror.org/01r9c6a33 Dempsey Ventures (United States)'),
(75824, '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ā€'),
(75825, 'https://ror.org/00g934978', 'no_lang_code', 1, 'https://ror.org/00g934978 Clinical Microbiomics (Denmark)'),
(75826, 'https://ror.org/02mr1hg77', 'no_lang_code', 1, 'https://ror.org/02mr1hg77 Salts Healthcare (United Kingdom)'),
(75827, 'https://ror.org/00acss906', 'no_lang_code', 1, 'https://ror.org/00acss906 Saluda Medical (Australia)'),
(75828, 'https://ror.org/05wmmkw18', 'no_lang_code', 1, 'https://ror.org/05wmmkw18 Schleifring (Germany)'),
(75829, 'https://ror.org/02nb4b562', 'no_lang_code', 1, 'https://ror.org/02nb4b562 Recordati (Ireland)'),
(75830, 'https://ror.org/046w2n447', 'no_lang_code', 1, 'https://ror.org/046w2n447 Saban Ventures (Israel)'),
(75831, 'https://ror.org/01x905d34', 'no_lang_code', 1, 'https://ror.org/01x905d34 Samyang Holdings (South Korea) ģ‚¼ģ–‘ė°”ģ“ģ˜¤ķŒœ'),
(75832, 'https://ror.org/05v2shy89', 'no_lang_code', 1, 'https://ror.org/05v2shy89 San-Ei Gen F.F.I (Japan)'),
(75833, 'https://ror.org/03rh67p56', 'no_lang_code', 1, 'https://ror.org/03rh67p56 SanBio (Japan) ć‚µćƒ³ćƒć‚¤ć‚Ŗ'),
(75834, 'https://ror.org/020wsgn47', 'no_lang_code', 1, 'https://ror.org/020wsgn47 Sangi (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ć‚®'),
(75835, 'https://ror.org/03kwk6445', 'no_lang_code', 1, 'https://ror.org/03kwk6445 Seiren (Japan) ć‚»ćƒ¼ćƒ¬ćƒ³ę Ŗå¼ä¼šē¤¾'),
(75836, 'https://ror.org/0021myq38', 'no_lang_code', 1, 'https://ror.org/0021myq38 Eloxx Pharmaceuticals (United States)'),
(75837, 'https://ror.org/00sh93275', 'no_lang_code', 1, 'https://ror.org/00sh93275 Seno Medical (United States)'),
(75838, 'https://ror.org/051cj2f30', 'no_lang_code', 1, 'https://ror.org/051cj2f30 Seoul Viosys (South Korea) ģ„œģšøė°”ģ“ģ˜¤ģ‹œģŠ¤ėŠ”'),
(75839, 'https://ror.org/028vcv574', 'no_lang_code', 1, 'https://ror.org/028vcv574 Seqirus (United Kingdom)'),
(75840, 'https://ror.org/045yf0774', 'en', 1, 'https://ror.org/045yf0774 Center for Neuroscience and Cognitive Systems'),
(75841, 'https://ror.org/04xbkmk86', 'en', 1, 'https://ror.org/04xbkmk86 Center for Genomic Science'),
(75842, 'https://ror.org/03mwaf730', 'en', 1, 'https://ror.org/03mwaf730 Center for Nano Science and Technology'),
(75843, 'https://ror.org/02nbgxg43', 'en', 1, 'https://ror.org/02nbgxg43 Center for Micro-BioRobotics'),
(75844, 'https://ror.org/05bykpb13', 'en', 1, 'https://ror.org/05bykpb13 Center for Biomolecular Nanotechnologies Centro per le Nanotecnologie Biomolecolari'),
(75845, 'https://ror.org/014ma9t05', 'no_lang_code', 1, 'https://ror.org/014ma9t05 SDS Biotech (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ćƒ»ćƒ‡ć‚£ćƒ¼ćƒ»ć‚Øć‚¹ ćƒć‚¤ć‚Ŗćƒ†ćƒƒć‚Æ'),
(75846, 'https://ror.org/023b5wj08', 'no_lang_code', 1, 'https://ror.org/023b5wj08 SeaSpine (United States)'),
(75847, 'https://ror.org/05r0xrd27', 'en', 1, 'https://ror.org/05r0xrd27 Center for Nanotechnology Innovation Centro per l''Innovazione delle Nanotecnologie'),
(75848, 'https://ror.org/03mk1jb23', 'en', 1, 'https://ror.org/03mk1jb23 Center for Cultural Heritage Technology'),
(75849, 'https://ror.org/036aaf204', 'no_lang_code', 1, 'https://ror.org/036aaf204 Secant Group (United States)'),
(75850, 'https://ror.org/0342n5p84', 'it', 1, 'https://ror.org/0342n5p84 Centro per le Nano-Scienze della Vita'),
(75851, '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'),
(75852, 'https://ror.org/05qp1qg36', 'en', 1, 'https://ror.org/05qp1qg36 Center for Sustainable Future Technologies'),
(75853, 'https://ror.org/01wp8zh54', 'en', 1, 'https://ror.org/01wp8zh54 IIT@MIT'),
(75854, 'https://ror.org/044hpwe09', 'en', 1, 'https://ror.org/044hpwe09 IIT@Harvard'),
(75855, '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'),
(75856, 'https://ror.org/01tfjyv98', 'en', 1, 'https://ror.org/01tfjyv98 MRC Brain Network Dynamics Unit'),
(75857, 'https://ror.org/03hakdk41', 'en', 1, 'https://ror.org/03hakdk41 UNC/NCSU Joint Department of Biomedical Engineering'),
(75858, 'https://ror.org/00g56wy16', 'en', 1, 'https://ror.org/00g56wy16 Shanghai Stomatological Hospital äøŠęµ·åø‚å£č…”ē—…é˜²ę²»é™¢'),
(75859, 'https://ror.org/040n2wh36', 'en', 1, 'https://ror.org/040n2wh36 European Magnetic Field Laboratory'),
(75860, 'https://ror.org/04kx66y96', 'en', 1, 'https://ror.org/04kx66y96 NHS Wales Shared Services Partnership'),
(75861, 'https://ror.org/01c8p7c25', 'it', 1, 'https://ror.org/01c8p7c25 ASP CittĆ  di Bologna'),
(75862, 'https://ror.org/020rcsj15', 'en', 1, 'https://ror.org/020rcsj15 Port of Antwerp'),
(75863, 'https://ror.org/022v8s261', 'en', 1, 'https://ror.org/022v8s261 Province of Antwerp Provincie Antwerpen'),
(75864, 'https://ror.org/043570368', 'en', 1, 'https://ror.org/043570368 City of Antwerp Stad Antwerpen'),
(75865, 'https://ror.org/00nhmr817', 'nl', 1, 'https://ror.org/00nhmr817 Port of Moerdijk'),
(75866, 'https://ror.org/0351ywy08', 'en', 1, 'https://ror.org/0351ywy08 General Directorate Combating Organized Crime Главна Š“ŠøŃ€ŠµŠŗŃ†ŠøŃ "Борба с организираната ŠæŃ€ŠµŃŃ‚ŃŠŠæŠ½Š¾ŃŃ‚"'),
(75867, 'https://ror.org/013hy3379', 'no_lang_code', 1, 'https://ror.org/013hy3379 Sinus Markt- und Sozialforschung (Germany)'),
(75868, 'https://ror.org/047d2d387', 'en', 1, 'https://ror.org/047d2d387 Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics'),
(75869, 'https://ror.org/02gey2570', 'no_lang_code', 1, 'https://ror.org/02gey2570 FSD Pharma (Canada)'),
(75870, 'https://ror.org/05wsetc54', 'en', 1, 'https://ror.org/05wsetc54 Institute of Structural and Molecular Biology'),
(75871, 'https://ror.org/02qbgx346', 'no_lang_code', 1, 'https://ror.org/02qbgx346 Schwan-Stabilo (Germany)'),
(75872, 'https://ror.org/00jfeg660', 'en', 1, 'https://ror.org/00jfeg660 Center for the Neural Basis of Cognition'),
(75873, 'https://ror.org/042bvs696', 'en', 1, 'https://ror.org/042bvs696 Startups.be'),
(75874, 'https://ror.org/02yfrka70', 'no_lang_code', 1, 'https://ror.org/02yfrka70 SciClone Pharmaceuticals (United States)'),
(75875, 'https://ror.org/04hfg7v94', 'en', 1, 'https://ror.org/04hfg7v94 Center for Theoretical Biological Physics'),
(75876, 'https://ror.org/05853sr12', 'no_lang_code', 1, 'https://ror.org/05853sr12 Scientific Design Company (United States)'),
(75877, 'https://ror.org/049n6n725', 'en', 1, 'https://ror.org/049n6n725 National Hansen''s Disease Program'),
(75878, 'https://ror.org/0251rms11', 'no_lang_code', 1, 'https://ror.org/0251rms11 ScinoPharm Taiwan (Taiwan) å°ē£ē„žéš†č‚”ä»½ęœ‰é™å…¬åø'),
(75879, 'https://ror.org/03j8xrv28', 'no_lang_code', 1, 'https://ror.org/03j8xrv28 Urtek Water Technologies (Spain)'),
(75880, 'https://ror.org/01t338n33', 'no_lang_code', 1, 'https://ror.org/01t338n33 Pharmazeutische Fabrik Dr. Reckeweg (Germany)'),
(75881, 'https://ror.org/0136jw687', 'no_lang_code', 1, 'https://ror.org/0136jw687 Teva Pharmaceuticals (Switzerland)'),
(75882, 'https://ror.org/03j3hnp65', 'de', 1, 'https://ror.org/03j3hnp65 Gouverneur Kinsbergencentrum'),
(75883, 'https://ror.org/02j0at714', 'en', 1, 'https://ror.org/02j0at714 Institutul de Ftiziopneumologie ā€žChiril Draganiucā€ Phthisiopneumology Institute "Chiril Draganiuc"'),
(75884, 'https://ror.org/023bt3h76', 'no_lang_code', 1, 'https://ror.org/023bt3h76 Galapagos (France)'),
(75885, 'https://ror.org/04tym5d37', 'en', 1, 'https://ror.org/04tym5d37 Leverhulme Centre for Climate Change Mitigation'),
(75886, 'https://ror.org/01qh5w602', 'nl', 1, 'https://ror.org/01qh5w602 Belastingdienst Tax and Customs Administration'),
(75887, 'https://ror.org/04x8zs855', 'no_lang_code', 1, 'https://ror.org/04x8zs855 Ferring Pharmaceuticals (Finland)'),
(75888, 'https://ror.org/00ejvzn98', 'no_lang_code', 1, 'https://ror.org/00ejvzn98 Shanghai Techwell Biopharmaceutical (China)'),
(75889, 'https://ror.org/04b8r4934', 'no_lang_code', 1, 'https://ror.org/04b8r4934 Ipsen (Italy)'),
(75890, 'https://ror.org/0404kfe46', 'no_lang_code', 1, 'https://ror.org/0404kfe46 Bayer (Mexico)'),
(75891, 'https://ror.org/03062bd88', 'en', 1, 'https://ror.org/03062bd88 Academic Bridge Program'),
(75892, 'https://ror.org/01441w502', 'no_lang_code', 1, 'https://ror.org/01441w502 Bayer (Australia)'),
(75893, 'https://ror.org/01dspch42', 'no_lang_code', 1, 'https://ror.org/01dspch42 Amiri Diwan Ų§Ł„ŲÆŁŠŁˆŲ§Ł† Ų§Ł„Ų£Ł…ŁŠŲ±ŁŠ'),
(75894, 'https://ror.org/03pgn2579', 'de', 1, 'https://ror.org/03pgn2579 Deutscher Bundestag'),
(75895, 'https://ror.org/02n0gpn09', 'no_lang_code', 1, 'https://ror.org/02n0gpn09 Kronos Bios (United Kingdom)'),
(75896, 'https://ror.org/028gkba61', 'no_lang_code', 1, 'https://ror.org/028gkba61 Lyell Immunopharma (United States)'),
(75897, 'https://ror.org/001eahy16', 'no_lang_code', 1, 'https://ror.org/001eahy16 Catalent (Belgium)'),
(75898, 'https://ror.org/055560x25', 'en', 1, 'https://ror.org/055560x25 College of Europe, Warsaw'),
(75899, 'https://ror.org/00n7khb11', 'no_lang_code', 1, 'https://ror.org/00n7khb11 Sana Biotechnology (United States)'),
(75900, 'https://ror.org/03d908h34', 'no_lang_code', 1, 'https://ror.org/03d908h34 TrueBinding (United States)'),
(75901, 'https://ror.org/05dgqjt76', 'no_lang_code', 1, 'https://ror.org/05dgqjt76 Mitokinin (United States)'),
(75902, 'https://ror.org/004dyvb33', 'no_lang_code', 1, 'https://ror.org/004dyvb33 Unity Biotechnology (United States)'),
(75903, 'https://ror.org/00jd15125', 'no_lang_code', 1, 'https://ror.org/00jd15125 Propath Services (United States)'),
(75904, 'https://ror.org/03d7gms38', 'no_lang_code', 1, 'https://ror.org/03d7gms38 Q2 Solutions (United Kingdom)'),
(75905, 'https://ror.org/00eh21150', 'en', 1, 'https://ror.org/00eh21150 Cummings Veterinary Medical Center'),
(75906, 'https://ror.org/05e7mmt60', 'no_lang_code', 1, 'https://ror.org/05e7mmt60 Recludix Pharma (United States)'),
(75907, 'https://ror.org/01gpng625', 'no_lang_code', 1, 'https://ror.org/01gpng625 TerraVia (United States)'),
(75908, 'https://ror.org/0129kzc90', 'no_lang_code', 1, 'https://ror.org/0129kzc90 Showa Ika Kogyo (Japan) ę˜­å’ŒåŒ»ē§‘å·„ę„­'),
(75909, 'https://ror.org/006t7br05', 'no_lang_code', 1, 'https://ror.org/006t7br05 FirstUnion (China)'),
(75910, 'https://ror.org/00zm1zp35', 'no_lang_code', 1, 'https://ror.org/00zm1zp35 SI-Bone (United States)'),
(75911, 'https://ror.org/03gxbhx27', 'no_lang_code', 1, 'https://ror.org/03gxbhx27 Somnics (Taiwan)'),
(75912, 'https://ror.org/025g1ff13', 'no_lang_code', 1, 'https://ror.org/025g1ff13 Shifamed (United States)'),
(75913, 'https://ror.org/02xbm4h96', 'no_lang_code', 1, 'https://ror.org/02xbm4h96 Shikoku (Japan) å››å›½åŒ–ęˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75914, 'https://ror.org/01g3a5n46', 'no_lang_code', 1, 'https://ror.org/01g3a5n46 Siegfried (Switzerland)'),
(75915, 'https://ror.org/0064ns709', 'no_lang_code', 1, 'https://ror.org/0064ns709 Shilpa (India)'),
(75916, 'https://ror.org/03fs7fp11', 'no_lang_code', 1, 'https://ror.org/03fs7fp11 SHL Medical (Switzerland)'),
(75917, 'https://ror.org/01gz5c498', 'no_lang_code', 1, 'https://ror.org/01gz5c498 Sonendo (United States)'),
(75918, 'https://ror.org/00stt1q70', 'no_lang_code', 1, 'https://ror.org/00stt1q70 Ensysce Biosciences (United States)'),
(75919, 'https://ror.org/00qdzme95', 'no_lang_code', 1, 'https://ror.org/00qdzme95 SignPath Pharma (United States)'),
(75920, 'https://ror.org/02sw2gr16', 'no_lang_code', 1, 'https://ror.org/02sw2gr16 Spiber (Japan)'),
(75921, 'https://ror.org/01wj99869', 'no_lang_code', 1, 'https://ror.org/01wj99869 Spectrum Dynamics Medical (Switzerland)'),
(75922, 'https://ror.org/02x5h6n54', 'no_lang_code', 1, 'https://ror.org/02x5h6n54 Silab (France)'),
(75923, 'https://ror.org/02a79n229', 'no_lang_code', 1, 'https://ror.org/02a79n229 Silk Road Medical (United States)'),
(75924, 'https://ror.org/04be23e26', 'no_lang_code', 1, 'https://ror.org/04be23e26 Silony Medical (Switzerland)'),
(75925, 'https://ror.org/008356476', 'no_lang_code', 1, 'https://ror.org/008356476 Spine Wave (United States)'),
(75926, 'https://ror.org/05qd10157', 'no_lang_code', 1, 'https://ror.org/05qd10157 Simplify Medical (United States)'),
(75927, 'https://ror.org/04gnh4t80', 'no_lang_code', 1, 'https://ror.org/04gnh4t80 SiO2 Materials Science (United States)'),
(75928, 'https://ror.org/00h56hn14', 'no_lang_code', 1, 'https://ror.org/00h56hn14 SK Discovery (South Korea) SKė””ģŠ¤ģ»¤ė²„ė¦¬'),
(75929, 'https://ror.org/018fa7h76', 'no_lang_code', 1, 'https://ror.org/018fa7h76 Skeletal Dynamics (United States)'),
(75930, 'https://ror.org/034wp9329', 'no_lang_code', 1, 'https://ror.org/034wp9329 Sleep Number (United States)'),
(75931, 'https://ror.org/02zftdf95', 'no_lang_code', 1, 'https://ror.org/02zftdf95 Savaria (Canada)'),
(75932, 'https://ror.org/04n1qr170', 'no_lang_code', 1, 'https://ror.org/04n1qr170 Soft Gel Technologies (United States)'),
(75933, 'https://ror.org/03d02ry74', 'no_lang_code', 1, 'https://ror.org/03d02ry74 Sol-Gel Technologies (Israel)'),
(75934, 'https://ror.org/00hn7pt27', 'de', 1, 'https://ror.org/00hn7pt27 Haus der Natur - Museum für Natur und Technik'),
(75935, 'https://ror.org/00xg5j618', 'no_lang_code', 1, 'https://ror.org/00xg5j618 HI-LEX (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚¤ćƒ¬ćƒƒć‚Æć‚¹ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(75936, 'https://ror.org/03ha8dy44', 'no_lang_code', 1, 'https://ror.org/03ha8dy44 NewAge (United States)'),
(75937, 'https://ror.org/02zzdas25', 'no_lang_code', 1, 'https://ror.org/02zzdas25 Precision Spine (United States)'),
(75938, 'https://ror.org/03t9hqf74', 'no_lang_code', 1, 'https://ror.org/03t9hqf74 ShockWave Medical (United States)'),
(75939, 'https://ror.org/0045fm505', 'no_lang_code', 1, 'https://ror.org/0045fm505 Staar Surgical (United States)'),
(75940, 'https://ror.org/01zzqts64', 'no_lang_code', 1, 'https://ror.org/01zzqts64 Stada Arzneimittel (Germany) Standardarzneimittel Deutscher Apotheker'),
(75941, 'https://ror.org/003sqa685', 'no_lang_code', 1, 'https://ror.org/003sqa685 Stat Medical Devices (United States)'),
(75942, 'https://ror.org/05sz2c652', 'no_lang_code', 1, 'https://ror.org/05sz2c652 Spineart (Switzerland)'),
(75943, 'https://ror.org/03tpwwd72', 'no_lang_code', 1, 'https://ror.org/03tpwwd72 Spineology (United States)'),
(75944, 'https://ror.org/019rkfc79', 'no_lang_code', 1, 'https://ror.org/019rkfc79 SpineVision (France)'),
(75945, 'https://ror.org/05pjrm134', 'no_lang_code', 1, 'https://ror.org/05pjrm134 Supratek Pharma (Canada)'),
(75946, 'https://ror.org/047j13421', 'no_lang_code', 1, 'https://ror.org/047j13421 SpineWelding (Switzerland)'),
(75947, 'https://ror.org/04mqss956', 'no_lang_code', 1, 'https://ror.org/04mqss956 Spirogen (United Kingdom)'),
(75948, 'https://ror.org/00hew8j40', 'no_lang_code', 1, 'https://ror.org/00hew8j40 TaiGen Biotechnology (Taiwan)'),
(75949, 'https://ror.org/0539tbr70', 'no_lang_code', 1, 'https://ror.org/0539tbr70 Taisei Kako (Japan)'),
(75950, 'https://ror.org/051kr3840', 'no_lang_code', 1, 'https://ror.org/051kr3840 Steelco (Italy)'),
(75951, 'https://ror.org/05vcg4030', 'no_lang_code', 1, 'https://ror.org/05vcg4030 Stereotaxis (United States)'),
(75952, 'https://ror.org/04jy4bd63', 'no_lang_code', 1, 'https://ror.org/04jy4bd63 Sterix (Philippines)'),
(75953, 'https://ror.org/00ffejy44', 'no_lang_code', 1, 'https://ror.org/00ffejy44 Teikoku Seiyaku (Japan) åøåœ‹č£½č–¬ćˆ±'),
(75954, 'https://ror.org/01f55re52', 'no_lang_code', 1, 'https://ror.org/01f55re52 Takazono (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚«ć‚¾ćƒŽ'),
(75955, 'https://ror.org/043fbs867', 'no_lang_code', 1, 'https://ror.org/043fbs867 Stimwave Technologies (United States)'),
(75956, 'https://ror.org/03qashd50', 'no_lang_code', 1, 'https://ror.org/03qashd50 Itochu (Japan) ä¼Šč—¤åæ å•†äŗ‹ę Ŗå¼ä¼šē¤¾'),
(75957, 'https://ror.org/00sdg9z02', 'no_lang_code', 1, 'https://ror.org/00sdg9z02 Strategic Science & Technologies (United States)'),
(75958, 'https://ror.org/00wsc5072', 'no_lang_code', 1, 'https://ror.org/00wsc5072 Stiegelmeyer (Germany)'),
(75959, 'https://ror.org/01m39r121', 'en', 1, 'https://ror.org/01m39r121 Tate & Lyle (United Kingdom)'),
(75960, 'https://ror.org/04b7m4c37', 'no_lang_code', 1, 'https://ror.org/04b7m4c37 Tecomet (United States)'),
(75961, 'https://ror.org/04wnpe888', 'no_lang_code', 1, 'https://ror.org/04wnpe888 Vascular Flow Technologies (United Kingdom)'),
(75962, 'https://ror.org/00a2cej79', 'no_lang_code', 1, 'https://ror.org/00a2cej79 TCI (Taiwan) å¤§ę±Ÿē”Ÿé†«č‚”ä»½ęœ‰é™å…¬åø'),
(75963, 'https://ror.org/038a0vf09', 'no_lang_code', 1, 'https://ror.org/038a0vf09 Synaptive (Canada)'),
(75964, 'https://ror.org/035hwsz26', 'no_lang_code', 1, 'https://ror.org/035hwsz26 Synecor (United States)'),
(75965, 'https://ror.org/03x4xnv96', 'no_lang_code', 1, 'https://ror.org/03x4xnv96 Apax Partners (United Kingdom)'),
(75966, 'https://ror.org/03awqec28', 'en', 1, 'https://ror.org/03awqec28 Tecres (Italy)'),
(75967, 'https://ror.org/035rza675', 'no_lang_code', 1, 'https://ror.org/035rza675 Titan Medical (Canada)'),
(75968, 'https://ror.org/05hrpz398', 'no_lang_code', 1, 'https://ror.org/05hrpz398 Syntheon (United States)'),
(75969, 'https://ror.org/003fdzp71', 'no_lang_code', 1, 'https://ror.org/003fdzp71 Schƶlly (Germany)'),
(75970, 'https://ror.org/00nwtn727', 'no_lang_code', 1, 'https://ror.org/00nwtn727 Scott Laboratories (United States)'),
(75971, 'https://ror.org/05apyxs13', 'no_lang_code', 1, 'https://ror.org/05apyxs13 Tobishi (Japan)'),
(75972, 'https://ror.org/03m1xf462', 'no_lang_code', 1, 'https://ror.org/03m1xf462 Sony Olympus Medical Solutions (Japan)'),
(75973, 'https://ror.org/0493jda02', 'no_lang_code', 1, 'https://ror.org/0493jda02 THD (Italy)'),
(75974, 'https://ror.org/05dzdtp04', 'no_lang_code', 1, 'https://ror.org/05dzdtp04 Theragenics Corporation (United States)'),
(75975, 'https://ror.org/03993n266', 'no_lang_code', 1, 'https://ror.org/03993n266 TherapeuticsMD (United States)'),
(75976, 'https://ror.org/05d3bn235', 'no_lang_code', 1, 'https://ror.org/05d3bn235 Theratechnologies (Canada)'),
(75977, 'https://ror.org/03rycrh12', 'no_lang_code', 1, 'https://ror.org/03rycrh12 ThermoGenesis (United States)'),
(75978, 'https://ror.org/00c1ha781', 'no_lang_code', 1, 'https://ror.org/00c1ha781 Tosho (Japan)'),
(75979, 'https://ror.org/02tya7134', 'no_lang_code', 1, 'https://ror.org/02tya7134 Touchstone (China)'),
(75980, 'https://ror.org/05bjr0894', 'no_lang_code', 1, 'https://ror.org/05bjr0894 Toyo Engineering (Japan) ę±ę“‹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(75981, 'https://ror.org/00xrhzn26', 'no_lang_code', 1, 'https://ror.org/00xrhzn26 TransMed7 (United States)'),
(75982, 'https://ror.org/040anr776', 'no_lang_code', 1, 'https://ror.org/040anr776 Toyo Suisan (Japan) ę±ę“‹ę°“ē”£ę Ŗå¼ä¼šē¤¾'),
(75983, 'https://ror.org/009gkhz71', 'no_lang_code', 1, 'https://ror.org/009gkhz71 Tredegar (United States)'),
(75984, 'https://ror.org/03r7f5838', 'no_lang_code', 1, 'https://ror.org/03r7f5838 TP Orthodontics (United States)'),
(75985, 'https://ror.org/033bv6556', 'no_lang_code', 1, 'https://ror.org/033bv6556 Tracoe Medical (Germany)'),
(75986, 'https://ror.org/02ksw7h30', 'no_lang_code', 1, 'https://ror.org/02ksw7h30 ThermoTek (United States)'),
(75987, 'https://ror.org/04wqwae75', 'no_lang_code', 1, 'https://ror.org/04wqwae75 Tris Pharma (United States)'),
(75988, 'https://ror.org/01p1map55', 'no_lang_code', 1, 'https://ror.org/01p1map55 Transitions Optical (United States)'),
(75989, 'https://ror.org/02tzsc576', 'no_lang_code', 1, 'https://ror.org/02tzsc576 Translate Bio (United States)'),
(75990, 'https://ror.org/0281ff903', 'no_lang_code', 1, 'https://ror.org/0281ff903 Terason (United States)'),
(75991, 'https://ror.org/00f7kfd14', 'en', 1, 'https://ror.org/00f7kfd14 Dulbecco Telethon Institute'),
(75992, 'https://ror.org/00tf8t528', 'no_lang_code', 1, 'https://ror.org/00tf8t528 Think Surgical (United States)'),
(75993, 'https://ror.org/02dnbq706', 'no_lang_code', 1, 'https://ror.org/02dnbq706 Tristel (United Kingdom)'),
(75994, 'https://ror.org/015bm3863', 'no_lang_code', 1, 'https://ror.org/015bm3863 Ueno Fine Chemicals Industry (Japan) äøŠé‡Žč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(75995, 'https://ror.org/02b2enb68', 'no_lang_code', 1, 'https://ror.org/02b2enb68 Ultra Biotech (India)'),
(75996, 'https://ror.org/00kd86526', 'no_lang_code', 1, 'https://ror.org/00kd86526 Ultradent Products (United States)'),
(75997, 'https://ror.org/02nnezj30', 'no_lang_code', 1, 'https://ror.org/02nnezj30 Tidi (United States)'),
(75998, 'https://ror.org/0350fs434', 'no_lang_code', 1, 'https://ror.org/0350fs434 VitalConnect (United States)'),
(75999, 'https://ror.org/003njj705', 'no_lang_code', 1, 'https://ror.org/003njj705 Unisearch (United States)'),
(76000, 'https://ror.org/04009bk73', 'no_lang_code', 1, 'https://ror.org/04009bk73 Vitalitec International (Germany)'),
(76001, 'https://ror.org/00vawgs19', 'no_lang_code', 1, 'https://ror.org/00vawgs19 United Initiators (Germany)'),
(76002, 'https://ror.org/00xsmqz41', 'no_lang_code', 1, 'https://ror.org/00xsmqz41 Vivant (United States)'),
(76003, 'https://ror.org/05xzt2h26', 'no_lang_code', 1, 'https://ror.org/05xzt2h26 Venus Medtech (China)'),
(76004, 'https://ror.org/04xjsk421', 'no_lang_code', 1, 'https://ror.org/04xjsk421 Trisa (Switzerland)'),
(76005, 'https://ror.org/02kq47078', 'no_lang_code', 1, 'https://ror.org/02kq47078 USV (India)'),
(76006, 'https://ror.org/01nahaf96', 'no_lang_code', 1, 'https://ror.org/01nahaf96 Uvex (Germany)'),
(76007, 'https://ror.org/0596vwe73', 'no_lang_code', 1, 'https://ror.org/0596vwe73 Veroscience (United States)'),
(76008, 'https://ror.org/026ck6f55', 'no_lang_code', 1, 'https://ror.org/026ck6f55 Versitech (United States)'),
(76009, 'https://ror.org/04rksax81', 'no_lang_code', 1, 'https://ror.org/04rksax81 Valent BioSciences (United States)'),
(76010, 'https://ror.org/02e4at420', 'no_lang_code', 1, 'https://ror.org/02e4at420 Trividia Health (United States)'),
(76011, 'https://ror.org/02ms7ap07', 'en', 1, 'https://ror.org/02ms7ap07 Agronomical Institute of Campinas Instituto AgronƓmico de Campinas'),
(76012, 'https://ror.org/041v1ea26', 'en', 1, 'https://ror.org/041v1ea26 NCMI Information and Data Centre'),
(76013, 'https://ror.org/032j81x58', 'en', 1, 'https://ror.org/032j81x58 Zoo Outreach Organisation'),
(76014, 'https://ror.org/040spfh06', 'en', 1, 'https://ror.org/040spfh06 Wildlife Information Liaison Development'),
(76015, 'https://ror.org/03erhnf31', 'en', 1, 'https://ror.org/03erhnf31 Mattapally Technologies'),
(76016, 'https://ror.org/05pf9gd31', 'no_lang_code', 1, 'https://ror.org/05pf9gd31 Valtris Specialty Chemicals (United States)'),
(76017, 'https://ror.org/004q9nj68', 'no_lang_code', 1, 'https://ror.org/004q9nj68 Vapotherm (United States)'),
(76018, 'https://ror.org/034c3qw48', 'no_lang_code', 1, 'https://ror.org/034c3qw48 Vivex Biologics (United States)'),
(76019, 'https://ror.org/01kx4gj60', 'no_lang_code', 1, 'https://ror.org/01kx4gj60 Varex Imaging (United States)'),
(76020, 'https://ror.org/02z36hk60', 'no_lang_code', 1, 'https://ror.org/02z36hk60 Virent (United States)'),
(76021, 'https://ror.org/05kg68171', 'no_lang_code', 1, 'https://ror.org/05kg68171 Vascor (United States)'),
(76022, 'https://ror.org/05n9nsw73', 'no_lang_code', 1, 'https://ror.org/05n9nsw73 Helixmith (South Korea)'),
(76023, 'https://ror.org/042xh2258', 'no_lang_code', 1, 'https://ror.org/042xh2258 Vatech (South Korea)'),
(76024, 'https://ror.org/046eef166', 'no_lang_code', 1, 'https://ror.org/046eef166 Velcro (United Kingdom)'),
(76025, 'https://ror.org/02awadj72', 'no_lang_code', 1, 'https://ror.org/02awadj72 Volk (United States)'),
(76026, 'https://ror.org/051vfhx38', 'no_lang_code', 1, 'https://ror.org/051vfhx38 vTv Therapeutics (United States)'),
(76027, 'https://ror.org/05fqc1f82', 'no_lang_code', 1, 'https://ror.org/05fqc1f82 Vyaire Medical (United States)'),
(76028, 'https://ror.org/01zm8nz34', 'no_lang_code', 1, 'https://ror.org/01zm8nz34 Vytronus (United States)'),
(76029, 'https://ror.org/02fafdw13', 'no_lang_code', 1, 'https://ror.org/02fafdw13 W&H (Austria)'),
(76030, 'https://ror.org/04ae5ch43', 'no_lang_code', 1, 'https://ror.org/04ae5ch43 Wakunaga (Japan) ę¹§ę°øč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(76031, 'https://ror.org/04v0xgx08', 'no_lang_code', 1, 'https://ror.org/04v0xgx08 Wilmar International (Singapore)'),
(76032, 'https://ror.org/016k2xj91', 'no_lang_code', 1, 'https://ror.org/016k2xj91 Wittenstein (Germany)'),
(76033, 'https://ror.org/04z50tc18', 'no_lang_code', 1, 'https://ror.org/04z50tc18 Woodwelding (Switzerland)'),
(76034, 'https://ror.org/036rk0748', 'no_lang_code', 1, 'https://ror.org/036rk0748 Xtant Medical (United States)'),
(76035, 'https://ror.org/05def2162', 'no_lang_code', 1, 'https://ror.org/05def2162 Ya-Man (Japan)'),
(76036, 'https://ror.org/01ahhnh95', 'no_lang_code', 1, 'https://ror.org/01ahhnh95 Xellia (Denmark)'),
(76037, 'https://ror.org/00fx5vd87', 'no_lang_code', 1, 'https://ror.org/00fx5vd87 Xenex Disinfection Services (United States)'),
(76038, 'https://ror.org/045wez665', 'no_lang_code', 1, 'https://ror.org/045wez665 Crescita Therapeutics (Canada)'),
(76039, 'https://ror.org/015x34y38', 'no_lang_code', 1, 'https://ror.org/015x34y38 Wave Life Sciences (United States)'),
(76040, 'https://ror.org/01ehqfp97', 'no_lang_code', 1, 'https://ror.org/01ehqfp97 Zensun (China)'),
(76041, 'https://ror.org/00v0f9w17', 'no_lang_code', 1, 'https://ror.org/00v0f9w17 Welland Medical (United Kingdom)'),
(76042, 'https://ror.org/006mk5713', 'no_lang_code', 1, 'https://ror.org/006mk5713 Wellesley Pharmaceuticals (United States)'),
(76043, 'https://ror.org/023aqyp35', 'no_lang_code', 1, 'https://ror.org/023aqyp35 SihuanPharm (China)'),
(76044, 'https://ror.org/02j4jqr44', 'no_lang_code', 1, 'https://ror.org/02j4jqr44 Zeria Pharmaceutical (Japan) ć‚¼ćƒŖć‚¢ę–°č–¬å·„ę„­'),
(76045, 'https://ror.org/02jhay860', 'no_lang_code', 1, 'https://ror.org/02jhay860 Huahai Pharmaceutical (China) ęµ™ę±ŸåŽęµ·čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(76046, 'https://ror.org/014wkxc11', 'no_lang_code', 1, 'https://ror.org/014wkxc11 DenMat (United States)'),
(76047, 'https://ror.org/03qyfw860', 'no_lang_code', 1, 'https://ror.org/03qyfw860 Xyleco (United States)'),
(76048, 'https://ror.org/01w0mjg16', 'no_lang_code', 1, 'https://ror.org/01w0mjg16 Yamamoto Chamicals (Japan) å±±ęœ¬åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(76049, 'https://ror.org/05h86nk22', 'no_lang_code', 1, 'https://ror.org/05h86nk22 Zhejiang Medicine (China)'),
(76050, 'https://ror.org/016aygb24', 'no_lang_code', 1, 'https://ror.org/016aygb24 Zymeworks (Canada)'),
(76051, 'https://ror.org/0369dsh11', 'no_lang_code', 1, 'https://ror.org/0369dsh11 Zuiko (Japan)'),
(76052, 'https://ror.org/05pzr2r67', 'no_lang_code', 1, 'https://ror.org/05pzr2r67 Zoetis (Belgium)'),
(76053, 'https://ror.org/007009t97', 'no_lang_code', 1, 'https://ror.org/007009t97 Yuyama (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ¤ćƒž'),
(76054, 'https://ror.org/00jabcz03', 'no_lang_code', 1, 'https://ror.org/00jabcz03 Zobele (Italy)'),
(76055, 'https://ror.org/03ydbpd31', 'no_lang_code', 1, 'https://ror.org/03ydbpd31 Wellstat Biologics (United States)'),
(76056, 'https://ror.org/026cbjd11', 'no_lang_code', 1, 'https://ror.org/026cbjd11 Zobele (Spain)'),
(76057, 'https://ror.org/05w0whz56', 'no_lang_code', 1, 'https://ror.org/05w0whz56 Adey (United Kingdom)'),
(76058, 'https://ror.org/0409pat80', 'no_lang_code', 1, 'https://ror.org/0409pat80 DeVilbiss Healthcare (United States)'),
(76059, 'https://ror.org/00m25j606', 'no_lang_code', 1, 'https://ror.org/00m25j606 Polypipe (United Kingdom)'),
(76060, 'https://ror.org/03b3h3q73', 'no_lang_code', 1, 'https://ror.org/03b3h3q73 Graphcore (United Kingdom)'),
(76061, 'https://ror.org/05mby3840', 'no_lang_code', 1, 'https://ror.org/05mby3840 Technetix (United Kingdom)'),
(76062, 'https://ror.org/006h5wv45', 'no_lang_code', 1, 'https://ror.org/006h5wv45 Gripple (United Kingdom)'),
(76063, 'https://ror.org/00qhzxe29', 'no_lang_code', 1, 'https://ror.org/00qhzxe29 Prevayl (United Kingdom)'),
(76064, 'https://ror.org/032dz8133', 'no_lang_code', 1, 'https://ror.org/032dz8133 Gurit (United Kingdom)'),
(76065, 'https://ror.org/02vhp3z89', 'no_lang_code', 1, 'https://ror.org/02vhp3z89 Gurulogic Microsystems (Finland)'),
(76066, 'https://ror.org/03zqmrr34', 'no_lang_code', 1, 'https://ror.org/03zqmrr34 Powerscreen (United Kingdom)'),
(76067, 'https://ror.org/012rcg503', 'no_lang_code', 1, 'https://ror.org/012rcg503 Belron (Switzerland)'),
(76068, 'https://ror.org/02w4qet09', 'no_lang_code', 1, 'https://ror.org/02w4qet09 Protean Electric (United Kingdom)'),
(76069, 'https://ror.org/03d3en416', 'no_lang_code', 1, 'https://ror.org/03d3en416 Rockley Photonics (United States)'),
(76070, 'https://ror.org/03kc5dr38', 'no_lang_code', 1, 'https://ror.org/03kc5dr38 Cambridge Mechatronics (United Kingdom)'),
(76071, 'https://ror.org/03dk72h16', 'no_lang_code', 1, 'https://ror.org/03dk72h16 Seven Networks (United States)'),
(76072, 'https://ror.org/031jzas57', 'no_lang_code', 1, 'https://ror.org/031jzas57 Silixa (United Kingdom)'),
(76073, 'https://ror.org/00ac1vt62', 'no_lang_code', 1, 'https://ror.org/00ac1vt62 Kenwood (United Kingdom)'),
(76074, 'https://ror.org/05nj3e153', 'no_lang_code', 1, 'https://ror.org/05nj3e153 Spirax Sarco (United Kingdom)'),
(76075, 'https://ror.org/05x3e5221', 'no_lang_code', 1, 'https://ror.org/05x3e5221 Synaptics (United Kingdom)'),
(76076, 'https://ror.org/00eexgx04', 'no_lang_code', 1, 'https://ror.org/00eexgx04 Dril Quip (United States)'),
(76077, 'https://ror.org/033wj0h62', 'en', 1, 'https://ror.org/033wj0h62 DS Smith (United Kingdom)'),
(76078, 'https://ror.org/02pspay39', 'no_lang_code', 1, 'https://ror.org/02pspay39 Eaton (Netherlands)'),
(76079, 'https://ror.org/00rgsn672', 'no_lang_code', 1, 'https://ror.org/00rgsn672 Stannah (United Kingdom)'),
(76080, 'https://ror.org/01w94r626', 'no_lang_code', 1, 'https://ror.org/01w94r626 Synamedia (United Kingdom)'),
(76081, 'https://ror.org/01x68z872', 'no_lang_code', 1, 'https://ror.org/01x68z872 Loadhog (United Kingdom)'),
(76082, 'https://ror.org/01hg7d511', 'no_lang_code', 1, 'https://ror.org/01hg7d511 Login BV (Slovenia)'),
(76083, 'https://ror.org/00dp5a155', 'en', 1, 'https://ror.org/00dp5a155 TIFR Centre for Applicable Mathematics'),
(76084, 'https://ror.org/01axfdj86', 'en', 1, 'https://ror.org/01axfdj86 Homi Bhabha Centre for Science Education ą¤¹ą„‹ą¤®ą„€ भाभा ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°, ą¤Ÿą„€.ą¤†ą¤ˆ.ą¤ą¤«.आर'),
(76085, 'https://ror.org/02emgkf66', 'no_lang_code', 1, 'https://ror.org/02emgkf66 Otter Controls (United Kingdom)'),
(76086, 'https://ror.org/005vq4d33', 'no_lang_code', 1, 'https://ror.org/005vq4d33 Oxford Plastics (United Kingdom)'),
(76087, 'https://ror.org/04tbt8b85', 'en', 1, 'https://ror.org/04tbt8b85 National Centre for Radio Astrophysics ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą„‡ą¤”ą¤æą¤Æą„‹ ą¤–ą¤—ą„‹ą¤² ą¤­ą„Œą¤¤ą¤æą¤•ą„€ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(76088, 'https://ror.org/04tgrm918', 'no_lang_code', 1, 'https://ror.org/04tgrm918 nChain (United Kingdom)'),
(76089, 'https://ror.org/036yna661', 'no_lang_code', 1, 'https://ror.org/036yna661 F-Secure (Finland)'),
(76090, 'https://ror.org/03sqqq988', 'no_lang_code', 1, 'https://ror.org/03sqqq988 Sentec (United Kingdom)'),
(76091, 'https://ror.org/04fbk4w04', 'no_lang_code', 1, 'https://ror.org/04fbk4w04 Nihon Plast (Japan)'),
(76092, 'https://ror.org/02p6vf335', 'no_lang_code', 1, 'https://ror.org/02p6vf335 Frito-Lay (Switzerland)'),
(76093, 'https://ror.org/030jfpr63', 'no_lang_code', 1, 'https://ror.org/030jfpr63 Novalia (United Kingdom)'),
(76094, 'https://ror.org/03p9s5t60', 'no_lang_code', 1, 'https://ror.org/03p9s5t60 Nujira (United Kingdom)'),
(76095, 'https://ror.org/010p2sq51', 'no_lang_code', 1, 'https://ror.org/010p2sq51 Nabors Industries (United States)'),
(76096, 'https://ror.org/001bdsd09', 'en', 1, 'https://ror.org/001bdsd09 Osaka Kaisei Hospital å¤§é˜Ŗå›žē”Ÿē—…é™¢');
INSERT INTO `rors` VALUES
(76097, 'https://ror.org/00wwe0e57', 'en', 1, 'https://ror.org/00wwe0e57 Sabalan University of Advanced Technologies دانؓگاه ŁŁ†Ų§ŁˆŲ±ŪŒ Ł‡Ų§ŪŒ Ł†ŁˆŪŒŁ† سبلان'),
(76098, 'https://ror.org/045g15j06', 'no_lang_code', 1, 'https://ror.org/045g15j06 Chevron (China) é›Ŗä½›é¾é¦™ęøÆęœ‰é™å…¬åø'),
(76099, 'https://ror.org/02255bn64', 'en', 1, 'https://ror.org/02255bn64 Penang Development Corporation Perbadanan Pembangunan Pulau Pinang'),
(76100, '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, Fore­ign Investments and Technology'),
(76101, 'https://ror.org/049g0t365', 'en', 1, 'https://ror.org/049g0t365 Islamic Azad University Dolatabad دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲÆŁˆŁ„ŲŖ Ų¢ŲØŲ§ŲÆ'),
(76102, 'https://ror.org/019nmjx95', 'no_lang_code', 1, 'https://ror.org/019nmjx95 HEC Pharm (China)'),
(76103, 'https://ror.org/038mj2660', 'de', 1, 'https://ror.org/038mj2660 Eastern Switzerland University of Applied Sciences Ostschweizer Fachhochschule OST'),
(76104, 'https://ror.org/042wb3s35', 'en', 1, 'https://ror.org/042wb3s35 Selangor Business School'),
(76105, 'https://ror.org/03fg5ns40', 'en', 1, 'https://ror.org/03fg5ns40 MIT Sea Grant'),
(76106, 'https://ror.org/037f7zx95', 'en', 1, 'https://ror.org/037f7zx95 New Hampshire Sea Grant'),
(76107, 'https://ror.org/058wv3r60', 'en', 1, 'https://ror.org/058wv3r60 Export–Import Bank of Korea'),
(76108, 'https://ror.org/038rzmb16', 'en', 1, 'https://ror.org/038rzmb16 Delaware Sea Grant'),
(76109, 'https://ror.org/04rj1td02', 'en', 1, 'https://ror.org/04rj1td02 Space Engineering University äø­å›½äŗŗę°‘č§£ę”¾å†›ęˆ˜ē•„ę”Æę“éƒØé˜ŸčˆŖå¤©å·„ēØ‹å¤§å­¦'),
(76110, 'https://ror.org/02v07kh10', 'en', 1, 'https://ror.org/02v07kh10 Federal Polytechnic Ede'),
(76111, 'https://ror.org/048s1x807', 'en', 1, 'https://ror.org/048s1x807 ESEP-LE BERGER University'),
(76112, 'https://ror.org/00xyqkv27', 'en', 1, 'https://ror.org/00xyqkv27 Axis Multispecialty Hospital'),
(76113, 'https://ror.org/002ayyd98', 'en', 1, 'https://ror.org/002ayyd98 Mie Forestry Research Institute äø‰é‡ēœŒ ęž—ę„­ē ”ē©¶ę‰€'),
(76114, 'https://ror.org/01tyzsw55', 'en', 1, 'https://ror.org/01tyzsw55 Mie Agricultural Research Institute äø‰é‡ēœŒč¾²ę„­ē ”ē©¶ę‰€'),
(76115, 'https://ror.org/03zedkf25', 'no_lang_code', 1, 'https://ror.org/03zedkf25 Penta-Ocean Construction (Japan)'),
(76116, 'https://ror.org/00zw0jt22', 'no_lang_code', 1, 'https://ror.org/00zw0jt22 Berry (Switzerland)'),
(76117, 'https://ror.org/01gpa4h16', 'en', 1, 'https://ror.org/01gpa4h16 TRENDS Research & Advisory Ł…Ų±ŁƒŲ² ŲŖŲ±ŁŠŁ†ŲÆŲ² Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„Ų§Ų³ŲŖŲ“Ų§Ų±Ų§ŲŖ'),
(76118, 'https://ror.org/01m9s4d25', 'en', 1, 'https://ror.org/01m9s4d25 Colorado Space Grant Consortium'),
(76119, 'https://ror.org/0020h0412', 'en', 1, 'https://ror.org/0020h0412 Art Aia - Creatives / In / Residence'),
(76120, 'https://ror.org/03h2q9n18', 'en', 1, 'https://ror.org/03h2q9n18 Tennessee Space Grant Consortium'),
(76121, 'https://ror.org/02mkj1868', 'en', 1, 'https://ror.org/02mkj1868 New Hampshire Space Grant Consortium'),
(76122, 'https://ror.org/0071sjj14', 'en', 1, 'https://ror.org/0071sjj14 Massachusetts Space Grant Consortium'),
(76123, 'https://ror.org/04znb3x93', 'no_lang_code', 1, 'https://ror.org/04znb3x93 Nobuhara Hospital äæ”åŽŸē—…é™¢'),
(76124, 'https://ror.org/03kx02w94', 'en', 1, 'https://ror.org/03kx02w94 Experimental Drug Development Centre'),
(76125, 'https://ror.org/058v0t886', 'en', 1, 'https://ror.org/058v0t886 Sudan Academy of Sciences Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ…'),
(76126, 'https://ror.org/01vz88x14', 'en', 1, 'https://ror.org/01vz88x14 LogicalOutcomes'),
(76127, 'https://ror.org/03b368668', 'no_lang_code', 1, 'https://ror.org/03b368668 Intellia Therapeutics (United States)'),
(76128, 'https://ror.org/05kq83y33', 'no_lang_code', 1, 'https://ror.org/05kq83y33 Aequor (United States)'),
(76129, 'https://ror.org/00ztar512', 'en', 1, 'https://ror.org/00ztar512 Aichi Medical University Hospital ę„›ēŸ„åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(76130, 'https://ror.org/0080ttk76', 'es', 1, 'https://ror.org/0080ttk76 Instituto de Salud PĆŗblica de Chile'),
(76131, 'https://ror.org/034msyx24', 'no_lang_code', 1, 'https://ror.org/034msyx24 Fuji Chimera Research Institute (Japan) ę Ŗå¼ä¼šē¤¾ åÆŒå£«ć‚­ćƒ”ćƒ©ē·ē ”'),
(76132, 'https://ror.org/02e8nmk52', 'en', 1, 'https://ror.org/02e8nmk52 Tokyo Medical Examiner''s Office ę±äŗ¬éƒ½ē›£åÆŸåŒ»å‹™é™¢'),
(76133, 'https://ror.org/023sm4k53', 'en', 1, 'https://ror.org/023sm4k53 Department of Physics, Mathematics and Informatics ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ фізікі, Š¼Š°Ń‚ŃŠ¼Š°Ń‚Ń‹ŠŗŃ– і інфарматыкі'),
(76134, 'https://ror.org/01y1re497', 'en', 1, 'https://ror.org/01y1re497 Department of Physical and Technical Sciences ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ фізіка-Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹Ń… навук'),
(76135, 'https://ror.org/03bh65t82', 'en', 1, 'https://ror.org/03bh65t82 Department of Chemistry and Earth Sciences ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ хіміі і навук аб Š—ŃŠ¼Š»Ń–'),
(76136, 'https://ror.org/05dte6685', 'en', 1, 'https://ror.org/05dte6685 Department of Biological Sciences ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ Š±Ń–ŃŠ»Š°Š³Ń–Ń‡Š½Ń‹Ń… навук'),
(76137, 'https://ror.org/049c9xv68', 'en', 1, 'https://ror.org/049c9xv68 Department of Medical Sciences ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ меГыцынскіх навук'),
(76138, 'https://ror.org/02xk7ft96', 'en', 1, 'https://ror.org/02xk7ft96 Department of Humanities and Arts ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½Ń‹Ń… навук і Š¼Š°ŃŃ‚Š°Ń†Ń‚Š²Š°Ńž ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… наук Šø ŠøŃŠŗŃƒŃŃŃ‚Š² ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(76139, 'https://ror.org/014tv7j22', 'en', 1, 'https://ror.org/014tv7j22 Department of Agrarian Sciences ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ аграрных навук'),
(76140, 'https://ror.org/01my9wr56', 'en', 1, 'https://ror.org/01my9wr56 Bridge Consultants Foundation'),
(76141, 'https://ror.org/03bq5ar94', 'en', 1, 'https://ror.org/03bq5ar94 Stavanger Museum'),
(76142, 'https://ror.org/017w08b10', 'en', 1, 'https://ror.org/017w08b10 Stockholm Environment Institute'),
(76143, 'https://ror.org/00ng9c593', 'en', 1, 'https://ror.org/00ng9c593 Stockholm Environment Institute'),
(76144, 'https://ror.org/03cst3c12', 'no_lang_code', 1, 'https://ror.org/03cst3c12 Yidu Central Hospital of Weifang ę½åŠåø‚ē›Šéƒ½äø­åæƒåŒ»é™¢'),
(76145, 'https://ror.org/039zt7w55', 'en', 1, 'https://ror.org/039zt7w55 University Hospital Kyoto Prefectural University of Medicine äŗ¬éƒ½åŗœē«‹åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(76146, 'https://ror.org/04d5hc132', 'no_lang_code', 1, 'https://ror.org/04d5hc132 Noside ē”°äø­ē¾Žéƒ·ę•™č‚²ē ”ē©¶ę‰€'),
(76147, 'https://ror.org/041bygf77', 'en', 1, 'https://ror.org/041bygf77 Ghent University Global Campus ź²ķŠøėŒ€ķ•™źµ'),
(76148, 'https://ror.org/042n88708', 'no_lang_code', 1, 'https://ror.org/042n88708 Nitto RIKEN (Japan) ę—„ę±ē†åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(76149, 'https://ror.org/05nfvzf52', 'no_lang_code', 1, 'https://ror.org/05nfvzf52 Isuzu Advanced Engineering Center (Japan) ć„ć™ć‚žäø­å¤®ē ”ē©¶ę‰€'),
(76150, 'https://ror.org/0355tjr07', 'fr', 1, 'https://ror.org/0355tjr07 HƓpital Maritime de Berck'),
(76151, 'https://ror.org/01sr2h546', 'fr', 1, 'https://ror.org/01sr2h546 HĆ“pital Ɖmile-Roux'),
(76152, 'https://ror.org/03zry0650', 'fr', 1, 'https://ror.org/03zry0650 HƓpital Georges-Clemenceau'),
(76153, 'https://ror.org/02xhgtj20', 'fr', 1, 'https://ror.org/02xhgtj20 HƓpital Marin de Hendaye'),
(76154, 'https://ror.org/053385a79', 'fr', 1, 'https://ror.org/053385a79 HƓpital Dupuytren'),
(76155, 'https://ror.org/02f65mn87', 'en', 1, 'https://ror.org/02f65mn87 Apollo Institute of Medical Sciences & Research అపోలో ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°øą±ˆą°Øą±ą°øą±†ą°øą± ą°…ą°‚ą°”ą± ą°°ą±€ą°øą±†ą°°ą±ą°šą±'),
(76156, 'https://ror.org/03e04x797', 'fr', 1, 'https://ror.org/03e04x797 HƓpital RenƩ-Muret'),
(76157, 'https://ror.org/03h9w0610', 'fr', 1, 'https://ror.org/03h9w0610 HƓpital Sainte-PƩrine'),
(76158, 'https://ror.org/05cmw3824', 'fr', 1, 'https://ror.org/05cmw3824 HƓpital San Salvadour'),
(76159, 'https://ror.org/03q129k63', 'en', 1, 'https://ror.org/03q129k63 Kanazawa Medical University Hospital é‡‘ę²¢åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(76160, 'https://ror.org/02yyy2c79', 'en', 1, 'https://ror.org/02yyy2c79 Kenya Paediatric Research Consortium'),
(76161, 'https://ror.org/02qft9w02', 'en', 1, 'https://ror.org/02qft9w02 Taiwan Electrical and Electronic Manufacturers’ Association å°ē£å€é›»ę©Ÿé›»å­å·„ę„­åŒę„­å…¬ęœƒ'),
(76162, 'https://ror.org/01fhhep80', 'en', 1, 'https://ror.org/01fhhep80 China Productivity Center'),
(76163, 'https://ror.org/02k7g3c43', 'en', 1, 'https://ror.org/02k7g3c43 Taiwan Geographic Information Center č²”åœ˜ę³•äŗŗå°ē£åœ°ē†č³‡čØŠäø­åæƒ'),
(76164, 'https://ror.org/001s1be73', 'en', 1, 'https://ror.org/001s1be73 Industrial Development Bureau ē¶“ęæŸéƒØå·„ę„­å±€'),
(76165, 'https://ror.org/02x0rn474', 'en', 1, 'https://ror.org/02x0rn474 Taiwan External Trade Development Council äø­čÆę°‘åœ‹å°å¤–č²æę˜“ē™¼å±•å”ęœƒ'),
(76166, 'https://ror.org/00td9q934', 'en', 1, 'https://ror.org/00td9q934 Taiwan Semiconductor Industry Association'),
(76167, 'https://ror.org/01aqb5k11', 'en', 1, 'https://ror.org/01aqb5k11 Biotechnology and Pharmaceutical Industries Promotion Office ē¶“ęæŸéƒØē”ŸęŠ€é†«č—„ē”¢ę„­ē™¼å±•ęŽØå‹•å°ēµ„'),
(76168, 'https://ror.org/03jddr449', 'en', 1, 'https://ror.org/03jddr449 Thailand Board of Investment ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø„ąø“ąø°ąøąø£ąø£ąø”ąøąø²ąø£ąøŖą¹ˆąø‡ą¹€ąøŖąø£ąø“ąø”ąøąø²ąø£ąø„ąø‡ąø—ąøøąø™'),
(76169, 'https://ror.org/00p4ry522', 'no_lang_code', 1, 'https://ror.org/00p4ry522 Nomura Research Institute ę Ŗå¼ä¼šē¤¾é‡Žę‘ē·åˆē ”ē©¶ę‰€'),
(76170, 'https://ror.org/02fvx0g44', 'en', 1, 'https://ror.org/02fvx0g44 Banque de dƩveloppement du Canada Business Development Bank of Canada'),
(76171, 'https://ror.org/0268fey62', 'en', 1, 'https://ror.org/0268fey62 Chiba Prefectural Agriculture and Forestry Research Center Forest Research Institute åƒč‘‰ēœŒč¾²ęž—ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼ę£®ęž—ē ”ē©¶ę‰€'),
(76172, 'https://ror.org/00xkrw816', 'en', 1, 'https://ror.org/00xkrw816 China Construction Bank äø­å›½å»ŗč®¾é“¶č”Œ'),
(76173, 'https://ror.org/00pp12j94', 'en', 1, 'https://ror.org/00pp12j94 China Development Bank å›½å®¶å¼€å‘é“¶č”Œ'),
(76174, 'https://ror.org/00pbcb885', 'en', 1, 'https://ror.org/00pbcb885 National Energy Commission å›½å®¶čƒ½ęŗå§”å‘˜ä¼š'),
(76175, 'https://ror.org/02hj60p29', 'es', 1, 'https://ror.org/02hj60p29 Fundación Centro de Gestión Tecnológica e InformÔtica Industrial'),
(76176, 'https://ror.org/02sykmz69', 'en', 1, 'https://ror.org/02sykmz69 Czech-Moravian Guarantee and Development Bank'),
(76177, 'https://ror.org/047e5gf10', 'no_lang_code', 1, 'https://ror.org/047e5gf10 ClassNK äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęµ·äŗ‹å”ä¼š'),
(76178, 'https://ror.org/02ywmxs27', 'no_lang_code', 1, 'https://ror.org/02ywmxs27 Nousouken (Japan) ę Ŗå¼ä¼šē¤¾č¾²ę„­ē·åˆē ”ē©¶ę‰€'),
(76179, 'https://ror.org/0176eja59', 'en', 1, 'https://ror.org/0176eja59 Foundation for Finnish Inventions KeksintƶsƤƤtiƶ'),
(76180, 'https://ror.org/00cky6c92', 'no_lang_code', 1, 'https://ror.org/00cky6c92 Tesi (Finland)'),
(76181, 'https://ror.org/02bf7eh36', 'no_lang_code', 1, 'https://ror.org/02bf7eh36 Finnvera (Finland)'),
(76182, 'https://ror.org/03ax15t06', 'en', 1, 'https://ror.org/03ax15t06 Sheltering Arms Institute'),
(76183, 'https://ror.org/01zzaw986', 'en', 1, 'https://ror.org/01zzaw986 General Clinic PhưƔng Nam Phòng KhÔm Đa Khoa PhưƔng Nam'),
(76184, 'https://ror.org/00pm0z037', 'en', 1, 'https://ror.org/00pm0z037 Georgia''s Innovation and Technology Agency įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ˜įƒœįƒįƒ•įƒįƒŖįƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ“įƒ įƒ¢įƒ”įƒ„įƒœįƒįƒšįƒįƒ’įƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ”įƒįƒįƒ’įƒ”įƒœįƒ¢įƒ'),
(76185, 'https://ror.org/048f8a181', 'no_lang_code', 1, 'https://ror.org/048f8a181 IDBI Bank'),
(76186, 'https://ror.org/0235bes35', 'no_lang_code', 1, 'https://ror.org/0235bes35 Coventry & Warwickshire Local Enterprise Partnership (United Kingdom)'),
(76187, 'https://ror.org/00axkns98', 'en', 1, 'https://ror.org/00axkns98 Electronics Corporation of India'),
(76188, 'https://ror.org/05a0mtz36', 'en', 1, 'https://ror.org/05a0mtz36 Renewable Energy Corporation of India'),
(76189, 'https://ror.org/05jka5961', 'es', 1, 'https://ror.org/05jka5961 Instituto Tecnológico del Salmón Salmon Technology Institute'),
(76190, 'https://ror.org/02qhvm916', 'en', 1, 'https://ror.org/02qhvm916 Corporación de Fomento de la Producción de Chile Production Development Corporation'),
(76191, 'https://ror.org/00pmqj178', 'en', 1, 'https://ror.org/00pmqj178 Eunpyeong Hospital ģ„œģšøķŠ¹ė³„ģ‹œ ģ€ķ‰ė³‘ģ›'),
(76192, 'https://ror.org/002kcsd03', 'en', 1, 'https://ror.org/002kcsd03 Institute of Manuscripts of Azerbaijan ʏlyazmalar İnstitutu'),
(76193, 'https://ror.org/053641y49', 'en', 1, 'https://ror.org/053641y49 Japan Coal Energy Center ēŸ³ē‚­ć‚Øćƒćƒ«ć‚®ćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(76194, 'https://ror.org/046axse10', 'en', 1, 'https://ror.org/046axse10 The Japanese Institute of Fisheries Infrastructure and Communities ę¼ęøÆę¼å “ę¼ę‘ē·åˆē ”ē©¶ę‰€'),
(76195, 'https://ror.org/00345kx61', 'en', 1, 'https://ror.org/00345kx61 Physical Education and Medicine Research Foundation čŗ«ä½“ę•™č‚²åŒ»å­¦ē ”ē©¶ę‰€'),
(76196, 'https://ror.org/02kt6vs55', 'pt', 1, 'https://ror.org/02kt6vs55 Unichristus'),
(76197, 'https://ror.org/04z20hw90', 'en', 1, 'https://ror.org/04z20hw90 Tanaka Institute of Education 田中教育研究所'),
(76198, 'https://ror.org/02z8fgy02', 'no_lang_code', 1, 'https://ror.org/02z8fgy02 Terumo Aortic (United Kingdom)'),
(76199, 'https://ror.org/02twaqp73', 'no_lang_code', 1, 'https://ror.org/02twaqp73 Berg (United States)'),
(76200, 'https://ror.org/02kssw685', 'no_lang_code', 1, 'https://ror.org/02kssw685 Olatec (United States)'),
(76201, 'https://ror.org/033tvvz33', 'no_lang_code', 1, 'https://ror.org/033tvvz33 Cook Research (United States)'),
(76202, 'https://ror.org/00nt0xf41', 'en', 1, 'https://ror.org/00nt0xf41 Islamic Azad University of Gachsaran دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گچساران'),
(76203, 'https://ror.org/01n71v551', 'en', 1, 'https://ror.org/01n71v551 Universal Scientific Education and Research Network ؓبکه Ų¬Ł‡Ų§Ł†ŪŒ Ų¢Ł…ŁˆŲ²Ų“ و Ł¾Ś˜ŁˆŁ‡Ų“ Ł‡Ų§ŪŒ Ų¹Ł„Ł…ŪŒ'),
(76204, 'https://ror.org/04jf6jw55', 'en', 1, 'https://ror.org/04jf6jw55 University of Science and Technology of Mazandaran دانؓگاه علم و ŁŁ†Ų§ŁˆŲ±ŪŒ مازندران'),
(76205, 'https://ror.org/0095a7z52', 'en', 1, 'https://ror.org/0095a7z52 Islamic Azad University Kashmar Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کاؓمر'),
(76206, 'https://ror.org/031g2ra50', 'en', 1, 'https://ror.org/031g2ra50 PLA Air Force Aviation University äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›čˆŖē©ŗå¤§å­¦'),
(76207, 'https://ror.org/05bmwgs04', 'en', 1, 'https://ror.org/05bmwgs04 Sabzevar University of New Technology دانؓگاه ŁŁ†Ų§ŁˆŲ±ŪŒ Ł‡Ų§ŪŒ Ł†ŁˆŪŒŁ† سبزوار'),
(76208, 'https://ror.org/04gp0de23', 'id', 1, 'https://ror.org/04gp0de23 IAIN Palangka Raya'),
(76209, 'https://ror.org/00xk3qa12', 'no_lang_code', 1, 'https://ror.org/00xk3qa12 Transparency Lab (Netherlands)'),
(76210, 'https://ror.org/014a6fe58', 'en', 1, 'https://ror.org/014a6fe58 Whole Health Institute'),
(76211, 'https://ror.org/0397szj42', 'en', 1, 'https://ror.org/0397szj42 Tarsus University Tarsus Üniversitesi'),
(76212, 'https://ror.org/034yc4v31', 'en', 1, 'https://ror.org/034yc4v31 Debark University'),
(76213, 'https://ror.org/04vxw9c34', 'en', 1, 'https://ror.org/04vxw9c34 University of Southampton Malaysia'),
(76214, 'https://ror.org/051a88j84', 'pt', 1, 'https://ror.org/051a88j84 Centro UniversitƔrio Maurƭcio de Nassau'),
(76215, 'https://ror.org/01jzeez77', 'en', 1, 'https://ror.org/01jzeez77 Maryland Advanced Development Laboratory'),
(76216, 'https://ror.org/051j6j225', 'en', 1, 'https://ror.org/051j6j225 Final International University Uluslararası Final Üniversitesi'),
(76217, 'https://ror.org/0161hbt42', 'en', 1, 'https://ror.org/0161hbt42 University of Gonabad Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŁŠ گناباد'),
(76218, 'https://ror.org/01mc04w21', 'en', 1, 'https://ror.org/01mc04w21 Fujian Business University ē¦å»ŗå•†å­¦é™¢'),
(76219, 'https://ror.org/0181a8730', 'en', 1, 'https://ror.org/0181a8730 Harcourt Butler Technical University ą¤¹ą¤°ą¤•ą„‹ą¤°ą„ą¤Ÿ बटलर ą¤Ÿą„‡ą¤•ą„ą¤Øą¤æą¤•ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(76220, 'https://ror.org/01eqh1863', 'en', 1, 'https://ror.org/01eqh1863 Yango University 阳光学院'),
(76221, 'https://ror.org/01w9wgg77', 'en', 1, 'https://ror.org/01w9wgg77 Istanbul Kent University İstanbul Kent Üniversitesi'),
(76222, 'https://ror.org/03mzw7781', 'en', 1, 'https://ror.org/03mzw7781 Jilin Medical University å‰ęž—åŒ»čÆå­¦é™¢'),
(76223, 'https://ror.org/017fspt77', 'en', 1, 'https://ror.org/017fspt77 Kutaisi International University įƒ„įƒ£įƒ—įƒįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ”įƒ įƒ—įƒįƒØįƒįƒ įƒ˜įƒ”įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(76224, 'https://ror.org/02nzd5081', 'en', 1, 'https://ror.org/02nzd5081 Arish University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ų±ŁŠŲ“'),
(76225, 'https://ror.org/02vrpj575', 'en', 1, 'https://ror.org/02vrpj575 Kyiv Academic University ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ АкаГемічний Університет'),
(76226, 'https://ror.org/05afd6695', 'en', 1, 'https://ror.org/05afd6695 Maharaja Bir Bikram University মহারাজা বির ą¦¬ą¦æą¦•ą§ą¦°ą¦® ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(76227, 'https://ror.org/01crytg85', 'en', 1, 'https://ror.org/01crytg85 Adani Institute of Infrastructure Engineering અદાણી ąŖ‡ąŖØą«ąŖøą«ąŖŸąŖæąŖŸą«ąŖÆą«‚ąŖŸ ąŖ“ąŖ« ąŖˆąŖØą«ąŖ«ą«ąŖ°ąŖ¾ąŖøą«ąŖŸą«ąŖ°ąŖ•ą«ąŖšąŖ° ąŖąŖØą«ąŖœąŖæąŖØąŖæąŖÆąŖ°ąŖæąŖ‚ąŖ—'),
(76228, 'https://ror.org/04s3t8g44', 'en', 1, 'https://ror.org/04s3t8g44 Sa''adatu Rimi College of Education'),
(76229, 'https://ror.org/00bzfhs56', 'en', 1, 'https://ror.org/00bzfhs56 The Technological College of Beer Sheva המכללה ×”×˜×›× ×•×œ×•×’×™×Ŗ באר שבע'),
(76230, 'https://ror.org/03ytenv10', 'en', 1, 'https://ror.org/03ytenv10 Northern Technical University الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„Ų“Ł…Ų§Ł„ŁŠŲ©'),
(76231, 'https://ror.org/04am5ns61', 'en', 1, 'https://ror.org/04am5ns61 The Arab Academic College for Education in Israel המכללה ×”××§×“×ž×™×Ŗ הערבית לחינוך ×‘×™×©×Ø××œ Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„ŲŖŲ±ŲØŁŠŲ© في Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„'),
(76232, 'https://ror.org/040egw157', 'id', 1, 'https://ror.org/040egw157 Institut Teknologi dan Sains Nahdlatul Ulama'),
(76233, 'https://ror.org/02qnx8e75', 'en', 1, 'https://ror.org/02qnx8e75 Institute of Marine Engineering Istituto di Ingegneria del Mare'),
(76234, 'https://ror.org/00aazk693', 'en', 1, 'https://ror.org/00aazk693 National Institute of Technology Manipur ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą¤£ą¤æą¤Ŗą„ą¤°'),
(76235, 'https://ror.org/02jktx121', 'en', 1, 'https://ror.org/02jktx121 Institut Teknologi Sumatera Sumatera Institute of Technology'),
(76236, 'https://ror.org/01xf31a71', 'en', 1, 'https://ror.org/01xf31a71 College of Applied Sciences, Nizwa ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© ŲØŁ†Ų²ŁˆŁ‰'),
(76237, 'https://ror.org/059s97738', 'en', 1, 'https://ror.org/059s97738 Skyline University Nigeria'),
(76238, 'https://ror.org/05vad5q49', 'en', 1, 'https://ror.org/05vad5q49 Milli Aviasiya Akademiyası National Aviation Academy ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ авиации АзербайГжана'),
(76239, 'https://ror.org/024we4p93', 'en', 1, 'https://ror.org/024we4p93 Rustaq College of Education ŁƒŁ„ŁŠŲ© Ų§Ł„ŲŖŲ±ŲØŁŠŲ© بالرستاق'),
(76240, 'https://ror.org/00red6q96', 'id', 1, 'https://ror.org/00red6q96 Politeknik Medica Farma Husada Mataram'),
(76241, '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'),
(76242, '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'),
(76243, 'https://ror.org/01kjj2h97', 'en', 1, 'https://ror.org/01kjj2h97 Moscow Research Institute for Cybernetic Medicine Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кибернетической меГицины'),
(76244, 'https://ror.org/02f71a260', 'en', 1, 'https://ror.org/02f71a260 Motamed Cancer Institute Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ł…Ų¹ŲŖŁ…ŲÆ جهاد ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ'),
(76245, 'https://ror.org/00tkrt383', 'en', 1, 'https://ror.org/00tkrt383 Chianti Multifunctional Observatory Osservatorio Polifunzionale del Chianti'),
(76246, 'https://ror.org/03ks20z28', 'en', 1, 'https://ror.org/03ks20z28 Instituto Nacional de Calidad National Institute of Quality'),
(76247, 'https://ror.org/049kqfg40', 'en', 1, 'https://ror.org/049kqfg40 High Intensity Heavy-ion Accelerator Facility å¼ŗęµé‡ē¦»å­åŠ é€Ÿå™Øč£…ē½®'),
(76248, 'https://ror.org/00qhvgf79', 'en', 1, 'https://ror.org/00qhvgf79 Research Center in Industrial Technologies وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ و البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(76249, 'https://ror.org/03mvs6080', 'en', 1, 'https://ror.org/03mvs6080 Yangzhou Municipal Meteorological Bureau ę‰¬å·žåø‚ę°”č±”å±€'),
(76250, 'https://ror.org/00qkwk946', 'fr', 1, 'https://ror.org/00qkwk946 Institut de la Filtration et des Techniques SƩparatives'),
(76251, 'https://ror.org/001kv2y39', 'en', 1, 'https://ror.org/001kv2y39 Technology Innovation Institute معهد Ų§Ł„Ų§ŲØŲŖŁƒŲ§Ų± Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(76252, 'https://ror.org/02f3vh107', 'en', 1, 'https://ror.org/02f3vh107 The Cambridge Centre for Advanced Research and Education in Singapore'),
(76253, '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'),
(76254, 'https://ror.org/010heyq73', 'en', 1, 'https://ror.org/010heyq73 Zoo Atlanta'),
(76255, 'https://ror.org/03ex6j864', 'en', 1, 'https://ror.org/03ex6j864 Agence Nationale de Radioprotection National Radiation Protection Agency of Cameroon'),
(76256, 'https://ror.org/037f3w245', 'en', 1, 'https://ror.org/037f3w245 ComitƩ National de DƩveloppement des Technologies National Committee for the Development of Technologies'),
(76257, 'https://ror.org/05hbjh330', 'no_lang_code', 1, 'https://ror.org/05hbjh330 Marui Galvanizing (Japan)'),
(76258, 'https://ror.org/05qqw9p49', 'en', 1, 'https://ror.org/05qqw9p49 Academia Nacional de Ciencias National Academy of Sciences'),
(76259, 'https://ror.org/03cfzvy87', 'no_lang_code', 1, 'https://ror.org/03cfzvy87 Memcomputing (United States)'),
(76260, 'https://ror.org/05xeefy56', 'no_lang_code', 1, 'https://ror.org/05xeefy56 Preferred Networks (Japan)'),
(76261, 'https://ror.org/04k3c1424', 'en', 1, 'https://ror.org/04k3c1424 Hubei Provincial Museum ę¹–åŒ—ēœåšē‰©é¦†'),
(76262, 'https://ror.org/019qk5827', 'no_lang_code', 1, 'https://ror.org/019qk5827 Boly Media Communications (United States)'),
(76263, 'https://ror.org/01nqkgr65', 'tr', 1, 'https://ror.org/01nqkgr65 Medical Park Tarsus Hastanesi'),
(76264, 'https://ror.org/01f6r4445', 'no_lang_code', 1, 'https://ror.org/01f6r4445 CJSC Ekran FEP (Russia) Š—ŠŠž Экран ФЭП'),
(76265, 'https://ror.org/02bvn3590', 'no_lang_code', 1, 'https://ror.org/02bvn3590 Soliculture (United States)'),
(76266, 'https://ror.org/002hn6106', 'no_lang_code', 1, 'https://ror.org/002hn6106 CKM Analytix (United States)'),
(76267, 'https://ror.org/039q3gj90', 'no_lang_code', 1, 'https://ror.org/039q3gj90 Comecer (Italy)'),
(76268, 'https://ror.org/02nx9fz53', 'no_lang_code', 1, 'https://ror.org/02nx9fz53 Tibbar Plasma Technologies (United States)'),
(76269, 'https://ror.org/02mnrb887', 'no_lang_code', 1, 'https://ror.org/02mnrb887 Cafe Bazaar (Iran) کافه ŲØŲ§Ų²Ų§Ų±'),
(76270, 'https://ror.org/03wrjp633', 'no_lang_code', 1, 'https://ror.org/03wrjp633 Cailabs (France)'),
(76271, 'https://ror.org/02nt9wa64', 'no_lang_code', 1, 'https://ror.org/02nt9wa64 a.i. solutions (United States)'),
(76272, 'https://ror.org/01xa88s20', 'en', 1, 'https://ror.org/01xa88s20 Baotou Teachers College åŒ…å¤“åøˆčŒƒå­¦é™¢'),
(76273, 'https://ror.org/02p6a3b37', 'en', 1, 'https://ror.org/02p6a3b37 Creative Destruction Lab'),
(76274, 'https://ror.org/035jnav47', 'nl', 1, 'https://ror.org/035jnav47 J.M. Burgerscentrum'),
(76275, 'https://ror.org/00cwypn82', 'en', 1, 'https://ror.org/00cwypn82 Iranian National Center for Laser Science and Techology مرکز Ł…Ł„ŪŒ Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† Ł„ŪŒŲ²Ų± Ų§ŪŒŲ±Ų§Ł†'),
(76276, 'https://ror.org/00v4zth19', 'de', 1, 'https://ror.org/00v4zth19 Rechenkraft.net'),
(76277, 'https://ror.org/02m2h7991', 'no_lang_code', 1, 'https://ror.org/02m2h7991 Zhejiang Lab ä¹‹ę±Ÿå®žéŖŒå®¤'),
(76278, 'https://ror.org/03q269m48', 'en', 1, 'https://ror.org/03q269m48 The Thousand'),
(76279, 'https://ror.org/04fn6g127', 'en', 1, 'https://ror.org/04fn6g127 The Fusebox'),
(76280, 'https://ror.org/054q94y45', 'en', 1, 'https://ror.org/054q94y45 Centre de Collaboration MiQro Innovation MiQro Innovation Collaborative Centre'),
(76281, 'https://ror.org/02yjj0827', 'en', 1, 'https://ror.org/02yjj0827 Canberra Innovation Network'),
(76282, 'https://ror.org/01hmd1y41', 'en', 1, 'https://ror.org/01hmd1y41 Federal Police of Brazil Police FƩdƩrale Policƭa Federal Polƭcia Federal'),
(76283, 'https://ror.org/037k8mg80', 'en', 1, 'https://ror.org/037k8mg80 Nevada National Security Site'),
(76284, 'https://ror.org/01fdmy333', 'pt', 1, 'https://ror.org/01fdmy333 Governo do Estado de ParaĆ­ba'),
(76285, 'https://ror.org/04c3ged70', 'en', 1, 'https://ror.org/04c3ged70 Ministry of Foreign Affairs MinistƩrio das RelaƧƵes Exteriores'),
(76286, 'https://ror.org/0199zgv94', 'fr', 1, 'https://ror.org/0199zgv94 IRT M2P Instituts de Recherche Technologique'),
(76287, 'https://ror.org/01w0ddb93', 'no_lang_code', 1, 'https://ror.org/01w0ddb93 QuantaLab'),
(76288, 'https://ror.org/020z8x032', 'fr', 1, 'https://ror.org/020z8x032 Regroupement QuƩbƩcois sur les MatƩriaux de Pointe'),
(76289, 'https://ror.org/00xrmm659', 'no_lang_code', 1, 'https://ror.org/00xrmm659 Kintech Lab (Russia)'),
(76290, 'https://ror.org/051xjbt51', 'no_lang_code', 1, 'https://ror.org/051xjbt51 Omsktransmash (Russia) ŠžŠ¼ŃŠŗŠøŠ¹ завоГ транспортного Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(76291, 'https://ror.org/05ckxea07', 'no_lang_code', 1, 'https://ror.org/05ckxea07 Xi''an Airborne Electromagnetic Technology (China) č„æå®‰ēˆ±é‚¦ē”µē£ęŠ€ęœÆęœ‰é™č“£ä»»å…¬åø'),
(76292, 'https://ror.org/0146rd070', 'no_lang_code', 1, 'https://ror.org/0146rd070 Bloorazma (Iran) ŲØŁ„ŁˆŲ±Ų¢Ų²Ł…Ų§'),
(76293, 'https://ror.org/03nrjn370', 'no_lang_code', 1, 'https://ror.org/03nrjn370 Bluefors (Finland)'),
(76294, 'https://ror.org/04f8qsj21', 'no_lang_code', 1, 'https://ror.org/04f8qsj21 CTFusion (United States)'),
(76295, 'https://ror.org/03e150v94', 'no_lang_code', 1, 'https://ror.org/03e150v94 Central Alliance (United Kingdom)'),
(76296, 'https://ror.org/03br9cy66', 'no_lang_code', 1, 'https://ror.org/03br9cy66 Cherry Biotech (France)'),
(76297, 'https://ror.org/04vp1gh45', 'en', 1, 'https://ror.org/04vp1gh45 Services PartagƩs Canada Shared Services Canada'),
(76298, 'https://ror.org/0503xrr06', 'no_lang_code', 1, 'https://ror.org/0503xrr06 Closer Consultoria (Portugal)'),
(76299, 'https://ror.org/0208qbg77', 'en', 1, 'https://ror.org/0208qbg77 Shanghai Zhangjiang Laboratory äøŠęµ·ęŽØčæ›ē§‘ęŠ€åˆ›ę–°äø­åæƒå»ŗč®¾åŠžå…¬å®¤'),
(76300, 'https://ror.org/0264ncd87', 'no_lang_code', 1, 'https://ror.org/0264ncd87 Comeb (Italy)'),
(76301, 'https://ror.org/02weav903', 'no_lang_code', 1, 'https://ror.org/02weav903 Comet (Switzerland)'),
(76302, 'https://ror.org/04a55zb79', 'es', 1, 'https://ror.org/04a55zb79 SecretarĆ­a de Salud de BogotĆ”'),
(76303, 'https://ror.org/04898td28', 'no_lang_code', 1, 'https://ror.org/04898td28 Compagnie Tunisienne de Forage (Tunisia)'),
(76304, 'https://ror.org/00sp0zs16', 'no_lang_code', 1, 'https://ror.org/00sp0zs16 Compass (United States)'),
(76305, 'https://ror.org/0338ntq56', 'no_lang_code', 1, 'https://ror.org/0338ntq56 AVIC Optronics (China) čˆŖē©ŗå·„äøšå…‰ē”µę‰€'),
(76306, 'https://ror.org/02j6bcm26', 'no_lang_code', 1, 'https://ror.org/02j6bcm26 CoreTech (China)'),
(76307, 'https://ror.org/00a14tf81', 'en', 1, 'https://ror.org/00a14tf81 ISRO Propulsion Complex ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤…ą¤‚ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø संगठन ą¤Ŗą„ą¤°ą¤£ą„‹ą¤¦ą¤Ø ą¤øą¤®ą„‚ą¤¹ ą°‡ą°øą±ą°°ą±‹ ą°Ŗą±ą°°ą±Šą°Ŗą°²ą±ą°·ą°Øą± ą°•ą°¾ą°‚ą°Ŗą±ą°²ą±†ą°•ą±ą°øą±'),
(76308, 'https://ror.org/02q86ra23', 'en', 1, 'https://ror.org/02q86ra23 Administrative Council for Economic Defense Conselho Administrativo de Defesa EconƓmica'),
(76309, 'https://ror.org/037fh1278', 'no_lang_code', 1, 'https://ror.org/037fh1278 Cosmo Tech (France)'),
(76310, 'https://ror.org/04n7fat49', 'no_lang_code', 1, 'https://ror.org/04n7fat49 n&k Technology (United States)'),
(76311, 'https://ror.org/03aqnr710', 'no_lang_code', 1, 'https://ror.org/03aqnr710 3B the Fiberglass (Belgium)'),
(76312, 'https://ror.org/03vrph192', 'no_lang_code', 1, 'https://ror.org/03vrph192 Cyber Laser (Japan) ć‚µć‚¤ćƒćƒ¼ćƒ¬ćƒ¼ć‚¶'),
(76313, 'https://ror.org/02jze8s95', 'no_lang_code', 1, 'https://ror.org/02jze8s95 AP2E (France)'),
(76314, 'https://ror.org/0554q9126', 'no_lang_code', 1, 'https://ror.org/0554q9126 DAC Tools (United States)'),
(76315, 'https://ror.org/056vdh456', 'no_lang_code', 1, 'https://ror.org/056vdh456 APCON (Germany)'),
(76316, 'https://ror.org/01q27qv61', 'no_lang_code', 1, 'https://ror.org/01q27qv61 DATADVANCE (France)'),
(76317, 'https://ror.org/007x4cq57', 'en', 1, 'https://ror.org/007x4cq57 Directorate of Religious Affairs Diyanet İşleri Başkanlığı'),
(76318, 'https://ror.org/03dak6a36', 'no_lang_code', 1, 'https://ror.org/03dak6a36 Asics (Japan) ć‚¢ć‚·ćƒƒć‚Æć‚¹'),
(76319, 'https://ror.org/01h8x8p33', 'no_lang_code', 1, 'https://ror.org/01h8x8p33 DataStrategy (Japan) ćƒ‡ćƒ¼ć‚æć‚¹ćƒˆćƒ©ćƒ†ć‚ø'),
(76320, 'https://ror.org/048adnk25', 'no_lang_code', 1, 'https://ror.org/048adnk25 Acoustic Metamaterials Group (China)'),
(76321, 'https://ror.org/04fxggt25', 'no_lang_code', 1, 'https://ror.org/04fxggt25 ELCA (Switzerland)'),
(76322, 'https://ror.org/03avk6553', 'no_lang_code', 1, 'https://ror.org/03avk6553 Agnostiq (Canada)'),
(76323, 'https://ror.org/0277khs39', 'no_lang_code', 1, 'https://ror.org/0277khs39 ElFys (Finland)'),
(76324, 'https://ror.org/03xxp1119', 'no_lang_code', 1, 'https://ror.org/03xxp1119 Alpine Quantum Technologies (Austria)'),
(76325, 'https://ror.org/00vmat262', 'no_lang_code', 1, 'https://ror.org/00vmat262 TianKai Optical Communication (China) å¤©å‡Æå…‰é€šäæ”'),
(76326, 'https://ror.org/04nzxdc92', 'no_lang_code', 1, 'https://ror.org/04nzxdc92 Arioso Systems (Germany)'),
(76327, 'https://ror.org/01z620d89', 'no_lang_code', 1, 'https://ror.org/01z620d89 EoTech (United States)'),
(76328, 'https://ror.org/033x0n485', 'no_lang_code', 1, 'https://ror.org/033x0n485 Arithmer (Japan)'),
(76329, 'https://ror.org/05czqyh70', 'no_lang_code', 1, 'https://ror.org/05czqyh70 Electron (Ukraine) Електрон'),
(76330, 'https://ror.org/02z8azv60', 'no_lang_code', 1, 'https://ror.org/02z8azv60 LDI Innovation (Estonia)'),
(76331, 'https://ror.org/00v5sgn53', 'no_lang_code', 1, 'https://ror.org/00v5sgn53 LDK Solar (China) č³½ē¶­å¤Ŗé™½čƒ½'),
(76332, 'https://ror.org/00t35ff19', 'no_lang_code', 1, 'https://ror.org/00t35ff19 Arrayed Materials (China)'),
(76333, 'https://ror.org/04n075a40', 'no_lang_code', 1, 'https://ror.org/04n075a40 LPE (Italy)'),
(76334, 'https://ror.org/05g5rgx31', 'no_lang_code', 1, 'https://ror.org/05g5rgx31 Itasca Consultants (United States)'),
(76335, 'https://ror.org/04pvzz946', 'en', 1, 'https://ror.org/04pvzz946 The NSF AI Institute for Artificial Intelligence and Fundamental Interactions'),
(76336, 'https://ror.org/05vxfdm89', 'no_lang_code', 1, 'https://ror.org/05vxfdm89 Atom Computing (United States)'),
(76337, 'https://ror.org/01r5ta105', 'no_lang_code', 1, 'https://ror.org/01r5ta105 Azimuth (United States)'),
(76338, 'https://ror.org/034qmeb64', 'no_lang_code', 1, 'https://ror.org/034qmeb64 Elena International (Germany)'),
(76339, 'https://ror.org/002hr7c70', 'no_lang_code', 1, 'https://ror.org/002hr7c70 BGR Energy Systems (India)'),
(76340, 'https://ror.org/00130jf21', 'no_lang_code', 1, 'https://ror.org/00130jf21 Elliptika (France)'),
(76341, 'https://ror.org/02teaer78', 'no_lang_code', 1, 'https://ror.org/02teaer78 BME Bergmann (Germany)'),
(76342, 'https://ror.org/02hynf559', 'no_lang_code', 1, 'https://ror.org/02hynf559 Laser Systems & Solutions of Europe (France)'),
(76343, 'https://ror.org/0175s4d43', 'no_lang_code', 1, 'https://ror.org/0175s4d43 Engineering Software Steyr (Austria)'),
(76344, 'https://ror.org/02qzz9528', 'no_lang_code', 1, 'https://ror.org/02qzz9528 BNP Paribas (China)'),
(76345, 'https://ror.org/05gg5zh68', 'no_lang_code', 1, 'https://ror.org/05gg5zh68 LightTrans (Germany)'),
(76346, 'https://ror.org/03a7t7c50', 'no_lang_code', 1, 'https://ror.org/03a7t7c50 Entropica Labs (Singapore)'),
(76347, 'https://ror.org/0026qcv83', 'no_lang_code', 1, 'https://ror.org/0026qcv83 BeDimensional (Italy)'),
(76348, 'https://ror.org/035smsz08', 'no_lang_code', 1, 'https://ror.org/035smsz08 Evalf Computing (Netherlands)'),
(76349, 'https://ror.org/05044k006', 'no_lang_code', 1, 'https://ror.org/05044k006 Beijing Zhongchuangwei Quantum Communication Technology (China) äø­åˆ›äøŗé‡å­'),
(76350, 'https://ror.org/04rz47917', 'no_lang_code', 1, 'https://ror.org/04rz47917 Berger Paints (India)'),
(76351, 'https://ror.org/00hn06s81', 'no_lang_code', 1, 'https://ror.org/00hn06s81 Everspin Technologies (United States)'),
(76352, 'https://ror.org/01grvwt83', 'no_lang_code', 1, 'https://ror.org/01grvwt83 BioNet Lab (Japan) ćƒć‚¤ć‚Ŗćƒćƒƒćƒˆē ”ē©¶ę‰€'),
(76353, 'https://ror.org/01hnmd615', 'no_lang_code', 1, 'https://ror.org/01hnmd615 Hydroquest (France)'),
(76354, 'https://ror.org/00qg8pm87', 'no_lang_code', 1, 'https://ror.org/00qg8pm87 Line Corporation (Japan)'),
(76355, 'https://ror.org/02fyxhe35', 'no_lang_code', 1, 'https://ror.org/02fyxhe35 LinkedIn (United States)'),
(76356, 'https://ror.org/04jfr8f78', 'no_lang_code', 1, 'https://ror.org/04jfr8f78 Hyland Software (United States)'),
(76357, 'https://ror.org/05pnwae81', 'no_lang_code', 1, 'https://ror.org/05pnwae81 Lorentz Solution (United States)'),
(76358, 'https://ror.org/04wam6707', 'no_lang_code', 1, 'https://ror.org/04wam6707 IBM (Spain)'),
(76359, 'https://ror.org/04ttg5411', 'no_lang_code', 1, 'https://ror.org/04ttg5411 Lucht Probst Associates (Germany)'),
(76360, 'https://ror.org/01b6ag081', 'no_lang_code', 1, 'https://ror.org/01b6ag081 MSSCORPS (Taiwan)'),
(76361, 'https://ror.org/0203dhb90', 'no_lang_code', 1, 'https://ror.org/0203dhb90 IQM (Finland)'),
(76362, 'https://ror.org/00rbf3t83', 'no_lang_code', 1, 'https://ror.org/00rbf3t83 Silicon Therapeutics (United States)'),
(76363, 'https://ror.org/030z01v61', 'no_lang_code', 1, 'https://ror.org/030z01v61 ISHIFUKU (Japan) ēŸ³ē¦é‡‘å±žčˆˆę„­'),
(76364, 'https://ror.org/05magwg24', 'id', 1, 'https://ror.org/05magwg24 Simetri Foundation Yayasan Simetri'),
(76365, 'https://ror.org/0470e9841', 'no_lang_code', 1, 'https://ror.org/0470e9841 Infineon Technologies (Singapore)'),
(76366, 'https://ror.org/0506jd168', 'no_lang_code', 1, 'https://ror.org/0506jd168 Sisu Data (United States)'),
(76367, 'https://ror.org/032w0sp96', 'no_lang_code', 1, 'https://ror.org/032w0sp96 SmarAct (Germany)'),
(76368, 'https://ror.org/05pqsb912', 'no_lang_code', 1, 'https://ror.org/05pqsb912 SoftServe (United States)'),
(76369, 'https://ror.org/00j48ny80', 'no_lang_code', 1, 'https://ror.org/00j48ny80 Focused Photonics (China) čšå…‰ē§‘ęŠ€'),
(76370, 'https://ror.org/01an1rj90', 'en', 1, 'https://ror.org/01an1rj90 Sumitomo Mitsui Banking Corporation äø‰äŗ•ä½å‹éŠ€č”Œ'),
(76371, 'https://ror.org/05v2jtd22', 'no_lang_code', 1, 'https://ror.org/05v2jtd22 SuperSonic Imagine (France)'),
(76372, 'https://ror.org/02d83jn68', 'no_lang_code', 1, 'https://ror.org/02d83jn68 Forms Syntron Information (China) å››ę–¹ē²¾åˆ›'),
(76373, 'https://ror.org/01r8h1t86', 'no_lang_code', 1, 'https://ror.org/01r8h1t86 Swabian Instruments (Germany)'),
(76374, 'https://ror.org/0191qaw76', 'no_lang_code', 1, 'https://ror.org/0191qaw76 Swift Solar (United States)'),
(76375, 'https://ror.org/00bc49e61', 'no_lang_code', 1, 'https://ror.org/00bc49e61 GLS Industries (Canada)'),
(76376, 'https://ror.org/02az5k716', 'no_lang_code', 1, 'https://ror.org/02az5k716 Insync Technology (United Kingdom)'),
(76377, 'https://ror.org/05h2r8y34', 'no_lang_code', 1, 'https://ror.org/05h2r8y34 TCG Crest'),
(76378, 'https://ror.org/05r0r4s05', 'no_lang_code', 1, 'https://ror.org/05r0r4s05 Glo (Sweden)'),
(76379, 'https://ror.org/00sqkbc18', 'en', 1, 'https://ror.org/00sqkbc18 International Academy of Astronautics'),
(76380, 'https://ror.org/00276db30', 'no_lang_code', 1, 'https://ror.org/00276db30 TechnoSpex (Singapore)'),
(76381, 'https://ror.org/02te38114', 'no_lang_code', 1, 'https://ror.org/02te38114 Global Communication Semiconductors (United States)'),
(76382, 'https://ror.org/01g89d937', 'no_lang_code', 1, 'https://ror.org/01g89d937 Gloor Instruments (Switzerland)'),
(76383, 'https://ror.org/03djv3266', 'no_lang_code', 1, 'https://ror.org/03djv3266 Tesat-Spacecom (Germany)'),
(76384, 'https://ror.org/02dwgrr09', 'no_lang_code', 1, 'https://ror.org/02dwgrr09 Intermodulation Products (Sweden)'),
(76385, 'https://ror.org/04sna2e19', 'no_lang_code', 1, 'https://ror.org/04sna2e19 Tuya (China) ę¶‚éø¦'),
(76386, 'https://ror.org/04khcsm77', 'no_lang_code', 1, 'https://ror.org/04khcsm77 Thurmelec (France)'),
(76387, 'https://ror.org/02mpb3323', 'no_lang_code', 1, 'https://ror.org/02mpb3323 Tianjin Zhujin Technology Development (China) å¤©ę“„é“øé‡‘ē§‘ęŠ€å¼€å‘'),
(76388, 'https://ror.org/02dpxza53', 'no_lang_code', 1, 'https://ror.org/02dpxza53 Hefei Everpower Equipment (China)'),
(76389, 'https://ror.org/04g0m7w09', 'no_lang_code', 1, 'https://ror.org/04g0m7w09 Transpower (New Zealand)'),
(76390, 'https://ror.org/01v15pf03', 'no_lang_code', 1, 'https://ror.org/01v15pf03 Hellenic Telecommunications and Post Commission (Greece) Εθνική Επιτροπή Ī¤Ī·Ī»ĪµĻ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½ και ΤαχυΓρομείων'),
(76391, 'https://ror.org/04v2vj529', 'no_lang_code', 1, 'https://ror.org/04v2vj529 TraskBritt (United States)'),
(76392, 'https://ror.org/0114yxd88', 'no_lang_code', 1, 'https://ror.org/0114yxd88 Shijia Photons (China) 仕佳光子'),
(76393, 'https://ror.org/00qry0z04', 'no_lang_code', 1, 'https://ror.org/00qry0z04 Ionetix (United States)'),
(76394, 'https://ror.org/05wy2w269', 'no_lang_code', 1, 'https://ror.org/05wy2w269 HighFinesse (Germany)'),
(76395, 'https://ror.org/02snjxm78', 'no_lang_code', 1, 'https://ror.org/02snjxm78 Jabil (United States)'),
(76396, 'https://ror.org/00h9s7503', 'no_lang_code', 1, 'https://ror.org/00h9s7503 TrueOne Semiconductor (China) ä¼—å…ƒåŠåÆ¼ä½“'),
(76397, 'https://ror.org/008d7nr53', 'no_lang_code', 1, 'https://ror.org/008d7nr53 Manaty (France)'),
(76398, 'https://ror.org/059ndnh31', 'no_lang_code', 1, 'https://ror.org/059ndnh31 Turbon (Germany)'),
(76399, 'https://ror.org/050j7g273', 'no_lang_code', 1, 'https://ror.org/050j7g273 Jiangnan Industry Group (China) ę±Ÿå—å·„äøšé›†å›¢'),
(76400, 'https://ror.org/01krwnb02', 'no_lang_code', 1, 'https://ror.org/01krwnb02 VNIR Biotechnologies (India)'),
(76401, 'https://ror.org/022s2hx60', 'no_lang_code', 1, 'https://ror.org/022s2hx60 Kebotix (United States)'),
(76402, 'https://ror.org/00fz72d40', 'no_lang_code', 1, 'https://ror.org/00fz72d40 Visage Technologies (Sweden)'),
(76403, 'https://ror.org/05pre1r47', 'no_lang_code', 1, 'https://ror.org/05pre1r47 Metacept (United States)'),
(76404, 'https://ror.org/01djdkh62', 'no_lang_code', 1, 'https://ror.org/01djdkh62 VitreaLab (Austria)'),
(76405, 'https://ror.org/05d620q19', 'no_lang_code', 1, 'https://ror.org/05d620q19 Wave Up (Italy)'),
(76406, 'https://ror.org/02r5t1b69', 'no_lang_code', 1, 'https://ror.org/02r5t1b69 X-Ability (Japan)'),
(76407, 'https://ror.org/017v23v64', 'no_lang_code', 1, 'https://ror.org/017v23v64 Kisters (Germany)'),
(76408, 'https://ror.org/043nk1744', 'no_lang_code', 1, 'https://ror.org/043nk1744 Kobe Material Testing Laboratory (Japan)'),
(76409, 'https://ror.org/01jwfv926', 'no_lang_code', 1, 'https://ror.org/01jwfv926 Korean Register (South Korea) ķ•œźµ­ģ„ źø‰'),
(76410, 'https://ror.org/00d1mzg56', 'no_lang_code', 1, 'https://ror.org/00d1mzg56 Modern Electron (United States)'),
(76411, 'https://ror.org/02p1vs657', 'no_lang_code', 1, 'https://ror.org/02p1vs657 Multiverse Computing (Spain)'),
(76412, 'https://ror.org/00443vb41', 'no_lang_code', 1, 'https://ror.org/00443vb41 NeoPhotonics (United States)'),
(76413, 'https://ror.org/05mm3em25', 'no_lang_code', 1, 'https://ror.org/05mm3em25 Kunshan SW laser Technology (China)'),
(76414, 'https://ror.org/0413rnb52', 'no_lang_code', 1, 'https://ror.org/0413rnb52 Nisshin Scientia (Japan) ę—„é€²ć‚µć‚¤ć‚Øćƒ³ćƒ†ć‚£ć‚¢'),
(76415, 'https://ror.org/01s157z73', 'no_lang_code', 1, 'https://ror.org/01s157z73 Kyivmetroproekt (Ukraine) ŠšŠ˜Š‡Š’ŠŸŠ ŠžŠ•ŠšŠ¢'),
(76416, 'https://ror.org/045hcdy93', 'no_lang_code', 1, 'https://ror.org/045hcdy93 Wescam (Canada)'),
(76417, 'https://ror.org/04df39v43', 'en', 1, 'https://ror.org/04df39v43 State Scientific Institution "Institute of Educational Analytics" Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾ŃŠ²Ń–Ń‚Š½ŃŒŠ¾Ń— аналітики"'),
(76418, 'https://ror.org/04xhxg104', 'no_lang_code', 1, 'https://ror.org/04xhxg104 Microsoft (Canada)'),
(76419, 'https://ror.org/00nhwjb64', 'no_lang_code', 1, 'https://ror.org/00nhwjb64 Michelin (Japan)'),
(76420, 'https://ror.org/010kw5m31', 'no_lang_code', 1, 'https://ror.org/010kw5m31 OTI Lumionics (Canada)'),
(76421, 'https://ror.org/03xj8ec24', 'no_lang_code', 1, 'https://ror.org/03xj8ec24 Nodes & Links (United Kingdom)'),
(76422, 'https://ror.org/014vmc881', 'no_lang_code', 1, 'https://ror.org/014vmc881 OVO (Indonesia)'),
(76423, 'https://ror.org/03z8hek06', 'en', 1, 'https://ror.org/03z8hek06 Odessa Military Academy Š’Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾Ń— AкаГемії'),
(76424, 'https://ror.org/03zryq964', 'no_lang_code', 1, 'https://ror.org/03zryq964 Microsoft (Switzerland)'),
(76425, 'https://ror.org/03p5fy985', 'no_lang_code', 1, 'https://ror.org/03p5fy985 QuantumCTek (China)'),
(76426, 'https://ror.org/0234ye373', 'no_lang_code', 1, 'https://ror.org/0234ye373 Qubitekk (United States)'),
(76427, 'https://ror.org/04xfrsv55', 'no_lang_code', 1, 'https://ror.org/04xfrsv55 QuintessenceLabs (Australia)'),
(76428, 'https://ror.org/034rrk963', 'no_lang_code', 1, 'https://ror.org/034rrk963 Oledcomm (France)'),
(76429, 'https://ror.org/049rkmq69', 'no_lang_code', 1, 'https://ror.org/049rkmq69 Quside Technologies (Spain)'),
(76430, 'https://ror.org/00k389k29', 'no_lang_code', 1, 'https://ror.org/00k389k29 Rahko (United Kingdom)'),
(76431, 'https://ror.org/03yag1532', 'no_lang_code', 1, 'https://ror.org/03yag1532 Raith (Germany)'),
(76432, 'https://ror.org/0317a1b85', 'no_lang_code', 1, 'https://ror.org/0317a1b85 Onto Innovation (United States)'),
(76433, 'https://ror.org/04x4b2j19', 'no_lang_code', 1, 'https://ror.org/04x4b2j19 Optikron (Germany)'),
(76434, 'https://ror.org/058cy9h95', 'no_lang_code', 1, 'https://ror.org/058cy9h95 Origin Quantum Computing Technology Company (China) å›½å†…ē¬¬äø€ę¬¾é‡å­č®”ē®—ęœŗę“ä½œē³»ē»Ÿ'),
(76435, 'https://ror.org/04z3q6371', 'no_lang_code', 1, 'https://ror.org/04z3q6371 Scionix (Netherlands)'),
(76436, 'https://ror.org/0275t9a95', 'no_lang_code', 1, 'https://ror.org/0275t9a95 Suss Microoptics (Switzerland) SÜSS MicroOptics'),
(76437, 'https://ror.org/01vbw9k90', 'no_lang_code', 1, 'https://ror.org/01vbw9k90 Orihara Industrial (Japan)'),
(76438, 'https://ror.org/04y9apa89', 'no_lang_code', 1, 'https://ror.org/04y9apa89 Sanmina (United States)'),
(76439, 'https://ror.org/02hrbfc73', 'en', 1, 'https://ror.org/02hrbfc73 The Geneva Association'),
(76440, 'https://ror.org/00m7w6q76', 'no_lang_code', 1, 'https://ror.org/00m7w6q76 Exxelia (France)'),
(76441, 'https://ror.org/02c9ets03', 'no_lang_code', 1, 'https://ror.org/02c9ets03 PiDust Quantum Computing (Greece)'),
(76442, 'https://ror.org/04va9wj50', 'no_lang_code', 1, 'https://ror.org/04va9wj50 Plasmore (Italy)'),
(76443, 'https://ror.org/03xrww068', 'no_lang_code', 1, 'https://ror.org/03xrww068 Poietis (France)'),
(76444, 'https://ror.org/04052zp33', 'no_lang_code', 1, 'https://ror.org/04052zp33 Polygon Physics (France)'),
(76445, 'https://ror.org/00q8gqq97', 'no_lang_code', 1, 'https://ror.org/00q8gqq97 ProteinQure (Canada)'),
(76446, 'https://ror.org/04j4tnp25', 'no_lang_code', 1, 'https://ror.org/04j4tnp25 QGLex (Canada)'),
(76447, 'https://ror.org/046qe5448', 'no_lang_code', 1, 'https://ror.org/046qe5448 MS-Schramberg (Germany)'),
(76448, 'https://ror.org/02c5r0c23', 'no_lang_code', 1, 'https://ror.org/02c5r0c23 Sedecal Medical Imaging (Spain)'),
(76449, 'https://ror.org/0121xav09', 'no_lang_code', 1, 'https://ror.org/0121xav09 Seikow Chemical Engineering and Machinery (Japan) ć‚»ć‚¤ć‚³ćƒ¼åŒ–å·„ę©Ÿ'),
(76450, 'https://ror.org/04btxnx56', 'no_lang_code', 1, 'https://ror.org/04btxnx56 Sensitron Semiconductor (United States)'),
(76451, 'https://ror.org/01y2qzf06', 'no_lang_code', 1, 'https://ror.org/01y2qzf06 Seven Solutions (Spain)'),
(76452, 'https://ror.org/02mjrxh13', 'no_lang_code', 1, 'https://ror.org/02mjrxh13 Shenzhen Beauty Star (China) ę·±åœ³åø‚åŠ›åˆē§‘åˆ›č‚”ä»½ęœ‰é™å…¬åø'),
(76453, 'https://ror.org/04k4n5964', 'no_lang_code', 1, 'https://ror.org/04k4n5964 Sibatel Communications (United States)'),
(76454, 'https://ror.org/01njdjw78', 'no_lang_code', 1, 'https://ror.org/01njdjw78 QuEra Computing (United States)'),
(76455, 'https://ror.org/03xcp1s96', 'no_lang_code', 1, 'https://ror.org/03xcp1s96 QNu Labs (India)'),
(76456, 'https://ror.org/00k9exb07', 'no_lang_code', 1, 'https://ror.org/00k9exb07 Yashentech (China) äŗšē”³ē§‘ęŠ€'),
(76457, 'https://ror.org/01yjzw780', 'no_lang_code', 1, 'https://ror.org/01yjzw780 Quandela (France)'),
(76458, 'https://ror.org/04v4gyq34', 'no_lang_code', 1, 'https://ror.org/04v4gyq34 Yuyao Joywee Electrics (China) ā€ä½™å§šåø‚éŖ„åØē”µå™Ø'),
(76459, 'https://ror.org/00svm1971', 'no_lang_code', 1, 'https://ror.org/00svm1971 Quantlab (United States)'),
(76460, 'https://ror.org/03zmkfy07', 'no_lang_code', 1, 'https://ror.org/03zmkfy07 Quantropi (Canada)'),
(76461, 'https://ror.org/03s4d5r37', 'no_lang_code', 1, 'https://ror.org/03s4d5r37 Zenta Group (Chile)'),
(76462, 'https://ror.org/05ymsje86', 'no_lang_code', 1, 'https://ror.org/05ymsje86 Zeta Economics (United Kingdom)'),
(76463, 'https://ror.org/01tppr291', 'no_lang_code', 1, 'https://ror.org/01tppr291 d-fine (Germany)'),
(76464, 'https://ror.org/00x87ch96', 'no_lang_code', 1, 'https://ror.org/00x87ch96 Ibule Photonics (South Korea)'),
(76465, 'https://ror.org/04v0mdj41', 'en', 1, 'https://ror.org/04v0mdj41 Saveh University of Medical Sciences دانؓکده Ų¹Ł„ŁˆŁ… پزؓکی Ų³Ų§ŁˆŁ‡'),
(76466, 'https://ror.org/02mm76478', 'en', 1, 'https://ror.org/02mm76478 Bam University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŁ…'),
(76467, 'https://ror.org/017ay4a94', 'en', 1, 'https://ror.org/017ay4a94 Sunshine Coast University Hospital'),
(76468, 'https://ror.org/02tmeqq57', 'id', 1, 'https://ror.org/02tmeqq57 Universitas Internasional Semen Indonesia'),
(76469, 'https://ror.org/02hhx7493', 'hu', 1, 'https://ror.org/02hhx7493 Fejér Megyei Szent György Egyetemi Oktató KórhÔz'),
(76470, 'https://ror.org/03hzyvt65', 'id', 1, 'https://ror.org/03hzyvt65 Universitas Pahlawan Tuanku Tambusai'),
(76471, 'https://ror.org/0016by010', 'id', 1, 'https://ror.org/0016by010 Universitas Teknokrat Indonesia'),
(76472, 'https://ror.org/031aa5q21', 'en', 1, 'https://ror.org/031aa5q21 Kabardino-Balkarian Scientific Center ŠšŠŠ‘ŠŠ Š”Š˜ŠŠž-Š‘ŠŠ›ŠšŠŠ Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠ«Š™ Š¦Š•ŠŠ¢Š  Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ ŠŠšŠŠ”Š•ŠœŠ˜Š˜ ŠŠŠ£Šš'),
(76473, 'https://ror.org/01nztb982', 'en', 1, 'https://ror.org/01nztb982 Abdul Latif Jameel Poverty Action Lab'),
(76474, 'https://ror.org/04rynnm03', 'en', 1, 'https://ror.org/04rynnm03 American Finance Association'),
(76475, 'https://ror.org/026h4ma68', 'en', 1, 'https://ror.org/026h4ma68 Atlanta University Center Robert W. Woodruff Library'),
(76476, 'https://ror.org/04h59ty19', 'en', 1, 'https://ror.org/04h59ty19 Catholic Legal Immigration Network'),
(76477, 'https://ror.org/038fxc267', 'en', 1, 'https://ror.org/038fxc267 Department of International Relations and Cooperation'),
(76478, 'https://ror.org/05c2w3k86', 'en', 1, 'https://ror.org/05c2w3k86 Carolina Small Business Development Fund'),
(76479, 'https://ror.org/0340vv450', 'no_lang_code', 1, 'https://ror.org/0340vv450 Pregistry (United States)'),
(76480, 'https://ror.org/029gmnc79', 'en', 1, 'https://ror.org/029gmnc79 Human Technopole'),
(76481, 'https://ror.org/05p82s544', 'en', 1, 'https://ror.org/05p82s544 Cemmap'),
(76482, 'https://ror.org/0550rfz49', 'no_lang_code', 1, 'https://ror.org/0550rfz49 Cytologics (United States)'),
(76483, 'https://ror.org/05r36sv91', 'es', 1, 'https://ror.org/05r36sv91 Weber'),
(76484, 'https://ror.org/00gbn4v29', 'en', 1, 'https://ror.org/00gbn4v29 Global Alliance for Incinerator Alternatives'),
(76485, 'https://ror.org/04va4hg79', 'en', 1, 'https://ror.org/04va4hg79 Australian Institue of Men''s Health and Studies'),
(76486, 'https://ror.org/005e86b23', 'de', 1, 'https://ror.org/005e86b23 Economica'),
(76487, 'https://ror.org/051mv2k59', 'en', 1, 'https://ror.org/051mv2k59 Kursk Federal Agrarian Scientific Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŠŠ°ŃƒŃ‡Š½Š¾Šµ УчрежГение'),
(76488, 'https://ror.org/018fa8m68', 'en', 1, 'https://ror.org/018fa8m68 Forest Ecosystem Monitoring Cooperative'),
(76489, 'https://ror.org/0211zwq30', 'en', 1, 'https://ror.org/0211zwq30 Eurasia Institutes'),
(76490, 'https://ror.org/05e34z294', 'en', 1, 'https://ror.org/05e34z294 CTOR Press'),
(76491, 'https://ror.org/04sy0n440', 'en', 1, 'https://ror.org/04sy0n440 Dangerous Speech Project');
INSERT INTO `rors` VALUES
(76492, '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'),
(76493, 'https://ror.org/00m235s66', 'en', 1, 'https://ror.org/00m235s66 Solar Heating and Cooling Programme'),
(76494, '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'),
(76495, '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'),
(76496, 'https://ror.org/0182t0e82', 'en', 1, 'https://ror.org/0182t0e82 InterAmerican Network of Academies of Sciences'),
(76497, 'https://ror.org/05sd90862', 'en', 1, 'https://ror.org/05sd90862 Centre for Evaluation in Education and Science'),
(76498, 'https://ror.org/0438mhy97', 'en', 1, 'https://ror.org/0438mhy97 Egyptian Initiative for Personal Rights المبادرة Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ł„Ł„Ų­Ł‚ŁˆŁ‚ Ų§Ł„Ų“Ų®ŲµŁŠŲ©ā€Ž'),
(76499, 'https://ror.org/035vk6k04', 'en', 1, 'https://ror.org/035vk6k04 International Centre for Trade and Sustainable Development'),
(76500, 'https://ror.org/01a242a35', 'en', 1, 'https://ror.org/01a242a35 Government Logistics Department ę”æåŗœē‰©ęµęœå‹™ē½²'),
(76501, 'https://ror.org/00fefjp46', 'en', 1, 'https://ror.org/00fefjp46 Pertubuhan Pertolongan Wanita Women''s Aid Organisation'),
(76502, 'https://ror.org/03vay2m05', 'en', 1, 'https://ror.org/03vay2m05 Ioannis A. Lougaris Veterans Affairs Medical Center'),
(76503, 'https://ror.org/00fr8m236', 'en', 1, 'https://ror.org/00fr8m236 Canadian Media Concentration Research Project'),
(76504, 'https://ror.org/053s03b36', 'en', 1, 'https://ror.org/053s03b36 Laudes Foundation'),
(76505, 'https://ror.org/03hvanq85', 'en', 1, 'https://ror.org/03hvanq85 Fresno VA Medical Center'),
(76506, 'https://ror.org/05v9a1255', 'no_lang_code', 1, 'https://ror.org/05v9a1255 SyncScience (United States)'),
(76507, 'https://ror.org/02696ac72', 'en', 1, 'https://ror.org/02696ac72 Center for Indonesian Policy Studies'),
(76508, 'https://ror.org/01rkxdk30', 'en', 1, 'https://ror.org/01rkxdk30 VA Finger Lakes Healthcare System'),
(76509, 'https://ror.org/018hfs607', 'pt', 1, 'https://ror.org/018hfs607 Sobest – Associacao Brasileira de Estomaterapia'),
(76510, 'https://ror.org/0246m8g89', 'en', 1, 'https://ror.org/0246m8g89 James H. Quillen VA Medical Center'),
(76511, 'https://ror.org/01nmm5m33', 'en', 1, 'https://ror.org/01nmm5m33 Garland VA Medical Center'),
(76512, 'https://ror.org/04npcdn05', 'en', 1, 'https://ror.org/04npcdn05 Centre for Ageing Better'),
(76513, 'https://ror.org/02s723j51', 'en', 1, 'https://ror.org/02s723j51 Sam Rayburn Memorial Veterans Center'),
(76514, 'https://ror.org/028rr8292', 'en', 1, 'https://ror.org/028rr8292 Alvin C. York VA Medical Center'),
(76515, 'https://ror.org/027yknb66', 'en', 1, 'https://ror.org/027yknb66 Loch Raven VA Medical Center'),
(76516, 'https://ror.org/00cmyqz09', 'en', 1, 'https://ror.org/00cmyqz09 Civicus'),
(76517, 'https://ror.org/03edh3t65', 'en', 1, 'https://ror.org/03edh3t65 İLKE Science, Culture and Education Foundation İLKE İlim Kültür Eğitim Vakfı'),
(76518, 'https://ror.org/01z2gz488', 'en', 1, 'https://ror.org/01z2gz488 Tibor Rubin VA Medical Center'),
(76519, 'https://ror.org/032yzjf46', 'no_lang_code', 1, 'https://ror.org/032yzjf46 Isomer Design (Canada)'),
(76520, 'https://ror.org/03n3q9f18', 'en', 1, 'https://ror.org/03n3q9f18 Centre of Excellence for Development Impact and Learning'),
(76521, 'https://ror.org/03dgk3y06', 'es', 1, 'https://ror.org/03dgk3y06 Centro de Investigación y Proyectos en Ambiente y Desarrollo'),
(76522, 'https://ror.org/04e96g855', 'es', 1, 'https://ror.org/04e96g855 Consello da Cultura Galega'),
(76523, 'https://ror.org/00x2kwy36', 'en', 1, 'https://ror.org/00x2kwy36 Coordinating Research Council'),
(76524, 'https://ror.org/03sn0j818', 'en', 1, 'https://ror.org/03sn0j818 DeGEval - Gesellschaft für Evaluation DeGEval – Evaluation Society'),
(76525, 'https://ror.org/01ff0t864', 'es', 1, 'https://ror.org/01ff0t864 Instituto Nacional de Investigación en Glaciares y Ecosistemas de Montaña'),
(76526, 'https://ror.org/0125q6d71', 'en', 1, 'https://ror.org/0125q6d71 Consortium for Policy Research in Education'),
(76527, 'https://ror.org/05tqpj460', 'en', 1, 'https://ror.org/05tqpj460 Austrian Institute for SME Research KMU Forschung Austria'),
(76528, 'https://ror.org/055vvvt78', 'en', 1, 'https://ror.org/055vvvt78 Crop Protection Network'),
(76529, 'https://ror.org/03gjtzx24', 'en', 1, 'https://ror.org/03gjtzx24 Canadian Institute for Public Safety Research and Treatment Institut Canadien de Recherche et de Traitement en SƩcuritƩ Publique'),
(76530, 'https://ror.org/027y0fw80', 'en', 1, 'https://ror.org/027y0fw80 Institute for Poverty, Land and Agrarian Studies'),
(76531, 'https://ror.org/04xpv0391', 'en', 1, 'https://ror.org/04xpv0391 Lebanon Support'),
(76532, 'https://ror.org/00ew3z127', 'en', 1, 'https://ror.org/00ew3z127 IEDP Developing Leaders'),
(76533, 'https://ror.org/049zx9d10', 'en', 1, 'https://ror.org/049zx9d10 The Institute of Europe of the Russian Academy of Sciences Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠžŠ• Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• ŠŠŠ£ŠšŠ˜ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š•Š’Š ŠžŠŸŠ« Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ ŠŠšŠŠ”Š•ŠœŠ˜Š˜ ŠŠŠ£Šš'),
(76534, 'https://ror.org/00kg7b273', 'en', 1, 'https://ror.org/00kg7b273 Institute of Feed and Agriculture of Podillya of the National Academy of Agrarian Sciences Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кормів та ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠŸŠ¾Š“Ń–Š»Š»Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(76535, 'https://ror.org/01fzmz530', 'pt', 1, 'https://ror.org/01fzmz530 Observatório da Emigração'),
(76536, 'https://ror.org/00rmqcb06', 'en', 1, 'https://ror.org/00rmqcb06 Meteoceanics Institute for Complex System Science'),
(76537, 'https://ror.org/00r36fk75', 'en', 1, 'https://ror.org/00r36fk75 Ontario Drug Policy Research Network'),
(76538, 'https://ror.org/02jch6d72', 'en', 1, 'https://ror.org/02jch6d72 Munich Security Conference Münchner Sicherheitskonferenz'),
(76539, 'https://ror.org/04vjc0t41', 'pt', 1, 'https://ror.org/04vjc0t41 Mecila'),
(76540, 'https://ror.org/020beq690', 'es', 1, 'https://ror.org/020beq690 Observatorio de la Inmigración de Tenerife'),
(76541, 'https://ror.org/025fr4535', 'en', 1, 'https://ror.org/025fr4535 Netherlands Graduate Research School of Science, Technology and Modern Culture'),
(76542, 'https://ror.org/034tp1f71', 'no_lang_code', 1, 'https://ror.org/034tp1f71 Medizinisch Wissenschaftliche Verlagsgesellschaft (Germany)'),
(76543, 'https://ror.org/04x24rt73', 'en', 1, 'https://ror.org/04x24rt73 National Association of Psychiatric Intensive Care and Low Secure Unit'),
(76544, 'https://ror.org/00z8brm94', 'en', 1, 'https://ror.org/00z8brm94 Austrian Mathematical Society Ɩsterreichische Mathematische Gesellschaft'),
(76545, 'https://ror.org/01ge8wp14', 'en', 1, 'https://ror.org/01ge8wp14 Climate Modelling Laboratory'),
(76546, 'https://ror.org/04qmxm960', 'en', 1, 'https://ror.org/04qmxm960 Innovative Scientific Information & Services Network'),
(76547, 'https://ror.org/030dw3650', 'en', 1, 'https://ror.org/030dw3650 Committee on Publication Ethics'),
(76548, 'https://ror.org/01jtr9n55', 'de', 1, 'https://ror.org/01jtr9n55 Ɩsterreichisches Institut für Berufsbildungsforschung'),
(76549, 'https://ror.org/02nen7n37', 'no_lang_code', 1, 'https://ror.org/02nen7n37 River Publishers (Denmark)'),
(76550, 'https://ror.org/040r4cv22', 'en', 1, 'https://ror.org/040r4cv22 Program Systems Institute of RAS Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ программных систем Российской акаГемии наук'),
(76551, 'https://ror.org/01pd36p58', 'en', 1, 'https://ror.org/01pd36p58 Russian Research Institute for Integrated Water Management and Protection'),
(76552, 'https://ror.org/05cdzx277', 'en', 1, 'https://ror.org/05cdzx277 State Scientific Institution "Institute of Education Content Modernization" Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ моГернізації Š·Š¼Ń–ŃŃ‚Ńƒ освіти'),
(76553, 'https://ror.org/03ghfnt05', 'en', 1, 'https://ror.org/03ghfnt05 Mykolaiv Observatory ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠ° астрономічна Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€Ń–Ń ŠŠøŠŗŠ¾Š»Š°ŠµŠ²ŃŠŗŠ°Ń Š°ŃŃ‚Ń€Š¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(76554, 'https://ror.org/058ccs847', 'es', 1, 'https://ror.org/058ccs847 Observatorio Nacional de las Telecomunicaciones y de la Sociedad de la Información'),
(76555, 'https://ror.org/04yjefs69', 'en', 1, 'https://ror.org/04yjefs69 Science Table'),
(76556, 'https://ror.org/03ma5nz93', 'en', 1, 'https://ror.org/03ma5nz93 InstitiĆŗid RĆ­oga AiltirĆ­ na hƉireann Royal Institute of the Architects of Ireland'),
(76557, 'https://ror.org/01vgedw83', 'en', 1, 'https://ror.org/01vgedw83 Russian Dialysis Society Российское Гиализное общество'),
(76558, 'https://ror.org/01dbyc951', 'en', 1, 'https://ror.org/01dbyc951 Centre for Bhutan Studies and GNH Research ą½‘ą½”ą½£ą¼‹ą½ ą½–ą¾²ą½“ą½‚ą¼‹ą½žą½²ą½–ą¼‹ą½ ą½‡ą½“ą½‚ą¼‹ą½£ą¾Ÿą½ŗą¼‹ą½–ą¼‹'),
(76559, 'https://ror.org/00fj5zw34', 'en', 1, 'https://ror.org/00fj5zw34 Hong Kong Institute of Steel Construction'),
(76560, 'https://ror.org/05dcd6k34', 'en', 1, 'https://ror.org/05dcd6k34 Population Council Institute'),
(76561, 'https://ror.org/05smy5d35', 'en', 1, 'https://ror.org/05smy5d35 The Society for Academic Primary Care'),
(76562, 'https://ror.org/042qgw219', 'en', 1, 'https://ror.org/042qgw219 International Innovative University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ инновационный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(76563, 'https://ror.org/02t7bvx21', 'en', 1, 'https://ror.org/02t7bvx21 UNESCO Institute for Statistics'),
(76564, 'https://ror.org/043zsg715', 'pt', 1, 'https://ror.org/043zsg715 Sociedade Portuguesa de Ciências da Educação'),
(76565, 'https://ror.org/01m6zz897', 'en', 1, 'https://ror.org/01m6zz897 Russian Society of Sociologists Российское общество социологов'),
(76566, 'https://ror.org/03z4zf393', 'en', 1, 'https://ror.org/03z4zf393 United Nations Institute for Disarmament Research'),
(76567, 'https://ror.org/01tj1t569', 'en', 1, 'https://ror.org/01tj1t569 Center for the National Interest'),
(76568, 'https://ror.org/04sj7e106', 'en', 1, 'https://ror.org/04sj7e106 Tiny Beam Fund'),
(76569, 'https://ror.org/038xacd85', 'en', 1, 'https://ror.org/038xacd85 TMG Research'),
(76570, 'https://ror.org/03xs42a74', 'en', 1, 'https://ror.org/03xs42a74 UNICEF East Asia and Pacific Regional Office ąø­ąø‡ąø„ą¹Œąøąø²ąø£ąø¢ąø¹ąø™ąø“ą¹€ąø‹ąøŸ ประเทศไทย'),
(76571, 'https://ror.org/04ars5103', 'en', 1, 'https://ror.org/04ars5103 The White House'),
(76572, 'https://ror.org/023g38a24', 'no_lang_code', 1, 'https://ror.org/023g38a24 Universal Printing House "Alpha Print" (Russia) Š£Š½ŠøŠ²ŠµŃ€ŃŠ°Š»ŃŒŠ½Š°Ń Š¢ŠøŠæŠ¾Š³Ń€Š°Ń„ŠøŃ Ā«ŠŠ»ŃŒŃ„Š° ŠŸŃ€ŠøŠ½Ń‚Ā»'),
(76573, 'https://ror.org/03z3xg179', 'en', 1, 'https://ror.org/03z3xg179 International Academy of Agrarian Education ŠœŠ•Š–Š”Š£ŠŠŠ ŠžŠ”ŠŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ ŠŠ“Š ŠŠ ŠŠžŠ“Šž ŠžŠ‘Š ŠŠ—ŠžŠ’ŠŠŠ˜ŠÆ åœ‹éš›č¾²ę„­ę•™č‚²å­øé™¢'),
(76574, 'https://ror.org/01rwqqv19', 'en', 1, 'https://ror.org/01rwqqv19 Melnikov Permafrost Institute of the Siberian Branch of the Russian Academy of Science Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ€Š·Š»Š¾Ń‚Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ имени П. И. Мельникова Š”Šž Š ŠŠ'),
(76575, 'https://ror.org/02fnkyh09', 'en', 1, 'https://ror.org/02fnkyh09 Central Scientific Library of the Far Eastern Branch of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ Š¾Š±ŃŠ»ŃƒŠ¶ŠøŠ²Š°Š½ŠøŃ Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń Š½Š°ŃƒŃ‡Š½Š°Ń библиотека Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(76576, 'https://ror.org/05fjt7505', 'en', 1, 'https://ror.org/05fjt7505 Youth Research and Evaluation eXchange'),
(76577, 'https://ror.org/05f51je39', 'en', 1, 'https://ror.org/05f51je39 National Geological Archives of China å…Øå›½åœ°č“Øčµ„ę–™é¦†'),
(76578, 'https://ror.org/03aesme15', 'en', 1, 'https://ror.org/03aesme15 Udmurt Federal Research Center, Ural Branch of the Russian Academy of Sciences Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠøŠ¹ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр'),
(76579, 'https://ror.org/010p19169', 'en', 1, 'https://ror.org/010p19169 Korea Culture & Tourism Institute ķ•œźµ­ė¬øķ™”ź“€ź“‘ģ—°źµ¬ģ›'),
(76580, 'https://ror.org/05baghp60', 'en', 1, 'https://ror.org/05baghp60 CPM Academy of Business ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ бизнеса'),
(76581, 'https://ror.org/04x0wrh81', 'no_lang_code', 1, 'https://ror.org/04x0wrh81 Abound Bio (United States)'),
(76582, 'https://ror.org/05r2q5n94', 'no_lang_code', 1, 'https://ror.org/05r2q5n94 Flagship Pioneering (United States)'),
(76583, 'https://ror.org/04s6red60', 'en', 1, 'https://ror.org/04s6red60 Centre for Advanced Process Technology for Urban Resource Recovery'),
(76584, 'https://ror.org/048b3qc73', 'en', 1, 'https://ror.org/048b3qc73 BioInnovation Institute'),
(76585, 'https://ror.org/00mtmnw70', 'no_lang_code', 1, 'https://ror.org/00mtmnw70 Biosyntia (Denmark)'),
(76586, 'https://ror.org/03s2cx187', 'en', 1, 'https://ror.org/03s2cx187 Blue Resources Trust'),
(76587, 'https://ror.org/026gg3023', 'en', 1, 'https://ror.org/026gg3023 Bruce Museum'),
(76588, 'https://ror.org/05wry3r65', 'no_lang_code', 1, 'https://ror.org/05wry3r65 Analytical Biosciences (China)'),
(76589, 'https://ror.org/01jeedh73', 'en', 1, 'https://ror.org/01jeedh73 Hefei National Center for Physical Sciences at Nanoscale åˆč‚„å¾®å°ŗåŗ¦ē‰©č“Øē§‘å­¦å›½å®¶å®žéŖŒå®¤'),
(76590, 'https://ror.org/020853v42', 'no_lang_code', 1, 'https://ror.org/020853v42 Bureau Waardenburg (Netherlands)'),
(76591, 'https://ror.org/0409egh51', 'en', 1, 'https://ror.org/0409egh51 Centre for High Performance Computing'),
(76592, 'https://ror.org/01p09d785', 'en', 1, 'https://ror.org/01p09d785 Arnold Regge Center'),
(76593, 'https://ror.org/04sx39q13', 'en', 1, 'https://ror.org/04sx39q13 Centre for Palaeogenetics'),
(76594, 'https://ror.org/02yr08r26', 'en', 1, 'https://ror.org/02yr08r26 Climate Analytics'),
(76595, 'https://ror.org/05batzg24', 'en', 1, 'https://ror.org/05batzg24 Doaba College'),
(76596, 'https://ror.org/03asbm106', 'en', 1, 'https://ror.org/03asbm106 International Nemrud Foundation'),
(76597, 'https://ror.org/01f5p8b07', 'en', 1, 'https://ror.org/01f5p8b07 Institute of Ionosphere'),
(76598, 'https://ror.org/029819q61', 'en', 1, 'https://ror.org/029819q61 Chinese Institute for Brain Research åŒ—äŗ¬č„‘ē§‘å­¦äøŽē±»č„‘ē ”ē©¶äø­åæƒ'),
(76599, 'https://ror.org/0373ev724', 'en', 1, 'https://ror.org/0373ev724 Chinese National Engineering Research Center for Control and Treatment of Heavy Metal Pollution'),
(76600, 'https://ror.org/033sm5e75', 'no_lang_code', 1, 'https://ror.org/033sm5e75 Chongqing 2D Materials Institute (China)'),
(76601, 'https://ror.org/00vx54857', 'en', 1, 'https://ror.org/00vx54857 Ezhou Central Hospital é„‚å·žåø‚äø­åæƒåŒ»é™¢'),
(76602, 'https://ror.org/053a6xa29', 'no_lang_code', 1, 'https://ror.org/053a6xa29 Genomics (United Kingdom)'),
(76603, 'https://ror.org/01bm7kk08', 'de', 1, 'https://ror.org/01bm7kk08 Bundesdeutsche Arbeitsgemeinschaft für Veränderliche Sterne'),
(76604, 'https://ror.org/02afm7029', 'en', 1, 'https://ror.org/02afm7029 Cancer Research Institute Ghent'),
(76605, 'https://ror.org/01w32vs69', 'no_lang_code', 1, 'https://ror.org/01w32vs69 10X Genomics (Sweden)'),
(76606, 'https://ror.org/00mcmgh21', 'no_lang_code', 1, 'https://ror.org/00mcmgh21 Gene and GreenTK (France)'),
(76607, 'https://ror.org/00mc8r278', 'no_lang_code', 1, 'https://ror.org/00mc8r278 Lee & Man Chemical Company (China) ē†ę–‡åŒ–å·„ęœ‰é™å…¬åø'),
(76608, 'https://ror.org/038x91r09', 'en', 1, 'https://ror.org/038x91r09 Glycodisplay'),
(76609, 'https://ror.org/059gb5g72', 'en', 1, 'https://ror.org/059gb5g72 Chilean Air Force Fuerza AƩrea de Chile'),
(76610, 'https://ror.org/05evdvv47', 'es', 1, 'https://ror.org/05evdvv47 Centro de Investigaciones CientifĆ­cas de las Huastecas ''Aguazarca'''),
(76611, 'https://ror.org/05s5xvk70', 'en', 1, 'https://ror.org/05s5xvk70 Einstein Center for Neurosciences Berlin'),
(76612, 'https://ror.org/03efc2j36', 'no_lang_code', 1, 'https://ror.org/03efc2j36 Gran Telescopio Canarias (Spain)'),
(76613, 'https://ror.org/02e2kms34', 'no_lang_code', 1, 'https://ror.org/02e2kms34 Harbour BioMed (Netherlands)'),
(76614, 'https://ror.org/05ff3vp46', 'no_lang_code', 1, 'https://ror.org/05ff3vp46 Forschungs- und Entwicklungszentrum Fachhochschule Kiel (Germany)'),
(76615, 'https://ror.org/02met5w95', 'de', 1, 'https://ror.org/02met5w95 Praxis für Humangenetik Tübingen'),
(76616, 'https://ror.org/04m8gxe14', 'en', 1, 'https://ror.org/04m8gxe14 Institute of Advanced Research in Artificial Intelligence'),
(76617, 'https://ror.org/056jgxp12', 'no_lang_code', 1, 'https://ror.org/056jgxp12 Helix (United States)'),
(76618, 'https://ror.org/048jgf895', 'no_lang_code', 1, 'https://ror.org/048jgf895 von Hoerner & Sulger (Germany)'),
(76619, 'https://ror.org/02cypar22', 'en', 1, 'https://ror.org/02cypar22 Hopp Children''s Cancer Center Heidelberg'),
(76620, 'https://ror.org/055zn5p92', 'es', 1, 'https://ror.org/055zn5p92 Parc Sanitari Pere Virgili Parque Sanitario Pere Virgili'),
(76621, 'https://ror.org/040qscd03', 'no_lang_code', 1, 'https://ror.org/040qscd03 Lemonex (South Korea) ė ˆėŖØė„„ģŠ¤'),
(76622, 'https://ror.org/05jxgts87', 'en', 1, 'https://ror.org/05jxgts87 Tan Kah Kee Innovation Laboratory å˜‰åŗšåˆ›ę–°å®žéŖŒå®¤'),
(76623, 'https://ror.org/01xze8742', 'en', 1, 'https://ror.org/01xze8742 Toscana Life Sciences'),
(76624, 'https://ror.org/04q4ydz28', 'en', 1, 'https://ror.org/04q4ydz28 VIB-UGent Center for Inflammation Research'),
(76625, 'https://ror.org/04pc38187', 'no_lang_code', 1, 'https://ror.org/04pc38187 Motac Neuroscience (United Kingdom)'),
(76626, 'https://ror.org/00xzdzk88', 'no_lang_code', 1, 'https://ror.org/00xzdzk88 Nanostring Technologies (United States)'),
(76627, 'https://ror.org/01z2px678', 'en', 1, 'https://ror.org/01z2px678 International Centre for Theoretical Physics Asia-Pacific å›½é™…ē†č®ŗē‰©ē†äø­åæƒ-亚太地区'),
(76628, 'https://ror.org/00vh00724', 'en', 1, 'https://ror.org/00vh00724 International Institute for Molecular Oncology'),
(76629, 'https://ror.org/03gcgxa17', 'en', 1, 'https://ror.org/03gcgxa17 Interuniversity Cooperation Centre Water & Health InteruniversitƤre Kooperationszentrum Wasser und Gesundheit'),
(76630, 'https://ror.org/02ft1jb97', 'no_lang_code', 1, 'https://ror.org/02ft1jb97 IonQ (United States)'),
(76631, 'https://ror.org/041rx6y13', 'no_lang_code', 1, 'https://ror.org/041rx6y13 Autarcon (Germany)'),
(76632, 'https://ror.org/05pvfh620', 'en', 1, 'https://ror.org/05pvfh620 Iwokrama International Centre for Rainforest Conservation and Development'),
(76633, 'https://ror.org/002kdx757', 'no_lang_code', 1, 'https://ror.org/002kdx757 4C Air (United States)'),
(76634, 'https://ror.org/0284m2r73', 'en', 1, 'https://ror.org/0284m2r73 Ngogo Chimpanzee Project'),
(76635, 'https://ror.org/055zxs822', 'no_lang_code', 1, 'https://ror.org/055zxs822 Nference (United States)'),
(76636, 'https://ror.org/054rvnp37', 'en', 1, 'https://ror.org/054rvnp37 Millenium Nucleus for Planet Formation Núcleo Milenio de Formación Planetaria'),
(76637, 'https://ror.org/01m2pas06', 'en', 1, 'https://ror.org/01m2pas06 NTT Basic Research Laboratories NTT ē‰©ę€§ē§‘å­¦åŸŗē¤Žē ”ē©¶ę‰€'),
(76638, 'https://ror.org/03g11f026', 'en', 1, 'https://ror.org/03g11f026 Milli Nüvə Tədqiqatları Mərkəzi National Nuclear Research Center ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(76639, 'https://ror.org/000bp7q73', 'en', 1, 'https://ror.org/000bp7q73 Open Targets'),
(76640, 'https://ror.org/017g85521', 'en', 1, 'https://ror.org/017g85521 Medawar Building for Pathogen Research'),
(76641, 'https://ror.org/00yvwb080', 'en', 1, 'https://ror.org/00yvwb080 Tropenbos International'),
(76642, 'https://ror.org/023dm3d04', 'en', 1, 'https://ror.org/023dm3d04 Simons Center for Geometry and Physics'),
(76643, 'https://ror.org/0484n7582', 'en', 1, 'https://ror.org/0484n7582 Pittsburgh Quantum Institute'),
(76644, 'https://ror.org/02730kb35', 'en', 1, 'https://ror.org/02730kb35 Uro Care Hospital'),
(76645, 'https://ror.org/00wbzaf78', 'es', 1, 'https://ror.org/00wbzaf78 Con Vida Foundation Fundación Con Vida'),
(76646, 'https://ror.org/020vtf184', 'en', 1, 'https://ror.org/020vtf184 Songshan Lake Materials Laboratory ę¾å±±ę¹–ęę–™å®žéŖŒå®¤'),
(76647, 'https://ror.org/057k8nt63', 'fr', 1, 'https://ror.org/057k8nt63 Centre Culturel du Vanuatu Vanuatu Cultural Centre Vanuatu Kaljoral Senta'),
(76648, 'https://ror.org/01m9z6e22', 'no_lang_code', 1, 'https://ror.org/01m9z6e22 Aarhus GeoSoftware (Denmark)'),
(76649, 'https://ror.org/015yt8m86', 'en', 1, 'https://ror.org/015yt8m86 Academy of Sciences of the Republic of Sakha ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Республики Даха'),
(76650, 'https://ror.org/051pfzb30', 'no_lang_code', 1, 'https://ror.org/051pfzb30 Acellera (Spain)'),
(76651, 'https://ror.org/0551a0y31', 'en', 1, 'https://ror.org/0551a0y31 Shanghai Center for Brain Science and Brain-Inspired Technology äøŠęµ·č„‘ē§‘å­¦äøŽē±»č„‘ē ”ē©¶äø­åæƒ'),
(76652, 'https://ror.org/00q1zbc26', 'no_lang_code', 1, 'https://ror.org/00q1zbc26 Aclaris Therapeutics (United States)'),
(76653, 'https://ror.org/03v9cqb05', 'en', 1, 'https://ror.org/03v9cqb05 Wellcome Connecting Science'),
(76654, 'https://ror.org/04eaec870', 'no_lang_code', 1, 'https://ror.org/04eaec870 Acuitas Therapeutics (Canada)'),
(76655, 'https://ror.org/02sr8bk02', 'no_lang_code', 1, 'https://ror.org/02sr8bk02 Aivok (Russia)'),
(76656, 'https://ror.org/03kwyfa97', 'de', 1, 'https://ror.org/03kwyfa97 Centro Suisse du Cancer Swiss Cancer Center LƩman'),
(76657, 'https://ror.org/045c7t348', 'en', 1, 'https://ror.org/045c7t348 VIB-KU Leuven Center for Brain & Disease Research'),
(76658, 'https://ror.org/04932ms34', 'no_lang_code', 1, 'https://ror.org/04932ms34 Taproot Health (United States)'),
(76659, 'https://ror.org/05bwp9c82', 'en', 1, 'https://ror.org/05bwp9c82 South Dakota Science and Technology Authority'),
(76660, 'https://ror.org/01xwwg551', 'en', 1, 'https://ror.org/01xwwg551 Altlabs'),
(76661, 'https://ror.org/04w74e817', 'no_lang_code', 1, 'https://ror.org/04w74e817 Alto Neuroscience (United States)'),
(76662, 'https://ror.org/00je08e11', 'en', 1, 'https://ror.org/00je08e11 American Community Schools'),
(76663, 'https://ror.org/02f7f9m65', 'no_lang_code', 1, 'https://ror.org/02f7f9m65 Verve Therapeutics (United States)'),
(76664, 'https://ror.org/01g0n8690', 'en', 1, 'https://ror.org/01g0n8690 Amsterdam Institute for Advanced Metropolitan Solutions'),
(76665, 'https://ror.org/014r5ah89', 'no_lang_code', 1, 'https://ror.org/014r5ah89 ZOE (United Kingdom)'),
(76666, 'https://ror.org/0164jks53', 'no_lang_code', 1, 'https://ror.org/0164jks53 Anaconda (United States)'),
(76667, 'https://ror.org/02e1hxd58', 'no_lang_code', 1, 'https://ror.org/02e1hxd58 Aquinnah (United States)'),
(76668, 'https://ror.org/032f13a22', 'en', 1, 'https://ror.org/032f13a22 Busara Center for Behavioral Economics'),
(76669, 'https://ror.org/02akdcs48', 'en', 1, 'https://ror.org/02akdcs48 Association for the Development of Earthquake Prediction åœ°éœ‡äŗˆēŸ„ē·åˆē ”ē©¶ęŒÆčˆˆä¼š'),
(76670, 'https://ror.org/05pdc0q70', 'no_lang_code', 1, 'https://ror.org/05pdc0q70 Cajal Neuroscience (United States)'),
(76671, 'https://ror.org/01qnqmc89', 'en', 1, 'https://ror.org/01qnqmc89 VIB-UGent Center for Plant Systems Biology'),
(76672, 'https://ror.org/005ha3085', 'no_lang_code', 1, 'https://ror.org/005ha3085 Atrad (Australia)'),
(76673, 'https://ror.org/00vrhtt42', 'no_lang_code', 1, 'https://ror.org/00vrhtt42 Wessling (Hungary)'),
(76674, 'https://ror.org/03bekaf83', 'de', 1, 'https://ror.org/03bekaf83 Kardiologie Frankfurt-Sachsenhausen'),
(76675, 'https://ror.org/04431t173', 'en', 1, 'https://ror.org/04431t173 Bay Area Air Quality Management District'),
(76676, 'https://ror.org/01p55fp87', 'no_lang_code', 1, 'https://ror.org/01p55fp87 B-Ware (Netherlands)'),
(76677, 'https://ror.org/05f325a59', 'no_lang_code', 1, 'https://ror.org/05f325a59 Water-link (Belgium)'),
(76678, 'https://ror.org/054p2te31', 'no_lang_code', 1, 'https://ror.org/054p2te31 BDO Unicon (Russia)'),
(76679, 'https://ror.org/03797rt64', 'en', 1, 'https://ror.org/03797rt64 Wham Lab'),
(76680, 'https://ror.org/016a74861', 'en', 1, 'https://ror.org/016a74861 Beijing Academy of Artificial Intelligence åŒ—äŗ¬ę™ŗęŗäŗŗå·„ę™ŗčƒ½ē ”ē©¶é™¢'),
(76681, 'https://ror.org/05rbz8029', 'no_lang_code', 1, 'https://ror.org/05rbz8029 Dian Diagnostics (China) čæŖå®‰čÆŠę–­'),
(76682, 'https://ror.org/03ey0nh96', 'no_lang_code', 1, 'https://ror.org/03ey0nh96 Berry Oncology (China) å’Œē‘žåŸŗå› '),
(76683, 'https://ror.org/053rz5s61', 'no_lang_code', 1, 'https://ror.org/053rz5s61 Bexon Clinical Consulting (United States)'),
(76684, 'https://ror.org/01qpg9817', 'en', 1, 'https://ror.org/01qpg9817 Beyond Conflict'),
(76685, 'https://ror.org/0051xhq65', 'en', 1, 'https://ror.org/0051xhq65 Chinese Academy of Science South America Center for Astronomy äø­å›½ē§‘å­¦é™¢å—ē¾Žå¤©ę–‡äø­åæƒ'),
(76686, 'https://ror.org/050nsn531', 'no_lang_code', 1, 'https://ror.org/050nsn531 Bio-Rad (Germany)'),
(76687, 'https://ror.org/02t8ts543', 'no_lang_code', 1, 'https://ror.org/02t8ts543 Celescreen (France)'),
(76688, 'https://ror.org/02smvjf25', 'no_lang_code', 1, 'https://ror.org/02smvjf25 1Cellbio (United States)'),
(76689, 'https://ror.org/04ynd9171', 'no_lang_code', 1, 'https://ror.org/04ynd9171 Celsius Therapeutics (United States)'),
(76690, 'https://ror.org/03dr7j353', 'no_lang_code', 1, 'https://ror.org/03dr7j353 Biognosys (Switzerland)'),
(76691, 'https://ror.org/00xjcve44', 'en', 1, 'https://ror.org/00xjcve44 Center for Personalized Cancer Treatment'),
(76692, 'https://ror.org/03nrzqb76', 'en', 1, 'https://ror.org/03nrzqb76 Center of Hubei Cooperative Innovation for Emissions Trading System ē¢³ęŽ’ę”¾ęƒäŗ¤ę˜“ę¹–åŒ—ēœååŒåˆ›ę–°äø­åæƒ'),
(76693, 'https://ror.org/03ccx3r49', 'no_lang_code', 1, 'https://ror.org/03ccx3r49 Centogene (Germany)'),
(76694, 'https://ror.org/03b72t095', 'no_lang_code', 1, 'https://ror.org/03b72t095 Bluefin Biomedicine (United States)'),
(76695, 'https://ror.org/025sv2d63', 'en', 1, 'https://ror.org/025sv2d63 Meteorological Service Singapore'),
(76696, 'https://ror.org/04sq63624', 'en', 1, 'https://ror.org/04sq63624 Born Free Foundation'),
(76697, 'https://ror.org/02qr7kk14', 'no_lang_code', 1, 'https://ror.org/02qr7kk14 AB Vista (Germany)'),
(76698, 'https://ror.org/01r5ayw14', 'en', 1, 'https://ror.org/01r5ayw14 Chelonia Applied Science'),
(76699, 'https://ror.org/01g53qc72', 'no_lang_code', 1, 'https://ror.org/01g53qc72 Yangtze River Delta Physics Research Center (China) é•æäø‰č§’ē‰©ē†ē ”ē©¶äø­åæƒ'),
(76700, 'https://ror.org/02bpp8r91', 'en', 1, 'https://ror.org/02bpp8r91 VIB-KU Leuven Center for Microbiology'),
(76701, 'https://ror.org/02077tq87', 'no_lang_code', 1, 'https://ror.org/02077tq87 LinXis Biopharmaceuticals (Netherlands)'),
(76702, 'https://ror.org/01rj09n08', 'no_lang_code', 1, 'https://ror.org/01rj09n08 Chemometrix (Germany)'),
(76703, 'https://ror.org/047ngme68', 'en', 1, 'https://ror.org/047ngme68 International Chemical Secretariat'),
(76704, 'https://ror.org/01y20q665', 'no_lang_code', 1, 'https://ror.org/01y20q665 China National Biotechnology (China) äø­å›½ē”Ÿē‰©ęŠ€ęœÆ'),
(76705, 'https://ror.org/04h7gmn81', 'no_lang_code', 1, 'https://ror.org/04h7gmn81 OriginWater (China) 碧氓源'),
(76706, 'https://ror.org/05xwd1c44', 'no_lang_code', 1, 'https://ror.org/05xwd1c44 Transcend Vivoscope (China) åŒ—äŗ¬č¶…ē»“ę™Æē”Ÿē‰©ē§‘ęŠ€'),
(76707, 'https://ror.org/012anat48', 'no_lang_code', 1, 'https://ror.org/012anat48 Cloud Posse (United States)'),
(76708, 'https://ror.org/029x85r54', 'fr', 1, 'https://ror.org/029x85r54 Centre National en Ɖlectrochimie et en Technologies Environnementales'),
(76709, 'https://ror.org/02fgesk53', 'it', 1, 'https://ror.org/02fgesk53 Centri Associati di Allergologia Molecolare'),
(76710, 'https://ror.org/00q7vcm05', 'es', 1, 'https://ror.org/00q7vcm05 Centro de Investigaciones de Ecosistemas Costeros'),
(76711, 'https://ror.org/04te82086', 'en', 1, 'https://ror.org/04te82086 Coastal Impact'),
(76712, 'https://ror.org/04j91ny53', 'en', 1, 'https://ror.org/04j91ny53 Cooperative Institute for Mesoscale Meteorological Studies'),
(76713, 'https://ror.org/00rfd5b88', 'en', 1, 'https://ror.org/00rfd5b88 The Seventh Affiliated Hospital of Sun Yat-sen University äø­å±±å¤§å­¦é™„å±žē¬¬äøƒåŒ»é™¢'),
(76714, 'https://ror.org/03wfck728', 'en', 1, 'https://ror.org/03wfck728 Collaborative Clean Air Policy Centre'),
(76715, 'https://ror.org/003md6g43', 'no_lang_code', 1, 'https://ror.org/003md6g43 CYBO (Japan)'),
(76716, 'https://ror.org/042gqkw69', 'es', 1, 'https://ror.org/042gqkw69 Center for Conservation, Research and Management of Natural Areas Centro de Conservación Investigación y Manejo de Areas Naturales'),
(76717, 'https://ror.org/02ae4je14', 'en', 1, 'https://ror.org/02ae4je14 Craig Newmark Graduate School of Journalism at the City University of New York'),
(76718, 'https://ror.org/00d3dc551', 'no_lang_code', 1, 'https://ror.org/00d3dc551 Megaputer Intelligence (United States)'),
(76719, 'https://ror.org/02kef7f93', 'en', 1, 'https://ror.org/02kef7f93 State Library and Archives of Florida'),
(76720, 'https://ror.org/01y1b1844', 'en', 1, 'https://ror.org/01y1b1844 Institute of Artificial Intelligence Problems Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠ‘Š›Š•Šœ ŠØŠ¢Š£Š§ŠŠžŠ“Šž Š†ŠŠ¢Š•Š›Š•ŠšŠ¢Š£'),
(76721, 'https://ror.org/03wvsyq85', 'en', 1, 'https://ror.org/03wvsyq85 University Hospitals Sussex NHS Foundation Trust'),
(76722, 'https://ror.org/02cph3w90', 'en', 1, 'https://ror.org/02cph3w90 Organisation des Ɖtats de la CaraĆÆbe Orientale Organisation of Eastern Caribbean States منظمة ŲÆŁˆŁ„ ؓرق البحر Ų§Ł„ŁƒŲ§Ų±ŁŠŲØŁŠ'),
(76723, 'https://ror.org/00m0k5p91', 'es', 1, 'https://ror.org/00m0k5p91 Centro Científico Tecnológico de Valparaíso'),
(76724, 'https://ror.org/01jh2g196', 'en', 1, 'https://ror.org/01jh2g196 Region Hovedstadens Apotek The Capital Region Pharmacy'),
(76725, 'https://ror.org/03anxx281', 'no_lang_code', 1, 'https://ror.org/03anxx281 Phenikaa University ĐẔi hį»c PHENIKAA'),
(76726, 'https://ror.org/0573xqd09', 'no_lang_code', 1, 'https://ror.org/0573xqd09 Amedes Genetics (Germany)'),
(76727, 'https://ror.org/012sdwt38', 'no_lang_code', 1, 'https://ror.org/012sdwt38 BioBank Japan ćƒć‚¤ć‚Ŗćƒćƒ³ć‚Æ ć‚øćƒ£ćƒ‘ćƒ³'),
(76728, 'https://ror.org/0276pbv69', 'en', 1, 'https://ror.org/0276pbv69 Neurological Institute of Athens ĪĪµĻ…ĻĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(76729, 'https://ror.org/0191jdv19', 'de', 1, 'https://ror.org/0191jdv19 Fachhochschule Clara Hoffbauer Potsdam'),
(76730, 'https://ror.org/01jsr9d25', 'en', 1, 'https://ror.org/01jsr9d25 Community Integrated Development Initiatives'),
(76731, 'https://ror.org/03sbvex81', 'no_lang_code', 1, 'https://ror.org/03sbvex81 Geneious (New Zealand)'),
(76732, 'https://ror.org/0116dk457', 'en', 1, 'https://ror.org/0116dk457 D Y Patil International University ą¤”ą„€ वाय ą¤Ŗą¤¾ą¤Ÿą„€ą¤² ą¤†ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(76733, 'https://ror.org/008b1vj68', 'es', 1, 'https://ror.org/008b1vj68 Instituto de Astronomía Teórica y Experimental'),
(76734, 'https://ror.org/03wb3p227', 'en', 1, 'https://ror.org/03wb3p227 Consolidated Mosquito Abatement District'),
(76735, 'https://ror.org/04t9aj866', 'no_lang_code', 1, 'https://ror.org/04t9aj866 DarwinHealth (United States)'),
(76736, 'https://ror.org/020wfwe51', 'en', 1, 'https://ror.org/020wfwe51 Convergence Research Center for Diagnosis Treatment and Care System of Dementia'),
(76737, 'https://ror.org/05rc73571', 'en', 1, 'https://ror.org/05rc73571 Daye People''s Hospital å¤§å†¶åø‚äŗŗę°‘åŒ»é™¢'),
(76738, 'https://ror.org/03ysfrm12', 'no_lang_code', 1, 'https://ror.org/03ysfrm12 Nference (India)'),
(76739, 'https://ror.org/022zce303', 'no_lang_code', 1, 'https://ror.org/022zce303 Cordlife (Singapore)'),
(76740, 'https://ror.org/001h41c24', 'no_lang_code', 1, 'https://ror.org/001h41c24 Data Tecnica International (United States)'),
(76741, 'https://ror.org/01yt2j759', 'en', 1, 'https://ror.org/01yt2j759 De Vlinderstichting Dutch Butterfly Conservation'),
(76742, 'https://ror.org/0178v0z17', 'en', 1, 'https://ror.org/0178v0z17 Coral Reef Research Foundation'),
(76743, 'https://ror.org/00rx5mh03', 'no_lang_code', 1, 'https://ror.org/00rx5mh03 DeepBiome Therapeutics (United States)'),
(76744, 'https://ror.org/03r0dqa93', 'no_lang_code', 1, 'https://ror.org/03r0dqa93 Doctor''s Choice (Japan) ćƒ‰ć‚Æć‚æćƒ¼ć‚ŗćƒćƒ§ć‚¤ć‚¹'),
(76745, 'https://ror.org/04y0x0x35', 'en', 1, 'https://ror.org/04y0x0x35 Queen Elizabeth University Hospital'),
(76746, 'https://ror.org/00naatv40', 'no_lang_code', 1, 'https://ror.org/00naatv40 Cross Compass (Japan)'),
(76747, 'https://ror.org/04fvpm094', 'no_lang_code', 1, 'https://ror.org/04fvpm094 Carisma Therapeutics (United States)'),
(76748, 'https://ror.org/02w2xzg43', 'no_lang_code', 1, 'https://ror.org/02w2xzg43 CRV (Netherlands)'),
(76749, 'https://ror.org/042sgv520', 'no_lang_code', 1, 'https://ror.org/042sgv520 CSD Engineers (Switzerland)'),
(76750, 'https://ror.org/01rcg2640', 'en', 1, 'https://ror.org/01rcg2640 Banki College'),
(76751, 'https://ror.org/051sev771', 'da', 1, 'https://ror.org/051sev771 Roskilde Museum'),
(76752, 'https://ror.org/01s48fc08', 'en', 1, 'https://ror.org/01s48fc08 Division Technique de I''INSU'),
(76753, 'https://ror.org/04fe7xh34', 'no_lang_code', 1, 'https://ror.org/04fe7xh34 DNACARE (South Korea)'),
(76754, 'https://ror.org/056zy9723', 'en', 1, 'https://ror.org/056zy9723 DonorConnect'),
(76755, 'https://ror.org/005eaq331', 'no_lang_code', 1, 'https://ror.org/005eaq331 DXC Technology (Denmark)'),
(76756, 'https://ror.org/000s30768', 'no_lang_code', 1, 'https://ror.org/000s30768 Dr. Friedrich Eberth Arzneimittel (Germany)'),
(76757, 'https://ror.org/04hy9ef44', 'no_lang_code', 1, 'https://ror.org/04hy9ef44 E-Phy-Science (France)'),
(76758, 'https://ror.org/02xwdfp10', 'no_lang_code', 1, 'https://ror.org/02xwdfp10 Genemo (United States)'),
(76759, 'https://ror.org/027qwc485', 'no_lang_code', 1, 'https://ror.org/027qwc485 Duality (United States)'),
(76760, 'https://ror.org/02ad9mm07', 'no_lang_code', 1, 'https://ror.org/02ad9mm07 Eisbach Bio (Germany)'),
(76761, 'https://ror.org/03y81kj05', 'no_lang_code', 1, 'https://ror.org/03y81kj05 Fastbase Solutions (Spain)'),
(76762, 'https://ror.org/016k72860', 'no_lang_code', 1, 'https://ror.org/016k72860 Few Chemicals (Germany)'),
(76763, 'https://ror.org/00mbm2c65', 'en', 1, 'https://ror.org/00mbm2c65 Field Projects International'),
(76764, 'https://ror.org/03a4ga868', 'no_lang_code', 1, 'https://ror.org/03a4ga868 Genevention (Germany)'),
(76765, 'https://ror.org/031y6w871', 'no_lang_code', 1, 'https://ror.org/031y6w871 Fimlab (Finland) Fimlab Laboratoriot'),
(76766, 'https://ror.org/01wqp5678', 'no_lang_code', 1, 'https://ror.org/01wqp5678 Obstech (Chile)'),
(76767, 'https://ror.org/01ep09b46', 'no_lang_code', 1, 'https://ror.org/01ep09b46 Firmenich (United States)'),
(76768, 'https://ror.org/031bshh03', 'no_lang_code', 1, 'https://ror.org/031bshh03 Genome Insight (South Korea) ģ§€ė†ˆģøģ‚¬ģ“ķŠøėŠ”'),
(76769, 'https://ror.org/043rwwa27', 'en', 1, 'https://ror.org/043rwwa27 The First People''s Hospital of Jiangxia District ę±Ÿå¤åŒŗē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(76770, 'https://ror.org/01871gq26', 'no_lang_code', 1, 'https://ror.org/01871gq26 Fluxus Technology (United Kingdom)'),
(76771, 'https://ror.org/03q8q6n37', 'no_lang_code', 1, 'https://ror.org/03q8q6n37 Genomic Prediction (United States)'),
(76772, 'https://ror.org/059zxg644', 'en', 1, 'https://ror.org/059zxg644 The Queen''s Medical Research Institute'),
(76773, 'https://ror.org/029mp9w08', 'no_lang_code', 1, 'https://ror.org/029mp9w08 Opty'),
(76774, 'https://ror.org/05xfjtp79', 'en', 1, 'https://ror.org/05xfjtp79 Physico-Chemical Institute of Environmental and Human Protection Фізико-хімічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ охорони навколишнього сереГовища та Š»ŃŽŠ“ини'),
(76775, 'https://ror.org/01qg56n75', 'en', 1, 'https://ror.org/01qg56n75 State Key Laboratory of Transducer Technology ä¼ ę„ŸęŠ€ęœÆå›½å®¶č”åˆé‡ē‚¹å®žéŖŒå®¤'),
(76776, 'https://ror.org/03prcq065', 'en', 1, 'https://ror.org/03prcq065 Key Laboratory of Nuclear Radiation and Nuclear Energy Technology äø­å›½ē§‘å­¦é™¢ę øč¾å°„äøŽę øčƒ½ęŠ€ęœÆé‡ē‚¹å®žéŖŒå®¤'),
(76777, 'https://ror.org/05k11pb55', 'en', 1, 'https://ror.org/05k11pb55 Dana-Farber/Boston Children''s Cancer and Blood Disorders Center'),
(76778, 'https://ror.org/002g4nt27', 'en', 1, 'https://ror.org/002g4nt27 British Heart Foundation Centre for Cardiovascular Science'),
(76779, 'https://ror.org/04zxw0v05', 'en', 1, 'https://ror.org/04zxw0v05 Center for Pain and the Brain'),
(76780, 'https://ror.org/04cwbar59', 'en', 1, 'https://ror.org/04cwbar59 Interdisciplinary Research Center of Biology and Chemistry äø­ē§‘é™¢ē”Ÿē‰©äøŽåŒ–å­¦äŗ¤å‰ē ”ē©¶äø­åæƒ'),
(76781, 'https://ror.org/01b3x4m67', 'no_lang_code', 1, 'https://ror.org/01b3x4m67 ELUTIS Modelling and Consulting (Canada)'),
(76782, 'https://ror.org/04w2gya44', 'no_lang_code', 1, 'https://ror.org/04w2gya44 MBC BioLabs (United States)'),
(76783, 'https://ror.org/04ezd4121', 'no_lang_code', 1, 'https://ror.org/04ezd4121 Environmental Earth Observation Information Technology (Austria)'),
(76784, 'https://ror.org/04424w120', 'en', 1, 'https://ror.org/04424w120 Environmental Research Institute Charlotteville'),
(76785, 'https://ror.org/03gcx9p86', 'en', 1, 'https://ror.org/03gcx9p86 Equilibrium Research'),
(76786, 'https://ror.org/044k3e410', 'no_lang_code', 1, 'https://ror.org/044k3e410 Glassomer (Germany)'),
(76787, 'https://ror.org/04gnsqj88', 'no_lang_code', 1, 'https://ror.org/04gnsqj88 KUSUDAMA Therapeutics (Spain)'),
(76788, 'https://ror.org/00vavgj08', 'no_lang_code', 1, 'https://ror.org/00vavgj08 GI Innovation (South Korea) ģ§€ģ•„ģ“ģ“ė…øė² ģ“ģ…˜'),
(76789, 'https://ror.org/03k83z818', 'en', 1, 'https://ror.org/03k83z818 Global Institutes on Addictions'),
(76790, 'https://ror.org/04vprbm88', 'no_lang_code', 1, 'https://ror.org/04vprbm88 Global Seismological Services (United States)'),
(76791, 'https://ror.org/03c3drj60', 'no_lang_code', 1, 'https://ror.org/03c3drj60 Evides (Netherlands)'),
(76792, 'https://ror.org/05yb2qd36', 'en', 1, 'https://ror.org/05yb2qd36 Global Wildlife Conservation'),
(76793, 'https://ror.org/0255nrb80', 'no_lang_code', 1, 'https://ror.org/0255nrb80 Evon (Austria)'),
(76794, 'https://ror.org/001h2r504', 'no_lang_code', 1, 'https://ror.org/001h2r504 GoodAI (Czechia)'),
(76795, 'https://ror.org/05bx21r34', 'en', 1, 'https://ror.org/05bx21r34 Frankfurt Cancer Institute'),
(76796, 'https://ror.org/03w5jxa69', 'no_lang_code', 1, 'https://ror.org/03w5jxa69 Freenome (United States)'),
(76797, 'https://ror.org/02c20ys54', 'no_lang_code', 1, 'https://ror.org/02c20ys54 Google (Israel)'),
(76798, 'https://ror.org/05q51gp63', 'en', 1, 'https://ror.org/05q51gp63 Federal Scientific Research Centre Crystallography and Photonics ŠšŃ€ŠøŃŃ‚Š°Š»Š»Š¾Š³Ń€Š°Ń„ŠøŃ Šø фотоника'),
(76799, 'https://ror.org/013z4s422', 'no_lang_code', 1, 'https://ror.org/013z4s422 Guardant (United States)'),
(76800, 'https://ror.org/0244cxh34', 'no_lang_code', 1, 'https://ror.org/0244cxh34 Gubra (Denmark)'),
(76801, 'https://ror.org/04rr2sr33', 'en', 1, 'https://ror.org/04rr2sr33 Hampton Roads Sanitation District'),
(76802, 'https://ror.org/02g6xee76', 'en', 1, 'https://ror.org/02g6xee76 Future Law'),
(76803, 'https://ror.org/000xaj256', 'en', 1, 'https://ror.org/000xaj256 Yukon Department of Tourism and Culture'),
(76804, 'https://ror.org/04mgk5851', 'no_lang_code', 1, 'https://ror.org/04mgk5851 HE Space (Netherlands)'),
(76805, 'https://ror.org/009yp5907', 'no_lang_code', 1, 'https://ror.org/009yp5907 HiFiBiO Therapeutics (United States)'),
(76806, 'https://ror.org/03nn3w026', 'no_lang_code', 1, 'https://ror.org/03nn3w026 HiFiBiO Therapeutics (France)'),
(76807, 'https://ror.org/036dre328', 'no_lang_code', 1, 'https://ror.org/036dre328 Hikari Giken (Japan)'),
(76808, 'https://ror.org/00w1xt505', 'en', 1, 'https://ror.org/00w1xt505 Hunter Genetics'),
(76809, 'https://ror.org/01jap5s81', 'en', 1, 'https://ror.org/01jap5s81 North West London Pathology'),
(76810, 'https://ror.org/05e6n8h53', 'en', 1, 'https://ror.org/05e6n8h53 International Center for Advanced Studies'),
(76811, 'https://ror.org/053nkmh39', 'en', 1, 'https://ror.org/053nkmh39 Honghu Hospital of Traditional Chinese Medicine ę“Ŗę¹–äø­åŒ»ę–‡åŒ–'),
(76812, 'https://ror.org/040y63482', 'it', 1, 'https://ror.org/040y63482 Igenomix'),
(76813, 'https://ror.org/049ktr581', 'en', 1, 'https://ror.org/049ktr581 Inspire Institute'),
(76814, 'https://ror.org/03fg2km54', 'en', 1, 'https://ror.org/03fg2km54 Institute for Advanced Study in Toulouse'),
(76815, 'https://ror.org/0219e9162', 'de', 1, 'https://ror.org/0219e9162 Institut für Forensische Genetik'),
(76816, 'https://ror.org/01xs36937', 'en', 1, 'https://ror.org/01xs36937 Institute for Protein Innovation'),
(76817, 'https://ror.org/05298h560', 'en', 1, 'https://ror.org/05298h560 FORTH Institute of Astrophysics Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī‘ĻƒĻ„ĻĪæĻ†Ļ…ĻƒĪ¹ĪŗĪ®Ļ‚'),
(76818, 'https://ror.org/051jgxz75', 'en', 1, 'https://ror.org/051jgxz75 Institute of Radiophysics and Electronics ÕŒÕ”Õ¤Õ«ÕøÖ†Õ«Õ¦Õ«ÕÆÕ”ÕµÕ« և Õ§Õ¬Õ„ÕÆÕæÖ€ÕøÕ¶Õ«ÕÆÕ”ÕµÕ« Õ«Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(76819, 'https://ror.org/0107a5128', 'no_lang_code', 1, 'https://ror.org/0107a5128 IQM (Germany)'),
(76820, 'https://ror.org/00n9sps80', 'en', 1, 'https://ror.org/00n9sps80 Center for Muscle Health and Neuromuscular Disorders'),
(76821, 'https://ror.org/01mmh4r39', 'no_lang_code', 1, 'https://ror.org/01mmh4r39 Hitachi (Sweden)'),
(76822, 'https://ror.org/046c20x57', 'no_lang_code', 1, 'https://ror.org/046c20x57 Integrated Spaceflight Services (United States)'),
(76823, 'https://ror.org/03ebhsy64', 'en', 1, 'https://ror.org/03ebhsy64 ISI Foundation'),
(76824, 'https://ror.org/028xvc953', 'en', 1, 'https://ror.org/028xvc953 Island Conservation Society'),
(76825, 'https://ror.org/049244588', 'no_lang_code', 1, 'https://ror.org/049244588 Sophia Genetics (France)'),
(76826, 'https://ror.org/04e8cy037', 'en', 1, 'https://ror.org/04e8cy037 The Japanese Data Center for Hematopoietic Cell Transplantation äø€čˆ¬ē¤¾å›£ę³•äŗŗ ę—„ęœ¬é€ č”€ē“°čƒžē§»ę¤ćƒ‡ćƒ¼ć‚æć‚»ćƒ³ć‚æćƒ¼'),
(76827, 'https://ror.org/01tz5yb12', 'no_lang_code', 1, 'https://ror.org/01tz5yb12 JEOL (China) ę·ę¬§č·Æ'),
(76828, 'https://ror.org/056yxsn08', 'en', 1, 'https://ror.org/056yxsn08 International Pole and Line Foundation'),
(76829, 'https://ror.org/0528ydh88', 'no_lang_code', 1, 'https://ror.org/0528ydh88 Invizyne Technologies (United States)'),
(76830, 'https://ror.org/03ksbpa13', 'en', 1, 'https://ror.org/03ksbpa13 Jiangsu Food and Pharmaceutical Science College ę±Ÿč‹é£Ÿå“čÆå“čŒäøšęŠ€ęœÆå­¦é™¢'),
(76831, 'https://ror.org/00hsn1t88', 'no_lang_code', 1, 'https://ror.org/00hsn1t88 Inzen Therapeutics (United States)'),
(76832, 'https://ror.org/016q5ce10', 'no_lang_code', 1, 'https://ror.org/016q5ce10 Jilian Technology Group (China)'),
(76833, 'https://ror.org/001qb9t53', 'no_lang_code', 1, 'https://ror.org/001qb9t53 Jinergy (China) é‡‘čƒ½ęø…ę“čƒ½ęŗē§‘ęŠ€ęœ‰é™å…¬åø'),
(76834, 'https://ror.org/04pdbq803', 'no_lang_code', 1, 'https://ror.org/04pdbq803 Lumiphase (Switzerland)'),
(76835, 'https://ror.org/05y2jpg52', 'en', 1, 'https://ror.org/05y2jpg52 Joint Attosecond Science Laboratory'),
(76836, 'https://ror.org/0349yc338', 'en', 1, 'https://ror.org/0349yc338 Mahatma Gandhi Memorial Hospital'),
(76837, 'https://ror.org/0365mpq95', 'no_lang_code', 1, 'https://ror.org/0365mpq95 Mahonia Na Dari – Guardian of the Sea'),
(76838, 'https://ror.org/0120tx153', 'en', 1, 'https://ror.org/0120tx153 Jƶnkƶping County Museum'),
(76839, 'https://ror.org/01qvcpq30', 'no_lang_code', 1, 'https://ror.org/01qvcpq30 Kallyope (United States)'),
(76840, 'https://ror.org/00vj4fj91', 'en', 1, 'https://ror.org/00vj4fj91 Kenya Fisheries Service'),
(76841, 'https://ror.org/01w08b546', 'en', 1, 'https://ror.org/01w08b546 Lakeside Labs'),
(76842, 'https://ror.org/04zdx1r56', 'da', 1, 'https://ror.org/04zdx1r56 Langelands Museum'),
(76843, 'https://ror.org/00p81j087', 'en', 1, 'https://ror.org/00p81j087 Eiraght Ashoonagh Vannin Manx National Heritage'),
(76844, 'https://ror.org/02njymz39', 'en', 1, 'https://ror.org/02njymz39 Large Marine Vertebrates Research Institute Philippines'),
(76845, 'https://ror.org/03pffnr86', 'en', 1, 'https://ror.org/03pffnr86 Marine Biomedical Research Institute of Qingdao é’å²›ęµ·ę“‹ē”Ÿē‰©åŒ»čÆē ”ē©¶é™¢'),
(76846, 'https://ror.org/059dpw236', 'en', 1, 'https://ror.org/059dpw236 Iaso Children’s Hospital ΙΑΣΩ ΠαίΓων'),
(76847, 'https://ror.org/00bb88176', 'en', 1, 'https://ror.org/00bb88176 Institute of Public Health'),
(76848, 'https://ror.org/05ehdmg18', 'en', 1, 'https://ror.org/05ehdmg18 Leibniz ScienceCampus Primate Cognition Leibniz-WissenschaftsCampus Primatenkognition'),
(76849, 'https://ror.org/018extf73', 'no_lang_code', 1, 'https://ror.org/018extf73 Lightmatter (United States)'),
(76850, 'https://ror.org/01ywwb722', 'no_lang_code', 1, 'https://ror.org/01ywwb722 LipidALL Technologies (China) åøøå·žäø­ē§‘č„‚å…øē”Ÿē‰©ęŠ€ęœÆ'),
(76851, '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'),
(76852, 'https://ror.org/00r4h6e02', 'no_lang_code', 1, 'https://ror.org/00r4h6e02 KrioSystem (Poland)'),
(76853, 'https://ror.org/03ym6b665', 'no_lang_code', 1, 'https://ror.org/03ym6b665 Veolia (Norway)'),
(76854, 'https://ror.org/05h06f126', 'fr', 1, 'https://ror.org/05h06f126 LMI Adaptation des Plantes et Microorganismes Associés aux Stress Environnementaux'),
(76855, 'https://ror.org/04tm3b065', 'en', 1, 'https://ror.org/04tm3b065 Ministry of Fisheries and Marine Resource Development'),
(76856, 'https://ror.org/0396gab88', 'en', 1, 'https://ror.org/0396gab88 LOEWE Centre for Translational Biodiversity Genomics'),
(76857, 'https://ror.org/02kdweh68', 'en', 1, 'https://ror.org/02kdweh68 Modern Diet and Physiology Research Center'),
(76858, 'https://ror.org/03dc5r714', 'en', 1, 'https://ror.org/03dc5r714 Legal Pathways'),
(76859, 'https://ror.org/04554dw68', 'en', 1, 'https://ror.org/04554dw68 Molecular Diagnostics Services'),
(76860, 'https://ror.org/0073v0y35', 'en', 1, 'https://ror.org/0073v0y35 London Biofoundry'),
(76861, 'https://ror.org/053ay1f75', 'no_lang_code', 1, 'https://ror.org/053ay1f75 MorphogƩnie Logiciels (France)'),
(76862, 'https://ror.org/027240w39', 'no_lang_code', 1, 'https://ror.org/027240w39 Motorpharma (Hungary)'),
(76863, 'https://ror.org/048d94c63', 'en', 1, 'https://ror.org/048d94c63 National Engineering Research Center for Nanotechnology ēŗ³ē±³ęŠ€ęœÆåŠåŗ”ē”Øå›½å®¶å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(76864, 'https://ror.org/02rdmaa30', 'no_lang_code', 1, 'https://ror.org/02rdmaa30 ChemBridge (United States)'),
(76865, 'https://ror.org/047225g28', 'en', 1, 'https://ror.org/047225g28 Memorial Hermann–Texas Medical Center'),
(76866, 'https://ror.org/016570d63', 'en', 1, 'https://ror.org/016570d63 Rajabu St Augustine''s, Hospitali Teule'),
(76867, 'https://ror.org/058ngfn30', 'en', 1, 'https://ror.org/058ngfn30 Research Institute of Ukrainian Studies ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠŗŃ€Š°Ń—Š½Š¾Š·Š½Š°Š²ŃŃ‚Š²Š° ŠœŠžŠ України'),
(76868, 'https://ror.org/02c8cxy67', 'en', 1, 'https://ror.org/02c8cxy67 Donbas National Academy of Civil Engineering and Architecture - Kramatorsk Š”Š¾Š½Š±Š°ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(76869, 'https://ror.org/027t4kk23', 'en', 1, 'https://ror.org/027t4kk23 Michigan Center for Translational Pathology'),
(76870, 'https://ror.org/02bagyt43', 'no_lang_code', 1, 'https://ror.org/02bagyt43 Metawater (Japan) ćƒ”ć‚æć‚¦ć‚©ćƒ¼ć‚æ'),
(76871, 'https://ror.org/0329vdx95', 'fr', 1, 'https://ror.org/0329vdx95 MƩtƩorage'),
(76872, 'https://ror.org/05b2ww089', 'fr', 1, 'https://ror.org/05b2ww089 MusƩes de la Ville de Strasbourg'),
(76873, 'https://ror.org/032b42j71', 'en', 1, 'https://ror.org/032b42j71 Museum of Southwest Jutland Sydvestjyske Museer'),
(76874, 'https://ror.org/02a4jr261', 'no_lang_code', 1, 'https://ror.org/02a4jr261 Metrohm Dropsens (Spain)'),
(76875, 'https://ror.org/03d8b1667', 'no_lang_code', 1, 'https://ror.org/03d8b1667 Nama Development (United States)'),
(76876, 'https://ror.org/02vv9p907', 'en', 1, 'https://ror.org/02vv9p907 Nordic Optical Telescope'),
(76877, 'https://ror.org/033zsb510', 'no_lang_code', 1, 'https://ror.org/033zsb510 NanoPHAB (Netherlands)'),
(76878, 'https://ror.org/01s9dmg43', 'en', 1, 'https://ror.org/01s9dmg43 Peng Huanwu Center for Fundamental Theory'),
(76879, 'https://ror.org/052htmq47', 'no_lang_code', 1, 'https://ror.org/052htmq47 BioNTech (United States)'),
(76880, 'https://ror.org/01nt95841', 'no_lang_code', 1, 'https://ror.org/01nt95841 Tang Shiu Kin Hospital 鄧肇堅醫院'),
(76881, 'https://ror.org/02easbz49', 'no_lang_code', 1, 'https://ror.org/02easbz49 Oasen (Netherlands)'),
(76882, 'https://ror.org/01dtmk575', 'en', 1, 'https://ror.org/01dtmk575 Argentine National Observatory Observatori Astronòmic de Córdoba'),
(76883, 'https://ror.org/02xk4gn16', 'en', 1, 'https://ror.org/02xk4gn16 Centro Astronómico de Yebes Yebes Observatory'),
(76884, 'https://ror.org/03nb3ch98', 'no_lang_code', 1, 'https://ror.org/03nb3ch98 New England Biolabs (China)'),
(76885, 'https://ror.org/05bajqw15', 'no_lang_code', 1, 'https://ror.org/05bajqw15 Olnica (France)'),
(76886, 'https://ror.org/05gp53b91', 'no_lang_code', 1, 'https://ror.org/05gp53b91 Omiics (Denmark)'),
(76887, 'https://ror.org/04ft3z219', 'no_lang_code', 1, 'https://ror.org/04ft3z219 New Iridium (United States)'),
(76888, 'https://ror.org/0410md951', 'en', 1, 'https://ror.org/0410md951 1 CP Place (United States)');
INSERT INTO `rors` VALUES
(76889, 'https://ror.org/01m7v2988', 'en', 1, 'https://ror.org/01m7v2988 New York Proton Center'),
(76890, 'https://ror.org/01141nq92', 'en', 1, 'https://ror.org/01141nq92 New Zealand Brain Research Institute'),
(76891, 'https://ror.org/0102jy333', 'no_lang_code', 1, 'https://ror.org/0102jy333 Nanoscribe (Germany)'),
(76892, 'https://ror.org/01c3zvj45', 'no_lang_code', 1, 'https://ror.org/01c3zvj45 NanoTemper Technologies (Germany)'),
(76893, 'https://ror.org/03c9hf945', 'no_lang_code', 1, 'https://ror.org/03c9hf945 PamGene (Netherlands)'),
(76894, 'https://ror.org/04090g527', 'no_lang_code', 1, 'https://ror.org/04090g527 ImmunityBio (United States)'),
(76895, 'https://ror.org/00vg4zj96', 'no_lang_code', 1, 'https://ror.org/00vg4zj96 Next Interactions (United States)'),
(76896, 'https://ror.org/04s8hyg48', 'no_lang_code', 1, 'https://ror.org/04s8hyg48 Pancreas Centre (Canada)'),
(76897, 'https://ror.org/03sg6z947', 'no_lang_code', 1, 'https://ror.org/03sg6z947 Paraza Pharma (Canada)'),
(76898, 'https://ror.org/052644257', 'en', 1, 'https://ror.org/052644257 Ngātiwai Trust Board'),
(76899, 'https://ror.org/01yhkc229', 'no_lang_code', 1, 'https://ror.org/01yhkc229 Nitric Oxide Services (United States)'),
(76900, 'https://ror.org/04vsn7g65', 'en', 1, 'https://ror.org/04vsn7g65 Taian City Central Hospital å±±äøœēœę³°å®‰åø‚äø­åæƒåŒ»é™¢'),
(76901, 'https://ror.org/01v637s67', 'en', 1, 'https://ror.org/01v637s67 Prion Alliance'),
(76902, 'https://ror.org/02v5zv622', 'no_lang_code', 1, 'https://ror.org/02v5zv622 PharmaZell (Germany)'),
(76903, 'https://ror.org/041sxnd36', 'en', 1, 'https://ror.org/041sxnd36 VA Northeast Ohio Healthcare System'),
(76904, 'https://ror.org/03hf25883', 'no_lang_code', 1, 'https://ror.org/03hf25883 Prioris.ai (Canada)'),
(76905, 'https://ror.org/04k1hs403', 'en', 1, 'https://ror.org/04k1hs403 Kap Natirel'),
(76906, 'https://ror.org/004a5x173', 'en', 1, 'https://ror.org/004a5x173 King County Department of Natural Resources and Parks'),
(76907, 'https://ror.org/004cn7092', 'no_lang_code', 1, 'https://ror.org/004cn7092 NTT (United States)'),
(76908, 'https://ror.org/02etmf171', 'fr', 1, 'https://ror.org/02etmf171 PROTEO'),
(76909, 'https://ror.org/05db1vq90', 'en', 1, 'https://ror.org/05db1vq90 RIKEN BNL Research Center'),
(76910, 'https://ror.org/01a8nnm19', 'no_lang_code', 1, 'https://ror.org/01a8nnm19 PicoQuant (Germany)'),
(76911, 'https://ror.org/031ts1072', 'no_lang_code', 1, 'https://ror.org/031ts1072 PVD Products (United States)'),
(76912, 'https://ror.org/00hb09z11', 'en', 1, 'https://ror.org/00hb09z11 Royal Saskatchewan Museum'),
(76913, 'https://ror.org/058e99a37', 'no_lang_code', 1, 'https://ror.org/058e99a37 PIVOT'),
(76914, 'https://ror.org/001vw6n49', 'no_lang_code', 1, 'https://ror.org/001vw6n49 Planta'),
(76915, 'https://ror.org/05x85k702', 'en', 1, 'https://ror.org/05x85k702 Qingdao Center of Resource Chemistry and New Materials é’å²›åø‚čµ„ęŗåŒ–å­¦äøŽę–°ęę–™ē ”ē©¶äø­åæƒ'),
(76916, 'https://ror.org/01yhs3994', 'no_lang_code', 1, 'https://ror.org/01yhs3994 Saaz Genetics (India)'),
(76917, 'https://ror.org/00e1ah625', 'en', 1, 'https://ror.org/00e1ah625 Psihijatrijska Bolnica Sveti Ivan Psychiatric Hospital Sveti Ivan'),
(76918, 'https://ror.org/02y750690', 'no_lang_code', 1, 'https://ror.org/02y750690 Saddle Point Science (United Kingdom)'),
(76919, 'https://ror.org/00zeq0353', 'no_lang_code', 1, 'https://ror.org/00zeq0353 Quansight (United States)'),
(76920, 'https://ror.org/0252wp173', 'it', 1, 'https://ror.org/0252wp173 Polo d’Innovazione di Genomica'),
(76921, 'https://ror.org/05jzt2178', 'en', 1, 'https://ror.org/05jzt2178 Queen Margaret''s'),
(76922, 'https://ror.org/00gwx3e77', 'en', 1, 'https://ror.org/00gwx3e77 Queen Nandi Regional Hospital'),
(76923, 'https://ror.org/043p46c93', 'no_lang_code', 1, 'https://ror.org/043p46c93 SalvageBlue (Saint Vincent and the Grenadines)'),
(76924, 'https://ror.org/03a2nwp96', 'no_lang_code', 1, 'https://ror.org/03a2nwp96 Nkarta Therapeutics (United States)'),
(76925, 'https://ror.org/02pc48s35', 'no_lang_code', 1, 'https://ror.org/02pc48s35 Printnet (Hungary)'),
(76926, 'https://ror.org/01kkg9921', 'en', 1, 'https://ror.org/01kkg9921 Oregon Department of Environmental Quality'),
(76927, 'https://ror.org/01bkmbx41', 'no_lang_code', 1, 'https://ror.org/01bkmbx41 Regen Network (United States)'),
(76928, 'https://ror.org/023pvpj39', 'no_lang_code', 1, 'https://ror.org/023pvpj39 Regen Network (Argentina)'),
(76929, 'https://ror.org/01tj7cz72', 'no_lang_code', 1, 'https://ror.org/01tj7cz72 Science Exchange (United States)'),
(76930, 'https://ror.org/04wnhwq91', 'no_lang_code', 1, 'https://ror.org/04wnhwq91 Reneco (United Arab Emirates)'),
(76931, 'https://ror.org/01anjrj52', 'no_lang_code', 1, 'https://ror.org/01anjrj52 ScienCell Research Laboratories (United States)'),
(76932, 'https://ror.org/04qtb5g63', 'no_lang_code', 1, 'https://ror.org/04qtb5g63 Scientific Aviation (United States)'),
(76933, 'https://ror.org/04gstme54', 'en', 1, 'https://ror.org/04gstme54 SciGenom Research Foundation'),
(76934, 'https://ror.org/010qsnr58', 'no_lang_code', 1, 'https://ror.org/010qsnr58 Rentschler Biopharma (Germany)'),
(76935, 'https://ror.org/05sf7q250', 'no_lang_code', 1, 'https://ror.org/05sf7q250 Emka Technologies (Canada)'),
(76936, 'https://ror.org/05knsbt04', 'no_lang_code', 1, 'https://ror.org/05knsbt04 Sophia Genetics (Switzerland)'),
(76937, 'https://ror.org/026bdsm07', 'no_lang_code', 1, 'https://ror.org/026bdsm07 Scispace (United States)'),
(76938, 'https://ror.org/03ta32r20', 'no_lang_code', 1, 'https://ror.org/03ta32r20 SciTech Strategies (United States)'),
(76939, 'https://ror.org/05h9mfy97', 'no_lang_code', 1, 'https://ror.org/05h9mfy97 SDS Life Science (Sweden)'),
(76940, 'https://ror.org/01276vm23', 'en', 1, 'https://ror.org/01276vm23 South Bay Interdisciplinary Science Center'),
(76941, 'https://ror.org/02xsf1j07', 'no_lang_code', 1, 'https://ror.org/02xsf1j07 Systems, Applications, and Products in Data Processing (Russia)'),
(76942, 'https://ror.org/0155sw530', 'en', 1, 'https://ror.org/0155sw530 Seattle Epidemiologic Information and Research Center'),
(76943, 'https://ror.org/02dxa0f68', 'en', 1, 'https://ror.org/02dxa0f68 Saving the Blue'),
(76944, 'https://ror.org/0244ywv94', 'en', 1, 'https://ror.org/0244ywv94 Secretariat of the Pacific Regional Environment Programme'),
(76945, 'https://ror.org/01036m381', 'en', 1, 'https://ror.org/01036m381 Scholar Rock (United States)'),
(76946, 'https://ror.org/03smt1w40', 'en', 1, 'https://ror.org/03smt1w40 Jiangxi Applied Engineering Vocational Institute ę±Ÿč„æåŗ”ē”Øå·„ēØ‹čŒäøšå­¦é™¢'),
(76947, 'https://ror.org/02sx86615', 'en', 1, 'https://ror.org/02sx86615 Shenzhen Institute of Neuroscience ę·±åœ³åø‚ē„žē»ē§‘å­¦ē ”ē©¶é™¢'),
(76948, 'https://ror.org/03b252479', 'no_lang_code', 1, 'https://ror.org/03b252479 Shenzhen Planck Innovation (China) ę·±åœ³ę‰‘ęµŖåˆ›ę–°ē§‘ęŠ€'),
(76949, 'https://ror.org/057c2xb31', 'no_lang_code', 1, 'https://ror.org/057c2xb31 Shanghai Model Organisms (China) äøŠęµ·å—ę–¹ęØ”å¼ē”Ÿē‰©ē ”ē©¶äø­åæƒ'),
(76950, 'https://ror.org/03zrvha56', 'en', 1, 'https://ror.org/03zrvha56 Shenzhen Science Museum å·ę·±åœ³ē§‘å­¦é¦†'),
(76951, 'https://ror.org/02qgbtz69', 'no_lang_code', 1, 'https://ror.org/02qgbtz69 Xtretch (China) ęžå±•ē§‘ęŠ€'),
(76952, 'https://ror.org/02mzpg398', 'en', 1, 'https://ror.org/02mzpg398 Sharks Pacific'),
(76953, 'https://ror.org/0231j0n41', 'no_lang_code', 1, 'https://ror.org/0231j0n41 Sibel (United States)'),
(76954, 'https://ror.org/035caev54', 'no_lang_code', 1, 'https://ror.org/035caev54 Sinotech Genomics (China) äø­ē§‘ę™®ē‘ž'),
(76955, 'https://ror.org/03s6brr03', 'en', 1, 'https://ror.org/03s6brr03 Sonneberg Observatory Sternwarte Sonneberg'),
(76956, 'https://ror.org/00sgkmj19', 'en', 1, 'https://ror.org/00sgkmj19 Thames Valley Archaeological Services'),
(76957, 'https://ror.org/007x72212', 'en', 1, 'https://ror.org/007x72212 First People’s Hospital of Jingmen č†é—Øåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(76958, 'https://ror.org/000mza046', 'en', 1, 'https://ror.org/000mza046 European Incoherent Scatter Scientific Association'),
(76959, 'https://ror.org/03ss07w66', 'en', 1, 'https://ror.org/03ss07w66 Centre for Ocean Research and Education'),
(76960, 'https://ror.org/05pbd0w76', 'en', 1, 'https://ror.org/05pbd0w76 The Humane League'),
(76961, 'https://ror.org/05n16wx34', 'de', 1, 'https://ror.org/05n16wx34 Landesamt für Landwirtschaft, Lebensmittelsicherheit und Fischerei'),
(76962, 'https://ror.org/00xj7pv34', 'en', 1, 'https://ror.org/00xj7pv34 Max Planck - Harvard Research Center for the Archaeoscience of the Ancient Mediterranean'),
(76963, 'https://ror.org/02q94t821', 'sv', 1, 'https://ror.org/02q94t821 Sydsvensk Arkeologi'),
(76964, 'https://ror.org/03em0vf53', 'no_lang_code', 1, 'https://ror.org/03em0vf53 SyMO-Chem (Netherlands)'),
(76965, 'https://ror.org/000jqa749', 'en', 1, 'https://ror.org/000jqa749 The Ocean Cleanup'),
(76966, 'https://ror.org/04vrjya53', 'en', 1, 'https://ror.org/04vrjya53 The Origins Project Foundation'),
(76967, 'https://ror.org/033a9g130', 'no_lang_code', 1, 'https://ror.org/033a9g130 Synthace (United Kingdom)'),
(76968, 'https://ror.org/03573dx38', 'no_lang_code', 1, 'https://ror.org/03573dx38 ELSA'),
(76969, 'https://ror.org/01gkbq247', 'no_lang_code', 1, 'https://ror.org/01gkbq247 Honghu People’s Hospital ę“Ŗę¹–åø‚äŗŗę°‘åŒ»é™¢'),
(76970, 'https://ror.org/01gbymr57', 'no_lang_code', 1, 'https://ror.org/01gbymr57 Tempus Labs (United States)'),
(76971, 'https://ror.org/02qx6zf82', 'en', 1, 'https://ror.org/02qx6zf82 Center for Translational Research in Neuroimaging and Data Science'),
(76972, 'https://ror.org/016twdg30', 'en', 1, 'https://ror.org/016twdg30 Tri-Institutional PhD Program in Chemical Biology'),
(76973, 'https://ror.org/019xckf23', 'no_lang_code', 1, 'https://ror.org/019xckf23 Tencent Healthcare (China)'),
(76974, 'https://ror.org/04fkjep44', 'pl', 1, 'https://ror.org/04fkjep44 Trzy Epoki Pracownia Archeologiczna'),
(76975, 'https://ror.org/04kkgk561', 'no_lang_code', 1, 'https://ror.org/04kkgk561 TScan Therapeutics (United States)'),
(76976, 'https://ror.org/04h4yst66', 'en', 1, 'https://ror.org/04h4yst66 VisMederi Research'),
(76977, 'https://ror.org/012mmb732', 'en', 1, 'https://ror.org/012mmb732 Southern California Eye Institute'),
(76978, 'https://ror.org/030nrza79', 'en', 1, 'https://ror.org/030nrza79 Wildlife Conservation Society Uganda'),
(76979, 'https://ror.org/04yn5x032', 'no_lang_code', 1, 'https://ror.org/04yn5x032 Three-Speed Logic (Canada)'),
(76980, 'https://ror.org/030zxq122', 'en', 1, 'https://ror.org/030zxq122 Wasage Divers'),
(76981, 'https://ror.org/00wqjhh20', 'no_lang_code', 1, 'https://ror.org/00wqjhh20 Umicore (United States)'),
(76982, 'https://ror.org/03nrpad60', 'no_lang_code', 1, 'https://ror.org/03nrpad60 WayRay (Russia)'),
(76983, 'https://ror.org/03f5sm451', 'en', 1, 'https://ror.org/03f5sm451 Kimberley Hospital'),
(76984, 'https://ror.org/00ffxn811', 'is', 1, 'https://ror.org/00ffxn811 Fornleifastofnun ƍslands'),
(76985, 'https://ror.org/05f6dm909', 'en', 1, 'https://ror.org/05f6dm909 Whittle School & Studios'),
(76986, 'https://ror.org/00ek68a72', 'en', 1, 'https://ror.org/00ek68a72 Faroe Islands National Museum Tjóðsavn Føroya'),
(76987, 'https://ror.org/008nhcy02', 'sv', 1, 'https://ror.org/008nhcy02 Upplandsmuseet Upplandsmuseum متحف Ų£ŁˆŲØŁ„Ų§Ł†ŲÆ'),
(76988, 'https://ror.org/03vt8j920', 'no_lang_code', 1, 'https://ror.org/03vt8j920 Nanobase (South Korea)'),
(76989, 'https://ror.org/005r1rh48', 'en', 1, 'https://ror.org/005r1rh48 New Guinea Highland Wild Dog Foundation'),
(76990, 'https://ror.org/020xg4k98', 'no_lang_code', 1, 'https://ror.org/020xg4k98 Phyzen (South Korea) ķŒŒģ“ģ  '),
(76991, 'https://ror.org/045yewh40', 'en', 1, 'https://ror.org/045yewh40 Jiangsu Center for Collaborative Innovation in Geographical Information Resource Development and Application ę±Ÿč‹ēœåœ°ē†äæ”ęÆčµ„ęŗå¼€å‘äøŽåˆ©ē”ØååŒåˆ›ę–°'),
(76992, 'https://ror.org/00mc77d93', 'it', 1, 'https://ror.org/00mc77d93 Istituti Clinici Scientifici Maugeri'),
(76993, 'https://ror.org/003q4as88', 'en', 1, 'https://ror.org/003q4as88 Kibale Chimpanzee Project'),
(76994, 'https://ror.org/00eyng893', 'en', 1, 'https://ror.org/00eyng893 VIB-KU Leuven Center for Cancer Biology'),
(76995, 'https://ror.org/01bcsqk59', 'no_lang_code', 1, 'https://ror.org/01bcsqk59 Nabsys (United States)'),
(76996, 'https://ror.org/03xmgtw61', 'en', 1, 'https://ror.org/03xmgtw61 Mesothelioma Center'),
(76997, 'https://ror.org/00dwmat08', 'no_lang_code', 1, 'https://ror.org/00dwmat08 CellOxess (United States)'),
(76998, 'https://ror.org/00r86n020', 'en', 1, 'https://ror.org/00r86n020 Egypt Center for Research and Regenerative Medicine Ł…Ų±ŁƒŲ² Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„Ų·ŲØ Ų§Ł„ŲŖŲ¬ŲÆŁŠŲÆŁ‰'),
(76999, 'https://ror.org/00jw1bg20', 'sv', 1, 'https://ror.org/00jw1bg20 Malmƶ Museer'),
(77000, 'https://ror.org/02jztf270', 'en', 1, 'https://ror.org/02jztf270 International Society for Laboratory Hematology'),
(77001, 'https://ror.org/01rnj6418', 'no_lang_code', 1, 'https://ror.org/01rnj6418 Yumanity Therapeutics (United States)'),
(77002, 'https://ror.org/01z1bz177', 'en', 1, 'https://ror.org/01z1bz177 US Climate Variability and Predictability Program'),
(77003, 'https://ror.org/05sv9g179', 'no_lang_code', 1, 'https://ror.org/05sv9g179 Yunkawasi'),
(77004, 'https://ror.org/01bhrtv82', 'no_lang_code', 1, 'https://ror.org/01bhrtv82 Zapata (United States)'),
(77005, 'https://ror.org/01wykjh49', 'sv', 1, 'https://ror.org/01wykjh49 VƤstergƶtlands Museum'),
(77006, 'https://ror.org/023g8mz36', 'en', 1, 'https://ror.org/023g8mz36 Wild Chimpanzee Foundation'),
(77007, 'https://ror.org/01w7kss51', 'no_lang_code', 1, 'https://ror.org/01w7kss51 Willow Biosciences (Canada)'),
(77008, 'https://ror.org/05s9cjr09', 'en', 1, 'https://ror.org/05s9cjr09 Wildlife Conservation Society Fiji'),
(77009, 'https://ror.org/00ybtn229', 'es', 1, 'https://ror.org/00ybtn229 Unión de Ornitólogos de Costa Rica'),
(77010, 'https://ror.org/05jyve847', 'en', 1, 'https://ror.org/05jyve847 Wrocław Technology Park Wrocławskim Parku Technologicznym'),
(77011, 'https://ror.org/05jy77b70', 'no_lang_code', 1, 'https://ror.org/05jy77b70 Wuyistar (China) 武夷星'),
(77012, 'https://ror.org/00zkxfr79', 'no_lang_code', 1, 'https://ror.org/00zkxfr79 DataJoint NEURO (United States)'),
(77013, 'https://ror.org/05qj0n416', 'no_lang_code', 1, 'https://ror.org/05qj0n416 Xanadu Quantum Technologies (Canada)'),
(77014, 'https://ror.org/005pxs112', 'no_lang_code', 1, 'https://ror.org/005pxs112 Veritas (Italy)'),
(77015, 'https://ror.org/05wq7hj83', 'no_lang_code', 1, 'https://ror.org/05wq7hj83 XeUS Technologies (Cyprus)'),
(77016, 'https://ror.org/010s0k503', 'no_lang_code', 1, 'https://ror.org/010s0k503 XING Technologies (Australia)'),
(77017, 'https://ror.org/0596rmt30', 'en', 1, 'https://ror.org/0596rmt30 Military Technical Institute Vojnotehnički Institut Beograd'),
(77018, 'https://ror.org/03tm6xb43', 'en', 1, 'https://ror.org/03tm6xb43 Karnali Academy of Health Sciences ą¤•ą¤°ą„ą¤£ą¤¾ą¤²ą„€ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤¬ą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(77019, 'https://ror.org/05r1mzq61', 'en', 1, 'https://ror.org/05r1mzq61 Zhuhai Institute of Advanced Technology ē ęµ·äø­ē§‘å…ˆčæ›ęŠ€ęœÆē ”ē©¶é™¢'),
(77020, 'https://ror.org/05pzhab84', 'en', 1, 'https://ror.org/05pzhab84 ENN-Tongji Advanced Institute of Clean Energy ę–°å„„-åŒęµŽęø…ę“čƒ½ęŗé«˜ē­‰ē ”ē©¶é™¢'),
(77021, 'https://ror.org/00r6snc96', 'en', 1, 'https://ror.org/00r6snc96 Centre for Arab Unity Studies Ł…Ų±ŁƒŲ² ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„ŁˆŲ­ŲÆŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(77022, 'https://ror.org/02664zk40', 'en', 1, 'https://ror.org/02664zk40 Inception Institute of Artificial Intelligence'),
(77023, 'https://ror.org/05rmt2h07', 'en', 1, 'https://ror.org/05rmt2h07 The Prostate Centre'),
(77024, 'https://ror.org/01p52dr80', 'en', 1, 'https://ror.org/01p52dr80 Gashaka Primate Project'),
(77025, 'https://ror.org/05pbwbp03', 'en', 1, 'https://ror.org/05pbwbp03 Ukrainian State Research Institute for Carbochemistry Украинский Š³Š¾ŃŃƒŠ“арственный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний науково-ГосліГний Š²ŃƒŠ³Š»ŠµŃ…імічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(77026, 'https://ror.org/048t93218', 'en', 1, 'https://ror.org/048t93218 National Trauma Research Institute'),
(77027, 'https://ror.org/02pvrbg60', 'en', 1, 'https://ror.org/02pvrbg60 Cochrane'),
(77028, 'https://ror.org/050qhwt21', 'en', 1, 'https://ror.org/050qhwt21 Shanghai Academy of Spaceflight Technology äøŠęµ·čˆŖå¤©ęŠ€ęœÆē ”ē©¶é™¢'),
(77029, 'https://ror.org/052acn261', 'en', 1, 'https://ror.org/052acn261 Center for Excellence in Tibetan Plateau Earth Sciences'),
(77030, 'https://ror.org/0008nva35', 'en', 1, 'https://ror.org/0008nva35 The Urology Center of Colorado'),
(77031, 'https://ror.org/004ehfq11', 'en', 1, 'https://ror.org/004ehfq11 Basir Eye Health Research Center'),
(77032, 'https://ror.org/02124w065', 'es', 1, 'https://ror.org/02124w065 Instituto Oncológico Henry Moore'),
(77033, 'https://ror.org/05ef4zt88', 'en', 1, 'https://ror.org/05ef4zt88 FX Palo Alto Laboratory'),
(77034, 'https://ror.org/05gdz0e37', 'en', 1, 'https://ror.org/05gdz0e37 Docrates Cancer Center Docrates Cancersjukhus Docrates SyƶpƤsairaala Дократес'),
(77035, 'https://ror.org/003py2t79', 'en', 1, 'https://ror.org/003py2t79 Indian Academy of Pediatrics'),
(77036, 'https://ror.org/03jgmfc14', 'en', 1, 'https://ror.org/03jgmfc14 Postgraduate School of Molecular Medicine Studium Medycyny Molekularnej'),
(77037, 'https://ror.org/05fcqx592', 'en', 1, 'https://ror.org/05fcqx592 Center for Disease Dynamics, Economics and Policy'),
(77038, 'https://ror.org/01dtp6p75', 'en', 1, 'https://ror.org/01dtp6p75 Wuhan No.9 Hospital ę­¦ę±‰åø‚ē¬¬ä¹åŒ»é™¢'),
(77039, 'https://ror.org/00230yh09', 'en', 1, 'https://ror.org/00230yh09 Worldwise Travellers Health & Vaccination Centres'),
(77040, 'https://ror.org/03zqv5j63', 'en', 1, 'https://ror.org/03zqv5j63 APEC Climate Center'),
(77041, 'https://ror.org/05egt1h67', 'en', 1, 'https://ror.org/05egt1h67 Vascular Institute of New York'),
(77042, 'https://ror.org/01w7v5459', 'en', 1, 'https://ror.org/01w7v5459 National Center for Spinal Disorders OrszÔgos GerincgyógyÔszati Központ'),
(77043, 'https://ror.org/02d5ks197', 'en', 1, 'https://ror.org/02d5ks197 Chinese University of Hong Kong, Shenzhen 香港中文大學 (深圳)'),
(77044, 'https://ror.org/04zxvxa53', 'en', 1, 'https://ror.org/04zxvxa53 Society of Hematologic Oncology'),
(77045, 'https://ror.org/033ttrk34', 'en', 1, 'https://ror.org/033ttrk34 Armed Forces College of Medicine'),
(77046, 'https://ror.org/01nd8nc87', 'no_lang_code', 1, 'https://ror.org/01nd8nc87 Equibreed (New Zealand)'),
(77047, 'https://ror.org/04hbttm44', 'en', 1, 'https://ror.org/04hbttm44 VIB-UGent Center for Medical Biotechnology'),
(77048, 'https://ror.org/05bm1gr16', 'en', 1, 'https://ror.org/05bm1gr16 VIB - International Plant Biotechnology Outreach'),
(77049, 'https://ror.org/00bx04e70', 'no_lang_code', 1, 'https://ror.org/00bx04e70 Dopavision (Germany)'),
(77050, 'https://ror.org/041x7eh14', 'en', 1, 'https://ror.org/041x7eh14 VIB-UAntwerp Center for Molecular Neurology'),
(77051, 'https://ror.org/03e84cm85', 'en', 1, 'https://ror.org/03e84cm85 VIB-VUB Center for Structural Biology'),
(77052, 'https://ror.org/032hxaa63', 'no_lang_code', 1, 'https://ror.org/032hxaa63 Otolith Labs (United States)'),
(77053, 'https://ror.org/05y4fay10', 'en', 1, 'https://ror.org/05y4fay10 VIB-VUB Laboratory Myeloid Cell Immunology'),
(77054, 'https://ror.org/01q5h5m61', 'no_lang_code', 1, 'https://ror.org/01q5h5m61 JenaBatteries (Germany)'),
(77055, 'https://ror.org/00558ww90', 'en', 1, 'https://ror.org/00558ww90 Women in Sport'),
(77056, 'https://ror.org/055s5r020', 'no_lang_code', 1, 'https://ror.org/055s5r020 PCL Health (United Kingdom)'),
(77057, 'https://ror.org/00nr3tg23', 'en', 1, 'https://ror.org/00nr3tg23 BioVale'),
(77058, 'https://ror.org/03q35y927', 'no_lang_code', 1, 'https://ror.org/03q35y927 Immune Modulatory Therapies (United States)'),
(77059, 'https://ror.org/0383qdr35', 'en', 1, 'https://ror.org/0383qdr35 Virginia Office of Intergovernmental Affairs'),
(77060, 'https://ror.org/03488tg31', 'en', 1, 'https://ror.org/03488tg31 Academic City College University'),
(77061, 'https://ror.org/04agank23', 'de', 1, 'https://ror.org/04agank23 Klinik Schützen Rheinfelden'),
(77062, 'https://ror.org/003kqe171', 'en', 1, 'https://ror.org/003kqe171 Dominion University College'),
(77063, 'https://ror.org/0437cyz88', 'en', 1, 'https://ror.org/0437cyz88 Ghana Armed Forces Command and Staff College'),
(77064, 'https://ror.org/011kpjv07', 'en', 1, 'https://ror.org/011kpjv07 Institute for Scientific and Technological Information'),
(77065, 'https://ror.org/03kbmhj98', 'en', 1, 'https://ror.org/03kbmhj98 Takoradi Technical University'),
(77066, 'https://ror.org/0210mc841', 'en', 1, 'https://ror.org/0210mc841 Canada Health Infoway'),
(77067, 'https://ror.org/04c00sd86', 'en', 1, 'https://ror.org/04c00sd86 Jacobs Institute'),
(77068, 'https://ror.org/00w4zv247', 'en', 1, 'https://ror.org/00w4zv247 Southern California Reproductive Center'),
(77069, 'https://ror.org/025twjg59', 'en', 1, 'https://ror.org/025twjg59 Berlin Center for Genomics in Biodiversity Research'),
(77070, 'https://ror.org/0505p9044', 'it', 1, 'https://ror.org/0505p9044 Istituto di Sessuologia Clinica'),
(77071, 'https://ror.org/04bgfv325', 'en', 1, 'https://ror.org/04bgfv325 Gifu Heart Center å²é˜œćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(77072, 'https://ror.org/01m9vv151', 'en', 1, 'https://ror.org/01m9vv151 Institute of Orthopedics Banjica Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¾Ń€Ń‚Š¾ŠæŠµŠ“ŠøŃ˜Ńƒ Š‘Š°ŃšŠøŃ†Š°'),
(77073, 'https://ror.org/01nj2n977', 'es', 1, 'https://ror.org/01nj2n977 Gastroenterología Diagnóstica Terapeútica'),
(77074, 'https://ror.org/04b17kf79', 'en', 1, 'https://ror.org/04b17kf79 Centre for Clinical Interventions'),
(77075, 'https://ror.org/04bjbb968', 'en', 1, 'https://ror.org/04bjbb968 Centro Interdisciplinario para la Investigación Acuícola Interdisciplinary Center for Aquaculture Research'),
(77076, 'https://ror.org/01a0ymj74', 'en', 1, 'https://ror.org/01a0ymj74 International Institute of Tropical Agriculture'),
(77077, 'https://ror.org/00ftg6h50', 'en', 1, 'https://ror.org/00ftg6h50 European Graduate School of Neuroscience'),
(77078, 'https://ror.org/056hsfz11', 'en', 1, 'https://ror.org/056hsfz11 Mortimer Market Centre'),
(77079, 'https://ror.org/05p3a9320', 'en', 1, 'https://ror.org/05p3a9320 ORSI Academy'),
(77080, 'https://ror.org/03dn6qp98', 'no_lang_code', 1, 'https://ror.org/03dn6qp98 ABB (Poland)'),
(77081, 'https://ror.org/03r8rqb98', 'en', 1, 'https://ror.org/03r8rqb98 Virtual Reality Medical Institute'),
(77082, 'https://ror.org/002vr4d22', 'en', 1, 'https://ror.org/002vr4d22 Centro Internacional de la Papa International Potato Center'),
(77083, 'https://ror.org/04bjtj194', 'no_lang_code', 1, 'https://ror.org/04bjtj194 Institut za kukuruz "Zemun Polje" Maize Research Institute Zemun Polje'),
(77084, 'https://ror.org/02fhtg636', 'no_lang_code', 1, 'https://ror.org/02fhtg636 NordLab Pohjois-Suomen laboratoriokeskuksen liikelaitoskuntayhtymƤ'),
(77085, 'https://ror.org/04wc1v131', 'en', 1, 'https://ror.org/04wc1v131 Renal Associates P. A.'),
(77086, 'https://ror.org/00abc2c86', 'en', 1, 'https://ror.org/00abc2c86 FƩdƩration Internationale du Vieillissement International Federation on Ageing'),
(77087, 'https://ror.org/02159rn29', 'en', 1, 'https://ror.org/02159rn29 Kenozero National Park ŠšŠµŠ½Š¾Š·ŠµŃ€ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк'),
(77088, 'https://ror.org/00v50wt26', 'no_lang_code', 1, 'https://ror.org/00v50wt26 Single Cell Discoveries (Netherlands)'),
(77089, 'https://ror.org/05ktaz183', 'no_lang_code', 1, 'https://ror.org/05ktaz183 Diamond Materials (Germany)'),
(77090, 'https://ror.org/047z9d710', 'es', 1, 'https://ror.org/047z9d710 Fundación Hospital San Pedro'),
(77091, 'https://ror.org/04g3k5r52', 'no_lang_code', 1, 'https://ror.org/04g3k5r52 Factual (United States)'),
(77092, 'https://ror.org/03et6y035', 'no_lang_code', 1, 'https://ror.org/03et6y035 Museo Dabawenyo'),
(77093, 'https://ror.org/00k6x7m82', 'it', 1, 'https://ror.org/00k6x7m82 Associazione Calabrese di Epatologia'),
(77094, 'https://ror.org/05g8v8t96', 'no_lang_code', 1, 'https://ror.org/05g8v8t96 Dynamic Biosensors (Germany)'),
(77095, 'https://ror.org/05hsgsk03', 'no_lang_code', 1, 'https://ror.org/05hsgsk03 Glaceum (South Korea)'),
(77096, 'https://ror.org/02g517422', 'no_lang_code', 1, 'https://ror.org/02g517422 CytoDel (United States)'),
(77097, 'https://ror.org/002egtp29', 'en', 1, 'https://ror.org/002egtp29 Arctic Research Centre'),
(77098, 'https://ror.org/01k974c52', 'en', 1, 'https://ror.org/01k974c52 Tibetan Children’s Village ą¤¹ą„‡ą¤” ऑफिस, ą¤¤ą¤æą¤¬ą„ą¤¬ą¤¤ą„€ ą¤šą¤æą¤²ą„ą¤”ą„ą¤°ą¤Øą„ą¤ø ą¤µą¤æą¤²ą„‡ą¤œ ą¤øą„ą¤•ą„‚ą¤²'),
(77099, 'https://ror.org/03tmcds80', 'no_lang_code', 1, 'https://ror.org/03tmcds80 Inergio (Switzerland)'),
(77100, 'https://ror.org/038fqq280', 'en', 1, 'https://ror.org/038fqq280 Botswana Geoscience Institute'),
(77101, 'https://ror.org/0329s8h62', 'en', 1, 'https://ror.org/0329s8h62 Oeschger Centre for Climate Change Research'),
(77102, 'https://ror.org/04hsbfk21', 'en', 1, 'https://ror.org/04hsbfk21 Iowa Digestive Disease Center'),
(77103, 'https://ror.org/05ebx7e05', 'no_lang_code', 1, 'https://ror.org/05ebx7e05 TerraRad Tech (Switzerland)'),
(77104, 'https://ror.org/011bss535', 'no_lang_code', 1, 'https://ror.org/011bss535 Victorinox (Switzerland)'),
(77105, 'https://ror.org/040yys981', 'en', 1, 'https://ror.org/040yys981 Horace Mann School'),
(77106, 'https://ror.org/00xfx4h06', 'pt', 1, 'https://ror.org/00xfx4h06 Hospital Santa Paula'),
(77107, 'https://ror.org/00px17r71', 'no_lang_code', 1, 'https://ror.org/00px17r71 Biomica (Israel)'),
(77108, 'https://ror.org/055rntz96', 'no_lang_code', 1, 'https://ror.org/055rntz96 Kologrivsky Nature Reserve ŠšŠ¾Š»Š¾Š³Ń€ŠøŠ²ŃŠŗŠøŠ¹ лес заповеГник'),
(77109, 'https://ror.org/044zwwk69', 'no_lang_code', 1, 'https://ror.org/044zwwk69 AlphaThera (United States)'),
(77110, 'https://ror.org/04r1mej53', 'it', 1, 'https://ror.org/04r1mej53 Europa Donna'),
(77111, 'https://ror.org/05wr4m486', 'no_lang_code', 1, 'https://ror.org/05wr4m486 Frontier Geosciences (Canada)'),
(77112, 'https://ror.org/02mnbgz92', 'no_lang_code', 1, 'https://ror.org/02mnbgz92 Informulate (United States)'),
(77113, 'https://ror.org/00me1fb23', 'en', 1, 'https://ror.org/00me1fb23 Retinal Consultants of Arizona'),
(77114, 'https://ror.org/02qvwkt51', 'no_lang_code', 1, 'https://ror.org/02qvwkt51 Tigireksky Nature Reserve Тигирекский заповеГник'),
(77115, 'https://ror.org/05hre1985', 'no_lang_code', 1, 'https://ror.org/05hre1985 Lux Research (United States)'),
(77116, 'https://ror.org/03d0x9s65', 'no_lang_code', 1, 'https://ror.org/03d0x9s65 Provinn (Sweden)'),
(77117, 'https://ror.org/01szf1r88', 'no_lang_code', 1, 'https://ror.org/01szf1r88 envibee (Switzerland)'),
(77118, 'https://ror.org/02k5hnj64', 'en', 1, 'https://ror.org/02k5hnj64 Pinnacle Clinical Research'),
(77119, 'https://ror.org/00dyv8n62', 'no_lang_code', 1, 'https://ror.org/00dyv8n62 Sailbri Cooper (United States)'),
(77120, 'https://ror.org/02aq0m513', 'id', 1, 'https://ror.org/02aq0m513 Balai Arkeologi Sulawesi Selatan'),
(77121, 'https://ror.org/038axdp29', 'en', 1, 'https://ror.org/038axdp29 Institute for Musculoskeletal Health'),
(77122, 'https://ror.org/02bpgfv91', 'en', 1, 'https://ror.org/02bpgfv91 Guangzhou Development Zone Hospital å¹æå·žå¼€å‘åŒŗåŒ»é™¢'),
(77123, 'https://ror.org/052nhsv65', 'en', 1, 'https://ror.org/052nhsv65 Ugra National Park ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк Угра'),
(77124, 'https://ror.org/027jt8826', 'no_lang_code', 1, 'https://ror.org/027jt8826 WuXi AppTec (United States)'),
(77125, 'https://ror.org/00687yy04', 'en', 1, 'https://ror.org/00687yy04 Envoi Specialist Pathologists'),
(77126, 'https://ror.org/01dh8xz10', 'pt', 1, 'https://ror.org/01dh8xz10 SĆ£o Germano Oncologia'),
(77127, 'https://ror.org/01jbagx41', 'no_lang_code', 1, 'https://ror.org/01jbagx41 Hydrosolutions (Switzerland)'),
(77128, 'https://ror.org/00j6hr569', 'en', 1, 'https://ror.org/00j6hr569 Center for Digital Image Evaluation'),
(77129, 'https://ror.org/02ht65c11', 'de', 1, 'https://ror.org/02ht65c11 SPZ Frankfurt Mitte SozialpƤdiatrisches Zentrum Frankfurt Mitte'),
(77130, 'https://ror.org/03dkznf33', 'no_lang_code', 1, 'https://ror.org/03dkznf33 Dempsey (Canada)'),
(77131, 'https://ror.org/05n9k9z81', 'no_lang_code', 1, 'https://ror.org/05n9k9z81 Guangzhou Research and Creativity Biotechnology (China) å¹æå·žē ”åˆ›ē”Ÿē‰©'),
(77132, 'https://ror.org/045syea95', 'en', 1, 'https://ror.org/045syea95 Taipei Institute of Pathology å°åŒ—ē—…ē†äø­åæƒ'),
(77133, 'https://ror.org/03sxzz606', 'nl', 1, 'https://ror.org/03sxzz606 Centrum voor Gynaecologische Oncologie Amsterdam'),
(77134, 'https://ror.org/03m60sb72', 'no_lang_code', 1, 'https://ror.org/03m60sb72 Crozet BioPharma (United States)'),
(77135, 'https://ror.org/05dge7437', 'no_lang_code', 1, 'https://ror.org/05dge7437 Jupiter (United States)'),
(77136, 'https://ror.org/022s42002', 'no_lang_code', 1, 'https://ror.org/022s42002 Elasmo Project'),
(77137, 'https://ror.org/02hpx5276', 'no_lang_code', 1, 'https://ror.org/02hpx5276 Dr. Shterev Hospital ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø комплекс "Š”-р Щерев"'),
(77138, 'https://ror.org/05qmhph48', 'no_lang_code', 1, 'https://ror.org/05qmhph48 Solarea Bio (United States)'),
(77139, 'https://ror.org/02bjvzs55', 'en', 1, 'https://ror.org/02bjvzs55 Millennium Nucleus of Ion Channel Associated Diseases Núcleo Milenio de Enfermedades Asociadas a Canales iónicos'),
(77140, 'https://ror.org/00p3egw50', 'no_lang_code', 1, 'https://ror.org/00p3egw50 The Hyve (Netherlands)'),
(77141, 'https://ror.org/029ah8167', 'en', 1, 'https://ror.org/029ah8167 Indian Creek Farm'),
(77142, 'https://ror.org/00yzz2383', 'en', 1, 'https://ror.org/00yzz2383 Hamilton Medical Research Group'),
(77143, 'https://ror.org/00vn9zp29', 'en', 1, 'https://ror.org/00vn9zp29 International Institute for Sustainability Australia'),
(77144, 'https://ror.org/0336ct020', 'en', 1, 'https://ror.org/0336ct020 Caucasian State Natural Biosphere Reserve named after Kh.G. Shaposhnikov Кавказский Š³Š¾ŃŃƒŠ“арственный прироГный биосферный заповеГник имени Š„.Š“.Шапошникова'),
(77145, 'https://ror.org/01s7bn502', 'en', 1, 'https://ror.org/01s7bn502 Glympse Bio'),
(77146, 'https://ror.org/05xbc7p40', 'fr', 1, 'https://ror.org/05xbc7p40 MĆ©decins Sans FrontiĆØres Ų£Ų·ŲØŲ§Ų” بلا حدود'),
(77147, 'https://ror.org/05vqpm153', 'de', 1, 'https://ror.org/05vqpm153 GastroZentrum Hirslanden Zürich'),
(77148, 'https://ror.org/02xwnwd15', 'en', 1, 'https://ror.org/02xwnwd15 Directorate of Health and Family Welfare Government of Chhattisgarh ą¤øą¤‚ą¤šą¤¾ą¤²ą¤Øą¤¾ą¤²ą¤Æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤ą¤µą¤‚ परिवार ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ विभाग ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą„ शासन'),
(77149, 'https://ror.org/023b5wm02', 'no_lang_code', 1, 'https://ror.org/023b5wm02 Kraken Systems (Croatia)'),
(77150, 'https://ror.org/04tj1wy14', 'en', 1, 'https://ror.org/04tj1wy14 Anti Leprosy Campaign'),
(77151, 'https://ror.org/03b9h7664', 'no_lang_code', 1, 'https://ror.org/03b9h7664 Notable Labs (United States)'),
(77152, 'https://ror.org/00jb67179', 'en', 1, 'https://ror.org/00jb67179 Gasol Foundation'),
(77153, 'https://ror.org/04h5v2n16', 'no_lang_code', 1, 'https://ror.org/04h5v2n16 CareEvolution (United States)'),
(77154, 'https://ror.org/04s0rxb48', 'es', 1, 'https://ror.org/04s0rxb48 Instituto Volcanológico de Canarias'),
(77155, 'https://ror.org/04c504j29', 'no_lang_code', 1, 'https://ror.org/04c504j29 Evolved Analytics (United States)'),
(77156, 'https://ror.org/01w2zd907', 'en', 1, 'https://ror.org/01w2zd907 Nuffield Health'),
(77157, 'https://ror.org/01fx7cm24', 'no_lang_code', 1, 'https://ror.org/01fx7cm24 Digizyme (United States)'),
(77158, 'https://ror.org/02x8mjk39', 'en', 1, 'https://ror.org/02x8mjk39 Tasmanian Land Conservancy'),
(77159, 'https://ror.org/05njepb92', 'en', 1, 'https://ror.org/05njepb92 International Gorilla Conservation Programme'),
(77160, 'https://ror.org/039p7nx39', 'en', 1, 'https://ror.org/039p7nx39 ARC Centre of Excellence for Automated Decision-Making and Society'),
(77161, 'https://ror.org/01h55za35', 'en', 1, 'https://ror.org/01h55za35 ARC Centre of Excellence for the Digital Child'),
(77162, 'https://ror.org/01nsxs283', 'en', 1, 'https://ror.org/01nsxs283 ARC Centre of Excellence for Enabling Eco-Efficient Beneficiation of Minerals'),
(77163, 'https://ror.org/01p2zg436', 'en', 1, 'https://ror.org/01p2zg436 ARC Centre of Excellence in Synthetic Biology'),
(77164, 'https://ror.org/05sh7tb37', 'en', 1, 'https://ror.org/05sh7tb37 ARC Centre of Excellence for Transformative Meta-Optical Systems'),
(77165, 'https://ror.org/04n9jx253', 'en', 1, 'https://ror.org/04n9jx253 Medford Radiology Group'),
(77166, 'https://ror.org/045gefm38', 'en', 1, 'https://ror.org/045gefm38 Gloucester Marine Genomics Institute'),
(77167, 'https://ror.org/03kezgr11', 'en', 1, 'https://ror.org/03kezgr11 Stanford Blood Center'),
(77168, 'https://ror.org/03w84vf57', 'no_lang_code', 1, 'https://ror.org/03w84vf57 NestlƩ (Singapore)'),
(77169, 'https://ror.org/04a7cz929', 'en', 1, 'https://ror.org/04a7cz929 Kids Saving the Rainforest'),
(77170, 'https://ror.org/04rtztn12', 'no_lang_code', 1, 'https://ror.org/04rtztn12 Abt Associates (Nepal)'),
(77171, 'https://ror.org/05y122w12', 'en', 1, 'https://ror.org/05y122w12 Lehmann Eye Center'),
(77172, 'https://ror.org/04gs0eq62', 'en', 1, 'https://ror.org/04gs0eq62 The Childhood Acute Illness and Nutrition Network'),
(77173, 'https://ror.org/055jd5n10', 'en', 1, 'https://ror.org/055jd5n10 Wildlife Science Center'),
(77174, 'https://ror.org/02b47v767', 'en', 1, 'https://ror.org/02b47v767 Olyokma Nature Reserve ФГБУ Ā«Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник Ā«ŠžŠ»Ń‘ŠŗŠ¼ŠøŠ½ŃŠŗŠøŠ¹Ā»'),
(77175, 'https://ror.org/02rkjsq72', 'no_lang_code', 1, 'https://ror.org/02rkjsq72 SAS Institute (Ireland)'),
(77176, 'https://ror.org/03a1nz111', 'es', 1, 'https://ror.org/03a1nz111 CEVAXIN'),
(77177, 'https://ror.org/02s6byd36', 'en', 1, 'https://ror.org/02s6byd36 Center for Outcomes Research in Liver Diseases'),
(77178, 'https://ror.org/04gf9zd51', 'no_lang_code', 1, 'https://ror.org/04gf9zd51 Incisive Genetics (Canada)'),
(77179, 'https://ror.org/044b8qb17', 'no_lang_code', 1, 'https://ror.org/044b8qb17 EarthCape (Finland)'),
(77180, 'https://ror.org/055ybaf35', 'en', 1, 'https://ror.org/055ybaf35 Urban Emissions Info'),
(77181, 'https://ror.org/014ezsb26', 'en', 1, 'https://ror.org/014ezsb26 United Nations Children''s Fund Niger'),
(77182, 'https://ror.org/039cvdc85', 'no_lang_code', 1, 'https://ror.org/039cvdc85 Tianmu Lake Institute of Advanced Energy Storage Technologies (China)'),
(77183, 'https://ror.org/05h29rm85', 'de', 1, 'https://ror.org/05h29rm85 Muskelzentrum/ALS Clinic'),
(77184, 'https://ror.org/01hdnty41', 'pt', 1, 'https://ror.org/01hdnty41 Centro Paulista de Investigação Clinica'),
(77185, 'https://ror.org/04v7b3f33', 'no_lang_code', 1, 'https://ror.org/04v7b3f33 Helen Keller International Nepal'),
(77186, 'https://ror.org/00s2ct942', 'no_lang_code', 1, 'https://ror.org/00s2ct942 iDirect Government (United States)'),
(77187, 'https://ror.org/054b5mv70', 'no_lang_code', 1, 'https://ror.org/054b5mv70 Cycle (Germany)'),
(77188, 'https://ror.org/03ztw9d82', 'en', 1, 'https://ror.org/03ztw9d82 Department of Statistics Malaysia'),
(77189, 'https://ror.org/051btyw27', 'no_lang_code', 1, 'https://ror.org/051btyw27 Erum Biotechnologies (South Korea)'),
(77190, 'https://ror.org/0394pt124', 'en', 1, 'https://ror.org/0394pt124 Irish Children''s Arthritis Network'),
(77191, 'https://ror.org/01cer8f17', 'no_lang_code', 1, 'https://ror.org/01cer8f17 H2Pro (Israel)'),
(77192, 'https://ror.org/047zgkt86', 'en', 1, 'https://ror.org/047zgkt86 National Museum of the Philippines Pambansang Museo ng Pilipinas'),
(77193, 'https://ror.org/05nh0hr31', 'no_lang_code', 1, 'https://ror.org/05nh0hr31 Icon (Australia)'),
(77194, 'https://ror.org/03vj6de86', 'no_lang_code', 1, 'https://ror.org/03vj6de86 Advanced Micro-Fabrication Equipment (China) äø­å¾®åŠåÆ¼ä½“č®¾å¤‡'),
(77195, 'https://ror.org/019w2q474', 'en', 1, 'https://ror.org/019w2q474 Kanti Children''s Hospital'),
(77196, 'https://ror.org/05v9jew52', 'no_lang_code', 1, 'https://ror.org/05v9jew52 National Park Braslavskie Ozera ŠŠ°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Ń‹ парк Š‘Ń€Š°ŃŠ»Š°ŃžŃŠŗŃ–Ń азёры'),
(77197, 'https://ror.org/044z70396', 'en', 1, 'https://ror.org/044z70396 Broome Regional Aboriginal Medical Service'),
(77198, 'https://ror.org/01bvxvq19', 'en', 1, 'https://ror.org/01bvxvq19 Hong Kong Observatory é¦™ęøÆå¤©ę–‡å°'),
(77199, 'https://ror.org/02artxk90', 'no_lang_code', 1, 'https://ror.org/02artxk90 Resolve Therapeutics (United States)'),
(77200, 'https://ror.org/040tczt20', 'no_lang_code', 1, 'https://ror.org/040tczt20 Science Groove (Japan) ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚°ćƒ«ćƒ¼ćƒ“'),
(77201, 'https://ror.org/00513r667', 'en', 1, 'https://ror.org/00513r667 Wellington Free Ambulance'),
(77202, 'https://ror.org/02hfbe980', 'de', 1, 'https://ror.org/02hfbe980 Biologische Station Neusiedler See'),
(77203, 'https://ror.org/00f1drj74', 'en', 1, 'https://ror.org/00f1drj74 Seeta Eye Centers'),
(77204, 'https://ror.org/03evrfb35', 'en', 1, 'https://ror.org/03evrfb35 United Nations Children''s Fund'),
(77205, 'https://ror.org/0523kvm53', 'en', 1, 'https://ror.org/0523kvm53 Innovating Health International'),
(77206, 'https://ror.org/02dxfxz15', 'en', 1, 'https://ror.org/02dxfxz15 Wild Nature Institute'),
(77207, 'https://ror.org/05kz57e33', 'en', 1, 'https://ror.org/05kz57e33 Day Family Medicine'),
(77208, 'https://ror.org/04b4sm863', 'no_lang_code', 1, 'https://ror.org/04b4sm863 Ally Therapeutics (United States)'),
(77209, 'https://ror.org/037h5rj68', 'en', 1, 'https://ror.org/037h5rj68 Hybrid Rapeseed Research Center of Shaanxi Province é™•č„æēœę‚äŗ¤ę²¹čœē ”ē©¶äø­åæƒ'),
(77210, 'https://ror.org/05hnphf80', 'no_lang_code', 1, 'https://ror.org/05hnphf80 CommuniCare Family of Companies (United States)'),
(77211, 'https://ror.org/05ey1mh42', 'no_lang_code', 1, 'https://ror.org/05ey1mh42 Riverside Technology (United States)'),
(77212, 'https://ror.org/04d9bp554', 'pt', 1, 'https://ror.org/04d9bp554 Instituto Nacional de EstatĆ­stica National Statistics Institute'),
(77213, 'https://ror.org/05vjzsz83', 'no_lang_code', 1, 'https://ror.org/05vjzsz83 FinVector (Finland)'),
(77214, 'https://ror.org/02rjzcj48', 'no_lang_code', 1, 'https://ror.org/02rjzcj48 RedCastle Resources (United States)'),
(77215, 'https://ror.org/044f91d43', 'no_lang_code', 1, 'https://ror.org/044f91d43 Kagami Crystal (Japan) ć‚«ć‚¬ćƒŸć‚ÆćƒŖć‚¹ć‚æćƒ«'),
(77216, 'https://ror.org/000hftw80', 'no_lang_code', 1, 'https://ror.org/000hftw80 Nuclera (United Kingdom)'),
(77217, 'https://ror.org/03vjfx044', 'no_lang_code', 1, 'https://ror.org/03vjfx044 Sentieon (United States)'),
(77218, 'https://ror.org/05s1jm910', 'pt', 1, 'https://ror.org/05s1jm910 Associação Projecto Vitó'),
(77219, 'https://ror.org/02t3f4288', 'es', 1, 'https://ror.org/02t3f4288 Centro de Medicina Avanzada Dr. Abel Gonzalez'),
(77220, 'https://ror.org/03xzcaz17', 'en', 1, 'https://ror.org/03xzcaz17 Urology of Indiana'),
(77221, 'https://ror.org/00saq8k02', 'no_lang_code', 1, 'https://ror.org/00saq8k02 Immunai (United States)'),
(77222, 'https://ror.org/02nv6cz40', 'no_lang_code', 1, 'https://ror.org/02nv6cz40 Complete Omics (United States)'),
(77223, 'https://ror.org/01bzqs207', 'no_lang_code', 1, 'https://ror.org/01bzqs207 Avidea Technologies (United States)'),
(77224, 'https://ror.org/02rxmsn03', 'no_lang_code', 1, 'https://ror.org/02rxmsn03 Notal Vision (Israel)'),
(77225, 'https://ror.org/05dzd9d14', 'nl', 1, 'https://ror.org/05dzd9d14 GGD Hart voor Brabant Gemeentelijke gezondheidsdienst Hart voor Brabant'),
(77226, 'https://ror.org/05k7y1t77', 'en', 1, 'https://ror.org/05k7y1t77 Fairmed'),
(77227, 'https://ror.org/05pq7y258', 'en', 1, 'https://ror.org/05pq7y258 Police of the Czech Republic Policie České republiky'),
(77228, 'https://ror.org/055mpn097', 'en', 1, 'https://ror.org/055mpn097 Sanno Medical Center'),
(77229, 'https://ror.org/04btxjt62', 'no_lang_code', 1, 'https://ror.org/04btxjt62 NLR Nepal'),
(77230, 'https://ror.org/05skpc353', 'no_lang_code', 1, 'https://ror.org/05skpc353 TriNetX (United States)'),
(77231, 'https://ror.org/02kc80b57', 'en', 1, 'https://ror.org/02kc80b57 The Dian Fossey Gorilla Fund International'),
(77232, 'https://ror.org/012y0eh02', 'no_lang_code', 1, 'https://ror.org/012y0eh02 Theolytics (United Kingdom)'),
(77233, 'https://ror.org/02y41xn75', 'en', 1, 'https://ror.org/02y41xn75 State Nature Reserve "Bolshaya Kokshaga" Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник Ā«Š‘Š¾Š»ŃŒŃˆŠ°Ń Кокшага»'),
(77234, 'https://ror.org/05mcasn19', 'no_lang_code', 1, 'https://ror.org/05mcasn19 Kuznetsk Alatau Nature Reserve ŠšŃƒŠ·Š½ŠµŃ†ŠŗŠøŠ¹ ŠŠ»Š°Ń‚Š°Ńƒ заповеГник'),
(77235, 'https://ror.org/03n0ara52', 'en', 1, 'https://ror.org/03n0ara52 Possover International Medical Center'),
(77236, 'https://ror.org/03j50y383', 'en', 1, 'https://ror.org/03j50y383 Monash IVF'),
(77237, 'https://ror.org/04djh6c16', 'no_lang_code', 1, 'https://ror.org/04djh6c16 Logopharm (Germany)'),
(77238, 'https://ror.org/04wegfc89', 'en', 1, 'https://ror.org/04wegfc89 Westchester County Department of Health'),
(77239, 'https://ror.org/01rcv7z31', 'en', 1, 'https://ror.org/01rcv7z31 Dermacross'),
(77240, 'https://ror.org/05v9dz963', 'es', 1, 'https://ror.org/05v9dz963 Instituto MƩdico Rƭo Cuarto'),
(77241, 'https://ror.org/01s8ff678', 'no_lang_code', 1, 'https://ror.org/01s8ff678 Tomita Hospital'),
(77242, 'https://ror.org/04gp2vw59', 'no_lang_code', 1, 'https://ror.org/04gp2vw59 GenomiCare (China)'),
(77243, 'https://ror.org/03c3zes23', 'es', 1, 'https://ror.org/03c3zes23 Inria Chile'),
(77244, 'https://ror.org/04wan7j07', 'fr', 1, 'https://ror.org/04wan7j07 RƩseau d''Allergo-Vigilance'),
(77245, 'https://ror.org/03yt81x83', 'no_lang_code', 1, 'https://ror.org/03yt81x83 Autovista (Finland)'),
(77246, 'https://ror.org/00kfe0n78', 'en', 1, 'https://ror.org/00kfe0n78 Gastroenterology Group of Rochester'),
(77247, 'https://ror.org/01cgvw868', 'en', 1, 'https://ror.org/01cgvw868 Joep Lange Institute'),
(77248, 'https://ror.org/01rnrha09', 'no_lang_code', 1, 'https://ror.org/01rnrha09 International Wildlife Consultants (United Kingdom)'),
(77249, 'https://ror.org/010yy8b40', 'en', 1, 'https://ror.org/010yy8b40 NLR India'),
(77250, 'https://ror.org/02qgpm702', 'en', 1, 'https://ror.org/02qgpm702 Aioi City Board of Education ē›øē”Ÿåø‚ę•™č‚²å§”å“”ä¼š'),
(77251, 'https://ror.org/05nk2np19', 'no_lang_code', 1, 'https://ror.org/05nk2np19 ACS Solutions (United States)'),
(77252, 'https://ror.org/01j409m42', 'en', 1, 'https://ror.org/01j409m42 Nurgush Nature Reserve ŠŃƒŃ€Š³ŃƒŃˆ заповеГник'),
(77253, 'https://ror.org/03v0qmb62', 'hr', 1, 'https://ror.org/03v0qmb62 Institut za javno zdravlje Crne Gore'),
(77254, 'https://ror.org/025qwfz43', 'en', 1, 'https://ror.org/025qwfz43 Geological Survey of Namibia'),
(77255, 'https://ror.org/0390g6860', 'en', 1, 'https://ror.org/0390g6860 Vodlozersky National Park ВоГлозерский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк'),
(77256, 'https://ror.org/01726w403', 'en', 1, 'https://ror.org/01726w403 Shushensky Bor National Park Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк «Шушенский бор'),
(77257, 'https://ror.org/010vedh32', 'en', 1, 'https://ror.org/010vedh32 New Jersey Urology'),
(77258, 'https://ror.org/014b0da27', 'en', 1, 'https://ror.org/014b0da27 Crystal Run Healthcare'),
(77259, 'https://ror.org/028xcne52', 'en', 1, 'https://ror.org/028xcne52 Mukachevo State University ŠœŃƒŠŗŠ°Ń‡Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(77260, 'https://ror.org/028a0yj94', 'no_lang_code', 1, 'https://ror.org/028a0yj94 ARAconsult (Austria)'),
(77261, 'https://ror.org/002v4hw29', 'en', 1, 'https://ror.org/002v4hw29 Sikhote-Alin Nature Reserve Š”ŠøŃ…Š¾Ń‚Ń-Алинский заповеГник'),
(77262, 'https://ror.org/05s41sf03', 'en', 1, 'https://ror.org/05s41sf03 Baikal Nature Reserve Š‘Š°Š¹ŠŗŠ°ĢŠ»ŃŒŃŠŗŠøŠ¹ запове́Гник'),
(77263, 'https://ror.org/04kkkns02', 'no_lang_code', 1, 'https://ror.org/04kkkns02 PanTheryx (United States)'),
(77264, 'https://ror.org/00k4dpj65', 'en', 1, 'https://ror.org/00k4dpj65 Privolshky Les Nature Reserve ŠŸŃ€ŠøŠ²Š¾Š»Š¶ŃŠŗŠ°Ń Š»ŠµŃŠ¾ŃŃ‚ŠµŠæŃŒ заповеГник'),
(77265, 'https://ror.org/04d6p1917', 'en', 1, 'https://ror.org/04d6p1917 National Center of Public Health of the Ministry of Health of the Republic of Kazakhstan ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠ«Š™ Š¦Š•ŠŠ¢Š  ŠžŠ‘Š©Š•Š”Š¢Š’Š•ŠŠŠžŠ“Šž Š—Š”Š ŠŠ’ŠžŠžŠ„Š ŠŠŠ•ŠŠ˜ŠÆ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š—Š”Š ŠŠ’ŠžŠžŠ„Š ŠŠŠ•ŠŠ˜ŠÆ Š Š•Š”ŠŸŠ£Š‘Š›Š˜ŠšŠ˜ ŠšŠŠ—ŠŠ„Š”Š¢ŠŠ'),
(77266, 'https://ror.org/025et0929', 'en', 1, 'https://ror.org/025et0929 San Francisco Estuary Institute'),
(77267, 'https://ror.org/035q1h929', 'en', 1, 'https://ror.org/035q1h929 Pryazovskyi National Nature Park ŠŸŃ€ŠøŠ°Š·Š¾Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГний парк'),
(77268, 'https://ror.org/00qsmvq80', 'en', 1, 'https://ror.org/00qsmvq80 Edwin Clark University'),
(77269, 'https://ror.org/05eak0w67', 'en', 1, 'https://ror.org/05eak0w67 Taraclia State University Universitatea de Stat ā€žGrigore Țamblacā€ din Taraclia'),
(77270, 'https://ror.org/045kf1278', 'en', 1, 'https://ror.org/045kf1278 V. Peskov Voronezhsky State Nature Biosphere Reserve Š’ŠžŠ ŠžŠŠ•Š–Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŸŠ Š˜Š ŠžŠ”ŠŠ«Š™ Š‘Š˜ŠžŠ”Š¤Š•Š ŠŠ«Š™ Š—ŠŠŸŠžŠ’Š•Š”ŠŠ˜Šš Š˜ŠœŠ•ŠŠ˜ Š’.М. ŠŸŠ•Š”ŠšŠžŠ’Š'),
(77271, 'https://ror.org/036kvxa54', 'en', 1, 'https://ror.org/036kvxa54 Academia "Ștefan cel Mare" a Ministerului Afacerilor Interne Ştefan cel Mare Police Academy'),
(77272, 'https://ror.org/05peb2h15', 'en', 1, 'https://ror.org/05peb2h15 State University of Physical Education and Sport Universitatea de Stat de Educaţie Fizică şi Sport'),
(77273, 'https://ror.org/04z941r10', 'en', 1, 'https://ror.org/04z941r10 Remote Sensing Technology Center of Japan ćƒŖćƒ¢ćƒ¼ćƒˆćƒ»ć‚»ćƒ³ć‚·ćƒ³ć‚°ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(77274, 'https://ror.org/029v5hv47', 'no_lang_code', 1, 'https://ror.org/029v5hv47 Antaros Medical (Sweden)'),
(77275, 'https://ror.org/01xaj4023', 'no_lang_code', 1, 'https://ror.org/01xaj4023 CDM Smith (Australia)'),
(77276, 'https://ror.org/00m2ky193', 'no_lang_code', 1, 'https://ror.org/00m2ky193 Biohaven Pharmaceuticals (United States)'),
(77277, 'https://ror.org/00b0fqv31', 'en', 1, 'https://ror.org/00b0fqv31 D-Tree International'),
(77278, 'https://ror.org/05kd8e855', 'en', 1, 'https://ror.org/05kd8e855 North Karelia Center for Public Health Pohjois-Karjalan Kansanterveyden Keskus'),
(77279, 'https://ror.org/01e73dz52', 'no_lang_code', 1, 'https://ror.org/01e73dz52 Mira Geoscience (Canada)'),
(77280, 'https://ror.org/002v3hs06', 'en', 1, 'https://ror.org/002v3hs06 Ipar Perspective'),
(77281, 'https://ror.org/03j4s9c05', 'no_lang_code', 1, 'https://ror.org/03j4s9c05 Agua y Saneamientos Argentinos Argentine Water and Sanitation (Argentina)'),
(77282, 'https://ror.org/0394gjn55', 'no_lang_code', 1, 'https://ror.org/0394gjn55 BridgeBio (United States)'),
(77283, 'https://ror.org/03b5mky78', 'no_lang_code', 1, 'https://ror.org/03b5mky78 Somahlution (United States)'),
(77284, 'https://ror.org/00f6fw078', 'no_lang_code', 1, 'https://ror.org/00f6fw078 Cumberland Research Associates (United States)'),
(77285, 'https://ror.org/00dnats08', 'no_lang_code', 1, 'https://ror.org/00dnats08 Opris Consulting (United States)'),
(77286, 'https://ror.org/05kxg4a92', 'en', 1, 'https://ror.org/05kxg4a92 National Institute for Implementation Research on Non-Communicable Diseases'),
(77287, 'https://ror.org/02yxdv803', 'en', 1, 'https://ror.org/02yxdv803 Jain Family Institute'),
(77288, 'https://ror.org/00dfvzs39', 'no_lang_code', 1, 'https://ror.org/00dfvzs39 Swiss Re (United States)'),
(77289, 'https://ror.org/012hfdz28', 'fr', 1, 'https://ror.org/012hfdz28 Centre de RƩfƩrence des Maladies Autoinflammatoires et des Amyloses'),
(77290, 'https://ror.org/02pr0q451', 'en', 1, 'https://ror.org/02pr0q451 Allergy Action'),
(77291, 'https://ror.org/045qred77', 'no_lang_code', 1, 'https://ror.org/045qred77 Iridian Genomes'),
(77292, 'https://ror.org/03ajcy837', 'en', 1, 'https://ror.org/03ajcy837 West Texas Retina Consultants'),
(77293, 'https://ror.org/003edc064', 'en', 1, 'https://ror.org/003edc064 CorVita Science Foundation'),
(77294, 'https://ror.org/03mef7y36', 'no_lang_code', 1, 'https://ror.org/03mef7y36 GeoModelling Solutions (Switzerland)'),
(77295, 'https://ror.org/04gbtp312', 'en', 1, 'https://ror.org/04gbtp312 Agencia Insular de la EnergĆ­a de Tenerife Tenerife Island Energy Agency'),
(77296, 'https://ror.org/00bpkwt94', 'es', 1, 'https://ror.org/00bpkwt94 Centro MƩdico Bustos Fernandez'),
(77297, 'https://ror.org/04en6sc21', 'es', 1, 'https://ror.org/04en6sc21 Fundacion Venezolana de Investigaciones Sismologicas'),
(77298, 'https://ror.org/04mwky069', 'no_lang_code', 1, 'https://ror.org/04mwky069 RapidAIM (Australia)'),
(77299, 'https://ror.org/04th0dc64', 'en', 1, 'https://ror.org/04th0dc64 Toronto Liver Centre'),
(77300, 'https://ror.org/059w1vn19', 'en', 1, 'https://ror.org/059w1vn19 Little Sosva Nature Reserve ŠœŠ°Š»Š°Ń Досьва заповеГник'),
(77301, 'https://ror.org/03t432d20', 'en', 1, 'https://ror.org/03t432d20 Pediatrics and Genetics'),
(77302, 'https://ror.org/02zz8b038', 'no_lang_code', 1, 'https://ror.org/02zz8b038 Waves Audio (Israel)'),
(77303, 'https://ror.org/02qbrk786', 'en', 1, 'https://ror.org/02qbrk786 Carl von LinnƩ Clinic'),
(77304, 'https://ror.org/018mx4905', 'en', 1, 'https://ror.org/018mx4905 National Park Meshera ŠœŠµŃ‰Ń‘Ń€Š° (Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк))'),
(77305, 'https://ror.org/03jfqp972', 'en', 1, 'https://ror.org/03jfqp972 Clark County Public Health'),
(77306, 'https://ror.org/05ght7821', 'en', 1, 'https://ror.org/05ght7821 Allergy Partners of Lynchburg'),
(77307, 'https://ror.org/04bwzfc79', 'no_lang_code', 1, 'https://ror.org/04bwzfc79 Invisible Software (United States)');
INSERT INTO `rors` VALUES
(77308, 'https://ror.org/03r5x2b75', 'en', 1, 'https://ror.org/03r5x2b75 The Metabolomics Innovation Centre'),
(77309, 'https://ror.org/05c3e8627', 'en', 1, 'https://ror.org/05c3e8627 Togolese Ministry of Health'),
(77310, 'https://ror.org/056qhkx89', 'en', 1, 'https://ror.org/056qhkx89 Lake Macquarie Private Hospital'),
(77311, 'https://ror.org/03r1tnz13', 'en', 1, 'https://ror.org/03r1tnz13 Taymyr Nature Reserve Таймырский заповеГник'),
(77312, 'https://ror.org/01dmz0g51', 'en', 1, 'https://ror.org/01dmz0g51 HeartMath Institute'),
(77313, 'https://ror.org/03q4q6w91', 'no_lang_code', 1, 'https://ror.org/03q4q6w91 Carl Zeiss (China)'),
(77314, 'https://ror.org/02hjc1385', 'no_lang_code', 1, 'https://ror.org/02hjc1385 Lettis Consultants International (United States)'),
(77315, 'https://ror.org/04aa9rd76', 'en', 1, 'https://ror.org/04aa9rd76 Gastroenterology Center of Connecticut'),
(77316, 'https://ror.org/02heqdm85', 'ro', 1, 'https://ror.org/02heqdm85 Romanian Ornithological Society Societatea Ornitologică Română'),
(77317, 'https://ror.org/012547n22', 'en', 1, 'https://ror.org/012547n22 Jeffrey D. Horn Vision For Life'),
(77318, 'https://ror.org/05hak3w16', 'en', 1, 'https://ror.org/05hak3w16 National Commission on Indigenous Peoples Pambansang Komisyon sa mga Katutubong Mamamayan'),
(77319, 'https://ror.org/02hf3ga17', 'en', 1, 'https://ror.org/02hf3ga17 Glacier Cave Explorers'),
(77320, 'https://ror.org/01pdrgk70', 'en', 1, 'https://ror.org/01pdrgk70 The Negros Museum'),
(77321, 'https://ror.org/03ymqts82', 'es', 1, 'https://ror.org/03ymqts82 Casa del NiƱo Hospital Infantil'),
(77322, 'https://ror.org/05jtv2231', 'en', 1, 'https://ror.org/05jtv2231 Reproductive Biology Associates'),
(77323, 'https://ror.org/05hg1ny67', 'en', 1, 'https://ror.org/05hg1ny67 SRCC Children’s Hospital'),
(77324, 'https://ror.org/0544srg78', 'es', 1, 'https://ror.org/0544srg78 Fundación Para La Investigación Y Gestión En Servicios de Salud'),
(77325, 'https://ror.org/058fcc996', 'fr', 1, 'https://ror.org/058fcc996 Agence Wallonne du Patrimoine Walloon Heritage Agency'),
(77326, 'https://ror.org/01vny5262', 'no_lang_code', 1, 'https://ror.org/01vny5262 Sensory Cloud (United States)'),
(77327, 'https://ror.org/00yam4t82', 'no_lang_code', 1, 'https://ror.org/00yam4t82 McKing Consulting (United States)'),
(77328, 'https://ror.org/03hxj3015', 'no', 1, 'https://ror.org/03hxj3015 SpesialistSenteret Pilestredet Park'),
(77329, 'https://ror.org/02zht5x56', 'fr', 1, 'https://ror.org/02zht5x56 Centre Hospitalier Sud-Essonne Dourdan-Etampes'),
(77330, 'https://ror.org/01fm5g896', 'no_lang_code', 1, 'https://ror.org/01fm5g896 Olink (United States)'),
(77331, 'https://ror.org/05h7r9v23', 'no_lang_code', 1, 'https://ror.org/05h7r9v23 Akari Therapeutics (United Kingdom)'),
(77332, 'https://ror.org/03je9ev90', 'en', 1, 'https://ror.org/03je9ev90 World Health Organization - Malawi'),
(77333, 'https://ror.org/04fqydq58', 'de', 1, 'https://ror.org/04fqydq58 See-Spital'),
(77334, 'https://ror.org/03ybh5p71', 'en', 1, 'https://ror.org/03ybh5p71 National Archeological Anthropological Memory Management'),
(77335, 'https://ror.org/00cv8gc24', 'no_lang_code', 1, 'https://ror.org/00cv8gc24 ENPICOM (Netherlands)'),
(77336, 'https://ror.org/02mjymy60', 'no_lang_code', 1, 'https://ror.org/02mjymy60 Cyano Biotech (Germany)'),
(77337, 'https://ror.org/05tkt0g15', 'no_lang_code', 1, 'https://ror.org/05tkt0g15 Bio4Dreams (Italy)'),
(77338, 'https://ror.org/00kk62m43', 'no_lang_code', 1, 'https://ror.org/00kk62m43 MBMed (Argentina)'),
(77339, 'https://ror.org/01gw91x75', 'en', 1, 'https://ror.org/01gw91x75 Software Training and Development Centre'),
(77340, 'https://ror.org/031k1tq46', 'en', 1, 'https://ror.org/031k1tq46 Carpathian National Nature Park ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГний парк'),
(77341, 'https://ror.org/03mg0pe18', 'fr', 1, 'https://ror.org/03mg0pe18 Centre Hospitalier de Dax –CĆ“te d’Argent'),
(77342, 'https://ror.org/05q7ca195', 'no_lang_code', 1, 'https://ror.org/05q7ca195 Wyatt Technology (China) ę€€é›…ē‰¹ęŠ€ęœÆå…¬åø'),
(77343, 'https://ror.org/01a0pgd23', 'fr', 1, 'https://ror.org/01a0pgd23 Observatoire FranƧais de la SclƩrose en Plaques SclƩrose en plaques'),
(77344, 'https://ror.org/04pmbtr45', 'no_lang_code', 1, 'https://ror.org/04pmbtr45 Linkster Therapeutics (Switzerland)'),
(77345, 'https://ror.org/017mdtk85', 'en', 1, 'https://ror.org/017mdtk85 Quantified Uncertainty Research Institute'),
(77346, 'https://ror.org/02at6q094', 'en', 1, 'https://ror.org/02at6q094 WaterAid'),
(77347, 'https://ror.org/005y23t65', 'de', 1, 'https://ror.org/005y23t65 Schƶn Klinik Vogtareuth'),
(77348, 'https://ror.org/01csrpp22', 'en', 1, 'https://ror.org/01csrpp22 Hospiten Group'),
(77349, 'https://ror.org/04wsbgw88', 'no_lang_code', 1, 'https://ror.org/04wsbgw88 Heartfile'),
(77350, 'https://ror.org/05me0b438', 'no_lang_code', 1, 'https://ror.org/05me0b438 FAIRMED'),
(77351, 'https://ror.org/01yys9r78', 'fr', 1, 'https://ror.org/01yys9r78 HƓpital Saint- Camille'),
(77352, 'https://ror.org/001w50q34', 'de', 1, 'https://ror.org/001w50q34 Barmherzige Schwestern Krankenhaus Wien'),
(77353, 'https://ror.org/049vtwv63', 'no_lang_code', 1, 'https://ror.org/049vtwv63 Hauri (Germany)'),
(77354, 'https://ror.org/015pm1582', 'no_lang_code', 1, 'https://ror.org/015pm1582 Remit Kenya (Kenya)'),
(77355, 'https://ror.org/020jz5y49', 'en', 1, 'https://ror.org/020jz5y49 Ilembula Lutheran Hospital'),
(77356, 'https://ror.org/00zjkgd30', 'en', 1, 'https://ror.org/00zjkgd30 Parkinson’s Disease and Movement Disorder Center of Silicon Valley'),
(77357, 'https://ror.org/00p9kvn81', 'no_lang_code', 1, 'https://ror.org/00p9kvn81 Pacific Radiology (New Zealand)'),
(77358, 'https://ror.org/02d32n026', 'no_lang_code', 1, 'https://ror.org/02d32n026 Gastro One (United States)'),
(77359, 'https://ror.org/0000c1w11', 'en', 1, 'https://ror.org/0000c1w11 Kivach Nature Reserve ŠšŠøŠ²Š°Ń‡ заповеГник'),
(77360, 'https://ror.org/00qvd7w26', 'no_lang_code', 1, 'https://ror.org/00qvd7w26 Pivot'),
(77361, 'https://ror.org/0345aqb42', 'no_lang_code', 1, 'https://ror.org/0345aqb42 Atuka (Canada)'),
(77362, 'https://ror.org/0555ajd25', 'en', 1, 'https://ror.org/0555ajd25 Kyiv City Clinical Oncology Center'),
(77363, 'https://ror.org/00y48xj05', 'es', 1, 'https://ror.org/00y48xj05 Hospital Roberto del Rio'),
(77364, 'https://ror.org/02mecht53', 'en', 1, 'https://ror.org/02mecht53 Extreme Weather Expertise'),
(77365, 'https://ror.org/02mn5cm26', 'nl', 1, 'https://ror.org/02mn5cm26 GGD Limburg-Noord Gemeenschappelijke Gezondheidsdienst Limburg-Noord'),
(77366, 'https://ror.org/01715vy32', 'en', 1, 'https://ror.org/01715vy32 North Shore Health Department'),
(77367, 'https://ror.org/04exbp452', 'pt', 1, 'https://ror.org/04exbp452 Hospital Sepaco'),
(77368, 'https://ror.org/009cyv989', 'en', 1, 'https://ror.org/009cyv989 Aga Khan Development Network'),
(77369, 'https://ror.org/04z57ga44', 'pl', 1, 'https://ror.org/04z57ga44 Przedszkole Nr 81'),
(77370, 'https://ror.org/03a5ms192', 'es', 1, 'https://ror.org/03a5ms192 Centro de OrnitologĆ­a y Biodiversidad'),
(77371, 'https://ror.org/05rvhh551', 'en', 1, 'https://ror.org/05rvhh551 Alliance for Public Health ŠŠ»ŃŒŃŠ½Ń Š³Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ¾Š³Š¾ зГоров''я'),
(77372, 'https://ror.org/023syz457', 'en', 1, 'https://ror.org/023syz457 KidsOR'),
(77373, 'https://ror.org/02vqknm77', 'no_lang_code', 1, 'https://ror.org/02vqknm77 Alcon (Canada)'),
(77374, 'https://ror.org/04qyar702', 'no_lang_code', 1, 'https://ror.org/04qyar702 Alcon (United Kingdom)'),
(77375, 'https://ror.org/010spvh97', 'no_lang_code', 1, 'https://ror.org/010spvh97 Alcon (France)'),
(77376, 'https://ror.org/041th5h66', 'no_lang_code', 1, 'https://ror.org/041th5h66 GI Specialists of Georgia (United States)'),
(77377, 'https://ror.org/04fqpw856', 'no_lang_code', 1, 'https://ror.org/04fqpw856 Alcon (South Korea)'),
(77378, 'https://ror.org/02tspge21', 'no_lang_code', 1, 'https://ror.org/02tspge21 Alcon (Japan)'),
(77379, 'https://ror.org/03cys3p26', 'no_lang_code', 1, 'https://ror.org/03cys3p26 Alcon (Italy)'),
(77380, 'https://ror.org/043qqcs43', 'en', 1, 'https://ror.org/043qqcs43 Japan Wildlife Research Center äø€čˆ¬č²”å›£ę³•äŗŗ č‡Ŗē„¶ē’°å¢ƒē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(77381, 'https://ror.org/04bm3fw61', 'no_lang_code', 1, 'https://ror.org/04bm3fw61 Alcon (Ireland)'),
(77382, 'https://ror.org/02ja8nd79', 'no_lang_code', 1, 'https://ror.org/02ja8nd79 Alcon (China)'),
(77383, 'https://ror.org/035ze0n48', 'no_lang_code', 1, 'https://ror.org/035ze0n48 Alcon (India)'),
(77384, 'https://ror.org/03fm0ke30', 'no_lang_code', 1, 'https://ror.org/03fm0ke30 GHGSat (Canada)'),
(77385, 'https://ror.org/00be4tw47', 'en', 1, 'https://ror.org/00be4tw47 Vyzhnytsia National Nature Park ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГний парк Ā«Š’ŠøŠ¶Š½ŠøŃ†ŃŒŠŗŠøŠ¹Ā»'),
(77386, 'https://ror.org/03z8y5a52', 'en', 1, 'https://ror.org/03z8y5a52 VASCage'),
(77387, 'https://ror.org/00qwa8m09', 'no_lang_code', 1, 'https://ror.org/00qwa8m09 Immunitas Therapeutics (United States)'),
(77388, 'https://ror.org/01hbz9j78', 'no_lang_code', 1, 'https://ror.org/01hbz9j78 Pointcloud (United States)'),
(77389, 'https://ror.org/056cwrs58', 'en', 1, 'https://ror.org/056cwrs58 Japan Link Center ć‚øćƒ£ćƒ‘ćƒ³ćƒŖćƒ³ć‚Æć‚»ćƒ³ć‚æ'),
(77390, 'https://ror.org/00z18yv90', 'en', 1, 'https://ror.org/00z18yv90 Royal Centre for Disease Control'),
(77391, 'https://ror.org/04bzz3t90', 'nl', 1, 'https://ror.org/04bzz3t90 Zuidwester'),
(77392, 'https://ror.org/03gnrk197', 'no_lang_code', 1, 'https://ror.org/03gnrk197 Pantheon Biosciences (Israel)'),
(77393, 'https://ror.org/029kstx64', 'no_lang_code', 1, 'https://ror.org/029kstx64 Kani Tono Hospital åÆå…ćØć†ć®ć†ē—…é™¢'),
(77394, 'https://ror.org/04ve2jr14', 'no_lang_code', 1, 'https://ror.org/04ve2jr14 Atos (Netherlands)'),
(77395, 'https://ror.org/00kwbng41', 'en', 1, 'https://ror.org/00kwbng41 Spinal Cord Injury Ontario'),
(77396, 'https://ror.org/0519z1231', 'en', 1, 'https://ror.org/0519z1231 Resphera Biosciences'),
(77397, 'https://ror.org/007k0m436', 'es', 1, 'https://ror.org/007k0m436 Corporación Universitaria Comfacauca - Unicomfacauca'),
(77398, 'https://ror.org/00jzhf358', 'en', 1, 'https://ror.org/00jzhf358 Kronotsky Reserve ŠšŃ€Š¾Š½Š¾Ń†ŠŗŠøŠ¹ заповеГник'),
(77399, 'https://ror.org/03r790h08', 'en', 1, 'https://ror.org/03r790h08 Global VetPathology'),
(77400, 'https://ror.org/01qbk8d85', 'en', 1, 'https://ror.org/01qbk8d85 Altaiskiy State Nature Biosphere Reserve Алтайский заповеГник'),
(77401, 'https://ror.org/02jrddb23', 'en', 1, 'https://ror.org/02jrddb23 Liver Institute Northwest'),
(77402, 'https://ror.org/01mhm7x58', 'en', 1, 'https://ror.org/01mhm7x58 Eye & Retina Surgeons'),
(77403, 'https://ror.org/046qqda35', 'en', 1, 'https://ror.org/046qqda35 Hungarian School Sport Federation Magyar DiƔksport SzƶvetsƩg'),
(77404, 'https://ror.org/00rngf163', 'no_lang_code', 1, 'https://ror.org/00rngf163 Karsa (Finland)'),
(77405, 'https://ror.org/05e03wj43', 'no_lang_code', 1, 'https://ror.org/05e03wj43 Austrian Drug Screening Institute (Austria)'),
(77406, 'https://ror.org/01mtzfx31', 'de', 1, 'https://ror.org/01mtzfx31 Brustzentrum Klinik St. Anna'),
(77407, 'https://ror.org/0528c5w53', 'en', 1, 'https://ror.org/0528c5w53 People''s Hospital of Yangzhong ę‰¬äø­åø‚äŗŗę°‘åŒ»é™¢'),
(77408, 'https://ror.org/033pa2k60', 'no_lang_code', 1, 'https://ror.org/033pa2k60 Ceinge Biotecnologie Avanzate (Italy)'),
(77409, 'https://ror.org/05mjtbx41', 'no_lang_code', 1, 'https://ror.org/05mjtbx41 Century Therapeutics (United States)'),
(77410, 'https://ror.org/03gqsr633', 'en', 1, 'https://ror.org/03gqsr633 Shanghai Sunshine Rehabilitation Center äøŠęµ·åø‚å…»åæ—åŗ·å¤åŒ»é™¢'),
(77411, 'https://ror.org/05wq1qf03', 'en', 1, 'https://ror.org/05wq1qf03 Irkutsk Regional Museum of Local History Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ областной краевеГческий музей'),
(77412, 'https://ror.org/052f3yd19', 'en', 1, 'https://ror.org/052f3yd19 Austrian Cluster for Tissue Regeneration'),
(77413, 'https://ror.org/02hscsw24', 'es', 1, 'https://ror.org/02hscsw24 Instituto Oncológico de Córdoba'),
(77414, 'https://ror.org/05mzppf86', 'en', 1, 'https://ror.org/05mzppf86 Arizona Liver Health'),
(77415, 'https://ror.org/00cjb8p81', 'nl', 1, 'https://ror.org/00cjb8p81 GGD Brabant-Zuidoost'),
(77416, 'https://ror.org/05mggs005', 'nl', 1, 'https://ror.org/05mggs005 PAMM'),
(77417, 'https://ror.org/02zet7a50', 'en', 1, 'https://ror.org/02zet7a50 The Multiple Births Foundation'),
(77418, 'https://ror.org/02a3mhk13', 'en', 1, 'https://ror.org/02a3mhk13 FORTH Institute of Electronic Structure and Laser Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ηλεκτρονικής Δομής και Λέιζερ'),
(77419, 'https://ror.org/01gzszr18', 'en', 1, 'https://ror.org/01gzszr18 FORTH Institute of Molecular Biology and Biotechnology Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪœĪæĻĪ¹Ī±ĪŗĪ®Ļ‚ Βιολογίας και Βιοτεχνολογίας'),
(77420, 'https://ror.org/02tf48g55', 'en', 1, 'https://ror.org/02tf48g55 FORTH Institute of Computer Science Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ€Ī¹ĻƒĻ„Ī®Ī¼Ī·Ļ‚ Ī„Ļ€ĪæĪ»ĪæĪ³Ī¹ĻƒĻ„ĻŽĪ½'),
(77421, 'https://ror.org/02n2yp822', 'en', 1, 'https://ror.org/02n2yp822 FORTH Institute of Applied and Computational Mathematics Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ†Ī±ĻĪ¼ĪæĻƒĪ¼Ī­Ī½Ļ‰Ī½ και Ī„Ļ€ĪæĪ»ĪæĪ³Ī¹ĻƒĻ„Ī¹ĪŗĻŽĪ½ ĪœĪ±ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĻŽĪ½'),
(77422, 'https://ror.org/00srf2p02', 'en', 1, 'https://ror.org/00srf2p02 FORTH Institute of Mediterranean Studies Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„ĪæĻ… ĪœĪµĻƒĪæĪ³ĪµĪ¹Ī±ĪŗĻŽĪ½ Ī£Ļ€ĪæĻ…Ī“ĻŽĪ½'),
(77423, 'https://ror.org/03e5bsk66', 'en', 1, 'https://ror.org/03e5bsk66 FORTH Institute of Chemical Engineering Sciences Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ Ī§Ī·Ī¼Ī¹ĪŗĻŽĪ½ ĪœĪ·Ļ‡Ī±Ī½Ī¹ĪŗĻŽĪ½'),
(77424, 'https://ror.org/00ve2vg23', 'en', 1, 'https://ror.org/00ve2vg23 FORTH Institute of Petroleum Research Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ Πετρελαίου'),
(77425, 'https://ror.org/05fdghr47', 'en', 1, 'https://ror.org/05fdghr47 "Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼Ī¹Ī±ĪŗĪ­Ļ‚ Ī•ĪŗĪ“ĻŒĻƒĪµĪ¹Ļ‚ ĪšĻĪ®Ļ„Ī·Ļ‚ " Crete University Press'),
(77426, 'https://ror.org/05hp71e29', 'en', 1, 'https://ror.org/05hp71e29 Foundation for Reproductive Medicine'),
(77427, 'https://ror.org/02ddqp560', 'en', 1, 'https://ror.org/02ddqp560 Science and Technology Park of Crete Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĪæĪ½Ī¹ĪŗĻŒ και Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Πάρκο ĪšĻĪ®Ļ„Ī·Ļ‚'),
(77428, 'https://ror.org/01sjwtr21', 'no_lang_code', 1, 'https://ror.org/01sjwtr21 PRAXI Network Δίκτυο Ī Ī”Ī‘ĪžĪ—'),
(77429, 'https://ror.org/04nw4se09', 'en', 1, 'https://ror.org/04nw4se09 Right to Care'),
(77430, 'https://ror.org/02nyezm25', 'de', 1, 'https://ror.org/02nyezm25 Mammazentrum Hamburg'),
(77431, 'https://ror.org/02ffmpe09', 'en', 1, 'https://ror.org/02ffmpe09 Royal Academy of Cambodia įžšįž¶įž‡įž”įžŽįŸ’įžŒįž·įžįŸ’įž™įžŸįž—įž¶įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(77432, 'https://ror.org/00rw77p82', 'en', 1, 'https://ror.org/00rw77p82 Visim Nature Reserve Висимский Š³Š¾ŃŃƒŠ“арственный заповеГник'),
(77433, 'https://ror.org/058xkam71', 'en', 1, 'https://ror.org/058xkam71 FHU Neurovasc'),
(77434, 'https://ror.org/03v275937', 'en', 1, 'https://ror.org/03v275937 Philadelphia Water Department'),
(77435, 'https://ror.org/046h2qc13', 'en', 1, 'https://ror.org/046h2qc13 Kabardino-Balkarski Nature Reserve ŠšŠ°Š±Š°Ń€Š“ŠøŠ½Š¾-Балкарский заповеГник'),
(77436, 'https://ror.org/04q9zc034', 'no_lang_code', 1, 'https://ror.org/04q9zc034 Covenant Research and Clinics (United States)'),
(77437, 'https://ror.org/022zhm372', 'de', 1, 'https://ror.org/022zhm372 Paracelsus Medizinische PrivatuniversitƤt'),
(77438, 'https://ror.org/01kh7ve16', 'en', 1, 'https://ror.org/01kh7ve16 Bristow Pediatrics'),
(77439, 'https://ror.org/02gwsx029', 'en', 1, 'https://ror.org/02gwsx029 Guangdong-Hongkong-Macau Joint Laboratory of Collaborative Innovation for Environmental Quality ē²¤ęøÆę¾³ēŽÆå¢ƒč“Øé‡ååŒåˆ›ę–°č”åˆå®žéŖŒå®¤'),
(77440, 'https://ror.org/01rnsap95', 'no_lang_code', 1, 'https://ror.org/01rnsap95 Fusion Genomics (Canada)'),
(77441, 'https://ror.org/04xj7vk87', 'en', 1, 'https://ror.org/04xj7vk87 SeaWorld San Diego'),
(77442, 'https://ror.org/02w2fbz15', 'en', 1, 'https://ror.org/02w2fbz15 McGill Genome Centre'),
(77443, 'https://ror.org/04mpfkx04', 'en', 1, 'https://ror.org/04mpfkx04 SCQM Foundation'),
(77444, 'https://ror.org/03zgc2711', 'en', 1, 'https://ror.org/03zgc2711 Canossa Private Hospital'),
(77445, 'https://ror.org/03eks5p77', 'en', 1, 'https://ror.org/03eks5p77 Bon Secours Mercy Health'),
(77446, 'https://ror.org/05e2w0w20', 'no_lang_code', 1, 'https://ror.org/05e2w0w20 Middleton Spectral Vision (United States)'),
(77447, 'https://ror.org/04hr13565', 'en', 1, 'https://ror.org/04hr13565 Department of Public Health į€•į€¼į€Šį€ŗį€žį€°į€·į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€¦:į€…į€®į€øį€Œį€¬į€”'),
(77448, 'https://ror.org/05xt5sj74', 'no_lang_code', 1, 'https://ror.org/05xt5sj74 S&B Christ Consulting (United States)'),
(77449, 'https://ror.org/037p60497', 'no_lang_code', 1, 'https://ror.org/037p60497 EstƔtikos (Brazil)'),
(77450, 'https://ror.org/00zc2d847', 'en', 1, 'https://ror.org/00zc2d847 Black Sea Biosphere Reserve'),
(77451, 'https://ror.org/04wxag453', 'en', 1, 'https://ror.org/04wxag453 Unitary Fund'),
(77452, 'https://ror.org/04d048897', 'sv', 1, 'https://ror.org/04d048897 Stockholm IVF'),
(77453, 'https://ror.org/008fdbn61', 'fr', 1, 'https://ror.org/008fdbn61 Institut de CancƩrologie Strasbourg'),
(77454, 'https://ror.org/0051mnz48', 'en', 1, 'https://ror.org/0051mnz48 Khvalynsky National Park ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ парка «Євалынский»'),
(77455, 'https://ror.org/003jt2t26', 'fr', 1, 'https://ror.org/003jt2t26 Centre ArchƩologique de la Grotte Scladina Scladina'),
(77456, 'https://ror.org/00s8cz980', 'en', 1, 'https://ror.org/00s8cz980 Jubilee Clinical Research'),
(77457, 'https://ror.org/02e1w6814', 'en', 1, 'https://ror.org/02e1w6814 LupusChat'),
(77458, 'https://ror.org/05psty780', 'id', 1, 'https://ror.org/05psty780 Pusat Penelitian Arkeologi Nasional'),
(77459, 'https://ror.org/00d89k312', 'no_lang_code', 1, 'https://ror.org/00d89k312 Wearifi (United States)'),
(77460, 'https://ror.org/00g6d1w79', 'en', 1, 'https://ror.org/00g6d1w79 Center for Urban Waters'),
(77461, 'https://ror.org/03cfxrj56', 'en', 1, 'https://ror.org/03cfxrj56 Kerzhinski Nature Reserve ŠšŠµŃ€Š¶ŠµŠ½ŃŠŗŠøŠ¹ заповеГник'),
(77462, 'https://ror.org/02f1h3d14', 'no_lang_code', 1, 'https://ror.org/02f1h3d14 Denssolutions (Netherlands)'),
(77463, 'https://ror.org/036sabf92', 'no_lang_code', 1, 'https://ror.org/036sabf92 Heidelberg Pharma (Germany)'),
(77464, 'https://ror.org/03rgqnc08', 'en', 1, 'https://ror.org/03rgqnc08 Kaniv Nature Reserve ŠšŠ°Š½Ń–Š²ŃŃŒŠŗŠøŠ¹ прироГний заповіГник'),
(77465, 'https://ror.org/02s5m5d51', 'en', 1, 'https://ror.org/02s5m5d51 Biomedical Research and Innovation Institute of Cadiz Instituto de Investigación e Innovación Biomédica de CÔdiz'),
(77466, 'https://ror.org/005bx3y85', 'en', 1, 'https://ror.org/005bx3y85 Elman Retina Group'),
(77467, 'https://ror.org/00fjjyv64', 'en', 1, 'https://ror.org/00fjjyv64 DƩpistage NƩonatal Ontario Newborn Screening Ontario'),
(77468, 'https://ror.org/00wxex667', 'en', 1, 'https://ror.org/00wxex667 Global Fishing Watch'),
(77469, 'https://ror.org/012rtfc41', 'no_lang_code', 1, 'https://ror.org/012rtfc41 Water Technology (Australia)'),
(77470, 'https://ror.org/00n5t8830', 'en', 1, 'https://ror.org/00n5t8830 Noosa Hospital'),
(77471, 'https://ror.org/00h211q58', 'no_lang_code', 1, 'https://ror.org/00h211q58 Intelligify (United Kingdom)'),
(77472, 'https://ror.org/004y4rj95', 'en', 1, 'https://ror.org/004y4rj95 Gordon Center for Medical Imaging'),
(77473, 'https://ror.org/01ge84q84', 'no_lang_code', 1, 'https://ror.org/01ge84q84 Orlovskoye Polesye National Park ŠžŃ€Š»Š¾Š²ŃŠŗŠ¾Šµ Полесье'),
(77474, 'https://ror.org/01nzejr48', 'no_lang_code', 1, 'https://ror.org/01nzejr48 BioBridges (United States)'),
(77475, 'https://ror.org/0232dj695', 'en', 1, 'https://ror.org/0232dj695 Rotterdam Stroke Service'),
(77476, 'https://ror.org/0073w0m97', 'en', 1, 'https://ror.org/0073w0m97 Pasvik Nature Reserve Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник "Пасвик"'),
(77477, 'https://ror.org/053s3ay82', 'no_lang_code', 1, 'https://ror.org/053s3ay82 Febus Optics (France)'),
(77478, 'https://ror.org/028d79m65', 'en', 1, 'https://ror.org/028d79m65 Stolby Nature Reserve Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник ā€œŠ”Ń‚Š¾Š»Š±Ń‹ā€'),
(77479, 'https://ror.org/01mcj6m41', 'en', 1, 'https://ror.org/01mcj6m41 LifeDoc Health'),
(77480, 'https://ror.org/0520fx213', 'no_lang_code', 1, 'https://ror.org/0520fx213 Refuge Biotechnologies (United States)'),
(77481, 'https://ror.org/02gca0r39', 'no_lang_code', 1, 'https://ror.org/02gca0r39 ILF (Switzerland)'),
(77482, 'https://ror.org/05qa08h17', 'en', 1, 'https://ror.org/05qa08h17 Testicular Cancer Commons'),
(77483, 'https://ror.org/02jk0wm04', 'en', 1, 'https://ror.org/02jk0wm04 EUMETNET'),
(77484, 'https://ror.org/03zcr3a74', 'no_lang_code', 1, 'https://ror.org/03zcr3a74 Transition Technologies (Poland)'),
(77485, 'https://ror.org/0580yp869', 'fr', 1, 'https://ror.org/0580yp869 Groupe de Recherche sur le Psoriasis'),
(77486, 'https://ror.org/014x2ky39', 'en', 1, 'https://ror.org/014x2ky39 Whyteman’s Brae Hospital'),
(77487, 'https://ror.org/00dq0yr94', 'no_lang_code', 1, 'https://ror.org/00dq0yr94 Sound Agriculture (United States)'),
(77488, 'https://ror.org/01qt4dq02', 'no_lang_code', 1, 'https://ror.org/01qt4dq02 Bruker (China)'),
(77489, 'https://ror.org/02kx9qd54', 'no_lang_code', 1, 'https://ror.org/02kx9qd54 Veterinary Anaesthesia Services (Switzerland)'),
(77490, 'https://ror.org/002x1sg85', 'es', 1, 'https://ror.org/002x1sg85 Instituto de Investigación Hospital 12 de Octubre Research Institute Hospital 12 de Octubre'),
(77491, 'https://ror.org/05hsbj572', 'en', 1, 'https://ror.org/05hsbj572 Niramaya Healthcare निरामय ą¤¹ą„‡ą¤²ą„ą¤„ą¤•ą„‡ą¤Æą¤°'),
(77492, 'https://ror.org/03dktz122', 'en', 1, 'https://ror.org/03dktz122 Helen Keller International'),
(77493, 'https://ror.org/00eg0bk82', 'en', 1, 'https://ror.org/00eg0bk82 Columbia VA Health Care System'),
(77494, 'https://ror.org/03vk7h897', 'en', 1, 'https://ror.org/03vk7h897 The California Eye Institute'),
(77495, 'https://ror.org/051k25d02', 'no_lang_code', 1, 'https://ror.org/051k25d02 Lava Therapeutics (Netherlands)'),
(77496, 'https://ror.org/046mjnm79', 'en', 1, 'https://ror.org/046mjnm79 Slovak Organization for Space Activities SlovenskƔ OrganizƔcia pre Vesmƭrne Aktivity'),
(77497, 'https://ror.org/05wyfzv25', 'no_lang_code', 1, 'https://ror.org/05wyfzv25 Tissue Dynamics (Israel)'),
(77498, 'https://ror.org/00z8x2k69', 'no_lang_code', 1, 'https://ror.org/00z8x2k69 Pfizer (Switzerland)'),
(77499, 'https://ror.org/0169kb131', 'en', 1, 'https://ror.org/0169kb131 Children’s Mercy Research Institute'),
(77500, 'https://ror.org/00bke8n58', 'en', 1, 'https://ror.org/00bke8n58 Geoscience BC'),
(77501, 'https://ror.org/015n4kv50', 'en', 1, 'https://ror.org/015n4kv50 Adobe Gastroenterology'),
(77502, 'https://ror.org/05p8v7d26', 'no_lang_code', 1, 'https://ror.org/05p8v7d26 Biostatistical Consulting (United States)'),
(77503, 'https://ror.org/03fqvdm62', 'no_lang_code', 1, 'https://ror.org/03fqvdm62 Cipher Gene (China)'),
(77504, 'https://ror.org/05vm0ed18', 'no_lang_code', 1, 'https://ror.org/05vm0ed18 Uber AI (United States)'),
(77505, 'https://ror.org/04qz9jb06', 'en', 1, 'https://ror.org/04qz9jb06 North American Butterfly Association'),
(77506, 'https://ror.org/021xwy741', 'no_lang_code', 1, 'https://ror.org/021xwy741 Clover Biopharmaceuticals (China)'),
(77507, 'https://ror.org/012yyz739', 'no_lang_code', 1, 'https://ror.org/012yyz739 Givaudan (Netherlands)'),
(77508, 'https://ror.org/04b4r9r69', 'en', 1, 'https://ror.org/04b4r9r69 OMERACT Patient Research Partner Network'),
(77509, 'https://ror.org/03v64vs34', 'en', 1, 'https://ror.org/03v64vs34 Epidemic Intelligence Service'),
(77510, 'https://ror.org/01wc0pn13', 'no_lang_code', 1, 'https://ror.org/01wc0pn13 OWL (Spain)'),
(77511, 'https://ror.org/00e76kv63', 'en', 1, 'https://ror.org/00e76kv63 Alliance for International Medical Action'),
(77512, 'https://ror.org/05fxgkw28', 'no_lang_code', 1, 'https://ror.org/05fxgkw28 Dynamita (France)'),
(77513, 'https://ror.org/009r7tw40', 'en', 1, 'https://ror.org/009r7tw40 Cyto Labs'),
(77514, 'https://ror.org/03m0cw265', 'en', 1, 'https://ror.org/03m0cw265 Nizhne-Svirsky State Nature Reserve ŠŠøŠ¶Š½Šµ-Двирский Š³Š¾ŃŃƒŠ“арственный прироГный заповеГник'),
(77515, 'https://ror.org/056sv4492', 'no_lang_code', 1, 'https://ror.org/056sv4492 Volcanic Basin Petroleum Research (Norway)'),
(77516, 'https://ror.org/01a3qdh08', 'no_lang_code', 1, 'https://ror.org/01a3qdh08 Synthego (United States)'),
(77517, 'https://ror.org/0280n9356', 'de', 1, 'https://ror.org/0280n9356 Rheumaliga Schweiz'),
(77518, 'https://ror.org/00e55tr36', 'no_lang_code', 1, 'https://ror.org/00e55tr36 Biortus (China)'),
(77519, 'https://ror.org/05621qy93', 'en', 1, 'https://ror.org/05621qy93 Worldwide Veterinary Service'),
(77520, 'https://ror.org/035myfa14', 'no_lang_code', 1, 'https://ror.org/035myfa14 Fixstars Solutions (United States)'),
(77521, 'https://ror.org/03gg2z496', 'en', 1, 'https://ror.org/03gg2z496 NEWhub'),
(77522, 'https://ror.org/0067vtw10', 'no_lang_code', 1, 'https://ror.org/0067vtw10 Wren Therapeutics (United Kingdom)'),
(77523, 'https://ror.org/04pjv0k50', 'no_lang_code', 1, 'https://ror.org/04pjv0k50 Medpharmgene (Canada)'),
(77524, 'https://ror.org/014tda213', 'es', 1, 'https://ror.org/014tda213 Hospital Dr Arturo OƱativia'),
(77525, 'https://ror.org/00zyhqb45', 'no_lang_code', 1, 'https://ror.org/00zyhqb45 Novametrics (United Kingdom)'),
(77526, 'https://ror.org/034wsnn83', 'en', 1, 'https://ror.org/034wsnn83 Soweto CTC'),
(77527, 'https://ror.org/037b8st11', 'en', 1, 'https://ror.org/037b8st11 The National Databank for Rheumatic Diseases'),
(77528, 'https://ror.org/00yfjxy10', 'en', 1, 'https://ror.org/00yfjxy10 Beit Rivka Geriatric Medical Center ×ž×Ø×›×– רפואי ×’×Ø×™××˜×Ø×™ בית רבקה'),
(77529, 'https://ror.org/04fvmve92', 'no_lang_code', 1, 'https://ror.org/04fvmve92 AlvƩole (France)'),
(77530, 'https://ror.org/03pv0jn66', 'en', 1, 'https://ror.org/03pv0jn66 Institut za Javno Zdravlje Srbije Institute of Public Health of Serbia'),
(77531, 'https://ror.org/00qyd2558', 'en', 1, 'https://ror.org/00qyd2558 Chiba Convention Bureau and International Center å…¬ē›Šč²”å›£ę³•äŗŗ ć”ć°å›½éš›ć‚³ćƒ³ćƒ™ćƒ³ć‚·ćƒ§ćƒ³ćƒ“ćƒ„ćƒ¼ćƒ­ćƒ¼'),
(77532, 'https://ror.org/02tebe473', 'en', 1, 'https://ror.org/02tebe473 Medical Plus'),
(77533, 'https://ror.org/005t89q56', 'en', 1, 'https://ror.org/005t89q56 Allergy Clinic of Tulsa'),
(77534, 'https://ror.org/01z00wd20', 'en', 1, 'https://ror.org/01z00wd20 Victorian Cancer Biobank'),
(77535, 'https://ror.org/026mr5885', 'en', 1, 'https://ror.org/026mr5885 Republican Center for Healthcare Development Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š»Ń‹Ņ› Š“ŠµŠ½ŃŠ°ŃƒŠ»Ń‹Ņ› ŃŠ°Ņ›Ń‚Š°Ńƒ орталығы'),
(77536, 'https://ror.org/050c50s85', 'en', 1, 'https://ror.org/050c50s85 United in Health'),
(77537, 'https://ror.org/056t0kd46', 'no_lang_code', 1, 'https://ror.org/056t0kd46 Sandfire (Australia)'),
(77538, 'https://ror.org/01j4fzm59', 'no_lang_code', 1, 'https://ror.org/01j4fzm59 Kantar Health (Brazil)'),
(77539, 'https://ror.org/04777n328', 'no_lang_code', 1, 'https://ror.org/04777n328 Sahodaran ą®šą®¹ąÆ‹ą®¤ą®°ą®©ąÆ'),
(77540, 'https://ror.org/023vqza20', 'en', 1, 'https://ror.org/023vqza20 Medanta The Medicity'),
(77541, 'https://ror.org/0031sqt67', 'de', 1, 'https://ror.org/0031sqt67 Schmerzmedizin Berlin'),
(77542, 'https://ror.org/03jg1ab83', 'no_lang_code', 1, 'https://ror.org/03jg1ab83 Afflux Consulting (Australia)'),
(77543, 'https://ror.org/002jmzw69', 'no_lang_code', 1, 'https://ror.org/002jmzw69 Oxford Nanoimaging (United Kingdom)'),
(77544, 'https://ror.org/030fs7375', 'en', 1, 'https://ror.org/030fs7375 BreastScreen WA'),
(77545, 'https://ror.org/01tapk317', 'en', 1, 'https://ror.org/01tapk317 Zhuhai Fudan Innovation Research Institute ē ęµ·å¤ę—¦åˆ›ę–°ē ”ē©¶é™¢'),
(77546, 'https://ror.org/03bp6t645', 'it', 1, 'https://ror.org/03bp6t645 Azienda Socio Sanitaria Territoriale Lariana'),
(77547, 'https://ror.org/01cwhph72', 'no_lang_code', 1, 'https://ror.org/01cwhph72 PQ Corporation (Canada)'),
(77548, 'https://ror.org/04s36wq82', 'no_lang_code', 1, 'https://ror.org/04s36wq82 Inatura inatura - Erlebnis Naturschau'),
(77549, 'https://ror.org/05k2kkw49', 'en', 1, 'https://ror.org/05k2kkw49 Department of Education - Division of Bataan'),
(77550, 'https://ror.org/02j136k79', 'no_lang_code', 1, 'https://ror.org/02j136k79 Chifeng Municipal Hospital čµ¤å³°åø‚åŒ»é™¢'),
(77551, 'https://ror.org/04q95ej23', 'en', 1, 'https://ror.org/04q95ej23 Quantum Science Center'),
(77552, 'https://ror.org/013nbmf56', 'no_lang_code', 1, 'https://ror.org/013nbmf56 Invixium (Canada)'),
(77553, 'https://ror.org/00jgbqj86', 'no_lang_code', 1, 'https://ror.org/00jgbqj86 AZTI'),
(77554, 'https://ror.org/01qc45180', 'no_lang_code', 1, 'https://ror.org/01qc45180 USP Technologies (United Kingdom)'),
(77555, 'https://ror.org/03n6h1x35', 'it', 1, 'https://ror.org/03n6h1x35 Associazione Meteo Professionisti'),
(77556, 'https://ror.org/00szq9g79', 'de', 1, 'https://ror.org/00szq9g79 Sonnenhalde (Switzerland)'),
(77557, 'https://ror.org/007fea852', 'en', 1, 'https://ror.org/007fea852 Kostomuksha Nature Reserve ŠšŠ¾ŃŃ‚Š¾Š¼ŃƒŠŗŃˆŃŠŗŠøŠ¹ заповеГник'),
(77558, 'https://ror.org/04qnzk495', 'no_lang_code', 1, 'https://ror.org/04qnzk495 Spital Thurgau (Switzerland)'),
(77559, 'https://ror.org/021ts2b34', 'en', 1, 'https://ror.org/021ts2b34 Brazilian Research in Intensive Care Network Rede Brasileira de Pesquisa em Terapia Intensiva'),
(77560, 'https://ror.org/03bx5cx17', 'en', 1, 'https://ror.org/03bx5cx17 Provincial Government of Sarangani'),
(77561, 'https://ror.org/02hdt9m26', 'en', 1, 'https://ror.org/02hdt9m26 Swiss Data Science Center'),
(77562, 'https://ror.org/03vfryt93', 'en', 1, 'https://ror.org/03vfryt93 State Institute for Drug Control Å tĆ”tny Ćŗstav pre kontrolu liečiv'),
(77563, 'https://ror.org/05b4pnz02', 'no_lang_code', 1, 'https://ror.org/05b4pnz02 Ohana Biosciences (United States)'),
(77564, 'https://ror.org/04aem8s10', 'en', 1, 'https://ror.org/04aem8s10 COVID-19 Genomics UK Consortium'),
(77565, 'https://ror.org/02e6vkn32', 'en', 1, 'https://ror.org/02e6vkn32 Vikram Hospital'),
(77566, 'https://ror.org/052ty1420', 'no_lang_code', 1, 'https://ror.org/052ty1420 Docbot (United States)'),
(77567, 'https://ror.org/0380m5132', 'no_lang_code', 1, 'https://ror.org/0380m5132 Xiamen Tungsten (China)'),
(77568, 'https://ror.org/007rkz355', 'no_lang_code', 1, 'https://ror.org/007rkz355 Open Ephys Production Site (Portugal)'),
(77569, 'https://ror.org/02ah93945', 'no_lang_code', 1, 'https://ror.org/02ah93945 Estonian Environmental Research Center (Estonia)'),
(77570, 'https://ror.org/00ntrnw83', 'en', 1, 'https://ror.org/00ntrnw83 CỄc Y tế Dự phòng General Department of Preventive Medicine'),
(77571, 'https://ror.org/00envj504', 'en', 1, 'https://ror.org/00envj504 Associated Retinal Consultants'),
(77572, 'https://ror.org/055x5vq73', 'pt', 1, 'https://ror.org/055x5vq73 Fundação Hospitalar de Hematologia e Hemoterapia do Amazonas'),
(77573, 'https://ror.org/02p82xj88', 'en', 1, 'https://ror.org/02p82xj88 Astrakhan Biosphere Nature Reserve'),
(77574, 'https://ror.org/02ynw0r73', 'en', 1, 'https://ror.org/02ynw0r73 Primary HealthCare'),
(77575, 'https://ror.org/02y8mb071', 'en', 1, 'https://ror.org/02y8mb071 Sustainable Sciences Institute'),
(77576, 'https://ror.org/02mgbdx19', 'en', 1, 'https://ror.org/02mgbdx19 Vishera Nature Reserve Š’ŠøŃˆŠµŃ€ŃŠŗŠøŠ¹ заповеГник'),
(77577, 'https://ror.org/02c7apg81', 'no_lang_code', 1, 'https://ror.org/02c7apg81 Apexigen (United States)'),
(77578, 'https://ror.org/0275dss38', 'en', 1, 'https://ror.org/0275dss38 Hyderabad Rheumatology Center'),
(77579, 'https://ror.org/01b784253', 'en', 1, 'https://ror.org/01b784253 St Vincent’s Private Hospital Sydney'),
(77580, 'https://ror.org/031ghq268', 'no_lang_code', 1, 'https://ror.org/031ghq268 Color (United States)'),
(77581, 'https://ror.org/02tvzxs09', 'no_lang_code', 1, 'https://ror.org/02tvzxs09 Gryaab (Sweden)'),
(77582, 'https://ror.org/00fgrre84', 'no_lang_code', 1, 'https://ror.org/00fgrre84 Micro Systems Engineering (United States)'),
(77583, 'https://ror.org/000r0q932', 'en', 1, 'https://ror.org/000r0q932 Ministry of Health'),
(77584, 'https://ror.org/01fxrnx65', 'en', 1, 'https://ror.org/01fxrnx65 United Nations Children''s Fund Cameroon'),
(77585, 'https://ror.org/02d29d188', 'en', 1, 'https://ror.org/02d29d188 Durham VA Health Care System'),
(77586, 'https://ror.org/05j351806', 'en', 1, 'https://ror.org/05j351806 State Healthcare Institution "Regional Clinical Oncological Dispensary"'),
(77587, 'https://ror.org/03r6qpe45', 'no_lang_code', 1, 'https://ror.org/03r6qpe45 Emodo (United States)'),
(77588, 'https://ror.org/02dx0nz12', 'en', 1, 'https://ror.org/02dx0nz12 Central Forest Nature Reserve Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Лесной заповеГник'),
(77589, 'https://ror.org/05myb9s25', 'no_lang_code', 1, 'https://ror.org/05myb9s25 Studsvik (Germany)'),
(77590, 'https://ror.org/02nx3te20', 'no_lang_code', 1, 'https://ror.org/02nx3te20 Curonz (New Zealand)'),
(77591, 'https://ror.org/0297j2031', 'en', 1, 'https://ror.org/0297j2031 Park Terrace Care Center'),
(77592, 'https://ror.org/01b0pvj98', 'en', 1, 'https://ror.org/01b0pvj98 St. Anne''s Health Centre'),
(77593, 'https://ror.org/01vknre37', 'en', 1, 'https://ror.org/01vknre37 Department of Ecology and Environment of Hainan Province ęµ·å—ēœē”Ÿę€ēŽÆå¢ƒåŽ…'),
(77594, 'https://ror.org/00zyg0w36', 'fr', 1, 'https://ror.org/00zyg0w36 Ministère de la Santé et de l''Hygiène Publique'),
(77595, 'https://ror.org/01t9bgr30', 'en', 1, 'https://ror.org/01t9bgr30 Institute for Soldier Nanotechnologies'),
(77596, 'https://ror.org/05scvw539', 'en', 1, 'https://ror.org/05scvw539 United States Trade and Development Agency'),
(77597, 'https://ror.org/024ce2263', 'es', 1, 'https://ror.org/024ce2263 National Autonomous University of Nicaragua-León Universidad Nacional Autónoma de Nicaragua-León'),
(77598, 'https://ror.org/023tqc074', 'en', 1, 'https://ror.org/023tqc074 Yanet Health College'),
(77599, 'https://ror.org/02zftm050', 'en', 1, 'https://ror.org/02zftm050 National Institute of Standards المعهد Ų§Ł„Ł‚ŁˆŁ…Ł‰ Ł„Ł„Ł‚ŁŠŲ§Ų³ ŁˆŲ§Ł„Ł…Ų¹Ų§ŁŠŲ±Ų©'),
(77600, 'https://ror.org/01xqjjn94', 'en', 1, 'https://ror.org/01xqjjn94 Software Engineering Institute'),
(77601, 'https://ror.org/02m8g1k56', 'no_lang_code', 1, 'https://ror.org/02m8g1k56 Ion Technology Center (Japan) ć‚¤ć‚Ŗćƒ³ćƒ†ć‚ÆćƒŽć‚»ćƒ³ć‚æćƒ¼'),
(77602, 'https://ror.org/04avnsc24', 'en', 1, 'https://ror.org/04avnsc24 Wildlife Conservation Society Congo'),
(77603, 'https://ror.org/05g5v3686', 'no_lang_code', 1, 'https://ror.org/05g5v3686 Hanjin Heavy Industries (South Korea) ķ•œģ§„ģ¤‘ź³µģ—…'),
(77604, 'https://ror.org/00tr5rr68', 'pt', 1, 'https://ror.org/00tr5rr68 Laboratório DNA Center'),
(77605, 'https://ror.org/02yd50j87', 'en', 1, 'https://ror.org/02yd50j87 Lincoln University College'),
(77606, 'https://ror.org/03v4x1p30', 'no_lang_code', 1, 'https://ror.org/03v4x1p30 Nova Measuring Instruments (United States)'),
(77607, 'https://ror.org/03v0eq295', 'en', 1, 'https://ror.org/03v0eq295 Middle East Liver Disease Center مرکز ŲØŪŒŁ…Ų§Ų±ŪŒŁ‡Ų§ŪŒ کبدی Ų®Ų§ŁˆŲ±Ł…ŪŒŲ§Ł†Ł‡'),
(77608, 'https://ror.org/00fczj128', 'no_lang_code', 1, 'https://ror.org/00fczj128 MoTeC (Australia)'),
(77609, 'https://ror.org/016s36n27', 'no_lang_code', 1, 'https://ror.org/016s36n27 Asia Centre'),
(77610, 'https://ror.org/04ft5hg27', 'en', 1, 'https://ror.org/04ft5hg27 University of Customs and Finance Університет митної справи та фінансів'),
(77611, 'https://ror.org/05wzb4s27', 'en', 1, 'https://ror.org/05wzb4s27 Zhengzhou Institute of Emerging Industrial Technology éƒ‘å·žäø­ē§‘ę–°å…“äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(77612, 'https://ror.org/03v6e0k54', 'en', 1, 'https://ror.org/03v6e0k54 Institute of Information and Computational Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информационных Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… технологий'),
(77613, 'https://ror.org/008971d44', 'en', 1, 'https://ror.org/008971d44 Ibrahim Cardiac Hospital & Research Institute ą¦‡ą¦¬ą§ą¦°ą¦¾ą¦¹ą¦æą¦® ą¦•ą¦¾ą¦°ą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦• হসপিটাল ą¦ą¦Øą§ą¦” ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(77614, 'https://ror.org/051re5m53', 'en', 1, 'https://ror.org/051re5m53 Biomedical Research Foundation'),
(77615, 'https://ror.org/02sd7jn56', 'en', 1, 'https://ror.org/02sd7jn56 Institute of Chemistry of New Materials of the National Academy of Sciences of Belarus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии новых материалов ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(77616, 'https://ror.org/05328vv93', 'en', 1, 'https://ror.org/05328vv93 Centre for Policy Studies'),
(77617, 'https://ror.org/01c1p1v81', 'id', 1, 'https://ror.org/01c1p1v81 Universitas PGRI Semarang'),
(77618, 'https://ror.org/01m3cg403', 'en', 1, 'https://ror.org/01m3cg403 Lysosomal and Rare Disorders Research and Treatment Center'),
(77619, 'https://ror.org/00f06eh80', 'en', 1, 'https://ror.org/00f06eh80 Punjab Medical Center'),
(77620, 'https://ror.org/04jsfy203', 'en', 1, 'https://ror.org/04jsfy203 All-Med'),
(77621, 'https://ror.org/0098syn68', 'de', 1, 'https://ror.org/0098syn68 Rostocker Zentrum zur Erforschung des Demografischen Wandels'),
(77622, 'https://ror.org/040059s22', 'en', 1, 'https://ror.org/040059s22 Oxford Centre for Mission Studies'),
(77623, 'https://ror.org/01tt7fe73', 'en', 1, 'https://ror.org/01tt7fe73 Institute for Diagnosis and Animal Health Institutul de Diagnostic şi Sănătate Animală'),
(77624, 'https://ror.org/038mz4r36', 'en', 1, 'https://ror.org/038mz4r36 Vivekananda Global University'),
(77625, 'https://ror.org/01q6nk123', 'en', 1, 'https://ror.org/01q6nk123 Smart Data Analysis Systems Group'),
(77626, 'https://ror.org/0021gtp06', 'ro', 1, 'https://ror.org/0021gtp06 Institutul de Urgenţă pentru Boli Cardiovasculare "Prof.Dr. C.C. Iliescu"'),
(77627, 'https://ror.org/01vs1wb25', 'en', 1, 'https://ror.org/01vs1wb25 Occupational Cancer Research Centre'),
(77628, 'https://ror.org/01d540m14', 'es', 1, 'https://ror.org/01d540m14 Instituto de Medicina Tropical'),
(77629, 'https://ror.org/02ygfdv70', 'en', 1, 'https://ror.org/02ygfdv70 Fulbright University Vietnam ĐẔi hį»c Fulbright Việt Nam'),
(77630, 'https://ror.org/02ygbbs43', 'en', 1, 'https://ror.org/02ygbbs43 Beijing Municipal Ecological and Environmental Monitoring Center åŒ—äŗ¬åø‚ēŽÆå¢ƒäæęŠ¤ē›‘ęµ‹äø­åæƒ'),
(77631, 'https://ror.org/00ywwcv54', 'en', 1, 'https://ror.org/00ywwcv54 European Forest Institute'),
(77632, 'https://ror.org/01vf0ya40', 'en', 1, 'https://ror.org/01vf0ya40 I.S. Lupinovich Belarus Agricultural Library Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń библиотека им. И. Š”. Š›ŃƒŠæŠøŠ½Š¾Š²ŠøŃ‡Š°'),
(77633, 'https://ror.org/05njdpb60', 'id', 1, 'https://ror.org/05njdpb60 Institut Bisnis dan Teknologi Pelita Indonesia'),
(77634, 'https://ror.org/02phq3304', 'en', 1, 'https://ror.org/02phq3304 National Scientific Agricultural Library of the National Academy of Agrarian Sciences of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° наукова ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ŃŠæŠ¾Š“Š°Ń€ŃŃŒŠŗŠ° бібліотека ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(77635, 'https://ror.org/034dagj58', 'en', 1, 'https://ror.org/034dagj58 Tamil Virtual Academy ą®¤ą®®ą®æą®“ąÆ ą®‡ą®£ąÆˆą®Æą®•ąÆ ą®•ą®²ąÆą®µą®æą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(77636, 'https://ror.org/03r2nz980', 'en', 1, 'https://ror.org/03r2nz980 Heilongjiang University of Technology é»‘é¾™ę±Ÿå·„äøšå­¦é™¢'),
(77637, 'https://ror.org/046g5hb52', 'en', 1, 'https://ror.org/046g5hb52 Andrija Stampar Teaching Institute of Public Health Nastavni Zavod za Javno Zdravstvo "Dr. Andrija Å tampar"'),
(77638, 'https://ror.org/05vzagq31', 'no_lang_code', 1, 'https://ror.org/05vzagq31 Prolepsis Institute Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Προληπτικής Περιβαλλοντικής & Ī•ĻĪ³Ī±ĻƒĪ¹Ī±ĪŗĪ®Ļ‚ Ιατρικής'),
(77639, 'https://ror.org/04yw73836', 'en', 1, 'https://ror.org/04yw73836 Nagpur Institute of Technology'),
(77640, 'https://ror.org/02z64pq54', 'en', 1, 'https://ror.org/02z64pq54 Ankara Spine Center'),
(77641, 'https://ror.org/01zcq6z67', 'en', 1, 'https://ror.org/01zcq6z67 Eastern Finland Laboratory Center ItƤ-Suomen laboratoriokeskuksen liikelaitoskuntayhtymƤ'),
(77642, 'https://ror.org/05gbjgt75', 'en', 1, 'https://ror.org/05gbjgt75 Amhara National Regional State Public Health Institute į‰ įŠ įˆ›įˆ« į‰„įˆ”įˆ«į‹Š įŠ­įˆįˆ‹į‹Š įˆ˜įŠ•įŒįˆµį‰µ į‹Øįˆ•į‰„įˆØį‰°įˆ°į‰„ įŒ¤įŠ“ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(77643, 'https://ror.org/01rpft493', 'es', 1, 'https://ror.org/01rpft493 Laboratorios Ruiz'),
(77644, 'https://ror.org/02fp2pe05', 'en', 1, 'https://ror.org/02fp2pe05 Key Laboratory for High Strength Lightweight Metallic Materials of Shandong Province å±±äøœēœč½»č“Øé«˜å¼ŗé‡‘å±žęę–™ēœēŗ§é‡ē‚¹å®žéŖŒå®¤'),
(77645, 'https://ror.org/03n3dbn70', 'en', 1, 'https://ror.org/03n3dbn70 National Public Health Institute of Liberia'),
(77646, 'https://ror.org/01vbw1f94', 'en', 1, 'https://ror.org/01vbw1f94 Academy of Medical Sciences of Bosnia and Herzegovina'),
(77647, 'https://ror.org/00gyn5p04', 'en', 1, 'https://ror.org/00gyn5p04 Ivan Kozhedub Kharkiv National Air Force University Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŠ¾Š²Ń–Ń‚Ń€ŃŠ½ŠøŃ… сил імені Івана КожеГуба'),
(77648, 'https://ror.org/01wrf3k61', 'en', 1, 'https://ror.org/01wrf3k61 Zhejiang Academy of Social Sciences ęµ™ę±Ÿēœē¤¾ä¼šē§‘å­¦é™¢'),
(77649, 'https://ror.org/02aab7a23', 'en', 1, 'https://ror.org/02aab7a23 Wits University Donald Gordon Medical Centre'),
(77650, 'https://ror.org/00rrrfr24', 'en', 1, 'https://ror.org/00rrrfr24 Hwa Chong Institution ą®¹ąÆą®µą®¾ ą®šą®¾ą®™ąÆ ą®Ŗą®³ąÆą®³ą®æ ę–°åŠ å”åŽä¾Øäø­å­¦'),
(77651, '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 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ ботаники им. Š’. Ф. ŠšŃƒŠæŃ€ŠµŠ²ŠøŃ‡Š° ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(77652, 'https://ror.org/008xr9260', 'de', 1, 'https://ror.org/008xr9260 Institut für Bewusstseins- und Traumforschung'),
(77653, 'https://ror.org/001xs0312', 'en', 1, 'https://ror.org/001xs0312 Indian Institute of Management Udaipur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‰ą¤¦ą¤Æą¤Ŗą„ą¤°'),
(77654, 'https://ror.org/04r3w0y76', 'en', 1, 'https://ror.org/04r3w0y76 Parkview Medical Center'),
(77655, 'https://ror.org/01m75dz08', 'en', 1, 'https://ror.org/01m75dz08 Himalayan Environment Research Institute हिमालय ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤°ą¤£ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(77656, 'https://ror.org/00cqzm681', 'no_lang_code', 1, 'https://ror.org/00cqzm681 MatTek (Slovakia)'),
(77657, 'https://ror.org/016e3ca54', 'en', 1, 'https://ror.org/016e3ca54 Center of Applied Ecology & Sustainability'),
(77658, 'https://ror.org/03f6hbh92', 'en', 1, 'https://ror.org/03f6hbh92 Institute of Natural and Technical Systems'),
(77659, 'https://ror.org/04jnpk588', 'en', 1, 'https://ror.org/04jnpk588 South China Institute of Collaborative Innovation åŽå—ååŒåˆ›ę–°ē ”ē©¶é™¢'),
(77660, 'https://ror.org/03mmkpw24', 'en', 1, 'https://ror.org/03mmkpw24 International Shariʽah Research Academy for Islamic Finance'),
(77661, 'https://ror.org/059fvd392', 'en', 1, 'https://ror.org/059fvd392 Institute of Environmental Economics and Sustainable Development of the National Academy of Sciences of Ukraine Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіки ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń та сталого Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України»'),
(77662, 'https://ror.org/05ctr9t75', 'en', 1, 'https://ror.org/05ctr9t75 Vancouver Spine Surgery Institute'),
(77663, 'https://ror.org/01vvnrn60', 'en', 1, 'https://ror.org/01vvnrn60 Institutul pentru Studierea Problemelor Minorităţilor Naţionale Nemzeti Kisebbségkutató Intézet Romanian Institute For Research on National Minorities'),
(77664, 'https://ror.org/03kss9p24', 'en', 1, 'https://ror.org/03kss9p24 Institut International d''Agriculture Tropicale International Institute of Tropical Agriculture'),
(77665, 'https://ror.org/041w69847', 'en', 1, 'https://ror.org/041w69847 Outcomes Research Consortium'),
(77666, 'https://ror.org/01dvgzr53', 'en', 1, 'https://ror.org/01dvgzr53 Natchaug Hospital'),
(77667, 'https://ror.org/05x56xv16', 'en', 1, 'https://ror.org/05x56xv16 Skin Health Institute'),
(77668, 'https://ror.org/01j6h9w88', 'en', 1, 'https://ror.org/01j6h9w88 Centre for Research in Intensive Care'),
(77669, 'https://ror.org/00fwvs774', 'en', 1, 'https://ror.org/00fwvs774 Dermatology Research and Education Foundation'),
(77670, 'https://ror.org/04zsv0n66', 'en', 1, 'https://ror.org/04zsv0n66 Hospital and Rehabilitation for Disabled Children'),
(77671, 'https://ror.org/02pzj8129', 'en', 1, 'https://ror.org/02pzj8129 St Philip''s Centre'),
(77672, 'https://ror.org/00fen6t20', 'en', 1, 'https://ror.org/00fen6t20 Homeopathy Research Institute'),
(77673, 'https://ror.org/00ac63h31', 'en', 1, 'https://ror.org/00ac63h31 International Institute of Tropical Agriculture المعهد Ų§Ł„ŲÆŁˆŁ„ŁŠ للزراعة Ų§Ł„Ų§Ų³ŲŖŁˆŲ§Ų¦ŁŠŲ©'),
(77674, 'https://ror.org/02x3bf117', 'no_lang_code', 1, 'https://ror.org/02x3bf117 Mediprobe Research (Canada)'),
(77675, 'https://ror.org/00zky6d38', 'en', 1, 'https://ror.org/00zky6d38 Computer Algorithms for Medicine'),
(77676, 'https://ror.org/041jk4k79', 'en', 1, 'https://ror.org/041jk4k79 Academy for Scientific Investigative Training'),
(77677, 'https://ror.org/048es2e39', 'en', 1, 'https://ror.org/048es2e39 International Water Management Institute'),
(77678, 'https://ror.org/01cwrqv73', 'en', 1, 'https://ror.org/01cwrqv73 Minuchin Center for the Family'),
(77679, 'https://ror.org/027951x59', 'en', 1, 'https://ror.org/027951x59 Janbazan Medical and Engineering Research Center Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ł…Ł‡Ł†ŲÆŲ³ŪŒ و Ų¹Ł„ŁˆŁ… پزؓکی جانبازان'),
(77680, 'https://ror.org/05jfz9645', 'en', 1, 'https://ror.org/05jfz9645 Comprehensive Cancer Center Erlangen'),
(77681, 'https://ror.org/00b0m7v78', 'no_lang_code', 1, 'https://ror.org/00b0m7v78 Institute of Reactor Materials (Russia) Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š Š•ŠŠšŠ¢ŠžŠ ŠŠ«Š„ ŠœŠŠ¢Š•Š Š˜ŠŠ›ŠžŠ’'),
(77682, 'https://ror.org/05dxr8975', 'en', 1, 'https://ror.org/05dxr8975 Center for Special Minimally Invasive and Robotic Surgery'),
(77683, 'https://ror.org/03wfx2g43', 'en', 1, 'https://ror.org/03wfx2g43 Central Botanical Garden Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ботанический саГ'),
(77684, 'https://ror.org/00ct41p88', 'en', 1, 'https://ror.org/00ct41p88 The Gottman Institute'),
(77685, 'https://ror.org/0335tbp42', 'en', 1, 'https://ror.org/0335tbp42 Institute of Policy Studies of Sri Lanka'),
(77686, 'https://ror.org/048xw7q50', 'en', 1, 'https://ror.org/048xw7q50 SmartCity.institute'),
(77687, 'https://ror.org/00aggce03', 'en', 1, 'https://ror.org/00aggce03 Indian Institute of Packaging ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ˆą¤•ą„‡ą¤œą¤æą¤‚ą¤— ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(77688, 'https://ror.org/03s20bw89', 'no_lang_code', 1, 'https://ror.org/03s20bw89 Monasterium Laboratory Skin & Hair Research Solutions (Germany)'),
(77689, 'https://ror.org/04nh35860', 'no_lang_code', 1, 'https://ror.org/04nh35860 Velocity Clinical Research (United States)'),
(77690, 'https://ror.org/059r2qd49', 'no_lang_code', 1, 'https://ror.org/059r2qd49 Genecast (China) č‡»å’Œē§‘ęŠ€'),
(77691, 'https://ror.org/01hyb7g80', 'en', 1, 'https://ror.org/01hyb7g80 Urology Cancer Center and GU Research Network'),
(77692, 'https://ror.org/04p5vvn48', 'en', 1, 'https://ror.org/04p5vvn48 Momentum Research'),
(77693, 'https://ror.org/02gck7e73', 'no_lang_code', 1, 'https://ror.org/02gck7e73 Institute for Clinical Pharmacodynamics (United States)'),
(77694, 'https://ror.org/033abd967', 'en', 1, 'https://ror.org/033abd967 Institute of General & Endovascular Neurosurgery'),
(77695, 'https://ror.org/02jqgbr24', 'de', 1, 'https://ror.org/02jqgbr24 Institut für Beschäftigung und Employability'),
(77696, 'https://ror.org/04bqc4a69', 'en', 1, 'https://ror.org/04bqc4a69 Jeonbuk Agricultural Research & Extension Services ģ „ė¼ė¶ė„ė†ģ—…źø°ģˆ ģ›'),
(77697, 'https://ror.org/01j00x585', 'en', 1, 'https://ror.org/01j00x585 Regenerative Sciences Institute'),
(77698, 'https://ror.org/00bjpkw56', 'en', 1, 'https://ror.org/00bjpkw56 Bangladesh Wheat and Maize Research Institute বাংলাদেশ গম ও ą¦­ą§ą¦Ÿą§ą¦Ÿą¦¾ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(77699, 'https://ror.org/05syxk111', 'en', 1, 'https://ror.org/05syxk111 Advocate Heart Institute'),
(77700, 'https://ror.org/04kswek43', 'en', 1, 'https://ror.org/04kswek43 ICAR-Indian Institute of Agricultural Biotechnology भा.ą¤•ą„ƒ.ą¤…ą¤Øą„.प. ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤œą„ˆą¤µą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(77701, 'https://ror.org/04r2x0j90', 'en', 1, 'https://ror.org/04r2x0j90 Middlesex University Dubai Ų¬Ų§Ł…Ų¹Ų© Ł…ŁŠŲÆŁ„Ų³ŁƒŲ³ دبي'),
(77702, 'https://ror.org/04p4gjp18', 'en', 1, 'https://ror.org/04p4gjp18 Center of Excellence on Hazardous Substance Management'),
(77703, 'https://ror.org/02a6g2089', 'en', 1, 'https://ror.org/02a6g2089 Fortune Institute of International Business'),
(77704, 'https://ror.org/041bcjv49', 'en', 1, 'https://ror.org/041bcjv49 Age Institute IkƤinstituutin'),
(77705, 'https://ror.org/00ze7pb24', 'en', 1, 'https://ror.org/00ze7pb24 New England Center for OCD and Anxiety'),
(77706, 'https://ror.org/048knt538', 'pt', 1, 'https://ror.org/048knt538 Centro UniversitƔrio do Distrito Federal'),
(77707, 'https://ror.org/00be10k49', 'en', 1, 'https://ror.org/00be10k49 Moscow Academy of the Investigative Committee of the Russian Federation ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ДлеГственного ŠšŠ¾Š¼ŠøŃ‚ета Российской ФеГерации');
INSERT INTO `rors` VALUES
(77708, 'https://ror.org/02j5me516', 'en', 1, 'https://ror.org/02j5me516 Foundation for Clinical and Applied Cancer Research'),
(77709, 'https://ror.org/04trppz31', 'sv', 1, 'https://ror.org/04trppz31 Spine Center Gƶteborg'),
(77710, 'https://ror.org/046npx426', 'en', 1, 'https://ror.org/046npx426 Federal State Budgetary Institution of Science "Scientific and Technological Center of Unique Instrumentation" of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠŠ°ŃƒŃ‡Š½Š¾-технологический центр уникального ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ Российской акаГемии наук'),
(77711, 'https://ror.org/02khfyc93', 'en', 1, 'https://ror.org/02khfyc93 National Engineering Research Center of Human Stem Cells äŗŗē±»å¹²ē»†čƒžå›½å®¶å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(77712, 'https://ror.org/051yz4204', 'en', 1, 'https://ror.org/051yz4204 Institute of Transport Science and Technology Viện Khoa hį»c vĆ  CĆ“ng nghệ Giao thĆ“ng vįŗ­n tįŗ£i'),
(77713, 'https://ror.org/04gp5j812', 'en', 1, 'https://ror.org/04gp5j812 Materials Research Center'),
(77714, 'https://ror.org/032xa9n69', 'en', 1, 'https://ror.org/032xa9n69 Ukrainian Research Institute of Transport Medicine Украинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицины транспорта'),
(77715, 'https://ror.org/04q5sbq41', 'en', 1, 'https://ror.org/04q5sbq41 Jeffrey Modell Foundation'),
(77716, 'https://ror.org/01z03am77', 'en', 1, 'https://ror.org/01z03am77 Sichuan Provincial Library å››å·ēœå›¾ä¹¦é¦†'),
(77717, 'https://ror.org/038p8px90', 'en', 1, 'https://ror.org/038p8px90 Pain Management Centers Of America'),
(77718, 'https://ror.org/01gce7t65', 'en', 1, 'https://ror.org/01gce7t65 Khazanah Research Institute'),
(77719, 'https://ror.org/05e322h53', 'es', 1, 'https://ror.org/05e322h53 IREC Institut de Recerques Envers la Cultura'),
(77720, 'https://ror.org/056whs452', 'en', 1, 'https://ror.org/056whs452 Institut für Pharmaökonomische Forschung Institute for Pharmaeconomic Research'),
(77721, 'https://ror.org/041vn2102', 'no_lang_code', 1, 'https://ror.org/041vn2102 Cedars-Sinai Smidt Heart Institute'),
(77722, 'https://ror.org/025jqxp42', 'no_lang_code', 1, 'https://ror.org/025jqxp42 Verlab (Bosnia and Herzegovina)'),
(77723, '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'),
(77724, 'https://ror.org/03f754t19', 'en', 1, 'https://ror.org/03f754t19 Gerash University of Medical Sciences'),
(77725, 'https://ror.org/02h8eme80', 'en', 1, 'https://ror.org/02h8eme80 Campbell Collaboration'),
(77726, 'https://ror.org/00e7apb48', 'en', 1, 'https://ror.org/00e7apb48 ASTRO-3D'),
(77727, 'https://ror.org/00jdfsf63', 'en', 1, 'https://ror.org/00jdfsf63 Fundación Biomédica Galicia Sur Galicia Sur Biomedical Foundation'),
(77728, 'https://ror.org/02r2sc792', 'fr', 1, 'https://ror.org/02r2sc792 Laboratoire Recherche Informatique Maisonneuve'),
(77729, 'https://ror.org/00qtxjg46', 'en', 1, 'https://ror.org/00qtxjg46 General Practitioners Research Institute'),
(77730, 'https://ror.org/04vgfdj66', 'no_lang_code', 1, 'https://ror.org/04vgfdj66 EVERSANA (Canada)'),
(77731, 'https://ror.org/02v4mmk55', 'en', 1, 'https://ror.org/02v4mmk55 Indonesia Defense University Universitas Pertahanan Indonesia'),
(77732, 'https://ror.org/0515r0e39', 'de', 1, 'https://ror.org/0515r0e39 Epilepsiezentrum Kleinwachau Gemeinnützige'),
(77733, 'https://ror.org/04x545z07', 'en', 1, 'https://ror.org/04x545z07 New Hampshire NeuroSpine Institute'),
(77734, 'https://ror.org/02das4m93', 'no_lang_code', 1, 'https://ror.org/02das4m93 Tiande (China) å¤©å¾·ē§‘ęŠ€'),
(77735, 'https://ror.org/025fkxt31', 'en', 1, 'https://ror.org/025fkxt31 Migration Institute of Finland Siirtolaisuusinstituutti'),
(77736, 'https://ror.org/03ka66t46', 'en', 1, 'https://ror.org/03ka66t46 Marine Design & Research Institute of China'),
(77737, 'https://ror.org/05b88n930', 'no_lang_code', 1, 'https://ror.org/05b88n930 CISI IngƩnierie (France)'),
(77738, 'https://ror.org/02h2jfy25', 'en', 1, 'https://ror.org/02h2jfy25 Federal State Budgetary Scientific Institution Research Institute of Medical Primatology'),
(77739, 'https://ror.org/03mkfqw37', 'en', 1, 'https://ror.org/03mkfqw37 International Potato Center'),
(77740, 'https://ror.org/02trrjx85', 'en', 1, 'https://ror.org/02trrjx85 Institute of Molecular Pathology and Pathomorphology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ патологии Šø патоморфологии'),
(77741, 'https://ror.org/04wnheq77', 'en', 1, 'https://ror.org/04wnheq77 Institute for Physics'),
(77742, 'https://ror.org/04rpy5t19', 'en', 1, 'https://ror.org/04rpy5t19 African Governance and Development Institute'),
(77743, 'https://ror.org/00pwma409', 'en', 1, 'https://ror.org/00pwma409 Advanced Technologies Application Center'),
(77744, 'https://ror.org/02s8j2573', 'en', 1, 'https://ror.org/02s8j2573 Montavid Termodinamikai Kutatócsoport Montavid Thermodynamic Research Group'),
(77745, 'https://ror.org/011ypgb65', 'en', 1, 'https://ror.org/011ypgb65 Institute for Clinical and Economic Review'),
(77746, 'https://ror.org/01zr1we84', 'en', 1, 'https://ror.org/01zr1we84 Military Academy of the Republic of Belarus Š’Š°ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(77747, 'https://ror.org/01gg2ha52', 'en', 1, 'https://ror.org/01gg2ha52 Institute of Legislation and Legal Information of the Republic of Kazakhstan'),
(77748, 'https://ror.org/047933096', 'no_lang_code', 1, 'https://ror.org/047933096 Health Economics and Outcomes Research (United Kingdom)'),
(77749, 'https://ror.org/0585yvd38', 'en', 1, 'https://ror.org/0585yvd38 Geisinger Neuroscience Institute'),
(77750, 'https://ror.org/0419szn97', 'en', 1, 'https://ror.org/0419szn97 International Centre for Research on the Environment and the Economy'),
(77751, 'https://ror.org/04twsjs66', 'en', 1, 'https://ror.org/04twsjs66 Institute of Biochemistry of Biologically Active Compounds of the National Academy of Sciences of Belarus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии биологически активных соеГинений ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(77752, 'https://ror.org/03v8yrz80', 'en', 1, 'https://ror.org/03v8yrz80 NgĆ¢n hĆ ng NhĆ  nước Việt Nam The State Bank of Vietnam'),
(77753, 'https://ror.org/02jcvm930', 'it', 1, 'https://ror.org/02jcvm930 Centro Universitario Internazionale'),
(77754, 'https://ror.org/040fbda06', 'en', 1, 'https://ror.org/040fbda06 Indian Institute of Public Administration ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤²ą„‹ą¤• ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤øą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(77755, 'https://ror.org/02v9hwv19', 'en', 1, 'https://ror.org/02v9hwv19 Federal State Budgetary Institution of Science Federal Scientific Center "Vladikavkaz Scientific Center of the Russian Academy of Sciences" Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр «ВлаГикавказский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук»'),
(77756, 'https://ror.org/02cw59y30', 'en', 1, 'https://ror.org/02cw59y30 Genomic and Immunotherapy Medical Institute'),
(77757, 'https://ror.org/03h7kjd96', 'no_lang_code', 1, 'https://ror.org/03h7kjd96 Shanghai Centennial Scientific (China) äøŠęµ·ē››ē‰¹å°¼åŒ»čÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(77758, 'https://ror.org/045r6q476', 'en', 1, 'https://ror.org/045r6q476 Nagoya Heart Center åå¤å±‹ćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(77759, 'https://ror.org/00dvtcv48', 'en', 1, 'https://ror.org/00dvtcv48 International Institute of Tropical Agriculture'),
(77760, 'https://ror.org/0117s0n37', 'en', 1, 'https://ror.org/0117s0n37 George & Fay Yee Centre for Healthcare Innovation'),
(77761, 'https://ror.org/013kx8n09', 'en', 1, 'https://ror.org/013kx8n09 Millennium Initiative for Collaborative Research on Bacterial Resistance'),
(77762, 'https://ror.org/05kw3dt68', 'es', 1, 'https://ror.org/05kw3dt68 Universidad Nacional de Concepción'),
(77763, 'https://ror.org/00mcfe977', 'en', 1, 'https://ror.org/00mcfe977 Academy of Family Physicians of India'),
(77764, 'https://ror.org/04tmsfn31', 'en', 1, 'https://ror.org/04tmsfn31 Federal Neurosurgical Center Novosibirsk Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ центр Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(77765, 'https://ror.org/028t97a83', 'no', 1, 'https://ror.org/028t97a83 Unicare'),
(77766, 'https://ror.org/028zgc806', 'en', 1, 'https://ror.org/028zgc806 Isfahan Fertility and Infertility Center مرکز باروری و Ł†Ų§ŲØŲ§Ų±ŁˆŲ±ŪŒ اصفهان'),
(77767, 'https://ror.org/00sesj155', 'en', 1, 'https://ror.org/00sesj155 Wellcome Trust Liverpool Glasgow Centre for Global Health Research'),
(77768, 'https://ror.org/00pnht824', 'en', 1, 'https://ror.org/00pnht824 Institute of Agricultural Economics Belgrade Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за економику пољопривреГе БеограГ'),
(77769, 'https://ror.org/042zsvj11', 'en', 1, 'https://ror.org/042zsvj11 Laboratory Krone'),
(77770, 'https://ror.org/02wymx149', 'en', 1, 'https://ror.org/02wymx149 The Mining, Geological & Metallurgical Insititute of India'),
(77771, 'https://ror.org/016kcza49', 'en', 1, 'https://ror.org/016kcza49 ART Reproductive Center'),
(77772, 'https://ror.org/027de2r94', 'id', 1, 'https://ror.org/027de2r94 Universitas Islam Negeri Raden Intan Lampung'),
(77773, 'https://ror.org/05aj5a120', 'en', 1, 'https://ror.org/05aj5a120 Weston A. Price Foundation'),
(77774, 'https://ror.org/00h9em455', 'en', 1, 'https://ror.org/00h9em455 Toronto Dementia Research Alliance'),
(77775, 'https://ror.org/0292hmy45', 'en', 1, 'https://ror.org/0292hmy45 National Centre for Pharmacoeconomics'),
(77776, 'https://ror.org/05ra8rv47', 'en', 1, 'https://ror.org/05ra8rv47 Multi-Robot Systems Research Group'),
(77777, 'https://ror.org/05drfac92', 'en', 1, 'https://ror.org/05drfac92 BioMed X Institute'),
(77778, 'https://ror.org/05ge59n23', 'en', 1, 'https://ror.org/05ge59n23 Vladivostok Branch of the Russian Customs Academy ВлаГивостокский филиал Российской таможенной акаГемии'),
(77779, 'https://ror.org/02yxh7f90', 'en', 1, 'https://ror.org/02yxh7f90 Institute of International Politics and Economics Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ЗА ŠœŠ•Š‚Š£ŠŠŠ ŠžŠ”ŠŠ£ ŠŸŠžŠ›Š˜Š¢Š˜ŠšŠ£ И ŠŸŠ Š˜Š’Š Š•Š”Š£'),
(77780, 'https://ror.org/0188rvx33', 'en', 1, 'https://ror.org/0188rvx33 Beijing Satellite Navigation Center åŒ—äŗ¬å«ę˜ŸåÆ¼čˆŖäø­åæƒē‰ˆęƒę‰€ęœ‰'),
(77781, 'https://ror.org/00qzjvm58', 'en', 1, 'https://ror.org/00qzjvm58 Centers for Disease Control and Prevention'),
(77782, 'https://ror.org/03pzeh695', 'en', 1, 'https://ror.org/03pzeh695 Collaborative Care Systems Finland'),
(77783, 'https://ror.org/00bw2gb04', 'en', 1, 'https://ror.org/00bw2gb04 Institute of Transportation and Logistic Trisakti'),
(77784, 'https://ror.org/04y2ayk80', 'no_lang_code', 1, 'https://ror.org/04y2ayk80 ASRO (Finland)'),
(77785, 'https://ror.org/04c7j0c48', 'es', 1, 'https://ror.org/04c7j0c48 Instituto Nacional de Electricidad y EnergĆ­as Limpias'),
(77786, 'https://ror.org/016e3th47', 'en', 1, 'https://ror.org/016e3th47 Institute of Genetics and Cytology of the National Academy of Sciences of Belarus Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ генетыкі і цыталогіі'),
(77787, 'https://ror.org/03qcx4p52', 'en', 1, 'https://ror.org/03qcx4p52 David Hide Asthma and Allergy Research Centre'),
(77788, 'https://ror.org/007a14354', 'en', 1, 'https://ror.org/007a14354 Beijing Aerospace Flight Control Center åŒ—äŗ¬čˆŖå¤©é£žč”ŒęŽ§åˆ¶äø­åæƒ'),
(77789, 'https://ror.org/01cbw5x35', 'en', 1, 'https://ror.org/01cbw5x35 Christian Doppler Laboratory for Thermoelectricity'),
(77790, 'https://ror.org/03fg03m71', 'en', 1, 'https://ror.org/03fg03m71 Heartland Cancer Research'),
(77791, 'https://ror.org/00z59w514', 'en', 1, 'https://ror.org/00z59w514 Huawei German Research Center'),
(77792, 'https://ror.org/045z18t19', 'en', 1, 'https://ror.org/045z18t19 Malawi Epidemiology and Intervention Research Unit'),
(77793, 'https://ror.org/009jfs928', 'en', 1, 'https://ror.org/009jfs928 Mapi Research Trust'),
(77794, 'https://ror.org/004ymwd44', 'fr', 1, 'https://ror.org/004ymwd44 Centre Pour le DƩveloppement des Vaccins-Mali'),
(77795, 'https://ror.org/01ez37r05', 'en', 1, 'https://ror.org/01ez37r05 Myanmar Oxford Clinical Research Unit'),
(77796, 'https://ror.org/01w3v1s67', 'en', 1, 'https://ror.org/01w3v1s67 Second Affiliated Hospital of Xinjiang Medical University ę–°ē–†åŒ»ē§‘å¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(77797, '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'),
(77798, 'https://ror.org/04jth1r26', 'en', 1, 'https://ror.org/04jth1r26 Zhejiang University-University of Edinburgh Institute ęµ™ę±Ÿå¤§å­¦ēˆ±äøå ”å¤§å­¦č”åˆå­¦é™¢'),
(77799, 'https://ror.org/04zpbyn04', 'fr', 1, 'https://ror.org/04zpbyn04 Institut National de SantƩ Publique'),
(77800, 'https://ror.org/0363fzx12', 'en', 1, 'https://ror.org/0363fzx12 Academy of Engineering Sciences of Serbia АкаГемија ŠøŠ½Š¶ŠµŃšŠµŃ€ŃŠŗŠøŃ… наука Š”Ń€Š±ŠøŃ˜Šµ'),
(77801, 'https://ror.org/045te9e08', 'en', 1, 'https://ror.org/045te9e08 Lao-Oxford-Mahosot Hospital-Wellcome Trust Research Unit'),
(77802, 'https://ror.org/04dp8y877', 'en', 1, 'https://ror.org/04dp8y877 TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ Giao thĆ“ng Vįŗ­n tįŗ£i University Of Transport Technology'),
(77803, 'https://ror.org/03wnd8976', 'en', 1, 'https://ror.org/03wnd8976 Shanghai Drug Administration äøŠęµ·åø‚čÆå“ē›‘ē£ē®”ē†å±€'),
(77804, 'https://ror.org/014d23c86', 'en', 1, 'https://ror.org/014d23c86 Centre of Registers Vastra Gotaland Registercentrum VƤstra Gƶtaland'),
(77805, 'https://ror.org/045s8h491', 'en', 1, 'https://ror.org/045s8h491 Boston Sports & Shoulder Center'),
(77806, 'https://ror.org/04vav1944', 'en', 1, 'https://ror.org/04vav1944 Yuanmeng Precision Technology Research Institute ę·±åœ³åø‚åœ†ę¢¦ē²¾åÆ†ęŠ€ęœÆē ”ē©¶é™¢'),
(77807, 'https://ror.org/05wfvmd18', 'fr', 1, 'https://ror.org/05wfvmd18 Institut SupƩrieur de Technologie MƩdicale'),
(77808, 'https://ror.org/04g70yg97', 'en', 1, 'https://ror.org/04g70yg97 Institute of Sociology of the National Academy of Sciences of Belarus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ социологии ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(77809, 'https://ror.org/00fer7583', 'en', 1, 'https://ror.org/00fer7583 CARE Fertility'),
(77810, 'https://ror.org/00am3vk94', 'en', 1, 'https://ror.org/00am3vk94 Willis-Knighton Cancer Center'),
(77811, 'https://ror.org/05dg8jj08', 'id', 1, 'https://ror.org/05dg8jj08 Institut Kesehatan Medistra Lubuk Pakam'),
(77812, 'https://ror.org/05ct65x68', 'en', 1, 'https://ror.org/05ct65x68 NextFlex'),
(77813, 'https://ror.org/00bypm595', 'en', 1, 'https://ror.org/00bypm595 Cardiovascular Center Bethanien'),
(77814, 'https://ror.org/00men8398', 'no_lang_code', 1, 'https://ror.org/00men8398 Infant'),
(77815, 'https://ror.org/00hsvaf31', 'en', 1, 'https://ror.org/00hsvaf31 Anesthesiology and Surgical Oncology Research Group'),
(77816, 'https://ror.org/02p49q920', 'en', 1, 'https://ror.org/02p49q920 National Guard Military Academy of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— гварГії України'),
(77817, 'https://ror.org/047h8wb98', 'en', 1, 'https://ror.org/047h8wb98 Centers for Disease Control and Prevention'),
(77818, 'https://ror.org/039q3j825', 'no_lang_code', 1, 'https://ror.org/039q3j825 e-Watchdog'),
(77819, 'https://ror.org/047ravy94', 'en', 1, 'https://ror.org/047ravy94 Universal Academy'),
(77820, 'https://ror.org/04wtvmb30', 'en', 1, 'https://ror.org/04wtvmb30 Levinson Medical Center for Learning Disabilities'),
(77821, 'https://ror.org/04crg4b36', 'de', 1, 'https://ror.org/04crg4b36 Academy for Oral Implantology Akademie für orale Implantologie'),
(77822, 'https://ror.org/031nxkd06', 'en', 1, 'https://ror.org/031nxkd06 Church of Ireland Theological Institute'),
(77823, 'https://ror.org/02qxryv39', 'en', 1, 'https://ror.org/02qxryv39 International Water Management Institute'),
(77824, 'https://ror.org/01shdkn71', 'en', 1, 'https://ror.org/01shdkn71 Federal Scientific Center for Biological Systems and Agricultural Technologies of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр биологических систем Šø агротехнологий Российской акаГемии наук»'),
(77825, 'https://ror.org/00wkwdc38', 'fr', 1, 'https://ror.org/00wkwdc38 Institut de SantĆ© et de SĆ©curitĆ© au Travail معهد الصحة و السلامة Ų§Ł„Ł…Ł‡Ł†ŁŠŲ© ŲØŲŖŁˆŁ†Ų³'),
(77826, 'https://ror.org/03y0dsd75', 'no', 1, 'https://ror.org/03y0dsd75 CatoSenteret'),
(77827, 'https://ror.org/0494d5694', 'de', 1, 'https://ror.org/0494d5694 Neurologisches Rehabilitationszentrum Quellenhof Bad Wildbad'),
(77828, 'https://ror.org/01v67yq30', 'en', 1, 'https://ror.org/01v67yq30 Nephrology Center of Maryland'),
(77829, 'https://ror.org/04ejadd69', 'en', 1, 'https://ror.org/04ejadd69 Hagyard Equine Medical Institute'),
(77830, 'https://ror.org/049nx2j30', 'en', 1, 'https://ror.org/049nx2j30 AMPATH'),
(77831, 'https://ror.org/04y5vcf04', 'no_lang_code', 1, 'https://ror.org/04y5vcf04 MantraCare'),
(77832, 'https://ror.org/01fhm1y42', 'en', 1, 'https://ror.org/01fhm1y42 Johns Hopkins Center for Health Security'),
(77833, 'https://ror.org/03a6s3x06', 'en', 1, 'https://ror.org/03a6s3x06 Biofuel Research Team'),
(77834, 'https://ror.org/011pmrv14', 'en', 1, 'https://ror.org/011pmrv14 William Angliss Institute'),
(77835, 'https://ror.org/016fr7d87', 'en', 1, 'https://ror.org/016fr7d87 The Institute of History of the National Academy of Sciences of Belarus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(77836, 'https://ror.org/03ka58c58', 'id', 1, 'https://ror.org/03ka58c58 Universitas PGRI Yogyakarta'),
(77837, 'https://ror.org/0447jv934', 'es', 1, 'https://ror.org/0447jv934 Instituto de FilosofĆ­a y Ciencias de la Complejidad'),
(77838, 'https://ror.org/05mgnvf25', 'en', 1, 'https://ror.org/05mgnvf25 Centro de Investigación para la Gestión Integrada del Riesgo de Desastres Research Center for Integrated Disaster Risk Management'),
(77839, 'https://ror.org/02jkmyz31', 'en', 1, 'https://ror.org/02jkmyz31 Sickle Cell Institute Chhattisgarh, Raipur सिकल ą¤øą„‡ą¤² ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼, ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(77840, 'https://ror.org/029tp8j70', 'en', 1, 'https://ror.org/029tp8j70 Universitas Darussalam Gontor University of Darussalam Gontor'),
(77841, 'https://ror.org/043pgx245', 'en', 1, 'https://ror.org/043pgx245 National Institute of Nuclear Medicine & Allied Sciences ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦Øą¦æą¦‰ą¦•ą§ą¦²ą¦æą¦Æą¦¼ą¦¾ą¦° মেঔিসিন ą¦ą¦Øą§ą¦” ą¦…ą§ą¦Æą¦¾ą¦²ą¦¾ą¦Æą¦¼ą§‡ą¦” ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦øą§‡ą¦ø'),
(77842, 'https://ror.org/01g48s022', 'en', 1, 'https://ror.org/01g48s022 IT Step University Вищий Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ заклаГ'),
(77843, 'https://ror.org/02szhdk88', 'en', 1, 'https://ror.org/02szhdk88 Kazakh University Ways of Communications'),
(77844, 'https://ror.org/01j4ba358', 'en', 1, 'https://ror.org/01j4ba358 Lahore Garrison University Ł„Ų§ŪŁˆŲ± ŚÆŪŒŲ±ŪŒŚ˜Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒā€Ž'),
(77845, 'https://ror.org/00qw43163', 'no_lang_code', 1, 'https://ror.org/00qw43163 Applied Research (United States)'),
(77846, 'https://ror.org/03tv5t613', 'de', 1, 'https://ror.org/03tv5t613 Institut für Managementkompetenz'),
(77847, 'https://ror.org/00bb9ch64', 'en', 1, 'https://ror.org/00bb9ch64 Indian Institute of Information Technology Guwahati ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€'),
(77848, 'https://ror.org/04r5yzj24', 'no_lang_code', 1, 'https://ror.org/04r5yzj24 Professor Wühr und Simmel Gesundheits MANAGEMENT Systeme (Germany)'),
(77849, 'https://ror.org/05vazzh87', 'pt', 1, 'https://ror.org/05vazzh87 Centro de Reprodução Humana Prof. Franco Junior'),
(77850, 'https://ror.org/012zjgq34', 'en', 1, 'https://ror.org/012zjgq34 Korea Institute for Animal Products Quality Evaluation ģ¶•ģ‚°ė¬¼ķ’ˆģ§ˆķ‰ź°€ģ›'),
(77851, 'https://ror.org/05p5p2029', 'en', 1, 'https://ror.org/05p5p2029 California Perinatal Quality Care Collaborative'),
(77852, 'https://ror.org/0461kck49', 'no_lang_code', 1, 'https://ror.org/0461kck49 ABB (India)'),
(77853, 'https://ror.org/016md1z42', 'en', 1, 'https://ror.org/016md1z42 Samara Law Institute of the Federal Penitentiary Service of Russia Š”ŠŠœŠŠ Š”ŠšŠ˜Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š”Š˜Š Š ŠžŠ”Š”Š˜Š˜'),
(77854, 'https://ror.org/00cgnj660', 'en', 1, 'https://ror.org/00cgnj660 Ted Rogers Centre for Heart Research'),
(77855, 'https://ror.org/02wn55517', 'en', 1, 'https://ror.org/02wn55517 African Conservation Centre'),
(77856, 'https://ror.org/050ya8p70', 'en', 1, 'https://ror.org/050ya8p70 Institute of Professional Accountants of Russia Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… Š±ŃƒŃ…Š³Š°Š»Ń‚ŠµŃ€Š¾Š² Šø Š°ŃƒŠ“ŠøŃ‚Š¾Ń€Š¾Š² России'),
(77857, 'https://ror.org/00ydnew86', 'en', 1, 'https://ror.org/00ydnew86 SKA Telescope, Australia'),
(77858, 'https://ror.org/028mpsh75', 'en', 1, 'https://ror.org/028mpsh75 Aga Khan Development Network'),
(77859, 'https://ror.org/05w3wze89', 'it', 1, 'https://ror.org/05w3wze89 Centro di Terapia Metacognitiva Interpersonale'),
(77860, 'https://ror.org/04jcdfd62', 'no_lang_code', 1, 'https://ror.org/04jcdfd62 HPO Center (Netherlands)'),
(77861, 'https://ror.org/04ec6rc19', 'en', 1, 'https://ror.org/04ec6rc19 African Institute for Development Policy'),
(77862, 'https://ror.org/048mjnv22', 'en', 1, 'https://ror.org/048mjnv22 Beijing Research Center for Agricultural and Standards and Testing åŒ—äŗ¬å†œäøšč“Øé‡ę ‡å‡†äøŽę£€ęµ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(77863, 'https://ror.org/058wvcm81', 'en', 1, 'https://ror.org/058wvcm81 Bhagwan Mahaveer Jain Hospital'),
(77864, 'https://ror.org/010b90792', 'en', 1, 'https://ror.org/010b90792 Samara Federal Research Scientific Center Дамарский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук'),
(77865, 'https://ror.org/01svgpe52', 'en', 1, 'https://ror.org/01svgpe52 Pain in Motion'),
(77866, '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" Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ охорони зГоров''я Гітей та піГлітків ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України"'),
(77867, 'https://ror.org/02wc05d26', 'en', 1, 'https://ror.org/02wc05d26 Health City Institute'),
(77868, '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 Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Š·Š±Ń€Š¾Ń”Š½Š½Ń та Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾Ń— техніки Збройних Дил України'),
(77869, 'https://ror.org/03ndm5988', 'en', 1, 'https://ror.org/03ndm5988 The Institution of Engineers Malaysia'),
(77870, 'https://ror.org/02exxtn84', 'en', 1, 'https://ror.org/02exxtn84 Amity University Ų¬Ų§Ł…Ų¹Ų© Ų£Ł…ŁŠŲŖŁŠ'),
(77871, 'https://ror.org/02fz2r438', 'pt', 1, 'https://ror.org/02fz2r438 Hospital UniversitƔrio Cajuru'),
(77872, 'https://ror.org/009eea568', 'en', 1, 'https://ror.org/009eea568 National Institution for Finance and Development å›½å®¶é‡‘čžäøŽå‘å±•å®žéŖŒå®¤'),
(77873, 'https://ror.org/04hna5g63', 'en', 1, 'https://ror.org/04hna5g63 Federal State Budgetary Institution "Federal Center For Cardiovascular Surgery" Ministry of Health of The Russian Federation Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠžŠ• Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠžŠ• Š‘Š®Š”Š–Š•Š¢ŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• "Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠ«Š™ Š¦Š•ŠŠ¢Š  Š”Š•Š Š”Š•Š§ŠŠž-Š”ŠžŠ”Š£Š”Š˜Š”Š¢ŠžŠ™ Š„Š˜Š Š£Š Š“Š˜Š˜" ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š—Š”Š ŠŠ’ŠžŠžŠ„Š ŠŠŠ•ŠŠ˜ŠÆ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(77874, 'https://ror.org/00dyhkz14', 'no_lang_code', 1, 'https://ror.org/00dyhkz14 Istanbul Retina Institute (Turkey)'),
(77875, 'https://ror.org/02ba9p180', 'en', 1, 'https://ror.org/02ba9p180 Palau International Coral Reef Center'),
(77876, 'https://ror.org/01ragyh24', 'en', 1, 'https://ror.org/01ragyh24 Dazhou Academy of Agricultural Sciences'),
(77877, 'https://ror.org/01pwba224', 'en', 1, 'https://ror.org/01pwba224 Baikal Research Centre'),
(77878, 'https://ror.org/05jx29z89', 'en', 1, 'https://ror.org/05jx29z89 London Centre for Neglected Tropical Disease Research'),
(77879, 'https://ror.org/02h1mqb03', 'en', 1, 'https://ror.org/02h1mqb03 Kazakh Institute of Oncology and Radiology ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ онкологии Šø раГиологии'),
(77880, 'https://ror.org/030ypay32', 'en', 1, 'https://ror.org/030ypay32 Middlesex University'),
(77881, 'https://ror.org/01j5s9s08', 'en', 1, 'https://ror.org/01j5s9s08 Austrian Institute for Sports Medicine'),
(77882, 'https://ror.org/02r383j45', 'en', 1, 'https://ror.org/02r383j45 Punjab Remote Sensing Centre'),
(77883, 'https://ror.org/02bw2gt68', 'no_lang_code', 1, 'https://ror.org/02bw2gt68 BioClinicum (Russia)'),
(77884, 'https://ror.org/054vdfx15', 'no_lang_code', 1, 'https://ror.org/054vdfx15 IDEXX Laboratories (Germany)'),
(77885, 'https://ror.org/04mjev045', 'en', 1, 'https://ror.org/04mjev045 Department of Marine and Coastal Resources ąøąø£ąø”ąø—ąø£ąø±ąøžąø¢ąø²ąøąø£ąø—ąø²ąø‡ąø—ąø°ą¹€ąø„ą¹ąø„ąø°ąøŠąø²ąø¢ąøąø±ą¹ˆąø‡'),
(77886, 'https://ror.org/03nk1j814', 'en', 1, 'https://ror.org/03nk1j814 Ventura County Medical Center'),
(77887, 'https://ror.org/03jgpyv48', 'no_lang_code', 1, 'https://ror.org/03jgpyv48 UZR (Germany)'),
(77888, 'https://ror.org/05qjw7v53', 'en', 1, 'https://ror.org/05qjw7v53 Pervasive Artificial Intelligence Research Labs äŗŗå·„ę™ŗę…§ę™®é©ē ”ē©¶äø­åæƒ'),
(77889, 'https://ror.org/033d86250', 'no_lang_code', 1, 'https://ror.org/033d86250 Therachem Research Medilab (India)'),
(77890, 'https://ror.org/03w03n990', 'en', 1, 'https://ror.org/03w03n990 Centre for Disability Prevention and Rehabilitation'),
(77891, 'https://ror.org/00e8gtn74', 'en', 1, 'https://ror.org/00e8gtn74 Evolve Restorative Center'),
(77892, 'https://ror.org/03114jr32', 'en', 1, 'https://ror.org/03114jr32 Sleep Comprehensive Care Clinic Yoyogi ē”ēœ ē·åˆć‚±ć‚¢ć‚ÆćƒŖćƒ‹ćƒƒć‚Æä»£ć€…ęœØćÆ'),
(77893, 'https://ror.org/00156kt95', 'en', 1, 'https://ror.org/00156kt95 Australian General Practice Accreditation Limited'),
(77894, 'https://ror.org/01stwpk76', 'en', 1, 'https://ror.org/01stwpk76 Mallacoota Medical Centre'),
(77895, 'https://ror.org/051an6p98', 'no_lang_code', 1, 'https://ror.org/051an6p98 Samsung (Russia)'),
(77896, 'https://ror.org/036vn8q40', 'pt', 1, 'https://ror.org/036vn8q40 Centro De Medicina VeterinƔria Anjos De Assis'),
(77897, 'https://ror.org/00ns93f55', 'en', 1, 'https://ror.org/00ns93f55 Erwin L. Hahn Institute for Magnetic Resonance Imaging'),
(77898, 'https://ror.org/0129hgq75', 'en', 1, 'https://ror.org/0129hgq75 Danesh-e-Tandorosti Iranian Institute of Higher Health'),
(77899, 'https://ror.org/0327c2165', 'en', 1, 'https://ror.org/0327c2165 Institute of Radiobiology of NAS of Belarus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиобиологии ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(77900, 'https://ror.org/0026pjn75', 'en', 1, 'https://ror.org/0026pjn75 Amosov National Institute of Cardiovascular Surgery'),
(77901, 'https://ror.org/0426xvw20', 'en', 1, 'https://ror.org/0426xvw20 Proton Collaborative Group'),
(77902, 'https://ror.org/02pfaex92', 'en', 1, 'https://ror.org/02pfaex92 Orthopaedic Research Group'),
(77903, 'https://ror.org/0568kxy29', 'pt', 1, 'https://ror.org/0568kxy29 UniBrasil Centro UniversitƔrio'),
(77904, 'https://ror.org/05cam4g78', 'en', 1, 'https://ror.org/05cam4g78 Institut International d''Agriculture Tropicale International Institute of Tropical Agriculture'),
(77905, 'https://ror.org/04c8h1e65', 'en', 1, 'https://ror.org/04c8h1e65 Cereneo'),
(77906, 'https://ror.org/01qg9v093', 'en', 1, 'https://ror.org/01qg9v093 Mangalore Institute of Oncology ಮಂಗಳೂರು ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²Øą³ą²•ą²¾ą²²ą²œą²æ'),
(77907, 'https://ror.org/00csayb94', 'en', 1, 'https://ror.org/00csayb94 Dallas Plastic Surgery Institute'),
(77908, 'https://ror.org/05b39cf56', 'en', 1, 'https://ror.org/05b39cf56 Africa Academy for Public Health'),
(77909, 'https://ror.org/00vbdjc22', 'en', 1, 'https://ror.org/00vbdjc22 Institute of Physiology National Academy of Sciences of Belarus Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š˜Š—Š˜ŠžŠ›ŠžŠ“Š˜Š˜ ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠžŠ™ ŠŠšŠŠ”Š•ŠœŠ˜Š˜ ŠŠŠ£Šš Š‘Š•Š›ŠŠ Š£Š”Š˜'),
(77910, 'https://ror.org/05wctbc12', 'en', 1, 'https://ror.org/05wctbc12 Chemical Genomics Centre Zentrum für Chemische Genomik'),
(77911, 'https://ror.org/01ytd2n62', 'no_lang_code', 1, 'https://ror.org/01ytd2n62 California Institute of Behavioral Neurosciences and Psychology (United States)'),
(77912, 'https://ror.org/030qbr085', 'en', 1, 'https://ror.org/030qbr085 Shanghai Key Laboratory of Trustworthy Computing äøŠęµ·åø‚é«˜åÆäæ”č®”ē®—é‡ē‚¹å®žéŖŒå®¤'),
(77913, 'https://ror.org/03kx37d46', 'en', 1, 'https://ror.org/03kx37d46 Latvian State Forest Research Institute "Silava" Latvijas Valsts mežzinātnes institūts "Silava"'),
(77914, 'https://ror.org/05efnac71', 'en', 1, 'https://ror.org/05efnac71 King Abdullah City for Atomic and Renewable Energy Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ عبدالله للطاقة Ų§Ł„Ų°Ų±ŁŠŲ© ŁˆŲ§Ł„Ł…ŲŖŲ¬ŲÆŲÆŲ©'),
(77915, 'https://ror.org/01qhy6f74', 'es', 1, 'https://ror.org/01qhy6f74 Red de Investigación en Actividades Preventivas y Promoción de la Salud'),
(77916, 'https://ror.org/02tvjer66', 'en', 1, 'https://ror.org/02tvjer66 National Quality Inspection and Testing Center for Surveying and Mapping Products å›½å®¶ęµ‹ē»˜äŗ§å“č“Øé‡ę£€éŖŒęµ‹čÆ•äø­åæƒ'),
(77917, 'https://ror.org/02yerkk86', 'en', 1, 'https://ror.org/02yerkk86 Afagh Higher Education Institute مؤسسه Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ آفاق'),
(77918, 'https://ror.org/05d8bee68', 'en', 1, 'https://ror.org/05d8bee68 Global Health Literacy Academy'),
(77919, 'https://ror.org/01x1qyv30', 'en', 1, 'https://ror.org/01x1qyv30 Istituto Tethys ONLUS Tethys Research Institute'),
(77920, 'https://ror.org/04mwmyd62', 'en', 1, 'https://ror.org/04mwmyd62 Global Policy Institute'),
(77921, 'https://ror.org/05e21fw44', 'en', 1, 'https://ror.org/05e21fw44 National University of Technology'),
(77922, 'https://ror.org/03dgmx930', 'en', 1, 'https://ror.org/03dgmx930 Biofuel Research Team'),
(77923, 'https://ror.org/01vxqsk45', 'es', 1, 'https://ror.org/01vxqsk45 INDCRAN'),
(77924, 'https://ror.org/052f2eb74', 'en', 1, 'https://ror.org/052f2eb74 Łukasiewicz Research Network - Institute of Industrial Organic Chemistry, Branch Pszczyna'),
(77925, 'https://ror.org/02b8cgg17', 'en', 1, 'https://ror.org/02b8cgg17 Eternal Hospital'),
(77926, 'https://ror.org/04rgjq668', 'no_lang_code', 1, 'https://ror.org/04rgjq668 National Center for Advanced Packaging (China)'),
(77927, 'https://ror.org/04ys9d360', 'fr', 1, 'https://ror.org/04ys9d360 Centre Africain de Recherche en EpidƩmiologie et en SantƩ Publique'),
(77928, 'https://ror.org/03rppfx49', 'no_lang_code', 1, 'https://ror.org/03rppfx49 HCG Cancer Centre'),
(77929, 'https://ror.org/03dghjn81', 'en', 1, 'https://ror.org/03dghjn81 Orthopaedic Center of New Jersey'),
(77930, 'https://ror.org/04bjzcz61', 'en', 1, 'https://ror.org/04bjzcz61 Shandong Provincial Key Laboratory of Renewable Energy Building Application Technology å±±äøœēœåÆå†ē”Ÿčƒ½ęŗå»ŗē­‘åŗ”ē”ØęŠ€ęœÆé‡ē‚¹å®žéŖŒå®¤'),
(77931, 'https://ror.org/047wscg41', 'en', 1, 'https://ror.org/047wscg41 Institute for Animal Husbandry'),
(77932, 'https://ror.org/02hd7j845', 'en', 1, 'https://ror.org/02hd7j845 Institute of Forage Crops Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ по Ń„ŃƒŃ€Š°Š¶Š½ŠøŃ‚Šµ ŠŗŃƒŠ»Ń‚ŃƒŃ€Šø'),
(77933, 'https://ror.org/03rrkbt66', 'es', 1, 'https://ror.org/03rrkbt66 Instituto de Investigación Geológico y Energético'),
(77934, 'https://ror.org/05asga947', 'en', 1, 'https://ror.org/05asga947 Health and Human Development (2HD) Research Network'),
(77935, 'https://ror.org/039vbzh95', 'en', 1, 'https://ror.org/039vbzh95 Shri Lakshmi Clinic & Scan Centre'),
(77936, 'https://ror.org/02623eb90', 'en', 1, 'https://ror.org/02623eb90 Astrogeology Science Center'),
(77937, 'https://ror.org/01669gb09', 'en', 1, 'https://ror.org/01669gb09 I.Krypiakevych Institute of Ukrainian Studies National Academy of Sciences of Ukraine І.ŠšŃ€ŠøŠæā€™ŃŠŗŠµŠ²ŠøŃ‡Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(77938, 'https://ror.org/0507fk326', 'en', 1, 'https://ror.org/0507fk326 MTA-SZTE Research Group on Artificial Intelligence'),
(77939, 'https://ror.org/045pvax67', 'de', 1, 'https://ror.org/045pvax67 Zentrum für Pränataldiagnostik'),
(77940, 'https://ror.org/00e2m4m53', 'en', 1, 'https://ror.org/00e2m4m53 Individual Development and Adaptive Education'),
(77941, 'https://ror.org/05gmhvw49', 'en', 1, 'https://ror.org/05gmhvw49 Nepalese Army Institute of Health Services ą¤Øą„‡ą¤Ŗą¤¾ą¤²ą„€ ą¤øą„‡ą¤Øą¤¾ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(77942, 'https://ror.org/01exahc70', 'en', 1, 'https://ror.org/01exahc70 Security Service of Ukraine Длужба безпеки України'),
(77943, 'https://ror.org/04egehb02', 'en', 1, 'https://ror.org/04egehb02 European Corporate Governance Institute'),
(77944, 'https://ror.org/000neg726', 'en', 1, 'https://ror.org/000neg726 Gillies McIndoe Research Institute'),
(77945, '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'),
(77946, 'https://ror.org/04545k330', 'en', 1, 'https://ror.org/04545k330 Federal Research Center of Fundamental and Translational Medicine Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ Šø Š¢Ń€Š°Š½ŃŠ»ŃŃ†ŠøŠ¾Š½Š½Š¾Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½Ń‹'),
(77947, 'https://ror.org/00kqtef53', 'en', 1, 'https://ror.org/00kqtef53 Beijing Hypertension Prevention Association åŒ—äŗ¬é«˜č”€åŽ‹é˜²ę²»åä¼š'),
(77948, 'https://ror.org/04j270809', 'en', 1, 'https://ror.org/04j270809 Thomas Jefferson Foundation'),
(77949, 'https://ror.org/04vbskr07', 'en', 1, 'https://ror.org/04vbskr07 Geos Institute'),
(77950, 'https://ror.org/02hcx4k66', 'es', 1, 'https://ror.org/02hcx4k66 Kavilando'),
(77951, 'https://ror.org/04a3ynd76', 'no_lang_code', 1, 'https://ror.org/04a3ynd76 Donetsk Botanical Garden Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ ботанічний саГ'),
(77952, 'https://ror.org/00zb80875', 'en', 1, 'https://ror.org/00zb80875 National Heart Institute ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤¹ą¤¾ą¤°ą„ą¤Ÿ ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ'),
(77953, 'https://ror.org/030xykx52', 'en', 1, 'https://ror.org/030xykx52 The Northern Ireland Cancer Centre'),
(77954, 'https://ror.org/04btxg914', 'en', 1, 'https://ror.org/04btxg914 Bioinformatics Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биоинформатики'),
(77955, 'https://ror.org/01rt0fh70', 'en', 1, 'https://ror.org/01rt0fh70 Center for International Forestry Research'),
(77956, 'https://ror.org/014nwb521', 'en', 1, 'https://ror.org/014nwb521 Sydney Sexual Health Centre'),
(77957, 'https://ror.org/02rv5nr81', 'en', 1, 'https://ror.org/02rv5nr81 Canada East Spine Centre'),
(77958, 'https://ror.org/02dtmmn34', 'en', 1, 'https://ror.org/02dtmmn34 Cambodia-Oxford Medical Research Unit'),
(77959, 'https://ror.org/00qh9dx40', 'en', 1, 'https://ror.org/00qh9dx40 Shoklo Malaria Research Unit'),
(77960, 'https://ror.org/05g0pkp12', 'es', 1, 'https://ror.org/05g0pkp12 Universidad Nacional De CaaguazĆŗ'),
(77961, 'https://ror.org/03mdbpg08', 'no_lang_code', 1, 'https://ror.org/03mdbpg08 Wren Laboratories (United States)'),
(77962, 'https://ror.org/0089es913', 'en', 1, 'https://ror.org/0089es913 The Julian Centre'),
(77963, 'https://ror.org/001t9rv66', 'en', 1, 'https://ror.org/001t9rv66 Biblijski Institut The Biblical Institute'),
(77964, 'https://ror.org/01tqdyq91', 'en', 1, 'https://ror.org/01tqdyq91 Institute of General and Inorganic Chemistry of National Academy of Sciences of Belarus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей Šø неорганической химии ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(77965, 'https://ror.org/02gnydh35', 'pt', 1, 'https://ror.org/02gnydh35 Instituto de Patologia da Coluna'),
(77966, 'https://ror.org/00brjxm92', 'fr', 1, 'https://ror.org/00brjxm92 Institut Salah-AzaĆÆz'),
(77967, 'https://ror.org/019qyzj84', 'en', 1, 'https://ror.org/019qyzj84 State Museum of Natural History of the National Academy of Sciences of Ukraine Державний прироГознавчий музей ŠŠŠ України'),
(77968, 'https://ror.org/03rjyvk34', 'no_lang_code', 1, 'https://ror.org/03rjyvk34 MSIGHT Technologies (China)'),
(77969, 'https://ror.org/01tapgj66', 'en', 1, 'https://ror.org/01tapgj66 International Crops Research Institute for the Semi-Arid Tropics'),
(77970, 'https://ror.org/04vg1gh12', 'en', 1, 'https://ror.org/04vg1gh12 Kulkarni reconstructive Urology Center'),
(77971, 'https://ror.org/017g28623', 'no_lang_code', 1, 'https://ror.org/017g28623 Fistulacure'),
(77972, 'https://ror.org/00s1sz824', 'en', 1, 'https://ror.org/00s1sz824 Beijing Institute of Big Data Research åŒ—äŗ¬å¤§ę•°ę®ē ”ē©¶é™¢'),
(77973, 'https://ror.org/05m962h09', 'en', 1, 'https://ror.org/05m962h09 Health & Safety in Sports'),
(77974, 'https://ror.org/031333553', 'en', 1, 'https://ror.org/031333553 Voronezh Institute of the Federal Penitentiary Service of Russia Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¤Š”Š˜Š России'),
(77975, 'https://ror.org/01fjkp854', 'en', 1, 'https://ror.org/01fjkp854 International University of Beirut'),
(77976, 'https://ror.org/05jzgzx91', 'en', 1, 'https://ror.org/05jzgzx91 University of Glasgow Singapore'),
(77977, 'https://ror.org/00vp5ry21', 'en', 1, 'https://ror.org/00vp5ry21 Iranshahr University دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų§ŪŒŲ±Ų§Ł†Ų“Ł‡Ų±'),
(77978, 'https://ror.org/04445fp84', 'en', 1, 'https://ror.org/04445fp84 Center for Advanced Internet Studies'),
(77979, 'https://ror.org/057g3at21', 'fr', 1, 'https://ror.org/057g3at21 Fondation VallƩe'),
(77980, 'https://ror.org/03z8p5796', 'en', 1, 'https://ror.org/03z8p5796 National Engineering Laboratory of Deep Learning Technology and Application ę·±åŗ¦å­¦ä¹ ęŠ€ęœÆåŠåŗ”ē”Øå›½å®¶å·„ēØ‹å®žéŖŒå®¤'),
(77981, 'https://ror.org/004yeqt02', 'en', 1, 'https://ror.org/004yeqt02 South Atlantic Environmental Research Institute'),
(77982, 'https://ror.org/05sy8gb82', 'en', 1, 'https://ror.org/05sy8gb82 W.M. Keck Science Center'),
(77983, 'https://ror.org/037bhg174', 'en', 1, 'https://ror.org/037bhg174 Center for Advanced Energy Studies'),
(77984, 'https://ror.org/02tygyj04', 'en', 1, 'https://ror.org/02tygyj04 State Key Laboratory of Gas Disaster Detecting, Preventing and Emergency Controlling ē“¦ę–Æē¾å®³ē›‘ęŽ§äøŽåŗ”ę€„ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(77985, 'https://ror.org/02vxbm786', 'en', 1, 'https://ror.org/02vxbm786 The Retina Center'),
(77986, 'https://ror.org/00pkx4k51', 'en', 1, 'https://ror.org/00pkx4k51 Tsinghua Sichuan Energy Internet Research Institute'),
(77987, 'https://ror.org/05h3xe829', 'en', 1, 'https://ror.org/05h3xe829 Shenzhen Nanshan Center for Chronic Disease Control ę·±åœ³å—å±±åŒŗę…¢ę€§ē—…é˜²ę²»é™¢'),
(77988, 'https://ror.org/03z41xz33', 'pt', 1, 'https://ror.org/03z41xz33 Centro UniversitÔrio São Lucas'),
(77989, 'https://ror.org/027a61038', 'en', 1, 'https://ror.org/027a61038 Shandong Center for Disease Control and Prevention'),
(77990, 'https://ror.org/00a2x9d51', 'en', 1, 'https://ror.org/00a2x9d51 National Clinical Research Center for Digestive Diseases å›½å®¶ę¶ˆåŒ–ē³»ē»Ÿē–¾ē—…äø“åŗŠåŒ»å­¦ē ”ē©¶äø­åæƒ'),
(77991, 'https://ror.org/03cdc4796', 'no_lang_code', 1, 'https://ror.org/03cdc4796 SuVi Eye Institute and Lasik Laser Center'),
(77992, 'https://ror.org/01e49td52', 'pt', 1, 'https://ror.org/01e49td52 Instituto Benjamin Constant'),
(77993, 'https://ror.org/01fdhrh83', 'en', 1, 'https://ror.org/01fdhrh83 The Carter Center'),
(77994, 'https://ror.org/01m4jzx92', 'en', 1, 'https://ror.org/01m4jzx92 East Tennessee Clinical Research'),
(77995, 'https://ror.org/021jqe068', 'en', 1, 'https://ror.org/021jqe068 Christian Sarkine Autism Treatment Center'),
(77996, 'https://ror.org/01nw09h32', 'en', 1, 'https://ror.org/01nw09h32 Plant Biosecurity Cooperative Research Centre'),
(77997, 'https://ror.org/00dc87r24', 'en', 1, 'https://ror.org/00dc87r24 Genki Plaza Medical Center for Health Care'),
(77998, 'https://ror.org/00cbr6959', 'de', 1, 'https://ror.org/00cbr6959 Hirslanden Klinik Im Park'),
(77999, 'https://ror.org/02ss4n480', 'de', 1, 'https://ror.org/02ss4n480 Hirslanden Klinik St. Anna'),
(78000, 'https://ror.org/05s23vf58', 'de', 1, 'https://ror.org/05s23vf58 Hirslanden Andreasklinik Cham Zug'),
(78001, 'https://ror.org/00yverh79', 'fr', 1, 'https://ror.org/00yverh79 Hirslanden Clinique Bois-Cerf'),
(78002, 'https://ror.org/02mh8f163', 'fr', 1, 'https://ror.org/02mh8f163 Clinique Cecil Hirslanden Clinique Cecil'),
(78003, 'https://ror.org/01sdzh977', 'fr', 1, 'https://ror.org/01sdzh977 Hirslanden Clinique La Colline'),
(78004, 'https://ror.org/037pt1459', 'de', 1, 'https://ror.org/037pt1459 Hirslanden Klinik Birshof'),
(78005, 'https://ror.org/04b5p3125', 'de', 1, 'https://ror.org/04b5p3125 Hirslanden Clinique des Tilleuls Hirslanden Klinik Linde'),
(78006, 'https://ror.org/012fqf756', 'de', 1, 'https://ror.org/012fqf756 Hirslanden Klinik Am Rosenberg'),
(78007, 'https://ror.org/01bqwab81', 'de', 1, 'https://ror.org/01bqwab81 Hirslanden Klinik Beau-Site'),
(78008, 'https://ror.org/020qywr37', 'de', 1, 'https://ror.org/020qywr37 Hirslanden Klinik Permanence'),
(78009, 'https://ror.org/0207xnr07', 'de', 1, 'https://ror.org/0207xnr07 Hirslanden Klinik Stephanshorn'),
(78010, 'https://ror.org/00vh6hg12', 'de', 1, 'https://ror.org/00vh6hg12 Hirslanden Salem-Spital'),
(78011, 'https://ror.org/042k8ng80', 'en', 1, 'https://ror.org/042k8ng80 Research Institute of Human Morphology ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ морфологии человека'),
(78012, 'https://ror.org/01rkjeh73', 'en', 1, 'https://ror.org/01rkjeh73 Worldwide Laser Institute'),
(78013, 'https://ror.org/01wg8sb33', 'en', 1, 'https://ror.org/01wg8sb33 Centar izuzetne vrednosti u oblasti istraživanja ishrane i metabolizma Centre of Research Excellence in Nutrition and Metabolism'),
(78014, 'https://ror.org/02ptjtw84', 'en', 1, 'https://ror.org/02ptjtw84 Lewis Gale Medical Center'),
(78015, 'https://ror.org/03y87s645', 'en', 1, 'https://ror.org/03y87s645 Network for Socioeconomic Research and Advancement'),
(78016, 'https://ror.org/0490yqd31', 'en', 1, 'https://ror.org/0490yqd31 Institute of Paediatric Virology'),
(78017, 'https://ror.org/014hvfk26', 'pt', 1, 'https://ror.org/014hvfk26 UniFG Centro UniversitƔrio'),
(78018, 'https://ror.org/02rx3c188', 'nl', 1, 'https://ror.org/02rx3c188 Leidsche Rijn Julius Gezondheidscentra Leidsche Rijn Julius Health Centers'),
(78019, 'https://ror.org/025bmdq34', 'en', 1, 'https://ror.org/025bmdq34 The Family Centre'),
(78020, 'https://ror.org/04kr8vf53', 'en', 1, 'https://ror.org/04kr8vf53 The Wilson Centre'),
(78021, 'https://ror.org/03ej42966', 'en', 1, 'https://ror.org/03ej42966 Hamilton County Coroner'),
(78022, 'https://ror.org/04z2zm587', 'en', 1, 'https://ror.org/04z2zm587 Global Health Research Center of Central Asia Центр Š˜Š·ŃƒŃ‡ŠµŠ½ŠøŃ Š“Š»Š¾Š±Š°Š»ŃŒŠ½Š¾Š³Š¾ Š—Š“Š¾Ń€Š¾Š²ŃŒŃ в Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(78023, 'https://ror.org/02tb2yp70', 'en', 1, 'https://ror.org/02tb2yp70 CONEM Autism Research'),
(78024, 'https://ror.org/01c8fdr62', 'en', 1, 'https://ror.org/01c8fdr62 Life Quality Research Centre'),
(78025, 'https://ror.org/0307xfv95', 'en', 1, 'https://ror.org/0307xfv95 Ottawa Allergy Research Corporation'),
(78026, 'https://ror.org/038tggw74', 'id', 1, 'https://ror.org/038tggw74 Universitas Dharmas Indonesia'),
(78027, 'https://ror.org/03jqa2c59', 'en', 1, 'https://ror.org/03jqa2c59 Institut für Prävention und Arbeitsmedizin Institute for Prevention and Occupational Medicine'),
(78028, 'https://ror.org/05sy2ev34', 'en', 1, 'https://ror.org/05sy2ev34 Centre for Sight'),
(78029, 'https://ror.org/041fcgy60', 'en', 1, 'https://ror.org/041fcgy60 Marien Hospital Witten'),
(78030, 'https://ror.org/05vv9dr68', 'de', 1, 'https://ror.org/05vv9dr68 Medizinisches Zentrum für Seelische Gesundheit'),
(78031, 'https://ror.org/04zzd2n41', 'de', 1, 'https://ror.org/04zzd2n41 Krankenhaus Lübbecke-Rahden, Universitätsklinik für Psychiatrie und Psychotherapie'),
(78032, 'https://ror.org/01c577389', 'de', 1, 'https://ror.org/01c577389 Krankenhaus Lübbecke-Rahden, Universitätsklinik für Psychosomatik und Psychotherapie'),
(78033, 'https://ror.org/01mxnn839', 'en', 1, 'https://ror.org/01mxnn839 St. Elisabeth-Hospital Bochum'),
(78034, 'https://ror.org/020jy7109', 'en', 1, 'https://ror.org/020jy7109 CTA Observatory'),
(78035, 'https://ror.org/00jrmky87', 'it', 1, 'https://ror.org/00jrmky87 Puglia Salute'),
(78036, 'https://ror.org/031jxes94', 'en', 1, 'https://ror.org/031jxes94 Ghana College of Physicians and Surgeons'),
(78037, 'https://ror.org/0032n4537', 'en', 1, 'https://ror.org/0032n4537 Institute of Pharmacology and Toxicology of the National Academy of Medical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фармакології та токсикології ŠŠŠœŠ України'),
(78038, '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 Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ патології крові та Ń‚Ń€Š°Š½ŃŃ„ŃƒŠ·Ń–Š¹Š½Š¾Ń— меГицини ŠŠŠœŠ України'),
(78039, 'https://ror.org/04b2m4n31', 'en', 1, 'https://ror.org/04b2m4n31 Filatov Institute of Eye Diseases and Tissue Therapy of the National Academy of Medical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ очних хвороб та тканинної терапії імені Філатова ŠŠŠœŠ України'),
(78040, '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 Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пеГіатрії, Š°ŠŗŃƒŃˆŠµŃ€ŃŃ‚Š²Š° та гінекології ŠŠŠœŠ України'),
(78041, 'https://ror.org/000889019', 'en', 1, 'https://ror.org/000889019 Institute of Nephrology of the National Academy of Medical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефрології ŠŠŠœŠ України'),
(78042, 'https://ror.org/023w5bf45', 'en', 1, 'https://ror.org/023w5bf45 Romodanov Neurosurgery Institute of the National Academy of Medical Sciences of Ukraine РомоГанова Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠµŠ¹Ń€Š¾Ń…Ń–Ń€ŃƒŃ€Š³Ń–Ń— ŠŠŠœŠ України'),
(78043, 'https://ror.org/03vepk527', 'en', 1, 'https://ror.org/03vepk527 Carl Hayden Bee Research Center'),
(78044, 'https://ror.org/03qx0n513', 'en', 1, 'https://ror.org/03qx0n513 U.S. Arid Land Agricultural Research Center'),
(78045, 'https://ror.org/04pp5vm71', 'en', 1, 'https://ror.org/04pp5vm71 U.S. Salinity Laboratory'),
(78046, 'https://ror.org/0135db650', 'en', 1, 'https://ror.org/0135db650 Center for Agricultural Resources Research'),
(78047, 'https://ror.org/004m0sc28', 'en', 1, 'https://ror.org/004m0sc28 Center for Grain and Animal Health Research'),
(78048, 'https://ror.org/05x4p3529', 'en', 1, 'https://ror.org/05x4p3529 Conservation and Production Research Laboratory'),
(78049, 'https://ror.org/03h6erk64', 'en', 1, 'https://ror.org/03h6erk64 Daniel K. Inouye U.S. Pacific Basin Agricultural Research Center'),
(78050, 'https://ror.org/01982z663', 'en', 1, 'https://ror.org/01982z663 Cropping Systems Research Laboratory'),
(78051, 'https://ror.org/04x68p008', 'en', 1, 'https://ror.org/04x68p008 Edward T. Schafer Agricultural Research Center'),
(78052, 'https://ror.org/04avxj309', 'en', 1, 'https://ror.org/04avxj309 Horticultural Crops Research Laboratory'),
(78053, 'https://ror.org/02ngnwv51', 'en', 1, 'https://ror.org/02ngnwv51 National Forage Seed Production Research Center'),
(78054, 'https://ror.org/05mfs3k63', 'en', 1, 'https://ror.org/05mfs3k63 Grassland, Soil and Water Research Laboratory'),
(78055, 'https://ror.org/04tm6ax73', 'en', 1, 'https://ror.org/04tm6ax73 Northwest Irrigation and Soils Research Laboratory'),
(78056, 'https://ror.org/01hzjpk73', 'en', 1, 'https://ror.org/01hzjpk73 Grazinglands Research Laboratory'),
(78057, 'https://ror.org/00cahhs35', 'en', 1, 'https://ror.org/00cahhs35 Northwest Watershed Research Center'),
(78058, 'https://ror.org/0432sks47', 'en', 1, 'https://ror.org/0432sks47 Knipling-Bushland U.S. Livestock Insects Research Laboratory'),
(78059, 'https://ror.org/05xy09e29', 'en', 1, 'https://ror.org/05xy09e29 Fort Keogh Livestock and Range Research Laboratory'),
(78060, 'https://ror.org/0474dxd36', 'en', 1, 'https://ror.org/0474dxd36 Northern Great Plains Research Laboratory'),
(78061, 'https://ror.org/005kqqf02', 'en', 1, 'https://ror.org/005kqqf02 Northern Plains Agricultural Research Laboratory'),
(78062, 'https://ror.org/03s4wsx37', 'en', 1, 'https://ror.org/03s4wsx37 Southern Plains Agricultural Research Center'),
(78063, 'https://ror.org/03hya7h57', 'en', 1, 'https://ror.org/03hya7h57 Roman L. Hruska U.S. Meat Animal Research Center'),
(78064, 'https://ror.org/00vd8cq28', 'en', 1, 'https://ror.org/00vd8cq28 Tree Fruit Research Laboratory'),
(78065, 'https://ror.org/03bxq7g45', 'en', 1, 'https://ror.org/03bxq7g45 Southwest Watershed Research Center'),
(78066, 'https://ror.org/009xkwz08', 'en', 1, 'https://ror.org/009xkwz08 San Joaquin Valley Agricultural Sciences Center');
INSERT INTO `rors` VALUES
(78067, 'https://ror.org/03t05d403', 'en', 1, 'https://ror.org/03t05d403 Poisonous Plant Research Laboratory'),
(78068, 'https://ror.org/03x5xm327', 'en', 1, 'https://ror.org/03x5xm327 National Sedimentation Laboratory'),
(78069, 'https://ror.org/004qeec45', 'en', 1, 'https://ror.org/004qeec45 Dale Bumpers National Rice Research Center'),
(78070, 'https://ror.org/02qqnbq97', 'en', 1, 'https://ror.org/02qqnbq97 Dale Bumpers Small Farms Research Center'),
(78071, 'https://ror.org/048ns6x85', 'en', 1, 'https://ror.org/048ns6x85 National Laboratory for Agriculture and the Environment'),
(78072, 'https://ror.org/04ky99h94', 'en', 1, 'https://ror.org/04ky99h94 National Animal Disease Center'),
(78073, 'https://ror.org/03jdk4039', 'en', 1, 'https://ror.org/03jdk4039 Harry K. Dupree Stuttgart National Aquaculture Research Center'),
(78074, 'https://ror.org/00kj82e71', 'en', 1, 'https://ror.org/00kj82e71 Southeast Watershed Research Laboratory'),
(78075, 'https://ror.org/05xqthq76', 'en', 1, 'https://ror.org/05xqthq76 Biological Control of Insects Research Laboratory'),
(78076, 'https://ror.org/056e61d57', 'en', 1, 'https://ror.org/056e61d57 National Peanut Research Laboratory'),
(78077, 'https://ror.org/048zyw409', 'en', 1, 'https://ror.org/048zyw409 U.S. Dairy Forage Research Center'),
(78078, 'https://ror.org/050z40a57', 'en', 1, 'https://ror.org/050z40a57 Robert W. Holley Center for Agriculture & Health'),
(78079, 'https://ror.org/02gb6hj86', 'en', 1, 'https://ror.org/02gb6hj86 North Central Soil Conservation Research Laboratory'),
(78080, 'https://ror.org/04fx69j13', 'en', 1, 'https://ror.org/04fx69j13 Cereal Disease Laboratory'),
(78081, 'https://ror.org/04cnk3y09', 'en', 1, 'https://ror.org/04cnk3y09 National Soil Erosion Research Laboratory'),
(78082, 'https://ror.org/052kar395', 'en', 1, 'https://ror.org/052kar395 Appalachian Fruit Research Laboratory'),
(78083, 'https://ror.org/00m05k208', 'en', 1, 'https://ror.org/00m05k208 National Soil Dynamics Research Laboratory'),
(78084, 'https://ror.org/026sw0405', 'en', 1, 'https://ror.org/026sw0405 National Center for Cool and Cold Water Aquaculture'),
(78085, 'https://ror.org/03sc3bx43', 'en', 1, 'https://ror.org/03sc3bx43 U.S. National Poultry Research Center'),
(78086, 'https://ror.org/02dtaqq02', 'en', 1, 'https://ror.org/02dtaqq02 Plum Island Animal Disease Center'),
(78087, 'https://ror.org/04b8mkk85', 'en', 1, 'https://ror.org/04b8mkk85 Honey Bee Breeding, Genetics, and Physiology Laboratory'),
(78088, 'https://ror.org/04bh7ck51', 'en', 1, 'https://ror.org/04bh7ck51 New England Plant, Soil and Water Research Laboratory'),
(78089, 'https://ror.org/000b3v524', 'en', 1, 'https://ror.org/000b3v524 Southeastern Fruit and Tree Nut Research Laboratory'),
(78090, 'https://ror.org/04x40m321', 'en', 1, 'https://ror.org/04x40m321 National Cold Water Marine Aquaculture Center'),
(78091, 'https://ror.org/05cspff93', 'en', 1, 'https://ror.org/05cspff93 U.S. Vegetable Laboratory'),
(78092, 'https://ror.org/05bpk4v97', 'en', 1, 'https://ror.org/05bpk4v97 Invasive Plant Research Laboratory'),
(78093, 'https://ror.org/04a4m2h70', 'en', 1, 'https://ror.org/04a4m2h70 U.S. Horticultural Research Laboratory'),
(78094, 'https://ror.org/03atsav32', 'en', 1, 'https://ror.org/03atsav32 Crop Science Research Laboratory'),
(78095, 'https://ror.org/03xcerw48', 'en', 1, 'https://ror.org/03xcerw48 U.S. National Arboretum'),
(78096, 'https://ror.org/03pebmm12', 'en', 1, 'https://ror.org/03pebmm12 1 Military Clinical Hospital with Outpatient Clinic 1 Wojskowy Szpital Kliniczny z Polikliniką'),
(78097, 'https://ror.org/04zkkk344', 'en', 1, 'https://ror.org/04zkkk344 CMT Research Foundation'),
(78098, 'https://ror.org/055zztt33', 'en', 1, 'https://ror.org/055zztt33 Arkansas Department of Agriculture'),
(78099, 'https://ror.org/019ytz097', 'es', 1, 'https://ror.org/019ytz097 Centro Nacional de Microbiologia National Micobiology Centre'),
(78100, 'https://ror.org/01dd3fd62', 'es', 1, 'https://ror.org/01dd3fd62 Centro Nacional de EpidemiologĆ­a National Epidemiology Centre'),
(78101, 'https://ror.org/003xj6z62', 'es', 1, 'https://ror.org/003xj6z62 Escuela Nacional de Sanidad National School of Public Health'),
(78102, 'https://ror.org/02g87qh62', 'es', 1, 'https://ror.org/02g87qh62 Centro de Investigación Biomédica en Red'),
(78103, 'https://ror.org/0119pby33', 'es', 1, 'https://ror.org/0119pby33 Centro de Investigación Biomédica en Red de Enfermedades Respiratorias'),
(78104, 'https://ror.org/00w603503', 'es', 1, 'https://ror.org/00w603503 Centro Nacional de Medicina Tropical National Centre of Tropical Medicine'),
(78105, 'https://ror.org/00c77q313', 'es', 1, 'https://ror.org/00c77q313 Red de Investigación en Sida'),
(78106, 'https://ror.org/01rd4et50', 'es', 1, 'https://ror.org/01rd4et50 Centro Nacional de Sanidad Ambiental National Environmental Health Centre'),
(78107, 'https://ror.org/05gqmbr12', 'es', 1, 'https://ror.org/05gqmbr12 Digital Health Research Unit Unidad de Investigación en Salud Digital'),
(78108, 'https://ror.org/01wdt4y78', 'es', 1, 'https://ror.org/01wdt4y78 Scientific and Technical Central Units Unidades Centrales Cientƭfico-TƩcnicas'),
(78109, 'https://ror.org/03gtv5v80', 'es', 1, 'https://ror.org/03gtv5v80 Network of Biological Alerts Laboratories Red de Laboratorios de Alertas Biológicas'),
(78110, 'https://ror.org/05s16e423', 'es', 1, 'https://ror.org/05s16e423 Biblioteca Nacional de Ciencias de la Salud National Library of Health Sciences'),
(78111, 'https://ror.org/05qs5k564', 'es', 1, 'https://ror.org/05qs5k564 Agencia de Evaluación de Tecnologías Sanitarias Health Technology Assessment Agency'),
(78112, 'https://ror.org/00g86hk06', 'es', 1, 'https://ror.org/00g86hk06 Escuela Nacional de Medicina del Trabajo National School of Occupational Medicine'),
(78113, 'https://ror.org/01wwwqd52', 'en', 1, 'https://ror.org/01wwwqd52 National Clonal Germplasm Repository'),
(78114, 'https://ror.org/038n2v518', 'ms', 1, 'https://ror.org/038n2v518 Hospital Kemaman'),
(78115, 'https://ror.org/025nes754', 'en', 1, 'https://ror.org/025nes754 National Clonal Germplasm Repository for Citrus'),
(78116, 'https://ror.org/03mk5b468', 'en', 1, 'https://ror.org/03mk5b468 The Behavioural Insights Team'),
(78117, 'https://ror.org/02xr0yr66', 'en', 1, 'https://ror.org/02xr0yr66 National Clonal Germplasm Repository for Tree Fruit, Nut Crops, and Grapes'),
(78118, 'https://ror.org/048b0cg51', 'en', 1, 'https://ror.org/048b0cg51 IPS Central'),
(78119, '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)'),
(78120, 'https://ror.org/03xvdbr49', 'en', 1, 'https://ror.org/03xvdbr49 Reiner Lemoine Institut Reiner Lemoine Institute'),
(78121, 'https://ror.org/04ngphv84', 'es', 1, 'https://ror.org/04ngphv84 Instituto de Investigaciones CientĆ­ficas y Servicios de Alta TecnologĆ­a'),
(78122, 'https://ror.org/0291s1e82', 'de', 1, 'https://ror.org/0291s1e82 Landesamt für Bergbau, Energie und Geologie'),
(78123, 'https://ror.org/00jhf1r34', 'en', 1, 'https://ror.org/00jhf1r34 Sieć Badawcza Łukasiewicz - Instytut Chemii Przemysłowej Łukasiewicz Research Network - Industrial Chemistry Institute'),
(78124, 'https://ror.org/01dv3hq14', 'en', 1, 'https://ror.org/01dv3hq14 Keldysh Institute of Applied Mathematics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной математики им. М.Š’. ŠšŠµŠ»Š“Ń‹ŃˆŠ° Российской акаГемии наук"'),
(78125, 'https://ror.org/02hv6yw42', 'en', 1, 'https://ror.org/02hv6yw42 Connecticut Department of Energy and Environmental Protection'),
(78126, 'https://ror.org/04sb28h93', 'en', 1, 'https://ror.org/04sb28h93 Gromov Flight Research Institute Летно-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени М.М. Громова'),
(78127, 'https://ror.org/04py2rh25', 'en', 1, 'https://ror.org/04py2rh25 Mass General Brigham'),
(78128, 'https://ror.org/05w8njj13', 'no_lang_code', 1, 'https://ror.org/05w8njj13 Cooley (United States)'),
(78129, 'https://ror.org/047mprv74', 'no_lang_code', 1, 'https://ror.org/047mprv74 Greo'),
(78130, 'https://ror.org/0364tzz24', 'en', 1, 'https://ror.org/0364tzz24 Pyatigorsk Medical and Pharmaceutical Institute - branch of Volgograd State Medical University ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ меГико-фармацевтический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ – филиал ВолгограГского Š³Š¾ŃŃƒŠ“арственного меГицинского ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(78131, 'https://ror.org/02xp2c270', 'en', 1, 'https://ror.org/02xp2c270 Main Astronomical Observatory Головна астрономічна Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€Ń–Ń'),
(78132, 'https://ror.org/00gej0269', 'en', 1, 'https://ror.org/00gej0269 Acupuncture And Massage College'),
(78133, 'https://ror.org/016sx0y50', 'en', 1, 'https://ror.org/016sx0y50 Academy of Sciences of Albania'),
(78134, 'https://ror.org/034ahg853', 'no_lang_code', 1, 'https://ror.org/034ahg853 PowerPhotonic (United Kingdom)'),
(78135, 'https://ror.org/025ghn770', 'en', 1, 'https://ror.org/025ghn770 Sieć Badawcza Łukasiewicz – Instytut Metali Nieżelaznych Łukasiewicz Research Network - Institute of Non-Ferrous Metals'),
(78136, 'https://ror.org/02rcfyf15', 'en', 1, 'https://ror.org/02rcfyf15 Golisano Children''s Hospital'),
(78137, 'https://ror.org/00g58ht81', 'no_lang_code', 1, 'https://ror.org/00g58ht81 Triad Interactive Media (United States)'),
(78138, 'https://ror.org/0257nzs56', 'en', 1, 'https://ror.org/0257nzs56 Wirral Community Health and Care NHS Foundations Trust'),
(78139, 'https://ror.org/01c5bsw63', 'en', 1, 'https://ror.org/01c5bsw63 Alliance of Crop, Soil, and Environmental Science Societies'),
(78140, 'https://ror.org/059dyrr28', 'en', 1, 'https://ror.org/059dyrr28 Leibniz Institute of European History Leibniz-Institut für Europäische Geschichte'),
(78141, 'https://ror.org/04b9a1925', 'en', 1, 'https://ror.org/04b9a1925 Sieć Badawcza Łukasiewicz – Przemysłowy Instytut Automatyki i Pomiarów Łukasiewicz Research Network - Industrial Research Institute for Automation and Measurements'),
(78142, 'https://ror.org/044radm67', 'en', 1, 'https://ror.org/044radm67 Junior College Library Association ē§ē«‹ēŸ­ęœŸå¤§å­¦å›³ę›øé¤Øå”č­°ä¼š'),
(78143, 'https://ror.org/020vrnw42', 'en', 1, 'https://ror.org/020vrnw42 Polish Academy of Sciences Botanical Garden – Center for Biological Diversity Conservation in Powsin Polska Akademia Nauk Ogród Botaniczny – Centrum Zachowania Różnorodności Biologicznej w Powsinie'),
(78144, 'https://ror.org/0154fps75', 'en', 1, 'https://ror.org/0154fps75 Pinega Nature Reserve Pinezhsky Zapovednik'),
(78145, 'https://ror.org/04gcpjy47', 'en', 1, 'https://ror.org/04gcpjy47 I.Horbachevsky Ternopil National Medical University Państwowy Uniwersytet Medyczny imienia I.Ya Horbaczewskiego w Tarnopolu Š¢ŠµŃ€Š½Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. ŠÆ. Горбачевского ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Украины Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені І. ŠÆ. Š“Š¾Ń€Š±Š°Ń‡ŠµŠ²ŃŃŒŠŗŠ¾Š³Š¾'),
(78146, 'https://ror.org/052svzr34', 'en', 1, 'https://ror.org/052svzr34 Sieć Badawcza Łukasiewicz - Instytut Technologii Drewna Łukasiewicz Research Network - Wood Technology Institute'),
(78147, 'https://ror.org/04s92tb21', 'en', 1, 'https://ror.org/04s92tb21 Odessa State Environmental University'),
(78148, 'https://ror.org/0166x0j30', 'en', 1, 'https://ror.org/0166x0j30 Natural History Museum Aarhus Naturhistorisk Museum Aarhus'),
(78149, 'https://ror.org/04hqtn844', 'de', 1, 'https://ror.org/04hqtn844 Bundesamt für Bauwesen und Raumordnung'),
(78150, 'https://ror.org/05qczcd66', 'en', 1, 'https://ror.org/05qczcd66 Sieć Badawcza Łukasiewicz - Przemysłowy Instytut Maszyn Rolniczych Łukasiewicz Research Network - Industrial Institute of Agricultural Engineering'),
(78151, 'https://ror.org/003x6t567', 'no_lang_code', 1, 'https://ror.org/003x6t567 Tango Therapeutics (United States)'),
(78152, 'https://ror.org/03w7hce19', 'pt', 1, 'https://ror.org/03w7hce19 Sociedade Brasileira de Psicologia'),
(78153, 'https://ror.org/04mb6s476', 'en', 1, 'https://ror.org/04mb6s476 RIKEN Center for Integrative Medical Sciences 国立研究開発法人 ē†åŒ–å­¦ē ”ē©¶ę‰€ ē”Ÿå‘½åŒ»ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(78154, 'https://ror.org/000ccd270', 'no_lang_code', 1, 'https://ror.org/000ccd270 Scoular (United States)'),
(78155, 'https://ror.org/03pw76589', 'en', 1, 'https://ror.org/03pw76589 Sieć Badawcza Łukasiewicz – Instytut Obróbki Plastycznej Łukasiewicz Research Network - Metal Forming Institute'),
(78156, 'https://ror.org/03y8xh662', 'no_lang_code', 1, 'https://ror.org/03y8xh662 Molecular Devices (United Kingdom)'),
(78157, 'https://ror.org/03nrps502', 'no_lang_code', 1, 'https://ror.org/03nrps502 Akvaplan-niva'),
(78158, 'https://ror.org/00bv4cx53', 'en', 1, 'https://ror.org/00bv4cx53 Botanic Garden and Botanical Museum Berlin Botanischer Garten und Botanisches Museum Berlin'),
(78159, 'https://ror.org/024ykzk09', 'en', 1, 'https://ror.org/024ykzk09 T.H. Shevchenko National University "Chernihiv Colehium" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ "Š§ŠµŃ€Š½Ń–Š³Ń–Š²ŃŃŒŠŗŃ–Š¹ ŠŗŠ¾Š»ŠµŠ³Ń–ŃƒŠ¼" імені Š¢.Š“. Шевченка'),
(78160, 'https://ror.org/05frkc804', 'no_lang_code', 1, 'https://ror.org/05frkc804 Stiftung Wissenschaft und Politik, Deutsches Institut für Internationale Politik und Sicherheit Stiftung Wissenschaft und Politik, German Institute for International and Security Affairs'),
(78161, 'https://ror.org/01zwfkr30', 'en', 1, 'https://ror.org/01zwfkr30 Sieć Badawczą Łukasiewicz - Instytut Włókiennictwa Łukasiewicz Research Network - Textile Research Institute'),
(78162, 'https://ror.org/03rvn3n08', 'en', 1, 'https://ror.org/03rvn3n08 Sieć Badawcza Łukasiewicz – PORT Polski Ośrodek Rozwoju Technologii Łukasiewicz Research Network – PORT Polish Center for Technology Development'),
(78163, 'https://ror.org/054q9np86', 'en', 1, 'https://ror.org/054q9np86 Kartal Koşuyolu High Specialization Training and Research Hospital Kartal Koşuyolu Yüksek İhtisas Eğitim ve Araştırma Hastanesi'),
(78164, 'https://ror.org/03ycvrj88', 'en', 1, 'https://ror.org/03ycvrj88 Bundesamt für Seeschifffahrt und Hydrographie Federal Maritime and Hydrographic Agency of Germany'),
(78165, 'https://ror.org/03yntf296', 'en', 1, 'https://ror.org/03yntf296 Sieć Badawcza Łukasiewicz - Instytut Technologii Eksploatacji Łukasiewicz - Institute for Sustainable Technologies'),
(78166, 'https://ror.org/051fsan18', 'no_lang_code', 1, 'https://ror.org/051fsan18 Zygo (United States)'),
(78167, 'https://ror.org/04qw9bn98', 'en', 1, 'https://ror.org/04qw9bn98 Angelus Silesius State University Państwowa Uczelnia Angelusa Silesiusa'),
(78168, 'https://ror.org/002dxp647', 'no_lang_code', 1, 'https://ror.org/002dxp647 Bell Resources (Australia)'),
(78169, 'https://ror.org/03z4qna16', 'no_lang_code', 1, 'https://ror.org/03z4qna16 Ferespe (Portugal)'),
(78170, 'https://ror.org/00sngv739', 'en', 1, 'https://ror.org/00sngv739 Herder Institute Herder-Institut für Historische Ostmitteleuropaforschung – Institut der Leibniz-Gemeinschaft'),
(78171, 'https://ror.org/035hkbq39', 'en', 1, 'https://ror.org/035hkbq39 Sieć Badawcza Łukasiewicz - Instytut Ciężkiej Syntezy Organicznej "Blachownia" Łukasiewicz Research Network - Institute of Heavy Organic Synthesis "Blachownia"'),
(78172, 'https://ror.org/03jasrp23', 'en', 1, 'https://ror.org/03jasrp23 Phoenix Hospital Chelmsford'),
(78173, 'https://ror.org/04q6a0352', 'en', 1, 'https://ror.org/04q6a0352 Volgograd State Medical University ВолгограГский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(78174, 'https://ror.org/02jkbm893', 'sv', 1, 'https://ror.org/02jkbm893 Bank of Sweden Tercentenary Foundation Stiftelsen Riksbankens Jubileumsfond'),
(78175, 'https://ror.org/02vpyz736', 'en', 1, 'https://ror.org/02vpyz736 Western Regional Hospital'),
(78176, 'https://ror.org/009mwwv16', 'no_lang_code', 1, 'https://ror.org/009mwwv16 AZTERLAN AZTERLAN Centro de Investigación Metalúrgica AZTERLAN Metalurgia Ikerketa Zentroa'),
(78177, 'https://ror.org/050vh8780', 'en', 1, 'https://ror.org/050vh8780 Kyiv National University of Technologies and Design ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ технологій та Гизайну'),
(78178, 'https://ror.org/02r276210', 'en', 1, 'https://ror.org/02r276210 Avondale University'),
(78179, 'https://ror.org/03hpxd290', 'de', 1, 'https://ror.org/03hpxd290 Nordwestdeutsche Forstliche Versuchsanstalt Northwest German Forest Research Institute'),
(78180, 'https://ror.org/01xzwj424', 'en', 1, 'https://ror.org/01xzwj424 HTW Berlin - University of Applied Sciences Hochschule für Technik und Wirtschaft Berlin'),
(78181, 'https://ror.org/05hkn5555', 'en', 1, 'https://ror.org/05hkn5555 Dnipro University of Technology ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ горный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украина ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° політехніка»'),
(78182, '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'),
(78183, 'https://ror.org/03fktew82', 'en', 1, 'https://ror.org/03fktew82 Institute of Social Sciences and Humanities, Skopje Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š¾Ń‚ за Š¾ŠæŃˆŃ‚ествени Šø Ń…ŃƒŠ¼Š°Š½ŠøŃŃ‚ŠøŃ‡ŠŗŠø науки – Дкопје'),
(78184, 'https://ror.org/005k57c98', 'eu', 1, 'https://ror.org/005k57c98 Basque Summer University Udako Euskal Unibertsitatea Universidad Vasca de Verano UniversitƩ basque d''ƩtƩ'),
(78185, 'https://ror.org/03dgx1q54', 'en', 1, 'https://ror.org/03dgx1q54 MS-Kliniek Nationaal Multiple Sclerose Centrum National MS Center Melsbroek'),
(78186, 'https://ror.org/05wf2rt56', 'en', 1, 'https://ror.org/05wf2rt56 State Scientific Institution "Ukrainian Institute of Scientific and Technical Expertise and Information" Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ науково-технічної експертизи та інформації»'),
(78187, 'https://ror.org/036ttgc90', 'es', 1, 'https://ror.org/036ttgc90 Private University of Huancayo "Franklin Roosevelt" Universidad Privada de Huancayo "Franklin Roosevelt"'),
(78188, 'https://ror.org/02pv64t29', 'en', 1, 'https://ror.org/02pv64t29 Woods Hole Coastal and Marine Science Center'),
(78189, 'https://ror.org/03e7mhc87', 'en', 1, 'https://ror.org/03e7mhc87 Kansas City National Security Campus'),
(78190, 'https://ror.org/043ncc240', 'es', 1, 'https://ror.org/043ncc240 Escuela de Postgrado Gěrens Gerens Graduate School'),
(78191, 'https://ror.org/02f4ks689', 'en', 1, 'https://ror.org/02f4ks689 Axiom Data Science'),
(78192, 'https://ror.org/0553k7b06', 'en', 1, 'https://ror.org/0553k7b06 National Registry of Exonerations'),
(78193, 'https://ror.org/002vpkf64', 'fr', 1, 'https://ror.org/002vpkf64 SociƩtƩ des historiens mƩdiƩvistes de l''enseignement supƩrieur public'),
(78194, 'https://ror.org/04p8xrf95', 'en', 1, 'https://ror.org/04p8xrf95 Tetiaroa Society'),
(78195, 'https://ror.org/02mxc2926', 'en', 1, 'https://ror.org/02mxc2926 Population Health Research Network'),
(78196, 'https://ror.org/04bk2qw80', 'es', 1, 'https://ror.org/04bk2qw80 Instituto Peruano de EnergĆ­a Nuclear Peruvian Institute of Nuclear Energy'),
(78197, 'https://ror.org/02jfhsn35', 'en', 1, 'https://ror.org/02jfhsn35 CSIRO BioFoundry'),
(78198, 'https://ror.org/02c3p9381', 'es', 1, 'https://ror.org/02c3p9381 Instituto Nacional de Rehabilitación de "Dra. Adriana Rebaza Flores" Amistad Perú-Japón National Rehabilitation Institute of "Dra. Adriana Rebaza Flores" Peru-Japan Friendship'),
(78199, 'https://ror.org/01d74sk53', 'no_lang_code', 1, 'https://ror.org/01d74sk53 CatalystNeuro'),
(78200, 'https://ror.org/00nw4tw41', 'no_lang_code', 1, 'https://ror.org/00nw4tw41 InterGrain'),
(78201, 'https://ror.org/04qzdz471', 'es', 1, 'https://ror.org/04qzdz471 Centro de diseño, cine y televisión'),
(78202, 'https://ror.org/02ts2sn48', 'en', 1, 'https://ror.org/02ts2sn48 Connecticut Geological Survey'),
(78203, 'https://ror.org/00tfqpy41', 'es', 1, 'https://ror.org/00tfqpy41 National Agrarian Health Service Servicio Nacional de Sanidad Agraria'),
(78204, 'https://ror.org/00mwcha69', 'en', 1, 'https://ror.org/00mwcha69 Akademi Keperawatan YKY'),
(78205, 'https://ror.org/041anjn10', 'en', 1, 'https://ror.org/041anjn10 Community of Physics'),
(78206, 'https://ror.org/03t9kaa43', 'es', 1, 'https://ror.org/03t9kaa43 Instituto Nacional de Defensa de la Competencia y de la Protección de la Propiedad Intelectual National Institute for the Defense of Competition and the Protection of Intellectual Property'),
(78207, 'https://ror.org/04gcece27', 'en', 1, 'https://ror.org/04gcece27 Natural History Museum of the Lesvos Petrified Forest ĪœĪæĻ…ĻƒĪµĪÆĪæ Ī¦Ļ…ĻƒĪ¹ĪŗĪ®Ļ‚ Ī™ĻƒĻ„ĪæĻĪÆĪ±Ļ‚ Απολιθωμένου Ī”Ī¬ĻƒĪæĻ…Ļ‚ Ī›Ī­ĻƒĪ²ĪæĻ…'),
(78208, 'https://ror.org/05cynqq24', 'de', 1, 'https://ror.org/05cynqq24 Deutsche Gesellschaft für Erziehungswissenschaft'),
(78209, 'https://ror.org/048555y32', 'en', 1, 'https://ror.org/048555y32 Biological Museum, Lund University Biologiska Museet, Lunds universitet'),
(78210, 'https://ror.org/00wk22n41', 'en', 1, 'https://ror.org/00wk22n41 Nederlandse Vereniging van Hemofilie-Patiƫnten Netherlands Haemophilia Society'),
(78211, 'https://ror.org/01yhex183', 'en', 1, 'https://ror.org/01yhex183 Gothenburg Natural History Museum Gƶteborgs Naturhistoriska Museum'),
(78212, 'https://ror.org/03s4kfm57', 'en', 1, 'https://ror.org/03s4kfm57 High Tropics Foundation'),
(78213, 'https://ror.org/04wmpkv79', 'es', 1, 'https://ror.org/04wmpkv79 National Intercultural University of Quillabamba Universidad Nacional Intercultural de Quillabamba'),
(78214, 'https://ror.org/01xfrxk65', 'en', 1, 'https://ror.org/01xfrxk65 California Geological Survey'),
(78215, 'https://ror.org/030wzvf80', 'es', 1, 'https://ror.org/030wzvf80 CartogrƔfica de Canarias'),
(78216, 'https://ror.org/013aa2c03', 'en', 1, 'https://ror.org/013aa2c03 Institute of Mental Health and Neurosciences'),
(78217, 'https://ror.org/04j4kad11', 'en', 1, 'https://ror.org/04j4kad11 Centre for Environmental Data Analysis'),
(78218, 'https://ror.org/02e838q34', 'es', 1, 'https://ror.org/02e838q34 Instituto Nacional de Estadƭstica e InformƔtica National Institute of Statistics and Informatics'),
(78219, 'https://ror.org/04f19vj70', 'en', 1, 'https://ror.org/04f19vj70 Patient-Led Research Collaborative'),
(78220, 'https://ror.org/036dczj04', 'en', 1, 'https://ror.org/036dczj04 Ministry of Sports'),
(78221, 'https://ror.org/00f89wy98', 'en', 1, 'https://ror.org/00f89wy98 Magnetics Information Consortium'),
(78222, 'https://ror.org/00hmkqz52', 'es', 1, 'https://ror.org/00hmkqz52 Instituto Nacional de Ciencias Neurológicas National Institute of Neurological Sciences'),
(78223, 'https://ror.org/05wmhj005', 'en', 1, 'https://ror.org/05wmhj005 Finlands SamhƤllsvetenskapliga Dataarkiv Finnish Social Science Data Archive Yhteiskuntatieteellinen tietoarkisto'),
(78224, 'https://ror.org/01xcd2w79', 'en', 1, 'https://ror.org/01xcd2w79 Flathead National Forest'),
(78225, 'https://ror.org/02qyzaf42', 'en', 1, 'https://ror.org/02qyzaf42 The Cancer Imaging Archive'),
(78226, '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'),
(78227, 'https://ror.org/01kq4t285', 'es', 1, 'https://ror.org/01kq4t285 Instituto GeogrƔfico Nacional National Geographic Institute'),
(78228, 'https://ror.org/03ckf5b20', 'en', 1, 'https://ror.org/03ckf5b20 Scientific Institute of Rabat المعهد Ų§Ł„Ų¹Ł„Ł…ŁŠ الرباط'),
(78229, 'https://ror.org/00bqrh472', 'es', 1, 'https://ror.org/00bqrh472 Autonomous University of Ica Universidad Autónoma de Ica'),
(78230, 'https://ror.org/04yy4tq26', 'en', 1, 'https://ror.org/04yy4tq26 Institut für Radio- und Informationssysteme – IRIS Institute of Radio and Information Systems (IRIS)'),
(78231, 'https://ror.org/05t25a229', 'es', 1, 'https://ror.org/05t25a229 Instituto Nacional de OftalmologĆ­a "Dr. Francisco Contreras Campos" National Institute of Ophthalmology "Dr. Francisco Contreras Campos"'),
(78232, 'https://ror.org/05mhn0t19', 'en', 1, 'https://ror.org/05mhn0t19 Panamanian Association for the Advancement of Science'),
(78233, 'https://ror.org/00rs6s651', 'es', 1, 'https://ror.org/00rs6s651 Museo de Historia Natural Museum of Natural History'),
(78234, 'https://ror.org/0180xa122', 'es', 1, 'https://ror.org/0180xa122 National Autonomous University of Alto Amazonas Universidad Nacional Autónoma de Alto Amazonas'),
(78235, 'https://ror.org/004edqb24', 'en', 1, 'https://ror.org/004edqb24 Health and Wellbeing Queensland'),
(78236, 'https://ror.org/003z0hw02', 'es', 1, 'https://ror.org/003z0hw02 Instituto Tecnológico de la Producción Technological Institute of Production'),
(78237, 'https://ror.org/05bgydj64', 'no_lang_code', 1, 'https://ror.org/05bgydj64 Paveprime'),
(78238, 'https://ror.org/01adbad76', 'no_lang_code', 1, 'https://ror.org/01adbad76 Lexical Computing CZ'),
(78239, 'https://ror.org/02q3q8311', 'en', 1, 'https://ror.org/02q3q8311 State University of Infrastructure and Technologies Š”Š•Š Š–ŠŠ’ŠŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢ Š†ŠŠ¤Š ŠŠ”Š¢Š Š£ŠšŠ¢Š£Š Š˜ ТА Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š†Š™'),
(78240, 'https://ror.org/03q3ecb97', 'no_lang_code', 1, 'https://ror.org/03q3ecb97 Coral Publications'),
(78241, 'https://ror.org/034d7ma87', 'en', 1, 'https://ror.org/034d7ma87 Digital Repository of Ireland Taisclann Dhigiteach na hƉireann'),
(78242, 'https://ror.org/02yhdfk86', 'en', 1, 'https://ror.org/02yhdfk86 Associação Brasileira de Editores Científicos Brazilian Association of Scientific Editors'),
(78243, 'https://ror.org/02xbecd21', 'en', 1, 'https://ror.org/02xbecd21 Oregon Water Resources Department'),
(78244, 'https://ror.org/04t667177', 'en', 1, 'https://ror.org/04t667177 Nordre Ƙyeren Bird Observatory Nordre Ƙyeren Fuglestasjon'),
(78245, 'https://ror.org/021gxf250', 'en', 1, 'https://ror.org/021gxf250 Virtual Library of Virginia'),
(78246, 'https://ror.org/02684yk50', 'en', 1, 'https://ror.org/02684yk50 Mataram College of Health Sciences Sekolah Tinggi Ilmu Kesehatan (STIKES) Mataram'),
(78247, 'https://ror.org/03pep4w33', 'en', 1, 'https://ror.org/03pep4w33 The Intergovernmental Committee on Surveying and Mapping'),
(78248, 'https://ror.org/053drm788', 'es', 1, 'https://ror.org/053drm788 National University of CaƱete Universidad Nacional de CaƱete'),
(78249, 'https://ror.org/01qkd1z70', 'en', 1, 'https://ror.org/01qkd1z70 Bannari Amman Institute of Technology'),
(78250, 'https://ror.org/05x83ep82', 'en', 1, 'https://ror.org/05x83ep82 Lviv University of Business and Law Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±Ń–Š·Š½ŠµŃŃƒ та права'),
(78251, 'https://ror.org/05jj7mn84', 'no_lang_code', 1, 'https://ror.org/05jj7mn84 Lexical Computing'),
(78252, 'https://ror.org/017bd4h68', 'es', 1, 'https://ror.org/017bd4h68 National University of Frontera Universidad Nacional de Frontera'),
(78253, 'https://ror.org/02w3v2f07', 'en', 1, 'https://ror.org/02w3v2f07 Canadian Centre for Electron Microscopy'),
(78254, 'https://ror.org/00wv18f77', 'en', 1, 'https://ror.org/00wv18f77 Institut Papst Benedikt XVI. Pope Benedict XVI Institute'),
(78255, 'https://ror.org/00j0emq76', 'en', 1, 'https://ror.org/00j0emq76 Pontifical Biblical Institute Pontificio Istituto Biblico Pontificium Institutum Biblicum'),
(78256, 'https://ror.org/03xaryf14', 'en', 1, 'https://ror.org/03xaryf14 Center for Scientific Collaboration and Community Engagement'),
(78257, 'https://ror.org/0488nj033', 'en', 1, 'https://ror.org/0488nj033 Natural History Museum Maastricht Natuurhistorisch Museum Maastricht'),
(78258, 'https://ror.org/03yhwzd24', 'es', 1, 'https://ror.org/03yhwzd24 Instituto Nacional de Salud del NiƱo-San Borja National Institute of Child Health-San Borja'),
(78259, 'https://ror.org/02n7p8p77', 'en', 1, 'https://ror.org/02n7p8p77 Shandong Institute of Advanced Technology å±±äøœé«˜ē­‰ęŠ€ęœÆē ”ē©¶é™¢'),
(78260, 'https://ror.org/026ewty38', 'es', 1, 'https://ror.org/026ewty38 National Intercultural University of the Central Jungle Juan Santos Atahualpa Universidad Nacional Intercultural de la Selva Central Juan Santos Atahualpa'),
(78261, 'https://ror.org/02r5q9a81', 'es', 1, 'https://ror.org/02r5q9a81 National Autonomous University of Chota Universidad Nacional Autónoma de Chota'),
(78262, 'https://ror.org/05xy1nn52', 'en', 1, 'https://ror.org/05xy1nn52 Multiscale Bioimaging'),
(78263, 'https://ror.org/04mmwq306', 'en', 1, 'https://ror.org/04mmwq306 Trabzon University Trabzon Üniversitesi'),
(78264, 'https://ror.org/0018wmh19', 'no_lang_code', 1, 'https://ror.org/0018wmh19 Molecular Devices'),
(78265, '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"'),
(78266, 'https://ror.org/02hhf2525', 'en', 1, 'https://ror.org/02hhf2525 Academician F. H. Burchak Scientific-Research Institute of Private Law and Entrepreneurship ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГниq Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приватного права і піГприємництва імені акаГеміка Ф. Š“. Š‘ŃƒŃ€Ń‡Š°ŠŗŠ°'),
(78267, 'https://ror.org/008f3q107', 'no_lang_code', 1, 'https://ror.org/008f3q107 ResearchGate'),
(78268, 'https://ror.org/03ddvws43', 'no_lang_code', 1, 'https://ror.org/03ddvws43 Unichem Laboratories'),
(78269, 'https://ror.org/01v7jw115', 'en', 1, 'https://ror.org/01v7jw115 T''Sou-ke First Nation'),
(78270, 'https://ror.org/04df9ks57', 'es', 1, 'https://ror.org/04df9ks57 National Intercultural University "Fabiola Salazar Leguƍa" of Bagua Universidad Nacional Intercultural "Fabiola Salazar Leguƍa" de Bagua'),
(78271, 'https://ror.org/051zgrs14', 'es', 1, 'https://ror.org/051zgrs14 National University of JaƩn Universidad Nacional de JaƩn'),
(78272, 'https://ror.org/044r01e44', 'en', 1, 'https://ror.org/044r01e44 Japan Geoscience Union ę—„ęœ¬åœ°ēƒęƒ‘ę˜Ÿē§‘å­¦é€£åˆ'),
(78273, 'https://ror.org/01y280z29', 'es', 1, 'https://ror.org/01y280z29 National University of Barranca Universidad Nacional de Barranca'),
(78274, 'https://ror.org/02n8xct56', 'no_lang_code', 1, 'https://ror.org/02n8xct56 Digital Health Cooperative Research Centre'),
(78275, 'https://ror.org/01zqrkn57', 'en', 1, 'https://ror.org/01zqrkn57 Municipal Higher Education Institution "Kherson Academy of Continuing Education" of the Kherson Regional Council Комунальний вищий Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ заклаГ "Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń неперервної освіти" Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠ¾Ń— обласної раГи'),
(78276, 'https://ror.org/031dyqa07', 'es', 1, 'https://ror.org/031dyqa07 MarĆ­a Auxiliadora University Universidad MarĆ­a Auxiliadora'),
(78277, 'https://ror.org/02e4h5817', 'en', 1, 'https://ror.org/02e4h5817 Nosivska Breeding And Research Station ŠŠ¾ŃŃ–Š²ŃŃŒŠŗŠ° селекційно-ГосліГна ŃŃ‚Š°Š½Ń†Ń–Ń'),
(78278, 'https://ror.org/03q60bw50', 'es', 1, 'https://ror.org/03q60bw50 Centro Nacional de Investigaciones de CafƩ National Coffee Research Center'),
(78279, 'https://ror.org/03294c124', 'en', 1, 'https://ror.org/03294c124 Lakeland University Japan'),
(78280, 'https://ror.org/057gst528', 'no_lang_code', 1, 'https://ror.org/057gst528 Gen-info'),
(78281, 'https://ror.org/0588n4k65', 'en', 1, 'https://ror.org/0588n4k65 Invest in Open Infrastructure'),
(78282, 'https://ror.org/03vb2cr34', 'no_lang_code', 1, 'https://ror.org/03vb2cr34 4Science'),
(78283, 'https://ror.org/034ebnm46', 'en', 1, 'https://ror.org/034ebnm46 Minnesota Geological Survey'),
(78284, 'https://ror.org/02mrpaq42', 'en', 1, 'https://ror.org/02mrpaq42 Kansas State University Salina Aerospace and Technology Campus'),
(78285, 'https://ror.org/02c1tfz23', 'en', 1, 'https://ror.org/02c1tfz23 Fakultní nemocnice Plzeň University Hospital Plzen'),
(78286, 'https://ror.org/03q397159', 'en', 1, 'https://ror.org/03q397159 Data61'),
(78287, 'https://ror.org/03tn2wn35', 'de', 1, 'https://ror.org/03tn2wn35 Landesamt für Umwelt, Naturschutz und Geologie'),
(78288, 'https://ror.org/055a54548', 'en', 1, 'https://ror.org/055a54548 Beaufort Lagoon Ecosystems Long Term Ecological Research Network'),
(78289, 'https://ror.org/020zjmd13', 'en', 1, 'https://ror.org/020zjmd13 Central Arizona–Phoenix Long Term Ecological Research'),
(78290, 'https://ror.org/023q8n217', 'en', 1, 'https://ror.org/023q8n217 ENEA Centro Ricerche Trisaia ENEA Trisaia Research Centre'),
(78291, 'https://ror.org/01c0yey93', 'en', 1, 'https://ror.org/01c0yey93 Finlands Artdatacenter Finnish Biodiversity Information Facility Suomen Lajitietokeskus'),
(78292, 'https://ror.org/003f21n80', 'en', 1, 'https://ror.org/003f21n80 Institute of Geosciences'),
(78293, 'https://ror.org/02ngbsn37', 'no_lang_code', 1, 'https://ror.org/02ngbsn37 Gilson (United States)'),
(78294, 'https://ror.org/03v61g875', 'en', 1, 'https://ror.org/03v61g875 Engineering Laboratory'),
(78295, 'https://ror.org/02gqe1446', 'no_lang_code', 1, 'https://ror.org/02gqe1446 SPL L''Eau des Collines'),
(78296, 'https://ror.org/02mp31p96', 'no_lang_code', 1, 'https://ror.org/02mp31p96 Carl Zeiss (Germany)'),
(78297, 'https://ror.org/05y2kwf93', 'en', 1, 'https://ror.org/05y2kwf93 First United Methodist Church'),
(78298, 'https://ror.org/01fx1d378', 'no_lang_code', 1, 'https://ror.org/01fx1d378 Eurofins (Netherlands)'),
(78299, 'https://ror.org/00x69dn41', 'en', 1, 'https://ror.org/00x69dn41 ENEA Centro Ricerche Portici ENEA Portici Research Centre'),
(78300, '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'),
(78301, 'https://ror.org/004jbx603', 'es', 1, 'https://ror.org/004jbx603 Universidad TƩcnica de Cotopaxi'),
(78302, 'https://ror.org/00n6b3s33', 'no_lang_code', 1, 'https://ror.org/00n6b3s33 Mission Therapeutics (United Kingdom)'),
(78303, 'https://ror.org/01jcmva95', 'no_lang_code', 1, 'https://ror.org/01jcmva95 Juice Plus+ (United States)'),
(78304, 'https://ror.org/04qskqr65', 'en', 1, 'https://ror.org/04qskqr65 Arecibo Observatory'),
(78305, 'https://ror.org/01eav8h49', 'en', 1, 'https://ror.org/01eav8h49 Russian Customs Academy Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Ń‚Š°Š¼Š¾Š¶ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(78306, 'https://ror.org/02e31nc37', 'en', 1, 'https://ror.org/02e31nc37 American University in Cairo New York Office'),
(78307, 'https://ror.org/03zjaj674', 'en', 1, 'https://ror.org/03zjaj674 ENEA Brasimone Research Centre ENEA Centro Ricerche Brasimone'),
(78308, 'https://ror.org/02w52zt87', 'en', 1, 'https://ror.org/02w52zt87 Ministry of Education and Culture'),
(78309, 'https://ror.org/023azqp90', 'en', 1, 'https://ror.org/023azqp90 Academy of Management of the Interior Ministry of Russia ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ Š£ŠŸŠ ŠŠ’Š›Š•ŠŠ˜ŠÆ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(78310, 'https://ror.org/03srysw20', 'en', 1, 'https://ror.org/03srysw20 De MuseumFabriek The MuseumFactory'),
(78311, 'https://ror.org/026jqvs13', 'en', 1, 'https://ror.org/026jqvs13 Andrews Forest Long Term Ecological Research'),
(78312, 'https://ror.org/04wvm7462', 'en', 1, 'https://ror.org/04wvm7462 Agrotecnio (Fundació UdL-IRTA) Agrotecnio - Centre for Food and Agriculture Research'),
(78313, 'https://ror.org/05q6wv670', 'no_lang_code', 1, 'https://ror.org/05q6wv670 Trelleborg (Sweden)'),
(78314, 'https://ror.org/058tz9s83', 'en', 1, 'https://ror.org/058tz9s83 Central Military Commission äø­å¤®å†›äŗ‹å§”å‘˜ä¼š'),
(78315, 'https://ror.org/041mc9510', 'en', 1, 'https://ror.org/041mc9510 Bridgeport Public Library'),
(78316, 'https://ror.org/041c2wa38', 'no_lang_code', 1, 'https://ror.org/041c2wa38 Rusal (Russia) ŠžŠš РУДАЛ'),
(78317, 'https://ror.org/02vg6t997', 'no_lang_code', 1, 'https://ror.org/02vg6t997 Danubius University VysokÔ Ŕkola Danubius'),
(78318, 'https://ror.org/01ppy6j62', 'en', 1, 'https://ror.org/01ppy6j62 Geophysics GPR International Geophysique GPR International'),
(78319, 'https://ror.org/01wgn9x88', 'en', 1, 'https://ror.org/01wgn9x88 North Pacific Anadromous Fish Commission'),
(78320, 'https://ror.org/0523vvf33', 'no_lang_code', 1, 'https://ror.org/0523vvf33 China Aerospace Science and Industry Corporation (China) äø­å›½čˆŖå¤©ē§‘å·„é›†å›¢å…¬åø'),
(78321, 'https://ror.org/000vekr11', 'en', 1, 'https://ror.org/000vekr11 GW4'),
(78322, 'https://ror.org/04wnwjm54', 'en', 1, 'https://ror.org/04wnwjm54 Oman Dental College ŁƒŁ„ŁŠŲ© عمان لطب الأسنان'),
(78323, 'https://ror.org/03xwgfg33', 'nl', 1, 'https://ror.org/03xwgfg33 Ziekenhuis Rivierenland'),
(78324, 'https://ror.org/012xv5c42', 'it', 1, 'https://ror.org/012xv5c42 Fondazione Querini Stampalia'),
(78325, 'https://ror.org/05y9abj60', 'en', 1, 'https://ror.org/05y9abj60 Comunidades Latinas Unidas En Servicio'),
(78326, 'https://ror.org/01kh7ng04', 'es', 1, 'https://ror.org/01kh7ng04 Fundación Universitaria Horizonte'),
(78327, 'https://ror.org/02wavzm11', 'en', 1, 'https://ror.org/02wavzm11 Konza Prairie Long Term Ecological Research'),
(78328, 'https://ror.org/01c1qvn60', 'en', 1, 'https://ror.org/01c1qvn60 Human Computation Institute'),
(78329, 'https://ror.org/02jvrpv13', 'fr', 1, 'https://ror.org/02jvrpv13 Centre intƩgrƩ universitaire de santƩ et de services sociaux de la Mauricie-et-du-Centre-du-QuƩbec'),
(78330, 'https://ror.org/02fb00x56', 'no_lang_code', 1, 'https://ror.org/02fb00x56 Eiffage (France)'),
(78331, 'https://ror.org/0075f1c08', 'nl', 1, 'https://ror.org/0075f1c08 Artesis Plantijn Hogeschool Antwerpen'),
(78332, 'https://ror.org/02t6fhh24', 'no_lang_code', 1, 'https://ror.org/02t6fhh24 Just Associates (United States)'),
(78333, 'https://ror.org/020yb3m85', 'ca', 1, 'https://ror.org/020yb3m85 Biomedical Research Institute of Girona Institut d''Investigació Biomèdica de Girona'),
(78334, 'https://ror.org/04ehrwx42', 'de', 1, 'https://ror.org/04ehrwx42 Fachkrankenhaus Kloster Grafschaft'),
(78335, 'https://ror.org/0019cam27', 'en', 1, 'https://ror.org/0019cam27 U SPORTS'),
(78336, 'https://ror.org/034tvnv21', 'en', 1, 'https://ror.org/034tvnv21 Hellenic Parliament'),
(78337, 'https://ror.org/00vwzq490', 'no_lang_code', 1, 'https://ror.org/00vwzq490 Blazegraph (United States)'),
(78338, 'https://ror.org/02k4gk709', 'de', 1, 'https://ror.org/02k4gk709 Christiani'),
(78339, 'https://ror.org/04sg4ka71', 'en', 1, 'https://ror.org/04sg4ka71 Fakultnƭ nemocnice KrƔlovskƩ Vinohrady University Hospital Kralovske Vinohrady'),
(78340, 'https://ror.org/03n6qxm88', 'fr', 1, 'https://ror.org/03n6qxm88 HƓpital Saint-Jacques'),
(78341, 'https://ror.org/001pj0680', 'en', 1, 'https://ror.org/001pj0680 Kuban State University of Physical Education, Sport and Tourism Кубанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(78342, 'https://ror.org/02hn5m148', 'no_lang_code', 1, 'https://ror.org/02hn5m148 Reaction Biology (Germany)'),
(78343, 'https://ror.org/00zbj9525', 'en', 1, 'https://ror.org/00zbj9525 Center for Research and Interdisciplinarity Centre de Recherches Interdisciplinaires'),
(78344, 'https://ror.org/05vk2g845', 'en', 1, 'https://ror.org/05vk2g845 Institute for Microelectronics and Microsystems Istituto per la Microelettronica e Microsistemi'),
(78345, 'https://ror.org/02cyra061', 'en', 1, 'https://ror.org/02cyra061 Shupyk National Healthcare University of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ охорони зГоров''я України імені П. Š›. Шупика'),
(78346, 'https://ror.org/01t2a8a42', 'no_lang_code', 1, 'https://ror.org/01t2a8a42 Mendeley (United Kingdom)'),
(78347, 'https://ror.org/01xe8ky38', 'en', 1, 'https://ror.org/01xe8ky38 International Performance Research Institute'),
(78348, 'https://ror.org/01dvbrt74', 'en', 1, 'https://ror.org/01dvbrt74 Institut für Axiologische Forschungen Institute of Axiological Research'),
(78349, 'https://ror.org/04y2aw426', 'nl', 1, 'https://ror.org/04y2aw426 De Bastei'),
(78350, 'https://ror.org/043b26x63', 'en', 1, 'https://ror.org/043b26x63 National Research Council Institute for Biodiagnostics'),
(78351, 'https://ror.org/045a7h037', 'no_lang_code', 1, 'https://ror.org/045a7h037 Schiffbau-Versuchsanstalt Potsdam (Germany)'),
(78352, 'https://ror.org/02wnz3c50', 'en', 1, 'https://ror.org/02wnz3c50 International Academy of Business and New Technologies ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ бизнеса Šø новых технологий'),
(78353, 'https://ror.org/04dx66682', 'en', 1, 'https://ror.org/04dx66682 Utah Tech University'),
(78354, 'https://ror.org/034w9e597', 'en', 1, 'https://ror.org/034w9e597 The Priory Hospital'),
(78355, 'https://ror.org/011619g15', 'en', 1, 'https://ror.org/011619g15 International Institute of Innovation and Technology'),
(78356, 'https://ror.org/01bfbvm65', 'no_lang_code', 1, 'https://ror.org/01bfbvm65 Samsung (United States)'),
(78357, 'https://ror.org/028qh5302', 'no_lang_code', 1, 'https://ror.org/028qh5302 BioPhorum (United Kingdom)'),
(78358, 'https://ror.org/012mvrz03', 'en', 1, 'https://ror.org/012mvrz03 Perm State Humanitarian-Pedagogical University ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(78359, 'https://ror.org/03gw47g69', 'no_lang_code', 1, 'https://ror.org/03gw47g69 VASP Software (Austria)'),
(78360, 'https://ror.org/03b8vas82', 'en', 1, 'https://ror.org/03b8vas82 National Atmospheric Deposition Program'),
(78361, 'https://ror.org/04va4vg89', 'en', 1, 'https://ror.org/04va4vg89 British Beekeepers Association'),
(78362, 'https://ror.org/05564wx43', 'nl', 1, 'https://ror.org/05564wx43 Bravis Ziekenhuis'),
(78363, 'https://ror.org/05299tt38', 'no_lang_code', 1, 'https://ror.org/05299tt38 Fera Science (United Kingdom)'),
(78364, 'https://ror.org/04shkzd26', 'en', 1, 'https://ror.org/04shkzd26 Kathmandu Cancer Center'),
(78365, 'https://ror.org/0073vwb23', 'en', 1, 'https://ror.org/0073vwb23 Home and Community Care Support Services Services de soutien Ć  domicile et en milieu communautaire'),
(78366, 'https://ror.org/05cxz0w58', 'no_lang_code', 1, 'https://ror.org/05cxz0w58 Tieto (Finland)'),
(78367, 'https://ror.org/004qfsw40', 'en', 1, 'https://ror.org/004qfsw40 Salve Regina University'),
(78368, 'https://ror.org/00qdtba35', 'en', 1, 'https://ror.org/00qdtba35 Shandong Institute of Automation å±±äøœēœē§‘å­¦é™¢č‡ŖåŠØåŒ–ē ”ē©¶ę‰€ęˆ'),
(78369, 'https://ror.org/01a5bnn19', 'en', 1, 'https://ror.org/01a5bnn19 Groundswell Fund'),
(78370, 'https://ror.org/014yn7y10', 'en', 1, 'https://ror.org/014yn7y10 Justiitsministeerium Ministry of Justice'),
(78371, 'https://ror.org/059cpzx98', 'en', 1, 'https://ror.org/059cpzx98 Harvard Forest Long Term Ecological Research'),
(78372, 'https://ror.org/02rh3fk68', 'no_lang_code', 1, 'https://ror.org/02rh3fk68 Senzoku Gakuen College of Music ę“—č¶³å­¦åœ’éŸ³ę„½å¤§å­¦'),
(78373, 'https://ror.org/00g2qdz89', 'es', 1, 'https://ror.org/00g2qdz89 Universidad de la Ciudad de Buenos Aires'),
(78374, 'https://ror.org/0257qw677', 'en', 1, 'https://ror.org/0257qw677 Moscow Automobile and Road Construction State Technical University Московский Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾-Горожный Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(78375, 'https://ror.org/03w2cyv53', 'en', 1, 'https://ror.org/03w2cyv53 Johnson & Wales University'),
(78376, 'https://ror.org/00vqyrr20', 'en', 1, 'https://ror.org/00vqyrr20 Platov South-Russian State Polytechnic University Южно-Российский Š³Š¾ŃŃƒŠ“арственный политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ (ŠŠŸŠ˜) имени М.И. ŠŸŠ»Š°Ń‚Š¾Š²Š°'),
(78377, 'https://ror.org/00baf2h95', 'id', 1, 'https://ror.org/00baf2h95 Universitas ''Aisyiyah Bandung'),
(78378, 'https://ror.org/00xfy8b60', 'en', 1, 'https://ror.org/00xfy8b60 Congregation Emanu El of New York'),
(78379, 'https://ror.org/00g2xk477', 'en', 1, 'https://ror.org/00g2xk477 Hunter College'),
(78380, 'https://ror.org/021a3gb32', 'en', 1, 'https://ror.org/021a3gb32 Nizhny Novgorod Academy of the Ministry of Internal Affairs of Russia ŠŠ˜Š–Š•Š“ŠžŠ ŠžŠ”Š”ŠšŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(78381, 'https://ror.org/04kbdbb89', 'en', 1, 'https://ror.org/04kbdbb89 Hellenic Institute of Metrology Ελληνικο Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻ…Ļ„Īæ ĪœĪµĻ„ĻĪæĪ»ĪæĪ³Ī¹Ī±Ļ‚'),
(78382, 'https://ror.org/04k7qb226', 'no_lang_code', 1, 'https://ror.org/04k7qb226 Kattaikkuttu Sangam'),
(78383, 'https://ror.org/01d1z8s73', 'en', 1, 'https://ror.org/01d1z8s73 Rostov State University of Economics Ростовский Š³Š¾ŃŃƒŠ“арственный ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(78384, 'https://ror.org/05pzxer45', 'nl', 1, 'https://ror.org/05pzxer45 AZ Sint-Lucas'),
(78385, 'https://ror.org/03re8tv59', 'en', 1, 'https://ror.org/03re8tv59 Owensboro Health'),
(78386, 'https://ror.org/051etvk19', 'no_lang_code', 1, 'https://ror.org/051etvk19 Selective Catalytic Reduction (United States)'),
(78387, 'https://ror.org/025h9kw94', 'en', 1, 'https://ror.org/025h9kw94 Asahikawa Medical University ę—­å·åŒ»ē§‘å¤§å­¦'),
(78388, 'https://ror.org/01m7aex78', 'en', 1, 'https://ror.org/01m7aex78 Istituto Nazionale di Metrologia delle Radiazioni Ionizzanti National Institute of Ionizing Radiation Metrology'),
(78389, 'https://ror.org/04wvptk03', 'no_lang_code', 1, 'https://ror.org/04wvptk03 Heineken (Netherlands) Heineken Pilsener'),
(78390, 'https://ror.org/052h6a339', 'en', 1, 'https://ror.org/052h6a339 Glaucoma Research Society of Canada SociƩtƩ canadienne de recherche sur le glaucome'),
(78391, 'https://ror.org/031ffw737', 'no_lang_code', 1, 'https://ror.org/031ffw737 Metrica (United States)'),
(78392, 'https://ror.org/039swsa61', 'no_lang_code', 1, 'https://ror.org/039swsa61 ProQuest (United States)'),
(78393, 'https://ror.org/00besvm65', 'no_lang_code', 1, 'https://ror.org/00besvm65 Technicolor (Germany)'),
(78394, 'https://ror.org/051x4k077', 'en', 1, 'https://ror.org/051x4k077 Higher Institute for Artistic Industries Roma Istituto Superiore per le Industrie Artistiche'),
(78395, 'https://ror.org/02e16g411', 'en', 1, 'https://ror.org/02e16g411 Lietuvos socialiniu mokslu centras Lithuanian Centre for Social Sciences'),
(78396, 'https://ror.org/00vyp4f52', 'no_lang_code', 1, 'https://ror.org/00vyp4f52 Wikov (Czechia)'),
(78397, 'https://ror.org/05044fm39', 'en', 1, 'https://ror.org/05044fm39 Tambov Military Aviation Engineering Institute Тамбовский военный авиационный инженерный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(78398, 'https://ror.org/01x500w59', 'en', 1, 'https://ror.org/01x500w59 Flexible Learning Association of New Zealand'),
(78399, 'https://ror.org/00mcxye41', 'en', 1, 'https://ror.org/00mcxye41 National Biodiversity Network Trust'),
(78400, 'https://ror.org/03ad6kn10', 'en', 1, 'https://ror.org/03ad6kn10 Council for Scientific and Industrial Research'),
(78401, 'https://ror.org/054gg1x85', 'en', 1, 'https://ror.org/054gg1x85 Sha''ar Menashe Mental Health Center ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש- בית חולים שער מנשה'),
(78402, 'https://ror.org/02mnqgw97', 'no_lang_code', 1, 'https://ror.org/02mnqgw97 Rocscience (Canada)'),
(78403, 'https://ror.org/001m9j981', 'no_lang_code', 1, 'https://ror.org/001m9j981 IriSys (United States)'),
(78404, 'https://ror.org/024ymtz97', 'de', 1, 'https://ror.org/024ymtz97 Deutsches Historisches Institut London German Historical Institute London'),
(78405, 'https://ror.org/046xg2p88', 'en', 1, 'https://ror.org/046xg2p88 Canadian Agricultural Economics Society SociƩtƩ Canadienne d''AgroƩconomie'),
(78406, 'https://ror.org/04qk6pt94', 'en', 1, 'https://ror.org/04qk6pt94 UniversitĆ© d''Ɖtat wright Wright State University'),
(78407, 'https://ror.org/05374b979', 'en', 1, 'https://ror.org/05374b979 Torbay and South Devon NHS Foundation Trust'),
(78408, 'https://ror.org/00gdxsk50', 'no_lang_code', 1, 'https://ror.org/00gdxsk50 Surgical Innovations (United Kingdom)'),
(78409, 'https://ror.org/00mkh7345', 'en', 1, 'https://ror.org/00mkh7345 Hubbard Brook Long Term Ecological Research'),
(78410, 'https://ror.org/004jfgt58', 'en', 1, 'https://ror.org/004jfgt58 Mason County District Library'),
(78411, 'https://ror.org/05ykb3m36', 'en', 1, 'https://ror.org/05ykb3m36 Helse- og omsorgsministeren Ministry of Health and Care Services'),
(78412, 'https://ror.org/05cww1c54', 'no_lang_code', 1, 'https://ror.org/05cww1c54 GIRD Systems (United States)'),
(78413, 'https://ror.org/04mvr1r74', 'en', 1, 'https://ror.org/04mvr1r74 Intermountain Healthcare'),
(78414, 'https://ror.org/0507wc250', 'no_lang_code', 1, 'https://ror.org/0507wc250 Mavenir (Israel)'),
(78415, 'https://ror.org/02q4yjc78', 'en', 1, 'https://ror.org/02q4yjc78 International College of Defence Studies äø­å›½äŗŗę°‘č§£ę”¾å†›å›½é˜²å¤§å­¦å›½é™…é˜²åŠ”å­¦é™¢'),
(78416, 'https://ror.org/02amckb22', 'en', 1, 'https://ror.org/02amckb22 Continental Scientific Drilling Facility'),
(78417, 'https://ror.org/02ben6x95', 'en', 1, 'https://ror.org/02ben6x95 Ministry of Jobs, Economic Recovery and Innovation'),
(78418, 'https://ror.org/04se57789', 'en', 1, 'https://ror.org/04se57789 Fondazione Museo Civico di Rovereto Rovereto Civic Museum Foundation'),
(78419, 'https://ror.org/04s8x9847', 'en', 1, 'https://ror.org/04s8x9847 Institute of New Materials å±±äøœēœē§‘å­¦é™¢ę–°ęę–™ē ”ē©¶ę‰€');
INSERT INTO `rors` VALUES
(78420, 'https://ror.org/022ah1092', 'en', 1, 'https://ror.org/022ah1092 Borowiec Astrogeodynamic Observatory Obserwatorium Astrogeodynamiczne w Borówcu'),
(78421, '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 Š”ŠøŃ€ŠµŠŗŃ†ŠøŃ˜Šµ за мере Šø Грагоцене метале'),
(78422, 'https://ror.org/024f43q37', 'de', 1, 'https://ror.org/024f43q37 Hannoversche Kinderheilanstalt'),
(78423, 'https://ror.org/019syws71', 'en', 1, 'https://ror.org/019syws71 Institute for Matching Person and Technology'),
(78424, 'https://ror.org/01x81nn04', 'en', 1, 'https://ror.org/01x81nn04 Department of Aerospace Science and Technology'),
(78425, 'https://ror.org/03ze5qn46', 'en', 1, 'https://ror.org/03ze5qn46 MUFG Bank (United Kingdom)'),
(78426, 'https://ror.org/01savtv33', 'it', 1, 'https://ror.org/01savtv33 Ospedale Papa Giovanni XXIII'),
(78427, 'https://ror.org/018j1ye79', 'en', 1, 'https://ror.org/018j1ye79 ENEA Centro Ricerche Santa Teresa ENEA Santa Teresa Research Centre'),
(78428, 'https://ror.org/019wbnq12', 'hi', 1, 'https://ror.org/019wbnq12 Ramakrishna Mission Vidyamandira ą¦°ą¦¾ą¦®ą¦•ą§ƒą¦·ą§ą¦£ মিশন'),
(78429, 'https://ror.org/03cp5cj42', 'en', 1, 'https://ror.org/03cp5cj42 Sarah Cannon Research Institute'),
(78430, 'https://ror.org/03b4ffc11', 'en', 1, 'https://ror.org/03b4ffc11 HELIN Library Consortium'),
(78431, 'https://ror.org/05wwqmm86', 'no_lang_code', 1, 'https://ror.org/05wwqmm86 P2i (United Kingdom)'),
(78432, 'https://ror.org/05b225m47', 'en', 1, 'https://ror.org/05b225m47 Kazan State University of Architecture and Engineering Казанский Š³Š¾ŃŃƒŠ“арственный Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-инженерный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(78433, 'https://ror.org/01apbn515', 'en', 1, 'https://ror.org/01apbn515 Vaganova Ballet Academy ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Русского балета имени А. ŠÆ. Вагановой'),
(78434, 'https://ror.org/013j2zh96', 'ca', 1, 'https://ror.org/013j2zh96 Institut Català d''Investigació Química Institute of Chemical Research of Catalonia'),
(78435, 'https://ror.org/02tmhn414', 'en', 1, 'https://ror.org/02tmhn414 Garraithe NÔisiúnta na Lus National Botanic Gardens of Ireland'),
(78436, 'https://ror.org/03d80m334', 'en', 1, 'https://ror.org/03d80m334 Knox'),
(78437, 'https://ror.org/02kmc2r95', 'en', 1, 'https://ror.org/02kmc2r95 Lueji A''Nkonde University Universidade Lueji A''nkonde'),
(78438, 'https://ror.org/017bfx208', 'en', 1, 'https://ror.org/017bfx208 Georgia Coastal Ecosystems Long Term Ecological Research'),
(78439, 'https://ror.org/02qezmz13', 'en', 1, 'https://ror.org/02qezmz13 Centre commun de recherche Centro Comune di Ricerca Gemeinsame Forschungsstelle Joint Research Centre'),
(78440, 'https://ror.org/01s1q0w69', 'es', 1, 'https://ror.org/01s1q0w69 Hospital Universitario La Paz'),
(78441, 'https://ror.org/0326v3v26', 'no_lang_code', 1, 'https://ror.org/0326v3v26 Acide Carbonique Pur (Belgium)'),
(78442, 'https://ror.org/04y89nz36', 'nl', 1, 'https://ror.org/04y89nz36 St. Anna Ziekenhuis'),
(78443, 'https://ror.org/007xmz366', 'nl', 1, 'https://ror.org/007xmz366 Sint Franciscus Gasthuis'),
(78444, 'https://ror.org/05gwnz115', 'no_lang_code', 1, 'https://ror.org/05gwnz115 Almayzab Digital Library Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ł…ŁŠŲ²Ų§ŲØ Ų§Ł„Ų±Ł‚Ł…ŁŠŲ©'),
(78445, 'https://ror.org/017xf1n22', 'en', 1, 'https://ror.org/017xf1n22 Railway and Canal Historical Society'),
(78446, 'https://ror.org/02en8ya84', 'en', 1, 'https://ror.org/02en8ya84 Shifa International Hospital'),
(78447, 'https://ror.org/0149cpy58', 'en', 1, 'https://ror.org/0149cpy58 Countess of Chester Hospital NHS Foundation Trust'),
(78448, 'https://ror.org/056gkt063', 'en', 1, 'https://ror.org/056gkt063 Canadian Philosophical Association L''Association Canadienne de Philosophie'),
(78449, 'https://ror.org/0582y1e41', 'nl', 1, 'https://ror.org/0582y1e41 Groene Hart Ziekenhuis'),
(78450, 'https://ror.org/01m1qsc38', 'en', 1, 'https://ror.org/01m1qsc38 Ministry of Agriculture'),
(78451, 'https://ror.org/04d713p41', 'en', 1, 'https://ror.org/04d713p41 Tameside Hospital'),
(78452, 'https://ror.org/0105s3595', 'sl', 1, 'https://ror.org/0105s3595 Å KUC Association'),
(78453, 'https://ror.org/04sgce546', 'en', 1, 'https://ror.org/04sgce546 Corner House'),
(78454, 'https://ror.org/05hkks026', 'en', 1, 'https://ror.org/05hkks026 Nizhny Tagil State Socio-Pedagogical Institute ŠŠøŠ¶Š½ŠµŃ‚Š°Š³ŠøŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(78455, 'https://ror.org/00c5bvm83', 'en', 1, 'https://ror.org/00c5bvm83 Belfast City Council'),
(78456, 'https://ror.org/02j0rkv07', 'en', 1, 'https://ror.org/02j0rkv07 Pike County Schools'),
(78457, 'https://ror.org/00dk0pe94', 'en', 1, 'https://ror.org/00dk0pe94 Randall University'),
(78458, 'https://ror.org/02hbcgp53', 'en', 1, 'https://ror.org/02hbcgp53 Arctic State Institute of Culture and Arts Арктический Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(78459, 'https://ror.org/05326dh45', 'en', 1, 'https://ror.org/05326dh45 Norfolk Public Library'),
(78460, 'https://ror.org/03mebtg66', 'en', 1, 'https://ror.org/03mebtg66 Newburgh Free Library'),
(78461, 'https://ror.org/01v1hv534', 'en', 1, 'https://ror.org/01v1hv534 MIRCORE'),
(78462, 'https://ror.org/058kzes98', 'en', 1, 'https://ror.org/058kzes98 Universiteitsmuseum Utrecht University Museum Utrecht'),
(78463, 'https://ror.org/027xkck76', 'en', 1, 'https://ror.org/027xkck76 International Water Association'),
(78464, 'https://ror.org/02967gp58', 'no_lang_code', 1, 'https://ror.org/02967gp58 Aptiv (United States)'),
(78465, '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'),
(78466, 'https://ror.org/0579jh693', 'en', 1, 'https://ror.org/0579jh693 Skin Research Center'),
(78467, 'https://ror.org/03ccbtk93', 'en', 1, 'https://ror.org/03ccbtk93 Joint Fire Science Program'),
(78468, 'https://ror.org/05xrcj819', 'it', 1, 'https://ror.org/05xrcj819 Azienda Ospedaliera Universitaria Pisana University Hospital of Pisa'),
(78469, 'https://ror.org/05q46an69', 'en', 1, 'https://ror.org/05q46an69 Hawk Mountain Sanctuary'),
(78470, 'https://ror.org/01g9vbr38', 'en', 1, 'https://ror.org/01g9vbr38 Oklahoma State University'),
(78471, 'https://ror.org/00rxpqe74', 'en', 1, 'https://ror.org/00rxpqe74 Providence College'),
(78472, 'https://ror.org/00kq45e22', 'no_lang_code', 1, 'https://ror.org/00kq45e22 Ocellus (United States)'),
(78473, 'https://ror.org/041q2mm12', 'no_lang_code', 1, 'https://ror.org/041q2mm12 Altimmune (United States)'),
(78474, 'https://ror.org/01s0tbj55', 'en', 1, 'https://ror.org/01s0tbj55 World Vision'),
(78475, 'https://ror.org/00krzbm55', 'en', 1, 'https://ror.org/00krzbm55 Luquillo Long Term Ecological Research'),
(78476, 'https://ror.org/05976ta47', 'en', 1, 'https://ror.org/05976ta47 Jornada Basin Long Term Ecological Research'),
(78477, 'https://ror.org/034tvp782', 'en', 1, 'https://ror.org/034tvp782 Institute of Biochemistry and Biophysics, Polish Academy of Sciences Instytut Biochemii i Biofizyki Polskiej Akademii Nauk'),
(78478, 'https://ror.org/054bsq212', 'en', 1, 'https://ror.org/054bsq212 Institute of Geological Sciences Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологічних наук ŠŠŠ України'),
(78479, 'https://ror.org/02cc4d683', 'no_lang_code', 1, 'https://ror.org/02cc4d683 Fluid Gravity Engineering (United Kingdom)'),
(78480, 'https://ror.org/01m1y7668', 'en', 1, 'https://ror.org/01m1y7668 The Ilya Glazunov Russian Academy of Painting, Sculpture and Architecture Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ живописи, Š²Š°ŃŠ½ŠøŃ Šø зоГчества Ильи Š“Š»Š°Š·ŃƒŠ½Š¾Š²Š°'),
(78481, 'https://ror.org/01qbp6a91', 'en', 1, 'https://ror.org/01qbp6a91 Association Canadienne des Sports en Fauteuil Roulant Wheelchair Rugby Canada'),
(78482, 'https://ror.org/01a9h7w04', 'no_lang_code', 1, 'https://ror.org/01a9h7w04 Furuno (Japan) å¤é‡Žé›»ę°—ę Ŗå¼ä¼šē¤¾'),
(78483, 'https://ror.org/05p93sx58', 'cs', 1, 'https://ror.org/05p93sx58 LĆ©Äebna Dlouhodobě Nemocných'),
(78484, 'https://ror.org/02ycyys66', 'it', 1, 'https://ror.org/02ycyys66 Istituto Ortopedico Rizzoli Rizzoli Orthopaedic Institute'),
(78485, 'https://ror.org/04wb1en98', 'de', 1, 'https://ror.org/04wb1en98 Evangelical School of Social Work & Diakonie Evangelische Hochschule für Soziale Arbeit & Diakonie'),
(78486, 'https://ror.org/03f4b7c94', 'no_lang_code', 1, 'https://ror.org/03f4b7c94 Jiangling Motors Corporation (China) ę±Ÿé“ƒę±½č½¦å…¬åø'),
(78487, 'https://ror.org/03bw8s353', 'en', 1, 'https://ror.org/03bw8s353 Southern Urals Biophysics Institute Ûžno-Ural''skij institut biofiziki Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики'),
(78488, 'https://ror.org/00e372137', 'en', 1, 'https://ror.org/00e372137 International Severe Acute Respiratory and Emerging Infection Consortium'),
(78489, 'https://ror.org/02gf1cx07', 'en', 1, 'https://ror.org/02gf1cx07 Chinese Mathematical Society äø­å›½ę•°å­¦ä¼š'),
(78490, 'https://ror.org/04wny3163', 'en', 1, 'https://ror.org/04wny3163 British Society for Geomorphology'),
(78491, 'https://ror.org/01rnt9r23', 'en', 1, 'https://ror.org/01rnt9r23 Orot Israel College ×ž×›×œ×œ×Ŗ אורות ×™×©×Ø××œ'),
(78492, 'https://ror.org/049p9j193', 'en', 1, 'https://ror.org/049p9j193 Kent and Medway Medical School'),
(78493, 'https://ror.org/01mwx9v75', 'no_lang_code', 1, 'https://ror.org/01mwx9v75 Electrolux (Italy)'),
(78494, 'https://ror.org/04y8d6y55', 'en', 1, 'https://ror.org/04y8d6y55 Shandong Academy of Sciences å±±äøœēœē§‘å­¦é™¢'),
(78495, 'https://ror.org/05nfq3p69', 'en', 1, 'https://ror.org/05nfq3p69 Chamber of Commerce of Metropolitan Montreal Chambre de commerce du MontrƩal mƩtropolitain'),
(78496, 'https://ror.org/027vts844', 'nl', 1, 'https://ror.org/027vts844 Canisius-Wilhelmina Ziekenhuis'),
(78497, 'https://ror.org/05k7rm370', 'no_lang_code', 1, 'https://ror.org/05k7rm370 Cougaar Software (United States)'),
(78498, 'https://ror.org/03dk2gk58', 'en', 1, 'https://ror.org/03dk2gk58 Guangdong Greater Bay Area Institute of Integrated Circuit and System å¹æäøœēœå¤§ę¹¾åŒŗé›†ęˆē”µč·ÆäøŽē³»ē»Ÿåŗ”ē”Øē ”ē©¶é™¢'),
(78499, 'https://ror.org/02w0rsp42', 'en', 1, 'https://ror.org/02w0rsp42 Conseil des relations internationales de MontrƩal Montreal Council on Foreign Relations'),
(78500, 'https://ror.org/049z73212', 'en', 1, 'https://ror.org/049z73212 Institute of Social and Political Psychology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†Ń–Š°Š»ŃŒŠ½Š¾Ń— та політичної психології ŠŠŠŸŠ України'),
(78501, 'https://ror.org/04enhpe73', 'en', 1, 'https://ror.org/04enhpe73 Leibniz Institute of Atmospheric Physics at the Rostock University Leibniz-Institut für Atmosphärenphysik'),
(78502, 'https://ror.org/00qvqt255', 'no_lang_code', 1, 'https://ror.org/00qvqt255 Pepsi (United States)'),
(78503, 'https://ror.org/05w88pj86', 'en', 1, 'https://ror.org/05w88pj86 Institute for Biological Systems Istituto per i Sistemi Biologici'),
(78504, 'https://ror.org/01t7act74', 'no_lang_code', 1, 'https://ror.org/01t7act74 Ultra Electronics (United States)'),
(78505, 'https://ror.org/05k1m9s26', 'en', 1, 'https://ror.org/05k1m9s26 ENEA Brindisi Research Centre ENEA Centro Ricerche Brindisi'),
(78506, 'https://ror.org/05fyd4h04', 'en', 1, 'https://ror.org/05fyd4h04 Parks and Wildlife Commission of the Northern Territory'),
(78507, 'https://ror.org/03zs8ga83', 'tr', 1, 'https://ror.org/03zs8ga83 Oku Okut Association Oku Okut Derneği'),
(78508, 'https://ror.org/01z1gye03', 'en', 1, 'https://ror.org/01z1gye03 Institute for Research in Biomedicine'),
(78509, 'https://ror.org/006hbbw23', 'en', 1, 'https://ror.org/006hbbw23 Ohio University Eastern'),
(78510, 'https://ror.org/0028hwj42', 'en', 1, 'https://ror.org/0028hwj42 St. Petersburg Research Center of the Russian Academy of Sciences Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š ŠŠ'),
(78511, 'https://ror.org/046ghm278', 'es', 1, 'https://ror.org/046ghm278 Instituto Peruano de Orientación Psicológica'),
(78512, 'https://ror.org/041swk623', 'en', 1, 'https://ror.org/041swk623 Heatherwood Hospital'),
(78513, 'https://ror.org/01e7h5v19', 'en', 1, 'https://ror.org/01e7h5v19 CRC Robotics'),
(78514, 'https://ror.org/01akz7g58', 'en', 1, 'https://ror.org/01akz7g58 Belarusian State Institute for Metrology Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(78515, 'https://ror.org/04a8k4p47', 'en', 1, 'https://ror.org/04a8k4p47 Institute for Informatics and Automation Problems'),
(78516, 'https://ror.org/03yqekx34', 'no_lang_code', 1, 'https://ror.org/03yqekx34 Atossa Therapeutics (United States)'),
(78517, 'https://ror.org/034eyya14', 'no_lang_code', 1, 'https://ror.org/034eyya14 Computable Publishing'),
(78518, 'https://ror.org/03dcrhc18', 'en', 1, 'https://ror.org/03dcrhc18 Central Midlands Council of Governments'),
(78519, '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'),
(78520, 'https://ror.org/04g1j1w90', 'no_lang_code', 1, 'https://ror.org/04g1j1w90 DataKind'),
(78521, 'https://ror.org/02khqd465', 'it', 1, 'https://ror.org/02khqd465 ENEA Casaccia Research Centre ENEA Centro Ricerche Casaccia'),
(78522, 'https://ror.org/04zc3wd06', 'no_lang_code', 1, 'https://ror.org/04zc3wd06 Public Power Corporation (Greece)'),
(78523, 'https://ror.org/04z20c169', 'en', 1, 'https://ror.org/04z20c169 Moline Public Library'),
(78524, 'https://ror.org/01wtczc25', 'es', 1, 'https://ror.org/01wtczc25 Universidad Internacional de Ciencia y TecnologĆ­a - UNICyT'),
(78525, 'https://ror.org/00kce5954', 'no_lang_code', 1, 'https://ror.org/00kce5954 L3Harris (United Kingdom)'),
(78526, 'https://ror.org/05rgme147', 'en', 1, 'https://ror.org/05rgme147 FitzPatrick Institute of African Ornithology'),
(78527, 'https://ror.org/04bpx6z13', 'en', 1, 'https://ror.org/04bpx6z13 The All-Russian State University of Justice Всероссийский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŽŃŃ‚ŠøŃ†ŠøŠø'),
(78528, 'https://ror.org/04djymq25', 'en', 1, 'https://ror.org/04djymq25 Kamioka Observatory ē„žå²”å®‡å®™ē“ ē²’å­ē ”ē©¶ę–½čØ­'),
(78529, 'https://ror.org/03ym65z81', 'en', 1, 'https://ror.org/03ym65z81 Deutsches Zentrum für Integrations- und Migrationsforschung German Center for Integration and Migration Research'),
(78530, 'https://ror.org/017nweb49', 'en', 1, 'https://ror.org/017nweb49 Roger Williams University'),
(78531, 'https://ror.org/05aw7p057', 'en', 1, 'https://ror.org/05aw7p057 Geological Survey of Slovenia GeoloŔki zavod Slovenije'),
(78532, 'https://ror.org/04a8rd767', 'en', 1, 'https://ror.org/04a8rd767 Max Planck Institute for the Study of Crime, Security and Law Max-Planck-Institut zur Erforschung von KriminalitƤt, Sicherheit und Recht'),
(78533, 'https://ror.org/05510vn56', 'en', 1, 'https://ror.org/05510vn56 Federico Santa Marƭa Technical University Universidad TƩcnica Federico Santa Marƭa'),
(78534, 'https://ror.org/0244nkc36', 'en', 1, 'https://ror.org/0244nkc36 Institute for Economics and Forecasting of the National Academy of Sciences of Ukraine Š“Š¾ŃŃƒŠ“Š°Ń€Ń твенное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ā€œŠ˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Š½ŠøŃ ŠŠŠ Š£ŠŗŃ€Š°ŠøŠ½Ń‹ā€ Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіки та ŠæŃ€Š¾Š³Š½Š¾Š·ŃƒŠ²Š°Š½Š½Ń ŠŠŠ Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(78535, 'https://ror.org/00ftrxq20', 'en', 1, 'https://ror.org/00ftrxq20 Asahikawa Medical College Hospital ę—­å·åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(78536, 'https://ror.org/05k87xn20', 'iu', 1, 'https://ror.org/05k87xn20 Inuit Tapiriit Kanatami'),
(78537, 'https://ror.org/022akpv96', 'en', 1, 'https://ror.org/022akpv96 Delhi Pharmaceutical Science and Research University'),
(78538, 'https://ror.org/03zk15524', 'en', 1, 'https://ror.org/03zk15524 Penza State Pedagogical University'),
(78539, 'https://ror.org/03c75ky76', 'en', 1, 'https://ror.org/03c75ky76 Frimley Park Hospital'),
(78540, 'https://ror.org/04zcfra07', 'no_lang_code', 1, 'https://ror.org/04zcfra07 FlowJo (United States)'),
(78541, 'https://ror.org/03davk141', 'en', 1, 'https://ror.org/03davk141 Florida Coastal Everglades Long Term Ecological Research'),
(78542, 'https://ror.org/01dhcyx48', 'en', 1, 'https://ror.org/01dhcyx48 Cary Institute of Ecosystem Studies'),
(78543, 'https://ror.org/02ecs6h97', 'en', 1, 'https://ror.org/02ecs6h97 Fayette County Public Schools'),
(78544, 'https://ror.org/01tx47076', 'fr', 1, 'https://ror.org/01tx47076 Ɖcole des Cadres'),
(78545, 'https://ror.org/038rrt316', 'en', 1, 'https://ror.org/038rrt316 Lincoln Public Library'),
(78546, 'https://ror.org/00r1w0907', 'en', 1, 'https://ror.org/00r1w0907 Knowledge Network for Biocomplexity'),
(78547, 'https://ror.org/053njym08', 'nl', 1, 'https://ror.org/053njym08 Laurentius Ziekenhuis'),
(78548, 'https://ror.org/05aqbyb84', 'en', 1, 'https://ror.org/05aqbyb84 State Agricultural Academy of Velikie Luki Š’ŠµŠ»ŠøŠŗŠ¾Š»ŃƒŠŗŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(78549, 'https://ror.org/02qb3f692', 'en', 1, 'https://ror.org/02qb3f692 St Anna Children''s Hospital St. Anna Kinderspital'),
(78550, 'https://ror.org/04j81w290', 'en', 1, 'https://ror.org/04j81w290 Association Canadienne des GƩographes Canadian Association of Geographers'),
(78551, 'https://ror.org/02mxd1a54', 'no_lang_code', 1, 'https://ror.org/02mxd1a54 Kulicke & Soffa (United States)'),
(78552, 'https://ror.org/021p8a188', 'en', 1, 'https://ror.org/021p8a188 Ministry of Economy ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ за економија'),
(78553, 'https://ror.org/0496k0e74', 'en', 1, 'https://ror.org/0496k0e74 ENEA Bologna Research Centre ENEA Centro Ricerche Bologna'),
(78554, 'https://ror.org/05kkkes98', 'en', 1, 'https://ror.org/05kkkes98 Beijing Ditan Hospital åŒ—äŗ¬åœ°å›åŒ»é™¢'),
(78555, 'https://ror.org/04rw5yk74', 'en', 1, 'https://ror.org/04rw5yk74 Yellowstone National Park'),
(78556, 'https://ror.org/02tqqrq23', 'nl', 1, 'https://ror.org/02tqqrq23 Flevoziekenhuis'),
(78557, 'https://ror.org/01q8ytn75', 'en', 1, 'https://ror.org/01q8ytn75 Center for Northern Studies Centre d''Ʃtudes nordiques'),
(78558, 'https://ror.org/00d9nf164', 'es', 1, 'https://ror.org/00d9nf164 Fundación Grupo para la Investigación, Formación, y Edición Transdisciplinar'),
(78559, 'https://ror.org/03xjqsg18', 'en', 1, 'https://ror.org/03xjqsg18 Real Instituto y Observatorio de la Armada Royal Institute and Observatory of the Spanish Navy'),
(78560, 'https://ror.org/02qqjk369', 'en', 1, 'https://ror.org/02qqjk369 Institute for Digitalisation of Education of the NAES of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цифровізації освіти ŠŠŠŸŠ України'),
(78561, 'https://ror.org/026h6vx82', 'en', 1, 'https://ror.org/026h6vx82 AgrƔrminisztƩrium Ministry of Agriculture'),
(78562, 'https://ror.org/00306v942', 'no_lang_code', 1, 'https://ror.org/00306v942 Sivantos (Germany)'),
(78563, 'https://ror.org/04f7jc139', 'de', 1, 'https://ror.org/04f7jc139 Bremen University of Applied Sciences Hochschule Bremen'),
(78564, 'https://ror.org/04c1gbz02', 'en', 1, 'https://ror.org/04c1gbz02 Keene State College'),
(78565, 'https://ror.org/029kfxt47', 'no_lang_code', 1, 'https://ror.org/029kfxt47 International Water Association Publishing'),
(78566, 'https://ror.org/04ffjez92', 'en', 1, 'https://ror.org/04ffjez92 Cell Therapy Catapult'),
(78567, 'https://ror.org/03fzkfr34', 'de', 1, 'https://ror.org/03fzkfr34 Landesinstitut für Pädagogik und Medien'),
(78568, 'https://ror.org/02c8ctc21', 'no_lang_code', 1, 'https://ror.org/02c8ctc21 Beijing Institute of Radio Metrology and Measurement åŒ—äŗ¬ę— ēŗæē”µęµ‹é‡ē ”ē©¶ę‰€'),
(78569, 'https://ror.org/01q1fj824', 'en', 1, 'https://ror.org/01q1fj824 DRDO Young Scientist Laboratory'),
(78570, 'https://ror.org/02578cn21', 'no_lang_code', 1, 'https://ror.org/02578cn21 Parallel Quantum Solutions (United States)'),
(78571, 'https://ror.org/05mqfgg03', 'en', 1, 'https://ror.org/05mqfgg03 Horlivka Institute for Foreign Languages Š“Š¾Ń€Š»Ń–Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ іноземних мов'),
(78572, 'https://ror.org/00e27px16', 'no_lang_code', 1, 'https://ror.org/00e27px16 Meito Sangyo (Japan)'),
(78573, 'https://ror.org/04sg54v37', 'no_lang_code', 1, 'https://ror.org/04sg54v37 Enzen (India)'),
(78574, 'https://ror.org/02mv6r745', 'en', 1, 'https://ror.org/02mv6r745 Utah System of Higher Education'),
(78575, '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'),
(78576, 'https://ror.org/038t2yw28', 'en', 1, 'https://ror.org/038t2yw28 Institut zur QualitƤtsentwicklung im Bildungswesen Institute for Educational Quality Improvement'),
(78577, 'https://ror.org/051samc18', 'en', 1, 'https://ror.org/051samc18 Llyfrgell Genedlaethol yr Alban National Library of Scotland'),
(78578, 'https://ror.org/040fv5d16', 'de', 1, 'https://ror.org/040fv5d16 DVGW-Forschungsstelle am Engler-Bunte-Institut des Karlsruher Instituts für Technologie'),
(78579, 'https://ror.org/05ktb0281', 'en', 1, 'https://ror.org/05ktb0281 Clifton Hospital'),
(78580, 'https://ror.org/02mh24h06', 'en', 1, 'https://ror.org/02mh24h06 Mastery Charter Schools'),
(78581, 'https://ror.org/047eze012', 'en', 1, 'https://ror.org/047eze012 HƓpital juif de rƩadaptation Jewish Rehabilitation Hospital'),
(78582, 'https://ror.org/03s74ag37', 'en', 1, 'https://ror.org/03s74ag37 Green Chemistry Zielona Chemia'),
(78583, 'https://ror.org/03q5df791', 'en', 1, 'https://ror.org/03q5df791 Miller Dwan Foundation'),
(78584, 'https://ror.org/045dz8764', 'it', 1, 'https://ror.org/045dz8764 Astronomical Observatory of Cagliari Osservatorio Astronomico di Cagliari'),
(78585, 'https://ror.org/05b5rpz24', 'no_lang_code', 1, 'https://ror.org/05b5rpz24 PRT Growing Services (Canada)'),
(78586, 'https://ror.org/003y2cj37', 'no_lang_code', 1, 'https://ror.org/003y2cj37 Q Chem (United States)'),
(78587, 'https://ror.org/04e6fpr42', 'en', 1, 'https://ror.org/04e6fpr42 Downers Grove Public Library'),
(78588, 'https://ror.org/05de8dt65', 'en', 1, 'https://ror.org/05de8dt65 Spokane Public Library'),
(78589, 'https://ror.org/04gmgt288', 'no_lang_code', 1, 'https://ror.org/04gmgt288 Tikkurila (Finland)'),
(78590, 'https://ror.org/05ma3ex40', 'en', 1, 'https://ror.org/05ma3ex40 Specialized Cardiosurgical Clinical Hospital named after Academician B.A. Korolev Š”ŠæŠµŃ†ŠøŠ°Š»ŠøŠ·ŠøŃ€Š¾Š²Š°Š½Š½Š°Ń ŠŗŠ°Ń€Š“ŠøŠ¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(78591, 'https://ror.org/00gnxy738', 'en', 1, 'https://ror.org/00gnxy738 UK Web Archive'),
(78592, 'https://ror.org/010sh9e25', 'no_lang_code', 1, 'https://ror.org/010sh9e25 Novana (United States)'),
(78593, 'https://ror.org/022kw3738', 'it', 1, 'https://ror.org/022kw3738 Centro Ricerche Musicali'),
(78594, 'https://ror.org/016drwn73', 'es', 1, 'https://ror.org/016drwn73 Universidad de las Artes'),
(78595, 'https://ror.org/055ja0v85', 'en', 1, 'https://ror.org/055ja0v85 Wheaton College - Massachusetts'),
(78596, 'https://ror.org/004z16v08', 'en', 1, 'https://ror.org/004z16v08 Saint Louis College La Union'),
(78597, 'https://ror.org/00vyr7c31', 'nl', 1, 'https://ror.org/00vyr7c31 Rode Kruis Ziekenhuis'),
(78598, 'https://ror.org/0560hrn40', 'en', 1, 'https://ror.org/0560hrn40 Poplar Creek Public Library District'),
(78599, 'https://ror.org/00g9bca48', 'no_lang_code', 1, 'https://ror.org/00g9bca48 Biotronik (Singapore)'),
(78600, 'https://ror.org/01vvnn702', 'no_lang_code', 1, 'https://ror.org/01vvnn702 Bühler (Switzerland)'),
(78601, 'https://ror.org/05r1gew95', 'no_lang_code', 1, 'https://ror.org/05r1gew95 Abraxis (United States)'),
(78602, 'https://ror.org/01a73vp68', 'en', 1, 'https://ror.org/01a73vp68 Schaumburg Township District Library'),
(78603, 'https://ror.org/05w8df681', 'nl', 1, 'https://ror.org/05w8df681 Deventer Ziekenhuis'),
(78604, 'https://ror.org/01z0h5j41', 'no_lang_code', 1, 'https://ror.org/01z0h5j41 Sunrise Medical (United States)'),
(78605, 'https://ror.org/01q6zce06', 'en', 1, 'https://ror.org/01q6zce06 Bundesamt für Kartographie und Geodäsie Federal Agency for Cartography and Geodesy'),
(78606, 'https://ror.org/05nczym02', 'en', 1, 'https://ror.org/05nczym02 ENEA Centro Ricerche Saluggia ENEA Saluggia Research Centre'),
(78607, 'https://ror.org/00jyds089', 'no_lang_code', 1, 'https://ror.org/00jyds089 NotABook (United States)'),
(78608, 'https://ror.org/05sqads14', 'fr', 1, 'https://ror.org/05sqads14 Laboratoire de mƩtrologie de la Direction GƩnƩrale des Transmissions et de l''Informatique'),
(78609, 'https://ror.org/03s2agk53', 'en', 1, 'https://ror.org/03s2agk53 Norsk barnebokinstitutt The Norwegian Institute for Children’s Books'),
(78610, 'https://ror.org/049zrt876', 'no_lang_code', 1, 'https://ror.org/049zrt876 AgBioData'),
(78611, 'https://ror.org/04sn06036', 'en', 1, 'https://ror.org/04sn06036 Institute for Experimental Endocrinology and Oncology Istituto per l''Endocrinologia e l''Oncologica Sperimentale "G. Salvatore"'),
(78612, 'https://ror.org/046pk3455', 'en', 1, 'https://ror.org/046pk3455 Institut Des Communications Graphiques Du QuƩbec Printability And Graphic Communications Institute'),
(78613, 'https://ror.org/009a03q22', 'en', 1, 'https://ror.org/009a03q22 Main Center of Special Monitoring Головний центр ŃŠæŠµŃ†Ń–Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŽ'),
(78614, 'https://ror.org/03v25yt44', 'en', 1, 'https://ror.org/03v25yt44 Spartanburg Regional Healthcare System'),
(78615, 'https://ror.org/00ezf9p03', 'en', 1, 'https://ror.org/00ezf9p03 Cherkasy Medical Academy Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠ° меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(78616, 'https://ror.org/02f8mda22', 'no_lang_code', 1, 'https://ror.org/02f8mda22 Quality and Reliability (Greece)'),
(78617, 'https://ror.org/03ng8vp43', 'en', 1, 'https://ror.org/03ng8vp43 Arctic State Agrotechnological University ŠÆŠŗŃƒŃ‚ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(78618, 'https://ror.org/02x6n9690', 'de', 1, 'https://ror.org/02x6n9690 Landesamt für Geologie, Rohstoffe und Bergbau'),
(78619, 'https://ror.org/04s98d524', 'no_lang_code', 1, 'https://ror.org/04s98d524 Qeios (United Kingdom)'),
(78620, 'https://ror.org/04b6ahj46', 'es', 1, 'https://ror.org/04b6ahj46 Universidad Independiente'),
(78621, 'https://ror.org/00vpxf870', 'en', 1, 'https://ror.org/00vpxf870 Grand Teton National Park'),
(78622, 'https://ror.org/01tyh8d23', 'es', 1, 'https://ror.org/01tyh8d23 Ministerio de Salud PĆŗblica'),
(78623, 'https://ror.org/01wx1q736', 'en', 1, 'https://ror.org/01wx1q736 Kryvyi Rih State Pedagogical University ŠšŃ€ŠøŠ²Š¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(78624, 'https://ror.org/00gez1r32', 'en', 1, 'https://ror.org/00gez1r32 Young Men''s Christian Association'),
(78625, 'https://ror.org/03k79cn98', 'en', 1, 'https://ror.org/03k79cn98 Employment and Social Development Canada Ministère des Ressources humaines et Développement des compétences'),
(78626, 'https://ror.org/009rk8684', 'no_lang_code', 1, 'https://ror.org/009rk8684 Kiwa (Germany)'),
(78627, 'https://ror.org/03wf7ed39', 'en', 1, 'https://ror.org/03wf7ed39 Wexham Park Hospital'),
(78628, 'https://ror.org/04r8kt465', 'en', 1, 'https://ror.org/04r8kt465 HĆøgskolen for yrkesfag HĆøyskolen for yrkesfag University College of Vocational Education'),
(78629, 'https://ror.org/022p86748', 'en', 1, 'https://ror.org/022p86748 GW4 Facility for High-Resolution Electron Cryo-Microscopy'),
(78630, 'https://ror.org/012p54t81', 'no_lang_code', 1, 'https://ror.org/012p54t81 Gemalto (France)'),
(78631, 'https://ror.org/04k738y75', 'en', 1, 'https://ror.org/04k738y75 Plano Public Library System'),
(78632, 'https://ror.org/05mya2w74', 'en', 1, 'https://ror.org/05mya2w74 Combined Military Hospital مؓترکہ فوجی ہسپتال'),
(78633, 'https://ror.org/015dkz579', 'en', 1, 'https://ror.org/015dkz579 Bread for the World Institute'),
(78634, 'https://ror.org/03q36cn05', 'no_lang_code', 1, 'https://ror.org/03q36cn05 Uks'),
(78635, 'https://ror.org/056h76p35', 'no_lang_code', 1, 'https://ror.org/056h76p35 Comsol (United Kingdom)'),
(78636, 'https://ror.org/0448sav47', 'no_lang_code', 1, 'https://ror.org/0448sav47 Castor'),
(78637, 'https://ror.org/03jrxta72', 'en', 1, 'https://ror.org/03jrxta72 Princess Margaret Hospital ē‘Ŗå˜‰ēƒˆé†«é™¢'),
(78638, 'https://ror.org/04assc746', 'es', 1, 'https://ror.org/04assc746 Asociación por los Derechos Civiles'),
(78639, 'https://ror.org/02t359070', 'en', 1, 'https://ror.org/02t359070 Kazan State Academy of Veterinary Medicine named after N.E. Bauman ŠšŠ°Š·Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ветеринарной меГицины имени Š.Š­. Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(78640, 'https://ror.org/01cfpzw88', 'de', 1, 'https://ror.org/01cfpzw88 Deutsches Institut für Japanstudien Tokyo German Institute for Japanese Studies ćƒ‰ć‚¤ćƒ„ę—„ęœ¬ē ”ē©¶ę‰€'),
(78641, 'https://ror.org/007bdrf88', 'de', 1, 'https://ror.org/007bdrf88 Gesundheitsamt Gesundheitsamt Frankfurt'),
(78642, 'https://ror.org/039wjmj68', 'no_lang_code', 1, 'https://ror.org/039wjmj68 Atlas Copco (Germany)'),
(78643, 'https://ror.org/04qrv9y41', 'en', 1, 'https://ror.org/04qrv9y41 Episcopal High School'),
(78644, 'https://ror.org/048ycfv73', 'de', 1, 'https://ror.org/048ycfv73 Klinikum Kassel'),
(78645, 'https://ror.org/05xz2k587', 'fr', 1, 'https://ror.org/05xz2k587 Paris AƩroport'),
(78646, 'https://ror.org/02dhqpj43', 'fr', 1, 'https://ror.org/02dhqpj43 Centre de rƩadaptation Lethbridge-Layton-Mackay Lethbridge-Layton-Mackay Rehabilitation Centre'),
(78647, 'https://ror.org/02qeczg43', 'en', 1, 'https://ror.org/02qeczg43 St. Mary''s Medical Center'),
(78648, 'https://ror.org/03kxagd85', 'de', 1, 'https://ror.org/03kxagd85 Helios Dr. Horst Schmidt Kliniken Wiesbaden'),
(78649, 'https://ror.org/010dcp921', 'en', 1, 'https://ror.org/010dcp921 California Current Ecosystem Long Term Ecological Research'),
(78650, 'https://ror.org/03qh1f279', 'nl', 1, 'https://ror.org/03qh1f279 IJsselland Ziekenhuis'),
(78651, 'https://ror.org/05r9gag74', 'en', 1, 'https://ror.org/05r9gag74 Hubbard Brook Research Foundation'),
(78652, 'https://ror.org/0104cy831', 'en', 1, 'https://ror.org/0104cy831 Community College of Rhode Island'),
(78653, 'https://ror.org/02wgx3e98', 'en', 1, 'https://ror.org/02wgx3e98 Sohag University Ų¬Ų§Ł…Ų¹Ų© Ų³ŁˆŁ‡Ų§Ų¬'),
(78654, 'https://ror.org/02qczxe62', 'en', 1, 'https://ror.org/02qczxe62 Black Rock Forest Consortium'),
(78655, 'https://ror.org/01fnyyq46', 'es', 1, 'https://ror.org/01fnyyq46 Universidad DomĆ­nico Americana'),
(78656, 'https://ror.org/02pcbw160', 'en', 1, 'https://ror.org/02pcbw160 Chihlee Institute of Technology č‡“ē†ē§‘ęŠ€å¤§å­ø'),
(78657, 'https://ror.org/03j1d4266', 'no_lang_code', 1, 'https://ror.org/03j1d4266 Anevo (Greece)'),
(78658, 'https://ror.org/03862t386', 'nl', 1, 'https://ror.org/03862t386 Ziekenhuis Gelderse Vallei'),
(78659, 'https://ror.org/03hbhg091', 'en', 1, 'https://ror.org/03hbhg091 Lviv Academy of Commerce Š›ŃŒŠ²Š¾Š²ŃŠŗŠ°Ń ŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° комерційна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(78660, 'https://ror.org/01sepf450', 'en', 1, 'https://ror.org/01sepf450 Wisconsin State Law Library'),
(78661, 'https://ror.org/05e73v668', 'nl', 1, 'https://ror.org/05e73v668 Ziekenhuis Amstelland'),
(78662, 'https://ror.org/0577e4z60', 'en', 1, 'https://ror.org/0577e4z60 Grand Council of the Crees'),
(78663, 'https://ror.org/04ev01y75', 'en', 1, 'https://ror.org/04ev01y75 State Space Agency of Ukraine Державне космічне агентство України'),
(78664, 'https://ror.org/01026pq66', 'en', 1, 'https://ror.org/01026pq66 ENEA Centro Ricerche Frascati ENEA Frascati Research Centre'),
(78665, 'https://ror.org/00errak20', 'en', 1, 'https://ror.org/00errak20 Biro za metrologija Bureau of Metrology of Macedonia Byroja pĆ«r metrologji Š‘Š˜Š Šž ЗА ŠœŠ•Š¢Š ŠžŠ›ŠžŠ“Š˜ŠˆŠ'),
(78666, 'https://ror.org/02sp8bz52', 'en', 1, 'https://ror.org/02sp8bz52 Intermountain St. George Regional Hospital'),
(78667, 'https://ror.org/02ej0z861', 'pt', 1, 'https://ror.org/02ej0z861 Instituto PolitƩcnico da Lunda Sul Polytechnic Institute of Lunda Sul'),
(78668, 'https://ror.org/02vkce854', 'en', 1, 'https://ror.org/02vkce854 Kellogg Biological Station Long Term Ecological Research'),
(78669, 'https://ror.org/02r6x2c23', 'no_lang_code', 1, 'https://ror.org/02r6x2c23 Gobio (Germany)'),
(78670, 'https://ror.org/00m7gt169', 'no_lang_code', 1, 'https://ror.org/00m7gt169 Thomson Reuters (United States)'),
(78671, 'https://ror.org/02cvys591', 'en', 1, 'https://ror.org/02cvys591 Bundesamt für Landestopografie swisstopo Federal Office of Topography swisstopo Office fédéral de topographie swisstopo Ufficio federale di topografia swisstopo'),
(78672, 'https://ror.org/00ns0qg75', 'en', 1, 'https://ror.org/00ns0qg75 Parkway Cancer Centre'),
(78673, 'https://ror.org/0339x3x34', 'en', 1, 'https://ror.org/0339x3x34 American College Testing'),
(78674, 'https://ror.org/04mb5jg98', 'fr', 1, 'https://ror.org/04mb5jg98 Communication, Information, MƩdias'),
(78675, 'https://ror.org/03pe74b89', 'de', 1, 'https://ror.org/03pe74b89 Max Weber Forum for South Asian Studies in Delhi Max Weber Forum für Südasienstudien Delhi'),
(78676, 'https://ror.org/00pm7rm97', 'no_lang_code', 1, 'https://ror.org/00pm7rm97 IBM (Germany)'),
(78677, 'https://ror.org/018wm0v91', 'no_lang_code', 1, 'https://ror.org/018wm0v91 Arvato'),
(78678, 'https://ror.org/00a0n3690', 'en', 1, 'https://ror.org/00a0n3690 Commonweal'),
(78679, 'https://ror.org/004gg6s72', 'en', 1, 'https://ror.org/004gg6s72 Children''s Aid Society'),
(78680, 'https://ror.org/03dxajm77', 'en', 1, 'https://ror.org/03dxajm77 Farmington Community Library'),
(78681, 'https://ror.org/002pvtp37', 'en', 1, 'https://ror.org/002pvtp37 Bulgarian Institute of Metrology Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¼ŠµŃ‚Ń€Š¾Š»Š¾Š³ŠøŃ'),
(78682, 'https://ror.org/03wd03705', 'no_lang_code', 1, 'https://ror.org/03wd03705 Orient-Institut Beirut Orient-Institute Beirut لمعهد Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠ للأبحاث Ų§Ł„Ų“Ų±Ł‚ŁŠŲ©'),
(78683, 'https://ror.org/00kvcw656', 'en', 1, 'https://ror.org/00kvcw656 Canadian Society for International Health SociƩtƩ Canadienne de SantƩ Internationale'),
(78684, 'https://ror.org/0326knt82', 'en', 1, 'https://ror.org/0326knt82 Adolfo IbƔƱez University Universidad Adolfo IbƔƱez'),
(78685, 'https://ror.org/00sscbg84', 'en', 1, 'https://ror.org/00sscbg84 Khabarovsk State University of Economics and Law Š„Š°Š±Š°Ń€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(78686, 'https://ror.org/02qtq4y04', 'en', 1, 'https://ror.org/02qtq4y04 International Slavic University Gavrilo Romanovich Derzhavin ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ā€œŠ“Š°Š²Ń€ŠøŠ»Š¾ Романович Š”ŠµŃ€Š¶Š°Š²ŠøŠ½ā€ ŠœŠµŃ“ŃƒŠ½Š°Ń€Š¾Š“ŠµŠ½ Длавјански Универзитет Гаврило Романович Державин'),
(78687, 'https://ror.org/000pb1q18', 'en', 1, 'https://ror.org/000pb1q18 International Theravada Buddhist Missionary University'),
(78688, 'https://ror.org/03gq8sg42', 'no_lang_code', 1, 'https://ror.org/03gq8sg42 Yahoo (Spain)'),
(78689, 'https://ror.org/02dxgk712', 'en', 1, 'https://ror.org/02dxgk712 Search for Extraterrestrial Intelligence'),
(78690, 'https://ror.org/025e8ht98', 'en', 1, 'https://ror.org/025e8ht98 Portsmouth Public Library'),
(78691, 'https://ror.org/04mtdw349', 'no_lang_code', 1, 'https://ror.org/04mtdw349 Renishaw (Russia)'),
(78692, 'https://ror.org/04mpv5r98', 'en', 1, 'https://ror.org/04mpv5r98 International Long Term Ecological Research Network Internationale Gesellschaft für Ɩkologische Langzeitforschung'),
(78693, 'https://ror.org/02ms23a70', 'es', 1, 'https://ror.org/02ms23a70 Universidad del Norte'),
(78694, 'https://ror.org/04wt43v05', 'no_lang_code', 1, 'https://ror.org/04wt43v05 Twitter (United States)'),
(78695, 'https://ror.org/05v1qt749', 'en', 1, 'https://ror.org/05v1qt749 Centro Nacional de MetrologĆ­a National Metrology Center'),
(78696, 'https://ror.org/01hqsy415', 'en', 1, 'https://ror.org/01hqsy415 HIV Legal Network RƩseau juridique VIH'),
(78697, 'https://ror.org/059dtxg26', 'no_lang_code', 1, 'https://ror.org/059dtxg26 Simplex Manufacturing (United States)'),
(78698, 'https://ror.org/04fg8vc90', 'no_lang_code', 1, 'https://ror.org/04fg8vc90 The Cooper Companies (United States)'),
(78699, 'https://ror.org/008gfj249', 'en', 1, 'https://ror.org/008gfj249 London Road Community Hospital'),
(78700, 'https://ror.org/01nrpzj54', 'nl', 1, 'https://ror.org/01nrpzj54 Diakonessenhuis hospital'),
(78701, 'https://ror.org/027fer296', 'en', 1, 'https://ror.org/027fer296 Petrozavodsk State Glazunov Conservatory ŠŸŠµŃ‚Ń€Š¾Š·Š°Š²Š¾Š“ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠšŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. А.К. Š“Š»Š°Š·ŃƒŠ½Š¾Š²Š°'),
(78702, 'https://ror.org/05jm6kj71', 'en', 1, 'https://ror.org/05jm6kj71 Orient Enstitüsü İstanbul Orient-Institut Istanbul Orient-Institute Istanbul'),
(78703, 'https://ror.org/01k5gt570', 'en', 1, 'https://ror.org/01k5gt570 Rhode Island College'),
(78704, 'https://ror.org/03rjyp183', 'en', 1, 'https://ror.org/03rjyp183 Llyfrgell Genedlaethol Cymru National Library of Wales'),
(78705, 'https://ror.org/01s48e916', 'en', 1, 'https://ror.org/01s48e916 Kamchatka State Technical University ŠšŠ°Š¼Ń‡Š°Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(78706, 'https://ror.org/00e0zd560', 'en', 1, 'https://ror.org/00e0zd560 Bulletin canadien d''histoire de la mƩdecine Canadian Bulletin of Medical History'),
(78707, 'https://ror.org/03aevhx31', 'en', 1, 'https://ror.org/03aevhx31 Kamchatka State University named after Vitus Bering ŠšŠ°Š¼Ń‡Š°Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’ŠøŃ‚ŃƒŃŠ° Беринга'),
(78708, 'https://ror.org/03mp2xd28', 'en', 1, 'https://ror.org/03mp2xd28 Ann Arbor District Library'),
(78709, 'https://ror.org/05d7whc82', 'nl', 1, 'https://ror.org/05d7whc82 Spaarne Gasthuis'),
(78710, 'https://ror.org/04wpndn70', 'en', 1, 'https://ror.org/04wpndn70 Polk County High School'),
(78711, 'https://ror.org/009436s82', 'en', 1, 'https://ror.org/009436s82 Monash University Prato Centre Palazzo Vai'),
(78712, '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'),
(78713, 'https://ror.org/05mz2vf33', 'de', 1, 'https://ror.org/05mz2vf33 Deutsches Historisches Institut Warschau German Historical Institute Warsaw Niemiecki Instytut Historyczny w Warszawie'),
(78714, 'https://ror.org/05snbjh64', 'en', 1, 'https://ror.org/05snbjh64 Zoological Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Зоологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Российской акаГемии наук'),
(78715, 'https://ror.org/01qavk531', 'nl', 1, 'https://ror.org/01qavk531 Catharina Hospital Catharina Ziekenhuis'),
(78716, 'https://ror.org/01qx0e979', 'en', 1, 'https://ror.org/01qx0e979 Uniting'),
(78717, 'https://ror.org/01n2k7643', 'no_lang_code', 1, 'https://ror.org/01n2k7643 Etymotic Research (United States)'),
(78718, 'https://ror.org/05mfhxz88', 'es', 1, 'https://ror.org/05mfhxz88 Universidad Latina'),
(78719, 'https://ror.org/01c080z51', 'en', 1, 'https://ror.org/01c080z51 Millennium Science Initiative'),
(78720, 'https://ror.org/05kgbsy64', 'en', 1, 'https://ror.org/05kgbsy64 Spinoza Centre for Neuroimaging'),
(78721, 'https://ror.org/034g04n73', 'en', 1, 'https://ror.org/034g04n73 Institute of Biophysics'),
(78722, 'https://ror.org/03afbx254', 'en', 1, 'https://ror.org/03afbx254 Evangelisches Waldkrankenhaus Spandau Waldkrankenhaus Protestant Hospital'),
(78723, 'https://ror.org/01x2x1522', 'en', 1, 'https://ror.org/01x2x1522 Forskningsinstitutet fƶr Fysik Fysiikan Tutkimuslaitos Helsinki Institute of Physics'),
(78724, 'https://ror.org/023392c84', 'de', 1, 'https://ror.org/023392c84 Musikwissenschaftliches Seminar Detmold/Paderborn'),
(78725, 'https://ror.org/043ft3840', 'en', 1, 'https://ror.org/043ft3840 Centre for Research in Anthropology Centro em Rede de Investigacao em Antropologia'),
(78726, 'https://ror.org/00jhqgj32', 'en', 1, 'https://ror.org/00jhqgj32 Nantucket Cottage Hospital'),
(78727, 'https://ror.org/0086bb350', 'en', 1, 'https://ror.org/0086bb350 Einstein Center Digital Future'),
(78728, 'https://ror.org/0599mab02', 'en', 1, 'https://ror.org/0599mab02 St Catherine''s Health Centre'),
(78729, 'https://ror.org/03xzm3p02', 'en', 1, 'https://ror.org/03xzm3p02 Scientific Foundation SPIROSKI ŠŠ°ŃƒŃ‡Š½Š° Ń„Š¾Š½Š“Š°Ń†ŠøŃ˜Š° Š”ŠŸŠ˜Š ŠžŠ”ŠšŠ˜'),
(78730, 'https://ror.org/00wvavs63', 'en', 1, 'https://ror.org/00wvavs63 Association for Science įƒįƒ”įƒįƒŖįƒ˜įƒįƒŖįƒ˜įƒ įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒ˜įƒ”įƒįƒ—įƒ•įƒ˜įƒ”'),
(78731, 'https://ror.org/01ff5td15', 'en', 1, 'https://ror.org/01ff5td15 Donald & Barbara Zucker School of Medicine at Hofstra/Northwell'),
(78732, 'https://ror.org/04wwmh526', 'en', 1, 'https://ror.org/04wwmh526 Fraunhofer Center for Silicon Photovoltaics Fraunhofer-Center für Silizium-Photovoltaik'),
(78733, 'https://ror.org/00ybseg45', 'en', 1, 'https://ror.org/00ybseg45 Zoological Institute, State Academy of Sciences 국가과학원 ė™ė¬¼ķ•™ģ—°źµ¬ģ†Œ'),
(78734, 'https://ror.org/01pj5v964', 'en', 1, 'https://ror.org/01pj5v964 Madhav Institute of Technology & Science'),
(78735, 'https://ror.org/0363aed77', 'en', 1, 'https://ror.org/0363aed77 Flone Initiative Trust'),
(78736, '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 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГных математических исслеГований ŠšŠ°Ń€ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(78737, 'https://ror.org/03c6pbw79', 'en', 1, 'https://ror.org/03c6pbw79 Budapest FővĆ”ros KormĆ”nyhivatala Government Office of the Capital City Budapest'),
(78738, 'https://ror.org/05yfz9t60', 'en', 1, 'https://ror.org/05yfz9t60 International Laboratory for Brain, Music and Sound Research Laboratoire international de recherche sur le Cerveau, la Musique et le Son'),
(78739, 'https://ror.org/0550k1y72', 'en', 1, 'https://ror.org/0550k1y72 Research4Life'),
(78740, 'https://ror.org/022x94962', 'en', 1, 'https://ror.org/022x94962 Global Campus of Human Rights'),
(78741, 'https://ror.org/04123ky43', 'en', 1, 'https://ror.org/04123ky43 Clark University Universidad Clark'),
(78742, 'https://ror.org/053wt0478', 'en', 1, 'https://ror.org/053wt0478 HƓpital de Lachine Lachine Hospital'),
(78743, 'https://ror.org/03r8hgy04', 'en', 1, 'https://ror.org/03r8hgy04 Institute of Marine Research'),
(78744, 'https://ror.org/0003xeg87', 'en', 1, 'https://ror.org/0003xeg87 James Martin Center for Nonproliferation Studies'),
(78745, 'https://ror.org/03e801006', 'fr', 1, 'https://ror.org/03e801006 Equipe Soutenue par la RƩgion et par l''Inserm'),
(78746, 'https://ror.org/03zmjc935', 'en', 1, 'https://ror.org/03zmjc935 US Forest Service'),
(78747, 'https://ror.org/0468gx405', 'fr', 1, 'https://ror.org/0468gx405 HƓtel-Dieu de MontrƩal'),
(78748, 'https://ror.org/01w7qz648', 'fr', 1, 'https://ror.org/01w7qz648 HƓpital Notre-Dame Notre-Dame Hospital'),
(78749, 'https://ror.org/02the9q75', 'en', 1, 'https://ror.org/02the9q75 Institute for Agricultural and Forest Systems in the Mediterranean Istituto per i Sistemi Agricoli e Forestali del Mediterraneo'),
(78750, 'https://ror.org/04mgkpz96', 'no_lang_code', 1, 'https://ror.org/04mgkpz96 COPESSA'),
(78751, 'https://ror.org/04dqm5e84', 'en', 1, 'https://ror.org/04dqm5e84 Latino Medical Student Association'),
(78752, 'https://ror.org/036mhzk54', 'de', 1, 'https://ror.org/036mhzk54 Ɩsterreichische Galerie Belvedere'),
(78753, 'https://ror.org/05d1z6q04', 'en', 1, 'https://ror.org/05d1z6q04 Middlebury Institute of International Studies at Monterey'),
(78754, 'https://ror.org/0410a8y51', 'fr', 1, 'https://ror.org/0410a8y51 Centre Hospitalier de l’UniversitĆ© de MontrĆ©al Centre hospitalier de l''universitĆ© de montrĆ©al'),
(78755, 'https://ror.org/00924z688', 'en', 1, 'https://ror.org/00924z688 Institute of Arctic and Alpine Research'),
(78756, 'https://ror.org/05hnkta08', 'en', 1, 'https://ror.org/05hnkta08 Santa Barbara Coastal Long Term Ecological Research'),
(78757, 'https://ror.org/02stw2895', 'es', 1, 'https://ror.org/02stw2895 BenemƩrita Escuela Normal "Manuel Ɓvila Camacho"'),
(78758, 'https://ror.org/01qwvz642', 'fr', 1, 'https://ror.org/01qwvz642 Centre d''Ɖtude et de DĆ©couverte des Tortues Marines'),
(78759, 'https://ror.org/03nmkqc55', 'en', 1, 'https://ror.org/03nmkqc55 Wisconsin Department of Natural Resources'),
(78760, 'https://ror.org/04tjvaj88', 'es', 1, 'https://ror.org/04tjvaj88 Instituto Universitario de Innovación Ciencia y Tecnología Inudi Perú'),
(78761, 'https://ror.org/01w88hp45', 'en', 1, 'https://ror.org/01w88hp45 Department for Levelling Up, Housing & Communities'),
(78762, 'https://ror.org/01yhp8t49', 'es', 1, 'https://ror.org/01yhp8t49 Fundación Renacer'),
(78763, 'https://ror.org/03scjwb12', 'nl', 1, 'https://ror.org/03scjwb12 Museon-Omniversum'),
(78764, 'https://ror.org/04aagyf09', 'no_lang_code', 1, 'https://ror.org/04aagyf09 ECOTAS Group Indonesia'),
(78765, 'https://ror.org/00r1f0w19', 'pt', 1, 'https://ror.org/00r1f0w19 Centro UniversitƔrio SATC'),
(78766, 'https://ror.org/00vn06n10', 'en', 1, 'https://ror.org/00vn06n10 Simula Research Laboratory'),
(78767, 'https://ror.org/04rp40h82', 'en', 1, 'https://ror.org/04rp40h82 World Association of Theoretical and Computational Chemists'),
(78768, 'https://ror.org/051j5db58', 'es', 1, 'https://ror.org/051j5db58 IMEK Centro de Investigación en Mercadeo & Desarrollo IMEK Research Center in Marketing & Development'),
(78769, 'https://ror.org/0282y0p95', 'en', 1, 'https://ror.org/0282y0p95 Science for All'),
(78770, 'https://ror.org/019pkg396', 'en', 1, 'https://ror.org/019pkg396 Mercy College of Ohio'),
(78771, 'https://ror.org/01357ty92', 'en', 1, 'https://ror.org/01357ty92 National Institute of Metrology (Thailand) ąøŖąø–ąø²ąøšąø±ąø™ąø”ąø²ąø•ąø£ąø§ąø“ąø—ąø¢ąø²ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(78772, 'https://ror.org/00x143s74', 'en', 1, 'https://ror.org/00x143s74 Homes England'),
(78773, 'https://ror.org/03hahj039', 'fr', 1, 'https://ror.org/03hahj039 Institut de Readaptation Gingras Lindsay de Montreal'),
(78774, 'https://ror.org/05kmggt55', 'en', 1, 'https://ror.org/05kmggt55 Simula UiB'),
(78775, 'https://ror.org/04sj20m66', 'en', 1, 'https://ror.org/04sj20m66 Northeast U.S. Shelf Long Term Ecological Research'),
(78776, 'https://ror.org/03ysf5247', 'es', 1, 'https://ror.org/03ysf5247 Fundación Gustavo Bueno Gustavo Bueno Foundation'),
(78777, 'https://ror.org/05yekbx03', 'en', 1, 'https://ror.org/05yekbx03 Badan Standardisasi Nasional National Standardization Agency of Indonesia'),
(78778, 'https://ror.org/04g5g3b04', 'en', 1, 'https://ror.org/04g5g3b04 Papal Seminary'),
(78779, 'https://ror.org/045tmdc16', 'en', 1, 'https://ror.org/045tmdc16 CODE University of Applied Sciences'),
(78780, 'https://ror.org/04xk8j027', 'fr', 1, 'https://ror.org/04xk8j027 HƓpital Saint-Luc'),
(78781, 'https://ror.org/04sm11c70', 'es', 1, 'https://ror.org/04sm11c70 Instituto de Educación Superior Tecnológico Público "Eleazar GuzmÔn Barrón"'),
(78782, 'https://ror.org/00mht5s60', 'no_lang_code', 1, 'https://ror.org/00mht5s60 Joyson Safety Systems (Japan) ć‚øćƒ§ć‚¤ć‚½ćƒ³ ć‚»ć‚¤ćƒ•ćƒ†ć‚£ ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(78783, 'https://ror.org/04gq8q482', 'en', 1, 'https://ror.org/04gq8q482 North Temperate Lakes Long Term Ecological Research'),
(78784, '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'),
(78785, 'https://ror.org/04f2f0537', 'en', 1, 'https://ror.org/04f2f0537 Pawsey Supercomputing Research Centre'),
(78786, 'https://ror.org/02g5psh91', 'en', 1, 'https://ror.org/02g5psh91 Suzhou Institute of North China Electric Power University åŽåŒ—ē”µåŠ›å¤§å­¦č‹å·žē ”ē©¶é™¢'),
(78787, 'https://ror.org/05twjp994', 'en', 1, 'https://ror.org/05twjp994 Gregor Mendel Institute of Molecular Plant Biology'),
(78788, 'https://ror.org/03dz0k314', 'en', 1, 'https://ror.org/03dz0k314 Wyss Academy for Nature'),
(78789, 'https://ror.org/01rmh6e96', 'en', 1, 'https://ror.org/01rmh6e96 Calvary Riverina Hospital'),
(78790, 'https://ror.org/02stey378', 'en', 1, 'https://ror.org/02stey378 The University of Notre Dame Australia'),
(78791, 'https://ror.org/045z90539', 'en', 1, 'https://ror.org/045z90539 Jnana Deepa, Institute of Philosophy and Theology'),
(78792, 'https://ror.org/02eb9xn27', 'no_lang_code', 1, 'https://ror.org/02eb9xn27 Pandawa Institute'),
(78793, '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'),
(78794, 'https://ror.org/02weea238', 'en', 1, 'https://ror.org/02weea238 Then Try This'),
(78795, 'https://ror.org/01wxh6v83', 'en', 1, 'https://ror.org/01wxh6v83 Singapore Institute of Management ę–°åŠ å”ē®”ē†å­¦é™¢'),
(78796, 'https://ror.org/048bdy921', 'en', 1, 'https://ror.org/048bdy921 Wyss Foundation'),
(78797, 'https://ror.org/056j50v04', 'en', 1, 'https://ror.org/056j50v04 GO FAIR Foundation Stichting GO FAIR'),
(78798, 'https://ror.org/00dtsha18', 'no_lang_code', 1, 'https://ror.org/00dtsha18 Neomorph'),
(78799, 'https://ror.org/03ww91346', 'en', 1, 'https://ror.org/03ww91346 Institute of Water Problems of the North Karelian Research Centre ŠšŠ°Ń€ŠŠ¦ Š ŠŠ в рамках работы ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š Š“Šž в Республике ŠšŠ°Ń€ŠµŠ»ŠøŃ'),
(78800, 'https://ror.org/03ey0g045', 'fr', 1, 'https://ror.org/03ey0g045 HĆ“pital du SacrĆ©-Cœur de MontrĆ©al Sacred Heart Hospital of Montreal');
INSERT INTO `rors` VALUES
(78801, 'https://ror.org/01qcacz92', 'en', 1, 'https://ror.org/01qcacz92 Sevilleta Long Term Ecological Research'),
(78802, 'https://ror.org/05wgt8358', 'en', 1, 'https://ror.org/05wgt8358 Karelian Research Centre ŠšŠ°Ń€ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(78803, 'https://ror.org/01ae3s995', 'es', 1, 'https://ror.org/01ae3s995 Observatorio Naval Buenos Aires'),
(78804, 'https://ror.org/01z472y92', 'es', 1, 'https://ror.org/01z472y92 Laboratorio Costarricense de MetrologĆ­a'),
(78805, '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'),
(78806, 'https://ror.org/01csn4944', 'en', 1, 'https://ror.org/01csn4944 Northern Gulf of Alaska Long Term Ecological Research'),
(78807, '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'),
(78808, 'https://ror.org/05xz2nh53', 'no_lang_code', 1, 'https://ror.org/05xz2nh53 Life Nepal जिवन ą¤Øą„‡ą¤Ŗą¤¾ą¤²'),
(78809, 'https://ror.org/015c54q78', 'pt', 1, 'https://ror.org/015c54q78 Centro UniversitƔrio Unigran Capital'),
(78810, 'https://ror.org/00w3m6887', 'en', 1, 'https://ror.org/00w3m6887 Luqman Unani Medical College Hospital and Research Center'),
(78811, 'https://ror.org/00m5fe987', 'en', 1, 'https://ror.org/00m5fe987 FoAM'),
(78812, 'https://ror.org/04xtarr15', 'en', 1, 'https://ror.org/04xtarr15 Simula Metropolitan Center for Digital Engineering'),
(78813, 'https://ror.org/01x8rc503', 'en', 1, 'https://ror.org/01x8rc503 University of Louisiana at Lafayette UniversitƩ de louisiane Ơ lafayette'),
(78814, 'https://ror.org/00q7wcf52', 'en', 1, 'https://ror.org/00q7wcf52 National Measurement Standards Unit Standar Nasional Satuan Ukuran'),
(78815, 'https://ror.org/041tjsq03', 'en', 1, 'https://ror.org/041tjsq03 Agence mongole de normalisation et de mĆ©trologie Mongolian Agency for Standardization and Metrology ДтанГартчилал, Ń…ŃŠ¼Š¶ŠøŠ» зүйн газар'),
(78816, 'https://ror.org/03rdc4968', 'fr', 1, 'https://ror.org/03rdc4968 HƓpital Maisonneuve-Rosemont'),
(78817, 'https://ror.org/02yjwvr35', 'es', 1, 'https://ror.org/02yjwvr35 Centro de Documentación de las Artes Escénicas y de la Música'),
(78818, 'https://ror.org/013zder45', 'en', 1, 'https://ror.org/013zder45 Virginia Coast Reserve Long Term Ecological Research'),
(78819, 'https://ror.org/05vfxvp80', 'en', 1, 'https://ror.org/05vfxvp80 University of St. Thomas - Minnesota'),
(78820, 'https://ror.org/0524asq02', 'fr', 1, 'https://ror.org/0524asq02 HÓpital Rivière-des-Prairies'),
(78821, 'https://ror.org/00pvs0d78', 'en', 1, 'https://ror.org/00pvs0d78 Interuniversity Institute for Marine Sciences in Eilat המכון ×”×‘×™× ××•× ×™×‘×Ø×”×™×˜××™ למדעי הים ×‘××™×œ×Ŗ'),
(78822, 'https://ror.org/02s3xv195', 'en', 1, 'https://ror.org/02s3xv195 Amundsen Science'),
(78823, 'https://ror.org/01zqrxf85', 'en', 1, 'https://ror.org/01zqrxf85 Institut für Molekulare Biotechnologie Institute of Molecular Biotechnology'),
(78824, 'https://ror.org/023kmfd49', 'en', 1, 'https://ror.org/023kmfd49 Massachusetts Audubon Society'),
(78825, 'https://ror.org/03hsf0573', 'en', 1, 'https://ror.org/03hsf0573 William & Mary'),
(78826, 'https://ror.org/02ep77d74', 'en', 1, 'https://ror.org/02ep77d74 Niwot Ridge Long Term Ecological Research'),
(78827, 'https://ror.org/032ct1x19', 'no_lang_code', 1, 'https://ror.org/032ct1x19 International Scientific Network'),
(78828, 'https://ror.org/031wtp233', 'fr', 1, 'https://ror.org/031wtp233 Centre de SantƩ et de Services Sociaux de Chicoutimi'),
(78829, 'https://ror.org/010s54n03', 'de', 1, 'https://ror.org/010s54n03 Leibniz-Forschungsinstitut für Molekulare Pharmakologie'),
(78830, 'https://ror.org/0139hn422', 'en', 1, 'https://ror.org/0139hn422 Palmer Long Term Ecological Research'),
(78831, 'https://ror.org/04j21nf11', 'de', 1, 'https://ror.org/04j21nf11 Universitäres Zentrum für Zahnmedizin Basel'),
(78832, 'https://ror.org/04sk0et52', 'en', 1, 'https://ror.org/04sk0et52 Gump South Pacific Research Station'),
(78833, 'https://ror.org/02m9tqe79', 'en', 1, 'https://ror.org/02m9tqe79 Tianjin Fourth Central Hospital å¤©ę“„åø‚ē¬¬å››äø­åæƒåŒ»é™¢'),
(78834, 'https://ror.org/01qb1r340', 'en', 1, 'https://ror.org/01qb1r340 Duke Raleigh Hospital'),
(78835, 'https://ror.org/01dkacw77', 'it', 1, 'https://ror.org/01dkacw77 Accademia Italiana Medicina Osteopatica'),
(78836, 'https://ror.org/01eag6b04', 'no_lang_code', 1, 'https://ror.org/01eag6b04 Oxagen (United Kingdom)'),
(78837, 'https://ror.org/05smbmp94', 'en', 1, 'https://ror.org/05smbmp94 Ministry of Health'),
(78838, 'https://ror.org/037zkt843', 'en', 1, 'https://ror.org/037zkt843 Flaget Memorial Hospital'),
(78839, 'https://ror.org/052afx753', 'en', 1, 'https://ror.org/052afx753 Benazir Bhutto Hospital ŲØŪ’ Ł†ŲøŪŒŲ± بھٹو ہسپتال'),
(78840, 'https://ror.org/00wcwkf45', 'en', 1, 'https://ror.org/00wcwkf45 Korean Association for the Study of Intestinal Diseases ėŒ€ķ•œģž„ģ—°źµ¬ķ•™ķšŒ'),
(78841, 'https://ror.org/04ngysf93', 'en', 1, 'https://ror.org/04ngysf93 Hallym University Sacred Heart Hospital ķ•œė¦¼ėŒ€ķ•™źµģ„±ģ‹¬ė³‘ģ›'),
(78842, 'https://ror.org/0003en535', 'no_lang_code', 1, 'https://ror.org/0003en535 Quark Pharmaceuticals (United States)'),
(78843, 'https://ror.org/055qjgz33', 'en', 1, 'https://ror.org/055qjgz33 Statistics New Zealand Tatauranga Aotearoa'),
(78844, 'https://ror.org/03vxtfp37', 'no_lang_code', 1, 'https://ror.org/03vxtfp37 OmniVision (Germany)'),
(78845, 'https://ror.org/01bdqmr31', 'en', 1, 'https://ror.org/01bdqmr31 Sutter Solano Medical Center'),
(78846, 'https://ror.org/049jkjr31', 'es', 1, 'https://ror.org/049jkjr31 Complejo Asistencial Sótero del Río'),
(78847, 'https://ror.org/054bx8w47', 'en', 1, 'https://ror.org/054bx8w47 Baylor Jack and Jane Hamilton Heart and Vascular Hospital'),
(78848, 'https://ror.org/04gqbd180', 'en', 1, 'https://ror.org/04gqbd180 Campus Bio Medico University Hospital Policlinico Universitario Campus Bio Medico'),
(78849, 'https://ror.org/05vxxvp60', 'no_lang_code', 1, 'https://ror.org/05vxxvp60 Deutsche Flugsicherung (Germany)'),
(78850, 'https://ror.org/00zvx1763', 'en', 1, 'https://ror.org/00zvx1763 Proton Therapy Centre'),
(78851, 'https://ror.org/039425239', 'no_lang_code', 1, 'https://ror.org/039425239 Blacktrace (United Kingdom)'),
(78852, 'https://ror.org/01m39hd75', 'it', 1, 'https://ror.org/01m39hd75 Azienda Ospedaliero Universitaria di Sassari'),
(78853, 'https://ror.org/049a9tc02', 'no_lang_code', 1, 'https://ror.org/049a9tc02 Inimex Pharmaceuticals (Canada)'),
(78854, 'https://ror.org/006p1hv79', 'en', 1, 'https://ror.org/006p1hv79 Bay Area Medical Center'),
(78855, 'https://ror.org/02eqvk528', 'no_lang_code', 1, 'https://ror.org/02eqvk528 Sawyer Technical Materials (United States)'),
(78856, 'https://ror.org/02wrf7q59', 'en', 1, 'https://ror.org/02wrf7q59 Palace Museum ę•…å®«åšē‰©é¦†'),
(78857, 'https://ror.org/03a0avf44', 'en', 1, 'https://ror.org/03a0avf44 Canberra Aesthetic Plastic Surgery Clinic'),
(78858, 'https://ror.org/03xxxrq06', 'en', 1, 'https://ror.org/03xxxrq06 Manchester School of Architecture'),
(78859, 'https://ror.org/00cqhgk75', 'en', 1, 'https://ror.org/00cqhgk75 Surgical Infection Society of Europe'),
(78860, 'https://ror.org/00jfmd461', 'fr', 1, 'https://ror.org/00jfmd461 L’Institut du Cancer Courlancy Reims'),
(78861, 'https://ror.org/022vba633', 'pt', 1, 'https://ror.org/022vba633 Associação de Assistência à Criança Deficiente'),
(78862, 'https://ror.org/02znttc53', 'en', 1, 'https://ror.org/02znttc53 International City/County Management Association'),
(78863, 'https://ror.org/01vzcsc16', 'en', 1, 'https://ror.org/01vzcsc16 Sutter Auburn Faith Hospital'),
(78864, 'https://ror.org/03f69w292', 'no_lang_code', 1, 'https://ror.org/03f69w292 First American (United States)'),
(78865, 'https://ror.org/03mpkb302', 'en', 1, 'https://ror.org/03mpkb302 Pharmaceuticals and Medical Devices Agency ē‹¬ē«‹č”Œę”æę³•äŗŗ åŒ»č–¬å“åŒ»ē™‚ę©Ÿå™Øē·åˆę©Ÿę§‹'),
(78866, 'https://ror.org/00dewa944', 'en', 1, 'https://ror.org/00dewa944 Stone Soup Group'),
(78867, 'https://ror.org/00rh36007', 'en', 1, 'https://ror.org/00rh36007 North District Hospital 北區醫院'),
(78868, 'https://ror.org/03egbv816', 'en', 1, 'https://ror.org/03egbv816 Cox Medical Center South'),
(78869, 'https://ror.org/01rkqb281', 'en', 1, 'https://ror.org/01rkqb281 Leibniz Institute for Research on Society and Space Leibniz-Institut für Raumbezogene Sozialforschung'),
(78870, 'https://ror.org/001xkv632', 'en', 1, 'https://ror.org/001xkv632 Southern Cross University'),
(78871, 'https://ror.org/0365jtw20', 'en', 1, 'https://ror.org/0365jtw20 West Coast Fertility Centers'),
(78872, 'https://ror.org/02wvcn790', 'no_lang_code', 1, 'https://ror.org/02wvcn790 Carmel (Israel) ×›×Ø×ž×œ בע"מ'),
(78873, 'https://ror.org/00pz6pe93', 'de', 1, 'https://ror.org/00pz6pe93 SRH Klinikum Karlsbad-Langensteinbach'),
(78874, 'https://ror.org/02y8nb297', 'en', 1, 'https://ror.org/02y8nb297 University of Alaska Southeast UniversitƩ de l''alaska du sud-est'),
(78875, 'https://ror.org/02618t920', 'en', 1, 'https://ror.org/02618t920 Aids-Hilfe Schweiz Swiss AIDS Federation'),
(78876, 'https://ror.org/0336mm561', 'no_lang_code', 1, 'https://ror.org/0336mm561 Oxford University Press (United Kingdom)'),
(78877, 'https://ror.org/02t194v04', 'en', 1, 'https://ror.org/02t194v04 Sri Sathya Sai Institute of Higher Medical Sciences'),
(78878, 'https://ror.org/032cf8m89', 'no_lang_code', 1, 'https://ror.org/032cf8m89 Centre de Recherche Industrielle du QuƩbec'),
(78879, 'https://ror.org/04dqkr113', 'en', 1, 'https://ror.org/04dqkr113 Nottingham University Samworth Academy'),
(78880, 'https://ror.org/005re7g62', 'sv', 1, 'https://ror.org/005re7g62 Jubileumskliniken Cancerfond'),
(78881, 'https://ror.org/05yk2ee68', 'en', 1, 'https://ror.org/05yk2ee68 Olympic Medical Center'),
(78882, 'https://ror.org/00km9fk15', 'en', 1, 'https://ror.org/00km9fk15 Medical Defence Union'),
(78883, 'https://ror.org/04gqawm06', 'en', 1, 'https://ror.org/04gqawm06 Institute of the Americas'),
(78884, 'https://ror.org/001qxy049', 'no_lang_code', 1, 'https://ror.org/001qxy049 Haaretz Group (Israel)'),
(78885, 'https://ror.org/01nvzf736', 'iu', 1, 'https://ror.org/01nvzf736 Pauktuutit'),
(78886, 'https://ror.org/04q47hj14', 'en', 1, 'https://ror.org/04q47hj14 Association of Environmental Engineering and Science Professors'),
(78887, 'https://ror.org/05rajhp84', 'no_lang_code', 1, 'https://ror.org/05rajhp84 Vifor Pharma (United States)'),
(78888, 'https://ror.org/052bscq71', 'en', 1, 'https://ror.org/052bscq71 American Association of Colleges for Teacher Education'),
(78889, 'https://ror.org/00g3ck957', 'en', 1, 'https://ror.org/00g3ck957 American Productivity and Quality Center'),
(78890, 'https://ror.org/04g2rbh88', 'en', 1, 'https://ror.org/04g2rbh88 Analytical Services'),
(78891, 'https://ror.org/01gaj0s81', 'en', 1, 'https://ror.org/01gaj0s81 The First People''s Hospital of Changzhou åøøå·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(78892, 'https://ror.org/04dx90b60', 'en', 1, 'https://ror.org/04dx90b60 London Chamber of Commerce and Industry'),
(78893, 'https://ror.org/04mercy44', 'en', 1, 'https://ror.org/04mercy44 Society For Range Management'),
(78894, 'https://ror.org/04b12x653', 'no_lang_code', 1, 'https://ror.org/04b12x653 Berlitz (United States)'),
(78895, 'https://ror.org/0037zb552', 'en', 1, 'https://ror.org/0037zb552 Madras Institute of Orthopaedics and Traumatology'),
(78896, 'https://ror.org/039zxt351', 'it', 1, 'https://ror.org/039zxt351 IRCCS Ospedale San Raffaele'),
(78897, 'https://ror.org/02c74qd93', 'en', 1, 'https://ror.org/02c74qd93 Museo Nazionale delle Arti del XXI Secolo National Museum of 21st Century Arts'),
(78898, 'https://ror.org/03xyjdy64', 'en', 1, 'https://ror.org/03xyjdy64 Departamento de Servicios de Salud del Condado de Los Ɓngeles Los Angeles County Department of Health Services'),
(78899, 'https://ror.org/00m5m4846', 'en', 1, 'https://ror.org/00m5m4846 The Swedish Association of Health Professionals VƄrdfƶrbundet'),
(78900, 'https://ror.org/02xwzkh23', 'en', 1, 'https://ror.org/02xwzkh23 American Society of Association Executives'),
(78901, 'https://ror.org/02gv4h649', 'en', 1, 'https://ror.org/02gv4h649 Atomic Weapons Establishment'),
(78902, 'https://ror.org/03zcbna64', 'en', 1, 'https://ror.org/03zcbna64 The Korean Society of Hematology ėŒ€ķ•œķ˜ˆģ•”ķ•™ķšŒ'),
(78903, 'https://ror.org/03sj5de90', 'en', 1, 'https://ror.org/03sj5de90 Research Design and Technological Institute of Concrete and Reinforced Concrete ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ Šø технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бетона Šø железобетона'),
(78904, 'https://ror.org/01bq12b82', 'en', 1, 'https://ror.org/01bq12b82 Riverside Community Hospital'),
(78905, 'https://ror.org/00aqw3z26', 'fr', 1, 'https://ror.org/00aqw3z26 CollĆØge St-Michel Kollegium St. Michael'),
(78906, 'https://ror.org/05tk3rm67', 'en', 1, 'https://ror.org/05tk3rm67 Regional Obstetrical Consultants'),
(78907, 'https://ror.org/05cmp5q80', 'fr', 1, 'https://ror.org/05cmp5q80 Centre Hospitalier Universitaire de Saint-Pierre'),
(78908, 'https://ror.org/051qy7v07', 'en', 1, 'https://ror.org/051qy7v07 Newcastle Hospitals - Campus for Ageing and Vitality'),
(78909, 'https://ror.org/018n70f12', 'en', 1, 'https://ror.org/018n70f12 Association New Music'),
(78910, 'https://ror.org/0303d1x26', 'pt', 1, 'https://ror.org/0303d1x26 Hospital UniversitÔrio Polydoro Ernani de São Thiago Polydoro Ernani de São Thiago University Hospital'),
(78911, 'https://ror.org/010hz0g26', 'en', 1, 'https://ror.org/010hz0g26 Jichi Medical University č‡Ŗę²»åŒ»ē§‘å¤§å­¦'),
(78912, 'https://ror.org/02qr8sv28', 'en', 1, 'https://ror.org/02qr8sv28 Sutter Davis Hospital'),
(78913, 'https://ror.org/0538axx89', 'en', 1, 'https://ror.org/0538axx89 London Film School'),
(78914, 'https://ror.org/03wabx048', 'de', 1, 'https://ror.org/03wabx048 EuropƤische Melanchthon Akademie Bretten'),
(78915, 'https://ror.org/028ze1052', 'de', 1, 'https://ror.org/028ze1052 Tirol Kliniken'),
(78916, 'https://ror.org/03y9sqg61', 'en', 1, 'https://ror.org/03y9sqg61 Eesti Evangeelne Luterlik Kirik Estonian Evangelical Lutheran Church'),
(78917, 'https://ror.org/04j24jq80', 'en', 1, 'https://ror.org/04j24jq80 Magistrates Association'),
(78918, 'https://ror.org/02swnjw32', 'en', 1, 'https://ror.org/02swnjw32 Society of Women Engineers'),
(78919, 'https://ror.org/03xxy5a58', 'en', 1, 'https://ror.org/03xxy5a58 Fairview Ridges Hospital'),
(78920, 'https://ror.org/04qvvhf62', 'en', 1, 'https://ror.org/04qvvhf62 Wenner-Gren Foundation'),
(78921, 'https://ror.org/04dhxj782', 'de', 1, 'https://ror.org/04dhxj782 Erziehungsdepartement Basel Stadt'),
(78922, 'https://ror.org/00yhmjd28', 'en', 1, 'https://ror.org/00yhmjd28 Institut de Recherche pour la Chromatographie Research Institute for Chromatography'),
(78923, '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'),
(78924, 'https://ror.org/02dby4d37', 'en', 1, 'https://ror.org/02dby4d37 Latin American and Caribbean Society of Medical Oncology Sociedad Latinoamericana y del Caribe de Oncologƭa MƩdica'),
(78925, 'https://ror.org/02csqjc22', 'en', 1, 'https://ror.org/02csqjc22 Riddle Hospital'),
(78926, 'https://ror.org/0292wpz08', 'no_lang_code', 1, 'https://ror.org/0292wpz08 Castings Technology International'),
(78927, 'https://ror.org/01e1j7z08', 'en', 1, 'https://ror.org/01e1j7z08 Southwestern Educational Society'),
(78928, 'https://ror.org/018g5g612', 'en', 1, 'https://ror.org/018g5g612 American Society for Dermatologic Surgery'),
(78929, 'https://ror.org/05j1wxv23', 'no_lang_code', 1, 'https://ror.org/05j1wxv23 Bermuda Institute of Ocean Sciences'),
(78930, 'https://ror.org/0344vgv89', 'en', 1, 'https://ror.org/0344vgv89 Prison Advice and Care Trust'),
(78931, 'https://ror.org/02vqxhy72', 'no_lang_code', 1, 'https://ror.org/02vqxhy72 Renovo Research (United States)'),
(78932, 'https://ror.org/045s9b323', 'no_lang_code', 1, 'https://ror.org/045s9b323 Engineering (Italy)'),
(78933, 'https://ror.org/011qexd20', 'en', 1, 'https://ror.org/011qexd20 North Jersey Brain and Spine Center'),
(78934, 'https://ror.org/02g4b4t25', 'en', 1, 'https://ror.org/02g4b4t25 New Ulm Medical Center'),
(78935, 'https://ror.org/050yb6166', 'en', 1, 'https://ror.org/050yb6166 Choctaw County School District'),
(78936, 'https://ror.org/037zvxe90', 'en', 1, 'https://ror.org/037zvxe90 Baptist Memorial Hospital for Women'),
(78937, 'https://ror.org/00datzr31', 'en', 1, 'https://ror.org/00datzr31 CW+'),
(78938, 'https://ror.org/00pr51480', 'en', 1, 'https://ror.org/00pr51480 Lute Society'),
(78939, 'https://ror.org/04g5je597', 'de', 1, 'https://ror.org/04g5je597 Institut für Gießereitechnik'),
(78940, 'https://ror.org/04xsf1c37', 'no_lang_code', 1, 'https://ror.org/04xsf1c37 Estonian Biocentre'),
(78941, 'https://ror.org/00htg6162', 'en', 1, 'https://ror.org/00htg6162 Florida Institute of Oceanography'),
(78942, 'https://ror.org/03am4ny08', 'en', 1, 'https://ror.org/03am4ny08 Maine Community College System'),
(78943, 'https://ror.org/04mghma93', 'en', 1, 'https://ror.org/04mghma93 Heriot-Watt University'),
(78944, 'https://ror.org/058fgzk19', 'no_lang_code', 1, 'https://ror.org/058fgzk19 Centrica (United Kingdom)'),
(78945, 'https://ror.org/00wrafe19', 'de', 1, 'https://ror.org/00wrafe19 Hirslanden Klinik Aarau'),
(78946, 'https://ror.org/02v09qm69', 'en', 1, 'https://ror.org/02v09qm69 Jackson State Community College'),
(78947, 'https://ror.org/023695f46', 'en', 1, 'https://ror.org/023695f46 Broadlawns Medical Center'),
(78948, 'https://ror.org/03307tq49', 'no_lang_code', 1, 'https://ror.org/03307tq49 Chemstations (United States)'),
(78949, 'https://ror.org/024f7an49', 'en', 1, 'https://ror.org/024f7an49 The Korean Urological Association ėŒ€ķ•œė¹„ė‡Øźø°ź³¼ķ•™ķšŒ'),
(78950, 'https://ror.org/03ey7ve44', 'no_lang_code', 1, 'https://ror.org/03ey7ve44 Regulus Therapeutics (United States)'),
(78951, 'https://ror.org/04k5sn095', 'fr', 1, 'https://ror.org/04k5sn095 Cegep de Thetford Collège d''Enseignement Général et Professionnel'),
(78952, 'https://ror.org/03nbbc502', 'no_lang_code', 1, 'https://ror.org/03nbbc502 Ricardo AEA (United Kingdom)'),
(78953, 'https://ror.org/00mhkcm52', 'no_lang_code', 1, 'https://ror.org/00mhkcm52 Olin Corporation (United States)'),
(78954, 'https://ror.org/04tdxpm82', 'fr', 1, 'https://ror.org/04tdxpm82 L’Institut Franco-EuropĆ©en de Chiropraxie'),
(78955, 'https://ror.org/005cjg181', 'en', 1, 'https://ror.org/005cjg181 Global Forum for Health Research'),
(78956, 'https://ror.org/02m51qp09', 'en', 1, 'https://ror.org/02m51qp09 Southwest Healthcare System'),
(78957, 'https://ror.org/01hx00y13', 'no_lang_code', 1, 'https://ror.org/01hx00y13 Qatar Airways (Qatar) Ų§Ł„Ł‚Ų·Ų±ŁŠŲ©ā€Ž'),
(78958, 'https://ror.org/01nkhmn89', 'en', 1, 'https://ror.org/01nkhmn89 Biruni University Biruni Üniversitesi'),
(78959, 'https://ror.org/050d10n23', 'en', 1, 'https://ror.org/050d10n23 Labour Relations Agency'),
(78960, 'https://ror.org/05hjk6729', 'no_lang_code', 1, 'https://ror.org/05hjk6729 Ferring Arzneimittel Ferring Pharmaceuticals (Germany)'),
(78961, 'https://ror.org/0498w0n61', 'no_lang_code', 1, 'https://ror.org/0498w0n61 NestlƩ (Brazil)'),
(78962, 'https://ror.org/002tgme16', 'en', 1, 'https://ror.org/002tgme16 Canadians Living with HIV Conseil Canadien de Surveillance et d''AccĆØs aux Traitements'),
(78963, 'https://ror.org/04xtdyr20', 'no', 1, 'https://ror.org/04xtdyr20 BƦrum Kommune'),
(78964, 'https://ror.org/04vdctb36', 'de', 1, 'https://ror.org/04vdctb36 Niederer Kraft and Frey'),
(78965, 'https://ror.org/00r2p7t19', 'en', 1, 'https://ror.org/00r2p7t19 Northern Ireland Assembly'),
(78966, 'https://ror.org/02zp2df93', 'en', 1, 'https://ror.org/02zp2df93 Institut für Empirische Gesundheitsökonomie Institute of Empirical Health Economics'),
(78967, 'https://ror.org/00rx3f567', 'en', 1, 'https://ror.org/00rx3f567 Prison Reform Trust'),
(78968, 'https://ror.org/04chzd762', 'en', 1, 'https://ror.org/04chzd762 National University of TucumƔn Universidad Nacional de TucumƔn UniversitƩ nationale de tucumƔn'),
(78969, 'https://ror.org/029xz3860', 'en', 1, 'https://ror.org/029xz3860 Jeanes Hospital'),
(78970, 'https://ror.org/035trbs97', 'en', 1, 'https://ror.org/035trbs97 Eden Medical Center'),
(78971, 'https://ror.org/04szvwj50', 'en', 1, 'https://ror.org/04szvwj50 Military Medical Academy Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠŲ©'),
(78972, 'https://ror.org/05fe96908', 'en', 1, 'https://ror.org/05fe96908 Coalition of Northeastern Governors'),
(78973, 'https://ror.org/03rz4pm90', 'no_lang_code', 1, 'https://ror.org/03rz4pm90 Nortel (Canada)'),
(78974, 'https://ror.org/009ev1878', 'en', 1, 'https://ror.org/009ev1878 KuDos'),
(78975, 'https://ror.org/03jz3bd79', 'en', 1, 'https://ror.org/03jz3bd79 Center for Marine and Oceanographic Research Centre de Recherches OcƩanologiques'),
(78976, 'https://ror.org/01k9xac83', 'en', 1, 'https://ror.org/01k9xac83 Rush University'),
(78977, 'https://ror.org/028pheb30', 'en', 1, 'https://ror.org/028pheb30 Mahavir Cancer Institute and Research Centre'),
(78978, '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'),
(78979, 'https://ror.org/05g7qp006', 'it', 1, 'https://ror.org/05g7qp006 Azienda Sanitaria Universitaria Integrata di Trieste'),
(78980, 'https://ror.org/028a36g75', 'it', 1, 'https://ror.org/028a36g75 Institute of International Affairs Istituto Affari Internazionali'),
(78981, 'https://ror.org/04m60en37', 'en', 1, 'https://ror.org/04m60en37 Bernice P. Bishop Museum'),
(78982, 'https://ror.org/008qvpg94', 'en', 1, 'https://ror.org/008qvpg94 Ural State Academy of Architecture and Arts Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(78983, 'https://ror.org/03x6hbh34', 'en', 1, 'https://ror.org/03x6hbh34 Second Affiliated Hospital of Jilin University'),
(78984, 'https://ror.org/03jgp2295', 'en', 1, 'https://ror.org/03jgp2295 Texas Fertility Center'),
(78985, 'https://ror.org/01ggea168', 'en', 1, 'https://ror.org/01ggea168 Institute for Local Self-Reliance'),
(78986, 'https://ror.org/0189t1115', 'en', 1, 'https://ror.org/0189t1115 American Contact Dermatitis Society'),
(78987, 'https://ror.org/05eqcca29', 'en', 1, 'https://ror.org/05eqcca29 ProHealth Oconomowoc Memorial Hospital'),
(78988, 'https://ror.org/04x8acr98', 'en', 1, 'https://ror.org/04x8acr98 Baptist Health Madisonville'),
(78989, 'https://ror.org/02qmnbs26', 'en', 1, 'https://ror.org/02qmnbs26 Nopparat Rajathanee Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø™ąøžąø£ąø±ąø•ąø™ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(78990, 'https://ror.org/02cda5v64', 'it', 1, 'https://ror.org/02cda5v64 La Fondazione Ettore Sansavini per la Ricerca Scientifica'),
(78991, 'https://ror.org/057fah276', 'en', 1, 'https://ror.org/057fah276 National Eye Centre'),
(78992, 'https://ror.org/01htp5456', 'en', 1, 'https://ror.org/01htp5456 Visitor Studies Association'),
(78993, 'https://ror.org/01hkztv15', 'en', 1, 'https://ror.org/01hkztv15 Aventura Hospital and Medical Center'),
(78994, 'https://ror.org/04cqx3k82', 'en', 1, 'https://ror.org/04cqx3k82 Austin Regional Clinic'),
(78995, 'https://ror.org/03rh3e906', 'en', 1, 'https://ror.org/03rh3e906 TERI University'),
(78996, 'https://ror.org/035xa5s96', 'no_lang_code', 1, 'https://ror.org/035xa5s96 HistoGeneX (Belgium)'),
(78997, 'https://ror.org/047enxx08', 'en', 1, 'https://ror.org/047enxx08 Ethnological Museum Ethnologisches Museum Berlin'),
(78998, 'https://ror.org/00ehy3272', 'en', 1, 'https://ror.org/00ehy3272 New Hope Fertility Center'),
(78999, 'https://ror.org/00ggm6d20', 'en', 1, 'https://ror.org/00ggm6d20 Faith Regional Health Services'),
(79000, 'https://ror.org/034r0b090', 'no_lang_code', 1, 'https://ror.org/034r0b090 Domtar (Canada)'),
(79001, 'https://ror.org/058eg8775', 'no_lang_code', 1, 'https://ror.org/058eg8775 Statistical Research (United States)'),
(79002, 'https://ror.org/0031f9587', 'en', 1, 'https://ror.org/0031f9587 European Society of Biomechanics'),
(79003, 'https://ror.org/016j3vn58', 'de', 1, 'https://ror.org/016j3vn58 Marien Hospital Wesel'),
(79004, 'https://ror.org/03yqta205', 'en', 1, 'https://ror.org/03yqta205 Reid Health'),
(79005, 'https://ror.org/024jgsd53', 'no_lang_code', 1, 'https://ror.org/024jgsd53 Arctic Slope Regional (United States)'),
(79006, 'https://ror.org/03m4gcv27', 'en', 1, 'https://ror.org/03m4gcv27 West Virginia Geological & Economic Survey'),
(79007, 'https://ror.org/03799w695', 'en', 1, 'https://ror.org/03799w695 National Research Centre for Georgian Art History and Heritage Preservation įƒ’įƒ˜įƒįƒ įƒ’įƒ˜ įƒ©įƒ£įƒ‘įƒ˜įƒœįƒįƒØįƒ•įƒ˜įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜ įƒ®įƒ”įƒšįƒįƒ•įƒœįƒ”įƒ‘įƒ˜įƒ” įƒ˜įƒ”įƒ¢įƒįƒ įƒ˜įƒ˜įƒ”įƒ įƒ“įƒ įƒ«įƒ”įƒ’įƒšįƒ—įƒ įƒ“įƒįƒŖįƒ•įƒ˜įƒ” įƒ™įƒ•įƒšįƒ”įƒ•įƒ˜įƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜'),
(79008, 'https://ror.org/02rz8g169', 'fr', 1, 'https://ror.org/02rz8g169 FƩdƩration FranƧaise des Associations et Amicales de Malades Insuffisants ou HandicapƩs Respiratoires'),
(79009, 'https://ror.org/04wx3p623', 'en', 1, 'https://ror.org/04wx3p623 Korean Society of Spine Surgery ėŒ€ķ•œģ²™ģ¶”ģ™øź³¼ķ•™ķšŒ'),
(79010, 'https://ror.org/01jhj1k54', 'en', 1, 'https://ror.org/01jhj1k54 Salt Lake Regional Medical Center'),
(79011, 'https://ror.org/03b6mde77', 'en', 1, 'https://ror.org/03b6mde77 Fawcett Society'),
(79012, 'https://ror.org/01x3p5p96', 'no_lang_code', 1, 'https://ror.org/01x3p5p96 Rolls-Royce (Canada)'),
(79013, 'https://ror.org/0589ntt23', 'en', 1, 'https://ror.org/0589ntt23 Icelandic Fisheries Laboratories'),
(79014, 'https://ror.org/04m4wwh75', 'en', 1, 'https://ror.org/04m4wwh75 Altai State University Алтайский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(79015, 'https://ror.org/055x7np37', 'pl', 1, 'https://ror.org/055x7np37 Polskie Towarzystwo Gastroenterologii'),
(79016, 'https://ror.org/02wv1rw66', 'no_lang_code', 1, 'https://ror.org/02wv1rw66 Oxurion (Belgium)'),
(79017, 'https://ror.org/00vk9xr10', 'en', 1, 'https://ror.org/00vk9xr10 Caucasus Research Resource Centers įƒ™įƒįƒ•įƒ™įƒįƒ”įƒ˜įƒ˜įƒ” įƒ™įƒ•įƒšįƒ”įƒ•įƒ˜įƒ—įƒ˜ įƒ įƒ”įƒ”įƒ£įƒ įƒ”įƒ”įƒ‘įƒ˜įƒ” įƒŖįƒ”įƒœįƒ¢įƒ įƒ”įƒ‘įƒ˜įƒ”'),
(79018, 'https://ror.org/01way3b03', 'en', 1, 'https://ror.org/01way3b03 Florida Department of Health in Orange County'),
(79019, 'https://ror.org/052h6se21', 'en', 1, 'https://ror.org/052h6se21 Columbia St. Mary''s Hospital Ozaukee'),
(79020, 'https://ror.org/03jgmp057', 'en', 1, 'https://ror.org/03jgmp057 Fundação Luso-Americana Para o Desenvolvimento Luso American Development Foundation'),
(79021, 'https://ror.org/05av9mn02', 'en', 1, 'https://ror.org/05av9mn02 Plymouth Marine Laboratory'),
(79022, 'https://ror.org/04ayyqz27', 'en', 1, 'https://ror.org/04ayyqz27 AdventHealth Kissimmee'),
(79023, 'https://ror.org/04pxj3j71', 'en', 1, 'https://ror.org/04pxj3j71 Southeastern Community College - Iowa'),
(79024, 'https://ror.org/01tr91x67', 'en', 1, 'https://ror.org/01tr91x67 Newport Restoration Foundation'),
(79025, 'https://ror.org/005n36371', 'en', 1, 'https://ror.org/005n36371 Danish Medical Association LƦgeforeningen'),
(79026, 'https://ror.org/02tsqtg57', 'en', 1, 'https://ror.org/02tsqtg57 Maxwell Institute for Mathematical Sciences'),
(79027, 'https://ror.org/03bg52265', 'es', 1, 'https://ror.org/03bg52265 El Colegio Mexiquense'),
(79028, 'https://ror.org/02sptxp91', 'en', 1, 'https://ror.org/02sptxp91 Ochsner Baptist Medical Center'),
(79029, 'https://ror.org/05pj5cg52', 'en', 1, 'https://ror.org/05pj5cg52 Close Up Foundation'),
(79030, 'https://ror.org/01x0e6k76', 'en', 1, 'https://ror.org/01x0e6k76 Montefiore Health System'),
(79031, 'https://ror.org/00p7bse27', 'en', 1, 'https://ror.org/00p7bse27 Bozeman Health Deaconess Hospital'),
(79032, 'https://ror.org/00dc6rr74', 'en', 1, 'https://ror.org/00dc6rr74 Tri-Service General Hospital Beitou Branch äø‰č»ēø½é†«é™¢åŒ—ęŠ•åˆ†é™¢'),
(79033, 'https://ror.org/01r3rjz42', 'en', 1, 'https://ror.org/01r3rjz42 Bay Area Hospital'),
(79034, 'https://ror.org/03w448b28', 'en', 1, 'https://ror.org/03w448b28 Research Institute for Applied Sciences åæœē”Øē§‘å­¦ē ”ē©¶ę‰€'),
(79035, 'https://ror.org/03m4evp90', 'en', 1, 'https://ror.org/03m4evp90 Michigan Primary Care Association'),
(79036, 'https://ror.org/04jep6391', 'es', 1, 'https://ror.org/04jep6391 Hospital Universitario HM Sanchinarro'),
(79037, 'https://ror.org/02qtmtk60', 'fi', 1, 'https://ror.org/02qtmtk60 Satakunnan Sairaanhoitopiirin'),
(79038, 'https://ror.org/02ypbdc20', 'en', 1, 'https://ror.org/02ypbdc20 Betanien Hospital Betanien sykehus'),
(79039, 'https://ror.org/03yxrd274', 'en', 1, 'https://ror.org/03yxrd274 Nucro Technics'),
(79040, 'https://ror.org/00sm25y28', 'en', 1, 'https://ror.org/00sm25y28 Society of Tribologists and Lubrication Engineers'),
(79041, 'https://ror.org/052m2bk26', 'en', 1, 'https://ror.org/052m2bk26 Musculoskeletal Tumor Society'),
(79042, 'https://ror.org/00bt7we59', 'es', 1, 'https://ror.org/00bt7we59 Colegio MƩdico de Chile Medical College of Chile'),
(79043, 'https://ror.org/01sjphy93', 'en', 1, 'https://ror.org/01sjphy93 American Society of Landscape Architects'),
(79044, 'https://ror.org/05czq7m38', 'en', 1, 'https://ror.org/05czq7m38 Caspian University Каспий Университеті'),
(79045, 'https://ror.org/038arpa11', 'en', 1, 'https://ror.org/038arpa11 Contra Costa Regional Medical Center'),
(79046, 'https://ror.org/02sm2qm88', 'en', 1, 'https://ror.org/02sm2qm88 Government of Brunei Darussalam'),
(79047, 'https://ror.org/03t518x65', 'en', 1, 'https://ror.org/03t518x65 Norton Women''s and Children''s Hospital'),
(79048, 'https://ror.org/01qp02p38', 'no_lang_code', 1, 'https://ror.org/01qp02p38 Gossamer Bio (United States)'),
(79049, 'https://ror.org/01savwy26', 'en', 1, 'https://ror.org/01savwy26 University Hospitals Parma Medical Center'),
(79050, 'https://ror.org/04jk0my75', 'no_lang_code', 1, 'https://ror.org/04jk0my75 Quantum Design (United States)'),
(79051, 'https://ror.org/02vndcn56', 'en', 1, 'https://ror.org/02vndcn56 Markfield Institute of Higher Education'),
(79052, 'https://ror.org/03arwv312', 'en', 1, 'https://ror.org/03arwv312 Danish Ministry of Environment MiljĆøministeriet'),
(79053, 'https://ror.org/059j2cd05', 'en', 1, 'https://ror.org/059j2cd05 Tenwek Hospital'),
(79054, 'https://ror.org/04yd1pb14', 'en', 1, 'https://ror.org/04yd1pb14 Constitutional Court of Korea ķ—Œė²•ģž¬ķŒģ†Œ'),
(79055, 'https://ror.org/02jqp5961', 'no_lang_code', 1, 'https://ror.org/02jqp5961 Reata Pharmaceuticals (United States)'),
(79056, 'https://ror.org/05n22sa14', 'en', 1, 'https://ror.org/05n22sa14 Regional Technology Strategies'),
(79057, 'https://ror.org/01vacm368', 'en', 1, 'https://ror.org/01vacm368 Laerdal Foundation'),
(79058, 'https://ror.org/02wat9f69', 'no_lang_code', 1, 'https://ror.org/02wat9f69 IBM (United Kingdom)'),
(79059, 'https://ror.org/05e0sek51', 'no_lang_code', 1, 'https://ror.org/05e0sek51 Hankyu Hanshin Holdings (Japan) é˜Ŗę€„é˜Ŗē„žćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(79060, 'https://ror.org/00dt6a694', 'fr', 1, 'https://ror.org/00dt6a694 Centre Hospitalier de Perpignan'),
(79061, 'https://ror.org/00jrbwm32', 'no_lang_code', 1, 'https://ror.org/00jrbwm32 Acibadem City Clinic'),
(79062, 'https://ror.org/006qrck15', 'en', 1, 'https://ror.org/006qrck15 Newport Museum and Art Gallery'),
(79063, 'https://ror.org/0535mdh73', 'en', 1, 'https://ror.org/0535mdh73 Gyeongju National Museum 국립경주박물꓀'),
(79064, 'https://ror.org/03qh6m929', 'en', 1, 'https://ror.org/03qh6m929 Society of Vertebrate Paleontology'),
(79065, 'https://ror.org/04e3bb298', 'en', 1, 'https://ror.org/04e3bb298 The Korean Atopic Dermatitis Association ėŒ€ķ•œģ•„ķ† ķ”¼ķ”¼ė¶€ģ—¼ķ•™ķšŒ'),
(79066, 'https://ror.org/00hajxm04', 'fr', 1, 'https://ror.org/00hajxm04 Institut de Statistiques et d’Études Ɖconomiques du Burundi'),
(79067, 'https://ror.org/03wmxdf36', 'fr', 1, 'https://ror.org/03wmxdf36 Polyclinique de Franche ComtƩ'),
(79068, 'https://ror.org/02dv91s93', 'en', 1, 'https://ror.org/02dv91s93 National Children''s Bureau'),
(79069, 'https://ror.org/0187v3h87', 'en', 1, 'https://ror.org/0187v3h87 Vindolanda Trust'),
(79070, 'https://ror.org/020en6283', 'en', 1, 'https://ror.org/020en6283 NHS Research Scotland'),
(79071, 'https://ror.org/00ks90424', 'no_lang_code', 1, 'https://ror.org/00ks90424 Tauri Group (United States)'),
(79072, 'https://ror.org/030ykd126', 'en', 1, 'https://ror.org/030ykd126 Alberta Gambling Research Institute'),
(79073, 'https://ror.org/0009b0k06', 'fr', 1, 'https://ror.org/0009b0k06 Clinique des CĆØdres'),
(79074, 'https://ror.org/04xpajq87', 'en', 1, 'https://ror.org/04xpajq87 Ocean Medical Center'),
(79075, 'https://ror.org/026vtvm28', 'no_lang_code', 1, 'https://ror.org/026vtvm28 Boehringer Ingelheim (Austria)'),
(79076, 'https://ror.org/009wx7055', 'en', 1, 'https://ror.org/009wx7055 USA Mitchell Cancer Institute'),
(79077, 'https://ror.org/01p0xth29', 'en', 1, 'https://ror.org/01p0xth29 Covenant Medical Center'),
(79078, 'https://ror.org/03x4zh819', 'en', 1, 'https://ror.org/03x4zh819 Asian Social Institute'),
(79079, 'https://ror.org/0535k0q10', 'en', 1, 'https://ror.org/0535k0q10 Deutscher Wasserstoff und Brennstoffzellen Verband German Hydrogen and Fuel-Cell Association'),
(79080, 'https://ror.org/01zyxxv05', 'en', 1, 'https://ror.org/01zyxxv05 Rippe Health'),
(79081, 'https://ror.org/0233zkc29', 'en', 1, 'https://ror.org/0233zkc29 Mid America Regional Council'),
(79082, 'https://ror.org/051b3s825', 'fr', 1, 'https://ror.org/051b3s825 Institut de Formation et de Recherche DƩmographiques'),
(79083, 'https://ror.org/03zgbv316', 'en', 1, 'https://ror.org/03zgbv316 Washington School of Psychiatry'),
(79084, 'https://ror.org/01q6pmm96', 'en', 1, 'https://ror.org/01q6pmm96 University of Portland UniversitƩ de portland'),
(79085, 'https://ror.org/01hnfza55', 'no_lang_code', 1, 'https://ror.org/01hnfza55 Asahi Shimbun Company (Japan) ęœę—„ę–°čžē¤¾'),
(79086, 'https://ror.org/0133gy560', 'no_lang_code', 1, 'https://ror.org/0133gy560 Tishcon (United States)'),
(79087, 'https://ror.org/002xnks13', 'en', 1, 'https://ror.org/002xnks13 Institute for Agriculture and Trade Policy'),
(79088, 'https://ror.org/04xa4c474', 'en', 1, 'https://ror.org/04xa4c474 Energy Research Centre of the Netherlands'),
(79089, 'https://ror.org/02s4nx965', 'en', 1, 'https://ror.org/02s4nx965 Bayan College'),
(79090, 'https://ror.org/0033y0972', 'en', 1, 'https://ror.org/0033y0972 Fairview Lakes Medical Center'),
(79091, 'https://ror.org/01tcs9y33', 'en', 1, 'https://ror.org/01tcs9y33 Canadian Society for Immunology SociƩtƩ Canadienne d''Immunologie'),
(79092, 'https://ror.org/05d21fg98', 'en', 1, 'https://ror.org/05d21fg98 American Medical Society for Sports Medicine'),
(79093, 'https://ror.org/05vs9tj88', 'no_lang_code', 1, 'https://ror.org/05vs9tj88 BMW (Germany) Bayerische Motoren Werke'),
(79094, 'https://ror.org/04nevn997', 'en', 1, 'https://ror.org/04nevn997 Western Regional Medical Center'),
(79095, 'https://ror.org/031200497', 'en', 1, 'https://ror.org/031200497 Nutrifood'),
(79096, 'https://ror.org/02rfcx125', 'no_lang_code', 1, 'https://ror.org/02rfcx125 Maple Leaf Foods'),
(79097, 'https://ror.org/03q9f1475', 'en', 1, 'https://ror.org/03q9f1475 Korean Society of Gastrointestinal Endoscopy ėŒ€ķ•œģ†Œķ™”źø°ė‚“ģ‹œź²½ķ•™ķšŒ'),
(79098, 'https://ror.org/03jhxhg55', 'en', 1, 'https://ror.org/03jhxhg55 Norton Hospital'),
(79099, 'https://ror.org/05vx4by93', 'en', 1, 'https://ror.org/05vx4by93 The Princes Trust'),
(79100, 'https://ror.org/02z7s4a25', 'en', 1, 'https://ror.org/02z7s4a25 American Society for Colposcopy and Cervical Pathology'),
(79101, 'https://ror.org/03qrhd488', 'en', 1, 'https://ror.org/03qrhd488 Edwards Comprehensive Cancer Center'),
(79102, 'https://ror.org/04kpgmr70', 'en', 1, 'https://ror.org/04kpgmr70 Little Rock School District'),
(79103, 'https://ror.org/02170ek39', 'en', 1, 'https://ror.org/02170ek39 Fairfield Medical Center'),
(79104, 'https://ror.org/04q9m7550', 'en', 1, 'https://ror.org/04q9m7550 Association for Supervision and Curriculum Development'),
(79105, 'https://ror.org/007vvce33', 'en', 1, 'https://ror.org/007vvce33 Aurora West Allis Medical Center'),
(79106, 'https://ror.org/049t8z584', 'en', 1, 'https://ror.org/049t8z584 NorthBay Healthcare'),
(79107, 'https://ror.org/053aznw88', 'no_lang_code', 1, 'https://ror.org/053aznw88 FM Global (United States)'),
(79108, 'https://ror.org/03ad88z33', 'en', 1, 'https://ror.org/03ad88z33 State Scientific Center of the Russian Federation - Federal Medical Biophysical Center named after A.I. Burnazyan Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской ФеГерации – Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский биофизический центр имени А.И. Š‘ŃƒŃ€Š½Š°Š·ŃŠ½Š°'),
(79109, 'https://ror.org/002bpyg81', 'en', 1, 'https://ror.org/002bpyg81 Ark Medical Center'),
(79110, 'https://ror.org/02z4j5834', 'en', 1, 'https://ror.org/02z4j5834 American Public Gardens Association'),
(79111, 'https://ror.org/03njn4610', 'es', 1, 'https://ror.org/03njn4610 Instituto de Investigación Sanitaria Aragón'),
(79112, 'https://ror.org/02tjj4k70', 'en', 1, 'https://ror.org/02tjj4k70 St.Amant'),
(79113, 'https://ror.org/054pxse21', 'fr', 1, 'https://ror.org/054pxse21 Conservatoire de Musique et d’art Dramatique du QuĆ©bec'),
(79114, 'https://ror.org/05ke98p93', 'no_lang_code', 1, 'https://ror.org/05ke98p93 Samil Pharm (South Korea) ģ‚¼ģ¼ģ œģ•½'),
(79115, 'https://ror.org/03c1fxf30', 'en', 1, 'https://ror.org/03c1fxf30 Taipei Hospital č‡ŗåŒ—é†«é™¢'),
(79116, 'https://ror.org/01yj9wj22', 'fr', 1, 'https://ror.org/01yj9wj22 CollĆØge LaflĆØche'),
(79117, 'https://ror.org/01jkgrc45', 'en', 1, 'https://ror.org/01jkgrc45 Baton Rouge General'),
(79118, 'https://ror.org/04akwha08', 'en', 1, 'https://ror.org/04akwha08 Planned Parenthood Toronto'),
(79119, 'https://ror.org/02r6fpx29', 'en', 1, 'https://ror.org/02r6fpx29 National Health Research Institutes åœ‹å®¶č”›ē”Ÿē ”ē©¶é™¢'),
(79120, 'https://ror.org/01nst5m10', 'en', 1, 'https://ror.org/01nst5m10 Baptist Memorial Health Care'),
(79121, 'https://ror.org/008fp3016', 'en', 1, 'https://ror.org/008fp3016 Potomac Institute for Policy Studies'),
(79122, 'https://ror.org/0326egx05', 'en', 1, 'https://ror.org/0326egx05 Delta State University'),
(79123, 'https://ror.org/02yk2p779', 'en', 1, 'https://ror.org/02yk2p779 International Society of Automation'),
(79124, 'https://ror.org/020yz7110', 'en', 1, 'https://ror.org/020yz7110 SME'),
(79125, 'https://ror.org/04gchep04', 'en', 1, 'https://ror.org/04gchep04 Elisha Hospital בית חולים אלישע'),
(79126, 'https://ror.org/038147s86', 'no_lang_code', 1, 'https://ror.org/038147s86 Achieve Life Sciences (Canada)'),
(79127, 'https://ror.org/038a3nh93', 'en', 1, 'https://ror.org/038a3nh93 University of Minnesota Health Maple Grove Clinics'),
(79128, 'https://ror.org/00kr65d46', 'en', 1, 'https://ror.org/00kr65d46 People in Need Člověk v Tƭsni'),
(79129, 'https://ror.org/02gvp4w61', 'en', 1, 'https://ror.org/02gvp4w61 Association for Machine Translation in the Americas'),
(79130, 'https://ror.org/03y5p5264', 'en', 1, 'https://ror.org/03y5p5264 Nur University Universidad Nur'),
(79131, 'https://ror.org/033abcd54', 'en', 1, 'https://ror.org/033abcd54 Sunshine Hospital'),
(79132, 'https://ror.org/02pd4fk17', 'en', 1, 'https://ror.org/02pd4fk17 Northeast Georgia Medical Center'),
(79133, 'https://ror.org/03cnezq86', 'en', 1, 'https://ror.org/03cnezq86 Northern Mine Research Society'),
(79134, 'https://ror.org/02ewqv775', 'en', 1, 'https://ror.org/02ewqv775 Boulder Community Hospital'),
(79135, 'https://ror.org/035k44f72', 'no_lang_code', 1, 'https://ror.org/035k44f72 Ahava (Israel)'),
(79136, 'https://ror.org/05qdwtz81', 'en', 1, 'https://ror.org/05qdwtz81 Ludwig Cancer Research'),
(79137, 'https://ror.org/03qfyer56', 'no_lang_code', 1, 'https://ror.org/03qfyer56 Marie Stopes Society'),
(79138, 'https://ror.org/05frtgg14', 'no_lang_code', 1, 'https://ror.org/05frtgg14 Axpo (Switzerland)'),
(79139, 'https://ror.org/02vfd3q08', 'en', 1, 'https://ror.org/02vfd3q08 Memorial Regional Medical Center'),
(79140, 'https://ror.org/04brn0b16', 'no_lang_code', 1, 'https://ror.org/04brn0b16 Catalent (United States)'),
(79141, 'https://ror.org/00pfjsb13', 'en', 1, 'https://ror.org/00pfjsb13 International University School of Medicine'),
(79142, 'https://ror.org/04td0zn33', 'en', 1, 'https://ror.org/04td0zn33 WellSpan Ephrata Community Hospital'),
(79143, 'https://ror.org/00s37wk05', 'de', 1, 'https://ror.org/00s37wk05 Arbeitsstelle für Kulturwissenschaftliche Forschungen'),
(79144, 'https://ror.org/01mazcp58', 'en', 1, 'https://ror.org/01mazcp58 National Medical Holding ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский холГинг'),
(79145, 'https://ror.org/01vqm0433', 'en', 1, 'https://ror.org/01vqm0433 Beaufort County Community College'),
(79146, 'https://ror.org/043fecn14', 'en', 1, 'https://ror.org/043fecn14 Kazakh Research Institute of Agriculture and Plant growing ŅšŠ°Š·Š°Ņ› Жер ŠØŠ°Ń€ŃƒŠ°ŃˆŃ‹Š»Ń‹Ņ“Ń‹ Ғылыми Š—ŠµŃ€Ń‚Ń‚ŠµŃƒ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(79147, 'https://ror.org/0019k3g62', 'en', 1, 'https://ror.org/0019k3g62 Eastern Regional Medical Center'),
(79148, 'https://ror.org/047kf4730', 'en', 1, 'https://ror.org/047kf4730 Doylestown Hospital'),
(79149, 'https://ror.org/03w481t07', 'en', 1, 'https://ror.org/03w481t07 Start International'),
(79150, 'https://ror.org/04mcqge53', 'en', 1, 'https://ror.org/04mcqge53 Ontario Shores Centre for Mental Health Sciences'),
(79151, 'https://ror.org/04xtv9907', 'en', 1, 'https://ror.org/04xtv9907 FGK Clinical Research'),
(79152, 'https://ror.org/015121715', 'en', 1, 'https://ror.org/015121715 Peterson Institute for International Economics'),
(79153, 'https://ror.org/01bdgfy75', 'en', 1, 'https://ror.org/01bdgfy75 Banneker Douglass Museum'),
(79154, 'https://ror.org/04v35sm20', 'en', 1, 'https://ror.org/04v35sm20 Norton Community Hospital'),
(79155, 'https://ror.org/05qvhy970', 'en', 1, 'https://ror.org/05qvhy970 National Athletic Trainers Association'),
(79156, 'https://ror.org/011cztj49', 'en', 1, 'https://ror.org/011cztj49 Southampton General Hospital'),
(79157, 'https://ror.org/03btazg73', 'en', 1, 'https://ror.org/03btazg73 IEEE Industry Applications Society'),
(79158, 'https://ror.org/02capbb49', 'en', 1, 'https://ror.org/02capbb49 Standards, Productivity and Innovation Board 标新局'),
(79159, 'https://ror.org/02xjx7622', 'en', 1, 'https://ror.org/02xjx7622 Renown Regional Medical Center'),
(79160, 'https://ror.org/05cxwhm03', 'en', 1, 'https://ror.org/05cxwhm03 University Hospitals of Morecambe Bay NHS Foundation Trust'),
(79161, 'https://ror.org/05qxez013', 'en', 1, 'https://ror.org/05qxez013 Redcliffe Hospital'),
(79162, 'https://ror.org/059xdv132', 'no_lang_code', 1, 'https://ror.org/059xdv132 Celavie Biosciences (United States)'),
(79163, 'https://ror.org/02zgc4028', 'en', 1, 'https://ror.org/02zgc4028 Canadian Association for Laboratory Animal Science L’Association Canadienne de la MĆ©decine des Animaux de Laboratoire'),
(79164, 'https://ror.org/02b7tjd34', 'en', 1, 'https://ror.org/02b7tjd34 Wigmore Hall'),
(79165, 'https://ror.org/058ay3j75', 'no_lang_code', 1, 'https://ror.org/058ay3j75 BML Munjal University'),
(79166, 'https://ror.org/01z4e5797', 'en', 1, 'https://ror.org/01z4e5797 University of Travnik Univerzitet u Travniku'),
(79167, 'https://ror.org/0051kfw19', 'en', 1, 'https://ror.org/0051kfw19 Montana Learning Center'),
(79168, 'https://ror.org/05fyave37', 'en', 1, 'https://ror.org/05fyave37 Manchester City Football Club'),
(79169, 'https://ror.org/003dprh65', 'en', 1, 'https://ror.org/003dprh65 Black Hills Special Services Cooperative'),
(79170, 'https://ror.org/03whvgq80', 'en', 1, 'https://ror.org/03whvgq80 Kake Educational Institution åŠ čØˆå­¦åœ’'),
(79171, 'https://ror.org/05hs7zv85', 'en', 1, 'https://ror.org/05hs7zv85 Johns Hopkins Center for Communication Programs'),
(79172, 'https://ror.org/03d9rp576', 'en', 1, 'https://ror.org/03d9rp576 LifeStream'),
(79173, 'https://ror.org/02pr26304', 'en', 1, 'https://ror.org/02pr26304 Park Vale Academy'),
(79174, 'https://ror.org/046wdn896', 'de', 1, 'https://ror.org/046wdn896 Verbund Katholischer Kliniken Düsseldorf'),
(79175, 'https://ror.org/04k0ww995', 'en', 1, 'https://ror.org/04k0ww995 Shirak State University Õ‡Õ«Ö€Õ”ÕÆÕ« Õ„Õ«Ö„Õ”ÕµÕ„Õ¬ Õ†Õ”Õ¬Õ¢Õ”Õ¶Õ¤ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(79176, 'https://ror.org/04jtnvj04', 'no_lang_code', 1, 'https://ror.org/04jtnvj04 Pfizer (Austria)'),
(79177, 'https://ror.org/02j7tm046', 'de', 1, 'https://ror.org/02j7tm046 Neue Kantonsschule Aarau'),
(79178, 'https://ror.org/040v7fz77', 'en', 1, 'https://ror.org/040v7fz77 Danish Geotechnical Society Dansk Geoteknisk Forening'),
(79179, 'https://ror.org/0358tcd02', 'en', 1, 'https://ror.org/0358tcd02 Northamptonshire Healthcare NHS Foundation Trust'),
(79180, 'https://ror.org/01qvj2271', 'en', 1, 'https://ror.org/01qvj2271 Otago Polytechnic'),
(79181, 'https://ror.org/05heqa451', 'en', 1, 'https://ror.org/05heqa451 International Center for Research, Education and Training'),
(79182, 'https://ror.org/04w51qd98', 'en', 1, 'https://ror.org/04w51qd98 Academy of Cognitive and Natural Sciences ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń когнітивних та прироГничих наук'),
(79183, 'https://ror.org/03534mt64', 'no_lang_code', 1, 'https://ror.org/03534mt64 Centrum Patologii Molekularnej Cellgen Molecular Pathology Centre Cellgen'),
(79184, 'https://ror.org/04k3aaz82', 'en', 1, 'https://ror.org/04k3aaz82 Universal College of Learning'),
(79185, 'https://ror.org/00p23dy23', 'en', 1, 'https://ror.org/00p23dy23 Cherokee Nation'),
(79186, 'https://ror.org/030qtrs05', 'en', 1, 'https://ror.org/030qtrs05 MRC Integrative Epidemiology Unit'),
(79187, 'https://ror.org/027bh9e22', 'en', 1, 'https://ror.org/027bh9e22 Leiden University Universiteit Leiden'),
(79188, 'https://ror.org/03dtnq041', 'en', 1, 'https://ror.org/03dtnq041 Arab Academy for Management, Banking and Financial Sciences Ų§Ł„Ų£ŁƒŲ§ŲÆŁ…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ© ŁˆŲ§Ł„Ł…Ų§Ł„ŁŠŲ© ŁˆŲ§Ł„Ł…ŲµŲ±ŁŁŠŲ©'),
(79189, 'https://ror.org/01v408m73', 'no', 1, 'https://ror.org/01v408m73 Norges Bank'),
(79190, 'https://ror.org/0543h9a62', 'en', 1, 'https://ror.org/0543h9a62 KunsthĆøgskolen i Oslo Oslo National Academy of the Arts'),
(79191, 'https://ror.org/00wb4mk85', 'en', 1, 'https://ror.org/00wb4mk85 OpenCitations'),
(79192, 'https://ror.org/012cqkk56', 'no_lang_code', 1, 'https://ror.org/012cqkk56 Pacific Theological College'),
(79193, 'https://ror.org/05fx1fs38', 'no_lang_code', 1, 'https://ror.org/05fx1fs38 Astex Pharmaceuticals'),
(79194, 'https://ror.org/04scgfz75', 'en', 1, 'https://ror.org/04scgfz75 OspidƩil na hOllscoile University Hospital Galway'),
(79195, 'https://ror.org/00n4k4n97', 'en', 1, 'https://ror.org/00n4k4n97 Providence Health & Services'),
(79196, 'https://ror.org/0561ahg72', 'en', 1, 'https://ror.org/0561ahg72 Higher Institute of Engineering and Technology - King Marriott لمعاهد Ų§Ł„Ų¹Ł„ŁŠŲ§ ŲØŁƒŁŠŁ†Ų¬ Ł…Ų±ŁŠŁˆŲ·'),
(79197, 'https://ror.org/01p4s0142', 'en', 1, 'https://ror.org/01p4s0142 MRC Population Health Research Unit'),
(79198, 'https://ror.org/03qd55m24', 'en', 1, 'https://ror.org/03qd55m24 Academy Of Finance Hį»c Viện TĆ i ChĆ­nh'),
(79199, 'https://ror.org/05fa1xs93', 'hr', 1, 'https://ror.org/05fa1xs93 Gradski muzej Vinkovci Vinkovci Municipal Museum'),
(79200, 'https://ror.org/01txmfh60', 'no_lang_code', 1, 'https://ror.org/01txmfh60 Seagen (Canada)'),
(79201, 'https://ror.org/01ss14a40', 'en', 1, 'https://ror.org/01ss14a40 Institute of Pharmacology'),
(79202, 'https://ror.org/02zgbc004', 'es', 1, 'https://ror.org/02zgbc004 Technological University of North Tamaulipas Universidad Tecnológica de Tamaulipas Norte'),
(79203, 'https://ror.org/007bsba86', 'no_lang_code', 1, 'https://ror.org/007bsba86 UK EPC'),
(79204, 'https://ror.org/0342dzm54', 'no_lang_code', 1, 'https://ror.org/0342dzm54 Liberate Science'),
(79205, 'https://ror.org/05qq96959', 'en', 1, 'https://ror.org/05qq96959 Federative Institute of Behavioral Addictions Institut FƩdƩratif des Addictions Comportementales'),
(79206, 'https://ror.org/05n43x964', 'de', 1, 'https://ror.org/05n43x964 Deutsches Institut für Urbanistik German Institute of Urban Affairs'),
(79207, 'https://ror.org/03hf75752', 'en', 1, 'https://ror.org/03hf75752 Global Health 50/50'),
(79208, 'https://ror.org/002r67t24', 'en', 1, 'https://ror.org/002r67t24 Manukau Institute of Technology'),
(79209, 'https://ror.org/04t6njz90', 'id', 1, 'https://ror.org/04t6njz90 STIE Kesuma Negara Blitar'),
(79210, 'https://ror.org/049aac153', 'es', 1, 'https://ror.org/049aac153 Antioquia Research Institute Instituto Antioqueño de Investigación'),
(79211, 'https://ror.org/02bjhj961', 'en', 1, 'https://ror.org/02bjhj961 Waikato Institute of Technology'),
(79212, 'https://ror.org/011jsc803', 'en', 1, 'https://ror.org/011jsc803 MRC Human Genetics Unit'),
(79213, 'https://ror.org/00det5k42', 'no_lang_code', 1, 'https://ror.org/00det5k42 Nepal Institute of Research and Communications (NIRC)'),
(79214, 'https://ror.org/05vmk8z81', 'en', 1, 'https://ror.org/05vmk8z81 Norsk jernbanemuseum Norwegian Railway Museum'),
(79215, 'https://ror.org/00wykxp39', 'en', 1, 'https://ror.org/00wykxp39 Nelson Marlborough Institute of Technology'),
(79216, 'https://ror.org/03p3y9p09', 'en', 1, 'https://ror.org/03p3y9p09 Association of European Schools of Planning'),
(79217, 'https://ror.org/02scvmk68', 'en', 1, 'https://ror.org/02scvmk68 Southern Institute of Technology'),
(79218, 'https://ror.org/01vnc0w82', 'en', 1, 'https://ror.org/01vnc0w82 AVA – Academy of Visual Arts AVA – Akademija za Vizualne Umetnosti'),
(79219, 'https://ror.org/05ddbg479', 'en', 1, 'https://ror.org/05ddbg479 Bapuji Institute of Engineering and Technology'),
(79220, 'https://ror.org/03es66g06', 'en', 1, 'https://ror.org/03es66g06 Leiden Observatory Sterrewacht Leiden'),
(79221, 'https://ror.org/006fvbd84', 'en', 1, 'https://ror.org/006fvbd84 Delaware Museum of Nature and Science');
INSERT INTO `rors` VALUES
(79222, 'https://ror.org/014qktf20', 'en', 1, 'https://ror.org/014qktf20 Symbiosis Group'),
(79223, 'https://ror.org/055bk6w95', 'no_lang_code', 1, 'https://ror.org/055bk6w95 BuiltWith'),
(79224, 'https://ror.org/03ycgmc41', 'en', 1, 'https://ror.org/03ycgmc41 Wellington Institute of Technology'),
(79225, 'https://ror.org/013k5y296', 'no_lang_code', 1, 'https://ror.org/013k5y296 Otsuka (Japan) å¤§å”šč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(79226, 'https://ror.org/00ct9cz38', 'en', 1, 'https://ror.org/00ct9cz38 Eastern Institute of Technology'),
(79227, 'https://ror.org/01t2w0q86', 'en', 1, 'https://ror.org/01t2w0q86 Toi Ohomai Institute of Technology'),
(79228, 'https://ror.org/04rjz5883', 'en', 1, 'https://ror.org/04rjz5883 eLife Sciences Publications'),
(79229, 'https://ror.org/03w2xw870', 'en', 1, 'https://ror.org/03w2xw870 Grúpa Cúram SlÔinte Ollscoile Saolta Saolta University Health Care Group'),
(79230, 'https://ror.org/03tj1w486', 'no_lang_code', 1, 'https://ror.org/03tj1w486 Haradoi Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŽŸåœŸäŗ•ē—…é™¢'),
(79231, 'https://ror.org/00k0fxx81', 'en', 1, 'https://ror.org/00k0fxx81 Japan Society of Home Economics äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å®¶ę”æå­¦ä¼š'),
(79232, 'https://ror.org/03ykm7q16', 'no_lang_code', 1, 'https://ror.org/03ykm7q16 Saitama Prefecture åŸ¼ēŽ‰ēœŒåŗ'),
(79233, 'https://ror.org/00a7kn731', 'en', 1, 'https://ror.org/00a7kn731 Kushiro Junior College é‡§č·ÆēŸ­ęœŸå¤§å­¦'),
(79234, 'https://ror.org/00garhy75', 'en', 1, 'https://ror.org/00garhy75 National Epilepsy Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹é™å²”ć¦ć‚“ć‹ć‚“ćƒ»ē„žēµŒåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(79235, 'https://ror.org/007c88108', 'en', 1, 'https://ror.org/007c88108 Tokyo Institute of Psychiatry č²”å›£ę³•äŗŗę±äŗ¬éƒ½åŒ»å­¦ē ”ē©¶ę©Ÿę§‹ę±äŗ¬éƒ½ē²¾ē„žåŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(79236, 'https://ror.org/04gcc2383', 'no_lang_code', 1, 'https://ror.org/04gcc2383 Yakult Central Institute ę Ŗå¼ä¼šē¤¾ćƒ¤ć‚Æćƒ«ćƒˆęœ¬ē¤¾'),
(79237, 'https://ror.org/04tmv3q77', 'no_lang_code', 1, 'https://ror.org/04tmv3q77 Toyo Ink (Japan) ę±ę“‹ć‚¤ćƒ³ć‚­ę Ŗå¼ä¼šē¤¾'),
(79238, 'https://ror.org/03jv9sa78', 'en', 1, 'https://ror.org/03jv9sa78 Japanese Society of Hypertension ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬é«˜č”€åœ§å­¦ä¼š'),
(79239, 'https://ror.org/04j4nak57', 'en', 1, 'https://ror.org/04j4nak57 Kobe City Medical Center General Hospital ē„žęˆøåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼äø­å¤®åø‚ę°‘ē—…é™¢'),
(79240, 'https://ror.org/001bx3s75', 'no_lang_code', 1, 'https://ror.org/001bx3s75 Ulvac-Phi (Japan) ć‚¢ćƒ«ćƒćƒƒć‚Æćƒ»ćƒ•ć‚”ć‚¤ę Ŗå¼ä¼šē¤¾'),
(79241, 'https://ror.org/008zyts17', 'no_lang_code', 1, 'https://ror.org/008zyts17 Mito Saiseikai General Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šę°“ęˆøęøˆē”Ÿä¼šē·åˆē—…é™¢'),
(79242, 'https://ror.org/04f0kxe59', 'no_lang_code', 1, 'https://ror.org/04f0kxe59 Hewlett-Packard (Japan) ę—„ęœ¬ćƒ’ćƒ„ćƒ¼ćƒ¬ćƒƒćƒˆćƒ»ćƒ‘ćƒƒć‚«ćƒ¼ćƒ‰ę Ŗå¼ä¼šē¤¾'),
(79243, 'https://ror.org/04wsgqy55', 'en', 1, 'https://ror.org/04wsgqy55 Nippon Veterinary and Life Science University ę—„ęœ¬ē£åŒ»ē”Ÿå‘½ē§‘å­¦å¤§å­¦'),
(79244, 'https://ror.org/018v0zv10', 'no_lang_code', 1, 'https://ror.org/018v0zv10 Kobe Gakuin University ē„žęˆøå­¦é™¢å¤§å­¦'),
(79245, 'https://ror.org/01tpyf635', 'en', 1, 'https://ror.org/01tpyf635 Japan Textbook Research Center å…¬ē›Šč²”å›£ę³•äŗŗę•™ē§‘ę›øē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(79246, 'https://ror.org/02wcsw791', 'no_lang_code', 1, 'https://ror.org/02wcsw791 Osaka Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹å¤§é˜Ŗē—…é™¢'),
(79247, 'https://ror.org/03p330m15', 'no_lang_code', 1, 'https://ror.org/03p330m15 Dexerials (Japan) ćƒ‡ć‚Æć‚»ćƒŖć‚¢ćƒ«ć‚ŗę Ŗå¼ä¼šē¤¾'),
(79248, 'https://ror.org/04vqx8m08', 'no_lang_code', 1, 'https://ror.org/04vqx8m08 GS1 Japan äø€čˆ¬č²”å›£ę³•äŗŗęµé€šć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(79249, 'https://ror.org/0486fm608', 'no_lang_code', 1, 'https://ror.org/0486fm608 Glory (Japan) ć‚°ćƒ­ćƒ¼ćƒŖćƒ¼ę Ŗå¼ä¼šē¤¾'),
(79250, 'https://ror.org/019tepx80', 'en', 1, 'https://ror.org/019tepx80 Okayama University Hospital 岔山大学病院'),
(79251, 'https://ror.org/03wa1wy25', 'en', 1, 'https://ror.org/03wa1wy25 Tottori University Hospital é³„å–å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79252, 'https://ror.org/00ht8je70', 'en', 1, 'https://ror.org/00ht8je70 Inamori Foundation å…¬ē›Šč²”å›£ę³•äŗŗēØ²ē››č²”å›£'),
(79253, 'https://ror.org/00c2h6p86', 'no_lang_code', 1, 'https://ror.org/00c2h6p86 Texas Instruments (Japan) ę—„ęœ¬ćƒ†ć‚­ć‚µć‚¹ćƒ»ć‚¤ćƒ³ć‚¹ćƒ„ćƒ«ćƒ”ćƒ³ćƒ„ę Ŗå¼ä¼šē¤¾'),
(79254, 'https://ror.org/00v053551', 'en', 1, 'https://ror.org/00v053551 Osaka City General Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§é˜Ŗåø‚ę°‘ē—…é™¢ę©Ÿę§‹å¤§é˜Ŗåø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(79255, 'https://ror.org/02qdq4a41', 'en', 1, 'https://ror.org/02qdq4a41 Nippon Institute for Biological Science äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(79256, 'https://ror.org/043pqsk20', 'en', 1, 'https://ror.org/043pqsk20 Japanese Red Cross Nagoya Daini Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾åå¤å±‹ē¬¬äŗŒčµ¤åå­—ē—…é™¢'),
(79257, 'https://ror.org/00xmy4x78', 'en', 1, 'https://ror.org/00xmy4x78 Nagano Prefectural Suzaka Hospital é•·é‡ŽēœŒē«‹äæ”å·žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(79258, 'https://ror.org/03mezqr97', 'en', 1, 'https://ror.org/03mezqr97 Shujitsu University 就実大学'),
(79259, 'https://ror.org/03rd0p893', 'en', 1, 'https://ror.org/03rd0p893 Tokyo Metropolitan Institute of Gerontology åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę±äŗ¬éƒ½å„åŗ·é•·åÆæåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(79260, 'https://ror.org/01skf6196', 'en', 1, 'https://ror.org/01skf6196 Biotherapy Institute of Japan ę Ŗå¼ä¼šē¤¾ę—„ęœ¬ćƒć‚¤ć‚Ŗć‚»ćƒ©ćƒ”ćƒ¼ē ”ē©¶ę‰€'),
(79261, 'https://ror.org/03axg0947', 'en', 1, 'https://ror.org/03axg0947 Yamagata Research Institute Of Technology å±±å½¢ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(79262, 'https://ror.org/019ekef14', 'no_lang_code', 1, 'https://ror.org/019ekef14 Kasugai Municipal Hospital ę˜„ę—„äŗ•åø‚ę°‘ē—…é™¢'),
(79263, 'https://ror.org/03a9hgn46', 'no_lang_code', 1, 'https://ror.org/03a9hgn46 API (Japan) ć‚¢ćƒ”ę Ŗå¼ä¼šē¤¾'),
(79264, 'https://ror.org/04ftw3n55', 'en', 1, 'https://ror.org/04ftw3n55 Nagoya Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹åå¤å±‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(79265, 'https://ror.org/005ns7397', 'en', 1, 'https://ror.org/005ns7397 Nara Prefectural Institute of Public Health Research Center å„ˆč‰ÆēœŒäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(79266, 'https://ror.org/03y50fa25', 'no_lang_code', 1, 'https://ror.org/03y50fa25 Laurel Bank Machines (Japan) ćƒ­ćƒ¼ćƒ¬ćƒ«ćƒćƒ³ć‚Æćƒžć‚·ćƒ³ę Ŗå¼ä¼šē¤¾'),
(79267, 'https://ror.org/05jygqt38', 'no_lang_code', 1, 'https://ror.org/05jygqt38 Lixil (Japan) ę Ŗå¼ä¼šē¤¾LIXIL'),
(79268, 'https://ror.org/03j56s085', 'en', 1, 'https://ror.org/03j56s085 Chukyo Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹äø­äŗ¬ē—…é™¢'),
(79269, 'https://ror.org/02wgf5858', 'no_lang_code', 1, 'https://ror.org/02wgf5858 Surugadai Nihon University Hospital ę—„ęœ¬å¤§å­¦ē—…é™¢'),
(79270, 'https://ror.org/041hynd24', 'no_lang_code', 1, 'https://ror.org/041hynd24 Komori (Japan) ę Ŗå¼ä¼šē¤¾å°ę£®ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(79271, 'https://ror.org/03acpnr73', 'en', 1, 'https://ror.org/03acpnr73 Light Metal Educational Foundation å…¬ē›Šč²”å›£ę³•äŗŗč»½é‡‘å±žå„Øå­¦ä¼š'),
(79272, 'https://ror.org/03kfmm080', 'en', 1, 'https://ror.org/03kfmm080 Aichi Cancer Center ę„›ēŸ„ēœŒćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(79273, 'https://ror.org/02dr55561', 'en', 1, 'https://ror.org/02dr55561 Tochigi Prefectural Fisheries Experimental Station ę ƒęœØēœŒę°“ē”£č©¦éØ“å “'),
(79274, 'https://ror.org/047kd7281', 'no_lang_code', 1, 'https://ror.org/047kd7281 BoZo Research Center (Japan) ę Ŗå¼ä¼šē¤¾ćƒœć‚¾ćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(79275, 'https://ror.org/03j44cc15', 'en', 1, 'https://ror.org/03j44cc15 Nagano National Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ę±é•·é‡Žē—…é™¢'),
(79276, 'https://ror.org/02faywq38', 'en', 1, 'https://ror.org/02faywq38 Japanese Red Cross Kumamoto Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ē†Šęœ¬čµ¤åå­—ē—…é™¢'),
(79277, 'https://ror.org/01cfmz593', 'no_lang_code', 1, 'https://ror.org/01cfmz593 NOK Corporation (Japan) NOKę Ŗå¼ä¼šē¤¾'),
(79278, 'https://ror.org/04g1fwn42', 'en', 1, 'https://ror.org/04g1fwn42 Kyorin University Hospital ęęž—å¤§å­¦åŒ»å­¦éƒØä»˜å±žē—…é™¢'),
(79279, 'https://ror.org/02j1xhm46', 'en', 1, 'https://ror.org/02j1xhm46 Tokyo Metropolitan Neurological Hospital ę±äŗ¬éƒ½ē«‹ē„žēµŒē—…é™¢'),
(79280, 'https://ror.org/02hg8ry82', 'en', 1, 'https://ror.org/02hg8ry82 Japanese Red Cross Kochi Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é«˜ēŸ„čµ¤åå­—ē—…é™¢'),
(79281, 'https://ror.org/02qsepw74', 'en', 1, 'https://ror.org/02qsepw74 Aichi Institute of Technology ę„›ēŸ„å·„ę„­å¤§å­¦'),
(79282, 'https://ror.org/054n63512', 'en', 1, 'https://ror.org/054n63512 Kato Memorial Bioscience Foundation å…¬ē›Šč²”å›£ę³•äŗŗåŠ č—¤čØ˜åæµćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ęŒÆčˆˆč²”å›£'),
(79283, 'https://ror.org/049444z21', 'no_lang_code', 1, 'https://ror.org/049444z21 Sakakibara Memorial Hospital å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åæƒč‡“č”€åœ§ē ”ē©¶ęŒÆčˆˆä¼šę¦ŠåŽŸčØ˜åæµē—…é™¢'),
(79284, 'https://ror.org/04k6gr834', 'en', 1, 'https://ror.org/04k6gr834 Kyoto University Hospital äŗ¬éƒ½å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79285, 'https://ror.org/02skgb336', 'no_lang_code', 1, 'https://ror.org/02skgb336 JAć‹ćæć¤ćŒåŽšē”Ÿé€£äøŠéƒ½č³€ē·åˆē—…é™¢ Kamituga General Hospital'),
(79286, 'https://ror.org/028fz3b89', 'en', 1, 'https://ror.org/028fz3b89 University of Tsukuba Hospital ē­‘ę³¢å¤§å­¦é™„å±žē—…é™¢'),
(79287, 'https://ror.org/018hwpf05', 'no_lang_code', 1, 'https://ror.org/018hwpf05 Hosokawa Micron (Japan) ćƒ›ć‚½ć‚«ćƒÆćƒŸć‚Æćƒ­ćƒ³ę Ŗå¼ä¼šē¤¾'),
(79288, 'https://ror.org/005hf4246', 'en', 1, 'https://ror.org/005hf4246 Tohoku University of Community Service and Science ę±åŒ—å…¬ē›Šę–‡ē§‘å¤§å­¦'),
(79289, 'https://ror.org/05y632398', 'en', 1, 'https://ror.org/05y632398 Institute for Animal Reproduction äø€čˆ¬č²”å›£ę³•äŗŗå‹•ē‰©ē¹ę®–ē ”ē©¶ę‰€'),
(79290, 'https://ror.org/03r519674', 'en', 1, 'https://ror.org/03r519674 RIKEN Center for Computational Science å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€čØˆē®—ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(79291, 'https://ror.org/05ptpxn60', 'en', 1, 'https://ror.org/05ptpxn60 University of East Asia ę±äŗœå¤§å­¦'),
(79292, 'https://ror.org/01rgbbv42', 'en', 1, 'https://ror.org/01rgbbv42 Osaka Neurological Institute å…¬ē›Šč²”å›£ę³•äŗŗå”ę¾¤čØ˜åæµä¼šå¤§é˜Ŗč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(79293, 'https://ror.org/03mm3ph30', 'no_lang_code', 1, 'https://ror.org/03mm3ph30 Micron (Japan) ćƒžć‚¤ć‚Æćƒ­ćƒ³ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(79294, 'https://ror.org/04j8wth34', 'en', 1, 'https://ror.org/04j8wth34 Tsurumi University 鶓見大学'),
(79295, 'https://ror.org/0055wbw34', 'no_lang_code', 1, 'https://ror.org/0055wbw34 Matsuyama Shimin Hospital ę¾å±±åø‚ę°‘ē—…é™¢'),
(79296, 'https://ror.org/03h3tds63', 'no_lang_code', 1, 'https://ror.org/03h3tds63 Toyohashi Municipal Hospital č±Šę©‹åø‚ę°‘ē—…é™¢'),
(79297, 'https://ror.org/03dp40q62', 'en', 1, 'https://ror.org/03dp40q62 Almeida Memorial Hospital å¤§åˆ†åø‚åŒ»åø«ä¼šē«‹ć‚¢ćƒ«ćƒ”ć‚¤ćƒ€ē—…é™¢'),
(79298, 'https://ror.org/00bb55562', 'en', 1, 'https://ror.org/00bb55562 Kobe University Hospital ē„žęˆøå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79299, 'https://ror.org/031ynym32', 'en', 1, 'https://ror.org/031ynym32 Children''s Cancer Association of Japan å…¬ē›Šč²”å›£ę³•äŗŗćŒć‚“ć®å­ć©ć‚‚ć‚’å®ˆć‚‹ä¼š'),
(79300, 'https://ror.org/052rvxk90', 'en', 1, 'https://ror.org/052rvxk90 National Institute for Minamata Disease ē’°å¢ƒēœå›½ē«‹ę°“äæ£ē—…ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(79301, 'https://ror.org/05kfafn92', 'en', 1, 'https://ror.org/05kfafn92 Institute for International Studies and Training äø€čˆ¬č²”å›£ę³•äŗŗč²æę˜“ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(79302, 'https://ror.org/00xj3b267', 'no_lang_code', 1, 'https://ror.org/00xj3b267 GKN (Japan) GKNćƒ‰ćƒ©ć‚¤ćƒ–ćƒ©ć‚¤ćƒ³ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(79303, 'https://ror.org/04fxsjh51', 'no_lang_code', 1, 'https://ror.org/04fxsjh51 Nabtesco (Japan) ćƒŠćƒ–ćƒ†ć‚¹ć‚³ę Ŗå¼ä¼šē¤¾'),
(79304, 'https://ror.org/02szmmq82', 'en', 1, 'https://ror.org/02szmmq82 Akita University Hospital ē§‹ē”°å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79305, 'https://ror.org/059f0qa90', 'en', 1, 'https://ror.org/059f0qa90 Japan Fine Ceramics Center äø€čˆ¬č²”å›£ę³•äŗŗćƒ•ć‚”ć‚¤ćƒ³ć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(79306, 'https://ror.org/00g51j712', 'en', 1, 'https://ror.org/00g51j712 Saga Medical School Hospital ä½č³€å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79307, 'https://ror.org/041mcya16', 'en', 1, 'https://ror.org/041mcya16 Nagano Red Cross Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é•·é‡Žčµ¤åå­—ē—…é™¢'),
(79308, 'https://ror.org/026rga753', 'en', 1, 'https://ror.org/026rga753 Chiba East Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹åƒč‘‰ę±ē—…é™¢'),
(79309, 'https://ror.org/0419drx70', 'en', 1, 'https://ror.org/0419drx70 Hokkaido University Hospital åŒ—ęµ·é“å¤§å­¦ē—…é™¢'),
(79310, 'https://ror.org/02jg1fa85', 'no_lang_code', 1, 'https://ror.org/02jg1fa85 Suntory (Japan) ć‚µćƒ³ćƒˆćƒŖćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(79311, 'https://ror.org/00v337f26', 'fr', 1, 'https://ror.org/00v337f26 ConfƩrence Universitaire de Suisse Occidentale'),
(79312, 'https://ror.org/03g9ek587', 'en', 1, 'https://ror.org/03g9ek587 National Research Institute of Police Science č­¦åÆŸåŗē§‘å­¦č­¦åÆŸē ”ē©¶ę‰€'),
(79313, 'https://ror.org/01gvmn480', 'en', 1, 'https://ror.org/01gvmn480 Tokai University Hospital ę±ęµ·å¤§å­¦åŒ»å­¦éƒØä»˜å±žē—…é™¢'),
(79314, 'https://ror.org/013n55y95', 'en', 1, 'https://ror.org/013n55y95 Cosmetology Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚³ć‚¹ćƒ”ćƒˆćƒ­ć‚øćƒ¼ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(79315, 'https://ror.org/00e18hs98', 'no_lang_code', 1, 'https://ror.org/00e18hs98 Niigata Cancer Center Hospital ę–°ę½ŸēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼ę–°ę½Ÿē—…é™¢'),
(79316, 'https://ror.org/0042cyg15', 'no_lang_code', 1, 'https://ror.org/0042cyg15 Oiles (japan) ć‚Ŗć‚¤ćƒ¬ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79317, 'https://ror.org/04s629c33', 'en', 1, 'https://ror.org/04s629c33 National Institute of Health Sciences åŽšē”ŸåŠ“åƒēœå›½ē«‹åŒ»č–¬å“é£Ÿå“č”›ē”Ÿē ”ē©¶ę‰€'),
(79318, 'https://ror.org/05arv2073', 'no_lang_code', 1, 'https://ror.org/05arv2073 Bayer (Japan) ćƒć‚¤ć‚Øćƒ«č–¬å“ę Ŗå¼ä¼šē¤¾'),
(79319, 'https://ror.org/05x0by667', 'no_lang_code', 1, 'https://ror.org/05x0by667 Fuji Kiko (Japan) åÆŒå£«ę©Ÿå·„ę Ŗå¼ä¼šē¤¾'),
(79320, 'https://ror.org/05bz4s011', 'en', 1, 'https://ror.org/05bz4s011 Musashino Red Cross Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ę­¦č”µé‡Žčµ¤åå­—ē—…é™¢'),
(79321, 'https://ror.org/00jtmm480', 'en', 1, 'https://ror.org/00jtmm480 Japan Industrial Safety and Health Association ē‰¹åˆ„ę°‘é–“ę³•äŗŗäø­å¤®åŠ“åƒē½å®³é˜²ę­¢å”ä¼š'),
(79322, 'https://ror.org/051mfb226', 'en', 1, 'https://ror.org/051mfb226 Tokai Central Hospital å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆę±ęµ·äø­å¤®ē—…é™¢'),
(79323, 'https://ror.org/004h24333', 'no_lang_code', 1, 'https://ror.org/004h24333 CellFree Sciences (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ćƒ«ćƒ•ćƒŖćƒ¼ć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(79324, 'https://ror.org/032rtvf56', 'no_lang_code', 1, 'https://ror.org/032rtvf56 Fukui-ken Saiseikai Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šē¦äŗ•ēœŒęøˆē”Ÿä¼šē—…é™¢'),
(79325, 'https://ror.org/03f918r09', 'en', 1, 'https://ror.org/03f918r09 Japanese Red Cross Nagoya Daiichi Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾åå¤å±‹ē¬¬äø€čµ¤åå­—ē—…é™¢'),
(79326, 'https://ror.org/03mz46a79', 'no_lang_code', 1, 'https://ror.org/03mz46a79 Berurando General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē”Ÿé•·ä¼šćƒ™ćƒ«ćƒ©ćƒ³ćƒ‰ē·åˆē—…é™¢'),
(79327, 'https://ror.org/020pjpv69', 'en', 1, 'https://ror.org/020pjpv69 Toin University of Yokohama ę”č”­ęØŖęµœå¤§å­¦'),
(79328, 'https://ror.org/0331wqp96', 'no_lang_code', 1, 'https://ror.org/0331wqp96 Toyohashi Heart Center åŒ»ē™‚ę³•äŗŗę¾„åæƒä¼šč±Šę©‹ćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(79329, 'https://ror.org/00kv49k33', 'no_lang_code', 1, 'https://ror.org/00kv49k33 KRI ę Ŗå¼ä¼šē¤¾KRI'),
(79330, 'https://ror.org/003z23p70', 'en', 1, 'https://ror.org/003z23p70 Research Institute for Brain and Blood Vessels Akita åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē§‹ē”°ēœŒē«‹ē—…é™¢ę©Ÿę§‹ē§‹ē”°ēœŒē«‹č„³č”€ē®”ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(79331, 'https://ror.org/016mgbr72', 'en', 1, 'https://ror.org/016mgbr72 East Siberian University of Economics and Law Восточно-Дибирский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(79332, 'https://ror.org/0498kr054', 'en', 1, 'https://ror.org/0498kr054 Sapporo City General Hospital åø‚ē«‹ęœ­å¹Œē—…é™¢'),
(79333, 'https://ror.org/036d5p407', 'no_lang_code', 1, 'https://ror.org/036d5p407 Fuence (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ„ćƒ¼ć‚Øćƒ³ć‚¹'),
(79334, 'https://ror.org/02qa5hr50', 'en', 1, 'https://ror.org/02qa5hr50 Mitsui Memorial Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗäø‰äŗ•čØ˜åæµē—…é™¢'),
(79335, 'https://ror.org/01qd25655', 'en', 1, 'https://ror.org/01qd25655 Japanese Red Cross Kobe Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ē„žęˆøčµ¤åå­—ē—…é™¢'),
(79336, 'https://ror.org/0075e2n47', 'en', 1, 'https://ror.org/0075e2n47 Hoso Bunka Foundation å…¬ē›Šč²”å›£ę³•äŗŗę”¾é€ę–‡åŒ–åŸŗé‡‘'),
(79337, 'https://ror.org/04wpebs26', 'en', 1, 'https://ror.org/04wpebs26 Yamagata Prefectural Yonezawa University of Nutrition Sciences å±±å½¢ēœŒē«‹ē±³ę²¢ę „é¤Šå¤§å­¦'),
(79338, 'https://ror.org/02qb8gh26', 'en', 1, 'https://ror.org/02qb8gh26 Matsumae International Foundation å…¬ē›Šč²”å›£ę³•äŗŗę¾å‰å›½éš›å‹å„½č²”å›£'),
(79339, 'https://ror.org/019zv8f18', 'en', 1, 'https://ror.org/019zv8f18 National Institute of Occupational Safety and Health ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹åŠ“åƒå®‰å…Øč”›ē”Ÿē·åˆē ”ē©¶ę‰€'),
(79340, 'https://ror.org/045ysha14', 'en', 1, 'https://ror.org/045ysha14 Nara Medical University å„ˆč‰ÆēœŒē«‹åŒ»ē§‘å¤§å­¦'),
(79341, 'https://ror.org/00178zy73', 'no_lang_code', 1, 'https://ror.org/00178zy73 JAę„›ēŸ„åŽšē”Ÿé€£ę±Ÿå—åŽšē”Ÿē—…é™¢ Konan Kosei Hospital'),
(79342, 'https://ror.org/01myftv43', 'no_lang_code', 1, 'https://ror.org/01myftv43 Sinto (Japan) ę–°ę±å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79343, 'https://ror.org/02dwzmz76', 'en', 1, 'https://ror.org/02dwzmz76 Gunma Astronomical Observatory ē¾¤é¦¬ēœŒē«‹ćć‚“ć¾å¤©ę–‡å°'),
(79344, 'https://ror.org/05fvd6e47', 'en', 1, 'https://ror.org/05fvd6e47 Sanin Rosai Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹å±±é™°åŠ“ē½ē—…é™¢'),
(79345, 'https://ror.org/04q4hbm31', 'en', 1, 'https://ror.org/04q4hbm31 Smoking Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗå–«ē…™ē§‘å­¦ē ”ē©¶č²”å›£'),
(79346, 'https://ror.org/00evhyq63', 'no_lang_code', 1, 'https://ror.org/00evhyq63 Amine Pharma (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒŸćƒ³ćƒ•ć‚”ćƒ¼ćƒžē ”ē©¶ę‰€'),
(79347, 'https://ror.org/02mwa1a98', 'no_lang_code', 1, 'https://ror.org/02mwa1a98 Hamamatsu Rosai Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹ęµœę¾åŠ“ē½ē—…é™¢'),
(79348, 'https://ror.org/05th9sq46', 'en', 1, 'https://ror.org/05th9sq46 Salt Science Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚½ćƒ«ćƒˆćƒ»ć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶č²”å›£'),
(79349, 'https://ror.org/02s7nat60', 'no_lang_code', 1, 'https://ror.org/02s7nat60 Nihon Nohyaku (Japan) ę—„ęœ¬č¾²č–¬ę Ŗå¼ä¼šē¤¾'),
(79350, 'https://ror.org/02cndcd59', 'en', 1, 'https://ror.org/02cndcd59 National Institute of Technology, Kure College å‘‰å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(79351, 'https://ror.org/02dkmhg56', 'en', 1, 'https://ror.org/02dkmhg56 Higashi Osaka City General Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåø‚ē«‹ę±å¤§é˜ŖåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(79352, 'https://ror.org/05yk8hs36', 'no_lang_code', 1, 'https://ror.org/05yk8hs36 ID Pharma (Japan) ę Ŗå¼ä¼šē¤¾IDćƒ•ć‚”ćƒ¼ćƒž'),
(79353, 'https://ror.org/031nwrz22', 'no_lang_code', 1, 'https://ror.org/031nwrz22 JMS (Japan) ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ»ć‚Øćƒ ćƒ»ć‚Øć‚¹'),
(79354, 'https://ror.org/05h0rw812', 'en', 1, 'https://ror.org/05h0rw812 National Center for Geriatrics and Gerontology å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹é•·åÆæåŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(79355, 'https://ror.org/029jhw134', 'en', 1, 'https://ror.org/029jhw134 JAåŒ—ęµ·é“åŽšē”Ÿé€£ęœ­å¹ŒåŽšē”Ÿē—…é™¢ Sapporo Kosei General Hospital'),
(79356, 'https://ror.org/04vr3cf25', 'no_lang_code', 1, 'https://ror.org/04vr3cf25 BML (Japan) ę Ŗå¼ä¼šē¤¾ćƒ“ćƒ¼ćƒ»ć‚Øćƒ ćƒ»ć‚Øćƒ«'),
(79357, 'https://ror.org/04z7xfj55', 'en', 1, 'https://ror.org/04z7xfj55 Japan Health Sciences Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒ’ćƒ„ćƒ¼ćƒžćƒ³ć‚µć‚¤ć‚Øćƒ³ć‚¹ęŒÆčˆˆč²”å›£'),
(79358, 'https://ror.org/037jefe25', 'en', 1, 'https://ror.org/037jefe25 Sunagawa City Medical Center ē ‚å·åø‚ē«‹ē—…é™¢'),
(79359, 'https://ror.org/002fj3m33', 'en', 1, 'https://ror.org/002fj3m33 Tokyo Zoological Park Society å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬å‹•ē‰©åœ’å”ä¼š'),
(79360, 'https://ror.org/04t23sv93', 'no_lang_code', 1, 'https://ror.org/04t23sv93 Mitsubishi Space Software (Japan) äø‰č±ć‚¹ćƒšćƒ¼ć‚¹ćƒ»ć‚½ćƒ•ćƒˆć‚¦ć‚Øć‚¢ę Ŗå¼ä¼šē¤¾'),
(79361, 'https://ror.org/00293y771', 'en', 1, 'https://ror.org/00293y771 Sendai National College of Technology ä»™å°é«˜ē­‰å°‚é–€å­¦ę ”'),
(79362, 'https://ror.org/03sg4m484', 'en', 1, 'https://ror.org/03sg4m484 Public Central Hospital of Matto Ishikawa å…¬ē«‹ę¾ä»»ēŸ³å·äø­å¤®ē—…é™¢'),
(79363, 'https://ror.org/04wn7d698', 'en', 1, 'https://ror.org/04wn7d698 Showa University Hospital ę˜­å’Œå¤§å­¦ē—…é™¢'),
(79364, 'https://ror.org/02cdwar72', 'no_lang_code', 1, 'https://ror.org/02cdwar72 Bando Chemical Industries (Japan) ćƒćƒ³ćƒ‰ćƒ¼åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(79365, 'https://ror.org/01ybtyf05', 'no_lang_code', 1, 'https://ror.org/01ybtyf05 Ishihara Sangyo Kaisha (Japan) ēŸ³åŽŸē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(79366, 'https://ror.org/02y2f3e22', 'en', 1, 'https://ror.org/02y2f3e22 Mitsubishi Foundation å…¬ē›Šč²”å›£ę³•äŗŗäø‰č±č²”å›£'),
(79367, 'https://ror.org/040ehaj20', 'no_lang_code', 1, 'https://ror.org/040ehaj20 Akebono (Japan) ę›™ćƒ–ćƒ¬ćƒ¼ć‚­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79368, 'https://ror.org/04xesg978', 'en', 1, 'https://ror.org/04xesg978 Japanese Red Cross Society Kyoto Daini Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾äŗ¬éƒ½ē¬¬äŗŒčµ¤åå­—ē—…é™¢'),
(79369, 'https://ror.org/02ewp2621', 'en', 1, 'https://ror.org/02ewp2621 National Women''s Education Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹å„³ę€§ę•™č‚²ä¼šé¤Ø'),
(79370, 'https://ror.org/008zz8m46', 'en', 1, 'https://ror.org/008zz8m46 Nagoya University Hospital åå¤å±‹å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79371, 'https://ror.org/00y3aq160', 'no_lang_code', 1, 'https://ror.org/00y3aq160 JAę–°ę½ŸåŽšē”Ÿé€£äøŠč¶Šē·åˆē—…é™¢ Jōetsu General Hospital'),
(79372, 'https://ror.org/05wks2t16', 'en', 1, 'https://ror.org/05wks2t16 Kitami Institute of Technology åŒ—č¦‹å·„ę„­å¤§å­¦'),
(79373, 'https://ror.org/01d1kv753', 'en', 1, 'https://ror.org/01d1kv753 SPring-8 å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ę”¾å°„å…‰ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(79374, 'https://ror.org/043t53p17', 'no_lang_code', 1, 'https://ror.org/043t53p17 Kitami Information Technology (Japan) åŒ—č¦‹ęƒ…å ±ęŠ€č”“ę Ŗå¼ä¼šē¤¾'),
(79375, 'https://ror.org/05kscqz92', 'no_lang_code', 1, 'https://ror.org/05kscqz92 Tsudakoma (Japan) ę“„ē”°é§’å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79376, 'https://ror.org/03jbn8j42', 'en', 1, 'https://ror.org/03jbn8j42 Council of Local Authorities for International Relations äø€čˆ¬č²”å›£ę³•äŗŗč‡Ŗę²»ä½“å›½éš›åŒ–å”ä¼š'),
(79377, 'https://ror.org/03c1y0r66', 'en', 1, 'https://ror.org/03c1y0r66 Tane General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗćć¤ć“ć†ä¼šå¤šę ¹ē·åˆē—…é™¢'),
(79378, 'https://ror.org/0045e2c31', 'en', 1, 'https://ror.org/0045e2c31 National Hospital Organization Kochi National Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹é«˜ēŸ„ē—…é™¢'),
(79379, 'https://ror.org/03tyb9q08', 'no_lang_code', 1, 'https://ror.org/03tyb9q08 Nippon Chemical Industrial (Japan) ę—„ęœ¬åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79380, 'https://ror.org/01tfba323', 'no_lang_code', 1, 'https://ror.org/01tfba323 Sumitomo Seika Chemicals (Japan) ä½å‹ē²¾åŒ–ę Ŗå¼ä¼šē¤¾'),
(79381, 'https://ror.org/02znffm54', 'en', 1, 'https://ror.org/02znffm54 Osaka Institute of Technology 大阪巄愭大学'),
(79382, 'https://ror.org/00a1e9e96', 'no_lang_code', 1, 'https://ror.org/00a1e9e96 Horiba (Japan) ę Ŗå¼ä¼šē¤¾å €å “č£½ä½œę‰€'),
(79383, 'https://ror.org/000j6sc87', 'en', 1, 'https://ror.org/000j6sc87 Innovation Center of NanoMedicine å…¬ē›Šč²”å›£ę³•äŗŗå·å“Žåø‚ē”£ę„­ęŒÆčˆˆč²”å›£'),
(79384, 'https://ror.org/05tqx4s13', 'en', 1, 'https://ror.org/05tqx4s13 RIKEN Nishina Center å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ä»ē§‘åŠ é€Ÿå™Øē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(79385, 'https://ror.org/002scw660', 'no_lang_code', 1, 'https://ror.org/002scw660 Casio (Japan) ć‚«ć‚·ć‚ŖčØˆē®—ę©Ÿę Ŗå¼ä¼šē¤¾'),
(79386, 'https://ror.org/04gcg0n58', 'no_lang_code', 1, 'https://ror.org/04gcg0n58 SRL (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ć‚¢ćƒ¼ćƒ«ć‚Øćƒ«'),
(79387, 'https://ror.org/03dk6an77', 'en', 1, 'https://ror.org/03dk6an77 Hiroshima International University åŗƒå³¶å›½éš›å¤§å­¦'),
(79388, 'https://ror.org/05bqfq123', 'no_lang_code', 1, 'https://ror.org/05bqfq123 Wakamoto Pharmaceutical (Japan) ć‚ć‹ć‚‚ćØč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(79389, 'https://ror.org/00p5prq49', 'en', 1, 'https://ror.org/00p5prq49 Advanced Institute of Materials Science å…¬ē›Šč²”å›£ę³•äŗŗē‰¹ę®Šē„”ę©Ÿęę–™ē ”ē©¶ę‰€'),
(79390, 'https://ror.org/047k23798', 'no_lang_code', 1, 'https://ror.org/047k23798 AstraZeneca (Japan) ć‚¢ć‚¹ćƒˆćƒ©ć‚¼ćƒć‚«ę Ŗå¼ä¼šē¤¾'),
(79391, 'https://ror.org/02xnwme44', 'no_lang_code', 1, 'https://ror.org/02xnwme44 Ulvac (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ćƒćƒƒć‚Æ'),
(79392, 'https://ror.org/01sdhz737', 'en', 1, 'https://ror.org/01sdhz737 Institute for Global Environmental Strategies å…¬ē›Šč²”å›£ę³•äŗŗåœ°ēƒē’°å¢ƒęˆ¦ē•„ē ”ē©¶ę©Ÿé–¢'),
(79393, 'https://ror.org/00qm1pk82', 'en', 1, 'https://ror.org/00qm1pk82 Kobe Kaisei Hospital åŒ»ē™‚ę³•äŗŗč²”å›£ē„žęˆøęµ·ę˜Ÿē—…é™¢'),
(79394, 'https://ror.org/00g916n77', 'en', 1, 'https://ror.org/00g916n77 Iwate Prefectural Central Hospital å²©ę‰‹ēœŒē«‹äø­å¤®ē—…é™¢'),
(79395, 'https://ror.org/02b3jn477', 'no_lang_code', 1, 'https://ror.org/02b3jn477 KAN Research Institute ę Ŗå¼ä¼šē¤¾ć‚«ćƒ³ē ”ē©¶ę‰€'),
(79396, 'https://ror.org/052ywng59', 'en', 1, 'https://ror.org/052ywng59 Mizutani Foundation for Glycoscience å…¬ē›Šč²”å›£ę³•äŗŗę°“č°·ē³–č³Ŗē§‘å­¦ęŒÆčˆˆč²”å›£'),
(79397, 'https://ror.org/023x0pn29', 'en', 1, 'https://ror.org/023x0pn29 Kobe Design University ē„žęˆøčŠøč”“å·„ē§‘å¤§å­¦'),
(79398, 'https://ror.org/05hv6a803', 'no_lang_code', 1, 'https://ror.org/05hv6a803 Kobelco Eco-Solutions (Japan) ę Ŗå¼ä¼šē¤¾ē„žé‹¼ē’°å¢ƒć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³'),
(79399, 'https://ror.org/04r703265', 'no_lang_code', 1, 'https://ror.org/04r703265 Sendai Shakai Hoken Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹ä»™å°ē—…é™¢'),
(79400, 'https://ror.org/000q75d75', 'en', 1, 'https://ror.org/000q75d75 JAé•·é‡ŽåŽšē”Ÿé€£é•·é‡Žę¾ä»£ē·åˆē—…é™¢ Nagano Matsushiro General Hospital'),
(79401, 'https://ror.org/00h5ck659', 'en', 1, 'https://ror.org/00h5ck659 Nippon Medical School Musashi Kosugi Hospital ę—„ęœ¬åŒ»ē§‘å¤§å­¦ę­¦č”µå°ę‰ē—…é™¢'),
(79402, 'https://ror.org/054fywr36', 'en', 1, 'https://ror.org/054fywr36 Marine Ecology Research Institute å…¬ē›Šč²”å›£ę³•äŗŗęµ·ę“‹ē”Ÿē‰©ē’°å¢ƒē ”ē©¶ę‰€'),
(79403, 'https://ror.org/036999x25', 'no_lang_code', 1, 'https://ror.org/036999x25 Advanced Engineering Services (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ćƒ»ć‚¤ćƒ¼ćƒ»ć‚Øć‚¹'),
(79404, 'https://ror.org/0155e5d19', 'en', 1, 'https://ror.org/0155e5d19 National Police Academy 警察庁警察大学栔'),
(79405, 'https://ror.org/03wrs2f16', 'no_lang_code', 1, 'https://ror.org/03wrs2f16 Sanyo (Japan) äø‰ę“‹åŒ–ęˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79406, 'https://ror.org/0294epk92', 'en', 1, 'https://ror.org/0294epk92 Japan Chemical Innovation and Inspection Institute äø€čˆ¬č²”å›£ę³•äŗŗåŒ–å­¦ē ”ē©¶č©•ä¾”ę©Ÿę§‹'),
(79407, 'https://ror.org/042ser453', 'en', 1, 'https://ror.org/042ser453 Sendai City Hospital ä»™å°åø‚ē«‹ē—…é™¢'),
(79408, 'https://ror.org/04jawh960', 'no_lang_code', 1, 'https://ror.org/04jawh960 Ishida (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ć‚·ćƒ€'),
(79409, 'https://ror.org/021r6aq66', 'en', 1, 'https://ror.org/021r6aq66 Josai University åŸŽč„æå¤§å­¦'),
(79410, 'https://ror.org/03weam126', 'no_lang_code', 1, 'https://ror.org/03weam126 Toyo Eiwa Jogakuin ę±ę“‹č‹±å’Œå„³å­¦é™¢å¤§å­¦'),
(79411, 'https://ror.org/03mnvja93', 'en', 1, 'https://ror.org/03mnvja93 Fukui Prefectural Police ē¦äŗ•ēœŒč­¦åÆŸ'),
(79412, 'https://ror.org/01w5vp368', 'en', 1, 'https://ror.org/01w5vp368 Social Welfare Organization Saiseikai Imperial Gift Foundation ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼š'),
(79413, 'https://ror.org/04yn2he76', 'no_lang_code', 1, 'https://ror.org/04yn2he76 Kobari General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£åœ­ę˜„ä¼šå°å¼µē·åˆē—…é™¢'),
(79414, 'https://ror.org/027qqek76', 'en', 1, 'https://ror.org/027qqek76 Japanese Society for Dialysis Therapy äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é€ęžåŒ»å­¦ä¼š'),
(79415, 'https://ror.org/01jktjc68', 'no_lang_code', 1, 'https://ror.org/01jktjc68 Omuta hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å¤§ē‰Ÿē”°ē—…é™¢'),
(79416, 'https://ror.org/049d0dt15', 'no_lang_code', 1, 'https://ror.org/049d0dt15 Daido Metal (Japan) å¤§åŒćƒ”ć‚æćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79417, 'https://ror.org/03fpmk626', 'no_lang_code', 1, 'https://ror.org/03fpmk626 JAę–°ę½ŸåŽšē”Ÿé€£ä½ęø”ē·åˆē—…é™¢ Sado General Hospital'),
(79418, 'https://ror.org/016yy9j09', 'no_lang_code', 1, 'https://ror.org/016yy9j09 LTT Bio-Pharma (Japan) ę Ŗå¼ä¼šē¤¾LTTćƒć‚¤ć‚Ŗćƒ•ć‚”ćƒ¼ćƒž'),
(79419, 'https://ror.org/03r7fm174', 'no_lang_code', 1, 'https://ror.org/03r7fm174 KDDI (Japan) KDDIę Ŗå¼ä¼šē¤¾'),
(79420, 'https://ror.org/058s63h23', 'en', 1, 'https://ror.org/058s63h23 National Rehabilitation Center for Persons with Disabilities åŽšē”ŸåŠ“åƒēœå›½ē«‹éšœå®³č€…ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(79421, 'https://ror.org/012322w18', 'en', 1, 'https://ror.org/012322w18 Otsuma Women''s University 大妻儳子大学'),
(79422, 'https://ror.org/04q44r852', 'en', 1, 'https://ror.org/04q44r852 Fuji Machine (Japan) åÆŒå£«ę©Ÿę¢°ę Ŗå¼ä¼šē¤¾'),
(79423, 'https://ror.org/021ph5e41', 'en', 1, 'https://ror.org/021ph5e41 Tokushima University Hospital 徳島大学病院'),
(79424, 'https://ror.org/05cw8ax51', 'no_lang_code', 1, 'https://ror.org/05cw8ax51 Daito Bunka University å¤§ę±ę–‡åŒ–å¤§å­¦'),
(79425, 'https://ror.org/05h0ecd49', 'no_lang_code', 1, 'https://ror.org/05h0ecd49 Gpack (France)'),
(79426, 'https://ror.org/05h4q5j46', 'en', 1, 'https://ror.org/05h4q5j46 Osaka Red Cross Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾å¤§é˜Ŗčµ¤åå­—ē—…é™¢'),
(79427, 'https://ror.org/02xnraw58', 'no_lang_code', 1, 'https://ror.org/02xnraw58 NOF Corporation (Japan) ę—„ę²¹ę Ŗå¼ä¼šē¤¾'),
(79428, 'https://ror.org/02mwgzr84', 'no_lang_code', 1, 'https://ror.org/02mwgzr84 Toyo Kohan (Japan) ę±ę“‹é‹¼éˆ‘ę Ŗå¼ä¼šē¤¾'),
(79429, 'https://ror.org/02d1d3446', 'en', 1, 'https://ror.org/02d1d3446 Nippon Sheet Glass Foundation for Materials Science and Engineering å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęæē”å­ęę–™å·„å­¦åŠ©ęˆä¼š'),
(79430, 'https://ror.org/00s614d66', 'no_lang_code', 1, 'https://ror.org/00s614d66 Sanraku Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½ę•™č·å“”äŗ’åŠ©ä¼šäø‰ę„½ē—…é™¢'),
(79431, 'https://ror.org/04wd29d63', 'en', 1, 'https://ror.org/04wd29d63 National Research Institute of Brewing ē‹¬ē«‹č”Œę”æę³•äŗŗé…’é”žē·åˆē ”ē©¶ę‰€'),
(79432, 'https://ror.org/05f9zrs24', 'en', 1, 'https://ror.org/05f9zrs24 Showa Inan General Hospital ę˜­å’Œä¼Šå—ē·åˆē—…é™¢'),
(79433, 'https://ror.org/04g3avw65', 'en', 1, 'https://ror.org/04g3avw65 Kobe Women''s University ē„žęˆøå„³å­å¤§å­¦'),
(79434, 'https://ror.org/01k9wvk47', 'no_lang_code', 1, 'https://ror.org/01k9wvk47 Marutomo (Japan) ćƒžćƒ«ćƒˆćƒ¢ę Ŗå¼ä¼šē¤¾'),
(79435, 'https://ror.org/03hq4qb06', 'no_lang_code', 1, 'https://ror.org/03hq4qb06 Senju Pharmaceutical (Japan) åƒåÆæč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(79436, 'https://ror.org/00c4ncp37', 'en', 1, 'https://ror.org/00c4ncp37 Aichi Human Service Center ę„›ēŸ„ēœŒåæƒčŗ«éšœå®³č€…ć‚³ćƒ­ćƒ‹ćƒ¼'),
(79437, 'https://ror.org/00qf0yp70', 'en', 1, 'https://ror.org/00qf0yp70 Toho University Omori Medical Center ę±é‚¦å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼å¤§ę£®ē—…é™¢'),
(79438, 'https://ror.org/022mcyh62', 'no_lang_code', 1, 'https://ror.org/022mcyh62 Translational Research Informatics Center (Japan) åŒ»ē™‚ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(79439, 'https://ror.org/0543mcr22', 'no_lang_code', 1, 'https://ror.org/0543mcr22 Showa University Fujigaoka Hospital ę˜­å’Œå¤§å­¦č—¤ćŒäø˜ē—…é™¢'),
(79440, 'https://ror.org/04j3mpm77', 'en', 1, 'https://ror.org/04j3mpm77 Ebina General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć‚øćƒ£ćƒ‘ćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚¢ćƒ©ć‚¤ć‚¢ćƒ³ć‚¹ęµ·č€åē·åˆē—…é™¢'),
(79441, 'https://ror.org/03b55sb49', 'no_lang_code', 1, 'https://ror.org/03b55sb49 Tokai Gakuin University ę±ęµ·å­¦é™¢å¤§å­¦'),
(79442, 'https://ror.org/027xtma44', 'no_lang_code', 1, 'https://ror.org/027xtma44 GeneCare Research Institute (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ćƒ³ć‚±ć‚¢ē ”ē©¶ę‰€'),
(79443, 'https://ror.org/05qvatg15', 'no_lang_code', 1, 'https://ror.org/05qvatg15 Oncolys BioPharma (Japan) ć‚Ŗćƒ³ć‚³ćƒŖć‚¹ćƒć‚¤ć‚Ŗćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(79444, 'https://ror.org/01x53gx71', 'no_lang_code', 1, 'https://ror.org/01x53gx71 StaGen (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ć‚æćƒ¼ć‚øć‚§ćƒ³'),
(79445, 'https://ror.org/01tx1rq25', 'en', 1, 'https://ror.org/01tx1rq25 Japan Sport Council ē‹¬ē«‹č”Œę”æę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(79446, 'https://ror.org/00yzvve44', 'no_lang_code', 1, 'https://ror.org/00yzvve44 Nippon Paper Industries (Japan) ę—„ęœ¬č£½ē“™ę Ŗå¼ä¼šē¤¾'),
(79447, 'https://ror.org/0196vdc40', 'en', 1, 'https://ror.org/0196vdc40 Nakatomi Foundation å…¬ē›Šč²”å›£ę³•äŗŗäø­å†Øå„åŗ·ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(79448, 'https://ror.org/018nb9n34', 'no_lang_code', 1, 'https://ror.org/018nb9n34 IHI Corporation (Japan) ę Ŗå¼ä¼šē¤¾IHI'),
(79449, 'https://ror.org/03savr706', 'en', 1, 'https://ror.org/03savr706 Temple University, Japan ćƒ†ćƒ³ćƒ—ćƒ«å¤§å­¦'),
(79450, 'https://ror.org/00w1zvy92', 'en', 1, 'https://ror.org/00w1zvy92 Tokyo Metropolitan Institute of Public Health ę±äŗ¬éƒ½å„åŗ·å®‰å…Øē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(79451, 'https://ror.org/000w7cv19', 'no_lang_code', 1, 'https://ror.org/000w7cv19 TOTOę Ŗå¼ä¼šē¤¾ Toto (Japan)'),
(79452, 'https://ror.org/032qqvq76', 'en', 1, 'https://ror.org/032qqvq76 Cardiovascular Institute Hospital å…¬ē›Šč²”å›£ę³•äŗŗåæƒč‡“č”€ē®”ē ”ē©¶ę‰€'),
(79453, 'https://ror.org/01qwa2z73', 'en', 1, 'https://ror.org/01qwa2z73 Osaka Prefectural Institute of Public Health å¤§é˜Ŗåŗœē«‹å…¬č”†č”›ē”Ÿē ”ē©¶ę‰€'),
(79454, 'https://ror.org/030vbmf58', 'en', 1, 'https://ror.org/030vbmf58 RIKEN Advanced Science Institute å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€'),
(79455, 'https://ror.org/04eekx875', 'en', 1, 'https://ror.org/04eekx875 Kansai Research Foundation for Technology Promotion å…¬ē›Šč²”å›£ę³•äŗŗé–¢č„æć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»ćƒŖć‚µć‚¤ć‚Æćƒ«ē§‘å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(79456, 'https://ror.org/057pha386', 'en', 1, 'https://ror.org/057pha386 Kurume Shin-Ai Women''s College ä¹…ē•™ē±³äæ”ę„›ēŸ­ęœŸå¤§å­¦'),
(79457, 'https://ror.org/02c7akf81', 'en', 1, 'https://ror.org/02c7akf81 Systems Biology Institute ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗć‚·ć‚¹ćƒ†ćƒ ćƒ»ćƒć‚¤ć‚Ŗćƒ­ć‚øćƒ¼ē ”ē©¶ę©Ÿę§‹'),
(79458, 'https://ror.org/01kqdxr19', 'en', 1, 'https://ror.org/01kqdxr19 Gifu University Hospital å²é˜œå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79459, 'https://ror.org/02wm03a77', 'en', 1, 'https://ror.org/02wm03a77 Hanazono University čŠ±åœ’å¤§å­¦'),
(79460, 'https://ror.org/03q11y497', 'en', 1, 'https://ror.org/03q11y497 Japan Community Healthcare Organization ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹'),
(79461, 'https://ror.org/04prxcf74', 'en', 1, 'https://ror.org/04prxcf74 Japanese Red Cross Narita Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ęˆē”°čµ¤åå­—ē—…é™¢'),
(79462, 'https://ror.org/01g4se167', 'no_lang_code', 1, 'https://ror.org/01g4se167 Nippon Seiki (Japan) ę—„ęœ¬ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(79463, 'https://ror.org/03423rs03', 'no_lang_code', 1, 'https://ror.org/03423rs03 PhoenixBio (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚§ćƒ‹ćƒƒć‚Æć‚¹ćƒć‚¤ć‚Ŗ'),
(79464, 'https://ror.org/03k95ve17', 'en', 1, 'https://ror.org/03k95ve17 Yokohama City University Medical Center ęØŖęµœåø‚ē«‹å¤§å­¦é™„å±žåø‚ę°‘ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(79465, 'https://ror.org/01kz55g98', 'no_lang_code', 1, 'https://ror.org/01kz55g98 Toppan (Japan) å‡øē‰ˆå°åˆ·ę Ŗå¼ä¼šē¤¾'),
(79466, 'https://ror.org/00d3mr981', 'en', 1, 'https://ror.org/00d3mr981 Fukuoka University Hospital ē¦å²”å¤§å­¦ē—…é™¢'),
(79467, 'https://ror.org/05fz57f05', 'en', 1, 'https://ror.org/05fz57f05 Kawasaki Medical School Hospital å·å“ŽåŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(79468, 'https://ror.org/02yemx219', 'no_lang_code', 1, 'https://ror.org/02yemx219 Ebara (Japan) ę Ŗå¼ä¼šē¤¾čåŽŸč£½ä½œę‰€'),
(79469, 'https://ror.org/01wkx4e61', 'en', 1, 'https://ror.org/01wkx4e61 NARD Institute ę Ŗå¼ä¼šē¤¾ćƒŠćƒ¼ćƒ‰ē ”ē©¶ę‰€'),
(79470, 'https://ror.org/02jmtea33', 'no_lang_code', 1, 'https://ror.org/02jmtea33 PNPE Company (Iran) Ł¾ŪŒŲ“ŚÆŲ§Ł… Ł†Ł‚Ų“Ł‡ā€ŒŁ¾Ų±ŲÆŲ§Ų² Ų§Ų“Ų±Ų§Ł‚'),
(79471, 'https://ror.org/05ggzej07', 'no_lang_code', 1, 'https://ror.org/05ggzej07 Secom (Japan) ć‚»ć‚³ćƒ ę Ŗå¼ä¼šē¤¾'),
(79472, 'https://ror.org/01z4jpw82', 'no_lang_code', 1, 'https://ror.org/01z4jpw82 Rigaku (Japan) ę Ŗå¼ä¼šē¤¾ćƒŖć‚¬ć‚Æ'),
(79473, 'https://ror.org/04qknqs93', 'no_lang_code', 1, 'https://ror.org/04qknqs93 JIMRO (Japan) ę Ŗå¼ä¼šē¤¾JIMRO'),
(79474, 'https://ror.org/00czkns73', 'en', 1, 'https://ror.org/00czkns73 St Mary''s Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé›Ŗć®č–ęÆä¼šč–ćƒžćƒŖć‚¢ē—…é™¢'),
(79475, 'https://ror.org/03yvj0n92', 'no_lang_code', 1, 'https://ror.org/03yvj0n92 Mitsuboshi Belting (Japan) äø‰ćƒ„ę˜Ÿćƒ™ćƒ«ćƒˆę Ŗå¼ä¼šē¤¾'),
(79476, 'https://ror.org/02qqez544', 'en', 1, 'https://ror.org/02qqez544 Amada Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¤©ē”°č²”å›£'),
(79477, 'https://ror.org/00e5yzw53', 'en', 1, 'https://ror.org/00e5yzw53 St. Luke''s International University č–č·ÆåŠ å›½éš›å¤§å­¦'),
(79478, 'https://ror.org/02s3d9n87', 'no_lang_code', 1, 'https://ror.org/02s3d9n87 Nippon Shokubai (Japan) ę Ŗå¼ä¼šē¤¾ę—„ęœ¬č§¦åŖ’'),
(79479, 'https://ror.org/02g9t7f35', 'en', 1, 'https://ror.org/02g9t7f35 Spinal Injuries Center ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹ē·åˆć›ćęć‚»ćƒ³ć‚æćƒ¼'),
(79480, 'https://ror.org/016e5r936', 'en', 1, 'https://ror.org/016e5r936 Japan Real Estate Institute äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬äøå‹•ē”£ē ”ē©¶ę‰€'),
(79481, 'https://ror.org/01h48bs12', 'en', 1, 'https://ror.org/01h48bs12 Hiroshima Red Cross Hospital & Atomic-bomb Survivors Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾åŗƒå³¶čµ¤åå­—ćƒ»åŽŸēˆ†ē—…é™¢'),
(79482, 'https://ror.org/05qsqt662', 'no_lang_code', 1, 'https://ror.org/05qsqt662 KDDI Research (Japan) ę Ŗå¼ä¼šē¤¾KDDIē·åˆē ”ē©¶ę‰€'),
(79483, 'https://ror.org/007f5s288', 'en', 1, 'https://ror.org/007f5s288 Cabinet Office å†…é–£åŗœ'),
(79484, 'https://ror.org/00pafka32', 'en', 1, 'https://ror.org/00pafka32 Wayo Women''s University å’Œę“‹å„³å­å¤§å­¦'),
(79485, 'https://ror.org/00h7gyj76', 'no_lang_code', 1, 'https://ror.org/00h7gyj76 Sumitomo Metal Mining (Japan) ä½å‹é‡‘å±žé‰±å±±ę Ŗå¼ä¼šē¤¾'),
(79486, 'https://ror.org/056tqzr82', 'en', 1, 'https://ror.org/056tqzr82 Kokura Memorial Hospital äø€čˆ¬č²”å›£ę³•äŗŗå¹³ęˆē“«å·ä¼šå°å€‰čØ˜åæµē—…é™¢'),
(79487, 'https://ror.org/03v40yp04', 'en', 1, 'https://ror.org/03v40yp04 Corporation for Production and Research of Laboratory Primates äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗˆé˜²č”›ē”Ÿå”ä¼š'),
(79488, 'https://ror.org/00m44rf61', 'en', 1, 'https://ror.org/00m44rf61 New Tokyo Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é¦Øä¼šę–°ę±äŗ¬ē—…é™¢'),
(79489, 'https://ror.org/000znbq58', 'no_lang_code', 1, 'https://ror.org/000znbq58 OncoTherapy Science (Japan) ć‚Ŗćƒ³ć‚³ć‚»ćƒ©ćƒ”ćƒ¼ćƒ»ć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(79490, 'https://ror.org/01nmpj461', 'en', 1, 'https://ror.org/01nmpj461 Sumitomo Foundation å…¬ē›Šč²”å›£ę³•äŗŗä½å‹č²”å›£'),
(79491, 'https://ror.org/0316d5p98', 'no_lang_code', 1, 'https://ror.org/0316d5p98 Azbil (Japan) ć‚¢ć‚ŗćƒ“ćƒ«ę Ŗå¼ä¼šē¤¾'),
(79492, 'https://ror.org/02ahcqm31', 'en', 1, 'https://ror.org/02ahcqm31 Misawa City Hospital 三沢市立三沢病院'),
(79493, 'https://ror.org/05vrdt216', 'en', 1, 'https://ror.org/05vrdt216 Hamamatsu Medical Center å…¬ē›Šč²”å›£ę³•äŗŗęµœę¾åø‚åŒ»ē™‚å…¬ē¤¾ęµœę¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(79494, 'https://ror.org/05vjx2089', 'en', 1, 'https://ror.org/05vjx2089 Laboratory of Racing Chemistry å…¬ē›Šč²”å›£ę³•äŗŗē«¶čµ°é¦¬ē†åŒ–å­¦ē ”ē©¶ę‰€'),
(79495, 'https://ror.org/0273vqz67', 'no_lang_code', 1, 'https://ror.org/0273vqz67 Naruto, Tokushima Prefecture hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¾³å³¶ēœŒé³“é–€ē—…é™¢'),
(79496, 'https://ror.org/05rq8j339', 'en', 1, 'https://ror.org/05rq8j339 Jichi Medical University Saitama Medical Center č‡Ŗę²»åŒ»ē§‘å¤§å­¦é™„å±žć•ć„ćŸć¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(79497, 'https://ror.org/02x96h768', 'en', 1, 'https://ror.org/02x96h768 Kumamoto Prefectural Educaiton Center ē†Šęœ¬ēœŒē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(79498, 'https://ror.org/00bavmx73', 'no_lang_code', 1, 'https://ror.org/00bavmx73 Nippon Flour Mills (Japan) ę—„ęœ¬č£½ē²‰ę Ŗå¼ä¼šē¤¾'),
(79499, 'https://ror.org/01fzw3g31', 'no_lang_code', 1, 'https://ror.org/01fzw3g31 Chikamori Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗčæ‘ę£®ä¼ščæ‘ę£®ē—…é™¢'),
(79500, 'https://ror.org/007ge8322', 'en', 1, 'https://ror.org/007ge8322 Kumamoto City Hospital ē†Šęœ¬åø‚ē«‹ē†Šęœ¬åø‚ę°‘ē—…é™¢'),
(79501, 'https://ror.org/01mbdhx05', 'no_lang_code', 1, 'https://ror.org/01mbdhx05 Saiseikai Niigata Daini Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šę–°ę½Ÿē¬¬äŗŒē—…é™¢'),
(79502, 'https://ror.org/04y6ges66', 'en', 1, 'https://ror.org/04y6ges66 Nippon Medical School Hospital ę—„ęœ¬åŒ»ē§‘å¤§å­¦ä»˜å±žē—…é™¢'),
(79503, 'https://ror.org/02w1jan86', 'en', 1, 'https://ror.org/02w1jan86 Japanese Society of Anesthesiologist å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬éŗ»é…”ē§‘å­¦ä¼š'),
(79504, 'https://ror.org/000gm9x69', 'en', 1, 'https://ror.org/000gm9x69 National Institute of Technology, Hakodate College å‡½é¤Øå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(79505, 'https://ror.org/00ecg5g90', 'no_lang_code', 1, 'https://ror.org/00ecg5g90 Seirei Mikatabara General Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£ē·åˆē—…é™¢č–éš·äø‰ę–¹åŽŸē—…é™¢'),
(79506, 'https://ror.org/04tew3n82', 'no_lang_code', 1, 'https://ror.org/04tew3n82 Saiseikai Yokohama Eastern Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šęØŖęµœåø‚ę±éƒØē—…é™¢'),
(79507, 'https://ror.org/0266t0867', 'no_lang_code', 1, 'https://ror.org/0266t0867 Ogaki Municipal Hospital å¤§åž£åø‚ę°‘ē—…é™¢'),
(79508, 'https://ror.org/044jdke57', 'en', 1, 'https://ror.org/044jdke57 National Institute of Technology and Evaluation ē‹¬ē«‹č”Œę”æę³•äŗŗč£½å“č©•ä¾”ęŠ€č”“åŸŗē›¤ę©Ÿę§‹'),
(79509, 'https://ror.org/03xgxw153', 'no_lang_code', 1, 'https://ror.org/03xgxw153 Subaru (Japan) ę Ŗå¼ä¼šē¤¾SUBARU'),
(79510, 'https://ror.org/04g0m2d49', 'en', 1, 'https://ror.org/04g0m2d49 Juntendo University Hospital é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žé †å¤©å ‚åŒ»é™¢'),
(79511, 'https://ror.org/03a2hf118', 'en', 1, 'https://ror.org/03a2hf118 Shinshu University Hospital äæ”å·žå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79512, 'https://ror.org/01vpa9c32', 'en', 1, 'https://ror.org/01vpa9c32 Ehime University Hospital ę„›åŖ›å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79513, 'https://ror.org/055tm7f07', 'en', 1, 'https://ror.org/055tm7f07 Ministry of Economy, Trade and Industry ēµŒęøˆē”£ę„­ēœ'),
(79514, 'https://ror.org/00105n552', 'en', 1, 'https://ror.org/00105n552 Noda Institute for Scientific Research å…¬ē›Šč²”å›£ę³•äŗŗé‡Žē”°ē”£ę„­ē§‘å­¦ē ”ē©¶ę‰€'),
(79515, 'https://ror.org/01ta2g450', 'en', 1, 'https://ror.org/01ta2g450 National Institute of Technology, Kisarazu College ęœØę›“ę“„å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(79516, 'https://ror.org/05b6qj426', 'en', 1, 'https://ror.org/05b6qj426 Chemicals Evaluation and Research Institute äø€čˆ¬č²”å›£ę³•äŗŗåŒ–å­¦ē‰©č³Ŗč©•ä¾”ē ”ē©¶ę©Ÿę§‹'),
(79517, 'https://ror.org/04a2npp96', 'en', 1, 'https://ror.org/04a2npp96 Toyama University Hospital åÆŒå±±å¤§å­¦é™„å±žē—…é™¢'),
(79518, 'https://ror.org/007pxvx88', 'en', 1, 'https://ror.org/007pxvx88 Daiwa Securities Health Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¤§å’ŒčØ¼åˆøćƒ˜ćƒ«ć‚¹č²”å›£'),
(79519, 'https://ror.org/01pnpvk61', 'en', 1, 'https://ror.org/01pnpvk61 Kyushu Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹ä¹å·žē—…é™¢'),
(79520, 'https://ror.org/04h82h717', 'en', 1, 'https://ror.org/04h82h717 International College for Postgraduate Buddhist Studies å›½éš›ä»ę•™å­¦å¤§å­¦é™¢å¤§å­¦'),
(79521, 'https://ror.org/008f5wa49', 'no_lang_code', 1, 'https://ror.org/008f5wa49 Nichias (Japan) ćƒ‹ćƒć‚¢ć‚¹ę Ŗå¼ä¼šē¤¾'),
(79522, 'https://ror.org/021m4ta35', 'en', 1, 'https://ror.org/021m4ta35 Koen Gakuen Women''s Junior College å…‰å”©å­¦åœ’å„³å­ēŸ­ęœŸå¤§å­¦'),
(79523, 'https://ror.org/01j6sxy67', 'no_lang_code', 1, 'https://ror.org/01j6sxy67 GlaxoSmithKline (Japan) ć‚°ćƒ©ć‚Æć‚½ćƒ»ć‚¹ćƒŸć‚¹ć‚Æćƒ©ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(79524, 'https://ror.org/034dpjp44', 'no_lang_code', 1, 'https://ror.org/034dpjp44 Matsutani (Japan) ę¾č°·åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79525, 'https://ror.org/03jvvjr23', 'en', 1, 'https://ror.org/03jvvjr23 Daiichi University of Pharmacy 第一薬科大学'),
(79526, 'https://ror.org/0483ewd92', 'no_lang_code', 1, 'https://ror.org/0483ewd92 Inpex (Japan) å›½éš›ēŸ³ę²¹é–‹ē™ŗåøēŸ³ę Ŗå¼ä¼šē¤¾'),
(79527, 'https://ror.org/04915qk43', 'en', 1, 'https://ror.org/04915qk43 IBM Research - Tokyo ę—„ęœ¬ć‚¢ć‚¤ćƒ»ćƒ“ćƒ¼ćƒ»ć‚Øćƒ ę Ŗå¼ä¼šē¤¾'),
(79528, 'https://ror.org/00kf4vm79', 'en', 1, 'https://ror.org/00kf4vm79 National Institute of Technology, Ichinoseki College äø€é–¢å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(79529, 'https://ror.org/04r4pq051', 'en', 1, 'https://ror.org/04r4pq051 Hattori Hokokai Foundation å…¬ē›Šč²”å›£ę³•äŗŗęœéƒØå ±å…¬ä¼š'),
(79530, 'https://ror.org/041y80p71', 'no_lang_code', 1, 'https://ror.org/041y80p71 Dow Chemical (Japan) ćƒ€ć‚¦ćƒ»ć‚±ćƒŸć‚«ćƒ«ę—„ęœ¬ę Ŗå¼ä¼šē¤¾'),
(79531, 'https://ror.org/05d4dac15', 'en', 1, 'https://ror.org/05d4dac15 Institute of Applied Biochemistry å…¬ē›Šč²”å›£ę³•äŗŗåæœē”Øē”ŸåŒ–å­¦ē ”ē©¶ę‰€'),
(79532, 'https://ror.org/03j480g22', 'no_lang_code', 1, 'https://ror.org/03j480g22 Sega (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ć‚¬'),
(79533, 'https://ror.org/0563dhn67', 'en', 1, 'https://ror.org/0563dhn67 Harasanshin Hospital åŒ»ē™‚ę³•äŗŗåŽŸäø‰äæ”ē—…é™¢'),
(79534, 'https://ror.org/02ge40a94', 'en', 1, 'https://ror.org/02ge40a94 Japan Institute of Plant Maintenance å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ©ćƒ³ćƒˆćƒ”ćƒ³ćƒ†ćƒŠćƒ³ć‚¹å”ä¼š'),
(79535, 'https://ror.org/048txfb61', 'en', 1, 'https://ror.org/048txfb61 Nagano Children''s Hospital é•·é‡ŽēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(79536, 'https://ror.org/04dnmj419', 'en', 1, 'https://ror.org/04dnmj419 Japan Kidney Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č…Žč‡“č²”å›£'),
(79537, 'https://ror.org/05fr04091', 'no_lang_code', 1, 'https://ror.org/05fr04091 Riso Kagaku (Japan) ē†ęƒ³ē§‘å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79538, 'https://ror.org/015hppy16', 'en', 1, 'https://ror.org/015hppy16 Showa General Hospital å…¬ē«‹ę˜­å’Œē—…é™¢'),
(79539, 'https://ror.org/05x23rx38', 'en', 1, 'https://ror.org/05x23rx38 Shizuoka Children''s Hospital é™å²”ēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(79540, 'https://ror.org/03mv39058', 'en', 1, 'https://ror.org/03mv39058 Foundation for Advanced Studies on International Development äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›é–‹ē™ŗę©Ÿę§‹'),
(79541, 'https://ror.org/03h954b39', 'en', 1, 'https://ror.org/03h954b39 Tsuruga Nursing University ę•¦č³€åø‚ē«‹ēœ‹č­·å¤§å­¦'),
(79542, 'https://ror.org/02kxw8q35', 'no_lang_code', 1, 'https://ror.org/02kxw8q35 Sumitomo Bakelite (Japan) ä½å‹ćƒ™ćƒ¼ć‚Æćƒ©ć‚¤ćƒˆę Ŗå¼ä¼šē¤¾'),
(79543, 'https://ror.org/03j9hxf30', 'no_lang_code', 1, 'https://ror.org/03j9hxf30 Nissin Kogyo (Japan) ę—„äæ”å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79544, 'https://ror.org/057bx9y85', 'en', 1, 'https://ror.org/057bx9y85 Tsukuba University of Technology ē­‘ę³¢ęŠ€č”“å¤§å­¦'),
(79545, 'https://ror.org/04q0b3c27', 'en', 1, 'https://ror.org/04q0b3c27 National Mie Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹äø‰é‡ē—…é™¢'),
(79546, 'https://ror.org/03yr4aq68', 'en', 1, 'https://ror.org/03yr4aq68 Industrial Research Institute of Ishikawa ēŸ³å·ēœŒå·„ę„­č©¦éØ“å “'),
(79547, 'https://ror.org/0491dch03', 'en', 1, 'https://ror.org/0491dch03 Jikei University Kashiwa hospital ę±äŗ¬ę…ˆęµä¼šåŒ»ē§‘å¤§å­¦é™„å±žęŸē—…é™¢'),
(79548, 'https://ror.org/00xs4kt25', 'en', 1, 'https://ror.org/00xs4kt25 Gifu City Women''s College å²é˜œåø‚ē«‹å„³å­ēŸ­ęœŸå¤§å­¦'),
(79549, 'https://ror.org/0423xty45', 'en', 1, 'https://ror.org/0423xty45 National Hospital Organization Miyazaki Higashi Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å®®å“Žę±ē—…é™¢'),
(79550, 'https://ror.org/01fmtas32', 'en', 1, 'https://ror.org/01fmtas32 Radiation Effects Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗę”¾å°„ē·šå½±éŸæē ”ē©¶ę‰€'),
(79551, 'https://ror.org/028mhrr87', 'no_lang_code', 1, 'https://ror.org/028mhrr87 SBI Pharmaceuticals (Japan) SBIćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(79552, 'https://ror.org/05f9vxd34', 'no_lang_code', 1, 'https://ror.org/05f9vxd34 Enplas (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ³ćƒ—ćƒ©ć‚¹'),
(79553, 'https://ror.org/036n53h90', 'no_lang_code', 1, 'https://ror.org/036n53h90 Nihon Unisys (Japan) ę—„ęœ¬ćƒ¦ćƒ‹ć‚·ć‚¹ę Ŗå¼ä¼šē¤¾'),
(79554, 'https://ror.org/02tsjqn73', 'en', 1, 'https://ror.org/02tsjqn73 Nagaoka Red Cross Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é•·å²”čµ¤åå­—ē—…é™¢'),
(79555, 'https://ror.org/035yy6m30', 'no_lang_code', 1, 'https://ror.org/035yy6m30 Iwatani Naoji Foundation å…¬ē›Šč²”å›£ę³•äŗŗå²©č°·ē›“ę²»čØ˜åæµč²”å›£'),
(79556, 'https://ror.org/04fyc4m54', 'en', 1, 'https://ror.org/04fyc4m54 Japanese Red Cross Kanazawa Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é‡‘ę²¢čµ¤åå­—ē—…é™¢'),
(79557, 'https://ror.org/01x29j481', 'no_lang_code', 1, 'https://ror.org/01x29j481 Samsung (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒ ć‚¹ćƒ³ę—„ęœ¬ē ”ē©¶ę‰€'),
(79558, 'https://ror.org/020ff7c13', 'en', 1, 'https://ror.org/020ff7c13 Kurita Water and Environment Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚ÆćƒŖć‚æę°“ćƒ»ē’°å¢ƒē§‘å­¦ęŒÆčˆˆč²”å›£'),
(79559, 'https://ror.org/01fe6f215', 'en', 1, 'https://ror.org/01fe6f215 Ohu University 億羽大学'),
(79560, 'https://ror.org/037p13728', 'no_lang_code', 1, 'https://ror.org/037p13728 Tohoku Rosai Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹ę±åŒ—åŠ“ē½ē—…é™¢'),
(79561, 'https://ror.org/0126xah18', 'en', 1, 'https://ror.org/0126xah18 Chiba University Hospital åƒč‘‰å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79562, 'https://ror.org/00p4am161', 'no_lang_code', 1, 'https://ror.org/00p4am161 SCREEN (Japan) ę Ŗå¼ä¼šē¤¾SCREENćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(79563, 'https://ror.org/01bb68v37', 'en', 1, 'https://ror.org/01bb68v37 Anan National College of Technology é˜æå—å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(79564, 'https://ror.org/03p9nrq57', 'no_lang_code', 1, 'https://ror.org/03p9nrq57 Hodogaya Chemical (Japan) äæåœŸč°·åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79565, 'https://ror.org/02fbb9504', 'no_lang_code', 1, 'https://ror.org/02fbb9504 Evolving Nano Process Infrastructure Development Center (Japan) ę Ŗå¼ä¼šē¤¾å…ˆē«ÆćƒŠćƒŽćƒ—ćƒ­ć‚»ć‚¹åŸŗē›¤é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(79566, 'https://ror.org/03adh2020', 'no_lang_code', 1, 'https://ror.org/03adh2020 Kure Kyosai Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šå‘‰å…±ęøˆē—…é™¢');
INSERT INTO `rors` VALUES
(79567, 'https://ror.org/05av30w60', 'no_lang_code', 1, 'https://ror.org/05av30w60 Fuji Oil (Japan) äøäŗŒč£½ę²¹ę Ŗå¼ä¼šē¤¾'),
(79568, 'https://ror.org/02ay4fy51', 'no_lang_code', 1, 'https://ror.org/02ay4fy51 Osaka Ekisaikai Hospital å¤§é˜ŖęŽ–ęøˆä¼šē—…é™¢'),
(79569, 'https://ror.org/02vhz6861', 'no_lang_code', 1, 'https://ror.org/02vhz6861 Monohakobi Technology Institute (Japan) ę Ŗå¼ä¼šē¤¾MTI'),
(79570, 'https://ror.org/032t7yz93', 'en', 1, 'https://ror.org/032t7yz93 Louis Pasteur Center for Medical Research å…¬ē›Šč²”å›£ę³•äŗŗćƒ«ć‚¤ćƒ»ćƒ‘ć‚¹ćƒˆć‚„ćƒ¼ćƒ«åŒ»å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(79571, 'https://ror.org/01vj3cz23', 'en', 1, 'https://ror.org/01vj3cz23 Dokkyo University ēØå”å¤§å­¦'),
(79572, 'https://ror.org/01azr9532', 'no_lang_code', 1, 'https://ror.org/01azr9532 Itoham Foods (Japan) ä¼Šč—¤ćƒćƒ ę Ŗå¼ä¼šē¤¾'),
(79573, 'https://ror.org/009x65438', 'en', 1, 'https://ror.org/009x65438 Mukogawa Women''s University ę­¦åŗ«å·å„³å­å¤§å­¦'),
(79574, 'https://ror.org/03b0x6j22', 'en', 1, 'https://ror.org/03b0x6j22 Niigata University Medical and Dental Hospital ę–°ę½Ÿå¤§å­¦åŒ»ę­Æå­¦ē·åˆē—…é™¢'),
(79575, 'https://ror.org/04yvd9h56', 'en', 1, 'https://ror.org/04yvd9h56 Kanagawa Academy of Science and Technology å…¬ē›Šč²”å›£ę³•äŗŗē„žå„ˆå·ē§‘å­¦ęŠ€č”“ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(79576, 'https://ror.org/03wneh532', 'no_lang_code', 1, 'https://ror.org/03wneh532 Tezukayama Gakuin University åøå”šå±±å­¦é™¢å¤§å­¦'),
(79577, 'https://ror.org/0406qcr55', 'en', 1, 'https://ror.org/0406qcr55 Japanese Red Cross Hadano Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ē§¦é‡Žčµ¤åå­—ē—…é™¢'),
(79578, 'https://ror.org/041jr6h53', 'no_lang_code', 1, 'https://ror.org/041jr6h53 OSG (Japan) ć‚Ŗćƒ¼ć‚Øć‚¹ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(79579, 'https://ror.org/01g8yfk02', 'en', 1, 'https://ror.org/01g8yfk02 Kobayasi Institute of Physical Research äø€čˆ¬č²”å›£ę³•äŗŗå°ęž—ē†å­¦ē ”ē©¶ę‰€'),
(79580, 'https://ror.org/03qb9e113', 'en', 1, 'https://ror.org/03qb9e113 Tomishiro Central Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå‹ę„›ä¼šč±Šč¦‹åŸŽäø­å¤®ē—…é™¢'),
(79581, 'https://ror.org/05nr5jj06', 'en', 1, 'https://ror.org/05nr5jj06 Yamada Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗå±±ē”°ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(79582, 'https://ror.org/00yvz6462', 'en', 1, 'https://ror.org/00yvz6462 Japan Pediatric Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°å…ē§‘å­¦ä¼š'),
(79583, 'https://ror.org/01nxdh755', 'en', 1, 'https://ror.org/01nxdh755 Towada City Hospital åå’Œē”°åø‚ē«‹äø­å¤®ē—…é™¢'),
(79584, 'https://ror.org/05v2ymc15', 'no_lang_code', 1, 'https://ror.org/05v2ymc15 Nisshin Steel (Japan) ę—„ę–°č£½é‹¼ę Ŗå¼ä¼šē¤¾'),
(79585, 'https://ror.org/03qbwe721', 'en', 1, 'https://ror.org/03qbwe721 Osaka Mishima Emergency and Critical Care Center å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗåŗœäø‰å³¶ę•‘ę€„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(79586, 'https://ror.org/0544za304', 'no_lang_code', 1, 'https://ror.org/0544za304 Koito Manufacturing (Japan) ę Ŗå¼ä¼šē¤¾å°ē³øč£½ä½œę‰€'),
(79587, 'https://ror.org/04fn52t03', 'en', 1, 'https://ror.org/04fn52t03 Graduate School of Health Care Sciences, Jikei Institute ę»‹ę…¶åŒ»ē™‚ē§‘å­¦å¤§å­¦é™¢å¤§å­¦'),
(79588, 'https://ror.org/03krwcf90', 'no_lang_code', 1, 'https://ror.org/03krwcf90 Saiseikai Matsuyama Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šę¾å±±ē—…é™¢'),
(79589, 'https://ror.org/03gv2xk61', 'en', 1, 'https://ror.org/03gv2xk61 RIKEN Center for Emergent Matter Science å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€å‰µē™ŗē‰©ę€§ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(79590, 'https://ror.org/05m8dye22', 'en', 1, 'https://ror.org/05m8dye22 Kagawa Prefectural Central Hospital é¦™å·ēœŒē«‹äø­å¤®ē—…é™¢'),
(79591, 'https://ror.org/04b1np478', 'en', 1, 'https://ror.org/04b1np478 National Institute of Technology, Niihama College ę–°å±…ęµœå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(79592, 'https://ror.org/02bwkwm60', 'en', 1, 'https://ror.org/02bwkwm60 Hiroshima Institute of Technology 広島巄愭大学'),
(79593, 'https://ror.org/04mtha847', 'no_lang_code', 1, 'https://ror.org/04mtha847 Aisan (Japan) ę„›äø‰å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79594, 'https://ror.org/045fvx862', 'no_lang_code', 1, 'https://ror.org/045fvx862 Yamato Municipal Hospital å¤§å’Œåø‚ē«‹ē—…é™¢'),
(79595, 'https://ror.org/03e2s4679', 'no_lang_code', 1, 'https://ror.org/03e2s4679 Ihara Chemical Industry (Japan) ć‚¤ćƒćƒ©ć‚±ćƒŸć‚«ćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79596, 'https://ror.org/01v07hj96', 'no_lang_code', 1, 'https://ror.org/01v07hj96 Sanken Electric (Japan) ć‚µćƒ³ć‚±ćƒ³é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(79597, 'https://ror.org/05ffy6g34', 'en', 1, 'https://ror.org/05ffy6g34 Kyushu Kyoritsu University ä¹å·žå…±ē«‹å¤§å­¦'),
(79598, 'https://ror.org/011n7v210', 'en', 1, 'https://ror.org/011n7v210 Shimane Prefectural Police 島根県警察'),
(79599, 'https://ror.org/01z7s7j95', 'en', 1, 'https://ror.org/01z7s7j95 Japan Prize Foundation å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē§‘å­¦ęŠ€č”“č²”å›£'),
(79600, 'https://ror.org/003jtew32', 'en', 1, 'https://ror.org/003jtew32 Japan Hospital Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē—…é™¢ä¼š'),
(79601, 'https://ror.org/05kd3f793', 'en', 1, 'https://ror.org/05kd3f793 Nagasaki University Hospital é•·å“Žå¤§å­¦ē—…é™¢'),
(79602, 'https://ror.org/02fzdct21', 'en', 1, 'https://ror.org/02fzdct21 Kindai University Sakai Hospital čæ‘ē•æå¤§å­¦åŒ»å­¦éƒØå ŗē—…é™¢'),
(79603, 'https://ror.org/029kvcs29', 'en', 1, 'https://ror.org/029kvcs29 National Institute of Technology, Akashi College ę˜ŽēŸ³å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(79604, 'https://ror.org/02cq51909', 'en', 1, 'https://ror.org/02cq51909 Sendai Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ä»™å°åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(79605, 'https://ror.org/0457h8c53', 'no_lang_code', 1, 'https://ror.org/0457h8c53 Shizuoka General Hospital é™å²”ēœŒē«‹ē·åˆē—…é™¢'),
(79606, 'https://ror.org/03ks0tt05', 'no_lang_code', 1, 'https://ror.org/03ks0tt05 JSR (Japan) JSRę Ŗå¼ä¼šē¤¾'),
(79607, 'https://ror.org/03zmwf676', 'no_lang_code', 1, 'https://ror.org/03zmwf676 Daifuku (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ćƒ•ć‚Æ'),
(79608, 'https://ror.org/00bv64a69', 'en', 1, 'https://ror.org/00bv64a69 Japanese Foundation For Cancer Research å…¬ē›Šč²”å›£ę³•äŗŗćŒć‚“ē ”ē©¶ä¼š'),
(79609, 'https://ror.org/054wa3824', 'no_lang_code', 1, 'https://ror.org/054wa3824 SATO (Japan) ć‚µćƒˆćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(79610, 'https://ror.org/00kcd6x60', 'en', 1, 'https://ror.org/00kcd6x60 Tohoku University Hospital ę±åŒ—å¤§å­¦ē—…é™¢'),
(79611, 'https://ror.org/04kp2z675', 'en', 1, 'https://ror.org/04kp2z675 National Institute of Technology, Gunma College ē¾¤é¦¬å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(79612, 'https://ror.org/048xnxc75', 'en', 1, 'https://ror.org/048xnxc75 Gunma Prefectural College of Health Sciences ē¾¤é¦¬ēœŒē«‹ēœŒę°‘å„åŗ·ē§‘å­¦å¤§å­¦'),
(79613, 'https://ror.org/00b6s9f18', 'en', 1, 'https://ror.org/00b6s9f18 Osaka National Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å¤§é˜ŖåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(79614, 'https://ror.org/049840617', 'no_lang_code', 1, 'https://ror.org/049840617 Max (Japan) ćƒžćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(79615, 'https://ror.org/04yf19a15', 'en', 1, 'https://ror.org/04yf19a15 Koyasan University 高野山大学'),
(79616, 'https://ror.org/02dgmxb18', 'en', 1, 'https://ror.org/02dgmxb18 Yamaguchi University Hospital å±±å£å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79617, 'https://ror.org/037x16a12', 'no_lang_code', 1, 'https://ror.org/037x16a12 Kaketsuken (Japan) äø€čˆ¬č²”å›£ę³•äŗŗåŒ–å­¦åŠč”€ęø…ē™‚ę³•ē ”ē©¶ę‰€'),
(79618, 'https://ror.org/013rvtk45', 'en', 1, 'https://ror.org/013rvtk45 Kochi Medical School Hospital é«˜ēŸ„å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79619, 'https://ror.org/02wz7nx80', 'no_lang_code', 1, 'https://ror.org/02wz7nx80 Kyoto Biken Laboratories (Japan) ę Ŗå¼ä¼šē¤¾å¾®ē”Ÿē‰©åŒ–å­¦ē ”ē©¶ę‰€'),
(79620, 'https://ror.org/036pfyf12', 'no_lang_code', 1, 'https://ror.org/036pfyf12 Seirei Hamamatsu General Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£ē·åˆē—…é™¢č–éš·ęµœę¾ē—…é™¢'),
(79621, 'https://ror.org/00649xp69', 'no_lang_code', 1, 'https://ror.org/00649xp69 Towa Pharmaceutical (Japan) ę±å’Œč–¬å“ę Ŗå¼ä¼šē¤¾'),
(79622, 'https://ror.org/05kq1z994', 'en', 1, 'https://ror.org/05kq1z994 Gunma University Hospital ē¾¤é¦¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(79623, 'https://ror.org/00xsdn005', 'en', 1, 'https://ror.org/00xsdn005 Kanazawa University Hospital é‡‘ę²¢å¤§å­¦é™„å±žē—…é™¢'),
(79624, 'https://ror.org/04rzagz55', 'no_lang_code', 1, 'https://ror.org/04rzagz55 Utano Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å®‡å¤šé‡Žē—…é™¢'),
(79625, 'https://ror.org/03xrg8731', 'no_lang_code', 1, 'https://ror.org/03xrg8731 Kansai Electric Power (Japan) é–¢č„æé›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(79626, 'https://ror.org/047z4ys07', 'no_lang_code', 1, 'https://ror.org/047z4ys07 Caterpillar (Japan) ć‚­ćƒ£ć‚æćƒ”ćƒ©ćƒ¼ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(79627, 'https://ror.org/04rwp2162', 'es', 1, 'https://ror.org/04rwp2162 Centro de AstrofĆ­sica y TecnologĆ­as Afines'),
(79628, 'https://ror.org/05pn4yv70', 'en', 1, 'https://ror.org/05pn4yv70 Beni-Suef University Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŁŠ سويف'),
(79629, 'https://ror.org/03snqfa66', 'en', 1, 'https://ror.org/03snqfa66 Zayed University Ų¬Ų§Ł…Ų¹Ų© زايد دانؓگاه زاید'),
(79630, 'https://ror.org/0393v2x22', 'sv', 1, 'https://ror.org/0393v2x22 Norrbottens lƤns Landsting'),
(79631, 'https://ror.org/05yb6xa82', 'en', 1, 'https://ror.org/05yb6xa82 Myelin Repair Foundation'),
(79632, 'https://ror.org/03j7rgg33', 'en', 1, 'https://ror.org/03j7rgg33 Natural Resources Conservation Service'),
(79633, 'https://ror.org/001h8tm56', 'en', 1, 'https://ror.org/001h8tm56 Canadian Academic Accounting Association'),
(79634, 'https://ror.org/01rm6hc52', 'en', 1, 'https://ror.org/01rm6hc52 Royal Aeronautical Society'),
(79635, 'https://ror.org/00td68a17', 'da', 1, 'https://ror.org/00td68a17 Bispebjerg Hospital'),
(79636, 'https://ror.org/05j5a1a74', 'en', 1, 'https://ror.org/05j5a1a74 Race Forward'),
(79637, 'https://ror.org/053r20n13', 'en', 1, 'https://ror.org/053r20n13 Ragon Institute of MGH, MIT and Harvard'),
(79638, 'https://ror.org/03awxj939', 'en', 1, 'https://ror.org/03awxj939 Shanghai Institute of Planned Parenthood Research äøŠęµ·åø‚č®”åˆ’ē”Ÿč‚²ē§‘å­¦ē ”ē©¶ę‰€'),
(79639, 'https://ror.org/00j5bwe91', 'es', 1, 'https://ror.org/00j5bwe91 ClĆ­nica Las Condes'),
(79640, 'https://ror.org/01yb3sb52', 'en', 1, 'https://ror.org/01yb3sb52 Aerospace Center Hospital čˆŖå¤©äø­åæƒåŒ»é™¢'),
(79641, 'https://ror.org/04jtt0w10', 'en', 1, 'https://ror.org/04jtt0w10 University Grants Commission of Bangladesh ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą¦®ą¦žą§ą¦œą§ą¦°ą§€ কমিশন'),
(79642, 'https://ror.org/02vdmpp49', 'en', 1, 'https://ror.org/02vdmpp49 Microscopy Society of America'),
(79643, 'https://ror.org/00ramkd50', 'en', 1, 'https://ror.org/00ramkd50 Southern Connecticut State University'),
(79644, 'https://ror.org/04c8eg608', 'en', 1, 'https://ror.org/04c8eg608 Dalian Medical University å¤§čæžåŒ»ē§‘å¤§å­¦'),
(79645, 'https://ror.org/03wf6h922', 'en', 1, 'https://ror.org/03wf6h922 Government of Nunavut'),
(79646, 'https://ror.org/01rgwy395', 'en', 1, 'https://ror.org/01rgwy395 Northwest Kidney Centers'),
(79647, 'https://ror.org/0474bqk45', 'en', 1, 'https://ror.org/0474bqk45 California Public Utilities Commission'),
(79648, 'https://ror.org/04ww21r56', 'en', 1, 'https://ror.org/04ww21r56 Niigata University ę–°ę½Ÿå¤§å­¦'),
(79649, 'https://ror.org/01b2f6h61', 'en', 1, 'https://ror.org/01b2f6h61 Novosibirsk State Technical University ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(79650, 'https://ror.org/03sxpbt26', 'en', 1, 'https://ror.org/03sxpbt26 Institute of Applied Physics and Computational Mathematics åŒ—äŗ¬åŗ”ē”Øē‰©ē†äøŽč®”ē®—ę•°å­¦ē ”ē©¶ę‰€'),
(79651, 'https://ror.org/04n3z6710', 'de', 1, 'https://ror.org/04n3z6710 Deutsche Alzheimer Gesellschaft'),
(79652, 'https://ror.org/0244rem06', 'en', 1, 'https://ror.org/0244rem06 Shinshu University äæ”å·žå¤§å­¦'),
(79653, 'https://ror.org/028dyak29', 'en', 1, 'https://ror.org/028dyak29 Aja University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų¢Ų¬Ų§'),
(79654, 'https://ror.org/04j3rah08', 'en', 1, 'https://ror.org/04j3rah08 Society for Developmental and Behavioral Pediatrics'),
(79655, 'https://ror.org/03k3c2t50', 'en', 1, 'https://ror.org/03k3c2t50 Universidad de Alaska Anchorage University of Alaska Anchorage UniversitƩ de l''alaska Ơ anchorage'),
(79656, 'https://ror.org/00g1p6865', 'en', 1, 'https://ror.org/00g1p6865 Brien Holden Vision Institute'),
(79657, 'https://ror.org/00ads0y69', 'es', 1, 'https://ror.org/00ads0y69 Universidad Autónoma Agraria Antonio Narro'),
(79658, 'https://ror.org/02fq2px14', 'en', 1, 'https://ror.org/02fq2px14 Jawaharlal Institute of Post Graduate Medical Education and Research ą®œą®µą®¹ą®°ąÆą®²ą®¾ą®²ąÆ ą®Ŗą®ŸąÆą®Ÿ ą®®ąÆ‡ą®±ąÆą®Ŗą®Ÿą®æą®ŖąÆą®ŖąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®µą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ ą“œą“æą“Ŗąµą“®ąµ†ąµ¼'),
(79659, 'https://ror.org/0397knh37', 'en', 1, 'https://ror.org/0397knh37 Collegio Carlo Alberto'),
(79660, 'https://ror.org/00zqaxa34', 'en', 1, 'https://ror.org/00zqaxa34 Northeast Electric Power University äøœåŒ—ē”µåŠ›å¤§å­¦'),
(79661, 'https://ror.org/05w06bw34', 'en', 1, 'https://ror.org/05w06bw34 Society for Research in Child Development'),
(79662, 'https://ror.org/00d1evr30', 'en', 1, 'https://ror.org/00d1evr30 Central Power Research Institute'),
(79663, 'https://ror.org/03xqveg17', 'en', 1, 'https://ror.org/03xqveg17 Hebei Academy of Sciences ę²³åŒ—ē§‘å­¦é™¢'),
(79664, 'https://ror.org/02dy0mv77', 'en', 1, 'https://ror.org/02dy0mv77 Challenger Society for Marine Science'),
(79665, 'https://ror.org/05vccrs41', 'en', 1, 'https://ror.org/05vccrs41 Adams State University'),
(79666, 'https://ror.org/02eak8n78', 'en', 1, 'https://ror.org/02eak8n78 Indiana University Southeast'),
(79667, 'https://ror.org/03vaf0k11', 'en', 1, 'https://ror.org/03vaf0k11 American Orthopaedic Society for Sports Medicine'),
(79668, 'https://ror.org/00s786094', 'en', 1, 'https://ror.org/00s786094 General Medical Council'),
(79669, 'https://ror.org/01r4tcq81', 'en', 1, 'https://ror.org/01r4tcq81 Innovative Genomics Institute'),
(79670, 'https://ror.org/01pcdsa88', 'en', 1, 'https://ror.org/01pcdsa88 Alaska Historical Society'),
(79671, 'https://ror.org/05c4vv049', 'en', 1, 'https://ror.org/05c4vv049 British Society of Soil Science'),
(79672, 'https://ror.org/01r45yt97', 'en', 1, 'https://ror.org/01r45yt97 Xianyang Normal University å’øé˜³åøˆčŒƒå­¦é™¢'),
(79673, 'https://ror.org/0324fzh77', 'en', 1, 'https://ror.org/0324fzh77 Long Island University UniversitƩ de Long Island'),
(79674, 'https://ror.org/05hpb3c68', 'en', 1, 'https://ror.org/05hpb3c68 British Sociological Association'),
(79675, 'https://ror.org/05cc1v231', 'en', 1, 'https://ror.org/05cc1v231 Daegu-Gyeongbuk Advanced Medical Industry Promotion Foundation Daegu-Gyeongbuk Medical Innovation Foundation'),
(79676, 'https://ror.org/03jf2m686', 'en', 1, 'https://ror.org/03jf2m686 Indian Institute of Tropical Meteorology ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤‰ą¤·ą„ą¤£ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ą„€ą¤Æ ą¤¹ą¤µą¤¾ą¤®ą¤¾ą¤Øą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(79677, 'https://ror.org/01hv94n30', 'no_lang_code', 1, 'https://ror.org/01hv94n30 Ruijin Hospital äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žē‘žé‡‘åŒ»é™¢'),
(79678, 'https://ror.org/02nfcgd30', 'en', 1, 'https://ror.org/02nfcgd30 Carle Foundation Hospital'),
(79679, 'https://ror.org/03e06qt98', 'no_lang_code', 1, 'https://ror.org/03e06qt98 GE Global Research (United States)'),
(79680, 'https://ror.org/03xy0wx88', 'en', 1, 'https://ror.org/03xy0wx88 Biomedical Research Council'),
(79681, 'https://ror.org/01z0wsw92', 'en', 1, 'https://ror.org/01z0wsw92 European Medicines Agency'),
(79682, 'https://ror.org/03nk2rw89', 'en', 1, 'https://ror.org/03nk2rw89 Atomic Energy Commission of Syria'),
(79683, 'https://ror.org/04b41fd51', 'en', 1, 'https://ror.org/04b41fd51 Kansas Academy of Science'),
(79684, 'https://ror.org/019zjtv03', 'en', 1, 'https://ror.org/019zjtv03 Audubon Society of Greater Denver'),
(79685, 'https://ror.org/0355d0s55', 'bs', 1, 'https://ror.org/0355d0s55 Federalno Ministarstvo Obrazovanja i Nauke'),
(79686, 'https://ror.org/04je98850', 'en', 1, 'https://ror.org/04je98850 Fu Jen Catholic University 辅仁大学'),
(79687, 'https://ror.org/02k4pxv54', 'en', 1, 'https://ror.org/02k4pxv54 Agencia Nacional de Inteligencia-Geoespacial National Geospatial-Intelligence Agency'),
(79688, 'https://ror.org/04j2tkk21', 'de', 1, 'https://ror.org/04j2tkk21 Heinz Nixdorf Stiftung'),
(79689, 'https://ror.org/006xm7s91', 'en', 1, 'https://ror.org/006xm7s91 Global Environment Facility'),
(79690, 'https://ror.org/01my9vf82', 'en', 1, 'https://ror.org/01my9vf82 New York State Library'),
(79691, 'https://ror.org/019kfw312', 'en', 1, 'https://ror.org/019kfw312 Inner Mongolia Academy of Agricultural & Animal Husbandry Sciences å†…č’™å¤å†œē‰§äøšē§‘å­¦é™¢'),
(79692, 'https://ror.org/018gpkq23', 'en', 1, 'https://ror.org/018gpkq23 Amigos Library Services'),
(79693, 'https://ror.org/045wzwx52', 'en', 1, 'https://ror.org/045wzwx52 Fujian Provincial Hospital ē¦å»ŗēœē«‹åŒ»é™¢'),
(79694, 'https://ror.org/02d2m2044', 'en', 1, 'https://ror.org/02d2m2044 Agricultural Research Service'),
(79695, 'https://ror.org/02rqvrp93', 'en', 1, 'https://ror.org/02rqvrp93 Meiji University ę˜Žę²»å¤§å­¦'),
(79696, 'https://ror.org/007gf6e19', 'en', 1, 'https://ror.org/007gf6e19 Huanggang Normal University é»„å†ˆåøˆčŒƒå­¦é™¢'),
(79697, 'https://ror.org/03b5nmf59', 'en', 1, 'https://ror.org/03b5nmf59 American Association for Laboratory Animal Science'),
(79698, 'https://ror.org/04j6b9h44', 'en', 1, 'https://ror.org/04j6b9h44 Foundation for Professional Development'),
(79699, 'https://ror.org/05j466218', 'en', 1, 'https://ror.org/05j466218 Society for Women''s Health Research'),
(79700, 'https://ror.org/0152zzg30', 'en', 1, 'https://ror.org/0152zzg30 Anhui University of Finance and Economics å®‰å¾½č“¢ē»å¤§å­¦'),
(79701, 'https://ror.org/05wdbfp45', 'en', 1, 'https://ror.org/05wdbfp45 North South University ą¦Øą¦°ą§ą¦„ সাউ঄ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(79702, 'https://ror.org/02d06s578', 'en', 1, 'https://ror.org/02d06s578 Chongqing University of Education é‡åŗ†ę•™č‚²å¤§å­¦'),
(79703, 'https://ror.org/03hygqf77', 'en', 1, 'https://ror.org/03hygqf77 American Beverage Association'),
(79704, 'https://ror.org/045kpgw45', 'en', 1, 'https://ror.org/045kpgw45 Guangdong Provincial People''s Hospital å¹æäøœēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(79705, 'https://ror.org/00f99yp81', 'en', 1, 'https://ror.org/00f99yp81 Royal Australasian College of Medical Administrators'),
(79706, 'https://ror.org/01cdpdn80', 'en', 1, 'https://ror.org/01cdpdn80 Cyrus Tang Foundation'),
(79707, 'https://ror.org/02pammg90', 'en', 1, 'https://ror.org/02pammg90 Cedars-Sinai Medical Center'),
(79708, 'https://ror.org/04psbxy09', 'en', 1, 'https://ror.org/04psbxy09 Centre for DNA Fingerprinting and Diagnostics ą¤”ą„€ą¤ą¤Øą¤ ą¤«ą¤æą¤‚ą¤—ą¤°ą¤Ŗą„ą¤°ą¤æą¤‚ą¤Ÿą¤æą¤‚ą¤— ą¤ą¤µą¤‚ निदान ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(79709, 'https://ror.org/037cjxp13', 'en', 1, 'https://ror.org/037cjxp13 China-Japan Friendship Hospital äø­ę—„å‹å„½åŒ»é™¢'),
(79710, 'https://ror.org/05amnwk22', 'en', 1, 'https://ror.org/05amnwk22 Hubei Engineering University ę¹–åŒ—å·„ēØ‹å¤§å­¦'),
(79711, 'https://ror.org/02ehshm78', 'en', 1, 'https://ror.org/02ehshm78 Eastern Michigan University Universidad de Michigan Oriental'),
(79712, 'https://ror.org/02epph894', 'en', 1, 'https://ror.org/02epph894 South African National Space Agency'),
(79713, 'https://ror.org/0445phv87', 'en', 1, 'https://ror.org/0445phv87 University of Toyama 富山大学'),
(79714, 'https://ror.org/05kg8j924', 'en', 1, 'https://ror.org/05kg8j924 American College of Foot and Ankle Surgeons'),
(79715, 'https://ror.org/05mpwj415', 'en', 1, 'https://ror.org/05mpwj415 Fort Valley State University'),
(79716, 'https://ror.org/02p0p4q62', 'en', 1, 'https://ror.org/02p0p4q62 Physical Research Laboratory'),
(79717, 'https://ror.org/038a5qa83', 'en', 1, 'https://ror.org/038a5qa83 International Glaucoma Association'),
(79718, 'https://ror.org/00sat4n88', 'en', 1, 'https://ror.org/00sat4n88 Society for Experimental Biology and Medicine'),
(79719, 'https://ror.org/01qax9t22', 'en', 1, 'https://ror.org/01qax9t22 UK Stem Cell Foundation'),
(79720, 'https://ror.org/04sn2hb78', 'sv', 1, 'https://ror.org/04sn2hb78 Centralsjukhuset Kristianstad'),
(79721, 'https://ror.org/04p7aq350', 'en', 1, 'https://ror.org/04p7aq350 Cooperative Research Centre for Water Sensitive Cities'),
(79722, 'https://ror.org/03f0wvt12', 'en', 1, 'https://ror.org/03f0wvt12 University of Wisconsin Foundation'),
(79723, 'https://ror.org/03jpxze54', 'fr', 1, 'https://ror.org/03jpxze54 Fondation Maladies Rares'),
(79724, 'https://ror.org/01dr2b756', 'en', 1, 'https://ror.org/01dr2b756 Hubei University of Medicine ę¹–åŒ—åŒ»čÆå­¦é™¢'),
(79725, 'https://ror.org/04eps4h65', 'en', 1, 'https://ror.org/04eps4h65 University of Faisalabad جامعہ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(79726, 'https://ror.org/05tr89b24', 'en', 1, 'https://ror.org/05tr89b24 American Society for Environmental History'),
(79727, 'https://ror.org/05nhxfs81', 'en', 1, 'https://ror.org/05nhxfs81 New York Historical Society'),
(79728, 'https://ror.org/0434sbs50', 'en', 1, 'https://ror.org/0434sbs50 British Academy of Management'),
(79729, 'https://ror.org/01gbba190', 'en', 1, 'https://ror.org/01gbba190 Georgia Department of Natural Resources'),
(79730, 'https://ror.org/05frpfj73', 'en', 1, 'https://ror.org/05frpfj73 Binzhou University ę»Øå·žå­¦é™¢'),
(79731, 'https://ror.org/01cw0fy64', 'en', 1, 'https://ror.org/01cw0fy64 University of King''s College'),
(79732, 'https://ror.org/01zvdsy94', 'en', 1, 'https://ror.org/01zvdsy94 American Petroleum Institute'),
(79733, 'https://ror.org/04pvsjf17', 'en', 1, 'https://ror.org/04pvsjf17 FENS Kavli Network of Excellence'),
(79734, 'https://ror.org/034xatd74', 'en', 1, 'https://ror.org/034xatd74 Fairchild Tropical Botanic Garden'),
(79735, 'https://ror.org/04861m839', 'pt', 1, 'https://ror.org/04861m839 Associação Brasileira de Saúde Coletiva'),
(79736, 'https://ror.org/005msw364', 'en', 1, 'https://ror.org/005msw364 African Studies Association'),
(79737, 'https://ror.org/04h42fc75', 'en', 1, 'https://ror.org/04h42fc75 Meijo University 名城大学'),
(79738, 'https://ror.org/00eg2e012', 'en', 1, 'https://ror.org/00eg2e012 American Economic Association'),
(79739, 'https://ror.org/05bvxn785', 'en', 1, 'https://ror.org/05bvxn785 Federal Agency for Scientific Organizations Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ агентство Š½Š°ŃƒŃ‡Š½Ń‹Ń… организаций'),
(79740, 'https://ror.org/04xjhyn16', 'en', 1, 'https://ror.org/04xjhyn16 DigitalGlobe Foundation'),
(79741, 'https://ror.org/04esx4891', 'en', 1, 'https://ror.org/04esx4891 Dorset HealthCare University NHS Foundation Trust'),
(79742, 'https://ror.org/01m1s6313', 'en', 1, 'https://ror.org/01m1s6313 St. George''s University'),
(79743, 'https://ror.org/04eq83d71', 'en', 1, 'https://ror.org/04eq83d71 Henan Agricultural University ę²³å—å†œäøšå¤§å­¦'),
(79744, 'https://ror.org/01bawmj47', 'en', 1, 'https://ror.org/01bawmj47 Genesis Research Trust'),
(79745, 'https://ror.org/0510wt644', 'en', 1, 'https://ror.org/0510wt644 American Society of Parasitologists'),
(79746, 'https://ror.org/035adwg89', 'en', 1, 'https://ror.org/035adwg89 Peking University People''s Hospital åŒ—äŗ¬å¤§å­¦äŗŗę°‘åŒ»é™¢'),
(79747, 'https://ror.org/05k4m9b36', 'en', 1, 'https://ror.org/05k4m9b36 Institute of Food Technologists'),
(79748, 'https://ror.org/02428c123', 'en', 1, 'https://ror.org/02428c123 American Academy of Addiction Psychiatry'),
(79749, 'https://ror.org/02jnm4206', 'en', 1, 'https://ror.org/02jnm4206 Jewish Community Foundation'),
(79750, 'https://ror.org/0270y6950', 'en', 1, 'https://ror.org/0270y6950 Harbin Normal University å“ˆå°”ę»ØåøˆčŒƒå¤§å­¦'),
(79751, 'https://ror.org/01nkphj61', 'en', 1, 'https://ror.org/01nkphj61 Himalayan Institute Hospital Trust ą¤¹ą¤æą¤®ą¤¾ą¤²ą¤Æą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² ą¤Ÿą„ą¤°ą¤øą„ą¤Ÿ'),
(79752, 'https://ror.org/026bv4494', 'en', 1, 'https://ror.org/026bv4494 St. Bonaventure University Universidad de San Buenaventura UniversitƩ de st. bonaventure'),
(79753, 'https://ror.org/01wq2p249', 'en', 1, 'https://ror.org/01wq2p249 Guangdong Polytechnic of Science and Technology å¹æäøœē§‘å­¦ęŠ€ęœÆčŒäøšå­¦é™¢'),
(79754, 'https://ror.org/01d5qpn59', 'en', 1, 'https://ror.org/01d5qpn59 Babraham Institute'),
(79755, 'https://ror.org/05s0j2r87', 'en', 1, 'https://ror.org/05s0j2r87 Canadian Society of Plastic Surgeons'),
(79756, 'https://ror.org/0275ebj77', 'en', 1, 'https://ror.org/0275ebj77 Federal Railroad Administration'),
(79757, 'https://ror.org/01xnrs054', 'en', 1, 'https://ror.org/01xnrs054 Western Indian Ocean Marine Science Association'),
(79758, 'https://ror.org/011rrqf91', 'en', 1, 'https://ror.org/011rrqf91 Open University of Sri Lanka ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®¤ą®æą®±ą®ØąÆą®¤ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ශ් රී ą¶½ą¶‚ą¶šą· ą·€ą·’ą·€ą·˜ą¶­ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(79759, 'https://ror.org/01px84952', 'en', 1, 'https://ror.org/01px84952 Unitec Institute of Technology'),
(79760, 'https://ror.org/01dbzsr51', 'en', 1, 'https://ror.org/01dbzsr51 Association Canadienne Des Medecins d''Urgence Canadian Association of Emergency Physicians'),
(79761, 'https://ror.org/03vwc6a47', 'en', 1, 'https://ror.org/03vwc6a47 International Association for Identification'),
(79762, 'https://ror.org/01529vy56', 'en', 1, 'https://ror.org/01529vy56 Mie University äø‰é‡å¤§å­¦'),
(79763, 'https://ror.org/04v0v0306', 'en', 1, 'https://ror.org/04v0v0306 European Association for the Study of Diabetes'),
(79764, 'https://ror.org/00q2w1j53', 'en', 1, 'https://ror.org/00q2w1j53 Indian Statistical Institute ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą¤¾ą¤‚ą¤–ą„ą¤Æą¤æą¤•ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(79765, 'https://ror.org/04ggd2r74', 'en', 1, 'https://ror.org/04ggd2r74 Office of Marine and Aviation Operations'),
(79766, 'https://ror.org/05gt1vc06', 'en', 1, 'https://ror.org/05gt1vc06 Howard University Universidad Howard'),
(79767, 'https://ror.org/041zje040', 'en', 1, 'https://ror.org/041zje040 Heze University čę³½å¤§å­¦'),
(79768, 'https://ror.org/00anb1726', 'no_lang_code', 1, 'https://ror.org/00anb1726 Vertex Pharmaceuticals (United States)'),
(79769, 'https://ror.org/05gd1cs26', 'en', 1, 'https://ror.org/05gd1cs26 Doha Institute for Graduate Studies معهد Ų§Ł„ŲÆŁˆŲ­Ų© للدراسات Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł…Ų¤Ų³Ų³Ų© Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(79770, 'https://ror.org/01xesb955', 'en', 1, 'https://ror.org/01xesb955 BC Children''s Hospital Foundation'),
(79771, 'https://ror.org/02gazz415', 'en', 1, 'https://ror.org/02gazz415 Philippine Rice Research Institute'),
(79772, 'https://ror.org/025j46253', 'en', 1, 'https://ror.org/025j46253 Indiana Department of Transportation'),
(79773, 'https://ror.org/04g0aqp14', 'en', 1, 'https://ror.org/04g0aqp14 Greater London Authority'),
(79774, 'https://ror.org/02yas1717', 'en', 1, 'https://ror.org/02yas1717 Bat Conservation Trust'),
(79775, 'https://ror.org/00c952d06', 'en', 1, 'https://ror.org/00c952d06 New York Foundation for the Arts'),
(79776, 'https://ror.org/04dpymk59', 'en', 1, 'https://ror.org/04dpymk59 National Agricultural Statistics Service'),
(79777, 'https://ror.org/014napt72', 'en', 1, 'https://ror.org/014napt72 American Academy In Rome'),
(79778, 'https://ror.org/03gqhbs95', 'en', 1, 'https://ror.org/03gqhbs95 BC Cancer Foundation'),
(79779, 'https://ror.org/00a4fk439', 'en', 1, 'https://ror.org/00a4fk439 Phycological Society of America'),
(79780, 'https://ror.org/048zqcn09', 'en', 1, 'https://ror.org/048zqcn09 Research Institute of Economy, Trade and Industry ē‹¬ē«‹č”Œę”æę³•äŗŗēµŒęøˆē”£ę„­ē ”ē©¶ę‰€'),
(79781, 'https://ror.org/04tav7h44', 'en', 1, 'https://ror.org/04tav7h44 Cherepovets State University Череповецкий Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(79782, 'https://ror.org/02s0c9732', 'en', 1, 'https://ror.org/02s0c9732 Hope Funds for Cancer Research'),
(79783, 'https://ror.org/050p9wj26', 'en', 1, 'https://ror.org/050p9wj26 John F. Kennedy University'),
(79784, 'https://ror.org/05fmrjg27', 'en', 1, 'https://ror.org/05fmrjg27 Sussex Partnership NHS Foundation Trust'),
(79785, 'https://ror.org/052590h17', 'en', 1, 'https://ror.org/052590h17 People''s Trust for Endangered Species'),
(79786, 'https://ror.org/03etyjw28', 'es', 1, 'https://ror.org/03etyjw28 Pontifical Xavierian University Pontificia Universidad Javeriana'),
(79787, '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'),
(79788, 'https://ror.org/00wdyp114', 'en', 1, 'https://ror.org/00wdyp114 Indian Academy of Sciences'),
(79789, 'https://ror.org/01hhf7w52', 'en', 1, 'https://ror.org/01hhf7w52 Indian Institute of Technology Indore ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‡ą¤‚ą¤¦ą„Œą¤° ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®‡ą®ØąÆą®¤ąÆ‚ą®°ąÆ'),
(79790, 'https://ror.org/048vs0x15', 'en', 1, 'https://ror.org/048vs0x15 National Trust for Historic Preservation'),
(79791, 'https://ror.org/04sr5ys16', 'en', 1, 'https://ror.org/04sr5ys16 Duke Kunshan University ę˜†å±±ęœå…‹å¤§å­¦'),
(79792, 'https://ror.org/0112vdv20', 'en', 1, 'https://ror.org/0112vdv20 Illinois Society for the Prevention of Blindness'),
(79793, 'https://ror.org/056nc1c48', 'en', 1, 'https://ror.org/056nc1c48 Autorità Europea per la Sicurezza Alimentare Autorité Européenne de Sécurité des Aliments European Food Safety Authority Europäische Behörde für Lebensmittelsicherheit'),
(79794, 'https://ror.org/01a5mqy88', 'en', 1, 'https://ror.org/01a5mqy88 Bose Institute ą“¬ąµ‹ą“øąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(79795, 'https://ror.org/025h79t26', 'no_lang_code', 1, 'https://ror.org/025h79t26 University of Peradeniya ą®ŖąÆ‡ą®°ą®¾ą®¤ą®©ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą¶“ą·šą¶»ą·ą¶Æą·™ą¶«ą·’ą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(79796, 'https://ror.org/05aqbwk58', 'en', 1, 'https://ror.org/05aqbwk58 Nepal Agricultural Research Council ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø परिषद'),
(79797, 'https://ror.org/04tdavc85', 'en', 1, 'https://ror.org/04tdavc85 American Podiatric Medical Association'),
(79798, 'https://ror.org/00s5a4h94', 'en', 1, 'https://ror.org/00s5a4h94 University City Science Center'),
(79799, 'https://ror.org/04asvbz37', 'no_lang_code', 1, 'https://ror.org/04asvbz37 Swedish Orphan Biovitrum (Sweden)'),
(79800, 'https://ror.org/04r1cxt79', 'en', 1, 'https://ror.org/04r1cxt79 Kenya Medical Research Institute'),
(79801, 'https://ror.org/01tv9ph92', 'en', 1, 'https://ror.org/01tv9ph92 Southern Federal University Южный Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(79802, 'https://ror.org/00c7x4a95', 'en', 1, 'https://ror.org/00c7x4a95 Dalian Polytechnic University å¤§čæžå·„äøšå¤§å­¦'),
(79803, 'https://ror.org/031gkqq69', 'en', 1, 'https://ror.org/031gkqq69 American Society of Agronomy'),
(79804, 'https://ror.org/018wg9441', 'en', 1, 'https://ror.org/018wg9441 Hubei University of Science and Technology ę¹–åŒ—ē§‘ęŠ€å­¦é™¢'),
(79805, 'https://ror.org/02kd4pa08', 'en', 1, 'https://ror.org/02kd4pa08 Oklahoma Department of Transportation'),
(79806, 'https://ror.org/00t77bz53', 'en', 1, 'https://ror.org/00t77bz53 Foreign Agricultural Service'),
(79807, 'https://ror.org/0567t7073', 'en', 1, 'https://ror.org/0567t7073 Fox Chase Cancer Center'),
(79808, 'https://ror.org/020fy4d02', 'en', 1, 'https://ror.org/020fy4d02 Hartford Foundation for Public Giving'),
(79809, 'https://ror.org/019y44724', 'en', 1, 'https://ror.org/019y44724 Society for Sedimentary Geology'),
(79810, 'https://ror.org/02an6vg71', 'en', 1, 'https://ror.org/02an6vg71 Bacha Khan University'),
(79811, 'https://ror.org/05qx3fv49', 'en', 1, 'https://ror.org/05qx3fv49 National Institute of Food and Agriculture'),
(79812, 'https://ror.org/02bftm313', 'no_lang_code', 1, 'https://ror.org/02bftm313 Catalyst Biosciences (United States)'),
(79813, 'https://ror.org/05btws897', 'en', 1, 'https://ror.org/05btws897 European College of Neuropsychopharmacology'),
(79814, 'https://ror.org/02nt7ap43', 'nl', 1, 'https://ror.org/02nt7ap43 Academie Verloskunde Amsterdam Groningen'),
(79815, 'https://ror.org/01k71jg45', 'en', 1, 'https://ror.org/01k71jg45 Hospice and Palliative Nurses Foundation'),
(79816, 'https://ror.org/013jy7g98', 'en', 1, 'https://ror.org/013jy7g98 Cohen Veterans Bioscience'),
(79817, 'https://ror.org/030xwyx96', 'en', 1, 'https://ror.org/030xwyx96 Heilongjiang University of Science and Technology é»‘é¾™ę±Ÿå·„ēØ‹å­¦é™¢'),
(79818, 'https://ror.org/01fj5gf64', 'en', 1, 'https://ror.org/01fj5gf64 Hunan Academy of Agricultural Sciences ę¹–å—ēœå†œäøšē§‘å­¦é™¢'),
(79819, 'https://ror.org/04t44qh67', 'en', 1, 'https://ror.org/04t44qh67 Baotou Medical College 包夓医学院'),
(79820, 'https://ror.org/059z11218', 'en', 1, 'https://ror.org/059z11218 Kawasaki Medical School å·å“ŽåŒ»ē§‘å¤§å­¦'),
(79821, 'https://ror.org/01d5ymp84', 'en', 1, 'https://ror.org/01d5ymp84 China National Nuclear Corporation äø­å›½ę øå·„äøšé›†å›¢å…¬åø'),
(79822, 'https://ror.org/02djn2x77', 'es', 1, 'https://ror.org/02djn2x77 Fundación Juan March'),
(79823, 'https://ror.org/022g31s87', 'en', 1, 'https://ror.org/022g31s87 British Society for Heart Failure'),
(79824, 'https://ror.org/02j85cg51', 'en', 1, 'https://ror.org/02j85cg51 Freshwater Biological Association'),
(79825, 'https://ror.org/02r0ks990', 'no_lang_code', 1, 'https://ror.org/02r0ks990 Banque Canadienne ImpƩriale de Commerce Canadian Imperial Bank of Commerce (Canada)'),
(79826, 'https://ror.org/00kvw1g26', 'en', 1, 'https://ror.org/00kvw1g26 American Society for Bone and Mineral Research'),
(79827, 'https://ror.org/01ce4w121', 'en', 1, 'https://ror.org/01ce4w121 Nebraska Academy of Sciences'),
(79828, 'https://ror.org/01qf95793', 'en', 1, 'https://ror.org/01qf95793 Lindenwood University'),
(79829, 'https://ror.org/053e8a708', 'en', 1, 'https://ror.org/053e8a708 Showa Pharmaceutical University ę˜­å’Œč–¬ē§‘å¤§å­¦'),
(79830, 'https://ror.org/00d062t77', 'en', 1, 'https://ror.org/00d062t77 Bank for International Settlements Bank für Internationalen Zahlungsausgleich'),
(79831, 'https://ror.org/01gqdjc98', 'en', 1, 'https://ror.org/01gqdjc98 Aba Teachers University é˜æååøˆčŒƒå­¦é™¢'),
(79832, 'https://ror.org/03781zn34', 'de', 1, 'https://ror.org/03781zn34 Berlin-Brandenburger Centrum für Regenerative Therapien'),
(79833, 'https://ror.org/059m1v232', 'de', 1, 'https://ror.org/059m1v232 Forschungsverbund Berlin'),
(79834, 'https://ror.org/056skxz71', 'en', 1, 'https://ror.org/056skxz71 American Association for Respiratory Care'),
(79835, 'https://ror.org/0236m0438', 'en', 1, 'https://ror.org/0236m0438 Hawaii Academy of Science'),
(79836, 'https://ror.org/00p8cpg07', 'en', 1, 'https://ror.org/00p8cpg07 American Philosophical Association'),
(79837, 'https://ror.org/02hcv4z63', 'en', 1, 'https://ror.org/02hcv4z63 Minia University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŁŠŁ€Ų§'),
(79838, 'https://ror.org/026zpz859', 'en', 1, 'https://ror.org/026zpz859 Kaohsiung Armed Forces General Hospital'),
(79839, 'https://ror.org/0375jbm11', 'en', 1, 'https://ror.org/0375jbm11 National Centre for Earth Observation'),
(79840, 'https://ror.org/00kmxt141', 'en', 1, 'https://ror.org/00kmxt141 UniversitĆ© d''Ɖtat de winona Winona State University'),
(79841, 'https://ror.org/02v7v1p25', 'en', 1, 'https://ror.org/02v7v1p25 American Society for Metabolic and Bariatric Surgery'),
(79842, 'https://ror.org/052d0h423', 'en', 1, 'https://ror.org/052d0h423 Max Planck Institute for Nuclear Physics Max-Planck-Institut für Kernphysik'),
(79843, 'https://ror.org/056ct4b16', 'en', 1, 'https://ror.org/056ct4b16 Centre for Excellence in Mining Innovation'),
(79844, 'https://ror.org/05pk92k21', 'en', 1, 'https://ror.org/05pk92k21 International Biometric Society'),
(79845, 'https://ror.org/04wwqze12', 'en', 1, 'https://ror.org/04wwqze12 Peking University Third Hospital åŒ—äŗ¬å¤§å­¦ē¬¬äø‰åŒ»é™¢'),
(79846, 'https://ror.org/01gv74p78', 'fr', 1, 'https://ror.org/01gv74p78 Centre Hospitalier Universitaire Sainte-Justine'),
(79847, 'https://ror.org/0212jcf64', 'en', 1, 'https://ror.org/0212jcf64 Hubei University of Arts and Science ę¹–åŒ—ę–‡ē†å­¦é™¢'),
(79848, 'https://ror.org/00vs1pz50', 'en', 1, 'https://ror.org/00vs1pz50 Ministry of Internal Affairs and Communications ē·å‹™å¤§č‡£'),
(79849, 'https://ror.org/014ja3n03', 'en', 1, 'https://ror.org/014ja3n03 University Hospitals Birmingham NHS Foundation Trust'),
(79850, 'https://ror.org/0573mff95', 'en', 1, 'https://ror.org/0573mff95 American Automatic Control Council'),
(79851, 'https://ror.org/05rd0jh74', 'en', 1, 'https://ror.org/05rd0jh74 Great Lakes Colleges Association'),
(79852, 'https://ror.org/05bg2wc74', 'en', 1, 'https://ror.org/05bg2wc74 Canola Council of Canada'),
(79853, 'https://ror.org/05fw97k56', 'en', 1, 'https://ror.org/05fw97k56 Siberian Federal University Дибирский Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(79854, 'https://ror.org/03rpes181', 'en', 1, 'https://ror.org/03rpes181 American Association of Nurse Anesthetists'),
(79855, 'https://ror.org/0436zyg08', 'en', 1, 'https://ror.org/0436zyg08 Ohio Department of Health'),
(79856, 'https://ror.org/04ckdkt28', 'en', 1, 'https://ror.org/04ckdkt28 Central European Initiative'),
(79857, 'https://ror.org/053ng1p06', 'no_lang_code', 1, 'https://ror.org/053ng1p06 Eastman Chemical Company (United States)'),
(79858, 'https://ror.org/02qf2tx24', 'no_lang_code', 1, 'https://ror.org/02qf2tx24 Kwansei Gakuin University 関脿学院大学'),
(79859, 'https://ror.org/059d6yn51', 'en', 1, 'https://ror.org/059d6yn51 Toyo University ę±ę“‹å¤§å­¦'),
(79860, 'https://ror.org/045vdnf39', 'en', 1, 'https://ror.org/045vdnf39 Canadian Patient Safety Institute Institut canadien pour la sƩcuritƩ des patients'),
(79861, 'https://ror.org/02r4nmf56', 'en', 1, 'https://ror.org/02r4nmf56 International Technological University'),
(79862, 'https://ror.org/00d25af97', 'en', 1, 'https://ror.org/00d25af97 Pontificia y Real Universidad de Santo TomƔs University of Santo Tomas'),
(79863, 'https://ror.org/05tx3bv88', 'en', 1, 'https://ror.org/05tx3bv88 Austin Peay State University Universidad Estatal Austin Peay'),
(79864, 'https://ror.org/01hxzmb15', 'fr', 1, 'https://ror.org/01hxzmb15 Conseil RƩgional de La RƩunion'),
(79865, 'https://ror.org/00r8a6s58', 'no_lang_code', 1, 'https://ror.org/00r8a6s58 Portola Pharmaceuticals (United States)'),
(79866, 'https://ror.org/01fc5yc54', 'en', 1, 'https://ror.org/01fc5yc54 Meiji Yasuda Life Foundation of Health and Welfare å…¬ē›Šč²”å›£ę³•äŗŗ ę˜Žę²»å®‰ē”°åŽšē”Ÿäŗ‹ę„­å›£'),
(79867, 'https://ror.org/01wspv808', 'en', 1, 'https://ror.org/01wspv808 Norfolk and Norwich University Hospitals NHS Foundation Trust'),
(79868, 'https://ror.org/00vdyrj80', 'en', 1, 'https://ror.org/00vdyrj80 Henan Academy of Agricultural Sciences ę²³å—ēœå†œäøšē§‘å­¦é™¢'),
(79869, 'https://ror.org/01fy65t21', 'en', 1, 'https://ror.org/01fy65t21 Breast Cancer Society of Canada SociƩtƩ du Cancer du Canada'),
(79870, 'https://ror.org/01xdzh226', 'en', 1, 'https://ror.org/01xdzh226 Beijing Electronic Science and Technology Institute åŒ—äŗ¬ē”µå­ē§‘ęŠ€å­¦é™¢'),
(79871, 'https://ror.org/04m2j3740', 'en', 1, 'https://ror.org/04m2j3740 Geological Survey of Ireland SuirbhĆ©ireacht GheolaĆ­ochta Ɖireann'),
(79872, 'https://ror.org/00t0q9z88', 'en', 1, 'https://ror.org/00t0q9z88 BioXFEL Science and Technology Center'),
(79873, 'https://ror.org/01565p617', 'en', 1, 'https://ror.org/01565p617 Western Connecticut State University'),
(79874, 'https://ror.org/00nzavp26', 'es', 1, 'https://ror.org/00nzavp26 Hospital Infantil de México Federico Gómez'),
(79875, 'https://ror.org/04hja5e04', 'en', 1, 'https://ror.org/04hja5e04 State Key Laboratory of Respiratory Disease å‘¼åøē–¾ē—…å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(79876, 'https://ror.org/02vg22c33', 'en', 1, 'https://ror.org/02vg22c33 Desert Research Institute'),
(79877, 'https://ror.org/049nwxd40', 'en', 1, 'https://ror.org/049nwxd40 Thai Health Promotion Foundation'),
(79878, 'https://ror.org/05erbjx97', 'en', 1, 'https://ror.org/05erbjx97 V.I. Vernadsky Crimean Federal University ŠšŃ€Ń‹Š¼ŃŠŗŠøŠ¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’.И. ВернаГского'),
(79879, 'https://ror.org/05e34ej29', 'en', 1, 'https://ror.org/05e34ej29 University of Zanjan دانؓگاه زنجان'),
(79880, 'https://ror.org/03thsxs59', 'no_lang_code', 1, 'https://ror.org/03thsxs59 Heidelberg Engineering (Germany)'),
(79881, 'https://ror.org/0205jhq31', 'en', 1, 'https://ror.org/0205jhq31 North Pacific Marine Science Organization'),
(79882, 'https://ror.org/053d7x641', 'en', 1, 'https://ror.org/053d7x641 Anhui Xinhua University'),
(79883, 'https://ror.org/04sf43a98', 'en', 1, 'https://ror.org/04sf43a98 Ambrose University'),
(79884, 'https://ror.org/026n4t805', 'en', 1, 'https://ror.org/026n4t805 Greater Worcester Community Foundation'),
(79885, 'https://ror.org/0381bab64', 'it', 1, 'https://ror.org/0381bab64 Edmund Mach Foundation Fondazione Edmund Mach'),
(79886, 'https://ror.org/03exev935', 'en', 1, 'https://ror.org/03exev935 National Ovarian Cancer Coalition'),
(79887, 'https://ror.org/00nvc8n52', 'en', 1, 'https://ror.org/00nvc8n52 Hogg Foundation for Mental Health'),
(79888, 'https://ror.org/048nctr92', 'es', 1, 'https://ror.org/048nctr92 Universidad TƩcnica de Ambato'),
(79889, 'https://ror.org/05309tf52', 'en', 1, 'https://ror.org/05309tf52 Niagara University Universidad de NiƔgara UniversitƩ de niagara'),
(79890, 'https://ror.org/02x011m46', 'en', 1, 'https://ror.org/02x011m46 Baystate Health'),
(79891, 'https://ror.org/002x6f380', 'en', 1, 'https://ror.org/002x6f380 Guizhou Education University č“µå·žåøˆčŒƒå­¦é™¢'),
(79892, 'https://ror.org/01fk80534', 'pt', 1, 'https://ror.org/01fk80534 Fundação Parque Tecnológico Itaipu'),
(79893, 'https://ror.org/01gnzp994', 'en', 1, 'https://ror.org/01gnzp994 Chongqing Academy of Science and Technology é‡åŗ†åø‚ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(79894, 'https://ror.org/04dpa3g90', 'en', 1, 'https://ror.org/04dpa3g90 Yunnan Agricultural University äŗ‘å—å†œäøšå¤§å­¦'),
(79895, 'https://ror.org/03mchdq19', 'da', 1, 'https://ror.org/03mchdq19 Rigshospitalet'),
(79896, 'https://ror.org/03sgr7529', 'en', 1, 'https://ror.org/03sgr7529 Growing Spine Foundation'),
(79897, 'https://ror.org/036bxpj43', 'fi', 1, 'https://ror.org/036bxpj43 Hospital District of Southwest Finland Varsinais-Suomen Sairaanhoitopiiri'),
(79898, 'https://ror.org/03fnv7n42', 'en', 1, 'https://ror.org/03fnv7n42 Nanjing Xiaozhuang University å—äŗ¬ę™“åŗ„å­¦é™¢'),
(79899, 'https://ror.org/04w1pxt36', 'en', 1, 'https://ror.org/04w1pxt36 Chinese Society for Electrical Engineering äø­å›½ē”µęœŗå·„ēØ‹å­¦ä¼š'),
(79900, 'https://ror.org/0265wc016', 'en', 1, 'https://ror.org/0265wc016 Canadian Institute for Theoretical Astrophysics Institut canadien d''astrophysique thƩorique'),
(79901, 'https://ror.org/009tnsj43', 'en', 1, 'https://ror.org/009tnsj43 Newman University'),
(79902, 'https://ror.org/04zb31v77', 'en', 1, 'https://ror.org/04zb31v77 Saitama Medical University åŸ¼ēŽ‰åŒ»ē§‘å¤§å­¦'),
(79903, 'https://ror.org/05e4zna08', 'pl', 1, 'https://ror.org/05e4zna08 Centre of Molecular and Macromolecular Studies Centrum Badań Molekularnych i Makromolekularnych Polskiej Akademii Nauk'),
(79904, 'https://ror.org/00jt22t02', 'de', 1, 'https://ror.org/00jt22t02 Deutsche Morbus Crohn/Colitis ulcerosa Vereinigung'),
(79905, 'https://ror.org/04zke5364', 'en', 1, 'https://ror.org/04zke5364 Feidhmeannacht na Seirbhƭse SlƔinte Health Service Executive'),
(79906, 'https://ror.org/00pj63h42', 'en', 1, 'https://ror.org/00pj63h42 Chinese Arctic and Antarctic Administration å›½å®¶ęµ·ę“‹å±€ęžåœ°č€ƒåÆŸåŠžå…¬å®¤'),
(79907, 'https://ror.org/00swwa029', 'en', 1, 'https://ror.org/00swwa029 American Association of Nurse Practitioners'),
(79908, 'https://ror.org/0093wey45', 'en', 1, 'https://ror.org/0093wey45 Alberta Barley'),
(79909, 'https://ror.org/05eaakg28', 'en', 1, 'https://ror.org/05eaakg28 California Energy Commission'),
(79910, 'https://ror.org/05k37ht14', 'en', 1, 'https://ror.org/05k37ht14 Indian Institute of Space Science and Technology ą“‡ą“Øąµą“¤ąµą“Æą“Øąµā€ ą“‡ą“Øąµā€ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“øąµą“Ŗąµ‡ą“øąµ ą“øą“Æąµ»ą“øąµ ą“†ą“Øąµą“±ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ .'),
(79911, 'https://ror.org/01rkwtz72', 'en', 1, 'https://ror.org/01rkwtz72 Guangdong Academy of Agricultural Sciences å¹æäøœēœå†œäøšē§‘å­¦é™¢'),
(79912, 'https://ror.org/029ws6035', 'en', 1, 'https://ror.org/029ws6035 Canadian Museum of Nature MusƩe Canadien de la nature'),
(79913, 'https://ror.org/0029f8q94', 'en', 1, 'https://ror.org/0029f8q94 Keyano College'),
(79914, 'https://ror.org/03jhrww64', 'en', 1, 'https://ror.org/03jhrww64 United Cerebral Palsy'),
(79915, 'https://ror.org/02zsyc904', 'en', 1, 'https://ror.org/02zsyc904 Beef Farmers of Ontario'),
(79916, 'https://ror.org/04w5etv87', 'en', 1, 'https://ror.org/04w5etv87 Chengdu Institute of Biology äø­å›½ē§‘å­¦é™¢ęˆéƒ½ē”Ÿē‰©ē ”ē©¶ę‰€'),
(79917, 'https://ror.org/05v33vv40', 'no_lang_code', 1, 'https://ror.org/05v33vv40 Cerebrotech Medical Systems (United States)'),
(79918, 'https://ror.org/0431fz439', 'es', 1, 'https://ror.org/0431fz439 Asociación Colombiana de Infectología'),
(79919, 'https://ror.org/04hnevr92', 'en', 1, 'https://ror.org/04hnevr92 American Spinal Injury Association'),
(79920, 'https://ror.org/02e4qbj88', 'en', 1, 'https://ror.org/02e4qbj88 National Defense Medical College é˜²č”›ēœé˜²č”›åŒ»ē§‘å¤§å­¦ę ”'),
(79921, 'https://ror.org/02pxpz754', 'en', 1, 'https://ror.org/02pxpz754 Memphis Zoo'),
(79922, 'https://ror.org/011em6227', 'en', 1, 'https://ror.org/011em6227 College of Optometrists'),
(79923, 'https://ror.org/00t65nv54', 'en', 1, 'https://ror.org/00t65nv54 Faraday Institute for Science and Religion'),
(79924, 'https://ror.org/038n5s612', 'en', 1, 'https://ror.org/038n5s612 Canadian Public Health Association'),
(79925, 'https://ror.org/03ch14951', 'en', 1, 'https://ror.org/03ch14951 Ogasawara Foundation for the Promotion of Science and Engineering å…¬ē›Šč²”å›£ę³•äŗŗ å°ē¬ åŽŸē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(79926, 'https://ror.org/016ex3g83', 'en', 1, 'https://ror.org/016ex3g83 American Institute of Biological Sciences'),
(79927, 'https://ror.org/02swff503', 'en', 1, 'https://ror.org/02swff503 Ahmedabad University અમદાવાદ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(79928, 'https://ror.org/04z746g28', 'en', 1, 'https://ror.org/04z746g28 Minnesota Academy of Science'),
(79929, 'https://ror.org/05f8qcz72', 'fr', 1, 'https://ror.org/05f8qcz72 Institut Agronomique et VƩtƩrinaire Hassan II'),
(79930, 'https://ror.org/01bn0n770', 'en', 1, 'https://ror.org/01bn0n770 Australasian Society for Infectious Diseases'),
(79931, 'https://ror.org/016bgq349', 'en', 1, 'https://ror.org/016bgq349 National Institute of Information and Communications Technology ęƒ…å ±é€šäæ”ē ”ē©¶ę©Ÿę§‹'),
(79932, 'https://ror.org/0101kry21', 'en', 1, 'https://ror.org/0101kry21 Allegheny Health Network'),
(79933, 'https://ror.org/040gec961', 'en', 1, 'https://ror.org/040gec961 Government College University, Lahore ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ کالج Ł„Ų§ŪŁˆŲ± ąØ—ą©ŒąØ°ąØ®ąØæą©°ąØŸ ąØ•ąØ¾ąØ²ąØœ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(79934, 'https://ror.org/03net5943', 'en', 1, 'https://ror.org/03net5943 Northeast Petroleum University äøœåŒ—ēŸ³ę²¹å¤§å­¦'),
(79935, 'https://ror.org/020prvv72', 'en', 1, 'https://ror.org/020prvv72 Academic Pediatric Association'),
(79936, 'https://ror.org/056ef9489', 'en', 1, 'https://ror.org/056ef9489 Qilu Hospital of Shandong University'),
(79937, 'https://ror.org/05jme6y84', 'en', 1, 'https://ror.org/05jme6y84 University of Social Welfare and Rehabilitation Sciences دانؓگاه Ų¹Ł„ŁˆŁ… ŲØŁ‡Ų²ŪŒŲ³ŲŖŪŒ و ŲŖŁˆŲ§Ł†ŲØŲ®Ų“ŪŒ'),
(79938, 'https://ror.org/04166ws88', 'en', 1, 'https://ror.org/04166ws88 Shanghai Municipal Commission of Economy and Informatization äøŠęµ·åø‚ē»ęµŽå’Œäæ”ęÆåŒ–å§”å‘˜ä¼š'),
(79939, 'https://ror.org/036v9ey29', 'en', 1, 'https://ror.org/036v9ey29 Association of Community Cancer Centers'),
(79940, 'https://ror.org/00vp58v14', 'en', 1, 'https://ror.org/00vp58v14 American Society of Agricultural and Biological Engineers'),
(79941, 'https://ror.org/00rfash91', 'en', 1, 'https://ror.org/00rfash91 Polar Knowledge Canada'),
(79942, 'https://ror.org/05wxfpw56', 'en', 1, 'https://ror.org/05wxfpw56 Orthopaedic Research Foundation'),
(79943, 'https://ror.org/02y984316', 'en', 1, 'https://ror.org/02y984316 European Society for Clinical Nutrition and Metabolism'),
(79944, 'https://ror.org/04a1r5z94', 'en', 1, 'https://ror.org/04a1r5z94 Hashemite University الجامعة Ų§Ł„Ł‡Ų§Ų“Ł…ŁŠŲ©'),
(79945, 'https://ror.org/03dkvy735', 'en', 1, 'https://ror.org/03dkvy735 New York Medical College'),
(79946, 'https://ror.org/01173vs27', 'en', 1, 'https://ror.org/01173vs27 University of Chittagong ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(79947, 'https://ror.org/055avk103', 'en', 1, 'https://ror.org/055avk103 Harvard Global Health Institute'),
(79948, 'https://ror.org/01g9hkj35', 'en', 1, 'https://ror.org/01g9hkj35 Guangdong Academy of Sciences å¹æäøœēœē§‘å­¦é™¢'),
(79949, 'https://ror.org/021h56y19', 'en', 1, 'https://ror.org/021h56y19 California Air Resources Board Junta de Recursos del Aire de California'),
(79950, 'https://ror.org/03zj2rn70', 'en', 1, 'https://ror.org/03zj2rn70 Hunan Institute of Engineering ę¹–å—å·„ēØ‹å­¦é™¢'),
(79951, 'https://ror.org/051qn8h41', 'en', 1, 'https://ror.org/051qn8h41 Ilia State University Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ильи ილიაე įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(79952, 'https://ror.org/003v97827', 'en', 1, 'https://ror.org/003v97827 Karst Waters Institute'),
(79953, 'https://ror.org/006bmx089', 'en', 1, 'https://ror.org/006bmx089 University of Southern Indiana UniversitƩ de l''indiana du sud'),
(79954, 'https://ror.org/02fm3sv87', 'en', 1, 'https://ror.org/02fm3sv87 Office of the National Coordinator for Health Information Technology'),
(79955, 'https://ror.org/02wz95e76', 'en', 1, 'https://ror.org/02wz95e76 Taiwan Clinical Oncology Research Foundation č²”åœ˜ę³•äŗŗå°ē£ē™Œē—‡č‡ØåŗŠē ”ē©¶ē™¼å±•åŸŗé‡‘ęœƒ'),
(79956, 'https://ror.org/00wq1a296', 'en', 1, 'https://ror.org/00wq1a296 American Institute for Contemporary German Studies');
INSERT INTO `rors` VALUES
(79957, 'https://ror.org/05tngxm14', 'en', 1, 'https://ror.org/05tngxm14 National Supercomputing Center of Tianjin å›½å®¶č¶…ēŗ§č®”ē®—å¤©ę“„äø­åæƒ'),
(79958, 'https://ror.org/02njz9p87', 'en', 1, 'https://ror.org/02njz9p87 Fuyang Normal University é˜œé˜³åøˆčŒƒå­¦é™¢'),
(79959, 'https://ror.org/00gdzqq03', 'en', 1, 'https://ror.org/00gdzqq03 American Society of Addiction Medicine'),
(79960, 'https://ror.org/02b9aym09', 'en', 1, 'https://ror.org/02b9aym09 Gallaudet University'),
(79961, 'https://ror.org/04r95dm95', 'en', 1, 'https://ror.org/04r95dm95 British Institute at Ankara'),
(79962, 'https://ror.org/02han2n82', 'en', 1, 'https://ror.org/02han2n82 Biola University'),
(79963, 'https://ror.org/04ee58018', 'es', 1, 'https://ror.org/04ee58018 Universidad JuÔrez Autónoma de Tabasco'),
(79964, 'https://ror.org/03f7j3221', 'en', 1, 'https://ror.org/03f7j3221 European League Against Rheumatism'),
(79965, 'https://ror.org/01h900f45', 'en', 1, 'https://ror.org/01h900f45 Petroleum Technology Alliance Canada'),
(79966, 'https://ror.org/02y30tw62', 'en', 1, 'https://ror.org/02y30tw62 Chronic Disease Research Foundation'),
(79967, 'https://ror.org/00f8adc72', 'en', 1, 'https://ror.org/00f8adc72 Cancer Focus Northern Ireland'),
(79968, 'https://ror.org/04g9wch13', 'en', 1, 'https://ror.org/04g9wch13 Yale-NUS College 耶魯-ę–°åŠ å”åœ‹ē«‹å¤§å­øå­øé™¢'),
(79969, 'https://ror.org/008cac740', 'de', 1, 'https://ror.org/008cac740 Rhƶn-Klinikum'),
(79970, 'https://ror.org/02z1vqm45', 'en', 1, 'https://ror.org/02z1vqm45 Peking University First Hospital'),
(79971, 'https://ror.org/044rgx723', 'en', 1, 'https://ror.org/044rgx723 Inner Mongolia University of Science and Technology å†…č’™å¤ē§‘ęŠ€å¤§å­¦'),
(79972, 'https://ror.org/03ekhbz91', 'en', 1, 'https://ror.org/03ekhbz91 Renmin Hospital of Wuhan University'),
(79973, 'https://ror.org/04mrh0826', 'en', 1, 'https://ror.org/04mrh0826 Australasian College of Dermatologists'),
(79974, 'https://ror.org/00jgcnx83', 'en', 1, 'https://ror.org/00jgcnx83 Nuclear Materials Authority'),
(79975, 'https://ror.org/04vd28p53', 'it', 1, 'https://ror.org/04vd28p53 UniversitƠ Kore di Enna UniversitƠ degli Studi di Enna Kore UniversitƩ kore d''enna'),
(79976, 'https://ror.org/01y6jsg53', 'en', 1, 'https://ror.org/01y6jsg53 Tennessee Valley Authority'),
(79977, 'https://ror.org/02m9vrb24', 'en', 1, 'https://ror.org/02m9vrb24 Hunan University of Science and Technology ę¹–å—ē§‘ęŠ€å¤§å­¦'),
(79978, 'https://ror.org/05retmr68', 'en', 1, 'https://ror.org/05retmr68 European Consortium for Political Research'),
(79979, 'https://ror.org/00fpz4c36', 'en', 1, 'https://ror.org/00fpz4c36 Plymouth State University UniversitĆ© d''Ɖtat de plymouth'),
(79980, 'https://ror.org/03kgp0q12', 'en', 1, 'https://ror.org/03kgp0q12 Biomedical Research Institute of New Mexico'),
(79981, 'https://ror.org/00xyb8f56', 'en', 1, 'https://ror.org/00xyb8f56 Massachusetts Medical Society'),
(79982, 'https://ror.org/021hkf372', 'en', 1, 'https://ror.org/021hkf372 British Cardiovascular Society'),
(79983, 'https://ror.org/02mkv8r24', 'en', 1, 'https://ror.org/02mkv8r24 Agence EuropƩenne de DƩfense European Defence Agency Europees Defensieagentschap EuropƤische Verteidigungsagentur'),
(79984, 'https://ror.org/04wcf8366', 'en', 1, 'https://ror.org/04wcf8366 Georgia Department of Public Health'),
(79985, 'https://ror.org/00we5dk78', 'en', 1, 'https://ror.org/00we5dk78 American Society of Ichthyologists and Herpetologists'),
(79986, 'https://ror.org/04qg9vz18', 'en', 1, 'https://ror.org/04qg9vz18 British Film Institute'),
(79987, 'https://ror.org/05xsxgs79', 'en', 1, 'https://ror.org/05xsxgs79 Arnold Arboretum'),
(79988, 'https://ror.org/01m0qe785', 'en', 1, 'https://ror.org/01m0qe785 Education Development Trust'),
(79989, 'https://ror.org/011nkrc70', 'en', 1, 'https://ror.org/011nkrc70 American Indian College Fund'),
(79990, 'https://ror.org/04rx35w12', 'fr', 1, 'https://ror.org/04rx35w12 Conseil RƩgional de Picardie'),
(79991, 'https://ror.org/05d84mm26', 'no_lang_code', 1, 'https://ror.org/05d84mm26 Neurocrine Biosciences (United States)'),
(79992, 'https://ror.org/03rj92e31', 'en', 1, 'https://ror.org/03rj92e31 Fayetteville State University UniversitĆ© d''Ɖtat de fayetteville'),
(79993, 'https://ror.org/04zet5t12', 'en', 1, 'https://ror.org/04zet5t12 Bwrdd lechyd Prifysgol Bae Abertawe Swansea Bay University Health Board'),
(79994, 'https://ror.org/01gb3y148', 'en', 1, 'https://ror.org/01gb3y148 Guangdong Provincial Hospital of Traditional Chinese Medicine å¹æäøœēœäø­åŒ»é™¢'),
(79995, 'https://ror.org/036wrr275', 'no_lang_code', 1, 'https://ror.org/036wrr275 Occidental Petroleum (United States)'),
(79996, 'https://ror.org/00t8bew53', 'no_lang_code', 1, 'https://ror.org/00t8bew53 Ionis Pharmaceuticals (United States)'),
(79997, 'https://ror.org/01xe5fb92', 'en', 1, 'https://ror.org/01xe5fb92 University of Gujrat جامعہ ŚÆŲ¬Ų±Ų§ŲŖ'),
(79998, 'https://ror.org/00q7fqf35', 'en', 1, 'https://ror.org/00q7fqf35 California NanoSystems Institute'),
(79999, 'https://ror.org/00d6bdx78', 'en', 1, 'https://ror.org/00d6bdx78 Ontario Society of Occupational Therapists'),
(80000, 'https://ror.org/017nq0d63', 'en', 1, 'https://ror.org/017nq0d63 Alexander S Onassis Public Benefit Foundation ĪšĪæĪ¹Ī½Ļ‰Ļ†ĪµĪ»Ī­Ļ‚ ΙΓρυμα ΑλεξανΓρου Ωνάση'),
(80001, 'https://ror.org/03ek23472', 'en', 1, 'https://ror.org/03ek23472 Huaibei Normal University ę·®åŒ—åøˆčŒƒå¤§å­¦'),
(80002, 'https://ror.org/007h4qe29', 'en', 1, 'https://ror.org/007h4qe29 Tri-Service General Hospital äø‰č»ēø½é†«é™¢'),
(80003, 'https://ror.org/01tdzxm38', 'en', 1, 'https://ror.org/01tdzxm38 India Meteorological Department'),
(80004, 'https://ror.org/00dw1q752', 'en', 1, 'https://ror.org/00dw1q752 Experimental Psychology Society'),
(80005, 'https://ror.org/00zp3kj13', 'en', 1, 'https://ror.org/00zp3kj13 Shanghai Municipal Human Resources and Social Security Bureau äøŠęµ·åø‚äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœå±€'),
(80006, 'https://ror.org/03tghng59', 'en', 1, 'https://ror.org/03tghng59 Instituto de Investigación del Suroeste Southwest Research Institute'),
(80007, 'https://ror.org/02hhwwz98', 'en', 1, 'https://ror.org/02hhwwz98 Tsinghua–Berkeley Shenzhen Institute ęø…åŽå¤§å­¦ä¼Æå…‹åˆ©åˆ†ę ”ę·±åœ³ē ”ē©¶é™¢'),
(80008, 'https://ror.org/05jqb8z52', 'en', 1, 'https://ror.org/05jqb8z52 American Society on Aging'),
(80009, 'https://ror.org/014nzt826', 'en', 1, 'https://ror.org/014nzt826 Endeavour College of Natural Health'),
(80010, 'https://ror.org/052ysct21', 'no_lang_code', 1, 'https://ror.org/052ysct21 CymaBay Therapeutics (United States)'),
(80011, 'https://ror.org/036tvvp06', 'en', 1, 'https://ror.org/036tvvp06 University Grants Commission Sri Lanka ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®• ą®®ą®¾ą®©ą®æą®Æą®™ąÆą®•ą®³ąÆ ą®†ą®£ąÆˆą®•ąÆą®•ąÆą®“ąÆ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ ą¶“ą·Šā€ą¶»ą¶­ą·’ą¶“ą·ą¶Æą¶± ą¶šą·œą¶øą·’ą·‚ą¶±ą·Š ą·ƒą¶·ą·ą·€ - ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą·'),
(80012, 'https://ror.org/049v69k10', 'en', 1, 'https://ror.org/049v69k10 Rowan University'),
(80013, 'https://ror.org/02gsmy581', 'en', 1, 'https://ror.org/02gsmy581 Bone Cancer Research Trust'),
(80014, 'https://ror.org/05gb9dv72', 'en', 1, 'https://ror.org/05gb9dv72 Pakistan Academy of Sciences پاکستان اكيڈ مى ﺁف سائنسز'),
(80015, 'https://ror.org/02drkkh02', 'es', 1, 'https://ror.org/02drkkh02 Universidad Autónoma de Occidente'),
(80016, 'https://ror.org/01b9n8m42', 'no_lang_code', 1, 'https://ror.org/01b9n8m42 Tata Consultancy Services (India)'),
(80017, 'https://ror.org/02ef40e75', 'en', 1, 'https://ror.org/02ef40e75 Royal Australasian College of Surgeons'),
(80018, 'https://ror.org/01pw5qp76', 'en', 1, 'https://ror.org/01pw5qp76 Anhui Academy of Agricultural Sciences å®‰å¾½ēœå†œē§‘é™¢'),
(80019, 'https://ror.org/05yadcm11', 'en', 1, 'https://ror.org/05yadcm11 Institution of Occupational Safety and Health'),
(80020, 'https://ror.org/01mp52y34', 'en', 1, 'https://ror.org/01mp52y34 Heising-Simons Foundation'),
(80021, 'https://ror.org/03q75vf28', 'en', 1, 'https://ror.org/03q75vf28 Toyota Physical and Chemical Research Institute č±Šē”°ē†åŒ–å­¦ē ”ē©¶ę‰€čØ­ē«‹'),
(80022, 'https://ror.org/022ght635', 'en', 1, 'https://ror.org/022ght635 Forest History Society'),
(80023, 'https://ror.org/03wwr4r78', 'en', 1, 'https://ror.org/03wwr4r78 Hunan Provincial People''s Hospital ę¹–å—ēœäŗŗę°‘åŒ»é™¢'),
(80024, 'https://ror.org/02858hr49', 'en', 1, 'https://ror.org/02858hr49 American Academy of Ophthalmology'),
(80025, 'https://ror.org/00c0zxf82', 'en', 1, 'https://ror.org/00c0zxf82 National Wildlife Federation'),
(80026, 'https://ror.org/04svesj94', 'en', 1, 'https://ror.org/04svesj94 Chartered Institute of Architectural Technologists'),
(80027, 'https://ror.org/0498pcx51', 'en', 1, 'https://ror.org/0498pcx51 Taylor''s University'),
(80028, 'https://ror.org/02afb0t44', 'en', 1, 'https://ror.org/02afb0t44 Texas Academy of Science'),
(80029, 'https://ror.org/04zgj7914', 'en', 1, 'https://ror.org/04zgj7914 State Key Laboratory of Food Science and Technology é£Ÿå“ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(80030, 'https://ror.org/01zewfb16', 'en', 1, 'https://ror.org/01zewfb16 Environment Agency'),
(80031, 'https://ror.org/018y70h07', 'en', 1, 'https://ror.org/018y70h07 Physicians Committee for Responsible Medicine'),
(80032, 'https://ror.org/04cbsc827', 'no_lang_code', 1, 'https://ror.org/04cbsc827 Terrafix Geosynthetics (Canada)'),
(80033, 'https://ror.org/04r7rxc53', 'en', 1, 'https://ror.org/04r7rxc53 Centre for Environment, Fisheries and Aquaculture Science'),
(80034, 'https://ror.org/00jfgrn87', 'en', 1, 'https://ror.org/00jfgrn87 Children''s Investment Fund Foundation'),
(80035, 'https://ror.org/059ryjv25', 'en', 1, 'https://ror.org/059ryjv25 Chung Shan Medical University'),
(80036, 'https://ror.org/0397b2492', 'en', 1, 'https://ror.org/0397b2492 North Carolina Department of Agriculture and Consumer Services'),
(80037, 'https://ror.org/00xddhq60', 'no_lang_code', 1, 'https://ror.org/00xddhq60 Al-Ahliyya Amman University Ų¬Ų§Ł…Ų¹Ų© عمان Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(80038, 'https://ror.org/04n4q2213', 'no_lang_code', 1, 'https://ror.org/04n4q2213 Basilea Pharmaceutica (Switzerland)'),
(80039, 'https://ror.org/0137n4m74', 'en', 1, 'https://ror.org/0137n4m74 Tuskegee University'),
(80040, 'https://ror.org/023kjn321', 'en', 1, 'https://ror.org/023kjn321 Qazvin Islamic Azad University دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł‚Ų²ŁˆŪŒŁ†'),
(80041, 'https://ror.org/028sbah75', 'en', 1, 'https://ror.org/028sbah75 European Society of Human Reproduction and Embryology'),
(80042, 'https://ror.org/052bx8q98', 'en', 1, 'https://ror.org/052bx8q98 Nazarbayev University ŠŠ°Š·Š°Ń€Š±Š°ŠµŠ² Университет ŠŠ°Š·Š°Ń€Š±Š°ŠµŠ² Университеті'),
(80043, 'https://ror.org/00b31g692', 'en', 1, 'https://ror.org/00b31g692 Barts Health NHS Trust'),
(80044, 'https://ror.org/0119q5s74', 'en', 1, 'https://ror.org/0119q5s74 Bangladesh Academy of Sciences'),
(80045, 'https://ror.org/016xje988', 'en', 1, 'https://ror.org/016xje988 University of Namibia UniversitƤt von Namibia'),
(80046, 'https://ror.org/03wa91e11', 'en', 1, 'https://ror.org/03wa91e11 European Academy of Allergy and Clinical Immunology'),
(80047, 'https://ror.org/00ntzjs22', 'en', 1, 'https://ror.org/00ntzjs22 Chartered Institution of Building Services Engineers'),
(80048, 'https://ror.org/00v5gqm66', 'en', 1, 'https://ror.org/00v5gqm66 China Institute of Atomic Energy äø­å›½åŽŸå­čƒ½ē§‘å­¦ē ”ē©¶é™¢'),
(80049, 'https://ror.org/012tqgb57', 'en', 1, 'https://ror.org/012tqgb57 Ryukoku University é¾č°·å¤§å­¦'),
(80050, 'https://ror.org/0391zw446', 'en', 1, 'https://ror.org/0391zw446 China University of Labor Relations äø­å›½åŠ³åŠØå…³ē³»å­¦é™¢'),
(80051, 'https://ror.org/03hy6ga56', 'en', 1, 'https://ror.org/03hy6ga56 China International Medical Foundation'),
(80052, 'https://ror.org/05tjeyz47', 'en', 1, 'https://ror.org/05tjeyz47 Energy Technologies Institute'),
(80053, 'https://ror.org/0047bvr32', 'en', 1, 'https://ror.org/0047bvr32 National Security Agency'),
(80054, 'https://ror.org/02620c122', 'no_lang_code', 1, 'https://ror.org/02620c122 Electro Scientific Industries (United States)'),
(80055, 'https://ror.org/05gpkvs36', 'en', 1, 'https://ror.org/05gpkvs36 Australian Veterinary Association'),
(80056, 'https://ror.org/05pny7s12', 'en', 1, 'https://ror.org/05pny7s12 Khulna University খুলনা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(80057, 'https://ror.org/0574eex11', 'en', 1, 'https://ror.org/0574eex11 Temasek Life Sciences Laboratory'),
(80058, 'https://ror.org/03tte2338', 'en', 1, 'https://ror.org/03tte2338 Mississippi Academy of Sciences'),
(80059, 'https://ror.org/05k0zzt52', 'en', 1, 'https://ror.org/05k0zzt52 State Fund for Fundamental Research of Ukraine'),
(80060, 'https://ror.org/03pkp5n34', 'fi', 1, 'https://ror.org/03pkp5n34 Aarne Koskelon SƤƤtiƶ'),
(80061, 'https://ror.org/048gmay44', 'en', 1, 'https://ror.org/048gmay44 University of the Sciences UniversitƩ des sciences Ơ philadelphie'),
(80062, 'https://ror.org/00pjgxh97', 'de', 1, 'https://ror.org/00pjgxh97 Universitätsklinikum Tübingen'),
(80063, 'https://ror.org/0393rf026', 'en', 1, 'https://ror.org/0393rf026 Pancreatic Cancer Canada Foundation'),
(80064, 'https://ror.org/05836pk12', 'en', 1, 'https://ror.org/05836pk12 Assam Agricultural University असम ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ অসম ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(80065, 'https://ror.org/04ez6qq41', 'en', 1, 'https://ror.org/04ez6qq41 Austin Medical Research Foundation'),
(80066, 'https://ror.org/05vjq0r17', 'en', 1, 'https://ror.org/05vjq0r17 Okayama Foundation for Science and Technology å…¬ē›Šč²”å›£ę³•äŗŗ 岔山巄学振興会'),
(80067, 'https://ror.org/026gatw61', 'en', 1, 'https://ror.org/026gatw61 International Federation of Library Associations and Institutions'),
(80068, 'https://ror.org/02ccba128', 'en', 1, 'https://ror.org/02ccba128 Adama Science and Technology University įŠ į‹³įˆ› įˆ³į‹­įŠ•įˆµįŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(80069, 'https://ror.org/05qx9yv62', 'en', 1, 'https://ror.org/05qx9yv62 Zonta International Foundation'),
(80070, 'https://ror.org/02n455404', 'en', 1, 'https://ror.org/02n455404 University of Central Oklahoma UniversitƩ du centre de l''oklahoma'),
(80071, 'https://ror.org/04jwepe89', 'en', 1, 'https://ror.org/04jwepe89 Council for British Archaeology'),
(80072, 'https://ror.org/04bpyvy69', 'en', 1, 'https://ror.org/04bpyvy69 Mekelle University įˆ˜į‰įˆˆ į‹©įŠ’į‰Øįˆ­įˆ²į‰² įˆ˜į‰įˆˆ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(80073, 'https://ror.org/032q98j12', 'no_lang_code', 1, 'https://ror.org/032q98j12 Wikimedia Foundation'),
(80074, 'https://ror.org/012sfmg27', 'en', 1, 'https://ror.org/012sfmg27 Anhui Sanlian University 安徽三联学院'),
(80075, 'https://ror.org/05755j256', 'en', 1, 'https://ror.org/05755j256 Henry Moore Foundation'),
(80076, 'https://ror.org/002y4pe44', 'en', 1, 'https://ror.org/002y4pe44 East Siberia State University of Technology and Management Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Восточно-Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ технологий Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(80077, 'https://ror.org/00vs06289', 'en', 1, 'https://ror.org/00vs06289 European Physical Society'),
(80078, 'https://ror.org/02bv3zr67', 'en', 1, 'https://ror.org/02bv3zr67 Homi Bhabha National Institute ą¤¹ą„‹ą¤®ą„€ भाभा ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ஹோமி பாபா ą®Øą®æą®•ą®°ąÆ ą®Øą®æą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(80079, 'https://ror.org/012xdha97', 'en', 1, 'https://ror.org/012xdha97 University of Malakand جامعہ Ł…Ų§Ł„Ų§Ś©Ł†Śˆ'),
(80080, 'https://ror.org/01dzed356', 'en', 1, 'https://ror.org/01dzed356 Hunan Agricultural University ę¹–å—å†œäøšå¤§å­¦'),
(80081, 'https://ror.org/04r72en83', 'en', 1, 'https://ror.org/04r72en83 University of International Relations 国际关系学院'),
(80082, 'https://ror.org/04j2yny21', 'en', 1, 'https://ror.org/04j2yny21 Glasgow Centre for Population Health'),
(80083, 'https://ror.org/04eq9g543', 'en', 1, 'https://ror.org/04eq9g543 Pakistan Agricultural Research Council'),
(80084, 'https://ror.org/04bcrs686', 'en', 1, 'https://ror.org/04bcrs686 Japan Student Services Organization ę—„ęœ¬å­¦ē”Ÿę”Æę“ę©Ÿę§‹'),
(80085, 'https://ror.org/043fs9135', 'es', 1, 'https://ror.org/043fs9135 Agencia EspaƱola de Medicamentos y Productos Sanitarios'),
(80086, 'https://ror.org/01tjgw469', 'en', 1, 'https://ror.org/01tjgw469 Gannan Medical University čµ£å—åŒ»å­¦é™¢'),
(80087, 'https://ror.org/03y54e085', 'en', 1, 'https://ror.org/03y54e085 Ecological Society of America'),
(80088, 'https://ror.org/04c6sc363', 'fr', 1, 'https://ror.org/04c6sc363 SociƩtƩ Nationale FranƧaise de Gastro-EntƩrologie'),
(80089, 'https://ror.org/045k2ma45', 'en', 1, 'https://ror.org/045k2ma45 Food Safety and Inspection Service'),
(80090, 'https://ror.org/00f2kew86', 'pt', 1, 'https://ror.org/00f2kew86 Hospital de CĆ¢ncer de Barretos'),
(80091, 'https://ror.org/01963ay88', 'en', 1, 'https://ror.org/01963ay88 Hawaii Pacific University'),
(80092, 'https://ror.org/02vk0sm33', 'en', 1, 'https://ror.org/02vk0sm33 Gas Technology Institute'),
(80093, 'https://ror.org/04ptv2b23', 'en', 1, 'https://ror.org/04ptv2b23 American Academy of Environmental Engineers and Scientists'),
(80094, 'https://ror.org/03r1hk592', 'en', 1, 'https://ror.org/03r1hk592 Baker Foundation'),
(80095, 'https://ror.org/02q4z9x50', 'de', 1, 'https://ror.org/02q4z9x50 Gesellschaft für Thrombose- und Hämostaseforschung'),
(80096, 'https://ror.org/01c82hv29', 'en', 1, 'https://ror.org/01c82hv29 Sigma Theta Tau International'),
(80097, 'https://ror.org/0415tqb32', 'en', 1, 'https://ror.org/0415tqb32 Marine Technology Society'),
(80098, 'https://ror.org/05rs3pv16', 'en', 1, 'https://ror.org/05rs3pv16 Chongqing Three Gorges University é‡åŗ†äø‰å³”å­¦é™¢'),
(80099, 'https://ror.org/03hre7f61', 'es', 1, 'https://ror.org/03hre7f61 Hospital Regional de Alta Especialidad del BajĆ­o'),
(80100, 'https://ror.org/05167c961', 'en', 1, 'https://ror.org/05167c961 Western University of Health Sciences'),
(80101, 'https://ror.org/05skgxb48', 'en', 1, 'https://ror.org/05skgxb48 Arab International University Ō±Ö€Õ”Õ¢Õ”ÕÆÕ”Õ¶ Õ“Õ«Õ»Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© الخاصة'),
(80102, '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'),
(80103, 'https://ror.org/05vtdph75', 'en', 1, 'https://ror.org/05vtdph75 Chartered Institute of Building'),
(80104, 'https://ror.org/04gy6pv35', 'en', 1, 'https://ror.org/04gy6pv35 Chiayi Chang Gung Memorial Hospital'),
(80105, 'https://ror.org/00863x694', 'en', 1, 'https://ror.org/00863x694 Nepal Academy of Science and Technology'),
(80106, 'https://ror.org/02f1mqt91', 'de', 1, 'https://ror.org/02f1mqt91 Deutsches Historisches Institut Paris German Historical Institute Paris Institut Historique Allemand'),
(80107, 'https://ror.org/02an13226', 'en', 1, 'https://ror.org/02an13226 International Trade Administration'),
(80108, 'https://ror.org/04h7e4549', 'en', 1, 'https://ror.org/04h7e4549 American Neurological Association'),
(80109, 'https://ror.org/0222qrf24', 'en', 1, 'https://ror.org/0222qrf24 European Society of Intensive Care Medicine SociƩtƩ EuropƩenne de MƩdecine de Soins Intensifs'),
(80110, 'https://ror.org/03rq9c547', 'en', 1, 'https://ror.org/03rq9c547 Akademia Wychowania Fizycznego i Sportu im. Jędrzeja Śniadeckiego w Gdańsku Gdansk University of Physical Education and Sport'),
(80111, 'https://ror.org/002nf6z37', 'en', 1, 'https://ror.org/002nf6z37 Columbus State University'),
(80112, 'https://ror.org/05s0pme69', 'no_lang_code', 1, 'https://ror.org/05s0pme69 AMAG Pharmaceuticals (United States)'),
(80113, 'https://ror.org/049zppa02', 'en', 1, 'https://ror.org/049zppa02 Defense Security Cooperation Agency'),
(80114, 'https://ror.org/05eynd241', 'en', 1, 'https://ror.org/05eynd241 Auburn University at Montgomery'),
(80115, 'https://ror.org/030bhbq32', 'no_lang_code', 1, 'https://ror.org/030bhbq32 Acadia Pharmaceuticals (United States)'),
(80116, 'https://ror.org/02fha3693', 'en', 1, 'https://ror.org/02fha3693 University Hospitals of Leicester NHS Trust'),
(80117, 'https://ror.org/017mv9d49', 'en', 1, 'https://ror.org/017mv9d49 Atlantic States Marine Fisheries Commission'),
(80118, 'https://ror.org/05e1f3f77', 'en', 1, 'https://ror.org/05e1f3f77 Central Research Institute for Dryland Agriculture ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¶ą„ą¤·ą„ą¤• ą¤­ą„‚ą¤®ą¤æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(80119, 'https://ror.org/02jpqrb52', 'en', 1, 'https://ror.org/02jpqrb52 Orthopaedic Trauma Association'),
(80120, 'https://ror.org/038avdt50', 'en', 1, 'https://ror.org/038avdt50 Xi''an University of Technology 脿安理巄大学'),
(80121, 'https://ror.org/01jhpwy79', 'en', 1, 'https://ror.org/01jhpwy79 Ebonyi State University YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ įŗøĢ€bį»ĢnyƬ'),
(80122, 'https://ror.org/04qjh2h11', 'en', 1, 'https://ror.org/04qjh2h11 Xinjiang Agricultural University ę–°ē–†å†œäøšå¤§å­¦'),
(80123, 'https://ror.org/05nry7t92', 'en', 1, 'https://ror.org/05nry7t92 Association of Public and Land-grant Universities'),
(80124, 'https://ror.org/01dwyxv59', 'en', 1, 'https://ror.org/01dwyxv59 English Institute of Sport'),
(80125, 'https://ror.org/02eqe7f55', 'en', 1, 'https://ror.org/02eqe7f55 Avon Foundation for Women'),
(80126, 'https://ror.org/04q0r6m34', 'es', 1, 'https://ror.org/04q0r6m34 Universidad Autónoma de la Ciudad de México'),
(80127, 'https://ror.org/02x66tk73', 'en', 1, 'https://ror.org/02x66tk73 Egypt-Japan University of Science and Technology الجامعة Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ų§Ł„ŁŠŲ§ŲØŲ§Ł†ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ā€Ž'),
(80128, 'https://ror.org/00hgwte81', 'en', 1, 'https://ror.org/00hgwte81 Oregon Nanoscience and Microtechnologies Institute'),
(80129, 'https://ror.org/01cpwsn91', 'en', 1, 'https://ror.org/01cpwsn91 American Leprosy Missions'),
(80130, 'https://ror.org/00rcqs978', 'en', 1, 'https://ror.org/00rcqs978 Pennsylvania Department of Agriculture'),
(80131, 'https://ror.org/030jxf285', 'en', 1, 'https://ror.org/030jxf285 Heilongjiang Bayi Agricultural University'),
(80132, 'https://ror.org/01s1hm369', 'en', 1, 'https://ror.org/01s1hm369 Nippon Dental University ę—„ęœ¬ę­Æē§‘å¤§å­¦'),
(80133, 'https://ror.org/038bsm707', 'no_lang_code', 1, 'https://ror.org/038bsm707 Digital Preservation Coalition (United Kingdom)'),
(80134, 'https://ror.org/030kw0b65', 'es', 1, 'https://ror.org/030kw0b65 Universidad de MedellĆ­n'),
(80135, 'https://ror.org/05yaa9j15', 'en', 1, 'https://ror.org/05yaa9j15 Hubei Provincial Department of Education'),
(80136, 'https://ror.org/04fp9z389', 'no_lang_code', 1, 'https://ror.org/04fp9z389 Cholangiocarcinoma Foundation'),
(80137, 'https://ror.org/005vg3k81', 'en', 1, 'https://ror.org/005vg3k81 North American Society for Pediatric Gastroenterology, Hepatology, and Nutrition'),
(80138, 'https://ror.org/027z64205', 'en', 1, 'https://ror.org/027z64205 Open University of Israel'),
(80139, 'https://ror.org/00t10qd56', 'en', 1, 'https://ror.org/00t10qd56 Michigan Department of Natural Resources'),
(80140, 'https://ror.org/016yezh07', 'en', 1, 'https://ror.org/016yezh07 Longhua Hospital Shanghai University of Traditional Chinese Medicine äøŠęµ·äø­åŒ»čÆå¤§å­¦é™„å±žé¾™åŽåŒ»é™¢'),
(80141, 'https://ror.org/04zqj3g76', 'en', 1, 'https://ror.org/04zqj3g76 First Nations University of Canada'),
(80142, 'https://ror.org/04z82ry91', 'en', 1, 'https://ror.org/04z82ry91 National Electronics and Computer Technology Center'),
(80143, 'https://ror.org/035sqd961', 'en', 1, 'https://ror.org/035sqd961 Stanley Foundation'),
(80144, 'https://ror.org/02y707x62', 'en', 1, 'https://ror.org/02y707x62 Ethiopian Public Health Association'),
(80145, 'https://ror.org/04kq7tf63', 'en', 1, 'https://ror.org/04kq7tf63 Mount Kenya University'),
(80146, 'https://ror.org/020rkr389', 'en', 1, 'https://ror.org/020rkr389 Guangxi Academy of Agricultural Science å¹æč„æå£®ę—č‡Ŗę²»åŒŗå†œäøšē§‘å­¦é™¢'),
(80147, 'https://ror.org/04bk7v425', 'en', 1, 'https://ror.org/04bk7v425 Mercer University UniversitƩ de Mercer'),
(80148, 'https://ror.org/03fb3j069', 'en', 1, 'https://ror.org/03fb3j069 Illinois State Academy of Science'),
(80149, 'https://ror.org/05jg5ty85', 'en', 1, 'https://ror.org/05jg5ty85 Dedan Kimathi University of Technology'),
(80150, 'https://ror.org/05x510r30', 'en', 1, 'https://ror.org/05x510r30 Guizhou Institute of Technology č“µå·žē†å·„å­¦é™¢'),
(80151, 'https://ror.org/05x3jck08', 'en', 1, 'https://ror.org/05x3jck08 University Hospitals Plymouth NHS Trust'),
(80152, 'https://ror.org/00mebz780', 'en', 1, 'https://ror.org/00mebz780 Brain Injury Association of America'),
(80153, 'https://ror.org/00g1x4v36', 'en', 1, 'https://ror.org/00g1x4v36 European Federation of Pharmaceutical Industries and Associations'),
(80154, 'https://ror.org/042fqyp44', 'en', 1, 'https://ror.org/042fqyp44 University College London Hospitals NHS Foundation Trust'),
(80155, 'https://ror.org/02vh3sc45', 'en', 1, 'https://ror.org/02vh3sc45 Dart Center for Journalism and Trauma'),
(80156, 'https://ror.org/04nd58p63', 'en', 1, 'https://ror.org/04nd58p63 Tel Aviv Sourasky Medical Center'),
(80157, 'https://ror.org/01qkvxz61', 'en', 1, 'https://ror.org/01qkvxz61 American Academy of Forensic Sciences'),
(80158, 'https://ror.org/02dvjfw95', 'en', 1, 'https://ror.org/02dvjfw95 University of Shiga Prefecture ę»‹č³€ēœŒē«‹å¤§å­¦'),
(80159, 'https://ror.org/03ahq3x51', 'en', 1, 'https://ror.org/03ahq3x51 Canadian Foundation for Pharmacy'),
(80160, 'https://ror.org/032ztsj35', 'en', 1, 'https://ror.org/032ztsj35 African Population and Health Research Center'),
(80161, 'https://ror.org/03vfp4g33', 'en', 1, 'https://ror.org/03vfp4g33 Indraprastha Institute of Information Technology Delhi اندر پرستھ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ آف Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ ą¤‡ą¤‚ą¤¦ą„ą¤°ą¤Ŗą„ą¤°ą¤øą„ą¤„ ą¤®ą¤¾ą¤¹ą¤æą¤¤ą„€ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ -ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą¤‡ą¤‚ą¤¦ą„ą¤°ą¤Ŗą„ą¤°ą¤øą„ą¤„ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą¦‡ą¦Øą§ą¦¦ą§ą¦°ą¦Ŗą§ą¦°ą¦øą§ą¦„ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ ą¦¤ą¦„ą§ą¦Æ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ -ą¦¦ą¦æą¦²ą§ą¦²ą¦æ ąØ‡ą©°ąØ¦ąØ°ąØŖą©ąØ°ąØøąØ„ ąØœąØ¾ąØ£ąØ•ąØ¾ąØ°ą©€ ąØ¤ąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ąØ‡ą©°ąØøąØŸą©€ąØšąØæąØŠąØŸ - ਦਿੱਲੀ '' ąŖˆąŖØą«ąŖ¦ą«ąŖ°ąŖŖą«ąŖ°ąŖøą«ąŖ„ માહિતી ąŖŸą«‡ąŖ•ąŖØą«‹ąŖ²ą«‹ąŖœą«€ ąŖøąŖ‚ąŖøą«ąŖ„ąŖ¾ - ąŖ¦ąŖæąŖ²ą«ąŖ¹ą«€ ą®‡ą®ØąÆą®¤ą®æą®°ą®Ŗą®æą®°ą®øąÆą®¤ą®¾ ą®¤ą®•ą®µą®²ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ ą°‡ą°‚ą°¦ą±ą°°ą°Ŗą±ą°°ą°øą±ą°„ ą°‡ą°Øą±ą°«ą°°ą±ą°®ą±‡ą°·ą°Øą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± - ą°¢ą°æą°²ą±ą°²ą±€ ą²‡ą²‚ą²¦ą³ą²°ą²Ŗą³ą²°ą²øą³ą²„ ಮಾಹಿತಿ ą²¤ą²‚ą²¤ą³ą²°ą²œą³ą²žą²¾ą²Ø ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ - ದೆಹಲಿ ą“‡ą“Øąµą“¦ąµą“°ą“Ŗąµą“°ą“øąµą“„ ą“µą“æą“µą“° ą“øą“¾ą“™ąµą“•ąµ‡ą“¤ą“æą“• ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ - ą“”ąµ†ąµ½ą“¹ą“æ'),
(80162, 'https://ror.org/033dbfk07', 'en', 1, 'https://ror.org/033dbfk07 Great Lakes Adaptive Sports Association'),
(80163, 'https://ror.org/00b93bs30', 'en', 1, 'https://ror.org/00b93bs30 American Astronomical Society'),
(80164, 'https://ror.org/00cgxnn80', 'en', 1, 'https://ror.org/00cgxnn80 Society for Mathematical Biology'),
(80165, 'https://ror.org/03d63qr59', 'en', 1, 'https://ror.org/03d63qr59 Alabama Department of Conservation and Natural Resources'),
(80166, 'https://ror.org/01pnybk10', 'en', 1, 'https://ror.org/01pnybk10 Northern Ontario Academic Medicine Association'),
(80167, 'https://ror.org/02wp9c512', 'en', 1, 'https://ror.org/02wp9c512 Association of Southeast Asian Nations'),
(80168, 'https://ror.org/00hv6g197', 'en', 1, 'https://ror.org/00hv6g197 Pacific Institute for Climate Solutions'),
(80169, 'https://ror.org/05ycxzd89', 'en', 1, 'https://ror.org/05ycxzd89 Economic Research Service'),
(80170, 'https://ror.org/01fnrgf58', 'en', 1, 'https://ror.org/01fnrgf58 Patty Brisben Foundation for Women’s Sexual Health'),
(80171, 'https://ror.org/019dkd780', 'en', 1, 'https://ror.org/019dkd780 Al-Hussein Bin Talal University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­Ų³ŁŠŁ† بن طلال'),
(80172, 'https://ror.org/03kyznd40', 'en', 1, 'https://ror.org/03kyznd40 American College of Preventive Medicine'),
(80173, 'https://ror.org/03vfpjp29', 'en', 1, 'https://ror.org/03vfpjp29 Hope International University'),
(80174, 'https://ror.org/030f73571', 'en', 1, 'https://ror.org/030f73571 Virginia Academy of Science'),
(80175, 'https://ror.org/010g9bb70', 'no_lang_code', 1, 'https://ror.org/010g9bb70 Quest Diagnostics (United States)'),
(80176, 'https://ror.org/04kj1hn59', 'en', 1, 'https://ror.org/04kj1hn59 Harvard Stem Cell Institute'),
(80177, 'https://ror.org/05hewn428', 'en', 1, 'https://ror.org/05hewn428 Drug Policy Alliance'),
(80178, 'https://ror.org/04b8x5a95', 'en', 1, 'https://ror.org/04b8x5a95 Cleveland Museum of Natural History'),
(80179, 'https://ror.org/01xcjmy57', 'it', 1, 'https://ror.org/01xcjmy57 Istituto Oncologico Veneto Veneto Institute of Oncology'),
(80180, 'https://ror.org/01vztzd79', 'en', 1, 'https://ror.org/01vztzd79 Indian Institute of Science Education and Research Mohali'),
(80181, 'https://ror.org/025mg0739', 'en', 1, 'https://ror.org/025mg0739 American Society for Biochemistry and Molecular Biology'),
(80182, 'https://ror.org/04h82wq77', 'no_lang_code', 1, 'https://ror.org/04h82wq77 Atara Biotherapeutics (United States)'),
(80183, 'https://ror.org/001tw8739', 'en', 1, 'https://ror.org/001tw8739 Association des bibliothĆØques de recherche du canada Canadian Association of Research Libraries'),
(80184, 'https://ror.org/04qrtgy16', 'en', 1, 'https://ror.org/04qrtgy16 MIREA - Russian Technological University Московский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ раГиотехники'),
(80185, 'https://ror.org/01x9fwa61', 'en', 1, 'https://ror.org/01x9fwa61 Antibiotic Research UK'),
(80186, 'https://ror.org/03gffmq02', 'en', 1, 'https://ror.org/03gffmq02 Canadian Nutrition Society SociƩtƩ Canadienne de Nutrition'),
(80187, 'https://ror.org/02qbc3192', 'en', 1, 'https://ror.org/02qbc3192 ZheJiang Academy of Agricultural Sciences ęµ™ę±Ÿēœå†œäøšē§‘å­¦é™¢'),
(80188, 'https://ror.org/02yqt2385', 'no_lang_code', 1, 'https://ror.org/02yqt2385 China Three Gorges Corporation (China) äø­å›½é•æę±Ÿäø‰å³”é›†å›¢å…¬åø'),
(80189, 'https://ror.org/01t80ed43', 'en', 1, 'https://ror.org/01t80ed43 Hamaguchi Foundation for the Advancement of Biochemistry äø€čˆ¬č²”å›£ę³•äŗŗęæ±å£ē”ŸåŒ–å­¦ęŒÆčˆˆč²”å›£'),
(80190, 'https://ror.org/050m26017', 'en', 1, 'https://ror.org/050m26017 Farm Service Agency'),
(80191, 'https://ror.org/0051w2v06', 'en', 1, 'https://ror.org/0051w2v06 University of Engineering and Technology Lahore جامعہ ŪŁ†ŲÆŲ³ŪŒŲ§ŲŖ و طرزیات، Ł„Ų§ŪŁˆŲ±'),
(80192, 'https://ror.org/04zd7zv52', 'en', 1, 'https://ror.org/04zd7zv52 Academy of Neuroscience for Architecture'),
(80193, 'https://ror.org/03cjece29', 'en', 1, 'https://ror.org/03cjece29 Pacific National University Тихоокеанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(80194, 'https://ror.org/00jx2dc23', 'en', 1, 'https://ror.org/00jx2dc23 Radiation Research Society'),
(80195, 'https://ror.org/004vanv95', 'en', 1, 'https://ror.org/004vanv95 China National Space Administration å›½å®¶čˆŖå¤©å±€'),
(80196, 'https://ror.org/01ftj9h26', 'no_lang_code', 1, 'https://ror.org/01ftj9h26 Hellenic Atherosclerosis Society'),
(80197, 'https://ror.org/01mqx8q10', 'en', 1, 'https://ror.org/01mqx8q10 Agriculture Victoria'),
(80198, 'https://ror.org/03kcjz738', 'en', 1, 'https://ror.org/03kcjz738 China National Center for Food Safety Risk Assessment å›½å®¶é£Ÿå“å®‰å…Øé£Žé™©čÆ„ä¼°äø­åæƒ'),
(80199, 'https://ror.org/034mtvk83', 'en', 1, 'https://ror.org/034mtvk83 University of New Orleans UniversitƩ de la nouvelle-orlƩans'),
(80200, 'https://ror.org/01b52zk20', 'en', 1, 'https://ror.org/01b52zk20 National Speleological Society'),
(80201, 'https://ror.org/03gf8rp76', 'en', 1, 'https://ror.org/03gf8rp76 National Centre for Biological Sciences ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ą²œą³€ą²µ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²•ą³†ą³•ą²‚ą²¦ą³ą²°'),
(80202, 'https://ror.org/02qxkhm81', 'en', 1, 'https://ror.org/02qxkhm81 Hebei University of Chinese Medicine'),
(80203, 'https://ror.org/02k1cnv49', 'de', 1, 'https://ror.org/02k1cnv49 Deutsche Gesellschaft für Zahn-, Mund- und Kieferheilkunde'),
(80204, 'https://ror.org/005kw6t15', 'no_lang_code', 1, 'https://ror.org/005kw6t15 Infineon Technologies (Germany)'),
(80205, 'https://ror.org/00znvbk37', 'en', 1, 'https://ror.org/00znvbk37 National Health Laboratory Service'),
(80206, 'https://ror.org/01d2sez20', 'en', 1, 'https://ror.org/01d2sez20 Missouri State University UniversitĆ© d''Ɖtat du missouri'),
(80207, 'https://ror.org/03fjc3817', 'en', 1, 'https://ror.org/03fjc3817 Shanghai Chest Hospital'),
(80208, 'https://ror.org/056vyez31', 'en', 1, 'https://ror.org/056vyez31 Naval University of Engineering 中国人民解放军海军巄程大学'),
(80209, 'https://ror.org/04e27p903', 'en', 1, 'https://ror.org/04e27p903 Adekunle Ajasin University'),
(80210, 'https://ror.org/05e9eyh13', 'en', 1, 'https://ror.org/05e9eyh13 Woodland Trust'),
(80211, 'https://ror.org/05y3qh794', 'en', 1, 'https://ror.org/05y3qh794 Nottingham University Hospitals NHS Trust'),
(80212, 'https://ror.org/04c5ams53', 'fr', 1, 'https://ror.org/04c5ams53 Agence RƩgionale de SantƩ Ile-de-France'),
(80213, 'https://ror.org/051f75a52', 'en', 1, 'https://ror.org/051f75a52 Loyola University New Orleans Universidad Loyola Nueva Orleans'),
(80214, 'https://ror.org/00dre6z66', 'en', 1, 'https://ror.org/00dre6z66 Guangdong Industry Technical College å¹æäøœč½»å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(80215, 'https://ror.org/01ca2by25', 'en', 1, 'https://ror.org/01ca2by25 Great Lakes Bioenergy Research Center'),
(80216, 'https://ror.org/00nqb1v70', 'en', 1, 'https://ror.org/00nqb1v70 University of Tennessee at Chattanooga UniversitƩ du tennessee Ơ chattanooga'),
(80217, 'https://ror.org/05hr6q169', 'en', 1, 'https://ror.org/05hr6q169 A.T. Still University'),
(80218, 'https://ror.org/029y69023', 'en', 1, 'https://ror.org/029y69023 Biomedical Advanced Research and Development Authority'),
(80219, 'https://ror.org/01fyqq855', 'en', 1, 'https://ror.org/01fyqq855 Seafish'),
(80220, 'https://ror.org/02t378715', 'en', 1, 'https://ror.org/02t378715 Exxon Valdez Oil Spill Trustee Council'),
(80221, 'https://ror.org/053yx4c68', 'en', 1, 'https://ror.org/053yx4c68 Department of Industrial Technology'),
(80222, 'https://ror.org/03yhpeg97', 'en', 1, 'https://ror.org/03yhpeg97 Hercules Foundation'),
(80223, 'https://ror.org/055bexb09', 'fr', 1, 'https://ror.org/055bexb09 Association FranƧaise du Syndrome d''Ondine'),
(80224, 'https://ror.org/056ajev02', 'en', 1, 'https://ror.org/056ajev02 Birmingham Women’s and Children’s NHS Foundation Trust'),
(80225, 'https://ror.org/03r7vnf29', 'en', 1, 'https://ror.org/03r7vnf29 Golpayegan University of Engineering دانؓکده ŁŁ†ŪŒ و Ł…Ł‡Ł†ŲÆŲ³ŪŒ ŚÆŁ„Ł¾Ų§ŁŠŚÆŲ§Ł†'),
(80226, 'https://ror.org/01neh8064', 'en', 1, 'https://ror.org/01neh8064 National Nanotechnology Center ąøØąø¹ąø™ąø¢ą¹Œąø™ąø²ą¹‚ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(80227, 'https://ror.org/0506y2b23', 'it', 1, 'https://ror.org/0506y2b23 Istituto Nazionale Tumori IRCCS "Fondazione G. Pascale"'),
(80228, 'https://ror.org/00y6v8h24', 'en', 1, 'https://ror.org/00y6v8h24 American Society of Cataract and Refractive Surgery'),
(80229, 'https://ror.org/01jbfvb72', 'en', 1, 'https://ror.org/01jbfvb72 Association Universitaire Canadienne d''Ɖtudes Nordiques Association of Canadian Universities for Northern Studies'),
(80230, 'https://ror.org/01q928n88', 'en', 1, 'https://ror.org/01q928n88 Baltimore City Health Department'),
(80231, 'https://ror.org/0135c5n64', 'en', 1, 'https://ror.org/0135c5n64 Central Intelligence Agency'),
(80232, 'https://ror.org/05xe40a72', 'en', 1, 'https://ror.org/05xe40a72 Foundation for Biomedical Research and Innovation å…ˆē«ÆåŒ»ē™‚ęŒÆčˆˆč²”å›£'),
(80233, 'https://ror.org/04zrbnc33', 'en', 1, 'https://ror.org/04zrbnc33 Multimedia University ดหาวณทยาคัยดัคตณดีเดีย'),
(80234, 'https://ror.org/04wn7wc95', 'en', 1, 'https://ror.org/04wn7wc95 Nagoya City University åå¤å±‹åø‚ē«‹å¤§å­¦'),
(80235, 'https://ror.org/01c4jmp52', 'en', 1, 'https://ror.org/01c4jmp52 Chengdu Medical College ęˆéƒ½åŒ»å­¦é™¢'),
(80236, 'https://ror.org/013b36x77', 'en', 1, 'https://ror.org/013b36x77 Advantage West Midlands'),
(80237, 'https://ror.org/03zpd7f57', 'en', 1, 'https://ror.org/03zpd7f57 Al Jalila Foundation'),
(80238, 'https://ror.org/03qdcb993', 'en', 1, 'https://ror.org/03qdcb993 Harbin Science and Technology Bureau'),
(80239, 'https://ror.org/007q4yk54', 'no_lang_code', 1, 'https://ror.org/007q4yk54 Gustavus Adolphus College'),
(80240, 'https://ror.org/03ep9w883', 'en', 1, 'https://ror.org/03ep9w883 Australian College of Optometry'),
(80241, 'https://ror.org/05xh28b78', 'en', 1, 'https://ror.org/05xh28b78 American Laryngological Association'),
(80242, 'https://ror.org/02j172648', 'en', 1, 'https://ror.org/02j172648 Macular Society'),
(80243, 'https://ror.org/02z296148', 'en', 1, 'https://ror.org/02z296148 Royal Meteorological Society'),
(80244, 'https://ror.org/05ghzpa93', 'no_lang_code', 1, 'https://ror.org/05ghzpa93 Guru Nanak Dev University ਗੁਰੂ ਨਾਨਕ ਦੇਵ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(80245, 'https://ror.org/0192stn37', 'en', 1, 'https://ror.org/0192stn37 Association of Teacher Educators'),
(80246, 'https://ror.org/00msd7q84', 'en', 1, 'https://ror.org/00msd7q84 Canadian Orthopaedic Foundation'),
(80247, 'https://ror.org/0517jgz17', 'en', 1, 'https://ror.org/0517jgz17 American Holistic Nurses Association'),
(80248, 'https://ror.org/05hz4ph43', 'en', 1, 'https://ror.org/05hz4ph43 Alaska Pacific University'),
(80249, 'https://ror.org/01rgp0j22', 'no_lang_code', 1, 'https://ror.org/01rgp0j22 Arog Pharmaceuticals (United States)'),
(80250, 'https://ror.org/0569s5x60', 'en', 1, 'https://ror.org/0569s5x60 China Women''s University äø­åŽå„³å­å­¦é™¢'),
(80251, 'https://ror.org/024kejf30', 'en', 1, 'https://ror.org/024kejf30 Cancer de l''Ovaire Canada Ovarian Cancer Canada'),
(80252, 'https://ror.org/0442pkv24', 'en', 1, 'https://ror.org/0442pkv24 Charotar University of Science and Technology ąŖšąŖ°ą«‹ąŖ¤ąŖ° ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸąŖæ ąŖ“ąŖ« ąŖøąŖ¾ąŖÆąŖØą«ąŖø ąŖąŖØą«ąŖ” ąŖŸą«‡ąŖ•ą«ąŖØą«‰ąŖ²ą«‹ąŖœą«€'),
(80253, 'https://ror.org/01xgs3376', 'en', 1, 'https://ror.org/01xgs3376 American College of Medical Toxicology'),
(80254, 'https://ror.org/01apna436', 'en', 1, 'https://ror.org/01apna436 Ohio Supercomputer Center'),
(80255, 'https://ror.org/01n0k5m85', 'en', 1, 'https://ror.org/01n0k5m85 King''s College Hospital NHS Foundation Trust'),
(80256, 'https://ror.org/05x21tp94', 'en', 1, 'https://ror.org/05x21tp94 Zaozhuang University'),
(80257, 'https://ror.org/04qca4971', 'en', 1, 'https://ror.org/04qca4971 Indiana Department of Natural Resources'),
(80258, 'https://ror.org/042r9ys73', 'en', 1, 'https://ror.org/042r9ys73 Association des universitƩs indiennes Association of Indian Universities'),
(80259, 'https://ror.org/005x9g035', 'en', 1, 'https://ror.org/005x9g035 Colorado School of Public Health'),
(80260, 'https://ror.org/02k1fef77', 'en', 1, 'https://ror.org/02k1fef77 Canadian Cardiovascular Society'),
(80261, 'https://ror.org/050ngae93', 'en', 1, 'https://ror.org/050ngae93 European Academy of Dermatology and Venereology'),
(80262, 'https://ror.org/00refd139', 'en', 1, 'https://ror.org/00refd139 Association of Nurses in AIDS Care'),
(80263, 'https://ror.org/01xnhsa91', 'en', 1, 'https://ror.org/01xnhsa91 Center for Construction Research and Training'),
(80264, 'https://ror.org/0466jcd14', 'fr', 1, 'https://ror.org/0466jcd14 Conseil RƩgional de Lorraine'),
(80265, 'https://ror.org/002trms45', 'en', 1, 'https://ror.org/002trms45 Hydrocephalus Association'),
(80266, 'https://ror.org/03qb7bg95', 'en', 1, 'https://ror.org/03qb7bg95 Guangzhou University of Chinese Medicine å¹æå·žäø­åŒ»čÆå¤§å­¦'),
(80267, 'https://ror.org/00bnq0b88', 'en', 1, 'https://ror.org/00bnq0b88 Oklahoma Department of Wildlife Conservation'),
(80268, 'https://ror.org/005rvws84', 'en', 1, 'https://ror.org/005rvws84 Chiang Rai Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąøŠąøµąø¢ąø‡ąø£ąø²ąø¢'),
(80269, 'https://ror.org/04qg81z57', 'en', 1, 'https://ror.org/04qg81z57 Hubei Academy of Agricultural Sciences ę¹–åŒ—ēœå†œäøšē§‘å­¦é™¢'),
(80270, 'https://ror.org/021jt1927', 'en', 1, 'https://ror.org/021jt1927 University of Hafr Al-Batin Ų¬Ų§Ł…Ų¹Ų© حفرالباطن'),
(80271, 'https://ror.org/02jn36537', 'en', 1, 'https://ror.org/02jn36537 Southwest Hospital č„æå—åŒ»é™¢'),
(80272, 'https://ror.org/059d3zc80', 'en', 1, 'https://ror.org/059d3zc80 Asthma and Allergy Foundation of America'),
(80273, 'https://ror.org/04ajrmg05', 'en', 1, 'https://ror.org/04ajrmg05 Chukyo University 中京大学'),
(80274, 'https://ror.org/038x7ta12', 'en', 1, 'https://ror.org/038x7ta12 Lewis Clark State College Lewis–Clark State College'),
(80275, 'https://ror.org/01mqyyq64', 'en', 1, 'https://ror.org/01mqyyq64 Department of National Parks Wildlife and Plant Conservation ąøąø£ąø”ąø­ąøøąø—ąø¢ąø²ąø™ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“ ąøŖąø±ąø•ąø§ą¹Œąø›ą¹ˆąø² ą¹ąø„ąø°ąøžąø±ąø™ąø˜ąøøą¹Œąøžąø·ąøŠ'),
(80276, 'https://ror.org/0254bmq54', 'en', 1, 'https://ror.org/0254bmq54 National Center of Neurology and Psychiatry ē„žēµŒē²¾ē„žåŒ»å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(80277, 'https://ror.org/00nzx7971', 'en', 1, 'https://ror.org/00nzx7971 Mycological Society of America'),
(80278, 'https://ror.org/0514zf363', 'en', 1, 'https://ror.org/0514zf363 North Carolina Academy of Science'),
(80279, 'https://ror.org/00edrn755', 'en', 1, 'https://ror.org/00edrn755 Hvidovre Hospital'),
(80280, 'https://ror.org/04yr6h117', 'en', 1, 'https://ror.org/04yr6h117 American Academy of Hospice and Palliative Medicine'),
(80281, 'https://ror.org/04ztzhc98', 'en', 1, 'https://ror.org/04ztzhc98 Rotary Club of Eureka'),
(80282, 'https://ror.org/03v00ka07', 'en', 1, 'https://ror.org/03v00ka07 University of Engineering and Technology Taxila'),
(80283, 'https://ror.org/02z1n9q24', 'en', 1, 'https://ror.org/02z1n9q24 University of the Ryukyus ē‰ēƒå¤§å­¦'),
(80284, 'https://ror.org/032cjs650', 'en', 1, 'https://ror.org/032cjs650 European Society of Radiology'),
(80285, 'https://ror.org/010p1tc53', 'en', 1, 'https://ror.org/010p1tc53 Phase One Foundation'),
(80286, 'https://ror.org/024z17f57', 'en', 1, 'https://ror.org/024z17f57 Missile Defense Agency'),
(80287, 'https://ror.org/0219p8s51', 'en', 1, 'https://ror.org/0219p8s51 America''s Essential Hospitals'),
(80288, 'https://ror.org/01p18bt48', 'en', 1, 'https://ror.org/01p18bt48 Thomas University'),
(80289, 'https://ror.org/00edmjc06', 'en', 1, 'https://ror.org/00edmjc06 American Society for Investigative Pathology'),
(80290, 'https://ror.org/04vc9z215', 'en', 1, 'https://ror.org/04vc9z215 American Association of Diabetes Educators'),
(80291, 'https://ror.org/04tvshh35', 'en', 1, 'https://ror.org/04tvshh35 Mary M. Gooley Hemophilia Center'),
(80292, 'https://ror.org/02xm06c56', 'es', 1, 'https://ror.org/02xm06c56 Interamerican Open University Universidad Abierta Interamericana'),
(80293, 'https://ror.org/04se3fj97', 'en', 1, 'https://ror.org/04se3fj97 Armed Forces Institute of Pathology'),
(80294, 'https://ror.org/05222ev03', 'en', 1, 'https://ror.org/05222ev03 Risk Management Agency'),
(80295, 'https://ror.org/00ev3nz67', 'en', 1, 'https://ror.org/00ev3nz67 Guizhou Academy of Agricultural Sciences č“µå·žēœå†œäøšē§‘å­¦é™¢'),
(80296, 'https://ror.org/017z2hs09', 'pt', 1, 'https://ror.org/017z2hs09 Fundação de Empreendimentos Científicos e Tecnológicos'),
(80297, 'https://ror.org/03hqwnx39', 'en', 1, 'https://ror.org/03hqwnx39 Hebei North University ę²³åŒ—åŒ—ę–¹å­¦é™¢'),
(80298, 'https://ror.org/05201qm87', 'en', 1, 'https://ror.org/05201qm87 Huashan Hospital'),
(80299, 'https://ror.org/001ms2r47', 'no_lang_code', 1, 'https://ror.org/001ms2r47 Five Prime Therapeutics (United States)'),
(80300, 'https://ror.org/05w13qg40', 'en', 1, 'https://ror.org/05w13qg40 D. Mendeleyev University of Chemical Technology of Russia Российский химико-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. И. МенГелеева'),
(80301, 'https://ror.org/01dc2fq43', 'en', 1, 'https://ror.org/01dc2fq43 New Mexico Academy of Science'),
(80302, 'https://ror.org/03vhnve41', 'en', 1, 'https://ror.org/03vhnve41 Southern California Earthquake Center'),
(80303, 'https://ror.org/00mm1qk40', 'en', 1, 'https://ror.org/00mm1qk40 PLA Information Engineering University 中国人民解放军俔息巄程大学'),
(80304, 'https://ror.org/03w093j43', 'en', 1, 'https://ror.org/03w093j43 Hong Kong Society of Nephrology'),
(80305, 'https://ror.org/04wkcqd42', 'en', 1, 'https://ror.org/04wkcqd42 Buffalo Bill Center of the West'),
(80306, 'https://ror.org/01f9cfx50', 'en', 1, 'https://ror.org/01f9cfx50 Paleontological Society'),
(80307, 'https://ror.org/04fcngg73', 'en', 1, 'https://ror.org/04fcngg73 Sense about Science'),
(80308, 'https://ror.org/00qk2nf71', 'en', 1, 'https://ror.org/00qk2nf71 Fiji National University'),
(80309, 'https://ror.org/046qgfw50', 'en', 1, 'https://ror.org/046qgfw50 Canadian Mennonite University'),
(80310, 'https://ror.org/01848hk04', 'no_lang_code', 1, 'https://ror.org/01848hk04 Shandong Jiaotong University'),
(80311, 'https://ror.org/005nbjh06', 'en', 1, 'https://ror.org/005nbjh06 Southwest Minnesota State University'),
(80312, 'https://ror.org/01xx4fy37', 'en', 1, 'https://ror.org/01xx4fy37 Agricultural Marketing Service'),
(80313, 'https://ror.org/00x0t3508', 'en', 1, 'https://ror.org/00x0t3508 American Iron and Steel Institute'),
(80314, 'https://ror.org/01nh3sx96', 'en', 1, 'https://ror.org/01nh3sx96 Geriatric Research Education and Clinical Center'),
(80315, 'https://ror.org/05beaae04', 'en', 1, 'https://ror.org/05beaae04 European Crohn''s and Colitis Organisation'),
(80316, 'https://ror.org/00ndt8971', 'en', 1, 'https://ror.org/00ndt8971 California Botanical Society'),
(80317, 'https://ror.org/05n116e91', 'en', 1, 'https://ror.org/05n116e91 Idaho State Board of Education'),
(80318, 'https://ror.org/04ncvnx26', 'fr', 1, 'https://ror.org/04ncvnx26 L’Agence Nationale pour l’amĆ©lioration des Conditions de Travail'),
(80319, 'https://ror.org/01755xe07', 'en', 1, 'https://ror.org/01755xe07 Grove City College'),
(80320, 'https://ror.org/02x59h163', 'no_lang_code', 1, 'https://ror.org/02x59h163 Arrien Pharmaceuticals (United States)'),
(80321, 'https://ror.org/05dfnp137', 'en', 1, 'https://ror.org/05dfnp137 American Society for Legal History'),
(80322, 'https://ror.org/0430zw506', 'en', 1, 'https://ror.org/0430zw506 Canadian Forest Service'),
(80323, 'https://ror.org/031xx1847', 'en', 1, 'https://ror.org/031xx1847 Dr. Ram Manohar Lohia Institute of Medical Sciences'),
(80324, 'https://ror.org/03hgxtg28', 'en', 1, 'https://ror.org/03hgxtg28 Beijing Institute of Fashion Technology åŒ—äŗ¬ęœč£…å­¦é™¢'),
(80325, 'https://ror.org/03pekdw43', 'en', 1, 'https://ror.org/03pekdw43 Persistent Systems (India)'),
(80326, 'https://ror.org/01rwx7470', 'no_lang_code', 1, 'https://ror.org/01rwx7470 Aichi Gakuin University ę„›ēŸ„å­¦é™¢å¤§å­¦'),
(80327, 'https://ror.org/05wgnjg63', 'en', 1, 'https://ror.org/05wgnjg63 Japan Brain Foundation'),
(80328, 'https://ror.org/00088z429', 'en', 1, 'https://ror.org/00088z429 Kobe Pharmaceutical University ē„žęˆøč–¬ē§‘å¤§å­¦'),
(80329, 'https://ror.org/01ckjz551', 'no_lang_code', 1, 'https://ror.org/01ckjz551 Cardiovascular Systems (United States)'),
(80330, 'https://ror.org/029ypb052', 'en', 1, 'https://ror.org/029ypb052 Society for the Study of Amphibians and Reptiles'),
(80331, 'https://ror.org/03qmgc142', 'en', 1, 'https://ror.org/03qmgc142 Kemmons Wilson Family Foundation'),
(80332, 'https://ror.org/02r3nf527', 'en', 1, 'https://ror.org/02r3nf527 IITB-Monash Research Academy'),
(80333, 'https://ror.org/04a5b0p13', 'en', 1, 'https://ror.org/04a5b0p13 Al-Zaytoonah University of Jordan Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų© Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(80334, 'https://ror.org/0578f1k82', 'en', 1, 'https://ror.org/0578f1k82 Henan Institute of Science and Technology'),
(80335, 'https://ror.org/03yg3v757', 'en', 1, 'https://ror.org/03yg3v757 Beijing Institute of Graphic Communication åŒ—äŗ¬å°åˆ·å­¦é™¢'),
(80336, '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'),
(80337, 'https://ror.org/02k96x766', 'en', 1, 'https://ror.org/02k96x766 Foundation for Promotion of Material Science and Technology of Japan čˆ¬č²”å›£ę³•äŗŗęę–™ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(80338, 'https://ror.org/04qw19h46', 'en', 1, 'https://ror.org/04qw19h46 Society for Visual Anthropology'),
(80339, 'https://ror.org/00g2fk805', 'en', 1, 'https://ror.org/00g2fk805 Washington State University Vancouver'),
(80340, 'https://ror.org/02fz54z33', 'en', 1, 'https://ror.org/02fz54z33 Georgetown-Howard Universities Center for Clinical and Translational Science'),
(80341, 'https://ror.org/01mg0yh05', 'en', 1, 'https://ror.org/01mg0yh05 Federal Transit Administration'),
(80342, 'https://ror.org/029vdxt27', 'en', 1, 'https://ror.org/029vdxt27 HCA International Foundation'),
(80343, 'https://ror.org/05tkzma19', 'en', 1, 'https://ror.org/05tkzma19 Indira Gandhi Centre for Atomic Research इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤…ą¤£ą„ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤° ą®‡ą®ØąÆą®¤ą®æą®°ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ அணு ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ąÆˆą®Æą®®ąÆ'),
(80344, 'https://ror.org/04xq9nz88', 'no_lang_code', 1, 'https://ror.org/04xq9nz88 Nisshin Seifun Group (Japan) ę—„ęø…č£½ē²‰ć‚°ćƒ«ćƒ¼ćƒ—ęœ¬ē¤¾');
INSERT INTO `rors` VALUES
(80345, 'https://ror.org/00shsf120', 'en', 1, 'https://ror.org/00shsf120 National University of Ireland Ollscoil na hƉireann'),
(80346, 'https://ror.org/0462z9c20', 'en', 1, 'https://ror.org/0462z9c20 Alliance Healthcare Foundation'),
(80347, 'https://ror.org/052y05165', 'en', 1, 'https://ror.org/052y05165 Cape Breton University UniversitƩ du cap-breton'),
(80348, 'https://ror.org/057zvdf83', 'en', 1, 'https://ror.org/057zvdf83 Safe Work Australia'),
(80349, 'https://ror.org/03n2mgj60', 'en', 1, 'https://ror.org/03n2mgj60 Persian Gulf University دانؓگاه Ų®Ł„ŪŒŲ¬ فارس'),
(80350, 'https://ror.org/007ygk571', 'en', 1, 'https://ror.org/007ygk571 Dystonia Medical Research Foundation Canada Fondation de Recherche MƩdicale sur la Dystonie'),
(80351, 'https://ror.org/05xvyz406', 'en', 1, 'https://ror.org/05xvyz406 Genetics Society of America'),
(80352, 'https://ror.org/00vez3k45', 'en', 1, 'https://ror.org/00vez3k45 British Pain Society'),
(80353, 'https://ror.org/04sbe6g90', 'en', 1, 'https://ror.org/04sbe6g90 Animal and Plant Quarantine Agency'),
(80354, 'https://ror.org/03n3v6d52', 'en', 1, 'https://ror.org/03n3v6d52 Chongqing University of Science and Technology é‡åŗ†ē§‘ęŠ€å­¦é™¢'),
(80355, 'https://ror.org/048vche49', 'en', 1, 'https://ror.org/048vche49 Islamic Azad University Sanandaj Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سنندج'),
(80356, 'https://ror.org/03zjxnp55', 'en', 1, 'https://ror.org/03zjxnp55 European Atherosclerosis Society'),
(80357, 'https://ror.org/028gccq90', 'en', 1, 'https://ror.org/028gccq90 Childhood Eye Cancer Trust'),
(80358, 'https://ror.org/02vaajx27', 'en', 1, 'https://ror.org/02vaajx27 Museums Galleries Scotland'),
(80359, 'https://ror.org/02bwytq13', 'en', 1, 'https://ror.org/02bwytq13 Guangzhou First People''s Hospital å¹æå·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(80360, 'https://ror.org/056ksgr44', 'no_lang_code', 1, 'https://ror.org/056ksgr44 PTT Public Company Limited (Thailand) ปตท'),
(80361, 'https://ror.org/04rzwwg09', 'no_lang_code', 1, 'https://ror.org/04rzwwg09 Arbor Pharmaceuticals (United States)'),
(80362, 'https://ror.org/01k8vtd75', 'en', 1, 'https://ror.org/01k8vtd75 Mansoura University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŲµŁˆŲ±Ų©'),
(80363, 'https://ror.org/03az66838', 'en', 1, 'https://ror.org/03az66838 United Soybean Board'),
(80364, 'https://ror.org/049x8e923', 'en', 1, 'https://ror.org/049x8e923 Reflex Sympathetic Dystrophy Syndrome Association'),
(80365, 'https://ror.org/02gp4e279', 'en', 1, 'https://ror.org/02gp4e279 Chinese Academy of Geological Sciences äø­å›½åœ°č“Øē§‘å­¦é™¢'),
(80366, 'https://ror.org/05f3e6d47', 'en', 1, 'https://ror.org/05f3e6d47 National AIDS Control Organisation ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤ą¤”ą„ą¤ø ą¤Øą¤æą¤Æą¤‚ą¤¤ą„ą¤°ą¤£ संगठन'),
(80367, 'https://ror.org/043pgqy52', 'en', 1, 'https://ror.org/043pgqy52 Universities Space Research Association'),
(80368, 'https://ror.org/0312whv68', 'en', 1, 'https://ror.org/0312whv68 Association canadienne de l''ƩlectricitƩ Canadian Electricity Association'),
(80369, 'https://ror.org/012j67x85', 'en', 1, 'https://ror.org/012j67x85 Annenberg Foundation'),
(80370, 'https://ror.org/04atsbb87', 'en', 1, 'https://ror.org/04atsbb87 Florida Institute of Technology Institut Technologique de Floride'),
(80371, 'https://ror.org/021tq1e57', 'fr', 1, 'https://ror.org/021tq1e57 Office National de la Chasse et de la Faune Sauvage'),
(80372, 'https://ror.org/03se16w85', 'en', 1, 'https://ror.org/03se16w85 RƩseau de Cellules Souches Stem Cell Network'),
(80373, 'https://ror.org/02jya5567', 'en', 1, 'https://ror.org/02jya5567 Beirut Arab University UniversitĆ© arabe de beyrouth Ų¬Ų§Ł…Ų¹Ų© بيروت Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(80374, 'https://ror.org/056zhna95', 'en', 1, 'https://ror.org/056zhna95 ClimateWorks Foundation'),
(80375, 'https://ror.org/00nst6k08', 'no_lang_code', 1, 'https://ror.org/00nst6k08 Aaniiih Nakoda College'),
(80376, 'https://ror.org/050sv4x28', 'en', 1, 'https://ror.org/050sv4x28 Buck Institute for Research on Aging'),
(80377, 'https://ror.org/03mjcd737', 'en', 1, 'https://ror.org/03mjcd737 Pamantasan ng Silangan University of the East'),
(80378, 'https://ror.org/023e0em87', 'en', 1, 'https://ror.org/023e0em87 Centre for International Governance Innovation'),
(80379, 'https://ror.org/04q9qf557', 'en', 1, 'https://ror.org/04q9qf557 Northeast Ohio Medical University'),
(80380, 'https://ror.org/03rfy1x10', 'no_lang_code', 1, 'https://ror.org/03rfy1x10 Adamas Pharmaceuticals (United States)'),
(80381, 'https://ror.org/01y5va805', 'en', 1, 'https://ror.org/01y5va805 Domestic Nuclear Detection Office'),
(80382, 'https://ror.org/00vq6eh39', 'en', 1, 'https://ror.org/00vq6eh39 American Headache Society'),
(80383, 'https://ror.org/03t9rxt77', 'no_lang_code', 1, 'https://ror.org/03t9rxt77 Sage Therapeutics (United States)'),
(80384, 'https://ror.org/02wncmm17', 'en', 1, 'https://ror.org/02wncmm17 Hellenic Health Foundation Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ΄γείας'),
(80385, 'https://ror.org/04b69g067', 'no_lang_code', 1, 'https://ror.org/04b69g067 Walailak University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø§ąø„ąø±ąø¢ąø„ąø±ąøąø©ąø“ą¹Œ'),
(80386, 'https://ror.org/038b0hg50', 'en', 1, 'https://ror.org/038b0hg50 Iowa Department of Natural Resources'),
(80387, 'https://ror.org/05vx2e607', 'en', 1, 'https://ror.org/05vx2e607 Blond McIndoe Research Foundation'),
(80388, 'https://ror.org/04e6ngf61', 'en', 1, 'https://ror.org/04e6ngf61 Hood College'),
(80389, 'https://ror.org/02bc8tz70', 'en', 1, 'https://ror.org/02bc8tz70 Neijiang Normal University å†…ę±ŸåøˆčŒƒå­¦é™¢'),
(80390, 'https://ror.org/055xn9d15', 'en', 1, 'https://ror.org/055xn9d15 Hawaii Medical Service Association'),
(80391, 'https://ror.org/00sbfzz78', 'en', 1, 'https://ror.org/00sbfzz78 European Rhinologic Society'),
(80392, 'https://ror.org/02cqsbv23', 'en', 1, 'https://ror.org/02cqsbv23 Northland Polytechnic'),
(80393, 'https://ror.org/04nrcyx09', 'es', 1, 'https://ror.org/04nrcyx09 Centro Atómico Constituyentes'),
(80394, 'https://ror.org/03d0s8302', 'pt', 1, 'https://ror.org/03d0s8302 Universidade Estadual de Alagoas'),
(80395, 'https://ror.org/024ygae04', 'en', 1, 'https://ror.org/024ygae04 Borno State University'),
(80396, 'https://ror.org/04hrbe508', 'en', 1, 'https://ror.org/04hrbe508 University of Batna 1 UniversitĆ© de Batna 1 Ų¬Ų§Ł…Ų¹Ų© باتنة 1 الحاج لخضر'),
(80397, 'https://ror.org/00sekdz59', 'en', 1, 'https://ror.org/00sekdz59 Flatiron Institute'),
(80398, 'https://ror.org/03r4m3349', 'en', 1, 'https://ror.org/03r4m3349 Erasmus MC Cancer Institute Erasmus MC Kanker Instituut'),
(80399, 'https://ror.org/050z9fj14', 'pt', 1, 'https://ror.org/050z9fj14 Hospital SĆ£o Paulo'),
(80400, 'https://ror.org/04g43ky75', 'en', 1, 'https://ror.org/04g43ky75 Ho Chi Minh City Institute of Physics Trung tĆ¢m Vįŗ­t lý tįŗ”i ThĆ nh phố Hồ ChĆ­ Minh'),
(80401, 'https://ror.org/02gfjzb42', 'en', 1, 'https://ror.org/02gfjzb42 Turkana University College'),
(80402, 'https://ror.org/04eeqc889', 'en', 1, 'https://ror.org/04eeqc889 Virginia Institute of Marine Science'),
(80403, 'https://ror.org/02ggaqt78', 'en', 1, 'https://ror.org/02ggaqt78 Laser Fusion Research Center ęæ€å…‰čšå˜ē ”ē©¶äø­åæƒ'),
(80404, 'https://ror.org/05jhnwe22', 'en', 1, 'https://ror.org/05jhnwe22 Edith Cowan University'),
(80405, 'https://ror.org/02fqg7825', 'en', 1, 'https://ror.org/02fqg7825 Research Society on Marijuana'),
(80406, 'https://ror.org/051rhng80', 'en', 1, 'https://ror.org/051rhng80 Soreq Nuclear Research Center ×”×ž×Ø×›×– ×œ×ž×—×§×Ø גרעיני שורק'),
(80407, 'https://ror.org/02tt21044', 'en', 1, 'https://ror.org/02tt21044 RIKEN Center for Quantum Computing å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ é‡å­ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(80408, 'https://ror.org/02v9xb273', 'pt', 1, 'https://ror.org/02v9xb273 Centro UniversitƔrio UniProcessus'),
(80409, 'https://ror.org/01zrh0b92', 'no_lang_code', 1, 'https://ror.org/01zrh0b92 QunaSys'),
(80410, 'https://ror.org/02vkw2772', 'de', 1, 'https://ror.org/02vkw2772 Allgemeiner Deutscher Hochschulsportverband German University Sports Federation'),
(80411, 'https://ror.org/00kpkeq42', 'no_lang_code', 1, 'https://ror.org/00kpkeq42 EPC Natural Products ä¼ŠęÆ”č„æę¤ē‰©čÆē‰©ęŠ€ęœÆęœ‰é™å…¬åø'),
(80412, 'https://ror.org/05463eb69', 'en', 1, 'https://ror.org/05463eb69 Hunan Railway Professional Technology College ę¹–å—é“é“čŒäøšęŠ€ęœÆå­¦é™¢'),
(80413, 'https://ror.org/0585v6057', 'en', 1, 'https://ror.org/0585v6057 Erasmus MC Transplant Institute Erasmus MC Transplantatie Instituut'),
(80414, 'https://ror.org/02bjhhm27', 'no_lang_code', 1, 'https://ror.org/02bjhhm27 Betasciencepress Publishing'),
(80415, 'https://ror.org/00a7vgh58', 'de', 1, 'https://ror.org/00a7vgh58 Max-Planck-Institut für Kohlenforschung'),
(80416, 'https://ror.org/04stx0g16', 'pt', 1, 'https://ror.org/04stx0g16 Universidade Federal do Norte do Tocantins'),
(80417, 'https://ror.org/04hs8t575', 'en', 1, 'https://ror.org/04hs8t575 Study World College of Engineering'),
(80418, 'https://ror.org/035tz7392', 'en', 1, 'https://ror.org/035tz7392 Gothenburg Botanic Garden Gƶteborgs Botaniska TrƤdgƄrd'),
(80419, 'https://ror.org/04sx5hw70', 'de', 1, 'https://ror.org/04sx5hw70 Schilddrüsenpraxis Josefstadt'),
(80420, 'https://ror.org/04181p105', 'fr', 1, 'https://ror.org/04181p105 KƩlonia'),
(80421, 'https://ror.org/04wr5tk73', 'de', 1, 'https://ror.org/04wr5tk73 Gƶttlicher Heiland Krankenhaus Wien'),
(80422, 'https://ror.org/00tsqex91', 'en', 1, 'https://ror.org/00tsqex91 Te Pūkenga'),
(80423, 'https://ror.org/022n6je18', 'en', 1, 'https://ror.org/022n6je18 Adolescent Health Clinic'),
(80424, 'https://ror.org/05rgwws51', 'en', 1, 'https://ror.org/05rgwws51 Institute of Fluid Physics 流体物理研究所'),
(80425, 'https://ror.org/014n7xm98', 'pt', 1, 'https://ror.org/014n7xm98 Universidade Federal do Delta do ParnaĆ­ba'),
(80426, 'https://ror.org/0149pv473', 'en', 1, 'https://ror.org/0149pv473 Hamburg Centre for Ultrafast Imaging'),
(80427, 'https://ror.org/05ww61844', 'en', 1, 'https://ror.org/05ww61844 Tai Poutini Polytechnic'),
(80428, 'https://ror.org/047afsm11', 'en', 1, 'https://ror.org/047afsm11 Erasmus MC - Sophia Children’s Hospital'),
(80429, 'https://ror.org/05c6y9623', 'en', 1, 'https://ror.org/05c6y9623 Virginia Sea Grant'),
(80430, 'https://ror.org/019xvpc30', 'es', 1, 'https://ror.org/019xvpc30 Catholic University of Uruguay Universidad Católica del Uruguay'),
(80431, 'https://ror.org/0326v3z14', 'no_lang_code', 1, 'https://ror.org/0326v3z14 Toshiba (Japan) ę±čŠ'),
(80432, 'https://ror.org/03nv92q59', 'en', 1, 'https://ror.org/03nv92q59 Japan Coast Guard ęµ·äøŠäæå®‰åŗ'),
(80433, 'https://ror.org/03rqtqb02', 'en', 1, 'https://ror.org/03rqtqb02 Institute of Biostructure and Bioimaging Istituto di Biostrutture e Bioimmagini'),
(80434, 'https://ror.org/00cxkrp74', 'en', 1, 'https://ror.org/00cxkrp74 Children’s Minnesota - St. Paul Hospital'),
(80435, 'https://ror.org/016c76a68', 'no_lang_code', 1, 'https://ror.org/016c76a68 ADx NeuroSciences'),
(80436, 'https://ror.org/02djvb753', 'en', 1, 'https://ror.org/02djvb753 Barasat Government College'),
(80437, 'https://ror.org/0528bv030', 'en', 1, 'https://ror.org/0528bv030 Western Institute of Technology at Taranaki'),
(80438, 'https://ror.org/014nmm080', 'de', 1, 'https://ror.org/014nmm080 Gesellschaft zur Fƶrderung Kynologischer Forschung'),
(80439, 'https://ror.org/01bb4h160', 'en', 1, 'https://ror.org/01bb4h160 Graphic Era Hill University'),
(80440, 'https://ror.org/04x48z588', 'en', 1, 'https://ror.org/04x48z588 European Laboratory for Non-Linear Spectroscopy Laboratorio europeo di spettroscopia non lineare'),
(80441, 'https://ror.org/028x29h02', 'en', 1, 'https://ror.org/028x29h02 National Meteorological Service Servicio Meteorológico Nacional'),
(80442, 'https://ror.org/03npphx08', 'sq', 1, 'https://ror.org/03npphx08 Akademia e Studimeve Albanologjike'),
(80443, 'https://ror.org/00nf3nv81', 'fr', 1, 'https://ror.org/00nf3nv81 ESME - School of Engineering ESME - Ɖcole d’ingĆ©nieurs pluridisciplinaires'),
(80444, 'https://ror.org/048sd1581', 'en', 1, 'https://ror.org/048sd1581 Jagiellonian College Kolegium Jagiellońskie Toruńskiej Szkoły Wyższej VysokĆ” Å”kola JagiellońskĆ” v Toruni'),
(80445, 'https://ror.org/00b0p4j69', 'en', 1, 'https://ror.org/00b0p4j69 Ministry of Land, Infrastructure, Transport and Tourism å›½åœŸäŗ¤é€šēœ'),
(80446, 'https://ror.org/03qa1nk44', 'en', 1, 'https://ror.org/03qa1nk44 Japan Coast Guard Academy ęµ·äøŠäæå®‰å¤§å­¦ę ”'),
(80447, 'https://ror.org/01kdj2848', 'it', 1, 'https://ror.org/01kdj2848 Clinical Physiology Institute Istituto di Fisiologia Clinica'),
(80448, 'https://ror.org/04thacr56', 'en', 1, 'https://ror.org/04thacr56 Alex Ekwueme Federal University, Ndufu-Alike'),
(80449, 'https://ror.org/01ngg7w55', 'en', 1, 'https://ror.org/01ngg7w55 Whitireia New Zealand'),
(80450, 'https://ror.org/0210gge93', 'en', 1, 'https://ror.org/0210gge93 Asociación científica ICONO 14 Scientific Association ICONO 14'),
(80451, 'https://ror.org/0188vts43', 'no_lang_code', 1, 'https://ror.org/0188vts43 Yu Jun Biotechnology č£•é›‹ē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(80452, 'https://ror.org/03gb41d27', 'en', 1, 'https://ror.org/03gb41d27 Comprehensive Research Organization for Science and Society ē·åˆē§‘å­¦ē ”ē©¶ę©Ÿę§‹'),
(80453, 'https://ror.org/02sct0170', 'fr', 1, 'https://ror.org/02sct0170 Centre RĆ©gional des MĆ©tiers de l''Ɖducation et de la Formation Casablanca-Settat Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ł‡ŁˆŁŠ لمهن Ų§Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŁƒŁˆŁŠŁ† لجهة الدار Ų§Ł„ŲØŁŠŲ¶Ų§Ų” Ų³Ų·Ų§ŲŖ'),
(80454, 'https://ror.org/001swhm52', 'en', 1, 'https://ror.org/001swhm52 Shimon Peres Negev Nuclear Research Center קריה ×œ×ž×—×§×Ø גרעיני – נגב ×¢"ש שמעון פרה'),
(80455, 'https://ror.org/05h0wd634', 'en', 1, 'https://ror.org/05h0wd634 CROSS Neutron Science and Technology Center CROSSäø­ę€§å­ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(80456, 'https://ror.org/04eswfz98', 'no_lang_code', 1, 'https://ror.org/04eswfz98 1QBit'),
(80457, 'https://ror.org/03s3m1w94', 'pt', 1, 'https://ror.org/03s3m1w94 Universidade Federal do Agreste de Pernambuco'),
(80458, 'https://ror.org/01h40c705', 'de', 1, 'https://ror.org/01h40c705 Deutsche Gesellschaft für Ernährung'),
(80459, 'https://ror.org/00bhf8j88', 'en', 1, 'https://ror.org/00bhf8j88 Nara Prefecture General Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå„ˆč‰ÆēœŒē«‹ē—…é™¢ę©Ÿę§‹å„ˆč‰ÆēœŒē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(80460, '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'),
(80461, 'https://ror.org/00x0z1472', 'en', 1, 'https://ror.org/00x0z1472 Templeton World Charity Foundation'),
(80462, 'https://ror.org/007ecwd34', 'en', 1, 'https://ror.org/007ecwd34 Tyndall InstitiĆŗid Naisiunta Tyndall National Institute'),
(80463, 'https://ror.org/0175g1p16', 'en', 1, 'https://ror.org/0175g1p16 Quantum University'),
(80464, 'https://ror.org/05bc5bx80', 'en', 1, 'https://ror.org/05bc5bx80 Vel Tech Rangarajan Dr. Sagunthala R&D Institute of Science and Technology'),
(80465, 'https://ror.org/03pmpje25', 'de', 1, 'https://ror.org/03pmpje25 St. Josef-Krankenhaus Wien'),
(80466, 'https://ror.org/05m802881', 'en', 1, 'https://ror.org/05m802881 Bariloche Atomic Centre Centro Atómico Bariloche'),
(80467, 'https://ror.org/05p9h0d44', 'no_lang_code', 1, 'https://ror.org/05p9h0d44 Toshiba Nanoanalysis Corporation ę±čŠćƒŠćƒŽć‚¢ćƒŠćƒŖć‚·ć‚¹ę Ŗå¼ä¼šē¤¾'),
(80468, 'https://ror.org/002s65j03', 'no_lang_code', 1, 'https://ror.org/002s65j03 Ulrich Medical (Germany)'),
(80469, 'https://ror.org/0232eqz57', 'en', 1, 'https://ror.org/0232eqz57 Slovenian Forestry Institute'),
(80470, 'https://ror.org/026gmbh11', 'en', 1, 'https://ror.org/026gmbh11 Klima- og miljĆødepartementet Ministry of Climate and Environment'),
(80471, 'https://ror.org/05gd76j39', 'no_lang_code', 1, 'https://ror.org/05gd76j39 Tokyo Electron (Japan) ę±äŗ¬ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ³'),
(80472, 'https://ror.org/0078bd381', 'en', 1, 'https://ror.org/0078bd381 University College London Qatar'),
(80473, 'https://ror.org/032yym934', 'en', 1, 'https://ror.org/032yym934 Institut für Weltwirtschaft Kiel Institute for the World Economy'),
(80474, 'https://ror.org/05fb2ej88', 'no_lang_code', 1, 'https://ror.org/05fb2ej88 Nutreco (Netherlands)'),
(80475, 'https://ror.org/010n0x685', 'en', 1, 'https://ror.org/010n0x685 Central University of Ecuador Universidad Central del Ecuador'),
(80476, 'https://ror.org/02fsejp38', 'en', 1, 'https://ror.org/02fsejp38 Lietuvos Respublikos žemės ūkio ministerija Ministry of Agriculture of the Republic of Lithuania'),
(80477, 'https://ror.org/04vrd1088', 'en', 1, 'https://ror.org/04vrd1088 The Trust for Public Land'),
(80478, 'https://ror.org/05rpz9q70', 'no_lang_code', 1, 'https://ror.org/05rpz9q70 Myriad Genetics'),
(80479, 'https://ror.org/04f17cx55', 'en', 1, 'https://ror.org/04f17cx55 National Medical Research Center of Cardiology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠ«Š™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠ˜Š™ Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š¦Š•ŠŠ¢Š  ŠšŠŠ Š”Š˜ŠžŠ›ŠžŠ“Š˜Š˜ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(80480, 'https://ror.org/05sj5k538', 'en', 1, 'https://ror.org/05sj5k538 Opole University of Technology Politechnika Opolska'),
(80481, 'https://ror.org/00sb3pk12', 'en', 1, 'https://ror.org/00sb3pk12 Mercy Hospital and Medical Center'),
(80482, 'https://ror.org/035b6vx73', 'no_lang_code', 1, 'https://ror.org/035b6vx73 XBiotech (United States)'),
(80483, 'https://ror.org/021wyrx76', 'no_lang_code', 1, 'https://ror.org/021wyrx76 Faraday Technology (Taiwan) ę™ŗåŽŸē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(80484, 'https://ror.org/04r6hkw08', 'no_lang_code', 1, 'https://ror.org/04r6hkw08 GC Europe (Belgium)'),
(80485, 'https://ror.org/05pcv4v03', 'en', 1, 'https://ror.org/05pcv4v03 Parthenope University of Naples UniversitƠ degli Studi di Napoli Parthenope UniversitƩ de naples - parthƩnope'),
(80486, 'https://ror.org/05dagmh42', 'no_lang_code', 1, 'https://ror.org/05dagmh42 Antares Pharma (United States)'),
(80487, 'https://ror.org/05ykg3d23', 'no_lang_code', 1, 'https://ror.org/05ykg3d23 WƤrtsilƤ (Finland)'),
(80488, 'https://ror.org/0091hm651', 'en', 1, 'https://ror.org/0091hm651 Universitas Pattimura University of Pattimura'),
(80489, 'https://ror.org/0221sax75', 'en', 1, 'https://ror.org/0221sax75 Diabetesforbundet Norwegian Diabetes Association'),
(80490, 'https://ror.org/05x7v6y85', 'en', 1, 'https://ror.org/05x7v6y85 Framsenteret The FRAM Centre'),
(80491, 'https://ror.org/013314927', 'en', 1, 'https://ror.org/013314927 Universitas Surabaya University of Surabaya'),
(80492, 'https://ror.org/009kqch10', 'en', 1, 'https://ror.org/009kqch10 Norwegian Public Roads Administration'),
(80493, 'https://ror.org/04jb3cn49', 'no_lang_code', 1, 'https://ror.org/04jb3cn49 Alphora Research (Canada)'),
(80494, 'https://ror.org/05gja4j15', 'no_lang_code', 1, 'https://ror.org/05gja4j15 Menarini Group (Germany)'),
(80495, 'https://ror.org/030x5z418', 'en', 1, 'https://ror.org/030x5z418 Queen Elisabeth Medical Foundation'),
(80496, 'https://ror.org/05np4h792', 'no_lang_code', 1, 'https://ror.org/05np4h792 Plastic Omnium (France)'),
(80497, 'https://ror.org/03pfqk412', 'no_lang_code', 1, 'https://ror.org/03pfqk412 Allergan (United States)'),
(80498, 'https://ror.org/02pkn1m92', 'no_lang_code', 1, 'https://ror.org/02pkn1m92 Aker Arctic (Finland)'),
(80499, 'https://ror.org/04p1xtv71', 'no_lang_code', 1, 'https://ror.org/04p1xtv71 Seagate (United States)'),
(80500, 'https://ror.org/052874946', 'en', 1, 'https://ror.org/052874946 The Turner Scientific Research Institute for Children''s Orthopedics ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Гетский ортопеГический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š“. И'),
(80501, 'https://ror.org/00nhc9061', 'no_lang_code', 1, 'https://ror.org/00nhc9061 Plasmionique (Canada)'),
(80502, 'https://ror.org/04x187e69', 'en', 1, 'https://ror.org/04x187e69 Gynecologic Oncology Group'),
(80503, 'https://ror.org/05nj6z848', 'en', 1, 'https://ror.org/05nj6z848 Novosibirsk Scientific Research Institute of Traumatology and Orthopedics. Ya.L. Tsivyan ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии им. ŠÆ.Š›.Š¦ŠøŠ²ŃŒŃŠ½Š°'),
(80504, 'https://ror.org/02319f413', 'no_lang_code', 1, 'https://ror.org/02319f413 RayBiotech (United States)'),
(80505, 'https://ror.org/05626m728', 'en', 1, 'https://ror.org/05626m728 John H. Stroger, Jr. Hospital of Cook County'),
(80506, 'https://ror.org/040gsvv83', 'en', 1, 'https://ror.org/040gsvv83 Nizhny Novgorod Federal Research Institute of Pediatric Gastroenterology ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ ŠŠ˜Š˜ Гетской Š³Š°ŃŃ‚Ń€Š¾ŃŠ½Ń‚ŠµŃ€Š¾Š»Š¾Š³ŠøŠø'),
(80507, 'https://ror.org/02w6dqa48', 'no_lang_code', 1, 'https://ror.org/02w6dqa48 Cipla (India) ą¤øą¤æą¤Ŗą„ą¤²ą¤¾ ą®šą®æą®ŖąÆą®²ą®¾'),
(80508, 'https://ror.org/045x2ah69', 'en', 1, 'https://ror.org/045x2ah69 Libera UniversitĆ  Carlo Cattaneo University Carlo Cattaneo'),
(80509, 'https://ror.org/00jv65847', 'en', 1, 'https://ror.org/00jv65847 Gouvernement wallon Walloon Government'),
(80510, 'https://ror.org/03abe5304', 'no_lang_code', 1, 'https://ror.org/03abe5304 Loxo Oncology at Lilly (United States)'),
(80511, 'https://ror.org/05g9af661', 'no_lang_code', 1, 'https://ror.org/05g9af661 OrbusNeich (China)'),
(80512, 'https://ror.org/02twwap54', 'no_lang_code', 1, 'https://ror.org/02twwap54 Fanuc (Japan) ćƒ•ć‚”ćƒŠćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(80513, 'https://ror.org/0519vt613', 'de', 1, 'https://ror.org/0519vt613 Tiroler Zukunftsstiftung'),
(80514, 'https://ror.org/01v5k4d73', 'en', 1, 'https://ror.org/01v5k4d73 Dehradun Institute of Technology University ą¤¦ą„‡ą¤¹ą¤°ą¤¾ą¤¦ą„‚ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(80515, 'https://ror.org/01ada5854', 'fr', 1, 'https://ror.org/01ada5854 Ɖcole du Louvre'),
(80516, 'https://ror.org/04fe7hy80', 'en', 1, 'https://ror.org/04fe7hy80 Xuzhou Medical College 徐州医学院'),
(80517, 'https://ror.org/03bd11s93', 'es', 1, 'https://ror.org/03bd11s93 Centro Universitario Anglo Mexicano'),
(80518, 'https://ror.org/05wrggx03', 'no_lang_code', 1, 'https://ror.org/05wrggx03 Dentsply Sirona (United States)'),
(80519, 'https://ror.org/05jyz3382', 'no_lang_code', 1, 'https://ror.org/05jyz3382 ConvaTec (United Kingdom)'),
(80520, 'https://ror.org/044tc0x05', 'no_lang_code', 1, 'https://ror.org/044tc0x05 CSL (Australia)'),
(80521, 'https://ror.org/00zz6h841', 'en', 1, 'https://ror.org/00zz6h841 Research Institute of Emergency Childrens Surgery and Traumatology ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неотложной Гетской Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø Šø травматологии'),
(80522, 'https://ror.org/03ynh3q24', 'no_lang_code', 1, 'https://ror.org/03ynh3q24 Zogenix (United States)'),
(80523, 'https://ror.org/014fhvx65', 'en', 1, 'https://ror.org/014fhvx65 Canadian Respiratory Research Network RƩseau canadien de recherche respiratoire'),
(80524, 'https://ror.org/01pvx8v81', 'en', 1, 'https://ror.org/01pvx8v81 Federal University of Technology'),
(80525, 'https://ror.org/00fm1n282', 'no_lang_code', 1, 'https://ror.org/00fm1n282 Inflarx (Germany)'),
(80526, 'https://ror.org/049qtwc86', 'en', 1, 'https://ror.org/049qtwc86 Jesse Brown VA Medical Center'),
(80527, 'https://ror.org/01v10fv91', 'en', 1, 'https://ror.org/01v10fv91 Instituto Tecnológico de Sonora Sonora Institute of Technology'),
(80528, 'https://ror.org/05a70k539', 'en', 1, 'https://ror.org/05a70k539 Institute of Technology and Business VysokĆ” Å”kola technickĆ” a ekonomickĆ” Техническо-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ в г. Чешские Š‘ŃƒŠ“ŠµŠ¹Š¾Š²ŠøŃ†Šµ'),
(80529, 'https://ror.org/030mwrt98', 'en', 1, 'https://ror.org/030mwrt98 Nord University'),
(80530, 'https://ror.org/04jabhf80', 'en', 1, 'https://ror.org/04jabhf80 Jiangsu University of Technology ę±Ÿč‹ē†å·„å­¦é™¢'),
(80531, 'https://ror.org/01ed3w678', 'en', 1, 'https://ror.org/01ed3w678 St. Francis Hospital'),
(80532, 'https://ror.org/04q0njq38', 'no_lang_code', 1, 'https://ror.org/04q0njq38 Oncovision (Spain)'),
(80533, 'https://ror.org/01f3bhg26', 'no_lang_code', 1, 'https://ror.org/01f3bhg26 Volkswagen Group (Germany)'),
(80534, 'https://ror.org/03se72f21', 'no_lang_code', 1, 'https://ror.org/03se72f21 Zinpro (United States)'),
(80535, 'https://ror.org/05nj7my03', 'en', 1, 'https://ror.org/05nj7my03 Soproni Egyetem University of Sopron'),
(80536, 'https://ror.org/01dra3713', 'no_lang_code', 1, 'https://ror.org/01dra3713 Promega (United States)'),
(80537, 'https://ror.org/036vtmj33', 'en', 1, 'https://ror.org/036vtmj33 Advocate Illinois Masonic Medical Center'),
(80538, 'https://ror.org/01ge67z96', 'en', 1, 'https://ror.org/01ge67z96 The Royal Free Hospital'),
(80539, 'https://ror.org/03creg496', 'no_lang_code', 1, 'https://ror.org/03creg496 Nipro (Japan) ćƒ‹ćƒ—ćƒ­ę Ŗå¼ä¼šē¤¾'),
(80540, 'https://ror.org/03r4rz990', 'no_lang_code', 1, 'https://ror.org/03r4rz990 Vetcare (Finland)'),
(80541, 'https://ror.org/02bgfrc80', 'no_lang_code', 1, 'https://ror.org/02bgfrc80 MEI Pharma (United States)'),
(80542, 'https://ror.org/02arnxw97', 'en', 1, 'https://ror.org/02arnxw97 Universidad de Monterrey University of Monterrey'),
(80543, 'https://ror.org/02ac08586', 'no_lang_code', 1, 'https://ror.org/02ac08586 Roivant Sciences (Switzerland)'),
(80544, 'https://ror.org/05ghhgs79', 'en', 1, 'https://ror.org/05ghhgs79 Tra Vinh University TrĘ°į»ng ĐẔi Hį»c TrĆ  Vinh'),
(80545, 'https://ror.org/03ahhsr90', 'no_lang_code', 1, 'https://ror.org/03ahhsr90 ESI Group (Czechia)'),
(80546, 'https://ror.org/00gfstq19', 'no_lang_code', 1, 'https://ror.org/00gfstq19 Sysmex (Japan) ć‚·ć‚¹ćƒ”ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(80547, 'https://ror.org/02e8r8872', 'en', 1, 'https://ror.org/02e8r8872 L''Institut indo-canadien Shastri Shastri Indo-Canadian Institute'),
(80548, 'https://ror.org/05xrvq528', 'en', 1, 'https://ror.org/05xrvq528 Adventist Hinsdale Hospital'),
(80549, 'https://ror.org/037mj4292', 'no_lang_code', 1, 'https://ror.org/037mj4292 Defence Materials Technology Centre (Australia)'),
(80550, 'https://ror.org/009df1343', 'no_lang_code', 1, 'https://ror.org/009df1343 Regenxbio (United States)'),
(80551, 'https://ror.org/05cbf4214', 'no_lang_code', 1, 'https://ror.org/05cbf4214 Nippon Kayaku (Japan) ę—„ęœ¬åŒ–č–¬ę Ŗå¼ä¼šē¤¾'),
(80552, 'https://ror.org/001641630', 'no_lang_code', 1, 'https://ror.org/001641630 Thames Water (United Kingdom)'),
(80553, 'https://ror.org/00kyj9h67', 'no_lang_code', 1, 'https://ror.org/00kyj9h67 Horizon Therapeutics (United States)'),
(80554, 'https://ror.org/02223wv31', 'en', 1, 'https://ror.org/02223wv31 Edward Hines, Jr. VA Hospital'),
(80555, 'https://ror.org/00t2n8418', 'en', 1, 'https://ror.org/00t2n8418 The Institute of Conservation'),
(80556, 'https://ror.org/00e2fg256', 'no_lang_code', 1, 'https://ror.org/00e2fg256 Biogemma (France)'),
(80557, 'https://ror.org/05c4cm338', 'no_lang_code', 1, 'https://ror.org/05c4cm338 NetApp (United States)'),
(80558, 'https://ror.org/04ps4d441', 'no_lang_code', 1, 'https://ror.org/04ps4d441 Clovis Oncology (United States)'),
(80559, 'https://ror.org/018qbmv38', 'no_lang_code', 1, 'https://ror.org/018qbmv38 Aurubis (Germany)'),
(80560, 'https://ror.org/04wvvj212', 'en', 1, 'https://ror.org/04wvvj212 Kementerian Keuangan Ministry of Finance'),
(80561, 'https://ror.org/00j15sg62', 'en', 1, 'https://ror.org/00j15sg62 Finnish Cancer Registry Suomen SyƶpƤrekisteri'),
(80562, 'https://ror.org/04eg5s337', 'en', 1, 'https://ror.org/04eg5s337 Mediterranean Universities Union Unione delle UniversitĆ  del Mediterraneo'),
(80563, 'https://ror.org/04rbazs75', 'en', 1, 'https://ror.org/04rbazs75 P.A. Hertzen Moscow Oncology Research Institute ŠœŠŠ˜ŠžŠ˜ им. П.А. Герцена - филиал ФГБУ Ā«ŠŠœŠ˜Š Š¦Ā» ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России'),
(80564, 'https://ror.org/03cnmz153', 'en', 1, 'https://ror.org/03cnmz153 Muhammadiyah University of Surakarta univerˈsitas muhamaˈdijah suraˈkarta'),
(80565, 'https://ror.org/00fn3pa80', 'en', 1, 'https://ror.org/00fn3pa80 Nasional University Universitas Nasional'),
(80566, 'https://ror.org/03wc0ga52', 'en', 1, 'https://ror.org/03wc0ga52 Research Institute of Influenza Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гриппа ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(80567, 'https://ror.org/03n6et148', 'no_lang_code', 1, 'https://ror.org/03n6et148 Braile BiomƩdica (Brazil)'),
(80568, 'https://ror.org/02syc1z20', 'no_lang_code', 1, 'https://ror.org/02syc1z20 Iamgold (Canada)'),
(80569, 'https://ror.org/05bkpyp72', 'en', 1, 'https://ror.org/05bkpyp72 Norjan avaruuskeskus Norwegian Space Agency'),
(80570, 'https://ror.org/04ejpw604', 'no_lang_code', 1, 'https://ror.org/04ejpw604 Acumed (United States)'),
(80571, 'https://ror.org/044wv3489', 'en', 1, 'https://ror.org/044wv3489 China Railway Corporation äø­å›½é“č·Æę€»å…¬åø'),
(80572, 'https://ror.org/03gd8w426', 'en', 1, 'https://ror.org/03gd8w426 MacNeal Hospital'),
(80573, 'https://ror.org/02jsvy381', 'no_lang_code', 1, 'https://ror.org/02jsvy381 Chimerix (United States)'),
(80574, 'https://ror.org/03qf09715', 'no_lang_code', 1, 'https://ror.org/03qf09715 FLSmidth (Denmark)'),
(80575, 'https://ror.org/04vaq9436', 'no_lang_code', 1, 'https://ror.org/04vaq9436 Bluebird Bio (United States)'),
(80576, 'https://ror.org/00seaxa44', 'en', 1, 'https://ror.org/00seaxa44 Department of Home Affairs'),
(80577, 'https://ror.org/009z2z347', 'no_lang_code', 1, 'https://ror.org/009z2z347 Kowa (Japan) čˆˆå’Œę Ŗå¼ä¼šē¤¾'),
(80578, 'https://ror.org/03d9mz263', 'en', 1, 'https://ror.org/03d9mz263 Zabol University دانؓگاه Ų²Ų§ŲØŁ„'),
(80579, 'https://ror.org/05gkzhv48', 'en', 1, 'https://ror.org/05gkzhv48 Melbourne Bioinformatics'),
(80580, 'https://ror.org/05qx7aj05', 'en', 1, 'https://ror.org/05qx7aj05 Tennessee Higher Education Commission & Student Assistance Corporation'),
(80581, 'https://ror.org/03ec8vy26', 'en', 1, 'https://ror.org/03ec8vy26 Autonomous University of Aguascalientes Universidad Autónoma de Aguascalientes'),
(80582, 'https://ror.org/01jj57g95', 'no_lang_code', 1, 'https://ror.org/01jj57g95 Naturex (France)'),
(80583, 'https://ror.org/05mmnft02', 'no_lang_code', 1, 'https://ror.org/05mmnft02 Ignyta (United States)'),
(80584, 'https://ror.org/011bqgx84', 'en', 1, 'https://ror.org/011bqgx84 Universidad del Tolima University of Tolima'),
(80585, 'https://ror.org/02h1wg091', 'no_lang_code', 1, 'https://ror.org/02h1wg091 Menarini Group (Italy)'),
(80586, 'https://ror.org/02kcqb193', 'en', 1, 'https://ror.org/02kcqb193 Colt Foundation'),
(80587, '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'),
(80588, 'https://ror.org/03jp1kx71', 'en', 1, 'https://ror.org/03jp1kx71 Vidzeme University of Applied Sciences Vidzemes Augstskola'),
(80589, 'https://ror.org/03e1sv842', 'en', 1, 'https://ror.org/03e1sv842 Abdus Salam Centre for Physics عبداسلام ادارہ ŲØŲ±Ų§Ų¦Ū’ طبیعیات'),
(80590, 'https://ror.org/00xqzp862', 'en', 1, 'https://ror.org/00xqzp862 Von Hippel Lindau Alliance'),
(80591, 'https://ror.org/028p2b938', 'no_lang_code', 1, 'https://ror.org/028p2b938 Impulse Dynamics (United States)'),
(80592, 'https://ror.org/03v8jek13', 'en', 1, 'https://ror.org/03v8jek13 Association of Environmental & Engineering Geologists'),
(80593, 'https://ror.org/01rb7bk56', 'no_lang_code', 1, 'https://ror.org/01rb7bk56 Xilinx (United States)'),
(80594, 'https://ror.org/01a7r5j51', 'no_lang_code', 1, 'https://ror.org/01a7r5j51 Riemser Pharma (Germany)'),
(80595, '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'),
(80596, 'https://ror.org/05hhz4s12', 'en', 1, 'https://ror.org/05hhz4s12 Hanoi University of Industry ĐẔi hį»c CĆ“ng nghiệp HĆ  Nį»™i'),
(80597, 'https://ror.org/04afshy24', 'en', 1, 'https://ror.org/04afshy24 Thuyloi University ĐẔi hį»c Thį»§y lợi'),
(80598, 'https://ror.org/01thwj886', 'no_lang_code', 1, 'https://ror.org/01thwj886 Stora Enso (Sweden)'),
(80599, 'https://ror.org/048jsd987', 'no_lang_code', 1, 'https://ror.org/048jsd987 AiCuris (Germany)'),
(80600, 'https://ror.org/01pgswx52', 'no_lang_code', 1, 'https://ror.org/01pgswx52 Fluidigm (United States)'),
(80601, 'https://ror.org/03v8svs38', 'en', 1, 'https://ror.org/03v8svs38 Institut für Auslandsbeziehungen Institute for Foreign Cultural Relations'),
(80602, 'https://ror.org/02k4xm641', 'no_lang_code', 1, 'https://ror.org/02k4xm641 The Clorox (United States)'),
(80603, 'https://ror.org/04cnscd67', 'fr', 1, 'https://ror.org/04cnscd67 UniversitƩ Moulay Ismail de Meknes'),
(80604, 'https://ror.org/02szjhr12', 'en', 1, 'https://ror.org/02szjhr12 Renal Pathology Society'),
(80605, 'https://ror.org/01qjckx08', 'en', 1, 'https://ror.org/01qjckx08 Instituto Nacional de Medicina Genómica National Institute of Genomic Medicine'),
(80606, 'https://ror.org/0187pm092', 'no_lang_code', 1, 'https://ror.org/0187pm092 Sunesis (United States)'),
(80607, 'https://ror.org/01bjc6c68', 'en', 1, 'https://ror.org/01bjc6c68 Schweizerische Studienstiftung Swiss Study Foundation'),
(80608, 'https://ror.org/04xx5hr10', 'en', 1, 'https://ror.org/04xx5hr10 Faroese Research Council'),
(80609, 'https://ror.org/05q84se63', 'en', 1, 'https://ror.org/05q84se63 Nordic Africa Institute'),
(80610, 'https://ror.org/03yb2hp88', 'en', 1, 'https://ror.org/03yb2hp88 University of BĆ©jaĆÆa UniversitĆ© Abderrahmane Mira Ų¬Ų§Ł…Ų¹Ų© بجاية'),
(80611, 'https://ror.org/03yzv7g36', 'en', 1, 'https://ror.org/03yzv7g36 Protein Research Foundation äø€čˆ¬č²”å›£ę³•äŗŗč›‹ē™½č³Ŗē ”ē©¶å„ØåŠ±ä¼š'),
(80612, 'https://ror.org/04srd9d93', 'no_lang_code', 1, 'https://ror.org/04srd9d93 Lenovo (China) č”ęƒ³äø­å›½'),
(80613, 'https://ror.org/00axqt112', 'no_lang_code', 1, 'https://ror.org/00axqt112 Hindustan Petroleum Corporation Limited (India) ą¤¹ą¤æą¤Øą„ą¤¦ą„ą¤øą„ą¤¤ą¤¾ą¤Ø ą¤Ŗą„‡ą¤Ÿą„ą¤°ą„‹ą¤²ą¤æą¤Æą¤® निगम ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(80614, 'https://ror.org/01fm2fv39', 'en', 1, 'https://ror.org/01fm2fv39 Sanquin'),
(80615, 'https://ror.org/03gc39678', 'en', 1, 'https://ror.org/03gc39678 Antonine University الجامعة Ų§Ł„Ų£Ł†Ų·ŁˆŁ†ŁŠŲ©'),
(80616, 'https://ror.org/05sh9vm75', 'no_lang_code', 1, 'https://ror.org/05sh9vm75 Dr Falk Pharma (Germany)'),
(80617, 'https://ror.org/04xnyj354', 'no_lang_code', 1, 'https://ror.org/04xnyj354 Atlantic Copper (Spain)'),
(80618, 'https://ror.org/05k37v296', 'en', 1, 'https://ror.org/05k37v296 Defence Research and Development Organisation ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास संगठन ą¤øą¤‚ą¤°ą¤•ą„ą¤·ą¤£ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø आणि विकास ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¦Ŗą§ą¦°ą¦¤ą¦æą¦°ą¦•ą§ą¦·ą¦¾ গবেষণা ও ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø সংগঠন ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®³ą®°ąÆą®šąÆą®šą®æ ą®…ą®®ąÆˆą®ŖąÆą®ŖąÆ భారత ą°°ą°•ą±ą°·ą°£ పరిశోధన ą°…ą°­ą°æą°µą±ƒą°¦ą±ą°§ą°æ ą°øą°‚ą°øą±ą°„ ą²°ą²•ą³ą²·ą²£ą²¾ ಸಂಶೋಧನೆ ವಿಕಾಸ ą²øą²‚ą²˜ą²Ÿą²Øą³† ą“”ą“æą“«ąµ»ą“øąµ ą“±ą“æą“øąµ‡ąµ¼ą“šąµą“šąµ ą“†ąµ»ą“”ąµ ą“”ąµ†ą“µą“²ą“Ŗąµą“®ąµ†ą“Øąµą“±ąµ ą““ąµ¼ą“—ą“Øąµˆą“øąµ‡ą“·ąµ»'),
(80619, 'https://ror.org/02akb0w60', 'en', 1, 'https://ror.org/02akb0w60 Louisiana State Department of Health and Hospitals'),
(80620, 'https://ror.org/03js3tm40', 'fr', 1, 'https://ror.org/03js3tm40 Fondation JƩrƓme-Lejeune'),
(80621, 'https://ror.org/02t11pf93', 'no_lang_code', 1, 'https://ror.org/02t11pf93 Veracyte (United States)'),
(80622, 'https://ror.org/05mny9804', 'en', 1, 'https://ror.org/05mny9804 Asia Pacific League of Associations for Rheumatology'),
(80623, 'https://ror.org/0518yg160', 'no_lang_code', 1, 'https://ror.org/0518yg160 ZTE (United States)'),
(80624, 'https://ror.org/04xxyrq44', 'no_lang_code', 1, 'https://ror.org/04xxyrq44 Otonomy (United States)'),
(80625, 'https://ror.org/02kejw255', 'no_lang_code', 1, 'https://ror.org/02kejw255 Tillotts Pharma (Switzerland)'),
(80626, 'https://ror.org/03z39qd89', 'en', 1, 'https://ror.org/03z39qd89 WiSys'),
(80627, 'https://ror.org/00gpqj976', 'no_lang_code', 1, 'https://ror.org/00gpqj976 Pernod Ricard (France)'),
(80628, 'https://ror.org/00ch3t340', 'no_lang_code', 1, 'https://ror.org/00ch3t340 CRB Innovations (Canada)'),
(80629, 'https://ror.org/013mz8190', 'en', 1, 'https://ror.org/013mz8190 Laureate Education'),
(80630, 'https://ror.org/00ew7rg06', 'no_lang_code', 1, 'https://ror.org/00ew7rg06 MorphoSys (Germany)'),
(80631, 'https://ror.org/017fdbp82', 'en', 1, 'https://ror.org/017fdbp82 Wereld Kanker Onderzoek Fonds World Cancer Research Fund Netherlands'),
(80632, 'https://ror.org/04kjcjc51', 'en', 1, 'https://ror.org/04kjcjc51 Brazilian Biosciences National Laboratory Laboratório Nacional de Biociências'),
(80633, 'https://ror.org/036agwg70', 'en', 1, 'https://ror.org/036agwg70 Duta Wacana Christian University Universitas Kristen Duta Wacana'),
(80634, 'https://ror.org/007qqm030', 'no_lang_code', 1, 'https://ror.org/007qqm030 BioGaia (Sweden)'),
(80635, 'https://ror.org/00r8w8f84', 'en', 1, 'https://ror.org/00r8w8f84 Mohammed V University UniversitĆ© Mohammed-V de Rabat Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ الخامس'),
(80636, 'https://ror.org/01bhs6g30', 'no_lang_code', 1, 'https://ror.org/01bhs6g30 Novavax (United States)'),
(80637, 'https://ror.org/000628g58', 'no_lang_code', 1, 'https://ror.org/000628g58 Tata Sons (India)'),
(80638, 'https://ror.org/05p72vt26', 'en', 1, 'https://ror.org/05p72vt26 Fideicomiso de Ciencias, Tecnología e Investigación de Puerto Rico Puerto Rico Science, Technology & Research Trust'),
(80639, 'https://ror.org/04m5f1j71', 'en', 1, 'https://ror.org/04m5f1j71 Instituto Nacional de CiĆŖncia e Tecnologia em Medicina Regenerativa National Institute of Science and Technology in Regenerative Medicine'),
(80640, 'https://ror.org/02fafrk51', 'en', 1, 'https://ror.org/02fafrk51 Telemark Hospital'),
(80641, 'https://ror.org/003pzts41', 'en', 1, 'https://ror.org/003pzts41 Turkish Society of Hematology Türk Hematoloji Derneği'),
(80642, 'https://ror.org/01h2taq97', 'en', 1, 'https://ror.org/01h2taq97 Universidad de Ciencias Aplicadas y Ambientales University of Applied and Environmental Sciences'),
(80643, 'https://ror.org/05ww4z228', 'no_lang_code', 1, 'https://ror.org/05ww4z228 ESI Group (France)'),
(80644, 'https://ror.org/03rnptb60', 'en', 1, 'https://ror.org/03rnptb60 Instituto Milenio de OceanografĆ­a Millennium Institute of Oceanography'),
(80645, 'https://ror.org/033sa9s17', 'no_lang_code', 1, 'https://ror.org/033sa9s17 Myriad (Germany)'),
(80646, 'https://ror.org/01cjch873', 'no_lang_code', 1, 'https://ror.org/01cjch873 Galecto (Denmark)'),
(80647, 'https://ror.org/023yqa482', 'no_lang_code', 1, 'https://ror.org/023yqa482 Symrise (Germany)'),
(80648, 'https://ror.org/01y3dkx74', 'en', 1, 'https://ror.org/01y3dkx74 International Institute of Molecular and Cell Biology'),
(80649, 'https://ror.org/00wthd003', 'no_lang_code', 1, 'https://ror.org/00wthd003 Allergan (Ireland)'),
(80650, 'https://ror.org/05ebz1978', 'en', 1, 'https://ror.org/05ebz1978 Autry National Center'),
(80651, 'https://ror.org/05b4m7j60', 'no_lang_code', 1, 'https://ror.org/05b4m7j60 Crown Estate (United Kingdom)'),
(80652, 'https://ror.org/02s971a50', 'no_lang_code', 1, 'https://ror.org/02s971a50 De Beers (Canada)'),
(80653, 'https://ror.org/025079t78', 'it', 1, 'https://ror.org/025079t78 Regione Siciliana'),
(80654, 'https://ror.org/01hpz8r71', 'no_lang_code', 1, 'https://ror.org/01hpz8r71 Japan Lifeline (Japan)'),
(80655, 'https://ror.org/01gk55t56', 'en', 1, 'https://ror.org/01gk55t56 Islamic University of Riau Universitas Islam Riau'),
(80656, 'https://ror.org/047ctny49', 'no_lang_code', 1, 'https://ror.org/047ctny49 Bayern Innovativ (Germany)'),
(80657, 'https://ror.org/055f9sm34', 'no_lang_code', 1, 'https://ror.org/055f9sm34 Geistlich Pharma (Switzerland)'),
(80658, 'https://ror.org/027zt9171', 'en', 1, 'https://ror.org/027zt9171 Houston Methodist'),
(80659, 'https://ror.org/03xe4tt38', 'en', 1, 'https://ror.org/03xe4tt38 American Center of Oriental Research'),
(80660, 'https://ror.org/017bk0e71', 'no_lang_code', 1, 'https://ror.org/017bk0e71 CTI BioPharma (United States)'),
(80661, 'https://ror.org/02g2syx91', 'no_lang_code', 1, 'https://ror.org/02g2syx91 Eskom (South Africa)'),
(80662, 'https://ror.org/02h0ps145', 'no_lang_code', 1, 'https://ror.org/02h0ps145 GlobalFoundries (United States)'),
(80663, 'https://ror.org/006hzme35', 'no_lang_code', 1, 'https://ror.org/006hzme35 MicroPort (China)'),
(80664, 'https://ror.org/05qah4n60', 'en', 1, 'https://ror.org/05qah4n60 Research Institute for the Study of Leprosy ā€œŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃŽ Š»ŠµŠæŃ€Ń‹ā€'),
(80665, 'https://ror.org/003eaqr04', 'en', 1, 'https://ror.org/003eaqr04 Technological University of the Mixteca Universidad Tecnológica de la Mixteca'),
(80666, 'https://ror.org/04sqpjb51', 'es', 1, 'https://ror.org/04sqpjb51 Universidad de San Buenaventura, Bogota'),
(80667, 'https://ror.org/009pzqe60', 'no_lang_code', 1, 'https://ror.org/009pzqe60 Cosmote (Greece)'),
(80668, 'https://ror.org/01gp83d60', 'no_lang_code', 1, 'https://ror.org/01gp83d60 Bavarian Nordic (Denmark)'),
(80669, 'https://ror.org/026dvzy54', 'no_lang_code', 1, 'https://ror.org/026dvzy54 ESI Group (Switzerland)'),
(80670, 'https://ror.org/05wyn3p10', 'no_lang_code', 1, 'https://ror.org/05wyn3p10 Nippon Shinyaku (Japan) ę—„ęœ¬ę–°č–¬ę Ŗå¼ä¼šē¤¾'),
(80671, 'https://ror.org/00yqvtm78', 'en', 1, 'https://ror.org/00yqvtm78 University of Shahrood دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų“Ų§Ł‡Ų±ŁˆŲÆ'),
(80672, 'https://ror.org/008s67533', 'no_lang_code', 1, 'https://ror.org/008s67533 Institut MƩrieux (France)'),
(80673, 'https://ror.org/043wqnn43', 'en', 1, 'https://ror.org/043wqnn43 Fundación Comunitaria de Puerto Rico Puerto Rico Community Foundation'),
(80674, 'https://ror.org/02403s062', 'en', 1, 'https://ror.org/02403s062 Zaporizhzhya Institute of Economics and Information Technologies Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Економіки та Інформаційних Технологій'),
(80675, 'https://ror.org/00zbcgj92', 'no_lang_code', 1, 'https://ror.org/00zbcgj92 Embraer (Brazil)'),
(80676, 'https://ror.org/03125jv12', 'no_lang_code', 1, 'https://ror.org/03125jv12 Okmetic (Finland)'),
(80677, 'https://ror.org/0437ej039', 'en', 1, 'https://ror.org/0437ej039 Haut Commissariat des Nations Unies pour les RƩfugiƩs Office of the United Nations High Commissioner for Refugees'),
(80678, 'https://ror.org/01zsnaa93', 'de', 1, 'https://ror.org/01zsnaa93 Centre Allemand d''Histoire de l’Art Paris Deutsches Forum für Kunstgeschichte Paris German Center for Art History German Center for Art History Paris'),
(80679, 'https://ror.org/007ekx298', 'en', 1, 'https://ror.org/007ekx298 Government of Hungary'),
(80680, 'https://ror.org/02jfsdq79', 'no_lang_code', 1, 'https://ror.org/02jfsdq79 Amplyx Pharmaceuticals (United States)'),
(80681, 'https://ror.org/00ewnj302', 'de', 1, 'https://ror.org/00ewnj302 Deutsches Historisches Institut Rom German Historical Institute in Rome Istituto Storico Germanico di Roma'),
(80682, 'https://ror.org/00zwdnt53', 'no_lang_code', 1, 'https://ror.org/00zwdnt53 Umicore (Belgium)'),
(80683, 'https://ror.org/05egrn753', 'en', 1, 'https://ror.org/05egrn753 Institute for Environment and Human Security'),
(80684, 'https://ror.org/03hm8w204', 'no_lang_code', 1, 'https://ror.org/03hm8w204 Pharmacyclics (United States)'),
(80685, 'https://ror.org/01eaav933', 'en', 1, 'https://ror.org/01eaav933 Metrology Institute of the Republic of Slovenia'),
(80686, 'https://ror.org/008kt5750', 'no_lang_code', 1, 'https://ror.org/008kt5750 Symphogen (Denmark)'),
(80687, 'https://ror.org/00mtny680', 'en', 1, 'https://ror.org/00mtny680 Riyadh Armed Forces Hospital Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų£Ł…ŁŠŲ± سلطان Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠŲ©'),
(80688, 'https://ror.org/04jskgv42', 'no_lang_code', 1, 'https://ror.org/04jskgv42 OPKO Health (Israel)'),
(80689, 'https://ror.org/05n00ke18', 'en', 1, 'https://ror.org/05n00ke18 Regional Hospital Randers Regionshospitalet Randers'),
(80690, 'https://ror.org/02jfw4p72', 'no_lang_code', 1, 'https://ror.org/02jfw4p72 CVS Health (United States)'),
(80691, 'https://ror.org/05ydjnb78', 'en', 1, 'https://ror.org/05ydjnb78 University of Passau UniversitƤt Passau'),
(80692, 'https://ror.org/00x6ysg61', 'nl', 1, 'https://ror.org/00x6ysg61 Stichting Oogfonds Nederland'),
(80693, 'https://ror.org/01cjnnp32', 'no_lang_code', 1, 'https://ror.org/01cjnnp32 Immunetics (United States)'),
(80694, 'https://ror.org/059tsb338', 'en', 1, 'https://ror.org/059tsb338 Muscular Dystrophy Foundation Muskelsvindfonden'),
(80695, 'https://ror.org/03cpzkh11', 'no_lang_code', 1, 'https://ror.org/03cpzkh11 Siemens (Canada)'),
(80696, 'https://ror.org/03k6fqn53', 'en', 1, 'https://ror.org/03k6fqn53 An Roinn SlƔinte Department of Health'),
(80697, 'https://ror.org/05g9srn20', 'no_lang_code', 1, 'https://ror.org/05g9srn20 Aker BP (Norway)'),
(80698, 'https://ror.org/05t7fg049', 'en', 1, 'https://ror.org/05t7fg049 Puerto Rico Sea Grant'),
(80699, 'https://ror.org/039w8qr24', 'en', 1, 'https://ror.org/039w8qr24 North Bengal University ą¦‰ą¦¤ą§ą¦¤ą¦°ą¦¬ą¦™ą§ą¦— ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(80700, 'https://ror.org/020bbbm37', 'no_lang_code', 1, 'https://ror.org/020bbbm37 Sprint PNS System (United States)'),
(80701, 'https://ror.org/038mvjn28', 'en', 1, 'https://ror.org/038mvjn28 Universidad del Magdalena University of Magdalena'),
(80702, 'https://ror.org/054hq4w78', 'no_lang_code', 1, 'https://ror.org/054hq4w78 Fugro (Netherlands)'),
(80703, 'https://ror.org/00cvzzg84', 'no_lang_code', 1, 'https://ror.org/00cvzzg84 Incyte (United States)'),
(80704, 'https://ror.org/04c8vnp90', 'en', 1, 'https://ror.org/04c8vnp90 Advocate Lutheran General Hospital'),
(80705, 'https://ror.org/00n635c12', 'en', 1, 'https://ror.org/00n635c12 Leeds and York Partnership NHS Foundation Trust'),
(80706, 'https://ror.org/04vnqkx80', 'no_lang_code', 1, 'https://ror.org/04vnqkx80 Sun Pharma (Japan) ć‚µćƒ³ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(80707, 'https://ror.org/02t2qwf81', 'en', 1, 'https://ror.org/02t2qwf81 University of Peshawar Ų¬Ų§Ł…Ų¹Ū‚ پؓاور'),
(80708, 'https://ror.org/000x3c608', 'no_lang_code', 1, 'https://ror.org/000x3c608 Bruce Power (Canada)'),
(80709, 'https://ror.org/03v3jkw12', 'no_lang_code', 1, 'https://ror.org/03v3jkw12 Active Biotech (Sweden)'),
(80710, 'https://ror.org/04xk1b863', 'no_lang_code', 1, 'https://ror.org/04xk1b863 ESI Group (United Kingdom)'),
(80711, 'https://ror.org/04gm1wq32', 'en', 1, 'https://ror.org/04gm1wq32 National Commission for Science and Technology Malawi'),
(80712, 'https://ror.org/05efy4j44', 'no_lang_code', 1, 'https://ror.org/05efy4j44 Tosoh (Japan) ę±ć‚½ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(80713, 'https://ror.org/04gxnqr83', 'no_lang_code', 1, 'https://ror.org/04gxnqr83 Humana (United States)'),
(80714, 'https://ror.org/03sjcn752', 'fr', 1, 'https://ror.org/03sjcn752 Conservatoire national supƩrieur de musique et de danse de Lyon'),
(80715, 'https://ror.org/03qgfjh43', 'no_lang_code', 1, 'https://ror.org/03qgfjh43 Medline (United States)'),
(80716, 'https://ror.org/053vc2366', 'en', 1, 'https://ror.org/053vc2366 Veterans Medical Research Foundation of San Diego'),
(80717, 'https://ror.org/04rtrpb08', 'en', 1, 'https://ror.org/04rtrpb08 Schweizerische Arbeitsgruppe für klinische Krebsforschung Swiss Group For Clinical Cancer Research'),
(80718, 'https://ror.org/046wkw610', 'en', 1, 'https://ror.org/046wkw610 Federal Medical Research Centre for Psychiatry and Narcology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр психиатрии Šø наркологии имени Š’.П. Дербского'),
(80719, 'https://ror.org/05wtz9f44', 'en', 1, 'https://ror.org/05wtz9f44 Lampung University Universitas Lampung'),
(80720, 'https://ror.org/016w1r206', 'en', 1, 'https://ror.org/016w1r206 Council on Postsecondary Education'),
(80721, 'https://ror.org/02tc7rm90', 'no_lang_code', 1, 'https://ror.org/02tc7rm90 Petronas (Malaysia)'),
(80722, 'https://ror.org/04hrrh248', 'en', 1, 'https://ror.org/04hrrh248 Institute of Mathematics Instytut Matematyczny Polskiej Akademii Nauk'),
(80723, 'https://ror.org/00paezp73', 'no_lang_code', 1, 'https://ror.org/00paezp73 Ixico (United Kingdom)'),
(80724, 'https://ror.org/045h8gy65', 'no_lang_code', 1, 'https://ror.org/045h8gy65 Vale (Canada)'),
(80725, 'https://ror.org/05bhesh09', 'no_lang_code', 1, 'https://ror.org/05bhesh09 Masimo (United States)'),
(80726, 'https://ror.org/01xbsne82', 'en', 1, 'https://ror.org/01xbsne82 Bakrie University Universitas Bakrie'),
(80727, 'https://ror.org/00abnnq69', 'no_lang_code', 1, 'https://ror.org/00abnnq69 Hexal (Germany)'),
(80728, 'https://ror.org/03f37fg05', 'en', 1, 'https://ror.org/03f37fg05 Cooperative Research Centre for Mental Health'),
(80729, 'https://ror.org/01687hb54', 'en', 1, 'https://ror.org/01687hb54 Technological University of Mexico Universidad Tecnológica de México'),
(80730, 'https://ror.org/029d3gv02', 'en', 1, 'https://ror.org/029d3gv02 The Jane Goodall Institute'),
(80731, 'https://ror.org/05t6q2334', 'en', 1, 'https://ror.org/05t6q2334 Private University of the North Universidad Privada del Norte'),
(80732, 'https://ror.org/00yb5c421', 'no_lang_code', 1, 'https://ror.org/00yb5c421 Valio (Finland)'),
(80733, 'https://ror.org/019jr0130', 'en', 1, 'https://ror.org/019jr0130 Mount Sinai Hospital'),
(80734, 'https://ror.org/01whwkf30', 'pt', 1, 'https://ror.org/01whwkf30 Instituto Butantan Instituto Butantã'),
(80735, 'https://ror.org/03xqexp83', 'en', 1, 'https://ror.org/03xqexp83 Instituto Nacional de CiĆŖncia e Tecnologia de Fluidos Complexos National Institute of Science and Technology Complex Fluids'),
(80736, 'https://ror.org/00t2dw182', 'no_lang_code', 1, 'https://ror.org/00t2dw182 Zora Biosciences (Finland)'),
(80737, 'https://ror.org/04bn1qy53', 'fr', 1, 'https://ror.org/04bn1qy53 MinistĆØre de la Culture');
INSERT INTO `rors` VALUES
(80738, 'https://ror.org/010htnk72', 'no_lang_code', 1, 'https://ror.org/010htnk72 Menarini Group (Luxembourg)'),
(80739, 'https://ror.org/02yxxe041', 'pl', 1, 'https://ror.org/02yxxe041 Institute of Geological Sciences Instytut Nauk Geologicznych'),
(80740, 'https://ror.org/03c4shz64', 'en', 1, 'https://ror.org/03c4shz64 Abdelmalek EssaĆ¢di University UniversitĆ© Abdelmalek EssaĆ¢di Ų¬Ų§Ł…Ų¹Ų© Ų¹ŲØŲÆ Ų§Ł„Ł…Ų§Ł„Łƒ Ų§Ł„Ų³Ų¹ŲÆŁŠ'),
(80741, 'https://ror.org/02vkbzw76', 'no_lang_code', 1, 'https://ror.org/02vkbzw76 PAREXEL International (United States)'),
(80742, 'https://ror.org/044pzhf68', 'no_lang_code', 1, 'https://ror.org/044pzhf68 Tokyo Gas (Japan) ę±äŗ¬ē“¦ę–Æę Ŗå¼ä¼šē¤¾'),
(80743, 'https://ror.org/01t6bjk79', 'en', 1, 'https://ror.org/01t6bjk79 Russian Medical Academy of Continuous Professional Education Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ непрерывного ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(80744, 'https://ror.org/02w5edw59', 'sv', 1, 'https://ror.org/02w5edw59 VƤrmlands LƤns Landsting'),
(80745, 'https://ror.org/045ygyt79', 'no_lang_code', 1, 'https://ror.org/045ygyt79 Powertech Labs (Canada)'),
(80746, 'https://ror.org/0213nv371', 'no_lang_code', 1, 'https://ror.org/0213nv371 ViewRay (United States)'),
(80747, 'https://ror.org/04rr0m327', 'en', 1, 'https://ror.org/04rr0m327 University of Montana Western'),
(80748, 'https://ror.org/02ttsvs52', 'en', 1, 'https://ror.org/02ttsvs52 Saint Joseph Hospital'),
(80749, 'https://ror.org/05y3ezc96', 'no_lang_code', 1, 'https://ror.org/05y3ezc96 Loblaw Companies (Canada)'),
(80750, 'https://ror.org/03tx9ss94', 'no_lang_code', 1, 'https://ror.org/03tx9ss94 Cytokinetics (United States)'),
(80751, 'https://ror.org/04hkpfa76', 'no_lang_code', 1, 'https://ror.org/04hkpfa76 Denso (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‡ćƒ³ć‚½ćƒ¼'),
(80752, 'https://ror.org/01prf8716', 'no_lang_code', 1, 'https://ror.org/01prf8716 Apollomics (United States)'),
(80753, 'https://ror.org/00qxv3c44', 'fr', 1, 'https://ror.org/00qxv3c44 IRT Jules Verne'),
(80754, 'https://ror.org/00sgxyw28', 'no_lang_code', 1, 'https://ror.org/00sgxyw28 Comcast (United States)'),
(80755, 'https://ror.org/05gtb4824', 'en', 1, 'https://ror.org/05gtb4824 Universitas Bangka Belitung University of Bangka Belitung'),
(80756, 'https://ror.org/02m8mqx79', 'no_lang_code', 1, 'https://ror.org/02m8mqx79 Vaccitech (United Kingdom)'),
(80757, 'https://ror.org/012v2c923', 'no_lang_code', 1, 'https://ror.org/012v2c923 BeiGene (China)'),
(80758, 'https://ror.org/00jxaym78', 'en', 1, 'https://ror.org/00jxaym78 The Land Institute'),
(80759, 'https://ror.org/006gczr33', 'no_lang_code', 1, 'https://ror.org/006gczr33 ESI Group (Sweden)'),
(80760, 'https://ror.org/01thjgt98', 'no_lang_code', 1, 'https://ror.org/01thjgt98 Murata (Finland)'),
(80761, 'https://ror.org/05t5p0m89', 'en', 1, 'https://ror.org/05t5p0m89 Turkish Society of Cardiology Türk Kardiyoloji Derneği'),
(80762, 'https://ror.org/03bvz5p76', 'en', 1, 'https://ror.org/03bvz5p76 Jilin University of Chemical Technology å‰ęž—åŒ–å·„å­¦é™¢'),
(80763, 'https://ror.org/00805am64', 'no_lang_code', 1, 'https://ror.org/00805am64 RTI Surgical (United States)'),
(80764, 'https://ror.org/04qdzjg14', 'en', 1, 'https://ror.org/04qdzjg14 Danish Ministry of Culture Kulturministeriet'),
(80765, 'https://ror.org/01hn8xm90', 'en', 1, 'https://ror.org/01hn8xm90 Spanish Society of Family and Community Medicine'),
(80766, 'https://ror.org/02avpg944', 'no_lang_code', 1, 'https://ror.org/02avpg944 Rydberg (United States)'),
(80767, 'https://ror.org/04xc7cw12', 'no_lang_code', 1, 'https://ror.org/04xc7cw12 Dong Wha Pharm (South Korea)'),
(80768, 'https://ror.org/05ezss144', 'en', 1, 'https://ror.org/05ezss144 Duy Tan University TrĘ°į»ng ĐẔi hį»c Duy TĆ¢n'),
(80769, 'https://ror.org/05cf5b117', 'no_lang_code', 1, 'https://ror.org/05cf5b117 Ansys (United States)'),
(80770, 'https://ror.org/05tkv2291', 'en', 1, 'https://ror.org/05tkv2291 Institute of Political Studies Instytut Studiów Politycznych'),
(80771, 'https://ror.org/03t17c229', 'no_lang_code', 1, 'https://ror.org/03t17c229 Adamas Pharmaceuticals (India)'),
(80772, 'https://ror.org/05y44as61', 'en', 1, 'https://ror.org/05y44as61 Semnan University of Medical Sciences'),
(80773, 'https://ror.org/05s7cyn19', 'en', 1, 'https://ror.org/05s7cyn19 National Medical Research Center of Dentistry and Maxillofacial Surgery Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стоматологии Šø Ń‡ŠµŠ»ŃŽŃŃ‚Š½Š¾-лицевой Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(80774, 'https://ror.org/03tme2b78', 'no_lang_code', 1, 'https://ror.org/03tme2b78 Transgenomic (United States)'),
(80775, 'https://ror.org/04gw0wg65', 'en', 1, 'https://ror.org/04gw0wg65 Advocate Christ Medical Center'),
(80776, 'https://ror.org/0077rhe26', 'no_lang_code', 1, 'https://ror.org/0077rhe26 Cerecor (United States)'),
(80777, 'https://ror.org/013m0ej23', 'en', 1, 'https://ror.org/013m0ej23 Institut Périmètre de Physique Théorique Perimeter Institute'),
(80778, 'https://ror.org/059g90c15', 'no_lang_code', 1, 'https://ror.org/059g90c15 Pfizer (Canada)'),
(80779, 'https://ror.org/05ygr1m94', 'no_lang_code', 1, 'https://ror.org/05ygr1m94 Kone (Finland)'),
(80780, 'https://ror.org/05m26jn23', 'en', 1, 'https://ror.org/05m26jn23 Allerhand Institute Instytut Allerhanda'),
(80781, 'https://ror.org/033bc9f34', 'sv', 1, 'https://ror.org/033bc9f34 Kalmar County Council Landstinget i Kalmar lƤn'),
(80782, 'https://ror.org/03y9v4j03', 'en', 1, 'https://ror.org/03y9v4j03 The National Lottery Heritage Fund'),
(80783, 'https://ror.org/04d9v0a44', 'no_lang_code', 1, 'https://ror.org/04d9v0a44 Firmenich (Switzerland)'),
(80784, 'https://ror.org/001t02e86', 'en', 1, 'https://ror.org/001t02e86 Fondation universitaire Universitaire Stichting University Foundation'),
(80785, 'https://ror.org/0326cbt42', 'no_lang_code', 1, 'https://ror.org/0326cbt42 ESI Group (United States)'),
(80786, 'https://ror.org/01g9ayx80', 'no_lang_code', 1, 'https://ror.org/01g9ayx80 HemoSonics (United States)'),
(80787, 'https://ror.org/05sa44m96', 'no_lang_code', 1, 'https://ror.org/05sa44m96 Alkermes (Ireland)'),
(80788, 'https://ror.org/058h0n244', 'en', 1, 'https://ror.org/058h0n244 Shenzhen Stock Exchange'),
(80789, 'https://ror.org/04rr9xy49', 'en', 1, 'https://ror.org/04rr9xy49 United Nations Relief and Works Agency for Palestine Refugees in the Near East'),
(80790, 'https://ror.org/02x1cd136', 'no_lang_code', 1, 'https://ror.org/02x1cd136 BG Medicine (United States)'),
(80791, 'https://ror.org/01asj1396', 'en', 1, 'https://ror.org/01asj1396 Huyck Preserve and Biological Research Station'),
(80792, 'https://ror.org/01g760v14', 'en', 1, 'https://ror.org/01g760v14 Ekhaga Foundation Ekhagastiftelsen'),
(80793, 'https://ror.org/05he67b65', 'no_lang_code', 1, 'https://ror.org/05he67b65 TOA EIYO (Japan) ćƒˆćƒ¼ć‚¢ć‚Øć‚¤ćƒØćƒ¼'),
(80794, 'https://ror.org/0325pd582', 'en', 1, 'https://ror.org/0325pd582 Fauna and Flora International'),
(80795, 'https://ror.org/003ngne20', 'en', 1, 'https://ror.org/003ngne20 Ochsner Health System'),
(80796, 'https://ror.org/019jh9f64', 'no_lang_code', 1, 'https://ror.org/019jh9f64 Gojo (United States)'),
(80797, 'https://ror.org/00hq8t831', 'no_lang_code', 1, 'https://ror.org/00hq8t831 Ifm Therapeutics (United States)'),
(80798, 'https://ror.org/04qhpqj38', 'no_lang_code', 1, 'https://ror.org/04qhpqj38 Altran (France)'),
(80799, 'https://ror.org/02gfbg321', 'no_lang_code', 1, 'https://ror.org/02gfbg321 Essity (Germany)'),
(80800, 'https://ror.org/05m9vrv91', 'no_lang_code', 1, 'https://ror.org/05m9vrv91 Rogers (United States)'),
(80801, 'https://ror.org/00yqpgp96', 'sv', 1, 'https://ror.org/00yqpgp96 Drottning Silvias barn- och ungdomssjukhus'),
(80802, 'https://ror.org/01rn2d883', 'es', 1, 'https://ror.org/01rn2d883 Fundación Marques de Valdecilla'),
(80803, 'https://ror.org/05xsppr58', 'no_lang_code', 1, 'https://ror.org/05xsppr58 Italfarmaco (Italy)'),
(80804, 'https://ror.org/030vvs717', 'no_lang_code', 1, 'https://ror.org/030vvs717 Purdue Pharma (United States)'),
(80805, 'https://ror.org/03krvca73', 'no_lang_code', 1, 'https://ror.org/03krvca73 USGI Medical (United States)'),
(80806, 'https://ror.org/020p3h829', 'en', 1, 'https://ror.org/020p3h829 University of Occupational and Environmental Health Japan ē”£ę„­åŒ»ē§‘å¤§å­¦'),
(80807, 'https://ror.org/04z08z627', 'en', 1, 'https://ror.org/04z08z627 University of Molise UniversitƠ degli Studi del Molise UniversitƩ du molise'),
(80808, 'https://ror.org/00ya8kg34', 'en', 1, 'https://ror.org/00ya8kg34 Association Canadienne des ErgothƩrapeutes Canadian Association of Occupational Therapists'),
(80809, 'https://ror.org/049317064', 'en', 1, 'https://ror.org/049317064 Scientific Center of Children''s Health ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Š·Š“Š¾Ń€Š¾Š²ŃŒŃ Гетей'),
(80810, 'https://ror.org/01tftss64', 'en', 1, 'https://ror.org/01tftss64 Brain Mapping Medical Research Organization & Support Foundation'),
(80811, 'https://ror.org/01mfpjp46', 'en', 1, 'https://ror.org/01mfpjp46 Institute of Oncology NN Petrov ŠŠ˜Š˜ онкологии им. Š.Š. ŠŸŠµŃ‚Ń€Š¾Š²Š°'),
(80812, 'https://ror.org/04gjpsv96', 'no_lang_code', 1, 'https://ror.org/04gjpsv96 Insulet (United States)'),
(80813, 'https://ror.org/04b98dz04', 'en', 1, 'https://ror.org/04b98dz04 PTEN Research Foundation'),
(80814, 'https://ror.org/01bt8n520', 'no_lang_code', 1, 'https://ror.org/01bt8n520 Lion Corporation (Japan) ćƒ©ć‚¤ć‚Ŗćƒ³ę Ŗå¼ä¼šē¤¾'),
(80815, 'https://ror.org/02thd8n48', 'no_lang_code', 1, 'https://ror.org/02thd8n48 Midatech Pharma (United Kingdom)'),
(80816, 'https://ror.org/02pqjgd54', 'en', 1, 'https://ror.org/02pqjgd54 Fuzhou General Hospital of Nanjing Military Command äø­å›½äŗŗę°‘č§£ę”¾å†›č”å‹¤äæéšœéƒØé˜Ÿē¬¬ä¹ć€‡ć€‡åŒ»é™¢'),
(80817, 'https://ror.org/023qc4a07', 'en', 1, 'https://ror.org/023qc4a07 Hubrecht Institute for Developmental Biology and Stem Cell Research Hubrecht-Instituut'),
(80818, 'https://ror.org/003pa2681', 'en', 1, 'https://ror.org/003pa2681 Endocrinology Research Center ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½Š“Š¾ŠŗŃ€ŠøŠ½Š¾Š»Š¾Š³ŠøŠø'),
(80819, 'https://ror.org/027abjr46', 'en', 1, 'https://ror.org/027abjr46 Nizhny Novgorod Research Institute of Traumatology and Orthopedics ŠŸŃ€ŠøŠ²Š¾Š»Š¶ŃŠŗŠøŠ¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр'),
(80820, 'https://ror.org/013nat269', 'en', 1, 'https://ror.org/013nat269 Finlands miljƶcentral Finnish Environment Institute Suomen ympƤristƶkeskus'),
(80821, 'https://ror.org/00vxae445', 'en', 1, 'https://ror.org/00vxae445 Canadian Egg Marketing Agency'),
(80822, 'https://ror.org/04neks648', 'no_lang_code', 1, 'https://ror.org/04neks648 AlgiPharma (Norway)'),
(80823, 'https://ror.org/03j32c418', 'en', 1, 'https://ror.org/03j32c418 Muhammadiyah University Purwokerto Universitas Muhammadiyah Purwokerto'),
(80824, 'https://ror.org/019xaj585', 'en', 1, 'https://ror.org/019xaj585 Vaasa Central Hospital'),
(80825, 'https://ror.org/023g86t37', 'no_lang_code', 1, 'https://ror.org/023g86t37 Toyota Motor Corporation (Belgium)'),
(80826, 'https://ror.org/01vt69253', 'no_lang_code', 1, 'https://ror.org/01vt69253 Reva Medical (United States)'),
(80827, 'https://ror.org/02r9ghz18', 'en', 1, 'https://ror.org/02r9ghz18 Russian Ilizarov Scientific Center for Restorative Traumatology and Orthopaedics Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ā«Š’Š¾ŃŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń Ń‚Ń€Š°Š²Š¼Š°Ń‚Š¾Š»Š¾Š³ŠøŃ Šø Š¾Ń€Ń‚Š¾ŠæŠµŠ“ŠøŃĀ» имени акаГемика Š“. А. Š˜Š»ŠøŠ·Š°Ń€Š¾Š²Š°'),
(80828, 'https://ror.org/0465c8g46', 'no_lang_code', 1, 'https://ror.org/0465c8g46 Clariant (Switzerland)'),
(80829, 'https://ror.org/033dmae14', 'en', 1, 'https://ror.org/033dmae14 Royal University of Agriculture, Cambodia įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įž€įžŸįž·įž€įž˜įŸ’įž˜'),
(80830, 'https://ror.org/042jjy888', 'en', 1, 'https://ror.org/042jjy888 European Association for Palliative Care'),
(80831, 'https://ror.org/04mrrw205', 'en', 1, 'https://ror.org/04mrrw205 Autonomous University of Chihuahua Universidad Autónoma de Chihuahua'),
(80832, 'https://ror.org/045yh2d25', 'en', 1, 'https://ror.org/045yh2d25 Ivanovo Research Institute of Motherhood and Childhood named after VN Gorodkov'),
(80833, 'https://ror.org/05vna4324', 'en', 1, 'https://ror.org/05vna4324 Science and Technology Development Fund'),
(80834, 'https://ror.org/00b1tsa05', 'no_lang_code', 1, 'https://ror.org/00b1tsa05 Tata Motors (India)'),
(80835, 'https://ror.org/0434vme59', 'en', 1, 'https://ror.org/0434vme59 Centre for Health Technology and Services Research Centro de Investigação em Tecnologias e Serviços de Saúde'),
(80836, 'https://ror.org/01jfpc433', 'en', 1, 'https://ror.org/01jfpc433 Society for the History of Technology'),
(80837, 'https://ror.org/018159086', 'en', 1, 'https://ror.org/018159086 Pirogov Russian National Research Medical University Российский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. И. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(80838, 'https://ror.org/05efq3455', 'en', 1, 'https://ror.org/05efq3455 Siliwangi University Universitas Siliwangi'),
(80839, 'https://ror.org/02211g273', 'no_lang_code', 1, 'https://ror.org/02211g273 Agrisearch (United Kingdom)'),
(80840, 'https://ror.org/0562yk913', 'no_lang_code', 1, 'https://ror.org/0562yk913 Verastem (United States)'),
(80841, 'https://ror.org/00q5xgh71', 'en', 1, 'https://ror.org/00q5xgh71 Danish Medicines Agency LƦgemiddelstyrelsen'),
(80842, 'https://ror.org/025t9c657', 'no_lang_code', 1, 'https://ror.org/025t9c657 SK Life Science (United States)'),
(80843, 'https://ror.org/03ra42c27', 'no_lang_code', 1, 'https://ror.org/03ra42c27 Dexcom (United States)'),
(80844, 'https://ror.org/04yymzm67', 'en', 1, 'https://ror.org/04yymzm67 Hassiba Benbouali University of Chlef Ų¬Ų§Ł…Ų¹Ų© حسيبة بن ŲØŁˆŲ¹Ł„ŁŠ -الؓلف'),
(80845, 'https://ror.org/03yfnyw34', 'en', 1, 'https://ror.org/03yfnyw34 National Medical Research Center for Obstetrics, Gynecology and Perinatology named after Academician V.I.Kulakov of the Ministry of Healthcare of the Russian Federation Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр имени акаГемика Кулакова" ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(80846, 'https://ror.org/03bjyp708', 'no_lang_code', 1, 'https://ror.org/03bjyp708 Auris Health (United States)'),
(80847, 'https://ror.org/01nz1p872', 'no_lang_code', 1, 'https://ror.org/01nz1p872 CryoLife (United States)'),
(80848, 'https://ror.org/05c691y47', 'no_lang_code', 1, 'https://ror.org/05c691y47 BTG International (United Kingdom)'),
(80849, 'https://ror.org/05myv7q56', 'en', 1, 'https://ror.org/05myv7q56 Hochschule Geisenheim Hochschule Geisenheim University'),
(80850, 'https://ror.org/02fccce66', 'no_lang_code', 1, 'https://ror.org/02fccce66 Amarin (Ireland)'),
(80851, 'https://ror.org/05xaz7757', 'en', 1, 'https://ror.org/05xaz7757 Ministerie van Sociale Zaken en Werkgelegenheid Ministry of Social Affairs and Employment'),
(80852, 'https://ror.org/00d801g55', 'no_lang_code', 1, 'https://ror.org/00d801g55 Ipsen (France)'),
(80853, 'https://ror.org/00bgr8r13', 'en', 1, 'https://ror.org/00bgr8r13 Puerto Rico Space Grant Consortium'),
(80854, 'https://ror.org/01sdg6680', 'en', 1, 'https://ror.org/01sdg6680 WellChild'),
(80855, 'https://ror.org/055kgg913', 'no_lang_code', 1, 'https://ror.org/055kgg913 ConMed (United States)'),
(80856, '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'),
(80857, 'https://ror.org/039ks3037', 'no_lang_code', 1, 'https://ror.org/039ks3037 Nucana (United Kingdom)'),
(80858, 'https://ror.org/01qbmc548', 'no_lang_code', 1, 'https://ror.org/01qbmc548 Syncrude (Canada)'),
(80859, 'https://ror.org/052s0am34', 'it', 1, 'https://ror.org/052s0am34 Istituto Nazionale della Previdenza Sociale'),
(80860, 'https://ror.org/00endtw77', 'no_lang_code', 1, 'https://ror.org/00endtw77 Alimera Sciences (United States)'),
(80861, 'https://ror.org/01d03cj21', 'en', 1, 'https://ror.org/01d03cj21 Research Foundation of The City University of New York'),
(80862, 'https://ror.org/01k9rsw84', 'no_lang_code', 1, 'https://ror.org/01k9rsw84 Shell (Canada) Shell Canada LimitƩe'),
(80863, 'https://ror.org/02cnt7f76', 'en', 1, 'https://ror.org/02cnt7f76 Steel Foundation for Environmental Protection Technology å…¬ē›Šč²”å›£ę³•äŗŗé‰„é‹¼ē’°å¢ƒåŸŗé‡‘'),
(80864, 'https://ror.org/049rt8g11', 'no_lang_code', 1, 'https://ror.org/049rt8g11 Saputo (Canada)'),
(80865, 'https://ror.org/0305fjd69', 'en', 1, 'https://ror.org/0305fjd69 Norwegian Food Safety Authority'),
(80866, 'https://ror.org/01mqnrz37', 'en', 1, 'https://ror.org/01mqnrz37 Federal State Budgetary Institution Russian Scientific Center of Roentgenoradiology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр рентгенораГиологии"'),
(80867, 'https://ror.org/01h20c209', 'en', 1, 'https://ror.org/01h20c209 Ministarstvo Civilnih Poslova Ministry of Civil Affairs'),
(80868, 'https://ror.org/0231f9890', 'no_lang_code', 1, 'https://ror.org/0231f9890 BSH HausgerƤte (Germany)'),
(80869, 'https://ror.org/01j8exy17', 'no_lang_code', 1, 'https://ror.org/01j8exy17 Oil and Natural Gas Corporation (India)'),
(80870, 'https://ror.org/01mfdfm52', 'en', 1, 'https://ror.org/01mfdfm52 Forest Research Institute Malaysia'),
(80871, 'https://ror.org/04svthb06', 'en', 1, 'https://ror.org/04svthb06 Sten A Olsson Foundation for Research and Culture Sten A Olssons Stiftelse fƶr Forskning och Kultur'),
(80872, 'https://ror.org/02vmz1g97', 'no_lang_code', 1, 'https://ror.org/02vmz1g97 ESI Group (Germany)'),
(80873, 'https://ror.org/05v4txf92', 'no', 1, 'https://ror.org/05v4txf92 Sunnaas Hospital Sunnaas sykehus'),
(80874, 'https://ror.org/03jex2n57', 'en', 1, 'https://ror.org/03jex2n57 National Boron Research Institute Ulusal Bor Araştırma Enstitüsü'),
(80875, 'https://ror.org/02cedh792', 'no_lang_code', 1, 'https://ror.org/02cedh792 Medela (Switzerland)'),
(80876, 'https://ror.org/05dd7m743', 'no_lang_code', 1, 'https://ror.org/05dd7m743 Osprey Medical (United States)'),
(80877, 'https://ror.org/00jkpa835', 'no_lang_code', 1, 'https://ror.org/00jkpa835 Prothena (United States)'),
(80878, 'https://ror.org/04yhf7405', 'en', 1, 'https://ror.org/04yhf7405 Sydney Water'),
(80879, 'https://ror.org/04jewc589', 'en', 1, 'https://ror.org/04jewc589 Lillebaelt Hospital Sygehus LillebƦlt'),
(80880, 'https://ror.org/00eaa9p67', 'no_lang_code', 1, 'https://ror.org/00eaa9p67 Corin (United Kingdom)'),
(80881, 'https://ror.org/01dm8v457', 'no_lang_code', 1, 'https://ror.org/01dm8v457 Xcel Energy (United States)'),
(80882, 'https://ror.org/02at9hq18', 'en', 1, 'https://ror.org/02at9hq18 National Research Center for Preventive Medicine Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр ŠŸŃ€Š¾Ń„ŠøŠ»Š°ŠŗŃ‚ŠøŃ‡ŠµŃŠŗŠ¾Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½Ń‹'),
(80883, 'https://ror.org/02pgc5h43', 'no_lang_code', 1, 'https://ror.org/02pgc5h43 AOP Orphan (Austria)'),
(80884, 'https://ror.org/03qnzrx19', 'en', 1, 'https://ror.org/03qnzrx19 United Kingdom Sport'),
(80885, 'https://ror.org/02nph9e73', 'no_lang_code', 1, 'https://ror.org/02nph9e73 Amryt Pharma (Germany)'),
(80886, 'https://ror.org/05tst3487', 'de', 1, 'https://ror.org/05tst3487 ParkinsonFonds Deutschland gGmbH'),
(80887, 'https://ror.org/03z9fzp04', 'en', 1, 'https://ror.org/03z9fzp04 TrĘ°į»ng ĐẔi hį»c HĆ ng hįŗ£i Việt Nam Vietnam Maritime University'),
(80888, 'https://ror.org/05pz4yk52', 'en', 1, 'https://ror.org/05pz4yk52 Instytut Biologii Ssaków Polskiej Akademii Nauk Mammal Research Institute'),
(80889, 'https://ror.org/01h5xyq84', 'en', 1, 'https://ror.org/01h5xyq84 Historic Environment Scotland ƀrainneachd Eachdraidheil Alba'),
(80890, 'https://ror.org/02tp79578', 'no_lang_code', 1, 'https://ror.org/02tp79578 Ark Therapeutic (United States)'),
(80891, 'https://ror.org/054hg7j81', 'en', 1, 'https://ror.org/054hg7j81 Federal State Budgetary Institution "Center for Expertise and Quality Control of Medical Care" Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Центр ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ Šø ŠŗŠ¾Š½Ń‚Ń€Š¾Š»Ń качества меГицинской помощи» ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(80892, 'https://ror.org/041z6c333', 'en', 1, 'https://ror.org/041z6c333 Polish Agency for Enterprise Development Polska Agencja Rozwoju Przedsiębiorczości'),
(80893, 'https://ror.org/01xm4wg91', 'no_lang_code', 1, 'https://ror.org/01xm4wg91 Moderna Therapeutics (United States)'),
(80894, 'https://ror.org/03ea38411', 'no_lang_code', 1, 'https://ror.org/03ea38411 Water Corporation of Western Australia (Australia)'),
(80895, 'https://ror.org/021xbwv17', 'en', 1, 'https://ror.org/021xbwv17 National Economics University ĐẔi hį»c Kinh tįŗæ Quốc dĆ¢n'),
(80896, 'https://ror.org/023dg6y22', 'no_lang_code', 1, 'https://ror.org/023dg6y22 Seven Past Nine'),
(80897, 'https://ror.org/001q4kn48', 'en', 1, 'https://ror.org/001q4kn48 University of Hassan II Casablanca UniversitĆ© hassan ii de casablanca Ų¬Ų§Ł…Ų¹Ų© الحسن Ų§Ł„Ų«Ų§Ł†ŁŠ'),
(80898, 'https://ror.org/03g10x105', 'en', 1, 'https://ror.org/03g10x105 COmON Stichting Comon Foundation'),
(80899, 'https://ror.org/05g2yfd11', 'en', 1, 'https://ror.org/05g2yfd11 European Association of Cardiothoracic Anaesthesiology'),
(80900, 'https://ror.org/05myne231', 'no_lang_code', 1, 'https://ror.org/05myne231 TiDA (New Zealand)'),
(80901, 'https://ror.org/00f86gt02', 'no_lang_code', 1, 'https://ror.org/00f86gt02 Nippon Zoki (Japan) ę—„ęœ¬č‡“å™Øč£½č–¬'),
(80902, 'https://ror.org/00ddgbf74', 'nl', 1, 'https://ror.org/00ddgbf74 Long Fonds'),
(80903, 'https://ror.org/02cjszf03', 'en', 1, 'https://ror.org/02cjszf03 Institute of Remote Sensing and Digital Earth äø­å›½ē§‘å­¦é™¢åÆ¹åœ°č§‚ęµ‹äøŽę•°å­—åœ°ēƒē§‘å­¦äø­åæƒ'),
(80904, 'https://ror.org/002mmyt85', 'en', 1, 'https://ror.org/002mmyt85 Genomics Research Center, Academia Sinica äø­å¤®ē ”ē©¶é™¢åŸŗå› é«”ē ”ē©¶äø­åæƒ'),
(80905, 'https://ror.org/018etvh69', 'en', 1, 'https://ror.org/018etvh69 Kavli Fondet The Kavli Trust'),
(80906, 'https://ror.org/02ey3ab96', 'en', 1, 'https://ror.org/02ey3ab96 InnovÔciós és Technológiai Minisztérium Ministry for Innovation and Technology'),
(80907, 'https://ror.org/01ws75306', 'en', 1, 'https://ror.org/01ws75306 China Automotive Battery Research Institute å›½č”ę±½č½¦åŠØåŠ›ē”µę± ē ”ē©¶é™¢'),
(80908, 'https://ror.org/00dy5wm60', 'no_lang_code', 1, 'https://ror.org/00dy5wm60 Fidia Farmaceutici (Italy)'),
(80909, 'https://ror.org/02y7rck89', 'en', 1, 'https://ror.org/02y7rck89 Dali University 大理学院'),
(80910, 'https://ror.org/02h694m69', 'no_lang_code', 1, 'https://ror.org/02h694m69 PharmaMar (Spain)'),
(80911, 'https://ror.org/02srvn192', 'en', 1, 'https://ror.org/02srvn192 International Institute for Environment and Development'),
(80912, 'https://ror.org/029pamw34', 'en', 1, 'https://ror.org/029pamw34 Centre for Southern Hemisphere Oceans Research'),
(80913, 'https://ror.org/02vr0ne26', 'en', 1, 'https://ror.org/02vr0ne26 European Institute of Oncology Istituto Europeo di Oncologia'),
(80914, 'https://ror.org/02vcxyt85', 'es', 1, 'https://ror.org/02vcxyt85 Axencia Galega de Innovacion'),
(80915, 'https://ror.org/02pm1jf23', 'no_lang_code', 1, 'https://ror.org/02pm1jf23 Corteva (United States)'),
(80916, 'https://ror.org/02eqw3q87', 'en', 1, 'https://ror.org/02eqw3q87 Taipei City Government'),
(80917, 'https://ror.org/012feq088', 'en', 1, 'https://ror.org/012feq088 Kids'' Brain Tumor Cure Foundation'),
(80918, 'https://ror.org/01ae6h598', 'en', 1, 'https://ror.org/01ae6h598 Ufa State Petroleum Technological University Уфимский Š³Š¾ŃŃƒŠ“арственный Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Өфө Гәүләт Š½ŠµŃ„Ń‚ŃŒ техник ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(80919, 'https://ror.org/01pbhra64', 'en', 1, 'https://ror.org/01pbhra64 Morehouse School of Medicine'),
(80920, 'https://ror.org/00jqn4k83', 'en', 1, 'https://ror.org/00jqn4k83 Society for Neuroscience in Anesthesiology and Critical Care'),
(80921, 'https://ror.org/01px1ve30', 'en', 1, 'https://ror.org/01px1ve30 Shangdong Agriculture and Engineering University å±±äøœå†œäøšå·„ēØ‹å­¦é™¢'),
(80922, 'https://ror.org/01x7kw596', 'en', 1, 'https://ror.org/01x7kw596 Royal Australian and New Zealand College of Radiologists'),
(80923, 'https://ror.org/01wc2tq75', 'no_lang_code', 1, 'https://ror.org/01wc2tq75 Kogakuin University 巄学院大学'),
(80924, 'https://ror.org/003cbyt26', 'en', 1, 'https://ror.org/003cbyt26 Gansu Academy of Sciences ē”˜č‚ƒēœē§‘å­¦é™¢'),
(80925, 'https://ror.org/018gks972', 'en', 1, 'https://ror.org/018gks972 Jilin Engineering Normal University å‰ęž—å·„ēØ‹ęŠ€ęœÆåøˆčŒƒå­¦é™¢'),
(80926, 'https://ror.org/01qstkr73', 'no_lang_code', 1, 'https://ror.org/01qstkr73 EMI (United Kingdom)'),
(80927, 'https://ror.org/00vqs2b71', 'no_lang_code', 1, 'https://ror.org/00vqs2b71 JCR Pharmaceuticals (Japan) JCRćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(80928, 'https://ror.org/02vck8g64', 'en', 1, 'https://ror.org/02vck8g64 Japan Proton Accelerator Research Complex å¤§å¼·åŗ¦é™½å­åŠ é€Ÿå™Øę–½čØ­'),
(80929, 'https://ror.org/010derh63', 'en', 1, 'https://ror.org/010derh63 The VTCT Foundation'),
(80930, 'https://ror.org/024a6m208', 'en', 1, 'https://ror.org/024a6m208 The Steven G. AYA Cancer Research Fund'),
(80931, 'https://ror.org/02wqw8685', 'en', 1, 'https://ror.org/02wqw8685 TeamConnor Childhood Cancer Foundation'),
(80932, 'https://ror.org/02kn5wf75', 'en', 1, 'https://ror.org/02kn5wf75 Innlandet Hospital Trust'),
(80933, 'https://ror.org/02jhs2h97', 'no_lang_code', 1, 'https://ror.org/02jhs2h97 Concert Pharmaceuticals (United States)'),
(80934, 'https://ror.org/02747h926', 'en', 1, 'https://ror.org/02747h926 World Cancer Research Fund International'),
(80935, 'https://ror.org/02j15s898', 'en', 1, 'https://ror.org/02j15s898 The Wallace H. Coulter Department of Biomedical Engineering'),
(80936, 'https://ror.org/00xwjya15', 'de', 1, 'https://ror.org/00xwjya15 Stiftung der Deutschen Wirtschaft'),
(80937, 'https://ror.org/01tpvdp83', 'no_lang_code', 1, 'https://ror.org/01tpvdp83 Guangxi Medicinal Botanical Garden å¹æč„æčÆē”Øę¤ē‰©å›­'),
(80938, 'https://ror.org/00ng7yn96', 'en', 1, 'https://ror.org/00ng7yn96 Catholic Medical Center'),
(80939, 'https://ror.org/00twmyj12', 'it', 1, 'https://ror.org/00twmyj12 Ospedale Vincenzo Cervello'),
(80940, 'https://ror.org/01r88qh41', 'en', 1, 'https://ror.org/01r88qh41 JKA Foundation 貔団法人JKA'),
(80941, 'https://ror.org/00k1zme04', 'en', 1, 'https://ror.org/00k1zme04 Singapore Cancer Society'),
(80942, 'https://ror.org/00b6kjb41', 'en', 1, 'https://ror.org/00b6kjb41 New York State Office for People With Developmental Disabilities'),
(80943, 'https://ror.org/015bxyv30', 'en', 1, 'https://ror.org/015bxyv30 Gujarat Cancer & Research Institute'),
(80944, 'https://ror.org/00efwap41', 'en', 1, 'https://ror.org/00efwap41 Global Energy Interconnection Research Institute North America'),
(80945, 'https://ror.org/020aczd56', 'en', 1, 'https://ror.org/020aczd56 Flinders Medical Centre'),
(80946, 'https://ror.org/01eq10738', 'no_lang_code', 1, 'https://ror.org/01eq10738 Nanfang Hospital'),
(80947, 'https://ror.org/003659f07', 'en', 1, 'https://ror.org/003659f07 Aksum University'),
(80948, 'https://ror.org/00dgmsj78', 'en', 1, 'https://ror.org/00dgmsj78 Clifford Craig Foundation'),
(80949, 'https://ror.org/015bnwc11', 'no_lang_code', 1, 'https://ror.org/015bnwc11 Xi''an Honghui Hospital č„æå®‰åø‚ēŗ¢ä¼šåŒ»é™¢'),
(80950, 'https://ror.org/02qhjtc16', 'en', 1, 'https://ror.org/02qhjtc16 Pelita Harapan University'),
(80951, 'https://ror.org/00mmgx583', 'en', 1, 'https://ror.org/00mmgx583 Suratthani Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąøøąø£ąø²ąø©ąøŽąø£ą¹Œąø˜ąø²ąø™ąøµ'),
(80952, 'https://ror.org/01tspta37', 'en', 1, 'https://ror.org/01tspta37 Leibniz Institute of Polymer Research Leibniz-Institut für Polymerforschung Dresden'),
(80953, 'https://ror.org/02xvrx776', 'en', 1, 'https://ror.org/02xvrx776 Instytut Katalizy i Fizykochemii Powierzchni im. Jerzego Habera Polskiej Akademii Nauk Jerzy Haber Institute of Catalysis and Surface Chemistry, Polish Academy of Sciences'),
(80954, 'https://ror.org/002cfy541', 'en', 1, 'https://ror.org/002cfy541 Japan Diabetes Foundation ę—„ęœ¬ē³–å°æē—…č²”å›£'),
(80955, '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'),
(80956, 'https://ror.org/01drp4225', 'en', 1, 'https://ror.org/01drp4225 Multiple System Atrophy Trust'),
(80957, 'https://ror.org/02ty3a980', 'en', 1, 'https://ror.org/02ty3a980 National Institute of Animal Science'),
(80958, 'https://ror.org/02axfzt86', 'en', 1, 'https://ror.org/02axfzt86 Hexi University 河脿学院'),
(80959, 'https://ror.org/0263xn725', 'en', 1, 'https://ror.org/0263xn725 Wisconsin Academy of Sciences, Arts & Letters'),
(80960, 'https://ror.org/00knqp290', 'en', 1, 'https://ror.org/00knqp290 Chinese Academy of Inspection and Quarantine äø­å›½ę£€éŖŒę£€ē–«ē§‘å­¦ē ”ē©¶é™¢'),
(80961, 'https://ror.org/023ej5c96', 'no_lang_code', 1, 'https://ror.org/023ej5c96 GSI Environmental (United States)'),
(80962, 'https://ror.org/01t6g8w08', 'en', 1, 'https://ror.org/01t6g8w08 Scottish Natural Heritage'),
(80963, 'https://ror.org/01vf7he45', 'en', 1, 'https://ror.org/01vf7he45 Pirkanmaa Hospital District Pirkanmaan Sairaanhoitopiiri'),
(80964, 'https://ror.org/01cx85066', 'en', 1, 'https://ror.org/01cx85066 John Peter Smith Hospital'),
(80965, 'https://ror.org/00t2prd39', 'en', 1, 'https://ror.org/00t2prd39 Thaksin University ดหาวณทยาคัยทักษณณ'),
(80966, 'https://ror.org/01x5qb890', 'en', 1, 'https://ror.org/01x5qb890 Commonwealth Health Research Board'),
(80967, 'https://ror.org/02jgyam08', 'en', 1, 'https://ror.org/02jgyam08 Max Planck Institute for Demographic Research Max-Planck-Institut für Demografische Forschung'),
(80968, 'https://ror.org/0054f1w39', 'en', 1, 'https://ror.org/0054f1w39 Arizona''s Public Universities'),
(80969, 'https://ror.org/021wm5f70', 'no_lang_code', 1, 'https://ror.org/021wm5f70 Lundin (Norway)'),
(80970, 'https://ror.org/015eybs17', 'en', 1, 'https://ror.org/015eybs17 Game & Wildlife Conservation Trust'),
(80971, 'https://ror.org/00e7cvg05', 'en', 1, 'https://ror.org/00e7cvg05 Rajiv Gandhi Cancer Institute and Research Centre'),
(80972, 'https://ror.org/02k8cbn47', 'en', 1, 'https://ror.org/02k8cbn47 GSI Helmholtz Centre for Heavy Ion Research GSI Helmholtzzentrum für Schwerionenforschung'),
(80973, 'https://ror.org/0010d1q40', 'no_lang_code', 1, 'https://ror.org/0010d1q40 Grand Ɖquipement National de Calcul Intensif (France)'),
(80974, 'https://ror.org/01ep6qy98', 'no_lang_code', 1, 'https://ror.org/01ep6qy98 TransCanada (Canada)'),
(80975, 'https://ror.org/026x1ah07', 'en', 1, 'https://ror.org/026x1ah07 Virginia Department of Game and Inland Fisheries'),
(80976, 'https://ror.org/02dgwnb72', 'en', 1, 'https://ror.org/02dgwnb72 Novartis-MIT Center for Continuous Manufacturing'),
(80977, 'https://ror.org/02awpzy50', 'en', 1, 'https://ror.org/02awpzy50 Mid-America Transportation Center'),
(80978, 'https://ror.org/0273ffp90', 'en', 1, 'https://ror.org/0273ffp90 Defence Materiel Administration Fƶrsvarets materielverk'),
(80979, 'https://ror.org/02v5bck07', 'en', 1, 'https://ror.org/02v5bck07 State Administration of Work Safety å›½å®¶å®‰å…Øē”Ÿäŗ§ē›‘ē£ē®”ē†ę€»å±€'),
(80980, 'https://ror.org/002ygss10', 'en', 1, 'https://ror.org/002ygss10 Utica College'),
(80981, 'https://ror.org/01ft5vz71', 'en', 1, 'https://ror.org/01ft5vz71 Indian Institute of Technology Patna ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®Ŗą®ŸąÆą®©ą®¾'),
(80982, 'https://ror.org/01syejz95', 'en', 1, 'https://ror.org/01syejz95 Helmholtz Graduate School for Hadron and Ion Research'),
(80983, 'https://ror.org/02ba9v476', 'no_lang_code', 1, 'https://ror.org/02ba9v476 Wessex Academic Health Science Network (United Kingdom)'),
(80984, 'https://ror.org/00jjh0n63', 'en', 1, 'https://ror.org/00jjh0n63 Forschungsinstitut für Philosophie Hannover Research Institute for Philosophy Hannover'),
(80985, 'https://ror.org/00ax0a039', 'en', 1, 'https://ror.org/00ax0a039 The Hersh Foundation'),
(80986, 'https://ror.org/00yq7f263', 'en', 1, 'https://ror.org/00yq7f263 Cobalt Institute'),
(80987, 'https://ror.org/00xdnjz02', 'es', 1, 'https://ror.org/00xdnjz02 Fundación Valle del Lili'),
(80988, 'https://ror.org/00qnrsq87', 'en', 1, 'https://ror.org/00qnrsq87 Invest Northern Ireland'),
(80989, 'https://ror.org/00zbfm828', 'no_lang_code', 1, 'https://ror.org/00zbfm828 Cambridge Crystallographic Data Centre'),
(80990, 'https://ror.org/014487k66', 'en', 1, 'https://ror.org/014487k66 Canadian Nuclear Laboratories'),
(80991, 'https://ror.org/02gk7n802', 'de', 1, 'https://ror.org/02gk7n802 Deutsche Gesellschaft für Muskelkranke'),
(80992, 'https://ror.org/01taed346', 'no_lang_code', 1, 'https://ror.org/01taed346 MedDay (France)'),
(80993, 'https://ror.org/02xcxe208', 'no_lang_code', 1, 'https://ror.org/02xcxe208 Nevro (United States)'),
(80994, 'https://ror.org/005qv5j28', 'en', 1, 'https://ror.org/005qv5j28 Fundación Mundial de Diabetes Fundação Mundial de Diabetes World Diabetes Foundation'),
(80995, 'https://ror.org/02px13636', 'en', 1, 'https://ror.org/02px13636 Taiwan Nurses Association'),
(80996, 'https://ror.org/00v0z9322', 'en', 1, 'https://ror.org/00v0z9322 Moscow Institute of Physics and Technology Московский физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(80997, 'https://ror.org/02de4ka70', 'en', 1, 'https://ror.org/02de4ka70 International Breast Cancer Research Foundation'),
(80998, 'https://ror.org/020yfz786', 'en', 1, 'https://ror.org/020yfz786 European University Association'),
(80999, 'https://ror.org/00kz6qq24', 'en', 1, 'https://ror.org/00kz6qq24 S.N. Bose National Centre for Basic Sciences ą¦øą¦¤ą§ą¦Æą§‡ą¦Øą§ą¦¦ą§ą¦°ą¦Øą¦¾ą¦„ বসু ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦®ą§Œą¦²ą¦æą¦• ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦•ą§‡ą¦Øą§ą¦¦ą§ą¦°'),
(81000, 'https://ror.org/00b4ram58', 'no_lang_code', 1, 'https://ror.org/00b4ram58 Mercedes-Benz Research and Development North America (United States)'),
(81001, 'https://ror.org/02psedk13', 'en', 1, 'https://ror.org/02psedk13 Wisconsin Department of Health Services'),
(81002, 'https://ror.org/01p3c3c27', 'en', 1, 'https://ror.org/01p3c3c27 Gundersen Health System'),
(81003, 'https://ror.org/0034mdn74', 'en', 1, 'https://ror.org/0034mdn74 Adigrat University įŠ į‹²įŒįˆ«į‰µ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(81004, 'https://ror.org/01ht2b307', 'en', 1, 'https://ror.org/01ht2b307 King Salman Center for Disability Research Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ سلمان لأبحاث ال؄عاقة'),
(81005, 'https://ror.org/028861t28', 'en', 1, 'https://ror.org/028861t28 Texas A&M International University Universidad Internacional de Texas A&M'),
(81006, 'https://ror.org/02hvt5f17', 'en', 1, 'https://ror.org/02hvt5f17 Tampere University Hospital'),
(81007, 'https://ror.org/00dt9qb91', 'en', 1, 'https://ror.org/00dt9qb91 Illawarra Health and Medical Research Institute'),
(81008, 'https://ror.org/02w6k4f12', 'nl', 1, 'https://ror.org/02w6k4f12 Stichting HIV Monitoring'),
(81009, 'https://ror.org/00s1xm844', 'en', 1, 'https://ror.org/00s1xm844 Kansas Historical Society'),
(81010, 'https://ror.org/00c32gy34', 'es', 1, 'https://ror.org/00c32gy34 Universidad de Sonora University of Sonora'),
(81011, 'https://ror.org/00b2nf889', 'en', 1, 'https://ror.org/00b2nf889 Amhara Regional Health Bureau'),
(81012, 'https://ror.org/01h4fxd96', 'fr', 1, 'https://ror.org/01h4fxd96 Grenoble Ecole de Management'),
(81013, 'https://ror.org/02qsdbe73', 'pt', 1, 'https://ror.org/02qsdbe73 Instituto Uniemp'),
(81014, 'https://ror.org/009026n40', 'en', 1, 'https://ror.org/009026n40 Fatima Jinnah Women University جامعہ فاطمہ جناح ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ†'),
(81015, 'https://ror.org/003br8b23', 'no_lang_code', 1, 'https://ror.org/003br8b23 Akebia Therapeutics (United States)'),
(81016, 'https://ror.org/00t6gsr31', 'en', 1, 'https://ror.org/00t6gsr31 Leeds Cares'),
(81017, 'https://ror.org/01yjhny41', 'en', 1, 'https://ror.org/01yjhny41 Northeast Amyotrophic Lateral Sclerosis Consortium'),
(81018, 'https://ror.org/02vyk6z19', 'en', 1, 'https://ror.org/02vyk6z19 Argentine Antarctic Institute Instituto AntƔrtico Argentino'),
(81019, 'https://ror.org/01q9h8k89', 'en', 1, 'https://ror.org/01q9h8k89 Universitat de NĆ pols – L''Oriental University of Naples - L''Orientale UniversitĆ  degli Studi di Napoli L''Orientale UniversitƤt Neapel L’Orientale UniversitĆ© de naples - l''orientale'),
(81020, 'https://ror.org/02jv93662', 'en', 1, 'https://ror.org/02jv93662 Qatar National Library Ł…ŁƒŲŖŲØŲ© قطر Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(81021, 'https://ror.org/02q53mk25', 'no_lang_code', 1, 'https://ror.org/02q53mk25 Templeton Religion Trust'),
(81022, 'https://ror.org/01d7fn555', 'en', 1, 'https://ror.org/01d7fn555 Central Food Technological Research Institute ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤–ą¤¾ą¤¦ą„ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą²•ą³‡ą²‚ą²¦ą³ą²°ą³€ą²Æ ಆಹಾರ ಸಂಶೋಧನಾಲಯ ą“øąµ†ąµ»ą“Ÿąµą“°ąµ½ ą“«ąµą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æą“•ąµą“•ąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(81023, 'https://ror.org/00zxgrh39', 'en', 1, 'https://ror.org/00zxgrh39 Heilongjiang Provincial Academy of Agricultural Sciences é»‘é¾™ę±Ÿēœå†œäøšē§‘å­¦é™¢'),
(81024, 'https://ror.org/0158pzk57', 'en', 1, 'https://ror.org/0158pzk57 Philippine Social Science Council'),
(81025, 'https://ror.org/015ypce77', 'en', 1, 'https://ror.org/015ypce77 Burke Museum of Natural History and Culture'),
(81026, 'https://ror.org/01cfd6w66', 'en', 1, 'https://ror.org/01cfd6w66 Iowa Department of Agriculture and Land Stewardship'),
(81027, 'https://ror.org/019w00969', 'en', 1, 'https://ror.org/019w00969 Leibniz Centre for Tropical Marine Research Leibniz Zentrum für Marine Tropenforschung'),
(81028, 'https://ror.org/00emrpf22', 'no_lang_code', 1, 'https://ror.org/00emrpf22 JenaValve (United States)'),
(81029, 'https://ror.org/02218z997', 'en', 1, 'https://ror.org/02218z997 Royal Brompton & Harefield NHS Foundation Trust'),
(81030, 'https://ror.org/022x6b873', 'fr', 1, 'https://ror.org/022x6b873 SociƩtƩ FranƧaise de MƩdecine d''Urgence'),
(81031, 'https://ror.org/02s5x7p23', 'pt', 1, 'https://ror.org/02s5x7p23 Instituto de Tecnologia e Pesquisa'),
(81032, 'https://ror.org/01vv37n49', 'en', 1, 'https://ror.org/01vv37n49 Wuzhou University ę¢§å·žå­¦é™¢'),
(81033, 'https://ror.org/02dzkdp68', 'en', 1, 'https://ror.org/02dzkdp68 Mudanjiang Normal University ē‰”äø¹ę±ŸåøˆčŒƒå­¦é™¢'),
(81034, 'https://ror.org/00nwx8810', 'en', 1, 'https://ror.org/00nwx8810 National Council of University Research Administrators'),
(81035, 'https://ror.org/02pttbd79', 'en', 1, 'https://ror.org/02pttbd79 Sacred Heart College'),
(81036, 'https://ror.org/029dwxd81', 'en', 1, 'https://ror.org/029dwxd81 Centre in Green Chemistry and Catalysis'),
(81037, 'https://ror.org/00hn8pj83', 'en', 1, 'https://ror.org/00hn8pj83 Suzhou Vocational University č‹å·žåø‚čŒäøšå¤§å­¦'),
(81038, 'https://ror.org/01qr0q621', 'en', 1, 'https://ror.org/01qr0q621 Political Studies Association'),
(81039, 'https://ror.org/02n5xmn14', 'en', 1, 'https://ror.org/02n5xmn14 Hunter Water'),
(81040, 'https://ror.org/01k6q3j92', 'en', 1, 'https://ror.org/01k6q3j92 Miami Foundation'),
(81041, 'https://ror.org/00zfjyx93', 'en', 1, 'https://ror.org/00zfjyx93 Saskatchewan Research Council (Canada)'),
(81042, 'https://ror.org/01d1n9n57', 'en', 1, 'https://ror.org/01d1n9n57 Ministry of Agriculture & Farmers Welfare ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ किसान ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(81043, 'https://ror.org/02kj38n05', 'en', 1, 'https://ror.org/02kj38n05 Anova Health Institute'),
(81044, 'https://ror.org/01szjkb47', 'no_lang_code', 1, 'https://ror.org/01szjkb47 Implantcast (Germany)'),
(81045, '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'),
(81046, 'https://ror.org/01d7ffm04', 'en', 1, 'https://ror.org/01d7ffm04 Strang Cancer Prevention Institute'),
(81047, 'https://ror.org/01spm3d88', 'en', 1, 'https://ror.org/01spm3d88 Atrial Fibrillation NETwork Kompetenznetz Vorhofflimmern'),
(81048, 'https://ror.org/0059xpe44', 'no_lang_code', 1, 'https://ror.org/0059xpe44 Kaken Pharmaceutical (Japan) ē§‘ē ”č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(81049, 'https://ror.org/00nsyd297', 'en', 1, 'https://ror.org/00nsyd297 Widener University'),
(81050, 'https://ror.org/02f2nvw78', 'en', 1, 'https://ror.org/02f2nvw78 Australian Institute for Musculoskeletal Science'),
(81051, 'https://ror.org/00nc5f834', 'en', 1, 'https://ror.org/00nc5f834 Regional Centre for Biotechnology ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą„€ą¤Æ ą¤œą„ˆą¤µą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(81052, 'https://ror.org/00s7e4d51', 'no_lang_code', 1, 'https://ror.org/00s7e4d51 Saertex (Germany)'),
(81053, 'https://ror.org/01gx26191', 'en', 1, 'https://ror.org/01gx26191 Zhangjiagang First People''s Hospital'),
(81054, 'https://ror.org/01d25af06', 'en', 1, 'https://ror.org/01d25af06 Inter-American Foundation'),
(81055, 'https://ror.org/00f6g0567', 'en', 1, 'https://ror.org/00f6g0567 Hunter Cancer Research Alliance'),
(81056, 'https://ror.org/002rc4w13', 'en', 1, 'https://ror.org/002rc4w13 Islamia University of Bahawalpur Ų§Ų³Ł„Ų§Ł…ŪŒŪ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŪŲ§ŁˆŁ„Ł¾ŁˆŲ±'),
(81057, 'https://ror.org/00yvh2s32', 'en', 1, 'https://ror.org/00yvh2s32 Arrowhead Regional Medical Center'),
(81058, 'https://ror.org/009jy0c86', 'en', 1, 'https://ror.org/009jy0c86 Anshun University'),
(81059, 'https://ror.org/01jxjwb74', 'en', 1, 'https://ror.org/01jxjwb74 International Livestock Research Institute'),
(81060, 'https://ror.org/00pbv8f56', 'it', 1, 'https://ror.org/00pbv8f56 SocietĆ  Italiana di Cardiologia'),
(81061, 'https://ror.org/00bt9we26', 'en', 1, 'https://ror.org/00bt9we26 Ministry of Public Security of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½å…¬å®‰éƒØ'),
(81062, 'https://ror.org/0014a0n68', 'en', 1, 'https://ror.org/0014a0n68 Affiliated Hospital of Southwest Medical University č„æå—åŒ»ē§‘å¤§å­¦é™„å±žäø­åŒ»åŒ»é™¢'),
(81063, 'https://ror.org/0202bj006', 'en', 1, 'https://ror.org/0202bj006 Sheng Jing Hospital äø­å›½åŒ»ē§‘å¤§å­¦é™„å±žē››äŗ¬åŒ»é™¢'),
(81064, 'https://ror.org/02aq67p44', 'no_lang_code', 1, 'https://ror.org/02aq67p44 Mitsubishi Heavy Industries (Japan) äø‰č±é‡å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(81065, 'https://ror.org/01g9ekh39', 'en', 1, 'https://ror.org/01g9ekh39 Tokyo International University ę±äŗ¬å›½éš›å¤§å­¦'),
(81066, 'https://ror.org/000pmrk50', 'en', 1, 'https://ror.org/000pmrk50 Islamic University of Indonesia Universitas Islam Indonesia'),
(81067, 'https://ror.org/00jxshx33', 'en', 1, 'https://ror.org/00jxshx33 South Valley University Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł†ŁˆŲØ Ų§Ł„ŁˆŲ§ŲÆŁŠ'),
(81068, 'https://ror.org/02hwp6a56', 'en', 1, 'https://ror.org/02hwp6a56 Kanazawa University 金沢大学'),
(81069, 'https://ror.org/02e451q69', 'no_lang_code', 1, 'https://ror.org/02e451q69 Melinta Therapeutics (United States)'),
(81070, 'https://ror.org/0149jvn88', 'en', 1, 'https://ror.org/0149jvn88 King Saud bin Abdulaziz University for Health Sciences Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ سعود بن Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ² Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲµŲ­ŁŠŲ©'),
(81071, 'https://ror.org/019sa2256', 'en', 1, 'https://ror.org/019sa2256 Community Care'),
(81072, 'https://ror.org/009fk3b63', 'en', 1, 'https://ror.org/009fk3b63 Portsmouth Hospitals NHS Trust'),
(81073, 'https://ror.org/02ksnyp08', 'en', 1, 'https://ror.org/02ksnyp08 Ministerstwo Zdrowia Rzeczypospolitej Polskiej Ministry of Health'),
(81074, 'https://ror.org/01e3hnz98', 'en', 1, 'https://ror.org/01e3hnz98 Academia Brasileira de CiĆŖncias Brazilian Academy of Sciences'),
(81075, 'https://ror.org/027nzpm35', 'en', 1, 'https://ror.org/027nzpm35 Ellen MacArthur Foundation'),
(81076, 'https://ror.org/025mtxh67', 'no_lang_code', 1, 'https://ror.org/025mtxh67 FrieslandCampina (Netherlands)'),
(81077, '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'),
(81078, 'https://ror.org/02vnjj382', 'en', 1, 'https://ror.org/02vnjj382 Krishna Institute of Medical Sciences Deemed University'),
(81079, 'https://ror.org/02mv4jh42', 'en', 1, 'https://ror.org/02mv4jh42 Association Canadienne des InfirmiĆØres en Oncologie Canadian Association of Nurses in Oncology'),
(81080, 'https://ror.org/027ras364', 'pt', 1, 'https://ror.org/027ras364 IPO Porto'),
(81081, 'https://ror.org/02mg36m74', 'en', 1, 'https://ror.org/02mg36m74 Rajamangala University of Technology Phra Nakhon ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøžąø£ąø°ąø™ąø„ąø£'),
(81082, 'https://ror.org/00sryr473', 'en', 1, 'https://ror.org/00sryr473 Malaysian Society of Nephrology'),
(81083, 'https://ror.org/01n179w26', 'en', 1, 'https://ror.org/01n179w26 Guangzhou Regenerative Medicine and Health Guangdong Laboratory å¹æå·žå†ē”ŸåŒ»å­¦äøŽå„åŗ·å¹æäøœēœå®žéŖŒå®¤'),
(81084, 'https://ror.org/021a26605', 'en', 1, 'https://ror.org/021a26605 Tokyo University of Technology ę±äŗ¬å·„ē§‘å¤§å­¦'),
(81085, 'https://ror.org/01hb2ne47', 'en', 1, 'https://ror.org/01hb2ne47 Kieikai Research Foundation'),
(81086, 'https://ror.org/01trfvq12', 'en', 1, 'https://ror.org/01trfvq12 NASA Exoplanet Science Institute'),
(81087, 'https://ror.org/017zx9g19', 'en', 1, 'https://ror.org/017zx9g19 Iranian Research Organization for Science and Technology'),
(81088, 'https://ror.org/019bedz31', 'en', 1, 'https://ror.org/019bedz31 Triological Society'),
(81089, 'https://ror.org/01jxa2z23', 'en', 1, 'https://ror.org/01jxa2z23 Anhui Development and Reform Commission å®‰å¾½ēœå‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(81090, 'https://ror.org/00ts7br76', 'en', 1, 'https://ror.org/00ts7br76 Cerebral Palsy Alliance Research Foundation'),
(81091, 'https://ror.org/01wftfc57', 'fr', 1, 'https://ror.org/01wftfc57 Inserm Transfert'),
(81092, 'https://ror.org/005mpbw70', 'pt', 1, 'https://ror.org/005mpbw70 Universidade Nove de Julho'),
(81093, 'https://ror.org/02kn1zm32', 'en', 1, 'https://ror.org/02kn1zm32 Southeastern Transportation Research, Innovation, Development and Education Center'),
(81094, 'https://ror.org/00pjnm784', 'en', 1, 'https://ror.org/00pjnm784 Immune Tolerance Network'),
(81095, 'https://ror.org/00s3z8519', 'en', 1, 'https://ror.org/00s3z8519 Johnson C. Smith University'),
(81096, 'https://ror.org/02wj29p03', 'en', 1, 'https://ror.org/02wj29p03 Southern Regional Education Board'),
(81097, 'https://ror.org/02e6sh902', 'en', 1, 'https://ror.org/02e6sh902 Uganda Cancer Institute'),
(81098, 'https://ror.org/025gq5q04', 'en', 1, 'https://ror.org/025gq5q04 Institute of Urban Environment äø­å›½ē§‘å­¦é™¢åŸŽåø‚ēŽÆå¢ƒē ”ē©¶ę‰€'),
(81099, 'https://ror.org/001zbj766', 'en', 1, 'https://ror.org/001zbj766 Mathematical Research Institute of Oberwolfach Mathematisches Forschungsinstitut Oberwolfach'),
(81100, 'https://ror.org/00a1z4k38', 'no_lang_code', 1, 'https://ror.org/00a1z4k38 Nordic Nanovector (Norway)'),
(81101, 'https://ror.org/029tnqt29', 'fr', 1, 'https://ror.org/029tnqt29 University of Moncton UniversitƩ de Moncton'),
(81102, 'https://ror.org/00701k896', 'en', 1, 'https://ror.org/00701k896 Mathematical Association of America'),
(81103, 'https://ror.org/01zr73v18', 'no_lang_code', 1, 'https://ror.org/01zr73v18 Shenyang Jianzhu University ę²ˆé˜³å»ŗē­‘å¤§å­¦'),
(81104, 'https://ror.org/0238k6k75', 'tr', 1, 'https://ror.org/0238k6k75 Bağcılar Eğitim ve Araştırma Hastanesi'),
(81105, 'https://ror.org/025w6c475', 'en', 1, 'https://ror.org/025w6c475 Seattle Foundation'),
(81106, 'https://ror.org/015t7hs32', 'en', 1, 'https://ror.org/015t7hs32 Association of American Colleges and Universities'),
(81107, 'https://ror.org/02fvkg758', 'en', 1, 'https://ror.org/02fvkg758 Middle Technical University الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„ŁˆŲ³Ų·Ł‰'),
(81108, 'https://ror.org/010spe038', 'en', 1, 'https://ror.org/010spe038 National Film Preservation Foundation'),
(81109, 'https://ror.org/01d3m1d52', 'en', 1, 'https://ror.org/01d3m1d52 Saskatchewan Canola Development Commission'),
(81110, 'https://ror.org/02nw97x94', 'en', 1, 'https://ror.org/02nw97x94 Swami Rama Himalayan University ą¤øą„ą¤µą¤¾ą¤®ą„€ राम हिमालयन ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(81111, 'https://ror.org/02n53wv45', 'de', 1, 'https://ror.org/02n53wv45 Bavarian State Ministry of the Environment and Consumer Protection Bayerisches Staatsministerium für Umwelt und Verbraucherschutz'),
(81112, 'https://ror.org/02yvsmh51', 'en', 1, 'https://ror.org/02yvsmh51 Helmholtz Alberta Initiative'),
(81113, 'https://ror.org/0022h3p69', 'en', 1, 'https://ror.org/0022h3p69 Canadian Orthopaedic Trauma Society'),
(81114, 'https://ror.org/00e99w454', 'en', 1, 'https://ror.org/00e99w454 Scotland and Northern Ireland Forum for Environmental Research'),
(81115, 'https://ror.org/02wxks544', 'en', 1, 'https://ror.org/02wxks544 Gray Foundation'),
(81116, 'https://ror.org/02f5b7n18', 'en', 1, 'https://ror.org/02f5b7n18 Max Planck Institut für Chemie - Otto Hahn Institut Max Planck Institute for Chemistry'),
(81117, 'https://ror.org/02zkjpt31', 'en', 1, 'https://ror.org/02zkjpt31 Virginia G Piper Charitable Trust'),
(81118, 'https://ror.org/027fn9x30', 'en', 1, 'https://ror.org/027fn9x30 Polar Research Institute of China äø­å›½ęžåœ°ē ”ē©¶äø­åæƒ'),
(81119, 'https://ror.org/024z2zn95', 'en', 1, 'https://ror.org/024z2zn95 Hong Kong Anti-Cancer Society'),
(81120, 'https://ror.org/01zcp1a93', 'en', 1, 'https://ror.org/01zcp1a93 National Institute for Health Care Management');
INSERT INTO `rors` VALUES
(81121, 'https://ror.org/02v27yb50', 'no_lang_code', 1, 'https://ror.org/02v27yb50 Blue Ridge Research and Consulting (United States)'),
(81122, 'https://ror.org/01vekys64', 'en', 1, 'https://ror.org/01vekys64 Max Planck Institute of Quantum Optics Max-Planck-Institut für Quantenoptik'),
(81123, 'https://ror.org/02dm2pb39', 'en', 1, 'https://ror.org/02dm2pb39 Nederlandse Federatie van Universitair Medische Centra Netherlands Federation of University Medical Centres'),
(81124, 'https://ror.org/025cj6e44', 'en', 1, 'https://ror.org/025cj6e44 Poznan Supercomputing and Networking Center'),
(81125, 'https://ror.org/00q2dta10', 'en', 1, 'https://ror.org/00q2dta10 Research Center for Ecology and Environment of Central Asia äø­å›½ē§‘å­¦é™¢äø­äŗšē”Ÿę€äøŽēŽÆå¢ƒē ”ē©¶äø­åæƒ'),
(81126, 'https://ror.org/02apq7b82', 'en', 1, 'https://ror.org/02apq7b82 National Museum of Marine Biology and Aquarium'),
(81127, 'https://ror.org/02684h094', 'en', 1, 'https://ror.org/02684h094 Institute for Health Metrics and Evaluation'),
(81128, 'https://ror.org/00te2x188', 'en', 1, 'https://ror.org/00te2x188 Institute for Scientific Interchange Istituto per l''Interscambio Scientifico'),
(81129, 'https://ror.org/018es5w79', 'no_lang_code', 1, 'https://ror.org/018es5w79 Kairos (United States)'),
(81130, 'https://ror.org/0282ypk29', 'en', 1, 'https://ror.org/0282ypk29 Childhood Arthritis and RheumatolĀ­ogy Research Alliance'),
(81131, 'https://ror.org/00mgfdc89', 'en', 1, 'https://ror.org/00mgfdc89 Klinička Bolnica Dubrava University Hospital Dubrava'),
(81132, 'https://ror.org/00brrdb04', 'fr', 1, 'https://ror.org/00brrdb04 Conseil rƩgional du Centre-Val de Loire'),
(81133, 'https://ror.org/00ap24592', 'en', 1, 'https://ror.org/00ap24592 National Institute of Ecology źµ­ė¦½ģƒķƒœģ›'),
(81134, 'https://ror.org/02p179j44', 'en', 1, 'https://ror.org/02p179j44 College of Staten Island'),
(81135, 'https://ror.org/02ybsyy31', 'en', 1, 'https://ror.org/02ybsyy31 Jack Brockhoff Foundation'),
(81136, 'https://ror.org/0027frf26', 'en', 1, 'https://ror.org/0027frf26 Kaiser Permanente Washington Health Research Institute'),
(81137, 'https://ror.org/01kga0z77', 'en', 1, 'https://ror.org/01kga0z77 Institute of Solid State Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии тверГого тела Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(81138, 'https://ror.org/02cnh8416', 'en', 1, 'https://ror.org/02cnh8416 Methodist Hospital Foundation'),
(81139, 'https://ror.org/01p9g6b97', 'en', 1, 'https://ror.org/01p9g6b97 State Ethnic Affairs Commission'),
(81140, 'https://ror.org/020ktwj02', 'en', 1, 'https://ror.org/020ktwj02 African Union'),
(81141, 'https://ror.org/02rkzhe22', 'en', 1, 'https://ror.org/02rkzhe22 Mote Marine Laboratory'),
(81142, 'https://ror.org/006vs7897', 'en', 1, 'https://ror.org/006vs7897 National University of San Marcos Universidad Nacional Mayor de San Marcos'),
(81143, 'https://ror.org/014rqt829', 'no_lang_code', 1, 'https://ror.org/014rqt829 Rakuno Gakuen University é…Ŗč¾²å­¦åœ’å¤§å­¦'),
(81144, 'https://ror.org/02bpap860', 'en', 1, 'https://ror.org/02bpap860 State Key Laboratory of Information Engineering in Surveying Mapping and Remote Sensing'),
(81145, 'https://ror.org/02vbfm330', 'no_lang_code', 1, 'https://ror.org/02vbfm330 MannKind Corporation (United States)'),
(81146, 'https://ror.org/01ntx4j68', 'en', 1, 'https://ror.org/01ntx4j68 Kurdistan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲÆŲ±Ł…Ų§Ł†ŪŒ کردستان'),
(81147, 'https://ror.org/01pe8xs92', 'no_lang_code', 1, 'https://ror.org/01pe8xs92 Oracle (United Kingdom)'),
(81148, 'https://ror.org/02axfcj91', 'no_lang_code', 1, 'https://ror.org/02axfcj91 Desitin Arzneimittel (Germany)'),
(81149, 'https://ror.org/02mr3ar13', 'en', 1, 'https://ror.org/02mr3ar13 Shandong University of Technology å±±äøœē†å·„å¤§å­¦'),
(81150, 'https://ror.org/01k00f941', 'en', 1, 'https://ror.org/01k00f941 Natural Hazards Research Platform'),
(81151, 'https://ror.org/00rrhf939', 'fr', 1, 'https://ror.org/00rrhf939 Fondation FondaMental'),
(81152, 'https://ror.org/02zc7ec14', 'no_lang_code', 1, 'https://ror.org/02zc7ec14 Universal Display Corporation'),
(81153, 'https://ror.org/000nes056', 'en', 1, 'https://ror.org/000nes056 Swedish Transport Administration'),
(81154, 'https://ror.org/00e7dfm13', 'en', 1, 'https://ror.org/00e7dfm13 Centre for Medical Systems Biology'),
(81155, 'https://ror.org/000wh6t45', 'en', 1, 'https://ror.org/000wh6t45 Llywodraeth Cymru Welsh Government'),
(81156, 'https://ror.org/01h9g5w38', 'en', 1, 'https://ror.org/01h9g5w38 Charles Darwin Foundation'),
(81157, 'https://ror.org/00y006049', 'en', 1, 'https://ror.org/00y006049 British Society for Research on Ageing'),
(81158, 'https://ror.org/001gmya32', 'en', 1, 'https://ror.org/001gmya32 John Carroll University'),
(81159, 'https://ror.org/01pxe3r04', 'en', 1, 'https://ror.org/01pxe3r04 University of Nizwa Ų¬Ų§Ł…Ų¹Ų© Ł†Ų²ŁˆŁ‰'),
(81160, 'https://ror.org/010g30191', 'en', 1, 'https://ror.org/010g30191 National Institute of Development Administration ąøŖąø–ąø²ąøšąø±ąø™ąøšąø±ąø“ąø‘ąø“ąø•ąøžąø±ąø’ąø™ąøšąø£ąø“ąø«ąø²ąø£ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(81161, 'https://ror.org/02856yd31', 'en', 1, 'https://ror.org/02856yd31 Yorkshire Forward'),
(81162, 'https://ror.org/01e7csr82', 'en', 1, 'https://ror.org/01e7csr82 Qinghai University for Nationalities é’ęµ·ę°‘ę—å¤§å­¦'),
(81163, 'https://ror.org/00wvvxx15', 'no_lang_code', 1, 'https://ror.org/00wvvxx15 GemVax & KAEL (South Korea) 젬백스 & ģ¹“ģ—˜'),
(81164, 'https://ror.org/02c4cbt39', 'en', 1, 'https://ror.org/02c4cbt39 Louisiana State University in Shreveport UniversitĆ© d''Ɖtat de louisiane Ć  shreveport'),
(81165, 'https://ror.org/01pvdd334', 'en', 1, 'https://ror.org/01pvdd334 Izhevsk State Technical University Ижевский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. Š¢. Калашникова'),
(81166, 'https://ror.org/01sj5ez28', 'en', 1, 'https://ror.org/01sj5ez28 Suan Sunandha Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąø§ąø™ąøŖąøøąø™ąø±ąø™ąø—ąø²'),
(81167, 'https://ror.org/00655qp86', 'en', 1, 'https://ror.org/00655qp86 National Time Service Center äø­å›½ē§‘å­¦é™¢å›½å®¶ęŽˆę—¶äø­åæƒ'),
(81168, 'https://ror.org/027pr6c67', 'en', 1, 'https://ror.org/027pr6c67 Chuo Kikuu cha Afya na Sayansi Shirikishi Muhimbili Muhimbili University of Health and Allied Sciences'),
(81169, 'https://ror.org/01j99nc54', 'en', 1, 'https://ror.org/01j99nc54 Irkutsk State University Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(81170, 'https://ror.org/01mzspr34', 'no_lang_code', 1, 'https://ror.org/01mzspr34 Tandem Diabetes Care (United States)'),
(81171, 'https://ror.org/00s93j442', 'no_lang_code', 1, 'https://ror.org/00s93j442 Spark Therapeutics (United States)'),
(81172, 'https://ror.org/00ftbmy59', 'en', 1, 'https://ror.org/00ftbmy59 State Key Laboratory of Oil and Gas Reservoir Geology and Exploitation ę²¹ę°”č—åœ°č“ØåŠå¼€å‘å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(81173, 'https://ror.org/015wndh26', 'en', 1, 'https://ror.org/015wndh26 European Association for Endoscopic Surgery'),
(81174, 'https://ror.org/01eywvb34', 'en', 1, 'https://ror.org/01eywvb34 Ahmanson Foundation'),
(81175, 'https://ror.org/023cbka75', 'en', 1, 'https://ror.org/023cbka75 Xinjiang Academy of Agricultural Sciences ę–°ē–†å†œäøšē§‘å­¦é™¢'),
(81176, 'https://ror.org/022q96t77', 'en', 1, 'https://ror.org/022q96t77 JFE 21st Century Foundation JFE21世瓀貔団'),
(81177, 'https://ror.org/02p9mk956', 'en', 1, 'https://ror.org/02p9mk956 Agensi Nuklear Malaysia Malaysian Nuclear Agency'),
(81178, 'https://ror.org/01655nh08', 'en', 1, 'https://ror.org/01655nh08 New England Research Institutes'),
(81179, 'https://ror.org/01bcdmq48', 'en', 1, 'https://ror.org/01bcdmq48 Hamline University'),
(81180, 'https://ror.org/01cntdd82', 'en', 1, 'https://ror.org/01cntdd82 Santa Monica College'),
(81181, 'https://ror.org/01f7ent21', 'de', 1, 'https://ror.org/01f7ent21 Hermann und Lilly Schilling-Stiftung'),
(81182, 'https://ror.org/005e8tf31', 'pt', 1, 'https://ror.org/005e8tf31 Centro de Desenvolvimento da Tecnologia Nuclear'),
(81183, 'https://ror.org/01n92vv28', 'en', 1, 'https://ror.org/01n92vv28 Oncode Institute'),
(81184, 'https://ror.org/00wdk8w52', 'en', 1, 'https://ror.org/00wdk8w52 South African Association for Marine Biological Research'),
(81185, 'https://ror.org/02p4mwa83', 'en', 1, 'https://ror.org/02p4mwa83 Western Health'),
(81186, 'https://ror.org/02qma2225', 'en', 1, 'https://ror.org/02qma2225 Lincoln Memorial University'),
(81187, 'https://ror.org/02jakbh21', 'en', 1, 'https://ror.org/02jakbh21 United States Army War College'),
(81188, 'https://ror.org/00cj7p033', 'no_lang_code', 1, 'https://ror.org/00cj7p033 Mateon Therapeutics (United States)'),
(81189, 'https://ror.org/016z2bp30', 'en', 1, 'https://ror.org/016z2bp30 National Jewish Health'),
(81190, 'https://ror.org/00seraz22', 'en', 1, 'https://ror.org/00seraz22 Air Force Engineering University 中国人民解放军空军巄程大学'),
(81191, 'https://ror.org/01fm69p79', 'es', 1, 'https://ror.org/01fm69p79 Sociedad EspaƱola de Reumatologƭa'),
(81192, 'https://ror.org/00ypzd005', 'en', 1, 'https://ror.org/00ypzd005 Australian Trade and Investment Commission'),
(81193, 'https://ror.org/02pbat654', 'en', 1, 'https://ror.org/02pbat654 American Institute of Steel Construction'),
(81194, 'https://ror.org/00w9knq58', 'en', 1, 'https://ror.org/00w9knq58 Ministry of National Education, Vocational Training, Higher Education and Scientific Research MinistĆØre de l''Education Nationale, de la Formation Professionnelle, de l''Enseignement SupĆ©rieur & de la Recherche Scientifique Ų§Ł„Ł…Ł…Ł„ŁƒŲ© Ų§Ł„Ł…ŲŗŲ±ŲØŁŠŲ© - وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© و Ų§Ł„ŲŖŁƒŁˆŁŠŁ† Ų§Ł„Ł…Ł‡Ł†ŁŠ و Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ و البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(81195, 'https://ror.org/0064zg438', 'en', 1, 'https://ror.org/0064zg438 Izaak Walton Killam Health Centre'),
(81196, 'https://ror.org/01qzc0f54', 'en', 1, 'https://ror.org/01qzc0f54 Qingdao University of Technology é’å²›ē†å·„å¤§å­¦'),
(81197, 'https://ror.org/028jnma48', 'en', 1, 'https://ror.org/028jnma48 Metakids'),
(81198, 'https://ror.org/02h1qsm74', 'no_lang_code', 1, 'https://ror.org/02h1qsm74 Psyadon Pharmaceuticals (United States)'),
(81199, 'https://ror.org/00xn28y13', 'en', 1, 'https://ror.org/00xn28y13 Chinese Society of Endocrinology äø­å›½å†…åˆ†ę³Œå­¦ä¼š'),
(81200, 'https://ror.org/009nawz64', 'en', 1, 'https://ror.org/009nawz64 Ministry of Transportation of Ontario MinistĆØre des Transports'),
(81201, 'https://ror.org/02s65tk16', 'en', 1, 'https://ror.org/02s65tk16 Centro de Investigación Biomédica en Red de Fisiopatología de la Obesidad y Nutrición Spanish Biomedical Research Centre in Physiopathology of Obesity and Nutrition'),
(81202, 'https://ror.org/01hrxxx24', 'en', 1, 'https://ror.org/01hrxxx24 Arturo Prat University Universidad Arturo Prat'),
(81203, 'https://ror.org/01e69j385', 'en', 1, 'https://ror.org/01e69j385 All-Russian Institute of Plant Protection Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ защиты растений'),
(81204, 'https://ror.org/0086v0m15', 'en', 1, 'https://ror.org/0086v0m15 Consumer Healthcare Products Association'),
(81205, 'https://ror.org/02evnh647', 'en', 1, 'https://ror.org/02evnh647 Saitama University åŸ¼ēŽ‰å¤§å­¦'),
(81206, 'https://ror.org/02c4zkr79', 'en', 1, 'https://ror.org/02c4zkr79 Ekiti State University'),
(81207, 'https://ror.org/01y7m0485', 'en', 1, 'https://ror.org/01y7m0485 Saginaw Valley State University'),
(81208, 'https://ror.org/02xjrkt08', 'en', 1, 'https://ror.org/02xjrkt08 Second Affiliated Hospital of Soochow University'),
(81209, 'https://ror.org/02jfbm483', 'en', 1, 'https://ror.org/02jfbm483 BioTechMed-Graz'),
(81210, 'https://ror.org/02knhje64', 'en', 1, 'https://ror.org/02knhje64 Rajamangala University of Technology Srivijaya ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøØąø£ąøµąø§ąø“ąøŠąø±ąø¢'),
(81211, 'https://ror.org/01t81sv44', 'en', 1, 'https://ror.org/01t81sv44 University of Information Technology and Management in Rzeszow Wyższa Szkoła Informatyki i Zarządzania w Rzeszowie'),
(81212, 'https://ror.org/00kn38412', 'en', 1, 'https://ror.org/00kn38412 Tourettes Action'),
(81213, 'https://ror.org/01xtcza13', 'pl', 1, 'https://ror.org/01xtcza13 Military Institute of Aviation Medicine Wojskowy Instytut Medycyny Lotniczej'),
(81214, 'https://ror.org/01b8rza40', 'en', 1, 'https://ror.org/01b8rza40 Louisiana State University Agricultural Center'),
(81215, 'https://ror.org/00epe0j70', 'en', 1, 'https://ror.org/00epe0j70 Shanghai Municipal Agricultural Commission äøŠęµ·åø‚å†œäøšå§”å‘˜ä¼š'),
(81216, 'https://ror.org/009msm672', 'en', 1, 'https://ror.org/009msm672 Wolkite University'),
(81217, 'https://ror.org/00073tb80', 'en', 1, 'https://ror.org/00073tb80 State Key Laboratory of Pollution Control and Resource Reuse ę±”ęŸ“ęŽ§åˆ¶äøŽčµ„ęŗåŒ–ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(81218, 'https://ror.org/01xxp6985', 'no_lang_code', 1, 'https://ror.org/01xxp6985 Kōchi University 高矄大学'),
(81219, 'https://ror.org/0203tey58', 'nl', 1, 'https://ror.org/0203tey58 Nederlandse Vereniging voor Gastroenterologie'),
(81220, 'https://ror.org/02df7gw66', 'en', 1, 'https://ror.org/02df7gw66 Centre of Excellence in Mathematics'),
(81221, 'https://ror.org/02k51ms15', 'en', 1, 'https://ror.org/02k51ms15 Society of the Cincinnati'),
(81222, 'https://ror.org/02e21yv44', 'en', 1, 'https://ror.org/02e21yv44 Society of Anesthesia and Sleep Medicine'),
(81223, 'https://ror.org/02m8tb249', 'fr', 1, 'https://ror.org/02m8tb249 UniversitƩ Sultan Moulay Slimane'),
(81224, 'https://ror.org/01e5mdj42', 'en', 1, 'https://ror.org/01e5mdj42 Florida Polytechnic University'),
(81225, 'https://ror.org/00shc0s02', 'en', 1, 'https://ror.org/00shc0s02 Sobolev Institute of Mathematics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики им. Š”. Š›. Доболева Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(81226, 'https://ror.org/029man787', 'en', 1, 'https://ror.org/029man787 Luoyang Normal University ę“›é˜³åøˆčŒƒå­¦é™¢'),
(81227, 'https://ror.org/016qzqe77', 'en', 1, 'https://ror.org/016qzqe77 Danish Football Association Dansk Boldspil-Union'),
(81228, 'https://ror.org/01h3fm945', 'en', 1, 'https://ror.org/01h3fm945 University College of Medical Sciences'),
(81229, 'https://ror.org/02gqgne03', 'en', 1, 'https://ror.org/02gqgne03 American University of the Middle East الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في الؓرق Ų§Ł„Ų£ŁˆŲ³Ų·'),
(81230, 'https://ror.org/00s97k668', 'en', 1, 'https://ror.org/00s97k668 National Center for Mathematics and Interdisciplinary Sciences äø­å›½ē§‘å­¦é™¢å›½å®¶ę•°å­¦äøŽäŗ¤å‰ē§‘å­¦äø­åæƒ'),
(81231, 'https://ror.org/00z1gwf89', 'en', 1, 'https://ror.org/00z1gwf89 Shenzhen Research Institute of Big Data ę·±åœ³åø‚å¤§ę•°ę®ē ”ē©¶é™¢'),
(81232, 'https://ror.org/020fr6y52', 'en', 1, 'https://ror.org/020fr6y52 Administration of Ocean and Fisheries of Guangdong Province'),
(81233, 'https://ror.org/00ezb6p66', 'de', 1, 'https://ror.org/00ezb6p66 Marga und Walter Boll - Stiftung'),
(81234, 'https://ror.org/0053n5071', 'en', 1, 'https://ror.org/0053n5071 UniversitƩ west chester de pennsylvanie West Chester University'),
(81235, 'https://ror.org/012ak5d18', 'en', 1, 'https://ror.org/012ak5d18 Mauritius Research Council'),
(81236, 'https://ror.org/01jgzvw27', 'en', 1, 'https://ror.org/01jgzvw27 The Lowy Medical Research Institute'),
(81237, 'https://ror.org/01d6qxv05', 'en', 1, 'https://ror.org/01d6qxv05 Monmouth University Universidad de Monmouth'),
(81238, 'https://ror.org/01ew38b77', 'en', 1, 'https://ror.org/01ew38b77 Akademia Techniczno-Humanistyczna w Bielsku-Białej University of Bielsko-Biała'),
(81239, 'https://ror.org/00g8d1q08', 'en', 1, 'https://ror.org/00g8d1q08 State Key Laboratory of Building Safety and Built Environment'),
(81240, 'https://ror.org/02p1wzv32', 'nl', 1, 'https://ror.org/02p1wzv32 Institut National d''Assurance Maladie InvaliditƩ National Institute for Health and Disability Insurance Rijksinstituut voor Ziekte- en Invaliditeitsverzekering'),
(81241, 'https://ror.org/007amwr41', 'en', 1, 'https://ror.org/007amwr41 Guy Harvey Ocean Foundation'),
(81242, 'https://ror.org/01mmz5j21', 'en', 1, 'https://ror.org/01mmz5j21 Victorian Clinical Genetics Services'),
(81243, 'https://ror.org/01z3bp082', 'en', 1, 'https://ror.org/01z3bp082 Royal Norwegian Society of Sciences and Letters'),
(81244, 'https://ror.org/00pm1e925', 'en', 1, 'https://ror.org/00pm1e925 Society for Healthcare Epidemiology of America'),
(81245, 'https://ror.org/02w4h2853', 'en', 1, 'https://ror.org/02w4h2853 American Association of Colleges of Nursing'),
(81246, 'https://ror.org/00qm4t918', 'en', 1, 'https://ror.org/00qm4t918 Guizhou Minzu University č“µå·žę°‘ę—å¤§å­¦'),
(81247, 'https://ror.org/02xhx4j26', 'en', 1, 'https://ror.org/02xhx4j26 Centre for Marine Socioecology'),
(81248, 'https://ror.org/01zfzax10', 'en', 1, 'https://ror.org/01zfzax10 University of Tikrit Ų¬Ų§Ł…Ų¹Ų© تكريت'),
(81249, 'https://ror.org/01fy9e204', 'en', 1, 'https://ror.org/01fy9e204 The Neurosciences Foundation'),
(81250, 'https://ror.org/02xmkec90', 'en', 1, 'https://ror.org/02xmkec90 Kaohsiung Medical University Chung-Ho Memorial Hospital'),
(81251, 'https://ror.org/02hfpnk21', 'en', 1, 'https://ror.org/02hfpnk21 Translational Genomics Research Institute'),
(81252, 'https://ror.org/01f77gp95', 'en', 1, 'https://ror.org/01f77gp95 Third Affiliated Hospital of Harbin Medical University å“ˆå°”ę»ØåŒ»ē§‘å¤§å­¦ē¬¬äø‰äø“åŗŠåŒ»å­¦é™¢'),
(81253, 'https://ror.org/00jhzfv66', 'en', 1, 'https://ror.org/00jhzfv66 Washington Academy of Sciences'),
(81254, 'https://ror.org/00bknc349', 'en', 1, 'https://ror.org/00bknc349 Hosokawa Powder Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ćƒ›ć‚½ć‚«ćƒÆē²‰ä½“å·„å­¦ęŒÆčˆˆč²”å›£'),
(81255, 'https://ror.org/00dwgct76', 'es', 1, 'https://ror.org/00dwgct76 Centro de Investigación Biomédica en Red Diabetes y Enfermedades Metabólicas Asociadas'),
(81256, 'https://ror.org/024whdm10', 'en', 1, 'https://ror.org/024whdm10 Edinburgh & Lothians Health Foundation'),
(81257, 'https://ror.org/02bn3v102', 'en', 1, 'https://ror.org/02bn3v102 GW Medical Faculty Associates'),
(81258, 'https://ror.org/01r5k6556', 'no_lang_code', 1, 'https://ror.org/01r5k6556 Omeros Corporation (United States)'),
(81259, 'https://ror.org/016bv0s21', 'fr', 1, 'https://ror.org/016bv0s21 Association pour l’Assistance et la RĆ©habilitation Ć  Domicile'),
(81260, 'https://ror.org/01vep7794', 'es', 1, 'https://ror.org/01vep7794 Instituto Nacional de Investigaciones Agropecuarias'),
(81261, 'https://ror.org/00mrjbj15', 'no_lang_code', 1, 'https://ror.org/00mrjbj15 Fukuyama University ē¦å±±å¤§å­¦'),
(81262, 'https://ror.org/00af1rw21', 'no_lang_code', 1, 'https://ror.org/00af1rw21 Shodor'),
(81263, 'https://ror.org/01at1x128', 'en', 1, 'https://ror.org/01at1x128 Ministerie van Binnenlandse Zaken en Koninkrijksrelaties Ministry of the Interior and Kingdom Relations'),
(81264, 'https://ror.org/026zmgd62', 'en', 1, 'https://ror.org/026zmgd62 Navsari Agricultural University ąŖ•ą«ƒąŖ·ąŖæ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, નવસારી నవసరి ą°µą±ą°Æą°µą°øą°¾ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°‚'),
(81265, 'https://ror.org/019mv8a21', 'no_lang_code', 1, 'https://ror.org/019mv8a21 Diamond V (United States)'),
(81266, 'https://ror.org/022w3f533', 'en', 1, 'https://ror.org/022w3f533 Swedish Institute'),
(81267, 'https://ror.org/011pd5k86', 'en', 1, 'https://ror.org/011pd5k86 Institute of Materials Science Viện Khoa hį»c Vįŗ­t liệu'),
(81268, 'https://ror.org/0254sa076', 'en', 1, 'https://ror.org/0254sa076 Iqra National University اقراؔ Ł†ŪŒŲ“Ł†Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(81269, 'https://ror.org/02bq4xp81', 'en', 1, 'https://ror.org/02bq4xp81 Turing Foundation'),
(81270, 'https://ror.org/011asxc61', 'no_lang_code', 1, 'https://ror.org/011asxc61 Liander (Netherlands)'),
(81271, 'https://ror.org/002j7n988', 'en', 1, 'https://ror.org/002j7n988 Atlas Network'),
(81272, 'https://ror.org/015yt6k87', 'en', 1, 'https://ror.org/015yt6k87 Scottish Enterprise'),
(81273, 'https://ror.org/009yr1d55', 'en', 1, 'https://ror.org/009yr1d55 Beloit College'),
(81274, 'https://ror.org/02jg74102', 'no_lang_code', 1, 'https://ror.org/02jg74102 Elanco (United States)'),
(81275, 'https://ror.org/00gcc2a38', 'de', 1, 'https://ror.org/00gcc2a38 RenƩ und Susanne Braginsky Stiftung'),
(81276, 'https://ror.org/02z31g829', 'en', 1, 'https://ror.org/02z31g829 SkƄne University Hospital SkƄnes universitetssjukhus'),
(81277, 'https://ror.org/00zc03z98', 'en', 1, 'https://ror.org/00zc03z98 Propionic Acidemia Foundation'),
(81278, 'https://ror.org/02w2wps72', 'en', 1, 'https://ror.org/02w2wps72 Institute for Computational Science and Technology'),
(81279, 'https://ror.org/0238rs311', 'en', 1, 'https://ror.org/0238rs311 Transport Canada Transports Canada'),
(81280, 'https://ror.org/007ywhm20', 'en', 1, 'https://ror.org/007ywhm20 Jinzhong University 晋中学院'),
(81281, 'https://ror.org/018cmv596', 'en', 1, 'https://ror.org/018cmv596 Lefkofsky Family Foundation'),
(81282, 'https://ror.org/01kfc9965', 'en', 1, 'https://ror.org/01kfc9965 National Association of Orthopaedic Nurses'),
(81283, 'https://ror.org/022yhjq53', 'en', 1, 'https://ror.org/022yhjq53 Meisei University ę˜Žę˜Ÿå¤§å­¦'),
(81284, 'https://ror.org/00k6c4h29', 'en', 1, 'https://ror.org/00k6c4h29 Liaoning Shihua University č¾½å®ēŸ³ę²¹åŒ–å·„å¤§å­¦'),
(81285, 'https://ror.org/01vd7vb53', 'en', 1, 'https://ror.org/01vd7vb53 Hunan City University ę¹–å—åŸŽåø‚å­¦é™¢'),
(81286, 'https://ror.org/00q0w1h45', 'no_lang_code', 1, 'https://ror.org/00q0w1h45 Omron (Japan) ć‚Ŗćƒ ćƒ­ćƒ³ę Ŗå¼ä¼šē¤¾'),
(81287, 'https://ror.org/0123yy056', 'nl', 1, 'https://ror.org/0123yy056 Nederlandse Vereniging voor Tropische Geneeskunde'),
(81288, 'https://ror.org/00s338690', 'en', 1, 'https://ror.org/00s338690 Lampang Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø„ąø³ąø›ąø²ąø‡'),
(81289, 'https://ror.org/00fnkrf94', 'en', 1, 'https://ror.org/00fnkrf94 National Agency for Social Insurance'),
(81290, 'https://ror.org/02a7qmj40', 'en', 1, 'https://ror.org/02a7qmj40 Osteoporosis Canada'),
(81291, 'https://ror.org/003cs9s68', 'en', 1, 'https://ror.org/003cs9s68 Society for Social Studies of Science'),
(81292, 'https://ror.org/01bp61317', 'es', 1, 'https://ror.org/01bp61317 Fundación Pública Andaluza para la Gestión de la Investigación en Salud de Sevilla'),
(81293, 'https://ror.org/02axrxp93', 'en', 1, 'https://ror.org/02axrxp93 Utah Academy of Sciences and Arts and Letters'),
(81294, 'https://ror.org/00274wg63', 'en', 1, 'https://ror.org/00274wg63 VƤinƶ and Laina Kivi Foundation VƤinƶ ja Laina Kiven SƤƤtiƶ'),
(81295, 'https://ror.org/01nsn0t21', 'pt', 1, 'https://ror.org/01nsn0t21 Universidade Regional de Blumenau'),
(81296, 'https://ror.org/01619x561', 'en', 1, 'https://ror.org/01619x561 American Speech Language Hearing Association'),
(81297, 'https://ror.org/02p3q3906', 'en', 1, 'https://ror.org/02p3q3906 Ministero dell''Ambiente e della Tutela del Territorio e del Mare Ministry of the Environment and Protection of Land and Sea'),
(81298, 'https://ror.org/01w885875', 'en', 1, 'https://ror.org/01w885875 National Agricultural Research and Innovation Centre Nemzeti AgrÔrkutatÔsi és InnovÔciós Központ'),
(81299, 'https://ror.org/006aydy55', 'en', 1, 'https://ror.org/006aydy55 Ji Hua Laboratory å­£åŽå®žéŖŒå®¤'),
(81300, 'https://ror.org/01mzk5576', 'en', 1, 'https://ror.org/01mzk5576 Leibniz Institute of Plant Biochemistry Leibniz-Institut für Pflanzenbiochemie'),
(81301, 'https://ror.org/010cnye54', 'no_lang_code', 1, 'https://ror.org/010cnye54 Voyager Therapeutics (United States)'),
(81302, 'https://ror.org/017abdw23', 'en', 1, 'https://ror.org/017abdw23 Jiangsu Agri-animal Husbandry Vocational College ę±Ÿč‹ē‰§åŒ»å­¦é™¢'),
(81303, 'https://ror.org/01fkvbf41', 'no_lang_code', 1, 'https://ror.org/01fkvbf41 VistaGen Therapeutics (United States)'),
(81304, 'https://ror.org/0283g3v77', 'en', 1, 'https://ror.org/0283g3v77 Qom Islamic Azad University دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ قم'),
(81305, 'https://ror.org/00sb7hc59', 'en', 1, 'https://ror.org/00sb7hc59 Max Planck Institute for Polymer Research Max-Planck-Institut für Polymerforschung'),
(81306, 'https://ror.org/00ngv8j44', 'en', 1, 'https://ror.org/00ngv8j44 Information Technology University'),
(81307, 'https://ror.org/02ga8fs73', 'fi', 1, 'https://ror.org/02ga8fs73 Maire Taposen SƤƤtiƶ'),
(81308, 'https://ror.org/00adax290', 'en', 1, 'https://ror.org/00adax290 Nanjing Forest Police College å—äŗ¬ę£®ęž—č­¦åÆŸå­¦é™¢'),
(81309, 'https://ror.org/02jam4v16', 'en', 1, 'https://ror.org/02jam4v16 EuroSpine'),
(81310, 'https://ror.org/00d3km654', 'en', 1, 'https://ror.org/00d3km654 ECOG-ACRIN Cancer Research Group'),
(81311, 'https://ror.org/01g1ykj19', 'en', 1, 'https://ror.org/01g1ykj19 eThekwini Municipality'),
(81312, 'https://ror.org/01g53pj53', 'en', 1, 'https://ror.org/01g53pj53 Comisión Nacional para el Conocimiento y Uso de la Biodiversidad National Commission for the Knowledge and Use of Biodiversity'),
(81313, 'https://ror.org/00bvysh61', 'en', 1, 'https://ror.org/00bvysh61 Islamic Azad University, Mashhad دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد مؓهد'),
(81314, 'https://ror.org/02yfz4y25', 'no_lang_code', 1, 'https://ror.org/02yfz4y25 BioVentrix (United States)'),
(81315, 'https://ror.org/00fpx3104', 'en', 1, 'https://ror.org/00fpx3104 Colorado Office of Economic Development and International Trade'),
(81316, 'https://ror.org/02q077p55', 'fr', 1, 'https://ror.org/02q077p55 Fondation Neurodis'),
(81317, 'https://ror.org/010prmy50', 'en', 1, 'https://ror.org/010prmy50 Virginia–Maryland College of Veterinary Medicine'),
(81318, 'https://ror.org/0251nbz82', 'de', 1, 'https://ror.org/0251nbz82 Bayerisches Staatsministerium für Ernährung, Landwirtschaft und Forsten'),
(81319, 'https://ror.org/02zcjdk53', 'en', 1, 'https://ror.org/02zcjdk53 Tübitak National Metrology Institute Ulusal Metroloji Enstitüsü'),
(81320, 'https://ror.org/0008wzh48', 'en', 1, 'https://ror.org/0008wzh48 Royal Marsden NHS Foundation Trust'),
(81321, 'https://ror.org/01nckkm68', 'en', 1, 'https://ror.org/01nckkm68 Sophia University äøŠę™ŗå¤§å­¦'),
(81322, 'https://ror.org/02x99ac45', 'en', 1, 'https://ror.org/02x99ac45 Yazd University دانؓگاه یزد'),
(81323, 'https://ror.org/022wnsy59', 'de', 1, 'https://ror.org/022wnsy59 Krebsforschung Schweiz'),
(81324, 'https://ror.org/01vasff55', 'no_lang_code', 1, 'https://ror.org/01vasff55 Jiamusi University ä½³ęœØę–Æå¤§å­¦'),
(81325, 'https://ror.org/02f60yb64', 'no_lang_code', 1, 'https://ror.org/02f60yb64 Qinetiq (United Kingdom)'),
(81326, 'https://ror.org/003zqrx63', 'en', 1, 'https://ror.org/003zqrx63 Denver Museum of Nature and Science'),
(81327, 'https://ror.org/021zqhw10', 'en', 1, 'https://ror.org/021zqhw10 Townsville Hospital'),
(81328, 'https://ror.org/024nsea16', 'no_lang_code', 1, 'https://ror.org/024nsea16 Electro Medical Systems (Switzerland)'),
(81329, 'https://ror.org/02zncn897', 'en', 1, 'https://ror.org/02zncn897 Adolf Messer Foundation Adolf Messer Stiftung'),
(81330, 'https://ror.org/02nmnpn85', 'en', 1, 'https://ror.org/02nmnpn85 Susquehanna University UniversitƩ de Susquehanna'),
(81331, 'https://ror.org/01v5mqw79', 'en', 1, 'https://ror.org/01v5mqw79 Zhongnan Hospital of Wuhan University'),
(81332, 'https://ror.org/011xqkf34', 'en', 1, 'https://ror.org/011xqkf34 Miscarriage Association'),
(81333, 'https://ror.org/02403qw73', 'en', 1, 'https://ror.org/02403qw73 Nanjing Hydraulic Research Institute ę°“åˆ©éƒØäŗ¤é€ščæč¾“éƒØå›½å®¶čƒ½ęŗå±€å—äŗ¬ę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(81334, 'https://ror.org/00bfgxv06', 'en', 1, 'https://ror.org/00bfgxv06 South African Institute for Aquatic Biodiversity'),
(81335, 'https://ror.org/0094xjg80', 'en', 1, 'https://ror.org/0094xjg80 Secretariat of Agriculture, Livestock, Rural Development, Fisheries and Food Secretaría de Agricultura, Ganadería, Desarrollo Rural, Pesca y Alimentación'),
(81336, 'https://ror.org/01tw4qq66', 'en', 1, 'https://ror.org/01tw4qq66 The Rothschild Archive'),
(81337, 'https://ror.org/019t02f42', 'da', 1, 'https://ror.org/019t02f42 Spar Nord Fonden Spar Nord Foundation'),
(81338, 'https://ror.org/01qqpzg67', 'en', 1, 'https://ror.org/01qqpzg67 NIHR Southampton Biomedical Research Centre'),
(81339, 'https://ror.org/0079wqf71', 'en', 1, 'https://ror.org/0079wqf71 Pound Civil Justice Institute'),
(81340, 'https://ror.org/019f2k932', 'no_lang_code', 1, 'https://ror.org/019f2k932 Esperion Therapeutics (United States)'),
(81341, 'https://ror.org/00cqsab58', 'en', 1, 'https://ror.org/00cqsab58 Mid Atlantic Fishery Management Council'),
(81342, 'https://ror.org/01p4rys65', 'no_lang_code', 1, 'https://ror.org/01p4rys65 Inmos'),
(81343, 'https://ror.org/00q08t645', 'de', 1, 'https://ror.org/00q08t645 Deutsche Gesellschaft für Internationale Zusammenarbeit German Corporation for International Cooperation'),
(81344, 'https://ror.org/00gqmdy63', 'en', 1, 'https://ror.org/00gqmdy63 District of Columbia Space Grant Consortium'),
(81345, 'https://ror.org/01ycecr18', 'en', 1, 'https://ror.org/01ycecr18 Information Technology Industry Development Agency'),
(81346, 'https://ror.org/01pmdrn98', 'id', 1, 'https://ror.org/01pmdrn98 Universitas Muhammadiyah Aceh'),
(81347, 'https://ror.org/029rt7q74', 'en', 1, 'https://ror.org/029rt7q74 Islamic Azad University of Nishapur دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł†ŪŒŲ“Ų§ŲØŁˆŲ±'),
(81348, 'https://ror.org/022gvg072', 'en', 1, 'https://ror.org/022gvg072 State University of Medan Universitas Negeri Medan'),
(81349, 'https://ror.org/00jstgs54', 'fr', 1, 'https://ror.org/00jstgs54 UniversitƩ de Saint-Boniface'),
(81350, 'https://ror.org/02s6gs133', 'en', 1, 'https://ror.org/02s6gs133 Institute of Microelectronics 中国科学院微电子研究所'),
(81351, 'https://ror.org/01sv5vd96', 'en', 1, 'https://ror.org/01sv5vd96 Bloomberg Philanthropies'),
(81352, 'https://ror.org/024t5tt95', 'en', 1, 'https://ror.org/024t5tt95 Korea Institute of Ceramic Engineering and Technology'),
(81353, 'https://ror.org/00mmfdg02', 'en', 1, 'https://ror.org/00mmfdg02 Clore Israel Foundation קרן ×§×œ×•×Ø ×œ×™×©×Ø××œ'),
(81354, 'https://ror.org/02v8d7770', 'en', 1, 'https://ror.org/02v8d7770 Bahria University Ų¬Ų§Ł…Ų¹Ū‚ بحریہ'),
(81355, 'https://ror.org/00fyemf28', 'en', 1, 'https://ror.org/00fyemf28 Materials innovation institute'),
(81356, 'https://ror.org/02cmp6f87', 'en', 1, 'https://ror.org/02cmp6f87 Ministry of Environment and Energy ΄πουργείο Παραγωγικής Ī‘Ī½Ī±ĻƒĻ…Ī³ĪŗĻĻŒĻ„Ī·ĻƒĪ·Ļ‚, Περιβάλλοντος και Ενέργειας'),
(81357, 'https://ror.org/00x2a8982', 'en', 1, 'https://ror.org/00x2a8982 Rural Sociological Society'),
(81358, 'https://ror.org/00y27w112', 'en', 1, 'https://ror.org/00y27w112 Children’s Leukemia Research Association'),
(81359, 'https://ror.org/027yrjm02', 'en', 1, 'https://ror.org/027yrjm02 BIOCAP Canada Foundation'),
(81360, 'https://ror.org/02yasb727', 'en', 1, 'https://ror.org/02yasb727 ARC Centre of Excellence for Integrative Brain Function'),
(81361, 'https://ror.org/000zsjk11', 'no_lang_code', 1, 'https://ror.org/000zsjk11 Dr. F.P. Fischer-Stichting (Netherlands)'),
(81362, 'https://ror.org/009h1nj77', 'en', 1, 'https://ror.org/009h1nj77 National Bureau of Fish Genetic Resources'),
(81363, 'https://ror.org/026vtd268', 'en', 1, 'https://ror.org/026vtd268 Maulana Azad National Institute of Technology'),
(81364, 'https://ror.org/00k8zt527', 'en', 1, 'https://ror.org/00k8zt527 KIIT University'),
(81365, 'https://ror.org/02nftnt56', 'no_lang_code', 1, 'https://ror.org/02nftnt56 Arqule (United States)'),
(81366, 'https://ror.org/02005ks20', 'en', 1, 'https://ror.org/02005ks20 Hemophilia Center of Western Pennsylvania'),
(81367, 'https://ror.org/00qx9g681', 'sv', 1, 'https://ror.org/00qx9g681 Medicinska Understƶdsfƶreningen Liv och HƤlsa'),
(81368, 'https://ror.org/01ywejq18', 'en', 1, 'https://ror.org/01ywejq18 Psychiatry Research Trust'),
(81369, 'https://ror.org/02ntc9t93', 'en', 1, 'https://ror.org/02ntc9t93 Chang Bing Show Chwan Memorial Hospital'),
(81370, 'https://ror.org/00c29a773', 'en', 1, 'https://ror.org/00c29a773 Society for the Study of Reproduction'),
(81371, 'https://ror.org/00c7fav87', 'en', 1, 'https://ror.org/00c7fav87 Syarif Hidayatullah State Islamic University Jakarta Universitas Islam Negeri Syarif Hidayatullah Jakarta'),
(81372, 'https://ror.org/019vsm959', 'en', 1, 'https://ror.org/019vsm959 National University of Science and Technology ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ МИДиД'),
(81373, 'https://ror.org/01175g155', 'en', 1, 'https://ror.org/01175g155 Xinzhou Teachers University åæ»å·žåøˆčŒƒå­¦é™¢'),
(81374, 'https://ror.org/00y5f4k61', 'en', 1, 'https://ror.org/00y5f4k61 Massachusetts Historical Society'),
(81375, 'https://ror.org/019sbgd69', 'en', 1, 'https://ror.org/019sbgd69 Gdańsk Medical University Gdański Uniwersytet Medyczny Medical University of Gdansk'),
(81376, 'https://ror.org/02sgqxr53', 'en', 1, 'https://ror.org/02sgqxr53 Global Cancer Institute'),
(81377, 'https://ror.org/00bsj2955', 'en', 1, 'https://ror.org/00bsj2955 Punjab Engineering College ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ ą¤‡ą¤‚ą¤œą¤æą¤Øą¤æą¤Æą¤°ą¤æą¤‚ą¤— ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(81378, 'https://ror.org/00s0pgz81', 'no_lang_code', 1, 'https://ror.org/00s0pgz81 Intarcia Therapeutics (United States)'),
(81379, 'https://ror.org/01fkw3y20', 'en', 1, 'https://ror.org/01fkw3y20 Ara Institute of Canterbury'),
(81380, 'https://ror.org/0120czk38', 'en', 1, 'https://ror.org/0120czk38 Royal Forest Department ąøąø£ąø”ąø›ą¹ˆąø²ą¹„ąø”ą¹‰'),
(81381, 'https://ror.org/02md8hv62', 'en', 1, 'https://ror.org/02md8hv62 Sheffield Children''s NHS Foundation Trust'),
(81382, 'https://ror.org/02v3j1y79', 'no_lang_code', 1, 'https://ror.org/02v3j1y79 Renishaw (United Kingdom)'),
(81383, 'https://ror.org/01s1hsq14', 'en', 1, 'https://ror.org/01s1hsq14 Yale New Haven Health System'),
(81384, 'https://ror.org/00749za89', 'en', 1, 'https://ror.org/00749za89 Alberto Hurtado University Universidad Alberto Hurtado'),
(81385, 'https://ror.org/01ah7ky25', 'en', 1, 'https://ror.org/01ah7ky25 Banff Centre'),
(81386, 'https://ror.org/00zbz2c25', 'no_lang_code', 1, 'https://ror.org/00zbz2c25 Ultragenyx Pharmaceutical (United States)'),
(81387, 'https://ror.org/02ybfkh30', 'en', 1, 'https://ror.org/02ybfkh30 Regional Research Council in Uppsala-Ɩrebro Region'),
(81388, 'https://ror.org/00avfj807', 'en', 1, 'https://ror.org/00avfj807 Nanchang Institute of Technology å—ę˜Œå·„ēØ‹å­¦é™¢'),
(81389, 'https://ror.org/01mrvbd33', 'en', 1, 'https://ror.org/01mrvbd33 Hoshi University ę˜Ÿč–¬ē§‘å¤§å­¦'),
(81390, 'https://ror.org/013v2pg91', 'en', 1, 'https://ror.org/013v2pg91 Chinese Physical Society äø­å›½ē‰©ē†å­¦ä¼š'),
(81391, 'https://ror.org/01t20sn94', 'en', 1, 'https://ror.org/01t20sn94 University of the West Indies System'),
(81392, 'https://ror.org/029gt5q28', 'no_lang_code', 1, 'https://ror.org/029gt5q28 Calithera (United States)'),
(81393, 'https://ror.org/00rnw4e09', 'en', 1, 'https://ror.org/00rnw4e09 Magee-Womens Research Institute'),
(81394, 'https://ror.org/02q854y08', 'en', 1, 'https://ror.org/02q854y08 Changi General Hospital'),
(81395, 'https://ror.org/025edj240', 'no_lang_code', 1, 'https://ror.org/025edj240 Guiyang University č“µé˜³å­¦é™¢'),
(81396, 'https://ror.org/00wzjq897', 'en', 1, 'https://ror.org/00wzjq897 Azabu University 麻布大学'),
(81397, 'https://ror.org/02p22ad51', 'en', 1, 'https://ror.org/02p22ad51 Deutsche Gesellschaft für Kardiologie – Herz- und Kreislaufforschung e.V. German Cardiac Society'),
(81398, 'https://ror.org/02ac14420', 'no_lang_code', 1, 'https://ror.org/02ac14420 Dermira (United States)'),
(81399, 'https://ror.org/01vjvsj67', 'en', 1, 'https://ror.org/01vjvsj67 Kuwait College of Science and Technology ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁˆŁŠŲŖ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(81400, 'https://ror.org/01v55qb38', 'en', 1, 'https://ror.org/01v55qb38 National Cerebral and Cardiovascular Center å›½ē«‹å¾Ŗē’°å™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(81401, 'https://ror.org/01e8ff003', 'en', 1, 'https://ror.org/01e8ff003 Shahed University دانؓگاه ؓاهد'),
(81402, 'https://ror.org/02e6z0y17', 'en', 1, 'https://ror.org/02e6z0y17 Ambo University Yunivarsiitii Amboo įŠ įˆį‰¦ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(81403, 'https://ror.org/02s4m5j79', 'en', 1, 'https://ror.org/02s4m5j79 Council of Economic Advisers'),
(81404, 'https://ror.org/02bjs0p66', 'en', 1, 'https://ror.org/02bjs0p66 Changhai Hospital'),
(81405, 'https://ror.org/00e1nmf62', 'en', 1, 'https://ror.org/00e1nmf62 Saskatchewan Cancer Agency'),
(81406, 'https://ror.org/01qcc6q77', 'en', 1, 'https://ror.org/01qcc6q77 Social Welfare Department ē¤¾ęœƒē¦åˆ©ē½²'),
(81407, 'https://ror.org/00my0hg66', 'en', 1, 'https://ror.org/00my0hg66 Barwon Health'),
(81408, 'https://ror.org/00c06mw10', 'no_lang_code', 1, 'https://ror.org/00c06mw10 Tomey (Japan)'),
(81409, 'https://ror.org/01bh2s525', 'en', 1, 'https://ror.org/01bh2s525 Einstein Healthcare Network'),
(81410, 'https://ror.org/02tjxem41', 'en', 1, 'https://ror.org/02tjxem41 Steacie Institute for Molecular Sciences'),
(81411, 'https://ror.org/01kb3t575', 'en', 1, 'https://ror.org/01kb3t575 Administración de Servicios Generales Administration des services généraux General Services Administration'),
(81412, 'https://ror.org/00v8w0b34', 'en', 1, 'https://ror.org/00v8w0b34 Japan Racing Association ē‰¹ę®Šę³•äŗŗę—„ęœ¬äø­å¤®ē«¶é¦¬ä¼š'),
(81413, 'https://ror.org/00k194y12', 'en', 1, 'https://ror.org/00k194y12 Kaohsiung Chang Gung Memorial Hospital'),
(81414, 'https://ror.org/01hw93t68', 'en', 1, 'https://ror.org/01hw93t68 St. Norbert College'),
(81415, 'https://ror.org/02530bn33', 'en', 1, 'https://ror.org/02530bn33 National Academy of Education'),
(81416, 'https://ror.org/00vwc8w74', 'en', 1, 'https://ror.org/00vwc8w74 International Women''s Media Foundation'),
(81417, 'https://ror.org/02cgn2a44', 'en', 1, 'https://ror.org/02cgn2a44 Swiss Finance Institute'),
(81418, 'https://ror.org/01nxen694', 'es', 1, 'https://ror.org/01nxen694 Escuela Colombiana de Ingenieria Julio Garavito Escuela Colombiana de IngenierĆ­a'),
(81419, 'https://ror.org/012rb2c33', 'en', 1, 'https://ror.org/012rb2c33 U.S. President''s Malaria Initiative'),
(81420, 'https://ror.org/02sxz8h41', 'en', 1, 'https://ror.org/02sxz8h41 Tokyo Metropolitan Hiroo Hospital ę±äŗ¬éƒ½ē«‹åŗƒå°¾ē—…é™¢'),
(81421, 'https://ror.org/02pp7px91', 'en', 1, 'https://ror.org/02pp7px91 Max Planck Institute for Human Development Max-Planck-Institut für Bildungsforschung'),
(81422, 'https://ror.org/00q6ynx29', 'de', 1, 'https://ror.org/00q6ynx29 Stiftung Mercator'),
(81423, 'https://ror.org/02p3y5t84', 'en', 1, 'https://ror.org/02p3y5t84 Materials and Energy Research Center Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł…ŁˆŲ§ŲÆ و Ų§Ł†Ų±Ś˜ŪŒ'),
(81424, 'https://ror.org/028kg9j04', 'pt', 1, 'https://ror.org/028kg9j04 Federal University of ABC Universidade Federal do ABC UniversitƩ fƩdƩrale de l''abc'),
(81425, 'https://ror.org/021zvq422', 'en', 1, 'https://ror.org/021zvq422 De Haagse Hogeschool The Hague University of Applied Sciences'),
(81426, 'https://ror.org/01y6ccj36', 'en', 1, 'https://ror.org/01y6ccj36 National Pingtung University of Science and Technology'),
(81427, 'https://ror.org/010pwb356', 'sv', 1, 'https://ror.org/010pwb356 Anna och Edwin Bergers Stiftelse'),
(81428, 'https://ror.org/01rncwg06', 'en', 1, 'https://ror.org/01rncwg06 The Korean Society of Nephrology ėŒ€ķ•œģ‹ ģž„ķ•™ķšŒ'),
(81429, 'https://ror.org/02bf6br77', 'en', 1, 'https://ror.org/02bf6br77 Lahore College for Women University Ł„Ų§ŪŁˆŲ± کالج ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(81430, 'https://ror.org/00zamzy79', 'en', 1, 'https://ror.org/00zamzy79 Society for Experimental Mechanics'),
(81431, 'https://ror.org/0111z2552', 'pl', 1, 'https://ror.org/0111z2552 Elbląska Uczelnia Humanistyczno-Ekonomiczna'),
(81432, 'https://ror.org/00ma7c320', 'en', 1, 'https://ror.org/00ma7c320 Nakatani Foundation å…¬ē›Šč²”å›£ę³•äŗŗ äø­č°·åŒ»å·„čØˆęø¬ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(81433, 'https://ror.org/01zc8t088', 'en', 1, 'https://ror.org/01zc8t088 National Fire Protection Association'),
(81434, 'https://ror.org/02w4tny03', 'en', 1, 'https://ror.org/02w4tny03 Shanghai University of Electric Power äøŠęµ·ē”µåŠ›å­¦é™¢'),
(81435, 'https://ror.org/01v4e7289', 'en', 1, 'https://ror.org/01v4e7289 Russian-Armenian University Õ€Õ”Õµ-Õ¼ÕøÖ‚Õ½Õ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(81436, 'https://ror.org/01ggenr10', 'no_lang_code', 1, 'https://ror.org/01ggenr10 Phoenix (United States)'),
(81437, 'https://ror.org/01k81gt67', 'en', 1, 'https://ror.org/01k81gt67 Alfred University'),
(81438, 'https://ror.org/02fsk7e17', 'en', 1, 'https://ror.org/02fsk7e17 State University of Semarang Universitas Negeri Semarang'),
(81439, 'https://ror.org/023s8ys65', 'en', 1, 'https://ror.org/023s8ys65 National Water and Sewerage Corporation'),
(81440, 'https://ror.org/02pwbvs75', 'en', 1, 'https://ror.org/02pwbvs75 Ontario Lung Association'),
(81441, 'https://ror.org/01h7cca57', 'en', 1, 'https://ror.org/01h7cca57 Sapporo Medical University ęœ­å¹ŒåŒ»ē§‘å¤§å­¦'),
(81442, 'https://ror.org/01em2mv62', 'en', 1, 'https://ror.org/01em2mv62 Chia-Yi Christian Hospital'),
(81443, 'https://ror.org/026axqv54', 'en', 1, 'https://ror.org/026axqv54 Nanjing Drum Tower Hospital'),
(81444, 'https://ror.org/01mdfdm06', 'en', 1, 'https://ror.org/01mdfdm06 Monell Chemical Senses Center'),
(81445, 'https://ror.org/00jvfh371', 'en', 1, 'https://ror.org/00jvfh371 European Society for Paediatric Infectious Diseases'),
(81446, 'https://ror.org/0077k1j32', 'en', 1, 'https://ror.org/0077k1j32 Malaviya National Institute of Technology Jaipur ą¤®ą¤¾ą¤²ą¤µą„€ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(81447, 'https://ror.org/022gs0c53', 'es', 1, 'https://ror.org/022gs0c53 Instituto AntƔrtico Chileno'),
(81448, 'https://ror.org/00g102351', 'en', 1, 'https://ror.org/00g102351 State Key Laboratory on Integrated Optoelectronics é›†ęˆå…‰ē”µå­å­¦å›½å®¶é‡ē‚¹č”åˆå®žéŖŒå®¤'),
(81449, 'https://ror.org/028jkr018', 'da', 1, 'https://ror.org/028jkr018 Nordisk Institut for Kiropraktik og Klinisk Biomekanik'),
(81450, 'https://ror.org/01grkhd49', 'en', 1, 'https://ror.org/01grkhd49 A. James & Alice B. Clark Foundation'),
(81451, 'https://ror.org/009g8f974', 'en', 1, 'https://ror.org/009g8f974 Far East Geological Institute Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(81452, 'https://ror.org/0247ay475', 'en', 1, 'https://ror.org/0247ay475 Central Denmark Region Region Midtjylland'),
(81453, 'https://ror.org/01a4hbq44', 'en', 1, 'https://ror.org/01a4hbq44 St Olav''s University Hospital'),
(81454, 'https://ror.org/02aj8qz21', 'en', 1, 'https://ror.org/02aj8qz21 Fujian Academy of Agricultural Sciences'),
(81455, 'https://ror.org/021fhft25', 'en', 1, 'https://ror.org/021fhft25 Office for National Statistics Swyddfa Ystadegau Gwladol'),
(81456, 'https://ror.org/00zq3v614', 'en', 1, 'https://ror.org/00zq3v614 Dr Marnie Rose Foundation'),
(81457, 'https://ror.org/02b1bn727', 'en', 1, 'https://ror.org/02b1bn727 Chittaranjan National Cancer Institute'),
(81458, 'https://ror.org/022zknp80', 'en', 1, 'https://ror.org/022zknp80 Texas Department of State Health Services'),
(81459, 'https://ror.org/00x6vsv29', 'en', 1, 'https://ror.org/00x6vsv29 Qatar Orthopaedic and Sports Medicine Hospital سبيتار'),
(81460, 'https://ror.org/0109p9r67', 'en', 1, 'https://ror.org/0109p9r67 Joint United Nations Programme on HIV/AIDS'),
(81461, 'https://ror.org/00pprn321', 'no_lang_code', 1, 'https://ror.org/00pprn321 Denali Therapeutics (United States)'),
(81462, 'https://ror.org/02yw1f353', 'fr', 1, 'https://ror.org/02yw1f353 Institut BergoniƩ'),
(81463, 'https://ror.org/01fvvv243', 'en', 1, 'https://ror.org/01fvvv243 Research Foundation for Opto-Science and Technology å…¬ē›Šč²”å›£ę³•äŗŗå…‰ē§‘å­¦ęŠ€č”“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(81464, 'https://ror.org/00p954x71', 'en', 1, 'https://ror.org/00p954x71 Society for Conservation Biology'),
(81465, 'https://ror.org/01680tt85', 'en', 1, 'https://ror.org/01680tt85 International Society of Travel Medicine'),
(81466, 'https://ror.org/016zn0y21', 'it', 1, 'https://ror.org/016zn0y21 Fondazione IRCCS Ca'' Granda Ospedale Maggiore Policlinico Ospedale Maggiore'),
(81467, 'https://ror.org/02t6zky14', 'no_lang_code', 1, 'https://ror.org/02t6zky14 Enamine (Ukraine)'),
(81468, 'https://ror.org/02bzfxf13', 'en', 1, 'https://ror.org/02bzfxf13 Debre Tabor University į‹Øį‹°į‰„įˆØ į‰³į‰¦įˆ­ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(81469, 'https://ror.org/01yaers16', 'en', 1, 'https://ror.org/01yaers16 West Virginia Higher Education Policy Commission'),
(81470, 'https://ror.org/00fmnpw63', 'fr', 1, 'https://ror.org/00fmnpw63 French School of Asian Studies Ɖcole FranƧaise d''ExtrĆŖme-Orient'),
(81471, 'https://ror.org/02nb3aq72', 'en', 1, 'https://ror.org/02nb3aq72 Monterey Bay Aquarium Research Institute'),
(81472, 'https://ror.org/02hrw4545', 'es', 1, 'https://ror.org/02hrw4545 Fundación Para la Gestión de la Investigación Biomédica de CÔdiz'),
(81473, 'https://ror.org/02aj61m65', 'no_lang_code', 1, 'https://ror.org/02aj61m65 Medichem (Spain)'),
(81474, 'https://ror.org/01d8kr740', 'en', 1, 'https://ror.org/01d8kr740 Institute for Information Industry č³‡čØŠå·„ę„­ē­–é€²ęœƒ'),
(81475, 'https://ror.org/00fsrd019', 'en', 1, 'https://ror.org/00fsrd019 Illawarra Shoalhaven Local Health District'),
(81476, 'https://ror.org/00ckxt310', 'en', 1, 'https://ror.org/00ckxt310 Synchrotron Light Research Institute'),
(81477, 'https://ror.org/02xa34907', 'en', 1, 'https://ror.org/02xa34907 Southern Nursing Research Society'),
(81478, 'https://ror.org/01bbbnc61', 'no_lang_code', 1, 'https://ror.org/01bbbnc61 On Target Laboratories (United States)'),
(81479, 'https://ror.org/01167a838', 'en', 1, 'https://ror.org/01167a838 Earth Observatory of Singapore'),
(81480, 'https://ror.org/0082yr561', 'en', 1, 'https://ror.org/0082yr561 Gubkin Russian State University of Oil and Gas Российский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ нефти Šø газа имени И. М. Š“ŃƒŠ±ŠŗŠøŠ½Š°'),
(81481, 'https://ror.org/00kmpab62', 'en', 1, 'https://ror.org/00kmpab62 San Diego Natural History Museum'),
(81482, 'https://ror.org/00m1jrq32', 'no_lang_code', 1, 'https://ror.org/00m1jrq32 Methuselah Foundation'),
(81483, 'https://ror.org/02awhq166', 'en', 1, 'https://ror.org/02awhq166 Judicial Council of California'),
(81484, 'https://ror.org/02wjbax77', 'en', 1, 'https://ror.org/02wjbax77 Korea Foundation for the Advancement of Science and Creativity'),
(81485, 'https://ror.org/01v42ys47', 'en', 1, 'https://ror.org/01v42ys47 Tokyo Metropolitan Government ę±äŗ¬éƒ½åŗ'),
(81486, 'https://ror.org/00jrmpf38', 'en', 1, 'https://ror.org/00jrmpf38 Beijing Planning Office of Philosophy and Social Science åŒ—äŗ¬åø‚å“²å­¦ē¤¾ä¼šē§‘å­¦č§„åˆ’åŠžå…¬å®¤'),
(81487, 'https://ror.org/014579w63', 'en', 1, 'https://ror.org/014579w63 Fraser Health'),
(81488, 'https://ror.org/026y2cn83', 'de', 1, 'https://ror.org/026y2cn83 Ministerium für Wirtschaft, Innovation, Digitalisierung und Energie des Landes Nordrhein-Westfalen'),
(81489, 'https://ror.org/000y25914', 'no_lang_code', 1, 'https://ror.org/000y25914 Tine (Norway)'),
(81490, 'https://ror.org/00z8rf270', 'sv', 1, 'https://ror.org/00z8rf270 Insamlingsstiftelsen Cancer- och Allergifonden'),
(81491, 'https://ror.org/028q01336', 'en', 1, 'https://ror.org/028q01336 Strategic Management Society'),
(81492, 'https://ror.org/021xwcd05', 'en', 1, 'https://ror.org/021xwcd05 Xinyu University 新余大学'),
(81493, 'https://ror.org/01jkd3546', 'en', 1, 'https://ror.org/01jkd3546 P.N. Lebedev Physical Institute of the Russian Academy of Sciences Физический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. П. Š. ЛебеГева'),
(81494, 'https://ror.org/02f26yq04', 'en', 1, 'https://ror.org/02f26yq04 Banco de EspaƱa Bank of Spain'),
(81495, 'https://ror.org/0047fvq66', 'en', 1, 'https://ror.org/0047fvq66 Your Community Foundation'),
(81496, 'https://ror.org/02csmb731', 'en', 1, 'https://ror.org/02csmb731 Institute for the Promotion of Teaching Science and Technology ąøŖąø–ąø²ąøšąø±ąø™ąøŖą¹ˆąø‡ą¹€ąøŖąø£ąø“ąø”ąøąø²ąø£ąøŖąø­ąø™ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œą¹ąø„ąø°ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµ'),
(81497, 'https://ror.org/00xhj8c72', 'en', 1, 'https://ror.org/00xhj8c72 Loyola Marymount University'),
(81498, 'https://ror.org/016a7mx14', 'en', 1, 'https://ror.org/016a7mx14 Leuka'),
(81499, 'https://ror.org/00rrhnr97', 'en', 1, 'https://ror.org/00rrhnr97 CPA Australia'),
(81500, 'https://ror.org/01dt10w58', 'en', 1, 'https://ror.org/01dt10w58 National Palliative Care Research Center'),
(81501, 'https://ror.org/00wtpj265', 'no_lang_code', 1, 'https://ror.org/00wtpj265 Northwest Biotherapeutics (United States)'),
(81502, 'https://ror.org/00d8gp927', 'en', 1, 'https://ror.org/00d8gp927 Shiga University of Medical Science ę»‹č³€åŒ»ē§‘å¤§å­¦'),
(81503, 'https://ror.org/019dpjf60', 'en', 1, 'https://ror.org/019dpjf60 John Douglas French Alzheimers Foundation'),
(81504, 'https://ror.org/00qy3dp86', 'en', 1, 'https://ror.org/00qy3dp86 Wuhan Institute of Bioengineering ę­¦ę±‰ē”Ÿē‰©å·„ēØ‹ē ”ē©¶ę‰€'),
(81505, 'https://ror.org/02sz1qq59', 'en', 1, 'https://ror.org/02sz1qq59 Gill Foundation'),
(81506, 'https://ror.org/02chymc10', 'en', 1, 'https://ror.org/02chymc10 Oklahoma State Department of Health'),
(81507, 'https://ror.org/02pkrz957', 'en', 1, 'https://ror.org/02pkrz957 Suntory Foundation for Life Sciences ć‚µćƒ³ćƒˆćƒŖćƒ¼ē”Ÿå‘½ē§‘å­¦č²”å›£'),
(81508, 'https://ror.org/02b52th27', 'en', 1, 'https://ror.org/02b52th27 Federal Urdu University ŁˆŁŲ§Ł‚ŪŒ Ų¬Ų§Ł…Ų¹Ū‚ اردو'),
(81509, 'https://ror.org/02fjjp634', 'en', 1, 'https://ror.org/02fjjp634 Society of American Archivists'),
(81510, 'https://ror.org/014y90z04', 'no_lang_code', 1, 'https://ror.org/014y90z04 Utlendingsdirektoratet');
INSERT INTO `rors` VALUES
(81511, 'https://ror.org/02r3ym141', 'en', 1, 'https://ror.org/02r3ym141 SUNY Oneonta UniversitĆ© d''Ɖtat de new york Ć  oneonta'),
(81512, 'https://ror.org/01tkyan17', 'en', 1, 'https://ror.org/01tkyan17 I Care I Cure Childhood Cancer Foundation'),
(81513, 'https://ror.org/00sxp6h30', 'no_lang_code', 1, 'https://ror.org/00sxp6h30 Jinchuan (China) 金川集团'),
(81514, 'https://ror.org/0190x2a66', 'en', 1, 'https://ror.org/0190x2a66 Xinyang Normal University äæ”é˜³åøˆčŒƒå­¦é™¢'),
(81515, 'https://ror.org/02b0vny28', 'en', 1, 'https://ror.org/02b0vny28 Geoffrey Beene Foundation'),
(81516, 'https://ror.org/00xv4ev28', 'en', 1, 'https://ror.org/00xv4ev28 International Agency for the Prevention of Blindness'),
(81517, 'https://ror.org/01cp21a44', 'en', 1, 'https://ror.org/01cp21a44 Institute of Translational Health Sciences'),
(81518, 'https://ror.org/00tc3hj46', 'en', 1, 'https://ror.org/00tc3hj46 Association des infirmiĆØres et infirmiers du Canada Canadian Nurses Association'),
(81519, 'https://ror.org/0178qr782', 'en', 1, 'https://ror.org/0178qr782 Oral Reconstruction Foundation'),
(81520, 'https://ror.org/02z9sft96', 'en', 1, 'https://ror.org/02z9sft96 Departamento de Transporte del Distrito de Columbia District Department of Transportation'),
(81521, 'https://ror.org/0182aph68', 'en', 1, 'https://ror.org/0182aph68 Cape Leopard Trust'),
(81522, 'https://ror.org/02309j459', 'en', 1, 'https://ror.org/02309j459 Bundesamt für Justiz Federal Office of Justice Office fédéral de la justice Ufficio federale di giustizia'),
(81523, 'https://ror.org/023tfyg79', 'en', 1, 'https://ror.org/023tfyg79 Grain Farmers of Ontario'),
(81524, 'https://ror.org/00x7vzk16', 'en', 1, 'https://ror.org/00x7vzk16 Suan Dusit University ดหาวณทยาคัยสวนดุสณต'),
(81525, 'https://ror.org/02jxrhq31', 'en', 1, 'https://ror.org/02jxrhq31 Melanoma Institute Australia'),
(81526, 'https://ror.org/008m8sh03', 'en', 1, 'https://ror.org/008m8sh03 Shangqiu Normal University å•†äø˜åøˆčŒƒå­¦é™¢'),
(81527, 'https://ror.org/02qm18h86', 'en', 1, 'https://ror.org/02qm18h86 VA Pittsburgh Healthcare System'),
(81528, 'https://ror.org/00jg41573', 'en', 1, 'https://ror.org/00jg41573 Norsk Fysioterapeutforbund Norwegian Physiotherapist Association'),
(81529, 'https://ror.org/0036wpk65', 'en', 1, 'https://ror.org/0036wpk65 Institute for Transfusion Medicine'),
(81530, 'https://ror.org/01zq5k385', 'en', 1, 'https://ror.org/01zq5k385 General Insurance Association of Japan ę—„ęœ¬ęå®³äæé™ŗå”ä¼š'),
(81531, 'https://ror.org/017a59b72', 'en', 1, 'https://ror.org/017a59b72 National Development and Reform Commission äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶å‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(81532, 'https://ror.org/02r625m11', 'en', 1, 'https://ror.org/02r625m11 Frankfurt University of Applied Sciences'),
(81533, 'https://ror.org/023annq56', 'no_lang_code', 1, 'https://ror.org/023annq56 Acceleron Pharma (United States)'),
(81534, 'https://ror.org/01hgg7b81', 'en', 1, 'https://ror.org/01hgg7b81 State University of Jakarta Universitas Negeri Jakarta'),
(81535, 'https://ror.org/02dwrdh81', 'en', 1, 'https://ror.org/02dwrdh81 University of Kufa Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁˆŁŲ©'),
(81536, 'https://ror.org/019c5tn34', 'en', 1, 'https://ror.org/019c5tn34 William Harvey Research Foundation'),
(81537, 'https://ror.org/02std5y37', 'no_lang_code', 1, 'https://ror.org/02std5y37 Shukutoku University 淑徳大学'),
(81538, 'https://ror.org/02p5xjf12', 'en', 1, 'https://ror.org/02p5xjf12 The University of Texas Rio Grande Valley Universidad de Texas Valle del RĆ­o Grande'),
(81539, 'https://ror.org/01kjc7m95', 'en', 1, 'https://ror.org/01kjc7m95 Institute of Dendrology Instytut Dendrologii PAN'),
(81540, 'https://ror.org/02fhgbp51', 'en', 1, 'https://ror.org/02fhgbp51 National Institute of Education'),
(81541, 'https://ror.org/01bp81r18', 'en', 1, 'https://ror.org/01bp81r18 National Centre for Cell Science ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤•ą„‹ą¤¶ą¤æą¤•ą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°, ą¤Ŗą„ą¤£ą„‡'),
(81542, 'https://ror.org/02qsb4r69', 'en', 1, 'https://ror.org/02qsb4r69 Mastercard Foundation'),
(81543, 'https://ror.org/02xhmzq41', 'en', 1, 'https://ror.org/02xhmzq41 National Institute of Environmental Research'),
(81544, 'https://ror.org/02pgnjz11', 'it', 1, 'https://ror.org/02pgnjz11 Fondazione Caritro Fondazione Cassa di Risparmio di Trento e Rovereto'),
(81545, 'https://ror.org/00e6ytg41', 'en', 1, 'https://ror.org/00e6ytg41 Jiangsu Second Normal University ę±Ÿč‹ē¬¬äŗŒåøˆčŒƒå­¦é™¢'),
(81546, 'https://ror.org/007kz3b20', 'en', 1, 'https://ror.org/007kz3b20 Infrastructure Canada'),
(81547, 'https://ror.org/01a79sw46', 'en', 1, 'https://ror.org/01a79sw46 Iran Polymer and Petrochemical Institute'),
(81548, 'https://ror.org/01ntmn724', 'en', 1, 'https://ror.org/01ntmn724 Consortium For Research and Innovation In Aerospace In Quebec'),
(81549, 'https://ror.org/00tk6s776', 'en', 1, 'https://ror.org/00tk6s776 Institute of Biomedical Sciences, Academia Sinica äø­å¤®ē ”ē©¶é™¢ē”Ÿē‰©é†«å­øē§‘å­øē ”ē©¶ę‰€'),
(81550, 'https://ror.org/01d34a364', 'en', 1, 'https://ror.org/01d34a364 Taiwan Forestry Research Institute ꞗꄭ試驗ꉀ'),
(81551, 'https://ror.org/00fq07k50', 'en', 1, 'https://ror.org/00fq07k50 Universitas Mataram University of Mataram'),
(81552, 'https://ror.org/01f4dr878', 'en', 1, 'https://ror.org/01f4dr878 Kazimierz Pułaski University of Technology and Humanities in Radom Uniwersytet Technologiczno-Humanistyczny im. Kazimierza Pułaskiego w Radomiu'),
(81553, 'https://ror.org/02sjnrx77', 'no_lang_code', 1, 'https://ror.org/02sjnrx77 Zynerba Pharmaceuticals (United States)'),
(81554, 'https://ror.org/02b0qwc58', 'no_lang_code', 1, 'https://ror.org/02b0qwc58 Circle Cardiovascular Imaging'),
(81555, 'https://ror.org/013jjp941', 'no_lang_code', 1, 'https://ror.org/013jjp941 Beihua University 北华大学'),
(81556, 'https://ror.org/016rjax45', 'no_lang_code', 1, 'https://ror.org/016rjax45 Polymun (Austria)'),
(81557, 'https://ror.org/00tpx5s27', 'en', 1, 'https://ror.org/00tpx5s27 Asociación Nacional de Universidades e Instituciones de Educación Superior National Association of Universities and Higher Education Institutions'),
(81558, 'https://ror.org/00w0k4e67', 'en', 1, 'https://ror.org/00w0k4e67 Texas A&M University at Galveston Universidad de Texas A&M en Galveston'),
(81559, 'https://ror.org/02jsp2z03', 'no_lang_code', 1, 'https://ror.org/02jsp2z03 Telenor (Norway)'),
(81560, 'https://ror.org/009s53a61', 'en', 1, 'https://ror.org/009s53a61 IMDEA Materials Instituto IMDEA Materiales'),
(81561, 'https://ror.org/018graf05', 'en', 1, 'https://ror.org/018graf05 National Development Agency Nemzeti Fejlesztési Ügynökség'),
(81562, 'https://ror.org/00gz9xf10', 'en', 1, 'https://ror.org/00gz9xf10 Society for the Study of School Psychology'),
(81563, 'https://ror.org/00nxgpf29', 'en', 1, 'https://ror.org/00nxgpf29 National Disability Insurance Agency'),
(81564, 'https://ror.org/01thb7525', 'en', 1, 'https://ror.org/01thb7525 Institute of Applied Ecology äø­å›½ē§‘å­¦é™¢ę²ˆé˜³åŗ”ē”Øē”Ÿę€ē ”ē©¶ę‰€'),
(81565, 'https://ror.org/01by01460', 'no_lang_code', 1, 'https://ror.org/01by01460 Mirati Therapeutics (United States)'),
(81566, 'https://ror.org/006strx72', 'en', 1, 'https://ror.org/006strx72 Yugra State University Югорский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(81567, 'https://ror.org/023jta124', 'en', 1, 'https://ror.org/023jta124 Norwegian Environment Agency'),
(81568, 'https://ror.org/022jefx64', 'no_lang_code', 1, 'https://ror.org/022jefx64 Ono Pharmaceutical (Japan) å°é‡Žč–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(81569, 'https://ror.org/02e250j72', 'en', 1, 'https://ror.org/02e250j72 Industrial Biotechnology Innovation Centre'),
(81570, 'https://ror.org/008cfxd05', 'en', 1, 'https://ror.org/008cfxd05 Sax Institute'),
(81571, 'https://ror.org/01v8x0f60', 'en', 1, 'https://ror.org/01v8x0f60 Rafsanjan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکي رفسنجان'),
(81572, 'https://ror.org/02124dd11', 'en', 1, 'https://ror.org/02124dd11 Salahaddin University-Erbil Ų¬Ų§Ł…Ų¹Ų© صلاح Ų§Ł„ŲÆŁŠŁ†'),
(81573, 'https://ror.org/0103gnm60', 'de', 1, 'https://ror.org/0103gnm60 Stiftung Lindenhof Bern'),
(81574, 'https://ror.org/00ghy1a10', 'en', 1, 'https://ror.org/00ghy1a10 Morgan Adams Foundation'),
(81575, 'https://ror.org/027385r44', 'en', 1, 'https://ror.org/027385r44 East China University of Technology äøœåŽē†å·„å¤§å­¦'),
(81576, 'https://ror.org/02n8rnw93', 'en', 1, 'https://ror.org/02n8rnw93 Centre for Nano and Soft Matter Sciences'),
(81577, 'https://ror.org/02h28kk33', 'en', 1, 'https://ror.org/02h28kk33 Vietnam Military Medical University'),
(81578, 'https://ror.org/00xs3qr03', 'en', 1, 'https://ror.org/00xs3qr03 Sichuan Youth Science & Technology Foundation'),
(81579, 'https://ror.org/00csccw89', 'no_lang_code', 1, 'https://ror.org/00csccw89 Boston Biomedical (United States)'),
(81580, 'https://ror.org/01rvn4p91', 'en', 1, 'https://ror.org/01rvn4p91 Board of the Swiss Federal Institutes of Technology Conseil des Ɖcoles Polytechniques FĆ©dĆ©rales Rat der Eidgenƶssischen Technischen Hochschulen'),
(81581, 'https://ror.org/02k9x1e74', 'no_lang_code', 1, 'https://ror.org/02k9x1e74 Sound Approach (United Kingdom)'),
(81582, 'https://ror.org/012wm5r19', 'en', 1, 'https://ror.org/012wm5r19 National Institute of Advanced Studies'),
(81583, 'https://ror.org/00wnb9798', 'en', 1, 'https://ror.org/00wnb9798 National Science and Technology Council'),
(81584, 'https://ror.org/019cc4r33', 'en', 1, 'https://ror.org/019cc4r33 Society for French Historical Studies'),
(81585, 'https://ror.org/02sgpe757', 'en', 1, 'https://ror.org/02sgpe757 SUNY Cobleskill'),
(81586, 'https://ror.org/019c4md20', 'en', 1, 'https://ror.org/019c4md20 Mississippi State Department of Health'),
(81587, 'https://ror.org/00412cg11', 'fi', 1, 'https://ror.org/00412cg11 Vatsatautien TutkimussƤƤtiƶ'),
(81588, 'https://ror.org/0127qs140', 'en', 1, 'https://ror.org/0127qs140 Saint Luke''s Health System'),
(81589, 'https://ror.org/01czt1t86', 'en', 1, 'https://ror.org/01czt1t86 Nunavut Research Institute'),
(81590, 'https://ror.org/008zkt807', 'fr', 1, 'https://ror.org/008zkt807 Banque publique d''investissement Bpifrance'),
(81591, 'https://ror.org/02r1zra39', 'en', 1, 'https://ror.org/02r1zra39 Commission de la sƩcuritƩ professionnelle et de l''assurance contre les accidents du travail Workplace Safety & Insurance Board'),
(81592, 'https://ror.org/01wwe2m47', 'pt', 1, 'https://ror.org/01wwe2m47 Instituto Nacional de Ciência e Tecnologia de CatÔlise em Sistemas Moleculares e Nanoestruturados'),
(81593, 'https://ror.org/026rw3q91', 'en', 1, 'https://ror.org/026rw3q91 National Atmospheric Research Laboratory'),
(81594, 'https://ror.org/0099tem44', 'en', 1, 'https://ror.org/0099tem44 Crop Science Society of America'),
(81595, 'https://ror.org/02427qx15', 'en', 1, 'https://ror.org/02427qx15 International Society of Arthroscopy, Knee Surgery and Orthopaedic Sports Medicine'),
(81596, 'https://ror.org/00nj22y86', 'en', 1, 'https://ror.org/00nj22y86 Institute for Problems in Mechanics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем механики им.А.Š®.Ишлинского Российской акаГемии наук'),
(81597, 'https://ror.org/02fwgk331', 'en', 1, 'https://ror.org/02fwgk331 Soil Science Society of America'),
(81598, 'https://ror.org/0010b6s72', 'en', 1, 'https://ror.org/0010b6s72 Tianjin Agricultural University å¤©ę“„å†œå­¦é™¢'),
(81599, 'https://ror.org/025n38288', 'en', 1, 'https://ror.org/025n38288 University Hospitals Coventry and Warwickshire NHS Trust'),
(81600, 'https://ror.org/00919v790', 'no_lang_code', 1, 'https://ror.org/00919v790 Arrowhead Pharmaceuticals (United States)'),
(81601, 'https://ror.org/00tf10278', 'no_lang_code', 1, 'https://ror.org/00tf10278 Betta Pharmaceuticals (China) č“č¾¾čÆäøš'),
(81602, 'https://ror.org/01a9tn778', 'en', 1, 'https://ror.org/01a9tn778 National Centre for Earth Science Studies ą“¦ąµ‡ą“¶ą“æą“Æ ą“­ąµ‚ą“®ą“æ ą“¶ą“¾ą“øąµą“¤ąµą“° ą“Ŗą“ ą“Ø ą“•ąµ‡'),
(81603, 'https://ror.org/01r2r1452', 'no_lang_code', 1, 'https://ror.org/01r2r1452 Chicken Farmers of Saskatchewan (Canada)'),
(81604, 'https://ror.org/02g01cb27', 'en', 1, 'https://ror.org/02g01cb27 Deutsches Historisches Institut Washington German Historical Institute'),
(81605, 'https://ror.org/01xcgh759', 'id', 1, 'https://ror.org/01xcgh759 Institut Teknologi Kalimantan'),
(81606, 'https://ror.org/02xz7aa11', 'no_lang_code', 1, 'https://ror.org/02xz7aa11 ReShape Lifesciences (United States)'),
(81607, 'https://ror.org/00q16t150', 'en', 1, 'https://ror.org/00q16t150 University of Texas Health Science Center at Dallas'),
(81608, 'https://ror.org/00ccrcy56', 'en', 1, 'https://ror.org/00ccrcy56 Physician Assistant Education Association'),
(81609, 'https://ror.org/01q9sj412', 'en', 1, 'https://ror.org/01q9sj412 University Hospital of Bern'),
(81610, 'https://ror.org/014w49905', 'no_lang_code', 1, 'https://ror.org/014w49905 Aileron (United States)'),
(81611, 'https://ror.org/01xdkk717', 'no_lang_code', 1, 'https://ror.org/01xdkk717 Momenta Pharmaceuticals (United States)'),
(81612, 'https://ror.org/0009ezc57', 'en', 1, 'https://ror.org/0009ezc57 Mach-Gaensslen Foundation'),
(81613, 'https://ror.org/02p7ynq34', 'en', 1, 'https://ror.org/02p7ynq34 National MPS Society'),
(81614, 'https://ror.org/001cj5727', 'en', 1, 'https://ror.org/001cj5727 Society for Maternal-Fetal Medicine'),
(81615, 'https://ror.org/02sfc7c49', 'en', 1, 'https://ror.org/02sfc7c49 Andrews Institute for Orthopaedics & Sports Medicine'),
(81616, 'https://ror.org/006ak0b38', 'en', 1, 'https://ror.org/006ak0b38 Quanzhou Normal University ę³‰å·žåøˆčŒƒå­¦é™¢'),
(81617, 'https://ror.org/028yz2737', 'en', 1, 'https://ror.org/028yz2737 Lishui City People''s Hospital'),
(81618, 'https://ror.org/02bkp9390', 'en', 1, 'https://ror.org/02bkp9390 South African Veterinary Foundation Suid-Afrikaanse Veterinere Stigting'),
(81619, 'https://ror.org/02tn5vs15', 'en', 1, 'https://ror.org/02tn5vs15 Max Kade Foundation'),
(81620, 'https://ror.org/00vawn972', 'de', 1, 'https://ror.org/00vawn972 Infrafrontier'),
(81621, 'https://ror.org/014cfdh55', 'en', 1, 'https://ror.org/014cfdh55 National Collegiate Athletic Association'),
(81622, 'https://ror.org/02z28nb98', 'no_lang_code', 1, 'https://ror.org/02z28nb98 Avanir Pharmaceuticals (United States)'),
(81623, 'https://ror.org/01bb1zm18', 'en', 1, 'https://ror.org/01bb1zm18 N. I. Lobachevsky State University of Nizhny Novgorod ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. И. Лобачевского'),
(81624, 'https://ror.org/02gjqpv16', 'en', 1, 'https://ror.org/02gjqpv16 Moroccan Foundation for Advanced Science, Innovation and Research'),
(81625, 'https://ror.org/01971z286', 'en', 1, 'https://ror.org/01971z286 Ministry for Foreign Affairs of Finland Ulkoasiainministeriƶ'),
(81626, 'https://ror.org/01e59yk92', 'en', 1, 'https://ror.org/01e59yk92 Swedish e-Science Research Centre'),
(81627, 'https://ror.org/00xacpf89', 'no_lang_code', 1, 'https://ror.org/00xacpf89 Aerie Pharmaceuticals (United States)'),
(81628, 'https://ror.org/020a33943', 'no_lang_code', 1, 'https://ror.org/020a33943 Toyobo (Japan) ę±ę“‹ē“”ēø¾ę Ŗå¼ä¼šē¤¾'),
(81629, 'https://ror.org/008vsyy18', 'fr', 1, 'https://ror.org/008vsyy18 Wallonie-Bruxelles International'),
(81630, 'https://ror.org/00ka6rp58', 'en', 1, 'https://ror.org/00ka6rp58 Sir Run Run Shaw Hospital ęµ™ę±Ÿå¤§å­¦åŒ»å­¦é™¢é™„å±žé‚µé€øå¤«åŒ»é™¢'),
(81631, 'https://ror.org/02gxych78', 'en', 1, 'https://ror.org/02gxych78 Shantou University Medical College'),
(81632, 'https://ror.org/01faaaf77', 'en', 1, 'https://ror.org/01faaaf77 Karl-Franzens-UniversitƤt Graz SveučiliÅ”te u Grazu University of Graz Univerza v Gradcu'),
(81633, 'https://ror.org/007mrxy13', 'en', 1, 'https://ror.org/007mrxy13 West China Hospital of Sichuan University'),
(81634, 'https://ror.org/01t650v39', 'en', 1, 'https://ror.org/01t650v39 Australian Prawn Farmers Association'),
(81635, 'https://ror.org/00a1c5n07', 'en', 1, 'https://ror.org/00a1c5n07 VA Western New York Healthcare System'),
(81636, 'https://ror.org/02rka3n91', 'en', 1, 'https://ror.org/02rka3n91 Mianyang Normal University ē»µé˜³åøˆčŒƒå­¦é™¢'),
(81637, 'https://ror.org/01pp5tt34', 'en', 1, 'https://ror.org/01pp5tt34 Science Council of Japan ę—„ęœ¬å­¦č”“ä¼šč­°'),
(81638, 'https://ror.org/00521fv82', 'no_lang_code', 1, 'https://ror.org/00521fv82 Azim Premji University ą¤…ą¤œą¤¼ą„€ą¤® ą¤Ŗą„ą¤°ą„‡ą¤®ą¤œą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(81639, 'https://ror.org/012tq4a48', 'de', 1, 'https://ror.org/012tq4a48 Manfred LautenschlƤger-Stiftung'),
(81640, 'https://ror.org/029mfr659', 'no_lang_code', 1, 'https://ror.org/029mfr659 Dairy Farmers of Ontario'),
(81641, 'https://ror.org/001ajjs72', 'en', 1, 'https://ror.org/001ajjs72 Cambridge Philosophical Society'),
(81642, 'https://ror.org/0156h1p41', 'en', 1, 'https://ror.org/0156h1p41 Legal Aid New South Wales'),
(81643, 'https://ror.org/0043ezw98', 'en', 1, 'https://ror.org/0043ezw98 Malek Ashtar University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ مالک Ų§Ų“ŲŖŲ±'),
(81644, 'https://ror.org/0000p0n60', 'no_lang_code', 1, 'https://ror.org/0000p0n60 Otis (United States)'),
(81645, 'https://ror.org/00sv75074', 'en', 1, 'https://ror.org/00sv75074 Aerospace Medical Association'),
(81646, 'https://ror.org/00m41dd57', 'en', 1, 'https://ror.org/00m41dd57 Alopecia UK'),
(81647, 'https://ror.org/028c4z094', 'es', 1, 'https://ror.org/028c4z094 Fundación Carolina'),
(81648, 'https://ror.org/02kjyst95', 'en', 1, 'https://ror.org/02kjyst95 South Asian University'),
(81649, 'https://ror.org/00x44h034', 'en', 1, 'https://ror.org/00x44h034 Xinjiang Technical Institute of Physics & Chemistry äø­å›½ē§‘å­¦é™¢ę–°ē–†ē†åŒ–ęŠ€ęœÆē ”ē©¶ę‰€'),
(81650, 'https://ror.org/003eyb898', 'en', 1, 'https://ror.org/003eyb898 National University of Computer and Emerging Sciences فاسٹ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ Ł†ŁŠŲ“Ł†Ł„ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ آف ŚŖŁ…Ł¾ŁŠŁˆŁ½Ų± Ų§ŁŠŁ†ŚŠ امرجنگ Ų³Ų§Ų¦Ł†Ų³Ų²ā€Ž'),
(81651, 'https://ror.org/00r8h6r91', 'en', 1, 'https://ror.org/00r8h6r91 Macaulay Development Trust'),
(81652, 'https://ror.org/01aw9fv09', 'en', 1, 'https://ror.org/01aw9fv09 Rhode Island Hospital'),
(81653, 'https://ror.org/013s3gf12', 'en', 1, 'https://ror.org/013s3gf12 Genome Prairie'),
(81654, 'https://ror.org/014w0fd65', 'en', 1, 'https://ror.org/014w0fd65 European Centre for Medium-Range Weather Forecasts'),
(81655, 'https://ror.org/00c402j46', 'no_lang_code', 1, 'https://ror.org/00c402j46 Dansk Selskab for AnƦstesiologi og Intensiv Medicin (Denmark)'),
(81656, 'https://ror.org/025qtp564', 'en', 1, 'https://ror.org/025qtp564 National Institute of Pharmaceutical Education and Research'),
(81657, 'https://ror.org/02601yx74', 'en', 1, 'https://ror.org/02601yx74 Beijing National Laboratory for Molecular Sciences åŒ—äŗ¬åˆ†å­ē§‘å­¦å›½å®¶å®žéŖŒå®¤'),
(81658, 'https://ror.org/00v9rqv32', 'en', 1, 'https://ror.org/00v9rqv32 Water Research Australia'),
(81659, 'https://ror.org/012bdm419', 'en', 1, 'https://ror.org/012bdm419 Japan Primary Care Association'),
(81660, 'https://ror.org/02bykax26', 'en', 1, 'https://ror.org/02bykax26 Geological Survey of Iran'),
(81661, 'https://ror.org/02jxgpt62', 'en', 1, 'https://ror.org/02jxgpt62 Folke Bernadotte Academy Folke Bernadotteakademin'),
(81662, 'https://ror.org/00r57r863', 'en', 1, 'https://ror.org/00r57r863 Wallops Flight Facility'),
(81663, 'https://ror.org/018ezh270', 'de', 1, 'https://ror.org/018ezh270 Deutsche Gesellschaft für Parkinson und Bewegungsstörungen'),
(81664, 'https://ror.org/00xc0ma20', 'en', 1, 'https://ror.org/00xc0ma20 City University of Hong Kong, Shenzhen Research Institute é¦™ęøÆåŸŽåø‚å¤§å­¦ę·±åœ³ē ”ē©¶é™¢'),
(81665, 'https://ror.org/01y8r3379', 'en', 1, 'https://ror.org/01y8r3379 Mozilla Foundation'),
(81666, 'https://ror.org/01k2cxc53', 'en', 1, 'https://ror.org/01k2cxc53 Virginia Marine Resources Commission'),
(81667, 'https://ror.org/014208j94', 'en', 1, 'https://ror.org/014208j94 Fund for the Replacement of Animals in Medical Experiments'),
(81668, 'https://ror.org/01q2d8e83', 'en', 1, 'https://ror.org/01q2d8e83 Ministry of the Environment, Conservation and Parks MinistĆØre de l’Environnement, de la Protection de la Nature et des Parcs'),
(81669, 'https://ror.org/02xqyv944', 'en', 1, 'https://ror.org/02xqyv944 Mapiau Arolwg Ordnans Ordnance Survey'),
(81670, 'https://ror.org/0176yqn58', 'en', 1, 'https://ror.org/0176yqn58 American University in Cairo UniversitĆ© AmĆ©ricaine du Caire الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© بالقاهرة'),
(81671, 'https://ror.org/00h3kxy16', 'en', 1, 'https://ror.org/00h3kxy16 University Hospital Foundation'),
(81672, 'https://ror.org/020g3wn65', 'en', 1, 'https://ror.org/020g3wn65 ARC Centre of Excellence for Electromaterials Science'),
(81673, 'https://ror.org/00ya1zd25', 'en', 1, 'https://ror.org/00ya1zd25 Virtual University of Pakistan جامعہ Ł…Ų¬Ų§Ų²ŪŒ پاکستان'),
(81674, 'https://ror.org/00zq3nn60', 'en', 1, 'https://ror.org/00zq3nn60 Institute of Ecology and Biodiversity'),
(81675, 'https://ror.org/00scb2f23', 'no_lang_code', 1, 'https://ror.org/00scb2f23 ImmunoGen (United States)'),
(81676, 'https://ror.org/00qj2j544', 'en', 1, 'https://ror.org/00qj2j544 Korea Occupational Safety and Health Agency ģ•ˆģ „ė³“ź±“ź³µė‹Ø'),
(81677, 'https://ror.org/00m2x3q29', 'no_lang_code', 1, 'https://ror.org/00m2x3q29 Radius Health (United States)'),
(81678, 'https://ror.org/02yhcgx25', 'en', 1, 'https://ror.org/02yhcgx25 Manitoba Lung Association'),
(81679, 'https://ror.org/02s09gf16', 'no_lang_code', 1, 'https://ror.org/02s09gf16 SystemsX.ch'),
(81680, 'https://ror.org/02z9ca723', 'en', 1, 'https://ror.org/02z9ca723 Swiss Polar Institute'),
(81681, 'https://ror.org/00ggmjy78', 'en', 1, 'https://ror.org/00ggmjy78 Hualien Armed Forces General Hospital åœ‹č»čŠ±č“®ēø½é†«é™¢'),
(81682, 'https://ror.org/028gkfr23', 'no_lang_code', 1, 'https://ror.org/028gkfr23 Kissei Pharmaceutical (Japan) ć‚­ćƒƒć‚»ć‚¤č–¬å“å·„ę„­'),
(81683, 'https://ror.org/02xhrye98', 'en', 1, 'https://ror.org/02xhrye98 Norwegian Institute for Cultural Heritage Research'),
(81684, 'https://ror.org/00bpmmc63', 'en', 1, 'https://ror.org/00bpmmc63 Instituto Nacional de AstrofĆ­sica, Ɠptica y Electrónica National Institute of Astrophysics, Optics and Electronics'),
(81685, 'https://ror.org/00445hv47', 'en', 1, 'https://ror.org/00445hv47 Yulin Normal University ēŽ‰ęž—åøˆčŒƒå­¦é™¢'),
(81686, 'https://ror.org/00mny1y94', 'no_lang_code', 1, 'https://ror.org/00mny1y94 Revolution Medicines (United States)'),
(81687, 'https://ror.org/00gx5vq39', 'en', 1, 'https://ror.org/00gx5vq39 Botanical Survey of India'),
(81688, 'https://ror.org/01cmcvq49', 'en', 1, 'https://ror.org/01cmcvq49 Alliance for a Green Revolution in Africa'),
(81689, 'https://ror.org/00ta5r839', 'en', 1, 'https://ror.org/00ta5r839 Federal Bureau of Investigation'),
(81690, 'https://ror.org/02182rz34', 'no_lang_code', 1, 'https://ror.org/02182rz34 State Power Investment Corporation (China) å›½å®¶ē”µåŠ›ęŠ•čµ„é›†å›¢'),
(81691, 'https://ror.org/00wa5ga86', 'de', 1, 'https://ror.org/00wa5ga86 Austrian Diabetes Association Ɩsterreichische Diabetes Gesellschaft'),
(81692, 'https://ror.org/017qpw206', 'en', 1, 'https://ror.org/017qpw206 Welsh Ambulance Services NHS Trust'),
(81693, 'https://ror.org/02c4z7527', 'en', 1, 'https://ror.org/02c4z7527 Jagannath University ą¦œą¦—ą¦Øą§ą¦Øą¦¾ą¦„ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(81694, 'https://ror.org/023f76417', 'en', 1, 'https://ror.org/023f76417 National University of Austral Patagonia Universidad Nacional de la Patagonia Austral'),
(81695, 'https://ror.org/00dvgej48', 'en', 1, 'https://ror.org/00dvgej48 The Australasian Institute of Judicial Administration'),
(81696, 'https://ror.org/01yxvpn13', 'en', 1, 'https://ror.org/01yxvpn13 Jahrom University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی جهرم'),
(81697, 'https://ror.org/00265c946', 'en', 1, 'https://ror.org/00265c946 Public Health Wales'),
(81698, 'https://ror.org/02qbzdk74', 'en', 1, 'https://ror.org/02qbzdk74 Punjab Agricultural University ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਪੰਜਾਬ ąØąØ—ąØ°ą©€ąØ•ąØ²ąØšąØ°ąØ² ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(81699, 'https://ror.org/023ka9926', 'no_lang_code', 1, 'https://ror.org/023ka9926 Progenics Pharmaceuticals (United States)'),
(81700, 'https://ror.org/01qjqvr92', 'en', 1, 'https://ror.org/01qjqvr92 Translational Health Science and Technology Institute'),
(81701, 'https://ror.org/01t9r8c86', 'en', 1, 'https://ror.org/01t9r8c86 Prince Albert II of Monaco Foundation'),
(81702, 'https://ror.org/01khf5d59', 'en', 1, 'https://ror.org/01khf5d59 Qiqihar University 齐齐哈尔大学'),
(81703, 'https://ror.org/007mz4884', 'en', 1, 'https://ror.org/007mz4884 Institute for Operations Research and the Management Sciences'),
(81704, 'https://ror.org/00sk7bj79', 'en', 1, 'https://ror.org/00sk7bj79 Energy Policy and Planning Office ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø™ą¹‚ąø¢ąøšąø²ąø¢ą¹ąø„ąø°ą¹ąøœąø™ąøžąø„ąø±ąø‡ąø‡ąø²ąø™'),
(81705, 'https://ror.org/00r1xj860', 'en', 1, 'https://ror.org/00r1xj860 Advance HE'),
(81706, 'https://ror.org/00c2tyx86', 'no_lang_code', 1, 'https://ror.org/00c2tyx86 ARUP Laboratories (United States)'),
(81707, 'https://ror.org/00wjb4146', 'en', 1, 'https://ror.org/00wjb4146 National CFIDS Foundation'),
(81708, 'https://ror.org/02jwb5s28', 'en', 1, 'https://ror.org/02jwb5s28 Beijing Hospital'),
(81709, 'https://ror.org/00wkygr69', 'en', 1, 'https://ror.org/00wkygr69 Maine Department of Marine Resources'),
(81710, 'https://ror.org/02mfxdp77', 'en', 1, 'https://ror.org/02mfxdp77 Oklahoma State University Center for Health Sciences'),
(81711, 'https://ror.org/008c2qm47', 'de', 1, 'https://ror.org/008c2qm47 Federal Joint Committee Gemeinsamer Bundesausschuss'),
(81712, 'https://ror.org/00s3jmk58', 'en', 1, 'https://ror.org/00s3jmk58 Belgische Federale Regering Federal Government of Belgium Fƶderalregierung Belgien Gouvernement FƩdƩral Belgique'),
(81713, 'https://ror.org/016czhx14', 'en', 1, 'https://ror.org/016czhx14 St. Cloud State University UniversitĆ© d''Ɖtat de Saint Cloud'),
(81714, 'https://ror.org/00247dh76', 'en', 1, 'https://ror.org/00247dh76 National Computer Network Emergency Response Technical Team/Coordination Center of Chinar å›½å®¶č®”ē®—ęœŗē½‘ē»œåŗ”ę€„ęŠ€ęœÆå¤„ē†åč°ƒäø­åæƒ'),
(81715, 'https://ror.org/02v37gb90', 'en', 1, 'https://ror.org/02v37gb90 Pennsylvania College of Health Sciences'),
(81716, 'https://ror.org/02nvhz213', 'en', 1, 'https://ror.org/02nvhz213 The International Research Foundation for English Language Education'),
(81717, 'https://ror.org/00800dw77', 'en', 1, 'https://ror.org/00800dw77 University of the Philippines Visayas'),
(81718, 'https://ror.org/01wy46p27', 'no_lang_code', 1, 'https://ror.org/01wy46p27 Biolab Pharma (Brazil)'),
(81719, 'https://ror.org/01nv7by68', 'de', 1, 'https://ror.org/01nv7by68 Hamburger Krebsgesellschaft'),
(81720, 'https://ror.org/00g2pnp92', 'en', 1, 'https://ror.org/00g2pnp92 Zunyi Normal College éµä¹‰åøˆčŒƒå­¦é™¢'),
(81721, 'https://ror.org/02tj7r959', 'en', 1, 'https://ror.org/02tj7r959 Environmental Defense Fund'),
(81722, 'https://ror.org/01d2cn965', 'en', 1, 'https://ror.org/01d2cn965 Norwegian Directorate of Health'),
(81723, 'https://ror.org/01ev0z371', 'en', 1, 'https://ror.org/01ev0z371 The Salah Foundation'),
(81724, 'https://ror.org/0151bmh98', 'en', 1, 'https://ror.org/0151bmh98 University of Hyogo å…µåŗ«ēœŒē«‹å¤§å­¦'),
(81725, 'https://ror.org/01ytgve10', 'en', 1, 'https://ror.org/01ytgve10 Kyoto Pharmaceutical University äŗ¬éƒ½č–¬ē§‘å¤§å­¦'),
(81726, 'https://ror.org/02b3e2815', 'en', 1, 'https://ror.org/02b3e2815 Kitasato University Hospital åŒ—é‡Œå¤§å­¦ē—…é™¢'),
(81727, 'https://ror.org/01t70kc94', 'en', 1, 'https://ror.org/01t70kc94 Ministry of Environmental Protection ×”×ž×©×Ø×“ ×œ×”×’× ×Ŗ ההביבה'),
(81728, 'https://ror.org/01v9p7c03', 'en', 1, 'https://ror.org/01v9p7c03 National University of Santiago del Estero Universidad Nacional de Santiago del Estero'),
(81729, 'https://ror.org/00bv1jr75', 'no_lang_code', 1, 'https://ror.org/00bv1jr75 Yuhan (South Korea) ģœ ķ•œģ–‘ķ–‰'),
(81730, 'https://ror.org/0361c8163', 'en', 1, 'https://ror.org/0361c8163 Ruppin Academic Center ×”×ž×Ø×›×– האקדמי ×Ø×•×¤×™×Ÿ'),
(81731, 'https://ror.org/03b1hdw57', 'en', 1, 'https://ror.org/03b1hdw57 Ministerie van Landbouw, Natuur en Voedselkwaliteit Ministry of Agriculture, Nature and Food Quality'),
(81732, 'https://ror.org/038b85827', 'de', 1, 'https://ror.org/038b85827 Deutsche MigrƤne- und Kopfschmerzgesellschaft'),
(81733, 'https://ror.org/03neq2068', 'en', 1, 'https://ror.org/03neq2068 Institute of Marine Engineering Science and Technology'),
(81734, 'https://ror.org/05p336k36', 'en', 1, 'https://ror.org/05p336k36 American Hip Institute'),
(81735, 'https://ror.org/050wmgs87', 'en', 1, 'https://ror.org/050wmgs87 National Book Foundation'),
(81736, 'https://ror.org/05janne25', 'en', 1, 'https://ror.org/05janne25 Society for Translational Oncology'),
(81737, 'https://ror.org/053tmcn30', 'en', 1, 'https://ror.org/053tmcn30 MIT-Harvard Center for Ultracold Atoms'),
(81738, 'https://ror.org/05p1pn123', 'en', 1, 'https://ror.org/05p1pn123 Władysław Szafer Institute of Botany'),
(81739, 'https://ror.org/0428ac656', 'en', 1, 'https://ror.org/0428ac656 Primate Society of Great Britain'),
(81740, 'https://ror.org/050fhx250', 'en', 1, 'https://ror.org/050fhx250 Children''s Healthcare of Atlanta'),
(81741, 'https://ror.org/03r42r570', 'en', 1, 'https://ror.org/03r42r570 Wellcome / EPSRC Centre for Interventional and Surgical Sciences'),
(81742, 'https://ror.org/0452h9305', 'en', 1, 'https://ror.org/0452h9305 Ministrstvo za Visoko Solstvo, Znanost in Tehnologijo Ministry of Higher Education Science, and Technology'),
(81743, 'https://ror.org/05xm0ec82', 'en', 1, 'https://ror.org/05xm0ec82 Catholic Relief Services'),
(81744, 'https://ror.org/03w8qrn62', 'no_lang_code', 1, 'https://ror.org/03w8qrn62 Baosteel (China)'),
(81745, 'https://ror.org/04tsmra86', 'en', 1, 'https://ror.org/04tsmra86 National Board of Medical Examiners'),
(81746, 'https://ror.org/05cg4nt71', 'fr', 1, 'https://ror.org/05cg4nt71 Tour du Valat'),
(81747, 'https://ror.org/04cdsn556', 'en', 1, 'https://ror.org/04cdsn556 Nakhon Si Thammarat Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąøØąø£ąøµąø˜ąø£ąø£ąø”ąø£ąø²ąøŠ'),
(81748, 'https://ror.org/052p8vb75', 'en', 1, 'https://ror.org/052p8vb75 Policy Innovation and Co-ordination Office'),
(81749, 'https://ror.org/03zb5p722', 'es', 1, 'https://ror.org/03zb5p722 Instituto Tecnológico Metropolitano'),
(81750, 'https://ror.org/031vc2293', 'de', 1, 'https://ror.org/031vc2293 TU Bergakademie Freiberg Technische UniversitƤt Bergakademie Freiberg'),
(81751, 'https://ror.org/046cr9566', 'en', 1, 'https://ror.org/046cr9566 Nottingham Biomedical Research Centre'),
(81752, 'https://ror.org/034gm6584', 'en', 1, 'https://ror.org/034gm6584 Royal New Zealand College of General Practitioners'),
(81753, 'https://ror.org/055hae320', 'en', 1, 'https://ror.org/055hae320 United States Maritime Administration'),
(81754, 'https://ror.org/05m91fp41', 'en', 1, 'https://ror.org/05m91fp41 United Nations Foundation'),
(81755, 'https://ror.org/037kvhq82', 'en', 1, 'https://ror.org/037kvhq82 Jingchu University of Technology'),
(81756, 'https://ror.org/056szk247', 'en', 1, 'https://ror.org/056szk247 Jishou University 吉首大学'),
(81757, 'https://ror.org/03b66v461', 'no_lang_code', 1, 'https://ror.org/03b66v461 Jaguar Land Rover (United Kingdom)'),
(81758, 'https://ror.org/03k4xgp92', 'en', 1, 'https://ror.org/03k4xgp92 Guangzhou Psychiatric Hospital'),
(81759, 'https://ror.org/03f72zw41', 'en', 1, 'https://ror.org/03f72zw41 Henan Provincial People''s Hospital ę²³å—ēœäŗŗę°‘åŒ»é™¢'),
(81760, 'https://ror.org/05yndxy10', 'en', 1, 'https://ror.org/05yndxy10 UCSF Helen Diller Family Comprehensive Cancer Center'),
(81761, 'https://ror.org/03b1qgn79', 'no_lang_code', 1, 'https://ror.org/03b1qgn79 Silicon Austria Labs (Austria)'),
(81762, 'https://ror.org/0384yev14', 'en', 1, 'https://ror.org/0384yev14 Otterbein University'),
(81763, 'https://ror.org/048qnr849', 'en', 1, 'https://ror.org/048qnr849 Aswan University Ų¬Ų§Ł…Ų¹Ų© Ų£Ų³ŁˆŲ§Ł†'),
(81764, 'https://ror.org/048zf6f56', 'no_lang_code', 1, 'https://ror.org/048zf6f56 British Association of Plastic, Reconstructive and Aesthetic Surgeons'),
(81765, 'https://ror.org/032y0n460', 'es', 1, 'https://ror.org/032y0n460 Instituto Nacional de Salud PĆŗblica National Institute of Public Health of Mexico'),
(81766, 'https://ror.org/05wpaeg31', 'en', 1, 'https://ror.org/05wpaeg31 Canadian Centre for Applied Research in Cancer Control'),
(81767, 'https://ror.org/03ka4h071', 'it', 1, 'https://ror.org/03ka4h071 Consorzio Interuniversitario per le Biotecnologie'),
(81768, 'https://ror.org/03m343922', 'en', 1, 'https://ror.org/03m343922 CollĆØge de l’Arctique du Nunavut Nunavut Arctic College į“„į“‡į•—į’»į’„į“Æį“šį‘¦į‘į–…į““į•į••į’ƒ'),
(81769, 'https://ror.org/030cztq64', 'en', 1, 'https://ror.org/030cztq64 European Association of Nuclear Medicine'),
(81770, 'https://ror.org/05c0g2426', 'en', 1, 'https://ror.org/05c0g2426 National Institute for Nanotechnology'),
(81771, 'https://ror.org/04raa0n02', 'en', 1, 'https://ror.org/04raa0n02 Minerals Metals and Materials Society'),
(81772, 'https://ror.org/054tsxk98', 'en', 1, 'https://ror.org/054tsxk98 Bonneagar Iompair Ɖireann Transport Infrastructure Ireland'),
(81773, 'https://ror.org/05n2ytn05', 'en', 1, 'https://ror.org/05n2ytn05 Retina Research Foundation'),
(81774, 'https://ror.org/04nm2mq63', 'en', 1, 'https://ror.org/04nm2mq63 CRUK Lung Cancer Centre of Excellence'),
(81775, 'https://ror.org/037te6005', 'en', 1, 'https://ror.org/037te6005 Friends Together'),
(81776, 'https://ror.org/042b6j696', 'en', 1, 'https://ror.org/042b6j696 Nanzan University 南山大学'),
(81777, 'https://ror.org/04npmfz39', 'no_lang_code', 1, 'https://ror.org/04npmfz39 Ortho Clinical Diagnostics (United States)'),
(81778, 'https://ror.org/03a9mf398', 'en', 1, 'https://ror.org/03a9mf398 Moscow State Pedagogical University Московский пеГагогический Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(81779, 'https://ror.org/03dv9mn33', 'en', 1, 'https://ror.org/03dv9mn33 Swedish Species Information Centre'),
(81780, 'https://ror.org/03e81x648', 'en', 1, 'https://ror.org/03e81x648 Institute of Health Economics'),
(81781, 'https://ror.org/03r6vqn56', 'en', 1, 'https://ror.org/03r6vqn56 Nationaal Regieorgaan Praktijkgericht Onderzoek SIA Taskforce for Applied Research'),
(81782, 'https://ror.org/05nqg3g04', 'en', 1, 'https://ror.org/05nqg3g04 Ningbo Institute of Industrial Technology äø­å›½ē§‘å­¦é™¢å®ę³¢ęę–™ęŠ€ęœÆäøŽå·„ēØ‹ē ”ē©¶ę‰€'),
(81783, 'https://ror.org/059a9nj82', 'en', 1, 'https://ror.org/059a9nj82 National Council for Behavioral Health'),
(81784, 'https://ror.org/04tetvb72', 'en', 1, 'https://ror.org/04tetvb72 Archstone Foundation'),
(81785, 'https://ror.org/03mxhzf09', 'en', 1, 'https://ror.org/03mxhzf09 Antarctic Climate and Ecosystems Cooperative Research Centre'),
(81786, 'https://ror.org/048e91n87', 'en', 1, 'https://ror.org/048e91n87 Chulabhorn Graduate Institute ąøŖąø–ąø²ąøšąø±ąø™ąøšąø±ąø“ąø‘ąø“ąø•ąøØąø¶ąøąø©ąø²ąøˆąøøąø¬ąø²ąø ąø£ąø“ą¹Œ'),
(81787, 'https://ror.org/037skf023', 'en', 1, 'https://ror.org/037skf023 SRM University'),
(81788, 'https://ror.org/03amynm94', 'en', 1, 'https://ror.org/03amynm94 Long Island Community Foundation'),
(81789, 'https://ror.org/05gxnjj05', 'en', 1, 'https://ror.org/05gxnjj05 Council for Grants of the President of the Russian Federation Довет по грантам ŠŸŃ€ŠµŠ·ŠøŠ“ента Российской ФеГерации'),
(81790, 'https://ror.org/05s723e81', 'en', 1, 'https://ror.org/05s723e81 Women''s & Children''s Hospital Foundation'),
(81791, 'https://ror.org/05a5s1z53', 'no_lang_code', 1, 'https://ror.org/05a5s1z53 Alimentary Health (Ireland)'),
(81792, 'https://ror.org/04xnm9a92', 'en', 1, 'https://ror.org/04xnm9a92 The Russian Presidential Academy of National Economy and Public Administration Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ нароГного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ при ŠŸŃ€ŠµŠ·ŠøŠ“енте Российской ФеГерации'),
(81793, 'https://ror.org/033janr42', 'en', 1, 'https://ror.org/033janr42 Quebec Rehabilitation Research Network RƩseau Provincial de Recherche en Adaptation RƩadaptation'),
(81794, 'https://ror.org/03rgj1v74', 'en', 1, 'https://ror.org/03rgj1v74 Sbarro Health Research Organization'),
(81795, 'https://ror.org/05cekg904', 'en', 1, 'https://ror.org/05cekg904 Yunnan Environmental Protection Bureau äŗ‘å—ēœēŽÆå¢ƒäæęŠ¤åŽ…'),
(81796, 'https://ror.org/034e7c066', 'no_lang_code', 1, 'https://ror.org/034e7c066 Laboratoires Servier Servier (France)'),
(81797, 'https://ror.org/0348vjd58', 'en', 1, 'https://ror.org/0348vjd58 Society for Leukocyte Biology'),
(81798, 'https://ror.org/04577y567', 'en', 1, 'https://ror.org/04577y567 Vermont Department of Health'),
(81799, 'https://ror.org/04zvqhj72', 'pl', 1, 'https://ror.org/04zvqhj72 Wojskowy Instytut Medyczny'),
(81800, 'https://ror.org/04w5zb891', 'en', 1, 'https://ror.org/04w5zb891 Jilin Agricultural Science and Technology University å‰ęž—å†œäøšē§‘ęŠ€å­¦é™¢'),
(81801, 'https://ror.org/045sst074', 'en', 1, 'https://ror.org/045sst074 French Infrastructure for Integrated Structural Biology'),
(81802, 'https://ror.org/05m2sf497', 'en', 1, 'https://ror.org/05m2sf497 Centro Internazionale di Studi per la Conservazione ed il Restauro dei Beni Culturali International Centre for the Study of the Preservation and Restoration of Cultural Property'),
(81803, 'https://ror.org/05f9hgh77', 'no_lang_code', 1, 'https://ror.org/05f9hgh77 Entasis Therapeutics (United States)'),
(81804, 'https://ror.org/04vdmbk59', 'en', 1, 'https://ror.org/04vdmbk59 Pedagogical and Technological University of Colombia Universidad Pedagógica y Tecnológica de Colombia'),
(81805, 'https://ror.org/05jraf368', 'en', 1, 'https://ror.org/05jraf368 Tatematsu Foundation å…¬ē›Šč²”å›£ę³•äŗŗē«‹ę¾č²”å›£'),
(81806, 'https://ror.org/04bqrfs31', 'en', 1, 'https://ror.org/04bqrfs31 Augustana College'),
(81807, 'https://ror.org/04xgh4d03', 'en', 1, 'https://ror.org/04xgh4d03 Ming Chi University of Technology ę˜Žåæ—ē§‘ęŠ€å¤§å­ø'),
(81808, 'https://ror.org/04bpd2v91', 'en', 1, 'https://ror.org/04bpd2v91 International Society for Stem Cell Research'),
(81809, 'https://ror.org/0410k9915', 'no_lang_code', 1, 'https://ror.org/0410k9915 China Shipbuilding Industry Corporation (China) äø­å›½čˆ¹čˆ¶é‡å·„é›†å›¢å…¬åø'),
(81810, 'https://ror.org/055eqn678', 'en', 1, 'https://ror.org/055eqn678 Mt. Sinai Health Care Foundation'),
(81811, 'https://ror.org/04cbe1f31', 'en', 1, 'https://ror.org/04cbe1f31 Chersoński Uniwersytet Państwowy Kherson State University Єерсонский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠøŠ¹ Гержавний унiверситет'),
(81812, 'https://ror.org/04cz2sw33', 'en', 1, 'https://ror.org/04cz2sw33 Geocenter Denmark'),
(81813, 'https://ror.org/045qzah91', 'en', 1, 'https://ror.org/045qzah91 Fisheries Agency č”Œę”æé™¢č¾²ę„­å§”å“”ęœƒę¼ę„­ē½²'),
(81814, 'https://ror.org/04pnjx786', 'en', 1, 'https://ror.org/04pnjx786 Kazusa DNA Research Institute å…¬ē›Šč²”å›£ę³•äŗŗć‹ćšć•DNA研究所'),
(81815, 'https://ror.org/05nnsek89', 'en', 1, 'https://ror.org/05nnsek89 National Agri-Food Biotechnology Institute'),
(81816, 'https://ror.org/05nkgk822', 'en', 1, 'https://ror.org/05nkgk822 Jiangxi Normal University 江脿师范大学'),
(81817, 'https://ror.org/03pza9p08', 'en', 1, 'https://ror.org/03pza9p08 Changzhou Vocational Institute of Engineering åøøå·žå·„ēØ‹čŒäøšęŠ€ęœÆå­¦é™¢'),
(81818, 'https://ror.org/05jv1pq83', 'en', 1, 'https://ror.org/05jv1pq83 Uganda National Council for Science and Technology'),
(81819, 'https://ror.org/039hdbz42', 'no_lang_code', 1, 'https://ror.org/039hdbz42 Orbus Therapeutics (United States)'),
(81820, 'https://ror.org/05mmma237', 'no_lang_code', 1, 'https://ror.org/05mmma237 International Geosynthetics Society (United States)'),
(81821, 'https://ror.org/05v5hg569', 'en', 1, 'https://ror.org/05v5hg569 Weill Cornell Medical College in Qatar ŁƒŁ„ŁŠŲ© Ų·ŲØ ŁˆŲ§ŁŠŁ„ ŁƒŁˆŲ±Ł†ŁŠŁ„'),
(81822, 'https://ror.org/04p7g7c05', 'en', 1, 'https://ror.org/04p7g7c05 Earthquake Commission'),
(81823, 'https://ror.org/03vy1bn66', 'no_lang_code', 1, 'https://ror.org/03vy1bn66 Woodside (Australia)'),
(81824, 'https://ror.org/035hxad97', 'en', 1, 'https://ror.org/035hxad97 Tongren University 铜仁大学'),
(81825, 'https://ror.org/04hnf9a51', 'en', 1, 'https://ror.org/04hnf9a51 Islamic Azad University of Tabriz دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تبریز'),
(81826, 'https://ror.org/05fxg9b69', 'en', 1, 'https://ror.org/05fxg9b69 African Economic Research Consortium'),
(81827, 'https://ror.org/042wrtw77', 'en', 1, 'https://ror.org/042wrtw77 Department of Finance'),
(81828, 'https://ror.org/038v75980', 'en', 1, 'https://ror.org/038v75980 Southwestern Medical Foundation'),
(81829, 'https://ror.org/04pq5x672', 'en', 1, 'https://ror.org/04pq5x672 Nicholls State University UniversitĆ© d''Ɖtat nicholls'),
(81830, 'https://ror.org/02zv9xv82', 'en', 1, 'https://ror.org/02zv9xv82 Australian Centre for Robotic Vision'),
(81831, 'https://ror.org/04vqm6w82', 'en', 1, 'https://ror.org/04vqm6w82 Whitehead Institute for Biomedical Research'),
(81832, 'https://ror.org/056s65p46', 'pt', 1, 'https://ror.org/056s65p46 Federal University of Ouro Preto Universidade Federal de Ouro Preto'),
(81833, 'https://ror.org/052prhs50', 'en', 1, 'https://ror.org/052prhs50 Sofya Teknik Üniversitesi Technical University of Sofia Технически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Š”Š¾Ń„ŠøŃ'),
(81834, 'https://ror.org/044ng3n84', 'nl', 1, 'https://ror.org/044ng3n84 Nationale Einrichtung für Radioaktive Abfälle und angereicherte Spaltmaterialien Nationale Instelling voor Radioactief Aval en verijkte Splijtstoffen Nationale instelling voor radioactief afval en verrijkte Splijtstoffen Organisme national des déchets radioactifs et des matières fissiles enrichies'),
(81835, 'https://ror.org/03nxfhe13', 'en', 1, 'https://ror.org/03nxfhe13 Baylor University Medical Center'),
(81836, 'https://ror.org/050awhq57', 'en', 1, 'https://ror.org/050awhq57 Maine Department of Inland Fisheries and Wildlife'),
(81837, 'https://ror.org/036brtn72', 'en', 1, 'https://ror.org/036brtn72 Foundation of Hope'),
(81838, 'https://ror.org/04w5f4y88', 'en', 1, 'https://ror.org/04w5f4y88 Zewail City of Science and Technology Ł…ŲÆŁŠŁ†Ų© Ų²ŁˆŁŠŁ„ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(81839, 'https://ror.org/04b7h4365', 'en', 1, 'https://ror.org/04b7h4365 Society for Cardiovascular Magnetic Resonance'),
(81840, 'https://ror.org/03y90jx90', 'no_lang_code', 1, 'https://ror.org/03y90jx90 Manitoba Hydro'),
(81841, 'https://ror.org/04m9wnx11', 'en', 1, 'https://ror.org/04m9wnx11 Brain Research New Zealand'),
(81842, 'https://ror.org/05r792a43', 'en', 1, 'https://ror.org/05r792a43 British Columbia Lung Association'),
(81843, 'https://ror.org/03s455144', 'en', 1, 'https://ror.org/03s455144 Rett Syndrome Research Trust'),
(81844, 'https://ror.org/05a33s425', 'en', 1, 'https://ror.org/05a33s425 Kentucky Department for Public Health'),
(81845, 'https://ror.org/054nr9p58', 'no_lang_code', 1, 'https://ror.org/054nr9p58 Snap-on (United States)'),
(81846, 'https://ror.org/054pkye94', 'en', 1, 'https://ror.org/054pkye94 Ministry of Health, Nutrition and Indigenous Medicine'),
(81847, 'https://ror.org/053m0aq28', 'en', 1, 'https://ror.org/053m0aq28 Swedish Association of Local Authorities and Regions'),
(81848, 'https://ror.org/05stzyr92', 'en', 1, 'https://ror.org/05stzyr92 Campbell Collaboration'),
(81849, 'https://ror.org/03ynvqh91', 'en', 1, 'https://ror.org/03ynvqh91 Palaeontological Scientific Trust'),
(81850, 'https://ror.org/04hsvhf62', 'en', 1, 'https://ror.org/04hsvhf62 Al-Furat Al-Awsat Technical University Ų¬Ų§Ł…Ų¹Ų© الفرات Ų§Ł„Ų§ŁˆŲ³Ų· Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(81851, 'https://ror.org/05atez085', 'en', 1, 'https://ror.org/05atez085 Israel Institute for Biological Research معهد Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„ للابحاث Ų§Ł„ŲØŁŠŁˆŁ„ŁˆŲ¬ŁŠŲ©'),
(81852, 'https://ror.org/05vy7se14', 'en', 1, 'https://ror.org/05vy7se14 State Key Laboratory of Polymer Physics and Chemistry äø­ē§‘é™¢é«˜åˆ†å­ē‰©ē†äøŽåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(81853, 'https://ror.org/045d9gj14', 'no_lang_code', 1, 'https://ror.org/045d9gj14 China Coal Technology and Engineering Group Corp (China) äø­å›½ē…¤ē‚­ē§‘å·„é›†å›¢ęœ‰é™å…¬åø'),
(81854, 'https://ror.org/0327gbb75', 'no_lang_code', 1, 'https://ror.org/0327gbb75 BioDelivery Sciences International (United States)'),
(81855, 'https://ror.org/05csn2x06', 'en', 1, 'https://ror.org/05csn2x06 Nederlands Herseninstituut Netherlands Institute for Neuroscience'),
(81856, 'https://ror.org/04mxx1k66', 'en', 1, 'https://ror.org/04mxx1k66 Hearing Loss Association of America'),
(81857, 'https://ror.org/04ezjnq35', 'en', 1, 'https://ror.org/04ezjnq35 Jaeb Center for Health Research'),
(81858, 'https://ror.org/054tfvs49', 'en', 1, 'https://ror.org/054tfvs49 University of Health and Allied Sciences'),
(81859, 'https://ror.org/05kb1rb15', 'en', 1, 'https://ror.org/05kb1rb15 International Society of Ultrasound in Obstetrics and Gynecology'),
(81860, 'https://ror.org/05qfktv10', 'no_lang_code', 1, 'https://ror.org/05qfktv10 Aminex Therapeutics (United States)'),
(81861, 'https://ror.org/05s2em157', 'en', 1, 'https://ror.org/05s2em157 International Sociological Association'),
(81862, 'https://ror.org/047w7d678', 'en', 1, 'https://ror.org/047w7d678 University of Hong Kong - Shenzhen Hospital é¦™ęøÆå¤§å­¦ę·±åœ³åŒ»é™¢'),
(81863, 'https://ror.org/03v8adn41', 'en', 1, 'https://ror.org/03v8adn41 Queens College, CUNY Queens College, City University of New York Queens college, city university of new york'),
(81864, 'https://ror.org/04srq1z60', 'en', 1, 'https://ror.org/04srq1z60 World Heart Federation'),
(81865, 'https://ror.org/04rx5nw92', 'en', 1, 'https://ror.org/04rx5nw92 Monterey Bay Aquarium Foundation'),
(81866, 'https://ror.org/031p65n62', 'no_lang_code', 1, 'https://ror.org/031p65n62 Amorepacific (South Korea)'),
(81867, 'https://ror.org/03d7a9c68', 'en', 1, 'https://ror.org/03d7a9c68 Universidad Católica de Valencia San Vicente MÔrtir Valencia Catholic University Saint Vincent Martyr'),
(81868, 'https://ror.org/0344hmj91', 'en', 1, 'https://ror.org/0344hmj91 Royal Town Planning Institute'),
(81869, 'https://ror.org/03sdytw09', 'no_lang_code', 1, 'https://ror.org/03sdytw09 Imricor (United States)'),
(81870, 'https://ror.org/040dvh347', 'no_lang_code', 1, 'https://ror.org/040dvh347 Karus Therapeutics (United Kingdom)'),
(81871, 'https://ror.org/04ksqpz49', 'en', 1, 'https://ror.org/04ksqpz49 Cardinal Tien Hospital č€•čŽ˜åŒ»é™¢'),
(81872, 'https://ror.org/03wtxje77', 'en', 1, 'https://ror.org/03wtxje77 European Leukodystrophy Association L’Association EuropĆ©enne contre les Leucodystrophies'),
(81873, 'https://ror.org/039wkaa17', 'en', 1, 'https://ror.org/039wkaa17 Japan Food Chemical Research Foundation ę—„ęœ¬é£Ÿå“åŒ–å­¦ē ”ē©¶č²”å›£'),
(81874, 'https://ror.org/05ypbsn23', 'en', 1, 'https://ror.org/05ypbsn23 Schizophrenia Research Institute'),
(81875, 'https://ror.org/030pjfg04', 'no_lang_code', 1, 'https://ror.org/030pjfg04 VIR Biotechnology (United States)'),
(81876, 'https://ror.org/04dmgsx60', 'en', 1, 'https://ror.org/04dmgsx60 Center for Neuroscience and Regenerative Medicine'),
(81877, 'https://ror.org/03wy6tp26', 'en', 1, 'https://ror.org/03wy6tp26 Helmholtz Alliance for Astroparticle Physics'),
(81878, 'https://ror.org/03cqzsb89', 'en', 1, 'https://ror.org/03cqzsb89 Psychonomic Society'),
(81879, 'https://ror.org/03vnb1535', 'en', 1, 'https://ror.org/03vnb1535 Liaoning Academy of Agricultural Sciences č¾½å®ēœå†œäøšē§‘å­¦é™¢'),
(81880, 'https://ror.org/03qf4s180', 'en', 1, 'https://ror.org/03qf4s180 A.O. Kovalevsky Institute of Biology of the Southern Seas Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ біології півГенних морів ім. Šž.Šž. Ковалевського'),
(81881, 'https://ror.org/05g06bh89', 'en', 1, 'https://ror.org/05g06bh89 Holy Spirit University of Kaslik UniversitĆ© saint-esprit de kaslik Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ł‘ŁˆŲ­ القدس - Ų§Ł„ŁƒŲ³Ł„ŁŠŁƒ'),
(81882, 'https://ror.org/04dt6bw53', 'en', 1, 'https://ror.org/04dt6bw53 Tokyo City University ę±äŗ¬éƒ½åø‚å¤§å­¦'),
(81883, 'https://ror.org/057mn3690', 'en', 1, 'https://ror.org/057mn3690 National Chemical Laboratory ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ रासायनिक ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤³ą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą¤¾ą¤øą¤¾ą¤Æą¤Øą¤æą¤•ą„€ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾ ą“Øą“¾ą“·ą“£ąµ½ ą“•ąµ†ą“®ą“æą“•ąµą“•ąµ½ ą“²ą“¾ą“¬ą“±ą“Ÿąµą“Ÿą“±ą“æ'),
(81884, 'https://ror.org/033f9yy33', 'en', 1, 'https://ror.org/033f9yy33 NCCR Chemical Biology - Visualisation and Control of Biological Processes Using Chemistry'),
(81885, 'https://ror.org/03g3kfn65', 'en', 1, 'https://ror.org/03g3kfn65 American Society of Anesthesiologists'),
(81886, 'https://ror.org/05kyq2m47', 'no_lang_code', 1, 'https://ror.org/05kyq2m47 Langfang Normal University å»ŠåŠåøˆčŒƒå­¦é™¢'),
(81887, 'https://ror.org/05ascfq76', 'en', 1, 'https://ror.org/05ascfq76 Tides Foundation'),
(81888, 'https://ror.org/05gj07w56', 'en', 1, 'https://ror.org/05gj07w56 Department of Education of Zhejiang Province'),
(81889, 'https://ror.org/04a4xxs70', 'sv', 1, 'https://ror.org/04a4xxs70 BesƶksnƤringens Forsknings- Och Utvecklingsfond'),
(81890, 'https://ror.org/03fkpw052', 'no_lang_code', 1, 'https://ror.org/03fkpw052 Handan College é‚Æéƒøå­¦é™¢'),
(81891, 'https://ror.org/05a2bhn71', 'en', 1, 'https://ror.org/05a2bhn71 Innosuisse - Schweizerische Agentur für Innovationsfƶrderung Innosuisse – Swiss Innovation Agency'),
(81892, 'https://ror.org/05m2pwn60', 'pl', 1, 'https://ror.org/05m2pwn60 Narodowy Instytut Leków National Medicines Institute'),
(81893, 'https://ror.org/05ee7k487', 'en', 1, 'https://ror.org/05ee7k487 Coventry City Council'),
(81894, 'https://ror.org/04zyakw81', 'en', 1, 'https://ror.org/04zyakw81 Mineralogical Society of America'),
(81895, 'https://ror.org/04ha2bb10', 'en', 1, 'https://ror.org/04ha2bb10 Weifang University of Science and Technology');
INSERT INTO `rors` VALUES
(81896, 'https://ror.org/057tkkm33', 'en', 1, 'https://ror.org/057tkkm33 Shanghai Clinical Research Center'),
(81897, 'https://ror.org/05hgt1a34', 'en', 1, 'https://ror.org/05hgt1a34 Rockefeller Family Fund'),
(81898, 'https://ror.org/03n5rw513', 'en', 1, 'https://ror.org/03n5rw513 Milwaukee Metropolitan Sewerage District'),
(81899, 'https://ror.org/034179816', 'en', 1, 'https://ror.org/034179816 Government of Hong Kong äø­åŽäŗŗę°‘å…±å’Œå›½é¦™ęøÆē‰¹åˆ«č”Œę”æåŒŗę”æåŗœ'),
(81900, 'https://ror.org/05y77zf79', 'en', 1, 'https://ror.org/05y77zf79 Telecommunications Advancement Foundation é›»ę°—é€šäæ”ęŽØé€²č²”å›£'),
(81901, 'https://ror.org/05wevan27', 'en', 1, 'https://ror.org/05wevan27 Baylor Scott & White Health'),
(81902, 'https://ror.org/039s64n79', 'en', 1, 'https://ror.org/039s64n79 Leibniz Institute for East and Southeast European Studies Leibniz-Institut für Ost- und Südosteuropaforschung'),
(81903, 'https://ror.org/0360ybs31', 'en', 1, 'https://ror.org/0360ybs31 Brightlands Materials Center'),
(81904, 'https://ror.org/05f23gs03', 'fr', 1, 'https://ror.org/05f23gs03 UniversitƩ franco-allemande'),
(81905, 'https://ror.org/05rb1cp74', 'fr', 1, 'https://ror.org/05rb1cp74 Association FranƧois Aupetit'),
(81906, 'https://ror.org/05f5aj854', 'en', 1, 'https://ror.org/05f5aj854 International Union of Nutritional Sciences'),
(81907, 'https://ror.org/056h71x09', 'en', 1, 'https://ror.org/056h71x09 Institute for Bioengineering of Catalonia L’Institut de Bioenginyeria de Catalunya'),
(81908, 'https://ror.org/05ymca674', 'en', 1, 'https://ror.org/05ymca674 McGovern Institute for Brain Research'),
(81909, 'https://ror.org/04z9rrc30', 'no_lang_code', 1, 'https://ror.org/04z9rrc30 Cerus (United States)'),
(81910, 'https://ror.org/05c5y5q11', 'en', 1, 'https://ror.org/05c5y5q11 Agri Food and Biosciences Institute'),
(81911, 'https://ror.org/04vs72b15', 'en', 1, 'https://ror.org/04vs72b15 Institute of Cardiology Instituto de CardiologĆ­a'),
(81912, 'https://ror.org/05vc9ys48', 'en', 1, 'https://ror.org/05vc9ys48 Association of American Indian Physicians'),
(81913, 'https://ror.org/05m62xk31', 'en', 1, 'https://ror.org/05m62xk31 Japan Pancreatic Disease Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č†µč‡“ē—…ē ”ē©¶č²”å›£'),
(81914, 'https://ror.org/043n4tt17', 'no_lang_code', 1, 'https://ror.org/043n4tt17 Korea Telecom (South Korea) ģ¼€ģ“ķ‹° ģ£¼ģ‹ķšŒģ‚¬'),
(81915, 'https://ror.org/05t797721', 'es', 1, 'https://ror.org/05t797721 Centro de Aplicaciones Tecnológicas y Desarrollo Nuclear'),
(81916, 'https://ror.org/05jxf0p38', 'en', 1, 'https://ror.org/05jxf0p38 University of Papua New Guinea'),
(81917, 'https://ror.org/03pt86f80', 'en', 1, 'https://ror.org/03pt86f80 Innsbruck Medical University Medizinische UniversitƤt Innsbruck'),
(81918, 'https://ror.org/036e5c451', 'en', 1, 'https://ror.org/036e5c451 Bundesministerium für Arbeit und Soziales Federal Ministry of Labour and Social Affairs'),
(81919, 'https://ror.org/037fhg487', 'no_lang_code', 1, 'https://ror.org/037fhg487 Glenmark Pharmaceuticals (India)'),
(81920, 'https://ror.org/04489kh59', 'en', 1, 'https://ror.org/04489kh59 Tischner European University Wyższa Szkoła Europejska'),
(81921, 'https://ror.org/052nj8f19', 'en', 1, 'https://ror.org/052nj8f19 Institute of Medicinal Plant Development čÆē”Øę¤ē‰©ē ”ē©¶ę‰€'),
(81922, 'https://ror.org/04kb28349', 'en', 1, 'https://ror.org/04kb28349 American Geographical Society'),
(81923, 'https://ror.org/05kg9ev95', 'en', 1, 'https://ror.org/05kg9ev95 The Swifty Foundation'),
(81924, 'https://ror.org/0405n5e57', 'en', 1, 'https://ror.org/0405n5e57 National Institute of Mental Health and Neurosciences ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ मानसिक जाँच ą¤ą¤µą¤‚ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ಮಾನಸಿಕ ą²†ą²°ą³‹ą²—ą³ą²Æ ಹಾಗೂ ą²Øą²°ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³† ą“Øą“æą“‚ą“¹ą“¾ąµ»ą“øąµ'),
(81925, 'https://ror.org/04gtdp803', 'en', 1, 'https://ror.org/04gtdp803 Central Inland Fisheries Research Institute'),
(81926, 'https://ror.org/030ve2c48', 'es', 1, 'https://ror.org/030ve2c48 Technological University of Panama Universidad Tecnológica de PanamÔ'),
(81927, 'https://ror.org/04kdqzg37', 'en', 1, 'https://ror.org/04kdqzg37 The William Buckland Foundation'),
(81928, 'https://ror.org/0493xsw21', 'en', 1, 'https://ror.org/0493xsw21 Berlin Institute of Health at Charité - Universitätsmedizin Berlin Berliner Institut für Gesundheitsforschung'),
(81929, 'https://ror.org/03jggqf79', 'en', 1, 'https://ror.org/03jggqf79 Rwanda Biomedical Center'),
(81930, 'https://ror.org/0488wxv90', 'en', 1, 'https://ror.org/0488wxv90 Canadian Partnership Against Cancer'),
(81931, 'https://ror.org/04amrty77', 'no_lang_code', 1, 'https://ror.org/04amrty77 F-star (United Kingdom)'),
(81932, 'https://ror.org/04wsmmg28', 'fr', 1, 'https://ror.org/04wsmmg28 Institut pour la Recherche sur la Moelle EpiniĆØre et l’EncĆ©phale'),
(81933, 'https://ror.org/03np0rt96', 'en', 1, 'https://ror.org/03np0rt96 Ministry of Agriculture and Cooperatives ąøąø£ąø°ąø—ąø£ąø§ąø‡ą¹€ąøąø©ąø•ąø£ą¹ąø„ąø°ąøŖąø«ąøąø£ąø“ą¹Œ'),
(81934, 'https://ror.org/03ymy8z76', 'en', 1, 'https://ror.org/03ymy8z76 Taipei Veterans General Hospital å°åŒ—ę¦®ę°‘ēø½é†«é™¢'),
(81935, 'https://ror.org/03dnb3013', 'en', 1, 'https://ror.org/03dnb3013 Washington Department of Fish and Wildlife'),
(81936, 'https://ror.org/05ndx7902', 'en', 1, 'https://ror.org/05ndx7902 Jiangxi Academy of Agricultural Sciences ę±Ÿč„æēœå†œäøšē§‘å­¦é™¢'),
(81937, 'https://ror.org/03bhd6288', 'en', 1, 'https://ror.org/03bhd6288 Education Endowment Foundation'),
(81938, 'https://ror.org/05mxhda18', 'en', 1, 'https://ror.org/05mxhda18 University Hospital Cologne UniversitƤtsklinikum Kƶln'),
(81939, 'https://ror.org/055sz1p84', 'en', 1, 'https://ror.org/055sz1p84 Society for Pediatric Urology'),
(81940, 'https://ror.org/04z0s0n10', 'de', 1, 'https://ror.org/04z0s0n10 Ministerium für Soziales, Integration und Gleichstellung des Landes Mecklenburg-Vorpommern'),
(81941, 'https://ror.org/05fb60c26', 'en', 1, 'https://ror.org/05fb60c26 Farrell Family Foundation'),
(81942, 'https://ror.org/05qeh2v62', 'en', 1, 'https://ror.org/05qeh2v62 Sakon Nakhon Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąøąø„ąø™ąø„ąø£'),
(81943, 'https://ror.org/03d64na34', 'en', 1, 'https://ror.org/03d64na34 Prince Mohammad bin Fahd University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± Ł…Ų­Ł…ŲÆ بن فهد'),
(81944, 'https://ror.org/055zd7d59', 'en', 1, 'https://ror.org/055zd7d59 Korea Brain Research Institute ķ•œźµ­ė‡Œģ—°źµ¬ģ›'),
(81945, 'https://ror.org/04r9e1a13', 'nl', 1, 'https://ror.org/04r9e1a13 OnderzoeksCentrum voor de Aanwending van Staal'),
(81946, 'https://ror.org/056mrsz54', 'en', 1, 'https://ror.org/056mrsz54 Schmidt Institute of Physics of the Earth Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики Земли им. Šž.Š®. ШмиГта Российской акаГемии наук'),
(81947, 'https://ror.org/05ezsn819', 'en', 1, 'https://ror.org/05ezsn819 Shared Hierarchical Academic Research Computing Network'),
(81948, 'https://ror.org/05r7n9c40', 'en', 1, 'https://ror.org/05r7n9c40 Max Planck Institute for Terrestrial Microbiology Max-Planck-Institut für Terrestrische Mikrobiologie'),
(81949, 'https://ror.org/031362551', 'no_lang_code', 1, 'https://ror.org/031362551 KIC InnoEnergy (Netherlands)'),
(81950, 'https://ror.org/05nz0zp31', 'en', 1, 'https://ror.org/05nz0zp31 Wellcome/MRC Cambridge Stem Cell Institute'),
(81951, 'https://ror.org/05e41x347', 'no_lang_code', 1, 'https://ror.org/05e41x347 MED-EL (Austria)'),
(81952, 'https://ror.org/04gps3y86', 'en', 1, 'https://ror.org/04gps3y86 Mid-America Arts Alliance'),
(81953, 'https://ror.org/05t26ep05', 'no_lang_code', 1, 'https://ror.org/05t26ep05 Gƶteborg Energi (Sweden)'),
(81954, 'https://ror.org/041pjwa23', 'pt', 1, 'https://ror.org/041pjwa23 Universidade do Vale do ItajaĆ­'),
(81955, 'https://ror.org/03fq9xt66', 'nl', 1, 'https://ror.org/03fq9xt66 Nationaal Fonds Geestelijke Volksgezondheid'),
(81956, 'https://ror.org/0489rf374', 'en', 1, 'https://ror.org/0489rf374 Psoriasis Association'),
(81957, 'https://ror.org/04fhxp168', 'en', 1, 'https://ror.org/04fhxp168 VA Healthcare-VISN 4'),
(81958, 'https://ror.org/05v6jzw04', 'en', 1, 'https://ror.org/05v6jzw04 Taronga Conservation Society Australia'),
(81959, 'https://ror.org/055rxf725', 'en', 1, 'https://ror.org/055rxf725 South Florida Water Management District'),
(81960, 'https://ror.org/046rtjc87', 'en', 1, 'https://ror.org/046rtjc87 Singapore Bioimaging Consortium'),
(81961, 'https://ror.org/03esj4g97', 'en', 1, 'https://ror.org/03esj4g97 FPT University TrĘ°į»ng ĐẔi hį»c FPT'),
(81962, 'https://ror.org/03p6cns83', 'en', 1, 'https://ror.org/03p6cns83 D Y पाटिल ą¤ą¤œą„‚ą¤•ą„‡ą¤¶ą¤Ø ą¤øą„‹ą¤øą¤¾ą¤‡ą¤Ÿą„€ D.Y. Patil Education Society'),
(81963, 'https://ror.org/035qbs093', 'no_lang_code', 1, 'https://ror.org/035qbs093 Evercyte (Austria)'),
(81964, 'https://ror.org/058h0c235', 'en', 1, 'https://ror.org/058h0c235 John & Marcia Goldman Foundation'),
(81965, 'https://ror.org/0469x1750', 'no_lang_code', 1, 'https://ror.org/0469x1750 Eisai (United States) ć‚Øćƒ¼ć‚¶ć‚¤ę Ŗå¼ä¼šē¤¾'),
(81966, 'https://ror.org/032v9er22', 'en', 1, 'https://ror.org/032v9er22 Norwegian Armed Forces'),
(81967, 'https://ror.org/04gn22j10', 'en', 1, 'https://ror.org/04gn22j10 Kaohsiung Municipal Hsiao-Kang Hospital'),
(81968, 'https://ror.org/031apdg46', 'en', 1, 'https://ror.org/031apdg46 Schweizerische Stiftung für das cerebral gelähmte Kind Swiss Foundation for Children with Cerebral Palsy'),
(81969, 'https://ror.org/03r4vfr28', 'en', 1, 'https://ror.org/03r4vfr28 Society of Petroleum Engineers'),
(81970, 'https://ror.org/04xtbyj71', 'en', 1, 'https://ror.org/04xtbyj71 Madhya Pradesh Council of Science and Technology'),
(81971, 'https://ror.org/03td4yf75', 'no_lang_code', 1, 'https://ror.org/03td4yf75 Weatherford (United States)'),
(81972, 'https://ror.org/04zcbk583', 'en', 1, 'https://ror.org/04zcbk583 Purple Mountain Laboratories ē½‘ē»œé€šäæ”äøŽå®‰å…Øē“«é‡‘å±±å®žéŖŒå®¤'),
(81973, 'https://ror.org/03d04qg82', 'en', 1, 'https://ror.org/03d04qg82 Croatian Academy of Sciences and Arts Hrvatska akademija znanosti i umjetnosti'),
(81974, 'https://ror.org/03fbgfy04', 'en', 1, 'https://ror.org/03fbgfy04 National Treasury'),
(81975, 'https://ror.org/035h3r191', 'en', 1, 'https://ror.org/035h3r191 Damietta University Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ…ŁŠŲ§Ų·'),
(81976, 'https://ror.org/037adk771', 'en', 1, 'https://ror.org/037adk771 South African National Parks'),
(81977, 'https://ror.org/05mh8rb60', 'en', 1, 'https://ror.org/05mh8rb60 Clinical Nutrition Research Centre'),
(81978, 'https://ror.org/03g4sde39', 'no_lang_code', 1, 'https://ror.org/03g4sde39 Scania (Sweden)'),
(81979, 'https://ror.org/04gavx394', 'en', 1, 'https://ror.org/04gavx394 Indian Institute of Petroleum'),
(81980, 'https://ror.org/047hfdv65', 'en', 1, 'https://ror.org/047hfdv65 Planetary Society'),
(81981, 'https://ror.org/03cqty937', 'en', 1, 'https://ror.org/03cqty937 Wilson Ornithological Society'),
(81982, 'https://ror.org/048emj907', 'en', 1, 'https://ror.org/048emj907 Queen Elizabeth Hospital Birmingham'),
(81983, 'https://ror.org/03wdrmh81', 'en', 1, 'https://ror.org/03wdrmh81 Sahand University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ سهند'),
(81984, 'https://ror.org/05mzf3276', 'en', 1, 'https://ror.org/05mzf3276 Sandwell & West Birmingham Hospitals NHS Trust'),
(81985, 'https://ror.org/058y0nn10', 'en', 1, 'https://ror.org/058y0nn10 Wan Fang Hospital č‡ŗåŒ—åø‚ē«‹č¬čŠ³é†«é™¢'),
(81986, 'https://ror.org/04bvfww60', 'no', 1, 'https://ror.org/04bvfww60 Norsk Revmatikerforbund'),
(81987, 'https://ror.org/03ptaj492', 'en', 1, 'https://ror.org/03ptaj492 Seikei University 成蹊大学'),
(81988, 'https://ror.org/042ha6j15', 'en', 1, 'https://ror.org/042ha6j15 Astma och Allergi Fƶrbundet Swedish Asthma and Allergy Association'),
(81989, 'https://ror.org/04vgd1s66', 'no_lang_code', 1, 'https://ror.org/04vgd1s66 Allergy Therapeutics (United Kingdom)'),
(81990, 'https://ror.org/03snntx53', 'en', 1, 'https://ror.org/03snntx53 Finnish Concordia Fund Suomalainen Konkordia-liitto'),
(81991, 'https://ror.org/04c4e2y94', 'en', 1, 'https://ror.org/04c4e2y94 Swedish Water & Wastewater Association'),
(81992, 'https://ror.org/05n6zma86', 'no_lang_code', 1, 'https://ror.org/05n6zma86 Societas pro Fauna et Flora Fennica'),
(81993, 'https://ror.org/05gt90n14', 'no_lang_code', 1, 'https://ror.org/05gt90n14 Sirtex (Australia)'),
(81994, 'https://ror.org/03sagfk94', 'en', 1, 'https://ror.org/03sagfk94 Asociación Catalana de Universidades Públicas Catalan Association of Public Universities'),
(81995, 'https://ror.org/03fm7r592', 'no_lang_code', 1, 'https://ror.org/03fm7r592 Dendreon (United States)'),
(81996, 'https://ror.org/05qbbf772', 'en', 1, 'https://ror.org/05qbbf772 Independent University ą¦‡ą¦Øą§ą¦”ą¦æą¦Ŗą§‡ą¦Øą§ą¦”ą§‡ą¦Øą§ą¦Ÿ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ বাংলাদেশ'),
(81997, 'https://ror.org/03cn6tr16', 'es', 1, 'https://ror.org/03cn6tr16 Biomedical Research Network Center for Liver and Digestive Diseases Centro de Investigación Biomédica en Red de Enfermedades HepÔticas y Digestivas'),
(81998, 'https://ror.org/05r34a481', 'en', 1, 'https://ror.org/05r34a481 National Association for Research in Science Teaching'),
(81999, 'https://ror.org/0585fsj26', 'en', 1, 'https://ror.org/0585fsj26 Gauss Centre for Supercomputing'),
(82000, 'https://ror.org/03rd7w929', 'en', 1, 'https://ror.org/03rd7w929 National Marine Sanctuary Foundation'),
(82001, 'https://ror.org/0394qmm90', 'no_lang_code', 1, 'https://ror.org/0394qmm90 Vanda Pharmaceuticals (United States)'),
(82002, 'https://ror.org/036pfyg09', 'en', 1, 'https://ror.org/036pfyg09 Society for Adolescent Health and Medicine'),
(82003, 'https://ror.org/0300m5276', 'no_lang_code', 1, 'https://ror.org/0300m5276 Microsoft Research Asia (China)'),
(82004, 'https://ror.org/04vd6qx78', 'no_lang_code', 1, 'https://ror.org/04vd6qx78 General Motors (Canada) General Motors du Canada LimitƩe'),
(82005, 'https://ror.org/041rdq190', 'en', 1, 'https://ror.org/041rdq190 National Institutes for Food and Drug Control äø­å›½é£Ÿå“čÆå“ę£€å®šē ”ē©¶é™¢'),
(82006, 'https://ror.org/04q350418', 'en', 1, 'https://ror.org/04q350418 The Leon Lowenstein Foundation'),
(82007, 'https://ror.org/03r4ss628', 'en', 1, 'https://ror.org/03r4ss628 Society for American Archaeology'),
(82008, 'https://ror.org/03yyg2352', 'en', 1, 'https://ror.org/03yyg2352 Children''s Oncology Group'),
(82009, 'https://ror.org/03myjph80', 'en', 1, 'https://ror.org/03myjph80 Wellcome Centre for Mitochondrial Research'),
(82010, 'https://ror.org/041qkag73', 'en', 1, 'https://ror.org/041qkag73 Missouri Department of Health and Senior Services'),
(82011, 'https://ror.org/0464edf64', 'en', 1, 'https://ror.org/0464edf64 Hunan Vocational Institute of Technology ę¹–å—ē†å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(82012, 'https://ror.org/05wtrdx73', 'pl', 1, 'https://ror.org/05wtrdx73 Akademii Wychowania Fizycznego im. Jerzego Kukuczki w Katowicach The Jerzy Kukuczka Academy of Physical Education in Katowice'),
(82013, 'https://ror.org/03k2bxj15', 'en', 1, 'https://ror.org/03k2bxj15 Ethiopian Environment and Forest Research Institute'),
(82014, 'https://ror.org/046jmy298', 'en', 1, 'https://ror.org/046jmy298 Institute of Refrigeration'),
(82015, 'https://ror.org/05xp2yp46', 'en', 1, 'https://ror.org/05xp2yp46 Shanghai Municipal People''s Government'),
(82016, 'https://ror.org/03khcdd80', 'en', 1, 'https://ror.org/03khcdd80 Japan Organization of Occupational Health and Safety ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹'),
(82017, 'https://ror.org/05jkk6v05', 'en', 1, 'https://ror.org/05jkk6v05 European Brain Council'),
(82018, 'https://ror.org/05jrjgd04', 'en', 1, 'https://ror.org/05jrjgd04 Bavarian Research Alliance Bayerische Forschungsallianz'),
(82019, 'https://ror.org/03e5y0y34', 'en', 1, 'https://ror.org/03e5y0y34 Institute for Health Economics and Policy'),
(82020, 'https://ror.org/04y34yk39', 'en', 1, 'https://ror.org/04y34yk39 Ryazan State Radio Engineering University Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ раГиотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(82021, 'https://ror.org/04cbweh98', 'en', 1, 'https://ror.org/04cbweh98 Central Institute of Fisheries Technology'),
(82022, 'https://ror.org/04qbvw321', 'en', 1, 'https://ror.org/04qbvw321 Walloon Excellence in Lifesciences and Biotechnology'),
(82023, 'https://ror.org/04fcpzp05', 'en', 1, 'https://ror.org/04fcpzp05 Pok Oi Hospital åšę„›é†«é™¢'),
(82024, 'https://ror.org/03z5b5h37', 'sv', 1, 'https://ror.org/03z5b5h37 S:t Eriks Ɩgonsjukhus'),
(82025, 'https://ror.org/03cxwg632', 'en', 1, 'https://ror.org/03cxwg632 Pegaso University UniversitĆ  degli Studi Pegaso'),
(82026, 'https://ror.org/03s23ay81', 'no_lang_code', 1, 'https://ror.org/03s23ay81 Komatsu (Japan) ę Ŗå¼ä¼šē¤¾å°ę¾č£½ä½œę‰€'),
(82027, 'https://ror.org/037tr0b92', 'en', 1, 'https://ror.org/037tr0b92 Zabol University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų²Ų§ŲØŁ„'),
(82028, 'https://ror.org/04k4ejz78', 'no_lang_code', 1, 'https://ror.org/04k4ejz78 BioFire Diagnostics (United States)'),
(82029, 'https://ror.org/03qt1g669', 'en', 1, 'https://ror.org/03qt1g669 Yuncheng University čæåŸŽå­¦é™¢'),
(82030, 'https://ror.org/04skmn292', 'en', 1, 'https://ror.org/04skmn292 Beijing Children’s Hospital åŒ—äŗ¬å„æē«„åŒ»é™¢'),
(82031, 'https://ror.org/03yqtkg69', 'en', 1, 'https://ror.org/03yqtkg69 International Union of Toxicology'),
(82032, 'https://ror.org/042re3x97', 'en', 1, 'https://ror.org/042re3x97 International Institute of Tropical Forestry'),
(82033, 'https://ror.org/0552r4b12', 'en', 1, 'https://ror.org/0552r4b12 Sylvester Comprehensive Cancer Center'),
(82034, 'https://ror.org/05aspc753', 'en', 1, 'https://ror.org/05aspc753 Instituto di Ricerche Farmacologiche Mario Negri Mario Negri Institute for Pharmacological Research'),
(82035, 'https://ror.org/03tbkt876', 'en', 1, 'https://ror.org/03tbkt876 Shanghai Meteorological Bureau äøŠęµ·åø‚ę°”č±”å±€'),
(82036, 'https://ror.org/04jg8an89', 'en', 1, 'https://ror.org/04jg8an89 Materials Research Society'),
(82037, 'https://ror.org/03db90279', 'en', 1, 'https://ror.org/03db90279 Kaohsiung Municipal Ta-Tung Hospital é«˜é›„åø‚ē«‹å¤§åŒé†«é™¢'),
(82038, 'https://ror.org/04fsd0842', 'en', 1, 'https://ror.org/04fsd0842 Solent NHS Trust'),
(82039, 'https://ror.org/03n60vp23', 'en', 1, 'https://ror.org/03n60vp23 International Institute of Islamic Thought'),
(82040, 'https://ror.org/048macv48', 'en', 1, 'https://ror.org/048macv48 Pharmac'),
(82041, 'https://ror.org/03twcgp39', 'en', 1, 'https://ror.org/03twcgp39 Ministerul Educației, Culturii și Cercetării Ministry of Education, Culture and Research'),
(82042, 'https://ror.org/03sabpy05', 'en', 1, 'https://ror.org/03sabpy05 Riley Children''s Foundation'),
(82043, 'https://ror.org/05esh5w42', 'en', 1, 'https://ror.org/05esh5w42 Central Salt and Marine Chemicals Research Institute'),
(82044, 'https://ror.org/05pdvq933', 'en', 1, 'https://ror.org/05pdvq933 Agenzia Nazionale di Valutazione del Sistema Universitario e della Ricerca Italian National Agency for the Evaluation of Universities and Research Institutes'),
(82045, 'https://ror.org/04s3g5933', 'no_lang_code', 1, 'https://ror.org/04s3g5933 Delta Electronics (China)'),
(82046, 'https://ror.org/044fdhr57', 'en', 1, 'https://ror.org/044fdhr57 Kanagawa Prefectural Hospital Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē„žå„ˆå·ēœŒē«‹ē—…é™¢ę©Ÿę§‹'),
(82047, 'https://ror.org/05nny6x17', 'en', 1, 'https://ror.org/05nny6x17 SBA Research'),
(82048, 'https://ror.org/050m4q971', 'en', 1, 'https://ror.org/050m4q971 Liberty Mutual Research Institute for Safety'),
(82049, 'https://ror.org/0549qrd02', 'en', 1, 'https://ror.org/0549qrd02 Pakistan Association of Cognitive Therapists'),
(82050, 'https://ror.org/05y4mds91', 'no_lang_code', 1, 'https://ror.org/05y4mds91 Flanders'' Food (Belgium)'),
(82051, 'https://ror.org/03zmy5a21', 'it', 1, 'https://ror.org/03zmy5a21 Finpiemonte'),
(82052, 'https://ror.org/03krx0543', 'en', 1, 'https://ror.org/03krx0543 Yunnan Institute of Environmental Sciences äŗ‘å—ēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(82053, 'https://ror.org/05edt5833', 'no_lang_code', 1, 'https://ror.org/05edt5833 aTyr Pharma (United States)'),
(82054, 'https://ror.org/04d8yvw59', 'en', 1, 'https://ror.org/04d8yvw59 Royal College of Physicians and Surgeons of Glasgow'),
(82055, 'https://ror.org/05r48bj28', 'en', 1, 'https://ror.org/05r48bj28 Agenţia Spaţială Română Romanian Space Agency'),
(82056, 'https://ror.org/05r5zfp34', 'en', 1, 'https://ror.org/05r5zfp34 Robert J Kleberg Jr and Helen C Kleberg Foundation'),
(82057, 'https://ror.org/04tpp9d61', 'en', 1, 'https://ror.org/04tpp9d61 NorthShore University HealthSystem'),
(82058, 'https://ror.org/03rkdmq10', 'en', 1, 'https://ror.org/03rkdmq10 Society for Industrial Microbiology and Biotechnology'),
(82059, 'https://ror.org/03mn6ww56', 'en', 1, 'https://ror.org/03mn6ww56 The Scar Free Foundation'),
(82060, 'https://ror.org/03rx2tr07', 'en', 1, 'https://ror.org/03rx2tr07 National Synchrotron Radiation Laboratory å›½å®¶åŒę­„č¾å°„å®žéŖŒå®¤'),
(82061, 'https://ror.org/03eyhgw20', 'de', 1, 'https://ror.org/03eyhgw20 AIO Studien gGmbH'),
(82062, 'https://ror.org/05tdna171', 'en', 1, 'https://ror.org/05tdna171 Helsingin Sanomain SƤƤtiƶ Helsingin Sanomat Foundation'),
(82063, 'https://ror.org/05vc9jn48', 'en', 1, 'https://ror.org/05vc9jn48 Japan Cancer Society å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åÆ¾ćŒć‚“å”ä¼š'),
(82064, 'https://ror.org/05vdj5s74', 'en', 1, 'https://ror.org/05vdj5s74 The Borrow Foundation'),
(82065, 'https://ror.org/049gn7z52', 'en', 1, 'https://ror.org/049gn7z52 Beijing Institute of Genomics åŒ—äŗ¬åŸŗå› ē»„ē ”ē©¶ę‰€'),
(82066, 'https://ror.org/04a46mh28', 'en', 1, 'https://ror.org/04a46mh28 Shanghai First People''s Hospital'),
(82067, 'https://ror.org/04jdfdv39', 'en', 1, 'https://ror.org/04jdfdv39 Institution of Structural Engineers'),
(82068, 'https://ror.org/053mvwx19', 'en', 1, 'https://ror.org/053mvwx19 Tempus Public Foundation'),
(82069, 'https://ror.org/05e6pjy56', 'en', 1, 'https://ror.org/05e6pjy56 Laureate Institute for Brain Research'),
(82070, 'https://ror.org/048byek34', 'en', 1, 'https://ror.org/048byek34 National Institute of Food Technology Entrepreneurship and Management ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤–ą¤¾ą¤¦ą„ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤‰ą¤§ą¤®ą¤¶ą„€ą¤²ą¤¤ą¤¾ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(82071, 'https://ror.org/04my4q272', 'en', 1, 'https://ror.org/04my4q272 Texas General Land Office'),
(82072, 'https://ror.org/04c525d12', 'en', 1, 'https://ror.org/04c525d12 Citrus Research International'),
(82073, 'https://ror.org/03ep3hs23', 'en', 1, 'https://ror.org/03ep3hs23 National Institute of Animal Nutrition and Physiology'),
(82074, 'https://ror.org/042t93s57', 'en', 1, 'https://ror.org/042t93s57 Istituto Italiano di Tecnologia Italian Institute of Technology'),
(82075, 'https://ror.org/04x2tv955', 'en', 1, 'https://ror.org/04x2tv955 All-Russian Scientific Research Veterinary Institute of Pathology, Pharmacology and Therapy Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарной патологии, фармакологии Šø терапии'),
(82076, 'https://ror.org/04ayvvz32', 'no_lang_code', 1, 'https://ror.org/04ayvvz32 Jiangsu Hengrui Medicine (China) ę±Ÿč‹ę’ē‘žåŒ»čÆ'),
(82077, 'https://ror.org/04a31e344', 'en', 1, 'https://ror.org/04a31e344 Helmholtz International Center for FAIR'),
(82078, 'https://ror.org/05nnyr510', 'en', 1, 'https://ror.org/05nnyr510 University of Rajshahi ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(82079, 'https://ror.org/05fqypv61', 'en', 1, 'https://ror.org/05fqypv61 Wilhelmina Children''s Hospital Wilhelmina Kinderziekenhuis'),
(82080, 'https://ror.org/05qssq044', 'en', 1, 'https://ror.org/05qssq044 Reading & Writing Foundation'),
(82081, 'https://ror.org/037s2db26', 'no_lang_code', 1, 'https://ror.org/037s2db26 Gakushuin University 学習院大学'),
(82082, 'https://ror.org/04bxrzx68', 'en', 1, 'https://ror.org/04bxrzx68 Tokyo Biochemical Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ę±äŗ¬ē”ŸåŒ–å­¦ē ”ē©¶ä¼š'),
(82083, 'https://ror.org/0327mmx61', 'en', 1, 'https://ror.org/0327mmx61 Maurice Wilkins Centre'),
(82084, 'https://ror.org/03gz5xp73', 'en', 1, 'https://ror.org/03gz5xp73 National Graduate Institute for Policy Studies 政策研究大学院大学'),
(82085, 'https://ror.org/03ngjs524', 'en', 1, 'https://ror.org/03ngjs524 Bowel Cancer UK'),
(82086, 'https://ror.org/0510j8x25', 'de', 1, 'https://ror.org/0510j8x25 Bundesministerium für Nachhaltigkeit und Tourismus Federal Ministry of Sustainability and Tourism'),
(82087, 'https://ror.org/035n7q728', 'no_lang_code', 1, 'https://ror.org/035n7q728 Saudi Aramco (United States)'),
(82088, 'https://ror.org/05cb1k848', 'en', 1, 'https://ror.org/05cb1k848 HƓpital Johns-Hopkins Johns Hopkins Hospital'),
(82089, 'https://ror.org/04h2x1077', 'en', 1, 'https://ror.org/04h2x1077 Robertson Foundation'),
(82090, 'https://ror.org/04p0gv653', 'en', 1, 'https://ror.org/04p0gv653 Korean Nurses Association ėŒ€ķ•œź°„ķ˜øķ˜‘ķšŒ'),
(82091, 'https://ror.org/03sq7pd48', 'en', 1, 'https://ror.org/03sq7pd48 BRACE'),
(82092, 'https://ror.org/05eebgw43', 'en', 1, 'https://ror.org/05eebgw43 Aromatic Plant Research Center'),
(82093, 'https://ror.org/031n1rn61', 'en', 1, 'https://ror.org/031n1rn61 Duke Institute for Health Innovation'),
(82094, 'https://ror.org/05hvw0333', 'en', 1, 'https://ror.org/05hvw0333 Mohammed Bin Rashid School of Government Ł„ŁƒŁ„ŁŠŲ© Ł…Ų­Ł…ŲÆ بن Ų±Ų§Ų“ŲÆ لل؄دارة Ų§Ł„Ų­ŁƒŁˆŁ…ŁŠŲ©'),
(82095, 'https://ror.org/05ctmmy43', 'pt', 1, 'https://ror.org/05ctmmy43 Universidade do Vale do Rio dos Sinos'),
(82096, 'https://ror.org/04trj1363', 'fr', 1, 'https://ror.org/04trj1363 Fondation Pierre-Gilles de Gennes pour la Recherche'),
(82097, 'https://ror.org/04vvzp265', 'en', 1, 'https://ror.org/04vvzp265 Mava Foundation'),
(82098, 'https://ror.org/05dw0p167', 'en', 1, 'https://ror.org/05dw0p167 National Institute of Metrology äø­å›½č®”é‡ē§‘å­¦ē ”ē©¶é™¢'),
(82099, 'https://ror.org/03nk9pp38', 'en', 1, 'https://ror.org/03nk9pp38 ARC Centre of Excellence for Core to Crust Fluid Systems'),
(82100, 'https://ror.org/04p5zd128', 'en', 1, 'https://ror.org/04p5zd128 Hackensack Meridian Health'),
(82101, 'https://ror.org/05nywn832', 'en', 1, 'https://ror.org/05nywn832 Leibniz Institute for Zoo and Wildlife Research Leibniz-Institut für Zoo- und Wildtierforschung'),
(82102, 'https://ror.org/05e830h62', 'en', 1, 'https://ror.org/05e830h62 Institute of Physical Chemistry Instytut Chemii Fizycznej Polskiej Akademii Nauk'),
(82103, 'https://ror.org/03037ae82', 'en', 1, 'https://ror.org/03037ae82 Linda Hall Library'),
(82104, 'https://ror.org/04e3ssz85', 'en', 1, 'https://ror.org/04e3ssz85 International Visegrad Fund'),
(82105, 'https://ror.org/05qkfsj27', 'en', 1, 'https://ror.org/05qkfsj27 Economic Research Institute Экономикалық Š·ŠµŃ€Ń‚Ń‚ŠµŃƒŠ»ŠµŃ€ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(82106, 'https://ror.org/03hcmxw73', 'en', 1, 'https://ror.org/03hcmxw73 Xinjiang Production and Construction Corps ę–°ē–†ē”Ÿäŗ§å»ŗč®¾å…µå›¢'),
(82107, 'https://ror.org/04p2cym91', 'en', 1, 'https://ror.org/04p2cym91 Trakia University Тракийски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(82108, 'https://ror.org/05rzdej97', 'en', 1, 'https://ror.org/05rzdej97 Moravian Archives'),
(82109, 'https://ror.org/03v0k6341', 'en', 1, 'https://ror.org/03v0k6341 German National Academy of Sciences Leopoldina Nationale Akademie der Wissenschaften Leopoldina'),
(82110, 'https://ror.org/04d0vc473', 'en', 1, 'https://ror.org/04d0vc473 State Administration of Cultural Heritage 国家文物局'),
(82111, 'https://ror.org/05dphnt17', 'en', 1, 'https://ror.org/05dphnt17 Hidradenitis Suppurativa Foundation'),
(82112, 'https://ror.org/03k0md330', 'en', 1, 'https://ror.org/03k0md330 Taipei Medical University Hospital č‡ŗåŒ—é†«å­øå¤§å­øé™„čØ­é†«é™¢)'),
(82113, 'https://ror.org/03zz78009', 'en', 1, 'https://ror.org/03zz78009 International Studies Association'),
(82114, 'https://ror.org/034qq8x03', 'no_lang_code', 1, 'https://ror.org/034qq8x03 Madrigal Pharmaceuticals (United States)'),
(82115, 'https://ror.org/04z3map19', 'en', 1, 'https://ror.org/04z3map19 National Administration of Surveying, Mapping and Geoinformation of China å›½å®¶ęµ‹ē»˜åœ°ē†äæ”ęÆå±€äø»ē«™'),
(82116, 'https://ror.org/03rc99w60', 'en', 1, 'https://ror.org/03rc99w60 Second Hospital of Tianjin Medical University'),
(82117, 'https://ror.org/05yfskh02', 'no_lang_code', 1, 'https://ror.org/05yfskh02 Freeport-McMoRan (United States)'),
(82118, 'https://ror.org/0371fqr87', 'en', 1, 'https://ror.org/0371fqr87 Wuhan Union Hospital ę­¦ę±‰åå’ŒåŒ»é™¢'),
(82119, 'https://ror.org/05y770z97', 'en', 1, 'https://ror.org/05y770z97 Rasmuson Foundation'),
(82120, 'https://ror.org/040y22644', 'fr', 1, 'https://ror.org/040y22644 Institut Luxembourgeois de la Normalisation, de l''Accréditation, de la Sécurité et qualité des produits et services Luxemburgisches Institut für die Normung, Akkreditierung, Sicherheit und Qualität von Produkten und Dienstleistungen'),
(82121, 'https://ror.org/031npqv35', 'en', 1, 'https://ror.org/031npqv35 Chongqing Institute of Green and Intelligent Technology é‡åŗ†ē»æč‰²ę™ŗčƒ½ęŠ€ęœÆē ”ē©¶é™¢'),
(82122, 'https://ror.org/0398vrq41', 'fi', 1, 'https://ror.org/0398vrq41 SeinƤjoen Keskussairaala'),
(82123, 'https://ror.org/04qn5a624', 'en', 1, 'https://ror.org/04qn5a624 Fƶrsvarsmakten Swedish Armed Forces'),
(82124, 'https://ror.org/04f8k9513', 'en', 1, 'https://ror.org/04f8k9513 National Heart Centre Singapore'),
(82125, 'https://ror.org/054qsv864', 'en', 1, 'https://ror.org/054qsv864 British Society of Colposcopy and Cervical Pathology'),
(82126, 'https://ror.org/05cvqmv08', 'fr', 1, 'https://ror.org/05cvqmv08 BiodivERsA'),
(82127, 'https://ror.org/04m2hj141', 'en', 1, 'https://ror.org/04m2hj141 National Institute of Meteorological Sciences źµ­ė¦½źø°ģƒź³¼ķ•™ģ›'),
(82128, 'https://ror.org/04f8ayv68', 'es', 1, 'https://ror.org/04f8ayv68 Federación Nacional de Cultivadores de Palma de Aceite National Federation of Palm Oil Producers'),
(82129, 'https://ror.org/041vyzr56', 'en', 1, 'https://ror.org/041vyzr56 National Museum of Play'),
(82130, 'https://ror.org/03zdwsf69', 'en', 1, 'https://ror.org/03zdwsf69 University of Rostock UniversitƤt Rostock'),
(82131, 'https://ror.org/04jgeq066', 'en', 1, 'https://ror.org/04jgeq066 Korea Disease Control and Prevention Agency ģ§ˆė³‘ź“€ė¦¬ģ²­'),
(82132, 'https://ror.org/03r9k1585', 'en', 1, 'https://ror.org/03r9k1585 Iowa City VA Medical Center'),
(82133, 'https://ror.org/03dqcb840', 'en', 1, 'https://ror.org/03dqcb840 Luther College'),
(82134, 'https://ror.org/04erk7g84', 'en', 1, 'https://ror.org/04erk7g84 Kirtland Air Force Base'),
(82135, 'https://ror.org/04yfckj62', 'en', 1, 'https://ror.org/04yfckj62 Operation Wallacea'),
(82136, 'https://ror.org/0395ve714', 'en', 1, 'https://ror.org/0395ve714 China Institute Of Communications äø­å›½é€šäæ”å­¦ä¼š'),
(82137, 'https://ror.org/056206b04', 'en', 1, 'https://ror.org/056206b04 Human Sciences Research Council'),
(82138, 'https://ror.org/03ezqnp95', 'en', 1, 'https://ror.org/03ezqnp95 Torbat Heydarieh University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲŖŲ±ŲØŲŖ Ų­ŪŒŲÆŲ±ŪŒŁ‡'),
(82139, 'https://ror.org/03esfes81', 'en', 1, 'https://ror.org/03esfes81 International Union of Radio Science Union Radio-Scientifique Internationale'),
(82140, 'https://ror.org/04nm9ed20', 'en', 1, 'https://ror.org/04nm9ed20 Hezhou University č“ŗå·žå­¦é™¢'),
(82141, 'https://ror.org/04tm9hq97', 'no_lang_code', 1, 'https://ror.org/04tm9hq97 Bigfoot Biomedical (United States)'),
(82142, 'https://ror.org/04rtdp853', 'en', 1, 'https://ror.org/04rtdp853 Royal Free London NHS Foundation Trust'),
(82143, 'https://ror.org/03z3mg085', 'en', 1, 'https://ror.org/03z3mg085 Paracelsus Medical University Paracelsus Medizinische PrivatuniversitƤt'),
(82144, 'https://ror.org/03f2ct267', 'en', 1, 'https://ror.org/03f2ct267 APC Microbiome Institute'),
(82145, 'https://ror.org/04j9g3e78', 'en', 1, 'https://ror.org/04j9g3e78 American Dairy Science Association'),
(82146, 'https://ror.org/047qgg117', 'en', 1, 'https://ror.org/047qgg117 Guangzhou Institute of Energy Conversion å¹æå·žčƒ½ęŗē ”ē©¶ę‰€'),
(82147, 'https://ror.org/058gp5587', 'en', 1, 'https://ror.org/058gp5587 State Council of Higher Education for Virginia'),
(82148, 'https://ror.org/04xy45965', 'no_lang_code', 1, 'https://ror.org/04xy45965 Tongji Hospital'),
(82149, 'https://ror.org/05vtzry32', 'en', 1, 'https://ror.org/05vtzry32 Western Australian Marine Science Institution'),
(82150, 'https://ror.org/047ck1j35', 'en', 1, 'https://ror.org/047ck1j35 Moredun Research Institute'),
(82151, 'https://ror.org/03pm18j10', 'en', 1, 'https://ror.org/03pm18j10 Hofstra University'),
(82152, 'https://ror.org/04hrnch96', 'en', 1, 'https://ror.org/04hrnch96 Indiana Wesleyan University'),
(82153, 'https://ror.org/04g0mqe67', 'en', 1, 'https://ror.org/04g0mqe67 University of Central Punjab جامعہ وسطی پنجاب'),
(82154, 'https://ror.org/05s570m15', 'en', 1, 'https://ror.org/05s570m15 SRI International'),
(82155, 'https://ror.org/030sdfc18', 'no_lang_code', 1, 'https://ror.org/030sdfc18 Maze (United States)'),
(82156, 'https://ror.org/05v642w12', 'en', 1, 'https://ror.org/05v642w12 Korean Society of Ginseng'),
(82157, 'https://ror.org/0367ekx87', 'en', 1, 'https://ror.org/0367ekx87 James N. Kirby Foundation'),
(82158, 'https://ror.org/053336823', 'en', 1, 'https://ror.org/053336823 Riddet Institute'),
(82159, 'https://ror.org/046kpcm47', 'en', 1, 'https://ror.org/046kpcm47 The Abbeyfield Research Foundation'),
(82160, 'https://ror.org/05e276m57', 'en', 1, 'https://ror.org/05e276m57 Paul M. Angell Family Foundation'),
(82161, 'https://ror.org/04wnpnz26', 'no_lang_code', 1, 'https://ror.org/04wnpnz26 Energiforsk (Sweden)'),
(82162, 'https://ror.org/05188mw55', 'en', 1, 'https://ror.org/05188mw55 Japan Medical Association ę—„ęœ¬åŒ»åø«ä¼š'),
(82163, 'https://ror.org/04j3r8z61', 'en', 1, 'https://ror.org/04j3r8z61 Bank of Finland Finlands Bank Suomen Pankki'),
(82164, 'https://ror.org/04ja5n907', 'pt', 1, 'https://ror.org/04ja5n907 State University of Maranhão Universidade Estadual do Maranhão'),
(82165, 'https://ror.org/0543q7s13', 'en', 1, 'https://ror.org/0543q7s13 Science and Technology on Surface Physics and Chemistry Laboratory č”Øé¢ē‰©ē†äøŽåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(82166, 'https://ror.org/04fegvg32', 'en', 1, 'https://ror.org/04fegvg32 Rosalind Franklin University of Medicine and Science'),
(82167, 'https://ror.org/05t4pvx35', 'en', 1, 'https://ror.org/05t4pvx35 Chandigarh University'),
(82168, 'https://ror.org/05nnk3913', 'en', 1, 'https://ror.org/05nnk3913 Albion College'),
(82169, 'https://ror.org/048nxq511', 'en', 1, 'https://ror.org/048nxq511 Tokyo University of Marine Science and Technology ę±äŗ¬ęµ·ę“‹å¤§å­¦'),
(82170, 'https://ror.org/0535hbe81', 'en', 1, 'https://ror.org/0535hbe81 Ishibashi Foundation ēŸ³ę©‹č²”å›£'),
(82171, 'https://ror.org/052smz949', 'en', 1, 'https://ror.org/052smz949 Cocoa Research Institute of Ghana'),
(82172, 'https://ror.org/03tk0zs48', 'en', 1, 'https://ror.org/03tk0zs48 Mississippi Department of Marine Resources'),
(82173, 'https://ror.org/039k11f95', 'it', 1, 'https://ror.org/039k11f95 Regione Puglia'),
(82174, 'https://ror.org/04bfs6764', 'en', 1, 'https://ror.org/04bfs6764 Central Scientific Instruments Organisation ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• उपकरण संगठन'),
(82175, 'https://ror.org/05azc9n12', 'no_lang_code', 1, 'https://ror.org/05azc9n12 Ribon Therapeutics (United States)'),
(82176, 'https://ror.org/05fjs7w98', 'en', 1, 'https://ror.org/05fjs7w98 National Institute for Medical Research'),
(82177, 'https://ror.org/03hgnwx26', 'en', 1, 'https://ror.org/03hgnwx26 Banque Royale du Canada Royal Bank of Canada'),
(82178, 'https://ror.org/0556qrc19', 'en', 1, 'https://ror.org/0556qrc19 Carnegie Museum of Natural History Museo Carnegie de Historia Natural'),
(82179, 'https://ror.org/05ed6gd68', 'no_lang_code', 1, 'https://ror.org/05ed6gd68 Cerevel Therapeutics (United States)'),
(82180, 'https://ror.org/05803vc71', 'en', 1, 'https://ror.org/05803vc71 State Key Laboratory of Chemical Engineering åŒ–å­¦å·„ēØ‹č”åˆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(82181, 'https://ror.org/02zrtpp84', 'en', 1, 'https://ror.org/02zrtpp84 Visvesvaraya National Institute of Technology ą¤µą¤æą¤¶ą„ą¤µą„‡ą¤¶ą„ą¤µą¤°ą„ˆą¤Æą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(82182, 'https://ror.org/04y7ajp38', 'en', 1, 'https://ror.org/04y7ajp38 St. Paul''s Hospital ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ„œģšøģ„±ėŖØė³‘ģ›'),
(82183, 'https://ror.org/030wfqt16', 'en', 1, 'https://ror.org/030wfqt16 International Nut and Dried Fruit Council'),
(82184, 'https://ror.org/04zn72g03', 'en', 1, 'https://ror.org/04zn72g03 Stavanger University Hospital'),
(82185, 'https://ror.org/05srazs86', 'en', 1, 'https://ror.org/05srazs86 Otto A. Malm Foundation Otto A. Malms Donationsfond'),
(82186, 'https://ror.org/04f4wg107', 'en', 1, 'https://ror.org/04f4wg107 Saga University 佐賀大学'),
(82187, 'https://ror.org/04hfkdb50', 'en', 1, 'https://ror.org/04hfkdb50 Knox College'),
(82188, 'https://ror.org/04we7d902', 'en', 1, 'https://ror.org/04we7d902 Norwich University UniversitƩ de norwich'),
(82189, 'https://ror.org/05mm1w714', 'en', 1, 'https://ror.org/05mm1w714 Universidad del AtlƔntico University of AtlƔntico'),
(82190, 'https://ror.org/047ktk903', 'en', 1, 'https://ror.org/047ktk903 World Resources Institute'),
(82191, 'https://ror.org/03savc306', 'en', 1, 'https://ror.org/03savc306 Mississippi Department of Wildlife Fisheries and Parks'),
(82192, 'https://ror.org/040kfrw16', 'en', 1, 'https://ror.org/040kfrw16 SUNY Upstate Medical University'),
(82193, 'https://ror.org/05y6jfx28', 'it', 1, 'https://ror.org/05y6jfx28 Istituto Superiore Mario Boella'),
(82194, 'https://ror.org/04h31f025', 'en', 1, 'https://ror.org/04h31f025 Hellenic Ministry of Rural Development and Food ΄πουργείο Αγροτικής Ανάπτυξης και Τροφίμων'),
(82195, 'https://ror.org/05qa5rt69', 'en', 1, 'https://ror.org/05qa5rt69 Wildlife Management Institute'),
(82196, 'https://ror.org/04tsbkh63', 'en', 1, 'https://ror.org/04tsbkh63 Thamar University Ų¬Ų§Ł…Ų¹Ų© Ų°Ł…Ų§Ų±'),
(82197, 'https://ror.org/052mq0r90', 'en', 1, 'https://ror.org/052mq0r90 Government Communications Headquarters'),
(82198, 'https://ror.org/04e6h1p91', 'en', 1, 'https://ror.org/04e6h1p91 State Key Laboratory of Vehicle NVH and Safety Technology'),
(82199, 'https://ror.org/0563w1497', 'en', 1, 'https://ror.org/0563w1497 The Nature Conservancy'),
(82200, 'https://ror.org/05d2pc330', 'en', 1, 'https://ror.org/05d2pc330 Attorney-General''s Department Australia'),
(82201, 'https://ror.org/053vdtz38', 'en', 1, 'https://ror.org/053vdtz38 Virginia Transportation Research Council'),
(82202, 'https://ror.org/0491y3t26', 'en', 1, 'https://ror.org/0491y3t26 National Remote Sensing Centre ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„ą¤¦ą„‚ą¤° ą¤øą¤‚ą¤µą„‡ą¤¦ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤° ą°Øą±‡ą°·ą°Øą°²ą± ą°°ą°æą°®ą±‹ą°Ÿą± ą°øą±†ą°Øą±ą°øą°æą°‚ą°—ą± ą°øą±†ą°‚ą°Ÿą°°ą±'),
(82203, 'https://ror.org/05asvgp75', 'en', 1, 'https://ror.org/05asvgp75 Centro Internacional de la Papa International Potato Center'),
(82204, 'https://ror.org/037c01n91', 'en', 1, 'https://ror.org/037c01n91 Southern Medical University Shenzhen Hospital å—ę–¹åŒ»ē§‘å¤§å­¦ę·±åœ³åŒ»é™¢'),
(82205, 'https://ror.org/04eb9e087', 'en', 1, 'https://ror.org/04eb9e087 Finnish Foundation for Alcohol Studies'),
(82206, 'https://ror.org/03xcfma33', 'en', 1, 'https://ror.org/03xcfma33 National Council for Air and Stream Improvement'),
(82207, 'https://ror.org/03bc44j62', 'en', 1, 'https://ror.org/03bc44j62 Department for Education and Child Development'),
(82208, 'https://ror.org/04cybtr86', 'en', 1, 'https://ror.org/04cybtr86 Iwate Medical University å²©ę‰‹åŒ»ē§‘å¤§å­¦'),
(82209, 'https://ror.org/03n60ep10', 'en', 1, 'https://ror.org/03n60ep10 University of Miyazaki Hospital å®®å“Žå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(82210, 'https://ror.org/043fmpd46', 'en', 1, 'https://ror.org/043fmpd46 Shandong Province Health and Family Planning Commission å±±äøœēœå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(82211, 'https://ror.org/04f6sph74', 'en', 1, 'https://ror.org/04f6sph74 Alberta Milk'),
(82212, 'https://ror.org/054f2wp19', 'no_lang_code', 1, 'https://ror.org/054f2wp19 Sarepta Therapeutics (United States)'),
(82213, 'https://ror.org/03dfa9f06', 'en', 1, 'https://ror.org/03dfa9f06 Southwest Forestry University č„æå—ęž—äøšå¤§å­¦'),
(82214, 'https://ror.org/04cjrna85', 'no_lang_code', 1, 'https://ror.org/04cjrna85 EA Pharma (Japan)'),
(82215, 'https://ror.org/055bn0x53', 'es', 1, 'https://ror.org/055bn0x53 Servicio Murciano de Salud'),
(82216, 'https://ror.org/051k00p03', 'en', 1, 'https://ror.org/051k00p03 Taiyuan Normal University å¤ŖåŽŸåøˆčŒƒå­¦é™¢'),
(82217, 'https://ror.org/05dmr4w13', 'en', 1, 'https://ror.org/05dmr4w13 Sultan Ageng Tirtayasa University Universitas Sultan Ageng Tirtayasa'),
(82218, 'https://ror.org/05xbkrn90', 'en', 1, 'https://ror.org/05xbkrn90 Danish Diabetes Academy'),
(82219, 'https://ror.org/054j4ex16', 'no_lang_code', 1, 'https://ror.org/054j4ex16 Satellite Healthcare (United States)'),
(82220, 'https://ror.org/055mhsv54', 'no_lang_code', 1, 'https://ror.org/055mhsv54 Jazz Pharmaceuticals (Ireland)'),
(82221, 'https://ror.org/05nv1pa68', 'en', 1, 'https://ror.org/05nv1pa68 Louisiana Universities Marine Consortium'),
(82222, 'https://ror.org/03j1rr444', 'pt', 1, 'https://ror.org/03j1rr444 Pontifical Catholic University of Minas Gerais Pontifícia Universidade Católica de Minas Gerais Université Pontificale Catholique du Minas Gerais'),
(82223, 'https://ror.org/0508jvq27', 'en', 1, 'https://ror.org/0508jvq27 Nano-Convergence Foundation'),
(82224, 'https://ror.org/05kje8j93', 'en', 1, 'https://ror.org/05kje8j93 Center for Life Sciences ē”Ÿå‘½ē§‘å­¦č”åˆäø­åæƒ'),
(82225, 'https://ror.org/03hvzdf94', 'en', 1, 'https://ror.org/03hvzdf94 Kongelige Danske Videnskabernes Selskab The Royal Danish Academy of Sciences and Letters'),
(82226, 'https://ror.org/03np4e098', 'en', 1, 'https://ror.org/03np4e098 Haukeland University Hospital'),
(82227, 'https://ror.org/050xp5d36', 'it', 1, 'https://ror.org/050xp5d36 Civil Protection Department Dipartimento della Protezione Civile'),
(82228, 'https://ror.org/05vkkzf98', 'en', 1, 'https://ror.org/05vkkzf98 Traditional Chinese Medicine Bureau of Guangdong Province å¹æäøœēœäø­åŒ»čÆå±€'),
(82229, 'https://ror.org/05vd6ad22', 'en', 1, 'https://ror.org/05vd6ad22 Rockford University'),
(82230, 'https://ror.org/04jbp8w50', 'id', 1, 'https://ror.org/04jbp8w50 Universitas Teknologi Yogyakarta'),
(82231, 'https://ror.org/03xxsgr61', 'sv', 1, 'https://ror.org/03xxsgr61 Diabetesfƶrbundet Svenska Diabetesfƶrbundet'),
(82232, 'https://ror.org/054yt8091', 'en', 1, 'https://ror.org/054yt8091 Nanjing Science and Technology Commission å—äŗ¬åø‚ē§‘ęŠ€å±€'),
(82233, 'https://ror.org/03qjb5r86', 'en', 1, 'https://ror.org/03qjb5r86 Friends Research Institute'),
(82234, 'https://ror.org/04kxhtm13', 'en', 1, 'https://ror.org/04kxhtm13 Fondazione Nando ed Elsa Peretti Nando Peretti Foundation'),
(82235, 'https://ror.org/05v2p9075', 'en', 1, 'https://ror.org/05v2p9075 Nahrain University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†Ł‡Ų±ŁŠŁ†'),
(82236, 'https://ror.org/05v27w196', 'id', 1, 'https://ror.org/05v27w196 Universitas Widyatama'),
(82237, 'https://ror.org/05sxf4h28', 'pt', 1, 'https://ror.org/05sxf4h28 Federal University of EspĆ­rito Santo Universidade Federal do EspĆ­rito Santo'),
(82238, 'https://ror.org/05rnkb382', 'no_lang_code', 1, 'https://ror.org/05rnkb382 Sumitomo Electric Industries (Japan) ä½å‹é›»ę°—å·„ę„­'),
(82239, 'https://ror.org/03nfnrd41', 'en', 1, 'https://ror.org/03nfnrd41 Dogs Trust'),
(82240, 'https://ror.org/05tcvzc03', 'no_lang_code', 1, 'https://ror.org/05tcvzc03 Cytori Therapeutics (United States)'),
(82241, 'https://ror.org/05wzjqa24', 'en', 1, 'https://ror.org/05wzjqa24 State Key Laboratory of Remote Sensing Science é„ę„Ÿē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(82242, 'https://ror.org/040ys5a92', 'en', 1, 'https://ror.org/040ys5a92 MOA Health Science Foundation MOA偄康科学貔団'),
(82243, 'https://ror.org/05f8a4p63', 'en', 1, 'https://ror.org/05f8a4p63 Tamagawa University ēŽ‰å·å¤§å­¦'),
(82244, 'https://ror.org/05tbrga38', 'en', 1, 'https://ror.org/05tbrga38 Iranian Research Institute of Plant Protection'),
(82245, 'https://ror.org/04347cr60', 'en', 1, 'https://ror.org/04347cr60 Rocky Mountain Research Station'),
(82246, 'https://ror.org/05p6xj614', 'es', 1, 'https://ror.org/05p6xj614 Agencia Catalana de L''Aigua Catalan Water Agency'),
(82247, 'https://ror.org/051pbs608', 'en', 1, 'https://ror.org/051pbs608 Ministry of Environment and Tourism'),
(82248, 'https://ror.org/04pb1a459', 'en', 1, 'https://ror.org/04pb1a459 Centre of Natural Hazards and Disaster Science'),
(82249, 'https://ror.org/052z2q786', 'pt', 1, 'https://ror.org/052z2q786 Universidade do Extremo Sul Catarinense Université de l''extrême sud de santa catarina'),
(82250, 'https://ror.org/05av6m066', 'en', 1, 'https://ror.org/05av6m066 United States Marine Corps'),
(82251, 'https://ror.org/0591pcw70', 'en', 1, 'https://ror.org/0591pcw70 Montana Institute on Ecosystems'),
(82252, 'https://ror.org/04jjxmt88', 'no_lang_code', 1, 'https://ror.org/04jjxmt88 Tenaga Nasional Berhad (Malaysia) تناݢ Ł†Ų§Ų³ŁŠŁˆŁ†Ł„ ŲØŲ±Ų­ŲÆ'),
(82253, 'https://ror.org/05hz4mv11', 'en', 1, 'https://ror.org/05hz4mv11 Banco de Portugal Bank of Portugal'),
(82254, 'https://ror.org/03vbz5k97', 'en', 1, 'https://ror.org/03vbz5k97 Associated Universities, Inc.'),
(82255, 'https://ror.org/048768v87', 'en', 1, 'https://ror.org/048768v87 USF Health Byrd Alzheimer''s Institute'),
(82256, 'https://ror.org/03g8swq49', 'en', 1, 'https://ror.org/03g8swq49 Tennessee Department of Transportation'),
(82257, 'https://ror.org/03kr8x191', 'en', 1, 'https://ror.org/03kr8x191 National University of Misiones Universidad Nacional de Misiones'),
(82258, 'https://ror.org/05035d657', 'no_lang_code', 1, 'https://ror.org/05035d657 Zafgen (United States)'),
(82259, 'https://ror.org/035kpke84', 'en', 1, 'https://ror.org/035kpke84 Tokyo Polytechnic University ę±äŗ¬å·„čŠøå¤§å­¦'),
(82260, 'https://ror.org/04grmx538', 'en', 1, 'https://ror.org/04grmx538 National Bureau of Economic Research'),
(82261, 'https://ror.org/03j7v5j15', 'en', 1, 'https://ror.org/03j7v5j15 Institute of Psychology, Chinese Academy of Sciences äø­å›½ē§‘å­¦é™¢åæƒē†ē ”ē©¶ę‰€'),
(82262, 'https://ror.org/03vbj2a93', 'no_lang_code', 1, 'https://ror.org/03vbj2a93 High Value Manufacturing Catapult'),
(82263, 'https://ror.org/0333e3w09', 'fr', 1, 'https://ror.org/0333e3w09 Recherches Scientifiques Luxembourg'),
(82264, 'https://ror.org/04jmkm342', 'no_lang_code', 1, 'https://ror.org/04jmkm342 Vanguard International Semiconductor (Taiwan) äø–ē•Œå…ˆé€²ē©é«”é›»č·Æč‚”ä»½ęœ‰é™å…¬åø'),
(82265, 'https://ror.org/04yzh9160', 'en', 1, 'https://ror.org/04yzh9160 Kids'' Cancer Project'),
(82266, 'https://ror.org/0590dnz19', 'en', 1, 'https://ror.org/0590dnz19 Fu Wai Hospital äø­å›½åŒ»å­¦ē§‘å­¦é™¢é˜œå¤–åæƒč”€ē®”ē—…åŒ»é™¢'),
(82267, 'https://ror.org/03cdvht47', 'fr', 1, 'https://ror.org/03cdvht47 UniversitĆ© Hassan 1er Ų¬Ų§Ł…Ų¹Ų© الحسن Ų§Ł„Ų£ŁˆŁ„ Ų³Ų·Ų§ŲŖ'),
(82268, 'https://ror.org/03mxw8t14', 'en', 1, 'https://ror.org/03mxw8t14 LIXIL JS Foundation å…¬ē›Šč²”å›£ę³•äŗŗLIXILä½ē”Ÿę“»č²”å›£'),
(82269, 'https://ror.org/05qebwp08', 'en', 1, 'https://ror.org/05qebwp08 Mahanakorn University of Technology ดหาวณทยาคัยเทคโนโคยีดหานคร'),
(82270, 'https://ror.org/053ee9k66', 'en', 1, 'https://ror.org/053ee9k66 Japan Epilepsy Research Foundation ć¦ć‚“ć‹ć‚“ę²»ē™‚ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(82271, 'https://ror.org/050rx4p59', 'en', 1, 'https://ror.org/050rx4p59 South African National AIDS Council'),
(82272, 'https://ror.org/04t9bwz39', 'fr', 1, 'https://ror.org/04t9bwz39 Conseil RƩgional de Bourgogne'),
(82273, 'https://ror.org/04zkdcw61', 'en', 1, 'https://ror.org/04zkdcw61 Agricultural Biotechnology Research Center, Academia Sinica äø­å¤®ē ”ē©¶é™¢č¾²ę„­ē”Ÿē‰©ē§‘ęŠ€ē ”ē©¶äø­åæƒ'),
(82274, 'https://ror.org/0575pmh72', 'no_lang_code', 1, 'https://ror.org/0575pmh72 Orkuveita ReykjavĆ­kur ReykjavĆ­k Energy (Iceland)'),
(82275, 'https://ror.org/0331zs648', 'no_lang_code', 1, 'https://ror.org/0331zs648 Siriraj Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøØąø“ąø£ąø“ąø£ąø²ąøŠ'),
(82276, 'https://ror.org/053151j41', 'no_lang_code', 1, 'https://ror.org/053151j41 Aptose Biosciences (United States)'),
(82277, 'https://ror.org/04vcn6p23', 'en', 1, 'https://ror.org/04vcn6p23 Polish Geological Institute'),
(82278, 'https://ror.org/05b2wbh21', 'en', 1, 'https://ror.org/05b2wbh21 National Beef Cattle Industrial Technology System'),
(82279, 'https://ror.org/040v3rp82', 'no_lang_code', 1, 'https://ror.org/040v3rp82 Pohl Boskamp (Germany)'),
(82280, 'https://ror.org/05t3ett24', 'en', 1, 'https://ror.org/05t3ett24 St. Christopher''s Hospital for Children'),
(82281, 'https://ror.org/051qwcj72', 'en', 1, 'https://ror.org/051qwcj72 Qingdao Agricultural University é’å²›å†œäøšå¤§å­¦'),
(82282, 'https://ror.org/033xvax87', 'nl', 1, 'https://ror.org/033xvax87 Medisch Spectrum Twente'),
(82283, 'https://ror.org/03cxys317', 'en', 1, 'https://ror.org/03cxys317 Yamaguchi University 山口大学'),
(82284, 'https://ror.org/04fbh1w34', 'en', 1, 'https://ror.org/04fbh1w34 Gombe State University'),
(82285, 'https://ror.org/05khtr396', 'no_lang_code', 1, 'https://ror.org/05khtr396 First Quantum Minerals (Canada)'),
(82286, 'https://ror.org/03f1za223', 'fr', 1, 'https://ror.org/03f1za223 MinistĆØre des Relations Internationales et de la Francophonie'),
(82287, 'https://ror.org/04xz38214', 'en', 1, 'https://ror.org/04xz38214 Joint Quantum Institute'),
(82288, 'https://ror.org/04sbsx707', 'no_lang_code', 1, 'https://ror.org/04sbsx707 Debre Markos University'),
(82289, 'https://ror.org/03jyskd58', 'en', 1, 'https://ror.org/03jyskd58 South East Physics Network'),
(82290, 'https://ror.org/053ax8j41', 'en', 1, 'https://ror.org/053ax8j41 Ankang University 安康学院');
INSERT INTO `rors` VALUES
(82291, 'https://ror.org/032q5ym94', 'en', 1, 'https://ror.org/032q5ym94 Athinoula A. Martinos Center for Biomedical Imaging'),
(82292, 'https://ror.org/04hwy3h09', 'en', 1, 'https://ror.org/04hwy3h09 keiyu Hospital äø€čˆ¬č²”å›£ę³•äŗŗē„žå„ˆå·ēœŒč­¦å‹ä¼šć‘ć„ć‚†ć†ē—…é™¢'),
(82293, 'https://ror.org/0375ste74', 'en', 1, 'https://ror.org/0375ste74 POSCO TJ Park Foundation'),
(82294, 'https://ror.org/0441jdk54', 'en', 1, 'https://ror.org/0441jdk54 Stamford University Bangladesh ą¦øą§ą¦Ÿą§ą¦Æą¦¾ą¦®ą¦«ą§‹ą¦°ą§ą¦” ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ, বাংলাদেশ'),
(82295, 'https://ror.org/05787my06', 'en', 1, 'https://ror.org/05787my06 Beijing Obstetrics and Gynecology Hospital'),
(82296, 'https://ror.org/03c8k9q07', 'en', 1, 'https://ror.org/03c8k9q07 National Health Insurance Service Ilsan Hospital źµ­ėÆ¼ź±“ź°•ė³“ķ—˜ ģ¼ģ‚°ė³‘ģ›'),
(82297, 'https://ror.org/0331wat71', 'en', 1, 'https://ror.org/0331wat71 Akershus University Hospital Akershus universitetssykehus'),
(82298, 'https://ror.org/04t34tv83', 'en', 1, 'https://ror.org/04t34tv83 International Diabetes Federation'),
(82299, 'https://ror.org/04wpcxa25', 'en', 1, 'https://ror.org/04wpcxa25 Sykehuset Ƙstfold Ƙstfold Hospital Trust'),
(82300, 'https://ror.org/04fhee747', 'en', 1, 'https://ror.org/04fhee747 National Institute of Immunology'),
(82301, 'https://ror.org/03hkr1v69', 'en', 1, 'https://ror.org/03hkr1v69 Leibniz Institute of Agricultural Development in Transition Economies Leibniz-Institut für Agrarentwicklung in Transformationsökonomien'),
(82302, 'https://ror.org/03f1y7c55', 'no_lang_code', 1, 'https://ror.org/03f1y7c55 Fisher & Paykel Healthcare (New Zealand)'),
(82303, 'https://ror.org/05b3hqn14', 'en', 1, 'https://ror.org/05b3hqn14 North York General Hospital'),
(82304, 'https://ror.org/05par7p11', 'en', 1, 'https://ror.org/05par7p11 Massachusetts Green High Performance Computing Center'),
(82305, 'https://ror.org/03hhwkj37', 'en', 1, 'https://ror.org/03hhwkj37 QuƩbec Consortium for Drug Discovery'),
(82306, 'https://ror.org/0543j5e78', 'en', 1, 'https://ror.org/0543j5e78 Voronezh State University Воронежский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(82307, 'https://ror.org/05jte2q37', 'en', 1, 'https://ror.org/05jte2q37 Tata Institute of Social Sciences टाटा ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤øą„‹ą¤¶ą¤² ą¤øą¤¾ą¤Æą¤Øą„ą¤øą„‡ą¤ø टाटा ą¤øą¤¾ą¤®ą¤¾ą¤œą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą“Ÿą“¾ą“±ąµą“± ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“øąµ‹ą“·ąµą“Æąµ½ ą“øą“Æąµ»ą“øą“øąµ'),
(82308, 'https://ror.org/035rzkx15', 'en', 1, 'https://ror.org/035rzkx15 Jena University Hospital UniversitƤtsklinikum Jena'),
(82309, 'https://ror.org/036hgj583', 'no_lang_code', 1, 'https://ror.org/036hgj583 Alberta Pacific Forest Industries'),
(82310, 'https://ror.org/05cz76a40', 'en', 1, 'https://ror.org/05cz76a40 Association Canadienne d''Administrateurs de Recherche Universitaire Canadian Association of University Research Administrators'),
(82311, 'https://ror.org/032mgcs57', 'en', 1, 'https://ror.org/032mgcs57 Public Safety Canada SƩcuritƩ publique Canada'),
(82312, 'https://ror.org/0376kfa34', 'fr', 1, 'https://ror.org/0376kfa34 Centre Hospitalier Universitaire de Martinique'),
(82313, 'https://ror.org/03sab2a45', 'en', 1, 'https://ror.org/03sab2a45 Ulsan University Hospital ģšøģ‚°ėŒ€ķ•™źµė³‘ģ›'),
(82314, 'https://ror.org/03czd4830', 'en', 1, 'https://ror.org/03czd4830 American Mosquito Control Association'),
(82315, 'https://ror.org/03q9rqs31', 'en', 1, 'https://ror.org/03q9rqs31 Midwest Nursing Research Society'),
(82316, 'https://ror.org/0417e5p93', 'en', 1, 'https://ror.org/0417e5p93 Bundesstiftung zur Aufarbeitung der SED-Diktatur Federal Foundation for the Study of Communist Dictatorship in East Germany'),
(82317, 'https://ror.org/04nv7tt16', 'en', 1, 'https://ror.org/04nv7tt16 Center for Dielectrics & Piezoelectrics'),
(82318, 'https://ror.org/0452qvp61', 'en', 1, 'https://ror.org/0452qvp61 Islam Tarih, Sanat ve Kültür Araştırma Merkezi Research Center for Islamic History, Art and Culture'),
(82319, 'https://ror.org/054t10v53', 'en', 1, 'https://ror.org/054t10v53 Divine Word University'),
(82320, 'https://ror.org/04z4wmb81', 'en', 1, 'https://ror.org/04z4wmb81 North China University of Science and Technology åŽåŒ—ē†å·„å¤§å­¦'),
(82321, 'https://ror.org/0423z3467', 'en', 1, 'https://ror.org/0423z3467 Central Coast Local Health District'),
(82322, 'https://ror.org/04n1mwm18', 'it', 1, 'https://ror.org/04n1mwm18 Istituto Zooprofilattico Sperimentale delle Venezie'),
(82323, 'https://ror.org/03108sf43', 'en', 1, 'https://ror.org/03108sf43 Jiangsu Cancer Hospital ę±Ÿč‹ēœč‚æē˜¤é˜²ę²»ē ”ē©¶ę‰€'),
(82324, 'https://ror.org/03nrbzf14', 'no_lang_code', 1, 'https://ror.org/03nrbzf14 Orthofix (United States)'),
(82325, 'https://ror.org/03maknm89', 'en', 1, 'https://ror.org/03maknm89 National Institute of Ocean Technology ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„ą¤¦ą„ą¤° ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(82326, 'https://ror.org/032ydsv23', 'en', 1, 'https://ror.org/032ydsv23 Understanding Society'),
(82327, 'https://ror.org/04rz2mx03', 'en', 1, 'https://ror.org/04rz2mx03 Ontario Medical Association'),
(82328, 'https://ror.org/04gnp7x40', 'en', 1, 'https://ror.org/04gnp7x40 West Texas A&M University'),
(82329, 'https://ror.org/04qfh2k37', 'en', 1, 'https://ror.org/04qfh2k37 Mongolian Academy of Sciences Монгол ŃƒŠ»ŃŃ‹Š½ ŠØŠøŠ½Š¶Š»ŃŃ… ŃƒŃ…Š°Š°Š½Ń‹ АкаГеми'),
(82330, 'https://ror.org/03mm67z69', 'it', 1, 'https://ror.org/03mm67z69 Regione del Veneto'),
(82331, 'https://ror.org/058by8c55', 'en', 1, 'https://ror.org/058by8c55 Construction Industry Institute'),
(82332, 'https://ror.org/053kr4v45', 'no_lang_code', 1, 'https://ror.org/053kr4v45 Puma Biotechnology (United States)'),
(82333, 'https://ror.org/05ka9pc18', 'en', 1, 'https://ror.org/05ka9pc18 Against Breast Cancer'),
(82334, 'https://ror.org/05hesyx60', 'fr', 1, 'https://ror.org/05hesyx60 Fondation Vaincre Alzheimer'),
(82335, 'https://ror.org/03dhz6d13', 'en', 1, 'https://ror.org/03dhz6d13 All Ways Up Foundation'),
(82336, 'https://ror.org/0412y9z21', 'en', 1, 'https://ror.org/0412y9z21 Far Eastern Federal University Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(82337, 'https://ror.org/057xtrt18', 'en', 1, 'https://ror.org/057xtrt18 Kurume University 久留米大学'),
(82338, 'https://ror.org/03v67de52', 'no_lang_code', 1, 'https://ror.org/03v67de52 Duchesnay (Canada)'),
(82339, 'https://ror.org/05gyngk54', 'en', 1, 'https://ror.org/05gyngk54 Alberta Advanced Education'),
(82340, 'https://ror.org/053qy4437', 'en', 1, 'https://ror.org/053qy4437 Beijing Friendship Hospital åŒ—äŗ¬å‹č°ŠåŒ»é™¢'),
(82341, 'https://ror.org/05xz6wm82', 'en', 1, 'https://ror.org/05xz6wm82 The Kelvin and Eleanor Smith Foundation'),
(82342, 'https://ror.org/04j0sev46', 'es', 1, 'https://ror.org/04j0sev46 Centro de Investigación Biomédica en Red de Fragilidad y Envejecimiento Saludable'),
(82343, 'https://ror.org/05fn8qw23', 'no_lang_code', 1, 'https://ror.org/05fn8qw23 Seres Therapeutics (United States)'),
(82344, 'https://ror.org/03eyq4y97', 'en', 1, 'https://ror.org/03eyq4y97 Hamad bin Khalifa University'),
(82345, 'https://ror.org/03qygnx22', 'en', 1, 'https://ror.org/03qygnx22 Wills Eye Hospital'),
(82346, 'https://ror.org/030v5kp38', 'en', 1, 'https://ror.org/030v5kp38 University Hospital of North Norway'),
(82347, 'https://ror.org/05adj5455', 'es', 1, 'https://ror.org/05adj5455 Instituto Nacional de Pediatria'),
(82348, 'https://ror.org/03p3sm411', 'no_lang_code', 1, 'https://ror.org/03p3sm411 Marine Biodiversity Institute of Korea'),
(82349, 'https://ror.org/05ref2x71', 'en', 1, 'https://ror.org/05ref2x71 Dutch Dairymen Board'),
(82350, 'https://ror.org/03zv4m970', 'en', 1, 'https://ror.org/03zv4m970 Federal Social Insurance Office'),
(82351, 'https://ror.org/0400g8r85', 'en', 1, 'https://ror.org/0400g8r85 Sun Yat-sen University Cancer Center äø­å±±å¤§å­¦č‚æē˜¤é˜²ę²»äø­åæƒ'),
(82352, 'https://ror.org/04a5qyn42', 'en', 1, 'https://ror.org/04a5qyn42 State Historical Society of Missouri'),
(82353, 'https://ror.org/05hkxne09', 'en', 1, 'https://ror.org/05hkxne09 Kermanshah University of Technology'),
(82354, 'https://ror.org/05dkdaa55', 'en', 1, 'https://ror.org/05dkdaa55 Ioffe Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. А.Ф. Š˜Š¾Ń„Ń„Šµ Российской акаГемии наук'),
(82355, 'https://ror.org/05kwhph67', 'en', 1, 'https://ror.org/05kwhph67 Jenner Institute'),
(82356, 'https://ror.org/04qmmjx98', 'en', 1, 'https://ror.org/04qmmjx98 Osnabrück University Universität Osnabrück'),
(82357, 'https://ror.org/051n2dc24', 'en', 1, 'https://ror.org/051n2dc24 National Nuclear Laboratory'),
(82358, 'https://ror.org/03jmg4515', 'en', 1, 'https://ror.org/03jmg4515 Shenzhen Municipal Development and Reform Commission ę·±åœ³åø‚å‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(82359, 'https://ror.org/04c6p2s85', 'en', 1, 'https://ror.org/04c6p2s85 People''s Government of Yunnan Province äŗ‘å—ēœäŗŗę°‘ę”æåŗœ'),
(82360, 'https://ror.org/04b7wbe03', 'en', 1, 'https://ror.org/04b7wbe03 Dalian National Laboratory for Clean Energy'),
(82361, 'https://ror.org/031d5vw30', 'en', 1, 'https://ror.org/031d5vw30 Universitatea de Medicină și Farmacie din Craiova University of Medicine and Pharmacy of Craiova'),
(82362, 'https://ror.org/03k8der79', 'no_lang_code', 1, 'https://ror.org/03k8der79 Shimadzu (Japan) ę Ŗå¼ä¼šē¤¾ å³¶ę“„č£½ä½œę‰€'),
(82363, 'https://ror.org/05t1y0b59', 'no_lang_code', 1, 'https://ror.org/05t1y0b59 Visa (United States)'),
(82364, 'https://ror.org/058sw7g55', 'no_lang_code', 1, 'https://ror.org/058sw7g55 Marinus Pharmaceuticals (United States)'),
(82365, 'https://ror.org/04smsfy22', 'en', 1, 'https://ror.org/04smsfy22 Saint Francis University UniversitƩ saint francis'),
(82366, 'https://ror.org/04yn72m09', 'en', 1, 'https://ror.org/04yn72m09 Perron Institute for Neurological and Translational Science'),
(82367, 'https://ror.org/04d8ztx87', 'en', 1, 'https://ror.org/04d8ztx87 Agroscope'),
(82368, 'https://ror.org/04mvpxy20', 'en', 1, 'https://ror.org/04mvpxy20 Huzhou University'),
(82369, 'https://ror.org/05jsqgv79', 'en', 1, 'https://ror.org/05jsqgv79 Water Institute of the Gulf'),
(82370, 'https://ror.org/05xh8jn56', 'en', 1, 'https://ror.org/05xh8jn56 Kentucky State University UniversitĆ© d''Ɖtat du kentucky'),
(82371, 'https://ror.org/04zp96367', 'en', 1, 'https://ror.org/04zp96367 Bethlehem Griffiths Research Foundation'),
(82372, 'https://ror.org/05n0gsn30', 'en', 1, 'https://ror.org/05n0gsn30 Military University Nueva Granada Universidad Militar Nueva Granada'),
(82373, 'https://ror.org/03n9scz70', 'en', 1, 'https://ror.org/03n9scz70 University of Pittsburgh at Johnstown'),
(82374, 'https://ror.org/04cc2md17', 'no_lang_code', 1, 'https://ror.org/04cc2md17 Nihon Medi-Physics (Japan) ę—„ęœ¬ćƒ”ć‚øćƒ•ć‚£ć‚øćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(82375, 'https://ror.org/04w36j572', 'fr', 1, 'https://ror.org/04w36j572 Mission InterministƩrielle de Lutte contre les Drogues Et les Conduites Addictives'),
(82376, 'https://ror.org/031mgj447', 'no_lang_code', 1, 'https://ror.org/031mgj447 BioCryst Pharmaceuticals (United States)'),
(82377, 'https://ror.org/033nbnf69', 'en', 1, 'https://ror.org/033nbnf69 Shanghai Pulmonary Hospital'),
(82378, 'https://ror.org/05vg74d16', 'en', 1, 'https://ror.org/05vg74d16 Norwegian Institute of Marine Research'),
(82379, 'https://ror.org/0332bbh94', 'en', 1, 'https://ror.org/0332bbh94 Juvenile Diabetes Research Foundation'),
(82380, 'https://ror.org/034haf133', 'en', 1, 'https://ror.org/034haf133 First Hospital of Jilin University å‰ęž—å¤§å­¦ē¬¬äø€åŒ»é™¢'),
(82381, 'https://ror.org/04498wq72', 'en', 1, 'https://ror.org/04498wq72 Korean College of Helicobacter and Upper Gastrointestinal Research ėŒ€ķ•œģƒė¶€ģœ„ģž„ź“€Ā·ķ—¬ė¦¬ģ½”ė°•ķ„°ķ•™ķšŒģ§€'),
(82382, 'https://ror.org/04hhneb29', 'en', 1, 'https://ror.org/04hhneb29 Autonomous University of Tamaulipas Universidad Autónoma de Tamaulipas'),
(82383, 'https://ror.org/05p21nq18', 'en', 1, 'https://ror.org/05p21nq18 Dementias Platform UK'),
(82384, 'https://ror.org/058kzsd48', 'en', 1, 'https://ror.org/058kzsd48 Paderborn University UniversitƤt Paderborn'),
(82385, 'https://ror.org/034erzg96', 'de', 1, 'https://ror.org/034erzg96 DGPro Deutsche Gesellschaft für Prothetische Zahnmedizin und Biomaterialien'),
(82386, 'https://ror.org/04h3kqy34', 'en', 1, 'https://ror.org/04h3kqy34 Yunnan Provincial Department of Transportation äŗ‘å—ēœäŗ¤é€ščæč¾“åŽ…'),
(82387, 'https://ror.org/04bksfs41', 'no_lang_code', 1, 'https://ror.org/04bksfs41 HAL Allergy (Netherlands)'),
(82388, 'https://ror.org/03j69jg83', 'en', 1, 'https://ror.org/03j69jg83 Society for Imaging Science and Technology'),
(82389, 'https://ror.org/0554dyz25', 'en', 1, 'https://ror.org/0554dyz25 Wildlife Institute of India ą“µąµˆąµ½ą“”ąµą“²ąµˆą“«ąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“‡ą“Øąµą“¤ąµą“Æ'),
(82390, 'https://ror.org/048f7th17', 'no_lang_code', 1, 'https://ror.org/048f7th17 Cristalia (Brazil)'),
(82391, 'https://ror.org/050kded90', 'en', 1, 'https://ror.org/050kded90 Ministry of Minority Affairs'),
(82392, 'https://ror.org/03mrbr458', 'en', 1, 'https://ror.org/03mrbr458 Leibniz Institute for Astrophysics Potsdam Leibniz-Institut für Astrophysik Potsdam'),
(82393, 'https://ror.org/05fj6by70', 'en', 1, 'https://ror.org/05fj6by70 Hanse-Wissenschaftskolleg Institute for Advanced Study'),
(82394, 'https://ror.org/05by9mg64', 'en', 1, 'https://ror.org/05by9mg64 Xiangnan University ę¹˜å—å­¦é™¢'),
(82395, 'https://ror.org/04njz3m02', 'en', 1, 'https://ror.org/04njz3m02 Michigan State University Foundation'),
(82396, 'https://ror.org/03y191s38', 'en', 1, 'https://ror.org/03y191s38 Yan Chai Hospital ä»ęæŸé†«é™¢'),
(82397, 'https://ror.org/03y8p5m75', 'no_lang_code', 1, 'https://ror.org/03y8p5m75 Ushio (Japan) ć‚¦ć‚·ć‚Ŗé›»ę©Ÿ'),
(82398, 'https://ror.org/039b65w79', 'en', 1, 'https://ror.org/039b65w79 Mineral Resources'),
(82399, 'https://ror.org/05t91sk49', 'en', 1, 'https://ror.org/05t91sk49 Sampoerna University Universitas Siswa Bangsa Internasional'),
(82400, 'https://ror.org/04fqe9p30', 'en', 1, 'https://ror.org/04fqe9p30 San Diego Zoo Institute for Conservation Research'),
(82401, 'https://ror.org/05j6ybs54', 'en', 1, 'https://ror.org/05j6ybs54 Millennium Institute on Immunology and Immunotherapy'),
(82402, 'https://ror.org/054x1kd82', 'en', 1, 'https://ror.org/054x1kd82 Guangxi Academy of Sciences 广脿科学院'),
(82403, 'https://ror.org/05fnxgv12', 'en', 1, 'https://ror.org/05fnxgv12 GLA University'),
(82404, 'https://ror.org/03gfhhj78', 'en', 1, 'https://ror.org/03gfhhj78 Southeast Asian Ministers of Education Organization'),
(82405, 'https://ror.org/04mmhzs81', 'no_lang_code', 1, 'https://ror.org/04mmhzs81 ARM (United Kingdom)'),
(82406, 'https://ror.org/03wcn4h12', 'en', 1, 'https://ror.org/03wcn4h12 Longdong University é™‡äøœå­¦é™¢'),
(82407, 'https://ror.org/05esrfe27', 'tr', 1, 'https://ror.org/05esrfe27 İstanbul Kalkınma Ajansı'),
(82408, 'https://ror.org/05x2svh05', 'pt', 1, 'https://ror.org/05x2svh05 Federal Rural University of Semi-Ɓrido Universidade Federal Rural do Semi-Ɓrido'),
(82409, 'https://ror.org/05p6rhy72', 'en', 1, 'https://ror.org/05p6rhy72 Institute for Clinical Evaluative Sciences'),
(82410, 'https://ror.org/034vnkd20', 'en', 1, 'https://ror.org/034vnkd20 Chatham House'),
(82411, 'https://ror.org/04kmpyd03', 'en', 1, 'https://ror.org/04kmpyd03 Nanjing General Hospital of Nanjing Military Command äø­å›½äŗŗę°‘č§£ę”¾å†›å—äŗ¬å†›åŒŗå—äŗ¬ę€»åŒ»é™¢'),
(82412, 'https://ror.org/05cj29x94', 'en', 1, 'https://ror.org/05cj29x94 Leibniz Research Centre for Working Environment and Human Factors Leibniz-Institut für Arbeitsforschung an der TU Dortmund'),
(82413, 'https://ror.org/031grv205', 'en', 1, 'https://ror.org/031grv205 Framingham Heart Study'),
(82414, 'https://ror.org/056v6wn83', 'no_lang_code', 1, 'https://ror.org/056v6wn83 Asana Biosciences (United States)'),
(82415, 'https://ror.org/03n7vd314', 'en', 1, 'https://ror.org/03n7vd314 Prisma Health'),
(82416, 'https://ror.org/0472ppj97', 'en', 1, 'https://ror.org/0472ppj97 Austrian Development Agency'),
(82417, 'https://ror.org/04yz0nm53', 'en', 1, 'https://ror.org/04yz0nm53 Health Systems Research Institute'),
(82418, 'https://ror.org/055a4nj91', 'en', 1, 'https://ror.org/055a4nj91 Mystic Seaport'),
(82419, 'https://ror.org/04ptwdm39', 'en', 1, 'https://ror.org/04ptwdm39 Virginia Museum of Fine Arts'),
(82420, 'https://ror.org/05e2f9085', 'en', 1, 'https://ror.org/05e2f9085 NSABP Foundation'),
(82421, 'https://ror.org/05s04wy35', 'no_lang_code', 1, 'https://ror.org/05s04wy35 Mustansiriyah University الجامعة Ų§Ł„Ł…Ų³ŲŖŁ†ŲµŲ±ŁŠŲ©'),
(82422, 'https://ror.org/0556gk990', 'en', 1, 'https://ror.org/0556gk990 Touro University California'),
(82423, 'https://ror.org/05cdfgm80', 'no_lang_code', 1, 'https://ror.org/05cdfgm80 Shenyang Normal University 沈阳师范大学'),
(82424, 'https://ror.org/04p68fv46', 'en', 1, 'https://ror.org/04p68fv46 Baird Institute'),
(82425, 'https://ror.org/038wdy960', 'en', 1, 'https://ror.org/038wdy960 International Society for Magnetic Resonance in Medicine'),
(82426, 'https://ror.org/03rc91c03', 'en', 1, 'https://ror.org/03rc91c03 Froebel Trust'),
(82427, 'https://ror.org/04r15fz20', 'no_lang_code', 1, 'https://ror.org/04r15fz20 Hawassa University įˆ€į‹‹įˆ³ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(82428, 'https://ror.org/03cssjc92', 'en', 1, 'https://ror.org/03cssjc92 Scottish Aquaculture Innovation Centre'),
(82429, 'https://ror.org/0455awd29', 'en', 1, 'https://ror.org/0455awd29 Software Sustainability Institute'),
(82430, 'https://ror.org/03xh6aq63', 'en', 1, 'https://ror.org/03xh6aq63 Astronomy Australia'),
(82431, 'https://ror.org/04h48pe74', 'en', 1, 'https://ror.org/04h48pe74 Montana Academy of Sciences'),
(82432, 'https://ror.org/03151rh82', 'en', 1, 'https://ror.org/03151rh82 Louisiana State University Health Sciences Center Shreveport'),
(82433, 'https://ror.org/04j7mzp05', 'en', 1, 'https://ror.org/04j7mzp05 Kagawa University 香川大学'),
(82434, 'https://ror.org/033ztpr93', 'en', 1, 'https://ror.org/033ztpr93 Texas Tech University Health Sciences Center'),
(82435, 'https://ror.org/052sd7022', 'en', 1, 'https://ror.org/052sd7022 Society for Music Theory'),
(82436, 'https://ror.org/04k9dce70', 'en', 1, 'https://ror.org/04k9dce70 Taipei Medical University-Shuang Ho Hospital'),
(82437, 'https://ror.org/05mgp8x93', 'en', 1, 'https://ror.org/05mgp8x93 PLA Army Engineering University 中国人民解放军陆军巄程大学'),
(82438, 'https://ror.org/03sscxa41', 'en', 1, 'https://ror.org/03sscxa41 NSCAD University'),
(82439, 'https://ror.org/05bdaxb75', 'en', 1, 'https://ror.org/05bdaxb75 Philadelphia Area Center for History of Science'),
(82440, 'https://ror.org/05xte6x19', 'en', 1, 'https://ror.org/05xte6x19 Center for Surveillance, Epidemiology, and Laboratory Services'),
(82441, 'https://ror.org/03zvgda56', 'no_lang_code', 1, 'https://ror.org/03zvgda56 Abeona Therapeutics (United States)'),
(82442, 'https://ror.org/04gmab760', 'en', 1, 'https://ror.org/04gmab760 Lung Foundation Netherlands'),
(82443, 'https://ror.org/0369jpd83', 'en', 1, 'https://ror.org/0369jpd83 Ministry of Livestock Development and Fisheries, Tanzania Ministry of Livestock and Fisheries Wizara ya Mifugo na Uvuvi'),
(82444, 'https://ror.org/05s5ffk95', 'nl', 1, 'https://ror.org/05s5ffk95 Sporten voor Sophia'),
(82445, 'https://ror.org/04dxbz091', 'no_lang_code', 1, 'https://ror.org/04dxbz091 Constellation Pharmaceuticals (United States)'),
(82446, 'https://ror.org/036dyz052', 'en', 1, 'https://ror.org/036dyz052 PLA Navy General Hospital'),
(82447, 'https://ror.org/0469yk703', 'en', 1, 'https://ror.org/0469yk703 Florida Department of State'),
(82448, 'https://ror.org/0597re059', 'en', 1, 'https://ror.org/0597re059 Jewish National Fund'),
(82449, 'https://ror.org/05qr7ed45', 'en', 1, 'https://ror.org/05qr7ed45 Biotechnology Industry Research Assistance Council'),
(82450, 'https://ror.org/03acdk243', 'en', 1, 'https://ror.org/03acdk243 Sidra Medical and Research Center'),
(82451, 'https://ror.org/05hw40m44', 'en', 1, 'https://ror.org/05hw40m44 Washington Center for Equitable Growth'),
(82452, 'https://ror.org/03p767394', 'en', 1, 'https://ror.org/03p767394 Spices Board India मसाला ą¤¬ą„‹ą¤°ą„ą¤” भारत ą“øąµą“Ŗąµˆą“øą“øąµ ą“¬ąµ‡ą“¾ąµ¼ą“”ąµ ą“‡ą“Øąµą“¤ąµą“Æ'),
(82453, 'https://ror.org/044bma518', 'en', 1, 'https://ror.org/044bma518 Forestry and Forest Products Research Institute å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę£®ęž—ē ”ē©¶ćƒ»ę•“å‚™ę©Ÿę§‹'),
(82454, 'https://ror.org/03a6z4w08', 'no_lang_code', 1, 'https://ror.org/03a6z4w08 Theravance Biopharma (United States)'),
(82455, 'https://ror.org/057315g56', 'no_lang_code', 1, 'https://ror.org/057315g56 Salesforce (United States)'),
(82456, 'https://ror.org/05dnene97', 'en', 1, 'https://ror.org/05dnene97 Feinstein Institute for Medical Research'),
(82457, 'https://ror.org/03sfwvw54', 'en', 1, 'https://ror.org/03sfwvw54 National Institute of Technology Srinagar ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¶ą„ą¤°ą„€ą¤Øą¤—ą¤°'),
(82458, 'https://ror.org/05px9k635', 'en', 1, 'https://ror.org/05px9k635 African Academy of Sciences'),
(82459, 'https://ror.org/0390vdb22', 'en', 1, 'https://ror.org/0390vdb22 Institute on Aging'),
(82460, 'https://ror.org/055rjs771', 'en', 1, 'https://ror.org/055rjs771 Institute of Microbial Technology ą¤øą„‚ą¤•ą„ą¤·ą„ą¤®ą¤œą„€ą¤µ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(82461, 'https://ror.org/04x222a35', 'en', 1, 'https://ror.org/04x222a35 Institute of Ismaili Studies'),
(82462, 'https://ror.org/036jb8273', 'en', 1, 'https://ror.org/036jb8273 Foundation for the Promotion of Ion Engineering'),
(82463, 'https://ror.org/03ae6qy41', 'en', 1, 'https://ror.org/03ae6qy41 Phoenix Children''s Hospital'),
(82464, 'https://ror.org/05twya590', 'en', 1, 'https://ror.org/05twya590 China People''s Public Security University 中国人民公安大学'),
(82465, 'https://ror.org/03qyr1v70', 'en', 1, 'https://ror.org/03qyr1v70 Wadia Institute of Himalayan Geology वाऔिया ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø हिमालय ą¤­ą„‚ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø'),
(82466, 'https://ror.org/03bf4tw22', 'no_lang_code', 1, 'https://ror.org/03bf4tw22 Inventiva (France)'),
(82467, 'https://ror.org/03a7c7317', 'en', 1, 'https://ror.org/03a7c7317 Elton John AIDS Foundation'),
(82468, 'https://ror.org/03qgg4v31', 'fr', 1, 'https://ror.org/03qgg4v31 Le Studium'),
(82469, 'https://ror.org/03qb1q739', 'en', 1, 'https://ror.org/03qb1q739 Familjen Kamprads Stiftelse Kamprad Family Foundation'),
(82470, 'https://ror.org/040h35947', 'en', 1, 'https://ror.org/040h35947 Fondation Partager le Savoir Sharing Knowledge Foundation'),
(82471, 'https://ror.org/04p2sbk06', 'en', 1, 'https://ror.org/04p2sbk06 Panjab University ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਪੰਜਾਬ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€, ąØšą©°ąØ”ą©€ąØ—ą©œą©ąØ¹ ą®Ŗą®žąÆą®šą®¾ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®šą®£ąÆą®Ÿą®æą®•ą®°ąÆ'),
(82472, 'https://ror.org/03gh96r95', 'en', 1, 'https://ror.org/03gh96r95 Bowdoin College'),
(82473, 'https://ror.org/03gbzhd34', 'en', 1, 'https://ror.org/03gbzhd34 CVPath Institute'),
(82474, 'https://ror.org/059saq786', 'no_lang_code', 1, 'https://ror.org/059saq786 Teikoku Pharma (United States)'),
(82475, 'https://ror.org/04a8rt780', 'no_lang_code', 1, 'https://ror.org/04a8rt780 UnitedHealth Group (United States)'),
(82476, 'https://ror.org/04rbpat47', 'en', 1, 'https://ror.org/04rbpat47 Mercator Research Center Ruhr'),
(82477, 'https://ror.org/03rs2w544', 'en', 1, 'https://ror.org/03rs2w544 Central Agricultural University ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(82478, 'https://ror.org/04wvygn49', 'es', 1, 'https://ror.org/04wvygn49 Fundación Copec UC'),
(82479, 'https://ror.org/04zn6xq74', 'en', 1, 'https://ror.org/04zn6xq74 Huaihua University ę€€åŒ–å­¦é™¢'),
(82480, 'https://ror.org/05krpfr80', 'no_lang_code', 1, 'https://ror.org/05krpfr80 Tenax Therapeutics (United States)'),
(82481, 'https://ror.org/048hrc512', 'no_lang_code', 1, 'https://ror.org/048hrc512 Scottish Power (United Kingdom)'),
(82482, 'https://ror.org/052y0j663', 'en', 1, 'https://ror.org/052y0j663 Society for Industrial and Applied Mathematics'),
(82483, 'https://ror.org/04r83e717', 'en', 1, 'https://ror.org/04r83e717 Trudeau Institute'),
(82484, 'https://ror.org/05f2age66', 'en', 1, 'https://ror.org/05f2age66 National Research Institute of Animal Production'),
(82485, 'https://ror.org/058h74p94', 'en', 1, 'https://ror.org/058h74p94 Nagasaki University 長哎大学'),
(82486, 'https://ror.org/05mjrzy91', 'en', 1, 'https://ror.org/05mjrzy91 Max Planck Institute for the Science of Human History Max-Planck-Institut für Menschheitsgeschichte'),
(82487, 'https://ror.org/05jyg6z06', 'no_lang_code', 1, 'https://ror.org/05jyg6z06 Mersana Therapeutics (United States)'),
(82488, 'https://ror.org/05bnz7c87', 'en', 1, 'https://ror.org/05bnz7c87 Tall Timbers Research Station and Land Conservancy'),
(82489, 'https://ror.org/02zv3m156', 'en', 1, 'https://ror.org/02zv3m156 EcoHealth Alliance'),
(82490, 'https://ror.org/04p6eac84', 'en', 1, 'https://ror.org/04p6eac84 Chuo Kikuu cha Moi Moi University'),
(82491, 'https://ror.org/04d6b6d46', 'en', 1, 'https://ror.org/04d6b6d46 Cooper Institute'),
(82492, 'https://ror.org/05vh67662', 'pt', 1, 'https://ror.org/05vh67662 Aeronautics Institute of Technology Instituto Tecnológico de AeronÔutica'),
(82493, 'https://ror.org/03qendm16', 'en', 1, 'https://ror.org/03qendm16 Cancer Foundation of China äø­å›½ē™Œē—‡åŸŗé‡‘ä¼š'),
(82494, 'https://ror.org/05t8s3y29', 'en', 1, 'https://ror.org/05t8s3y29 Discovery Institute'),
(82495, 'https://ror.org/03tx9h743', 'no_lang_code', 1, 'https://ror.org/03tx9h743 Atlantic Healthcare (United Kingdom)'),
(82496, 'https://ror.org/03zfph507', 'en', 1, 'https://ror.org/03zfph507 Mary Reynolds Babcock Foundation'),
(82497, 'https://ror.org/05xcarb80', 'en', 1, 'https://ror.org/05xcarb80 VA Greater Los Angeles Healthcare System'),
(82498, 'https://ror.org/04k5gs878', 'en', 1, 'https://ror.org/04k5gs878 Lincoln Institute of Land Policy'),
(82499, 'https://ror.org/04ysagy14', 'en', 1, 'https://ror.org/04ysagy14 Kungliga Vitterhets Historie och Antikvitets Akademien The Royal Swedish Academy of Letters, History and Antiquities'),
(82500, 'https://ror.org/04sn78z72', 'en', 1, 'https://ror.org/04sn78z72 Chartered Society of Physiotherapy'),
(82501, 'https://ror.org/049te4f25', 'en', 1, 'https://ror.org/049te4f25 Arkansas Department of Education'),
(82502, 'https://ror.org/032w5j703', 'en', 1, 'https://ror.org/032w5j703 Museum of Applied Arts & Sciences'),
(82503, 'https://ror.org/04g4rsk10', 'no_lang_code', 1, 'https://ror.org/04g4rsk10 Petromat ąøØąø¹ąø™ąø¢ą¹Œąø„ąø§ąø²ąø”ą¹€ąø›ą¹‡ąø™ą¹€ąø„ąø“ąøØąø”ą¹‰ąø²ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø›ąø“ą¹‚ąø•ąø£ą¹€ąø„ąø”ąøµą¹ąø„ąø°ąø§ąø±ąøŖąø”ąøø'),
(82504, 'https://ror.org/04e0pwy27', 'en', 1, 'https://ror.org/04e0pwy27 National Agricultural Research Foundation'),
(82505, 'https://ror.org/03z98aa86', 'en', 1, 'https://ror.org/03z98aa86 Russian State Social University Российский Š³Š¾ŃŃƒŠ“арственный ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(82506, 'https://ror.org/02zpxgh81', 'en', 1, 'https://ror.org/02zpxgh81 Guru Jambheshwar University of Science and Technology ą¤—ą„ą¤°ą„ ą¤œą¤‚ą¤­ą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ குரு ą®œą®®ąÆą®ŖąÆ‡ą®šąÆą®µą®°ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(82507, 'https://ror.org/03f3rne76', 'en', 1, 'https://ror.org/03f3rne76 Baise University 百色学院'),
(82508, 'https://ror.org/04nbx4a76', 'en', 1, 'https://ror.org/04nbx4a76 Society of Cardiovascular Anesthesiologists'),
(82509, 'https://ror.org/05sy5hm57', 'en', 1, 'https://ror.org/05sy5hm57 Yasouj University'),
(82510, 'https://ror.org/04ysqja07', 'en', 1, 'https://ror.org/04ysqja07 Random Walk Imaging'),
(82511, 'https://ror.org/0513pp416', 'en', 1, 'https://ror.org/0513pp416 Barts Charity'),
(82512, 'https://ror.org/05js82y61', 'no_lang_code', 1, 'https://ror.org/05js82y61 Kitasato Institute Hospital åŒ—é‡Œå¤§å­¦åŒ—é‡Œē ”ē©¶ę‰€ē—…é™¢'),
(82513, 'https://ror.org/04mcppw82', 'no_lang_code', 1, 'https://ror.org/04mcppw82 AKL (United Kingdom)'),
(82514, 'https://ror.org/05rykfp30', 'en', 1, 'https://ror.org/05rykfp30 Collège royal des médecins et chirurgiens du Canada Royal College of Physicians and Surgeons of Canada'),
(82515, 'https://ror.org/04kf5kc54', 'en', 1, 'https://ror.org/04kf5kc54 Nederlands Interdisciplinair Demografisch Instituut Netherlands Interdisciplinary Demographic Institute'),
(82516, 'https://ror.org/03d543283', 'en', 1, 'https://ror.org/03d543283 Children''s Minnesota'),
(82517, 'https://ror.org/04s498a57', 'en', 1, 'https://ror.org/04s498a57 National Cattlemen''s Beef Association'),
(82518, 'https://ror.org/036rzqn25', 'en', 1, 'https://ror.org/036rzqn25 China Academy of Building Research 中国建筑科学研究院'),
(82519, 'https://ror.org/0421w8947', 'en', 1, 'https://ror.org/0421w8947 Immanuel Kant Baltic Federal University Балтийский Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Иммануила ŠšŠ°Š½Ń‚а'),
(82520, 'https://ror.org/05wk4rc87', 'en', 1, 'https://ror.org/05wk4rc87 Uganda Industrial Research Institute'),
(82521, 'https://ror.org/03xzf6x18', 'en', 1, 'https://ror.org/03xzf6x18 Korean Breast Cancer Society'),
(82522, 'https://ror.org/0505pmp86', 'en', 1, 'https://ror.org/0505pmp86 Osteoarthritis Research Society International'),
(82523, 'https://ror.org/03hrf8236', 'en', 1, 'https://ror.org/03hrf8236 Norwegian Institute for Water Research'),
(82524, 'https://ror.org/05pqnfp43', 'en', 1, 'https://ror.org/05pqnfp43 Maccabi Institute for Health Services Research'),
(82525, 'https://ror.org/03y4g9k62', 'es', 1, 'https://ror.org/03y4g9k62 Fundación Instituto para la Mejora de la Asistencia Sanitaria'),
(82526, 'https://ror.org/04d5vba33', 'en', 1, 'https://ror.org/04d5vba33 The University of Texas at El Paso Universidad de Texas en El Paso UniversitƩ du texas Ơ el paso'),
(82527, 'https://ror.org/04a3gpp87', 'en', 1, 'https://ror.org/04a3gpp87 Doerenkamp-Zbinden Foundation'),
(82528, 'https://ror.org/03fz1tt45', 'en', 1, 'https://ror.org/03fz1tt45 History of Science Society'),
(82529, 'https://ror.org/03ny8r668', 'en', 1, 'https://ror.org/03ny8r668 Chinesisch-Deutsche Zentrum für Wissenschaftsförderung Sino-German Center for Research Promotion'),
(82530, 'https://ror.org/03wev7075', 'en', 1, 'https://ror.org/03wev7075 National Bureau of Asian Research'),
(82531, 'https://ror.org/04et4d930', 'pl', 1, 'https://ror.org/04et4d930 Lasy Państwowe'),
(82532, 'https://ror.org/05qehc735', 'en', 1, 'https://ror.org/05qehc735 Canadian Society of Nephrology'),
(82533, 'https://ror.org/05pjsqp06', 'en', 1, 'https://ror.org/05pjsqp06 Shanghai Planning Office of Philosophy and Social Science äøŠęµ·åø‚å“²å­¦ē¤¾ä¼šē§‘å­¦č§„åˆ’åŠžå…¬å®¤'),
(82534, 'https://ror.org/04yxemn98', 'en', 1, 'https://ror.org/04yxemn98 Calouste Gulbenkian Foundation Fundação Calouste Gulbenkian'),
(82535, 'https://ror.org/046tej914', 'en', 1, 'https://ror.org/046tej914 Technological University Hmawbi'),
(82536, 'https://ror.org/00sfmx060', 'pt', 1, 'https://ror.org/00sfmx060 Pontifical Catholic University of São Paulo Pontifícia Universidade Católica de São Paulo'),
(82537, 'https://ror.org/05exmmw78', 'no_lang_code', 1, 'https://ror.org/05exmmw78 Abiomed (United States)'),
(82538, 'https://ror.org/03mcefb58', 'no_lang_code', 1, 'https://ror.org/03mcefb58 Powerchina Huadong Engineering Corporation (China)'),
(82539, 'https://ror.org/00rpqyj14', 'no_lang_code', 1, 'https://ror.org/00rpqyj14 ARCA Biopharma (United States)'),
(82540, 'https://ror.org/05hn3g777', 'no_lang_code', 1, 'https://ror.org/05hn3g777 Anhui Jiyuan Software å®‰å¾½ē»§čæœč½Æä»¶ęœ‰é™å…¬åø'),
(82541, 'https://ror.org/02s6w6207', 'en', 1, 'https://ror.org/02s6w6207 Budge Budge Institute of Technology'),
(82542, 'https://ror.org/05hag2y10', 'pt', 1, 'https://ror.org/05hag2y10 Federal University of Acre Universidade Federal do Acre'),
(82543, 'https://ror.org/037px4461', 'no_lang_code', 1, 'https://ror.org/037px4461 Japan Petroleum Institute å…¬ē›Šē¤¾å›£ę³•äŗŗēŸ³ę²¹å­¦ä¼š'),
(82544, 'https://ror.org/04xbpez43', 'en', 1, 'https://ror.org/04xbpez43 National Institute for International Education źµ­ė¦½źµ­ģ œźµģœ”ģ›'),
(82545, 'https://ror.org/01rsgrz10', 'en', 1, 'https://ror.org/01rsgrz10 Institut supĆ©rieur de mĆ©decine sanjay gandhi Sanjay Gandhi Post Graduate Institute of Medical Sciences ą¤øą¤‚ą¤œą¤Æ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(82546, 'https://ror.org/03j96wp44', 'en', 1, 'https://ror.org/03j96wp44 Association for Innovation and Biomedical Research on Light and Image Associação Para a Investigação Biomédica e Inovação Em Luz e Imagem'),
(82547, 'https://ror.org/05mdyn772', 'no_lang_code', 1, 'https://ror.org/05mdyn772 Vital Strategies'),
(82548, 'https://ror.org/01dc8vg74', 'en', 1, 'https://ror.org/01dc8vg74 A.P. Ershov Institute of Informatics Systems, Siberian Branch of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систем информатики им. А.П. Š•Ń€ŃˆŠ¾Š²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(82549, 'https://ror.org/018f8pa48', 'no_lang_code', 1, 'https://ror.org/018f8pa48 Abon Pharmaceuticals'),
(82550, 'https://ror.org/05g8baj95', 'en', 1, 'https://ror.org/05g8baj95 Institute for Student Achievement'),
(82551, 'https://ror.org/059g7w694', 'no_lang_code', 1, 'https://ror.org/059g7w694 Indlas VIMHANS Hospital'),
(82552, 'https://ror.org/01gr7hw08', 'no_lang_code', 1, 'https://ror.org/01gr7hw08 SOS OxygĆØne (France)'),
(82553, 'https://ror.org/028f3st43', 'de', 1, 'https://ror.org/028f3st43 Rostocker Institut für Sozialforschung und gesellschaftliche Praxis e.V.'),
(82554, 'https://ror.org/02j01mp63', 'en', 1, 'https://ror.org/02j01mp63 National Metrology Institute of South Africa'),
(82555, 'https://ror.org/01wj9hk44', 'de', 1, 'https://ror.org/01wj9hk44 Bertelsmann Stiftung'),
(82556, 'https://ror.org/00yqxd286', 'en', 1, 'https://ror.org/00yqxd286 Sichuan College of Architectural Technology å››å·å»ŗē­‘čŒäøšęŠ€ęœÆå­¦é™¢'),
(82557, 'https://ror.org/0154kn471', 'en', 1, 'https://ror.org/0154kn471 Allen Institute for Immunology'),
(82558, 'https://ror.org/02cpjkp59', 'en', 1, 'https://ror.org/02cpjkp59 Beth Israel Deaconess Hospital'),
(82559, 'https://ror.org/0233jz243', 'no_lang_code', 1, 'https://ror.org/0233jz243 Guerbet (United States)'),
(82560, 'https://ror.org/027786x52', 'en', 1, 'https://ror.org/027786x52 Forestry Research Institute of Ghana'),
(82561, 'https://ror.org/015h5sy57', 'en', 1, 'https://ror.org/015h5sy57 Chuo Kikuu cha Kilimo na Teknolojia cha Jomo Kenyatta Jomo Kenyatta University of Agriculture and Technology'),
(82562, 'https://ror.org/027g1r322', 'no_lang_code', 1, 'https://ror.org/027g1r322 Innocrin Pharmaceuticals (United States)'),
(82563, 'https://ror.org/03tvpbp09', 'en', 1, 'https://ror.org/03tvpbp09 Ministerio de Ciencia, Tecnología, Conocimiento e Innovación Ministry of Science, Technology, Knowledge and Innovation'),
(82564, 'https://ror.org/03z324m19', 'en', 1, 'https://ror.org/03z324m19 Colorectal Surgical Society of Australia and New Zealand'),
(82565, 'https://ror.org/02vzx8197', 'no_lang_code', 1, 'https://ror.org/02vzx8197 SIRIS Academic'),
(82566, 'https://ror.org/04yj19q41', 'no_lang_code', 1, 'https://ror.org/04yj19q41 Huadong Sanatorium åŽäøœē–—å…»é™¢'),
(82567, 'https://ror.org/01exj2638', 'en', 1, 'https://ror.org/01exj2638 Olav Raagholt og Gerd Meidel Raagholts stiftelse The Olav Raagholt and Gerd Meidel Raagholt Research Foundation'),
(82568, 'https://ror.org/04mxp4k39', 'en', 1, 'https://ror.org/04mxp4k39 AOSpine'),
(82569, 'https://ror.org/03ah74403', 'de', 1, 'https://ror.org/03ah74403 Krankenhaus der Barmherzigen Schwestern Ried'),
(82570, 'https://ror.org/0574der91', 'en', 1, 'https://ror.org/0574der91 Guangdong University of Education å¹æäøœē¬¬äŗŒåøˆčŒƒå­¦é™¢'),
(82571, 'https://ror.org/02n0sa445', 'en', 1, 'https://ror.org/02n0sa445 Royal Australian and New Zealand College of Psychiatrists'),
(82572, 'https://ror.org/03t0t6y08', 'en', 1, 'https://ror.org/03t0t6y08 University of California Division of Agriculture and Natural Resources'),
(82573, 'https://ror.org/015b0dz43', 'en', 1, 'https://ror.org/015b0dz43 Rhode Island Department of Health'),
(82574, 'https://ror.org/015z41c35', 'en', 1, 'https://ror.org/015z41c35 Dementia Collaborative Research Centres'),
(82575, 'https://ror.org/04p017s78', 'en', 1, 'https://ror.org/04p017s78 Autonomous State Medical College, Fatehpur ą¤‘ą¤Ÿą„‹ą¤Øą„‰ą¤®ą¤ø ą¤øą„ą¤Ÿą„‡ą¤Ÿ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ, ą¤«ą¤¤ą„‡ą¤¹ą¤Ŗą„ą¤°'),
(82576, 'https://ror.org/05ypjr115', 'en', 1, 'https://ror.org/05ypjr115 HKBK College of Engineering'),
(82577, 'https://ror.org/0585bz443', 'en', 1, 'https://ror.org/0585bz443 PLA Navy Submarine Academy ęµ·å†›ę½œč‰‡å­¦é™¢'),
(82578, 'https://ror.org/04dmy8675', 'de', 1, 'https://ror.org/04dmy8675 Deutsche Gesellschaft für Kieferorthopädie e.V'),
(82579, 'https://ror.org/04qawwn42', 'en', 1, 'https://ror.org/04qawwn42 Central Council for Research in Homoeopathy'),
(82580, 'https://ror.org/04rbvc675', 'en', 1, 'https://ror.org/04rbvc675 Buddhist Tzu Chi Medical Foundation'),
(82581, 'https://ror.org/04bswr545', 'en', 1, 'https://ror.org/04bswr545 Hospital of Stomatology, Sun Yat-sen University äø­å±±å¤§å­¦é™„å±žå£č…”åŒ»é™¢'),
(82582, 'https://ror.org/00fadqs53', 'en', 1, 'https://ror.org/00fadqs53 Mogadishu Somali Turkish Training and Research Hospital'),
(82583, 'https://ror.org/05p2jqt70', 'en', 1, 'https://ror.org/05p2jqt70 Association for the Sciences of Limnology and Oceanography'),
(82584, 'https://ror.org/01vvhy971', 'en', 1, 'https://ror.org/01vvhy971 Shiga University 滋賀大学'),
(82585, 'https://ror.org/042tph174', 'en', 1, 'https://ror.org/042tph174 Pan African University Institute for Basic Sciences, Technology and Innovation'),
(82586, 'https://ror.org/038yc5y48', 'en', 1, 'https://ror.org/038yc5y48 Australian Society for Antimicrobials'),
(82587, 'https://ror.org/04x1dwm38', 'no_lang_code', 1, 'https://ror.org/04x1dwm38 Seikagaku Corporation (Japan) ē”ŸåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(82588, 'https://ror.org/05jtex909', 'en', 1, 'https://ror.org/05jtex909 Australian and New Zealand Urogenital and Prostate Cancer Trials Group'),
(82589, 'https://ror.org/03shhrx95', 'no_lang_code', 1, 'https://ror.org/03shhrx95 Daqing Oilfield of CNPC äø­å›½ēŸ³ę²¹å¤§åŗ†ę²¹ē”°'),
(82590, 'https://ror.org/02pr1mr20', 'no_lang_code', 1, 'https://ror.org/02pr1mr20 Angion (United States)'),
(82591, 'https://ror.org/01fczmh85', 'en', 1, 'https://ror.org/01fczmh85 Netaji Subhas University of Technology ą¤Øą„‡ą¤¤ą¤¾ą¤œą„€ ą¤øą„ą¤­ą¤¾ą¤· ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(82592, 'https://ror.org/030r5af82', 'de', 1, 'https://ror.org/030r5af82 Stadtarchiv Krems'),
(82593, 'https://ror.org/030a08k25', 'en', 1, 'https://ror.org/030a08k25 Jishan County People''s Hospital ēØ·å±±åŽæäŗŗę°‘åŒ»é™¢'),
(82594, 'https://ror.org/02h9pt147', 'en', 1, 'https://ror.org/02h9pt147 PGP College of Engineering and Technology'),
(82595, 'https://ror.org/054psm803', 'en', 1, 'https://ror.org/054psm803 Sri Sivasubramaniya Nadar College of Engineering ą¤¶ą„ą¤°ą„€ ą¤¶ą¤æą¤µą¤øą„ą¤¬ą„ą¤°ą¤®ą¤£ą„ą¤Æ नादर ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą¤æą¤‚ą¤—'),
(82596, 'https://ror.org/01vf2ak57', 'en', 1, 'https://ror.org/01vf2ak57 Korean Society of Hypertension'),
(82597, 'https://ror.org/00xjwyj62', 'en', 1, 'https://ror.org/00xjwyj62 Eighth Affiliated Hospital of Sun Yat-sen University äø­å±±å¤§å­¦é™„å±žē¬¬å…«åŒ»é™¢'),
(82598, 'https://ror.org/050agvb10', 'en', 1, 'https://ror.org/050agvb10 Yuncheng Central Hospital ē‰ˆęƒę‰€ęœ‰ čæåŸŽåø‚äø­åæƒåŒ»é™¢'),
(82599, 'https://ror.org/03nd63441', 'en', 1, 'https://ror.org/03nd63441 The Christie Hospital'),
(82600, 'https://ror.org/04g2thr40', 'en', 1, 'https://ror.org/04g2thr40 Bệnh viện thĆ nh phố Thį»§ Đức Thu Duc City Hospital'),
(82601, 'https://ror.org/0092gmc55', 'no_lang_code', 1, 'https://ror.org/0092gmc55 Minophagen Pharmaceutical (Japan)'),
(82602, 'https://ror.org/011dvr318', 'en', 1, 'https://ror.org/011dvr318 Spaulding Rehabilitation Hospital'),
(82603, 'https://ror.org/04qwwj097', 'de', 1, 'https://ror.org/04qwwj097 Deutsche Zƶliakie-Gesellschaft e.V.'),
(82604, 'https://ror.org/02s0g2v93', 'no_lang_code', 1, 'https://ror.org/02s0g2v93 Polytec (Germany)'),
(82605, 'https://ror.org/04af7ga89', 'no_lang_code', 1, 'https://ror.org/04af7ga89 Nanyang Polytechnic'),
(82606, 'https://ror.org/05ekp1k95', 'no_lang_code', 1, 'https://ror.org/05ekp1k95 Wƶrwag Pharma (Germany)'),
(82607, 'https://ror.org/050103r16', 'en', 1, 'https://ror.org/050103r16 CDC Foundation'),
(82608, 'https://ror.org/04z50eg91', 'en', 1, 'https://ror.org/04z50eg91 European Stroke Organisation'),
(82609, 'https://ror.org/00sxy8533', 'es', 1, 'https://ror.org/00sxy8533 La Salle University Universidad La Salle'),
(82610, 'https://ror.org/05ae5js31', 'en', 1, 'https://ror.org/05ae5js31 Arolsen Archives - International Center on Nazi Persecution'),
(82611, 'https://ror.org/03ptf5b24', 'en', 1, 'https://ror.org/03ptf5b24 British Society for Surgery of the Hand'),
(82612, 'https://ror.org/02ev4ry20', 'en', 1, 'https://ror.org/02ev4ry20 Rana University رنا Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(82613, 'https://ror.org/01h85hm56', 'en', 1, 'https://ror.org/01h85hm56 Dow University of Health Sciences ڈاؤ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŪŪŒŁ„ŲŖŚ¾ سائنسز'),
(82614, 'https://ror.org/02tx4na66', 'en', 1, 'https://ror.org/02tx4na66 Cheongju University ģ²­ģ£¼ėŒ€ķ•™źµ'),
(82615, 'https://ror.org/00np1ar05', 'en', 1, 'https://ror.org/00np1ar05 Asia Pacific Observatory on Health Systems and Policies'),
(82616, 'https://ror.org/04533wk67', 'en', 1, 'https://ror.org/04533wk67 Kearney Agricultural Research and Extension Center'),
(82617, 'https://ror.org/05r7bye26', 'en', 1, 'https://ror.org/05r7bye26 Zhebei Mingzhou Hospital'),
(82618, 'https://ror.org/044356j33', 'no_lang_code', 1, 'https://ror.org/044356j33 The Mofet Institute מכון מופ"×Ŗ'),
(82619, 'https://ror.org/02esmmc86', 'no', 1, 'https://ror.org/02esmmc86 Stiftelsen Dam'),
(82620, 'https://ror.org/040548g92', 'en', 1, 'https://ror.org/040548g92 University of Bisha Ų¬Ų§Ł…Ų¹Ų© بيؓة'),
(82621, 'https://ror.org/00z9ev113', 'en', 1, 'https://ror.org/00z9ev113 Shinjuku College of Information Technology ę–°å®æęƒ…å ±ćƒ“ć‚øćƒć‚¹å°‚é–€å­¦ę ”'),
(82622, 'https://ror.org/02n2n9a06', 'en', 1, 'https://ror.org/02n2n9a06 Glenrose Rehabilitation Hospital'),
(82623, 'https://ror.org/031a97q88', 'pt', 1, 'https://ror.org/031a97q88 Instituto Pró-Carnívoros'),
(82624, 'https://ror.org/015frs841', 'no_lang_code', 1, 'https://ror.org/015frs841 TauRx Pharmaceuticals (Singapore)'),
(82625, 'https://ror.org/047van922', 'en', 1, 'https://ror.org/047van922 Nha Trang University TrĘ°į»ng ĐẔi hį»c Nha Trang'),
(82626, 'https://ror.org/04meft248', 'en', 1, 'https://ror.org/04meft248 Life Sciences Research Board'),
(82627, 'https://ror.org/04rsrxr19', 'en', 1, 'https://ror.org/04rsrxr19 Fondation des Ʃtoiles Foundation of Stars'),
(82628, 'https://ror.org/05bgf9v38', 'en', 1, 'https://ror.org/05bgf9v38 Business Finland'),
(82629, 'https://ror.org/05267d168', 'en', 1, 'https://ror.org/05267d168 Max-Planck-POSTECH Center for Complex Phase Material ė§‰ģŠ¤ķ”Œėž‘ķ¬ ķ•œźµ­ / ķ¬ģŠ¤ķ… ģ—°źµ¬ģ†Œ'),
(82630, 'https://ror.org/00r5tc683', 'en', 1, 'https://ror.org/00r5tc683 Korea Health Promotion Institute ķ•œźµ­ź±“ź°•ģ¦ģ§„ź°œė°œģ›'),
(82631, 'https://ror.org/002pd6e78', 'en', 1, 'https://ror.org/002pd6e78 Hospital General de Massachusetts Massachusetts General Hospital'),
(82632, 'https://ror.org/03rks9355', 'no_lang_code', 1, 'https://ror.org/03rks9355 Naval Group (France)'),
(82633, 'https://ror.org/02k8zdn75', 'no_lang_code', 1, 'https://ror.org/02k8zdn75 Aptevo Therapeutics (United states)'),
(82634, 'https://ror.org/038q98v71', 'no_lang_code', 1, 'https://ror.org/038q98v71 Dominion (United States)'),
(82635, 'https://ror.org/01pxfxj80', 'en', 1, 'https://ror.org/01pxfxj80 GreyNet International'),
(82636, 'https://ror.org/0289s0476', 'en', 1, 'https://ror.org/0289s0476 Woolf Fisher Trust'),
(82637, 'https://ror.org/05xzb7x97', 'es', 1, 'https://ror.org/05xzb7x97 Instituto de Investigación Sanitaria del Principado de Asturias'),
(82638, 'https://ror.org/02ynbzc81', 'pt', 1, 'https://ror.org/02ynbzc81 Universidade de Fortaleza'),
(82639, 'https://ror.org/042ksc857', 'en', 1, 'https://ror.org/042ksc857 Lazarex Cancer Foundation'),
(82640, 'https://ror.org/02122at02', 'sr', 1, 'https://ror.org/02122at02 Univerzitetski Klinički Centar Srbije Универзитетски клинички центар Š”Ń€Š±ŠøŃ˜Šµ'),
(82641, 'https://ror.org/02k5t7d62', 'en', 1, 'https://ror.org/02k5t7d62 Zhengzhou Preschool Education College éƒ‘å·žå¹¼å„æåøˆčŒƒé«˜ē­‰äø“ē§‘å­¦ę ”'),
(82642, 'https://ror.org/038q4zz19', 'no_lang_code', 1, 'https://ror.org/038q4zz19 Wanhua Chemical (China) äø‡åŽåŒ–å­¦'),
(82643, 'https://ror.org/010pn0509', 'no_lang_code', 1, 'https://ror.org/010pn0509 Research and Production Center "Fox and Co" ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный Центр "Š¤ŠžŠšŠ” Šø Ко"'),
(82644, 'https://ror.org/0299fsa36', 'en', 1, 'https://ror.org/0299fsa36 Korea Breast Cancer Foundation ķ•œźµ­ģœ ė°©ź±“ź°•ģž¬ė‹Ø'),
(82645, 'https://ror.org/05ret9323', 'en', 1, 'https://ror.org/05ret9323 Fondation Lucie et AndrƩ Chagnon Lucie and AndrƩ Chagnon Foundation'),
(82646, 'https://ror.org/05sr4vg14', 'es', 1, 'https://ror.org/05sr4vg14 Universidad La Salle'),
(82647, 'https://ror.org/0468vd838', 'en', 1, 'https://ror.org/0468vd838 Statistical Society of Australia'),
(82648, 'https://ror.org/041edny43', 'en', 1, 'https://ror.org/041edny43 Lianyungang Technical College čæžäŗ‘ęøÆčŒé™¢'),
(82649, 'https://ror.org/059pwer52', 'en', 1, 'https://ror.org/059pwer52 Chronic Liver Disease Foundation'),
(82650, 'https://ror.org/02ecaj844', 'no_lang_code', 1, 'https://ror.org/02ecaj844 Windtree Therapeutics (United States)'),
(82651, 'https://ror.org/056hzt889', 'en', 1, 'https://ror.org/056hzt889 Institut für Quantenoptik und Quanteninformation Institute for Quantum Optics and Quantum Information Innsbruck'),
(82652, 'https://ror.org/050tqnp89', 'no_lang_code', 1, 'https://ror.org/050tqnp89 Kaggle'),
(82653, 'https://ror.org/008b3br98', 'en', 1, 'https://ror.org/008b3br98 Basil Hetzel Institute'),
(82654, 'https://ror.org/04evq0v43', 'no_lang_code', 1, 'https://ror.org/04evq0v43 Aegerion Pharmaceuticals (United States)'),
(82655, 'https://ror.org/04fnb9f41', 'en', 1, 'https://ror.org/04fnb9f41 Sarcoma Alliance for Research through Collaboration'),
(82656, 'https://ror.org/005ex6728', 'de', 1, 'https://ror.org/005ex6728 Herz-Jesu Krankenhaus'),
(82657, 'https://ror.org/00jbpxw47', 'en', 1, 'https://ror.org/00jbpxw47 Guilin University ę”‚ęž—å­¦é™¢'),
(82658, 'https://ror.org/036egt138', 'en', 1, 'https://ror.org/036egt138 European Institute for Multidisciplinary Studies on Human Rights and Science - Knowmad Institut Europäisches Institut für Multidisziplinäre Studien zu Menschenrechten und Wissenschaften - Knowmad Institut Instituto Europeo de Estudios Multidisciplinarios sobre Derechos Humanos y Ciencias - Knowmad Institut'),
(82659, 'https://ror.org/02ghpjv23', 'no_lang_code', 1, 'https://ror.org/02ghpjv23 Cochrane'),
(82660, 'https://ror.org/05hhpdx12', 'en', 1, 'https://ror.org/05hhpdx12 Oxford Academic Health Science Network'),
(82661, 'https://ror.org/00w8vmf89', 'no_lang_code', 1, 'https://ror.org/00w8vmf89 Innoplexus'),
(82662, 'https://ror.org/01790dx02', 'en', 1, 'https://ror.org/01790dx02 Shanxi Provincial Cancer Hospital å±±č„æēœč‚æē˜¤åŒ»é™¢'),
(82663, 'https://ror.org/00k63dq23', 'en', 1, 'https://ror.org/00k63dq23 Meharry Medical College'),
(82664, 'https://ror.org/0027yp743', 'en', 1, 'https://ror.org/0027yp743 Okinawa Churashima Foundation ę²–ēø„ē¾Žć‚‰å³¶č²”å›£'),
(82665, 'https://ror.org/02ybsz607', 'es', 1, 'https://ror.org/02ybsz607 Hospital General Universitario de Alicante Doctor Balmis'),
(82666, 'https://ror.org/0494tsn97', 'no_lang_code', 1, 'https://ror.org/0494tsn97 Amneal (United States)'),
(82667, 'https://ror.org/02mw4qt74', 'en', 1, 'https://ror.org/02mw4qt74 Polymer Research Center'),
(82668, 'https://ror.org/000fxgx19', 'en', 1, 'https://ror.org/000fxgx19 SUNY Polytechnic Institute'),
(82669, 'https://ror.org/00dwsfp88', 'en', 1, 'https://ror.org/00dwsfp88 Tennessee Department of Education'),
(82670, 'https://ror.org/00q4ajz48', 'fr', 1, 'https://ror.org/00q4ajz48 Centre QuƩbƩcois de Recherche et de DƩveloppement de l''Aluminium'),
(82671, 'https://ror.org/04c8bjx39', 'en', 1, 'https://ror.org/04c8bjx39 Oxford Health NHS Foundation Trust'),
(82672, 'https://ror.org/03tmpzb72', 'en', 1, 'https://ror.org/03tmpzb72 State Library of Victoria'),
(82673, 'https://ror.org/04ym5ed21', 'pt', 1, 'https://ror.org/04ym5ed21 CĆ¢mara Municipal de Almada'),
(82674, 'https://ror.org/05tgz4m05', 'en', 1, 'https://ror.org/05tgz4m05 European Foundation for the Study of Diabetes'),
(82675, 'https://ror.org/03g2hz705', 'en', 1, 'https://ror.org/03g2hz705 Watson-Brown Foundation'),
(82676, 'https://ror.org/02fxnw554', 'no_lang_code', 1, 'https://ror.org/02fxnw554 Santeon (Netherlands)'),
(82677, 'https://ror.org/01mhgwt57', 'en', 1, 'https://ror.org/01mhgwt57 Eastern Connecticut State University'),
(82678, 'https://ror.org/0542et832', 'en', 1, 'https://ror.org/0542et832 British Horseracing Authority'),
(82679, 'https://ror.org/05mks7e07', 'en', 1, 'https://ror.org/05mks7e07 Alliance College-Ready Public Schools'),
(82680, 'https://ror.org/00d403277', 'no_lang_code', 1, 'https://ror.org/00d403277 Frontier Scientific (United States)');
INSERT INTO `rors` VALUES
(82681, 'https://ror.org/02tx5t327', 'nl', 1, 'https://ror.org/02tx5t327 Instituut Gak'),
(82682, 'https://ror.org/00b0j0379', 'en', 1, 'https://ror.org/00b0j0379 Center for Adoption Support and Education'),
(82683, 'https://ror.org/012sz4c50', 'en', 1, 'https://ror.org/012sz4c50 Fourth Affiliated Hospital of China Medical University äø­å›½åŒ»ē§‘å¤§å­¦é™„å±žē¬¬å››åŒ»é™¢'),
(82684, 'https://ror.org/03tfst120', 'en', 1, 'https://ror.org/03tfst120 Armenian National Institute'),
(82685, 'https://ror.org/00x20kz95', 'fr', 1, 'https://ror.org/00x20kz95 Association Laurette Fugain'),
(82686, 'https://ror.org/02xwe7x13', 'en', 1, 'https://ror.org/02xwe7x13 Resource Center for Parents and Children'),
(82687, 'https://ror.org/03cn4mv34', 'en', 1, 'https://ror.org/03cn4mv34 Threepenny Review'),
(82688, 'https://ror.org/02yfqyv95', 'en', 1, 'https://ror.org/02yfqyv95 Global Health Innovative Technology Fund'),
(82689, 'https://ror.org/01tj2ez11', 'no_lang_code', 1, 'https://ror.org/01tj2ez11 Clough (Australia)'),
(82690, 'https://ror.org/04cyhfr73', 'no_lang_code', 1, 'https://ror.org/04cyhfr73 Australian Centre for Advanced Computing and Communications (Australia)'),
(82691, 'https://ror.org/015kdfj59', 'en', 1, 'https://ror.org/015kdfj59 North China University of Science and Technology Affiliated Hospital åŽåŒ—ē†å·„å¤§å­¦é™„å±žåŒ»é™¢'),
(82692, 'https://ror.org/05nrm9e04', 'en', 1, 'https://ror.org/05nrm9e04 Oceanography Society'),
(82693, 'https://ror.org/01qcqnr53', 'en', 1, 'https://ror.org/01qcqnr53 Asian Pacific American Institute for Congressional Studies'),
(82694, 'https://ror.org/02e1waz46', 'no_lang_code', 1, 'https://ror.org/02e1waz46 Allied Insurance (United States)'),
(82695, 'https://ror.org/046z4vn34', 'no_lang_code', 1, 'https://ror.org/046z4vn34 Fios Genomics (United Kingdom)'),
(82696, 'https://ror.org/02bkvsd42', 'en', 1, 'https://ror.org/02bkvsd42 Moscow State Institute of Music named after A.G. Schnittke Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(82697, 'https://ror.org/05hffq650', 'en', 1, 'https://ror.org/05hffq650 Massachusetts Lions Eye Research Fund'),
(82698, 'https://ror.org/04jvemc39', 'en', 1, 'https://ror.org/04jvemc39 Max Planck Institute for Radio Astronomy Max-Planck-Institut für Radioastronomie'),
(82699, 'https://ror.org/04eb7gy32', 'en', 1, 'https://ror.org/04eb7gy32 Lewis and Clark Community College'),
(82700, 'https://ror.org/03c2jp606', 'en', 1, 'https://ror.org/03c2jp606 Academia Mexicana de Ciencias Mexican Academy of Sciences'),
(82701, 'https://ror.org/033z2gt89', 'fr', 1, 'https://ror.org/033z2gt89 Association FranƧaise de PƩdiatrie Ambulatoire'),
(82702, 'https://ror.org/00vqczs30', 'en', 1, 'https://ror.org/00vqczs30 Community Relations Council'),
(82703, 'https://ror.org/018kpa439', 'nl', 1, 'https://ror.org/018kpa439 Innovatiefonds Zorgverzekeraars'),
(82704, 'https://ror.org/01hm85r97', 'en', 1, 'https://ror.org/01hm85r97 Chorley and South Ribble Hospital'),
(82705, 'https://ror.org/02jfpwg19', 'en', 1, 'https://ror.org/02jfpwg19 Cardea Services'),
(82706, 'https://ror.org/022bt2d08', 'en', 1, 'https://ror.org/022bt2d08 Energy Foundation'),
(82707, 'https://ror.org/03f13ma83', 'en', 1, 'https://ror.org/03f13ma83 Finnish Dental Society Apollonia Suomen HammaslƤƤkƤriseura Apollonia'),
(82708, 'https://ror.org/03v4j0e89', 'en', 1, 'https://ror.org/03v4j0e89 Dublin Dental University Hospital'),
(82709, 'https://ror.org/02nkp4593', 'en', 1, 'https://ror.org/02nkp4593 JPS Health Network'),
(82710, 'https://ror.org/00c2fes21', 'en', 1, 'https://ror.org/00c2fes21 Lighthouse Academies'),
(82711, 'https://ror.org/04b4eps50', 'en', 1, 'https://ror.org/04b4eps50 Silicon Valley Education Foundation'),
(82712, 'https://ror.org/033ypzd50', 'no_lang_code', 1, 'https://ror.org/033ypzd50 Medical & Biological Laboratories (Japan)'),
(82713, 'https://ror.org/010r6xh18', 'en', 1, 'https://ror.org/010r6xh18 Churchill School and Center'),
(82714, 'https://ror.org/01mgpsx86', 'en', 1, 'https://ror.org/01mgpsx86 SouthCoast Health'),
(82715, 'https://ror.org/04r8tsy16', 'en', 1, 'https://ror.org/04r8tsy16 National Museum of Nature and Science å›½ē«‹ē§‘å­¦åšē‰©é¤Ø'),
(82716, 'https://ror.org/05wtegv53', 'en', 1, 'https://ror.org/05wtegv53 Auckland Medical Research Foundation'),
(82717, 'https://ror.org/04p6zfy94', 'en', 1, 'https://ror.org/04p6zfy94 Northeast-Midwest Institute'),
(82718, 'https://ror.org/03vzats23', 'en', 1, 'https://ror.org/03vzats23 Jaap Schouten Foundation'),
(82719, 'https://ror.org/04fgrzc24', 'en', 1, 'https://ror.org/04fgrzc24 Council for At-Risk Academics'),
(82720, 'https://ror.org/058mdpy54', 'en', 1, 'https://ror.org/058mdpy54 Conchologists of America'),
(82721, 'https://ror.org/05ag50972', 'en', 1, 'https://ror.org/05ag50972 Dowager Countess Eleanor Peel Trust'),
(82722, 'https://ror.org/036q92x95', 'no_lang_code', 1, 'https://ror.org/036q92x95 Shigakkan University 至学館大学'),
(82723, 'https://ror.org/02kj8ch84', 'no_lang_code', 1, 'https://ror.org/02kj8ch84 Maeumsarang Hospital ė§ˆģŒģ‚¬ėž‘ė³‘ģ›'),
(82724, 'https://ror.org/05t3r3e66', 'pt', 1, 'https://ror.org/05t3r3e66 Faculdade de Pato Branco'),
(82725, 'https://ror.org/002hk8a14', 'en', 1, 'https://ror.org/002hk8a14 Samuel Neaman Institute for National Policy Research'),
(82726, 'https://ror.org/02fn4qf13', 'en', 1, 'https://ror.org/02fn4qf13 Benedictine College'),
(82727, 'https://ror.org/00xpnyt30', 'fr', 1, 'https://ror.org/00xpnyt30 Institut National des Recherches Agricoles du BƩnin'),
(82728, 'https://ror.org/05x2f1m38', 'en', 1, 'https://ror.org/05x2f1m38 East China Jiaotong University åŽäøœäŗ¤é€šå¤§å­¦'),
(82729, 'https://ror.org/02zxd7j32', 'da', 1, 'https://ror.org/02zxd7j32 Fonden af 17-12-1981'),
(82730, 'https://ror.org/02xr0t522', 'it', 1, 'https://ror.org/02xr0t522 Associazione Italiana di Tecnologia Meccanica'),
(82731, 'https://ror.org/052btbe32', 'en', 1, 'https://ror.org/052btbe32 Canadian Society for the History of Medicine SociĆ©tĆ© Canadienne d’Histoire de la MĆ©decine'),
(82732, 'https://ror.org/00a5t5d16', 'en', 1, 'https://ror.org/00a5t5d16 Senghor University UniversitĆ© Senghor d''Alexandrie Ų¬Ų§Ł…Ų¹Ų© Ų³Ł†Ų¬ŁˆŲ±'),
(82733, 'https://ror.org/028j6em17', 'en', 1, 'https://ror.org/028j6em17 Royal Economic Society'),
(82734, 'https://ror.org/01agsw646', 'no_lang_code', 1, 'https://ror.org/01agsw646 H&R Block (United States)'),
(82735, 'https://ror.org/04grds989', 'no_lang_code', 1, 'https://ror.org/04grds989 AngioDynamics (United States)'),
(82736, 'https://ror.org/02rkks755', 'ca', 1, 'https://ror.org/02rkks755 i2CAT'),
(82737, 'https://ror.org/01pdwm065', 'it', 1, 'https://ror.org/01pdwm065 Conservatorio di Musica "Luisa D''Annunzio"'),
(82738, 'https://ror.org/02qst6p72', 'en', 1, 'https://ror.org/02qst6p72 Japan Chemical Industry Association ę—„ęœ¬åŒ–å­¦å·„ę„­å”ä¼š'),
(82739, 'https://ror.org/015152t55', 'de', 1, 'https://ror.org/015152t55 Werner Otto Stiftung'),
(82740, 'https://ror.org/05ahavf04', 'en', 1, 'https://ror.org/05ahavf04 GHR Foundation'),
(82741, 'https://ror.org/04jme7072', 'en', 1, 'https://ror.org/04jme7072 CancerFree KIDS'),
(82742, 'https://ror.org/0219dvt70', 'no_lang_code', 1, 'https://ror.org/0219dvt70 Specifica (United States)'),
(82743, 'https://ror.org/046c44v34', 'en', 1, 'https://ror.org/046c44v34 Biotechnology Innovation Organization'),
(82744, 'https://ror.org/00cdy6v14', 'en', 1, 'https://ror.org/00cdy6v14 Honolulu University'),
(82745, 'https://ror.org/05e9bbe04', 'no_lang_code', 1, 'https://ror.org/05e9bbe04 GEI Consultants'),
(82746, 'https://ror.org/02vekd613', 'no_lang_code', 1, 'https://ror.org/02vekd613 OAI Consulting (United States)'),
(82747, 'https://ror.org/025ck6r46', 'en', 1, 'https://ror.org/025ck6r46 Melanoma Research Alliance'),
(82748, 'https://ror.org/01b8dqz05', 'no_lang_code', 1, 'https://ror.org/01b8dqz05 Bellerophon Therapeutics (United States)'),
(82749, 'https://ror.org/00z3yke57', 'en', 1, 'https://ror.org/00z3yke57 Chinese Academy of Engineering 中国巄程院'),
(82750, 'https://ror.org/0415v5370', 'en', 1, 'https://ror.org/0415v5370 Child & Family Service'),
(82751, 'https://ror.org/00s3e5069', 'en', 1, 'https://ror.org/00s3e5069 Lahore General Hospital Ł„Ų§ŪŁˆŲ± جنرل ہسپتال'),
(82752, 'https://ror.org/00jn6x547', 'en', 1, 'https://ror.org/00jn6x547 Vietnam Institute for Advanced Study in Mathematics Viện nghiĆŖn cứu cao cįŗ„p về toĆ”n'),
(82753, 'https://ror.org/00rbcsd48', 'no_lang_code', 1, 'https://ror.org/00rbcsd48 Intra Cellular Therapies (United States)'),
(82754, 'https://ror.org/022vq4j84', 'en', 1, 'https://ror.org/022vq4j84 West Georgia Regional Library'),
(82755, 'https://ror.org/010t7zx27', 'en', 1, 'https://ror.org/010t7zx27 Chartered Institution of Wastes Management'),
(82756, 'https://ror.org/04pr7ha69', 'en', 1, 'https://ror.org/04pr7ha69 The Sanskrit College and University'),
(82757, 'https://ror.org/051xvcg79', 'en', 1, 'https://ror.org/051xvcg79 Danish Maritime Fund Den Danske Maritime Fond'),
(82758, 'https://ror.org/05rh56x14', 'en', 1, 'https://ror.org/05rh56x14 Bread & Roses Community Fund'),
(82759, 'https://ror.org/01z4pqw17', 'en', 1, 'https://ror.org/01z4pqw17 Stone Age Institute'),
(82760, 'https://ror.org/04jw1eg47', 'en', 1, 'https://ror.org/04jw1eg47 National Center for Victims of Crime'),
(82761, 'https://ror.org/04gffpy86', 'nl', 1, 'https://ror.org/04gffpy86 Stichting ALS Nederland'),
(82762, 'https://ror.org/00bekwh77', 'en', 1, 'https://ror.org/00bekwh77 StemCyte'),
(82763, 'https://ror.org/01rxhds71', 'no_lang_code', 1, 'https://ror.org/01rxhds71 IQuity (United States)'),
(82764, 'https://ror.org/0089swk47', 'no_lang_code', 1, 'https://ror.org/0089swk47 Canfor (Canada)'),
(82765, 'https://ror.org/00d503m77', 'en', 1, 'https://ror.org/00d503m77 Lorentz Center'),
(82766, 'https://ror.org/03t5h1366', 'nl', 1, 'https://ror.org/03t5h1366 Freek en Hella de Jonge Stichting'),
(82767, 'https://ror.org/00t3ez756', 'de', 1, 'https://ror.org/00t3ez756 Deutsche Gesellschaft für Traditionelle Chinesische Medizin'),
(82768, 'https://ror.org/02f99cq72', 'en', 1, 'https://ror.org/02f99cq72 Ohio Lions Eye Research Foundation'),
(82769, 'https://ror.org/04ch2g225', 'en', 1, 'https://ror.org/04ch2g225 Dutch Diabetes Research Foundation'),
(82770, 'https://ror.org/05s31v772', 'en', 1, 'https://ror.org/05s31v772 Startup Foundation'),
(82771, 'https://ror.org/05mt01203', 'en', 1, 'https://ror.org/05mt01203 Japanese Foundation for Research and Promotion of Endoscopy å…¬ē›Šč²”å›£ę³•äŗŗ å†…č¦–é”åŒ»å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(82772, 'https://ror.org/05jzwe545', 'no_lang_code', 1, 'https://ror.org/05jzwe545 AgStar Financial Services, ACA (United States)'),
(82773, 'https://ror.org/03kr5gd43', 'en', 1, 'https://ror.org/03kr5gd43 Center for Public Policy Alternatives'),
(82774, 'https://ror.org/023hf9v24', 'en', 1, 'https://ror.org/023hf9v24 Daphne Jackson Trust'),
(82775, 'https://ror.org/017pw6807', 'no_lang_code', 1, 'https://ror.org/017pw6807 Air France KLM (France)'),
(82776, 'https://ror.org/01fq70c03', 'en', 1, 'https://ror.org/01fq70c03 Foundation for Ichthyosis and Related Skin Types'),
(82777, 'https://ror.org/00xzyx493', 'en', 1, 'https://ror.org/00xzyx493 Ethics and Excellence in Journalism Foundation'),
(82778, 'https://ror.org/04yyy0z32', 'pl', 1, 'https://ror.org/04yyy0z32 Międzyleski Szpital Specjalistyczny w Warszawie'),
(82779, 'https://ror.org/03hgmmt92', 'en', 1, 'https://ror.org/03hgmmt92 Michael & Susan Dell Foundation'),
(82780, 'https://ror.org/02c0fa093', 'en', 1, 'https://ror.org/02c0fa093 Hyogo Science and Technology Association å…¬ē›Šč²”å›£ę³•äŗŗ ć²ć‚‡ć†ć”ē§‘å­¦ęŠ€č”“å”ä¼š'),
(82781, 'https://ror.org/04dvxx266', 'en', 1, 'https://ror.org/04dvxx266 Amadeu Antonio Foundation'),
(82782, 'https://ror.org/04csczr47', 'en', 1, 'https://ror.org/04csczr47 Sarnoff Cardiovascular Research Foundation'),
(82783, 'https://ror.org/04cmvh994', 'en', 1, 'https://ror.org/04cmvh994 Oregon Watershed Enhancement Board'),
(82784, 'https://ror.org/03dbb0t71', 'en', 1, 'https://ror.org/03dbb0t71 Anderson County Library System'),
(82785, 'https://ror.org/048dn1a62', 'en', 1, 'https://ror.org/048dn1a62 University of Computer Engineering and Telecommunications'),
(82786, 'https://ror.org/053ejc545', 'en', 1, 'https://ror.org/053ejc545 Douglas Foundation'),
(82787, 'https://ror.org/04x2nj883', 'pt', 1, 'https://ror.org/04x2nj883 Instituto do Coração'),
(82788, 'https://ror.org/05jsjqy14', 'en', 1, 'https://ror.org/05jsjqy14 Quebec Network for Research on Aging RƩseau QuƩbƩcois de Recherche sur le Vieillissement'),
(82789, 'https://ror.org/03rxyzb74', 'en', 1, 'https://ror.org/03rxyzb74 Institute for Democracy and Mediation'),
(82790, 'https://ror.org/02pkrn365', 'en', 1, 'https://ror.org/02pkrn365 University College Hospital at Westmoreland Street'),
(82791, 'https://ror.org/01wdtjg37', 'en', 1, 'https://ror.org/01wdtjg37 Lepage Research Institute'),
(82792, 'https://ror.org/012rp6f89', 'en', 1, 'https://ror.org/012rp6f89 Leuven Institute for Fertility and Embryology Leuvens Instituut voor Fertiliteit en Embryologie'),
(82793, 'https://ror.org/02sybec58', 'no', 1, 'https://ror.org/02sybec58 Unifor'),
(82794, 'https://ror.org/05jtnfm89', 'en', 1, 'https://ror.org/05jtnfm89 Newmarket Equine Hospital'),
(82795, 'https://ror.org/05ex5rg26', 'no_lang_code', 1, 'https://ror.org/05ex5rg26 Bang & Olufsen (Denmark)'),
(82796, 'https://ror.org/04qj1xq90', 'en', 1, 'https://ror.org/04qj1xq90 Canadian Animal Health Institute Institut Canadien de la SantƩ Animale'),
(82797, 'https://ror.org/058q8kz50', 'no_lang_code', 1, 'https://ror.org/058q8kz50 CTI Engineering (Japan) ę Ŗå¼ä¼šē¤¾å»ŗčØ­ęŠ€č”“ē ”ē©¶ę‰€'),
(82798, 'https://ror.org/02wpjhe84', 'en', 1, 'https://ror.org/02wpjhe84 Maryland Stem Cell Research Fund'),
(82799, 'https://ror.org/0433fd238', 'en', 1, 'https://ror.org/0433fd238 Swedish Society for Medical Research'),
(82800, 'https://ror.org/03aebk093', 'en', 1, 'https://ror.org/03aebk093 Danang Architecture University ĐẔi hį»c Kiįŗæn trĆŗc ĐƠ Nįŗµng'),
(82801, 'https://ror.org/03c11g875', 'en', 1, 'https://ror.org/03c11g875 Papua New Guinea University of Natural Resources and Environment'),
(82802, 'https://ror.org/0307fa790', 'en', 1, 'https://ror.org/0307fa790 Egyptian Society of Cardiology'),
(82803, 'https://ror.org/025kprq56', 'en', 1, 'https://ror.org/025kprq56 Harold Hyam Wingate Foundation'),
(82804, 'https://ror.org/02h4asg26', 'en', 1, 'https://ror.org/02h4asg26 International Copper Association'),
(82805, 'https://ror.org/01y9f7d13', 'no_lang_code', 1, 'https://ror.org/01y9f7d13 Council of Grain Grower Organisations (Australia)'),
(82806, 'https://ror.org/04ht6yt06', 'en', 1, 'https://ror.org/04ht6yt06 J. Armand Bombardier Foundation'),
(82807, 'https://ror.org/03sfv7b53', 'en', 1, 'https://ror.org/03sfv7b53 Mt. Ascutney Hospital and Health Center'),
(82808, 'https://ror.org/00ysrwn89', 'en', 1, 'https://ror.org/00ysrwn89 Horace Smith Fund'),
(82809, 'https://ror.org/02rkwqj17', 'en', 1, 'https://ror.org/02rkwqj17 Flora Family Foundation'),
(82810, 'https://ror.org/01kbsct23', 'no_lang_code', 1, 'https://ror.org/01kbsct23 B&W Tek (United States)'),
(82811, 'https://ror.org/002wx1m18', 'en', 1, 'https://ror.org/002wx1m18 Centre of Excellence for Biosensors, Instrumentation and Process Control'),
(82812, 'https://ror.org/038n85y16', 'no_lang_code', 1, 'https://ror.org/038n85y16 Pharmadrome (United Kingdom)'),
(82813, 'https://ror.org/05crnp253', 'nl', 1, 'https://ror.org/05crnp253 JKF Kinderfonds'),
(82814, 'https://ror.org/02gmbxa89', 'no_lang_code', 1, 'https://ror.org/02gmbxa89 ASE Holdings (United States)'),
(82815, 'https://ror.org/02jaraq65', 'en', 1, 'https://ror.org/02jaraq65 Northwest Samar State University'),
(82816, 'https://ror.org/05nfe2x50', 'en', 1, 'https://ror.org/05nfe2x50 Canadian Child Health Clinician Scientist Program'),
(82817, 'https://ror.org/03zcpvf19', 'en', 1, 'https://ror.org/03zcpvf19 University Hospitals of the Ruhr-University of Bochum UniversitƤtsklinikum der Ruhr-UniversitƤt Bochum'),
(82818, 'https://ror.org/01c8pqm17', 'no_lang_code', 1, 'https://ror.org/01c8pqm17 Tingvoll Kommune'),
(82819, 'https://ror.org/00458qn27', 'en', 1, 'https://ror.org/00458qn27 National Institute of Policy and Strategic Studies'),
(82820, 'https://ror.org/0451xdy64', 'en', 1, 'https://ror.org/0451xdy64 Graduate University of Advanced Technology دانؓگاه ŲŖŲ­ŲµŪŒŁ„Ų§ŲŖ ŲŖŚ©Ł…ŪŒŁ„ŪŒ ŲµŁ†Ų¹ŲŖŪŒ و ŁŁ†Ų§ŁˆŲ±ŪŒ Ł¾ŪŒŲ“Ų±ŁŲŖŁ‡'),
(82821, 'https://ror.org/00hz58r10', 'no_lang_code', 1, 'https://ror.org/00hz58r10 Duchossois Group (United States)'),
(82822, 'https://ror.org/02bqs1209', 'es', 1, 'https://ror.org/02bqs1209 Fundación Seimc-Gesida'),
(82823, 'https://ror.org/00bexh340', 'en', 1, 'https://ror.org/00bexh340 National Cowboy & Western Heritage Museum'),
(82824, 'https://ror.org/050q60w23', 'en', 1, 'https://ror.org/050q60w23 Povolzhskiy State University of Telecommunications and Informatics'),
(82825, 'https://ror.org/05qgpp431', 'no_lang_code', 1, 'https://ror.org/05qgpp431 Alcen (France)'),
(82826, 'https://ror.org/047fx6t13', 'en', 1, 'https://ror.org/047fx6t13 Smell & Taste Treatment and Research Foundation'),
(82827, 'https://ror.org/03k9ter64', 'en', 1, 'https://ror.org/03k9ter64 National Fragile X Foundation'),
(82828, 'https://ror.org/01v4ej106', 'en', 1, 'https://ror.org/01v4ej106 Network for Business Sustainability RĆ©seau Entreprise et DĆ©veloppement Durable​'),
(82829, 'https://ror.org/003gkfx86', 'en', 1, 'https://ror.org/003gkfx86 North Denmark Region Region Nordjylland'),
(82830, 'https://ror.org/0195fnr59', 'no_lang_code', 1, 'https://ror.org/0195fnr59 Rila Solutions (Bulgaria) Рила Š”Š¾Š»ŃŽŃˆŃŠŠ½Ń'),
(82831, 'https://ror.org/052a29317', 'en', 1, 'https://ror.org/052a29317 Maine Cancer Foundation'),
(82832, 'https://ror.org/01gd1jq14', 'no_lang_code', 1, 'https://ror.org/01gd1jq14 Neurim Pharmaceuticals (Israel)'),
(82833, 'https://ror.org/04khcv915', 'fr', 1, 'https://ror.org/04khcv915 Association Philippe Jabre'),
(82834, 'https://ror.org/00fxtkg63', 'en', 1, 'https://ror.org/00fxtkg63 Washington Drug and Alcohol Commission'),
(82835, 'https://ror.org/02zgetr42', 'hu', 1, 'https://ror.org/02zgetr42 Egri HittudomĆ”nyi Főiskola'),
(82836, 'https://ror.org/03hxvmc90', 'en', 1, 'https://ror.org/03hxvmc90 Evolving Earth Foundation'),
(82837, 'https://ror.org/03hdrgy42', 'en', 1, 'https://ror.org/03hdrgy42 Thomas Young Centre'),
(82838, 'https://ror.org/002eht127', 'en', 1, 'https://ror.org/002eht127 A. Lindsay & Olive B. O''Connor Foundation'),
(82839, 'https://ror.org/03vp1z202', 'en', 1, 'https://ror.org/03vp1z202 Graham and Carolyn Holloway Family Foundation'),
(82840, 'https://ror.org/02hgc7r17', 'no_lang_code', 1, 'https://ror.org/02hgc7r17 Allen-Vanguard (Canada)'),
(82841, 'https://ror.org/0410v2r25', 'en', 1, 'https://ror.org/0410v2r25 Institute for Research, Education and Training in Addictions'),
(82842, 'https://ror.org/0060jg679', 'no_lang_code', 1, 'https://ror.org/0060jg679 CyberAgent (Japan)'),
(82843, 'https://ror.org/03389ap47', 'en', 1, 'https://ror.org/03389ap47 California Academy of Family Physicians'),
(82844, 'https://ror.org/02nwcn776', 'en', 1, 'https://ror.org/02nwcn776 British Burn Association'),
(82845, 'https://ror.org/025z7mw11', 'en', 1, 'https://ror.org/025z7mw11 International Society on Aging and Disease'),
(82846, 'https://ror.org/00f11af73', 'en', 1, 'https://ror.org/00f11af73 Politecnica Salesiana University Universidad PolitƩcnica Salesiana'),
(82847, 'https://ror.org/03h7xwt96', 'no_lang_code', 1, 'https://ror.org/03h7xwt96 Lenterra (United States)'),
(82848, 'https://ror.org/00z1y3s94', 'no_lang_code', 1, 'https://ror.org/00z1y3s94 Nanshan Group (China) å—å±±ęŽ§č‚”'),
(82849, 'https://ror.org/05f1ftz34', 'en', 1, 'https://ror.org/05f1ftz34 Sandler Foundation'),
(82850, 'https://ror.org/03bqf3w07', 'en', 1, 'https://ror.org/03bqf3w07 Batumi State Maritime Academy įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒįƒ–įƒ¦įƒ•įƒįƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(82851, 'https://ror.org/049b4n024', 'en', 1, 'https://ror.org/049b4n024 The Little Foundation'),
(82852, 'https://ror.org/03wax9c83', 'en', 1, 'https://ror.org/03wax9c83 Weil Foot & Ankle Institute'),
(82853, 'https://ror.org/01kf5tm19', 'no_lang_code', 1, 'https://ror.org/01kf5tm19 Sanovel (Turkey)'),
(82854, 'https://ror.org/0221f0x36', 'no_lang_code', 1, 'https://ror.org/0221f0x36 Nanōmix (United States)'),
(82855, 'https://ror.org/05nsmzt44', 'en', 1, 'https://ror.org/05nsmzt44 Ontario Federation of Anglers and Hunters'),
(82856, 'https://ror.org/05wrsmg43', 'fr', 1, 'https://ror.org/05wrsmg43 Retina France'),
(82857, 'https://ror.org/041n8nd21', 'en', 1, 'https://ror.org/041n8nd21 National Hospice and Palliative Care Organization'),
(82858, 'https://ror.org/02xfg4z45', 'en', 1, 'https://ror.org/02xfg4z45 Association of Community Health Nursing Educators'),
(82859, 'https://ror.org/00w3rj542', 'en', 1, 'https://ror.org/00w3rj542 California Community Foundation'),
(82860, 'https://ror.org/0370v7d46', 'en', 1, 'https://ror.org/0370v7d46 National Quemoy University åœ‹ē«‹é‡‘é–€å¤§å­ø'),
(82861, 'https://ror.org/019pxzh98', 'fi', 1, 'https://ror.org/019pxzh98 Maa- ja Vesitekniikan Tuki Ry'),
(82862, 'https://ror.org/00h7vg856', 'en', 1, 'https://ror.org/00h7vg856 Colorado Springs Neurological Associates'),
(82863, 'https://ror.org/0122fj965', 'en', 1, 'https://ror.org/0122fj965 Wenzhou Vocational College of Science and Technology'),
(82864, 'https://ror.org/03petxm16', 'en', 1, 'https://ror.org/03petxm16 The Central Hospital of Shaoyang é‚µé˜³åø‚äø­åæƒåŒ»é™¢'),
(82865, 'https://ror.org/00jn6g049', 'en', 1, 'https://ror.org/00jn6g049 Japan Institute of the Moving Image ę—„ęœ¬ę˜ ē”»å¤§å­¦'),
(82866, 'https://ror.org/02fppqh55', 'en', 1, 'https://ror.org/02fppqh55 Association canadienne des physiciens et physiciennes Canadian Association of Physicists'),
(82867, 'https://ror.org/05ff35k33', 'en', 1, 'https://ror.org/05ff35k33 Saskatchewan Pulse Growers'),
(82868, 'https://ror.org/02egtkj64', 'en', 1, 'https://ror.org/02egtkj64 Palmerston North City Council'),
(82869, 'https://ror.org/00qb92h32', 'en', 1, 'https://ror.org/00qb92h32 Fund for Astrophysical Research'),
(82870, 'https://ror.org/04wy7hp55', 'en', 1, 'https://ror.org/04wy7hp55 George F. and Sybil H. Fuller Foundation'),
(82871, 'https://ror.org/03h7y8q20', 'en', 1, 'https://ror.org/03h7y8q20 NoVo Foundation'),
(82872, 'https://ror.org/0373pbp25', 'en', 1, 'https://ror.org/0373pbp25 Covenant HealthCare'),
(82873, 'https://ror.org/03r4jm593', 'en', 1, 'https://ror.org/03r4jm593 Stephen Lewis Foundation'),
(82874, 'https://ror.org/03c8jqn92', 'en', 1, 'https://ror.org/03c8jqn92 Shaanxi Polytechnic Institute 陕脿理巄学院'),
(82875, 'https://ror.org/03qgvya72', 'en', 1, 'https://ror.org/03qgvya72 Wagner Free Institute of Science'),
(82876, 'https://ror.org/0252btq49', 'en', 1, 'https://ror.org/0252btq49 Dutch CAA Foundation'),
(82877, 'https://ror.org/04gnyy212', 'en', 1, 'https://ror.org/04gnyy212 Tellus Institute'),
(82878, 'https://ror.org/02dfhev96', 'en', 1, 'https://ror.org/02dfhev96 Myalgic Encephalomyelitis Research Group'),
(82879, 'https://ror.org/01p0kh042', 'en', 1, 'https://ror.org/01p0kh042 Age Endeavour Fellowship'),
(82880, 'https://ror.org/02ws33e43', 'en', 1, 'https://ror.org/02ws33e43 Kanazawa Institute of Technology 金沢巄愭大学'),
(82881, 'https://ror.org/0101rsn15', 'en', 1, 'https://ror.org/0101rsn15 Peanut Institute'),
(82882, 'https://ror.org/040tqsb23', 'en', 1, 'https://ror.org/040tqsb23 Hospital for Tropical Diseases'),
(82883, 'https://ror.org/03yeht902', 'en', 1, 'https://ror.org/03yeht902 Ministerstvo FinanciĆ­ Slovenskej Republiky Ministry of Finance of the Slovak Republic'),
(82884, 'https://ror.org/02b9jjd80', 'en', 1, 'https://ror.org/02b9jjd80 Opportunity Alliance'),
(82885, 'https://ror.org/0508kjn56', 'en', 1, 'https://ror.org/0508kjn56 Society for Archaeological Sciences'),
(82886, 'https://ror.org/0489bj931', 'no', 1, 'https://ror.org/0489bj931 Lyngdal kommune'),
(82887, 'https://ror.org/05b1nw684', 'en', 1, 'https://ror.org/05b1nw684 Burdett Trust for Nursing'),
(82888, 'https://ror.org/019zjrs07', 'en', 1, 'https://ror.org/019zjrs07 Tampa Bay Estuary Program'),
(82889, 'https://ror.org/04qc5fv62', 'en', 1, 'https://ror.org/04qc5fv62 American International Medical University'),
(82890, 'https://ror.org/03s04p689', 'fr', 1, 'https://ror.org/03s04p689 Association Neuro-Bretagne'),
(82891, 'https://ror.org/015qzxt65', 'en', 1, 'https://ror.org/015qzxt65 British Exploring Society'),
(82892, 'https://ror.org/0096a1193', 'no_lang_code', 1, 'https://ror.org/0096a1193 Mirada Medical (United Kingdom)'),
(82893, 'https://ror.org/011pbwt24', 'no_lang_code', 1, 'https://ror.org/011pbwt24 Eileen Fisher (United States)'),
(82894, 'https://ror.org/05hj3gh79', 'no_lang_code', 1, 'https://ror.org/05hj3gh79 Maruho (Japan) ćƒžćƒ«ćƒ›ę Ŗå¼ä¼šē¤¾'),
(82895, 'https://ror.org/05wsx4f18', 'en', 1, 'https://ror.org/05wsx4f18 Supergrid Institute'),
(82896, 'https://ror.org/00vnaf984', 'en', 1, 'https://ror.org/00vnaf984 Sumy National Agrarian University Думский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Думський Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(82897, 'https://ror.org/056htkj86', 'en', 1, 'https://ror.org/056htkj86 Health Foundation for Western & Central New York'),
(82898, 'https://ror.org/047hkmt09', 'en', 1, 'https://ror.org/047hkmt09 Manufacturing Academy of Denmark'),
(82899, 'https://ror.org/01bc2nz61', 'en', 1, 'https://ror.org/01bc2nz61 Jaseng Medical Foundation ģžģƒģ˜ė£Œģž¬ė‹Ø'),
(82900, 'https://ror.org/01vzaca42', 'pt', 1, 'https://ror.org/01vzaca42 Sociedade Brasileira de Retina e VĆ­treo'),
(82901, 'https://ror.org/04wvm3361', 'en', 1, 'https://ror.org/04wvm3361 Ed Evans Foundation'),
(82902, 'https://ror.org/038ws8740', 'no_lang_code', 1, 'https://ror.org/038ws8740 EnergyNest (Norway)'),
(82903, 'https://ror.org/04dn5pv56', 'en', 1, 'https://ror.org/04dn5pv56 New Venture Fund'),
(82904, 'https://ror.org/016pfkh80', 'en', 1, 'https://ror.org/016pfkh80 Marine Research Foundation'),
(82905, 'https://ror.org/05jzhr591', 'en', 1, 'https://ror.org/05jzhr591 Medical Oncology Group of Australia'),
(82906, 'https://ror.org/00a991t33', 'no_lang_code', 1, 'https://ror.org/00a991t33 Truphatek (Israel)'),
(82907, 'https://ror.org/00hhtwx28', 'en', 1, 'https://ror.org/00hhtwx28 Npistanbul Beyin Hastanesi Npistanbul Brain Hospital'),
(82908, 'https://ror.org/0531xpr36', 'no_lang_code', 1, 'https://ror.org/0531xpr36 Computas (Norway)'),
(82909, 'https://ror.org/042j8gb36', 'en', 1, 'https://ror.org/042j8gb36 National Czech and Slovak Museum & Library'),
(82910, 'https://ror.org/02jecxg34', 'en', 1, 'https://ror.org/02jecxg34 Eye Center'),
(82911, 'https://ror.org/00xnn6j73', 'no_lang_code', 1, 'https://ror.org/00xnn6j73 Nikkiso (Japan)'),
(82912, 'https://ror.org/00ryx8j34', 'pt', 1, 'https://ror.org/00ryx8j34 Associação Brasileira de Avaliação de Impacto'),
(82913, 'https://ror.org/0043mh554', 'en', 1, 'https://ror.org/0043mh554 John S. Latsis Public Benefit Foundation'),
(82914, 'https://ror.org/01p8d4t94', 'en', 1, 'https://ror.org/01p8d4t94 Union University'),
(82915, 'https://ror.org/04vaqfq82', 'es', 1, 'https://ror.org/04vaqfq82 Asociación Española de Psicología Conductual'),
(82916, 'https://ror.org/016b0fq51', 'en', 1, 'https://ror.org/016b0fq51 Jane Bradley Pettit Foundation'),
(82917, 'https://ror.org/00cfgrb31', 'no_lang_code', 1, 'https://ror.org/00cfgrb31 Cermavein (France)'),
(82918, 'https://ror.org/03pm0a810', 'en', 1, 'https://ror.org/03pm0a810 National Institute for Testing and Evaluation ×ž×Ø×›×– ארצי ×œ×‘×—×™× ×•×Ŗ ×•×œ×”×¢×Ø×›×”'),
(82919, 'https://ror.org/0565bwx98', 'no_lang_code', 1, 'https://ror.org/0565bwx98 Nion (United States)'),
(82920, 'https://ror.org/00951b249', 'en', 1, 'https://ror.org/00951b249 Max and Minnie Tomerlin Voelcker Fund'),
(82921, 'https://ror.org/02twggb97', 'en', 1, 'https://ror.org/02twggb97 Amol University of Special Modern Technologies دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ł…ŁˆŁ„ آمل'),
(82922, 'https://ror.org/03t8gwj81', 'en', 1, 'https://ror.org/03t8gwj81 JECS Trust'),
(82923, 'https://ror.org/03fp5k922', 'en', 1, 'https://ror.org/03fp5k922 Vincent Wildlife Trust'),
(82924, 'https://ror.org/01c5ysa46', 'en', 1, 'https://ror.org/01c5ysa46 Montessori Education Institute of the Pacific Northwest'),
(82925, 'https://ror.org/029d45z11', 'es', 1, 'https://ror.org/029d45z11 ClĆ­nica Somer'),
(82926, 'https://ror.org/056qngw23', 'en', 1, 'https://ror.org/056qngw23 Imagination Institute'),
(82927, 'https://ror.org/017xkrk82', 'en', 1, 'https://ror.org/017xkrk82 Colorado Association of School Executives'),
(82928, 'https://ror.org/01t6qw336', 'en', 1, 'https://ror.org/01t6qw336 William V. S. Tubman University'),
(82929, 'https://ror.org/016e4fb86', 'pt', 1, 'https://ror.org/016e4fb86 Hospital Socor'),
(82930, 'https://ror.org/00f7y2s26', 'en', 1, 'https://ror.org/00f7y2s26 Lung Cancer Research Foundation'),
(82931, 'https://ror.org/00k0a6x92', 'en', 1, 'https://ror.org/00k0a6x92 Craig H Neilsen Foundation'),
(82932, 'https://ror.org/05sc3sf14', 'en', 1, 'https://ror.org/05sc3sf14 Institut für Grenzgebiete der Psychologie und Psychohygiene Institute for Frontier Areas of Psychology and Mental Health'),
(82933, 'https://ror.org/04he42b87', 'es', 1, 'https://ror.org/04he42b87 Centro Tecnológico de la Industria CÔrnica de La Rioja'),
(82934, 'https://ror.org/02d7mxj93', 'pt', 1, 'https://ror.org/02d7mxj93 BeneficĆŖncia Portuguesa de SĆ£o Paulo'),
(82935, 'https://ror.org/03bgrdf63', 'en', 1, 'https://ror.org/03bgrdf63 Surfrider Foundation'),
(82936, 'https://ror.org/04tghch53', 'en', 1, 'https://ror.org/04tghch53 Otago Medical Research Foundation'),
(82937, 'https://ror.org/02hcraz70', 'da', 1, 'https://ror.org/02hcraz70 Aase og Ejnar Danielsens Fond'),
(82938, 'https://ror.org/01mqgp065', 'no_lang_code', 1, 'https://ror.org/01mqgp065 Acacia Research Corporation (United States)'),
(82939, 'https://ror.org/0129t8w49', 'en', 1, 'https://ror.org/0129t8w49 Innovative Medicines Canada'),
(82940, 'https://ror.org/00xg12k29', 'en', 1, 'https://ror.org/00xg12k29 Environmental Leadership Program'),
(82941, 'https://ror.org/020jjrx43', 'en', 1, 'https://ror.org/020jjrx43 Law and Society Association'),
(82942, 'https://ror.org/01mae9353', 'en', 1, 'https://ror.org/01mae9353 Marine National Facility'),
(82943, 'https://ror.org/05c74bq69', 'en', 1, 'https://ror.org/05c74bq69 Shenzhen Second People''s Hospital'),
(82944, 'https://ror.org/03w5df895', 'en', 1, 'https://ror.org/03w5df895 Sixteenth Century Society and Conference'),
(82945, 'https://ror.org/05p9yxg92', 'no_lang_code', 1, 'https://ror.org/05p9yxg92 Manufacturing Advocacy & Growth Network (United States)'),
(82946, 'https://ror.org/019sg3t80', 'en', 1, 'https://ror.org/019sg3t80 Near and Far Aid'),
(82947, 'https://ror.org/05cbf1t36', 'en', 1, 'https://ror.org/05cbf1t36 Korean Diabetes Association'),
(82948, 'https://ror.org/01yk47434', 'no_lang_code', 1, 'https://ror.org/01yk47434 Charlotte''s Web (United States)'),
(82949, 'https://ror.org/01cc8fr56', 'en', 1, 'https://ror.org/01cc8fr56 Pulmonary Fibrosis Foundation'),
(82950, 'https://ror.org/0453v4r20', 'en', 1, 'https://ror.org/0453v4r20 Universidad de Puerto Rico, Recinto de RĆ­o Piedras University of Puerto Rico at RĆ­o Piedras'),
(82951, 'https://ror.org/05tvg6d45', 'no_lang_code', 1, 'https://ror.org/05tvg6d45 Condor Petroleum (Canada)'),
(82952, 'https://ror.org/00azwrb54', 'en', 1, 'https://ror.org/00azwrb54 Kenneth T. and Eileen L. Norris Foundation'),
(82953, 'https://ror.org/00c55ce88', 'en', 1, 'https://ror.org/00c55ce88 Ta Hwa University of Science and Technology å¤§čÆē§‘ęŠ€å¤§å­ø'),
(82954, 'https://ror.org/0486bt777', 'en', 1, 'https://ror.org/0486bt777 Spirit Mountain Community Fund'),
(82955, 'https://ror.org/00e5w5x57', 'no_lang_code', 1, 'https://ror.org/00e5w5x57 Simpson Strong-Tie (United States)'),
(82956, 'https://ror.org/05ddz3y46', 'en', 1, 'https://ror.org/05ddz3y46 Spina Bifida Association'),
(82957, 'https://ror.org/02ts8v790', 'en', 1, 'https://ror.org/02ts8v790 Scottish Rite Charitable Foundation of Canada'),
(82958, 'https://ror.org/017stnw60', 'en', 1, 'https://ror.org/017stnw60 Korea Institute of Brain Science'),
(82959, 'https://ror.org/01vbxzt26', 'en', 1, 'https://ror.org/01vbxzt26 Centre for Research in Early Childhood'),
(82960, 'https://ror.org/03d6fb891', 'en', 1, 'https://ror.org/03d6fb891 Florida Education Fund'),
(82961, 'https://ror.org/01jccpq86', 'no_lang_code', 1, 'https://ror.org/01jccpq86 Scalable Network Technologies (United States)'),
(82962, 'https://ror.org/02py32171', 'nl', 1, 'https://ror.org/02py32171 Trombosestichting Nederland'),
(82963, 'https://ror.org/03qx7vw77', 'en', 1, 'https://ror.org/03qx7vw77 Gwynedd Mercy University'),
(82964, 'https://ror.org/021j5pp16', 'en', 1, 'https://ror.org/021j5pp16 Indian Institute of Rice Research'),
(82965, 'https://ror.org/02qqgz317', 'en', 1, 'https://ror.org/02qqgz317 Canadian Association of Petroleum Producers'),
(82966, 'https://ror.org/02g0rnd87', 'no_lang_code', 1, 'https://ror.org/02g0rnd87 Nexans (France)'),
(82967, 'https://ror.org/021bbn477', 'en', 1, 'https://ror.org/021bbn477 Society of Australasian Social Psychologists'),
(82968, 'https://ror.org/0508jbe38', 'no_lang_code', 1, 'https://ror.org/0508jbe38 Prayon (Belgium)'),
(82969, 'https://ror.org/04gm00j84', 'no_lang_code', 1, 'https://ror.org/04gm00j84 Custom Manufacturing & Engineering (United States)'),
(82970, 'https://ror.org/02s78w031', 'no_lang_code', 1, 'https://ror.org/02s78w031 Selgen (Czechia)'),
(82971, 'https://ror.org/0471ejv47', 'en', 1, 'https://ror.org/0471ejv47 Diakonhjemmet Foundation'),
(82972, 'https://ror.org/03qdqbt06', 'en', 1, 'https://ror.org/03qdqbt06 Peng Cheng Laboratory é¹åŸŽå®žéŖŒå®¤'),
(82973, 'https://ror.org/05n4kr695', 'en', 1, 'https://ror.org/05n4kr695 Science made simple'),
(82974, 'https://ror.org/03g2whv89', 'en', 1, 'https://ror.org/03g2whv89 Beckley Foundation'),
(82975, 'https://ror.org/05d8ft347', 'en', 1, 'https://ror.org/05d8ft347 Swim Across America'),
(82976, 'https://ror.org/001fszg24', 'en', 1, 'https://ror.org/001fszg24 Punxsutawney Area Hospital'),
(82977, 'https://ror.org/04sggs879', 'en', 1, 'https://ror.org/04sggs879 Goshen Health'),
(82978, 'https://ror.org/03gsev974', 'pt', 1, 'https://ror.org/03gsev974 Sociedade Brasileira Infectologia'),
(82979, 'https://ror.org/0157ce014', 'fr', 1, 'https://ror.org/0157ce014 Association pour l''Utilisation du Rein Artificiel dans la rƩgion Lyonnaise'),
(82980, 'https://ror.org/02h1t6f69', 'nl', 1, 'https://ror.org/02h1t6f69 Waddenfonds'),
(82981, 'https://ror.org/02698kt06', 'pt', 1, 'https://ror.org/02698kt06 Faculdades Oswaldo Cruz'),
(82982, 'https://ror.org/003e2jn43', 'pt', 1, 'https://ror.org/003e2jn43 Sociedade Brasileira de NeurociĆŖncias e Comportamento'),
(82983, 'https://ror.org/00yx5cw48', 'en', 1, 'https://ror.org/00yx5cw48 EMBL Australia'),
(82984, 'https://ror.org/04zr4fy40', 'no_lang_code', 1, 'https://ror.org/04zr4fy40 GreenLight Biosciences (United States)'),
(82985, 'https://ror.org/02gp9p447', 'no_lang_code', 1, 'https://ror.org/02gp9p447 AccuVein (United States)'),
(82986, 'https://ror.org/04ra49e34', 'en', 1, 'https://ror.org/04ra49e34 University of the Philippines Baguio'),
(82987, 'https://ror.org/05f5zxm22', 'en', 1, 'https://ror.org/05f5zxm22 Florence Nightingale Foundation'),
(82988, 'https://ror.org/036nr5945', 'no_lang_code', 1, 'https://ror.org/036nr5945 Applied Biomathematics (United States)'),
(82989, 'https://ror.org/01jhgd738', 'en', 1, 'https://ror.org/01jhgd738 International Specialised Skills Institute'),
(82990, 'https://ror.org/031vwce94', 'en', 1, 'https://ror.org/031vwce94 Casper Líbero Foundation Fundação CÔsper Líbero'),
(82991, 'https://ror.org/0391k0z38', 'en', 1, 'https://ror.org/0391k0z38 Association for Japanese-Language Teaching å…¬ē›Šē¤¾å›£ę³•äŗŗ å›½éš›ę—„ęœ¬čŖžę™®åŠå”ä¼š'),
(82992, 'https://ror.org/03e876s63', 'en', 1, 'https://ror.org/03e876s63 Southern Education Foundation'),
(82993, 'https://ror.org/05d88z031', 'en', 1, 'https://ror.org/05d88z031 Systemic Risk Centre'),
(82994, 'https://ror.org/02t9qnc73', 'en', 1, 'https://ror.org/02t9qnc73 Matrix Biology Institute'),
(82995, 'https://ror.org/01yv62k92', 'en', 1, 'https://ror.org/01yv62k92 Aid for Cancer Research'),
(82996, 'https://ror.org/0077sb385', 'en', 1, 'https://ror.org/0077sb385 Water Research Institute'),
(82997, 'https://ror.org/0386hmc48', 'no_lang_code', 1, 'https://ror.org/0386hmc48 Otto Fuchs (Germany)'),
(82998, 'https://ror.org/02j3bag68', 'en', 1, 'https://ror.org/02j3bag68 Kurnool Medical College ą°•ą°°ą±ą°Øą±‚ą°²ą± ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(82999, 'https://ror.org/012jfdt97', 'no_lang_code', 1, 'https://ror.org/012jfdt97 Marks and Spencer (United Kingdom)'),
(83000, 'https://ror.org/03kvm0223', 'no_lang_code', 1, 'https://ror.org/03kvm0223 Novalait (Canada)'),
(83001, 'https://ror.org/053061267', 'en', 1, 'https://ror.org/053061267 Primary Health Care Institute'),
(83002, 'https://ror.org/02dnd4c36', 'en', 1, 'https://ror.org/02dnd4c36 Van Lodenstein College'),
(83003, 'https://ror.org/022dvrf67', 'en', 1, 'https://ror.org/022dvrf67 Australian Respiratory Council'),
(83004, 'https://ror.org/04t99en88', 'en', 1, 'https://ror.org/04t99en88 Crowder College'),
(83005, 'https://ror.org/028h0pd91', 'en', 1, 'https://ror.org/028h0pd91 University of Information Technology and Communications'),
(83006, 'https://ror.org/04n9k1k06', 'en', 1, 'https://ror.org/04n9k1k06 Keaton Raphael Memorial'),
(83007, 'https://ror.org/05rteaz10', 'no_lang_code', 1, 'https://ror.org/05rteaz10 Razi Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† رازی Ų±Ų“ŲŖ'),
(83008, 'https://ror.org/01cpxhg33', 'en', 1, 'https://ror.org/01cpxhg33 Nagoya University of Arts and Sciences åå¤å±‹å­¦čŠøå¤§å­¦'),
(83009, 'https://ror.org/03ref8j98', 'en', 1, 'https://ror.org/03ref8j98 Centre for Development and Enterprise'),
(83010, 'https://ror.org/00anr4p12', 'no_lang_code', 1, 'https://ror.org/00anr4p12 The Wine Monopoly Vinmonopolet (Norway)'),
(83011, 'https://ror.org/03bvbrw19', 'en', 1, 'https://ror.org/03bvbrw19 Wild Blueberry Producers Association of Nova Scotia'),
(83012, 'https://ror.org/03nvtgg56', 'en', 1, 'https://ror.org/03nvtgg56 Arthur Ashe Institute for Urban Health'),
(83013, 'https://ror.org/031t3ke23', 'no_lang_code', 1, 'https://ror.org/031t3ke23 Rothband (United Kingdom)'),
(83014, 'https://ror.org/02ns86471', 'no_lang_code', 1, 'https://ror.org/02ns86471 Indumetal Recycling (Spain)'),
(83015, 'https://ror.org/02nqgxe18', 'en', 1, 'https://ror.org/02nqgxe18 Ophthalmic Consultants of Boston'),
(83016, 'https://ror.org/041pvn916', 'de', 1, 'https://ror.org/041pvn916 KfH-Stiftung PrƤventivmedizin'),
(83017, 'https://ror.org/03p4ncr63', 'en', 1, 'https://ror.org/03p4ncr63 Iranian Center for Quantum Technologies'),
(83018, 'https://ror.org/05efxhp13', 'no_lang_code', 1, 'https://ror.org/05efxhp13 TRM (United Kingdom)'),
(83019, 'https://ror.org/05f28cg89', 'no_lang_code', 1, 'https://ror.org/05f28cg89 Ionic Liquids Technologies (Germany)'),
(83020, 'https://ror.org/04tdkxq51', 'no_lang_code', 1, 'https://ror.org/04tdkxq51 ToolGen (South Korea) 툓젠'),
(83021, 'https://ror.org/05dv7fn73', 'en', 1, 'https://ror.org/05dv7fn73 Portland VA Research Foundation'),
(83022, 'https://ror.org/02xhgwv92', 'en', 1, 'https://ror.org/02xhgwv92 Epilepsy Ireland'),
(83023, 'https://ror.org/0146tx053', 'no_lang_code', 1, 'https://ror.org/0146tx053 Second Sight Medical Products'),
(83024, 'https://ror.org/043h1dd22', 'en', 1, 'https://ror.org/043h1dd22 Hervey Foundation'),
(83025, 'https://ror.org/04htrme26', 'en', 1, 'https://ror.org/04htrme26 International Union for the Scientific Study of Population'),
(83026, 'https://ror.org/01dysnd41', 'en', 1, 'https://ror.org/01dysnd41 Diabetes Québec Diabète Québecs'),
(83027, 'https://ror.org/0210ag428', 'nl', 1, 'https://ror.org/0210ag428 Algemene Nederlandse Vereniging ter Voorkoming van Blindheid'),
(83028, 'https://ror.org/01gh7xv33', 'en', 1, 'https://ror.org/01gh7xv33 National Performance Network'),
(83029, 'https://ror.org/045r9wn29', 'en', 1, 'https://ror.org/045r9wn29 Benedict College'),
(83030, 'https://ror.org/03zd5ej89', 'en', 1, 'https://ror.org/03zd5ej89 Liver Foundation West Bengal'),
(83031, 'https://ror.org/00xhffh65', 'no_lang_code', 1, 'https://ror.org/00xhffh65 Nirma (India)'),
(83032, 'https://ror.org/04fz26w57', 'en', 1, 'https://ror.org/04fz26w57 Arctic Yukon Kuskokwim Sustainable Salmon Initiative'),
(83033, 'https://ror.org/054bwgf62', 'no_lang_code', 1, 'https://ror.org/054bwgf62 PDI (United States)'),
(83034, 'https://ror.org/019r8b147', 'no_lang_code', 1, 'https://ror.org/019r8b147 Noritake (Japan) ę Ŗå¼ä¼šē¤¾ćƒŽćƒŖć‚æć‚±ć‚«ćƒ³ćƒ‘ćƒ‹ćƒ¼ćƒŖćƒŸćƒ†ćƒ‰'),
(83035, 'https://ror.org/03rqh4h65', 'no_lang_code', 1, 'https://ror.org/03rqh4h65 Kawasumi Laboratories (Japan)'),
(83036, 'https://ror.org/0181nwf87', 'no_lang_code', 1, 'https://ror.org/0181nwf87 Plextek (United Kingdom)'),
(83037, 'https://ror.org/05dgwj702', 'en', 1, 'https://ror.org/05dgwj702 Wu Jieping Medical Foundation'),
(83038, 'https://ror.org/01pwdjb69', 'no_lang_code', 1, 'https://ror.org/01pwdjb69 Ulrich Creative Simulations (Switzerland)'),
(83039, 'https://ror.org/020ekrq71', 'en', 1, 'https://ror.org/020ekrq71 Kuratini Tuwhera Open Polytechnic'),
(83040, 'https://ror.org/04t4gxd81', 'en', 1, 'https://ror.org/04t4gxd81 Kanazawa Technical College é‡‘ę²¢å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(83041, 'https://ror.org/04a09tp93', 'no_lang_code', 1, 'https://ror.org/04a09tp93 Chromasun (United States)'),
(83042, 'https://ror.org/026dnzb16', 'no_lang_code', 1, 'https://ror.org/026dnzb16 AFC Technologies (Israel)'),
(83043, 'https://ror.org/016np2f45', 'en', 1, 'https://ror.org/016np2f45 Association of Fish and Wildlife Agencies'),
(83044, 'https://ror.org/05jnms536', 'en', 1, 'https://ror.org/05jnms536 Social and Health Research Center'),
(83045, 'https://ror.org/02hbhk282', 'en', 1, 'https://ror.org/02hbhk282 Lowell Community Health Center'),
(83046, 'https://ror.org/02n6q7023', 'en', 1, 'https://ror.org/02n6q7023 National Pancreas Foundation'),
(83047, 'https://ror.org/05h7de630', 'en', 1, 'https://ror.org/05h7de630 Association canadienne pour l''Ʃtude du foie Canadian Association for the Study of the Liver'),
(83048, 'https://ror.org/03ys8dr56', 'en', 1, 'https://ror.org/03ys8dr56 Hislop College'),
(83049, 'https://ror.org/05yk8d495', 'en', 1, 'https://ror.org/05yk8d495 Orthopedic Institute'),
(83050, 'https://ror.org/003ghvj67', 'en', 1, 'https://ror.org/003ghvj67 McKnight Foundation'),
(83051, 'https://ror.org/003qybm63', 'en', 1, 'https://ror.org/003qybm63 Black Belt Community Foundation'),
(83052, 'https://ror.org/00ns6x030', 'en', 1, 'https://ror.org/00ns6x030 Workers Compensation Board of Alberta'),
(83053, 'https://ror.org/04gnq1e14', 'no_lang_code', 1, 'https://ror.org/04gnq1e14 Hager Sharp (United States)'),
(83054, 'https://ror.org/00c072981', 'en', 1, 'https://ror.org/00c072981 Palestinian American Research Council'),
(83055, 'https://ror.org/00986jy03', 'en', 1, 'https://ror.org/00986jy03 Kirkhouse Trust'),
(83056, 'https://ror.org/02b9t1940', 'no_lang_code', 1, 'https://ror.org/02b9t1940 Graco (United States)'),
(83057, 'https://ror.org/00xkj2889', 'en', 1, 'https://ror.org/00xkj2889 Guarantors of Brain'),
(83058, 'https://ror.org/01redxw13', 'en', 1, 'https://ror.org/01redxw13 Norwegian Aviation Museum'),
(83059, 'https://ror.org/05pr9eq97', 'en', 1, 'https://ror.org/05pr9eq97 Center for China and Globalization äø­å›½äøŽå…ØēƒåŒ–ę™ŗåŗ“'),
(83060, 'https://ror.org/014btj409', 'sv', 1, 'https://ror.org/014btj409 HjƤrnfonden'),
(83061, 'https://ror.org/04xe0vz96', 'en', 1, 'https://ror.org/04xe0vz96 Association for Behavioral and Cognitive Therapies'),
(83062, 'https://ror.org/02vy3ff49', 'pt', 1, 'https://ror.org/02vy3ff49 Instituto Maria e Joao Aleixo'),
(83063, 'https://ror.org/057g9bh47', 'en', 1, 'https://ror.org/057g9bh47 Lviv State University of Life Safety Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Державний Університет Безпеки Š–ŠøŃ‚Ń‚Ń”Š“Ń–ŃŠ»ŃŒŠ½Š¾ŃŃ‚Ń–'),
(83064, 'https://ror.org/00zs1y079', 'en', 1, 'https://ror.org/00zs1y079 Iowa Pork Producers Association'),
(83065, 'https://ror.org/028vg3q27', 'en', 1, 'https://ror.org/028vg3q27 Maudsley Charity'),
(83066, 'https://ror.org/035yf7a66', 'en', 1, 'https://ror.org/035yf7a66 Edward Mallinckrodt Jr. Foundation'),
(83067, 'https://ror.org/026g6m108', 'no', 1, 'https://ror.org/026g6m108 Ski kommune'),
(83068, 'https://ror.org/04mwjpk69', 'en', 1, 'https://ror.org/04mwjpk69 National Taiwan University of Sport åœ‹ē«‹č‡ŗē£é«”č‚²é‹å‹•å¤§å­ø'),
(83069, 'https://ror.org/02y36cy40', 'no_lang_code', 1, 'https://ror.org/02y36cy40 Top Hat (Canada)'),
(83070, 'https://ror.org/022c7g962', 'no_lang_code', 1, 'https://ror.org/022c7g962 Exicure (United States)'),
(83071, 'https://ror.org/03pbhe678', 'en', 1, 'https://ror.org/03pbhe678 Saint Joseph''s Seminary St. Joseph’s Seminary and College'),
(83072, 'https://ror.org/05v258791', 'en', 1, 'https://ror.org/05v258791 International Academy of Oral Medicine and Toxicology'),
(83073, 'https://ror.org/035jwz470', 'en', 1, 'https://ror.org/035jwz470 Nordic Energy Research'),
(83074, 'https://ror.org/02gwszx41', 'en', 1, 'https://ror.org/02gwszx41 New Earth Foundation'),
(83075, 'https://ror.org/03nyn4g46', 'en', 1, 'https://ror.org/03nyn4g46 National Academy of Governance УГирГлагын АкаГемийн'),
(83076, 'https://ror.org/04wc56h90', 'no_lang_code', 1, 'https://ror.org/04wc56h90 Nakanishi (Japan) ę Ŗå¼ä¼šē¤¾ćƒŠć‚«ćƒ‹ć‚·'),
(83077, 'https://ror.org/049bff176', 'de', 1, 'https://ror.org/049bff176 Höhere Bundeslehranstalt und Bundesamt für Wein- und Obstbau'),
(83078, 'https://ror.org/00zpnkr86', 'no', 1, 'https://ror.org/00zpnkr86 Landsforeningen for hjerte- og lungesyke'),
(83079, 'https://ror.org/02nddbr13', 'en', 1, 'https://ror.org/02nddbr13 Xi''an Siyuan University č„æå®‰ę€ęŗå­¦é™¢'),
(83080, 'https://ror.org/009rrgv92', 'en', 1, 'https://ror.org/009rrgv92 Egg Industry Center'),
(83081, 'https://ror.org/04fw0fr46', 'en', 1, 'https://ror.org/04fw0fr46 The Kinghorn Cancer Centre'),
(83082, 'https://ror.org/03y4rnb63', 'en', 1, 'https://ror.org/03y4rnb63 Ingham Institute'),
(83083, 'https://ror.org/031cpdm45', 'no_lang_code', 1, 'https://ror.org/031cpdm45 HyTest (Finland)'),
(83084, 'https://ror.org/01f734v37', 'en', 1, 'https://ror.org/01f734v37 Heffter Research Institute'),
(83085, 'https://ror.org/04hzejq44', 'en', 1, 'https://ror.org/04hzejq44 Foundation for Liver and Gastrointestinal Research Stichting voor Lever- en Maag-Darm Onderzoek'),
(83086, 'https://ror.org/05smycf36', 'pt', 1, 'https://ror.org/05smycf36 Instituto Brasileiro de Controle do CĆ¢ncer'),
(83087, 'https://ror.org/048p4fn82', 'sv', 1, 'https://ror.org/048p4fn82 Carl Tryggers stiftelse fƶr vetenskaplig forskning'),
(83088, 'https://ror.org/04ckfrk21', 'no_lang_code', 1, 'https://ror.org/04ckfrk21 Mistras Group (United States)'),
(83089, 'https://ror.org/00exes624', 'en', 1, 'https://ror.org/00exes624 Institute for Water of the Republic of Slovenia'),
(83090, 'https://ror.org/025wqj346', 'en', 1, 'https://ror.org/025wqj346 Santa Barbara and Ventura Colleges of Law'),
(83091, 'https://ror.org/03c596w89', 'en', 1, 'https://ror.org/03c596w89 Brittle Bone Society'),
(83092, 'https://ror.org/05w54hk79', 'en', 1, 'https://ror.org/05w54hk79 VNU University of Science ĐẔi hį»c Khoa hį»c Tį»± nhiĆŖn HĆ  Nį»™i'),
(83093, 'https://ror.org/03dj6sp35', 'en', 1, 'https://ror.org/03dj6sp35 American Society for Photobiology'),
(83094, 'https://ror.org/0450ebe61', 'en', 1, 'https://ror.org/0450ebe61 Cures Within Reach'),
(83095, 'https://ror.org/048gb8814', 'en', 1, 'https://ror.org/048gb8814 Fachhochschule für Rechtspflege Schwetzingen Schwetzingen Technical Institute & Graduate Court Registrars'' College'),
(83096, 'https://ror.org/00fq0d986', 'en', 1, 'https://ror.org/00fq0d986 Kothiwal Dental College and Research Centre'),
(83097, 'https://ror.org/0197vzs73', 'en', 1, 'https://ror.org/0197vzs73 Center of Biotechnogy of Borj CƩdria'),
(83098, 'https://ror.org/02ktavf19', 'en', 1, 'https://ror.org/02ktavf19 Stoke-on-Trent City Council'),
(83099, 'https://ror.org/010k79j48', 'no_lang_code', 1, 'https://ror.org/010k79j48 The Nisshin OilliO Group (Japan) ę—„ęø…ć‚Ŗć‚¤ćƒŖć‚Ŗć‚°ćƒ«ćƒ¼ćƒ— 名古屋巄堓'),
(83100, 'https://ror.org/05tkqcq07', 'en', 1, 'https://ror.org/05tkqcq07 Hanyang Cyber University ķ•œģ–‘ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(83101, 'https://ror.org/01ns7sr89', 'no_lang_code', 1, 'https://ror.org/01ns7sr89 Quintessa (United Kingdom)'),
(83102, 'https://ror.org/01z47g681', 'en', 1, 'https://ror.org/01z47g681 Institut für Rechts- und Kriminalsoziologie Institute for the Sociology of Law and Criminology'),
(83103, 'https://ror.org/05gxzef39', 'en', 1, 'https://ror.org/05gxzef39 Foundation KiKa Stichting Kinderen Kankervrij'),
(83104, 'https://ror.org/023pys871', 'en', 1, 'https://ror.org/023pys871 The Winnipeg Foundation'),
(83105, 'https://ror.org/01rj99y75', 'en', 1, 'https://ror.org/01rj99y75 Arthritis New Zealand'),
(83106, 'https://ror.org/003tr6n25', 'en', 1, 'https://ror.org/003tr6n25 National Academy for Theatre and Film Arts ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ за театрално Šø филмово ŠøŠ·ŠŗŃƒŃŃ‚во ā€žŠšŃ€ŃŠŃŃ‚ŃŒŠ¾ Дарафов'),
(83107, 'https://ror.org/03q5hbn76', 'en', 1, 'https://ror.org/03q5hbn76 First Hospital of Jiaxing å˜‰å…“åø‚ē¬¬äø€åŒ»é™¢'),
(83108, 'https://ror.org/00f2vj333', 'en', 1, 'https://ror.org/00f2vj333 Scottish Alliance for Geoscience, Environment and Society'),
(83109, 'https://ror.org/020tv1e09', 'no_lang_code', 1, 'https://ror.org/020tv1e09 BioLife Solutions (United States)'),
(83110, 'https://ror.org/02r52cf76', 'en', 1, 'https://ror.org/02r52cf76 Baltic International Academy Baltijas Starptautiskā akadēmija Tarptautinė Baltijos akademija Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(83111, 'https://ror.org/059r6hg65', 'no_lang_code', 1, 'https://ror.org/059r6hg65 Agnitron Technology (United States)'),
(83112, 'https://ror.org/0570naj48', 'en', 1, 'https://ror.org/0570naj48 Concord Consortium'),
(83113, 'https://ror.org/0385yzn06', 'en', 1, 'https://ror.org/0385yzn06 Physicians'' Services Incorporated Foundation'),
(83114, 'https://ror.org/05w8p5s11', 'en', 1, 'https://ror.org/05w8p5s11 Partnership for Clean Competition');
INSERT INTO `rors` VALUES
(83115, 'https://ror.org/05qp89973', 'no_lang_code', 1, 'https://ror.org/05qp89973 DAK-Gesundheit (Germany)'),
(83116, 'https://ror.org/01wry0y20', 'en', 1, 'https://ror.org/01wry0y20 African Bible University'),
(83117, 'https://ror.org/04vh8f825', 'en', 1, 'https://ror.org/04vh8f825 Academy of Fine Arts of Bari Accademia di Belle Arti di Bari'),
(83118, 'https://ror.org/01dha7q76', 'no_lang_code', 1, 'https://ror.org/01dha7q76 DornerWorks (United States)'),
(83119, 'https://ror.org/01h1bc022', 'en', 1, 'https://ror.org/01h1bc022 National University of the West Universidad Nacional del Oeste'),
(83120, 'https://ror.org/02zzdgk49', 'en', 1, 'https://ror.org/02zzdgk49 Bliss'),
(83121, 'https://ror.org/04901nj56', 'en', 1, 'https://ror.org/04901nj56 Pacific Salmon Foundation'),
(83122, 'https://ror.org/03mn4jv82', 'en', 1, 'https://ror.org/03mn4jv82 Institute for Law and Justice'),
(83123, 'https://ror.org/038d7ve10', 'en', 1, 'https://ror.org/038d7ve10 Liupanshui Normal University'),
(83124, 'https://ror.org/00he9fz79', 'en', 1, 'https://ror.org/00he9fz79 Jining Normal University'),
(83125, 'https://ror.org/00dxqqk95', 'en', 1, 'https://ror.org/00dxqqk95 Philanthropic Educational Organization'),
(83126, 'https://ror.org/04a41pr43', 'en', 1, 'https://ror.org/04a41pr43 National School of Mineral Industry Ɖcole nationale de l''industrie minĆ©rale المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للصناعات Ų§Ł„Ł…Ų¹ŲÆŁ†ŁŠŲ© (المغرب)'),
(83127, 'https://ror.org/05s768n96', 'pt', 1, 'https://ror.org/05s768n96 Fundação do ABC'),
(83128, 'https://ror.org/01a6rnx77', 'en', 1, 'https://ror.org/01a6rnx77 Nebraska Environmental Trust'),
(83129, 'https://ror.org/05gj50p33', 'en', 1, 'https://ror.org/05gj50p33 Rowland Foundation'),
(83130, 'https://ror.org/03qhad759', 'en', 1, 'https://ror.org/03qhad759 LivingStone International University'),
(83131, 'https://ror.org/016kfpn06', 'en', 1, 'https://ror.org/016kfpn06 Psychology Beyond Borders'),
(83132, 'https://ror.org/04gcp7g78', 'en', 1, 'https://ror.org/04gcp7g78 All - Russian Scientific Research Institute of Tobacco, Makhorka and Tobacco Products ŠŠŠ£Š§ŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢ŠŠ‘ŠŠšŠ, ŠœŠŠ„ŠžŠ ŠšŠ˜ И Š¢ŠŠ‘ŠŠ§ŠŠ«Š„ Š˜Š—Š”Š•Š›Š˜Š™'),
(83133, 'https://ror.org/051ax8v50', 'en', 1, 'https://ror.org/051ax8v50 Rambhai Barni Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø£ąø³ą¹„ąøžąøžąø£ąø£ąø“ąøµ'),
(83134, 'https://ror.org/00k289v48', 'en', 1, 'https://ror.org/00k289v48 Mama Cash'),
(83135, 'https://ror.org/0011f2t53', 'nl', 1, 'https://ror.org/0011f2t53 Prinses Beatrix Spierfonds'),
(83136, 'https://ror.org/039310w64', 'hu', 1, 'https://ror.org/039310w64 Kőrƶsi Csoma TĆ”rsasĆ”g'),
(83137, 'https://ror.org/05pebnr13', 'en', 1, 'https://ror.org/05pebnr13 Baring Foundation'),
(83138, 'https://ror.org/03a5y5d65', 'en', 1, 'https://ror.org/03a5y5d65 Foundation for European Progressive Studies'),
(83139, 'https://ror.org/038mte443', 'en', 1, 'https://ror.org/038mte443 Rebecca L. Cooper Medical Research Foundation'),
(83140, 'https://ror.org/02wckks30', 'pt', 1, 'https://ror.org/02wckks30 Instituto de Urologia e Nefrologia'),
(83141, 'https://ror.org/03696td91', 'no_lang_code', 1, 'https://ror.org/03696td91 SK Group (South Korea) ģ—ģŠ¤ģ¼€ģ“ź·øė£¹'),
(83142, 'https://ror.org/0183crf97', 'en', 1, 'https://ror.org/0183crf97 British Orthopaedic Research Society'),
(83143, 'https://ror.org/00bvrdy12', 'no_lang_code', 1, 'https://ror.org/00bvrdy12 Medicon'),
(83144, 'https://ror.org/02t8zvv42', 'en', 1, 'https://ror.org/02t8zvv42 South African History Archive'),
(83145, 'https://ror.org/01ftbgh03', 'no_lang_code', 1, 'https://ror.org/01ftbgh03 McCormick (United States)'),
(83146, 'https://ror.org/01esr7813', 'en', 1, 'https://ror.org/01esr7813 Turner Foundation'),
(83147, 'https://ror.org/00pm8fq14', 'en', 1, 'https://ror.org/00pm8fq14 Australian Education Research Organisation'),
(83148, 'https://ror.org/018rbev86', 'en', 1, 'https://ror.org/018rbev86 Emory and Henry College'),
(83149, 'https://ror.org/0016t4p10', 'en', 1, 'https://ror.org/0016t4p10 Osaka Kidney Foundation'),
(83150, 'https://ror.org/02nd66j93', 'no_lang_code', 1, 'https://ror.org/02nd66j93 Yung Shin Pharmaceutical Industrial (Taiwan)'),
(83151, 'https://ror.org/0282vem19', 'en', 1, 'https://ror.org/0282vem19 Women and Memory Forum Ł…Ų¤Ų³Ų³Ų© المرأة ŁˆŲ§Ł„Ų°Ų§ŁƒŲ±Ų©'),
(83152, 'https://ror.org/05pdpaa51', 'en', 1, 'https://ror.org/05pdpaa51 Disability Rights Fund'),
(83153, 'https://ror.org/046bsww91', 'en', 1, 'https://ror.org/046bsww91 Associated Colleges of the Midwest'),
(83154, 'https://ror.org/02hgwhq57', 'en', 1, 'https://ror.org/02hgwhq57 New Horizons for Women Trust'),
(83155, 'https://ror.org/026hpxe59', 'en', 1, 'https://ror.org/026hpxe59 Filamer Christian University'),
(83156, 'https://ror.org/04dxwt824', 'sv', 1, 'https://ror.org/04dxwt824 Studiefƶrbundet NƤringsliv och SamhƤlle'),
(83157, 'https://ror.org/008xmrm87', 'en', 1, 'https://ror.org/008xmrm87 American Cryonics Society'),
(83158, 'https://ror.org/00przpv88', 'en', 1, 'https://ror.org/00przpv88 Maori Education Trust'),
(83159, 'https://ror.org/04kdb0j04', 'en', 1, 'https://ror.org/04kdb0j04 Helmholtz Institute Freiberg for Resource Technology Helmholtz-Institut Freiberg für Ressourcentechnologie'),
(83160, 'https://ror.org/037nf7e17', 'en', 1, 'https://ror.org/037nf7e17 Wayside Youth And Family Support Network'),
(83161, 'https://ror.org/02d4f9f51', 'en', 1, 'https://ror.org/02d4f9f51 National Center for Cancer Care and Research'),
(83162, 'https://ror.org/04v48nr57', 'en', 1, 'https://ror.org/04v48nr57 Rhodes Trust'),
(83163, 'https://ror.org/007x3v691', 'en', 1, 'https://ror.org/007x3v691 Ross Foundation'),
(83164, 'https://ror.org/05kkbgp47', 'en', 1, 'https://ror.org/05kkbgp47 Hill Museum and Manuscript Library'),
(83165, 'https://ror.org/0151rzq22', 'nl', 1, 'https://ror.org/0151rzq22 Gratama Stichting'),
(83166, 'https://ror.org/0489p2588', 'en', 1, 'https://ror.org/0489p2588 African Federation for Emergency Medicine'),
(83167, 'https://ror.org/01870m649', 'no_lang_code', 1, 'https://ror.org/01870m649 C-Com Satellite Systems (Canada)'),
(83168, 'https://ror.org/00k3q8x90', 'en', 1, 'https://ror.org/00k3q8x90 Unibersidad ng Pilipinas Mindanao University of the Philippines Mindanao'),
(83169, 'https://ror.org/036s3gz19', 'en', 1, 'https://ror.org/036s3gz19 Analysis & Policy Observatory'),
(83170, 'https://ror.org/00qh1df20', 'no_lang_code', 1, 'https://ror.org/00qh1df20 Vygon (France)'),
(83171, 'https://ror.org/03arvq761', 'en', 1, 'https://ror.org/03arvq761 Volodymyr Dahl East Ukrainian National University Wschodnioukraiński Uniwersytet Narodowy im. Wołodymyra Dala Š’Š¾ŃŃ‚Š¾Ń‡Š½Š¾ŃƒŠŗŃ€Š°ŠøŠ½ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ВлаГимира Š”Š°Š»Ń Š”Ń…Ń–Š“Š½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВолоГимира Š”Š°Š»Ń'),
(83172, 'https://ror.org/01adm6690', 'en', 1, 'https://ror.org/01adm6690 Canadian Climate Forum'),
(83173, 'https://ror.org/054etdq36', 'en', 1, 'https://ror.org/054etdq36 EGU HV Laboratory'),
(83174, 'https://ror.org/04r1f5z39', 'de', 1, 'https://ror.org/04r1f5z39 Krankenhaus St. Joseph-Stift Bremen'),
(83175, 'https://ror.org/0448wcz36', 'en', 1, 'https://ror.org/0448wcz36 athenahealth'),
(83176, 'https://ror.org/03c6bf397', 'en', 1, 'https://ror.org/03c6bf397 Institute of Behavioral Sciences č”Œå‹•ē§‘å­¦ē ”ē©¶ę‰€'),
(83177, 'https://ror.org/05e3seg28', 'no_lang_code', 1, 'https://ror.org/05e3seg28 Geomembrane Technologies (Canada)'),
(83178, 'https://ror.org/00zzzgw04', 'en', 1, 'https://ror.org/00zzzgw04 Southern Nations, Nationalities, and Peoples'' Region የደቔቄ į‰„įˆ”įˆ­ į‰„įˆ”įˆØįˆ°į‰¦į‰½įŠ“ įˆ…į‹į‰¦į‰½ įŠ­įˆįˆ'),
(83179, 'https://ror.org/05mzh9z59', 'en', 1, 'https://ror.org/05mzh9z59 Affiliated Hospital of Zunyi Medical College 遵义医学院附属医院'),
(83180, 'https://ror.org/05tzgpn59', 'en', 1, 'https://ror.org/05tzgpn59 American Civil War Museum'),
(83181, 'https://ror.org/03kdb6a28', 'en', 1, 'https://ror.org/03kdb6a28 WavEC Offshore Renewables'),
(83182, 'https://ror.org/011kh9f68', 'en', 1, 'https://ror.org/011kh9f68 EuroScience'),
(83183, 'https://ror.org/00g0d8m77', 'en', 1, 'https://ror.org/00g0d8m77 The Sherwood Institute'),
(83184, 'https://ror.org/05wtrjf23', 'no_lang_code', 1, 'https://ror.org/05wtrjf23 BioAxone BioSciences (United States)'),
(83185, 'https://ror.org/04mcvt136', 'en', 1, 'https://ror.org/04mcvt136 Interactive Media Institute'),
(83186, 'https://ror.org/0403jak37', 'en', 1, 'https://ror.org/0403jak37 Al Baha University Ų¬Ų§Ł…Ų¹Ų© الباحة'),
(83187, 'https://ror.org/03hjav547', 'en', 1, 'https://ror.org/03hjav547 Hemophilia Foundation of Michigan'),
(83188, 'https://ror.org/03bgr9b71', 'en', 1, 'https://ror.org/03bgr9b71 Finnish Dental Association Suomen HammaslƤƤkƤriliitto'),
(83189, 'https://ror.org/00n4vb132', 'en', 1, 'https://ror.org/00n4vb132 Ophthalmic Research Institute of Australia'),
(83190, 'https://ror.org/00dfyer24', 'en', 1, 'https://ror.org/00dfyer24 K''ima:w Medical Center'),
(83191, 'https://ror.org/0261qja04', 'pt', 1, 'https://ror.org/0261qja04 Universidade Estadual do Norte do ParanĆ”'),
(83192, 'https://ror.org/04brc8545', 'no_lang_code', 1, 'https://ror.org/04brc8545 Innovia Films (United Kingdom)'),
(83193, 'https://ror.org/015p3g344', 'en', 1, 'https://ror.org/015p3g344 Nationale Versorgungskonferenz Hautkrebs Skin Cancer Council Germany'),
(83194, 'https://ror.org/01c9wwf89', 'en', 1, 'https://ror.org/01c9wwf89 Ecumenical Project for International Cooperation'),
(83195, 'https://ror.org/00j4d3v37', 'en', 1, 'https://ror.org/00j4d3v37 Eurasian Humanities Institute Š•ŃƒŃ€Š°Š·ŠøŃ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š»Ń‹Ņ› ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(83196, 'https://ror.org/03bjqb473', 'en', 1, 'https://ror.org/03bjqb473 Sonoran Spine Research and Education Foundation'),
(83197, 'https://ror.org/04dv5rj21', 'no_lang_code', 1, 'https://ror.org/04dv5rj21 GeneFluidics (United States)'),
(83198, 'https://ror.org/03gwnfe45', 'en', 1, 'https://ror.org/03gwnfe45 Innovate Washington Foundation'),
(83199, 'https://ror.org/01vzxjs29', 'en', 1, 'https://ror.org/01vzxjs29 All Saints Educational Trust'),
(83200, 'https://ror.org/02z3q8x80', 'es', 1, 'https://ror.org/02z3q8x80 Instituto Nacional de Formación Técnica Profesional'),
(83201, 'https://ror.org/01vsww631', 'en', 1, 'https://ror.org/01vsww631 Microbial Institute for Fermentation Industry 발효 ėÆøģƒė¬¼ ģ‚°ģ—… ģ§„ķ„ 기금'),
(83202, 'https://ror.org/01a2v2e80', 'en', 1, 'https://ror.org/01a2v2e80 Barking and Dagenham College'),
(83203, 'https://ror.org/054jyh162', 'en', 1, 'https://ror.org/054jyh162 Richard and Ethel Herzfeld Foundation'),
(83204, 'https://ror.org/049z3cb60', 'en', 1, 'https://ror.org/049z3cb60 First Affiliated Hospital of University of South China'),
(83205, 'https://ror.org/059mkb986', 'en', 1, 'https://ror.org/059mkb986 The Lucy Faithfull Foundation'),
(83206, 'https://ror.org/04d170j15', 'no_lang_code', 1, 'https://ror.org/04d170j15 Cook Group (United States)'),
(83207, 'https://ror.org/05e325b74', 'en', 1, 'https://ror.org/05e325b74 Manav Bharti University'),
(83208, 'https://ror.org/01qqfw276', 'no_lang_code', 1, 'https://ror.org/01qqfw276 SQZ Biotech (United States)'),
(83209, 'https://ror.org/05s0b7f89', 'en', 1, 'https://ror.org/05s0b7f89 Airey Neave Trust'),
(83210, 'https://ror.org/01qc2fa96', 'en', 1, 'https://ror.org/01qc2fa96 Glaucoma Foundation'),
(83211, 'https://ror.org/02e8pmt63', 'en', 1, 'https://ror.org/02e8pmt63 John Randolph Haynes and Dora Haynes Foundation'),
(83212, 'https://ror.org/05b170984', 'en', 1, 'https://ror.org/05b170984 Institut für Biomedizinische und Pharmazeutische Forschung Institute for Biomedical and Pharmaceutical Research'),
(83213, 'https://ror.org/044nwwd32', 'en', 1, 'https://ror.org/044nwwd32 Rostov Research Institute of Microbiology and Parasitology Ростовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ микробиологии Šø паразитологии'),
(83214, 'https://ror.org/03n5b6y82', 'en', 1, 'https://ror.org/03n5b6y82 British Society for Matrix Biology'),
(83215, 'https://ror.org/013w6g994', 'no_lang_code', 1, 'https://ror.org/013w6g994 Crain Communications (United States)'),
(83216, 'https://ror.org/00xcb0s16', 'en', 1, 'https://ror.org/00xcb0s16 International Business School ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾ висше бизнес ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ'),
(83217, 'https://ror.org/055fzrq49', 'en', 1, 'https://ror.org/055fzrq49 Sardar Patel Renewable Energy Research Institute ąŖøą«ąŖŖą«ąŖ°ą«‡ąŖ°ą«€'),
(83218, 'https://ror.org/03arxxe13', 'sv', 1, 'https://ror.org/03arxxe13 K. Albin Johanssons stiftelse'),
(83219, 'https://ror.org/01hd0ng85', 'en', 1, 'https://ror.org/01hd0ng85 American Neurogastroenterology and Motility Society'),
(83220, 'https://ror.org/048389405', 'no_lang_code', 1, 'https://ror.org/048389405 G1 Therapeutics (United States)'),
(83221, 'https://ror.org/05eatzc79', 'en', 1, 'https://ror.org/05eatzc79 Blue Cross and Blue Shield of Kansas City'),
(83222, 'https://ror.org/03y974j42', 'nl', 1, 'https://ror.org/03y974j42 Nefrovisie'),
(83223, 'https://ror.org/05xrb4a64', 'en', 1, 'https://ror.org/05xrb4a64 Foundation for a Cure for Mitochondrial Disease'),
(83224, 'https://ror.org/03078b858', 'en', 1, 'https://ror.org/03078b858 Idea Wild'),
(83225, 'https://ror.org/03xj6g968', 'en', 1, 'https://ror.org/03xj6g968 Batumi Navigation Teaching University įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒœįƒįƒ•įƒ˜įƒ’įƒįƒŖįƒ˜įƒ˜įƒ” įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(83226, 'https://ror.org/0310y6579', 'en', 1, 'https://ror.org/0310y6579 Rzeszów School of Engineering and Economics Wyższa Szkoła Inżynieryjno – Ekonomiczna z siedzibą w Rzeszowie'),
(83227, 'https://ror.org/05dek7a71', 'en', 1, 'https://ror.org/05dek7a71 Santiago Library System'),
(83228, 'https://ror.org/05grbyt82', 'en', 1, 'https://ror.org/05grbyt82 American Surgical Association'),
(83229, 'https://ror.org/04m9hsz45', 'en', 1, 'https://ror.org/04m9hsz45 Saint Francis de Sales Seminary'),
(83230, 'https://ror.org/01pjwns67', 'en', 1, 'https://ror.org/01pjwns67 TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ Vįŗ”n XuĆ¢n Van Xuan University of Technology'),
(83231, 'https://ror.org/03sva2t10', 'en', 1, 'https://ror.org/03sva2t10 Forefront of Dermatology'),
(83232, 'https://ror.org/01h2ykt31', 'en', 1, 'https://ror.org/01h2ykt31 Hong Kong Research Institute of Textiles and Apparel'),
(83233, 'https://ror.org/05qg0fx21', 'nl', 1, 'https://ror.org/05qg0fx21 Stichting Stoffels-Hornstra'),
(83234, 'https://ror.org/02ng9tz41', 'en', 1, 'https://ror.org/02ng9tz41 Hermon Slade Foundation'),
(83235, 'https://ror.org/01nzm5q36', 'en', 1, 'https://ror.org/01nzm5q36 ARC Centre of Excellence in Future Low-Energy Electronics Technologies'),
(83236, 'https://ror.org/015sksk97', 'en', 1, 'https://ror.org/015sksk97 City & Guilds Group'),
(83237, 'https://ror.org/00fjvmz39', 'no_lang_code', 1, 'https://ror.org/00fjvmz39 Palmetto Pharmaceuticals (United States)'),
(83238, 'https://ror.org/00va6b064', 'en', 1, 'https://ror.org/00va6b064 Canadian Academy of Sport and Exercise Medicine'),
(83239, 'https://ror.org/03pem7638', 'no_lang_code', 1, 'https://ror.org/03pem7638 EnGlobe (Canada)'),
(83240, 'https://ror.org/05b6cq467', 'en', 1, 'https://ror.org/05b6cq467 Baily Thomas Charitable Fund'),
(83241, 'https://ror.org/04z55f009', 'no_lang_code', 1, 'https://ror.org/04z55f009 Combustion Science & Engineering (United States)'),
(83242, 'https://ror.org/01z86wn38', 'no_lang_code', 1, 'https://ror.org/01z86wn38 Vision Medicals (China) å¾®čæœåŸŗå› '),
(83243, 'https://ror.org/03s8wm141', 'en', 1, 'https://ror.org/03s8wm141 Wuxi Institute of Arts & Technology ę— é””č‰ŗęœÆå­¦é™¢'),
(83244, 'https://ror.org/04wpcnj90', 'es', 1, 'https://ror.org/04wpcnj90 Corporación de Lucha Contra el Sida'),
(83245, 'https://ror.org/02m2n5c14', 'en', 1, 'https://ror.org/02m2n5c14 New Brunswick Arts Board'),
(83246, 'https://ror.org/011p1an89', 'no_lang_code', 1, 'https://ror.org/011p1an89 Accretech (Japan) ę±äŗ¬ē²¾åÆ†'),
(83247, 'https://ror.org/05w5bmv88', 'no_lang_code', 1, 'https://ror.org/05w5bmv88 Central Research Institute of Electronics (Russia) Š¦ŠŠ˜Š˜ Электроника'),
(83248, 'https://ror.org/00ed5g627', 'de', 1, 'https://ror.org/00ed5g627 Heinz Maier-Leibnitz Zentrum'),
(83249, 'https://ror.org/03rvhec15', 'en', 1, 'https://ror.org/03rvhec15 Clore Duffield Foundation'),
(83250, 'https://ror.org/00r5c2613', 'no_lang_code', 1, 'https://ror.org/00r5c2613 CCD Design & Ergonomics (United Kingdom)'),
(83251, 'https://ror.org/04nyv3z04', 'en', 1, 'https://ror.org/04nyv3z04 Hanoi University of Science and Technology Institut polytechnique de hanoĆÆ TrĘ°į»ng ĐẔi hį»c BĆ”ch khoa HĆ  Nį»™i'),
(83252, 'https://ror.org/01fzzqb65', 'en', 1, 'https://ror.org/01fzzqb65 Unity Worldwide Ministries'),
(83253, 'https://ror.org/000epg022', 'en', 1, 'https://ror.org/000epg022 Regional Centre for Training in Aerospace Surveys'),
(83254, 'https://ror.org/05v4jan90', 'en', 1, 'https://ror.org/05v4jan90 Gustavus And Louise Pfeiffer Research Foundation'),
(83255, 'https://ror.org/01e402w83', 'no_lang_code', 1, 'https://ror.org/01e402w83 Great Lakes NeuroTechnologies (United States)'),
(83256, 'https://ror.org/04dam5e61', 'en', 1, 'https://ror.org/04dam5e61 Power Systems Engineering Research Center'),
(83257, 'https://ror.org/05vh49697', 'en', 1, 'https://ror.org/05vh49697 Morrison Child and Family Services'),
(83258, 'https://ror.org/048sabw23', 'en', 1, 'https://ror.org/048sabw23 Nuclear Threat Initiative'),
(83259, 'https://ror.org/02a1x2t60', 'en', 1, 'https://ror.org/02a1x2t60 Northshore Psychological Associates'),
(83260, 'https://ror.org/037z28087', 'en', 1, 'https://ror.org/037z28087 Yangon School of Political Science'),
(83261, 'https://ror.org/01hgdcb87', 'no_lang_code', 1, 'https://ror.org/01hgdcb87 China Architecture Design & Research Group (China) 中国建筑设讔研究院'),
(83262, 'https://ror.org/02e36yp79', 'en', 1, 'https://ror.org/02e36yp79 Blum & Grob Attorneys at Law Blum & Grob RechtsanwƤlte'),
(83263, 'https://ror.org/04qz65d85', 'en', 1, 'https://ror.org/04qz65d85 Ann and Bill Swindells Charitable Trust'),
(83264, 'https://ror.org/04ms16277', 'en', 1, 'https://ror.org/04ms16277 Harvard Club of Australia'),
(83265, 'https://ror.org/05rd1at71', 'en', 1, 'https://ror.org/05rd1at71 The Wende Museum'),
(83266, 'https://ror.org/001mv3k30', 'en', 1, 'https://ror.org/001mv3k30 National Rosacea Society'),
(83267, 'https://ror.org/05dxwnm86', 'en', 1, 'https://ror.org/05dxwnm86 Foundation for Prader-Willi Research'),
(83268, 'https://ror.org/04em8c151', 'en', 1, 'https://ror.org/04em8c151 Irrua Specialist Teaching Hospital'),
(83269, 'https://ror.org/04wjfz810', 'no_lang_code', 1, 'https://ror.org/04wjfz810 Thermal Wave Imaging (United States)'),
(83270, 'https://ror.org/00q2w1592', 'no_lang_code', 1, 'https://ror.org/00q2w1592 Mountain Equipment Co-op (Canada)'),
(83271, 'https://ror.org/04j4mc084', 'no_lang_code', 1, 'https://ror.org/04j4mc084 Centraal Instituut voor Toetsontwikkeling Cito (Netherlands)'),
(83272, 'https://ror.org/02bvbqy06', 'en', 1, 'https://ror.org/02bvbqy06 British Infection Association'),
(83273, 'https://ror.org/02rmwfb84', 'en', 1, 'https://ror.org/02rmwfb84 Food and Drug Safety Center äø€čˆ¬č²”å›£ę³•äŗŗé£Ÿå“č–¬å“å®‰å…Øć‚»ćƒ³ć‚æćƒ¼'),
(83274, 'https://ror.org/03xmk2w36', 'en', 1, 'https://ror.org/03xmk2w36 Universidad de Arte y Ciencias Sociales University of Art and Social Sciences'),
(83275, 'https://ror.org/02v6fyw83', 'en', 1, 'https://ror.org/02v6fyw83 Daiichi Institute of Technology 第一巄愭大学'),
(83276, 'https://ror.org/05bdz9q12', 'en', 1, 'https://ror.org/05bdz9q12 Fama College Kolegji Fama'),
(83277, 'https://ror.org/00m04y575', 'en', 1, 'https://ror.org/00m04y575 Güneydoğu Avrupa Üniversitesi South East European University Universiteti i EvropĆ«s Juglindore Универзитет на ŠˆŃƒŠ³Š¾ŠøŃŃ‚очна Европа'),
(83278, 'https://ror.org/012qd1w91', 'en', 1, 'https://ror.org/012qd1w91 Faruk Sarac Vocational School of Design Faruk Saraç Tasarım Meslek Yüksekokulu'),
(83279, 'https://ror.org/02t19fx09', 'no_lang_code', 1, 'https://ror.org/02t19fx09 Kinokuniya ē“€ä¼Šåœ‹å±‹ę›øåŗ—'),
(83280, 'https://ror.org/03q5xa910', 'en', 1, 'https://ror.org/03q5xa910 Earth Science Information Partners'),
(83281, 'https://ror.org/031847v02', 'en', 1, 'https://ror.org/031847v02 Cleen Foundation'),
(83282, 'https://ror.org/02wf58e57', 'en', 1, 'https://ror.org/02wf58e57 Center for Health and Gender Equity'),
(83283, 'https://ror.org/04z02dz33', 'en', 1, 'https://ror.org/04z02dz33 Giles W. and Elise G. Mead Foundation'),
(83284, 'https://ror.org/0192cpe26', 'en', 1, 'https://ror.org/0192cpe26 Iranian Legal Medicine Organization سازمان پزؓکی Ł‚Ų§Ł†ŁˆŁ†ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(83285, 'https://ror.org/00x1gs846', 'pt', 1, 'https://ror.org/00x1gs846 Associação Viver a Ciência'),
(83286, 'https://ror.org/039417z19', 'no_lang_code', 1, 'https://ror.org/039417z19 Overseas Shipholding Group (United States)'),
(83287, 'https://ror.org/04tjfqn96', 'en', 1, 'https://ror.org/04tjfqn96 Leibniz Institute for the History and Culture of Eastern Europe (GWZO) Leibniz-Institut für Geschichte und Kultur des östlichen Europa (GWZO)'),
(83288, 'https://ror.org/03tfypj28', 'en', 1, 'https://ror.org/03tfypj28 Rudd Foundation'),
(83289, 'https://ror.org/00ae97y06', 'no_lang_code', 1, 'https://ror.org/00ae97y06 BillerudKorsnƤs (Sweden)'),
(83290, 'https://ror.org/052ajzp09', 'en', 1, 'https://ror.org/052ajzp09 Breast Cancer Research Trust'),
(83291, 'https://ror.org/03p9y1j46', 'sv', 1, 'https://ror.org/03p9y1j46 Torsten Sƶderbergs Stiftelse'),
(83292, 'https://ror.org/023jbpn78', 'en', 1, 'https://ror.org/023jbpn78 Grain Research Centre'),
(83293, 'https://ror.org/05mktfw05', 'en', 1, 'https://ror.org/05mktfw05 Agence Nationale de RĆ©glementation des TĆ©lĆ©communications National Telecommunications Regulatory Agency Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„ŲŖŁ‚Ł†ŁŠŁ† Ų§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ'),
(83294, 'https://ror.org/02gbscg16', 'it', 1, 'https://ror.org/02gbscg16 Fondazione Tercas'),
(83295, 'https://ror.org/055p8z543', 'en', 1, 'https://ror.org/055p8z543 African Mathematics Millennium Science Initiative'),
(83296, 'https://ror.org/03v7rwj71', 'de', 1, 'https://ror.org/03v7rwj71 Dr. Rolf M. Schwiete Stiftung'),
(83297, 'https://ror.org/0488bnd65', 'en', 1, 'https://ror.org/0488bnd65 Oregon Health and Science University Hospital'),
(83298, 'https://ror.org/004aspv46', 'en', 1, 'https://ror.org/004aspv46 Bay Area Community Foundation'),
(83299, 'https://ror.org/02jm4z734', 'en', 1, 'https://ror.org/02jm4z734 Philbrook Museum of Art'),
(83300, 'https://ror.org/028c4g079', 'en', 1, 'https://ror.org/028c4g079 New Zealand Association of Counsellors Te Ropu Kaiwhiriwhiri o Aotearoa)'),
(83301, 'https://ror.org/04pcmyb41', 'it', 1, 'https://ror.org/04pcmyb41 Conservatorio di Musica Bruno Maderna'),
(83302, 'https://ror.org/03sd9v004', 'en', 1, 'https://ror.org/03sd9v004 Umma University'),
(83303, 'https://ror.org/05gggje28', 'en', 1, 'https://ror.org/05gggje28 Archives and Records Association'),
(83304, 'https://ror.org/036qk3s40', 'no_lang_code', 1, 'https://ror.org/036qk3s40 Isles'),
(83305, 'https://ror.org/03d4fzd85', 'no_lang_code', 1, 'https://ror.org/03d4fzd85 Quanta Computer (Taiwan) 廣達電腦'),
(83306, 'https://ror.org/04yrmhg32', 'en', 1, 'https://ror.org/04yrmhg32 National Centre for the Performing Arts 国家大剧院'),
(83307, 'https://ror.org/01e0hb698', 'en', 1, 'https://ror.org/01e0hb698 Islamic Azad University of Falavarjan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ ŁŁ„Ų§ŁˆŲ±Ų¬Ų§Ł†'),
(83308, 'https://ror.org/05rhnav51', 'en', 1, 'https://ror.org/05rhnav51 The Kubert School'),
(83309, 'https://ror.org/04kytbz16', 'en', 1, 'https://ror.org/04kytbz16 Genesis Research Institute'),
(83310, 'https://ror.org/05xd6yn79', 'en', 1, 'https://ror.org/05xd6yn79 Wayne and Gladys Valley Foundation'),
(83311, 'https://ror.org/03qrdjy81', 'no_lang_code', 1, 'https://ror.org/03qrdjy81 Bombardier Produits Recreatifs Bombardier Recreational Products (Canada)'),
(83312, 'https://ror.org/044asbp74', 'en', 1, 'https://ror.org/044asbp74 San Antonio Area Foundation'),
(83313, 'https://ror.org/05630j976', 'en', 1, 'https://ror.org/05630j976 Bay Area Black United Fund'),
(83314, 'https://ror.org/03ha87v47', 'en', 1, 'https://ror.org/03ha87v47 The Myositis Association'),
(83315, 'https://ror.org/04k8a6441', 'en', 1, 'https://ror.org/04k8a6441 Charcot-Marie-Tooth Association'),
(83316, 'https://ror.org/009qxag31', 'en', 1, 'https://ror.org/009qxag31 Kohno Clinical Medicine Research Institute å…¬ē›Šč²”å›£ę³•äŗŗę²³é‡Žč‡Øē‰€åŒ»å­¦ē ”ē©¶ę‰€'),
(83317, 'https://ror.org/05tjfpm07', 'en', 1, 'https://ror.org/05tjfpm07 American Society for Mass Spectrometry'),
(83318, 'https://ror.org/02v046k89', 'en', 1, 'https://ror.org/02v046k89 Finnish Work Environment Fund'),
(83319, 'https://ror.org/00ngcjt35', 'en', 1, 'https://ror.org/00ngcjt35 Findlay Hancock County Public Library'),
(83320, 'https://ror.org/02kpnd089', 'en', 1, 'https://ror.org/02kpnd089 Ontario Historical Society'),
(83321, 'https://ror.org/05tvqac82', 'en', 1, 'https://ror.org/05tvqac82 Japan Association for the Advancement of Medical Equipment å…¬ē›Šč²”å›£ę³•äŗŗåŒ»ē™‚ę©Ÿå™Øć‚»ćƒ³ć‚æćƒ¼'),
(83322, 'https://ror.org/00br6vq85', 'en', 1, 'https://ror.org/00br6vq85 Larry L. Hillblom Foundation'),
(83323, 'https://ror.org/04cz7vv04', 'en', 1, 'https://ror.org/04cz7vv04 Mend a Heart Foundation'),
(83324, 'https://ror.org/05wszs827', 'en', 1, 'https://ror.org/05wszs827 Nippon Foundation ę—„ęœ¬č²”å›£'),
(83325, 'https://ror.org/03azvtz79', 'es', 1, 'https://ror.org/03azvtz79 Corporacion Biotec'),
(83326, 'https://ror.org/00t38a349', 'en', 1, 'https://ror.org/00t38a349 Cancer Research Society SociƩtƩ de Recherche sur le Cancer'),
(83327, 'https://ror.org/02xx36a62', 'en', 1, 'https://ror.org/02xx36a62 Dove Cottage & the Wordsworth Museum'),
(83328, 'https://ror.org/03sw64e71', 'en', 1, 'https://ror.org/03sw64e71 Indo-US Science and Technology Forum'),
(83329, 'https://ror.org/03kshwk87', 'en', 1, 'https://ror.org/03kshwk87 Equal Measure'),
(83330, 'https://ror.org/03pj47d12', 'no_lang_code', 1, 'https://ror.org/03pj47d12 Graymont (Canada)'),
(83331, 'https://ror.org/03hc33848', 'en', 1, 'https://ror.org/03hc33848 FH Foundation'),
(83332, 'https://ror.org/01gb99w41', 'en', 1, 'https://ror.org/01gb99w41 Escuela PolitƩcnica Nacional National Polytechnic School'),
(83333, 'https://ror.org/05b3yy015', 'en', 1, 'https://ror.org/05b3yy015 Social Change and Development'),
(83334, 'https://ror.org/031kn1t70', 'en', 1, 'https://ror.org/031kn1t70 Illinois Coalition Against Sexual Assault'),
(83335, 'https://ror.org/04tehk585', 'en', 1, 'https://ror.org/04tehk585 United African University of Tanzania'),
(83336, 'https://ror.org/00c959925', 'en', 1, 'https://ror.org/00c959925 Latin American and Caribbean Consortium of Engineering Institutions'),
(83337, 'https://ror.org/0325z9a60', 'no_lang_code', 1, 'https://ror.org/0325z9a60 ZBC Multicare (Netherlands)'),
(83338, 'https://ror.org/043291659', 'en', 1, 'https://ror.org/043291659 Joe W. and Dorothy Dorsett Brown Foundation'),
(83339, 'https://ror.org/04zepk655', 'en', 1, 'https://ror.org/04zepk655 Qom University of Technology'),
(83340, 'https://ror.org/010387529', 'en', 1, 'https://ror.org/010387529 China Primary Health Care Foundation äø­å›½åˆēŗ§å«ē”Ÿäæå„åŸŗé‡‘ä¼š'),
(83341, 'https://ror.org/013eq5k35', 'es', 1, 'https://ror.org/013eq5k35 Universidad Metropolitana Castro Carazo'),
(83342, 'https://ror.org/01y39ha98', 'en', 1, 'https://ror.org/01y39ha98 Institutului National de Metrologie National Institute of Metrology'),
(83343, 'https://ror.org/0227c4549', 'nl', 1, 'https://ror.org/0227c4549 Stichting De Weijerhorst'),
(83344, 'https://ror.org/02fq0hm69', 'en', 1, 'https://ror.org/02fq0hm69 Friesland College'),
(83345, 'https://ror.org/0299hgx34', 'en', 1, 'https://ror.org/0299hgx34 London Borough of Camden'),
(83346, 'https://ror.org/04zs36046', 'en', 1, 'https://ror.org/04zs36046 Sardar Swaran Singh National Institute of Bio-Energy'),
(83347, 'https://ror.org/00ez2he07', 'en', 1, 'https://ror.org/00ez2he07 Max Planck Institute for Mathematics in the Sciences Max-Planck-Institut für Mathematik in den Naturwissenschaften'),
(83348, 'https://ror.org/02cmtcb39', 'fr', 1, 'https://ror.org/02cmtcb39 Action LIONS Vaincre le Cancer'),
(83349, 'https://ror.org/027v6rz13', 'en', 1, 'https://ror.org/027v6rz13 Global Foundation for Eating Disorders'),
(83350, 'https://ror.org/0571zhe53', 'en', 1, 'https://ror.org/0571zhe53 Lean Enterprise Institute Polska'),
(83351, 'https://ror.org/03ykge061', 'en', 1, 'https://ror.org/03ykge061 Rochester Museum and Science Center'),
(83352, 'https://ror.org/02jq72y97', 'en', 1, 'https://ror.org/02jq72y97 Czechoslovak Documentation Centre'),
(83353, 'https://ror.org/00s81bq54', 'no_lang_code', 1, 'https://ror.org/00s81bq54 Jawbone (United States)'),
(83354, 'https://ror.org/02f5hys27', 'en', 1, 'https://ror.org/02f5hys27 Ernst Schering Foundation Schering Stiftung'),
(83355, 'https://ror.org/04na04870', 'en', 1, 'https://ror.org/04na04870 Fondation De La RƩtine Du Canada The Retina Foundation of Canada'),
(83356, 'https://ror.org/01pxhsx10', 'en', 1, 'https://ror.org/01pxhsx10 Council of Professional Geropsychology Training Programs'),
(83357, 'https://ror.org/03yc0k631', 'en', 1, 'https://ror.org/03yc0k631 Milagro Foundation'),
(83358, 'https://ror.org/050v4jr11', 'de', 1, 'https://ror.org/050v4jr11 Head Genuit Stiftung'),
(83359, 'https://ror.org/05m0kbg48', 'en', 1, 'https://ror.org/05m0kbg48 Anita Borg Institute'),
(83360, 'https://ror.org/01hnzmd62', 'no_lang_code', 1, 'https://ror.org/01hnzmd62 Smart Information Flow Technologies (United States)'),
(83361, 'https://ror.org/01kabe474', 'en', 1, 'https://ror.org/01kabe474 Institute of Molecular Sciences and Bioinformatics'),
(83362, 'https://ror.org/04w9bz196', 'en', 1, 'https://ror.org/04w9bz196 Canadian Institute of Steel Construction'),
(83363, 'https://ror.org/05p61mv27', 'en', 1, 'https://ror.org/05p61mv27 The Dodd-Walls Centre for Photonic and Quantum Technologies'),
(83364, 'https://ror.org/03pwwck46', 'en', 1, 'https://ror.org/03pwwck46 International Foundation for Science'),
(83365, 'https://ror.org/01qb09m39', 'no_lang_code', 1, 'https://ror.org/01qb09m39 Lincoln Agritech (New Zealand)'),
(83366, 'https://ror.org/03s0c9350', 'en', 1, 'https://ror.org/03s0c9350 University of America'),
(83367, 'https://ror.org/05fe3mw64', 'no_lang_code', 1, 'https://ror.org/05fe3mw64 Algaecytes (United Kingdom)'),
(83368, 'https://ror.org/00pb2ch30', 'no_lang_code', 1, 'https://ror.org/00pb2ch30 Taawon'),
(83369, 'https://ror.org/04mw59b52', 'en', 1, 'https://ror.org/04mw59b52 Montessori Education Center of the Rockies'),
(83370, 'https://ror.org/0550zmx90', 'de', 1, 'https://ror.org/0550zmx90 Deutsche Telekom Stiftung'),
(83371, 'https://ror.org/00jxpy231', 'en', 1, 'https://ror.org/00jxpy231 Midwest University'),
(83372, 'https://ror.org/03960jw18', 'en', 1, 'https://ror.org/03960jw18 Genesis Oncology Trust'),
(83373, 'https://ror.org/00qc3ww81', 'en', 1, 'https://ror.org/00qc3ww81 Nova Scotia Health Research Foundation'),
(83374, 'https://ror.org/01yqx2960', 'en', 1, 'https://ror.org/01yqx2960 Ashland Bellefonte Cancer Center'),
(83375, 'https://ror.org/01rxg5p40', 'en', 1, 'https://ror.org/01rxg5p40 Institute of Mathematics and its Applications'),
(83376, 'https://ror.org/02a8qtz61', 'no_lang_code', 1, 'https://ror.org/02a8qtz61 Montimage (France)'),
(83377, 'https://ror.org/03gmcft65', 'no_lang_code', 1, 'https://ror.org/03gmcft65 Muons (United States)'),
(83378, 'https://ror.org/05mgw0849', 'en', 1, 'https://ror.org/05mgw0849 The Historical Society of Israel החברה ×”×”×™×”×˜×•×Ø×™×Ŗ ×”×™×©×Ø××œ×™×Ŗ'),
(83379, 'https://ror.org/022rdc149', 'da', 1, 'https://ror.org/022rdc149 Colitis-Crohn Foreningen'),
(83380, 'https://ror.org/03m9js843', 'no_lang_code', 1, 'https://ror.org/03m9js843 WilliamsRDM (United States)'),
(83381, 'https://ror.org/00srzz415', 'no_lang_code', 1, 'https://ror.org/00srzz415 HeiTech Services (United States)'),
(83382, 'https://ror.org/02n6dj587', 'en', 1, 'https://ror.org/02n6dj587 Breast Cancer Alliance'),
(83383, 'https://ror.org/04rxm5737', 'no_lang_code', 1, 'https://ror.org/04rxm5737 Alberta Newsprint Company (Canada)'),
(83384, 'https://ror.org/016nrk268', 'en', 1, 'https://ror.org/016nrk268 Lipedema Foundation'),
(83385, 'https://ror.org/03r2bjn02', 'en', 1, 'https://ror.org/03r2bjn02 The Japan Society of Mechanical Engineers äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę©Ÿę¢°å­¦ä¼š'),
(83386, 'https://ror.org/04fzdb789', 'en', 1, 'https://ror.org/04fzdb789 New Mongol Institute of Technology ŠØŠøŠ½Ń Монгол Технологийн Š“ŃŃŠ“ ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(83387, 'https://ror.org/03qjn3379', 'no_lang_code', 1, 'https://ror.org/03qjn3379 SpheriTech (United Kingdom)'),
(83388, 'https://ror.org/00259ge12', 'en', 1, 'https://ror.org/00259ge12 Children Living with Inherited Metabolic Diseases'),
(83389, 'https://ror.org/042mrbn39', 'en', 1, 'https://ror.org/042mrbn39 Canadian Poultry Research Council Le Conseil de recherches avicoles du Canada'),
(83390, 'https://ror.org/01rjx3896', 'fr', 1, 'https://ror.org/01rjx3896 Bipea'),
(83391, 'https://ror.org/02qhd3x73', 'en', 1, 'https://ror.org/02qhd3x73 TechnoServe'),
(83392, 'https://ror.org/05vsmsp39', 'en', 1, 'https://ror.org/05vsmsp39 Spalding Trust'),
(83393, 'https://ror.org/00yyjm707', 'no_lang_code', 1, 'https://ror.org/00yyjm707 Tongfu Microelectronics (China)'),
(83394, 'https://ror.org/04vnygp31', 'en', 1, 'https://ror.org/04vnygp31 Swisselectric'),
(83395, 'https://ror.org/00et6q107', 'en', 1, 'https://ror.org/00et6q107 Lovely Professional University ਲਵਲੀ ąØŖą©ąØ°ą©‹ąØ«ą©ˆąØøąØ¼ąØØąØ² ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(83396, 'https://ror.org/03tbtgq51', 'en', 1, 'https://ror.org/03tbtgq51 Tokyo Environmental Public Service Corporation ę±äŗ¬éƒ½ē’°å¢ƒå…¬ē¤¾'),
(83397, 'https://ror.org/00xsc8q85', 'en', 1, 'https://ror.org/00xsc8q85 Cocoa Research Institute of Nigeria'),
(83398, 'https://ror.org/04dhvqz48', 'en', 1, 'https://ror.org/04dhvqz48 Independent Colleges and Universities of Florida'),
(83399, 'https://ror.org/03hnrwx04', 'en', 1, 'https://ror.org/03hnrwx04 Thrasher Research Fund'),
(83400, 'https://ror.org/009ynjf67', 'en', 1, 'https://ror.org/009ynjf67 Cass Foundation'),
(83401, 'https://ror.org/011637r53', 'en', 1, 'https://ror.org/011637r53 The Battlefields Trust'),
(83402, 'https://ror.org/02x89jc96', 'en', 1, 'https://ror.org/02x89jc96 Austria Institut für Europa- und Sicherheitspolitik Austrian Institute for European and Security Policy'),
(83403, 'https://ror.org/00q8qjx07', 'no_lang_code', 1, 'https://ror.org/00q8qjx07 IEE (Luxembourg)'),
(83404, 'https://ror.org/05eq5fr57', 'en', 1, 'https://ror.org/05eq5fr57 International Educational Foundation'),
(83405, 'https://ror.org/02xkg9c32', 'en', 1, 'https://ror.org/02xkg9c32 Korean Association of Shipping and Logistics ķ•œźµ­ķ•“ģš“ė¬¼ė„˜ķ•™ķšŒ'),
(83406, 'https://ror.org/03cpsrf24', 'en', 1, 'https://ror.org/03cpsrf24 La Fondation Ơ la Memoire de Lars Hierta Lars Hierta Memorial Foundation Lars-Hierta-GedƤchtnis-Stiftung'),
(83407, 'https://ror.org/03cey6t89', 'en', 1, 'https://ror.org/03cey6t89 Bennett College'),
(83408, 'https://ror.org/00j9jer02', 'en', 1, 'https://ror.org/00j9jer02 Foundation for Alcohol Research and Education'),
(83409, 'https://ror.org/05he43612', 'no_lang_code', 1, 'https://ror.org/05he43612 TE Connectivity (Switzerland)'),
(83410, 'https://ror.org/02gd2pm65', 'en', 1, 'https://ror.org/02gd2pm65 Grand Slam Club/Ovis'),
(83411, 'https://ror.org/016keqt57', 'en', 1, 'https://ror.org/016keqt57 Center For Advanced Meta-Materials'),
(83412, 'https://ror.org/01nwfnh39', 'en', 1, 'https://ror.org/01nwfnh39 Uganda Technology and Management University'),
(83413, 'https://ror.org/04ycngs67', 'en', 1, 'https://ror.org/04ycngs67 Pueblo of Laguna'),
(83414, 'https://ror.org/02khz2m68', 'en', 1, 'https://ror.org/02khz2m68 American College of Veterinary Pathologists'),
(83415, 'https://ror.org/03k70ea39', 'no_lang_code', 1, 'https://ror.org/03k70ea39 CMC Microsystems (Canada)'),
(83416, 'https://ror.org/00yrf4e35', 'it', 1, 'https://ror.org/00yrf4e35 Observatoire astronomique de turin Osservatorio Astrofisico di Torino Osservatorio Astronomico di Torino Osservatorio astronomico di Torino'),
(83417, 'https://ror.org/03jbt3445', 'en', 1, 'https://ror.org/03jbt3445 Foundation for Economic Education Liikesivistysrahasto'),
(83418, 'https://ror.org/01577qj03', 'en', 1, 'https://ror.org/01577qj03 Educational Advancement Foundation'),
(83419, 'https://ror.org/01g46yn94', 'en', 1, 'https://ror.org/01g46yn94 Hyogo Earthquake Memorial 21st Century Research Institute å…¬ē›Šč²”å›£ę³•äŗŗ ć²ć‚‡ć†ć”éœ‡ē½čØ˜åæµ21äø–ē“€ē ”ē©¶ę©Ÿę§‹'),
(83420, 'https://ror.org/05bsp4630', 'no_lang_code', 1, 'https://ror.org/05bsp4630 Unison (United Kingdom)'),
(83421, 'https://ror.org/02e271b61', 'en', 1, 'https://ror.org/02e271b61 Huntington Hospital'),
(83422, 'https://ror.org/04n3c2195', 'en', 1, 'https://ror.org/04n3c2195 Directorate of Medicinal and Aromatic Plants Research ઔષધીય ąŖ”ąŖæąŖ°ą«‡ąŖ•ą«ąŖŸą«‹ąŖ°ą«‡ąŖŸ અને ąŖ–ą«ąŖ¶ą«ąŖ¬ą«‹ąŖ¦ąŖ¾ąŖ° છોઔ ąŖøąŖ‚ąŖ¶ą«‹ąŖ§ąŖØ'),
(83423, 'https://ror.org/00znz6a90', 'en', 1, 'https://ror.org/00znz6a90 National Institute of Technology Akita College ē§‹ē”°å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(83424, 'https://ror.org/009knm296', 'en', 1, 'https://ror.org/009knm296 Chang Gung University of Science and Technology'),
(83425, 'https://ror.org/011v5mm15', 'no_lang_code', 1, 'https://ror.org/011v5mm15 Esgee Technologies (United States)'),
(83426, 'https://ror.org/050dcex74', 'en', 1, 'https://ror.org/050dcex74 Scranton Area Foundation'),
(83427, 'https://ror.org/04ee4nv15', 'en', 1, 'https://ror.org/04ee4nv15 Helicopter Association International'),
(83428, 'https://ror.org/0097kbr85', 'no_lang_code', 1, 'https://ror.org/0097kbr85 ASKA Pharmaceutical (Japan) ć‚ć™ć‹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(83429, 'https://ror.org/05c7q3x69', 'en', 1, 'https://ror.org/05c7q3x69 Judith and Jean Pape Adams Charitable Foundation'),
(83430, 'https://ror.org/03wfm3b62', 'en', 1, 'https://ror.org/03wfm3b62 Foundation for Circulatory Health'),
(83431, 'https://ror.org/00ppbz497', 'en', 1, 'https://ror.org/00ppbz497 German Rectors'' Conference Hochschulrektorenkonferenz'),
(83432, 'https://ror.org/003x8vn84', 'en', 1, 'https://ror.org/003x8vn84 The SUDD Institute'),
(83433, 'https://ror.org/00ydera23', 'en', 1, 'https://ror.org/00ydera23 California Health Care Safety Net Institute'),
(83434, 'https://ror.org/038kxvq41', 'en', 1, 'https://ror.org/038kxvq41 IBAIS University ইবাইস ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(83435, 'https://ror.org/02nzadc54', 'de', 1, 'https://ror.org/02nzadc54 Hochschule für öffentliche Verwaltung Rheinland-Pfalz'),
(83436, 'https://ror.org/058trsp78', 'en', 1, 'https://ror.org/058trsp78 Canadian Aeronautics and Space Institute'),
(83437, 'https://ror.org/04514dx43', 'en', 1, 'https://ror.org/04514dx43 The New Press'),
(83438, 'https://ror.org/0546cwv32', 'en', 1, 'https://ror.org/0546cwv32 Society for Cardiothoracic Surgery in Great Britain & Ireland'),
(83439, 'https://ror.org/02kkmhw09', 'it', 1, 'https://ror.org/02kkmhw09 Fondazione Progetto Ematologia'),
(83440, 'https://ror.org/00chym228', 'en', 1, 'https://ror.org/00chym228 Hilda and Preston Davis Foundation'),
(83441, 'https://ror.org/00rqs0x69', 'en', 1, 'https://ror.org/00rqs0x69 New Jersey Space Grant Consortium'),
(83442, 'https://ror.org/00xh62v25', 'en', 1, 'https://ror.org/00xh62v25 Consortium for Plant Biotechnology Research'),
(83443, 'https://ror.org/04wdc4w42', 'en', 1, 'https://ror.org/04wdc4w42 National GEM Consortium'),
(83444, 'https://ror.org/01b3wxx33', 'no_lang_code', 1, 'https://ror.org/01b3wxx33 UPM (Finland)'),
(83445, 'https://ror.org/046vpvn06', 'no_lang_code', 1, 'https://ror.org/046vpvn06 Dignify Therapeutics (United States)'),
(83446, 'https://ror.org/03nyext11', 'en', 1, 'https://ror.org/03nyext11 Pacific Eye Associates'),
(83447, 'https://ror.org/05ma41w62', 'en', 1, 'https://ror.org/05ma41w62 Grand Charleroi Hospital Grand HƓpital de Charleroi'),
(83448, 'https://ror.org/021ty3131', 'en', 1, 'https://ror.org/021ty3131 Wuhan No.1 Hospital ę­¦ę±‰åø‚ē¬¬äø€åŒ»é™¢'),
(83449, 'https://ror.org/00kbjsx88', 'en', 1, 'https://ror.org/00kbjsx88 National Institute of Science and Technology Policy ē§‘å­¦ęŠ€č”“ćƒ»å­¦č”“ę”æē­–ē ”ē©¶ę‰€'),
(83450, 'https://ror.org/00zpmfv41', 'no_lang_code', 1, 'https://ror.org/00zpmfv41 CellCentric (United Kingdom)'),
(83451, 'https://ror.org/03a3c3b64', 'en', 1, 'https://ror.org/03a3c3b64 British Mass Spectrometry Society'),
(83452, 'https://ror.org/05bwv7f37', 'en', 1, 'https://ror.org/05bwv7f37 Istituto Italiano di Telemedicina Italian Institute of Telemedicine'),
(83453, 'https://ror.org/01mwe3155', 'no_lang_code', 1, 'https://ror.org/01mwe3155 Domainex (United Kingdom)'),
(83454, 'https://ror.org/01dej0523', 'en', 1, 'https://ror.org/01dej0523 International Renewable Energy Agency'),
(83455, 'https://ror.org/01pxka825', 'en', 1, 'https://ror.org/01pxka825 United States Bone and Joint Initiative'),
(83456, 'https://ror.org/031ck0t15', 'en', 1, 'https://ror.org/031ck0t15 Kirov State Medical Academy ŠšŠøŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(83457, 'https://ror.org/02e5yg619', 'en', 1, 'https://ror.org/02e5yg619 Infection Prevention Society'),
(83458, 'https://ror.org/00qg0kr10', 'en', 1, 'https://ror.org/00qg0kr10 Tokyo University of Agriculture and Technology ę±äŗ¬č¾²å·„å¤§å­¦'),
(83459, 'https://ror.org/05w7raw17', 'en', 1, 'https://ror.org/05w7raw17 Heineman Foundation'),
(83460, 'https://ror.org/04cnw7m40', 'en', 1, 'https://ror.org/04cnw7m40 Lung Cancer Online Foundation'),
(83461, 'https://ror.org/00wm1xy63', 'en', 1, 'https://ror.org/00wm1xy63 Handel Institute'),
(83462, 'https://ror.org/00jv35z76', 'en', 1, 'https://ror.org/00jv35z76 Freshwater Future'),
(83463, 'https://ror.org/02ttb5s67', 'en', 1, 'https://ror.org/02ttb5s67 Collurania Teramo Observatory Osservatorio Astronomico di Collurania "Vincenzo Cerulli"'),
(83464, 'https://ror.org/04qm1zm15', 'en', 1, 'https://ror.org/04qm1zm15 Huntsville Bible College'),
(83465, 'https://ror.org/04e65y578', 'nl', 1, 'https://ror.org/04e65y578 Janivo Stichting'),
(83466, 'https://ror.org/02vpnw348', 'no_lang_code', 1, 'https://ror.org/02vpnw348 SS&C Technologies (United States)'),
(83467, 'https://ror.org/028pbhy75', 'en', 1, 'https://ror.org/028pbhy75 Graduate Institute for Entrepreneurial Studies 事愭創造大学院大学'),
(83468, 'https://ror.org/05cw39e32', 'en', 1, 'https://ror.org/05cw39e32 Museum of Chinese in America'),
(83469, 'https://ror.org/04n3dya31', 'en', 1, 'https://ror.org/04n3dya31 1675 Foundation'),
(83470, 'https://ror.org/05h54z930', 'no_lang_code', 1, 'https://ror.org/05h54z930 AeroDynamic Solutions (United States)'),
(83471, 'https://ror.org/00hqvzh35', 'en', 1, 'https://ror.org/00hqvzh35 Caplan Foundation for Early Childhood'),
(83472, 'https://ror.org/01jgv6w72', 'en', 1, 'https://ror.org/01jgv6w72 National Institute for Theoretical Physics'),
(83473, 'https://ror.org/0531yb032', 'no_lang_code', 1, 'https://ror.org/0531yb032 Bulgarian Biodiversity Foundation Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š¤Š¾Š½Š“Š°Ń†ŠøŃ Биоразнообразие'),
(83474, 'https://ror.org/044r7zq77', 'en', 1, 'https://ror.org/044r7zq77 American College of Healthcare Architects'),
(83475, 'https://ror.org/04bagk413', 'en', 1, 'https://ror.org/04bagk413 Connecticut Breast Health Initiative'),
(83476, 'https://ror.org/01wy67m98', 'es', 1, 'https://ror.org/01wy67m98 Fundación Banco Santander'),
(83477, 'https://ror.org/05fdvx677', 'en', 1, 'https://ror.org/05fdvx677 Firland Foundation'),
(83478, 'https://ror.org/04e19s431', 'en', 1, 'https://ror.org/04e19s431 American Hearing Research Foundation'),
(83479, 'https://ror.org/05g2jq450', 'no_lang_code', 1, 'https://ror.org/05g2jq450 ČeskÔ Zbrojovka (Czechia)'),
(83480, 'https://ror.org/01cevhq98', 'en', 1, 'https://ror.org/01cevhq98 Vermont Community Foundation'),
(83481, 'https://ror.org/01byttc20', 'en', 1, 'https://ror.org/01byttc20 International Peace Maternity & Child Health Hospital'),
(83482, 'https://ror.org/041nggf72', 'en', 1, 'https://ror.org/041nggf72 Tree Research and Education Endowment Fund'),
(83483, 'https://ror.org/00kgf1c95', 'de', 1, 'https://ror.org/00kgf1c95 Velux Stiftung'),
(83484, 'https://ror.org/059zzdv42', 'en', 1, 'https://ror.org/059zzdv42 African Society for Laboratory Medicine'),
(83485, 'https://ror.org/03v8t4025', 'en', 1, 'https://ror.org/03v8t4025 Russian Quantum Center ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ центр квантовой оптики Šø квантовых технологий'),
(83486, 'https://ror.org/03vqbqd44', 'en', 1, 'https://ror.org/03vqbqd44 Manchester and Lancashire Family History Society'),
(83487, 'https://ror.org/0555q8a52', 'no_lang_code', 1, 'https://ror.org/0555q8a52 Advanced Cell Diagnostics (United States)'),
(83488, 'https://ror.org/0482xmh13', 'en', 1, 'https://ror.org/0482xmh13 PATH To Reading'),
(83489, 'https://ror.org/04fp9ma57', 'en', 1, 'https://ror.org/04fp9ma57 Neurosurgery Research & Education Foundation'),
(83490, 'https://ror.org/03drnns50', 'no_lang_code', 1, 'https://ror.org/03drnns50 OvaScience (United States)'),
(83491, 'https://ror.org/01r5gad37', 'en', 1, 'https://ror.org/01r5gad37 Marine Corps University'),
(83492, 'https://ror.org/04knez035', 'no_lang_code', 1, 'https://ror.org/04knez035 Dominica State College'),
(83493, 'https://ror.org/04njech58', 'es', 1, 'https://ror.org/04njech58 Universidad Tecnológica La Salle'),
(83494, 'https://ror.org/03jwgbj27', 'en', 1, 'https://ror.org/03jwgbj27 Hawaii Community Foundation'),
(83495, 'https://ror.org/05fd4d895', 'en', 1, 'https://ror.org/05fd4d895 Tsimbazaza Zoo'),
(83496, 'https://ror.org/04p5vbd56', 'fi', 1, 'https://ror.org/04p5vbd56 Turun KauppaopetussƤƤtiƶ'),
(83497, 'https://ror.org/01v0c1y10', 'en', 1, 'https://ror.org/01v0c1y10 EBZ Business School'),
(83498, 'https://ror.org/0294che38', 'nl', 1, 'https://ror.org/0294che38 Stichting Coolsingel'),
(83499, 'https://ror.org/00f6kbf47', 'ca', 1, 'https://ror.org/00f6kbf47 Hospital San Juan de Alicante Hospital Universitari Sant Joan D''Alacant'),
(83500, 'https://ror.org/04v95hh54', 'no_lang_code', 1, 'https://ror.org/04v95hh54 Adelphi Technology (United States)'),
(83501, 'https://ror.org/00gs9jv27', 'no_lang_code', 1, 'https://ror.org/00gs9jv27 Avid Bioservices (United States)'),
(83502, 'https://ror.org/03xb6vv35', 'en', 1, 'https://ror.org/03xb6vv35 Peacock Foundation'),
(83503, 'https://ror.org/022r1q746', 'en', 1, 'https://ror.org/022r1q746 Korea Environmental Industry and Technology Institute'),
(83504, 'https://ror.org/0191zmb05', 'no_lang_code', 1, 'https://ror.org/0191zmb05 Yoshino Kogyosho (Japan)'),
(83505, 'https://ror.org/00pn1pd75', 'en', 1, 'https://ror.org/00pn1pd75 The Taylor Matthews Foundation'),
(83506, 'https://ror.org/03nxex423', 'en', 1, 'https://ror.org/03nxex423 King Center'),
(83507, 'https://ror.org/013av7j49', 'no', 1, 'https://ror.org/013av7j49 Larvik kommune'),
(83508, 'https://ror.org/05pwe5727', 'en', 1, 'https://ror.org/05pwe5727 Iredell Statesville Schools'),
(83509, 'https://ror.org/0441pfj90', 'en', 1, 'https://ror.org/0441pfj90 The Second Affiliated Hospital of Bengbu Medical College čšŒåŸ åŒ»å­¦é™¢ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(83510, 'https://ror.org/0580rm578', 'en', 1, 'https://ror.org/0580rm578 Polytechnic University of Queretaro Universidad PolitƩcnica de QuerƩtaro'),
(83511, 'https://ror.org/0459rb715', 'it', 1, 'https://ror.org/0459rb715 Accademia di Belle Arti di Catanzaro'),
(83512, 'https://ror.org/013x33b33', 'sv', 1, 'https://ror.org/013x33b33 Demensfƶrbundet'),
(83513, 'https://ror.org/00f1h3n75', 'no_lang_code', 1, 'https://ror.org/00f1h3n75 Satavahana University'),
(83514, 'https://ror.org/00q9e8141', 'en', 1, 'https://ror.org/00q9e8141 Alberta Crop Industry Development Fund'),
(83515, 'https://ror.org/02yt0ry35', 'en', 1, 'https://ror.org/02yt0ry35 Odessa State Academy of Civil Engineering and Architecture ŠžŠ“ŠµŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° та Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(83516, 'https://ror.org/04550kp61', 'nl', 1, 'https://ror.org/04550kp61 Stichting ParkinsonFonds'),
(83517, 'https://ror.org/04t0qr802', 'en', 1, 'https://ror.org/04t0qr802 Hill Stead Museum'),
(83518, 'https://ror.org/042ew0574', 'en', 1, 'https://ror.org/042ew0574 Trinity House'),
(83519, 'https://ror.org/009ggvy85', 'en', 1, 'https://ror.org/009ggvy85 Deutsche Kniegesellschaft e.V. German Knee Society'),
(83520, 'https://ror.org/00pyr0344', 'en', 1, 'https://ror.org/00pyr0344 Toronto Arts Council'),
(83521, 'https://ror.org/03kfr2z97', 'en', 1, 'https://ror.org/03kfr2z97 Skyrail Rainforest Foundation'),
(83522, 'https://ror.org/05avgjx06', 'en', 1, 'https://ror.org/05avgjx06 Black AIDS Institute'),
(83523, 'https://ror.org/05v3dr438', 'en', 1, 'https://ror.org/05v3dr438 Nur International University'),
(83524, 'https://ror.org/01j818n92', 'en', 1, 'https://ror.org/01j818n92 Institute for Bee Research Länderinstitut für Bienenkunde'),
(83525, 'https://ror.org/00k58qq42', 'en', 1, 'https://ror.org/00k58qq42 National Center for Health Research'),
(83526, 'https://ror.org/01zadmh83', 'no_lang_code', 1, 'https://ror.org/01zadmh83 Forest Protection Limited (Canada)'),
(83527, 'https://ror.org/02zekek97', 'fr', 1, 'https://ror.org/02zekek97 Centre Hospitalier Universitaire de Tivoli'),
(83528, 'https://ror.org/02599rs64', 'en', 1, 'https://ror.org/02599rs64 The Institute of Moralogy ćƒ¢ćƒ©ćƒ­ć‚øćƒ¼ē ”ē©¶ę‰€'),
(83529, 'https://ror.org/04exjw682', 'no_lang_code', 1, 'https://ror.org/04exjw682 ArboraNano'),
(83530, 'https://ror.org/05ye86j67', 'no_lang_code', 1, 'https://ror.org/05ye86j67 Carmot Therapeutics (United States)'),
(83531, 'https://ror.org/0084rfk23', 'en', 1, 'https://ror.org/0084rfk23 Blanton Peale Institute and Counseling Center'),
(83532, 'https://ror.org/0456wj203', 'en', 1, 'https://ror.org/0456wj203 Cured Foundation'),
(83533, 'https://ror.org/029hv3472', 'en', 1, 'https://ror.org/029hv3472 American Glaucoma Society');
INSERT INTO `rors` VALUES
(83534, 'https://ror.org/02v16jm22', 'en', 1, 'https://ror.org/02v16jm22 Native Arts and Cultures Foundation'),
(83535, 'https://ror.org/053n2g124', 'no_lang_code', 1, 'https://ror.org/053n2g124 BG Consulting Engineers (Switzerland) BG Ingenieure und Berater BG IngƩnieurs Conseils'),
(83536, 'https://ror.org/05m9v4v71', 'no_lang_code', 1, 'https://ror.org/05m9v4v71 Edimer Pharmaceuticals (United States)'),
(83537, 'https://ror.org/00qdqkj20', 'en', 1, 'https://ror.org/00qdqkj20 Association of Ontario Midwives'),
(83538, 'https://ror.org/041gvrq41', 'en', 1, 'https://ror.org/041gvrq41 Dundee Science Centre'),
(83539, 'https://ror.org/01fkt0w56', 'en', 1, 'https://ror.org/01fkt0w56 Genesee Country Village and Museum'),
(83540, 'https://ror.org/027pq4845', 'en', 1, 'https://ror.org/027pq4845 Cheju Halla General Hospital ģ œģ£¼ķ•œė¼ė³‘ģ›'),
(83541, 'https://ror.org/03vcw8q46', 'en', 1, 'https://ror.org/03vcw8q46 Myanmar Maritime University į€™į€¼į€”į€ŗį€™į€¬į€”į€­į€Æį€„į€ŗį€„į€¶į€›į€±į€€į€¼į€±į€¬į€„į€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(83542, 'https://ror.org/0488pxx86', 'en', 1, 'https://ror.org/0488pxx86 Universidad de Granma University of Granma'),
(83543, 'https://ror.org/059e0mb30', 'no_lang_code', 1, 'https://ror.org/059e0mb30 Cameco (Germany)'),
(83544, 'https://ror.org/04ks0bn11', 'no_lang_code', 1, 'https://ror.org/04ks0bn11 Advatech Pacific (United States)'),
(83545, 'https://ror.org/030ejb683', 'en', 1, 'https://ror.org/030ejb683 Perth and Kinross Council'),
(83546, 'https://ror.org/04r1zkp10', 'en', 1, 'https://ror.org/04r1zkp10 Jiangxi Science and Technology Normal University ę±Ÿč„æē§‘ęŠ€åøˆčŒƒå¤§å­¦'),
(83547, 'https://ror.org/01t9rwr70', 'en', 1, 'https://ror.org/01t9rwr70 Association Canadienne de GastroentƩrologie Canadian Association of Gastroenterology'),
(83548, 'https://ror.org/013rtse27', 'en', 1, 'https://ror.org/013rtse27 Harris and Eliza Kempner Fund'),
(83549, 'https://ror.org/05v0bzq53', 'no_lang_code', 1, 'https://ror.org/05v0bzq53 Foster + Freeman (United Kingdom)'),
(83550, 'https://ror.org/00zaskn60', 'en', 1, 'https://ror.org/00zaskn60 College of Tourism and Hotel Management Κολλέγιο Ī¤ĪæĻ…ĻĪ¹ĻƒĪ¼ĪæĻ και Ī”Ī¹ĪæĪÆĪŗĪ·ĻƒĪ·Ļ‚ ĪžĪµĪ½ĪæĪ“ĪæĻ‡ĪµĪÆĻ‰Ī½'),
(83551, 'https://ror.org/03n7fsy46', 'no_lang_code', 1, 'https://ror.org/03n7fsy46 LGL (Canada)'),
(83552, 'https://ror.org/016m7g249', 'en', 1, 'https://ror.org/016m7g249 Center For Produce Safety'),
(83553, 'https://ror.org/03604d246', 'en', 1, 'https://ror.org/03604d246 Japan Surgical Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å¤–ē§‘å­¦ä¼š'),
(83554, 'https://ror.org/01ckx3t21', 'en', 1, 'https://ror.org/01ckx3t21 American Academy of Cosmetic Surgery'),
(83555, 'https://ror.org/03wzt2e41', 'en', 1, 'https://ror.org/03wzt2e41 International Foundation for Sonography Education and Research'),
(83556, 'https://ror.org/04r41ae03', 'de', 1, 'https://ror.org/04r41ae03 Reiner Lemoine Stiftung'),
(83557, 'https://ror.org/03xxhjp07', 'no_lang_code', 1, 'https://ror.org/03xxhjp07 Electro Optical Systems (Germany)'),
(83558, 'https://ror.org/00ej9bc14', 'pt', 1, 'https://ror.org/00ej9bc14 Sociedade Brasileira de Endoscopia Digestiva'),
(83559, 'https://ror.org/052hp3s90', 'en', 1, 'https://ror.org/052hp3s90 Economic History Association'),
(83560, 'https://ror.org/02kmk9y17', 'en', 1, 'https://ror.org/02kmk9y17 First Congregational Church'),
(83561, 'https://ror.org/00tjd7r80', 'en', 1, 'https://ror.org/00tjd7r80 Work + Family Researchers Network'),
(83562, 'https://ror.org/00j0krs40', 'en', 1, 'https://ror.org/00j0krs40 Buraydah Colleges بريدة ŁƒŁ„ŁŠŲ§ŲŖ'),
(83563, 'https://ror.org/02xa8s021', 'en', 1, 'https://ror.org/02xa8s021 The Economic Research Institute for Northeast Asia å…¬ē›Šč²”å›£ę³•äŗŗē’°ę—„ęœ¬ęµ·ēµŒęøˆē ”ē©¶ę‰€'),
(83564, 'https://ror.org/05avqph76', 'en', 1, 'https://ror.org/05avqph76 Children''s Hospital Association'),
(83565, 'https://ror.org/02g22s989', 'no_lang_code', 1, 'https://ror.org/02g22s989 Stanimex (Poland)'),
(83566, 'https://ror.org/04en8na87', 'es', 1, 'https://ror.org/04en8na87 Centro Universitario JosƩ Vasconcelos'),
(83567, 'https://ror.org/04q5w0t20', 'en', 1, 'https://ror.org/04q5w0t20 Milford on Sea War Memorial Hospital'),
(83568, 'https://ror.org/02dddmh90', 'fr', 1, 'https://ror.org/02dddmh90 Fondation de l''Avenir'),
(83569, 'https://ror.org/04znkdb25', 'en', 1, 'https://ror.org/04znkdb25 Flax Council Of Canada'),
(83570, 'https://ror.org/03j0pmr56', 'en', 1, 'https://ror.org/03j0pmr56 National Water Research Institute'),
(83571, 'https://ror.org/02k22h248', 'sl', 1, 'https://ror.org/02k22h248 Ekonomska Å ola Novo Mesto'),
(83572, 'https://ror.org/056eg3t49', 'en', 1, 'https://ror.org/056eg3t49 Otsuka Toshimi Scholarship Foundation'),
(83573, 'https://ror.org/00h8ebz08', 'en', 1, 'https://ror.org/00h8ebz08 Southern African Centre for Infectious Disease Surveillance'),
(83574, 'https://ror.org/022q3vw94', 'no_lang_code', 1, 'https://ror.org/022q3vw94 The Metropolitan Opera (United States)'),
(83575, 'https://ror.org/010rf2m76', 'en', 1, 'https://ror.org/010rf2m76 RIKEN Center for Sustainable Resource Science ē’°å¢ƒč³‡ęŗē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(83576, 'https://ror.org/05jfp8s87', 'en', 1, 'https://ror.org/05jfp8s87 Pediatric Dermatology Research Alliance'),
(83577, 'https://ror.org/05j9tr079', 'en', 1, 'https://ror.org/05j9tr079 Barrett Hospital & HealthCare'),
(83578, 'https://ror.org/059c0tw71', 'en', 1, 'https://ror.org/059c0tw71 MB Research Laboratories'),
(83579, 'https://ror.org/02fj74y77', 'en', 1, 'https://ror.org/02fj74y77 Joe Niekro Foundation'),
(83580, 'https://ror.org/04dckkc60', 'no_lang_code', 1, 'https://ror.org/04dckkc60 Crystal Technology and Industries (United States)'),
(83581, 'https://ror.org/00hdaxs89', 'en', 1, 'https://ror.org/00hdaxs89 Donetsk National Medical University Донецкий Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. Š“Š¾Ń€ŃŒŠŗŠ¾Š³Š¾ Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Максима Š“Š¾Ń€ŃŒŠŗŠ¾Š³Š¾'),
(83582, 'https://ror.org/05j95n956', 'en', 1, 'https://ror.org/05j95n956 Richard and Susan Smith Family Foundation'),
(83583, 'https://ror.org/039fy0s97', 'it', 1, 'https://ror.org/039fy0s97 Associazione Genitori Contro le Leucemie e Tumori Infantili'),
(83584, 'https://ror.org/00qeet526', 'nl', 1, 'https://ror.org/00qeet526 Stichting MS Research'),
(83585, 'https://ror.org/05k3dc376', 'en', 1, 'https://ror.org/05k3dc376 Washington and Jefferson College'),
(83586, 'https://ror.org/037xzfa11', 'en', 1, 'https://ror.org/037xzfa11 Organization for Autism Research'),
(83587, 'https://ror.org/008ehd394', 'nl', 1, 'https://ror.org/008ehd394 Mobiel 21'),
(83588, 'https://ror.org/04f3cbh67', 'en', 1, 'https://ror.org/04f3cbh67 International OCD Foundation'),
(83589, 'https://ror.org/04d16a047', 'en', 1, 'https://ror.org/04d16a047 Foundation for Anesthesia Education and Research'),
(83590, 'https://ror.org/02bxrrf91', 'en', 1, 'https://ror.org/02bxrrf91 Rufford Foundation'),
(83591, 'https://ror.org/036f4qq27', 'en', 1, 'https://ror.org/036f4qq27 The Arrhythmia Institute'),
(83592, 'https://ror.org/00kavjh60', 'en', 1, 'https://ror.org/00kavjh60 Columbia Medical Practice'),
(83593, 'https://ror.org/007a62q55', 'en', 1, 'https://ror.org/007a62q55 Japan Construction Information Center ę—„ęœ¬å»ŗčØ­ęƒ…å ±ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(83594, 'https://ror.org/022tv3h63', 'en', 1, 'https://ror.org/022tv3h63 Sarcoma Foundation of America'),
(83595, 'https://ror.org/00v5fmc55', 'no_lang_code', 1, 'https://ror.org/00v5fmc55 Wad Medani Ahlia University ŁƒŁ„ŁŠŲ© ود Ł…ŲÆŁ†ŁŠ Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(83596, 'https://ror.org/040pj3n80', 'no_lang_code', 1, 'https://ror.org/040pj3n80 GRA (United States)'),
(83597, 'https://ror.org/00sv97b10', 'en', 1, 'https://ror.org/00sv97b10 ARK Foundation'),
(83598, 'https://ror.org/00dfkd907', 'no_lang_code', 1, 'https://ror.org/00dfkd907 Molecular Vista (United States)'),
(83599, 'https://ror.org/0572q5a45', 'no_lang_code', 1, 'https://ror.org/0572q5a45 Karger Publishers (Switzerland)'),
(83600, 'https://ror.org/055mqk127', 'en', 1, 'https://ror.org/055mqk127 Foundation for Baltic and East European Studies'),
(83601, 'https://ror.org/024f3s581', 'en', 1, 'https://ror.org/024f3s581 Marcus and Amalia Wallenberg Foundation'),
(83602, 'https://ror.org/014w4jz45', 'no_lang_code', 1, 'https://ror.org/014w4jz45 Audax Medical (United States)'),
(83603, 'https://ror.org/02z0c8z45', 'no_lang_code', 1, 'https://ror.org/02z0c8z45 PharmaResearch Products (South Korea)'),
(83604, 'https://ror.org/01j5yx942', 'en', 1, 'https://ror.org/01j5yx942 Finnish Coeliac Society Keliakialiitto'),
(83605, 'https://ror.org/03nsgj842', 'en', 1, 'https://ror.org/03nsgj842 Alexander & Margaret Stewart Trust'),
(83606, 'https://ror.org/00r7myp66', 'nl', 1, 'https://ror.org/00r7myp66 Nederlandse CF Registratie Nederlandse Cystic Fibrosis Stichting'),
(83607, 'https://ror.org/02bkxyz57', 'en', 1, 'https://ror.org/02bkxyz57 Schmidt Ocean Institute'),
(83608, 'https://ror.org/02n3d5e79', 'en', 1, 'https://ror.org/02n3d5e79 Rosemere Cancer Foundation'),
(83609, 'https://ror.org/00j1sp553', 'en', 1, 'https://ror.org/00j1sp553 Islamic Azad University, Shahrood دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“Ų§Ł‡Ų±ŁˆŲÆ'),
(83610, 'https://ror.org/03ygf8v71', 'en', 1, 'https://ror.org/03ygf8v71 New York State Economic Development Council'),
(83611, 'https://ror.org/027bpvr73', 'sv', 1, 'https://ror.org/027bpvr73 Riksfƶrbundet Cystisk Fibros'),
(83612, 'https://ror.org/033f9e204', 'de', 1, 'https://ror.org/033f9e204 Katholischer Akademischer AuslƤnder-Dienst'),
(83613, 'https://ror.org/008qgm855', 'en', 1, 'https://ror.org/008qgm855 Japan Heart Foundation ę—„ęœ¬åæƒč‡“č²”å›£'),
(83614, 'https://ror.org/04bn04092', 'en', 1, 'https://ror.org/04bn04092 SuperSTEM'),
(83615, 'https://ror.org/05tte0y64', 'en', 1, 'https://ror.org/05tte0y64 Golfers Against Cancer'),
(83616, 'https://ror.org/03d7wen40', 'en', 1, 'https://ror.org/03d7wen40 Animal Cancer Foundation'),
(83617, 'https://ror.org/00h5sa678', 'en', 1, 'https://ror.org/00h5sa678 American Health Quality Association'),
(83618, 'https://ror.org/05cf2bt40', 'en', 1, 'https://ror.org/05cf2bt40 International Fine Particle Research Institute'),
(83619, 'https://ror.org/047bekw03', 'en', 1, 'https://ror.org/047bekw03 The Fertilizer Institute'),
(83620, 'https://ror.org/00wapyh41', 'en', 1, 'https://ror.org/00wapyh41 Islamic Azad University, Bojnourd Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲØŲ¬Ł†ŁˆŲ±ŲÆ'),
(83621, 'https://ror.org/05y9csv14', 'en', 1, 'https://ror.org/05y9csv14 Austrian Agency for International Cooperation in Education and Research Ɩsterreichische Austauschdienst GmbH'),
(83622, 'https://ror.org/04heaf422', 'en', 1, 'https://ror.org/04heaf422 European Academy of Neurology'),
(83623, 'https://ror.org/02bv2z495', 'en', 1, 'https://ror.org/02bv2z495 Dr. Y.S.R Horticultural University ą°†ą°‚ą°§ą±ą°°ą°Ŗą±ą°°ą°¦ą±‡ą°¶ą± ą°‰ą°¦ą±ą°Æą°¾ą°Øą°µą°Ø ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(83624, 'https://ror.org/017hm5p20', 'en', 1, 'https://ror.org/017hm5p20 Moorfields Eye Charity'),
(83625, 'https://ror.org/04ty4v362', 'en', 1, 'https://ror.org/04ty4v362 Les Turner ALS Foundation'),
(83626, 'https://ror.org/00kzaga87', 'no_lang_code', 1, 'https://ror.org/00kzaga87 Agro-Kanesho (Japan)'),
(83627, 'https://ror.org/02gnyy588', 'es', 1, 'https://ror.org/02gnyy588 Comisión México-Estados Unidos para el Intercambio Educativo y Cultural'),
(83628, 'https://ror.org/04w1hax42', 'en', 1, 'https://ror.org/04w1hax42 American Association for the History of Medicine'),
(83629, 'https://ror.org/05k1y3v43', 'no_lang_code', 1, 'https://ror.org/05k1y3v43 Aurigene Discovery Technologies (India)'),
(83630, 'https://ror.org/006wxqw41', 'en', 1, 'https://ror.org/006wxqw41 Gordon and Betty Moore Foundation'),
(83631, 'https://ror.org/01d82ys30', 'en', 1, 'https://ror.org/01d82ys30 Christian Medical Association of India'),
(83632, 'https://ror.org/058nrs650', 'en', 1, 'https://ror.org/058nrs650 Institute on Membrane Technology Istituto per la Tecnologia delle Membrane'),
(83633, 'https://ror.org/00vttj605', 'no_lang_code', 1, 'https://ror.org/00vttj605 ROHM ćƒ­ćƒ¼ćƒ ę Ŗå¼ä¼šē¤¾'),
(83634, 'https://ror.org/04zv9g259', 'en', 1, 'https://ror.org/04zv9g259 Marine Alliance for Science and Technology for Scotland'),
(83635, 'https://ror.org/01fwt2b13', 'en', 1, 'https://ror.org/01fwt2b13 Borlaug Institute for South Asia'),
(83636, 'https://ror.org/05v6a8j46', 'en', 1, 'https://ror.org/05v6a8j46 National Niemann-Pick Disease Foundation'),
(83637, 'https://ror.org/03eqf3910', 'no_lang_code', 1, 'https://ror.org/03eqf3910 Scientific Methods (United States)'),
(83638, 'https://ror.org/034m6ke32', 'en', 1, 'https://ror.org/034m6ke32 Africa Health Research Institute'),
(83639, 'https://ror.org/05kv1cc88', 'no_lang_code', 1, 'https://ror.org/05kv1cc88 Keeling & Walker (United Kingdom)'),
(83640, 'https://ror.org/05b5kg436', 'pt', 1, 'https://ror.org/05b5kg436 University Alto Vale do Rio do Peixe'),
(83641, 'https://ror.org/01qv0t980', 'no', 1, 'https://ror.org/01qv0t980 Vestfold fylkeskommune'),
(83642, 'https://ror.org/05tx9pa51', 'en', 1, 'https://ror.org/05tx9pa51 Maurice and Phyllis Paykel Trust'),
(83643, 'https://ror.org/053q19p30', 'en', 1, 'https://ror.org/053q19p30 Canadian Sphagnum Peat Moss Association'),
(83644, 'https://ror.org/00y4qmx55', 'en', 1, 'https://ror.org/00y4qmx55 Shanghai Urban Construction Design and Research Institute (Group) äøŠęµ·åŸŽåø‚å»ŗč®¾č®¾č®”ē ”ē©¶é™¢'),
(83645, 'https://ror.org/02tv28881', 'de', 1, 'https://ror.org/02tv28881 Diabeteszentrum Bad Lauterberg'),
(83646, 'https://ror.org/001jdw720', 'en', 1, 'https://ror.org/001jdw720 Arc of the Piedmont'),
(83647, 'https://ror.org/0281s4b15', 'da', 1, 'https://ror.org/0281s4b15 Bloddonorerne i Danmark Danish Blood Donor Association'),
(83648, 'https://ror.org/0279ehd23', 'en', 1, 'https://ror.org/0279ehd23 Chongqing Vocational Institute of Engineering é‡åŗ†å·„ēØ‹čŒäøšęŠ€ęœÆå­¦é™¢'),
(83649, 'https://ror.org/048gbw446', 'en', 1, 'https://ror.org/048gbw446 Milton and Tamar Maltz Family Foundation'),
(83650, 'https://ror.org/02rxa1r38', 'en', 1, 'https://ror.org/02rxa1r38 Islamic Azad University, UAE Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ł…Ų§Ų±Ų§ŲŖ متحده'),
(83651, 'https://ror.org/047aswc67', 'en', 1, 'https://ror.org/047aswc67 National Center for Genetic Engineering and Biotechnology'),
(83652, 'https://ror.org/01cwc0f90', 'en', 1, 'https://ror.org/01cwc0f90 The Waterloo Foundation'),
(83653, 'https://ror.org/00k74t288', 'no_lang_code', 1, 'https://ror.org/00k74t288 Papula-Nevinpat (Finland)'),
(83654, 'https://ror.org/0183g0e10', 'en', 1, 'https://ror.org/0183g0e10 Al-Nisour University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ł†Ų³ŁˆŲ± الجامعة'),
(83655, 'https://ror.org/043jtz642', 'no_lang_code', 1, 'https://ror.org/043jtz642 TISICS (United Kingdom)'),
(83656, 'https://ror.org/01dw0ab98', 'en', 1, 'https://ror.org/01dw0ab98 Foshan Hospital of TCM ä½›å±±åø‚äø­åŒ»é™¢'),
(83657, 'https://ror.org/040may582', 'en', 1, 'https://ror.org/040may582 New Jersey Health Foundation'),
(83658, 'https://ror.org/0367xsy85', 'no_lang_code', 1, 'https://ror.org/0367xsy85 Novarex (South Korea)'),
(83659, 'https://ror.org/048nwav94', 'en', 1, 'https://ror.org/048nwav94 Covenant Hospice'),
(83660, 'https://ror.org/00bjmtg35', 'en', 1, 'https://ror.org/00bjmtg35 Nilamber Pitamber University ą¤Øą„€ą¤²ą¤¾ą¤®ą„ą¤¬ą¤° ą¤Ŗą„€ą¤¤ą¤¾ą¤®ą„ą¤¬ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(83661, 'https://ror.org/03c31cf61', 'en', 1, 'https://ror.org/03c31cf61 Akrofi-Christaller Institute of Theology, Mission and Culture'),
(83662, 'https://ror.org/01t6bd616', 'no_lang_code', 1, 'https://ror.org/01t6bd616 Endeavor Global (United States)'),
(83663, 'https://ror.org/04xg0r294', 'en', 1, 'https://ror.org/04xg0r294 Lumbini Buddhist University ą¤²ą„ą¤®ą„ą¤¬ą¤æą¤Øą„€ ą¤¬ą„Œą¤¦ą„ą¤§ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(83664, 'https://ror.org/00bv9bq36', 'en', 1, 'https://ror.org/00bv9bq36 Anusandhan Trust'),
(83665, 'https://ror.org/04nm92h93', 'no_lang_code', 1, 'https://ror.org/04nm92h93 Vascular Biogenics (Israel)'),
(83666, 'https://ror.org/05snmp989', 'en', 1, 'https://ror.org/05snmp989 Japan Association for Diabetes Education and Care ę—„ęœ¬ē³–å°æē—…å”ä¼š'),
(83667, 'https://ror.org/04n6sse75', 'en', 1, 'https://ror.org/04n6sse75 Navrongo Health Research Centre'),
(83668, 'https://ror.org/03ke3rf23', 'en', 1, 'https://ror.org/03ke3rf23 Humane Research Trust'),
(83669, 'https://ror.org/02gvqsb68', 'en', 1, 'https://ror.org/02gvqsb68 Walter and Duncan Gordon Foundation'),
(83670, 'https://ror.org/04hqpta12', 'en', 1, 'https://ror.org/04hqpta12 Williams Syndrome Foundation'),
(83671, 'https://ror.org/02yz2ed22', 'de', 1, 'https://ror.org/02yz2ed22 Institut für Psychologische Psychotherapie'),
(83672, 'https://ror.org/02axzdf31', 'en', 1, 'https://ror.org/02axzdf31 American Center for Mongolian Studies'),
(83673, 'https://ror.org/01dbwa206', 'fr', 1, 'https://ror.org/01dbwa206 ENOES'),
(83674, 'https://ror.org/01hqn7w83', 'en', 1, 'https://ror.org/01hqn7w83 Health and Disability Commissioner'),
(83675, 'https://ror.org/05hee4x70', 'en', 1, 'https://ror.org/05hee4x70 Veterinary Research Institute'),
(83676, 'https://ror.org/00vbrae69', 'no_lang_code', 1, 'https://ror.org/00vbrae69 Oakdene Hollins (United Kingdom)'),
(83677, 'https://ror.org/01smy6g03', 'en', 1, 'https://ror.org/01smy6g03 Gen Foundation'),
(83678, 'https://ror.org/01h4ass90', 'en', 1, 'https://ror.org/01h4ass90 Machine Intelligence Research Institute'),
(83679, 'https://ror.org/04mrcwk55', 'no_lang_code', 1, 'https://ror.org/04mrcwk55 Metamagnetics (United States)'),
(83680, 'https://ror.org/03sw0n811', 'en', 1, 'https://ror.org/03sw0n811 Global Fund for Women'),
(83681, 'https://ror.org/02p0mee35', 'no_lang_code', 1, 'https://ror.org/02p0mee35 Risk & Policy Analysts (United Kingdom)'),
(83682, 'https://ror.org/00sk4kx55', 'en', 1, 'https://ror.org/00sk4kx55 Russian-Tajik Slavonic University Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø ŃŠ»Š°Š²ŃŠ½ŠøŠø Тоҷикистон-Š ŃƒŃŠøŃ Российско-таГжикский ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(83683, 'https://ror.org/014cpn338', 'en', 1, 'https://ror.org/014cpn338 Vienna Center for Quantum Science and Technology'),
(83684, 'https://ror.org/034rhsb33', 'en', 1, 'https://ror.org/034rhsb33 Helmholtz-Institut Ulm Helmholtz-Institute Ulm'),
(83685, 'https://ror.org/00p5z3m34', 'en', 1, 'https://ror.org/00p5z3m34 Barth Syndrome Foundation'),
(83686, 'https://ror.org/02v73qa91', 'en', 1, 'https://ror.org/02v73qa91 Coordinating Council for Women in History'),
(83687, 'https://ror.org/02d9v9944', 'fr', 1, 'https://ror.org/02d9v9944 CHU Ambroise ParƩ'),
(83688, 'https://ror.org/04yjy8y74', 'en', 1, 'https://ror.org/04yjy8y74 GCE Lab School'),
(83689, 'https://ror.org/05d618r89', 'en', 1, 'https://ror.org/05d618r89 Epic Care'),
(83690, 'https://ror.org/046c4qa07', 'no_lang_code', 1, 'https://ror.org/046c4qa07 Forestia (Norway)'),
(83691, 'https://ror.org/00e769425', 'en', 1, 'https://ror.org/00e769425 New Zealand Law Foundation'),
(83692, 'https://ror.org/02y9qjz38', 'en', 1, 'https://ror.org/02y9qjz38 Cancer Genomics Centre'),
(83693, 'https://ror.org/02pe2kf23', 'en', 1, 'https://ror.org/02pe2kf23 Max Planck Institute for Software Systems Max-Planck-Institut für Softwaresysteme'),
(83694, 'https://ror.org/05yctyn65', 'en', 1, 'https://ror.org/05yctyn65 Japan Institute of Country-ology and Engineering č²”ļ¼‰å›½åœŸęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(83695, 'https://ror.org/0042f2034', 'pt', 1, 'https://ror.org/0042f2034 Faculdade Frassinetti do Recife'),
(83696, 'https://ror.org/02v7thk18', 'en', 1, 'https://ror.org/02v7thk18 Korea Golf University ķ•œźµ­ź³Øķ”„ėŒ€ķ•™źµ'),
(83697, 'https://ror.org/013ery440', 'en', 1, 'https://ror.org/013ery440 Kenya Industrial Research and Development Institute'),
(83698, 'https://ror.org/01vsjtq46', 'en', 1, 'https://ror.org/01vsjtq46 Dalhousie Medical Research Foundation'),
(83699, 'https://ror.org/046pf6524', 'en', 1, 'https://ror.org/046pf6524 Daimler and Benz Foundation Daimler und Benz Stiftung'),
(83700, 'https://ror.org/04yrfkb83', 'no_lang_code', 1, 'https://ror.org/04yrfkb83 Staples (United States)'),
(83701, 'https://ror.org/03z77mq14', 'en', 1, 'https://ror.org/03z77mq14 Jay and Rose Phillips Family Foundation of Minnesota'),
(83702, 'https://ror.org/03qg5ja35', 'en', 1, 'https://ror.org/03qg5ja35 National Children''s Advocacy Center'),
(83703, 'https://ror.org/04622jx20', 'en', 1, 'https://ror.org/04622jx20 National PKU Alliance'),
(83704, 'https://ror.org/03w2e8s04', 'no_lang_code', 1, 'https://ror.org/03w2e8s04 AfaSci (United States)'),
(83705, 'https://ror.org/0550cfw62', 'no_lang_code', 1, 'https://ror.org/0550cfw62 Kimball International (United States)'),
(83706, 'https://ror.org/03a54va40', 'en', 1, 'https://ror.org/03a54va40 Corporación Tecnológica de Andalucía Technological Corporation of Andalusia'),
(83707, 'https://ror.org/03sps3687', 'en', 1, 'https://ror.org/03sps3687 Chesapeake Bay Trust'),
(83708, 'https://ror.org/02rv8vx71', 'de', 1, 'https://ror.org/02rv8vx71 Stiftung Mainzer Herz'),
(83709, 'https://ror.org/03x8vck69', 'no_lang_code', 1, 'https://ror.org/03x8vck69 Sinochem Group (China) äø­å›½äø­åŒ–é›†å›¢å…¬åø'),
(83710, 'https://ror.org/05jkpd189', 'nl', 1, 'https://ror.org/05jkpd189 Maag Lever Darm Stichting'),
(83711, 'https://ror.org/05mmhfh95', 'no_lang_code', 1, 'https://ror.org/05mmhfh95 NCI Information Systems (United States)'),
(83712, 'https://ror.org/00yvfbm89', 'de', 1, 'https://ror.org/00yvfbm89 Fachhochschule der Diakonie'),
(83713, 'https://ror.org/048rmbb49', 'en', 1, 'https://ror.org/048rmbb49 EEG & Clinical Neuroscience Society'),
(83714, 'https://ror.org/02888mx05', 'es', 1, 'https://ror.org/02888mx05 Fundación CajaCanarias'),
(83715, 'https://ror.org/04dq07652', 'en', 1, 'https://ror.org/04dq07652 All-Russian Scientific Research Institute of Medicinal and Aromatic Plants Всероссийский ŠŠ˜Š˜ лекарственных Šø ароматических растений'),
(83716, 'https://ror.org/05xt5ra97', 'en', 1, 'https://ror.org/05xt5ra97 Mathile Institute For The Advancement of Human Nutrition'),
(83717, 'https://ror.org/025zjjr82', 'no_lang_code', 1, 'https://ror.org/025zjjr82 Sandpiper Technologies (United States)'),
(83718, 'https://ror.org/05y9pr996', 'en', 1, 'https://ror.org/05y9pr996 Metastasis Research Society'),
(83719, 'https://ror.org/012czwk30', 'no_lang_code', 1, 'https://ror.org/012czwk30 Cassava Sciences (United States)'),
(83720, 'https://ror.org/01fqjf794', 'en', 1, 'https://ror.org/01fqjf794 Pediatric Cancer Foundation'),
(83721, 'https://ror.org/02p521049', 'en', 1, 'https://ror.org/02p521049 MedTech CoRE'),
(83722, 'https://ror.org/02y18ts25', 'en', 1, 'https://ror.org/02y18ts25 Bushehr University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŁˆŲ“Ł‡Ų±'),
(83723, 'https://ror.org/01rrwkv56', 'en', 1, 'https://ror.org/01rrwkv56 Society of Family Planning'),
(83724, 'https://ror.org/00bywv891', 'no_lang_code', 1, 'https://ror.org/00bywv891 Roquette FrĆØres (France)'),
(83725, 'https://ror.org/05pd6sh18', 'es', 1, 'https://ror.org/05pd6sh18 Universidad Panamericana'),
(83726, 'https://ror.org/00wse9j86', 'en', 1, 'https://ror.org/00wse9j86 Kitakyushu Foundation for the Advancement of Industry, Science and Technology å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ä¹å·žē”£ę„­å­¦č”“ęŽØé€²ę©Ÿę§‹'),
(83727, 'https://ror.org/04yv4ct35', 'en', 1, 'https://ror.org/04yv4ct35 British Society of Prosthodontics'),
(83728, 'https://ror.org/0276bwh55', 'en', 1, 'https://ror.org/0276bwh55 Eastern and Southern African Management Institute'),
(83729, 'https://ror.org/05abewn82', 'en', 1, 'https://ror.org/05abewn82 Tumori Foundation'),
(83730, 'https://ror.org/003wqpe41', 'fr', 1, 'https://ror.org/003wqpe41 Centre Technologique des RƩsidus Industriels'),
(83731, 'https://ror.org/0102p7z54', 'en', 1, 'https://ror.org/0102p7z54 European Society of Anaesthesiology'),
(83732, 'https://ror.org/03j9ayz50', 'no_lang_code', 1, 'https://ror.org/03j9ayz50 Marine Acoustics (United States)'),
(83733, 'https://ror.org/04ev7sy32', 'nl', 1, 'https://ror.org/04ev7sy32 Fonds NutsOhra Stichting Fonds NutsOhra'),
(83734, 'https://ror.org/00ed94f19', 'en', 1, 'https://ror.org/00ed94f19 Easton & Otley College'),
(83735, 'https://ror.org/05fdb2817', 'en', 1, 'https://ror.org/05fdb2817 Royal Commission for the Exhibition of 1851'),
(83736, 'https://ror.org/05sew3266', 'en', 1, 'https://ror.org/05sew3266 Borchard Foundation Center on Law and Aging'),
(83737, 'https://ror.org/00bt2cr47', 'en', 1, 'https://ror.org/00bt2cr47 Wichita Medical Research and Education Foundation'),
(83738, 'https://ror.org/00wf6bs47', 'en', 1, 'https://ror.org/00wf6bs47 Jean Shanks Foundation'),
(83739, 'https://ror.org/048e31249', 'nl', 1, 'https://ror.org/048e31249 Fonds Psychische Gezondheid'),
(83740, 'https://ror.org/04ncqyx04', 'en', 1, 'https://ror.org/04ncqyx04 Open Source Hardware Association'),
(83741, 'https://ror.org/044qwdk10', 'no_lang_code', 1, 'https://ror.org/044qwdk10 Guru Performance (United Kingdom)'),
(83742, 'https://ror.org/04mrg3p52', 'it', 1, 'https://ror.org/04mrg3p52 Istituto Oncologico Romagnolo'),
(83743, 'https://ror.org/05g9snv96', 'en', 1, 'https://ror.org/05g9snv96 Conrad N. Hilton Foundation'),
(83744, 'https://ror.org/01p6z3b24', 'en', 1, 'https://ror.org/01p6z3b24 University of Medicine and Health Sciences'),
(83745, 'https://ror.org/031e3a572', 'en', 1, 'https://ror.org/031e3a572 North Eastern Polytechnic Vocational College'),
(83746, 'https://ror.org/01hayk347', 'en', 1, 'https://ror.org/01hayk347 Maine Technology Institute'),
(83747, 'https://ror.org/017xw6w34', 'en', 1, 'https://ror.org/017xw6w34 Abingdon and Witney College'),
(83748, 'https://ror.org/00z2jqs75', 'en', 1, 'https://ror.org/00z2jqs75 African American Museum in Philadelphia'),
(83749, 'https://ror.org/04q4nwv58', 'en', 1, 'https://ror.org/04q4nwv58 Oracle Cancer Trust'),
(83750, 'https://ror.org/01e7e7r31', 'en', 1, 'https://ror.org/01e7e7r31 Kosar University of Bojnord دانؓگاه کوثر ŲØŲ¬Ł†ŁˆŲ±ŲÆ'),
(83751, 'https://ror.org/000kedf85', 'no_lang_code', 1, 'https://ror.org/000kedf85 Labrida (Norway)'),
(83752, 'https://ror.org/0307rp314', 'no_lang_code', 1, 'https://ror.org/0307rp314 AT&S (Austria)'),
(83753, 'https://ror.org/04jhza748', 'nl', 1, 'https://ror.org/04jhza748 Tekke Huizinga Fonds'),
(83754, 'https://ror.org/05mt8kt11', 'no_lang_code', 1, 'https://ror.org/05mt8kt11 Investigen (United States)'),
(83755, 'https://ror.org/048rgv164', 'en', 1, 'https://ror.org/048rgv164 Robert and Joan Dircks Foundation'),
(83756, 'https://ror.org/00qejsx81', 'en', 1, 'https://ror.org/00qejsx81 Seattle Reproductive Medicine'),
(83757, 'https://ror.org/05j5de504', 'en', 1, 'https://ror.org/05j5de504 Pingxiang University čä¹”å­¦é™¢'),
(83758, 'https://ror.org/01r1pse25', 'da', 1, 'https://ror.org/01r1pse25 VUC Aarhus'),
(83759, 'https://ror.org/021k6d838', 'no_lang_code', 1, 'https://ror.org/021k6d838 Psychogenics (United States)'),
(83760, 'https://ror.org/04kxvp486', 'en', 1, 'https://ror.org/04kxvp486 CHAS Health'),
(83761, 'https://ror.org/02hf48750', 'en', 1, 'https://ror.org/02hf48750 Universal Spa Training Academy'),
(83762, 'https://ror.org/00cwsbc35', 'no_lang_code', 1, 'https://ror.org/00cwsbc35 CapeSym (United States)'),
(83763, 'https://ror.org/05g4bfa05', 'en', 1, 'https://ror.org/05g4bfa05 The Catholic University of Malawi'),
(83764, 'https://ror.org/006zwjq84', 'no_lang_code', 1, 'https://ror.org/006zwjq84 Mellanox Technologies (United States)'),
(83765, 'https://ror.org/02ca75c45', 'en', 1, 'https://ror.org/02ca75c45 Pulmonary Vascular Research Institute'),
(83766, 'https://ror.org/00d85b855', 'en', 1, 'https://ror.org/00d85b855 Amazon Conservation Association'),
(83767, 'https://ror.org/017ph0q89', 'en', 1, 'https://ror.org/017ph0q89 The Wright Center for Graduate Medical Education'),
(83768, 'https://ror.org/04qfbfc73', 'de', 1, 'https://ror.org/04qfbfc73 Berufskolleg Am Wasserturm'),
(83769, 'https://ror.org/02hbdvq93', 'en', 1, 'https://ror.org/02hbdvq93 Directorate of Onion and Garlic Research ą¤Ŗą„ą¤Æą¤¾ą¤œ ą¤ą¤µą¤‚ ą¤²ą¤¹ą¤øą„ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(83770, 'https://ror.org/05t022114', 'en', 1, 'https://ror.org/05t022114 Prize4Life'),
(83771, 'https://ror.org/0052t3h27', 'no_lang_code', 1, 'https://ror.org/0052t3h27 Roi et Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø£ą¹‰ąø­ąø¢ą¹€ąø­ą¹‡ąø”'),
(83772, 'https://ror.org/01bd9y732', 'en', 1, 'https://ror.org/01bd9y732 Conjuring Arts Research Center'),
(83773, 'https://ror.org/01g6b4y18', 'en', 1, 'https://ror.org/01g6b4y18 Osteology Foundation'),
(83774, 'https://ror.org/02q0gne90', 'no_lang_code', 1, 'https://ror.org/02q0gne90 Nanowave Technologies (Canada)'),
(83775, 'https://ror.org/0380e4z40', 'en', 1, 'https://ror.org/0380e4z40 Center for Humans and Nature'),
(83776, 'https://ror.org/00jbcck28', 'en', 1, 'https://ror.org/00jbcck28 Erie Community Foundation'),
(83777, 'https://ror.org/02bxsr265', 'no_lang_code', 1, 'https://ror.org/02bxsr265 Cleveland BioLabs (United States)'),
(83778, 'https://ror.org/03tex3d35', 'en', 1, 'https://ror.org/03tex3d35 Foster Foundation'),
(83779, 'https://ror.org/005zda847', 'fr', 1, 'https://ror.org/005zda847 FƩdƩration pour la Recherche sur le Cerveau'),
(83780, 'https://ror.org/02va56h85', 'en', 1, 'https://ror.org/02va56h85 Georgia Association of Educational Leaders'),
(83781, 'https://ror.org/04r51hs31', 'en', 1, 'https://ror.org/04r51hs31 Australia and Pacific Science Foundation'),
(83782, 'https://ror.org/00csd1970', 'en', 1, 'https://ror.org/00csd1970 The Salvation Army'),
(83783, 'https://ror.org/01gzy0g74', 'en', 1, 'https://ror.org/01gzy0g74 Petroleum Technology Research Centre'),
(83784, 'https://ror.org/048e7gn38', 'en', 1, 'https://ror.org/048e7gn38 Paulo Foundation Paulon SƤƤtiƶ'),
(83785, 'https://ror.org/047bc5j52', 'en', 1, 'https://ror.org/047bc5j52 Union Institute & University'),
(83786, 'https://ror.org/05cea9318', 'en', 1, 'https://ror.org/05cea9318 Randolph County School System'),
(83787, 'https://ror.org/03aay6c48', 'en', 1, 'https://ror.org/03aay6c48 Biocenter Finland'),
(83788, 'https://ror.org/03d4e8748', 'en', 1, 'https://ror.org/03d4e8748 Brighton and Hove City Council'),
(83789, 'https://ror.org/03e2ek051', 'en', 1, 'https://ror.org/03e2ek051 Association for Science Education'),
(83790, 'https://ror.org/03xwbsw41', 'no_lang_code', 1, 'https://ror.org/03xwbsw41 Cascade Technologies (United States)'),
(83791, 'https://ror.org/03fhdst60', 'en', 1, 'https://ror.org/03fhdst60 Ghana Education Trust Fund'),
(83792, 'https://ror.org/03dbx2z52', 'en', 1, 'https://ror.org/03dbx2z52 Michael & Associates'),
(83793, 'https://ror.org/04s2bx355', 'en', 1, 'https://ror.org/04s2bx355 Consortium of Universities for the Advancement of Hydrologic Science'),
(83794, 'https://ror.org/00b3gns35', 'no_lang_code', 1, 'https://ror.org/00b3gns35 Nui (Norway)'),
(83795, 'https://ror.org/01h39c842', 'en', 1, 'https://ror.org/01h39c842 Helen Macpherson Smith Trust'),
(83796, 'https://ror.org/02tzez922', 'en', 1, 'https://ror.org/02tzez922 Knox County Health Department'),
(83797, 'https://ror.org/02ncb2k95', 'en', 1, 'https://ror.org/02ncb2k95 MVJ Medical College and Research Hospital'),
(83798, 'https://ror.org/0048mxk03', 'en', 1, 'https://ror.org/0048mxk03 Sturge Weber Foundation'),
(83799, 'https://ror.org/04ymy2f27', 'no_lang_code', 1, 'https://ror.org/04ymy2f27 Mathematical Sciences Publishers (United States)'),
(83800, 'https://ror.org/01nw6eh35', 'en', 1, 'https://ror.org/01nw6eh35 Arkansas Soybean Promotion Board'),
(83801, 'https://ror.org/00m9f2x37', 'en', 1, 'https://ror.org/00m9f2x37 Center for Children'),
(83802, 'https://ror.org/04ydzn715', 'en', 1, 'https://ror.org/04ydzn715 Pharmacy Research UK'),
(83803, 'https://ror.org/02k7qtf87', 'en', 1, 'https://ror.org/02k7qtf87 Pueblo of Isleta'),
(83804, 'https://ror.org/05wj1n164', 'no_lang_code', 1, 'https://ror.org/05wj1n164 Cambridge Polymer Group (United States)'),
(83805, 'https://ror.org/03c3ads29', 'en', 1, 'https://ror.org/03c3ads29 Maritime Museum of San Diego'),
(83806, 'https://ror.org/044hrt695', 'en', 1, 'https://ror.org/044hrt695 Dynasty Foundation'),
(83807, 'https://ror.org/04q4bdj41', 'en', 1, 'https://ror.org/04q4bdj41 Citrus Research Board'),
(83808, 'https://ror.org/00h14e570', 'en', 1, 'https://ror.org/00h14e570 Massachusetts Clean Energy Center'),
(83809, 'https://ror.org/05swbwy25', 'en', 1, 'https://ror.org/05swbwy25 Saint Petersburg State Institute of Psychology and Social Work Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологии Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ работы'),
(83810, 'https://ror.org/001q8cd96', 'en', 1, 'https://ror.org/001q8cd96 New Hampshire College & University Council'),
(83811, 'https://ror.org/04zdpf597', 'en', 1, 'https://ror.org/04zdpf597 Investigative Reporters and Editors'),
(83812, 'https://ror.org/03qe0eg36', 'en', 1, 'https://ror.org/03qe0eg36 History of Advertising Trust'),
(83813, 'https://ror.org/01yjd8r15', 'pt', 1, 'https://ror.org/01yjd8r15 Hospital de CĆ¢ncer de Pernambuco'),
(83814, 'https://ror.org/007cr8911', 'en', 1, 'https://ror.org/007cr8911 Council of Science Editors'),
(83815, 'https://ror.org/01ry38620', 'en', 1, 'https://ror.org/01ry38620 Yashima Gakuen University å…«ę“²å­¦åœ’å¤§å­¦'),
(83816, 'https://ror.org/05w9xct02', 'de', 1, 'https://ror.org/05w9xct02 Deutsche Multiple Sklerose Gesellschaft'),
(83817, 'https://ror.org/046vqww18', 'en', 1, 'https://ror.org/046vqww18 Dr. Somervell Memorial CSI Medical College and Hospital'),
(83818, 'https://ror.org/02trh1t47', 'en', 1, 'https://ror.org/02trh1t47 Allied Services'),
(83819, 'https://ror.org/051wvvb55', 'en', 1, 'https://ror.org/051wvvb55 Federal Institute of Industrial Research Oshodi'),
(83820, 'https://ror.org/00dc6k529', 'de', 1, 'https://ror.org/00dc6k529 Helmut Horten Stiftung'),
(83821, 'https://ror.org/00c69fd82', 'en', 1, 'https://ror.org/00c69fd82 American Society of Head and Neck Radiology'),
(83822, 'https://ror.org/02hweh132', 'no_lang_code', 1, 'https://ror.org/02hweh132 Gannett (United States)'),
(83823, 'https://ror.org/01pc3rk31', 'no_lang_code', 1, 'https://ror.org/01pc3rk31 Ito Hospital ä¼Šč—¤ē—…é™¢'),
(83824, 'https://ror.org/00bw4x405', 'en', 1, 'https://ror.org/00bw4x405 Academy of Korean Studies ķ•œźµ­ķ•™ģ¤‘ģ•™ģ—°źµ¬ģ›'),
(83825, 'https://ror.org/03sc84089', 'en', 1, 'https://ror.org/03sc84089 Schwartz/Reisman Emergency Medicine Institute'),
(83826, 'https://ror.org/00zxd0649', 'no_lang_code', 1, 'https://ror.org/00zxd0649 Hazen and Sawyer (United States)'),
(83827, 'https://ror.org/051xbsb80', 'en', 1, 'https://ror.org/051xbsb80 Gulf of Mexico Alliance'),
(83828, 'https://ror.org/01q0eat70', 'en', 1, 'https://ror.org/01q0eat70 National Institute of Health Sciences'),
(83829, 'https://ror.org/053pqtj30', 'en', 1, 'https://ror.org/053pqtj30 MIB Agents'),
(83830, 'https://ror.org/05pet9r93', 'no_lang_code', 1, 'https://ror.org/05pet9r93 ARVYS Proteins (United States)'),
(83831, 'https://ror.org/00qcv1n67', 'no_lang_code', 1, 'https://ror.org/00qcv1n67 InfoUse'),
(83832, 'https://ror.org/02jhjfr59', 'en', 1, 'https://ror.org/02jhjfr59 Koninklijke Nederlandse Lawn Tennis Bond Royal Dutch Lawn Tennis Federation'),
(83833, 'https://ror.org/04jmrra88', 'en', 1, 'https://ror.org/04jmrra88 Shantou Central Hospital ę±•å¤“åø‚äø­åæƒåŒ»é™¢'),
(83834, 'https://ror.org/013mj5m02', 'de', 1, 'https://ror.org/013mj5m02 Deutsche Nierenstiftung'),
(83835, 'https://ror.org/05hy2kb37', 'no_lang_code', 1, 'https://ror.org/05hy2kb37 Organ Recovery Systems (United States)'),
(83836, 'https://ror.org/00hghab13', 'no_lang_code', 1, 'https://ror.org/00hghab13 Recombinetics (United States)'),
(83837, 'https://ror.org/0174b8m09', 'en', 1, 'https://ror.org/0174b8m09 SRI'),
(83838, 'https://ror.org/051pzdg24', 'es', 1, 'https://ror.org/051pzdg24 Sanatorio Otamendi y Miroli'),
(83839, 'https://ror.org/03sm30m06', 'en', 1, 'https://ror.org/03sm30m06 Raincoast Conservation Foundation'),
(83840, 'https://ror.org/02hxgd925', 'en', 1, 'https://ror.org/02hxgd925 M J Murdock Charitable Trust'),
(83841, 'https://ror.org/02z8z1589', 'en', 1, 'https://ror.org/02z8z1589 Indian Institute of Information Technology Una ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ऊना'),
(83842, 'https://ror.org/01p3k4288', 'en', 1, 'https://ror.org/01p3k4288 South Metropolitan Technical and Further Education'),
(83843, 'https://ror.org/04ymz0q33', 'en', 1, 'https://ror.org/04ymz0q33 Hunan University of Science and Engineering ę¹–å—ē§‘ęŠ€å­¦é™¢'),
(83844, 'https://ror.org/0169rv113', 'no_lang_code', 1, 'https://ror.org/0169rv113 Venus Remedies (India)'),
(83845, 'https://ror.org/04ja8dc86', 'en', 1, 'https://ror.org/04ja8dc86 Institute for European Environmental Policy'),
(83846, 'https://ror.org/00dn9nb13', 'en', 1, 'https://ror.org/00dn9nb13 Western Grains Research Foundation'),
(83847, 'https://ror.org/05gt72306', 'nl', 1, 'https://ror.org/05gt72306 Vereniging Samenwerkende Ouder- en Patiƫntenorganisaties'),
(83848, 'https://ror.org/045qvhf73', 'es', 1, 'https://ror.org/045qvhf73 Universidad Privada Juan MejĆ­a Baca'),
(83849, 'https://ror.org/03evats41', 'no_lang_code', 1, 'https://ror.org/03evats41 Stepan (United States)'),
(83850, 'https://ror.org/05ab5dj79', 'en', 1, 'https://ror.org/05ab5dj79 College of Agriculture, Food and Rural Enterprise'),
(83851, 'https://ror.org/05pd2ed85', 'en', 1, 'https://ror.org/05pd2ed85 Maranatha Christian University Universitas Kristen Maranatha'),
(83852, 'https://ror.org/00a3raj28', 'en', 1, 'https://ror.org/00a3raj28 Medicines Discovery Catapult'),
(83853, 'https://ror.org/00jjeja18', 'en', 1, 'https://ror.org/00jjeja18 Estonian Research Council'),
(83854, 'https://ror.org/028hk1v54', 'en', 1, 'https://ror.org/028hk1v54 Granulosa Cell Tumor of the Ovary Foundation'),
(83855, 'https://ror.org/015xj5w40', 'en', 1, 'https://ror.org/015xj5w40 China Computer Federation äø­å›½č®”ē®—ęœŗå­¦ä¼š'),
(83856, 'https://ror.org/014j06p71', 'no_lang_code', 1, 'https://ror.org/014j06p71 Synergy Farm Health (United Kingdom)'),
(83857, 'https://ror.org/05tszed37', 'en', 1, 'https://ror.org/05tszed37 Yale New Haven Hospital'),
(83858, 'https://ror.org/00e6ehb20', 'en', 1, 'https://ror.org/00e6ehb20 Association canadienne d''Ʃconomique Canadian Economics Association'),
(83859, 'https://ror.org/02bfh2q35', 'no_lang_code', 1, 'https://ror.org/02bfh2q35 Analysys Mason (United Kingdom)'),
(83860, 'https://ror.org/054089030', 'en', 1, 'https://ror.org/054089030 Access Alliance Multicultural Health and Community Services'),
(83861, 'https://ror.org/0469ckb94', 'en', 1, 'https://ror.org/0469ckb94 Danish Astronautical Society Dansk Selskab for Rumfartsforskning'),
(83862, 'https://ror.org/034603r08', 'fi', 1, 'https://ror.org/034603r08 Finnish Cardiac Society Suomen Kardiologinen Seura'),
(83863, 'https://ror.org/02mhbk457', 'en', 1, 'https://ror.org/02mhbk457 Scioto Foundation'),
(83864, 'https://ror.org/030rh2891', 'en', 1, 'https://ror.org/030rh2891 New Music USA'),
(83865, 'https://ror.org/02r19bt50', 'no_lang_code', 1, 'https://ror.org/02r19bt50 Tsumura (Japan)'),
(83866, 'https://ror.org/01akc7468', 'en', 1, 'https://ror.org/01akc7468 University Hospital St. Ivan Rilski'),
(83867, 'https://ror.org/02g8r8t79', 'en', 1, 'https://ror.org/02g8r8t79 Housing Engineering Design and Research Association'),
(83868, 'https://ror.org/0455st449', 'no_lang_code', 1, 'https://ror.org/0455st449 Biological Mimetics (United States)'),
(83869, 'https://ror.org/03vjq7x94', 'en', 1, 'https://ror.org/03vjq7x94 Great Ormond Street Hospital Children''s Charity'),
(83870, 'https://ror.org/02ykn5012', 'nl', 1, 'https://ror.org/02ykn5012 Nederlandse Vereniging voor Anesthesiologie'),
(83871, 'https://ror.org/04v043n92', 'en', 1, 'https://ror.org/04v043n92 First Affiliated Hospital of Bengbu Medical College čšŒåŸ åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(83872, 'https://ror.org/00k17f049', 'no_lang_code', 1, 'https://ror.org/00k17f049 MKS Instruments (United States)'),
(83873, 'https://ror.org/05t41vc93', 'no_lang_code', 1, 'https://ror.org/05t41vc93 Augmenix (United States)'),
(83874, 'https://ror.org/05d58hs71', 'es', 1, 'https://ror.org/05d58hs71 Universidad Tangamanga'),
(83875, 'https://ror.org/03eegxe52', 'en', 1, 'https://ror.org/03eegxe52 Metastatic Breast Cancer Network'),
(83876, 'https://ror.org/01rvxw146', 'en', 1, 'https://ror.org/01rvxw146 Duchenne Parent Project'),
(83877, 'https://ror.org/03vsz6k78', 'no_lang_code', 1, 'https://ror.org/03vsz6k78 Corlife (Germany)'),
(83878, 'https://ror.org/04kk6qr76', 'sv', 1, 'https://ror.org/04kk6qr76 Ella and Georg Ehrnrooth Foundation'),
(83879, 'https://ror.org/02r60jf72', 'it', 1, 'https://ror.org/02r60jf72 Associazione Comuni Terremotati e Sindaci della Ricostruzione del Friuli'),
(83880, 'https://ror.org/02nxg5d30', 'en', 1, 'https://ror.org/02nxg5d30 Seva Foundation'),
(83881, 'https://ror.org/05mra7z37', 'en', 1, 'https://ror.org/05mra7z37 Beaux-arts de minneapolis Minneapolis College of Art and Design'),
(83882, 'https://ror.org/01y2dtv33', 'es', 1, 'https://ror.org/01y2dtv33 Universidad Tecnológica de Tula-Tepeji'),
(83883, 'https://ror.org/04ncjj210', 'no_lang_code', 1, 'https://ror.org/04ncjj210 STARmed (South Korea)'),
(83884, 'https://ror.org/04sex8v22', 'en', 1, 'https://ror.org/04sex8v22 Russian Christian Humanitarian Academy Š ŃƒŃŃŠŗŠ°Ń Ń…Ń€ŠøŃŃ‚ŠøŠ°Š½ŃŠŗŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(83885, 'https://ror.org/01amqg398', 'pt', 1, 'https://ror.org/01amqg398 Fundação de Apoio ao Instituto de Pesquisas Tecnológicas'),
(83886, 'https://ror.org/027ahry32', 'en', 1, 'https://ror.org/027ahry32 International Society for Autism Research'),
(83887, 'https://ror.org/024esq841', 'en', 1, 'https://ror.org/024esq841 Innopharma Education'),
(83888, 'https://ror.org/01ng2wp34', 'en', 1, 'https://ror.org/01ng2wp34 D A Pandu Memorial RV Dental College and Hospital'),
(83889, 'https://ror.org/05vvxtt36', 'no_lang_code', 1, 'https://ror.org/05vvxtt36 Shofu (Japan) ę Ŗå¼ä¼šē¤¾ę¾é¢Ø'),
(83890, 'https://ror.org/02s071079', 'no_lang_code', 1, 'https://ror.org/02s071079 Trex (United States)'),
(83891, 'https://ror.org/05svnqy92', 'en', 1, 'https://ror.org/05svnqy92 Lown Institute'),
(83892, 'https://ror.org/033r0hh63', 'fi', 1, 'https://ror.org/033r0hh63 SilmƤsƤƤtiƶ'),
(83893, 'https://ror.org/02qp25s05', 'en', 1, 'https://ror.org/02qp25s05 Hope Against Cancer'),
(83894, 'https://ror.org/0043f3h38', 'en', 1, 'https://ror.org/0043f3h38 Association for Career and Technical Education'),
(83895, 'https://ror.org/02tq69115', 'pt', 1, 'https://ror.org/02tq69115 Grupo Anchieta'),
(83896, 'https://ror.org/05ppaxj51', 'en', 1, 'https://ror.org/05ppaxj51 Institute for Clinical Acupuncture and Oriental Medicine'),
(83897, 'https://ror.org/00jmefg08', 'en', 1, 'https://ror.org/00jmefg08 Future Forests Research'),
(83898, 'https://ror.org/017gq1v43', 'en', 1, 'https://ror.org/017gq1v43 Nurses Organization of Veterans Affairs'),
(83899, 'https://ror.org/01ah2ch91', 'en', 1, 'https://ror.org/01ah2ch91 Roy J. Carver Charitable Trust'),
(83900, 'https://ror.org/02r6kb330', 'en', 1, 'https://ror.org/02r6kb330 Freemasons New Zealand'),
(83901, 'https://ror.org/05qp63j73', 'en', 1, 'https://ror.org/05qp63j73 Mary S. and David C. Corbin Foundation'),
(83902, 'https://ror.org/021g6tq38', 'en', 1, 'https://ror.org/021g6tq38 Kristian Gerhard Jebsen Foundation Stiftelsen Kristian Gerhard Jebsen'),
(83903, 'https://ror.org/011sb7w62', 'en', 1, 'https://ror.org/011sb7w62 InterMedia'),
(83904, 'https://ror.org/053bcgk41', 'en', 1, 'https://ror.org/053bcgk41 Advanced Mental Health Care'),
(83905, 'https://ror.org/02gw00g25', 'no_lang_code', 1, 'https://ror.org/02gw00g25 Ocean Optics (United States)'),
(83906, 'https://ror.org/035ywh910', 'en', 1, 'https://ror.org/035ywh910 Acquired Brain Injury Ireland'),
(83907, 'https://ror.org/02hwwbr17', 'en', 1, 'https://ror.org/02hwwbr17 Crafoord Foundation'),
(83908, 'https://ror.org/04bmhc978', 'no_lang_code', 1, 'https://ror.org/04bmhc978 Inrad Optics (United States)'),
(83909, 'https://ror.org/05gvzzm30', 'en', 1, 'https://ror.org/05gvzzm30 The Lane Libraries'),
(83910, 'https://ror.org/01rhx3w79', 'en', 1, 'https://ror.org/01rhx3w79 Cancer Hospital and Research Institute'),
(83911, 'https://ror.org/02ap3s657', 'en', 1, 'https://ror.org/02ap3s657 Stupski Foundation'),
(83912, 'https://ror.org/03rz18g89', 'en', 1, 'https://ror.org/03rz18g89 Faith Baptist Bible College and Theological Seminary'),
(83913, 'https://ror.org/02w04sh96', 'en', 1, 'https://ror.org/02w04sh96 Ethel And James Flinn Foundation'),
(83914, 'https://ror.org/02fndbp74', 'en', 1, 'https://ror.org/02fndbp74 British Society for Haematology'),
(83915, 'https://ror.org/044s94625', 'en', 1, 'https://ror.org/044s94625 The Association of Child and Adolescent Mental Health'),
(83916, 'https://ror.org/05m1htz08', 'en', 1, 'https://ror.org/05m1htz08 Jurassic Foundation'),
(83917, 'https://ror.org/04n5yc113', 'en', 1, 'https://ror.org/04n5yc113 The Robertson Trust'),
(83918, 'https://ror.org/044jd6p20', 'no_lang_code', 1, 'https://ror.org/044jd6p20 Argumentum Kiadó (Hungary)'),
(83919, 'https://ror.org/05hd8nc86', 'en', 1, 'https://ror.org/05hd8nc86 Rick Hansen Foundation'),
(83920, 'https://ror.org/003s20294', 'es', 1, 'https://ror.org/003s20294 Centro Internacional de Entrenamiento e Investigaciones Medicas'),
(83921, 'https://ror.org/047hznt06', 'en', 1, 'https://ror.org/047hznt06 National Marine Environmental Forecasting Center ēš„å›½å®¶ęµ·ę“‹ēŽÆå¢ƒé¢„ęŠ„äø­åæƒ'),
(83922, 'https://ror.org/03mq5pg65', 'en', 1, 'https://ror.org/03mq5pg65 Knights Templar Eye Foundation'),
(83923, 'https://ror.org/03abbex33', 'en', 1, 'https://ror.org/03abbex33 Arthritis National Research Foundation'),
(83924, 'https://ror.org/023y94y35', 'no_lang_code', 1, 'https://ror.org/023y94y35 Sabre (United States)'),
(83925, 'https://ror.org/030111688', 'en', 1, 'https://ror.org/030111688 University of Technology, Mauritius'),
(83926, 'https://ror.org/0320x4r67', 'no_lang_code', 1, 'https://ror.org/0320x4r67 Canfor Pulp Products (Canada)'),
(83927, 'https://ror.org/04fmgc680', 'en', 1, 'https://ror.org/04fmgc680 Al-Qalam University Katsina'),
(83928, 'https://ror.org/00vzax568', 'no_lang_code', 1, 'https://ror.org/00vzax568 Symplectic (UK)'),
(83929, 'https://ror.org/055he9s77', 'no_lang_code', 1, 'https://ror.org/055he9s77 Systems and Technology Research (United States)'),
(83930, 'https://ror.org/00s3w5517', 'en', 1, 'https://ror.org/00s3w5517 Centre for Energy Advancement through Technological Innovation'),
(83931, 'https://ror.org/01s13vs47', 'en', 1, 'https://ror.org/01s13vs47 Joanna M. Nicolay Melanoma Foundation'),
(83932, 'https://ror.org/02jamnw30', 'en', 1, 'https://ror.org/02jamnw30 Nizhnevartovsk State University ŠŠøŠ¶Š½ŠµŠ²Š°Ń€Ń‚Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(83933, 'https://ror.org/00292rj97', 'en', 1, 'https://ror.org/00292rj97 Gunnar Nilsson Cancer Foundation'),
(83934, 'https://ror.org/03sr1ma14', 'en', 1, 'https://ror.org/03sr1ma14 Iran National Science Foundation'),
(83935, 'https://ror.org/02bx95b89', 'en', 1, 'https://ror.org/02bx95b89 National Training Foundation'),
(83936, 'https://ror.org/056v0a906', 'en', 1, 'https://ror.org/056v0a906 Islamic Azad University, Bonab Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد بناب'),
(83937, 'https://ror.org/00r80b982', 'en', 1, 'https://ror.org/00r80b982 Stand Among Friends'),
(83938, 'https://ror.org/04akw0j64', 'en', 1, 'https://ror.org/04akw0j64 Institute of General and Physical Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¾ŠæŃˆŃ‚Ńƒ Šø Ń„ŠøŠ·ŠøŃ‡ŠŗŃƒ Ń…ŠµŠ¼ŠøŃ˜Ńƒ'),
(83939, 'https://ror.org/05qj99v29', 'en', 1, 'https://ror.org/05qj99v29 Skolkovo Foundation'),
(83940, 'https://ror.org/01gpbfk53', 'en', 1, 'https://ror.org/01gpbfk53 Biofuels Center of North Carolina'),
(83941, 'https://ror.org/01521js97', 'en', 1, 'https://ror.org/01521js97 CureSearch for Children''s Cancer'),
(83942, 'https://ror.org/0218tqp52', 'no_lang_code', 1, 'https://ror.org/0218tqp52 Institut für Umweltstudien Institute for Environmental Studies Weibel & Ness (Germany)'),
(83943, 'https://ror.org/022r2a959', 'en', 1, 'https://ror.org/022r2a959 Dayton Foundation'),
(83944, 'https://ror.org/02s2kh393', 'en', 1, 'https://ror.org/02s2kh393 New Zealand Freshwater Sciences Society'),
(83945, 'https://ror.org/00pv8f849', 'no_lang_code', 1, 'https://ror.org/00pv8f849 Genome and Company (South Korea) ģ§€ė†ˆģ•¤ģ»“ķ¼ė‹ˆ'),
(83946, 'https://ror.org/0508vn378', 'en', 1, 'https://ror.org/0508vn378 Center for Climate and Resilience Research Centro de Ciencia del Clima y la Resiliencia'),
(83947, 'https://ror.org/00q3q5393', 'en', 1, 'https://ror.org/00q3q5393 Princess Takamatsu Cancer Research Fund é«˜ę¾ēŽ‹å„³ćŒć‚“ē ”ē©¶åŸŗé‡‘'),
(83948, 'https://ror.org/02b26z922', 'no_lang_code', 1, 'https://ror.org/02b26z922 Patrys (Australia)'),
(83949, 'https://ror.org/03e6bna46', 'en', 1, 'https://ror.org/03e6bna46 Bruegel'),
(83950, 'https://ror.org/044xj5x73', 'en', 1, 'https://ror.org/044xj5x73 The Ogden Trust'),
(83951, 'https://ror.org/00mdxnh77', 'en', 1, 'https://ror.org/00mdxnh77 Taizhou Second People''s Hospital'),
(83952, 'https://ror.org/00hdydj55', 'en', 1, 'https://ror.org/00hdydj55 Al Andalus University Ų¬Ų§Ł…Ų¹Ų© الأندلس Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ©'),
(83953, 'https://ror.org/026t2bs48', 'no_lang_code', 1, 'https://ror.org/026t2bs48 LKC Technologies (United States)'),
(83954, 'https://ror.org/02bq60y92', 'en', 1, 'https://ror.org/02bq60y92 Islamic Azad University of Zanjan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد زنجان'),
(83955, 'https://ror.org/02bn4n710', 'en', 1, 'https://ror.org/02bn4n710 Society for Underwater Technology'),
(83956, 'https://ror.org/05xz9bg76', 'en', 1, 'https://ror.org/05xz9bg76 Kala Art Institute'),
(83957, 'https://ror.org/04mknkb88', 'en', 1, 'https://ror.org/04mknkb88 Canadian Medical Hall of Fame'),
(83958, 'https://ror.org/03twxam98', 'no_lang_code', 1, 'https://ror.org/03twxam98 Combe (United States)'),
(83959, 'https://ror.org/05kpxmp13', 'en', 1, 'https://ror.org/05kpxmp13 Environment and Development Action Third World'),
(83960, 'https://ror.org/00yg6a139', 'en', 1, 'https://ror.org/00yg6a139 Chinese Nutrition Society äø­å›½č„å…»å­¦ä¼š');
INSERT INTO `rors` VALUES
(83961, 'https://ror.org/05va25t76', 'en', 1, 'https://ror.org/05va25t76 Yiddish Book Center'),
(83962, 'https://ror.org/054g76q14', 'en', 1, 'https://ror.org/054g76q14 Pacific Disaster Center'),
(83963, 'https://ror.org/01bye6331', 'en', 1, 'https://ror.org/01bye6331 Egyptian Society of Ear, Nose, Throat and Allied Sciences'),
(83964, 'https://ror.org/01fwd1405', 'en', 1, 'https://ror.org/01fwd1405 Lewis and Clark Library'),
(83965, 'https://ror.org/05avjmd23', 'en', 1, 'https://ror.org/05avjmd23 Cornelia de Lange Syndrome Foundation'),
(83966, 'https://ror.org/024sg1d19', 'en', 1, 'https://ror.org/024sg1d19 Great Lakes Protection Fund'),
(83967, 'https://ror.org/03bs7gs75', 'en', 1, 'https://ror.org/03bs7gs75 George S. and Dolores Dore Eccles Foundation'),
(83968, 'https://ror.org/029gjyp91', 'en', 1, 'https://ror.org/029gjyp91 Offshore Energy Research Association of Nova Scotia'),
(83969, 'https://ror.org/017jwe502', 'en', 1, 'https://ror.org/017jwe502 Japanese Geotechnical Society å…¬ē›Šē¤¾å›£ę³•äŗŗåœ°ē›¤å·„å­¦ä¼š'),
(83970, 'https://ror.org/01ycbnv19', 'en', 1, 'https://ror.org/01ycbnv19 Grammy Foundation'),
(83971, 'https://ror.org/006t2mw36', 'no_lang_code', 1, 'https://ror.org/006t2mw36 Shanxi Coal Transportation and Sales Group (China) å±±č„æē…¤ē‚­čæé”€é›†å›¢ęœ‰é™å…¬åø ęŠ€ęœÆę”ÆęŒ'),
(83972, 'https://ror.org/03s9nzc43', 'en', 1, 'https://ror.org/03s9nzc43 Reva and David Logan Foundation'),
(83973, 'https://ror.org/02q2zj329', 'no_lang_code', 1, 'https://ror.org/02q2zj329 Neuromorphometrics (United States)'),
(83974, 'https://ror.org/00vdff906', 'fi', 1, 'https://ror.org/00vdff906 Walter Ahlstrƶmin sƤƤtiƶ'),
(83975, 'https://ror.org/000k40t10', 'en', 1, 'https://ror.org/000k40t10 Heiwa Nakajima Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¹³å’Œäø­å³¶č²”å›£'),
(83976, 'https://ror.org/02yntm683', 'en', 1, 'https://ror.org/02yntm683 Alex C. Walker Educational and Charitable Foundation'),
(83977, 'https://ror.org/032m3tm58', 'en', 1, 'https://ror.org/032m3tm58 Medical Foundation of North Carolina'),
(83978, 'https://ror.org/054stgg72', 'en', 1, 'https://ror.org/054stgg72 Czech Society for Ornithology'),
(83979, 'https://ror.org/03qmn5877', 'no_lang_code', 1, 'https://ror.org/03qmn5877 Magnitogorsk Iron and Steel Works (Russia) ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠøŠ¹ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ комбинат'),
(83980, 'https://ror.org/028tfmf79', 'en', 1, 'https://ror.org/028tfmf79 British Association of Dermatologists'),
(83981, 'https://ror.org/05mzp4d74', 'en', 1, 'https://ror.org/05mzp4d74 Shanxi Cardiovascular Hospital å±±č„æēœåæƒč”€ē®”åŒ»é™¢'),
(83982, 'https://ror.org/036f91331', 'en', 1, 'https://ror.org/036f91331 Dioraphte Foundation Stichting Dioraphte'),
(83983, 'https://ror.org/03a63f080', 'en', 1, 'https://ror.org/03a63f080 Brain & Behavior Research Foundation'),
(83984, 'https://ror.org/020vv1e63', 'en', 1, 'https://ror.org/020vv1e63 Minnesota Eye Consultants'),
(83985, 'https://ror.org/00yad9135', 'en', 1, 'https://ror.org/00yad9135 Sonoran Joint Venture'),
(83986, 'https://ror.org/04geqe079', 'en', 1, 'https://ror.org/04geqe079 Iacocca Family Foundation'),
(83987, 'https://ror.org/022b9d096', 'no', 1, 'https://ror.org/022b9d096 Bergen Kommune'),
(83988, 'https://ror.org/05kjhj835', 'en', 1, 'https://ror.org/05kjhj835 Science Foundation Arizona'),
(83989, 'https://ror.org/05v9w7y68', 'en', 1, 'https://ror.org/05v9w7y68 Military Child Education Coalition'),
(83990, 'https://ror.org/05pwg4790', 'en', 1, 'https://ror.org/05pwg4790 Ranken Jordan Pediatric Bridge Hospital'),
(83991, 'https://ror.org/05bgr8018', 'fr', 1, 'https://ror.org/05bgr8018 Gymnase de Nyon'),
(83992, 'https://ror.org/01q3yym06', 'no_lang_code', 1, 'https://ror.org/01q3yym06 Latour (Sweden)'),
(83993, 'https://ror.org/01v0kyj08', 'en', 1, 'https://ror.org/01v0kyj08 Islamic Azad University, Jahrom Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد جهرم'),
(83994, 'https://ror.org/01zza8h42', 'en', 1, 'https://ror.org/01zza8h42 ALS Recovery Fund'),
(83995, 'https://ror.org/05c7bzd52', 'en', 1, 'https://ror.org/05c7bzd52 Australian Pain Society'),
(83996, 'https://ror.org/05a1ky058', 'en', 1, 'https://ror.org/05a1ky058 Facility Guidelines Institute'),
(83997, 'https://ror.org/05jytz541', 'en', 1, 'https://ror.org/05jytz541 Lambda Alpha International'),
(83998, 'https://ror.org/05nvmvs54', 'en', 1, 'https://ror.org/05nvmvs54 Robert and Patricia Switzer Foundation'),
(83999, 'https://ror.org/00t1dhh66', 'en', 1, 'https://ror.org/00t1dhh66 State Audit Office of Hungary'),
(84000, 'https://ror.org/03sayg697', 'no_lang_code', 1, 'https://ror.org/03sayg697 ATCO (Canada)'),
(84001, 'https://ror.org/033p51247', 'no_lang_code', 1, 'https://ror.org/033p51247 MindSpec'),
(84002, 'https://ror.org/0192aca61', 'en', 1, 'https://ror.org/0192aca61 Psoriasis and Psoriatic Arthritis Alliance'),
(84003, 'https://ror.org/007qe0s35', 'en', 1, 'https://ror.org/007qe0s35 Walter S. Johnson Foundation'),
(84004, 'https://ror.org/01r729g75', 'en', 1, 'https://ror.org/01r729g75 Russian State University for Physical Education Sport Youth and Tourism Российский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта, молоГёжи Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(84005, 'https://ror.org/03752z258', 'en', 1, 'https://ror.org/03752z258 DOEN Foundation Stichting DOEN'),
(84006, 'https://ror.org/03gxj8t57', 'en', 1, 'https://ror.org/03gxj8t57 Central American Technological University Universidad Tecnológica Centroamericana'),
(84007, 'https://ror.org/02aj9j626', 'en', 1, 'https://ror.org/02aj9j626 Foundation for Neurologic Diseases'),
(84008, 'https://ror.org/05jyw4675', 'en', 1, 'https://ror.org/05jyw4675 Marfan Foundation'),
(84009, 'https://ror.org/012nfwd22', 'en', 1, 'https://ror.org/012nfwd22 Kaifeng University 开封大学'),
(84010, 'https://ror.org/050hygt04', 'en', 1, 'https://ror.org/050hygt04 University Network of Excellence in Nuclear Engineering'),
(84011, 'https://ror.org/00fv1ny85', 'en', 1, 'https://ror.org/00fv1ny85 Scottish Rite Freemasonry'),
(84012, 'https://ror.org/04q36wn27', 'en', 1, 'https://ror.org/04q36wn27 Lieber Institute for Brain Development'),
(84013, 'https://ror.org/04sxg3977', 'no_lang_code', 1, 'https://ror.org/04sxg3977 Moroccan Agency For Solar Energy (Morocco)'),
(84014, 'https://ror.org/04msaxc67', 'en', 1, 'https://ror.org/04msaxc67 Indian Institute of Art & Design'),
(84015, 'https://ror.org/00cpjch55', 'en', 1, 'https://ror.org/00cpjch55 The Medical Oncology Centre of Rosebank'),
(84016, 'https://ror.org/02a5t5746', 'no_lang_code', 1, 'https://ror.org/02a5t5746 Emera (Canada)'),
(84017, 'https://ror.org/02z3t5745', 'es', 1, 'https://ror.org/02z3t5745 Fundación para la Investigación, Docencia y Prevención del CÔncer'),
(84018, 'https://ror.org/04nv8vw43', 'no_lang_code', 1, 'https://ror.org/04nv8vw43 Advanced Technologies and Laboratories International (United States)'),
(84019, 'https://ror.org/052gw5984', 'en', 1, 'https://ror.org/052gw5984 Devon & Exeter Institution'),
(84020, 'https://ror.org/018x6py98', 'en', 1, 'https://ror.org/018x6py98 American Institute of Chemists'),
(84021, 'https://ror.org/04dhf0316', 'nl', 1, 'https://ror.org/04dhf0316 G.Ph. Verhagen-Stichting'),
(84022, 'https://ror.org/04yns5a36', 'no_lang_code', 1, 'https://ror.org/04yns5a36 Esteve (Spain)'),
(84023, 'https://ror.org/02cvx7z60', 'no_lang_code', 1, 'https://ror.org/02cvx7z60 Aqualinc (New Zealand)'),
(84024, 'https://ror.org/04g8ype42', 'en', 1, 'https://ror.org/04g8ype42 Austrian Society of Cardiology Ɩsterreichische Kardiologische Gesellschaft'),
(84025, 'https://ror.org/044br6v76', 'en', 1, 'https://ror.org/044br6v76 Beaver County Library System'),
(84026, 'https://ror.org/047d8yx24', 'en', 1, 'https://ror.org/047d8yx24 Chongqing Cancer Hospital é‡åŗ†åø‚č‚æē˜¤ē ”ē©¶ę‰€'),
(84027, 'https://ror.org/03s7b0a75', 'en', 1, 'https://ror.org/03s7b0a75 Osteo Science Foundation'),
(84028, 'https://ror.org/04jdqdr13', 'es', 1, 'https://ror.org/04jdqdr13 Instituto de BiologĆ­a Subtropical'),
(84029, 'https://ror.org/04cm8m874', 'en', 1, 'https://ror.org/04cm8m874 Marianne and Marcus Wallenberg Foundation'),
(84030, 'https://ror.org/00ppfcz28', 'en', 1, 'https://ror.org/00ppfcz28 National University of Water and Environmental Engineering ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного госпоГарства та ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń'),
(84031, 'https://ror.org/01kx1an46', 'en', 1, 'https://ror.org/01kx1an46 Batken State University Баткенский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(84032, 'https://ror.org/0334vj093', 'no_lang_code', 1, 'https://ror.org/0334vj093 C-Motion (United States)'),
(84033, 'https://ror.org/05sewvy06', 'en', 1, 'https://ror.org/05sewvy06 CatWalk Spinal Cord Injury Trust'),
(84034, 'https://ror.org/02v2va994', 'no_lang_code', 1, 'https://ror.org/02v2va994 Insight Equity (United States)'),
(84035, 'https://ror.org/05t7bek56', 'en', 1, 'https://ror.org/05t7bek56 China Foundation for Hepatitis Prevention and Control'),
(84036, 'https://ror.org/04vq5jh35', 'en', 1, 'https://ror.org/04vq5jh35 Paochien Hospital 寶建醫院'),
(84037, 'https://ror.org/03nypmk85', 'no_lang_code', 1, 'https://ror.org/03nypmk85 Lac Hong University TrĘ°į»ng ĐẔi hį»c Lįŗ”c Hồng'),
(84038, 'https://ror.org/05291fa13', 'en', 1, 'https://ror.org/05291fa13 SpinalCure Australia'),
(84039, 'https://ror.org/00qnect36', 'en', 1, 'https://ror.org/00qnect36 Health & Medicine Policy Research Group'),
(84040, 'https://ror.org/01ky0w731', 'en', 1, 'https://ror.org/01ky0w731 Academic Hospital Paramaribo Academisch Ziekenhuis Paramaribo'),
(84041, 'https://ror.org/02yxs9t24', 'no_lang_code', 1, 'https://ror.org/02yxs9t24 Analytical Biological Services (United States)'),
(84042, 'https://ror.org/04rdw0c88', 'en', 1, 'https://ror.org/04rdw0c88 The Neuro Well'),
(84043, 'https://ror.org/02g57tw64', 'en', 1, 'https://ror.org/02g57tw64 Walter & Elise Haas Fund'),
(84044, 'https://ror.org/04c8e2d70', 'en', 1, 'https://ror.org/04c8e2d70 Haematology Society of Australia and New Zealand'),
(84045, 'https://ror.org/00r3np134', 'no_lang_code', 1, 'https://ror.org/00r3np134 STI Optronics (United States)'),
(84046, 'https://ror.org/049jv1y58', 'en', 1, 'https://ror.org/049jv1y58 Alice Kleberg Reynolds Foundation'),
(84047, 'https://ror.org/01dp70603', 'en', 1, 'https://ror.org/01dp70603 Society of Urologic Oncology'),
(84048, 'https://ror.org/02v91xy81', 'en', 1, 'https://ror.org/02v91xy81 Stockholm Municipality'),
(84049, 'https://ror.org/02hshs559', 'en', 1, 'https://ror.org/02hshs559 Building Changes'),
(84050, 'https://ror.org/01c86x832', 'no_lang_code', 1, 'https://ror.org/01c86x832 Precision Acoustics (United Kingdom)'),
(84051, 'https://ror.org/046ksv218', 'en', 1, 'https://ror.org/046ksv218 Obour Institutes'),
(84052, 'https://ror.org/02dwn3e81', 'fr', 1, 'https://ror.org/02dwn3e81 Centre LƩa-Roback'),
(84053, 'https://ror.org/045t4nj76', 'no_lang_code', 1, 'https://ror.org/045t4nj76 BioMonde (United Kingdom)'),
(84054, 'https://ror.org/01shmb059', 'en', 1, 'https://ror.org/01shmb059 Devon History Society'),
(84055, 'https://ror.org/00ew8c753', 'en', 1, 'https://ror.org/00ew8c753 St. Mary''s Hospital Lacor'),
(84056, 'https://ror.org/004kbgh11', 'en', 1, 'https://ror.org/004kbgh11 Association Canadienne de l’Enseignement Cooperatif Canadian Association for Co-operative Education'),
(84057, 'https://ror.org/02hc1xg77', 'de', 1, 'https://ror.org/02hc1xg77 Abwasserverband Achental-Inntal-Zillertal'),
(84058, 'https://ror.org/00522p687', 'en', 1, 'https://ror.org/00522p687 Dutch Institute for Advanced Logistics'),
(84059, 'https://ror.org/02ebkdp37', 'en', 1, 'https://ror.org/02ebkdp37 Usona Institute'),
(84060, 'https://ror.org/04rvwsw45', 'en', 1, 'https://ror.org/04rvwsw45 Center of Medical Genetics and Primary Health Care'),
(84061, 'https://ror.org/04t31bx63', 'en', 1, 'https://ror.org/04t31bx63 Alpha-1 Foundation'),
(84062, 'https://ror.org/05tw3m124', 'en', 1, 'https://ror.org/05tw3m124 Network for Studies on Pensions, Aging and Retirement'),
(84063, 'https://ror.org/01f0v9p59', 'no_lang_code', 1, 'https://ror.org/01f0v9p59 CIMA+ (Canada)'),
(84064, 'https://ror.org/027zr9y17', 'en', 1, 'https://ror.org/027zr9y17 Management and Science University'),
(84065, 'https://ror.org/058b5q664', 'en', 1, 'https://ror.org/058b5q664 Arts & Health Alliance'),
(84066, 'https://ror.org/001fsh058', 'en', 1, 'https://ror.org/001fsh058 Irirangi te Motu NZ on Air'),
(84067, 'https://ror.org/03ggcx620', 'en', 1, 'https://ror.org/03ggcx620 Gerber Foundation'),
(84068, 'https://ror.org/00yy5aq18', 'en', 1, 'https://ror.org/00yy5aq18 Danish Society of Nephrology Dansk Nefrologisk Selskab'),
(84069, 'https://ror.org/01ss3mr78', 'de', 1, 'https://ror.org/01ss3mr78 Ias-Gruppe'),
(84070, 'https://ror.org/01cg0k189', 'en', 1, 'https://ror.org/01cg0k189 International Christian University å›½éš›åŸŗē£ę•™å¤§å­¦'),
(84071, 'https://ror.org/0179s5z12', 'en', 1, 'https://ror.org/0179s5z12 School Based Health Alliance'),
(84072, 'https://ror.org/036xxdj36', 'en', 1, 'https://ror.org/036xxdj36 International University of Professional Studies'),
(84073, 'https://ror.org/01742ys19', 'no_lang_code', 1, 'https://ror.org/01742ys19 Fukada Geological Institute ę·±ē”°åœ°č³Ŗē ”ē©¶ę‰€'),
(84074, 'https://ror.org/0270bqq96', 'nl', 1, 'https://ror.org/0270bqq96 SBOH'),
(84075, 'https://ror.org/03c6r6d86', 'es', 1, 'https://ror.org/03c6r6d86 Escuela Campo Alegre'),
(84076, 'https://ror.org/04t853d16', 'no_lang_code', 1, 'https://ror.org/04t853d16 O''Neal Steel (United States)'),
(84077, 'https://ror.org/017w27591', 'no_lang_code', 1, 'https://ror.org/017w27591 WPL (United States)'),
(84078, 'https://ror.org/02571vb36', 'no_lang_code', 1, 'https://ror.org/02571vb36 Levi Strauss (United States)'),
(84079, 'https://ror.org/03xyf3h94', 'en', 1, 'https://ror.org/03xyf3h94 European Venous Forum'),
(84080, 'https://ror.org/00bq9ww16', 'en', 1, 'https://ror.org/00bq9ww16 Bear Necessities Pediatric Cancer Foundation'),
(84081, 'https://ror.org/04jtseq07', 'no_lang_code', 1, 'https://ror.org/04jtseq07 Brennan & Company (Ireland)'),
(84082, 'https://ror.org/04cx06q51', 'en', 1, 'https://ror.org/04cx06q51 National Association of Chronic Disease Directors'),
(84083, 'https://ror.org/00cqv5s75', 'en', 1, 'https://ror.org/00cqv5s75 Sri Venkateswara Medical College and Ruia Hospital ą°¶ą±ą°°ą±€ ą°µą±†ą°‚ą°•ą°Ÿą±‡ą°¶ą±ą°µą°° ą°µą±ˆą°¦ą±ą°Æ కళాశాల మరియు రుయా ą°†ą°øą±ą°Ŗą°¤ą±ą°°ą°æ'),
(84084, 'https://ror.org/01jjkzv49', 'en', 1, 'https://ror.org/01jjkzv49 Neurological Foundation of New Zealand'),
(84085, 'https://ror.org/00c2je580', 'en', 1, 'https://ror.org/00c2je580 International Fibrodysplasia Ossificans Progressiva Association'),
(84086, 'https://ror.org/041r75465', 'en', 1, 'https://ror.org/041r75465 Zhengzhou Central Hospital'),
(84087, 'https://ror.org/011bahz51', 'no_lang_code', 1, 'https://ror.org/011bahz51 Baldacci (Italy) Laboratori Baldacci'),
(84088, 'https://ror.org/03ttxzr96', 'en', 1, 'https://ror.org/03ttxzr96 City of Portland'),
(84089, 'https://ror.org/042wjyc34', 'en', 1, 'https://ror.org/042wjyc34 Garnett Passe and Rodney Williams Memorial Foundation'),
(84090, 'https://ror.org/00gxs8147', 'en', 1, 'https://ror.org/00gxs8147 Hanoi University of Natural Resources and Environment ĐẔi hį»c TĆ i nguyĆŖn vĆ  MĆ“i trĘ°į»ng HĆ  Nį»™i'),
(84091, 'https://ror.org/05t831771', 'en', 1, 'https://ror.org/05t831771 Lauri Strauss Leukemia Foundation'),
(84092, 'https://ror.org/00d5rxh07', 'fr', 1, 'https://ror.org/00d5rxh07 CancĆ©ropĆ“le Ǝle-de-France'),
(84093, 'https://ror.org/03tqe0950', 'nl', 1, 'https://ror.org/03tqe0950 Expertisecentrum Nederlands'),
(84094, 'https://ror.org/0208px693', 'no_lang_code', 1, 'https://ror.org/0208px693 Dacco Sci (United States)'),
(84095, 'https://ror.org/03achyh40', 'no_lang_code', 1, 'https://ror.org/03achyh40 Fiskevegn (Norway)'),
(84096, 'https://ror.org/0535brc05', 'en', 1, 'https://ror.org/0535brc05 Kentucky Valley Educational Cooperative'),
(84097, 'https://ror.org/008aybb74', 'en', 1, 'https://ror.org/008aybb74 Hispanics in Philanthropy'),
(84098, 'https://ror.org/03h1b6v44', 'en', 1, 'https://ror.org/03h1b6v44 Gunnison Valley Hospital'),
(84099, 'https://ror.org/007gcc553', 'no_lang_code', 1, 'https://ror.org/007gcc553 Eyegaze (United States)'),
(84100, 'https://ror.org/00v344w16', 'sv', 1, 'https://ror.org/00v344w16 Fredrik och Ingrid Thurings Stiftelse'),
(84101, 'https://ror.org/03jerjg25', 'en', 1, 'https://ror.org/03jerjg25 Loulou Foundation'),
(84102, 'https://ror.org/003q1s858', 'la', 1, 'https://ror.org/003q1s858 Caritas Roma'),
(84103, 'https://ror.org/057h5sf90', 'en', 1, 'https://ror.org/057h5sf90 Children''s Cancer and Leukaemia Group'),
(84104, 'https://ror.org/0533nh149', 'en', 1, 'https://ror.org/0533nh149 The Foundling Museum'),
(84105, 'https://ror.org/04n1h1g04', 'en', 1, 'https://ror.org/04n1h1g04 Brain Mapping Foundation'),
(84106, 'https://ror.org/02jcte795', 'en', 1, 'https://ror.org/02jcte795 Association of Canadian Archivists'),
(84107, 'https://ror.org/01yxtb033', 'en', 1, 'https://ror.org/01yxtb033 Spondylitis Association of America'),
(84108, 'https://ror.org/00f7paw60', 'no_lang_code', 1, 'https://ror.org/00f7paw60 Space Systems Research Corporation (United States)'),
(84109, 'https://ror.org/0018qct18', 'en', 1, 'https://ror.org/0018qct18 National Library of the Philippines'),
(84110, 'https://ror.org/01cc5m134', 'en', 1, 'https://ror.org/01cc5m134 Soil and Water Conservation Society'),
(84111, 'https://ror.org/016jxdz70', 'en', 1, 'https://ror.org/016jxdz70 Sungsan Hyo University ģ„±ģ‚°ķšØėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(84112, 'https://ror.org/05h9vj608', 'no_lang_code', 1, 'https://ror.org/05h9vj608 Imperial Brands (United Kingdom)'),
(84113, 'https://ror.org/009rhnd12', 'en', 1, 'https://ror.org/009rhnd12 National Institute of Technology, Asahikawa College ę—­å·å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(84114, 'https://ror.org/02nxzya59', 'en', 1, 'https://ror.org/02nxzya59 Princeton Public Library'),
(84115, 'https://ror.org/03jzya593', 'en', 1, 'https://ror.org/03jzya593 Leopardstown Park Hospital'),
(84116, 'https://ror.org/01a21pk29', 'no_lang_code', 1, 'https://ror.org/01a21pk29 Corvid Technologies (United States)'),
(84117, 'https://ror.org/05rtq3v12', 'en', 1, 'https://ror.org/05rtq3v12 Chita State Academy of Medicine Š§ŠøŃ‚ŠøŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(84118, 'https://ror.org/04prjvw86', 'en', 1, 'https://ror.org/04prjvw86 SIR Institute for Pharmacy Practice and Policy'),
(84119, 'https://ror.org/04ckn3152', 'en', 1, 'https://ror.org/04ckn3152 Independent Age'),
(84120, 'https://ror.org/04q9mdf26', 'fr', 1, 'https://ror.org/04q9mdf26 Institut Sainte Catherine'),
(84121, 'https://ror.org/04bwcxw19', 'en', 1, 'https://ror.org/04bwcxw19 Connecticut Bar Foundation'),
(84122, 'https://ror.org/018grnj07', 'en', 1, 'https://ror.org/018grnj07 Center for Transportation and the Environment'),
(84123, 'https://ror.org/02peq7p80', 'tr', 1, 'https://ror.org/02peq7p80 Beyoglu Goz Egitim ve Arastirma Hastanesi'),
(84124, 'https://ror.org/056cwr036', 'en', 1, 'https://ror.org/056cwr036 Health Holland'),
(84125, 'https://ror.org/032b60f45', 'en', 1, 'https://ror.org/032b60f45 University of Samarra Ų¬Ų§Ł…Ų¹Ų© Ų³Ų§Ł…Ų±Ų§Ų”'),
(84126, 'https://ror.org/03xfjns53', 'en', 1, 'https://ror.org/03xfjns53 Cutaneous Lymphoma Foundation'),
(84127, 'https://ror.org/02vx0y638', 'no_lang_code', 1, 'https://ror.org/02vx0y638 Technik und Forschung im Betonbau (Switzerland)'),
(84128, 'https://ror.org/00e8bt462', 'es', 1, 'https://ror.org/00e8bt462 Universidad SalvadoreƱa Alberto Masferrer'),
(84129, 'https://ror.org/01sn10141', 'en', 1, 'https://ror.org/01sn10141 Australasian Society of Clinical and Experimental Pharmacologists and Toxicologists'),
(84130, 'https://ror.org/05j4rd316', 'en', 1, 'https://ror.org/05j4rd316 Alaska Eskimo Whaling Commission'),
(84131, 'https://ror.org/01a47wy11', 'en', 1, 'https://ror.org/01a47wy11 George A. Ramlose Foundation'),
(84132, 'https://ror.org/044frnr25', 'no_lang_code', 1, 'https://ror.org/044frnr25 BioForce Nanosciences (United States)'),
(84133, 'https://ror.org/029jmm319', 'no_lang_code', 1, 'https://ror.org/029jmm319 SEAKR Engineering (United States)'),
(84134, 'https://ror.org/017za0d90', 'no_lang_code', 1, 'https://ror.org/017za0d90 Lake Capital'),
(84135, 'https://ror.org/026hhvp67', 'en', 1, 'https://ror.org/026hhvp67 National University of East Timor Universidade Nacional de Timor Lorosa''e Universidade NasionÔl Timór Lorosa''e'),
(84136, 'https://ror.org/05r9xgf14', 'en', 1, 'https://ror.org/05r9xgf14 Universidad Washington y Lee Washington and Lee University'),
(84137, 'https://ror.org/05etm5g34', 'en', 1, 'https://ror.org/05etm5g34 Alberta Glycomics Centre'),
(84138, 'https://ror.org/0106aa564', 'en', 1, 'https://ror.org/0106aa564 Dent Neurologic Institute'),
(84139, 'https://ror.org/04ypnrn45', 'en', 1, 'https://ror.org/04ypnrn45 Australian National Fabrication Facility'),
(84140, 'https://ror.org/018kx8h28', 'en', 1, 'https://ror.org/018kx8h28 Brain Tumour Research'),
(84141, 'https://ror.org/023tzw928', 'es', 1, 'https://ror.org/023tzw928 Universidad del Golfo de MƩxico'),
(84142, 'https://ror.org/034xhb710', 'no_lang_code', 1, 'https://ror.org/034xhb710 Matenadaran Õ„Õ„Õ½Ö€ÕøÕŗ ՄՔշտոցի Õ”Õ¶Õ¾Õ”Õ¶ Õ°Õ«Õ¶ Õ±Õ„Õ¼Õ”Õ£Ö€Õ„Ö€Õ« Õ«Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(84143, 'https://ror.org/047g10r44', 'en', 1, 'https://ror.org/047g10r44 Life & Peace Institute'),
(84144, 'https://ror.org/04425ns70', 'en', 1, 'https://ror.org/04425ns70 Catholic University of Kabgayi Institut Catholique de Kabgayi'),
(84145, 'https://ror.org/02bzp3s84', 'de', 1, 'https://ror.org/02bzp3s84 Deutsche Stiftung Sklerodermie'),
(84146, 'https://ror.org/039q79s93', 'no_lang_code', 1, 'https://ror.org/039q79s93 MedicaSafe (United States)'),
(84147, 'https://ror.org/03f0nw643', 'en', 1, 'https://ror.org/03f0nw643 Saastamoinen Foundation'),
(84148, 'https://ror.org/02qztxx10', 'no_lang_code', 1, 'https://ror.org/02qztxx10 BioMedPress'),
(84149, 'https://ror.org/03t7epq39', 'en', 1, 'https://ror.org/03t7epq39 Lion Foundation'),
(84150, 'https://ror.org/03prap097', 'en', 1, 'https://ror.org/03prap097 Jemez Pueblo Community Library'),
(84151, 'https://ror.org/04z5hhb71', 'fr', 1, 'https://ror.org/04z5hhb71 Institut des Corps Gras'),
(84152, 'https://ror.org/05dv2tv03', 'no_lang_code', 1, 'https://ror.org/05dv2tv03 Genetic Alliance UK (United Kingdom)'),
(84153, 'https://ror.org/04tdfgn13', 'en', 1, 'https://ror.org/04tdfgn13 Pro-Implant Foundation'),
(84154, 'https://ror.org/01bqs3h57', 'en', 1, 'https://ror.org/01bqs3h57 State Academic University of Humanities Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ акаГемический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… наук'),
(84155, 'https://ror.org/0583r7t67', 'en', 1, 'https://ror.org/0583r7t67 Public Risk Management Association'),
(84156, 'https://ror.org/03tjm1a67', 'en', 1, 'https://ror.org/03tjm1a67 Osato Research Institute ć‚Ŗć‚µćƒˆē ”ē©¶ę‰€'),
(84157, 'https://ror.org/05dn5a810', 'en', 1, 'https://ror.org/05dn5a810 International Plant Nutrition Institute'),
(84158, 'https://ror.org/02hpd7j03', 'no_lang_code', 1, 'https://ror.org/02hpd7j03 Angiocrine Bioscience (United States)'),
(84159, 'https://ror.org/05q650k44', 'en', 1, 'https://ror.org/05q650k44 Heinz Endowments'),
(84160, 'https://ror.org/04sfsy924', 'sv', 1, 'https://ror.org/04sfsy924 Familjen Erling-Perssons Stiftelse'),
(84161, 'https://ror.org/050vetk63', 'en', 1, 'https://ror.org/050vetk63 New Zealand Federation of Graduate Women'),
(84162, 'https://ror.org/0416jmr79', 'en', 1, 'https://ror.org/0416jmr79 Huron Mountain Wildlife Foundation'),
(84163, 'https://ror.org/038b3cg44', 'no_lang_code', 1, 'https://ror.org/038b3cg44 Bennett Aerospace (United States)'),
(84164, 'https://ror.org/0455x6v88', 'en', 1, 'https://ror.org/0455x6v88 Tribeca Film Institute'),
(84165, 'https://ror.org/00v9qp856', 'en', 1, 'https://ror.org/00v9qp856 Middletown Thrall Library'),
(84166, 'https://ror.org/03877wr45', 'en', 1, 'https://ror.org/03877wr45 Al-Muthanna University Ų¬Ų§Ł…Ų¹Ų© المثنى'),
(84167, 'https://ror.org/03a877g66', 'en', 1, 'https://ror.org/03a877g66 Asian Eye Institute'),
(84168, 'https://ror.org/05vp0v372', 'en', 1, 'https://ror.org/05vp0v372 Taiwan Kansei Information Association å°ē£ę„Ÿę€§č³‡čØŠå­øęœƒ'),
(84169, 'https://ror.org/01f5cp510', 'no_lang_code', 1, 'https://ror.org/01f5cp510 Conetec Investigations'),
(84170, 'https://ror.org/00f07b645', 'en', 1, 'https://ror.org/00f07b645 West London Research Network'),
(84171, 'https://ror.org/019hmhw75', 'en', 1, 'https://ror.org/019hmhw75 Couch Family Foundation'),
(84172, 'https://ror.org/04h35ft75', 'it', 1, 'https://ror.org/04h35ft75 Fondazione Cassa di Risparmio di Lucca'),
(84173, 'https://ror.org/024tt5x58', 'en', 1, 'https://ror.org/024tt5x58 Bay Area Environmental Research Institute'),
(84174, 'https://ror.org/00vaxnn68', 'es', 1, 'https://ror.org/00vaxnn68 Universidad de la Sierra JuƔrez'),
(84175, 'https://ror.org/003r3cg42', 'en', 1, 'https://ror.org/003r3cg42 National University الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© - Ų§Ł„Ų³ŁˆŲÆŲ§Ł†'),
(84176, 'https://ror.org/019ypv256', 'en', 1, 'https://ror.org/019ypv256 CDA College'),
(84177, 'https://ror.org/05ja08h10', 'en', 1, 'https://ror.org/05ja08h10 College of the Sequoias'),
(84178, 'https://ror.org/0267sz241', 'en', 1, 'https://ror.org/0267sz241 Bill of Rights Institute'),
(84179, 'https://ror.org/01zxd4j23', 'de', 1, 'https://ror.org/01zxd4j23 Christina Barz-Stiftung'),
(84180, 'https://ror.org/03wcpny22', 'fr', 1, 'https://ror.org/03wcpny22 Eastern Townships Forest Research Trust Fiducie de Recherche sur la ForĆŖt des Cantons-de-l’Est'),
(84181, 'https://ror.org/00n5swf94', 'no_lang_code', 1, 'https://ror.org/00n5swf94 Azure Summit Technology (United States)'),
(84182, 'https://ror.org/03bsy3776', 'no_lang_code', 1, 'https://ror.org/03bsy3776 Andromed (Netherlands)'),
(84183, 'https://ror.org/01sqjdr55', 'no_lang_code', 1, 'https://ror.org/01sqjdr55 Kancera (Sweden)'),
(84184, 'https://ror.org/04q7bxp13', 'no_lang_code', 1, 'https://ror.org/04q7bxp13 Thor Industries (United States)'),
(84185, 'https://ror.org/02e08kw49', 'en', 1, 'https://ror.org/02e08kw49 Dwight Englewood School'),
(84186, 'https://ror.org/0249s5d29', 'en', 1, 'https://ror.org/0249s5d29 West of Scotland Regional Equality Council'),
(84187, 'https://ror.org/0410a6k82', 'no_lang_code', 1, 'https://ror.org/0410a6k82 GenMont Biotech (Taiwan)'),
(84188, 'https://ror.org/0106zn277', 'en', 1, 'https://ror.org/0106zn277 Tioga County Historical Society'),
(84189, 'https://ror.org/0599kt698', 'en', 1, 'https://ror.org/0599kt698 Association of Professors of Gynecology and Obstetrics'),
(84190, 'https://ror.org/01bkk2v06', 'en', 1, 'https://ror.org/01bkk2v06 Herbert Scoville Jr. Peace Fellowship'),
(84191, 'https://ror.org/04asna713', 'en', 1, 'https://ror.org/04asna713 European Meteorological Society'),
(84192, 'https://ror.org/02tdyw459', 'en', 1, 'https://ror.org/02tdyw459 Archives School Marburg Archivschule Marburg'),
(84193, 'https://ror.org/03ct9xc33', 'en', 1, 'https://ror.org/03ct9xc33 World Congress of Science and Factual Producers'),
(84194, 'https://ror.org/053j18m56', 'en', 1, 'https://ror.org/053j18m56 Honor Frost Foundation'),
(84195, 'https://ror.org/05yk4yy03', 'en', 1, 'https://ror.org/05yk4yy03 Iowa Soybean Association'),
(84196, 'https://ror.org/0052qq196', 'en', 1, 'https://ror.org/0052qq196 Beatrice Hunter Cancer Research Institute'),
(84197, 'https://ror.org/02t72hc65', 'en', 1, 'https://ror.org/02t72hc65 Indian Institute of Oil Palm Research'),
(84198, 'https://ror.org/010fkza68', 'en', 1, 'https://ror.org/010fkza68 Harry and Jeanette Weinberg Foundation'),
(84199, 'https://ror.org/05d907387', 'es', 1, 'https://ror.org/05d907387 Universidad Mundo Maya'),
(84200, 'https://ror.org/03rjyqh36', 'no_lang_code', 1, 'https://ror.org/03rjyqh36 Communication Disorders Technology (United States)'),
(84201, 'https://ror.org/034me3y30', 'es', 1, 'https://ror.org/034me3y30 Universidad del Valle'),
(84202, 'https://ror.org/05f5dq276', 'en', 1, 'https://ror.org/05f5dq276 The Postal Museum'),
(84203, 'https://ror.org/023bj9w84', 'en', 1, 'https://ror.org/023bj9w84 Resource Development Institute'),
(84204, 'https://ror.org/03jx0fx25', 'en', 1, 'https://ror.org/03jx0fx25 Tri College University'),
(84205, 'https://ror.org/02mvkbz85', 'en', 1, 'https://ror.org/02mvkbz85 Donaghue Foundation'),
(84206, 'https://ror.org/022faa535', 'en', 1, 'https://ror.org/022faa535 Child and Family Agency of Southeastern Connecticut'),
(84207, 'https://ror.org/00y8ab321', 'en', 1, 'https://ror.org/00y8ab321 Federation for the Humanities and Social Sciences FƩdƩration des Sciences Humaines'),
(84208, 'https://ror.org/01tzmft44', 'no_lang_code', 1, 'https://ror.org/01tzmft44 Advanced Targeting Systems (United States)'),
(84209, 'https://ror.org/027g0ys27', 'no_lang_code', 1, 'https://ror.org/027g0ys27 Evince Technology (United Kingdom)'),
(84210, 'https://ror.org/02eba4w13', 'en', 1, 'https://ror.org/02eba4w13 LeadingAge New York'),
(84211, 'https://ror.org/021cbtn85', 'en', 1, 'https://ror.org/021cbtn85 Killam Trusts'),
(84212, 'https://ror.org/003sg7r95', 'no_lang_code', 1, 'https://ror.org/003sg7r95 X-wave Innovations (United States)'),
(84213, 'https://ror.org/00her7k05', 'en', 1, 'https://ror.org/00her7k05 Whitehall Foundation'),
(84214, 'https://ror.org/05yc5h025', 'en', 1, 'https://ror.org/05yc5h025 Hillsong International Leadership College'),
(84215, 'https://ror.org/033jftm25', 'en', 1, 'https://ror.org/033jftm25 Australian Access Federation'),
(84216, 'https://ror.org/044avja84', 'es', 1, 'https://ror.org/044avja84 Universidad de Ciencias Pedagógicas Enrique José Varona'),
(84217, 'https://ror.org/03dp01974', 'no_lang_code', 1, 'https://ror.org/03dp01974 Modular Genetics (United States)'),
(84218, 'https://ror.org/027hd7646', 'en', 1, 'https://ror.org/027hd7646 International Society for Computer Aided Surgery'),
(84219, 'https://ror.org/02exfk080', 'en', 1, 'https://ror.org/02exfk080 Zoucheng People''s Hospital é‚¹åŸŽåø‚äŗŗę°‘åŒ»é™¢'),
(84220, 'https://ror.org/04gwz1s33', 'en', 1, 'https://ror.org/04gwz1s33 Danish Diabetes Association Diabetesforeningen'),
(84221, 'https://ror.org/026hk5s03', 'en', 1, 'https://ror.org/026hk5s03 Astronomical Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗ ę—„ęœ¬å¤©ę–‡å­¦ä¼š'),
(84222, 'https://ror.org/00326y568', 'es', 1, 'https://ror.org/00326y568 Universidad Juan Pablo II'),
(84223, 'https://ror.org/016as8p17', 'en', 1, 'https://ror.org/016as8p17 South Carolina Universities Research and Education Foundation'),
(84224, 'https://ror.org/02c2gwm94', 'en', 1, 'https://ror.org/02c2gwm94 Cardiovascular Institute of the South'),
(84225, 'https://ror.org/01a4x6x17', 'da', 1, 'https://ror.org/01a4x6x17 Helen og Ejnar BjĆørnows Fond'),
(84226, 'https://ror.org/04wn98951', 'pt', 1, 'https://ror.org/04wn98951 Confederação Geral dos Trabalhadores Portugueses General Confederation of the Portuguese Workers'),
(84227, 'https://ror.org/00yrvez87', 'no_lang_code', 1, 'https://ror.org/00yrvez87 Media and Process Technology (United States)'),
(84228, 'https://ror.org/04ghzyn62', 'en', 1, 'https://ror.org/04ghzyn62 Cancer Nurses Society of Australia'),
(84229, 'https://ror.org/03htvw360', 'no_lang_code', 1, 'https://ror.org/03htvw360 Sonalysts (United States)'),
(84230, 'https://ror.org/04khs3e04', 'en', 1, 'https://ror.org/04khs3e04 Zigong First People''s Hospital č‡Ŗč“”åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(84231, 'https://ror.org/03pd82777', 'no_lang_code', 1, 'https://ror.org/03pd82777 Cardinal Health (United States)'),
(84232, 'https://ror.org/03q4y6d69', 'en', 1, 'https://ror.org/03q4y6d69 Canadian Association on Gerontology'),
(84233, 'https://ror.org/0334n3565', 'en', 1, 'https://ror.org/0334n3565 Howard and Georgeanna Jones Foundation for Reproductive Medicine'),
(84234, 'https://ror.org/057dhjp36', 'en', 1, 'https://ror.org/057dhjp36 International Association for Psychoanalytic Self Psychology'),
(84235, 'https://ror.org/0588cre06', 'en', 1, 'https://ror.org/0588cre06 Chirurgie Plastique Erni Erni Plastic Surgery'),
(84236, 'https://ror.org/04tv9mc26', 'en', 1, 'https://ror.org/04tv9mc26 Gzhel State University Š“Š¶ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(84237, 'https://ror.org/01wnp5861', 'en', 1, 'https://ror.org/01wnp5861 Psychoanalytic Institute of Northern California'),
(84238, 'https://ror.org/004d1k391', 'en', 1, 'https://ror.org/004d1k391 Open Philanthropy Project'),
(84239, 'https://ror.org/02nqgka20', 'en', 1, 'https://ror.org/02nqgka20 North Pacific Research Board'),
(84240, 'https://ror.org/05qz4r376', 'en', 1, 'https://ror.org/05qz4r376 Immune Deficiency Foundation'),
(84241, 'https://ror.org/00vpxhq27', 'es', 1, 'https://ror.org/00vpxhq27 Hospital ClĆ­nico Universitario de Caracas Hospital ClĆ­nico Universitario de la UCV University Hospital of Caracas'),
(84242, 'https://ror.org/01054tt62', 'fr', 1, 'https://ror.org/01054tt62 Luc Hoffmann Institute'),
(84243, 'https://ror.org/05jdd7q84', 'en', 1, 'https://ror.org/05jdd7q84 Metropolitan College ĪœĪ—Ī¤Ī”ĪŸĪ ĪŸĪ›Ī™Ī¤Ī™ĪšĪŸ ĪšĪŸĪ›Ī›Ī•Ī“Ī™ĪŸ'),
(84244, 'https://ror.org/01cb8vz90', 'no_lang_code', 1, 'https://ror.org/01cb8vz90 AIM Photonics (United States)'),
(84245, 'https://ror.org/056znrx72', 'en', 1, 'https://ror.org/056znrx72 Institute of Microchemical Technology'),
(84246, 'https://ror.org/02j4dvk97', 'en', 1, 'https://ror.org/02j4dvk97 British and Foreign School Society'),
(84247, 'https://ror.org/05hgy3t19', 'en', 1, 'https://ror.org/05hgy3t19 North London College'),
(84248, 'https://ror.org/02zyqwj39', 'no_lang_code', 1, 'https://ror.org/02zyqwj39 Da Volterra (France)'),
(84249, 'https://ror.org/03fry2j13', 'de', 1, 'https://ror.org/03fry2j13 Museum für Naturkunde Chemnitz'),
(84250, 'https://ror.org/01qfx0j16', 'en', 1, 'https://ror.org/01qfx0j16 Center for Technology & Innovation Management'),
(84251, 'https://ror.org/03be63z97', 'en', 1, 'https://ror.org/03be63z97 National Library of Israel ההפרייה ×”×œ××•×ž×™×Ŗ Ų§Ł„Ł…ŁƒŲŖŲØŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© في Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„ā€Ž'),
(84252, 'https://ror.org/03fexp388', 'no_lang_code', 1, 'https://ror.org/03fexp388 Separation Systems (United States)'),
(84253, 'https://ror.org/00gyag505', 'en', 1, 'https://ror.org/00gyag505 Macula and Retina Institute'),
(84254, 'https://ror.org/02yp1ar49', 'en', 1, 'https://ror.org/02yp1ar49 Institutes for Journalism and Natural Resources'),
(84255, 'https://ror.org/05xd7yf32', 'no_lang_code', 1, 'https://ror.org/05xd7yf32 HŽ Passenger Transport (Croatia) HŽ Putnički Prijevoz'),
(84256, 'https://ror.org/043am3669', 'en', 1, 'https://ror.org/043am3669 Rajarajeswari Dental College and Hospital'),
(84257, 'https://ror.org/05tx8f430', 'en', 1, 'https://ror.org/05tx8f430 Foundation for the Education and Research in Neurological Emergencies'),
(84258, 'https://ror.org/01qbysn42', 'en', 1, 'https://ror.org/01qbysn42 Triple Negative Breast Cancer Foundation'),
(84259, 'https://ror.org/04bwajd86', 'en', 1, 'https://ror.org/04bwajd86 Huizhou Central People''s Hospital ęƒ å·žåø‚äø­åæƒäŗŗę°‘åŒ»é™¢'),
(84260, 'https://ror.org/00sfe1713', 'en', 1, 'https://ror.org/00sfe1713 Veer Chandra Singh Garhwali Uttarakhand University of Horticulture & Forestry ą¤¬ą¤¾ą¤—ą¤µą¤¾ą¤Øą„€ और ą¤µą¤¾ą¤Øą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤‚ą¤”'),
(84261, 'https://ror.org/04a8vas09', 'en', 1, 'https://ror.org/04a8vas09 Southwest Scoliosis Institute'),
(84262, 'https://ror.org/00k6e3143', 'en', 1, 'https://ror.org/00k6e3143 Andrew McDonough B+ Foundation'),
(84263, 'https://ror.org/044m9y381', 'en', 1, 'https://ror.org/044m9y381 Brain Aneurysm Foundation'),
(84264, 'https://ror.org/047y9qy91', 'en', 1, 'https://ror.org/047y9qy91 MNR Dental College and Hospital'),
(84265, 'https://ror.org/03v3xp839', 'no_lang_code', 1, 'https://ror.org/03v3xp839 Medin (Czechia)'),
(84266, 'https://ror.org/05g20h159', 'en', 1, 'https://ror.org/05g20h159 Tropical Biology Association'),
(84267, 'https://ror.org/02zdpmw21', 'en', 1, 'https://ror.org/02zdpmw21 Prek Leap National College of Agriculture įžŸįž¶įž›įž¶įž‡įž¶įžįž·įž€įžŸįž·įž€įž˜įŸ’įž˜įž–įŸ’įžšįŸ‚įž€įž›įŸ€įž”'),
(84268, 'https://ror.org/025vr9a91', 'en', 1, 'https://ror.org/025vr9a91 Coastal Education and Research Foundation'),
(84269, 'https://ror.org/02hd6pp72', 'no_lang_code', 1, 'https://ror.org/02hd6pp72 HydroCision (United States)'),
(84270, 'https://ror.org/02884dc18', 'en', 1, 'https://ror.org/02884dc18 Council of American Overseas Research Centers'),
(84271, 'https://ror.org/0316s5q91', 'en', 1, 'https://ror.org/0316s5q91 McPin Foundation'),
(84272, 'https://ror.org/042w6tv86', 'en', 1, 'https://ror.org/042w6tv86 Agricultural and Marketing Research and Development Trust'),
(84273, 'https://ror.org/00rz5wn10', 'de', 1, 'https://ror.org/00rz5wn10 Deutsche Stiftung für Chronisch Kranke'),
(84274, 'https://ror.org/03sgk3c38', 'en', 1, 'https://ror.org/03sgk3c38 National University of Food Technologies ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ пищевых технологий ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ харчових технологій'),
(84275, 'https://ror.org/00gt8s428', 'sv', 1, 'https://ror.org/00gt8s428 Svenska Rovdjursfƶreningen Swedish Carnivore Association'),
(84276, 'https://ror.org/056pdk382', 'no_lang_code', 1, 'https://ror.org/056pdk382 Integral Molecular (United States)'),
(84277, 'https://ror.org/029pwdz12', 'en', 1, 'https://ror.org/029pwdz12 Barrow Cadbury Trust'),
(84278, 'https://ror.org/02g9jg318', 'en', 1, 'https://ror.org/02g9jg318 Third Affiliated Hospital of Nanchang University å—ę˜Œå¤§å­¦ē¬¬äø‰é™„å±žåŒ»é™¢'),
(84279, 'https://ror.org/017r77c14', 'no_lang_code', 1, 'https://ror.org/017r77c14 Omnipol (Czechia)'),
(84280, 'https://ror.org/00048tr39', 'en', 1, 'https://ror.org/00048tr39 Demos'),
(84281, 'https://ror.org/03wq30m17', 'en', 1, 'https://ror.org/03wq30m17 InterAcademy Partnership'),
(84282, 'https://ror.org/05tzrqq19', 'en', 1, 'https://ror.org/05tzrqq19 Global Lyme Alliance'),
(84283, 'https://ror.org/00gw7ky20', 'en', 1, 'https://ror.org/00gw7ky20 Military Technical Institute'),
(84284, 'https://ror.org/02wwrf931', 'en', 1, 'https://ror.org/02wwrf931 Crotched Mountain'),
(84285, 'https://ror.org/04hhnrj18', 'en', 1, 'https://ror.org/04hhnrj18 Fondation internationale pour la recherche en paraplƩgie International Foundation for Research in Paraplegia Internationale Stiftung fur Forschung in Paraplegie'),
(84286, 'https://ror.org/044n2fv18', 'en', 1, 'https://ror.org/044n2fv18 Slovak Academic Information Agency'),
(84287, 'https://ror.org/02dh3nw51', 'no_lang_code', 1, 'https://ror.org/02dh3nw51 AutoNation (United States)'),
(84288, 'https://ror.org/00y81cn68', 'no_lang_code', 1, 'https://ror.org/00y81cn68 Oligomerix (United States)'),
(84289, 'https://ror.org/0567j1v21', 'no_lang_code', 1, 'https://ror.org/0567j1v21 Ivantis (United States)'),
(84290, 'https://ror.org/05ayy0v22', 'no_lang_code', 1, 'https://ror.org/05ayy0v22 Boston Fusion (United States)'),
(84291, 'https://ror.org/053896994', 'en', 1, 'https://ror.org/053896994 Artsadmin'),
(84292, 'https://ror.org/04m0yag05', 'en', 1, 'https://ror.org/04m0yag05 Cap Digital'),
(84293, 'https://ror.org/04qc03j14', 'en', 1, 'https://ror.org/04qc03j14 TromsĆø forskningsstiftelse TromsĆø research foundation'),
(84294, 'https://ror.org/05fr2p949', 'en', 1, 'https://ror.org/05fr2p949 Hinkley Center for Solid and Hazardous Waste Management'),
(84295, 'https://ror.org/005a08r96', 'en', 1, 'https://ror.org/005a08r96 Glycemic Index Laboratories'),
(84296, 'https://ror.org/028zryx23', 'en', 1, 'https://ror.org/028zryx23 Institute of Legal Practice and Development'),
(84297, 'https://ror.org/00zx3bc13', 'en', 1, 'https://ror.org/00zx3bc13 South Gloucestershire Council'),
(84298, 'https://ror.org/014qm6e35', 'en', 1, 'https://ror.org/014qm6e35 Sion College'),
(84299, 'https://ror.org/049s31d10', 'en', 1, 'https://ror.org/049s31d10 National CMV Foundation'),
(84300, 'https://ror.org/017c44661', 'en', 1, 'https://ror.org/017c44661 Dental Innovation Foundation Under Royal Patronage ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ąø—ąø±ąø™ąø•ąø™ąø§ąø±ąø•ąøąø£ąø£ąø” ą¹ƒąø™ąøžąø£ąø°ąøšąø£ąø”ąø£ąø²ąøŠąø¹ąø›ąø–ąø±ąø”ąø ą¹Œ ąø«ąø™ą¹ˆąø§ąø¢ąø—ąø±ąø™ąø•'),
(84301, 'https://ror.org/02j9wvt50', 'en', 1, 'https://ror.org/02j9wvt50 Coalition for Epidemic Preparedness Innovations'),
(84302, 'https://ror.org/03j42jj36', 'en', 1, 'https://ror.org/03j42jj36 Issues Research'),
(84303, 'https://ror.org/02pnr4h17', 'en', 1, 'https://ror.org/02pnr4h17 Phospholipid Forschungszentrum Phospholipid Research Center'),
(84304, 'https://ror.org/04m6dqx50', 'en', 1, 'https://ror.org/04m6dqx50 University of South Carolina Salkehatchie'),
(84305, 'https://ror.org/0260feh57', 'en', 1, 'https://ror.org/0260feh57 Clinks (United Kingdom)'),
(84306, 'https://ror.org/032atxq54', 'en', 1, 'https://ror.org/032atxq54 David and Lucile Packard Foundation'),
(84307, 'https://ror.org/002m7kv43', 'no_lang_code', 1, 'https://ror.org/002m7kv43 Peoples Gas (United States)'),
(84308, 'https://ror.org/05rv4p237', 'en', 1, 'https://ror.org/05rv4p237 Asian Pacific Development Center'),
(84309, 'https://ror.org/03jsp0e58', 'en', 1, 'https://ror.org/03jsp0e58 The Long Island Museum'),
(84310, 'https://ror.org/0228xk580', 'no_lang_code', 1, 'https://ror.org/0228xk580 Israel Dairy Board (Israel) ×ž×•×¢×¦×Ŗ החלב'),
(84311, 'https://ror.org/03cv2n667', 'en', 1, 'https://ror.org/03cv2n667 BlueCrest University College'),
(84312, 'https://ror.org/0308pcp34', 'en', 1, 'https://ror.org/0308pcp34 National Academy of Music Prof. Pancho Vladigerov ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° музикална Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ā€žŠŸŠ°Š½Ń‡Š¾ ВлаГигеров'),
(84313, 'https://ror.org/0108mj224', 'en', 1, 'https://ror.org/0108mj224 TomKat Foundation'),
(84314, 'https://ror.org/05jh42p10', 'en', 1, 'https://ror.org/05jh42p10 Institute of Sports Medicine and Science å…¬ē›Šč²”å›£ę³•äŗŗć‚¹ćƒćƒ¼ćƒ„åŒ»ćƒ»ē§‘å­¦ē ”ē©¶ę‰€'),
(84315, 'https://ror.org/04nshjv23', 'no_lang_code', 1, 'https://ror.org/04nshjv23 OpenAlgae (United States)'),
(84316, 'https://ror.org/027agqe47', 'no_lang_code', 1, 'https://ror.org/027agqe47 Pristop (Slovenia)'),
(84317, 'https://ror.org/035z7sv25', 'en', 1, 'https://ror.org/035z7sv25 Housing Research Foundation äø€čˆ¬č²”å›£ę³•äŗŗä½ē·ē ”'),
(84318, 'https://ror.org/013v42668', 'no', 1, 'https://ror.org/013v42668 Sogn og Fjordane Fylkeskommune'),
(84319, 'https://ror.org/03kb86j91', 'en', 1, 'https://ror.org/03kb86j91 Danish Institute for Study Abroad'),
(84320, 'https://ror.org/00npz5r87', 'en', 1, 'https://ror.org/00npz5r87 Office for Students'),
(84321, 'https://ror.org/003q4qk22', 'en', 1, 'https://ror.org/003q4qk22 Rainwater Charitable Foundation'),
(84322, 'https://ror.org/05bcm4543', 'no_lang_code', 1, 'https://ror.org/05bcm4543 TransDigm Group (United States)'),
(84323, 'https://ror.org/04nv6z940', 'en', 1, 'https://ror.org/04nv6z940 Greenville College'),
(84324, 'https://ror.org/0523w6477', 'en', 1, 'https://ror.org/0523w6477 Veer Surendra Sai Medical College and Hospital'),
(84325, 'https://ror.org/04s11gh14', 'id', 1, 'https://ror.org/04s11gh14 Universitas Muhammadiyah Pontianak'),
(84326, 'https://ror.org/04bgbsx11', 'en', 1, 'https://ror.org/04bgbsx11 Jinan University جـامعة الجنان'),
(84327, 'https://ror.org/004wk3x25', 'no_lang_code', 1, 'https://ror.org/004wk3x25 Yamaguchi Gakugei University å±±å£å­¦čŠøå¤§å­¦'),
(84328, 'https://ror.org/03nkz8212', 'en', 1, 'https://ror.org/03nkz8212 Consortium of Universities for Global Health'),
(84329, 'https://ror.org/04ypx4p84', 'fr', 1, 'https://ror.org/04ypx4p84 Institut SupƩrieur des Biotechnologies de Paris'),
(84330, 'https://ror.org/00kb3m272', 'en', 1, 'https://ror.org/00kb3m272 Schweizerische Anorexia Nervosa Stiftung Swiss Anorexia Nervosa Foundation'),
(84331, 'https://ror.org/046k47690', 'de', 1, 'https://ror.org/046k47690 Kantonsschule Rychenberg'),
(84332, 'https://ror.org/05ez53b31', 'en', 1, 'https://ror.org/05ez53b31 Glaucoma Research Foundation'),
(84333, 'https://ror.org/04v6cz278', 'en', 1, 'https://ror.org/04v6cz278 St. Philip''s College'),
(84334, 'https://ror.org/03xphts16', 'en', 1, 'https://ror.org/03xphts16 European Geosciences Union'),
(84335, 'https://ror.org/00g0aq541', 'en', 1, 'https://ror.org/00g0aq541 Cancer Research Malaysia'),
(84336, 'https://ror.org/00492z510', 'en', 1, 'https://ror.org/00492z510 Massachusetts Association for Mental Health'),
(84337, 'https://ror.org/0196jzw13', 'no_lang_code', 1, 'https://ror.org/0196jzw13 Kruger (Canada)'),
(84338, 'https://ror.org/010tfrq03', 'en', 1, 'https://ror.org/010tfrq03 Logan City Council'),
(84339, 'https://ror.org/03rzkxc19', 'en', 1, 'https://ror.org/03rzkxc19 Chaozhou Central Hospital ę½®å·žåø‚äø­åæƒåŒ»é™¢'),
(84340, 'https://ror.org/02gv4xy86', 'en', 1, 'https://ror.org/02gv4xy86 Northern Counties Kidney Research Fund'),
(84341, 'https://ror.org/024q4z275', 'no_lang_code', 1, 'https://ror.org/024q4z275 PopTech'),
(84342, 'https://ror.org/05ardyr66', 'en', 1, 'https://ror.org/05ardyr66 Canadian Council on International Law Conseil canadien de droit international'),
(84343, 'https://ror.org/0548gnr76', 'en', 1, 'https://ror.org/0548gnr76 Cardiac Children''s Foundation Taiwan'),
(84344, 'https://ror.org/04g8np281', 'fr', 1, 'https://ror.org/04g8np281 La Coop FƩdƩrƩe'),
(84345, 'https://ror.org/00d4phf77', 'en', 1, 'https://ror.org/00d4phf77 Great Barrier Reef Foundation'),
(84346, 'https://ror.org/018fbmg27', 'en', 1, 'https://ror.org/018fbmg27 Parkinson''s and Movement Disorder Institute'),
(84347, 'https://ror.org/02bf8p515', 'pt', 1, 'https://ror.org/02bf8p515 Fundação de Desenvolvimento de Tecnópolis'),
(84348, 'https://ror.org/02vp2wp62', 'en', 1, 'https://ror.org/02vp2wp62 RGK Foundation'),
(84349, 'https://ror.org/04nv2ya05', 'en', 1, 'https://ror.org/04nv2ya05 W. W. Smith Charitable Trust'),
(84350, 'https://ror.org/00z1gn612', 'no_lang_code', 1, 'https://ror.org/00z1gn612 Bio Food Tech (Canada)'),
(84351, 'https://ror.org/00wyk1t96', 'en', 1, 'https://ror.org/00wyk1t96 Melanoma Research Foundation'),
(84352, 'https://ror.org/00nd85a71', 'en', 1, 'https://ror.org/00nd85a71 Sir Ross and Sir Keith Smith Fund'),
(84353, 'https://ror.org/00j6ywe74', 'en', 1, 'https://ror.org/00j6ywe74 Kelliher Charitable Trust'),
(84354, 'https://ror.org/019ags049', 'no_lang_code', 1, 'https://ror.org/019ags049 (주)미넓기술 Mirtec (South Korea)'),
(84355, 'https://ror.org/03efc1574', 'en', 1, 'https://ror.org/03efc1574 Arthritis Health Professions Association'),
(84356, 'https://ror.org/05xqsek53', 'en', 1, 'https://ror.org/05xqsek53 International Research Institute for Advanced Systems ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(84357, 'https://ror.org/03nfk8582', 'no_lang_code', 1, 'https://ror.org/03nfk8582 ADMA Biologics (United States)'),
(84358, 'https://ror.org/05t4zky21', 'de', 1, 'https://ror.org/05t4zky21 Kantonsschule Zürcher Oberland'),
(84359, 'https://ror.org/00yvbk320', 'en', 1, 'https://ror.org/00yvbk320 Independent Television Service'),
(84360, 'https://ror.org/03zmbgt55', 'no_lang_code', 1, 'https://ror.org/03zmbgt55 Cognitive Technologies (United States)'),
(84361, 'https://ror.org/051mkwn17', 'en', 1, 'https://ror.org/051mkwn17 World Islamic Sciences and Education University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(84362, 'https://ror.org/03wkk5p21', 'en', 1, 'https://ror.org/03wkk5p21 Association for Frontotemporal Degeneration'),
(84363, 'https://ror.org/051c2tp06', 'en', 1, 'https://ror.org/051c2tp06 Bryant & Stratton College'),
(84364, 'https://ror.org/01e3qq579', 'en', 1, 'https://ror.org/01e3qq579 American Institute of Iranian Studies'),
(84365, 'https://ror.org/02gyhy076', 'en', 1, 'https://ror.org/02gyhy076 Helgeland Museum'),
(84366, 'https://ror.org/04xsz1294', 'en', 1, 'https://ror.org/04xsz1294 International Retinal Research Foundation'),
(84367, 'https://ror.org/04bc1ke96', 'en', 1, 'https://ror.org/04bc1ke96 Roberts Enterprise Development Fund'),
(84368, 'https://ror.org/04wgs1895', 'en', 1, 'https://ror.org/04wgs1895 Dan David Prize'),
(84369, 'https://ror.org/008hf2578', 'no_lang_code', 1, 'https://ror.org/008hf2578 AMS (Singapore)'),
(84370, 'https://ror.org/00yzykq08', 'nl', 1, 'https://ror.org/00yzykq08 Nationale vereniging voor LUPUS, APS, Sclerodermie en MCTD'),
(84371, 'https://ror.org/01fyy8e52', 'en', 1, 'https://ror.org/01fyy8e52 Pennsylvania Athletic Trainers'' Society'),
(84372, 'https://ror.org/02zyged10', 'pt', 1, 'https://ror.org/02zyged10 Biomass Centre for Energy Centro da Biomassa para a Energia'),
(84373, 'https://ror.org/01ggf6w15', 'pt', 1, 'https://ror.org/01ggf6w15 Centre for Social Intervention Studies Centro de Estudos para a Intervencao Social'),
(84374, 'https://ror.org/046yatd98', 'en', 1, 'https://ror.org/046yatd98 Midwestern University'),
(84375, 'https://ror.org/03wbg5y51', 'no_lang_code', 1, 'https://ror.org/03wbg5y51 ipIQ'),
(84376, 'https://ror.org/02jtzez66', 'en', 1, 'https://ror.org/02jtzez66 Ukrainian Institute of Public Health Policy'),
(84377, 'https://ror.org/012dadn70', 'no_lang_code', 1, 'https://ror.org/012dadn70 IBI Group (Canada)'),
(84378, 'https://ror.org/05vmjks78', 'en', 1, 'https://ror.org/05vmjks78 RIKEN Center for Advanced Photonics å…‰é‡å­å·„å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(84379, 'https://ror.org/01h8z7f20', 'en', 1, 'https://ror.org/01h8z7f20 James Merrill House'),
(84380, 'https://ror.org/01xdgf035', 'no_lang_code', 1, 'https://ror.org/01xdgf035 AxoGen (United States)'),
(84381, 'https://ror.org/05e80bb92', 'en', 1, 'https://ror.org/05e80bb92 Institute of Mental Health and Hospital'),
(84382, 'https://ror.org/001kwz384', 'en', 1, 'https://ror.org/001kwz384 Histiocytosis Association'),
(84383, 'https://ror.org/01e9qsx42', 'no_lang_code', 1, 'https://ror.org/01e9qsx42 ATEC (United States)'),
(84384, 'https://ror.org/04a7ns920', 'en', 1, 'https://ror.org/04a7ns920 Don Mariano Marcos Memorial State University'),
(84385, 'https://ror.org/04a1nf004', 'en', 1, 'https://ror.org/04a1nf004 Gonbad Kavous University');
INSERT INTO `rors` VALUES
(84386, 'https://ror.org/046jgev73', 'en', 1, 'https://ror.org/046jgev73 Bath Royal Literary and Scientific Institution'),
(84387, 'https://ror.org/03jn6n945', 'en', 1, 'https://ror.org/03jn6n945 Nellie Mae Education Foundation'),
(84388, 'https://ror.org/05vmwhp17', 'en', 1, 'https://ror.org/05vmwhp17 Agouron Institute'),
(84389, 'https://ror.org/01j378a47', 'en', 1, 'https://ror.org/01j378a47 Fight for Sight'),
(84390, 'https://ror.org/03rxbvw90', 'en', 1, 'https://ror.org/03rxbvw90 Society For Investigative Dermatology'),
(84391, 'https://ror.org/0594wn226', 'en', 1, 'https://ror.org/0594wn226 Denver Foundation'),
(84392, 'https://ror.org/03b1zv991', 'en', 1, 'https://ror.org/03b1zv991 Association miniĆØre du Canada Mining Association of Canada'),
(84393, 'https://ror.org/05cp39n75', 'no_lang_code', 1, 'https://ror.org/05cp39n75 Oxford Frozen Foods (Canada)'),
(84394, 'https://ror.org/02rbgnh75', 'en', 1, 'https://ror.org/02rbgnh75 New Brunswick Innovation Foundation'),
(84395, 'https://ror.org/00v3cq569', 'en', 1, 'https://ror.org/00v3cq569 Okazaki Institute for Integrative Bioscience å²”å“Žēµ±åˆćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(84396, 'https://ror.org/023z3dm33', 'en', 1, 'https://ror.org/023z3dm33 State Scholarships Foundation'),
(84397, 'https://ror.org/00fh1ea83', 'en', 1, 'https://ror.org/00fh1ea83 Bone and Joint Canada'),
(84398, 'https://ror.org/03vn1xq77', 'fr', 1, 'https://ror.org/03vn1xq77 Centre Hospitalier Saint-Joseph Saint-Luc'),
(84399, 'https://ror.org/029qzyn15', 'en', 1, 'https://ror.org/029qzyn15 Trichy SRM Medical College Hospital and Research Centre ą®¤ą®æą®°ąÆą®šąÆą®šą®æ ą®Žą®øąÆą®†ą®°ąÆą®Žą®®ąÆ ą®®ąÆ†ą®Ÿą®æą®•ąÆą®•ą®²ąÆ ą®•ą®¾ą®²ąÆ‡ą®œąÆ ą®¹ą®¾ą®øąÆą®Ŗą®æą®Ÿą®²ąÆ & ą®°ą®æą®šą®°ąÆą®šąÆ ą®šąÆ†ą®©ąÆą®Ÿą®°ąÆ'),
(84400, 'https://ror.org/054gnsn02', 'en', 1, 'https://ror.org/054gnsn02 Zambia Catholic University'),
(84401, 'https://ror.org/0355d9b09', 'de', 1, 'https://ror.org/0355d9b09 Hochschule für Angewandte Sprachen Sprachen & Dolmetscher Institut München'),
(84402, 'https://ror.org/0087nx645', 'en', 1, 'https://ror.org/0087nx645 Belarusian State Academy of Arts Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š¼Š°ŃŃ‚Š°Ń†Ń‚Š²Š°Ńž Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(84403, 'https://ror.org/05mndst04', 'en', 1, 'https://ror.org/05mndst04 Fernbank Museum of Natural History'),
(84404, 'https://ror.org/03mnpq162', 'no_lang_code', 1, 'https://ror.org/03mnpq162 Second Genome (United States)'),
(84405, 'https://ror.org/01tca3t44', 'en', 1, 'https://ror.org/01tca3t44 ArcticNet'),
(84406, 'https://ror.org/01rmrr768', 'no_lang_code', 1, 'https://ror.org/01rmrr768 Focaltech Systems (Taiwan)'),
(84407, 'https://ror.org/04ja89y28', 'pt', 1, 'https://ror.org/04ja89y28 Sociedade Portuguesa de Vida Selvagem'),
(84408, 'https://ror.org/00qejpg20', 'en', 1, 'https://ror.org/00qejpg20 Anesthesia Quality Institute'),
(84409, 'https://ror.org/032q47002', 'fr', 1, 'https://ror.org/032q47002 Center for Economic Research and its Applications Centre Pour La Recherche Economique et ses Applications'),
(84410, 'https://ror.org/00h63g907', 'en', 1, 'https://ror.org/00h63g907 National Alliance of State and Territorial AIDS Directors'),
(84411, 'https://ror.org/02g2sh456', 'en', 1, 'https://ror.org/02g2sh456 Pädagogische Hochschule Schwäbisch Gmünd University of Education Schwaebisch Gmuend'),
(84412, 'https://ror.org/01w2r7p29', 'en', 1, 'https://ror.org/01w2r7p29 The Korean Society of International Law ķ•œźµ­ źµ­ģ œė²• ķ•™ķšŒ'),
(84413, 'https://ror.org/05sxdtc98', 'en', 1, 'https://ror.org/05sxdtc98 North Carolina Cotton Producers Association'),
(84414, 'https://ror.org/03y2x8717', 'en', 1, 'https://ror.org/03y2x8717 Universiteti i Mjekƫsisƫ, Tiranƫ University of Medicine Tirana'),
(84415, 'https://ror.org/020hhyq78', 'en', 1, 'https://ror.org/020hhyq78 British Renal Society'),
(84416, 'https://ror.org/018ec2p66', 'no_lang_code', 1, 'https://ror.org/018ec2p66 Novocure (Jersey)'),
(84417, 'https://ror.org/020a42j47', 'en', 1, 'https://ror.org/020a42j47 American Macular Degeneration Foundation'),
(84418, 'https://ror.org/033c08p70', 'en', 1, 'https://ror.org/033c08p70 Thurgood Marshall College Fund'),
(84419, 'https://ror.org/04fxadq33', 'en', 1, 'https://ror.org/04fxadq33 American Australian Association'),
(84420, 'https://ror.org/05h2t6865', 'en', 1, 'https://ror.org/05h2t6865 Promotion and Mutual Aid Corporation for Private Schools of Japan ę—„ęœ¬ē§ē«‹å­¦ę ”ęŒÆčˆˆćƒ»å…±ęøˆäŗ‹ę„­å›£'),
(84421, 'https://ror.org/00jnzhe32', 'en', 1, 'https://ror.org/00jnzhe32 Forces in Mind Trust'),
(84422, 'https://ror.org/03aft2f80', 'en', 1, 'https://ror.org/03aft2f80 Braunschweig University of Art Hochschule für Bildende Künste Braunschweig'),
(84423, 'https://ror.org/01a05a579', 'en', 1, 'https://ror.org/01a05a579 Pomona Valley Hospital Medical Center'),
(84424, 'https://ror.org/03p9npm64', 'fr', 1, 'https://ror.org/03p9npm64 Institut Francilien de Recherche sur les Atomes Froids'),
(84425, 'https://ror.org/00r7q8k52', 'en', 1, 'https://ror.org/00r7q8k52 Capability Scotland'),
(84426, 'https://ror.org/04a0wfy84', 'no_lang_code', 1, 'https://ror.org/04a0wfy84 Spheryx (United States)'),
(84427, 'https://ror.org/03mg3ec15', 'en', 1, 'https://ror.org/03mg3ec15 European Hospital'),
(84428, 'https://ror.org/0343jym73', 'no_lang_code', 1, 'https://ror.org/0343jym73 University of al-Qarawiyyin UniversitĆ© Al Quaraouiyine Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ų±ŁˆŁŠŁŠŁ†'),
(84429, 'https://ror.org/04cb3ds49', 'en', 1, 'https://ror.org/04cb3ds49 Chartered Institute of Ecology and Environmental Management'),
(84430, 'https://ror.org/007r8rq24', 'en', 1, 'https://ror.org/007r8rq24 Churchill Northern Studies Centre'),
(84431, 'https://ror.org/0243m8266', 'en', 1, 'https://ror.org/0243m8266 Mind and Life Institute'),
(84432, 'https://ror.org/05fgn4m77', 'en', 1, 'https://ror.org/05fgn4m77 Alpro Foundation'),
(84433, 'https://ror.org/01zq89n20', 'id', 1, 'https://ror.org/01zq89n20 Universitas Stikubank'),
(84434, 'https://ror.org/00q3m9b74', 'en', 1, 'https://ror.org/00q3m9b74 James Madison Memorial Fellowship Foundation'),
(84435, 'https://ror.org/00q1y5994', 'en', 1, 'https://ror.org/00q1y5994 Worldwide Universities Network'),
(84436, 'https://ror.org/04gr92547', 'en', 1, 'https://ror.org/04gr92547 International University Of Health And Welfare Atami Hospital å›½éš›åŒ»ē™‚ē¦ē„‰å¤§å­¦ē†±ęµ·ē—…é™¢'),
(84437, 'https://ror.org/05fdv7d34', 'en', 1, 'https://ror.org/05fdv7d34 Collaborative Innovation Center of Chemistry for Energy Materials'),
(84438, 'https://ror.org/00gryma19', 'en', 1, 'https://ror.org/00gryma19 New Zealand Association of Scientists'),
(84439, 'https://ror.org/05t6jph46', 'en', 1, 'https://ror.org/05t6jph46 Carl and Ruth Shapiro Family Foundation'),
(84440, 'https://ror.org/02e7jer75', 'en', 1, 'https://ror.org/02e7jer75 General Hospital of Athens Elpis Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ελπίς'),
(84441, 'https://ror.org/01z7qjn33', 'en', 1, 'https://ror.org/01z7qjn33 Daegu University of Foreign Studies ėŒ€źµ¬ģ™øźµ­ģ–“ėŒ€ķ•™źµ'),
(84442, 'https://ror.org/02mz9pg37', 'no_lang_code', 1, 'https://ror.org/02mz9pg37 Titan Pharmaceuticals (United States)'),
(84443, 'https://ror.org/00v64s089', 'no_lang_code', 1, 'https://ror.org/00v64s089 Lexicon Pharmaceuticals (United States)'),
(84444, 'https://ror.org/05hm9f429', 'en', 1, 'https://ror.org/05hm9f429 National Centre for Disease Informatics and Research ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą„‹ą¤— ą¤øą„‚ą¤šą¤Øą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ಕಾಯಿಲೆ ą²®ą²¾ą²¹ą²æą²¤ą²æą²Æą³ą²•ą³ą²¤ ą²®ą²¤ą³ą²¤ą³ ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(84445, 'https://ror.org/028ebs129', 'no_lang_code', 1, 'https://ror.org/028ebs129 Sempra Praha (Czechia)'),
(84446, 'https://ror.org/05r125v29', 'no_lang_code', 1, 'https://ror.org/05r125v29 Nexgenix Pharmaceuticals (United States)'),
(84447, 'https://ror.org/01k6aj812', 'no_lang_code', 1, 'https://ror.org/01k6aj812 KIK Custom Products (Canada)'),
(84448, 'https://ror.org/00hg4tf86', 'en', 1, 'https://ror.org/00hg4tf86 New Brunswick Health Research Foundation'),
(84449, 'https://ror.org/03fkzwj92', 'pt', 1, 'https://ror.org/03fkzwj92 Hospital Oftalmologico de BrasĆ­lia'),
(84450, 'https://ror.org/0569k1630', 'en', 1, 'https://ror.org/0569k1630 Beijing Shijitan Hospital åŒ—äŗ¬äø–ēŗŖå›åŒ»é™¢'),
(84451, 'https://ror.org/00pevny89', 'en', 1, 'https://ror.org/00pevny89 John P. Hussman Foundation'),
(84452, 'https://ror.org/00ah3ma49', 'en', 1, 'https://ror.org/00ah3ma49 Japan Association for Chemical Innovation å…¬ē›Šē¤¾å›£ę³•äŗŗę–°åŒ–å­¦ęŠ€č”“ęŽØé€²å”ä¼š'),
(84453, 'https://ror.org/01p2v9z14', 'fr', 1, 'https://ror.org/01p2v9z14 Fondation Hopale'),
(84454, 'https://ror.org/006qk6d61', 'en', 1, 'https://ror.org/006qk6d61 TrĘ°į»ng đẔi hį»c Giao thĆ“ng vįŗ­n tįŗ£i University of Transport and Communications'),
(84455, 'https://ror.org/0129gkf70', 'no_lang_code', 1, 'https://ror.org/0129gkf70 Accuray (United States)'),
(84456, 'https://ror.org/03zxmqt60', 'en', 1, 'https://ror.org/03zxmqt60 Alaska Council of School Administrators'),
(84457, 'https://ror.org/01qc17q17', 'en', 1, 'https://ror.org/01qc17q17 St. Luke''s University Health Network'),
(84458, 'https://ror.org/01gce3t61', 'en', 1, 'https://ror.org/01gce3t61 Letten Foundation'),
(84459, 'https://ror.org/003gt3k37', 'en', 1, 'https://ror.org/003gt3k37 Vermont Oxford Network'),
(84460, 'https://ror.org/03j2wfg84', 'en', 1, 'https://ror.org/03j2wfg84 Kay Kendall Leukaemia Fund'),
(84461, 'https://ror.org/04xr9a612', 'en', 1, 'https://ror.org/04xr9a612 Pennsylvania Academy of Science'),
(84462, 'https://ror.org/022hrs427', 'en', 1, 'https://ror.org/022hrs427 Institute for Neurodegenerative Disorders'),
(84463, 'https://ror.org/02nt00p03', 'fr', 1, 'https://ror.org/02nt00p03 Epi-Phare'),
(84464, 'https://ror.org/05eerek96', 'en', 1, 'https://ror.org/05eerek96 Bureau Canadien de l''Ʃducation Internationale Canadian Bureau for International Education'),
(84465, 'https://ror.org/02e4e5139', 'en', 1, 'https://ror.org/02e4e5139 Koriyama Institute of Health Sciences éƒ”å±±å„åŗ·ē§‘å­¦å°‚é–€å­¦ę ”'),
(84466, 'https://ror.org/00cc48y91', 'en', 1, 'https://ror.org/00cc48y91 Sacred Heart Hospital'),
(84467, 'https://ror.org/04z2gtc77', 'en', 1, 'https://ror.org/04z2gtc77 United States India Educational Foundation'),
(84468, 'https://ror.org/03c0ts369', 'no_lang_code', 1, 'https://ror.org/03c0ts369 GeneTex (United States)'),
(84469, 'https://ror.org/05rkwe274', 'en', 1, 'https://ror.org/05rkwe274 Pipeline Research Council International'),
(84470, 'https://ror.org/009asv333', 'en', 1, 'https://ror.org/009asv333 Maria Fertility Hospital'),
(84471, 'https://ror.org/0126z4b94', 'en', 1, 'https://ror.org/0126z4b94 Academic Center for Education, Culture and Research جهاد ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ'),
(84472, 'https://ror.org/04ts2h794', 'en', 1, 'https://ror.org/04ts2h794 Darwin Center for Biogeosciences'),
(84473, 'https://ror.org/01ka3aq48', 'no', 1, 'https://ror.org/01ka3aq48 Vinje Kommune'),
(84474, 'https://ror.org/04aat6738', 'no_lang_code', 1, 'https://ror.org/04aat6738 Japan IDDM network ę—„ęœ¬IDDMćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(84475, 'https://ror.org/004wha928', 'en', 1, 'https://ror.org/004wha928 San Francisco Bay Area Planning and Urban Research Association'),
(84476, 'https://ror.org/002jy7w74', 'en', 1, 'https://ror.org/002jy7w74 Zhejiang Research Institute of Chemical Industry ęµ™ę±ŸēœåŒ–å·„ē ”ē©¶é™¢'),
(84477, 'https://ror.org/04tkhxj35', 'en', 1, 'https://ror.org/04tkhxj35 Shingyeong University ģ‹ ź²½ėŒ€ķ•™źµ'),
(84478, 'https://ror.org/05rhej692', 'en', 1, 'https://ror.org/05rhej692 Commonwealth Foundation'),
(84479, 'https://ror.org/04sk80178', 'en', 1, 'https://ror.org/04sk80178 Nanjing Jiangning Hospital'),
(84480, 'https://ror.org/05v0wcb32', 'en', 1, 'https://ror.org/05v0wcb32 Ukrainian National Tchaikovsky Academy of Music ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŃƒŠ·ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України імені ŠŸŠµŃ‚Ń€Š° Чайковського'),
(84481, 'https://ror.org/04ssn9s76', 'no_lang_code', 1, 'https://ror.org/04ssn9s76 Shangluo Central Hospital å•†ę“›åø‚äø­åæƒåŒ»é™¢'),
(84482, 'https://ror.org/05v76zz53', 'en', 1, 'https://ror.org/05v76zz53 Howard G. Buffett Foundation'),
(84483, 'https://ror.org/00tbgre39', 'nl', 1, 'https://ror.org/00tbgre39 WoonZorgcentra Haaglanden'),
(84484, 'https://ror.org/00mhyn861', 'no_lang_code', 1, 'https://ror.org/00mhyn861 Flexterra (United States)'),
(84485, 'https://ror.org/03yjk4m33', 'no_lang_code', 1, 'https://ror.org/03yjk4m33 Aftenposten (Norway)'),
(84486, 'https://ror.org/02x715f55', 'fr', 1, 'https://ror.org/02x715f55 Hochalpines Institut Ftan'),
(84487, 'https://ror.org/00dfyw498', 'en', 1, 'https://ror.org/00dfyw498 Fondation du cancer du sein du QuƩbec Quebec Breast Cancer Foundation'),
(84488, 'https://ror.org/03xzhx774', 'en', 1, 'https://ror.org/03xzhx774 Business and Hotel Management School'),
(84489, 'https://ror.org/00hyjzt98', 'en', 1, 'https://ror.org/00hyjzt98 Endangered Language Fund'),
(84490, 'https://ror.org/05n3s1g83', 'en', 1, 'https://ror.org/05n3s1g83 American Academy for Cerebral Palsy and Developmental Medicine'),
(84491, 'https://ror.org/01pqdvy42', 'en', 1, 'https://ror.org/01pqdvy42 Bournemouth and Poole College'),
(84492, 'https://ror.org/03qxge436', 'no_lang_code', 1, 'https://ror.org/03qxge436 Mary Kay (United States)'),
(84493, 'https://ror.org/02vkssr45', 'en', 1, 'https://ror.org/02vkssr45 European Society of Clinical Microbiology and Infectious Diseases'),
(84494, 'https://ror.org/04ejav607', 'en', 1, 'https://ror.org/04ejav607 Luke Neuhedel Foundation'),
(84495, 'https://ror.org/0195dxj21', 'en', 1, 'https://ror.org/0195dxj21 Life Sciences Research Foundation'),
(84496, 'https://ror.org/03saxfv98', 'en', 1, 'https://ror.org/03saxfv98 Ningxia Normal University'),
(84497, 'https://ror.org/01f84s613', 'pt', 1, 'https://ror.org/01f84s613 Sociedade Brasileira de Anatomia'),
(84498, 'https://ror.org/032214n64', 'en', 1, 'https://ror.org/032214n64 Archivos Nacionales y Administración de Documentos de los Estados Unidos National Archives and Records Administration'),
(84499, 'https://ror.org/025vt1p14', 'en', 1, 'https://ror.org/025vt1p14 Oregon Lions Sight & Hearing Foundation'),
(84500, 'https://ror.org/00bmxes04', 'en', 1, 'https://ror.org/00bmxes04 Alexandria Technical and Community College'),
(84501, 'https://ror.org/05pyxbe18', 'en', 1, 'https://ror.org/05pyxbe18 Quaternary Research Association'),
(84502, 'https://ror.org/05adkta90', 'en', 1, 'https://ror.org/05adkta90 Arthur L. and Elaine V. Johnson Foundation'),
(84503, 'https://ror.org/05xrx2w02', 'en', 1, 'https://ror.org/05xrx2w02 Bernice Barbour Foundation'),
(84504, 'https://ror.org/01pj8yd54', 'en', 1, 'https://ror.org/01pj8yd54 Beni American University'),
(84505, 'https://ror.org/03t015f28', 'en', 1, 'https://ror.org/03t015f28 Foundation for Individual Rights in Education'),
(84506, 'https://ror.org/05fsym151', 'en', 1, 'https://ror.org/05fsym151 Tear Film & Ocular Surface Society'),
(84507, 'https://ror.org/00r1j9q42', 'en', 1, 'https://ror.org/00r1j9q42 City University সিটি ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(84508, 'https://ror.org/04r5tg226', 'en', 1, 'https://ror.org/04r5tg226 Hall Family Foundation'),
(84509, 'https://ror.org/0452wjp18', 'en', 1, 'https://ror.org/0452wjp18 Academy of Spinal Cord Injury Professionals'),
(84510, 'https://ror.org/05es8as59', 'en', 1, 'https://ror.org/05es8as59 Zhengzhou University of Industrial Technology éƒ‘å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(84511, 'https://ror.org/05kmcre68', 'en', 1, 'https://ror.org/05kmcre68 Berea College'),
(84512, 'https://ror.org/0158rsm15', 'en', 1, 'https://ror.org/0158rsm15 Horses and Humans Research Foundation'),
(84513, 'https://ror.org/01289n712', 'en', 1, 'https://ror.org/01289n712 Rennie Center for Education Research & Policy'),
(84514, 'https://ror.org/03m629g08', 'de', 1, 'https://ror.org/03m629g08 Roland Ernst Stiftung'),
(84515, 'https://ror.org/01xg2j237', 'en', 1, 'https://ror.org/01xg2j237 National Institute of Traumatology & Orthopaedic Rehabilitation'),
(84516, 'https://ror.org/04frgh028', 'en', 1, 'https://ror.org/04frgh028 North American University'),
(84517, 'https://ror.org/036rdqh43', 'pt', 1, 'https://ror.org/036rdqh43 Fundação Escola de Sociologia e Política de São Paulo'),
(84518, 'https://ror.org/020mcpt63', 'en', 1, 'https://ror.org/020mcpt63 Ben May Charitable Trust'),
(84519, 'https://ror.org/01nprxv78', 'no_lang_code', 1, 'https://ror.org/01nprxv78 Sema4 (United States)'),
(84520, 'https://ror.org/01pxxsm33', 'en', 1, 'https://ror.org/01pxxsm33 PADI Foundation'),
(84521, 'https://ror.org/042qb3325', 'en', 1, 'https://ror.org/042qb3325 Owl Research Institute'),
(84522, 'https://ror.org/00nsb1162', 'en', 1, 'https://ror.org/00nsb1162 Dutch Colorectal Cancer Group'),
(84523, 'https://ror.org/03xasj370', 'en', 1, 'https://ror.org/03xasj370 Centre for Global Health Research'),
(84524, 'https://ror.org/0560vbt41', 'en', 1, 'https://ror.org/0560vbt41 Ariake College of Education and the Arts ęœ‰ę˜Žę•™č‚²čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(84525, 'https://ror.org/01mwvah42', 'fr', 1, 'https://ror.org/01mwvah42 CancƩropƓle PACA'),
(84526, 'https://ror.org/04fhxwq08', 'it', 1, 'https://ror.org/04fhxwq08 Consorzio per la Ricerca Sanitaria'),
(84527, 'https://ror.org/047fzcc28', 'en', 1, 'https://ror.org/047fzcc28 Evelyn Trust'),
(84528, 'https://ror.org/02nnhm363', 'en', 1, 'https://ror.org/02nnhm363 Takahashi Industrial and Economic Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗ é«˜ę©‹ē”£ę„­ēµŒęøˆē ”ē©¶č²”å›£'),
(84529, 'https://ror.org/04k2w7985', 'en', 1, 'https://ror.org/04k2w7985 Whitman Hospital & Medical Center'),
(84530, 'https://ror.org/029a2gx93', 'en', 1, 'https://ror.org/029a2gx93 International Society for Research in Human Milk and Lactation'),
(84531, 'https://ror.org/025gxrt12', 'es', 1, 'https://ror.org/025gxrt12 Instituto de Investigación Marqués de Valdecilla'),
(84532, 'https://ror.org/00gtyr743', 'no_lang_code', 1, 'https://ror.org/00gtyr743 Tempronics (United States)'),
(84533, 'https://ror.org/00hv7e130', 'en', 1, 'https://ror.org/00hv7e130 The Alzheimer Society of Ireland'),
(84534, 'https://ror.org/051d90518', 'en', 1, 'https://ror.org/051d90518 Wine and Food Foundation of Texas'),
(84535, 'https://ror.org/05ar38p21', 'en', 1, 'https://ror.org/05ar38p21 Amur State University of Humanities and Pedagogy ŠŠ¼ŃƒŃ€ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(84536, 'https://ror.org/04y4ec840', 'en', 1, 'https://ror.org/04y4ec840 Koninklijke Nederlandse Maatschappij tot bevordering der Tandheelkunde Royal Dutch Society for the Promotion of Dentistry'),
(84537, 'https://ror.org/05st8bk31', 'en', 1, 'https://ror.org/05st8bk31 Detroit Baptist Theological Seminary'),
(84538, 'https://ror.org/0043zdj72', 'no_lang_code', 1, 'https://ror.org/0043zdj72 Theraclion (France)'),
(84539, 'https://ror.org/01vs6se76', 'en', 1, 'https://ror.org/01vs6se76 Helmholtz Institute Erlangen-Nürnberg Helmholtz-Institut Erlangen-Nürnberg für Erneuerbare Energien'),
(84540, 'https://ror.org/02t401344', 'en', 1, 'https://ror.org/02t401344 Historic Hudson Valley'),
(84541, 'https://ror.org/01pj30291', 'en', 1, 'https://ror.org/01pj30291 Center for Cancer and Blood Disorders'),
(84542, 'https://ror.org/02zcab046', 'en', 1, 'https://ror.org/02zcab046 Industrial and Commercial Bank of China äø­å›½å·„å•†é“¶č”Œč‚”ä»½ęœ‰é™å…¬åø'),
(84543, 'https://ror.org/02dh8ja68', 'en', 1, 'https://ror.org/02dh8ja68 Max Planck Institute for Mathematics Max-Planck-Institut für Mathematik'),
(84544, 'https://ror.org/02ymd0q27', 'pt', 1, 'https://ror.org/02ymd0q27 Santa Casa de Misericórdia de Marília'),
(84545, 'https://ror.org/059rs3f80', 'en', 1, 'https://ror.org/059rs3f80 Carnegie Dunfermline Trust'),
(84546, 'https://ror.org/000r5ge73', 'en', 1, 'https://ror.org/000r5ge73 Hypertension Canada'),
(84547, 'https://ror.org/051bjph87', 'en', 1, 'https://ror.org/051bjph87 Dr. Jeffrey Thomas Stroke Shield Foundation'),
(84548, 'https://ror.org/001amd982', 'en', 1, 'https://ror.org/001amd982 Noida International University ą¤Øą„‹ą¤ą¤”ą¤¾ ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(84549, 'https://ror.org/02gs5sz03', 'en', 1, 'https://ror.org/02gs5sz03 Ichinomiya Kenshin College 一宮研伸大学 ēœ‹č­·å­¦éƒØ'),
(84550, 'https://ror.org/05dz6we97', 'en', 1, 'https://ror.org/05dz6we97 Artquest'),
(84551, 'https://ror.org/0533xhs39', 'en', 1, 'https://ror.org/0533xhs39 European Underground Research Infrastructure for Disposal of nuclear waste in a Clay Environment'),
(84552, 'https://ror.org/05whrz662', 'no_lang_code', 1, 'https://ror.org/05whrz662 Biostats (United States)'),
(84553, 'https://ror.org/00r09jm09', 'en', 1, 'https://ror.org/00r09jm09 Noguchi Thyroid Clinic and Hospital Foundation äæé™ŗåŒ»ē™‚ę©Ÿé–¢ åŒ»ē™‚ę³•äŗŗ é‡Žå£ē—…é™¢'),
(84554, 'https://ror.org/01a3g5118', 'no_lang_code', 1, 'https://ror.org/01a3g5118 Teisei Gakuen Junior College č²žé™å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(84555, 'https://ror.org/05e34ra63', 'no_lang_code', 1, 'https://ror.org/05e34ra63 Mizuho (Japan) ę Ŗå¼ä¼šē¤¾ćæćšć»ćƒ•ć‚£ćƒŠćƒ³ć‚·ćƒ£ćƒ«ć‚°ćƒ«ćƒ¼ćƒ—'),
(84556, 'https://ror.org/00kgeb982', 'de', 1, 'https://ror.org/00kgeb982 Zentrum für Qualität in der Pflege'),
(84557, 'https://ror.org/000vby968', 'no_lang_code', 1, 'https://ror.org/000vby968 Pear Therapeutics (United States)'),
(84558, 'https://ror.org/0441cz810', 'en', 1, 'https://ror.org/0441cz810 Turkish Cultural Foundation'),
(84559, 'https://ror.org/039xcs474', 'en', 1, 'https://ror.org/039xcs474 Informatics and Business Institute Darmajaya Institut Informatika Dan Bisnis Darmajaya'),
(84560, 'https://ror.org/00fevpc76', 'en', 1, 'https://ror.org/00fevpc76 HIV Research Trust'),
(84561, 'https://ror.org/028885271', 'en', 1, 'https://ror.org/028885271 Kyoto Technoscience Center å…¬ē›Šč²”å›£ę³•äŗŗ äŗ¬éƒ½ęŠ€č”“ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(84562, 'https://ror.org/00nwypn17', 'en', 1, 'https://ror.org/00nwypn17 Amen Clinics'),
(84563, 'https://ror.org/01rps2j56', 'en', 1, 'https://ror.org/01rps2j56 Koning Willem I College'),
(84564, 'https://ror.org/004d82k56', 'en', 1, 'https://ror.org/004d82k56 Canadian Society for the Study of Education'),
(84565, 'https://ror.org/02j5qn328', 'en', 1, 'https://ror.org/02j5qn328 Fujian Polytechnic of Information Technology ē¦å»ŗäæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(84566, 'https://ror.org/05natt857', 'fr', 1, 'https://ror.org/05natt857 Musée National d''Histoire Naturelle Musée national d''histoire naturelle du Luxembourg Nationalmuseum für Naturgeschichte Luxemburg Nationalmusée fir Naturgeschicht Naturmusée'),
(84567, 'https://ror.org/0249yv056', 'en', 1, 'https://ror.org/0249yv056 Joseph William Gottstein Memorial Trust'),
(84568, 'https://ror.org/03z01w103', 'en', 1, 'https://ror.org/03z01w103 Reno Sparks Indian Colony'),
(84569, 'https://ror.org/00h14jd50', 'en', 1, 'https://ror.org/00h14jd50 Cystic Fibrosis Australia'),
(84570, 'https://ror.org/02px88477', 'en', 1, 'https://ror.org/02px88477 Sieć Badawczą Łukasiewicz - Instytut Pojazdów Szynowych "TABORā€ Łukasiewicz Research Network - Rail Vehicles Institute'),
(84571, 'https://ror.org/05f75kg76', 'en', 1, 'https://ror.org/05f75kg76 Canadian Water Network RĆ©seau canadien de l’eau'),
(84572, 'https://ror.org/0445wmv88', 'en', 1, 'https://ror.org/0445wmv88 National Center for Science and Engineering Statistics'),
(84573, 'https://ror.org/01dsa5866', 'no_lang_code', 1, 'https://ror.org/01dsa5866 Dongguk University WISE ė™źµ­ėŒ€ķ•™źµ WISEģŗ ķ¼ģŠ¤'),
(84574, 'https://ror.org/01caf1f88', 'no_lang_code', 1, 'https://ror.org/01caf1f88 Marvel Fusion'),
(84575, 'https://ror.org/00cjqbk89', 'no_lang_code', 1, 'https://ror.org/00cjqbk89 OSGeo'),
(84576, 'https://ror.org/056yyyw24', 'en', 1, 'https://ror.org/056yyyw24 King Edward Memorial Hospital Research Centre'),
(84577, 'https://ror.org/05g6n4k07', 'en', 1, 'https://ror.org/05g6n4k07 Odesa National University of Technology ŠžŠ“ŠµŃŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ пищевых технологий ŠžŠ“ŠµŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń харчових технологій ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(84578, 'https://ror.org/011j4zc17', 'en', 1, 'https://ror.org/011j4zc17 National Gallery of Australia'),
(84579, 'https://ror.org/02qdq9z80', 'en', 1, 'https://ror.org/02qdq9z80 International Professional University of Technology in Nagoya åå¤å±‹å›½éš›å·„ē§‘å°‚é–€č·å¤§å­¦'),
(84580, 'https://ror.org/03wx2rr30', 'en', 1, 'https://ror.org/03wx2rr30 University of Ibadan YunifÔsítì ìlú Ìbàdàn'),
(84581, 'https://ror.org/047agv396', 'en', 1, 'https://ror.org/047agv396 Ivan Ziaziun Institute of Pedagogical Education and Adult Education of the National Academy of Pedagogical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пеГагогічної освіти і освіти Горослих імені Івана Š—ŃŠ·ŃŽŠ½Š° ŠŠŠŸŠ України'),
(84582, 'https://ror.org/03dhk1t70', 'en', 1, 'https://ror.org/03dhk1t70 JMIR Publications'),
(84583, 'https://ror.org/00hrxq972', 'no_lang_code', 1, 'https://ror.org/00hrxq972 oekom'),
(84584, 'https://ror.org/03d7vz670', 'en', 1, 'https://ror.org/03d7vz670 College of Mount Saint Vincent'),
(84585, 'https://ror.org/022chd503', 'en', 1, 'https://ror.org/022chd503 Dhaka National Medical College ঢাকা ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(84586, 'https://ror.org/0178ysk77', 'en', 1, 'https://ror.org/0178ysk77 University of Holy Cross'),
(84587, 'https://ror.org/00kd5se19', 'en', 1, 'https://ror.org/00kd5se19 National Institute of Technology, Nagano College é•·é‡Žå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(84588, 'https://ror.org/05at5an04', 'en', 1, 'https://ror.org/05at5an04 State Scientific Institution "Institute of Information, Security and Law of the National Academy of Legal Sciences of Ukraine" Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ інформації, безпеки і права ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії правових наук Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(84589, 'https://ror.org/03gzbrs57', 'en', 1, 'https://ror.org/03gzbrs57 NewYork–Presbyterian Hospital'),
(84590, 'https://ror.org/01h8ejk57', 'en', 1, 'https://ror.org/01h8ejk57 National Library of Nigeria'),
(84591, 'https://ror.org/02rvyhw89', 'en', 1, 'https://ror.org/02rvyhw89 Bangladesh Jute Mills Corporation বাংলাদেশ ą¦Ŗą¦¾ą¦Ÿą¦•ą¦² করপোরেশন'),
(84592, 'https://ror.org/04npz1276', 'no_lang_code', 1, 'https://ror.org/04npz1276 Windlift (United States)'),
(84593, 'https://ror.org/02w2rmb81', 'no_lang_code', 1, 'https://ror.org/02w2rmb81 EMS (United Kingdom)'),
(84594, 'https://ror.org/05p67dv18', 'no_lang_code', 1, 'https://ror.org/05p67dv18 China Telecom äø­å›½ē”µäæ”č‚”ä»½ęœ‰é™å…¬åø'),
(84595, 'https://ror.org/03r5zvp34', 'en', 1, 'https://ror.org/03r5zvp34 Pan African University Institute of Life and Earth Sciences'),
(84596, 'https://ror.org/01gcwk603', 'en', 1, 'https://ror.org/01gcwk603 Jinzhong College of Information 晋中俔息学院'),
(84597, 'https://ror.org/04j4psb31', 'en', 1, 'https://ror.org/04j4psb31 Australia Council for the Arts'),
(84598, 'https://ror.org/030atj633', 'en', 1, 'https://ror.org/030atj633 Ministry of Health'),
(84599, 'https://ror.org/055rxtm94', 'en', 1, 'https://ror.org/055rxtm94 Yongcheng Vocational College ę°øåŸŽčŒäøšå­¦é™¢'),
(84600, 'https://ror.org/017xv2t04', 'en', 1, 'https://ror.org/017xv2t04 Lumbini Medical College ą¤²ą„ą¤®ą„ą¤¬ą¤æą¤Øą¤æ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤²ą„‡ą¤œ'),
(84601, 'https://ror.org/00nfe1k49', 'no_lang_code', 1, 'https://ror.org/00nfe1k49 Intelligent Fingerprinting (United Kingdom)'),
(84602, 'https://ror.org/01k7e4s32', 'en', 1, 'https://ror.org/01k7e4s32 Prince Sultan Military College of Health Sciences ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£Ł…ŁŠŲ± سلطان Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲµŲ­ŁŠŲ©'),
(84603, 'https://ror.org/04yvjg468', 'en', 1, 'https://ror.org/04yvjg468 National Library of Australia'),
(84604, 'https://ror.org/04mw38f72', 'en', 1, 'https://ror.org/04mw38f72 Mast Cell Disease Society'),
(84605, 'https://ror.org/04tvfnj07', 'en', 1, 'https://ror.org/04tvfnj07 Wettenhall Environment Trust'),
(84606, 'https://ror.org/02yrq0923', 'en', 1, 'https://ror.org/02yrq0923 Memorial Sloan Kettering Cancer Center'),
(84607, 'https://ror.org/01zgdd257', 'no_lang_code', 1, 'https://ror.org/01zgdd257 Medytox ė©”ė””ķ†”ģŠ¤'),
(84608, 'https://ror.org/048mc3281', 'no_lang_code', 1, 'https://ror.org/048mc3281 Bhaikaka University'),
(84609, 'https://ror.org/059pch876', 'no_lang_code', 1, 'https://ror.org/059pch876 Aureo (Japan)'),
(84610, 'https://ror.org/05eagxp18', 'es', 1, 'https://ror.org/05eagxp18 Unidad Nacional para la Gestión del Riesgo de Desastres'),
(84611, 'https://ror.org/030rhf128', 'no_lang_code', 1, 'https://ror.org/030rhf128 Bunge (United States)'),
(84612, 'https://ror.org/04989d402', 'en', 1, 'https://ror.org/04989d402 Bone Health and Osteoporosis Foundation'),
(84613, 'https://ror.org/01q496a73', 'en', 1, 'https://ror.org/01q496a73 MRC Weatherall Institute of Molecular Medicine'),
(84614, 'https://ror.org/05vb5av34', 'no_lang_code', 1, 'https://ror.org/05vb5av34 Australian Broadcasting Corporation (Australia)'),
(84615, 'https://ror.org/04td15k45', 'es', 1, 'https://ror.org/04td15k45 Cooperative University of Colombia Universidad Cooperativa de Colombia'),
(84616, 'https://ror.org/05jqagv40', 'en', 1, 'https://ror.org/05jqagv40 L.E. Fletcher Technical Community College'),
(84617, 'https://ror.org/00x5cwj10', 'en', 1, 'https://ror.org/00x5cwj10 V.Ye. Tairov Institute of Viticulture and Winemaking Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ винограГарства і виноробства імені Š’.Š„. Таїрова'),
(84618, 'https://ror.org/052b8a564', 'en', 1, 'https://ror.org/052b8a564 Amsterdam health & technology institute'),
(84619, 'https://ror.org/02ysyhv70', 'en', 1, 'https://ror.org/02ysyhv70 Pan African University Institute for Governance, Humanities and Social Sciences'),
(84620, 'https://ror.org/02xven060', 'en', 1, 'https://ror.org/02xven060 Institut de la santƩ des Autochtones Institute of Indigenous Peoples'' Health'),
(84621, 'https://ror.org/04qe65e37', 'en', 1, 'https://ror.org/04qe65e37 Pan African University Institute of Water and Energy Science'),
(84622, 'https://ror.org/02qqw3j37', 'es', 1, 'https://ror.org/02qqw3j37 Institute for Economic Liberty Instituto de Libertad Económica'),
(84623, 'https://ror.org/029p3kk30', 'en', 1, 'https://ror.org/029p3kk30 Louisiana Christian University'),
(84624, 'https://ror.org/029dswp54', 'en', 1, 'https://ror.org/029dswp54 Central Land Council'),
(84625, 'https://ror.org/03gjccz36', 'no_lang_code', 1, 'https://ror.org/03gjccz36 Ansell (Australia)'),
(84626, 'https://ror.org/02sdahq48', 'no_lang_code', 1, 'https://ror.org/02sdahq48 Guangzhou Metro Design & Research Institute å¹æå·žåœ°é“č®¾č®”ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(84627, 'https://ror.org/03d56t467', 'en', 1, 'https://ror.org/03d56t467 The Sumners Foundation'),
(84628, 'https://ror.org/050519n85', 'en', 1, 'https://ror.org/050519n85 Postharvest Technology Innovation Center ąøØąø¹ąø™ąø¢ą¹Œąø™ąø§ąø±ąø•ąøąø£ąø£ąø”ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø«ąø„ąø±ąø‡ąøąø²ąø£ą¹€ąøą¹‡ąøšą¹€ąøąøµą¹ˆąø¢ąø§'),
(84629, 'https://ror.org/04vh4q802', 'no_lang_code', 1, 'https://ror.org/04vh4q802 Manzanita Pharmaceuticals (United States)'),
(84630, 'https://ror.org/02t8xn829', 'en', 1, 'https://ror.org/02t8xn829 Boca Raton Community High School'),
(84631, 'https://ror.org/02q094x95', 'en', 1, 'https://ror.org/02q094x95 Northshore Technical Community College'),
(84632, 'https://ror.org/05hqpps66', 'en', 1, 'https://ror.org/05hqpps66 Screen Australia'),
(84633, 'https://ror.org/03zjqec80', 'en', 1, 'https://ror.org/03zjqec80 Hospital for Special Surgery'),
(84634, 'https://ror.org/04kkpqb45', 'en', 1, 'https://ror.org/04kkpqb45 Society for Agriculture and Arid Ecology Research ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤¶ą„ą¤·ą„ą¤• ą¤Ŗą¤¾ą¤°ą¤æą¤øą„ą¤„ą¤æą¤¤ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą„‹ą¤øą¤¾ą¤‡ą¤Ÿą„€'),
(84635, 'https://ror.org/04rpe5h19', 'en', 1, 'https://ror.org/04rpe5h19 Harte Research Institute for Gulf of Mexico Studies'),
(84636, 'https://ror.org/05hrp0b43', 'en', 1, 'https://ror.org/05hrp0b43 Northwest Louisiana Technical Community College'),
(84637, 'https://ror.org/049ezvq17', 'en', 1, 'https://ror.org/049ezvq17 NEWTON University VysokÔ Ŕkola NEWTON'),
(84638, 'https://ror.org/02asztc31', 'en', 1, 'https://ror.org/02asztc31 Australian Film, Television and Radio School'),
(84639, 'https://ror.org/00j4a3b86', 'en', 1, 'https://ror.org/00j4a3b86 National Museum of Australia'),
(84640, 'https://ror.org/032sd0c64', 'en', 1, 'https://ror.org/032sd0c64 Southern Oregon Orthopedics'),
(84641, 'https://ror.org/03ayaqr81', 'no_lang_code', 1, 'https://ror.org/03ayaqr81 SCImago Research Group'),
(84642, 'https://ror.org/03t8x2c04', 'en', 1, 'https://ror.org/03t8x2c04 Aga Khan Foundation'),
(84643, 'https://ror.org/036xnae80', 'en', 1, 'https://ror.org/036xnae80 Kathmandu University ą¤•ą¤¾ą¤ ą¤®ą¤¾ą¤”ą„Œą¤‚ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(84644, 'https://ror.org/02khxwt12', 'en', 1, 'https://ror.org/02khxwt12 MRC Molecular Haematology Unit'),
(84645, 'https://ror.org/027g2ne18', 'no_lang_code', 1, 'https://ror.org/027g2ne18 Abasaheb Garware College ą¤†ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤—ą¤°ą¤µą¤¾ą¤°ą„‡ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(84646, 'https://ror.org/02rkt9d51', 'en', 1, 'https://ror.org/02rkt9d51 Balti Kaitsekolledž Baltic Defence College Baltijas Aizsardzības koledža Baltijos gynybos koledžas'),
(84647, 'https://ror.org/0504fet81', 'no_lang_code', 1, 'https://ror.org/0504fet81 KM-RoBoTa'),
(84648, 'https://ror.org/03gxqy123', 'en', 1, 'https://ror.org/03gxqy123 Faculdade Paulo PicanƧo Paulo PicanƧo School of Dentistry'),
(84649, 'https://ror.org/03pmbva82', 'no_lang_code', 1, 'https://ror.org/03pmbva82 Ebelle D''ebelle Pharmaceutical (United States)'),
(84650, 'https://ror.org/040a2r459', 'en', 1, 'https://ror.org/040a2r459 Belarusian National Technical University Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š½Š°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Ń‹ Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(84651, 'https://ror.org/00jzpj618', 'es', 1, 'https://ror.org/00jzpj618 Ariadna Ediciones Ariadna Publishing'),
(84652, 'https://ror.org/047988g19', 'en', 1, 'https://ror.org/047988g19 West Ukrainian National University Š—Š°Ń…Ń–Š“Š½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(84653, 'https://ror.org/04yn6kj97', 'en', 1, 'https://ror.org/04yn6kj97 Imam Khomeini Marine Science University دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† دریایی Ų§Ł…Ų§Ł… Ų®Ł…ŪŒŁ†ŪŒ'),
(84654, 'https://ror.org/048a3wm97', 'en', 1, 'https://ror.org/048a3wm97 Australian Communications and Media Authority'),
(84655, 'https://ror.org/03y3dt762', 'en', 1, 'https://ror.org/03y3dt762 Louisiana Delta Community College'),
(84656, 'https://ror.org/05bvxq496', 'no_lang_code', 1, 'https://ror.org/05bvxq496 Guru Ghasidas Vishwavidyalaya ą¤—ą„ą¤°ą„‚ ą¤˜ą¤¾ą¤øą„€ą¤¦ą¤¾ą¤ø ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(84657, 'https://ror.org/04x6kq749', 'en', 1, 'https://ror.org/04x6kq749 Huygens Institute for History and Culture of the Netherlands Huygens Instituut voor Nederlandse geschiedenis en cultuur'),
(84658, 'https://ror.org/03dtp6w69', 'en', 1, 'https://ror.org/03dtp6w69 Ministry of Defense وزارة الدفاع'),
(84659, 'https://ror.org/03cq4gr50', 'en', 1, 'https://ror.org/03cq4gr50 Khon Kaen University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø‚ąø­ąø™ą¹ąøą¹ˆąø™'),
(84660, 'https://ror.org/04yw47259', 'en', 0, 'https://ror.org/04yw47259 Macmurray College'),
(84661, 'https://ror.org/01952nm43', 'en', 0, 'https://ror.org/01952nm43 New England Institute of Art'),
(84662, 'https://ror.org/03av75f26', 'en', 1, 'https://ror.org/03av75f26 Max Planck Institut für Multidisziplinäre Naturwissenschaften Max Planck Institute for Multidisciplinary Sciences'),
(84663, 'https://ror.org/0114f6s34', 'en', 0, 'https://ror.org/0114f6s34 College of Allied Medical Science Akita University ē§‹ē”°å¤§å­¦åŒ»ē™‚ęŠ€č”“ēŸ­ęœŸå¤§å­¦éƒØ'),
(84664, 'https://ror.org/05rx1xe20', 'no_lang_code', 0, 'https://ror.org/05rx1xe20 Conexant (United States)'),
(84665, 'https://ror.org/00w0f8567', 'en', 0, 'https://ror.org/00w0f8567 Kyushu Tokai University ä¹å·žę±ęµ·å¤§å­¦'),
(84666, 'https://ror.org/04dstfg97', 'en', 0, 'https://ror.org/04dstfg97 Sholokhov Moscow State University for Humanities Московский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. А. Шолохова'),
(84667, 'https://ror.org/01kjjpm11', 'no_lang_code', 0, 'https://ror.org/01kjjpm11 Osaka Meijo Women''s College å¤§é˜Ŗę˜Žęµ„å„³å­ēŸ­ęœŸå¤§å­¦'),
(84668, 'https://ror.org/035713c15', 'en', 0, 'https://ror.org/035713c15 Koryo International College å…‰é™µå„³å­ēŸ­ęœŸå¤§å­¦'),
(84669, 'https://ror.org/01a5v8x09', 'no_lang_code', 0, 'https://ror.org/01a5v8x09 JDSU (United States)'),
(84670, 'https://ror.org/002c7gt96', 'en', 0, 'https://ror.org/002c7gt96 Daniel Webster College'),
(84671, 'https://ror.org/03q0p7c86', 'en', 0, 'https://ror.org/03q0p7c86 Center of Regenerative Medicine in Barcelona'),
(84672, 'https://ror.org/05524hb64', 'en', 0, 'https://ror.org/05524hb64 Extreme Science and Engineering Discovery Environment'),
(84673, 'https://ror.org/00em52312', 'en', 0, 'https://ror.org/00em52312 Canadian Polar Commission'),
(84674, 'https://ror.org/05r35r527', 'no_lang_code', 0, 'https://ror.org/05r35r527 Mylan (Australia)'),
(84675, 'https://ror.org/0010rmz96', 'en', 0, 'https://ror.org/0010rmz96 Yokkaichi University Junior College å››ę—„åø‚å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(84676, 'https://ror.org/04nsw4151', 'no_lang_code', 0, 'https://ror.org/04nsw4151 Mylan (United States)'),
(84677, 'https://ror.org/05esm3b90', 'en', 0, 'https://ror.org/05esm3b90 Association Canadienne de l''Industrie des Plastiques Canadian Plastics Industry Association'),
(84678, 'https://ror.org/02skfsw40', 'en', 0, 'https://ror.org/02skfsw40 Osaka City University å¤§é˜Ŗåø‚ē«‹å¤§å­¦'),
(84679, 'https://ror.org/04br0rs05', 'en', 1, 'https://ror.org/04br0rs05 Health Sciences North'),
(84680, 'https://ror.org/015zx6n37', 'en', 1, 'https://ror.org/015zx6n37 Perth Children''s Hospital'),
(84681, 'https://ror.org/02dyxwz31', 'en', 0, 'https://ror.org/02dyxwz31 Athlone Institute of Technology Institiúid Teicneolaíochta Bhaile Átha Luain'),
(84682, 'https://ror.org/0524wfr80', 'en', 0, 'https://ror.org/0524wfr80 Iwate College of Nursing å²©ę‰‹ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(84683, 'https://ror.org/04jsh0z47', 'en', 0, 'https://ror.org/04jsh0z47 Fukuoka Social Medical Welfare University ē¦å²”åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(84684, 'https://ror.org/03st4v061', 'en', 0, 'https://ror.org/03st4v061 Fukuoka International University ē¦å²”å›½éš›å¤§å­¦'),
(84685, 'https://ror.org/0292ym357', 'en', 0, 'https://ror.org/0292ym357 Association of Super-Advanced Electronics ęŠ€č”“ē ”ē©¶ēµ„åˆ č¶…å…ˆē«Æé›»å­ęŠ€č”“é–‹ē™ŗę©Ÿę§‹'),
(84686, 'https://ror.org/02ag8cq23', 'fi', 0, 'https://ror.org/02ag8cq23 Tekes'),
(84687, 'https://ror.org/00z1mf734', 'en', 0, 'https://ror.org/00z1mf734 Okayama Institute for Quantum Physics å²”å±±å…‰é‡å­ē§‘å­¦ē ”ē©¶ę‰€'),
(84688, 'https://ror.org/03kw7j946', 'en', 0, 'https://ror.org/03kw7j946 Yamawaki Gakuen Junior College å±±č„‡å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(84689, 'https://ror.org/03hv1ad10', 'en', 1, 'https://ror.org/03hv1ad10 Akita University 秋田大学'),
(84690, 'https://ror.org/03e76ya46', 'en', 0, 'https://ror.org/03e76ya46 Max Planck Institute for Biophysical Chemistry Max-Planck-Institut für Biophysikalische Chemie'),
(84691, 'https://ror.org/04sy8yh72', 'en', 0, 'https://ror.org/04sy8yh72 Illinois Institute of Art'),
(84692, 'https://ror.org/027p4qx72', 'en', 0, 'https://ror.org/027p4qx72 Indonesian National Institute of Aeronautics and Space Lembaga Penerbangan dan Antariksa Nasional'),
(84693, 'https://ror.org/039jjcy66', 'no_lang_code', 0, 'https://ror.org/039jjcy66 Mylan (India)'),
(84694, 'https://ror.org/02eh2pe44', 'en', 0, 'https://ror.org/02eh2pe44 Art Institute of Pittsburgh'),
(84695, 'https://ror.org/04n0vf235', 'en', 0, 'https://ror.org/04n0vf235 Canadian Breast Cancer Foundation Fondation canadienne du cancer du sein'),
(84696, 'https://ror.org/025j82f41', 'no_lang_code', 0, 'https://ror.org/025j82f41 JDSU (Canada)'),
(84697, 'https://ror.org/04dy1nt28', 'en', 0, 'https://ror.org/04dy1nt28 Narabunka Women''s College å„ˆč‰Æę–‡åŒ–å„³å­ēŸ­ęœŸå¤§å­¦'),
(84698, 'https://ror.org/04wgk6417', 'en', 0, 'https://ror.org/04wgk6417 Art Institute of Las Vegas'),
(84699, 'https://ror.org/023enrs75', 'en', 0, 'https://ror.org/023enrs75 Art Institute of York - Pennsylvania'),
(84700, 'https://ror.org/03wkq5991', 'ca', 0, 'https://ror.org/03wkq5991 USP Institut Universitari Dexeus'),
(84701, 'https://ror.org/05pgxdd43', 'en', 0, 'https://ror.org/05pgxdd43 Aboriginal Affairs Northern Dev Canada Affaires autochtones et du dƩveloppement du Nord canadien'),
(84702, 'https://ror.org/059a9e323', 'no_lang_code', 1, 'https://ror.org/059a9e323 Viavi Solutions (United States)'),
(84703, 'https://ror.org/01wtn4904', 'en', 0, 'https://ror.org/01wtn4904 Osaka Women''s Junior College 大阪儳子短期大学'),
(84704, 'https://ror.org/0269ncv24', 'en', 0, 'https://ror.org/0269ncv24 InstitiĆŗid TeicneolaĆ­ochta Luimneach Limerick Institute of Technology'),
(84705, 'https://ror.org/05532r870', 'en', 0, 'https://ror.org/05532r870 CongrĆØs National Luso Canadien Portuguese Canadian National Congress'),
(84706, 'https://ror.org/058thb585', 'id', 0, 'https://ror.org/058thb585 Agency for Assessment and Implementation Technology Badan Pengkajian dan Penerapan Teknologi'),
(84707, 'https://ror.org/058mseb02', 'en', 0, 'https://ror.org/058mseb02 China National Centre for Food Safety Risk Assessment'),
(84708, 'https://ror.org/0308s4091', 'en', 0, 'https://ror.org/0308s4091 Eijkman Institute for Molecular Biology'),
(84709, 'https://ror.org/03yfxw954', 'en', 0, 'https://ror.org/03yfxw954 Suzugamine Women''s College 鈓峯儳子短期大学'),
(84710, 'https://ror.org/01p2ej961', 'en', 1, 'https://ror.org/01p2ej961 The Art Institutes'),
(84711, 'https://ror.org/03ybx0x41', 'en', 0, 'https://ror.org/03ybx0x41 Department of Biomedicine Basel'),
(84712, 'https://ror.org/00wz65j53', 'no_lang_code', 0, 'https://ror.org/00wz65j53 JDSU (Switzerland)'),
(84713, 'https://ror.org/028rzxs74', 'no_lang_code', 0, 'https://ror.org/028rzxs74 Mylan (United Kingdom)'),
(84714, 'https://ror.org/049ph2k85', 'en', 0, 'https://ror.org/049ph2k85 University of Creation Art, Music & Social Work 創造学園大学'),
(84715, 'https://ror.org/013zcv680', 'no_lang_code', 0, 'https://ror.org/013zcv680 Oxford Medical Diagnostics (United Kingdom)'),
(84716, 'https://ror.org/04a7f6w43', 'en', 0, 'https://ror.org/04a7f6w43 Max Planck Institute of Experimental Medicine Max-Planck-Institut für Experimentelle Medizin'),
(84717, 'https://ror.org/00xx8sn02', 'en', 0, 'https://ror.org/00xx8sn02 Art Institute of Colorado'),
(84718, 'https://ror.org/01cb0jg64', 'en', 0, 'https://ror.org/01cb0jg64 Art Institute of Portland'),
(84719, 'https://ror.org/03bdvdc06', 'en', 0, 'https://ror.org/03bdvdc06 Public Library of Science'),
(84720, 'https://ror.org/02m3w2z38', 'en', 1, 'https://ror.org/02m3w2z38 Office for Health Improvement and Disparities'),
(84721, 'https://ror.org/029vq7597', 'en', 0, 'https://ror.org/029vq7597 Enterprise Cape Breton Corporation'),
(84722, 'https://ror.org/01brr3227', 'en', 0, 'https://ror.org/01brr3227 Swedish e-Science Research Center'),
(84723, 'https://ror.org/01br3aa17', 'en', 0, 'https://ror.org/01br3aa17 Biophysics Center of Armenian'),
(84724, 'https://ror.org/005m60g68', 'en', 0, 'https://ror.org/005m60g68 Direktorat Jenderal Pendidikan Tinggi Ministry of Research, Technology and Higher Education'),
(84725, 'https://ror.org/03x8rdd89', 'en', 0, 'https://ror.org/03x8rdd89 Białystok School of Public Administration Wyższa Szkoła Administracji Publicznej w Białymstoku'),
(84726, 'https://ror.org/000d53575', 'en', 0, 'https://ror.org/000d53575 Okazaki National Research Institutes å²”å“Žå›½ē«‹å…±åŒē ”ē©¶ę©Ÿę§‹'),
(84727, 'https://ror.org/01d3ncs59', 'no_lang_code', 0, 'https://ror.org/01d3ncs59 JDSU (China)'),
(84728, 'https://ror.org/00hr1eg19', 'en', 0, 'https://ror.org/00hr1eg19 Kangnam Sacred Heart Hospital'),
(84729, 'https://ror.org/00vcb6036', 'en', 1, 'https://ror.org/00vcb6036 Osaka Prefectural Medical Center å¤§é˜Ŗę€„ę€§ęœŸ'),
(84730, 'https://ror.org/02cf1je33', 'en', 0, 'https://ror.org/02cf1je33 Osaka Prefecture University å¤§é˜Ŗåŗœē«‹å¤§å­¦'),
(84731, 'https://ror.org/02vfaya75', 'en', 0, 'https://ror.org/02vfaya75 Art Institute of Seattle'),
(84732, 'https://ror.org/04g7y4303', 'en', 0, 'https://ror.org/04g7y4303 Ernest Gallo Clinic and Research Center'),
(84733, 'https://ror.org/02h60r346', 'en', 0, 'https://ror.org/02h60r346 Kobe University of Fashion and Design ē„žęˆøćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³é€ å½¢å¤§å­¦'),
(84734, 'https://ror.org/03a0mw410', 'en', 0, 'https://ror.org/03a0mw410 Art Institutes International Minnesota'),
(84735, 'https://ror.org/01sfh2b07', 'en', 0, 'https://ror.org/01sfh2b07 National Agency for New Technologies Energy and Sustainable Economic Development'),
(84736, 'https://ror.org/02c8z2835', 'en', 0, 'https://ror.org/02c8z2835 Aichi Kiwami College of Nursing ę„›ēŸ„ćć‚ćæēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(84737, 'https://ror.org/05hde1z07', 'en', 0, 'https://ror.org/05hde1z07 Wellcome Library'),
(84738, 'https://ror.org/04babsy72', 'en', 1, 'https://ror.org/04babsy72 Indigenous Services Canada Services aux Autochtones Canada'),
(84739, 'https://ror.org/022mc7478', 'en', 0, 'https://ror.org/022mc7478 St. Thomas University č–ćƒˆćƒžć‚¹å¤§å­¦'),
(84740, 'https://ror.org/05350h943', 'en', 0, 'https://ror.org/05350h943 Center of Advanced European Studies and Research Forschungszentrum caesar'),
(84741, 'https://ror.org/0158fxz86', 'en', 0, 'https://ror.org/0158fxz86 Association canadienne de l’énergie Ć©olienne Canadian Wind Energy Association'),
(84742, 'https://ror.org/05fkxeh29', 'en', 0, 'https://ror.org/05fkxeh29 HƓpital rƩgional de Sudbury Sudbury Regional Hospital'),
(84743, 'https://ror.org/04ps1tq95', 'en', 0, 'https://ror.org/04ps1tq95 InstitiĆŗid TeicneolaĆ­ochta Leitir Ceanainn Letterkenny Institute of Technology'),
(84744, 'https://ror.org/03baec336', 'nl', 0, 'https://ror.org/03baec336 Interdisciplinary Institute for BroadBand Technology iMinds'),
(84745, 'https://ror.org/05mxean80', 'en', 1, 'https://ror.org/05mxean80 Osaka City University Hospital å¤§é˜Ŗåø‚ē«‹å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(84746, 'https://ror.org/049922318', 'no_lang_code', 0, 'https://ror.org/049922318 SuperGen (United States)'),
(84747, 'https://ror.org/00ndqxq51', 'no_lang_code', 0, 'https://ror.org/00ndqxq51 Kobe Shukugawa Gakuin University ē„žęˆøå¤™å·å­¦é™¢å¤§å­¦'),
(84748, 'https://ror.org/04k443z34', 'no_lang_code', 0, 'https://ror.org/04k443z34 Mylan (Italy)'),
(84749, 'https://ror.org/01krpyz50', 'en', 0, 'https://ror.org/01krpyz50 Yamazaki College of Animal Health Technology ćƒ¤ćƒžć‚¶ć‚­å‹•ē‰©ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(84750, 'https://ror.org/01c4rxk68', 'en', 1, 'https://ror.org/01c4rxk68 Advanced Materials and BioEngineering Research'),
(84751, 'https://ror.org/00gcd8h55', 'en', 0, 'https://ror.org/00gcd8h55 The Nature Conservancy'),
(84752, 'https://ror.org/024j9sx72', 'en', 0, 'https://ror.org/024j9sx72 Galway-Mayo Institute of Technology InstitiĆŗid TeicneolaĆ­ochta na Gaillimhe-Maigh Eo'),
(84753, 'https://ror.org/00pdj0786', 'fr', 0, 'https://ror.org/00pdj0786 Thunken'),
(84754, 'https://ror.org/01gqqqf26', 'no_lang_code', 0, 'https://ror.org/01gqqqf26 Mylan (South Africa)'),
(84755, 'https://ror.org/04ec98z42', 'en', 0, 'https://ror.org/04ec98z42 Princess Margaret Hospital for Children'),
(84756, 'https://ror.org/05t2kwz20', 'no_lang_code', 0, 'https://ror.org/05t2kwz20 Tokyo Jogakkan College ę±äŗ¬å„³å­¦é¤Øå¤§å­¦'),
(84757, 'https://ror.org/05xmf1h49', 'en', 1, 'https://ror.org/05xmf1h49 Crown-Indigenous Relations and Northern Affairs Canada Relations Couronne-Autochtones et des Affaires du Nord Canada'),
(84758, 'https://ror.org/04qzx1v96', 'en', 0, 'https://ror.org/04qzx1v96 Gunma Shorei Junior College of Welfare ē¾¤é¦¬ę¾å¶ŗē¦ē„‰ēŸ­ęœŸå¤§å­¦'),
(84759, 'https://ror.org/044cqdj35', 'en', 0, 'https://ror.org/044cqdj35 Mie Chukyo University äø‰é‡äø­äŗ¬å¤§å­¦'),
(84760, 'https://ror.org/04fmf8z66', 'no_lang_code', 0, 'https://ror.org/04fmf8z66 Mylan (Germany)'),
(84761, 'https://ror.org/024atcf19', 'en', 0, 'https://ror.org/024atcf19 UCL Australia'),
(84762, 'https://ror.org/035khj741', 'no_lang_code', 0, 'https://ror.org/035khj741 Seibo Jogakuin Junior College č–ęÆå„³å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(84763, 'https://ror.org/03jq8sq82', 'no_lang_code', 0, 'https://ror.org/03jq8sq82 Mylan (Sweden)'),
(84764, 'https://ror.org/00g5hz655', 'en', 0, 'https://ror.org/00g5hz655 Bunka Womens University Muroran Junior College ę–‡åŒ–å„³å­å¤§å­¦å®¤č˜­ēŸ­ęœŸå¤§å­¦'),
(84765, 'https://ror.org/045sjkt56', 'no_lang_code', 0, 'https://ror.org/045sjkt56 Mylan (Switzerland)'),
(84766, 'https://ror.org/00yr30950', 'en', 0, 'https://ror.org/00yr30950 Caritas Junior College ć‚«ćƒŖć‚æć‚¹å„³å­ēŸ­ęœŸå¤§å­¦'),
(84767, 'https://ror.org/05kzrmv33', 'en', 0, 'https://ror.org/05kzrmv33 Aichi Prefectural Cardiovascular Respiratory Disease Center ę„›ēŸ„ēœŒē«‹å¾Ŗē’°å™Øå‘¼åøå™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(84768, 'https://ror.org/01nvdnb36', 'en', 0, 'https://ror.org/01nvdnb36 Central European Institute of Technology'),
(84769, 'https://ror.org/034ymz395', 'en', 0, 'https://ror.org/034ymz395 Art Institute of New York'),
(84770, 'https://ror.org/02578qw11', 'en', 0, 'https://ror.org/02578qw11 Agence ExĆ©cutive pour les Consommateurs, la SantĆ©, l’agriculture et l’alimentation Consumers, Health, Agriculture and Food Executive Agency Exekutivagentur für Verbraucher, Gesundheit, Landwirtschaft und Lebensmittel'),
(84771, 'https://ror.org/024za3n32', 'pl', 0, 'https://ror.org/024za3n32 Instytut Biotechnologii i Antybiotyków'),
(84772, 'https://ror.org/0238t7y73', 'no_lang_code', 0, 'https://ror.org/0238t7y73 Sustainable Innovations (United States)'),
(84773, 'https://ror.org/03wnhdg91', 'no_lang_code', 0, 'https://ror.org/03wnhdg91 Takata (United States)');
INSERT INTO `rors` VALUES
(84774, 'https://ror.org/01rsp8958', 'pl', 0, 'https://ror.org/01rsp8958 Akademia Wychowania Fizycznego we Wrocławiu'),
(84775, 'https://ror.org/00csfmq14', 'no_lang_code', 0, 'https://ror.org/00csfmq14 Sematech (United States)'),
(84776, 'https://ror.org/0342vy561', 'en', 0, 'https://ror.org/0342vy561 Penn State Brandywine'),
(84777, 'https://ror.org/03zr1tg88', 'en', 0, 'https://ror.org/03zr1tg88 Ministry of Research, Innovation and Science'),
(84778, 'https://ror.org/00wadqy95', 'no_lang_code', 0, 'https://ror.org/00wadqy95 MVV Energie'),
(84779, 'https://ror.org/027jgnd92', 'en', 0, 'https://ror.org/027jgnd92 RIKEN Quantitative Biology Center'),
(84780, 'https://ror.org/003t7v050', 'en', 0, 'https://ror.org/003t7v050 Penn State Hazleton'),
(84781, 'https://ror.org/02fchmd43', 'no_lang_code', 0, 'https://ror.org/02fchmd43 Atmel (Germany)'),
(84782, 'https://ror.org/03fr60v89', 'no_lang_code', 0, 'https://ror.org/03fr60v89 Maney Publishing (United Kingdom)'),
(84783, 'https://ror.org/05wrnqx73', 'en', 0, 'https://ror.org/05wrnqx73 Ross University School of Medicine'),
(84784, 'https://ror.org/017w2jg69', 'en', 0, 'https://ror.org/017w2jg69 TB HIV Care Association'),
(84785, 'https://ror.org/03pjjj122', 'no_lang_code', 0, 'https://ror.org/03pjjj122 Genome Explorations (United States)'),
(84786, 'https://ror.org/01x1s0k88', 'no_lang_code', 0, 'https://ror.org/01x1s0k88 Terumo BCT (United States)'),
(84787, 'https://ror.org/03pc6j481', 'no_lang_code', 0, 'https://ror.org/03pc6j481 Medicines Company (India)'),
(84788, 'https://ror.org/02az3ec29', 'en', 0, 'https://ror.org/02az3ec29 Velikolukskaya State Agricultural Academy Š’ŠµŠ»ŠøŠŗŠ¾Š»ŃƒŠŗŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(84789, 'https://ror.org/01pr7q572', 'en', 0, 'https://ror.org/01pr7q572 Financialist'),
(84790, 'https://ror.org/01xe9ga30', 'no_lang_code', 0, 'https://ror.org/01xe9ga30 Saurer Schlafhorst (Czechia)'),
(84791, 'https://ror.org/04mvrfp94', 'no_lang_code', 0, 'https://ror.org/04mvrfp94 Oncor Electric Delivery (United States)'),
(84792, 'https://ror.org/05t3tea56', 'en', 0, 'https://ror.org/05t3tea56 Higher Administrative School of St.Peterburg''s Administration'),
(84793, 'https://ror.org/04402f517', 'en', 0, 'https://ror.org/04402f517 University of Nevada, Reno School of Medicine'),
(84794, 'https://ror.org/03e62d071', 'en', 0, 'https://ror.org/03e62d071 Oregon Health & Science University School of Medicine'),
(84795, 'https://ror.org/03szxk541', 'no_lang_code', 0, 'https://ror.org/03szxk541 Mentor Graphics (United Kingdom)'),
(84796, 'https://ror.org/04pchzt95', 'no_lang_code', 0, 'https://ror.org/04pchzt95 Bayer CropScience (Belgium)'),
(84797, 'https://ror.org/03tsam659', 'fr', 0, 'https://ror.org/03tsam659 Ɖcole nationale vĆ©tĆ©rinaire de Lyon'),
(84798, 'https://ror.org/046r2bw40', 'en', 0, 'https://ror.org/046r2bw40 Argosy University, Twin Cities'),
(84799, 'https://ror.org/0045wj822', 'sv', 0, 'https://ror.org/0045wj822 KƤrnsjukhuset i Skƶvde'),
(84800, 'https://ror.org/012qh3c75', 'en', 0, 'https://ror.org/012qh3c75 Benedictine University'),
(84801, 'https://ror.org/00490gx53', 'no_lang_code', 0, 'https://ror.org/00490gx53 Raufoss Fuel Systems (Norway)'),
(84802, 'https://ror.org/04ex4n033', 'en', 0, 'https://ror.org/04ex4n033 Gaston College'),
(84803, 'https://ror.org/03np9ae18', 'no_lang_code', 0, 'https://ror.org/03np9ae18 Lasergen (United States)'),
(84804, 'https://ror.org/02a28xf84', 'en', 0, 'https://ror.org/02a28xf84 College of International and Public Relations VysokĆ” Å”kola mezinĆ”rodnĆ­ch a veřejných vztahÅÆ Praha'),
(84805, 'https://ror.org/006408d78', 'en', 0, 'https://ror.org/006408d78 PinnacleHealth System'),
(84806, 'https://ror.org/04td6r087', 'no_lang_code', 0, 'https://ror.org/04td6r087 CareFusion'),
(84807, 'https://ror.org/05v1h9t74', 'en', 0, 'https://ror.org/05v1h9t74 Sint Anna Hospital'),
(84808, 'https://ror.org/036gxz473', 'no_lang_code', 0, 'https://ror.org/036gxz473 Eurovia (Czechia)'),
(84809, 'https://ror.org/00s4xd708', 'en', 0, 'https://ror.org/00s4xd708 Insight'),
(84810, 'https://ror.org/04atb5t73', 'en', 0, 'https://ror.org/04atb5t73 Danish Data Archives'),
(84811, 'https://ror.org/01exfvh31', 'en', 0, 'https://ror.org/01exfvh31 National Coalition of Hispanic Health and Human Services Organizations'),
(84812, 'https://ror.org/00gea6v35', 'no_lang_code', 0, 'https://ror.org/00gea6v35 Apotex (Hungary)'),
(84813, 'https://ror.org/032wnys85', 'en', 0, 'https://ror.org/032wnys85 Penn State Fayette'),
(84814, 'https://ror.org/00gs5mz83', 'en', 0, 'https://ror.org/00gs5mz83 Easter Seals Delaware & Marylands Eastern Shore'),
(84815, 'https://ror.org/03e8n7p36', 'no_lang_code', 0, 'https://ror.org/03e8n7p36 Mocon (United States)'),
(84816, 'https://ror.org/00g1za575', 'en', 0, 'https://ror.org/00g1za575 Ryazan State Radiotechnical University'),
(84817, 'https://ror.org/01czpyx75', 'no_lang_code', 0, 'https://ror.org/01czpyx75 Computational Industry Technologies (Norway)'),
(84818, 'https://ror.org/01kknzt55', 'no_lang_code', 0, 'https://ror.org/01kknzt55 Toyota Boshoku (Japan) ćƒˆćƒØć‚æē“”ē¹”ę Ŗå¼ä¼šē¤¾'),
(84819, 'https://ror.org/02txbkt46', 'cs', 0, 'https://ror.org/02txbkt46 VysokĆ” Skola Ekonomie a Managementu'),
(84820, 'https://ror.org/03xp1yc32', 'en', 0, 'https://ror.org/03xp1yc32 Golden Opportunities Foundation'),
(84821, 'https://ror.org/039mtgc03', 'en', 0, 'https://ror.org/039mtgc03 Finnish Geodetic Institute'),
(84822, 'https://ror.org/01ag3hp59', 'no_lang_code', 0, 'https://ror.org/01ag3hp59 DompƩ (Italy)'),
(84823, 'https://ror.org/02qrpey68', 'en', 0, 'https://ror.org/02qrpey68 Iraqi Institute of Ancient Culture ć‚¤ćƒ©ć‚Æå¤ä»£ę–‡åŒ–ē ”ē©¶ę‰€'),
(84824, 'https://ror.org/043kmeg51', 'no_lang_code', 0, 'https://ror.org/043kmeg51 Tadiran Batteries (Israel)'),
(84825, 'https://ror.org/02erzj806', 'en', 0, 'https://ror.org/02erzj806 Epsom Hospital'),
(84826, 'https://ror.org/051wksk64', 'en', 0, 'https://ror.org/051wksk64 Novosibirsk State Academy of Architecture and Art'),
(84827, 'https://ror.org/04tqgqh22', 'no_lang_code', 1, 'https://ror.org/04tqgqh22 Biosense Webster (Israel)'),
(84828, 'https://ror.org/01av28581', 'en', 0, 'https://ror.org/01av28581 United States Agency for International Development'),
(84829, 'https://ror.org/05rmdzg11', 'no_lang_code', 0, 'https://ror.org/05rmdzg11 MEL Chemicals (United Kingdom)'),
(84830, 'https://ror.org/03xafbp74', 'en', 0, 'https://ror.org/03xafbp74 AndrĆ”s Pető College Š¤Š°ŠŗŃƒŠ»ŃŒŃ‚ŠµŃ‚ ŠŠ½Š“Ń€Š°Ńˆ ŠŸŠµŃ‚Ń‘'),
(84831, 'https://ror.org/01dh2d768', 'no_lang_code', 0, 'https://ror.org/01dh2d768 Solulink (United States)'),
(84832, 'https://ror.org/01g3gcw30', 'no_lang_code', 0, 'https://ror.org/01g3gcw30 Exiqon (Denmark)'),
(84833, 'https://ror.org/00qk36618', 'en', 0, 'https://ror.org/00qk36618 American Sentinel University'),
(84834, 'https://ror.org/00c9xeh95', 'en', 0, 'https://ror.org/00c9xeh95 National Agricultural Research Center for Tohoku Region'),
(84835, 'https://ror.org/034ys6045', 'en', 0, 'https://ror.org/034ys6045 MRC Anatomical Neuropharmacology Unit'),
(84836, 'https://ror.org/01ehzyn80', 'en', 0, 'https://ror.org/01ehzyn80 Combined Military Hospital Rawalpindi'),
(84837, 'https://ror.org/02qjcgs23', 'no_lang_code', 0, 'https://ror.org/02qjcgs23 MSD Animal Health (Germany)'),
(84838, 'https://ror.org/03rjzpz25', 'en', 0, 'https://ror.org/03rjzpz25 Community Service Society of New York'),
(84839, 'https://ror.org/02mfamy34', 'en', 0, 'https://ror.org/02mfamy34 Agriculture Research Center'),
(84840, 'https://ror.org/0210rpx19', 'en', 0, 'https://ror.org/0210rpx19 Campden and Chorleywood Food Research Association'),
(84841, 'https://ror.org/049h99302', 'en', 0, 'https://ror.org/049h99302 Wassit University'),
(84842, 'https://ror.org/025g67p47', 'no_lang_code', 0, 'https://ror.org/025g67p47 Primity (United States)'),
(84843, 'https://ror.org/04w26dy35', 'en', 0, 'https://ror.org/04w26dy35 Haut Commissariat des Nations unies pour les rƩfugiƩs United Nations High Commissioner for Refugees'),
(84844, 'https://ror.org/03ew5kf55', 'fr', 0, 'https://ror.org/03ew5kf55 Haute Ɖcole de Travail Social et de la SantĆ©'),
(84845, 'https://ror.org/03w1e7t43', 'en', 0, 'https://ror.org/03w1e7t43 Cold Laser Therapy Center'),
(84846, 'https://ror.org/05ep0vm61', 'en', 0, 'https://ror.org/05ep0vm61 National Center for Genome Resources'),
(84847, 'https://ror.org/0405eh275', 'en', 0, 'https://ror.org/0405eh275 Kamenets Podolsky National University'),
(84848, 'https://ror.org/00b47n070', 'no_lang_code', 0, 'https://ror.org/00b47n070 Computer Sciences Corporation (Australia)'),
(84849, 'https://ror.org/04rp21r95', 'en', 0, 'https://ror.org/04rp21r95 Long Island University at Riverhead'),
(84850, 'https://ror.org/04s4kmz35', 'no_lang_code', 0, 'https://ror.org/04s4kmz35 Preactor (United Kingdom)'),
(84851, 'https://ror.org/02nt0wk40', 'no_lang_code', 0, 'https://ror.org/02nt0wk40 Target (United Kingdom)'),
(84852, 'https://ror.org/051fmzw52', 'en', 0, 'https://ror.org/051fmzw52 Argosy University'),
(84853, 'https://ror.org/03gmaqz91', 'en', 0, 'https://ror.org/03gmaqz91 International Crops Research Institute for the Semi-Arid Tropics'),
(84854, 'https://ror.org/05g99ca14', 'en', 0, 'https://ror.org/05g99ca14 Cook For Your Life'),
(84855, 'https://ror.org/05dc72c53', 'en', 0, 'https://ror.org/05dc72c53 United Nations Office for Project Services'),
(84856, 'https://ror.org/03brv5m83', 'no_lang_code', 0, 'https://ror.org/03brv5m83 Dow Wolff Cellulosics (United States)'),
(84857, 'https://ror.org/03cjfe202', 'en', 0, 'https://ror.org/03cjfe202 Hokkaido Red Cross Blood Center åŒ—ęµ·é“čµ¤åå­—č”€ę¶²ć‚»ćƒ³ć‚æćƒ¼'),
(84858, 'https://ror.org/05jfb3f51', 'de', 0, 'https://ror.org/05jfb3f51 Poliklinik für Kieferorthopädie'),
(84859, 'https://ror.org/05m6hcf21', 'en', 0, 'https://ror.org/05m6hcf21 Susan G Komen Southern Arizona'),
(84860, 'https://ror.org/058kq2778', 'en', 0, 'https://ror.org/058kq2778 South University'),
(84861, 'https://ror.org/05awt9555', 'en', 0, 'https://ror.org/05awt9555 Riga Teacher Training and Educational Management Academy'),
(84862, 'https://ror.org/05969hq41', 'no_lang_code', 0, 'https://ror.org/05969hq41 Bard (Ireland)'),
(84863, 'https://ror.org/031f26978', 'no_lang_code', 0, 'https://ror.org/031f26978 Leica Biosystems (United States)'),
(84864, 'https://ror.org/03z013854', 'en', 0, 'https://ror.org/03z013854 Underwood Memorial Hospital'),
(84865, 'https://ror.org/02bj0at40', 'en', 0, 'https://ror.org/02bj0at40 General Jerzy Ziętek Silesian School of Management'),
(84866, 'https://ror.org/0073t6196', 'en', 0, 'https://ror.org/0073t6196 Kawasaki Medical University'),
(84867, 'https://ror.org/05bxpks10', 'en', 0, 'https://ror.org/05bxpks10 European University of Applied Sciences EuropƤische Fachhochschule'),
(84868, 'https://ror.org/00mhe6140', 'en', 0, 'https://ror.org/00mhe6140 International University of Business and New Technologies Ярославский Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ бизнеса Šø новых технологий'),
(84869, 'https://ror.org/034wtnz85', 'de', 0, 'https://ror.org/034wtnz85 LehrkrankenhƤuser'),
(84870, 'https://ror.org/03pery595', 'en', 0, 'https://ror.org/03pery595 Structural Genomics Consortium'),
(84871, 'https://ror.org/05m14sk15', 'en', 0, 'https://ror.org/05m14sk15 Leningrad State University named after AS Pushkin ЛенинграГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š”. Пушкина'),
(84872, 'https://ror.org/02pt3tp10', 'no_lang_code', 0, 'https://ror.org/02pt3tp10 United Technologies (Canada)'),
(84873, 'https://ror.org/03vj5kk45', 'en', 0, 'https://ror.org/03vj5kk45 Office of Public and Intergovernmental Affairs'),
(84874, 'https://ror.org/03695pz98', 'no_lang_code', 0, 'https://ror.org/03695pz98 Scientific Systems (United States)'),
(84875, 'https://ror.org/01trzn684', 'no_lang_code', 0, 'https://ror.org/01trzn684 World Agroforestry Centre'),
(84876, 'https://ror.org/031kbv921', 'en', 0, 'https://ror.org/031kbv921 GBF German Research Centre for Biotechnology Helmholtz-Gemeinschaft Deutscher Forschungszentren'),
(84877, 'https://ror.org/01dwtyk53', 'no_lang_code', 0, 'https://ror.org/01dwtyk53 ARIAD Pharmaceuticals (United States)'),
(84878, 'https://ror.org/00ec27p14', 'en', 0, 'https://ror.org/00ec27p14 Argosy University'),
(84879, 'https://ror.org/04bewwb19', 'en', 0, 'https://ror.org/04bewwb19 Bassett Medical Center'),
(84880, 'https://ror.org/02p5va373', 'en', 0, 'https://ror.org/02p5va373 Perm State Pedagogical University'),
(84881, 'https://ror.org/03d8xgs19', 'pl', 0, 'https://ror.org/03d8xgs19 Szkoła Wyższa Prawa i Dyplomacji w Gdyni'),
(84882, 'https://ror.org/053mh5539', 'no_lang_code', 0, 'https://ror.org/053mh5539 Humigen'),
(84883, 'https://ror.org/03ps5d564', 'en', 0, 'https://ror.org/03ps5d564 Boston University School of Medicine'),
(84884, 'https://ror.org/01x7wtx19', 'no_lang_code', 0, 'https://ror.org/01x7wtx19 Regienov Groupement D Interet Economique'),
(84885, 'https://ror.org/01spcca44', 'en', 0, 'https://ror.org/01spcca44 University of Phoenix'),
(84886, 'https://ror.org/01y65xm17', 'en', 0, 'https://ror.org/01y65xm17 La Source'),
(84887, 'https://ror.org/03c9dyj02', 'no_lang_code', 0, 'https://ror.org/03c9dyj02 Airgas (United States)'),
(84888, 'https://ror.org/026zgc260', 'en', 0, 'https://ror.org/026zgc260 North Cumbria University Hospitals NHS Trust'),
(84889, 'https://ror.org/01hcmnv56', 'no_lang_code', 0, 'https://ror.org/01hcmnv56 Medicines Company (United Kingdom)'),
(84890, 'https://ror.org/03p8xy431', 'no_lang_code', 0, 'https://ror.org/03p8xy431 FEI (Germany)'),
(84891, 'https://ror.org/02x13r926', 'en', 0, 'https://ror.org/02x13r926 Jining Medical College'),
(84892, 'https://ror.org/03c1tt715', 'no_lang_code', 0, 'https://ror.org/03c1tt715 Strafica (Finland)'),
(84893, 'https://ror.org/004w1f033', 'no_lang_code', 0, 'https://ror.org/004w1f033 Aptiv (United States)'),
(84894, 'https://ror.org/035z7nm42', 'en', 0, 'https://ror.org/035z7nm42 Shionogi Institute For Medical Science'),
(84895, 'https://ror.org/01cb78y42', 'es', 0, 'https://ror.org/01cb78y42 Universidad Simón Bolívar'),
(84896, 'https://ror.org/013ma1t15', 'no_lang_code', 0, 'https://ror.org/013ma1t15 Leica Microsystems (United Kingdom)'),
(84897, 'https://ror.org/00snx7262', 'en', 0, 'https://ror.org/00snx7262 Indian Institute for Human Settlemnts'),
(84898, 'https://ror.org/00kxfe361', 'fr', 0, 'https://ror.org/00kxfe361 Laboratoire de Neurobiologie & DƩveloppement'),
(84899, 'https://ror.org/02h4kvn10', 'en', 0, 'https://ror.org/02h4kvn10 Organisation for Economic Co-operation and Development'),
(84900, 'https://ror.org/00dw1pp06', 'no_lang_code', 0, 'https://ror.org/00dw1pp06 Iveco (United Kingdom)'),
(84901, 'https://ror.org/01edb2h81', 'no_lang_code', 0, 'https://ror.org/01edb2h81 Leica (United Kingdom)'),
(84902, 'https://ror.org/03n7gaq84', 'en', 0, 'https://ror.org/03n7gaq84 Illawarra Area Health Service'),
(84903, 'https://ror.org/01sxfwq10', 'en', 0, 'https://ror.org/01sxfwq10 Institute of Cellular Biology and Pathology'),
(84904, 'https://ror.org/052r2q311', 'en', 0, 'https://ror.org/052r2q311 Texas Tech University Health Sciences Center'),
(84905, 'https://ror.org/0390abe49', 'no_lang_code', 0, 'https://ror.org/0390abe49 Wiener Linien'),
(84906, 'https://ror.org/05yh1yv02', 'uz', 0, 'https://ror.org/05yh1yv02 Toshkent Davlat Pedagogika Universiteti'),
(84907, 'https://ror.org/00pxn1389', 'en', 0, 'https://ror.org/00pxn1389 Angiogenesis and Cancer Microenvironment Laboratory AngiogenĆØse et laboratoire sur le microenvironnement du cancer'),
(84908, 'https://ror.org/02wg5z273', 'en', 0, 'https://ror.org/02wg5z273 Parkside School'),
(84909, 'https://ror.org/0434ws235', 'en', 0, 'https://ror.org/0434ws235 United Nations Educational, Scientific and Cultural Organization'),
(84910, 'https://ror.org/02fcxa359', 'fr', 0, 'https://ror.org/02fcxa359 MinistĆØre de l''Education Nationale and de la Formation Professionnelle'),
(84911, 'https://ror.org/0057xr271', 'de', 0, 'https://ror.org/0057xr271 Kantonsspital Bruderholz'),
(84912, 'https://ror.org/056pard58', 'no_lang_code', 0, 'https://ror.org/056pard58 Pratt & Whitney Canada (Canada)'),
(84913, 'https://ror.org/02az7s592', 'no_lang_code', 0, 'https://ror.org/02az7s592 Sand9 (United States)'),
(84914, 'https://ror.org/01ec5nx12', 'en', 0, 'https://ror.org/01ec5nx12 Cellular Biology and Neurobiology Institute Istituto di Biologia Cellulare e Neurobiologia'),
(84915, 'https://ror.org/0521ydf07', 'no_lang_code', 0, 'https://ror.org/0521ydf07 Esko (Germany)'),
(84916, 'https://ror.org/04zvr0529', 'en', 0, 'https://ror.org/04zvr0529 University of Pittsburgh School of Medicine'),
(84917, 'https://ror.org/05qqvbf40', 'en', 0, 'https://ror.org/05qqvbf40 Santa Barbara and Ventura Colleges of Law'),
(84918, 'https://ror.org/04sq3js80', 'no_lang_code', 0, 'https://ror.org/04sq3js80 Kraft (Canada)'),
(84919, 'https://ror.org/016jz8p59', 'no_lang_code', 0, 'https://ror.org/016jz8p59 Axio Research (United States)'),
(84920, 'https://ror.org/02ne3sf79', 'en', 0, 'https://ror.org/02ne3sf79 Elabuga State Pedagogical University'),
(84921, 'https://ror.org/05x0tw854', 'en', 0, 'https://ror.org/05x0tw854 Adygeya State University АГыгейский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(84922, 'https://ror.org/04k0yvf43', 'no_lang_code', 0, 'https://ror.org/04k0yvf43 Catacel (United States)'),
(84923, 'https://ror.org/03c4fdd85', 'en', 0, 'https://ror.org/03c4fdd85 Saint Petersburg Art and Industry Academy Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š¾-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени А.Š›. Штиглица'),
(84924, 'https://ror.org/05grey547', 'no_lang_code', 0, 'https://ror.org/05grey547 Hartmann & Braun (Germany)'),
(84925, 'https://ror.org/038tk1e03', 'en', 0, 'https://ror.org/038tk1e03 Miami University Hamilton'),
(84926, 'https://ror.org/05ge9vb05', 'en', 0, 'https://ror.org/05ge9vb05 Consultative Group on International Agricultural Research'),
(84927, 'https://ror.org/04h1jqe39', 'no_lang_code', 0, 'https://ror.org/04h1jqe39 Alcatel-Lucent (Canada)'),
(84928, 'https://ror.org/04t7jhw56', 'no_lang_code', 0, 'https://ror.org/04t7jhw56 Sucampo (United States)'),
(84929, 'https://ror.org/03djt5w55', 'no_lang_code', 0, 'https://ror.org/03djt5w55 Ahold (Netherlands)'),
(84930, 'https://ror.org/02a8yh854', 'da', 0, 'https://ror.org/02a8yh854 Sygehus Vendsyssel'),
(84931, 'https://ror.org/00cwtp696', 'no_lang_code', 0, 'https://ror.org/00cwtp696 Bard (France)'),
(84932, 'https://ror.org/019v69p80', 'en', 0, 'https://ror.org/019v69p80 World Agroforestry Centre'),
(84933, 'https://ror.org/0219bnd39', 'no_lang_code', 0, 'https://ror.org/0219bnd39 Lorillard (United States)'),
(84934, 'https://ror.org/05k94fs49', 'en', 0, 'https://ror.org/05k94fs49 Fraunhofer Center for Molecular Biotechnology'),
(84935, 'https://ror.org/024850w61', 'no_lang_code', 0, 'https://ror.org/024850w61 Alcatel-Lucent (France)'),
(84936, 'https://ror.org/04jr9fq67', 'no_lang_code', 0, 'https://ror.org/04jr9fq67 Rockwell Collins (United Kingdom)'),
(84937, 'https://ror.org/0314d3054', 'no_lang_code', 0, 'https://ror.org/0314d3054 The University Press Universitetsforlaget (Norway)'),
(84938, 'https://ror.org/00zkxe732', 'no_lang_code', 0, 'https://ror.org/00zkxe732 Silicon Graphics International (United Kingdom)'),
(84939, 'https://ror.org/013xg2384', 'no_lang_code', 0, 'https://ror.org/013xg2384 Aker BioMarine (Norway)'),
(84940, 'https://ror.org/01vj3ps51', 'no_lang_code', 0, 'https://ror.org/01vj3ps51 Kolyada Theater ŠšŠ¾Š»ŃŠ“Š°-театр'),
(84941, 'https://ror.org/01dkryv61', 'no_lang_code', 0, 'https://ror.org/01dkryv61 Anite (United Kingdom)'),
(84942, 'https://ror.org/036rmcm53', 'en', 0, 'https://ror.org/036rmcm53 Centre for Applied Science and Technology'),
(84943, 'https://ror.org/03k037750', 'no_lang_code', 0, 'https://ror.org/03k037750 Myriad Rules-Based Medicine (United States)'),
(84944, 'https://ror.org/00r35g004', 'no_lang_code', 0, 'https://ror.org/00r35g004 Calsonic Kansei (United Kingdom)'),
(84945, 'https://ror.org/03m5cqr70', 'pl', 0, 'https://ror.org/03m5cqr70 Akademia Wychowania Fizycznego im. Bronisława Czecha w Krakowie'),
(84946, 'https://ror.org/02szqqf11', 'en', 0, 'https://ror.org/02szqqf11 Stavropol State Medical University'),
(84947, 'https://ror.org/03he3dk36', 'de', 0, 'https://ror.org/03he3dk36 Klinik für Hautkrankheiten'),
(84948, 'https://ror.org/056w0wx18', 'pt', 0, 'https://ror.org/056w0wx18 Escola Superior ArtĆ­stica do Porto'),
(84949, 'https://ror.org/04tmabm35', 'no_lang_code', 0, 'https://ror.org/04tmabm35 The Medicines Company (Canada)'),
(84950, 'https://ror.org/00afkkv13', 'no_lang_code', 0, 'https://ror.org/00afkkv13 Iveco (Italy)'),
(84951, 'https://ror.org/01a2gv571', 'no_lang_code', 0, 'https://ror.org/01a2gv571 Balfour Beatty Rail (United Kingdom)'),
(84952, 'https://ror.org/04m61gs59', 'no_lang_code', 0, 'https://ror.org/04m61gs59 General Cable (United States)'),
(84953, 'https://ror.org/05hphhy26', 'en', 0, 'https://ror.org/05hphhy26 University of Central Asia'),
(84954, 'https://ror.org/00ca0ms76', 'es', 0, 'https://ror.org/00ca0ms76 Universidad Andina Simón Bolívar'),
(84955, 'https://ror.org/015j3e126', 'no_lang_code', 0, 'https://ror.org/015j3e126 COMAT Composite Materials (Germany)'),
(84956, 'https://ror.org/02w2j4197', 'it', 0, 'https://ror.org/02w2j4197 Istituto Nazionale della Nutrizione'),
(84957, 'https://ror.org/01efk9988', 'en', 0, 'https://ror.org/01efk9988 Exploit Technologies Pte Ltd'),
(84958, 'https://ror.org/036wvdb36', 'en', 0, 'https://ror.org/036wvdb36 Darwin College'),
(84959, 'https://ror.org/01c4f5y14', 'en', 0, 'https://ror.org/01c4f5y14 Ohio History Connection'),
(84960, 'https://ror.org/05dwmjc88', 'en', 0, 'https://ror.org/05dwmjc88 Sungsan Hyodo Graduate School č–å±±å­å¤§å­øé™¢å¤§å­øę•Ž'),
(84961, 'https://ror.org/03w8atn36', 'en', 0, 'https://ror.org/03w8atn36 Bamboo Research Center å›½å®¶ęž—äøšå’Œč‰åŽŸå±€ē«¹å­ē ”ē©¶å¼€å‘äø­åæƒ'),
(84962, 'https://ror.org/01h4gpk06', 'de', 0, 'https://ror.org/01h4gpk06 St.Anna Kinderspital'),
(84963, 'https://ror.org/05fnm6571', 'no_lang_code', 0, 'https://ror.org/05fnm6571 Femtolasers Produktions (Austria)'),
(84964, 'https://ror.org/05f2c9c32', 'no_lang_code', 0, 'https://ror.org/05f2c9c32 Gwent Electronic Materials (United Kingdom)'),
(84965, 'https://ror.org/027c1kk44', 'en', 0, 'https://ror.org/027c1kk44 Kharkov State Zooveterinary Academy'),
(84966, 'https://ror.org/03wcqr438', 'en', 0, 'https://ror.org/03wcqr438 South West Public Health Observatory'),
(84967, 'https://ror.org/0060avh92', 'en', 1, 'https://ror.org/0060avh92 Sutter Health'),
(84968, 'https://ror.org/01w7dq902', 'no_lang_code', 0, 'https://ror.org/01w7dq902 Vyzkumny Ustav Kovu (Czechia)'),
(84969, 'https://ror.org/044rcds19', 'en', 0, 'https://ror.org/044rcds19 Argosy University'),
(84970, 'https://ror.org/00hwfqh10', 'en', 0, 'https://ror.org/00hwfqh10 Harbin Institute of Technology Shenzhen Graduate School å“ˆå°”ę»Øå·„äøšå¤§å­¦ę·±åœ³ē ”ē©¶ē”Ÿé™¢'),
(84971, 'https://ror.org/050ssa348', 'no_lang_code', 0, 'https://ror.org/050ssa348 Cavendish University Zambi'),
(84972, 'https://ror.org/052cyyv97', 'en', 0, 'https://ror.org/052cyyv97 Institute of Health Sciences 偄康科学研究所'),
(84973, 'https://ror.org/00h4dcd09', 'no_lang_code', 0, 'https://ror.org/00h4dcd09 Shire (Canada)'),
(84974, 'https://ror.org/02615b809', 'no_lang_code', 0, 'https://ror.org/02615b809 Intelligent Bio-Systems (United States)'),
(84975, 'https://ror.org/022ptjf30', 'en', 0, 'https://ror.org/022ptjf30 International Center for Agricultural Research in the Dry Areas'),
(84976, 'https://ror.org/02bbved84', 'en', 0, 'https://ror.org/02bbved84 wanage Community Hospital'),
(84977, 'https://ror.org/0312ed861', 'no_lang_code', 0, 'https://ror.org/0312ed861 UKK Institute'),
(84978, 'https://ror.org/03njmw214', 'no_lang_code', 0, 'https://ror.org/03njmw214 Rockwell (United States)'),
(84979, 'https://ror.org/0034qmh92', 'en', 0, 'https://ror.org/0034qmh92 Svey Rieng University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžŸįŸ’įžœįž¶įž™įžšįŸ€įž„'),
(84980, 'https://ror.org/04rpbvd54', 'no_lang_code', 0, 'https://ror.org/04rpbvd54 Oclaro Technology (United Kingdom)'),
(84981, 'https://ror.org/05b50et39', 'en', 0, 'https://ror.org/05b50et39 Argosy University'),
(84982, 'https://ror.org/031pjfg83', 'no_lang_code', 0, 'https://ror.org/031pjfg83 Bard (United Kingdom)'),
(84983, 'https://ror.org/04jnprq39', 'en', 0, 'https://ror.org/04jnprq39 University of Minnesota Medical School'),
(84984, 'https://ror.org/0167n6v98', 'fr', 0, 'https://ror.org/0167n6v98 Théâtre de la Tempête'),
(84985, 'https://ror.org/04ya7ky81', 'no_lang_code', 0, 'https://ror.org/04ya7ky81 Anacor Pharmaceuticals (United States)'),
(84986, 'https://ror.org/03m2s7186', 'no_lang_code', 0, 'https://ror.org/03m2s7186 Alcatel-Lucent (China)'),
(84987, 'https://ror.org/00m265722', 'en', 0, 'https://ror.org/00m265722 Benefis Hospital'),
(84988, 'https://ror.org/04ccf7p05', 'en', 0, 'https://ror.org/04ccf7p05 National University of Civil Protection of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń†ŠøŠ²Ń–Š»ŃŒŠ½Š¾Š³Š¾ Š·Š°Ń…ŠøŃŃ‚Ńƒ України'),
(84989, 'https://ror.org/03hegz430', 'en', 0, 'https://ror.org/03hegz430 All Talent Agency'),
(84990, 'https://ror.org/02b4haj46', 'en', 0, 'https://ror.org/02b4haj46 University of Louisville Foundation'),
(84991, 'https://ror.org/04qp5sq42', 'en', 0, 'https://ror.org/04qp5sq42 Russian State University named after AN Kosygin'),
(84992, 'https://ror.org/04vddtt23', 'en', 0, 'https://ror.org/04vddtt23 Fukuoka Junior College of Social Work and Child Education ē¦å²”ēœŒē¤¾ä¼šäæč‚²ēŸ­ęœŸå¤§å­¦'),
(84993, 'https://ror.org/03acmk758', 'no_lang_code', 0, 'https://ror.org/03acmk758 Reinnervate (United Kingdom)'),
(84994, 'https://ror.org/056bn1c87', 'en', 0, 'https://ror.org/056bn1c87 Art Institute of Indianapolis'),
(84995, 'https://ror.org/009z15m35', 'en', 0, 'https://ror.org/009z15m35 South University Savannah'),
(84996, 'https://ror.org/041b9ak66', 'en', 0, 'https://ror.org/041b9ak66 Shenzhen Bao''an Maternal And Child Health Hospital'),
(84997, 'https://ror.org/01hjy8d50', 'no_lang_code', 0, 'https://ror.org/01hjy8d50 Teledyne RD Instruments (United States)'),
(84998, 'https://ror.org/00hjjjh46', 'no_lang_code', 0, 'https://ror.org/00hjjjh46 Rubicon Genomics (United States)'),
(84999, 'https://ror.org/01fxsh762', 'no_lang_code', 0, 'https://ror.org/01fxsh762 Sharp (United States)'),
(85000, 'https://ror.org/03p05h867', 'no_lang_code', 0, 'https://ror.org/03p05h867 Italdesign Giugiaro (Italy)'),
(85001, 'https://ror.org/026r21296', 'en', 0, 'https://ror.org/026r21296 United Nations Population Fund'),
(85002, 'https://ror.org/01eqxe096', 'no_lang_code', 0, 'https://ror.org/01eqxe096 Mast Therapeutics (United States)'),
(85003, 'https://ror.org/04vhygz79', 'en', 0, 'https://ror.org/04vhygz79 World Bank'),
(85004, 'https://ror.org/01y2paj41', 'en', 0, 'https://ror.org/01y2paj41 United Nations Development Programme'),
(85005, 'https://ror.org/02xhaj844', 'no_lang_code', 0, 'https://ror.org/02xhaj844 Chunichi Shimbun'),
(85006, 'https://ror.org/02qtynj87', 'en', 0, 'https://ror.org/02qtynj87 WEGEMT Organisation'),
(85007, 'https://ror.org/01xm29g08', 'en', 0, 'https://ror.org/01xm29g08 Escola Guignard Guignard University of Art of Minas Gerais'),
(85008, 'https://ror.org/02spzyy34', 'en', 0, 'https://ror.org/02spzyy34 Universidad de Oregón University of Oregon'),
(85009, 'https://ror.org/01yebge64', 'en', 0, 'https://ror.org/01yebge64 Alliant International University'),
(85010, 'https://ror.org/0355ntm61', 'en', 0, 'https://ror.org/0355ntm61 Avila College'),
(85011, 'https://ror.org/039k0q809', 'no_lang_code', 0, 'https://ror.org/039k0q809 Nanosphere (United States)'),
(85012, 'https://ror.org/05ghxfg04', 'fr', 0, 'https://ror.org/05ghxfg04 HƓpital Tarnier-Cochin'),
(85013, 'https://ror.org/02awacs50', 'no_lang_code', 0, 'https://ror.org/02awacs50 Holcim (Switzerland)'),
(85014, 'https://ror.org/035r0vx98', 'en', 0, 'https://ror.org/035r0vx98 Texas Tech University'),
(85015, 'https://ror.org/05sxqw262', 'no_lang_code', 0, 'https://ror.org/05sxqw262 LaVision BioTec (Germany)'),
(85016, 'https://ror.org/02j55tf03', 'no_lang_code', 0, 'https://ror.org/02j55tf03 Stratatech Corporation'),
(85017, 'https://ror.org/023e4df35', 'en', 0, 'https://ror.org/023e4df35 Brookwood Medical Center'),
(85018, 'https://ror.org/03gbp0d20', 'en', 0, 'https://ror.org/03gbp0d20 University of Wisconsin–Marshfield Wood County'),
(85019, 'https://ror.org/02w0cdv19', 'en', 0, 'https://ror.org/02w0cdv19 China Academy of Telecommunication Research å·„äøšå’Œäæ”ęÆåŒ–éƒØē”µäæ”ē ”ē©¶é™¢'),
(85020, 'https://ror.org/049y19z73', 'en', 0, 'https://ror.org/049y19z73 Japanese Red Cross Musashino Junior College Of Nursing ę—„ęœ¬čµ¤åå­—ę­¦č”µé‡ŽēŸ­ęœŸå¤§å­¦'),
(85021, 'https://ror.org/05vtwzg82', 'en', 0, 'https://ror.org/05vtwzg82 Penn State Wilkes-Barre'),
(85022, 'https://ror.org/0560grr96', 'no_lang_code', 0, 'https://ror.org/0560grr96 Sigma-Aldrich (Canada)'),
(85023, 'https://ror.org/01rw86c52', 'no_lang_code', 0, 'https://ror.org/01rw86c52 NPS Allelix (Canada)'),
(85024, 'https://ror.org/02qdtd855', 'en', 0, 'https://ror.org/02qdtd855 Penn State Abington'),
(85025, 'https://ror.org/033k6n428', 'en', 0, 'https://ror.org/033k6n428 General Hospital Nice Piraeus Saint Panteleimon'),
(85026, 'https://ror.org/03097jc32', 'en', 0, 'https://ror.org/03097jc32 United Nations Population Fund'),
(85027, 'https://ror.org/01vh3ed25', 'no_lang_code', 0, 'https://ror.org/01vh3ed25 Cameron (United States)'),
(85028, 'https://ror.org/02kbr0451', 'en', 0, 'https://ror.org/02kbr0451 Liberators University'),
(85029, 'https://ror.org/011eb8m75', 'en', 0, 'https://ror.org/011eb8m75 Nagoya Keizai University Junior College'),
(85030, 'https://ror.org/00sfs5584', 'en', 0, 'https://ror.org/00sfs5584 Academy of Labor and Social Relations Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ филиал АкаГемии Ń‚Ń€ŃƒŠ“Š° Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(85031, 'https://ror.org/05yjc9b47', 'pl', 0, 'https://ror.org/05yjc9b47 Wyższa Szkoła Humanistyczno-Ekonomiczna we Włocławku'),
(85032, 'https://ror.org/01mt4sd98', 'no_lang_code', 0, 'https://ror.org/01mt4sd98 Foster Wheeler (Finland)'),
(85033, 'https://ror.org/05raz7j17', 'no_lang_code', 0, 'https://ror.org/05raz7j17 GE Renewable Energy (Germany)'),
(85034, 'https://ror.org/007gswz19', 'en', 0, 'https://ror.org/007gswz19 University of Sumatera'),
(85035, 'https://ror.org/03dnbdf75', 'no_lang_code', 0, 'https://ror.org/03dnbdf75 Areva (United Kingdom)'),
(85036, 'https://ror.org/025bx1864', 'en', 0, 'https://ror.org/025bx1864 United Nations Population Fund'),
(85037, 'https://ror.org/03q0rwf65', 'no_lang_code', 0, 'https://ror.org/03q0rwf65 Applied Nanotech Holdings (United States)'),
(85038, 'https://ror.org/03srxkh15', 'no_lang_code', 0, 'https://ror.org/03srxkh15 Renishaw Diagnostics (United Kingdom)'),
(85039, 'https://ror.org/034paap41', 'no_lang_code', 0, 'https://ror.org/034paap41 Selex ES (Germany)'),
(85040, 'https://ror.org/033nwpd38', 'en', 0, 'https://ror.org/033nwpd38 Tokyo Women''s Junior College of Physical Education ę±äŗ¬å„³å­ä½“č‚²ēŸ­ęœŸå¤§å­¦'),
(85041, 'https://ror.org/00gg4qv65', 'no_lang_code', 0, 'https://ror.org/00gg4qv65 Cytec (Austria)'),
(85042, 'https://ror.org/01p53ys29', 'no_lang_code', 0, 'https://ror.org/01p53ys29 Scientific Systems Company (United States)'),
(85043, 'https://ror.org/001n0xs04', 'en', 0, 'https://ror.org/001n0xs04 Northland Community and Technical College'),
(85044, 'https://ror.org/01xjczb63', 'en', 0, 'https://ror.org/01xjczb63 Texas A&M Health Science Center'),
(85045, 'https://ror.org/044r1dj76', 'en', 0, 'https://ror.org/044r1dj76 Food and Agriculture Organization of the United Nations'),
(85046, 'https://ror.org/02qd6xe92', 'no_lang_code', 0, 'https://ror.org/02qd6xe92 Shire (Belgium)'),
(85047, 'https://ror.org/00sz76c61', 'no_lang_code', 0, 'https://ror.org/00sz76c61 Centro Elettrotecnico Sperimentale Italiano (Germany)'),
(85048, 'https://ror.org/04ffxt064', 'en', 0, 'https://ror.org/04ffxt064 Russian State University of Trade and Economics'),
(85049, 'https://ror.org/05xjqrq08', 'no_lang_code', 0, 'https://ror.org/05xjqrq08 Carlo Gavazzi (Italy)'),
(85050, 'https://ror.org/014pykh14', 'no_lang_code', 0, 'https://ror.org/014pykh14 Zettlex (United Kingdom)'),
(85051, 'https://ror.org/00x6hme34', 'no_lang_code', 0, 'https://ror.org/00x6hme34 MƩrieux NutriSciences (France)'),
(85052, 'https://ror.org/03kfvmt32', 'en', 0, 'https://ror.org/03kfvmt32 Hospital HƩdi Chaker of Sfax'),
(85053, 'https://ror.org/01r9n7c25', 'no_lang_code', 0, 'https://ror.org/01r9n7c25 Alta (Italy)'),
(85054, 'https://ror.org/03bnb7926', 'en', 0, 'https://ror.org/03bnb7926 Johns Hopkins Center for Communication Programs'),
(85055, 'https://ror.org/00esm8r26', 'no_lang_code', 0, 'https://ror.org/00esm8r26 Controls and Data Services (United Kingdom)'),
(85056, 'https://ror.org/05q32wc29', 'no_lang_code', 0, 'https://ror.org/05q32wc29 UTC Aerospace Systems (France)'),
(85057, 'https://ror.org/01mshqq40', 'no_lang_code', 0, 'https://ror.org/01mshqq40 MAN (Germany)'),
(85058, 'https://ror.org/00zcwgt52', 'en', 0, 'https://ror.org/00zcwgt52 Pierce College'),
(85059, 'https://ror.org/01hxnkc79', 'no_lang_code', 0, 'https://ror.org/01hxnkc79 Molecular NeuroImaging (United States)'),
(85060, 'https://ror.org/048ja2n45', 'fr', 0, 'https://ror.org/048ja2n45 Haute Ɖcole de SantĆ© Vaud'),
(85061, 'https://ror.org/05vs3jk79', 'en', 0, 'https://ror.org/05vs3jk79 Qatar Biomedical Research Institute'),
(85062, 'https://ror.org/03w9qta54', 'en', 0, 'https://ror.org/03w9qta54 Purdue University North Central'),
(85063, 'https://ror.org/05jm14p78', 'en', 0, 'https://ror.org/05jm14p78 Zhejiang University Libraries System ęµ™ę±Ÿå¤§å­¦å›¾ä¹¦é¦†'),
(85064, 'https://ror.org/047mnkd79', 'en', 0, 'https://ror.org/047mnkd79 Guangzhou Hospital of Traditional Chinese Medicine'),
(85065, 'https://ror.org/051mkm072', 'en', 0, 'https://ror.org/051mkm072 St. Nicholas Hospital'),
(85066, 'https://ror.org/03te6dp58', 'no_lang_code', 0, 'https://ror.org/03te6dp58 Blindsight (United States)'),
(85067, 'https://ror.org/04r3fxe28', 'no_lang_code', 0, 'https://ror.org/04r3fxe28 ProSyst Software (Germany)'),
(85068, 'https://ror.org/05qhdax98', 'en', 0, 'https://ror.org/05qhdax98 University of Wisconsin–Waukesha UniversitĆ© du wisconsin Ć  waukesha'),
(85069, 'https://ror.org/00dsxfs45', 'no_lang_code', 0, 'https://ror.org/00dsxfs45 Seiko Epson (Japan) ć‚»ć‚¤ć‚³ćƒ¼ć‚Øćƒ—ć‚½ćƒ³ę Ŗå¼ä¼šē¤¾'),
(85070, 'https://ror.org/02xqbj812', 'en', 0, 'https://ror.org/02xqbj812 Pacific State Medical University'),
(85071, 'https://ror.org/0301ypw98', 'no_lang_code', 0, 'https://ror.org/0301ypw98 MDA Corporation'),
(85072, 'https://ror.org/01xd04y04', 'no_lang_code', 0, 'https://ror.org/01xd04y04 Gammex (United States)'),
(85073, 'https://ror.org/049cxhs23', 'en', 0, 'https://ror.org/049cxhs23 University of Wisconsin-Green Bay, Manitowoc UniversitƩ du wisconsin Ơ manitowoc'),
(85074, 'https://ror.org/01j90k964', 'no_lang_code', 0, 'https://ror.org/01j90k964 Luxcel Biosciences (Ireland)'),
(85075, 'https://ror.org/01akefp86', 'en', 0, 'https://ror.org/01akefp86 Miami University’s Voice of America Learning Center'),
(85076, 'https://ror.org/05rbm8n02', 'en', 0, 'https://ror.org/05rbm8n02 Ogun State University Teaching Hospital'),
(85077, 'https://ror.org/041ndzj79', 'en', 0, 'https://ror.org/041ndzj79 University of New Mexico'),
(85078, 'https://ror.org/058fa4536', 'en', 0, 'https://ror.org/058fa4536 MGIMO University'),
(85079, 'https://ror.org/00439sg65', 'en', 0, 'https://ror.org/00439sg65 European Screening Port'),
(85080, 'https://ror.org/045gqp102', 'da', 0, 'https://ror.org/045gqp102 Fredericia Sygehus'),
(85081, 'https://ror.org/05e4ge715', 'en', 0, 'https://ror.org/05e4ge715 Maimonides State Classical Academy Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ»Š°ŃŃŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени МаймониГа'),
(85082, 'https://ror.org/04g4f7x62', 'en', 0, 'https://ror.org/04g4f7x62 Wolfsonian Florida International University'),
(85083, 'https://ror.org/00pb7dz52', 'en', 0, 'https://ror.org/00pb7dz52 Strayer University'),
(85084, 'https://ror.org/03twpsy53', 'en', 0, 'https://ror.org/03twpsy53 Shepherd University Research Corporation'),
(85085, 'https://ror.org/029jhne85', 'no_lang_code', 0, 'https://ror.org/029jhne85 MSD Animal Health (Norway)'),
(85086, 'https://ror.org/00fx9ye21', 'no_lang_code', 0, 'https://ror.org/00fx9ye21 Nara Gakuen University'),
(85087, 'https://ror.org/05wq6xa87', 'en', 0, 'https://ror.org/05wq6xa87 United Nations Educational, Scientific and Cultural Organization'),
(85088, 'https://ror.org/02g98d189', 'no_lang_code', 0, 'https://ror.org/02g98d189 ARIAD Pharmaceuticals (United Kingdom)'),
(85089, 'https://ror.org/05jra8p04', 'en', 0, 'https://ror.org/05jra8p04 Mihail Kogălniceanu University of Iași'),
(85090, 'https://ror.org/00ztck474', 'ro', 0, 'https://ror.org/00ztck474 Institutului de Biologie Bucureşti'),
(85091, 'https://ror.org/05pa1yr68', 'es', 0, 'https://ror.org/05pa1yr68 Centro Universitario Une'),
(85092, 'https://ror.org/05m2ge014', 'en', 0, 'https://ror.org/05m2ge014 Cancer Research Initiatives Foundation'),
(85093, 'https://ror.org/02rz8v083', 'en', 0, 'https://ror.org/02rz8v083 United Nations Development Programme'),
(85094, 'https://ror.org/05kae4293', 'en', 0, 'https://ror.org/05kae4293 Moscow State University of Applied Biotechnology'),
(85095, 'https://ror.org/052a85g69', 'en', 0, 'https://ror.org/052a85g69 St. John''s College'),
(85096, 'https://ror.org/00852zb92', 'en', 0, 'https://ror.org/00852zb92 Primorsky State Agricultural Academy ŠŸŃ€ŠøŠ¼Š¾ĢŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃĢŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµĢŠ¼ŠøŃ'),
(85097, 'https://ror.org/00nbs1824', 'en', 0, 'https://ror.org/00nbs1824 St. Anne’s University Hospital Brno'),
(85098, 'https://ror.org/05kfkw941', 'en', 0, 'https://ror.org/05kfkw941 Esophageal Cancer Hospital'),
(85099, 'https://ror.org/04dbakj88', 'en', 0, 'https://ror.org/04dbakj88 University of Colorado Museum of Natural History'),
(85100, 'https://ror.org/04j8p5551', 'no_lang_code', 0, 'https://ror.org/04j8p5551 Deutsches Windenergie Institut'),
(85101, 'https://ror.org/05may5z16', 'no_lang_code', 0, 'https://ror.org/05may5z16 Mallinckrodt (Czechia)'),
(85102, 'https://ror.org/00yxwnd62', 'no_lang_code', 0, 'https://ror.org/00yxwnd62 Bull (United Kingdom)'),
(85103, 'https://ror.org/03zs9ke09', 'en', 0, 'https://ror.org/03zs9ke09 St. Mary''s Hospital č–ćƒžćƒŖć‚¢ē—…é™¢'),
(85104, 'https://ror.org/00jypw962', 'en', 0, 'https://ror.org/00jypw962 Naval Medical Research Institute äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›åŒ»å­¦ē ”ē©¶ę‰€'),
(85105, 'https://ror.org/05ewfm045', 'no_lang_code', 0, 'https://ror.org/05ewfm045 Farfield Group (United Kingdom)'),
(85106, 'https://ror.org/05y99gz91', 'es', 0, 'https://ror.org/05y99gz91 Instituto Nacional de Formacion Tecnica Profesional'),
(85107, 'https://ror.org/03991n008', 'en', 0, 'https://ror.org/03991n008 University of Wisconsin–Stevens Point at Wausau'),
(85108, 'https://ror.org/04ybc6178', 'no_lang_code', 0, 'https://ror.org/04ybc6178 CGIAR'),
(85109, 'https://ror.org/01dcq4v13', 'no_lang_code', 0, 'https://ror.org/01dcq4v13 Leica (Singapore)'),
(85110, 'https://ror.org/009p3kc39', 'en', 0, 'https://ror.org/009p3kc39 Art Institute of Tampa'),
(85111, 'https://ror.org/012bd1j55', 'en', 0, 'https://ror.org/012bd1j55 Nkrumah University'),
(85112, 'https://ror.org/0350gdh15', 'no_lang_code', 0, 'https://ror.org/0350gdh15 Kinetics Technology (Italy)'),
(85113, 'https://ror.org/02ahnr186', 'en', 0, 'https://ror.org/02ahnr186 Sapporo Otani Junior College 札幌大谷大学短期大学部'),
(85114, 'https://ror.org/051w29240', 'en', 0, 'https://ror.org/051w29240 Nh State Department of Health and Human Sers'),
(85115, 'https://ror.org/05e1ymz41', 'en', 0, 'https://ror.org/05e1ymz41 West Pomeranian Business School Zachodniopomorska Szkoła Biznesu w Szczecinie'),
(85116, 'https://ror.org/04abhhf82', 'it', 0, 'https://ror.org/04abhhf82 Centro Interuniversitario ABITA'),
(85117, 'https://ror.org/02zdkmf61', 'en', 0, 'https://ror.org/02zdkmf61 Purdue University Calumet'),
(85118, 'https://ror.org/028z8cb32', 'no_lang_code', 0, 'https://ror.org/028z8cb32 Biocatalytics, Inc.'),
(85119, 'https://ror.org/05rvb4x65', 'en', 0, 'https://ror.org/05rvb4x65 American Coastline University'),
(85120, 'https://ror.org/03dkzqy87', 'no_lang_code', 0, 'https://ror.org/03dkzqy87 The Medicines Company (Switzerland)'),
(85121, 'https://ror.org/03dagtm27', 'en', 0, 'https://ror.org/03dagtm27 Bournemouth Hospital'),
(85122, 'https://ror.org/0431gsx87', 'en', 0, 'https://ror.org/0431gsx87 University of Phoenix'),
(85123, 'https://ror.org/00zg0xv61', 'en', 0, 'https://ror.org/00zg0xv61 Midwestern University'),
(85124, 'https://ror.org/00f9xjd57', 'no_lang_code', 0, 'https://ror.org/00f9xjd57 Cray (United Kingdom)'),
(85125, 'https://ror.org/020bgft86', 'no_lang_code', 0, 'https://ror.org/020bgft86 Bohdan Khmelnytsky National University of Cherkasy Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(85126, 'https://ror.org/01aravg64', 'no_lang_code', 0, 'https://ror.org/01aravg64 Bard (Germany)'),
(85127, 'https://ror.org/033xeem90', 'en', 0, 'https://ror.org/033xeem90 Argosy University'),
(85128, 'https://ror.org/00r59k631', 'no_lang_code', 0, 'https://ror.org/00r59k631 Mentor Graphics (United States)'),
(85129, 'https://ror.org/042na4v08', 'it', 0, 'https://ror.org/042na4v08 Centro di Risonanze Magnetiche'),
(85130, 'https://ror.org/039sbtn67', 'en', 0, 'https://ror.org/039sbtn67 Connecticut State University System'),
(85131, 'https://ror.org/0532wke85', 'no_lang_code', 0, 'https://ror.org/0532wke85 Chemtura (Canada)'),
(85132, 'https://ror.org/02d57dn29', 'no_lang_code', 0, 'https://ror.org/02d57dn29 Affymetrix (United Kingdom)'),
(85133, 'https://ror.org/037a0yt94', 'en', 0, 'https://ror.org/037a0yt94 Texas Tech University'),
(85134, 'https://ror.org/03wvgzg13', 'no_lang_code', 0, 'https://ror.org/03wvgzg13 Novion Technologies (United States)'),
(85135, 'https://ror.org/00rfv7q17', 'en', 0, 'https://ror.org/00rfv7q17 Alliant International University'),
(85136, 'https://ror.org/001xnr984', 'en', 0, 'https://ror.org/001xnr984 Northern Virginia Community College'),
(85137, 'https://ror.org/02b1aeg58', 'en', 0, 'https://ror.org/02b1aeg58 Research for Better Schools'),
(85138, 'https://ror.org/026dbgg54', 'ro', 0, 'https://ror.org/026dbgg54 Radio România Cluj'),
(85139, 'https://ror.org/02gg2r095', 'en', 0, 'https://ror.org/02gg2r095 Institute of Critical Care Medicine'),
(85140, 'https://ror.org/017zsa716', 'en', 0, 'https://ror.org/017zsa716 Department of Industry, Skills and Regional Development'),
(85141, 'https://ror.org/03zktn661', 'en', 0, 'https://ror.org/03zktn661 Chicago School of Professional Psychology'),
(85142, 'https://ror.org/05r0z8p48', 'en', 0, 'https://ror.org/05r0z8p48 South Ural State Medical University'),
(85143, 'https://ror.org/008y5ve70', 'en', 0, 'https://ror.org/008y5ve70 Department of Drug and Alcohol Programs'),
(85144, 'https://ror.org/016kx0v26', 'no_lang_code', 0, 'https://ror.org/016kx0v26 GCell (United Kingdom)'),
(85145, 'https://ror.org/0547dck29', 'no_lang_code', 0, 'https://ror.org/0547dck29 Shire (United Kingdom)'),
(85146, 'https://ror.org/03390n084', 'no_lang_code', 0, 'https://ror.org/03390n084 RWE npower (United Kingdom)'),
(85147, 'https://ror.org/01mhkcn55', 'en', 0, 'https://ror.org/01mhkcn55 Thuyloi University'),
(85148, 'https://ror.org/00whh7p27', 'en', 0, 'https://ror.org/00whh7p27 Bevill State Community College'),
(85149, 'https://ror.org/00gn1c018', 'no_lang_code', 0, 'https://ror.org/00gn1c018 Alcatel-Lucent (Germany)'),
(85150, 'https://ror.org/041qt9m90', 'en', 0, 'https://ror.org/041qt9m90 California College of the Arts'),
(85151, 'https://ror.org/009gmpg56', 'en', 0, 'https://ror.org/009gmpg56 Greater Manchester West Mental Health NHS Foundation Trust'),
(85152, 'https://ror.org/015r29q53', 'en', 0, 'https://ror.org/015r29q53 Shoe and Allied Trades Research Association'),
(85153, 'https://ror.org/01hb0wj75', 'no_lang_code', 0, 'https://ror.org/01hb0wj75 Triune Systems (United States)'),
(85154, 'https://ror.org/04byzmq62', 'en', 0, 'https://ror.org/04byzmq62 United Nations Population Fund'),
(85155, 'https://ror.org/02bpwh655', 'no_lang_code', 0, 'https://ror.org/02bpwh655 Patriot (Czechia)'),
(85156, 'https://ror.org/050927w19', 'en', 0, 'https://ror.org/050927w19 Mercer University'),
(85157, 'https://ror.org/00ch6kh87', 'en', 0, 'https://ror.org/00ch6kh87 American University for Humanities'),
(85158, 'https://ror.org/02xp3f208', 'en', 0, 'https://ror.org/02xp3f208 United Nations Office for Project Services'),
(85159, 'https://ror.org/01daz5k89', 'no_lang_code', 0, 'https://ror.org/01daz5k89 Kockums Computer Systems (Sweden)'),
(85160, 'https://ror.org/01emrxe38', 'en', 0, 'https://ror.org/01emrxe38 Moscow Institute of Transport ŠœŠžŠ”ŠšŠžŠ’Š”ŠšŠ˜Š™ ŠŠ’Š¢ŠžŠœŠžŠ‘Š˜Š›Š¬ŠŠž-Š”ŠžŠ ŠžŠ–ŠŠ«Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ Š¢Š•Š„ŠŠ˜Š§Š•Š”ŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(85161, 'https://ror.org/016thzj78', 'pl', 0, 'https://ror.org/016thzj78 Wyższa Szkoła Turystyki i Hotelarstwa w Gdańsku'),
(85162, 'https://ror.org/0544gqy38', 'en', 0, 'https://ror.org/0544gqy38 Department of Natural Resources'),
(85163, 'https://ror.org/023480b10', 'fr', 0, 'https://ror.org/023480b10 Groupe Ɖcole Polyvalente SupĆ©rieure d''Informatique & Ɖlectronique'),
(85164, 'https://ror.org/010mznj09', 'no_lang_code', 0, 'https://ror.org/010mznj09 Black & Decker (United Kingdom)'),
(85165, 'https://ror.org/00586cg14', 'no_lang_code', 0, 'https://ror.org/00586cg14 S&B Minerals (Greece)'),
(85166, 'https://ror.org/02gk5sj09', 'no_lang_code', 0, 'https://ror.org/02gk5sj09 Clarus Ventures'),
(85167, 'https://ror.org/01zz06256', 'no_lang_code', 0, 'https://ror.org/01zz06256 Shire (Switzerland)'),
(85168, 'https://ror.org/05hjd9j98', 'no_lang_code', 0, 'https://ror.org/05hjd9j98 Protein Sciences (United States)'),
(85169, 'https://ror.org/01stfz405', 'en', 0, 'https://ror.org/01stfz405 Salvation Army'),
(85170, 'https://ror.org/0199bv516', 'en', 0, 'https://ror.org/0199bv516 Architectural Design and Research Institute of Guangdong Province å¹æäøœēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(85171, 'https://ror.org/02twz3112', 'no_lang_code', 0, 'https://ror.org/02twz3112 Integromics (Spain)'),
(85172, 'https://ror.org/018shgd85', 'en', 0, 'https://ror.org/018shgd85 Art Institute of San Antonio'),
(85173, 'https://ror.org/05084ev39', 'no_lang_code', 0, 'https://ror.org/05084ev39 Linde Material Handling (Germany)'),
(85174, 'https://ror.org/009z04x72', 'pl', 0, 'https://ror.org/009z04x72 Akademia Pomorska w Słupsku'),
(85175, 'https://ror.org/0394kh504', 'no_lang_code', 0, 'https://ror.org/0394kh504 Geno Global (Norway)'),
(85176, 'https://ror.org/00r5czc24', 'en', 0, 'https://ror.org/00r5czc24 Long Island University Hudson'),
(85177, 'https://ror.org/045bk1944', 'nl', 0, 'https://ror.org/045bk1944 Amersfoort Total Office B.V.'),
(85178, 'https://ror.org/011mrre73', 'en', 0, 'https://ror.org/011mrre73 SmithKline Beecham Animal Health'),
(85179, 'https://ror.org/050r9n375', 'no_lang_code', 0, 'https://ror.org/050r9n375 OriGene Technologies (United States)'),
(85180, 'https://ror.org/036nnve53', 'en', 0, 'https://ror.org/036nnve53 Argosy University'),
(85181, 'https://ror.org/01yfqp259', 'en', 0, 'https://ror.org/01yfqp259 Physicians Committee'),
(85182, 'https://ror.org/039nkbn92', 'no_lang_code', 0, 'https://ror.org/039nkbn92 Mitsumi Electric (Japan) ćƒŸćƒ„ćƒŸé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(85183, 'https://ror.org/0008hf507', 'en', 0, 'https://ror.org/0008hf507 Family Health Council Of Central Pennsylvania'),
(85184, 'https://ror.org/012y43946', 'en', 0, 'https://ror.org/012y43946 University of Phoenix'),
(85185, 'https://ror.org/01v2y6110', 'en', 0, 'https://ror.org/01v2y6110 Easter Seals Iowa'),
(85186, 'https://ror.org/03jp1vv85', 'no_lang_code', 0, 'https://ror.org/03jp1vv85 FEI (Netherlands)'),
(85187, 'https://ror.org/00fs4mj11', 'en', 0, 'https://ror.org/00fs4mj11 Argosy University'),
(85188, 'https://ror.org/001hz7s79', 'en', 0, 'https://ror.org/001hz7s79 Emory University School of Medicine'),
(85189, 'https://ror.org/053ne5n46', 'no_lang_code', 0, 'https://ror.org/053ne5n46 Dow Corning (United States)'),
(85190, 'https://ror.org/031j63392', 'en', 0, 'https://ror.org/031j63392 CAS-MPG Partner Institute for Computational Biology 中国科学院-é©¬ę™®å­¦ä¼šč®”ē®—ē”Ÿē‰©å­¦ä¼™ä¼“ē ”ē©¶ę‰€'),
(85191, 'https://ror.org/05gy44g89', 'en', 0, 'https://ror.org/05gy44g89 Prevention Research Center'),
(85192, 'https://ror.org/0425cyr19', 'es', 0, 'https://ror.org/0425cyr19 Instituto de Estudios de la Inmunidad Humoral Prof. Ricardo A. Margni'),
(85193, 'https://ror.org/01m9vnj91', 'no_lang_code', 0, 'https://ror.org/01m9vnj91 UTC Aerospace Systems (United Kingdom)'),
(85194, 'https://ror.org/00vz56m34', 'no_lang_code', 0, 'https://ror.org/00vz56m34 Esterline (United States)'),
(85195, 'https://ror.org/01styv105', 'en', 0, 'https://ror.org/01styv105 United Nations Educational, Scientific and Cultural Organization'),
(85196, 'https://ror.org/00644k838', 'no_lang_code', 0, 'https://ror.org/00644k838 British Steel, Swinden Technology Centre (United Kingdom)'),
(85197, 'https://ror.org/02ahscd69', 'no_lang_code', 0, 'https://ror.org/02ahscd69 SGL Group (Germany)'),
(85198, 'https://ror.org/01zyrq211', 'en', 0, 'https://ror.org/01zyrq211 Providence Health and Services'),
(85199, 'https://ror.org/00tzq6e64', 'en', 0, 'https://ror.org/00tzq6e64 Long Island University Hudson at Westchester'),
(85200, 'https://ror.org/0272pb807', 'en', 0, 'https://ror.org/0272pb807 Edgware Community Hospital'),
(85201, 'https://ror.org/03mfxe732', 'en', 0, 'https://ror.org/03mfxe732 North County Serenity House'),
(85202, 'https://ror.org/00sk5e460', 'en', 0, 'https://ror.org/00sk5e460 Penn State Schuylkill'),
(85203, 'https://ror.org/04xk4mv14', 'en', 0, 'https://ror.org/04xk4mv14 Institute of Agro Environmental and Forest Biology'),
(85204, 'https://ror.org/05qc80f88', 'no_lang_code', 1, 'https://ror.org/05qc80f88 Elopak (Norway)'),
(85205, 'https://ror.org/04mx4hp49', 'no_lang_code', 0, 'https://ror.org/04mx4hp49 Acreo (Sweden)');
INSERT INTO `rors` VALUES
(85206, 'https://ror.org/040nac133', 'en', 0, 'https://ror.org/040nac133 Art Institute of Austin'),
(85207, 'https://ror.org/02rfb1841', 'no_lang_code', 0, 'https://ror.org/02rfb1841 Steinbichler (Germany)'),
(85208, 'https://ror.org/012qxnm65', 'en', 0, 'https://ror.org/012qxnm65 Cork Institute of Technology InstitiĆŗd TeicneolaĆ­ochta ChorcaĆ­'),
(85209, 'https://ror.org/00hp3t035', 'en', 0, 'https://ror.org/00hp3t035 Texas Tech University Health Sciences Center'),
(85210, 'https://ror.org/05ybzg123', 'en', 0, 'https://ror.org/05ybzg123 Cancer Research UK Cambridge Institute'),
(85211, 'https://ror.org/00zcpyv65', 'no_lang_code', 0, 'https://ror.org/00zcpyv65 NeRRe Therapeutics (United Kingdom)'),
(85212, 'https://ror.org/006hksj32', 'en', 0, 'https://ror.org/006hksj32 North China Coal Medical University'),
(85213, 'https://ror.org/00vng1j41', 'no_lang_code', 0, 'https://ror.org/00vng1j41 Crucell (Sweden)'),
(85214, 'https://ror.org/03q3q2q48', 'en', 0, 'https://ror.org/03q3q2q48 Cancer Patient Care'),
(85215, 'https://ror.org/04x29g303', 'en', 0, 'https://ror.org/04x29g303 Institute for Hydrological Research'),
(85216, 'https://ror.org/01aqwfr65', 'en', 0, 'https://ror.org/01aqwfr65 Trine University'),
(85217, 'https://ror.org/03w03d982', 'en', 0, 'https://ror.org/03w03d982 Urals State Medical University Š£Š ŠŠ›Š¬Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(85218, 'https://ror.org/01eaw8r60', 'no_lang_code', 0, 'https://ror.org/01eaw8r60 Amec Foster Wheeler (Italy)'),
(85219, 'https://ror.org/057exk444', 'en', 0, 'https://ror.org/057exk444 St. James''s Laundry Centre'),
(85220, 'https://ror.org/01cb6vs44', 'sv', 0, 'https://ror.org/01cb6vs44 Malmƶ AllmƤnna Sjukhus'),
(85221, 'https://ror.org/0258gsg68', 'no_lang_code', 0, 'https://ror.org/0258gsg68 Shire (France)'),
(85222, 'https://ror.org/004ew2q59', 'en', 0, 'https://ror.org/004ew2q59 University of Wisconsin–Whitewater at Rock County'),
(85223, 'https://ror.org/03ymvkx94', 'en', 0, 'https://ror.org/03ymvkx94 Texas Tech University Health Sciences Center'),
(85224, 'https://ror.org/008appn90', 'en', 0, 'https://ror.org/008appn90 University College Maastricht'),
(85225, 'https://ror.org/00fb14f25', 'no_lang_code', 0, 'https://ror.org/00fb14f25 Provexis Limited'),
(85226, 'https://ror.org/03p9gxz72', 'en', 0, 'https://ror.org/03p9gxz72 Texas Tech University'),
(85227, 'https://ror.org/00m7jk905', 'fr', 0, 'https://ror.org/00m7jk905 Ɖcole d''Architecture de la Ville et des Territoires Ć  Marne-la-VallĆ©e'),
(85228, 'https://ror.org/027qzq010', 'no_lang_code', 0, 'https://ror.org/027qzq010 Sogeti (France)'),
(85229, 'https://ror.org/03vykar50', 'no_lang_code', 0, 'https://ror.org/03vykar50 Invivo (United States)'),
(85230, 'https://ror.org/021vavd15', 'it', 0, 'https://ror.org/021vavd15 Ospedale San Giovanni Calibita Fatebenefratelli'),
(85231, 'https://ror.org/00a6s1q04', 'no_lang_code', 0, 'https://ror.org/00a6s1q04 Excel Technology (United States)'),
(85232, 'https://ror.org/029btg905', 'no_lang_code', 0, 'https://ror.org/029btg905 General Cable (Germany)'),
(85233, 'https://ror.org/03eytzb83', 'en', 0, 'https://ror.org/03eytzb83 Claremont University Consortium'),
(85234, 'https://ror.org/051j2nd61', 'en', 0, 'https://ror.org/051j2nd61 Head of The Unit of Foodborne Zoonoses and Veterinary Epidemiology'),
(85235, 'https://ror.org/05tx4n890', 'no_lang_code', 0, 'https://ror.org/05tx4n890 Freescale Semiconductor (United Kingdom)'),
(85236, 'https://ror.org/03hrtm988', 'en', 0, 'https://ror.org/03hrtm988 University of St. Augustine for Health Sciences'),
(85237, 'https://ror.org/04dxzc906', 'no_lang_code', 0, 'https://ror.org/04dxzc906 CSR (United Kingdom)'),
(85238, 'https://ror.org/00mjfew53', 'en', 0, 'https://ror.org/00mjfew53 David Geffen School of Medicine at UCLA'),
(85239, 'https://ror.org/05f26j564', 'no_lang_code', 0, 'https://ror.org/05f26j564 PFI (Germany)'),
(85240, 'https://ror.org/01dgq1c77', 'en', 0, 'https://ror.org/01dgq1c77 University of Wisconsin–Marinette'),
(85241, 'https://ror.org/04pemvb49', 'no_lang_code', 0, 'https://ror.org/04pemvb49 Multiplicom (Belgium)'),
(85242, 'https://ror.org/01rgfwb41', 'no_lang_code', 0, 'https://ror.org/01rgfwb41 Dell (Ireland)'),
(85243, 'https://ror.org/01mjqhh60', 'no_lang_code', 0, 'https://ror.org/01mjqhh60 Thomson Csf (France)'),
(85244, 'https://ror.org/05v72wb79', 'en', 0, 'https://ror.org/05v72wb79 Northwest–Shoals Community College'),
(85245, 'https://ror.org/00t6wbg37', 'en', 0, 'https://ror.org/00t6wbg37 University of Phoenix'),
(85246, 'https://ror.org/012d2pf35', 'en', 0, 'https://ror.org/012d2pf35 University of Alabama School of Medicine'),
(85247, 'https://ror.org/0077ga387', 'no_lang_code', 0, 'https://ror.org/0077ga387 Plastsveis (Norway)'),
(85248, 'https://ror.org/035a9pe58', 'en', 0, 'https://ror.org/035a9pe58 International Institute of Tropical Agriculture'),
(85249, 'https://ror.org/01rcpar89', 'en', 0, 'https://ror.org/01rcpar89 Campus Benjamin Franklin'),
(85250, 'https://ror.org/02j17mb51', 'en', 0, 'https://ror.org/02j17mb51 Presence Health'),
(85251, 'https://ror.org/03bhrre34', 'en', 0, 'https://ror.org/03bhrre34 Ministry of Rural Development'),
(85252, 'https://ror.org/046c4jc93', 'no_lang_code', 0, 'https://ror.org/046c4jc93 CooperVision (United States)'),
(85253, 'https://ror.org/044ff5a54', 'en', 0, 'https://ror.org/044ff5a54 Riverland Community College'),
(85254, 'https://ror.org/025dqz810', 'fr', 0, 'https://ror.org/025dqz810 HƓpital des Cadolles'),
(85255, 'https://ror.org/0519pkb25', 'en', 0, 'https://ror.org/0519pkb25 Kaiser Permanente Division of Research'),
(85256, 'https://ror.org/02ty3nz25', 'en', 0, 'https://ror.org/02ty3nz25 Indepth Network'),
(85257, 'https://ror.org/051q24644', 'no_lang_code', 0, 'https://ror.org/051q24644 Terumo Medical (United States)'),
(85258, 'https://ror.org/04n9sc266', 'en', 0, 'https://ror.org/04n9sc266 State University of New York Polytechnic Institute'),
(85259, 'https://ror.org/02mm59s51', 'no_lang_code', 0, 'https://ror.org/02mm59s51 Arcam (Sweden)'),
(85260, 'https://ror.org/05ee0rx84', 'en', 0, 'https://ror.org/05ee0rx84 Argosy University'),
(85261, 'https://ror.org/04tj5he82', 'en', 0, 'https://ror.org/04tj5he82 National Children’s’ Cardiac Hospital'),
(85262, 'https://ror.org/028dy4662', 'no_lang_code', 0, 'https://ror.org/028dy4662 Shire (United States)'),
(85263, 'https://ror.org/0499mmb06', 'en', 0, 'https://ror.org/0499mmb06 Monroe Center'),
(85264, 'https://ror.org/02e2xqg93', 'no_lang_code', 0, 'https://ror.org/02e2xqg93 Alcatel-Lucent (United States)'),
(85265, 'https://ror.org/02e3mnv18', 'no_lang_code', 0, 'https://ror.org/02e3mnv18 Quantel (France)'),
(85266, 'https://ror.org/02fne8r97', 'pl', 0, 'https://ror.org/02fne8r97 Akademia Marynarki Wojennej im. Bohaterów Westerplatte'),
(85267, 'https://ror.org/00hr2a580', 'en', 0, 'https://ror.org/00hr2a580 San Leandro Medical Center'),
(85268, 'https://ror.org/03yr98e59', 'en', 0, 'https://ror.org/03yr98e59 The Russian Presidential Academy of National Economy and Public Administration Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ нароГного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ при ŠŸŃ€ŠµŠ·ŠøŠ“енте Российской ФеГерации'),
(85269, 'https://ror.org/044xqzp86', 'no_lang_code', 0, 'https://ror.org/044xqzp86 FLEx (United States)'),
(85270, 'https://ror.org/02e49q288', 'en', 0, 'https://ror.org/02e49q288 Penn State York'),
(85271, 'https://ror.org/03wr71s88', 'no_lang_code', 0, 'https://ror.org/03wr71s88 Illumina Digital (United Kingdom)'),
(85272, 'https://ror.org/0016r1x19', 'en', 0, 'https://ror.org/0016r1x19 Women''s and Children''s Hospital'),
(85273, 'https://ror.org/01swgvg08', 'no_lang_code', 0, 'https://ror.org/01swgvg08 GeneSys Research'),
(85274, 'https://ror.org/01bdy4311', 'es', 0, 'https://ror.org/01bdy4311 Fundacion Para La Investigacion Del Hospital Universitario La Fe De La Comunidad Valenciana'),
(85275, 'https://ror.org/05krtjb56', 'en', 0, 'https://ror.org/05krtjb56 Argosy University'),
(85276, 'https://ror.org/01pdex402', 'en', 0, 'https://ror.org/01pdex402 Bhagwan Mahavir Medical Research Centre'),
(85277, 'https://ror.org/00b5y5d29', 'no_lang_code', 0, 'https://ror.org/00b5y5d29 T Mobile (Germany)'),
(85278, 'https://ror.org/03dt4cd29', 'en', 0, 'https://ror.org/03dt4cd29 Republic of Turkey Ministry of Health'),
(85279, 'https://ror.org/007p5ps06', 'en', 0, 'https://ror.org/007p5ps06 University of the Potomac'),
(85280, 'https://ror.org/01g9tvw10', 'en', 0, 'https://ror.org/01g9tvw10 Concordia International University Estonia Concordia Rahvusvaheline Ülikool Eestis'),
(85281, 'https://ror.org/0152rnz42', 'no_lang_code', 0, 'https://ror.org/0152rnz42 Exa Corporation (United States)'),
(85282, 'https://ror.org/01ggtn466', 'fr', 0, 'https://ror.org/01ggtn466 Laboratoire de Physique ThƩorique Ecole Normale SupƩrieure'),
(85283, 'https://ror.org/058hp2r81', 'no_lang_code', 0, 'https://ror.org/058hp2r81 Advanced Marine Systems (United States)'),
(85284, 'https://ror.org/043m7r232', 'de', 0, 'https://ror.org/043m7r232 Eiblmayr Frank Architekten'),
(85285, 'https://ror.org/04wfcg440', 'en', 0, 'https://ror.org/04wfcg440 Art Institute of Phoenix'),
(85286, 'https://ror.org/042cc7155', 'no', 0, 'https://ror.org/042cc7155 Iku Petroleumsforskning As SINTEF Petroleum Research'),
(85287, 'https://ror.org/024h8a058', 'no_lang_code', 0, 'https://ror.org/024h8a058 AO (Germany)'),
(85288, 'https://ror.org/02dc9g052', 'no_lang_code', 0, 'https://ror.org/02dc9g052 Kleinwanzlebener Saatzucht (United Kingdom)'),
(85289, 'https://ror.org/01mzmgj80', 'en', 0, 'https://ror.org/01mzmgj80 CSIRO Marine and Atmospheric Research'),
(85290, 'https://ror.org/02gtkm787', 'en', 0, 'https://ror.org/02gtkm787 Argosy University'),
(85291, 'https://ror.org/00yy3sa08', 'no_lang_code', 0, 'https://ror.org/00yy3sa08 VBM Laboratoriet (Denmark)'),
(85292, 'https://ror.org/02bmvm421', 'fr', 0, 'https://ror.org/02bmvm421 Laboratoire de Photonique et de Nanostructures Laboratory for Photonics and Nanostructures'),
(85293, 'https://ror.org/00gj2a565', 'en', 0, 'https://ror.org/00gj2a565 Tsukuba College of Technology'),
(85294, 'https://ror.org/008cyq615', 'no_lang_code', 0, 'https://ror.org/008cyq615 Interoute (Norway)'),
(85295, 'https://ror.org/00j1rdm64', 'en', 0, 'https://ror.org/00j1rdm64 Slavonic State Pedagogical University'),
(85296, 'https://ror.org/02wr3h045', 'en', 0, 'https://ror.org/02wr3h045 Minnesota Food Association'),
(85297, 'https://ror.org/019p4xb90', 'en', 0, 'https://ror.org/019p4xb90 National Police University of China äø­å›½åˆ‘äŗ‹č­¦åÆŸå­¦é™¢'),
(85298, 'https://ror.org/03pnmqc26', 'en', 0, 'https://ror.org/03pnmqc26 Yale School of Medicine'),
(85299, 'https://ror.org/05sajeb96', 'no_lang_code', 0, 'https://ror.org/05sajeb96 Raydiance (United States)'),
(85300, 'https://ror.org/02x889y98', 'no_lang_code', 0, 'https://ror.org/02x889y98 Glidden (United States)'),
(85301, 'https://ror.org/058m0h984', 'en', 0, 'https://ror.org/058m0h984 Shanghai Pudong New Area Public Interest Hospital äøŠęµ·åø‚ęµ¦äøœę–°åŒŗå…¬åˆ©åŒ»é™¢'),
(85302, 'https://ror.org/009b0nf21', 'no_lang_code', 0, 'https://ror.org/009b0nf21 Alexander Street Press (United States)'),
(85303, 'https://ror.org/04sc82966', 'no_lang_code', 0, 'https://ror.org/04sc82966 Siradel (France)'),
(85304, 'https://ror.org/00mabsw86', 'en', 0, 'https://ror.org/00mabsw86 University of Professional Studies'),
(85305, 'https://ror.org/01wr1w859', 'en', 0, 'https://ror.org/01wr1w859 World Bank'),
(85306, 'https://ror.org/01aewn724', 'de', 0, 'https://ror.org/01aewn724 AKh Linz'),
(85307, 'https://ror.org/0310rqm53', 'da', 0, 'https://ror.org/0310rqm53 Teres Hospitalet Parken'),
(85308, 'https://ror.org/043ys3745', 'en', 0, 'https://ror.org/043ys3745 Paris Grand Ouest University'),
(85309, 'https://ror.org/01ahfyn28', 'en', 0, 'https://ror.org/01ahfyn28 Hull Maternity Hospital'),
(85310, 'https://ror.org/03q11wp41', 'en', 0, 'https://ror.org/03q11wp41 Pan Asian Repertory Theatre'),
(85311, 'https://ror.org/00xd2r463', 'en', 0, 'https://ror.org/00xd2r463 Africa Centre for Health and Population Studies'),
(85312, 'https://ror.org/01h409w36', 'en', 0, 'https://ror.org/01h409w36 United Nations Development Programme'),
(85313, 'https://ror.org/02ctr5v50', 'en', 0, 'https://ror.org/02ctr5v50 KwaZulu-Natal Research Institute for Tuberculosis and HIV'),
(85314, 'https://ror.org/04yadhf25', 'en', 0, 'https://ror.org/04yadhf25 United Nations Environment Programme'),
(85315, 'https://ror.org/03hr7y002', 'en', 0, 'https://ror.org/03hr7y002 MRC Centre'),
(85316, 'https://ror.org/00ygpk854', 'en', 0, 'https://ror.org/00ygpk854 Antiquities, Monuments and Museums Corporation'),
(85317, 'https://ror.org/056w8wj16', 'no_lang_code', 0, 'https://ror.org/056w8wj16 Nextel (Spain)'),
(85318, 'https://ror.org/034aqab36', 'en', 0, 'https://ror.org/034aqab36 Texas Tech University'),
(85319, 'https://ror.org/011pcwc98', 'en', 0, 'https://ror.org/011pcwc98 Stanford University School of Medicine'),
(85320, 'https://ror.org/03bnhqc31', 'no_lang_code', 0, 'https://ror.org/03bnhqc31 OM Group (Germany)'),
(85321, 'https://ror.org/00s5q8v96', 'fr', 0, 'https://ror.org/00s5q8v96 El-Oued University UniversitĆ© d''El-Oued Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁŠ'),
(85322, 'https://ror.org/02c6kaq88', 'en', 0, 'https://ror.org/02c6kaq88 United Library'),
(85323, 'https://ror.org/04dcvdp86', 'no_lang_code', 0, 'https://ror.org/04dcvdp86 Cray (United States)'),
(85324, 'https://ror.org/02zfbxd25', 'pl', 0, 'https://ror.org/02zfbxd25 Akademia Wychowania Fizycznego Józefa Piłsudskiego w Warszawie'),
(85325, 'https://ror.org/03fyd9f03', 'no_lang_code', 0, 'https://ror.org/03fyd9f03 Alcatel-Lucent (United Kingdom)'),
(85326, 'https://ror.org/01jc21z12', 'en', 0, 'https://ror.org/01jc21z12 Grupo Español de Investigación en CÔncer de Mama Spanish Breast Cancer Group'),
(85327, 'https://ror.org/03my53j30', 'no_lang_code', 0, 'https://ror.org/03my53j30 GE Healthcare (India)'),
(85328, 'https://ror.org/01fyvd003', 'no_lang_code', 0, 'https://ror.org/01fyvd003 Compureg (Czechia)'),
(85329, 'https://ror.org/03a01de36', 'no_lang_code', 0, 'https://ror.org/03a01de36 Topsoe Fuel Cell (Denmark)'),
(85330, 'https://ror.org/02s8ye387', 'en', 0, 'https://ror.org/02s8ye387 Penn State New Kensington'),
(85331, 'https://ror.org/02hp39418', 'en', 0, 'https://ror.org/02hp39418 Fuyang City People''s Hospital'),
(85332, 'https://ror.org/04s9vpv90', 'no_lang_code', 0, 'https://ror.org/04s9vpv90 InterMune (Switzerland)'),
(85333, 'https://ror.org/00s6tnr74', 'en', 0, 'https://ror.org/00s6tnr74 Lipeck State Technical University'),
(85334, 'https://ror.org/02j23c293', 'no_lang_code', 0, 'https://ror.org/02j23c293 Cardio3 BioSciences (Belgium)'),
(85335, 'https://ror.org/02p80s268', 'en', 0, 'https://ror.org/02p80s268 Argosy University'),
(85336, 'https://ror.org/03a7q4a54', 'en', 0, 'https://ror.org/03a7q4a54 Far Eastern State University of Humanities'),
(85337, 'https://ror.org/00w37da60', 'en', 0, 'https://ror.org/00w37da60 National Information Infrastructure Development Institute'),
(85338, 'https://ror.org/049w63018', 'no_lang_code', 0, 'https://ror.org/049w63018 Northern Telecom (Ireland)'),
(85339, 'https://ror.org/0142qzn68', 'es', 0, 'https://ror.org/0142qzn68 Universidad Iberoamericana del Norte'),
(85340, 'https://ror.org/053pwty57', 'en', 0, 'https://ror.org/053pwty57 Voronezh State University of Architecture and Civil Engineering'),
(85341, 'https://ror.org/030fg5085', 'en', 0, 'https://ror.org/030fg5085 Aberystwyth University'),
(85342, 'https://ror.org/01qmysq37', 'en', 0, 'https://ror.org/01qmysq37 Kaiser Foundation Health Plan'),
(85343, 'https://ror.org/043fjvg75', 'en', 0, 'https://ror.org/043fjvg75 International Winter University Kassel'),
(85344, 'https://ror.org/03wdwyn13', 'en', 0, 'https://ror.org/03wdwyn13 South Australian Health'),
(85345, 'https://ror.org/00g1egx47', 'no_lang_code', 0, 'https://ror.org/00g1egx47 Fisabio'),
(85346, 'https://ror.org/03htw5563', 'en', 0, 'https://ror.org/03htw5563 University of Tennessee Institute of Agriculture'),
(85347, 'https://ror.org/02j3vp543', 'en', 0, 'https://ror.org/02j3vp543 Cumbria Institute of the Arts'),
(85348, 'https://ror.org/005vs4g88', 'en', 0, 'https://ror.org/005vs4g88 University Alliance Ruhr UniversitƤtsallianz Ruhr'),
(85349, 'https://ror.org/036abw928', 'no_lang_code', 1, 'https://ror.org/036abw928 Ferd (Norway)'),
(85350, 'https://ror.org/03bq46k73', 'en', 0, 'https://ror.org/03bq46k73 National University'),
(85351, 'https://ror.org/0049d4r84', 'es', 0, 'https://ror.org/0049d4r84 Hospital Infantil La Paz'),
(85352, 'https://ror.org/00fswa532', 'no_lang_code', 0, 'https://ror.org/00fswa532 SK Chemicals (South Korea)'),
(85353, 'https://ror.org/017q0zk30', 'no_lang_code', 0, 'https://ror.org/017q0zk30 Holcim (Belgium)'),
(85354, 'https://ror.org/04p4y6r60', 'en', 0, 'https://ror.org/04p4y6r60 LIU Post'),
(85355, 'https://ror.org/039qf8r60', 'en', 0, 'https://ror.org/039qf8r60 International Food Policy Research Institute'),
(85356, 'https://ror.org/05mxzfp44', 'en', 0, 'https://ror.org/05mxzfp44 Argosy University'),
(85357, 'https://ror.org/04cqj5759', 'en', 0, 'https://ror.org/04cqj5759 Rutgers University–Camden'),
(85358, 'https://ror.org/013z6gc53', 'no_lang_code', 0, 'https://ror.org/013z6gc53 BMT Hi-Q Sigma'),
(85359, 'https://ror.org/031bqzx14', 'no_lang_code', 0, 'https://ror.org/031bqzx14 Selexys Pharmaceuticals (United States)'),
(85360, 'https://ror.org/02wwgzr37', 'en', 0, 'https://ror.org/02wwgzr37 Sonoma County Museum'),
(85361, 'https://ror.org/00bsf2b50', 'en', 0, 'https://ror.org/00bsf2b50 Northern Seminary'),
(85362, 'https://ror.org/00mjrkf94', 'no_lang_code', 1, 'https://ror.org/00mjrkf94 Biosense Webster (United States)'),
(85363, 'https://ror.org/02059cb65', 'no_lang_code', 0, 'https://ror.org/02059cb65 Cytec (United Kingdom)'),
(85364, 'https://ror.org/03wpxq490', 'en', 0, 'https://ror.org/03wpxq490 Centres of Excellence'),
(85365, 'https://ror.org/01tkfnd57', 'no_lang_code', 0, 'https://ror.org/01tkfnd57 PhosphorTech Corporation (United States)'),
(85366, 'https://ror.org/01xnpbm13', 'en', 0, 'https://ror.org/01xnpbm13 Living Classrooms Foundation'),
(85367, 'https://ror.org/05vzs1274', 'en', 0, 'https://ror.org/05vzs1274 Vallo Sadovsky Architects'),
(85368, 'https://ror.org/03aj82390', 'en', 0, 'https://ror.org/03aj82390 Embry–Riddle Aeronautical University'),
(85369, 'https://ror.org/05h3p4983', 'en', 0, 'https://ror.org/05h3p4983 Iowa Western Foundation'),
(85370, 'https://ror.org/024022n41', 'no_lang_code', 0, 'https://ror.org/024022n41 American Science and Engineering (United States)'),
(85371, 'https://ror.org/003v0n359', 'en', 0, 'https://ror.org/003v0n359 Saint Luke''s Hospita'),
(85372, 'https://ror.org/05x702m23', 'no_lang_code', 0, 'https://ror.org/05x702m23 Dharmacon (United States)'),
(85373, 'https://ror.org/01ch3a039', 'fr', 0, 'https://ror.org/01ch3a039 Ecole Nationale SupƩrieure d''Hydraulique Abdellah Arbaoui'),
(85374, 'https://ror.org/01mcqhs03', 'no_lang_code', 0, 'https://ror.org/01mcqhs03 BPE (Germany)'),
(85375, 'https://ror.org/04v27b270', 'en', 0, 'https://ror.org/04v27b270 Health Economics Bergen'),
(85376, 'https://ror.org/037xfp797', 'no_lang_code', 0, 'https://ror.org/037xfp797 3D Reid (United Kingdom)'),
(85377, 'https://ror.org/02wxk3231', 'en', 0, 'https://ror.org/02wxk3231 Susan G Komen Utah'),
(85378, 'https://ror.org/022vrvk39', 'no_lang_code', 0, 'https://ror.org/022vrvk39 Reis Robotics (Germany)'),
(85379, 'https://ror.org/03tr0kn27', 'en', 0, 'https://ror.org/03tr0kn27 Smolensk University for Humanities Дмоленский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85380, 'https://ror.org/03kzp5v39', 'no_lang_code', 1, 'https://ror.org/03kzp5v39 Johnson & Johnson (Israel)'),
(85381, 'https://ror.org/013vy7y57', 'no_lang_code', 0, 'https://ror.org/013vy7y57 Shiseikan University 至誠館大学'),
(85382, 'https://ror.org/05a6fcq16', 'en', 0, 'https://ror.org/05a6fcq16 Gauhati Medical College and Hospital ą¦—ą§Œą¦¹ą¦¾ą¦Ÿą§€ ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(85383, 'https://ror.org/00fgnre85', 'no_lang_code', 0, 'https://ror.org/00fgnre85 Eurofins (Netherlands)'),
(85384, 'https://ror.org/04nqvpx39', 'en', 0, 'https://ror.org/04nqvpx39 Alpha Hospital Bury'),
(85385, 'https://ror.org/01svejt45', 'it', 0, 'https://ror.org/01svejt45 Institute of Neuroscience Istituto di Neuroscienze'),
(85386, 'https://ror.org/059qzrv09', 'no_lang_code', 0, 'https://ror.org/059qzrv09 Hologic Gen-Probe Incorporated (United States)'),
(85387, 'https://ror.org/03ypvde47', 'en', 0, 'https://ror.org/03ypvde47 Ipswich Hospital NHS Trust'),
(85388, 'https://ror.org/02kng7w76', 'no_lang_code', 0, 'https://ror.org/02kng7w76 TransDerm (United States)'),
(85389, 'https://ror.org/00kzf3943', 'en', 0, 'https://ror.org/00kzf3943 Institute of Physical Chemistry'),
(85390, 'https://ror.org/0240g3n05', 'en', 0, 'https://ror.org/0240g3n05 Foundation for Scientific and Industrial Research'),
(85391, 'https://ror.org/05f5tv017', 'en', 0, 'https://ror.org/05f5tv017 Art Institute of California'),
(85392, 'https://ror.org/03k43kf60', 'en', 0, 'https://ror.org/03k43kf60 Capital Institute of Physical Education and Sports'),
(85393, 'https://ror.org/05dn3py86', 'en', 0, 'https://ror.org/05dn3py86 Texas Tech University Health Sciences Center'),
(85394, 'https://ror.org/006nh9v44', 'no_lang_code', 0, 'https://ror.org/006nh9v44 Fresenius Kabi (India)'),
(85395, 'https://ror.org/05v9zc647', 'en', 0, 'https://ror.org/05v9zc647 Barrackpore Rastraguru Surendranath College'),
(85396, 'https://ror.org/050723s13', 'no_lang_code', 0, 'https://ror.org/050723s13 YD Global Life Science (South Korea) ģ™€ģ“ė””ģƒėŖ…ź³¼ķ•™'),
(85397, 'https://ror.org/008ace698', 'en', 0, 'https://ror.org/008ace698 Aqua Terra'),
(85398, 'https://ror.org/05v78jy10', 'en', 0, 'https://ror.org/05v78jy10 Qatar Environment and Energy Research Institute'),
(85399, 'https://ror.org/01wdk9725', 'en', 0, 'https://ror.org/01wdk9725 Argosy University'),
(85400, 'https://ror.org/00t9de449', 'no_lang_code', 0, 'https://ror.org/00t9de449 St. Jude Medical (United States)'),
(85401, 'https://ror.org/01tpwmh40', 'fr', 0, 'https://ror.org/01tpwmh40 Haute Ɖcole de SantĆ© de GenĆØve'),
(85402, 'https://ror.org/01ky71w68', 'en', 0, 'https://ror.org/01ky71w68 Penn State Behrend'),
(85403, 'https://ror.org/059tzjg04', 'en', 0, 'https://ror.org/059tzjg04 Brain Plasticity Institute'),
(85404, 'https://ror.org/05tr69e48', 'no_lang_code', 0, 'https://ror.org/05tr69e48 Rapiscan Systems (United States)'),
(85405, 'https://ror.org/05rvkrc04', 'no_lang_code', 0, 'https://ror.org/05rvkrc04 Chemtura (United States)'),
(85406, 'https://ror.org/04ydrgv17', 'en', 0, 'https://ror.org/04ydrgv17 American Society for Bone and Mineral Research'),
(85407, 'https://ror.org/000pdyj29', 'en', 0, 'https://ror.org/000pdyj29 Madison University'),
(85408, 'https://ror.org/05p94t760', 'de', 0, 'https://ror.org/05p94t760 Klinik für Hals-, Nasen- und Ohrenheilkunde'),
(85409, 'https://ror.org/01xkyj228', 'no_lang_code', 0, 'https://ror.org/01xkyj228 Martindale Pharma (United Kingdom)'),
(85410, 'https://ror.org/05c71z159', 'en', 0, 'https://ror.org/05c71z159 Texas A&M Health Science Center'),
(85411, 'https://ror.org/04cxcey34', 'no_lang_code', 0, 'https://ror.org/04cxcey34 FEI (Norway)'),
(85412, 'https://ror.org/04vvjs337', 'no_lang_code', 0, 'https://ror.org/04vvjs337 Photon Machines (United States)'),
(85413, 'https://ror.org/043raxx74', 'en', 0, 'https://ror.org/043raxx74 University of Houston Sugar Land'),
(85414, 'https://ror.org/05rj6ky13', 'en', 0, 'https://ror.org/05rj6ky13 Central Bible College'),
(85415, 'https://ror.org/03wpb7480', 'pl', 0, 'https://ror.org/03wpb7480 Państwowy Instytut Badawczy'),
(85416, 'https://ror.org/00bejq188', 'de', 0, 'https://ror.org/00bejq188 Fraunhofer Institute Centre Schloss Birlinghoven Institutszentrum Schloss Birlinghoven'),
(85417, 'https://ror.org/02bgrmk52', 'en', 0, 'https://ror.org/02bgrmk52 Libertas Business School'),
(85418, 'https://ror.org/01m8a5113', 'no_lang_code', 0, 'https://ror.org/01m8a5113 InterMune (Canada)'),
(85419, 'https://ror.org/028dt5z54', 'no_lang_code', 0, 'https://ror.org/028dt5z54 Computer Sciences Corporation (Belgium)'),
(85420, 'https://ror.org/02adwf864', 'no_lang_code', 0, 'https://ror.org/02adwf864 The Italian Ship Research Centre'),
(85421, 'https://ror.org/00v2fj703', 'en', 0, 'https://ror.org/00v2fj703 International Livestock Research Institute'),
(85422, 'https://ror.org/02btfvn14', 'en', 0, 'https://ror.org/02btfvn14 Vologda State Pedagogical University'),
(85423, 'https://ror.org/02asjkw45', 'en', 0, 'https://ror.org/02asjkw45 MATI-Russian State Technological University'),
(85424, 'https://ror.org/0475d2878', 'no_lang_code', 0, 'https://ror.org/0475d2878 Blue Belt Technologies (United States)'),
(85425, 'https://ror.org/03qg59g08', 'no_lang_code', 0, 'https://ror.org/03qg59g08 Consulintel (Spain)'),
(85426, 'https://ror.org/032td6a33', 'no_lang_code', 0, 'https://ror.org/032td6a33 SK Innovation (South Korea)'),
(85427, 'https://ror.org/04xhcbj83', 'en', 0, 'https://ror.org/04xhcbj83 Department of the Environment and Energy'),
(85428, 'https://ror.org/000h7d865', 'en', 0, 'https://ror.org/000h7d865 University of New Mexico Gallup'),
(85429, 'https://ror.org/015jqby91', 'no_lang_code', 0, 'https://ror.org/015jqby91 SK Telecom (South Korea) ķ…”ė ˆģ½¤ or ģ—ģŠ¤ģ¼€ģ“ķ…”ė ˆģ½¤'),
(85430, 'https://ror.org/02dc3yz72', 'en', 0, 'https://ror.org/02dc3yz72 Penn State Worthington Scranton'),
(85431, 'https://ror.org/05ccjkv07', 'no_lang_code', 0, 'https://ror.org/05ccjkv07 CeraMem Corporation (United States)'),
(85432, 'https://ror.org/03dkg9x81', 'no_lang_code', 0, 'https://ror.org/03dkg9x81 Leica Microsystems (Switzerland)'),
(85433, 'https://ror.org/022j63c41', 'fr', 0, 'https://ror.org/022j63c41 Geneva University of Music Haute Ɖcole de Musique de GenĆØve Haute Ć©cole de musique de genĆØve'),
(85434, 'https://ror.org/02y9c4832', 'fr', 0, 'https://ror.org/02y9c4832 Ɖcole des Hautes Etudes Commerciales du Maroc'),
(85435, 'https://ror.org/02kj7kt32', 'no_lang_code', 0, 'https://ror.org/02kj7kt32 UES (United States)'),
(85436, 'https://ror.org/034w4b143', 'en', 0, 'https://ror.org/034w4b143 University Hospital'),
(85437, 'https://ror.org/001rf1g63', 'en', 0, 'https://ror.org/001rf1g63 Bashkir Academy of Public Administration and Management Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при Главе Республики Š‘Š°ŃˆŠŗŠ¾Ń€Ń‚Š¾ŃŃ‚Š°Š½'),
(85438, 'https://ror.org/02gc8z272', 'no_lang_code', 0, 'https://ror.org/02gc8z272 Smiths Detection (United Kingdom)'),
(85439, 'https://ror.org/04wtfvh23', 'sk', 0, 'https://ror.org/04wtfvh23 Univerzita Sv. Cyrila A Metoda V Trnave'),
(85440, 'https://ror.org/03rjhjc18', 'en', 0, 'https://ror.org/03rjhjc18 NERC Environmental Bioinformatics Centre'),
(85441, 'https://ror.org/01g0ac827', 'en', 0, 'https://ror.org/01g0ac827 Kobe University of Welfare ē„žęˆøåŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(85442, 'https://ror.org/04wwggg58', 'no_lang_code', 0, 'https://ror.org/04wwggg58 Nisshin Pharma (Japan) ę—„ęø…ćƒ•ć‚”ćƒ«ćƒž'),
(85443, 'https://ror.org/00fddr776', 'no_lang_code', 0, 'https://ror.org/00fddr776 Imanova (United Kingdom)'),
(85444, 'https://ror.org/020kapt42', 'en', 0, 'https://ror.org/020kapt42 Jacob of Paradyż University of Applied Sciences in Gorzów Wielkopolski Państwowa Wyższa Szkoła Zawodowa im. Jakuba z Paradyża w Gorzowie Wielkopolskim'),
(85445, 'https://ror.org/04pedtg03', 'en', 0, 'https://ror.org/04pedtg03 Department of Justice'),
(85446, 'https://ror.org/026pjkt58', 'no_lang_code', 0, 'https://ror.org/026pjkt58 JPK Instruments (Germany)'),
(85447, 'https://ror.org/00hrhpx15', 'no_lang_code', 0, 'https://ror.org/00hrhpx15 United Technologies (Germany)'),
(85448, 'https://ror.org/01z6zjq35', 'en', 0, 'https://ror.org/01z6zjq35 Far Eastern State Academy of Art'),
(85449, 'https://ror.org/03yv4n892', 'en', 0, 'https://ror.org/03yv4n892 Vanderbilt University School of Medicine'),
(85450, 'https://ror.org/02vpyd330', 'en', 0, 'https://ror.org/02vpyd330 Saken Seifullin Kazakh Agro Technical University Š”. Š”ŠµŠ¹Ń„ŃƒŠ»Š»ŠøŠ½ атынГағы қазақ агротехникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(85451, 'https://ror.org/03wh7p582', 'no_lang_code', 0, 'https://ror.org/03wh7p582 GlobalStem (United States)'),
(85452, 'https://ror.org/009dpay98', 'es', 0, 'https://ror.org/009dpay98 Hospital Virgen de la Torre'),
(85453, 'https://ror.org/01dgqsa10', 'no_lang_code', 0, 'https://ror.org/01dgqsa10 Esterline (United Kingdom)'),
(85454, 'https://ror.org/01ncezw90', 'en', 0, 'https://ror.org/01ncezw90 MRC Medical Sociology Unit'),
(85455, 'https://ror.org/03e4ys677', 'en', 0, 'https://ror.org/03e4ys677 Tenth People''s Hospital of Tongji University'),
(85456, 'https://ror.org/01ngrza98', 'en', 0, 'https://ror.org/01ngrza98 International Maize and Wheat Improvement Center'),
(85457, 'https://ror.org/03m49wm34', 'no_lang_code', 0, 'https://ror.org/03m49wm34 Crucell (Switzerland)'),
(85458, 'https://ror.org/04k443h76', 'no_lang_code', 0, 'https://ror.org/04k443h76 Guanghua Hospital'),
(85459, 'https://ror.org/05f48kz62', 'en', 0, 'https://ror.org/05f48kz62 Laval University Cancer Research Center'),
(85460, 'https://ror.org/0508ez360', 'no_lang_code', 0, 'https://ror.org/0508ez360 MSC Software (United Kingdom)'),
(85461, 'https://ror.org/034w85g23', 'en', 0, 'https://ror.org/034w85g23 George Washington University Museum'),
(85462, 'https://ror.org/05p30s598', 'no_lang_code', 0, 'https://ror.org/05p30s598 Sogeti (United Kingdom)'),
(85463, 'https://ror.org/01n9kga30', 'en', 0, 'https://ror.org/01n9kga30 Duke University School of Medicine'),
(85464, 'https://ror.org/0102d5245', 'en', 0, 'https://ror.org/0102d5245 Art Institute of Washington'),
(85465, 'https://ror.org/051ztas29', 'en', 0, 'https://ror.org/051ztas29 Film University'),
(85466, 'https://ror.org/02g48kk62', 'no_lang_code', 0, 'https://ror.org/02g48kk62 Enzymatics (United States)'),
(85467, 'https://ror.org/0578de476', 'en', 0, 'https://ror.org/0578de476 Christchurch Hospital'),
(85468, 'https://ror.org/05gw2s374', 'no_lang_code', 0, 'https://ror.org/05gw2s374 Thalmic Labs (Canada)'),
(85469, 'https://ror.org/04t3r5s29', 'no_lang_code', 0, 'https://ror.org/04t3r5s29 Vaxin (United States)'),
(85470, 'https://ror.org/00p6mmq35', 'en', 0, 'https://ror.org/00p6mmq35 Federal Research Centre For Fisheries Fiskesekretariatet'),
(85471, 'https://ror.org/033bc0070', 'no_lang_code', 0, 'https://ror.org/033bc0070 Cepheid (United States)'),
(85472, 'https://ror.org/05fzetd27', 'no_lang_code', 0, 'https://ror.org/05fzetd27 Ultra Electronics Holdings (United States)'),
(85473, 'https://ror.org/00a44dx91', 'en', 0, 'https://ror.org/00a44dx91 Swedish Cancer Institute'),
(85474, 'https://ror.org/05wmbw405', 'en', 0, 'https://ror.org/05wmbw405 Catholic University of Malawi'),
(85475, 'https://ror.org/03ypwcv39', 'no_lang_code', 0, 'https://ror.org/03ypwcv39 Flowmetrics (United States)'),
(85476, 'https://ror.org/036ma1a21', 'en', 0, 'https://ror.org/036ma1a21 Webster University'),
(85477, 'https://ror.org/03ts3j724', 'en', 0, 'https://ror.org/03ts3j724 ISMA University Informācijas sistēmu menedžmenta augstskola Š’Ń‹ŃŃˆŠ°Ń школа менеГжмента Šø информационных систем'),
(85478, 'https://ror.org/03hbxaa51', 'en', 0, 'https://ror.org/03hbxaa51 Chemical Heritage Foundation'),
(85479, 'https://ror.org/03d23gv21', 'no_lang_code', 0, 'https://ror.org/03d23gv21 Nortel (United Kingdom)'),
(85480, 'https://ror.org/01523w440', 'en', 0, 'https://ror.org/01523w440 Bodo Regional University'),
(85481, 'https://ror.org/00e9zam13', 'no_lang_code', 1, 'https://ror.org/00e9zam13 Koch Industries (United States)'),
(85482, 'https://ror.org/0129rwb56', 'no_lang_code', 0, 'https://ror.org/0129rwb56 Pure Technologies (Canada)'),
(85483, 'https://ror.org/02pfzq569', 'no_lang_code', 0, 'https://ror.org/02pfzq569 Exiqon (United States)'),
(85484, 'https://ror.org/04jeqzs82', 'en', 0, 'https://ror.org/04jeqzs82 Holt Radium Institute'),
(85485, 'https://ror.org/03ymk3103', 'en', 0, 'https://ror.org/03ymk3103 University of Washington School of Medicine'),
(85486, 'https://ror.org/04bamh830', 'en', 0, 'https://ror.org/04bamh830 Levine Children''s Hospita'),
(85487, 'https://ror.org/02nakt033', 'en', 0, 'https://ror.org/02nakt033 Nagoya University Museum 名古屋大学 åšē‰©é¤Ø'),
(85488, 'https://ror.org/00gsa4126', 'en', 0, 'https://ror.org/00gsa4126 Texas Tech University'),
(85489, 'https://ror.org/00zj6kn78', 'no', 0, 'https://ror.org/00zj6kn78 Sykehuset Ƙstfold'),
(85490, 'https://ror.org/04md3y396', 'en', 0, 'https://ror.org/04md3y396 University of Phoenix'),
(85491, 'https://ror.org/00gm85e42', 'no_lang_code', 0, 'https://ror.org/00gm85e42 ChanTest (United States)'),
(85492, 'https://ror.org/00krmsh17', 'no_lang_code', 0, 'https://ror.org/00krmsh17 asteur Institute of Iran'),
(85493, 'https://ror.org/0327hg630', 'en', 0, 'https://ror.org/0327hg630 University of California Museum of Paleontology'),
(85494, 'https://ror.org/02kat9e40', 'en', 0, 'https://ror.org/02kat9e40 Art Institute of Wisconsin'),
(85495, 'https://ror.org/047qha240', 'en', 0, 'https://ror.org/047qha240 KFAI'),
(85496, 'https://ror.org/03k1afa36', 'no_lang_code', 0, 'https://ror.org/03k1afa36 K.C. Associates (United States)'),
(85497, 'https://ror.org/04h785s89', 'en', 0, 'https://ror.org/04h785s89 Scottsdale Lincoln Health Network'),
(85498, 'https://ror.org/00q1df169', 'no_lang_code', 0, 'https://ror.org/00q1df169 Orbotech (Israel)'),
(85499, 'https://ror.org/00qhta086', 'no_lang_code', 0, 'https://ror.org/00qhta086 Mondragon Assembly (Spain)'),
(85500, 'https://ror.org/00zs80j25', 'no_lang_code', 0, 'https://ror.org/00zs80j25 Polaris Industries (United States)'),
(85501, 'https://ror.org/01cv6j974', 'en', 0, 'https://ror.org/01cv6j974 Bryansk State Academy of Agriculture'),
(85502, 'https://ror.org/04qt75m20', 'en', 0, 'https://ror.org/04qt75m20 Art Institute of Virginia Beach'),
(85503, 'https://ror.org/05cb4b451', 'no_lang_code', 0, 'https://ror.org/05cb4b451 ACEA Biosciences (United States)'),
(85504, 'https://ror.org/0527yg379', 'no_lang_code', 0, 'https://ror.org/0527yg379 Celgene (United States)'),
(85505, 'https://ror.org/011vh9z64', 'en', 0, 'https://ror.org/011vh9z64 Rutgers University–Newark'),
(85506, 'https://ror.org/05hxv9903', 'en', 0, 'https://ror.org/05hxv9903 Carson Newman College'),
(85507, 'https://ror.org/03xrapp02', 'en', 0, 'https://ror.org/03xrapp02 Texas A&M Health Science Center'),
(85508, 'https://ror.org/021p5yk55', 'no_lang_code', 0, 'https://ror.org/021p5yk55 Cameron (United Kingdom)'),
(85509, 'https://ror.org/025vwbe15', 'no_lang_code', 0, 'https://ror.org/025vwbe15 Rockwell Collins (United States)'),
(85510, 'https://ror.org/0546v5182', 'fr', 0, 'https://ror.org/0546v5182 UniversitƩ Lille 1 : Sciences et Technologies UniversitƩ de Lille'),
(85511, 'https://ror.org/05qsz8q55', 'no_lang_code', 0, 'https://ror.org/05qsz8q55 OM Group (United States)'),
(85512, 'https://ror.org/03xxd7g80', 'en', 0, 'https://ror.org/03xxd7g80 United States Army Public Health Command'),
(85513, 'https://ror.org/041phzg73', 'en', 0, 'https://ror.org/041phzg73 Raymond and Ruth Perelman School of Medicine at the University of Pennsylvania'),
(85514, 'https://ror.org/017cba891', 'en', 0, 'https://ror.org/017cba891 University of Wisconsin-Baraboo-Sauk County'),
(85515, 'https://ror.org/00hpryt51', 'no_lang_code', 0, 'https://ror.org/00hpryt51 Adventium Enterprises (United States)'),
(85516, 'https://ror.org/00gef2a48', 'no_lang_code', 0, 'https://ror.org/00gef2a48 CH2M Hill (United Kingdom)'),
(85517, 'https://ror.org/04qfdcf28', 'no_lang_code', 0, 'https://ror.org/04qfdcf28 Shire (Germany)'),
(85518, 'https://ror.org/01r01qe73', 'en', 0, 'https://ror.org/01r01qe73 Ethiopian Health and Nutrition Research Institute'),
(85519, 'https://ror.org/021nv2831', 'en', 0, 'https://ror.org/021nv2831 University of Connecticut'),
(85520, 'https://ror.org/03p79mb82', 'no_lang_code', 0, 'https://ror.org/03p79mb82 Dow Agrosciences (Canada)'),
(85521, 'https://ror.org/019egy464', 'en', 0, 'https://ror.org/019egy464 Far Eastern University Institute of Law'),
(85522, 'https://ror.org/035q6k606', 'no_lang_code', 0, 'https://ror.org/035q6k606 Acoustic MedSystems'),
(85523, 'https://ror.org/037p8y688', 'en', 0, 'https://ror.org/037p8y688 University Heights, Newark'),
(85524, 'https://ror.org/02fvwvk30', 'en', 0, 'https://ror.org/02fvwvk30 Memorial University Medical Center'),
(85525, 'https://ror.org/033p30a55', 'fr', 0, 'https://ror.org/033p30a55 Zéfiro Théâtre'),
(85526, 'https://ror.org/00n4jr633', 'en', 0, 'https://ror.org/00n4jr633 Western Sussex Hospitals NHS Foundation Trust'),
(85527, 'https://ror.org/01s12p182', 'no_lang_code', 0, 'https://ror.org/01s12p182 Silicon Graphics International (Canada)'),
(85528, 'https://ror.org/011b4qg07', 'no_lang_code', 0, 'https://ror.org/011b4qg07 Fluorinov Pharma (Canada)'),
(85529, 'https://ror.org/03bqc1g42', 'no_lang_code', 0, 'https://ror.org/03bqc1g42 Turbomeca (France)'),
(85530, 'https://ror.org/00efw3q31', 'no_lang_code', 0, 'https://ror.org/00efw3q31 Retroscreen Virology (United Kingdom)'),
(85531, 'https://ror.org/030evqs35', 'no_lang_code', 0, 'https://ror.org/030evqs35 DB Schenker Rail Automotive (Germany)'),
(85532, 'https://ror.org/038kqcv16', 'no_lang_code', 0, 'https://ror.org/038kqcv16 Nishinippon Shimbun'),
(85533, 'https://ror.org/02vvrq321', 'en', 0, 'https://ror.org/02vvrq321 Texas A&M Health Science Center'),
(85534, 'https://ror.org/0162qn279', 'no_lang_code', 0, 'https://ror.org/0162qn279 Qamcom Research & Technology (Sweden)'),
(85535, 'https://ror.org/00xkv4888', 'en', 0, 'https://ror.org/00xkv4888 Penn State DuBois'),
(85536, 'https://ror.org/00ahw4087', 'no_lang_code', 0, 'https://ror.org/00ahw4087 Abt SRBI'),
(85537, 'https://ror.org/01q300p77', 'no_lang_code', 0, 'https://ror.org/01q300p77 Faxitron (United States)'),
(85538, 'https://ror.org/012bx6m81', 'en', 0, 'https://ror.org/012bx6m81 Rostov State University of Railways'),
(85539, 'https://ror.org/028p1nc07', 'en', 0, 'https://ror.org/028p1nc07 University of Michigan Medical School'),
(85540, 'https://ror.org/01xcwz090', 'en', 0, 'https://ror.org/01xcwz090 Department of Communications and the Arts'),
(85541, 'https://ror.org/03dy5xj85', 'en', 0, 'https://ror.org/03dy5xj85 Centre for Clinical Research in Neuropsychiatry'),
(85542, 'https://ror.org/03kxgb311', 'no_lang_code', 0, 'https://ror.org/03kxgb311 Xhale (United States)'),
(85543, 'https://ror.org/02ah7nn60', 'no_lang_code', 0, 'https://ror.org/02ah7nn60 Dynamet Technology (United States)'),
(85544, 'https://ror.org/026mwcd11', 'en', 0, 'https://ror.org/026mwcd11 Squibb Institute for Medical Research'),
(85545, 'https://ror.org/03mpv7q97', 'en', 0, 'https://ror.org/03mpv7q97 Jiangxi Provincial Cancer Hospital ę±Ÿč„æēœč‚æē˜¤åŒ»é™¢'),
(85546, 'https://ror.org/028ddsd03', 'no_lang_code', 0, 'https://ror.org/028ddsd03 Urs Dames & Moore S.R.L.'),
(85547, 'https://ror.org/05c5ybx96', 'en', 0, 'https://ror.org/05c5ybx96 Ivanovo State Textile Academy'),
(85548, 'https://ror.org/0114b6272', 'en', 0, 'https://ror.org/0114b6272 Forest Park'),
(85549, 'https://ror.org/05t3edc53', 'no_lang_code', 0, 'https://ror.org/05t3edc53 Blue Ocean Mariculture (United States)'),
(85550, 'https://ror.org/011apn769', 'en', 0, 'https://ror.org/011apn769 Penn State Greater Allegheny'),
(85551, 'https://ror.org/03qhf8m78', 'no_lang_code', 0, 'https://ror.org/03qhf8m78 United Technologies (United Kingdom)'),
(85552, 'https://ror.org/03e6bkn11', 'no_lang_code', 0, 'https://ror.org/03e6bkn11 Tomegavax (United States)'),
(85553, 'https://ror.org/0507dv852', 'en', 0, 'https://ror.org/0507dv852 Long Island University Brooklyn'),
(85554, 'https://ror.org/012y58k53', 'fr', 0, 'https://ror.org/012y58k53 UniversitƩ Lille 2 Droit et SantƩ'),
(85555, 'https://ror.org/00s7pd064', 'no_lang_code', 0, 'https://ror.org/00s7pd064 Etnoteam S.p.A'),
(85556, 'https://ror.org/05f24qn54', 'en', 0, 'https://ror.org/05f24qn54 United Nations Organization for Education, Science and Culture'),
(85557, 'https://ror.org/01ar3bk09', 'en', 0, 'https://ror.org/01ar3bk09 Art Institute of Tennessee'),
(85558, 'https://ror.org/05pt5a239', 'en', 0, 'https://ror.org/05pt5a239 New College Nottingham'),
(85559, 'https://ror.org/01atfk372', 'en', 0, 'https://ror.org/01atfk372 College of Occupational Therapists'),
(85560, 'https://ror.org/01yq27586', 'no_lang_code', 0, 'https://ror.org/01yq27586 Luciad (Belgium)'),
(85561, 'https://ror.org/030y57545', 'en', 0, 'https://ror.org/030y57545 Argosy University'),
(85562, 'https://ror.org/03cpdvx86', 'no_lang_code', 0, 'https://ror.org/03cpdvx86 Chatten Associates (United States)'),
(85563, 'https://ror.org/0129p3388', 'en', 0, 'https://ror.org/0129p3388 United Nations Educational Scientific and Cultural Organization'),
(85564, 'https://ror.org/05fhcgm49', 'en', 0, 'https://ror.org/05fhcgm49 Foundation Institute of Materials Science Stiftung Institut für Werkstofftechnik'),
(85565, 'https://ror.org/03wb0d413', 'no_lang_code', 0, 'https://ror.org/03wb0d413 Alere Wellbeing'),
(85566, 'https://ror.org/03km47c80', 'en', 0, 'https://ror.org/03km47c80 Future Generations Graduate School'),
(85567, 'https://ror.org/01ztwst47', 'en', 0, 'https://ror.org/01ztwst47 University of California - San Francisco School of Medicine'),
(85568, 'https://ror.org/00knr6c76', 'en', 0, 'https://ror.org/00knr6c76 Food and Agriculture Organization of the United Nations'),
(85569, 'https://ror.org/01qmg4n59', 'en', 0, 'https://ror.org/01qmg4n59 Swedish Cement and Concrete Research Institute'),
(85570, 'https://ror.org/05g4pdk37', 'en', 0, 'https://ror.org/05g4pdk37 Intermountain Health Care'),
(85571, 'https://ror.org/02tmb4981', 'en', 0, 'https://ror.org/02tmb4981 Postgraduate Institute of Medical Education and Research ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤šą¤‚ą¤”ą„€ą¤—ą¤¢ą¤¼'),
(85572, 'https://ror.org/05p9p2a21', 'no_lang_code', 0, 'https://ror.org/05p9p2a21 Skulpt (United States)'),
(85573, 'https://ror.org/004r2j822', 'en', 0, 'https://ror.org/004r2j822 RIKEN Center for Developmental Biology ē†åŒ–å­¦ē ”ē©¶ę‰€ å¤šē“°čƒžć‚·ć‚¹ćƒ†ćƒ å½¢ęˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(85574, 'https://ror.org/04bpn0t57', 'no_lang_code', 0, 'https://ror.org/04bpn0t57 WorldFish'),
(85575, 'https://ror.org/001s7m607', 'en', 0, 'https://ror.org/001s7m607 Organisation for Economic Co-operation and Development'),
(85576, 'https://ror.org/02cdjts56', 'en', 0, 'https://ror.org/02cdjts56 DCE - Danish Centre for Environment and Energy Nationalt Center for MiljĆø og Energi'),
(85577, 'https://ror.org/01dtkgy62', 'pl', 0, 'https://ror.org/01dtkgy62 Prywatna Wyższa Szkoła Ochrony Środowiska w Radomiu'),
(85578, 'https://ror.org/03d68c571', 'en', 0, 'https://ror.org/03d68c571 Penn State Altoona'),
(85579, 'https://ror.org/054twjr71', 'en', 0, 'https://ror.org/054twjr71 Midwest Palliative and Hospice Care Center'),
(85580, 'https://ror.org/01ww9bv69', 'no_lang_code', 0, 'https://ror.org/01ww9bv69 Bard (United States)'),
(85581, 'https://ror.org/02etnpc77', 'en', 0, 'https://ror.org/02etnpc77 Irkutsk State Academy of Agriculture'),
(85582, 'https://ror.org/001ssbw23', 'en', 0, 'https://ror.org/001ssbw23 King Stanisław Leszczyński Higher School of Humanities'),
(85583, 'https://ror.org/003e62v40', 'no_lang_code', 0, 'https://ror.org/003e62v40 GE Healthcare (Netherlands)'),
(85584, 'https://ror.org/05wsqdk17', 'en', 0, 'https://ror.org/05wsqdk17 University of New Mexico'),
(85585, 'https://ror.org/042znmb91', 'en', 0, 'https://ror.org/042znmb91 Stetson University'),
(85586, 'https://ror.org/033x3yk48', 'no_lang_code', 0, 'https://ror.org/033x3yk48 Dow Agrosciences (United Kingdom)'),
(85587, 'https://ror.org/0172cjd61', 'no_lang_code', 0, 'https://ror.org/0172cjd61 Chemtura (Germany)'),
(85588, 'https://ror.org/051qrk490', 'en', 0, 'https://ror.org/051qrk490 Oxford University Museum of Natural History'),
(85589, 'https://ror.org/0260anr77', 'en', 0, 'https://ror.org/0260anr77 Western Michigan University Homer Stryker M.D. School of Medicine'),
(85590, 'https://ror.org/02ncchd63', 'en', 0, 'https://ror.org/02ncchd63 Hebrew Union College - Jewish Institute of Religion'),
(85591, 'https://ror.org/05hhb3804', 'no_lang_code', 0, 'https://ror.org/05hhb3804 KCETLink'),
(85592, 'https://ror.org/023narr07', 'no_lang_code', 0, 'https://ror.org/023narr07 Princeton Technology Corporation (United States)'),
(85593, 'https://ror.org/02ay6fd69', 'en', 0, 'https://ror.org/02ay6fd69 Academia de Muzică Gheorghe Dima Gheorghe Dima Music Academy'),
(85594, 'https://ror.org/01z78ch44', 'no_lang_code', 0, 'https://ror.org/01z78ch44 INSIA'),
(85595, 'https://ror.org/013hpgj82', 'en', 0, 'https://ror.org/013hpgj82 Broadview University'),
(85596, 'https://ror.org/04tnbvm40', 'en', 0, 'https://ror.org/04tnbvm40 Salvation Army'),
(85597, 'https://ror.org/01h50kv06', 'no_lang_code', 0, 'https://ror.org/01h50kv06 Harrisvaccines (United States)'),
(85598, 'https://ror.org/05mjm5p58', 'no_lang_code', 0, 'https://ror.org/05mjm5p58 Praxair Surface Technologies (Italy)'),
(85599, 'https://ror.org/0068yc133', 'no_lang_code', 0, 'https://ror.org/0068yc133 RainDance Technologies (United States)'),
(85600, 'https://ror.org/04cwzbt15', 'en', 0, 'https://ror.org/04cwzbt15 St Louis Community College'),
(85601, 'https://ror.org/03bm0c622', 'en', 0, 'https://ror.org/03bm0c622 Council for the Central Laboratory of the Research Councils'),
(85602, 'https://ror.org/02yw97t38', 'no_lang_code', 0, 'https://ror.org/02yw97t38 Search Technologies (United States)'),
(85603, 'https://ror.org/01rr7ev58', 'nl', 0, 'https://ror.org/01rr7ev58 Pharmo Instituut'),
(85604, 'https://ror.org/03ce2gm94', 'en', 0, 'https://ror.org/03ce2gm94 Hebrew Union College - Jewish Institute of Religion'),
(85605, 'https://ror.org/056dchh05', 'no_lang_code', 0, 'https://ror.org/056dchh05 SOFCpower (Italy)'),
(85606, 'https://ror.org/021zk1532', 'en', 0, 'https://ror.org/021zk1532 Florida Cancer Specialists & Research Institute'),
(85607, 'https://ror.org/02byc4a47', 'en', 0, 'https://ror.org/02byc4a47 Lahden ammattikorkeakoulu Lahti University of Applied Sciences'),
(85608, 'https://ror.org/04h9qdh30', 'no_lang_code', 0, 'https://ror.org/04h9qdh30 Rottapharm (Germany)'),
(85609, 'https://ror.org/04meffx53', 'no_lang_code', 0, 'https://ror.org/04meffx53 Neurocomp Systems (United States)'),
(85610, 'https://ror.org/04q0ys014', 'en', 0, 'https://ror.org/04q0ys014 Information and Communications University'),
(85611, 'https://ror.org/057w6my84', 'no_lang_code', 0, 'https://ror.org/057w6my84 FEI Company (United States)'),
(85612, 'https://ror.org/02ne8pd48', 'es', 0, 'https://ror.org/02ne8pd48 Hospital Xeral'),
(85613, 'https://ror.org/000wp7187', 'en', 0, 'https://ror.org/000wp7187 Broward County Division of Libraries'),
(85614, 'https://ror.org/02fzqqm79', 'fr', 0, 'https://ror.org/02fzqqm79 Pharmacie des HƓpitaux de l''Est LƩmanique'),
(85615, 'https://ror.org/03c2k6525', 'en', 0, 'https://ror.org/03c2k6525 National Computer Facilities Stichting Nationale Computerfaciliteiten'),
(85616, 'https://ror.org/03w4phb31', 'no_lang_code', 0, 'https://ror.org/03w4phb31 EMC (United States)'),
(85617, 'https://ror.org/05xerfz82', 'no_lang_code', 0, 'https://ror.org/05xerfz82 Selcia (United Kingdom)'),
(85618, 'https://ror.org/02k4h1r69', 'no_lang_code', 0, 'https://ror.org/02k4h1r69 IQE Silicon Compounds (United Kingdom)'),
(85619, 'https://ror.org/009s80w03', 'no_lang_code', 0, 'https://ror.org/009s80w03 Vjatka State Humanitarian University'),
(85620, 'https://ror.org/00hkmzk74', 'lv', 0, 'https://ror.org/00hkmzk74 Banku Augstskola'),
(85621, 'https://ror.org/009h5ks85', 'en', 0, 'https://ror.org/009h5ks85 National Yang Ming University'),
(85622, 'https://ror.org/0431afq97', 'en', 0, 'https://ror.org/0431afq97 Penn State Great Valley'),
(85623, 'https://ror.org/02ekf0r31', 'no_lang_code', 0, 'https://ror.org/02ekf0r31 WorldFish'),
(85624, 'https://ror.org/000cww991', 'no_lang_code', 0, 'https://ror.org/000cww991 Potentia Pharmaceuticals (United States)'),
(85625, 'https://ror.org/033z60d46', 'no_lang_code', 0, 'https://ror.org/033z60d46 Shire (Sweden)'),
(85626, 'https://ror.org/018m8jj96', 'de', 0, 'https://ror.org/018m8jj96 Klinik für Kinder- und Jugendmedizin'),
(85627, 'https://ror.org/04fz3x390', 'no_lang_code', 0, 'https://ror.org/04fz3x390 Foster Wheeler (United Kingdom)'),
(85628, 'https://ror.org/02r860p42', 'en', 0, 'https://ror.org/02r860p42 Hawaii Loa College'),
(85629, 'https://ror.org/04c1h6p56', 'no_lang_code', 0, 'https://ror.org/04c1h6p56 Amphenol (United Kingdom)'),
(85630, 'https://ror.org/04y9v0932', 'en', 0, 'https://ror.org/04y9v0932 Argosy University'),
(85631, 'https://ror.org/05txgeh52', 'no_lang_code', 0, 'https://ror.org/05txgeh52 Ondax (United States)'),
(85632, 'https://ror.org/015a24040', 'en', 0, 'https://ror.org/015a24040 St. Paul Medical Center'),
(85633, 'https://ror.org/04bygdz36', 'no_lang_code', 0, 'https://ror.org/04bygdz36 Bayer CropScience (Netherlands)'),
(85634, 'https://ror.org/01trqz050', 'en', 0, 'https://ror.org/01trqz050 United Nations Population Fund'),
(85635, 'https://ror.org/03hy9rs18', 'en', 0, 'https://ror.org/03hy9rs18 State Agency for Consumer and Health Protection'),
(85636, 'https://ror.org/02agbxf63', 'en', 0, 'https://ror.org/02agbxf63 Astronomical Association'),
(85637, 'https://ror.org/02r4fg487', 'no_lang_code', 0, 'https://ror.org/02r4fg487 Casmed (United States)'),
(85638, 'https://ror.org/04v612t13', 'no_lang_code', 0, 'https://ror.org/04v612t13 Swederail Ab'),
(85639, 'https://ror.org/02339jp70', 'en', 0, 'https://ror.org/02339jp70 Nair Hospital Dental College नायर दंत ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ आणि ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(85640, 'https://ror.org/02z67yh79', 'no_lang_code', 0, 'https://ror.org/02z67yh79 Ansys (France)'),
(85641, 'https://ror.org/01pzzxg27', 'no_lang_code', 0, 'https://ror.org/01pzzxg27 Dyax (United States)'),
(85642, 'https://ror.org/00dq2kk65', 'en', 0, 'https://ror.org/00dq2kk65 Research Councils UK'),
(85643, 'https://ror.org/03bgzs247', 'no_lang_code', 0, 'https://ror.org/03bgzs247 Displaytech Incorporated'),
(85644, 'https://ror.org/05jd9zn83', 'en', 0, 'https://ror.org/05jd9zn83 Crozer Chester Medical Center');
INSERT INTO `rors` VALUES
(85645, 'https://ror.org/037kf1624', 'en', 0, 'https://ror.org/037kf1624 Art Institute of Fort Worth'),
(85646, 'https://ror.org/02sghn022', 'en', 0, 'https://ror.org/02sghn022 Texas Tech University Health Sciences Center'),
(85647, 'https://ror.org/02zt8q459', 'de', 0, 'https://ror.org/02zt8q459 Institut für Angewandte Geodäsie'),
(85648, 'https://ror.org/01jrsq444', 'en', 0, 'https://ror.org/01jrsq444 Carlos Albizu University'),
(85649, 'https://ror.org/03kjax416', 'es', 0, 'https://ror.org/03kjax416 Cidemco'),
(85650, 'https://ror.org/057bp1234', 'en', 0, 'https://ror.org/057bp1234 Massachusetts College of Pharmacy and Health Sciences'),
(85651, 'https://ror.org/05ke6qe36', 'en', 0, 'https://ror.org/05ke6qe36 Thad Cochran National Warmwater Aquaculture Center'),
(85652, 'https://ror.org/04xw2rs58', 'en', 0, 'https://ror.org/04xw2rs58 Shaanxi Tumor Hospital'),
(85653, 'https://ror.org/05067kh62', 'no_lang_code', 0, 'https://ror.org/05067kh62 Iveco (Switzerland)'),
(85654, 'https://ror.org/000qsm026', 'no_lang_code', 0, 'https://ror.org/000qsm026 Rete Ventures S.C.R.L.'),
(85655, 'https://ror.org/04ryaz303', 'en', 0, 'https://ror.org/04ryaz303 South Ural State Humanitarian Pedagogical University Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85656, 'https://ror.org/005g8c558', 'no_lang_code', 0, 'https://ror.org/005g8c558 NPS Pharmaceuticals (United States)'),
(85657, 'https://ror.org/04wg6sh66', 'en', 0, 'https://ror.org/04wg6sh66 Kyoto Sosei University äŗ¬éƒ½å‰µęˆå¤§å­¦'),
(85658, 'https://ror.org/022m05189', 'en', 0, 'https://ror.org/022m05189 United Nations Educational, Scientific and Cultural Organization'),
(85659, 'https://ror.org/02t3j7969', 'fr', 0, 'https://ror.org/02t3j7969 Institut d''Electronique Fondamentale'),
(85660, 'https://ror.org/046wtt638', 'no_lang_code', 0, 'https://ror.org/046wtt638 Ineos (United Kingdom)'),
(85661, 'https://ror.org/03yzt0q73', 'en', 0, 'https://ror.org/03yzt0q73 Penn State Beaver'),
(85662, 'https://ror.org/011vffx12', 'en', 0, 'https://ror.org/011vffx12 University of Wisconsin–Washington County'),
(85663, 'https://ror.org/05jd5jm42', 'no_lang_code', 0, 'https://ror.org/05jd5jm42 Beckman Coulter (Australia)'),
(85664, 'https://ror.org/05422p832', 'no_lang_code', 0, 'https://ror.org/05422p832 Seagen (United States)'),
(85665, 'https://ror.org/052r67908', 'en', 0, 'https://ror.org/052r67908 Experimental Therapeutics Centre'),
(85666, 'https://ror.org/04pgkxg15', 'no_lang_code', 0, 'https://ror.org/04pgkxg15 TEI Biosciences (United States)'),
(85667, 'https://ror.org/00m8wy805', 'en', 0, 'https://ror.org/00m8wy805 Oregon Health Policy and Research'),
(85668, 'https://ror.org/043v64z77', 'en', 0, 'https://ror.org/043v64z77 Mary Bird Perkins Cancer Center'),
(85669, 'https://ror.org/00gtexm79', 'en', 0, 'https://ror.org/00gtexm79 Ashridge Business School'),
(85670, 'https://ror.org/05s5hey28', 'en', 0, 'https://ror.org/05s5hey28 Samara State Pedagogical University Дамарский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85671, 'https://ror.org/02kqzqe43', 'en', 0, 'https://ror.org/02kqzqe43 Adygei State University'),
(85672, 'https://ror.org/055hxf735', 'no_lang_code', 0, 'https://ror.org/055hxf735 Bull (Germany)'),
(85673, 'https://ror.org/02xzkc718', 'en', 0, 'https://ror.org/02xzkc718 Alliant International University'),
(85674, 'https://ror.org/020tb2413', 'en', 0, 'https://ror.org/020tb2413 Texas Epilepsy Group'),
(85675, 'https://ror.org/038ybsx39', 'en', 0, 'https://ror.org/038ybsx39 Art Institute of Charleston'),
(85676, 'https://ror.org/03xbv1180', 'no_lang_code', 0, 'https://ror.org/03xbv1180 Kvaerner (Norway)'),
(85677, 'https://ror.org/044ctd767', 'en', 0, 'https://ror.org/044ctd767 Art Institute of California'),
(85678, 'https://ror.org/01y9snp29', 'en', 0, 'https://ror.org/01y9snp29 ICSU Regional Office for Africa'),
(85679, 'https://ror.org/004m3q352', 'no_lang_code', 0, 'https://ror.org/004m3q352 e2v (United Kingdom)'),
(85680, 'https://ror.org/04n98ay18', 'en', 0, 'https://ror.org/04n98ay18 Mountain States Health Alliance'),
(85681, 'https://ror.org/000c7nc82', 'no_lang_code', 0, 'https://ror.org/000c7nc82 Counsyl (United States)'),
(85682, 'https://ror.org/04jy7w797', 'en', 0, 'https://ror.org/04jy7w797 Saint Joseph Hospital'),
(85683, 'https://ror.org/03bqdt826', 'no_lang_code', 0, 'https://ror.org/03bqdt826 Beckman Coulter (United Kingdom)'),
(85684, 'https://ror.org/01gpq1g44', 'en', 0, 'https://ror.org/01gpq1g44 Wuhan Institute of Tuberculosis Control ę­¦ę±‰ē»“ę øē—…é˜²ę²»ē ”ē©¶ę‰€'),
(85685, 'https://ror.org/02nkr4j21', 'no_lang_code', 0, 'https://ror.org/02nkr4j21 Akastor (Norway)'),
(85686, 'https://ror.org/01wzvb985', 'en', 0, 'https://ror.org/01wzvb985 Kijowski Narodowy Uniwersytet Ekonomiczny im. Wadyma Hetmana Kyiv National Economic University Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВаГима Š“ŠµŃ‚ŃŒŠ¼Š°Š½Š°'),
(85687, 'https://ror.org/04efeqx94', 'ro', 0, 'https://ror.org/04efeqx94 Universitatea Petrol Si Gaze Ploiesti'),
(85688, 'https://ror.org/02aej5879', 'en', 0, 'https://ror.org/02aej5879 University of Pennsylvania Museum of Archaeology and Anthropology'),
(85689, 'https://ror.org/0369q9269', 'no_lang_code', 0, 'https://ror.org/0369q9269 Cambridge Energy Research Associates'),
(85690, 'https://ror.org/03n77bh09', 'en', 0, 'https://ror.org/03n77bh09 University of Wisconsin Colleges'),
(85691, 'https://ror.org/003gp7r92', 'no_lang_code', 0, 'https://ror.org/003gp7r92 Seoul Boramae Hospital ģ„œģšø ė³“ė¼ė§¤ 병원'),
(85692, 'https://ror.org/05bfhsy55', 'en', 0, 'https://ror.org/05bfhsy55 Apor Vilmos Catholic College Apor Vilmos Katolikus Főiskola'),
(85693, 'https://ror.org/05dncws07', 'en', 0, 'https://ror.org/05dncws07 South Dakota Agricultural Heritage Museum'),
(85694, 'https://ror.org/00nn7pc94', 'no_lang_code', 0, 'https://ror.org/00nn7pc94 Interoute (Italy)'),
(85695, 'https://ror.org/023afqp63', 'en', 0, 'https://ror.org/023afqp63 Research Campus Golm'),
(85696, 'https://ror.org/0476thd63', 'en', 0, 'https://ror.org/0476thd63 Chamberlain College of Nursing'),
(85697, 'https://ror.org/000z9nb11', 'en', 0, 'https://ror.org/000z9nb11 Chengdu Branch, Chinese Academy of Sciences äø­å›½ē§‘å­¦é™¢ęˆéƒ½åˆ†é™¢'),
(85698, 'https://ror.org/01yrfvw22', 'no_lang_code', 0, 'https://ror.org/01yrfvw22 GigOptix (Switzerland)'),
(85699, 'https://ror.org/03ad2ge94', 'en', 0, 'https://ror.org/03ad2ge94 John Wesley Community Health Institute'),
(85700, 'https://ror.org/0118z9937', 'en', 0, 'https://ror.org/0118z9937 Man Adult Hospital äø‡ęˆē—…é™¢'),
(85701, 'https://ror.org/03zp9rn25', 'no_lang_code', 0, 'https://ror.org/03zp9rn25 Regenxbio (United States)'),
(85702, 'https://ror.org/0041rwe58', 'en', 0, 'https://ror.org/0041rwe58 Utrecht Life Sciences'),
(85703, 'https://ror.org/00e63r193', 'en', 0, 'https://ror.org/00e63r193 Les Roches GruyĆØre University of Applied Sciences'),
(85704, 'https://ror.org/0510grb31', 'en', 0, 'https://ror.org/0510grb31 Miryang National University'),
(85705, 'https://ror.org/00gayfz68', 'en', 0, 'https://ror.org/00gayfz68 Yugra State University Югорский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85706, 'https://ror.org/059qned12', 'no_lang_code', 0, 'https://ror.org/059qned12 Promedior (United States)'),
(85707, 'https://ror.org/0465sg033', 'no_lang_code', 0, 'https://ror.org/0465sg033 Celgene (Germany)'),
(85708, 'https://ror.org/03d2wm227', 'en', 0, 'https://ror.org/03d2wm227 University of Wisconsin–Platteville Richland UniversitĆ© du wisconsin Ć  richland center'),
(85709, 'https://ror.org/04z8v6e48', 'en', 0, 'https://ror.org/04z8v6e48 Sheffield Teaching Hospital'),
(85710, 'https://ror.org/03pcahg75', 'no_lang_code', 0, 'https://ror.org/03pcahg75 Sapa (Norway)'),
(85711, 'https://ror.org/03xrdnh15', 'no_lang_code', 0, 'https://ror.org/03xrdnh15 MSC Software (Germany)'),
(85712, 'https://ror.org/002j7gt32', 'en', 0, 'https://ror.org/002j7gt32 Penn State Shenango'),
(85713, 'https://ror.org/02bkgrs41', 'no_lang_code', 0, 'https://ror.org/02bkgrs41 5T (Italy)'),
(85714, 'https://ror.org/04ajp4v86', 'no_lang_code', 0, 'https://ror.org/04ajp4v86 Universitas Istropolitana'),
(85715, 'https://ror.org/04e4y4a50', 'no_lang_code', 0, 'https://ror.org/04e4y4a50 Celsis (United States)'),
(85716, 'https://ror.org/04m1p5n74', 'en', 0, 'https://ror.org/04m1p5n74 University of Wisconsin Green Bay – Sheboygan'),
(85717, 'https://ror.org/01geeh261', 'en', 0, 'https://ror.org/01geeh261 Shanghai Finance University äøŠęµ·é‡‘čžå­¦é™¢'),
(85718, 'https://ror.org/005bs2a16', 'en', 0, 'https://ror.org/005bs2a16 NSW Office of Environment & Heritage'),
(85719, 'https://ror.org/04wd8np46', 'en', 0, 'https://ror.org/04wd8np46 Yaroslav Mudryi National Law University ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Ярослава ŠœŃƒŠ“рого'),
(85720, 'https://ror.org/00y86q787', 'no_lang_code', 0, 'https://ror.org/00y86q787 Ceramatec (United States)'),
(85721, 'https://ror.org/02gynf383', 'no_lang_code', 0, 'https://ror.org/02gynf383 CSR (United States)'),
(85722, 'https://ror.org/01vwsps34', 'en', 0, 'https://ror.org/01vwsps34 Schüttler Waske Tennis-University'),
(85723, 'https://ror.org/006zzcw62', 'no_lang_code', 0, 'https://ror.org/006zzcw62 Kongsberg Maritime (Norway)'),
(85724, 'https://ror.org/01zvn2k69', 'en', 0, 'https://ror.org/01zvn2k69 International Social Science Council'),
(85725, 'https://ror.org/03xa45x83', 'en', 0, 'https://ror.org/03xa45x83 National American University'),
(85726, 'https://ror.org/04ez5d068', 'no_lang_code', 0, 'https://ror.org/04ez5d068 Teledyne Technologies (United Kingdom)'),
(85727, 'https://ror.org/02mmp8p21', 'en', 0, 'https://ror.org/02mmp8p21 Tsinghua-UC Berkeley Shenzhen Institute'),
(85728, 'https://ror.org/00hrg0j91', 'en', 0, 'https://ror.org/00hrg0j91 The Chicago School of Professional Psychology'),
(85729, 'https://ror.org/04tmdjm41', 'en', 0, 'https://ror.org/04tmdjm41 Geochemistry of Soil Evolution Geochimie des sols et des eaux'),
(85730, 'https://ror.org/04bgq3072', 'en', 0, 'https://ror.org/04bgq3072 Kostroma State Technological University Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ¾Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85731, 'https://ror.org/00ngpkv62', 'en', 0, 'https://ror.org/00ngpkv62 School of Management and Engineering Vaud'),
(85732, 'https://ror.org/041nhzq95', 'en', 0, 'https://ror.org/041nhzq95 Penn State Berks'),
(85733, 'https://ror.org/031mf4x23', 'de', 0, 'https://ror.org/031mf4x23 Landesnervenklinik Wagner-Jauregg'),
(85734, 'https://ror.org/037tfve16', 'en', 0, 'https://ror.org/037tfve16 Lamar State College–Orange'),
(85735, 'https://ror.org/03t955590', 'en', 0, 'https://ror.org/03t955590 Crimean State Humanitarian University'),
(85736, 'https://ror.org/04xmhss10', 'no_lang_code', 0, 'https://ror.org/04xmhss10 FMC Technologies (Norway)'),
(85737, 'https://ror.org/03r8gxr03', 'en', 0, 'https://ror.org/03r8gxr03 United Nations Educational, Scientific and Cultural Organization'),
(85738, 'https://ror.org/02n47ja63', 'no_lang_code', 0, 'https://ror.org/02n47ja63 Sirrix (Germany)'),
(85739, 'https://ror.org/01w58xz62', 'en', 0, 'https://ror.org/01w58xz62 Qatar Computing Research Institute معهد قطر Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų­ŁˆŲ³ŲØŲ©'),
(85740, 'https://ror.org/01sj5ye95', 'no_lang_code', 0, 'https://ror.org/01sj5ye95 Gen9 (United States)'),
(85741, 'https://ror.org/04vs7c252', 'no_lang_code', 0, 'https://ror.org/04vs7c252 Anasys Instruments (United States)'),
(85742, 'https://ror.org/00m9xjt25', 'en', 0, 'https://ror.org/00m9xjt25 Virtua'),
(85743, 'https://ror.org/04gdy7m85', 'en', 0, 'https://ror.org/04gdy7m85 Duke University Center for International Studies'),
(85744, 'https://ror.org/04jmjfm51', 'en', 0, 'https://ror.org/04jmjfm51 Stanislaw Staszic College of Public Administration'),
(85745, 'https://ror.org/00jmbnv79', 'en', 0, 'https://ror.org/00jmbnv79 Council for the Central Laboratory of the Research Councils'),
(85746, 'https://ror.org/0261fbt81', 'no_lang_code', 0, 'https://ror.org/0261fbt81 Fugro (United Kingdom)'),
(85747, 'https://ror.org/00wmr0278', 'en', 0, 'https://ror.org/00wmr0278 Zaporizhzhya State Medical University'),
(85748, 'https://ror.org/040452n49', 'no_lang_code', 0, 'https://ror.org/040452n49 Rio Tinto Alcan (Canada)'),
(85749, 'https://ror.org/05ht4p406', 'en', 0, 'https://ror.org/05ht4p406 Indiana University School of Medicine - Lafayette'),
(85750, 'https://ror.org/049faca05', 'no_lang_code', 0, 'https://ror.org/049faca05 Garrad Hassan and Partners'),
(85751, 'https://ror.org/05jakwq38', 'no_lang_code', 0, 'https://ror.org/05jakwq38 EMD Millipore (United States)'),
(85752, 'https://ror.org/01pshtn13', 'no_lang_code', 0, 'https://ror.org/01pshtn13 Berner & Mattner (Germany)'),
(85753, 'https://ror.org/05gmfwq98', 'en', 0, 'https://ror.org/05gmfwq98 Samara State University of Architecture and Civil Engineering'),
(85754, 'https://ror.org/010hy0139', 'no_lang_code', 0, 'https://ror.org/010hy0139 Aerpio Pharmaceuticals (United States)'),
(85755, 'https://ror.org/00enb8s04', 'de', 0, 'https://ror.org/00enb8s04 Rhoen-Klinikum AG'),
(85756, 'https://ror.org/01f4fjg15', 'fr', 0, 'https://ror.org/01f4fjg15 Institut International d’IngĆ©nierie de l’Eau et de l’Environnement'),
(85757, 'https://ror.org/007rbph39', 'no_lang_code', 0, 'https://ror.org/007rbph39 Willis Towers Watson (United Kingdom)'),
(85758, 'https://ror.org/04zsc7626', 'no_lang_code', 0, 'https://ror.org/04zsc7626 SP Processum (Sweden)'),
(85759, 'https://ror.org/016qpct33', 'en', 0, 'https://ror.org/016qpct33 Shanghai Information Center for Life Sciences äø­å›½ē§‘å­¦é™¢äøŠęµ·ē”Ÿå‘½ē§‘å­¦äæ”ęÆäø­åæƒå­¦ä¼šå·„ä½œéƒØ'),
(85760, 'https://ror.org/015yd1014', 'en', 0, 'https://ror.org/015yd1014 South Carolina Educational Television Commission'),
(85761, 'https://ror.org/05m22kb23', 'en', 0, 'https://ror.org/05m22kb23 University of Gilan'),
(85762, 'https://ror.org/05fdfws23', 'no_lang_code', 0, 'https://ror.org/05fdfws23 Swedish ICT Research (Sweden)'),
(85763, 'https://ror.org/02xccmw71', 'en', 0, 'https://ror.org/02xccmw71 The Courtald Institute of Art'),
(85764, 'https://ror.org/02cvyrs30', 'no_lang_code', 0, 'https://ror.org/02cvyrs30 Nottingham Scientific (United Kingdom)'),
(85765, 'https://ror.org/02dge1w38', 'no_lang_code', 0, 'https://ror.org/02dge1w38 LumaSense Technologies (United States)'),
(85766, 'https://ror.org/020gbzh45', 'no_lang_code', 0, 'https://ror.org/020gbzh45 Grupo Antolin (Spain)'),
(85767, 'https://ror.org/05x3ja451', 'no_lang_code', 0, 'https://ror.org/05x3ja451 RƩseau FerrƩ de France (France)'),
(85768, 'https://ror.org/00ww23688', 'no_lang_code', 0, 'https://ror.org/00ww23688 Crystal Research (United States)'),
(85769, 'https://ror.org/038sf5j07', 'no_lang_code', 0, 'https://ror.org/038sf5j07 Deutsche Telekom (Germany)'),
(85770, 'https://ror.org/01ngf4s29', 'no_lang_code', 0, 'https://ror.org/01ngf4s29 OM Group (Canada)'),
(85771, 'https://ror.org/03a7gbr86', 'en', 0, 'https://ror.org/03a7gbr86 Penn State Lehigh Valley'),
(85772, 'https://ror.org/04s0r4q84', 'fr', 0, 'https://ror.org/04s0r4q84 Metaleurop'),
(85773, 'https://ror.org/03vnp8h67', 'en', 0, 'https://ror.org/03vnp8h67 Benenden Hospital Trust'),
(85774, 'https://ror.org/03e3xkh49', 'it', 0, 'https://ror.org/03e3xkh49 Museo tridentino di scienze naturali'),
(85775, 'https://ror.org/02gekzd14', 'no_lang_code', 0, 'https://ror.org/02gekzd14 Biosurface Engineering Technologies (United States)'),
(85776, 'https://ror.org/058yr9c17', 'no_lang_code', 0, 'https://ror.org/058yr9c17 Atego (United Kingdom)'),
(85777, 'https://ror.org/02aq81f26', 'en', 0, 'https://ror.org/02aq81f26 Power and Water University of Technology دانؓگاه صنعت Ų¢ŲØ و برق'),
(85778, 'https://ror.org/009kabt51', 'en', 0, 'https://ror.org/009kabt51 Miami University Middletown'),
(85779, 'https://ror.org/0064a4q73', 'no_lang_code', 0, 'https://ror.org/0064a4q73 Oncothyreon (United States)'),
(85780, 'https://ror.org/028cac364', 'no_lang_code', 0, 'https://ror.org/028cac364 MSL Group (Spain)'),
(85781, 'https://ror.org/01wg1af73', 'en', 0, 'https://ror.org/01wg1af73 Shirayuri Women''s University'),
(85782, 'https://ror.org/02c1gbw96', 'en', 0, 'https://ror.org/02c1gbw96 Blue Mountains International Hotel Management School'),
(85783, 'https://ror.org/01vf2g217', 'en', 0, 'https://ror.org/01vf2g217 University of California - San Diego School of Medicine'),
(85784, 'https://ror.org/02qsm8v61', 'en', 0, 'https://ror.org/02qsm8v61 Institute of Health ZdravotnĆ­ Ćŗstav se sĆ­dlem v Ostravě'),
(85785, 'https://ror.org/05d5rcv87', 'no_lang_code', 0, 'https://ror.org/05d5rcv87 MSC Software (United States)'),
(85786, 'https://ror.org/04mc00f74', 'en', 0, 'https://ror.org/04mc00f74 United Nations Department of Peacekeeping Operations'),
(85787, 'https://ror.org/0006jh821', 'en', 0, 'https://ror.org/0006jh821 Preventative Health'),
(85788, 'https://ror.org/00kts8c89', 'en', 0, 'https://ror.org/00kts8c89 MRC Clinical Sciences Centre'),
(85789, 'https://ror.org/01kz10v29', 'no_lang_code', 0, 'https://ror.org/01kz10v29 ABS Materials (United States)'),
(85790, 'https://ror.org/01jdgyj97', 'no_lang_code', 0, 'https://ror.org/01jdgyj97 ECI Telecom (United States)'),
(85791, 'https://ror.org/02kpjab54', 'no_lang_code', 0, 'https://ror.org/02kpjab54 Innventia (Sweden)'),
(85792, 'https://ror.org/04smkqg74', 'en', 0, 'https://ror.org/04smkqg74 Drug Development and Discovery'),
(85793, 'https://ror.org/059zhgd27', 'en', 0, 'https://ror.org/059zhgd27 National Latino Cosmetology Association'),
(85794, 'https://ror.org/01y5gea39', 'no_lang_code', 0, 'https://ror.org/01y5gea39 Catalana de Gas (Spain)'),
(85795, 'https://ror.org/00ed4yt46', 'no_lang_code', 0, 'https://ror.org/00ed4yt46 Esterline (France)'),
(85796, 'https://ror.org/026fcde03', 'en', 0, 'https://ror.org/026fcde03 Institute of Commerce and Business'),
(85797, 'https://ror.org/007p95871', 'no_lang_code', 0, 'https://ror.org/007p95871 Rohwedder (Germany)'),
(85798, 'https://ror.org/04v55xt17', 'no_lang_code', 0, 'https://ror.org/04v55xt17 WorldFish'),
(85799, 'https://ror.org/03e7f7438', 'en', 0, 'https://ror.org/03e7f7438 Haderslev Hospital Haderslev Sygehus'),
(85800, 'https://ror.org/05jvhyf45', 'no_lang_code', 0, 'https://ror.org/05jvhyf45 Blue Marble Game (United States)'),
(85801, 'https://ror.org/01peqkm92', 'fr', 0, 'https://ror.org/01peqkm92 Institut Universitaire International Luxembourg'),
(85802, 'https://ror.org/04nhg3e68', 'en', 0, 'https://ror.org/04nhg3e68 Lindenwood University – Belleville'),
(85803, 'https://ror.org/00pvwv628', 'en', 0, 'https://ror.org/00pvwv628 Long Island University Brentwood'),
(85804, 'https://ror.org/021zxbz90', 'no_lang_code', 0, 'https://ror.org/021zxbz90 Filter Sensing Technologies (United States)'),
(85805, 'https://ror.org/04bhxdg86', 'no_lang_code', 0, 'https://ror.org/04bhxdg86 Altec (Greece)'),
(85806, 'https://ror.org/03g75j190', 'en', 0, 'https://ror.org/03g75j190 Instituto Internacional para Tecnologia de Programação da Universidade das Nações Unidas International Institute for Software Technology'),
(85807, 'https://ror.org/056yav047', 'sk', 0, 'https://ror.org/056yav047 Spoločnosń Pro Historia'),
(85808, 'https://ror.org/003n6yt61', 'no_lang_code', 0, 'https://ror.org/003n6yt61 Derma Sciences (United States)'),
(85809, 'https://ror.org/01yshzf86', 'en', 0, 'https://ror.org/01yshzf86 Department of Family and Community Services'),
(85810, 'https://ror.org/00m2bs514', 'no_lang_code', 0, 'https://ror.org/00m2bs514 BTG (United States)'),
(85811, 'https://ror.org/00s2gmc58', 'en', 0, 'https://ror.org/00s2gmc58 Central College Nottingham'),
(85812, 'https://ror.org/041xs8a23', 'en', 0, 'https://ror.org/041xs8a23 University of North Carolina School of Medicine'),
(85813, 'https://ror.org/049a1qr95', 'es', 0, 'https://ror.org/049a1qr95 Consultores De Automatización Y Robótica'),
(85814, 'https://ror.org/01rs9wc41', 'en', 0, 'https://ror.org/01rs9wc41 Deutsche Forschungsanstalt für Lebensmittelchemie, Leibniz Institut German Research Centre for Food Chemistry'),
(85815, 'https://ror.org/04tpd3r25', 'no_lang_code', 0, 'https://ror.org/04tpd3r25 Tohwa University'),
(85816, 'https://ror.org/02jkfsz60', 'no_lang_code', 0, 'https://ror.org/02jkfsz60 Smart Fibres (United Kingdom)'),
(85817, 'https://ror.org/00ftxzd18', 'en', 0, 'https://ror.org/00ftxzd18 Penn State Harrisburg'),
(85818, 'https://ror.org/04mvjgw79', 'no_lang_code', 0, 'https://ror.org/04mvjgw79 Amec Foster Wheeler (United Kingdom)'),
(85819, 'https://ror.org/020g50164', 'en', 0, 'https://ror.org/020g50164 St John''s Innovation Centre'),
(85820, 'https://ror.org/01antkr91', 'nl', 0, 'https://ror.org/01antkr91 Agency for Innovation by Science and Technology Agentschap voor Innovatie door Wetenschap en Technologie'),
(85821, 'https://ror.org/0143q4j07', 'en', 0, 'https://ror.org/0143q4j07 Center for Power Electronics Systems'),
(85822, 'https://ror.org/04acw6x47', 'en', 0, 'https://ror.org/04acw6x47 Panhandle Plains Historical Society'),
(85823, 'https://ror.org/016fwax73', 'sv', 0, 'https://ror.org/016fwax73 LantmƤnnen'),
(85824, 'https://ror.org/047jt1w68', 'no_lang_code', 0, 'https://ror.org/047jt1w68 Iveco (Germany)'),
(85825, 'https://ror.org/03471h083', 'no_lang_code', 0, 'https://ror.org/03471h083 Aker Solutions (Norway)'),
(85826, 'https://ror.org/04knzwb58', 'de', 0, 'https://ror.org/04knzwb58 Virchow Klinikum'),
(85827, 'https://ror.org/052n1g304', 'en', 0, 'https://ror.org/052n1g304 Social Insurance Central General Hospital ę±äŗ¬å±±ę‰‹ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(85828, 'https://ror.org/00qyhsw43', 'no_lang_code', 0, 'https://ror.org/00qyhsw43 EADS Innovation Works (Germany)'),
(85829, 'https://ror.org/03kj6ny93', 'en', 0, 'https://ror.org/03kj6ny93 National Optical Astronomy Observatory'),
(85830, 'https://ror.org/03098p783', 'no_lang_code', 0, 'https://ror.org/03098p783 Librede (United States)'),
(85831, 'https://ror.org/05h99r523', 'en', 0, 'https://ror.org/05h99r523 United Nations High Commissioner for Refugees'),
(85832, 'https://ror.org/041xya991', 'en', 0, 'https://ror.org/041xya991 University of Wisconsin School of Medicine and Public Health'),
(85833, 'https://ror.org/03k8xem21', 'en', 0, 'https://ror.org/03k8xem21 St Mark''s Hospital'),
(85834, 'https://ror.org/01btj3e04', 'no_lang_code', 0, 'https://ror.org/01btj3e04 Rank Hovis McDougall (United Kingdom)'),
(85835, 'https://ror.org/00gezkv41', 'en', 0, 'https://ror.org/00gezkv41 Dublin Dental Hospital'),
(85836, 'https://ror.org/0159sjw70', 'en', 0, 'https://ror.org/0159sjw70 Gateway Technical College'),
(85837, 'https://ror.org/01amqts42', 'no_lang_code', 0, 'https://ror.org/01amqts42 European Association of the Machine Tool Industries'),
(85838, 'https://ror.org/033952e86', 'no_lang_code', 0, 'https://ror.org/033952e86 Danube Integrated Circuit Engineering (Austria)'),
(85839, 'https://ror.org/01k3c1d76', 'no_lang_code', 0, 'https://ror.org/01k3c1d76 SK holdings (South Korea)'),
(85840, 'https://ror.org/01zvgd947', 'en', 0, 'https://ror.org/01zvgd947 Irkutsk State Linguistic University Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85841, 'https://ror.org/01bc2bh93', 'no_lang_code', 0, 'https://ror.org/01bc2bh93 SGL Group (Poland)'),
(85842, 'https://ror.org/00hnk2d42', 'no_lang_code', 0, 'https://ror.org/00hnk2d42 B/E Aerospace (United States)'),
(85843, 'https://ror.org/03141x181', 'en', 0, 'https://ror.org/03141x181 Krasnoyarsk State Agrarian University ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85844, 'https://ror.org/01yw0yc03', 'no_lang_code', 0, 'https://ror.org/01yw0yc03 Icagen (United States)'),
(85845, 'https://ror.org/02hw13769', 'no_lang_code', 0, 'https://ror.org/02hw13769 Aker Solutions (United Kingdom)'),
(85846, 'https://ror.org/023xp4j45', 'no_lang_code', 0, 'https://ror.org/023xp4j45 Ingeniería Energética y de Contaminación (Spain)'),
(85847, 'https://ror.org/03emsts46', 'fr', 0, 'https://ror.org/03emsts46 Centre MƩdical de l''Institut Pasteur'),
(85848, 'https://ror.org/03jk08729', 'no_lang_code', 0, 'https://ror.org/03jk08729 Tokushima Shimbun å¾³å³¶ę–°čž'),
(85849, 'https://ror.org/02wdczb11', 'en', 0, 'https://ror.org/02wdczb11 Serlin Maternity Hospital'),
(85850, 'https://ror.org/005cqnj98', 'no_lang_code', 0, 'https://ror.org/005cqnj98 Testia (France)'),
(85851, 'https://ror.org/05r3a8v08', 'en', 0, 'https://ror.org/05r3a8v08 Texas Tech University'),
(85852, 'https://ror.org/02njcts69', 'no_lang_code', 0, 'https://ror.org/02njcts69 Therapeutics Systems Research Laboratories (United States)'),
(85853, 'https://ror.org/020vp0d02', 'no_lang_code', 0, 'https://ror.org/020vp0d02 Ambion Diagnostics'),
(85854, 'https://ror.org/00tybxn16', 'en', 0, 'https://ror.org/00tybxn16 Ivanovo State Academy of Agriculture'),
(85855, 'https://ror.org/04qtnm446', 'en', 0, 'https://ror.org/04qtnm446 Republican Clinical Oncology Center Республиканский клинический онкологический Гиспансер'),
(85856, 'https://ror.org/02yqjxa29', 'en', 0, 'https://ror.org/02yqjxa29 University Hospital of North Staffordshire NHS Trust'),
(85857, 'https://ror.org/01txv0n63', 'no_lang_code', 0, 'https://ror.org/01txv0n63 Hstar Technologies Corporation (United States)'),
(85858, 'https://ror.org/028eykw65', 'no_lang_code', 0, 'https://ror.org/028eykw65 Integrated Photonics (United States)'),
(85859, 'https://ror.org/05syjtj03', 'en', 0, 'https://ror.org/05syjtj03 North York General Hospital'),
(85860, 'https://ror.org/008a1t746', 'en', 0, 'https://ror.org/008a1t746 South Russian State Technical University Южно-Российский Š³Š¾ŃŃƒŠ“арственный политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85861, 'https://ror.org/03mx5z252', 'en', 0, 'https://ror.org/03mx5z252 University of Natural Resources and Applied Life Sciences'),
(85862, 'https://ror.org/03bmy7510', 'no_lang_code', 0, 'https://ror.org/03bmy7510 Cameron (Norway)'),
(85863, 'https://ror.org/02sz60b38', 'no_lang_code', 0, 'https://ror.org/02sz60b38 Sigma Technologies International (United States)'),
(85864, 'https://ror.org/00pwy5433', 'de', 0, 'https://ror.org/00pwy5433 artec Forschungszentrum Nachhailtigkeit'),
(85865, 'https://ror.org/00wjmdk95', 'en', 0, 'https://ror.org/00wjmdk95 Dutch Institute for Alcohol Policy STAP Nederlands Instituut voor Alcoholbeleid STAP'),
(85866, 'https://ror.org/05tqs2r80', 'no_lang_code', 0, 'https://ror.org/05tqs2r80 Bioptigen (United States)'),
(85867, 'https://ror.org/01b36kf40', 'en', 0, 'https://ror.org/01b36kf40 International Center for Agricultural Research in the Dry Areas'),
(85868, 'https://ror.org/00wtxb773', 'en', 0, 'https://ror.org/00wtxb773 University Sakartvelo'),
(85869, 'https://ror.org/03dtdvk23', 'it', 0, 'https://ror.org/03dtdvk23 Consorzio Interuniversitario Risonanze Magnetiche di Metallo Proteine'),
(85870, 'https://ror.org/01zh3r972', 'en', 0, 'https://ror.org/01zh3r972 Tyumen State Architectural University'),
(85871, 'https://ror.org/051dz3837', 'fr', 0, 'https://ror.org/051dz3837 Laboratoire d''Etude de et ContrƓle de l''Environnement SidƩrurgique'),
(85872, 'https://ror.org/04amr5534', 'no_lang_code', 0, 'https://ror.org/04amr5534 GE Global Research (Germany)'),
(85873, 'https://ror.org/03h9agz54', 'en', 0, 'https://ror.org/03h9agz54 St. Luke''s Hospital and Health Network'),
(85874, 'https://ror.org/02bs2pe45', 'no_lang_code', 0, 'https://ror.org/02bs2pe45 BIOVIA (United Kingdom)'),
(85875, 'https://ror.org/046jtwe58', 'no_lang_code', 0, 'https://ror.org/046jtwe58 Eramet (Belgium)'),
(85876, 'https://ror.org/01rfjcw16', 'en', 0, 'https://ror.org/01rfjcw16 Asian University'),
(85877, 'https://ror.org/03dpaea16', 'no_lang_code', 0, 'https://ror.org/03dpaea16 SK Techx (South Korea)'),
(85878, 'https://ror.org/02x5a4z89', 'en', 0, 'https://ror.org/02x5a4z89 Argosy University'),
(85879, 'https://ror.org/03rfg1a07', 'no_lang_code', 0, 'https://ror.org/03rfg1a07 TTP (United Kingdom)'),
(85880, 'https://ror.org/05rt1m861', 'no_lang_code', 0, 'https://ror.org/05rt1m861 Repros Therapeutics (United States)'),
(85881, 'https://ror.org/01j1t7z95', 'en', 0, 'https://ror.org/01j1t7z95 Bayfront Health'),
(85882, 'https://ror.org/0267f2q17', 'en', 0, 'https://ror.org/0267f2q17 National University of Water and Environmental Engineering ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного госпоГарства та ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń'),
(85883, 'https://ror.org/00degky91', 'en', 0, 'https://ror.org/00degky91 United Nations Office on Drugs and Crime'),
(85884, 'https://ror.org/0422zmn76', 'en', 0, 'https://ror.org/0422zmn76 University of New Mexico - Taos'),
(85885, 'https://ror.org/02kx8pc24', 'en', 0, 'https://ror.org/02kx8pc24 University of Wisconsin–Fox Valley'),
(85886, 'https://ror.org/033024615', 'en', 0, 'https://ror.org/033024615 St.Vincent Health'),
(85887, 'https://ror.org/02zaw3f73', 'no_lang_code', 0, 'https://ror.org/02zaw3f73 Fidelity Comtech (United States)'),
(85888, 'https://ror.org/028cc2127', 'en', 0, 'https://ror.org/028cc2127 Honda Research Institute Europe'),
(85889, 'https://ror.org/038cbgv34', 'no_lang_code', 0, 'https://ror.org/038cbgv34 Visual Awareness Research (United States)'),
(85890, 'https://ror.org/02bze9d64', 'en', 0, 'https://ror.org/02bze9d64 Easter Seals North Texas'),
(85891, 'https://ror.org/007peeq98', 'en', 0, 'https://ror.org/007peeq98 Dallas Personal Injury Lawyer'),
(85892, 'https://ror.org/01de9k933', 'en', 0, 'https://ror.org/01de9k933 Texas A&M Health Science Center'),
(85893, 'https://ror.org/002ak8r79', 'no_lang_code', 0, 'https://ror.org/002ak8r79 BMT Fluid Mechanics (United Kingdom)'),
(85894, 'https://ror.org/00rkqp577', 'en', 0, 'https://ror.org/00rkqp577 LCPL Pathan'),
(85895, 'https://ror.org/05qjnd304', 'es', 0, 'https://ror.org/05qjnd304 Universidad Interamericana de Costa Rica'),
(85896, 'https://ror.org/03wevmz92', 'en', 0, 'https://ror.org/03wevmz92 Harvard Medical School'),
(85897, 'https://ror.org/03v6aw108', 'no_lang_code', 0, 'https://ror.org/03v6aw108 Zodiac Aerospace (France)'),
(85898, 'https://ror.org/03erw8v43', 'no_lang_code', 0, 'https://ror.org/03erw8v43 Interoute (United Kingdom)'),
(85899, 'https://ror.org/05k1kjv94', 'no_lang_code', 0, 'https://ror.org/05k1kjv94 MDA Information Systems (United States)'),
(85900, 'https://ror.org/01ss82r26', 'en', 0, 'https://ror.org/01ss82r26 International Food Policy Research Institute'),
(85901, 'https://ror.org/03tpxcy37', 'en', 0, 'https://ror.org/03tpxcy37 Regional Institute of Ophthalmology Kolkata ą¦°ą¦æą¦œą¦æą¦“ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦…ą¦Ŗą¦„ą§ą¦Æą¦¾ą¦²ą¦®ą§‹ą¦²ą¦œą¦æ'),
(85902, 'https://ror.org/01ypf6171', 'no_lang_code', 0, 'https://ror.org/01ypf6171 XRpro (United States)'),
(85903, 'https://ror.org/05jar4049', 'en', 0, 'https://ror.org/05jar4049 Advanced Biotechnology Center Centro Biotecnologie Avanzate'),
(85904, 'https://ror.org/05fwpym07', 'no_lang_code', 0, 'https://ror.org/05fwpym07 Crystal Bioscience (United States)'),
(85905, 'https://ror.org/05cfhm219', 'en', 0, 'https://ror.org/05cfhm219 Texas Woman''s University'),
(85906, 'https://ror.org/03wr82v18', 'no_lang_code', 0, 'https://ror.org/03wr82v18 Zabala (Spain)'),
(85907, 'https://ror.org/024828251', 'no_lang_code', 0, 'https://ror.org/024828251 Holcim (Canada)'),
(85908, 'https://ror.org/042hm6e56', 'no_lang_code', 0, 'https://ror.org/042hm6e56 LM Wind Power (Netherlands)'),
(85909, 'https://ror.org/00a787753', 'en', 0, 'https://ror.org/00a787753 Penn State Mont Alto'),
(85910, 'https://ror.org/018nbd877', 'no_lang_code', 0, 'https://ror.org/018nbd877 Silicon Graphics International (United States)'),
(85911, 'https://ror.org/0358td721', 'en', 0, 'https://ror.org/0358td721 Lake Erie College of Osteopathic Medicine'),
(85912, 'https://ror.org/0484t2d19', 'no_lang_code', 0, 'https://ror.org/0484t2d19 Alticor (United States)'),
(85913, 'https://ror.org/01687me48', 'fr', 0, 'https://ror.org/01687me48 Ɖcole Internationale des Sciences du Traitement de l''Information'),
(85914, 'https://ror.org/048kvyv71', 'it', 0, 'https://ror.org/048kvyv71 Politecnico di Milano - Department of Design'),
(85915, 'https://ror.org/04rjyry04', 'no_lang_code', 0, 'https://ror.org/04rjyry04 Oldham (France)'),
(85916, 'https://ror.org/054gaqk42', 'en', 0, 'https://ror.org/054gaqk42 Moscow International University of Business and Information Technology'),
(85917, 'https://ror.org/04k4bmf32', 'en', 0, 'https://ror.org/04k4bmf32 Naval Medical Research Institute'),
(85918, 'https://ror.org/02vkhpx62', 'no_lang_code', 0, 'https://ror.org/02vkhpx62 Elektrobit (Germany)'),
(85919, 'https://ror.org/02qa85691', 'no_lang_code', 0, 'https://ror.org/02qa85691 Esterline (Canada)'),
(85920, 'https://ror.org/02rg88k70', 'en', 0, 'https://ror.org/02rg88k70 Ministry of Fisheries and Coastal Affairs'),
(85921, 'https://ror.org/03mag3520', 'en', 0, 'https://ror.org/03mag3520 Catholic University of Portugals Institute for Political Studies'),
(85922, 'https://ror.org/00rds8m49', 'no_lang_code', 0, 'https://ror.org/00rds8m49 SK Hynix (South Korea)'),
(85923, 'https://ror.org/00p30gg26', 'no_lang_code', 0, 'https://ror.org/00p30gg26 Rockwell Collins (France)'),
(85924, 'https://ror.org/05b6tm718', 'en', 0, 'https://ror.org/05b6tm718 The Automobile Association'),
(85925, 'https://ror.org/03c0hn950', 'en', 0, 'https://ror.org/03c0hn950 Mundelein College'),
(85926, 'https://ror.org/03b5zc319', 'no_lang_code', 0, 'https://ror.org/03b5zc319 Nortel (United States)'),
(85927, 'https://ror.org/01zmp8b44', 'en', 0, 'https://ror.org/01zmp8b44 Finnish Food Safety Authority Evira'),
(85928, 'https://ror.org/05bmv1v48', 'fr', 0, 'https://ror.org/05bmv1v48 Nationale Einrichtung fur Radioactive Abfälle und angereicherte Spaltmaterialien Nationale Instelling voor Radioactief Afval en verrijkte Splijtstoffen Organisme National des Déchets Radioactifs et des Matières Fissiles Enrichies'),
(85929, 'https://ror.org/02nmehy23', 'fr', 0, 'https://ror.org/02nmehy23 Fondation MƩrieux'),
(85930, 'https://ror.org/05qs2vf43', 'no_lang_code', 0, 'https://ror.org/05qs2vf43 SC IPA SA (Romania)'),
(85931, 'https://ror.org/01ygbkk63', 'no_lang_code', 1, 'https://ror.org/01ygbkk63 GlobalWafers (Singapore)'),
(85932, 'https://ror.org/01jyjfb18', 'no_lang_code', 1, 'https://ror.org/01jyjfb18 C-Link Micro Imaging'),
(85933, 'https://ror.org/03gc8we39', 'en', 1, 'https://ror.org/03gc8we39 Spectrum-Sustainable Development Knowledge Network'),
(85934, 'https://ror.org/00pp5xc73', 'no_lang_code', 1, 'https://ror.org/00pp5xc73 Jeppensen'),
(85935, 'https://ror.org/05d8avs16', 'no_lang_code', 1, 'https://ror.org/05d8avs16 Mitsubishi Chemical (Japan) äø‰č±ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(85936, 'https://ror.org/04dcagg48', 'en', 1, 'https://ror.org/04dcagg48 Bloxwich Hospital'),
(85937, 'https://ror.org/023rffy11', 'en', 1, 'https://ror.org/023rffy11 RIKEN Center for Biosystems Dynamics Research å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ē”Ÿå‘½ę©Ÿčƒ½ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(85938, 'https://ror.org/01rx5dh02', 'no_lang_code', 1, 'https://ror.org/01rx5dh02 RUAG (Switzerland)'),
(85939, 'https://ror.org/00kpq4k75', 'en', 1, 'https://ror.org/00kpq4k75 C.K. Tedam University of Technology and Applied Sciences'),
(85940, 'https://ror.org/02fnq0s83', 'no_lang_code', 1, 'https://ror.org/02fnq0s83 DMG Mori (Japan) DMGę£®ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(85941, 'https://ror.org/04kyt9204', 'en', 1, 'https://ror.org/04kyt9204 Dr. NTR University of Health Sciences NTR ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤ą¤Øą¤Ÿą„€ą¤†ą¤° ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą°Žą°Øą±.టి.ą°†ą°°ą±. ą°†ą°°ą±‹ą°—ą±ą°Æą°¶ą°¾ą°øą±ą°¤ą±ą°° ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(85942, 'https://ror.org/021sjst25', 'no_lang_code', 1, 'https://ror.org/021sjst25 Legrand (France)'),
(85943, 'https://ror.org/05t1dtb26', 'no_lang_code', 1, 'https://ror.org/05t1dtb26 Nexans (United States)'),
(85944, 'https://ror.org/02pc6pc55', 'en', 1, 'https://ror.org/02pc6pc55 Okayama University 岔山大学'),
(85945, 'https://ror.org/05y07xr60', 'no_lang_code', 1, 'https://ror.org/05y07xr60 Latécoère (Czechia)'),
(85946, 'https://ror.org/04se1ts23', 'en', 1, 'https://ror.org/04se1ts23 FIT to be a MOM'),
(85947, 'https://ror.org/01tzp8w95', 'no_lang_code', 1, 'https://ror.org/01tzp8w95 Best Biotech'),
(85948, 'https://ror.org/031npzc88', 'no_lang_code', 1, 'https://ror.org/031npzc88 Mahle (Germany)'),
(85949, 'https://ror.org/00s18gt90', 'en', 1, 'https://ror.org/00s18gt90 Spinal Cord Injury Network'),
(85950, 'https://ror.org/050regf97', 'no_lang_code', 1, 'https://ror.org/050regf97 Science and Technology Corporation (Netherlands)'),
(85951, 'https://ror.org/051e84q87', 'en', 1, 'https://ror.org/051e84q87 Citi University ДИТИ ИЄ ДУРГУУЛЬ'),
(85952, 'https://ror.org/05qc49402', 'en', 1, 'https://ror.org/05qc49402 Central Louisiana Community College'),
(85953, 'https://ror.org/04p22jz17', 'en', 1, 'https://ror.org/04p22jz17 Adithya Institute of Technology'),
(85954, 'https://ror.org/0013ks972', 'en', 0, 'https://ror.org/0013ks972 Dudley and Walsall Mental Health Partnership NHS Trust'),
(85955, 'https://ror.org/02x59s656', 'en', 1, 'https://ror.org/02x59s656 Alagappa Chettiar Government College of Engineering and Technology'),
(85956, 'https://ror.org/0260j1g46', 'en', 1, 'https://ror.org/0260j1g46 Universidad de Massachusetts University of Massachusetts System UniversitƩ du massachusetts'),
(85957, 'https://ror.org/05cxcv046', 'en', 1, 'https://ror.org/05cxcv046 Montenegrin Bureau of Metrology'),
(85958, 'https://ror.org/02kqbjv38', 'en', 1, 'https://ror.org/02kqbjv38 University College of Nabi Akram Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ł†ŲØŪŒ اکرم'),
(85959, 'https://ror.org/04ys00n93', 'en', 1, 'https://ror.org/04ys00n93 Institute for Geometry and Physics'),
(85960, 'https://ror.org/053v00853', 'en', 1, 'https://ror.org/053v00853 UMass Memorial Medical Center'),
(85961, 'https://ror.org/04d3gaq18', 'en', 1, 'https://ror.org/04d3gaq18 Stay in the Shade'),
(85962, 'https://ror.org/055ww1410', 'en', 1, 'https://ror.org/055ww1410 Casa GuaĀ­naĀ­juĀ­ato Quad Cities'),
(85963, 'https://ror.org/03z114n70', 'en', 1, 'https://ror.org/03z114n70 Imazon Institute of Man and Environment of Amazonia Instituto do Homem e Meio Ambiente da AmazƓnia'),
(85964, 'https://ror.org/03k9a4n36', 'en', 1, 'https://ror.org/03k9a4n36 American University of Barbados'),
(85965, 'https://ror.org/028zdr819', 'no_lang_code', 1, 'https://ror.org/028zdr819 SandboxAQ'),
(85966, 'https://ror.org/01w50jw95', 'en', 1, 'https://ror.org/01w50jw95 New England Baptist Hospital'),
(85967, 'https://ror.org/02vdhzt47', 'no_lang_code', 1, 'https://ror.org/02vdhzt47 OmniVision Technologies (Norway)'),
(85968, 'https://ror.org/00gag9968', 'no_lang_code', 1, 'https://ror.org/00gag9968 MFKK Invention and Research Center Services (Hungary)'),
(85969, 'https://ror.org/03qfmjv22', 'no_lang_code', 1, 'https://ror.org/03qfmjv22 IHS Markit (United Kingdom)'),
(85970, 'https://ror.org/05e0dm506', 'en', 1, 'https://ror.org/05e0dm506 IIJ Research Laboratory IIJęŠ€č”“ē ”ē©¶ę‰€'),
(85971, 'https://ror.org/01f0vkh84', 'en', 1, 'https://ror.org/01f0vkh84 ICAP Global Health'),
(85972, 'https://ror.org/01c78y067', 'en', 1, 'https://ror.org/01c78y067 Clinical Hospital No. 8 ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–8'),
(85973, 'https://ror.org/02ns9vb06', 'fr', 1, 'https://ror.org/02ns9vb06 Centre Integre de Sante et de Services Sociaux de Laval'),
(85974, 'https://ror.org/00r6xxj20', 'en', 1, 'https://ror.org/00r6xxj20 Kebri Dehar University'),
(85975, 'https://ror.org/03p6gt485', 'en', 1, 'https://ror.org/03p6gt485 American Medical Association'),
(85976, 'https://ror.org/02rrh0b30', 'de', 1, 'https://ror.org/02rrh0b30 Landesarchiv Baden Württemberg'),
(85977, 'https://ror.org/0321dtg43', 'en', 1, 'https://ror.org/0321dtg43 Environmental Smoke Institute'),
(85978, 'https://ror.org/029rhq550', 'en', 1, 'https://ror.org/029rhq550 Max Planck Institute for Plasma Physics - Greifswald Max-Planck-Institut für Plasmaphysik, Teilinstitut Greifswald'),
(85979, 'https://ror.org/044p0s778', 'no_lang_code', 1, 'https://ror.org/044p0s778 Environmental Energy & Engineering'),
(85980, 'https://ror.org/028x3cg40', 'en', 1, 'https://ror.org/028x3cg40 Isabel Gotzkowsky and Friends'),
(85981, 'https://ror.org/0479zfq62', 'en', 1, 'https://ror.org/0479zfq62 Portuguese Platform of BioImaging'),
(85982, 'https://ror.org/05yhzgv75', 'en', 1, 'https://ror.org/05yhzgv75 Maulana Mukhtar Ahmad Nadvi Technical Campus'),
(85983, 'https://ror.org/040sw6c10', 'en', 1, 'https://ror.org/040sw6c10 Eqrem Ƈabej University Universiteti Eqrem Ƈabej'),
(85984, 'https://ror.org/0080y7t67', 'en', 1, 'https://ror.org/0080y7t67 Max Planck Institute for the Study of Religious and Ethnic Diversity Max-Planck-Institut zur Erforschung Multireligiƶser und Multiethnischer Gesellschaften'),
(85985, 'https://ror.org/02ntv3742', 'en', 1, 'https://ror.org/02ntv3742 Ministry of Natural Resources and Forestry MinistĆØre des Richesses Naturelles et des ForĆŖts'),
(85986, 'https://ror.org/02bjj9p45', 'en', 1, 'https://ror.org/02bjj9p45 Australian Tropical Herbarium'),
(85987, 'https://ror.org/0491xby87', 'no_lang_code', 1, 'https://ror.org/0491xby87 Sweco (Czechia)'),
(85988, 'https://ror.org/01d3r6z34', 'en', 1, 'https://ror.org/01d3r6z34 Brain Imaging Network'),
(85989, 'https://ror.org/03n63vc52', 'en', 1, 'https://ror.org/03n63vc52 The Institute for Regional Conservation'),
(85990, 'https://ror.org/038ehsm73', 'no_lang_code', 1, 'https://ror.org/038ehsm73 Mitsubishi Tanabe Pharma Corporation ē”°č¾ŗäø‰č±č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(85991, 'https://ror.org/01s7fps71', 'en', 1, 'https://ror.org/01s7fps71 Child Neurology Associates'),
(85992, 'https://ror.org/04h30wa73', 'en', 1, 'https://ror.org/04h30wa73 National Standards Authority of Ireland ÚdarĆ”s um ChaighdeĆ”in NĆ”isiĆŗnta na hƉireann'),
(85993, 'https://ror.org/010gf3m33', 'en', 1, 'https://ror.org/010gf3m33 China Industrial Control Systems Cyber Emergency Response Team å›½å®¶å·„äøšäæ”ęÆå®‰å…Øå‘å±•ē ”ē©¶äø­åæƒ'),
(85994, 'https://ror.org/04asyez39', 'es', 1, 'https://ror.org/04asyez39 Universidad Estatal de Sonora'),
(85995, 'https://ror.org/0039d5757', 'pt', 1, 'https://ror.org/0039d5757 Federal University of GoiƔs Universidade Federal de GoiƔs'),
(85996, 'https://ror.org/0258zp205', 'de', 1, 'https://ror.org/0258zp205 Anton Bruckner Institut Linz'),
(85997, 'https://ror.org/00nz0j151', 'en', 0, 'https://ror.org/00nz0j151 Open Geospatial Consortium'),
(85998, 'https://ror.org/00pjcpb77', 'it', 1, 'https://ror.org/00pjcpb77 Ente Regionale per i Servizi all''Agricoltura e alle Foreste'),
(85999, 'https://ror.org/00hevc163', 'no_lang_code', 1, 'https://ror.org/00hevc163 Manz (Italy)'),
(86000, 'https://ror.org/001d2bp15', 'en', 1, 'https://ror.org/001d2bp15 Community Mercy Health Partners'),
(86001, 'https://ror.org/03xh8px24', 'en', 1, 'https://ror.org/03xh8px24 Finnish Biomedical Imaging Node'),
(86002, 'https://ror.org/01r2xg724', 'pt', 1, 'https://ror.org/01r2xg724 Fundação SOS Mata Atlântica SOS Mata Atlântica Foundation'),
(86003, 'https://ror.org/00vbjyq64', 'fr', 1, 'https://ror.org/00vbjyq64 Centre IntĆ©grĆ© Universitaire de SantĆ© et de Services Sociaux du Saguenay–Lac-Saint-Jean'),
(86004, 'https://ror.org/012wsxz85', 'en', 1, 'https://ror.org/012wsxz85 State Key Laboratory of Hydrology-Water Resources and Hydraulic Engineering ę°“ę–‡ę°“čµ„ęŗäøŽę°“åˆ©å·„ēØ‹ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(86005, 'https://ror.org/052wyby60', 'no_lang_code', 1, 'https://ror.org/052wyby60 Bionnovation (Brazil)'),
(86006, 'https://ror.org/01y9s4r06', 'en', 1, 'https://ror.org/01y9s4r06 Our Lady of the Lake Regional Medical Center'),
(86007, 'https://ror.org/01gc0n970', 'en', 1, 'https://ror.org/01gc0n970 Kaishi Professional University 開志専門職大学'),
(86008, 'https://ror.org/01hky8m83', 'en', 1, 'https://ror.org/01hky8m83 Kyushu Rosai Hospital ä¹å·žåŠ“ē½ē—…é™¢'),
(86009, 'https://ror.org/00h3qhh74', 'en', 1, 'https://ror.org/00h3qhh74 Advanced Light Microscopy Italian Node'),
(86010, 'https://ror.org/0568ttb16', 'en', 1, 'https://ror.org/0568ttb16 University of Technology and Applied Sciences - Al Mussanah Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚Ų© بالمصنعة'),
(86011, 'https://ror.org/03ywrrr62', 'en', 1, 'https://ror.org/03ywrrr62 Tohoku Medical and Pharmaceutical University Hospital ę±åŒ—åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(86012, 'https://ror.org/005azck40', 'en', 1, 'https://ror.org/005azck40 Villa College'),
(86013, 'https://ror.org/04jbf9x18', 'en', 1, 'https://ror.org/04jbf9x18 Southwest China Institute of Electronic Technology č„æå—ē”µå­ęŠ€ęœÆē ”ē©¶ę‰€'),
(86014, 'https://ror.org/058cn0t62', 'no_lang_code', 1, 'https://ror.org/058cn0t62 Cerene Biomedics'),
(86015, 'https://ror.org/01mvkrv07', 'en', 1, 'https://ror.org/01mvkrv07 Institute of Chinese Literature and Philosophy, Academia Sinica äø­å¤®ē ”ē©¶é™¢äø­åœ‹ę–‡å“²ē ”ē©¶ę‰€'),
(86016, 'https://ror.org/02f5a3t64', 'en', 1, 'https://ror.org/02f5a3t64 Black Country Healthcare NHS Foundation Trust'),
(86017, 'https://ror.org/015zdqm30', 'en', 1, 'https://ror.org/015zdqm30 Federal Technical and Vocational Education and Training Institute'),
(86018, 'https://ror.org/042xxdh20', 'en', 1, 'https://ror.org/042xxdh20 Hochschule für Wirtschaft und Gesellschaft Ludwigshafen Ludwigshafen University of Business and Society'),
(86019, 'https://ror.org/00czh4843', 'en', 1, 'https://ror.org/00czh4843 National Biotechnology Development Agency'),
(86020, 'https://ror.org/039hegs97', 'no_lang_code', 1, 'https://ror.org/039hegs97 Yara (Germany)'),
(86021, 'https://ror.org/04bfyrw82', 'en', 1, 'https://ror.org/04bfyrw82 National Scientific Centre "Institute of Metrology" ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрології»'),
(86022, 'https://ror.org/0098hst83', 'no_lang_code', 1, 'https://ror.org/0098hst83 China Electronics Technology Group Corporation äø­å›½ē”µå­ē§‘ęŠ€é›†å›¢å…¬åø'),
(86023, 'https://ror.org/00ya5k859', 'no_lang_code', 1, 'https://ror.org/00ya5k859 Cargill (United Kingdom)'),
(86024, 'https://ror.org/03zmrx174', 'en', 1, 'https://ror.org/03zmrx174 Italian Cultural Institute, Tunis المعهد Ų§Ł„Ų„ŁŠŲ·Ų§Ł„ŁŠ للثقافة'),
(86025, 'https://ror.org/039yfgp64', 'en', 1, 'https://ror.org/039yfgp64 Greater Lawrence Family Health Center'),
(86026, 'https://ror.org/0039sga55', 'no_lang_code', 1, 'https://ror.org/0039sga55 Mahle (Austria)'),
(86027, 'https://ror.org/003wdqw68', 'en', 1, 'https://ror.org/003wdqw68 Kyiv Medical University ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(86028, 'https://ror.org/024yvgp47', 'en', 1, 'https://ror.org/024yvgp47 Vardhaman College of Engineering'),
(86029, 'https://ror.org/01y7vt929', 'en', 1, 'https://ror.org/01y7vt929 France-BioImaging'),
(86030, 'https://ror.org/0094hc805', 'en', 1, 'https://ror.org/0094hc805 Center for Advanced Preclinical Imaging Centrum pokročilĆ©ho preklinickĆ©ho zobrazovĆ”nĆ­'),
(86031, 'https://ror.org/01cncp846', 'en', 1, 'https://ror.org/01cncp846 Italian Cultural Institute, London'),
(86032, 'https://ror.org/015e2vx95', 'en', 1, 'https://ror.org/015e2vx95 Italian Cultural Institute, Tokyo ć‚¤ć‚æćƒŖć‚¢ę–‡åŒ–ä¼šé¤Ø'),
(86033, 'https://ror.org/0076mt865', 'no_lang_code', 1, 'https://ror.org/0076mt865 Cohu (United States)'),
(86034, 'https://ror.org/008tj9y10', 'en', 1, 'https://ror.org/008tj9y10 Badan Penelitian dan Pengembangan Kota Pekanbaru Research and Development Agency of Pekanbaru City'),
(86035, 'https://ror.org/04nn36f62', 'en', 0, 'https://ror.org/04nn36f62 Skills'),
(86036, 'https://ror.org/05xkke381', 'en', 1, 'https://ror.org/05xkke381 Keck Institute for Space Studies'),
(86037, 'https://ror.org/02ffp5292', 'en', 1, 'https://ror.org/02ffp5292 William Hill Manor'),
(86038, 'https://ror.org/03qrwy954', 'en', 1, 'https://ror.org/03qrwy954 OSF Saint Francis Medical Center'),
(86039, 'https://ror.org/0296s7206', 'en', 1, 'https://ror.org/0296s7206 Vietnam Metrology Institute Viện Đo lĘ°į»ng Việt Nam'),
(86040, 'https://ror.org/05c4bsk60', 'no_lang_code', 1, 'https://ror.org/05c4bsk60 Internet Initiative Japan ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆć‚¤ćƒ‹ć‚·ć‚¢ćƒ†ć‚£ćƒ–'),
(86041, 'https://ror.org/014jrg624', 'en', 1, 'https://ror.org/014jrg624 Catholic Big Sisters & Big Brothers'),
(86042, 'https://ror.org/020hftj25', 'fr', 1, 'https://ror.org/020hftj25 Centre IntƩgrƩ de SantƩ et Services Sociaux de la GaspƩsie'),
(86043, 'https://ror.org/01pyqxp87', 'en', 1, 'https://ror.org/01pyqxp87 Talas State University Талас ŠœŠ°Š¼Š»ŠµŠŗŠµŃ‚Ń‚ŠøŠŗ Университети'),
(86044, 'https://ror.org/02js45493', 'no_lang_code', 1, 'https://ror.org/02js45493 Trelleborg (Norway)'),
(86045, 'https://ror.org/0264mz016', 'en', 1, 'https://ror.org/0264mz016 Universiteti i ShkencĆ«s sĆ« Informacionit dhe TeknologjisĆ« ShĆ«n Apostull Pavli University of Information Science and Technology St. Paul The Apostle Универзитет за информатички науки Šø технологии Дв. Апостол Павле'),
(86046, 'https://ror.org/00qvt4f90', 'en', 1, 'https://ror.org/00qvt4f90 Forestmoon'),
(86047, 'https://ror.org/020f9s554', 'pt', 1, 'https://ror.org/020f9s554 Instituto de Pesquisa Ambiental da AmazƓnia'),
(86048, 'https://ror.org/00aapa202', 'en', 1, 'https://ror.org/00aapa202 Kanagawa Cancer Center ē„žå„ˆå·ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(86049, 'https://ror.org/05xktrc94', 'no_lang_code', 1, 'https://ror.org/05xktrc94 Amcor (Germany)'),
(86050, 'https://ror.org/014eqcp15', 'no_lang_code', 1, 'https://ror.org/014eqcp15 Cyrus Biotechnology'),
(86051, 'https://ror.org/05scd7d31', 'en', 1, 'https://ror.org/05scd7d31 Swedish American Hospital');
INSERT INTO `rors` VALUES
(86052, 'https://ror.org/00q5mfz31', 'en', 1, 'https://ror.org/00q5mfz31 Badan Penelitian dan Pengembangan Provinsi Jawa Timur Research and Development Agency of East Java Province'),
(86053, 'https://ror.org/00x64e042', 'en', 1, 'https://ror.org/00x64e042 Standards and Calibration Laboratory ę ‡å‡†åŠę ”ę­£å®žéŖŒę‰€'),
(86054, 'https://ror.org/0590bqn84', 'en', 1, 'https://ror.org/0590bqn84 Africa First'),
(86055, 'https://ror.org/054fwx336', 'en', 1, 'https://ror.org/054fwx336 Tohoku Medical and Pharmaceutical University Wakabayashi Hospital ę±åŒ—åŒ»ē§‘č–¬ē§‘å¤§å­¦ č‹„ęž—ē—…é™¢'),
(86056, 'https://ror.org/02yq59v27', 'en', 1, 'https://ror.org/02yq59v27 International Psychogeriatric Association'),
(86057, 'https://ror.org/05dg6v104', 'es', 1, 'https://ror.org/05dg6v104 Instituto de Acuacultura del Estado de Sonora'),
(86058, 'https://ror.org/007h69x34', 'no_lang_code', 1, 'https://ror.org/007h69x34 Fibabanka'),
(86059, 'https://ror.org/00wm7p047', 'en', 1, 'https://ror.org/00wm7p047 Meiji Pharmaceutical University ę˜Žę²»č–¬ē§‘å¤§å­¦'),
(86060, 'https://ror.org/039jjgf18', 'no_lang_code', 1, 'https://ror.org/039jjgf18 Mosadex CV (Netherlands)'),
(86061, 'https://ror.org/04mhg2c91', 'en', 1, 'https://ror.org/04mhg2c91 Best Buddies International'),
(86062, 'https://ror.org/05aen6q52', 'no_lang_code', 1, 'https://ror.org/05aen6q52 Garage Brain Science'),
(86063, 'https://ror.org/03391z320', 'en', 1, 'https://ror.org/03391z320 Ukrainian Museum'),
(86064, 'https://ror.org/006gdh705', 'en', 1, 'https://ror.org/006gdh705 Electric Vehicle Challenge'),
(86065, 'https://ror.org/04vpmmn63', 'en', 1, 'https://ror.org/04vpmmn63 Texas Board of Professional Engineers and Land Surveyors'),
(86066, 'https://ror.org/052m3x230', 'en', 1, 'https://ror.org/052m3x230 Louisiana Community and Technical College System'),
(86067, 'https://ror.org/0264zxa45', 'en', 1, 'https://ror.org/0264zxa45 Tohoku Medical and Pharmaceutical University ę±åŒ—č–¬ē§‘å¤§å­¦'),
(86068, 'https://ror.org/0251p9z15', 'en', 0, 'https://ror.org/0251p9z15 Gediz University Gediz Üniversitesi'),
(86069, 'https://ror.org/00hjpwn75', 'en', 1, 'https://ror.org/00hjpwn75 Erasmus Optical Imaging Centre'),
(86070, 'https://ror.org/00e2khh43', 'en', 1, 'https://ror.org/00e2khh43 Career Point University करिअर ą¤Ŗą„‰ą¤‡ą¤‚ą¤Ÿ ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(86071, 'https://ror.org/04x775f65', 'en', 1, 'https://ror.org/04x775f65 International Platform of Registered Systematic Review and Meta-analysis Protocols'),
(86072, 'https://ror.org/05tew9254', 'en', 1, 'https://ror.org/05tew9254 Center for Policy Analysis'),
(86073, 'https://ror.org/03g8dtk63', 'no_lang_code', 1, 'https://ror.org/03g8dtk63 Synapse (Netherlands)'),
(86074, 'https://ror.org/00wg3s094', 'pt', 0, 'https://ror.org/00wg3s094 Instituto Superior de Contabilidade e Administracao do Porto'),
(86075, 'https://ror.org/058548196', 'en', 1, 'https://ror.org/058548196 Tokyo Medical and Dental University Hospital ę±äŗ¬åŒ»ē§‘ę­Æē§‘å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(86076, 'https://ror.org/008cfmj78', 'en', 1, 'https://ror.org/008cfmj78 Wyss Institute for Biologically Inspired Engineering'),
(86077, 'https://ror.org/00z9tq784', 'en', 1, 'https://ror.org/00z9tq784 International Cancer Alternative Network'),
(86078, 'https://ror.org/059h63k52', 'no_lang_code', 1, 'https://ror.org/059h63k52 Schreiner Group (Germany)'),
(86079, 'https://ror.org/03961p817', 'en', 1, 'https://ror.org/03961p817 Dorothy Pattison Hospital'),
(86080, 'https://ror.org/05amyt365', 'en', 1, 'https://ror.org/05amyt365 Directory of Open Access Journals'),
(86081, 'https://ror.org/04pdst769', 'en', 1, 'https://ror.org/04pdst769 Credible Arts Therapies'),
(86082, 'https://ror.org/01tg4ja34', 'es', 1, 'https://ror.org/01tg4ja34 Estación Experimental de Pastos y Forrajes Indio Hatuey'),
(86083, 'https://ror.org/012d0ge65', 'no_lang_code', 1, 'https://ror.org/012d0ge65 AC2T Research (Austria) Ɩsterreichisches Kompetenzzentrum für Tribologie'),
(86084, 'https://ror.org/00effsg46', 'en', 1, 'https://ror.org/00effsg46 Mountain Top University'),
(86085, 'https://ror.org/01rmxff98', 'en', 1, 'https://ror.org/01rmxff98 Institute of Water Problems Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГных проблем Š ŠŠ'),
(86086, 'https://ror.org/05nx3r660', 'en', 1, 'https://ror.org/05nx3r660 Franciscan Missionaries of Our Lady University'),
(86087, 'https://ror.org/05b7fdx35', 'no_lang_code', 1, 'https://ror.org/05b7fdx35 AES (United States)'),
(86088, 'https://ror.org/03pnrt678', 'no_lang_code', 1, 'https://ror.org/03pnrt678 Itron (France)'),
(86089, 'https://ror.org/016c4a879', 'en', 1, 'https://ror.org/016c4a879 Berkshire Medical Center'),
(86090, 'https://ror.org/041c01c38', 'en', 1, 'https://ror.org/041c01c38 Okayama Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å²”å±±åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(86091, 'https://ror.org/00wekhx15', 'en', 1, 'https://ror.org/00wekhx15 Institute of General and Inorganic Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по обща Šø неорганична Ń…ŠøŠ¼ŠøŃ'),
(86092, 'https://ror.org/01x5ywr89', 'no_lang_code', 1, 'https://ror.org/01x5ywr89 Vivendi (France)'),
(86093, 'https://ror.org/01b1j4e13', 'en', 1, 'https://ror.org/01b1j4e13 Institute for High Pressure Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики высоких Гавлений имени'),
(86094, 'https://ror.org/023t1e924', 'en', 1, 'https://ror.org/023t1e924 Institute of Philosophy and Sociology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŃŠ¾Ń†ŠøŠ¾Š»Š¾Š³ŠøŃ'),
(86095, 'https://ror.org/05716x568', 'en', 1, 'https://ror.org/05716x568 Latvijas nacionālais metroloģijas centrs Metrology Bureau'),
(86096, 'https://ror.org/032agg760', 'en', 1, 'https://ror.org/032agg760 University of Tennessee Southern'),
(86097, 'https://ror.org/00c5mwp75', 'no_lang_code', 0, 'https://ror.org/00c5mwp75 Alcatel Lucent (Germany)'),
(86098, 'https://ror.org/04kk6v249', 'en', 0, 'https://ror.org/04kk6v249 Black Country Partnership NHS Foundation Trust'),
(86099, 'https://ror.org/04bjbc484', 'en', 1, 'https://ror.org/04bjbc484 Paralyzed Veterans of America, Buckeye Chapter'),
(86100, 'https://ror.org/052fjv050', 'en', 1, 'https://ror.org/052fjv050 Komi Republican Academy of State Service and Administration'),
(86101, 'https://ror.org/01nxkx765', 'no_lang_code', 1, 'https://ror.org/01nxkx765 S21sec (Spain)'),
(86102, 'https://ror.org/043d4x248', 'en', 1, 'https://ror.org/043d4x248 Quincy University'),
(86103, 'https://ror.org/05d7h6x56', 'en', 1, 'https://ror.org/05d7h6x56 Emirates Metrology Institute معهد الامارات Ł„Ł„Ł…ŲŖŲ±ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(86104, 'https://ror.org/012prn105', 'en', 1, 'https://ror.org/012prn105 Python in Heliophysics Community'),
(86105, 'https://ror.org/02xh0jw52', 'en', 1, 'https://ror.org/02xh0jw52 National Consensus Project for Quality Palliative Care'),
(86106, 'https://ror.org/0573ty638', 'en', 1, 'https://ror.org/0573ty638 Multi-Modal Molecular Imaging Italian Node'),
(86107, 'https://ror.org/0584fw805', 'no_lang_code', 1, 'https://ror.org/0584fw805 Mowi (Canada)'),
(86108, 'https://ror.org/01ztdb698', 'no_lang_code', 1, 'https://ror.org/01ztdb698 Nautilus Environmental'),
(86109, 'https://ror.org/04gycm791', 'en', 1, 'https://ror.org/04gycm791 MRC Institute of Hearing Research'),
(86110, 'https://ror.org/030kz4198', 'en', 1, 'https://ror.org/030kz4198 Scientific Advanced Learning Technologies ą¤øą¤¾ą¤‡ą¤‚ą¤Ÿą¤æą¤«ą¤æą¤• ą¤ą¤”ą¤µą¤¾ą¤‚ą¤ø ą¤²ą¤°ą„ą¤Øą¤æą¤‚ą¤— ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€ą¤œ (ą¤ą¤øą¤ą¤ą¤²ą¤Ÿą„€) ą¤Ÿą„ą¤°ą¤øą„ą¤Ÿ'),
(86111, 'https://ror.org/053xj0761', 'hi', 1, 'https://ror.org/053xj0761 Gurukul Kangri Vishwavidyalaya ą¤—ą„ą¤°ą„ą¤•ą„ą¤² ą¤•ą¤¾ą¤‚ą¤—ą¤”ą¤¼ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(86112, 'https://ror.org/0262ezr32', 'no_lang_code', 1, 'https://ror.org/0262ezr32 Accenture (Germany)'),
(86113, 'https://ror.org/002yxfz10', 'no_lang_code', 1, 'https://ror.org/002yxfz10 ASM International (Netherlands)'),
(86114, 'https://ror.org/03q7kf412', 'fr', 1, 'https://ror.org/03q7kf412 SantƩ MontƩrƩgie'),
(86115, 'https://ror.org/01zj87490', 'id', 1, 'https://ror.org/01zj87490 Institut Ilmu Kesehatan STRADA Indonesia'),
(86116, 'https://ror.org/00zd77s10', 'es', 1, 'https://ror.org/00zd77s10 Ministerio de Educación del Perú Ministry of Education of Peru'),
(86117, 'https://ror.org/01v2b1j25', 'en', 1, 'https://ror.org/01v2b1j25 Eunice Kennedy Shriver Center'),
(86118, 'https://ror.org/05h9f2z18', 'en', 1, 'https://ror.org/05h9f2z18 I Believe'),
(86119, 'https://ror.org/03d2s9h69', 'no_lang_code', 1, 'https://ror.org/03d2s9h69 SYSTRA (France)'),
(86120, 'https://ror.org/00e2sbp20', 'no_lang_code', 1, 'https://ror.org/00e2sbp20 Zhejiang Haikang Zhilian Science and Technology Co. ęµ™ę±Ÿęµ·åŗ·ę™ŗč”ē§‘ęŠ€ęœ‰é™å…¬åø'),
(86121, 'https://ror.org/03t25rb04', 'no_lang_code', 1, 'https://ror.org/03t25rb04 Acorda Therapeutics (Finland)'),
(86122, 'https://ror.org/00fsdxs93', 'en', 1, 'https://ror.org/00fsdxs93 Open Geospatial Consortium'),
(86123, 'https://ror.org/03583sy04', 'en', 1, 'https://ror.org/03583sy04 Federal Center of Brain Research and Neurotechnologies Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ центр мозга Šø нейротехнологий» Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(86124, 'https://ror.org/03t4t2e74', 'en', 0, 'https://ror.org/03t4t2e74 Kyushu Art Institute of Technology ä¹å·žčŠøč”“å·„ē§‘å¤§å­¦'),
(86125, 'https://ror.org/04qdbg778', 'en', 1, 'https://ror.org/04qdbg778 Kyushu University Beppu Hospital ä¹å·žå¤§å­¦ē—…é™¢åˆ„åŗœē—…é™¢'),
(86126, 'https://ror.org/00ex2fc97', 'en', 1, 'https://ror.org/00ex2fc97 Kyushu University Hospital ä¹å·žå¤§å­¦ē—…é™¢'),
(86127, 'https://ror.org/02jdaj147', 'no_lang_code', 1, 'https://ror.org/02jdaj147 Redivis'),
(86128, 'https://ror.org/00msqp585', 'en', 1, 'https://ror.org/00msqp585 University of Fukui ē¦äŗ•å¤§å­¦'),
(86129, 'https://ror.org/01gxxpv20', 'en', 0, 'https://ror.org/01gxxpv20 California Postsecondary Education Commission'),
(86130, 'https://ror.org/036x6gt55', 'en', 1, 'https://ror.org/036x6gt55 North Bristol NHS Trust'),
(86131, 'https://ror.org/037hqka81', 'no_lang_code', 1, 'https://ror.org/037hqka81 Andrei Sakharov Center Centre d''AndreĆÆ Sakharov Да́харовский центр'),
(86132, 'https://ror.org/007pvy114', 'en', 1, 'https://ror.org/007pvy114 OspidƩal na hOllscoile, Port LƔirge University Hospital Waterford'),
(86133, 'https://ror.org/04zte5g15', 'no_lang_code', 1, 'https://ror.org/04zte5g15 Madda Walabu University Yuniversiitii Madda Walaabuu įˆ˜į‹³ į‹ˆįˆ‹į‰” į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(86134, 'https://ror.org/00yq35p59', 'fr', 1, 'https://ror.org/00yq35p59 Center for the history and anthropology of law Centre d''histoire et d''anthropologie du droit'),
(86135, 'https://ror.org/054hq3y71', 'en', 1, 'https://ror.org/054hq3y71 Maharashtra Institute of Medical Education and Research'),
(86136, 'https://ror.org/02rs6vz87', 'cs', 1, 'https://ror.org/02rs6vz87 Karel KomĆ”rek Proměny Foundation Nadace Proměny Karla KomĆ”rka'),
(86137, 'https://ror.org/05yjswp61', 'en', 1, 'https://ror.org/05yjswp61 Czech Agriculture and Food Inspection Authority StĆ”tnĆ­ zemědělskĆ” a potravinÔřskĆ” inspekce'),
(86138, 'https://ror.org/00tq5n859', 'en', 1, 'https://ror.org/00tq5n859 Institute of Nuclear & Radiological Sciences and Technology, Energy & Safety Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī Ļ…ĻĪ·Ī½Ī¹ĪŗĻŽĪ½ & Ī”Ī±Ī“Ī¹ĪæĪ»ĪæĪ³Ī¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ & Τεχνολογίας, Ενέργειας & Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±Ļ‚'),
(86139, 'https://ror.org/03314b546', 'en', 1, 'https://ror.org/03314b546 Theresian Military Academy Theresianische MilitƤrakademie'),
(86140, 'https://ror.org/02jsxsw65', 'es', 1, 'https://ror.org/02jsxsw65 Instituto Tecnológico de Puebla Puebla Technologic Institute'),
(86141, 'https://ror.org/00gpbdx15', 'en', 1, 'https://ror.org/00gpbdx15 Fujita Health University Okazaki Medical Center č—¤ē”°åŒ»ē§‘å¤§å­¦å²”å“ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(86142, 'https://ror.org/04724v550', 'en', 1, 'https://ror.org/04724v550 Feni University ফেনী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(86143, 'https://ror.org/021abm713', 'en', 1, 'https://ror.org/021abm713 Mamlaka ya Usimamizi wa Wanyamapori Tanzania Wildlife Management Authority'),
(86144, 'https://ror.org/01php1d31', 'es', 1, 'https://ror.org/01php1d31 Hospital General de MƩxico'),
(86145, 'https://ror.org/028zspe92', 'en', 1, 'https://ror.org/028zspe92 VA Pacific Islands Health Care System'),
(86146, 'https://ror.org/020r4p198', 'en', 1, 'https://ror.org/020r4p198 Korea Education and Research Information Service ķ•œźµ­źµģœ”ķ•™ģˆ ģ •ė³“ģ›'),
(86147, 'https://ror.org/03w7wc995', 'es', 1, 'https://ror.org/03w7wc995 Institución Educativa Félix Henao Botero'),
(86148, 'https://ror.org/005yj4753', 'en', 1, 'https://ror.org/005yj4753 Associazione per la Promozione della Geoetica International Association for Promoting Geoethics'),
(86149, 'https://ror.org/019kf3481', 'en', 1, 'https://ror.org/019kf3481 OpenAIRE Non-Profit Civil Partnership'),
(86150, 'https://ror.org/047v1x836', 'en', 1, 'https://ror.org/047v1x836 Korea Carbon Capture & Sequestration R&D Center ķ•œźµ­ ķƒ„ģ†Œ ķ¬ģ§‘ ė° 격리 R & D 센터'),
(86151, 'https://ror.org/03ngjpk76', 'no_lang_code', 1, 'https://ror.org/03ngjpk76 General Atomics (United States)'),
(86152, 'https://ror.org/04hazwa85', 'en', 1, 'https://ror.org/04hazwa85 Galerie výtvarnĆ©ho uměnĆ­ v Ostravě Gallery of Fine Arts in Ostrava'),
(86153, 'https://ror.org/048swmy20', 'en', 1, 'https://ror.org/048swmy20 Tokyo Women''s Medical University Adachi Medical Center ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦é™„å±žč¶³ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(86154, 'https://ror.org/00r9w3j27', 'en', 1, 'https://ror.org/00r9w3j27 National Center for Global Health and Medicine å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹å›½éš›åŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(86155, 'https://ror.org/005k30451', 'en', 1, 'https://ror.org/005k30451 Kapiolani Medical Center for Women and Children'),
(86156, 'https://ror.org/0513px229', 'en', 1, 'https://ror.org/0513px229 Central Bohemia Region Středočeský kraj'),
(86157, 'https://ror.org/01z818z22', 'en', 1, 'https://ror.org/01z818z22 Aichi Medical University Medical Center ę„›ēŸ„åŒ»ē§‘å¤§å­¦ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(86158, 'https://ror.org/05e08c338', 'es', 1, 'https://ror.org/05e08c338 Hospital General San Jorge'),
(86159, 'https://ror.org/01pgex273', 'en', 1, 'https://ror.org/01pgex273 Integrated Cardio Metabolic Centre'),
(86160, 'https://ror.org/024e3wj88', 'no_lang_code', 1, 'https://ror.org/024e3wj88 Shaanxi Provincial Land Engineering Construction Group é™•č„æēœåœŸåœ°å·„ēØ‹å»ŗč®¾é›†å›¢ęœ‰é™č“£ä»»å…¬åø'),
(86161, 'https://ror.org/002jrdr94', 'en', 1, 'https://ror.org/002jrdr94 Centre for Transport and Energy Centrum pro dopravu a energetiku'),
(86162, 'https://ror.org/00nydej67', 'en', 0, 'https://ror.org/00nydej67 Levinsky College of Education ×ž×›×œ×œ×Ŗ לוינהקי לחינוך'),
(86163, 'https://ror.org/01ktt8y73', 'en', 1, 'https://ror.org/01ktt8y73 Wollo University'),
(86164, 'https://ror.org/0050bke46', 'pl', 0, 'https://ror.org/0050bke46 Wyższa Szkoła Ekonomiczno-Humanistyczna im.prof. Szczepana A. Pieniążka'),
(86165, 'https://ror.org/02ntw5v16', 'en', 1, 'https://ror.org/02ntw5v16 Korea Information & Communication Contractors Association ķ•œźµ­ģ •ė³“ķ†µģ‹ ź³µģ‚¬ķ˜‘ķšŒ'),
(86166, 'https://ror.org/05vas4792', 'es', 1, 'https://ror.org/05vas4792 Fundación de Historia Natural Félix de Azara'),
(86167, 'https://ror.org/00kygh256', 'no_lang_code', 1, 'https://ror.org/00kygh256 WOODEXPERT'),
(86168, 'https://ror.org/00pytyc14', 'de', 1, 'https://ror.org/00pytyc14 GZO Hospital Wetzikon/Zurich GZO Spital Wetzikon'),
(86169, 'https://ror.org/02sjhqg84', 'id', 1, 'https://ror.org/02sjhqg84 Politeknik Kesehatan Kemenkes Kendari Poltekkes Kemenkes Kendari'),
(86170, 'https://ror.org/04gktak93', 'en', 1, 'https://ror.org/04gktak93 Conservation Biology Institute'),
(86171, 'https://ror.org/0384ea937', 'en', 1, 'https://ror.org/0384ea937 Weihai Maternal and Child Health Hospital åØęµ·åø‚å¦‡å¹¼äæå„é™¢'),
(86172, 'https://ror.org/012t2f387', 'en', 1, 'https://ror.org/012t2f387 Jihočeský kraj South Bohemian Region'),
(86173, 'https://ror.org/037d2vm44', 'es', 1, 'https://ror.org/037d2vm44 Sociedad de NeurologĆ­a, PsiquiatrĆ­a y NeurocirugĆ­a'),
(86174, 'https://ror.org/03nm7c278', 'en', 1, 'https://ror.org/03nm7c278 Orthopterists'' Society'),
(86175, 'https://ror.org/03jyeb125', 'no_lang_code', 1, 'https://ror.org/03jyeb125 Deloitte (United Kingdom)'),
(86176, 'https://ror.org/01mtgj902', 'en', 1, 'https://ror.org/01mtgj902 City of Prague Hlavnƭ město Praha'),
(86177, 'https://ror.org/031xfkk69', 'en', 1, 'https://ror.org/031xfkk69 European Values EvropskƩ hodnoty'),
(86178, 'https://ror.org/004y1jf02', 'en', 1, 'https://ror.org/004y1jf02 Annai Velankanni College ą®…ą®©ąÆą®©ąÆˆ ą®µąÆ‡ą®³ą®¾ą®™ąÆą®•ą®£ąÆą®£ą®æ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(86179, 'https://ror.org/02wapf283', 'es', 1, 'https://ror.org/02wapf283 Centro de Investigación Epidemiológica en Salud Sexual y Reproductiva'),
(86180, 'https://ror.org/05bhmhz54', 'en', 1, 'https://ror.org/05bhmhz54 Yangtze University é•æę±Ÿå¤§å­¦'),
(86181, 'https://ror.org/0050pwh10', 'es', 1, 'https://ror.org/0050pwh10 Asociación TEDIC'),
(86182, 'https://ror.org/00z5fvd84', 'en', 1, 'https://ror.org/00z5fvd84 Centre for the Governance of AI'),
(86183, 'https://ror.org/05sfxp371', 'es', 1, 'https://ror.org/05sfxp371 Centro de Investigación de Polímeros Avanzados'),
(86184, 'https://ror.org/049kbyp41', 'la', 1, 'https://ror.org/049kbyp41 Iuridicum Remedium'),
(86185, 'https://ror.org/00hayyk04', 'en', 1, 'https://ror.org/00hayyk04 Levinsky-Wingate Academic College ×”×ž×Ø×›×– האקדמי לוינהקי-וינגייט'),
(86186, 'https://ror.org/01nnak423', 'pt', 1, 'https://ror.org/01nnak423 Centro UniversitƔrio Luterano de Palmas'),
(86187, 'https://ror.org/022cvpj02', 'en', 1, 'https://ror.org/022cvpj02 University of Tokyo Hospital ę±äŗ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(86188, 'https://ror.org/00p9rpe63', 'en', 1, 'https://ror.org/00p9rpe63 Showa University Northern Yokohama Hospital ę˜­å’Œå¤§å­¦ ęØŖęµœåø‚åŒ—éƒØē—…é™¢'),
(86189, 'https://ror.org/02d3b2n38', 'en', 1, 'https://ror.org/02d3b2n38 Fujita Health University Nanakuri Memorial Hospital č—¤ē”°åŒ»ē§‘å¤§å­¦äøƒę —čØ˜åæµē—…é™¢'),
(86190, 'https://ror.org/035m4wz05', 'fr', 1, 'https://ror.org/035m4wz05 Center for Studies and Research on Organizations and Strategy Centre d''Ʃtudes et de recherches sur les organisations et la stratƩgie'),
(86191, 'https://ror.org/00j9yrx90', 'en', 1, 'https://ror.org/00j9yrx90 Jihomoravský kraj South Moravian Region'),
(86192, 'https://ror.org/01ca54t29', 'es', 1, 'https://ror.org/01ca54t29 Hospital Obispo Polanco'),
(86193, 'https://ror.org/03m6hya42', 'en', 1, 'https://ror.org/03m6hya42 Liaoning University of International Business and Economics č¾½å®åÆ¹å¤–ē»č“øå­¦é™¢'),
(86194, 'https://ror.org/008t9c882', 'en', 1, 'https://ror.org/008t9c882 Thornbury Hospital'),
(86195, 'https://ror.org/0356fh556', 'no_lang_code', 1, 'https://ror.org/0356fh556 Deloitte (Czechia)'),
(86196, 'https://ror.org/05dxd7816', 'no_lang_code', 1, 'https://ror.org/05dxd7816 Arnika'),
(86197, 'https://ror.org/00ma6s786', 'de', 1, 'https://ror.org/00ma6s786 Westpfalz Klinikum'),
(86198, 'https://ror.org/02frwys47', 'en', 0, 'https://ror.org/02frwys47 InstitiĆŗid TeicneolaĆ­ochta Ceatharlach Institute of Technology Carlow'),
(86199, 'https://ror.org/0155ctq43', 'no_lang_code', 1, 'https://ror.org/0155ctq43 BGI Genomics åŽå¤§åŸŗå› č‚”ä»½ęœ‰é™å…¬åø'),
(86200, 'https://ror.org/03xgxkk87', 'es', 1, 'https://ror.org/03xgxkk87 Fundación Mamíferos y Conservación'),
(86201, 'https://ror.org/01t3dsz49', 'es', 1, 'https://ror.org/01t3dsz49 Centro de Investigación y Desarrollo de medicamentos'),
(86202, 'https://ror.org/04xewk010', 'en', 0, 'https://ror.org/04xewk010 Thornbury Hospital'),
(86203, 'https://ror.org/05t43a661', 'en', 1, 'https://ror.org/05t43a661 Czech Association of Occupational Therapists ČeskÔ asociace ergoterapeutů'),
(86204, 'https://ror.org/04sf6j110', 'es', 1, 'https://ror.org/04sf6j110 Hospital El Cruce'),
(86205, 'https://ror.org/03pwy6z68', 'en', 1, 'https://ror.org/03pwy6z68 European Institute for Medical Studies'),
(86206, 'https://ror.org/022j9ve58', 'en', 1, 'https://ror.org/022j9ve58 Institute of Nanoscience and Nanotechnology'),
(86207, 'https://ror.org/05b8kzx41', 'cs', 1, 'https://ror.org/05b8kzx41 Olomouc Region Olomoucký kraj'),
(86208, 'https://ror.org/00gsmf457', 'en', 1, 'https://ror.org/00gsmf457 Fuel Cell Institute Institut Sel Fuel'),
(86209, 'https://ror.org/04753zn39', 'cs', 1, 'https://ror.org/04753zn39 State Regional Archive in Plzeň StÔtní oblastní archiv v Plzni'),
(86210, 'https://ror.org/020fbfd84', 'es', 1, 'https://ror.org/020fbfd84 Colegio de Etnólogos y Antropólogos Sociales'),
(86211, 'https://ror.org/04tsc8g87', 'en', 1, 'https://ror.org/04tsc8g87 National Kaohsiung Normal University åœ‹ē«‹é«˜é›„åø«ēÆ„å¤§å­ø'),
(86212, 'https://ror.org/04mzk4q39', 'en', 1, 'https://ror.org/04mzk4q39 Showa University ę˜­å’Œå¤§å­¦'),
(86213, 'https://ror.org/045pn2j94', 'no_lang_code', 1, 'https://ror.org/045pn2j94 BGI Group (China) åŽå¤§åŸŗå› '),
(86214, 'https://ror.org/04rhq3086', 'en', 1, 'https://ror.org/04rhq3086 Max Planck Unit for the Science of Pathogens Max-Planck-Forschungsstelle für die Wissenschaft der Pathogene'),
(86215, 'https://ror.org/006h66z43', 'no_lang_code', 1, 'https://ror.org/006h66z43 Exploro Geoservices'),
(86216, 'https://ror.org/04cbxmn27', 'en', 1, 'https://ror.org/04cbxmn27 TransCanada Calibrations'),
(86217, 'https://ror.org/01x9n3j10', 'en', 1, 'https://ror.org/01x9n3j10 Prague City University'),
(86218, 'https://ror.org/02r3zks97', 'en', 1, 'https://ror.org/02r3zks97 Fujita Health University Hospital č—¤ē”°äæå„č”›ē”Ÿå¤§å­¦ē—…é™¢'),
(86219, 'https://ror.org/03nc1mn84', 'cs', 1, 'https://ror.org/03nc1mn84 Muzeum Brněnska'),
(86220, 'https://ror.org/050t2pq94', 'en', 1, 'https://ror.org/050t2pq94 Key Laboratory of Drilling and Production Engineering for Oil and Gas, Hubei Province ę²¹ę°”é’»é‡‡å·„ēØ‹ę¹–åŒ—ēœé‡ē‚¹å®žéŖŒå®¤'),
(86221, 'https://ror.org/05c4crv67', 'en', 1, 'https://ror.org/05c4crv67 Moscow State University of Technologies and Management named after K.G. Razumovskiy Московский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет Технологий Šø Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ им. К.Š“. Разумовского'),
(86222, 'https://ror.org/05jg5hy76', 'en', 1, 'https://ror.org/05jg5hy76 RVNAhealth'),
(86223, 'https://ror.org/00p45d091', 'en', 1, 'https://ror.org/00p45d091 Korea Post ģš°ģ •ģ‚¬ģ—…ė³øė¶€'),
(86224, 'https://ror.org/05e7jee26', 'en', 1, 'https://ror.org/05e7jee26 Pandian Educational Trust ą®Ŗą®¾ą®£ąÆą®Ÿą®æą®Æą®©ąÆ ą®•ą®²ąÆą®µą®æ ą®…ą®±ą®•ąÆą®•ą®ŸąÆą®Ÿą®³ąÆˆ'),
(86225, 'https://ror.org/03z7adb42', 'cs', 1, 'https://ror.org/03z7adb42 Forests of the Czech Republic Lesy České republiky'),
(86226, 'https://ror.org/01wx88t91', 'en', 1, 'https://ror.org/01wx88t91 Aichi University of Technology ę„›ēŸ„å·„ē§‘å¤§å­¦'),
(86227, 'https://ror.org/00btzwk36', 'en', 1, 'https://ror.org/00btzwk36 Josep Carreras Leukaemia Research Institute'),
(86228, 'https://ror.org/03fkg8131', 'de', 0, 'https://ror.org/03fkg8131 Max Planck Institut für Zellbiologie Max Planck Institute for Cell Biology'),
(86229, 'https://ror.org/01s8z1w25', 'en', 1, 'https://ror.org/01s8z1w25 Australian Radiation Protection and Nuclear Safety Agency'),
(86230, 'https://ror.org/0135d1r83', 'en', 1, 'https://ror.org/0135d1r83 Yokohama City University ęØŖęµœåø‚ē«‹å¤§å­¦'),
(86231, 'https://ror.org/00y2q5g68', 'en', 1, 'https://ror.org/00y2q5g68 Association for Integration and Migration Sdružení pro integraci a migraci'),
(86232, 'https://ror.org/0473ary24', 'en', 1, 'https://ror.org/0473ary24 Hangzhou Institute of Applied Acoustics äø­å›½čˆ¹čˆ¶é‡å·„é›†å›¢å…¬åøē¬¬äøƒäø€äŗ”ē ”ē©¶ę‰€'),
(86233, 'https://ror.org/02xt4jj17', 'en', 1, 'https://ror.org/02xt4jj17 Showa University Koto Toyosu Hospital ę˜­å’Œå¤§å­¦ę±Ÿę±č±Šę“²ē—…é™¢'),
(86234, 'https://ror.org/02x4dn920', 'es', 1, 'https://ror.org/02x4dn920 Real Sociedad EspaƱola de Quƭmica'),
(86235, 'https://ror.org/01krvag41', 'en', 1, 'https://ror.org/01krvag41 Fujita Health University Bantane Hospital č—¤ē”°åŒ»ē§‘å¤§å­¦ć°ć‚“ćŸć­ē—…é™¢'),
(86236, 'https://ror.org/02z0qe787', 'en', 1, 'https://ror.org/02z0qe787 Hawaii Space Grant Consortium'),
(86237, 'https://ror.org/024264v67', 'no_lang_code', 1, 'https://ror.org/024264v67 Kyowa Kirin (United States)'),
(86238, 'https://ror.org/012cw8553', 'en', 1, 'https://ror.org/012cw8553 Probation Board for Northern Ireland'),
(86239, 'https://ror.org/0301hkr79', 'cs', 1, 'https://ror.org/0301hkr79 Ekodomov'),
(86240, 'https://ror.org/01kmg3290', 'en', 1, 'https://ror.org/01kmg3290 University of Fukui Hospital ē¦äŗ•å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(86241, 'https://ror.org/01t6c7448', 'es', 1, 'https://ror.org/01t6c7448 Vidarium - Centro de Investigación en Nutrición Salud y Bienestar'),
(86242, 'https://ror.org/05tp92v87', 'en', 1, 'https://ror.org/05tp92v87 Industrial Property Office ĆšÅ™ad prÅÆmyslovĆ©ho vlastnictvĆ­'),
(86243, 'https://ror.org/03tjeg502', 'en', 1, 'https://ror.org/03tjeg502 Center for Advanced Soft Electronics ģ†Œķ”„ķŠøģ¼ė ‰ķŠøė”œė‹‰ģŠ¤ģ—°źµ¬ė‹Ø'),
(86244, 'https://ror.org/03b4d6f26', 'fr', 1, 'https://ror.org/03b4d6f26 Université Paris Lumières'),
(86245, 'https://ror.org/0527hfq87', 'en', 1, 'https://ror.org/0527hfq87 Kombolcha Institute of Technology'),
(86246, 'https://ror.org/01aa1m516', 'no_lang_code', 1, 'https://ror.org/01aa1m516 Covalence Research'),
(86247, 'https://ror.org/015fzt581', 'en', 1, 'https://ror.org/015fzt581 State Environmental Fund of the Czech Republic StĆ”tnĆ­ fond životnĆ­ho prostředĆ­ ČR'),
(86248, 'https://ror.org/05ht9bp04', 'no_lang_code', 1, 'https://ror.org/05ht9bp04 DASA (Brazil)'),
(86249, 'https://ror.org/031fdgn16', 'en', 1, 'https://ror.org/031fdgn16 Institute of Sustainable Halophyte Utilization'),
(86250, 'https://ror.org/00qzqdm10', 'en', 1, 'https://ror.org/00qzqdm10 Czech Council of Children and Youth ČeskĆ” rada dětĆ­ a mlĆ”deže'),
(86251, 'https://ror.org/01szwa973', 'en', 1, 'https://ror.org/01szwa973 Nadačnƭ fond Neuron Neuron Endowment Fund'),
(86252, 'https://ror.org/00y0p0f23', 'en', 1, 'https://ror.org/00y0p0f23 Wuxi Vocational College of Science and Technology ę— é””ē§‘ęŠ€čŒäøšå­¦é™¢'),
(86253, 'https://ror.org/03sxmek83', 'en', 1, 'https://ror.org/03sxmek83 National Open Air Museum NĆ”rodnĆ­ muzeum v přírodě'),
(86254, 'https://ror.org/05c8wa765', 'en', 1, 'https://ror.org/05c8wa765 Japan Society of Civil Engineers å…¬ē›Šē¤¾å›£ę³•äŗŗåœŸęœØå­¦ä¼š'),
(86255, 'https://ror.org/022adkr07', 'no_lang_code', 1, 'https://ror.org/022adkr07 Yacimientos PetrolĆ­feros Fiscales'),
(86256, 'https://ror.org/00rhzk043', 'en', 1, 'https://ror.org/00rhzk043 Institute of Biosciences & Applications Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī’Ī¹ĪæĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ & Ī•Ļ†Ī±ĻĪ¼ĪæĪ³ĻŽĪ½'),
(86257, 'https://ror.org/00ag3tg80', 'fr', 1, 'https://ror.org/00ag3tg80 Centre de droit civil des affaires et du contentieux Ʃconomique'),
(86258, 'https://ror.org/0389z1v12', 'en', 1, 'https://ror.org/0389z1v12 Office of the Goverment ĆšÅ™ad vlĆ”dy'),
(86259, 'https://ror.org/00zahx847', 'en', 1, 'https://ror.org/00zahx847 ParlamentnĆ­ institut Parliamentary Institute'),
(86260, 'https://ror.org/05w4k0v76', 'es', 1, 'https://ror.org/05w4k0v76 Instituto Cubano de Oftalmología "Ramón Pando Ferrer"'),
(86261, 'https://ror.org/05n1ym881', 'de', 1, 'https://ror.org/05n1ym881 Kirchliche Hochschule Wuppertal'),
(86262, 'https://ror.org/00sdj7q88', 'en', 1, 'https://ror.org/00sdj7q88 Showa University Fujigaoka Rehabilitation Hospital ę˜­å’Œå¤§å­¦č—¤ćŒäø˜ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(86263, 'https://ror.org/00mzymc28', 'en', 1, 'https://ror.org/00mzymc28 Agenția Națională Arheologică National Agency for Archaeology'),
(86264, 'https://ror.org/009q8er18', 'no_lang_code', 1, 'https://ror.org/009q8er18 Shenzhen Urban Transport Planning Center Co. ę·±åœ³åŸŽåø‚äŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶äø­åæƒč‚”ä»½ęœ‰é™å…¬åø'),
(86265, 'https://ror.org/0369pca16', 'no_lang_code', 1, 'https://ror.org/0369pca16 Formulate (Sweden)'),
(86266, 'https://ror.org/03vaz2582', 'en', 1, 'https://ror.org/03vaz2582 Veterinary Medical Center ę±äŗ¬å¤§å­¦ å‹•ē‰©åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(86267, 'https://ror.org/03znpfq81', 'en', 1, 'https://ror.org/03znpfq81 Institute of Nuclear and Particle Physics'),
(86268, 'https://ror.org/05ewg0g09', 'es', 1, 'https://ror.org/05ewg0g09 Tecnológico Sudamericano'),
(86269, 'https://ror.org/040x6j734', 'de', 1, 'https://ror.org/040x6j734 DRK Krankenhaus Alzey'),
(86270, 'https://ror.org/02h5sfg65', 'en', 1, 'https://ror.org/02h5sfg65 International Bamboo and Rattan Organization å›½é™…ē«¹č—¤äø­åæƒ'),
(86271, 'https://ror.org/01k86s411', 'en', 1, 'https://ror.org/01k86s411 Showa University Karasuyama Hospital ę˜­å’Œå¤§å­¦é™„å±žēƒå±±ē—…é™¢'),
(86272, 'https://ror.org/02jhg8z64', 'en', 1, 'https://ror.org/02jhg8z64 Department of Measurement Units, Standards & Services ą®…ą®³ą®•ąÆą®•ąÆą®®ąÆ ą®…ą®²ą®•ąÆą®•ą®³ąÆ, ą®¤ą®°ą®™ąÆą®•ą®³ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®šąÆ‡ą®µąÆˆą®•ą®³ąÆ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ ą¶±ą·”ą¶øą·Š ą¶’ą¶šą¶š, ą¶“ą·Šą¶»ą¶øą·’ą¶­ą·’ ą·„ą· ą·ƒą·šą·€ą· ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(86273, 'https://ror.org/03xkm6e60', 'no_lang_code', 1, 'https://ror.org/03xkm6e60 Deloitte (United States)'),
(86274, 'https://ror.org/00nqjr204', 'en', 1, 'https://ror.org/00nqjr204 Ministry of Science, Technology and Research ą·€ą·’ą¶Æą·Šą¶ŗą·, ą¶­ą·ą¶šą·Šą·‚ą¶« ą·„ą· ą¶“ą¶»ą·Šą¶ŗą·šą·‚ą¶« ą¶…ą¶øą·ą¶­ą·Šą¶ŗą·ą¶‚ą·ą¶ŗ'),
(86275, 'https://ror.org/0395f2d85', 'pt', 1, 'https://ror.org/0395f2d85 Instituto Nacional da Mata Atlântica'),
(86276, 'https://ror.org/01kjfnp05', 'de', 1, 'https://ror.org/01kjfnp05 Arbeitsgemeinschaft GynƤkologische Onkologie Studiengruppe'),
(86277, 'https://ror.org/01d100w34', 'en', 1, 'https://ror.org/01d100w34 Semyung University'),
(86278, 'https://ror.org/02h6cs343', 'en', 1, 'https://ror.org/02h6cs343 Aichi Medical University ę„›ēŸ„åŒ»ē§‘å¤§å­¦'),
(86279, 'https://ror.org/03j0jxk49', 'en', 1, 'https://ror.org/03j0jxk49 Ming Wai Lau Centre for Reparative Medicine'),
(86280, 'https://ror.org/05qqsw426', 'en', 0, 'https://ror.org/05qqsw426 Aoyama Hospital Tokyo Women’s Medical University ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦é™„å±žé’å±±ē—…é™¢'),
(86281, 'https://ror.org/02dx51s73', 'en', 1, 'https://ror.org/02dx51s73 Shonan Oiso Hospital åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼š ę¹˜å—å¤§ē£Æē—…é™¢'),
(86282, 'https://ror.org/02yrqby68', 'no_lang_code', 1, 'https://ror.org/02yrqby68 MGI åŽå¤§ę™ŗé€ '),
(86283, 'https://ror.org/001qntc44', 'en', 1, 'https://ror.org/001qntc44 Kalihi Palama Health Center'),
(86284, 'https://ror.org/034kd8j82', 'en', 1, 'https://ror.org/034kd8j82 Tokai University Tokyo Hospital ę±ęµ·å¤§å­¦åŒ»å­¦éƒØä»˜å±žę±äŗ¬ē—…é™¢'),
(86285, 'https://ror.org/02n2s1h08', 'en', 1, 'https://ror.org/02n2s1h08 Bangladesh Sugarcrop Research Institute বাংলাদেশ ą¦øą§ą¦—ą¦¾ą¦°ą¦•ą§ą¦°ą¦Ŗ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(86286, 'https://ror.org/0271rds65', 'no_lang_code', 1, 'https://ror.org/0271rds65 Invigos'),
(86287, 'https://ror.org/03fyv3102', 'es', 1, 'https://ror.org/03fyv3102 Hospital ClĆ­nico Universitario Lozano Blesa'),
(86288, 'https://ror.org/056an2h19', 'pt', 0, 'https://ror.org/056an2h19 Formedia'),
(86289, 'https://ror.org/00mxv3x47', 'no_lang_code', 1, 'https://ror.org/00mxv3x47 Solutions for Tomorrow (Sweden)'),
(86290, 'https://ror.org/010hfy465', 'en', 1, 'https://ror.org/010hfy465 Yokohama City University Hospital ęØŖęµœåø‚ē«‹å¤§å­¦é™„å±žē—…é™¢'),
(86291, 'https://ror.org/016kfyg29', 'en', 1, 'https://ror.org/016kfyg29 International Institute of Information Technology'),
(86292, 'https://ror.org/0396t6k89', 'en', 1, 'https://ror.org/0396t6k89 Institute of Informatics & Telecommunications Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Πληροφορικής & Ī¤Ī·Ī»ĪµĻ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½'),
(86293, 'https://ror.org/04hmt0j25', 'en', 1, 'https://ror.org/04hmt0j25 Korea Foundation for Max Planck POSTECH ė§‰ģŠ¤ ķ”Œėž‘ķ¬ ķ¬ģŠ¤ķ… ķ•œźµ­ ģž¬ė‹Ø'),
(86294, 'https://ror.org/053598c22', 'en', 1, 'https://ror.org/053598c22 University of Hawaiʻi Sea Grant'),
(86295, 'https://ror.org/03aaa6v42', 'en', 0, 'https://ror.org/03aaa6v42 V-Continent Beijing Parkview Wuzhou Hotel'),
(86296, 'https://ror.org/058hkqk21', 'en', 1, 'https://ror.org/058hkqk21 Muzeul Național de Istorie a Moldovei National Museum of History of Moldova'),
(86297, 'https://ror.org/04w32gf09', 'en', 1, 'https://ror.org/04w32gf09 Korea Spatial Information Society ėŒ€ķ•œź³µź°„ģ •ė³“ķ•™ķšŒ'),
(86298, 'https://ror.org/04szwah67', 'en', 1, 'https://ror.org/04szwah67 Allen Institute for Neural Dynamics'),
(86299, 'https://ror.org/00v34f693', 'en', 1, 'https://ror.org/00v34f693 Quantitative Biology Center Zentrum für Quantitative Biologie'),
(86300, 'https://ror.org/05ym69k36', 'en', 1, 'https://ror.org/05ym69k36 Max Planck Graduate Center'),
(86301, 'https://ror.org/010swb518', 'en', 0, 'https://ror.org/010swb518 Don Law Institute Донской ЮриГический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(86302, 'https://ror.org/03xx88d27', 'en', 1, 'https://ror.org/03xx88d27 Kaiser Permanente Moanalua Medical Center'),
(86303, 'https://ror.org/03yty8687', 'no_lang_code', 1, 'https://ror.org/03yty8687 GigaScience Press'),
(86304, 'https://ror.org/01t8pd591', 'es', 1, 'https://ror.org/01t8pd591 Academia Nacional de Ciencias Exactas FĆ­sicas y Naturales'),
(86305, 'https://ror.org/02v39xy13', 'es', 0, 'https://ror.org/02v39xy13 Hospital de Sabadell'),
(86306, 'https://ror.org/002wyas44', 'en', 1, 'https://ror.org/002wyas44 National Cyber and Information Security Agency NĆ”rodnĆ­ ĆŗÅ™ad pro kybernetickou a informačnĆ­ bezpečnost'),
(86307, 'https://ror.org/01nr4vy20', 'en', 1, 'https://ror.org/01nr4vy20 Fairtrade Czech Republic & Slovakia Fairtrade Česko a Slovensko'),
(86308, 'https://ror.org/0145f3g58', 'en', 1, 'https://ror.org/0145f3g58 Showa University East Hospital ę˜­å’Œå¤§å­¦ē—…é™¢é™„å±žę±ē—…é™¢'),
(86309, 'https://ror.org/05km1xm91', 'es', 1, 'https://ror.org/05km1xm91 Mayagüez Medical Center'),
(86310, 'https://ror.org/036wkxc84', 'no_lang_code', 1, 'https://ror.org/036wkxc84 AbbVie (Japan) ć‚¢ćƒƒćƒ“ć‚£åˆåŒä¼šē¤¾'),
(86311, 'https://ror.org/04ggh4w95', 'no_lang_code', 1, 'https://ror.org/04ggh4w95 Pilsen Region Plzeňský kraj'),
(86312, 'https://ror.org/000be6g31', 'en', 0, 'https://ror.org/000be6g31 Academic College at Wingate המכללה ×”××§×“×ž×™×Ŗ בוינגייט'),
(86313, 'https://ror.org/000wej815', 'no_lang_code', 1, 'https://ror.org/000wej815 Kyowa Kirin (Japan) å”å’Œć‚­ćƒŖćƒ³ę Ŗå¼ä¼šē¤¾'),
(86314, 'https://ror.org/00csdcr36', 'en', 1, 'https://ror.org/00csdcr36 Czech Paraplegics Association ČeskÔ asociace paraplegiků'),
(86315, 'https://ror.org/05tz9r773', 'en', 1, 'https://ror.org/05tz9r773 Drejtoria e Pƫrgjithshme e Metrologjisƫ General Directorate of Metrology and Calibration'),
(86316, 'https://ror.org/013agg827', 'en', 1, 'https://ror.org/013agg827 Andes Amazon Fund'),
(86317, 'https://ror.org/00w1qvp54', 'fr', 1, 'https://ror.org/00w1qvp54 Laboratoire des MatƩriaux AvancƩs'),
(86318, 'https://ror.org/04041kj44', 'en', 1, 'https://ror.org/04041kj44 Financial Stability Board'),
(86319, 'https://ror.org/05a1se525', 'fr', 1, 'https://ror.org/05a1se525 Center for European and Comparative Legal Studies Centre d''Ʃtudes juridiques europƩennes et comparƩes'),
(86320, 'https://ror.org/00jn17w87', 'en', 1, 'https://ror.org/00jn17w87 Showa University Dental Hospital ę˜­å’Œå¤§å­¦ę­Æē§‘ē—…é™¢'),
(86321, 'https://ror.org/03bzb3783', 'cs', 1, 'https://ror.org/03bzb3783 Karlovarský kraj Karlovy Vary Region'),
(86322, 'https://ror.org/045aa8e82', 'en', 0, 'https://ror.org/045aa8e82 K.G. Razumovsky Moscow State University of Technologies and Management Моско́вский Š³Š¾ŃŃƒŠ“а́рственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ техноло́гий Šø ŃƒŠæŃ€Š°Š²Š»ŠµĢŠ½ŠøŃ имени К. Š“. Разумовского'),
(86323, 'https://ror.org/032e49973', 'en', 0, 'https://ror.org/032e49973 Ministry of Science ICT and Future Planning ėŒ€ķ•œėÆ¼źµ­ ėÆøėž˜ģ°½ģ”°ź³¼ķ•™ė¶€'),
(86324, 'https://ror.org/031ytbr64', 'en', 1, 'https://ror.org/031ytbr64 Centre for Regional Development of the Czech Republic Centrum pro regionÔlní rozvoj České republiky'),
(86325, 'https://ror.org/05wtz7m27', 'no_lang_code', 1, 'https://ror.org/05wtz7m27 Moravian-Silesian Region Moravskoslezský kraj'),
(86326, 'https://ror.org/049kqjg43', 'es', 1, 'https://ror.org/049kqjg43 Comisión Nacional de Prevención de Riesgos y Atención de Emergencias'),
(86327, 'https://ror.org/04r6shn89', 'en', 1, 'https://ror.org/04r6shn89 Central Radio Management Service'),
(86328, 'https://ror.org/03e1n9x27', 'es', 1, 'https://ror.org/03e1n9x27 Fundación Josep Carreras Contra la Leucemia'),
(86329, 'https://ror.org/005nzs995', 'no_lang_code', 1, 'https://ror.org/005nzs995 GLE'),
(86330, 'https://ror.org/00fkm8n81', 'en', 1, 'https://ror.org/00fkm8n81 European University of Armenia Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶ÕøÖ‚Õ“ ŌµÕ¾Ö€ÕøÕŗÕ”ÕÆÕ”Õ¶ Õ€Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(86331, 'https://ror.org/01r13mt55', 'es', 1, 'https://ror.org/01r13mt55 Hospital Universitario Miguel Servet'),
(86332, 'https://ror.org/01efwd504', 'no_lang_code', 1, 'https://ror.org/01efwd504 Saiseikai Kanagawa Hospital ęøˆē”Ÿä¼šē„žå„ˆå·ēœŒē—…é™¢'),
(86333, 'https://ror.org/038s3xg41', 'en', 1, 'https://ror.org/038s3xg41 Tokyo Women''s Medical University Yachiyo Medical Center ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦å…«åƒä»£åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(86334, 'https://ror.org/03d68r583', 'es', 1, 'https://ror.org/03d68r583 Jardƭn BotƔnico de BogotƔ JosƩ Celestino Mutis'),
(86335, 'https://ror.org/02eqrsj93', 'fr', 1, 'https://ror.org/02eqrsj93 Fonds de Recherche du QuƩbec - SantƩ'),
(86336, 'https://ror.org/02zfbyq93', 'no_lang_code', 1, 'https://ror.org/02zfbyq93 Shino-Test Corporation ć‚·ćƒŽćƒ†ć‚¹ćƒˆ'),
(86337, 'https://ror.org/00vzyt138', 'en', 1, 'https://ror.org/00vzyt138 Huadong Medical Institute of Biotechniques åŽäøœåŒ»å­¦ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(86338, 'https://ror.org/02bszj235', 'no_lang_code', 1, 'https://ror.org/02bszj235 Korean Drug Co. ź³ ė ¤ģ œģ•½'),
(86339, 'https://ror.org/01d6ss728', 'en', 1, 'https://ror.org/01d6ss728 Office of Atoms for Peace ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø›ąø£ąø”ąø²ąø“ąø¹ą¹€ąøžąø·ą¹ˆąø­ąøŖąø±ąø™ąø•ąø“'),
(86340, 'https://ror.org/03adnqh21', 'no_lang_code', 1, 'https://ror.org/03adnqh21 SIRIRI'),
(86341, 'https://ror.org/016gbn942', 'en', 1, 'https://ror.org/016gbn942 Queen''s Medical Center'),
(86342, 'https://ror.org/049nnjd96', 'no_lang_code', 1, 'https://ror.org/049nnjd96 GlaxoSmithKline (Spain)'),
(86343, 'https://ror.org/045arbm30', 'en', 1, 'https://ror.org/045arbm30 University of Poonch Rawalakot'),
(86344, 'https://ror.org/032ckra69', 'en', 1, 'https://ror.org/032ckra69 Minerals Research Institute of Western Australia'),
(86345, 'https://ror.org/04b5zca04', 'en', 0, 'https://ror.org/04b5zca04 Dnipro National University of Railway Transport named after Academician V. Lazaryan Днепровский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ железноГорожного транспорта имени акаГемика Š’. Š›Š°Š·Š°Ń€ŃŠ½Š° Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ залізничного Ń‚Ń€Š°Š½ŃŠæŠ¾Ń€Ń‚Ńƒ імені акаГеміка Š’. Š›Š°Š·Š°Ń€ŃŠ½Š°'),
(86346, 'https://ror.org/00jsjm362', 'en', 1, 'https://ror.org/00jsjm362 University of Abou Bekr BelkaĆÆd Ų¬Ų§Ł…Ų¹Ų© أبي بكر ŲØŁ„Ł‚Ų§ŁŠŲÆ'),
(86347, 'https://ror.org/01c1kpg39', 'en', 1, 'https://ror.org/01c1kpg39 Tajik Technical University named after academic M.S.Osimi Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø техникии Тоҷикистон ба номи акаГемик М.Š”.ŠžŃŠøŠ¼Ó£'),
(86348, 'https://ror.org/054a9s036', 'en', 1, 'https://ror.org/054a9s036 College of Industrial Technology ē”£ę„­ęŠ€č”“ēŸ­ęœŸå¤§å­¦'),
(86349, 'https://ror.org/055nd7x53', 'en', 1, 'https://ror.org/055nd7x53 National Informatics Centre'),
(86350, 'https://ror.org/02r89bf73', 'en', 1, 'https://ror.org/02r89bf73 Howard Brain Sciences Foundation'),
(86351, 'https://ror.org/028aqvb72', 'no_lang_code', 1, 'https://ror.org/028aqvb72 ConocoPhillips (Canada)'),
(86352, 'https://ror.org/01ak5cj98', 'en', 1, 'https://ror.org/01ak5cj98 Simón Bolívar University Universidad Simón Bolívar'),
(86353, 'https://ror.org/05qfq0x09', 'en', 1, 'https://ror.org/05qfq0x09 Hunan University of Traditional Chinese Medicine ę¹–å—äø­åŒ»čÆå¤§å­¦'),
(86354, 'https://ror.org/029pp9z10', 'en', 1, 'https://ror.org/029pp9z10 Johns Hopkins University Applied Physics Laboratory'),
(86355, 'https://ror.org/03nrtgs61', 'no_lang_code', 1, 'https://ror.org/03nrtgs61 KME (Germany)'),
(86356, 'https://ror.org/00ecztp88', 'en', 1, 'https://ror.org/00ecztp88 Karnataka State Open University ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ą²®ą³ą²•ą³ą²¤ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(86357, 'https://ror.org/01zgpn844', 'no_lang_code', 1, 'https://ror.org/01zgpn844 Bausch Health (Canada)'),
(86358, 'https://ror.org/016h08r74', 'en', 1, 'https://ror.org/016h08r74 Microbiology Society'),
(86359, 'https://ror.org/05g95eg64', 'en', 1, 'https://ror.org/05g95eg64 Institute of Biological and Medical Imaging'),
(86360, 'https://ror.org/02j4qdw85', 'en', 1, 'https://ror.org/02j4qdw85 Qasyoun Private University Ų¬Ų§Ł…Ų¹Ų© Ł‚Ų§Ų³ŁŠŁˆŁ† الخاصة'),
(86361, 'https://ror.org/01bvj3e58', 'en', 1, 'https://ror.org/01bvj3e58 Ministerstvo prĆ”ce a sociĆ”lnĆ­ch věcĆ­ ČeskĆ© republiky Ministry of Labour and Social Affairs'),
(86362, 'https://ror.org/02gxafv90', 'en', 1, 'https://ror.org/02gxafv90 European Lead Factory'),
(86363, 'https://ror.org/044b7p696', 'en', 1, 'https://ror.org/044b7p696 ARC Centre of Excellence in Cognition and its Disorders'),
(86364, 'https://ror.org/041zepm54', 'no_lang_code', 1, 'https://ror.org/041zepm54 Applied Genetic Technologies (United States)'),
(86365, 'https://ror.org/042b69396', 'en', 1, 'https://ror.org/042b69396 Center for Advanced Systems Understanding'),
(86366, 'https://ror.org/009nfym65', 'en', 1, 'https://ror.org/009nfym65 Post Graduate Institute of Medical Education and Research ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤šą¤£ą„ą¤”ą„€ą¤—ą¤¢ą¤¼ ਪੀ. ąØœą©€. ąØ†ąØˆ.'),
(86367, 'https://ror.org/0275hyc16', 'en', 1, 'https://ror.org/0275hyc16 Apex Foundation'),
(86368, 'https://ror.org/050s1zm26', 'en', 1, 'https://ror.org/050s1zm26 Federal University of Agriculture'),
(86369, 'https://ror.org/00qp5gr06', 'no_lang_code', 1, 'https://ror.org/00qp5gr06 Sandvik (Sweden)'),
(86370, 'https://ror.org/04fpm9z44', 'no_lang_code', 1, 'https://ror.org/04fpm9z44 Sugar Research Australia (Australia)'),
(86371, 'https://ror.org/02venad53', 'no_lang_code', 1, 'https://ror.org/02venad53 Robert Bosch (United States)'),
(86372, 'https://ror.org/03pn9bd47', 'no_lang_code', 1, 'https://ror.org/03pn9bd47 Sanofi (China) čµ›čÆŗč²'),
(86373, 'https://ror.org/03natb733', 'no_lang_code', 1, 'https://ror.org/03natb733 Hamamatsu Photonics (Japan) ęµœę¾ćƒ›ćƒˆćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(86374, 'https://ror.org/03ash3475', 'en', 1, 'https://ror.org/03ash3475 European AIDS Treatment Network'),
(86375, 'https://ror.org/01qh7se39', 'en', 1, 'https://ror.org/01qh7se39 The First Affiliated Hospital of Guangxi University of Traditional Chinese Medicine å¹æč„æäø­åŒ»čÆå¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(86376, 'https://ror.org/04r8a1r80', 'en', 1, 'https://ror.org/04r8a1r80 Chmielnicki Uniwersytet Narodowy Khmelnytskyi National University Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(86377, 'https://ror.org/04kyfd050', 'no_lang_code', 1, 'https://ror.org/04kyfd050 Astellas Pharma (Netherlands)'),
(86378, 'https://ror.org/0429x9p85', 'en', 1, 'https://ror.org/0429x9p85 Children''s Hospital of Michigan'),
(86379, 'https://ror.org/03tb4gf50', 'en', 1, 'https://ror.org/03tb4gf50 New South Wales Department of Health'),
(86380, 'https://ror.org/04cfmv025', 'en', 1, 'https://ror.org/04cfmv025 Institute of Taoist Education and Acupuncture'),
(86381, 'https://ror.org/00czsbf91', 'en', 0, 'https://ror.org/00czsbf91 Federal Ministry of Health'),
(86382, 'https://ror.org/013cdqc34', 'en', 1, 'https://ror.org/013cdqc34 Alzahra University دانؓگاه الزهرا'),
(86383, 'https://ror.org/058rn5r42', 'en', 1, 'https://ror.org/058rn5r42 Hasso Plattner Institute Hasso-Plattner-Institut'),
(86384, 'https://ror.org/04tdsr307', 'en', 1, 'https://ror.org/04tdsr307 Chamberlain University'),
(86385, 'https://ror.org/02145de51', 'no_lang_code', 1, 'https://ror.org/02145de51 Dairy Australia (Australia)'),
(86386, 'https://ror.org/058ex1x30', 'en', 1, 'https://ror.org/058ex1x30 Kostroma State University named after N A Nekrasov Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ¾Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. А. ŠŠµŠŗŃ€Š°ŃŠ¾Š²Š°'),
(86387, 'https://ror.org/04sfxgz72', 'no_lang_code', 1, 'https://ror.org/04sfxgz72 Novo Holdings (Denmark)'),
(86388, 'https://ror.org/01fwrsq33', 'en', 1, 'https://ror.org/01fwrsq33 Barrow Neurological Institute'),
(86389, 'https://ror.org/0143qz379', 'fr', 1, 'https://ror.org/0143qz379 University of French Ontario UniversitƩ de l''Ontario franƧais'),
(86390, 'https://ror.org/003bst688', 'en', 1, 'https://ror.org/003bst688 Florida Academy of Science'),
(86391, 'https://ror.org/04ahh4d11', 'en', 1, 'https://ror.org/04ahh4d11 Sapientia ErdƩlyi Magyar TudomƔnyegyetem Sapientia Hungarian University of Transylvania Universitatea Sapientia'),
(86392, 'https://ror.org/04qgstt59', 'de', 1, 'https://ror.org/04qgstt59 Schweizerische Stiftung für die Erforschung der Muskelkrankheiten'),
(86393, 'https://ror.org/04akaak77', 'en', 1, 'https://ror.org/04akaak77 Technical Institute of Physics and Chemistry äø­å›½ē§‘å­¦é™¢ē†åŒ–ęŠ€ęœÆē ”ē©¶ę‰€'),
(86394, 'https://ror.org/003regz62', 'en', 1, 'https://ror.org/003regz62 Beijing Tian Tan Hospital åŒ—äŗ¬åø‚ē„žē»å¤–ē§‘ē ”ē©¶ę‰€'),
(86395, 'https://ror.org/02b3hht72', 'en', 1, 'https://ror.org/02b3hht72 Director of National Parks'),
(86396, 'https://ror.org/009aftg61', 'de', 1, 'https://ror.org/009aftg61 Dienstleistungszentrum LƤndlicher Raum Rheinpfalz'),
(86397, 'https://ror.org/02y5mkh60', 'en', 1, 'https://ror.org/02y5mkh60 Herzog August Bibliothek Herzog August Library'),
(86398, 'https://ror.org/0257v3m41', 'en', 1, 'https://ror.org/0257v3m41 Catholic University in Erbil الجامعة Ų§Ł„ŁƒŲ§Ų«ŁˆŁ„ŁŠŁƒŁŠŲ© في Ų§Ų±ŲØŁŠŁ„'),
(86399, 'https://ror.org/040ck2b86', 'en', 1, 'https://ror.org/040ck2b86 Natural History Museum of Denmark Statens Naturhistoriske Museum'),
(86400, 'https://ror.org/032m55064', 'en', 1, 'https://ror.org/032m55064 Korea Institute of Ocean Science and Technology'),
(86401, 'https://ror.org/02djppw35', 'no_lang_code', 1, 'https://ror.org/02djppw35 China Steel (Taiwan) äø­åœ‹é‹¼éµč‚”ä»½ęœ‰é™å…¬åø'),
(86402, 'https://ror.org/02kbe5v55', 'no_lang_code', 1, 'https://ror.org/02kbe5v55 Terumo (Japan) ćƒ†ćƒ«ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(86403, 'https://ror.org/059wbyv33', 'en', 1, 'https://ror.org/059wbyv33 El Instituto de Investigación Sanitaria INCLIVA INCLIVA Health Research Institute'),
(86404, 'https://ror.org/031tfbz57', 'en', 1, 'https://ror.org/031tfbz57 Worldwide Cancer Research'),
(86405, 'https://ror.org/00kmhsh93', 'en', 1, 'https://ror.org/00kmhsh93 Connective Tissue Oncology Society'),
(86406, 'https://ror.org/05e89k615', 'en', 1, 'https://ror.org/05e89k615 Australian Antarctic Division'),
(86407, 'https://ror.org/05cv56b48', 'no_lang_code', 1, 'https://ror.org/05cv56b48 Arkema (France)'),
(86408, 'https://ror.org/05qc18f66', 'en', 1, 'https://ror.org/05qc18f66 V.I. Il''ichev Pacific Oceanological Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Тихоокеанский океанологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.И.Š˜Š»ŃŒŠøŃ‡ŠµŠ²Š° Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(86409, 'https://ror.org/0079deh61', 'en', 1, 'https://ror.org/0079deh61 Ministerie van Defensie Ministry of Defence'),
(86410, 'https://ror.org/03cjntr43', 'no_lang_code', 1, 'https://ror.org/03cjntr43 Bio-Rad (United States)'),
(86411, 'https://ror.org/03cwpte63', 'en', 1, 'https://ror.org/03cwpte63 Murray Darling Basin Authority'),
(86412, 'https://ror.org/052xe5r02', 'no_lang_code', 1, 'https://ror.org/052xe5r02 Forest and Wood Products (Australia)'),
(86413, 'https://ror.org/04x58c235', 'fr', 1, 'https://ror.org/04x58c235 Franche-ComtƩ Regional Council'),
(86414, 'https://ror.org/0040zx077', 'en', 1, 'https://ror.org/0040zx077 Istituto di Ricerca per la Protezione Idrogeologica Research Institute for Geo-Hydrological Protection'),
(86415, 'https://ror.org/04ax47y98', 'en', 1, 'https://ror.org/04ax47y98 St. Paul''s Hospital Millennium Medical College'),
(86416, 'https://ror.org/038wwg650', 'en', 1, 'https://ror.org/038wwg650 Department of Agriculture'),
(86417, 'https://ror.org/05atyvn45', 'no_lang_code', 0, 'https://ror.org/05atyvn45 Dow Agrosciences (United States)'),
(86418, 'https://ror.org/020axev56', 'en', 1, 'https://ror.org/020axev56 Harris foundation'),
(86419, 'https://ror.org/04rg6e566', 'en', 1, 'https://ror.org/04rg6e566 Palo Alto Medical Foundation'),
(86420, 'https://ror.org/0591qfp26', 'en', 1, 'https://ror.org/0591qfp26 Fisheries Research and Development Corporation'),
(86421, 'https://ror.org/057xyvv49', 'id', 1, 'https://ror.org/057xyvv49 Muhammadiyah University of Magelang Universitas Muhammadiyah Magelang'),
(86422, 'https://ror.org/01b8qmd85', 'en', 1, 'https://ror.org/01b8qmd85 Indonesia Research Institute for Tea and Cinchona Pusat Penelitian Teh dan Kina'),
(86423, 'https://ror.org/01n8qtk87', 'no_lang_code', 1, 'https://ror.org/01n8qtk87 MathWorks (United States)'),
(86424, 'https://ror.org/05ts9tv79', 'en', 1, 'https://ror.org/05ts9tv79 Manatū Aorere Ministry of Foreign Affairs and Trade'),
(86425, 'https://ror.org/012n4km28', 'en', 1, 'https://ror.org/012n4km28 American Academy of Optometry');
INSERT INTO `rors` VALUES
(86426, 'https://ror.org/02txrtk05', 'en', 0, 'https://ror.org/02txrtk05 Minerals and Energy Research Institute of Western Australia'),
(86427, 'https://ror.org/03db51w68', 'en', 1, 'https://ror.org/03db51w68 Maryland Sea Grant'),
(86428, 'https://ror.org/05xjsrf96', 'en', 1, 'https://ror.org/05xjsrf96 Society for Science at User Research Facilities'),
(86429, 'https://ror.org/02a2cjw65', 'en', 1, 'https://ror.org/02a2cjw65 Australian Plague Locust Commission'),
(86430, 'https://ror.org/02mh2cd26', 'en', 1, 'https://ror.org/02mh2cd26 Koltzov Institute of Developmental Biology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Ń€Š°Š·Š²ŠøŃ‚ŠøŃ им. Š.К. ŠšŠ¾Š»ŃŒŃ†Š¾Š²Š° Š ŠŠ'),
(86431, 'https://ror.org/041kwj007', 'en', 1, 'https://ror.org/041kwj007 Healing Foundation'),
(86432, 'https://ror.org/0139j4p80', 'en', 1, 'https://ror.org/0139j4p80 Anhui University of Traditional Chinese Medicine å®‰å¾½äø­åŒ»å­¦é™¢'),
(86433, 'https://ror.org/00ne0z119', 'no_lang_code', 1, 'https://ror.org/00ne0z119 Lanxess (Germany)'),
(86434, 'https://ror.org/03j9tzj20', 'en', 1, 'https://ror.org/03j9tzj20 Northern Border University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŲÆŁˆŲÆ Ų§Ł„Ų“Ł…Ų§Ł„ŁŠŲ©'),
(86435, 'https://ror.org/00v8s1x79', 'no_lang_code', 1, 'https://ror.org/00v8s1x79 Airbus (Italy)'),
(86436, 'https://ror.org/00ws7fy26', 'da', 1, 'https://ror.org/00ws7fy26 Frode V. Nyegaard og Hustru’s Fond'),
(86437, 'https://ror.org/00my8w381', 'no_lang_code', 1, 'https://ror.org/00my8w381 Carrier (United States)'),
(86438, 'https://ror.org/02555ta58', 'en', 1, 'https://ror.org/02555ta58 Childhood Cancer Canada Foundation'),
(86439, 'https://ror.org/024e1pj18', 'no_lang_code', 1, 'https://ror.org/024e1pj18 OmniActive Health Technologies (United States)'),
(86440, 'https://ror.org/028ynny55', 'es', 1, 'https://ror.org/028ynny55 ClĆ­nica Alemana The German Hospital of Santiago'),
(86441, 'https://ror.org/05xcgsy22', 'en', 1, 'https://ror.org/05xcgsy22 Animal Health Research Institute'),
(86442, 'https://ror.org/01r2ecp77', 'en', 1, 'https://ror.org/01r2ecp77 Det kgl. Forsvarsdepartement Ministry of Defence'),
(86443, 'https://ror.org/049x38272', 'en', 1, 'https://ror.org/049x38272 Jilin Province Science and Technology Department'),
(86444, 'https://ror.org/0424bsv16', 'nl', 1, 'https://ror.org/0424bsv16 Universitair Ziekenhuis Leuven'),
(86445, 'https://ror.org/02v8f6d18', 'en', 1, 'https://ror.org/02v8f6d18 KROK University KROK Üni̇versi̇tesi̇ Universidad de ā€œKROKā€ UniversitĆ© Ā«KROKĀ» Університет Ā«ŠšŠ ŠžŠšĀ» įƒ”įƒ™įƒįƒœįƒįƒ›įƒ˜įƒ™įƒ˜įƒ”įƒ įƒ“įƒ įƒ”įƒįƒ›įƒįƒ įƒ—įƒšįƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ ā€œKROKā€ ā€œKROKā€ Universitet'),
(86446, 'https://ror.org/04fkhbv91', 'es', 1, 'https://ror.org/04fkhbv91 Centro Nacional de Información de Ciencias Médicas National Information Center of Medical Sciences'),
(86447, 'https://ror.org/03m109w26', 'es', 1, 'https://ror.org/03m109w26 AD&D 4D'),
(86448, 'https://ror.org/02p7bfx81', 'no_lang_code', 1, 'https://ror.org/02p7bfx81 Donaldson (United States)'),
(86449, 'https://ror.org/045grz143', 'en', 1, 'https://ror.org/045grz143 Encephalitis Society'),
(86450, 'https://ror.org/030g1n548', 'en', 1, 'https://ror.org/030g1n548 Canada’s Oil Sands Innovation Alliance'),
(86451, 'https://ror.org/04gh4er46', 'en', 1, 'https://ror.org/04gh4er46 Shenzhen Institutes of Advanced Technology äø­å›½ē§‘å­¦é™¢ę·±åœ³å…ˆčæ›ęŠ€ęœÆē ”ē©¶é™¢'),
(86452, 'https://ror.org/02cbq7e25', 'en', 1, 'https://ror.org/02cbq7e25 KK-stiftelsen Knowledge Foundation'),
(86453, 'https://ror.org/005g07p37', 'en', 1, 'https://ror.org/005g07p37 Iberoamerican University of Science and Technology Universidad Iberoamericana de Ciencias y TecnologĆ­a'),
(86454, 'https://ror.org/05d538656', 'it', 1, 'https://ror.org/05d538656 IRCCS Humanitas Research Hospital Istituto Clinico Humanitas IRCCS'),
(86455, 'https://ror.org/00yr7db88', 'en', 1, 'https://ror.org/00yr7db88 Chartered Institute of Ergonomics and Human Factors'),
(86456, 'https://ror.org/01sv7f575', 'no_lang_code', 1, 'https://ror.org/01sv7f575 Eli Lilly (Japan) ę—„ęœ¬ć‚¤ćƒ¼ćƒ©ć‚¤ćƒŖćƒŖćƒ¼ę Ŗå¼ä¼šē¤¾'),
(86457, 'https://ror.org/002ysmy84', 'no_lang_code', 1, 'https://ror.org/002ysmy84 Takeda (Switzerland)'),
(86458, 'https://ror.org/039zhhm92', 'en', 1, 'https://ror.org/039zhhm92 Islamic Azad University, Isfahan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų®ŁˆŲ±Ų§Ų³ŚÆŲ§Ł†'),
(86459, 'https://ror.org/04mz79w33', 'en', 1, 'https://ror.org/04mz79w33 Thoracic Society of Australia and New Zealand'),
(86460, 'https://ror.org/03h0e2s88', 'en', 1, 'https://ror.org/03h0e2s88 Institute of Marine and Coastal Research Instituto de Investigaciones Marinas y Costeras'),
(86461, 'https://ror.org/00xe85x21', 'no_lang_code', 1, 'https://ror.org/00xe85x21 Lactomason ė½ķ† ė©”ģ“ģŠØ'),
(86462, 'https://ror.org/00n82gt57', 'en', 1, 'https://ror.org/00n82gt57 Centre for Australian National Biodiversity Research'),
(86463, 'https://ror.org/02qer1j03', 'en', 1, 'https://ror.org/02qer1j03 Ministry of Oil وزارة النفط - ŲÆŁˆŁ„Ų© Ų§Ł„ŁƒŁˆŁŠŲŖ'),
(86464, 'https://ror.org/05emrqw14', 'no_lang_code', 1, 'https://ror.org/05emrqw14 Bayer (United Kingdom)'),
(86465, 'https://ror.org/037xna783', 'en', 1, 'https://ror.org/037xna783 Endourological Society'),
(86466, 'https://ror.org/0442n1j98', 'en', 1, 'https://ror.org/0442n1j98 Stockton University'),
(86467, 'https://ror.org/02n5r1g44', 'en', 1, 'https://ror.org/02n5r1g44 Forschungsinstitut für Nutztierbiologie (FBN) Research Institute for Farm Animal Biology (FBN)'),
(86468, 'https://ror.org/02z31cn83', 'en', 1, 'https://ror.org/02z31cn83 Ministry of Electronics and Information Technology ą¤‡ą¤²ą„‡ą¤•ą„ą¤Ÿą„ą¤°ą„‰ą¤Øą¤æą¤•ą„€ और ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(86469, 'https://ror.org/00qemyc07', 'en', 1, 'https://ror.org/00qemyc07 Mindanao State University – Iligan Institute of Technology'),
(86470, 'https://ror.org/04jndar25', 'no_lang_code', 1, 'https://ror.org/04jndar25 NEC (Japan) ę—„ęœ¬é›»ę°—'),
(86471, 'https://ror.org/03ejz0s07', 'no_lang_code', 1, 'https://ror.org/03ejz0s07 Novozymes (Denmark)'),
(86472, 'https://ror.org/031sp1p50', 'en', 1, 'https://ror.org/031sp1p50 Forest Products Laboratory'),
(86473, 'https://ror.org/03ghc4a37', 'en', 1, 'https://ror.org/03ghc4a37 Shendi University Ų¬Ų§Ł…Ų¹Ų© Ų“Ł†ŲÆŁŠ'),
(86474, 'https://ror.org/02nhj8555', 'en', 1, 'https://ror.org/02nhj8555 Alberta Ministry of Agriculture and Forestry'),
(86475, 'https://ror.org/01zby9g91', 'en', 1, 'https://ror.org/01zby9g91 Shahid Sadoughi University of Medical Sciences and Health Services دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų“Ł‡ŪŒŲÆ ŲµŲÆŁˆŁ‚ŪŒ یزد'),
(86476, 'https://ror.org/03bmq2475', 'no_lang_code', 1, 'https://ror.org/03bmq2475 Mettler-Toledo (Switzerland)'),
(86477, 'https://ror.org/00xtszd26', 'en', 1, 'https://ror.org/00xtszd26 Thomas Adewumi University'),
(86478, 'https://ror.org/05qetrn02', 'it', 1, 'https://ror.org/05qetrn02 Fondazione Ri.MED Ri.MED'),
(86479, 'https://ror.org/02z8j1p10', 'en', 1, 'https://ror.org/02z8j1p10 Meat & Livestock Australia'),
(86480, 'https://ror.org/00vwq0k57', 'en', 1, 'https://ror.org/00vwq0k57 Ministry of the Environment MinistƩrio do Meio Ambiente'),
(86481, 'https://ror.org/023bvkf33', 'en', 1, 'https://ror.org/023bvkf33 Schweizerische ZahnƤrzte Gesellschaft Swiss Dental Association'),
(86482, 'https://ror.org/01pe95b45', 'en', 0, 'https://ror.org/01pe95b45 Shiga Medical Center for Adults ę»‹č³€ēœŒē«‹ęˆäŗŗē—…ć‚»ćƒ³ć‚æćƒ¼'),
(86483, 'https://ror.org/01qkhz224', 'en', 1, 'https://ror.org/01qkhz224 A G Leventis Foundation'),
(86484, 'https://ror.org/03x1ewr52', 'no_lang_code', 1, 'https://ror.org/03x1ewr52 Thermo Fisher Scientific (United States)'),
(86485, 'https://ror.org/00f5hjx88', 'pl', 1, 'https://ror.org/00f5hjx88 Górnośląskie Centrum Zdrowia Dziecka w Katowicach'),
(86486, 'https://ror.org/03gdpyq31', 'no_lang_code', 1, 'https://ror.org/03gdpyq31 Boehringer Ingelheim (France)'),
(86487, 'https://ror.org/036568k33', 'en', 1, 'https://ror.org/036568k33 National Botanical Research Institute'),
(86488, 'https://ror.org/04j1n1c04', 'en', 1, 'https://ror.org/04j1n1c04 RIKEN Center for Brain Science å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€č„³ē„žēµŒē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(86489, 'https://ror.org/0377apf83', 'no_lang_code', 1, 'https://ror.org/0377apf83 Swiss Re (Switzerland)'),
(86490, 'https://ror.org/04dwpyh46', 'pt', 1, 'https://ror.org/04dwpyh46 Centro Hospitalar do Porto'),
(86491, 'https://ror.org/00rev1511', 'en', 1, 'https://ror.org/00rev1511 Australian Bureau of Agricultural and Resource Economics'),
(86492, 'https://ror.org/01an7kf92', 'en', 1, 'https://ror.org/01an7kf92 Anti-Slavery'),
(86493, 'https://ror.org/04kddtt70', 'ro', 1, 'https://ror.org/04kddtt70 Institutul National de Cercetari Economice "Costin C. Kiritescu"'),
(86494, 'https://ror.org/02zttza43', 'es', 1, 'https://ror.org/02zttza43 Ministerio de Salud PĆŗblica'),
(86495, 'https://ror.org/00yzwtk60', 'de', 1, 'https://ror.org/00yzwtk60 Dienstleistungszentrum LƤndlicher Raum'),
(86496, 'https://ror.org/03s7fvd27', 'no_lang_code', 1, 'https://ror.org/03s7fvd27 Sakakibara Hospital ę¦ŠåŽŸē—…é™¢'),
(86497, 'https://ror.org/016nge880', 'da', 1, 'https://ror.org/016nge880 NordsjƦllands Hospital'),
(86498, 'https://ror.org/056ybqa45', 'de', 1, 'https://ror.org/056ybqa45 Dienstleistungszentrum LƤndlicher Raum Westerwald-Osteifel'),
(86499, 'https://ror.org/049fqhq96', 'de', 1, 'https://ror.org/049fqhq96 Dienstleistungszentrum LƤndlicher Raum Westpfalz'),
(86500, 'https://ror.org/01g87hr29', 'no_lang_code', 1, 'https://ror.org/01g87hr29 Reckitt Benckiser (United Kingdom)'),
(86501, 'https://ror.org/03bqk3e80', 'en', 1, 'https://ror.org/03bqk3e80 National Cancer Centre Singapore'),
(86502, 'https://ror.org/03pbhyy22', 'en', 1, 'https://ror.org/03pbhyy22 Tishk International University Ų¬Ų§Ł…Ų¹Ų© ؄يؓك'),
(86503, 'https://ror.org/02pecpe58', 'en', 1, 'https://ror.org/02pecpe58 National Guard Health Affairs Ų§Ł„Ų“Ų¤ŁˆŁ† Ų§Ł„ŲµŲ­ŁŠŲ© بالحرس Ų§Ł„ŁˆŲ·Ł†ŁŠ'),
(86504, 'https://ror.org/05k34t975', 'no_lang_code', 1, 'https://ror.org/05k34t975 Illumina (United States)'),
(86505, 'https://ror.org/05nnv1197', 'en', 1, 'https://ror.org/05nnv1197 Institute of Applied Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной физики Российской акаГемии наук'),
(86506, 'https://ror.org/04mk29570', 'en', 1, 'https://ror.org/04mk29570 Bundesamt für Landwirtschaft Federal Office for Agriculture'),
(86507, 'https://ror.org/050rg6t21', 'en', 1, 'https://ror.org/050rg6t21 Prokhorov General Physics Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей физики им. А.М. ŠŸŃ€Š¾Ń…Š¾Ń€Š¾Š²Š° Российской акаГемии наук'),
(86508, 'https://ror.org/024v0gx67', 'en', 1, 'https://ror.org/024v0gx67 Guangxi University of Chinese Medicine å¹æč„æäø­åŒ»čÆå¤§å­¦'),
(86509, 'https://ror.org/028979q34', 'no_lang_code', 1, 'https://ror.org/028979q34 EMD Group (Canada)'),
(86510, 'https://ror.org/020bngz38', 'en', 1, 'https://ror.org/020bngz38 Japan Foundation'),
(86511, 'https://ror.org/03qef0j11', 'no_lang_code', 1, 'https://ror.org/03qef0j11 Citrix (United States)'),
(86512, 'https://ror.org/05bj7sh33', 'en', 1, 'https://ror.org/05bj7sh33 University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… و Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(86513, 'https://ror.org/037styt87', 'en', 1, 'https://ror.org/037styt87 Petersburg Nuclear Physics Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ физики им.Š‘.П.ŠšŠ¾Š½ŃŃ‚Š°Š½Ń‚ŠøŠ½Š¾Š²Š°'),
(86514, 'https://ror.org/02s0rxx79', 'de', 1, 'https://ror.org/02s0rxx79 Deutsche Diabetes Gesellschaft'),
(86515, 'https://ror.org/056sfsm69', 'en', 1, 'https://ror.org/056sfsm69 Departamento de Recursos Naturales y Ambientales Department of Natural and Environmental Resources'),
(86516, 'https://ror.org/008vm1c77', 'en', 1, 'https://ror.org/008vm1c77 Health Foundation Limburg'),
(86517, 'https://ror.org/00qgpp207', 'en', 1, 'https://ror.org/00qgpp207 Kumasi Technical University'),
(86518, 'https://ror.org/029g42942', 'en', 1, 'https://ror.org/029g42942 Institute of Nuclear Medicine & Allied Sciences ą¤Øą¤¾ą¤®ą¤æą¤•ą„€ą¤Æ औषिध तऄा ą¤øą¤‚ą¤¬ą¤¦ą„ą¤§ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(86519, 'https://ror.org/007kp6q87', 'en', 1, 'https://ror.org/007kp6q87 Family Health International 360'),
(86520, 'https://ror.org/00txhkt32', 'en', 1, 'https://ror.org/00txhkt32 Handong Global University ķ•œė™ėŒ€ķ•™źµ'),
(86521, 'https://ror.org/03k2dnh74', 'no_lang_code', 1, 'https://ror.org/03k2dnh74 Zoetis (United States)'),
(86522, 'https://ror.org/05abs3w97', 'en', 1, 'https://ror.org/05abs3w97 Texas A&M University – Kingsville'),
(86523, 'https://ror.org/00xrkf913', 'no_lang_code', 1, 'https://ror.org/00xrkf913 Pacira (United States)'),
(86524, 'https://ror.org/04ng81283', 'en', 1, 'https://ror.org/04ng81283 Science History Institute'),
(86525, 'https://ror.org/02njgxr09', 'en', 1, 'https://ror.org/02njgxr09 Helmholtz Center for Information Security Helmholtz-Zentrum für Informationssicherheit'),
(86526, 'https://ror.org/005nqtf16', 'en', 1, 'https://ror.org/005nqtf16 Fondazione Giorgio Cini Giorgio Cini Foundation'),
(86527, 'https://ror.org/00681ts17', 'en', 1, 'https://ror.org/00681ts17 German Institute for Global and Area Studies Leibniz-Institut für Globale und Regionale Studien'),
(86528, 'https://ror.org/02jcggd50', 'es', 1, 'https://ror.org/02jcggd50 Universidad de Ciencias MƩdicas de GuantƔnamo'),
(86529, 'https://ror.org/021hxpr45', 'ro', 1, 'https://ror.org/021hxpr45 Institute of Agricultural Economics Institutul de Economie Agrara'),
(86530, 'https://ror.org/00v2tx290', 'nl', 1, 'https://ror.org/00v2tx290 Medisch Centrum Haaglanden'),
(86531, 'https://ror.org/02cy0y186', 'en', 1, 'https://ror.org/02cy0y186 Zhoushan Science and Technology Bureau čˆŸå±±åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(86532, 'https://ror.org/00me37y22', 'pt', 1, 'https://ror.org/00me37y22 Algarve Centre of Marine Sciences Centro de CiĆŖncias do Mar do Algarve'),
(86533, 'https://ror.org/033x7ew36', 'no_lang_code', 0, 'https://ror.org/033x7ew36 Advanced Accelerator Applications (Italy)'),
(86534, 'https://ror.org/00v670451', 'de', 1, 'https://ror.org/00v670451 Dienstleistungszentrum Ländlicher Raum Rheinhessen-Nahe-Hunsrück'),
(86535, 'https://ror.org/05xhmzx41', 'no_lang_code', 1, 'https://ror.org/05xhmzx41 Ube (Japan) å®‡éƒØčˆˆē”£ę Ŗå¼ä¼šē¤¾'),
(86536, 'https://ror.org/04jva0k64', 'no_lang_code', 1, 'https://ror.org/04jva0k64 Sinton Instruments'),
(86537, 'https://ror.org/001bzc417', 'en', 1, 'https://ror.org/001bzc417 Fujian Women and Children Hospital'),
(86538, 'https://ror.org/03grk0f38', 'en', 1, 'https://ror.org/03grk0f38 University of Lynchburg'),
(86539, 'https://ror.org/00mrq3p58', 'en', 1, 'https://ror.org/00mrq3p58 Frimley Health NHS Foundation Trust'),
(86540, 'https://ror.org/05hqmp950', 'no_lang_code', 1, 'https://ror.org/05hqmp950 Indivior (United Kingdom)'),
(86541, 'https://ror.org/02af0qw97', 'no_lang_code', 1, 'https://ror.org/02af0qw97 Cisco Systems (Canada)'),
(86542, 'https://ror.org/00gvw5y42', 'no_lang_code', 1, 'https://ror.org/00gvw5y42 Amgen (Canada)'),
(86543, 'https://ror.org/01whmzn59', 'en', 1, 'https://ror.org/01whmzn59 Shanghai Xuhui Central Hospital äøŠęµ·å¾ę±‡äø­åæƒåŒ»é™¢'),
(86544, 'https://ror.org/04kakt857', 'en', 1, 'https://ror.org/04kakt857 Institute of Normal Physiology named after P.K. Anokhin ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š¾Ń€Š¼Š°Š»ŃŒŠ½Š¾Š¹ физиологии имени П. К. Анохина'),
(86545, 'https://ror.org/05qkzsf63', 'no_lang_code', 1, 'https://ror.org/05qkzsf63 Arcadis (Czechia)'),
(86546, 'https://ror.org/009dm8p56', 'en', 1, 'https://ror.org/009dm8p56 European Climate Foundation'),
(86547, 'https://ror.org/03kt3v622', 'it', 1, 'https://ror.org/03kt3v622 Fondazione Poliambulanza Istituto Ospedaliero'),
(86548, 'https://ror.org/038y3sz68', 'en', 1, 'https://ror.org/038y3sz68 Higher Education Commission Ł„ŁŲ¬Ł†Ū‚ Ų§Ų¹Ł„ŪŒŁ° ŲŖŲ¹Ł„ŪŒŁ…'),
(86549, 'https://ror.org/036a0fn15', 'en', 1, 'https://ror.org/036a0fn15 Pacific Southwest Research Station'),
(86550, 'https://ror.org/0307k1x46', 'en', 1, 'https://ror.org/0307k1x46 CSIR National Physical Laboratory of India ą¤øą„€ą¤ą¤øą¤†ą¤ˆą¤†ą¤°-ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤­ą„Œą¤¤ą¤æą¤• ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(86551, 'https://ror.org/016t1kc57', 'no_lang_code', 1, 'https://ror.org/016t1kc57 Kao Corporation (Japan) čŠ±ēŽ‹ę Ŗå¼ä¼šē¤¾'),
(86552, 'https://ror.org/03yj19r32', 'en', 1, 'https://ror.org/03yj19r32 Izumi City General Hospital å’Œę³‰åø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(86553, 'https://ror.org/04amwz106', 'en', 1, 'https://ror.org/04amwz106 Indus Hospital'),
(86554, 'https://ror.org/05s0s0h39', 'no_lang_code', 1, 'https://ror.org/05s0s0h39 Boehringer Ingelheim (Spain)'),
(86555, 'https://ror.org/01sd35748', 'en', 1, 'https://ror.org/01sd35748 TYTO - Association for the Management and Conservation of Biodiversity in Agricultural Ecosystems ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ για τη Ī”Ī¹Ī±Ļ‡ĪµĪÆĻĪ¹ĻƒĪ· και Ī”Ī¹Ī±Ļ„Ī®ĻĪ·ĻƒĪ· της Ī’Ī¹ĪæĻ€ĪæĪ¹ĪŗĪ¹Ī»ĻŒĻ„Ī·Ļ„Ī±Ļ‚ ĻƒĻ„Ī± Αγροτικά ĪŸĪ¹ĪŗĪæĻƒĻ…ĻƒĻ„Ī®Ī¼Ī±Ļ„Ī± «Τ΄ΤΩ»'),
(86556, 'https://ror.org/05kpy7q29', 'en', 1, 'https://ror.org/05kpy7q29 Shiga Medical Center ę»‹č³€åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(86557, 'https://ror.org/00sp4g786', 'en', 1, 'https://ror.org/00sp4g786 Aichi Health Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗę„›ēŸ„ēœŒå„åŗ·ć„ćć‚ŠęŒÆčˆˆäŗ‹ę„­å›£'),
(86558, 'https://ror.org/02d217z27', 'en', 1, 'https://ror.org/02d217z27 Xinqiao Hospital ę–°ę”„åŒ»é™¢'),
(86559, 'https://ror.org/058pagg05', 'en', 1, 'https://ror.org/058pagg05 Global Brain Health Institute'),
(86560, 'https://ror.org/019jdc178', 'en', 1, 'https://ror.org/019jdc178 Northern Research Station'),
(86561, 'https://ror.org/004mbaj56', 'en', 1, 'https://ror.org/004mbaj56 Yarmouk University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŲ±Ł…ŁˆŁƒ'),
(86562, 'https://ror.org/03606hw36', 'en', 1, 'https://ror.org/03606hw36 University of Erfurt UniversitƤt Erfurt'),
(86563, 'https://ror.org/00n7q1156', 'fr', 1, 'https://ror.org/00n7q1156 Gefluc Languedoc Roussillon Groupement des Entreprises FranƧaises dans la Lutte contre le Cancer'),
(86564, 'https://ror.org/04twen471', 'fr', 1, 'https://ror.org/04twen471 Builders Ɖcole d''ingĆ©nieurs'),
(86565, 'https://ror.org/011kdvn37', 'en', 1, 'https://ror.org/011kdvn37 Kohn Foundation'),
(86566, 'https://ror.org/000sxmx78', 'en', 1, 'https://ror.org/000sxmx78 Affiliated Eye Hospital of Wenzhou Medical College ęø©å·žåŒ»ē§‘å¤§å­¦é™„å±žēœ¼č§†å…‰åŒ»é™¢'),
(86567, 'https://ror.org/056swr059', 'en', 1, 'https://ror.org/056swr059 First Affiliated Hospital of Zhengzhou University'),
(86568, 'https://ror.org/04qxks937', 'no_lang_code', 1, 'https://ror.org/04qxks937 Kemira (Finland)'),
(86569, 'https://ror.org/05evp6y14', 'fr', 1, 'https://ror.org/05evp6y14 GƩnƩrale de SantƩ'),
(86570, 'https://ror.org/04hsbr766', 'de', 1, 'https://ror.org/04hsbr766 Dienstleistungszentrum LƤndlicher Raum Mosel'),
(86571, 'https://ror.org/051abs833', 'en', 1, 'https://ror.org/051abs833 Institute of Crop Sciences äø­å›½å†œäøšē§‘å­¦é™¢ä½œē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(86572, 'https://ror.org/00f1qr933', 'en', 1, 'https://ror.org/00f1qr933 Noguchi Memorial Institute for Medical Research'),
(86573, 'https://ror.org/02xfkgs74', 'en', 1, 'https://ror.org/02xfkgs74 Supreme Court of the United States'),
(86574, 'https://ror.org/05m0xgf85', 'en', 1, 'https://ror.org/05m0xgf85 European Parkinsons Disease Association'),
(86575, 'https://ror.org/04nps9965', 'en', 1, 'https://ror.org/04nps9965 Institute of Earth Environment äø­å›½ē§‘å­¦é™¢åœ°ēƒēŽÆå¢ƒē ”ē©¶ę‰€'),
(86576, 'https://ror.org/00363z010', 'en', 1, 'https://ror.org/00363z010 SjƦllands Universitetshospital Zealand University Hospital'),
(86577, 'https://ror.org/029ys9z53', 'en', 1, 'https://ror.org/029ys9z53 Changshu No. 2 People''s Hospital åøøē†Ÿåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(86578, 'https://ror.org/03wfqwh68', 'en', 1, 'https://ror.org/03wfqwh68 Duke University Health System'),
(86579, 'https://ror.org/02jcfzc36', 'en', 1, 'https://ror.org/02jcfzc36 Indian Veterinary Research Institute Institut indien de recherche vĆ©tĆ©rinaire ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą¤¶ą„ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(86580, 'https://ror.org/03wjptj96', 'no_lang_code', 1, 'https://ror.org/03wjptj96 Bracco (Italy)'),
(86581, 'https://ror.org/01a9z1q73', 'en', 1, 'https://ror.org/01a9z1q73 Northeast Institute of Geography and Agroecology äø­å›½ē§‘å­¦é™¢äøœåŒ—åœ°ē†äøŽå†œäøšē”Ÿę€ē ”ē©¶ę‰€'),
(86582, 'https://ror.org/02y123g31', 'en', 1, 'https://ror.org/02y123g31 Takeda Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗę­¦ē”°ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(86583, 'https://ror.org/027arfy53', 'no', 1, 'https://ror.org/027arfy53 GenƘk'),
(86584, 'https://ror.org/03nj29395', 'en', 1, 'https://ror.org/03nj29395 Institute of Biology of Inland Waters named Ivan Dmitrievich Papanin Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Š²Š½ŃƒŃ‚ренних воГ им. И.Š”.Папанина Российской акаГемии наук'),
(86585, 'https://ror.org/01mzw6m29', 'en', 1, 'https://ror.org/01mzw6m29 Nemours Children''s Health System'),
(86586, 'https://ror.org/027fvn224', 'en', 1, 'https://ror.org/027fvn224 The Kidney Fund'),
(86587, 'https://ror.org/00maqj547', 'en', 1, 'https://ror.org/00maqj547 Ɩrebro County Council Ɩrebro lƤns landsting'),
(86588, 'https://ror.org/052hvz838', 'en', 1, 'https://ror.org/052hvz838 Ocean Park Conservation Foundation é¦™ęøÆęµ·ę“‹å…¬åœ’äæč‚²åŸŗé‡‘'),
(86589, 'https://ror.org/015hh0z25', 'en', 1, 'https://ror.org/015hh0z25 Texas A&M University – Central Texas'),
(86590, 'https://ror.org/00cvp0686', 'fr', 1, 'https://ror.org/00cvp0686 Higher Institue of Technological Studies Institut SupĆ©rieur des Ɖtudes Technologiques de Gafsa المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© بقفصة'),
(86591, 'https://ror.org/01jat6m31', 'en', 1, 'https://ror.org/01jat6m31 Urology Foundation'),
(86592, 'https://ror.org/022jjvb64', 'en', 1, 'https://ror.org/022jjvb64 Biomedical Research Foundation'),
(86593, 'https://ror.org/0514nj725', 'en', 1, 'https://ror.org/0514nj725 Kawano Masanori Memorial Public Interest Incorporated Foundation for Promotion of Pediatrics å·é‡Žå°å…åŒ»å­¦å„Øå­¦č²”å›£'),
(86594, 'https://ror.org/01kh5gc44', 'en', 1, 'https://ror.org/01kh5gc44 Indian Institute of Technology BHU ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø(का.हि.वि.),ą¤µą¤¾ą¤°ą¤¾ą¤£ą¤øą„€'),
(86595, 'https://ror.org/03m098d13', 'en', 1, 'https://ror.org/03m098d13 Damascus University Université de damas ԓՔՓՔսկոսի հՔՓՔլսՔրՔն جامعة دمؓق'),
(86596, 'https://ror.org/01wwfqj09', 'en', 1, 'https://ror.org/01wwfqj09 Nancy Yeary Women''s Cancer Research Foundation'),
(86597, 'https://ror.org/01b44s469', 'no_lang_code', 1, 'https://ror.org/01b44s469 Covestro (Germany)'),
(86598, 'https://ror.org/042e6sa59', 'no_lang_code', 1, 'https://ror.org/042e6sa59 Novartis (Spain)'),
(86599, 'https://ror.org/00268wk31', 'en', 1, 'https://ror.org/00268wk31 University of Kurdistan Hewler Zankoy Kurdistan – HewlĆŖr Ų¬Ų§Ł…Ų¹Ų© ŁƒŲ±ŲÆŲ³ŲŖŲ§Ł†'),
(86600, 'https://ror.org/02z8ech05', 'no_lang_code', 0, 'https://ror.org/02z8ech05 Shire (Australia)'),
(86601, 'https://ror.org/018yw5541', 'en', 1, 'https://ror.org/018yw5541 Institute of Oceanology 中国科学院海擋研究所'),
(86602, 'https://ror.org/01nr6ek07', 'fr', 1, 'https://ror.org/01nr6ek07 Institut SupĆ©rieur d''Informatique et de MathĆ©matiques de Monastir المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ© ŁˆŲ§Ł„Ų±ŁŠŲ§Ų¶ŁŠŲ§ŲŖ ŲØŲ§Ł„Ł…Ł†Ų³ŲŖŁŠŲ±'),
(86603, 'https://ror.org/028yaa073', 'en', 1, 'https://ror.org/028yaa073 Carlos Hilado Memorial State University'),
(86604, 'https://ror.org/006v63s16', 'en', 1, 'https://ror.org/006v63s16 National University of Engineering Universidad Nacional de IngenierĆ­a'),
(86605, 'https://ror.org/03sf6n204', 'en', 1, 'https://ror.org/03sf6n204 Society of Urodynamics, Female Pelvic Medicine & Urogenital Reconstruction'),
(86606, 'https://ror.org/028ka0n85', 'pt', 1, 'https://ror.org/028ka0n85 Federal University of Sergipe Universidade Federal de Sergipe'),
(86607, 'https://ror.org/02sbbq532', 'no_lang_code', 1, 'https://ror.org/02sbbq532 Australian Pork (Australia)'),
(86608, 'https://ror.org/00d7t1v24', 'de', 1, 'https://ror.org/00d7t1v24 Dienstleistungszentrum LƤndlicher Raum Eifel'),
(86609, 'https://ror.org/0081myy06', 'en', 1, 'https://ror.org/0081myy06 Delta Research and Educational Foundation'),
(86610, 'https://ror.org/00pfevw30', 'en', 1, 'https://ror.org/00pfevw30 Great Barrier Reef Marine Park Authority'),
(86611, 'https://ror.org/022abst40', 'en', 1, 'https://ror.org/022abst40 Centre for Development of Advanced Computing ą¤øą„€-ą¤”ą„…ą¤• ą¤øą„€-ą¤”ą„ˆą¤• ą®šą®æą®Ÿą®¾ą®•ąÆ ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“”ąµ†ą“µą“²ą“Ŗąµą“®ąµ†ą“Øąµą“±ąµ ą““ą“«ąµ ą“…ą“”ąµą“µą“¾ąµ»ą“øąµą“”ąµ ą“•ą“®ąµą“Ŗąµą“Æąµ‚ą“Ÿąµą“Ÿą“æą“™ąµą“™ąµ'),
(86612, 'https://ror.org/02kpaqs60', 'en', 1, 'https://ror.org/02kpaqs60 Zhejiang Radio and Television University ęµ™ę±Ÿå¹æę’­ē”µč§†å¤§å­¦'),
(86613, 'https://ror.org/00bve7358', 'no_lang_code', 1, 'https://ror.org/00bve7358 Imperial Oil (Canada) La Pétrolière Impériale'),
(86614, 'https://ror.org/04kbz1397', 'en', 1, 'https://ror.org/04kbz1397 Calvary Mater Newcastle Hospital'),
(86615, 'https://ror.org/026tjcs76', 'en', 0, 'https://ror.org/026tjcs76 National Metallurgical Academy of Ukraine ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Украины ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³Ń–Š¹Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України'),
(86616, 'https://ror.org/04d8xwh61', 'en', 1, 'https://ror.org/04d8xwh61 Education Department of Jiangxi Province'),
(86617, 'https://ror.org/03k0pmz17', 'en', 1, 'https://ror.org/03k0pmz17 International Center for Jefferson Studies at Monticello'),
(86618, 'https://ror.org/01de7dx97', 'fr', 1, 'https://ror.org/01de7dx97 Institut SupĆ©rieur des Sciences AppliquĆ©es et de Technologies de Gafsa المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© بقفصة'),
(86619, 'https://ror.org/05sz9gw20', 'en', 1, 'https://ror.org/05sz9gw20 Fraunhofer USA Center Mid-Atlantic CMA'),
(86620, 'https://ror.org/05p3z3a83', 'en', 1, 'https://ror.org/05p3z3a83 Sohail University'),
(86621, 'https://ror.org/03zeg8w71', 'no_lang_code', 1, 'https://ror.org/03zeg8w71 Steklov Mathematical Institute ŠœŠ°Ń‚ŠµŠ¼Š°Ń‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’. А. Дтеклова'),
(86622, 'https://ror.org/057x2fe53', 'en', 1, 'https://ror.org/057x2fe53 Kappa Omicron Nu Honor Society'),
(86623, 'https://ror.org/0228cyp78', 'fr', 1, 'https://ror.org/0228cyp78 Institut de MƩdecine et d''EpidƩmiologie Africaines'),
(86624, 'https://ror.org/02xwr1996', 'en', 1, 'https://ror.org/02xwr1996 Grains Research and Development Corporation'),
(86625, 'https://ror.org/05f0rzm15', 'en', 1, 'https://ror.org/05f0rzm15 Transnational University Limburg Transnationale Universiteit Limburg'),
(86626, 'https://ror.org/03vx94b97', 'fr', 1, 'https://ror.org/03vx94b97 CancƩropƓle Grand Ouest'),
(86627, 'https://ror.org/025h3d465', 'no_lang_code', 1, 'https://ror.org/025h3d465 PPG Industries (United States)'),
(86628, 'https://ror.org/038qye345', 'no_lang_code', 1, 'https://ror.org/038qye345 Recordati (Spain)'),
(86629, 'https://ror.org/01dv86r63', 'sv', 1, 'https://ror.org/01dv86r63 Landstinget i Uppsala lƤn'),
(86630, 'https://ror.org/01akman82', 'no_lang_code', 1, 'https://ror.org/01akman82 Mallinckrodt (United States)'),
(86631, 'https://ror.org/023dgw813', 'en', 1, 'https://ror.org/023dgw813 Centro de Investigaciones en Química Biológica de Córdoba Research Centre in Biological Chemistry of Córdoba'),
(86632, 'https://ror.org/00rt8gn18', 'en', 0, 'https://ror.org/00rt8gn18 InstitiĆŗid TeicneolaĆ­ochta ThrĆ” LĆ­ Institute of Technology Tralee'),
(86633, 'https://ror.org/05ghce186', 'id', 1, 'https://ror.org/05ghce186 STIKOM Tunas Bangsa'),
(86634, 'https://ror.org/03460ag39', 'es', 1, 'https://ror.org/03460ag39 Instituto Superior Pedro Francisco Bono'),
(86635, 'https://ror.org/02af3th35', 'en', 0, 'https://ror.org/02af3th35 Manchester Mental Health and Social Care Trust'),
(86636, 'https://ror.org/02th47404', 'en', 1, 'https://ror.org/02th47404 PapeŔka univerza Gregoriana Pontifical Gregorian University Pontificia Università Gregoriana Pontifícia Universitat Gregoriana Päpstliche Universität Gregoriana Université pontificale grégorienne'),
(86637, 'https://ror.org/059c60c91', 'en', 0, 'https://ror.org/059c60c91 Derby Hospitals NHS Foundation Trust'),
(86638, 'https://ror.org/04qcyxv03', 'en', 1, 'https://ror.org/04qcyxv03 Sri Shankara Cancer Hospital and Research Center ą²¶ą³ą²°ą³€ ಶಂಕರ ą²•ą³ą²Æą²¾ą²Øą³ą²øą²°ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³† ą²®ą²¤ą³ą²¤ą³ ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(86639, 'https://ror.org/04ahe1r73', 'en', 1, 'https://ror.org/04ahe1r73 National Standards and Calibration Laboratory المخبر Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„Ł…Ų¹Ų§ŁŠŁŠŲ± ŁˆŲ§Ł„Ł…Ų¹Ų§ŁŠŲ±Ų© Ų¢Ų±.Ų„Ų³.Ų„Ų³'),
(86640, 'https://ror.org/034w22c34', 'fr', 1, 'https://ror.org/034w22c34 Epicentre'),
(86641, 'https://ror.org/03n39rz22', 'es', 1, 'https://ror.org/03n39rz22 Universidad de la Tercera Edad'),
(86642, 'https://ror.org/00r5vqy54', 'es', 1, 'https://ror.org/00r5vqy54 Universidad Católica del Este'),
(86643, 'https://ror.org/04ytq6y86', 'es', 1, 'https://ror.org/04ytq6y86 Universidad Católica Santo Domingo'),
(86644, 'https://ror.org/0298y8x97', 'es', 1, 'https://ror.org/0298y8x97 Hospital Infantil Dr. Robert Reid Cabral'),
(86645, 'https://ror.org/00vbzva31', 'en', 1, 'https://ror.org/00vbzva31 MRC Centre for Medical Mycology'),
(86646, 'https://ror.org/0145rpw38', 'en', 1, 'https://ror.org/0145rpw38 Stockholm Resilience Centre'),
(86647, 'https://ror.org/0555nvm74', 'en', 0, 'https://ror.org/0555nvm74 City Hospitals Sunderland NHS Foundation Trust'),
(86648, 'https://ror.org/031h41563', 'en', 1, 'https://ror.org/031h41563 Jeppiaar Engineering College ą®œąÆ†ą®ŖąÆą®Ŗą®æą®Æą®¾ą®°ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(86649, 'https://ror.org/02aaqv166', 'en', 1, 'https://ror.org/02aaqv166 Kijevi Egyetem Taras Shevchenko National University of Kyiv Uniwersytet Kijowski Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Тараса Шевченко ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Тараса Шевченка'),
(86650, 'https://ror.org/01zr8ek85', 'en', 1, 'https://ror.org/01zr8ek85 Anchor University Lagos'),
(86651, 'https://ror.org/005vhrs19', 'en', 0, 'https://ror.org/005vhrs19 International Council for Science'),
(86652, 'https://ror.org/02mpjaz73', 'en', 1, 'https://ror.org/02mpjaz73 Public University "Kadri Zeka" Universiteti Publik "Kadri Zeka"'),
(86653, 'https://ror.org/04xf6nm78', 'en', 1, 'https://ror.org/04xf6nm78 Cadi Ayyad University UniversitĆ© Cadi Ayyad Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ų§Ų¶ŁŠ عياض'),
(86654, 'https://ror.org/01kw6bd80', 'en', 1, 'https://ror.org/01kw6bd80 Indian Institute of Information Technology Design and Manufacturing, Kurnool ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€, ą¤…ą¤­ą¤æą¤•ą¤²ą„ą¤Ŗą¤Øą¤¾ ą¤ą¤µą¤‚ ą¤µą¤æą¤Øą¤æą¤°ą„ą¤®ą¤¾ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą¤°ą„ą¤Øą„‚ą¤² ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°‡ą°Øą±ą°«ą°°ą±ą°®ą±‡ą°·ą°Øą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€, ą°”ą°æą°œą±ˆą°Øą± ą°…ą°‚ą°”ą± ą°®ą°¾ą°Øą±ą°Æą±ą°«ą±ą°Æą°¾ą°•ą±ą°šą°°ą°æą°‚ą°—ą±, ą°•ą°°ą±ą°Øą±‚ą°²ą±'),
(86655, 'https://ror.org/0084fbz83', 'en', 1, 'https://ror.org/0084fbz83 Ghana Standards Authority'),
(86656, 'https://ror.org/0250t7374', 'es', 1, 'https://ror.org/0250t7374 Universidad Federico HenrĆ­quez y Carvajal'),
(86657, 'https://ror.org/04ys6yn24', 'no_lang_code', 0, 'https://ror.org/04ys6yn24 Praxair (United States)'),
(86658, 'https://ror.org/00xcmeq33', 'en', 1, 'https://ror.org/00xcmeq33 Tahoe Environmental Research Center'),
(86659, 'https://ror.org/011frrw52', 'es', 1, 'https://ror.org/011frrw52 Universidad Odontológica Dominicana'),
(86660, 'https://ror.org/01w56mz86', 'sr', 0, 'https://ror.org/01w56mz86 Faculty of Mechanical Engineering - University in Nis Masinski Fakultet - Univerziteta U Nisu'),
(86661, 'https://ror.org/04hhwm583', 'no_lang_code', 0, 'https://ror.org/04hhwm583 Computer Sciences Corporation (United States)'),
(86662, 'https://ror.org/024x69p90', 'en', 1, 'https://ror.org/024x69p90 Kala-Azar Medical Research Centre'),
(86663, 'https://ror.org/05k0bd539', 'es', 1, 'https://ror.org/05k0bd539 Universidad Nacional de la PolicĆ­a de Honduras'),
(86664, 'https://ror.org/046zg3t88', 'no_lang_code', 1, 'https://ror.org/046zg3t88 Drug Hunter'),
(86665, 'https://ror.org/05p9py079', 'en', 1, 'https://ror.org/05p9py079 Botswana Bureau of Standards'),
(86666, 'https://ror.org/00867fn66', 'en', 1, 'https://ror.org/00867fn66 Azerbaijan Institute of Metrology Azerbaycan Metrologiya Institutu'),
(86667, 'https://ror.org/058cmte92', 'en', 1, 'https://ror.org/058cmte92 Manara University UniversitĆ© Manara Ų¬Ų§Ł…Ų¹Ų© المنارة'),
(86668, 'https://ror.org/05n25nw52', 'fr', 1, 'https://ror.org/05n25nw52 RƩseau QuƩbec maritime'),
(86669, 'https://ror.org/01k2yk558', 'pt', 1, 'https://ror.org/01k2yk558 Centro UniversitÔrio Católica de Santa Catarina'),
(86670, 'https://ror.org/01k5h5v15', 'en', 1, 'https://ror.org/01k5h5v15 Technical University of Applied Sciences Würzburg-Schweinfurt Technische Hochschule Würzburg-Schweinfurt'),
(86671, 'https://ror.org/002rm9455', 'en', 0, 'https://ror.org/002rm9455 Colchester Hospital University NHS Foundation Trust'),
(86672, 'https://ror.org/02a00xk96', 'no_lang_code', 0, 'https://ror.org/02a00xk96 Kosan Biosciences (United States)'),
(86673, 'https://ror.org/03cd4ja39', 'en', 1, 'https://ror.org/03cd4ja39 Lanzhou City University å…°å·žåŸŽåø‚å­¦é™¢ę˜Æ'),
(86674, 'https://ror.org/02pe3qa74', 'no_lang_code', 1, 'https://ror.org/02pe3qa74 Mountain Vista Medical Center'),
(86675, 'https://ror.org/05nkper64', 'en', 1, 'https://ror.org/05nkper64 State Committee for Standardization of the Republic of Belarus Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ комитет по станГартизации Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ Š”Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŠŗŠ°Š¼Ń–Ń‚ŃŃ‚ па станГартызацыі Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(86676, 'https://ror.org/002nhnx25', 'en', 0, 'https://ror.org/002nhnx25 Saimaa University of Applied Sciences Saimaan ammattikorkeakoulu'),
(86677, 'https://ror.org/05ej0vv18', 'es', 1, 'https://ror.org/05ej0vv18 Hospital Domingo Funes'),
(86678, 'https://ror.org/052jw0990', 'no_lang_code', 1, 'https://ror.org/052jw0990 Georgia-Pacific (United States)'),
(86679, 'https://ror.org/005xmsp39', 'en', 1, 'https://ror.org/005xmsp39 Leibniz-Centre for Contemporary History Leibniz-Zentrum für Zeithistorische Forschung'),
(86680, 'https://ror.org/037qxb619', 'en', 0, 'https://ror.org/037qxb619 InstitiĆŗid TeicneolaĆ­ochta Tamhlacht Institute of Technology Tallaght'),
(86681, 'https://ror.org/04sv9xq20', 'en', 1, 'https://ror.org/04sv9xq20 TCS Education System'),
(86682, 'https://ror.org/000rse656', 'es', 1, 'https://ror.org/000rse656 Reef Check - Dominican Republic Reef Check - RepĆŗblica Dominicana'),
(86683, 'https://ror.org/006ehed04', 'en', 0, 'https://ror.org/006ehed04 Interactive Institute'),
(86684, 'https://ror.org/00bqnfa53', 'en', 1, 'https://ror.org/00bqnfa53 Government College Women University Sialkot ŚÆŁˆŲ±Ł†Ł…Ł¹ کالج ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒŲŒ Ų³ŪŒŲ§Ł„Ś©ŁˆŁ¹'),
(86685, 'https://ror.org/01rgfv364', 'en', 1, 'https://ror.org/01rgfv364 Thiagarajar College of Engineering'),
(86686, 'https://ror.org/05szqz470', 'en', 0, 'https://ror.org/05szqz470 National Institute of Radiological Sciences ę”¾å°„ē·šåŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(86687, 'https://ror.org/05g7ez988', 'en', 1, 'https://ror.org/05g7ez988 Jaamacadda Salaam Salaam University Ų¬Ų§Ł…Ų¹Ų© السلام'),
(86688, 'https://ror.org/00s3p9v54', 'en', 1, 'https://ror.org/00s3p9v54 Japan Electric Meters Inspection Corporation ę—„ęœ¬é›»ę°—čØˆå™Øę¤œå®šę‰€'),
(86689, 'https://ror.org/038g0mr08', 'tr', 1, 'https://ror.org/038g0mr08 Serik Devlet Hastanesi'),
(86690, 'https://ror.org/02fdd6s16', 'no_lang_code', 0, 'https://ror.org/02fdd6s16 Ashiya College čŠ¦å±‹å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(86691, 'https://ror.org/04sbqq249', 'de', 1, 'https://ror.org/04sbqq249 E+E Elektronik'),
(86692, 'https://ror.org/03eta9142', 'en', 0, 'https://ror.org/03eta9142 Rowland Institute at Harvard'),
(86693, 'https://ror.org/00hxrkj54', 'en', 0, 'https://ror.org/00hxrkj54 University of the Rockies'),
(86694, 'https://ror.org/02jj4jf83', 'fr', 1, 'https://ror.org/02jj4jf83 Institut Catholique d''Arts et MƩtiers'),
(86695, 'https://ror.org/03w24fg09', 'pt', 1, 'https://ror.org/03w24fg09 Fundo Nacional de Desenvolvimento da Educação'),
(86696, 'https://ror.org/0441mgk24', 'en', 0, 'https://ror.org/0441mgk24 Fachhochschule Ostschweiz University of Applied Sciences of Eastern Switzerland'),
(86697, 'https://ror.org/01180st77', 'fr', 1, 'https://ror.org/01180st77 ENCPB - LycƩe Pierre-Gilles-de-Gennes'),
(86698, 'https://ror.org/02gexj360', 'pt', 1, 'https://ror.org/02gexj360 Editora JRG'),
(86699, 'https://ror.org/04mznrw11', 'en', 1, 'https://ror.org/04mznrw11 University of Benin YunifÔsítì ìlú Benin'),
(86700, 'https://ror.org/01npa3a43', 'en', 1, 'https://ror.org/01npa3a43 National Metrology Institute of Ethiopia'),
(86701, 'https://ror.org/012v5a532', 'en', 1, 'https://ror.org/012v5a532 Kalinga State University'),
(86702, 'https://ror.org/04v6tba94', 'es', 1, 'https://ror.org/04v6tba94 Universidad PsicologĆ­a Industrial Dominicana'),
(86703, 'https://ror.org/01rzjwy17', 'es', 1, 'https://ror.org/01rzjwy17 Universidad Eugenio MarĆ­a de Hostos'),
(86704, 'https://ror.org/02wwfdn93', 'en', 1, 'https://ror.org/02wwfdn93 National Metrology Laboratory of the Philippines'),
(86705, 'https://ror.org/038v7xb98', 'en', 0, 'https://ror.org/038v7xb98 International Institute for Geo-Information Science and Earth Observation'),
(86706, 'https://ror.org/02hr4zq26', 'no_lang_code', 0, 'https://ror.org/02hr4zq26 Beckman Coulter (United States)'),
(86707, 'https://ror.org/04nx14k28', 'es', 1, 'https://ror.org/04nx14k28 Instituto Dermatológico y Cirugía de Piel "Dr. Huberto Bogaert Díaz"'),
(86708, 'https://ror.org/05yfjjn56', 'es', 1, 'https://ror.org/05yfjjn56 Escuela Superior de Comercio Manuel Belgrano'),
(86709, 'https://ror.org/058k8t807', 'en', 1, 'https://ror.org/058k8t807 Industrial Technology Development Institute'),
(86710, 'https://ror.org/044844x42', 'en', 1, 'https://ror.org/044844x42 Government Laboratory ę”æåŗœåŒ–é©—ę‰€'),
(86711, 'https://ror.org/00ezrrm21', 'en', 1, 'https://ror.org/00ezrrm21 United States Bureau of Reclamation'),
(86712, 'https://ror.org/032mwd808', 'fr', 1, 'https://ror.org/032mwd808 Doctors Without Borders Médecins Sans Frontières'),
(86713, 'https://ror.org/00vsnbn30', 'es', 1, 'https://ror.org/00vsnbn30 Instituto de Investigaciones en Ciencias de la Salud'),
(86714, 'https://ror.org/01fs4c742', 'en', 1, 'https://ror.org/01fs4c742 BioTherapeutics, Education and Research Foundation'),
(86715, 'https://ror.org/00gdv5j66', 'en', 1, 'https://ror.org/00gdv5j66 National Metrology Center of Cambodia įž˜įž‡įŸ’įžˆįž˜įžŽįŸ’įžŒįž›įž˜įž¶įžįŸ’įžšįž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšįž‡įž¶įžįž·'),
(86716, 'https://ror.org/02mgk0s80', 'en', 1, 'https://ror.org/02mgk0s80 Namibian Standards Institution'),
(86717, 'https://ror.org/0273vkt78', 'en', 1, 'https://ror.org/0273vkt78 Epicentre Uganda'),
(86718, 'https://ror.org/00fn6h977', 'no_lang_code', 1, 'https://ror.org/00fn6h977 Yunnan Botanee Biotechnology Group Co. äŗ‘å—č“ę³°å¦®ē”Ÿē‰©ē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(86719, 'https://ror.org/04fzaxn66', 'en', 1, 'https://ror.org/04fzaxn66 Precious Cornerstone University'),
(86720, 'https://ror.org/02d4te065', 'en', 1, 'https://ror.org/02d4te065 Sri Lanka Technological Campus'),
(86721, 'https://ror.org/031aae972', 'en', 1, 'https://ror.org/031aae972 Bangladesh Reference Institute for Chemical Measurements'),
(86722, 'https://ror.org/04x17yn39', 'es', 1, 'https://ror.org/04x17yn39 Universidad Dominicana Organización & Métodos'),
(86723, 'https://ror.org/04x3fyv94', 'es', 1, 'https://ror.org/04x3fyv94 Consorcio MadroƱo'),
(86724, 'https://ror.org/01ec0jk73', 'fr', 1, 'https://ror.org/01ec0jk73 Ecole SupƩrieure de Technologie de Safi'),
(86725, 'https://ror.org/01h6ezd77', 'en', 1, 'https://ror.org/01h6ezd77 Centro de Investigaciones en Ciencias de la Tierra Research Center on Earth Sciences'),
(86726, 'https://ror.org/02v4yxp84', 'no_lang_code', 1, 'https://ror.org/02v4yxp84 State Grid Hebei Electric Power Company å›½ē½‘ę²³åŒ—ēœē”µåŠ›ęœ‰é™å…¬åø'),
(86727, 'https://ror.org/053194h78', 'en', 0, 'https://ror.org/053194h78 Association for the Conservation of Energy'),
(86728, 'https://ror.org/037hcdr69', 'fr', 1, 'https://ror.org/037hcdr69 Institut SupĆ©rieur d''Informatique de Mahdia المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ© ŲØŲ§Ł„Ł…Ł‡ŲÆŁŠŲ©'),
(86729, 'https://ror.org/00yga0160', 'en', 1, 'https://ror.org/00yga0160 Delta College of Science and Technology ŁƒŁ„ŁŠŲ© دلتا Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(86730, 'https://ror.org/00ejhmf76', 'en', 1, 'https://ror.org/00ejhmf76 Kansas Health Sciences Center'),
(86731, 'https://ror.org/0266sez77', 'id', 1, 'https://ror.org/0266sez77 Pertamina University Universitas Pertamina'),
(86732, 'https://ror.org/05yfwpr80', 'es', 1, 'https://ror.org/05yfwpr80 Provincial University of Cordoba Universidad Provincial de Córdoba'),
(86733, 'https://ror.org/05ntpq911', 'en', 0, 'https://ror.org/05ntpq911 Carlos III Hospital'),
(86734, 'https://ror.org/04gen2f55', 'es', 1, 'https://ror.org/04gen2f55 Colegio Nacional de Monserrat'),
(86735, 'https://ror.org/00c1q9b66', 'es', 1, 'https://ror.org/00c1q9b66 Instituto Nacional de Normalización'),
(86736, 'https://ror.org/03rp0mv35', 'en', 1, 'https://ror.org/03rp0mv35 Kharkiv International Medical University ŠŸŃ€ŠøŠ²Š°Ń‚Š½ŠøŠ¹ вищий Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ заклаГ "Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ міжнароГний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚"'),
(86737, 'https://ror.org/00pwhet45', 'en', 1, 'https://ror.org/00pwhet45 Georgian National University SEU įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ įƒ”įƒ”įƒ£'),
(86738, 'https://ror.org/00xbre758', 'pt', 1, 'https://ror.org/00xbre758 Unimed Belo Horizonte'),
(86739, 'https://ror.org/04b1hsx72', 'no_lang_code', 1, 'https://ror.org/04b1hsx72 Shenzhen Chipscreen Biosciences Co. ę·±åœ³å¾®čŠÆē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(86740, 'https://ror.org/01qt8w311', 'es', 1, 'https://ror.org/01qt8w311 Ministerio de Educación Superior, Ciencia y Tecnología'),
(86741, 'https://ror.org/01aaztb91', 'de', 1, 'https://ror.org/01aaztb91 Staatliches Institut für Musikforschung'),
(86742, 'https://ror.org/01qk25a76', 'id', 1, 'https://ror.org/01qk25a76 Sekolah Tinggi Agama Islam Ma''had Ali Cirebon'),
(86743, 'https://ror.org/00whhby07', 'fr', 1, 'https://ror.org/00whhby07 Centre Henri Becquerel'),
(86744, 'https://ror.org/01e9d9c48', 'en', 1, 'https://ror.org/01e9d9c48 Bangladesh Standards and Testing Institution'),
(86745, 'https://ror.org/036jeby88', 'en', 0, 'https://ror.org/036jeby88 Waiariki Institute of Technology Whare Takiura o Waiariki'),
(86746, 'https://ror.org/036z4mp18', 'en', 1, 'https://ror.org/036z4mp18 Usman Institute of Technology'),
(86747, 'https://ror.org/03g9kfn98', 'en', 1, 'https://ror.org/03g9kfn98 Israa University- Palestine Ų¬Ų§Ł…Ų¹Ų© الاسراؔ-ŁŁ„Ų³Ų·ŁŠŁ†'),
(86748, 'https://ror.org/0033v8v27', 'no_lang_code', 0, 'https://ror.org/0033v8v27 Freescale Semiconductor (Germany)'),
(86749, 'https://ror.org/05402ng93', 'en', 1, 'https://ror.org/05402ng93 Kinneret College on the Sea of Galilee המכללה ×”××§×“×ž×™×Ŗ כנרת בעמק ×”×™×Ø×“×Ÿ ŁƒŁ„ŁŠŲ© ŁƒŁŠŁ†ŁŠŲ±ŁŠŲŖ Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(86750, 'https://ror.org/01wspgy28', 'en', 1, 'https://ror.org/01wspgy28 University of Hawaiʻi at Mānoa Université d''hawaï à mānoa'),
(86751, 'https://ror.org/02se4yf44', 'no_lang_code', 1, 'https://ror.org/02se4yf44 Trescal'),
(86752, 'https://ror.org/02hn7j889', 'en', 1, 'https://ror.org/02hn7j889 Malaria Consortium'),
(86753, 'https://ror.org/02vrpve57', 'es', 1, 'https://ror.org/02vrpve57 Instituto Geológico Minero y Metalúrgico'),
(86754, 'https://ror.org/01f8qf629', 'en', 0, 'https://ror.org/01f8qf629 National Water Commission'),
(86755, 'https://ror.org/00fbx7096', 'no_lang_code', 1, 'https://ror.org/00fbx7096 LGC'),
(86756, 'https://ror.org/03n7t0366', 'no_lang_code', 0, 'https://ror.org/03n7t0366 Calsonic Kansei (Japan) ć‚«ćƒ«ć‚½ćƒ‹ćƒƒć‚Æć‚«ćƒ³ć‚»ć‚¤'),
(86757, 'https://ror.org/05v6nhz77', 'no_lang_code', 0, 'https://ror.org/05v6nhz77 Osram Opto Semiconductors'),
(86758, 'https://ror.org/05tpnw772', 'de', 1, 'https://ror.org/05tpnw772 German BioImaging – Gesellschaft für Mikroskopie und Bildanalyse German BioImaging – Society for Microscopy and Image Analysis'),
(86759, 'https://ror.org/036segs98', 'es', 1, 'https://ror.org/036segs98 Instituto Tecnológico de las Américas'),
(86760, 'https://ror.org/009jear33', 'en', 1, 'https://ror.org/009jear33 Malaria Consortium'),
(86761, 'https://ror.org/03fnfwd91', 'en', 1, 'https://ror.org/03fnfwd91 Mauritius Standards Bureau'),
(86762, 'https://ror.org/03b8ksw26', 'es', 1, 'https://ror.org/03b8ksw26 Instituto Nacional de Diabetes, Endocrinología y Nutrición'),
(86763, 'https://ror.org/019v6dw66', 'no_lang_code', 1, 'https://ror.org/019v6dw66 Zylem Biosciences'),
(86764, 'https://ror.org/05wjmdd46', 'en', 1, 'https://ror.org/05wjmdd46 Bureau of Standards, Metrology and Inspection ē¶“ęæŸéƒØęØ™ęŗ–ęŖ¢é©—å±€'),
(86765, 'https://ror.org/00q7xcm69', 'es', 1, 'https://ror.org/00q7xcm69 Instituto Boliviano de Metrologia'),
(86766, 'https://ror.org/0111wxt17', 'en', 0, 'https://ror.org/0111wxt17 National Radiological Protection Board'),
(86767, 'https://ror.org/04nh79216', 'es', 1, 'https://ror.org/04nh79216 Instituto de Investigación Médica Mercedes y Martín Ferreyra'),
(86768, 'https://ror.org/056480298', 'en', 1, 'https://ror.org/056480298 Azerbaijan Cooperation University Azərbaycan Kooperasiya Universiteti'),
(86769, 'https://ror.org/016459f45', 'en', 0, 'https://ror.org/016459f45 Cumbria Partnership NHS Foundation Trust'),
(86770, 'https://ror.org/0308crw96', 'en', 1, 'https://ror.org/0308crw96 Divine Mercy University'),
(86771, 'https://ror.org/0522mv576', 'no_lang_code', 0, 'https://ror.org/0522mv576 Swerea (Sweden)'),
(86772, 'https://ror.org/043rbr770', 'en', 1, 'https://ror.org/043rbr770 Department of Infrastructure, Transport, Regional Development, Communications and the Arts'),
(86773, 'https://ror.org/012npkr10', 'en', 1, 'https://ror.org/012npkr10 St. Joseph''s Institute of Technology'),
(86774, 'https://ror.org/04jfmb677', 'en', 0, 'https://ror.org/04jfmb677 Art Institute of Fort Lauderdale'),
(86775, 'https://ror.org/03pabrb21', 'en', 1, 'https://ror.org/03pabrb21 Malaria Consortium'),
(86776, 'https://ror.org/0404psf52', 'no_lang_code', 1, 'https://ror.org/0404psf52 Quantitative Genomics Medicine Laboratories (qGenomics)'),
(86777, 'https://ror.org/05ee7se63', 'en', 0, 'https://ror.org/05ee7se63 Moscow State University of Economics Statistics and Informatics Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, статистики Šø информатики'),
(86778, 'https://ror.org/05h1ry383', 'en', 1, 'https://ror.org/05h1ry383 Wenzhou Polytechnic ęø©å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(86779, 'https://ror.org/04sfka033', 'en', 1, 'https://ror.org/04sfka033 Mashhad University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی مؓهد'),
(86780, 'https://ror.org/055jwev93', 'en', 1, 'https://ror.org/055jwev93 Sri Venkatesa Perumal College of Engineering and Technology'),
(86781, 'https://ror.org/012kjw534', 'no_lang_code', 0, 'https://ror.org/012kjw534 Affymetrix (United States)'),
(86782, 'https://ror.org/04cfzns05', 'no_lang_code', 1, 'https://ror.org/04cfzns05 Sound Vaccine ģ‚¬ģš“ė“œė°±ģ‹  ģ£¼ģ‹ķšŒģ‚¬'),
(86783, 'https://ror.org/0110d9x36', 'en', 1, 'https://ror.org/0110d9x36 Kabardino-Balkarian State University ŠšŠ°Š±Š°Ń€Š“ŠøŠ½Š¾-Балкарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(86784, 'https://ror.org/03ka3sq75', 'en', 1, 'https://ror.org/03ka3sq75 Ukrainian Centre for European Policy Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ центр Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠ¾Ń— політики'),
(86785, 'https://ror.org/044ze3t60', 'no_lang_code', 1, 'https://ror.org/044ze3t60 Resonance (United States)'),
(86786, 'https://ror.org/013gpqv08', 'en', 1, 'https://ror.org/013gpqv08 University of N''Djamena UniversitƩ de N''Djamena'),
(86787, 'https://ror.org/00sn9ab77', 'en', 0, 'https://ror.org/00sn9ab77 Samara State University Дамарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(86788, 'https://ror.org/01n4q9493', 'en', 1, 'https://ror.org/01n4q9493 Mabalacat City College'),
(86789, 'https://ror.org/03bd77560', 'en', 0, 'https://ror.org/03bd77560 Institiúid Teicneolaíochta Baile Bhlainséir Institute of Technology, Blanchardstown'),
(86790, 'https://ror.org/02dqrks84', 'en', 0, 'https://ror.org/02dqrks84 Brighton and Sussex University Hospitals NHS Trust'),
(86791, 'https://ror.org/009gavr08', 'no_lang_code', 1, 'https://ror.org/009gavr08 Empresa Nacional de AeronƔutica'),
(86792, 'https://ror.org/03rmkkx43', 'es', 1, 'https://ror.org/03rmkkx43 Universidad Nacional Tecnológica'),
(86793, 'https://ror.org/03aev4v24', 'no_lang_code', 0, 'https://ror.org/03aev4v24 LymphoSign Journal (Canada)'),
(86794, 'https://ror.org/024b57v39', 'en', 1, 'https://ror.org/024b57v39 Kosin University ź³ ģ‹ ėŒ€ķ•™źµ'),
(86795, 'https://ror.org/03wjf7p35', 'en', 1, 'https://ror.org/03wjf7p35 American Society of Colon and Rectal Surgeons');
INSERT INTO `rors` VALUES
(86796, 'https://ror.org/001a7je44', 'no_lang_code', 1, 'https://ror.org/001a7je44 Scienion (United States)'),
(86797, 'https://ror.org/04qp96f78', 'no_lang_code', 1, 'https://ror.org/04qp96f78 Polypico'),
(86798, 'https://ror.org/04fyf7n53', 'pt', 1, 'https://ror.org/04fyf7n53 Escola Superior Pedagógica do Bengo'),
(86799, 'https://ror.org/02dq2t044', 'en', 1, 'https://ror.org/02dq2t044 Target Ovarian Cancer'),
(86800, 'https://ror.org/01jet5b79', 'en', 1, 'https://ror.org/01jet5b79 Government of Newfoundland and Labrador'),
(86801, 'https://ror.org/041rme308', 'en', 0, 'https://ror.org/041rme308 Heart of England NHS Foundation Trust'),
(86802, 'https://ror.org/04gedeb17', 'en', 1, 'https://ror.org/04gedeb17 Solihull Hospital'),
(86803, 'https://ror.org/003hg6k65', 'no_lang_code', 1, 'https://ror.org/003hg6k65 China Railway Eryuan Engineering Group Co. äø­é“äŗŒé™¢å·„ēØ‹é›†å›¢ęœ‰é™č“£ä»»å…¬åø'),
(86804, 'https://ror.org/0256kw398', 'en', 1, 'https://ror.org/0256kw398 Birzeit University Ų¬Ų§Ł…Ų¹Ų© بيرزيت'),
(86805, 'https://ror.org/031621972', 'en', 1, 'https://ror.org/031621972 Hospital of the Brothers of St. John of God Krankenhaus der Barmherzigen Brüder Wien'),
(86806, 'https://ror.org/04ka8rx28', 'en', 1, 'https://ror.org/04ka8rx28 Bu-Ali Sina University دانؓگاه ŲØŁˆŲ¹Ł„ŪŒ Ų³ŪŒŁ†Ų§'),
(86807, 'https://ror.org/02y1rjh68', 'en', 1, 'https://ror.org/02y1rjh68 Virginia Innovation Partnership Corporation'),
(86808, 'https://ror.org/01fxzb657', 'en', 1, 'https://ror.org/01fxzb657 Convent Hospital of the Brothers of Saint John of God Konventhospital der Barmherzigen Brüder Linz'),
(86809, 'https://ror.org/02z9cxd24', 'en', 0, 'https://ror.org/02z9cxd24 Center for Social Inclusion'),
(86810, 'https://ror.org/0116z8r77', 'de', 1, 'https://ror.org/0116z8r77 Niedersächsisches Ministerium für Wissenschaft und Kultur'),
(86811, 'https://ror.org/050bww094', 'en', 1, 'https://ror.org/050bww094 Iran Nanotechnology Initiative Council'),
(86812, 'https://ror.org/05eq5hr59', 'en', 1, 'https://ror.org/05eq5hr59 Zhetysu University named after Ilyas Zhansugurov Š†Š»ŠøŃŃ Жансүгіров атынГағы Š–ŠµŃ‚Ń–ŃŃƒ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– Š–ŠµŃ‚Ń‹ŃŃƒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š˜Š»ŃŒŃŃŠ° Š–Š°Š½ŃŃƒŠ³ŃƒŃ€Š¾Š²Š°'),
(86813, 'https://ror.org/0527jb766', 'en', 1, 'https://ror.org/0527jb766 Swedish Cancer Society'),
(86814, 'https://ror.org/00ht10937', 'en', 1, 'https://ror.org/00ht10937 C17 Council'),
(86815, 'https://ror.org/03gd1bh37', 'en', 0, 'https://ror.org/03gd1bh37 Thailand Research Fund'),
(86816, 'https://ror.org/05n0dzw16', 'es', 1, 'https://ror.org/05n0dzw16 Instituto Nacional de Tecnología, Normalización y Metrología'),
(86817, 'https://ror.org/00tn5z179', 'no_lang_code', 1, 'https://ror.org/00tn5z179 Bolt Threads'),
(86818, 'https://ror.org/04ezbda36', 'no_lang_code', 1, 'https://ror.org/04ezbda36 leadXpro'),
(86819, 'https://ror.org/0500xzf72', 'en', 1, 'https://ror.org/0500xzf72 Sungshin Women''s University ģ„±ģ‹ ģ—¬ģžėŒ€ķ•™źµ'),
(86820, 'https://ror.org/03ep5me26', 'en', 0, 'https://ror.org/03ep5me26 Journal of Medical Insight'),
(86821, 'https://ror.org/016701m24', 'en', 1, 'https://ror.org/016701m24 Solamalai College of Engineering'),
(86822, 'https://ror.org/02f1kft51', 'en', 1, 'https://ror.org/02f1kft51 University of Juba'),
(86823, 'https://ror.org/01t8prc81', 'en', 1, 'https://ror.org/01t8prc81 Xi''an Technological University č„æå®‰å·„äøšå¤§å­¦'),
(86824, 'https://ror.org/02pxc9m61', 'no_lang_code', 1, 'https://ror.org/02pxc9m61 Artep'),
(86825, 'https://ror.org/01v8kbt09', 'en', 1, 'https://ror.org/01v8kbt09 Straub Medical Center'),
(86826, 'https://ror.org/01t8nk565', 'en', 1, 'https://ror.org/01t8nk565 Ontario Centre of Innovation'),
(86827, 'https://ror.org/02kpw7e71', 'fi', 1, 'https://ror.org/02kpw7e71 Puolustusvoimien tutkimuslaitos'),
(86828, 'https://ror.org/01wes1575', 'en', 1, 'https://ror.org/01wes1575 Myeloma UK'),
(86829, 'https://ror.org/057aq1y25', 'it', 1, 'https://ror.org/057aq1y25 Istituto Nazionale di Riposo e Cura per Anziani'),
(86830, 'https://ror.org/05sdhta47', 'en', 1, 'https://ror.org/05sdhta47 Australasian Lung Cancer Trials Group'),
(86831, 'https://ror.org/02c1can85', 'en', 1, 'https://ror.org/02c1can85 Bureau of Standards Jamaica'),
(86832, 'https://ror.org/05v40k847', 'es', 1, 'https://ror.org/05v40k847 Ministerio de Cultura y Deporte'),
(86833, 'https://ror.org/02s3xwp33', 'en', 1, 'https://ror.org/02s3xwp33 Central European University - Budapest Campus'),
(86834, 'https://ror.org/05b9py859', 'en', 1, 'https://ror.org/05b9py859 University of Makeni'),
(86835, 'https://ror.org/02e0vm063', 'en', 1, 'https://ror.org/02e0vm063 Public Authority for Industry Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة للصناعة'),
(86836, 'https://ror.org/007fpb915', 'es', 1, 'https://ror.org/007fpb915 Andrés Bello Catholic University Universidad Católica Andrés Bello'),
(86837, 'https://ror.org/0349vgr77', 'no_lang_code', 1, 'https://ror.org/0349vgr77 R.B. Toth Associates'),
(86838, 'https://ror.org/03ktafk98', 'en', 1, 'https://ror.org/03ktafk98 Qatar General Organization for Standards and Metrology Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ų§Ł„Ł‚Ų·Ų±ŁŠŲ© Ł„Ł„Ł…ŁˆŲ§ŲµŁŲ§ŲŖ و Ų§Ł„Ł…Ł‚Ų§ŁŠŁŠŲ³'),
(86839, 'https://ror.org/05jmp0y43', 'en', 1, 'https://ror.org/05jmp0y43 PSP Association'),
(86840, 'https://ror.org/05fd1hd85', 'en', 1, 'https://ror.org/05fd1hd85 Tbilisi Dƶvlət Universiteti Tbilisi State University Тбилисский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ō¹Õ¢Õ«Õ¬Õ«Õ½Õ«Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(86841, 'https://ror.org/04h03k610', 'no_lang_code', 1, 'https://ror.org/04h03k610 Scienion (Germany)'),
(86842, 'https://ror.org/05k17x772', 'de', 1, 'https://ror.org/05k17x772 Hochschule der Polizei des Landes Brandenburg'),
(86843, 'https://ror.org/042ywsw21', 'es', 1, 'https://ror.org/042ywsw21 Ministerio de Medio Ambiente y Recursos Naturales'),
(86844, 'https://ror.org/04q6sm464', 'en', 1, 'https://ror.org/04q6sm464 International Society of Bipolar Disorders'),
(86845, 'https://ror.org/01ayrdf49', 'en', 1, 'https://ror.org/01ayrdf49 Euroopan kemikaalivirasto European Chemicals Agency'),
(86846, 'https://ror.org/015hfw664', 'en', 1, 'https://ror.org/015hfw664 Good Hope Hospital'),
(86847, 'https://ror.org/046ggxs83', 'pt', 1, 'https://ror.org/046ggxs83 Instituto Dom Luiz'),
(86848, 'https://ror.org/05epdh915', 'en', 1, 'https://ror.org/05epdh915 United States Army Research Office'),
(86849, 'https://ror.org/0071qz696', 'en', 1, 'https://ror.org/0071qz696 Can Tho University TrĘ°į»ng ĐẔi hį»c Cįŗ§n ThĘ”'),
(86850, 'https://ror.org/02j1m6098', 'en', 1, 'https://ror.org/02j1m6098 Duke-NUS Medical School'),
(86851, 'https://ror.org/04tw1mp85', 'en', 1, 'https://ror.org/04tw1mp85 A-T Society'),
(86852, 'https://ror.org/04b8eax48', 'no_lang_code', 1, 'https://ror.org/04b8eax48 Accelero Biostructures'),
(86853, 'https://ror.org/05629dh87', 'en', 1, 'https://ror.org/05629dh87 Iran''s National Elites Foundation ŲØŁ†ŁŠŲ§ŲÆ Ł…Ł„ŁŠ Ł†Ų®ŲØŚÆŲ§Ł†ā€Ž'),
(86854, 'https://ror.org/02p852y24', 'en', 1, 'https://ror.org/02p852y24 Gulf of Sidra University Ų¬Ų§Ł…Ų¹Ų© Ų®Ł„ŁŠŲ¬ السدرة'),
(86855, 'https://ror.org/03za3eq42', 'no_lang_code', 1, 'https://ror.org/03za3eq42 China Railway Group (China) äø­åœ‹äø­éµč‚”ä»½ęœ‰é™å…¬åø'),
(86856, 'https://ror.org/026xbkx09', 'en', 0, 'https://ror.org/026xbkx09 Stenden Hogeschool Stenden University of Applied Sciences'),
(86857, 'https://ror.org/007ysvs16', 'en', 1, 'https://ror.org/007ysvs16 Institute for Citizens & Scholars'),
(86858, 'https://ror.org/04rsexw75', 'en', 1, 'https://ror.org/04rsexw75 Madan Bhandari Academy of Health Sciences'),
(86859, 'https://ror.org/00c25dn03', 'en', 1, 'https://ror.org/00c25dn03 Korea Institute of Planning and Evaluation for Technology in Food, Agriculture, Forestry and Fisheries'),
(86860, 'https://ror.org/04vmyq826', 'en', 1, 'https://ror.org/04vmyq826 Hospitaller Order of St. John of God, Austrian Province Ɩsterreichische Ordensprovinz des Hospitalordens des heiligen Johannes von Gott "Barmherzige Brüder"'),
(86861, 'https://ror.org/002rr8291', 'en', 1, 'https://ror.org/002rr8291 O''zbekiston Milliy Metrologiya Instituti Uzbek National Institute of Metrology Узбекский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(86862, 'https://ror.org/00r8r0m30', 'en', 1, 'https://ror.org/00r8r0m30 Državni arhiv u Pazinu State Archives in Pazin'),
(86863, 'https://ror.org/024mh1n48', 'es', 1, 'https://ror.org/024mh1n48 Universidad de Ciencias MƩdicas de Pinar del Rƭo'),
(86864, 'https://ror.org/01cx46d94', 'en', 1, 'https://ror.org/01cx46d94 Državni zavod za mjeriteljstvo State Office for Metrology'),
(86865, 'https://ror.org/02cyskn39', 'en', 1, 'https://ror.org/02cyskn39 ILS – Research Institute for Regional and Urban Development Institut für Landes- und Stadtentwicklungsforschung'),
(86866, 'https://ror.org/026b7jq90', 'no_lang_code', 1, 'https://ror.org/026b7jq90 b.geos'),
(86867, 'https://ror.org/05tkycb73', 'fi', 1, 'https://ror.org/05tkycb73 Maanmittauslaitos'),
(86868, 'https://ror.org/03893we55', 'en', 1, 'https://ror.org/03893we55 Zhejiang Sci-Tech University ęµ™ę±Ÿē†å·„å¤§å­¦'),
(86869, 'https://ror.org/03tsmnr35', 'en', 1, 'https://ror.org/03tsmnr35 Seoul Graduate School of Counseling Psychology ģ„œģšøģƒė‹“ģ‹¬ė¦¬ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(86870, 'https://ror.org/03k6sff92', 'is', 1, 'https://ror.org/03k6sff92 Landsbókasavnið National Library of the Faroe Islands'),
(86871, 'https://ror.org/031zps173', 'en', 1, 'https://ror.org/031zps173 Jiangsu Ocean University ę±Ÿč‹ęµ·ę“‹å¤§å­¦'),
(86872, 'https://ror.org/002kn6n54', 'en', 1, 'https://ror.org/002kn6n54 Brussels School of International Studies'),
(86873, 'https://ror.org/00j1vsg87', 'en', 1, 'https://ror.org/00j1vsg87 Breast Cancer Trials'),
(86874, 'https://ror.org/0218fnh04', 'en', 1, 'https://ror.org/0218fnh04 Pediatric Epilepsy Surgery Alliance'),
(86875, 'https://ror.org/02y6cph55', 'en', 1, 'https://ror.org/02y6cph55 Rhode Island Foundation'),
(86876, 'https://ror.org/05f5b3h44', 'en', 1, 'https://ror.org/05f5b3h44 Hawaii Pacific Health'),
(86877, 'https://ror.org/02dwymq68', 'no_lang_code', 1, 'https://ror.org/02dwymq68 Rivian'),
(86878, 'https://ror.org/01cjzj124', 'no_lang_code', 1, 'https://ror.org/01cjzj124 Anatrace'),
(86879, 'https://ror.org/00e87hq62', 'en', 1, 'https://ror.org/00e87hq62 Taichung Veterans General Hospital 臺中榮民總醫院'),
(86880, 'https://ror.org/056pp6k18', 'en', 1, 'https://ror.org/056pp6k18 EIFL'),
(86881, 'https://ror.org/02bkz8z02', 'no_lang_code', 1, 'https://ror.org/02bkz8z02 Jj X-Ray'),
(86882, 'https://ror.org/05fexf102', 'no_lang_code', 0, 'https://ror.org/05fexf102 Canadian Journal of Communication (Canada)'),
(86883, 'https://ror.org/02zcamj98', 'en', 1, 'https://ror.org/02zcamj98 Muscular Dystrophy UK'),
(86884, 'https://ror.org/01vk3ab38', 'hu', 1, 'https://ror.org/01vk3ab38 Mathias Corvinus Collegium'),
(86885, 'https://ror.org/02mj54r38', 'pt', 1, 'https://ror.org/02mj54r38 Observatório Oceânico da Madeira'),
(86886, 'https://ror.org/011ewyt41', 'pt', 1, 'https://ror.org/011ewyt41 Instituto de Tecnologias Interativas Interactive Technologies Institute'),
(86887, 'https://ror.org/05m4jv490', 'en', 0, 'https://ror.org/05m4jv490 NHL Hogeschool NHL University of Applied Sciences'),
(86888, 'https://ror.org/008ptfs71', 'no_lang_code', 1, 'https://ror.org/008ptfs71 Cocrystal Pharma'),
(86889, 'https://ror.org/03srneg48', 'en', 1, 'https://ror.org/03srneg48 Rannsóknamiưstƶư ƍslands The Icelandic Centre for Research'),
(86890, 'https://ror.org/05x31w119', 'en', 1, 'https://ror.org/05x31w119 Georgian National Agency for Standards and Metrology įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ¢įƒįƒœįƒ“įƒįƒ įƒ¢įƒ”įƒ‘įƒ˜ įƒ“įƒ įƒ›įƒ”įƒ¢įƒ įƒįƒšįƒįƒ’įƒ˜įƒ'),
(86891, 'https://ror.org/05tg3y165', 'en', 1, 'https://ror.org/05tg3y165 Eastern Shore Community College'),
(86892, 'https://ror.org/00kwnh405', 'en', 1, 'https://ror.org/00kwnh405 Guizhou Provincial Science and Technology Department'),
(86893, 'https://ror.org/04n4phh48', 'no_lang_code', 1, 'https://ror.org/04n4phh48 Process NMR Associates'),
(86894, 'https://ror.org/03m5qkb69', 'en', 1, 'https://ror.org/03m5qkb69 Cancer Council Australia'),
(86895, 'https://ror.org/04avm2781', 'en', 1, 'https://ror.org/04avm2781 Finnish Defence Forces'),
(86896, 'https://ror.org/040jyv820', 'en', 1, 'https://ror.org/040jyv820 Al-Ahgaff University Ų¬Ų§Ł…Ų¹Ų© الأحقاف'),
(86897, 'https://ror.org/0109m8c38', 'en', 1, 'https://ror.org/0109m8c38 Wessex Medical Research'),
(86898, 'https://ror.org/03nc27g21', 'es', 0, 'https://ror.org/03nc27g21 Ministerio de Educación Cultura y Deporte Ministry of Education, Culture and Sport'),
(86899, 'https://ror.org/04evj0n95', 'en', 1, 'https://ror.org/04evj0n95 Slovenian Academy of Sciences and Arts Slovenska Akademija Znanosti in Umetnosti'),
(86900, 'https://ror.org/002njmw59', 'en', 1, 'https://ror.org/002njmw59 Department of Tourism, Culture, Arts and Recreation'),
(86901, 'https://ror.org/00x7aga66', 'en', 0, 'https://ror.org/00x7aga66 Canadian Journal of Community Mental Health'),
(86902, 'https://ror.org/03xzxnc47', 'es', 1, 'https://ror.org/03xzxnc47 Ministerio de Educación y Formación Profesional'),
(86903, 'https://ror.org/01s5gyw91', 'en', 1, 'https://ror.org/01s5gyw91 Department of Education of Guangdong Province'),
(86904, 'https://ror.org/0578qbf69', 'en', 1, 'https://ror.org/0578qbf69 Pancreatic Cancer Action'),
(86905, 'https://ror.org/027vj4x92', 'no_lang_code', 1, 'https://ror.org/027vj4x92 Sanofi (United States)'),
(86906, 'https://ror.org/04vhk9f59', 'en', 1, 'https://ror.org/04vhk9f59 Armagh Observatory & Planetarium'),
(86907, 'https://ror.org/03gaka986', 'en', 0, 'https://ror.org/03gaka986 Stenden University Qatar'),
(86908, 'https://ror.org/03j8zte36', 'en', 0, 'https://ror.org/03j8zte36 Journal of Bone & Joint Surgery'),
(86909, 'https://ror.org/05hepy730', 'en', 1, 'https://ror.org/05hepy730 Natural Resources Canada'),
(86910, 'https://ror.org/04ef2za66', 'en', 1, 'https://ror.org/04ef2za66 Pancreatic Cancer Research Fund'),
(86911, 'https://ror.org/0143pk141', 'en', 1, 'https://ror.org/0143pk141 Foundation for Liver Research'),
(86912, 'https://ror.org/019vfke14', 'en', 1, 'https://ror.org/019vfke14 Abubakar Tafawa Balewa University'),
(86913, 'https://ror.org/05x1fgy66', 'en', 1, 'https://ror.org/05x1fgy66 Hope Africa University UniversitƩ Espoir d''Afrique'),
(86914, 'https://ror.org/00z2m5n36', 'en', 1, 'https://ror.org/00z2m5n36 Thoracic Oncology Group of Australasia'),
(86915, 'https://ror.org/045c11422', 'en', 0, 'https://ror.org/045c11422 Advanced Electromagnetics Journal'),
(86916, 'https://ror.org/000t8h611', 'en', 1, 'https://ror.org/000t8h611 Al Rayyan International University College'),
(86917, 'https://ror.org/05fazth07', 'en', 1, 'https://ror.org/05fazth07 Beckman Research Institute'),
(86918, 'https://ror.org/00h2zy437', 'en', 1, 'https://ror.org/00h2zy437 British Occupational Hygiene Society'),
(86919, 'https://ror.org/00bc6bw85', 'en', 1, 'https://ror.org/00bc6bw85 Ministerie van Economische Zaken en Klimaat Ministry of Economic Affairs and Climate Policy'),
(86920, 'https://ror.org/05phwew21', 'en', 1, 'https://ror.org/05phwew21 Scott Christian University'),
(86921, 'https://ror.org/04bz60n78', 'en', 1, 'https://ror.org/04bz60n78 Institutul Național de Metrologie National Metrology Institute of the Republic of Moldova'),
(86922, 'https://ror.org/05kx3hd68', 'en', 1, 'https://ror.org/05kx3hd68 Group Health Cooperative'),
(86923, 'https://ror.org/00v408z34', 'en', 1, 'https://ror.org/00v408z34 China Medical University äø­åœ‹é†«č—„å¤§å­ø'),
(86924, 'https://ror.org/00376bg92', 'en', 1, 'https://ror.org/00376bg92 University of Guam'),
(86925, 'https://ror.org/01j84fh13', 'no_lang_code', 1, 'https://ror.org/01j84fh13 Synthekine'),
(86926, 'https://ror.org/04d0ybj29', 'es', 1, 'https://ror.org/04d0ybj29 Hospital ClĆ­nico San Carlos'),
(86927, 'https://ror.org/015xfeg86', 'en', 1, 'https://ror.org/015xfeg86 Action for AT'),
(86928, 'https://ror.org/01pbdzh19', 'en', 1, 'https://ror.org/01pbdzh19 University of Toledo UniversitƩ de toledo'),
(86929, 'https://ror.org/01z7y3r39', 'en', 1, 'https://ror.org/01z7y3r39 Tianjin Municipal Education Commission'),
(86930, 'https://ror.org/02x0y0j09', 'fr', 1, 'https://ror.org/02x0y0j09 Ɖcole Nationale d''Administration'),
(86931, 'https://ror.org/028qka468', 'no_lang_code', 1, 'https://ror.org/028qka468 UCB Pharma (United States)'),
(86932, 'https://ror.org/03bjsge15', 'en', 1, 'https://ror.org/03bjsge15 National Institute of Technology, Kochi College é«˜ēŸ„å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(86933, 'https://ror.org/043zam433', 'en', 1, 'https://ror.org/043zam433 Wings for Life'),
(86934, 'https://ror.org/01dxxkx65', 'no_lang_code', 1, 'https://ror.org/01dxxkx65 Confluent Medical Technologies'),
(86935, 'https://ror.org/04xrb7c55', 'en', 1, 'https://ror.org/04xrb7c55 Swiss Light Source'),
(86936, 'https://ror.org/00c5kmy11', 'es', 1, 'https://ror.org/00c5kmy11 Fundación IE IE Foundation'),
(86937, 'https://ror.org/04mwxpa60', 'en', 0, 'https://ror.org/04mwxpa60 Canadian Journal of Administrative Sciences Revue Canadienne des Sciences de l''Administration'),
(86938, 'https://ror.org/03crd9v85', 'en', 1, 'https://ror.org/03crd9v85 Palm Beach Museum of Natural History'),
(86939, 'https://ror.org/048mcz794', 'en', 1, 'https://ror.org/048mcz794 Chernihiv Polytechnic National University ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š§ŠµŃ€Š½Ń–Š³Ń–Š²ŃŃŒŠŗŠ° політехніка»'),
(86940, 'https://ror.org/01ag9w134', 'en', 1, 'https://ror.org/01ag9w134 Malta Competition and Consumer Affairs Authority'),
(86941, 'https://ror.org/04mgfev69', 'it', 1, 'https://ror.org/04mgfev69 Instituto Nazionale Tumori Regina Elena'),
(86942, 'https://ror.org/00kt3gv27', 'en', 1, 'https://ror.org/00kt3gv27 NourDanesh Institute of Higher Education Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ł†ŁˆŲ±ŲÆŲ§Ł†Ų“'),
(86943, 'https://ror.org/03az8b907', 'da', 1, 'https://ror.org/03az8b907 MedicinrƄdet'),
(86944, 'https://ror.org/03cx3d993', 'en', 1, 'https://ror.org/03cx3d993 Ministry of Forests'),
(86945, 'https://ror.org/02j2fth58', 'en', 1, 'https://ror.org/02j2fth58 Victorian Health Promotion Foundation'),
(86946, 'https://ror.org/051nxew65', 'en', 1, 'https://ror.org/051nxew65 Virginia Museum of History & Culture'),
(86947, 'https://ror.org/0331mqm40', 'en', 1, 'https://ror.org/0331mqm40 Jilin Province Development and Reform Commission'),
(86948, 'https://ror.org/054wg2r70', 'no_lang_code', 1, 'https://ror.org/054wg2r70 Quantumscape'),
(86949, 'https://ror.org/049rn4865', 'en', 0, 'https://ror.org/049rn4865 Chinese Journal of Integrated Traditional and Western Medicine'),
(86950, 'https://ror.org/00v349e63', 'en', 0, 'https://ror.org/00v349e63 Hungarian Scientific Research Fund'),
(86951, 'https://ror.org/021atz428', 'en', 1, 'https://ror.org/021atz428 National Institute of Clean and Low-Carbon Energy åŒ—äŗ¬ä½Žē¢³ęø…ę“čƒ½ęŗē ”ē©¶ę‰€'),
(86952, 'https://ror.org/059m0aj32', 'en', 1, 'https://ror.org/059m0aj32 Lady Tata Memorial Trust'),
(86953, 'https://ror.org/047hgjz90', 'no_lang_code', 1, 'https://ror.org/047hgjz90 Lumenari'),
(86954, 'https://ror.org/036gts662', 'en', 1, 'https://ror.org/036gts662 Autistica'),
(86955, 'https://ror.org/05rjdm522', 'en', 0, 'https://ror.org/05rjdm522 Research & Development Corporation'),
(86956, 'https://ror.org/04664mr26', 'en', 1, 'https://ror.org/04664mr26 Institute for Materials Research, Tohoku University ę±åŒ—å¤§å­¦é‡‘å±žęę–™ē ”ē©¶ę‰€'),
(86957, 'https://ror.org/027nqv620', 'no_lang_code', 1, 'https://ror.org/027nqv620 Advanced hCMOS Systems'),
(86958, 'https://ror.org/0112b4s87', 'en', 1, 'https://ror.org/0112b4s87 Canadian Literacy and Learning Network'),
(86959, 'https://ror.org/02n43xw86', 'en', 1, 'https://ror.org/02n43xw86 University of Sistan and Baluchestan دانؓگاه Ų³ŪŒŲ³ŲŖŲ§Ł† و ŲØŁ„ŁˆŚ†Ų³ŲŖŲ§Ł†'),
(86960, 'https://ror.org/032p1n739', 'en', 1, 'https://ror.org/032p1n739 Autonomous University of YucatÔn Universidad Autónoma de YucatÔn'),
(86961, 'https://ror.org/00nv2s006', 'no_lang_code', 1, 'https://ror.org/00nv2s006 NICE America Research'),
(86962, 'https://ror.org/01hh21296', 'en', 1, 'https://ror.org/01hh21296 ILS Research'),
(86963, 'https://ror.org/00xcwps97', 'en', 1, 'https://ror.org/00xcwps97 SingHealth Duke-NUS Academic Medical Centre'),
(86964, 'https://ror.org/04g6r1b21', 'en', 1, 'https://ror.org/04g6r1b21 MQ: Transforming Mental Health'),
(86965, 'https://ror.org/008ec8r60', 'en', 1, 'https://ror.org/008ec8r60 Canmet Mining'),
(86966, 'https://ror.org/000w32s81', 'en', 1, 'https://ror.org/000w32s81 Australian Disorders of the Corpus Callosum'),
(86967, 'https://ror.org/01f61vq51', 'en', 0, 'https://ror.org/01f61vq51 Foundation For Fundamental Research On Matter'),
(86968, 'https://ror.org/00cwc2519', 'no_lang_code', 1, 'https://ror.org/00cwc2519 Interx'),
(86969, 'https://ror.org/020hx9j68', 'en', 1, 'https://ror.org/020hx9j68 Bibliosan'),
(86970, 'https://ror.org/032rffb92', 'en', 1, 'https://ror.org/032rffb92 Niemann Pick Research Foundation'),
(86971, 'https://ror.org/006x48140', 'it', 1, 'https://ror.org/006x48140 Istituto di Ricovero e Cura a Carattere Scientifico San Raffaele'),
(86972, 'https://ror.org/057hdmq26', 'en', 1, 'https://ror.org/057hdmq26 Tianjin Foreign Studies University 天擄外国语大学'),
(86973, 'https://ror.org/02atd1296', 'es', 1, 'https://ror.org/02atd1296 Fundación Salud, Ciencia y Tecnologia'),
(86974, 'https://ror.org/00zvn8514', 'en', 1, 'https://ror.org/00zvn8514 Dambi Dollo University Yuunivasitii Dambii Dolloo į‹°įˆį‰¢ į‹¶įˆŽ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(86975, 'https://ror.org/058karh42', 'no_lang_code', 1, 'https://ror.org/058karh42 Molecular Dimensions'),
(86976, 'https://ror.org/05q2pmx71', 'no_lang_code', 1, 'https://ror.org/05q2pmx71 Bioron'),
(86977, 'https://ror.org/05aqazf41', 'en', 1, 'https://ror.org/05aqazf41 Child Neurology Society'),
(86978, 'https://ror.org/02w86e729', 'en', 1, 'https://ror.org/02w86e729 American Studies Association'),
(86979, 'https://ror.org/03z1jqd75', 'no_lang_code', 1, 'https://ror.org/03z1jqd75 Quantum Detectors'),
(86980, 'https://ror.org/00qyh5r35', 'es', 1, 'https://ror.org/00qyh5r35 Hospital Universitario 12 De Octubre'),
(86981, 'https://ror.org/057gp6121', 'no_lang_code', 1, 'https://ror.org/057gp6121 Scientific Analysis Of Fine Art'),
(86982, 'https://ror.org/02kfc0089', 'en', 1, 'https://ror.org/02kfc0089 Institut za KriminoloŔka i SocioloŔka Istraživanja Institute of Criminological & Sociological Research'),
(86983, 'https://ror.org/05rth8x13', 'fr', 1, 'https://ror.org/05rth8x13 Agence de la transition Ʃcologique French Agency for Ecological Transition'),
(86984, 'https://ror.org/03y3y9v44', 'es', 1, 'https://ror.org/03y3y9v44 Universidad EAFIT'),
(86985, 'https://ror.org/02gntzb40', 'en', 1, 'https://ror.org/02gntzb40 Pohang Accelerator Laboratory ķ¬ķ•­ź°€ģ†źø°ģ—°źµ¬ģ†Œė”œź³ '),
(86986, 'https://ror.org/01bd5gh54', 'en', 1, 'https://ror.org/01bd5gh54 Heartlands Hospital'),
(86987, 'https://ror.org/031q21x57', 'en', 1, 'https://ror.org/031q21x57 Universidad de Wisconsin–Milwaukee University of Wisconsin–Milwaukee UniversitĆ© du Wisconsin–Milwaukee'),
(86988, 'https://ror.org/020dw9k11', 'it', 1, 'https://ror.org/020dw9k11 Regione Lombardia'),
(86989, 'https://ror.org/008r9vm50', 'no_lang_code', 1, 'https://ror.org/008r9vm50 Sinnar University Ų¬Ų§Ł…Ų¹Ų© سنار'),
(86990, 'https://ror.org/05y8hw592', 'en', 1, 'https://ror.org/05y8hw592 Ansgar University College Ansgar hĆøyskole'),
(86991, 'https://ror.org/03rhhdt14', 'en', 1, 'https://ror.org/03rhhdt14 Flanders Hydraulics Waterbouwkundig Laboratorium'),
(86992, 'https://ror.org/00epbns71', 'es', 1, 'https://ror.org/00epbns71 Universidad Internacional Iberoamericana'),
(86993, 'https://ror.org/04n1n3n22', 'no_lang_code', 1, 'https://ror.org/04n1n3n22 QB3'),
(86994, 'https://ror.org/04xvp2z22', 'en', 1, 'https://ror.org/04xvp2z22 Lord Buddha Education Foundation'),
(86995, 'https://ror.org/03rx10x31', 'en', 1, 'https://ror.org/03rx10x31 American Lebanese Syrian Associated Charities'),
(86996, 'https://ror.org/01vvb2v88', 'no_lang_code', 1, 'https://ror.org/01vvb2v88 Ningxia Road and Bridge Construction Company å®å¤č·Æę”„å»ŗč®¾ęœ‰é™å…¬åø'),
(86997, 'https://ror.org/00qedmt22', 'en', 1, 'https://ror.org/00qedmt22 Al-Balqa Applied University Ų¬Ų§Ł…Ų¹Ų© البلقاؔ Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(86998, 'https://ror.org/03g03ge92', 'no_lang_code', 1, 'https://ror.org/03g03ge92 Amgen (United States)'),
(86999, 'https://ror.org/027hbqy23', 'es', 1, 'https://ror.org/027hbqy23 Fundación Universitaria Internacional de Colombia'),
(87000, 'https://ror.org/00vp82b55', 'da', 1, 'https://ror.org/00vp82b55 15. Juni Fonden'),
(87001, 'https://ror.org/00aamts79', 'en', 1, 'https://ror.org/00aamts79 A Breath of Hope Lung Foundation'),
(87002, 'https://ror.org/020wg5393', 'no_lang_code', 1, 'https://ror.org/020wg5393 Eesti metroloogia keskasutus Metrosert'),
(87003, 'https://ror.org/04yx6dh41', 'en', 1, 'https://ror.org/04yx6dh41 National Computational Infrastructure'),
(87004, 'https://ror.org/02wqsss46', 'en', 1, 'https://ror.org/02wqsss46 National Sugar Institute'),
(87005, 'https://ror.org/033ntwq47', 'en', 1, 'https://ror.org/033ntwq47 Khmelnytskyi Humanitarian-Pedagogical Academy Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ° Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½Š¾-пеГагогічна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(87006, 'https://ror.org/02w23ky30', 'en', 1, 'https://ror.org/02w23ky30 Beijing Municipal Ecology and Environment Bureau åŒ—äŗ¬åø‚ē”Ÿę€ēŽÆå¢ƒå±€'),
(87007, 'https://ror.org/02jf81j23', 'pl', 1, 'https://ror.org/02jf81j23 Narodowa Agencja Wymiany Akademickiej'),
(87008, 'https://ror.org/042n9zn21', 'en', 1, 'https://ror.org/042n9zn21 International Commission on Missing Persons'),
(87009, 'https://ror.org/013gkdy87', 'es', 1, 'https://ror.org/013gkdy87 Instituto de Investigaciones Psicológicas'),
(87010, 'https://ror.org/02apzkd53', 'es', 1, 'https://ror.org/02apzkd53 Instituto Ecuatoriano de Normalización'),
(87011, 'https://ror.org/008kev776', 'en', 1, 'https://ror.org/008kev776 Organisation Panaméricaine de la Santé Organización Panamericana de la Salud World Health Organization Regional Office for the Americas'),
(87012, 'https://ror.org/04kt19158', 'en', 1, 'https://ror.org/04kt19158 Justice for Magdalenes Research'),
(87013, 'https://ror.org/03n6tmk81', 'en', 1, 'https://ror.org/03n6tmk81 Ministry of Education'),
(87014, 'https://ror.org/02r3e0967', 'en', 1, 'https://ror.org/02r3e0967 St. Jude Children''s Research Hospital'),
(87015, 'https://ror.org/04587ry40', 'es', 1, 'https://ror.org/04587ry40 Universidad Internacional Iberoamericana'),
(87016, 'https://ror.org/053fyjq47', 'es', 1, 'https://ror.org/053fyjq47 Consejo Nacional de Innovación, Ciencia y Tecnología'),
(87017, 'https://ror.org/02p3esj04', 'en', 1, 'https://ror.org/02p3esj04 Pittsburgh Foundation'),
(87018, 'https://ror.org/02p0d0j76', 'en', 1, 'https://ror.org/02p0d0j76 Tyndale House'),
(87019, 'https://ror.org/01s344n79', 'no_lang_code', 1, 'https://ror.org/01s344n79 Poltava State Agrarian University ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Гержавний аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(87020, 'https://ror.org/01p1fe256', 'en', 1, 'https://ror.org/01p1fe256 Organización Panamericana de la Salud (Cuba) Pan American Health Organization (Cuba)'),
(87021, 'https://ror.org/02gj7dq89', 'fr', 1, 'https://ror.org/02gj7dq89 Centre de droit international de Nanterre'),
(87022, 'https://ror.org/05ymr3m21', 'de', 1, 'https://ror.org/05ymr3m21 Vector Stiftung'),
(87023, 'https://ror.org/03qzyer47', 'pt', 1, 'https://ror.org/03qzyer47 Fatec Jahu'),
(87024, 'https://ror.org/031xcxv56', 'no_lang_code', 1, 'https://ror.org/031xcxv56 Protagonist Therapeutics (Australia)'),
(87025, 'https://ror.org/01v2m4n16', 'en', 1, 'https://ror.org/01v2m4n16 Erasmus+'),
(87026, 'https://ror.org/05v75r592', 'en', 1, 'https://ror.org/05v75r592 Hellenic Foundation for Research and Innovation Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪˆĻĪµĻ…Ī½Ī±Ļ‚ & ĪšĪ±Ī¹Ī½ĪæĻ„ĪæĪ¼ĪÆĪ±Ļ‚'),
(87027, 'https://ror.org/032exky44', 'es', 1, 'https://ror.org/032exky44 MAR Health Park Parc de Salut'),
(87028, 'https://ror.org/019dmpq73', 'es', 1, 'https://ror.org/019dmpq73 Fundación Cellex'),
(87029, 'https://ror.org/04cqyfy93', 'en', 1, 'https://ror.org/04cqyfy93 Korea Institute of Marine Science and Technology Promotion ķ•“ģ–‘ģˆ˜ģ‚°ź³¼ķ•™źø°ģˆ ģ§„ķ„ģ›'),
(87030, 'https://ror.org/044dq8y48', 'fr', 1, 'https://ror.org/044dq8y48 Centre de recherches Ʃducation et formation'),
(87031, 'https://ror.org/01xpa3123', 'en', 1, 'https://ror.org/01xpa3123 National Research Foundation Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(87032, 'https://ror.org/03ha6v181', 'en', 1, 'https://ror.org/03ha6v181 National Chi Nan University åœ‹ē«‹ęšØå—åœ‹éš›å¤§å­ø'),
(87033, 'https://ror.org/01s2mxg92', 'en', 1, 'https://ror.org/01s2mxg92 European Association for the Study of the Liver'),
(87034, 'https://ror.org/00pqdc111', 'en', 1, 'https://ror.org/00pqdc111 Wyoming Department of Transportation'),
(87035, 'https://ror.org/00y30p033', 'en', 1, 'https://ror.org/00y30p033 Zambia Metrology Agency'),
(87036, 'https://ror.org/02c2ytc79', 'fr', 1, 'https://ror.org/02c2ytc79 Centre de Recherches Pluridisciplinaires Multilingues'),
(87037, 'https://ror.org/018fvk877', 'sv', 1, 'https://ror.org/018fvk877 Stiftelsen fƶr ƅbo Akademi'),
(87038, 'https://ror.org/041ttmq60', 'es', 1, 'https://ror.org/041ttmq60 Instituto de MatemƔtica de Bahƭa Blanca'),
(87039, 'https://ror.org/002ttqg42', 'en', 1, 'https://ror.org/002ttqg42 Australian Institute of Music'),
(87040, 'https://ror.org/02kv0wv09', 'en', 1, 'https://ror.org/02kv0wv09 Department of Human Resources and Social Security of Jiangsu Province ę±Ÿč‹ēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(87041, 'https://ror.org/04yyths36', 'en', 1, 'https://ror.org/04yyths36 Allen Whitehill Clowes Charitable Foundation'),
(87042, 'https://ror.org/01rrczv41', 'en', 1, 'https://ror.org/01rrczv41 University of the Philippines Manila'),
(87043, 'https://ror.org/055y2t972', 'en', 1, 'https://ror.org/055y2t972 Amran University Ų¬Ų§Ł…Ų¹Ų© عمران'),
(87044, 'https://ror.org/03dye1h57', 'en', 1, 'https://ror.org/03dye1h57 Science Hub ą¤øą¤¾ą¤‡ą¤Øą„ą¤ø हव'),
(87045, 'https://ror.org/03y4t9m88', 'da', 1, 'https://ror.org/03y4t9m88 Beckett-Fonden'),
(87046, 'https://ror.org/05cpg3d24', 'no_lang_code', 1, 'https://ror.org/05cpg3d24 Nur-Mubarak University ŠŅ±Ń€-ŠœŅÆŠ±Š°Ń€Š°Šŗ Египет ислам мәГениеті ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(87047, 'https://ror.org/03ehxnz86', 'en', 1, 'https://ror.org/03ehxnz86 Community Welfare Society Hospital'),
(87048, 'https://ror.org/029gp4d26', 'en', 1, 'https://ror.org/029gp4d26 Ankara 29 Mayis State Hospital Ankara 29 Mayıs Devlet Hastanesi'),
(87049, 'https://ror.org/05wvz0b04', 'no_lang_code', 1, 'https://ror.org/05wvz0b04 Amgen (China)'),
(87050, 'https://ror.org/04cdn6p56', 'en', 1, 'https://ror.org/04cdn6p56 ICT University'),
(87051, 'https://ror.org/05ngpb650', 'en', 1, 'https://ror.org/05ngpb650 Aljanad University for Science and Technology Ų¬Ų§Ł…Ų¹Ų© الجند Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(87052, 'https://ror.org/02r6c6d62', 'it', 1, 'https://ror.org/02r6c6d62 Regione Toscana'),
(87053, 'https://ror.org/02gm5zw39', 'de', 1, 'https://ror.org/02gm5zw39 University Hospital Aachen UniversitƤtsklinikum Aachen'),
(87054, 'https://ror.org/00qr1pe22', 'fr', 1, 'https://ror.org/00qr1pe22 Centre de Recherches Anglophones'),
(87055, 'https://ror.org/00zp1hf53', 'en', 1, 'https://ror.org/00zp1hf53 Hellenic Complex Systems Laboratory Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Ī•ĻĪ³Ī±ĻƒĻ„Ī®ĻĪ¹Īæ Ī£ĻĪ¼Ļ€Ī»ĪæĪŗĻ‰Ī½ Ī£Ļ…ĻƒĻ„Ī·Ī¼Ī¬Ļ„Ļ‰Ī½'),
(87056, 'https://ror.org/00p2fsr49', 'en', 1, 'https://ror.org/00p2fsr49 Charles E. Kaufman Foundation'),
(87057, 'https://ror.org/04g1zbq46', 'en', 1, 'https://ror.org/04g1zbq46 Department of Chemistry Malaysia Jabatan Kimia Malaysia'),
(87058, 'https://ror.org/05r3yzw86', 'es', 1, 'https://ror.org/05r3yzw86 Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona'),
(87059, 'https://ror.org/0439fte48', 'en', 1, 'https://ror.org/0439fte48 Federal Authority for Nuclear Regulation Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų§ŲŖŲ­Ų§ŲÆŁŠŲ© للرقابة Ų§Ł„Ł†ŁˆŁˆŁŠŲ©'),
(87060, 'https://ror.org/02z8wa502', 'en', 1, 'https://ror.org/02z8wa502 Judith Jane Mason and Harold Stannett Williams Memorial Foundation'),
(87061, 'https://ror.org/00ejtw805', 'en', 1, 'https://ror.org/00ejtw805 International Mammalian Genome Society'),
(87062, 'https://ror.org/0352wb750', 'en', 1, 'https://ror.org/0352wb750 Manash Kozybayev North Kazakhstan University М.ŅšŠ¾Š·Ń‹Š±Š°ŠµŠ² атынГағы Долтүстік ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– Деверо-ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М.ŠšŠ¾Š·Ń‹Š±Š°ŠµŠ²Š°'),
(87063, 'https://ror.org/041w2m342', 'fr', 1, 'https://ror.org/041w2m342 Clinique, psychanalyse, dƩveloppement'),
(87064, 'https://ror.org/059hta174', 'en', 1, 'https://ror.org/059hta174 Robert E. Webber Institute for Worship Studies'),
(87065, 'https://ror.org/01awebs74', 'no_lang_code', 1, 'https://ror.org/01awebs74 Fiat Lux'),
(87066, 'https://ror.org/03c52a632', 'en', 1, 'https://ror.org/03c52a632 Asia Pacific University of Technology & Innovation Universiti Teknologi dan Inovasi Asia Pasifik'),
(87067, 'https://ror.org/00bp7kt89', 'no_lang_code', 1, 'https://ror.org/00bp7kt89 Protagonist Therapeutics (United States)'),
(87068, 'https://ror.org/04t45q150', 'pt', 1, 'https://ror.org/04t45q150 Universidade Internacional do Cuanza'),
(87069, 'https://ror.org/02jkz3g13', 'en', 1, 'https://ror.org/02jkz3g13 Organização Pan-Americana da Saúde (Brazil) Pan American Health Organization (Brasil)'),
(87070, 'https://ror.org/00kab6t91', 'en', 1, 'https://ror.org/00kab6t91 Ministry of Higher Education and Scientific Research وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(87071, 'https://ror.org/03gkj8x90', 'tr', 1, 'https://ror.org/03gkj8x90 T.C. Cumhurbaşkanlığı Külliyesi'),
(87072, 'https://ror.org/012mzc697', 'en', 1, 'https://ror.org/012mzc697 Institute for Safety Problems of Nuclear Power Plants Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ проблем безпеки атомних електростанцій'),
(87073, 'https://ror.org/04jv0aa72', 'no_lang_code', 0, 'https://ror.org/04jv0aa72 Kvaerner (Finland)'),
(87074, 'https://ror.org/008b3ap06', 'en', 1, 'https://ror.org/008b3ap06 Atal Bihari Vajpayee Indian Institute of Information Technology and Management Indian Institute of Information Technology and Management, Gwalior ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤—ą„ą¤µą¤¾ą¤²ą¤æą¤Æą¤° ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾-ą¤Ŗą„ą¤°ą¤µą¤æą¤§ą¤æ ą¤ą¤µą¤‚ ą¤µą„ą¤Æą¤µą¤øą„ą¤„ą¤¾ą¤Ŗą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø (ABV)'),
(87075, 'https://ror.org/04jhb1n36', 'id', 1, 'https://ror.org/04jhb1n36 Universitas Budi Luhur'),
(87076, 'https://ror.org/03nv0z257', 'en', 1, 'https://ror.org/03nv0z257 Clean Aviation'),
(87077, 'https://ror.org/02j50kc39', 'en', 1, 'https://ror.org/02j50kc39 Eliette and Herbert von Karajan Institute'),
(87078, 'https://ror.org/04ybswa04', 'en', 1, 'https://ror.org/04ybswa04 Glasbenonarodopisni inŔtitut Institute of Ethnomusicology'),
(87079, 'https://ror.org/05h5x3r78', 'en', 1, 'https://ror.org/05h5x3r78 Institute of Anthropological and Spatial Studies InŔtitut za antropoloŔke in prostorske Ŕtudije'),
(87080, 'https://ror.org/02vt3a358', 'en', 1, 'https://ror.org/02vt3a358 Filozofski inŔtitut Institute of Philosophy'),
(87081, 'https://ror.org/012k96e85', 'en', 1, 'https://ror.org/012k96e85 Norlannin yliopistollinen sairaala Norrlands universitetssjukhus University Hospital of UmeƄ'),
(87082, 'https://ror.org/02n0ejh50', 'en', 1, 'https://ror.org/02n0ejh50 Institute of High Performance Computing'),
(87083, 'https://ror.org/04wgnd003', 'en', 1, 'https://ror.org/04wgnd003 Institute of Slovenian Literature and Literary Studies InŔtitut za slovensko literaturo in literarne vede'),
(87084, 'https://ror.org/01dknfq59', 'en', 1, 'https://ror.org/01dknfq59 El Mastaba Center for Egyptian Folk Music'),
(87085, 'https://ror.org/03k7cjr94', 'de', 1, 'https://ror.org/03k7cjr94 Deutsches Bergbau-Museum Bochum'),
(87086, 'https://ror.org/04wt90243', 'en', 1, 'https://ror.org/04wt90243 A.N. Bukeikhan Kazakh Research Institute of Forestry and Agroforestry Ә.Š. Бөкейхан атынГағы ŅšŠ°Š·Š°Ņ› орман ŃˆŠ°Ń€ŃƒŠ°ŃˆŃ‹Š»Ń‹Ņ“Ń‹ және Š°Š³Ń€Š¾Š¾Ń€Š¼Š°Š½Š¼ŠµŠ»ŠøŠ¾Ń€Š°Ń†ŠøŃ ғылыми-Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(87087, 'https://ror.org/05fy2ba68', 'no_lang_code', 1, 'https://ror.org/05fy2ba68 SKF (Sweden) Svenska Kullagerfabriken'),
(87088, 'https://ror.org/020ddy191', 'en', 1, 'https://ror.org/020ddy191 Istanbul Şehir University İstanbul Şehir Üniversitesi'),
(87089, 'https://ror.org/04mx1wt49', 'en', 1, 'https://ror.org/04mx1wt49 Netherlands Research School for Literary Studies'),
(87090, 'https://ror.org/01xdnwc75', 'en', 1, 'https://ror.org/01xdnwc75 Ministry of Justice'),
(87091, 'https://ror.org/03e5xvd80', 'en', 1, 'https://ror.org/03e5xvd80 HM Prison and Probation Service'),
(87092, 'https://ror.org/030a5r161', 'en', 1, 'https://ror.org/030a5r161 Westerdijk Fungal Biodiversity Institute'),
(87093, 'https://ror.org/05vx6cn88', 'en', 0, 'https://ror.org/05vx6cn88 Uniting Against Lung Cancer'),
(87094, 'https://ror.org/04z3y3f62', 'it', 1, 'https://ror.org/04z3y3f62 Astronomical Observatory of Padova Osservatorio Astronomico di Padova'),
(87095, 'https://ror.org/05hp77p11', 'en', 1, 'https://ror.org/05hp77p11 Turkish Atomic Energy Authority Türkiye Atom Enerjisi Kurumu'),
(87096, 'https://ror.org/05jx58n20', 'en', 1, 'https://ror.org/05jx58n20 Indonesian Bakti University of Banyuwangi Universitas Bakti Indonesia'),
(87097, 'https://ror.org/03bpayg50', 'nl', 0, 'https://ror.org/03bpayg50 De Bascule'),
(87098, 'https://ror.org/04jjna482', 'es', 1, 'https://ror.org/04jjna482 Universidad Católica Nuestra Señora de la Asunción'),
(87099, 'https://ror.org/01jw2p796', 'en', 1, 'https://ror.org/01jw2p796 Iran University of Science and Technology دانؓگاه علم و صنعت Ų§ŪŒŲ±Ų§Ł†'),
(87100, 'https://ror.org/031d6d035', 'en', 1, 'https://ror.org/031d6d035 Institute of Slovenian Ethnology InŔtitut za slovensko narodopisje'),
(87101, 'https://ror.org/00mmjwb31', 'no_lang_code', 1, 'https://ror.org/00mmjwb31 Rovedar'),
(87102, 'https://ror.org/04q107642', 'en', 1, 'https://ror.org/04q107642 Cork University Hospital OspidƩal Ollscoil Chorcaƭ'),
(87103, 'https://ror.org/01psaa030', 'en', 1, 'https://ror.org/01psaa030 Hava Harp Okulu Turkish Air Force Academy'),
(87104, 'https://ror.org/00xqf8t64', 'en', 1, 'https://ror.org/00xqf8t64 Padjadjaran University Universitas Padjadjaran'),
(87105, 'https://ror.org/05r7c5x85', 'en', 1, 'https://ror.org/05r7c5x85 European University of Tirana Universiteti Europian i Tiranƫs'),
(87106, 'https://ror.org/003rrzw18', 'en', 1, 'https://ror.org/003rrzw18 Gaston Memorial Hospital'),
(87107, 'https://ror.org/05sjeet64', 'en', 1, 'https://ror.org/05sjeet64 City of Liverpool College Liverpool Community College'),
(87108, 'https://ror.org/02yskj382', 'en', 1, 'https://ror.org/02yskj382 South Carolina Department of Alcohol and Other Drug Abuse Services'),
(87109, 'https://ror.org/02wd6rd97', 'en', 1, 'https://ror.org/02wd6rd97 Družbenomedicinski inŔtitut Sociomedical Institute'),
(87110, 'https://ror.org/04jjn5s14', 'en', 1, 'https://ror.org/04jjn5s14 Wuhan Municipal Health Commission ę­¦ę±‰åø‚å«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(87111, 'https://ror.org/0359vrr67', 'en', 1, 'https://ror.org/0359vrr67 Gatot Soebroto Army Hospital Rumah Sakit Pusat Angkatan Darat Gatot Soebroto'),
(87112, 'https://ror.org/04xsmx455', 'en', 1, 'https://ror.org/04xsmx455 NHTI - Concord''s Community College New Hampshire Technical Institute'),
(87113, 'https://ror.org/05fjfdm02', 'en', 1, 'https://ror.org/05fjfdm02 Results for Development Institute'),
(87114, 'https://ror.org/01xhrax27', 'hr', 1, 'https://ror.org/01xhrax27 Naklada Slap'),
(87115, 'https://ror.org/00s9d1a36', 'en', 1, 'https://ror.org/00s9d1a36 Hunan First Normal University ę¹–å—ē¬¬äø€åøˆčŒƒå­¦é™¢'),
(87116, 'https://ror.org/03s251g81', 'en', 1, 'https://ror.org/03s251g81 Universitatea din Craiova University of Craiova'),
(87117, 'https://ror.org/00pydep37', 'en', 1, 'https://ror.org/00pydep37 PolicyWise for Children & Families'),
(87118, 'https://ror.org/026g3h106', 'en', 1, 'https://ror.org/026g3h106 UCH Macmillan Cancer Centre University College Hospital Macmillan Cancer Centre'),
(87119, 'https://ror.org/021pnpq62', 'no_lang_code', 0, 'https://ror.org/021pnpq62 Kvaerner (United Kingdom)'),
(87120, 'https://ror.org/029yy6d70', 'en', 1, 'https://ror.org/029yy6d70 Alzheimer Europe'),
(87121, 'https://ror.org/034ezjs86', 'en', 1, 'https://ror.org/034ezjs86 Shushrusha Citizens'' Co-operative Hospital'),
(87122, 'https://ror.org/04829x985', 'en', 1, 'https://ror.org/04829x985 Catholic University of West Africa UniversitƩ Catholique de l''Afrique de l''Ouest'),
(87123, 'https://ror.org/05dv1j335', 'en', 1, 'https://ror.org/05dv1j335 BibliothĆØque huntington The Huntington Library, Art Museum, and Botanical Gardens'),
(87124, 'https://ror.org/009nnre75', 'en', 1, 'https://ror.org/009nnre75 Satya Wacana Christian University Universitas Kristen Satya Wacana'),
(87125, 'https://ror.org/0108z6p13', 'en', 1, 'https://ror.org/0108z6p13 RRF Foundation for Aging'),
(87126, 'https://ror.org/04kz5ba43', 'en', 1, 'https://ror.org/04kz5ba43 Uniwersytet WSB Merito Poznań WSB Merito University in Poznan'),
(87127, 'https://ror.org/04k51q396', 'en', 1, 'https://ror.org/04k51q396 HÓpital universitaire de Bâle University Hospital of Basel Universitätsspital Basel'),
(87128, 'https://ror.org/04v3xej07', 'ms', 1, 'https://ror.org/04v3xej07 Zoo Negara'),
(87129, 'https://ror.org/04pqny312', 'en', 1, 'https://ror.org/04pqny312 Institute of the Pacific United International Pacific College'),
(87130, 'https://ror.org/05syseh24', 'en', 1, 'https://ror.org/05syseh24 Deniz Harp Okulu Naval Academy'),
(87131, 'https://ror.org/016bped08', 'en', 1, 'https://ror.org/016bped08 Guangzhou Liwan District Traditional Chinese Medicine Hospital'),
(87132, 'https://ror.org/03mpa3n40', 'de', 1, 'https://ror.org/03mpa3n40 Generaldirektion Kulturelles Erbe Rheinland-Pfalz'),
(87133, 'https://ror.org/02car4a12', 'en', 1, 'https://ror.org/02car4a12 Institute of Musicology MuzikoloŔki inŔtitut'),
(87134, 'https://ror.org/041qv0h25', 'de', 1, 'https://ror.org/041qv0h25 Deutsches ArchƤologisches Institut, Zentrale German Archaeological Institute, Head Office'),
(87135, 'https://ror.org/00jk2b778', 'no_lang_code', 1, 'https://ror.org/00jk2b778 Institut Mihajlo Pupin Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŃ…Š°Ń˜Š»Š¾ Пупин'),
(87136, 'https://ror.org/00wx2xr17', 'en', 1, 'https://ror.org/00wx2xr17 Neuroblastoma UK'),
(87137, 'https://ror.org/027ybr913', 'en', 1, 'https://ror.org/027ybr913 Shore Memorial Hospital'),
(87138, 'https://ror.org/01mrkb883', 'en', 1, 'https://ror.org/01mrkb883 Daugavpils University Daugavpils Universitāte Daugpilio universitetas Š”Š°ŃƒŠ³Š°Š²ŠæŠøŠ»ŃŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(87139, 'https://ror.org/02yewpr08', 'en', 1, 'https://ror.org/02yewpr08 Eesti Kirjandusmuuseum Estonian Literary Museum'),
(87140, 'https://ror.org/02fv47851', 'en', 1, 'https://ror.org/02fv47851 Koulutuskeskus Salpaus Salpaus Further Education'),
(87141, 'https://ror.org/00ks26d70', 'en', 0, 'https://ror.org/00ks26d70 Hamilton Psychiatric Hospital'),
(87142, 'https://ror.org/02gn38d51', 'en', 1, 'https://ror.org/02gn38d51 Hokkaido University of Education åŒ—ęµ·é“ę•™č‚²å¤§å­¦'),
(87143, 'https://ror.org/022xyn875', 'en', 1, 'https://ror.org/022xyn875 Institute of Bioengineering and Nanotechnology'),
(87144, 'https://ror.org/01ffqaw45', 'en', 1, 'https://ror.org/01ffqaw45 InŔtitut za raziskovanje krasa Karst Research Institute'),
(87145, 'https://ror.org/04bqkh239', 'en', 1, 'https://ror.org/04bqkh239 Zagreb School of Economics and Management Zagrebačka Ŕkola ekonomije i managementa'),
(87146, 'https://ror.org/02w7n8v98', 'no_lang_code', 1, 'https://ror.org/02w7n8v98 Osakakita Teishin Hospital å¤§é˜ŖåŒ—é€“äæ”ē—…é™¢'),
(87147, 'https://ror.org/05ax0z866', 'id', 1, 'https://ror.org/05ax0z866 Universitas Darma Agung'),
(87148, 'https://ror.org/01wk3d929', 'en', 1, 'https://ror.org/01wk3d929 Universitas Brawijaya University of Brawijaya'),
(87149, 'https://ror.org/04jfcs144', 'en', 1, 'https://ror.org/04jfcs144 Fran RamovŔ Institute of the Slovenian Language InŔtitut za slovenski jezik Frana RamovŔa'),
(87150, 'https://ror.org/01y2yb643', 'no_lang_code', 1, 'https://ror.org/01y2yb643 Ivan Rakovec Institute of Palaeontology PaleontoloŔki inŔtitut Ivana Rakovca'),
(87151, 'https://ror.org/04e4sh030', 'en', 1, 'https://ror.org/04e4sh030 Sussex Community NHS Foundation Trust'),
(87152, 'https://ror.org/04ksz1n23', 'en', 1, 'https://ror.org/04ksz1n23 LabourƩ College'),
(87153, 'https://ror.org/04cm78a24', 'nl', 1, 'https://ror.org/04cm78a24 Maaslandziekenhuis'),
(87154, 'https://ror.org/05qha6z89', 'en', 1, 'https://ror.org/05qha6z89 Infocomm Media Development Authority Penguasa Pembangunan Infokom Media č³‡čØŠé€šäæ”åŖ’é«”ē™¼å±•å±€'),
(87155, 'https://ror.org/047st1n79', 'es', 1, 'https://ror.org/047st1n79 Instituto Tecnológico de Santo Domingo'),
(87156, 'https://ror.org/04zck7a21', 'en', 1, 'https://ror.org/04zck7a21 Institute of Culture and Memory Studies InŔtitut za kulturne in spominske Ŕtudije'),
(87157, 'https://ror.org/022d03y10', 'en', 1, 'https://ror.org/022d03y10 P.M.N.M. Dental College and Hospital'),
(87158, 'https://ror.org/012f2ag31', 'en', 1, 'https://ror.org/012f2ag31 Ethical Consumer Research Association'),
(87159, 'https://ror.org/036j6sg82', 'en', 1, 'https://ror.org/036j6sg82 Hospital Besar Singapura Singapore General Hospital ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®¤ąÆ‡ą®šą®æą®Æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(87160, 'https://ror.org/032fvf508', 'en', 0, 'https://ror.org/032fvf508 InstitiĆŗid TeicneolaĆ­ochta Sligeach Institute of Technology Sligo'),
(87161, 'https://ror.org/028z9kw20', 'en', 1, 'https://ror.org/028z9kw20 Hogeschool Utrecht University of Applied Sciences Utrecht'),
(87162, 'https://ror.org/03b3zvp63', 'en', 1, 'https://ror.org/03b3zvp63 Kolej Universiti Tunku Abdul Rahman Tunku Abdul Rahman University of Management and Technology 拉曼大學學院'),
(87163, 'https://ror.org/02y7nf053', 'en', 1, 'https://ror.org/02y7nf053 NaturvƄrdsverket Ruotsin luonnonsuojeluvirasto Swedish Environmental Protection Agency'),
(87164, 'https://ror.org/02m62qy71', 'en', 1, 'https://ror.org/02m62qy71 Universitetssjukhuset Ɩrebro Ɩrebro University Hospital'),
(87165, 'https://ror.org/02b82hk77', 'en', 1, 'https://ror.org/02b82hk77 Technical University of Moldova Universitatea Tehnică a Moldovei Технический Университет ŠœŠ¾Š»Š“Š¾Š²Ń‹'),
(87166, 'https://ror.org/056hed623', 'en', 1, 'https://ror.org/056hed623 One Door Mental Health'),
(87167, 'https://ror.org/00d7wvm38', 'en', 1, 'https://ror.org/00d7wvm38 NIA IMPACT Collaboratory'),
(87168, 'https://ror.org/03yk8xt33', 'no_lang_code', 1, 'https://ror.org/03yk8xt33 Shikoku Cancer Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å››å›½ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(87169, 'https://ror.org/04ffbf641', 'en', 1, 'https://ror.org/04ffbf641 Divine Word Missionaries Societas Verbi Divini'),
(87170, 'https://ror.org/025e8aw85', 'de', 1, 'https://ror.org/025e8aw85 Comenius-Institut'),
(87171, 'https://ror.org/02ea0g317', 'en', 1, 'https://ror.org/02ea0g317 Academy of Arts, Architecture and Design in Prague VysokĆ” Å”kola uměleckoprÅÆmyslovĆ” v Praze'),
(87172, 'https://ror.org/0265ntg49', 'en', 1, 'https://ror.org/0265ntg49 Association of Universities and Colleges of Canada UniversitƩs Canada'),
(87173, 'https://ror.org/045ney286', 'en', 1, 'https://ror.org/045ney286 Oulu University Hospital Oulun yliopistollinen sairaala'),
(87174, 'https://ror.org/01jmhvd34', 'es', 1, 'https://ror.org/01jmhvd34 Universidad Peruana de Las AmƩricas'),
(87175, 'https://ror.org/03hmyx521', 'en', 1, 'https://ror.org/03hmyx521 All-Russian Scientific Research Institute for the Use of Machinery and Petroleum Products in Agriculture Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ техники Šø Š½ŠµŃ„Ń‚ŠµŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š² в сельском Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Šµ'),
(87176, 'https://ror.org/01hq89f96', 'fr', 1, 'https://ror.org/01hq89f96 Centre Hospitalier Universitaire de Bordeaux'),
(87177, 'https://ror.org/04rfr1008', 'en', 1, 'https://ror.org/04rfr1008 Black Dog Institute'),
(87178, 'https://ror.org/05njb9z20', 'en', 1, 'https://ror.org/05njb9z20 University of Ljubljana Univerza v Ljubljani'),
(87179, 'https://ror.org/054gw3b40', 'en', 1, 'https://ror.org/054gw3b40 Baku State University Bakı Dƶvlət Universiteti Бакинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ō²Õ”Ö„Õ¾Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(87180, 'https://ror.org/0265xav62', 'en', 1, 'https://ror.org/0265xav62 Dutch postgraduate School for Art History'),
(87181, 'https://ror.org/0532wcf75', 'en', 1, 'https://ror.org/0532wcf75 Electronics Research Institute'),
(87182, 'https://ror.org/00csb7d97', 'en', 1, 'https://ror.org/00csb7d97 Korea Youth Association ķ•œźµ­ ģ²­ģ†Œė…„ ķ˜‘ķšŒ'),
(87183, 'https://ror.org/044xf8y74', 'en', 1, 'https://ror.org/044xf8y74 A Shelter for Cancer Families'),
(87184, 'https://ror.org/056hcgc41', 'en', 1, 'https://ror.org/056hcgc41 Mustafa Kemal University Mustafa Kemal Üniversitesi'),
(87185, 'https://ror.org/03s8vf977', 'en', 0, 'https://ror.org/03s8vf977 Delivery of Advanced Network Technology to Europe (United Kingdom)'),
(87186, 'https://ror.org/01se4f844', 'en', 1, 'https://ror.org/01se4f844 Prifysgol Cymru University of Wales'),
(87187, 'https://ror.org/05aec4025', 'en', 1, 'https://ror.org/05aec4025 Polytechnic University of Tirana Universiteti Politeknik i Tiranƫs');
INSERT INTO `rors` VALUES
(87188, 'https://ror.org/01cr5t497', 'en', 1, 'https://ror.org/01cr5t497 Volgograd State University of Architecture and Civil Engineering ВолгограГский Š³Š¾ŃŃƒŠ“арственный Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(87189, 'https://ror.org/008dewj11', 'en', 1, 'https://ror.org/008dewj11 Estonian National Defense College KaitsevƤe Ɯhendatud ƕppeasutused'),
(87190, 'https://ror.org/0503qew83', 'en', 1, 'https://ror.org/0503qew83 InŔtitut za slovensko izseljenstvo in migracije Slovenian Migration Institute'),
(87191, 'https://ror.org/003njxk77', 'en', 1, 'https://ror.org/003njxk77 Partido State University'),
(87192, 'https://ror.org/03spkcf71', 'en', 1, 'https://ror.org/03spkcf71 Western Fire Chiefs Association'),
(87193, 'https://ror.org/05qvm1p98', 'en', 1, 'https://ror.org/05qvm1p98 Polish Air Force Academy Wyższa Szkoła Oficerska Sił Powietrznych'),
(87194, 'https://ror.org/02xbr5r10', 'en', 1, 'https://ror.org/02xbr5r10 HM Prison Service'),
(87195, 'https://ror.org/056afm769', 'en', 1, 'https://ror.org/056afm769 Carteret General Hospital'),
(87196, 'https://ror.org/04tjx1w16', 'en', 1, 'https://ror.org/04tjx1w16 Narodna in univerzitetna knjižnica National and University Library of Slovenia'),
(87197, 'https://ror.org/04hjr4202', 'en', 1, 'https://ror.org/04hjr4202 İzmir Ekonomi Üniversitesi İzmir University of Economics İzmir İqtisadiyyat Universiteti'),
(87198, 'https://ror.org/02f0z8n98', 'en', 1, 'https://ror.org/02f0z8n98 National Library of Malaysia Perpustakaan Negara Malaysia'),
(87199, 'https://ror.org/02gwe8432', 'en', 1, 'https://ror.org/02gwe8432 Access'),
(87200, 'https://ror.org/000p86k36', 'de', 1, 'https://ror.org/000p86k36 Oel-Waerme-Institut'),
(87201, 'https://ror.org/05dwvd537', 'en', 1, 'https://ror.org/05dwvd537 Ministerstwo Nauki i Szkolnictwa Wyższego Ministry of Science and Higher Education'),
(87202, 'https://ror.org/02zrae794', 'en', 1, 'https://ror.org/02zrae794 Stockholm County Council Stockholms lƤns landsting Tukholman lƤƤnin maakƤrƤjƤkunta'),
(87203, 'https://ror.org/02pys4392', 'en', 1, 'https://ror.org/02pys4392 Cascadia College Cascadia Community College'),
(87204, 'https://ror.org/01q8b6q23', 'it', 1, 'https://ror.org/01q8b6q23 Libera UniversitĆ  Internazionale degli Studi Sociali Guido Carli'),
(87205, 'https://ror.org/01bdnyv65', 'en', 1, 'https://ror.org/01bdnyv65 Academy of Finance and Management in Białystok Wyższa Szkoła Finansów i Zarządzania w Białymstoku'),
(87206, 'https://ror.org/02x8svs93', 'en', 1, 'https://ror.org/02x8svs93 Near East University Yakın Doğu Üniversitesi'),
(87207, 'https://ror.org/00c4rg397', 'en', 1, 'https://ror.org/00c4rg397 Lietuvos humanitarinių ir socialinių mokslų duomenų archyvas Lithuanian Data Archive for Social Sciences and Humanities'),
(87208, 'https://ror.org/04131zp69', 'en', 1, 'https://ror.org/04131zp69 L''Ospedale Coloniale di Vittorio Emanuele III Tripoli Central Hospital مستؓفى طرابلس Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(87209, 'https://ror.org/044w3nw43', 'en', 1, 'https://ror.org/044w3nw43 Bioinformatics Institute'),
(87210, 'https://ror.org/054xkpr46', 'en', 1, 'https://ror.org/054xkpr46 Gazi University Gazi Üniversitesi Qazi Universiteti'),
(87211, 'https://ror.org/02ba3pt07', 'en', 0, 'https://ror.org/02ba3pt07 Tammerfors tekniska universitet Tampere University of Technology Tampereen teknillinen yliopisto'),
(87212, 'https://ror.org/03e55jv37', 'en', 1, 'https://ror.org/03e55jv37 Ceipa University Foundation Fundacion Universitaria Ceipa'),
(87213, 'https://ror.org/00ay50243', 'en', 1, 'https://ror.org/00ay50243 Anhembi Morumbi University Universidade Anhembi Morumbi'),
(87214, 'https://ror.org/05k8wg936', 'en', 1, 'https://ror.org/05k8wg936 Genome Institute of Singapore'),
(87215, 'https://ror.org/01767d733', 'en', 1, 'https://ror.org/01767d733 Erasmus University College Brussels Erasmushogeschool Brussel Erasmushogeschool brussel'),
(87216, 'https://ror.org/056bjta22', 'en', 1, 'https://ror.org/056bjta22 Diponegoro University Universitas Diponegoro'),
(87217, 'https://ror.org/01rjk0n25', 'en', 0, 'https://ror.org/01rjk0n25 Trans-European Research and Education Networking Association'),
(87218, 'https://ror.org/04crnd335', 'nl', 1, 'https://ror.org/04crnd335 Rathenau Instituut'),
(87219, 'https://ror.org/017x4hj83', 'en', 1, 'https://ror.org/017x4hj83 American Psychiatric Foundation'),
(87220, 'https://ror.org/029st3z03', 'it', 1, 'https://ror.org/029st3z03 Istituto di Radioastronomia di Bologna'),
(87221, 'https://ror.org/01h7hvj14', 'en', 1, 'https://ror.org/01h7hvj14 Engineering School of Information and Digital Technologies Ɖcole d''IngĆ©nieur GĆ©nĆ©raliste en Informatique et Technologies du NumĆ©rique'),
(87222, 'https://ror.org/04fgpet95', 'en', 1, 'https://ror.org/04fgpet95 University Hospital of Wales Ysbyty Athrofaol Cymru'),
(87223, 'https://ror.org/04dj8ng22', 'en', 1, 'https://ror.org/04dj8ng22 Ufuk University Ufuk Üniversitesi'),
(87224, 'https://ror.org/03em27e03', 'en', 0, 'https://ror.org/03em27e03 Geological Survey of Austria Geologische Bundesanstalt'),
(87225, 'https://ror.org/047zr9s44', 'en', 1, 'https://ror.org/047zr9s44 University of the Assumption'),
(87226, 'https://ror.org/02r0e4r58', 'de', 1, 'https://ror.org/02r0e4r58 Jülich Aachen Research Alliance'),
(87227, 'https://ror.org/00v9vte73', 'en', 1, 'https://ror.org/00v9vte73 Ruotsin sƤteilyturvavirasto StrƄlsƤkerhetsmyndigheten Swedish Radiation Safety Authority'),
(87228, 'https://ror.org/00hhhdj49', 'en', 0, 'https://ror.org/00hhhdj49 Media Development Authority åŖ’ä½“å‘å±•ē®”ē†å±€'),
(87229, 'https://ror.org/00zv6rh96', 'en', 1, 'https://ror.org/00zv6rh96 Mevlana University Mevlana Üniversitesi'),
(87230, 'https://ror.org/05jcas118', 'es', 1, 'https://ror.org/05jcas118 Museo de Arte Popular'),
(87231, 'https://ror.org/03hrwak15', 'es', 1, 'https://ror.org/03hrwak15 Universidad Francisco MarroquĆ­n'),
(87232, 'https://ror.org/00a208s56', 'en', 1, 'https://ror.org/00a208s56 Chemnitz University of Technology Technische UniversitƤt Chemnitz'),
(87233, 'https://ror.org/0266nxj03', 'es', 1, 'https://ror.org/0266nxj03 Hospital Universitario Mayor, Mederi'),
(87234, 'https://ror.org/03rqk8h36', 'en', 1, 'https://ror.org/03rqk8h36 National Chengchi University'),
(87235, 'https://ror.org/03wysya92', 'en', 1, 'https://ror.org/03wysya92 InfectoGnostics Research Campus Jena'),
(87236, 'https://ror.org/015e5sp16', 'en', 1, 'https://ror.org/015e5sp16 Highways England'),
(87237, 'https://ror.org/047w8z534', 'en', 1, 'https://ror.org/047w8z534 Middle East Studies Association of North America'),
(87238, 'https://ror.org/05833yb45', 'en', 1, 'https://ror.org/05833yb45 Centre for Ecotoxicological Research'),
(87239, 'https://ror.org/01p9nak43', 'id', 1, 'https://ror.org/01p9nak43 Universitas Indo Global Mandiri'),
(87240, 'https://ror.org/02kehyq59', 'en', 1, 'https://ror.org/02kehyq59 Standard Norge Standards Norway'),
(87241, 'https://ror.org/03zs3r155', 'no_lang_code', 1, 'https://ror.org/03zs3r155 Vivli'),
(87242, 'https://ror.org/02eyeq397', 'no_lang_code', 1, 'https://ror.org/02eyeq397 EDF Renewables'),
(87243, 'https://ror.org/03xx98n35', 'fr', 1, 'https://ror.org/03xx98n35 Institut de Recherche pour le DƩveloppement'),
(87244, 'https://ror.org/03v8ter60', 'en', 1, 'https://ror.org/03v8ter60 University of Zululand'),
(87245, 'https://ror.org/01arx1p46', 'en', 1, 'https://ror.org/01arx1p46 Uniwersytet WSB Merito Gdańsk WSB Merito University in Gdańsk'),
(87246, 'https://ror.org/01k410495', 'es', 1, 'https://ror.org/01k410495 Universidad Estatal PenĆ­nsula de Santa Elena'),
(87247, 'https://ror.org/05gkzcc88', 'en', 1, 'https://ror.org/05gkzcc88 Prifysgol Cymru Y Drindod Dewi Sant University of Wales Trinity Saint David'),
(87248, 'https://ror.org/02ech3277', 'pt', 1, 'https://ror.org/02ech3277 Batalha Monastery Mosteiro da Batalha'),
(87249, 'https://ror.org/04cm1q459', 'en', 1, 'https://ror.org/04cm1q459 Minnesota Veterans Medical Research and Education Foundation'),
(87250, 'https://ror.org/00gkzs980', 'en', 1, 'https://ror.org/00gkzs980 Institute of Archaeology InŔtitut za arheologijo'),
(87251, 'https://ror.org/00p89cc10', 'en', 1, 'https://ror.org/00p89cc10 ESIC Model Hospital & PGIMSR'),
(87252, 'https://ror.org/01fjw1d15', 'en', 1, 'https://ror.org/01fjw1d15 Radiation and Nuclear Safety Authority StrƄlsƤkerhetscentralen SƤteilyturvakeskus'),
(87253, 'https://ror.org/036gzhj81', 'en', 1, 'https://ror.org/036gzhj81 University of Tuzla Univerzitet u Tuzli Универзитет у Тузли'),
(87254, 'https://ror.org/01ma17032', 'en', 1, 'https://ror.org/01ma17032 Saint Petersburg Mining University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(87255, 'https://ror.org/008d6q968', 'es', 1, 'https://ror.org/008d6q968 Universidad Nacional del Centro del PerĆŗ'),
(87256, 'https://ror.org/01k6vaf42', 'en', 1, 'https://ror.org/01k6vaf42 Mount Zion College of Engineering and Technology ą®®ą®µąÆą®£ąÆą®ŸąÆ ą®šą®æą®ÆąÆ‹ą®©ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(87257, 'https://ror.org/03sxjf271', 'en', 1, 'https://ror.org/03sxjf271 Uniwersytet WSB Merito Toruń WSB Merito University in Torun'),
(87258, 'https://ror.org/058ya6669', 'en', 1, 'https://ror.org/058ya6669 Kara Harp Okulu Turkish Military Academy'),
(87259, 'https://ror.org/00yp80c93', 'en', 1, 'https://ror.org/00yp80c93 Moore College Moore Theological College'),
(87260, 'https://ror.org/03nj0b139', 'en', 1, 'https://ror.org/03nj0b139 Fundação Serralves Serralves Serralves Foundation'),
(87261, 'https://ror.org/02nv8wk59', 'es', 1, 'https://ror.org/02nv8wk59 Antonio Ruiz de Montoya University Universidad Antonio Ruiz de Montoya'),
(87262, 'https://ror.org/048dqgk17', 'en', 0, 'https://ror.org/048dqgk17 Central Institution for Meteorology and Geodynamics Zentralanstalt für Meteorologie und Geodynamik'),
(87263, 'https://ror.org/023zp7889', 'en', 0, 'https://ror.org/023zp7889 Arab Open University'),
(87264, 'https://ror.org/03j96nc67', 'en', 1, 'https://ror.org/03j96nc67 Central Metallurgical Research and Development Institute Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ Ų§Ł„Ł…Ų¹ŲÆŁ†ŁŠŲ© معهد Ų§Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(87265, 'https://ror.org/00qv5rb32', 'en', 1, 'https://ror.org/00qv5rb32 Maharishi International University'),
(87266, 'https://ror.org/016n0q862', 'en', 1, 'https://ror.org/016n0q862 Israel Ministry of Health ×žÖ“×©Ö°×‚×ØÖ·×“ הַבְּר֓יאוּת'),
(87267, 'https://ror.org/05p3n6281', 'en', 1, 'https://ror.org/05p3n6281 Department for Infrastructure'),
(87268, 'https://ror.org/045vhys49', 'id', 1, 'https://ror.org/045vhys49 Universitas Muhammadiyah Cirebon'),
(87269, 'https://ror.org/01590nj79', 'en', 1, 'https://ror.org/01590nj79 Pusat Perubatan Universiti Kebangsaan Malaysia University Kebangsaan Malaysia Medical Centre'),
(87270, 'https://ror.org/04f0vbp79', 'no_lang_code', 1, 'https://ror.org/04f0vbp79 Mindgardens Neuroscience Network'),
(87271, 'https://ror.org/055503602', 'no_lang_code', 0, 'https://ror.org/055503602 Celgene (Switzerland)'),
(87272, 'https://ror.org/00xw9d516', 'en', 1, 'https://ror.org/00xw9d516 Kantipur Engineering College'),
(87273, 'https://ror.org/04nvnkt69', 'en', 1, 'https://ror.org/04nvnkt69 Academy of Fine Arts Prague Akademie výtvarných uměnĆ­ v Praze'),
(87274, 'https://ror.org/040hqpc16', 'en', 1, 'https://ror.org/040hqpc16 Mater Misericordiae University Hospital OspidƩal an Mater Misercordiae'),
(87275, 'https://ror.org/04c9sd914', 'en', 1, 'https://ror.org/04c9sd914 Griggs International Academy'),
(87276, 'https://ror.org/00mgdps92', 'es', 1, 'https://ror.org/00mgdps92 Hospital del Gran Chaco Fray Quebracho'),
(87277, 'https://ror.org/03k33gq76', 'en', 1, 'https://ror.org/03k33gq76 His Majesty''s Treasury'),
(87278, 'https://ror.org/0360g3z42', 'en', 1, 'https://ror.org/0360g3z42 Hanoi National University of Education TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m HĆ  Nį»™i'),
(87279, 'https://ror.org/01xwxw692', 'es', 1, 'https://ror.org/01xwxw692 Instituto Tecnológico de Cancún'),
(87280, 'https://ror.org/05t6bvd33', 'en', 1, 'https://ror.org/05t6bvd33 Vancouver Film School'),
(87281, 'https://ror.org/044hkny52', 'no_lang_code', 0, 'https://ror.org/044hkny52 Symantec (Ireland)'),
(87282, 'https://ror.org/03t0qhg62', 'en', 1, 'https://ror.org/03t0qhg62 Bệnh viện Việt Nam-ThỄy Điển Vietnam Sweden hospital'),
(87283, 'https://ror.org/041y07v98', 'de', 1, 'https://ror.org/041y07v98 StƤdtische Kliniken Mƶnchengladbach'),
(87284, 'https://ror.org/04qy5ef02', 'en', 1, 'https://ror.org/04qy5ef02 Heritage Baptist College and Heritage Theological Seminary Heritage College and Seminary'),
(87285, 'https://ror.org/01be19w37', 'de', 1, 'https://ror.org/01be19w37 Helios Klinikum Krefeld'),
(87286, 'https://ror.org/05g2axc67', 'no_lang_code', 1, 'https://ror.org/05g2axc67 Tenri Hospital å¤©ē†ć‚ˆć‚ć„ē›øč«‡ę‰€ē—…é™¢'),
(87287, 'https://ror.org/00y0yff03', 'en', 1, 'https://ror.org/00y0yff03 SollefteƄ Hospital SollefteƄ sjukhus'),
(87288, 'https://ror.org/05ppk0267', 'es', 1, 'https://ror.org/05ppk0267 Universidad Autónoma de Guadalajara'),
(87289, 'https://ror.org/031bsz941', 'en', 1, 'https://ror.org/031bsz941 Hospital Adventist Penang Adventist Hospital ę§Ÿå®‰åŒ»é™¢'),
(87290, 'https://ror.org/03xygw105', 'es', 1, 'https://ror.org/03xygw105 Universidad de Oriente'),
(87291, 'https://ror.org/03ppt4w11', 'en', 1, 'https://ror.org/03ppt4w11 BioloŔki inŔtitut Jovana Hadžija Jovan Hadži Institute of Biology'),
(87292, 'https://ror.org/02d229b24', 'en', 1, 'https://ror.org/02d229b24 Bundesministerium für Wissenschaft, Forschung und Wirtschaft Federal Ministry of Science, Research and Economics'),
(87293, 'https://ror.org/04pyne868', 'en', 0, 'https://ror.org/04pyne868 Infocomm Development Authority of Singapore'),
(87294, 'https://ror.org/02ex29a12', 'en', 1, 'https://ror.org/02ex29a12 RoZetta Institute'),
(87295, 'https://ror.org/01pnej532', 'en', 1, 'https://ror.org/01pnej532 Szegedi TudomƔnyegyetem University of Szeged'),
(87296, 'https://ror.org/03h954e30', 'es', 1, 'https://ror.org/03h954e30 Centro de Investigación en Materiales Avanzados'),
(87297, 'https://ror.org/01car3s57', 'en', 1, 'https://ror.org/01car3s57 Milko Kos Historical Institute Zgodovinski inŔtitut Milka Kosa'),
(87298, 'https://ror.org/050qmg959', 'en', 1, 'https://ror.org/050qmg959 Singapore Management University Universiti Pengurusan Singapura'),
(87299, 'https://ror.org/02epjsz02', 'en', 1, 'https://ror.org/02epjsz02 Fitzsimons Army Medical Center'),
(87300, 'https://ror.org/00yt9w502', 'en', 1, 'https://ror.org/00yt9w502 Uczelnia WSB Merito Warszawa WSB Merito University in Warsaw'),
(87301, 'https://ror.org/02qr0r046', 'en', 1, 'https://ror.org/02qr0r046 France Stele Institute of Art History Umetnostnozgodovinski inŔtitut Franceta Steleta'),
(87302, 'https://ror.org/01226dv09', 'en', 1, 'https://ror.org/01226dv09 University Hospital Regensburg UniversitƤtsklinikum Regensburg'),
(87303, 'https://ror.org/041akq887', 'pt', 1, 'https://ror.org/041akq887 Universidad Federal de Santa Catarina Universidade Federal de Santa Catarina UniversitƩ fƩdƩrale de santa catarina'),
(87304, 'https://ror.org/02j8k6t75', 'en', 1, 'https://ror.org/02j8k6t75 Işık University Işık Üniversitesi İşıq Universiteti'),
(87305, 'https://ror.org/05m8qn763', 'en', 1, 'https://ror.org/05m8qn763 Uniwersytet WSB Merito Wrocław WSB Merito University in Wroclaw'),
(87306, 'https://ror.org/03zm2br59', 'pl', 1, 'https://ror.org/03zm2br59 Centrum Badań Kosmicznych Space Research Centre'),
(87307, 'https://ror.org/04f1m4g17', 'de', 1, 'https://ror.org/04f1m4g17 Deutsches Archäologisches Institut, Kommission für Alte Geschichte und Epigraphik German Archaeological Institute, Commission for Ancient History and Epigraphy Munich'),
(87308, 'https://ror.org/04349ry21', 'en', 1, 'https://ror.org/04349ry21 New Valley University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁ‰ Ų§Ł„Ų¬ŲÆŁŠŲÆ'),
(87309, 'https://ror.org/00kj76376', 'en', 1, 'https://ror.org/00kj76376 Anton Melik Geographical Institute Geografski inŔtitut Antona Melika'),
(87310, 'https://ror.org/01d4n5957', 'id', 1, 'https://ror.org/01d4n5957 Institut Seni Indonesia Denpasar'),
(87311, 'https://ror.org/03ke5zk82', 'en', 1, 'https://ror.org/03ke5zk82 OspidƩal Ollscoile Shligigh Sligo University Hospital'),
(87312, 'https://ror.org/03n7yzv56', 'en', 1, 'https://ror.org/03n7yzv56 Adnan Menderes University Adnan Menderes Üniversitesi'),
(87313, 'https://ror.org/038g7dk46', 'en', 1, 'https://ror.org/038g7dk46 Miskolci Egyetem University of Miskolc'),
(87314, 'https://ror.org/002g3kz75', 'no_lang_code', 1, 'https://ror.org/002g3kz75 Flughafen Zürich Zürich Airport (Switzerland)'),
(87315, 'https://ror.org/017f19q81', 'nl', 1, 'https://ror.org/017f19q81 Nederlands Olympisch ComitƩ Nederlandse Sport Federatie'),
(87316, 'https://ror.org/01mtkd993', 'en', 1, 'https://ror.org/01mtkd993 Sistema de la Universidad de Alaska University of Alaska System'),
(87317, 'https://ror.org/03kam7s13', 'de', 1, 'https://ror.org/03kam7s13 Institut für Baustoff-Forschung'),
(87318, 'https://ror.org/04pq5sx96', 'no_lang_code', 1, 'https://ror.org/04pq5sx96 EDF Energy North America ƉlectricitĆ© de France'),
(87319, 'https://ror.org/00t5xc355', 'ca', 1, 'https://ror.org/00t5xc355 Corporació Catalana de Mitjans Audiovisuals'),
(87320, 'https://ror.org/0423jk940', 'en', 1, 'https://ror.org/0423jk940 Bayerisches Staatsministerium des Innern, für Bau und Verkehr The Bavarian Ministry of the Interior, for Building and Transport'),
(87321, 'https://ror.org/035v3d332', 'no_lang_code', 1, 'https://ror.org/035v3d332 BIOVIA'),
(87322, 'https://ror.org/03zexf287', 'en', 1, 'https://ror.org/03zexf287 Institute of Cultural History InŔtitut za kulturno zgodovino'),
(87323, 'https://ror.org/02b988t02', 'en', 1, 'https://ror.org/02b988t02 Emek Medical Center ×ž×Ø×›×– רפואי העמק'),
(87324, 'https://ror.org/01dwpbz64', 'en', 1, 'https://ror.org/01dwpbz64 Max Planck Institute for the Study of Societies Max-Planck-Institut für Gesellschaftsforschung'),
(87325, 'https://ror.org/04gw0z407', 'de', 1, 'https://ror.org/04gw0z407 Aachener Centrum für Technologietransfer in der Ophthalmologie'),
(87326, 'https://ror.org/04d4dr544', 'no_lang_code', 1, 'https://ror.org/04d4dr544 Theodor Bilharz Research Institute'),
(87327, 'https://ror.org/01jdyfj45', 'en', 1, 'https://ror.org/01jdyfj45 Office of Research Infrastructure Programs'),
(87328, 'https://ror.org/02jj62p13', 'en', 1, 'https://ror.org/02jj62p13 Neanderthal Museum'),
(87329, 'https://ror.org/00msgs752', 'fr', 1, 'https://ror.org/00msgs752 Groupement des Industries de Construction and ActivitƩs Navales'),
(87330, 'https://ror.org/01ar2v535', 'ca', 1, 'https://ror.org/01ar2v535 Hospital Universitari i Politècnic La Fe Hospital Universitario y Politécnico de La Fe'),
(87331, 'https://ror.org/022dv3188', 'de', 1, 'https://ror.org/022dv3188 Berlin-Institut für Bevölkerung und Entwicklung'),
(87332, 'https://ror.org/00wevt173', 'no_lang_code', 1, 'https://ror.org/00wevt173 Sjƶgren’s Foundation'),
(87333, 'https://ror.org/02dfpb916', 'en', 1, 'https://ror.org/02dfpb916 Instituto Mexicano del Petróleo Mexican Institute of Petroleum'),
(87334, 'https://ror.org/025s2k192', 'no_lang_code', 1, 'https://ror.org/025s2k192 Scientific Center of Innovative Research'),
(87335, 'https://ror.org/01j5aph50', 'en', 1, 'https://ror.org/01j5aph50 Ministry of Communications and Information ę–°åŠ å”é€šč®ÆåŠę–°é—»éƒØ'),
(87336, 'https://ror.org/05tmhg912', 'en', 1, 'https://ror.org/05tmhg912 Artha Wacana Christian University Universitas Kristen Artha Wacana'),
(87337, 'https://ror.org/058mjg007', 'en', 1, 'https://ror.org/058mjg007 Siberian Research Institute of Animal Husbandry Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ животновоГства Дибирского Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра агробиотехнологий Российской акаГемии наук'),
(87338, 'https://ror.org/0198xy071', 'en', 1, 'https://ror.org/0198xy071 Milano University Press'),
(87339, 'https://ror.org/01ajt3179', 'en', 1, 'https://ror.org/01ajt3179 Hutchison/MRC Research Centre'),
(87340, 'https://ror.org/03w9d2b95', 'en', 1, 'https://ror.org/03w9d2b95 Luisenhospital Aachen'),
(87341, 'https://ror.org/01me6gb93', 'en', 1, 'https://ror.org/01me6gb93 Kaunas University of Technology Kauno technologijos universitetas Uniwersytet Techniczny w Kownie Каунасский технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(87342, 'https://ror.org/05hcp8p49', 'en', 1, 'https://ror.org/05hcp8p49 Vologda State University ВологоГский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(87343, 'https://ror.org/02m74w963', 'en', 1, 'https://ror.org/02m74w963 Escuela Latinoamericana de Medicina Latin American School of Medicine'),
(87344, 'https://ror.org/00ay44a88', 'no_lang_code', 1, 'https://ror.org/00ay44a88 PLASMASCIENCE'),
(87345, 'https://ror.org/03647wj34', 'en', 1, 'https://ror.org/03647wj34 Instituto Nacional de EstadĆ­stica y GeografĆ­a National Institute of Statistics and Geography'),
(87346, 'https://ror.org/04xpsrn94', 'en', 1, 'https://ror.org/04xpsrn94 Institute of Molecular and Cell Biology åˆ†å­å’Œē”Ÿē‰©ē“°čƒžå­¦ē ”ē©¶é™¢'),
(87347, 'https://ror.org/00ygt2y02', 'en', 1, 'https://ror.org/00ygt2y02 Ernst Strüngmann Institut Ernst Strüngmann Institute for Neuroscience'),
(87348, 'https://ror.org/00vng3v16', 'no_lang_code', 1, 'https://ror.org/00vng3v16 EDF Renouvelables'),
(87349, 'https://ror.org/03g2cyv75', 'en', 1, 'https://ror.org/03g2cyv75 Centralkriminalpolisen Keskusrikospoliisi National Bureau of Investigation'),
(87350, 'https://ror.org/049v75w11', 'en', 1, 'https://ror.org/049v75w11 National Institute on Aging'),
(87351, 'https://ror.org/04wajgf26', 'en', 1, 'https://ror.org/04wajgf26 Korea Animal Medical Center ź³ ė ¤ė™ė¬¼ė©”ė””ģ»¬ģ„¼ķ„°'),
(87352, 'https://ror.org/03ypxwh20', 'en', 0, 'https://ror.org/03ypxwh20 Institiúid Teicneolaíochta Phort LÔirge Waterford Institute of Technology'),
(87353, 'https://ror.org/02q3cpg22', 'en', 1, 'https://ror.org/02q3cpg22 Pillar College Somerset Christian College'),
(87354, 'https://ror.org/01fjcgc06', 'pt', 1, 'https://ror.org/01fjcgc06 Instituto Nacional de Cardiologia'),
(87355, 'https://ror.org/05bq59x90', 'en', 1, 'https://ror.org/05bq59x90 University of Batangas Western Philippine College'),
(87356, 'https://ror.org/01g9ty582', 'no_lang_code', 1, 'https://ror.org/01g9ty582 Semmelweis Egyetem Semmelweis University'),
(87357, 'https://ror.org/057sq8156', 'en', 0, 'https://ror.org/057sq8156 International Institute of Tropical Agriculture'),
(87358, 'https://ror.org/00q0edr73', 'de', 1, 'https://ror.org/00q0edr73 Schƶpflin Foundation Schƶpflin Stiftung'),
(87359, 'https://ror.org/03qjp1d79', 'de', 1, 'https://ror.org/03qjp1d79 Helmholtz-Zentrum Hereon'),
(87360, 'https://ror.org/024qczd07', 'en', 1, 'https://ror.org/024qczd07 New York State Foundation for Science, Technology and Innovation'),
(87361, 'https://ror.org/05qjftn62', 'en', 1, 'https://ror.org/05qjftn62 Pacific Rim National Park Reserve RƩserve de parc national Pacific Rim'),
(87362, 'https://ror.org/014kkjk75', 'en', 1, 'https://ror.org/014kkjk75 Lviv Medical University Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(87363, 'https://ror.org/057qv9h29', 'de', 1, 'https://ror.org/057qv9h29 Staatliche Hochschule für Musik und Darstellende Kunst Stuttgart State University of Music and Performing Arts Stuttgart'),
(87364, 'https://ror.org/01cz3wf89', 'nl', 1, 'https://ror.org/01cz3wf89 AZ Groeninge'),
(87365, 'https://ror.org/009667168', 'en', 1, 'https://ror.org/009667168 NÔÔts''įhch''oh National Park Reserve Réserve de parc national NÔÔts''ihch''oh'),
(87366, 'https://ror.org/008599w49', 'en', 1, 'https://ror.org/008599w49 National Library and Archives Ų§Ł„Ų£Ų±Ų“ŁŠŁ ŁˆŲ§Ł„Ł…ŁƒŲŖŲØŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(87367, 'https://ror.org/03xfq7a50', 'fr', 1, 'https://ror.org/03xfq7a50 Centre Oscar Lambret'),
(87368, 'https://ror.org/01rr3tg72', 'en', 1, 'https://ror.org/01rr3tg72 Jiangsu Provincial Commission of Health and Family Planning'),
(87369, 'https://ror.org/05knsc956', 'en', 1, 'https://ror.org/05knsc956 Parc national de l''Ǝle-du-Prince-Ɖdouard Prince Edward Island National Park'),
(87370, 'https://ror.org/00gj19047', 'en', 1, 'https://ror.org/00gj19047 Ohio Department of Higher Education'),
(87371, 'https://ror.org/011398447', 'en', 1, 'https://ror.org/011398447 Musculoskeletal Transplant Foundation'),
(87372, 'https://ror.org/03xqffv86', 'en', 0, 'https://ror.org/03xqffv86 Royal Bournemouth and Christchurch Hospitals NHS Foundation Trust'),
(87373, 'https://ror.org/0105bk454', 'en', 1, 'https://ror.org/0105bk454 American Hotel & Lodging Association'),
(87374, 'https://ror.org/05cpv3t46', 'fr', 1, 'https://ror.org/05cpv3t46 HƓpital Claude Huriez'),
(87375, 'https://ror.org/02yc50c51', 'en', 1, 'https://ror.org/02yc50c51 Bulgarian Water Association Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š°ŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ по воГите'),
(87376, 'https://ror.org/023jwkg52', 'en', 1, 'https://ror.org/023jwkg52 Banner Alzheimer’s Institute'),
(87377, 'https://ror.org/0149e7294', 'en', 1, 'https://ror.org/0149e7294 University of Kikwit UniversitƩ de kikwit'),
(87378, 'https://ror.org/018zra666', 'en', 1, 'https://ror.org/018zra666 Health and Family Planning Commission of Hubei Province ę¹–åŒ—ēœå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(87379, 'https://ror.org/022rwzq94', 'en', 1, 'https://ror.org/022rwzq94 Climate Service Center'),
(87380, 'https://ror.org/05mrff007', 'en', 1, 'https://ror.org/05mrff007 Institut za javnu upravu Institute of Public Administration'),
(87381, 'https://ror.org/04bvg0c15', 'en', 1, 'https://ror.org/04bvg0c15 Parc national Yoho Yoho National Park'),
(87382, 'https://ror.org/03rzyb874', 'en', 1, 'https://ror.org/03rzyb874 Nahanni National Park Reserve RƩserve de parc national de Nahanni'),
(87383, 'https://ror.org/00kn2t107', 'en', 1, 'https://ror.org/00kn2t107 International National Trusts Organisation'),
(87384, 'https://ror.org/017qzdd52', 'es', 1, 'https://ror.org/017qzdd52 Hospital Maciel'),
(87385, 'https://ror.org/0436nnc79', 'en', 1, 'https://ror.org/0436nnc79 Parc national des Monts-Torngat Torngat Mountains National Park'),
(87386, 'https://ror.org/014ahdf17', 'en', 1, 'https://ror.org/014ahdf17 Georgian Bay Islands National Park Parc national des Ǝles-de-la-Baie-Georgienne'),
(87387, 'https://ror.org/00wdspp82', 'en', 1, 'https://ror.org/00wdspp82 Sidney Kimmel Foundation'),
(87388, 'https://ror.org/0560q5470', 'no_lang_code', 1, 'https://ror.org/0560q5470 Rosatom (Russia) Росатом'),
(87389, 'https://ror.org/038g41092', 'en', 1, 'https://ror.org/038g41092 Bruce Peninsula National Park Parc national de la PƩninsule-Bruce'),
(87390, 'https://ror.org/03v3py332', 'no_lang_code', 1, 'https://ror.org/03v3py332 IncellDx (United States)'),
(87391, 'https://ror.org/03mtk3r50', 'en', 1, 'https://ror.org/03mtk3r50 Cape Breton Highlands National Park Parc national des Hautes-Terres-du-Cap-Breton'),
(87392, 'https://ror.org/01rgky883', 'en', 1, 'https://ror.org/01rgky883 Gwaii Haanas National Park Reserve and Haida Heritage Site Réserve de parc national et site du patrimoine haïda Gwaii Haanas'),
(87393, 'https://ror.org/0540s3083', 'fr', 1, 'https://ror.org/0540s3083 Laboratoire sur les interactions cognition, action, Ʃmotion'),
(87394, 'https://ror.org/01tdv5x53', 'de', 1, 'https://ror.org/01tdv5x53 Internationale Innovative Ophthalmochirurgie'),
(87395, 'https://ror.org/05cjrrq55', 'en', 1, 'https://ror.org/05cjrrq55 Izumi Science and Technology Promotion Foundation ę³‰ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(87396, 'https://ror.org/01wn80b84', 'en', 1, 'https://ror.org/01wn80b84 Consortium For Ocean Leadership'),
(87397, 'https://ror.org/02de03b20', 'en', 1, 'https://ror.org/02de03b20 Auyuittuq National Park Parc national Auyuittuq'),
(87398, 'https://ror.org/019p70n30', 'en', 1, 'https://ror.org/019p70n30 Gros Morne National Park Parc national du Gros-Morne'),
(87399, 'https://ror.org/02qt1p572', 'fr', 1, 'https://ror.org/02qt1p572 HƓpital Edouard Herriot'),
(87400, 'https://ror.org/02sryfh37', 'it', 1, 'https://ror.org/02sryfh37 Fondazione di Sardegna'),
(87401, 'https://ror.org/009qfn612', 'en', 1, 'https://ror.org/009qfn612 Banner McKee Medical Center'),
(87402, 'https://ror.org/05p48mp61', 'de', 1, 'https://ror.org/05p48mp61 Sachverständigenrat für Umweltfragen'),
(87403, 'https://ror.org/02q34ka72', 'en', 0, 'https://ror.org/02q34ka72 International Institute of Tropical Agriculture'),
(87404, 'https://ror.org/02qvmee20', 'pt', 0, 'https://ror.org/02qvmee20 Faculdades Integradas do Vale do IvaĆ­'),
(87405, 'https://ror.org/006yspz11', 'fr', 1, 'https://ror.org/006yspz11 HÓpital Femme Mère Enfant'),
(87406, 'https://ror.org/02pa0cy79', 'en', 1, 'https://ror.org/02pa0cy79 University Hospitals Dorset NHS Foundation Trust'),
(87407, 'https://ror.org/026sv7t11', 'en', 1, 'https://ror.org/026sv7t11 Qingdao National Laboratory for Marine Science and Technology é’å²›ęµ·ę“‹ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶å®žéŖŒå®¤'),
(87408, 'https://ror.org/02a7z5917', 'de', 1, 'https://ror.org/02a7z5917 Bavarian Ministry for Family, Labour and Social Affairs Bayerisches Staatsministerium für Familie, Arbeit und Soziales'),
(87409, 'https://ror.org/028cw6449', 'en', 1, 'https://ror.org/028cw6449 Forillon National Park Parc national de Forillon'),
(87410, 'https://ror.org/0318hx909', 'en', 1, 'https://ror.org/0318hx909 Northern Ireland Chest Heart and Stroke'),
(87411, 'https://ror.org/0564rh245', 'no_lang_code', 0, 'https://ror.org/0564rh245 Medicines Company (United States)'),
(87412, 'https://ror.org/01h8zk368', 'en', 0, 'https://ror.org/01h8zk368 Hamilton Psychiatric Hospital'),
(87413, 'https://ror.org/03z1mhq06', 'no_lang_code', 1, 'https://ror.org/03z1mhq06 Atypon (United States)'),
(87414, 'https://ror.org/01phkkj35', 'en', 1, 'https://ror.org/01phkkj35 Banner Wyoming Medical Center'),
(87415, 'https://ror.org/00178eg98', 'en', 0, 'https://ror.org/00178eg98 Max Planck Institute for Ornithology Max-Planck-Institut für Ornithologie'),
(87416, 'https://ror.org/010qdt721', 'en', 1, 'https://ror.org/010qdt721 Zhejiang Provincial Health and Family Planning Commission'),
(87417, 'https://ror.org/01qrbys32', 'en', 1, 'https://ror.org/01qrbys32 California Water Science Center'),
(87418, 'https://ror.org/01ajv0n48', 'en', 1, 'https://ror.org/01ajv0n48 Cumbria Northumberland Tyne and Wear NHS Foundation Trust'),
(87419, 'https://ror.org/00y1v7386', 'no_lang_code', 1, 'https://ror.org/00y1v7386 University of Kolwezi UniversitƩ de kolwezi'),
(87420, 'https://ror.org/02ktgt837', 'en', 1, 'https://ror.org/02ktgt837 Parc national Tuktut Nogait Tuktut Nogait National Park'),
(87421, 'https://ror.org/030enq015', 'en', 1, 'https://ror.org/030enq015 Shanghai Science and Technology Development Foundation äøŠęµ·ē§‘ęŠ€å‘å±•åŸŗé‡‘ä¼š'),
(87422, 'https://ror.org/028svp844', 'fr', 1, 'https://ror.org/028svp844 UniversitƩ de Kisangani'),
(87423, 'https://ror.org/04vmbkv36', 'de', 1, 'https://ror.org/04vmbkv36 Lutheran Academy of Theology Oberursel Lutherische Theologische Hochschule Oberursel'),
(87424, 'https://ror.org/04saamx77', 'en', 1, 'https://ror.org/04saamx77 Reliant Medical Group'),
(87425, 'https://ror.org/01e8kn913', 'fr', 1, 'https://ror.org/01e8kn913 HƓpital Jeanne de Flandre'),
(87426, 'https://ror.org/02gegq725', 'en', 1, 'https://ror.org/02gegq725 TSC Alliance'),
(87427, 'https://ror.org/01jkhfm44', 'en', 1, 'https://ror.org/01jkhfm44 Parc national Quttinirpaaq Quttinirpaaq National Park'),
(87428, 'https://ror.org/039ymf386', 'en', 1, 'https://ror.org/039ymf386 Charles Koch Foundation'),
(87429, 'https://ror.org/01qrjns53', 'en', 1, 'https://ror.org/01qrjns53 Glacier National Park Parc national des Glaciers'),
(87430, 'https://ror.org/04vj48162', 'en', 1, 'https://ror.org/04vj48162 Moses Mendelssohn Center for European Jewish Studies Moses Mendelssohn Zentrum für Europäisch-Jüdische Studien'),
(87431, 'https://ror.org/03n1zj511', 'en', 0, 'https://ror.org/03n1zj511 Vienna Vaccine Safety Initiative'),
(87432, 'https://ror.org/025t4nz25', 'ro', 1, 'https://ror.org/025t4nz25 Universitatea de Stat ā€žBogdan Petriceicu Hasdeu" din Cahul Кагульский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени БогГана ŠŸŠµŃ‚Ń€ŠøŃ‡ŠµŠ¹ŠŗŃƒ ЄашГеу'),
(87433, 'https://ror.org/04cyg3w17', 'en', 1, 'https://ror.org/04cyg3w17 Finnish Heritage Agency Museiverket Museovirasto'),
(87434, 'https://ror.org/017aqg979', 'en', 1, 'https://ror.org/017aqg979 Hungarian Science and Technology Foundation'),
(87435, 'https://ror.org/04baakq55', 'en', 1, 'https://ror.org/04baakq55 Beijing Municipal Administration of Hospitals'),
(87436, 'https://ror.org/04j69fe92', 'en', 1, 'https://ror.org/04j69fe92 Boscombe Community Hospital'),
(87437, 'https://ror.org/05gsdj460', 'en', 1, 'https://ror.org/05gsdj460 Pudong New Area Health and Family Planning Commission ęµ¦äøœę–°åŒŗå«ē”Ÿå±€'),
(87438, 'https://ror.org/02stxms94', 'de', 1, 'https://ror.org/02stxms94 Zentrum für Konstruktive Erziehungswissenschaft'),
(87439, 'https://ror.org/0171m6n33', 'de', 1, 'https://ror.org/0171m6n33 Schifffahrtmedizinisches Institut der Marine'),
(87440, 'https://ror.org/02558xx03', 'id', 1, 'https://ror.org/02558xx03 Universitas Dhyana Pura'),
(87441, 'https://ror.org/02saske07', 'en', 1, 'https://ror.org/02saske07 Kootenay National Park Parc national Kootenay'),
(87442, 'https://ror.org/00js75b59', 'en', 1, 'https://ror.org/00js75b59 Max Planck Institute of Geoanthropology Max-Planck-Institut für Geoanthropologie'),
(87443, 'https://ror.org/031141b54', 'en', 1, 'https://ror.org/031141b54 Youth Innovation Promotion Association é™¢é’å¹“åˆ›ę–°äæƒčæ›ä¼š'),
(87444, 'https://ror.org/014kyp779', 'en', 0, 'https://ror.org/014kyp779 M. Kh Dulati Taraz State University М.Š„. Š”ŃƒŠ»Š°Ń‚Šø атынГағы Тараз мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(87445, 'https://ror.org/04674kj97', 'no_lang_code', 1, 'https://ror.org/04674kj97 BHP (Australia)'),
(87446, 'https://ror.org/03nhq5b06', 'en', 1, 'https://ror.org/03nhq5b06 Euphrosyne Polotskaya State University ŠŸŠ¾Š»Š°Ń†Šŗi Š“Š·ŃŃ€Š¶Š°Ć½Š½Ń‹ ýнiверсiтэт ŠŸŠ¾Š»Š¾Ń†ŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(87447, 'https://ror.org/059z28h12', 'fr', 1, 'https://ror.org/059z28h12 Centre de recherches et d’études sur les droits fondamentaux'),
(87448, 'https://ror.org/0028v3876', 'en', 1, 'https://ror.org/0028v3876 National Chung Cheng University åœ‹ē«‹äø­ę­£å¤§å­ø'),
(87449, 'https://ror.org/00arvcr78', 'en', 1, 'https://ror.org/00arvcr78 Association Canadienne du DiabĆØte Diabetes Canada'),
(87450, 'https://ror.org/00k0g5176', 'en', 1, 'https://ror.org/00k0g5176 Jasper National Park Parc national Jasper'),
(87451, 'https://ror.org/03ap2av50', 'en', 0, 'https://ror.org/03ap2av50 Max Planck Institute of Neurobiology Max-Planck-Institut für Neurobiologie'),
(87452, 'https://ror.org/024pbfj84', 'es', 1, 'https://ror.org/024pbfj84 LA Referencia'),
(87453, 'https://ror.org/04snr8v46', 'ms', 1, 'https://ror.org/04snr8v46 Majlis Amanah Rakyat'),
(87454, 'https://ror.org/00nx96f80', 'pl', 1, 'https://ror.org/00nx96f80 Instytut Historii Nauki im. Ludwika i Aleksandra Birkenmajerów Polskiej Akademii Nauk'),
(87455, 'https://ror.org/04v3jxv31', 'en', 1, 'https://ror.org/04v3jxv31 Government of New Zealand Te Kāwanatanga o Aotearoa'),
(87456, 'https://ror.org/04q6c7p66', 'en', 1, 'https://ror.org/04q6c7p66 China University of Geosciences (Beijing) äø­å›½åœ°č“Øå¤§å­¦ (åŒ—äŗ¬)'),
(87457, 'https://ror.org/01eexc772', 'en', 1, 'https://ror.org/01eexc772 Mingan Archipelago National Park Reserve RƩserve de parc national de l''Archipel-de-Mingan'),
(87458, 'https://ror.org/01q2qvt95', 'en', 0, 'https://ror.org/01q2qvt95 Institute of Hospitality Management in Prague VysokÔ Ŕkola HotelovÔ v Praze'),
(87459, 'https://ror.org/03pr08s76', 'es', 1, 'https://ror.org/03pr08s76 Consejo Nacional de Ciencia y TecnologĆ­a'),
(87460, 'https://ror.org/01vvn9w24', 'de', 1, 'https://ror.org/01vvn9w24 Kriminologische Zentralstelle'),
(87461, 'https://ror.org/02hkvsj16', 'en', 1, 'https://ror.org/02hkvsj16 Lupus Research Alliance'),
(87462, 'https://ror.org/002jjge32', 'en', 1, 'https://ror.org/002jjge32 Fundy National Park Parc national de Fundy'),
(87463, 'https://ror.org/02eee3289', 'en', 1, 'https://ror.org/02eee3289 Xuzhou Kuangshan Hospital å¾å·žåø‚ēŸæå±±åŒ»é™¢'),
(87464, 'https://ror.org/04kqgqa72', 'en', 1, 'https://ror.org/04kqgqa72 Mississippi Institutions of Higher Learning'),
(87465, 'https://ror.org/02cbftw37', 'en', 1, 'https://ror.org/02cbftw37 Private Institution ā€œKaraganda University of Kazpotrebsoyuzā€ ŅšŠ°Š·Ń‚Ņ±Ń‚Ń‹Š½ŃƒŠ¾Š“Š°Ņ“Ń‹ ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ°Š»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(87466, 'https://ror.org/02bezch69', 'fr', 1, 'https://ror.org/02bezch69 Histoire des arts et des reprƩsentations'),
(87467, 'https://ror.org/00gnrs088', 'en', 1, 'https://ror.org/00gnrs088 Banner North Colorado Medical Center'),
(87468, 'https://ror.org/03fkxys09', 'en', 0, 'https://ror.org/03fkxys09 Taraz State Pedagogical University ТАРАЗ ŠœŠ•ŠœŠ›Š•ŠšŠ•Š¢Š¢Š†Šš ŠŸŠ•Š”ŠŠ“ŠžŠ“Š˜ŠšŠŠ›Š«Ņš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š†'),
(87469, 'https://ror.org/009axtj18', 'en', 1, 'https://ror.org/009axtj18 Western Crop Genetics Alliance'),
(87470, 'https://ror.org/010na6b76', 'en', 1, 'https://ror.org/010na6b76 Auckland War Memorial Museum Tāmaki Paenga Hira'),
(87471, 'https://ror.org/00y951z15', 'fr', 1, 'https://ror.org/00y951z15 Institut SupƩrieur PƩdagogique de Bukavu'),
(87472, 'https://ror.org/01v14jr37', 'en', 1, 'https://ror.org/01v14jr37 Royal Bournemouth Hospital'),
(87473, 'https://ror.org/038vdm896', 'es', 1, 'https://ror.org/038vdm896 Universidad CLAEH'),
(87474, 'https://ror.org/02cddnn97', 'en', 1, 'https://ror.org/02cddnn97 Yorkshire Cancer Research'),
(87475, 'https://ror.org/02btw1564', 'en', 1, 'https://ror.org/02btw1564 China Railway Construction Investment Group Corporation äø­å›½é“å»ŗęŠ•čµ„é›†å›¢ęœ‰é™å…¬åø'),
(87476, 'https://ror.org/05a57r951', 'en', 1, 'https://ror.org/05a57r951 Parc national de la Pointe-PelƩe Point Pelee National Park'),
(87477, 'https://ror.org/00r2eaj81', 'de', 1, 'https://ror.org/00r2eaj81 Krankenhaus Mara'),
(87478, 'https://ror.org/00se3yr70', 'en', 0, 'https://ror.org/00se3yr70 Guangdong Association of STD and AIDS Prevention and Control å¹æäøœēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(87479, 'https://ror.org/0477eg838', 'fr', 1, 'https://ror.org/0477eg838 Laboratoire de thermique interfaces environnement'),
(87480, 'https://ror.org/032zxkx92', 'en', 1, 'https://ror.org/032zxkx92 Interactive Advertising Bureau (United States)'),
(87481, 'https://ror.org/03tcpz740', 'en', 1, 'https://ror.org/03tcpz740 Parc national de Pukaskwa Pukaskwa National Park'),
(87482, 'https://ror.org/049dch481', 'en', 1, 'https://ror.org/049dch481 Parc national Qausuittuq Qausuittuq National Park'),
(87483, 'https://ror.org/04k90qk38', 'en', 1, 'https://ror.org/04k90qk38 Science Media Center Taiwan å°ē£ē§‘ęŠ€åŖ’é«”äø­åæƒ'),
(87484, 'https://ror.org/011hgkj26', 'fr', 1, 'https://ror.org/011hgkj26 BibliothĆØque de GenĆØve'),
(87485, 'https://ror.org/024fb7528', 'de', 1, 'https://ror.org/024fb7528 Max-Reger-Institut'),
(87486, 'https://ror.org/05rvdw046', 'en', 1, 'https://ror.org/05rvdw046 Ministry of Energy ×ž×©×Ø×“ התשתיות ×”×œ××•×ž×™×•×Ŗ, האנרגיה והמים'),
(87487, 'https://ror.org/02sqgkj21', 'es', 1, 'https://ror.org/02sqgkj21 Universidad de La Sabana University of La Sabana'),
(87488, 'https://ror.org/03a7kkc32', 'en', 1, 'https://ror.org/03a7kkc32 Parc national des Lacs-Waterton Waterton Lakes National Park'),
(87489, 'https://ror.org/044gxcb75', 'es', 1, 'https://ror.org/044gxcb75 Hospital Central de las Fuerzas Armadas'),
(87490, 'https://ror.org/025f1e779', 'no_lang_code', 1, 'https://ror.org/025f1e779 Merz (Germany)'),
(87491, 'https://ror.org/05kb98h43', 'en', 1, 'https://ror.org/05kb98h43 EcoNexus'),
(87492, 'https://ror.org/0384rzm54', 'de', 1, 'https://ror.org/0384rzm54 Staatsinstitut für Familienforschung an der Universität Bamberg'),
(87493, 'https://ror.org/033b0v780', 'en', 1, 'https://ror.org/033b0v780 Wenner-Gren Foundations'),
(87494, 'https://ror.org/04cm4mp98', 'fr', 1, 'https://ror.org/04cm4mp98 Laboratoire interdisciplinaire en neurosciences, physiologie et psychologie'),
(87495, 'https://ror.org/056a3pe54', 'en', 1, 'https://ror.org/056a3pe54 La Mauricie National Park Parc national de la Mauricie'),
(87496, 'https://ror.org/0271njn83', 'en', 1, 'https://ror.org/0271njn83 Banff National Park Parc national Banff'),
(87497, 'https://ror.org/05eghha10', 'es', 1, 'https://ror.org/05eghha10 Los Molinos Observatory Observatorio Astronómico Los Molinos'),
(87498, 'https://ror.org/04vwbmb32', 'no_lang_code', 1, 'https://ror.org/04vwbmb32 Sumitomo Dainippon Pharma (United States)'),
(87499, 'https://ror.org/00epkwd79', 'en', 1, 'https://ror.org/00epkwd79 Parc national Wapusk Wapusk National Park'),
(87500, 'https://ror.org/03zp01h17', 'en', 1, 'https://ror.org/03zp01h17 Innovation, Science and Economic Development Canada Innovation, Sciences et DƩveloppement Ʃconomique Canada'),
(87501, 'https://ror.org/0278hns33', 'en', 1, 'https://ror.org/0278hns33 Institut für Diabetesforschung Institute of Diabetes Research'),
(87502, 'https://ror.org/04zfedn93', 'en', 1, 'https://ror.org/04zfedn93 RĆ©serve de parc national de l''Ǝle-de-Sable Sable Island National Park Reserve'),
(87503, 'https://ror.org/05e33tw76', 'en', 1, 'https://ror.org/05e33tw76 TOCA at Banner Health'),
(87504, 'https://ror.org/0425pg203', 'es', 1, 'https://ror.org/0425pg203 Gobierno de Aragón'),
(87505, 'https://ror.org/03drevg53', 'fr', 0, 'https://ror.org/03drevg53 HES-SO GenĆØve'),
(87506, 'https://ror.org/050z7zv36', 'en', 1, 'https://ror.org/050z7zv36 Universal College of Medical Sciences'),
(87507, 'https://ror.org/04rf18d16', 'en', 1, 'https://ror.org/04rf18d16 Parc national des Mille-Ǝles Thousand Islands National Park'),
(87508, 'https://ror.org/0165ax130', 'fr', 1, 'https://ror.org/0165ax130 HƓpital Roger Salengro'),
(87509, 'https://ror.org/053940494', 'en', 1, 'https://ror.org/053940494 Parc national du Mont-Riding Riding Mountain National Park'),
(87510, 'https://ror.org/03xy3ra43', 'en', 1, 'https://ror.org/03xy3ra43 Parc national de Prince Albert Prince Albert National Park'),
(87511, 'https://ror.org/00ph04139', 'en', 1, 'https://ror.org/00ph04139 Poole Hospital'),
(87512, 'https://ror.org/05w520734', 'en', 1, 'https://ror.org/05w520734 Allen Institute for Artificial Intelligence'),
(87513, 'https://ror.org/04pgfae68', 'no_lang_code', 1, 'https://ror.org/04pgfae68 BuroHappold (United Kingdom)'),
(87514, 'https://ror.org/03g267s60', 'en', 1, 'https://ror.org/03g267s60 Max Planck Institute for Biological Intelligence Max-Planck-Institut für biologische Intelligenz'),
(87515, 'https://ror.org/02xbk5j62', 'en', 1, 'https://ror.org/02xbk5j62 Banner - University Medical Center Tucson Centro mƩdico de la Universidad de Arizona'),
(87516, 'https://ror.org/02m7mps36', 'de', 1, 'https://ror.org/02m7mps36 Orff-Zentrum München'),
(87517, 'https://ror.org/03fc7m932', 'en', 1, 'https://ror.org/03fc7m932 Science Media Center Germany'),
(87518, 'https://ror.org/00nvgrx75', 'en', 1, 'https://ror.org/00nvgrx75 RƩserve de parc national Thaidene Nene Thaidene NƫnƩ National Park Reserve'),
(87519, 'https://ror.org/04mvgap27', 'en', 1, 'https://ror.org/04mvgap27 Banner Children''s at Desert'),
(87520, 'https://ror.org/0512bh102', 'en', 1, 'https://ror.org/0512bh102 Ministry of Higher Education وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł…ŲµŲ±'),
(87521, 'https://ror.org/05f6mer85', 'en', 1, 'https://ror.org/05f6mer85 Innovation Academy for Microsatellites of Chinese Academy of Sciences äø­å›½ē§‘å­¦é™¢å¾®å°å«ę˜Ÿåˆ›ę–°ē ”ē©¶é™¢å¤‡ę”ˆ'),
(87522, 'https://ror.org/02xe89706', 'no_lang_code', 1, 'https://ror.org/02xe89706 John Wiley & Sons (United States)'),
(87523, 'https://ror.org/04xz59c49', 'en', 1, 'https://ror.org/04xz59c49 Parc national Wood Buffalo Wood Buffalo National Park'),
(87524, 'https://ror.org/01jcjpa26', 'en', 1, 'https://ror.org/01jcjpa26 Reinwardt Academie Reinwardt Academy'),
(87525, 'https://ror.org/052v3nb82', 'en', 1, 'https://ror.org/052v3nb82 Australian Alzheimer’s Research Foundation'),
(87526, 'https://ror.org/0075rng13', 'fr', 1, 'https://ror.org/0075rng13 Institut d’HĆ©matologie et d’Oncologie PĆ©diatrique'),
(87527, 'https://ror.org/02v69n451', 'en', 1, 'https://ror.org/02v69n451 Gulf Islands National Park Reserve RĆ©serve de parc national des Ǝles-Gulf'),
(87528, 'https://ror.org/00tprt448', 'en', 1, 'https://ror.org/00tprt448 Mount Revelstoke National Park Parc national du Mont-Revelstoke'),
(87529, 'https://ror.org/007scx377', 'en', 1, 'https://ror.org/007scx377 Kouchibouguac National Park Parc national de Kouchibouguac'),
(87530, 'https://ror.org/03037cz33', 'en', 1, 'https://ror.org/03037cz33 SRH Berlin School of Design and Communication'),
(87531, 'https://ror.org/006evg656', 'fr', 1, 'https://ror.org/006evg656 HƓpital de la Croix-Rousse'),
(87532, 'https://ror.org/002skex07', 'en', 1, 'https://ror.org/002skex07 Mohamed Bin Zayed Species Conservation Fund'),
(87533, 'https://ror.org/03h7x1x60', 'en', 1, 'https://ror.org/03h7x1x60 Grasslands National Park Parc national des Prairies'),
(87534, 'https://ror.org/03gtnmh30', 'en', 1, 'https://ror.org/03gtnmh30 Elk Island National Park Parc national Elk Island'),
(87535, 'https://ror.org/00pw05h04', 'en', 1, 'https://ror.org/00pw05h04 Parc national Terra-Nova Terra Nova National Park'),
(87536, 'https://ror.org/02td1nn43', 'en', 1, 'https://ror.org/02td1nn43 Parc national Ukkusiksalik Ukkusiksalik National Park'),
(87537, 'https://ror.org/05aza0t21', 'en', 1, 'https://ror.org/05aza0t21 Akami-Uapishkᵘ-KakKasuak-Mealy Mountains National Park Reserve RĆ©serve de parc national Akami-Uapishkįµ˜ā€“KakKasuak–Monts-Meal'),
(87538, 'https://ror.org/05b2tmp48', 'de', 1, 'https://ror.org/05b2tmp48 StƤdelschule'),
(87539, 'https://ror.org/02ntpet30', 'es', 1, 'https://ror.org/02ntpet30 Hospital Italiano de Montevideo Italian Hospital of Montevideo Ospedale italiano Umberto I'),
(87540, 'https://ror.org/02m8tt458', 'fr', 1, 'https://ror.org/02m8tt458 Laboratoire de GƩographie Urbaine'),
(87541, 'https://ror.org/05cavnv92', 'es', 1, 'https://ror.org/05cavnv92 Academia Mexicana de Investigación y Docencia en Innovación'),
(87542, 'https://ror.org/002eh7j54', 'en', 1, 'https://ror.org/002eh7j54 Aulavik National Park Parc national Aulavik'),
(87543, 'https://ror.org/038cy8j79', 'no_lang_code', 1, 'https://ror.org/038cy8j79 Imam Abdulrahman Bin Faisal University Ų¬Ų§Ł…Ų¹Ų© ال؄مام عبدالرحمن بن ŁŁŠŲµŁ„'),
(87544, 'https://ror.org/03428qp74', 'no_lang_code', 1, 'https://ror.org/03428qp74 UCB Pharma (United Kingdom)'),
(87545, 'https://ror.org/01dpbzg35', 'en', 1, 'https://ror.org/01dpbzg35 Kejimkujik National Park Parc national de Kejimkujik'),
(87546, 'https://ror.org/002cx2f43', 'en', 1, 'https://ror.org/002cx2f43 IVC Evidensia'),
(87547, 'https://ror.org/05667zq45', 'en', 1, 'https://ror.org/05667zq45 Parc national Sirmilik Sirmilik National Park'),
(87548, 'https://ror.org/05s5h0e62', 'en', 1, 'https://ror.org/05s5h0e62 Gƶran Gustafsson Foundation'),
(87549, 'https://ror.org/006knb923', 'en', 1, 'https://ror.org/006knb923 Khushal Khan Khattak University Karak ŲÆ Ų®ŁˆŲ“Ų­Ų§Ł„ خان خټک Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† کرک'),
(87550, 'https://ror.org/04xsjvn35', 'de', 1, 'https://ror.org/04xsjvn35 Quadriga Hochschule Berlin'),
(87551, 'https://ror.org/0114gzh18', 'en', 1, 'https://ror.org/0114gzh18 NBS Northern Business School'),
(87552, 'https://ror.org/03kdm3q80', 'en', 0, 'https://ror.org/03kdm3q80 Poole Hospital NHS Foundation Trust'),
(87553, 'https://ror.org/0407tnq23', 'en', 1, 'https://ror.org/0407tnq23 John Simon Guggenheim Memorial Foundation'),
(87554, 'https://ror.org/05jgjfc59', 'en', 0, 'https://ror.org/05jgjfc59 University of International and Public Relations Prague VysokĆ” Å”kola mezinĆ”rodnĆ­ch a veřejných vztahÅÆ Praha'),
(87555, 'https://ror.org/0227txs74', 'en', 1, 'https://ror.org/0227txs74 Ivvavik National Park Parc national Ivvavik'),
(87556, 'https://ror.org/00t30yz20', 'en', 1, 'https://ror.org/00t30yz20 Jiangxi Provincial Department of Science and Technology'),
(87557, 'https://ror.org/04sxme922', 'es', 1, 'https://ror.org/04sxme922 Torcuato Di Tella University Universidad Torcuato Di Tella'),
(87558, 'https://ror.org/00hg3n482', 'en', 1, 'https://ror.org/00hg3n482 Parc national Vuntut Vuntut National Park'),
(87559, 'https://ror.org/02h21fh05', 'es', 1, 'https://ror.org/02h21fh05 Cooperación Latino Americana de Redes Avanzadas RedCLARA'),
(87560, 'https://ror.org/03aym6q96', 'de', 1, 'https://ror.org/03aym6q96 Nordrhein-Westfälische Akademie der Wissenschaften und der Künste'),
(87561, 'https://ror.org/04zrf7b53', 'en', 0, 'https://ror.org/04zrf7b53 Technische UniversitƤt Kaiserslautern University of Kaiserslautern'),
(87562, 'https://ror.org/000z46s85', 'en', 1, 'https://ror.org/000z46s85 HĆ“pital Cardiologique Lille’s Cardiology Hospital'),
(87563, 'https://ror.org/02mh1ke95', 'en', 1, 'https://ror.org/02mh1ke95 Russian Foundation for Basic Research Российский фонГ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Ń… исслеГований'),
(87564, 'https://ror.org/029n6xw55', 'en', 1, 'https://ror.org/029n6xw55 Cancer Care Ontario'),
(87565, 'https://ror.org/008sy4716', 'en', 1, 'https://ror.org/008sy4716 Parcs Canada Parks Canada'),
(87566, 'https://ror.org/01r277z15', 'en', 1, 'https://ror.org/01r277z15 Ilam University'),
(87567, 'https://ror.org/045kz4b81', 'en', 0, 'https://ror.org/045kz4b81 International Center for Tropical Agriculture'),
(87568, 'https://ror.org/01cjjjf51', 'en', 1, 'https://ror.org/01cjjjf51 Banner - University Medical Center Phoenix'),
(87569, 'https://ror.org/05rpdjf12', 'en', 1, 'https://ror.org/05rpdjf12 Kluane National Park and Reserve Parc national et rƩserve de parc national Kluane'),
(87570, 'https://ror.org/04qfm3385', 'en', 0, 'https://ror.org/04qfm3385 University Press of Mississippi');
INSERT INTO `rors` VALUES
(87571, 'https://ror.org/01sh1xg03', 'fr', 1, 'https://ror.org/01sh1xg03 HƓpital RenƩe Sabran'),
(87572, 'https://ror.org/0577avk88', 'es', 1, 'https://ror.org/0577avk88 Central University of Chile Universidad Central de Chile'),
(87573, 'https://ror.org/01mv1ez88', 'en', 1, 'https://ror.org/01mv1ez88 Health and Family Planning Commission of Hunan Province ę¹–å—å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(87574, 'https://ror.org/01m0j3711', 'no_lang_code', 1, 'https://ror.org/01m0j3711 Mishima Kaiun Memorial Foundation äø‰å³¶ęµ·é›²čØ˜åæµč²”å›£ćƒ›'),
(87575, 'https://ror.org/05183v471', 'en', 0, 'https://ror.org/05183v471 ACT'),
(87576, 'https://ror.org/02hx3mp62', 'tr', 1, 'https://ror.org/02hx3mp62 Anka Teknoloji Üniversitesi'),
(87577, 'https://ror.org/023f5cj14', 'en', 1, 'https://ror.org/023f5cj14 Finnish Advanced Microscopy Node'),
(87578, 'https://ror.org/01202fx60', 'en', 1, 'https://ror.org/01202fx60 National Centre for Photovoltaic Research and Education'),
(87579, 'https://ror.org/0337ppb66', 'de', 1, 'https://ror.org/0337ppb66 Technologie-Institut für Metall und Engineering (TIME)'),
(87580, 'https://ror.org/021ydgj53', 'de', 1, 'https://ror.org/021ydgj53 Zentrum für Sportmedizin der Bundeswehr'),
(87581, 'https://ror.org/01gn73t32', 'tr', 1, 'https://ror.org/01gn73t32 ASBU Kuzey Kibris Yerleşkesi̇'),
(87582, 'https://ror.org/037a8w620', 'en', 1, 'https://ror.org/037a8w620 MRC Metabolic Diseases Unit'),
(87583, 'https://ror.org/04d8na614', 'tr', 1, 'https://ror.org/04d8na614 Presidency of the Republic of Türkiye, Defense Industry Agency Türkiye Cumhuriyeti Cumhurbaşkanlığı Savunma Sanayii Başkanlığı'),
(87584, 'https://ror.org/0031khd05', 'en', 1, 'https://ror.org/0031khd05 Ministry of Science and Technology ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(87585, 'https://ror.org/05c11k793', 'en', 1, 'https://ror.org/05c11k793 Bucerius Law School'),
(87586, 'https://ror.org/02q8sqx88', 'de', 1, 'https://ror.org/02q8sqx88 Deutsche Verkehrswissenschaftliche Gesellschaft'),
(87587, 'https://ror.org/03q36qm19', 'pt', 1, 'https://ror.org/03q36qm19 Center for Environmental and Marine Studies Centro de Estudos Ambientais e Marinhos'),
(87588, 'https://ror.org/03sc6wx59', 'en', 1, 'https://ror.org/03sc6wx59 Ventspils University of Applied Sciences'),
(87589, 'https://ror.org/04fbf9935', 'it', 1, 'https://ror.org/04fbf9935 Piedmont Region Regione Piemonte'),
(87590, 'https://ror.org/04waqzz56', 'en', 1, 'https://ror.org/04waqzz56 Isfahan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی اصفهان'),
(87591, 'https://ror.org/0061vr059', 'de', 1, 'https://ror.org/0061vr059 Zentrum für Militärgeschichte und Sozialwissenschaften der Bundeswehr'),
(87592, 'https://ror.org/01q0bmy69', 'en', 1, 'https://ror.org/01q0bmy69 Directory of Open Access Books'),
(87593, 'https://ror.org/028gnmj13', 'fr', 1, 'https://ror.org/028gnmj13 LittƩrature et poƩtique comparƩes'),
(87594, 'https://ror.org/00kdgfn49', 'tr', 1, 'https://ror.org/00kdgfn49 Bahçeşehir Cyprus University'),
(87595, 'https://ror.org/027b1sp84', 'en', 1, 'https://ror.org/027b1sp84 TEPCO Memorial Foundation ę±é›»čØ˜åæµē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(87596, 'https://ror.org/04wv8j283', 'sv', 1, 'https://ror.org/04wv8j283 Fru Berta Kamprads stiftelse Mrs. Berta Kamprad''s Cancer Foundation'),
(87597, 'https://ror.org/01zx3qf22', 'en', 1, 'https://ror.org/01zx3qf22 Ministry of Treasury and Finance T.C. Hazine ve Maliye Bakanlığı'),
(87598, 'https://ror.org/04patj340', 'fr', 1, 'https://ror.org/04patj340 Laboratoire Ethologie Cognition DƩveloppement'),
(87599, 'https://ror.org/02vkzd588', 'es', 1, 'https://ror.org/02vkzd588 Instituto Nacional del CƔncer National Cancer Institute'),
(87600, 'https://ror.org/0204z0d18', 'no_lang_code', 1, 'https://ror.org/0204z0d18 Alrafidain University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų±Ų§ŁŲÆŁŠŁ† الجامعة'),
(87601, 'https://ror.org/05nc65f65', 'no_lang_code', 1, 'https://ror.org/05nc65f65 Team HF'),
(87602, 'https://ror.org/04axc5d15', 'tr', 1, 'https://ror.org/04axc5d15 Presidency for Turks Abroad and Related Communities Yurtdışı Türkler ve Akraba Topluluklar Başkanlığı'),
(87603, 'https://ror.org/00k5j5c86', 'en', 1, 'https://ror.org/00k5j5c86 Tokyo Medical University ę±äŗ¬åŒ»ē§‘å¤§å­¦'),
(87604, 'https://ror.org/041vwqc20', 'tr', 1, 'https://ror.org/041vwqc20 Ankara Bilim Üniversitesi Ankara Science University'),
(87605, 'https://ror.org/0412j5e72', 'en', 1, 'https://ror.org/0412j5e72 Pazy Foundation'),
(87606, 'https://ror.org/02w030k33', 'en', 1, 'https://ror.org/02w030k33 Ministry of Education وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ…'),
(87607, 'https://ror.org/00zn2c847', 'en', 1, 'https://ror.org/00zn2c847 Great Ormond Street Hospital'),
(87608, 'https://ror.org/00mv2dn46', 'no_lang_code', 1, 'https://ror.org/00mv2dn46 China Railway 18th Bureau Group Corporation äø­é“åå…«å±€é›†å›¢ęœ‰é™å…¬åø'),
(87609, 'https://ror.org/059qx7e64', 'tr', 1, 'https://ror.org/059qx7e64 Kıbrıs Ada Kent Üniversitesi'),
(87610, 'https://ror.org/03xkyqb18', 'en', 1, 'https://ror.org/03xkyqb18 Sherman Fairchild Foundation'),
(87611, 'https://ror.org/007tjaq50', 'en', 1, 'https://ror.org/007tjaq50 Council for Science, Technology and Innovation ē·åˆē§‘å­¦ęŠ€č”“ćƒ»ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ä¼šč­°'),
(87612, 'https://ror.org/04dk1ra67', 'es', 1, 'https://ror.org/04dk1ra67 Secretariat of Energy SecretarĆ­a de EnergĆ­a'),
(87613, 'https://ror.org/011fq2d43', 'es', 1, 'https://ror.org/011fq2d43 Consejo Nacional para Investigaciones Científicas y Tecnológicas National Scientific and Technical Research Council'),
(87614, 'https://ror.org/00twhfc16', 'de', 1, 'https://ror.org/00twhfc16 Besucherzentrum Welterbe Grube Messel'),
(87615, 'https://ror.org/05khk0h97', 'tr', 1, 'https://ror.org/05khk0h97 Mudanya University Mudanya Üniversitesi'),
(87616, 'https://ror.org/02hwvk356', 'no_lang_code', 1, 'https://ror.org/02hwvk356 Centro de Desarrollo Tecnológico del Cesar'),
(87617, 'https://ror.org/02bwxev54', 'de', 1, 'https://ror.org/02bwxev54 Theologische Hochschule Elstal'),
(87618, 'https://ror.org/057sema44', 'no_lang_code', 1, 'https://ror.org/057sema44 Elea'),
(87619, 'https://ror.org/016p3a611', 'de', 1, 'https://ror.org/016p3a611 VWA Hochschule'),
(87620, 'https://ror.org/04ngyrz44', 'en', 1, 'https://ror.org/04ngyrz44 JCT College Of Engineering And Technology ą®œąÆ‡. சி. டி. ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(87621, 'https://ror.org/03xwwgw91', 'de', 1, 'https://ror.org/03xwwgw91 Theologische Hochschule Reutlingen'),
(87622, 'https://ror.org/02dcqxm65', 'de', 1, 'https://ror.org/02dcqxm65 University Library Johann Christian Senckenberg UniversitƤtsbibliothek Johann Christian Senckenberg'),
(87623, 'https://ror.org/01sgzrz83', 'no_lang_code', 1, 'https://ror.org/01sgzrz83 TEPCO (Japan) ę±äŗ¬é›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(87624, 'https://ror.org/00mv0bm80', 'en', 1, 'https://ror.org/00mv0bm80 OAPEN Foundation'),
(87625, 'https://ror.org/01c9agy38', 'en', 1, 'https://ror.org/01c9agy38 Environmental Restoration and Conservation Agency ē‹¬ē«‹č”Œę”æę³•äŗŗē’°å¢ƒå†ē”Ÿäæå…Øę©Ÿę§‹'),
(87626, 'https://ror.org/03a1hhg18', 'en', 1, 'https://ror.org/03a1hhg18 Government of Kenya'),
(87627, 'https://ror.org/058hv4b88', 'en', 1, 'https://ror.org/058hv4b88 Federation of European Microbiological Societies'),
(87628, 'https://ror.org/04gt6fy94', 'de', 1, 'https://ror.org/04gt6fy94 Wissenschaftspressekonferenz'),
(87629, 'https://ror.org/02mrd0686', 'en', 1, 'https://ror.org/02mrd0686 Swiss Nanoscience Institute'),
(87630, 'https://ror.org/05m8t8e28', 'cs', 1, 'https://ror.org/05m8t8e28 Agentura Pro Zdravotnický Výzkum České Republiky'),
(87631, 'https://ror.org/026sbm463', 'en', 1, 'https://ror.org/026sbm463 Bundesamt für Ausrüstung, Informationstechnik und Nutzung der Bundeswehr Federal Office of Bundeswehr Equipment, Information Technology and In-Service Support'),
(87632, 'https://ror.org/05tr94j30', 'en', 1, 'https://ror.org/05tr94j30 Kunming Municipal Hospital of Traditional Chinese Medicine'),
(87633, 'https://ror.org/04mynmy44', 'en', 1, 'https://ror.org/04mynmy44 Alzahra Medical and Education Center'),
(87634, 'https://ror.org/052detg56', 'en', 1, 'https://ror.org/052detg56 Ministry of New and Renewable Energy'),
(87635, 'https://ror.org/05cv8rb65', 'tr', 1, 'https://ror.org/05cv8rb65 Cyprus Health and Social Sciences University Kıbrıs Sağlık ve Toplum Bilimleri Üniversitesi'),
(87636, 'https://ror.org/00kqmhn40', 'de', 1, 'https://ror.org/00kqmhn40 Verband der deutschen Lack- und Druckfarbenindustrie'),
(87637, 'https://ror.org/058erz278', 'en', 1, 'https://ror.org/058erz278 Savanna Institute'),
(87638, 'https://ror.org/03jttth63', 'en', 0, 'https://ror.org/03jttth63 Let People Know'),
(87639, 'https://ror.org/00kd6pz94', 'fr', 1, 'https://ror.org/00kd6pz94 Conseil rƩgional d''Auvergne-RhƓne-Alpe Regional Council of Auvergne-RhƓne-Alpes'),
(87640, 'https://ror.org/04w1khd64', 'en', 1, 'https://ror.org/04w1khd64 Archaeology Data Service'),
(87641, 'https://ror.org/05atsxx57', 'tr', 1, 'https://ror.org/05atsxx57 Arkin University of Creative Arts and Design Arkın Yaratıcı Sanatlar ve Tasarım Üniversitesi'),
(87642, 'https://ror.org/0169che65', 'de', 1, 'https://ror.org/0169che65 Andrologicum München'),
(87643, 'https://ror.org/00qay8a95', 'en', 1, 'https://ror.org/00qay8a95 Bundeswehr Joint Medical Service SanitƤtsdienst der Bundeswehr'),
(87644, 'https://ror.org/05pb5be67', 'no_lang_code', 1, 'https://ror.org/05pb5be67 Tunnell Consulting'),
(87645, 'https://ror.org/04vnq7t77', 'en', 1, 'https://ror.org/04vnq7t77 University of Stuttgart UniversitƤt Stuttgart'),
(87646, 'https://ror.org/05361e638', 'no_lang_code', 1, 'https://ror.org/05361e638 Aggreko (United Kingdom)'),
(87647, 'https://ror.org/01wept116', 'de', 1, 'https://ror.org/01wept116 Bundeswehr Hospital Bundeswehrkrankenhaus'),
(87648, 'https://ror.org/01hyb4h74', 'en', 1, 'https://ror.org/01hyb4h74 National Institute of Forestry Science 국립산림과학원'),
(87649, 'https://ror.org/02r21n227', 'en', 1, 'https://ror.org/02r21n227 Rauf Denktas University Rauf Denktas Üniversitesi'),
(87650, 'https://ror.org/011p7eg09', 'sv', 1, 'https://ror.org/011p7eg09 Tore Nilsons Stiftelse fƶr Medicinsk Forskning'),
(87651, 'https://ror.org/04rq4jq39', 'en', 1, 'https://ror.org/04rq4jq39 Can Tho University of Medicine and Pharmacy TrĘ°į»ng ĐẔi hį»c Y dược Cįŗ§n ThĘ”'),
(87652, 'https://ror.org/00mc3wk65', 'id', 1, 'https://ror.org/00mc3wk65 Sekola Tinggi Agama Islam Islamic Centre Demak'),
(87653, 'https://ror.org/0344t9m71', 'de', 1, 'https://ror.org/0344t9m71 Foundation for Data Protection Stiftung Datenschutz'),
(87654, 'https://ror.org/01bzw6057', 'pt', 1, 'https://ror.org/01bzw6057 Escola de SaĆŗde PĆŗblica do CearĆ”'),
(87655, 'https://ror.org/0248pa505', 'en', 1, 'https://ror.org/0248pa505 AMAQUEN Foundation'),
(87656, 'https://ror.org/05r4t3s90', 'de', 1, 'https://ror.org/05r4t3s90 Canton d''Argovie Canton of Argau Kanton Aargau'),
(87657, 'https://ror.org/02tzcfr91', 'en', 1, 'https://ror.org/02tzcfr91 Theoretical Physics and Mathematics Advancement Foundation ā€œBASISā€ ФонГ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ теоретической физики Šø математики Ā«Š‘ŠŠ—Š˜Š”Ā»'),
(87658, 'https://ror.org/04ppn8q70', 'de', 1, 'https://ror.org/04ppn8q70 Verband der UniversitƤtsklinika Deutschlands'),
(87659, 'https://ror.org/02gfar685', 'de', 1, 'https://ror.org/02gfar685 Wehrwissenschaftliche Institut für Schutztechnologien'),
(87660, 'https://ror.org/01q6mhb56', 'tr', 1, 'https://ror.org/01q6mhb56 Bilim Akademisi'),
(87661, 'https://ror.org/00gjhgh30', 'de', 1, 'https://ror.org/00gjhgh30 Verband Forschender Arzneimittelhersteller'),
(87662, 'https://ror.org/03cq89j92', 'fr', 1, 'https://ror.org/03cq89j92 Normandy Region RƩgion Normandie'),
(87663, 'https://ror.org/05131dq54', 'de', 1, 'https://ror.org/05131dq54 Theologische Hochschule Ewersbach'),
(87664, 'https://ror.org/03mgecs35', 'en', 1, 'https://ror.org/03mgecs35 Koninklijk Museum voor Schone Kunsten Antwerpen MusƩe Royal des Beaux-Arts Anvers Royal Museum of Fine Arts Antwerp'),
(87665, 'https://ror.org/01jz1cr68', 'tr', 1, 'https://ror.org/01jz1cr68 Cyprus Science University Kıbrıs İlim Üniversitesi'),
(87666, 'https://ror.org/03qdjzt60', 'en', 1, 'https://ror.org/03qdjzt60 Islamic Azad University, Sepidan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų³Ł¾ŪŒŲÆŲ§Ł†'),
(87667, 'https://ror.org/05pcmvg29', 'de', 1, 'https://ror.org/05pcmvg29 Federation of German Scientists Verantwortung in der Wissenschaft'),
(87668, 'https://ror.org/012e6rh19', 'en', 1, 'https://ror.org/012e6rh19 Tokyo Medical University Hospital ę±äŗ¬åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(87669, 'https://ror.org/01zsm1k25', 'fr', 1, 'https://ror.org/01zsm1k25 Conseil rƩgional des Pays de la Loire Regional Council of Pays de la Loire'),
(87670, 'https://ror.org/03hh69c20', 'en', 1, 'https://ror.org/03hh69c20 Alborz University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی البرز'),
(87671, 'https://ror.org/02pdq4q20', 'en', 1, 'https://ror.org/02pdq4q20 Deep Ocean Observing Strategy'),
(87672, 'https://ror.org/02xcybn77', 'en', 1, 'https://ror.org/02xcybn77 Hitachi Global Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ē«‹č²”å›£'),
(87673, 'https://ror.org/013appg07', 'en', 1, 'https://ror.org/013appg07 United States Research Software Engineer Association'),
(87674, 'https://ror.org/04bkfz588', 'de', 1, 'https://ror.org/04bkfz588 Stiftung des ƶffentlichen Rechts an der Martin-Luther-UniversitƤt Halle-Wittenberg'),
(87675, 'https://ror.org/01bh2qr63', 'en', 1, 'https://ror.org/01bh2qr63 Israel Atomic Energy Commission הוועדה ×œ×× ×Ø×’×™×” ××˜×•×ž×™×Ŗ'),
(87676, 'https://ror.org/002ye0093', 'es', 1, 'https://ror.org/002ye0093 ELLIS Alicante'),
(87677, 'https://ror.org/05t3dfy66', 'da', 1, 'https://ror.org/05t3dfy66 Hartmann Fonden'),
(87678, 'https://ror.org/02qc43v06', 'en', 1, 'https://ror.org/02qc43v06 Directorate-General for Migration and Home Affairs'),
(87679, 'https://ror.org/030hp3092', 'de', 1, 'https://ror.org/030hp3092 Fritz Bauer Institut'),
(87680, 'https://ror.org/03rkhb780', 'no_lang_code', 1, 'https://ror.org/03rkhb780 Bernhardt Laboratories'),
(87681, 'https://ror.org/03zj57g67', 'en', 1, 'https://ror.org/03zj57g67 Petroleum Technology Development Fund'),
(87682, 'https://ror.org/009cc1d57', 'id', 1, 'https://ror.org/009cc1d57 UIN Sunan Ampel Surabaya Universitas Islam Negeri Sunan Ampel Surabaya'),
(87683, 'https://ror.org/05pyeem08', 'id', 1, 'https://ror.org/05pyeem08 Garut Institute of Technology Institut Teknologi Garut'),
(87684, 'https://ror.org/04y9zrf69', 'en', 1, 'https://ror.org/04y9zrf69 Bundeswehr Medical Service Academy SanitƤtsakademie der Bundeswehr'),
(87685, 'https://ror.org/023k8z302', 'fr', 1, 'https://ror.org/023k8z302 Fondation du CollĆØge de France'),
(87686, 'https://ror.org/00xaej097', 'de', 1, 'https://ror.org/00xaej097 Stammzellnetzwerk.NRW Stem Cell Network North Rhine-Westphalia'),
(87687, 'https://ror.org/008hssd09', 'it', 1, 'https://ror.org/008hssd09 Lazio Region Regione Lazio'),
(87688, 'https://ror.org/03tcq6k11', 'de', 1, 'https://ror.org/03tcq6k11 Führungsakademie der Bundeswehr'),
(87689, 'https://ror.org/05ese7s54', 'de', 1, 'https://ror.org/05ese7s54 Wasserstraßen- und Schifffahrtsamt Ostsee'),
(87690, 'https://ror.org/00va88c89', 'en', 1, 'https://ror.org/00va88c89 International Institute of Tropical Agriculture'),
(87691, 'https://ror.org/01vpwxn19', 'en', 1, 'https://ror.org/01vpwxn19 Eastern Savings Bank'),
(87692, 'https://ror.org/040ed7622', 'en', 1, 'https://ror.org/040ed7622 Cancer Council Northern Territory'),
(87693, 'https://ror.org/02pg36486', 'en', 1, 'https://ror.org/02pg36486 Korean Institute of Architects ķ•œźµ­ 걓축가 ķ˜‘ķšŒ'),
(87694, 'https://ror.org/00t2xrj54', 'de', 1, 'https://ror.org/00t2xrj54 Wasserstraßen- und Schifffahrtsamt Oder-Havel'),
(87695, 'https://ror.org/03rzy3090', 'en', 1, 'https://ror.org/03rzy3090 American Chemistry Council'),
(87696, 'https://ror.org/01z72wf68', 'de', 1, 'https://ror.org/01z72wf68 Wasserstraßen-Neubauamt Nord-Ostsee-Kanal'),
(87697, 'https://ror.org/01hj4y249', 'en', 1, 'https://ror.org/01hj4y249 Via Christi Regional Medical Center'),
(87698, 'https://ror.org/04egvf158', 'en', 1, 'https://ror.org/04egvf158 American Philosophical Society'),
(87699, 'https://ror.org/04d4vcg59', 'en', 1, 'https://ror.org/04d4vcg59 International Maize and Wheat Improvement Center'),
(87700, 'https://ror.org/04h1wg685', 'de', 1, 'https://ror.org/04h1wg685 Wasserstraßen- und Schifffahrtsamt Ems-Nordsee'),
(87701, 'https://ror.org/00p2s5e88', 'no_lang_code', 1, 'https://ror.org/00p2s5e88 (주) źø°ģˆ ź³¼ź°€ģ¹˜ TechnoValue'),
(87702, 'https://ror.org/03tpq9v45', 'en', 1, 'https://ror.org/03tpq9v45 Sapporo Shiroishi Memorial Hospital ęœ­å¹Œē™½ēŸ³čØ˜åæµē—…é™¢'),
(87703, 'https://ror.org/04pd5sn65', 'en', 1, 'https://ror.org/04pd5sn65 Scottish Storytelling Centre'),
(87704, 'https://ror.org/026f3t255', 'en', 1, 'https://ror.org/026f3t255 Delaware General Assembly'),
(87705, 'https://ror.org/01w9crx19', 'fr', 1, 'https://ror.org/01w9crx19 Cecos FƩdƩration FranƧaise des CECOS'),
(87706, 'https://ror.org/018rwb805', 'en', 1, 'https://ror.org/018rwb805 Sichuan Tourism University å››å·ę—…ęøøå¤§å­¦'),
(87707, 'https://ror.org/00mdktv23', 'en', 1, 'https://ror.org/00mdktv23 Culham Science Centre'),
(87708, 'https://ror.org/01drzr533', 'en', 0, 'https://ror.org/01drzr533 Department of Land Resource Management'),
(87709, 'https://ror.org/050kf9c55', 'en', 1, 'https://ror.org/050kf9c55 Wadsworth Center'),
(87710, 'https://ror.org/01ycfpe90', 'es', 1, 'https://ror.org/01ycfpe90 Universidad Americana'),
(87711, 'https://ror.org/04h9nhc82', 'en', 0, 'https://ror.org/04h9nhc82 Illinois Clean Coal Institute'),
(87712, 'https://ror.org/02n2b8x16', 'en', 1, 'https://ror.org/02n2b8x16 Korean History Research Society ķ•œźµ­ģ‚¬ģ—°źµ¬ķšŒ'),
(87713, 'https://ror.org/0095bnv13', 'en', 1, 'https://ror.org/0095bnv13 Sir Edward ''Weary'' Dunlop Medical Research Foundation'),
(87714, 'https://ror.org/03fy4k061', 'en', 1, 'https://ror.org/03fy4k061 Swedish Association of Public Housing'),
(87715, 'https://ror.org/04aexc280', 'fr', 1, 'https://ror.org/04aexc280 SociƩtƩ Suisse de Dermatologie et VƩnƩrƩologie Swiss Society for Dermatology and Venereology'),
(87716, 'https://ror.org/04tmjzh29', 'de', 1, 'https://ror.org/04tmjzh29 Wasserstraßen- und Schifffahrtsamt Weser-Jade-Nordsee'),
(87717, 'https://ror.org/03d1csj97', 'it', 1, 'https://ror.org/03d1csj97 Associazione Italiana per la Ricerca Industriale'),
(87718, 'https://ror.org/0442m3a92', 'en', 1, 'https://ror.org/0442m3a92 Society of Professional Journalists'),
(87719, 'https://ror.org/01kmz4383', 'en', 1, 'https://ror.org/01kmz4383 World Agroforestry Centre'),
(87720, 'https://ror.org/05jkb5508', 'de', 1, 'https://ror.org/05jkb5508 Wasserstraßen-Neubauamt Berlin'),
(87721, 'https://ror.org/02ps3ca75', 'en', 1, 'https://ror.org/02ps3ca75 Ara Parseghian Medical Research Fund'),
(87722, 'https://ror.org/0267htk20', 'en', 0, 'https://ror.org/0267htk20 Arts South Australia'),
(87723, 'https://ror.org/01tfk3v06', 'de', 1, 'https://ror.org/01tfk3v06 Wasserstraßen- und Schifffahrtsamt Donau MDK'),
(87724, 'https://ror.org/05g1nvk51', 'en', 1, 'https://ror.org/05g1nvk51 Health Professionals Advancing LGBT Equality'),
(87725, 'https://ror.org/055bgss27', 'en', 1, 'https://ror.org/055bgss27 National Library of Vietnam'),
(87726, 'https://ror.org/00c276w39', 'en', 1, 'https://ror.org/00c276w39 Bundesamt für Strassen Federal Roads Office Office fédéral des routes Ufficio federale delle strade'),
(87727, 'https://ror.org/014vqg108', 'en', 1, 'https://ror.org/014vqg108 IP Australia'),
(87728, 'https://ror.org/00bk3dc29', 'en', 1, 'https://ror.org/00bk3dc29 London Borough Of Lewisham'),
(87729, 'https://ror.org/03ypqw073', 'no_lang_code', 1, 'https://ror.org/03ypqw073 Australian Eggs'),
(87730, 'https://ror.org/03fe2kq34', 'en', 1, 'https://ror.org/03fe2kq34 Office of Tribal Affairs and Strategic Alliances'),
(87731, 'https://ror.org/05j8kzh48', 'no_lang_code', 1, 'https://ror.org/05j8kzh48 Federatie van Nederlandse Trombosediensten'),
(87732, 'https://ror.org/05sqvvk08', 'en', 1, 'https://ror.org/05sqvvk08 Museum of Bagpipes in Strakonice Muzeum střednĆ­ho PootavĆ­ Strakonice'),
(87733, 'https://ror.org/014pmyt66', 'es', 1, 'https://ror.org/014pmyt66 Caja Rural de JaƩn'),
(87734, 'https://ror.org/03kmrkx02', 'de', 1, 'https://ror.org/03kmrkx02 Institut dal Dicziunari Rumantsch Grischun'),
(87735, 'https://ror.org/033arwq68', 'no_lang_code', 1, 'https://ror.org/033arwq68 Conagra Brands (United States)'),
(87736, 'https://ror.org/04wcznf70', 'nl', 1, 'https://ror.org/04wcznf70 Agentschap voor Natuur en Bos'),
(87737, 'https://ror.org/01n5r7s17', 'en', 1, 'https://ror.org/01n5r7s17 Native Forward Scholars Fund'),
(87738, 'https://ror.org/01hpwkg10', 'en', 1, 'https://ror.org/01hpwkg10 Austrian Electrotechnical Association Ɩsterreichischer Verband für Elektrotechnik'),
(87739, 'https://ror.org/01zbnvs85', 'no_lang_code', 1, 'https://ror.org/01zbnvs85 Meta (United States)'),
(87740, 'https://ror.org/01n9aef16', 'no_lang_code', 1, 'https://ror.org/01n9aef16 Sikorsky Aircraft Corporation (United States)'),
(87741, 'https://ror.org/05sz4ta21', 'en', 1, 'https://ror.org/05sz4ta21 Quitman County School District'),
(87742, 'https://ror.org/03n1ntw18', 'en', 1, 'https://ror.org/03n1ntw18 Foundation S'),
(87743, 'https://ror.org/01yab1r94', 'en', 1, 'https://ror.org/01yab1r94 International Maize and Wheat Improvement Center'),
(87744, 'https://ror.org/02rxnmn30', 'en', 1, 'https://ror.org/02rxnmn30 Minnesota Department of Agriculture'),
(87745, 'https://ror.org/03f20jx79', 'en', 1, 'https://ror.org/03f20jx79 Ecological Society of Australia'),
(87746, 'https://ror.org/02sxnp368', 'en', 1, 'https://ror.org/02sxnp368 Forest Economic Research Institute ęž—ę„­ēµŒęøˆē ”ē©¶ę‰€'),
(87747, 'https://ror.org/03bh1kf66', 'en', 1, 'https://ror.org/03bh1kf66 Korea Association of Literature for Children and Young Adults ķ•œźµ­ģ•„ė™ģ²­ģ†Œė…„ė¬øķ•™ķ•™ķšŒ ź¶Œķ˜ģ¤€ 올림'),
(87748, 'https://ror.org/00dgzrp29', 'et', 1, 'https://ror.org/00dgzrp29 Eksperimentaalse ja Kliinilise Meditsiini Instituut'),
(87749, 'https://ror.org/02mhn1j26', 'en', 1, 'https://ror.org/02mhn1j26 National Maritime Museums'),
(87750, 'https://ror.org/03mamvh39', 'en', 1, 'https://ror.org/03mamvh39 Division of Equity for Excellence in STEM (EES)'),
(87751, 'https://ror.org/05c1yfj14', 'en', 1, 'https://ror.org/05c1yfj14 Xiangya Hospital Central South University äø­å—å¤§å­¦ę¹˜é›…åŒ»é™¢'),
(87752, 'https://ror.org/02kd4km72', 'en', 1, 'https://ror.org/02kd4km72 Division of Undergraduate Education'),
(87753, 'https://ror.org/02krhe361', 'en', 1, 'https://ror.org/02krhe361 Eluna'),
(87754, 'https://ror.org/02hww1d40', 'en', 1, 'https://ror.org/02hww1d40 North-American Interfraternity Conference'),
(87755, 'https://ror.org/056naxb15', 'en', 0, 'https://ror.org/056naxb15 Department of Industry, Science, Energy and Resources'),
(87756, 'https://ror.org/02bpnkx55', 'en', 1, 'https://ror.org/02bpnkx55 Taishan University 泰山学院'),
(87757, 'https://ror.org/055w89263', 'en', 1, 'https://ror.org/055w89263 International Maize and Wheat Improvement Center'),
(87758, 'https://ror.org/0083hz885', 'en', 1, 'https://ror.org/0083hz885 Health Services Research & Development'),
(87759, 'https://ror.org/05dj9eh50', 'en', 1, 'https://ror.org/05dj9eh50 Net Zero Technology Centre'),
(87760, 'https://ror.org/0483qx226', 'de', 1, 'https://ror.org/0483qx226 LEIZA - Leibniz-Zentrum für Archäologie'),
(87761, 'https://ror.org/05axzq880', 'en', 1, 'https://ror.org/05axzq880 Ehlers-Danlos Society'),
(87762, 'https://ror.org/02hf1nv04', 'en', 1, 'https://ror.org/02hf1nv04 CoreTrustSeal'),
(87763, 'https://ror.org/01pk67a30', 'tr', 1, 'https://ror.org/01pk67a30 American University of Cyprus Kıbrıs Amerikan Üniversitesi'),
(87764, 'https://ror.org/05vt4py39', 'en', 1, 'https://ror.org/05vt4py39 Merle Chambers Fund'),
(87765, 'https://ror.org/01w953x65', 'en', 1, 'https://ror.org/01w953x65 Ngee Ann Polytechnic 義安理巄學院'),
(87766, 'https://ror.org/03e86d016', 'en', 1, 'https://ror.org/03e86d016 Vakhushti Bagrationi Institute of Geography įƒ•įƒįƒ®įƒ£įƒØįƒ¢įƒ˜ įƒ‘įƒįƒ’įƒ įƒįƒ¢įƒ˜įƒįƒœįƒ˜įƒ” įƒ’įƒ”įƒįƒ’įƒ įƒįƒ¤įƒ˜įƒ˜įƒ” ინეტიტუტი'),
(87767, 'https://ror.org/041w95745', 'en', 1, 'https://ror.org/041w95745 Abbott Fund'),
(87768, 'https://ror.org/002v5yw74', 'de', 1, 'https://ror.org/002v5yw74 Wasserstraßen- und Schifffahrtsamt Rhein'),
(87769, 'https://ror.org/019mqw137', 'no_lang_code', 1, 'https://ror.org/019mqw137 White arkitekter (Sweden)'),
(87770, 'https://ror.org/04855hn71', 'en', 1, 'https://ror.org/04855hn71 Montgomery County Public Libraries'),
(87771, 'https://ror.org/00ak1t323', 'en', 1, 'https://ror.org/00ak1t323 Australian National Low Emissions Coal Research and Development'),
(87772, 'https://ror.org/00t541f81', 'en', 1, 'https://ror.org/00t541f81 Korean Operations Research and Management Science Society ķ•œźµ­ź²½ģ˜ź³¼ķ•™ķšŒ'),
(87773, 'https://ror.org/00ezjw960', 'de', 1, 'https://ror.org/00ezjw960 Wasserstraßen- und Schifffahrtsamt Elbe'),
(87774, 'https://ror.org/04mm5g824', 'en', 1, 'https://ror.org/04mm5g824 Royal Osteoporosis Society'),
(87775, 'https://ror.org/026xyd213', 'en', 0, 'https://ror.org/026xyd213 Department of State Development'),
(87776, 'https://ror.org/02r8qsp29', 'es', 1, 'https://ror.org/02r8qsp29 Hospital de QuipuƩ'),
(87777, 'https://ror.org/04a2yhg09', 'no_lang_code', 1, 'https://ror.org/04a2yhg09 Intesa Sanpaolo (Italy)'),
(87778, 'https://ror.org/01ttmqc18', 'en', 1, 'https://ror.org/01ttmqc18 Agenzia Italiana del Farmaco Italian Medicines Agency'),
(87779, 'https://ror.org/03zgm5t19', 'en', 1, 'https://ror.org/03zgm5t19 Femmes et ƉgalitĆ© des genres Canada Women and Gender Equality Canada'),
(87780, 'https://ror.org/00rh0mt41', 'en', 1, 'https://ror.org/00rh0mt41 Deutsche Stiftung Friedensforschung German Foundation for Peace Research'),
(87781, 'https://ror.org/00hhn0315', 'no_lang_code', 1, 'https://ror.org/00hhn0315 PVH (United States)'),
(87782, 'https://ror.org/04hj67y24', 'en', 1, 'https://ror.org/04hj67y24 Centro Internazionale Scienze Meccaniche International Centre for Mechanical Sciences'),
(87783, 'https://ror.org/03rbr3273', 'no_lang_code', 1, 'https://ror.org/03rbr3273 Rolex SA (Switzerland)'),
(87784, 'https://ror.org/05vydvf11', 'en', 1, 'https://ror.org/05vydvf11 Statistical Service İstatistiki Servis'),
(87785, 'https://ror.org/03whmxv51', 'es', 1, 'https://ror.org/03whmxv51 Universidad Panamericana de Nuevo Laredo'),
(87786, 'https://ror.org/00bf9ms70', 'de', 1, 'https://ror.org/00bf9ms70 Bundesverband Druck und Medien'),
(87787, 'https://ror.org/01tytrg27', 'fr', 1, 'https://ror.org/01tytrg27 Centre National de la Recherche Scientifique et Technologique'),
(87788, 'https://ror.org/01r09qt02', 'en', 1, 'https://ror.org/01r09qt02 International Society of Nephrology'),
(87789, 'https://ror.org/05s7cqk18', 'en', 1, 'https://ror.org/05s7cqk18 Division of Research on Learning in Formal and Informal Settings'),
(87790, 'https://ror.org/02wvar244', 'en', 1, 'https://ror.org/02wvar244 EMERGENCY'),
(87791, 'https://ror.org/054ydxh33', 'en', 1, 'https://ror.org/054ydxh33 Division of Elementary, Secondary, and Informal Education'),
(87792, 'https://ror.org/01cb2rv04', 'en', 1, 'https://ror.org/01cb2rv04 National Research Institute of Astronomy and Geophysics'),
(87793, 'https://ror.org/058m2zy02', 'it', 1, 'https://ror.org/058m2zy02 Biblioteca Universitaria di Napoli'),
(87794, 'https://ror.org/04afqts81', 'en', 1, 'https://ror.org/04afqts81 Innovative Health Initiative'),
(87795, 'https://ror.org/05t1q2n98', 'en', 1, 'https://ror.org/05t1q2n98 European College of Economics and Management Европейско висше ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ по икономика Šø Š¼ŠµŠ½ŠøŠ“Š¶Š¼ŃŠŠ½Ń‚'),
(87796, 'https://ror.org/004zhf707', 'en', 1, 'https://ror.org/004zhf707 Korea Foundation'),
(87797, 'https://ror.org/04e4b7b24', 'en', 1, 'https://ror.org/04e4b7b24 Tropical Institute Of Community Health And Development'),
(87798, 'https://ror.org/02fd11n27', 'en', 1, 'https://ror.org/02fd11n27 European Health Psychology Society'),
(87799, 'https://ror.org/00sdb8f83', 'en', 1, 'https://ror.org/00sdb8f83 Office of Readiness and Response'),
(87800, 'https://ror.org/03egq2t30', 'en', 1, 'https://ror.org/03egq2t30 San Bernardino County Library'),
(87801, 'https://ror.org/02frnkp15', 'en', 1, 'https://ror.org/02frnkp15 Institute of International Relations of Moldova Institutul de Relații Internaționale din Moldova'),
(87802, 'https://ror.org/04a4p3671', 'en', 1, 'https://ror.org/04a4p3671 Brno House of Arts DÅÆm uměnĆ­ města Brna'),
(87803, 'https://ror.org/00fc1dp67', 'en', 1, 'https://ror.org/00fc1dp67 Hiroshima Prefectural Art Museum åŗƒå³¶ēœŒē«‹ē¾Žč”“é¤Ø'),
(87804, 'https://ror.org/05mv4rb84', 'en', 1, 'https://ror.org/05mv4rb84 College ter Beoordeling van Geneesmiddelen Medicines Evaluation Board'),
(87805, 'https://ror.org/01e399z24', 'en', 1, 'https://ror.org/01e399z24 Cancer Council SA'),
(87806, 'https://ror.org/01pqen061', 'de', 1, 'https://ror.org/01pqen061 Deutsche Gesellschaft für Gefäßchirurgie und Gefäßmedizin'),
(87807, 'https://ror.org/00n2kc060', 'en', 1, 'https://ror.org/00n2kc060 Weinan Normal University ęø­å—åøˆčŒƒå­¦é™¢'),
(87808, 'https://ror.org/03vxy9y38', 'en', 1, 'https://ror.org/03vxy9y38 Jane and Aatos Erkko Foundation Jane ja Aatos Erkon sƤƤtiƶ'),
(87809, 'https://ror.org/0526ebq30', 'no_lang_code', 1, 'https://ror.org/0526ebq30 Digital Infuzion (United States)'),
(87810, 'https://ror.org/005k9c849', 'de', 1, 'https://ror.org/005k9c849 Evangelische Stiftung Volmarstein'),
(87811, 'https://ror.org/05xrh8193', 'it', 1, 'https://ror.org/05xrh8193 Fondazione Cassa di Risparmio di Puglia Fondazione Puglia'),
(87812, 'https://ror.org/029zvkg32', 'en', 1, 'https://ror.org/029zvkg32 Scientific Education and Research Foundation'),
(87813, 'https://ror.org/04vkcpy08', 'en', 1, 'https://ror.org/04vkcpy08 Swedish Association of Graduate Engineers'),
(87814, 'https://ror.org/03zxw5p19', 'en', 1, 'https://ror.org/03zxw5p19 Korean Academy of International Business Management ķ•œźµ­źµ­ģ œź²½ģ˜ź“€ė¦¬ķ•™ķšŒ ķ™ˆķŽ˜'),
(87815, 'https://ror.org/02z88n164', 'en', 1, 'https://ror.org/02z88n164 Manipal University College Malaysia'),
(87816, 'https://ror.org/027mhsx91', 'en', 1, 'https://ror.org/027mhsx91 American Society of Safety Professionals'),
(87817, 'https://ror.org/02vabsf11', 'no_lang_code', 1, 'https://ror.org/02vabsf11 3i (United Kingdom)'),
(87818, 'https://ror.org/03tzank54', 'en', 1, 'https://ror.org/03tzank54 Ohio Educational Technology Conference'),
(87819, 'https://ror.org/03j1c4d98', 'de', 1, 'https://ror.org/03j1c4d98 Deutsche Diabetes Stiftung'),
(87820, 'https://ror.org/05r5c7c30', 'en', 1, 'https://ror.org/05r5c7c30 National Institute on Disability, Independent Living, and Rehabilitation Research'),
(87821, 'https://ror.org/01wvpfr56', 'fr', 1, 'https://ror.org/01wvpfr56 FOD Binnenlandse Zaken FƖD Inneres Ministry of the Interior SPF IntĆ©rieur Service Public FĆ©dĆ©ral IntĆ©rieur'),
(87822, 'https://ror.org/03ayjn504', 'es', 1, 'https://ror.org/03ayjn504 Instituto Tecnológico y de Estudios Superiores de Monterrey Tecnológico de Monterrey'),
(87823, 'https://ror.org/00mbysk96', 'en', 1, 'https://ror.org/00mbysk96 Al-Mustafa International University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŲµŲ·ŁŪŒ Ų§Ł„Ų¹Ų§Ł„Ł…ŪŒŲ©'),
(87824, 'https://ror.org/057ha1659', 'en', 1, 'https://ror.org/057ha1659 Okura Institute for the Study of Spiritual Culture ē²¾ē„žę–‡åŒ–ć®ćŸć‚ć®å¤§å€‰ē ”ē©¶ę‰€'),
(87825, 'https://ror.org/033npx474', 'en', 1, 'https://ror.org/033npx474 GambleAware'),
(87826, 'https://ror.org/017sfvb56', 'en', 1, 'https://ror.org/017sfvb56 American Society for Bioethics and Humanities'),
(87827, 'https://ror.org/04xb0g792', 'en', 1, 'https://ror.org/04xb0g792 Australian Food Allergy Foundation'),
(87828, 'https://ror.org/05bnyh780', 'no', 1, 'https://ror.org/05bnyh780 Ƙstfold Fylkeskommune'),
(87829, 'https://ror.org/052em3f88', 'en', 1, 'https://ror.org/052em3f88 Kansas City University'),
(87830, 'https://ror.org/00a50j303', 'en', 1, 'https://ror.org/00a50j303 Department of Environment, Parks and Water Security'),
(87831, 'https://ror.org/05wpjpp83', 'en', 1, 'https://ror.org/05wpjpp83 Minnesota Department of Labor and Industry'),
(87832, 'https://ror.org/04ergcq69', 'no_lang_code', 1, 'https://ror.org/04ergcq69 Kantar TNS (France)'),
(87833, 'https://ror.org/011jhfp96', 'de', 1, 'https://ror.org/011jhfp96 Klinikum Darmstadt'),
(87834, 'https://ror.org/032900178', 'no_lang_code', 1, 'https://ror.org/032900178 EVER Neuro Pharma (Austria)'),
(87835, 'https://ror.org/01ftxmw65', 'de', 1, 'https://ror.org/01ftxmw65 Wasserstraßen- und Schifffahrtsamt Oberrhein'),
(87836, 'https://ror.org/015fvc051', 'en', 1, 'https://ror.org/015fvc051 De Lisa Waller Hayes Stichting Living With Hope'),
(87837, 'https://ror.org/01jrt3n05', 'en', 1, 'https://ror.org/01jrt3n05 University "Haxhi Zeka"'),
(87838, 'https://ror.org/02gdbm217', 'en', 1, 'https://ror.org/02gdbm217 Creative Victoria'),
(87839, 'https://ror.org/034kz8m70', 'no_lang_code', 0, 'https://ror.org/034kz8m70 Institut des ingƩnieurs Ʃlectriciens et Ʃlectroniciens Institute of Electrical and Electronics Engineers'),
(87840, 'https://ror.org/03j5qz247', 'en', 1, 'https://ror.org/03j5qz247 IU Health Foundation'),
(87841, 'https://ror.org/05gxjyb39', 'en', 1, 'https://ror.org/05gxjyb39 Imam Mohammad ibn Saud Islamic University Ų¬Ų§Ł…Ų¹Ų© ال؄مام Ł…Ų­Ł…ŲÆ بن سعود Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(87842, 'https://ror.org/01y9h3t34', 'de', 1, 'https://ror.org/01y9h3t34 Wasserstraßen- und Schifffahrtsamt Mosel-Saar-Lahn'),
(87843, 'https://ror.org/039w1jh10', 'fr', 1, 'https://ror.org/039w1jh10 FƩdƩration franƧaise de cardiologie'),
(87844, 'https://ror.org/01jy46q10', 'en', 1, 'https://ror.org/01jy46q10 Princess Sumaya University for Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ±Ų© Ų³Ł…ŁŠŲ© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(87845, 'https://ror.org/02p5aye98', 'en', 1, 'https://ror.org/02p5aye98 WITH Foundation'),
(87846, 'https://ror.org/04hkmct58', 'en', 1, 'https://ror.org/04hkmct58 Coastal and Estuarine Research Federation'),
(87847, 'https://ror.org/02a0gq659', 'sv', 1, 'https://ror.org/02a0gq659 Svenska MƤssan Swedish Exhibition & Congress Centre'),
(87848, 'https://ror.org/02cd28j32', 'de', 1, 'https://ror.org/02cd28j32 Wasserstraßen- und Schifffahrtsamt Elbe-Nordsee'),
(87849, 'https://ror.org/01vta4r13', 'en', 1, 'https://ror.org/01vta4r13 Environmental and Occupational Health Sciences Institute'),
(87850, 'https://ror.org/03xeqqt61', 'en', 1, 'https://ror.org/03xeqqt61 International Center for Responsible Gaming'),
(87851, 'https://ror.org/01b1y2d10', 'en', 1, 'https://ror.org/01b1y2d10 Continuous Plankton Recorder Survey'),
(87852, 'https://ror.org/04epn6t09', 'en', 1, 'https://ror.org/04epn6t09 Korean Society For The Study Of Physical Education ķ•œźµ­ģ²“ģœ”źµģœ”ķ•™ķšŒ'),
(87853, 'https://ror.org/04zp6eb52', 'en', 1, 'https://ror.org/04zp6eb52 Foundation for Chemistry Research and Initiatives'),
(87854, 'https://ror.org/01nrcgn98', 'en', 1, 'https://ror.org/01nrcgn98 Nara University of Education å„ˆč‰Æę•™č‚²å¤§å­¦'),
(87855, 'https://ror.org/00bxchw37', 'en', 1, 'https://ror.org/00bxchw37 Hydropower Foundation'),
(87856, 'https://ror.org/04dtfyh05', 'en', 0, 'https://ror.org/04dtfyh05 Peninsula College of Medicine and Dentistry'),
(87857, 'https://ror.org/04f7sbz75', 'no_lang_code', 1, 'https://ror.org/04f7sbz75 Cirtec Medical (United States)'),
(87858, 'https://ror.org/007ef4t67', 'en', 0, 'https://ror.org/007ef4t67 Department of Mines and Petroleum'),
(87859, 'https://ror.org/05164ka66', 'es', 1, 'https://ror.org/05164ka66 Universidad de Especialidades TurĆ­sticas'),
(87860, 'https://ror.org/057zq8s17', 'en', 1, 'https://ror.org/057zq8s17 American Academy of Sleep Medicine Foundation'),
(87861, 'https://ror.org/02r67s833', 'de', 1, 'https://ror.org/02r67s833 Wasserstraßen-Neubauamt Hannover'),
(87862, 'https://ror.org/054j5yq82', 'en', 1, 'https://ror.org/054j5yq82 Office of AIDS Research'),
(87863, 'https://ror.org/007hfn712', 'de', 1, 'https://ror.org/007hfn712 Wasserstraßen- und Schifffahrtsamt Main'),
(87864, 'https://ror.org/04zz5fc19', 'en', 1, 'https://ror.org/04zz5fc19 Jiangsu Province Development and Reform Commission ę±Ÿč‹ēœå‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(87865, 'https://ror.org/02a7hjv13', 'en', 1, 'https://ror.org/02a7hjv13 G. Harold & Leila Y. Mathers Foundation'),
(87866, 'https://ror.org/006edv995', 'de', 1, 'https://ror.org/006edv995 G2W'),
(87867, 'https://ror.org/00wj0f678', 'en', 0, 'https://ror.org/00wj0f678 Centre for International Mobility'),
(87868, 'https://ror.org/051qeyr12', 'en', 1, 'https://ror.org/051qeyr12 National Institute for Psychobiology המכון הלאומי לפהיכוביולוגיה ×‘×™×©×Ø××œ'),
(87869, 'https://ror.org/001j5ag10', 'fr', 1, 'https://ror.org/001j5ag10 Agence wallonne Ơ l''Exportation et aux Investissements Ʃtrangers'),
(87870, 'https://ror.org/05r6j0v30', 'en', 1, 'https://ror.org/05r6j0v30 Savonlinna Central Hospital Savonlinnan keskussairaala'),
(87871, 'https://ror.org/00p17p196', 'en', 1, 'https://ror.org/00p17p196 American Society of Overseas Research'),
(87872, 'https://ror.org/00xwg5y60', 'en', 1, 'https://ror.org/00xwg5y60 Shiga University of Medical Science Hospital ę»‹č³€åŒ»ē§‘å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(87873, 'https://ror.org/05661nc70', 'no_lang_code', 1, 'https://ror.org/05661nc70 Sumeru Hospital'),
(87874, 'https://ror.org/00t9khr87', 'en', 1, 'https://ror.org/00t9khr87 Food and Nutrition Service'),
(87875, 'https://ror.org/019af4n30', 'en', 1, 'https://ror.org/019af4n30 Innovative Medicines Initiative'),
(87876, 'https://ror.org/00daf1s34', 'en', 1, 'https://ror.org/00daf1s34 European Distance and E-Learning Network'),
(87877, 'https://ror.org/00hhrbd92', 'en', 1, 'https://ror.org/00hhrbd92 Government Medical College and Hospital'),
(87878, 'https://ror.org/00nqgfj77', 'pt', 1, 'https://ror.org/00nqgfj77 Escola UniversitƔria das Artes de Coimbra'),
(87879, 'https://ror.org/01nbfnq73', 'en', 1, 'https://ror.org/01nbfnq73 Idaho Academy of Science'),
(87880, 'https://ror.org/03pmser87', 'en', 1, 'https://ror.org/03pmser87 Buncombe County Schools'),
(87881, 'https://ror.org/0094aqg59', 'de', 1, 'https://ror.org/0094aqg59 Wasserstraßen- und Schifffahrtsamt Nord-Ostsee-Kanal'),
(87882, 'https://ror.org/05fk67q44', 'en', 1, 'https://ror.org/05fk67q44 Social Protection Institute of the Republic of Slovenia'),
(87883, 'https://ror.org/03y6ba359', 'no_lang_code', 1, 'https://ror.org/03y6ba359 Australian Carbon Innovation'),
(87884, 'https://ror.org/02gn1ar53', 'de', 0, 'https://ror.org/02gn1ar53 Marum Zentrum für Marine Umweltwissenschaften'),
(87885, 'https://ror.org/04es2gg88', 'en', 1, 'https://ror.org/04es2gg88 Motor Neurone Disease Research Australia'),
(87886, 'https://ror.org/02frtqf06', 'de', 1, 'https://ror.org/02frtqf06 Wasserstraßen-Neubauamt Aschaffenburg'),
(87887, 'https://ror.org/04chg7g34', 'en', 1, 'https://ror.org/04chg7g34 Canadian Operational Research Society SociƩtƩ Canadienne de Recherche OpƩrationnelle'),
(87888, 'https://ror.org/04kyvky59', 'en', 1, 'https://ror.org/04kyvky59 Graduate Women in Science'),
(87889, 'https://ror.org/04cevv292', 'de', 1, 'https://ror.org/04cevv292 Landesamt für Landwirtschaft und nachhaltige Landentwicklung'),
(87890, 'https://ror.org/01y68k842', 'en', 1, 'https://ror.org/01y68k842 American Physiological Society'),
(87891, 'https://ror.org/04c3xh334', 'en', 1, 'https://ror.org/04c3xh334 College of Karlovy Vary VysokÔ Ŕkola Karlovy Vary'),
(87892, 'https://ror.org/03e6tc838', 'en', 1, 'https://ror.org/03e6tc838 Kiwifruit Breeding Centre'),
(87893, 'https://ror.org/00wvvcy92', 'de', 1, 'https://ror.org/00wvvcy92 Landesamt für Umwelt'),
(87894, 'https://ror.org/04svth815', 'en', 1, 'https://ror.org/04svth815 Canadian Federation of University Women FƩdƩration canadienne des femmes diplƓmƩes des universitƩs'),
(87895, 'https://ror.org/04xhre718', 'en', 1, 'https://ror.org/04xhre718 Guangdong Food and Drug Vocational College å¹æäøœé£Ÿå“čÆå“čŒäøšå­¦é™¢'),
(87896, 'https://ror.org/03be3fb73', 'en', 1, 'https://ror.org/03be3fb73 National Measurement Institute'),
(87897, 'https://ror.org/05v30a202', 'en', 1, 'https://ror.org/05v30a202 American Institute of Architecture Students'),
(87898, 'https://ror.org/01awp2978', 'en', 1, 'https://ror.org/01awp2978 Department of Primary Industries and Regional Development'),
(87899, 'https://ror.org/01vwesc15', 'no_lang_code', 1, 'https://ror.org/01vwesc15 Seagen (United States)'),
(87900, 'https://ror.org/03c6k3q87', 'en', 1, 'https://ror.org/03c6k3q87 National Research Center for Rehabilitation Technical Aids å›½å®¶åŗ·å¤č¾…å…·ē ”ē©¶äø­åæƒ'),
(87901, 'https://ror.org/04vbzm272', 'sv', 1, 'https://ror.org/04vbzm272 Finska LƤkaresƤllskapet'),
(87902, 'https://ror.org/046j4rs93', 'en', 1, 'https://ror.org/046j4rs93 Amateur Chamber Music Players'),
(87903, 'https://ror.org/0095rxa03', 'de', 1, 'https://ror.org/0095rxa03 Wasserstraßen-Neubauamt Helmstedt'),
(87904, 'https://ror.org/03wg2yp19', 'en', 1, 'https://ror.org/03wg2yp19 Florida Center for Advanced Aero Propulsion'),
(87905, 'https://ror.org/02bqtvr98', 'en', 1, 'https://ror.org/02bqtvr98 Knowles Teacher Initiative'),
(87906, 'https://ror.org/00es6pb19', 'en', 1, 'https://ror.org/00es6pb19 Office of Multicultural Interests'),
(87907, 'https://ror.org/00kr4dx39', 'fr', 1, 'https://ror.org/00kr4dx39 Fondation Alzheimer'),
(87908, 'https://ror.org/00j80js52', 'en', 1, 'https://ror.org/00j80js52 West Virginia Department of Arts, Culture and History'),
(87909, 'https://ror.org/052d2nr31', 'en', 1, 'https://ror.org/052d2nr31 North Carolina Land and Water Fund'),
(87910, 'https://ror.org/031zh6285', 'en', 1, 'https://ror.org/031zh6285 Illinois Arts Council Agency'),
(87911, 'https://ror.org/04yqs7e37', 'en', 1, 'https://ror.org/04yqs7e37 Barne-, ungdoms- og familiedirektoratet Norwegian Directorate for Children, Youth and Family Affairs'),
(87912, 'https://ror.org/05pbd2t84', 'de', 1, 'https://ror.org/05pbd2t84 Wasserstraßen- und Schifffahrtsamt Westdeutsche Kanäle'),
(87913, 'https://ror.org/0208m0s40', 'en', 1, 'https://ror.org/0208m0s40 Association of Physician Associates in Obstetrics and Gynecology'),
(87914, 'https://ror.org/05a2xtt59', 'en', 1, 'https://ror.org/05a2xtt59 International Maize and Wheat Improvement Center'),
(87915, 'https://ror.org/0549jh941', 'en', 1, 'https://ror.org/0549jh941 The Hegel Society of Korea ķ•œźµ­ķ—¤ź²”ķ•™ķšŒ'),
(87916, 'https://ror.org/00mvffx52', 'en', 1, 'https://ror.org/00mvffx52 Stationers'' Company'),
(87917, 'https://ror.org/032sf2845', 'en', 1, 'https://ror.org/032sf2845 Lyda Hill Philanthropies'),
(87918, 'https://ror.org/04mr78v45', 'en', 1, 'https://ror.org/04mr78v45 Department of Mines, Industry Regulation and Safety'),
(87919, 'https://ror.org/030p9nw74', 'en', 1, 'https://ror.org/030p9nw74 Department of Local Government, Sport and Cultural Industries'),
(87920, 'https://ror.org/04amfk357', 'en', 1, 'https://ror.org/04amfk357 Parkinson Canada SociƩtƩ Parkinson Canada'),
(87921, 'https://ror.org/038jaf309', 'en', 1, 'https://ror.org/038jaf309 Bibliotheek van het Vredespaleis BibliothĆØque du Palais de la Paix Peace Palace Library'),
(87922, 'https://ror.org/01ddvtt26', 'en', 0, 'https://ror.org/01ddvtt26 Department of Sport and Recreation'),
(87923, 'https://ror.org/0085j8z36', 'en', 1, 'https://ror.org/0085j8z36 Sacred Heart University'),
(87924, 'https://ror.org/05kjchg44', 'en', 0, 'https://ror.org/05kjchg44 Ara Parseghian Medical Research Foundation'),
(87925, 'https://ror.org/00ztzxf77', 'en', 1, 'https://ror.org/00ztzxf77 Academy of Fine Arts Münster Kunstakademie Münster'),
(87926, 'https://ror.org/013rxeb24', 'en', 1, 'https://ror.org/013rxeb24 Scarring Alopecia Foundation'),
(87927, 'https://ror.org/00fvxaj36', 'en', 1, 'https://ror.org/00fvxaj36 Wenlock District Hospital'),
(87928, 'https://ror.org/05hg48t65', 'en', 1, 'https://ror.org/05hg48t65 Kasturba Medical College, Manipal'),
(87929, 'https://ror.org/04eqd2f30', 'no_lang_code', 1, 'https://ror.org/04eqd2f30 Tokyo Metropolitan Komagome Hospital ę„ŸęŸ“ē—‡ć‚»ćƒ³ć‚æćƒ¼éƒ½ē«‹é§’č¾¼ē—…é™¢'),
(87930, 'https://ror.org/02f0cra24', 'en', 1, 'https://ror.org/02f0cra24 Geological Institute Š“Š•ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(87931, 'https://ror.org/01mh6b283', 'en', 1, 'https://ror.org/01mh6b283 Interuniversitair Cardiologisch Instituut Nederland Netherlands Heart Institute'),
(87932, 'https://ror.org/03j83x834', 'en', 1, 'https://ror.org/03j83x834 Healthy Communities Foundation'),
(87933, 'https://ror.org/04691az61', 'fr', 1, 'https://ror.org/04691az61 Fondation SantƩ et DƩveloppement Durable'),
(87934, 'https://ror.org/00wbskb04', 'en', 1, 'https://ror.org/00wbskb04 Texas Biomedical Research Institute'),
(87935, 'https://ror.org/033b0a569', 'en', 1, 'https://ror.org/033b0a569 AgriFutures Australia'),
(87936, 'https://ror.org/05e87zb45', 'en', 1, 'https://ror.org/05e87zb45 American Psychosocial Oncology Society'),
(87937, 'https://ror.org/05xfjq530', 'de', 1, 'https://ror.org/05xfjq530 Wasserstraßen-Neubauamt Heidelberg'),
(87938, 'https://ror.org/02cvqxe38', 'en', 1, 'https://ror.org/02cvqxe38 Race to Erase MS'),
(87939, 'https://ror.org/04at8nn08', 'en', 1, 'https://ror.org/04at8nn08 Dr. TMA Pai Hospital'),
(87940, 'https://ror.org/038sjwq14', 'en', 1, 'https://ror.org/038sjwq14 Australian Research Data Commons'),
(87941, 'https://ror.org/03tme9506', 'de', 1, 'https://ror.org/03tme9506 Wasserstraßen- und Schifffahrtsamt Mittellandkanal / Elbe-Seitenkanal'),
(87942, 'https://ror.org/012y8h312', 'en', 1, 'https://ror.org/012y8h312 David Center for the American Revolution'),
(87943, 'https://ror.org/042pm2v89', 'hu', 1, 'https://ror.org/042pm2v89 Magyar MadÔrtani és Természetvédelmi Egyesület'),
(87944, 'https://ror.org/0381t6379', 'en', 1, 'https://ror.org/0381t6379 Department of the Premier and Cabinet'),
(87945, 'https://ror.org/03aj9rj02', 'en', 1, 'https://ror.org/03aj9rj02 King Saud Medical City Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ سعود Ų§Ł„Ų·ŲØŁŠŲ©'),
(87946, 'https://ror.org/04ce5fg13', 'en', 1, 'https://ror.org/04ce5fg13 Chongqing Municipal Health Commission é‡åŗ†åø‚å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(87947, 'https://ror.org/0082wq496', 'es', 1, 'https://ror.org/0082wq496 Secretaria de Salud'),
(87948, 'https://ror.org/02jkp0740', 'en', 1, 'https://ror.org/02jkp0740 Human Immunome Project'),
(87949, 'https://ror.org/00kkxv282', 'en', 1, 'https://ror.org/00kkxv282 Kasturba Medical College Hospital'),
(87950, 'https://ror.org/02zta5505', 'en', 1, 'https://ror.org/02zta5505 Noble Research Institute'),
(87951, 'https://ror.org/03135ed07', 'de', 1, 'https://ror.org/03135ed07 Wasserstraßen- und Schifffahrtsamt Weser'),
(87952, 'https://ror.org/04c1vp749', 'en', 1, 'https://ror.org/04c1vp749 Nepal Open University ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤–ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(87953, 'https://ror.org/01j9p1x11', 'en', 1, 'https://ror.org/01j9p1x11 The International Center for Supporting Rights and Freedoms Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŲÆŁˆŁ„ŁŠ لدعم Ų§Ł„Ų­Ł‚ŁˆŁ‚ ŁˆŲ§Ł„Ų­Ų±ŁŠŲ§ŲŖ'),
(87954, 'https://ror.org/02ea7cc16', 'en', 1, 'https://ror.org/02ea7cc16 Open International University of Human Development Ukraine ВіГкритий міжнароГний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ Š»ŃŽŠ“ŠøŠ½Šø Україна ŠžŃ‚крытый Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ человека Украина'),
(87955, 'https://ror.org/05h2dda38', 'en', 1, 'https://ror.org/05h2dda38 Geological Survey of Western Australia'),
(87956, 'https://ror.org/004sbqf57', 'en', 1, 'https://ror.org/004sbqf57 International Society for Prosthetics and Orthotics'),
(87957, 'https://ror.org/051kyr277', 'en', 1, 'https://ror.org/051kyr277 EveryCat Health Foundation'),
(87958, 'https://ror.org/023fjv693', 'en', 1, 'https://ror.org/023fjv693 Center for Architecture Foundation'),
(87959, 'https://ror.org/04v1psm68', 'en', 1, 'https://ror.org/04v1psm68 American Association for Anatomy'),
(87960, 'https://ror.org/00s8xgq82', 'en', 1, 'https://ror.org/00s8xgq82 Chamroeun University of Poly-Technology'),
(87961, 'https://ror.org/0366j1r61', 'en', 1, 'https://ror.org/0366j1r61 Christian Museum'),
(87962, 'https://ror.org/015bmra78', 'en', 1, 'https://ror.org/015bmra78 Institute of Geosciences and Earth Resources Istituto di Geoscienze e Georisorse'),
(87963, 'https://ror.org/01z6gk692', 'de', 0, 'https://ror.org/01z6gk692 Landesamt für Landwirtschaft, Umwelt und ländliche Räume'),
(87964, 'https://ror.org/04z4n1a35', 'en', 1, 'https://ror.org/04z4n1a35 Ctl Eurocollege'),
(87965, 'https://ror.org/03wxgdq82', 'pt', 1, 'https://ror.org/03wxgdq82 Campo Arqueologico de Mertola'),
(87966, 'https://ror.org/03xkdy484', 'de', 1, 'https://ror.org/03xkdy484 Wasserstraßen- und Schifffahrtsamt Neckar'),
(87967, 'https://ror.org/049yyjd94', 'en', 1, 'https://ror.org/049yyjd94 American Farmland Trust'),
(87968, 'https://ror.org/00wa08m82', 'it', 1, 'https://ror.org/00wa08m82 Fondazione Memofonte Memofonte Foundation'),
(87969, 'https://ror.org/00wa40650', 'en', 1, 'https://ror.org/00wa40650 Defense Forensics and Biometrics Agency'),
(87970, 'https://ror.org/04banag31', 'en', 1, 'https://ror.org/04banag31 Korean Association for Science Education'),
(87971, 'https://ror.org/018ypnc38', 'en', 1, 'https://ror.org/018ypnc38 Human Vaccines Project Europe Stichting Human Vaccines Project Europe'),
(87972, 'https://ror.org/00y084206', 'en', 1, 'https://ror.org/00y084206 Ministry of Education'),
(87973, 'https://ror.org/018k53h31', 'fr', 1, 'https://ror.org/018k53h31 MinistĆØre du travail, de l''emploi et de l''insertion'),
(87974, 'https://ror.org/04r4vm305', 'id', 1, 'https://ror.org/04r4vm305 Universitas Purwakarta'),
(87975, 'https://ror.org/05varta73', 'en', 1, 'https://ror.org/05varta73 Cystinosis Ireland'),
(87976, 'https://ror.org/01x1hjy11', 'en', 1, 'https://ror.org/01x1hjy11 The Women in Medicine Legacy Foundation'),
(87977, 'https://ror.org/04yy0hz59', 'en', 1, 'https://ror.org/04yy0hz59 Japan Technical Association of the Pulp and Paper Industry');
INSERT INTO `rors` VALUES
(87978, 'https://ror.org/04q881785', 'en', 1, 'https://ror.org/04q881785 Ministerstvo životného prostredia SR Ministry of the Environment of the Slovak Republic'),
(87979, 'https://ror.org/0431vax36', 'de', 1, 'https://ror.org/0431vax36 Wasserstraßen-Neubauamt Datteln'),
(87980, 'https://ror.org/00p8rjs69', 'en', 1, 'https://ror.org/00p8rjs69 AmeriCorps'),
(87981, 'https://ror.org/005m9ez36', 'en', 1, 'https://ror.org/005m9ez36 Aegean College'),
(87982, 'https://ror.org/0451d4r46', 'en', 1, 'https://ror.org/0451d4r46 Society of Labor Law Theory and Profession ģ‚¬ė‹Øė²•ģø ė…øė™ė²•ģ“ė” ģ‹¤ė¬“ķ•™ķšŒ'),
(87983, 'https://ror.org/027ymyq71', 'en', 1, 'https://ror.org/027ymyq71 Finnish Transport Safety Agency Liikenteen turvallisuusvirasto Trafi'),
(87984, 'https://ror.org/05tn5kf55', 'en', 1, 'https://ror.org/05tn5kf55 Peter G. Peterson Foundation'),
(87985, 'https://ror.org/02ypac508', 'en', 1, 'https://ror.org/02ypac508 HCR Manor Care'),
(87986, 'https://ror.org/05bcgfn72', 'en', 1, 'https://ror.org/05bcgfn72 Dementia Australia'),
(87987, 'https://ror.org/01pen7a46', 'en', 1, 'https://ror.org/01pen7a46 Sirindhorn College of Public Health'),
(87988, 'https://ror.org/054ewwr15', 'es', 1, 'https://ror.org/054ewwr15 Universidad Alfonso X el Sabio'),
(87989, 'https://ror.org/057kjcb31', 'no_lang_code', 1, 'https://ror.org/057kjcb31 Tata Trusts'),
(87990, 'https://ror.org/02yhmtm27', 'en', 0, 'https://ror.org/02yhmtm27 Ames Aeronautical Laboratory'),
(87991, 'https://ror.org/02nzfdt75', 'no_lang_code', 1, 'https://ror.org/02nzfdt75 Fort Wayne Metals (United States)'),
(87992, 'https://ror.org/04tpkqz22', 'es', 1, 'https://ror.org/04tpkqz22 Centro Científico Tecnológico Salta - Jujuy'),
(87993, 'https://ror.org/00fe3cc74', 'en', 1, 'https://ror.org/00fe3cc74 Iowa Space Grant Consortium'),
(87994, 'https://ror.org/03mz8ps81', 'en', 1, 'https://ror.org/03mz8ps81 International Association for Plant Taxonomy'),
(87995, 'https://ror.org/02zvw6748', 'en', 1, 'https://ror.org/02zvw6748 Center for the Advancement of Science in Space'),
(87996, 'https://ror.org/036jakz62', 'en', 1, 'https://ror.org/036jakz62 Clinical Research Unit Nanoro'),
(87997, 'https://ror.org/02rbemf16', 'es', 1, 'https://ror.org/02rbemf16 Universidad de Ciencias MƩdicas de Villa Clara'),
(87998, 'https://ror.org/01ngt5263', 'en', 1, 'https://ror.org/01ngt5263 Amir Oncology Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¢Ł…ŁˆŲ²Ų“ŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų¢Ł†Ś©ŁˆŁ„ŁˆŚ˜ŪŒ Ų§Ł…ŪŒŲ±'),
(87999, 'https://ror.org/025ae7a15', 'es', 1, 'https://ror.org/025ae7a15 Instituto de Estudios Sociales'),
(88000, 'https://ror.org/001rzrn98', 'es', 1, 'https://ror.org/001rzrn98 Sociedad MatemƔtica Mexicana'),
(88001, 'https://ror.org/00c7kqb82', 'en', 1, 'https://ror.org/00c7kqb82 State Enterprise Ā«All-Ukrainian State Research and Production Center for Standardization, Metrology, Certification and Consumers Rights ProtectionĀ» Š”Š•Š Š–ŠŠ’ŠŠ• ŠŸŠ†Š”ŠŸŠ Š˜Š„ŠœŠ”Š¢Š’Šž Ā«Š’Š”Š•Š£ŠšŠ ŠŠ‡ŠŠ”Š¬ŠšŠ˜Š™ Š”Š•Š Š–ŠŠ’ŠŠ˜Š™ ŠŠŠ£ŠšŠžŠ’Šž-Š’Š˜Š ŠžŠ‘ŠŠ˜Š§Š˜Š™ Š¦Š•ŠŠ¢Š  Š”Š¢ŠŠŠ”ŠŠ Š¢Š˜Š—ŠŠ¦Š†Š‡, ŠœŠ•Š¢Š ŠžŠ›ŠžŠ“Š†Š‡, Š”Š•Š Š¢Š˜Š¤Š†ŠšŠŠ¦Š†Š‡ ТА Š—ŠŠ„Š˜Š”Š¢Š£ ŠŸŠ ŠŠ’ Š”ŠŸŠžŠ–Š˜Š’ŠŠ§Š†Š’Ā»'),
(88002, 'https://ror.org/0446d5v35', 'no_lang_code', 1, 'https://ror.org/0446d5v35 Geely (China) 吉利'),
(88003, 'https://ror.org/0391bdf37', 'no_lang_code', 0, 'https://ror.org/0391bdf37 Kadmon Corporation (United States)'),
(88004, 'https://ror.org/02s42x260', 'en', 1, 'https://ror.org/02s42x260 International Space Station'),
(88005, 'https://ror.org/0423a8m31', 'en', 1, 'https://ror.org/0423a8m31 Foundation for Equity and Research New Zealand'),
(88006, 'https://ror.org/04xx4z452', 'en', 1, 'https://ror.org/04xx4z452 Centro Espacial Lyndon B. Johnson Johnson Space Center'),
(88007, 'https://ror.org/03js09m24', 'en', 1, 'https://ror.org/03js09m24 Chicago Botanic Garden'),
(88008, 'https://ror.org/05q5zzn71', 'en', 1, 'https://ror.org/05q5zzn71 White Sands Test Facility'),
(88009, 'https://ror.org/02ajbht29', 'en', 1, 'https://ror.org/02ajbht29 NASA Engineering and Safety Center'),
(88010, 'https://ror.org/01cyfxe35', 'en', 1, 'https://ror.org/01cyfxe35 Goddard Institute for Space Studies'),
(88011, 'https://ror.org/055smf976', 'en', 1, 'https://ror.org/055smf976 Ecole Nationale Supérieure des Forêts Higher National School of Forests'),
(88012, 'https://ror.org/01s0wxr22', 'en', 1, 'https://ror.org/01s0wxr22 New Mexico Economic Development Department'),
(88013, 'https://ror.org/056reh520', 'en', 1, 'https://ror.org/056reh520 University of Educational Management Університет Š¼ŠµŠ½ŠµŠ“Š¶Š¼ŠµŠ½Ń‚Ńƒ освіти'),
(88014, 'https://ror.org/01d67x059', 'es', 1, 'https://ror.org/01d67x059 Centro de Investigación y Extensión Forestal Andino Patagónico'),
(88015, 'https://ror.org/00ndhrx30', 'en', 1, 'https://ror.org/00ndhrx30 Suez University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŁŠŲ³'),
(88016, 'https://ror.org/02rj8cx55', 'en', 1, 'https://ror.org/02rj8cx55 Alabama Space Grant Consortium'),
(88017, 'https://ror.org/03vxkne37', 'es', 1, 'https://ror.org/03vxkne37 Centro Científico Tecnológico - Córdoba'),
(88018, 'https://ror.org/03av6yz68', 'no_lang_code', 1, 'https://ror.org/03av6yz68 Ichor Life Sciences (United States)'),
(88019, 'https://ror.org/04nxv4b11', 'no_lang_code', 1, 'https://ror.org/04nxv4b11 Shepherd Chemicals (United States)'),
(88020, 'https://ror.org/05gfbdk85', 'en', 1, 'https://ror.org/05gfbdk85 Banner Gateway Medical Center'),
(88021, 'https://ror.org/03kkbqm48', 'en', 1, 'https://ror.org/03kkbqm48 FH JOANNEUM University of Applied Sciences FH Joanneum'),
(88022, 'https://ror.org/059fqnc42', 'en', 1, 'https://ror.org/059fqnc42 Glenn Research Center'),
(88023, 'https://ror.org/0202cv241', 'en', 1, 'https://ror.org/0202cv241 Alberta Environment and Protected Areas'),
(88024, 'https://ror.org/011bwkg92', 'en', 0, 'https://ror.org/011bwkg92 Industrial Research Limited'),
(88025, 'https://ror.org/0516thm59', 'pt', 1, 'https://ror.org/0516thm59 Associação Brasileira de Linguística Brazilian Linguistics Association'),
(88026, 'https://ror.org/006gc9859', 'no_lang_code', 0, 'https://ror.org/006gc9859 Cyberstar (France)'),
(88027, 'https://ror.org/03x9p2b74', 'en', 1, 'https://ror.org/03x9p2b74 Arab Private University for Science and Technology الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© الخاصة Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(88028, 'https://ror.org/04vt2s547', 'en', 1, 'https://ror.org/04vt2s547 Yemen Academy for Graduate Studies Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„ŁŠŁ…Ł†ŁŠŲ© للدراسات Ų§Ł„Ų¹Ł„ŁŠŲ§'),
(88029, 'https://ror.org/05xgcry12', 'no_lang_code', 1, 'https://ror.org/05xgcry12 Inprentus (United States)'),
(88030, 'https://ror.org/05v2yzm02', 'no_lang_code', 1, 'https://ror.org/05v2yzm02 Anax Laboratories (India)'),
(88031, 'https://ror.org/01h6x4375', 'en', 1, 'https://ror.org/01h6x4375 Saint Lucia Bureau of Standards'),
(88032, 'https://ror.org/0342q2017', 'no_lang_code', 1, 'https://ror.org/0342q2017 Lucid Motors (United States)'),
(88033, 'https://ror.org/028171j94', 'pt', 1, 'https://ror.org/028171j94 Unimed Curitiba'),
(88034, 'https://ror.org/056da5v93', 'en', 1, 'https://ror.org/056da5v93 Digital Scholar (United States)'),
(88035, 'https://ror.org/04vh4pp56', 'no_lang_code', 1, 'https://ror.org/04vh4pp56 Pinney Associates (United States)'),
(88036, 'https://ror.org/04a1j9d57', 'no_lang_code', 1, 'https://ror.org/04a1j9d57 Global Thermostat (United States)'),
(88037, 'https://ror.org/04sqqf404', 'en', 1, 'https://ror.org/04sqqf404 Ministry of Commerce, Industry and Investment Promotion وزارة التجارة و الصناعة وترويج الاستثما'),
(88038, 'https://ror.org/00epmtw64', 'en', 1, 'https://ror.org/00epmtw64 Government of Ukraine ŠšŠ°Š±Ń–Š½ŠµŃ‚ ŠœŃ–Š½Ń–ŃŃ‚Ń€Ń–Š² України'),
(88039, 'https://ror.org/02skrr217', 'es', 1, 'https://ror.org/02skrr217 Centro de Recursos Naturales Renovables de la Zona SemiƔrida'),
(88040, 'https://ror.org/02ra57676', 'en', 1, 'https://ror.org/02ra57676 Packet Clearing House'),
(88041, 'https://ror.org/0245cg223', 'en', 1, 'https://ror.org/0245cg223 Albert-Ludwigs-UniversitƤt Freiburg University of Freiburg'),
(88042, 'https://ror.org/03phcd550', 'no_lang_code', 1, 'https://ror.org/03phcd550 Edgewise Therapeutics (United States)'),
(88043, 'https://ror.org/01j0vck17', 'no_lang_code', 1, 'https://ror.org/01j0vck17 KJKP Sarajevogas (Bosnia-Herzegovina)'),
(88044, 'https://ror.org/00tz4k675', 'en', 1, 'https://ror.org/00tz4k675 Harlem Hospital Center'),
(88045, 'https://ror.org/04emg8k55', 'en', 1, 'https://ror.org/04emg8k55 National Science and Technology Library å›½å®¶ē§‘ęŠ€å›¾ä¹¦ę–‡ēŒ®äø­åæƒ'),
(88046, 'https://ror.org/05xxs2z38', 'es', 1, 'https://ror.org/05xxs2z38 Hospital ClĆ­nico Universitario Virgen de la Victoria'),
(88047, 'https://ror.org/03ngbts32', 'no_lang_code', 1, 'https://ror.org/03ngbts32 BPS Bioscience (United States)'),
(88048, 'https://ror.org/04vfhnm78', 'es', 1, 'https://ror.org/04vfhnm78 Hospital Universitario Virgen del RocĆ­o Virgen del RocĆ­o University Hospital'),
(88049, 'https://ror.org/041whkq73', 'en', 1, 'https://ror.org/041whkq73 OpenResearch (United States)'),
(88050, 'https://ror.org/04jvqda35', 'no_lang_code', 1, 'https://ror.org/04jvqda35 Curium (United Kingdom)'),
(88051, 'https://ror.org/059qhjc85', 'no_lang_code', 1, 'https://ror.org/059qhjc85 John Crane (United States)'),
(88052, 'https://ror.org/04ssjv946', 'es', 1, 'https://ror.org/04ssjv946 Instituto de Investigación y Desarrollo en Bioingeniería y BioinformÔtica'),
(88053, 'https://ror.org/057xcp713', 'en', 1, 'https://ror.org/057xcp713 Neil A. Armstrong Test Facility'),
(88054, 'https://ror.org/01p7gwa14', 'en', 1, 'https://ror.org/01p7gwa14 NASA Shared Services Center'),
(88055, 'https://ror.org/03eavg217', 'no_lang_code', 1, 'https://ror.org/03eavg217 PulseRay (United States)'),
(88056, 'https://ror.org/00gzyyt68', 'en', 1, 'https://ror.org/00gzyyt68 Child Care And Youth Empowerment Foundation'),
(88057, 'https://ror.org/05kams409', 'no_lang_code', 1, 'https://ror.org/05kams409 Novalex Therapeutics (United States)'),
(88058, 'https://ror.org/050b84r37', 'no_lang_code', 1, 'https://ror.org/050b84r37 X-Spectrum (Germany)'),
(88059, 'https://ror.org/026t7ep26', 'no_lang_code', 1, 'https://ror.org/026t7ep26 Curium (France)'),
(88060, 'https://ror.org/01w1q7x19', 'en', 1, 'https://ror.org/01w1q7x19 Oregon Space Grant Consortium'),
(88061, 'https://ror.org/030q96973', 'no_lang_code', 1, 'https://ror.org/030q96973 Helix Biostructures (United States)'),
(88062, 'https://ror.org/05q79g396', 'en', 1, 'https://ror.org/05q79g396 Infrared Processing and Analysis Center'),
(88063, 'https://ror.org/03db5ay71', 'en', 1, 'https://ror.org/03db5ay71 Yale Peabody Museum'),
(88064, 'https://ror.org/04f1rr989', 'es', 1, 'https://ror.org/04f1rr989 Centro de Estudios, Medición y Certificación de Calidad'),
(88065, 'https://ror.org/04n143x36', 'es', 1, 'https://ror.org/04n143x36 Unidad Ejecutora Lillo'),
(88066, 'https://ror.org/00v757448', 'no_lang_code', 1, 'https://ror.org/00v757448 Iris Light Technologies (United States)'),
(88067, 'https://ror.org/03efe6r86', 'no_lang_code', 1, 'https://ror.org/03efe6r86 MyoKardia (United States)'),
(88068, 'https://ror.org/033a24x98', 'en', 1, 'https://ror.org/033a24x98 Banner Poison and Drug Information Center'),
(88069, 'https://ror.org/03g6yjn97', 'no_lang_code', 1, 'https://ror.org/03g6yjn97 Form Energy (United States)'),
(88070, 'https://ror.org/042607708', 'en', 1, 'https://ror.org/042607708 Earth System Science Interdisciplinary Center'),
(88071, 'https://ror.org/055a50447', 'fr', 1, 'https://ror.org/055a50447 ISIPCA'),
(88072, 'https://ror.org/0594de127', 'es', 1, 'https://ror.org/0594de127 Instituto de Botanica Darwinion'),
(88073, 'https://ror.org/05169vt89', 'no_lang_code', 1, 'https://ror.org/05169vt89 Pro-Metrics (Estonia)'),
(88074, 'https://ror.org/047sq9m91', 'no_lang_code', 1, 'https://ror.org/047sq9m91 Improved Pharma (United States)'),
(88075, 'https://ror.org/00kwm3d29', 'es', 1, 'https://ror.org/00kwm3d29 Centro Científico Tecnológico - San Juan'),
(88076, 'https://ror.org/03xpgm538', 'es', 1, 'https://ror.org/03xpgm538 Hospital de Montilla'),
(88077, 'https://ror.org/03cg0em39', 'en', 1, 'https://ror.org/03cg0em39 Directorate General for Specifications and Measurements'),
(88078, 'https://ror.org/00wks2x74', 'en', 1, 'https://ror.org/00wks2x74 Indiana Space Grant Consortium'),
(88079, 'https://ror.org/03bckkk69', 'no_lang_code', 1, 'https://ror.org/03bckkk69 Pajarito Powder (United States)'),
(88080, 'https://ror.org/04xr3m042', 'en', 1, 'https://ror.org/04xr3m042 Katherine Johnson Independent Verification and Validation Facility'),
(88081, 'https://ror.org/03vq5n859', 'en', 1, 'https://ror.org/03vq5n859 Banner Heart Hospital'),
(88082, 'https://ror.org/038n0qb29', 'es', 1, 'https://ror.org/038n0qb29 Centro Científico Tecnológico - Patagonia Norte'),
(88083, 'https://ror.org/03rtq6c48', 'en', 1, 'https://ror.org/03rtq6c48 Ministry of the Environment'),
(88084, 'https://ror.org/03w8cva37', 'es', 1, 'https://ror.org/03w8cva37 Centro Científico Tecnológico - TucumÔn'),
(88085, 'https://ror.org/000psgr90', 'en', 1, 'https://ror.org/000psgr90 Volodymyr Vynnychenko Central Ukrainian State University Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВолоГимира Винниченка'),
(88086, 'https://ror.org/012kq6w06', 'no_lang_code', 1, 'https://ror.org/012kq6w06 Finnish Research and Engineering (Finland)'),
(88087, 'https://ror.org/04vzby140', 'no_lang_code', 1, 'https://ror.org/04vzby140 Capsida Biotherapeutics (United States)'),
(88088, 'https://ror.org/01a67ma74', 'en', 1, 'https://ror.org/01a67ma74 The Federal State Budget Scientific Institution "Institute of Special Education" Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коррекционной пеГагогики»'),
(88089, 'https://ror.org/00wryzy45', 'id', 1, 'https://ror.org/00wryzy45 Sekolah Tinggi Agama Kristen Teruna Bhakti'),
(88090, 'https://ror.org/04vhn6x78', 'es', 1, 'https://ror.org/04vhn6x78 Instituto Multidisciplinario de BiologĆ­a Vegetal Multidisciplinary Institute of Plant Biology'),
(88091, 'https://ror.org/03h8kez92', 'no_lang_code', 1, 'https://ror.org/03h8kez92 Shoei Chemical (Japan) ę˜­ę „åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(88092, 'https://ror.org/05b5wvf11', 'en', 0, 'https://ror.org/05b5wvf11 Aircraft Engine Research Laboratory'),
(88093, 'https://ror.org/03y8mtb59', 'en', 1, 'https://ror.org/03y8mtb59 Jordan University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(88094, 'https://ror.org/04q7emk12', 'no_lang_code', 1, 'https://ror.org/04q7emk12 C12 Quantum Electronics (France)'),
(88095, 'https://ror.org/05385qm47', 'no_lang_code', 1, 'https://ror.org/05385qm47 Axalta Coating Systems (United States)'),
(88096, 'https://ror.org/00z0akp07', 'pt', 1, 'https://ror.org/00z0akp07 ABRAN - Associação Brasileira de Nutrologia ABRAN - Brazilian Association of Nutrology'),
(88097, 'https://ror.org/022sw4578', 'en', 1, 'https://ror.org/022sw4578 Nationaal Lucht- en Ruimtevaartlaboratorium Netherlands Aerospace Centre'),
(88098, 'https://ror.org/00emjrx81', 'no_lang_code', 1, 'https://ror.org/00emjrx81 State Grid Nanjing Power Supply Company (China) å›½ē½‘ę±Ÿč‹ēœē”µåŠ›ęœ‰é™å…¬åø'),
(88099, 'https://ror.org/010ww9x09', 'en', 1, 'https://ror.org/010ww9x09 Virginia Space Grant Consortium'),
(88100, 'https://ror.org/01bvz2w43', 'en', 1, 'https://ror.org/01bvz2w43 Museo Paleontológico Egidio Feruglio Museum of Paleontology Egidio Feruglio'),
(88101, 'https://ror.org/05fczbb21', 'no_lang_code', 1, 'https://ror.org/05fczbb21 Appco Pharma (United States)'),
(88102, 'https://ror.org/0469ejq24', 'es', 1, 'https://ror.org/0469ejq24 Instituto de Química y Fisicoquímica Biológicas'),
(88103, 'https://ror.org/049c9q337', 'en', 1, 'https://ror.org/049c9q337 Banner MD Anderson Cancer Center'),
(88104, 'https://ror.org/027n40j28', 'en', 0, 'https://ror.org/027n40j28 Clarion University'),
(88105, 'https://ror.org/01pamva12', 'bs', 1, 'https://ror.org/01pamva12 Institut za vode doo Bijeljina'),
(88106, 'https://ror.org/00acv8d41', 'sv', 1, 'https://ror.org/00acv8d41 Chalmers Industriteknik'),
(88107, 'https://ror.org/03j517g53', 'en', 1, 'https://ror.org/03j517g53 Argentine-German Geodetic Observatory Argentinisch-Deutsche GeodƤtische Observatorium Observatorio Argentino-AlemƔn de Geodesia'),
(88108, 'https://ror.org/01wmcm405', 'en', 0, 'https://ror.org/01wmcm405 Muroc Army Air Base'),
(88109, 'https://ror.org/03j9e2j92', 'en', 1, 'https://ror.org/03j9e2j92 Stennis Space Center'),
(88110, 'https://ror.org/02pe09j37', 'it', 1, 'https://ror.org/02pe09j37 Institute of Legal Informatics and Judicial Systems Istituto di Informatica Giuridica e Sistemi Giudiziari'),
(88111, 'https://ror.org/03akk0h64', 'no_lang_code', 1, 'https://ror.org/03akk0h64 K&L Gates (United States)'),
(88112, 'https://ror.org/021b1zt89', 'es', 1, 'https://ror.org/021b1zt89 Ministerio de Desarrollo Rural y Tierras Ministry of Rural Development and Lands'),
(88113, 'https://ror.org/018959f85', 'de', 1, 'https://ror.org/018959f85 DECHEMA Research Institute DECHEMA-Forschungsinstitut'),
(88114, 'https://ror.org/00jxr5c40', 'en', 1, 'https://ror.org/00jxr5c40 Tashkent State Transport University Toshkent temir yoŹ»l muhandislari instituti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инженеров железноГорожного транспорта'),
(88115, 'https://ror.org/059mr5v89', 'pt', 1, 'https://ror.org/059mr5v89 Centro UniversitÔrio União Dinâmica das Cataratas'),
(88116, 'https://ror.org/048f36m54', 'es', 1, 'https://ror.org/048f36m54 Instituto de Tecnologías en Detección y Astropartículas'),
(88117, 'https://ror.org/057n33556', 'no_lang_code', 1, 'https://ror.org/057n33556 Solution Engineering (United States)'),
(88118, 'https://ror.org/01s3dpm97', 'en', 1, 'https://ror.org/01s3dpm97 National Space Science and Technology Center'),
(88119, 'https://ror.org/0312hfy93', 'en', 1, 'https://ror.org/0312hfy93 Biochemical Society'),
(88120, 'https://ror.org/001n0zm21', 'en', 0, 'https://ror.org/001n0zm21 Edinboro University'),
(88121, 'https://ror.org/00k575643', 'en', 1, 'https://ror.org/00k575643 National Synchrotron Radiation Research Center åœ‹å®¶åŒę­„č¼»å°„ē ”ē©¶äø­åæƒ;'),
(88122, 'https://ror.org/016p83279', 'es', 1, 'https://ror.org/016p83279 Hospital Universitario Virgen Macarena'),
(88123, 'https://ror.org/05et1xd41', 'es', 1, 'https://ror.org/05et1xd41 Instituto de Ciencia y TecnologĆ­a de los Alimentos de Entre RĆ­os'),
(88124, 'https://ror.org/02w1e0787', 'no_lang_code', 1, 'https://ror.org/02w1e0787 Advantech (United States)'),
(88125, 'https://ror.org/05269d038', 'no_lang_code', 1, 'https://ror.org/05269d038 China National Petroleum Corporation (China) å¤§åŗ†ę²¹ē”°ęœ‰é™č“£ä»»å…¬åøę²¹ē”°å»ŗč®¾č®¾č®”ē ”ē©¶é™¢'),
(88126, 'https://ror.org/01svqwd91', 'no_lang_code', 1, 'https://ror.org/01svqwd91 ExOne (United States)'),
(88127, 'https://ror.org/03cbpc337', 'en', 0, 'https://ror.org/03cbpc337 National Advisory Committee for Aeronautics'),
(88128, 'https://ror.org/037xbgq12', 'en', 1, 'https://ror.org/037xbgq12 Health Research Institute of the Balearic Islands Institut d''Investigació Sanitària Illes Balears Instituto de Investigación Sanitaria Illes Balears'),
(88129, 'https://ror.org/02asmqs25', 'no_lang_code', 1, 'https://ror.org/02asmqs25 Odyssey Therapeutics (United States)'),
(88130, 'https://ror.org/05gaped89', 'es', 1, 'https://ror.org/05gaped89 Laboratorio Tecnológico del Uruguay'),
(88131, 'https://ror.org/01spssf70', 'en', 1, 'https://ror.org/01spssf70 California University of Pennsylvania'),
(88132, 'https://ror.org/02xa99s59', 'en', 1, 'https://ror.org/02xa99s59 Maine Space Grant Consortium'),
(88133, 'https://ror.org/00paqx037', 'no_lang_code', 1, 'https://ror.org/00paqx037 Alcorix (United States)'),
(88134, 'https://ror.org/00f5kdg89', 'no_lang_code', 1, 'https://ror.org/00f5kdg89 Hyundai Kefico (South Korea) ķ˜„ėŒ€ģ¼€ķ”¼ģ½”'),
(88135, 'https://ror.org/04hccab49', 'en', 1, 'https://ror.org/04hccab49 NASA Research Park'),
(88136, 'https://ror.org/01w89ke06', 'en', 1, 'https://ror.org/01w89ke06 Trinidad and Tobago Bureau of Standards'),
(88137, 'https://ror.org/03eanvk76', 'en', 1, 'https://ror.org/03eanvk76 Glenbrook North High School'),
(88138, 'https://ror.org/039fsvq67', 'no_lang_code', 1, 'https://ror.org/039fsvq67 Hyperion Materials & Technologies (United States)'),
(88139, 'https://ror.org/056mbsx32', 'no_lang_code', 1, 'https://ror.org/056mbsx32 TerraPower (United States)'),
(88140, 'https://ror.org/01z3hs762', 'no_lang_code', 1, 'https://ror.org/01z3hs762 Hansoh Pharma (China) ę±‰ē“¢åˆ¶čÆ'),
(88141, 'https://ror.org/04vf9tr09', 'en', 1, 'https://ror.org/04vf9tr09 Innovation and Technology Commission å‰µę–°ē§‘ęŠ€ē½²'),
(88142, 'https://ror.org/04vecb011', 'no_lang_code', 1, 'https://ror.org/04vecb011 Erasca (United States)'),
(88143, 'https://ror.org/01ktqem13', 'es', 1, 'https://ror.org/01ktqem13 Centro Científico Tecnológico - Nordeste'),
(88144, 'https://ror.org/01as2bh37', 'en', 0, 'https://ror.org/01as2bh37 Institute of Legal Information Theory and Techniques Istituto di Teoria e Tecniche dell’Informazione Giuridica'),
(88145, 'https://ror.org/02a0qqh56', 'no_lang_code', 1, 'https://ror.org/02a0qqh56 aixACCT Systems (United States)'),
(88146, 'https://ror.org/00nsjbm45', 'no_lang_code', 1, 'https://ror.org/00nsjbm45 Hansoh Bio (United States)'),
(88147, 'https://ror.org/03cpe7c52', 'en', 1, 'https://ror.org/03cpe7c52 Allen Institute'),
(88148, 'https://ror.org/00zbzej19', 'fr', 1, 'https://ror.org/00zbzej19 Centre FranƧais des Ɖtudes Ɖthiopiennes'),
(88149, 'https://ror.org/03hkqr723', 'no_lang_code', 1, 'https://ror.org/03hkqr723 HathiTrust'),
(88150, 'https://ror.org/04m5bjk54', 'nl', 1, 'https://ror.org/04m5bjk54 Dutch Language Institute Instituut voor de Nederlandse Taal'),
(88151, 'https://ror.org/00ys8p410', 'es', 1, 'https://ror.org/00ys8p410 Instituto Nacional de Innovación Agropecuaria y Forestal'),
(88152, 'https://ror.org/01stnk488', 'en', 1, 'https://ror.org/01stnk488 National Science and Technology Center for Disaster Reduction åœ‹å®¶ē½å®³é˜²ę•‘ē§‘ęŠ€äø­åæƒ'),
(88153, 'https://ror.org/05yqfsf29', 'es', 1, 'https://ror.org/05yqfsf29 Centro Científico Tecnológico Mar del Plata'),
(88154, 'https://ror.org/049xnr573', 'es', 1, 'https://ror.org/049xnr573 Centro Científico Tecnológico Patagónico'),
(88155, 'https://ror.org/02ws49r51', 'en', 1, 'https://ror.org/02ws49r51 Nuclear Energy Research Institute'),
(88156, 'https://ror.org/040b34t59', 'no_lang_code', 1, 'https://ror.org/040b34t59 Desktop Metal (United States)'),
(88157, 'https://ror.org/05g467k04', 'en', 1, 'https://ror.org/05g467k04 Mechnikov Institute of Microbiology and Immunology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŃ–ŠŗŃ€Š¾Š±Ń–Š¾Š»Š¾Š³Ń–Ń— та Š†Š¼ŃƒŠ½Š¾Š»Š¾Š³Ń–Ń— ім. І. І. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(88158, 'https://ror.org/018wb2371', 'no_lang_code', 1, 'https://ror.org/018wb2371 FluxSense AB (Sweden)'),
(88159, 'https://ror.org/00nr2vg89', 'en', 1, 'https://ror.org/00nr2vg89 New Mexico Space Grant Consortium'),
(88160, 'https://ror.org/01ezjqh37', 'en', 1, 'https://ror.org/01ezjqh37 Delta Waterfowl Foundation'),
(88161, 'https://ror.org/01qkxb782', 'es', 1, 'https://ror.org/01qkxb782 Centro Científico Tecnólogico - Rosario'),
(88162, 'https://ror.org/01zxeqp62', 'no_lang_code', 1, 'https://ror.org/01zxeqp62 Aurobay (Sweden)'),
(88163, 'https://ror.org/0249rpb20', 'en', 1, 'https://ror.org/0249rpb20 Mississippi Space Grant Consortium'),
(88164, 'https://ror.org/00ry7rd40', 'es', 1, 'https://ror.org/00ry7rd40 Colombiana de Trasplantes'),
(88165, 'https://ror.org/01zzcvm19', 'en', 1, 'https://ror.org/01zzcvm19 Kurdistan Technical Institute Ł¾Ū•ŪŒŁ…Ų§Ł†ŚÆŪ•ŪŒ ŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ Ś©ŁˆŲ±ŲÆŲ³ŲŖŲ§Ł†'),
(88166, 'https://ror.org/05chny950', 'en', 1, 'https://ror.org/05chny950 Institute of Encyclopedic Research Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ енциклопеГичних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України"'),
(88167, 'https://ror.org/03nh7vj77', 'no_lang_code', 1, 'https://ror.org/03nh7vj77 aixACCT Systems (Germany)'),
(88168, 'https://ror.org/055y4y749', 'en', 1, 'https://ror.org/055y4y749 Manatū Ahu Matua Ministry for Primary Industries'),
(88169, 'https://ror.org/022qmyy53', 'en', 1, 'https://ror.org/022qmyy53 Research Institute for Advanced Computer Science'),
(88170, 'https://ror.org/03bjcbf76', 'en', 1, 'https://ror.org/03bjcbf76 ICAR - National Meat Research Institute ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ- ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ मांस ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(88171, 'https://ror.org/01bedhb92', 'no_lang_code', 1, 'https://ror.org/01bedhb92 GCP Applied Technologies (United States)'),
(88172, 'https://ror.org/02r8b4p12', 'es', 1, 'https://ror.org/02r8b4p12 Centro Científico Tecnológico - San Luis'),
(88173, 'https://ror.org/023744w94', 'no_lang_code', 1, 'https://ror.org/023744w94 Cogent Biosciences (United States)'),
(88174, 'https://ror.org/00mv4xe50', 'no_lang_code', 1, 'https://ror.org/00mv4xe50 Rio Tinto (Canada)'),
(88175, 'https://ror.org/033a1rv92', 'no_lang_code', 1, 'https://ror.org/033a1rv92 Hitachi High-Tech (Japan) ę—„ē«‹ćƒć‚¤ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(88176, 'https://ror.org/00dzfmv17', 'en', 1, 'https://ror.org/00dzfmv17 Training Centre in Communication'),
(88177, 'https://ror.org/02t4ckn04', 'no_lang_code', 1, 'https://ror.org/02t4ckn04 Phase 3D (United States)'),
(88178, 'https://ror.org/05weh0w64', 'no_lang_code', 1, 'https://ror.org/05weh0w64 Vita Nuova (United Kingdom)'),
(88179, 'https://ror.org/031p18647', 'no_lang_code', 1, 'https://ror.org/031p18647 Sylvatex (United States)'),
(88180, 'https://ror.org/05dvgav47', 'de', 0, 'https://ror.org/05dvgav47 Generaldirektion Wasserstraßen und Schifffahrt'),
(88181, 'https://ror.org/05rgrbr06', 'en', 1, 'https://ror.org/05rgrbr06 Dana-Farber Brigham Cancer Center'),
(88182, 'https://ror.org/052tfzs89', 'en', 1, 'https://ror.org/052tfzs89 Plum Island Ecosystems Long Term Ecological Research'),
(88183, 'https://ror.org/00z2tp793', 'en', 1, 'https://ror.org/00z2tp793 Center for Neuro-Oncology'),
(88184, 'https://ror.org/03ky85k46', 'en', 1, 'https://ror.org/03ky85k46 Cheshire and Wirral Partnership NHS Foundation Trust'),
(88185, 'https://ror.org/00hqcx089', 'no_lang_code', 1, 'https://ror.org/00hqcx089 New Technologies and Services (Russia) ŠŠ¾Š²Ń‹Šµ Технологии'),
(88186, 'https://ror.org/04cxs7048', 'es', 1, 'https://ror.org/04cxs7048 Hospital Universitario de Valme'),
(88187, 'https://ror.org/027bk6125', 'no_lang_code', 1, 'https://ror.org/027bk6125 Instrumentation Technologies (Slovenia)'),
(88188, 'https://ror.org/003vet424', 'es', 1, 'https://ror.org/003vet424 Centro Científico Tecnológico - Santa Fe'),
(88189, 'https://ror.org/014wjf777', 'fr', 1, 'https://ror.org/014wjf777 Association Neurofibromatoses et Recklinghausen'),
(88190, 'https://ror.org/013nxtf56', 'en', 0, 'https://ror.org/013nxtf56 Istituto di Ricerca sui Sistemi Giudiziari The Research Institute on Judicial Systems'),
(88191, 'https://ror.org/021vtsa49', 'en', 1, 'https://ror.org/021vtsa49 Aero Institute'),
(88192, 'https://ror.org/01vhjs264', 'en', 1, 'https://ror.org/01vhjs264 Centro de Referencia de Investigación, Desarrollo e Innovación ATM Reference Center for Research, Development and Innovation in ATM'),
(88193, 'https://ror.org/005n5zv88', 'no_lang_code', 1, 'https://ror.org/005n5zv88 Volvo Cars (Sweden)'),
(88194, 'https://ror.org/00w20ev23', 'pt', 1, 'https://ror.org/00w20ev23 Faculdade Ceres'),
(88195, 'https://ror.org/04awsyj96', 'en', 1, 'https://ror.org/04awsyj96 Canteen'),
(88196, 'https://ror.org/009g6xd12', 'en', 1, 'https://ror.org/009g6xd12 Taichung Municipal Taichung First Senior High School č‡ŗäø­åø‚ē«‹č‡ŗäø­ē¬¬äø€é«˜ē“šäø­ē­‰å­øę ”'),
(88197, 'https://ror.org/00psb5b18', 'no_lang_code', 1, 'https://ror.org/00psb5b18 Advantech (Taiwan)'),
(88198, 'https://ror.org/02b06aj60', 'en', 1, 'https://ror.org/02b06aj60 World Association for Disaster and Emergency Medicine'),
(88199, 'https://ror.org/0042fhg98', 'no_lang_code', 1, 'https://ror.org/0042fhg98 FogPharma (United States)'),
(88200, 'https://ror.org/04cxrqq60', 'en', 0, 'https://ror.org/04cxrqq60 Clermont-Ferrand’s Superior National School of Chemistry Ɖcole nationale supĆ©rieure de chimie de Clermont-Ferrand'),
(88201, 'https://ror.org/043xbcd19', 'no_lang_code', 1, 'https://ror.org/043xbcd19 Namazi Hospital Ł…Ų¹Ų±ŁŪŒ ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł†Ł…Ų§Ų²ŪŒ'),
(88202, 'https://ror.org/007nqxr53', 'no_lang_code', 1, 'https://ror.org/007nqxr53 Kairos Power (United States)'),
(88203, 'https://ror.org/03200rt26', 'en', 1, 'https://ror.org/03200rt26 Portland Press'),
(88204, 'https://ror.org/00f65kq68', 'en', 1, 'https://ror.org/00f65kq68 Knud HĆøjgaards Foundation'),
(88205, 'https://ror.org/03pq4g524', 'en', 1, 'https://ror.org/03pq4g524 Louisiana Space Grant Consortium'),
(88206, 'https://ror.org/032rnm225', 'no_lang_code', 1, 'https://ror.org/032rnm225 Zymtronix (United States)'),
(88207, 'https://ror.org/02epydz83', 'en', 1, 'https://ror.org/02epydz83 Centre de Vol Spatial Marshall Centro Marshall de Vuelos Espaciales Marshall Space Flight Center'),
(88208, 'https://ror.org/020ns9z20', 'no_lang_code', 1, 'https://ror.org/020ns9z20 Hitachi Astemo (Japan) ę—„ē«‹Astemo'),
(88209, 'https://ror.org/01nysf027', 'en', 1, 'https://ror.org/01nysf027 Bonanza Creek Long Term Ecological Research'),
(88210, 'https://ror.org/01qxmdg18', 'no_lang_code', 0, 'https://ror.org/01qxmdg18 NASA Astrobiology Institute'),
(88211, 'https://ror.org/02exqgm79', 'no_lang_code', 1, 'https://ror.org/02exqgm79 Hitachi (Japan) ę—„ē«‹č£½ä½œę‰€'),
(88212, 'https://ror.org/02z0mvz29', 'en', 1, 'https://ror.org/02z0mvz29 NASA Safety Center'),
(88213, 'https://ror.org/03482ps02', 'en', 1, 'https://ror.org/03482ps02 National Institute of Airborne Acoustic Metrology'),
(88214, 'https://ror.org/04ded0672', 'en', 1, 'https://ror.org/04ded0672 Andalas University Universitas Andalas'),
(88215, 'https://ror.org/02f2g4464', 'en', 1, 'https://ror.org/02f2g4464 Jordan Research and Training Reactor مفاعل الأبحاث ŁˆŲ§Ł„ŲŖŲÆŲ±ŁŠŲØ Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ'),
(88216, 'https://ror.org/04921rg76', 'no_lang_code', 1, 'https://ror.org/04921rg76 Opcondys (United States)'),
(88217, 'https://ror.org/029jh9a85', 'id', 1, 'https://ror.org/029jh9a85 Mimika District General Hospital Rumah Sakit Umum Daerah Kabupaten Mimika'),
(88218, 'https://ror.org/03ad32c21', 'no_lang_code', 1, 'https://ror.org/03ad32c21 Husch Blackwell LLP (United States)'),
(88219, 'https://ror.org/04qzr9r50', 'es', 1, 'https://ror.org/04qzr9r50 Instituto Tecnológico de Chascomús'),
(88220, 'https://ror.org/046as0869', 'de', 1, 'https://ror.org/046as0869 Deutsche Geophysikalische Gesellschaft e.V. German Geophysical Society'),
(88221, 'https://ror.org/042rb7y02', 'no_lang_code', 1, 'https://ror.org/042rb7y02 Plug Power (United States)'),
(88222, 'https://ror.org/004t5s645', 'de', 1, 'https://ror.org/004t5s645 FOSSGIS'),
(88223, 'https://ror.org/031wk8e50', 'no_lang_code', 1, 'https://ror.org/031wk8e50 AlphaPortfolio (United States)'),
(88224, 'https://ror.org/0394f3t90', 'no_lang_code', 1, 'https://ror.org/0394f3t90 Chemours (United States)'),
(88225, 'https://ror.org/03nkv4177', 'en', 1, 'https://ror.org/03nkv4177 Advocacy Unified Network'),
(88226, 'https://ror.org/00y2dy597', 'en', 1, 'https://ror.org/00y2dy597 Qom University of Medical Science and Health Services دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی قم'),
(88227, 'https://ror.org/00sr2h055', 'en', 1, 'https://ror.org/00sr2h055 Banner Del E Webb Medical Center'),
(88228, 'https://ror.org/05b1jpg49', 'en', 1, 'https://ror.org/05b1jpg49 Idaho Space Grant Consortium'),
(88229, 'https://ror.org/01s1cx509', 'no_lang_code', 1, 'https://ror.org/01s1cx509 NanoPattern Technologies (United States)'),
(88230, 'https://ror.org/00hhe7195', 'en', 1, 'https://ror.org/00hhe7195 Ez-Zitouna University UniversitĆ© Ez-Zitouna Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų©'),
(88231, 'https://ror.org/01zntxg38', 'no_lang_code', 1, 'https://ror.org/01zntxg38 DisChem (United States)'),
(88232, 'https://ror.org/01xxhz462', 'no_lang_code', 1, 'https://ror.org/01xxhz462 Frontier Medicines (United States)'),
(88233, 'https://ror.org/05akpmt68', 'en', 1, 'https://ror.org/05akpmt68 National Gear Metrology Laboratory'),
(88234, 'https://ror.org/035h06756', 'en', 1, 'https://ror.org/035h06756 Magtymguly Turkmen State University Magtymguly adyndaky Türkmen döwlet uniwersiteti'),
(88235, 'https://ror.org/022qcpx83', 'no_lang_code', 1, 'https://ror.org/022qcpx83 AKHAN Semiconductor (United States)'),
(88236, 'https://ror.org/001ecav82', 'en', 1, 'https://ror.org/001ecav82 Bernardino Rivadavia Natural Sciences Museum Museo Argentino de Ciencias Naturales Bernardino Rivadavia'),
(88237, 'https://ror.org/01x4ctb78', 'fr', 1, 'https://ror.org/01x4ctb78 Institut National de Recherches et d''Analyses Physico-chimiques National Institute of Research and Physico and Chemical Analysis'),
(88238, 'https://ror.org/01s682d03', 'no_lang_code', 1, 'https://ror.org/01s682d03 Dragonfly Therapeutics (United States)'),
(88239, 'https://ror.org/01gv51w90', 'pt', 1, 'https://ror.org/01gv51w90 Instituto CTEM+'),
(88240, 'https://ror.org/01a6wy980', 'de', 1, 'https://ror.org/01a6wy980 Hugo Grotius'),
(88241, 'https://ror.org/03em45j53', 'en', 1, 'https://ror.org/03em45j53 Armstrong Flight Research Center Centro Dryden de Investigaciones de Vuelo'),
(88242, 'https://ror.org/02ypxbp79', 'es', 1, 'https://ror.org/02ypxbp79 Costa Rican Institute of Electricity Instituto Costarricense de Electricidad'),
(88243, 'https://ror.org/026873d40', 'en', 1, 'https://ror.org/026873d40 Indian Institute of Information Technology Sri City ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¶ą„ą¤°ą„€ ą¤øą¤æą¤Ÿą„€'),
(88244, 'https://ror.org/025q0f986', 'en', 0, 'https://ror.org/025q0f986 Unmanned Aerial Vehicle Collaborative'),
(88245, 'https://ror.org/05awj8b71', 'en', 1, 'https://ror.org/05awj8b71 Maharishi Vedic Research Institute'),
(88246, 'https://ror.org/02hdxwp38', 'no_lang_code', 1, 'https://ror.org/02hdxwp38 IniXium (Canada)'),
(88247, 'https://ror.org/02efc3n22', 'no_lang_code', 1, 'https://ror.org/02efc3n22 Qlab Analytical Laboratory (Greece)'),
(88248, 'https://ror.org/03xf80p12', 'en', 1, 'https://ror.org/03xf80p12 New England Botanical Club'),
(88249, 'https://ror.org/0131vfw26', 'es', 1, 'https://ror.org/0131vfw26 Complejo Hospitalario de Salamanca'),
(88250, 'https://ror.org/04mgxhr44', 'en', 1, 'https://ror.org/04mgxhr44 Mugda Medical College মুগদা মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(88251, 'https://ror.org/05t0v7d07', 'en', 1, 'https://ror.org/05t0v7d07 Iowa Department of Transportation'),
(88252, 'https://ror.org/040k5fq90', 'fi', 1, 'https://ror.org/040k5fq90 OLVI-SƤƤtiƶ'),
(88253, 'https://ror.org/0021fvv57', 'en', 1, 'https://ror.org/0021fvv57 ICTP South American Institute for Fundamental Research'),
(88254, 'https://ror.org/008kdr741', 'pt', 1, 'https://ror.org/008kdr741 Hospital UniversitƔrio GaffrƩe e Guinle'),
(88255, 'https://ror.org/01bp8jn44', 'en', 0, 'https://ror.org/01bp8jn44 Langley Memorial Aeronautical Laboratory'),
(88256, 'https://ror.org/040hhjv66', 'en', 1, 'https://ror.org/040hhjv66 ESCP Business School'),
(88257, 'https://ror.org/01yc93g67', 'en', 1, 'https://ror.org/01yc93g67 Doncaster and Bassetlaw Teaching Hospitals NHS Foundation Trust'),
(88258, 'https://ror.org/033yb0967', 'fr', 1, 'https://ror.org/033yb0967 Henri-Mondor University Hospital HƓpitaux Universitaires Henri-Mondor'),
(88259, 'https://ror.org/04xge9533', 'en', 1, 'https://ror.org/04xge9533 Belize Bureau of Standards'),
(88260, 'https://ror.org/0248n9g36', 'en', 1, 'https://ror.org/0248n9g36 New Mexico Department of Game and Fish'),
(88261, 'https://ror.org/0558r1s97', 'es', 1, 'https://ror.org/0558r1s97 Instituto Tecnológico de Ciudad JuÔrez Technological Institute of Ciudad JuÔrez'),
(88262, 'https://ror.org/032crvm08', 'de', 1, 'https://ror.org/032crvm08 Ernst Gƶhner Stiftung'),
(88263, 'https://ror.org/016b66y19', 'es', 1, 'https://ror.org/016b66y19 Hospital Christus Muguerza Alta Especialidad'),
(88264, 'https://ror.org/03c240v55', 'en', 1, 'https://ror.org/03c240v55 American Malacological Society'),
(88265, 'https://ror.org/056e97x14', 'sv', 1, 'https://ror.org/056e97x14 Gyllenstiernska Krapperupsstiftelsen'),
(88266, 'https://ror.org/01r8xsy94', 'en', 1, 'https://ror.org/01r8xsy94 ESCP Business School'),
(88267, 'https://ror.org/050zdfe57', 'en', 1, 'https://ror.org/050zdfe57 United States Army Medical Research Directorate - West'),
(88268, 'https://ror.org/017k80q27', 'en', 1, 'https://ror.org/017k80q27 Birmingham Children''s Hospital'),
(88269, 'https://ror.org/01g9pm929', 'en', 1, 'https://ror.org/01g9pm929 International Iguana Foundation'),
(88270, 'https://ror.org/00jwxmn37', 'en', 1, 'https://ror.org/00jwxmn37 Calleva Foundation'),
(88271, 'https://ror.org/04x0n1b46', 'en', 1, 'https://ror.org/04x0n1b46 Global Young Academy'),
(88272, 'https://ror.org/02g3yb373', 'en', 1, 'https://ror.org/02g3yb373 Dominica Bureau of Standards'),
(88273, 'https://ror.org/04e5mhx31', 'no_lang_code', 1, 'https://ror.org/04e5mhx31 Vonova (United States)'),
(88274, 'https://ror.org/0192qrt53', 'en', 1, 'https://ror.org/0192qrt53 Pushchino Scientific Center for Biological Research Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Ā«ŠŸŃƒŃ‰ŠøŠ½ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр биологических исслеГований Российской АкаГемии наук»'),
(88275, 'https://ror.org/05fvy0w58', 'en', 1, 'https://ror.org/05fvy0w58 Dorrance Family Foundation'),
(88276, 'https://ror.org/04v9gtz82', 'en', 1, 'https://ror.org/04v9gtz82 Office of the Royal Society ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø£ąø²ąøŠąøšąø±ąø“ąø‘ąø“ąø•ąø¢ąøŖąø ąø²'),
(88277, 'https://ror.org/01rmh9n78', 'en', 1, 'https://ror.org/01rmh9n78 University of New Hampshire UniversitƩ du New Hampshire'),
(88278, 'https://ror.org/05r9vkr23', 'en', 1, 'https://ror.org/05r9vkr23 Fondation Richard-Lounsbery Richard Lounsbery Foundation'),
(88279, 'https://ror.org/05g27v878', 'en', 1, 'https://ror.org/05g27v878 Asociación de Ornitólogos de Campo Association of Field Ornithologists Associação de Ornitólogos de Campo'),
(88280, 'https://ror.org/037gaxk79', 'en', 1, 'https://ror.org/037gaxk79 Muley Fanatic Foundation'),
(88281, 'https://ror.org/04537p149', 'no_lang_code', 1, 'https://ror.org/04537p149 Emerson Collective (United States)'),
(88282, 'https://ror.org/05abm5d81', 'nl', 1, 'https://ror.org/05abm5d81 Ministerie van Economische Zaken, Ondernemerschap en Technologische Innovatie Ministry of Economic Affairs, Entrepreneurship and Technological Innovation'),
(88283, 'https://ror.org/02881dh04', 'en', 1, 'https://ror.org/02881dh04 Neotropical Bird Club'),
(88284, 'https://ror.org/0310sdb05', 'no_lang_code', 1, 'https://ror.org/0310sdb05 Syngenta (France)'),
(88285, 'https://ror.org/050xdz686', 'en', 1, 'https://ror.org/050xdz686 Doncaster Royal Infirmary'),
(88286, 'https://ror.org/00gpq1s11', 'en', 1, 'https://ror.org/00gpq1s11 Center of New Drugs for Hypertension'),
(88287, 'https://ror.org/02acart68', 'en', 1, 'https://ror.org/02acart68 Ames Research Center Centro de Investigación Ames'),
(88288, 'https://ror.org/001g2x261', 'de', 1, 'https://ror.org/001g2x261 Institut für Unternehmenskybernetik'),
(88289, 'https://ror.org/030xrgd02', 'no', 1, 'https://ror.org/030xrgd02 Oslo Nye HĆøyskole'),
(88290, 'https://ror.org/015zq0969', 'en', 1, 'https://ror.org/015zq0969 Fiona Wood Foundation'),
(88291, 'https://ror.org/00bxym797', 'en', 1, 'https://ror.org/00bxym797 United States Army Medical Research Directorate - Africa'),
(88292, 'https://ror.org/00c33a344', 'en', 1, 'https://ror.org/00c33a344 American Friends of the Alexander von Humboldt Foundation'),
(88293, 'https://ror.org/039vj6345', 'en', 1, 'https://ror.org/039vj6345 Ichimura Foundation of New Technology åø‚ę‘ęø…ę–°ęŠ€č”“č²”å›£'),
(88294, 'https://ror.org/004n3ms37', 'en', 1, 'https://ror.org/004n3ms37 European Society for Paediatric Research'),
(88295, 'https://ror.org/02e43d571', 'fr', 1, 'https://ror.org/02e43d571 ExpƩdition MED'),
(88296, 'https://ror.org/000epyr61', 'en', 1, 'https://ror.org/000epyr61 High Meadows Foundation'),
(88297, 'https://ror.org/01zn7ya31', 'en', 1, 'https://ror.org/01zn7ya31 Bell Museum of Natural History'),
(88298, 'https://ror.org/02yy35806', 'no_lang_code', 1, 'https://ror.org/02yy35806 AmƩlie - Ʃtudes environnementales et archƩologiques (France)'),
(88299, 'https://ror.org/016yqb229', 'it', 1, 'https://ror.org/016yqb229 Confederazione Generale Italiana del Lavoro'),
(88300, 'https://ror.org/055gynz44', 'en', 1, 'https://ror.org/055gynz44 Galapagos Conservation Trust'),
(88301, 'https://ror.org/03ktdv554', 'en', 1, 'https://ror.org/03ktdv554 Saint Vincent and the Grenadines Bureau of Standards'),
(88302, 'https://ror.org/01zayq778', 'no_lang_code', 1, 'https://ror.org/01zayq778 Pūrangakura'),
(88303, 'https://ror.org/05dm31p35', 'fr', 1, 'https://ror.org/05dm31p35 Sciences Po Lille'),
(88304, 'https://ror.org/001e78g50', 'es', 1, 'https://ror.org/001e78g50 Junta de Beneficencia de Guayaquil'),
(88305, 'https://ror.org/03ekm7858', 'en', 1, 'https://ror.org/03ekm7858 United States Army Medical Directorate - Armed Forces Research Institute of Medical Sciences'),
(88306, 'https://ror.org/036cr7267', 'en', 1, 'https://ror.org/036cr7267 California Ocean Protection Council'),
(88307, 'https://ror.org/05ey8rd88', 'en', 1, 'https://ror.org/05ey8rd88 Society for Academic Facilitation and Extension'),
(88308, 'https://ror.org/01bdta868', 'en', 1, 'https://ror.org/01bdta868 Temerty Family Foundation'),
(88309, 'https://ror.org/02rec2820', 'no', 1, 'https://ror.org/02rec2820 L. Meltzers HĆøyskolefond'),
(88310, 'https://ror.org/01b1wzf66', 'en', 1, 'https://ror.org/01b1wzf66 Winifred Violet Scott Charitable Trust'),
(88311, 'https://ror.org/0540g1c48', 'en', 1, 'https://ror.org/0540g1c48 Radiation Biophysics Laboratory'),
(88312, 'https://ror.org/04bcx2629', 'nl', 1, 'https://ror.org/04bcx2629 Vogelbescherming Nederland'),
(88313, 'https://ror.org/02srqfw71', 'fr', 1, 'https://ror.org/02srqfw71 Centre MƩdical de La Teppe'),
(88314, 'https://ror.org/05h9gyn11', 'en', 1, 'https://ror.org/05h9gyn11 Paris Biotech SantƩ'),
(88315, 'https://ror.org/00gqsp710', 'it', 1, 'https://ror.org/00gqsp710 Osservatorio di Astrofisica e Scienza dello Spazio'),
(88316, 'https://ror.org/0318da180', 'en', 1, 'https://ror.org/0318da180 Guyana National Bureau of Standards'),
(88317, 'https://ror.org/01a4es322', 'en', 1, 'https://ror.org/01a4es322 Tiny Blue Dot Foundation'),
(88318, 'https://ror.org/03myq6178', 'no_lang_code', 1, 'https://ror.org/03myq6178 Oritain (New Zealand)'),
(88319, 'https://ror.org/026t9hg14', 'en', 1, 'https://ror.org/026t9hg14 International Higher School of Medicine ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š’Ń‹ŃŃˆŠ°Ń Школа ŠœŠµŠ“ицины Š­Š» аралык Š–Š¾Š³Š¾Ń€ŠŗŃƒ ŠœŠµŠ“ŠøŃ†ŠøŠ½Š°Š»Ń‹Šŗ ŠœŠµŠŗŃ‚ŠµŠ±Šø'),
(88320, 'https://ror.org/01k8df140', 'de', 1, 'https://ror.org/01k8df140 PƤdagogisches Landesinstitut Rheinland-Pfalz'),
(88321, 'https://ror.org/023rr0h32', 'fr', 1, 'https://ror.org/023rr0h32 Ecole SupƩrieure en GƩnie Electrique et EnergƩtique d''Oran'),
(88322, 'https://ror.org/04avfj734', 'es', 1, 'https://ror.org/04avfj734 Cabildo de Tenerife'),
(88323, 'https://ror.org/034evqj81', 'no_lang_code', 1, 'https://ror.org/034evqj81 Cryopep (France)'),
(88324, 'https://ror.org/04qjmsq15', 'pt', 1, 'https://ror.org/04qjmsq15 Escola Superior de CiĆŖncias da SaĆŗde'),
(88325, 'https://ror.org/00rbe2516', 'en', 1, 'https://ror.org/00rbe2516 Instituto Milenio de Física Subatómica en la Frontera de Altas Energías, Saphir Millennium Institute for Subatomic Physics at High-Energy Frontier, Saphir'),
(88326, 'https://ror.org/0516b6a83', 'en', 1, 'https://ror.org/0516b6a83 Minnesota Agricultural Experiment Station'),
(88327, 'https://ror.org/022hhqs29', 'en', 1, 'https://ror.org/022hhqs29 Utah Department of Transportation'),
(88328, 'https://ror.org/05m2ea140', 'en', 1, 'https://ror.org/05m2ea140 Saint Kitts and Nevis Bureau of Standards'),
(88329, 'https://ror.org/03tqx2a44', 'en', 1, 'https://ror.org/03tqx2a44 Yellowstone to Yukon Conservation Initiative'),
(88330, 'https://ror.org/01n5jbb65', 'es', 1, 'https://ror.org/01n5jbb65 Laboratorio Nacional de Materiales y Modelos Estructurales'),
(88331, 'https://ror.org/0128gh156', 'en', 1, 'https://ror.org/0128gh156 Central Institute For Subtropical Horticulture ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤‰ą¤Ŗą„‹ą¤·ą„ą¤£ ą¤¬ą¤¾ą¤—ą¤µą¤¾ą¤Øą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(88332, 'https://ror.org/000byjn55', 'en', 1, 'https://ror.org/000byjn55 Michigan Botanical Foundation'),
(88333, 'https://ror.org/056pdzs28', 'en', 1, 'https://ror.org/056pdzs28 The Herbert Wertheim UF Scripps Institute for Biomedical Innovation & Technology'),
(88334, 'https://ror.org/03em6xj44', 'es', 1, 'https://ror.org/03em6xj44 Instituto de Investigación Biomédica de Salamanca'),
(88335, 'https://ror.org/00nxspy78', 'en', 1, 'https://ror.org/00nxspy78 Marisla Foundation'),
(88336, 'https://ror.org/043z4tv69', 'en', 1, 'https://ror.org/043z4tv69 National Institute of Allergy and Infectious Diseases'),
(88337, 'https://ror.org/036tn3p81', 'id', 1, 'https://ror.org/036tn3p81 Politeknik Negeri Tanah Laut'),
(88338, 'https://ror.org/00k86w020', 'en', 1, 'https://ror.org/00k86w020 Cornell Lab of Ornithology'),
(88339, 'https://ror.org/0039pzg53', 'no_lang_code', 1, 'https://ror.org/0039pzg53 Globeride (Japan)'),
(88340, 'https://ror.org/02fek2d03', 'fr', 1, 'https://ror.org/02fek2d03 GERFLINT'),
(88341, 'https://ror.org/041vn3m43', 'en', 1, 'https://ror.org/041vn3m43 Peninsula Open Space Trust'),
(88342, 'https://ror.org/00n7gwn90', 'fr', 0, 'https://ror.org/00n7gwn90 SupĆ©lec Ɖcole supĆ©rieure d''Ć©lectricitĆ©'),
(88343, 'https://ror.org/01y0ef124', 'no', 1, 'https://ror.org/01y0ef124 Patentstyret'),
(88344, 'https://ror.org/00q3h2974', 'nl', 1, 'https://ror.org/00q3h2974 Vlaamse Interuniversitaire Raad'),
(88345, 'https://ror.org/04dj8jn04', 'no_lang_code', 1, 'https://ror.org/04dj8jn04 KWS Momont (France)'),
(88346, 'https://ror.org/00se21e39', 'en', 1, 'https://ror.org/00se21e39 Nick Simons Foundation'),
(88347, 'https://ror.org/01pczmy17', 'fr', 1, 'https://ror.org/01pczmy17 ISblue'),
(88348, 'https://ror.org/03hass884', 'en', 1, 'https://ror.org/03hass884 Ernst Ruska Centre Ernst Ruska-Centrum'),
(88349, 'https://ror.org/05srt5c29', 'en', 1, 'https://ror.org/05srt5c29 Australian Society of Herpetologists'),
(88350, 'https://ror.org/0145znz58', 'en', 1, 'https://ror.org/0145znz58 Walter Reed Army Institute of Research'),
(88351, 'https://ror.org/013x7x220', 'en', 1, 'https://ror.org/013x7x220 Earl H. and Ethel M. Myers Oceanographic and Marine Biology Trust'),
(88352, 'https://ror.org/047yt6z33', 'fr', 1, 'https://ror.org/047yt6z33 Ecole supƩrieure d''art | Dunkerque - Tourcoing'),
(88353, 'https://ror.org/03z6znw35', 'en', 1, 'https://ror.org/03z6znw35 Gerstner Philanthropies'),
(88354, 'https://ror.org/05ek4tb53', 'en', 1, 'https://ror.org/05ek4tb53 Public Knowledge Project'),
(88355, 'https://ror.org/05hq0zw41', 'en', 1, 'https://ror.org/05hq0zw41 The Oppenheimer Memorial Trust'),
(88356, 'https://ror.org/00dywyn19', 'en', 1, 'https://ror.org/00dywyn19 Forest Resource Improvement Association of Alberta'),
(88357, 'https://ror.org/02cbj3q28', 'en', 1, 'https://ror.org/02cbj3q28 David Suzuki Foundation Fondation David Suzuki'),
(88358, 'https://ror.org/04zfk0m49', 'en', 1, 'https://ror.org/04zfk0m49 Sociedad de Aves MarĆ­timas The Waterbird Society'),
(88359, 'https://ror.org/0454k6g38', 'en', 1, 'https://ror.org/0454k6g38 California Waterfowl Association'),
(88360, 'https://ror.org/02q3j1823', 'en', 1, 'https://ror.org/02q3j1823 Korea National Arboretum źµ­ė¦½ģˆ˜ėŖ©ģ›'),
(88361, 'https://ror.org/015kk2x11', 'en', 1, 'https://ror.org/015kk2x11 Galapagos Conservancy'),
(88362, 'https://ror.org/030yben02', 'sv', 1, 'https://ror.org/030yben02 Waldemar von Frenckells Stiftelse'),
(88363, 'https://ror.org/01yve5h66', 'en', 1, 'https://ror.org/01yve5h66 Zegar Family Foundation'),
(88364, 'https://ror.org/0399mhs52', 'en', 1, 'https://ror.org/0399mhs52 Langley Research Center'),
(88365, 'https://ror.org/006hc7f90', 'en', 1, 'https://ror.org/006hc7f90 Foundation for Food and Agriculture Research'),
(88366, 'https://ror.org/02gp9c631', 'en', 1, 'https://ror.org/02gp9c631 American Indonesian Exchange Foundation'),
(88367, 'https://ror.org/050q5pk40', 'pt', 1, 'https://ror.org/050q5pk40 Instituto Serrapilheira'),
(88368, 'https://ror.org/033kds850', 'en', 1, 'https://ror.org/033kds850 Philomathia Foundation'),
(88369, 'https://ror.org/009j6zj10', 'en', 1, 'https://ror.org/009j6zj10 International Cytokine & Interferon Society'),
(88370, 'https://ror.org/02j2d2g70', 'en', 1, 'https://ror.org/02j2d2g70 Ministry of Trade, Industry and Fisheries'),
(88371, 'https://ror.org/056d9c052', 'en', 0, 'https://ror.org/056d9c052 Hyogo University of Health Sciences å…µåŗ«åŒ»ē™‚å¤§å­¦'),
(88372, 'https://ror.org/023j60p87', 'es', 1, 'https://ror.org/023j60p87 Academia Joven de EspaƱa'),
(88373, 'https://ror.org/05ycqmp53', 'en', 1, 'https://ror.org/05ycqmp53 Australasian Systematic Botany Society'),
(88374, 'https://ror.org/03c8pfs06', 'es', 1, 'https://ror.org/03c8pfs06 Refinadora Costarricense de Petróleo'),
(88375, 'https://ror.org/05tbp1g38', 'de', 1, 'https://ror.org/05tbp1g38 Zeppelin Universität Zeppelin Universität gemeinnützige GmbH'),
(88376, 'https://ror.org/04xg8kp91', 'en', 1, 'https://ror.org/04xg8kp91 Sorenson Legacy Foundation'),
(88377, 'https://ror.org/023z9s103', 'no_lang_code', 1, 'https://ror.org/023z9s103 Dynasol Group (Spain)'),
(88378, 'https://ror.org/045s62606', 'fr', 1, 'https://ror.org/045s62606 GIP CEI'),
(88379, 'https://ror.org/036d5c397', 'en', 1, 'https://ror.org/036d5c397 ESCP Business School'),
(88380, 'https://ror.org/01qmm0x62', 'es', 1, 'https://ror.org/01qmm0x62 Healthcare Research Unit Unidad de Investigación en cuidados y servicios de salud (Investén-isciii)'),
(88381, 'https://ror.org/002hc6y19', 'it', 0, 'https://ror.org/002hc6y19 Bologna Astronomical Observatory Osservatorio astronomico di Bologna');
INSERT INTO `rors` VALUES
(88382, 'https://ror.org/00na1g793', 'en', 1, 'https://ror.org/00na1g793 AF Jochnick Foundation'),
(88383, 'https://ror.org/052nwcv16', 'en', 1, 'https://ror.org/052nwcv16 Knobloch Family Foundation'),
(88384, 'https://ror.org/01b4nv045', 'de', 1, 'https://ror.org/01b4nv045 Institut Jugend Film Fernsehen'),
(88385, 'https://ror.org/018d9zk51', 'en', 1, 'https://ror.org/018d9zk51 ESCP Business School'),
(88386, 'https://ror.org/02xredb51', 'fr', 1, 'https://ror.org/02xredb51 Ɖcole Nationale SupĆ©rieure d''Architecture et de Paysage de Lille'),
(88387, 'https://ror.org/03711y882', 'pt', 1, 'https://ror.org/03711y882 Instituto Histórico da Ilha Terceira'),
(88388, 'https://ror.org/0494fs390', 'en', 1, 'https://ror.org/0494fs390 Adlerbertska Foundations'),
(88389, 'https://ror.org/01p36j662', 'en', 1, 'https://ror.org/01p36j662 Royal Thai Army ąøąø­ąø‡ąø—ąø±ąøžąøšąøą¹„ąø—ąø¢'),
(88390, 'https://ror.org/01wn0y376', 'en', 1, 'https://ror.org/01wn0y376 American Malting Barley Association'),
(88391, 'https://ror.org/02ehsb520', 'en', 1, 'https://ror.org/02ehsb520 The Sackler Trust'),
(88392, 'https://ror.org/036x93b86', 'no_lang_code', 1, 'https://ror.org/036x93b86 Fluor Marine Propulsion (United States)'),
(88393, 'https://ror.org/02pfy0v45', 'en', 1, 'https://ror.org/02pfy0v45 American Arachnological Society'),
(88394, 'https://ror.org/0081b9a48', 'en', 1, 'https://ror.org/0081b9a48 Coypu Foundation'),
(88395, 'https://ror.org/05tqsdp97', 'fr', 1, 'https://ror.org/05tqsdp97 Bureau des Longitudes'),
(88396, 'https://ror.org/03xedy893', 'en', 1, 'https://ror.org/03xedy893 Auckland Council Te Kaunihera o Tāmaki Makaurau'),
(88397, 'https://ror.org/00v0y5771', 'fr', 0, 'https://ror.org/00v0y5771 Ɖcole Centrale Paris'),
(88398, 'https://ror.org/00hqaq407', 'en', 1, 'https://ror.org/00hqaq407 United States Army Medical Research Directorate - Georgia'),
(88399, 'https://ror.org/01e923890', 'en', 1, 'https://ror.org/01e923890 Sustainable Forestry Initiative'),
(88400, 'https://ror.org/04m6tvf27', 'en', 1, 'https://ror.org/04m6tvf27 Kansas Wheat Commission'),
(88401, 'https://ror.org/00v99wx36', 'fr', 1, 'https://ror.org/00v99wx36 UnitƩ de Recherche Interdisplinaire Octogone'),
(88402, 'https://ror.org/03g9t4w96', 'en', 1, 'https://ror.org/03g9t4w96 Pennsylvania Game Commission'),
(88403, 'https://ror.org/0480wgs39', 'en', 1, 'https://ror.org/0480wgs39 International Coral Reef Society'),
(88404, 'https://ror.org/01t3w3794', 'en', 1, 'https://ror.org/01t3w3794 Dayton School District'),
(88405, 'https://ror.org/023swxh49', 'en', 1, 'https://ror.org/023swxh49 Armed Forces Research Institute of Medical Science ąøŖąø–ąø²ąøšąø±ąø™ąø§ąø“ąøˆąø±ąø¢ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąøąø²ąø£ą¹ąøžąø—ąø¢ą¹Œąø—ąø«ąø²ąø£'),
(88406, 'https://ror.org/05h6gbr15', 'en', 1, 'https://ror.org/05h6gbr15 University of Mianwali'),
(88407, 'https://ror.org/02e63r690', 'en', 1, 'https://ror.org/02e63r690 The Mary E. Groff Charitable Trust'),
(88408, 'https://ror.org/02ge6fe64', 'no_lang_code', 1, 'https://ror.org/02ge6fe64 Daiwa Pharmaceutical Co. (Japan) å¤§å’Œč–¬å“ę Ŗå¼ä¼šē¤¾'),
(88409, 'https://ror.org/01t6xjw46', 'fr', 1, 'https://ror.org/01t6xjw46 CommunautƩ urbaine de Strasbourg EuromƩtropole de Strasbourg'),
(88410, 'https://ror.org/05y3vqm92', 'it', 0, 'https://ror.org/05y3vqm92 Rassegna Sindacale'),
(88411, 'https://ror.org/018kjvj80', 'en', 1, 'https://ror.org/018kjvj80 Barbados National Standards Institution'),
(88412, 'https://ror.org/01gwfq279', 'fr', 1, 'https://ror.org/01gwfq279 Agence Nationale de MĆ©trologie Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…ŲŖŲ±ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(88413, 'https://ror.org/00zw9nc64', 'en', 1, 'https://ror.org/00zw9nc64 University of Miami Health System'),
(88414, 'https://ror.org/03pnrep18', 'de', 1, 'https://ror.org/03pnrep18 Bernd Thies-Stiftung'),
(88415, 'https://ror.org/01c284h11', 'en', 1, 'https://ror.org/01c284h11 Departementenes sikkerhets- og serviceorganisasjon Norwegian Government Security and Service Organisation'),
(88416, 'https://ror.org/050yv1382', 'no_lang_code', 1, 'https://ror.org/050yv1382 JTEC Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ†ćƒƒć‚Æć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(88417, 'https://ror.org/02sshz518', 'en', 1, 'https://ror.org/02sshz518 Western Illinois University'),
(88418, 'https://ror.org/04kz0c205', 'en', 1, 'https://ror.org/04kz0c205 Rocky Mountain Elk Foundation'),
(88419, 'https://ror.org/01zwmgk08', 'en', 1, 'https://ror.org/01zwmgk08 Leibniz Institute for Neurobiology Leibniz-Institut für Neurobiologie'),
(88420, 'https://ror.org/02vzfsx67', 'fr', 1, 'https://ror.org/02vzfsx67 AcadƩmie de recherche et d''enseignement supƩrieur'),
(88421, 'https://ror.org/004c11w41', 'nl', 1, 'https://ror.org/004c11w41 Erasmus MC Cardiovascular Institute Erasmus MC Hart en Vaat Instituut'),
(88422, 'https://ror.org/01vneh441', 'de', 1, 'https://ror.org/01vneh441 Heinrich Bƶll Stiftung'),
(88423, 'https://ror.org/04d5vd162', 'en', 1, 'https://ror.org/04d5vd162 AI Sweden'),
(88424, 'https://ror.org/03qvyj198', 'en', 1, 'https://ror.org/03qvyj198 Higher Education Complex of Bam Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ ŲØŁ…'),
(88425, 'https://ror.org/019yvd402', 'no_lang_code', 1, 'https://ror.org/019yvd402 Exploration and Development Research Institute of PetroChina Southwest Oil & Gas Field Company (China) äø­å›½ēŸ³ę²¹č„æå—ę²¹ę°”ē”°å…¬åøå‹˜ęŽ¢å¼€å‘ē ”ē©¶é™¢'),
(88426, 'https://ror.org/000sy1f36', 'it', 0, 'https://ror.org/000sy1f36 Istituto di Astrofisica Spaziale e Fisica Cosmica di Bologna Istituto di astrofisica spaziale e fisica cosmica'),
(88427, 'https://ror.org/02m23mg23', 'en', 1, 'https://ror.org/02m23mg23 Wet Tropics Management Authority'),
(88428, 'https://ror.org/00emw6082', 'en', 1, 'https://ror.org/00emw6082 Henry L. and Grace Doherty Charitable Foundation'),
(88429, 'https://ror.org/03tms4174', 'en', 1, 'https://ror.org/03tms4174 Australian Academy of Health and Medical Sciences'),
(88430, 'https://ror.org/053694011', 'fr', 1, 'https://ror.org/053694011 Institut de Chirurgie GuidƩe par l''Image Institute of Image-Guided Surgery'),
(88431, 'https://ror.org/03d21k332', 'en', 1, 'https://ror.org/03d21k332 Genetics Society'),
(88432, 'https://ror.org/04k0s2970', 'en', 1, 'https://ror.org/04k0s2970 Tasmanian Government'),
(88433, 'https://ror.org/03y6k2j68', 'es', 1, 'https://ror.org/03y6k2j68 Universidad Católica de la Santísima Concepción'),
(88434, 'https://ror.org/05y46wh70', 'fr', 1, 'https://ror.org/05y46wh70 Fondation SantƩ des Ʃtudiants de France'),
(88435, 'https://ror.org/03xknvg10', 'en', 1, 'https://ror.org/03xknvg10 Wisconsin Potato and Vegetable Growers Association'),
(88436, 'https://ror.org/00rm5fa18', 'en', 1, 'https://ror.org/00rm5fa18 Garfield Weston Foundation'),
(88437, 'https://ror.org/01ba4x603', 'id', 1, 'https://ror.org/01ba4x603 STIKes Wira Medika Bali'),
(88438, 'https://ror.org/01qq57711', 'es', 1, 'https://ror.org/01qq57711 AndrƩs Bello University Universidad AndrƩs Bello'),
(88439, 'https://ror.org/00q7dn693', 'en', 1, 'https://ror.org/00q7dn693 American University of Europe Š¤ŠžŠ Универзитет'),
(88440, 'https://ror.org/014etd178', 'es', 1, 'https://ror.org/014etd178 Instituto de BiologĆ­a Marina y Pesquera Almirante Storni'),
(88441, 'https://ror.org/00dbxb330', 'en', 1, 'https://ror.org/00dbxb330 Antigua and Barbuda Bureau of Standards'),
(88442, 'https://ror.org/01c0kpy40', 'fr', 1, 'https://ror.org/01c0kpy40 ComitƩ National de Coordination de la Recherche'),
(88443, 'https://ror.org/03azy3k91', 'fr', 1, 'https://ror.org/03azy3k91 Maison des Sciences de l’Homme et de la SociĆ©tĆ© de Toulouse'),
(88444, 'https://ror.org/02885vs25', 'no_lang_code', 1, 'https://ror.org/02885vs25 Fluor (United States)'),
(88445, 'https://ror.org/020pqc882', 'en', 1, 'https://ror.org/020pqc882 National University of Tainan åœ‹ē«‹č‡ŗå—å¤§å­ø'),
(88446, 'https://ror.org/048py7387', 'en', 1, 'https://ror.org/048py7387 Ocean Frontier Institute'),
(88447, 'https://ror.org/02npznr18', 'en', 1, 'https://ror.org/02npznr18 Grenada Bureau of Standards'),
(88448, 'https://ror.org/05cwbxa29', 'en', 0, 'https://ror.org/05cwbxa29 The University of Texas Health Science Center'),
(88449, 'https://ror.org/04mnmrh54', 'fr', 1, 'https://ror.org/04mnmrh54 Saint-Gobain Recherche Paris'),
(88450, 'https://ror.org/01txtk792', 'en', 1, 'https://ror.org/01txtk792 The Danish Veteran Centre Veterancentret'),
(88451, 'https://ror.org/03mh7j916', 'en', 1, 'https://ror.org/03mh7j916 Department of Conservation'),
(88452, 'https://ror.org/0109kg923', 'en', 1, 'https://ror.org/0109kg923 Social Program Evaluators & Consultants, Inc.'),
(88453, 'https://ror.org/02vwykf33', 'fr', 1, 'https://ror.org/02vwykf33 ISEN MƩditerranƩe'),
(88454, 'https://ror.org/008ebma82', 'de', 1, 'https://ror.org/008ebma82 Historical Commission at the Bavarian Academy of Sciences and Humanities Historische Kommission bei der Bayerischen Akademie der Wissenschaften'),
(88455, 'https://ror.org/022mwqy43', 'en', 1, 'https://ror.org/022mwqy43 Jilin Academy of Agricultural Sciences å‰ęž—ēœå†œäøšē§‘å­¦é™¢'),
(88456, 'https://ror.org/03e40h485', 'de', 1, 'https://ror.org/03e40h485 BIO Deutschland'),
(88457, 'https://ror.org/04qcjsm24', 'en', 1, 'https://ror.org/04qcjsm24 Narodowy Instytut Onkologii im. Marii Skłodowskiej-Curie Państwowy Instytut Badawczy The Maria Sklodowska-Curie National Research Institute of Oncology'),
(88458, 'https://ror.org/025yypj46', 'en', 1, 'https://ror.org/025yypj46 National University Cancer Institute, Singapore'),
(88459, 'https://ror.org/01tn4vp83', 'en', 1, 'https://ror.org/01tn4vp83 An Roinn Comhshaoil, AerƔide agus CumarsƔide Department of the Environment, Climate and Communications'),
(88460, 'https://ror.org/0146z4r19', 'en', 1, 'https://ror.org/0146z4r19 National Center for Ecological Analysis and Synthesis'),
(88461, 'https://ror.org/05ev88143', 'fr', 1, 'https://ror.org/05ev88143 HƓpitaux de Saint Maurice'),
(88462, 'https://ror.org/022ethc91', 'en', 1, 'https://ror.org/022ethc91 Southern Research Station'),
(88463, 'https://ror.org/00wdsp051', 'en', 1, 'https://ror.org/00wdsp051 Cape Town HVTN Immunology Laboratory / Hutchinson Centre Research Institute of South Africa'),
(88464, 'https://ror.org/00dbkrq51', 'en', 1, 'https://ror.org/00dbkrq51 Cochrane'),
(88465, 'https://ror.org/04pk7mf78', 'en', 1, 'https://ror.org/04pk7mf78 Einstein Forum'),
(88466, 'https://ror.org/005b4k264', 'en', 1, 'https://ror.org/005b4k264 Center for Scientific Integrity'),
(88467, 'https://ror.org/00wmmfp02', 'en', 1, 'https://ror.org/00wmmfp02 Royal Society of Biology'),
(88468, 'https://ror.org/03hkswm52', 'en', 1, 'https://ror.org/03hkswm52 Forestry Commission England'),
(88469, 'https://ror.org/02kxbqc24', 'en', 1, 'https://ror.org/02kxbqc24 Kerman University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی کرمان'),
(88470, 'https://ror.org/04c3ebg91', 'en', 1, 'https://ror.org/04c3ebg91 Tokyo Metropolitan Tama Medical Center ę±äŗ¬éƒ½ē«‹å¤šę‘©ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(88471, 'https://ror.org/00a18kc17', 'en', 1, 'https://ror.org/00a18kc17 Al-Furqan Islamic Heritage Foundation'),
(88472, 'https://ror.org/03h7r5v07', 'it', 1, 'https://ror.org/03h7r5v07 Katholische Universität vom Heiligen Herzen KatoliŔka univerza Srca Jezusovega Universitat Catòlica del Sagrat Cor Università Cattolica del Sacro Cuore'),
(88473, 'https://ror.org/05ds44a85', 'en', 1, 'https://ror.org/05ds44a85 IBS Center for Climate Physics'),
(88474, 'https://ror.org/02d3h3h49', 'en', 1, 'https://ror.org/02d3h3h49 Belnet'),
(88475, 'https://ror.org/01pnwgf60', 'de', 1, 'https://ror.org/01pnwgf60 Historische Kommission zu Berlin e.V.'),
(88476, 'https://ror.org/03a4jx660', 'no_lang_code', 1, 'https://ror.org/03a4jx660 Chement (United States)'),
(88477, 'https://ror.org/01s578f14', 'de', 1, 'https://ror.org/01s578f14 Arnold-Bergstraesser-Institut'),
(88478, 'https://ror.org/0106d5c37', 'fr', 1, 'https://ror.org/0106d5c37 Centre Européen de Recherche en Economie Financière et Gestion des Entreprises Centro Europeo de Investigación en Economía Financiera y Gestión Empresaria European Center for Research in Financial Economics and Business Management Europäische Zentrum für Forschung in Finanzökonomie und Unternehmensführung'),
(88479, 'https://ror.org/010gxg263', 'fr', 1, 'https://ror.org/010gxg263 University of Quebec UniversitƩ du QuƩbec'),
(88480, 'https://ror.org/015dvgv60', 'no_lang_code', 1, 'https://ror.org/015dvgv60 Juris (Germany)'),
(88481, 'https://ror.org/047vggb09', 'no_lang_code', 1, 'https://ror.org/047vggb09 InfoEd Global (United States)'),
(88482, 'https://ror.org/05s10bc95', 'de', 1, 'https://ror.org/05s10bc95 Institut für Ostrecht Institute for East European Law'),
(88483, 'https://ror.org/04n4xt623', 'fr', 1, 'https://ror.org/04n4xt623 Ɖcole nationale supĆ©rieure de la photographie'),
(88484, 'https://ror.org/018f2hw88', 'en', 1, 'https://ror.org/018f2hw88 Hutchinson Centre Research Institute in Uganda'),
(88485, 'https://ror.org/02vsmry93', 'tr', 1, 'https://ror.org/02vsmry93 Türk Tarih Kurumu'),
(88486, 'https://ror.org/04pfac868', 'en', 0, 'https://ror.org/04pfac868 Bear Fight Institute'),
(88487, 'https://ror.org/05s6t3255', 'en', 1, 'https://ror.org/05s6t3255 Food Packaging Forum Foundation'),
(88488, 'https://ror.org/02s7vm534', 'en', 1, 'https://ror.org/02s7vm534 Fraunhofer Research Institution for Materials Recycling and Resource Strategies IWKS Fraunhofer-Einrichtung für Wertstoffkreisläufe und Ressourcenstrategie IWKS'),
(88489, 'https://ror.org/05fxqx152', 'en', 1, 'https://ror.org/05fxqx152 Ohio University Chillicothe'),
(88490, 'https://ror.org/02k57f568', 'it', 1, 'https://ror.org/02k57f568 Emilia-Romagna Region Regione Emilia-Romagna'),
(88491, 'https://ror.org/00hr5y405', 'no_lang_code', 1, 'https://ror.org/00hr5y405 DataONE'),
(88492, 'https://ror.org/04pyhyx87', 'en', 1, 'https://ror.org/04pyhyx87 Brand University of Applied Science Hamburg'),
(88493, 'https://ror.org/00vrm7197', 'de', 1, 'https://ror.org/00vrm7197 Hessen Forest HessenForst'),
(88494, 'https://ror.org/017xf2h35', 'de', 1, 'https://ror.org/017xf2h35 Forschungsstelle für Zeitgeschichte in Hamburg'),
(88495, 'https://ror.org/001e43z98', 'de', 1, 'https://ror.org/001e43z98 Free University of Stuttgart Freie Hochschule Stuttgart'),
(88496, 'https://ror.org/040erbe63', 'de', 1, 'https://ror.org/040erbe63 Fachhochschule für Interkulturelle Theologie Hermannsburg'),
(88497, 'https://ror.org/05h8t4993', 'fr', 1, 'https://ror.org/05h8t4993 Semae'),
(88498, 'https://ror.org/050qydw28', 'pl', 1, 'https://ror.org/050qydw28 Pomorska Szkoła Wyższa w Starogardzie Gdańskim'),
(88499, 'https://ror.org/01wfhdb61', 'en', 1, 'https://ror.org/01wfhdb61 Congo Research Papers'),
(88500, 'https://ror.org/051a5bv61', 'no_lang_code', 1, 'https://ror.org/051a5bv61 Carlson Caspers (United States)'),
(88501, 'https://ror.org/04h4c6x44', 'de', 1, 'https://ror.org/04h4c6x44 Japanese-German Center Berlin Japanisch-Deutsches Zentrum Berlin ćƒ™ćƒ«ćƒŖćƒ³ę—„ē‹¬ć‚»ćƒ³ć‚æćƒ¼'),
(88502, 'https://ror.org/00k7kt283', 'en', 1, 'https://ror.org/00k7kt283 B. K. Mody Government Pharmacy College'),
(88503, 'https://ror.org/02g130845', 'de', 1, 'https://ror.org/02g130845 Faserinstitut Bremen'),
(88504, 'https://ror.org/03redkt21', 'de', 1, 'https://ror.org/03redkt21 Hochschule der bildenden Künste Essen University of Fine Arts Essen'),
(88505, 'https://ror.org/01vbnqb98', 'de', 1, 'https://ror.org/01vbnqb98 Deutscher Ethikrat'),
(88506, 'https://ror.org/052rpwb50', 'en', 1, 'https://ror.org/052rpwb50 Yamashita Thyroid Hospital ć‚„ć¾ć—ćŸē”²ēŠ¶č…ŗē—…é™¢'),
(88507, 'https://ror.org/02anvmh54', 'es', 1, 'https://ror.org/02anvmh54 Escuela Nacional de Salud PĆŗblica'),
(88508, 'https://ror.org/016t6nf16', 'no_lang_code', 1, 'https://ror.org/016t6nf16 Vianode (Norway)'),
(88509, 'https://ror.org/02rv1bf67', 'fr', 1, 'https://ror.org/02rv1bf67 Centre de Recherche de l''Institut de DƩmographie de l''UniversitƩ Paris 1'),
(88510, 'https://ror.org/033z3kr33', 'de', 1, 'https://ror.org/033z3kr33 Alemannisches Institut'),
(88511, 'https://ror.org/00qxqkw78', 'en', 1, 'https://ror.org/00qxqkw78 European Plate Observing System'),
(88512, 'https://ror.org/05rf37997', 'fr', 1, 'https://ror.org/05rf37997 IPC – FacultĆ©s Libres de Philosophie et de Psychologie'),
(88513, 'https://ror.org/03z8vj775', 'en', 1, 'https://ror.org/03z8vj775 BF/M-Bayreuth'),
(88514, 'https://ror.org/05f1zzd23', 'en', 1, 'https://ror.org/05f1zzd23 Dharmsinh Desai University'),
(88515, 'https://ror.org/0066xvx18', 'en', 1, 'https://ror.org/0066xvx18 Lucile Packard Foundation for Childrens Health'),
(88516, 'https://ror.org/04gh07468', 'de', 1, 'https://ror.org/04gh07468 Institut für Qualitätssicherung und Transparenz im Gesundheitswesen Institute for Quality Assurance and Transparency in Healthcare'),
(88517, 'https://ror.org/044eye907', 'fr', 1, 'https://ror.org/044eye907 Ɖcole nationale supĆ©rieure d''arts de Paris-Cergy'),
(88518, 'https://ror.org/0198t0w55', 'en', 1, 'https://ror.org/0198t0w55 Institute of Reflective Investigation and Specialization Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Рефлексивних Š”Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ & Дпеціалізації Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рефлексивных исслеГований Šø специализаций'),
(88519, 'https://ror.org/01ezq2j76', 'en', 1, 'https://ror.org/01ezq2j76 Imec the Netherlands'),
(88520, 'https://ror.org/00mnan534', 'fr', 1, 'https://ror.org/00mnan534 Ɖcole nationale supĆ©rieure de la Police'),
(88521, 'https://ror.org/003mr9q86', 'no_lang_code', 1, 'https://ror.org/003mr9q86 Horizon Therapeutics (United Kingdom)'),
(88522, 'https://ror.org/05p5eax82', 'no_lang_code', 1, 'https://ror.org/05p5eax82 ArianeGroup (France)'),
(88523, 'https://ror.org/011rpdz66', 'en', 1, 'https://ror.org/011rpdz66 Australian Institute of Aboriginal and Torres Strait Islander Studies'),
(88524, 'https://ror.org/04gw4zv66', 'en', 1, 'https://ror.org/04gw4zv66 Landmark University'),
(88525, 'https://ror.org/05fqg8t87', 'no_lang_code', 1, 'https://ror.org/05fqg8t87 Syngenta (Switzerland)'),
(88526, 'https://ror.org/04t57zm22', 'de', 1, 'https://ror.org/04t57zm22 Institut für Steinkonservierung e.V. Institute for Stone Conservation'),
(88527, 'https://ror.org/00kcgm063', 'de', 1, 'https://ror.org/00kcgm063 ESAB Fachhochschule für Sport und Management Potsdam'),
(88528, 'https://ror.org/04e7egx43', 'de', 1, 'https://ror.org/04e7egx43 Hochschule für Kirchenmusik der Diözese Rottenburg-Stuttgart University of Church Music of the Diocese of Rottenburg-Stuttgart'),
(88529, 'https://ror.org/04tpd8v21', 'en', 1, 'https://ror.org/04tpd8v21 Myelopathy.org'),
(88530, 'https://ror.org/011ta8654', 'fr', 1, 'https://ror.org/011ta8654 Conseil RƩgional des Hauts-de-France'),
(88531, 'https://ror.org/00adjwa30', 'en', 1, 'https://ror.org/00adjwa30 Joint Institute of the Dalian University of Technology and Belarusian State University å¤§čæžē†å·„å¤§å­¦ē™½äæ„ē½—ę–Æå›½ē«‹å¤§å­¦č”åˆå­¦é™¢ ē”µčÆ'),
(88532, 'https://ror.org/03kf4rc21', 'en', 1, 'https://ror.org/03kf4rc21 Ohio University Lancaster'),
(88533, 'https://ror.org/03mvawd68', 'en', 1, 'https://ror.org/03mvawd68 North Dakota University System'),
(88534, 'https://ror.org/04w66e730', 'de', 1, 'https://ror.org/04w66e730 Institut für Bildungsmonitoring und Qualitätsentwicklung Institute for Educational Monitoring and Quality Development'),
(88535, 'https://ror.org/00qh8ef51', 'de', 1, 'https://ror.org/00qh8ef51 Zentrum für Luft- und Raumfahrtmedizin der Luftwaffe'),
(88536, 'https://ror.org/039570836', 'en', 1, 'https://ror.org/039570836 Ministry of Economic Development, Job Creation and Trade MinistĆØre du DĆ©veloppement Ɖconomique de la CrĆ©ation d’Emplois et du Commerce'),
(88537, 'https://ror.org/010h6g454', 'en', 1, 'https://ror.org/010h6g454 Sidney Kimmel Cancer Center'),
(88538, 'https://ror.org/04hwsg107', 'fr', 1, 'https://ror.org/04hwsg107 Caisse nationale de l''assurance vieillesse'),
(88539, 'https://ror.org/02ktfxs54', 'no_lang_code', 1, 'https://ror.org/02ktfxs54 Nallamuthu Gounder Mahalingam College'),
(88540, 'https://ror.org/05h7s9y46', 'en', 1, 'https://ror.org/05h7s9y46 Padmashri Dr. V. B. Kolte College of Engineering, Malkapur ą¤Ŗą¤¦ą„ą¤®ą¤¶ą„ą¤°ą„€ ą¤”ą„‰ ą¤µą„ą¤¹ą„€ ą¤¬ą„€ ą¤•ą„‹ą¤²ą¤¤ą„‡ ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ ą¤‡ą¤‚ą¤œą¤æą¤Øą„€ą¤…ą¤°ą¤æą¤‚ą¤—, ą¤®ą¤²ą¤•ą¤¾ą¤Ŗą„‚ą¤°'),
(88541, 'https://ror.org/05xc20j70', 'en', 1, 'https://ror.org/05xc20j70 The US Oncology Network'),
(88542, 'https://ror.org/03q3a8095', 'en', 1, 'https://ror.org/03q3a8095 A.V. Zhirmunsky National Scientific Center of Marine Biology Far Eastern Branch of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки "ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр морской биологии им. А.Š’. Š–ŠøŃ€Š¼ŃƒŠ½ŃŠŗŠ¾Š³Š¾" Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(88543, 'https://ror.org/03d0tpz61', 'en', 1, 'https://ror.org/03d0tpz61 Evangelical Church of Westphalia Evangelische Kirche von Westfalen'),
(88544, 'https://ror.org/05tjjsh18', 'en', 1, 'https://ror.org/05tjjsh18 National University Health System å›½ē«‹å¤§å­¦åŒ»å­¦ē»„ē»‡'),
(88545, 'https://ror.org/04tah3159', 'tr', 1, 'https://ror.org/04tah3159 Nişantaşı Üniversitesi İstanbul Nişantaşı Üniversitesi'),
(88546, 'https://ror.org/04ftsv531', 'de', 1, 'https://ror.org/04ftsv531 Neue Materialien Bayreuth GmbH'),
(88547, 'https://ror.org/01faqv652', 'en', 1, 'https://ror.org/01faqv652 Government of Lower Austria Land Niederosterreich'),
(88548, 'https://ror.org/047a06h06', 'de', 1, 'https://ror.org/047a06h06 Arzneimittelkommission der deutschen Ƅrzteschaft'),
(88549, 'https://ror.org/011qkaj49', 'no_lang_code', 1, 'https://ror.org/011qkaj49 Roche (United States)'),
(88550, 'https://ror.org/03c2nxn64', 'fr', 1, 'https://ror.org/03c2nxn64 Institut national du patrimoine'),
(88551, 'https://ror.org/00j5we857', 'de', 1, 'https://ror.org/00j5we857 Bremer Institut für Produktion und Logistik GmbH'),
(88552, 'https://ror.org/04ehecz88', 'en', 1, 'https://ror.org/04ehecz88 University of Pittsburgh Medical Center'),
(88553, 'https://ror.org/04wydzr61', 'en', 0, 'https://ror.org/04wydzr61 National Kaohsiung University of Applied Sciences'),
(88554, 'https://ror.org/00afqrg82', 'fr', 1, 'https://ror.org/00afqrg82 ISART Digital'),
(88555, 'https://ror.org/01at6dg30', 'fr', 1, 'https://ror.org/01at6dg30 PĆ“le d’Expertise de la RĆ©gulation NumĆ©rique'),
(88556, 'https://ror.org/00rg70c39', 'en', 1, 'https://ror.org/00rg70c39 Agostino Gemelli University Polyclinic Fondazione Policlinico Universitario Agostino Gemelli'),
(88557, 'https://ror.org/056ms9a36', 'fr', 1, 'https://ror.org/056ms9a36 GEVES'),
(88558, 'https://ror.org/05m1w2041', 'en', 1, 'https://ror.org/05m1w2041 Corte di giustizia dell''Unione europea Cour de justice de l''Union europĆ©enne Court of Justice of the European Union Curtea de Justiție a Uniunii Europene CĆŗirt BhreithiĆŗnais an Aontais Eorpaigh Den EuropƦiske Unions Domstol Eiropas SavienÄ«bas Tiesa Euroopa Liidu Kohus Euroopan unionin tuomioistuin Europeiska unionens domstol Europos Sąjungos Teisingumo Teismas Gerichtshof der EuropƤischen Union Hof van Justitie van de Europese Unie Il-Qorti tal-Ä ustizzja tal-Unjoni Ewropea SodiŔče Evropske unije SoudnĆ­ dvÅÆr EvropskĆ© unie Sud Europske unije SĆŗdny dvor Európskej Ćŗnie Tribunal de Justicia de la Unión Europea Tribunal de JustiƧa da UniĆ£o Europeia Trybunał Sprawiedliwości Unii Europejskiej az Európai Unió BĆ­rósĆ”ga Ī”Ī¹ĪŗĪ±ĻƒĻ„Ī®ĻĪ¹Īæ της Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĪ®Ļ‚ ĪˆĪ½Ļ‰ĻƒĪ·Ļ‚ ДъГ на Š•Š²Ń€Š¾ŠæŠµŠ¹ŃŠŗŠøŃ ŃŃŠŃŽŠ·'),
(88559, 'https://ror.org/052kcks88', 'pt', 0, 'https://ror.org/052kcks88 Lusófona University of Porto Universidade Lusófona do Porto'),
(88560, 'https://ror.org/02pkvpx84', 'en', 1, 'https://ror.org/02pkvpx84 Group for Research in Decision Analysis'),
(88561, 'https://ror.org/00kck3n79', 'de', 1, 'https://ror.org/00kck3n79 Hochschule für Gesellschaftsgestaltung'),
(88562, 'https://ror.org/049kefs16', 'en', 1, 'https://ror.org/049kefs16 Southern Illinois University Carbondale Universidad del Sur de Illinois Carbondale UniversitƩ du sud de l''illinois Ơ carbondale'),
(88563, 'https://ror.org/04ex1sj81', 'de', 1, 'https://ror.org/04ex1sj81 Kommission für Archäologische Landesforschung in Hessen e.V.'),
(88564, 'https://ror.org/03b3tk155', 'en', 1, 'https://ror.org/03b3tk155 Cordoba Private University Ų¬Ų§Ł…Ų¹Ų© قرطبة الخاصة'),
(88565, 'https://ror.org/04djvs197', 'en', 1, 'https://ror.org/04djvs197 Government Polytechnic College, Rajkot'),
(88566, 'https://ror.org/00s425b94', 'no_lang_code', 1, 'https://ror.org/00s425b94 Messer (Germany)'),
(88567, 'https://ror.org/03n1avf94', 'de', 1, 'https://ror.org/03n1avf94 Konstanzer Arbeitskreis für Mittelalterliche Geschichte e.V.'),
(88568, 'https://ror.org/01t14bp54', 'en', 1, 'https://ror.org/01t14bp54 Environmental System Science Data Infrastructure for a Virtual Ecosystem'),
(88569, 'https://ror.org/00ca6fy54', 'en', 0, 'https://ror.org/00ca6fy54 National Kaohsiung Marine University åœ‹ē«‹é«˜é›„ęµ·ę“‹ē§‘ęŠ€å¤§å­ø'),
(88570, 'https://ror.org/04ahz4692', 'en', 1, 'https://ror.org/04ahz4692 Dilla University į‹²įˆ‹ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(88571, 'https://ror.org/030cw3k54', 'en', 1, 'https://ror.org/030cw3k54 Moscow Psycho-Social University Московский психолого-ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88572, 'https://ror.org/05n0meg65', 'de', 1, 'https://ror.org/05n0meg65 Neue Materialien Fürth GmbH'),
(88573, 'https://ror.org/039eaqm23', 'en', 1, 'https://ror.org/039eaqm23 Ohio University Southern'),
(88574, 'https://ror.org/05bphc025', 'no_lang_code', 1, 'https://ror.org/05bphc025 Customcells Itzehoe GmbH (Germany)'),
(88575, 'https://ror.org/03k5bhd83', 'en', 1, 'https://ror.org/03k5bhd83 Leibniz Institute for the Analysis of Biodiversity Change Leibniz-Institut zur Analyse des BiodiversitƤtswandels'),
(88576, 'https://ror.org/00fycgp36', 'en', 1, 'https://ror.org/00fycgp36 Ural State Medical University Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88577, 'https://ror.org/05v8qr640', 'en', 1, 'https://ror.org/05v8qr640 International Communication Association'),
(88578, 'https://ror.org/03858r716', 'en', 0, 'https://ror.org/03858r716 National Kaohsiung First University of Science and Technology'),
(88579, 'https://ror.org/0472gwq90', 'en', 1, 'https://ror.org/0472gwq90 Alzheimer''s Society'),
(88580, 'https://ror.org/0599cab37', 'en', 1, 'https://ror.org/0599cab37 Henry Ford Health + Michigan State University Health Sciences'),
(88581, 'https://ror.org/04d77de73', 'en', 1, 'https://ror.org/04d77de73 Bundesanstalt für Geowissenschaften und Rohstoffe Federal Institute for Geosciences and Natural Resources'),
(88582, 'https://ror.org/018t4w162', 'en', 1, 'https://ror.org/018t4w162 An Roinn EalaĆ­on, Oidhreachta agus Gaeltachta Department of Culture, Heritage and the Gaeltacht'),
(88583, 'https://ror.org/037y17y07', 'de', 0, 'https://ror.org/037y17y07 Rheinische Fachhochschule Neuss'),
(88584, 'https://ror.org/0025ww868', 'en', 1, 'https://ror.org/0025ww868 National Cancer Centre Japan å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹ćŒć‚“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(88585, 'https://ror.org/04zgm9b74', 'es', 1, 'https://ror.org/04zgm9b74 Universidad de San Isidro "Dr. PlƔcido Marƭn"'),
(88586, 'https://ror.org/05rw01c09', 'de', 1, 'https://ror.org/05rw01c09 Institut für Oberflächen- und Schichtanalytik GmbH'),
(88587, 'https://ror.org/005hq2w28', 'de', 1, 'https://ror.org/005hq2w28 Wehrtechnische Dienststelle für Schiffe und Marinewaffen, Maritime Technologie und Forschung'),
(88588, 'https://ror.org/05a7t9b67', 'en', 1, 'https://ror.org/05a7t9b67 Edinburgh Cancer Research'),
(88589, 'https://ror.org/00pcrxq11', 'en', 1, 'https://ror.org/00pcrxq11 National Nanotechnology Research Center Ulusal Nanoteknoloji Araştırma Merkezi'),
(88590, 'https://ror.org/01r2sv316', 'no_lang_code', 0, 'https://ror.org/01r2sv316 Rhodia (France)'),
(88591, 'https://ror.org/05bt3je48', 'no_lang_code', 1, 'https://ror.org/05bt3je48 SAXSLAB (Denmark)'),
(88592, 'https://ror.org/02en7nd34', 'en', 1, 'https://ror.org/02en7nd34 Tokyo Metropolitan Tama-Hokubu Medical Center ę±äŗ¬éƒ½ē«‹å¤šę‘©åŒ—éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(88593, 'https://ror.org/04z6ak809', 'no_lang_code', 1, 'https://ror.org/04z6ak809 Studio CEVAS'),
(88594, 'https://ror.org/05xhkkt06', 'fr', 1, 'https://ror.org/05xhkkt06 Centre Technique Industriel de la Plasturgie et des Composites'),
(88595, 'https://ror.org/02km7mb89', 'en', 1, 'https://ror.org/02km7mb89 Cancer Care Centers of Brevard'),
(88596, 'https://ror.org/00k01kt20', 'no_lang_code', 1, 'https://ror.org/00k01kt20 DSM (Netherlands)'),
(88597, 'https://ror.org/01mab3e15', 'es', 1, 'https://ror.org/01mab3e15 Organismo Autónomo Parques Nacionales'),
(88598, 'https://ror.org/03837fc46', 'fr', 1, 'https://ror.org/03837fc46 Adaptateurs de Signalisation en HƩmatologie'),
(88599, 'https://ror.org/03k7z1z82', 'es', 1, 'https://ror.org/03k7z1z82 Museo Histórico Municipal de Ecija'),
(88600, 'https://ror.org/00pd2er22', 'no_lang_code', 1, 'https://ror.org/00pd2er22 International Diamond Services (United States)'),
(88601, 'https://ror.org/020m47m04', 'en', 1, 'https://ror.org/020m47m04 Chica and Heinz Schaller Foundation'),
(88602, 'https://ror.org/02q7vgb48', 'de', 1, 'https://ror.org/02q7vgb48 Zentrum für Telematik'),
(88603, 'https://ror.org/01rw3qm79', 'en', 1, 'https://ror.org/01rw3qm79 Hanoi University of Mining and Geology TrĘ°į»ng ĐẔi hį»c Mį» - Địa chįŗ„t'),
(88604, 'https://ror.org/00skc2q21', 'en', 1, 'https://ror.org/00skc2q21 Baptist Cancer Center'),
(88605, 'https://ror.org/03h38n443', 'fr', 1, 'https://ror.org/03h38n443 Greater Paris Sanitation Authority Syndicat InterdƩpartemental pour l''Assainissement de l''AgglomƩration Parisienne'),
(88606, 'https://ror.org/00098gt02', 'de', 1, 'https://ror.org/00098gt02 Fachagentur Windenergie an Land'),
(88607, 'https://ror.org/008wrw613', 'de', 1, 'https://ror.org/008wrw613 Behörde für Schule und Berufsbildung'),
(88608, 'https://ror.org/04q4ck618', 'en', 1, 'https://ror.org/04q4ck618 Brain Research UK'),
(88609, 'https://ror.org/01tc10z29', 'en', 1, 'https://ror.org/01tc10z29 Cancer Institute (WIA)'),
(88610, 'https://ror.org/02xtnzw59', 'de', 1, 'https://ror.org/02xtnzw59 Doerner Institut'),
(88611, 'https://ror.org/0558kn420', 'en', 1, 'https://ror.org/0558kn420 Kohsar University Murree'),
(88612, 'https://ror.org/00hfj7g70', 'en', 1, 'https://ror.org/00hfj7g70 National Kaohsiung University of Science and Technology åœ‹ē«‹é«˜é›„ē§‘ęŠ€å¤§å­ø'),
(88613, 'https://ror.org/01cn8y823', 'de', 1, 'https://ror.org/01cn8y823 Institut für Pharmakologie und Toxikologie der Bundeswehr'),
(88614, 'https://ror.org/03q961f45', 'no_lang_code', 1, 'https://ror.org/03q961f45 Safran Ceramics (France)'),
(88615, 'https://ror.org/03xz2hx98', 'en', 1, 'https://ror.org/03xz2hx98 Gansu Provincial Science and Technology Department'),
(88616, 'https://ror.org/05etxbz89', 'en', 1, 'https://ror.org/05etxbz89 Comprehensive Cancer Centers of Nevada'),
(88617, 'https://ror.org/0354nax61', 'es', 1, 'https://ror.org/0354nax61 Escriba. Escuela de Escritores'),
(88618, 'https://ror.org/038vd2393', 'en', 1, 'https://ror.org/038vd2393 Aichi Synchrotron Radiation Center ć‚ć„ć”ć‚·ćƒ³ć‚Æćƒ­ćƒˆćƒ­ćƒ³å…‰ć‚»ćƒ³ć‚æćƒ¼'),
(88619, 'https://ror.org/00j0xy635', 'de', 1, 'https://ror.org/00j0xy635 Institut für Radiobiologie der Bundeswehr'),
(88620, 'https://ror.org/00wz4b049', 'en', 1, 'https://ror.org/00wz4b049 Zoological Research Museum Alexander Koenig Zoologisches Forschungsmuseum Alexander Koenig'),
(88621, 'https://ror.org/01kf3ys41', 'en', 1, 'https://ror.org/01kf3ys41 Transcultural Psychosocial Educational Foundation Transkulturna psihosocijalna obrazovna fondacija'),
(88622, 'https://ror.org/03d1mcd64', 'de', 1, 'https://ror.org/03d1mcd64 Deutsches Polen-Institut'),
(88623, 'https://ror.org/03ax04633', 'de', 1, 'https://ror.org/03ax04633 Kölner Forum für Internationale Beziehungen und Sicherheitspolitik'),
(88624, 'https://ror.org/0414fab98', 'fr', 1, 'https://ror.org/0414fab98 Laboratoire d’Ethologie ExpĆ©rimentale et ComparĆ©e'),
(88625, 'https://ror.org/04sc67422', 'en', 1, 'https://ror.org/04sc67422 Neuroelectronics Research Flanders'),
(88626, 'https://ror.org/03dh5yq48', 'en', 1, 'https://ror.org/03dh5yq48 Falling Walls Foundation'),
(88627, 'https://ror.org/05q2q3076', 'en', 1, 'https://ror.org/05q2q3076 Medical Research Foundation'),
(88628, 'https://ror.org/01x706n97', 'de', 1, 'https://ror.org/01x706n97 Zentrum für Geoinformationswesen der Bundeswehr'),
(88629, 'https://ror.org/04r66gb92', 'fr', 1, 'https://ror.org/04r66gb92 Ɖcole supĆ©rieure d''art et design Le Havre-Rouen'),
(88630, 'https://ror.org/04pbb0381', 'pl', 1, 'https://ror.org/04pbb0381 WSHIU Akademia Nauk Stosowanych'),
(88631, 'https://ror.org/010fydm81', 'en', 1, 'https://ror.org/010fydm81 Forsvarets Sanitetskommando The Danish Armed Forces Medical Command'),
(88632, 'https://ror.org/01vbd1435', 'de', 1, 'https://ror.org/01vbd1435 Fachhochschule Dresden'),
(88633, 'https://ror.org/03h706g49', 'fr', 1, 'https://ror.org/03h706g49 MusƩe de l''Air et de l''Espace'),
(88634, 'https://ror.org/04agmb972', 'en', 1, 'https://ror.org/04agmb972 Georgia Southern University'),
(88635, 'https://ror.org/04y8pvp97', 'en', 1, 'https://ror.org/04y8pvp97 University of Veterinary Science'),
(88636, 'https://ror.org/05pt1d114', 'en', 1, 'https://ror.org/05pt1d114 Kinship Conservation Fellows'),
(88637, 'https://ror.org/0500xr498', 'de', 1, 'https://ror.org/0500xr498 Braunschweigische Wissenschaftliche Gesellschaft'),
(88638, 'https://ror.org/04v8apc83', 'fr', 1, 'https://ror.org/04v8apc83 INSA Euro-MƩditerranƩe'),
(88639, 'https://ror.org/010d6pr75', 'en', 1, 'https://ror.org/010d6pr75 Shree Medical and Technical College'),
(88640, 'https://ror.org/02kwnkm68', 'en', 1, 'https://ror.org/02kwnkm68 Henry Ford Health System'),
(88641, 'https://ror.org/02a63xw04', 'fr', 1, 'https://ror.org/02a63xw04 Centre Technique Interprofessionnel des Fruits et LƩgumes'),
(88642, 'https://ror.org/03pa16y14', 'no_lang_code', 1, 'https://ror.org/03pa16y14 Elements Biosciences (United States)'),
(88643, 'https://ror.org/024yn9x21', 'no_lang_code', 1, 'https://ror.org/024yn9x21 E-Lyte Innovations GmbH (Germany)'),
(88644, 'https://ror.org/048zssa22', 'en', 1, 'https://ror.org/048zssa22 G. K. Skryabin Institute of Biochemistry and Physiology of Microorganisms Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø физиологии микроорганизмов им. Š“.К.Š”ŠŗŃ€ŃŠ±ŠøŠ½Š° Š ŠŠ'),
(88645, 'https://ror.org/03p2z7827', 'es', 1, 'https://ror.org/03p2z7827 Benemérita Universidad Autónoma de Puebla Meritorious Autonomous University of Puebla'),
(88646, 'https://ror.org/04v7vb598', 'en', 1, 'https://ror.org/04v7vb598 AO Foundation'),
(88647, 'https://ror.org/02fjgft97', 'de', 1, 'https://ror.org/02fjgft97 Alta scuola pedagogica dei Grigioni Pädagogische Hochschule Graubünden Scola auta da pedagogia dal Grischun University of Teacher Education of the Grisons'),
(88648, 'https://ror.org/03gpapx10', 'en', 1, 'https://ror.org/03gpapx10 Instituto Rio Branco Rio Branco Institute'),
(88649, 'https://ror.org/03638wk09', 'en', 1, 'https://ror.org/03638wk09 American School of Classical Studies at Athens'),
(88650, 'https://ror.org/05ve9ya07', 'no_lang_code', 1, 'https://ror.org/05ve9ya07 Onex (United States)'),
(88651, 'https://ror.org/03jczk481', 'fr', 1, 'https://ror.org/03jczk481 Institut National du Sport, de l''Expertise et de la Performance National Institute of Sport, Expertise, and Performance'),
(88652, 'https://ror.org/04e0v3f13', 'en', 1, 'https://ror.org/04e0v3f13 Narodowe Centrum Promieniowania Synchrotronowego SOLARIS SOLARIS National Synchrotron Radiation Centre'),
(88653, 'https://ror.org/05pjxvx20', 'en', 1, 'https://ror.org/05pjxvx20 American College of Rheumatology'),
(88654, 'https://ror.org/04mz2ft79', 'en', 1, 'https://ror.org/04mz2ft79 Bayan University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁŠŲ§Ł†'),
(88655, 'https://ror.org/00b9jhh55', 'en', 1, 'https://ror.org/00b9jhh55 Department of Health and Human Services'),
(88656, 'https://ror.org/04v1bf639', 'fr', 1, 'https://ror.org/04v1bf639 BibliothĆØque Nationale de France Frantziako Liburutegi Nazionala National Library of France'),
(88657, 'https://ror.org/03phf2w66', 'en', 0, 'https://ror.org/03phf2w66 Arthritis Research UK'),
(88658, 'https://ror.org/04d5m0m59', 'en', 1, 'https://ror.org/04d5m0m59 Pat Tillman Foundation'),
(88659, 'https://ror.org/0387q4e78', 'en', 1, 'https://ror.org/0387q4e78 International Community Foundation'),
(88660, 'https://ror.org/01qdz9132', 'fr', 1, 'https://ror.org/01qdz9132 Institut d''Histoire de la RƩvolution franƧaise'),
(88661, 'https://ror.org/03ht1xw27', 'en', 1, 'https://ror.org/03ht1xw27 Tata Institute of Fundamental Research टाटा ą¤®ą„‚ą¤²ą¤­ą„‚ą¤¤ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą“Ÿą“¾ą“±ąµą“±ą“¾ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“«ą“£ąµą“Ÿą“®ąµ†ą“Øąµą“±ąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ'),
(88662, 'https://ror.org/031dk8f13', 'en', 1, 'https://ror.org/031dk8f13 International University of Batam Universitas Internasional Batam'),
(88663, 'https://ror.org/05pqp2e86', 'no_lang_code', 1, 'https://ror.org/05pqp2e86 Vrana GmbH (Germany)'),
(88664, 'https://ror.org/01g53at17', 'en', 1, 'https://ror.org/01g53at17 Guangzhou Women and Children Medical Center å¹æå·žåø‚å¦‡å„³å„æē«„åŒ»ē–—äø­åæƒ'),
(88665, 'https://ror.org/05782e512', 'en', 1, 'https://ror.org/05782e512 Department of Education of Jilin Province å‰ęž—ēœę•™č‚²åŽ…'),
(88666, 'https://ror.org/02bddg852', 'en', 1, 'https://ror.org/02bddg852 Mycoplasmoses animales'),
(88667, 'https://ror.org/05n09v162', 'en', 1, 'https://ror.org/05n09v162 Digital Research Infrastructure for the Arts and Humanities'),
(88668, 'https://ror.org/002c9p632', 'de', 1, 'https://ror.org/002c9p632 Institut für Geschichtliche Landeskunde Rheinland-Pfalz e.V.'),
(88669, 'https://ror.org/01evwfd48', 'en', 1, 'https://ror.org/01evwfd48 Bernhard Nocht Institute for Tropical Medicine Bernhard-Nocht-Institut für Tropenmedizin'),
(88670, 'https://ror.org/01xqwbk25', 'en', 1, 'https://ror.org/01xqwbk25 United States Securities and Exchange Commission'),
(88671, 'https://ror.org/00v8hqs51', 'en', 1, 'https://ror.org/00v8hqs51 NewSchool'),
(88672, 'https://ror.org/02dzbc556', 'fr', 1, 'https://ror.org/02dzbc556 Centre EuropƩen de Recherche et de Formation AvancƩe en Calcul Scientifique'),
(88673, 'https://ror.org/04gr31p94', 'en', 0, 'https://ror.org/04gr31p94 Bashkir State University Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88674, 'https://ror.org/00agc0t21', 'en', 1, 'https://ror.org/00agc0t21 Helping Others in a Positive Environment'),
(88675, 'https://ror.org/0383bnk62', 'en', 1, 'https://ror.org/0383bnk62 Fox Valley Technical College'),
(88676, 'https://ror.org/00qk1f078', 'en', 1, 'https://ror.org/00qk1f078 Dnieprzański Uniwersytet Narodowy im. Ołesia Honczara Nationale Oles-Hontschar-UniversitƤt Dnipro Oles Honchar Dnipro National University UniversitĆ© nationale Oles-Hontchar de Dnipro Днипровский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ŠøŠ¼ŠµŠ½Šø ŠžŠ»ŠµŃŃ Гончара Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠžŠ»ŠµŃŃ Гончара'),
(88677, 'https://ror.org/026t0fx73', 'en', 1, 'https://ror.org/026t0fx73 Veterinary Medical Teaching Hospital'),
(88678, 'https://ror.org/02rdthx75', 'en', 1, 'https://ror.org/02rdthx75 Institute of Higher Education of NAES of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вищої освіти ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії пеГагогічних наук Україн'),
(88679, 'https://ror.org/041evnj42', 'en', 1, 'https://ror.org/041evnj42 Ministerie van Volksgezondheid Welzijn en Sport Ministry of Health Welfare and Sport'),
(88680, 'https://ror.org/05g06mk92', 'en', 1, 'https://ror.org/05g06mk92 Hasselblad Foundation'),
(88681, 'https://ror.org/04q5j9b45', 'fr', 1, 'https://ror.org/04q5j9b45 Institut de Veille Sanitaire Institute of Health Surveillance'),
(88682, 'https://ror.org/01s165k42', 'no_lang_code', 1, 'https://ror.org/01s165k42 Herff Jones (United States)'),
(88683, 'https://ror.org/02ch71m07', 'en', 1, 'https://ror.org/02ch71m07 California State Transportation Agency'),
(88684, 'https://ror.org/016nv8j08', 'fr', 1, 'https://ror.org/016nv8j08 GƩnomique fonctionnelle comparative'),
(88685, 'https://ror.org/01k2c9s91', 'sv', 1, 'https://ror.org/01k2c9s91 Wienerbageriet'),
(88686, 'https://ror.org/02xe1zz23', 'no_lang_code', 1, 'https://ror.org/02xe1zz23 Humanitarian Institute Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(88687, 'https://ror.org/04k59bg10', 'en', 0, 'https://ror.org/04k59bg10 Department of Jobs and Small Business'),
(88688, 'https://ror.org/0330gay09', 'fr', 1, 'https://ror.org/0330gay09 MorphogenĆØse du coeur'),
(88689, 'https://ror.org/021adze67', 'en', 1, 'https://ror.org/021adze67 Departamento de Educación de los Estados Unidos DĆ©partement de l''Ɖducation des Ɖtats-unis United States Department of Education'),
(88690, 'https://ror.org/02ptchg16', 'en', 0, 'https://ror.org/02ptchg16 Instituto Smithsonian de Investigaciones Tropicales Smithsonian Tropical Research Institute'),
(88691, 'https://ror.org/01na82s61', 'en', 1, 'https://ror.org/01na82s61 Departamento de Agricultura de los Estados Unidos DĆ©partement de l''Agriculture des Ɖtats-Unis United States Department of Agriculture'),
(88692, 'https://ror.org/055k7j239', 'en', 1, 'https://ror.org/055k7j239 Grantham Centre for Sustainable Futures'),
(88693, 'https://ror.org/022pm7h15', 'en', 0, 'https://ror.org/022pm7h15 Health Protection Agency'),
(88694, 'https://ror.org/04mknbs38', 'en', 0, 'https://ror.org/04mknbs38 State Key Laboratory of Hydrology Water Resources and Hydraulic Engineering ę°“ę–‡ę°“čµ„ęŗäøŽę°“åˆ©å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(88695, 'https://ror.org/059qwgz87', 'es', 1, 'https://ror.org/059qwgz87 Centro de Metrologƭa del EjƩrcito Ecuatoriano'),
(88696, 'https://ror.org/04gecpj69', 'en', 1, 'https://ror.org/04gecpj69 Lake Forest Academy'),
(88697, 'https://ror.org/021h2hc85', 'en', 1, 'https://ror.org/021h2hc85 Colorado Water Center'),
(88698, 'https://ror.org/01xcepn55', 'no_lang_code', 1, 'https://ror.org/01xcepn55 ExxonMobil (United States)'),
(88699, 'https://ror.org/03wy7n216', 'en', 1, 'https://ror.org/03wy7n216 American Ornithological Society'),
(88700, 'https://ror.org/03thb3e06', 'en', 1, 'https://ror.org/03thb3e06 American Museum of Natural History Museo Americano de Historia Natural MusƩe amƩricain d''histoire naturelle'),
(88701, 'https://ror.org/05rbd6k73', 'en', 1, 'https://ror.org/05rbd6k73 Regional Research Centres Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Šµ Š½Š°ŃƒŃ‡Š½Ń‹Šµ центры Российской акаГемии наук'),
(88702, 'https://ror.org/01es1wk41', 'en', 1, 'https://ror.org/01es1wk41 Foundation Fighting Blindness'),
(88703, 'https://ror.org/034900433', 'en', 0, 'https://ror.org/034900433 Ministerio de EconomĆ­a, Industria y Competitividad Ministry of Economy, Industry and Competitiveness'),
(88704, 'https://ror.org/00zv9q339', 'en', 1, 'https://ror.org/00zv9q339 American Bureau of Shipping'),
(88705, 'https://ror.org/00nfs8853', 'en', 0, 'https://ror.org/00nfs8853 AVRDC - The World Vegetable Center'),
(88706, 'https://ror.org/05nmttp70', 'en', 1, 'https://ror.org/05nmttp70 Comisión Nacional de Actividades Espaciales National Space Activities Commission'),
(88707, 'https://ror.org/04yn8rk66', 'no_lang_code', 1, 'https://ror.org/04yn8rk66 UHC'),
(88708, 'https://ror.org/01gtzn293', 'no_lang_code', 1, 'https://ror.org/01gtzn293 Cemat (Italy)'),
(88709, 'https://ror.org/019w0mc80', 'en', 1, 'https://ror.org/019w0mc80 Institute for Water and Environmental Problems of the Siberian Branch of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГных Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… проблем Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(88710, 'https://ror.org/02f4ya153', 'en', 1, 'https://ror.org/02f4ya153 Barro Colorado Island Isla Barro Colorado'),
(88711, 'https://ror.org/0487kvf73', 'en', 1, 'https://ror.org/0487kvf73 Xinjiang Uygur Autonomous Region Education Department ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗę•™č‚²åŽ…'),
(88712, 'https://ror.org/0202tst27', 'no_lang_code', 1, 'https://ror.org/0202tst27 NIKIMT-Atomstroy ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ монтажной технологии — Атомстрой'),
(88713, 'https://ror.org/0422kzb24', 'es', 1, 'https://ror.org/0422kzb24 Pontifical Catholic University of Argentina Pontificia Universidad Católica Argentina Pontificia università cattolica argentina Päpstliche Katholische Universität von Argentinien Université catholique argentine'),
(88714, 'https://ror.org/01wttbg53', 'en', 1, 'https://ror.org/01wttbg53 Hult International Business School'),
(88715, 'https://ror.org/000gyeq24', 'en', 1, 'https://ror.org/000gyeq24 State Institution National Antarctic Scientific Center ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ антарктичний науковий центр'),
(88716, 'https://ror.org/011qzf880', 'en', 0, 'https://ror.org/011qzf880 Austrian Excellence Center for Tribology Ɩsterreichisches Exzellenzzentrum für Tribologie'),
(88717, 'https://ror.org/04nw9e879', 'id', 1, 'https://ror.org/04nw9e879 Sekolah Tinggi Pastoral Don Bosco Tomohon'),
(88718, 'https://ror.org/04f5ctv63', 'fr', 1, 'https://ror.org/04f5ctv63 Office FranƧais de la BiodiversitƩ'),
(88719, 'https://ror.org/001r1xj25', 'fr', 1, 'https://ror.org/001r1xj25 Investigations sur l’histoire et l’actualitĆ© des mutations architecturales et urbaines'),
(88720, 'https://ror.org/05h9t7759', 'en', 1, 'https://ror.org/05h9t7759 University of Isfahan دانؓگاه اصفهان'),
(88721, 'https://ror.org/0168fvh11', 'en', 1, 'https://ror.org/0168fvh11 Chengdu Research Base of Giant Panda Breeding ęˆéƒ½å¤§ē†ŠēŒ«ē¹č‚²ē ”ē©¶åŸŗåœ°'),
(88722, 'https://ror.org/03efxbk04', 'no_lang_code', 1, 'https://ror.org/03efxbk04 Sigma Genosys (United States)'),
(88723, 'https://ror.org/056b2ve81', 'de', 1, 'https://ror.org/056b2ve81 Debra'),
(88724, 'https://ror.org/01vm25y95', 'en', 1, 'https://ror.org/01vm25y95 Research Institute of Technical Glass ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технического стекла'),
(88725, 'https://ror.org/045nd5z39', 'en', 1, 'https://ror.org/045nd5z39 UPHLS'),
(88726, 'https://ror.org/04qb0m613', 'en', 1, 'https://ror.org/04qb0m613 Ontario Turtle Conservation Centre'),
(88727, 'https://ror.org/00wyh7698', 'fr', 1, 'https://ror.org/00wyh7698 MƩtabiot'),
(88728, 'https://ror.org/00bx3rb98', 'en', 1, 'https://ror.org/00bx3rb98 China Meteorological Administration 中国气豔局'),
(88729, 'https://ror.org/00vbvha87', 'en', 0, 'https://ror.org/00vbvha87 Public Health England'),
(88730, 'https://ror.org/03h0c3197', 'en', 1, 'https://ror.org/03h0c3197 Woman''s Cancer Foundation'),
(88731, 'https://ror.org/05pxfr638', 'en', 0, 'https://ror.org/05pxfr638 State Oceanic Administration 国家海擋局'),
(88732, 'https://ror.org/01zgy1s35', 'en', 1, 'https://ror.org/01zgy1s35 University Medical Center Hamburg-Eppendorf UniversitƤtsklinikum Hamburg-Eppendorf'),
(88733, 'https://ror.org/04e74dh47', 'en', 1, 'https://ror.org/04e74dh47 Ministerstvo životnĆ­ho prostředĆ­ ČeskĆ© republiky Ministry of the Environment of the Czech Republic'),
(88734, 'https://ror.org/0411b0f77', 'en', 1, 'https://ror.org/0411b0f77 Max Planck Institute for the Structure and Dynamics of Matter Max-Planck-Institut für Struktur und Dynamik der Materie'),
(88735, 'https://ror.org/028vtqb15', 'en', 1, 'https://ror.org/028vtqb15 Birla Institute of Technology, Mesra बिरला ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(88736, 'https://ror.org/04jddh448', 'en', 1, 'https://ror.org/04jddh448 Tropical Resources Institute'),
(88737, 'https://ror.org/028rasm92', 'fr', 1, 'https://ror.org/028rasm92 MobilitƩs: Vieillissement, Pathologie, SantƩ'),
(88738, 'https://ror.org/04mm88136', 'en', 1, 'https://ror.org/04mm88136 Grantham Foundation'),
(88739, 'https://ror.org/0120y0t77', 'en', 1, 'https://ror.org/0120y0t77 UKOLN'),
(88740, 'https://ror.org/0313jb750', 'en', 1, 'https://ror.org/0313jb750 Chinese Academy of Agricultural Sciences äø­å›½å†œäøšē§‘å­¦é™¢'),
(88741, 'https://ror.org/00vsvph51', 'fr', 1, 'https://ror.org/00vsvph51 Physiopathologie et imagerie des troubles neurologiques Physiopathology and Imaging of Neurological Disorders'),
(88742, 'https://ror.org/026v1ze26', 'en', 1, 'https://ror.org/026v1ze26 National Institute for Materials Science å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē‰©č³Ŗćƒ»ęę–™ē ”ē©¶ę©Ÿę§‹'),
(88743, 'https://ror.org/01w6gjq94', 'no_lang_code', 1, 'https://ror.org/01w6gjq94 Samsung (United Kingdom)'),
(88744, 'https://ror.org/04e96zf49', 'en', 1, 'https://ror.org/04e96zf49 Nagase Science Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗé•·ē€¬ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(88745, 'https://ror.org/02xawj363', 'no_lang_code', 1, 'https://ror.org/02xawj363 Research Institute of Measuring Devices (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŠ·Š¼ŠµŃ€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… приборов — ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ завоГ имени ŠšŠ¾Š¼ŠøŠ½Ń‚ерна'),
(88746, 'https://ror.org/05yp7vw70', 'fr', 1, 'https://ror.org/05yp7vw70 AcadƩmie de Grenoble'),
(88747, 'https://ror.org/01kkkw551', 'de', 1, 'https://ror.org/01kkkw551 Zentrum für Datenverarbeitung'),
(88748, 'https://ror.org/02nhfkk25', 'fr', 1, 'https://ror.org/02nhfkk25 Laboratoire National de MƩtrologie'),
(88749, 'https://ror.org/04b7c5303', 'en', 1, 'https://ror.org/04b7c5303 Kharkiv State Academy of Physical Culture Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø'),
(88750, 'https://ror.org/02dye2z10', 'es', 1, 'https://ror.org/02dye2z10 Secretaria de Salud'),
(88751, 'https://ror.org/03dga7879', 'es', 1, 'https://ror.org/03dga7879 Instituto Tecnológico de Tijuana'),
(88752, 'https://ror.org/043bd2013', 'en', 1, 'https://ror.org/043bd2013 American Academy in Rome');
INSERT INTO `rors` VALUES
(88753, 'https://ror.org/05s7dz794', 'en', 0, 'https://ror.org/05s7dz794 International Union Against Tuberculosis and Lung Disease'),
(88754, 'https://ror.org/04nx9ps90', 'fr', 1, 'https://ror.org/04nx9ps90 Ɖcole SupĆ©rieure d''Ɖlectronique de l''Ouest'),
(88755, 'https://ror.org/02dfxg175', 'en', 1, 'https://ror.org/02dfxg175 EEA and Norway Grants'),
(88756, 'https://ror.org/0145x2c32', 'en', 1, 'https://ror.org/0145x2c32 Banco Nacional de Desenvolvimento EconƓmico e Social Brazilian Development Bank'),
(88757, 'https://ror.org/0455qtz98', 'en', 1, 'https://ror.org/0455qtz98 South African Society of Biochemistry and Molecular Biology Suid-Afrikaanse Vereeniging vir Biochemie en MolekulĆŖre Biologie'),
(88758, 'https://ror.org/00vf4jm23', 'en', 1, 'https://ror.org/00vf4jm23 Administration for Community Living'),
(88759, 'https://ror.org/048b0n981', 'en', 1, 'https://ror.org/048b0n981 Rotary International'),
(88760, 'https://ror.org/02zbz4g27', 'en', 0, 'https://ror.org/02zbz4g27 International Federation of Library Associations and Institutions'),
(88761, 'https://ror.org/022b8mr96', 'pt', 1, 'https://ror.org/022b8mr96 Fundação para o Desenvolvimento da UNESP'),
(88762, 'https://ror.org/00gmd0m82', 'en', 1, 'https://ror.org/00gmd0m82 Wellness Pointe'),
(88763, 'https://ror.org/0051wzj62', 'sv', 1, 'https://ror.org/0051wzj62 Henning and Johan Throne-Holst''s Foundation Henning och Johan Throne-Holst stiftelse'),
(88764, 'https://ror.org/009ey6w22', 'en', 1, 'https://ror.org/009ey6w22 Texas State University System'),
(88765, 'https://ror.org/03g3m1w62', 'no_lang_code', 1, 'https://ror.org/03g3m1w62 DuPont (United States)'),
(88766, 'https://ror.org/00xxxe629', 'en', 1, 'https://ror.org/00xxxe629 American Brain Foundation'),
(88767, 'https://ror.org/02z3f5j48', 'fr', 1, 'https://ror.org/02z3f5j48 Diabète athérothrombose et thérapies Réunion Océan Indien'),
(88768, 'https://ror.org/01bn93e28', 'fr', 1, 'https://ror.org/01bn93e28 Ɖcole Nationale de la MĆ©tĆ©orologie'),
(88769, 'https://ror.org/01drq0835', 'en', 1, 'https://ror.org/01drq0835 Ton Duc Thang University TrĘ°į»ng ĐẔi hį»c TĆ“n Đức ThįŗÆng'),
(88770, 'https://ror.org/0113zvv22', 'en', 0, 'https://ror.org/0113zvv22 Catholic University College of Bruges–Ostend'),
(88771, 'https://ror.org/00w6g5w60', 'en', 1, 'https://ror.org/00w6g5w60 City Of Hope National Medical Center'),
(88772, 'https://ror.org/005c9q773', 'en', 1, 'https://ror.org/005c9q773 City College Southampton'),
(88773, 'https://ror.org/04c97m830', 'en', 0, 'https://ror.org/04c97m830 Australian National Data Service'),
(88774, 'https://ror.org/01c64e160', 'no_lang_code', 1, 'https://ror.org/01c64e160 Calibraciones Industriales S.A. (Chile)'),
(88775, 'https://ror.org/05qze6v15', 'en', 1, 'https://ror.org/05qze6v15 Odessa National Maritime University ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Š¼Š¾Ń€ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88776, 'https://ror.org/052c5rz55', 'en', 1, 'https://ror.org/052c5rz55 Indian Ocean University'),
(88777, 'https://ror.org/04fme8709', 'en', 1, 'https://ror.org/04fme8709 Center for Free-Electron Laser Science'),
(88778, 'https://ror.org/0020rgm10', 'en', 1, 'https://ror.org/0020rgm10 State Horticultural Association of Pennsylvania'),
(88779, 'https://ror.org/018sxpn63', 'pt', 1, 'https://ror.org/018sxpn63 Centro Nacional de Primatas'),
(88780, 'https://ror.org/01r3vad87', 'no_lang_code', 1, 'https://ror.org/01r3vad87 Laboratori Guglielmo Marconi (Italy)'),
(88781, 'https://ror.org/04gjyrn78', 'fr', 1, 'https://ror.org/04gjyrn78 Laboratoire Public d''Essais et d''Etudes'),
(88782, 'https://ror.org/034ffbg36', 'no_lang_code', 1, 'https://ror.org/034ffbg36 Bayer (United States)'),
(88783, 'https://ror.org/05qtybq80', 'en', 1, 'https://ror.org/05qtybq80 U.S. Geological Survey, Wetland and Aquatic Research Center'),
(88784, 'https://ror.org/02edexj13', 'en', 1, 'https://ror.org/02edexj13 Networks of Centres of Excellence RƩseaux de centres d''excellence'),
(88785, 'https://ror.org/05hne2921', 'fr', 1, 'https://ror.org/05hne2921 Institut ACTE - Arts CrƩations ThƩories EsthƩtiques'),
(88786, 'https://ror.org/00at47r27', 'en', 1, 'https://ror.org/00at47r27 Wisconsin Society for Cardiovascular and Pulmonary Health & Rehabilitation'),
(88787, 'https://ror.org/03q9apk85', 'en', 1, 'https://ror.org/03q9apk85 Victorian Heart Hospital'),
(88788, 'https://ror.org/01xr1s547', 'no_lang_code', 1, 'https://ror.org/01xr1s547 Xenocs (France)'),
(88789, 'https://ror.org/01ek73717', 'no_lang_code', 1, 'https://ror.org/01ek73717 Intel (United States)'),
(88790, 'https://ror.org/02pzme005', 'es', 1, 'https://ror.org/02pzme005 Laboratorio de Tecnogestión'),
(88791, 'https://ror.org/01raq2v93', 'es', 1, 'https://ror.org/01raq2v93 SubsecretarĆ­a de Control y Aplicaciones Nucleares'),
(88792, 'https://ror.org/0068r0y33', 'en', 0, 'https://ror.org/0068r0y33 University of Wisconsin–Eau Claire – Barron County'),
(88793, 'https://ror.org/04v5nnm54', 'en', 1, 'https://ror.org/04v5nnm54 National Institute of Science Communication and Information Resources ą¤Øą¤æą¤øą„ą¤•ą„‡ą¤Æą¤°'),
(88794, 'https://ror.org/05hf69e15', 'en', 1, 'https://ror.org/05hf69e15 JRS Biodiversity Foundation'),
(88795, 'https://ror.org/00789fa95', 'it', 1, 'https://ror.org/00789fa95 Ministero della Salute Ministry of Health'),
(88796, 'https://ror.org/02ckj1z46', 'en', 1, 'https://ror.org/02ckj1z46 North Advancement Center for Science and Technology åŒ—ęµ·é“ē§‘å­¦ęŠ€č”“ē·åˆęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(88797, 'https://ror.org/017t6vc13', 'fr', 1, 'https://ror.org/017t6vc13 CEPN'),
(88798, 'https://ror.org/00br86003', 'de', 1, 'https://ror.org/00br86003 Austrian Federal Ministry of Agriculture, Forestry, Environment and Water Management Bundesministerium für Land- und Forstwirtschaft, Umwelt und Wasserwirtschaft'),
(88799, 'https://ror.org/0238pcf92', 'en', 1, 'https://ror.org/0238pcf92 Worcester County Public Schools'),
(88800, 'https://ror.org/05rkv2e91', 'fr', 1, 'https://ror.org/05rkv2e91 Philosophie, Histoire et Analyse des ReprĆ©sentations Ɖconomiques'),
(88801, 'https://ror.org/026egkx38', 'id', 1, 'https://ror.org/026egkx38 Institut Agama Islam Negeri Sorong'),
(88802, 'https://ror.org/01413r497', 'en', 1, 'https://ror.org/01413r497 Shandong Tumor Hospital å±±äøœēœč‚æē˜¤åŒ»é™¢'),
(88803, 'https://ror.org/02scpdz59', 'en', 1, 'https://ror.org/02scpdz59 Thanh Do University ĐẔi hį»c ThĆ nh ĐƓ'),
(88804, 'https://ror.org/02fbdhm31', 'no_lang_code', 1, 'https://ror.org/02fbdhm31 OncoDetect (United States)'),
(88805, 'https://ror.org/032778302', 'no_lang_code', 1, 'https://ror.org/032778302 First Consulting Group (United States)'),
(88806, 'https://ror.org/02dxnxj52', 'en', 1, 'https://ror.org/02dxnxj52 Pacific States Marine Fisheries Commission'),
(88807, 'https://ror.org/0437ph973', 'en', 1, 'https://ror.org/0437ph973 Wildlife Management International'),
(88808, 'https://ror.org/02fhvxj45', 'en', 1, 'https://ror.org/02fhvxj45 Temple University Health System'),
(88809, 'https://ror.org/03nvhfa76', 'no_lang_code', 1, 'https://ror.org/03nvhfa76 Metron (Greece)'),
(88810, 'https://ror.org/04dzb7272', 'no_lang_code', 1, 'https://ror.org/04dzb7272 Cengage Learning (United States)'),
(88811, 'https://ror.org/04vy95b61', 'en', 1, 'https://ror.org/04vy95b61 National Science and Technology Development Agency'),
(88812, 'https://ror.org/04ccf0j10', 'en', 1, 'https://ror.org/04ccf0j10 Centre for Safe Air'),
(88813, 'https://ror.org/035k1ke91', 'en', 1, 'https://ror.org/035k1ke91 JƩrƓme Lejeune Foundation'),
(88814, 'https://ror.org/0476q9d56', 'fr', 1, 'https://ror.org/0476q9d56 SociƩtƩ MathƩmatique de France'),
(88815, 'https://ror.org/04hf5kq57', 'en', 1, 'https://ror.org/04hf5kq57 New York State Department of Health'),
(88816, 'https://ror.org/05r9c7f43', 'en', 1, 'https://ror.org/05r9c7f43 Berkeley Public Health Division'),
(88817, 'https://ror.org/05b2ycy47', 'en', 1, 'https://ror.org/05b2ycy47 Jinan City People''s Hospital ęµŽå—åø‚äŗŗę°‘åŒ»é™¢'),
(88818, 'https://ror.org/02nst4e33', 'en', 1, 'https://ror.org/02nst4e33 Education, Formation, Travail, Savoirs'),
(88819, 'https://ror.org/03xj0x983', 'en', 1, 'https://ror.org/03xj0x983 Colorado State University System'),
(88820, 'https://ror.org/00dnfnh90', 'en', 1, 'https://ror.org/00dnfnh90 Elrha'),
(88821, 'https://ror.org/055f5q449', 'en', 1, 'https://ror.org/055f5q449 Hiroshima Bunkyo University åŗƒå³¶ę–‡ę•™å¤§å­¦'),
(88822, 'https://ror.org/030h91v78', 'no_lang_code', 1, 'https://ror.org/030h91v78 Yuracko and Hewitt Sustainable Global Solutions (United States)'),
(88823, 'https://ror.org/04cw0h271', 'no_lang_code', 1, 'https://ror.org/04cw0h271 Recovered (United States)'),
(88824, 'https://ror.org/011e3e176', 'en', 1, 'https://ror.org/011e3e176 Government of British Columbia'),
(88825, 'https://ror.org/03ppdqr14', 'no_lang_code', 0, 'https://ror.org/03ppdqr14 Lafarge (Canada)'),
(88826, 'https://ror.org/005e63s11', 'id', 1, 'https://ror.org/005e63s11 Sekolah Tinggi Ilmu Ekonomi Stan Im'),
(88827, 'https://ror.org/04pg1df08', 'no_lang_code', 1, 'https://ror.org/04pg1df08 Biogen (Belgium)'),
(88828, 'https://ror.org/05t5n0v36', 'no_lang_code', 1, 'https://ror.org/05t5n0v36 HREA'),
(88829, 'https://ror.org/04dqaqw31', 'fr', 1, 'https://ror.org/04dqaqw31 Unité transversale de recherche en psychogénèse et psychopathologie'),
(88830, 'https://ror.org/05ckh8811', 'en', 1, 'https://ror.org/05ckh8811 Alfred Friendly Foundation'),
(88831, 'https://ror.org/05w9cdf74', 'no_lang_code', 1, 'https://ror.org/05w9cdf74 Bodycote (United Kingdom)'),
(88832, 'https://ror.org/03hqfa087', 'no_lang_code', 1, 'https://ror.org/03hqfa087 Pacmar Technologies (United States)'),
(88833, 'https://ror.org/02t1bej08', 'en', 1, 'https://ror.org/02t1bej08 Monash Health'),
(88834, 'https://ror.org/01m800e37', 'en', 1, 'https://ror.org/01m800e37 University Grants Commission Nepal'),
(88835, 'https://ror.org/01q36h934', 'en', 1, 'https://ror.org/01q36h934 Sorsogon State University'),
(88836, 'https://ror.org/01pay1g94', 'en', 1, 'https://ror.org/01pay1g94 Fred Hollows Foundation'),
(88837, 'https://ror.org/01efpdp52', 'en', 1, 'https://ror.org/01efpdp52 University of the Commonwealth Caribbean'),
(88838, 'https://ror.org/01gng0007', 'en', 1, 'https://ror.org/01gng0007 Henan College of Transportation ę²³å—äŗ¤é€ščŒäøšęŠ€ęœÆå­¦é™¢'),
(88839, 'https://ror.org/02eq2w707', 'en', 1, 'https://ror.org/02eq2w707 National Academies of Sciences, Engineering, and Medicine'),
(88840, 'https://ror.org/05q8d3662', 'fr', 1, 'https://ror.org/05q8d3662 Nuclear Organization and Oncogenesis Organisation Nucléaire et Oncogenèse'),
(88841, 'https://ror.org/046gpnb18', 'en', 0, 'https://ror.org/046gpnb18 Ufa State Aviation Technical University Уфимский Š³Š¾ŃŃƒŠ“арственный авиационный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Өфө Гәүләт Š°Š²ŠøŠ°Ń†ŠøŃ техник ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(88842, 'https://ror.org/00zqqv187', 'en', 1, 'https://ror.org/00zqqv187 Kharkiv Medical Academy of Postgraduate Education Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ¾Ń— меГичної акаГемії ŠæŃ–ŃŠ»ŃŠ“ŠøŠæŠ»Š¾Š¼Š½Š¾Ń— освіти'),
(88843, 'https://ror.org/0129z1n29', 'es', 1, 'https://ror.org/0129z1n29 Sociedad Venezolana de Ecologia Venezuelan Society of Ecology'),
(88844, 'https://ror.org/01nnrec54', 'no_lang_code', 1, 'https://ror.org/01nnrec54 Biotec (United Kingdom)'),
(88845, 'https://ror.org/04xa2jy35', 'en', 1, 'https://ror.org/04xa2jy35 Maa- ja metsƤtalousministeriƶ Ministry of Agriculture and Forestry'),
(88846, 'https://ror.org/048kn1p59', 'no_lang_code', 1, 'https://ror.org/048kn1p59 Gebro Pharma (Spain)'),
(88847, 'https://ror.org/01dbm1232', 'en', 1, 'https://ror.org/01dbm1232 Canadian Hydrographic Service Service hydrographique du Canada'),
(88848, 'https://ror.org/03zvzzf54', 'ru', 1, 'https://ror.org/03zvzzf54 RSPC MT Republican Scientific and Practical Center for Medical Technologies, Informatization, Administration and Management of Health Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр меГицинских технологий, информатизации, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(88849, 'https://ror.org/01gtph098', 'no_lang_code', 1, 'https://ror.org/01gtph098 Tonan Hospital ę–—å—ē—…é™¢'),
(88850, 'https://ror.org/023n3xx64', 'en', 0, 'https://ror.org/023n3xx64 Office of the Assistant Secretary for Health'),
(88851, 'https://ror.org/05thj7870', 'fr', 1, 'https://ror.org/05thj7870 Plateforme d''information et de services pour les maladies rares et les mƩdicaments orphelins'),
(88852, 'https://ror.org/020120f86', 'fr', 1, 'https://ror.org/020120f86 Institut supƩrieur de l''automobile et des transports'),
(88853, 'https://ror.org/03gdq6t30', 'en', 1, 'https://ror.org/03gdq6t30 Iran National Standards Organization سازمان Ł…Ł„ŪŒ استاندارد'),
(88854, 'https://ror.org/02brqpg75', 'en', 1, 'https://ror.org/02brqpg75 Jaamacadda Zamzam Zamzam University of Science and Technology'),
(88855, 'https://ror.org/006f2dx14', 'en', 1, 'https://ror.org/006f2dx14 (ISC)²'),
(88856, 'https://ror.org/04meq0t12', 'no_lang_code', 1, 'https://ror.org/04meq0t12 ORLEN UniCRE Unipetrol Centre of Research and Education Unipetrol výzkumně vzdělĆ”vacĆ­ centrum'),
(88857, 'https://ror.org/00te8p082', 'fr', 1, 'https://ror.org/00te8p082 Mechanisms of epigenetic inheritance MƩcanismes de l''HƩrƩditƩ ƩpigƩnƩtique'),
(88858, 'https://ror.org/05akvb491', 'en', 1, 'https://ror.org/05akvb491 Third Xiangya Hospital äø­å—å¤§å­¦ę¹˜é›…äø‰åŒ»é™¢-é—Øę€„čÆŠę„¼'),
(88859, 'https://ror.org/00tbh0t11', 'en', 1, 'https://ror.org/00tbh0t11 Science and Technology Department of Hubei Province ę¹–åŒ—ēœē§‘ęŠ€åŽ…'),
(88860, 'https://ror.org/00hkj1v53', 'en', 1, 'https://ror.org/00hkj1v53 National Defense University åœ‹é˜²å¤§å­ø'),
(88861, 'https://ror.org/044enjr66', 'en', 1, 'https://ror.org/044enjr66 Eqbal Lahoori Institute of Higher Education Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ اقبال Ł„Ų§Ł‡ŁˆŲ±ŪŒ'),
(88862, 'https://ror.org/04txgxn49', 'en', 1, 'https://ror.org/04txgxn49 ITMO University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ информационных технологий, механики Šø оптики'),
(88863, 'https://ror.org/028p42702', 'no_lang_code', 1, 'https://ror.org/028p42702 BioOne'),
(88864, 'https://ror.org/00tjzq647', 'fr', 1, 'https://ror.org/00tjzq647 Joint Research Unit in Environmental Acoustics UnitƩ Mixte de Recherche en Acoustique Environnementale'),
(88865, 'https://ror.org/0354fnq92', 'en', 1, 'https://ror.org/0354fnq92 Arctic Goose Joint Venture Plan conjoint des OIES de l''Arctique Proyecto Conjunto para el Ganso del Ɓrtico'),
(88866, 'https://ror.org/02gkqqp86', 'en', 1, 'https://ror.org/02gkqqp86 Agencia de Protección Ambiental de California California Environmental Protection Agency'),
(88867, 'https://ror.org/04vdtsw44', 'no_lang_code', 1, 'https://ror.org/04vdtsw44 IVC Evidensia France'),
(88868, 'https://ror.org/05j131828', 'en', 1, 'https://ror.org/05j131828 Duke Regional Hospital'),
(88869, 'https://ror.org/03vhx9d88', 'es', 1, 'https://ror.org/03vhx9d88 Fundación Canaria de Investigación Sanitaria'),
(88870, 'https://ror.org/03e8mf369', 'es', 1, 'https://ror.org/03e8mf369 Ministerio de Industria, EnergĆ­a y MinerĆ­a'),
(88871, 'https://ror.org/00np0b046', 'no', 1, 'https://ror.org/00np0b046 Kautokeino Kommune'),
(88872, 'https://ror.org/032nknw13', 'en', 1, 'https://ror.org/032nknw13 Casey Hospital'),
(88873, 'https://ror.org/017gx5z33', 'en', 1, 'https://ror.org/017gx5z33 Cambridge Information Group'),
(88874, 'https://ror.org/02hb3t423', 'no_lang_code', 0, 'https://ror.org/02hb3t423 Shire (Ireland)'),
(88875, 'https://ror.org/04y1vcj70', 'es', 1, 'https://ror.org/04y1vcj70 Instituto de Investigaciones y Control del EjƩrcito de Chile'),
(88876, 'https://ror.org/00mvd2t81', 'en', 1, 'https://ror.org/00mvd2t81 Netherlands Enterprise Agency Ondersteunt ondernemend Nederland'),
(88877, 'https://ror.org/03aj2mv38', 'en', 1, 'https://ror.org/03aj2mv38 American Association of Petroleum Geologists'),
(88878, 'https://ror.org/01xeb1c73', 'en', 1, 'https://ror.org/01xeb1c73 Almaty Technological University Алматы Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃŠ»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(88879, 'https://ror.org/00h4kdn81', 'en', 1, 'https://ror.org/00h4kdn81 New York State Education Department'),
(88880, 'https://ror.org/05ah35j40', 'en', 1, 'https://ror.org/05ah35j40 Annenberg Foundation Trust at Sunnylands'),
(88881, 'https://ror.org/01pxptg16', 'en', 1, 'https://ror.org/01pxptg16 Mandela Institute for Development Studies'),
(88882, 'https://ror.org/037wqsr57', 'en', 1, 'https://ror.org/037wqsr57 Hormozgan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی هرمزگان'),
(88883, 'https://ror.org/02chpvy95', 'en', 1, 'https://ror.org/02chpvy95 Virgin Islands Housing Finance Authority'),
(88884, 'https://ror.org/05dvmy761', 'en', 1, 'https://ror.org/05dvmy761 World Vegetable Center'),
(88885, 'https://ror.org/031e8e542', 'en', 1, 'https://ror.org/031e8e542 CODELCO'),
(88886, 'https://ror.org/01zbp0650', 'en', 1, 'https://ror.org/01zbp0650 European Society for Evolutionary Biology'),
(88887, 'https://ror.org/01eea1w69', 'no_lang_code', 1, 'https://ror.org/01eea1w69 Southern Water (United Kingdom)'),
(88888, 'https://ror.org/011qdnn53', 'en', 1, 'https://ror.org/011qdnn53 Eastern Visayas State University Pamantasang Pambansa ng Silangang Kabisayaan'),
(88889, 'https://ror.org/02fdb8q57', 'no_lang_code', 1, 'https://ror.org/02fdb8q57 Saint-Gobain (France)'),
(88890, 'https://ror.org/02yrxdp92', 'en', 1, 'https://ror.org/02yrxdp92 Yunnan Provincial Department of Education äŗ‘å—ēœę•™č‚²åŽ…'),
(88891, 'https://ror.org/03c1bnn70', 'no_lang_code', 1, 'https://ror.org/03c1bnn70 Thirst-Aid (United States)'),
(88892, 'https://ror.org/02xqc6638', 'no_lang_code', 1, 'https://ror.org/02xqc6638 Bristol-Myers Squibb (Switzerland)'),
(88893, 'https://ror.org/00njsck89', 'en', 1, 'https://ror.org/00njsck89 China Health Promotion Foundation äø­å›½å„åŗ·äæƒčæ›åŸŗé‡‘ä¼š'),
(88894, 'https://ror.org/05vqkgf08', 'fr', 1, 'https://ror.org/05vqkgf08 Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde'),
(88895, 'https://ror.org/04xykxd72', 'fr', 1, 'https://ror.org/04xykxd72 Laboratoire de GƩnie Informatique, de Production et de Maintenance'),
(88896, 'https://ror.org/031dp5151', 'en', 1, 'https://ror.org/031dp5151 Earth-Life Science Institute'),
(88897, 'https://ror.org/00r49yt25', 'fr', 1, 'https://ror.org/00r49yt25 Agence de l''eau Loire-Bretagne'),
(88898, 'https://ror.org/00ppzen87', 'en', 1, 'https://ror.org/00ppzen87 Empire State Development'),
(88899, 'https://ror.org/02a7ga636', 'en', 1, 'https://ror.org/02a7ga636 Alexander S. Onassis Foundation'),
(88900, 'https://ror.org/00k4cwq24', 'en', 1, 'https://ror.org/00k4cwq24 Ministry of Higher Education and Scientific Research وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(88901, 'https://ror.org/05nf9by90', 'en', 1, 'https://ror.org/05nf9by90 Hutton''s Shearwater Charitable Trust'),
(88902, 'https://ror.org/009jksw02', 'id', 1, 'https://ror.org/009jksw02 Universitas Ubudiyah Indonesia'),
(88903, 'https://ror.org/056pa7468', 'en', 1, 'https://ror.org/056pa7468 International Association for Bear Research and Management'),
(88904, 'https://ror.org/01xtpxr95', 'no_lang_code', 1, 'https://ror.org/01xtpxr95 Agilent Technologies (Japan) ć‚¢ć‚øćƒ¬ćƒ³ćƒˆćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(88905, 'https://ror.org/05p6qqk79', 'en', 0, 'https://ror.org/05p6qqk79 Tammerfors universitet Tampereen yliopisto University of Tampere'),
(88906, 'https://ror.org/00gjnk018', 'fr', 1, 'https://ror.org/00gjnk018 Pathogenesis of vascular infections PathogenĆØse des infections vasculaires'),
(88907, 'https://ror.org/03zmqc707', 'en', 1, 'https://ror.org/03zmqc707 Assumption University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø­ąø±ąøŖąøŖąø±ąø”ąøŠąø±ąø'),
(88908, 'https://ror.org/021rr7t48', 'es', 1, 'https://ror.org/021rr7t48 Instituto de Investigaciones BioquĆ­micas de BahĆ­a Blanca, CONICET-UNS'),
(88909, 'https://ror.org/05f8sby41', 'en', 1, 'https://ror.org/05f8sby41 Gans Collections and Charitable Fund'),
(88910, 'https://ror.org/04fnrj705', 'en', 1, 'https://ror.org/04fnrj705 South African Genetics Society Suid-Afrikaanse Genetiese Vereeniging'),
(88911, 'https://ror.org/03s1qdk24', 'en', 1, 'https://ror.org/03s1qdk24 Japan Healthcare University ę—„ęœ¬åŒ»ē™‚å¤§å­¦'),
(88912, 'https://ror.org/0437b3316', 'en', 1, 'https://ror.org/0437b3316 Dipartimento federale dell''ambiente, dei trasporti, dell''energia e delle comunicazioni Département fédéral de l''environnement, des transports, de l''énergie et des communications Eidgenössisches Departement für Umwelt, Verkehr, Energie und Kommunikation Federal Department of Environment, Transport, Energy and Communications'),
(88913, 'https://ror.org/03rgygs91', 'de', 1, 'https://ror.org/03rgygs91 Deutsche Allianz Meeresforschung'),
(88914, 'https://ror.org/028e6rb32', 'en', 1, 'https://ror.org/028e6rb32 Ministry of Antiquities بوابة وزارة الاثار Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(88915, 'https://ror.org/03zffa955', 'fr', 1, 'https://ror.org/03zffa955 Laboratoire Interdisciplinaire d''Ʃtude du Politique Hannah Arendt'),
(88916, 'https://ror.org/0575w8109', 'en', 1, 'https://ror.org/0575w8109 British Institute at Ankara'),
(88917, 'https://ror.org/057kqtj87', 'no_lang_code', 1, 'https://ror.org/057kqtj87 Avon (United States)'),
(88918, 'https://ror.org/058arh533', 'en', 1, 'https://ror.org/058arh533 Mazaya University College ŁƒŁ„ŁŠŲ© Ł…Ų²Ų§ŁŠŲ§ الجامعة'),
(88919, 'https://ror.org/036054d36', 'en', 1, 'https://ror.org/036054d36 Italian institute for Genomic Medicine'),
(88920, 'https://ror.org/03cw2h814', 'nl', 1, 'https://ror.org/03cw2h814 Alzheimer Nederland'),
(88921, 'https://ror.org/03z2zbf42', 'en', 0, 'https://ror.org/03z2zbf42 African Development Bank Group'),
(88922, 'https://ror.org/02r2q1d96', 'en', 1, 'https://ror.org/02r2q1d96 Leibniz Institute of Virology (LIV) Leibniz-Institut für Virologie (LIV)'),
(88923, 'https://ror.org/03x55yk94', 'no_lang_code', 0, 'https://ror.org/03x55yk94 Sir Ratan Tata Trust and Navajbai Ratan Tata Trust'),
(88924, 'https://ror.org/03sxt1c89', 'en', 1, 'https://ror.org/03sxt1c89 Kementerian Pendidikan dan Kebudayaan Ministry of Education and Culture'),
(88925, 'https://ror.org/02ey6qs66', 'en', 1, 'https://ror.org/02ey6qs66 Jiangsu Provincial Center for Disease Control and Prevention ę±Ÿč‹ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(88926, 'https://ror.org/03zsnyg10', 'fr', 1, 'https://ror.org/03zsnyg10 Centre d’Investigation Clinique des HĆ“pitaux Universitaires de Strasbourg'),
(88927, 'https://ror.org/03e2r1r87', 'fr', 1, 'https://ror.org/03e2r1r87 Ɖcole Nationale SupĆ©rieure d''Architecture de Paris-La Villette'),
(88928, 'https://ror.org/05576mm83', 'fr', 1, 'https://ror.org/05576mm83 Ɖcole Nationale SupĆ©rieure d''Architecture et de Paysage de Bordeaux'),
(88929, 'https://ror.org/05mmnns11', 'en', 1, 'https://ror.org/05mmnns11 Azerbaijan State Oil and Industry University Azərbaycan Dƶvlət Neft və Sənaye Universiteti AзербайГжанский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет ŠŠµŃ„Ń‚Šø Šø ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(88930, 'https://ror.org/029c86w95', 'en', 0, 'https://ror.org/029c86w95 Saint-Petersburg State University Information Technologies, Mechanic and Optics'),
(88931, 'https://ror.org/02qj02q19', 'en', 1, 'https://ror.org/02qj02q19 EIS AFRICA'),
(88932, 'https://ror.org/048gqac97', 'en', 1, 'https://ror.org/048gqac97 Izeh Islamic Azad University دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ°Ł‡'),
(88933, 'https://ror.org/01392hb02', 'pt', 1, 'https://ror.org/01392hb02 Instituto Superior Monitor'),
(88934, 'https://ror.org/01j1np431', 'en', 1, 'https://ror.org/01j1np431 Rajamangala University of Technology Suvarnabhumi ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøŖąøøąø§ąø£ąø£ąø“ąø ąø¹ąø”ąø“'),
(88935, 'https://ror.org/004ydw344', 'fr', 1, 'https://ror.org/004ydw344 Archives nationales'),
(88936, 'https://ror.org/0275a3771', 'en', 1, 'https://ror.org/0275a3771 Wyoming Wildlife and Natural Resource Trust'),
(88937, 'https://ror.org/056efzf78', 'fr', 1, 'https://ror.org/056efzf78 Conseil RƩgional Provence-Alpes-CƓte d''Azur'),
(88938, 'https://ror.org/025zgmc56', 'en', 1, 'https://ror.org/025zgmc56 Gray''s Inn'),
(88939, 'https://ror.org/01mhj8761', 'en', 1, 'https://ror.org/01mhj8761 fRI Research'),
(88940, 'https://ror.org/05xs0ct17', 'de', 1, 'https://ror.org/05xs0ct17 Fondation Vinetum Stiftung Vinetum'),
(88941, 'https://ror.org/008891s18', 'fi', 1, 'https://ror.org/008891s18 Suomen Biologian Seura Vanamo ry'),
(88942, 'https://ror.org/059gve835', 'en', 1, 'https://ror.org/059gve835 Agency of Rural Development and Soil and Water Conservation č¾²ę„­éƒØč¾²ę‘ē™¼å±•åŠę°“åœŸäæęŒē½² ē‰ˆę¬Šę‰€ęœ‰'),
(88943, 'https://ror.org/03qh13r98', 'en', 1, 'https://ror.org/03qh13r98 Endocrine Fellows Foundation'),
(88944, 'https://ror.org/036c7vy41', 'en', 1, 'https://ror.org/036c7vy41 Central Organization for Standardization and Quality Control الجهاز Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ Ł„Ł„ŲŖŁ‚ŁŠŁŠŲ³ ŁˆŲ§Ł„Ų³ŁŠŲ·Ų±Ų© Ų§Ł„Ł†ŁˆŲ¹ŁŠŲ©'),
(88945, 'https://ror.org/02cd4tp05', 'fr', 1, 'https://ror.org/02cd4tp05 BibliothĆØque municipale de Lyon Lyon Public Library'),
(88946, 'https://ror.org/05x6abf22', 'de', 1, 'https://ror.org/05x6abf22 Freistaat Thüringen'),
(88947, 'https://ror.org/03zekj455', 'en', 1, 'https://ror.org/03zekj455 Berlin Mathematical School'),
(88948, 'https://ror.org/03m95az28', 'en', 1, 'https://ror.org/03m95az28 Wolf Creek Charitable Foundation'),
(88949, 'https://ror.org/0481e5k40', 'en', 1, 'https://ror.org/0481e5k40 Williamson County Conservation Foundation'),
(88950, 'https://ror.org/00cvnc278', 'en', 1, 'https://ror.org/00cvnc278 Arizona Alzheimer’s Consortium'),
(88951, 'https://ror.org/00mxk6y82', 'en', 1, 'https://ror.org/00mxk6y82 Lettie Pate Whitehead Foundation'),
(88952, 'https://ror.org/04fegx276', 'de', 1, 'https://ror.org/04fegx276 Janggen-Pƶhn-Stiftung'),
(88953, 'https://ror.org/05e761p90', 'en', 1, 'https://ror.org/05e761p90 Baha''i World Centre'),
(88954, 'https://ror.org/00f4frq91', 'en', 1, 'https://ror.org/00f4frq91 Hector Fellow Academy'),
(88955, 'https://ror.org/05r4nm410', 'en', 1, 'https://ror.org/05r4nm410 Tibet Autonomous Region Science and Technology Agency č„æč—č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(88956, 'https://ror.org/00w571a59', 'fr', 1, 'https://ror.org/00w571a59 Centre national interprofessionnel de l''économie laitière'),
(88957, 'https://ror.org/02g73ch63', 'en', 1, 'https://ror.org/02g73ch63 Winslow Foundation'),
(88958, 'https://ror.org/02598xw28', 'en', 1, 'https://ror.org/02598xw28 Malacological Society of London'),
(88959, 'https://ror.org/037s0ch40', 'de', 1, 'https://ror.org/037s0ch40 Triaplus AG'),
(88960, 'https://ror.org/02g0awj19', 'en', 1, 'https://ror.org/02g0awj19 An Roinn Tithiochta, Rialtais AitiĆŗil agus Oidhreachta Department of Housing, Local Government and Heritage'),
(88961, 'https://ror.org/00bhh3q35', 'en', 1, 'https://ror.org/00bhh3q35 Ministry of Education, Recreation and Sports MinistĆØre de l’Éducation, de l''Enseignement supĆ©rieur'),
(88962, 'https://ror.org/00m8d6786', 'en', 1, 'https://ror.org/00m8d6786 Karoliininen yliopistosairaala Karolinska Universitetssjukhuset Karolinska University Hospital'),
(88963, 'https://ror.org/022nw7z78', 'en', 1, 'https://ror.org/022nw7z78 Northwestern Polytechnic'),
(88964, 'https://ror.org/02wrw6058', 'it', 1, 'https://ror.org/02wrw6058 Biblioteca di Storia Moderna e Contemporanea'),
(88965, 'https://ror.org/00q74jp45', 'tr', 1, 'https://ror.org/00q74jp45 Canakkale Onsekiz Mart Universitesi Tip Fakultesi Hastanesi Ƈanakkale University Hospital'),
(88966, 'https://ror.org/0293c0n43', 'en', 1, 'https://ror.org/0293c0n43 Prairie Biotic Research'),
(88967, 'https://ror.org/02awp8a87', 'tr', 1, 'https://ror.org/02awp8a87 Türkiye Büyük Millet Meclisi'),
(88968, 'https://ror.org/014vdsh37', 'en', 1, 'https://ror.org/014vdsh37 Advanced Grid Institute'),
(88969, 'https://ror.org/036njap13', 'en', 1, 'https://ror.org/036njap13 Conservation Action Research Network'),
(88970, 'https://ror.org/03smh8813', 'en', 1, 'https://ror.org/03smh8813 Luhansk State Medical University Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88971, 'https://ror.org/03gxnrw66', 'en', 1, 'https://ror.org/03gxnrw66 The Tim and Karen Hixon Foundation'),
(88972, 'https://ror.org/00g5pdd79', 'en', 1, 'https://ror.org/00g5pdd79 British Phycological Society'),
(88973, 'https://ror.org/04w2d5e08', 'en', 1, 'https://ror.org/04w2d5e08 Textbook and Academic Authors Association'),
(88974, 'https://ror.org/01tkekz66', 'en', 1, 'https://ror.org/01tkekz66 Rainforest Trust'),
(88975, 'https://ror.org/01p3x3413', 'en', 1, 'https://ror.org/01p3x3413 Seerave Foundation'),
(88976, 'https://ror.org/00h1x4t21', 'en', 1, 'https://ror.org/00h1x4t21 Weierstrass Institute for Applied Analysis and Stochastics Weierstraß-Institut für Angewandte Analysis und Stochastik'),
(88977, 'https://ror.org/02jyzsn32', 'id', 1, 'https://ror.org/02jyzsn32 Sekolah Tinggi Ilmu Ekonomi Port Numbay Jayapura'),
(88978, 'https://ror.org/006x8s867', 'en', 1, 'https://ror.org/006x8s867 International Life Sciences Institute'),
(88979, 'https://ror.org/028zcv790', 'en', 1, 'https://ror.org/028zcv790 Nora Eccles Treadwell Foundation'),
(88980, 'https://ror.org/03jd6q418', 'id', 1, 'https://ror.org/03jd6q418 Universitas Islam Nahdlatul Ulama Jepara'),
(88981, 'https://ror.org/03kw6wr76', 'no_lang_code', 1, 'https://ror.org/03kw6wr76 Philips (United States)'),
(88982, 'https://ror.org/03hqap715', 'nl', 1, 'https://ror.org/03hqap715 Stichting Lucie Burgers'),
(88983, 'https://ror.org/00zgt9663', 'en', 1, 'https://ror.org/00zgt9663 Alikhan Bokeikhan University'),
(88984, 'https://ror.org/05syjm342', 'en', 1, 'https://ror.org/05syjm342 Edmonton Community Foundation'),
(88985, 'https://ror.org/02qeb2d88', 'en', 1, 'https://ror.org/02qeb2d88 Kentucky Department of Fish and Wildlife Resources'),
(88986, 'https://ror.org/00w3qhf76', 'fr', 1, 'https://ror.org/00w3qhf76 Fonds de recherche du QuƩbec'),
(88987, 'https://ror.org/0512kbj07', 'en', 1, 'https://ror.org/0512kbj07 Project Apis m.'),
(88988, 'https://ror.org/05yk4sz92', 'en', 0, 'https://ror.org/05yk4sz92 Western Macedonia University Of Applied Science'),
(88989, 'https://ror.org/04nrmhz52', 'de', 1, 'https://ror.org/04nrmhz52 Linden-Museum Stuttgart'),
(88990, 'https://ror.org/011gev843', 'de', 1, 'https://ror.org/011gev843 Popakademie Baden-Württemberg'),
(88991, 'https://ror.org/05dq9ay83', 'tr', 1, 'https://ror.org/05dq9ay83 Seferihisar Belediyesi'),
(88992, 'https://ror.org/05mgwem27', 'de', 1, 'https://ror.org/05mgwem27 Botanische Staatssammlung München'),
(88993, 'https://ror.org/01dzgwk87', 'en', 1, 'https://ror.org/01dzgwk87 Everglades Foundation'),
(88994, 'https://ror.org/00zqz4d90', 'no_lang_code', 1, 'https://ror.org/00zqz4d90 Millor Battery (Spain)'),
(88995, 'https://ror.org/04nnnz708', 'en', 1, 'https://ror.org/04nnnz708 Booz Allen Foundation'),
(88996, 'https://ror.org/026252h27', 'en', 1, 'https://ror.org/026252h27 Georgia Ornithological Society'),
(88997, 'https://ror.org/02t73gn69', 'en', 1, 'https://ror.org/02t73gn69 African Bird Club'),
(88998, 'https://ror.org/01g0t1k10', 'en', 1, 'https://ror.org/01g0t1k10 Graduate School of Business and Entrepreneurship under the Cabinet of Ministers of the Republic of Uzbekistan OŹ»zbekiston Respublikasi Vazirlar Mahkamasi huzuridagi biznes va tadbirkorlik oliy maktabi Š’Ń‹ŃŃˆŠ°Ń школа бизнеса Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° при ŠšŠ°Š±ŠøŠ½ŠµŃ‚е ŠœŠøŠ½ŠøŃŃ‚ров Республики Узбекистан'),
(88999, 'https://ror.org/05tkmkr12', 'en', 1, 'https://ror.org/05tkmkr12 Negaunee Foundation'),
(89000, 'https://ror.org/003hmh164', 'pt', 1, 'https://ror.org/003hmh164 Instituto Estadual do Ambiente do Rio de Janeiro'),
(89001, 'https://ror.org/02qn6jw83', 'id', 1, 'https://ror.org/02qn6jw83 Institut Agama Kristen Negeri Manado'),
(89002, 'https://ror.org/03ar4fe72', 'no_lang_code', 1, 'https://ror.org/03ar4fe72 TED Conferences (United States)'),
(89003, 'https://ror.org/00yk2cv94', 'en', 1, 'https://ror.org/00yk2cv94 Saint John of God Hospital'),
(89004, 'https://ror.org/02d02f052', 'en', 1, 'https://ror.org/02d02f052 Czech Academy of Sciences, Institute of Physics of Materials Ústav fyziky materiÔlů AV ČR'),
(89005, 'https://ror.org/01d29cd45', 'en', 1, 'https://ror.org/01d29cd45 Northern Ireland Environment Agency'),
(89006, 'https://ror.org/05pk8mf19', 'en', 1, 'https://ror.org/05pk8mf19 Department of Agriculture and Rural Development'),
(89007, 'https://ror.org/00f98bm36', 'en', 1, 'https://ror.org/00f98bm36 Women University Swabi'),
(89008, 'https://ror.org/0163qa322', 'en', 1, 'https://ror.org/0163qa322 National Peanut Board'),
(89009, 'https://ror.org/04hkn3159', 'en', 1, 'https://ror.org/04hkn3159 Avatar Alliance Foundation'),
(89010, 'https://ror.org/03zcny908', 'es', 0, 'https://ror.org/03zcny908 Ministerio de Universidades'),
(89011, 'https://ror.org/00dawnv76', 'de', 1, 'https://ror.org/00dawnv76 Evangelisches Krankenhaus Bethesda'),
(89012, 'https://ror.org/049hmt962', 'en', 1, 'https://ror.org/049hmt962 Blavatnik Family Foundation'),
(89013, 'https://ror.org/05grcz969', 'tr', 1, 'https://ror.org/05grcz969 Başaksehir Ƈam and Sakura City Hospital, Istanbul İstanbul Başakşehir Ƈam ve Sakura Şehir Hastanesi'),
(89014, 'https://ror.org/04sqkw483', 'en', 1, 'https://ror.org/04sqkw483 University of Georgia Research Foundation'),
(89015, 'https://ror.org/04jmpmc14', 'en', 1, 'https://ror.org/04jmpmc14 Jefferson Scholars Foundation'),
(89016, 'https://ror.org/02c2v6k39', 'nl', 1, 'https://ror.org/02c2v6k39 Hendrik Conscience Erfgoedbibliotheek Hendrik Conscience Heritage Library'),
(89017, 'https://ror.org/006zy7j55', 'eu', 1, 'https://ror.org/006zy7j55 HABE Liburutegia'),
(89018, 'https://ror.org/048x9m688', 'en', 1, 'https://ror.org/048x9m688 Juvenile Diabetes Research Foundation in Israel האגודה ×œ×”×•×›×Ø×Ŗ × ×¢×•×Ø×™× (הוג 1) ×‘×™×©×Ø××œ'),
(89019, 'https://ror.org/00949d647', 'en', 1, 'https://ror.org/00949d647 Ministerium für Bildung, Wissenschaft und Kultur Ministry of Education, Science and Culture'),
(89020, 'https://ror.org/00a9yg798', 'en', 1, 'https://ror.org/00a9yg798 Bristol Zoological Society'),
(89021, 'https://ror.org/05j3hgd02', 'en', 1, 'https://ror.org/05j3hgd02 Danish Ministry of Food, Agriculture and Fisheries Ministeriet for FĆødevarer, Landbrug og Fiskeri'),
(89022, 'https://ror.org/02kezd753', 'en', 1, 'https://ror.org/02kezd753 The Systematics Association'),
(89023, 'https://ror.org/05bhh0g83', 'en', 1, 'https://ror.org/05bhh0g83 Gouvernement du Yukon Government of Yukon'),
(89024, 'https://ror.org/03wpv8896', 'en', 1, 'https://ror.org/03wpv8896 Bioproducts Institute'),
(89025, 'https://ror.org/0008rqs82', 'en', 1, 'https://ror.org/0008rqs82 Genome Alberta'),
(89026, 'https://ror.org/032ebdh83', 'de', 1, 'https://ror.org/032ebdh83 Diözesanbibliothek Münster'),
(89027, 'https://ror.org/027wfea20', 'en', 1, 'https://ror.org/027wfea20 Ambassade de France Ć  Washington, D.C. Embassy of France in Washington, D.C'),
(89028, 'https://ror.org/0476bn305', 'no_lang_code', 1, 'https://ror.org/0476bn305 Samsung SDS (South Korea) 삼성SDS'),
(89029, 'https://ror.org/046k81c97', 'en', 1, 'https://ror.org/046k81c97 National Institute for Medical Research Development مؤسسه Ł…Ł„ŪŒ ŲŖŁˆŲ³Ų¹Ł‡ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų¹Ł„ŁˆŁ… پزؓکی'),
(89030, 'https://ror.org/01pm5qg50', 'en', 1, 'https://ror.org/01pm5qg50 Alrefak University Ų¬Ų§Ł…Ų¹Ų© الرفاق'),
(89031, 'https://ror.org/030251k37', 'en', 1, 'https://ror.org/030251k37 Minnesota Soybean Research and Promotion Council'),
(89032, 'https://ror.org/05ahkm330', 'en', 1, 'https://ror.org/05ahkm330 Fondation TD des Amis de l''Environnement TD Friends of the Environment Foundation'),
(89033, 'https://ror.org/04hnckd53', 'en', 1, 'https://ror.org/04hnckd53 Alberta Prion Research Institute'),
(89034, 'https://ror.org/01j369f98', 'nl', 1, 'https://ror.org/01j369f98 Fries Historisch en Letterkundig Centrum Frysk Histoarysk en Letterkundich Sintrum Tresoar'),
(89035, 'https://ror.org/05j1qss59', 'no_lang_code', 1, 'https://ror.org/05j1qss59 Acta Digital Services (France)'),
(89036, 'https://ror.org/03hgfqr38', 'en', 1, 'https://ror.org/03hgfqr38 Royal Entomological Society'),
(89037, 'https://ror.org/0364aqm22', 'pt', 1, 'https://ror.org/0364aqm22 Autoridade de Supervisão de Seguros e Fundos de Pensões'),
(89038, 'https://ror.org/059bgk218', 'en', 0, 'https://ror.org/059bgk218 John Marshall Law School'),
(89039, 'https://ror.org/0599wfz09', 'en', 1, 'https://ror.org/0599wfz09 Animal and Plant Health Inspection Service'),
(89040, 'https://ror.org/032x9hy18', 'en', 1, 'https://ror.org/032x9hy18 United States Science Support Program'),
(89041, 'https://ror.org/05qkjwz87', 'de', 1, 'https://ror.org/05qkjwz87 Evangelisches Klinikum Niederrhei'),
(89042, 'https://ror.org/02g5w9d85', 'es', 1, 'https://ror.org/02g5w9d85 Consejo Económico y Social'),
(89043, 'https://ror.org/04etfjw39', 'en', 1, 'https://ror.org/04etfjw39 Oriental Bird Club'),
(89044, 'https://ror.org/04apwcj44', 'en', 1, 'https://ror.org/04apwcj44 SIIS Centro de Documentación y Estudios SIIS Dokumentazio eta Ikerketa Zentroa SIIS Research and Documentation Centre'),
(89045, 'https://ror.org/00ybqta11', 'en', 1, 'https://ror.org/00ybqta11 Nemours Wildlife Foundation'),
(89046, 'https://ror.org/004q7ve22', 'ca', 1, 'https://ror.org/004q7ve22 Museu de Prehistòria de València'),
(89047, 'https://ror.org/05fvjwq08', 'en', 1, 'https://ror.org/05fvjwq08 Center for Islamic Studies (ISAM) İslam Araştırmaları Merkezi (İSAM)'),
(89048, 'https://ror.org/0124n7b57', 'da', 1, 'https://ror.org/0124n7b57 Anti Doping Danmark'),
(89049, 'https://ror.org/05bd2x046', 'hu', 1, 'https://ror.org/05bd2x046 Central-Eastern-European Recreational Association Közép-Kelet-Európai RekreÔciós TÔrsasÔg'),
(89050, 'https://ror.org/030wr4654', 'en', 1, 'https://ror.org/030wr4654 Graduate Fellowships for STEM Diversity'),
(89051, 'https://ror.org/00jyt4d57', 'fr', 1, 'https://ror.org/00jyt4d57 L’Inserm dans Paris et lā€™ĆŽle-de-France Centre Nord'),
(89052, 'https://ror.org/0069s6n55', 'sv', 1, 'https://ror.org/0069s6n55 Sveriges Riksdag Swedish Parliament'),
(89053, 'https://ror.org/051rcp357', 'no_lang_code', 1, 'https://ror.org/051rcp357 Booz Allen Hamilton (United States)'),
(89054, 'https://ror.org/02zrtve16', 'en', 1, 'https://ror.org/02zrtve16 Shanghai Hospital Development Center äøŠęµ·ē”³åŗ·åŒ»é™¢å‘å±•äø­åæƒ'),
(89055, 'https://ror.org/016esgf68', 'en', 1, 'https://ror.org/016esgf68 PsychoTropical Research'),
(89056, 'https://ror.org/00gcrwx03', 'en', 1, 'https://ror.org/00gcrwx03 Fred C. Gloeckner Foundation, Inc.'),
(89057, 'https://ror.org/0553ksw70', 'en', 1, 'https://ror.org/0553ksw70 Clean Cooking Alliance'),
(89058, 'https://ror.org/03nv7aj18', 'en', 1, 'https://ror.org/03nv7aj18 Tusk Trust'),
(89059, 'https://ror.org/0103we012', 'en', 1, 'https://ror.org/0103we012 United Bank of Carbon'),
(89060, 'https://ror.org/024hyk965', 'en', 1, 'https://ror.org/024hyk965 Darwin Initiative'),
(89061, 'https://ror.org/00kx48s25', 'en', 1, 'https://ror.org/00kx48s25 Guangxi Zhuang Autonomous Region Department of Education å¹æč„æå£®ę—č‡Ŗę²»åŒŗę•™č‚²åŽ…'),
(89062, 'https://ror.org/01dp97092', 'en', 1, 'https://ror.org/01dp97092 Lemelson Foundation'),
(89063, 'https://ror.org/0215gxf82', 'fr', 1, 'https://ror.org/0215gxf82 Service Public de Wallonie'),
(89064, 'https://ror.org/00y0dmr19', 'en', 1, 'https://ror.org/00y0dmr19 Clif Family Foundation'),
(89065, 'https://ror.org/03zp8kp82', 'en', 1, 'https://ror.org/03zp8kp82 American Microscopical Society'),
(89066, 'https://ror.org/029pyqp16', 'nl', 1, 'https://ror.org/029pyqp16 Parnassia Groep Academie'),
(89067, 'https://ror.org/03vpdge44', 'en', 1, 'https://ror.org/03vpdge44 Lalor Foundation'),
(89068, 'https://ror.org/05hvaje24', 'en', 1, 'https://ror.org/05hvaje24 The Athenaeum Club'),
(89069, 'https://ror.org/00bqpz325', 'no_lang_code', 1, 'https://ror.org/00bqpz325 Tamkeen ŲŖŁ…ŁƒŁŠŁ†'),
(89070, 'https://ror.org/02x3xhs38', 'da', 1, 'https://ror.org/02x3xhs38 Oticon Foundation William Demant Fonden'),
(89071, 'https://ror.org/00337jt79', 'en', 1, 'https://ror.org/00337jt79 Upper Great Plains Transportation Institute'),
(89072, 'https://ror.org/02yjqwr70', 'en', 1, 'https://ror.org/02yjqwr70 Triangle Center for Evolutionary Medicine'),
(89073, 'https://ror.org/03fy7b149', 'en', 1, 'https://ror.org/03fy7b149 ACT Government'),
(89074, 'https://ror.org/03ze4yx94', 'en', 1, 'https://ror.org/03ze4yx94 Biblioteca Apostolica Vaticana Vatican Apostolic Library'),
(89075, 'https://ror.org/02a4f2s68', 'no_lang_code', 1, 'https://ror.org/02a4f2s68 Kentucky Science and Technology Corporation (United States)'),
(89076, 'https://ror.org/02zyjt610', 'en', 1, 'https://ror.org/02zyjt610 Veterinary Research Institute'),
(89077, 'https://ror.org/037pgnn96', 'no', 1, 'https://ror.org/037pgnn96 Norges Astma- og Allergiforbund'),
(89078, 'https://ror.org/00nhngx75', 'de', 1, 'https://ror.org/00nhngx75 Planetarium Stuttgart'),
(89079, 'https://ror.org/04q062s21', 'en', 1, 'https://ror.org/04q062s21 Marshall Aid Commemoration Commission'),
(89080, 'https://ror.org/039fx6g98', 'en', 1, 'https://ror.org/039fx6g98 Nuclear Science and Technology Institute'),
(89081, 'https://ror.org/00dd37d48', 'en', 1, 'https://ror.org/00dd37d48 South African Society for Microbiology Suid-Afrikaanse Vereeniging vir Mikrobiologie'),
(89082, 'https://ror.org/03j51tb87', 'no_lang_code', 1, 'https://ror.org/03j51tb87 Tįŗ­p đoĆ n Vingroup Vingroup (Vietnam)'),
(89083, 'https://ror.org/012b3v785', 'de', 1, 'https://ror.org/012b3v785 Cusanuswerk'),
(89084, 'https://ror.org/025kncj27', 'en', 1, 'https://ror.org/025kncj27 National Save the Sea Turtle Foundation'),
(89085, 'https://ror.org/05vbwqf43', 'en', 1, 'https://ror.org/05vbwqf43 The Kempe Foundation'),
(89086, 'https://ror.org/05nak5030', 'no', 1, 'https://ror.org/05nak5030 Stortinget'),
(89087, 'https://ror.org/03xkf7525', 'en', 1, 'https://ror.org/03xkf7525 An tSeirbhís PÔirceanna NÔisiúnta agus Fiadhúlra National Parks and Wildlife Service'),
(89088, 'https://ror.org/00h739y88', 'en', 1, 'https://ror.org/00h739y88 Rhode Island Agricultural Experiment Station'),
(89089, 'https://ror.org/05wr3m454', 'en', 1, 'https://ror.org/05wr3m454 BAND foundation'),
(89090, 'https://ror.org/01hgwcx28', 'en', 1, 'https://ror.org/01hgwcx28 Brazilian Biodiversity Fund Fundo Brasileiro para a Biodiversidade'),
(89091, 'https://ror.org/00fkqvh14', 'en', 1, 'https://ror.org/00fkqvh14 Utah Division of Wildlife Resources'),
(89092, 'https://ror.org/00wf4t170', 'en', 1, 'https://ror.org/00wf4t170 Das Schweizer Parlament Il Parlament svizzer Il Parlamento svizzero Le Parlement suisse The Swiss Parliament'),
(89093, 'https://ror.org/014r1my29', 'en', 1, 'https://ror.org/014r1my29 Rocky Mountain Conservancy'),
(89094, 'https://ror.org/01j0p3681', 'en', 1, 'https://ror.org/01j0p3681 Endeavour Foundation'),
(89095, 'https://ror.org/04ja8je85', 'en', 1, 'https://ror.org/04ja8je85 State of Maryland'),
(89096, 'https://ror.org/01bs3p986', 'sv', 1, 'https://ror.org/01bs3p986 Sven och Lilly Lawskis fond fƶr naturvetenskaplig forskning'),
(89097, 'https://ror.org/00wcv5432', 'de', 1, 'https://ror.org/00wcv5432 Bundesverfassungsggericht'),
(89098, 'https://ror.org/05fj3ns96', 'en', 1, 'https://ror.org/05fj3ns96 Australian Medical Council'),
(89099, 'https://ror.org/017vxse19', 'en', 1, 'https://ror.org/017vxse19 World Animal Protection'),
(89100, 'https://ror.org/04w838r82', 'no_lang_code', 1, 'https://ror.org/04w838r82 Kupat Holim Meuchedet קופת חולים ושירותי בריאות'),
(89101, 'https://ror.org/05hqtre35', 'es', 1, 'https://ror.org/05hqtre35 Loro Parque Fundación Loro-Parque-Stiftung'),
(89102, 'https://ror.org/00a4x6777', 'sv', 1, 'https://ror.org/00a4x6777 Region VƤstra Gƶtaland'),
(89103, 'https://ror.org/02zbht716', 'en', 1, 'https://ror.org/02zbht716 Austrian Neuroscience Association Ɩsterreichische Gesellschaft für Neurowissenschaften'),
(89104, 'https://ror.org/02tm07923', 'de', 1, 'https://ror.org/02tm07923 Deutschen Ornithologen-Gesellschaft e.V. German Ornithologists’ Society'),
(89105, 'https://ror.org/05td47r37', 'it', 1, 'https://ror.org/05td47r37 Institut Pontifical d’Études Arabes et d’Islamologie Pontifical Institute for Arabic and Islamic Studies Pontificio Istituto di Studi e d''Islamitica المعهد Ų§Ł„ŲØŲ§ŲØŁˆŁŠ للدراسات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© ŁˆŲ§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠ'),
(89106, 'https://ror.org/044wr7g58', 'en', 1, 'https://ror.org/044wr7g58 Swedish Foundation for Strategic Research'),
(89107, 'https://ror.org/05v0y3m60', 'en', 1, 'https://ror.org/05v0y3m60 Maine Department of Transportation'),
(89108, 'https://ror.org/03t1asa17', 'en', 1, 'https://ror.org/03t1asa17 Harry Crossley Foundation'),
(89109, 'https://ror.org/04brnrj19', 'it', 1, 'https://ror.org/04brnrj19 Istituto Nazionale di Studi sul Rinascimento'),
(89110, 'https://ror.org/05ygyfy76', 'no_lang_code', 1, 'https://ror.org/05ygyfy76 Hill''s Pet Nutrition (United States)'),
(89111, 'https://ror.org/02hqka403', 'en', 1, 'https://ror.org/02hqka403 Guizhou Provincial Education Department č“µå·žēœę•™č‚²åŽ… 编辑'),
(89112, 'https://ror.org/046c3d771', 'en', 1, 'https://ror.org/046c3d771 Australasian Society for the Study of Animal Behaviour'),
(89113, 'https://ror.org/05s501w59', 'en', 1, 'https://ror.org/05s501w59 Westpac Scholars Trust'),
(89114, 'https://ror.org/045yf3k41', 'en', 1, 'https://ror.org/045yf3k41 Changcheng Institute of Metrology & Measurement čˆŖē©ŗå·„äøšåŒ—äŗ¬é•æåŸŽč®”é‡ęµ‹čÆ•ęŠ€ęœÆē ”ē©¶ę‰€'),
(89115, 'https://ror.org/002wh3v03', 'nl', 1, 'https://ror.org/002wh3v03 Parnassia Groep'),
(89116, 'https://ror.org/04y3kre43', 'en', 0, 'https://ror.org/04y3kre43 Norsk senter for forskningsdata Norwegian Centre for Research Data'),
(89117, 'https://ror.org/032hzqh22', 'no_lang_code', 1, 'https://ror.org/032hzqh22 RECETOX'),
(89118, 'https://ror.org/02mrxfm86', 'fi', 1, 'https://ror.org/02mrxfm86 Nordenskiƶld-samfundet'),
(89119, 'https://ror.org/01p7k1986', 'en', 1, 'https://ror.org/01p7k1986 Central European Institute of Technology'),
(89120, 'https://ror.org/04rs9pg41', 'en', 1, 'https://ror.org/04rs9pg41 International Society of Hematology SociƩtƩ Internationale d''HƩmatologie'),
(89121, 'https://ror.org/009nz6031', 'en', 1, 'https://ror.org/009nz6031 Central European Institute of Technology – Masaryk University Středoevropský technologický institut – Masarykova univerzita'),
(89122, 'https://ror.org/03fsqvg68', 'en', 1, 'https://ror.org/03fsqvg68 Target ALS'),
(89123, 'https://ror.org/04tmban63', 'de', 1, 'https://ror.org/04tmban63 DEval – Deutsches Evaluierungsinstitut der Entwicklungszusammenarbeit DEval – German Institute for Development Evaluation'),
(89124, 'https://ror.org/00akhyy70', 'en', 1, 'https://ror.org/00akhyy70 Central Committee of the Communist Party of China'),
(89125, 'https://ror.org/046hez538', 'en', 1, 'https://ror.org/046hez538 Northwest Territories Department of Environment and Natural Resources'),
(89126, 'https://ror.org/02f7d6n92', 'en', 1, 'https://ror.org/02f7d6n92 Utah Department of Natural Resources'),
(89127, 'https://ror.org/053sq3902', 'en', 1, 'https://ror.org/053sq3902 Arizona Experiment Station'),
(89128, 'https://ror.org/00g5x2h86', 'en', 1, 'https://ror.org/00g5x2h86 Eduskunta Finlands riksdag Parliament of Finland'),
(89129, 'https://ror.org/04jjb9549', 'en', 1, 'https://ror.org/04jjb9549 Groupe Banque TD TD Bank Group'),
(89130, 'https://ror.org/048j2ty77', 'no_lang_code', 1, 'https://ror.org/048j2ty77 Groupe Lactalis (France)'),
(89131, 'https://ror.org/04wjghj95', 'en', 1, 'https://ror.org/04wjghj95 First Hospital of China Medical University äø­å›½åŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(89132, 'https://ror.org/009t37k28', 'ca', 1, 'https://ror.org/009t37k28 Departament d''Acció Climàtica, Alimentació i Agenda Rural'),
(89133, 'https://ror.org/05th1v540', 'en', 1, 'https://ror.org/05th1v540 Bavarian Natural History Collections Staatliche Naturwissenschaftliche Sammlungen Bayerns'),
(89134, 'https://ror.org/0424m5v90', 'en', 1, 'https://ror.org/0424m5v90 Association of Avian Veterinarians'),
(89135, 'https://ror.org/05k6h9r09', 'no_lang_code', 1, 'https://ror.org/05k6h9r09 Samsung Medison (South Korea) 삼성 ė©”ė””ģŠØ'),
(89136, 'https://ror.org/02fn5kf41', 'en', 1, 'https://ror.org/02fn5kf41 Bonefish and Tarpon Trust'),
(89137, 'https://ror.org/04d7hfa19', 'en', 1, 'https://ror.org/04d7hfa19 Virginia Society of Ornithology'),
(89138, 'https://ror.org/00ygxqz19', 'fr', 1, 'https://ror.org/00ygxqz19 Acta les instituts techniques agricoles'),
(89139, 'https://ror.org/0056r6621', 'es', 1, 'https://ror.org/0056r6621 Constitutional Court of Spain Tribunal Constitucional de EspaƱa'),
(89140, 'https://ror.org/05g6b4f87', 'no_lang_code', 1, 'https://ror.org/05g6b4f87 Rayonier Advanced Materials (United States)'),
(89141, 'https://ror.org/04gkkrw50', 'en', 1, 'https://ror.org/04gkkrw50 Al-Saeed University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³Ų¹ŁŠŲÆ'),
(89142, 'https://ror.org/05a5cbz35', 'en', 1, 'https://ror.org/05a5cbz35 South Dakota Game, Fish and Parks'),
(89143, 'https://ror.org/03h1she57', 'en', 1, 'https://ror.org/03h1she57 The Wolfson Family Charitable Trust'),
(89144, 'https://ror.org/004h40g54', 'no_lang_code', 1, 'https://ror.org/004h40g54 Mehr Alborz University دانؓگاه مهرالبرز'),
(89145, 'https://ror.org/02p435225', 'pt', 1, 'https://ror.org/02p435225 Universidade de DĆ­li'),
(89146, 'https://ror.org/02j5n9e16', 'en', 1, 'https://ror.org/02j5n9e16 The Second Affiliated Hospital of Xiamen Medical College åŽ¦é—Øåø‚ē¬¬äŗŒåŒ»é™¢'),
(89147, 'https://ror.org/03kagjz72', 'en', 1, 'https://ror.org/03kagjz72 South African Society of Haematology Suid-Afrikaanse Vereeniging vir Hematologie'),
(89148, 'https://ror.org/017kr6b96', 'en', 1, 'https://ror.org/017kr6b96 Southeastern Ontario Academic Medical Organization');
INSERT INTO `rors` VALUES
(89149, 'https://ror.org/02r6sy638', 'en', 1, 'https://ror.org/02r6sy638 European Association of Zoos and Aquaria'),
(89150, 'https://ror.org/041efdz96', 'it', 1, 'https://ror.org/041efdz96 Fondazione per le Scienze Religiose Giovanni XXIII'),
(89151, 'https://ror.org/04tw4j633', 'en', 1, 'https://ror.org/04tw4j633 James B. Pendleton Charitable Trust'),
(89152, 'https://ror.org/02mkqta53', 'en', 1, 'https://ror.org/02mkqta53 Jiangsu Province Science and Technology Department'),
(89153, 'https://ror.org/01bcxc427', 'en', 1, 'https://ror.org/01bcxc427 North Dakota Department of Agriculture'),
(89154, 'https://ror.org/02nf3tv98', 'en', 1, 'https://ror.org/02nf3tv98 Colorado Native Plant Society'),
(89155, 'https://ror.org/02dcm1f53', 'en', 1, 'https://ror.org/02dcm1f53 Cour PƩnale Internationale International Criminal Court'),
(89156, 'https://ror.org/05t374r75', 'en', 1, 'https://ror.org/05t374r75 Durst Group AG (Italy)'),
(89157, 'https://ror.org/03vz7b375', 'en', 1, 'https://ror.org/03vz7b375 Science and Technology Department of Qinghai Province é’ęµ·ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(89158, 'https://ror.org/02kcbn207', 'en', 1, 'https://ror.org/02kcbn207 IMEC'),
(89159, 'https://ror.org/04wvp5q67', 'en', 1, 'https://ror.org/04wvp5q67 Southern California Academy of Sciences'),
(89160, 'https://ror.org/04dmhbw81', 'en', 1, 'https://ror.org/04dmhbw81 Forrest Research Foundation'),
(89161, 'https://ror.org/01megcb21', 'en', 1, 'https://ror.org/01megcb21 Republic of China Naval Academy äø­čÆę°‘åœ‹ęµ·č»č»å®˜å­øę ”'),
(89162, 'https://ror.org/00dgqhm63', 'en', 1, 'https://ror.org/00dgqhm63 Center for Innovative Medicine Centrum fƶr Innovativ Medicin'),
(89163, 'https://ror.org/01jsjgv89', 'en', 1, 'https://ror.org/01jsjgv89 Chongqing Vocational and Technical University of Mechatronics é‡åŗ†ęœŗē”µčŒäøšęŠ€ęœÆå¤§å­¦'),
(89164, 'https://ror.org/01v2aa541', 'pl', 1, 'https://ror.org/01v2aa541 Szpital św. Wincentego a Paulo'),
(89165, 'https://ror.org/02s99ck98', 'en', 1, 'https://ror.org/02s99ck98 Mercy University'),
(89166, 'https://ror.org/049g44471', 'en', 1, 'https://ror.org/049g44471 Koninklike Vereeniging van Suid-Africa Royal Society of South Africa'),
(89167, 'https://ror.org/04xywqt24', 'en', 1, 'https://ror.org/04xywqt24 Rembrandt Institute of Cardiovascular Science'),
(89168, 'https://ror.org/045thxk12', 'en', 1, 'https://ror.org/045thxk12 Flinders Foundation'),
(89169, 'https://ror.org/05bqtky90', 'sv', 1, 'https://ror.org/05bqtky90 C.F. Lundstrƶms Stiftelse'),
(89170, 'https://ror.org/01pan8346', 'en', 1, 'https://ror.org/01pan8346 J.W. & H.M. Goodman Foundation'),
(89171, 'https://ror.org/02rae8q23', 'id', 1, 'https://ror.org/02rae8q23 Sekolah Tinggi Ilmu Ekonomi Mulia Pratama'),
(89172, 'https://ror.org/04gd0tn14', 'no_lang_code', 1, 'https://ror.org/04gd0tn14 Separations (South Africa)'),
(89173, 'https://ror.org/02m1z0a87', 'de', 1, 'https://ror.org/02m1z0a87 Medizinische FakultƤt Mannheim'),
(89174, 'https://ror.org/04ayaw261', 'en', 1, 'https://ror.org/04ayaw261 Australian Centre for Advanced Photovoltaics'),
(89175, 'https://ror.org/03draxz76', 'no_lang_code', 1, 'https://ror.org/03draxz76 Lush (United Kingdom)'),
(89176, 'https://ror.org/01tv7v957', 'en', 1, 'https://ror.org/01tv7v957 John H. Tietze Foundation Trust'),
(89177, 'https://ror.org/03kf77330', 'sv', 1, 'https://ror.org/03kf77330 Stiftelsen Stig och Gunborg Westman'),
(89178, 'https://ror.org/004yh2r83', 'no_lang_code', 1, 'https://ror.org/004yh2r83 Inqaba Biotechnical Industries Inqaba Biotegniese Nywerhede'),
(89179, 'https://ror.org/02kjggt26', 'fi', 1, 'https://ror.org/02kjggt26 Turku University Foundation Turun YliopistosƤƤtiƶ'),
(89180, 'https://ror.org/0259erg57', 'en', 1, 'https://ror.org/0259erg57 American Sheep Industry Association'),
(89181, 'https://ror.org/014dr4051', 'no', 1, 'https://ror.org/014dr4051 FHF – Fiskeri- og havbruksnƦringens forskningsfinansiering FHF – Norwegian Seafood Research Fund'),
(89182, 'https://ror.org/03szqv745', 'en', 1, 'https://ror.org/03szqv745 State Organization Ā«Grigoriev Institute for Medical Radiology and Oncology of the National Academy of Medical Sciences of UkraineĀ» Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГичної раГіології та онкології ім. C. П. Григор’єва ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України»'),
(89183, 'https://ror.org/03fcabp80', 'en', 1, 'https://ror.org/03fcabp80 European Climate, Infrastructure and Environment Executive Agency'),
(89184, 'https://ror.org/05qx54k29', 'en', 1, 'https://ror.org/05qx54k29 Colorado Water Conservation Board'),
(89185, 'https://ror.org/02y485920', 'en', 1, 'https://ror.org/02y485920 U.S. Coastal Research Program'),
(89186, 'https://ror.org/02ak51s72', 'en', 1, 'https://ror.org/02ak51s72 Oakley Mental Health Research Foundation'),
(89187, 'https://ror.org/00tgy9105', 'en', 1, 'https://ror.org/00tgy9105 Royal Zoological Society of New South Wales'),
(89188, 'https://ror.org/05d3gn492', 'fr', 0, 'https://ror.org/05d3gn492 Acta - les Instituts Techniques Agricoles'),
(89189, 'https://ror.org/00zh72k45', 'no_lang_code', 1, 'https://ror.org/00zh72k45 Celtic Molecular Diagnostics (South Africa) Keltiese MolekulĆŖre Diagnostiek'),
(89190, 'https://ror.org/043798m03', 'sv', 1, 'https://ror.org/043798m03 Stiftelsen VƤrldsnaturfonden WWF'),
(89191, 'https://ror.org/03ffgcv32', 'en', 1, 'https://ror.org/03ffgcv32 International Elephant Foundation'),
(89192, 'https://ror.org/03eg88604', 'en', 1, 'https://ror.org/03eg88604 National Marine Environmental Monitoring Center'),
(89193, 'https://ror.org/034hnt981', 'en', 1, 'https://ror.org/034hnt981 Kingston Centre'),
(89194, 'https://ror.org/03cz18e20', 'en', 1, 'https://ror.org/03cz18e20 State Key Laboratory of Palaeobiology and Stratigraphy ēŽ°ä»£å¤ē”Ÿē‰©å­¦å’Œåœ°å±‚å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(89195, 'https://ror.org/05c2btq38', 'en', 1, 'https://ror.org/05c2btq38 Al-Zahraa University for Women Ų¬Ų§Ł…Ų¹Ų© الزهراؔ Ų¹Ł„ŁŠŁ‡Ų§ السلام للبنات'),
(89196, 'https://ror.org/00jg7hp37', 'de', 1, 'https://ror.org/00jg7hp37 Amt der SteiermƤrkischen Landesregierung'),
(89197, 'https://ror.org/0289t9g81', 'en', 1, 'https://ror.org/0289t9g81 Minderoo Foundation'),
(89198, 'https://ror.org/01z8h0e92', 'en', 1, 'https://ror.org/01z8h0e92 Four Winds Foundation'),
(89199, 'https://ror.org/02ajgy086', 'en', 1, 'https://ror.org/02ajgy086 Henry J. Predolin Foundation for Research in Leukemia'),
(89200, 'https://ror.org/024tqtx80', 'en', 1, 'https://ror.org/024tqtx80 Edna Bailey Sussman Foundation'),
(89201, 'https://ror.org/00brmfv24', 'sv', 1, 'https://ror.org/00brmfv24 ForskningsrƄdet i Sydƶstra Sverige'),
(89202, 'https://ror.org/03s7w3c34', 'en', 1, 'https://ror.org/03s7w3c34 State Key Laboratory of Geohazard Prevention and Geoenvironment Protection åœ°č“Øē¾å®³é˜²ę²»äøŽåœ°č“ØēŽÆå¢ƒäæęŠ¤å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(89203, 'https://ror.org/05s89mm67', 'es', 1, 'https://ror.org/05s89mm67 Universidad de Ciencias MƩdicas de Cienfuegos'),
(89204, 'https://ror.org/021kbpv53', 'en', 1, 'https://ror.org/021kbpv53 New Zealand’s Biological Heritage Ngā Koiora Tuku Iho'),
(89205, 'https://ror.org/052w21a87', 'en', 1, 'https://ror.org/052w21a87 Friday Harbor Laboratories'),
(89206, 'https://ror.org/00wtjmd03', 'en', 1, 'https://ror.org/00wtjmd03 Western Wildland Environmental Threat Assessment Center'),
(89207, 'https://ror.org/03bj0k618', 'sv', 1, 'https://ror.org/03bj0k618 RĆ„dman och Fru Ernst Collianders Stiftelse fƶr VƤlgƶrande ƄndamĆ„l'),
(89208, 'https://ror.org/03z92nm69', 'it', 1, 'https://ror.org/03z92nm69 INGV Sezione di Roma 2'),
(89209, 'https://ror.org/00x514t95', 'en', 1, 'https://ror.org/00x514t95 Hanbat National University ķ•œė°­ėŒ€ķ•™źµ'),
(89210, 'https://ror.org/02s31tk17', 'en', 1, 'https://ror.org/02s31tk17 Marine Environmental Observation Prediction and Response Network'),
(89211, 'https://ror.org/0152shq94', 'en', 1, 'https://ror.org/0152shq94 Cooperative Research Centre for Developing Northern Australia'),
(89212, 'https://ror.org/049enq829', 'nl', 1, 'https://ror.org/049enq829 Province of Noord-Brabant Provincie Noord-Brabant'),
(89213, 'https://ror.org/01ejfnk07', 'no_lang_code', 1, 'https://ror.org/01ejfnk07 Separation Scientific (South Africa) Separation Wetenskaplik'),
(89214, 'https://ror.org/055vn7m78', 'it', 1, 'https://ror.org/055vn7m78 INGV Osservatorio Vesuviano'),
(89215, 'https://ror.org/01mg9t146', 'en', 1, 'https://ror.org/01mg9t146 Hasso Plattner Foundation'),
(89216, 'https://ror.org/0001paf45', 'fr', 1, 'https://ror.org/0001paf45 Fondation SegrƩ'),
(89217, 'https://ror.org/03fh5gt86', 'en', 1, 'https://ror.org/03fh5gt86 Orthophonie et Audiologie Canada Speech-Language and Audiology Canada'),
(89218, 'https://ror.org/055jnwc25', 'en', 1, 'https://ror.org/055jnwc25 Mongolian Foundation for Science and Technology ŠØŠøŠ½Š¶Š»ŃŃ… ŃƒŃ…Š°Š°Š½, технологийн сан č’™å¤ē§‘å­øęšØęŠ€č”“åŸŗé‡‘ęœƒ'),
(89219, 'https://ror.org/0193mtn28', 'en', 1, 'https://ror.org/0193mtn28 Toxicology Society of South Africa'),
(89220, 'https://ror.org/00y9yvy68', 'en', 1, 'https://ror.org/00y9yvy68 State Key Laboratory of Food Nutrition and Safety é£Ÿå“č„å…»äøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(89221, 'https://ror.org/02m2j9v71', 'en', 1, 'https://ror.org/02m2j9v71 Woodcock-MuƱoz Foundation'),
(89222, 'https://ror.org/03va7tm69', 'en', 1, 'https://ror.org/03va7tm69 State Key Laboratory of Plateau Ecology and Agriculture ēœéƒØå…±å»ŗäø‰ę±Ÿęŗē”Ÿę€äøŽé«˜åŽŸå†œē‰§äøšå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(89223, 'https://ror.org/01qpm0v79', 'pt', 1, 'https://ror.org/01qpm0v79 Fundação Amparo e Desenvolvimento da Pesquisa'),
(89224, 'https://ror.org/05b8d1c64', 'en', 1, 'https://ror.org/05b8d1c64 Ann and Gordon Getty Foundation'),
(89225, 'https://ror.org/01ycnqr59', 'en', 1, 'https://ror.org/01ycnqr59 Dinosaur Research Institute'),
(89226, 'https://ror.org/05jv39n43', 'fr', 1, 'https://ror.org/05jv39n43 ComitƩ National des Interprofessions des Vins Ơ Appellation d''Origine'),
(89227, 'https://ror.org/04ecvhe96', 'en', 1, 'https://ror.org/04ecvhe96 National Museum of Natural History of the National Academy of Sciences of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науково-прироГничий музей ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(89228, 'https://ror.org/03b38v557', 'en', 1, 'https://ror.org/03b38v557 Colorado Department of Natural Resources'),
(89229, 'https://ror.org/031tfsa37', 'no_lang_code', 1, 'https://ror.org/031tfsa37 Medtronic (Japan) ęœ¬ćƒ”ćƒ‰ćƒˆćƒ­ćƒ‹ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(89230, 'https://ror.org/014dbdq60', 'en', 1, 'https://ror.org/014dbdq60 Neuromatch'),
(89231, 'https://ror.org/056wz7x19', 'en', 1, 'https://ror.org/056wz7x19 Health Commission of Shaanxi Province é™•č„æēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(89232, 'https://ror.org/03avh3680', 'en', 1, 'https://ror.org/03avh3680 Ernest Kleinwort Charitable Trust'),
(89233, 'https://ror.org/04tqae260', 'en', 1, 'https://ror.org/04tqae260 Colorado Scientific Society'),
(89234, 'https://ror.org/00vfm5970', 'it', 1, 'https://ror.org/00vfm5970 INGV Sezione di Pisa'),
(89235, 'https://ror.org/04qkb5e79', 'en', 1, 'https://ror.org/04qkb5e79 Manipal-Tata Medical College, Jamshedpur'),
(89236, 'https://ror.org/05pczfw42', 'en', 1, 'https://ror.org/05pczfw42 Mandai Wildlife Group'),
(89237, 'https://ror.org/034bak880', 'de', 1, 'https://ror.org/034bak880 Bauer-Hollmann Stiftung'),
(89238, 'https://ror.org/00b4mx203', 'en', 1, 'https://ror.org/00b4mx203 Institute of Hydrobiology ę­¦ę±‰ę°“ē”Ÿē”Ÿē‰©ē ”ē©¶ę‰€'),
(89239, 'https://ror.org/05wmchm75', 'fi', 1, 'https://ror.org/05wmchm75 TYKS-sƤƤtiƶ'),
(89240, 'https://ror.org/01qfer487', 'en', 1, 'https://ror.org/01qfer487 Kungl. Skogs- och Lantbruksakademien Royal Swedish Academy of Agriculture and Forestry'),
(89241, 'https://ror.org/03engbs88', 'en', 1, 'https://ror.org/03engbs88 National Health Fund'),
(89242, 'https://ror.org/056naah75', 'en', 1, 'https://ror.org/056naah75 Dierkundige Vereeniging van Suidelike Afrika Zoological Society of Southern Africa'),
(89243, 'https://ror.org/02xqjct79', 'id', 1, 'https://ror.org/02xqjct79 Universitas Indonesia Membangun'),
(89244, 'https://ror.org/055swm364', 'fr', 1, 'https://ror.org/055swm364 Laboratoire Matériaux Optiques, Photonique et Systèmes'),
(89245, 'https://ror.org/01c7e7j85', 'en', 1, 'https://ror.org/01c7e7j85 Schlinger Foundation'),
(89246, 'https://ror.org/0249g7f28', 'en', 1, 'https://ror.org/0249g7f28 Genome Atlantic'),
(89247, 'https://ror.org/02nhe4p66', 'de', 1, 'https://ror.org/02nhe4p66 Private PƤdagogische Hochschule Augustinum Private University College of Teacher Education Augustinum'),
(89248, 'https://ror.org/016v2t089', 'en', 1, 'https://ror.org/016v2t089 ADEN University PanamĆ”'),
(89249, 'https://ror.org/02nx9ts82', 'en', 1, 'https://ror.org/02nx9ts82 China National Textile and Apparel Council äø­å›½ēŗŗē»‡å·„äøšč”åˆä¼š'),
(89250, 'https://ror.org/032n3b254', 'de', 0, 'https://ror.org/032n3b254 Fachhochschule Oldenburg/Ostfriesland/Wilhelmshaven'),
(89251, 'https://ror.org/03y9tg134', 'en', 1, 'https://ror.org/03y9tg134 Foundation for Advanced Research ФонГ перспективных исслеГований'),
(89252, 'https://ror.org/00085m516', 'no_lang_code', 1, 'https://ror.org/00085m516 Temasek Foundation'),
(89253, 'https://ror.org/02e46j381', 'en', 1, 'https://ror.org/02e46j381 State Key Laboratory of Genetic Resources and Evolution é—ä¼ čµ„ęŗäøŽčæ›åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(89254, 'https://ror.org/041fzeq08', 'en', 1, 'https://ror.org/041fzeq08 Taizhou Municipal Science and Technology Bureau ę ¹ę®å°å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(89255, 'https://ror.org/02y2bp537', 'no_lang_code', 1, 'https://ror.org/02y2bp537 Sustainable Innovations Europe (Spain)'),
(89256, 'https://ror.org/0568cr375', 'de', 1, 'https://ror.org/0568cr375 Gips-Schüle-Stiftung'),
(89257, 'https://ror.org/02gsf5008', 'en', 1, 'https://ror.org/02gsf5008 La Fondation Pour La Conservation Du Saumon Atlantique The Foundation for Conservation of Atlantic Salmon'),
(89258, 'https://ror.org/02fabae21', 'tr', 1, 'https://ror.org/02fabae21 Sağlık Hizmetleri Uygulama ve Araştırma Hastanesi'),
(89259, 'https://ror.org/04fx88130', 'sv', 1, 'https://ror.org/04fx88130 Stiftelsen fƶr Gamla TjƤnarinnor'),
(89260, 'https://ror.org/009hmnr85', 'en', 1, 'https://ror.org/009hmnr85 Southeast Climate Adaptation Science Center'),
(89261, 'https://ror.org/00vfbgd72', 'it', 1, 'https://ror.org/00vfbgd72 INGV Sezione di Milano'),
(89262, 'https://ror.org/015dcpw68', 'no_lang_code', 1, 'https://ror.org/015dcpw68 Anatech'),
(89263, 'https://ror.org/042veyr10', 'sv', 1, 'https://ror.org/042veyr10 LƤnsstyrelsen Hallands LƤn'),
(89264, 'https://ror.org/00x0xhn70', 'es', 1, 'https://ror.org/00x0xhn70 Universidad Bernardo O''Higgins'),
(89265, 'https://ror.org/02gsny710', 'it', 1, 'https://ror.org/02gsny710 INGV Sezione Irpinia'),
(89266, 'https://ror.org/03pq33964', 'en', 1, 'https://ror.org/03pq33964 South African Society for Basic and Clinical Pharmacology Suid-Afrikaanse Vereeniging vir Basiese en Kliniese Farmakologie'),
(89267, 'https://ror.org/004pwee45', 'fr', 1, 'https://ror.org/004pwee45 Fondation Schlumberger pour l’Education et la Recherche'),
(89268, 'https://ror.org/04xvmv949', 'sv', 1, 'https://ror.org/04xvmv949 Stiftelsen Anna och Gunnar Vidfelts Fond fƶr Biologisk Forskning'),
(89269, 'https://ror.org/042sk0r32', 'en', 1, 'https://ror.org/042sk0r32 Lloyd Carr-Harris Foundation'),
(89270, 'https://ror.org/02x412q60', 'fi', 1, 'https://ror.org/02x412q60 Naturskyddsstiftelsen i Finland Suomen Luonnonsuojelun SƤƤtiƶ The Finnish Foundation for Nature Conservation'),
(89271, 'https://ror.org/03ep8d157', 'en', 1, 'https://ror.org/03ep8d157 Northwest Institute of Plateau Biology äø­å›½ē§‘å­¦é™¢č„æåŒ—é«˜åŽŸē”Ÿē‰©ē ”ē©¶ę‰€'),
(89272, 'https://ror.org/00z0dab30', 'pt', 1, 'https://ror.org/00z0dab30 Universidade da Paz'),
(89273, 'https://ror.org/01v7ra871', 'en', 1, 'https://ror.org/01v7ra871 Hortgro Science'),
(89274, 'https://ror.org/00vkmnx48', 'sv', 1, 'https://ror.org/00vkmnx48 Sveaskog'),
(89275, 'https://ror.org/03vrtgf80', 'it', 1, 'https://ror.org/03vrtgf80 INGV Osservatorio Etneo'),
(89276, 'https://ror.org/00yr5bt74', 'en', 1, 'https://ror.org/00yr5bt74 Fulbright Austria'),
(89277, 'https://ror.org/01r5a4654', 'en', 1, 'https://ror.org/01r5a4654 The Stanton Foundation'),
(89278, 'https://ror.org/040tp8686', 'fr', 1, 'https://ror.org/040tp8686 Conseil RƩgional Midi-PyrƩnƩes'),
(89279, 'https://ror.org/0419cgw33', 'no_lang_code', 1, 'https://ror.org/0419cgw33 ISAGEN EnergĆ­a Productiva (Colombia)'),
(89280, 'https://ror.org/05sfnze82', 'en', 1, 'https://ror.org/05sfnze82 Chinese Society of Clinical Oncology äø­å›½äø“åŗŠč‚æē˜¤å­¦ä¼š'),
(89281, 'https://ror.org/03f502y28', 'en', 1, 'https://ror.org/03f502y28 Wuhan Ship Communication Research Institute ę­¦ę±‰čˆ¹čˆ¶é€šäæ”ē ”ē©¶ę‰€'),
(89282, 'https://ror.org/033xbhk97', 'en', 1, 'https://ror.org/033xbhk97 Pears Foundation'),
(89283, 'https://ror.org/01wqpd686', 'en', 1, 'https://ror.org/01wqpd686 European Huntington''s Disease Network'),
(89284, 'https://ror.org/02hn5ny59', 'de', 1, 'https://ror.org/02hn5ny59 Landwirtschaftliche Rentenbank'),
(89285, 'https://ror.org/01bc76c69', 'en', 1, 'https://ror.org/01bc76c69 Hochschule Emden / Leer University of Applied Sciences Emden Leer'),
(89286, 'https://ror.org/032bgnz47', 'en', 1, 'https://ror.org/032bgnz47 Cornell High Energy Synchrotron Source'),
(89287, 'https://ror.org/059jjv571', 'it', 1, 'https://ror.org/059jjv571 Centro Polispecialistico Mediterraneo'),
(89288, 'https://ror.org/0568s5a63', 'es', 1, 'https://ror.org/0568s5a63 Confederación HidrogrÔfica del Duero'),
(89289, 'https://ror.org/01mq2eh43', 'en', 1, 'https://ror.org/01mq2eh43 National Microscopy Infrastructure'),
(89290, 'https://ror.org/02r6p3x40', 'id', 1, 'https://ror.org/02r6p3x40 Badan Pengelola Dana Perkebunan Kelapa Sawit'),
(89291, 'https://ror.org/031q76697', 'en', 1, 'https://ror.org/031q76697 The Dulverton Trust'),
(89292, 'https://ror.org/00w0nde43', 'de', 1, 'https://ror.org/00w0nde43 Heubergstiftung'),
(89293, 'https://ror.org/04enqng64', 'en', 1, 'https://ror.org/04enqng64 Guilin Municipal People''s Government ę”‚ęž—åø‚äŗŗę°‘ę”æåŗœ'),
(89294, 'https://ror.org/00d260p98', 'en', 1, 'https://ror.org/00d260p98 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(89295, 'https://ror.org/00rrv1d42', 'nl', 1, 'https://ror.org/00rrv1d42 Alberta Mennega Stichting'),
(89296, 'https://ror.org/051g31x14', 'en', 1, 'https://ror.org/051g31x14 Western Ecological Research Center'),
(89297, 'https://ror.org/01zs03f78', 'en', 1, 'https://ror.org/01zs03f78 International Society of Biomechanics'),
(89298, 'https://ror.org/00qen7t71', 'en', 1, 'https://ror.org/00qen7t71 Sarawak Multimedia Authority'),
(89299, 'https://ror.org/05ba1x822', 'en', 1, 'https://ror.org/05ba1x822 Golden Key International Honour Society'),
(89300, 'https://ror.org/015w1pn62', 'en', 1, 'https://ror.org/015w1pn62 Worldwide Book Services (United Kingdom)'),
(89301, 'https://ror.org/03fteab26', 'es', 1, 'https://ror.org/03fteab26 Conselleria d''Innovació, Universitats, Ciència i Societat Digital Conselleria de Innovación, Universidades, Ciencia y Sociedad Digital'),
(89302, 'https://ror.org/02j016891', 'en', 1, 'https://ror.org/02j016891 Australian Marine Mammal Centre'),
(89303, 'https://ror.org/02cmjsn57', 'en', 1, 'https://ror.org/02cmjsn57 State Key Laboratory of Freshwater Ecology and Biotechnology ę·”ę°“ē”Ÿę€äøŽē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(89304, 'https://ror.org/05vw05p26', 'en', 1, 'https://ror.org/05vw05p26 National Wildlife Research Center'),
(89305, 'https://ror.org/028znnm42', 'en', 1, 'https://ror.org/028znnm42 DASSI - Data Archive for Social Sciences in Italy'),
(89306, 'https://ror.org/04gm9mk98', 'en', 1, 'https://ror.org/04gm9mk98 Hutton Parker Foundation'),
(89307, 'https://ror.org/011sqtf19', 'en', 1, 'https://ror.org/011sqtf19 Guilin Science and Technology Bureau ę”‚ęž—åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(89308, 'https://ror.org/03phnwz81', 'fr', 1, 'https://ror.org/03phnwz81 MinistĆØre des Outre-mer'),
(89309, 'https://ror.org/05trnbe45', 'fr', 1, 'https://ror.org/05trnbe45 Terres Australes et Antarctiques FranƧaises'),
(89310, 'https://ror.org/00wtgbr91', 'mi', 1, 'https://ror.org/00wtgbr91 Te Pūnaha Matatini'),
(89311, 'https://ror.org/00cv9q002', 'en', 1, 'https://ror.org/00cv9q002 Department of Jobs, Tourism, Science and Innovation'),
(89312, 'https://ror.org/01vz09525', 'no_lang_code', 1, 'https://ror.org/01vz09525 Davies Diagnostics (South Africa) Davies Diagnostiek'),
(89313, 'https://ror.org/04pvg6f08', 'no_lang_code', 1, 'https://ror.org/04pvg6f08 Bio-protocol (United States)'),
(89314, 'https://ror.org/00khsxp79', 'it', 1, 'https://ror.org/00khsxp79 INGV Osservatorio Nazionale Terremoti'),
(89315, 'https://ror.org/0164cy529', 'fr', 1, 'https://ror.org/0164cy529 AndrƩ Losch Fondation'),
(89316, 'https://ror.org/0017jqh36', 'en', 1, 'https://ror.org/0017jqh36 Giraffe Conservation Foundation'),
(89317, 'https://ror.org/03eat3z79', 'no_lang_code', 1, 'https://ror.org/03eat3z79 Agrivet Research and Advisory Pvt Ltd (India)'),
(89318, 'https://ror.org/02ndzm185', 'sv', 1, 'https://ror.org/02ndzm185 Ɩstersjƶcentrum'),
(89319, 'https://ror.org/007wwmx82', 'en', 1, 'https://ror.org/007wwmx82 Nasionale Instituut vir Oordraagbare Siektes National Institute for Communicable Diseases'),
(89320, 'https://ror.org/012s4fy16', 'it', 1, 'https://ror.org/012s4fy16 INGV Sezione di Palermo'),
(89321, 'https://ror.org/02fcsjn79', 'fr', 1, 'https://ror.org/02fcsjn79 Fondation de l''Ecole Normale Superieure'),
(89322, 'https://ror.org/001ggbx22', 'en', 1, 'https://ror.org/001ggbx22 National Institute of Infectious Diseases åŽšē”ŸåŠ“åƒēœå›½ē«‹ę„ŸęŸ“ē—‡ē ”ē©¶ę‰€'),
(89323, 'https://ror.org/014077m09', 'en', 1, 'https://ror.org/014077m09 Margaret Q. Landenberger Research Foundation'),
(89324, 'https://ror.org/05v0pa259', 'en', 1, 'https://ror.org/05v0pa259 Periféria Közpolitikai és Kutatóközpont Periféria Policy and Research Center'),
(89325, 'https://ror.org/0580ba928', 'en', 1, 'https://ror.org/0580ba928 Paddy Pallin Foundation'),
(89326, 'https://ror.org/05dbzj528', 'en', 1, 'https://ror.org/05dbzj528 Turku University Hospital Turun yliopistollinen keskussairaala'),
(89327, 'https://ror.org/05qkcsb49', 'en', 1, 'https://ror.org/05qkcsb49 Mayekawa Houonkai Foundation å…¬ē›Šč²”å›£ę³•äŗŗ å‰å·å ±ę©ä¼š'),
(89328, 'https://ror.org/01j3tkf69', 'en', 1, 'https://ror.org/01j3tkf69 Aalborg Zoo'),
(89329, 'https://ror.org/03njeds29', 'da', 1, 'https://ror.org/03njeds29 Familien Erichsens Mindefond'),
(89330, 'https://ror.org/04dxnaz06', 'en', 1, 'https://ror.org/04dxnaz06 Key Laboratory of Zoological Systematics and Evolution åŠØē‰©čæ›åŒ–äøŽē³»ē»Ÿå­¦é™¢é‡ē‚¹å®žéŖŒå®¤'),
(89331, 'https://ror.org/002fjc781', 'en', 1, 'https://ror.org/002fjc781 Peter Sowerby Foundation'),
(89332, 'https://ror.org/03r7d4g46', 'en', 1, 'https://ror.org/03r7d4g46 Ohsumi Frontier Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¤§éš…åŸŗē¤Žē§‘å­¦å‰µęˆč²”å›£'),
(89333, 'https://ror.org/00fhn5k08', 'pt', 1, 'https://ror.org/00fhn5k08 Instituto Nacional de CiĆŖncia e Tecnologia em Biodiversidade e Produtos Naturais'),
(89334, 'https://ror.org/0454mmy42', 'en', 1, 'https://ror.org/0454mmy42 Kenneth M. Molson Foundation'),
(89335, 'https://ror.org/015h57w45', 'no_lang_code', 1, 'https://ror.org/015h57w45 Whitehead Scientific (South Africa)'),
(89336, 'https://ror.org/00z7gk255', 'no_lang_code', 1, 'https://ror.org/00z7gk255 Lasec (South Africa)'),
(89337, 'https://ror.org/01re79z83', 'fr', 1, 'https://ror.org/01re79z83 Fondation des Sciences du Patrimoine'),
(89338, 'https://ror.org/01cy28c89', 'en', 1, 'https://ror.org/01cy28c89 Farmer Family Foundation'),
(89339, 'https://ror.org/03mjwap16', 'no_lang_code', 1, 'https://ror.org/03mjwap16 Biomerica (United States)'),
(89340, 'https://ror.org/00vhg4k19', 'en', 1, 'https://ror.org/00vhg4k19 The Royal Society of Queensland'),
(89341, 'https://ror.org/059v3b755', 'en', 1, 'https://ror.org/059v3b755 Ministry of Health'),
(89342, 'https://ror.org/048svt763', 'id', 1, 'https://ror.org/048svt763 Politeknik Pertanian Negeri Kupang State Agricultural Polytechnic of Kupang'),
(89343, 'https://ror.org/0271st670', 'fr', 1, 'https://ror.org/0271st670 Quebec Bio-Imaging Network RƩseau en Bio-Imagerie du Quebec'),
(89344, 'https://ror.org/03tfy8747', 'en', 1, 'https://ror.org/03tfy8747 Critical Ecosystem Partnership Fund'),
(89345, 'https://ror.org/04qz58w11', 'en', 1, 'https://ror.org/04qz58w11 Quahog Bay Conservancy'),
(89346, 'https://ror.org/05pn6h396', 'de', 1, 'https://ror.org/05pn6h396 Fondation Prof. Dr. Max Cloƫtta Prof. Dr. Max Cloƫtta Foundation Stiftung Prof. Dr. Max Cloƫtta'),
(89347, 'https://ror.org/00821s992', 'es', 1, 'https://ror.org/00821s992 Ministerio de Educación y Ciencias'),
(89348, 'https://ror.org/059ytf396', 'en', 1, 'https://ror.org/059ytf396 The Crustacean Society'),
(89349, 'https://ror.org/04cw2wq83', 'pl', 1, 'https://ror.org/04cw2wq83 Centrum Medyczne Smoluchowskiego - Gdańsk'),
(89350, 'https://ror.org/01zq5hd53', 'no_lang_code', 1, 'https://ror.org/01zq5hd53 Biocom Africa (South Africa)'),
(89351, 'https://ror.org/05vkxf738', 'pt', 1, 'https://ror.org/05vkxf738 Conselho Nacional das FundaƧƵes Estaduais de Amparo Ơ Pesquisa'),
(89352, 'https://ror.org/00309wp03', 'en', 1, 'https://ror.org/00309wp03 Davee Foundation'),
(89353, 'https://ror.org/01w4yqf75', 'es', 1, 'https://ror.org/01w4yqf75 Hospital Universitario MarquƩs de Valdecilla MarquƩs de Valdecilla University Hospital'),
(89354, 'https://ror.org/022nvaw58', 'en', 1, 'https://ror.org/022nvaw58 Baoding No.1 Central Hospital äæå®šåø‚ē¬¬äø€äø­åæƒåŒ»é™¢'),
(89355, 'https://ror.org/03ab0at74', 'en', 1, 'https://ror.org/03ab0at74 State Key Laboratory of Digital Medical Engineering'),
(89356, 'https://ror.org/022rdnn95', 'pt', 1, 'https://ror.org/022rdnn95 Programa Operacional TemƔtico Factores de Competitividade'),
(89357, 'https://ror.org/04cm3mz39', 'fi', 1, 'https://ror.org/04cm3mz39 Tiina ja Antti Herlinin sƤƤtiƶ'),
(89358, 'https://ror.org/03799m784', 'es', 1, 'https://ror.org/03799m784 Fundación Williams'),
(89359, 'https://ror.org/030c7mj81', 'en', 1, 'https://ror.org/030c7mj81 Offield Family Foundation'),
(89360, 'https://ror.org/04ev1zs55', 'fr', 1, 'https://ror.org/04ev1zs55 Centre de Recherche sur les MƩdiations'),
(89361, 'https://ror.org/03f2n4533', 'pl', 1, 'https://ror.org/03f2n4533 Wojewódzki Fundusz Ochrony Środowiska i Gospodarki Wodnej w Gdańsku'),
(89362, 'https://ror.org/04bd5p711', 'en', 1, 'https://ror.org/04bd5p711 March of Dimes'),
(89363, 'https://ror.org/05q54d222', 'en', 1, 'https://ror.org/05q54d222 The National Brain Appeal'),
(89364, 'https://ror.org/019av8481', 'en', 1, 'https://ror.org/019av8481 Nanjing Institute of Geology and Paleontology äø­å›½ē§‘å­¦é™¢å—äŗ¬åœ°č“Øå¤ē”Ÿē‰©ē ”ē©¶ę‰€'),
(89365, 'https://ror.org/053g4km55', 'en', 1, 'https://ror.org/053g4km55 Wildlife Reserves Singapore Conservation Fund'),
(89366, 'https://ror.org/01t3kc709', 'sv', 1, 'https://ror.org/01t3kc709 P. O. Zetterlings stiftelse'),
(89367, 'https://ror.org/04br41767', 'en', 1, 'https://ror.org/04br41767 Life Science Center for Survival Dynamics, Tsukuba Advanced Research Alliance (TARA) 筑波大学 ē”Ÿå­˜ćƒ€ć‚¤ćƒŠćƒŸć‚Æć‚¹ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(89368, 'https://ror.org/02s42ys89', 'en', 1, 'https://ror.org/02s42ys89 Pacific Northwest Research Station'),
(89369, 'https://ror.org/00aack182', 'es', 1, 'https://ror.org/00aack182 Consejo Nacional de Rectores'),
(89370, 'https://ror.org/00wqdbc63', 'en', 1, 'https://ror.org/00wqdbc63 Government of Western Australia'),
(89371, 'https://ror.org/01akcbx94', 'pl', 1, 'https://ror.org/01akcbx94 Szpital Morski im. PCK'),
(89372, 'https://ror.org/01jp0qq49', 'pl', 1, 'https://ror.org/01jp0qq49 Szpital Specjalistyczny im. F. Ceynowy'),
(89373, 'https://ror.org/033bb5z47', 'de', 1, 'https://ror.org/033bb5z47 Bauhaus-UniversitƤt Weimar'),
(89374, 'https://ror.org/038drb871', 'en', 1, 'https://ror.org/038drb871 Philippe Foundation'),
(89375, 'https://ror.org/03m0vk445', 'en', 1, 'https://ror.org/03m0vk445 Kunming Institute of Zoology äø­å›½ē§‘å­¦é™¢ę˜†ę˜ŽåŠØē‰©ē ”ē©¶ę‰€'),
(89376, 'https://ror.org/01vffmg07', 'en', 1, 'https://ror.org/01vffmg07 Hans Hoheisen Charitable Trust'),
(89377, 'https://ror.org/011s5vb38', 'en', 1, 'https://ror.org/011s5vb38 Ricola Foundation'),
(89378, 'https://ror.org/035qes868', 'en', 1, 'https://ror.org/035qes868 Global Environment Fund'),
(89379, 'https://ror.org/04dytjf82', 'en', 1, 'https://ror.org/04dytjf82 South African Immunology Society Suid-Afrikaanse Immunologie Vereeniging'),
(89380, 'https://ror.org/03n320c25', 'fi', 1, 'https://ror.org/03n320c25 Niemi-sƤƤtiƶ'),
(89381, 'https://ror.org/03zdc1b30', 'en', 1, 'https://ror.org/03zdc1b30 Society for Electronic Transactions and Security'),
(89382, 'https://ror.org/05szd5318', 'en', 1, 'https://ror.org/05szd5318 Colorado Mountain Club Foundation'),
(89383, 'https://ror.org/02zg03225', 'en', 1, 'https://ror.org/02zg03225 Korea Hydrographic and Oceanographic Agency åœ‹ē«‹ęµ·ę“‹čŖæęŸ»é™¢ 국립핓양씰사원'),
(89384, 'https://ror.org/05066y189', 'en', 1, 'https://ror.org/05066y189 South Central Climate Adaptation Science Center'),
(89385, 'https://ror.org/01mzzkz08', 'es', 1, 'https://ror.org/01mzzkz08 Fundación Tatiana Pérez de GuzmÔn el Bueno'),
(89386, 'https://ror.org/02csmpe21', 'en', 1, 'https://ror.org/02csmpe21 Camp Fire Conservation Fund'),
(89387, 'https://ror.org/029w2re51', 'it', 1, 'https://ror.org/029w2re51 INGV Sezione di Bologna'),
(89388, 'https://ror.org/05rs59t70', 'en', 1, 'https://ror.org/05rs59t70 Gulf Coast Ecosystem Restoration Council'),
(89389, 'https://ror.org/00gqqed17', 'en', 1, 'https://ror.org/00gqqed17 State Key Laboratory of Urban and Regional Ecology åŸŽåø‚äøŽåŒŗåŸŸē”Ÿę€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(89390, 'https://ror.org/041d0cg91', 'en', 1, 'https://ror.org/041d0cg91 Neurocritical Care Society'),
(89391, 'https://ror.org/05yc49b49', 'fr', 1, 'https://ror.org/05yc49b49 Laboratoire de Chimie et Physique - Approche Multi-Ʃchelle des Milieux Complexes'),
(89392, 'https://ror.org/05qvd2e93', 'tr', 1, 'https://ror.org/05qvd2e93 Taksim Eğitim ve Araştırma Hastanesi'),
(89393, 'https://ror.org/0467wah83', 'en', 1, 'https://ror.org/0467wah83 Dubai Judicial Institute معهد دبي Ų§Ł„Ł‚Ų¶Ų§Ų¦ŁŠ'),
(89394, 'https://ror.org/01m74k366', 'no_lang_code', 1, 'https://ror.org/01m74k366 CapeBio (South Africa)'),
(89395, 'https://ror.org/02h41sr05', 'en', 1, 'https://ror.org/02h41sr05 Earth and Planets Laboratory'),
(89396, 'https://ror.org/052mm9560', 'fr', 1, 'https://ror.org/052mm9560 SociƩtƩ FranƧaise de SantƩ Publique'),
(89397, 'https://ror.org/05tcasm11', 'no_lang_code', 1, 'https://ror.org/05tcasm11 National Infrastructures for Research and Technology -  GRNET S.A Ī•ĪøĪ½Ī¹ĪŗĻŒ Δίκτυο Ī„Ļ€ĪæĪ“ĪæĪ¼ĻŽĪ½ Τεχνολογίας και ĪˆĻĪµĻ…Ī½Ī±Ļ‚ Ī‘.Ī•. – GRNET'),
(89398, 'https://ror.org/018x00f26', 'no_lang_code', 1, 'https://ror.org/018x00f26 FutureMeds (United Kingdom)'),
(89399, 'https://ror.org/04gmrh438', 'fr', 1, 'https://ror.org/04gmrh438 Institut de recherches sur l''Ć©volution de la nation et de l''Ɖtat'),
(89400, 'https://ror.org/01dcpdv87', 'no_lang_code', 1, 'https://ror.org/01dcpdv87 South China Biological Medicine (China) å¹æå·žåø‚åŽå—å†œå¤§ē”Ÿē‰©čÆå“ęœ‰é™å…¬åø'),
(89401, 'https://ror.org/046khng05', 'tr', 0, 'https://ror.org/046khng05 Gaziosmanpaşa Taksim Eğitim ve Araştırma Hastanesi'),
(89402, 'https://ror.org/03q9wyq75', 'en', 1, 'https://ror.org/03q9wyq75 Kherson State Agrarian and Economic University Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠøŠ¹ Гержавний аграрно-економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(89403, 'https://ror.org/029rr4k19', 'it', 1, 'https://ror.org/029rr4k19 INGV Amministrazione Centrale'),
(89404, 'https://ror.org/02qbyex13', 'no_lang_code', 1, 'https://ror.org/02qbyex13 Alabama Audubon'),
(89405, 'https://ror.org/05thfhs30', 'pt', 1, 'https://ror.org/05thfhs30 CETESB - Companhia Ambiental do Estado de SĆ£o Paulo'),
(89406, 'https://ror.org/05ama8095', 'en', 1, 'https://ror.org/05ama8095 PÔpa Reformed Theological Seminary PÔpai ReformÔtus Teológiai Akadémia'),
(89407, 'https://ror.org/00r71zw23', 'en', 1, 'https://ror.org/00r71zw23 Anyag- Ʃs KƶrnyezetkƩmiai IntƩzet Institute of Materials and Environmental Chemistry'),
(89408, 'https://ror.org/025sbr097', 'en', 1, 'https://ror.org/025sbr097 Royal Society of Chemistry'),
(89409, 'https://ror.org/055yrx709', 'fr', 1, 'https://ror.org/055yrx709 Centre d''Etudes Germaniques Interculturelles de Lorraine'),
(89410, 'https://ror.org/05vv3j050', 'en', 1, 'https://ror.org/05vv3j050 South African Society for Animal Science Suid-Afrikaanse Vereeniging vir Dierkunde'),
(89411, 'https://ror.org/03vrj4p82', 'en', 1, 'https://ror.org/03vrj4p82 Federal University of São João del-Rei Universidade Federal de São João del-Rei'),
(89412, 'https://ror.org/05ft9wv42', 'fr', 1, 'https://ror.org/05ft9wv42 Acute and Chronic Cardiovascular Deficiency DƩfaillance Cardiovasculaire Aiguƫ et Chronique'),
(89413, 'https://ror.org/056mgfb42', 'en', 1, 'https://ror.org/056mgfb42 Arak University of Medical Sciences Ł¾ŁˆŲ±ŲŖŲ§Ł„ دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§Ų±Ų§Ś©'),
(89414, 'https://ror.org/018c4gh22', 'en', 1, 'https://ror.org/018c4gh22 Instituto Marangoni'),
(89415, 'https://ror.org/021gat914', 'en', 1, 'https://ror.org/021gat914 South African Association of Botanists Suid-Afrikaanse Vereeniging van Plantkundiges'),
(89416, 'https://ror.org/04n3mpk26', 'it', 1, 'https://ror.org/04n3mpk26 Istituto Marangoni London'),
(89417, 'https://ror.org/01dgtbr50', 'no_lang_code', 1, 'https://ror.org/01dgtbr50 Labotec (South Africa)'),
(89418, 'https://ror.org/053d03003', 'fr', 1, 'https://ror.org/053d03003 Nutrition-Genetics and Exposure to Environmental Risks Nutrition-GƩnƩtique et Exposition aux Risques Environnementaux'),
(89419, 'https://ror.org/02sf5td35', 'en', 1, 'https://ror.org/02sf5td35 Macao Polytechnic University Universidade PolitĆ©cnica de Macau 澳門理巄大學'),
(89420, 'https://ror.org/00b61dk18', 'it', 1, 'https://ror.org/00b61dk18 Provincia autonoma di Bolzano - Alto Adige'),
(89421, 'https://ror.org/021mnqw37', 'en', 1, 'https://ror.org/021mnqw37 The Linnean Society of New South Wales'),
(89422, 'https://ror.org/05tjhqa05', 'en', 1, 'https://ror.org/05tjhqa05 Administration for Strategic Preparedness and Response'),
(89423, 'https://ror.org/00qtfgg81', 'en', 1, 'https://ror.org/00qtfgg81 Australian Data Archive'),
(89424, 'https://ror.org/05adajg67', 'fr', 1, 'https://ror.org/05adajg67 Cibles thƩrapeutiques, formulation et expertise prƩclinique du mƩdicament'),
(89425, 'https://ror.org/01t8fg661', 'en', 1, 'https://ror.org/01t8fg661 ISIS Neutron and Muon Source'),
(89426, 'https://ror.org/00hq0e369', 'en', 1, 'https://ror.org/00hq0e369 Stephen F. Austin State University'),
(89427, 'https://ror.org/00xngy573', 'fr', 1, 'https://ror.org/00xngy573 Centre de Recherche Universitaire Lorrain d’Histoire'),
(89428, 'https://ror.org/05ar5fy68', 'en', 1, 'https://ror.org/05ar5fy68 Innovate UK'),
(89429, 'https://ror.org/009daqn45', 'en', 1, 'https://ror.org/009daqn45 Nile University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„'),
(89430, 'https://ror.org/00cwqg982', 'en', 1, 'https://ror.org/00cwqg982 Biotechnology and Biological Sciences Research Council'),
(89431, 'https://ror.org/02srjwa75', 'en', 1, 'https://ror.org/02srjwa75 Parkview Mirro Center for Research and Innovation'),
(89432, 'https://ror.org/0290yjn87', 'fr', 1, 'https://ror.org/0290yjn87 Centre de Recherche sur les IdentitƩs, les Nations et l''InterculturalitƩ'),
(89433, 'https://ror.org/00x5ftp92', 'en', 1, 'https://ror.org/00x5ftp92 Research Nova Scotia'),
(89434, 'https://ror.org/00qps9a02', 'it', 1, 'https://ror.org/00qps9a02 Istituto Nazionale di Geofisica e Vulcanologia'),
(89435, 'https://ror.org/04jc9bc30', 'es', 1, 'https://ror.org/04jc9bc30 Instituto de Innovación Agropecuaria de PanamÔ'),
(89436, 'https://ror.org/00yafkq43', 'no_lang_code', 1, 'https://ror.org/00yafkq43 Copernicus.org (Germany)'),
(89437, 'https://ror.org/05tdc8560', 'id', 1, 'https://ror.org/05tdc8560 Institut Teknologi PLN'),
(89438, 'https://ror.org/005qv2b46', 'no_lang_code', 1, 'https://ror.org/005qv2b46 Sarawak Energy (Malaysia)'),
(89439, 'https://ror.org/02wxr8x18', 'en', 1, 'https://ror.org/02wxr8x18 Research England'),
(89440, 'https://ror.org/04g4sf283', 'en', 1, 'https://ror.org/04g4sf283 Office of Data Science Strategy'),
(89441, 'https://ror.org/03hda5c25', 'tr', 1, 'https://ror.org/03hda5c25 Gaziosmanpaşa Eğitim Ve Araştırma Hastanesi'),
(89442, 'https://ror.org/05ezvck41', 'it', 0, 'https://ror.org/05ezvck41 INGV Amministrazione Centrale'),
(89443, 'https://ror.org/01dq06w64', 'en', 1, 'https://ror.org/01dq06w64 Manton Foundation'),
(89444, 'https://ror.org/04hawj979', 'en', 0, 'https://ror.org/04hawj979 Department of Terrestrial Magnetism'),
(89445, 'https://ror.org/03hhwe765', 'fr', 1, 'https://ror.org/03hhwe765 Centre de Recherche sur les Cultures et les LittƩratures EuropƩennes'),
(89446, 'https://ror.org/00mny5z95', 'fr', 1, 'https://ror.org/00mny5z95 LittƩratures, Imaginaire, SociƩtƩs'),
(89447, 'https://ror.org/05n6xve17', 'en', 1, 'https://ror.org/05n6xve17 Edward Waters University'),
(89448, 'https://ror.org/05w8avb79', 'de', 1, 'https://ror.org/05w8avb79 Deutsche Gesellschaft für Psychologie e.V. (DGPs)'),
(89449, 'https://ror.org/03n0ht308', 'en', 1, 'https://ror.org/03n0ht308 Economic and Social Research Council'),
(89450, 'https://ror.org/006vxbq87', 'en', 1, 'https://ror.org/006vxbq87 HUN-REN Atommagkutató Intézet HUN-REN Institute for Nuclear Research'),
(89451, 'https://ror.org/015wb9p75', 'en', 1, 'https://ror.org/015wb9p75 Foundation for Physical Therapy Research'),
(89452, 'https://ror.org/036eftk49', 'en', 1, 'https://ror.org/036eftk49 Institute for Soil Sciences Talajtani IntƩzet'),
(89453, 'https://ror.org/05qyye271', 'en', 0, 'https://ror.org/05qyye271 Geophysical Laboratory'),
(89454, 'https://ror.org/03azyh744', 'en', 1, 'https://ror.org/03azyh744 Institute of Organic Chemistry MTA TermészettudomÔnyi Kutatóközpont Szerves Kémiai Intézet'),
(89455, 'https://ror.org/05jmd4043', 'es', 1, 'https://ror.org/05jmd4043 Hospital Universitario Son Espases'),
(89456, 'https://ror.org/0505m1554', 'en', 1, 'https://ror.org/0505m1554 Arts and Humanities Research Council'),
(89457, 'https://ror.org/04q42nz13', 'en', 1, 'https://ror.org/04q42nz13 Institute of Cognitive Neuroscience and Psychology MTA TermészettudomÔnyi Kutatóközpont Kognitív IdegtudomÔnyi és Pszichológiai Intézet'),
(89458, 'https://ror.org/03pz4q672', 'fr', 1, 'https://ror.org/03pz4q672 Centre de Recherche en GƩographie'),
(89459, 'https://ror.org/01ykr4004', 'pt', 1, 'https://ror.org/01ykr4004 Escola Superior de Saúde Atlântica'),
(89460, 'https://ror.org/04qxsr837', 'en', 1, 'https://ror.org/04qxsr837 Advanced Photon Source'),
(89461, 'https://ror.org/02jwb0b65', 'en', 1, 'https://ror.org/02jwb0b65 NOAA National Marine Fisheries Service West Coast Region'),
(89462, 'https://ror.org/042r9xb17', 'en', 1, 'https://ror.org/042r9xb17 NOAA Atlantic Oceanographic and Meteorological Laboratories'),
(89463, 'https://ror.org/01bnkr993', 'en', 1, 'https://ror.org/01bnkr993 Tashkent Medical Academy Urgench Branch Toshkent tibbiyot akademiyasi Urganch filiali Ургенчский филиал Š¢Š°ŃˆŠŗŠµŠ½Ń‚ской меГицинской акаГемии'),
(89464, 'https://ror.org/058dg6525', 'en', 1, 'https://ror.org/058dg6525 Carpathian Biosphere Reserve ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ біосферний заповіГник'),
(89465, 'https://ror.org/05ych8012', 'en', 1, 'https://ror.org/05ych8012 Massachusetts Office of Coastal Zone Management'),
(89466, 'https://ror.org/00ejqxs53', 'en', 1, 'https://ror.org/00ejqxs53 NOAA Ocean Prediction Center'),
(89467, 'https://ror.org/00mmmy130', 'en', 1, 'https://ror.org/00mmmy130 NOAA Climate Program Office'),
(89468, 'https://ror.org/03p7jen43', 'fr', 0, 'https://ror.org/03p7jen43 Direction des Sciences du Vivant Life Sciences Division'),
(89469, 'https://ror.org/04qva2324', 'en', 1, 'https://ror.org/04qva2324 Ho Chi Minh City University of Technology TrĘ°į»ng ĐẔi hį»c BĆ”ch khoa, ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh UniversitĆ© polytechnique d''hĆ“-chi-minh-ville'),
(89470, 'https://ror.org/033mqx355', 'en', 1, 'https://ror.org/033mqx355 NOAA National Marine Fisheries Service'),
(89471, 'https://ror.org/03f4jbs89', 'en', 1, 'https://ror.org/03f4jbs89 NOAA Chemical Sciences Laboratory'),
(89472, 'https://ror.org/03g5tqa50', 'en', 1, 'https://ror.org/03g5tqa50 NOAA Office of Response and Restoration'),
(89473, 'https://ror.org/04mynmf89', 'en', 1, 'https://ror.org/04mynmf89 St Vincent Hospital'),
(89474, 'https://ror.org/0454wth52', 'en', 1, 'https://ror.org/0454wth52 NOAA Storm Prediction Center'),
(89475, 'https://ror.org/01srarb97', 'en', 1, 'https://ror.org/01srarb97 Olympic Coast Discovery Center'),
(89476, 'https://ror.org/05ypw0993', 'no_lang_code', 1, 'https://ror.org/05ypw0993 JSC Viorica-Cosmetic (Moldova) S.A. ā€žVIORICA-COSMETICā€ А.Šž. Ā«VIORICA-COSMETICĀ»'),
(89477, 'https://ror.org/04y40x506', 'en', 1, 'https://ror.org/04y40x506 Saint Thomas Health'),
(89478, 'https://ror.org/04a6wa396', 'en', 1, 'https://ror.org/04a6wa396 Swedish Institute for Children''s Books'),
(89479, 'https://ror.org/00319zh75', 'en', 1, 'https://ror.org/00319zh75 Advanced Light Source'),
(89480, 'https://ror.org/02891nv36', 'en', 1, 'https://ror.org/02891nv36 NOAA Office of Observations'),
(89481, 'https://ror.org/04q6x6x06', 'en', 1, 'https://ror.org/04q6x6x06 Kutaisi University įƒ„įƒ£įƒ—įƒįƒ˜įƒ”įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(89482, 'https://ror.org/03g09wg96', 'en', 0, 'https://ror.org/03g09wg96 National Measurement and Regulation Office'),
(89483, 'https://ror.org/01pj9dg60', 'sv', 1, 'https://ror.org/01pj9dg60 VƤrnamo Sjukhus'),
(89484, 'https://ror.org/00q976b76', 'en', 1, 'https://ror.org/00q976b76 V. B. Sochava Institute of Geography Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географии им. Š’.Š‘. Дочавы Š”Šž Š ŠŠ'),
(89485, 'https://ror.org/039xg1m33', 'en', 1, 'https://ror.org/039xg1m33 The Japan Society of Applied Physics åæœē”Øē‰©ē†å­¦ä¼š'),
(89486, 'https://ror.org/01h6c8126', 'en', 0, 'https://ror.org/01h6c8126 Environmental Science Services Administration'),
(89487, 'https://ror.org/00tgqzw13', 'en', 1, 'https://ror.org/00tgqzw13 NOAA National Weather Service Servicio Meteorológico Nacional'),
(89488, 'https://ror.org/01fmhrb91', 'en', 1, 'https://ror.org/01fmhrb91 NOAA Office of Chief Operating Officer'),
(89489, 'https://ror.org/05evek152', 'en', 1, 'https://ror.org/05evek152 NOAA Office of Coast Survey'),
(89490, 'https://ror.org/05j2xx287', 'en', 1, 'https://ror.org/05j2xx287 Brenner Children''s Hospital'),
(89491, 'https://ror.org/0135b1w07', 'en', 1, 'https://ror.org/0135b1w07 Alexian Brothers Health System'),
(89492, 'https://ror.org/03crn0n59', 'en', 1, 'https://ror.org/03crn0n59 NOAA Pacific Marine Environmental Laboratory'),
(89493, 'https://ror.org/04kfq3e26', 'en', 1, 'https://ror.org/04kfq3e26 NOAA National Weather Service Central Region'),
(89494, 'https://ror.org/05a55ea71', 'es', 1, 'https://ror.org/05a55ea71 Red de Investigadores De la Transcomplejidad'),
(89495, 'https://ror.org/039qyzw66', 'en', 0, 'https://ror.org/039qyzw66 Laboratory of Chemistry, Catalysis, Polymers and Process'),
(89496, 'https://ror.org/024crf014', 'en', 1, 'https://ror.org/024crf014 NOAA Office of Aquaculture'),
(89497, 'https://ror.org/01m6as704', 'fr', 1, 'https://ror.org/01m6as704 Institut de CancƩrologie de l''Ouest Institute of Cancer Research'),
(89498, 'https://ror.org/03jbkky50', 'id', 1, 'https://ror.org/03jbkky50 Institut Sains dan Teknologi Terpadu Surabaya'),
(89499, 'https://ror.org/01zj15q98', 'en', 1, 'https://ror.org/01zj15q98 SINTEF Community'),
(89500, 'https://ror.org/05g2cmx71', 'en', 1, 'https://ror.org/05g2cmx71 Maharshi Vishwamitra College, Buxar'),
(89501, 'https://ror.org/02frf8h21', 'en', 1, 'https://ror.org/02frf8h21 St. John Medical Center'),
(89502, 'https://ror.org/01sdn5x73', 'en', 1, 'https://ror.org/01sdn5x73 Providence Park Hospital'),
(89503, 'https://ror.org/05dfxpw18', 'no_lang_code', 1, 'https://ror.org/05dfxpw18 TWT GmbH Science & Innovation (Germany)'),
(89504, 'https://ror.org/03hmhdm29', 'en', 1, 'https://ror.org/03hmhdm29 NOAA Office of Climate, Water, and Weather Services'),
(89505, 'https://ror.org/02vkaa689', 'en', 1, 'https://ror.org/02vkaa689 Linac Coherent Light Source'),
(89506, 'https://ror.org/038hf8q48', 'en', 1, 'https://ror.org/038hf8q48 NOAA National Weather Service Alaska Region'),
(89507, 'https://ror.org/0123meh57', 'en', 1, 'https://ror.org/0123meh57 Providence Hospital'),
(89508, 'https://ror.org/02v970d04', 'en', 1, 'https://ror.org/02v970d04 Information Processing Society of Japan ęƒ…å ±å‡¦ē†å­¦ä¼š'),
(89509, 'https://ror.org/030ea6w47', 'en', 1, 'https://ror.org/030ea6w47 NOAA Physical Sciences Laboratory'),
(89510, 'https://ror.org/00zskr649', 'en', 1, 'https://ror.org/00zskr649 Marion County Public Health Department'),
(89511, 'https://ror.org/02bfn4816', 'en', 1, 'https://ror.org/02bfn4816 NOAA Ocean Acidification Program'),
(89512, 'https://ror.org/05xxbv096', 'es', 1, 'https://ror.org/05xxbv096 Voces de la educación'),
(89513, 'https://ror.org/0061q5f61', 'en', 1, 'https://ror.org/0061q5f61 NOAA Air Resources Laboratory'),
(89514, 'https://ror.org/01pctw149', 'en', 1, 'https://ror.org/01pctw149 NOAA National Marine Fisheries Service Southeast Regional Office'),
(89515, 'https://ror.org/01x9q3k71', 'en', 0, 'https://ror.org/01x9q3k71 United States Coast and Geodetic Survey'),
(89516, 'https://ror.org/02x0wxr53', 'en', 1, 'https://ror.org/02x0wxr53 NOAA National Weather Service Office of Science and Technology Integration'),
(89517, 'https://ror.org/003szmg30', 'en', 1, 'https://ror.org/003szmg30 Ho Chi Minh City International University ĐẔi hį»c Quốc Tįŗæ ThĆ nh phố Hồ ChĆ­ Minh'),
(89518, 'https://ror.org/0038t2c13', 'en', 1, 'https://ror.org/0038t2c13 Biblioteca nazionale svizzera BibliothĆØque nationale suisse Schweizerische Nationalbibliothek Swiss National Library'),
(89519, 'https://ror.org/0391w8d97', 'en', 1, 'https://ror.org/0391w8d97 Eskenazi Health Foundation'),
(89520, 'https://ror.org/05v14bq57', 'en', 1, 'https://ror.org/05v14bq57 NOAA Office for Coastal Management'),
(89521, 'https://ror.org/03hcqp925', 'en', 1, 'https://ror.org/03hcqp925 Entreprenƶrskapsforum Swedish Entrepreneurship Forum'),
(89522, 'https://ror.org/056y0v115', 'no_lang_code', 1, 'https://ror.org/056y0v115 Anthropic (United States)'),
(89523, 'https://ror.org/04n8zmx34', 'en', 1, 'https://ror.org/04n8zmx34 Virginia Department of Transportation'),
(89524, 'https://ror.org/034dwy508', 'en', 1, 'https://ror.org/034dwy508 Ascension St. Clare''s Hospital'),
(89525, 'https://ror.org/02jtq1b51', 'en', 1, 'https://ror.org/02jtq1b51 Hīkina Whakatutuki Ministry of Business, Innovation and Employment'),
(89526, 'https://ror.org/05jfbgm49', 'en', 1, 'https://ror.org/05jfbgm49 Ho Chi Minh City University of Science TrĘ°į»ng ĐẔi hį»c Khoa hį»c Tį»± nhiĆŖn, ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh'),
(89527, 'https://ror.org/0422tvz87', 'en', 1, 'https://ror.org/0422tvz87 SINTEF Industry'),
(89528, 'https://ror.org/049byzx03', 'fr', 0, 'https://ror.org/049byzx03 Hospital Ibn Sina HƓpital Ibn Sina-Rabat'),
(89529, 'https://ror.org/006vx3924', 'en', 1, 'https://ror.org/006vx3924 St. Vincent''s Medical Center'),
(89530, 'https://ror.org/038v7z909', 'en', 0, 'https://ror.org/038v7z909 Badan Penelitian dan Pengembangan Indonesian Agency for Agricultural Research and Development'),
(89531, 'https://ror.org/01ddxaa25', 'en', 1, 'https://ror.org/01ddxaa25 Carondelet Health Network'),
(89532, 'https://ror.org/01h7fye62', 'en', 1, 'https://ror.org/01h7fye62 NOAA National Marine Fisheries Service Alaska Fisheries Science Center'),
(89533, 'https://ror.org/012q9wx84', 'en', 1, 'https://ror.org/012q9wx84 Stellwagen Bank National Marine Sanctuary'),
(89534, 'https://ror.org/02p2cc606', 'es', 1, 'https://ror.org/02p2cc606 Hospital Infanta Margarita'),
(89535, 'https://ror.org/02caqw325', 'en', 1, 'https://ror.org/02caqw325 Hanjiang Normal University ę±‰ę±ŸåøˆčŒƒå­¦é™¢'),
(89536, 'https://ror.org/040933v44', 'en', 1, 'https://ror.org/040933v44 NOAA Environmental Modeling Center'),
(89537, 'https://ror.org/02f762h70', 'en', 1, 'https://ror.org/02f762h70 NOAA National Geodetic Survey'),
(89538, 'https://ror.org/03cskqs60', 'en', 1, 'https://ror.org/03cskqs60 NOAA National Marine Fisheries Office of Law Enforcement'),
(89539, 'https://ror.org/03fy33a80', 'en', 1, 'https://ror.org/03fy33a80 NOAA Office of Protected Resources'),
(89540, 'https://ror.org/01kjvq748', 'no_lang_code', 1, 'https://ror.org/01kjvq748 Sol-Tech'),
(89541, 'https://ror.org/01fdhpk75', 'en', 1, 'https://ror.org/01fdhpk75 Molecular Foundry'),
(89542, 'https://ror.org/01n1q0h77', 'es', 1, 'https://ror.org/01n1q0h77 Panamerican University Universidad Panamericana'),
(89543, 'https://ror.org/02apffz65', 'en', 1, 'https://ror.org/02apffz65 NOAA National Marine Fisheries Service Pacific Islands Fisheries Science Center'),
(89544, 'https://ror.org/02tppqb69', 'en', 1, 'https://ror.org/02tppqb69 Indiana Health Information Exchange'),
(89545, 'https://ror.org/055fhtb27', 'en', 1, 'https://ror.org/055fhtb27 ChaLearn'),
(89546, 'https://ror.org/02txa8h30', 'en', 1, 'https://ror.org/02txa8h30 NOAA National Weather Service Eastern Region'),
(89547, 'https://ror.org/03n6z5186', 'es', 1, 'https://ror.org/03n6z5186 CEDUC UCN'),
(89548, 'https://ror.org/04nxw7p13', 'en', 1, 'https://ror.org/04nxw7p13 Ascension Via Christi'),
(89549, 'https://ror.org/002pscq53', 'en', 1, 'https://ror.org/002pscq53 NOAA National Weather Service Southern Region'),
(89550, 'https://ror.org/006kr7r70', 'no_lang_code', 1, 'https://ror.org/006kr7r70 Okavango Research Institute'),
(89551, 'https://ror.org/028m52w57', 'en', 1, 'https://ror.org/028m52w57 SINTEF Digital'),
(89552, 'https://ror.org/05gxje444', 'en', 1, 'https://ror.org/05gxje444 NOAA National Marine Fisheries Service Alaska Regional Office'),
(89553, 'https://ror.org/038zpvz53', 'fr', 1, 'https://ror.org/038zpvz53 Centre Hospitalier Ibn Sina');
INSERT INTO `rors` VALUES
(89554, 'https://ror.org/04kd28k12', 'en', 1, 'https://ror.org/04kd28k12 Providence Hospital'),
(89555, 'https://ror.org/054y3ya26', 'en', 1, 'https://ror.org/054y3ya26 NOAA National Weather Service Western Region'),
(89556, 'https://ror.org/006yjsn14', 'en', 1, 'https://ror.org/006yjsn14 Brighton Hospital'),
(89557, 'https://ror.org/057hhqd90', 'en', 1, 'https://ror.org/057hhqd90 Sacred Heart Health System'),
(89558, 'https://ror.org/01q47ea17', 'en', 1, 'https://ror.org/01q47ea17 National Synchrotron Light Source II'),
(89559, 'https://ror.org/04f927797', 'en', 1, 'https://ror.org/04f927797 European Institute for Systems Biology and Medicine'),
(89560, 'https://ror.org/00ajw8c12', 'en', 0, 'https://ror.org/00ajw8c12 The Institute of Geotechnical Mechanics named by N. Polyakov NAS of Ukraine Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геотехнической механики им. Š.Š”. ŠŸŠ¾Š»ŃŠŗŠ¾Š²Š° ŠŠŠ Украины'),
(89561, 'https://ror.org/04qaf2y58', 'en', 1, 'https://ror.org/04qaf2y58 NOAA International & Interagency Affairs Division'),
(89562, 'https://ror.org/02v4wmf32', 'en', 1, 'https://ror.org/02v4wmf32 NOAA National Marine Fisheries Service Greater Atlantic Regional Fisheries Office'),
(89563, 'https://ror.org/03g2c2k71', 'fr', 0, 'https://ror.org/03g2c2k71 Laboratoire de MathƩmatiques et Physique ThƩorique'),
(89564, 'https://ror.org/05gypvt76', 'en', 1, 'https://ror.org/05gypvt76 Veer Kunwar Singh University ą¤µą„€ą¤° ą¤•ą„ą¤‚ą¤µą¤° सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(89565, 'https://ror.org/037bamf06', 'en', 1, 'https://ror.org/037bamf06 NOAA Global Ocean Monitoring and Observing Program'),
(89566, 'https://ror.org/00y2ek133', 'en', 1, 'https://ror.org/00y2ek133 Naval Oceanography Office'),
(89567, 'https://ror.org/03d6rdf69', 'fr', 0, 'https://ror.org/03d6rdf69 Laboratoire de MathƩmatiques Analyse, ProbabilitƩs, ModƩlisation OrlƩans'),
(89568, 'https://ror.org/046mr5703', 'no_lang_code', 1, 'https://ror.org/046mr5703 Wirsam Scientific (South Africa) Wirsam Wetenskaplik'),
(89569, 'https://ror.org/003dfhs04', 'fr', 0, 'https://ror.org/003dfhs04 Institut de Physique NuclĆ©aire d’Orsay'),
(89570, 'https://ror.org/01fpdvr35', 'en', 1, 'https://ror.org/01fpdvr35 National Integrated Drought Information System'),
(89571, 'https://ror.org/0046t1019', 'en', 1, 'https://ror.org/0046t1019 Eskenazi Health'),
(89572, 'https://ror.org/04b222d59', 'en', 1, 'https://ror.org/04b222d59 NOAA National Water Center'),
(89573, 'https://ror.org/05953j253', 'en', 1, 'https://ror.org/05953j253 Virginia Tech Transportation Institute'),
(89574, 'https://ror.org/01hza1144', 'en', 1, 'https://ror.org/01hza1144 Department of Primary Industries and Regions South Australia'),
(89575, 'https://ror.org/04g08bx14', 'en', 1, 'https://ror.org/04g08bx14 European University įƒ”įƒ•įƒ įƒįƒžįƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(89576, 'https://ror.org/037jbhy77', 'en', 1, 'https://ror.org/037jbhy77 Association of Geographic Information Laboratories Europe'),
(89577, 'https://ror.org/01m1c9z98', 'en', 0, 'https://ror.org/01m1c9z98 Vermont Center for the Book'),
(89578, 'https://ror.org/012sz6c52', 'en', 1, 'https://ror.org/012sz6c52 NOAA Uncrewed Systems Research Transition Office'),
(89579, 'https://ror.org/014kxm163', 'en', 1, 'https://ror.org/014kxm163 NOAA National Weather Service Pacific Region'),
(89580, 'https://ror.org/05sgw3s08', 'en', 1, 'https://ror.org/05sgw3s08 Tashkent Medical Academy Toshkent Tibbiyot Akademiyasi'),
(89581, 'https://ror.org/0235zh559', 'en', 1, 'https://ror.org/0235zh559 NOAA National Ice Center'),
(89582, 'https://ror.org/04bgwn153', 'en', 1, 'https://ror.org/04bgwn153 NOAA Office of National Marine Sanctuaries'),
(89583, 'https://ror.org/015yf2b46', 'en', 1, 'https://ror.org/015yf2b46 Dell Children''s Medical Center of Central Texas'),
(89584, 'https://ror.org/01j6j9107', 'en', 1, 'https://ror.org/01j6j9107 NOAA Space Weather Prediction Center'),
(89585, 'https://ror.org/04s9kfd63', 'en', 1, 'https://ror.org/04s9kfd63 Wellcome EPSRC Centre for Medical Engineering'),
(89586, 'https://ror.org/00kz42k48', 'en', 1, 'https://ror.org/00kz42k48 The Achieve Foundation'),
(89587, 'https://ror.org/02v2g5f10', 'en', 1, 'https://ror.org/02v2g5f10 Russian State Academy of Intellectual Property Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŠ½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Š¾Š¹ собственности'),
(89588, 'https://ror.org/00p9by667', 'en', 1, 'https://ror.org/00p9by667 NOAA National Marine Fisheries Service Office of International Affairs and Seafood Inspection'),
(89589, 'https://ror.org/03yn06t56', 'en', 1, 'https://ror.org/03yn06t56 NOAA Center for Satellite Applications and Research'),
(89590, 'https://ror.org/054f0d685', 'en', 1, 'https://ror.org/054f0d685 St. John Medical Center'),
(89591, 'https://ror.org/0512csj88', 'en', 1, 'https://ror.org/0512csj88 Wake Forest Baptist Comprehensive Cancer Center'),
(89592, 'https://ror.org/05e44rx60', 'en', 1, 'https://ror.org/05e44rx60 WAPCOS Limited ą¤µą¤¾ą¤Ŗą„ą¤•ą„‹ą¤ø ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(89593, 'https://ror.org/02qy3wv98', 'en', 1, 'https://ror.org/02qy3wv98 NOAA National Data Buoy Center'),
(89594, 'https://ror.org/0207smp78', 'en', 1, 'https://ror.org/0207smp78 Ascension Providence Hospital'),
(89595, 'https://ror.org/03qjq6543', 'no_lang_code', 1, 'https://ror.org/03qjq6543 CESAME-EXADEBIT (France)'),
(89596, 'https://ror.org/002shdh75', 'en', 1, 'https://ror.org/002shdh75 NOAA Office of Habitat Conservation'),
(89597, 'https://ror.org/05x022254', 'en', 0, 'https://ror.org/05x022254 Seton Healthcare Family'),
(89598, 'https://ror.org/02c6yhw44', 'en', 1, 'https://ror.org/02c6yhw44 Ho Chi Minh City University of Social Sciences and Humanities TrĘ°į»ng ĐẔi hį»c Khoa hį»c XĆ£ hį»™i vĆ  NhĆ¢n văn, ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh'),
(89599, 'https://ror.org/04xydmh53', 'de', 1, 'https://ror.org/04xydmh53 Museum Wiesbaden'),
(89600, 'https://ror.org/01g25jp36', 'en', 1, 'https://ror.org/01g25jp36 Nederlands Instituut voor Ecologie Netherlands Institute of Ecology'),
(89601, 'https://ror.org/00hdf4w21', 'en', 1, 'https://ror.org/00hdf4w21 Indiana State Department of Health'),
(89602, 'https://ror.org/013ew2c19', 'en', 1, 'https://ror.org/013ew2c19 NOAA Office of Water Prediction'),
(89603, 'https://ror.org/01q70bz83', 'en', 1, 'https://ror.org/01q70bz83 NOAA Weather Program Office'),
(89604, 'https://ror.org/04gsgxx86', 'en', 1, 'https://ror.org/04gsgxx86 NOAA Office of Sustainable Fisheries'),
(89605, 'https://ror.org/02yjy0144', 'en', 1, 'https://ror.org/02yjy0144 Health & Hospital Corporation of Marion County'),
(89606, 'https://ror.org/0439y7842', 'en', 1, 'https://ror.org/0439y7842 Engineering and Physical Sciences Research Council'),
(89607, 'https://ror.org/02x8t8q15', 'en', 1, 'https://ror.org/02x8t8q15 Badan Standardisasi Instrumen Pertanian Indonesian Agency for Agricultural Instruments Standardization'),
(89608, 'https://ror.org/01mrcse49', 'en', 1, 'https://ror.org/01mrcse49 SINTEF Manufacturing'),
(89609, 'https://ror.org/031478740', 'en', 1, 'https://ror.org/031478740 Office of Scientific and Technical Information'),
(89610, 'https://ror.org/05v0sks95', 'en', 1, 'https://ror.org/05v0sks95 UT Health Austin'),
(89611, 'https://ror.org/042gmmd19', 'en', 1, 'https://ror.org/042gmmd19 South Australian Research and Development Institute'),
(89612, 'https://ror.org/0590dbq33', 'en', 1, 'https://ror.org/0590dbq33 SINTEF Energy Research'),
(89613, 'https://ror.org/00gd1f947', 'en', 1, 'https://ror.org/00gd1f947 NOAA National Severe Storms Laboratory'),
(89614, 'https://ror.org/052sw9d77', 'en', 1, 'https://ror.org/052sw9d77 Seton Medical Center Austin'),
(89615, 'https://ror.org/006ddyp05', 'en', 1, 'https://ror.org/006ddyp05 NOAA Global Systems Laboratory'),
(89616, 'https://ror.org/01f677e56', 'no', 1, 'https://ror.org/01f677e56 SINTEF Stiftelsen for Industriell og Teknisk Forskning'),
(89617, 'https://ror.org/004wre089', 'en', 1, 'https://ror.org/004wre089 SINTEF Ocean'),
(89618, 'https://ror.org/00dez5550', 'en', 1, 'https://ror.org/00dez5550 University Medical Center Brackenridge'),
(89619, 'https://ror.org/04v8djg66', 'en', 1, 'https://ror.org/04v8djg66 Atrium Health Wake Forest Baptist'),
(89620, 'https://ror.org/00f7rb209', 'en', 1, 'https://ror.org/00f7rb209 NOAA Weather Prediction Center'),
(89621, 'https://ror.org/0138jhg57', 'en', 1, 'https://ror.org/0138jhg57 TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ – Luįŗ­t, ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh University of Economics and Law'),
(89622, 'https://ror.org/01px5cv07', 'en', 1, 'https://ror.org/01px5cv07 Reichman University ××•× ×™×‘×Ø×”×™×˜×Ŗ ×Ø×™×™×›×ž×Ÿ'),
(89623, 'https://ror.org/05dxwqx61', 'en', 1, 'https://ror.org/05dxwqx61 St. John Macomb Oakland Hospital'),
(89624, 'https://ror.org/05kdc4973', 'en', 1, 'https://ror.org/05kdc4973 TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ ThĆ“ng tin University of Information Technology'),
(89625, 'https://ror.org/02fj1x097', 'en', 1, 'https://ror.org/02fj1x097 Sidney & Lois Eskenazi Hospital'),
(89626, 'https://ror.org/00kct2d35', 'en', 1, 'https://ror.org/00kct2d35 NOAA Climate Prediction Center'),
(89627, 'https://ror.org/02mnd0039', 'en', 1, 'https://ror.org/02mnd0039 NOAA Technology Partnerships Office'),
(89628, 'https://ror.org/0396y0w87', 'en', 1, 'https://ror.org/0396y0w87 NOAA National Marine Fisheries Service Southeast Fisheries Science Center'),
(89629, 'https://ror.org/04sac7215', 'en', 1, 'https://ror.org/04sac7215 St. John Hospital & Medical Center'),
(89630, 'https://ror.org/02akpm128', 'es', 1, 'https://ror.org/02akpm128 Catholic University of the North Universidad Católica del Norte'),
(89631, 'https://ror.org/05920yd65', 'en', 1, 'https://ror.org/05920yd65 Institut International d''Agriculture Tropicale International Center for Tropical Agriculture'),
(89632, 'https://ror.org/03pmw0n81', 'en', 1, 'https://ror.org/03pmw0n81 NOAA Office of Research, Transition, & Application'),
(89633, 'https://ror.org/006ha1k08', 'en', 1, 'https://ror.org/006ha1k08 NOAA Aviation Weather Center'),
(89634, 'https://ror.org/01rngv472', 'hu', 1, 'https://ror.org/01rngv472 Agricultural Economics Nonprofit Kft. AgrƔrkƶzgazdasƔgi IntƩzet'),
(89635, 'https://ror.org/03rv17793', 'en', 1, 'https://ror.org/03rv17793 M.S. Poliakov Institute of Geotechnical Mechanics of the National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геотехнічної механіки ім. М.Š”. ŠŸŠ¾Š»ŃŠŗŠ¾Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(89636, 'https://ror.org/022d75229', 'en', 1, 'https://ror.org/022d75229 NOAA National Marine Fisheries Service Southwest Fisheries Science Center'),
(89637, 'https://ror.org/02bypky31', 'en', 1, 'https://ror.org/02bypky31 NOAA National Marine Fisheries Service Pacific Islands Regional Office'),
(89638, 'https://ror.org/02hdgdd22', 'fr', 1, 'https://ror.org/02hdgdd22 Laboratoire AssociƩ de DƩbitmƩtrie Gazeuse'),
(89639, 'https://ror.org/035qqss14', 'no_lang_code', 1, 'https://ror.org/035qqss14 BlueGreen Labs (bv) (Belgium)'),
(89640, 'https://ror.org/0307vw222', 'es', 1, 'https://ror.org/0307vw222 Universidad Nacional Experimental Sur del Lago "JesĆŗs MarĆ­a Semprum"'),
(89641, 'https://ror.org/04ysp0h33', 'en', 1, 'https://ror.org/04ysp0h33 North Gate University'),
(89642, 'https://ror.org/00vh3r553', 'id', 1, 'https://ror.org/00vh3r553 Institut Teknologi Tangerang Selatan'),
(89643, 'https://ror.org/0156gk772', 'fr', 0, 'https://ror.org/0156gk772 Laboratoire de MƩcanique des Sols, Structures et MatƩriaux'),
(89644, 'https://ror.org/016brqk63', 'en', 1, 'https://ror.org/016brqk63 University of Applied Management'),
(89645, 'https://ror.org/030qxdf23', 'es', 1, 'https://ror.org/030qxdf23 Instituto de Fisica de Liquidos y Sistemas Biologicos'),
(89646, 'https://ror.org/03tczky53', 'en', 1, 'https://ror.org/03tczky53 Southern Alamance Middle School'),
(89647, 'https://ror.org/03y409c56', 'es', 1, 'https://ror.org/03y409c56 Centro Universitario Integral de ZacatlƔn'),
(89648, 'https://ror.org/0277krk64', 'en', 1, 'https://ror.org/0277krk64 Lukuru Foundation'),
(89649, 'https://ror.org/04bms6d25', 'en', 1, 'https://ror.org/04bms6d25 College Track'),
(89650, 'https://ror.org/057zmmf60', 'es', 1, 'https://ror.org/057zmmf60 Instituto de BiotecnologĆ­a y BiologĆ­a Molecular'),
(89651, 'https://ror.org/01epym565', 'fr', 0, 'https://ror.org/01epym565 Laboratoire de Chimie MolƩculaire'),
(89652, 'https://ror.org/02953vp81', 'en', 1, 'https://ror.org/02953vp81 York District Hospital'),
(89653, 'https://ror.org/05t7j3v51', 'en', 1, 'https://ror.org/05t7j3v51 Tajikistan Humanitarian International University'),
(89654, 'https://ror.org/03swjxf89', 'en', 1, 'https://ror.org/03swjxf89 Directorate-General of Antiquities and Museums Ų§Ł„Ł…ŲÆŁŠŲ±ŁŠŲ© العامة للآثار ŁˆŲ§Ł„Ł…ŲŖŲ§Ų­Łā€Ž'),
(89655, 'https://ror.org/04v5yn984', 'no_lang_code', 1, 'https://ror.org/04v5yn984 Jeans for Genes (United Kingdom)'),
(89656, 'https://ror.org/039z5ca24', 'en', 1, 'https://ror.org/039z5ca24 Salem Methodist Preschool'),
(89657, 'https://ror.org/0496dtf02', 'pt', 1, 'https://ror.org/0496dtf02 Universidade Lusófona da Guiné'),
(89658, 'https://ror.org/03xc23y25', 'no_lang_code', 1, 'https://ror.org/03xc23y25 Geohabitat (Spain)'),
(89659, 'https://ror.org/02b69zv86', 'en', 1, 'https://ror.org/02b69zv86 National University of Arts and Culture Yangon į€šį€‰į€ŗį€€į€»į€±į€øį€™į€¾į€Æ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ ရန်ကုန်'),
(89660, 'https://ror.org/0501fq006', 'fr', 1, 'https://ror.org/0501fq006 UniversitƩ d''ƩtƩ de Boulogne-sur-Mer'),
(89661, 'https://ror.org/0330wp883', 'en', 1, 'https://ror.org/0330wp883 Batumi Independent University'),
(89662, 'https://ror.org/04xgpdk57', 'no_lang_code', 1, 'https://ror.org/04xgpdk57 Vattenfall (Denmark)'),
(89663, 'https://ror.org/0295ry046', 'en', 1, 'https://ror.org/0295ry046 St Grigol Peradze Tbilisi Teaching University'),
(89664, 'https://ror.org/012019z16', 'no_lang_code', 1, 'https://ror.org/012019z16 Cognitive Radio Technologies'),
(89665, 'https://ror.org/05r8ceg90', 'en', 1, 'https://ror.org/05r8ceg90 University of Islamic Studies'),
(89666, 'https://ror.org/014cdjz51', 'no_lang_code', 1, 'https://ror.org/014cdjz51 Lallemand (France)'),
(89667, 'https://ror.org/02dqdxm48', 'en', 1, 'https://ror.org/02dqdxm48 Hamilton Health Sciences'),
(89668, 'https://ror.org/024czvm93', 'no_lang_code', 1, 'https://ror.org/024czvm93 Sapporo Hokuyu Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ—ę„”ä¼š'),
(89669, 'https://ror.org/04phmsq76', 'fr', 0, 'https://ror.org/04phmsq76 Imagerie par RƩsonance MagnƩtique MƩdicale et Multi-ModalitƩs'),
(89670, 'https://ror.org/00pykk203', 'fr', 0, 'https://ror.org/00pykk203 Laboratoire IngƩnierie, ProcƩdƩs, Aliments'),
(89671, 'https://ror.org/04ykbz021', 'en', 1, 'https://ror.org/04ykbz021 Indian Medical Association'),
(89672, 'https://ror.org/004pq5c76', 'en', 1, 'https://ror.org/004pq5c76 Republican Clinical Oncology Dispensary of the Ministry of Health of the Republic of Tatarstan named after Professor M.Z. Sigal ГАУЗ "Республиканский клинический онкологический Гиспансер ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Республики Татарстан имени профессора М.Š—. Дигала"'),
(89673, 'https://ror.org/04t12kd43', 'es', 1, 'https://ror.org/04t12kd43 Centro de Investigación Educativa'),
(89674, 'https://ror.org/052kcye35', 'no_lang_code', 1, 'https://ror.org/052kcye35 NeuRho Farmaceutica (United States)'),
(89675, 'https://ror.org/02xpmtg36', 'en', 1, 'https://ror.org/02xpmtg36 Ho Chi Minh City University of Culture TrĘ°į»ng ĐẔi hį»c Văn hóa ThĆ nh phố Hồ ChĆ­ Minh'),
(89676, 'https://ror.org/05y3xcx21', 'no_lang_code', 1, 'https://ror.org/05y3xcx21 Tonami General Hospital åø‚ē«‹ē ŗę³¢ē·åˆē—…é™¢'),
(89677, 'https://ror.org/05pabaz56', 'en', 0, 'https://ror.org/05pabaz56 Center for MathematicaL studies and their Applications Centre de MathƩmatiques et de Leurs Applications'),
(89678, 'https://ror.org/03cx2jm33', 'es', 1, 'https://ror.org/03cx2jm33 Centro Extremeño de iNvestigación,Innovación Tecnológica y Supercomputación Extremadura Supercomputing, Technological Innovation and Research Center'),
(89679, 'https://ror.org/032sj7v89', 'no_lang_code', 1, 'https://ror.org/032sj7v89 Enject (United States)'),
(89680, 'https://ror.org/01f0nvc12', 'no_lang_code', 1, 'https://ror.org/01f0nvc12 Vidropol (Portugal)'),
(89681, 'https://ror.org/02d1rkr63', 'de', 1, 'https://ror.org/02d1rkr63 Klinikum Coburg'),
(89682, 'https://ror.org/04v30e006', 'es', 1, 'https://ror.org/04v30e006 Centro de Investigación y Desarrollo en Criotecnología de Alimentos'),
(89683, 'https://ror.org/03rhf7m59', 'en', 1, 'https://ror.org/03rhf7m59 Ocean Data Factory Sweden'),
(89684, 'https://ror.org/04z2hhf91', 'fr', 0, 'https://ror.org/04z2hhf91 Centre de Recherches sur le Sport et le Mouvement'),
(89685, 'https://ror.org/054e86395', 'en', 1, 'https://ror.org/054e86395 Airline Training Program Flight School'),
(89686, 'https://ror.org/01ggzh816', 'en', 1, 'https://ror.org/01ggzh816 Yerevan State Linguistic University ŌµÖ€Ö‡Õ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ¬Õ„Õ¦Õ¾Õ”Õ°Õ”Õ½Õ”Ö€Õ”ÕÆÕ”Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(89687, 'https://ror.org/05ekffz43', 'en', 1, 'https://ror.org/05ekffz43 National Center on Complex Processing of Mineral Raw Materials of the Republic of Kazakhstan ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр по комплексной переработке Š¼ŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ сырья Республики ŠšŠ°Š·Š°Ń…стан ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ минералГық ŃˆŠøŠŗŃ–Š·Š°Ń‚Ń‚Ń‹ ŠŗŠµŃˆŠµŠ½Š“Ń– қайта өңГеу жөнінГегі ұлттық орталығы'),
(89688, 'https://ror.org/05jw4wg66', 'en', 1, 'https://ror.org/05jw4wg66 Cerebral Palsy Research Network'),
(89689, 'https://ror.org/03bk73w20', 'en', 1, 'https://ror.org/03bk73w20 Research Institute of Vaccines and Sera. Mechnikov of the Russian Academy of Medical Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вакцин Šø сывороток им. И.И. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(89690, 'https://ror.org/01nftxb06', 'en', 1, 'https://ror.org/01nftxb06 Leibniz Institute of Freshwater Ecology and Inland Fisheries Leibniz-Institut für Gewässerökologie und Binnenfischerei'),
(89691, 'https://ror.org/00eq41n87', 'en', 1, 'https://ror.org/00eq41n87 InLeaVe'),
(89692, 'https://ror.org/00sxqh512', 'fr', 0, 'https://ror.org/00sxqh512 Laboratoire Psychologie de la Perception'),
(89693, 'https://ror.org/04asyj427', 'en', 1, 'https://ror.org/04asyj427 National Defence Medical Centre'),
(89694, 'https://ror.org/020h0qv97', 'en', 1, 'https://ror.org/020h0qv97 Kremenchuk University of Economics Information Technology and Management'),
(89695, 'https://ror.org/0136m5z53', 'en', 1, 'https://ror.org/0136m5z53 University of Florida Cancer Hospital'),
(89696, 'https://ror.org/02n1jcr11', 'en', 1, 'https://ror.org/02n1jcr11 Tomori PƔl College'),
(89697, 'https://ror.org/02dkpwz86', 'no_lang_code', 1, 'https://ror.org/02dkpwz86 Trans Tech Publications (Switzerland)'),
(89698, 'https://ror.org/052rn6611', 'no_lang_code', 1, 'https://ror.org/052rn6611 Biostar (United States)'),
(89699, 'https://ror.org/02fx91a16', 'fr', 1, 'https://ror.org/02fx91a16 UniversitƩ de Sarh'),
(89700, 'https://ror.org/00g169550', 'en', 1, 'https://ror.org/00g169550 Caswell County Schools'),
(89701, 'https://ror.org/00zynmr34', 'no_lang_code', 1, 'https://ror.org/00zynmr34 Baba Guru Nanak University ਬਾਬਾ ਗੁਰੂ ਨਾਨਕ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(89702, 'https://ror.org/01ycya212', 'en', 1, 'https://ror.org/01ycya212 Louis and Harold Price Foundation'),
(89703, 'https://ror.org/041bvb021', 'en', 1, 'https://ror.org/041bvb021 Technological University Monywa မုံရွာ į€”į€Šį€ŗį€øį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(89704, 'https://ror.org/02wcaw311', 'en', 1, 'https://ror.org/02wcaw311 Experimental Security University'),
(89705, 'https://ror.org/046w3ze59', 'fr', 0, 'https://ror.org/046w3ze59 Laboratoire de l''AccƩlƩrateur LinƩaire'),
(89706, 'https://ror.org/02efy9n22', 'en', 1, 'https://ror.org/02efy9n22 Swedish Institute for Health Services Development'),
(89707, 'https://ror.org/01xaqx887', 'en', 1, 'https://ror.org/01xaqx887 Advanced Digital Sciences Center'),
(89708, 'https://ror.org/04ff2nx78', 'en', 1, 'https://ror.org/04ff2nx78 Tajikistan–Russian Modern University'),
(89709, 'https://ror.org/058gnfy87', 'fr', 1, 'https://ror.org/058gnfy87 UniversitƩ Hassan II Mohammedia'),
(89710, 'https://ror.org/05c40ar66', 'en', 1, 'https://ror.org/05c40ar66 Sutton Trust'),
(89711, 'https://ror.org/05cwrg559', 'no_lang_code', 1, 'https://ror.org/05cwrg559 WSP Civils (United Kingdom)'),
(89712, 'https://ror.org/035g9cv42', 'en', 1, 'https://ror.org/035g9cv42 Technological University Pathein'),
(89713, 'https://ror.org/03xgsk889', 'en', 1, 'https://ror.org/03xgsk889 Pamir University'),
(89714, 'https://ror.org/05b4kax95', 'en', 1, 'https://ror.org/05b4kax95 Saint Petersburg University of Management and Economics'),
(89715, 'https://ror.org/0315saa81', 'en', 1, 'https://ror.org/0315saa81 Peer Community In'),
(89716, 'https://ror.org/00db08w91', 'es', 1, 'https://ror.org/00db08w91 Universidad de Cartago'),
(89717, 'https://ror.org/05p4bpw44', 'en', 1, 'https://ror.org/05p4bpw44 Pfeiffer University at Charlotte'),
(89718, 'https://ror.org/00zbnzw74', 'en', 1, 'https://ror.org/00zbnzw74 Stratford University'),
(89719, 'https://ror.org/04y98b529', 'no_lang_code', 1, 'https://ror.org/04y98b529 Pax Press (Rwanda)'),
(89720, 'https://ror.org/01raq4x89', 'fr', 0, 'https://ror.org/01raq4x89 Computer Science Laboratory for Mechanics and Engineering Sciences Laboratoire d''Informatique pour la MƩcanique et les Sciences de l''IngƩnieur'),
(89721, 'https://ror.org/010bg5245', 'en', 1, 'https://ror.org/010bg5245 EC-Earth Consortium'),
(89722, 'https://ror.org/01wkk5m15', 'es', 1, 'https://ror.org/01wkk5m15 Centro Universitario Haller'),
(89723, 'https://ror.org/05xh8yr59', 'en', 1, 'https://ror.org/05xh8yr59 University Physicians'),
(89724, 'https://ror.org/01mqz4s64', 'no_lang_code', 1, 'https://ror.org/01mqz4s64 CodeX Discovery (Ireland)'),
(89725, 'https://ror.org/05xvhpk21', 'en', 1, 'https://ror.org/05xvhpk21 Centre for Conservation and Research'),
(89726, 'https://ror.org/016eff762', 'en', 1, 'https://ror.org/016eff762 Menelik II Medical and Health Science College į‹³įŒįˆ›į‹Š įˆįŠ’įˆŠįŠ­ įˆ…įŠ­įˆįŠ“įŠ“ įŒ¤įŠ“ įˆ³į‹­įŠ•įˆµ įŠ®įˆŒįŒ…'),
(89727, 'https://ror.org/02gpp3c32', 'en', 1, 'https://ror.org/02gpp3c32 Progressive Foundation'),
(89728, 'https://ror.org/00cknwj02', 'no_lang_code', 1, 'https://ror.org/00cknwj02 Symtavision (Germany)'),
(89729, 'https://ror.org/01qpd8v57', 'no_lang_code', 1, 'https://ror.org/01qpd8v57 Precision Castparts (United Kingdom)'),
(89730, 'https://ror.org/01rab0x89', 'no_lang_code', 1, 'https://ror.org/01rab0x89 Empresa de Manutenção de Equipamento FerroviÔrio (Portugal)'),
(89731, 'https://ror.org/01vtjgg14', 'en', 1, 'https://ror.org/01vtjgg14 The Institute for Education Research'),
(89732, 'https://ror.org/04b786w92', 'en', 1, 'https://ror.org/04b786w92 Bilawal Medical College'),
(89733, 'https://ror.org/03w1ffx74', 'en', 0, 'https://ror.org/03w1ffx74 Unit of Neuroscience Information and Complexity UnitƩ de Neurosciences Information et ComplexitƩ'),
(89734, 'https://ror.org/018r78t52', 'no_lang_code', 1, 'https://ror.org/018r78t52 Rumbek University'),
(89735, 'https://ror.org/00q8bgq27', 'en', 1, 'https://ror.org/00q8bgq27 Shkollat ushtarake tƫ Shqipƫrisƫ Skanderbeg Military University'),
(89736, 'https://ror.org/02q36cq90', 'en', 1, 'https://ror.org/02q36cq90 Community Health Alliance'),
(89737, 'https://ror.org/02yt3b208', 'no_lang_code', 1, 'https://ror.org/02yt3b208 Sicambeni Rural University'),
(89738, 'https://ror.org/02kjnbn02', 'no_lang_code', 1, 'https://ror.org/02kjnbn02 Energy Power Resources (United Kingdom)'),
(89739, 'https://ror.org/05jadkj46', 'en', 1, 'https://ror.org/05jadkj46 University of Missouri Hospital'),
(89740, 'https://ror.org/042n1wm56', 'no_lang_code', 1, 'https://ror.org/042n1wm56 Aeron LifeCycles (United States)'),
(89741, 'https://ror.org/035rcqz84', 'fr', 1, 'https://ror.org/035rcqz84 L''HƓpital Universitaire Justinien'),
(89742, 'https://ror.org/05mh85j20', 'fr', 1, 'https://ror.org/05mh85j20 Institut Universitaire Quisqueya-AmƩrique'),
(89743, 'https://ror.org/009hdbz24', 'no_lang_code', 1, 'https://ror.org/009hdbz24 Vodafone (Italy)'),
(89744, 'https://ror.org/000gpe516', 'en', 1, 'https://ror.org/000gpe516 Universidad American College'),
(89745, 'https://ror.org/00yfg2203', 'no_lang_code', 1, 'https://ror.org/00yfg2203 Intelligent Prosthetic Systems (United States)'),
(89746, 'https://ror.org/02dra4h87', 'en', 1, 'https://ror.org/02dra4h87 Oldfield Surgery'),
(89747, 'https://ror.org/02z5nms51', 'en', 1, 'https://ror.org/02z5nms51 Murayama Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ ę‘å±±åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(89748, 'https://ror.org/044wb9t02', 'en', 1, 'https://ror.org/044wb9t02 School of Clinical Research'),
(89749, 'https://ror.org/00z27jk27', 'en', 1, 'https://ror.org/00z27jk27 Shanghai University of Traditional Chinese Medicine äøŠęµ·äø­åŒ»čÆå¤§å­¦'),
(89750, 'https://ror.org/03nbxaq37', 'en', 1, 'https://ror.org/03nbxaq37 Pyongyang University of Music and Dance ź¹€ģ›ź· ķ‰ģ–‘ģŒģ•…ėŒ€ķ•™'),
(89751, 'https://ror.org/00h62h294', 'no_lang_code', 1, 'https://ror.org/00h62h294 Mondragon Corporation (New Zealand)'),
(89752, 'https://ror.org/01n54ed02', 'no_lang_code', 1, 'https://ror.org/01n54ed02 Adidas (Germany)'),
(89753, 'https://ror.org/04envvc16', 'en', 1, 'https://ror.org/04envvc16 Paget Foundation'),
(89754, 'https://ror.org/05cas4c56', 'no_lang_code', 1, 'https://ror.org/05cas4c56 SofTech (Italy)'),
(89755, 'https://ror.org/04qjrz315', 'no_lang_code', 1, 'https://ror.org/04qjrz315 Universitet Kajnar'),
(89756, 'https://ror.org/0474ddm96', 'pt', 1, 'https://ror.org/0474ddm96 Fundação Centro de Estudos do Universo'),
(89757, 'https://ror.org/046g6xj75', 'en', 1, 'https://ror.org/046g6xj75 South Carolina Ovarian Cancer Foundation'),
(89758, 'https://ror.org/02v51az37', 'en', 1, 'https://ror.org/02v51az37 Saint-Petersburg Humanitarian University of Trade Unions'),
(89759, 'https://ror.org/00v64w771', 'en', 1, 'https://ror.org/00v64w771 National Scientific Centre ā€œInstitute of Agrarian Economicsā€ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрної економіки»'),
(89760, 'https://ror.org/01hq2jk95', 'en', 1, 'https://ror.org/01hq2jk95 Bavarian State Archives Staatlichen Archive Bayerns'),
(89761, 'https://ror.org/0154y7z37', 'no_lang_code', 1, 'https://ror.org/0154y7z37 Miyama Composites Materials (Greece)'),
(89762, 'https://ror.org/02yh39302', 'en', 1, 'https://ror.org/02yh39302 Delphi University'),
(89763, 'https://ror.org/036h2t531', 'fr', 1, 'https://ror.org/036h2t531 UniversitƩ PrivƩe d''Enseignement SupƩrieur El Amel'),
(89764, 'https://ror.org/03h7eyw97', 'en', 0, 'https://ror.org/03h7eyw97 Shanghai Universities E-Institute for Chemical Biology'),
(89765, 'https://ror.org/04qbgyy75', 'en', 1, 'https://ror.org/04qbgyy75 Mid-Atlantic Association of Museums'),
(89766, 'https://ror.org/04kxf1r09', 'es', 1, 'https://ror.org/04kxf1r09 Agencia Estatal de Meteorología Agència Estatal de Meteorologia Instituto Central Meteorológico Meteorologiako Estatu Agentzia State Meteorological Agency'),
(89767, 'https://ror.org/039pj5e32', 'en', 1, 'https://ror.org/039pj5e32 Franciscan University Rugby'),
(89768, 'https://ror.org/02n9cps64', 'fr', 0, 'https://ror.org/02n9cps64 Mondes Iranien et Indien'),
(89769, 'https://ror.org/0288z4m73', 'no_lang_code', 1, 'https://ror.org/0288z4m73 Newron Pharmaceuticals (Sweden)'),
(89770, 'https://ror.org/02n006v45', 'en', 1, 'https://ror.org/02n006v45 Chinese National Academy of Arts äø­å›½č‰ŗęœÆē ”ē©¶é™¢'),
(89771, 'https://ror.org/01gbmsc69', 'en', 1, 'https://ror.org/01gbmsc69 Ulyanovsk State Pedagogical University'),
(89772, 'https://ror.org/03k127966', 'en', 1, 'https://ror.org/03k127966 Orel Regional Academy of Public Administration'),
(89773, 'https://ror.org/044qes116', 'no_lang_code', 1, 'https://ror.org/044qes116 Pedrini (Italy)'),
(89774, 'https://ror.org/03w3jjj23', 'en', 1, 'https://ror.org/03w3jjj23 Peachtree Orthopaedic Clinic'),
(89775, 'https://ror.org/056nhq557', 'no_lang_code', 1, 'https://ror.org/056nhq557 ImpactMedia (Spain)'),
(89776, 'https://ror.org/03501hp09', 'es', 1, 'https://ror.org/03501hp09 Universidad de Ecatepec'),
(89777, 'https://ror.org/02ctmwv42', 'id', 1, 'https://ror.org/02ctmwv42 Universitas Islam Ogan Komering Ilir'),
(89778, 'https://ror.org/024tyzp39', 'no_lang_code', 1, 'https://ror.org/024tyzp39 Gedeon Programmes (France)'),
(89779, 'https://ror.org/02xw19753', 'no_lang_code', 1, 'https://ror.org/02xw19753 BioReka (United States)'),
(89780, 'https://ror.org/02hsggv49', 'en', 1, 'https://ror.org/02hsggv49 Institute for Biomedicine Istituto di Biomedicina'),
(89781, 'https://ror.org/05dqqj338', 'en', 1, 'https://ror.org/05dqqj338 Martin Health System'),
(89782, 'https://ror.org/02p5amq61', 'en', 1, 'https://ror.org/02p5amq61 Everett Company Stage School'),
(89783, 'https://ror.org/01949tn21', 'id', 1, 'https://ror.org/01949tn21 Universitas Veteran Republik Indonesia Makassar'),
(89784, 'https://ror.org/00n9p1n72', 'en', 1, 'https://ror.org/00n9p1n72 Institute of Mountain Emergency Medicine'),
(89785, 'https://ror.org/03rwxa582', 'en', 0, 'https://ror.org/03rwxa582 Biotherapy of Genetic Diseases, Inflammatory Disorders and Cancers BiothƩrapies des Maladies GƩnƩtiques Inflammatoires et Cancers'),
(89786, 'https://ror.org/02t6gq889', 'es', 1, 'https://ror.org/02t6gq889 Instituto de Investigaciones Fisicoquímicas Teóricas y Aplicadas'),
(89787, 'https://ror.org/0495mpa86', 'en', 1, 'https://ror.org/0495mpa86 Afghan Defense University'),
(89788, 'https://ror.org/05x5hj147', 'en', 1, 'https://ror.org/05x5hj147 Technological University Bhamo'),
(89789, 'https://ror.org/03xdvfc72', 'no_lang_code', 1, 'https://ror.org/03xdvfc72 Waves in Solids (United States)'),
(89790, 'https://ror.org/0269ne204', 'en', 1, 'https://ror.org/0269ne204 Miami University Dolibois European Center'),
(89791, 'https://ror.org/00ca8r120', 'es', 1, 'https://ror.org/00ca8r120 Universidad de Postgrado para la Investigación Estratégica en Bolivia'),
(89792, 'https://ror.org/05q5t9h95', 'en', 1, 'https://ror.org/05q5t9h95 Shebin Teaching Hospital'),
(89793, 'https://ror.org/012w3pv65', 'es', 1, 'https://ror.org/012w3pv65 Instituto Catequístico Universidad Católica'),
(89794, 'https://ror.org/00cw10t87', 'no_lang_code', 1, 'https://ror.org/00cw10t87 Monal Group (France)'),
(89795, 'https://ror.org/02gqkey44', 'en', 1, 'https://ror.org/02gqkey44 Church of Saint Abuseridze State University'),
(89796, 'https://ror.org/04vgsa049', 'no_lang_code', 1, 'https://ror.org/04vgsa049 Semantico (United Kingdom)'),
(89797, 'https://ror.org/01n18pd19', 'en', 1, 'https://ror.org/01n18pd19 International Charter School'),
(89798, 'https://ror.org/01j6qvh40', 'en', 1, 'https://ror.org/01j6qvh40 Theological University of Northern Italy'),
(89799, 'https://ror.org/0381ha386', 'no_lang_code', 1, 'https://ror.org/0381ha386 Enterprise Holdings'),
(89800, 'https://ror.org/004p33j95', 'en', 1, 'https://ror.org/004p33j95 Sudanese Universities Information Network'),
(89801, 'https://ror.org/02jqpph54', 'en', 1, 'https://ror.org/02jqpph54 One World University'),
(89802, 'https://ror.org/04dsp3d63', 'en', 1, 'https://ror.org/04dsp3d63 Universal Healthwatch'),
(89803, 'https://ror.org/020hcrc42', 'en', 1, 'https://ror.org/020hcrc42 Spiria Medical'),
(89804, 'https://ror.org/0217r7k24', 'en', 1, 'https://ror.org/0217r7k24 Technological University Loikaw'),
(89805, 'https://ror.org/01q3qwp65', 'fr', 1, 'https://ror.org/01q3qwp65 UniversitƩ de Notre-Dame du Kasai'),
(89806, 'https://ror.org/03kv8xc26', 'en', 1, 'https://ror.org/03kv8xc26 Peterborough and Stamford Hospitals NHS Foundation Trust'),
(89807, 'https://ror.org/04rg5tz65', 'en', 1, 'https://ror.org/04rg5tz65 Mulago School of Nursing and Midwifery'),
(89808, 'https://ror.org/04am0hx79', 'no_lang_code', 1, 'https://ror.org/04am0hx79 United Business Media (Canada)'),
(89809, 'https://ror.org/03gssyp02', 'id', 1, 'https://ror.org/03gssyp02 Universitas Kejuangan 45 Jakarta'),
(89810, 'https://ror.org/02vxa7b29', 'en', 1, 'https://ror.org/02vxa7b29 Canadian University Society for Intercollegiate Debate'),
(89811, 'https://ror.org/05f262r88', 'en', 1, 'https://ror.org/05f262r88 University System of Maryland at Hagerstown'),
(89812, 'https://ror.org/04cyg7v24', 'es', 1, 'https://ror.org/04cyg7v24 Universidad Hispanoamericana'),
(89813, 'https://ror.org/007jb8237', 'no_lang_code', 1, 'https://ror.org/007jb8237 ATAF (Italy)'),
(89814, 'https://ror.org/05359f550', 'en', 1, 'https://ror.org/05359f550 Ild Care Foundation'),
(89815, 'https://ror.org/04a224m58', 'en', 1, 'https://ror.org/04a224m58 Brackley Community Hospital'),
(89816, 'https://ror.org/00wc35a22', 'no_lang_code', 1, 'https://ror.org/00wc35a22 EurActiv'),
(89817, 'https://ror.org/04vkn3s98', 'it', 1, 'https://ror.org/04vkn3s98 Centro Universale del Bel Canto'),
(89818, 'https://ror.org/05y0y3z70', 'no_lang_code', 1, 'https://ror.org/05y0y3z70 Interventi Geo Ambientali (Italy)'),
(89819, 'https://ror.org/043zw2312', 'en', 1, 'https://ror.org/043zw2312 Ministry of the Brussels-Capital Region'),
(89820, 'https://ror.org/03nr4p796', 'en', 1, 'https://ror.org/03nr4p796 Cariam Health'),
(89821, 'https://ror.org/02aqr8687', 'fr', 0, 'https://ror.org/02aqr8687 Laboratoire de Biologie Cellulaire et MolƩculaire du ContrƓle de la ProlifƩration'),
(89822, 'https://ror.org/03m558m37', 'en', 1, 'https://ror.org/03m558m37 University of Pedagogical Sciences'),
(89823, 'https://ror.org/054vpsz16', 'no_lang_code', 1, 'https://ror.org/054vpsz16 Mott MacDonald (United Kingdom)'),
(89824, 'https://ror.org/03w9d5h80', 'no_lang_code', 1, 'https://ror.org/03w9d5h80 AC Diagnostics (United States)'),
(89825, 'https://ror.org/02c4wkv71', 'es', 1, 'https://ror.org/02c4wkv71 Universidad Cristiana del Sur'),
(89826, 'https://ror.org/04f7q6293', 'en', 1, 'https://ror.org/04f7q6293 Teaching University European Academy'),
(89827, 'https://ror.org/05ap9ze55', 'en', 1, 'https://ror.org/05ap9ze55 Queensland Self-Management Alliance'),
(89828, 'https://ror.org/04102x488', 'no_lang_code', 1, 'https://ror.org/04102x488 Rominster (Cyprus)'),
(89829, 'https://ror.org/05en1rc60', 'id', 1, 'https://ror.org/05en1rc60 Universitas Kristen Palangkaraya'),
(89830, 'https://ror.org/011gzwz34', 'no_lang_code', 1, 'https://ror.org/011gzwz34 MiniSun (United States)'),
(89831, 'https://ror.org/01cjhww87', 'no_lang_code', 1, 'https://ror.org/01cjhww87 CATX (United States)'),
(89832, 'https://ror.org/04fptm728', 'no_lang_code', 1, 'https://ror.org/04fptm728 European Framework Program Consulting (United Kingdom)'),
(89833, 'https://ror.org/00sqvqq59', 'no_lang_code', 1, 'https://ror.org/00sqvqq59 Areta International (Italy)'),
(89834, 'https://ror.org/027snw288', 'es', 1, 'https://ror.org/027snw288 Universidad Pedagógica de Pinar del Río Rafael María de Mendive'),
(89835, 'https://ror.org/04gqegw98', 'en', 1, 'https://ror.org/04gqegw98 Higher School of Privatization and Entrepreneurship'),
(89836, 'https://ror.org/0117z7d66', 'es', 1, 'https://ror.org/0117z7d66 Centro de Investigaciones en Tecnologia de Pinturas'),
(89837, 'https://ror.org/03kb2jw75', 'en', 1, 'https://ror.org/03kb2jw75 Beijing Climate Center å›½å®¶ę°”å€™äø­åæƒ'),
(89838, 'https://ror.org/0311h6702', 'no_lang_code', 1, 'https://ror.org/0311h6702 Nuance Communications (United States)'),
(89839, 'https://ror.org/03bwkvb92', 'es', 1, 'https://ror.org/03bwkvb92 Universidad Americana'),
(89840, 'https://ror.org/040ss6920', 'en', 0, 'https://ror.org/040ss6920 Beaumont Hospital'),
(89841, 'https://ror.org/017gh2t49', 'es', 1, 'https://ror.org/017gh2t49 Centro de Estudios Tecnológicos y Universitarios del Golfo'),
(89842, 'https://ror.org/05fvszr38', 'es', 1, 'https://ror.org/05fvszr38 Instituto de GenƩtica Veterinaria'),
(89843, 'https://ror.org/025xxgk48', 'cs', 1, 'https://ror.org/025xxgk48 Sdružení Pro Rozvoj Moravskoslezského Kraje'),
(89844, 'https://ror.org/050z03n93', 'en', 1, 'https://ror.org/050z03n93 Kharkiv National Kotlyarevsky University of Arts'),
(89845, 'https://ror.org/01atvfx83', 'en', 1, 'https://ror.org/01atvfx83 Hung Vuong University of Ho Chi Minh City'),
(89846, 'https://ror.org/01b39y289', 'no_lang_code', 1, 'https://ror.org/01b39y289 Apintech (Greece)'),
(89847, 'https://ror.org/03s6n4r12', 'no_lang_code', 1, 'https://ror.org/03s6n4r12 Croatian Biospeleological Society Hrvatsko biospeleoloŔko druŔtvo'),
(89848, 'https://ror.org/044267y73', 'no_lang_code', 1, 'https://ror.org/044267y73 Voestalpine (Sweden)'),
(89849, 'https://ror.org/039twdk76', 'en', 1, 'https://ror.org/039twdk76 Disability Practice Institute'),
(89850, 'https://ror.org/023a3sx48', 'ro', 1, 'https://ror.org/023a3sx48 Universitatea Mihae Eminescu Timisoara'),
(89851, 'https://ror.org/04gfcm466', 'no_lang_code', 1, 'https://ror.org/04gfcm466 Clear Hat Consulting (United States)'),
(89852, 'https://ror.org/023cthn35', 'es', 1, 'https://ror.org/023cthn35 Universidad IndĆ­gena de Venezuela'),
(89853, 'https://ror.org/00mqmdj27', 'no_lang_code', 1, 'https://ror.org/00mqmdj27 Solaris Bus & Coach (Poland)'),
(89854, 'https://ror.org/02qx3jt37', 'en', 1, 'https://ror.org/02qx3jt37 European Bureau of Library, Information and Documentation Associations'),
(89855, 'https://ror.org/0058xky36', 'en', 1, 'https://ror.org/0058xky36 Wachemo University'),
(89856, 'https://ror.org/011n96f14', 'en', 1, 'https://ror.org/011n96f14 Bjerknes Centre for Climate Research Bjerknessenteret for klimaforskning'),
(89857, 'https://ror.org/00mstfs17', 'en', 1, 'https://ror.org/00mstfs17 North Lochs Historical Society'),
(89858, 'https://ror.org/04dshyk09', 'no_lang_code', 1, 'https://ror.org/04dshyk09 Georex (France)'),
(89859, 'https://ror.org/03ed4e029', 'en', 1, 'https://ror.org/03ed4e029 Technological University Maubin'),
(89860, 'https://ror.org/035gvza09', 'no_lang_code', 1, 'https://ror.org/035gvza09 Axion Therapeutics (United States)'),
(89861, 'https://ror.org/00pvw7511', 'no_lang_code', 1, 'https://ror.org/00pvw7511 Unidost (Austria)'),
(89862, 'https://ror.org/02w459h37', 'no_lang_code', 1, 'https://ror.org/02w459h37 Sovremennyi Gomunitarnyi University'),
(89863, 'https://ror.org/04efb0644', 'no_lang_code', 1, 'https://ror.org/04efb0644 Isos Housing (United Kingdom)'),
(89864, 'https://ror.org/042njnk14', 'no_lang_code', 1, 'https://ror.org/042njnk14 Nasertic (Spain)'),
(89865, 'https://ror.org/04trrf763', 'es', 1, 'https://ror.org/04trrf763 Universidad Tecnológica de Sinaloa'),
(89866, 'https://ror.org/007wh4e50', 'fr', 0, 'https://ror.org/007wh4e50 Centre de SpectromƩtrie NuclƩaire et de SpectromƩtrie de Masse'),
(89867, 'https://ror.org/00wtvt142', 'en', 1, 'https://ror.org/00wtvt142 Koryo Songgyungwan University 고려성균꓀'),
(89868, 'https://ror.org/01hf1t666', 'en', 1, 'https://ror.org/01hf1t666 Moscow Open Social University'),
(89869, 'https://ror.org/018gn0t60', 'en', 1, 'https://ror.org/018gn0t60 Indian Institute of Management Rohtak'),
(89870, 'https://ror.org/01ee7vw96', 'en', 1, 'https://ror.org/01ee7vw96 Villa Maria School'),
(89871, 'https://ror.org/03053v606', 'en', 1, 'https://ror.org/03053v606 National Institute of Telecommunications'),
(89872, 'https://ror.org/057vq1a33', 'es', 1, 'https://ror.org/057vq1a33 Centro Universitario del Oriente de Hidalgo'),
(89873, 'https://ror.org/04hmsv365', 'en', 1, 'https://ror.org/04hmsv365 Technological University Myeik'),
(89874, 'https://ror.org/0160prf97', 'no_lang_code', 1, 'https://ror.org/0160prf97 Edge Foundation'),
(89875, 'https://ror.org/02hhy3909', 'no_lang_code', 1, 'https://ror.org/02hhy3909 Research Institute of Bast Fibres (Czechia)'),
(89876, 'https://ror.org/052c3jb45', 'es', 1, 'https://ror.org/052c3jb45 Centro Universitario de Bienestar Rural'),
(89877, 'https://ror.org/04cfxct26', 'en', 1, 'https://ror.org/04cfxct26 Crest Middle School'),
(89878, 'https://ror.org/026j6fv33', 'en', 1, 'https://ror.org/026j6fv33 Cixian People''s Hospital'),
(89879, 'https://ror.org/03h14v698', 'no_lang_code', 1, 'https://ror.org/03h14v698 Boston De Novo Design (United States)'),
(89880, 'https://ror.org/01jmh2048', 'no_lang_code', 1, 'https://ror.org/01jmh2048 Hanmin University ķ•œėÆ¼ķ•™źµ'),
(89881, 'https://ror.org/05f1vtb90', 'fr', 1, 'https://ror.org/05f1vtb90 Institut Universitaire Polytechnique de Mongo'),
(89882, 'https://ror.org/02t26g637', 'en', 1, 'https://ror.org/02t26g637 Leibniz Institute of Ecological Urban and Regional Development Leibniz-Institut für ökologische Raumentwicklung'),
(89883, 'https://ror.org/02zphgp70', 'fr', 0, 'https://ror.org/02zphgp70 REseau NAtional de Rpe interDisciplinaire'),
(89884, 'https://ror.org/00jd71216', 'en', 1, 'https://ror.org/00jd71216 Islamic Azad University of Majlesi دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد علامه Ł…Ų¬Ł„Ų³ŪŒ'),
(89885, 'https://ror.org/04g9wva49', 'es', 1, 'https://ror.org/04g9wva49 Corporación Universitaria de Ciencias Empresariales, Educación y Salud como proyecto Institucional'),
(89886, 'https://ror.org/01fqx5d30', 'es', 1, 'https://ror.org/01fqx5d30 Universidad Ateneo de Monterrey'),
(89887, 'https://ror.org/028dpnn69', 'no_lang_code', 1, 'https://ror.org/028dpnn69 Al Invest (Czechia)'),
(89888, 'https://ror.org/05p17m418', 'en', 1, 'https://ror.org/05p17m418 Babel University Professional School of Translation'),
(89889, 'https://ror.org/04jt7y777', 'en', 1, 'https://ror.org/04jt7y777 Technological University, Taunggyi'),
(89890, 'https://ror.org/04v21mm27', 'es', 1, 'https://ror.org/04v21mm27 Universidad Quetzalcóatl'),
(89891, 'https://ror.org/03zp9mq15', 'en', 1, 'https://ror.org/03zp9mq15 International Oil and Gas University Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефти Šø газа'),
(89892, 'https://ror.org/02wfaf751', 'es', 1, 'https://ror.org/02wfaf751 Universidad Privada Del Chaco'),
(89893, 'https://ror.org/0094nqb38', 'en', 1, 'https://ror.org/0094nqb38 Academe of Grassland And Animal Science äŗ‘å—ēœč‰åœ°åŠØē‰©ē§‘å­¦ē ”ē©¶é™¢'),
(89894, 'https://ror.org/03z6t2w50', 'no_lang_code', 1, 'https://ror.org/03z6t2w50 Clothing Textile & Fibre Technology Development (Greece)'),
(89895, 'https://ror.org/021f6nx58', 'fr', 0, 'https://ror.org/021f6nx58 Laboratoire de Neurosciences IntƩgratives et Adaptatives'),
(89896, 'https://ror.org/04x99xv31', 'en', 0, 'https://ror.org/04x99xv31 Stoas Hogeschool Stoas University of Applied Sciences'),
(89897, 'https://ror.org/01wby8r23', 'en', 1, 'https://ror.org/01wby8r23 Hara University'),
(89898, 'https://ror.org/04hj58z87', 'no_lang_code', 1, 'https://ror.org/04hj58z87 Hanita Coatings (Israel)'),
(89899, 'https://ror.org/0208tyb13', 'es', 1, 'https://ror.org/0208tyb13 Universidad Peruana Simón Bolívar'),
(89900, 'https://ror.org/04z3afh10', 'es', 1, 'https://ror.org/04z3afh10 Instituto Nacional de CancerologĆ­a'),
(89901, 'https://ror.org/02ps9at23', 'no_lang_code', 1, 'https://ror.org/02ps9at23 The Coatinc Company (Netherlands)'),
(89902, 'https://ror.org/05qnkj795', 'fr', 1, 'https://ror.org/05qnkj795 UniversitƩ Cardinal Malula'),
(89903, 'https://ror.org/04r54nf64', 'no_lang_code', 1, 'https://ror.org/04r54nf64 Knowledge Networking Solutions (Greece)'),
(89904, 'https://ror.org/053xn4v04', 'en', 1, 'https://ror.org/053xn4v04 International Center for Quantum-field Measurement Systems for Studies of the Universe and Particles é‡å­å “čØˆęø¬ć‚·ć‚¹ćƒ†ćƒ å›½éš›ę‹ ē‚¹'),
(89905, 'https://ror.org/022v2jn96', 'no_lang_code', 1, 'https://ror.org/022v2jn96 J2 Light (United States)'),
(89906, 'https://ror.org/05ggtew11', 'no_lang_code', 1, 'https://ror.org/05ggtew11 PharmAgra Labs (United States)'),
(89907, 'https://ror.org/03wx9te92', 'no_lang_code', 1, 'https://ror.org/03wx9te92 Prevent Safety (Austria)'),
(89908, 'https://ror.org/02q83se13', 'no_lang_code', 1, 'https://ror.org/02q83se13 Instituttet for Anvendt Datateknik (Denmark)'),
(89909, 'https://ror.org/03w8mg215', 'no_lang_code', 1, 'https://ror.org/03w8mg215 Buddhasravaka Bhiksu University'),
(89910, 'https://ror.org/02vpsdb40', 'en', 1, 'https://ror.org/02vpsdb40 New York University Shanghai 上海纽约大学'),
(89911, 'https://ror.org/011s5rx78', 'en', 1, 'https://ror.org/011s5rx78 Minu-Sepehr Aerospace University'),
(89912, 'https://ror.org/0140fyd18', 'en', 1, 'https://ror.org/0140fyd18 Science and Information Organization'),
(89913, 'https://ror.org/01bwv1z56', 'en', 1, 'https://ror.org/01bwv1z56 North Asheboro Middle School'),
(89914, 'https://ror.org/034zsgp43', 'no_lang_code', 1, 'https://ror.org/034zsgp43 Fenris Technologies (United States)'),
(89915, 'https://ror.org/00sjnnb19', 'fr', 1, 'https://ror.org/00sjnnb19 Ɖcole Nationale d''Administration et de Magistrature'),
(89916, 'https://ror.org/02772kk97', 'en', 1, 'https://ror.org/02772kk97 Japan Meteorological Agency 気豔庁'),
(89917, 'https://ror.org/00zfsm297', 'no_lang_code', 1, 'https://ror.org/00zfsm297 Ollo group (Lithuania)'),
(89918, 'https://ror.org/02h503d38', 'es', 1, 'https://ror.org/02h503d38 Ministerio de Ciencia, Tecnología e Innovación'),
(89919, 'https://ror.org/03xzda142', 'en', 1, 'https://ror.org/03xzda142 Shanghai American School äøŠęµ·ē¾Žå›½å­¦ę ”'),
(89920, 'https://ror.org/00adw3v80', 'no_lang_code', 1, 'https://ror.org/00adw3v80 Ɖditions L''Harmattan (France)'),
(89921, 'https://ror.org/056q6p894', 'en', 1, 'https://ror.org/056q6p894 Jagadguru Ramanandacharya Rajasthan Sanskrit University ą¤œą¤—ą¤¦ą„ą¤—ą„ą¤°ą„ ą¤°ą¤¾ą¤®ą¤¾ą¤Øą¤Øą„ą¤¦ą¤¾ą¤šą¤¾ą¤°ą„ą¤Æ ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(89922, 'https://ror.org/04ew43640', 'en', 1, 'https://ror.org/04ew43640 Center for Excellence in Molecular Plant Sciences å‘½ē§‘å­¦ē ”ē©¶é™¢åˆ†å­ę¤ē‰©ē§‘å­¦å“č¶Šåˆ›ę–°äø­åæƒ'),
(89923, 'https://ror.org/004mzjh28', 'en', 1, 'https://ror.org/004mzjh28 Daughters of Charity Health System'),
(89924, 'https://ror.org/0513rwv17', 'fr', 0, 'https://ror.org/0513rwv17 Triangle de la Physique'),
(89925, 'https://ror.org/02ct41845', 'fr', 0, 'https://ror.org/02ct41845 Centre d''Investigation Clinique de Nantes'),
(89926, 'https://ror.org/013n0gz40', 'en', 1, 'https://ror.org/013n0gz40 Indiana Christian University'),
(89927, 'https://ror.org/00v27bc16', 'no_lang_code', 1, 'https://ror.org/00v27bc16 Functional Coating Technology (United States)'),
(89928, 'https://ror.org/034y0z725', 'en', 1, 'https://ror.org/034y0z725 Hai phong University Of Medicine and Pharmacy'),
(89929, 'https://ror.org/04v00hx51', 'es', 1, 'https://ror.org/04v00hx51 Centro Universitario de Dirección Empresarial y de Negocios'),
(89930, 'https://ror.org/02tc2qe44', 'en', 1, 'https://ror.org/02tc2qe44 General Hospital of Rhodes Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī”ĻŒĪ“ĪæĻ…'),
(89931, 'https://ror.org/0537pxd79', 'no_lang_code', 1, 'https://ror.org/0537pxd79 Adventium Labs (United States)'),
(89932, 'https://ror.org/02me97413', 'en', 1, 'https://ror.org/02me97413 Northeast Iowa Community College'),
(89933, 'https://ror.org/0134qm052', 'no_lang_code', 1, 'https://ror.org/0134qm052 BioSyntha Technology (United Kingdom)'),
(89934, 'https://ror.org/03fgt5a62', 'fr', 0, 'https://ror.org/03fgt5a62 Laboratoire de Glaciologie et GĆ©ophysique de l’Environnement'),
(89935, 'https://ror.org/001jx2139', 'ca', 1, 'https://ror.org/001jx2139 Hospital Sant Joan de DĆ©u Barcelona Sant Joan de DĆ©u-Barcelona Children’s Hospital'),
(89936, 'https://ror.org/00sa58r90', 'en', 1, 'https://ror.org/00sa58r90 IgarapƩ Institute Instituto IgarapƩ'),
(89937, 'https://ror.org/028atc283', 'fr', 0, 'https://ror.org/028atc283 Management et Ɖconomie Lyon Saint-Ɖtienne'),
(89938, 'https://ror.org/00er56532', 'en', 1, 'https://ror.org/00er56532 Trinity Health Ann Arbor Hospital'),
(89939, 'https://ror.org/01ky8b097', 'en', 0, 'https://ror.org/01ky8b097 Food Process Engineering and Microbiology GƩnie et Microbiologie des ProcƩdƩs Alimentaires'),
(89940, 'https://ror.org/01e5pnf26', 'en', 1, 'https://ror.org/01e5pnf26 College of Accounting'),
(89941, 'https://ror.org/056nhze38', 'en', 1, 'https://ror.org/056nhze38 University of August 17, 1945 Banyuwangi'),
(89942, 'https://ror.org/04742pk47', 'en', 1, 'https://ror.org/04742pk47 Baghlan University دانؓگاه بغلان'),
(89943, 'https://ror.org/05n2c8735', 'en', 1, 'https://ror.org/05n2c8735 European Genomic Institute for Diabetes'),
(89944, 'https://ror.org/04mh3wq56', 'no_lang_code', 1, 'https://ror.org/04mh3wq56 Altakitin (Portugal)'),
(89945, 'https://ror.org/01hg1m326', 'en', 1, 'https://ror.org/01hg1m326 Parkside Hospital'),
(89946, 'https://ror.org/02ybcvv09', 'en', 1, 'https://ror.org/02ybcvv09 Technological University Lashio'),
(89947, 'https://ror.org/044e62w43', 'en', 1, 'https://ror.org/044e62w43 Newport News Public Library System'),
(89948, 'https://ror.org/0466y6p74', 'fr', 0, 'https://ror.org/0466y6p74 Le Laboratoire d''IngƩnierie OstƩo-Articulaire et Dentaire'),
(89949, 'https://ror.org/04bky6g25', 'en', 0, 'https://ror.org/04bky6g25 Serine Proteases and Pathophysiology of the neurovascular Unit SƩrine protƩases et physiopathologie de l''unitƩ neurovasculaire'),
(89950, 'https://ror.org/02qeepn83', 'en', 1, 'https://ror.org/02qeepn83 Mining Engineering Bandung Islamic University'),
(89951, 'https://ror.org/04rsgp216', 'en', 1, 'https://ror.org/04rsgp216 James Graham Brown Foundation'),
(89952, 'https://ror.org/026pg9j08', 'en', 1, 'https://ror.org/026pg9j08 Toronto General Hospital'),
(89953, 'https://ror.org/03c598e36', 'no_lang_code', 1, 'https://ror.org/03c598e36 European Framework Program Consulting (Israel)'),
(89954, 'https://ror.org/01b42ky18', 'en', 1, 'https://ror.org/01b42ky18 American University of Leadership'),
(89955, 'https://ror.org/001mj0863', 'en', 1, 'https://ror.org/001mj0863 Ankole Western University'),
(89956, 'https://ror.org/05fxjqz87', 'en', 1, 'https://ror.org/05fxjqz87 Touching Tiny Lives'),
(89957, 'https://ror.org/03ddekf36', 'en', 1, 'https://ror.org/03ddekf36 Al-Khair University');
INSERT INTO `rors` VALUES
(89958, 'https://ror.org/04p8tdq61', 'no_lang_code', 1, 'https://ror.org/04p8tdq61 Prototype Productions (United States)'),
(89959, 'https://ror.org/02mre5m81', 'fr', 1, 'https://ror.org/02mre5m81 Conseil RƩgional de Nouvelle-Aquitaine'),
(89960, 'https://ror.org/0523b6g79', 'en', 1, 'https://ror.org/0523b6g79 Dalian Ocean University å¤§čæžęµ·ę“‹å¤§å­¦'),
(89961, 'https://ror.org/015th0q50', 'en', 1, 'https://ror.org/015th0q50 Nansen International Environmental and Remote Sensing Center'),
(89962, 'https://ror.org/03ck9wz82', 'fr', 0, 'https://ror.org/03ck9wz82 Laboratoire Sciences de l''Univers au Cerfacs'),
(89963, 'https://ror.org/036w7n407', 'no_lang_code', 1, 'https://ror.org/036w7n407 Best Theratronics (Canada)'),
(89964, 'https://ror.org/034y7w267', 'es', 1, 'https://ror.org/034y7w267 Universidad Tecnológico de Baja California'),
(89965, 'https://ror.org/02etsyv71', 'en', 1, 'https://ror.org/02etsyv71 Russian Economic University after G.V. Plekhanov Российский ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š“.Š’. ŠŸŠ»ŠµŃ…Š°Š½Š¾Š²Š°'),
(89966, 'https://ror.org/016pfse95', 'fr', 0, 'https://ror.org/016pfse95 Neurobiologie de l''Olfaction et ModƩlisation en Imagerie'),
(89967, 'https://ror.org/045bzvb60', 'fr', 0, 'https://ror.org/045bzvb60 Sciences en SociƩtƩ'),
(89968, 'https://ror.org/037zk5p77', 'en', 1, 'https://ror.org/037zk5p77 University of Houston System at Cinco Ranch'),
(89969, 'https://ror.org/059n1d175', 'ca', 1, 'https://ror.org/059n1d175 Hospital de Sant Pau Hospital of the Holy Cross and Saint Paul'),
(89970, 'https://ror.org/00ctsa544', 'en', 1, 'https://ror.org/00ctsa544 Princess Margaret Cancer Foundation'),
(89971, 'https://ror.org/01ef2d351', 'en', 1, 'https://ror.org/01ef2d351 Lebanese International University of Mauritania UniversitƩ libanaise internationale en mauritanie'),
(89972, 'https://ror.org/05ecjav59', 'fr', 1, 'https://ror.org/05ecjav59 UniversitƩ Professionnelle d''Afrique'),
(89973, 'https://ror.org/021bqge38', 'en', 1, 'https://ror.org/021bqge38 St. Mary''s University in Juba'),
(89974, 'https://ror.org/01k9ww978', 'es', 1, 'https://ror.org/01k9ww978 Universidad Continental Justo Sierra'),
(89975, 'https://ror.org/00xc48n06', 'en', 1, 'https://ror.org/00xc48n06 MedicalOne Market Research'),
(89976, 'https://ror.org/00e9d4655', 'no_lang_code', 1, 'https://ror.org/00e9d4655 Icon Process Systems (United Kingdom)'),
(89977, 'https://ror.org/00b3wxb81', 'en', 1, 'https://ror.org/00b3wxb81 South Dakota Public Universities and Research Center'),
(89978, 'https://ror.org/030sa8630', 'en', 1, 'https://ror.org/030sa8630 Jinja District Health Directorate'),
(89979, 'https://ror.org/021k8f904', 'es', 1, 'https://ror.org/021k8f904 Universidad Paccioli de Córdoba'),
(89980, 'https://ror.org/0083yee78', 'en', 1, 'https://ror.org/0083yee78 Shota Meskhia State Teaching University of Zugdidi'),
(89981, 'https://ror.org/022mm5v69', 'en', 1, 'https://ror.org/022mm5v69 Northwestern University Settlement Association'),
(89982, 'https://ror.org/00yebwb79', 'es', 1, 'https://ror.org/00yebwb79 Universidad Privada Sergio Bernales'),
(89983, 'https://ror.org/05cezsp67', 'en', 1, 'https://ror.org/05cezsp67 Love Your Breasts'),
(89984, 'https://ror.org/00j6szp87', 'fr', 0, 'https://ror.org/00j6szp87 Centre de Recherche d''Histoire Quantitative'),
(89985, 'https://ror.org/00mxvjp83', 'fr', 0, 'https://ror.org/00mxvjp83 Laboratoire Francis Perrin'),
(89986, 'https://ror.org/02jwef888', 'no_lang_code', 1, 'https://ror.org/02jwef888 Voestalpine (Germany)'),
(89987, 'https://ror.org/0051k4p26', 'en', 1, 'https://ror.org/0051k4p26 Sanaag University of Science and Technology'),
(89988, 'https://ror.org/03vgrpt42', 'es', 1, 'https://ror.org/03vgrpt42 Universidad St. John''s'),
(89989, 'https://ror.org/02qcnva43', 'en', 1, 'https://ror.org/02qcnva43 Autism Consortium'),
(89990, 'https://ror.org/005jv5x16', 'id', 1, 'https://ror.org/005jv5x16 Universitas Mayjen Sungkono'),
(89991, 'https://ror.org/03jyx2r39', 'no_lang_code', 1, 'https://ror.org/03jyx2r39 TDL Sensors (United Kingdom)'),
(89992, 'https://ror.org/0107ygt22', 'en', 1, 'https://ror.org/0107ygt22 Bronx-Lebanon Hospital Center'),
(89993, 'https://ror.org/00xcz8739', 'en', 1, 'https://ror.org/00xcz8739 Orenburg Municipal Higher College of Humanities and Natural Sciences'),
(89994, 'https://ror.org/01xyp9n09', 'en', 1, 'https://ror.org/01xyp9n09 Department of Health Services'),
(89995, 'https://ror.org/04jpr8986', 'es', 1, 'https://ror.org/04jpr8986 Universidad Latinoamericana de Comercio Exterior'),
(89996, 'https://ror.org/04zv0pf29', 'en', 1, 'https://ror.org/04zv0pf29 Private University of Science and Arts Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŁŁ†ŁˆŁ†'),
(89997, 'https://ror.org/01tfttw56', 'no_lang_code', 0, 'https://ror.org/01tfttw56 StromaLab'),
(89998, 'https://ror.org/03qv8yq19', 'en', 1, 'https://ror.org/03qv8yq19 Toronto Western Hospital'),
(89999, 'https://ror.org/04j2dcn77', 'id', 1, 'https://ror.org/04j2dcn77 Universitas Timbul Nusantara'),
(90000, 'https://ror.org/006z80t96', 'en', 1, 'https://ror.org/006z80t96 Trinity Health'),
(90001, 'https://ror.org/02vtjfj13', 'en', 1, 'https://ror.org/02vtjfj13 Shanghai Theatre Academy äøŠęµ·ęˆå‰§å­¦é™¢'),
(90002, 'https://ror.org/01ghs6t07', 'en', 1, 'https://ror.org/01ghs6t07 Buncombe County Early College'),
(90003, 'https://ror.org/03we0h094', 'no_lang_code', 1, 'https://ror.org/03we0h094 Foresight Science & Technology (United States)'),
(90004, 'https://ror.org/03hspt047', 'en', 1, 'https://ror.org/03hspt047 Melbourne Free University'),
(90005, 'https://ror.org/04y14h557', 'en', 1, 'https://ror.org/04y14h557 Educational University Interpharma Plus'),
(90006, 'https://ror.org/044f6tt30', 'en', 1, 'https://ror.org/044f6tt30 Sandhills Theatre Arts Renaissance School'),
(90007, 'https://ror.org/049er6k75', 'fr', 0, 'https://ror.org/049er6k75 Centre de Recherche sur l’Action Locale'),
(90008, 'https://ror.org/0532dea97', 'en', 1, 'https://ror.org/0532dea97 Fairland University'),
(90009, 'https://ror.org/00jmxvy70', 'fr', 1, 'https://ror.org/00jmxvy70 DƩlƩgation RƩgionale Nord Ouest'),
(90010, 'https://ror.org/01wh3jw63', 'en', 1, 'https://ror.org/01wh3jw63 Shanghai Technical Institute of Electronics & Information äøŠęµ·ē”µå­äæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(90011, 'https://ror.org/00mxe0976', 'en', 1, 'https://ror.org/00mxe0976 Toronto Rehabilitation Institute'),
(90012, 'https://ror.org/04v2bwx37', 'en', 1, 'https://ror.org/04v2bwx37 Direct Health Media'),
(90013, 'https://ror.org/01ta8y947', 'en', 1, 'https://ror.org/01ta8y947 Uttar Pradesh Rajarshi Tandon Open University ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤°ą¤¾ą¤œą¤°ą„ą¤·ą¤æ ą¤Ÿą¤‚ą¤”ą¤Ø ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(90014, 'https://ror.org/02zb4t009', 'en', 1, 'https://ror.org/02zb4t009 Chinese People''s Liberation Army Navy Hospital of Guangzhou'),
(90015, 'https://ror.org/030pf1a09', 'en', 1, 'https://ror.org/030pf1a09 Webster University Orlando'),
(90016, 'https://ror.org/027q9sx94', 'fr', 1, 'https://ror.org/027q9sx94 Universite des Sciences AppliquƩe et Management'),
(90017, 'https://ror.org/03j7jb078', 'en', 1, 'https://ror.org/03j7jb078 Asian Women’s Leadership University'),
(90018, 'https://ror.org/02r5r0c98', 'es', 1, 'https://ror.org/02r5r0c98 Instituto Universitario Centro de Docencia, Investigación e Información en Aprendizaje'),
(90019, 'https://ror.org/01sc1ca25', 'en', 1, 'https://ror.org/01sc1ca25 European Institute for Health Records'),
(90020, 'https://ror.org/006k1jy06', 'en', 1, 'https://ror.org/006k1jy06 Syed Jamaluddin Afghan University دانؓگاه سید جمال Ų§Ł„ŲÆŪŒŁ† افغان'),
(90021, 'https://ror.org/00dfwgz38', 'fr', 0, 'https://ror.org/00dfwgz38 Centre d’études d’agents PathogĆØnes et Biotechnologies Pour la SantĆ©'),
(90022, 'https://ror.org/02nkb2y52', 'en', 1, 'https://ror.org/02nkb2y52 Rozgan University دانؓگاه ارزگان'),
(90023, 'https://ror.org/04k9b1910', 'en', 1, 'https://ror.org/04k9b1910 School for Compassionate Action'),
(90024, 'https://ror.org/05rsyz291', 'es', 1, 'https://ror.org/05rsyz291 Universidad Potosina'),
(90025, 'https://ror.org/014gnqa09', 'en', 1, 'https://ror.org/014gnqa09 Taungoo Technological University'),
(90026, 'https://ror.org/04m72am57', 'es', 1, 'https://ror.org/04m72am57 Universidad Autonoma de Chinandega'),
(90027, 'https://ror.org/02w3v0826', 'fr', 0, 'https://ror.org/02w3v0826 Institut Nanosciences et CryogƩnie'),
(90028, 'https://ror.org/031t68441', 'en', 1, 'https://ror.org/031t68441 Shanghai University of International Business and Economics äøŠęµ·åÆ¹å¤–ē»č“øå¤§å­¦'),
(90029, 'https://ror.org/02qaymn86', 'no_lang_code', 1, 'https://ror.org/02qaymn86 Dolby (Canada)'),
(90030, 'https://ror.org/03z6p6204', 'en', 1, 'https://ror.org/03z6p6204 Christian University of the Americas'),
(90031, 'https://ror.org/01zxpj864', 'en', 1, 'https://ror.org/01zxpj864 Kim Il-Sung Military University ź¹€ģ¼ģ„±źµ°ģ‚¬ģ¢…ķ•©ėŒ€ķ•™'),
(90032, 'https://ror.org/01zhg1x17', 'pt', 1, 'https://ror.org/01zhg1x17 Instituto Profissional de Canossa - IPDC'),
(90033, 'https://ror.org/050mqhj64', 'es', 1, 'https://ror.org/050mqhj64 Centro Universitario de Chihuahua'),
(90034, 'https://ror.org/01djvck12', 'en', 1, 'https://ror.org/01djvck12 Lutheran Theological University'),
(90035, 'https://ror.org/057vgp054', 'en', 1, 'https://ror.org/057vgp054 Institute for Research in Language Teaching čŖžå­¦ę•™č‚²ē ”ē©¶ę‰€'),
(90036, 'https://ror.org/031gqrq04', 'en', 1, 'https://ror.org/031gqrq04 Meteorological Research Institute 気豔庁気豔研究所'),
(90037, 'https://ror.org/023qdcg29', 'no_lang_code', 1, 'https://ror.org/023qdcg29 Airbus (France)'),
(90038, 'https://ror.org/03qryrx52', 'en', 1, 'https://ror.org/03qryrx52 Argentine Atlantis University'),
(90039, 'https://ror.org/03q020w70', 'fr', 0, 'https://ror.org/03q020w70 Biologie Structurale des Processus Cellulaires et des Agents Infectieux'),
(90040, 'https://ror.org/0308j5838', 'en', 1, 'https://ror.org/0308j5838 Nordic Cancer Union'),
(90041, 'https://ror.org/00mc0t412', 'no_lang_code', 1, 'https://ror.org/00mc0t412 Excelitas Technologies (United Kingdom)'),
(90042, 'https://ror.org/0217jep24', 'en', 1, 'https://ror.org/0217jep24 Islamic American University'),
(90043, 'https://ror.org/03ga8q162', 'no_lang_code', 1, 'https://ror.org/03ga8q162 Festo (Germany)'),
(90044, 'https://ror.org/04rpeeg31', 'pt', 1, 'https://ror.org/04rpeeg31 Escola Superior de Tecnologias e Artes de Lisboa'),
(90045, 'https://ror.org/05p6vdy67', 'es', 1, 'https://ror.org/05p6vdy67 Instituto Multidisciplinario de BiologĆ­a Celular'),
(90046, 'https://ror.org/05pyptt64', 'no_lang_code', 1, 'https://ror.org/05pyptt64 Tbilisi University Metekhi'),
(90047, 'https://ror.org/04hn3c767', 'es', 1, 'https://ror.org/04hn3c767 Universidad Humanitas'),
(90048, 'https://ror.org/00yqqb480', 'en', 1, 'https://ror.org/00yqqb480 Nationaal Regieorgaan Onderwijsonderzoek National Initiative for Education Research'),
(90049, 'https://ror.org/013m0ac37', 'no_lang_code', 1, 'https://ror.org/013m0ac37 IIE MSA'),
(90050, 'https://ror.org/05414cz60', 'en', 1, 'https://ror.org/05414cz60 Cincinnati Foundation for Biomedical Research and Education'),
(90051, 'https://ror.org/033k8y986', 'es', 1, 'https://ror.org/033k8y986 Centro de Estudios Tecnológicos y Universitarios'),
(90052, 'https://ror.org/0564nbm83', 'no_lang_code', 1, 'https://ror.org/0564nbm83 Smd Informatic (Portugal)'),
(90053, 'https://ror.org/04tr4t037', 'en', 1, 'https://ror.org/04tr4t037 Technological University Meiktila'),
(90054, 'https://ror.org/004jrp527', 'no_lang_code', 1, 'https://ror.org/004jrp527 Monguz Information Technology Ltd. (Hungary) Monguz InformÔciótechnológiai Kft.'),
(90055, 'https://ror.org/04sk34n56', 'no_lang_code', 1, 'https://ror.org/04sk34n56 Total (France)'),
(90056, 'https://ror.org/03me2hz15', 'en', 1, 'https://ror.org/03me2hz15 Tamil Nadu Horticulture University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®¤ąÆ‹ą®ŸąÆą®Ÿą®•ąÆą®•ą®²ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(90057, 'https://ror.org/03vmn1898', 'en', 1, 'https://ror.org/03vmn1898 NOAA Geophysical Fluid Dynamics Laboratory'),
(90058, 'https://ror.org/039rrhm35', 'no_lang_code', 1, 'https://ror.org/039rrhm35 Carling Point (United Kingdom)'),
(90059, 'https://ror.org/00gj61d63', 'en', 1, 'https://ror.org/00gj61d63 Livingston Public Schools'),
(90060, 'https://ror.org/016gvpq28', 'fr', 0, 'https://ror.org/016gvpq28 Alimentation et Sciences Sociales'),
(90061, 'https://ror.org/04eqd3f31', 'id', 1, 'https://ror.org/04eqd3f31 Universitas Teknologi Indonesia'),
(90062, 'https://ror.org/03vd9m155', 'no_lang_code', 1, 'https://ror.org/03vd9m155 Biocon (United States)'),
(90063, 'https://ror.org/05y9zc593', 'es', 1, 'https://ror.org/05y9zc593 Universidad San Anselmo de Canterbury'),
(90064, 'https://ror.org/01ddq0t66', 'ro', 1, 'https://ror.org/01ddq0t66 Universitatea Romano-Germana din Sibiu'),
(90065, 'https://ror.org/050yczr54', 'no_lang_code', 1, 'https://ror.org/050yczr54 Garmin (Germany)'),
(90066, 'https://ror.org/03ns6aq57', 'en', 1, 'https://ror.org/03ns6aq57 Shanghai University of Medicine and Health Sciences äøŠęµ·å„åŗ·åŒ»å­¦é™¢'),
(90067, 'https://ror.org/01kdszv50', 'es', 1, 'https://ror.org/01kdszv50 Centro de Estudios Universitarios Adolfo López Mateos'),
(90068, 'https://ror.org/00pvepa48', 'no_lang_code', 1, 'https://ror.org/00pvepa48 BioGene (United Kingdom)'),
(90069, 'https://ror.org/01pmj6109', 'en', 1, 'https://ror.org/01pmj6109 Foundation for the Development of Ophthalmology Fundacja Wspierania Rozwoju Okulistyki "Okulistyka 21"'),
(90070, 'https://ror.org/03k3vst68', 'en', 1, 'https://ror.org/03k3vst68 Foundation for Healthcare Advancement'),
(90071, 'https://ror.org/01x9dd012', 'en', 1, 'https://ror.org/01x9dd012 Bovey Tracey Hospital'),
(90072, 'https://ror.org/02crtj003', 'no_lang_code', 1, 'https://ror.org/02crtj003 Eden’s Bowl (United States)'),
(90073, 'https://ror.org/04hj4ye31', 'en', 1, 'https://ror.org/04hj4ye31 Khorugh State University Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии Š„Š¾Ń€ŃƒŅ“ ба номи М. ŠŠ°Š·Š°Ń€ŃˆŠ¾ŠµŠ²'),
(90074, 'https://ror.org/04cefae43', 'en', 1, 'https://ror.org/04cefae43 Federal Department of Justice'),
(90075, 'https://ror.org/01yxw2t10', 'en', 1, 'https://ror.org/01yxw2t10 Florida Ornithological Society'),
(90076, 'https://ror.org/01gea1v36', 'en', 1, 'https://ror.org/01gea1v36 Popular University of Nicaragua'),
(90077, 'https://ror.org/03j2grq76', 'no_lang_code', 1, 'https://ror.org/03j2grq76 L''Harmattan Publishing House, Budapest (Hungary) L’Harmattan Kƶnyvkiadó Kft.'),
(90078, 'https://ror.org/04hzbg791', 'pt', 1, 'https://ror.org/04hzbg791 Instituto Superior de Tecnologias AvanƧadas'),
(90079, 'https://ror.org/02swb7a46', 'en', 1, 'https://ror.org/02swb7a46 High School of Music of Sakha'),
(90080, 'https://ror.org/03z6ceq17', 'en', 1, 'https://ror.org/03z6ceq17 National Nanotechnology Initiative'),
(90081, 'https://ror.org/05aqxbm32', 'es', 1, 'https://ror.org/05aqxbm32 Universidad de Comunicación Avanzada'),
(90082, 'https://ror.org/04yg2r825', 'en', 1, 'https://ror.org/04yg2r825 Migrant Assistance Program Foundation'),
(90083, 'https://ror.org/00h4ewj42', 'en', 1, 'https://ror.org/00h4ewj42 Association of Black Women Historians'),
(90084, 'https://ror.org/02mhav045', 'no_lang_code', 1, 'https://ror.org/02mhav045 Covalent Associates (United States)'),
(90085, 'https://ror.org/04nt6ra73', 'no_lang_code', 1, 'https://ror.org/04nt6ra73 GEO Group (Czechia)'),
(90086, 'https://ror.org/04sgk7z88', 'no_lang_code', 1, 'https://ror.org/04sgk7z88 Immersion (France)'),
(90087, 'https://ror.org/05w2mtm47', 'ro', 1, 'https://ror.org/05w2mtm47 Universitatea Europeană Drăgan'),
(90088, 'https://ror.org/036951752', 'es', 1, 'https://ror.org/036951752 Universidad Cristiana Latinoamericana'),
(90089, 'https://ror.org/03avsjd39', 'en', 1, 'https://ror.org/03avsjd39 Amruta Sinchana Spiritual University'),
(90090, 'https://ror.org/03kp2qt98', 'en', 1, 'https://ror.org/03kp2qt98 Ramakrishna Mission Vivekananda Educational and Research Institute ą¤°ą¤¾ą¤®ą¤•ą„ƒą¤·ą„ą¤£ मिशन ą¤µą¤æą¤µą„‡ą¤•ą¤¾ą¤Øą¤‚ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦°ą¦¾ą¦®ą¦•ą§ƒą¦·ą§ą¦£ মিশন ą¦¬ą¦æą¦¬ą§‡ą¦•ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(90091, 'https://ror.org/03nm8n513', 'no_lang_code', 1, 'https://ror.org/03nm8n513 Oxford Photovoltaics (United Kingdom)'),
(90092, 'https://ror.org/04hcdse87', 'es', 1, 'https://ror.org/04hcdse87 Instituto Universitario Internacional de Toluca'),
(90093, 'https://ror.org/00zdzzf56', 'en', 1, 'https://ror.org/00zdzzf56 Chamber of Labour Kammer für Arbeiter und Angestellte'),
(90094, 'https://ror.org/022my8t07', 'fr', 0, 'https://ror.org/022my8t07 Laboratoire d’Informatique Fondamentale de Marseille'),
(90095, 'https://ror.org/00gzkpd38', 'no_lang_code', 1, 'https://ror.org/00gzkpd38 Custom Interconnect Limited (United Kingdom)'),
(90096, 'https://ror.org/04p8yac25', 'en', 1, 'https://ror.org/04p8yac25 Malopolska Association For Agricultural Extension At The Agricultural University of Cracow'),
(90097, 'https://ror.org/05dzkw846', 'no_lang_code', 1, 'https://ror.org/05dzkw846 Triangle Research and Development Corporation (United States)'),
(90098, 'https://ror.org/00k3smk02', 'es', 1, 'https://ror.org/00k3smk02 Instituto de FisiologĆ­a Vegetal'),
(90099, 'https://ror.org/05qm04q50', 'no_lang_code', 1, 'https://ror.org/05qm04q50 Aptiv (France)'),
(90100, 'https://ror.org/03zxy2q77', 'en', 1, 'https://ror.org/03zxy2q77 Marshfield Clinic'),
(90101, 'https://ror.org/039cajp98', 'en', 1, 'https://ror.org/039cajp98 Touro University Rome'),
(90102, 'https://ror.org/05qtmqh81', 'es', 1, 'https://ror.org/05qtmqh81 Universidad Loyola de AmƩrica'),
(90103, 'https://ror.org/01vzsje31', 'en', 1, 'https://ror.org/01vzsje31 University John of the Cross'),
(90104, 'https://ror.org/01rvge007', 'en', 1, 'https://ror.org/01rvge007 Pennsylvania Elks Home Service Program'),
(90105, 'https://ror.org/04vekey51', 'fr', 0, 'https://ror.org/04vekey51 Institut de Linguistique FranƧaise'),
(90106, 'https://ror.org/01g7yfj48', 'es', 1, 'https://ror.org/01g7yfj48 Liga AtlƩtica Interuniversitaria de Puerto Rico'),
(90107, 'https://ror.org/04brp8f44', 'en', 1, 'https://ror.org/04brp8f44 Runajambi Institute for the Study of Quichua Culture and Health'),
(90108, 'https://ror.org/018gb4016', 'en', 1, 'https://ror.org/018gb4016 Biochemistry Research Institute of La Plata'),
(90109, 'https://ror.org/050k1mp73', 'en', 1, 'https://ror.org/050k1mp73 Khurasan University دانؓگاه خراسان'),
(90110, 'https://ror.org/04cgz2t37', 'no_lang_code', 1, 'https://ror.org/04cgz2t37 AT Sciences (United States)'),
(90111, 'https://ror.org/02gmzy566', 'no_lang_code', 1, 'https://ror.org/02gmzy566 Forum (United States)'),
(90112, 'https://ror.org/050g0ay39', 'no_lang_code', 1, 'https://ror.org/050g0ay39 Interactive Motion Technologies (United States)'),
(90113, 'https://ror.org/0323hgh72', 'no_lang_code', 1, 'https://ror.org/0323hgh72 Ion Beam Applications (France)'),
(90114, 'https://ror.org/025e8m761', 'en', 1, 'https://ror.org/025e8m761 Minnesota State University Student Association'),
(90115, 'https://ror.org/058zxsr17', 'en', 1, 'https://ror.org/058zxsr17 Bolin Centre for Climate Research'),
(90116, 'https://ror.org/01epcny94', 'en', 1, 'https://ror.org/01epcny94 Government of Western Australia Department of Health'),
(90117, 'https://ror.org/04g479c53', 'no_lang_code', 1, 'https://ror.org/04g479c53 OpSaniTx (United States)'),
(90118, 'https://ror.org/02wgt3820', 'en', 1, 'https://ror.org/02wgt3820 Dayton Children''s Hospital'),
(90119, 'https://ror.org/0017d4a72', 'en', 1, 'https://ror.org/0017d4a72 Albuquerque Museum Foundation'),
(90120, 'https://ror.org/02mg3as63', 'en', 1, 'https://ror.org/02mg3as63 Shanghai Academy of Science & Technology äøŠęµ·ē§‘å­¦é™¢'),
(90121, 'https://ror.org/04cvxk565', 'en', 1, 'https://ror.org/04cvxk565 McEwen Stem Cell Institute'),
(90122, 'https://ror.org/02vpd1162', 'en', 1, 'https://ror.org/02vpd1162 Specialist People Foundation'),
(90123, 'https://ror.org/0288wcg94', 'en', 0, 'https://ror.org/0288wcg94 ARC Centre of Excellence for Climate System Science'),
(90124, 'https://ror.org/000q4gm66', 'es', 1, 'https://ror.org/000q4gm66 Institute for Biocomputation and Physics of Complex Systems Instituto de Biocomputación y Física de Sistemas Complejos'),
(90125, 'https://ror.org/05mtjss49', 'en', 0, 'https://ror.org/05mtjss49 Ecology and Ecosystem Health Ɖcologie et santĆ© de l''Ć©cosystĆØme'),
(90126, 'https://ror.org/047cttg96', 'en', 1, 'https://ror.org/047cttg96 British Institute in Eastern Africa'),
(90127, 'https://ror.org/03etaa337', 'no_lang_code', 1, 'https://ror.org/03etaa337 Sparta Systems (United States)'),
(90128, 'https://ror.org/03vpf5j85', 'it', 1, 'https://ror.org/03vpf5j85 InLaser'),
(90129, 'https://ror.org/00yn8ya75', 'en', 1, 'https://ror.org/00yn8ya75 Chuluncayani Adventist University'),
(90130, 'https://ror.org/04ah4mt57', 'en', 1, 'https://ror.org/04ah4mt57 South African School of Motion Picture Medium and Live Performance'),
(90131, 'https://ror.org/030h97456', 'es', 1, 'https://ror.org/030h97456 Universidad Pedagógica Veracruzana'),
(90132, 'https://ror.org/01e9rwk10', 'en', 1, 'https://ror.org/01e9rwk10 Penitentiary Academy of Ukraine ŠŸŠµŠ½Ń–Ń‚ŠµŠ½Ń†Ń–Š°Ń€Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України'),
(90133, 'https://ror.org/04apff558', 'es', 1, 'https://ror.org/04apff558 Universidad Benavente'),
(90134, 'https://ror.org/03ct0te27', 'fr', 0, 'https://ror.org/03ct0te27 Phosphorylation de protƩines et Pathologies Humaines'),
(90135, 'https://ror.org/04mndkp04', 'en', 1, 'https://ror.org/04mndkp04 International University & Polytechnic of Benin'),
(90136, 'https://ror.org/0584zvc19', 'no_lang_code', 1, 'https://ror.org/0584zvc19 Proteovista (United States)'),
(90137, 'https://ror.org/0433bf015', 'no_lang_code', 1, 'https://ror.org/0433bf015 Inanovate (United Kingdom)'),
(90138, 'https://ror.org/0571arb76', 'en', 1, 'https://ror.org/0571arb76 Informa Healthcare'),
(90139, 'https://ror.org/05pyptk85', 'en', 1, 'https://ror.org/05pyptk85 Linda Vista University Universidad Linda Vista'),
(90140, 'https://ror.org/0077rd258', 'en', 1, 'https://ror.org/0077rd258 Trinity Health Livingston Hospital'),
(90141, 'https://ror.org/00nmm3f40', 'en', 1, 'https://ror.org/00nmm3f40 Bhatkhande Music Institute University'),
(90142, 'https://ror.org/05q3scx19', 'en', 1, 'https://ror.org/05q3scx19 Dyersburg State Community College'),
(90143, 'https://ror.org/0502nz745', 'en', 1, 'https://ror.org/0502nz745 Independent Living Resources'),
(90144, 'https://ror.org/00tfsm290', 'en', 1, 'https://ror.org/00tfsm290 Toronto General & Western Hospital Foundation'),
(90145, 'https://ror.org/04hr9rp97', 'es', 1, 'https://ror.org/04hr9rp97 Universidad de Turismo y Ciencias Administrativas'),
(90146, 'https://ror.org/001n36p86', 'en', 1, 'https://ror.org/001n36p86 Meteorologisk institutt Norwegian Meteorological Institute'),
(90147, 'https://ror.org/02whvdc07', 'az', 1, 'https://ror.org/02whvdc07 Bakı Asiya Universiteti'),
(90148, 'https://ror.org/01jmjwt28', 'en', 0, 'https://ror.org/01jmjwt28 Ballarat Health Services'),
(90149, 'https://ror.org/01stkz436', 'en', 1, 'https://ror.org/01stkz436 Parkwood Hospital'),
(90150, 'https://ror.org/03g7nb016', 'en', 1, 'https://ror.org/03g7nb016 Sant Joan de DƩu Research Foundation'),
(90151, 'https://ror.org/05q23fv46', 'en', 1, 'https://ror.org/05q23fv46 American Graduate University'),
(90152, 'https://ror.org/05p2jnd10', 'en', 1, 'https://ror.org/05p2jnd10 Hibernia College'),
(90153, 'https://ror.org/00bvvpy20', 'no_lang_code', 1, 'https://ror.org/00bvvpy20 Dittel Avionik (Germany)'),
(90154, 'https://ror.org/011xkm146', 'es', 1, 'https://ror.org/011xkm146 Centro Universitario De Integracion Humanistico'),
(90155, 'https://ror.org/01vgvj394', 'es', 1, 'https://ror.org/01vgvj394 Fundacion Allende'),
(90156, 'https://ror.org/048agjg30', 'en', 1, 'https://ror.org/048agjg30 Centro Cochrane Iberoamericano Iberoamerican Cochrane Centre'),
(90157, 'https://ror.org/01dp2pa47', 'en', 0, 'https://ror.org/01dp2pa47 Unit of Virus Host Cell Interactions'),
(90158, 'https://ror.org/02h158026', 'fr', 0, 'https://ror.org/02h158026 Institut de Recherche sur les Systèmes Atomiques et Moléculaires Complexes Institute for Systems Research Atomic and Molecular Complexes'),
(90159, 'https://ror.org/05n6g4g57', 'en', 1, 'https://ror.org/05n6g4g57 South Campus Community School'),
(90160, 'https://ror.org/00991e274', 'fr', 0, 'https://ror.org/00991e274 DiffƩrenciation et Communication Neuronale et Neuroendocrine'),
(90161, 'https://ror.org/03kkh3m26', 'en', 1, 'https://ror.org/03kkh3m26 Shanghai Civil Aviation College äøŠęµ·ę°‘čˆŖčŒäøšęŠ€ęœÆå­¦é™¢'),
(90162, 'https://ror.org/05y87jv84', 'no_lang_code', 1, 'https://ror.org/05y87jv84 Berkenhoff (Germany)'),
(90163, 'https://ror.org/04cz3rb18', 'en', 1, 'https://ror.org/04cz3rb18 Western Metropolitan Area University Association é¦–éƒ½åœč„æéƒØå¤§å­¦å˜ä½äŗ’ę›å”å®šä¼š'),
(90164, 'https://ror.org/01at0r091', 'no_lang_code', 1, 'https://ror.org/01at0r091 AvidBiotics (United States)'),
(90165, 'https://ror.org/02b1w6965', 'es', 1, 'https://ror.org/02b1w6965 Escuela Nacional de Administración y Hacienda Pública-Instituto Universitario de Tecnología'),
(90166, 'https://ror.org/01vnk2d62', 'en', 1, 'https://ror.org/01vnk2d62 America Nepal Medical Foundation'),
(90167, 'https://ror.org/009t1k130', 'en', 1, 'https://ror.org/009t1k130 Technological University Dawei'),
(90168, 'https://ror.org/047htnr46', 'es', 1, 'https://ror.org/047htnr46 Universidad de Estudios Profesionales de Ciencias y Artes'),
(90169, 'https://ror.org/05nahnj25', 'en', 1, 'https://ror.org/05nahnj25 University of Timbuktu'),
(90170, 'https://ror.org/023adpj10', 'en', 1, 'https://ror.org/023adpj10 P S Jones Middle School'),
(90171, 'https://ror.org/019cpth08', 'en', 1, 'https://ror.org/019cpth08 Technological University Sittwe'),
(90172, 'https://ror.org/04pmvpd04', 'en', 1, 'https://ror.org/04pmvpd04 Kenya Library and Information Services Consortium'),
(90173, 'https://ror.org/03htexr67', 'no_lang_code', 1, 'https://ror.org/03htexr67 SociƩtƩ d''Economie Mixte (France)'),
(90174, 'https://ror.org/03man8j49', 'en', 1, 'https://ror.org/03man8j49 Carl Vogel Center'),
(90175, 'https://ror.org/05bnqnk18', 'no_lang_code', 1, 'https://ror.org/05bnqnk18 Cybernetics Technology (Belgium)'),
(90176, 'https://ror.org/043gcm269', 'en', 1, 'https://ror.org/043gcm269 Caldwell County Schools'),
(90177, 'https://ror.org/02be7kf90', 'en', 1, 'https://ror.org/02be7kf90 Technological University Magway'),
(90178, 'https://ror.org/01xn6em86', 'en', 1, 'https://ror.org/01xn6em86 Xing Wei College äøŠęµ·å…“ä¼Ÿå­¦é™¢'),
(90179, 'https://ror.org/00tvtvq35', 'es', 1, 'https://ror.org/00tvtvq35 Universidad Privada de Irapuato'),
(90180, 'https://ror.org/02kwf6k60', 'en', 1, 'https://ror.org/02kwf6k60 Moscow Art Theatre School'),
(90181, 'https://ror.org/01g4rg913', 'en', 1, 'https://ror.org/01g4rg913 Rajabhat University System ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąø'),
(90182, 'https://ror.org/022bk5x30', 'no_lang_code', 1, 'https://ror.org/022bk5x30 IMBIC (United States)'),
(90183, 'https://ror.org/042mgzj06', 'es', 1, 'https://ror.org/042mgzj06 Centro de Estudios Universitarios de Periodismo y Arte en Radio y Televisión'),
(90184, 'https://ror.org/00g41ma48', 'en', 1, 'https://ror.org/00g41ma48 Hasheminejad Kidney Center ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ Ł‡Ų§Ų“Ł…ŪŒ Ł†Ś˜Ų§ŲÆ Ł…Ų³ŲŖŲ“ŁŪŒ Ų§Ł„Ų“Ł‡ŪŒŲÆ Ł‡Ų§Ų“Ł…ŪŒ نجاد'),
(90185, 'https://ror.org/00apymp80', 'no_lang_code', 1, 'https://ror.org/00apymp80 Paulo Freire University'),
(90186, 'https://ror.org/01bhwqa64', 'en', 1, 'https://ror.org/01bhwqa64 University of Arts from TĆ¢rgu-Mureș'),
(90187, 'https://ror.org/01t56tx37', 'no_lang_code', 1, 'https://ror.org/01t56tx37 Luceat (Italy)'),
(90188, 'https://ror.org/03rxts749', 'en', 1, 'https://ror.org/03rxts749 Institut za književnost i umetnost Institute for Literature and Art Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠŗŃšŠøŠ¶ŠµŠ²Š½Š¾ŃŃ‚ Šø ŃƒŠ¼ŠµŃ‚Š½Š¾ŃŃ‚'),
(90189, 'https://ror.org/04er69203', 'en', 1, 'https://ror.org/04er69203 Regional Health Administration of Thessaly'),
(90190, 'https://ror.org/01r4ryc68', 'no_lang_code', 1, 'https://ror.org/01r4ryc68 McGraw Hill Financial (United States)'),
(90191, 'https://ror.org/00abbnt31', 'en', 1, 'https://ror.org/00abbnt31 Graham A. Barden Elementary School'),
(90192, 'https://ror.org/03f3hzw14', 'en', 1, 'https://ror.org/03f3hzw14 HealthSouth Rehabilitation Hospital of Tinton Falls'),
(90193, 'https://ror.org/04484bb06', 'en', 1, 'https://ror.org/04484bb06 International Research Universities Network'),
(90194, 'https://ror.org/01e1f1387', 'no_lang_code', 1, 'https://ror.org/01e1f1387 BioMar (United Kingdom)'),
(90195, 'https://ror.org/00fq58w87', 'en', 1, 'https://ror.org/00fq58w87 Huichon University of Telecommunications ķ¬ģ²œ 공업 ėŒ€ķ•™'),
(90196, 'https://ror.org/03h1az021', 'es', 1, 'https://ror.org/03h1az021 Universidad Metropolitana'),
(90197, 'https://ror.org/01pmtm379', 'es', 1, 'https://ror.org/01pmtm379 Instituto de FĆ­sica La Plata'),
(90198, 'https://ror.org/00z443178', 'no_lang_code', 1, 'https://ror.org/00z443178 Environmental Analysis and Remote Sensing (Netherlands)'),
(90199, 'https://ror.org/008aa2j83', 'en', 1, 'https://ror.org/008aa2j83 Tilak Dhari Post Graduate College'),
(90200, 'https://ror.org/02t19h583', 'en', 1, 'https://ror.org/02t19h583 Jaamacada Lafoole Lafoole University'),
(90201, 'https://ror.org/03cax2885', 'no_lang_code', 1, 'https://ror.org/03cax2885 Aptiv (Luxembourg)'),
(90202, 'https://ror.org/00basmr24', 'en', 1, 'https://ror.org/00basmr24 Aljazeera University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬Ų²ŁŠŲ±Ų© الخاصة'),
(90203, 'https://ror.org/00qq77n27', 'en', 1, 'https://ror.org/00qq77n27 Consortium for Ocean-Sea Ice Modelling in Australia'),
(90204, 'https://ror.org/02dxx6824', 'en', 1, 'https://ror.org/02dxx6824 Institut de Recherche Scripps Scripps Research Institute'),
(90205, 'https://ror.org/05xpbkj44', 'no_lang_code', 1, 'https://ror.org/05xpbkj44 Khemarak University'),
(90206, 'https://ror.org/03py4wj84', 'fr', 1, 'https://ror.org/03py4wj84 Institut Universitaire du BƩnin'),
(90207, 'https://ror.org/02de4yt33', 'en', 1, 'https://ror.org/02de4yt33 Kiyv Municipal Medical College'),
(90208, 'https://ror.org/009shwh61', 'en', 1, 'https://ror.org/009shwh61 Center for Hydrometeorology and Remote Sensing'),
(90209, 'https://ror.org/0033tr965', 'en', 1, 'https://ror.org/0033tr965 University of Bandundu UniversitƩ de bandundu'),
(90210, 'https://ror.org/014q5mw12', 'en', 1, 'https://ror.org/014q5mw12 Surakarta Christian University'),
(90211, 'https://ror.org/017bbxn17', 'fr', 0, 'https://ror.org/017bbxn17 Centre de Biologie du DƩveloppement'),
(90212, 'https://ror.org/05tn8z305', 'en', 1, 'https://ror.org/05tn8z305 National Institute Of Blood Disease and Bone Marrow Transplantation'),
(90213, 'https://ror.org/048sk3r24', 'en', 1, 'https://ror.org/048sk3r24 Canadian Virtual University'),
(90214, 'https://ror.org/01b811k23', 'en', 1, 'https://ror.org/01b811k23 New American Colleges and Universities'),
(90215, 'https://ror.org/01xpgs822', 'en', 0, 'https://ror.org/01xpgs822 Vilentum University of applied sciences'),
(90216, 'https://ror.org/00kd6h279', 'en', 1, 'https://ror.org/00kd6h279 Webster University Utah'),
(90217, 'https://ror.org/055dy9060', 'en', 1, 'https://ror.org/055dy9060 Indian National Defence University ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą¤•ą„ą¤·ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(90218, 'https://ror.org/042c7zs41', 'no_lang_code', 1, 'https://ror.org/042c7zs41 Barr and Stroud (United Kingdom)'),
(90219, 'https://ror.org/02g2b5578', 'en', 1, 'https://ror.org/02g2b5578 Technological University Hinthada'),
(90220, 'https://ror.org/0517h6h17', 'en', 1, 'https://ror.org/0517h6h17 Canada Research Chairs Chaires de recherche du Canada'),
(90221, 'https://ror.org/00y2f9m95', 'en', 1, 'https://ror.org/00y2f9m95 Benghazi Military University Academy'),
(90222, 'https://ror.org/02wzabb26', 'fr', 1, 'https://ror.org/02wzabb26 UniversitƩ William Booth'),
(90223, 'https://ror.org/05hppb561', 'en', 1, 'https://ror.org/05hppb561 Finnish Meteorological Institute Ilmatieteen Laitos Meteorologiska Institutet'),
(90224, 'https://ror.org/023nx7r16', 'en', 1, 'https://ror.org/023nx7r16 Carolina University of Theology'),
(90225, 'https://ror.org/03j3gvk48', 'en', 1, 'https://ror.org/03j3gvk48 Karnataka Folklore University, Haveri'),
(90226, 'https://ror.org/00b2x9z76', 'no_lang_code', 1, 'https://ror.org/00b2x9z76 4D Technology (United States)'),
(90227, 'https://ror.org/02knte584', 'en', 1, 'https://ror.org/02knte584 West Suffolk NHS Foundation Trust'),
(90228, 'https://ror.org/00vwfb160', 'en', 1, 'https://ror.org/00vwfb160 Darlington Memorial Hospital'),
(90229, 'https://ror.org/01bkr9r85', 'no_lang_code', 1, 'https://ror.org/01bkr9r85 ET Techtonics (United States)'),
(90230, 'https://ror.org/01kpsvc92', 'no_lang_code', 1, 'https://ror.org/01kpsvc92 Apigenex (Czechia)'),
(90231, 'https://ror.org/00ktcxb85', 'en', 1, 'https://ror.org/00ktcxb85 Russian International Academy of Tourism Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(90232, 'https://ror.org/04nx3xw90', 'en', 1, 'https://ror.org/04nx3xw90 Adventist La Grange Memorial Hospital'),
(90233, 'https://ror.org/00d5ng337', 'en', 1, 'https://ror.org/00d5ng337 Broadmoor Hospital'),
(90234, 'https://ror.org/02ywxzr29', 'en', 1, 'https://ror.org/02ywxzr29 Brighton International University'),
(90235, 'https://ror.org/059sa4e46', 'es', 1, 'https://ror.org/059sa4e46 Centro Universitario en Lenguas, Turismo y Empresas de Servicios'),
(90236, 'https://ror.org/00gde9v15', 'en', 1, 'https://ror.org/00gde9v15 Lomi School Foundation and Psychotherapy Clinic'),
(90237, 'https://ror.org/01wywrx16', 'no_lang_code', 1, 'https://ror.org/01wywrx16 Voxtel (United States)'),
(90238, 'https://ror.org/00amapy86', 'es', 1, 'https://ror.org/00amapy86 Universidad Galilea'),
(90239, 'https://ror.org/05bp8ka05', 'no_lang_code', 1, 'https://ror.org/05bp8ka05 Metadata Game Changers (United States)'),
(90240, 'https://ror.org/00vpwhm04', 'en', 1, 'https://ror.org/00vpwhm04 Center for Excellence in Brain Science and Intelligence Technology å­¦é™¢č„‘ē§‘å­¦äøŽę™ŗčƒ½ęŠ€ęœÆå“č¶Šåˆ›ę–°äø­åæƒ'),
(90241, 'https://ror.org/01mpwwe68', 'id', 1, 'https://ror.org/01mpwwe68 Universitas Tri Tunggal'),
(90242, 'https://ror.org/0479fds27', 'en', 1, 'https://ror.org/0479fds27 Shanghai Police College äøŠęµ·å…¬å®‰å­¦é™¢'),
(90243, 'https://ror.org/03awpw822', 'en', 1, 'https://ror.org/03awpw822 Kutaisi Musical College'),
(90244, 'https://ror.org/04kd26r92', 'en', 1, 'https://ror.org/04kd26r92 Grampians Health'),
(90245, 'https://ror.org/05kajrf08', 'no_lang_code', 1, 'https://ror.org/05kajrf08 Aircraft Industries (Czechia)'),
(90246, 'https://ror.org/05nb5x242', 'no_lang_code', 1, 'https://ror.org/05nb5x242 ProbaYes (France)'),
(90247, 'https://ror.org/05fq5nw33', 'no_lang_code', 1, 'https://ror.org/05fq5nw33 Parachute Health (United States)'),
(90248, 'https://ror.org/034twpg87', 'en', 1, 'https://ror.org/034twpg87 International Union for Circumpolar Health'),
(90249, 'https://ror.org/003sdgd41', 'es', 1, 'https://ror.org/003sdgd41 Universidad San Marcos'),
(90250, 'https://ror.org/01z3j2f47', 'no_lang_code', 1, 'https://ror.org/01z3j2f47 Rio Tinto (Switzerland)'),
(90251, 'https://ror.org/02drtdq08', 'en', 1, 'https://ror.org/02drtdq08 Dean Martin Neuromuscular Clinic'),
(90252, 'https://ror.org/006806c04', 'no_lang_code', 1, 'https://ror.org/006806c04 BioMar (Denmark)'),
(90253, 'https://ror.org/004z5jb02', 'en', 1, 'https://ror.org/004z5jb02 Brain Tumor Awareness Organization'),
(90254, 'https://ror.org/05g2egb88', 'en', 1, 'https://ror.org/05g2egb88 Shanghai Jinyuan Senior High School äøŠęµ·åø‚ę™‹å…ƒé«˜ēŗ§äø­å­¦'),
(90255, 'https://ror.org/052x4m448', 'no_lang_code', 1, 'https://ror.org/052x4m448 Hydro-Air (Germany)'),
(90256, 'https://ror.org/00dqdz389', 'en', 1, 'https://ror.org/00dqdz389 University College of Aviation and Technology'),
(90257, 'https://ror.org/01w8eym62', 'en', 1, 'https://ror.org/01w8eym62 Trinity Health Michigan'),
(90258, 'https://ror.org/04yb6z205', 'es', 1, 'https://ror.org/04yb6z205 Universidad Michoacana de Oriente'),
(90259, 'https://ror.org/015ter047', 'no_lang_code', 1, 'https://ror.org/015ter047 IS3D (United States)'),
(90260, 'https://ror.org/03v3t1916', 'es', 1, 'https://ror.org/03v3t1916 Universidad Internacional Para el Desarrollo Sostenible'),
(90261, 'https://ror.org/05rxnta87', 'en', 1, 'https://ror.org/05rxnta87 Institut für Angewandte Sprachforschung Institute for Applied Linguistics Istituto di linguistica applicata'),
(90262, 'https://ror.org/05sb0mt20', 'no_lang_code', 1, 'https://ror.org/05sb0mt20 Berkeley Systems (United States)'),
(90263, 'https://ror.org/026m7hh11', 'no_lang_code', 1, 'https://ror.org/026m7hh11 Consensus Pharmaceuticals (United States)'),
(90264, 'https://ror.org/02459py43', 'en', 1, 'https://ror.org/02459py43 St Michaels Hospital'),
(90265, 'https://ror.org/05487pd16', 'fr', 0, 'https://ror.org/05487pd16 Laboratoire d''informatique de Nantes Atlantique'),
(90266, 'https://ror.org/048rjxx46', 'no_lang_code', 1, 'https://ror.org/048rjxx46 Escrypt (Germany)'),
(90267, 'https://ror.org/04shjje75', 'id', 1, 'https://ror.org/04shjje75 Universitas Satria Makassar'),
(90268, 'https://ror.org/01x3sy962', 'en', 1, 'https://ror.org/01x3sy962 Southern Middle School'),
(90269, 'https://ror.org/010b96m59', 'en', 1, 'https://ror.org/010b96m59 Taguig City University'),
(90270, 'https://ror.org/041w4x997', 'en', 1, 'https://ror.org/041w4x997 Chelsea Hospital'),
(90271, 'https://ror.org/01ry5pb83', 'en', 1, 'https://ror.org/01ry5pb83 Ashley IB Elementary Magnet School'),
(90272, 'https://ror.org/02vnwa888', 'fr', 0, 'https://ror.org/02vnwa888 Sciences Techniques Ɖducation Formation'),
(90273, 'https://ror.org/016n8g626', 'en', 1, 'https://ror.org/016n8g626 Shanghai National Accounting Institute äøŠęµ·å›½å®¶ä¼šč®”å­¦é™¢'),
(90274, 'https://ror.org/01p9jjh58', 'es', 1, 'https://ror.org/01p9jjh58 Universidad del Valle de Matatipac'),
(90275, 'https://ror.org/05450xf19', 'en', 1, 'https://ror.org/05450xf19 South Osaka Neurosurgical Hospital'),
(90276, 'https://ror.org/02rn2an47', 'en', 1, 'https://ror.org/02rn2an47 Launceston General Hospital'),
(90277, 'https://ror.org/04ea3yn85', 'en', 1, 'https://ror.org/04ea3yn85 World Prevention Alliance'),
(90278, 'https://ror.org/02czgmn97', 'en', 1, 'https://ror.org/02czgmn97 O’Loughlin Elementary School'),
(90279, 'https://ror.org/02pwa4b62', 'en', 1, 'https://ror.org/02pwa4b62 Al Azhar University Ų¬Ų§Ł…Ų¹Ų© الأزهر'),
(90280, 'https://ror.org/02f76hw52', 'en', 1, 'https://ror.org/02f76hw52 Human Resources University'),
(90281, 'https://ror.org/05tfzsp63', 'no_lang_code', 1, 'https://ror.org/05tfzsp63 Clinical Gene Networks (Sweden)'),
(90282, 'https://ror.org/03kasac21', 'fr', 0, 'https://ror.org/03kasac21 Groupe de Recherche en FertilitƩ Humaine'),
(90283, 'https://ror.org/00cd2bj23', 'en', 1, 'https://ror.org/00cd2bj23 Shanghai Academy of Educational Sciences äøŠęµ·åø‚ę•™č‚²ē§‘å­¦ē ”ē©¶é™¢'),
(90284, 'https://ror.org/015g0sa97', 'en', 1, 'https://ror.org/015g0sa97 Malden Grade School'),
(90285, 'https://ror.org/04zza3s31', 'fr', 0, 'https://ror.org/04zza3s31 Risques Travail MarchƩs Etat'),
(90286, 'https://ror.org/0498jc398', 'en', 1, 'https://ror.org/0498jc398 Clarkton School of Discovery'),
(90287, 'https://ror.org/01kz1bj67', 'fr', 0, 'https://ror.org/01kz1bj67 Laboratoire SpƩcification et VƩrification'),
(90288, 'https://ror.org/03jk56111', 'en', 1, 'https://ror.org/03jk56111 African Organisation for Research and Training in Cancer'),
(90289, 'https://ror.org/01sxj8p89', 'en', 0, 'https://ror.org/01sxj8p89 Queensland Climate Change Centre of Excellence'),
(90290, 'https://ror.org/00jv97a42', 'en', 1, 'https://ror.org/00jv97a42 University of Gedo'),
(90291, 'https://ror.org/051q6ga75', 'en', 1, 'https://ror.org/051q6ga75 Community Clinic Health Network'),
(90292, 'https://ror.org/01qvpeq51', 'en', 1, 'https://ror.org/01qvpeq51 Venezuelan Adventist University'),
(90293, 'https://ror.org/04cm2y595', 'en', 1, 'https://ror.org/04cm2y595 Toronto General Hospital Research Institute'),
(90294, 'https://ror.org/05h9t7c44', 'en', 1, 'https://ror.org/05h9t7c44 National Institute of Abiotic Stress Management ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤œą„ˆą¤µą¤æą¤• तनाव ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(90295, 'https://ror.org/04ebzxq58', 'es', 1, 'https://ror.org/04ebzxq58 Centro de Investigaciones Cardiovasculares'),
(90296, 'https://ror.org/051sx7649', 'es', 1, 'https://ror.org/051sx7649 Centro de Estudios Universitarios del Norte'),
(90297, 'https://ror.org/02td2bv47', 'no_lang_code', 1, 'https://ror.org/02td2bv47 Vermaat Technics (Netherlands)'),
(90298, 'https://ror.org/051wcyx09', 'en', 1, 'https://ror.org/051wcyx09 Mongolian State University of Culture and Art'),
(90299, 'https://ror.org/028k5tf66', 'en', 1, 'https://ror.org/028k5tf66 Nebraska State Office of the Governor'),
(90300, 'https://ror.org/03ps0yk73', 'en', 1, 'https://ror.org/03ps0yk73 Florida International University Tianjin Center'),
(90301, 'https://ror.org/03xy0kn06', 'fr', 1, 'https://ror.org/03xy0kn06 Universite Adventiste de Lukanga'),
(90302, 'https://ror.org/035ezew55', 'no_lang_code', 1, 'https://ror.org/035ezew55 PreClinOmics (United States)'),
(90303, 'https://ror.org/016m1q064', 'no_lang_code', 1, 'https://ror.org/016m1q064 Science-Metrix (Canada)'),
(90304, 'https://ror.org/020gmng35', 'id', 1, 'https://ror.org/020gmng35 Universitas Karo'),
(90305, 'https://ror.org/04wfsry95', 'no_lang_code', 1, 'https://ror.org/04wfsry95 VistaMotif (United States)'),
(90306, 'https://ror.org/052q0wb68', 'it', 1, 'https://ror.org/052q0wb68 Istruzione Tecnica Superiore'),
(90307, 'https://ror.org/03gxjcz46', 'es', 1, 'https://ror.org/03gxjcz46 Centro Universitario Promedac'),
(90308, 'https://ror.org/05980js50', 'en', 1, 'https://ror.org/05980js50 Dublin Metropolitan University'),
(90309, 'https://ror.org/03vjhzm50', 'en', 1, 'https://ror.org/03vjhzm50 Miami University Glee Club'),
(90310, 'https://ror.org/033kg2g02', 'en', 1, 'https://ror.org/033kg2g02 Sheppard and Lapsley Presbyterian University of Congo'),
(90311, 'https://ror.org/02sv7b189', 'en', 1, 'https://ror.org/02sv7b189 Arizona Department of Libraries, Archives and Public Records'),
(90312, 'https://ror.org/01jcvk244', 'en', 1, 'https://ror.org/01jcvk244 Institute of Fish Resources - Varna (Agricultural Academy) Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ по рибни Ń€ŠµŃŃƒŃ€ŃŠø, ИРР – Варна, към Делскостопанска ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ (ДДА)'),
(90313, 'https://ror.org/03kwaeq96', 'en', 1, 'https://ror.org/03kwaeq96 Population Health Research Institute'),
(90314, 'https://ror.org/0445d5g14', 'no_lang_code', 1, 'https://ror.org/0445d5g14 Hachinohe Gakuin University å…«ęˆøå­¦é™¢å¤§å­¦'),
(90315, 'https://ror.org/01769zz43', 'en', 1, 'https://ror.org/01769zz43 South Johnston High School'),
(90316, 'https://ror.org/00nvaaq81', 'en', 1, 'https://ror.org/00nvaaq81 Sydney University Musical Society'),
(90317, 'https://ror.org/04vhgtv41', 'en', 1, 'https://ror.org/04vhgtv41 UniCancer Group'),
(90318, 'https://ror.org/03gnn5r15', 'it', 1, 'https://ror.org/03gnn5r15 Scuola Superiore Internazionale di Studi Universitari di Ricerca e Formazione'),
(90319, 'https://ror.org/03xeb9420', 'en', 1, 'https://ror.org/03xeb9420 City University of Pasay'),
(90320, 'https://ror.org/05pfsnp36', 'en', 1, 'https://ror.org/05pfsnp36 Duchess Of Kent Hospital'),
(90321, 'https://ror.org/00rmv5n97', 'fr', 0, 'https://ror.org/00rmv5n97 Direction des Sciences de la MatiĆØre'),
(90322, 'https://ror.org/021cphd64', 'en', 1, 'https://ror.org/021cphd64 East Burke High School'),
(90323, 'https://ror.org/02p5wv034', 'no_lang_code', 1, 'https://ror.org/02p5wv034 Technical Union for the Automobile Motorcycle and Cycle Industries Union Technique de l’Automobile du motocycle et du Cycle'),
(90324, 'https://ror.org/040hez064', 'fr', 1, 'https://ror.org/040hez064 UniversitƩ Dakar-Bourguiba'),
(90325, 'https://ror.org/02ggg9a13', 'no_lang_code', 1, 'https://ror.org/02ggg9a13 RestorGenex (United States)'),
(90326, 'https://ror.org/01t9mhf55', 'en', 1, 'https://ror.org/01t9mhf55 Market Harborough Hospital'),
(90327, 'https://ror.org/01ar4p885', 'no_lang_code', 1, 'https://ror.org/01ar4p885 OnCyte (United States)'),
(90328, 'https://ror.org/00kjkc475', 'no_lang_code', 1, 'https://ror.org/00kjkc475 Regatron (Switzerland)'),
(90329, 'https://ror.org/017t2xn54', 'en', 1, 'https://ror.org/017t2xn54 Chalermkarnchana University'),
(90330, 'https://ror.org/027afk247', 'fr', 0, 'https://ror.org/027afk247 Laboratoire MontpelliĆ©rain d’Economie ThĆ©orique et AppliquĆ©e'),
(90331, 'https://ror.org/0050s9w54', 'no_lang_code', 1, 'https://ror.org/0050s9w54 Philips (Italy)'),
(90332, 'https://ror.org/032dr6n38', 'fr', 1, 'https://ror.org/032dr6n38 UniversitƩ MƩditerranƩenne Libre de Tunis'),
(90333, 'https://ror.org/00jqszb68', 'en', 1, 'https://ror.org/00jqszb68 Beijing Huajia University'),
(90334, 'https://ror.org/04e3ktk27', 'fr', 0, 'https://ror.org/04e3ktk27 Laboratoire de Recherche en Informatique'),
(90335, 'https://ror.org/020nqey61', 'en', 1, 'https://ror.org/020nqey61 University of Wales, Romania'),
(90336, 'https://ror.org/04qsvhr24', 'en', 0, 'https://ror.org/04qsvhr24 Soil Science Research Unit UnitƩ de Recherche en Science du Sol'),
(90337, 'https://ror.org/04gnd7c94', 'fr', 0, 'https://ror.org/04gnd7c94 Laboratoire d’Électronique, Informatique et Image'),
(90338, 'https://ror.org/04vwf9r13', 'en', 1, 'https://ror.org/04vwf9r13 Missouri State University Branch Campus Dalian'),
(90339, 'https://ror.org/00v0mdx81', 'en', 1, 'https://ror.org/00v0mdx81 Forest City People''s Hospital'),
(90340, 'https://ror.org/006g7ta07', 'en', 1, 'https://ror.org/006g7ta07 eHope Foundation'),
(90341, 'https://ror.org/01zntxs11', 'en', 1, 'https://ror.org/01zntxs11 Shanghai Medical College of Fudan University å¤ę—¦å¤§å­¦äøŠęµ·åŒ»å­¦é™¢'),
(90342, 'https://ror.org/01fw5n266', 'no_lang_code', 1, 'https://ror.org/01fw5n266 Nouricia (France)'),
(90343, 'https://ror.org/012f6xc93', 'en', 1, 'https://ror.org/012f6xc93 Shanghai Conservatory of Music äøŠęµ·éŸ³ä¹å­¦é™¢'),
(90344, 'https://ror.org/03dnj6531', 'en', 1, 'https://ror.org/03dnj6531 Citizen Schools North Carolina'),
(90345, 'https://ror.org/058t8q018', 'no_lang_code', 1, 'https://ror.org/058t8q018 Vindico Pharmaceuticals (United States)'),
(90346, 'https://ror.org/036wvzt09', 'en', 1, 'https://ror.org/036wvzt09 Agency for Science, Technology and Research ę–°åŠ å”ē§‘ęŠ€ē ”ē©¶å±€'),
(90347, 'https://ror.org/00a3p4g61', 'fr', 0, 'https://ror.org/00a3p4g61 Mécanismes de Tumorigenèse et Thérapies Ciblées'),
(90348, 'https://ror.org/052tgfs08', 'en', 1, 'https://ror.org/052tgfs08 AGSB University'),
(90349, 'https://ror.org/0328e2671', 'es', 1, 'https://ror.org/0328e2671 Centro Universitario Allende'),
(90350, 'https://ror.org/00p4y7r37', 'en', 1, 'https://ror.org/00p4y7r37 IARIA'),
(90351, 'https://ror.org/037zh7469', 'es', 1, 'https://ror.org/037zh7469 Departamento Universitario Obrero Campesino'),
(90352, 'https://ror.org/009kz8119', 'en', 1, 'https://ror.org/009kz8119 Edenton Chowan School District'),
(90353, 'https://ror.org/0064esw13', 'en', 1, 'https://ror.org/0064esw13 LearningSpring Elementary School'),
(90354, 'https://ror.org/027r7gj11', 'en', 1, 'https://ror.org/027r7gj11 Shanghai Open University äøŠęµ·å¼€ę”¾å¤§å­¦'),
(90355, 'https://ror.org/01wnzxq37', 'en', 1, 'https://ror.org/01wnzxq37 St. Joseph Regional Medical Center'),
(90356, 'https://ror.org/05hcfns23', 'en', 1, 'https://ror.org/05hcfns23 Jacobi Medical Center'),
(90357, 'https://ror.org/01enszw84', 'en', 1, 'https://ror.org/01enszw84 West Coast University – Panama'),
(90358, 'https://ror.org/03mk4hj97', 'en', 1, 'https://ror.org/03mk4hj97 Open University of West Africa'),
(90359, 'https://ror.org/04vp1tk49', 'en', 1, 'https://ror.org/04vp1tk49 Center for Molecular Dynamics - Nepal'),
(90360, 'https://ror.org/05010mv24', 'en', 1, 'https://ror.org/05010mv24 Hinchingbrooke Health Care NHS Trust'),
(90361, 'https://ror.org/04eaqk971', 'no_lang_code', 1, 'https://ror.org/04eaqk971 Bouwcentrum (Netherlands)'),
(90362, 'https://ror.org/03pcb7145', 'no_lang_code', 1, 'https://ror.org/03pcb7145 Sigma Research (United States)'),
(90363, 'https://ror.org/025atd435', 'no_lang_code', 1, 'https://ror.org/025atd435 Chiaro Technologies (United States)'),
(90364, 'https://ror.org/051tp1g37', 'es', 1, 'https://ror.org/051tp1g37 Universidad Peruana de Integración Global'),
(90365, 'https://ror.org/01s3y9g58', 'en', 1, 'https://ror.org/01s3y9g58 Children''s Hospital Central California'),
(90366, 'https://ror.org/046nez754', 'en', 0, 'https://ror.org/046nez754 Angiogenesis and Cancer Microenvironment Laboratory'),
(90367, 'https://ror.org/00t64mp36', 'en', 1, 'https://ror.org/00t64mp36 Beaumont Eye Institute'),
(90368, 'https://ror.org/00j4pev45', 'en', 1, 'https://ror.org/00j4pev45 Mercy''s Wing Foundation'),
(90369, 'https://ror.org/05ynrwf18', 'pt', 1, 'https://ror.org/05ynrwf18 Universidad Libre de MĆŗsica Universidade Livre de MĆŗsica'),
(90370, 'https://ror.org/01j0mn732', 'no_lang_code', 1, 'https://ror.org/01j0mn732 Biophy Research (France)'),
(90371, 'https://ror.org/05xhmdj56', 'en', 1, 'https://ror.org/05xhmdj56 Metropolitan Hospital Central Division'),
(90372, 'https://ror.org/05xvjxy27', 'en', 1, 'https://ror.org/05xvjxy27 Lane County Department of Youth Services'),
(90373, 'https://ror.org/055b59316', 'no_lang_code', 1, 'https://ror.org/055b59316 Archimedes International (Cyprus)'),
(90374, 'https://ror.org/047pgsy79', 'no_lang_code', 1, 'https://ror.org/047pgsy79 Geinsa (Panama)'),
(90375, 'https://ror.org/008kz9r66', 'ro', 1, 'https://ror.org/008kz9r66 Universitatea Slavonă din Moldova'),
(90376, 'https://ror.org/03evaaw16', 'en', 1, 'https://ror.org/03evaaw16 University of Wales Institute Cardiff'),
(90377, 'https://ror.org/01rfadg88', 'en', 1, 'https://ror.org/01rfadg88 St. Petersburg Christian University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ христианский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(90378, 'https://ror.org/005ma5a25', 'no_lang_code', 1, 'https://ror.org/005ma5a25 DB Engineering & Consulting (Germany)'),
(90379, 'https://ror.org/042x5bs02', 'no_lang_code', 1, 'https://ror.org/042x5bs02 Pareto BDM (Australia)');
INSERT INTO `rors` VALUES
(90380, 'https://ror.org/03y4gzw57', 'en', 1, 'https://ror.org/03y4gzw57 Hunan Communication Polytechnic ę¹–å—äŗ¤é€ščŒäøšęŠ€ęœÆå­¦é™¢'),
(90381, 'https://ror.org/00wes5t10', 'no_lang_code', 0, 'https://ror.org/00wes5t10 TRW (United States)'),
(90382, 'https://ror.org/047t1ev07', 'en', 1, 'https://ror.org/047t1ev07 Indian Society of Remote Sensing'),
(90383, 'https://ror.org/057a9rf33', 'no_lang_code', 1, 'https://ror.org/057a9rf33 Raytheon Technologies (Finland)'),
(90384, 'https://ror.org/047qy5748', 'en', 1, 'https://ror.org/047qy5748 Worldwide Protein Data Bank'),
(90385, 'https://ror.org/04d0hsa39', 'en', 1, 'https://ror.org/04d0hsa39 711th Human Performance Wing'),
(90386, 'https://ror.org/05awqgz82', 'en', 1, 'https://ror.org/05awqgz82 Republican Specialized Scientific and Practical Medical Center of Oncology and Radiology Respublika ixtisoslashtirilgan onkologiya va radiologiya ilmiy-amaliy tibbiyot markazi Республиканский специализированный Š½Š°ŃƒŃ‡Š½Š¾-практический меГицинский центр онкологии Šø раГиологии'),
(90387, 'https://ror.org/00z58xw11', 'en', 1, 'https://ror.org/00z58xw11 St. John''s College, Palayamkottai தூய ą®ÆąÆ‹ą®µą®¾ą®©ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ, ą®Ŗą®¾ą®³ąÆˆą®Æą®™ąÆą®•ąÆ‹ą®ŸąÆą®ŸąÆˆ'),
(90388, 'https://ror.org/03f5t6469', 'en', 1, 'https://ror.org/03f5t6469 Milken Institute'),
(90389, 'https://ror.org/02sysn258', 'en', 1, 'https://ror.org/02sysn258 Third People''s Hospital of Hangzhou ę­å·žåø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(90390, 'https://ror.org/01mmady97', 'de', 1, 'https://ror.org/01mmady97 Deutsches Herzzentrum der CharitƩ German Heart Center Berlin'),
(90391, 'https://ror.org/03xba7c91', 'en', 1, 'https://ror.org/03xba7c91 Fiona Stanley Fremantle Hospitals Group'),
(90392, 'https://ror.org/03rj0mt16', 'en', 1, 'https://ror.org/03rj0mt16 Naval Research Laboratory Marine Meteorology Division'),
(90393, 'https://ror.org/02z57sg23', 'es', 1, 'https://ror.org/02z57sg23 SecretarĆ­a de la Defensa Nacional'),
(90394, 'https://ror.org/01kg1t878', 'en', 1, 'https://ror.org/01kg1t878 Naval Research Laboratory Plasma Physics Division'),
(90395, 'https://ror.org/02fd9re36', 'no_lang_code', 0, 'https://ror.org/02fd9re36 Loral (United States)'),
(90396, 'https://ror.org/054qg2939', 'en', 1, 'https://ror.org/054qg2939 Helmholtz Institute for Translational Oncology Mainz Helmholtz-Institut für Translationale Onkologie (HI-TRON, Mainz)'),
(90397, 'https://ror.org/01s12ye51', 'en', 1, 'https://ror.org/01s12ye51 The Central Hospital of Enshi Tujia and Miao Autonomous Prefecture ę©ę–½åœŸå®¶ę—č‹—ę—č‡Ŗę²»å·žäø­åæƒåŒ»é™¢'),
(90398, 'https://ror.org/010pmyd80', 'en', 1, 'https://ror.org/010pmyd80 Jinnah Sindh Medical University جناح سندھ Ł…ŪŒŚˆ ŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(90399, 'https://ror.org/0085hfg56', 'en', 1, 'https://ror.org/0085hfg56 Systems Engineering Research Center'),
(90400, 'https://ror.org/03hjhvn29', 'en', 1, 'https://ror.org/03hjhvn29 USC Institute for Creative Technologies'),
(90401, 'https://ror.org/03bra7668', 'en', 1, 'https://ror.org/03bra7668 Naval Research Laboratory Electronics Science and Technology Division'),
(90402, 'https://ror.org/01kw63t33', 'en', 1, 'https://ror.org/01kw63t33 Dipartimento federale dell''economia, della formazione e della ricerca Département fédéral de l''économie, de la formation et de la recherche Eidgenössisches Departement für Wirtschaft, Bildung und Forschung Federal Department of Economic Affairs, Education and Research'),
(90403, 'https://ror.org/04xfp8b22', 'en', 1, 'https://ror.org/04xfp8b22 Naval Research Laboratory Information Technology Division'),
(90404, 'https://ror.org/020r6j743', 'en', 1, 'https://ror.org/020r6j743 National Strategic Research Institute'),
(90405, 'https://ror.org/006jjam33', 'en', 1, 'https://ror.org/006jjam33 Applied Research Laboratory for Intelligence and Security'),
(90406, 'https://ror.org/011ghy651', 'en', 1, 'https://ror.org/011ghy651 U.S. Army Combat Capabilities Development Command Armaments Center'),
(90407, 'https://ror.org/029nmgq20', 'en', 0, 'https://ror.org/029nmgq20 Dublin Institute of Technology Institiúid Teicneolaíochta Bhaile Átha Cliath'),
(90408, 'https://ror.org/007ww2d15', 'en', 1, 'https://ror.org/007ww2d15 The Velux Foundations'),
(90409, 'https://ror.org/02f2wk572', 'en', 1, 'https://ror.org/02f2wk572 Institut tehničkih nauka SANU Institute of Technical Sciences of SASA Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ техничких наука Š”ŠŠŠ£'),
(90410, 'https://ror.org/0414fmh90', 'de', 1, 'https://ror.org/0414fmh90 WüSpace e.V.'),
(90411, 'https://ror.org/03af71h47', 'no_lang_code', 1, 'https://ror.org/03af71h47 Raytheon Technologies (Singapore)'),
(90412, 'https://ror.org/020wtpg03', 'fr', 1, 'https://ror.org/020wtpg03 CIGRE'),
(90413, 'https://ror.org/00qa9vw67', 'en', 1, 'https://ror.org/00qa9vw67 Combat Capabilities Development Command Soldier Center'),
(90414, 'https://ror.org/03bea9k73', 'en', 1, 'https://ror.org/03bea9k73 Ollscoil na Gaillimhe – University of Galway'),
(90415, 'https://ror.org/02nfzhn33', 'en', 0, 'https://ror.org/02nfzhn33 Johns Hopkins University School of Medicine'),
(90416, 'https://ror.org/00nzxdq35', 'en', 1, 'https://ror.org/00nzxdq35 Naval Research Laboratory Ocean Sciences Division'),
(90417, 'https://ror.org/00n1nz186', 'no_lang_code', 1, 'https://ror.org/00n1nz186 Kurchatov Institute ŠšŃƒŃ€Ń‡Š°Ń‚Š¾Š²ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(90418, 'https://ror.org/05jm2v587', 'no_lang_code', 1, 'https://ror.org/05jm2v587 Metafinanz'),
(90419, 'https://ror.org/053wph561', 'en', 1, 'https://ror.org/053wph561 Applied Research Laboratories, The University of Texas at Austin'),
(90420, 'https://ror.org/01m0pag22', 'es', 1, 'https://ror.org/01m0pag22 Real Sociedad EspaƱola de Fƭsica'),
(90421, 'https://ror.org/03s7s9j23', 'no_lang_code', 1, 'https://ror.org/03s7s9j23 NKGen Biotech Inc. (United States)'),
(90422, 'https://ror.org/01hkc5g98', 'en', 1, 'https://ror.org/01hkc5g98 Good Samaritan Medical Center'),
(90423, 'https://ror.org/02dj4ny34', 'en', 1, 'https://ror.org/02dj4ny34 Rottnest Island Nursing Post'),
(90424, 'https://ror.org/04qfrh333', 'en', 1, 'https://ror.org/04qfrh333 Georgia Tech Research Institute'),
(90425, 'https://ror.org/00zt09565', 'en', 1, 'https://ror.org/00zt09565 National Academy of Psychology'),
(90426, 'https://ror.org/03vwm7722', 'es', 1, 'https://ror.org/03vwm7722 Hospital Militar Regional de Especialidades Guadalajara'),
(90427, 'https://ror.org/003p40584', 'en', 1, 'https://ror.org/003p40584 German Science and Humanities Council Wissenschaftsrat'),
(90428, 'https://ror.org/015k93458', 'en', 1, 'https://ror.org/015k93458 Naval Research Laboratory Spacecraft Engineering Division'),
(90429, 'https://ror.org/02y0vze35', 'no_lang_code', 1, 'https://ror.org/02y0vze35 Xiyuan Hospital äø­å›½äø­åŒ»ē§‘å­¦é™¢č„æč‹‘åŒ»é™¢'),
(90430, 'https://ror.org/025vw1435', 'en', 1, 'https://ror.org/025vw1435 Naval Research Laboratory Chemistry Division'),
(90431, 'https://ror.org/00b2whf03', 'en', 0, 'https://ror.org/00b2whf03 Institute for Surface Chemistry Ytkemiska Institutet'),
(90432, 'https://ror.org/025qrzc85', 'en', 1, 'https://ror.org/025qrzc85 Queen Elizabeth II Health Sciences Centre'),
(90433, 'https://ror.org/03svwzw27', 'no_lang_code', 0, 'https://ror.org/03svwzw27 Ford Aerospace (United States)'),
(90434, 'https://ror.org/00fac2s97', 'it', 1, 'https://ror.org/00fac2s97 Istituto Avventista Villa Aurora'),
(90435, 'https://ror.org/05vbqv320', 'en', 0, 'https://ror.org/05vbqv320 Bundesministerium für Familien und Jugend Federal Ministry of Families and Youth'),
(90436, 'https://ror.org/02yryhg49', 'en', 1, 'https://ror.org/02yryhg49 Geophysical Detection of Nuclear Proliferation'),
(90437, 'https://ror.org/00z5dw933', 'en', 1, 'https://ror.org/00z5dw933 Breakthrough Discoveries for thriving with Bipolar Disorder'),
(90438, 'https://ror.org/01qp82651', 'pt', 1, 'https://ror.org/01qp82651 Academia de CiĆŖncias da Bahia'),
(90439, 'https://ror.org/044gwpv05', 'en', 1, 'https://ror.org/044gwpv05 Ministry of Education, Science, Research and Sport of the Slovak Republic'),
(90440, 'https://ror.org/04gvjds60', 'en', 1, 'https://ror.org/04gvjds60 Elektrotehnički institut Nikola Tesla The Nikola Tesla Institute of Electrical Engineering Електротехнички ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŠøŠŗŠ¾Š»Š° Тесла'),
(90441, 'https://ror.org/044j1j587', 'no_lang_code', 1, 'https://ror.org/044j1j587 Institut za povrtarstvo Smederevska Palanka Institute for Vegetable Crops'),
(90442, 'https://ror.org/05nb54h69', 'en', 1, 'https://ror.org/05nb54h69 Komarov Botanical Institute of the Russian Academy of Sciences Ботанический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.Š›. ŠšŠ¾Š¼Š°Ń€Š¾Š²Š° Российской акаГемии наук'),
(90443, 'https://ror.org/00k5x3m24', 'no_lang_code', 1, 'https://ror.org/00k5x3m24 Altice Portugal (Portugal)'),
(90444, 'https://ror.org/036g3b009', 'en', 1, 'https://ror.org/036g3b009 NERC Environmental Omics Facility'),
(90445, 'https://ror.org/01c17pa61', 'en', 1, 'https://ror.org/01c17pa61 Rockingham General Hospital'),
(90446, 'https://ror.org/005fmqz30', 'es', 1, 'https://ror.org/005fmqz30 Banco Central de Chile'),
(90447, 'https://ror.org/05j2zf046', 'no_lang_code', 1, 'https://ror.org/05j2zf046 Raytheon Technologies (Poland)'),
(90448, 'https://ror.org/055b7ng53', 'no_lang_code', 1, 'https://ror.org/055b7ng53 Gamma Reality (United States)'),
(90449, 'https://ror.org/01fr19c68', 'en', 1, 'https://ror.org/01fr19c68 Jinan Central Hospital ęµŽå—åø‚äø­åæƒåŒ»é™¢'),
(90450, 'https://ror.org/02w403h65', 'en', 1, 'https://ror.org/02w403h65 Utah State University Space Dynamics Laboratory'),
(90451, 'https://ror.org/02t78x693', 'en', 1, 'https://ror.org/02t78x693 Naval Research Laboratory Laboratories for Computational Physics & Fluid Dynamics'),
(90452, 'https://ror.org/019btt327', 'no_lang_code', 1, 'https://ror.org/019btt327 Raytheon Technologies (United Kingdom)'),
(90453, 'https://ror.org/01h7qhd17', 'en', 0, 'https://ror.org/01h7qhd17 Honolulu Star Advertiser'),
(90454, 'https://ror.org/01w8r0j67', 'no_lang_code', 1, 'https://ror.org/01w8r0j67 Abbott (Spain)'),
(90455, 'https://ror.org/049avne82', 'en', 1, 'https://ror.org/049avne82 Yixing People''s Hospital å®œå…“åø‚äŗŗę°‘åŒ»é™¢'),
(90456, 'https://ror.org/051twmj48', 'en', 1, 'https://ror.org/051twmj48 Mangalmay Institute of Management and Technology'),
(90457, 'https://ror.org/041684t28', 'en', 0, 'https://ror.org/041684t28 Mental Health Research Institute'),
(90458, 'https://ror.org/02drm9a45', 'no_lang_code', 1, 'https://ror.org/02drm9a45 Hedgefog Research (United States)'),
(90459, 'https://ror.org/00nzsxq20', 'en', 1, 'https://ror.org/00nzsxq20 National Centre for Nuclear Research'),
(90460, 'https://ror.org/046s2rf49', 'en', 1, 'https://ror.org/046s2rf49 Applied Research Laboratory at the University of Hawaiā€˜i'),
(90461, 'https://ror.org/05jb9pq57', 'en', 1, 'https://ror.org/05jb9pq57 Shandong First Medical University å±±äøœē¬¬äø€åŒ»ē§‘å¤§å­¦'),
(90462, 'https://ror.org/022j0mn33', 'en', 1, 'https://ror.org/022j0mn33 U.S. Army Combat Capabilities Development Command Chemical Biological Center'),
(90463, 'https://ror.org/005wcnh31', 'no_lang_code', 1, 'https://ror.org/005wcnh31 Confederação Nacional da Indústria (Brazil)'),
(90464, 'https://ror.org/00veegj02', 'es', 1, 'https://ror.org/00veegj02 Centro Científico Tecnológico - Tandil'),
(90465, 'https://ror.org/03jdj0g52', 'en', 1, 'https://ror.org/03jdj0g52 Applied Research Laboratory at Penn State'),
(90466, 'https://ror.org/00c639s42', 'en', 1, 'https://ror.org/00c639s42 Second People''s Hospital of Yunnan Province äŗ‘å—ēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(90467, 'https://ror.org/015wtqn87', 'en', 1, 'https://ror.org/015wtqn87 CRC183 - Entangled States of Matter'),
(90468, 'https://ror.org/04m96pa44', 'no_lang_code', 1, 'https://ror.org/04m96pa44 Raytheon Technologies (Netherlands)'),
(90469, 'https://ror.org/02hpna219', 'en', 1, 'https://ror.org/02hpna219 Fifth Hospital In Wuhan ę­¦ę±‰åø‚ē¬¬äŗ”åŒ»é™¢'),
(90470, 'https://ror.org/01khfdf61', 'es', 1, 'https://ror.org/01khfdf61 Fundación Flores'),
(90471, 'https://ror.org/04jrgd746', 'en', 1, 'https://ror.org/04jrgd746 Pattern Institute'),
(90472, 'https://ror.org/02813sv60', 'no_lang_code', 1, 'https://ror.org/02813sv60 British Power International (United Kingdom)'),
(90473, 'https://ror.org/01nkdyf86', 'en', 1, 'https://ror.org/01nkdyf86 Armadale Health Service'),
(90474, 'https://ror.org/04sz26p89', 'de', 1, 'https://ror.org/04sz26p89 Translationale Onkologie an der UniversitƤtsmedizin der Johannes Gutenberg-UniversitƤt Mainz'),
(90475, 'https://ror.org/03hx19n93', 'en', 1, 'https://ror.org/03hx19n93 Naval Research Laboratory Space Science Division'),
(90476, 'https://ror.org/048nfjm95', 'en', 1, 'https://ror.org/048nfjm95 National University of Ireland, Maynooth Ollscoil na hƉireann MĆ” Nuad'),
(90477, 'https://ror.org/014bhwj77', 'en', 1, 'https://ror.org/014bhwj77 Naval Research Laboratory Acoustics Division'),
(90478, 'https://ror.org/05txeyd16', 'no_lang_code', 1, 'https://ror.org/05txeyd16 Raytheon Technologies (Australia)'),
(90479, 'https://ror.org/00fg6nx42', 'no_lang_code', 1, 'https://ror.org/00fg6nx42 Raytheon Technologies (Italy)'),
(90480, 'https://ror.org/01bmj8t37', 'es', 1, 'https://ror.org/01bmj8t37 National University of La Matanza Universidad Nacional de La Matanza'),
(90481, 'https://ror.org/04pkc8m17', 'no_lang_code', 1, 'https://ror.org/04pkc8m17 Nokia (Finland) Nokia Oyj'),
(90482, 'https://ror.org/04qkrdj06', 'en', 1, 'https://ror.org/04qkrdj06 Kalamunda Hospital'),
(90483, 'https://ror.org/02g5zab91', 'en', 0, 'https://ror.org/02g5zab91 Fisheries Research Services'),
(90484, 'https://ror.org/02x9y0j10', 'fr', 1, 'https://ror.org/02x9y0j10 Centre FranƧois Baclesse'),
(90485, 'https://ror.org/041a6mg32', 'fr', 0, 'https://ror.org/041a6mg32 Agence Nationale pour la Gestion des DƩchets Radioactifs'),
(90486, 'https://ror.org/00mexna55', 'en', 1, 'https://ror.org/00mexna55 U.S. Army Space and Missile Defense Command Technical Center'),
(90487, 'https://ror.org/04b38mm11', 'no_lang_code', 1, 'https://ror.org/04b38mm11 Raytheon Technologies (Canada)'),
(90488, 'https://ror.org/03svy9a26', 'no_lang_code', 1, 'https://ror.org/03svy9a26 Raytheon Technologies (France)'),
(90489, 'https://ror.org/04w53rh54', 'en', 1, 'https://ror.org/04w53rh54 Kwinana Community Health'),
(90490, 'https://ror.org/058wvhh95', 'en', 1, 'https://ror.org/058wvhh95 Istituto nazionale per l’analisi delle politiche pubbliche National Institute for Public Policy Analysis'),
(90491, 'https://ror.org/0115d8s26', 'no_lang_code', 1, 'https://ror.org/0115d8s26 Loral Space & Communications (United States)'),
(90492, 'https://ror.org/01vf7p965', 'en', 0, 'https://ror.org/01vf7p965 Swedish Institute of Computer Science'),
(90493, 'https://ror.org/021m46s67', 'en', 1, 'https://ror.org/021m46s67 Naval Research Laboratory Center for Bio/Molecular Science and Engineering'),
(90494, 'https://ror.org/05jtef216', 'en', 1, 'https://ror.org/05jtef216 Institut de recherche de l''hƓpital d''Ottawa Ottawa Hospital Research Institute'),
(90495, 'https://ror.org/02mx98f15', 'en', 1, 'https://ror.org/02mx98f15 Mandurah Community Health Centre'),
(90496, 'https://ror.org/05w62hv45', 'en', 1, 'https://ror.org/05w62hv45 Murray District Hospital'),
(90497, 'https://ror.org/026fxjf64', 'en', 1, 'https://ror.org/026fxjf64 Institute of Otolaryngology named after Prof. A.I. Kolomiychenko of the National Academy of Medical Sciences of Ukraine ДУ ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ отоларингології ім. проф. Šž.Š”.ŠšŠ¾Š»Š¾Š¼Ń–Š¹Ń‡ŠµŠ½ŠŗŠ° ŠŠŠœŠ Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(90498, 'https://ror.org/00mt8k932', 'en', 1, 'https://ror.org/00mt8k932 SecrĆ©tariat d''Ɖtat Ć  la formation, Ć  la recherche et Ć  l''innovation Segreteria di Stato per la formazione, la ricerca e l''innovazione Staatssekretariat für Bildung, Forschung und Innovation State Secretariat for Education, Research and Innovation'),
(90499, 'https://ror.org/00q1fsf04', 'en', 1, 'https://ror.org/00q1fsf04 University Medical Center of the Johannes Gutenberg University Mainz UniversitƤtsmedizin der Johannes Gutenberg-UniversitƤt Mainz'),
(90500, 'https://ror.org/04wkp4f46', 'de', 1, 'https://ror.org/04wkp4f46 Klinikum Chemnitz'),
(90501, 'https://ror.org/04cyj6y78', 'en', 1, 'https://ror.org/04cyj6y78 Geotechnical and Structures Laboratory'),
(90502, 'https://ror.org/05vcng590', 'en', 1, 'https://ror.org/05vcng590 NOAA Center for Operational Oceanographic Products & Services'),
(90503, 'https://ror.org/0353fey10', 'en', 1, 'https://ror.org/0353fey10 Institute of Gastroenterology of the National Academy of Medical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гастроентерології ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України'),
(90504, 'https://ror.org/02q963474', 'en', 1, 'https://ror.org/02q963474 Shenzhen MSU-BIT University Университет ŠœŠ“Š£-ППИ в ŠØŃŠ½ŃŒŃ‡Š¶ŃŠ½Šµ ę·±åœ³åŒ—ē†čŽ«ę–Æē§‘å¤§å­¦'),
(90505, 'https://ror.org/051acq669', 'no_lang_code', 1, 'https://ror.org/051acq669 Raytheon Technologies (Germany)'),
(90506, 'https://ror.org/04d23a975', 'en', 1, 'https://ror.org/04d23a975 Laboratorio de Investigación Naval de los Estados Unidos United States Naval Research Laboratory'),
(90507, 'https://ror.org/03pnvey90', 'no_lang_code', 1, 'https://ror.org/03pnvey90 ARES (United States)'),
(90508, 'https://ror.org/00v4yjm67', 'no_lang_code', 1, 'https://ror.org/00v4yjm67 Cihan University Sulaimaniya Ų²Ų§Ł†Ś©Ū†ŪŒ Ų¬ŪŒŁ‡Ų§Ł† Ų³Ł„ŪŽŁ…Ų§Ł†ŪŒ'),
(90509, 'https://ror.org/05xj12p61', 'en', 1, 'https://ror.org/05xj12p61 Deutsche Gesellschaft für Luft- und Raumfahrt - Lilienthal-Oberth e.V. German Society for Aeronautics and Astronautics'),
(90510, 'https://ror.org/05wthjx48', 'en', 0, 'https://ror.org/05wthjx48 New York University School of Medicine'),
(90511, 'https://ror.org/0366raz47', 'en', 1, 'https://ror.org/0366raz47 Naval Research Laboratory Remote Sensing Division'),
(90512, 'https://ror.org/02nc0ck44', 'en', 1, 'https://ror.org/02nc0ck44 NOAA National Marine Fisheries Service Northeast Fisheries Science Center'),
(90513, 'https://ror.org/00jerb145', 'en', 1, 'https://ror.org/00jerb145 Washington Hospital'),
(90514, 'https://ror.org/035gna214', 'en', 1, 'https://ror.org/035gna214 Nova Scotia Health Authority'),
(90515, 'https://ror.org/03j9xzm13', 'en', 1, 'https://ror.org/03j9xzm13 Naval Research Laboratory Optical Sciences Division'),
(90516, 'https://ror.org/03fwpw829', 'en', 1, 'https://ror.org/03fwpw829 Dr. Shroff’s Charity Eye Hospital'),
(90517, 'https://ror.org/02sptwz63', 'en', 1, 'https://ror.org/02sptwz63 Danish Agency for Science and Higher Education'),
(90518, 'https://ror.org/030pnaq74', 'en', 1, 'https://ror.org/030pnaq74 Open Library Foundation'),
(90519, 'https://ror.org/02n8rtn22', 'en', 1, 'https://ror.org/02n8rtn22 Naval Research Laboratory Materials Science and Technology Division'),
(90520, 'https://ror.org/04j413049', 'en', 1, 'https://ror.org/04j413049 Rockingham Peel Group'),
(90521, 'https://ror.org/03p2cen66', 'en', 1, 'https://ror.org/03p2cen66 Naval Research Laboratory Radar Division'),
(90522, 'https://ror.org/05wk0m864', 'en', 1, 'https://ror.org/05wk0m864 Cold Regions Research and Engineering Laboratory'),
(90523, 'https://ror.org/05a86es26', 'en', 1, 'https://ror.org/05a86es26 Aichi Kidney Foundation ę„›ēŸ„č…Žč‡“č²”å›£'),
(90524, 'https://ror.org/013t3qe76', 'en', 1, 'https://ror.org/013t3qe76 Mwanza University'),
(90525, 'https://ror.org/01nqb1v76', 'no_lang_code', 0, 'https://ror.org/01nqb1v76 Goodyear Aerospace (United States)'),
(90526, 'https://ror.org/04k67r158', 'no_lang_code', 0, 'https://ror.org/04k67r158 Collins Aerospace (United States)'),
(90527, 'https://ror.org/04kz4p343', 'en', 1, 'https://ror.org/04kz4p343 Institute for Collaborative Biotechnologies'),
(90528, 'https://ror.org/05rr9sv60', 'en', 1, 'https://ror.org/05rr9sv60 Naval Research Laboratory Space Systems Development Division'),
(90529, 'https://ror.org/0551hes90', 'en', 1, 'https://ror.org/0551hes90 Prince William Sound Science Center'),
(90530, 'https://ror.org/03chte209', 'en', 1, 'https://ror.org/03chte209 Office of the Governor State of California'),
(90531, 'https://ror.org/010d98035', 'en', 1, 'https://ror.org/010d98035 Azərbaycan Texnologiya Universiteti University of Technology of Azerbaijan АзербайГжанский Технологический Университет'),
(90532, 'https://ror.org/0398xj847', 'en', 1, 'https://ror.org/0398xj847 Montana Fish, Wildlife & Parks'),
(90533, 'https://ror.org/03bp30y45', 'en', 1, 'https://ror.org/03bp30y45 DKMS Foundation'),
(90534, 'https://ror.org/05hpfkn88', 'pt', 1, 'https://ror.org/05hpfkn88 Federal University of Rio Grande Universidade Federal do Rio Grande'),
(90535, 'https://ror.org/005y45s37', 'en', 1, 'https://ror.org/005y45s37 Earthwatch Europe'),
(90536, 'https://ror.org/04dqdxm60', 'en', 1, 'https://ror.org/04dqdxm60 University of Maryland Center for Environmental Science'),
(90537, 'https://ror.org/013sk6x84', 'en', 1, 'https://ror.org/013sk6x84 Janelia Research Campus'),
(90538, 'https://ror.org/038z2eg27', 'en', 1, 'https://ror.org/038z2eg27 Universidad de Puerto Rico en Arecibo University of Puerto Rico at Arecibo'),
(90539, 'https://ror.org/05a260x64', 'en', 1, 'https://ror.org/05a260x64 Global Crop Diversity Trust'),
(90540, 'https://ror.org/02mfrg180', 'no_lang_code', 0, 'https://ror.org/02mfrg180 United Technologies (United States)'),
(90541, 'https://ror.org/034vpja60', 'pt', 1, 'https://ror.org/034vpja60 Federal University of Alfenas Universidade Federal de Alfenas'),
(90542, 'https://ror.org/026er9r08', 'no_lang_code', 1, 'https://ror.org/026er9r08 Lockheed Martin (United States)'),
(90543, 'https://ror.org/0553w5c95', 'pt', 1, 'https://ror.org/0553w5c95 Federal Institute of Education, Science and Technology of Minas Gerais Instituto Federal de Educação, Ciência e Tecnologia de Minas Gerais'),
(90544, 'https://ror.org/03padf885', 'ro', 1, 'https://ror.org/03padf885 Ministerul Cercetării și Inovării Ministry of Research and Innovation'),
(90545, 'https://ror.org/01wn4rj56', 'id', 1, 'https://ror.org/01wn4rj56 Institut Teknologi Dan Bisnis STIKOM Bali'),
(90546, 'https://ror.org/01zb8p127', 'no_lang_code', 0, 'https://ror.org/01zb8p127 Allied Corporation (United States)'),
(90547, 'https://ror.org/04ygk5j35', 'pt', 1, 'https://ror.org/04ygk5j35 State University of Feira de Santana Universidade Estadual de Feira de Santana'),
(90548, 'https://ror.org/01vgenm18', 'no_lang_code', 0, 'https://ror.org/01vgenm18 Showa Denko Materials Co., Ltd. (Japan) ę˜­å’Œé›»å·„ćƒžćƒ†ćƒŖć‚¢ćƒ«ć‚ŗę Ŗå¼ä¼šē¤¾'),
(90549, 'https://ror.org/04yy13d34', 'pt', 1, 'https://ror.org/04yy13d34 Fundação Lemann The Lemann Foundation'),
(90550, 'https://ror.org/046n2jy73', 'en', 1, 'https://ror.org/046n2jy73 Canadian Statistical Sciences Institute Institut Canadien des Sciences Statistiques'),
(90551, 'https://ror.org/01znn6x10', 'en', 1, 'https://ror.org/01znn6x10 KBase'),
(90552, 'https://ror.org/02ggt9460', 'pt', 1, 'https://ror.org/02ggt9460 Mato Grosso do Sul State University Universidade Estadual de Mato Grosso do Sul'),
(90553, 'https://ror.org/051gb6s93', 'en', 1, 'https://ror.org/051gb6s93 Excelia Business School'),
(90554, 'https://ror.org/031b7p356', 'cs', 1, 'https://ror.org/031b7p356 Alzheimer Nadačnƭ Fond Czech Alzheimer''s Foundation'),
(90555, 'https://ror.org/04gy6rq49', 'en', 0, 'https://ror.org/04gy6rq49 Phillips Laboratory'),
(90556, 'https://ror.org/01nebar93', 'en', 1, 'https://ror.org/01nebar93 Rose Hills Foundation'),
(90557, 'https://ror.org/01av3m334', 'pt', 1, 'https://ror.org/01av3m334 Federal University of Triângulo Mineiro Universidade Federal do Triângulo Mineiro'),
(90558, 'https://ror.org/020tnht88', 'en', 1, 'https://ror.org/020tnht88 Western Association of Fish and Wildlife Agencies'),
(90559, 'https://ror.org/01z60hv97', 'no_lang_code', 0, 'https://ror.org/01z60hv97 Lockheed Missiles and Space Company (United States)'),
(90560, 'https://ror.org/02hkzh190', 'en', 1, 'https://ror.org/02hkzh190 VNU Science and Technology Development Fund'),
(90561, 'https://ror.org/034waa237', 'en', 1, 'https://ror.org/034waa237 Cluster of Excellence on Plant Sciences Exzellenzcluster für Pflanzenwissenschaften'),
(90562, 'https://ror.org/02ja0m249', 'en', 1, 'https://ror.org/02ja0m249 Shirley Ryan AbilityLab'),
(90563, 'https://ror.org/03q9sr818', 'pt', 1, 'https://ror.org/03q9sr818 Federal University of Para Universidade Federal do ParĆ”'),
(90564, 'https://ror.org/02x2gbe80', 'pt', 1, 'https://ror.org/02x2gbe80 Hospital UniversitƔrio de Brasƭlia'),
(90565, 'https://ror.org/0532s7j62', 'no_lang_code', 1, 'https://ror.org/0532s7j62 Empresas PĆŗblicas de MedellĆ­n (Colombia)'),
(90566, 'https://ror.org/00ge23k91', 'pt', 1, 'https://ror.org/00ge23k91 Federal Institute of Education, Science and Technology of Triângulo Mineiro Instituto Federal de Educação, Ciência e Tecnologia do Triângulo Mineiro'),
(90567, 'https://ror.org/052451r09', 'no_lang_code', 1, 'https://ror.org/052451r09 Pratt & Whitney (United States)'),
(90568, 'https://ror.org/032hx4q18', 'no_lang_code', 1, 'https://ror.org/032hx4q18 Dow Chemical (United States)'),
(90569, 'https://ror.org/02842cb31', 'pt', 1, 'https://ror.org/02842cb31 Federal University of RondƓnia Universidade Federal de RondƓnia'),
(90570, 'https://ror.org/048jthh02', 'es', 0, 'https://ror.org/048jthh02 Colciencias Departamento Administrativo de Ciencia, Tecnología e Innovación'),
(90571, 'https://ror.org/05d659s21', 'en', 1, 'https://ror.org/05d659s21 Liaoning Cancer Hospital & Institute'),
(90572, 'https://ror.org/03mv2rd02', 'en', 1, 'https://ror.org/03mv2rd02 Royal Government of Bhutan'),
(90573, 'https://ror.org/0015pkk46', 'en', 1, 'https://ror.org/0015pkk46 Cooperative Programs for the Advancement of Earth system science'),
(90574, 'https://ror.org/00xkhc673', 'en', 1, 'https://ror.org/00xkhc673 Canadian Lyme Disease Foundation Fondation canadienne de la maladie de Lyme'),
(90575, 'https://ror.org/04hj96d73', 'no_lang_code', 1, 'https://ror.org/04hj96d73 Union Carbide (United States)'),
(90576, 'https://ror.org/023drta67', 'en', 1, 'https://ror.org/023drta67 BIO5 Institute'),
(90577, 'https://ror.org/03eve7z35', 'pt', 1, 'https://ror.org/03eve7z35 Hospital UniversitÔrio da Universidade Federal do Maranhão'),
(90578, 'https://ror.org/04aqjf708', 'en', 1, 'https://ror.org/04aqjf708 New York State Psychiatric Institute'),
(90579, 'https://ror.org/00j7dz696', 'da', 1, 'https://ror.org/00j7dz696 Landbrugsstyrelsen'),
(90580, 'https://ror.org/032d0e990', 'en', 1, 'https://ror.org/032d0e990 Indian Institute of Science Education and Research, Tirupati'),
(90581, 'https://ror.org/02hcx7n63', 'en', 1, 'https://ror.org/02hcx7n63 Toho University ę±é‚¦å¤§å­¦'),
(90582, 'https://ror.org/03490as77', 'pt', 1, 'https://ror.org/03490as77 Federal University of Rio de Janeiro Universidade Federal do Rio de Janeiro'),
(90583, 'https://ror.org/05vagpr62', 'en', 1, 'https://ror.org/05vagpr62 Krembil Brain Institute'),
(90584, 'https://ror.org/05y2b6q82', 'en', 1, 'https://ror.org/05y2b6q82 Henan Provincial Department of Human Resources and Social Security ę²³å—ēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(90585, 'https://ror.org/03gkvrb60', 'no_lang_code', 0, 'https://ror.org/03gkvrb60 Raytheon (United States)'),
(90586, 'https://ror.org/043sygp97', 'no_lang_code', 0, 'https://ror.org/043sygp97 British Aerospace (United Kingdom)'),
(90587, 'https://ror.org/02239nd21', 'pt', 1, 'https://ror.org/02239nd21 Federal Institute of Education, Science and Technology of ParÔ Instituto Federal de Educação, Ciência e Tecnologia do ParÔ'),
(90588, 'https://ror.org/01f6jys10', 'en', 1, 'https://ror.org/01f6jys10 Krembil Research Institute'),
(90589, 'https://ror.org/05sdqd547', 'en', 1, 'https://ror.org/05sdqd547 Rajiv Gandhi Centre for Biotechnology'),
(90590, 'https://ror.org/01zhx8042', 'no_lang_code', 0, 'https://ror.org/01zhx8042 Lockheed (United States)'),
(90591, 'https://ror.org/012pb6c26', 'en', 1, 'https://ror.org/012pb6c26 National Heart Lung and Blood Institute'),
(90592, 'https://ror.org/03jvtcb24', 'en', 0, 'https://ror.org/03jvtcb24 Wright Laboratory'),
(90593, 'https://ror.org/05g920e57', 'no_lang_code', 0, 'https://ror.org/05g920e57 Litton Industries (United States)'),
(90594, 'https://ror.org/0055b3j94', 'en', 1, 'https://ror.org/0055b3j94 KITE Research Institute'),
(90595, 'https://ror.org/04p05g969', 'no_lang_code', 0, 'https://ror.org/04p05g969 Douglas Aircraft (United States)'),
(90596, 'https://ror.org/00cfa1c07', 'en', 1, 'https://ror.org/00cfa1c07 Palestine Technical University - Kadoorie Ų¬Ų§Ł…Ų¹Ų© ŁŁ„Ų³Ų·ŁŠŁ† Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© - خضوري'),
(90597, 'https://ror.org/04tz64554', 'en', 1, 'https://ror.org/04tz64554 Defense Threat Reduction Agency'),
(90598, 'https://ror.org/047908t24', 'pt', 1, 'https://ror.org/047908t24 Federal University of Pernambuco Universidade Federal de Pernambuco'),
(90599, 'https://ror.org/006qmn341', 'en', 1, 'https://ror.org/006qmn341 Society for Integrative and Comparative Biology'),
(90600, 'https://ror.org/018yzr753', 'pt', 1, 'https://ror.org/018yzr753 Hospital UniversitƔrio Regional do Norte do ParanƔ'),
(90601, 'https://ror.org/02pt8g129', 'en', 1, 'https://ror.org/02pt8g129 MakeWay'),
(90602, 'https://ror.org/04xwxtp60', 'id', 1, 'https://ror.org/04xwxtp60 Politeknik Negeri Semarang'),
(90603, 'https://ror.org/0431d2d16', 'no_lang_code', 0, 'https://ror.org/0431d2d16 Hughes Aircraft (United States)'),
(90604, 'https://ror.org/04p1m8w53', 'en', 1, 'https://ror.org/04p1m8w53 Erell Institute'),
(90605, 'https://ror.org/03bk74w21', 'pt', 1, 'https://ror.org/03bk74w21 Instituto Federal de Educação, Ciência e Tecnologia de Brasília'),
(90606, 'https://ror.org/05ngffj85', 'nl', 1, 'https://ror.org/05ngffj85 Uyttenboogaart-Eliasen Stichting'),
(90607, 'https://ror.org/031wg9z98', 'en', 1, 'https://ror.org/031wg9z98 American Research Institute of the South Caucasus'),
(90608, 'https://ror.org/043c66v57', 'en', 1, 'https://ror.org/043c66v57 Missouri Department of Conservation'),
(90609, 'https://ror.org/023ny1p48', 'en', 1, 'https://ror.org/023ny1p48 National Heart, Lung, and Blood Institute Division of Intramural Research'),
(90610, 'https://ror.org/02wjqm946', 'no_lang_code', 0, 'https://ror.org/02wjqm946 McDonnel Douglas (United States)'),
(90611, 'https://ror.org/02xkdev90', 'en', 1, 'https://ror.org/02xkdev90 Department of Mathematical Sciences'),
(90612, 'https://ror.org/02dpmge29', 'en', 1, 'https://ror.org/02dpmge29 International Centre for Climate Change and Development'),
(90613, 'https://ror.org/03ehp1h78', 'pt', 1, 'https://ror.org/03ehp1h78 Federal University of Roraima Universidade Federal de Roraima'),
(90614, 'https://ror.org/04j5z3x06', 'pt', 1, 'https://ror.org/04j5z3x06 Universidade do Estado do Amazonas'),
(90615, 'https://ror.org/05km0w312', 'en', 1, 'https://ror.org/05km0w312 New Mansoura University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŲµŁˆŲ±Ų© Ų§Ł„Ų¬ŲÆŁŠŲÆŲ©'),
(90616, 'https://ror.org/02dyts510', 'no_lang_code', 1, 'https://ror.org/02dyts510 Tennet (Netherlands)'),
(90617, 'https://ror.org/043fhe951', 'pt', 1, 'https://ror.org/043fhe951 Federal University of Maranhão Universidade Federal do Maranhão'),
(90618, 'https://ror.org/03ek3rf92', 'no_lang_code', 0, 'https://ror.org/03ek3rf92 GTE (United States)'),
(90619, 'https://ror.org/00fzhcx31', 'en', 1, 'https://ror.org/00fzhcx31 The Darwin Trust of Edinburgh'),
(90620, 'https://ror.org/02qw7gq21', 'en', 1, 'https://ror.org/02qw7gq21 Upgrad (India)'),
(90621, 'https://ror.org/032wfpw70', 'no_lang_code', 1, 'https://ror.org/032wfpw70 LIDSEN Publishing Inc. (United States)'),
(90622, 'https://ror.org/03a502s36', 'no_lang_code', 0, 'https://ror.org/03a502s36 Orbital ATK (United States)'),
(90623, 'https://ror.org/03rcpts17', 'no_lang_code', 1, 'https://ror.org/03rcpts17 Evident Corporation (Japan)'),
(90624, 'https://ror.org/00t9vx427', 'en', 0, 'https://ror.org/00t9vx427 Southwestern Medical Center'),
(90625, 'https://ror.org/003dr2d22', 'en', 1, 'https://ror.org/003dr2d22 North Pacific International University of Bangladesh'),
(90626, 'https://ror.org/00dna7t83', 'pt', 1, 'https://ror.org/00dna7t83 Federal University of Alagoas Universidade Federal de Alagoas'),
(90627, 'https://ror.org/03y8ggs73', 'no_lang_code', 0, 'https://ror.org/03y8ggs73 Marconi Electronic Systems (United Kingdom)'),
(90628, 'https://ror.org/027s08w94', 'pt', 1, 'https://ror.org/027s08w94 State University of Ponta Grossa Universidade Estadual de Ponta Grossa'),
(90629, 'https://ror.org/007xr2v93', 'en', 1, 'https://ror.org/007xr2v93 Partnership for Observation of the Global Ocean'),
(90630, 'https://ror.org/02q070r42', 'pt', 1, 'https://ror.org/02q070r42 Dom Bosco Catholic University Universidade Católica Dom Bosco'),
(90631, 'https://ror.org/04n85w461', 'no_lang_code', 0, 'https://ror.org/04n85w461 McDonnel Aircraft (United States)'),
(90632, 'https://ror.org/04hm1bb33', 'no_lang_code', 1, 'https://ror.org/04hm1bb33 Brandon Roberts + Associates (United States)'),
(90633, 'https://ror.org/05r3bjq62', 'en', 1, 'https://ror.org/05r3bjq62 Donald K. Johnson Eye Institute'),
(90634, 'https://ror.org/0353n6963', 'pt', 1, 'https://ror.org/0353n6963 Hospital SĆ£o Lucas da PUCRS'),
(90635, 'https://ror.org/0190k2z71', 'id', 1, 'https://ror.org/0190k2z71 Politeknik Energi dan Mineral Akamigas'),
(90636, 'https://ror.org/05sdke129', 'en', 1, 'https://ror.org/05sdke129 Danish Ministry of Environment and Food MiljĆø- og FĆødevareministeriet'),
(90637, 'https://ror.org/053vhsf19', 'no_lang_code', 1, 'https://ror.org/053vhsf19 Combustion Research and Flow Technology (United States)'),
(90638, 'https://ror.org/0251vfx90', 'no_lang_code', 0, 'https://ror.org/0251vfx90 Showa Denko (Japan) ę˜­å’Œé›»å·„ę Ŗå¼ä¼šē¤¾'),
(90639, 'https://ror.org/015n1m812', 'pt', 1, 'https://ror.org/015n1m812 Bahia State University Universidade do Estado da Bahia'),
(90640, 'https://ror.org/0358r4163', 'en', 1, 'https://ror.org/0358r4163 Bentham-Moxon Trust'),
(90641, 'https://ror.org/042r36z33', 'pt', 1, 'https://ror.org/042r36z33 State University of ParĆ” Universidade do Estado do ParĆ”'),
(90642, 'https://ror.org/01cm9aw18', 'no_lang_code', 0, 'https://ror.org/01cm9aw18 Martin Marietta (United States)'),
(90643, 'https://ror.org/02xm1d907', 'pt', 1, 'https://ror.org/02xm1d907 Escola Nacional de SaĆŗde PĆŗblica'),
(90644, 'https://ror.org/02ktfmz27', 'pt', 1, 'https://ror.org/02ktfmz27 Catholic University of Pernambuco Universidade Católica de Pernambuco'),
(90645, 'https://ror.org/002v2kq79', 'pt', 1, 'https://ror.org/002v2kq79 Federal University of Technology of ParanÔ Universidade Tecnológica Federal do ParanÔ'),
(90646, 'https://ror.org/03jpb1072', 'en', 1, 'https://ror.org/03jpb1072 Southern African Science Service Centre for Climate Change and Adaptive Land Management'),
(90647, 'https://ror.org/00ynnr806', 'en', 1, 'https://ror.org/00ynnr806 Royal Botanic Gardens, Kew'),
(90648, 'https://ror.org/01zwq4y59', 'pt', 1, 'https://ror.org/01zwq4y59 State University of Santa Cruz Universidade Estadual de Santa Cruz'),
(90649, 'https://ror.org/056bp6y70', 'de', 0, 'https://ror.org/056bp6y70 Nuklearmedizinische Klinik des Klinikums rechts der Isar'),
(90650, 'https://ror.org/05j1kc284', 'en', 1, 'https://ror.org/05j1kc284 Hebei University of Economics and Business ę²³åŒ—ē»č“øå¤§å­¦'),
(90651, 'https://ror.org/003tsz145', 'de', 0, 'https://ror.org/003tsz145 Frauenklinik der Technischen Universität München'),
(90652, 'https://ror.org/046ygx235', 'en', 0, 'https://ror.org/046ygx235 Armstrong Laboratory'),
(90653, 'https://ror.org/01v0pgv63', 'no_lang_code', 1, 'https://ror.org/01v0pgv63 Olympus (Japan) ć‚ŖćƒŖćƒ³ćƒ‘ć‚¹ę Ŗå¼ä¼šē¤¾'),
(90654, 'https://ror.org/05tbp9v13', 'en', 1, 'https://ror.org/05tbp9v13 Valleywise Health'),
(90655, 'https://ror.org/01nbmrk54', 'en', 1, 'https://ror.org/01nbmrk54 Bureau of Educational and Cultural Affairs'),
(90656, 'https://ror.org/01dv63r93', 'pt', 1, 'https://ror.org/01dv63r93 Federal Institute of Education, Science and Technology of Baiano Instituto Federal de Educação, Ciência e Tecnologia Baiano'),
(90657, 'https://ror.org/01cc25b87', 'en', 1, 'https://ror.org/01cc25b87 Colorado Agricultural Experiment Station'),
(90658, 'https://ror.org/04bqqa360', 'pt', 1, 'https://ror.org/04bqqa360 State University of MaringĆ” Universidade Estadual de MaringĆ”'),
(90659, 'https://ror.org/050gv4c78', 'no_lang_code', 1, 'https://ror.org/050gv4c78 2i2c'),
(90660, 'https://ror.org/003dt3029', 'nl', 1, 'https://ror.org/003dt3029 Gieskes-Strijbis Fonds'),
(90661, 'https://ror.org/053xy8k29', 'pt', 1, 'https://ror.org/053xy8k29 Federal University of Tocantins Universidade Federal do Tocantins'),
(90662, 'https://ror.org/057mvv518', 'pt', 1, 'https://ror.org/057mvv518 Federal University of RecƓncavo da Bahia Universidade Federal do RecƓncavo da Bahia'),
(90663, 'https://ror.org/00ch7yk27', 'en', 1, 'https://ror.org/00ch7yk27 South Dakota School of Mines and Technology'),
(90664, 'https://ror.org/015g1jn89', 'pt', 1, 'https://ror.org/015g1jn89 Universidade Estadual da Zona Oeste'),
(90665, 'https://ror.org/021203s31', 'pt', 1, 'https://ror.org/021203s31 MapBiomas'),
(90666, 'https://ror.org/01pnsd879', 'no_lang_code', 1, 'https://ror.org/01pnsd879 Sulkhan-Saba Orbeliani University ეულხან-įƒ”įƒįƒ‘įƒ įƒįƒ įƒ‘įƒ”įƒšįƒ˜įƒįƒœįƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(90667, 'https://ror.org/0367ybf51', 'no_lang_code', 0, 'https://ror.org/0367ybf51 Orbital Sciences (United States)'),
(90668, 'https://ror.org/01ftg8r37', 'en', 1, 'https://ror.org/01ftg8r37 North Carolina Department of Environmental Quality'),
(90669, 'https://ror.org/0057rcj45', 'en', 1, 'https://ror.org/0057rcj45 Institute for Theoretical Physics and Modeling ÕÕ„Õ½Õ”ÕÆÕ”Õ¶ Õ–Õ«Õ¦Õ«ÕÆÕ”ÕµÕ« և Õ„ÕøÕ¤Õ„Õ¬Õ”Õ¾ÕøÖ€Õ“Õ”Õ¶ Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(90670, 'https://ror.org/015zds189', 'en', 1, 'https://ror.org/015zds189 Alaska Department of Transportation and Public Facilities'),
(90671, 'https://ror.org/04vs2n780', 'en', 1, 'https://ror.org/04vs2n780 University of Puerto Rico at Ponce'),
(90672, 'https://ror.org/01737f379', 'pt', 1, 'https://ror.org/01737f379 Federal University of Southern and Southeastern ParĆ” Universidade Federal do Sul e Sudeste do ParĆ”'),
(90673, 'https://ror.org/059qgcz87', 'fr', 1, 'https://ror.org/059qgcz87 UniversitĆ© Internationale Abulcasis des Sciences de la SantĆ© Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ł‡Ų±Ų§ŁˆŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ų¹Ł„ŁˆŁ… الصحة'),
(90674, 'https://ror.org/011y8cj77', 'es', 1, 'https://ror.org/011y8cj77 Prisma'),
(90675, 'https://ror.org/01eqwx273', 'en', 1, 'https://ror.org/01eqwx273 Hazrat-e Masoumeh University دانؓگاه Ų­Ų¶Ų±ŲŖ Ł…Ų¹ŲµŁˆŁ…Ł‡'),
(90676, 'https://ror.org/00gjnn020', 'es', 1, 'https://ror.org/00gjnn020 Instituto Universitario de Integración en la Comunidad'),
(90677, 'https://ror.org/042xt5161', 'en', 1, 'https://ror.org/042xt5161 University Health Network'),
(90678, 'https://ror.org/04tec8z30', 'pt', 1, 'https://ror.org/04tec8z30 Federal University of the State of Rio de Janeiro Universidade Federal do Estado do Rio de Janeiro'),
(90679, 'https://ror.org/01585b035', 'pt', 1, 'https://ror.org/01585b035 Londrina State University Universidade Estadual de Londrina'),
(90680, 'https://ror.org/01ypcm768', 'en', 1, 'https://ror.org/01ypcm768 New Zealand Antarctic Research Institute'),
(90681, 'https://ror.org/02g98ya79', 'en', 1, 'https://ror.org/02g98ya79 Hellman Foundation'),
(90682, 'https://ror.org/03ta25k06', 'pt', 1, 'https://ror.org/03ta25k06 GoiƔs State University Universidade Estadual de GoiƔs'),
(90683, 'https://ror.org/014geb094', 'en', 1, 'https://ror.org/014geb094 Fulbright Program'),
(90684, 'https://ror.org/03kxchy02', 'en', 1, 'https://ror.org/03kxchy02 California Tomato Research Institute'),
(90685, 'https://ror.org/00ftncg25', 'no_lang_code', 0, 'https://ror.org/00ftncg25 Bunker Ramo (United States)'),
(90686, 'https://ror.org/0379xnz71', 'pt', 1, 'https://ror.org/0379xnz71 Hospital UniversitƔrio AntƓnio Pedro'),
(90687, 'https://ror.org/04pznag94', 'pt', 1, 'https://ror.org/04pznag94 Hospital UniversitƔrio Clementino Fraga Filho'),
(90688, 'https://ror.org/03tzsdk41', 'fr', 1, 'https://ror.org/03tzsdk41 Sentinel North Sentinelle Nord'),
(90689, 'https://ror.org/01j56e062', 'pt', 1, 'https://ror.org/01j56e062 Catholic University of Petrópolis Universidade Católica de Petrópolis'),
(90690, 'https://ror.org/02j71c790', 'pt', 1, 'https://ror.org/02j71c790 Federal Rural University of Amazonia Universidade Federal Rural da AmazƓnia'),
(90691, 'https://ror.org/00m4dh193', 'en', 1, 'https://ror.org/00m4dh193 Amphibian Ark'),
(90692, 'https://ror.org/01pshgb33', 'no_lang_code', 1, 'https://ror.org/01pshgb33 Resonac (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¬ć‚¾ćƒŠćƒƒć‚Æ'),
(90693, 'https://ror.org/051v1dy68', 'en', 1, 'https://ror.org/051v1dy68 Bucharest Emergency University Hospital Spitalul Universitar de Urgenta Bucuresti'),
(90694, 'https://ror.org/03bfc4534', 'nl', 1, 'https://ror.org/03bfc4534 Zuyderland Medisch Centrum'),
(90695, 'https://ror.org/04n7vs332', 'en', 1, 'https://ror.org/04n7vs332 Lord Mayor’s Charitable Foundation'),
(90696, 'https://ror.org/0568cs376', 'no_lang_code', 1, 'https://ror.org/0568cs376 Commonwealth Edison (United States)'),
(90697, 'https://ror.org/017kjzz63', 'no_lang_code', 0, 'https://ror.org/017kjzz63 GEC (United Kingdom)'),
(90698, 'https://ror.org/00h25w961', 'en', 1, 'https://ror.org/00h25w961 Universidad de Puerto Rico, Recinto de Ciencias MƩdicas University of Puerto Rico, Medical Sciences Campus'),
(90699, 'https://ror.org/01zvnr827', 'en', 1, 'https://ror.org/01zvnr827 Dubai Police Academy Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų“Ų±Ų·Ų© دبي'),
(90700, 'https://ror.org/00ghka958', 'en', 1, 'https://ror.org/00ghka958 National Centre of Competence in Research Evolving Language Nationale Forschungsschwerpunkt Evolving Language PƓle de Recherche National Evolving Language'),
(90701, 'https://ror.org/02y7zaj23', 'pt', 1, 'https://ror.org/02y7zaj23 Instituto Federal de Educação, Ciência e Tecnologia de Pernambuco Pernambuco Federal Institute'),
(90702, 'https://ror.org/00ysy1705', 'es', 1, 'https://ror.org/00ysy1705 Ministerio de Educación y Cultura'),
(90703, 'https://ror.org/05sw4bn05', 'pt', 1, 'https://ror.org/05sw4bn05 Universidade de ItaĆŗna'),
(90704, 'https://ror.org/05838sn73', 'no_lang_code', 0, 'https://ror.org/05838sn73 Alliant Techsystems (United States)'),
(90705, 'https://ror.org/00mmnz357', 'pt', 1, 'https://ror.org/00mmnz357 Hospital UniversitƔrio Onofre Lopes'),
(90706, 'https://ror.org/03d2qmz71', 'en', 1, 'https://ror.org/03d2qmz71 Federal Ministry of Petroleum Resources'),
(90707, 'https://ror.org/00ebd0j26', 'id', 1, 'https://ror.org/00ebd0j26 Institut Agama Islam Almuslim Aceh'),
(90708, 'https://ror.org/020wm8g88', 'en', 1, 'https://ror.org/020wm8g88 University of Puerto Rico at Humacao'),
(90709, 'https://ror.org/05906sn23', 'en', 1, 'https://ror.org/05906sn23 American Fisheries Society'),
(90710, 'https://ror.org/03k3p7647', 'pt', 1, 'https://ror.org/03k3p7647 Federal University of Bahia Universidade Federal da Bahia'),
(90711, 'https://ror.org/01c8ccc98', 'en', 1, 'https://ror.org/01c8ccc98 California Strategic Growth Council'),
(90712, 'https://ror.org/00yxqn620', 'en', 1, 'https://ror.org/00yxqn620 University of Puerto Rico at Cayey'),
(90713, 'https://ror.org/05ne20t07', 'pt', 1, 'https://ror.org/05ne20t07 Universidade Estadual do Oeste do ParanĆ” Western ParanĆ” State University'),
(90714, 'https://ror.org/03raeyn57', 'pt', 1, 'https://ror.org/03raeyn57 Federal University of Western Bahia Universidade Federal do Oeste da Bahia'),
(90715, 'https://ror.org/01040r538', 'en', 1, 'https://ror.org/01040r538 Telford College'),
(90716, 'https://ror.org/00xg4bh43', 'en', 1, 'https://ror.org/00xg4bh43 Texas Advanced Computing Center'),
(90717, 'https://ror.org/03wbkx358', 'en', 1, 'https://ror.org/03wbkx358 Federal Office of Meteorology and Climatology MeteoSwiss MeteoSchweiz MeteoSvizzera MƩtƩoSuisse'),
(90718, 'https://ror.org/05d80e146', 'en', 1, 'https://ror.org/05d80e146 Southwestern Medical Center'),
(90719, 'https://ror.org/01k32vr40', 'en', 1, 'https://ror.org/01k32vr40 Bureau of International Narcotics and Law Enforcement Affairs'),
(90720, 'https://ror.org/02ssw1840', 'no_lang_code', 1, 'https://ror.org/02ssw1840 GV20 Therapeutics (United States)'),
(90721, 'https://ror.org/0366d2847', 'pt', 1, 'https://ror.org/0366d2847 Federal University of Mato Grosso do Sul Universidade Federal de Mato Grosso do Sul'),
(90722, 'https://ror.org/0395ngr64', 'es', 1, 'https://ror.org/0395ngr64 Instituto AntƔrtico Uruguayo Uruguayan Antarctic Institute'),
(90723, 'https://ror.org/05b8c0r92', 'en', 1, 'https://ror.org/05b8c0r92 Laboratories of Analytical Biology'),
(90724, 'https://ror.org/037dt7852', 'en', 1, 'https://ror.org/037dt7852 AGE-WELL'),
(90725, 'https://ror.org/05j6gc361', 'en', 0, 'https://ror.org/05j6gc361 White Rose East Asia Centre'),
(90726, 'https://ror.org/02em6e271', 'no_lang_code', 1, 'https://ror.org/02em6e271 Knorr-Bremse (France)'),
(90727, 'https://ror.org/023bw3q25', 'en', 1, 'https://ror.org/023bw3q25 Robert M. Fisher Memorial Foundation'),
(90728, 'https://ror.org/029sjzg14', 'en', 1, 'https://ror.org/029sjzg14 PhRMA Foundation'),
(90729, 'https://ror.org/049rrx986', 'pt', 1, 'https://ror.org/049rrx986 Universidade Estadual do ParanĆ”'),
(90730, 'https://ror.org/03fd5ne08', 'es', 1, 'https://ror.org/03fd5ne08 Ministerio de Ciencia, Tecnología e Innovación'),
(90731, 'https://ror.org/02q9pw720', 'en', 0, 'https://ror.org/02q9pw720 Rome Laboratory'),
(90732, 'https://ror.org/04sm5zn07', 'no_lang_code', 1, 'https://ror.org/04sm5zn07 Boeing (United States)'),
(90733, 'https://ror.org/00axehm46', 'pt', 1, 'https://ror.org/00axehm46 Federal Institute of RondÓnia Instituto Federal de Educação, Ciência e Tecnologia de RondÓnia'),
(90734, 'https://ror.org/0221pcv84', 'en', 1, 'https://ror.org/0221pcv84 Svensk biodiversitetsinfrastruktur Swedish Biodiversity Data Infrastructure'),
(90735, 'https://ror.org/02h0cdt26', 'no_lang_code', 0, 'https://ror.org/02h0cdt26 BDM International (United States)'),
(90736, 'https://ror.org/051xsx468', 'pt', 1, 'https://ror.org/051xsx468 Instituto de BiofĆ­sica Carlos Chagas Filho'),
(90737, 'https://ror.org/04p8ejq70', 'no_lang_code', 1, 'https://ror.org/04p8ejq70 BAE Systems (United Kingdom)'),
(90738, 'https://ror.org/02rjhbb08', 'pt', 1, 'https://ror.org/02rjhbb08 Fluminense Federal University Universidade Federal Fluminense'),
(90739, 'https://ror.org/013xpqh61', 'en', 1, 'https://ror.org/013xpqh61 Munster Technological University Ollscoil TeicneolaĆ­ochta na Mumhan'),
(90740, 'https://ror.org/04wpy7706', 'en', 1, 'https://ror.org/04wpy7706 The Dr. Mortimer and Theresa Sackler Foundation'),
(90741, 'https://ror.org/00wek6x04', 'en', 1, 'https://ror.org/00wek6x04 Recinto Universitario de Mayagüez University of Puerto Rico-Mayaguez'),
(90742, 'https://ror.org/00kwnx126', 'pt', 1, 'https://ror.org/00kwnx126 Federal University of PiauĆ­ Universidade Federal do PiauĆ­'),
(90743, 'https://ror.org/058ackw67', 'en', 1, 'https://ror.org/058ackw67 Ted Nash Long Life Foundation'),
(90744, 'https://ror.org/04d0xx942', 'en', 1, 'https://ror.org/04d0xx942 Ministry of Education Ministério da Educação'),
(90745, 'https://ror.org/03308db07', 'en', 1, 'https://ror.org/03308db07 BT Research'),
(90746, 'https://ror.org/0240tjc76', 'en', 1, 'https://ror.org/0240tjc76 Royal Society of South Australia'),
(90747, 'https://ror.org/048za2w47', 'no_lang_code', 0, 'https://ror.org/048za2w47 AlliedSignal (United States)'),
(90748, 'https://ror.org/02zyw2q61', 'es', 1, 'https://ror.org/02zyw2q61 Escuela Superior PolitƩcnica del Chimborazo'),
(90749, 'https://ror.org/02mdznj53', 'en', 1, 'https://ror.org/02mdznj53 Nigerian National Petroleum Company Limited'),
(90750, 'https://ror.org/04wn09761', 'pt', 1, 'https://ror.org/04wn09761 Federal University of Rio Grande do Norte Universidade Federal do Rio Grande do Norte'),
(90751, 'https://ror.org/05mmcm185', 'en', 1, 'https://ror.org/05mmcm185 International Association for the Study of Popular Romance'),
(90752, 'https://ror.org/03d7bq150', 'no_lang_code', 0, 'https://ror.org/03d7bq150 Philco-Ford (United States)'),
(90753, 'https://ror.org/000fg4e24', 'en', 1, 'https://ror.org/000fg4e24 WCRP-CMIP International Project Office'),
(90754, 'https://ror.org/043s0sy92', 'en', 1, 'https://ror.org/043s0sy92 Emory Global Health Institute'),
(90755, 'https://ror.org/031va9m79', 'pt', 1, 'https://ror.org/031va9m79 Federal University of AmapĆ” Universidade Federal do AmapĆ”'),
(90756, 'https://ror.org/03xf64p49', 'en', 1, 'https://ror.org/03xf64p49 National Centre of Competence in Research Digital Fabrication Nationaler Forschungsschwerpunkt Digitale Fabrikation'),
(90757, 'https://ror.org/05fyj0w30', 'de', 1, 'https://ror.org/05fyj0w30 Deutsche Knochenmarkspenderdatei'),
(90758, 'https://ror.org/03ex4ek60', 'en', 1, 'https://ror.org/03ex4ek60 Schroeder Arthritis Institute'),
(90759, 'https://ror.org/02vc2hv78', 'sv', 1, 'https://ror.org/02vc2hv78 Stiftelsen Zoologisk Forskning'),
(90760, 'https://ror.org/02rse7p59', 'no_lang_code', 1, 'https://ror.org/02rse7p59 Sandoz Group AG (Switzerland)'),
(90761, 'https://ror.org/04888gh49', 'fr', 1, 'https://ror.org/04888gh49 Ɖcole Nationale SupĆ©rieure des Postes et des TĆ©lĆ©communications'),
(90762, 'https://ror.org/05kewds18', 'no_lang_code', 1, 'https://ror.org/05kewds18 Northrop Grumman (United States)'),
(90763, 'https://ror.org/0190e1q31', 'en', 1, 'https://ror.org/0190e1q31 Antarctica New Zealand'),
(90764, 'https://ror.org/01bdqmg55', 'no_lang_code', 1, 'https://ror.org/01bdqmg55 Guangxi Communication Design Group Co., LTD (China) å¹æč„æäŗ¤é€šč®¾č®”é›†å›¢ęœ‰é™å…¬åø'),
(90765, 'https://ror.org/05wvw0v54', 'en', 1, 'https://ror.org/05wvw0v54 Walton Institute for Information and Communications Systems Science'),
(90766, 'https://ror.org/005cybj21', 'en', 1, 'https://ror.org/005cybj21 Observatório do Valongo Valongo Observatory'),
(90767, 'https://ror.org/05tqz2732', 'no_lang_code', 0, 'https://ror.org/05tqz2732 Bendix (United States)'),
(90768, 'https://ror.org/05revcs89', 'en', 1, 'https://ror.org/05revcs89 IISD Experimental Lakes Area'),
(90769, 'https://ror.org/03bbhv598', 'en', 1, 'https://ror.org/03bbhv598 Maricopa Medical Center');
INSERT INTO `rors` VALUES
(90770, 'https://ror.org/00sec1m50', 'pt', 1, 'https://ror.org/00sec1m50 State University of CearĆ” Universidade Estadual do CearĆ”'),
(90771, 'https://ror.org/03vadg117', 'pt', 1, 'https://ror.org/03vadg117 Hospital UniversitƔrio Regional de MaringƔ'),
(90772, 'https://ror.org/03p28wy22', 'no_lang_code', 0, 'https://ror.org/03p28wy22 Philco (United States)'),
(90773, 'https://ror.org/036f2ks50', 'pt', 1, 'https://ror.org/036f2ks50 Ciências e Cognição'),
(90774, 'https://ror.org/00dfrf681', 'en', 1, 'https://ror.org/00dfrf681 Oil Spill Recovery Institute'),
(90775, 'https://ror.org/02t71h845', 'no_lang_code', 1, 'https://ror.org/02t71h845 Honeywell (United States)'),
(90776, 'https://ror.org/05rpzs058', 'pt', 1, 'https://ror.org/05rpzs058 Universidade de Caxias do Sul University of Caxias Do Sul'),
(90777, 'https://ror.org/02ksmb993', 'pt', 1, 'https://ror.org/02ksmb993 Federal Rural University of Pernambuco Universidade Federal Rural de Pernambuco'),
(90778, 'https://ror.org/03qhydd02', 'en', 1, 'https://ror.org/03qhydd02 North Carolina Geological Survey'),
(90779, 'https://ror.org/04tajb587', 'en', 1, 'https://ror.org/04tajb587 Royal Society Te Apārangi'),
(90780, 'https://ror.org/00g3xxn90', 'en', 1, 'https://ror.org/00g3xxn90 Departamento de Salud de Puerto Rico Puerto Rico Department of Health'),
(90781, 'https://ror.org/017ysyq31', 'en', 1, 'https://ror.org/017ysyq31 San Juan City Hospital'),
(90782, 'https://ror.org/05tb0v960', 'en', 1, 'https://ror.org/05tb0v960 Narcolepsy Network'),
(90783, 'https://ror.org/00qw1qw03', 'en', 1, 'https://ror.org/00qw1qw03 St. Louis Children''s Hospital'),
(90784, 'https://ror.org/04bg0r715', 'en', 1, 'https://ror.org/04bg0r715 Carlos Albizu University Universidad Carlos Albizu'),
(90785, 'https://ror.org/04v3xcy66', 'fr', 1, 'https://ror.org/04v3xcy66 HƓpital Charles-Foix'),
(90786, 'https://ror.org/037897814', 'en', 1, 'https://ror.org/037897814 Office of Fossil Energy and Carbon Management'),
(90787, 'https://ror.org/00rpn1945', 'en', 1, 'https://ror.org/00rpn1945 Ho Chi Minh City University of Economics and Finance TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ - TĆ i chĆ­nh ThĆ nh phố Hồ ChĆ­ Minh'),
(90788, 'https://ror.org/05908st72', 'es', 1, 'https://ror.org/05908st72 Hospital Damas'),
(90789, 'https://ror.org/02q70n095', 'en', 1, 'https://ror.org/02q70n095 California Department of Health Care Services'),
(90790, 'https://ror.org/00744wk93', 'en', 1, 'https://ror.org/00744wk93 Department of Public Health'),
(90791, 'https://ror.org/03cx1e057', 'en', 1, 'https://ror.org/03cx1e057 American University of Puerto Rico'),
(90792, 'https://ror.org/03x9nbm24', 'en', 1, 'https://ror.org/03x9nbm24 Office of Regulatory and Policy Affairs'),
(90793, 'https://ror.org/0139c4536', 'en', 1, 'https://ror.org/0139c4536 Oxford University Clinical Research Unit Indonesia'),
(90794, 'https://ror.org/01ez1vb97', 'en', 1, 'https://ror.org/01ez1vb97 Reactor Fleet and Advanced Reactor Deployment'),
(90795, 'https://ror.org/05cpnza27', 'en', 1, 'https://ror.org/05cpnza27 Office of Congressional and Intergovernmental Affairs'),
(90796, 'https://ror.org/03pbsn844', 'en', 1, 'https://ror.org/03pbsn844 Guam Community College'),
(90797, 'https://ror.org/027jrtw17', 'fr', 1, 'https://ror.org/027jrtw17 UMI MajuLab'),
(90798, 'https://ror.org/01xkymb03', 'en', 1, 'https://ror.org/01xkymb03 St. Louis Ovarian Cancer Awareness'),
(90799, 'https://ror.org/000chmh95', 'en', 1, 'https://ror.org/000chmh95 Nagao Natural Environment Foundation'),
(90800, 'https://ror.org/05n2mnn68', 'fr', 1, 'https://ror.org/05n2mnn68 Enzymologie de l''ARN'),
(90801, 'https://ror.org/01s0rab11', 'es', 1, 'https://ror.org/01s0rab11 Ministerio de Telecomunicaciones y de la Sociedad de la Información'),
(90802, 'https://ror.org/004nzga04', 'en', 1, 'https://ror.org/004nzga04 Office of Materials and Chemical Technologies'),
(90803, 'https://ror.org/02e1yp118', 'en', 1, 'https://ror.org/02e1yp118 Neighborhood Cancer Connection'),
(90804, 'https://ror.org/011hc8f90', 'en', 1, 'https://ror.org/011hc8f90 DEVCOM Army Research Laboratory'),
(90805, 'https://ror.org/00536t873', 'en', 1, 'https://ror.org/00536t873 Artificial Intelligence & Technology Office'),
(90806, 'https://ror.org/041fzsr16', 'en', 1, 'https://ror.org/041fzsr16 Veterinary Services and Animal Health'),
(90807, 'https://ror.org/03qdp0d02', 'en', 1, 'https://ror.org/03qdp0d02 Moana Connect'),
(90808, 'https://ror.org/02391ds27', 'en', 1, 'https://ror.org/02391ds27 Lung Cancer Foundation of America'),
(90809, 'https://ror.org/04bfwqa71', 'en', 1, 'https://ror.org/04bfwqa71 Nuclear Fuel Cycle and Supply Chain'),
(90810, 'https://ror.org/03szwdb82', 'en', 1, 'https://ror.org/03szwdb82 Institute for Socio-Ecological Research Instituto para Socio-Ecological Research'),
(90811, 'https://ror.org/049t0bn51', 'en', 1, 'https://ror.org/049t0bn51 International Nuclear Energy Policy and Cooperation'),
(90812, 'https://ror.org/04n45zg06', 'en', 1, 'https://ror.org/04n45zg06 Office of Bilateral, Multilateral, and Commercial Cooperation'),
(90813, 'https://ror.org/049zca088', 'en', 1, 'https://ror.org/049zca088 Georgia Prostate Cancer Coalition'),
(90814, 'https://ror.org/02z81jf86', 'en', 1, 'https://ror.org/02z81jf86 Akhmet Baitursynuly Kostanay Regional University Ахмет Байтұрсынұлы атынГағы ŅšŠ¾ŃŃ‚Š°Š½Š°Š¹ өңірлік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ахмет Байтұрсынұлы'),
(90815, 'https://ror.org/05e6hcm17', 'en', 1, 'https://ror.org/05e6hcm17 Ministry of Agriculture and Rural Development ×ž×©×Ø×“ ×”×—×§×œ××•×Ŗ ופיתוח הכפר'),
(90816, 'https://ror.org/04wx09w42', 'en', 1, 'https://ror.org/04wx09w42 Alamo Breast Cancer Foundation'),
(90817, 'https://ror.org/008yfsh88', 'en', 1, 'https://ror.org/008yfsh88 National Museum of Japanese History å›½ē«‹ę­“å²ę°‘äæ—åšē‰©é¤Ø'),
(90818, 'https://ror.org/01qvmna33', 'en', 1, 'https://ror.org/01qvmna33 Wind Energy Technologies Office'),
(90819, 'https://ror.org/02zzf0m94', 'fr', 1, 'https://ror.org/02zzf0m94 Centre de linguistique en Sorbonne Sorbonne Centre for Linguistics'),
(90820, 'https://ror.org/00d810y44', 'no_lang_code', 1, 'https://ror.org/00d810y44 Sequoia Sciences (United States)'),
(90821, 'https://ror.org/057m7sf25', 'en', 1, 'https://ror.org/057m7sf25 Doctors'' Center Hospital'),
(90822, 'https://ror.org/003b43187', 'en', 1, 'https://ror.org/003b43187 National Gulf War Resource Center'),
(90823, 'https://ror.org/02vzxfs32', 'en', 1, 'https://ror.org/02vzxfs32 California Department of Forestry and Fire Protection'),
(90824, 'https://ror.org/05br52903', 'en', 1, 'https://ror.org/05br52903 Baba Raghav Das Medical College बाबा राघव दास ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(90825, 'https://ror.org/04rr8kp31', 'en', 1, 'https://ror.org/04rr8kp31 U.S. Army Tropic Regions Test Center'),
(90826, 'https://ror.org/048ybsm72', 'en', 1, 'https://ror.org/048ybsm72 Office of Buildings and Industry'),
(90827, 'https://ror.org/031t90335', 'fr', 1, 'https://ror.org/031t90335 Flotte OcƩanographique FranƧaise French Oceanographic Fleet'),
(90828, 'https://ror.org/05vk3sy20', 'en', 1, 'https://ror.org/05vk3sy20 Industrial Efficiency and Decarbonization Office'),
(90829, 'https://ror.org/01g5y5k24', 'en', 1, 'https://ror.org/01g5y5k24 High Energy Accelerator Research Organization é«˜ć‚Øćƒćƒ«ć‚®ćƒ¼åŠ é€Ÿå™Øē ”ē©¶ę©Ÿę§‹'),
(90830, 'https://ror.org/04ndt7n58', 'fr', 1, 'https://ror.org/04ndt7n58 Centre d''Etudes et de Recherche sur la diplomatie, l’Administration Publique et le Politique'),
(90831, 'https://ror.org/055cy8878', 'en', 1, 'https://ror.org/055cy8878 U.S. Army Evaluation Center'),
(90832, 'https://ror.org/03ygqq617', 'en', 1, 'https://ror.org/03ygqq617 Queen Arwa University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„ŁƒŲ© Ų£Ų±ŁˆŁ‰'),
(90833, 'https://ror.org/03e5p9h20', 'en', 1, 'https://ror.org/03e5p9h20 Centre Europeen pour le developpement de la Formation Professionnelle Centre EuropĆ©en pour le DĆ©veloppement de la Formation Professionnelle Centro Europeo para el Desarrollo de la Formación Profesional Centro Europeu para o Desenvolvimento da Formação Profissional Centro europeo per lo sviluppo della formazione professionale Centrul European pentru Dezvoltarea Formării Profesionale European Centre for the Development of Vocational Training (CEDEFOP) Europees Centrum voor de ontwikkeling van de beroepsopleiding Europejskie Centrum Rozwoju Kształcenia Zawodowego EuropƤisches Zentrum für die Fƶrderung der Berufsbildung Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ για την Ανάπτυξη της Επαγγελματικής ĪšĪ±Ļ„Ī¬ĻĻ„Ī¹ĻƒĪ·Ļ‚'),
(90834, 'https://ror.org/04qkhgw46', 'fr', 1, 'https://ror.org/04qkhgw46 Agence Nationale pour la Gestion des DƩchets Radioactifs'),
(90835, 'https://ror.org/05n52x113', 'en', 1, 'https://ror.org/05n52x113 Johns Hopkins University Center for AIDS Research'),
(90836, 'https://ror.org/042j94f44', 'en', 1, 'https://ror.org/042j94f44 Marine Technology Unit Unidad de TecnologĆ­a Marina Unitat de Tecnologia Marina'),
(90837, 'https://ror.org/02caqc891', 'en', 1, 'https://ror.org/02caqc891 National Institute for Japanese Language and Linguistics å›½ē«‹å›½čŖžē ”ē©¶ę‰€'),
(90838, 'https://ror.org/004wf8x96', 'en', 1, 'https://ror.org/004wf8x96 Deen Dayal Upadhyaya Gorakhpur University ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤‰ą¤Ŗą¤¾ą¤§ą„ą¤Æą¤¾ą¤Æ ą¤—ą„‹ą¤°ą¤–ą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®¤ąÆ€ą®©ąÆ ą®¤ą®Æą®¾ą®³ąÆ ą®‰ą®Ŗą®¾ą®¤ąÆą®Æą®¾ą®ÆąÆ ą®•ąÆ‹ą®°ą®•ąÆą®ŖąÆ‚ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(90839, 'https://ror.org/02vb70n88', 'en', 1, 'https://ror.org/02vb70n88 U.S. Army White Sands Test Center'),
(90840, 'https://ror.org/0010c4a50', 'en', 0, 'https://ror.org/0010c4a50 NOAA National Hurricane Center'),
(90841, 'https://ror.org/02bnkt322', 'en', 1, 'https://ror.org/02bnkt322 Bern University of Applied Sciences Berner Fachhochschule Haute Ʃcole spƩcialisƩe bernoise'),
(90842, 'https://ror.org/03cxxnd48', 'en', 1, 'https://ror.org/03cxxnd48 Universidad del Sagrado Corazón University of The Sacred Heart'),
(90843, 'https://ror.org/029bxbh72', 'en', 1, 'https://ror.org/029bxbh72 British Columbia Scholarship Society'),
(90844, 'https://ror.org/00qa8mx25', 'en', 1, 'https://ror.org/00qa8mx25 Departamento de Educación de Puerto Rico Puerto Rico Department of Education'),
(90845, 'https://ror.org/02zr5p933', 'en', 1, 'https://ror.org/02zr5p933 Karaganda State Industrial University ŠšŠ°Ń€Š°Š³Š°Š½Š“ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(90846, 'https://ror.org/00g8nr938', 'en', 1, 'https://ror.org/00g8nr938 Barnes-Jewish West County Hospital'),
(90847, 'https://ror.org/013dqwz65', 'de', 1, 'https://ror.org/013dqwz65 Gertrude von Meissner-Stiftung, in Erinnerung an Annette und Clas Richter'),
(90848, 'https://ror.org/000050t83', 'en', 1, 'https://ror.org/000050t83 Electronic Navigation Research Institute é›»å­čˆŖę³•ē ”ē©¶ę‰€'),
(90849, 'https://ror.org/04v0snf24', 'es', 1, 'https://ror.org/04v0snf24 Universidad de La Frontera University of La Frontera'),
(90850, 'https://ror.org/00vmaka31', 'en', 1, 'https://ror.org/00vmaka31 California Department of Conservation'),
(90851, 'https://ror.org/021d9wv59', 'en', 1, 'https://ror.org/021d9wv59 Institute of Puerto Rican Culture Instituto de Cultura PuertorriqueƱa'),
(90852, 'https://ror.org/05c99vk74', 'fr', 1, 'https://ror.org/05c99vk74 Laboratoire de Recherche sur les Apprentissages en Contexte'),
(90853, 'https://ror.org/03d5rrp05', 'en', 1, 'https://ror.org/03d5rrp05 Cleveland Zoological Society'),
(90854, 'https://ror.org/02hs8e066', 'en', 1, 'https://ror.org/02hs8e066 National University College'),
(90855, 'https://ror.org/02y7bdg71', 'en', 1, 'https://ror.org/02y7bdg71 Lymphoma Research Foundation'),
(90856, 'https://ror.org/01zprx076', 'en', 1, 'https://ror.org/01zprx076 Office of Federal Energy Management Programs'),
(90857, 'https://ror.org/05jc7xd84', 'en', 0, 'https://ror.org/05jc7xd84 Institute of Physical Chemistry Blas Cabrera Instituto de QuĆ­mica FĆ­sica Blas Cabrera'),
(90858, 'https://ror.org/05r9v2c42', 'en', 1, 'https://ror.org/05r9v2c42 Ana G. Mendez University System Sistema Universitario Ana G. MƩndez'),
(90859, 'https://ror.org/030ykm618', 'en', 1, 'https://ror.org/030ykm618 Lobular Breast Cancer Alliance'),
(90860, 'https://ror.org/034bhv918', 'en', 1, 'https://ror.org/034bhv918 Cancer Resource Center of the Finger Lakes'),
(90861, 'https://ror.org/053mfvp43', 'no_lang_code', 1, 'https://ror.org/053mfvp43 Informa (United Kingdom)'),
(90862, 'https://ror.org/01xtfh998', 'en', 1, 'https://ror.org/01xtfh998 California Department of Pesticide Regulation'),
(90863, 'https://ror.org/04t873b86', 'en', 1, 'https://ror.org/04t873b86 Guam Department of Agriculture'),
(90864, 'https://ror.org/05bmx3r26', 'en', 1, 'https://ror.org/05bmx3r26 Guam Waterworks Authority'),
(90865, 'https://ror.org/02kpw3v28', 'en', 0, 'https://ror.org/02kpw3v28 Naval Ordnance Laboratory'),
(90866, 'https://ror.org/05q8wtt20', 'en', 1, 'https://ror.org/05q8wtt20 National Institute for Basic Biology åŸŗē¤Žē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(90867, 'https://ror.org/00e7vz537', 'en', 1, 'https://ror.org/00e7vz537 International Rett syndrome Foundation'),
(90868, 'https://ror.org/0481m0575', 'es', 1, 'https://ror.org/0481m0575 Universidad Tecnológica Metropolitana'),
(90869, 'https://ror.org/02manjm47', 'no_lang_code', 0, 'https://ror.org/02manjm47 Sigma-Aldrich (United States)'),
(90870, 'https://ror.org/01948cb05', 'en', 1, 'https://ror.org/01948cb05 KEK Applied Research Laboratory å…±é€šåŸŗē›¤ē ”ē©¶ę–½čØ­'),
(90871, 'https://ror.org/025aqk442', 'en', 1, 'https://ror.org/025aqk442 Lung Cancer Connection'),
(90872, 'https://ror.org/01t3n1r11', 'fr', 1, 'https://ror.org/01t3n1r11 Analyses et Expérimentations pour les Ecosystèmes'),
(90873, 'https://ror.org/02ntcfz84', 'en', 1, 'https://ror.org/02ntcfz84 Faces and Voices of Recovery'),
(90874, 'https://ror.org/04jjbs468', 'en', 0, 'https://ror.org/04jjbs468 UL Research Institutes'),
(90875, 'https://ror.org/00n4kg172', 'en', 1, 'https://ror.org/00n4kg172 Grid Deployment Office'),
(90876, 'https://ror.org/04xetev54', 'no_lang_code', 1, 'https://ror.org/04xetev54 Knowledge Kingdom Publishing'),
(90877, 'https://ror.org/00dq20h52', 'en', 1, 'https://ror.org/00dq20h52 Department of Lands and Natural Resources'),
(90878, 'https://ror.org/02nt5es71', 'en', 1, 'https://ror.org/02nt5es71 Alberta Health Services'),
(90879, 'https://ror.org/04e90fr08', 'en', 1, 'https://ror.org/04e90fr08 American Optometric Association'),
(90880, 'https://ror.org/01exas502', 'fr', 1, 'https://ror.org/01exas502 Centre d''investigation clinique Quinze-Vingts'),
(90881, 'https://ror.org/043d2wd47', 'es', 1, 'https://ror.org/043d2wd47 Hospital Oncológico Andrés Grillasca'),
(90882, 'https://ror.org/008fa9s48', 'en', 1, 'https://ror.org/008fa9s48 Office of Security'),
(90883, 'https://ror.org/035nzyk88', 'en', 1, 'https://ror.org/035nzyk88 Hope Center for Neurological Disorders'),
(90884, 'https://ror.org/015ecwv34', 'no_lang_code', 1, 'https://ror.org/015ecwv34 Curium (United States)'),
(90885, 'https://ror.org/00h7j7268', 'nl', 1, 'https://ror.org/00h7j7268 Missiemuseum Mission Museum'),
(90886, 'https://ror.org/00va0sd41', 'en', 1, 'https://ror.org/00va0sd41 Bosom Buddies Charities'),
(90887, 'https://ror.org/03dbdcw44', 'en', 1, 'https://ror.org/03dbdcw44 Office of Isotope R&D and Production'),
(90888, 'https://ror.org/04fq21t14', 'en', 1, 'https://ror.org/04fq21t14 California Department of Toxic Substances Control'),
(90889, 'https://ror.org/00ndyev54', 'en', 1, 'https://ror.org/00ndyev54 NOAA National Centers for Environmental Prediction'),
(90890, 'https://ror.org/009kb8w74', 'fr', 1, 'https://ror.org/009kb8w74 HƓpital Rothschild'),
(90891, 'https://ror.org/016cke005', 'en', 1, 'https://ror.org/016cke005 National Marrow Donor Program'),
(90892, 'https://ror.org/048rj2z13', 'en', 1, 'https://ror.org/048rj2z13 Ministry of Education, Culture, Sports, Science and Technology ę–‡éƒØē§‘å­¦ēœ'),
(90893, 'https://ror.org/02fs0cd96', 'es', 1, 'https://ror.org/02fs0cd96 Red de Investigación de Conocimiento, Software y Hardware Libre'),
(90894, 'https://ror.org/040vxhp34', 'en', 1, 'https://ror.org/040vxhp34 Oak Ridge Institute for Science and Education'),
(90895, 'https://ror.org/00jtpba20', 'en', 1, 'https://ror.org/00jtpba20 Breast Cancer Action'),
(90896, 'https://ror.org/03g0p5d13', 'en', 1, 'https://ror.org/03g0p5d13 Allison Family Foundation'),
(90897, 'https://ror.org/01p7jjy08', 'en', 1, 'https://ror.org/01p7jjy08 Saint Louis University Universidad de San Luis UniversitƩ de saint-louis'),
(90898, 'https://ror.org/00pnmw534', 'en', 1, 'https://ror.org/00pnmw534 Pacific Marine Resources Institute'),
(90899, 'https://ror.org/01b8jmq89', 'en', 1, 'https://ror.org/01b8jmq89 La Poly Polytechnic University of Puerto Rico'),
(90900, 'https://ror.org/01agkhd16', 'es', 1, 'https://ror.org/01agkhd16 Universidad Del Este'),
(90901, 'https://ror.org/02je1hv25', 'en', 1, 'https://ror.org/02je1hv25 California Department of Education Departamento de Educación de California'),
(90902, 'https://ror.org/03rgvr466', 'en', 1, 'https://ror.org/03rgvr466 I AM ALS'),
(90903, 'https://ror.org/01yb10j39', 'en', 1, 'https://ror.org/01yb10j39 Radboud Institute for Molecular Life Sciences'),
(90904, 'https://ror.org/0410xnr11', 'pl', 1, 'https://ror.org/0410xnr11 Air Force Institute of Technology Instytut Techniczny Wojsk Lotniczych'),
(90905, 'https://ror.org/024b23796', 'en', 1, 'https://ror.org/024b23796 NAVWAR Space Field Activity'),
(90906, 'https://ror.org/030x2rk64', 'en', 1, 'https://ror.org/030x2rk64 United States Virgin Islands Department of Health'),
(90907, 'https://ror.org/03gjh3k29', 'en', 1, 'https://ror.org/03gjh3k29 Nuclear Infrastructure Programs'),
(90908, 'https://ror.org/0414tnt28', 'en', 1, 'https://ror.org/0414tnt28 Breast Cancer Recovery'),
(90909, 'https://ror.org/02hdmed54', 'en', 1, 'https://ror.org/02hdmed54 Regulatory Intergovernmental, and Stakeholder Engagement'),
(90910, 'https://ror.org/04mj0c261', 'en', 1, 'https://ror.org/04mj0c261 Cleveland Metroparks Zoo'),
(90911, 'https://ror.org/00hvbwp12', 'en', 1, 'https://ror.org/00hvbwp12 Office of the Chief Information Officer'),
(90912, 'https://ror.org/01qrpsa36', 'en', 1, 'https://ror.org/01qrpsa36 Bioenergy Technologies Office'),
(90913, 'https://ror.org/028z8qe34', 'no_lang_code', 1, 'https://ror.org/028z8qe34 Astrobiology Center č‡Ŗē„¶ē§‘å­¦ē ”ē©¶ę©Ÿę§‹ć‚¢ć‚¹ćƒˆćƒ­ćƒć‚¤ć‚Ŗćƒ­ć‚øćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(90914, 'https://ror.org/058qr4y65', 'en', 1, 'https://ror.org/058qr4y65 Alzheimer Precision Medicine'),
(90915, 'https://ror.org/032q0qd45', 'fr', 1, 'https://ror.org/032q0qd45 La FƩmis'),
(90916, 'https://ror.org/04zy9j617', 'en', 1, 'https://ror.org/04zy9j617 University of the Arctic'),
(90917, 'https://ror.org/015th7t48', 'fr', 1, 'https://ror.org/015th7t48 Centre de Recherche en LittƩrature ComparƩe'),
(90918, 'https://ror.org/02q1yqq82', 'en', 1, 'https://ror.org/02q1yqq82 Wisconsin Breast Cancer Coalition'),
(90919, 'https://ror.org/01hbn6876', 'no_lang_code', 0, 'https://ror.org/01hbn6876 Kerneos (France)'),
(90920, 'https://ror.org/02xs6gm19', 'en', 1, 'https://ror.org/02xs6gm19 American Military Academy'),
(90921, 'https://ror.org/00nr72m18', 'en', 1, 'https://ror.org/00nr72m18 Action to Cure Kidney Cancer'),
(90922, 'https://ror.org/039w2vw18', 'en', 1, 'https://ror.org/039w2vw18 Caribbean University'),
(90923, 'https://ror.org/04zvj8c18', 'en', 1, 'https://ror.org/04zvj8c18 Research Centre of the Slovenian Academy of Sciences and Arts Znanstvenoraziskovalni center Slovenske akademije znanosti in umetnosti'),
(90924, 'https://ror.org/02ytd8525', 'en', 1, 'https://ror.org/02ytd8525 Missouri Foundation for Health'),
(90925, 'https://ror.org/04b1tq154', 'en', 1, 'https://ror.org/04b1tq154 Grid Controls and Communications Division'),
(90926, 'https://ror.org/025xd2w77', 'en', 1, 'https://ror.org/025xd2w77 FD/MAS Alliance'),
(90927, 'https://ror.org/01w15bh65', 'en', 1, 'https://ror.org/01w15bh65 St. Petersburg Research Institute of Radiation Hygiene Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиационной гигиены имени профессора П.Š’.Рамзаева'),
(90928, 'https://ror.org/00p6app11', 'en', 1, 'https://ror.org/00p6app11 Office of Renewable Energy'),
(90929, 'https://ror.org/05xay3m79', 'fr', 1, 'https://ror.org/05xay3m79 Ɖrudit'),
(90930, 'https://ror.org/05jygpn52', 'es', 1, 'https://ror.org/05jygpn52 Hospital Episcopal San Lucas'),
(90931, 'https://ror.org/02smd3j38', 'en', 1, 'https://ror.org/02smd3j38 Universidad del Turabo University of Turabo'),
(90932, 'https://ror.org/03cap2a49', 'en', 1, 'https://ror.org/03cap2a49 Naval Air Warfare Center Weapons Division'),
(90933, 'https://ror.org/035fxjt55', 'en', 1, 'https://ror.org/035fxjt55 Office of Enterprise Assessments'),
(90934, 'https://ror.org/02zs3hb12', 'en', 1, 'https://ror.org/02zs3hb12 Institute for Bioscience and Biotechnology Research'),
(90935, 'https://ror.org/04e6zkc05', 'en', 1, 'https://ror.org/04e6zkc05 Whitney R. Harris World Ecology Center'),
(90936, 'https://ror.org/026a27k71', 'no_lang_code', 1, 'https://ror.org/026a27k71 VetStrong'),
(90937, 'https://ror.org/01ms6wc17', 'no_lang_code', 1, 'https://ror.org/01ms6wc17 Colectica (United States)'),
(90938, 'https://ror.org/00rypeq92', 'en', 1, 'https://ror.org/00rypeq92 Prostate Cancer Support Association of New Mexico'),
(90939, 'https://ror.org/04dqdxv39', 'es', 1, 'https://ror.org/04dqdxv39 Consejo Latinoamericano de Ciencias Sociales Conselho Latino-americano de CiĆŖncias Sociais Latin American Council of Social Sciences'),
(90940, 'https://ror.org/00wsjvg44', 'en', 1, 'https://ror.org/00wsjvg44 U.S. Army Corp of Engineers Waterways Experiment Station'),
(90941, 'https://ror.org/02xza3v49', 'en', 1, 'https://ror.org/02xza3v49 Texas Neurofibromatosis Foundation'),
(90942, 'https://ror.org/007g3r374', 'no_lang_code', 1, 'https://ror.org/007g3r374 Albion Technologies (United Kingdom)'),
(90943, 'https://ror.org/01e8w0016', 'fr', 1, 'https://ror.org/01e8w0016 Laboratoire de Neurosciences Cognitives et Computationnelles'),
(90944, 'https://ror.org/03vkkad71', 'fr', 1, 'https://ror.org/03vkkad71 Histoire et Dynamique des Espaces Anglophones: du RƩel au Virtuel'),
(90945, 'https://ror.org/04n60ga54', 'en', 0, 'https://ror.org/04n60ga54 Inter-University Research Institute Corporation'),
(90946, 'https://ror.org/002g3cb31', 'en', 1, 'https://ror.org/002g3cb31 Queen Margaret University'),
(90947, 'https://ror.org/045ba4x87', 'no_lang_code', 1, 'https://ror.org/045ba4x87 Nordfriisk Instituut'),
(90948, 'https://ror.org/01xenw941', 'en', 1, 'https://ror.org/01xenw941 Office of International Nuclear Safety'),
(90949, 'https://ror.org/00z0y4310', 'en', 1, 'https://ror.org/00z0y4310 California Department of Alcohol and Drug Programs'),
(90950, 'https://ror.org/05wd3f534', 'no_lang_code', 1, 'https://ror.org/05wd3f534 EMS Press'),
(90951, 'https://ror.org/02r6n2967', 'en', 1, 'https://ror.org/02r6n2967 Faculty SantĆ­ssima Trindade'),
(90952, 'https://ror.org/00nwp9g54', 'en', 1, 'https://ror.org/00nwp9g54 Institute of Particle and Nuclear Studies ē“ ē²’å­åŽŸå­ę øē ”ē©¶ę‰€'),
(90953, 'https://ror.org/032xmxh33', 'en', 0, 'https://ror.org/032xmxh33 Harry Diamond Laboratories'),
(90954, 'https://ror.org/04p3pep55', 'en', 1, 'https://ror.org/04p3pep55 Bladder Cancer Advocacy Network'),
(90955, 'https://ror.org/03tjwy964', 'en', 1, 'https://ror.org/03tjwy964 Hospital de Veteranos VA Caribbean Healthcare System'),
(90956, 'https://ror.org/02xg1m795', 'en', 1, 'https://ror.org/02xg1m795 National Institute of Genetics å›½ē«‹éŗä¼å­¦ē ”ē©¶ę‰€'),
(90957, 'https://ror.org/041px5t13', 'es', 1, 'https://ror.org/041px5t13 "Miguel Antonio CatalƔn" Physics Center Centro de Fƭsica Miguel Antonio CatalƔn'),
(90958, 'https://ror.org/028rfb880', 'en', 1, 'https://ror.org/028rfb880 Office of Secretary of Energy'),
(90959, 'https://ror.org/04861vz74', 'en', 1, 'https://ror.org/04861vz74 International Research Center for Japanese Studies å›½éš›ę—„ęœ¬ę–‡åŒ–ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(90960, 'https://ror.org/03naxhj05', 'en', 1, 'https://ror.org/03naxhj05 Spent Fuel and Waste Disposition'),
(90961, 'https://ror.org/017zjpk59', 'en', 1, 'https://ror.org/017zjpk59 Clinical Research Puerto Rico'),
(90962, 'https://ror.org/054n08713', 'en', 1, 'https://ror.org/054n08713 CureDuchenne'),
(90963, 'https://ror.org/02bzz5643', 'en', 0, 'https://ror.org/02bzz5643 U.S. Army Ballistic Research Laboratory'),
(90964, 'https://ror.org/02bhbx726', 'en', 1, 'https://ror.org/02bhbx726 Office of Indian Energy Policy and Programs'),
(90965, 'https://ror.org/05svhk535', 'en', 1, 'https://ror.org/05svhk535 Office of Petroleum Reserves'),
(90966, 'https://ror.org/01vgdbb03', 'en', 1, 'https://ror.org/01vgdbb03 Colorectal Cancer Alliance'),
(90967, 'https://ror.org/04jmzd816', 'en', 1, 'https://ror.org/04jmzd816 Michigan Ovarian Cancer Alliance'),
(90968, 'https://ror.org/01464wm64', 'en', 1, 'https://ror.org/01464wm64 National Institute of Japanese Literature 国文学研究資料館'),
(90969, 'https://ror.org/031mgyp05', 'en', 1, 'https://ror.org/031mgyp05 Office of Integrated Waste Management'),
(90970, 'https://ror.org/03h7fe682', 'no_lang_code', 1, 'https://ror.org/03h7fe682 Aduro BioTech (United States)'),
(90971, 'https://ror.org/02jk0bp78', 'es', 1, 'https://ror.org/02jk0bp78 Clínica Planificación Familiar y Terminación de Embarazo'),
(90972, 'https://ror.org/034amfs97', 'en', 1, 'https://ror.org/034amfs97 University of the Virgin Islands'),
(90973, 'https://ror.org/05sfb6846', 'es', 1, 'https://ror.org/05sfb6846 Fundación Openlab Ecuador'),
(90974, 'https://ror.org/05rtchs68', 'es', 1, 'https://ror.org/05rtchs68 Institute for the Structure of Matter Instituto de Estructura de la Materia'),
(90975, 'https://ror.org/04ma4gj04', 'en', 1, 'https://ror.org/04ma4gj04 California Department of Food and Agriculture Departamento de Alimentos y Agricultura de California DƩpartement de l''alimentation et de l''agriculture de californie'),
(90976, 'https://ror.org/03wa2q724', 'en', 1, 'https://ror.org/03wa2q724 Children''s National'),
(90977, 'https://ror.org/045vqhp43', 'en', 1, 'https://ror.org/045vqhp43 Dr. Susan Love Foundation for Breast Cancer Research'),
(90978, 'https://ror.org/040zr6b15', 'en', 1, 'https://ror.org/040zr6b15 Pathophysiology, Diagnosis and Treatment of Bone Diseases Physiopathologie, Diagnostic et Traitements des Maladies Osseuses'),
(90979, 'https://ror.org/04hewx527', 'en', 1, 'https://ror.org/04hewx527 U.S. Army Cold Regions Test Center'),
(90980, 'https://ror.org/01q5hrg92', 'en', 1, 'https://ror.org/01q5hrg92 Virgin Islands Department of Human Services'),
(90981, 'https://ror.org/01qradn92', 'en', 1, 'https://ror.org/01qradn92 KEK Accelerator Laboratory åŠ é€Ÿå™Øē ”ē©¶ę–½čØ­'),
(90982, 'https://ror.org/03qn8ky51', 'en', 1, 'https://ror.org/03qn8ky51 Washington University Physicians'),
(90983, 'https://ror.org/05v8y4456', 'en', 1, 'https://ror.org/05v8y4456 Naval Information Warfare Center Atlantic'),
(90984, 'https://ror.org/03kyp2n97', 'en', 1, 'https://ror.org/03kyp2n97 Maldives Business School'),
(90985, 'https://ror.org/020fjxj16', 'en', 1, 'https://ror.org/020fjxj16 Western National Parks Association'),
(90986, 'https://ror.org/01q2bn656', 'fr', 1, 'https://ror.org/01q2bn656 Laboratoire Instrumentation, Simulation et Informatique Scientifique'),
(90987, 'https://ror.org/03jvfqk47', 'en', 1, 'https://ror.org/03jvfqk47 Rein in Sarcoma'),
(90988, 'https://ror.org/047afav72', 'en', 1, 'https://ror.org/047afav72 National Alliance of State Prostate Cancer Coalitions'),
(90989, 'https://ror.org/021gztm71', 'en', 1, 'https://ror.org/021gztm71 NUS High School of Mathematics and Science'),
(90990, 'https://ror.org/004315x41', 'en', 1, 'https://ror.org/004315x41 Allegheny-Singer Research Institute'),
(90991, 'https://ror.org/03f6n9m15', 'en', 1, 'https://ror.org/03f6n9m15 University Hospital Frankfurt UniversitƤtsklinikum Frankfurt'),
(90992, 'https://ror.org/017pvbj47', 'no_lang_code', 1, 'https://ror.org/017pvbj47 Societatea Națională de Gaze Naturale Romgaz SA (Romania)'),
(90993, 'https://ror.org/017gnes95', 'en', 1, 'https://ror.org/017gnes95 The Virgin Islands Public Library System'),
(90994, 'https://ror.org/0365gvr66', 'en', 1, 'https://ror.org/0365gvr66 Office of Emergency Operations'),
(90995, 'https://ror.org/01mkym489', 'en', 1, 'https://ror.org/01mkym489 Rally Foundation for Childhood Cancer Research'),
(90996, 'https://ror.org/00gmyvv50', 'en', 1, 'https://ror.org/00gmyvv50 Alberta Children''s Hospital Research Institute'),
(90997, 'https://ror.org/014kqcf15', 'en', 1, 'https://ror.org/014kqcf15 Infrastructure Management and Disposition Policy'),
(90998, 'https://ror.org/0288vpa90', 'en', 1, 'https://ror.org/0288vpa90 Breast Cancer Solutions'),
(90999, 'https://ror.org/055cg2t55', 'en', 1, 'https://ror.org/055cg2t55 Virginia Soybean Board'),
(91000, 'https://ror.org/00vgwmr59', 'en', 1, 'https://ror.org/00vgwmr59 Elrazi University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ų§Ų²ŁŠ'),
(91001, 'https://ror.org/045bke375', 'no_lang_code', 0, 'https://ror.org/045bke375 Us Too'),
(91002, 'https://ror.org/03e369w46', 'no_lang_code', 1, 'https://ror.org/03e369w46 Laboratoires Contapharm (France)'),
(91003, 'https://ror.org/04pnym676', 'ca', 1, 'https://ror.org/04pnym676 Institut de Microelectrònica de Barcelona Institute of Microelectronics of Barcelona Instituto de Microelectrónica de Barcelona'),
(91004, 'https://ror.org/04dpwfd08', 'no_lang_code', 1, 'https://ror.org/04dpwfd08 UL (Germany)'),
(91005, 'https://ror.org/04p0mdy95', 'en', 1, 'https://ror.org/04p0mdy95 Office of Spent Fuel and Waste Science and Technology'),
(91006, 'https://ror.org/04p8das24', 'fr', 1, 'https://ror.org/04p8das24 Groupe de recherche interdisciplinaire sur les processus d''information et de communication'),
(91007, 'https://ror.org/035sts487', 'en', 1, 'https://ror.org/035sts487 Charles Harwood Memorial Hospital'),
(91008, 'https://ror.org/04jc47g48', 'en', 1, 'https://ror.org/04jc47g48 Governor Juan F. Luis Hospital & Medical Center'),
(91009, 'https://ror.org/05588ks88', 'fr', 1, 'https://ror.org/05588ks88 Laboratoire de Linguistique et Didactique des Langues EtrangĆØres et Maternelles'),
(91010, 'https://ror.org/050tds906', 'es', 1, 'https://ror.org/050tds906 Instituto Nacional de Pesca y Acuacultura'),
(91011, 'https://ror.org/02gy5dj09', 'en', 1, 'https://ror.org/02gy5dj09 Office of Nuclear Materials Production, Management, and Protection'),
(91012, 'https://ror.org/01d947q34', 'en', 1, 'https://ror.org/01d947q34 Water Power Technologies Office'),
(91013, 'https://ror.org/03xsh7c04', 'en', 1, 'https://ror.org/03xsh7c04 Colorado Clinical and Translational Sciences Institute'),
(91014, 'https://ror.org/0575v6d36', 'en', 1, 'https://ror.org/0575v6d36 Center for Advanced Studies on Puerto Rico and the Caribbean Centro de Estudios Avanzados de Puerto Rico y El Caribe'),
(91015, 'https://ror.org/05stnk221', 'en', 1, 'https://ror.org/05stnk221 McCune Foundation'),
(91016, 'https://ror.org/00xcgnn15', 'en', 1, 'https://ror.org/00xcgnn15 InterAmerican University of Puerto Rico Universidad Interamericana de Puerto Rico'),
(91017, 'https://ror.org/03kg5qh91', 'en', 1, 'https://ror.org/03kg5qh91 Semey Medical University «Демей меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–Ā» ŠŗŠ¾Š¼Š¼ŠµŃ€Ń†ŠøŃŠ»Ń‹Ņ› емес акционерлік қоғамы ŠŠµŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ¾Šµ акционерное общество Ā«ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Демей»'),
(91018, 'https://ror.org/04hbwba26', 'de', 1, 'https://ror.org/04hbwba26 Deutsches Herzzentrum München German Heart Centre Munich'),
(91019, 'https://ror.org/040xx6p34', 'en', 1, 'https://ror.org/040xx6p34 National Institutes for the Humanities äŗŗé–“ę–‡åŒ–ē ”ē©¶ę©Ÿę§‹'),
(91020, 'https://ror.org/04mm9a073', 'en', 1, 'https://ror.org/04mm9a073 Annie Appleseed Project'),
(91021, 'https://ror.org/00sx29x36', 'en', 1, 'https://ror.org/00sx29x36 Alberta Children''s Hospital'),
(91022, 'https://ror.org/0116zj450', 'en', 1, 'https://ror.org/0116zj450 Universitas Indonesia University of Indonesia'),
(91023, 'https://ror.org/01n66aj04', 'en', 1, 'https://ror.org/01n66aj04 Sisters Network Inc.'),
(91024, 'https://ror.org/052rrw050', 'en', 1, 'https://ror.org/052rrw050 National Astronomical Observatory of Japan å›½ē«‹å¤©ę–‡å°'),
(91025, 'https://ror.org/01z80p194', 'en', 1, 'https://ror.org/01z80p194 UL Standards & Engagement'),
(91026, 'https://ror.org/03r9y0p94', 'no_lang_code', 1, 'https://ror.org/03r9y0p94 UL Solutions (United States)'),
(91027, 'https://ror.org/050sd4346', 'en', 1, 'https://ror.org/050sd4346 U.S. Army Yuma Test Center'),
(91028, 'https://ror.org/05wf3b832', 'en', 1, 'https://ror.org/05wf3b832 WomenHeart'),
(91029, 'https://ror.org/03t879f74', 'en', 1, 'https://ror.org/03t879f74 American Samoa Government'),
(91030, 'https://ror.org/056qnjw25', 'en', 1, 'https://ror.org/056qnjw25 American Chronic Pain Association'),
(91031, 'https://ror.org/05p9bjd64', 'en', 1, 'https://ror.org/05p9bjd64 Office of Policy'),
(91032, 'https://ror.org/01ffvgk12', 'es', 1, 'https://ror.org/01ffvgk12 Hospital Metropolitano Dr. Pila'),
(91033, 'https://ror.org/03eeh5j48', 'en', 0, 'https://ror.org/03eeh5j48 Wright Research and Development Center'),
(91034, 'https://ror.org/00tzzfp14', 'en', 1, 'https://ror.org/00tzzfp14 National Museum of Ethnology å›½ē«‹ę°‘ę—å­¦åšē‰©é¤Ø'),
(91035, 'https://ror.org/04p3r3e35', 'en', 1, 'https://ror.org/04p3r3e35 NOAA Tropical Analysis and Forecast Branch'),
(91036, 'https://ror.org/05bhks608', 'id', 1, 'https://ror.org/05bhks608 Universitas Banten Jaya'),
(91037, 'https://ror.org/02e3pdk98', 'en', 1, 'https://ror.org/02e3pdk98 Survivors on Purpose Inc.'),
(91038, 'https://ror.org/04412gy94', 'en', 1, 'https://ror.org/04412gy94 Edward M. Calvo Cancer Foundation'),
(91039, 'https://ror.org/04d46jp54', 'en', 1, 'https://ror.org/04d46jp54 California Department of Transportation'),
(91040, 'https://ror.org/02gr2sy50', 'en', 1, 'https://ror.org/02gr2sy50 Office of Accelerator R&D and Production'),
(91041, 'https://ror.org/04wqh5h97', 'en', 1, 'https://ror.org/04wqh5h97 Institute for Molecular Science åˆ†å­ē§‘å­¦ē ”ē©¶ę‰€'),
(91042, 'https://ror.org/03vk18a84', 'en', 1, 'https://ror.org/03vk18a84 Australian Synchrotron'),
(91043, 'https://ror.org/05kxnq107', 'es', 1, 'https://ror.org/05kxnq107 Administración Nacional de Medicamentos, Alimentos y Tecnología Médica'),
(91044, 'https://ror.org/01e9y7529', 'fr', 1, 'https://ror.org/01e9y7529 UniversitƩ des Sciences Sociales et de Gestion de Bamako'),
(91045, 'https://ror.org/03vd86m49', 'es', 1, 'https://ror.org/03vd86m49 Colegio Universitario de San Juan'),
(91046, 'https://ror.org/04bd6je18', 'no_lang_code', 1, 'https://ror.org/04bd6je18 Taylor and Francis (United Kingdom)'),
(91047, 'https://ror.org/00qywr187', 'en', 1, 'https://ror.org/00qywr187 Nuclear Energy University Program'),
(91048, 'https://ror.org/0509qp208', 'fr', 1, 'https://ror.org/0509qp208 Centre d''Etudes et de Recherches AppliquƩes Ơ la Gestion'),
(91049, 'https://ror.org/04h617f37', 'en', 1, 'https://ror.org/04h617f37 U.S. Army West Desert Test Center'),
(91050, 'https://ror.org/04cr1bk24', 'en', 1, 'https://ror.org/04cr1bk24 NASA Planetary Science'),
(91051, 'https://ror.org/00mw1dx44', 'en', 1, 'https://ror.org/00mw1dx44 Office of Public Affairs'),
(91052, 'https://ror.org/02q5emw59', 'fr', 1, 'https://ror.org/02q5emw59 Sens, Texte, Informatique, Histoire'),
(91053, 'https://ror.org/03bczw616', 'en', 1, 'https://ror.org/03bczw616 Federal Service for Surveillance on Consumer Rights Protection and Human Wellbeing Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба по Š½Š°Š“Š·Š¾Ń€Ńƒ в сфере защиты прав потребителей Šø Š±Š»Š°Š³Š¾ŠæŠ¾Š»ŃƒŃ‡ŠøŃ человека'),
(91054, 'https://ror.org/03jrb0276', 'fr', 1, 'https://ror.org/03jrb0276 Laboratoire Inter-universitaire de Psychologie: PersonnalitƩ, Cognition, Changement Social'),
(91055, 'https://ror.org/00jc3bm81', 'no_lang_code', 1, 'https://ror.org/00jc3bm81 CDI Laboratories (United States)'),
(91056, 'https://ror.org/023xw4w13', 'en', 1, 'https://ror.org/023xw4w13 HJR Reefscaping'),
(91057, 'https://ror.org/035sc8895', 'en', 1, 'https://ror.org/035sc8895 Office of State and Community Energy Programs'),
(91058, 'https://ror.org/04hcvaf32', 'en', 1, 'https://ror.org/04hcvaf32 Sana''a University Ų¬Ų§Ł…Ų¹Ų© صنعاؔ'),
(91059, 'https://ror.org/042rvyb12', 'en', 1, 'https://ror.org/042rvyb12 European Mathematical Society'),
(91060, 'https://ror.org/05geg6f02', 'en', 1, 'https://ror.org/05geg6f02 Scottish Universities Press'),
(91061, 'https://ror.org/01vt80e72', 'en', 1, 'https://ror.org/01vt80e72 Office of Resource Sustainability'),
(91062, 'https://ror.org/039928415', 'en', 1, 'https://ror.org/039928415 Office of Environmental Protection and ES&H Reporting'),
(91063, 'https://ror.org/05h6pya74', 'en', 1, 'https://ror.org/05h6pya74 Office of Defense Programs'),
(91064, 'https://ror.org/030emg558', 'en', 1, 'https://ror.org/030emg558 Amputee Coalition of America'),
(91065, 'https://ror.org/028402669', 'pl', 1, 'https://ror.org/028402669 Powiślańska Szkoła Wyższa'),
(91066, 'https://ror.org/02n9fag78', 'en', 1, 'https://ror.org/02n9fag78 International Lyme and Associated Diseases Society'),
(91067, 'https://ror.org/01kk9yv55', 'en', 1, 'https://ror.org/01kk9yv55 Naval Nuclear Propulsion Program (Naval Reactors)'),
(91068, 'https://ror.org/03jcejr58', 'en', 1, 'https://ror.org/03jcejr58 The Institute of Statistical Mathematics ēµ±čØˆę•°ē†ē ”ē©¶ę‰€'),
(91069, 'https://ror.org/00tp4wm41', 'en', 1, 'https://ror.org/00tp4wm41 Institute for Tropical Technology Viện Kỹ thuįŗ­t nhiệt đới'),
(91070, 'https://ror.org/0041nq193', 'en', 1, 'https://ror.org/0041nq193 Huertas College'),
(91071, 'https://ror.org/05at36m36', 'es', 1, 'https://ror.org/05at36m36 Centro de Neumologia Pediatrica'),
(91072, 'https://ror.org/05pfy5w65', 'en', 1, 'https://ror.org/05pfy5w65 Ente Ospedaliero Specializzato in Gastroenterologia Saverio de Bellis Gastroenterology Hospital "Saverio de Bellis"'),
(91073, 'https://ror.org/048v13307', 'en', 1, 'https://ror.org/048v13307 National Institute for Physiological Sciences ē”Ÿē†å­¦ē ”ē©¶ę‰€'),
(91074, 'https://ror.org/00xhn6z12', 'en', 1, 'https://ror.org/00xhn6z12 Debbie''s Dream Foundation'),
(91075, 'https://ror.org/02e3eqz10', 'fr', 1, 'https://ror.org/02e3eqz10 Center of Research in Myology Centre de Recherche en Myologie'),
(91076, 'https://ror.org/0525rz773', 'en', 1, 'https://ror.org/0525rz773 Atlantic University College'),
(91077, 'https://ror.org/0291jv411', 'en', 1, 'https://ror.org/0291jv411 Children''s Hospital Foundation'),
(91078, 'https://ror.org/05fwspe16', 'en', 1, 'https://ror.org/05fwspe16 Bayamón Central University Universidad Central de Bayamón'),
(91079, 'https://ror.org/00c7rx184', 'no_lang_code', 1, 'https://ror.org/00c7rx184 Routledge (United Kingdom)'),
(91080, 'https://ror.org/017madv49', 'en', 0, 'https://ror.org/017madv49 Air Force Space Technology Center'),
(91081, 'https://ror.org/01wqtde93', 'en', 1, 'https://ror.org/01wqtde93 Building Technologies Office'),
(91082, 'https://ror.org/00fyvtf62', 'en', 1, 'https://ror.org/00fyvtf62 American Samoa Department of Homeland Security'),
(91083, 'https://ror.org/05t41kv40', 'en', 1, 'https://ror.org/05t41kv40 Nuclear Energy Enabling Technologies'),
(91084, 'https://ror.org/02jnwwg50', 'en', 1, 'https://ror.org/02jnwwg50 Department of Human and Social Services'),
(91085, 'https://ror.org/00k44np55', 'en', 1, 'https://ror.org/00k44np55 U.S. Army Redstone Test Center'),
(91086, 'https://ror.org/01zssnf23', 'en', 0, 'https://ror.org/01zssnf23 Canadian Policy Research Networks'),
(91087, 'https://ror.org/00trjac21', 'en', 1, 'https://ror.org/00trjac21 Academy of Science St. Louis'),
(91088, 'https://ror.org/02r11y182', 'en', 1, 'https://ror.org/02r11y182 Adam Smith University'),
(91089, 'https://ror.org/046e0mt33', 'de', 1, 'https://ror.org/046e0mt33 Europa-UniversitƤt Flensburg'),
(91090, 'https://ror.org/02ax7q288', 'en', 1, 'https://ror.org/02ax7q288 Conservation Trust of Puerto Rico'),
(91091, 'https://ror.org/02t1zz428', 'fr', 1, 'https://ror.org/02t1zz428 HƓpital de la Roche-Guyon'),
(91092, 'https://ror.org/03cvhr859', 'no_lang_code', 1, 'https://ror.org/03cvhr859 Unite 2 Fight Paralysis'),
(91093, 'https://ror.org/003tks917', 'en', 1, 'https://ror.org/003tks917 Escuela de Artes PlƔsticas y DiseƱo de Puerto Rico School of Plastic Arts of Puerto Rico'),
(91094, 'https://ror.org/009pn2s74', 'en', 1, 'https://ror.org/009pn2s74 Office of Nuclear Facilities Management'),
(91095, 'https://ror.org/02c8w8j12', 'en', 1, 'https://ror.org/02c8w8j12 Prince Bernhard Nature Fund'),
(91096, 'https://ror.org/0273xz717', 'en', 1, 'https://ror.org/0273xz717 Puerto Rico Community Network for Clinical Research on AIDS'),
(91097, 'https://ror.org/01nejhz12', 'en', 0, 'https://ror.org/01nejhz12 Naval Electronics Laboratory Center'),
(91098, 'https://ror.org/04h13ss13', 'en', 1, 'https://ror.org/04h13ss13 The Geneva Learning Foundation'),
(91099, 'https://ror.org/024ms8859', 'en', 1, 'https://ror.org/024ms8859 U.S. Army Aberdeen Test Center'),
(91100, 'https://ror.org/01db6pq27', 'en', 1, 'https://ror.org/01db6pq27 California Department of Parks and Recreation'),
(91101, 'https://ror.org/01afdc871', 'en', 1, 'https://ror.org/01afdc871 Breast Cancer Options'),
(91102, 'https://ror.org/03esms521', 'en', 1, 'https://ror.org/03esms521 Advanced Materials and Manufacturing Technologies Office'),
(91103, 'https://ror.org/04cf69335', 'en', 0, 'https://ror.org/04cf69335 Washington University in St. Louis School of Medicine'),
(91104, 'https://ror.org/0156y9725', 'en', 1, 'https://ror.org/0156y9725 Virgin Islands Territorial Emergency Management Agency'),
(91105, 'https://ror.org/01gs1cg95', 'en', 1, 'https://ror.org/01gs1cg95 Naval Information Warfare Center Pacific'),
(91106, 'https://ror.org/03wg5pr04', 'en', 1, 'https://ror.org/03wg5pr04 Pacific Islands University'),
(91107, 'https://ror.org/05re0sm29', 'fr', 1, 'https://ror.org/05re0sm29 Ɖcole des Neurosciences de Paris Ɖcole des Neurosciences de Paris Ǝle-de-France'),
(91108, 'https://ror.org/01jyv8a11', 'en', 1, 'https://ror.org/01jyv8a11 Massachusetts Breast Cancer Coalition'),
(91109, 'https://ror.org/02ssawd58', 'en', 1, 'https://ror.org/02ssawd58 Office of Sustainable Transportation and Fuels'),
(91110, 'https://ror.org/02j52de91', 'en', 0, 'https://ror.org/02j52de91 Naval Air Warfare Center Warminster'),
(91111, 'https://ror.org/0327y7e25', 'en', 1, 'https://ror.org/0327y7e25 Institute of Materials Structure Science 物質構造科学研究所'),
(91112, 'https://ror.org/014mvmf11', 'en', 1, 'https://ror.org/014mvmf11 Neurofibromatosis Network'),
(91113, 'https://ror.org/01zj39k81', 'en', 1, 'https://ror.org/01zj39k81 Naval Air Warfare Center Aircraft Division'),
(91114, 'https://ror.org/059t9bq48', 'en', 1, 'https://ror.org/059t9bq48 ZERO Prostate Cancer'),
(91115, 'https://ror.org/00sqxrc60', 'en', 1, 'https://ror.org/00sqxrc60 Team Survivor Northwest'),
(91116, 'https://ror.org/0013qa018', 'en', 1, 'https://ror.org/0013qa018 Catanduanes State University'),
(91117, 'https://ror.org/02qm5wh40', 'en', 1, 'https://ror.org/02qm5wh40 American Samoa Community Cancer Coalition'),
(91118, 'https://ror.org/01mqtzm43', 'es', 1, 'https://ror.org/01mqtzm43 Instituto de Microelectrónica de Sevilla'),
(91119, 'https://ror.org/05y74m987', 'en', 0, 'https://ror.org/05y74m987 Kostanay State University A Baitursynov ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ахмета Š‘Š°Š¹Ń‚ŃƒŃ€ŃŃ‹Š½Š¾Š²Š° ŅšŠ¾ŃŃ‚Š°Š½Š°Š¹ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(91120, 'https://ror.org/04g26vc28', 'fr', 1, 'https://ror.org/04g26vc28 Institut de Chimie MolƩculaire de Grenoble'),
(91121, 'https://ror.org/02njytm78', 'en', 1, 'https://ror.org/02njytm78 Auxilio Mutuo Hospital'),
(91122, 'https://ror.org/029fhmb28', 'en', 1, 'https://ror.org/029fhmb28 N.N. Krasovskii Institute of Mathematics and Mechanics of the Ural Branch of the Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики Šø механики'),
(91123, 'https://ror.org/037gty358', 'es', 1, 'https://ror.org/037gty358 Metropolitan University Universidad Metropolitana'),
(91124, 'https://ror.org/04bym8a28', 'en', 1, 'https://ror.org/04bym8a28 Grid Systems and Components'),
(91125, 'https://ror.org/01zv3gf04', 'en', 1, 'https://ror.org/01zv3gf04 Finnish Geospatial Research Institute'),
(91126, 'https://ror.org/0095e2947', 'en', 1, 'https://ror.org/0095e2947 U.S. Army Electronic Proving Ground'),
(91127, 'https://ror.org/01acw3598', 'fr', 1, 'https://ror.org/01acw3598 Centre d''Ɖtudes MĆ©diĆ©vales Anglaises'),
(91128, 'https://ror.org/03tm7k583', 'en', 0, 'https://ror.org/03tm7k583 Naval Weapons Center'),
(91129, 'https://ror.org/00htph268', 'en', 1, 'https://ror.org/00htph268 Office of Under Secretary for Science and Innovation'),
(91130, 'https://ror.org/044fqcn90', 'en', 1, 'https://ror.org/044fqcn90 San Juan Quarantine Station'),
(91131, 'https://ror.org/02vg64e60', 'en', 1, 'https://ror.org/02vg64e60 Office of Technology Transitions'),
(91132, 'https://ror.org/031sj3f42', 'en', 1, 'https://ror.org/031sj3f42 Ann''s Place'),
(91133, 'https://ror.org/011cc8156', 'en', 1, 'https://ror.org/011cc8156 California Department of Public Health Departamento de Salud PĆŗblica de California'),
(91134, 'https://ror.org/00s1szh94', 'en', 1, 'https://ror.org/00s1szh94 Ascension'),
(91135, 'https://ror.org/04h1bd429', 'en', 1, 'https://ror.org/04h1bd429 ICPR Junior College'),
(91136, 'https://ror.org/03h6j3g83', 'en', 1, 'https://ror.org/03h6j3g83 Facing Our Risk of Cancer Empowered'),
(91137, 'https://ror.org/049nq3475', 'en', 1, 'https://ror.org/049nq3475 Graceland International University'),
(91138, 'https://ror.org/04f6tkx67', 'fr', 1, 'https://ror.org/04f6tkx67 Neuropsychologie et Imagerie de la MƩmoire Humaine'),
(91139, 'https://ror.org/03qkqe023', 'en', 0, 'https://ror.org/03qkqe023 Naval Ocean Systems Center'),
(91140, 'https://ror.org/01gas4q24', 'en', 1, 'https://ror.org/01gas4q24 Office of Defense Nuclear Security'),
(91141, 'https://ror.org/00qdphm77', 'fr', 1, 'https://ror.org/00qdphm77 Nutrition and Obesities: Systemic Approaches Nutrition et obƩsitƩ : approches systƩmiques'),
(91142, 'https://ror.org/02b58zy88', 'en', 1, 'https://ror.org/02b58zy88 Department of Administration'),
(91143, 'https://ror.org/01j67h539', 'en', 1, 'https://ror.org/01j67h539 Office of Advanced Fuels Technologies'),
(91144, 'https://ror.org/042zqcx93', 'en', 1, 'https://ror.org/042zqcx93 Northern Marianas College'),
(91145, 'https://ror.org/05kkfq345', 'en', 1, 'https://ror.org/05kkfq345 Research Institute for Humanity and Nature ē·åˆåœ°ēƒē’°å¢ƒå­¦ē ”ē©¶ę‰€'),
(91146, 'https://ror.org/02hb7bm88', 'en', 1, 'https://ror.org/02hb7bm88 Natural Resources Institute Finland'),
(91147, 'https://ror.org/05gw1cv54', 'en', 1, 'https://ror.org/05gw1cv54 Antillean Adventist University Universidad Adventista de las Antillas'),
(91148, 'https://ror.org/01tqga721', 'en', 1, 'https://ror.org/01tqga721 Baltijas jÅ«ras aizsardzÄ«bas fonds The Baltic Sea Conservation Foundation ФонГ охраны Балтийского Š¼Š¾Ń€Ń'),
(91149, 'https://ror.org/05tc5g775', 'de', 1, 'https://ror.org/05tc5g775 Max Planck Foundation Max-Planck-Fƶrderstiftung'),
(91150, 'https://ror.org/01cyr5g02', 'en', 1, 'https://ror.org/01cyr5g02 Office of Environment, Safety, and Health'),
(91151, 'https://ror.org/03q2cf306', 'no_lang_code', 0, 'https://ror.org/03q2cf306 Achaogen (United States)'),
(91152, 'https://ror.org/01dzdyp81', 'en', 1, 'https://ror.org/01dzdyp81 Department of Public Health and Social Services Dipattamenton Salut Pupbleko Yan Setbision Susiat'),
(91153, 'https://ror.org/04qw17677', 'en', 0, 'https://ror.org/04qw17677 Kostanai State Pedagogical University ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(91154, 'https://ror.org/031689s30', 'en', 1, 'https://ror.org/031689s30 Adult Congenital Heart Association'),
(91155, 'https://ror.org/0471xye93', 'en', 1, 'https://ror.org/0471xye93 Higher Education Authority'),
(91156, 'https://ror.org/01s6vvw09', 'en', 1, 'https://ror.org/01s6vvw09 The Red Door Community'),
(91157, 'https://ror.org/057kr0a20', 'en', 1, 'https://ror.org/057kr0a20 Society for the Study of Evolution'),
(91158, 'https://ror.org/05qwjzv06', 'en', 1, 'https://ror.org/05qwjzv06 Thailand Center of Excellence for Life Sciences ąøØąø¹ąø™ąø¢ą¹Œąø„ąø§ąø²ąø”ą¹€ąø›ą¹‡ąø™ą¹€ąø„ąø“ąøØąø”ą¹‰ąø²ąø™ąøŠąøµąø§ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(91159, 'https://ror.org/055n47h92', 'en', 1, 'https://ror.org/055n47h92 National Institutes of Natural Sciences č‡Ŗē„¶ē§‘å­¦ē ”ē©¶ę©Ÿę§‹'),
(91160, 'https://ror.org/004595x17', 'no_lang_code', 1, 'https://ror.org/004595x17 Tafuna High School'),
(91161, 'https://ror.org/01d7n9638', 'no_lang_code', 1, 'https://ror.org/01d7n9638 ITER'),
(91162, 'https://ror.org/05th6qs39', 'en', 1, 'https://ror.org/05th6qs39 Central Asian Medical University ДреГнеазиатский меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(91163, 'https://ror.org/04zfn8472', 'no_lang_code', 1, 'https://ror.org/04zfn8472 Malecare'),
(91164, 'https://ror.org/04xy2by41', 'fr', 1, 'https://ror.org/04xy2by41 Civilisations et littératures d''Espagne et d''Amérique du Moyen-Age aux Lumières'),
(91165, 'https://ror.org/04gdmp810', 'en', 1, 'https://ror.org/04gdmp810 Northern Marianas Humanities Council'),
(91166, 'https://ror.org/04p3kp518', 'en', 1, 'https://ror.org/04p3kp518 Seismological Observatory at the Faculty of Natural Sciences and Mathematics, Ss. Cyril and Methodius University, Skopje, Republic of Macedonia Деизмолошка Š¾ŠæŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ˜Š°, ŠŸŃ€ŠøŃ€Š¾Š“Š½Š¾-математички Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚, Универзитет Дв. ŠšŠøŃ€ŠøŠ» Šø ŠœŠµŃ‚Š¾Š“ŠøŃ˜ во Дкопје'),
(91167, 'https://ror.org/00k4n9847', 'en', 1, 'https://ror.org/00k4n9847 National Autism Association'),
(91168, 'https://ror.org/00zv5ev24', 'en', 1, 'https://ror.org/00zv5ev24 Administración de Servicios de Salud Mental y Contra la Adicción Puerto Rico Administration of Mental Health and Anti-Addiction Services');
INSERT INTO `rors` VALUES
(91169, 'https://ror.org/02psmjc37', 'en', 1, 'https://ror.org/02psmjc37 Office of Infrastructure'),
(91170, 'https://ror.org/00e72by15', 'en', 1, 'https://ror.org/00e72by15 U.S. Army Combat Capabilities Development Command Aviation & Missile Center'),
(91171, 'https://ror.org/01gt4tt35', 'en', 1, 'https://ror.org/01gt4tt35 Prostate Cancer Research Institute'),
(91172, 'https://ror.org/02c8q2v13', 'en', 1, 'https://ror.org/02c8q2v13 Bayer Fund'),
(91173, 'https://ror.org/042j5cq94', 'no_lang_code', 1, 'https://ror.org/042j5cq94 Assheuer + Pott (Germany)'),
(91174, 'https://ror.org/05btmzn02', 'fr', 1, 'https://ror.org/05btmzn02 Corteam'),
(91175, 'https://ror.org/00qwt4a62', 'no_lang_code', 1, 'https://ror.org/00qwt4a62 Accentus Medical (United Kingdom)'),
(91176, 'https://ror.org/01tsr2j53', 'no_lang_code', 1, 'https://ror.org/01tsr2j53 Bureau Veritas (Australia)'),
(91177, 'https://ror.org/03gmmtm59', 'no_lang_code', 1, 'https://ror.org/03gmmtm59 Eurofins (United Kingdom)'),
(91178, 'https://ror.org/04m31s369', 'en', 1, 'https://ror.org/04m31s369 Institute for Advancing Computing Education'),
(91179, 'https://ror.org/0375b8f90', 'fr', 1, 'https://ror.org/0375b8f90 Centre d''Immunologie et des Maladies Infectieuses Centre of Immunology and Microbial Infections'),
(91180, 'https://ror.org/01pa9ed26', 'en', 1, 'https://ror.org/01pa9ed26 Dartmouth Health'),
(91181, 'https://ror.org/02tmabg35', 'no_lang_code', 1, 'https://ror.org/02tmabg35 Triad National Security (United States)'),
(91182, 'https://ror.org/01sra1980', 'fr', 1, 'https://ror.org/01sra1980 Remodelage et Reparation du Tissu Renal Remodelage et rƩparation du tissu rƩnal'),
(91183, 'https://ror.org/03cqwn895', 'fr', 1, 'https://ror.org/03cqwn895 Laboratoire d’immunologie intĆ©grative du cancer Laboratory of Integrative Cancer Immunology'),
(91184, 'https://ror.org/002kcsx52', 'en', 1, 'https://ror.org/002kcsx52 Guts UK'),
(91185, 'https://ror.org/04tvx8690', 'en', 1, 'https://ror.org/04tvx8690 University of Arizona Cancer Center'),
(91186, 'https://ror.org/025gvpt43', 'no_lang_code', 1, 'https://ror.org/025gvpt43 I-Five (South Korea) ģ•„ģ“ķŒŒģ“ėøŒ'),
(91187, 'https://ror.org/01xgv8v73', 'en', 1, 'https://ror.org/01xgv8v73 Centre de recherche et de dƩveloppement de QuƩbec Quebec Research and Development Centre'),
(91188, 'https://ror.org/03cbz4r60', 'en', 1, 'https://ror.org/03cbz4r60 Harold C. Simmons Comprehensive Cancer Center'),
(91189, 'https://ror.org/0138eq662', 'fr', 1, 'https://ror.org/0138eq662 Onco-Urologie PrƩdictive'),
(91190, 'https://ror.org/04cddv372', 'no_lang_code', 1, 'https://ror.org/04cddv372 Miele (Germany)'),
(91191, 'https://ror.org/02w5ava96', 'fr', 1, 'https://ror.org/02w5ava96 Conseil dƩpartemental de la Dordogne'),
(91192, 'https://ror.org/03h0qhk21', 'en', 1, 'https://ror.org/03h0qhk21 Cornell Atkinson Center for Sustainability'),
(91193, 'https://ror.org/01hwc7828', 'fr', 1, 'https://ror.org/01hwc7828 Arid Regions Institute Institut des RĆ©gions Arides معهد المناطق القاحلة'),
(91194, 'https://ror.org/035xqz322', 'en', 1, 'https://ror.org/035xqz322 Center for Functional Nanomaterials'),
(91195, 'https://ror.org/00z4cj158', 'no_lang_code', 1, 'https://ror.org/00z4cj158 Santen (France) å‚å¤©č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(91196, 'https://ror.org/00habjq51', 'no_lang_code', 1, 'https://ror.org/00habjq51 Aptar (United States)'),
(91197, 'https://ror.org/01f36yb88', 'no_lang_code', 1, 'https://ror.org/01f36yb88 Exedy (Japan)'),
(91198, 'https://ror.org/03v7tx966', 'en', 1, 'https://ror.org/03v7tx966 Huntsman Cancer Institute'),
(91199, 'https://ror.org/03w5sq511', 'en', 1, 'https://ror.org/03w5sq511 Indian Institute of Technology Kharagpur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾, ą¤–ą¤”ą„ą¤—ą¤Ŗą„‚ą¤° ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤–ą¤”ą¤¼ą¤—ą¤Ŗą„ą¤° ভারতীয় ą¦Ŗą§ą¦°ą§Œą¦¦ą§ą¦Æą§‹ą¦—ą¦æą¦•ą§€ ą¦øą¦‚ą¦øą§ą¦„ą¦¾ą¦Ø, খঔ়গপুর ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®°ą®•ąÆą®ŖąÆ‚ą®°ąÆ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“–ą“°ą“—ąµā€Œą“Ŗąµ‚ąµ¼'),
(91200, 'https://ror.org/0499yp070', 'en', 1, 'https://ror.org/0499yp070 Landcare Australia'),
(91201, 'https://ror.org/05bk0c386', 'en', 1, 'https://ror.org/05bk0c386 Rusk Rehabilitation'),
(91202, 'https://ror.org/05vvm2m33', 'no_lang_code', 1, 'https://ror.org/05vvm2m33 ChorusOS (France)'),
(91203, 'https://ror.org/02177hd90', 'en', 1, 'https://ror.org/02177hd90 Moinhos de Vento Agroecology Research Centre'),
(91204, 'https://ror.org/05c92t973', 'no_lang_code', 1, 'https://ror.org/05c92t973 Tenaris (Luxembourg)'),
(91205, 'https://ror.org/01zshhn36', 'no_lang_code', 1, 'https://ror.org/01zshhn36 StƤubli (France)'),
(91206, 'https://ror.org/0329fj191', 'fr', 1, 'https://ror.org/0329fj191 Conseil dƩpartemental de l''Essonne'),
(91207, 'https://ror.org/018nc6029', 'no_lang_code', 1, 'https://ror.org/018nc6029 Solutions Inc. (Japan) ć‚½ćƒ«ćƒ¼ć‚·ćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(91208, 'https://ror.org/02pkvbe21', 'en', 1, 'https://ror.org/02pkvbe21 Southern New Hampshire Medical Center'),
(91209, 'https://ror.org/05cwx3318', 'en', 1, 'https://ror.org/05cwx3318 National Microbiome Data Collaborative'),
(91210, 'https://ror.org/0523t5q52', 'en', 1, 'https://ror.org/0523t5q52 Centre de recherche et de dƩveloppement de Harrow Harrow Research and Development Centre'),
(91211, 'https://ror.org/01x26mz03', 'en', 1, 'https://ror.org/01x26mz03 National Energy Technology Laboratory'),
(91212, 'https://ror.org/031ve0e22', 'fr', 0, 'https://ror.org/031ve0e22 Systematics, Adaptation, Evolution SystƩmatique, adaptation, Ʃvolution'),
(91213, 'https://ror.org/051fvmk98', 'en', 1, 'https://ror.org/051fvmk98 University of Alabama System'),
(91214, 'https://ror.org/02vzm3e56', 'en', 1, 'https://ror.org/02vzm3e56 South Carolina Spinal Cord Injury Association'),
(91215, 'https://ror.org/02e0bg420', 'en', 1, 'https://ror.org/02e0bg420 Centre de recherche et de dƩveloppement de Guelph Guelph Research and Development Centre'),
(91216, 'https://ror.org/00apj8t60', 'en', 1, 'https://ror.org/00apj8t60 Bandung Institute of Technology Institut Teknologi Bandung Institut TĆØknologi Bandung Technische Hogeschool Bandoeng'),
(91217, 'https://ror.org/02kcc1z29', 'en', 1, 'https://ror.org/02kcc1z29 UC Davis Comprehensive Cancer Center'),
(91218, 'https://ror.org/05p915b28', 'en', 1, 'https://ror.org/05p915b28 Oak Ridge Leadership Computing Facility'),
(91219, 'https://ror.org/01wass480', 'en', 1, 'https://ror.org/01wass480 Center for Nanophase Materials Sciences'),
(91220, 'https://ror.org/04q26jh72', 'no_lang_code', 1, 'https://ror.org/04q26jh72 General Electric (France)'),
(91221, 'https://ror.org/03vt7q796', 'no_lang_code', 1, 'https://ror.org/03vt7q796 Aptar (France)'),
(91222, 'https://ror.org/04rc0xn13', 'en', 1, 'https://ror.org/04rc0xn13 Environmental Molecular Sciences Laboratory'),
(91223, 'https://ror.org/03tzaeb71', 'en', 1, 'https://ror.org/03tzaeb71 Universidad de HawÔi University of Hawaii System Université d''hawaï'),
(91224, 'https://ror.org/03sgjjk97', 'en', 1, 'https://ror.org/03sgjjk97 Centre de recherche et de dƩveloppement de Lethbridge Lethbridge Research and Development Centre'),
(91225, 'https://ror.org/042wftp98', 'en', 1, 'https://ror.org/042wftp98 University of Chicago Medicine Comprehensive Cancer Center'),
(91226, 'https://ror.org/00adh9b73', 'en', 1, 'https://ror.org/00adh9b73 National Institute of Diabetes and Digestive and Kidney Diseases'),
(91227, 'https://ror.org/00dnaz088', 'en', 1, 'https://ror.org/00dnaz088 Shanghai Posts & Telecommunications Designing Consulting Institute äøŠęµ·é‚®ē”µč®¾č®”å’ØčÆ¢ē ”ē©¶é™¢ęœ‰é™å…¬åøåˆ›'),
(91228, 'https://ror.org/0184qmt78', 'en', 1, 'https://ror.org/0184qmt78 Cancer Council Western Australia'),
(91229, 'https://ror.org/02xn1ny06', 'en', 1, 'https://ror.org/02xn1ny06 High Flux Isotope Reactor'),
(91230, 'https://ror.org/00yksxf10', 'en', 1, 'https://ror.org/00yksxf10 Emory Healthcare'),
(91231, 'https://ror.org/00wra1b14', 'en', 1, 'https://ror.org/00wra1b14 Arc Research Institute'),
(91232, 'https://ror.org/003hyqr30', 'fr', 1, 'https://ror.org/003hyqr30 Ɖcole nationale supĆ©rieure Louis-LumiĆØre'),
(91233, 'https://ror.org/034c5s198', 'no_lang_code', 1, 'https://ror.org/034c5s198 NG Biotech (France)'),
(91234, 'https://ror.org/03fxf3w65', 'en', 1, 'https://ror.org/03fxf3w65 Ministry of AYUSH ą¤†ą¤Æą„ą¤· ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(91235, 'https://ror.org/01h4ne021', 'no_lang_code', 1, 'https://ror.org/01h4ne021 NEAL (Algeria)'),
(91236, 'https://ror.org/02qe0rk31', 'fr', 1, 'https://ror.org/02qe0rk31 THERANOSCAN : Biomarqueurs ThƩranostiques des Cancers Bronchiques Non Ơ Petites Cellules'),
(91237, 'https://ror.org/03qryx823', 'en', 1, 'https://ror.org/03qryx823 Technion – Israel Institute of Technology הטכניון – מכון טכנולוגי ×œ×™×©×Ø××œ Ų¬Ų§Ł…Ų¹Ų© ŲŖŲ®Ł†ŁŠŁˆŁ†'),
(91238, 'https://ror.org/05x083d20', 'en', 1, 'https://ror.org/05x083d20 Masonic Cancer Center'),
(91239, 'https://ror.org/029fsp028', 'en', 1, 'https://ror.org/029fsp028 Oak Spring Garden Foundation'),
(91240, 'https://ror.org/04d3kxm45', 'en', 1, 'https://ror.org/04d3kxm45 Scientific and Industrial Research and Development Centre'),
(91241, 'https://ror.org/00a6cxf28', 'en', 1, 'https://ror.org/00a6cxf28 OU Health'),
(91242, 'https://ror.org/00cw4qm30', 'fr', 1, 'https://ror.org/00cw4qm30 Dynamiques patrimoniales et culturelles'),
(91243, 'https://ror.org/033cvvt68', 'en', 1, 'https://ror.org/033cvvt68 Kazakh National Agrarian Research University ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ аграрный ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŅšŠ°Š·Š°Ņ› ұлттық аграрлық Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(91244, 'https://ror.org/04k51bq24', 'fr', 1, 'https://ror.org/04k51bq24 Laboratoire d''Economie et de Management de Nantes Atlantique'),
(91245, 'https://ror.org/007q04248', 'en', 1, 'https://ror.org/007q04248 Mayo Clinic Comprehensive Cancer Center (Florida)'),
(91246, 'https://ror.org/0197nmd03', 'no_lang_code', 1, 'https://ror.org/0197nmd03 Ritsumeikan University 立命館大学'),
(91247, 'https://ror.org/03yke0t02', 'en', 1, 'https://ror.org/03yke0t02 Centre de recherche et de dƩveloppement de Saint-Jean-sur-Richelieu Saint-Jean-sur-Richelieu Research and Development Centre'),
(91248, 'https://ror.org/02bmcqd02', 'en', 1, 'https://ror.org/02bmcqd02 OU Health Stephenson Cancer Center'),
(91249, 'https://ror.org/005dvqh91', 'en', 1, 'https://ror.org/005dvqh91 NYU Langone Health'),
(91250, 'https://ror.org/0076kfe04', 'en', 1, 'https://ror.org/0076kfe04 University of Chicago Medical Center'),
(91251, 'https://ror.org/02nckqd02', 'en', 1, 'https://ror.org/02nckqd02 Johns Hopkins University SAIS Bologna Center'),
(91252, 'https://ror.org/034t0c490', 'en', 1, 'https://ror.org/034t0c490 Centre de recherche et de dƩveloppement de Saskatoon Saskatoon Research and Development Centre'),
(91253, 'https://ror.org/043kyf032', 'no_lang_code', 1, 'https://ror.org/043kyf032 Uniboard (Canada)'),
(91254, 'https://ror.org/028t46f04', 'en', 1, 'https://ror.org/028t46f04 The Ohio State University Comprehensive Cancer Center – Arthur G. James Cancer Hospital and Richard J. Solove Research Institute'),
(91255, 'https://ror.org/0580dnq61', 'en', 1, 'https://ror.org/0580dnq61 Accelerator Test Facility'),
(91256, 'https://ror.org/030c92375', 'en', 0, 'https://ror.org/030c92375 Department of Agriculture, Water and the Environment'),
(91257, 'https://ror.org/02qvhgb32', 'fr', 1, 'https://ror.org/02qvhgb32 Réanimation et soins intensifs du patient en Insuffisance respiratoire aigüe'),
(91258, 'https://ror.org/03b2c0z26', 'no_lang_code', 1, 'https://ror.org/03b2c0z26 InnaVirVax (France)'),
(91259, 'https://ror.org/00pgg9c81', 'no_lang_code', 1, 'https://ror.org/00pgg9c81 Chunghwa Picture Tubes (Taiwan) äø­čÆę˜ ē®”č‚”ä»½ęœ‰é™å…¬åø'),
(91260, 'https://ror.org/01hg74696', 'en', 1, 'https://ror.org/01hg74696 Sankofa Healing Studio'),
(91261, 'https://ror.org/04n32nk31', 'no_lang_code', 1, 'https://ror.org/04n32nk31 Boyds (United Kingdom)'),
(91262, 'https://ror.org/04n40rk24', 'fr', 1, 'https://ror.org/04n40rk24 Groupe de recherche clinique – Tumeurs ThyroĆÆdiennes'),
(91263, 'https://ror.org/04tk2gy88', 'en', 1, 'https://ror.org/04tk2gy88 University of Florida Health'),
(91264, 'https://ror.org/01k46bc48', 'no_lang_code', 1, 'https://ror.org/01k46bc48 Semmtech (Netherlands)'),
(91265, 'https://ror.org/02jxk1021', 'en', 1, 'https://ror.org/02jxk1021 Mathematical Institute of the Serbian Academy of Sciences and Arts'),
(91266, 'https://ror.org/00cj35179', 'en', 1, 'https://ror.org/00cj35179 The University of Kansas Cancer Center'),
(91267, 'https://ror.org/00tb6q730', 'no_lang_code', 1, 'https://ror.org/00tb6q730 Laboratoire Dielen (France)'),
(91268, 'https://ror.org/02d0qf239', 'en', 1, 'https://ror.org/02d0qf239 Centre de la lutte antiparasitaire Pest Management Centre'),
(91269, 'https://ror.org/03pvyf116', 'en', 1, 'https://ror.org/03pvyf116 Dana-Farber/Harvard Cancer Center'),
(91270, 'https://ror.org/02qqh1125', 'fr', 1, 'https://ror.org/02qqh1125 Institut Pierre Louis dā€˜Ć‰pidĆ©miologie et de SantĆ© Publique Pierre Louis Institute of Epidemiology and Public Health'),
(91271, 'https://ror.org/05j681482', 'no_lang_code', 1, 'https://ror.org/05j681482 IntegraGen (France)'),
(91272, 'https://ror.org/03wxndv36', 'fr', 1, 'https://ror.org/03wxndv36 Centre de Recherche Saint-Antoine Saint-Antoine Research Center'),
(91273, 'https://ror.org/03vn1ts68', 'en', 1, 'https://ror.org/03vn1ts68 Princeton Plasma Physics Laboratory'),
(91274, 'https://ror.org/02tfmen73', 'fr', 1, 'https://ror.org/02tfmen73 Grenoble Alpes MƩtropole'),
(91275, 'https://ror.org/03j18km61', 'en', 1, 'https://ror.org/03j18km61 O''Neal Comprehensive Cancer Center'),
(91276, 'https://ror.org/05d3bn623', 'fr', 1, 'https://ror.org/05d3bn623 Laboratoire des Applications NumƩriques'),
(91277, 'https://ror.org/044b05b34', 'en', 1, 'https://ror.org/044b05b34 Dartmouth Cancer Center'),
(91278, 'https://ror.org/03ger2h42', 'en', 1, 'https://ror.org/03ger2h42 Centre de recherche et de dƩveloppement de Charlottetown Charlottetown Research and Development Centre'),
(91279, 'https://ror.org/034jn5z48', 'en', 1, 'https://ror.org/034jn5z48 Indira Gandhi Institute of Development Research'),
(91280, 'https://ror.org/0399wt198', 'en', 1, 'https://ror.org/0399wt198 Centre de recherche et de dƩveloppement de Summerland Summerland Research and Development Centre'),
(91281, 'https://ror.org/019z76p34', 'it', 1, 'https://ror.org/019z76p34 WWF Italia'),
(91282, 'https://ror.org/015y1mx47', 'en', 1, 'https://ror.org/015y1mx47 United Nations University World Institute for Development Economics Research'),
(91283, 'https://ror.org/02et65004', 'en', 1, 'https://ror.org/02et65004 White River Junction VA Medical Center'),
(91284, 'https://ror.org/03660jn93', 'en', 1, 'https://ror.org/03660jn93 Mayo Clinic Hospital'),
(91285, 'https://ror.org/03z21mf61', 'en', 1, 'https://ror.org/03z21mf61 Lawrence Livermore National Security'),
(91286, 'https://ror.org/001pprn90', 'en', 1, 'https://ror.org/001pprn90 WWF Tanzania'),
(91287, 'https://ror.org/05vc7qy59', 'en', 1, 'https://ror.org/05vc7qy59 Savannah River National Laboratory'),
(91288, 'https://ror.org/0317dzj93', 'en', 1, 'https://ror.org/0317dzj93 Tisch Cancer Institute'),
(91289, 'https://ror.org/05a25vm86', 'en', 1, 'https://ror.org/05a25vm86 Lucile Packard Children''s Hospital'),
(91290, 'https://ror.org/02nre0x31', 'en', 1, 'https://ror.org/02nre0x31 Dan L Duncan Comprehensive Cancer Center'),
(91291, 'https://ror.org/01nmyfr60', 'en', 1, 'https://ror.org/01nmyfr60 USC Norris Comprehensive Cancer Center'),
(91292, 'https://ror.org/021n14p32', 'en', 0, 'https://ror.org/021n14p32 Texas State University'),
(91293, 'https://ror.org/046p12h21', 'no_lang_code', 1, 'https://ror.org/046p12h21 Bio-Medical Science (South Korea)'),
(91294, 'https://ror.org/02j44zw77', 'no_lang_code', 1, 'https://ror.org/02j44zw77 Arianespace (France)'),
(91295, 'https://ror.org/05td1pb92', 'en', 1, 'https://ror.org/05td1pb92 Canadian Dairy Commission Commission canadienne du lait'),
(91296, 'https://ror.org/011gr5n11', 'fr', 1, 'https://ror.org/011gr5n11 Handicap moteur et cognitif et rƩadaptation'),
(91297, 'https://ror.org/04w75nz84', 'en', 1, 'https://ror.org/04w75nz84 University of Virginia Cancer Center'),
(91298, 'https://ror.org/04krpx645', 'en', 1, 'https://ror.org/04krpx645 Tabriz University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تبریز'),
(91299, 'https://ror.org/05gzqy922', 'en', 1, 'https://ror.org/05gzqy922 UC Irvine Chao Family Comprehensive Cancer Center'),
(91300, 'https://ror.org/008gjgb19', 'en', 1, 'https://ror.org/008gjgb19 Department of Agriculture Food and the Marine'),
(91301, 'https://ror.org/03jp40720', 'en', 1, 'https://ror.org/03jp40720 Mayo Clinic in Arizona'),
(91302, 'https://ror.org/059h0ng81', 'en', 1, 'https://ror.org/059h0ng81 Central Mechanical Engineering Research Institute'),
(91303, 'https://ror.org/05w21fm10', 'no_lang_code', 1, 'https://ror.org/05w21fm10 WWF-India'),
(91304, 'https://ror.org/006qymt97', 'no_lang_code', 1, 'https://ror.org/006qymt97 ZIN Technologies (United States)'),
(91305, 'https://ror.org/031yh0y38', 'en', 1, 'https://ror.org/031yh0y38 Center for Integrated Nanotechnologies'),
(91306, 'https://ror.org/043ehm030', 'en', 1, 'https://ror.org/043ehm030 UNC Lineberger Comprehensive Cancer Center'),
(91307, 'https://ror.org/00v0nyw36', 'no_lang_code', 1, 'https://ror.org/00v0nyw36 Pioneers Research and Consulting Group (Switzerland)'),
(91308, 'https://ror.org/024exxj48', 'en', 1, 'https://ror.org/024exxj48 Gifu University 岐阜大学'),
(91309, 'https://ror.org/04fd0ez87', 'no_lang_code', 1, 'https://ror.org/04fd0ez87 Systems Engineering Associates Corporation (United States)'),
(91310, 'https://ror.org/00fj8a872', 'en', 1, 'https://ror.org/00fj8a872 Office of the Director'),
(91311, 'https://ror.org/04fkqna53', 'en', 1, 'https://ror.org/04fkqna53 University of Maryland Medical System'),
(91312, 'https://ror.org/01x4cvr40', 'no_lang_code', 1, 'https://ror.org/01x4cvr40 Military Electronic Works (Poland)'),
(91313, 'https://ror.org/00y16rm59', 'fr', 1, 'https://ror.org/00y16rm59 Institut des Sciences du Calcul et des DonnƩes Institute of Computing and Data Sciences'),
(91314, 'https://ror.org/039djdh30', 'en', 1, 'https://ror.org/039djdh30 Deutscher Akademischer Austauschdienst German Academic Exchange Service'),
(91315, 'https://ror.org/05kx2e072', 'en', 1, 'https://ror.org/05kx2e072 UNM Comprehensive Cancer Center'),
(91316, 'https://ror.org/0280a3n32', 'en', 1, 'https://ror.org/0280a3n32 Joslin Diabetes Center'),
(91317, 'https://ror.org/04bxhp795', 'en', 1, 'https://ror.org/04bxhp795 Centre de recherche et de dƩveloppement de Lacombe Lacombe Research and Development Centre'),
(91318, 'https://ror.org/01c2cjg59', 'fr', 1, 'https://ror.org/01c2cjg59 Institut de Biologie Paris-Seine'),
(91319, 'https://ror.org/0475zhg63', 'no_lang_code', 1, 'https://ror.org/0475zhg63 Suez (France)'),
(91320, 'https://ror.org/02j58f715', 'en', 1, 'https://ror.org/02j58f715 Fermi Research Alliance'),
(91321, 'https://ror.org/03njmea73', 'en', 1, 'https://ror.org/03njmea73 Duke Medical Center'),
(91322, 'https://ror.org/0165m9527', 'no_lang_code', 1, 'https://ror.org/0165m9527 ORTEC (Netherlands)'),
(91323, 'https://ror.org/05067ar32', 'en', 1, 'https://ror.org/05067ar32 WWF Germany'),
(91324, 'https://ror.org/0539tas66', 'en', 1, 'https://ror.org/0539tas66 Centre de recherche et de dƩveloppement de Fredericton Fredericton Research and Development Centre'),
(91325, 'https://ror.org/05wx9n238', 'no_lang_code', 1, 'https://ror.org/05wx9n238 OpenAI (United States)'),
(91326, 'https://ror.org/03fnc0m43', 'en', 1, 'https://ror.org/03fnc0m43 Kidney Foundation Hospital and Research Institute, Bangladesh'),
(91327, 'https://ror.org/0406jsq08', 'pt', 1, 'https://ror.org/0406jsq08 Hospital UniversitÔrio da Universidade de São Paulo University Hospital of the University of São Paulo'),
(91328, 'https://ror.org/03n63wv08', 'en', 1, 'https://ror.org/03n63wv08 Fred and Pamela Buffett Cancer Center'),
(91329, 'https://ror.org/05d789537', 'en', 1, 'https://ror.org/05d789537 New York University Langone Orthopedic Hospital'),
(91330, 'https://ror.org/00p9vpz11', 'pt', 1, 'https://ror.org/00p9vpz11 Federal University of ParaĆ­ba Universidade Federal da ParaĆ­ba'),
(91331, 'https://ror.org/05b0cyh02', 'en', 1, 'https://ror.org/05b0cyh02 Princess Nourah bint Abdulrahman University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ±Ų© Ł†ŁˆŲ±Ų© بنت Ų¹ŲØŲÆ الرحمن'),
(91332, 'https://ror.org/04e0p6b62', 'en', 1, 'https://ror.org/04e0p6b62 Centre de recherche et de dƩveloppement de Morden Morden Research and Development Centre'),
(91333, 'https://ror.org/00s0m4j44', 'fr', 1, 'https://ror.org/00s0m4j44 Centre Expert en EndomƩtriose'),
(91334, 'https://ror.org/05qv3p611', 'no_lang_code', 1, 'https://ror.org/05qv3p611 Nāgānanda International Institute for Buddhist Studies ą¶±ą·ą¶œą·ą¶±ą¶±ą·Šą¶Æ ą¶¢ą·ą¶­ą·Šā€ą¶ŗą¶±ą·Šą¶­ą¶» ą¶¶ą·žą¶Æą·Šą¶° ą¶…ą¶°ą·Šā€ą¶ŗą¶ŗą¶± ආයතනය'),
(91335, 'https://ror.org/03kq0xx85', 'en', 1, 'https://ror.org/03kq0xx85 State Enterprise "Ivano-Frankivsk Scientific and Production Center for Standardization, Metrology and Certification" Державне ŠŸŃ–Гприємство ā€žŃ–Š²Š°Š½Š¾-Š¤Ń€Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ ŠŠ°ŃƒŠŗŠ¾Š²Š¾-Виробничий Центр ДтанГартизації, ŠœŠµŃ‚Ń€Š¾Š»Š¾Š³Ń–Ń— Та Š”ŠµŃ€Ń‚ŠøŃ„Ń–ŠŗŠ°Ń†Ń–Ń—ā€'),
(91336, 'https://ror.org/00bxr0z07', 'en', 1, 'https://ror.org/00bxr0z07 National Snow and Ice Data Center'),
(91337, 'https://ror.org/036554539', 'en', 1, 'https://ror.org/036554539 UAB Medicine'),
(91338, 'https://ror.org/029242j35', 'no_lang_code', 1, 'https://ror.org/029242j35 Sport-Elec (France)'),
(91339, 'https://ror.org/02cz3nh82', 'en', 1, 'https://ror.org/02cz3nh82 Centre de recherche et de dƩveloppement de Saint-Hyacinthe Saint-Hyacinthe Research and Development Centre'),
(91340, 'https://ror.org/05kytrf83', 'fr', 1, 'https://ror.org/05kytrf83 MƩthodes et Outils pour les Sciences Participatives'),
(91341, 'https://ror.org/01bw7zm61', 'en', 1, 'https://ror.org/01bw7zm61 Scottish Government Health and Social Care Directorates'),
(91342, 'https://ror.org/01s5nhm68', 'no_lang_code', 1, 'https://ror.org/01s5nhm68 Gipsi (France)'),
(91343, 'https://ror.org/01n0j2c74', 'en', 1, 'https://ror.org/01n0j2c74 Modern Specialized University الجامعة Ų§Ł„ŲŖŲ®ŲµŲµŁŠŲ© Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(91344, 'https://ror.org/01edhwb26', 'en', 1, 'https://ror.org/01edhwb26 Inter-university Institute for Data Intensive Astronomy'),
(91345, 'https://ror.org/01cams608', 'no_lang_code', 1, 'https://ror.org/01cams608 Napata College ŁƒŁ„ŁŠŲ© نبتة'),
(91346, 'https://ror.org/02gwx4035', 'no_lang_code', 1, 'https://ror.org/02gwx4035 Thea Energy, Inc. (United States)'),
(91347, 'https://ror.org/000t0f062', 'en', 1, 'https://ror.org/000t0f062 Education University of Hong Kong 香港教育大學'),
(91348, 'https://ror.org/03bpcga21', 'fr', 1, 'https://ror.org/03bpcga21 Evolution des RƩgulations Endocriniennes Evolution of Endocrine Regulations'),
(91349, 'https://ror.org/05w9p7918', 'no_lang_code', 1, 'https://ror.org/05w9p7918 Mistral AI (France)'),
(91350, 'https://ror.org/03wej2k16', 'no_lang_code', 1, 'https://ror.org/03wej2k16 WWF-Cambodia'),
(91351, 'https://ror.org/05ej3nj38', 'no_lang_code', 0, 'https://ror.org/05ej3nj38 EMD Serono (United States)'),
(91352, 'https://ror.org/026y7mp54', 'no_lang_code', 1, 'https://ror.org/026y7mp54 Verona Pharma (United Kingdom)'),
(91353, 'https://ror.org/024emf091', 'en', 1, 'https://ror.org/024emf091 Canada Agricultural Review Tribunal Commission de rƩvision agricole du Canada'),
(91354, 'https://ror.org/04zdss218', 'en', 1, 'https://ror.org/04zdss218 The JAX Cancer Center'),
(91355, 'https://ror.org/025t8vx68', 'en', 1, 'https://ror.org/025t8vx68 Institut für Ɩkonomische Bildung Institute for Economic Education'),
(91356, 'https://ror.org/04shr9s31', 'fr', 1, 'https://ror.org/04shr9s31 Robotique et Innovation Chirurgicale'),
(91357, 'https://ror.org/04741mc34', 'en', 1, 'https://ror.org/04741mc34 Croucher Foundation'),
(91358, 'https://ror.org/045ybte48', 'en', 1, 'https://ror.org/045ybte48 Center for Nanoscale Materials'),
(91359, 'https://ror.org/04h81rw26', 'en', 1, 'https://ror.org/04h81rw26 University of Pennsylvania Health System'),
(91360, 'https://ror.org/03dj0nw15', 'en', 1, 'https://ror.org/03dj0nw15 WWF Cameroon'),
(91361, 'https://ror.org/02vzbm991', 'en', 1, 'https://ror.org/02vzbm991 Stanford Synchrotron Radiation Lightsource'),
(91362, 'https://ror.org/051dzs374', 'en', 1, 'https://ror.org/051dzs374 Agriculture and Agri-Food Canada Agriculture et Agroalimentaire Canada'),
(91363, 'https://ror.org/027zrs220', 'no_lang_code', 1, 'https://ror.org/027zrs220 EMD Group (United States)'),
(91364, 'https://ror.org/03bzkqg41', 'no_lang_code', 1, 'https://ror.org/03bzkqg41 Ipsen (United States)'),
(91365, 'https://ror.org/02dq7b674', 'no_lang_code', 1, 'https://ror.org/02dq7b674 Interscience (France)'),
(91366, 'https://ror.org/05mjmpk84', 'en', 1, 'https://ror.org/05mjmpk84 Centre de recherche et de dƩveloppement de St. John''s St. John''s Research and Development Centre'),
(91367, 'https://ror.org/00ee40h97', 'en', 1, 'https://ror.org/00ee40h97 The Barbara Ann Karmanos Cancer Institute'),
(91368, 'https://ror.org/013s2ts57', 'fr', 1, 'https://ror.org/013s2ts57 Groupe d’Étude sur l’HyperTension Intra CrĆ¢nienne idiopathique'),
(91369, 'https://ror.org/00ezt2m63', 'no_lang_code', 1, 'https://ror.org/00ezt2m63 ThermoAnalytics (United States)'),
(91370, 'https://ror.org/01jhe7086', 'en', 1, 'https://ror.org/01jhe7086 University of Iowa Holden Comprehensive Cancer Center'),
(91371, 'https://ror.org/00r38f875', 'no_lang_code', 1, 'https://ror.org/00r38f875 i-Sense (South Korea) ćˆœģ•„ģ“ģ„¼ģŠ¤ėŠ”'),
(91372, 'https://ror.org/003vpd085', 'no_lang_code', 1, 'https://ror.org/003vpd085 Calvagone (France)'),
(91373, 'https://ror.org/00pebsc23', 'en', 1, 'https://ror.org/00pebsc23 RPH Research Foundation'),
(91374, 'https://ror.org/04ph5sm90', 'en', 1, 'https://ror.org/04ph5sm90 PremUP'),
(91375, 'https://ror.org/052rqyz24', 'en', 0, 'https://ror.org/052rqyz24 Copenhagen Municipal Hospital KĆøbenhavns Kommunehospital'),
(91376, 'https://ror.org/01rhba952', 'no_lang_code', 0, 'https://ror.org/01rhba952 BAE Systems Electronic Systems (United States)'),
(91377, 'https://ror.org/02n5cm212', 'fr', 1, 'https://ror.org/02n5cm212 Association for the Development of Enterprises and Competencies Association pour le DƩveloppement des Entreprises et des CompƩtences'),
(91378, 'https://ror.org/00fpjq451', 'en', 1, 'https://ror.org/00fpjq451 Case Comprehensive Cancer Center'),
(91379, 'https://ror.org/04g3dmm81', 'sq', 1, 'https://ror.org/04g3dmm81 Universiteti i GjakovĆ«s ā€œFehmi Aganiā€ University of Gjakova ā€œFehmi Aganiā€'),
(91380, 'https://ror.org/00zywfh80', 'en', 1, 'https://ror.org/00zywfh80 Centre de recherche et de dƩveloppement de Sherbrooke Sherbrooke Research and Development Centre'),
(91381, 'https://ror.org/05dq15a76', 'en', 1, 'https://ror.org/05dq15a76 WWF-Indonesia'),
(91382, 'https://ror.org/003xpy695', 'en', 1, 'https://ror.org/003xpy695 Mayo Clinic Comprehensive Cancer Center (Arizona)'),
(91383, 'https://ror.org/013kv6j49', 'no_lang_code', 1, 'https://ror.org/013kv6j49 Bureau Veritas (France)'),
(91384, 'https://ror.org/0046rt562', 'en', 1, 'https://ror.org/0046rt562 Farm Credit Canada Financement agricole Canada'),
(91385, 'https://ror.org/017mte255', 'no_lang_code', 1, 'https://ror.org/017mte255 Equinor (Norway)'),
(91386, 'https://ror.org/03zh4pz48', 'no_lang_code', 1, 'https://ror.org/03zh4pz48 Anterogen (South Korea) ģ•ˆķŠøė”œģ  '),
(91387, 'https://ror.org/02xc7et08', 'no_lang_code', 1, 'https://ror.org/02xc7et08 Limited Liability Company Kiev International Forensic Expert Institute Of Psychological Expertise And Researchs On Polygraph (Ukraine) ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ міжнароГний суГово-експертний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологічної експертизи і Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ на поліграфі'),
(91388, 'https://ror.org/042hptv04', 'en', 1, 'https://ror.org/042hptv04 Medical University of Ilam دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§ŪŒŁ„Ų§Ł…'),
(91389, 'https://ror.org/02az5b805', 'fr', 1, 'https://ror.org/02az5b805 Ɖcole SupĆ©rieure des Techniques AĆ©ronautiques et de Construction Automobile'),
(91390, 'https://ror.org/01v1m2411', 'no_lang_code', 1, 'https://ror.org/01v1m2411 The Ritsumeikan Trust 学栔法人立命館'),
(91391, 'https://ror.org/03x4k6n70', 'en', 1, 'https://ror.org/03x4k6n70 Conseil des produits agricoles du Canada Farm Products Council of Canada'),
(91392, 'https://ror.org/03ch1rj44', 'no_lang_code', 1, 'https://ror.org/03ch1rj44 Tenaris (Argentina)'),
(91393, 'https://ror.org/05d2nrb83', 'no_lang_code', 1, 'https://ror.org/05d2nrb83 Tenaris (Venezuela)'),
(91394, 'https://ror.org/02w0dps66', 'no_lang_code', 1, 'https://ror.org/02w0dps66 Triad Interactive (United States)'),
(91395, 'https://ror.org/010ja5431', 'en', 1, 'https://ror.org/010ja5431 MusƩe du Nouveau-Brunswick New Brunswick Museum'),
(91396, 'https://ror.org/029hdt144', 'fr', 1, 'https://ror.org/029hdt144 Centre d''Investigation Clinique Antilles Guyane'),
(91397, 'https://ror.org/00t4db855', 'no_lang_code', 1, 'https://ror.org/00t4db855 Alstom (France)'),
(91398, 'https://ror.org/028pnqf58', 'fr', 1, 'https://ror.org/028pnqf58 Genoscope'),
(91399, 'https://ror.org/03bw34a45', 'en', 1, 'https://ror.org/03bw34a45 UPMC Hillman Cancer Center'),
(91400, 'https://ror.org/035zrb927', 'en', 1, 'https://ror.org/035zrb927 Georgetown Lombardi Comprehensive Cancer Center'),
(91401, 'https://ror.org/01j20wc74', 'en', 1, 'https://ror.org/01j20wc74 Alzheimer’s Disease Neuroimaging Initiative'),
(91402, 'https://ror.org/03kq1sq34', 'no_lang_code', 1, 'https://ror.org/03kq1sq34 Barber-Nichols (United States)'),
(91403, 'https://ror.org/03nqvxc91', 'id', 1, 'https://ror.org/03nqvxc91 Institut Agama Kristen Negeri Palangka Raya'),
(91404, 'https://ror.org/0371gg960', 'en', 1, 'https://ror.org/0371gg960 Purdue University Institute for Cancer Research'),
(91405, 'https://ror.org/00s29fn93', 'es', 1, 'https://ror.org/00s29fn93 Centro de Investigación en Red en Enfermedades Cardiovasculares'),
(91406, 'https://ror.org/00pfv5508', 'es', 1, 'https://ror.org/00pfv5508 Escuela Militar de IngenierĆ­a'),
(91407, 'https://ror.org/04d139241', 'en', 1, 'https://ror.org/04d139241 Tokai National Higher Education and Research System ę±ęµ·å›½ē«‹å¤§å­¦ę©Ÿę§‹'),
(91408, 'https://ror.org/0599cs764', 'en', 1, 'https://ror.org/0599cs764 UCLA Jonsson Comprehensive Cancer Center'),
(91409, 'https://ror.org/05gdy8g07', 'no_lang_code', 1, 'https://ror.org/05gdy8g07 Rastriya Banijya Bank Limited'),
(91410, 'https://ror.org/00kt3nk56', 'en', 1, 'https://ror.org/00kt3nk56 University of Hawaii Cancer Center'),
(91411, 'https://ror.org/02t1k2015', 'no_lang_code', 1, 'https://ror.org/02t1k2015 Egis (France)'),
(91412, 'https://ror.org/02ehqwq16', 'en', 1, 'https://ror.org/02ehqwq16 Al-Rashid International Private University for Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ų“ŁŠŲÆ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© الخاصة Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(91413, 'https://ror.org/0059w0420', 'en', 1, 'https://ror.org/0059w0420 Heriot-Watt University Malaysia'),
(91414, 'https://ror.org/052y0z870', 'en', 1, 'https://ror.org/052y0z870 WWF-UK'),
(91415, 'https://ror.org/01jtcg420', 'en', 1, 'https://ror.org/01jtcg420 Woodhull Medical and Mental Health Center'),
(91416, 'https://ror.org/02fctgp09', 'no_lang_code', 1, 'https://ror.org/02fctgp09 BAE Systems (United States)'),
(91417, 'https://ror.org/00bdqav06', 'en', 1, 'https://ror.org/00bdqav06 Cooperative Institute for Research in Environmental Sciences'),
(91418, 'https://ror.org/02g0s3c07', 'fr', 1, 'https://ror.org/02g0s3c07 Transplantation et ThƩrapies Innovantes de la CornƩe'),
(91419, 'https://ror.org/01hvpjq66', 'en', 1, 'https://ror.org/01hvpjq66 Abramson Cancer Center'),
(91420, 'https://ror.org/0029jxk29', 'en', 1, 'https://ror.org/0029jxk29 Tula Foundation'),
(91421, 'https://ror.org/05gzcy376', 'fr', 1, 'https://ror.org/05gzcy376 Groupe de Recherche Clinique en Neuro-urologie'),
(91422, 'https://ror.org/052ts0e23', 'no_lang_code', 1, 'https://ror.org/052ts0e23 Uni Pharma (Greece)'),
(91423, 'https://ror.org/02hdnbe80', 'es', 1, 'https://ror.org/02hdnbe80 Instituto Nacional de CancerologĆ­a'),
(91424, 'https://ror.org/02kjy2z57', 'en', 1, 'https://ror.org/02kjy2z57 Relativistic Heavy Ion Collider'),
(91425, 'https://ror.org/014wa1410', 'no_lang_code', 1, 'https://ror.org/014wa1410 BWI Group (Luxembourg)'),
(91426, 'https://ror.org/01rq8ck58', 'en', 1, 'https://ror.org/01rq8ck58 Keck Hospital of USC'),
(91427, 'https://ror.org/029zp7d63', 'no_lang_code', 1, 'https://ror.org/029zp7d63 Shanghai Liangyou (China) äøŠęµ·č‰Æå‹'),
(91428, 'https://ror.org/04cqn7d42', 'en', 1, 'https://ror.org/04cqn7d42 University of Colorado Cancer Center'),
(91429, 'https://ror.org/04xm1d337', 'en', 1, 'https://ror.org/04xm1d337 Joint Genome Institute'),
(91430, 'https://ror.org/04b15va38', 'en', 1, 'https://ror.org/04b15va38 Argonne Tandem Linac Accelerator System'),
(91431, 'https://ror.org/05mn8kz17', 'no_lang_code', 1, 'https://ror.org/05mn8kz17 ObeTherapy Biotechnology (France)'),
(91432, 'https://ror.org/01apwpt12', 'en', 1, 'https://ror.org/01apwpt12 Sandia National Laboratories'),
(91433, 'https://ror.org/05p04bm05', 'no_lang_code', 1, 'https://ror.org/05p04bm05 Asseco (Poland)'),
(91434, 'https://ror.org/03zzw1w08', 'en', 1, 'https://ror.org/03zzw1w08 Mayo Clinic in Florida'),
(91435, 'https://ror.org/03mqkaa34', 'en', 1, 'https://ror.org/03mqkaa34 Yuzhang Normal University č±«ē« åøˆčŒƒå­¦é™¢'),
(91436, 'https://ror.org/01h5tnr73', 'en', 1, 'https://ror.org/01h5tnr73 Battelle'),
(91437, 'https://ror.org/00sa8g751', 'en', 1, 'https://ror.org/00sa8g751 NYU Langone’s Laura and Isaac Perlmutter Cancer Center'),
(91438, 'https://ror.org/02typaz40', 'en', 1, 'https://ror.org/02typaz40 National Children’s Research Centre'),
(91439, 'https://ror.org/04z9etn73', 'no_lang_code', 1, 'https://ror.org/04z9etn73 FDI (France)'),
(91440, 'https://ror.org/04wrawj44', 'en', 1, 'https://ror.org/04wrawj44 Cancer Center at Cold Spring Harbor Laboratory'),
(91441, 'https://ror.org/03r4g9w46', 'en', 1, 'https://ror.org/03r4g9w46 Facility for Rare Isotope Beams'),
(91442, 'https://ror.org/02gars961', 'en', 1, 'https://ror.org/02gars961 Winship Cancer Institute'),
(91443, 'https://ror.org/03hkzcg46', 'en', 1, 'https://ror.org/03hkzcg46 Scottish Confederation of University and Research Libraries'),
(91444, 'https://ror.org/05sg23t46', 'en', 1, 'https://ror.org/05sg23t46 National Spherical Torus Experiment – Upgrade'),
(91445, 'https://ror.org/00cea8r21', 'en', 1, 'https://ror.org/00cea8r21 Montefiore Einstein Comprehensive Cancer Center'),
(91446, 'https://ror.org/05vspf741', 'en', 1, 'https://ror.org/05vspf741 Kermanshah University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی کرمانؓاه'),
(91447, 'https://ror.org/004j3q729', 'fi', 1, 'https://ror.org/004j3q729 Diabetes Research Foundation Diabetes Tutkimussaatio'),
(91448, 'https://ror.org/00w52vt71', 'en', 1, 'https://ror.org/00w52vt71 MUSC Hollings Cancer Center'),
(91449, 'https://ror.org/02rjj2m04', 'en', 1, 'https://ror.org/02rjj2m04 Vanderbilt-Ingram Cancer Center'),
(91450, 'https://ror.org/00x677422', 'fr', 1, 'https://ror.org/00x677422 IMAGES : La mĆ©decine de la femme et de l’enfant assistĆ©e par l’image'),
(91451, 'https://ror.org/03j7sze86', 'en', 1, 'https://ror.org/03j7sze86 Yale Cancer Center'),
(91452, 'https://ror.org/034rhks82', 'no_lang_code', 1, 'https://ror.org/034rhks82 AstraZeneca (Switzerland)'),
(91453, 'https://ror.org/02zn90974', 'fr', 1, 'https://ror.org/02zn90974 Groupe de recherche clinique en anesthƩsie rƩanimation mƩdecine pƩriopƩratoire'),
(91454, 'https://ror.org/02e9w7q14', 'en', 1, 'https://ror.org/02e9w7q14 Centre de recherche et de dƩveloppement de London London Research and Development Centre'),
(91455, 'https://ror.org/00tc4ja06', 'no_lang_code', 1, 'https://ror.org/00tc4ja06 Economia (Czechia)'),
(91456, 'https://ror.org/02fanfn34', 'en', 1, 'https://ror.org/02fanfn34 National Metrology Institute'),
(91457, 'https://ror.org/0177jvw02', 'en', 1, 'https://ror.org/0177jvw02 WWF Senegal'),
(91458, 'https://ror.org/01esghr10', 'en', 1, 'https://ror.org/01esghr10 Centre mƩdical de l''universitƩ columbia Columbia University Irving Medical Center centro mƩdico de la Universidad de Columbia'),
(91459, 'https://ror.org/02a9gte39', 'de', 1, 'https://ror.org/02a9gte39 Deutsche Gesellschaft für Soziale Arbeit e. V. The German Association of Social Work'),
(91460, 'https://ror.org/02h25yj48', 'no_lang_code', 1, 'https://ror.org/02h25yj48 Electronics Design (Estonia)'),
(91461, 'https://ror.org/00ynbyf59', 'no_lang_code', 1, 'https://ror.org/00ynbyf59 Alcare (Japan) ć‚¢ćƒ«ć‚±ć‚¢ę Ŗå¼ä¼šē¤¾'),
(91462, 'https://ror.org/05h9q1g27', 'en', 1, 'https://ror.org/05h9q1g27 Texas State University Universidad Estatal de Texas UniversitĆ© d''Ɖtat du Texas'),
(91463, 'https://ror.org/012wp4251', 'en', 0, 'https://ror.org/012wp4251 Blueprint for Neuroscience Research'),
(91464, 'https://ror.org/0394bpd20', 'no_lang_code', 1, 'https://ror.org/0394bpd20 IQVIA (France)'),
(91465, 'https://ror.org/01fapfv42', 'en', 1, 'https://ror.org/01fapfv42 Belgian Federal Science Policy Office Federaal Wetenschapsbeleid Politique scientifique fƩdƩrale'),
(91466, 'https://ror.org/051kc1939', 'en', 1, 'https://ror.org/051kc1939 Herbert Irving Comprehensive Cancer Center'),
(91467, 'https://ror.org/05q3szf80', 'en', 1, 'https://ror.org/05q3szf80 Smilow Cancer Hospital'),
(91468, 'https://ror.org/02wnb5903', 'en', 1, 'https://ror.org/02wnb5903 KMAN Research Institute'),
(91469, 'https://ror.org/02bzf1224', 'no_lang_code', 1, 'https://ror.org/02bzf1224 Pfizer (Netherlands)'),
(91470, 'https://ror.org/03fx3ra47', 'en', 1, 'https://ror.org/03fx3ra47 Centre de recherche et de dƩveloppement d''Ottawa Ottawa Research and Development Centre'),
(91471, 'https://ror.org/00njafa27', 'fr', 1, 'https://ror.org/00njafa27 Complications Cardiovasculaires et MƩtaboliques chez les patients vivant avec le VIH'),
(91472, 'https://ror.org/001mm6w73', 'en', 1, 'https://ror.org/001mm6w73 MRC Clinical Trials Unit at UCL'),
(91473, 'https://ror.org/03cranv98', 'en', 1, 'https://ror.org/03cranv98 Canada Grain Commission Commission canadienne des grains'),
(91474, 'https://ror.org/00tea5y39', 'en', 1, 'https://ror.org/00tea5y39 Helmholtz Institute for Functional Marine Biodiversity Helmholtz-Institut für Funktionelle Marine Biodiversität'),
(91475, 'https://ror.org/00a8q8z31', 'fr', 1, 'https://ror.org/00a8q8z31 NeurON : Interface Neuro-machine'),
(91476, 'https://ror.org/00nwtj239', 'fr', 1, 'https://ror.org/00nwtj239 Laboratoire de MinƩralogie & Cosmochimie du MusƩum'),
(91477, 'https://ror.org/04j1hj511', 'no_lang_code', 1, 'https://ror.org/04j1hj511 Insightful Modelling Limited (New Zealand)'),
(91478, 'https://ror.org/00q6v6102', 'en', 1, 'https://ror.org/00q6v6102 Spallation Neutron Source'),
(91479, 'https://ror.org/024v1ns19', 'fr', 1, 'https://ror.org/024v1ns19 Centre hospitalier national d''ophtalmologie des Quinze-Vingts'),
(91480, 'https://ror.org/04vhpaz11', 'no_lang_code', 1, 'https://ror.org/04vhpaz11 Link Institut (Switzerland)'),
(91481, 'https://ror.org/00d1dhh09', 'en', 1, 'https://ror.org/00d1dhh09 Dartmouth–Hitchcock Medical Center'),
(91482, 'https://ror.org/04vt65461', 'en', 1, 'https://ror.org/04vt65461 Duke Cancer Institute'),
(91483, 'https://ror.org/03ynn1n59', 'en', 1, 'https://ror.org/03ynn1n59 Ritsumeikan Asia Pacific University 立命館アジア太平擋大学'),
(91484, 'https://ror.org/00vcrsw96', 'fr', 0, 'https://ror.org/00vcrsw96 GƩnƩtique et Immunologie des Maladies Parasitaires'),
(91485, 'https://ror.org/04hya7017', 'es', 1, 'https://ror.org/04hya7017 Centro de Investigación Biomédica en Red de CÔncer'),
(91486, 'https://ror.org/04wyvkr12', 'en', 1, 'https://ror.org/04wyvkr12 Barnes-Jewish Hospital'),
(91487, 'https://ror.org/01fykh430', 'en', 1, 'https://ror.org/01fykh430 Indian Health Service'),
(91488, 'https://ror.org/002shna07', 'en', 1, 'https://ror.org/002shna07 OHSU Knight Cancer Institute'),
(91489, 'https://ror.org/05h992307', 'en', 1, 'https://ror.org/05h992307 Pacific Northwest National Laboratory'),
(91490, 'https://ror.org/03817xr13', 'no_lang_code', 1, 'https://ror.org/03817xr13 Sabancı Holding (Turkey)'),
(91491, 'https://ror.org/02j2cf778', 'no_lang_code', 1, 'https://ror.org/02j2cf778 Elekta (Sweden)'),
(91492, 'https://ror.org/01wpxe954', 'no_lang_code', 1, 'https://ror.org/01wpxe954 GenoSafe'),
(91493, 'https://ror.org/04fev8a92', 'fr', 1, 'https://ror.org/04fev8a92 Centre Hospitalier Public du Cotentin'),
(91494, 'https://ror.org/00a78nr16', 'fr', 1, 'https://ror.org/00a78nr16 Laboratoire de la Mer'),
(91495, 'https://ror.org/0380k9k47', 'no_lang_code', 1, 'https://ror.org/0380k9k47 Genopole (France)'),
(91496, 'https://ror.org/03rt48n94', 'fr', 1, 'https://ror.org/03rt48n94 DƩlƩgation Paris 6'),
(91497, 'https://ror.org/014hre374', 'en', 1, 'https://ror.org/014hre374 Centre de recherche et de dƩveloppement de Kentville Kentville Research and Development Centre'),
(91498, 'https://ror.org/015tg7676', 'fr', 1, 'https://ror.org/015tg7676 DrĆ©panocytose : groupe de Recherche de Paris – Sorbonne UniversitĆ©'),
(91499, 'https://ror.org/05jpxcv08', 'no_lang_code', 1, 'https://ror.org/05jpxcv08 Owens Corning (France)'),
(91500, 'https://ror.org/01vft3j45', 'en', 1, 'https://ror.org/01vft3j45 University of Maryland Marlene and Stewart Greenebaum Comprehensive Cancer Center'),
(91501, 'https://ror.org/04p977q83', 'no_lang_code', 1, 'https://ror.org/04p977q83 Eurofins (Luxembourg)'),
(91502, 'https://ror.org/01aq5nn23', 'no_lang_code', 1, 'https://ror.org/01aq5nn23 Tenaris (United States)'),
(91503, 'https://ror.org/02519km30', 'no_lang_code', 1, 'https://ror.org/02519km30 Infotec (United Kingdom)'),
(91504, 'https://ror.org/05ajv1r64', 'en', 1, 'https://ror.org/05ajv1r64 Johns Hopkins University – Nanjing University Center for Chinese and American Studies å—äŗ¬å¤§å­¦ā€”ēŗ¦ēæ°ę–ÆĀ·éœę™®é‡‘ę–Æå¤§å­¦äø­ē¾Žę–‡åŒ–ē ”ē©¶äø­åæƒ'),
(91505, 'https://ror.org/03ksw4g36', 'en', 1, 'https://ror.org/03ksw4g36 Agassiz Research and Development Centre Centre de recherche et de dƩveloppement d''Agassiz'),
(91506, 'https://ror.org/01ky34z31', 'en', 1, 'https://ror.org/01ky34z31 Bellevue Hospital Center'),
(91507, 'https://ror.org/03f6cxf53', 'no_lang_code', 1, 'https://ror.org/03f6cxf53 Apollo Medical Imaging Technology (Australia)'),
(91508, 'https://ror.org/037t6sq87', 'no_lang_code', 1, 'https://ror.org/037t6sq87 Alpenglow Instruments (United States)'),
(91509, 'https://ror.org/030h7k016', 'en', 1, 'https://ror.org/030h7k016 Max Planck Institute for Dynamics of Complex Technical Systems Max-Planck-Institut für Dynamik Komplexer Technischer Systeme'),
(91510, 'https://ror.org/05tgb6494', 'en', 1, 'https://ror.org/05tgb6494 International College of Management and Sports'),
(91511, 'https://ror.org/018e6qb25', 'en', 1, 'https://ror.org/018e6qb25 Agence canadienne du pari mutuel Canadian Pari-Mutuel Agency'),
(91512, 'https://ror.org/03vgk1715', 'de', 1, 'https://ror.org/03vgk1715 Landes Tirols'),
(91513, 'https://ror.org/053evvt91', 'fr', 1, 'https://ror.org/053evvt91 Centre Hospitalier de Versailles'),
(91514, 'https://ror.org/00kapac04', 'fr', 0, 'https://ror.org/00kapac04 Des Maladies RƩnales Rares aux Maladies FrƩquentes, Remodelage et RƩparation'),
(91515, 'https://ror.org/012wxv498', 'en', 1, 'https://ror.org/012wxv498 Mayo Clinic Comprehensive Cancer Center (Minnesota)'),
(91516, 'https://ror.org/04y716y05', 'nl', 1, 'https://ror.org/04y716y05 Nuffic'),
(91517, 'https://ror.org/04ag45c30', 'no_lang_code', 1, 'https://ror.org/04ag45c30 Centene Corporation (United States)'),
(91518, 'https://ror.org/0574dzy90', 'en', 1, 'https://ror.org/0574dzy90 William Harvey Research Institute'),
(91519, 'https://ror.org/04ky1ae42', 'en', 1, 'https://ror.org/04ky1ae42 Brandon Research and Development Centre Centre de recherche et de dƩveloppement de Brandon'),
(91520, 'https://ror.org/058m7ey48', 'en', 1, 'https://ror.org/058m7ey48 Sandia National Laboratories California'),
(91521, 'https://ror.org/00fyy4d45', 'fr', 1, 'https://ror.org/00fyy4d45 CERES - Centre d''expƩrimentation en mƩthodes numƩriques pour les recherches en sciences humaines et sociales'),
(91522, 'https://ror.org/01dkem006', 'en', 1, 'https://ror.org/01dkem006 ITI International Team for Implantology'),
(91523, 'https://ror.org/05pyq8e17', 'no_lang_code', 1, 'https://ror.org/05pyq8e17 General Dynamics (United States)'),
(91524, 'https://ror.org/05v3mvq14', 'en', 1, 'https://ror.org/05v3mvq14 National Energy Research Scientific Computing Center'),
(91525, 'https://ror.org/02gkddr41', 'en', 1, 'https://ror.org/02gkddr41 Tisch Hospital'),
(91526, 'https://ror.org/05tjan294', 'en', 1, 'https://ror.org/05tjan294 McLaren Health Care'),
(91527, 'https://ror.org/02pry0c91', 'en', 1, 'https://ror.org/02pry0c91 Hakai Institute'),
(91528, 'https://ror.org/0173y3036', 'en', 1, 'https://ror.org/0173y3036 VCU Massey Comprehensive Cancer Center'),
(91529, 'https://ror.org/0203qcs72', 'fr', 1, 'https://ror.org/0203qcs72 La Maison de la RiviĆØre'),
(91530, 'https://ror.org/0301gv806', 'id', 1, 'https://ror.org/0301gv806 Balai Besar Pengujian Standar Instrumen Mekanisasi Pertanian Indonesian Center for Agricultural Mechanization Standard Testing'),
(91531, 'https://ror.org/0501y8471', 'no_lang_code', 1, 'https://ror.org/0501y8471 Broderies Leveaux (France)'),
(91532, 'https://ror.org/01jnrzt83', 'fr', 1, 'https://ror.org/01jnrzt83 Biomarqueurs d’urgence et de rĆ©animation'),
(91533, 'https://ror.org/04btayy36', 'en', 1, 'https://ror.org/04btayy36 Berry College'),
(91534, 'https://ror.org/01h4nv616', 'no_lang_code', 1, 'https://ror.org/01h4nv616 Da Vinci Labs (France)'),
(91535, 'https://ror.org/00n9f0r32', 'de', 1, 'https://ror.org/00n9f0r32 Thüringer Ministerium für Wirtschaft, Wissenschaft und Digitale Gesellschaft'),
(91536, 'https://ror.org/03f1mtj27', 'fr', 1, 'https://ror.org/03f1mtj27 Analyse, Recherche, DƩveloppement et Evaluation en Endourologie et Lithiase Urinaire'),
(91537, 'https://ror.org/01rtar838', 'en', 1, 'https://ror.org/01rtar838 Iowa Academy of Science'),
(91538, 'https://ror.org/05jfx6e51', 'es', 1, 'https://ror.org/05jfx6e51 WWF Colombia'),
(91539, 'https://ror.org/00rspzk45', 'en', 1, 'https://ror.org/00rspzk45 Bavarian Ministry of Economic Affairs and Media, Energy and Technology Bayerisches Staatsministerium für Wirtschaft und Medien, Energie und Technologie'),
(91540, 'https://ror.org/005rxfw29', 'no_lang_code', 1, 'https://ror.org/005rxfw29 Philip Morris International (United States)'),
(91541, 'https://ror.org/02bykxq63', 'fr', 1, 'https://ror.org/02bykxq63 Centre Hospitalier de Saint-Malo'),
(91542, 'https://ror.org/044vhe029', 'en', 1, 'https://ror.org/044vhe029 UF Health Cancer Center'),
(91543, 'https://ror.org/05416s909', 'en', 1, 'https://ror.org/05416s909 University of Eloued Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁŠ'),
(91544, 'https://ror.org/04rk63426', 'no_lang_code', 1, 'https://ror.org/04rk63426 Pristyn Care (India) ą¤Ŗą„ą¤°ą¤æą¤øą„ą¤Ÿą„€ą¤Ø ą¤•ą„‡ą¤Æą¤°'),
(91545, 'https://ror.org/03ayjey19', 'es', 1, 'https://ror.org/03ayjey19 Observatorio del Caribe Colombiano'),
(91546, 'https://ror.org/05qpxvg63', 'pt', 1, 'https://ror.org/05qpxvg63 Associação Azul Moçambique'),
(91547, 'https://ror.org/011590k05', 'en', 1, 'https://ror.org/011590k05 World Wildlife Fund'),
(91548, 'https://ror.org/02wt5sv47', 'en', 1, 'https://ror.org/02wt5sv47 Johns Hopkins University School of Advanced International Studies'),
(91549, 'https://ror.org/04ke70m21', 'no_lang_code', 1, 'https://ror.org/04ke70m21 RĆøros Vinduer og DĆører (Norway)'),
(91550, 'https://ror.org/02bjh0167', 'en', 1, 'https://ror.org/02bjh0167 California Pacific Medical Center'),
(91551, 'https://ror.org/04q30vj37', 'da', 1, 'https://ror.org/04q30vj37 WWF Danmark'),
(91552, 'https://ror.org/03r42d171', 'en', 1, 'https://ror.org/03r42d171 Zahedan University of Medical Sciences'),
(91553, 'https://ror.org/05dfxeg46', 'fr', 1, 'https://ror.org/05dfxeg46 Henri PoincarƩ Institute Institut Henri PoincarƩ'),
(91554, 'https://ror.org/02r29r389', 'fr', 1, 'https://ror.org/02r29r389 HƓpital AndrƩ Mignot'),
(91555, 'https://ror.org/02qrm2a52', 'en', 1, 'https://ror.org/02qrm2a52 Ministry of Agriculture'),
(91556, 'https://ror.org/02w2qg272', 'en', 1, 'https://ror.org/02w2qg272 metaBUS'),
(91557, 'https://ror.org/02w0bzb53', 'no_lang_code', 1, 'https://ror.org/02w0bzb53 Amsterdam Scientific Instruments (Netherlands)'),
(91558, 'https://ror.org/02jzgtq86', 'en', 1, 'https://ror.org/02jzgtq86 Dana-Farber Cancer Institute'),
(91559, 'https://ror.org/05aa5hg35', 'en', 1, 'https://ror.org/05aa5hg35 Centre de recherche et de dƩveloppement de Swift Current Swift Current Research and Development Centre'),
(91560, 'https://ror.org/03e71c577', 'en', 1, 'https://ror.org/03e71c577 Centre de toxicomanie et de santƩ mentale Centre for Addiction and Mental Health'),
(91561, 'https://ror.org/034fjft09', 'fr', 0, 'https://ror.org/034fjft09 Centre d''Ʃtudes sur la mondialisation, les conflits, les territoires et les vulnƩrabilitƩs'),
(91562, 'https://ror.org/03kdy4x92', 'no_lang_code', 1, 'https://ror.org/03kdy4x92 Spectroswiss (Switzerland)'),
(91563, 'https://ror.org/01svjdw65', 'en', 1, 'https://ror.org/01svjdw65 Argonne Leadership Computing Facility'),
(91564, 'https://ror.org/03mp6cc45', 'pl', 1, 'https://ror.org/03mp6cc45 Institute of Oceanology Polish Academy of Sciences Instytut Oceanologii Polskiej Akademii Nauk'),
(91565, 'https://ror.org/03kegqj41', 'en', 1, 'https://ror.org/03kegqj41 Happier Lives Institute'),
(91566, 'https://ror.org/00f8man71', 'en', 1, 'https://ror.org/00f8man71 Indiana State University'),
(91567, 'https://ror.org/033wxpt21', 'en', 1, 'https://ror.org/033wxpt21 Continuous Electron Beam Accelerator Facility'),
(91568, 'https://ror.org/042dh5y83', 'es', 1, 'https://ror.org/042dh5y83 Fundación Medina');
INSERT INTO `rors` VALUES
(91569, 'https://ror.org/05516t795', 'en', 1, 'https://ror.org/05516t795 St. Clare Hospital in Lakewood'),
(91570, 'https://ror.org/02kms8a74', 'en', 1, 'https://ror.org/02kms8a74 CHI Health Good Samaritan'),
(91571, 'https://ror.org/01ktx4s83', 'en', 1, 'https://ror.org/01ktx4s83 Canada First Research Excellence Fund Fonds d’excellence en recherche ApogĆ©e Canada'),
(91572, 'https://ror.org/05dg9bg39', 'en', 1, 'https://ror.org/05dg9bg39 Pathwest Laboratory Medicine'),
(91573, 'https://ror.org/00snbrd52', 'en', 1, 'https://ror.org/00snbrd52 National Transportation Library'),
(91574, 'https://ror.org/02pr3qd23', 'en', 1, 'https://ror.org/02pr3qd23 CHI Health St. Mary’s'),
(91575, 'https://ror.org/02y9asx23', 'en', 1, 'https://ror.org/02y9asx23 International Isocyanate Institute, Inc.'),
(91576, 'https://ror.org/01bv3hs44', 'no_lang_code', 1, 'https://ror.org/01bv3hs44 HRS Heat Exchangers (Spain)'),
(91577, 'https://ror.org/00cm2cb35', 'en', 1, 'https://ror.org/00cm2cb35 Virginia Mason Medical Center'),
(91578, 'https://ror.org/04yghvt66', 'en', 1, 'https://ror.org/04yghvt66 Virginia Mason Memorial'),
(91579, 'https://ror.org/05fb1yp60', 'en', 1, 'https://ror.org/05fb1yp60 Virginia Mason Lynnwood Medical Center'),
(91580, 'https://ror.org/01ynn6p49', 'en', 1, 'https://ror.org/01ynn6p49 JNU Institut za zaÅ”titu i ekologiju Republike Srpske, Banja Luka PSI Institute for Protection and Ecology of the Republic of Srpska, Banja ŠˆŠŠ£ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š·Š°ŃˆŃ‚ŠøŃ‚Ńƒ Šø екологију Републике Дрпске, Š‘Š°ŃšŠ° Š›ŃƒŠŗŠ°'),
(91581, 'https://ror.org/021v18q66', 'en', 1, 'https://ror.org/021v18q66 Annapoorana Medical College and Hospitals'),
(91582, 'https://ror.org/03fsd9z73', 'en', 1, 'https://ror.org/03fsd9z73 Jio Institute'),
(91583, 'https://ror.org/03x7xkt65', 'en', 1, 'https://ror.org/03x7xkt65 Bailey-Boushay House'),
(91584, 'https://ror.org/04b181w54', 'en', 1, 'https://ror.org/04b181w54 Teknologian Tutkimuskeskus VTT VTT Technical Research Centre of Finland'),
(91585, 'https://ror.org/023py8175', 'en', 1, 'https://ror.org/023py8175 Facility for Advanced Accelerator Experimental Tests-II'),
(91586, 'https://ror.org/01vvxdp11', 'en', 1, 'https://ror.org/01vvxdp11 CHI Health Lakeside'),
(91587, 'https://ror.org/040gcmg81', 'en', 1, 'https://ror.org/040gcmg81 Institut National du Cancer Instituto Nacional del CƔncer National Cancer Institute'),
(91588, 'https://ror.org/023rvnb70', 'en', 1, 'https://ror.org/023rvnb70 T.K.M. College of Arts and Science'),
(91589, 'https://ror.org/007sqpb10', 'en', 1, 'https://ror.org/007sqpb10 Herat Regional Hospital'),
(91590, 'https://ror.org/03fsb6681', 'nl', 1, 'https://ror.org/03fsb6681 Noord-Hollands Archief'),
(91591, 'https://ror.org/04yrmgg31', 'ca', 1, 'https://ror.org/04yrmgg31 TicSalut'),
(91592, 'https://ror.org/04b6x2g63', 'en', 1, 'https://ror.org/04b6x2g63 Loyola University Chicago Universidad Loyola Chicago UniversitƩ loyola de chicago'),
(91593, 'https://ror.org/00tphx615', 'en', 1, 'https://ror.org/00tphx615 CICON - Center for Innovation in Construction CICON - Centro para a Inovação na Construção'),
(91594, 'https://ror.org/03g2zjp07', 'en', 1, 'https://ror.org/03g2zjp07 Congressionally Directed Medical Research Programs'),
(91595, 'https://ror.org/0030f2a11', 'de', 1, 'https://ror.org/0030f2a11 University Hospital Erlangen UniversitƤtsklinikum Erlangen'),
(91596, 'https://ror.org/04n48wx60', 'fr', 1, 'https://ror.org/04n48wx60 UniversitƩ PrivƩe Africaine Franco-Arabe'),
(91597, 'https://ror.org/02teymm57', 'en', 1, 'https://ror.org/02teymm57 St. Anne Hospital in Burien'),
(91598, 'https://ror.org/040ehf661', 'es', 1, 'https://ror.org/040ehf661 SINPROMI Sociedad Insular para la Promoción de las personas con discapacidad'),
(91599, 'https://ror.org/0465tf937', 'de', 1, 'https://ror.org/0465tf937 Otto Brenner Stiftung'),
(91600, 'https://ror.org/052f5cv23', 'en', 1, 'https://ror.org/052f5cv23 National University of Natural Medicine'),
(91601, 'https://ror.org/036hxbg71', 'en', 1, 'https://ror.org/036hxbg71 American Burn Association'),
(91602, 'https://ror.org/02aze4h65', 'en', 1, 'https://ror.org/02aze4h65 North Carolina Agricultural and Technical State University UniversitĆ© agricole et technique d''Ɖtat de caroline du nord'),
(91603, 'https://ror.org/05e1gxg35', 'en', 1, 'https://ror.org/05e1gxg35 Deendayal Research Institute'),
(91604, 'https://ror.org/02ed2th17', 'en', 1, 'https://ror.org/02ed2th17 Hopkins Extreme Materials Institute'),
(91605, 'https://ror.org/02trddg58', 'en', 1, 'https://ror.org/02trddg58 Arctic Sciences'),
(91606, 'https://ror.org/000jewp25', 'no_lang_code', 0, 'https://ror.org/000jewp25 GEOMAR Technologie GmbH - GTG'),
(91607, 'https://ror.org/03xyv9729', 'en', 1, 'https://ror.org/03xyv9729 Instituto Portuario de Estudios y Cooperación Port Institute for Studies and Cooperation'),
(91608, 'https://ror.org/05h149207', 'en', 1, 'https://ror.org/05h149207 CHI Health Schuyler'),
(91609, 'https://ror.org/02e0efw43', 'en', 1, 'https://ror.org/02e0efw43 Institute for Foundations of Machine Learning'),
(91610, 'https://ror.org/02h1y5y54', 'no_lang_code', 0, 'https://ror.org/02h1y5y54 Biomax Informatics (Germany)'),
(91611, 'https://ror.org/0332cwe55', 'pt', 1, 'https://ror.org/0332cwe55 Academia Itapecuruense de CiĆŖncias, Letras e Artes'),
(91612, 'https://ror.org/05n9txz34', 'en', 1, 'https://ror.org/05n9txz34 CHI Health Immanuel'),
(91613, 'https://ror.org/0455mxm38', 'en', 1, 'https://ror.org/0455mxm38 Indian Numismatic, Historical and Cultural Research Foundation इंऔियन ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤°ą¤æą¤øą¤°ą„ą¤š इन ą¤Øą„ą¤®ą¤æą¤øą„ą¤®ą¤¾ą¤Ÿą¤æą¤• ą¤øą„ą¤Ÿą¤”ą„€ą¤ø'),
(91614, 'https://ror.org/01gmrmd93', 'en', 1, 'https://ror.org/01gmrmd93 Anderson University - South Carolina'),
(91615, 'https://ror.org/01dwp8348', 'en', 1, 'https://ror.org/01dwp8348 Arctic Submarine Laboratory'),
(91616, 'https://ror.org/04hwwrz21', 'no_lang_code', 1, 'https://ror.org/04hwwrz21 Raja Shankar Shah University'),
(91617, 'https://ror.org/0379ysz10', 'en', 1, 'https://ror.org/0379ysz10 CCT College Dublin'),
(91618, 'https://ror.org/0398a1r53', 'en', 1, 'https://ror.org/0398a1r53 Mittatekniikan keskus National metrology institute VTT MIKES'),
(91619, 'https://ror.org/05x817c41', 'no_lang_code', 1, 'https://ror.org/05x817c41 Bahauddin Zakariya University ŲØŪŲ§Ų¤Ų§Ł„ŲÆŪŒŁ† زکریا ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(91620, 'https://ror.org/024bb4f70', 'de', 1, 'https://ror.org/024bb4f70 Klinikum Fichtelgebirge'),
(91621, 'https://ror.org/047qfe374', 'en', 1, 'https://ror.org/047qfe374 Clifford University'),
(91622, 'https://ror.org/04wnz0192', 'en', 1, 'https://ror.org/04wnz0192 Mother Teresa University Universiteti NĆ«nĆ« Tereza nĆ« Shkup Универзитет Мајка Тереза'),
(91623, 'https://ror.org/03wkvpx79', 'en', 1, 'https://ror.org/03wkvpx79 Shanghai Artificial Intelligence Laboratory äøŠęµ·äŗŗå·„ę™ŗčƒ½å®žéŖŒå®¤'),
(91624, 'https://ror.org/02bt3t274', 'es', 1, 'https://ror.org/02bt3t274 Fundación Madrimasd Para el Conocimiento'),
(91625, 'https://ror.org/02ktjph70', 'it', 1, 'https://ror.org/02ktjph70 Gruppo Nazionale per l''Analisi Matematica, la ProbabilitĆ  e le loro Applicazioni National Group for Mathematical Analysis, Probability and their Applications'),
(91626, 'https://ror.org/00jvtsq80', 'en', 1, 'https://ror.org/00jvtsq80 St. Francis Hospital in Federal Way'),
(91627, 'https://ror.org/00nhtcg76', 'en', 1, 'https://ror.org/00nhtcg76 University of Monastir UniversitĆ© de monastir Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†Ų³ŲŖŁŠŲ±'),
(91628, 'https://ror.org/0401py619', 'no_lang_code', 1, 'https://ror.org/0401py619 EnergĆ­a & Celulosa (Spain)'),
(91629, 'https://ror.org/02wyf1c22', 'en', 1, 'https://ror.org/02wyf1c22 St. Joseph Medical Center in Tacoma'),
(91630, 'https://ror.org/01kjamd65', 'no_lang_code', 1, 'https://ror.org/01kjamd65 ELCOGAS (Spain)'),
(91631, 'https://ror.org/0023sah13', 'no_lang_code', 1, 'https://ror.org/0023sah13 Vicomtech'),
(91632, 'https://ror.org/054zwas39', 'en', 1, 'https://ror.org/054zwas39 Bavarian Polymer Institute Bayerisches Polymerinstitut'),
(91633, 'https://ror.org/01f6ney75', 'en', 1, 'https://ror.org/01f6ney75 St. Anthony Hospital in Gig Harbor'),
(91634, 'https://ror.org/036mqp197', 'en', 1, 'https://ror.org/036mqp197 Council for Higher Education המועצה להשכלה גבוהה مجلس Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ'),
(91635, 'https://ror.org/02mkz3e80', 'en', 1, 'https://ror.org/02mkz3e80 International Audio Laboratories Erlangen'),
(91636, 'https://ror.org/055j3c439', 'en', 0, 'https://ror.org/055j3c439 Harrison Medical Center'),
(91637, 'https://ror.org/02kk0b805', 'en', 1, 'https://ror.org/02kk0b805 Venter Pharma (Spain)'),
(91638, 'https://ror.org/05kph6k12', 'en', 1, 'https://ror.org/05kph6k12 CHI Health'),
(91639, 'https://ror.org/02exrkh26', 'en', 1, 'https://ror.org/02exrkh26 Virginia Mason Institute'),
(91640, 'https://ror.org/01ek5g375', 'no_lang_code', 1, 'https://ror.org/01ek5g375 Anı Yayıncılık (Turkey)'),
(91641, 'https://ror.org/012cshy85', 'en', 1, 'https://ror.org/012cshy85 Intelligent Transportation Systems Joint Program Office'),
(91642, 'https://ror.org/05ahcwz21', 'en', 1, 'https://ror.org/05ahcwz21 Amrita Institute of Medical Sciences and Research Centre ą“…ą“®ąµƒą“¤ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“øą“Æąµ»ą“øą“øąµ'),
(91643, 'https://ror.org/016fa9e26', 'en', 1, 'https://ror.org/016fa9e26 Fondazione Centro Nazionale di Adroterapia Oncologica National Center for Oncological Hadrontherapy'),
(91644, 'https://ror.org/01jt5mq34', 'en', 1, 'https://ror.org/01jt5mq34 Federal Motor Carrier Safety Administration'),
(91645, 'https://ror.org/045p44t13', 'en', 1, 'https://ror.org/045p44t13 Institut Kesihatan Negara National Institutes of Health'),
(91646, 'https://ror.org/0415p6x27', 'en', 1, 'https://ror.org/0415p6x27 Fermilab Accelerator Complex'),
(91647, 'https://ror.org/03w2j5y17', 'en', 1, 'https://ror.org/03w2j5y17 National University of Sciences and Technology'),
(91648, 'https://ror.org/03q68pf65', 'es', 1, 'https://ror.org/03q68pf65 Fundación Séneca - Agencia de Ciencia y Tecnología de la Región de Murcia'),
(91649, 'https://ror.org/00md3qm14', 'fr', 1, 'https://ror.org/00md3qm14 Ecole Mohammadia d''IngĆ©nieurs المدرسة Ų§Ł„Ł…Ų­Ł…ŲÆŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ†'),
(91650, 'https://ror.org/05k49za97', 'pt', 1, 'https://ror.org/05k49za97 Fundação de Amparo à Pesquisa do Estado do Rio Grande do Sul'),
(91651, 'https://ror.org/04z65fm03', 'en', 1, 'https://ror.org/04z65fm03 Maduka University'),
(91652, 'https://ror.org/00qybfa89', 'en', 0, 'https://ror.org/00qybfa89 Donetsk State University'),
(91653, 'https://ror.org/04gc62a64', 'en', 1, 'https://ror.org/04gc62a64 University of Garmsar'),
(91654, 'https://ror.org/04xk8ct40', 'ca', 1, 'https://ror.org/04xk8ct40 Grup CHM Mental Salut'),
(91655, 'https://ror.org/02fdw0g32', 'no_lang_code', 1, 'https://ror.org/02fdw0g32 Affimed Therapeutics (Germany)'),
(91656, 'https://ror.org/04nza6677', 'en', 1, 'https://ror.org/04nza6677 UT-Battelle'),
(91657, 'https://ror.org/02xkqnf65', 'en', 1, 'https://ror.org/02xkqnf65 CHI Franciscan Rehabilitation Hospital'),
(91658, 'https://ror.org/01pnxy345', 'id', 1, 'https://ror.org/01pnxy345 Universitas Trinita'),
(91659, 'https://ror.org/02jf59s11', 'en', 1, 'https://ror.org/02jf59s11 University Transportation Centers Program'),
(91660, 'https://ror.org/028fhxy95', 'no_lang_code', 1, 'https://ror.org/028fhxy95 Novartis (United States)'),
(91661, 'https://ror.org/05pd33x58', 'en', 1, 'https://ror.org/05pd33x58 Swamy Vivekanadha Medical College Hospital and Research Institute'),
(91662, 'https://ror.org/05ej12d67', 'tr', 1, 'https://ror.org/05ej12d67 Turkish Society of Anesthesiology and Reanimation Türk Anesteziyoloji ve Reanimasyon Derneği'),
(91663, 'https://ror.org/04rbx9m94', 'en', 1, 'https://ror.org/04rbx9m94 Lonestar Education and Research Network'),
(91664, 'https://ror.org/01mhban88', 'es', 1, 'https://ror.org/01mhban88 Fundación Bancaja'),
(91665, 'https://ror.org/03cwacq26', 'pt', 1, 'https://ror.org/03cwacq26 Museu de Ciências Naturais da Fundação Zoobotânica do Rio Grande do Sul Museum of Natural Sciences of the Rio Grande do Sul Zoobotanical Foundation'),
(91666, 'https://ror.org/05ddxe180', 'en', 1, 'https://ror.org/05ddxe180 Kementerian Kesihatan Malaysia Ministry of Health'),
(91667, 'https://ror.org/040skp162', 'en', 1, 'https://ror.org/040skp162 Japanese Society of Toxicologic Pathology ę—„ęœ¬ęÆ’ę€§ē—…ē†å­¦ä¼š'),
(91668, 'https://ror.org/0281pgk04', 'en', 1, 'https://ror.org/0281pgk04 AAA College of Engineering and Technology'),
(91669, 'https://ror.org/01rjbvz57', 'en', 1, 'https://ror.org/01rjbvz57 American Civil Liberties Union'),
(91670, 'https://ror.org/00fgdrw78', 'en', 1, 'https://ror.org/00fgdrw78 Ural Scientific Research Institute for Metrology Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(91671, 'https://ror.org/05d67dc31', 'no_lang_code', 1, 'https://ror.org/05d67dc31 Abbott Vascular (United States)'),
(91672, 'https://ror.org/00vkwep27', 'en', 1, 'https://ror.org/00vkwep27 Division of Cancer Epidemiology and Genetics'),
(91673, 'https://ror.org/01df4mv68', 'en', 1, 'https://ror.org/01df4mv68 Gobierno de Extremadura Government of Extremadura'),
(91674, 'https://ror.org/03z1w3b90', 'en', 1, 'https://ror.org/03z1w3b90 CHI Health Creighton University Medical Center - Bergan Mercy'),
(91675, 'https://ror.org/0342yn648', 'es', 1, 'https://ror.org/0342yn648 All World Certificación'),
(91676, 'https://ror.org/0262sec15', 'en', 1, 'https://ror.org/0262sec15 The Valentine'),
(91677, 'https://ror.org/045yr8682', 'fr', 1, 'https://ror.org/045yr8682 Ecole Nationale d''IngĆ©nieurs de Monastir National Engineering School of Monastir المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† ŲØŲ§Ł„Ł…Ł†Ų³ŲŖŁŠŲ±'),
(91678, 'https://ror.org/04w07g537', 'en', 1, 'https://ror.org/04w07g537 Fanconi Anemia Research Fund'),
(91679, 'https://ror.org/01p3wva84', 'no_lang_code', 0, 'https://ror.org/01p3wva84 Forest Laboratories (United States)'),
(91680, 'https://ror.org/0165r2y73', 'en', 1, 'https://ror.org/0165r2y73 Max Planck Institute for Heart and Lung Research Max-Planck-Institut für Herz- und Lungenforschung'),
(91681, 'https://ror.org/031jjng67', 'id', 1, 'https://ror.org/031jjng67 Universitas Borneo Tarakan'),
(91682, 'https://ror.org/05544cm43', 'en', 1, 'https://ror.org/05544cm43 Nebraska Spine Hospital'),
(91683, 'https://ror.org/04tvkmm31', 'en', 1, 'https://ror.org/04tvkmm31 Meridian Behavioral Health'),
(91684, 'https://ror.org/0509eed67', 'en', 1, 'https://ror.org/0509eed67 The College of Industrial Technology ŁƒŁ„ŁŠŲ© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„ŲµŁ†Ų§Ų¹ŁŠŲ©- Ł…ŲµŲ±Ų§ŲŖŲ© - Ł„ŁŠŲØŁŠŲ§'),
(91685, 'https://ror.org/015p17h26', 'en', 1, 'https://ror.org/015p17h26 CHI Health Plainview'),
(91686, 'https://ror.org/04h76v219', 'en', 1, 'https://ror.org/04h76v219 Lasting Hope Recovery Center'),
(91687, 'https://ror.org/00835yh61', 'en', 1, 'https://ror.org/00835yh61 Perfect Harmony Health'),
(91688, 'https://ror.org/04q9esz89', 'en', 1, 'https://ror.org/04q9esz89 Louisiana Tech University UniversitƩ de louisiana tech'),
(91689, 'https://ror.org/04e631388', 'en', 1, 'https://ror.org/04e631388 Industrial Union of Metalworkers Industriegewerkschaft Metall'),
(91690, 'https://ror.org/001nb5b83', 'en', 1, 'https://ror.org/001nb5b83 Undersea Warfighting Development Center'),
(91691, 'https://ror.org/05s74p982', 'en', 1, 'https://ror.org/05s74p982 Barcelona Macula Foundation'),
(91692, 'https://ror.org/00znk2w36', 'en', 1, 'https://ror.org/00znk2w36 CHI Health St. Francis'),
(91693, 'https://ror.org/05x7hpz69', 'no_lang_code', 1, 'https://ror.org/05x7hpz69 Empresa Municipal de Transportes de Madrid'),
(91694, 'https://ror.org/032v7rj83', 'en', 1, 'https://ror.org/032v7rj83 Robotiker'),
(91695, 'https://ror.org/04yeq6a80', 'no_lang_code', 0, 'https://ror.org/04yeq6a80 Asociación de Investigación de las Industrias de la Construcción'),
(91696, 'https://ror.org/02z899n24', 'no_lang_code', 1, 'https://ror.org/02z899n24 Novartis Gene Therapies Switzerland GmbH'),
(91697, 'https://ror.org/05s8eny04', 'no_lang_code', 1, 'https://ror.org/05s8eny04 Universal Learning Systems (Ireland)'),
(91698, 'https://ror.org/05ehhzx21', 'en', 1, 'https://ror.org/05ehhzx21 U.S. Geological Survey, Alaska Science Center'),
(91699, 'https://ror.org/04jg3v591', 'en', 1, 'https://ror.org/04jg3v591 Centre of Hydrometeorological Service Gidrometeorologiya xizmati markazi'),
(91700, 'https://ror.org/04cmq4p11', 'en', 1, 'https://ror.org/04cmq4p11 Triagon Academy'),
(91701, 'https://ror.org/02cz4ny75', 'en', 1, 'https://ror.org/02cz4ny75 Atlantic White Shark Conservancy'),
(91702, 'https://ror.org/03z4h9c97', 'en', 1, 'https://ror.org/03z4h9c97 Kailash Healthcare'),
(91703, 'https://ror.org/01v4gk171', 'id', 1, 'https://ror.org/01v4gk171 Politeknik Negeri Sriwijaya'),
(91704, 'https://ror.org/0073ny545', 'fr', 1, 'https://ror.org/0073ny545 Centre universitaire Salhi Ahmed - Naama Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ ŲµŲ§Ł„Ų­ŁŠ Ų£Ų­Ł…ŲÆ النعامة'),
(91705, 'https://ror.org/00dwpjz65', 'en', 1, 'https://ror.org/00dwpjz65 Afrischolar Discovery Initiative'),
(91706, 'https://ror.org/03try4356', 'en', 1, 'https://ror.org/03try4356 Virginia Mason Federal Way Medical Center'),
(91707, 'https://ror.org/02qz8b764', 'en', 1, 'https://ror.org/02qz8b764 Cold Spring Harbor Laboratory'),
(91708, 'https://ror.org/034mn7m94', 'en', 1, 'https://ror.org/034mn7m94 Rawalpindi Women University'),
(91709, 'https://ror.org/01ejwte55', 'en', 1, 'https://ror.org/01ejwte55 OSG Consortium'),
(91710, 'https://ror.org/029t9db68', 'en', 1, 'https://ror.org/029t9db68 Tashkent State University of Economics Toshkent Davlat Iqtisodiyot Universiteti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(91711, 'https://ror.org/04gtmvt81', 'de', 1, 'https://ror.org/04gtmvt81 Optotransmitter-Umweltschutz-Technologie e.V.'),
(91712, 'https://ror.org/05658wt11', 'en', 1, 'https://ror.org/05658wt11 Virginia Mason Bainbridge Island Medical Center'),
(91713, 'https://ror.org/04j9rp686', 'en', 1, 'https://ror.org/04j9rp686 Benaroya Research Institute'),
(91714, 'https://ror.org/013rctf62', 'en', 1, 'https://ror.org/013rctf62 Van Leeuwenhoek Centre for Advanced Microscopy'),
(91715, 'https://ror.org/04gj69425', 'en', 1, 'https://ror.org/04gj69425 King Salman International University'),
(91716, 'https://ror.org/04rcc8827', 'en', 1, 'https://ror.org/04rcc8827 Taiwanese American Arts Council å°ē¾Žę–‡č—å”ęœƒ'),
(91717, 'https://ror.org/00g9zze16', 'en', 1, 'https://ror.org/00g9zze16 Tashenev University Жұмабек Š¢Ó™ŃˆŠµŠ½ŠµŠ² атынГағы Университеті'),
(91718, 'https://ror.org/05a147a10', 'es', 1, 'https://ror.org/05a147a10 Instituto de Evaluación e Ingeniería Avanzada'),
(91719, 'https://ror.org/020cbcj98', 'en', 1, 'https://ror.org/020cbcj98 Arctic Athabaskan Council'),
(91720, 'https://ror.org/02cwcxm13', 'tr', 1, 'https://ror.org/02cwcxm13 Seyhan Devlet Hastanesi'),
(91721, 'https://ror.org/04yw9h429', 'en', 1, 'https://ror.org/04yw9h429 CHI Health Missouri Valley'),
(91722, 'https://ror.org/04xnpyp44', 'es', 1, 'https://ror.org/04xnpyp44 Ministerio de Desarrollo Agrario y Riego'),
(91723, 'https://ror.org/012xks909', 'en', 1, 'https://ror.org/012xks909 Eastern Kentucky University'),
(91724, 'https://ror.org/00vcbg240', 'en', 1, 'https://ror.org/00vcbg240 Commonwealth of Learning'),
(91725, 'https://ror.org/02r1wpw81', 'en', 1, 'https://ror.org/02r1wpw81 Virginia Mason Franciscan Health'),
(91726, 'https://ror.org/051639p85', 'en', 1, 'https://ror.org/051639p85 Ontario Research Foundation'),
(91727, 'https://ror.org/0061s4v88', 'en', 1, 'https://ror.org/0061s4v88 BioCruces Health research Institute'),
(91728, 'https://ror.org/00q4mnn13', 'en', 1, 'https://ror.org/00q4mnn13 International Economic Association'),
(91729, 'https://ror.org/00d496d44', 'no_lang_code', 1, 'https://ror.org/00d496d44 PREreview'),
(91730, 'https://ror.org/04ed9da67', 'no_lang_code', 1, 'https://ror.org/04ed9da67 Labvantage - Biomax GmbH (Germany)'),
(91731, 'https://ror.org/03r6bpj37', 'en', 1, 'https://ror.org/03r6bpj37 WIN Consortium'),
(91732, 'https://ror.org/0001w5c47', 'no_lang_code', 1, 'https://ror.org/0001w5c47 GMV Innovating Solutions (Spain)'),
(91733, 'https://ror.org/03426vf35', 'en', 1, 'https://ror.org/03426vf35 Centro Nacional de EnergĆ­as Renovables National Renewable Energy Centre'),
(91734, 'https://ror.org/05kkc4t55', 'en', 1, 'https://ror.org/05kkc4t55 CHI Health Mercy Corning'),
(91735, 'https://ror.org/04vk2qt89', 'id', 1, 'https://ror.org/04vk2qt89 Sekolah Tinggi Agama Islam Kuningan'),
(91736, 'https://ror.org/05xfdey77', 'en', 1, 'https://ror.org/05xfdey77 Bureau of Transportation Statistics'),
(91737, 'https://ror.org/011kd6273', 'en', 1, 'https://ror.org/011kd6273 Catholic Health Initiatives'),
(91738, 'https://ror.org/056q8ze52', 'en', 1, 'https://ror.org/056q8ze52 St. Elizabeth Hospital in Enumclaw'),
(91739, 'https://ror.org/03xb7kp74', 'es', 1, 'https://ror.org/03xb7kp74 Solti'),
(91740, 'https://ror.org/02gd4zp35', 'no_lang_code', 1, 'https://ror.org/02gd4zp35 Novartis Gene Therapies, Inc. (United States)'),
(91741, 'https://ror.org/05bwfhf51', 'en', 1, 'https://ror.org/05bwfhf51 Institute of Geology and Geophysics named after Kh.M. Abdullaev X.M.Аbdullaev nomidagi "Geologiya va geofizika instituti" Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø геофизики» имени Š„.М.АбГуллаева'),
(91742, 'https://ror.org/041bbkr27', 'en', 1, 'https://ror.org/041bbkr27 Centro de Satélites de la Unión Europea European Union Satellite Centre'),
(91743, 'https://ror.org/01srwze89', 'en', 1, 'https://ror.org/01srwze89 CHI Health Nebraska Heart'),
(91744, 'https://ror.org/027rkeh08', 'en', 1, 'https://ror.org/027rkeh08 The Japanese Society of Toxicology ę—„ęœ¬ęÆ’ę€§å­¦ä¼š'),
(91745, 'https://ror.org/05fnzca26', 'en', 1, 'https://ror.org/05fnzca26 Antarctic Sciences'),
(91746, 'https://ror.org/010y5b925', 'en', 1, 'https://ror.org/010y5b925 Thu Dau Mot University TrĘ°į»ng ĐẔi hį»c Thį»§ Dįŗ§u Mį»™t'),
(91747, 'https://ror.org/05n332x20', 'no_lang_code', 1, 'https://ror.org/05n332x20 Industria de Alimentos ZenĆŗ S.A.S. (Colombia)'),
(91748, 'https://ror.org/01wkb9987', 'en', 1, 'https://ror.org/01wkb9987 University of Siedlce Uniwersytet w Siedlcach'),
(91749, 'https://ror.org/00dqsq280', 'en', 1, 'https://ror.org/00dqsq280 Pipeline and Hazardous Materials Safety Administration'),
(91750, 'https://ror.org/00fxnmt68', 'no_lang_code', 1, 'https://ror.org/00fxnmt68 Boeing (Spain)'),
(91751, 'https://ror.org/04bewah80', 'en', 1, 'https://ror.org/04bewah80 St. Michael Medical Center in Silverdale'),
(91752, 'https://ror.org/01wm7hd09', 'en', 1, 'https://ror.org/01wm7hd09 Ajou University in Tashkent Toshkent shahridagi Adju Universiteti Университет АГжу в гороГе Š¢Š°ŃˆŠŗŠµŠ½Ń‚'),
(91753, 'https://ror.org/05hc3k973', 'no_lang_code', 1, 'https://ror.org/05hc3k973 Bolding & Bruggeman'),
(91754, 'https://ror.org/04bxjes65', 'en', 1, 'https://ror.org/04bxjes65 Resnick Sustainability Institute'),
(91755, 'https://ror.org/041vg2t58', 'it', 1, 'https://ror.org/041vg2t58 Regione Autonoma della Sardegna'),
(91756, 'https://ror.org/05vy72d91', 'no_lang_code', 1, 'https://ror.org/05vy72d91 Helvia.ai (Greece)'),
(91757, 'https://ror.org/0150hkx05', 'en', 1, 'https://ror.org/0150hkx05 Office of the Assistant Secretary for Research and Technology'),
(91758, 'https://ror.org/03p8jwd38', 'en', 1, 'https://ror.org/03p8jwd38 Tertiary Education Trust Fund'),
(91759, 'https://ror.org/000s8jb40', 'no_lang_code', 1, 'https://ror.org/000s8jb40 Alcon (United States)'),
(91760, 'https://ror.org/05bxbmy32', 'en', 1, 'https://ror.org/05bxbmy32 Chinese Academy of Social Sciences äø­å›½ē¤¾ä¼šē§‘å­¦é™¢'),
(91761, 'https://ror.org/00n6tay20', 'fr', 1, 'https://ror.org/00n6tay20 National Engineering School of Sfax Ɖcole nationale d''IngĆ©nieurs de Sfax المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† بصفاقس'),
(91762, 'https://ror.org/01y7p7f26', 'nl', 1, 'https://ror.org/01y7p7f26 Stichting OpenAccess'),
(91763, 'https://ror.org/019fnr381', 'id', 1, 'https://ror.org/019fnr381 Trisakti University Universitas Trisakti'),
(91764, 'https://ror.org/029xb4124', 'en', 1, 'https://ror.org/029xb4124 Go2 for Lung Cancer'),
(91765, 'https://ror.org/025tyf168', 'en', 1, 'https://ror.org/025tyf168 Sohn Conference Foundation'),
(91766, 'https://ror.org/051wv2j09', 'en', 1, 'https://ror.org/051wv2j09 China Academy of Railway Sciences 中国铁道科学研究院'),
(91767, 'https://ror.org/0595ys057', 'en', 1, 'https://ror.org/0595ys057 State Key Laboratory of Media Convergence and Communication åŖ’ä½“čžåˆäøŽä¼ ę’­å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91768, 'https://ror.org/007mfra71', 'en', 0, 'https://ror.org/007mfra71 Ministre Du DĆ©veloppement Ɖconomique Et De L’innovation Ontario Ministry of Economic Development and Innovation'),
(91769, 'https://ror.org/01tdxw809', 'nl', 1, 'https://ror.org/01tdxw809 Rotterdam Foundation for Blind People Rotterdamse Stichting Blindenbelangen'),
(91770, 'https://ror.org/059nn3902', 'en', 1, 'https://ror.org/059nn3902 State Key Laboratory of Mechanical Structure Mechanics and Control ęœŗę¢°ē»“ęž„åŠ›å­¦åŠęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91771, 'https://ror.org/0301ppm60', 'ca', 1, 'https://ror.org/0301ppm60 Agencia de Salud Pública de Cataluña Agència de Salut Pública de Catalunya Public Health Agency of Catalonia'),
(91772, 'https://ror.org/007hfk904', 'fr', 1, 'https://ror.org/007hfk904 Réceptions et médiations de littératures et de cultures étrangères et comparées'),
(91773, 'https://ror.org/03byqb733', 'es', 1, 'https://ror.org/03byqb733 Fundación General'),
(91774, 'https://ror.org/010mx9v03', 'no_lang_code', 1, 'https://ror.org/010mx9v03 New Infrared Technologies (Spain)'),
(91775, 'https://ror.org/02cjm2b20', 'en', 1, 'https://ror.org/02cjm2b20 International Society for the Advancement of Spine Surgery'),
(91776, 'https://ror.org/01359dk79', 'en', 1, 'https://ror.org/01359dk79 Neurofibromatosis Therapeutic Acceleration Program'),
(91777, 'https://ror.org/036smcz74', 'en', 1, 'https://ror.org/036smcz74 Vinzenz Pallotti University'),
(91778, 'https://ror.org/02x2vs391', 'en', 1, 'https://ror.org/02x2vs391 Solar Technologies go Hybrid'),
(91779, 'https://ror.org/03p16v381', 'no_lang_code', 1, 'https://ror.org/03p16v381 Taiyuan Iron and Steel Group (China) å¤ŖåŽŸé’¢é“é›†å›¢'),
(91780, 'https://ror.org/056ezpj87', 'en', 1, 'https://ror.org/056ezpj87 Philippine Council for Industry, Energy, and Emerging Technology Research and Development'),
(91781, 'https://ror.org/01zytxw03', 'es', 1, 'https://ror.org/01zytxw03 Aragon Chemistry and Materials Center Centro de Química y Materiales de Aragón'),
(91782, 'https://ror.org/01kc9ap60', 'ca', 1, 'https://ror.org/01kc9ap60 Museo de Arqueologƭa de CataluƱa Museu d''Arqueologia de Catalunya'),
(91783, 'https://ror.org/00z3td547', 'en', 1, 'https://ror.org/00z3td547 Northwest University č„æåŒ—å¤§å­¦'),
(91784, 'https://ror.org/000f0z454', 'es', 1, 'https://ror.org/000f0z454 Universidad Laboral de Córdoba Universitat Laboral de Còrdova'),
(91785, 'https://ror.org/033dfsn42', 'en', 1, 'https://ror.org/033dfsn42 Institute of Software 中国科学院软件研究所'),
(91786, 'https://ror.org/04nytyj38', 'en', 1, 'https://ror.org/04nytyj38 Shanghai Institute of Microsystem and Information Technology äø­å›½ē§‘å­¦é™¢äøŠęµ·å¾®ē³»ē»ŸäøŽäæ”ęÆęŠ€ęœÆē ”ē©¶ę‰€'),
(91787, 'https://ror.org/00rpphk63', 'fr', 1, 'https://ror.org/00rpphk63 Laboratoire de conception et contrÓle des systèmes de production Laboratory of Design and Control of Production Systems'),
(91788, 'https://ror.org/005dkht93', 'pt', 1, 'https://ror.org/005dkht93 Institute for Molecular and Cell Biology Instituto de Biologia Molecular e Celular'),
(91789, 'https://ror.org/042mgk630', 'en', 1, 'https://ror.org/042mgk630 State Key Laboratory of Rail Transit Control and Safety č½Øé“äŗ¤é€šęŽ§åˆ¶äøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91790, 'https://ror.org/04g536d70', 'en', 1, 'https://ror.org/04g536d70 Bayan University Ų¬Ų§Ł…Ų¹Ų© ŲØŁŠŲ§Ł† Ų²Ų§Ł†Ś©Ū†ŪŒ ŲØŪ•ŪŒŲ§Ł†'),
(91791, 'https://ror.org/040sm9666', 'en', 1, 'https://ror.org/040sm9666 AlmuƱecar International School'),
(91792, 'https://ror.org/000nbq540', 'en', 1, 'https://ror.org/000nbq540 State Key Laboratory of Surface Physics åŗ”ē”Øč”Øé¢ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91793, 'https://ror.org/01d963745', 'es', 1, 'https://ror.org/01d963745 Institute of Biomedicine and Biotechnology of Cantabria Instituto de Biomedicina y BiotecnologĆ­a de Cantabria'),
(91794, 'https://ror.org/03a205534', 'en', 1, 'https://ror.org/03a205534 State Key Laboratory of Geomechanics and Geotechnical Engineering å²©åœŸåŠ›å­¦äøŽå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91795, 'https://ror.org/01862bd29', 'en', 1, 'https://ror.org/01862bd29 Julian Schwinger Foundation for Physics Research'),
(91796, 'https://ror.org/04r53se39', 'en', 1, 'https://ror.org/04r53se39 Institute of Information Engineering 中国科学院俔息巄程研究所'),
(91797, 'https://ror.org/006gw6z14', 'es', 1, 'https://ror.org/006gw6z14 Doñana Biological Station Estación Biológica de Doñana'),
(91798, 'https://ror.org/01653xx13', 'de', 1, 'https://ror.org/01653xx13 Data Futures GmbH'),
(91799, 'https://ror.org/03w8jwa36', 'fr', 1, 'https://ror.org/03w8jwa36 Centre de recherche juridique Pothier'),
(91800, 'https://ror.org/05t8khn72', 'ca', 1, 'https://ror.org/05t8khn72 Institut de Biologia Molecular de Barcelona Molecular Biology Institute of Barcelona'),
(91801, 'https://ror.org/05w553v73', 'en', 1, 'https://ror.org/05w553v73 State Key Laboratory of Precision Spectroscopy Science and Technology ē²¾åÆ†å…‰č°±ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91802, 'https://ror.org/01jg7hk52', 'es', 1, 'https://ror.org/01jg7hk52 Institute of Economics, Geography and Demography Instituto de EconomĆ­a, GeografĆ­a y DemografĆ­a'),
(91803, 'https://ror.org/023czga33', 'en', 1, 'https://ror.org/023czga33 Climate Adaptation Science Centers'),
(91804, 'https://ror.org/017r4dj03', 'en', 1, 'https://ror.org/017r4dj03 State Key Laboratory of Software Development Environment č½Æä»¶å¼€å‘ēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91805, 'https://ror.org/04axhqr63', 'en', 1, 'https://ror.org/04axhqr63 State Key Laboratory of Crop Biology ä½œē‰©ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91806, 'https://ror.org/00z1bsd29', 'en', 1, 'https://ror.org/00z1bsd29 State Key Laboratory of New Technology of Pharmaceutical Preparations čÆē‰©åˆ¶å‰‚ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91807, 'https://ror.org/0093mkr06', 'en', 0, 'https://ror.org/0093mkr06 State Key Laboratory of Experimental Hematology å®žéŖŒč”€ę¶²å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91808, 'https://ror.org/04jfxq686', 'no_lang_code', 1, 'https://ror.org/04jfxq686 Uriach (Spain)'),
(91809, 'https://ror.org/02jv0j195', 'en', 1, 'https://ror.org/02jv0j195 Ignatius Ajuru University of Education'),
(91810, 'https://ror.org/00dg3j745', 'en', 1, 'https://ror.org/00dg3j745 Lanzhou Veterinary Research Institute äø­å›½å†œäøšē§‘å­¦é™¢å…°å·žå…½åŒ»ē ”ē©¶ę‰€'),
(91811, 'https://ror.org/00g3fjr10', 'en', 1, 'https://ror.org/00g3fjr10 AIR Institute Fundación Instituto Internacional de Investigación en Inteligencia Artificial y Ciencias de la Computación'),
(91812, 'https://ror.org/02ys41z83', 'en', 1, 'https://ror.org/02ys41z83 Shanghai Synchrotron Radiation Facility äøŠęµ·åŒę­„č¾å°„å…‰ęŗ'),
(91813, 'https://ror.org/03jd9cc79', 'en', 1, 'https://ror.org/03jd9cc79 State Key Laboratory of Environmental Standards and Risk Assessment ēŽÆå¢ƒåŸŗå‡†äøŽé£Žé™©čÆ„ä¼°å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91814, 'https://ror.org/01h0g5x34', 'en', 1, 'https://ror.org/01h0g5x34 State Key Laboratory Fluid Power and Mechatronic Systems ęµä½“åŠØåŠ›äøŽęœŗē”µē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91815, 'https://ror.org/0001d8q22', 'fr', 1, 'https://ror.org/0001d8q22 Centre d''Etudes sur le DƩveloppement des Territoires et Environnement'),
(91816, 'https://ror.org/04thqfb29', 'en', 1, 'https://ror.org/04thqfb29 State Key Laboratory of High Field Laser Physics å¼ŗåœŗęæ€å…‰ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91817, 'https://ror.org/03en4sq15', 'en', 1, 'https://ror.org/03en4sq15 State Key Laboratory of Rare Earth Resources Utilization ēØ€åœŸčµ„ęŗåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91818, 'https://ror.org/020nxmz62', 'en', 0, 'https://ror.org/020nxmz62 State Key Laboratory of Collateral Disease Research and Innovative Traditional Chinese Medicine ē»œē—…ē ”ē©¶äøŽåˆ›ę–°äø­čÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91819, 'https://ror.org/02169wb20', 'en', 1, 'https://ror.org/02169wb20 State Key Laboratory of Hydraulics and Mountain River Engineering ę°“åŠ›å­¦äøŽå±±åŒŗę²³ęµå¼€å‘äæęŠ¤å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91820, 'https://ror.org/05k2gtm81', 'de', 1, 'https://ror.org/05k2gtm81 Elite Network of Bavaria Elitenetzwerk Bayern'),
(91821, 'https://ror.org/03nkpwc05', 'en', 1, 'https://ror.org/03nkpwc05 Genentech Foundation'),
(91822, 'https://ror.org/05s24hr53', 'ca', 1, 'https://ror.org/05s24hr53 Centre d’Investigació i Desenvolupament'),
(91823, 'https://ror.org/03wefcv03', 'en', 1, 'https://ror.org/03wefcv03 Sunnybrook Health Science Centre'),
(91824, 'https://ror.org/05jdfph84', 'es', 1, 'https://ror.org/05jdfph84 Institut Municipal D''InformƔtica de Barcelona Instituto Municipal de InformƔtica de Barcelona The Municipal Institute for Information Technology'),
(91825, 'https://ror.org/054vff263', 'es', 1, 'https://ror.org/054vff263 Instituto de Investigaciones QuĆ­micas'),
(91826, 'https://ror.org/03rpsvy57', 'en', 1, 'https://ror.org/03rpsvy57 Research Center for Eco-Environmental Sciences äø­å›½ē§‘å­¦é™¢ē”Ÿę€ēŽÆå¢ƒē ”ē©¶äø­åæƒ'),
(91827, 'https://ror.org/03kak1729', 'es', 1, 'https://ror.org/03kak1729 Consejería de Empleo, Formación y Trabajo Autónomo'),
(91828, 'https://ror.org/051vpkw73', 'es', 1, 'https://ror.org/051vpkw73 Asociacion de Investigacion de Materiales Plasticos y Conexas'),
(91829, 'https://ror.org/02wh02235', 'en', 1, 'https://ror.org/02wh02235 Centre for Automation and Robotics Centro de Automatización y Robótica'),
(91830, 'https://ror.org/02z4yka38', 'en', 1, 'https://ror.org/02z4yka38 State Key Laboratory of Pathogenic Biology of Livestock Diseases å®¶ē•œē–«ē—…ē—…åŽŸē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91831, 'https://ror.org/000r80389', 'no_lang_code', 1, 'https://ror.org/000r80389 Fuwai Yunnan Cardiovascular Hospital äŗ‘å—ēœé˜œå¤–åæƒč”€ē®”ē—…åŒ»é™¢'),
(91832, 'https://ror.org/04041sd65', 'fr', 1, 'https://ror.org/04041sd65 Laboratoire de recherche sur l’ingĆ©nierie des organisations dans un contexte d’entreprise numĆ©rique Organizational Engineering Research Laboratory for the Digital Enterprise'),
(91833, 'https://ror.org/03atdda90', 'es', 1, 'https://ror.org/03atdda90 Navarrabiomed'),
(91834, 'https://ror.org/037n5ae88', 'es', 1, 'https://ror.org/037n5ae88 Hospital General Universitario Reina SofĆ­a Hospital Reina SofĆ­a de Murcia'),
(91835, 'https://ror.org/037r9nx53', 'fr', 1, 'https://ror.org/037r9nx53 Aeronautical Research Laboratory in Active Control, Avionics and Aeroservoelasticity Laboratoire de recherche en commande active, avionique et aƩroservoƩlasticitƩ'),
(91836, 'https://ror.org/02kbeme12', 'en', 1, 'https://ror.org/02kbeme12 State Key Laboratory of Oxo Synthesis and Selective Oxidation ē¾°åŸŗåˆęˆäøŽé€‰ę‹©ę°§åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91837, 'https://ror.org/00medtj09', 'es', 1, 'https://ror.org/00medtj09 Asociación Española de Normalización y Certificación Spanish Association for Standardisation and Certification'),
(91838, 'https://ror.org/00ae13b94', 'es', 1, 'https://ror.org/00ae13b94 Institute of studies gallegos Padre Sarmiento Instituto de Estudios Gallegos Padre Sarmiento'),
(91839, 'https://ror.org/02bc1qd91', 'en', 1, 'https://ror.org/02bc1qd91 State Key Laboratory of Mechanical Structure Strength and Vibration ęœŗę¢°ē»“ęž„å¼ŗåŗ¦äøŽęŒÆåŠØå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91840, 'https://ror.org/04t3b2655', 'en', 1, 'https://ror.org/04t3b2655 State Key Laboratory of Organic-Inorganic Composite Materials ęœ‰ęœŗę— ęœŗå¤åˆęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91841, 'https://ror.org/041qf4r12', 'en', 1, 'https://ror.org/041qf4r12 China University of Petroleum, Beijing äø­å›½ēŸ³ę²¹å¤§å­¦'),
(91842, 'https://ror.org/00rafd796', 'es', 1, 'https://ror.org/00rafd796 Instituto de Ciencia de Materiales de Sevilla'),
(91843, 'https://ror.org/057jnjd73', 'en', 1, 'https://ror.org/057jnjd73 Institute of Mechanics äø­å›½ē§‘å­¦é™¢åŠ›å­¦ē ”ē©¶ę‰€'),
(91844, 'https://ror.org/040p1ka70', 'es', 1, 'https://ror.org/040p1ka70 Ministerio de Hacienda y Función Pública Ministry of Finance'),
(91845, 'https://ror.org/0090r4d87', 'en', 1, 'https://ror.org/0090r4d87 Institute of Computing Technology äø­å›½ē§‘å­¦é™¢č®”ē®—ęŠ€ęœÆē ”ē©¶ę‰€'),
(91846, 'https://ror.org/02v6zg374', 'es', 1, 'https://ror.org/02v6zg374 Museo Nacional de Ciencias Naturales National Museum of Natural Sciences'),
(91847, 'https://ror.org/02pnm9721', 'es', 1, 'https://ror.org/02pnm9721 Complejo Hospitalario Universitario de Granada'),
(91848, 'https://ror.org/02gypyp73', 'en', 1, 'https://ror.org/02gypyp73 State Key Laboratory of Optical Fiber Communication and Network Technology å…‰ēŗ¤é€šäæ”ęŠ€ęœÆäøŽē½‘ē»œå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91849, 'https://ror.org/0526wrz79', 'en', 1, 'https://ror.org/0526wrz79 Agrobiotechnology Institute Instituto de AgrobiotecnologĆ­a'),
(91850, 'https://ror.org/04r3bvt56', 'en', 1, 'https://ror.org/04r3bvt56 Zhengzhou Institute of Machinery éƒ‘å·žęœŗę¢°ē ”ē©¶ę‰€'),
(91851, 'https://ror.org/05wagd980', 'en', 1, 'https://ror.org/05wagd980 Centre de collaboration nationale des mƩthodes et outils National Collaborating Centre for Methods and Tools'),
(91852, 'https://ror.org/01851wa66', 'en', 1, 'https://ror.org/01851wa66 Frances and Augustus Newman Foundation'),
(91853, 'https://ror.org/00t7sjs72', 'en', 1, 'https://ror.org/00t7sjs72 State Key Laboratory of Cardiovascular Disease åæƒč”€ē®”ē–¾ē—…å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91854, 'https://ror.org/04d0j0m16', 'en', 1, 'https://ror.org/04d0j0m16 State Key Laboratory of Estuarine and Coastal Research ę²³å£ęµ·å²øå­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91855, 'https://ror.org/053zdpn86', 'no_lang_code', 1, 'https://ror.org/053zdpn86 Gree (China) ē ęµ·ę ¼åŠ›ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(91856, 'https://ror.org/00g76w893', 'en', 1, 'https://ror.org/00g76w893 ARC Centre for Nanoscale BioPhotonics'),
(91857, 'https://ror.org/036qb3a23', 'en', 1, 'https://ror.org/036qb3a23 Europe Regional Chapter of the International Society of Exposure Science'),
(91858, 'https://ror.org/01ktyz217', 'en', 1, 'https://ror.org/01ktyz217 Factum Foundation Fundación Factum'),
(91859, 'https://ror.org/01jzs3b90', 'es', 1, 'https://ror.org/01jzs3b90 Fundación BBVA'),
(91860, 'https://ror.org/00qx4he92', 'es', 1, 'https://ror.org/00qx4he92 Ministerio de Transportes, Movilidad y Agenda Urbana Ministry of Public Works and Transport Ministry of Transport, Mobility and Urban Agenda'),
(91861, 'https://ror.org/03kd9rr37', 'en', 1, 'https://ror.org/03kd9rr37 State Key Laboratory of Electrical Insulation and Power Equipment ē”µåŠ›č®¾å¤‡ē”µę°”ē»ē¼˜å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91862, 'https://ror.org/01zmyz259', 'en', 1, 'https://ror.org/01zmyz259 ARUP Institute for Clinical and Experimental Pathology'),
(91863, 'https://ror.org/05pmk8j16', 'es', 1, 'https://ror.org/05pmk8j16 Consejería de la Presidencia, Interior, DiÔlogo Social y Simplificación Administrativa'),
(91864, 'https://ror.org/00725gb29', 'en', 1, 'https://ror.org/00725gb29 State Key Laboratory of Coal Mine Disaster Dynamics and Control ē…¤ēŸæē¾å®³åŠØåŠ›å­¦äøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91865, 'https://ror.org/00bzgd159', 'es', 1, 'https://ror.org/00bzgd159 Institute of Polymer Science and Technology Instituto de Ciencia y TecnologĆ­a de PolĆ­meros'),
(91866, 'https://ror.org/04fsx0p27', 'no_lang_code', 1, 'https://ror.org/04fsx0p27 Danone North America (United States)'),
(91867, 'https://ror.org/02y5rmj89', 'no_lang_code', 1, 'https://ror.org/02y5rmj89 Xuzhou Construction Machinery Group (China) 徐巄集团'),
(91868, 'https://ror.org/02hrqhj53', 'en', 1, 'https://ror.org/02hrqhj53 Rural and Environment Science and Analytical Services'),
(91869, 'https://ror.org/00729wd66', 'en', 1, 'https://ror.org/00729wd66 State Key Laboratory of Civil Aircraft Flight Simulation ę°‘ē”Øé£žęœŗęØ”ę‹Ÿé£žč”Œå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91870, 'https://ror.org/00jhvev34', 'de', 1, 'https://ror.org/00jhvev34 AiF Projekt GmbH'),
(91871, 'https://ror.org/01za2jq02', 'es', 1, 'https://ror.org/01za2jq02 Centro OceanogrƔfico de A CoruƱa Oceanographic Center of A CoruƱa'),
(91872, 'https://ror.org/02vw56c05', 'en', 1, 'https://ror.org/02vw56c05 State Key Laboratory of Construction Machinery Key Technology å»ŗč®¾ęœŗę¢°å…³é”®ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91873, 'https://ror.org/00q2gt621', 'id', 1, 'https://ror.org/00q2gt621 STKIP Paris Barantai'),
(91874, 'https://ror.org/02jkmyk67', 'en', 1, 'https://ror.org/02jkmyk67 Academy of Mathematics and Systems Science äø­å›½ē§‘å­¦é™¢ę•°å­¦äøŽē³»ē»Ÿē§‘å­¦ē ”ē©¶é™¢'),
(91875, 'https://ror.org/04t1cdb72', 'en', 1, 'https://ror.org/04t1cdb72 Institute of Geographic Sciences and Natural Resources Research äø­å›½ē§‘å­¦é™¢åœ°ē†ē§‘å­¦äøŽčµ„ęŗē ”ē©¶ę‰€'),
(91876, 'https://ror.org/04b6v9z58', 'en', 1, 'https://ror.org/04b6v9z58 State Key Laboratory of Mineral Deposit Geochemistry ēŸæåŗŠåœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91877, 'https://ror.org/05kqre064', 'ca', 1, 'https://ror.org/05kqre064 Catalan Foundation for Research and Innovation Fundació Catalana per a la Recerca i la Innovació Fundación Catalana para la investigación e Innovación'),
(91878, 'https://ror.org/007j2dm88', 'pt', 1, 'https://ror.org/007j2dm88 Brain Institute of Rio Grande do Sul Instituto do CƩrebro'),
(91879, 'https://ror.org/012gwbh42', 'es', 1, 'https://ror.org/012gwbh42 Cajal Institute Instituto Cajal'),
(91880, 'https://ror.org/00e17m144', 'no_lang_code', 1, 'https://ror.org/00e17m144 State Grid Hunan Electric Power Company Limited å›½ē½‘ę¹–å—ēœē”µåŠ›ęœ‰é™å…¬åø'),
(91881, 'https://ror.org/00rdzhq47', 'no_lang_code', 1, 'https://ror.org/00rdzhq47 Robotnik (Spain)'),
(91882, 'https://ror.org/043jzw605', 'en', 1, 'https://ror.org/043jzw605 Institute of Cancer Research'),
(91883, 'https://ror.org/05csy5p27', 'en', 1, 'https://ror.org/05csy5p27 Hydrogen and Fuel Cell Technologies Office'),
(91884, 'https://ror.org/02xdk6z35', 'es', 1, 'https://ror.org/02xdk6z35 AMETIC'),
(91885, 'https://ror.org/00qkgfc37', 'en', 1, 'https://ror.org/00qkgfc37 South Dakota Agricultural Experiment Station'),
(91886, 'https://ror.org/000830238', 'en', 1, 'https://ror.org/000830238 Department of Science and Technology, Government of Rajasthan'),
(91887, 'https://ror.org/00v4p4h97', 'en', 1, 'https://ror.org/00v4p4h97 State Key Laboratory of Advanced Brazing Filler Metals and Technology ę–°åž‹é’Žē„Šęę–™äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91888, 'https://ror.org/01fqm1c32', 'es', 1, 'https://ror.org/01fqm1c32 ConsejerĆ­a de PolĆ­ticas Sociales, Familias, Igualdad y Natalidad'),
(91889, 'https://ror.org/00rg6nz68', 'no_lang_code', 1, 'https://ror.org/00rg6nz68 Telnet Redes Inteligentes (Spain)'),
(91890, 'https://ror.org/01pct2123', 'fr', 1, 'https://ror.org/01pct2123 Laboratoire de thermofluide pour le transport Thermo-Fluids for Transport Laboratory'),
(91891, 'https://ror.org/05n8jyh58', 'de', 1, 'https://ror.org/05n8jyh58 Fondation SAPA, Archives suisses des arts de la scène SAPA Foundation, Swiss Archive of the Performing Arts SAPA raccoglie e mette a disposizione del pubblico documenti Stiftung SAPA, Schweizer Archiv der Darstellenden Künste'),
(91892, 'https://ror.org/03zxdkx17', 'en', 1, 'https://ror.org/03zxdkx17 State Key Laboratory of Advanced Welding and Joining å…ˆčæ›ē„ŠęŽ„äøŽčæžęŽ„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91893, 'https://ror.org/04ry0c837', 'pt', 1, 'https://ror.org/04ry0c837 Companhia de Pesquisa de Recursos Minerais Serviço Geológico do Brasil - CPRM'),
(91894, 'https://ror.org/04gw3ra78', 'en', 1, 'https://ror.org/04gw3ra78 Chinese PLA General Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ę€»åŒ»é™¢'),
(91895, 'https://ror.org/04jwqm611', 'en', 1, 'https://ror.org/04jwqm611 State Key Laboratory of Computer Aided Design and Graphics č®”ē®—ęœŗč¾…åŠ©č®¾č®”äøŽå›¾å½¢å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91896, 'https://ror.org/02h7vfp25', 'es', 1, 'https://ror.org/02h7vfp25 Institute of Ceramics and Glass Instituto de CerƔmica y Vidrio'),
(91897, 'https://ror.org/013g8za07', 'fr', 1, 'https://ror.org/013g8za07 Geotechnical and Geoenvironmental Engineering Laboratory Laboratoire de gƩotechnique et de gƩnie gƩoenvironnemental'),
(91898, 'https://ror.org/01bv37j55', 'fr', 1, 'https://ror.org/01bv37j55 Biomedical Information Processing Laboratory Laboratoire de traitement de l''information en santƩ'),
(91899, 'https://ror.org/00mpdg388', 'es', 1, 'https://ror.org/00mpdg388 Complejo Hospitalario Universitario de Santiago USC University Hospital Complex'),
(91900, 'https://ror.org/051xcrt66', 'es', 1, 'https://ror.org/051xcrt66 European University of the Canary Islands Universidad Europea de Canarias'),
(91901, 'https://ror.org/02tbkgn21', 'en', 1, 'https://ror.org/02tbkgn21 Maryland-Delaware-D.C. Water Science Center'),
(91902, 'https://ror.org/05b75nt23', 'no_lang_code', 1, 'https://ror.org/05b75nt23 Bial (Spain)'),
(91903, 'https://ror.org/03ed91q10', 'en', 1, 'https://ror.org/03ed91q10 State Key Laboratory of Inorganic Synthesis and Preparative Chemistry ę— ęœŗåˆęˆäøŽåˆ¶å¤‡åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91904, 'https://ror.org/04qeh2h86', 'ca', 1, 'https://ror.org/04qeh2h86 Institut CatalƠ de Paleontologia Miquel Crusafont Instituto CatalƔn de Paleontologƭa Miguel Crusafont'),
(91905, 'https://ror.org/05m6hv760', 'es', 1, 'https://ror.org/05m6hv760 Animal Health Research Centre Centro de Investigación en Sanidad Animal'),
(91906, 'https://ror.org/02ht4fk33', 'pt', 1, 'https://ror.org/02ht4fk33 Instituto de TelecomunicaƧƵes'),
(91907, 'https://ror.org/03jac3x50', 'es', 1, 'https://ror.org/03jac3x50 Fundación Omphis'),
(91908, 'https://ror.org/00k8xcc25', 'en', 1, 'https://ror.org/00k8xcc25 Saudi Arabia Cultural Bureau in London'),
(91909, 'https://ror.org/01edrm178', 'en', 1, 'https://ror.org/01edrm178 Cotton Research Institute äø­å›½å†œäøšē§‘å­¦é™¢ę£‰čŠ±ē ”ē©¶ę‰€'),
(91910, 'https://ror.org/00zsy6110', 'es', 1, 'https://ror.org/00zsy6110 Institute of Physical and Information Technologies "Leonardo Torres Quevedo" Instituto de TecnologĆ­as FĆ­sicas y de la Información ā€œLeonardo Torres Quevedoā€'),
(91911, 'https://ror.org/02xrb7c43', 'en', 1, 'https://ror.org/02xrb7c43 State Key Laboratory of Advanced Design and Manufacturing of Automobile Body ę±½č½¦č½¦čŗ«å…ˆčæ›č®¾č®”åˆ¶é€ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91912, 'https://ror.org/00862pt92', 'en', 1, 'https://ror.org/00862pt92 State Key Laboratory of Advanced Stainless Steel Materials å…ˆčæ›äøé”ˆé’¢ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91913, 'https://ror.org/015awcr32', 'no_lang_code', 1, 'https://ror.org/015awcr32 Euroortodoncia (Spain)'),
(91914, 'https://ror.org/045h6pd58', 'en', 1, 'https://ror.org/045h6pd58 State Key Laboratory of Soil Erosion and Dryland Farming on the Loess Plateau é»„åœŸé«˜åŽŸåœŸå£¤ä¾µčš€äøŽę—±åœ°å†œäøšå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91915, 'https://ror.org/00tfmv040', 'en', 1, 'https://ror.org/00tfmv040 State Key Laboratory of Special Cable Technology ē‰¹ē§ē”µē¼†ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91916, 'https://ror.org/055sgt471', 'es', 1, 'https://ror.org/055sgt471 Universidad Isabel I'),
(91917, 'https://ror.org/04m7z8d34', 'es', 1, 'https://ror.org/04m7z8d34 Cenim - Centro Nacional de Investigaciones Metalurgicas'),
(91918, 'https://ror.org/01hq59z49', 'es', 1, 'https://ror.org/01hq59z49 Estacion Experimental de Zonas Aridas Estación Experimental de Zonas Áridas'),
(91919, 'https://ror.org/03zpx9a04', 'es', 1, 'https://ror.org/03zpx9a04 Fundación Pública Andaluza Centro de las Nuevas Tecnologías del Agua'),
(91920, 'https://ror.org/03dybbh68', 'en', 1, 'https://ror.org/03dybbh68 State Key Laboratory of Multiphase Flow in Power Engineering åŠØåŠ›å·„ēØ‹å¤šē›øęµå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91921, 'https://ror.org/03r3n3715', 'fr', 1, 'https://ror.org/03r3n3715 Ecole Nationale des Sciences GƩographiques'),
(91922, 'https://ror.org/00g51hv48', 'en', 1, 'https://ror.org/00g51hv48 State Key Laboratory of Metastable Materials Science and Technology äŗšēØ³ęę–™åˆ¶å¤‡ęŠ€ęœÆäøŽē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91923, 'https://ror.org/01mr5b726', 'en', 1, 'https://ror.org/01mr5b726 State Key Laboratory of Advanced Electromagnetic Engineering and Technology å¼ŗē”µē£å·„ēØ‹äøŽę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91924, 'https://ror.org/03mw4pt79', 'en', 1, 'https://ror.org/03mw4pt79 State Key Laboratory for Structural Chemistry of Unstable and Stable Species åˆ†å­åŠØę€äøŽēØ³ę€ē»“ęž„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91925, 'https://ror.org/00awq8a10', 'no_lang_code', 1, 'https://ror.org/00awq8a10 Immuneering (United States)'),
(91926, 'https://ror.org/018m1s709', 'es', 1, 'https://ror.org/018m1s709 Institute of Agrochemistry and Food Technology Instituto de AgroquĆ­mica y TecnologĆ­a de Alimentos'),
(91927, 'https://ror.org/03ezemd27', 'es', 1, 'https://ror.org/03ezemd27 Real Jardƭn BotƔnico Royal Botanical Garden'),
(91928, 'https://ror.org/03d2yag39', 'en', 1, 'https://ror.org/03d2yag39 State Key Laboratory of Severe Weather ē¾å®³å¤©ę°”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91929, 'https://ror.org/01hfgpz79', 'de', 1, 'https://ror.org/01hfgpz79 Paracelsus-Klinik Golzheim Düsseldorf'),
(91930, 'https://ror.org/05sad4929', 'fr', 1, 'https://ror.org/05sad4929 Patrimoines, Transmissions, HƩritages'),
(91931, 'https://ror.org/02a8cdx90', 'fr', 1, 'https://ror.org/02a8cdx90 Alsace Regional Council Conseil RƩgional d''Alsace'),
(91932, 'https://ror.org/05cnhrr87', 'en', 1, 'https://ror.org/05cnhrr87 Al-Ryada University for Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±ŁŠŲ§ŲÆŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(91933, 'https://ror.org/04s23hc51', 'en', 1, 'https://ror.org/04s23hc51 State Key Laboratory of Crop Genetics and Germplasm Innovation ä½œē‰©é—ä¼ äøŽē§č“Øåˆ›ę–°å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91934, 'https://ror.org/0199zx576', 'es', 1, 'https://ror.org/0199zx576 Instituto Nacional del Carbón'),
(91935, 'https://ror.org/05smgpd89', 'en', 1, 'https://ror.org/05smgpd89 IPB University Institut Pertanian Bogor');
INSERT INTO `rors` VALUES
(91936, 'https://ror.org/05e0q7s59', 'es', 1, 'https://ror.org/05e0q7s59 Institute of General Organic Chemistry Instituto de Quƭmica OrgƔnica General'),
(91937, 'https://ror.org/01b4vw335', 'en', 1, 'https://ror.org/01b4vw335 Swiss Competence Center for Energy Research – Supply of Electricity'),
(91938, 'https://ror.org/03nb7bx92', 'es', 1, 'https://ror.org/03nb7bx92 Centro Andaluz de BiologĆ­a Molecular y Medicina Regenerativa'),
(91939, 'https://ror.org/05xt1d182', 'en', 1, 'https://ror.org/05xt1d182 Central Energy Resources Science Center'),
(91940, 'https://ror.org/02tycxw39', 'en', 1, 'https://ror.org/02tycxw39 State Key Laboratory of Tropical Crop Biotechnology ēƒ­åø¦ä½œē‰©ē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91941, 'https://ror.org/059y3xg14', 'nl', 1, 'https://ror.org/059y3xg14 Rotterdamse Fondsen'),
(91942, 'https://ror.org/01adr0w49', 'en', 1, 'https://ror.org/01adr0w49 University of Maine'),
(91943, 'https://ror.org/01y7nsd18', 'es', 1, 'https://ror.org/01y7nsd18 Center for Plant Genetic Resources and Sustainable Agriculture Centro de Recursos FitogenƩticos y Agricultura Sostenible'),
(91944, 'https://ror.org/05v01tw04', 'es', 1, 'https://ror.org/05v01tw04 Centro de Estudios Andaluces'),
(91945, 'https://ror.org/05datm122', 'no_lang_code', 1, 'https://ror.org/05datm122 Ordesa (Spain)'),
(91946, 'https://ror.org/02pq9w205', 'en', 1, 'https://ror.org/02pq9w205 State Key Laboratory of Computer Architecture č®”ē®—ęœŗä½“ē³»ē»“ęž„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91947, 'https://ror.org/030vmwa78', 'en', 1, 'https://ror.org/030vmwa78 Institute of Geology and Geophysics äø­å›½ē§‘å­¦é™¢åœ°č“ØäøŽåœ°ēƒē‰©ē†ē ”ē©¶ę‰€'),
(91948, 'https://ror.org/00eeef580', 'en', 1, 'https://ror.org/00eeef580 State Key Laboratory of Stem Cell and Reproductive Biology å¹²ē»†čƒžäøŽē”Ÿę®–ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91949, 'https://ror.org/00k0e5n49', 'no_lang_code', 1, 'https://ror.org/00k0e5n49 China Railway Bridge and Tunnel Technologies Co. Ltd. (China) äø­é“ę”„éš§ęŠ€ęœÆęœ‰é™å…¬åø'),
(91950, 'https://ror.org/03twns208', 'en', 1, 'https://ror.org/03twns208 State Key Laboratory of Biomacromolecules ē”Ÿē‰©å¤§åˆ†å­å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91951, 'https://ror.org/02wrb0e48', 'es', 1, 'https://ror.org/02wrb0e48 Biofisika Bizkaia Fundazioa Fundación Biofísica Bizkaia'),
(91952, 'https://ror.org/00dmm3k75', 'en', 1, 'https://ror.org/00dmm3k75 State Key Laboratory of Veterinary Biotechnology å…½åŒ»ē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91953, 'https://ror.org/00yx3dv85', 'es', 1, 'https://ror.org/00yx3dv85 Ayuntamiento de Vitoria-Gasteiz Vitoria-Gasteiz City Council Vitoria-Gasteizko Udala'),
(91954, 'https://ror.org/04zdays56', 'es', 1, 'https://ror.org/04zdays56 Institute for Plant Molecular and Cellular Biology Instituto de BiologĆ­a Molecular y Celular de Plantas'),
(91955, 'https://ror.org/04r1ssz88', 'en', 1, 'https://ror.org/04r1ssz88 State Key Laboratory of Precision Testing Technology and Instruments ē²¾åÆ†ęµ‹čÆ•ęŠ€ęœÆåŠä»Ŗå™Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91956, 'https://ror.org/01prrh334', 'en', 1, 'https://ror.org/01prrh334 State Key Laboratory of Acoustics å£°åœŗå£°äæ”ęÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91957, 'https://ror.org/03423gs92', 'en', 1, 'https://ror.org/03423gs92 Namur Digital Institute'),
(91958, 'https://ror.org/053w5yj73', 'en', 1, 'https://ror.org/053w5yj73 State Key Laboratory of Numerical Modeling for Atmospheric Sciences and Geophysical Fluid Dynamics å¤§ę°”ē§‘å­¦å’Œåœ°ēƒęµä½“åŠ›å­¦ę•°å€¼ęØ”ę‹Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91959, 'https://ror.org/04bcwdq54', 'en', 1, 'https://ror.org/04bcwdq54 State Key Laboratory of Biology of Plant Diseases and Insect Pests ę¤ē‰©ē—…č™«å®³ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91960, 'https://ror.org/03srn9y98', 'en', 1, 'https://ror.org/03srn9y98 Institut de Quƭmica AvanƧada de Catalunya Institute of Advanced Chemistry of Catalonia Instituto de Quƭmica Avanzada de CataluƱa'),
(91961, 'https://ror.org/03eg83y24', 'en', 1, 'https://ror.org/03eg83y24 Pacific Island Ecosystems Research Center'),
(91962, 'https://ror.org/01jxjav08', 'en', 1, 'https://ror.org/01jxjav08 Wuhan Institute of Virology 中国科学院武汉病毒研究所'),
(91963, 'https://ror.org/01m3vks35', 'en', 1, 'https://ror.org/01m3vks35 State Key Laboratory of Ocean Engineering ęµ·ę“‹å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91964, 'https://ror.org/04mdawb03', 'fr', 1, 'https://ror.org/04mdawb03 Agence de l''innovation de dƩfense Defense Innovation Agency'),
(91965, 'https://ror.org/02q40pc92', 'en', 1, 'https://ror.org/02q40pc92 Fusion for Energy Fusión para la Energía'),
(91966, 'https://ror.org/03w36pm25', 'es', 1, 'https://ror.org/03w36pm25 Casa de VelƔzquez'),
(91967, 'https://ror.org/0457hyq42', 'es', 1, 'https://ror.org/0457hyq42 Consejo de Seguridad Nuclear Nuclear Safety Council'),
(91968, 'https://ror.org/05gh6hz98', 'en', 1, 'https://ror.org/05gh6hz98 State Key Laboratory of Plasting Molding Technology å”‘ę€§ęˆå½¢ęØ”å…·ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91969, 'https://ror.org/033km2469', 'en', 1, 'https://ror.org/033km2469 Massachusetts Life Sciences Center'),
(91970, 'https://ror.org/03mq8q210', 'en', 1, 'https://ror.org/03mq8q210 State Key Laboratory of Membrane Biology č†œē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91971, 'https://ror.org/04s3qvd73', 'es', 1, 'https://ror.org/04s3qvd73 Asociación de Industrias CÔrnicas Meat Industry Association'),
(91972, 'https://ror.org/05rxf9p36', 'fr', 1, 'https://ror.org/05rxf9p36 Association franƧaise de zootechnie'),
(91973, 'https://ror.org/03yp20v68', 'id', 0, 'https://ror.org/03yp20v68 Institut Agama Islam Negeri Bengkulu'),
(91974, 'https://ror.org/05ryc2b20', 'en', 1, 'https://ror.org/05ryc2b20 National Laboratory of Solid State Microstructures å›ŗä½“å¾®ē»“ęž„ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91975, 'https://ror.org/04xgsgc80', 'en', 1, 'https://ror.org/04xgsgc80 Cognitive Sciences and Technologies Council'),
(91976, 'https://ror.org/05b0t0374', 'no_lang_code', 1, 'https://ror.org/05b0t0374 China National Electric Apparatus Research Institute (China) äø­å›½ē”µå™Øē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(91977, 'https://ror.org/01dmjrf50', 'es', 1, 'https://ror.org/01dmjrf50 Ajuntament de ValĆØncia Ayuntamiento de Valencia'),
(91978, 'https://ror.org/00nycge49', 'en', 1, 'https://ror.org/00nycge49 State Key Laboratory of Isotope Geochemistry åŒä½ē“ åœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91979, 'https://ror.org/02xav4q54', 'es', 1, 'https://ror.org/02xav4q54 Institute of Archaeology of Merida Instituto de Arqueologƭa-MƩrida'),
(91980, 'https://ror.org/05cd55294', 'en', 1, 'https://ror.org/05cd55294 State Key Laboratory of Mobile Networks and Mobile Multimedia Technology ē§»åŠØē½‘ē»œå’Œē§»åŠØå¤šåŖ’ä½“ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91981, 'https://ror.org/02dmmay61', 'en', 1, 'https://ror.org/02dmmay61 State Key Laboratory of Silicon Materials ē”…ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91982, 'https://ror.org/0580ctc67', 'es', 1, 'https://ror.org/0580ctc67 Centro OceanogrƔfico de Canarias Oceanographic Center of Canarias'),
(91983, 'https://ror.org/041spkd04', 'da', 0, 'https://ror.org/041spkd04 Danish National Advanced Technology Foundation HĆøjteknologifonden'),
(91984, 'https://ror.org/023ht6a36', 'en', 1, 'https://ror.org/023ht6a36 State Key Laboratory of Automobile Safety and Energy Conservation ę±½č½¦å®‰å…ØäøŽčŠ‚čƒ½å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91985, 'https://ror.org/00hsc2364', 'es', 1, 'https://ror.org/00hsc2364 Institute of Plant Biochemistry and Photosynthesis Instituto de BioquĆ­mica Vegetal y FotosĆ­ntesis'),
(91986, 'https://ror.org/0340mea86', 'ro', 1, 'https://ror.org/0340mea86 Institutul de Chimie Macromoleculară Petru Poni Petru Poni Institute of Macromolecular Chemistry'),
(91987, 'https://ror.org/01hmrs507', 'en', 1, 'https://ror.org/01hmrs507 State Key Laboratory of Coal Conversion ē…¤ē‚­é«˜ę•ˆä½Žē¢³åˆ©ē”Øå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(91988, 'https://ror.org/02ywpz459', 'en', 1, 'https://ror.org/02ywpz459 State Key Laboratory of Coal Resources and Safe Mining ē…¤ē‚­čµ„ęŗäøŽå®‰å…Øå¼€é‡‡å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91989, 'https://ror.org/01hs0de52', 'en', 1, 'https://ror.org/01hs0de52 Pacific Fishery Management Council'),
(91990, 'https://ror.org/01k4ynh35', 'en', 0, 'https://ror.org/01k4ynh35 Kyiv Academy of Arts ŠšŠøŃ—Š²ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń мистецтв'),
(91991, 'https://ror.org/0478phh31', 'en', 1, 'https://ror.org/0478phh31 State Key Laboratory of Silkworm Genomic Biology å®¶čš•åŸŗå› ē»„ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91992, 'https://ror.org/05hm1yf46', 'en', 1, 'https://ror.org/05hm1yf46 Montana Department of Agriculture'),
(91993, 'https://ror.org/02b9aee11', 'no_lang_code', 1, 'https://ror.org/02b9aee11 Sermasa (Spain)'),
(91994, 'https://ror.org/051p0fy59', 'es', 1, 'https://ror.org/051p0fy59 Instituto de Recursos Naturales y AgrobiologĆ­a de Salamanca'),
(91995, 'https://ror.org/00s0wpd42', 'en', 1, 'https://ror.org/00s0wpd42 State Key Laboratory of Materials-Oriented Chemical Engineering ęę–™åŒ–å­¦å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(91996, 'https://ror.org/00ybwtz11', 'en', 1, 'https://ror.org/00ybwtz11 Centro Nacional de Datos Polares Spanish Polar Data Centre'),
(91997, 'https://ror.org/01nr3td38', 'fr', 1, 'https://ror.org/01nr3td38 Laboratoire d''Informatique Fondamentale d''OrlƩans'),
(91998, 'https://ror.org/01wa3dz59', 'en', 1, 'https://ror.org/01wa3dz59 Saudi Arabian Cultural Mission'),
(91999, 'https://ror.org/044gzm859', 'en', 1, 'https://ror.org/044gzm859 Shatt Al-Arab University College ŁƒŁ„ŁŠŲ© Ų“Ų· العرب الجامعة'),
(92000, 'https://ror.org/02s69db58', 'es', 1, 'https://ror.org/02s69db58 Centro Tecnológico de Investigación, Desarrollo e Innovación en tecnologías de la Información y las Comunicaciones (TIC) Technological Center for Research, Development and Innovation in Information and Communication Technologies (ICT)'),
(92001, 'https://ror.org/04z8xsz80', 'no_lang_code', 1, 'https://ror.org/04z8xsz80 Aceros especiales Europa Gerdau (Spain)'),
(92002, 'https://ror.org/053528t47', 'en', 1, 'https://ror.org/053528t47 The Foundation for Science and Technology'),
(92003, 'https://ror.org/04j11pb67', 'en', 1, 'https://ror.org/04j11pb67 J. Willard and Alice S. Marriott Foundation'),
(92004, 'https://ror.org/012fftw39', 'no_lang_code', 1, 'https://ror.org/012fftw39 SCOAP3'),
(92005, 'https://ror.org/03qd7mz70', 'no_lang_code', 1, 'https://ror.org/03qd7mz70 Johnson & Johnson (United States)'),
(92006, 'https://ror.org/02hzqme58', 'en', 0, 'https://ror.org/02hzqme58 State Key Laboratory of Intelligent Technology and Systems ę™ŗčƒ½ęŠ€ęœÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92007, 'https://ror.org/058gmq444', 'en', 1, 'https://ror.org/058gmq444 BE-Basic Foundation'),
(92008, 'https://ror.org/03t0yb134', 'en', 1, 'https://ror.org/03t0yb134 State Key Laboratory of Loess and Quaternary Geology é»„åœŸäøŽē¬¬å››ēŗŖåœ°č“Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92009, 'https://ror.org/041c71a74', 'es', 1, 'https://ror.org/041c71a74 CITA-alzheimer Fundazioa Fundacion CITA Alzheimer'),
(92010, 'https://ror.org/04caj7738', 'en', 1, 'https://ror.org/04caj7738 State Key Laboratory of Molecular Developmental Biology åˆ†å­å‘č‚²ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92011, 'https://ror.org/03x2a1f75', 'es', 1, 'https://ror.org/03x2a1f75 Eduardo Torroja Institute for Construction Sciences Instituto de Ciencias de La Construcción Eduardo Torroja'),
(92012, 'https://ror.org/050as5c79', 'en', 1, 'https://ror.org/050as5c79 Royal Hobart Hospital Research Foundation'),
(92013, 'https://ror.org/03nqkz164', 'en', 1, 'https://ror.org/03nqkz164 ETH Zürich Foundation'),
(92014, 'https://ror.org/05gwtjq96', 'fr', 1, 'https://ror.org/05gwtjq96 Pouvoirs, Lettres, Normes'),
(92015, 'https://ror.org/03px3r824', 'fi', 1, 'https://ror.org/03px3r824 Finnish Anti-Tuberculosis Foundation Suomen Tuberkuloosin Vastustamisyhdistyksen SƤƤtiƶ'),
(92016, 'https://ror.org/00qfvpr47', 'es', 1, 'https://ror.org/00qfvpr47 Conservatorio Superior de Música de MÔlaga MÔlaga Superior Conservatory of Music'),
(92017, 'https://ror.org/021jr9c59', 'en', 1, 'https://ror.org/021jr9c59 National Cooperative Geologic Mapping Program'),
(92018, 'https://ror.org/02xf8rf51', 'en', 1, 'https://ror.org/02xf8rf51 State Key Laboratory of Supramolecular Structure and Materials č¶…åˆ†å­ē»“ęž„äøŽęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92019, 'https://ror.org/049vabg52', 'en', 1, 'https://ror.org/049vabg52 State Key Laboratory of Baiyunobo Rare Earth Resource Researches and Comprehensive Utilization ē™½äŗ‘é„‚åšēØ€åœŸčµ„ęŗē ”ē©¶äøŽē»¼åˆåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92020, 'https://ror.org/04z14ny65', 'es', 1, 'https://ror.org/04z14ny65 COMSA (Spain)'),
(92021, 'https://ror.org/02bf68437', 'no_lang_code', 1, 'https://ror.org/02bf68437 Automation Research and Design Institute of Metallurgical Industry (China) å†¶é‡‘č‡ŖåŠØåŒ–ē ”ē©¶č®¾č®”é™¢'),
(92022, 'https://ror.org/02aztsv52', 'en', 1, 'https://ror.org/02aztsv52 State Key Laboratory of Pattern Recognition ęØ”å¼čÆ†åˆ«å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92023, 'https://ror.org/05xa8mk74', 'en', 1, 'https://ror.org/05xa8mk74 State Key Laboratory of Metal Mine Safety Technology é‡‘å±žēŸæå±±å®‰å…ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92024, 'https://ror.org/01khfgv28', 'en', 1, 'https://ror.org/01khfgv28 State Key Laboratory of Advanced Steel Processing and Products å…ˆčæ›é’¢é“ęµēØ‹åŠęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92025, 'https://ror.org/00b6h0x02', 'en', 1, 'https://ror.org/00b6h0x02 State Key Laboratory of Structural Analysis for Industrial Equipment å·„äøšč£…å¤‡ē»“ęž„åˆ†ęžå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92026, 'https://ror.org/04yv9ex91', 'en', 1, 'https://ror.org/04yv9ex91 Columbia Environmental Research Center'),
(92027, 'https://ror.org/015m77g16', 'en', 1, 'https://ror.org/015m77g16 State Key Laboratory of Robotics and Systems ęœŗå™ØäŗŗęŠ€ęœÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92028, 'https://ror.org/02aez6s57', 'en', 1, 'https://ror.org/02aez6s57 State Key Laboratory of Lake Science and Environment ę¹–ę³ŠäøŽēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92029, 'https://ror.org/00zq16723', 'es', 1, 'https://ror.org/00zq16723 Ministerio de la Presidencia, Relaciones con las Cortes y Memoria DemocrƔtica'),
(92030, 'https://ror.org/02fp7dp35', 'en', 1, 'https://ror.org/02fp7dp35 State Key Laboratory of Scientific and Engineering Computing ē§‘å­¦äøŽå·„ēØ‹č®”ē®—å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92031, 'https://ror.org/0013wyn38', 'es', 1, 'https://ror.org/0013wyn38 Innovatec (Spain) Sociedad Para El Fomento De La Innovacion Tecnologica Sl'),
(92032, 'https://ror.org/0377qcz53', 'no_lang_code', 1, 'https://ror.org/0377qcz53 Ayatollah Boroujerdi University دانؓگاه آیت الله Ų§Ł„Ų¹ŲøŁ…ŪŒ بروجردی'),
(92033, 'https://ror.org/050mxte83', 'en', 1, 'https://ror.org/050mxte83 State Key Laboratory of Earth Surface Processes and Resource Ecology åœ°č”Øčæ‡ēØ‹äøŽčµ„ęŗē”Ÿę€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92034, 'https://ror.org/03131x321', 'es', 1, 'https://ror.org/03131x321 Ayuntamiento de Bilbao Bilbao Council Bilboko Udala'),
(92035, 'https://ror.org/009gcq722', 'no_lang_code', 1, 'https://ror.org/009gcq722 Kensei Hospital, Tokushima å¾³å³¶å„ē”Ÿē—…é™¢'),
(92036, 'https://ror.org/02zrmae98', 'no_lang_code', 1, 'https://ror.org/02zrmae98 China Guodian Corporation (China) äø­å›½å›½ē”µé›†å›¢å…¬åø'),
(92037, 'https://ror.org/01zgm7d48', 'en', 1, 'https://ror.org/01zgm7d48 International Growth Centre'),
(92038, 'https://ror.org/058nb7410', 'no_lang_code', 1, 'https://ror.org/058nb7410 Certis USA (United States)'),
(92039, 'https://ror.org/03nqtpc52', 'en', 1, 'https://ror.org/03nqtpc52 State Key Laboratory for Innovation and Transformation of Luobing Theory ē»œē—…ē†č®ŗåˆ›ę–°č½¬åŒ–å…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(92040, 'https://ror.org/00g7vw110', 'es', 1, 'https://ror.org/00g7vw110 Ajuntament de Sant SebastiƠ Ayuntamiento de San SebastiƔn City council of San SebastiƔn Donostiako Udala'),
(92041, 'https://ror.org/05sb05859', 'no_lang_code', 1, 'https://ror.org/05sb05859 Farmacoeconomía e Investigación de Resultados en Salud Pharmacoeconomics and Health Outcomes Research Iberia (Spain)'),
(92042, 'https://ror.org/01gdv4d86', 'en', 1, 'https://ror.org/01gdv4d86 Center for Hierarchical Materials Design'),
(92043, 'https://ror.org/007ffzr57', 'en', 1, 'https://ror.org/007ffzr57 Lanzhou Institute of Chemical Physics äø­å›½ē§‘å­¦é™¢å…°å·žåŒ–å­¦ē‰©ē†ē ”ē©¶ę‰€'),
(92044, 'https://ror.org/026d32d84', 'es', 1, 'https://ror.org/026d32d84 Ayuntamiento de Vigo Concello de Vigo'),
(92045, 'https://ror.org/0216pay70', 'en', 1, 'https://ror.org/0216pay70 State Key Laboratory of New Technology of Traditional Chinese Medicine Pharmaceutical Process äø­čÆåˆ¶čÆčæ‡ēØ‹ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92046, 'https://ror.org/023881d27', 'en', 0, 'https://ror.org/023881d27 State Key Laboratory of Internal Combustion Engine Reliability å†…ē‡ƒęœŗåÆé ę€§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92047, 'https://ror.org/05tqzgp98', 'fr', 1, 'https://ror.org/05tqzgp98 Centre Lyonnais d''Acoustique'),
(92048, 'https://ror.org/036qrqq32', 'en', 1, 'https://ror.org/036qrqq32 ARS University'),
(92049, 'https://ror.org/0301ftq25', 'es', 1, 'https://ror.org/0301ftq25 Instituto Municipal de Gestión Medioambiental'),
(92050, 'https://ror.org/00myw9y39', 'en', 1, 'https://ror.org/00myw9y39 Achucarro Basque Center for Neuroscience Centro Vasco de Investigación en Neurociencia'),
(92051, 'https://ror.org/04np0ky85', 'en', 1, 'https://ror.org/04np0ky85 Afghanistan Center for Epidemiological Studies مرکز مطالعات Ų§Ł¾ŪŒŲÆŁ…ŪŒŁˆŁ„ŁˆŚ˜ŪŒŚ© افغانستان'),
(92052, 'https://ror.org/04a2kft13', 'no_lang_code', 1, 'https://ror.org/04a2kft13 Haier Group (China) ęµ·å°”é›†å›¢ęŠ€ęœÆē ”å‘äø­åæƒ'),
(92053, 'https://ror.org/02r92js74', 'en', 1, 'https://ror.org/02r92js74 State Key Laboratory of Civil Engineering Disaster Prevention åœŸęœØå·„ēØ‹é˜²ē¾å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92054, 'https://ror.org/01hd0xp75', 'sv', 0, 'https://ror.org/01hd0xp75 Skogs- och Jordbrukets ForskningsrƄd Swedish Council for Forestry and Agricultural Research'),
(92055, 'https://ror.org/031zwx660', 'es', 1, 'https://ror.org/031zwx660 Institute of Biomedicine of Seville Instituto de Biomedicina de Sevilla'),
(92056, 'https://ror.org/04aps9p30', 'en', 1, 'https://ror.org/04aps9p30 State Key Laboratory of Polyolefin Catalysis Technology and High Performance Materials čšēƒÆēƒƒå‚¬åŒ–ęŠ€ęœÆäøŽé«˜ę€§čƒ½ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92057, 'https://ror.org/02w21g732', 'en', 1, 'https://ror.org/02w21g732 Andalusian Institute of Agricultural and Fisheries Research and Training Instituto Andaluz de Investigación y Formación Agraria, Pesquera, Alimentaria y de la Producción Ecológica'),
(92058, 'https://ror.org/02k59vc26', 'en', 1, 'https://ror.org/02k59vc26 State Key Laboratory of Metallogenic Mechanism of Endogenous Metal Deposits å†…ē”Ÿé‡‘å±žēŸæåŗŠęˆēŸæęœŗåˆ¶ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92059, 'https://ror.org/045z30r81', 'es', 1, 'https://ror.org/045z30r81 Agencia Sanitaria Costa del Sol'),
(92060, 'https://ror.org/04skj5a85', 'ca', 1, 'https://ror.org/04skj5a85 Institut InfĆ ncia Institute of Childhood and Urban World Instituto Infancia'),
(92061, 'https://ror.org/00qs2pz57', 'ca', 1, 'https://ror.org/00qs2pz57 Gabinet d''Estudis Socials'),
(92062, 'https://ror.org/05apcas97', 'en', 1, 'https://ror.org/05apcas97 State Key Laboratory of Luminescence and Application å‘å…‰å­¦åŠåŗ”ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92063, 'https://ror.org/044q2b203', 'fr', 1, 'https://ror.org/044q2b203 Fondation Institut de Cardiologie de MontrƩal Montreal Heart Institute Foundation'),
(92064, 'https://ror.org/03ymfh571', 'en', 1, 'https://ror.org/03ymfh571 Jilin Provincial Institute of Occupational Health å‰ęž—ēœčŒäøšē—…é˜²ę²»é™¢'),
(92065, 'https://ror.org/00pptgy96', 'es', 1, 'https://ror.org/00pptgy96 ConsejerĆ­a de EconomĆ­a, Conocimiento, Empresas y Universidad'),
(92066, 'https://ror.org/00a7sva26', 'no_lang_code', 1, 'https://ror.org/00a7sva26 Renfe Operadora (Spain)'),
(92067, 'https://ror.org/001y7kd61', 'en', 1, 'https://ror.org/001y7kd61 State Key Laboratory of Industrial Automation Systems and Process Equipment Technology ę··åˆęµēØ‹å·„äøšč‡ŖåŠØåŒ–ē³»ē»ŸåŠč£…å¤‡ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92068, 'https://ror.org/02avx9m34', 'en', 1, 'https://ror.org/02avx9m34 Macau University of Science and Technology Foundation ę¾³é—Øē§‘ęŠ€å¤§å­¦åŸŗé‡‘ä¼š ē§‘å¤§åŸŗé‡‘ęœƒ'),
(92069, 'https://ror.org/02v423v20', 'en', 1, 'https://ror.org/02v423v20 State Key Laboratory of Rare Metal Separation and Comprehensive Utilization ēØ€ęœ‰é‡‘å±žåˆ†ē¦»äøŽē»¼åˆåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92070, 'https://ror.org/02887w456', 'en', 1, 'https://ror.org/02887w456 China National Hybrid Rice R&D Central Hunan Hybrid Rice Reserch Center å›½å®¶ę‚äŗ¤ę°“ēØ»å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(92071, 'https://ror.org/04jt60909', 'en', 1, 'https://ror.org/04jt60909 Foundation for Research in Rheumatology'),
(92072, 'https://ror.org/01svxr124', 'es', 1, 'https://ror.org/01svxr124 Institut Valencià de Competitivitat Empresarial Institut de la Petita i Mitjana Indústria de la Generalitat Valenciana Institute for Small and Medium Industry of the Generalitat Valenciana Instituto Valenciano de Competitividad Empresarial Instituto de la Pequeña y Mediana Industria de la Generalidad Valenciana'),
(92073, 'https://ror.org/032cnwa40', 'fr', 1, 'https://ror.org/032cnwa40 Institut de Recherches en Didactiques et Ɖducation de l’UNamur'),
(92074, 'https://ror.org/00brpm077', 'en', 1, 'https://ror.org/00brpm077 Geology, Minerals, Energy, and Geophysics Science Center'),
(92075, 'https://ror.org/01z8yfp14', 'en', 1, 'https://ror.org/01z8yfp14 ISRIC - World Soil Information'),
(92076, 'https://ror.org/02nazt902', 'en', 1, 'https://ror.org/02nazt902 State Key Laboratory of Infrared Physics ēŗ¢å¤–ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92077, 'https://ror.org/05bhjm183', 'en', 1, 'https://ror.org/05bhjm183 Higher Council for Science and Technology'),
(92078, 'https://ror.org/049wkn258', 'it', 1, 'https://ror.org/049wkn258 Fondazione Cassa di Risparmio di Firenze'),
(92079, 'https://ror.org/05x4mfc53', 'es', 1, 'https://ror.org/05x4mfc53 Autoridad Portuaria de Gijon Port Authority of Gijón'),
(92080, 'https://ror.org/01tjgrk20', 'en', 1, 'https://ror.org/01tjgrk20 BezpečnostnĆ­ informačnĆ­ služba Security Information Service'),
(92081, 'https://ror.org/04vgnd506', 'en', 1, 'https://ror.org/04vgnd506 State Key Laboratory of Rare Earth Materials Chemistry and Application ēØ€åœŸęę–™åŒ–å­¦åŠåŗ”ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92082, 'https://ror.org/05r75w747', 'en', 1, 'https://ror.org/05r75w747 Namur Institute of Structured Matter'),
(92083, 'https://ror.org/03qwx2883', 'en', 1, 'https://ror.org/03qwx2883 Fundació Puigvert Puigvert Foundation'),
(92084, 'https://ror.org/01nsd7y51', 'es', 1, 'https://ror.org/01nsd7y51 Geociencias Barcelona'),
(92085, 'https://ror.org/0099d6q96', 'en', 1, 'https://ror.org/0099d6q96 Beijing Institute of Optoelectronic Technology åŒ—äŗ¬å…‰ē”µęŠ€ęœÆē ”ē©¶ę‰€'),
(92086, 'https://ror.org/05e65a079', 'es', 1, 'https://ror.org/05e65a079 Agencia Santafesina de Ciencia, Tecnología e Innovación Santa Fe Science, Technology and Innovation Agency'),
(92087, 'https://ror.org/04mdtvp93', 'en', 1, 'https://ror.org/04mdtvp93 Sinopec Research Institute of Petroleum Processing äø­ēŸ³åŒ–ēŸ³ę²¹åŒ–å·„ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(92088, 'https://ror.org/02r531a15', 'en', 1, 'https://ror.org/02r531a15 Fond za nauku Republike Srbije Science Fund of the Republic of Serbia ФонГ за науку Републике Š”Ń€Š±ŠøŃ˜Šµ'),
(92089, 'https://ror.org/055d2j725', 'en', 1, 'https://ror.org/055d2j725 nccr – on the move'),
(92090, 'https://ror.org/03x95bs79', 'en', 1, 'https://ror.org/03x95bs79 Mariupol State University ŠœŠ°Ń€ŠøŃƒŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ°Ń€Ń–ŃƒŠæŠ¾Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(92091, 'https://ror.org/006zjws59', 'ca', 1, 'https://ror.org/006zjws59 Universidad de Vic - Universidad Central de Catalunya Universitat de Vic - Universitat Central de Catalunya University of Vic - Central University of Catalonia'),
(92092, 'https://ror.org/0558ewf28', 'nl', 1, 'https://ror.org/0558ewf28 Departement Omgeving'),
(92093, 'https://ror.org/023fpv336', 'en', 1, 'https://ror.org/023fpv336 State Key Laboratory of Structural Chemistry ē»“ęž„åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92094, 'https://ror.org/022c3hy66', 'en', 1, 'https://ror.org/022c3hy66 Institute of Automation č‡ŖåŠØåŒ–ē ”ē©¶ę‰€'),
(92095, 'https://ror.org/04zcc4v34', 'en', 1, 'https://ror.org/04zcc4v34 State Key Laboratory of EMU and Locomotive Traction and Control åŠØč½¦ē»„å’Œęœŗč½¦ē‰µå¼•äøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92096, 'https://ror.org/02f977s94', 'fr', 1, 'https://ror.org/02f977s94 Research Laboratory in Machine, Process and Structural Dynamics Ɖquipe de recherche en dynamique des machines, des structures et des procĆ©dĆ©s'),
(92097, 'https://ror.org/02q1jkh03', 'en', 1, 'https://ror.org/02q1jkh03 State Key Laboratory of Biogeology and Environmental Geology ē”Ÿē‰©åœ°č“ØäøŽēŽÆå¢ƒåœ°č“Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92098, 'https://ror.org/03hp7bq97', 'fr', 1, 'https://ror.org/03hp7bq97 Laboratoire d’Économie d’OrlĆ©ans'),
(92099, 'https://ror.org/00rjhhq63', 'no_lang_code', 1, 'https://ror.org/00rjhhq63 ZTE (China) äø­å…“é€šč®Æč‚”ä»½ęœ‰é™å…¬åø'),
(92100, 'https://ror.org/056yktd04', 'en', 1, 'https://ror.org/056yktd04 Institut de Diagnòstic Ambiental i Estudis de l''Aigua Institute of Environmental Assessment and Water Research Instituto de Diagnóstico Ambiental y Estudios del Agua'),
(92101, 'https://ror.org/023pce284', 'en', 1, 'https://ror.org/023pce284 Korea Transportation Safety Authority ķ•œźµ­źµķ†µģ•ˆģ „ź³µė‹Ø'),
(92102, 'https://ror.org/002zef647', 'es', 1, 'https://ror.org/002zef647 Institute of Optics "Daza de ValdĆ©s" Instituto de Ɠptica "Daza de ValdĆ©s"'),
(92103, 'https://ror.org/05bfesv65', 'en', 1, 'https://ror.org/05bfesv65 State Key Laboratory of High Temperature Gas Dynamics é«˜ęø©ę°”ä½“åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92104, 'https://ror.org/0529ebd28', 'en', 1, 'https://ror.org/0529ebd28 Arizona-Nevada Academy of Science'),
(92105, 'https://ror.org/03jvx9v69', 'en', 1, 'https://ror.org/03jvx9v69 Egypt University of Informatics Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ± Ł„Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖŁŠŲ©'),
(92106, 'https://ror.org/058thx797', 'es', 1, 'https://ror.org/058thx797 Hospital Universitario Virgen de la Arrixaca'),
(92107, 'https://ror.org/04dpqce36', 'en', 1, 'https://ror.org/04dpqce36 South East Asian Theological Schools, Inc.'),
(92108, 'https://ror.org/04rpdbq72', 'en', 1, 'https://ror.org/04rpdbq72 Philippine Council for Health Research and Development'),
(92109, 'https://ror.org/012ajw921', 'en', 1, 'https://ror.org/012ajw921 State Key Laboratory of Complex Electromagnetic Environment Effects on Electronics and Information System ē”µå­äæ”ęÆē³»ē»Ÿå¤ę‚ē”µē£ēŽÆå¢ƒę•ˆåŗ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92110, 'https://ror.org/00tq6rn55', 'de', 1, 'https://ror.org/00tq6rn55 KRH Klinikum Nordstadt Nordstadt Hospital'),
(92111, 'https://ror.org/01g79t217', 'en', 1, 'https://ror.org/01g79t217 Topos Institute'),
(92112, 'https://ror.org/024btyy46', 'en', 1, 'https://ror.org/024btyy46 State Key Laboratory of Cell Biology ē»†čƒžē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92113, 'https://ror.org/02tbx7g56', 'en', 1, 'https://ror.org/02tbx7g56 Swine Innovation Porc'),
(92114, 'https://ror.org/00m4czf33', 'en', 1, 'https://ror.org/00m4czf33 China Institute of Water Resources and Hydropower Research äø­å›½ę°“åˆ©ę°“ē”µē§‘å­¦ē ”ē©¶é™¢'),
(92115, 'https://ror.org/012r7ez54', 'id', 1, 'https://ror.org/012r7ez54 STAI Miftahul Huda Al-Azhar Kota Banjar'),
(92116, 'https://ror.org/02wvztg94', 'en', 1, 'https://ror.org/02wvztg94 African Union Development Agency-New Partnership for Africa''s Development'),
(92117, 'https://ror.org/05hw30169', 'es', 1, 'https://ror.org/05hw30169 Foundation for the Study of Viral Hepatitis Fundación para el Estudio de las Hepatitis Virales'),
(92118, 'https://ror.org/0366nbj88', 'eu', 1, 'https://ror.org/0366nbj88 Bizkaiko Foru Aldundia Diputación Foral de Vizcaya'),
(92119, 'https://ror.org/00vhfyp04', 'es', 1, 'https://ror.org/00vhfyp04 Cabildo de La Palma'),
(92120, 'https://ror.org/00325dg83', 'en', 1, 'https://ror.org/00325dg83 State Key Laboratory of Diagnosis and Treatment of Infectious Diseases ä¼ ęŸ“ē—…čÆŠę²»å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92121, 'https://ror.org/02ysx7m49', 'tr', 0, 'https://ror.org/02ysx7m49 Kalkinma Bakanliği Ministry of Development (Turkey)'),
(92122, 'https://ror.org/05bws7k58', 'en', 1, 'https://ror.org/05bws7k58 Portia'),
(92123, 'https://ror.org/0344xsj92', 'de', 1, 'https://ror.org/0344xsj92 Promedica Foundation Promedica Stiftung'),
(92124, 'https://ror.org/059y0zb32', 'en', 1, 'https://ror.org/059y0zb32 State Key Laboratory of Cognitive Neuroscience and Learning č®¤ēŸ„ē„žē»ē§‘å­¦äøŽå­¦ä¹ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92125, 'https://ror.org/00cjfww17', 'en', 1, 'https://ror.org/00cjfww17 State Key Laboratory of Solid Waste Resource Utilization and Energy-Saving Building Materials å›ŗåŗŸčµ„ęŗåŒ–åˆ©ē”ØäøŽčŠ‚čƒ½å»ŗęå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92126, 'https://ror.org/0048t7e91', 'es', 1, 'https://ror.org/0048t7e91 Fundación Progreso y Salud'),
(92127, 'https://ror.org/05gh7t135', 'no_lang_code', 1, 'https://ror.org/05gh7t135 IbermƔtica (Spain)'),
(92128, 'https://ror.org/01g2fkx45', 'es', 1, 'https://ror.org/01g2fkx45 Ajuntament de Castelló Ayuntamiento de Castellón de la Plana'),
(92129, 'https://ror.org/00epner96', 'en', 1, 'https://ror.org/00epner96 Bellvitge University Hospital Hospital Universitari de Bellvitge'),
(92130, 'https://ror.org/05jv5nq16', 'fr', 1, 'https://ror.org/05jv5nq16 Laboratoire d’excellence Physique Atomes LumiĆØre MatiĆØre'),
(92131, 'https://ror.org/02p8pw781', 'no_lang_code', 1, 'https://ror.org/02p8pw781 Treelogic (Spain)'),
(92132, 'https://ror.org/02rnys730', 'it', 1, 'https://ror.org/02rnys730 Gruppo Nazionale per il Calcolo Scientifico National Group for Scientific Computation'),
(92133, 'https://ror.org/014fcf271', 'no_lang_code', 1, 'https://ror.org/014fcf271 Misurata University Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ±Ų§ŲŖŲ©'),
(92134, 'https://ror.org/057dddr91', 'en', 1, 'https://ror.org/057dddr91 Government of Northern Ireland'),
(92135, 'https://ror.org/0128par75', 'en', 1, 'https://ror.org/0128par75 Northwest Institute of Rare Metal Materials č„æåŒ—ēØ€ęœ‰é‡‘å±žęę–™ē ”ē©¶ę‰€'),
(92136, 'https://ror.org/04fhwda97', 'en', 1, 'https://ror.org/04fhwda97 Centre for Structural Systems Biology'),
(92137, 'https://ror.org/05721rw82', 'es', 1, 'https://ror.org/05721rw82 Centro Quƭmica OrgƔnica "LORA-TAMAYO"'),
(92138, 'https://ror.org/05gxmms51', 'no_lang_code', 1, 'https://ror.org/05gxmms51 Commercial Aircraft Corporation of China (China) äø­å›½å•†ē”Øé£žęœŗęœ‰é™č“£ä»»å…¬åø'),
(92139, 'https://ror.org/0017qt444', 'en', 1, 'https://ror.org/0017qt444 State Key Laboratory of Energy Conservation for Air Conditioning Equipment and System Operation ē©ŗč°ƒč®¾å¤‡åŠē³»ē»Ÿčæč”ŒčŠ‚čƒ½å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92140, 'https://ror.org/04dshd728', 'en', 1, 'https://ror.org/04dshd728 State Key Laboratory of Magnetism ē£å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92141, 'https://ror.org/0073tn017', 'en', 1, 'https://ror.org/0073tn017 Virginia Agricultural Experiment Station'),
(92142, 'https://ror.org/0263vc361', 'no_lang_code', 1, 'https://ror.org/0263vc361 Geiser Pharma (Spain)'),
(92143, 'https://ror.org/01ekf5a72', 'en', 1, 'https://ror.org/01ekf5a72 State Key Laboratory of Water and Sediment Science and Water Conservancy and Hydropower Engineering ę°“ę²™ē§‘å­¦äøŽę°“åˆ©ę°“ē”µå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92144, 'https://ror.org/05hy3q009', 'es', 1, 'https://ror.org/05hy3q009 Instituto de Ganaderƭa de MontaƱa'),
(92145, 'https://ror.org/049dzrz33', 'es', 1, 'https://ror.org/049dzrz33 Public Employment Service State Servicio PĆŗblico de Empleo Estatal'),
(92146, 'https://ror.org/03asszp14', 'en', 1, 'https://ror.org/03asszp14 State Key Laboratory of Engine and Powertrain System å†…ē‡ƒęœŗäøŽåŠØåŠ›ē³»ē»Ÿå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(92147, 'https://ror.org/05wg5bj23', 'no_lang_code', 1, 'https://ror.org/05wg5bj23 Dr. Reddy''s Laboratories (Spain)'),
(92148, 'https://ror.org/033g21894', 'no_lang_code', 1, 'https://ror.org/033g21894 CRRC (China) äø­å›½äø­č½¦č‚”ä»½ęœ‰é™å…¬åø'),
(92149, 'https://ror.org/01g9y2x13', 'no_lang_code', 1, 'https://ror.org/01g9y2x13 Tianjin Institute of Pharmaceutical Research (China) å¤©ę“„čÆē‰©ē ”ē©¶ę‰€'),
(92150, 'https://ror.org/01whh8488', 'es', 1, 'https://ror.org/01whh8488 Center for the Development of Information and Communication Technologies Fundación Centro Tecnológico de la Información y la Comunicación'),
(92151, 'https://ror.org/03k457f15', 'es', 1, 'https://ror.org/03k457f15 Fundación Marcos Moshinsky Marcos Moshinsky Foundation'),
(92152, 'https://ror.org/017xch102', 'es', 1, 'https://ror.org/017xch102 Instituto de FĆ­sica Corpuscular'),
(92153, 'https://ror.org/0520hfe27', 'en', 1, 'https://ror.org/0520hfe27 British Institute for Libyan and Northern African Studies'),
(92154, 'https://ror.org/02n7t3w85', 'en', 1, 'https://ror.org/02n7t3w85 State Key Laboratory of Strength of Metallic Materials é‡‘å±žęę–™å¼ŗåŗ¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92155, 'https://ror.org/03gc29549', 'en', 1, 'https://ror.org/03gc29549 Samarkand State University of Veterinary Medicine, Livestock and Biotechnologies Samarqand davlat veterinariya meditsinasi, chorvachilik va biotexnologiyalar universiteti ДамарканГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарной меГицины, животновоГства Šø биотехнологий'),
(92156, 'https://ror.org/02kdgk225', 'en', 1, 'https://ror.org/02kdgk225 State Key Laboratory of Pathogenic Microorganism Biosafety ē—…åŽŸå¾®ē”Ÿē‰©ē”Ÿē‰©å®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92157, 'https://ror.org/05dq6kg38', 'id', 1, 'https://ror.org/05dq6kg38 Institut Agama Islam Negeri Kendari'),
(92158, 'https://ror.org/00vjqt667', 'en', 1, 'https://ror.org/00vjqt667 State Key Laboratory of High-Speed Railway Track Technology é«˜é€Ÿé“č·Æč½Øé“ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92159, 'https://ror.org/00xk8t981', 'es', 1, 'https://ror.org/00xk8t981 Instituto de Acuicultura Torre de la Sal'),
(92160, 'https://ror.org/05xbqrp21', 'en', 1, 'https://ror.org/05xbqrp21 State Key Laboratory of Protein and Plant Gene Research č›‹ē™½č“ØäøŽę¤ē‰©åŸŗå› ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92161, 'https://ror.org/044wgz941', 'en', 1, 'https://ror.org/044wgz941 National Center for Research and Development'),
(92162, 'https://ror.org/03q9jj782', 'no_lang_code', 1, 'https://ror.org/03q9jj782 Cambia Health Solutions (United States)'),
(92163, 'https://ror.org/016apz495', 'no_lang_code', 1, 'https://ror.org/016apz495 Reig Jofre (Spain)'),
(92164, 'https://ror.org/048gtwm90', 'pt', 1, 'https://ror.org/048gtwm90 Centro Nacional de Processamento de Alto Desempenho em SĆ£o Paulo National Center for High Performance Processing in SĆ£o Paulo'),
(92165, 'https://ror.org/00vvxbe27', 'en', 1, 'https://ror.org/00vvxbe27 National Center of Competence in Research Materials’ Revolution: Computational Design and Discovery of Novel Materials'),
(92166, 'https://ror.org/03h33sq24', 'en', 1, 'https://ror.org/03h33sq24 State Key Laboratory of Tribology ę‘©ę“¦å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92167, 'https://ror.org/03y1aw075', 'en', 1, 'https://ror.org/03y1aw075 State Key Laboratory of Coal Combustion ē…¤ē‡ƒēƒ§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92168, 'https://ror.org/00z29pe13', 'no_lang_code', 1, 'https://ror.org/00z29pe13 John Benjamins Publishing Company (Netherlands)'),
(92169, 'https://ror.org/0370sk906', 'es', 1, 'https://ror.org/0370sk906 Escuela de Estudios Ɓrabes School of Arabic Studies'),
(92170, 'https://ror.org/00jhf9987', 'en', 1, 'https://ror.org/00jhf9987 State Key Laboratory of Soil and Sustainable Agriculture åœŸå£¤äøŽå†œäøšåÆęŒē»­å‘å±•å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92171, 'https://ror.org/026zsn751', 'de', 1, 'https://ror.org/026zsn751 Jürgen Manchot Foundation Jürgen Manchot Stiftung'),
(92172, 'https://ror.org/00drcz023', 'es', 1, 'https://ror.org/00drcz023 Estación Experimental del Zaidín'),
(92173, 'https://ror.org/048dd0611', 'en', 1, 'https://ror.org/048dd0611 Institute of Semiconductors äø­å›½ē§‘å­¦é™¢åŠåÆ¼ä½“ē ”ē©¶ę‰€'),
(92174, 'https://ror.org/04wgee362', 'fr', 1, 'https://ror.org/04wgee362 Val de Loire Recherche en Management'),
(92175, 'https://ror.org/047n6x090', 'en', 1, 'https://ror.org/047n6x090 Archivo Histórico Nacional National Historical Archive'),
(92176, 'https://ror.org/034hw7m59', 'en', 1, 'https://ror.org/034hw7m59 Georgia Clinical and Translational Science Alliance'),
(92177, 'https://ror.org/02zhbhm03', 'pt', 1, 'https://ror.org/02zhbhm03 Centro Latino-Americano de Estudos em Cultura'),
(92178, 'https://ror.org/04zqnrt66', 'fr', 1, 'https://ror.org/04zqnrt66 Groupe de recherche en intégration et développement durable en environnement bâti Research Group in Integration and Sustainable Development in Built Environment'),
(92179, 'https://ror.org/00prkya54', 'en', 1, 'https://ror.org/00prkya54 Dalian Institute of Chemical Physics å¤§čæžåŒ–å­¦ē‰©ē†ē ”ē©¶ę‰€'),
(92180, 'https://ror.org/02ecxgj38', 'es', 1, 'https://ror.org/02ecxgj38 Complejo Hospitalario de JaƩn'),
(92181, 'https://ror.org/049y34t50', 'es', 1, 'https://ror.org/049y34t50 Cajal International Neuroscience Center Centro Internacional de Neurociencia Cajal'),
(92182, 'https://ror.org/01jvv7h21', 'en', 1, 'https://ror.org/01jvv7h21 Merchants Chongqing Communications Research and Design Institute ę‹›å•†å±€é‡åŗ†äŗ¤é€šē§‘ē ”č®¾č®”é™¢ęœ‰é™å…¬åø'),
(92183, 'https://ror.org/02vtq1a86', 'fi', 1, 'https://ror.org/02vtq1a86 RƄdet fƶr Strategisk Forskning Strategic Research Council Strategisen Tutkimuksen Neuvosto'),
(92184, 'https://ror.org/04gr0t671', 'ca', 1, 'https://ror.org/04gr0t671 Ajuntament de Reus Ayuntamiento de Reus'),
(92185, 'https://ror.org/02e9dby02', 'en', 1, 'https://ror.org/02e9dby02 Instituto MediterrƔneo de Estudios Avanzados Mediterranean Institute for Advanced Studies'),
(92186, 'https://ror.org/04wsvdt21', 'en', 1, 'https://ror.org/04wsvdt21 State Key Laboratory of Catalysis å‚¬åŒ–åŸŗē”€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92187, 'https://ror.org/0288vxa97', 'es', 1, 'https://ror.org/0288vxa97 Residencia de Investigadores y Biblioteca de Sevilla Seville Residence for Researchers and Library'),
(92188, 'https://ror.org/05n0tzs53', 'en', 1, 'https://ror.org/05n0tzs53 Sunnybrook Research Institute'),
(92189, 'https://ror.org/05efe5r97', 'en', 1, 'https://ror.org/05efe5r97 Central Laser Facility'),
(92190, 'https://ror.org/00f93gc02', 'en', 1, 'https://ror.org/00f93gc02 Vehicle Technologies Office'),
(92191, 'https://ror.org/01y9jdj03', 'es', 1, 'https://ror.org/01y9jdj03 Institució Milà i Fontanals de Recerca en Humanitats Institución MilÔ y Fontanals de Investigación en Humanidades'),
(92192, 'https://ror.org/02yjhrp74', 'en', 1, 'https://ror.org/02yjhrp74 State Key Laboratory of Plant Physiology and Biochemistry ę¤ē‰©ē”Ÿē†å­¦äøŽē”Ÿē‰©åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92193, 'https://ror.org/00xhtr962', 'fr', 1, 'https://ror.org/00xhtr962 GƩnome QuƩbec'),
(92194, 'https://ror.org/01yzfjx97', 'de', 1, 'https://ror.org/01yzfjx97 Donors Association for the Promotion of Humanities and Sciences in Germany Stifterverband'),
(92195, 'https://ror.org/051rtqg79', 'cs', 1, 'https://ror.org/051rtqg79 National Agency for Agricultural Research NĆ”rodnĆ­ Agentura pro Zemědělský Výzkum'),
(92196, 'https://ror.org/03p8qrw52', 'en', 1, 'https://ror.org/03p8qrw52 Texas A&M Engineering Experiment Station'),
(92197, 'https://ror.org/04s1zep84', 'en', 1, 'https://ror.org/04s1zep84 Florence Bascom Geoscience Center'),
(92198, 'https://ror.org/015w4v032', 'es', 1, 'https://ror.org/015w4v032 Centro Nacional de BiotecnologĆ­a'),
(92199, 'https://ror.org/01t2m0x06', 'en', 1, 'https://ror.org/01t2m0x06 State Key Laboratory of Continental Dynamics å¤§é™†åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92200, 'https://ror.org/004v92r53', 'en', 1, 'https://ror.org/004v92r53 State Key Laboratory of Plant Molecular Genetics ę¤ē‰©åˆ†å­é—ä¼ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92201, 'https://ror.org/045s99b94', 'en', 1, 'https://ror.org/045s99b94 NASA Earth Science'),
(92202, 'https://ror.org/05wk7t803', 'en', 1, 'https://ror.org/05wk7t803 State Key Laboratory of Phytochemistry and Sustainable Utilization of Western Plant Resources ę¤ē‰©åŒ–å­¦äøŽč„æéƒØę¤ē‰©čµ„ęŗęŒē»­åˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92203, 'https://ror.org/05qwajj55', 'en', 1, 'https://ror.org/05qwajj55 State Key Laboratory of Power Transmission and Distribution Equipment and System Safety and New Technology č¾“é…ē”µč£…å¤‡åŠē³»ē»Ÿå®‰å…ØäøŽę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92204, 'https://ror.org/03wsxqp04', 'no_lang_code', 1, 'https://ror.org/03wsxqp04 Alleo Labs (United States)'),
(92205, 'https://ror.org/02j79dc41', 'en', 1, 'https://ror.org/02j79dc41 State Key Laboratory of Wireless Mobile Communications ę— ēŗæē§»åŠØé€šäæ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92206, 'https://ror.org/03keq4b73', 'en', 1, 'https://ror.org/03keq4b73 Clinical and Translational Science Collaborative of Northern Ohio'),
(92207, 'https://ror.org/01me1hv80', 'en', 1, 'https://ror.org/01me1hv80 METAvivor'),
(92208, 'https://ror.org/03t0ryx68', 'es', 1, 'https://ror.org/03t0ryx68 CIC energiGUNE'),
(92209, 'https://ror.org/01e41cf67', 'en', 1, 'https://ror.org/01e41cf67 Laboratoire national de los alamos Laboratorio Nacional de Los Ɓlamos Los Alamos National Laboratory'),
(92210, 'https://ror.org/02q9ddr54', 'en', 1, 'https://ror.org/02q9ddr54 State Key Laboratory of Satellite Ocean Environment Dynamics å«ę˜Ÿęµ·ę“‹ēŽÆå¢ƒåŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92211, 'https://ror.org/01qm2pj26', 'es', 1, 'https://ror.org/01qm2pj26 Fundación Agustín de Betancourt'),
(92212, 'https://ror.org/01gtvm746', 'en', 1, 'https://ror.org/01gtvm746 State Key Laboratory of Deep Sea Mineral Resources Development and Utilization of Technology ę·±ęµ·ēŸæäŗ§čµ„ęŗå¼€å‘åˆ©ē”ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92213, 'https://ror.org/05mqa4073', 'en', 1, 'https://ror.org/05mqa4073 State Key Laboratory of Plant Cell and Chromosome Engineering ę¤ē‰©ē»†čƒžäøŽęŸ“č‰²ä½“å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92214, 'https://ror.org/04e38yx37', 'en', 1, 'https://ror.org/04e38yx37 Institute of Plant Genetics, Polish Academy of Sciences Instytut Genetyki Roślin Polskiej Akademii Nauk'),
(92215, 'https://ror.org/05mqqqg72', 'en', 1, 'https://ror.org/05mqqqg72 Institute of Agriculture and Natural Resources'),
(92216, 'https://ror.org/059ymf107', 'en', 1, 'https://ror.org/059ymf107 State Key Laboratory of Materials Processing and Die & Mould Technology ęę–™ęˆå½¢äøŽęØ”å…·ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92217, 'https://ror.org/04tcthy91', 'en', 1, 'https://ror.org/04tcthy91 Institute of Animal Sciences äø­å›½å†œäøšē§‘å­¦é™¢åŒ—äŗ¬ē•œē‰§å…½åŒ»ē ”ē©¶ę‰€'),
(92218, 'https://ror.org/02w65pw28', 'es', 1, 'https://ror.org/02w65pw28 Real Conservatorio Superior de MĆŗsica de Madrid The Royal Conservatory of Madrid'),
(92219, 'https://ror.org/023ckd258', 'fr', 1, 'https://ror.org/023ckd258 BibliothĆØque interuniversitaire de la Sorbonne'),
(92220, 'https://ror.org/00rn0n724', 'no_lang_code', 1, 'https://ror.org/00rn0n724 Kanion Pharmaceutical (China) ę±Ÿč‹åŗ·ē¼˜čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(92221, 'https://ror.org/04f9wy197', 'en', 1, 'https://ror.org/04f9wy197 International Society of Exposure Science'),
(92222, 'https://ror.org/01k5d9263', 'es', 1, 'https://ror.org/01k5d9263 Centro OceanogrƔfico de CƔdiz Oceanographic Center of CƔdiz'),
(92223, 'https://ror.org/052zwqp97', 'no_lang_code', 1, 'https://ror.org/052zwqp97 Olive Quimica (Spain)'),
(92224, 'https://ror.org/04j14t006', 'pt', 1, 'https://ror.org/04j14t006 Rede de QuĆ­mica e Tecnologia'),
(92225, 'https://ror.org/05sqd2v93', 'en', 1, 'https://ror.org/05sqd2v93 State Key Laboratory of Virology ē—…ęÆ’å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92226, 'https://ror.org/00r1wwd23', 'es', 1, 'https://ror.org/00r1wwd23 Centro Nacional de Aceleradores National Center of Accelerators'),
(92227, 'https://ror.org/038c0gc18', 'en', 1, 'https://ror.org/038c0gc18 Institut d''Investigació i Innovació Parc Taulí Institute of Research and Innovation Parc Tauli Instituto de Investigación e Innovación Parc Taulí'),
(92228, 'https://ror.org/00r0jjp97', 'es', 1, 'https://ror.org/00r0jjp97 Confederacion EspaƱola de Organizaciones Empresariales del Metal'),
(92229, 'https://ror.org/02zbs8663', 'ca', 1, 'https://ror.org/02zbs8663 Catalan Institute of Human Paleoecology and Social Evolution Institut Català de Paleoecologia Humana i Evolució Social'),
(92230, 'https://ror.org/05crb7x25', 'no_lang_code', 1, 'https://ror.org/05crb7x25 Shaanxi Yanchang Petroleum (China) é™•č„æå»¶é•æēŸ³ę²¹ļ¼ˆé›†å›¢ļ¼‰ęœ‰é™č“£ä»»å…¬åø'),
(92231, 'https://ror.org/0391qz193', 'es', 1, 'https://ror.org/0391qz193 Centro de Ciencias Humanas y Sociales'),
(92232, 'https://ror.org/00dcq6866', 'en', 1, 'https://ror.org/00dcq6866 Earthquake Science Center'),
(92233, 'https://ror.org/01ddjva78', 'sv', 1, 'https://ror.org/01ddjva78 Mary and Georg C. Ehrnrooth Foundation Mary och Georg C. Ehrnrooths Stiftelse'),
(92234, 'https://ror.org/01bs5br94', 'en', 1, 'https://ror.org/01bs5br94 State Key Laboratory of Pest Control and Resource Utilization ęœ‰å®³ē”Ÿē‰©ęŽ§åˆ¶äøŽčµ„ęŗåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92235, 'https://ror.org/011s40y19', 'fr', 1, 'https://ror.org/011s40y19 Fondation OCP OCP Foundation'),
(92236, 'https://ror.org/04y3yya25', 'ca', 1, 'https://ror.org/04y3yya25 Institut QuĆ­mic de SarriĆ  Instituto Quimico de SarriĆ '),
(92237, 'https://ror.org/00pvqk557', 'en', 1, 'https://ror.org/00pvqk557 State Key Laboratory of Oral Diseases å£č…”ē–¾ē—…ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92238, 'https://ror.org/04xzgfg07', 'es', 1, 'https://ror.org/04xzgfg07 Hospital Nacional de ParaplƩjicos'),
(92239, 'https://ror.org/02regzg56', 'da', 1, 'https://ror.org/02regzg56 Danish Council for Independent Research, Society and Business Samfund og Erhverv, Det Frie ForskningsrƄd'),
(92240, 'https://ror.org/012xv2c39', 'de', 1, 'https://ror.org/012xv2c39 Paracelsus-Harz-Klinik Bad Suderode'),
(92241, 'https://ror.org/00s0nnj93', 'en', 1, 'https://ror.org/00s0nnj93 Centre de Visió per Computador Computer Vision Center'),
(92242, 'https://ror.org/0155edt85', 'fr', 1, 'https://ror.org/0155edt85 fabriqueREL'),
(92243, 'https://ror.org/00pz2fp31', 'en', 1, 'https://ror.org/00pz2fp31 Basque Government Eusko Jaurlaritza Goberno Vasco Gobierno Vasco Govern Basc'),
(92244, 'https://ror.org/055kfjr35', 'en', 1, 'https://ror.org/055kfjr35 Institute of Life, Earth and Environment'),
(92245, 'https://ror.org/04wxdxa47', 'ca', 1, 'https://ror.org/04wxdxa47 Hospital Universitari Germans Trias i Pujol'),
(92246, 'https://ror.org/02b5xr067', 'en', 1, 'https://ror.org/02b5xr067 State Key Laboratory of Tropical Oceanography ēƒ­åø¦ęµ·ę“‹ēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92247, 'https://ror.org/05mqm5297', 'en', 1, 'https://ror.org/05mqm5297 Shanghai Institute of Pharmaceutical Industry äøŠęµ·åŒ»čÆå·„äøšē ”ē©¶é™¢'),
(92248, 'https://ror.org/0161q6d74', 'no_lang_code', 1, 'https://ror.org/0161q6d74 Sinopec (China) äø­å›½ēŸ³ę²¹åŒ–å·„č‚”ä»½ęœ‰é™å…¬åøēŸ³ę²¹å‹˜ęŽ¢å¼€å‘ē ”ē©¶é™¢'),
(92249, 'https://ror.org/02s4vyx04', 'es', 1, 'https://ror.org/02s4vyx04 Fundación Estatal, Salud, Infancia y Bienestar Social, F.S.P.'),
(92250, 'https://ror.org/039qgw281', 'en', 1, 'https://ror.org/039qgw281 Revive & Restore'),
(92251, 'https://ror.org/038bzvr58', 'es', 1, 'https://ror.org/038bzvr58 Instituto Nacional de Seguridad y Salud en el Trabajo'),
(92252, 'https://ror.org/02aee5m12', 'en', 1, 'https://ror.org/02aee5m12 Institute of Genetics and Developmental Biology äø­å›½ē§‘å­¦é™¢é—ä¼ äøŽå‘č‚²ē”Ÿē‰©å­¦ē ”ē©¶ę‰€å†œäøščµ„ęŗē ”ē©¶äø­åæƒ'),
(92253, 'https://ror.org/01mwmh458', 'no_lang_code', 1, 'https://ror.org/01mwmh458 VMware (United States)'),
(92254, 'https://ror.org/01v3c6w86', 'en', 1, 'https://ror.org/01v3c6w86 State Key Laboratory of Modern Coordination Chemistry ēŽ°ä»£é…ä½åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92255, 'https://ror.org/05vmxhn52', 'en', 1, 'https://ror.org/05vmxhn52 State Key Laboratory of Process Automation in Mining and Metallurgy ēŸæå†¶čæ‡ēØ‹č‡ŖåŠØęŽ§åˆ¶ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92256, 'https://ror.org/04gtqc822', 'no_lang_code', 1, 'https://ror.org/04gtqc822 Sanifit (Spain)'),
(92257, 'https://ror.org/00ff7m882', 'en', 1, 'https://ror.org/00ff7m882 State Key Laboratory of Biogenic Fiber Manufacturing Technology ē”Ÿē‰©ęŗēŗ¤ē»“åˆ¶é€ ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92258, 'https://ror.org/05nj8ma95', 'en', 1, 'https://ror.org/05nj8ma95 Institute of Soil Science äø­å›½ē§‘å­¦é™¢å—äŗ¬åœŸå£¤ē ”ē©¶ę‰€'),
(92259, 'https://ror.org/0503v2186', 'es', 0, 'https://ror.org/0503v2186 Conselleria de Cultura, Educación y Ciencia, Generalitat Valenciana'),
(92260, 'https://ror.org/03pzgzb61', 'en', 1, 'https://ror.org/03pzgzb61 State Key Laboratory of Metal Porous Materials é‡‘å±žå¤šå­”ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92261, 'https://ror.org/03h9k5b03', 'ca', 1, 'https://ror.org/03h9k5b03 Institut CatalƠ d''Energia Instituto CatalƔn de Energƭa'),
(92262, 'https://ror.org/032efk559', 'en', 1, 'https://ror.org/032efk559 State Key Laboratory of Co-mining of Coal and Coal-Bed Methane ē…¤äøŽē…¤å±‚ę°”å…±é‡‡å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92263, 'https://ror.org/031g3zk62', 'en', 1, 'https://ror.org/031g3zk62 State Key Laboratory of Advanced Materials for Smart Sensing ę™ŗčƒ½ä¼ ę„ŸåŠŸčƒ½ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92264, 'https://ror.org/01rp06j36', 'en', 1, 'https://ror.org/01rp06j36 Escuela de Negocios IESIDE IESIDE Business School'),
(92265, 'https://ror.org/04fbqvq73', 'es', 1, 'https://ror.org/04fbqvq73 Hospital Universitario Puerto Real'),
(92266, 'https://ror.org/04tavpn47', 'en', 1, 'https://ror.org/04tavpn47 Second Military Medical University äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›å†›åŒ»å¤§å­¦'),
(92267, 'https://ror.org/045hfth47', 'en', 1, 'https://ror.org/045hfth47 State Key Laboratory of Alternate Electrical Power System with Renewable Energy Sources ę–°čƒ½ęŗē”µåŠ›ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92268, 'https://ror.org/01gg3z807', 'en', 1, 'https://ror.org/01gg3z807 State Key Laboratory of Life Organic Chemistry ē”Ÿå‘½ęœ‰ęœŗåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92269, 'https://ror.org/01yaqvf46', 'en', 1, 'https://ror.org/01yaqvf46 Irma T. Hirschl Trust'),
(92270, 'https://ror.org/02hwwnx12', 'ca', 1, 'https://ror.org/02hwwnx12 Fundació Balear d''Innovació i Tecnologia Fundación Balear de Innovación y Tecnología');
INSERT INTO `rors` VALUES
(92271, 'https://ror.org/01x8cht46', 'en', 1, 'https://ror.org/01x8cht46 Geology, Energy and Minerals Science Center'),
(92272, 'https://ror.org/03hq2nj16', 'fr', 1, 'https://ror.org/03hq2nj16 3L.AM - Langues, LittĆ©ratures, Linguistique des UniversitĆ©s d’Angers et du Mans'),
(92273, 'https://ror.org/03njcec05', 'en', 1, 'https://ror.org/03njcec05 North Dakota Agricultural Experiment Station'),
(92274, 'https://ror.org/05j73fd60', 'en', 1, 'https://ror.org/05j73fd60 Institute of Coal Chemistry äø­å›½ē§‘å­¦é™¢å±±č„æē…¤ē‚­åŒ–å­¦ē ”ē©¶ę‰€'),
(92275, 'https://ror.org/01j1eb875', 'ca', 1, 'https://ror.org/01j1eb875 Catalan Institute of Oncology Institut CatalƠ d''Oncologia Instituto CatalƔn de Oncologƭa'),
(92276, 'https://ror.org/0311ezn83', 'en', 1, 'https://ror.org/0311ezn83 State Key Laboratory of Virus Genetic Engineering ē—…ęÆ’åŸŗå› å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92277, 'https://ror.org/02n744x58', 'en', 1, 'https://ror.org/02n744x58 Yerevan Haybusak University ŌµÖ€Ö‡Õ”Õ¶Õ« «ՀՔյբուսՔկ» Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶Õ«'),
(92278, 'https://ror.org/041hkjs21', 'en', 1, 'https://ror.org/041hkjs21 Geosciences and Environmental Change Science Center'),
(92279, 'https://ror.org/006h16267', 'fr', 1, 'https://ror.org/006h16267 Control and Robotics Laboratory Laboratoire de commande et de robotique'),
(92280, 'https://ror.org/02szc9j24', 'sv', 1, 'https://ror.org/02szc9j24 Stiftelsen Konung Gustaf V:s 80-Ƅrsfond The King Gustaf V Foundation''s 80-year fund'),
(92281, 'https://ror.org/0367eej18', 'en', 1, 'https://ror.org/0367eej18 State Key Laboratory of Mechanical Manufacturing System Engineering ęœŗę¢°åˆ¶é€ ē³»ē»Ÿå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92282, 'https://ror.org/002thpc56', 'no_lang_code', 1, 'https://ror.org/002thpc56 Kuang-Chi (China) 光志'),
(92283, 'https://ror.org/00d5dd272', 'en', 1, 'https://ror.org/00d5dd272 Barcelona Graduate School of Mathematics'),
(92284, 'https://ror.org/0269h3m05', 'es', 1, 'https://ror.org/0269h3m05 ConsejerĆ­a de Agricultura, Pesca, Agua y Desarrollo Rural'),
(92285, 'https://ror.org/04r79j859', 'ca', 1, 'https://ror.org/04r79j859 Fundació Universitat-Empresa de les Illes Balears Fundación Universidad-Empresa de las Islas Baleares'),
(92286, 'https://ror.org/04cbvzp68', 'en', 1, 'https://ror.org/04cbvzp68 National Institute of Technology Nagaland ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Øą¤¾ą¤—ą¤¾ą¤²ą„ˆą¤‚ą¤”'),
(92287, 'https://ror.org/01ckt9009', 'en', 1, 'https://ror.org/01ckt9009 State Key Laboratory of Applied Optics åŗ”ē”Øå…‰å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92288, 'https://ror.org/0424h4e32', 'en', 1, 'https://ror.org/0424h4e32 Institute of Atmospheric Physics 中国科学院大气物理研究所'),
(92289, 'https://ror.org/02hphne60', 'en', 1, 'https://ror.org/02hphne60 State Key Laboratory of Mechanical System and Vibration ęœŗę¢°ē³»ē»ŸäøŽęŒÆåŠØå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92290, 'https://ror.org/02txedb84', 'en', 1, 'https://ror.org/02txedb84 Shanghai Institute of Technical Physics äø­å›½ē§‘å­¦é™¢äøŠęµ·ęŠ€ęœÆē‰©ē†ē ”ē©¶ę‰€'),
(92291, 'https://ror.org/00ms48f15', 'en', 1, 'https://ror.org/00ms48f15 Air Force Medical University ē©ŗå†›å†›åŒ»å¤§å­¦'),
(92292, 'https://ror.org/019yx3c32', 'en', 1, 'https://ror.org/019yx3c32 Great Lakes Science Center'),
(92293, 'https://ror.org/00zf0nh29', 'en', 1, 'https://ror.org/00zf0nh29 Fort Collins Science Center'),
(92294, 'https://ror.org/039gq4j49', 'en', 1, 'https://ror.org/039gq4j49 Dakota Water Science Center'),
(92295, 'https://ror.org/01cc3fy72', 'eu', 1, 'https://ror.org/01cc3fy72 Basque Foundation for Science Ikerbasque'),
(92296, 'https://ror.org/05567cf68', 'eu', 1, 'https://ror.org/05567cf68 Agencia Vasca de la Innovación Innobasque'),
(92297, 'https://ror.org/036xfaa94', 'en', 1, 'https://ror.org/036xfaa94 State Key Laboratory of Herbage Improvement and Grassland Agro-ecosystems č‰ē§åˆ›ę–°äøŽč‰åœ°å†œäøšē”Ÿę€ē³»ē»Ÿå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(92298, 'https://ror.org/00bh4be42', 'ca', 1, 'https://ror.org/00bh4be42 Catalan Transplant Foundation Fundació Catalana de Trasplantament'),
(92299, 'https://ror.org/04kp6rb84', 'ro', 1, 'https://ror.org/04kp6rb84 Agenția Națională pentru Cercetare și Dezvoltare National Agency for Research and Development'),
(92300, 'https://ror.org/01f6ay605', 'es', 1, 'https://ror.org/01f6ay605 Centro Tecnológico Lurederra Technological Center Lurederra'),
(92301, 'https://ror.org/022syn853', 'en', 1, 'https://ror.org/022syn853 Shanghai Institute of Materia Medica äø­å›½ē§‘å­¦é™¢äøŠęµ·čÆē‰©ē ”ē©¶ę‰€'),
(92302, 'https://ror.org/009wseg80', 'es', 1, 'https://ror.org/009wseg80 Institute of Fundamental Physics Instituto de FĆ­sica Fundamental'),
(92303, 'https://ror.org/04xtz1057', 'ca', 1, 'https://ror.org/04xtz1057 Fight Infections Foundation Fundació Lluita contra les Infeccions'),
(92304, 'https://ror.org/04v3ywz14', 'en', 1, 'https://ror.org/04v3ywz14 China Agricultural University äø­å›½å†œäøšå¤§å­¦'),
(92305, 'https://ror.org/044y9x435', 'en', 1, 'https://ror.org/044y9x435 State Key Laboratory of Disaster Prevention and Mitigation of Power Grid Transmission and Transformation Equipment ē”µē½‘č¾“å˜ē”µč®¾å¤‡é˜²ē¾å‡ē¾å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92306, 'https://ror.org/022patd17', 'en', 1, 'https://ror.org/022patd17 Basrah University College of Science and Technology ŁƒŁ„ŁŠŲ© البصرة الجامعة Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(92307, 'https://ror.org/03bzdww12', 'ca', 1, 'https://ror.org/03bzdww12 Health Sciences Research Institute of the ā€œGermans Trias i Pujolā€ Foundation Institut d''Investigació en CiĆØncies de la Salut Germans Trias i Pujol'),
(92308, 'https://ror.org/03snzfy68', 'en', 1, 'https://ror.org/03snzfy68 ProgHist Ltd.'),
(92309, 'https://ror.org/00x43yy22', 'en', 1, 'https://ror.org/00x43yy22 State Key Laboratory of Biotherapy ē”Ÿē‰©ę²»ē–—å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92310, 'https://ror.org/007hrfm61', 'fr', 1, 'https://ror.org/007hrfm61 Laboratoire de Psychologie des Pays de la Loire'),
(92311, 'https://ror.org/018fpas51', 'en', 1, 'https://ror.org/018fpas51 State Key Laboratory of Modern Optical Instruments ēŽ°ä»£å…‰å­¦ä»Ŗå™Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92312, 'https://ror.org/04n16t016', 'en', 1, 'https://ror.org/04n16t016 Institute of Hematology & Blood Diseases Hospital äø­å›½åŒ»å­¦ē§‘å­¦é™¢č”€ę¶²ē—…åŒ»é™¢'),
(92313, 'https://ror.org/02kf0qx29', 'es', 1, 'https://ror.org/02kf0qx29 Centro OceanogrƔfico de Vigo Oceanographic Center of Vigo'),
(92314, 'https://ror.org/037am2x18', 'en', 1, 'https://ror.org/037am2x18 State Key Laboratory of Water Resources and Hydropower Engineering Science ę°“čµ„ęŗäøŽę°“ē”µå·„ēØ‹ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92315, 'https://ror.org/01xspp494', 'en', 1, 'https://ror.org/01xspp494 Bilim, Sanayi ve Teknoloji Bakanlığı Ministry of Science, Industry and Technology'),
(92316, 'https://ror.org/00hs7dr46', 'en', 1, 'https://ror.org/00hs7dr46 Ural Federal University Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(92317, 'https://ror.org/05jk45963', 'es', 1, 'https://ror.org/05jk45963 Hospital Universitario RĆ­o Hortega'),
(92318, 'https://ror.org/054dxrt80', 'es', 1, 'https://ror.org/054dxrt80 AlcalĆ” Center for Interdisciplinary Research Centro de Investigaciones Interdisciplinares de AlcalĆ”'),
(92319, 'https://ror.org/00v79jn39', 'hu', 1, 'https://ror.org/00v79jn39 Egészségügyi TudomÔnyos TanÔcs Medical Research Council of Hungary'),
(92320, 'https://ror.org/00mwew271', 'en', 1, 'https://ror.org/00mwew271 State Key Laboratory of Semiconductor Superlattice åŠåÆ¼ä½“č¶…ę™¶ę ¼å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92321, 'https://ror.org/04t3q5q03', 'en', 1, 'https://ror.org/04t3q5q03 State Key Laboratory of Microbial Metabolism å¾®ē”Ÿē‰©ä»£č°¢å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92322, 'https://ror.org/02j078x28', 'es', 1, 'https://ror.org/02j078x28 Asociacion Industrial de Optica Color e Imagen'),
(92323, 'https://ror.org/0237da472', 'es', 1, 'https://ror.org/0237da472 Ayuntamiento de Zaragoza'),
(92324, 'https://ror.org/01anzhw43', 'en', 1, 'https://ror.org/01anzhw43 State Key Laboratory of Intelligent Manufacturing of High-end Construction Machinery é«˜ē«Æå·„ēØ‹ęœŗę¢°ę™ŗčƒ½åˆ¶é€ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92325, 'https://ror.org/04s33wy62', 'es', 1, 'https://ror.org/04s33wy62 Supercomputación Castilla y León'),
(92326, 'https://ror.org/013wv8d67', 'en', 1, 'https://ror.org/013wv8d67 Institute of Soil and Water Conservation äø­å›½ē§‘å­¦é™¢ę°“åˆ©éƒØę°“åœŸäæęŒē ”ē©¶ę‰€'),
(92327, 'https://ror.org/03792qf33', 'en', 1, 'https://ror.org/03792qf33 Chinese Academy of Agricultural Mechanization Sciences äø­å›½å†œäøšęœŗę¢°åŒ–ē§‘å­¦ē ”ē©¶é™¢'),
(92328, 'https://ror.org/04dqesy58', 'en', 1, 'https://ror.org/04dqesy58 Civil Engineering Research and Innovation for Sustainability'),
(92329, 'https://ror.org/03971n288', 'es', 1, 'https://ror.org/03971n288 Hospital Universitario Doctor Peset'),
(92330, 'https://ror.org/023d5h353', 'en', 1, 'https://ror.org/023d5h353 Instituto de Investigación Sanitaria de Navarra Navarre Institute of Health Research'),
(92331, 'https://ror.org/027j6ra75', 'en', 1, 'https://ror.org/027j6ra75 State Key Laboratory of Elemental Organic Chemistry å…ƒē“ ęœ‰ęœŗåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92332, 'https://ror.org/016ks4x90', 'en', 1, 'https://ror.org/016ks4x90 Swedish Society of Medicine'),
(92333, 'https://ror.org/03x937183', 'en', 1, 'https://ror.org/03x937183 Cancer Hospital of Chinese Academy of Medical Sciences äø­å›½åŒ»å­¦ē§‘å­¦é™¢č‚æē˜¤åŒ»é™¢'),
(92334, 'https://ror.org/03td3t860', 'fr', 1, 'https://ror.org/03td3t860 Laboratoire sur les alliages à mémoire et les systèmes intelligents Shape Memory Alloys and Intelligent Systems Laboratory'),
(92335, 'https://ror.org/01pj15135', 'no_lang_code', 1, 'https://ror.org/01pj15135 Diater (Spain)'),
(92336, 'https://ror.org/03c0ach84', 'en', 1, 'https://ror.org/03c0ach84 Artificial Intelligence Research Institute Institut d''Investigació en Intel·ligència Artificial Instituto de Investigación en Inteligencia Artificial'),
(92337, 'https://ror.org/009maf963', 'ro', 0, 'https://ror.org/009maf963 Petru Maior University Universitatea Petru Maior din TĆ¢rgu Mureș Universitatea Petru Maior din TĆ®rgu Mureş'),
(92338, 'https://ror.org/043cvne07', 'ca', 1, 'https://ror.org/043cvne07 Centro OceanogrƔfico de Illes Balears Oceanographic Center of Illes Balears'),
(92339, 'https://ror.org/049d6bh38', 'en', 1, 'https://ror.org/049d6bh38 Institute of Geochemistry åœ°ēƒåŒ–å­¦ē ”ē©¶ę‰€'),
(92340, 'https://ror.org/01z3gk918', 'en', 1, 'https://ror.org/01z3gk918 Beijing General Research Institute of Mining and Metallurgy åŒ—äŗ¬ēŸæå†¶ē ”ē©¶ę€»é™¢'),
(92341, 'https://ror.org/03n5f7689', 'no_lang_code', 1, 'https://ror.org/03n5f7689 Yangtze River Pharmaceutical Group (China) ę‰¬å­ę±ŸčÆäøšé›†å›¢'),
(92342, 'https://ror.org/0528q3r27', 'en', 1, 'https://ror.org/0528q3r27 State Key Laboratory of Integrated Management of Pest Insects and Rodents å†œäøšč™«å®³é¼ å®³ē»¼åˆę²»ē†ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92343, 'https://ror.org/01ygnsd19', 'en', 1, 'https://ror.org/01ygnsd19 State Key Laboratory of Medical Molecular Biology åŒ»å­¦åˆ†å­ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92344, 'https://ror.org/05dy2c135', 'no_lang_code', 1, 'https://ror.org/05dy2c135 China Coal Research Institute (China) 中国煤炭科学研究总院'),
(92345, 'https://ror.org/05mzwwx48', 'fr', 1, 'https://ror.org/05mzwwx48 La RƩgion Occitanie PyrƩnƩes-MƩditerranƩe'),
(92346, 'https://ror.org/04hk5tm95', 'fr', 1, 'https://ror.org/04hk5tm95 Doctors Without Borders Médecins Sans Frontières Médicos Sin Fronteras'),
(92347, 'https://ror.org/03wmjs517', 'en', 1, 'https://ror.org/03wmjs517 Core Research Center'),
(92348, 'https://ror.org/03j33bp92', 'en', 1, 'https://ror.org/03j33bp92 State Key Laboratory of Fine Chemicals ē²¾ē»†åŒ–å·„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92349, 'https://ror.org/009h6m484', 'en', 1, 'https://ror.org/009h6m484 State Key Laboratory of Shipping Technology and Safety čˆŖčæęŠ€ęœÆäøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92350, 'https://ror.org/05vg20182', 'en', 1, 'https://ror.org/05vg20182 State Key Laboratory of Chemobiosensing and Chemometrics åŒ–å­¦ē”Ÿē‰©ä¼ ę„ŸäøŽč®”é‡å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92351, 'https://ror.org/01297db79', 'es', 1, 'https://ror.org/01297db79 Centro de Investigación y Desarrollo'),
(92352, 'https://ror.org/02y3tc479', 'no_lang_code', 1, 'https://ror.org/02y3tc479 Salvat (Spain)'),
(92353, 'https://ror.org/03k6r8t20', 'en', 1, 'https://ror.org/03k6r8t20 Nanjing Institute of Geography and Limnology äø­å›½ē§‘å­¦é™¢å—äŗ¬åœ°ē†äøŽę¹–ę³Šē ”ē©¶ę‰€'),
(92354, 'https://ror.org/03q3mt530', 'en', 1, 'https://ror.org/03q3mt530 Maine Agricultural and Forest Experiment Station'),
(92355, 'https://ror.org/02tdxcj66', 'en', 1, 'https://ror.org/02tdxcj66 Central Midwest Water Science Center'),
(92356, 'https://ror.org/034b53w38', 'en', 1, 'https://ror.org/034b53w38 Chinese Academy of Meteorological Sciences 中国气豔科学研究院'),
(92357, 'https://ror.org/05pgg4z49', 'en', 1, 'https://ror.org/05pgg4z49 Cancer Society of Finland Cancerorganisationerna SyƶpƤjƤrjestƶt'),
(92358, 'https://ror.org/0356cst02', 'en', 1, 'https://ror.org/0356cst02 Guangzhou Institute of Geochemistry äø­å›½ē§‘å­¦é™¢å¹æå·žåœ°ēƒåŒ–å­¦ē ”ē©¶ę‰€'),
(92359, 'https://ror.org/01fhm2133', 'en', 0, 'https://ror.org/01fhm2133 Consortia Advancing Standards in Research Administration Information'),
(92360, 'https://ror.org/04qm9me84', 'en', 0, 'https://ror.org/04qm9me84 United States Atomic Energy Commission'),
(92361, 'https://ror.org/0231bqc61', 'fr', 1, 'https://ror.org/0231bqc61 Laboratoire de communications multimƩdias en tƩlƩprƩsence Multimedia Communication in Telepresence'),
(92362, 'https://ror.org/05jt8mz33', 'es', 1, 'https://ror.org/05jt8mz33 Agencia de Medio Ambiente y Agua de AndalucĆ­a'),
(92363, 'https://ror.org/05cvf7v30', 'en', 1, 'https://ror.org/05cvf7v30 Institute of Physics 中国科学院物理研究所'),
(92364, 'https://ror.org/04wjk1035', 'pt', 1, 'https://ror.org/04wjk1035 i3S - Institute for Research and Innovation in Health, University of Porto i3S - Instituto de Investigação e Inovação em Saúde, Universidade do Porto'),
(92365, 'https://ror.org/04848jz84', 'en', 1, 'https://ror.org/04848jz84 Office of Nuclear Safety'),
(92366, 'https://ror.org/04za79z50', 'en', 1, 'https://ror.org/04za79z50 State Key Laboratory of Special Surface Protection Materials and Application Technology ē‰¹ē§č”Øé¢äæęŠ¤ęę–™åŠåŗ”ē”ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92367, 'https://ror.org/00pfxsh56', 'en', 1, 'https://ror.org/00pfxsh56 Institut de FĆ­sica InterdisciplinĆ ria i Sistemes Complexos Institute for Cross-Disciplinary Physics and Complex Systems Instituto de FĆ­sica Interdisciplinar y Sistemas Complejos'),
(92368, 'https://ror.org/04sg95s75', 'en', 1, 'https://ror.org/04sg95s75 State Key Laboratory of Geological Processes and Mineral Resources åœ°č“Øčæ‡ēØ‹äøŽēŸæäŗ§čµ„ęŗå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92369, 'https://ror.org/00ex3dr91', 'en', 1, 'https://ror.org/00ex3dr91 Shanghai Research Institute of Chemical Industry'),
(92370, 'https://ror.org/00nn53y54', 'en', 1, 'https://ror.org/00nn53y54 State Key Laboratory of Medical Neurobiology åŒ»å­¦ē„žē»ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92371, 'https://ror.org/033jmdj81', 'en', 1, 'https://ror.org/033jmdj81 Solar Energy Technologies Office'),
(92372, 'https://ror.org/01z3jn402', 'en', 1, 'https://ror.org/01z3jn402 State Key Laboratory of Software Engineering č½Æä»¶å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92373, 'https://ror.org/03gmjg433', 'en', 1, 'https://ror.org/03gmjg433 Museo Arqueológico Nacional National Archaeological Museum of Spain'),
(92374, 'https://ror.org/03gq5rs15', 'es', 1, 'https://ror.org/03gq5rs15 Consejería de Cultura, Educación, Formación Profesional y Universidades Consellería de Cultura, Educación, Formación Profesional e Universidades'),
(92375, 'https://ror.org/05jw4kp39', 'en', 1, 'https://ror.org/05jw4kp39 Institut de Biologia Integrativa de Sistemes Institute for Integrative Systems Biology Instituto de BiologĆ­a Integrativa de Sistemas'),
(92376, 'https://ror.org/03cf8m307', 'no_lang_code', 1, 'https://ror.org/03cf8m307 Centro de Estudios de Materiales y Control de Obra (Spain)'),
(92377, 'https://ror.org/00ssvzv66', 'en', 1, 'https://ror.org/00ssvzv66 Karpagam Academy of Higher Education'),
(92378, 'https://ror.org/040yzj036', 'no_lang_code', 1, 'https://ror.org/040yzj036 AB-Biotics (Spain)'),
(92379, 'https://ror.org/03zefme93', 'es', 1, 'https://ror.org/03zefme93 Botín Foundation Fundación Botín'),
(92380, 'https://ror.org/02dzk0c85', 'en', 1, 'https://ror.org/02dzk0c85 Shenyang Research Institute of Foundry ę²ˆé˜³é“øé€ ē ”ē©¶ę‰€'),
(92381, 'https://ror.org/02s8dab97', 'es', 1, 'https://ror.org/02s8dab97 Junta de Castilla y León Junta of Castile and León'),
(92382, 'https://ror.org/026k11n28', 'en', 1, 'https://ror.org/026k11n28 DST-NRF Centre of Excellence for Invasion Biology'),
(92383, 'https://ror.org/014gmtw23', 'en', 1, 'https://ror.org/014gmtw23 State Key Laboratory of Molecular Oncology åˆ†å­č‚æē˜¤å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92384, 'https://ror.org/00ft6nj33', 'en', 1, 'https://ror.org/00ft6nj33 Shenyang Institute of Automation äø­å›½ē§‘å­¦é™¢ę²ˆé˜³č‡ŖåŠØåŒ–ē ”ē©¶ę‰€'),
(92385, 'https://ror.org/016g9tg59', 'en', 1, 'https://ror.org/016g9tg59 State Key Laboratory of Low-Dimensional Quantum Physics ä½Žē»“é‡å­ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92386, 'https://ror.org/0336w4p56', 'fr', 1, 'https://ror.org/0336w4p56 UniversitƩ numƩrique Cheikh Hamidou KANE'),
(92387, 'https://ror.org/010b9wj87', 'en', 1, 'https://ror.org/010b9wj87 Boston Medical Center'),
(92388, 'https://ror.org/01w104f98', 'ca', 1, 'https://ror.org/01w104f98 Conselleria d''Educació, Universitats i Ocupació Conselleria de Educación, Universidades y Empleo'),
(92389, 'https://ror.org/00tkt3j79', 'en', 1, 'https://ror.org/00tkt3j79 Western Canada Research Grid'),
(92390, 'https://ror.org/01mc9wk69', 'en', 1, 'https://ror.org/01mc9wk69 State Key Laboratory of Earthquake Dynamics åœ°éœ‡åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92391, 'https://ror.org/050mgds09', 'es', 1, 'https://ror.org/050mgds09 Red de Fundaciones Universidad Empresa'),
(92392, 'https://ror.org/040g91402', 'en', 1, 'https://ror.org/040g91402 CICE Consortium'),
(92393, 'https://ror.org/0442kw503', 'en', 1, 'https://ror.org/0442kw503 Office of Academic Affiliations'),
(92394, 'https://ror.org/02wxs2325', 'es', 1, 'https://ror.org/02wxs2325 Escuela de Estudios Hispano-Americanos'),
(92395, 'https://ror.org/05hr3ch11', 'en', 1, 'https://ror.org/05hr3ch11 Institute of Botany äø­å›½ē§‘å­¦é™¢ę¤ē‰©ē ”ē©¶ę‰€'),
(92396, 'https://ror.org/054scg060', 'en', 1, 'https://ror.org/054scg060 State Key Laboratory of Mechanical Transmission ęœŗę¢°ä¼ åŠØå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92397, 'https://ror.org/04xvy3j27', 'en', 1, 'https://ror.org/04xvy3j27 Panimalar Medical College Hospital & Research Institute'),
(92398, 'https://ror.org/05hhs8n30', 'en', 1, 'https://ror.org/05hhs8n30 Arkansas Rice Research and Promotion Board'),
(92399, 'https://ror.org/02v9wg343', 'en', 1, 'https://ror.org/02v9wg343 State Key Laboratory of Information Photonics and Optical Communications äæ”ęÆå…‰å­å­¦äøŽå…‰é€šäæ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92400, 'https://ror.org/00cagf561', 'en', 1, 'https://ror.org/00cagf561 State Key Laboratory of Reproductive Medicine ē”Ÿę®–åŒ»å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92401, 'https://ror.org/04sksx363', 'en', 1, 'https://ror.org/04sksx363 Beijing Building Materials Academy of Sciences and Research åŒ—äŗ¬å»ŗē­‘ęę–™ē§‘å­¦ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(92402, 'https://ror.org/010r3z169', 'en', 1, 'https://ror.org/010r3z169 State Key Laboratory of Drug Creation and Pharmaceutical Process åˆ›ę–°čÆē‰©äøŽåˆ¶čÆå·„č‰ŗå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92403, 'https://ror.org/00cv16a87', 'sv', 1, 'https://ror.org/00cv16a87 Gun and Bertil Stohne''s Foundation Gun och Bertil Stohnes Stiftelse'),
(92404, 'https://ror.org/05hpcth11', 'en', 1, 'https://ror.org/05hpcth11 China Textile Academy 中国纺织科学研究院'),
(92405, 'https://ror.org/03m5tgj44', 'en', 1, 'https://ror.org/03m5tgj44 Gruber Foundation'),
(92406, 'https://ror.org/01t9yse95', 'en', 1, 'https://ror.org/01t9yse95 State Key Laboratory of Electronic Thin Films and Integrated Devices ē”µå­č–„č†œäøŽé›†ęˆå™Øä»¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92407, 'https://ror.org/03sjvjt84', 'en', 1, 'https://ror.org/03sjvjt84 State Key Laboratory of Superhard Materials č¶…ē”¬ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92408, 'https://ror.org/049r5zb56', 'en', 1, 'https://ror.org/049r5zb56 State Key Laboratory For Conservation and Utilization of Subtropical Agro-Bioresources äŗšēƒ­åø¦å†œäøšē”Ÿē‰©čµ„ęŗäæęŠ¤äøŽåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92409, 'https://ror.org/00z9npm78', 'en', 1, 'https://ror.org/00z9npm78 Shanghai Ship and Shipping Research Institute äøŠęµ·čˆ¹čˆ¶čæč¾“ē§‘å­¦ē ”ē©¶ę‰€ęˆ'),
(92410, 'https://ror.org/03s0hv140', 'es', 1, 'https://ror.org/03s0hv140 Instituto de Recursos Naturales y AgrobiologĆ­a de Sevilla'),
(92411, 'https://ror.org/02pzj0897', 'pt', 1, 'https://ror.org/02pzj0897 Brazilian National Institute for Science and Technology of Quantum Information Instituto Nacional de Ciência e Tecnologia de Informação Quântica'),
(92412, 'https://ror.org/03fkbz285', 'en', 1, 'https://ror.org/03fkbz285 Saint Louis University'),
(92413, 'https://ror.org/05axz5g38', 'en', 1, 'https://ror.org/05axz5g38 State Key Laboratory of Functional Materials for Informatics äæ”ęÆåŠŸčƒ½ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92414, 'https://ror.org/02s32fb62', 'en', 1, 'https://ror.org/02s32fb62 Novo Nordisk Foundation Center for Basic Metabolic Research'),
(92415, 'https://ror.org/04svrh266', 'en', 1, 'https://ror.org/04svrh266 Northwest Institute of Nuclear Technology č„æåŒ—ę øęŠ€ęœÆē ”ē©¶ę‰€'),
(92416, 'https://ror.org/02z7b8p30', 'en', 1, 'https://ror.org/02z7b8p30 State Key Laboratory of Nano-Fabrication and Micro-Fabrication å¾®ē»†åŠ å·„å…‰å­¦ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92417, 'https://ror.org/02c73qr28', 'ca', 1, 'https://ror.org/02c73qr28 Institute CerdĆ '),
(92418, 'https://ror.org/05977wa81', 'fr', 1, 'https://ror.org/05977wa81 Cognitive and Semantic Interpretation Engineering Laboratory Laboratoire en ingƩnierie cognitive et sƩmantique'),
(92419, 'https://ror.org/0308wzx30', 'en', 1, 'https://ror.org/0308wzx30 State Key Laboratory of Molecular Biology åˆ†å­ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92420, 'https://ror.org/03jhgk465', 'en', 1, 'https://ror.org/03jhgk465 State Key Laboratory of Laser and Matter Interaction ęæ€å…‰äøŽē‰©č“Øē›øäŗ’ä½œē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92421, 'https://ror.org/051gp9e93', 'es', 1, 'https://ror.org/051gp9e93 Centro OceanogrƔfico de Murcia Oceanographic Center of Murcia'),
(92422, 'https://ror.org/04km98768', 'en', 1, 'https://ror.org/04km98768 State Key Laboratory of Turbulence and Complex Systems ę¹ęµäøŽå¤ę‚ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92423, 'https://ror.org/01b1b8a96', 'fr', 1, 'https://ror.org/01b1b8a96 Conseil dƩpartemental de la Marne'),
(92424, 'https://ror.org/05pwsnp59', 'en', 1, 'https://ror.org/05pwsnp59 Cambia Health Foundation'),
(92425, 'https://ror.org/03rr60493', 'no_lang_code', 1, 'https://ror.org/03rr60493 Mega Grants ŠœŠ•Š“ŠŠ“Š ŠŠŠ¢Š«'),
(92426, 'https://ror.org/013sgyn36', 'en', 1, 'https://ror.org/013sgyn36 State Key Laboratory of Electromagnetic Metamaterials Modulation Technology č¶…ęę–™ē”µē£č°ƒåˆ¶ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92427, 'https://ror.org/04j1pqk37', 'en', 1, 'https://ror.org/04j1pqk37 Collaborative Research in Engineering, Science and Technology Centre'),
(92428, 'https://ror.org/05qndj312', 'es', 1, 'https://ror.org/05qndj312 Hospital Universitario de Canarias University Hospital of the Canary Islands'),
(92429, 'https://ror.org/00ajrgb89', 'en', 1, 'https://ror.org/00ajrgb89 Alpha Foundation'),
(92430, 'https://ror.org/019bev041', 'en', 1, 'https://ror.org/019bev041 State Key Laboratory of Proteomics č›‹ē™½č“Øē»„å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92431, 'https://ror.org/004g03602', 'es', 1, 'https://ror.org/004g03602 CIC biomaGUNE Centre for Cooperative Research in Biomaterials'),
(92432, 'https://ror.org/0075gfd51', 'es', 1, 'https://ror.org/0075gfd51 Loyola University Andalusia Universidad Loyola AndalucĆ­a'),
(92433, 'https://ror.org/02gtb1r52', 'fr', 1, 'https://ror.org/02gtb1r52 Conseil rƩgional du Grand Est Grand Est Regional Council'),
(92434, 'https://ror.org/0276mnx09', 'en', 1, 'https://ror.org/0276mnx09 State Key Laboratory of Soil-Plant System Technology Machines åœŸå£¤ę¤ē‰©ęœŗå™Øē³»ē»ŸęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92435, 'https://ror.org/00ffy1726', 'en', 1, 'https://ror.org/00ffy1726 Earth Resources Observation and Science Center'),
(92436, 'https://ror.org/05n28ff84', 'pt', 1, 'https://ror.org/05n28ff84 Foundation to Support Research and Technological Innovation of the State of Sergipe Fundação de Apoio à Pesquisa e à Inovação Tecnológica do Estado de Sergipe'),
(92437, 'https://ror.org/01m1pjq63', 'no_lang_code', 1, 'https://ror.org/01m1pjq63 Aplitec (Spain)'),
(92438, 'https://ror.org/02j89k719', 'en', 1, 'https://ror.org/02j89k719 Fujian Institute of Research on the Structure of Matter äø­å›½ē§‘å­¦é™¢ē¦å»ŗē‰©č“Øē»“ęž„ē ”ē©¶ę‰€'),
(92439, 'https://ror.org/050fgfc71', 'en', 1, 'https://ror.org/050fgfc71 State Key Laboratory of Applied Organic Chemistry åŠŸčƒ½ęœ‰ęœŗåˆ†å­åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92440, 'https://ror.org/03phm3r45', 'es', 1, 'https://ror.org/03phm3r45 Clinica Universidad de Navarra Navarra University Clinic'),
(92441, 'https://ror.org/01d6bq278', 'it', 1, 'https://ror.org/01d6bq278 Gruppo Nazionale per la Fisica Matematica National Group for Mathematical Physics'),
(92442, 'https://ror.org/04g1mec21', 'en', 1, 'https://ror.org/04g1mec21 State Key Laboratory of Pharmacokinetics and Drug Delivery Technology é‡ŠčÆęŠ€ęœÆäøŽčÆä»£åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92443, 'https://ror.org/00z72fs19', 'en', 1, 'https://ror.org/00z72fs19 Department of Health Research ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø विभाग'),
(92444, 'https://ror.org/01b4hqa77', 'no_lang_code', 1, 'https://ror.org/01b4hqa77 Changsha Mining and Metallurgy Research Institute (China) é•æę²™ēŸæå†¶ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬'),
(92445, 'https://ror.org/04fffmj41', 'es', 1, 'https://ror.org/04fffmj41 Hospital ClĆ­nico Universitario de Valladolid'),
(92446, 'https://ror.org/03kcmb879', 'en', 1, 'https://ror.org/03kcmb879 Arkansas Archeological Survey'),
(92447, 'https://ror.org/01a631g06', 'ca', 1, 'https://ror.org/01a631g06 Centre d''Investigacions sobre Desertificació Desertification Research Centre'),
(92448, 'https://ror.org/043r4xd27', 'en', 1, 'https://ror.org/043r4xd27 State Key Laboratory of Enhanced Oil Recovery ęé«˜ēŸ³ę²¹é‡‡ę”¶ēŽ‡å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92449, 'https://ror.org/027bk5v43', 'en', 1, 'https://ror.org/027bk5v43 Illinois Department of Public Health'),
(92450, 'https://ror.org/04at1ex44', 'nl', 0, 'https://ror.org/04at1ex44 Hercules Foundation Herculesstichting'),
(92451, 'https://ror.org/00t864161', 'es', 1, 'https://ror.org/00t864161 Consejería de Educación de la Junta de Castilla y León'),
(92452, 'https://ror.org/04c3k8v21', 'pt', 1, 'https://ror.org/04c3k8v21 Applied Molecular Biosciences Unit Unidade em CiĆŖncias Biomoleculares Aplicadas'),
(92453, 'https://ror.org/055akgr63', 'en', 1, 'https://ror.org/055akgr63 State Key Laboratory of Cotton Biology ę£‰čŠ±ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92454, 'https://ror.org/03f5bh097', 'es', 1, 'https://ror.org/03f5bh097 Institute of Environmental Research and QuĆ­micas Barcelona Instituto de Investigaciones QuĆ­micas y Ambientales de Barcelona'),
(92455, 'https://ror.org/05v0c3v45', 'en', 1, 'https://ror.org/05v0c3v45 State Key Laboratory of Special Functional Waterproof Materials ē‰¹ē§åŠŸčƒ½é˜²ę°“ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92456, 'https://ror.org/00rffka72', 'no_lang_code', 1, 'https://ror.org/00rffka72 Alstom (Spain)'),
(92457, 'https://ror.org/039vw4178', 'es', 1, 'https://ror.org/039vw4178 Instituto de Agricultura Sostenible Sustainable Agriculture Institute'),
(92458, 'https://ror.org/007nf8q70', 'en', 1, 'https://ror.org/007nf8q70 State Key Laboratory of Artificial Microstructure and Mesoscopic Physics äŗŗå·„å¾®ē»“ęž„å’Œä»‹č§‚ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92459, 'https://ror.org/01txpcz79', 'en', 0, 'https://ror.org/01txpcz79 State Key Laboratory of Text Information Processing ę–‡å­—äæ”ęÆå¤„ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92460, 'https://ror.org/01rm2sw78', 'es', 1, 'https://ror.org/01rm2sw78 Institute of Grapevine and Wine Sciences Instituto de Ciencias de la Vid y del Vino'),
(92461, 'https://ror.org/05pbnw832', 'en', 1, 'https://ror.org/05pbnw832 State Key Laboratory of Special Rare Metal Materials ēØ€ęœ‰é‡‘å±žē‰¹ē§ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92462, 'https://ror.org/01hsx4r68', 'en', 1, 'https://ror.org/01hsx4r68 State Key Laboratory of Computer Science č®”ē®—ęœŗē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92463, 'https://ror.org/01caehj63', 'en', 1, 'https://ror.org/01caehj63 State Key Laboratory of Medical Immunology åŒ»å­¦å…ē–«å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92464, 'https://ror.org/00heb4d89', 'en', 1, 'https://ror.org/00heb4d89 Geothermal Technologies Office'),
(92465, 'https://ror.org/01fah6g03', 'es', 1, 'https://ror.org/01fah6g03 Centro de EdafologĆ­a y BiologĆ­a Aplicada del Segura'),
(92466, 'https://ror.org/03qvm8c26', 'no_lang_code', 1, 'https://ror.org/03qvm8c26 Ingurumen Jarduketarako Sozietate Publikoa, IHOBE, S.A. Sociedad Pública De Gestión Ambiental IHOBE, S.A.'),
(92467, 'https://ror.org/03cn45t22', 'es', 1, 'https://ror.org/03cn45t22 Escuela EspaƱola de Historia y Arqueologƭa en Roma Spanish School of History and Archeology'),
(92468, 'https://ror.org/00szax507', 'no_lang_code', 1, 'https://ror.org/00szax507 Avid Radiopharmaceuticals (United States)'),
(92469, 'https://ror.org/00jacea03', 'fr', 1, 'https://ror.org/00jacea03 Groupe de recherche en Ʃlectronique de puissance et commande industrielle Power Electronics and Industrial Control Research Group'),
(92470, 'https://ror.org/01gedh423', 'id', 1, 'https://ror.org/01gedh423 Sekolah Tinggi Keguruan dan Ilmu Pendidikan PGRI Situbondo'),
(92471, 'https://ror.org/032vsjs50', 'en', 1, 'https://ror.org/032vsjs50 Mitsui Sumitomo Insurance Welfare Foundation'),
(92472, 'https://ror.org/01wrkgt84', 'en', 1, 'https://ror.org/01wrkgt84 Barcelona Provincial Council Diputació de Barcelona'),
(92473, 'https://ror.org/058yyz752', 'pt', 1, 'https://ror.org/058yyz752 Instituto Nacional de Energia ElƩtrica National Institute of Electricity'),
(92474, 'https://ror.org/05dsysc59', 'es', 1, 'https://ror.org/05dsysc59 Instituto de CarboquĆ­mica'),
(92475, 'https://ror.org/011787436', 'es', 1, 'https://ror.org/011787436 Complejo Hospitalario de Navarra'),
(92476, 'https://ror.org/01g0gmx67', 'en', 1, 'https://ror.org/01g0gmx67 Northwest Institute For Non-Ferrous Metal Research č„æåŒ—ęœ‰č‰²é‡‘å±žē ”ē©¶é™¢'),
(92477, 'https://ror.org/024nvrc84', 'en', 1, 'https://ror.org/024nvrc84 State Key Laboratory of Digital Multimedia Chip Technology ę•°å­—å¤šåŖ’ä½“čŠÆē‰‡ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92478, 'https://ror.org/04q93ds34', 'es', 1, 'https://ror.org/04q93ds34 Institute of Public Goods and Policies Instituto de PolĆ­ticas y Bienes PĆŗblicos'),
(92479, 'https://ror.org/05k4hjn16', 'ca', 1, 'https://ror.org/05k4hjn16 Ajuntament de Girona Ayuntamiento de Girona'),
(92480, 'https://ror.org/056a37x91', 'es', 1, 'https://ror.org/056a37x91 Estación Experimental de Aula Dei'),
(92481, 'https://ror.org/03ht4bd53', 'en', 1, 'https://ror.org/03ht4bd53 Donald E. and Delia B. Baxter Foundation'),
(92482, 'https://ror.org/040xzg562', 'es', 1, 'https://ror.org/040xzg562 Hospital Universitario Puerta del Mar'),
(92483, 'https://ror.org/04haakz20', 'en', 1, 'https://ror.org/04haakz20 National Council for Eurasian and East European Research'),
(92484, 'https://ror.org/006rwj939', 'en', 1, 'https://ror.org/006rwj939 State Key Laboratory of Heavy Oil é‡č“Øę²¹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92485, 'https://ror.org/05y3n1d93', 'es', 1, 'https://ror.org/05y3n1d93 Aena Aeropuertos Españoles y Navegación Aérea'),
(92486, 'https://ror.org/052zwa538', 'en', 1, 'https://ror.org/052zwa538 Vision Group on Science and Technology'),
(92487, 'https://ror.org/03jxvbk42', 'en', 1, 'https://ror.org/03jxvbk42 Brotman Baty Institute'),
(92488, 'https://ror.org/01b280561', 'en', 1, 'https://ror.org/01b280561 State Key Laboratory of Cancer Biology č‚æē˜¤ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92489, 'https://ror.org/02nadej66', 'en', 1, 'https://ror.org/02nadej66 Cooperative Research Centre for Contamination Assessment and Remediation of the Environment'),
(92490, 'https://ror.org/01h3km103', 'en', 1, 'https://ror.org/01h3km103 State Key Laboratory of Rolling Technology and Continuous Rolling Automation č½§åˆ¶ęŠ€ęœÆåŠčæžč½§č‡ŖåŠØåŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92491, 'https://ror.org/04qk9rk19', 'pt', 1, 'https://ror.org/04qk9rk19 Instituto Nacional de Ciência e Tecnologia: Física Nuclear e Aplicações'),
(92492, 'https://ror.org/0113k5861', 'fi', 1, 'https://ror.org/0113k5861 Cancer Foundation Finland Cancerstiftelsen SyƶpƤsƤƤtiƶ'),
(92493, 'https://ror.org/02m9dsv14', 'no_lang_code', 1, 'https://ror.org/02m9dsv14 Euler Technology (China) åŒ—äŗ¬ä¼˜ä¹å¤ē”Ÿē§‘ęŠ€ęœ‰é™č“£ä»»å…¬åø'),
(92494, 'https://ror.org/03j4x9j18', 'en', 1, 'https://ror.org/03j4x9j18 Institute of Process Engineering 中国科学院过程巄程研究所'),
(92495, 'https://ror.org/050rf2257', 'no_lang_code', 1, 'https://ror.org/050rf2257 Datang Telecom Group (China) å¤§å”ē”µäæ”ē§‘ęŠ€äŗ§äøšé›†å›¢'),
(92496, 'https://ror.org/01gynph42', 'en', 1, 'https://ror.org/01gynph42 State Key Laboratory of Trauma, Burns and Compound Injury Research åˆ›ä¼¤ć€ēƒ§ä¼¤äøŽå¤åˆä¼¤ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92497, 'https://ror.org/03wma5x57', 'en', 1, 'https://ror.org/03wma5x57 Centre Suisse de Toxicologie Humaine Appliquée Centro Svizzero di Tossicologia Umana Applicata  Schweizerisches Zentrum für Angewandte Humantoxikologie Swiss Centre for Applied Human Toxicology'),
(92498, 'https://ror.org/05r0bwg28', 'no', 0, 'https://ror.org/05r0bwg28 Direktoratet for internasjonalisering og kvalitetsutvikling i hĆøyere utdanning Norwegian Agency for International Cooperation and Quality Enhancement in Higher Education'),
(92499, 'https://ror.org/01jz8ma51', 'en', 1, 'https://ror.org/01jz8ma51 State Key Laboratory of Basin Water Cycle Simulation and Regulation ęµåŸŸę°“å¾ŖēŽÆęØ”ę‹ŸäøŽč°ƒęŽ§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92500, 'https://ror.org/05859w570', 'ca', 1, 'https://ror.org/05859w570 Escola Politècnica Superior d''Alcoi Escuela Politécnica Superior de Alcoy'),
(92501, 'https://ror.org/02w3nfa37', 'en', 1, 'https://ror.org/02w3nfa37 Idaho Water Science Center'),
(92502, 'https://ror.org/01jjraa45', 'en', 1, 'https://ror.org/01jjraa45 State Key Laboratory of Crystal Materials ę™¶ä½“ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92503, 'https://ror.org/04vhvsj31', 'en', 1, 'https://ror.org/04vhvsj31 Gallatin Valley YMCA, Inc.'),
(92504, 'https://ror.org/01gf4rc63', 'es', 1, 'https://ror.org/01gf4rc63 Fundación Prodintec Prodintec Foundation'),
(92505, 'https://ror.org/00a2zqy78', 'fr', 1, 'https://ror.org/00a2zqy78 Laboratoire des technologies spatiales, systèmes embarqués, navigation et avionique Laboratory of Space Technologies, Embedded Systems, Navigation and Avionic'),
(92506, 'https://ror.org/023as1815', 'en', 1, 'https://ror.org/023as1815 State Key Laboratory of Traction Power ē‰µå¼•åŠØåŠ›å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92507, 'https://ror.org/048xwzs68', 'en', 1, 'https://ror.org/048xwzs68 State Key Laboratory of Digital Home Appliances ę•°å­—åŒ–å®¶ē”µå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92508, 'https://ror.org/03jf3w726', 'en', 1, 'https://ror.org/03jf3w726 Office of Legacy Management'),
(92509, 'https://ror.org/00gm8tg57', 'en', 1, 'https://ror.org/00gm8tg57 Ministry of Steel'),
(92510, 'https://ror.org/048y1rc66', 'en', 1, 'https://ror.org/048y1rc66 Institute of Chemistry äø­å›½ē§‘å­¦é™¢åŒ–å­¦ē ”ē©¶ę‰€'),
(92511, 'https://ror.org/051sm7d31', 'es', 1, 'https://ror.org/051sm7d31 Universidad de la Romana'),
(92512, 'https://ror.org/05yfx9j20', 'eu', 1, 'https://ror.org/05yfx9j20 Ekonomiaren Garapen, Jasangarritasun eta Ingurumen Saila'),
(92513, 'https://ror.org/05s5qx907', 'en', 1, 'https://ror.org/05s5qx907 State Key Laboratory of Rice Biology ę°“ēØ»ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92514, 'https://ror.org/00wq3fc38', 'ca', 1, 'https://ror.org/00wq3fc38 Institut BotƠnic de Barcelona Instituto BotƔnico de Barcelona'),
(92515, 'https://ror.org/03zfa9g67', 'en', 1, 'https://ror.org/03zfa9g67 State Key Laboratory of Animal Nutrition åŠØē‰©č„å…»å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92516, 'https://ror.org/043vr8e29', 'es', 1, 'https://ror.org/043vr8e29 Institute of Cancer Molecular and Cellular Biology of Salamanca Instituto de Biologƭa Molecular y Celular del CƔncer de Salamanca'),
(92517, 'https://ror.org/03p80e845', 'es', 1, 'https://ror.org/03p80e845 Instituto de Instrumentación para Imagen Molecular Instrumentation Institute For Molecular Image'),
(92518, 'https://ror.org/04q78at80', 'en', 1, 'https://ror.org/04q78at80 State Key Laboratory of Coal Mine Safety Technology ē…¤ēŸæå®‰å…ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92519, 'https://ror.org/00qy6se24', 'es', 1, 'https://ror.org/00qy6se24 Asociación de Amigos de la Universidad de Navarra'),
(92520, 'https://ror.org/01x7se580', 'ca', 1, 'https://ror.org/01x7se580 Agencia de Calidad y Evaluación sanitarias de Cataluña Agència de Qualitat i Avaluació Sanitàries de Catalunya Catalan Agency for Health Information, Assessment and Quality'),
(92521, 'https://ror.org/01as92r37', 'en', 1, 'https://ror.org/01as92r37 State Key Laboratory of Natural Medicine å¤©ē„¶čÆē‰©ę“»ę€§ē»„åˆ†äøŽčÆę•ˆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92522, 'https://ror.org/05skxkv18', 'en', 1, 'https://ror.org/05skxkv18 Institute of Zoology äø­å›½ē§‘å­¦é™¢åŠØē‰©ē ”ē©¶ę‰€'),
(92523, 'https://ror.org/05mj4yh71', 'es', 1, 'https://ror.org/05mj4yh71 Council of Government of the Principality of Asturias Gobierno del Principado de Asturias'),
(92524, 'https://ror.org/058t7w767', 'en', 1, 'https://ror.org/058t7w767 State Key Laboratory of Drug Research ę–°čÆē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92525, 'https://ror.org/039ssy097', 'es', 1, 'https://ror.org/039ssy097 Instituto Pirenaico de EcologĆ­a'),
(92526, 'https://ror.org/01nywkf82', 'fr', 1, 'https://ror.org/01nywkf82 CƩgep de Sherbrooke'),
(92527, 'https://ror.org/04tbscc54', 'en', 1, 'https://ror.org/04tbscc54 State Key Laboratory of Rail Traffic Engineering and Information Technology č½Øé“äŗ¤é€šå·„ēØ‹äæ”ęÆåŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92528, 'https://ror.org/00jc20583', 'en', 1, 'https://ror.org/00jc20583 Universidad de Colorado University of Colorado System UniversitƩ du Colorado'),
(92529, 'https://ror.org/03fqwqm07', 'pl', 1, 'https://ror.org/03fqwqm07 Wroclawskie Centrum Sieciowo-Superkomputerowe Wrocław Networking and Supercomputing Center'),
(92530, 'https://ror.org/0008xqs48', 'es', 1, 'https://ror.org/0008xqs48 Bellvitge Biomedical Research Institute Institut d''Investigació Biomédica de Bellvitge'),
(92531, 'https://ror.org/000190731', 'en', 1, 'https://ror.org/000190731 State Key Laboratory of Wireless Communication Access Technology ę— ēŗæé€šäæ”ęŽ„å…„ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92532, 'https://ror.org/03w41by72', 'en', 1, 'https://ror.org/03w41by72 State Key Laboratory of Resources and Environmental Information System čµ„ęŗäøŽēŽÆå¢ƒäæ”ęÆē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92533, 'https://ror.org/02fe4h741', 'no_lang_code', 1, 'https://ror.org/02fe4h741 Cilag (Switzerland)'),
(92534, 'https://ror.org/02rdd8804', 'en', 1, 'https://ror.org/02rdd8804 National Centre of Competence in Research Robotics'),
(92535, 'https://ror.org/04dxd1f80', 'es', 1, 'https://ror.org/04dxd1f80 Ministerio de Asuntos Exteriores, Unión Europea y Cooperación Ministry of Foreign Affairs, European Union and Cooperation'),
(92536, 'https://ror.org/04pjgde17', 'no_lang_code', 1, 'https://ror.org/04pjgde17 Idener (Spain) Optimización Orientada a la Sostenibilidad'),
(92537, 'https://ror.org/04ncnzm65', 'en', 1, 'https://ror.org/04ncnzm65 Mathematical Research Data Initiative Mathematische Forschungsdateninitiative'),
(92538, 'https://ror.org/00y518s84', 'es', 1, 'https://ror.org/00y518s84 Instituto de Fermentaciones Industriales'),
(92539, 'https://ror.org/00msgsf28', 'ca', 1, 'https://ror.org/00msgsf28 Fundació Bosch i Gimpera'),
(92540, 'https://ror.org/0192yj155', 'en', 1, 'https://ror.org/0192yj155 South China Sea Institute Of Oceanology äø­å›½ē§‘å­¦é™¢å—ęµ·ęµ·ę“‹ē ”ē©¶ę‰€'),
(92541, 'https://ror.org/02663r349', 'en', 1, 'https://ror.org/02663r349 TRANSITIONS'),
(92542, 'https://ror.org/02pfge856', 'ca', 1, 'https://ror.org/02pfge856 Institut d''Anàlisi Econòmica Institute for Economic Analysis Instituto de AnÔlisis Económico'),
(92543, 'https://ror.org/04qayn356', 'es', 1, 'https://ror.org/04qayn356 Instituto de Ciencias Marinas de AndalucĆ­a'),
(92544, 'https://ror.org/00rncr820', 'en', 1, 'https://ror.org/00rncr820 International Institute for Nanotechnology'),
(92545, 'https://ror.org/02cp22d42', 'es', 1, 'https://ror.org/02cp22d42 Biodiversity Research Institute Instituto Mixto de Investigación en Biodiversidad'),
(92546, 'https://ror.org/02f01mz90', 'es', 1, 'https://ror.org/02f01mz90 Hospital Universitario Virgen de las Nieves'),
(92547, 'https://ror.org/029bcfw81', 'en', 1, 'https://ror.org/029bcfw81 Gillson Longenbaugh Foundation'),
(92548, 'https://ror.org/04em2sh18', 'en', 1, 'https://ror.org/04em2sh18 State Key Laboratory of Marine Environmental Science čæ‘ęµ·ęµ·ę“‹ēŽÆå¢ƒē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92549, 'https://ror.org/025580q89', 'en', 1, 'https://ror.org/025580q89 Laboratorio de Investigación en Tecnologías de la Combustión Laboratory of Research in Fluid Dynamics and Combustion Technologies'),
(92550, 'https://ror.org/04hn3zk50', 'no_lang_code', 1, 'https://ror.org/04hn3zk50 Ancodarq (Spain)'),
(92551, 'https://ror.org/019pzjm43', 'ca', 1, 'https://ror.org/019pzjm43 Blanes Center for Advanced Studies Centre d''Estudis AvanƧats de Blanes Centro de Estudios Avanzados de Blane'),
(92552, 'https://ror.org/04jhyrh97', 'de', 1, 'https://ror.org/04jhyrh97 Foundation on German-American Academic Relations Stiftung Deutsch-Amerikanische Wissenschaftsbeziehungen'),
(92553, 'https://ror.org/00nxtdr22', 'en', 1, 'https://ror.org/00nxtdr22 The Royal Children''s Hospital Foundation'),
(92554, 'https://ror.org/02p9waa09', 'en', 1, 'https://ror.org/02p9waa09 State Key Laboratory of Neuroscience ē„žē»ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92555, 'https://ror.org/01xd8r467', 'es', 1, 'https://ror.org/01xd8r467 Elcano Royal Institute for International and Strategic Studies Real Instituto Elcano de Estudios Internacionales y EstratƩgicos'),
(92556, 'https://ror.org/01kz6he51', 'id', 1, 'https://ror.org/01kz6he51 Politeknik Siber Cerdika Internasional'),
(92557, 'https://ror.org/0140hpe71', 'es', 1, 'https://ror.org/0140hpe71 Institute for Game and Wildlife Research Instituto de Investigación en Recursos Cinegéticos'),
(92558, 'https://ror.org/00s577731', 'en', 1, 'https://ror.org/00s577731 State Key Laboratory of Kidney Diseases č‚¾č„ē–¾ē—…å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92559, 'https://ror.org/03yvpw311', 'en', 1, 'https://ror.org/03yvpw311 State Key Laboratory of High Performance Ceramics and Superfine Microstructure é«˜ę€§čƒ½é™¶ē“·å’Œč¶…å¾®ē»“ęž„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92560, 'https://ror.org/05343aa75', 'es', 1, 'https://ror.org/05343aa75 Centro de Investigaciones CientĆ­ficas Isla de la Cartuja'),
(92561, 'https://ror.org/01mamgv83', 'en', 1, 'https://ror.org/01mamgv83 State Key Laboratory of ASIC and System äø“ē”Øé›†ęˆē”µč·ÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92562, 'https://ror.org/01jksdf22', 'en', 1, 'https://ror.org/01jksdf22 Department of Agriculture, Environment and Rural Affairs of Northern Ireland'),
(92563, 'https://ror.org/00nqpc320', 'en', 1, 'https://ror.org/00nqpc320 Cooperative Research Units'),
(92564, 'https://ror.org/05bpjsf25', 'en', 1, 'https://ror.org/05bpjsf25 Netherlands Earth System Science Centre'),
(92565, 'https://ror.org/031382m70', 'en', 1, 'https://ror.org/031382m70 Royal Hobart Hospital'),
(92566, 'https://ror.org/0465x5x63', 'en', 1, 'https://ror.org/0465x5x63 National Comprehensive Cancer Network'),
(92567, 'https://ror.org/02rytd882', 'da', 1, 'https://ror.org/02rytd882 Aage Bang Fund Aage Bangs Fond'),
(92568, 'https://ror.org/03j42y490', 'no_lang_code', 1, 'https://ror.org/03j42y490 Biocat'),
(92569, 'https://ror.org/052qsxn63', 'en', 1, 'https://ror.org/052qsxn63 State Key Laboratory of Automatic Target Recognition č‡ŖåŠØē›®ę ‡čÆ†åˆ«å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92570, 'https://ror.org/021s6g098', 'en', 1, 'https://ror.org/021s6g098 State Key Laboratory of Digital Publishing Technology ę•°å­—å‡ŗē‰ˆęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92571, 'https://ror.org/04bhsv505', 'en', 1, 'https://ror.org/04bhsv505 State Key Laboratory of Infectious Disease Prevention and Control ä¼ ęŸ“ē—…é¢„é˜²ęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92572, 'https://ror.org/02nxes898', 'es', 1, 'https://ror.org/02nxes898 Centro de Investigación Forestal Instituto de Ciencias Forestales'),
(92573, 'https://ror.org/003mfbe21', 'en', 1, 'https://ror.org/003mfbe21 State Key Laboratory of Ophthalmology ēœ¼ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92574, 'https://ror.org/03ftrk873', 'en', 1, 'https://ror.org/03ftrk873 Espainiako Estatistika Institutua Institut Nacional d''EstadĆ­stica d''Espanya Instituto Nacional de EstadĆ­stica National Institute of Statistics'),
(92575, 'https://ror.org/04v0hex10', 'en', 1, 'https://ror.org/04v0hex10 Bengt Ihres Foundation Bengt Ihres fond'),
(92576, 'https://ror.org/04qmvrz31', 'no_lang_code', 1, 'https://ror.org/04qmvrz31 Karpagam Hospital'),
(92577, 'https://ror.org/01ky5n302', 'en', 1, 'https://ror.org/01ky5n302 State Key Laboratory of Bridge Engineering Structural Dynamics ę”„ę¢å·„ēØ‹ē»“ęž„åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92578, 'https://ror.org/02x6r5976', 'fi', 1, 'https://ror.org/02x6r5976 Hengityssairauksien TutkimussƤƤtiƶ'),
(92579, 'https://ror.org/004swtw80', 'es', 1, 'https://ror.org/004swtw80 Institute of Catalysis and Petrochemistry Instituto de CatƔlisis y Petroleoquƭmica'),
(92580, 'https://ror.org/05ncvzk72', 'es', 1, 'https://ror.org/05ncvzk72 Institute of Parasitology and Biomedicine López-Neyra Instituto de Parasitología y Biomedicina "López - Neyra"'),
(92581, 'https://ror.org/02hqczw19', 'en', 1, 'https://ror.org/02hqczw19 State Key Laboratory of Bioreactor Engineering ē”Ÿē‰©ååŗ”å™Øå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92582, 'https://ror.org/01nx7yy98', 'ca', 0, 'https://ror.org/01nx7yy98 Departament d''Universitats, Recerca i Societat de la Informació Research and Information Society of the Generalitat of Catalonia'),
(92583, 'https://ror.org/0182gym65', 'es', 1, 'https://ror.org/0182gym65 Centro de Estudios PolĆ­ticos y Constitucionales'),
(92584, 'https://ror.org/02yp53r73', 'es', 1, 'https://ror.org/02yp53r73 Agencia de Innovación y Desarrollo de Andalucía IDEA Agency of Innovation and Development of Andalusia IDEA'),
(92585, 'https://ror.org/05wq99a66', 'en', 1, 'https://ror.org/05wq99a66 State Key Laboratory of Systematic and Evolutionary Botany ē³»ē»ŸäøŽčæ›åŒ–ę¤ē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92586, 'https://ror.org/01zfc7m08', 'en', 1, 'https://ror.org/01zfc7m08 State Key Laboratory of Mycology ēœŸčŒå­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92587, 'https://ror.org/003hwx626', 'en', 1, 'https://ror.org/003hwx626 State Key Laboratory of Agricultural Microbiology å†œäøšå¾®ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92588, 'https://ror.org/00djwmt25', 'en', 1, 'https://ror.org/00djwmt25 University Grants Committee å¤§å­øę•™č‚²č³‡åŠ©å§”å“”ęœƒ'),
(92589, 'https://ror.org/04dn2ax39', 'en', 1, 'https://ror.org/04dn2ax39 State Key Laboratory of Oncology in South China åŽå—č‚æē˜¤å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92590, 'https://ror.org/05v50z525', 'fr', 1, 'https://ror.org/05v50z525 Collège Gérald-Godin'),
(92591, 'https://ror.org/04w4xsz15', 'no_lang_code', 1, 'https://ror.org/04w4xsz15 Janssen Scientific Affairs (United States)'),
(92592, 'https://ror.org/04wx4nj18', 'es', 1, 'https://ror.org/04wx4nj18 Centro Singular de Investigación en Química Biológica y Materiales Moleculares'),
(92593, 'https://ror.org/03q9eb647', 'no_lang_code', 1, 'https://ror.org/03q9eb647 HidroQuimia (Spain) Hidroquimia tractaments i quimica industrial, S.L.'),
(92594, 'https://ror.org/019bz5n15', 'en', 1, 'https://ror.org/019bz5n15 Radiation Oncology Institute'),
(92595, 'https://ror.org/01603fg59', 'es', 1, 'https://ror.org/01603fg59 Institute of Marine Research Instituto de Investigacións Mariñas'),
(92596, 'https://ror.org/03fxf4247', 'en', 1, 'https://ror.org/03fxf4247 State Key Laboratory of Nonferrous Metals and Processes ęœ‰č‰²é‡‘å±žęę–™åˆ¶å¤‡åŠ å·„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92597, 'https://ror.org/01djqcd96', 'es', 1, 'https://ror.org/01djqcd96 Ayuntamiento de Santander'),
(92598, 'https://ror.org/04vq43039', 'en', 1, 'https://ror.org/04vq43039 Veski'),
(92599, 'https://ror.org/02hpa6m94', 'en', 1, 'https://ror.org/02hpa6m94 Centro de FĆ­sica de Materiales Material Physics Center Materialen Fisika Zentroa'),
(92600, 'https://ror.org/00ag0rb94', 'en', 1, 'https://ror.org/00ag0rb94 Children''s Hospital Research Institute of Manitoba'),
(92601, 'https://ror.org/044knj408', 'es', 1, 'https://ror.org/044knj408 Complexo Hospitalario Universitario A CoruƱa'),
(92602, 'https://ror.org/024dcqa50', 'en', 1, 'https://ror.org/024dcqa50 State Key Laboratory of Solidification Processing å‡å›ŗęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92603, 'https://ror.org/04ndw0k24', 'en', 1, 'https://ror.org/04ndw0k24 New Jersey Department of State'),
(92604, 'https://ror.org/01zzkcm34', 'en', 1, 'https://ror.org/01zzkcm34 Irkutsk National Research Technical University Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(92605, 'https://ror.org/039mtkw55', 'en', 1, 'https://ror.org/039mtkw55 Wrexham Maelor Hospital'),
(92606, 'https://ror.org/057g20z61', 'en', 1, 'https://ror.org/057g20z61 Science and Technology Facilities Council'),
(92607, 'https://ror.org/011rw2y56', 'pt', 1, 'https://ror.org/011rw2y56 Fundação de Apoio ao Ensino, Pesquisa e Assistência do Hospital das Clínicas da Faculdade de Medicina de Ribeirão Preto da Universidade de São Paulo'),
(92608, 'https://ror.org/00r0qcs48', 'no_lang_code', 1, 'https://ror.org/00r0qcs48 Palobiofarma (Spain)');
INSERT INTO `rors` VALUES
(92609, 'https://ror.org/012cr4033', 'en', 1, 'https://ror.org/012cr4033 State Key Laboratory of Information Security äæ”ęÆå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92610, 'https://ror.org/038792a28', 'es', 1, 'https://ror.org/038792a28 Institute of Chemical Technology Instituto de TecnologĆ­a QuĆ­mica'),
(92611, 'https://ror.org/02t1eqa40', 'en', 1, 'https://ror.org/02t1eqa40 State Key Laboratory of Safety and Health of Long Bridges in Service åœØå½¹é•æå¤§ę”„ę¢å®‰å…ØäøŽå„åŗ·å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92612, 'https://ror.org/056wcaa53', 'en', 1, 'https://ror.org/056wcaa53 State Key Laboratory of Clean and Efficient Coal-Fired Power Generation and Pollution Control ęø…ę“é«˜ę•ˆē‡ƒē…¤å‘ē”µäøŽę±”ęŸ“ęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92613, 'https://ror.org/01f29ny64', 'en', 1, 'https://ror.org/01f29ny64 State Key Laboratory for Advanced Metals and Materials ę–°é‡‘å±žęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92614, 'https://ror.org/00e0yz255', 'no_lang_code', 1, 'https://ror.org/00e0yz255 Certis Europe (The Netherlands)'),
(92615, 'https://ror.org/04xqp3a64', 'en', 1, 'https://ror.org/04xqp3a64 State Key Laboratory of New Technology of Computer Software č®”ē®—ęœŗč½Æä»¶ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92616, 'https://ror.org/04xjtqb36', 'en', 1, 'https://ror.org/04xjtqb36 State Key Laboratory of High Performance Complex Manufacturing é«˜ę€§čƒ½å¤ę‚åˆ¶é€ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92617, 'https://ror.org/05h1bnb22', 'en', 1, 'https://ror.org/05h1bnb22 North Dakota State University Universidad Estatal de Dakota del Norte UniversitĆ© d''Ɖtat du dakota du nord'),
(92618, 'https://ror.org/02gydn715', 'fr', 1, 'https://ror.org/02gydn715 Communications and Microelectronic Integration Laboratory Laboratoire de communications et d''intƩgration de la microƩlectronique'),
(92619, 'https://ror.org/00kvk1853', 'de', 1, 'https://ror.org/00kvk1853 Verband der Chemischen Industrie'),
(92620, 'https://ror.org/02gxm3r19', 'en', 1, 'https://ror.org/02gxm3r19 State Key Laboratory of Pulp and Paper Engineering åˆ¶ęµ†é€ ēŗøå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92621, 'https://ror.org/050wwwp73', 'no_lang_code', 1, 'https://ror.org/050wwwp73 Yunnan Metallurgical Group (China) äŗ‘å—å†¶é‡‘é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(92622, 'https://ror.org/04hnwym70', 'no_lang_code', 1, 'https://ror.org/04hnwym70 AIA (Spain)'),
(92623, 'https://ror.org/04mfzb702', 'en', 1, 'https://ror.org/04mfzb702 Centre for Plant Biotechnology and Genomics Centro de Biotecnología y Genómica de Plantas'),
(92624, 'https://ror.org/02n09v629', 'es', 1, 'https://ror.org/02n09v629 Confederación Española de Personas con Discapacidad Física y OrgÔnica Spanish Confederation of People with Physical and Organic Disabilities'),
(92625, 'https://ror.org/01httwk65', 'en', 1, 'https://ror.org/01httwk65 Cerebra'),
(92626, 'https://ror.org/048nswj43', 'en', 1, 'https://ror.org/048nswj43 State Key Laboratory for Modification of Chemical Fibers and Polymer Materials ēŗ¤ē»“ęę–™ę”¹ę€§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92627, 'https://ror.org/005dknr06', 'es', 1, 'https://ror.org/005dknr06 Servicio Navarro de Salud'),
(92628, 'https://ror.org/04xxhjw92', 'no_lang_code', 1, 'https://ror.org/04xxhjw92 SM GEODIM (Spain)'),
(92629, 'https://ror.org/0481xaz04', 'en', 1, 'https://ror.org/0481xaz04 Delta University for Science and Technology Ų¬Ų§Ł…Ų¹Ų© الدلتا Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(92630, 'https://ror.org/00pewg788', 'en', 1, 'https://ror.org/00pewg788 Belügyminisztérium Ministry of Interior'),
(92631, 'https://ror.org/05ect0289', 'ca', 1, 'https://ror.org/05ect0289 Institut de CiĆØncies del Mar Instituto de Ciencias del Mar'),
(92632, 'https://ror.org/020bzb737', 'en', 1, 'https://ror.org/020bzb737 State Key Laboratory of Subtropical Building Science äŗšēƒ­åø¦å»ŗē­‘ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92633, 'https://ror.org/05wy0y692', 'es', 1, 'https://ror.org/05wy0y692 Centro OceanogrƔfico de MƔlaga Oceanographic Center of MƔlaga'),
(92634, 'https://ror.org/02qqy8j09', 'es', 1, 'https://ror.org/02qqy8j09 Instituto de Ciencia de Materiales de Madrid Materials Science Institute of Madrid'),
(92635, 'https://ror.org/00tp8bz22', 'en', 1, 'https://ror.org/00tp8bz22 State Key Laboratory of Nuclear Physics and Technology ę øē‰©ē†äøŽę øęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92636, 'https://ror.org/00p2ftz29', 'en', 1, 'https://ror.org/00p2ftz29 Atlas of Variant Effects Alliance'),
(92637, 'https://ror.org/01jsenc11', 'es', 1, 'https://ror.org/01jsenc11 Institute of History Instituto de Historia'),
(92638, 'https://ror.org/018bh0m68', 'fi', 1, 'https://ror.org/018bh0m68 HiLIFE - Helsinki Institute of Life Science HiLIFE – ElƤmƤntieteiden Instituutti'),
(92639, 'https://ror.org/052eegr76', 'en', 1, 'https://ror.org/052eegr76 National Health and Family Planning Commission äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(92640, 'https://ror.org/03s3xs393', 'fr', 1, 'https://ror.org/03s3xs393 Imaging and Orthopaedics Research Laboratory Laboratoire d''innovation ouverte en technologies de la santƩ'),
(92641, 'https://ror.org/03qfm6382', 'en', 1, 'https://ror.org/03qfm6382 China Railway First Survey and Design Institute Group Co. Ltd.'),
(92642, 'https://ror.org/026xefd52', 'en', 1, 'https://ror.org/026xefd52 Jiangxi Transportation Research Institute ę±Ÿč„æēœäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(92643, 'https://ror.org/0215y9j16', 'da', 1, 'https://ror.org/0215y9j16 Dagmar Marshall Fund Dagmar Marshalls Fond'),
(92644, 'https://ror.org/0372q6t83', 'az', 1, 'https://ror.org/0372q6t83 Elmin Inkişafı Fondu Science Development Foundation'),
(92645, 'https://ror.org/000vz5322', 'es', 1, 'https://ror.org/000vz5322 SUR Escuela de Artes y Profesiones ArtĆ­sticas'),
(92646, 'https://ror.org/02xbz6x26', 'en', 1, 'https://ror.org/02xbz6x26 State Key Laboratory of Space Weather ē©ŗé—“å¤©ę°”å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92647, 'https://ror.org/04wa9t375', 'de', 1, 'https://ror.org/04wa9t375 Chemical Industry Fund Fonds der Chemischen Industrie'),
(92648, 'https://ror.org/03deb8c89', 'en', 1, 'https://ror.org/03deb8c89 State Key Laboratory of Silicate Materials for Architecture ē”…é…øē›å»ŗē­‘ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92649, 'https://ror.org/03vht8z34', 'es', 1, 'https://ror.org/03vht8z34 Ebro Observatory Observatori de l''Ebre Observatorio del Ebro'),
(92650, 'https://ror.org/02qeh6420', 'es', 1, 'https://ror.org/02qeh6420 Institute of Languages ​​and Cultures of the Mediterranean and the Near East Instituto de Lenguas y Culturas del MediterrĆ”neo y Oriente Próximo'),
(92651, 'https://ror.org/0213ypr97', 'fr', 1, 'https://ror.org/0213ypr97 Arbres et RƩponses aux Contraintes Hydriques et Environnementales'),
(92652, 'https://ror.org/05njhbf68', 'en', 1, 'https://ror.org/05njhbf68 State Key Laboratory of Advanced Technology For Materials Synthesis and Processing ęę–™å¤åˆę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92653, 'https://ror.org/03wmj4s33', 'en', 1, 'https://ror.org/03wmj4s33 College of Management Academic Studies'),
(92654, 'https://ror.org/02zhe7k92', 'en', 1, 'https://ror.org/02zhe7k92 Pershing Square Sohn Cancer Research Alliance'),
(92655, 'https://ror.org/00cvv0r95', 'en', 1, 'https://ror.org/00cvv0r95 State Key Laboratory of Oil and Gas Resources and Exploration ę²¹ę°”čµ„ęŗäøŽęŽ¢ęµ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92656, 'https://ror.org/03x08qn04', 'en', 1, 'https://ror.org/03x08qn04 State Key Laboratory of Microbial Technology å¾®ē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92657, 'https://ror.org/03g897070', 'en', 1, 'https://ror.org/03g897070 Shanghai Institute of Optics and Fine Mechanics äø­å›½ē§‘å­¦é™¢äøŠęµ·å…‰å­¦ē²¾åÆ†ęœŗę¢°ē ”ē©¶ę‰€'),
(92658, 'https://ror.org/01vyq8e97', 'no_lang_code', 1, 'https://ror.org/01vyq8e97 CompaƱƭa EspaƱola de Sistemas AeronƔuticos (Spain)'),
(92659, 'https://ror.org/01z7eb286', 'en', 1, 'https://ror.org/01z7eb286 Dirección General de TrÔfico Directorate General of Traffic'),
(92660, 'https://ror.org/03bypar46', 'eu', 1, 'https://ror.org/03bypar46 Bizkaia Talent'),
(92661, 'https://ror.org/050qa2043', 'en', 1, 'https://ror.org/050qa2043 International Society for Neurochemistry'),
(92662, 'https://ror.org/02jcrnk02', 'es', 1, 'https://ror.org/02jcrnk02 Miranza'),
(92663, 'https://ror.org/03eeee209', 'fr', 1, 'https://ror.org/03eeee209 Imaging, Vision and Artificial Intelligence Laboratory Laboratoire d''imagerie, de vision et d''intelligence artificielle'),
(92664, 'https://ror.org/03mr7c415', 'en', 1, 'https://ror.org/03mr7c415 State Key Laboratory of Macromolecular Engineering čšåˆē‰©åˆ†å­å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92665, 'https://ror.org/03cavsb35', 'id', 1, 'https://ror.org/03cavsb35 Raden Fatah State Islamic University Palembang Universitas Islam Negeri Raden Fatah Palembang'),
(92666, 'https://ror.org/05wh02447', 'es', 1, 'https://ror.org/05wh02447 Ministerio de Industria, Comercio y Turismo Ministerio de Industria, EnergĆ­a y Turismo Ministry of Industry, Trade and Tourism'),
(92667, 'https://ror.org/03ycqrz18', 'es', 1, 'https://ror.org/03ycqrz18 Centro Nacional de Microelectrónica National Microelectronics Center'),
(92668, 'https://ror.org/002cfhw56', 'en', 1, 'https://ror.org/002cfhw56 Institute of Robotics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по роботика'),
(92669, 'https://ror.org/043ea4m21', 'en', 1, 'https://ror.org/043ea4m21 State Key Laboratory of Pharmaceutical Biotechnology åŒ»čÆē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92670, 'https://ror.org/00p99t114', 'no_lang_code', 1, 'https://ror.org/00p99t114 Abbott Nutrition (United States)'),
(92671, 'https://ror.org/032egq013', 'ca', 1, 'https://ror.org/032egq013 Fundació Jesuïtes Educació Fundación de Educación Jesuíta Jesuit Education Foundation'),
(92672, 'https://ror.org/02zjp8848', 'en', 1, 'https://ror.org/02zjp8848 Lesya Ukrainka Volyn National University Š’Š¾Š»ŠøŠ½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Лесі Українки Волынский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Леси Украинки'),
(92673, 'https://ror.org/01tkb7c15', 'en', 1, 'https://ror.org/01tkb7c15 Second Institute of Oceanography å›½å®¶ęµ·ę“‹å±€ē¬¬äŗŒęµ·ę“‹ē ”ē©¶ę‰€åˆ›å»ŗäŗŽ'),
(92674, 'https://ror.org/04advdf21', 'es', 1, 'https://ror.org/04advdf21 Centro de Investigaciones Biológicas Margarita Salas Margarita Salas Center for Biological Research'),
(92675, 'https://ror.org/02xs6yw09', 'da', 1, 'https://ror.org/02xs6yw09 Torben and Alice Frimodts Foundation Torben og Alice Frimodts Fond'),
(92676, 'https://ror.org/016padj08', 'no_lang_code', 1, 'https://ror.org/016padj08 Sumitomo Mitsui Trust Holdings (Japan) äø‰äŗ•ä½å‹ćƒˆćƒ©ć‚¹ćƒˆćƒ»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(92677, 'https://ror.org/05a3srq89', 'fr', 1, 'https://ror.org/05a3srq89 Institut de Valorisation des DonnƩes Institute for Data Valorisation'),
(92678, 'https://ror.org/038bmak92', 'en', 1, 'https://ror.org/038bmak92 Namur Research Institute for Life Sciences'),
(92679, 'https://ror.org/03fz4fp45', 'es', 1, 'https://ror.org/03fz4fp45 Instituto de Ciencias del Patrimonio'),
(92680, 'https://ror.org/0111f7045', 'en', 1, 'https://ror.org/0111f7045 Institute of Plant Protection äø­å›½å†œäøšē§‘å­¦é™¢ę¤ē‰©äæęŠ¤ē ”ē©¶ę‰€'),
(92681, 'https://ror.org/029ewy563', 'ca', 1, 'https://ror.org/029ewy563 Asociación de ParÔlisis Cerebral Associació de la Paràlisi Cerebral'),
(92682, 'https://ror.org/001cwea56', 'ca', 1, 'https://ror.org/001cwea56 Centre Tecnologic de Telecomunicacions de Catalunya'),
(92683, 'https://ror.org/00dy6h529', 'de', 1, 'https://ror.org/00dy6h529 Paracelsus-Kliniken'),
(92684, 'https://ror.org/00mj5vx34', 'ms', 1, 'https://ror.org/00mj5vx34 UTP Foundation Yayasan UTP'),
(92685, 'https://ror.org/01x48pk19', 'es', 1, 'https://ror.org/01x48pk19 Consellería de Economía, Industria e Innovación'),
(92686, 'https://ror.org/05b0hce56', 'en', 1, 'https://ror.org/05b0hce56 Children’s Hospital Foundation of Manitoba'),
(92687, 'https://ror.org/04tce9s05', 'en', 1, 'https://ror.org/04tce9s05 Pershing Square Foundation'),
(92688, 'https://ror.org/050eq1942', 'es', 1, 'https://ror.org/050eq1942 Hospital Universitario Ramón y Cajal'),
(92689, 'https://ror.org/01a8ev928', 'en', 1, 'https://ror.org/01a8ev928 Xinjiang Institute of Ecology and Geography äø­å›½ē§‘å­¦é™¢ę–°ē–†ē”Ÿę€äøŽåœ°ē†ē ”ē©¶ę‰€'),
(92690, 'https://ror.org/02e42hc22', 'en', 1, 'https://ror.org/02e42hc22 China Iron and Steel Research Institute Group 钢铁研究总院'),
(92691, 'https://ror.org/00zg6q231', 'ca', 1, 'https://ror.org/00zg6q231 Ajuntament de Barcelona Ayuntamiento de Barcelona Barcelona City Council'),
(92692, 'https://ror.org/001synm23', 'ca', 1, 'https://ror.org/001synm23 IrsiCaixa'),
(92693, 'https://ror.org/04f9thq51', 'fr', 1, 'https://ror.org/04f9thq51 Laboratoire de MƩcanique Gabriel LamƩ'),
(92694, 'https://ror.org/03qd2e967', 'en', 1, 'https://ror.org/03qd2e967 Institute for Integrated Transitions Instituto para las Transiciones Integrales'),
(92695, 'https://ror.org/0444j5556', 'en', 1, 'https://ror.org/0444j5556 Xi''an Institute of Optics and Precision Mechanics äø­å›½ē§‘å­¦é™¢č„æå®‰å…‰å­¦ē²¾åÆ†ęœŗę¢°ē ”ē©¶ę‰€'),
(92696, 'https://ror.org/05g3qe364', 'no_lang_code', 1, 'https://ror.org/05g3qe364 Saind (Spain)'),
(92697, 'https://ror.org/04gq3m222', 'fr', 1, 'https://ror.org/04gq3m222 Hydrology Climate & Climate Change Laboratory Laboratoire d’hydrologie, climat et changements climatiques'),
(92698, 'https://ror.org/031z5jh56', 'en', 1, 'https://ror.org/031z5jh56 State Key Laboratory of Metal Matrix Composites é‡‘å±žåŸŗå¤åˆęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92699, 'https://ror.org/029c4ct76', 'fr', 1, 'https://ror.org/029c4ct76 Canadian Consortium on Neurodegeneration in Aging Consortium canadien en neurodƩgƩnƩrescence associƩe au vieillissement'),
(92700, 'https://ror.org/03fyvh407', 'en', 1, 'https://ror.org/03fyvh407 Dokkyo Medical University Saitama Medical Center ēØå”åŒ»ē§‘å¤§å­¦åŸ¼ēŽ‰åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(92701, 'https://ror.org/04csf5r20', 'en', 1, 'https://ror.org/04csf5r20 Office of Environment, Health, Safety and Security'),
(92702, 'https://ror.org/033911096', 'no_lang_code', 1, 'https://ror.org/033911096 Eli Lilly (Spain)'),
(92703, 'https://ror.org/00heqy247', 'en', 1, 'https://ror.org/00heqy247 New Jersey Water Science Center'),
(92704, 'https://ror.org/024emf479', 'sv', 1, 'https://ror.org/024emf479 Region Ɩstergƶtland Ɩstergƶtland County Council'),
(92705, 'https://ror.org/032ghem84', 'ca', 1, 'https://ror.org/032ghem84 Real Academia de Ciencias y Artes de Barcelona Reial AcadĆØmia de CiĆØncies i Arts de Barcelona Royal Academy of Arts and Sciences of Barcelona'),
(92706, 'https://ror.org/02he4yf91', 'en', 1, 'https://ror.org/02he4yf91 B.P. Eye Foundation'),
(92707, 'https://ror.org/018f7hf93', 'en', 1, 'https://ror.org/018f7hf93 Ministerio de Educación Ministry of Education'),
(92708, 'https://ror.org/03sqxae58', 'en', 1, 'https://ror.org/03sqxae58 Development Finance and Public Policies'),
(92709, 'https://ror.org/02aazqb94', 'en', 1, 'https://ror.org/02aazqb94 State Key Laboratory of Efficient Mining and Clean Utilization of Coal Resources ē…¤ē‚­čµ„ęŗé«˜ę•ˆå¼€é‡‡äøŽę“å‡€åˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92710, 'https://ror.org/03k1he386', 'en', 0, 'https://ror.org/03k1he386 La revue pour les etudiants en technologie et sciences The Journal of Student Science and Technology'),
(92711, 'https://ror.org/058nm8p51', 'en', 1, 'https://ror.org/058nm8p51 State Key Laboratory of Desert and Oasis Ecology č’ę¼ äøŽē»æę“²ē”Ÿę€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92712, 'https://ror.org/03r94n804', 'en', 1, 'https://ror.org/03r94n804 China National Heavy Machinery Research Institute Co., Ltd.'),
(92713, 'https://ror.org/03v94bt80', 'no_lang_code', 1, 'https://ror.org/03v94bt80 GPTech (Spain)'),
(92714, 'https://ror.org/02bxj9z30', 'en', 1, 'https://ror.org/02bxj9z30 State Key Laboratory of Marine Geology ęµ·ę“‹åœ°č“Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92715, 'https://ror.org/01bskzg04', 'en', 1, 'https://ror.org/01bskzg04 State Key Laboratory of Theoretical Chemical Computing ē†č®ŗåŒ–å­¦č®”ē®—å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92716, 'https://ror.org/02etk2p60', 'no_lang_code', 1, 'https://ror.org/02etk2p60 Vimicro (China) äø­ę˜Ÿå¾®ē”µå­ęœ‰é™å…¬åø'),
(92717, 'https://ror.org/02yh6j310', 'en', 1, 'https://ror.org/02yh6j310 Norwegian Board of Technology TeknologirƄdet'),
(92718, 'https://ror.org/01p9kjs66', 'no_lang_code', 1, 'https://ror.org/01p9kjs66 Industrial Galvanizadora (Spain)'),
(92719, 'https://ror.org/02shxwk22', 'en', 1, 'https://ror.org/02shxwk22 Institut za kozmologiju i filozofiju prirode Institute for Cosmology and Philosophy of Nature'),
(92720, 'https://ror.org/03dzwnj91', 'en', 1, 'https://ror.org/03dzwnj91 Society for the Improvement of Psychological Science'),
(92721, 'https://ror.org/02ysayy16', 'ca', 1, 'https://ror.org/02ysayy16 Institut d''Investigacions BiomĆØdiques de Barcelona Instituto de Investigaciones Biomedicas de Barcelona'),
(92722, 'https://ror.org/00pdx2849', 'ca', 1, 'https://ror.org/00pdx2849 Consejeria de Sanidad Conselleria de Sanitat Universal i Salut PĆŗblica'),
(92723, 'https://ror.org/04sd1rz46', 'en', 1, 'https://ror.org/04sd1rz46 Basque Country Mobility And Logistics Cluster Cluster de Movilidad y LogĆ­stica de Euskadi Cluster of Mobility and Logistics, MLC ITS Euskadi Euskadiko Mugikortasun Eta Logistika Klusterra'),
(92724, 'https://ror.org/01n3rg866', 'en', 1, 'https://ror.org/01n3rg866 State Key Laboratory of Genetic Engineering é—ä¼ å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92725, 'https://ror.org/000nhpy59', 'es', 1, 'https://ror.org/000nhpy59 Instituto de Neurociencias'),
(92726, 'https://ror.org/02rz5qj26', 'en', 1, 'https://ror.org/02rz5qj26 Douglas Bomford Trust'),
(92727, 'https://ror.org/012mp1p41', 'en', 1, 'https://ror.org/012mp1p41 Montana Wheat and Barley Committee'),
(92728, 'https://ror.org/01ccvt456', 'es', 1, 'https://ror.org/01ccvt456 Ministerio de Empleo y Seguridad Social Ministerio de Trabajo y EconomĆ­a Social Ministry of Labour and Social Economy'),
(92729, 'https://ror.org/00qk1xk35', 'no_lang_code', 1, 'https://ror.org/00qk1xk35 Plexxikon (United States)'),
(92730, 'https://ror.org/002smyt64', 'es', 1, 'https://ror.org/002smyt64 Institute of Chemical Synthesis and Homogeneous Catalysis Instituto de Sƭntesis Quƭmica y CatƔlisis HomogƩnea'),
(92731, 'https://ror.org/02rgtxm82', 'es', 1, 'https://ror.org/02rgtxm82 Institute of Innovation and Knowledge Management Instituto de Gestión de la Innovación y del Conocimiento'),
(92732, 'https://ror.org/020s51w82', 'ca', 1, 'https://ror.org/020s51w82 Centre de Recerca MatemĆ tica'),
(92733, 'https://ror.org/00fkwx227', 'es', 1, 'https://ror.org/00fkwx227 Instituto de la Grasa'),
(92734, 'https://ror.org/00kysqk08', 'en', 1, 'https://ror.org/00kysqk08 State Key Laboratory of Integrated Service Network Theory and Key Technology ē»¼åˆäøšåŠ”ē½‘ē†č®ŗåŠå…³é”®ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92735, 'https://ror.org/048w8zr56', 'es', 1, 'https://ror.org/048w8zr56 Ministerio del Interior Ministry of Interior'),
(92736, 'https://ror.org/05t8xvx87', 'en', 1, 'https://ror.org/05t8xvx87 Chinese Research Academy of Environmental Sciences äø­å›½ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(92737, 'https://ror.org/00xrp2v42', 'en', 1, 'https://ror.org/00xrp2v42 State Key Laboratory of Nonlinear Mechanics éžēŗæę€§åŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92738, 'https://ror.org/02dd40221', 'no_lang_code', 1, 'https://ror.org/02dd40221 Shell (Brazil)'),
(92739, 'https://ror.org/03jbsdf87', 'en', 1, 'https://ror.org/03jbsdf87 Urmia University of Medical Sciences'),
(92740, 'https://ror.org/0226mqz95', 'es', 1, 'https://ror.org/0226mqz95 Fundación Universitaria de Navarra'),
(92741, 'https://ror.org/04qsnc772', 'pt', 1, 'https://ror.org/04qsnc772 Hospital de São João Hospital of St. John'),
(92742, 'https://ror.org/02q4vjg67', 'en', 1, 'https://ror.org/02q4vjg67 Municipal Institution of Higher Education "Khortytsia National Educational and Rehabilitational Academy" of Zaporizhzhia Regional Council Комунальний заклаГ вищої освіти Ā«Š„Š¾Ń€Ń‚ŠøŃ†ŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š½Š°Š²Ń‡Š°Š»ŃŒŠ½Š¾-реабілітаційна Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ» Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ¾Ń— обласної раГи'),
(92743, 'https://ror.org/03x4v9v20', 'id', 1, 'https://ror.org/03x4v9v20 STIE Enam Enam Kendari'),
(92744, 'https://ror.org/04wktzw65', 'en', 1, 'https://ror.org/04wktzw65 Chinese Center For Disease Control and Prevention åŒ—äŗ¬åø‚é¢„é˜²åŒ»å­¦ē ”ē©¶äø­åæƒ'),
(92745, 'https://ror.org/04gndp242', 'no_lang_code', 1, 'https://ror.org/04gndp242 Genentech'),
(92746, 'https://ror.org/049mqh532', 'en', 1, 'https://ror.org/049mqh532 State Key Laboratory of Natural and Biomimetic Drugs å¤©ē„¶čÆē‰©åŠä»æē”ŸčÆē‰©å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92747, 'https://ror.org/00nm7mw87', 'en', 1, 'https://ror.org/00nm7mw87 Forestry and Agricultural Biotechnology Institute'),
(92748, 'https://ror.org/02pk7c879', 'en', 1, 'https://ror.org/02pk7c879 Institute of Mechanical Engineering and Industrial Mangement Instituto de Engenharia Mecânica e Gestão Industrial'),
(92749, 'https://ror.org/03h381n69', 'en', 1, 'https://ror.org/03h381n69 State of New Jersey'),
(92750, 'https://ror.org/00x9tpk83', 'en', 1, 'https://ror.org/00x9tpk83 State Key Laboratory of Organic Geochemistry ęœ‰ęœŗåœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92751, 'https://ror.org/041818q22', 'en', 1, 'https://ror.org/041818q22 State Key Laboratory for Geomechanics and Deep Underground Engineering ę·±éƒØå²©åœŸåŠ›å­¦äøŽåœ°äø‹å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92752, 'https://ror.org/040kx1j83', 'es', 1, 'https://ror.org/040kx1j83 Instituto de FĆ­sica de Cantabria'),
(92753, 'https://ror.org/034e92n57', 'en', 1, 'https://ror.org/034e92n57 Harbin Veterinary Research Institute äø­å›½å†œäøšē§‘å­¦é™¢å“ˆå°”ę»Øå…½åŒ»ē ”ē©¶ę‰€'),
(92754, 'https://ror.org/025hkeg57', 'en', 1, 'https://ror.org/025hkeg57 State Key Laboratory of Transient Optics and Photonics ēž¬ę€å…‰å­¦äøŽå…‰å­ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92755, 'https://ror.org/05vw8d065', 'en', 1, 'https://ror.org/05vw8d065 Ministry of Innovative Development of the Republic of Uzbekistan'),
(92756, 'https://ror.org/040yga518', 'es', 1, 'https://ror.org/040yga518 Consejería de Desarrollo Educativo y Formación Porfesional'),
(92757, 'https://ror.org/033d34573', 'en', 1, 'https://ror.org/033d34573 John Wesley Powell Center for Analysis and Synthesis'),
(92758, 'https://ror.org/026wyz662', 'en', 1, 'https://ror.org/026wyz662 Samarkand Institute of Veterinary Medicine Samarqand veterinariya meditsinasi instituti ДамарканГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарной меГицины'),
(92759, 'https://ror.org/014msj669', 'no_lang_code', 1, 'https://ror.org/014msj669 Boluda División Industrial (Spain)'),
(92760, 'https://ror.org/01mx22g67', 'en', 1, 'https://ror.org/01mx22g67 State Key Laboratory of Clean Energy Utilization čƒ½ęŗęø…ę“åˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92761, 'https://ror.org/00dc8gj51', 'es', 1, 'https://ror.org/00dc8gj51 Fundación Universidad Empresa de la Región de Murcia'),
(92762, 'https://ror.org/00sxq4h60', 'en', 1, 'https://ror.org/00sxq4h60 State Key Laboratory of Hybrid Rice ę‚äŗ¤ę°“ēØ»å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92763, 'https://ror.org/048g2sh07', 'ms', 1, 'https://ror.org/048g2sh07 Universiti Teknologi Petronas 国油大学'),
(92764, 'https://ror.org/01jf9jv39', 'pt', 1, 'https://ror.org/01jf9jv39 Centro de Recursos Naturais e Ambiente'),
(92765, 'https://ror.org/03fxr9g07', 'en', 1, 'https://ror.org/03fxr9g07 State Key Laboratory of Environmental Adaptability for Industrial Products å·„äøšäŗ§å“ēŽÆå¢ƒé€‚åŗ”ę€§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92766, 'https://ror.org/04r5yj356', 'en', 1, 'https://ror.org/04r5yj356 Epilepsy Action'),
(92767, 'https://ror.org/028ev2d94', 'es', 1, 'https://ror.org/028ev2d94 Instituto de Productos Naturales y AgrobiologĆ­a'),
(92768, 'https://ror.org/05vmfpy67', 'en', 1, 'https://ror.org/05vmfpy67 German Association of Joint Industrial Applied Research Institutes'),
(92769, 'https://ror.org/00gmyaa84', 'no_lang_code', 1, 'https://ror.org/00gmyaa84 Jilin Jiangji Special Industries Co., Ltd (China) å‰ęž—ę±Ÿęœŗē‰¹ē§å·„äøšęœ‰é™å…¬åø'),
(92770, 'https://ror.org/05j18t043', 'en', 1, 'https://ror.org/05j18t043 Agencia de Calidad Sanitaria de AndalucĆ­a Andalusian Agency for Healthcare Quality'),
(92771, 'https://ror.org/003qeh975', 'en', 1, 'https://ror.org/003qeh975 Chinese Academy of Tropical Agricultural Sciences äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢'),
(92772, 'https://ror.org/04xvyyy18', 'en', 0, 'https://ror.org/04xvyyy18 Foundation for Research, Science and Technology Tūāpapa Rangahau Pūtaiao'),
(92773, 'https://ror.org/04d1zy188', 'es', 1, 'https://ror.org/04d1zy188 Departamento de Educación Hezkuntza Departamentua'),
(92774, 'https://ror.org/025yj9w07', 'en', 1, 'https://ror.org/025yj9w07 Department of Health Osasun Saila'),
(92775, 'https://ror.org/024zv6448', 'no_lang_code', 1, 'https://ror.org/024zv6448 Biomar Microbial Technologies (Spain)'),
(92776, 'https://ror.org/01t5vdw20', 'fr', 0, 'https://ror.org/01t5vdw20 Neuropsychologie Cognitive et Physiopathologie de la SchizophrƩnie'),
(92777, 'https://ror.org/04maje407', 'en', 1, 'https://ror.org/04maje407 State Key Laboratory of Atmospheric Boundary Layer Physics and Atmospheric Chemistry å¤§ę°”č¾¹ē•Œå±‚ē‰©ē†äøŽå¤§ę°”åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92778, 'https://ror.org/03r1cma15', 'en', 1, 'https://ror.org/03r1cma15 Shanghai Electric Cable Research Institute äøŠęµ·ē”µē¼†ē ”ē©¶ę‰€åˆ›å»ŗ'),
(92779, 'https://ror.org/01y2qtb13', 'no_lang_code', 1, 'https://ror.org/01y2qtb13 Janssen (Switzerland) Janssen Schweiz Janssen Suisse'),
(92780, 'https://ror.org/05fb23t53', 'en', 1, 'https://ror.org/05fb23t53 Advance Queensland'),
(92781, 'https://ror.org/047yhep71', 'en', 1, 'https://ror.org/047yhep71 Institute of Microbiology äø­å›½ē§‘å­¦é™¢å¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(92782, 'https://ror.org/036ttjw44', 'ca', 1, 'https://ror.org/036ttjw44 Museo Nacional de Arte de CataluƱa Museu Nacional d''Art de Catalunya'),
(92783, 'https://ror.org/055asww61', 'tr', 1, 'https://ror.org/055asww61 Üniversite ve Araştırma Kütüphanecileri Derneği'),
(92784, 'https://ror.org/03swz0133', 'it', 1, 'https://ror.org/03swz0133 Region of Calabria Regione Calabria'),
(92785, 'https://ror.org/00zynpc72', 'no_lang_code', 1, 'https://ror.org/00zynpc72 AMES Group (Spain)'),
(92786, 'https://ror.org/02nbvj238', 'es', 1, 'https://ror.org/02nbvj238 Agencia Española de Consumo, Seguridad Alimentaría y Nutrición Spanish Agency for Food Safety and Nutrition'),
(92787, 'https://ror.org/03218pf76', 'en', 1, 'https://ror.org/03218pf76 Presidency University'),
(92788, 'https://ror.org/03vfq0c73', 'fr', 1, 'https://ror.org/03vfq0c73 Laboratoire sur les chaussƩes et matƩriaux bitumineux Pavements and Bituminous Materials Laboratory'),
(92789, 'https://ror.org/038jjxj40', 'en', 1, 'https://ror.org/038jjxj40 Gobierno de EspaƱa Government of Spain'),
(92790, 'https://ror.org/00c7kp696', 'en', 1, 'https://ror.org/00c7kp696 Qaiwan International University Ų¬Ų§Ł…Ų¹Ų© Ł‚ŁŠŁˆŲ§Ł† Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ų²Ų§Ł†Ś©Ū†ŪŒ Ł†ŪŽŁˆŲÆŪ•ŁˆŚµŪ•ŲŖŪŒ Ł‚Ū•ŪŒŁˆŲ§Ł†'),
(92791, 'https://ror.org/05txnrv95', 'no_lang_code', 1, 'https://ror.org/05txnrv95 Oriental Yuhong (China) äøœę–¹é›Øč™¹'),
(92792, 'https://ror.org/021bmwb60', 'es', 1, 'https://ror.org/021bmwb60 Complejo Gerontológico "La Milagrosa" Gerontologic Complex La Milagrosa'),
(92793, 'https://ror.org/028z00g40', 'eu', 1, 'https://ror.org/028z00g40 Institute for Health Systems Research Instituto de Investigación en Sistemas de Salud Osasun Sistemen Ikerketa Institutua'),
(92794, 'https://ror.org/04gq84p09', 'en', 1, 'https://ror.org/04gq84p09 State Key Laboratory of Environmental Geochemistry ēŽÆå¢ƒåœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92795, 'https://ror.org/01s5v9a88', 'no_lang_code', 1, 'https://ror.org/01s5v9a88 China Energy Science and Technology Research Institute Co., Ltd. (China) å›½å®¶čƒ½ęŗé›†å›¢ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(92796, 'https://ror.org/0366spj33', 'ca', 1, 'https://ror.org/0366spj33 Fundacio Privada Universitat I Tecnologia'),
(92797, 'https://ror.org/05b6m5m63', 'no_lang_code', 1, 'https://ror.org/05b6m5m63 Mcrit (Spain) Multicriteria Planning'),
(92798, 'https://ror.org/029r0z014', 'ca', 1, 'https://ror.org/029r0z014 Consorci Administració Oberta de Catalunya Open Administration Consortium of Catalonia'),
(92799, 'https://ror.org/036ccg086', 'en', 0, 'https://ror.org/036ccg086 Department of Agriculture and Water Resources'),
(92800, 'https://ror.org/03b8etr73', 'en', 1, 'https://ror.org/03b8etr73 AboutScience'),
(92801, 'https://ror.org/05c6mwc92', 'en', 1, 'https://ror.org/05c6mwc92 State Key Laboratory of Vegetation and Environmental Change ę¤č¢«äøŽēŽÆå¢ƒå˜åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92802, 'https://ror.org/00dnz3q81', 'es', 1, 'https://ror.org/00dnz3q81 Biobanco del Sistema Sanitario PĆŗblico de AndalucĆ­a'),
(92803, 'https://ror.org/03j92cn97', 'no_lang_code', 1, 'https://ror.org/03j92cn97 Shanxi Jincheng Anthracite Mining Group (China) å±±č„æę™‹åŸŽę— ēƒŸē…¤ēŸæäøšé›†å›¢'),
(92804, 'https://ror.org/051n8xp08', 'en', 1, 'https://ror.org/051n8xp08 Arizona Water Science Center'),
(92805, 'https://ror.org/05cn9bw97', 'es', 1, 'https://ror.org/05cn9bw97 Ministerio de Agricultura, Pesca y Alimentación'),
(92806, 'https://ror.org/00hwp9n14', 'en', 1, 'https://ror.org/00hwp9n14 Real Orquesta Sinfónica de Sevilla Royal Seville Symphony Orchestra'),
(92807, 'https://ror.org/01vq13895', 'en', 1, 'https://ror.org/01vq13895 State Key Laboratory of Fire Science ē«ē¾ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92808, 'https://ror.org/03apwp296', 'nl', 1, 'https://ror.org/03apwp296 Landelijke Stichting voor Blinden en Slechtzienden National Society for the Blind and Visually Impaired'),
(92809, 'https://ror.org/00pd5rv22', 'en', 1, 'https://ror.org/00pd5rv22 Illinois Department of Agriculture'),
(92810, 'https://ror.org/038761a28', 'en', 1, 'https://ror.org/038761a28 Tamil Nadu State Council for Higher Education'),
(92811, 'https://ror.org/00gstww93', 'ca', 1, 'https://ror.org/00gstww93 AQU Catalunya AgĆØncia per a la Qualitat del Sistema Universitari de Catalunya'),
(92812, 'https://ror.org/04r12t513', 'en', 1, 'https://ror.org/04r12t513 State Key Laboratory of Powder Metallurgy ē²‰ęœ«å†¶é‡‘å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92813, 'https://ror.org/02x1xke62', 'en', 1, 'https://ror.org/02x1xke62 State Key Laboratory of Cell Stress Biology ē»†čƒžåŗ”ęæ€ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92814, 'https://ror.org/03d61dw70', 'en', 1, 'https://ror.org/03d61dw70 State Key Laboratory of Luminescent Materials and Devices å‘å…‰ęę–™äøŽå™Øä»¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92815, 'https://ror.org/02zwg8g81', 'en', 1, 'https://ror.org/02zwg8g81 State Key Laboratory of Visual and Auditory Information Processing č§†č§‰äøŽå¬č§‰äæ”ęÆå¤„ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92816, 'https://ror.org/01pvjzw40', 'en', 1, 'https://ror.org/01pvjzw40 State Key Laboratory of New Technology of Iron and Steel Metallurgy é’¢é“å†¶é‡‘ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92817, 'https://ror.org/01bpnem71', 'es', 1, 'https://ror.org/01bpnem71 DiploCientƭfica, Red de Diplomacia cientƭfica para AmƩrica Latina y el Caribe'),
(92818, 'https://ror.org/036s6ct29', 'en', 1, 'https://ror.org/036s6ct29 Motor Accident Insurance Commission'),
(92819, 'https://ror.org/032p70522', 'en', 1, 'https://ror.org/032p70522 State Key Laboratory of Medicinal Chemical Biology čÆē‰©åŒ–å­¦ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92820, 'https://ror.org/05ek3m339', 'en', 1, 'https://ror.org/05ek3m339 Office of International Affairs'),
(92821, 'https://ror.org/01a67y017', 'en', 1, 'https://ror.org/01a67y017 Health Commission of Jilin Province å‰ęž—ēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(92822, 'https://ror.org/03ty8yr27', 'en', 1, 'https://ror.org/03ty8yr27 Calcul canada Compute Canada'),
(92823, 'https://ror.org/03emtbt60', 'en', 1, 'https://ror.org/03emtbt60 Ministry of Science and Technology'),
(92824, 'https://ror.org/0437mj522', 'es', 1, 'https://ror.org/0437mj522 Asociación Innovalia Innovalia Association'),
(92825, 'https://ror.org/02edjvw12', 'en', 1, 'https://ror.org/02edjvw12 State Key Laboratory of Mineral Processing ēŸæē‰©åŠ å·„ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92826, 'https://ror.org/0330h6m67', 'pt', 1, 'https://ror.org/0330h6m67 Casa de Hiram'),
(92827, 'https://ror.org/00c9w1q32', 'en', 1, 'https://ror.org/00c9w1q32 Eidgenössische Hochschule für Sport Magglingen EHSM Haute école fédérale de sport de Macolin HEFSM Swiss Federal Institute of Sport Magglingen SFISM'),
(92828, 'https://ror.org/049yyak68', 'en', 1, 'https://ror.org/049yyak68 State Key Laboratory of Pressurized Hydrometallurgy Technology for Co-Associated Nonferrous Metal Resources å…±ä¼“ē”Ÿęœ‰č‰²é‡‘å±žčµ„ęŗåŠ åŽ‹ę¹æę³•å†¶é‡‘ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92829, 'https://ror.org/057epqv46', 'no_lang_code', 1, 'https://ror.org/057epqv46 Centro de TecnologĆ­as Aeronauticas (Spain)'),
(92830, 'https://ror.org/04ttfv304', 'es', 1, 'https://ror.org/04ttfv304 Centre Mediterrani d''Investigacions Marines i Ambientals Centro MediterrƔneo de Investigaciones Marinas y Ambientale'),
(92831, 'https://ror.org/00yyvv226', 'no_lang_code', 1, 'https://ror.org/00yyvv226 Weichai Power (China) ę½ęŸ“åŠØåŠ›'),
(92832, 'https://ror.org/01az3ay62', 'es', 1, 'https://ror.org/01az3ay62 EuroBasque - Basque Council of the European Movement EuroBasque - Consejo Vasco del Movimiento Europeo'),
(92833, 'https://ror.org/0371hy230', 'ca', 1, 'https://ror.org/0371hy230 Catalan Institution for Research and Advanced Studies Institució Catalana de Recerca i Estudis Avançats Institución Catalana de Investigación y Estudios Avanzados'),
(92834, 'https://ror.org/055qbch41', 'en', 1, 'https://ror.org/055qbch41 Institute of Basic Medical Sciences of the Chinese Academy of Medical Sciences äø­å›½åŒ»å­¦ē§‘å­¦é™¢åŸŗē”€åŒ»å­¦ē ”ē©¶ę‰€'),
(92835, 'https://ror.org/0517e3842', 'en', 1, 'https://ror.org/0517e3842 State Key Laboratory of Microbial Resources å¾®ē”Ÿē‰©čµ„ęŗå‰ęœŸå¼€å‘å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92836, 'https://ror.org/0225kjd58', 'fr', 1, 'https://ror.org/0225kjd58 Ɖquipe de Recherche Contextes et Acteurs de l''Ɖducation'),
(92837, 'https://ror.org/00nxewv32', 'no_lang_code', 1, 'https://ror.org/00nxewv32 Modul-Bio (France)'),
(92838, 'https://ror.org/04rxrdv16', 'es', 1, 'https://ror.org/04rxrdv16 Cancer Research Center Centro de Investigación del CÔncer'),
(92839, 'https://ror.org/026yy9j15', 'es', 1, 'https://ror.org/026yy9j15 Instituto de Investigación Biosanitaria de Granada'),
(92840, 'https://ror.org/01jwe7h47', 'es', 1, 'https://ror.org/01jwe7h47 Centro OceanogrƔfico de Santander Oceanographic Center of Santander'),
(92841, 'https://ror.org/01j8y9p48', 'no_lang_code', 1, 'https://ror.org/01j8y9p48 C.P.Q. IbƩrica (Spain)'),
(92842, 'https://ror.org/03ad9bh13', 'es', 1, 'https://ror.org/03ad9bh13 Centro OceanogrÔfico de Gijón Oceanographic Center of Gijón'),
(92843, 'https://ror.org/051gy9s25', 'de', 1, 'https://ror.org/051gy9s25 Stiftung Fiat Panis The Foundation Fiat Panis'),
(92844, 'https://ror.org/00jdxsj17', 'pt', 1, 'https://ror.org/00jdxsj17 Governo do Estado do Rio Grande do Sul'),
(92845, 'https://ror.org/02sr2ee22', 'no_lang_code', 1, 'https://ror.org/02sr2ee22 PRG S&Tech (South Korea) ķ”¼ģ•Œģ§€ģ—ģŠ¤ģ•¤ķ…'),
(92846, 'https://ror.org/031y0e568', 'es', 1, 'https://ror.org/031y0e568 Instituto de FilosofĆ­a'),
(92847, 'https://ror.org/0193wdc07', 'es', 1, 'https://ror.org/0193wdc07 Consejeria de EconomĆ­a Hacienda y empleo de la Comunidad de Madrid'),
(92848, 'https://ror.org/01t8xrx60', 'en', 1, 'https://ror.org/01t8xrx60 State Key Laboratory of New Ceramics and Fine Processing ę–°åž‹é™¶ē“·äøŽē²¾ē»†å·„č‰ŗå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92849, 'https://ror.org/03qr6jw57', 'en', 1, 'https://ror.org/03qr6jw57 Kansalliskirjasto National Library of Finland Nationalbiblioteket'),
(92850, 'https://ror.org/03v3f4276', 'es', 1, 'https://ror.org/03v3f4276 Fundacion Phantoms Phantoms Foundation'),
(92851, 'https://ror.org/04qan0m84', 'es', 1, 'https://ror.org/04qan0m84 Geosciences Institute Instituto de Geociencias'),
(92852, 'https://ror.org/0233t0j26', 'es', 1, 'https://ror.org/0233t0j26 Proyecto EspaƱol'),
(92853, 'https://ror.org/02bgdk629', 'es', 1, 'https://ror.org/02bgdk629 Institute of Language, Literature and Anthropology Instituto de Lengua Literatura y AntropologĆ­a'),
(92854, 'https://ror.org/04ggpef13', 'fr', 1, 'https://ror.org/04ggpef13 Espace philosophique de Namur'),
(92855, 'https://ror.org/049wftm75', 'en', 1, 'https://ror.org/049wftm75 Ministerstvo ZemědělstvĆ­ ČeskĆ© Republiky Ministry of Agriculture'),
(92856, 'https://ror.org/032nytr91', 'en', 1, 'https://ror.org/032nytr91 State Key Laboratory of Multiphase Complex Systems å¤šē›øå¤ę‚ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92857, 'https://ror.org/01fxs2165', 'en', 1, 'https://ror.org/01fxs2165 International Commission for the Conservation of Atlantic Tunas'),
(92858, 'https://ror.org/0303gny42', 'en', 1, 'https://ror.org/0303gny42 State Key Laboratory of Nuclear Detection and Nuclear Electronics ę øęŽ¢ęµ‹äøŽę øē”µå­å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92859, 'https://ror.org/00y4zmh56', 'en', 1, 'https://ror.org/00y4zmh56 Alaska Climate Adaptation Science Center'),
(92860, 'https://ror.org/04kaae654', 'en', 1, 'https://ror.org/04kaae654 State Key Laboratory of Organometallic Chemistry é‡‘å±žęœ‰ęœŗåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92861, 'https://ror.org/03vaedy56', 'en', 0, 'https://ror.org/03vaedy56 Ontario Fonds ontarien pour l''innovation Ontario Innovation Trust'),
(92862, 'https://ror.org/02skfv902', 'no_lang_code', 1, 'https://ror.org/02skfv902 Deltex Medical (Spain)'),
(92863, 'https://ror.org/05w21nn13', 'en', 1, 'https://ror.org/05w21nn13 Army Medical University äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬äø‰å†›åŒ»å¤§å­¦'),
(92864, 'https://ror.org/01xnz3256', 'en', 1, 'https://ror.org/01xnz3256 State Key Laboratory of Analytical Chemistry for Life Science ē”Ÿå‘½åˆ†ęžåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92865, 'https://ror.org/0546sy919', 'en', 1, 'https://ror.org/0546sy919 PAMO University of Medical Sciences'),
(92866, 'https://ror.org/02tk7t045', 'en', 1, 'https://ror.org/02tk7t045 Namur Institute of Language, Text and Transmediality'),
(92867, 'https://ror.org/03fwfk305', 'es', 1, 'https://ror.org/03fwfk305 Instituto de Neurociencias de Castilla y León'),
(92868, 'https://ror.org/00jxb4047', 'en', 1, 'https://ror.org/00jxb4047 State Key Laboratory of Microwave and Digital Communication Technology å¾®ę³¢äøŽę•°å­—é€šäæ”ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92869, 'https://ror.org/055cmx385', 'es', 1, 'https://ror.org/055cmx385 Institute for Functional Biology and Genomics Instituto de Biología Funcional y Genómica'),
(92870, 'https://ror.org/03a2pqz96', 'en', 1, 'https://ror.org/03a2pqz96 Departamento de Educación Department of Education Hezkuntza Saila'),
(92871, 'https://ror.org/054qehp48', 'nl', 1, 'https://ror.org/054qehp48 Dutch Research School for Astronomy Nederlandse Onderzoekschool Voor Astronomie'),
(92872, 'https://ror.org/05szcn205', 'en', 1, 'https://ror.org/05szcn205 China National Rice Research Institute 中国氓稻研究所'),
(92873, 'https://ror.org/01q9drc95', 'es', 1, 'https://ror.org/01q9drc95 Institute of Agricultural Sciences Instituto de Ciencias Agrarias'),
(92874, 'https://ror.org/029ez4v67', 'pt', 1, 'https://ror.org/029ez4v67 Instituto Federal de Educação, Ciência e Tecnologia de Sergipe'),
(92875, 'https://ror.org/02vznxv75', 'es', 1, 'https://ror.org/02vznxv75 Institute of Medicinal Chemistry Instituto de Quƭmica MƩdica'),
(92876, 'https://ror.org/0101ppd69', 'en', 1, 'https://ror.org/0101ppd69 William & Ella Owens Medical Research Foundation'),
(92877, 'https://ror.org/03dpyrm54', 'es', 1, 'https://ror.org/03dpyrm54 Institute of Agrobiological Research of Galicia Instituto de Investigaciones Agrobiológicas de Galicia'),
(92878, 'https://ror.org/02hyyn853', 'de', 1, 'https://ror.org/02hyyn853 Free State of Saxony Freistaat Sachsen'),
(92879, 'https://ror.org/00v8rqv75', 'en', 1, 'https://ror.org/00v8rqv75 Institute of Acoustics 中国科学院声学研究所'),
(92880, 'https://ror.org/01b38s834', 'en', 1, 'https://ror.org/01b38s834 CCTEG Shenyang Research Institute ē…¤ē§‘é›†å›¢ę²ˆé˜³ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(92881, 'https://ror.org/01svbkm65', 'en', 1, 'https://ror.org/01svbkm65 HSNC University'),
(92882, 'https://ror.org/05cneqf17', 'en', 1, 'https://ror.org/05cneqf17 Epilepsy Society'),
(92883, 'https://ror.org/00xe97z49', 'fr', 1, 'https://ror.org/00xe97z49 Physiologie, Ecologie et Environnement Physiology, Ecology, Environment'),
(92884, 'https://ror.org/05b3shf88', 'en', 1, 'https://ror.org/05b3shf88 Baotou Research Institute of Rare Earths åŒ…å¤“ēØ€åœŸē ”ē©¶é™¢'),
(92885, 'https://ror.org/03d8em588', 'no_lang_code', 1, 'https://ror.org/03d8em588 General Research Institute for Nonferrous Metals (China) åŒ—äŗ¬ęœ‰č‰²é‡‘å±žē ”ē©¶ę€»é™¢'),
(92886, 'https://ror.org/02b9yqg72', 'no_lang_code', 1, 'https://ror.org/02b9yqg72 Meiji Pharma Spain'),
(92887, 'https://ror.org/05etnz140', 'en', 1, 'https://ror.org/05etnz140 Shanghai Institute of Ceramics äø­å›½ē§‘å­¦é™¢äøŠęµ·ē”…é…øē›ē ”ē©¶ę‰€'),
(92888, 'https://ror.org/01y3hvq34', 'en', 1, 'https://ror.org/01y3hvq34 Shanghai Institute of Organic Chemistry äø­å›½ē§‘å­¦é™¢äøŠęµ·ęœ‰ęœŗåŒ–å­¦ē ”ē©¶ę‰€'),
(92889, 'https://ror.org/01ss8rw36', 'en', 1, 'https://ror.org/01ss8rw36 State Key Laboratory of Space Medicine Fundamentals and Application čˆŖå¤©åŒ»å­¦åŸŗē”€äøŽåŗ”ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92890, 'https://ror.org/00wq6p759', 'es', 1, 'https://ror.org/00wq6p759 Ayuntamiento de Sevilla City Council of Seville'),
(92891, 'https://ror.org/0270sxy44', 'de', 1, 'https://ror.org/0270sxy44 Paracelsus Elena Klinik Kassel'),
(92892, 'https://ror.org/01m34mw67', 'en', 1, 'https://ror.org/01m34mw67 Guangzhou Research Institute of Non-ferrous Metals å¹æå·žęœ‰č‰²é‡‘å±žē ”ē©¶é™¢'),
(92893, 'https://ror.org/013x79k46', 'en', 1, 'https://ror.org/013x79k46 State Key Laboratory of Coastal and Offshore Engineering ęµ·å²øå’Œčæ‘ęµ·å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92894, 'https://ror.org/04s99xz91', 'en', 1, 'https://ror.org/04s99xz91 Centre for Individualised Infection Medicine'),
(92895, 'https://ror.org/04z2gev20', 'en', 1, 'https://ror.org/04z2gev20 Office of Health and Safety'),
(92896, 'https://ror.org/03rc9kz61', 'no_lang_code', 1, 'https://ror.org/03rc9kz61 Faes Farma (Spain)'),
(92897, 'https://ror.org/0064crs54', 'en', 0, 'https://ror.org/0064crs54 National Center of Competence in Research Quantum Science and Technology'),
(92898, 'https://ror.org/00vsr3s09', 'en', 1, 'https://ror.org/00vsr3s09 State Key Laboratory of Lithospheric Evolution å²©ēŸ³åœˆę¼”åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92899, 'https://ror.org/03n9z2d15', 'sv', 1, 'https://ror.org/03n9z2d15 King Gustaf V and Queen Victoria''s Foundation of Freemasons Konung Gustaf V:s och Drottning Victorias Frimurarestiftelse'),
(92900, 'https://ror.org/04rzmms09', 'en', 1, 'https://ror.org/04rzmms09 CSCS - Centro Svizzero di Calcolo Scientifico CSCS - Swiss National Supercomputing Centre'),
(92901, 'https://ror.org/03j283p93', 'en', 1, 'https://ror.org/03j283p93 State Key Laboratory of Molecular Reaction Dynamics åˆ†å­ååŗ”åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92902, 'https://ror.org/02awe6g05', 'en', 1, 'https://ror.org/02awe6g05 Research Institute of Petroleum Exploration and Development äø­å›½ēŸ³ę²¹å¤©ē„¶ę°”č‚”ä»½ęœ‰é™å…¬åøå‹˜ęŽ¢å¼€å‘ē ”ē©¶é™¢'),
(92903, 'https://ror.org/03s3m8k31', 'es', 1, 'https://ror.org/03s3m8k31 Instituto Tecnológico de Oaxaca Oaxaca Institute of Technology'),
(92904, 'https://ror.org/058afx839', 'en', 1, 'https://ror.org/058afx839 Forest and Rangeland Ecosystem Science Center'),
(92905, 'https://ror.org/004z1wz18', 'en', 1, 'https://ror.org/004z1wz18 State Key Laboratory of Digital Manufacturing Equipment and Technology ę•°å­—åˆ¶é€ č£…å¤‡äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92906, 'https://ror.org/00wrec671', 'en', 1, 'https://ror.org/00wrec671 State Key Laboratory of Mobile Communications ē§»åŠØé€šäæ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92907, 'https://ror.org/04kjvqe45', 'en', 1, 'https://ror.org/04kjvqe45 State Key Laboratory of Digital Multimedia Technology ę•°å­—å¤šåŖ’ä½“ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92908, 'https://ror.org/01ebfg457', 'en', 1, 'https://ror.org/01ebfg457 State Key Laboratory of Light Alloy Casting Technology for High-end Equipment é«˜ē«Æč£…å¤‡č½»åˆé‡‘é“øé€ ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92909, 'https://ror.org/03m2x2m55', 'en', 1, 'https://ror.org/03m2x2m55 State Key Laboratory of Concrete Materials Research ę··å‡åœŸęę–™ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92910, 'https://ror.org/03bdmv123', 'en', 1, 'https://ror.org/03bdmv123 State Key Laboratory of Complex System Management and Control å¤ę‚ē³»ē»Ÿē®”ē†äøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92911, 'https://ror.org/02vgzrk89', 'en', 1, 'https://ror.org/02vgzrk89 Illinois Department of Transportation'),
(92912, 'https://ror.org/01gdqm013', 'en', 1, 'https://ror.org/01gdqm013 State Key Laboratory of Agricultural Biotechnology å†œäøšē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92913, 'https://ror.org/01yj56c84', 'en', 1, 'https://ror.org/01yj56c84 Beijing Jiaotong University åŒ—äŗ¬äŗ¤é€šå¤§å­¦'),
(92914, 'https://ror.org/0276vcd78', 'no_lang_code', 1, 'https://ror.org/0276vcd78 Hisense (China) 海俔集团'),
(92915, 'https://ror.org/00jkz9152', 'es', 1, 'https://ror.org/00jkz9152 Hospital Universitario de Guadalajara'),
(92916, 'https://ror.org/00b1hj613', 'no_lang_code', 1, 'https://ror.org/00b1hj613 Zoomlion (China) äø­č”é‡ē§‘'),
(92917, 'https://ror.org/00sbth994', 'fr', 1, 'https://ror.org/00sbth994 Laboratoire Pluridisciplinaire de Recherche en Ingénierie des Systèmes, Mécanique et Energétique'),
(92918, 'https://ror.org/0380ng272', 'en', 1, 'https://ror.org/0380ng272 State Key Laboratory of Synthetical Automation for Process Industries ęµēØ‹å·„äøšē»¼åˆč‡ŖåŠØåŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92919, 'https://ror.org/04prhhh77', 'en', 1, 'https://ror.org/04prhhh77 Institute of Limnology of the Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠžŠ·ŠµŃ€Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(92920, 'https://ror.org/010fszt18', 'en', 1, 'https://ror.org/010fszt18 State Key Laboratory of Optoelectronic Materials and Technology å…‰ē”µęę–™äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92921, 'https://ror.org/025cbjw81', 'en', 1, 'https://ror.org/025cbjw81 State of Illinois'),
(92922, 'https://ror.org/026ynmk26', 'en', 1, 'https://ror.org/026ynmk26 Institute of Molecular Genetics and Genetic Engineering'),
(92923, 'https://ror.org/04e698d63', 'en', 1, 'https://ror.org/04e698d63 Ministry of Water Resources of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½ę°“åˆ©éƒØ'),
(92924, 'https://ror.org/01a44gd51', 'en', 1, 'https://ror.org/01a44gd51 Bavarian State Ministry for Science and Art Bayerisches Staatsministerium für Wissenschaft und Kunst'),
(92925, 'https://ror.org/05r5ax121', 'en', 1, 'https://ror.org/05r5ax121 Jeffrey Cheah Foundation'),
(92926, 'https://ror.org/04v2xmd71', 'en', 1, 'https://ror.org/04v2xmd71 Scottish Government'),
(92927, 'https://ror.org/02jjdbb85', 'en', 1, 'https://ror.org/02jjdbb85 State Key Laboratory of Electroanalytical Chemistry ē”µåˆ†ęžåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92928, 'https://ror.org/03xtn0506', 'en', 1, 'https://ror.org/03xtn0506 Weston Havens Foundation'),
(92929, 'https://ror.org/04fpkc108', 'en', 1, 'https://ror.org/04fpkc108 Toyota Research Institute'),
(92930, 'https://ror.org/048wy7h78', 'en', 1, 'https://ror.org/048wy7h78 State Key Laboratory of Brain and Cognitive Science č„‘äøŽč®¤ēŸ„ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92931, 'https://ror.org/0536dw066', 'es', 1, 'https://ror.org/0536dw066 Asociación de Investigación de la Industria Textil'),
(92932, 'https://ror.org/007xj0t96', 'eu', 1, 'https://ror.org/007xj0t96 Departamento de Desarrollo Económico, Sostenibilidad y Medio Ambiente Ekonomiaren Garapen eta Lehiakortasun Saila'),
(92933, 'https://ror.org/02e5hx313', 'en', 1, 'https://ror.org/02e5hx313 Kunming Institute of Botany äø­å›½ē§‘å­¦é™¢ę˜†ę˜Žę¤ē‰©ē ”ē©¶ę‰€'),
(92934, 'https://ror.org/053a8fn46', 'en', 1, 'https://ror.org/053a8fn46 State Key Laboratory of Crop Genetic Improvement ä½œē‰©é—ä¼ ę”¹č‰Æå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92935, 'https://ror.org/03rpds343', 'ca', 1, 'https://ror.org/03rpds343 Museu d''Art Contemporani de Barcelona Museu d’Art Contemporani de Barcelona'),
(92936, 'https://ror.org/05fc8gj45', 'ca', 1, 'https://ror.org/05fc8gj45 Fundacio Pere Tarres'),
(92937, 'https://ror.org/044cgpf23', 'fr', 1, 'https://ror.org/044cgpf23 Laboratoire d''ingénierie des produits, procédés et systèmes Products, Processes and Systems Engineering Laboratory'),
(92938, 'https://ror.org/02nnjtm50', 'en', 1, 'https://ror.org/02nnjtm50 National Space Science Center å›½å®¶ē©ŗé—“ē§‘å­¦äø­åæƒ'),
(92939, 'https://ror.org/003v6nj12', 'en', 1, 'https://ror.org/003v6nj12 State Key Laboratory of Environmental Chemistry and Ecotoxicology ēŽÆå¢ƒåŒ–å­¦äøŽē”Ÿę€ęÆ’ē†å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92940, 'https://ror.org/03vd52t28', 'no_lang_code', 1, 'https://ror.org/03vd52t28 Family Process Institute (United States)'),
(92941, 'https://ror.org/05pq8vh42', 'es', 1, 'https://ror.org/05pq8vh42 Instituto de Biomedicina de Valencia'),
(92942, 'https://ror.org/03a33a786', 'en', 1, 'https://ror.org/03a33a786 State Key Laboratory of Industrial Control Technology å·„äøšęŽ§åˆ¶ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92943, 'https://ror.org/023xf2a37', 'en', 1, 'https://ror.org/023xf2a37 Agence de la santƩ publique du Canada Public Health Agency of Canada'),
(92944, 'https://ror.org/0556xhz50', 'en', 1, 'https://ror.org/0556xhz50 Hospital Real de Granada Royal Hospital of Granada'),
(92945, 'https://ror.org/03w60rc21', 'en', 1, 'https://ror.org/03w60rc21 State Key Laboratory of Marine Pollution ęµ·ę“‹ę±”ęŸ“å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92946, 'https://ror.org/03xk60j79', 'es', 1, 'https://ror.org/03xk60j79 Institute of Physical Chemistry Blas Cabrera Instituto de QuĆ­mica FĆ­sica Blas Cabrera'),
(92947, 'https://ror.org/011rf9d86', 'en', 1, 'https://ror.org/011rf9d86 Shanghai Institutes for Biological Sciences äøŠęµ·ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(92948, 'https://ror.org/00tnqka34', 'en', 1, 'https://ror.org/00tnqka34 State Key Laboratory of Solid Lubrication å›ŗä½“ę¶¦ę»‘å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92949, 'https://ror.org/0520sdq60', 'es', 1, 'https://ror.org/0520sdq60 Instituto Nacional de ToxicologĆ­a y Ciencias Forenses'),
(92950, 'https://ror.org/05fstsk68', 'no_lang_code', 1, 'https://ror.org/05fstsk68 Abengoa (Spain)');
INSERT INTO `rors` VALUES
(92951, 'https://ror.org/0307bxz06', 'no_lang_code', 1, 'https://ror.org/0307bxz06 Toyota Group (Japan) ćƒˆćƒØć‚æć‚°ćƒ«ćƒ¼ćƒ—'),
(92952, 'https://ror.org/008fyn775', 'en', 1, 'https://ror.org/008fyn775 Politechnika Wrocławska Wrocław University of Science and Technology'),
(92953, 'https://ror.org/044hd6323', 'en', 1, 'https://ror.org/044hd6323 State Key Laboratory of Hydraulic Engineering Simulation and Safety ę°“åˆ©å·„ēØ‹ä»æēœŸäøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92954, 'https://ror.org/01erm0d03', 'en', 1, 'https://ror.org/01erm0d03 Wuhan Research Institute of Materials Protection ę­¦ę±‰ęę–™äæęŠ¤ē ”ē©¶ę‰€'),
(92955, 'https://ror.org/01az6dv73', 'es', 1, 'https://ror.org/01az6dv73 Hospital Universitario PrĆ­ncipe de Asturias'),
(92956, 'https://ror.org/0036jb858', 'en', 1, 'https://ror.org/0036jb858 Legislative-Citizen Commission on Minnesota Resources'),
(92957, 'https://ror.org/04rb60x98', 'ca', 1, 'https://ror.org/04rb60x98 Parc CientĆ­fic de la Universitat de ValĆØncia'),
(92958, 'https://ror.org/016mx3x77', 'no_lang_code', 1, 'https://ror.org/016mx3x77 Acorde (Spain)'),
(92959, 'https://ror.org/01y43zx14', 'ca', 1, 'https://ror.org/01y43zx14 Institut de Biomedicina de la Universitat de Barcelona Institute of Biomedicine of the University of Barcelona'),
(92960, 'https://ror.org/0366c6s65', 'en', 1, 'https://ror.org/0366c6s65 Institute of Rock and Soil Mechanics äø­å›½ē§‘å­¦é™¢ę­¦ę±‰å²©åœŸåŠ›å­¦ē ”ē©¶ę‰€'),
(92961, 'https://ror.org/01cfnbk63', 'en', 1, 'https://ror.org/01cfnbk63 Colorado Water Science Center'),
(92962, 'https://ror.org/03z8dnf91', 'en', 1, 'https://ror.org/03z8dnf91 Institute of Geology, China Earthquake Administration äø­å›½åœ°éœ‡å±€åœ°č“Øē ”ē©¶ę‰€'),
(92963, 'https://ror.org/050qbxj48', 'es', 1, 'https://ror.org/050qbxj48 Hospital Central de la Defensa Gómez Ulla Hospital Militar Gómez Ulla'),
(92964, 'https://ror.org/0036vvb62', 'no_lang_code', 1, 'https://ror.org/0036vvb62 Zama (France)'),
(92965, 'https://ror.org/054659c28', 'en', 1, 'https://ror.org/054659c28 State Key Laboratory of Reproductive Biology for Family Planning č®”åˆ’ē”Ÿč‚²ē”Ÿę®–ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92966, 'https://ror.org/04142jt33', 'en', 1, 'https://ror.org/04142jt33 State Key Laboratory of Compressor Technology åŽ‹ē¼©ęœŗęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92967, 'https://ror.org/00k597r55', 'es', 1, 'https://ror.org/00k597r55 Fundación Ignacio Larramendi'),
(92968, 'https://ror.org/05h1aye87', 'en', 1, 'https://ror.org/05h1aye87 Linkƶping University Hospital Universitetssjukhuset i Linkƶping'),
(92969, 'https://ror.org/038t8ze69', 'en', 1, 'https://ror.org/038t8ze69 Upper Midwest Environmental Sciences Center'),
(92970, 'https://ror.org/040qadc12', 'fr', 1, 'https://ror.org/040qadc12 Normandie Innovation MarchƩ Entreprise Consommation'),
(92971, 'https://ror.org/05ey8y521', 'en', 1, 'https://ror.org/05ey8y521 National Minerals Information Center'),
(92972, 'https://ror.org/012946785', 'en', 1, 'https://ror.org/012946785 The Human Diagnosis Project'),
(92973, 'https://ror.org/02sjzjp24', 'fr', 1, 'https://ror.org/02sjzjp24 Vertige ExtrĆŖme'),
(92974, 'https://ror.org/01z5ygt35', 'de', 1, 'https://ror.org/01z5ygt35 Institut für Rechtspolitik an der Universität Trier'),
(92975, 'https://ror.org/02a9key75', 'en', 1, 'https://ror.org/02a9key75 State Key Laboratory of Advanced Optical Communication Systems and Networks å…‰ēŗ¤é€šäæ”ęŠ€ęœÆå’Œē½‘ē»œå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92976, 'https://ror.org/00caq9197', 'eu', 1, 'https://ror.org/00caq9197 Euskadiko Parke Teknologicoak Bizkaia Euskadiko Parke Teknologikoa'),
(92977, 'https://ror.org/05b4p0g26', 'fr', 1, 'https://ror.org/05b4p0g26 Laboratoire d''Analyse des SociƩtƩs, Transformations et Adaptations'),
(92978, 'https://ror.org/04s945776', 'fr', 1, 'https://ror.org/04s945776 Laboratoire de MƩcanique de Normandie'),
(92979, 'https://ror.org/02skqwf47', 'en', 1, 'https://ror.org/02skqwf47 Pacific Islands Water Science Center'),
(92980, 'https://ror.org/01fqayw81', 'de', 1, 'https://ror.org/01fqayw81 Deutsches ArchƤologisches Institut, Rƶmisch-Germanische Kommission German Archaeological Institute, Romano Germanic Commission'),
(92981, 'https://ror.org/03nydrc16', 'no_lang_code', 1, 'https://ror.org/03nydrc16 DNV (Germany)'),
(92982, 'https://ror.org/019s68r62', 'en', 1, 'https://ror.org/019s68r62 Western Fisheries Research Center'),
(92983, 'https://ror.org/04qcn4c26', 'en', 1, 'https://ror.org/04qcn4c26 Hawaiian Volcano Observatory'),
(92984, 'https://ror.org/0328tc677', 'fr', 1, 'https://ror.org/0328tc677 Centre Interdisciplinaire de Recherche Normand en Education et Formation'),
(92985, 'https://ror.org/05hh31546', 'en', 1, 'https://ror.org/05hh31546 Nevada Water Science Center'),
(92986, 'https://ror.org/00xqkj280', 'it', 1, 'https://ror.org/00xqkj280 Governo Italiano'),
(92987, 'https://ror.org/00d21gf72', 'en', 1, 'https://ror.org/00d21gf72 International Oceanographic Data and Information Exchange (IODE)'),
(92988, 'https://ror.org/037tt6b65', 'de', 1, 'https://ror.org/037tt6b65 Cusanus Institut Cusanus Institute'),
(92989, 'https://ror.org/044rb3f07', 'fr', 1, 'https://ror.org/044rb3f07 DƩlƩgation RƩgionale Nouvelle-Aquitaine'),
(92990, 'https://ror.org/04mjt7f73', 'en', 1, 'https://ror.org/04mjt7f73 Sunway University Universiti Sunway åŒåØå¤§å­¦'),
(92991, 'https://ror.org/05nredc16', 'en', 1, 'https://ror.org/05nredc16 State Key Laboratory of Internal Combustion Engines å†…ē‡ƒęœŗē‡ƒēƒ§å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92992, 'https://ror.org/04d7kge72', 'no_lang_code', 1, 'https://ror.org/04d7kge72 JK Fenner (India)'),
(92993, 'https://ror.org/05tjbhz35', 'fr', 1, 'https://ror.org/05tjbhz35 Histoire, Territoires & MƩmoires'),
(92994, 'https://ror.org/04v8m4033', 'en', 1, 'https://ror.org/04v8m4033 Oregon Water Science Center'),
(92995, 'https://ror.org/00b5m4j81', 'no_lang_code', 1, 'https://ror.org/00b5m4j81 Shell (Netherlands)'),
(92996, 'https://ror.org/038x5dh11', 'en', 1, 'https://ror.org/038x5dh11 Geologic Hazards Science Center'),
(92997, 'https://ror.org/00en9ce74', 'en', 1, 'https://ror.org/00en9ce74 Research and Innovation Foundation ĪŠĪ“ĻĻ…Ī¼Ī± ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και ĪšĪ±Ī¹Ī½ĪæĻ„ĪæĪ¼ĪÆĪ±Ļ‚'),
(92998, 'https://ror.org/00acpf703', 'fr', 1, 'https://ror.org/00acpf703 Commission de l''Ethique en Science et en Technologie'),
(92999, 'https://ror.org/012jsqx30', 'fr', 1, 'https://ror.org/012jsqx30 Centre d''Etudes et de Recherche sur le MƩdicament de Normandie'),
(93000, 'https://ror.org/03rke0285', 'en', 1, 'https://ror.org/03rke0285 Baker Heart and Diabetes Institute'),
(93001, 'https://ror.org/01r96cc35', 'fr', 1, 'https://ror.org/01r96cc35 Laboratoire Universitaire des Sciences AppliquƩes de Cherbourg'),
(93002, 'https://ror.org/01v5e3436', 'es', 1, 'https://ror.org/01v5e3436 Andalusian Center for Developmental Biology Centro Andaluz de BiologĆ­a del Desarrollo'),
(93003, 'https://ror.org/03102fn17', 'en', 1, 'https://ror.org/03102fn17 British Oceanographic Data Centre'),
(93004, 'https://ror.org/03a1zvg88', 'en', 1, 'https://ror.org/03a1zvg88 State Key Laboratory of Tree Genetics and Breeding ęž—ęœØé—ä¼ č‚²ē§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93005, 'https://ror.org/04zytdm29', 'en', 1, 'https://ror.org/04zytdm29 New York Water Science Center'),
(93006, 'https://ror.org/03hfcy355', 'fr', 1, 'https://ror.org/03hfcy355 Physiopathologie et StratƩgies d''Imagerie du Remodelage cardiovasculaire'),
(93007, 'https://ror.org/04kjeyv82', 'en', 1, 'https://ror.org/04kjeyv82 Aljeel Aljadeed University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬ŁŠŁ„ Ų§Ł„Ų¬ŲÆŁŠŲÆ'),
(93008, 'https://ror.org/03cq0jg45', 'fr', 1, 'https://ror.org/03cq0jg45 Laboratoire Sciences et MƩthodes SƩparatives'),
(93009, 'https://ror.org/03vh04164', 'en', 1, 'https://ror.org/03vh04164 Manchester Community College - Connecticut'),
(93010, 'https://ror.org/05wps8h17', 'de', 1, 'https://ror.org/05wps8h17 Deutsches ArchƤologisches Institut, Abteilung Cairo German Archaeological Institute, Cairo Department'),
(93011, 'https://ror.org/02xstm723', 'en', 1, 'https://ror.org/02xstm723 HMU Potsdam – Health and Medical University Potsdam'),
(93012, 'https://ror.org/02e76w165', 'en', 1, 'https://ror.org/02e76w165 R. R. Lalan College'),
(93013, 'https://ror.org/04vpyax58', 'no_lang_code', 1, 'https://ror.org/04vpyax58 Drohobych Ivan Franko State Pedagogical University Š”Ń€Š¾Š³Š¾Š±ŠøŃ†ŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана Франка'),
(93014, 'https://ror.org/04mv64y65', 'id', 1, 'https://ror.org/04mv64y65 Universitas Multi Data Palembang'),
(93015, 'https://ror.org/019q26a60', 'en', 1, 'https://ror.org/019q26a60 Oklahoma-Texas Water Science Center'),
(93016, 'https://ror.org/05qx1va48', 'en', 1, 'https://ror.org/05qx1va48 Lower Mississippi-Gulf Water Science Center'),
(93017, 'https://ror.org/0539ybq07', 'en', 1, 'https://ror.org/0539ybq07 Animal Free Research UK'),
(93018, 'https://ror.org/03k0z2z93', 'en', 1, 'https://ror.org/03k0z2z93 WZB Berlin Social Science Center Wissenschaftszentrum Berlin für Sozialforschung gGmbH'),
(93019, 'https://ror.org/01ehyh486', 'it', 1, 'https://ror.org/01ehyh486 Ministero dell''Istruzione e del Merito Ministry of Education and Merit'),
(93020, 'https://ror.org/041zb4f52', 'en', 1, 'https://ror.org/041zb4f52 Youth Scotland'),
(93021, 'https://ror.org/00r1f3009', 'en', 1, 'https://ror.org/00r1f3009 Western Geographic Science Center'),
(93022, 'https://ror.org/010xaa060', 'en', 1, 'https://ror.org/010xaa060 National Science Foundation of Sri Lanka ą¶¢ą·ą¶­ą·’ą¶š ą·€ą·’ą¶Æą·Šā€ą¶ŗą· ඓදනම, ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą·ą·€'),
(93023, 'https://ror.org/01zgxn874', 'de', 1, 'https://ror.org/01zgxn874 Culinary Medicine Deutschland e.V.'),
(93024, 'https://ror.org/02rspp784', 'de', 1, 'https://ror.org/02rspp784 Deutsches Archäologisches Institut, Kommission für Archäologie Außereuropäischer Kulturen German Archaeological Institute, Commission for Archaeology of Non-European Cultures'),
(93025, 'https://ror.org/04cx0dm67', 'id', 1, 'https://ror.org/04cx0dm67 Institut Teknologi Statistika dan Bisnis Muhammadiyah Semarang'),
(93026, 'https://ror.org/03t0xv603', 'de', 0, 'https://ror.org/03t0xv603 Universitätsklinik für Chirurgie Wien'),
(93027, 'https://ror.org/00xvjv861', 'en', 1, 'https://ror.org/00xvjv861 JSS Dental College and Hospital'),
(93028, 'https://ror.org/03eznrw16', 'en', 1, 'https://ror.org/03eznrw16 Berlin University of the Arts Universität der Künste Berlin'),
(93029, 'https://ror.org/00708jp83', 'en', 1, 'https://ror.org/00708jp83 International Hellenic University UniversitĆ© internationale hellĆ©nique Διεθνές Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ΕλλάΓος'),
(93030, 'https://ror.org/04v106c48', 'fr', 1, 'https://ror.org/04v106c48 Biologie du cartilage, biotechnologie et tƩlƩmƩdecine'),
(93031, 'https://ror.org/03zjsxj44', 'en', 1, 'https://ror.org/03zjsxj44 Vinnytsia Mykhailo Kotsiubynskyi State Pedagogical University Š’Ń–Š½Š½ŠøŃ†ŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠœŠøŃ…Š°Š¹Š»Š° ŠšŠ¾Ń†ŃŽŠ±ŠøŠ½ŃŃŒŠŗŠ¾Š³Š¾'),
(93032, 'https://ror.org/0269yh980', 'fr', 1, 'https://ror.org/0269yh980 Institut de recherche en droit privƩ'),
(93033, 'https://ror.org/0591s4t67', 'es', 1, 'https://ror.org/0591s4t67 Servicio Gallego de Salud'),
(93034, 'https://ror.org/03tg3dp70', 'de', 1, 'https://ror.org/03tg3dp70 Deutsches ArchƤologisches Institut, Orient-Abteilung German Archaeological Institute, Orient Department'),
(93035, 'https://ror.org/026f1w290', 'en', 1, 'https://ror.org/026f1w290 Washington Water Science Center'),
(93036, 'https://ror.org/00y3jmn59', 'fr', 1, 'https://ror.org/00y3jmn59 Institut de Recherche en Systèmes Electroniques Embarqués'),
(93037, 'https://ror.org/038szmr31', 'es', 1, 'https://ror.org/038szmr31 Centro de AstrobiologĆ­a'),
(93038, 'https://ror.org/00kk8cj26', 'fr', 1, 'https://ror.org/00kk8cj26 Laboratoire de psychologie Caen Normandie'),
(93039, 'https://ror.org/03a6fgn14', 'en', 1, 'https://ror.org/03a6fgn14 Mindanao State University - Tawi-Tawi College of Technology and Oceanography'),
(93040, 'https://ror.org/02778hg05', 'de', 1, 'https://ror.org/02778hg05 Trier University UniversitƤt Trier'),
(93041, 'https://ror.org/01y04h970', 'es', 1, 'https://ror.org/01y04h970 Fundación para el Fomento de la Innovación Industrial'),
(93042, 'https://ror.org/01d002842', 'en', 1, 'https://ror.org/01d002842 Jozac Publishers'),
(93043, 'https://ror.org/04t2m2598', 'en', 1, 'https://ror.org/04t2m2598 Center for Remote Sensing and Integrated Systems'),
(93044, 'https://ror.org/00qbajd92', 'en', 1, 'https://ror.org/00qbajd92 Eurographics'),
(93045, 'https://ror.org/0503gdw52', 'de', 1, 'https://ror.org/0503gdw52 Deutsches ArchƤologisches Institut, Eurasien-Abteilung German Archaeological Institute, Eurasia Department'),
(93046, 'https://ror.org/00wv14x31', 'en', 1, 'https://ror.org/00wv14x31 State Key Laboratory of Pulsed Power Laser Technology č„‰å†²åŠŸēŽ‡ęæ€å…‰ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93047, 'https://ror.org/0307c8498', 'en', 1, 'https://ror.org/0307c8498 Science and Decisions Center'),
(93048, 'https://ror.org/029grsj96', 'en', 1, 'https://ror.org/029grsj96 Volcano Science Center'),
(93049, 'https://ror.org/03vr22992', 'en', 1, 'https://ror.org/03vr22992 Connecticut State Colleges and Universities'),
(93050, 'https://ror.org/00m6gtd76', 'fr', 1, 'https://ror.org/00m6gtd76 Laboratoire de Glycobiologie et Matrice Extracellulaire VƩgƩtale'),
(93051, 'https://ror.org/05d2yfz11', 'en', 1, 'https://ror.org/05d2yfz11 National University of Defense Technology äø­å›½äŗŗę°‘č§£ę”¾å†›å›½é˜²ē§‘å­¦ęŠ€ęœÆå¤§å­¦'),
(93052, 'https://ror.org/01p2gfs74', 'es', 1, 'https://ror.org/01p2gfs74 Fundación Sancho el Sabio Fundazioa Sancho el Sabio Foundation'),
(93053, 'https://ror.org/051kyr374', 'no_lang_code', 1, 'https://ror.org/051kyr374 TRAPIL (France)'),
(93054, 'https://ror.org/00ffkqt27', 'en', 1, 'https://ror.org/00ffkqt27 Collaborative Innovation Centre for Advanced Ship and Deep-Sea Exploration é«˜ę–°čˆ¹čˆ¶äøŽę·±ęµ·å¼€å‘č£…å¤‡ååŒåˆ›ę–°äø­åæƒ'),
(93055, 'https://ror.org/00xnj6419', 'es', 1, 'https://ror.org/00xnj6419 Instituto Universitario de Ciencias de la Educación'),
(93056, 'https://ror.org/02mz39b41', 'fr', 1, 'https://ror.org/02mz39b41 Biologie, GƩnƩtique et ThƩrapies ostƩoArticulaires et Respiratoires'),
(93057, 'https://ror.org/017bbsh25', 'no_lang_code', 1, 'https://ror.org/017bbsh25 BSP Business & Law School – Hochschule für Management und Recht'),
(93058, 'https://ror.org/04b8tg719', 'fr', 1, 'https://ror.org/04b8tg719 UnitƩ de recherche interdisciplinaire pour la prƩvention et le traitement des cancers'),
(93059, 'https://ror.org/04j5n8f24', 'no_lang_code', 1, 'https://ror.org/04j5n8f24 Canal de Experiencias HidrodinƔmicas de El Pardo (Spain)'),
(93060, 'https://ror.org/05ezwr821', 'en', 1, 'https://ror.org/05ezwr821 Namur Institute for Complex Systems'),
(93061, 'https://ror.org/034p80033', 'fr', 1, 'https://ror.org/034p80033 Institut Caennais de Recherche Juridique'),
(93062, 'https://ror.org/001vjqx13', 'en', 1, 'https://ror.org/001vjqx13 MSB Medical School Berlin'),
(93063, 'https://ror.org/010e7zh94', 'de', 1, 'https://ror.org/010e7zh94 Deutsches Rettungsrobotik-Zentrum'),
(93064, 'https://ror.org/04eqg3754', 'en', 1, 'https://ror.org/04eqg3754 Science Analytics and Synthesis'),
(93065, 'https://ror.org/006thab72', 'en', 1, 'https://ror.org/006thab72 MSH Medical School Hamburg – University of Applied Sciences and Medical University'),
(93066, 'https://ror.org/01jn0j059', 'en', 1, 'https://ror.org/01jn0j059 Bohdan Khmelnytskyi National Academy of the State Border Guard Service of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Державної прикорГонної служби України імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(93067, 'https://ror.org/005ba5y61', 'fr', 1, 'https://ror.org/005ba5y61 Laboratoire d''Ingénierie des Systèmes'),
(93068, 'https://ror.org/0295z7538', 'no_lang_code', 1, 'https://ror.org/0295z7538 DNV (United Kingdom)'),
(93069, 'https://ror.org/0135q5q22', 'en', 1, 'https://ror.org/0135q5q22 Northern Prairie Wildlife Research Center'),
(93070, 'https://ror.org/03bcjfh39', 'en', 1, 'https://ror.org/03bcjfh39 National Pirogov Memorial Medical University, Vinnytsya Винницкий Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š.И. ŠŸŠøŃ€Š¾Š³Š¾Š²Š° Š’Ń–Š½Š½ŠøŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ім. М.І. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(93071, 'https://ror.org/012tb2g32', 'en', 1, 'https://ror.org/012tb2g32 Tianjin University 天擄大学'),
(93072, 'https://ror.org/05d3ntb42', 'en', 1, 'https://ror.org/05d3ntb42 Instytut Medycyny Doświadczalnej i Klinicznej im. Mirosława Mossakowskiego Polskiej Akademii Nauk Mossakowski Medical Research Institute,  Polish Academy of Sciences'),
(93073, 'https://ror.org/023md1f53', 'de', 1, 'https://ror.org/023md1f53 Deutsches ArchƤologisches Institut, Abteilung Rom German Archaeological Institute, Rome Department'),
(93074, 'https://ror.org/03dz8mb53', 'en', 1, 'https://ror.org/03dz8mb53 State Key Laboratory of Advanced Optical Communication Systems and Networks åŒŗåŸŸå…‰ēŗ¤é€šäæ”ē½‘äøŽę–°åž‹å…‰é€šäæ”ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93075, 'https://ror.org/04qe5y072', 'en', 1, 'https://ror.org/04qe5y072 North Borneo University College'),
(93076, 'https://ror.org/020pkqq17', 'en', 1, 'https://ror.org/020pkqq17 Manchester Community College - New Hampshire'),
(93077, 'https://ror.org/00zrq4606', 'en', 1, 'https://ror.org/00zrq4606 Southwest Biological Science Center'),
(93078, 'https://ror.org/007hv9f69', 'fr', 1, 'https://ror.org/007hv9f69 Laboratoire d''Ʃconomie Rouen Normandie'),
(93079, 'https://ror.org/04bpmxx45', 'en', 1, 'https://ror.org/04bpmxx45 Instituto Milenio Centro de Regulación del Genoma Millenium Institute Center for Genome Regulation'),
(93080, 'https://ror.org/04mbmkb12', 'fr', 1, 'https://ror.org/04mbmkb12 IdentitƩ et subjectivitƩ'),
(93081, 'https://ror.org/03vn1bh77', 'it', 1, 'https://ror.org/03vn1bh77 Istituto Nazionale di Ricerca Metrologica'),
(93082, 'https://ror.org/02nak7d72', 'no_lang_code', 1, 'https://ror.org/02nak7d72 Shandong Sinder Technology Co., Ltd. å±±äøœäæ”å¾—ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(93083, 'https://ror.org/006xfsx34', 'en', 1, 'https://ror.org/006xfsx34 Geology, Geophysics, and Geochemistry Science Center'),
(93084, 'https://ror.org/0564q8x20', 'fr', 1, 'https://ror.org/0564q8x20 Equipe de recherche interdisciplinaire sur la Grande Bretagne, l’Irlande et l’AmĆ©rique du Nord'),
(93085, 'https://ror.org/05xa0v755', 'en', 1, 'https://ror.org/05xa0v755 International University of Science and Technology in Kuwait'),
(93086, 'https://ror.org/01w9dr041', 'es', 1, 'https://ror.org/01w9dr041 Laboratorio Central Oficial de Electrotecnica'),
(93087, 'https://ror.org/04gjptv97', 'en', 1, 'https://ror.org/04gjptv97 AIDA Data Hub'),
(93088, 'https://ror.org/01wdf5p42', 'en', 1, 'https://ror.org/01wdf5p42 Independent Authority for Public Revenue'),
(93089, 'https://ror.org/01mz2pn83', 'de', 1, 'https://ror.org/01mz2pn83 Vereinigung Ɩsterreichischer Bibliothekarinnen und Bibliothekare'),
(93090, 'https://ror.org/03k2dvp65', 'en', 1, 'https://ror.org/03k2dvp65 Ithaka Institut ist ein internationales Netzwerk für Kohlenstoff-Strategien und Klimafarming Ithaka Institute for Carbon Strategies'),
(93091, 'https://ror.org/000n9zg48', 'fr', 1, 'https://ror.org/000n9zg48 Groupe de Recherche sur le Handicap Ventilatoire et Neurologique'),
(93092, 'https://ror.org/03d3nry68', 'en', 1, 'https://ror.org/03d3nry68 St. Petersburg Coastal and Marine Science Center'),
(93093, 'https://ror.org/04yv20134', 'no_lang_code', 1, 'https://ror.org/04yv20134 Fiberhome Technology Group (China)'),
(93094, 'https://ror.org/00wdpp052', 'fr', 1, 'https://ror.org/00wdpp052 Laboratoire de SƩcuritƩ des ProcƩdƩs Chimiques'),
(93095, 'https://ror.org/0360dkv71', 'en', 1, 'https://ror.org/0360dkv71 Chinese Academy of Forestry äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(93096, 'https://ror.org/010wgh593', 'it', 1, 'https://ror.org/010wgh593 Consorzio Interuniversitario per lo Sviluppo dei Sistemi a Grande Interfase Research Center for Colloids and Nanoscience'),
(93097, 'https://ror.org/05jw85995', 'fr', 1, 'https://ror.org/05jw85995 CNRT MatƩriaux Centre National de Recherche Technologique'),
(93098, 'https://ror.org/044fgj614', 'ca', 1, 'https://ror.org/044fgj614 Institut de CiĆØncies del Cosmos Institute of Cosmos Sciences'),
(93099, 'https://ror.org/00nykqr56', 'sl', 1, 'https://ror.org/00nykqr56 Centro di ricerche scientifiche Capodistria Science and Research Centre of Koper Znanstveno-raziskovalno srediŔče Koper'),
(93100, 'https://ror.org/02x5wtf56', 'en', 1, 'https://ror.org/02x5wtf56 Abu Dhabi Department of Education and Knowledge ŲÆŲ§Ų¦Ų±Ų© Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… ŁˆŲ§Ł„Ł…Ų¹Ų±ŁŲ©'),
(93101, 'https://ror.org/008bp5f48', 'en', 1, 'https://ror.org/008bp5f48 ICMR National Institute for Research in Environmental Health'),
(93102, 'https://ror.org/0265m3333', 'en', 1, 'https://ror.org/0265m3333 Australian and New Zealand College of Anaesthetists'),
(93103, 'https://ror.org/01mk88r89', 'en', 1, 'https://ror.org/01mk88r89 Jizzakh branch of the National University of Uzbekistan named after Mirzo Ulugbek Mirzo Ulug`bek nomidagi O`zbekiston milliy universiteti Jizzax filiali'),
(93104, 'https://ror.org/04wd74742', 'no_lang_code', 1, 'https://ror.org/04wd74742 Sinomach (China) äø­å›½ęœŗę¢°å·„äøšé›†å›¢ęœ‰é™å…¬åø'),
(93105, 'https://ror.org/03aabbc27', 'en', 1, 'https://ror.org/03aabbc27 University of Eastern Philippines'),
(93106, 'https://ror.org/04ycjr830', 'es', 1, 'https://ror.org/04ycjr830 Espacio ECP - Núcleo de Estudios y Formación en Terapia Centrada en la Persona'),
(93107, 'https://ror.org/04xfnd416', 'en', 1, 'https://ror.org/04xfnd416 International Vision University Uluslarası Vizyon Ünversitesi'),
(93108, 'https://ror.org/03kzgzp82', 'it', 1, 'https://ror.org/03kzgzp82 Conservatorio di Musica Giuseppe Tartini'),
(93109, 'https://ror.org/04e41m429', 'en', 1, 'https://ror.org/04e41m429 Northern Rocky Mountain Science Center'),
(93110, 'https://ror.org/00qtv5q45', 'en', 1, 'https://ror.org/00qtv5q45 State Key Laboratory of Networking and Switching Technology ē½‘ē»œäøŽäŗ¤ę¢ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93111, 'https://ror.org/01rg4e096', 'en', 1, 'https://ror.org/01rg4e096 Virginia and West Virginia Water Science Center'),
(93112, 'https://ror.org/01hp6xm80', 'en', 1, 'https://ror.org/01hp6xm80 NCCOS Hollings Marine Laboratory'),
(93113, 'https://ror.org/03fcaa436', 'en', 1, 'https://ror.org/03fcaa436 State Key Laboratory of Special Fiber Composite Materials ē‰¹ē§ēŗ¤ē»“å¤åˆęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93114, 'https://ror.org/03sjf7w71', 'en', 1, 'https://ror.org/03sjf7w71 New England Water Science Center'),
(93115, 'https://ror.org/0512g3q82', 'en', 1, 'https://ror.org/0512g3q82 Weston Family Foundation'),
(93116, 'https://ror.org/011647w73', 'en', 1, 'https://ror.org/011647w73 National University of Uzbekistan OŹ»zbekiston Milliy Universiteti ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Узбекистана'),
(93117, 'https://ror.org/04cr3xz70', 'fr', 1, 'https://ror.org/04cr3xz70 Architecture, Territoire, Environnement'),
(93118, 'https://ror.org/05w4xtm55', 'en', 1, 'https://ror.org/05w4xtm55 The Federal Polytechnic Ilaro'),
(93119, 'https://ror.org/0258qhn75', 'en', 1, 'https://ror.org/0258qhn75 State Enterprise "Scientific and Research Institute for Metrology of Measurement and Control Systems"'),
(93120, 'https://ror.org/02j0x4n73', 'en', 1, 'https://ror.org/02j0x4n73 Pacific Coastal and Marine Science Center'),
(93121, 'https://ror.org/043v8pc22', 'en', 1, 'https://ror.org/043v8pc22 Institute for Research and Innovation in Biomedicine'),
(93122, 'https://ror.org/05nqsnd28', 'de', 1, 'https://ror.org/05nqsnd28 Deutsches ArchƤologisches Institut, Abteilung Athen German Archaeological Institute, Athens Department'),
(93123, 'https://ror.org/04dv0yy25', 'en', 1, 'https://ror.org/04dv0yy25 Almaty Humanitarian-Economic University Алматинский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(93124, 'https://ror.org/04cgczp52', 'en', 1, 'https://ror.org/04cgczp52 Transnational Press London'),
(93125, 'https://ror.org/03ej8a714', 'en', 1, 'https://ror.org/03ej8a714 Centro Internacional de MƩtodos NumƩricos en Ingenierƭa International Center for Numerical Methods in Engineering'),
(93126, 'https://ror.org/02bcp0f55', 'fr', 1, 'https://ror.org/02bcp0f55 Equipe de recherche sur les littƩratures, les imaginaires et les sociƩtƩs'),
(93127, 'https://ror.org/029qa8t82', 'fr', 1, 'https://ror.org/029qa8t82 Groupe de recherche Rouennais en Informatique Fondamentale'),
(93128, 'https://ror.org/00067tc54', 'en', 0, 'https://ror.org/00067tc54 NSW Department of Planning and Environment'),
(93129, 'https://ror.org/00ep91e20', 'en', 1, 'https://ror.org/00ep91e20 New Mexico Water Science Center'),
(93130, 'https://ror.org/05y7kyx32', 'no_lang_code', 1, 'https://ror.org/05y7kyx32 Medidata (United States)'),
(93131, 'https://ror.org/047cwsy20', 'en', 1, 'https://ror.org/047cwsy20 South Atlantic Water Science Center'),
(93132, 'https://ror.org/01ewh7m12', 'en', 1, 'https://ror.org/01ewh7m12 International Computer Science Institute'),
(93133, 'https://ror.org/0009xxz90', 'en', 0, 'https://ror.org/0009xxz90 Technological Educational Institute of Eastern Macedonia and Thrace Ī‘Ī½ĻŽĻ„Ī±Ļ„Īæ Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ανατολικής ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚ και Ī˜ĻĪ¬ĪŗĪ·Ļ‚'),
(93134, 'https://ror.org/03zpdb397', 'fr', 1, 'https://ror.org/03zpdb397 Centre d’Etude et de recherche Editer/InterprĆ©ter'),
(93135, 'https://ror.org/0159z1911', 'es', 1, 'https://ror.org/0159z1911 Escuela Oficial de Idiomas de Granada'),
(93136, 'https://ror.org/02xvkz230', 'fr', 1, 'https://ror.org/02xvkz230 Dynamique du langage in situ'),
(93137, 'https://ror.org/04jya6a65', 'en', 1, 'https://ror.org/04jya6a65 Pennsylvania Water Science Center'),
(93138, 'https://ror.org/05k71g406', 'fr', 1, 'https://ror.org/05k71g406 GƩnomique du cancer et du cerveau'),
(93139, 'https://ror.org/04e1nss61', 'de', 1, 'https://ror.org/04e1nss61 Deutsches ArchƤologisches Institut, Abteilung Madrid German Archaeological Institute, Madrid Department'),
(93140, 'https://ror.org/03agg3g06', 'en', 1, 'https://ror.org/03agg3g06 Fujian Academy of Environmental Sciences ē¦å»ŗēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(93141, 'https://ror.org/04ec7mt05', 'en', 1, 'https://ror.org/04ec7mt05 National Geospatial Technical Operations Center'),
(93142, 'https://ror.org/02dxm8k93', 'es', 1, 'https://ror.org/02dxm8k93 Pontifical Bolivarian University Universidad Pontificia Bolivariana'),
(93143, 'https://ror.org/03xj2sn10', 'es', 1, 'https://ror.org/03xj2sn10 Complejo Hospitalario Universitario de Ferrol'),
(93144, 'https://ror.org/00gy2ar74', 'ca', 1, 'https://ror.org/00gy2ar74 Institut de Recerca Sant Joan de DƩu'),
(93145, 'https://ror.org/02pjt4q95', 'en', 1, 'https://ror.org/02pjt4q95 Hypothesis Fund'),
(93146, 'https://ror.org/02b5d8509', 'en', 1, 'https://ror.org/02b5d8509 Natural Environment Research Council'),
(93147, 'https://ror.org/0555x2b41', 'en', 1, 'https://ror.org/0555x2b41 ANZCA Clinical Trials Network'),
(93148, 'https://ror.org/01a6c6c20', 'fr', 1, 'https://ror.org/01a6c6c20 Dynamique Microbienne associƩe aux Infections Urinaires et Respiratoires'),
(93149, 'https://ror.org/04jg2jk08', 'en', 1, 'https://ror.org/04jg2jk08 State Key Laboratory of High Performance Civil Engineering Materials é«˜ę€§čƒ½åœŸęœØå·„ēØ‹ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93150, 'https://ror.org/02s2kph56', 'en', 1, 'https://ror.org/02s2kph56 Wyoming-Montana Water Science Center'),
(93151, 'https://ror.org/03e1t2x83', 'en', 1, 'https://ror.org/03e1t2x83 Eastern Ecological Science Center'),
(93152, 'https://ror.org/05waa5295', 'en', 1, 'https://ror.org/05waa5295 Gouvernement du QuƩbec Government of Quebec'),
(93153, 'https://ror.org/05q9y3f51', 'de', 1, 'https://ror.org/05q9y3f51 Deutsches ArchƤologisches Institut, Abteilung Istanbul German Archaeological Institute, Istanbul Department'),
(93154, 'https://ror.org/01f1vfy95', 'fr', 1, 'https://ror.org/01f1vfy95 Laboratoire d''Informatique, du Traitement de l''Information et des SystĆØmes'),
(93155, 'https://ror.org/04cdk4t75', 'fr', 1, 'https://ror.org/04cdk4t75 Centre Hospitalier Universitaire de Rouen'),
(93156, 'https://ror.org/034feyf26', 'fr', 1, 'https://ror.org/034feyf26 Physiopathologie, autoimmunitƩ, maladies neuromusculaire et thƩrapie rƩgƩnƩratrice'),
(93157, 'https://ror.org/03tq10v65', 'it', 1, 'https://ror.org/03tq10v65 Fondazione ICSC Centro Nazionale di Ricerca in High Performance Computing, Big Data e Quantum Computing'),
(93158, 'https://ror.org/00yt0ea73', 'en', 1, 'https://ror.org/00yt0ea73 Stanford Maternal and Child Health Research Institute'),
(93159, 'https://ror.org/004r4ve77', 'no_lang_code', 1, 'https://ror.org/004r4ve77 DNV (Netherlands)'),
(93160, 'https://ror.org/039qvmf95', 'en', 1, 'https://ror.org/039qvmf95 Wallenberg Wood Science Center'),
(93161, 'https://ror.org/03d0r5461', 'no_lang_code', 1, 'https://ror.org/03d0r5461 Sinoma Science & Technology Co., Ltd. (China) äø­ęē§‘ęŠ€'),
(93162, 'https://ror.org/00qvx9r67', 'no_lang_code', 1, 'https://ror.org/00qvx9r67 Jiangsu Provincial Academy of Building Research (China) ę±Ÿč‹ēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(93163, 'https://ror.org/04ev03g22', 'en', 1, 'https://ror.org/04ev03g22 Science for Life Laboratory'),
(93164, 'https://ror.org/01d7pgx08', 'it', 1, 'https://ror.org/01d7pgx08 Museo Civico Alpino "Arnaldo Tazzetti"'),
(93165, 'https://ror.org/038sc5x72', 'no_lang_code', 1, 'https://ror.org/038sc5x72 Dassault SystĆØmes (France)'),
(93166, 'https://ror.org/05p03en70', 'no_lang_code', 1, 'https://ror.org/05p03en70 ASL Environmental Sciences ASL Environmental Sciences (Canada)'),
(93167, 'https://ror.org/03a9ssm23', 'en', 1, 'https://ror.org/03a9ssm23 Utah Water Science Center'),
(93168, 'https://ror.org/040d87505', 'fr', 1, 'https://ror.org/040d87505 Nutrition, Inflammation et axe Microbiote-Intestin-Cerveau'),
(93169, 'https://ror.org/04pbtsc74', 'en', 1, 'https://ror.org/04pbtsc74 Plekhanov Russian University of Economics Российский ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š“. Š’. ŠŸŠ»ŠµŃ…Š°Š½Š¾Š²Š°'),
(93170, 'https://ror.org/024v1wz08', 'fr', 1, 'https://ror.org/024v1wz08 Lettres, arts du spectacle, langues romanes'),
(93171, 'https://ror.org/01n57zj03', 'en', 0, 'https://ror.org/01n57zj03 State Key Laboratory of Medical Genomics åŒ»å­¦é—ä¼ å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93172, 'https://ror.org/02pjsf822', 'en', 1, 'https://ror.org/02pjsf822 Caribbean-Florida Water Science Center'),
(93173, 'https://ror.org/012mkjy35', 'en', 1, 'https://ror.org/012mkjy35 Bath Clinic'),
(93174, 'https://ror.org/05pg2cw06', 'en', 1, 'https://ror.org/05pg2cw06 Azarbaijan Shahid Madani University دانؓگاه Ų“Ł‡ŪŒŲÆ Ł…ŲÆŁ†ŪŒ Ų¢Ų°Ų±ŲØŲ§ŪŒŲ¬Ų§Ł†'),
(93175, 'https://ror.org/02mtckd63', 'fr', 1, 'https://ror.org/02mtckd63 Centre de Recherche Risques et VulnƩrabilitƩs'),
(93176, 'https://ror.org/03p0tqk33', 'en', 0, 'https://ror.org/03p0tqk33 Natural Resources, Energy and Science Authority of Sri Lanka'),
(93177, 'https://ror.org/04e9rea41', 'fr', 1, 'https://ror.org/04e9rea41 CEntre de Recherche sur les MUtations du Droit et les mutations sociales'),
(93178, 'https://ror.org/03x5agy13', 'en', 1, 'https://ror.org/03x5agy13 National Geological and Geophysical Data Preservation Program'),
(93179, 'https://ror.org/026jccz16', 'fr', 1, 'https://ror.org/026jccz16 Laboratoire des dynamiques sociales'),
(93180, 'https://ror.org/04m0qde81', 'en', 1, 'https://ror.org/04m0qde81 State Key Laboratory of Medical Genomics åŒ»å­¦åŸŗå› ē»„å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93181, 'https://ror.org/00a7xgz80', 'en', 1, 'https://ror.org/00a7xgz80 NSW Department of Planning, Housing and Infrastructure'),
(93182, 'https://ror.org/04myprd34', 'no_lang_code', 1, 'https://ror.org/04myprd34 Cell2Cure ApS'),
(93183, 'https://ror.org/05v509s40', 'fr', 1, 'https://ror.org/05v509s40 UniversitƩ Le Havre Normandie'),
(93184, 'https://ror.org/03sny2w29', 'fr', 1, 'https://ror.org/03sny2w29 Communication BactƩrienne et StratƩgie Anti-infectieuses'),
(93185, 'https://ror.org/04pjn5n51', 'fr', 1, 'https://ror.org/04pjn5n51 Groupe de recherche d’histoire'),
(93186, 'https://ror.org/01k40cz91', 'fr', 1, 'https://ror.org/01k40cz91 Normandie UniversitƩ'),
(93187, 'https://ror.org/017ed2k28', 'fr', 1, 'https://ror.org/017ed2k28 EndothƩlium, valvulopathies et insuffisance cardiaque'),
(93188, 'https://ror.org/01kevcn70', 'en', 1, 'https://ror.org/01kevcn70 Arab Academy For E-Business'),
(93189, 'https://ror.org/05qms6x58', 'en', 1, 'https://ror.org/05qms6x58 Ohio-Kentucky-Indiana Water Science Center'),
(93190, 'https://ror.org/01zzvcj05', 'en', 1, 'https://ror.org/01zzvcj05 General Chemical State Laboratory Ī“ĪµĪ½Ī¹ĪŗĪæĻ Χημείου του ĪšĻĪ¬Ļ„ĪæĻ…Ļ‚'),
(93191, 'https://ror.org/02yvdat18', 'en', 1, 'https://ror.org/02yvdat18 Neuroendocrine, Endocrine and Germinal Differentiation Communication'),
(93192, 'https://ror.org/051x1vv05', 'en', 1, 'https://ror.org/051x1vv05 Skyfox Publishing Group'),
(93193, 'https://ror.org/04w7xqn11', 'fr', 1, 'https://ror.org/04w7xqn11 Aliments BioprocƩdƩs Toxicologie Environnements'),
(93194, 'https://ror.org/046dym823', 'fr', 1, 'https://ror.org/046dym823 Groupe de recherche IdentitƩs et Cultures'),
(93195, 'https://ror.org/035jpr562', 'en', 1, 'https://ror.org/035jpr562 National Geospatial Program'),
(93196, 'https://ror.org/04f7h3b65', 'en', 1, 'https://ror.org/04f7h3b65 Universidad de San AndrƩs University of San AndrƩs UniversitƩ de san andrƩs'),
(93197, 'https://ror.org/04fzwnh64', 'en', 1, 'https://ror.org/04fzwnh64 Northwestern Medicine'),
(93198, 'https://ror.org/00h3hwc05', 'en', 1, 'https://ror.org/00h3hwc05 Bristol General Hospital'),
(93199, 'https://ror.org/00xsz4758', 'en', 1, 'https://ror.org/00xsz4758 Leukaemia UK'),
(93200, 'https://ror.org/013a79z51', 'en', 1, 'https://ror.org/013a79z51 Guilin Tourism University ę”‚ęž—ę—…ęøøå­¦é™¢'),
(93201, 'https://ror.org/02525b202', 'no_lang_code', 1, 'https://ror.org/02525b202 Beijing Renchuang Technology Group Co., Ltd. (China) åŒ—äŗ¬ä»åˆ›ē§‘ęŠ€é›†å›¢ęœ‰é™å…¬åø'),
(93202, 'https://ror.org/030tc8e27', 'es', 1, 'https://ror.org/030tc8e27 Universidad Estatal de Estudios Pedagógicos'),
(93203, 'https://ror.org/04g1a0w27', 'en', 1, 'https://ror.org/04g1a0w27 University of Oklahoma - Tulsa'),
(93204, 'https://ror.org/02y0cs367', 'en', 1, 'https://ror.org/02y0cs367 Family Planning NSW'),
(93205, 'https://ror.org/02ahxdd04', 'en', 0, 'https://ror.org/02ahxdd04 Spectrum Health'),
(93206, 'https://ror.org/00krnv781', 'fr', 1, 'https://ror.org/00krnv781 Network for Oral and Bone Health Research RƩseau de Recherche en SantƩ Buccodentaire et Osseuse'),
(93207, 'https://ror.org/03yycdv57', 'es', 1, 'https://ror.org/03yycdv57 Instituto GeogrƔfico Nacional National Geographic Institute'),
(93208, 'https://ror.org/04xrsn650', 'no_lang_code', 1, 'https://ror.org/04xrsn650 Ninja Theory (United Kingdom)'),
(93209, 'https://ror.org/04b404920', 'de', 1, 'https://ror.org/04b404920 Alice Salomon Hochschule Berlin Alice-Salomon-Hochschule Berlin'),
(93210, 'https://ror.org/02qjttz75', 'en', 1, 'https://ror.org/02qjttz75 Control Adaptativo Predictivo Experto Optimized Adaptive Control Systems'),
(93211, 'https://ror.org/009xdmc59', 'es', 1, 'https://ror.org/009xdmc59 BegoƱako Andra Mari Irakasleen Unibertsitate Eskola BegoƱako Andra Mari Teacher Training University College Escuela Universitaria de Magisterio BegoƱako Andra Mari'),
(93212, 'https://ror.org/04ect1284', 'en', 1, 'https://ror.org/04ect1284 Asthma UK Centre for Applied Research'),
(93213, 'https://ror.org/000ph9k36', 'de', 1, 'https://ror.org/000ph9k36 Universitäts-Kinderklinik Würzburg'),
(93214, 'https://ror.org/03pdbtd82', 'en', 1, 'https://ror.org/03pdbtd82 The Virgo Consortium'),
(93215, 'https://ror.org/01eef7f80', 'no_lang_code', 1, 'https://ror.org/01eef7f80 Scapa Group (United Kingdom)'),
(93216, 'https://ror.org/05xwcq167', 'es', 1, 'https://ror.org/05xwcq167 Autonomous University of Baja California Universidad Autónoma de Baja California'),
(93217, 'https://ror.org/03c7e3050', 'ca', 1, 'https://ror.org/03c7e3050 Fundació Salut i Envelliment UAB'),
(93218, 'https://ror.org/0083c5602', 'de', 1, 'https://ror.org/0083c5602 Damp Stiftung'),
(93219, 'https://ror.org/02b42av24', 'en', 1, 'https://ror.org/02b42av24 Institute of Agriculture and Agrotechnologies of Karakalpakstan Qaraqalpaqstan awıl xojalıǵı hĆ”m agrotexnologiyalar institutı Qoraqalpog''iston qishloq xo''jaligi va agrotexnologiyalar instituti Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø агротехнологий ŠšŠ°Ń€Š°ŠŗŠ°Š»ŠæŠ°ŠŗŃŃ‚ана'),
(93220, 'https://ror.org/00559m198', 'es', 1, 'https://ror.org/00559m198 Fundación Ciudad de la Energía'),
(93221, 'https://ror.org/02fkq9g11', 'en', 1, 'https://ror.org/02fkq9g11 Affiliated Hospital of Changzhi Institute of Traditional Chinese Medicine é•æę²»åø‚äø­åŒ»ē ”ē©¶ę‰€é™„å±žåŒ»é™¢'),
(93222, 'https://ror.org/00zvfs242', 'en', 1, 'https://ror.org/00zvfs242 National Academy of Neuropsychology'),
(93223, 'https://ror.org/04nm1cv11', 'en', 0, 'https://ror.org/04nm1cv11 University Hospitals Bristol NHS Foundation Trust'),
(93224, 'https://ror.org/006e5kg04', 'nl', 1, 'https://ror.org/006e5kg04 Vrije Universiteit Brussel'),
(93225, 'https://ror.org/038synb39', 'en', 1, 'https://ror.org/038synb39 Biofizikai Intézet Szegedi Biológiai Kutatóközpont Institute of Biophysics'),
(93226, 'https://ror.org/031p4kj21', 'en', 1, 'https://ror.org/031p4kj21 Bristol Royal Infirmary'),
(93227, 'https://ror.org/05gt9yw23', 'en', 1, 'https://ror.org/05gt9yw23 Jinka University įŒ‚įŠ•įŠ« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(93228, 'https://ror.org/05f8nen40', 'no_lang_code', 0, 'https://ror.org/05f8nen40 AT4 wireless (Spain)'),
(93229, 'https://ror.org/04gz5mr64', 'en', 1, 'https://ror.org/04gz5mr64 National Institute for the Humanities and Social Sciences'),
(93230, 'https://ror.org/035z18f46', 'en', 1, 'https://ror.org/035z18f46 State Key Laboratory of Quantum Optics and Quantum Optics Devices é‡å­å…‰å­¦äøŽå…‰é‡å­å™Øä»¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93231, 'https://ror.org/027yspv17', 'no_lang_code', 0, 'https://ror.org/027yspv17 Tinamenor (Spain)'),
(93232, 'https://ror.org/05vm26792', 'en', 1, 'https://ror.org/05vm26792 Capiz State University'),
(93233, 'https://ror.org/01bpa4157', 'ca', 0, 'https://ror.org/01bpa4157 Catalan Institute of Climate Sciences Institut CatalĆ  de CiĆØncies del Clima'),
(93234, 'https://ror.org/04bkzce69', 'en', 1, 'https://ror.org/04bkzce69 Laboratory Signaling and Cardiovascular Pathophysiology Singnalisation et physiopathologie cardiaque'),
(93235, 'https://ror.org/01v2rax29', 'en', 1, 'https://ror.org/01v2rax29 Design for All Foundation'),
(93236, 'https://ror.org/04cwfse38', 'en', 1, 'https://ror.org/04cwfse38 National Research Institute for Earth Science and Disaster Resilience å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗé˜²ē½ē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(93237, 'https://ror.org/022fjwc94', 'en', 1, 'https://ror.org/022fjwc94 Concordia Theological Seminary'),
(93238, 'https://ror.org/02cwv3a12', 'en', 1, 'https://ror.org/02cwv3a12 Pink Ribbon Foundation'),
(93239, 'https://ror.org/009q0jm69', 'en', 1, 'https://ror.org/009q0jm69 Agricultural Experiment Station'),
(93240, 'https://ror.org/018qmvm63', 'pt', 1, 'https://ror.org/018qmvm63 IST-ID - Associação do Instituto Superior Técnico para a Investigação e Desenvolvimento'),
(93241, 'https://ror.org/02cc3ss06', 'en', 1, 'https://ror.org/02cc3ss06 Huo Family Foundation'),
(93242, 'https://ror.org/00tpn9z48', 'es', 1, 'https://ror.org/00tpn9z48 Galicia Biological Mission Misión Biológica de Galicia'),
(93243, 'https://ror.org/03hpdk269', 'en', 0, 'https://ror.org/03hpdk269 Catalonian Research and Innovation Centre'),
(93244, 'https://ror.org/026z37f85', 'es', 1, 'https://ror.org/026z37f85 Sistema Nacional de Salud'),
(93245, 'https://ror.org/00b67z867', 'en', 1, 'https://ror.org/00b67z867 State Key Laboratory of Automotive Simulation and Control ę±½č½¦ä»æēœŸäøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93246, 'https://ror.org/004majf41', 'en', 1, 'https://ror.org/004majf41 Hobart and William Smith Colleges'),
(93247, 'https://ror.org/01xc6bj88', 'de', 1, 'https://ror.org/01xc6bj88 Leibniz-Institut für Werkstofforientierte Technologien Leibniz-Institut für Werkstofforientierte Technologien - IWT'),
(93248, 'https://ror.org/027620g33', 'it', 1, 'https://ror.org/027620g33 Fondazione Giannino Bassetti'),
(93249, 'https://ror.org/05bvkb649', 'es', 1, 'https://ror.org/05bvkb649 Diputación Foral de Gipuzkoa'),
(93250, 'https://ror.org/00f2pe266', 'en', 1, 'https://ror.org/00f2pe266 Institut Agama Islam Tafaqquh Fiddin Dumai'),
(93251, 'https://ror.org/03dcvs546', 'en', 1, 'https://ror.org/03dcvs546 Engineering Research Network Wales Rhwydwaith Ymchwil Peirianneg Cymru'),
(93252, 'https://ror.org/02hj2xr21', 'es', 1, 'https://ror.org/02hj2xr21 Salvadoran Lutheran University Universidad Luterana SalvadoreƱa'),
(93253, 'https://ror.org/018wp0236', 'no_lang_code', 1, 'https://ror.org/018wp0236 Asahi Kasei (Japan) ę—­åŒ–ęˆ'),
(93254, 'https://ror.org/03tdnf746', 'no_lang_code', 1, 'https://ror.org/03tdnf746 CETEMMSA Technological Centre (Spain)'),
(93255, 'https://ror.org/04f18cg29', 'en', 1, 'https://ror.org/04f18cg29 Israel Democracy Institute המכון ×”×™×©×Ø××œ×™ ×œ×“×ž×•×§×Ø×˜×™×”'),
(93256, 'https://ror.org/04rzqnw97', 'es', 1, 'https://ror.org/04rzqnw97 Conservatorio Profesional de MĆŗsica ā€œTeresa Berganzaā€'),
(93257, 'https://ror.org/04frvgs13', 'en', 1, 'https://ror.org/04frvgs13 Ontario Veterinary College'),
(93258, 'https://ror.org/02wjh7838', 'en', 1, 'https://ror.org/02wjh7838 National Transportation Center'),
(93259, 'https://ror.org/052gp0981', 'en', 1, 'https://ror.org/052gp0981 Multiple Sclerosis International Federation'),
(93260, 'https://ror.org/0177kw895', 'en', 1, 'https://ror.org/0177kw895 Beatrice and Samuel A. Seaver Foundation'),
(93261, 'https://ror.org/05q4hzm57', 'de', 1, 'https://ror.org/05q4hzm57 Kommission für Forschungsinformationen in Deutschland'),
(93262, 'https://ror.org/00qxcft19', 'de', 1, 'https://ror.org/00qxcft19 Werner Siemens Foundation Werner Siemens-Stiftung'),
(93263, 'https://ror.org/04ma29860', 'en', 0, 'https://ror.org/04ma29860 Fishing in Ireland'),
(93264, 'https://ror.org/00y6q9n79', 'en', 1, 'https://ror.org/00y6q9n79 Ministerio de Sanidad Servicios Sociales e Igualdad Ministry of Health'),
(93265, 'https://ror.org/01597g643', 'en', 1, 'https://ror.org/01597g643 State University of New York at Oswego Universidad Estatal de Nueva York en Oswego'),
(93266, 'https://ror.org/01qgecw57', 'en', 1, 'https://ror.org/01qgecw57 Bristol Royal Hospital for Children'),
(93267, 'https://ror.org/00pyxrd04', 'en', 1, 'https://ror.org/00pyxrd04 Foundation for Strategic Environmental Research'),
(93268, 'https://ror.org/00sef7t37', 'en', 1, 'https://ror.org/00sef7t37 Center for Alcohol Studies'),
(93269, 'https://ror.org/03g5ew477', 'en', 1, 'https://ror.org/03g5ew477 Institut de Ciències Fotòniques Institute of Photonic Sciences Instituto de Ciencias Fotónicas'),
(93270, 'https://ror.org/03f6cng42', 'es', 1, 'https://ror.org/03f6cng42 Observatorio de Prospectiva Tecnológica Industrial Observatory for Prospective Technological Industry'),
(93271, 'https://ror.org/03q28x580', 'en', 1, 'https://ror.org/03q28x580 MAX IV Laboratory'),
(93272, 'https://ror.org/00v9a4y41', 'fr', 1, 'https://ror.org/00v9a4y41 CREA Mont-Blanc'),
(93273, 'https://ror.org/01bdx3k27', 'no_lang_code', 1, 'https://ror.org/01bdx3k27 Augmanity Nano Ltd. Augmanity Nano Ltd. (Israel)'),
(93274, 'https://ror.org/05tvkct11', 'en', 1, 'https://ror.org/05tvkct11 Pratt Foundation'),
(93275, 'https://ror.org/03nr10290', 'en', 1, 'https://ror.org/03nr10290 Corewell Health Children''s'),
(93276, 'https://ror.org/034d74a71', 'pt', 1, 'https://ror.org/034d74a71 FCiências.ID - Associação para a Investigação e Desenvolvimento de Ciências'),
(93277, 'https://ror.org/01df3an44', 'no_lang_code', 1, 'https://ror.org/01df3an44 Genertec Shenyang Machine Tool Co., Ltd. (China) é€šē”ØęŠ€ęœÆę²ˆé˜³ęœŗåŗŠč‚”ä»½ęœ‰é™å…¬åøå®˜ē½‘'),
(93278, 'https://ror.org/03y0ymy78', 'en', 1, 'https://ror.org/03y0ymy78 Canolfan Polisi Cyhoeddus Cymru Wales Centre for Public Policy'),
(93279, 'https://ror.org/057p7e749', 'en', 1, 'https://ror.org/057p7e749 Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development'),
(93280, 'https://ror.org/001d55x84', 'en', 1, 'https://ror.org/001d55x84 NIH Common Fund'),
(93281, 'https://ror.org/00by1q217', 'no_lang_code', 1, 'https://ror.org/00by1q217 Roche (Switzerland)'),
(93282, 'https://ror.org/03vgcjv39', 'pt', 1, 'https://ror.org/03vgcjv39 Iscte-Conhecimento e Inovação é um Centro de Valorização e Transferência de Tecnologias'),
(93283, 'https://ror.org/0566sj483', 'en', 1, 'https://ror.org/0566sj483 Earlham College'),
(93284, 'https://ror.org/05rbx8m02', 'it', 1, 'https://ror.org/05rbx8m02 Carlo Besta Neurological Institute Fondazione IRCCS Istituto Neurologico Carlo Besta'),
(93285, 'https://ror.org/04x2nq985', 'en', 1, 'https://ror.org/04x2nq985 The Affiliated Shunde Hospital of Jinan University ęšØå—å¤§å­¦é™„å±žé”ŗå¾·åŒ»é™¢'),
(93286, 'https://ror.org/04xcq9q51', 'en', 1, 'https://ror.org/04xcq9q51 Corewell Health Reed City Hospital'),
(93287, 'https://ror.org/02aqatz67', 'no_lang_code', 1, 'https://ror.org/02aqatz67 Xiangtan Electric Manufacturing Group (China) ę¹˜ę½­ē”µęœŗč‚”ä»½ęœ‰é™å…¬åø'),
(93288, 'https://ror.org/02vzjz256', 'en', 0, 'https://ror.org/02vzjz256 Particle Physics and Astronomy Research Council'),
(93289, 'https://ror.org/00s409261', 'en', 1, 'https://ror.org/00s409261 University of Insubria UniversitƠ degli Studi dell''Insubria UniversitƩ de l''insubrie'),
(93290, 'https://ror.org/00grd1h17', 'no_lang_code', 1, 'https://ror.org/00grd1h17 Medtronic (United States)'),
(93291, 'https://ror.org/04w30w390', 'no_lang_code', 0, 'https://ror.org/04w30w390 Biomendi (Spain)'),
(93292, 'https://ror.org/047dkqn05', 'no_lang_code', 1, 'https://ror.org/047dkqn05 Equinox Corporation Equinox Corporation (United States)'),
(93293, 'https://ror.org/00z5s8133', 'es', 1, 'https://ror.org/00z5s8133 Instituto Forestal'),
(93294, 'https://ror.org/034vb5t35', 'en', 1, 'https://ror.org/034vb5t35 Royal Marsden Hospital'),
(93295, 'https://ror.org/008jep717', 'pt', 1, 'https://ror.org/008jep717 Instituto AgrƔrio de Chimoio'),
(93296, 'https://ror.org/04b6nzv94', 'en', 1, 'https://ror.org/04b6nzv94 Brigham and Women''s Hospital'),
(93297, 'https://ror.org/05wnp0977', 'en', 1, 'https://ror.org/05wnp0977 Defence and Security Accelerator'),
(93298, 'https://ror.org/00sh68184', 'no_lang_code', 1, 'https://ror.org/00sh68184 Roche Pharma AG Roche Pharma AG (Germany)'),
(93299, 'https://ror.org/043evzg22', 'en', 1, 'https://ror.org/043evzg22 State Key Laboratory of Power System and Generation Equipment ē”µåŠ›ē³»ē»ŸåŠå¤§åž‹å‘ē”µč®¾å¤‡å®‰å…ØęŽ§åˆ¶å’Œä»æēœŸå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93300, 'https://ror.org/00ws85526', 'es', 1, 'https://ror.org/00ws85526 Bilboko metroa Metro Bilbao Metro de Bilbao'),
(93301, 'https://ror.org/0115fxs14', 'en', 1, 'https://ror.org/0115fxs14 Medical College of Wisconsin Cancer Center'),
(93302, 'https://ror.org/00p094v10', 'es', 1, 'https://ror.org/00p094v10 Universidad Nacional de Hurlingham'),
(93303, 'https://ror.org/04e874t64', 'en', 1, 'https://ror.org/04e874t64 Einaudi Institute for Economics and Finance Istituto Einaudi per l''Economia e la Finanza'),
(93304, 'https://ror.org/057c1ry34', 'fr', 1, 'https://ror.org/057c1ry34 Centre intƩgrƩ de santƩ et de services sociaux de la MontƩrƩgie-Est'),
(93305, 'https://ror.org/03sv46s19', 'es', 0, 'https://ror.org/03sv46s19 Ministerio de Asuntos Económicos y Transformación Digital Ministry of Economic Affairs and Digital Transformation'),
(93306, 'https://ror.org/01tm9b530', 'en', 1, 'https://ror.org/01tm9b530 Stanley Center for Psychiatric Research'),
(93307, 'https://ror.org/05c8abs18', 'es', 1, 'https://ror.org/05c8abs18 Barcelona Activa'),
(93308, 'https://ror.org/014fbxn93', 'pt', 1, 'https://ror.org/014fbxn93 Plataforma Internacional para Ciência, Tecnologia e Inovação em Saúde'),
(93309, 'https://ror.org/015vt1f29', 'fr', 1, 'https://ror.org/015vt1f29 CƩgep de Drummondville'),
(93310, 'https://ror.org/03eewzy02', 'no_lang_code', 1, 'https://ror.org/03eewzy02 Cegid (France)'),
(93311, 'https://ror.org/01cdrde68', 'en', 1, 'https://ror.org/01cdrde68 United Nations University 国際連合大学'),
(93312, 'https://ror.org/02bf8e216', 'no_lang_code', 1, 'https://ror.org/02bf8e216 Teseo Teseo (Argentina)'),
(93313, 'https://ror.org/022dvs210', 'en', 1, 'https://ror.org/022dvs210 Biokémiai Intézet Szegedi Biológiai Kutatóközpont Magyar TudomÔnyos Akadémia Institute of Biochemistry'),
(93314, 'https://ror.org/00f7n9887', 'en', 1, 'https://ror.org/00f7n9887 Special Pathogens Research Network Ltd.'),
(93315, 'https://ror.org/03bk8p931', 'en', 1, 'https://ror.org/03bk8p931 Helen DeVos Children''s Hospital'),
(93316, 'https://ror.org/024z2rq82', 'en', 1, 'https://ror.org/024z2rq82 Heinrich Heine University Düsseldorf Heinrich-Heine-Universität Düsseldorf'),
(93317, 'https://ror.org/03hv28176', 'de', 1, 'https://ror.org/03hv28176 Leibniz-Institut für Wissensmedien Stiftung ā€žMedien in der Bildungā€œ'),
(93318, 'https://ror.org/019vw0b32', 'no_lang_code', 1, 'https://ror.org/019vw0b32 QPS Taiwan QPS Taiwan (Taiwan)'),
(93319, 'https://ror.org/02xkjwb21', 'es', 1, 'https://ror.org/02xkjwb21 Fundación Confemetal'),
(93320, 'https://ror.org/02r839n55', 'en', 1, 'https://ror.org/02r839n55 Saint Mary''s College'),
(93321, 'https://ror.org/0364rd617', 'es', 1, 'https://ror.org/0364rd617 Instituto Sindical de Trabajo Ambiente y Salud'),
(93322, 'https://ror.org/036dxts37', 'en', 1, 'https://ror.org/036dxts37 European Institute of Innovation and Technology Európai InnovÔciós és Technológiai Intézet'),
(93323, 'https://ror.org/01hx2yw16', 'no_lang_code', 1, 'https://ror.org/01hx2yw16 Medicover Genetics Medicover Genetics (Cyprus)'),
(93324, 'https://ror.org/00ntbvq76', 'en', 1, 'https://ror.org/00ntbvq76 CHU Dinant Godinne UCL Namur');
INSERT INTO `rors` VALUES
(93325, 'https://ror.org/00qsr9g17', 'en', 1, 'https://ror.org/00qsr9g17 Grace College & Seminary'),
(93326, 'https://ror.org/04hwsx993', 'en', 1, 'https://ror.org/04hwsx993 Gerald Kerkut Charitable Trust'),
(93327, 'https://ror.org/044kpcz50', 'da', 1, 'https://ror.org/044kpcz50 Egmont Fonden Egmont Foundation'),
(93328, 'https://ror.org/0568g2481', 'en', 1, 'https://ror.org/0568g2481 The Nonwovens Institute'),
(93329, 'https://ror.org/05dch6316', 'en', 1, 'https://ror.org/05dch6316 Private Academic Library Network of Indiana, Inc. (PALNI)'),
(93330, 'https://ror.org/04sqh8108', 'en', 0, 'https://ror.org/04sqh8108 Astronomical Observatory of Mallorca'),
(93331, 'https://ror.org/01qv3ez98', 'en', 1, 'https://ror.org/01qv3ez98 Australian National Algae Culture Collection'),
(93332, 'https://ror.org/0040z4m89', 'no_lang_code', 0, 'https://ror.org/0040z4m89 Geocisa (Spain)'),
(93333, 'https://ror.org/01kn3j525', 'en', 1, 'https://ror.org/01kn3j525 Delaware INBRE'),
(93334, 'https://ror.org/04n3e7v86', 'en', 1, 'https://ror.org/04n3e7v86 The Fourth Affiliated Hospital of Soochow University (Suzhou Dushu Lake Hospital) č‹å·žå¤§å­¦é™„å±žē¬¬å››åŒ»é™¢ (č‹å·žåø‚ē‹¬å¢…ę¹–åŒ»é™¢)'),
(93335, 'https://ror.org/02805zw73', 'fr', 1, 'https://ror.org/02805zw73 HƓpital d''Youville de Sherbrooke'),
(93336, 'https://ror.org/03n9mt987', 'fr', 1, 'https://ror.org/03n9mt987 Centre intĆ©grĆ© universitaire de santĆ© et de services sociaux du Nord-de-lā€™ĆŽle-de-MontrĆ©al'),
(93337, 'https://ror.org/001p3jz28', 'en', 1, 'https://ror.org/001p3jz28 Birla Institute of Technology and Science, Pilani बिरला ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¬ą¤æą¤°ą„ą¤²ą¤¾ ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€ अँऔ ą¤øą¤¾ą¤Æą¤Øą„ą¤ø ਬਿਰਲਾ ąØ¤ąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ਅਤੇ ਵਿਗਿਆਨ ਸੰਸ਄ਾ ą®Ŗą®æą®°ąÆą®²ą®¾ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®®ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ ą°¬ą°æą°Ÿą±ą°øą± పిలానీ ą“¬ą“æąµ¼ą“³ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“†ą“Øąµą“±ąµ ą“øą“Æąµ»ą“øąµ'),
(93338, 'https://ror.org/05cebxq10', 'en', 1, 'https://ror.org/05cebxq10 Nuclear Science and Technology Research Institute'),
(93339, 'https://ror.org/02trgdk48', 'en', 1, 'https://ror.org/02trgdk48 Asociación Cluster de Telecomunicaciones Association of Electronic and Information Technologies'),
(93340, 'https://ror.org/02hn9hc43', 'no_lang_code', 1, 'https://ror.org/02hn9hc43 SwissLumix (Switzerland)'),
(93341, 'https://ror.org/00ew61678', 'en', 1, 'https://ror.org/00ew61678 Strategic Environmental Research and Development Program'),
(93342, 'https://ror.org/04d2k2606', 'no_lang_code', 1, 'https://ror.org/04d2k2606 Luto Research (United Kingdom)'),
(93343, 'https://ror.org/02w3bnx54', 'fr', 1, 'https://ror.org/02w3bnx54 Institut de tourisme et d''hƓtellerie du QuƩbec'),
(93344, 'https://ror.org/04e582786', 'ca', 0, 'https://ror.org/04e582786 Institut Universitari D''Estudis Europeus'),
(93345, 'https://ror.org/03gd0dm95', 'en', 1, 'https://ror.org/03gd0dm95 Aga Khan University Ų¢ŲŗŲ§ خان ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(93346, 'https://ror.org/006m74d95', 'en', 1, 'https://ror.org/006m74d95 Northwestern University in Qatar Universidad del noroeste'),
(93347, 'https://ror.org/042t2dj58', 'no_lang_code', 1, 'https://ror.org/042t2dj58 Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China) ę²ˆé˜³äø­åŒ–å†œčÆåŒ–å·„ē ”å‘ęœ‰é™å…¬åø'),
(93348, 'https://ror.org/03byxpy70', 'en', 1, 'https://ror.org/03byxpy70 Dennis Osadebay University'),
(93349, 'https://ror.org/00kxqbw45', 'es', 1, 'https://ror.org/00kxqbw45 Hospital Virgen del Valle'),
(93350, 'https://ror.org/023hj4e57', 'en', 0, 'https://ror.org/023hj4e57 Barcelonaβeta Brain Research Center'),
(93351, 'https://ror.org/00g8hms52', 'en', 1, 'https://ror.org/00g8hms52 Administration for Children and Families'),
(93352, 'https://ror.org/05jge5x64', 'en', 1, 'https://ror.org/05jge5x64 New Zealand Agricultural Greenhouse Gas Research Centre'),
(93353, 'https://ror.org/01nxm2y98', 'en', 1, 'https://ror.org/01nxm2y98 Gilchrist Educational Trust'),
(93354, 'https://ror.org/00brnhb09', 'fr', 1, 'https://ror.org/00brnhb09 Centre intƩgrƩ de santƩ et de services sociaux de la CƓte-Nord'),
(93355, 'https://ror.org/005a3p084', 'es', 1, 'https://ror.org/005a3p084 Hospital Universitario Nuestra SeƱora de Candelaria University Hospital of the Nuestra SeƱora de Candelaria'),
(93356, 'https://ror.org/01zvsh948', 'en', 1, 'https://ror.org/01zvsh948 Agencia Europea para la Seguridad y la Salud en el Trabajo European Agency for Safety and Health at Work'),
(93357, 'https://ror.org/05nqvv719', 'es', 1, 'https://ror.org/05nqvv719 Ministerio de Agricultura Ministry of Agriculture'),
(93358, 'https://ror.org/051eysy15', 'de', 1, 'https://ror.org/051eysy15 Max Buchner Forschungsstiftung Max Buchner Research Foundation'),
(93359, 'https://ror.org/04v2q5t19', 'no_lang_code', 0, 'https://ror.org/04v2q5t19 Barcelona Digital Centro Tecnológico'),
(93360, 'https://ror.org/03n8fv677', 'es', 1, 'https://ror.org/03n8fv677 Fundación Pronokal'),
(93361, 'https://ror.org/00pa9y269', 'en', 1, 'https://ror.org/00pa9y269 South Bristol Community Hospital'),
(93362, 'https://ror.org/03qk53891', 'no_lang_code', 1, 'https://ror.org/03qk53891 Yankuang Energy Group Company Limited (China) å…–ēŸæčƒ½ęŗé›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(93363, 'https://ror.org/0090gef29', 'es', 1, 'https://ror.org/0090gef29 Asociación Española de Linfedema'),
(93364, 'https://ror.org/01mhxe537', 'no_lang_code', 1, 'https://ror.org/01mhxe537 Geolica Innovations (Spain)'),
(93365, 'https://ror.org/00cy6xh23', 'es', 1, 'https://ror.org/00cy6xh23 Conservatori Superior de Música de Castelló'),
(93366, 'https://ror.org/050gm3a53', 'en', 1, 'https://ror.org/050gm3a53 Ch. Pervaiz Elahi Institute of Cardiology, Multan'),
(93367, 'https://ror.org/01aqw9j77', 'en', 1, 'https://ror.org/01aqw9j77 Hintze Family Charitable Foundation'),
(93368, 'https://ror.org/04cjmvv09', 'en', 1, 'https://ror.org/04cjmvv09 Japan Foundation Endowment Committee'),
(93369, 'https://ror.org/02a2pkk25', 'de', 1, 'https://ror.org/02a2pkk25 Forum transregionale Studien e.V.'),
(93370, 'https://ror.org/05dr3r825', 'nl', 1, 'https://ror.org/05dr3r825 Dutch Arthritis Foundation ReumaNederland'),
(93371, 'https://ror.org/00p7f7z86', 'en', 1, 'https://ror.org/00p7f7z86 Waltham Centre for Pet Nutrition'),
(93372, 'https://ror.org/01h6pze39', 'en', 1, 'https://ror.org/01h6pze39 Universidad de Saint Francis University of Saint Francis'),
(93373, 'https://ror.org/00q1brk57', 'en', 1, 'https://ror.org/00q1brk57 Michigan Center for Urban African American Aging Research'),
(93374, 'https://ror.org/04mb62065', 'id', 1, 'https://ror.org/04mb62065 Direktorat Riset Dan Pengabdian Kepada Masyarakat'),
(93375, 'https://ror.org/05x643e19', 'en', 1, 'https://ror.org/05x643e19 Corewell Health Butterworth Hospital'),
(93376, 'https://ror.org/04htg4q18', 'en', 1, 'https://ror.org/04htg4q18 Charmo University'),
(93377, 'https://ror.org/04rf54t04', 'da', 1, 'https://ror.org/04rf54t04 King Christian the Tenth Foundation Kong Christian den Tiendes Fond'),
(93378, 'https://ror.org/055rh9p75', 'en', 1, 'https://ror.org/055rh9p75 State Key Laboratory of Aerodynamics ē©ŗå¤©é£žč”Œē©ŗę°”åŠØåŠ›ē§‘å­¦äøŽęŠ€ęœÆå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(93379, 'https://ror.org/02x2py139', 'en', 1, 'https://ror.org/02x2py139 Thonburi University'),
(93380, 'https://ror.org/0329bcd18', 'it', 1, 'https://ror.org/0329bcd18 Regione Umbria Umbria Region'),
(93381, 'https://ror.org/03a3nj982', 'ca', 0, 'https://ror.org/03a3nj982 Ecoinstitut'),
(93382, 'https://ror.org/043xqa828', 'en', 0, 'https://ror.org/043xqa828 Scottish Home and Health Department'),
(93383, 'https://ror.org/04yyy0y35', 'no_lang_code', 1, 'https://ror.org/04yyy0y35 Bloomsbury Publishing (United Kingdom)'),
(93384, 'https://ror.org/02pg81z63', 'ca', 1, 'https://ror.org/02pg81z63 Corporació Sanitària Parc Taulí Corporación Sanitaria y Universitaria Parc Taulí'),
(93385, 'https://ror.org/02x9gn510', 'fr', 1, 'https://ror.org/02x9gn510 Ɖcole nationale de police du QuĆ©bec'),
(93386, 'https://ror.org/00xp1b128', 'en', 1, 'https://ror.org/00xp1b128 Kids Brain Health Network RƩseau pour la SantƩ du Cerveau des Enfants'),
(93387, 'https://ror.org/012s7h980', 'no_lang_code', 1, 'https://ror.org/012s7h980 Acerinox (Spain)'),
(93388, 'https://ror.org/05mz0pr34', 'en', 1, 'https://ror.org/05mz0pr34 UCL Hospitals Charitable Foundation'),
(93389, 'https://ror.org/02by8jy67', 'es', 1, 'https://ror.org/02by8jy67 Fundación TyPA TyPA Foundation'),
(93390, 'https://ror.org/00fp4q488', 'en', 1, 'https://ror.org/00fp4q488 European Orthodontic Society Europäische Gesellschaft für Orthodontie'),
(93391, 'https://ror.org/047448m94', 'fr', 1, 'https://ror.org/047448m94 Institut de Recherches MĆ©dicales et d’Etudes des Plantes MĆ©dicinales Institute of Research Medical and Medicinal Plants Studies'),
(93392, 'https://ror.org/05rdv5n40', 'no_lang_code', 1, 'https://ror.org/05rdv5n40 Grundfos (Denmark) ˈkʁɔnĖ€fɒs'),
(93393, 'https://ror.org/04vh24428', 'pt', 1, 'https://ror.org/04vh24428 NOVA.id.FCT - Associação para a Inovação e Desenvolvimento da FCT'),
(93394, 'https://ror.org/02k3baz05', 'it', 1, 'https://ror.org/02k3baz05 FacoltĆ  di Teologia di Lugano'),
(93395, 'https://ror.org/01bvxzn29', 'en', 1, 'https://ror.org/01bvxzn29 Ministry of Defence'),
(93396, 'https://ror.org/03hecy592', 'de', 1, 'https://ror.org/03hecy592 Landesbibliothek Oldenburg'),
(93397, 'https://ror.org/03s4khd80', 'fr', 1, 'https://ror.org/03s4khd80 Cliniques Universitaires Saint-Luc Universitair ziekenhuis Sint-Lambrechts-Woluwe'),
(93398, 'https://ror.org/056vjed89', 'es', 0, 'https://ror.org/056vjed89 Centro Multidisciplinar de Tecnologías para la Industria Cetena Foundation“s Multidisciplinary Innovation and Technology Centre of Navarre'),
(93399, 'https://ror.org/05p3cb968', 'pt', 1, 'https://ror.org/05p3cb968 Instituto de Investigação AgrÔria de Moçambique'),
(93400, 'https://ror.org/032mthd30', 'en', 0, 'https://ror.org/032mthd30 Association for Research and Industrial Development of Natural Resources'),
(93401, 'https://ror.org/04ews3245', 'de', 1, 'https://ror.org/04ews3245 Deutsches Diabetes-Zentrum Deutsches Diabetes-Zentrum e.V.'),
(93402, 'https://ror.org/02gp35s66', 'pt', 1, 'https://ror.org/02gp35s66 Federal University for Latin American Integration Universidade Federal da Integração Latino-Americana'),
(93403, 'https://ror.org/04r5ma125', 'en', 1, 'https://ror.org/04r5ma125 Southwest Research & Design Institute of the Chemical Industry č„æå—åŒ–å·„ē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åø'),
(93404, 'https://ror.org/05pvqha70', 'en', 1, 'https://ror.org/05pvqha70 St. Lawrence University Universidad de St. Lawrence UniversitƩ de st. lawrence'),
(93405, 'https://ror.org/00sps5y96', 'es', 1, 'https://ror.org/00sps5y96 Fundación para la innovación tecnológica'),
(93406, 'https://ror.org/05679z329', 'en', 1, 'https://ror.org/05679z329 Washington Grain Commission'),
(93407, 'https://ror.org/03sdv7269', 'no_lang_code', 1, 'https://ror.org/03sdv7269 PQShield (United Kingdom)'),
(93408, 'https://ror.org/02p4far57', 'en', 1, 'https://ror.org/02p4far57 Robert H. Lurie Comprehensive Cancer Center of Northwestern University'),
(93409, 'https://ror.org/039h1gd08', 'en', 1, 'https://ror.org/039h1gd08 Institute of Plant Biology Növénybiológiai Intézet Szegedi Biológiai Kutatóközpont Magyar TudomÔnyos Akadémia'),
(93410, 'https://ror.org/02kvgs502', 'no_lang_code', 1, 'https://ror.org/02kvgs502 Yingli Energy Technology Group (China) č‹±åˆ©čƒ½ęŗē§‘ęŠ€é›†å›¢'),
(93411, 'https://ror.org/04fg9pk96', 'en', 1, 'https://ror.org/04fg9pk96 Ministry of Education MinistĆØre de l''Ɖducation'),
(93412, 'https://ror.org/01yh3na84', 'no_lang_code', 1, 'https://ror.org/01yh3na84 Indonesian Journal Publisher Indonesian Journal Publisher (Indonesia) Penerbit Jurnal Indonesia'),
(93413, 'https://ror.org/00y0aj963', 'no_lang_code', 0, 'https://ror.org/00y0aj963 Going Green (Spain)'),
(93414, 'https://ror.org/04qdwq068', 'en', 1, 'https://ror.org/04qdwq068 QuantIC'),
(93415, 'https://ror.org/00s3s5518', 'no_lang_code', 1, 'https://ror.org/00s3s5518 Almaarefa University Ų¬Ų§Ł…Ų¹Ų© المعرفة'),
(93416, 'https://ror.org/011zm6c42', 'pt', 1, 'https://ror.org/011zm6c42 ACATE - Associação Catarinense de Tecnologia'),
(93417, 'https://ror.org/00x362k69', 'en', 1, 'https://ror.org/00x362k69 Queen Elizabeth Hospital'),
(93418, 'https://ror.org/051777d98', 'en', 1, 'https://ror.org/051777d98 United Nations Development Programme'),
(93419, 'https://ror.org/00xn1pr13', 'en', 1, 'https://ror.org/00xn1pr13 Leibniz Institute for Immunotherapy Leibniz-Institut für Immuntherapie'),
(93420, 'https://ror.org/011n4tk56', 'en', 1, 'https://ror.org/011n4tk56 Agricultural Research Institute of Ontario Institut de Recherche Agricole de l''Ontario'),
(93421, 'https://ror.org/02cq2e244', 'en', 1, 'https://ror.org/02cq2e244 Pacific Earthquake Engineering Research Center'),
(93422, 'https://ror.org/016782g02', 'en', 1, 'https://ror.org/016782g02 European Association for Education Law and Policy'),
(93423, 'https://ror.org/00deq0f50', 'id', 1, 'https://ror.org/00deq0f50 Universitas Pelita Bangsa'),
(93424, 'https://ror.org/03rwgpn18', 'en', 1, 'https://ror.org/03rwgpn18 Clarkson University'),
(93425, 'https://ror.org/031yjqj32', 'fr', 1, 'https://ror.org/031yjqj32 CƩgep Saint-Jean-sur-Richelieu'),
(93426, 'https://ror.org/04k1qv985', 'no_lang_code', 0, 'https://ror.org/04k1qv985 Lipotec (Spain)'),
(93427, 'https://ror.org/04e7rcy65', 'pt', 1, 'https://ror.org/04e7rcy65 Faculdade de Odontologia do Recife'),
(93428, 'https://ror.org/02ndr3r66', 'fr', 1, 'https://ror.org/02ndr3r66 HƓpital Marie Lannelongue'),
(93429, 'https://ror.org/00vvz3k68', 'en', 1, 'https://ror.org/00vvz3k68 Elite School of Optometry'),
(93430, 'https://ror.org/04eq6rh16', 'en', 1, 'https://ror.org/04eq6rh16 Sociedad EspaƱola de Bioquƭmica y Biologƭa Molecular Spanish Society of Biochemistry and Molecular Biology'),
(93431, 'https://ror.org/01hn2pk88', 'no_lang_code', 1, 'https://ror.org/01hn2pk88 Panskura Banamali College'),
(93432, 'https://ror.org/01q6sg345', 'id', 1, 'https://ror.org/01q6sg345 Universitas Islam Internasional Indonesia'),
(93433, 'https://ror.org/00wtrxf04', 'en', 1, 'https://ror.org/00wtrxf04 Osher Center for Integrative Medicine'),
(93434, 'https://ror.org/02hq5p840', 'no_lang_code', 1, 'https://ror.org/02hq5p840 Genetrix (Spain)'),
(93435, 'https://ror.org/03x4pp342', 'en', 1, 'https://ror.org/03x4pp342 Beaumont Hospital, Dearborn'),
(93436, 'https://ror.org/007bytg49', 'ro', 1, 'https://ror.org/007bytg49 Institute for South-East European Studies Institutul de Studii Sud-Est Europene'),
(93437, 'https://ror.org/00gjj5n39', 'en', 1, 'https://ror.org/00gjj5n39 Universidad Internacional Valenciana Valencian International University'),
(93438, 'https://ror.org/049h9f890', 'fr', 1, 'https://ror.org/049h9f890 CƩgep de Granby'),
(93439, 'https://ror.org/01zy2cs03', 'de', 1, 'https://ror.org/01zy2cs03 Helmholtz-Zentrum Dresden-Rossendorf'),
(93440, 'https://ror.org/008j47576', 'en', 1, 'https://ror.org/008j47576 Mount Kigali University'),
(93441, 'https://ror.org/05j5g1b69', 'en', 0, 'https://ror.org/05j5g1b69 Public Policy Institute for Wales'),
(93442, 'https://ror.org/05vs9t239', 'en', 1, 'https://ror.org/05vs9t239 State Grid Shanxi Electric Power Company Electric Power Research Institute å›½ē½‘å±±č„æēœē”µåŠ›å…¬åøē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢'),
(93443, 'https://ror.org/017wrhq72', 'en', 0, 'https://ror.org/017wrhq72 Department of Water'),
(93444, 'https://ror.org/02zv3kp89', 'de', 1, 'https://ror.org/02zv3kp89 Ministerium für Umwelt, Landwirtschaft und Energie des Landes Sachsen-Anhalt'),
(93445, 'https://ror.org/05d8cac05', 'en', 1, 'https://ror.org/05d8cac05 Shanghai Institute of Pollution Control and Ecological Security äøŠęµ·ę±”ęŸ“ęŽ§åˆ¶äøŽē”Ÿę€å®‰å…Øē ”ē©¶é™¢'),
(93446, 'https://ror.org/01achz565', 'no_lang_code', 1, 'https://ror.org/01achz565 Windey Energy Technology Group Co., Ltd. (China) ęµ™ę±Ÿčæč¾¾é£Žē”µč‚”ä»½ęœ‰é™å…¬åø'),
(93447, 'https://ror.org/046j7pv84', 'en', 1, 'https://ror.org/046j7pv84 Special Programme for Research and Training in Tropical Diseases'),
(93448, 'https://ror.org/02a37a132', 'en', 1, 'https://ror.org/02a37a132 International College of Business and Technology'),
(93449, 'https://ror.org/03tsg3y65', 'en', 1, 'https://ror.org/03tsg3y65 Centre for Climate Change Economics and Policy'),
(93450, 'https://ror.org/01wjyqy10', 'en', 0, 'https://ror.org/01wjyqy10 Queen Elizabeth Diamond Jubilee Trust'),
(93451, 'https://ror.org/03artm726', 'en', 1, 'https://ror.org/03artm726 Beaumont Hospital, Royal Oak'),
(93452, 'https://ror.org/03f1agw55', 'en', 1, 'https://ror.org/03f1agw55 dpr-barcelona'),
(93453, 'https://ror.org/00h3w1m15', 'en', 1, 'https://ror.org/00h3w1m15 King Fahad National Library Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(93454, 'https://ror.org/05gq3a412', 'en', 1, 'https://ror.org/05gq3a412 Butler University Universidad Butler'),
(93455, 'https://ror.org/01gghaa40', 'en', 1, 'https://ror.org/01gghaa40 Simons Initiative for the Developing Brain'),
(93456, 'https://ror.org/027a33v57', 'en', 1, 'https://ror.org/027a33v57 University Of Bristol Dental Hospital'),
(93457, 'https://ror.org/00c746491', 'en', 1, 'https://ror.org/00c746491 National Research Council of the Philippines'),
(93458, 'https://ror.org/05jnma812', 'en', 1, 'https://ror.org/05jnma812 Office of Planning, Research and Evaluation'),
(93459, 'https://ror.org/011jtr847', 'ca', 0, 'https://ror.org/011jtr847 Centre de Recerca en Sanitat Animal'),
(93460, 'https://ror.org/012qsrr25', 'en', 1, 'https://ror.org/012qsrr25 Cornell University Agricultural Experiment Station'),
(93461, 'https://ror.org/00wd0xj77', 'no_lang_code', 1, 'https://ror.org/00wd0xj77 Andijan State Pedagogical Institute Andijon Davlat Pedagogika instituti'),
(93462, 'https://ror.org/02qz3vm75', 'en', 1, 'https://ror.org/02qz3vm75 Institut für Qualität und Wirtschaftlichkeit im Gesundheitswesen Institute for Quality and Efficiency in Health Care'),
(93463, 'https://ror.org/059wz5438', 'no_lang_code', 1, 'https://ror.org/059wz5438 China Huaneng Group Co., Ltd. (China) äø­å›½åŽčƒ½é›†å›¢'),
(93464, 'https://ror.org/047xxvg44', 'pt', 1, 'https://ror.org/047xxvg44 Instituto PortuguĆŖs de Oncologia de Coimbra Francisco Gentil'),
(93465, 'https://ror.org/05hv77153', 'en', 1, 'https://ror.org/05hv77153 Ministry of Education and Child Care'),
(93466, 'https://ror.org/00g1jn849', 'en', 0, 'https://ror.org/00g1jn849 Centre on Innovation and Energy Demand'),
(93467, 'https://ror.org/03thdsj80', 'en', 1, 'https://ror.org/03thdsj80 Vodafone Foundation'),
(93468, 'https://ror.org/0306aeb62', 'en', 1, 'https://ror.org/0306aeb62 SUNY Brockport'),
(93469, 'https://ror.org/02rrdvm96', 'en', 1, 'https://ror.org/02rrdvm96 Center for Excellence in Molecular Cell Science äø­ē§‘é™¢åˆ†å­ē»†čƒžå“č¶Šåˆ›ę–°äø­åæƒ'),
(93470, 'https://ror.org/01kde4v59', 'en', 1, 'https://ror.org/01kde4v59 EIT Food'),
(93471, 'https://ror.org/03gbd4842', 'en', 1, 'https://ror.org/03gbd4842 Suffolk University Madrid Universidad Suffolk Madrid'),
(93472, 'https://ror.org/03fdma228', 'es', 0, 'https://ror.org/03fdma228 Foundation for International Relations and Foreign Dialogue Fundación para las Relaciones Internacionales y el DiÔlogo Exterior'),
(93473, 'https://ror.org/010j4w165', 'en', 1, 'https://ror.org/010j4w165 Gulf College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų®Ł„ŁŠŲ¬'),
(93474, 'https://ror.org/04tjemt46', 'en', 1, 'https://ror.org/04tjemt46 Genetikai Intézet Szegedi Biológiai Kutatóközpont Magyar TudomÔnyos Akadémia Institute of Genetics'),
(93475, 'https://ror.org/04rswvr48', 'en', 1, 'https://ror.org/04rswvr48 Fundacion Araucaria Foundation'),
(93476, 'https://ror.org/00tdqgq45', 'fr', 1, 'https://ror.org/00tdqgq45 CƩgep de Saint-FƩlicien'),
(93477, 'https://ror.org/0453rg493', 'en', 1, 'https://ror.org/0453rg493 Oakland City University'),
(93478, 'https://ror.org/02bjrmf75', 'de', 1, 'https://ror.org/02bjrmf75 Deutsche Institut für angewandte Pflegeforschung e.V.'),
(93479, 'https://ror.org/03p40sz62', 'es', 1, 'https://ror.org/03p40sz62 Fundación Eugenio Rodríguez Pascual'),
(93480, 'https://ror.org/00nffqq91', 'en', 1, 'https://ror.org/00nffqq91 Johnson Cancer Research Center'),
(93481, 'https://ror.org/05vnxnq07', 'en', 1, 'https://ror.org/05vnxnq07 Christian Theological Seminary'),
(93482, 'https://ror.org/03jdj4y14', 'no_lang_code', 1, 'https://ror.org/03jdj4y14 Nvidia (United States)'),
(93483, 'https://ror.org/04nwt4928', 'es', 1, 'https://ror.org/04nwt4928 Ayuntamiento de Valladolid'),
(93484, 'https://ror.org/01kk86953', 'no_lang_code', 1, 'https://ror.org/01kk86953 Climate Resource (Australia)'),
(93485, 'https://ror.org/00bep5t26', 'en', 1, 'https://ror.org/00bep5t26 Biblioteca de Catalunya Biblioteca de Catalunya Biblioteca de Cataluña Bibliotèca de Catalonha Kataluniako Liburutegia National Library of Catalonia'),
(93486, 'https://ror.org/02e3wq066', 'en', 1, 'https://ror.org/02e3wq066 Division of Program Coordination Planning and Strategic Initiatives'),
(93487, 'https://ror.org/04nqtfa57', 'no_lang_code', 0, 'https://ror.org/04nqtfa57 Servicios TƩcnicos y Suministros Technical Services and Supplies (Spain)'),
(93488, 'https://ror.org/05691ev83', 'en', 1, 'https://ror.org/05691ev83 Alexandria Archive Institute'),
(93489, 'https://ror.org/01w151e64', 'en', 1, 'https://ror.org/01w151e64 Bristol Eye Hospital'),
(93490, 'https://ror.org/03kevw840', 'no_lang_code', 0, 'https://ror.org/03kevw840 Meta4 (Spain)'),
(93491, 'https://ror.org/042vxm455', 'no_lang_code', 1, 'https://ror.org/042vxm455 Bloomsbury (United States)'),
(93492, 'https://ror.org/0090zs177', 'en', 1, 'https://ror.org/0090zs177 London School of Economics and Political Science Ysgol Economeg a Gwyddor Gwleidyddiaeth Llundain'),
(93493, 'https://ror.org/05fp9g671', 'en', 1, 'https://ror.org/05fp9g671 University of Mazandaran دانؓگاه مازندران'),
(93494, 'https://ror.org/05g2hd893', 'en', 0, 'https://ror.org/05g2hd893 Beaumont Health'),
(93495, 'https://ror.org/02mb2dn67', 'no_lang_code', 1, 'https://ror.org/02mb2dn67 State Grid Shanxi Electric Power Company (China) å›½ē½‘å±±č„æēœē”µåŠ›å…¬åø'),
(93496, 'https://ror.org/00d4pqn65', 'en', 1, 'https://ror.org/00d4pqn65 Vaccine and Gene Therapy Institute'),
(93497, 'https://ror.org/01qh08519', 'es', 1, 'https://ror.org/01qh08519 Ministerio para la Transformación Digital y de la Función Pública'),
(93498, 'https://ror.org/019mh5c80', 'de', 1, 'https://ror.org/019mh5c80 Ministerium für Wissenschaft, Energie, Klimaschutz und Umwelt des Landes Sachsen-Anhalt'),
(93499, 'https://ror.org/02hb5yj49', 'en', 1, 'https://ror.org/02hb5yj49 Corewell Health'),
(93500, 'https://ror.org/058ne9w36', 'en', 1, 'https://ror.org/058ne9w36 Royal Marsden Cancer Charity'),
(93501, 'https://ror.org/018zj6955', 'no', 1, 'https://ror.org/018zj6955 Trond Mohn Foundation Trond Mohn stiftelse'),
(93502, 'https://ror.org/002c90p59', 'no_lang_code', 1, 'https://ror.org/002c90p59 Ningxia Forestry Research Institute Co., Ltd. (China) å®å¤ęž—äøšē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(93503, 'https://ror.org/01ym3w380', 'fr', 1, 'https://ror.org/01ym3w380 Globus et Locus'),
(93504, 'https://ror.org/038e0dv78', 'en', 1, 'https://ror.org/038e0dv78 Trine University'),
(93505, 'https://ror.org/04ns7ha44', 'en', 1, 'https://ror.org/04ns7ha44 Steven & Alexandra Cohen Foundation'),
(93506, 'https://ror.org/03hvdbf98', 'en', 1, 'https://ror.org/03hvdbf98 BMA Foundation for Medical Research'),
(93507, 'https://ror.org/057yy7z71', 'no_lang_code', 0, 'https://ror.org/057yy7z71 Ramem (Spain)'),
(93508, 'https://ror.org/01v9qfq10', 'en', 1, 'https://ror.org/01v9qfq10 Harbin Institute of Large Electric Machinery å“ˆå°”ę»Øå¤§ē”µęœŗē ”ē©¶ę‰€'),
(93509, 'https://ror.org/010ywy128', 'es', 1, 'https://ror.org/010ywy128 Instituto de Investigaciones de la AmazonĆ­a Peruana'),
(93510, 'https://ror.org/01q7cq281', 'es', 1, 'https://ror.org/01q7cq281 Wikimedia EspaƱa'),
(93511, 'https://ror.org/03mc19e15', 'en', 1, 'https://ror.org/03mc19e15 Weston General Hospital'),
(93512, 'https://ror.org/03k8zj440', 'es', 1, 'https://ror.org/03k8zj440 Servicio de Salud de Castilla La Mancha'),
(93513, 'https://ror.org/01j98sy69', 'es', 1, 'https://ror.org/01j98sy69 Asociación Española de Industriales de PlÔsticos'),
(93514, 'https://ror.org/05gfswd81', 'en', 1, 'https://ror.org/05gfswd81 Institute for Research in Biomedicine Istituto di Ricerca in Biomedicina'),
(93515, 'https://ror.org/00r4bna31', 'en', 1, 'https://ror.org/00r4bna31 Anatomical Society'),
(93516, 'https://ror.org/02r40rn49', 'en', 1, 'https://ror.org/02r40rn49 Central Adelaide Local Health Network'),
(93517, 'https://ror.org/04gww2j56', 'da', 1, 'https://ror.org/04gww2j56 Aage and Johanne Louis-Hansen''s Foundation Aage og Johanne Louis-Hansens Fond'),
(93518, 'https://ror.org/017d4c820', 'en', 1, 'https://ror.org/017d4c820 Lund Trust'),
(93519, 'https://ror.org/03hc27x54', 'en', 1, 'https://ror.org/03hc27x54 Centre National Universitaire de Documentation Scientifique et Technique University National Center of Scientific and Technical Documentation Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł„Ł„ŲŖŁˆŲ«ŁŠŁ‚ Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠ'),
(93520, 'https://ror.org/01sqena74', 'en', 1, 'https://ror.org/01sqena74 SSN Educational and Charitable Trust'),
(93521, 'https://ror.org/054a6d704', 'es', 1, 'https://ror.org/054a6d704 Sociedad Estatal de Participaciones Industriales'),
(93522, 'https://ror.org/05eky6607', 'fr', 1, 'https://ror.org/05eky6607 Centre intĆ©grĆ© de santĆ© et des services sociaux de l’Outaouais'),
(93523, 'https://ror.org/045jby416', 'en', 1, 'https://ror.org/045jby416 Saint Mary-of-the-Woods College'),
(93524, 'https://ror.org/05sgwan27', 'no_lang_code', 0, 'https://ror.org/05sgwan27 Ecosystem (Spain)'),
(93525, 'https://ror.org/02gmp5156', 'en', 1, 'https://ror.org/02gmp5156 National Research Foundation of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ фонГ Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ України'),
(93526, 'https://ror.org/02y6dp041', 'en', 1, 'https://ror.org/02y6dp041 Office of Electricity'),
(93527, 'https://ror.org/05jvrb780', 'pl', 1, 'https://ror.org/05jvrb780 Fundacja Adeptów i Miłośników Ekonomii'),
(93528, 'https://ror.org/04hh1k009', 'en', 1, 'https://ror.org/04hh1k009 International Progressive MS Alliance'),
(93529, 'https://ror.org/00f3x4340', 'es', 1, 'https://ror.org/00f3x4340 Instituto EspaƱol de Oceanografƭa'),
(93530, 'https://ror.org/016rf0n60', 'de', 1, 'https://ror.org/016rf0n60 Stiftung CharitƩ'),
(93531, 'https://ror.org/058sakv40', 'en', 1, 'https://ror.org/058sakv40 Corewell Health William Beaumont University Hospital'),
(93532, 'https://ror.org/02avhnb77', 'no_lang_code', 1, 'https://ror.org/02avhnb77 Emerald Group Publishing (United Kingdom)'),
(93533, 'https://ror.org/05bjr0y28', 'no_lang_code', 1, 'https://ror.org/05bjr0y28 Neurotech, LLC Neurotech, LLC (United States)'),
(93534, 'https://ror.org/0526zh358', 'en', 1, 'https://ror.org/0526zh358 Life Sciences Research Network Wales Rhwydwaith Gwyddorau Bywyd Cymru'),
(93535, 'https://ror.org/04d4pvt78', 'en', 1, 'https://ror.org/04d4pvt78 Center for Innovative Medicine'),
(93536, 'https://ror.org/025ecp212', 'en', 1, 'https://ror.org/025ecp212 United Kingdom Clinical Research Collaboration'),
(93537, 'https://ror.org/00xexfj57', 'en', 1, 'https://ror.org/00xexfj57 Iranian Research Institute for Information Science and Technology Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų¹Ł„ŁˆŁ… و ŁŁ†Ų§ŁˆŲ±ŪŒ اطلاعات Ų§ŪŒŲ±Ų§Ł†'),
(93538, 'https://ror.org/030gd0911', 'en', 0, 'https://ror.org/030gd0911 AIDIMA - Instituto Tecnológico del Mueble AIDIMA Technology Institute'),
(93539, 'https://ror.org/007sts724', 'en', 1, 'https://ror.org/007sts724 New Mexico State University Alamogordo'),
(93540, 'https://ror.org/041qq2t66', 'en', 0, 'https://ror.org/041qq2t66 Leverhulme Centre for Integrative Research on Agriculture and Health'),
(93541, 'https://ror.org/00pnp4y96', 'en', 1, 'https://ror.org/00pnp4y96 Government of Pakistan Ų­Ś©ŁˆŁ…ŲŖŁ پاکستان'),
(93542, 'https://ror.org/05sqppn31', 'nl', 1, 'https://ror.org/05sqppn31 Flemish Supercomputer Centre Vlaams Supercomputer Centrum'),
(93543, 'https://ror.org/032qgrc76', 'en', 1, 'https://ror.org/032qgrc76 State University of New York at Potsdam'),
(93544, 'https://ror.org/041kymq04', 'en', 1, 'https://ror.org/041kymq04 Gujarat Council on Science and Technology'),
(93545, 'https://ror.org/01f7saf07', 'en', 1, 'https://ror.org/01f7saf07 Medtronic Foundation'),
(93546, 'https://ror.org/00y1k7p64', 'no_lang_code', 1, 'https://ror.org/00y1k7p64 Scapa Healthcare (United Kingdom)'),
(93547, 'https://ror.org/04x05p558', 'es', 1, 'https://ror.org/04x05p558 Autobuses Urbanos Elche'),
(93548, 'https://ror.org/05q6yhx55', 'en', 1, 'https://ror.org/05q6yhx55 Eva Crane Trust'),
(93549, 'https://ror.org/05x9ffc66', 'en', 1, 'https://ror.org/05x9ffc66 Beaumont Hospital, Troy'),
(93550, 'https://ror.org/057apef51', 'fr', 1, 'https://ror.org/057apef51 Centre quƩbƩcois sur les matƩriaux fonctionnels Quebec Centre for Advanced Materials'),
(93551, 'https://ror.org/034a0rc87', 'en', 1, 'https://ror.org/034a0rc87 Humanities in the European Research Area'),
(93552, 'https://ror.org/047yj9455', 'en', 0, 'https://ror.org/047yj9455 Barcelona Media'),
(93553, 'https://ror.org/024pk8k39', 'nl', 1, 'https://ror.org/024pk8k39 Amalia Kinderziekenhuis'),
(93554, 'https://ror.org/00mmpjq16', 'en', 1, 'https://ror.org/00mmpjq16 Suzhou Yongding Hospital ęµ·å‰äŗšč‹å·žę°øé¼ŽåŒ»é™¢'),
(93555, 'https://ror.org/04vdnev70', 'en', 0, 'https://ror.org/04vdnev70 ARCHER Service'),
(93556, 'https://ror.org/0051rme32', 'en', 1, 'https://ror.org/0051rme32 Northwest A&F University č„æåŒ—å†œęž—ē§‘ęŠ€å¤§å­¦'),
(93557, 'https://ror.org/042fhmq33', 'en', 1, 'https://ror.org/042fhmq33 Packard Center'),
(93558, 'https://ror.org/023a2er20', 'en', 1, 'https://ror.org/023a2er20 Cancer Imaging Centre'),
(93559, 'https://ror.org/00mccb878', 'no_lang_code', 0, 'https://ror.org/00mccb878 IberEspacio (Spain)'),
(93560, 'https://ror.org/05d6tb673', 'it', 1, 'https://ror.org/05d6tb673 Region of Liguria Regione Liguria'),
(93561, 'https://ror.org/021354321', 'fr', 1, 'https://ror.org/021354321 Fondation Saint-Luc Saint-Luc Foundation'),
(93562, 'https://ror.org/04fzs4293', 'en', 1, 'https://ror.org/04fzs4293 MND Scotland'),
(93563, 'https://ror.org/038kr2d80', 'en', 1, 'https://ror.org/038kr2d80 Emory National Primate Research Center'),
(93564, 'https://ror.org/02zms4m18', 'es', 1, 'https://ror.org/02zms4m18 Fundación ONCE Fundación ONCE for Cooperation and Social Inclusion of Persons with Disabilities'),
(93565, 'https://ror.org/00xzacp61', 'en', 1, 'https://ror.org/00xzacp61 NCCR SwissMAP'),
(93566, 'https://ror.org/03rtqzj55', 'no_lang_code', 0, 'https://ror.org/03rtqzj55 Inabensa (Spain)'),
(93567, 'https://ror.org/05ehpzy81', 'en', 1, 'https://ror.org/05ehpzy81 China Electric Power Research Institute äø­å›½ē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(93568, 'https://ror.org/02r4fqa76', 'en', 1, 'https://ror.org/02r4fqa76 National Centre for Energy Systems Integration'),
(93569, 'https://ror.org/041repn61', 'no_lang_code', 1, 'https://ror.org/041repn61 Astellas Pharma (Canada) Astellas Pharmaceuticals'),
(93570, 'https://ror.org/01ar0xf40', 'en', 1, 'https://ror.org/01ar0xf40 SINOPEC Research Institute of Safety Engineering Co., Ltd. äø­ēŸ³åŒ–å®‰å…Øå·„ēØ‹ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(93571, 'https://ror.org/022pakb16', 'it', 1, 'https://ror.org/022pakb16 C.R.E.A.T.E. Consorzio Di Ricerca Per L''Energia E Le Applicazioni Technologiche Dell''Elettromagnetismo'),
(93572, 'https://ror.org/03cn98e27', 'en', 1, 'https://ror.org/03cn98e27 J.M. Kaplan Fund'),
(93573, 'https://ror.org/03n9ja422', 'en', 1, 'https://ror.org/03n9ja422 Ruhr Museum'),
(93574, 'https://ror.org/04marky29', 'de', 1, 'https://ror.org/04marky29 Bundesministerium für Klimaschutz, Umwelt, Energie, Mobilität, Innovation und Technologie Ministry of Climate Action, Environment, Energy, Mobility, Innovation and Technology'),
(93575, 'https://ror.org/0289cxp23', 'es', 0, 'https://ror.org/0289cxp23 Hospital Virgen de la Salud'),
(93576, 'https://ror.org/05dpwde09', 'en', 1, 'https://ror.org/05dpwde09 LUPUS UK'),
(93577, 'https://ror.org/0551gkb08', 'en', 1, 'https://ror.org/0551gkb08 Stanford SystemX Alliance'),
(93578, 'https://ror.org/013tmk464', 'en', 1, 'https://ror.org/013tmk464 Comprehensive Cancer Center Mainfranken'),
(93579, 'https://ror.org/059gc9s81', 'en', 0, 'https://ror.org/059gc9s81 United Nations University Institute on Globalization, Culture and Mobility'),
(93580, 'https://ror.org/05tamah23', 'en', 1, 'https://ror.org/05tamah23 Communicating Diet and Activity Research'),
(93581, 'https://ror.org/025dmzr60', 'en', 1, 'https://ror.org/025dmzr60 American Genetic Association'),
(93582, 'https://ror.org/02ftfma65', 'en', 1, 'https://ror.org/02ftfma65 Ontario Agri-Food Innovation Alliance'),
(93583, 'https://ror.org/00b88za07', 'fr', 1, 'https://ror.org/00b88za07 Institut de recherche et d’informations socioĆ©conomiques'),
(93584, 'https://ror.org/04z2hsy54', 'no_lang_code', 1, 'https://ror.org/04z2hsy54 NVIDIA (Italy)'),
(93585, 'https://ror.org/00e45qp82', 'sv', 1, 'https://ror.org/00e45qp82 Dorothea Olivia, Karl Walter and Jarl Walter PerklƩns Memorial Foundation Stiftelsen Dorothea Olivia, Karl Walter och Jarl Walter PerklƩns Minne'),
(93586, 'https://ror.org/027t90e82', 'en', 1, 'https://ror.org/027t90e82 Vitebsk State Academy of Veterinary Medicine Š’Ń–Ń†ŠµŠ±ŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š²ŠµŃ‚ŃŃ€Ń‹Š½Š°Ń€Š½Š°Š¹ меГыцыны'),
(93587, 'https://ror.org/01vw4c203', 'en', 1, 'https://ror.org/01vw4c203 MRC Centre for Environment and Health'),
(93588, 'https://ror.org/03p81rq42', 'en', 1, 'https://ror.org/03p81rq42 The Filipino Nurses Association in the Nordic Region'),
(93589, 'https://ror.org/023kaz366', 'es', 1, 'https://ror.org/023kaz366 Provita'),
(93590, 'https://ror.org/04qtk4r03', 'sq', 1, 'https://ror.org/04qtk4r03 Instituti i Historisƫ "Ali Hadri" Prishtinƫ'),
(93591, 'https://ror.org/03y8jvk69', 'no_lang_code', 1, 'https://ror.org/03y8jvk69 NestlƩ Health Science NestlƩ Health Science (United States)'),
(93592, 'https://ror.org/01vbgty78', 'en', 1, 'https://ror.org/01vbgty78 Institut de CiĆØncies de l''Espai Institute of Space Sciences Instituto de Ciencias del Espacio'),
(93593, 'https://ror.org/04fab7w85', 'pt', 1, 'https://ror.org/04fab7w85 Centro de Estudos Sociais'),
(93594, 'https://ror.org/04b8d7j46', 'en', 1, 'https://ror.org/04b8d7j46 Anabaptist Mennonite Biblical Seminary'),
(93595, 'https://ror.org/013355g38', 'en', 1, 'https://ror.org/013355g38 Dalle Molle Institute for Artificial Intelligence Research Istituto Dalle Molle di Studi sull''Intelligenza Artificiale'),
(93596, 'https://ror.org/03gf4dx13', 'no_lang_code', 1, 'https://ror.org/03gf4dx13 DRACE GEOCISA S.A. (Spain)'),
(93597, 'https://ror.org/04ebbpp93', 'it', 1, 'https://ror.org/04ebbpp93 Istituto Sperimentale Italiano Lazzaro Spallanzani Italian Experimental Institute Lazzaro Spallanzani'),
(93598, 'https://ror.org/00a7bnr15', 'es', 1, 'https://ror.org/00a7bnr15 Fundación Tripartita para la Formación en el Empleo'),
(93599, 'https://ror.org/053jm8142', 'en', 1, 'https://ror.org/053jm8142 Corewell Health Zeeland Hospital'),
(93600, 'https://ror.org/00235nr42', 'pt', 1, 'https://ror.org/00235nr42 Federal University of ItajubĆ” Universidade Federal de ItajubĆ”'),
(93601, 'https://ror.org/00rwpbm87', 'de', 1, 'https://ror.org/00rwpbm87 Augenklinik Universitätsklinikum Würzburg'),
(93602, 'https://ror.org/042jh8155', 'en', 1, 'https://ror.org/042jh8155 Institut für Produktives Lernen in Europa Institute for Productive Learning in Europe'),
(93603, 'https://ror.org/042en9b35', 'no_lang_code', 1, 'https://ror.org/042en9b35 Accelleran NV Accelleran NV (Belgium)'),
(93604, 'https://ror.org/00enf6a78', 'fr', 1, 'https://ror.org/00enf6a78 Centre intĆ©grĆ© universitaire de santĆ© et de services sociaux de l''Ouest-de-lā€™ĆŽle-de-MontrĆ©al'),
(93605, 'https://ror.org/05jmnvy38', 'da', 1, 'https://ror.org/05jmnvy38 DHI'),
(93606, 'https://ror.org/036wkjd70', 'no_lang_code', 1, 'https://ror.org/036wkjd70 ZOLL Medical Corporation ZOLL Medical Corporation (United States)'),
(93607, 'https://ror.org/00na1dz18', 'en', 1, 'https://ror.org/00na1dz18 American Bird Conservancy'),
(93608, 'https://ror.org/04kn56m50', 'en', 1, 'https://ror.org/04kn56m50 Institute of Chinese Materia Medica äø­å›½åŒ»å­¦ē§‘å­¦é™¢čÆē‰©ē ”ē©¶ę‰€'),
(93609, 'https://ror.org/02aswte26', 'en', 1, 'https://ror.org/02aswte26 Manchester University'),
(93610, 'https://ror.org/00ae7jd04', 'en', 1, 'https://ror.org/00ae7jd04 Banque Mondiale World Bank'),
(93611, 'https://ror.org/01v7jrq42', 'no_lang_code', 1, 'https://ror.org/01v7jrq42 Vodafone (United Kingdom)'),
(93612, 'https://ror.org/056nnzb78', 'en', 1, 'https://ror.org/056nnzb78 Rochester Academy of Science'),
(93613, 'https://ror.org/05cmj5t40', 'fr', 1, 'https://ror.org/05cmj5t40 Centre intƩgrƩ de santƩ et de services sociaux de la MontƩrƩgie-Ouest'),
(93614, 'https://ror.org/00j39jc12', 'no_lang_code', 1, 'https://ror.org/00j39jc12 Syreon Corporation Syreon Corporation (Canada)'),
(93615, 'https://ror.org/05mee8y17', 'pt', 1, 'https://ror.org/05mee8y17 Instituto Vita Alere'),
(93616, 'https://ror.org/0009eea46', 'en', 1, 'https://ror.org/0009eea46 State Key Laboratory of Virtual Reality Technology and Systems č™šę‹ŸēŽ°å®žęŠ€ęœÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93617, 'https://ror.org/03x3g5467', 'en', 1, 'https://ror.org/03x3g5467 Taylor Family Institute for Innovative Psychiatric Research'),
(93618, 'https://ror.org/05ghke119', 'es', 1, 'https://ror.org/05ghke119 Asociacion Valenciana de empresarios de plasticos'),
(93619, 'https://ror.org/05sz3st37', 'fr', 1, 'https://ror.org/05sz3st37 CƩgep Beauce-Appalaches'),
(93620, 'https://ror.org/03fpf5m04', 'en', 0, 'https://ror.org/03fpf5m04 Weston Area Health NHS Trust'),
(93621, 'https://ror.org/03h4zjr91', 'en', 1, 'https://ror.org/03h4zjr91 Carnegie Observatories'),
(93622, 'https://ror.org/05syd6y78', 'pt', 1, 'https://ror.org/05syd6y78 Federal University of ParanĆ” Universidade Federal do ParanĆ”'),
(93623, 'https://ror.org/05t17k830', 'en', 1, 'https://ror.org/05t17k830 UK Regenerative Medicine Platform'),
(93624, 'https://ror.org/032jk8892', 'en', 1, 'https://ror.org/032jk8892 SASTRA University ą®šą®£ąÆą®®ąÆą®•ą®¾ ą®•ą®²ąÆˆ, ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ, ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®®ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ அகாதமி'),
(93625, 'https://ror.org/033frs404', 'en', 1, 'https://ror.org/033frs404 Society for Education, Music and Psychology Research'),
(93626, 'https://ror.org/04h7zpy51', 'pt', 1, 'https://ror.org/04h7zpy51 Instituto Superior de Engenharia do Porto'),
(93627, 'https://ror.org/03tscbz39', 'fr', 1, 'https://ror.org/03tscbz39 Fondation Jean-Marie Lehn Le Centre International de Recherche aux FrontiĆØres de la Chimie'),
(93628, 'https://ror.org/01922h422', 'fr', 1, 'https://ror.org/01922h422 Collège d''enseignement général et professionnel Levis Lauzon Cégep de Lévis'),
(93629, 'https://ror.org/01z6fgx85', 'no_lang_code', 1, 'https://ror.org/01z6fgx85 CHN Energy (China) å›½å®¶čƒ½ęŗęŠ•čµ„é›†å›¢'),
(93630, 'https://ror.org/02eegq373', 'es', 1, 'https://ror.org/02eegq373 Fundación de los Ferrocarriles Españoles Spanish Railway Foundation'),
(93631, 'https://ror.org/031tb8x29', 'en', 1, 'https://ror.org/031tb8x29 The Emerald Foundation'),
(93632, 'https://ror.org/042heps41', 'en', 0, 'https://ror.org/042heps41 University College at Rockland'),
(93633, 'https://ror.org/00qaqj396', 'no_lang_code', 1, 'https://ror.org/00qaqj396 FluxMagic, Inc. FluxMagic, Inc. (United States)'),
(93634, 'https://ror.org/04tfhh831', 'en', 1, 'https://ror.org/04tfhh831 Center for Open Neuroscience'),
(93635, 'https://ror.org/02ackr434', 'no_lang_code', 1, 'https://ror.org/02ackr434 Foundation Medicine Foundation Medicine (United States)'),
(93636, 'https://ror.org/04bdqq221', 'es', 1, 'https://ror.org/04bdqq221 Concello de Cervo'),
(93637, 'https://ror.org/02hqqna27', 'en', 1, 'https://ror.org/02hqqna27 St Michael''s Hospital'),
(93638, 'https://ror.org/02fy17q72', 'es', 1, 'https://ror.org/02fy17q72 Fundación Aula Virtual'),
(93639, 'https://ror.org/02x3f7722', 'en', 0, 'https://ror.org/02x3f7722 Lakeland Health'),
(93640, 'https://ror.org/05p70jq59', 'en', 1, 'https://ror.org/05p70jq59 Ministry of Education Te Tāhuhu o te Mātauranga'),
(93641, 'https://ror.org/00bb4nn95', 'de', 1, 'https://ror.org/00bb4nn95 NFDI4DS'),
(93642, 'https://ror.org/001sezm06', 'no_lang_code', 1, 'https://ror.org/001sezm06 Parsons (United States)'),
(93643, 'https://ror.org/02pkshz09', 'en', 1, 'https://ror.org/02pkshz09 Kharkiv National University of Internal Affairs Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(93644, 'https://ror.org/02vrchf15', 'en', 1, 'https://ror.org/02vrchf15 Ʃklore-ed School of Management'),
(93645, 'https://ror.org/01yg1g961', 'es', 1, 'https://ror.org/01yg1g961 Universidad Nacional de Educación'),
(93646, 'https://ror.org/02zap0h66', 'fr', 1, 'https://ror.org/02zap0h66 Centre intégré de santé et de services sociaux de Lanaudière'),
(93647, 'https://ror.org/052ss8w32', 'en', 1, 'https://ror.org/052ss8w32 Ghana Health Service'),
(93648, 'https://ror.org/033svsm10', 'en', 1, 'https://ror.org/033svsm10 Cancer Research UK Manchester Centre'),
(93649, 'https://ror.org/00rz8kx73', 'en', 1, 'https://ror.org/00rz8kx73 Society for the Study of Addiction'),
(93650, 'https://ror.org/04fpz9t23', 'en', 1, 'https://ror.org/04fpz9t23 BabelFamily'),
(93651, 'https://ror.org/04zw2sa68', 'en', 1, 'https://ror.org/04zw2sa68 Grupo EspaƱol de CƔncer de Ovario Spanish Ovarian Cancer Research Group'),
(93652, 'https://ror.org/04t4b6y41', 'es', 0, 'https://ror.org/04t4b6y41 Instituto Nacional de la Salud'),
(93653, 'https://ror.org/04zbc6m03', 'es', 1, 'https://ror.org/04zbc6m03 ISCIII Museum Museo Nacional de Sanidad'),
(93654, 'https://ror.org/00bv2aa44', 'no_lang_code', 1, 'https://ror.org/00bv2aa44 STCube (United States)'),
(93655, 'https://ror.org/02stdqb15', 'en', 1, 'https://ror.org/02stdqb15 OVC Pet Trust'),
(93656, 'https://ror.org/04jhswv08', 'pt', 1, 'https://ror.org/04jhswv08 Fundação Oswaldo Cruz Oswaldo Cruz Foundation'),
(93657, 'https://ror.org/05r0vyz12', 'es', 1, 'https://ror.org/05r0vyz12 Ministerio de Ciencia, Innovación y Universidades'),
(93658, 'https://ror.org/034dfs572', 'en', 1, 'https://ror.org/034dfs572 Ecopath International Initiative'),
(93659, 'https://ror.org/00m98kt33', 'en', 1, 'https://ror.org/00m98kt33 Agricultural Research Institute'),
(93660, 'https://ror.org/05etxs293', 'en', 1, 'https://ror.org/05etxs293 Diamond Light Source'),
(93661, 'https://ror.org/01vt9w950', 'pt', 1, 'https://ror.org/01vt9w950 Instituto Nacional de CiĆŖncia e Tecnologia Translacional em Medicina National Science and Technology Institute for Translational Medicine'),
(93662, 'https://ror.org/05stqjz94', 'en', 0, 'https://ror.org/05stqjz94 Row Fogo Charitable Trust'),
(93663, 'https://ror.org/058cmwb06', 'es', 1, 'https://ror.org/058cmwb06 National Organization of Spanish blind people Organización Nacional de Ciegos Españoles'),
(93664, 'https://ror.org/002kg1049', 'es', 1, 'https://ror.org/002kg1049 Universidad de las AmƩricas'),
(93665, 'https://ror.org/04m2z2476', 'en', 1, 'https://ror.org/04m2z2476 The Aga Khan University (International) in the United Kingdom'),
(93666, 'https://ror.org/05hqvvq43', 'en', 1, 'https://ror.org/05hqvvq43 Government of Northwest Territories'),
(93667, 'https://ror.org/059zf1d45', 'no_lang_code', 0, 'https://ror.org/059zf1d45 Institut Universitari de Ciencia i Tecnologia (Spain)'),
(93668, 'https://ror.org/04feqxb79', 'en', 1, 'https://ror.org/04feqxb79 Atomic Energy Organization of Iran سازمان Ų§Ł†Ų±Ś˜ŪŒ Ų§ŲŖŁ…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(93669, 'https://ror.org/00qy68j92', 'en', 1, 'https://ror.org/00qy68j92 Corewell Health Blodgett Hospital'),
(93670, 'https://ror.org/04vzm8988', 'en', 1, 'https://ror.org/04vzm8988 FURTHERMORE grants in publishing'),
(93671, 'https://ror.org/05b0g2v72', 'en', 1, 'https://ror.org/05b0g2v72 Real Colegio Complutense'),
(93672, 'https://ror.org/014x5gh74', 'en', 1, 'https://ror.org/014x5gh74 Academy of Marketing'),
(93673, 'https://ror.org/036xwe059', 'de', 1, 'https://ror.org/036xwe059 Ministerium für Landwirtschaft und Verbraucherschutz des Landes Nordrhein-Westfalen'),
(93674, 'https://ror.org/03jsyxh43', 'no_lang_code', 0, 'https://ror.org/03jsyxh43 Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China) ę²ˆé˜³äø­åŒ–å†œčÆåŒ–å·„ē ”å‘ęœ‰é™å…¬åø'),
(93675, 'https://ror.org/04q4ad645', 'en', 1, 'https://ror.org/04q4ad645 Azərbaycan Mi̇lli̇ Elmlər Akademi̇yasi Şəki̇ Regi̇onal Elmi̇ Mərkəzi̇ Sheki Regional Scientific Center ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°ŃƒŠŗ АзербайГжана Шекинский Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр'),
(93676, 'https://ror.org/01jr1v359', 'fr', 1, 'https://ror.org/01jr1v359 Laboratoire d''Informatique MƩdicale et d''IngƩnierie des Connaissances en e-SantƩ'),
(93677, 'https://ror.org/02ywy0q33', 'en', 1, 'https://ror.org/02ywy0q33 Academy of Pharmaceutical Sciences'),
(93678, 'https://ror.org/03xwa9562', 'en', 1, 'https://ror.org/03xwa9562 University of Pennsylvania Press'),
(93679, 'https://ror.org/04rfts775', 'fr', 0, 'https://ror.org/04rfts775 Ɖcole Nationale d''IngĆ©nieurs des Techniques des Industries Agro-Alimentaires'),
(93680, 'https://ror.org/03sk1we31', 'en', 1, 'https://ror.org/03sk1we31 National Nuclear Security Administration'),
(93681, 'https://ror.org/0367py538', 'en', 1, 'https://ror.org/0367py538 White Rose College of the Arts and Humanities'),
(93682, 'https://ror.org/01emdsc76', 'en', 0, 'https://ror.org/01emdsc76 Prostate Action'),
(93683, 'https://ror.org/00af12v02', 'es', 1, 'https://ror.org/00af12v02 Universidad Católica Redemptoris Mater'),
(93684, 'https://ror.org/04n6fhj26', 'pt', 1, 'https://ror.org/04n6fhj26 Clinics Hospital of Ribeirão Preto Hospital das Clínicas de Ribeirão Preto'),
(93685, 'https://ror.org/05dq2gs74', 'en', 1, 'https://ror.org/05dq2gs74 Vanderbilt University Medical Center'),
(93686, 'https://ror.org/05q94pf14', 'fr', 0, 'https://ror.org/05q94pf14 Laboratoire des Symbioses Tropicales et MƩditerranƩennes'),
(93687, 'https://ror.org/00mmn6b08', 'en', 1, 'https://ror.org/00mmn6b08 Office of Science'),
(93688, 'https://ror.org/0114b2m14', 'en', 1, 'https://ror.org/0114b2m14 Office of Biological and Environmental Research'),
(93689, 'https://ror.org/030yxvx82', 'en', 1, 'https://ror.org/030yxvx82 International Society of Hypertension'),
(93690, 'https://ror.org/0059vr703', 'en', 1, 'https://ror.org/0059vr703 Laboratory for Integrated Micro-Mechatronic Systems'),
(93691, 'https://ror.org/020fnnz65', 'en', 1, 'https://ror.org/020fnnz65 Royal College of Chiropractors'),
(93692, 'https://ror.org/03f3pbx54', 'fr', 1, 'https://ror.org/03f3pbx54 Centre d''Ʃtude des discours, images, textes, Ʃcrits et communications'),
(93693, 'https://ror.org/05kdrkh60', 'fr', 1, 'https://ror.org/05kdrkh60 Savoirs et Pratiques du Moyen Ƃge au XIXe siĆØcle'),
(93694, 'https://ror.org/051pg0937', 'es', 1, 'https://ror.org/051pg0937 Operador Nacional de Electricidad - CENACE'),
(93695, 'https://ror.org/05dwv1d98', 'fr', 1, 'https://ror.org/05dwv1d98 Institut des Mondes Anglophone, Germanique et Roman'),
(93696, 'https://ror.org/0428xjm46', 'en', 1, 'https://ror.org/0428xjm46 British Society for Neuroendocrinology'),
(93697, 'https://ror.org/015pzp858', 'en', 1, 'https://ror.org/015pzp858 Gouvernement de l''Ontario Government of Ontario'),
(93698, 'https://ror.org/045x93337', 'en', 1, 'https://ror.org/045x93337 Yeshiva University'),
(93699, 'https://ror.org/03v0pmy70', 'en', 1, 'https://ror.org/03v0pmy70 Departamento del Interior de los Estados Unidos DĆ©partement de l''intĆ©rieur des Ɖtats-unis United States Department of the Interior'),
(93700, 'https://ror.org/017x69387', 'fr', 1, 'https://ror.org/017x69387 Laboratoire d''Urbanisme'),
(93701, 'https://ror.org/00ek90y03', 'id', 1, 'https://ror.org/00ek90y03 Universitas Karya Husada Semarang'),
(93702, 'https://ror.org/01yj5ad85', 'de', 1, 'https://ror.org/01yj5ad85 Bundesministerium für Umwelt, Naturschutz, nukleare Sicherheit und Verbraucherschutz'),
(93703, 'https://ror.org/0363axb98', 'es', 1, 'https://ror.org/0363axb98 Universidad Tecnológica de La Paz'),
(93704, 'https://ror.org/04x1a4s97', 'fr', 0, 'https://ror.org/04x1a4s97 UniversitƩ Bretagne Loire'),
(93705, 'https://ror.org/05tj7dm33', 'en', 1, 'https://ror.org/05tj7dm33 Office of Nuclear Energy'),
(93706, 'https://ror.org/02shtak05', 'de', 1, 'https://ror.org/02shtak05 Fondation pour l''évaluation des choix technologiques Fondazione per la valutazione delle scelte tecnologiche Foundation for Technology Assessment Stiftung für Technologiefolgen-Abschätzung'),
(93707, 'https://ror.org/017z1j344', 'en', 1, 'https://ror.org/017z1j344 Kentucky Academy of Science'),
(93708, 'https://ror.org/028ydjm20', 'en', 0, 'https://ror.org/028ydjm20 Argosy University'),
(93709, 'https://ror.org/01qew1n19', 'fr', 1, 'https://ror.org/01qew1n19 IRT Saint ExupƩry'),
(93710, 'https://ror.org/0096stf71', 'en', 1, 'https://ror.org/0096stf71 The Bronx Defenders'),
(93711, 'https://ror.org/03fjajp23', 'es', 1, 'https://ror.org/03fjajp23 RegistradurĆ­a Nacional del Estado Civil de Colombia'),
(93712, 'https://ror.org/02ayba360', 'en', 1, 'https://ror.org/02ayba360 Safety, Security, and Quality Assurance'),
(93713, 'https://ror.org/033jnv181', 'en', 1, 'https://ror.org/033jnv181 United States Department of Health and Human Services'),
(93714, 'https://ror.org/03jzzxg14', 'en', 1, 'https://ror.org/03jzzxg14 University Hospitals Bristol and Weston NHS Foundation Trust'),
(93715, 'https://ror.org/01wz1s943', 'en', 1, 'https://ror.org/01wz1s943 Bhailal Amin General Hospital'),
(93716, 'https://ror.org/05fehs989', 'en', 1, 'https://ror.org/05fehs989 Bristol University Press'),
(93717, 'https://ror.org/00pvy2x95', 'en', 1, 'https://ror.org/00pvy2x95 Wesley Research Institute'),
(93718, 'https://ror.org/03k171441', 'en', 1, 'https://ror.org/03k171441 Biodiversity Information Standards (TDWG)');
INSERT INTO `rors` VALUES
(93719, 'https://ror.org/02fynbf61', 'en', 1, 'https://ror.org/02fynbf61 Tennessee Academy of Science'),
(93720, 'https://ror.org/02b8e6n56', 'en', 1, 'https://ror.org/02b8e6n56 Central States Center for Agricultural Safety and Health'),
(93721, 'https://ror.org/01zc4nk92', 'fr', 0, 'https://ror.org/01zc4nk92 DiversitƩ, adaptation, dƩveloppement des plantes'),
(93722, 'https://ror.org/05rdqpb56', 'no_lang_code', 0, 'https://ror.org/05rdqpb56 AIM at Melanoma'),
(93723, 'https://ror.org/05kg11974', 'en', 1, 'https://ror.org/05kg11974 The University of Kansas Health System'),
(93724, 'https://ror.org/05t2rs949', 'pt', 1, 'https://ror.org/05t2rs949 Fundação Instituto de Educação de Barueri'),
(93725, 'https://ror.org/00j35ca78', 'fr', 0, 'https://ror.org/00j35ca78 Nutrition et Alimentation des Populations aux Suds'),
(93726, 'https://ror.org/02n3j8t12', 'en', 1, 'https://ror.org/02n3j8t12 Office of Fusion Energy Sciences'),
(93727, 'https://ror.org/00s4mzv66', 'en', 1, 'https://ror.org/00s4mzv66 Johns Hopkins University Press'),
(93728, 'https://ror.org/01k33dw46', 'en', 1, 'https://ror.org/01k33dw46 Brain Tumour Charity'),
(93729, 'https://ror.org/00cx9er29', 'en', 1, 'https://ror.org/00cx9er29 Acquisition and Project Management'),
(93730, 'https://ror.org/018et4y07', 'en', 1, 'https://ror.org/018et4y07 American Society for Transplantation and Cellular Therapy'),
(93731, 'https://ror.org/04da1g573', 'en', 1, 'https://ror.org/04da1g573 Office of Fissile Materials Disposition'),
(93732, 'https://ror.org/05bdn0q71', 'fr', 1, 'https://ror.org/05bdn0q71 Laboratoire d''Algorithmique, ComplexitƩ et Logique'),
(93733, 'https://ror.org/04dkv6329', 'en', 1, 'https://ror.org/04dkv6329 Prostate Cancer UK'),
(93734, 'https://ror.org/00awbw743', 'en', 1, 'https://ror.org/00awbw743 Swedish Veterinary Agency'),
(93735, 'https://ror.org/03vc2bp93', 'en', 1, 'https://ror.org/03vc2bp93 UNAD Florida'),
(93736, 'https://ror.org/00ancw882', 'en', 1, 'https://ror.org/00ancw882 Svensk nationell datatjƤnst Swedish National Data Service'),
(93737, 'https://ror.org/03vq33s23', 'en', 1, 'https://ror.org/03vq33s23 Kurdistan Institute for Strategic Studies and Scientific Research ŲÆŪ•Ų³ŲŖŪ•ŪŒ Ś©ŁˆŲ±ŲÆŲ³ŲŖŲ§Ł†ŪŒ ŲØŪ† دراساتی ستراتیجی و ŲŖŁˆŪŽŚ˜ŪŒŁ†Ū•ŁˆŪ•ŪŒ Ų²Ų§Ł†Ų³ŲŖŪŒ'),
(93738, 'https://ror.org/038nwvj35', 'en', 1, 'https://ror.org/038nwvj35 Office of Small Business Innovation Research and Small Business Technology Transfer Programs'),
(93739, 'https://ror.org/00w0hef10', 'fr', 1, 'https://ror.org/00w0hef10 Laboratoire Images, signaux et systĆØmes intelligents Laboratory of Images, Signals and Intelligent Systems'),
(93740, 'https://ror.org/03wyf0g15', 'it', 1, 'https://ror.org/03wyf0g15 Institute of Biomolecular Chemistry Istituto di Chimica Biomolecolare'),
(93741, 'https://ror.org/03rsgdh53', 'en', 1, 'https://ror.org/03rsgdh53 ICAR - Central Island Agricultural Research Institute ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¦ą„ą¤Ŗą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(93742, 'https://ror.org/04kd9a392', 'en', 1, 'https://ror.org/04kd9a392 Weir Advanced Research Centre'),
(93743, 'https://ror.org/01kbfgm16', 'en', 1, 'https://ror.org/01kbfgm16 UC San Diego Health System'),
(93744, 'https://ror.org/05m235j20', 'en', 1, 'https://ror.org/05m235j20 Brazilian Center for Research in Energy and Materials'),
(93745, 'https://ror.org/00s1ckt27', 'en', 1, 'https://ror.org/00s1ckt27 Hochschule Wismar Wismar University of Applied Sciences'),
(93746, 'https://ror.org/005jmje44', 'en', 1, 'https://ror.org/005jmje44 Office of Energy Analysis'),
(93747, 'https://ror.org/01ea4na26', 'fr', 1, 'https://ror.org/01ea4na26 Centre d''Ɖtudes et de Recherche en Thermique, Environnement et SystĆØmes'),
(93748, 'https://ror.org/02z1qvq09', 'en', 1, 'https://ror.org/02z1qvq09 Office of Intelligence and Counterintelligence'),
(93749, 'https://ror.org/011cav305', 'en', 1, 'https://ror.org/011cav305 Schweizerische Akademie der Medizinischen Wissenschaften Swiss Academy of Medical Sciences'),
(93750, 'https://ror.org/03g42sh82', 'en', 1, 'https://ror.org/03g42sh82 Ignite Life Science Foundation'),
(93751, 'https://ror.org/019wm1d19', 'en', 1, 'https://ror.org/019wm1d19 Ersilia Open Source Initiative'),
(93752, 'https://ror.org/03bx63127', 'en', 1, 'https://ror.org/03bx63127 Office of Energy Statistics'),
(93753, 'https://ror.org/03jhvx342', 'fr', 0, 'https://ror.org/03jhvx342 RMN BiomƩdicale et Neurosciences'),
(93754, 'https://ror.org/00289aa83', 'en', 1, 'https://ror.org/00289aa83 Australian Biological Resources Study'),
(93755, 'https://ror.org/03ekpdz59', 'de', 1, 'https://ror.org/03ekpdz59 Sächsisches Staatsministerium für Energie, Klimaschutz, Umwelt und Landwirtschaft'),
(93756, 'https://ror.org/035cj2961', 'en', 1, 'https://ror.org/035cj2961 National Ignition Facility'),
(93757, 'https://ror.org/00km40770', 'en', 1, 'https://ror.org/00km40770 Office of Environmental Management'),
(93758, 'https://ror.org/04pn69091', 'no_lang_code', 1, 'https://ror.org/04pn69091 The Tomorrow Companies Inc. (United States)'),
(93759, 'https://ror.org/01khhjy85', 'no_lang_code', 1, 'https://ror.org/01khhjy85 ATI Inc. ATI Inc. (United States)'),
(93760, 'https://ror.org/011dagb24', 'da', 1, 'https://ror.org/011dagb24 NƦstved Hospital NƦstved Sygehus'),
(93761, 'https://ror.org/030sykb84', 'en', 1, 'https://ror.org/030sykb84 People''s Hospital of Wangcheng District Changsha é•æę²™åø‚ęœ›åŸŽåŒŗäŗŗę°‘åŒ»é™¢'),
(93762, 'https://ror.org/059t7s261', 'es', 1, 'https://ror.org/059t7s261 Centro de Documentación Musical de Andalucía'),
(93763, 'https://ror.org/04rp4zh16', 'en', 1, 'https://ror.org/04rp4zh16 Office of Clean Energy Demonstrations'),
(93764, 'https://ror.org/0125wpx05', 'en', 1, 'https://ror.org/0125wpx05 UNSW Canberra'),
(93765, 'https://ror.org/03ery9d53', 'en', 1, 'https://ror.org/03ery9d53 Office of Fossil Energy'),
(93766, 'https://ror.org/04qvgb234', 'en', 1, 'https://ror.org/04qvgb234 Precast/Prestressed Concrete Institute'),
(93767, 'https://ror.org/04facpy29', 'de', 1, 'https://ror.org/04facpy29 Sächsisches Landesamt für Umwelt, Landwirtschaft und Geologie'),
(93768, 'https://ror.org/03k0cyw07', 'no_lang_code', 1, 'https://ror.org/03k0cyw07 Toray (United States)'),
(93769, 'https://ror.org/00p2m7w82', 'en', 1, 'https://ror.org/00p2m7w82 Academy of Neonatal Nursing'),
(93770, 'https://ror.org/00xfkzq83', 'en', 1, 'https://ror.org/00xfkzq83 Israel Institute'),
(93771, 'https://ror.org/02wa0fq92', 'en', 1, 'https://ror.org/02wa0fq92 Department of Employment and Workplace Relations'),
(93772, 'https://ror.org/030jvtg87', 'en', 1, 'https://ror.org/030jvtg87 Mike and Josie Harper Cancer Research Institute'),
(93773, 'https://ror.org/03e51yr27', 'pt', 1, 'https://ror.org/03e51yr27 Laboratório Nacional de Nanotecnologia'),
(93774, 'https://ror.org/00wbge811', 'pt', 1, 'https://ror.org/00wbge811 Centro Universitario Franciscano Universidade Franciscana'),
(93775, 'https://ror.org/02dg3n954', 'fr', 0, 'https://ror.org/02dg3n954 Laboratoire de Neurosciences Cognitives'),
(93776, 'https://ror.org/034x1af55', 'en', 0, 'https://ror.org/034x1af55 University of Nordland'),
(93777, 'https://ror.org/03cggs816', 'en', 0, 'https://ror.org/03cggs816 Higher Education Careers Services Unit'),
(93778, 'https://ror.org/047179s14', 'es', 1, 'https://ror.org/047179s14 Universidad Nacional Abierta y a Distancia'),
(93779, 'https://ror.org/00pn44t17', 'es', 1, 'https://ror.org/00pn44t17 Universidad Mayor'),
(93780, 'https://ror.org/01jf74q70', 'id', 1, 'https://ror.org/01jf74q70 Universitas Negeri Surabaya'),
(93781, 'https://ror.org/00ppxvb66', 'en', 1, 'https://ror.org/00ppxvb66 Office of Energy Policy'),
(93782, 'https://ror.org/019phe233', 'en', 1, 'https://ror.org/019phe233 The Bryden Centre'),
(93783, 'https://ror.org/01j628m19', 'no_lang_code', 1, 'https://ror.org/01j628m19 OICC Press (United Kingdom)'),
(93784, 'https://ror.org/036mbz113', 'en', 1, 'https://ror.org/036mbz113 Eastern Institute of Technology, Ningbo å®ę³¢äøœę–¹ē†å·„å¤§å­¦'),
(93785, 'https://ror.org/035m6g344', 'en', 1, 'https://ror.org/035m6g344 Office of High Energy Physics'),
(93786, 'https://ror.org/040zw0170', 'en', 1, 'https://ror.org/040zw0170 Chandler–Gilbert Community College'),
(93787, 'https://ror.org/013xphc70', 'en', 1, 'https://ror.org/013xphc70 Iloilo State University of Fisheries Science and Technology'),
(93788, 'https://ror.org/00nc7q809', 'en', 1, 'https://ror.org/00nc7q809 Patrick Berthoud Charitable Trust'),
(93789, 'https://ror.org/03q1rgc19', 'en', 1, 'https://ror.org/03q1rgc19 Advanced Research Projects Agency - Energy'),
(93790, 'https://ror.org/01cmdpn82', 'fr', 0, 'https://ror.org/01cmdpn82 Signalisation, Neurobiologie et Cancer'),
(93791, 'https://ror.org/05dnzrj50', 'en', 0, 'https://ror.org/05dnzrj50 Materials Sciences and Engineering Division'),
(93792, 'https://ror.org/04v85vk04', 'fr', 1, 'https://ror.org/04v85vk04 Lettres, idƩes, savoirs'),
(93793, 'https://ror.org/016gy9w96', 'en', 0, 'https://ror.org/016gy9w96 Ministry of Education'),
(93794, 'https://ror.org/0054t4769', 'en', 1, 'https://ror.org/0054t4769 Office of the General Counsel'),
(93795, 'https://ror.org/0545xqn50', 'en', 1, 'https://ror.org/0545xqn50 Louisiana Academy of Sciences'),
(93796, 'https://ror.org/0294j1w75', 'no_lang_code', 0, 'https://ror.org/0294j1w75 Bendix Field Engineering Corporation (United States)'),
(93797, 'https://ror.org/04fynt521', 'es', 1, 'https://ror.org/04fynt521 Hospital la Pedrera'),
(93798, 'https://ror.org/05k20z216', 'en', 1, 'https://ror.org/05k20z216 International Panel on the Information Environment'),
(93799, 'https://ror.org/02atag894', 'en', 1, 'https://ror.org/02atag894 Office of Nuclear Physics'),
(93800, 'https://ror.org/04ky51q37', 'en', 1, 'https://ror.org/04ky51q37 1907 Foundation'),
(93801, 'https://ror.org/01edzc976', 'en', 1, 'https://ror.org/01edzc976 Office of Defense Nuclear Nonproliferation'),
(93802, 'https://ror.org/01pvzn627', 'en', 0, 'https://ror.org/01pvzn627 Ministry of Economic Development, Employment and Infrastructure Ministère du Développement économique, de l''Emploi et de l''Infrastructure'),
(93803, 'https://ror.org/0012c7r22', 'en', 1, 'https://ror.org/0012c7r22 Office of Advanced Scientific Computing Research'),
(93804, 'https://ror.org/00fna1f74', 'no_lang_code', 1, 'https://ror.org/00fna1f74 Toray (Thailand)'),
(93805, 'https://ror.org/05mg91w61', 'en', 1, 'https://ror.org/05mg91w61 Office of Basic Energy Sciences'),
(93806, 'https://ror.org/00krsne85', 'en', 1, 'https://ror.org/00krsne85 Mindanao State University - Maguindanao'),
(93807, 'https://ror.org/04xk4ep23', 'en', 1, 'https://ror.org/04xk4ep23 Montana Agricultural Experiment Station'),
(93808, 'https://ror.org/048qk7477', 'en', 0, 'https://ror.org/048qk7477 Inflammation, Microbiome and Immunosurveillance'),
(93809, 'https://ror.org/0287ptp38', 'en', 0, 'https://ror.org/0287ptp38 France Business School'),
(93810, 'https://ror.org/04xf1tw93', 'es', 1, 'https://ror.org/04xf1tw93 Superintendencia Nacional de Aduanas y de Administración Tributaria'),
(93811, 'https://ror.org/03ry8wj79', 'es', 0, 'https://ror.org/03ry8wj79 Instituto de Biotecnología de León'),
(93812, 'https://ror.org/02cnrsw88', 'en', 1, 'https://ror.org/02cnrsw88 Slagelse Hospital Slagelse Sygehus'),
(93813, 'https://ror.org/011gnc761', 'en', 1, 'https://ror.org/011gnc761 Epidemiology in dermatology and evaluation of therapeutics'),
(93814, 'https://ror.org/00xdg8m59', 'no_lang_code', 1, 'https://ror.org/00xdg8m59 Bell Bell (Canada)'),
(93815, 'https://ror.org/01c9ay627', 'en', 1, 'https://ror.org/01c9ay627 Office of Environmental Protection, Sustainability Support and Corporate Safety Analysis'),
(93816, 'https://ror.org/044xyx374', 'en', 1, 'https://ror.org/044xyx374 Infrastructure Security & Energy Restoration'),
(93817, 'https://ror.org/001z21q04', 'fr', 0, 'https://ror.org/001z21q04 PĆ“le de Recherche et d’Enseignement SupĆ©rieur Sorbonne Paris CitĆ© Sorbonne Paris CitĆ©'),
(93818, 'https://ror.org/00q3xz126', 'en', 0, 'https://ror.org/00q3xz126 Roswell Park Comprehensive Cancer Center'),
(93819, 'https://ror.org/045sr2y25', 'no_lang_code', 1, 'https://ror.org/045sr2y25 Tonix Pharmaceuticals (United States)'),
(93820, 'https://ror.org/05gmzxc62', 'no_lang_code', 1, 'https://ror.org/05gmzxc62 Arconic (United States)'),
(93821, 'https://ror.org/01e7m5196', 'en', 1, 'https://ror.org/01e7m5196 Disaster Prevention & Water Environment Research Center é˜²ē½čˆ‡ę°“ē’°å¢ƒē ”ē©¶äø­åæƒ'),
(93822, 'https://ror.org/04s778r16', 'en', 1, 'https://ror.org/04s778r16 Office of Space and Defense Power Systems'),
(93823, 'https://ror.org/003yb7p17', 'no_lang_code', 1, 'https://ror.org/003yb7p17 Alcoa (United States)'),
(93824, 'https://ror.org/04dj4wy53', 'no_lang_code', 1, 'https://ror.org/04dj4wy53 Lifetime Omics (United States)'),
(93825, 'https://ror.org/0401vze59', 'en', 0, 'https://ror.org/0401vze59 Astrophysics Science Division'),
(93826, 'https://ror.org/00938we49', 'es', 1, 'https://ror.org/00938we49 Instituto de Estudios DemocrƔticos'),
(93827, 'https://ror.org/02s89bg52', 'es', 1, 'https://ror.org/02s89bg52 Asociación Colombiana de Hematología y Oncología'),
(93828, 'https://ror.org/059qgvg50', 'en', 1, 'https://ror.org/059qgvg50 Health Research'),
(93829, 'https://ror.org/02dcv6909', 'en', 0, 'https://ror.org/02dcv6909 Astrophysics Science Division'),
(93830, 'https://ror.org/039ffyr38', 'es', 1, 'https://ror.org/039ffyr38 Universidad Nacional Francisco Luis Espinoza Pineda'),
(93831, 'https://ror.org/005381c03', 'en', 1, 'https://ror.org/005381c03 Academia Svizra da Scienzas Umanas e Socialas AcadƩmie Suisse des Sciences Humaines et Sociales Schweizerische Akademie der Geistes- und Sozialwissenschaften Swiss Academy of Humanities and Social Sciences'),
(93832, 'https://ror.org/051cchq23', 'es', 1, 'https://ror.org/051cchq23 Instituto Tecnológico de Úrsulo GalvÔn'),
(93833, 'https://ror.org/041g4v832', 'en', 1, 'https://ror.org/041g4v832 Office of Cybersecurity, Energy Security, and Emergency Response'),
(93834, 'https://ror.org/05tensj89', 'en', 1, 'https://ror.org/05tensj89 AcadƩmie Suisse des Sciences Naturelles Accademia Svizzera di Scienze Naturali Akademie der Naturwissenschaften Schweiz Swiss Academy of Sciences'),
(93835, 'https://ror.org/01skzfp69', 'en', 1, 'https://ror.org/01skzfp69 City and Guilds College Association'),
(93836, 'https://ror.org/05923zj50', 'es', 1, 'https://ror.org/05923zj50 Asociación Colombiana de Neumología y Cirugía de Tórax'),
(93837, 'https://ror.org/03q82t418', 'en', 1, 'https://ror.org/03q82t418 NHS Lothian'),
(93838, 'https://ror.org/00tncsy16', 'es', 1, 'https://ror.org/00tncsy16 Universidad EAN'),
(93839, 'https://ror.org/05v1wzc05', 'no_lang_code', 0, 'https://ror.org/05v1wzc05 Bell Canada Enterprises (Canada)'),
(93840, 'https://ror.org/02xfw2e90', 'en', 1, 'https://ror.org/02xfw2e90 United States Department of Transportation'),
(93841, 'https://ror.org/04nnxen11', 'en', 1, 'https://ror.org/04nnxen11 Office of Inspector General'),
(93842, 'https://ror.org/03r81z761', 'en', 1, 'https://ror.org/03r81z761 Bradens'' Hope For Childhood Cancer'),
(93843, 'https://ror.org/02rdkx920', 'en', 1, 'https://ror.org/02rdkx920 United States Army Combat Capabilities Development Command'),
(93844, 'https://ror.org/010s7yy66', 'en', 0, 'https://ror.org/010s7yy66 UK Brain Tumour Society'),
(93845, 'https://ror.org/01qkmtm61', 'en', 1, 'https://ror.org/01qkmtm61 Moores Cancer Center'),
(93846, 'https://ror.org/05n3s3g85', 'en', 1, 'https://ror.org/05n3s3g85 Civilian Nuclear Programs'),
(93847, 'https://ror.org/00g8ggv10', 'fr', 1, 'https://ror.org/00g8ggv10 CƩgep GƩrald-Godin'),
(93848, 'https://ror.org/0133f6116', 'es', 1, 'https://ror.org/0133f6116 Universidad Tecnológica del Centro de Veracruz'),
(93849, 'https://ror.org/012gedv51', 'en', 1, 'https://ror.org/012gedv51 Santander Universities'),
(93850, 'https://ror.org/00se2k293', 'en', 1, 'https://ror.org/00se2k293 National Yang Ming Chiao Tung University'),
(93851, 'https://ror.org/02bcmdm86', 'en', 0, 'https://ror.org/02bcmdm86 Franciscan University'),
(93852, 'https://ror.org/00aqh0734', 'no_lang_code', 1, 'https://ror.org/00aqh0734 Tullow Oil (United Kingdom)'),
(93853, 'https://ror.org/01rqwqr15', 'en', 1, 'https://ror.org/01rqwqr15 Point Pedro Institute of Development'),
(93854, 'https://ror.org/0545we460', 'en', 1, 'https://ror.org/0545we460 South-East Scotland School of Anaesthesia'),
(93855, 'https://ror.org/0499dwk57', 'en', 1, 'https://ror.org/0499dwk57 Roswell Park Comprehensive Cancer Center'),
(93856, 'https://ror.org/030p0rb34', 'en', 1, 'https://ror.org/030p0rb34 Andrology Gerontechnology Inflammation Modelisation'),
(93857, 'https://ror.org/05msy3529', 'en', 1, 'https://ror.org/05msy3529 Office of Workforce Development for Teachers and Scientists'),
(93858, 'https://ror.org/001ycj259', 'en', 1, 'https://ror.org/001ycj259 China Astronaut Research and Training Center äø­å›½čˆŖå¤©å‘˜ē§‘ē ”č®­ē»ƒäø­åæƒ'),
(93859, 'https://ror.org/04dyqmv49', 'it', 1, 'https://ror.org/04dyqmv49 Ospedale Misericordia - Grosseto'),
(93860, 'https://ror.org/04wecwh56', 'en', 1, 'https://ror.org/04wecwh56 Institut za nuklearne nauke Vinča Vinča Institute of Nuclear Sciences'),
(93861, 'https://ror.org/00h52n341', 'en', 1, 'https://ror.org/00h52n341 Changchun Institute of Applied Chemistry äø­å›½ē§‘å­¦é™¢é•æę˜„åŗ”ē”ØåŒ–å­¦ē ”ē©¶ę‰€'),
(93862, 'https://ror.org/041vb4f30', 'en', 1, 'https://ror.org/041vb4f30 UCD Centre for Veterinary Epidemiology and Risk Analysis'),
(93863, 'https://ror.org/01wcz2f33', 'en', 1, 'https://ror.org/01wcz2f33 Saint Francis University ę˜Žę„›å°ˆäøŠå­øé™¢'),
(93864, 'https://ror.org/03gjv3a85', 'en', 1, 'https://ror.org/03gjv3a85 State Key Laboratory of Laser Technology ęæ€å…‰ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93865, 'https://ror.org/01gxzrh19', 'pt', 1, 'https://ror.org/01gxzrh19 Government of Santa Catarina Governo de Santa Catarina'),
(93866, 'https://ror.org/019gta678', 'en', 1, 'https://ror.org/019gta678 InnovaWood'),
(93867, 'https://ror.org/01z88k350', 'en', 1, 'https://ror.org/01z88k350 Pharmaceutical Research and Manufacturers of America'),
(93868, 'https://ror.org/00q283y58', 'pt', 1, 'https://ror.org/00q283y58 Fundação Catarinense de Educação Especial'),
(93869, 'https://ror.org/0001zgs18', 'de', 1, 'https://ror.org/0001zgs18 Niedersächsisches Ministerium für Umwelt, Energie und Klimaschutz'),
(93870, 'https://ror.org/00arpt780', 'en', 1, 'https://ror.org/00arpt780 Institute for Marine and Antarctic Studies'),
(93871, 'https://ror.org/04q6hh787', 'es', 1, 'https://ror.org/04q6hh787 Escuela Nacional de ArchivĆ­stica'),
(93872, 'https://ror.org/05fv9c840', 'en', 1, 'https://ror.org/05fv9c840 Australian Maritime College'),
(93873, 'https://ror.org/057916623', 'fr', 0, 'https://ror.org/057916623 MƩcanismes Centraux et PƩriphƩriques de la NeurodƩgƩnƩrescence'),
(93874, 'https://ror.org/05fqmdn41', 'en', 1, 'https://ror.org/05fqmdn41 Institute for Social Change'),
(93875, 'https://ror.org/0296ebz56', 'de', 1, 'https://ror.org/0296ebz56 inspire research Beratungsgesellschaft m.b.H. (Austria)'),
(93876, 'https://ror.org/00kgb4w19', 'pt', 1, 'https://ror.org/00kgb4w19 Prefeitura da Cidade do Recife'),
(93877, 'https://ror.org/024cz2s53', 'en', 1, 'https://ror.org/024cz2s53 Karaganda Medical University ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Университет ŠšŠ°Ń€Š°Š³Š°Š½Š“Ń‹ ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(93878, 'https://ror.org/05g89bp20', 'pt', 1, 'https://ror.org/05g89bp20 Hospital de ClĆ­nicas da Unicamp'),
(93879, 'https://ror.org/057zh3y96', 'en', 1, 'https://ror.org/057zh3y96 The University of Tokyo ę±äŗ¬å¤§å­¦'),
(93880, 'https://ror.org/026svqy15', 'en', 1, 'https://ror.org/026svqy15 VERSES VERSES (United States)'),
(93881, 'https://ror.org/03jdc5495', 'en', 1, 'https://ror.org/03jdc5495 SANT Herbarium'),
(93882, 'https://ror.org/0336zpb09', 'en', 1, 'https://ror.org/0336zpb09 The Liverpool Blue Coat School'),
(93883, 'https://ror.org/055jvqb21', 'fr', 1, 'https://ror.org/055jvqb21 Fondation HEC HEC Foundation'),
(93884, 'https://ror.org/006q8y354', 'en', 0, 'https://ror.org/006q8y354 Center for Advanced Security Research Darmstadt'),
(93885, 'https://ror.org/0274qxk35', 'en', 1, 'https://ror.org/0274qxk35 Bluecoat'),
(93886, 'https://ror.org/04m098c22', 'en', 1, 'https://ror.org/04m098c22 Species 2000'),
(93887, 'https://ror.org/043djah44', 'en', 0, 'https://ror.org/043djah44 European Center for Security and Privacy by Design'),
(93888, 'https://ror.org/01dvabv26', 'en', 1, 'https://ror.org/01dvabv26 Bülent Ecevit University Bülent Ecevit Üniversitesi'),
(93889, 'https://ror.org/048pkqn85', 'no_lang_code', 0, 'https://ror.org/048pkqn85 Microwave Medical Systems (United States)'),
(93890, 'https://ror.org/02ac58f22', 'en', 1, 'https://ror.org/02ac58f22 Rotterdam Study'),
(93891, 'https://ror.org/00bn0wv11', 'en', 1, 'https://ror.org/00bn0wv11 Xuzhou College of Industrial Technology å¾å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(93892, 'https://ror.org/0391pvr85', 'en', 1, 'https://ror.org/0391pvr85 Wildlife Conservation Society Vietnam'),
(93893, 'https://ror.org/04myefg51', 'en', 1, 'https://ror.org/04myefg51 Southern Skies Network'),
(93894, 'https://ror.org/03wmx8367', 'en', 0, 'https://ror.org/03wmx8367 National Coordination Office'),
(93895, 'https://ror.org/00jks2h96', 'en', 1, 'https://ror.org/00jks2h96 Department of Agriculture, Fisheries and Forestry'),
(93896, 'https://ror.org/04jqtny57', 'en', 1, 'https://ror.org/04jqtny57 ARC Research Hub for Sustainable Onshore Lobster Aquaculture'),
(93897, 'https://ror.org/03vff5r77', 'no_lang_code', 1, 'https://ror.org/03vff5r77 Eastern Research Group (United States)'),
(93898, 'https://ror.org/03khyar38', 'fr', 1, 'https://ror.org/03khyar38 Escuela Superior de Artes de Circo Ɖcole SupĆ©rieure des Arts du Cirque'),
(93899, 'https://ror.org/041njsz97', 'en', 1, 'https://ror.org/041njsz97 ARC Centre for Forest Value'),
(93900, 'https://ror.org/031jrmw28', 'en', 1, 'https://ror.org/031jrmw28 State Enterprise ā€œDnipropetrovsk Regional State Research and Technical Center for Standardization, Metrology and Certificationā€ Державне піГприємство Ā«Š”Š½Ń–ŠæŃ€Š¾ŠæŠµŃ‚Ń€Š¾Š²ŃŃŒŠŗŠøŠ¹ Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Гержавний науково-технічний центр станГартизації, метрології та сертифікації»'),
(93901, 'https://ror.org/01vkz3960', 'en', 1, 'https://ror.org/01vkz3960 University of Lethbridge Faculty Association'),
(93902, 'https://ror.org/02y1g7e04', 'en', 1, 'https://ror.org/02y1g7e04 Government Polytechnic, Chhatrapati Sambhaji Nagar ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤Øą¤æą¤•ą„‡ą¤¤ą¤Ø,ą¤›ą¤¤ą„ą¤°ą¤Ŗą¤¤ą„€ ą¤øą¤‚ą¤­ą¤¾ą¤œą„€ą¤Øą¤—ą¤°'),
(93903, 'https://ror.org/03mtd9a03', 'en', 1, 'https://ror.org/03mtd9a03 Stanford Medicine'),
(93904, 'https://ror.org/00fxh9j50', 'en', 1, 'https://ror.org/00fxh9j50 Shanghai Yangpu Senior High School äøŠęµ·åø‚ęØęµ¦é«˜ēŗ§äø­å­¦'),
(93905, 'https://ror.org/04hy0x592', 'en', 1, 'https://ror.org/04hy0x592 Woolcock Institute of Medical Research'),
(93906, 'https://ror.org/03493zm15', 'id', 1, 'https://ror.org/03493zm15 Universitas DIPA Makassar'),
(93907, 'https://ror.org/05pfntr04', 'en', 1, 'https://ror.org/05pfntr04 All Russian Research Institute of Animal Breeding Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ племенного Гела'),
(93908, 'https://ror.org/05k9dfy31', 'en', 1, 'https://ror.org/05k9dfy31 CBE Consultants, Inc. CBE Consultants, Inc. (United States)'),
(93909, 'https://ror.org/05t0gvw18', 'pt', 1, 'https://ror.org/05t0gvw18 Instituto de Educação Superior de Brasília'),
(93910, 'https://ror.org/0262vjy29', 'en', 1, 'https://ror.org/0262vjy29 Government of Punjab'),
(93911, 'https://ror.org/0504x3693', 'pt', 1, 'https://ror.org/0504x3693 Editora da Universidade do Estado de Minas Gerais'),
(93912, 'https://ror.org/01ff1ff64', 'en', 1, 'https://ror.org/01ff1ff64 Centre for Ore Deposit and Earth Sciences'),
(93913, 'https://ror.org/057gqmg22', 'es', 1, 'https://ror.org/057gqmg22 Consejo Argentino de OftalmologĆ­a'),
(93914, 'https://ror.org/05c84j393', 'pt', 1, 'https://ror.org/05c84j393 Minas Gerais State University Universidade do Estado de Minas Gerais'),
(93915, 'https://ror.org/03vkake80', 'en', 1, 'https://ror.org/03vkake80 Collège américain de grèce The American College of Greece'),
(93916, 'https://ror.org/02w69ra18', 'en', 1, 'https://ror.org/02w69ra18 Multimedia Nusantara Polytechnic'),
(93917, 'https://ror.org/041ddxq18', 'en', 1, 'https://ror.org/041ddxq18 University of Doha for Science and Technology'),
(93918, 'https://ror.org/00tfmma03', 'en', 1, 'https://ror.org/00tfmma03 Australian Centre for Research on Separation Science'),
(93919, 'https://ror.org/038pwz535', 'en', 1, 'https://ror.org/038pwz535 NSW Department of Climate Change, Energy, the Environment and Water'),
(93920, 'https://ror.org/058wb7691', 'no_lang_code', 1, 'https://ror.org/058wb7691 Renesas Electronics (Japan) ćƒ«ćƒć‚µć‚¹ ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(93921, 'https://ror.org/03r3cns79', 'en', 1, 'https://ror.org/03r3cns79 Centre for Renewable Energy and Power Systems'),
(93922, 'https://ror.org/05xyr4058', 'en', 1, 'https://ror.org/05xyr4058 Australian Institute of Health Service Management'),
(93923, 'https://ror.org/02c21vy68', 'es', 1, 'https://ror.org/02c21vy68 Universidad Nacional de La Pampa'),
(93924, 'https://ror.org/01wjx4d10', 'en', 1, 'https://ror.org/01wjx4d10 Liaocheng Fifth People''s Hospital čŠåŸŽåø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(93925, 'https://ror.org/03yvs0f43', 'no_lang_code', 0, 'https://ror.org/03yvs0f43 Integrated Device Technology (United States)'),
(93926, 'https://ror.org/00sefv038', 'en', 1, 'https://ror.org/00sefv038 Multimedia Nusantara University Universitas Multimedia Nusantara'),
(93927, 'https://ror.org/045zbxg02', 'en', 1, 'https://ror.org/045zbxg02 ECSI Fibrotools ECSI Fibrotools (United States)'),
(93928, 'https://ror.org/04gjc3902', 'pt', 1, 'https://ror.org/04gjc3902 Associação Catarinense de BibliotecÔrios'),
(93929, 'https://ror.org/0065v9d27', 'en', 1, 'https://ror.org/0065v9d27 International Clinical Epidemiology Network'),
(93930, 'https://ror.org/004j8pp46', 'en', 1, 'https://ror.org/004j8pp46 Salim Habib University'),
(93931, 'https://ror.org/01qbsyz51', 'en', 1, 'https://ror.org/01qbsyz51 Ayub Agriculture Research Institute'),
(93932, 'https://ror.org/012x47023', 'fr', 1, 'https://ror.org/012x47023 Centre de GƩnie Industriel'),
(93933, 'https://ror.org/02vbab064', 'en', 1, 'https://ror.org/02vbab064 Institute for Stem Cell Biology and Regenerative Medicine'),
(93934, 'https://ror.org/02awzbn54', 'en', 1, 'https://ror.org/02awzbn54 Brown Institute for Media Innovation'),
(93935, 'https://ror.org/033y4aw87', 'en', 1, 'https://ror.org/033y4aw87 Centre for Sustainable Architecture with Wood'),
(93936, 'https://ror.org/04ej9se46', 'en', 0, 'https://ror.org/04ej9se46 Magnum Semiconductor Magnum Semiconductor (United States)'),
(93937, 'https://ror.org/01ncz5595', 'en', 1, 'https://ror.org/01ncz5595 Methodist College'),
(93938, 'https://ror.org/033qpss18', 'it', 1, 'https://ror.org/033qpss18 IRCCS Istituto Auxologico Italiano Italian Institute for Auxology'),
(93939, 'https://ror.org/03vpbkt44', 'tr', 1, 'https://ror.org/03vpbkt44 Germencik Devlet Hastanesi'),
(93940, 'https://ror.org/032mx9b27', 'en', 1, 'https://ror.org/032mx9b27 The Greater Harlem Chamber of Commerce'),
(93941, 'https://ror.org/02x2eem98', 'id', 1, 'https://ror.org/02x2eem98 IAIN Syekh Nurjati Cirebon'),
(93942, 'https://ror.org/0188qm081', 'en', 1, 'https://ror.org/0188qm081 Lilongwe University of Agriculture and Natural Resources'),
(93943, 'https://ror.org/04yvxvx65', 'en', 1, 'https://ror.org/04yvxvx65 Menzies Institute for Medical Research'),
(93944, 'https://ror.org/01s9db082', 'no_lang_code', 0, 'https://ror.org/01s9db082 CA Technologies (United States)'),
(93945, 'https://ror.org/018kp7s70', 'en', 1, 'https://ror.org/018kp7s70 Tasmania Law Reform Institute'),
(93946, 'https://ror.org/05n8cqa74', 'en', 1, 'https://ror.org/05n8cqa74 Wicking Dementia Centre'),
(93947, 'https://ror.org/026xeq875', 'en', 1, 'https://ror.org/026xeq875 Tasmanian Behavioural Lab'),
(93948, 'https://ror.org/01ex21125', 'en', 1, 'https://ror.org/01ex21125 Tasmanian Institute of Agriculture'),
(93949, 'https://ror.org/035gt5s03', 'no_lang_code', 1, 'https://ror.org/035gt5s03 Broadcom (United States)'),
(93950, 'https://ror.org/03b6cpn03', 'en', 1, 'https://ror.org/03b6cpn03 Odesa I. I. Mechnikov National University ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені І. І. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(93951, 'https://ror.org/05gjpam11', 'en', 1, 'https://ror.org/05gjpam11 TAS Farm Innovation Hub'),
(93952, 'https://ror.org/01w1ehb86', 'en', 1, 'https://ror.org/01w1ehb86 University of Technology - Iraq الجامعة Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ©'),
(93953, 'https://ror.org/0313ftn24', 'en', 1, 'https://ror.org/0313ftn24 Nickan Research Institute'),
(93954, 'https://ror.org/02h9td068', 'no_lang_code', 1, 'https://ror.org/02h9td068 BD Biosciences BD Biosciences (United States)'),
(93955, 'https://ror.org/02ets8c94', 'en', 1, 'https://ror.org/02ets8c94 Indiana University School of Medicine'),
(93956, 'https://ror.org/00s44s987', 'en', 1, 'https://ror.org/00s44s987 FREYR Battery FREYR Battery (Norway)'),
(93957, 'https://ror.org/00xn0ew58', 'en', 1, 'https://ror.org/00xn0ew58 Suzhou Hongyuan Biotech Inc. Suzhou Hongyuan Biotech Inc. (China) č‹å·žå®å…ƒē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(93958, 'https://ror.org/017xqsb41', 'en', 1, 'https://ror.org/017xqsb41 Africa Renewal University'),
(93959, 'https://ror.org/0159eq874', 'no_lang_code', 0, 'https://ror.org/0159eq874 Magnum Semiconductor (Canada)'),
(93960, 'https://ror.org/012n0t549', 'en', 1, 'https://ror.org/012n0t549 Cullinan Oncology Cullinan Oncology (United States)'),
(93961, 'https://ror.org/041skvj95', 'es', 1, 'https://ror.org/041skvj95 Instituto Superior de CiĆŖncias Policiais'),
(93962, 'https://ror.org/011sn6j23', 'en', 1, 'https://ror.org/011sn6j23 Corvus Energy Corvus Energy (Norway)'),
(93963, 'https://ror.org/0569b7y96', 'no_lang_code', 1, 'https://ror.org/0569b7y96 Alstom Alstom (United States)'),
(93964, 'https://ror.org/02jv3k292', 'en', 1, 'https://ror.org/02jv3k292 Sofia University "St. Kliment Ohridski" Дофийски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ "Дв. ŠšŠ»ŠøŠ¼ŠµŠ½Ń‚ ŠžŃ…Ń€ŠøŠ“ŃŠŗŠø"'),
(93965, 'https://ror.org/05rqjcx81', 'ro', 1, 'https://ror.org/05rqjcx81 Institutul Național de Cercetări Economice National Institute for Economic Research'),
(93966, 'https://ror.org/023btq632', 'no_lang_code', 0, 'https://ror.org/023btq632 GigPeak (United States)'),
(93967, 'https://ror.org/03f2b4m56', 'en', 1, 'https://ror.org/03f2b4m56 STRIX (Portugal)'),
(93968, 'https://ror.org/050d9qs96', 'en', 1, 'https://ror.org/050d9qs96 Business and Technology University įƒ‘įƒ˜įƒ–įƒœįƒ”įƒ”įƒ˜įƒ”įƒ įƒ“įƒ įƒ¢įƒ”įƒ„įƒœįƒįƒšįƒįƒ’įƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(93969, 'https://ror.org/01t01fd32', 'en', 1, 'https://ror.org/01t01fd32 Synergy America Synergy America (United States)'),
(93970, 'https://ror.org/00kb8e717', 'en', 1, 'https://ror.org/00kb8e717 Samarkand branch of Tashkent State University of Economics Toshkent davlat iqtisodiyot universiteti samarqand filiali Филиал Š¢Š°ŃˆŠŗŠµŠ½Ń‚ского Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Экономического Университета'),
(93971, 'https://ror.org/03ctqg407', 'en', 1, 'https://ror.org/03ctqg407 HEC Paris in Qatar'),
(93972, 'https://ror.org/02acvhq32', 'id', 1, 'https://ror.org/02acvhq32 Universitas KH Abdul Chalim'),
(93973, 'https://ror.org/02zwf7d57', 'fr', 0, 'https://ror.org/02zwf7d57 Neuropsychologie Cognitive et Physiopathologie de la SchizophrƩnie'),
(93974, 'https://ror.org/033vc6k10', 'en', 1, 'https://ror.org/033vc6k10 Neurological Institute of Thailand ąøŖąø–ąø²ąøšąø±ąø™ąø›ąø£ąø°ąøŖąø²ąø—ąø§ąø“ąø—ąø¢ąø²'),
(93975, 'https://ror.org/04tmf7v73', 'en', 1, 'https://ror.org/04tmf7v73 G.T.N. Arts College'),
(93976, 'https://ror.org/03tasdg80', 'en', 1, 'https://ror.org/03tasdg80 Istec Business School Paris'),
(93977, 'https://ror.org/0188x7939', 'en', 1, 'https://ror.org/0188x7939 Wuhan Myhalic Biotechnological Co., Ltd (China) ę­¦ę±‰åŽč”ē§‘ē”Ÿē‰©ęŠ€ęœÆęœ‰é™å…¬åø'),
(93978, 'https://ror.org/02ndgyq34', 'no_lang_code', 0, 'https://ror.org/02ndgyq34 Integrated Device Technology (South Korea)'),
(93979, 'https://ror.org/01xnsst08', 'en', 1, 'https://ror.org/01xnsst08 Wildlife Conservation Society'),
(93980, 'https://ror.org/0378v2g76', 'en', 1, 'https://ror.org/0378v2g76 National Research Center for Applied Cybersecurity ATHENE Nationales Forschungszentrum für angewandte Cybersicherheit ATHENE'),
(93981, 'https://ror.org/00bjskz46', 'en', 0, 'https://ror.org/00bjskz46 InnovaWood'),
(93982, 'https://ror.org/010x3gp67', 'en', 1, 'https://ror.org/010x3gp67 Integrated Marine Observing System'),
(93983, 'https://ror.org/03rsp2g43', 'en', 1, 'https://ror.org/03rsp2g43 Mehboob Charity Vision International Eye and General Hospital'),
(93984, 'https://ror.org/05x0eyz88', 'de', 1, 'https://ror.org/05x0eyz88 Deutschen Phytomedizinischen Gesellschaft e.V.'),
(93985, 'https://ror.org/030ws6785', 'pt', 1, 'https://ror.org/030ws6785 Consejo Portugués de Salud y Medio Ambiente Conselho Português para a Saúde e Ambiente Portuguese Council for Health and Environment'),
(93986, 'https://ror.org/04kjqkz56', 'en', 1, 'https://ror.org/04kjqkz56 Sainsbury Wellcome Centre'),
(93987, 'https://ror.org/046f88w34', 'en', 1, 'https://ror.org/046f88w34 Open Access Publishing Association'),
(93988, 'https://ror.org/0447dw872', 'es', 1, 'https://ror.org/0447dw872 Hospital Gineco ObstƩtrico Isidro Ayora'),
(93989, 'https://ror.org/00z7nht44', 'fr', 1, 'https://ror.org/00z7nht44 Center for Research and Studies in the Dialogue of Cultures and Comparative Religions Centre de Recherches et des Etudes pour le Dialogue des Civilisations et des Religions Comparees'),
(93990, 'https://ror.org/01r8vp990', 'ro', 1, 'https://ror.org/01r8vp990 Anelis Plus Association of Universities Research Centres and Central University Libraries in Romania'),
(93991, 'https://ror.org/050r7zc91', 'fr', 1, 'https://ror.org/050r7zc91 Ecole d''IngƩnieurs AƩronautique et Spatiale Institut Polytechnique des Sciences AvancƩes'),
(93992, 'https://ror.org/03pvs5g92', 'en', 1, 'https://ror.org/03pvs5g92 University of Wollongong Malaysia'),
(93993, 'https://ror.org/02b2dfs85', 'en', 1, 'https://ror.org/02b2dfs85 Ho Chi Minh City University of Industry and Trade TrĘ°į»ng ĐẔi hį»c CĆ“ng Thʰʔng TP. Hồ ChĆ­ Minh'),
(93994, 'https://ror.org/05sg7zj64', 'en', 1, 'https://ror.org/05sg7zj64 Modern Humanities Research Association'),
(93995, 'https://ror.org/05vf86811', 'en', 1, 'https://ror.org/05vf86811 CABI Switzerland'),
(93996, 'https://ror.org/0213cre38', 'es', 1, 'https://ror.org/0213cre38 Universidad Tecnológica de la Selva'),
(93997, 'https://ror.org/05fc0ah77', 'en', 1, 'https://ror.org/05fc0ah77 Defence Science and Technology'),
(93998, 'https://ror.org/003gecb74', 'en', 1, 'https://ror.org/003gecb74 Central European Society for Anticancer Drug Research'),
(93999, 'https://ror.org/004gfgx38', 'en', 1, 'https://ror.org/004gfgx38 Eszterhazy Karoly Catholic University EszterhƔzy KƔroly Katolikus Egyetem'),
(94000, 'https://ror.org/05mg82t36', 'en', 1, 'https://ror.org/05mg82t36 China People''s Police University äø­å›½äŗŗę°‘č­¦åÆŸå¤§å­¦'),
(94001, 'https://ror.org/00bmp7042', 'en', 1, 'https://ror.org/00bmp7042 Janaki Medical College ą¤œą¤¾ą¤Øą¤•ą„€ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤²ą„‡ą¤œ'),
(94002, 'https://ror.org/02p6wqg36', 'en', 1, 'https://ror.org/02p6wqg36 Uncle Kory Foundation'),
(94003, 'https://ror.org/01fp9aw72', 'it', 1, 'https://ror.org/01fp9aw72 Agency for the Protection of Health of Garda Azienda Socio Sanitaria Territoriale del Garda'),
(94004, 'https://ror.org/04g0har25', 'es', 1, 'https://ror.org/04g0har25 Instituto Tecnológico Victoria - ITV'),
(94005, 'https://ror.org/04sed8n13', 'de', 1, 'https://ror.org/04sed8n13 Ministerium für Wirtschaft, Arbeit und Wohnungsbau Ministerium für Wirtschaft, Arbeit und Wohnungsbau Baden-Württemberg'),
(94006, 'https://ror.org/02h8m2a72', 'es', 1, 'https://ror.org/02h8m2a72 Instituto de Investigación sobre Sociedades, Territorios y Culturas'),
(94007, 'https://ror.org/00ade4393', 'de', 1, 'https://ror.org/00ade4393 Deutsche Film- und Fernsehakademie Berlin'),
(94008, 'https://ror.org/026y9xj42', 'fr', 1, 'https://ror.org/026y9xj42 Centre National de Recherches en Sciences des Materiaux National Center for Research in Materials Science'),
(94009, 'https://ror.org/0045a4523', 'de', 0, 'https://ror.org/0045a4523 Universitätsklinik für Hals-, Nasen- und Ohrenkrankheiten'),
(94010, 'https://ror.org/01y0s6a49', 'ro', 1, 'https://ror.org/01y0s6a49 Institutul National de Cercetare-Dezvoltare pentru Inginerie Electrica ICPE-CA National Institute for R&D in Electrical Engineering ICPE-CA'),
(94011, 'https://ror.org/02bddmq11', 'es', 1, 'https://ror.org/02bddmq11 Escuela Normal de Atlacomulco'),
(94012, 'https://ror.org/05291za29', 'es', 1, 'https://ror.org/05291za29 Centenaria y BenemƩrita Escuela Normal para Profesores'),
(94013, 'https://ror.org/000kng648', 'en', 0, 'https://ror.org/000kng648 National Health Care Institute Zorginstituut Nederland'),
(94014, 'https://ror.org/054x2er76', 'it', 1, 'https://ror.org/054x2er76 Aziende Socio Sanitarie Territoriale Lodi Regional Health Care and Social Agency of Lodi'),
(94015, 'https://ror.org/014sr0307', 'en', 1, 'https://ror.org/014sr0307 terraPulse, Inc. terraPulse, Inc. (United States)'),
(94016, 'https://ror.org/00yab6d29', 'en', 1, 'https://ror.org/00yab6d29 Bulgarian Academy of Sciences and Arts Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ на Š½Š°ŃƒŠŗŠøŃ‚е Šø ŠøŠ·ŠŗŃƒŃŃ‚Š²Š°Ń‚Š°'),
(94017, 'https://ror.org/01pjw7y38', 'fr', 1, 'https://ror.org/01pjw7y38 Laboratoire de Droit PrivƩ'),
(94018, 'https://ror.org/011gh0524', 'en', 1, 'https://ror.org/011gh0524 Chinese People''s Armed Police Force äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜Ÿ'),
(94019, 'https://ror.org/014nxkk19', 'en', 1, 'https://ror.org/014nxkk19 Chan Zuckerberg Biohub Chicago'),
(94020, 'https://ror.org/04f0tf505', 'en', 1, 'https://ror.org/04f0tf505 General Directorate of Health Affairs in Riyadh Region Ų§Ł„Ł…ŲÆŁŠŲ±ŁŠŲ© العامة Ł„Ł„Ų“Ų¤ŁˆŁ† Ų§Ł„ŲµŲ­ŁŠŲ© بمنطقة Ų§Ł„Ų±ŁŠŲ§Ų¶'),
(94021, 'https://ror.org/03teh9b51', 'az', 0, 'https://ror.org/03teh9b51 Tafakkur University Təfəkkür Universiteti'),
(94022, 'https://ror.org/04ng4dd31', 'en', 1, 'https://ror.org/04ng4dd31 Access to Advanced Health Institute'),
(94023, 'https://ror.org/04rrrnx39', 'fr', 1, 'https://ror.org/04rrrnx39 Center of Economic and Social Studies and Researches Centre d''Etudes et de Recherches Economiques et Sociales'),
(94024, 'https://ror.org/04v8sjw26', 'en', 1, 'https://ror.org/04v8sjw26 Osborne Park Hospital'),
(94025, 'https://ror.org/05f8dke04', 'en', 1, 'https://ror.org/05f8dke04 Research Centre for Olive Growing and Olive Oil Industry'),
(94026, 'https://ror.org/02zf7b209', 'pl', 1, 'https://ror.org/02zf7b209 Samodzielny Publiczny Zakład Opieki Zdrowotnej RM-MEDITRANS Stacja Pogotowia Ratunkowego i Transportu Sanitarnego w Siedlcach'),
(94027, 'https://ror.org/04nd55p60', 'en', 1, 'https://ror.org/04nd55p60 Yunnan Key Laboratory of Gastrodia Elata and Fungal Symbiotic Biology å¤©éŗ»äøŽēœŸčŒå…±ē”Ÿē”Ÿē‰©å­¦é‡ē‚¹å®žéŖŒå®¤'),
(94028, 'https://ror.org/03wtvtx73', 'en', 1, 'https://ror.org/03wtvtx73 Faculty of Humanities and Social Sciences in Zagreb Filozofski fakultet u Zagrebu'),
(94029, 'https://ror.org/03sda3t31', 'ca', 1, 'https://ror.org/03sda3t31 Fundació Esclerosi Múltiple'),
(94030, 'https://ror.org/02k3b8775', 'de', 1, 'https://ror.org/02k3b8775 Berlin State Museums Staatliche Museen zu Berlin'),
(94031, 'https://ror.org/052tfza37', 'en', 1, 'https://ror.org/052tfza37 RTI International'),
(94032, 'https://ror.org/027g55y50', 'en', 1, 'https://ror.org/027g55y50 Yunnan Engineering Research Center of Green Planting and Processing of Gastrodia Elata å¤©éŗ»ē»æč‰²ē§ę¤äøŽåŠ å·„å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(94033, 'https://ror.org/04bb62x43', 'de', 1, 'https://ror.org/04bb62x43 Ministerium für Verkehr Baden-Württemberg'),
(94034, 'https://ror.org/01k1y4586', 'it', 1, 'https://ror.org/01k1y4586 Istituto Sperimentale per la Zootecnia'),
(94035, 'https://ror.org/04xy7xh64', 'en', 1, 'https://ror.org/04xy7xh64 Academy of Civil Aviation Азаматтық Š°Š²ŠøŠ°Ń†ŠøŃ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(94036, 'https://ror.org/04dkba015', 'en', 1, 'https://ror.org/04dkba015 Australian Consortium for Social and Political Research Incorporated'),
(94037, 'https://ror.org/04atmv946', 'en', 1, 'https://ror.org/04atmv946 Tindiret Technical and Vocational College'),
(94038, 'https://ror.org/02gz3b342', 'fr', 1, 'https://ror.org/02gz3b342 Ɖcole nationale supĆ©rieure de chimie de Mulhouse'),
(94039, 'https://ror.org/0225xqg83', 'en', 1, 'https://ror.org/0225xqg83 Sarala Birla University'),
(94040, 'https://ror.org/039d47y22', 'en', 0, 'https://ror.org/039d47y22 The Federal Polytechnic, Ado-Ekiti'),
(94041, 'https://ror.org/02jdrs602', 'en', 1, 'https://ror.org/02jdrs602 Agusan del Sur State College of Agriculture and Technology'),
(94042, 'https://ror.org/026q4jp63', 'en', 1, 'https://ror.org/026q4jp63 Fathom Fathom (United Kingdom)'),
(94043, 'https://ror.org/05ddrvt52', 'en', 1, 'https://ror.org/05ddrvt52 Defence Science and Technology Group'),
(94044, 'https://ror.org/00cxy0s05', 'fr', 1, 'https://ror.org/00cxy0s05 HƓpital Charles-Nicolle'),
(94045, 'https://ror.org/03kw9kr66', 'da', 1, 'https://ror.org/03kw9kr66 Mercantec'),
(94046, 'https://ror.org/02k0z7185', 'en', 0, 'https://ror.org/02k0z7185 Polytechnic University of Nicaragua Universidad PolitƩcnica de Nicaragua'),
(94047, 'https://ror.org/040vfrk87', 'pt', 1, 'https://ror.org/040vfrk87 Centro UniversitÔrio das Américas (FAM) - São Paulo'),
(94048, 'https://ror.org/04svedz43', 'it', 1, 'https://ror.org/04svedz43 Azienda Ospedaliera Ospedale Maggiore'),
(94049, 'https://ror.org/03ssp8273', 'fr', 1, 'https://ror.org/03ssp8273 RƩsistances ThƩrapeutiques du Cancer de la Prostate'),
(94050, 'https://ror.org/03qcx5k62', 'es', 1, 'https://ror.org/03qcx5k62 Instituto Tecnológico Superior Progreso'),
(94051, 'https://ror.org/00mabkc31', 'en', 1, 'https://ror.org/00mabkc31 CHORUS'),
(94052, 'https://ror.org/05k2yek35', 'en', 1, 'https://ror.org/05k2yek35 Universiteti Metropolitan Tirana University Metropolitan Tirana'),
(94053, 'https://ror.org/00b9ahn78', 'en', 1, 'https://ror.org/00b9ahn78 Sir Charles Gairdner Osborne Park Health Care Group'),
(94054, 'https://ror.org/02a2x5r26', 'en', 1, 'https://ror.org/02a2x5r26 Forestry Research Centre'),
(94055, 'https://ror.org/038xqyz77', 'no_lang_code', 1, 'https://ror.org/038xqyz77 Research Space (United Kingdom)'),
(94056, 'https://ror.org/05k4vg494', 'en', 1, 'https://ror.org/05k4vg494 ASAPbio'),
(94057, 'https://ror.org/02gp92p70', 'it', 1, 'https://ror.org/02gp92p70 Azienda Ospedaliero Universitaria Maggiore della Carita'),
(94058, 'https://ror.org/00vwmj521', 'en', 1, 'https://ror.org/00vwmj521 Oceanum Ltd Oceanum Ltd (New Zealand)'),
(94059, 'https://ror.org/020pf2e89', 'en', 1, 'https://ror.org/020pf2e89 Fuller Laboratories Fuller Laboratories (United States)'),
(94060, 'https://ror.org/04x51y514', 'it', 1, 'https://ror.org/04x51y514 Azienda Socio Sanitaria Territoriale della Valtellina e Alto Lario Regional Health and Social Agency of Valtellina and Alto Lario'),
(94061, 'https://ror.org/031gjxb79', 'en', 1, 'https://ror.org/031gjxb79 Det Kongelige Akademi Royal Danish Academy – Architecture, Design, Conservation'),
(94062, 'https://ror.org/03dvtxq95', 'id', 1, 'https://ror.org/03dvtxq95 Institut Pesantren Babakan'),
(94063, 'https://ror.org/033jerz55', 'en', 1, 'https://ror.org/033jerz55 American University of Iraq Baghdad الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في ŲØŲŗŲÆŲ§ŲÆ'),
(94064, 'https://ror.org/00q0mwy68', 'en', 1, 'https://ror.org/00q0mwy68 New Zealand Defence Force'),
(94065, 'https://ror.org/04sqxdt31', 'en', 1, 'https://ror.org/04sqxdt31 Minneapolis-St. Paul Long Term Ecological Research'),
(94066, 'https://ror.org/01xqdxh54', 'en', 1, 'https://ror.org/01xqdxh54 South China Botanical Garden äø­å›½ē§‘å­¦é™¢åŽå—ę¤ē‰©å›­'),
(94067, 'https://ror.org/03ssvsv78', 'en', 1, 'https://ror.org/03ssvsv78 Quantinuum Quantinuum (United States)'),
(94068, 'https://ror.org/02p65sy36', 'en', 1, 'https://ror.org/02p65sy36 Cyprus West University Kıbrıs Batı Üniversitesi'),
(94069, 'https://ror.org/015rhss58', 'it', 1, 'https://ror.org/015rhss58 Azienda Socio Sanitaria Territoriale degli Spedali Civili di Brescia Regional Health Care and Social Agency Civil Hospitals of Brescia'),
(94070, 'https://ror.org/0198v2949', 'pt', 1, 'https://ror.org/0198v2949 Rio de Janeiro State University Universidade do Estado do Rio de Janeiro'),
(94071, 'https://ror.org/01g0jwx42', 'pt', 1, 'https://ror.org/01g0jwx42 Instituto PolitƩcnico do Rio de Janeiro'),
(94072, 'https://ror.org/05ewdps05', 'en', 1, 'https://ror.org/05ewdps05 Bernstein Center for Computational Neuroscience Berlin'),
(94073, 'https://ror.org/03zykbw64', 'es', 1, 'https://ror.org/03zykbw64 Hospital General del Sur de Quito, IESS'),
(94074, 'https://ror.org/00bardy64', 'en', 1, 'https://ror.org/00bardy64 Leidos Biomedical Research Inc. Leidos Biomedical Research Inc. (United States)'),
(94075, 'https://ror.org/02a773244', 'no_lang_code', 0, 'https://ror.org/02a773244 NGIS (China)'),
(94076, 'https://ror.org/03sqrfm79', 'it', 1, 'https://ror.org/03sqrfm79 Azienda Socio Sanitaria Territoriale della Franciacorta Regional Health Care of Franciacorta'),
(94077, 'https://ror.org/02cn0mn15', 'en', 1, 'https://ror.org/02cn0mn15 Amal Jyothi College of Engineering'),
(94078, 'https://ror.org/01fk80922', 'en', 1, 'https://ror.org/01fk80922 Dr. B. R. Ambedkar School of Economics University'),
(94079, 'https://ror.org/0323snh42', 'en', 1, 'https://ror.org/0323snh42 Institute for Environmental Futures'),
(94080, 'https://ror.org/00rwwx648', 'no_lang_code', 1, 'https://ror.org/00rwwx648 Thales (Italy)'),
(94081, 'https://ror.org/04ke6x854', 'en', 1, 'https://ror.org/04ke6x854 Lawgorithm'),
(94082, 'https://ror.org/053a0ya32', 'fr', 1, 'https://ror.org/053a0ya32 Academie navale de Menzel Bourguiba Menzel Bourguiba Naval Academy'),
(94083, 'https://ror.org/00hrmgq26', 'pt', 1, 'https://ror.org/00hrmgq26 Hospital UniversitƔrio Pedro Ernesto'),
(94084, 'https://ror.org/03ysnvs95', 'pt', 1, 'https://ror.org/03ysnvs95 Centro Superior de Ensino e Pesquisa de Machado'),
(94085, 'https://ror.org/00pafhn94', 'en', 1, 'https://ror.org/00pafhn94 China Chemical Safety Association äø­å›½åŒ–å­¦å“å®‰å…Øåä¼š'),
(94086, 'https://ror.org/01j8n5986', 'en', 1, 'https://ror.org/01j8n5986 Hong Kong Institute of Certified Public Accountants é¦™ęøÆęœƒčØˆåø«å…¬ęœƒ'),
(94087, 'https://ror.org/03mhcky17', 'en', 1, 'https://ror.org/03mhcky17 Minneapolis Heart Institute Foundation'),
(94088, 'https://ror.org/038a1tp19', 'en', 1, 'https://ror.org/038a1tp19 Asia University äŗžę“²å¤§å­ø'),
(94089, 'https://ror.org/00264zf15', 'en', 1, 'https://ror.org/00264zf15 Zhaotong University ę˜­é€šå­¦é™¢'),
(94090, 'https://ror.org/05ybzbs43', 'it', 1, 'https://ror.org/05ybzbs43 Agency for the Protection of Health of Treviglio Caravaggio Azienda Socio Sanitaria Territoriale di Bergamo Ovest'),
(94091, 'https://ror.org/01qymej67', 'de', 1, 'https://ror.org/01qymej67 Landesanstalt für Umwelt Baden-Württemberg'),
(94092, 'https://ror.org/024pmbp65', 'es', 1, 'https://ror.org/024pmbp65 Instituto Consorcio Clavijero'),
(94093, 'https://ror.org/03z7kp760', 'en', 0, 'https://ror.org/03z7kp760 Asia University äŗžę“²å¤§å­ø'),
(94094, 'https://ror.org/029p62z73', 'it', 1, 'https://ror.org/029p62z73 Centro di Ricerca per la Patologia Vegetale'),
(94095, 'https://ror.org/02emy3543', 'es', 1, 'https://ror.org/02emy3543 Fundación PROINPA'),
(94096, 'https://ror.org/02yqfcy50', 'es', 1, 'https://ror.org/02yqfcy50 Asociación de Estudios Históricos de Tacna'),
(94097, 'https://ror.org/05f4e6916', 'en', 1, 'https://ror.org/05f4e6916 Columban College Dalubhasaang Columban'),
(94098, 'https://ror.org/03dyg8x92', 'de', 1, 'https://ror.org/03dyg8x92 Landesgesundheitsamt Baden-Württemberg'),
(94099, 'https://ror.org/02dg0pv02', 'en', 1, 'https://ror.org/02dg0pv02 Fonds des Nations Unies pour l''Enfance United Nations Children''s Fund'),
(94100, 'https://ror.org/02hb07017', 'it', 1, 'https://ror.org/02hb07017 Istituto Sperimentale per la Frutticoltura'),
(94101, 'https://ror.org/05svms055', 'en', 1, 'https://ror.org/05svms055 American University Kyiv Амерікан Юніверсіті ŠšŠøŃ—Š²'),
(94102, 'https://ror.org/00m00xg10', 'en', 1, 'https://ror.org/00m00xg10 Scientific Research WorkS Peer Support Group'),
(94103, 'https://ror.org/04dndfk38', 'en', 1, 'https://ror.org/04dndfk38 Universidad del BĆ­o-BĆ­o University of BĆ­o-BĆ­o'),
(94104, 'https://ror.org/01t3fbq26', 'id', 1, 'https://ror.org/01t3fbq26 Sekolah Tinggi Ilmu Kepolisian'),
(94105, 'https://ror.org/001mse034', 'en', 1, 'https://ror.org/001mse034 Survey of Pakistan مساحتِ پاکستان'),
(94106, 'https://ror.org/011shej97', 'es', 1, 'https://ror.org/011shej97 Universidad Nacional PolitƩcnica'),
(94107, 'https://ror.org/01jcmjd77', 'it', 1, 'https://ror.org/01jcmjd77 Aziende Socio Sanitarie Territoriale di Crema Regional Health Care and Social Agency of Crema'),
(94108, 'https://ror.org/0407gn548', 'en', 1, 'https://ror.org/0407gn548 NGIS NGIS (Australia)'),
(94109, 'https://ror.org/04hmvwa12', 'it', 1, 'https://ror.org/04hmvwa12 Centre for Experimental Agricultural Zoology Istituto Sperimentale per la Zoologia Agraria'),
(94110, 'https://ror.org/00v29jp57', 'en', 1, 'https://ror.org/00v29jp57 National University of General San Martƭn Universidad Nacional de General San Martƭn UniversitƩ Nationale de San Martƭn'),
(94111, 'https://ror.org/00knwwq96', 'en', 1, 'https://ror.org/00knwwq96 Hunan Provincial Expressway Group Co., Ltd Hunan Provincial Expressway Group Co., Ltd (China) ę¹–å—é«˜é€Ÿå…¬č·Æé›†å›¢ęœ‰é™å…¬åø'),
(94112, 'https://ror.org/01d516y88', 'en', 1, 'https://ror.org/01d516y88 Kyoto Min-iren Asukai Hospital äŗ¬éƒ½ę°‘åŒ»é€£ć‚ć™ć‹ć„ē—…é™¢');
INSERT INTO `rors` VALUES
(94113, 'https://ror.org/01b009v28', 'en', 1, 'https://ror.org/01b009v28 The University of Chenab, Gujrat'),
(94114, 'https://ror.org/03gs06p51', 'it', 1, 'https://ror.org/03gs06p51 Aziende Socio Sanitaria Territoriale Rhodense Regional Health Care and Social Agency Rhodense'),
(94115, 'https://ror.org/02gt27w49', 'pt', 1, 'https://ror.org/02gt27w49 Universidade do Vale do ParaĆ­ba University of ParaĆ­ba Valley'),
(94116, 'https://ror.org/04wm52x94', 'en', 1, 'https://ror.org/04wm52x94 Instituto Nacional de TecnologĆ­a Agropecuaria National Agricultural Technology Institute'),
(94117, 'https://ror.org/02a194470', 'es', 1, 'https://ror.org/02a194470 Hospital Oncológico Docente "Conrado Benítez García"'),
(94118, 'https://ror.org/03j0zz815', 'en', 1, 'https://ror.org/03j0zz815 Synsint Research Group'),
(94119, 'https://ror.org/01etg5g76', 'es', 1, 'https://ror.org/01etg5g76 Escuela Interdisciplinaria de Altos Estudios Sociales'),
(94120, 'https://ror.org/03pcw1780', 'en', 1, 'https://ror.org/03pcw1780 State Key Laboratory of Robotics ęœŗå™Øäŗŗå­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(94121, 'https://ror.org/03hjqxp26', 'en', 1, 'https://ror.org/03hjqxp26 Skidaway Institute of Oceanography'),
(94122, 'https://ror.org/00r8cxf78', 'en', 1, 'https://ror.org/00r8cxf78 Lions Clubs International Foundation'),
(94123, 'https://ror.org/04r6e5t98', 'en', 1, 'https://ror.org/04r6e5t98 Business Europe'),
(94124, 'https://ror.org/05qbksn05', 'id', 1, 'https://ror.org/05qbksn05 Universitas Nahdlatul Ulama Sidoarjo'),
(94125, 'https://ror.org/04athv462', 'en', 1, 'https://ror.org/04athv462 Food Technology Research Unit Istituto Sperimentale per la Valorizzazione Tecnologica dei Prodotti Agricoli'),
(94126, 'https://ror.org/0118thf61', 'en', 1, 'https://ror.org/0118thf61 Engineers Australia'),
(94127, 'https://ror.org/05eve7a13', 'en', 1, 'https://ror.org/05eve7a13 Wickramarachchi University of Indigenous Medicine ą¶œą¶øą·Šą¶“ą·„ ą·€ą·’ą¶šą·Šą¶»ą¶øą·ą¶»ą¶ ą·Šą¶ ą·’ ą¶Æą·šą·ą·“ą¶ŗ ą·€ą·›ą¶Æą·Šą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šą¶ŗą·ą¶½ą¶ŗ'),
(94128, 'https://ror.org/023h2da51', 'it', 1, 'https://ror.org/023h2da51 Azienda Socio Sanitaria Territoriale della Valle Olona Regional Health Care and Social Agency Valle Olona'),
(94129, 'https://ror.org/012gnk944', 'en', 1, 'https://ror.org/012gnk944 Dinghushan National Nature Reserve é¼Žę¹–å±±å›½å®¶ēŗ§č‡Ŗē„¶äæęŠ¤åŒŗ'),
(94130, 'https://ror.org/01c0q4919', 'es', 1, 'https://ror.org/01c0q4919 Ministerio de Educación Ministerio de Educación y Deportes de la Nación Argentina'),
(94131, 'https://ror.org/052qdba82', 'de', 1, 'https://ror.org/052qdba82 Chemical and Veterinary Investigation Agency Karlsruhe Chemisches und VeterinƤruntersuchungsamt Karlsruhe'),
(94132, 'https://ror.org/02aj13c28', 'de', 1, 'https://ror.org/02aj13c28 Helmholtz-Zentrum Berlin für Materialien und Energie'),
(94133, 'https://ror.org/01d02sf11', 'nl', 1, 'https://ror.org/01d02sf11 OLVG'),
(94134, 'https://ror.org/02h8sev96', 'en', 1, 'https://ror.org/02h8sev96 European Association for Forwarding, Transport, Logistics and Customs Services'),
(94135, 'https://ror.org/00f4b9c78', 'en', 1, 'https://ror.org/00f4b9c78 Aequitas Victoria Foundation'),
(94136, 'https://ror.org/019vd4365', 'en', 1, 'https://ror.org/019vd4365 Al-Turath University Ų¬Ų§Ł…Ų¹Ų© التراث'),
(94137, 'https://ror.org/05afdpg81', 'es', 1, 'https://ror.org/05afdpg81 Centro Regional de Investigaciones Multidisciplinarias'),
(94138, 'https://ror.org/02r25sw81', 'fr', 1, 'https://ror.org/02r25sw81 HƓpital Pontchaillou Pontchaillou Hospital'),
(94139, 'https://ror.org/05sn5d694', 'en', 1, 'https://ror.org/05sn5d694 Centro di Ricerca per le Colture Industriali Research Centre for Cereal and Industrial Crops'),
(94140, 'https://ror.org/01zy9tc86', 'en', 1, 'https://ror.org/01zy9tc86 Independent Schools of New Zealand'),
(94141, 'https://ror.org/03v6m3209', 'en', 1, 'https://ror.org/03v6m3209 Frederick National Laboratory for Cancer Research'),
(94142, 'https://ror.org/03t0a5k13', 'en', 1, 'https://ror.org/03t0a5k13 Ministry of National Defense of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½å›½é˜²éƒØ'),
(94143, 'https://ror.org/02a2fqx66', 'en', 1, 'https://ror.org/02a2fqx66 Forest and Range Management Research Institute'),
(94144, 'https://ror.org/03e3qgk42', 'en', 1, 'https://ror.org/03e3qgk42 University of Wisconsin Health'),
(94145, 'https://ror.org/01e4byj08', 'en', 1, 'https://ror.org/01e4byj08 University of Wisconsin Carbone Cancer Center'),
(94146, 'https://ror.org/00df3z122', 'en', 1, 'https://ror.org/00df3z122 Comprehensive Cancer Center Vienna'),
(94147, 'https://ror.org/027de0q95', 'it', 1, 'https://ror.org/027de0q95 Aziende Socio Sanitarie Territoriale Ovest Milanese Regional Health Care and Social Agency West Milan'),
(94148, 'https://ror.org/0250bhj44', 'en', 1, 'https://ror.org/0250bhj44 The Federal Polytechnic, Ado-Ekiti'),
(94149, 'https://ror.org/04zr5ey71', 'fr', 1, 'https://ror.org/04zr5ey71 Actions de Recherche pour la Technologie et la SociƩtƩ Carnot Institute ARTS Institut Carnot ARTS'),
(94150, 'https://ror.org/00adn8q67', 'de', 0, 'https://ror.org/00adn8q67 Universitätsklinik für Neurologie'),
(94151, 'https://ror.org/00vt8p712', 'de', 1, 'https://ror.org/00vt8p712 Ministerium für Kultus, Jugend und Sport Baden-Württemberg'),
(94152, 'https://ror.org/03k306330', 'it', 1, 'https://ror.org/03k306330 Agency for the Protection of Health Bergamo East Azienda Socio Sanitaria Territoriale Bergamo Est'),
(94153, 'https://ror.org/00z6kst31', 'it', 1, 'https://ror.org/00z6kst31 Centro di Ricerca per l’Orticoltura'),
(94154, 'https://ror.org/05etgbt76', 'id', 1, 'https://ror.org/05etgbt76 Institut Seni Indonesia Yogyakarta'),
(94155, 'https://ror.org/02h6t3w06', 'it', 1, 'https://ror.org/02h6t3w06 Azienda Socio Sanitaria Territoriale di Cremona Regional Health Care and Social Agency of Cremona'),
(94156, 'https://ror.org/03azg3670', 'en', 1, 'https://ror.org/03azg3670 Association of Medical Microbiology and Infectious Disease Canada'),
(94157, 'https://ror.org/051194q96', 'en', 1, 'https://ror.org/051194q96 Kesmonds International University'),
(94158, 'https://ror.org/043rdsw72', 'en', 1, 'https://ror.org/043rdsw72 North Metropolitan Health Service'),
(94159, 'https://ror.org/05dsxr353', 'it', 1, 'https://ror.org/05dsxr353 Istituto Sperimentale Agronomico'),
(94160, 'https://ror.org/00vte0591', 'en', 1, 'https://ror.org/00vte0591 Encompass Health Encompass Health (United States)'),
(94161, 'https://ror.org/05b7rex33', 'no_lang_code', 1, 'https://ror.org/05b7rex33 Ōtani University 大谷大学'),
(94162, 'https://ror.org/033xgn512', 'es', 1, 'https://ror.org/033xgn512 Instituto de Investigaciones Económicas y Sociales del Sur'),
(94163, 'https://ror.org/05rjxqp98', 'it', 1, 'https://ror.org/05rjxqp98 Azienda Socio Sanitaria Territoriale di Pavia Regional Health Care and Social Agency of Pavia'),
(94164, 'https://ror.org/03c0pmq70', 'es', 1, 'https://ror.org/03c0pmq70 Escuela Normal de Tlalnepantla'),
(94165, 'https://ror.org/012cvds63', 'no_lang_code', 1, 'https://ror.org/012cvds63 Leidos (United States)'),
(94166, 'https://ror.org/02pv9et38', 'de', 1, 'https://ror.org/02pv9et38 Ostfriesische Landschaft'),
(94167, 'https://ror.org/02qfscv73', 'en', 1, 'https://ror.org/02qfscv73 RTI Press'),
(94168, 'https://ror.org/0592v9m14', 'en', 1, 'https://ror.org/0592v9m14 UBS Optimus Foundation'),
(94169, 'https://ror.org/0108gqn38', 'en', 1, 'https://ror.org/0108gqn38 Orlando College of Osteopathic Medicine'),
(94170, 'https://ror.org/01fgmnw14', 'de', 1, 'https://ror.org/01fgmnw14 Berufsgenossenschaftliche Unfallklinik Murnau'),
(94171, 'https://ror.org/0594nch39', 'de', 1, 'https://ror.org/0594nch39 Ministerium für Ländlichen Raum und Verbraucherschutz Baden-Württemberg'),
(94172, 'https://ror.org/05f0zr486', 'en', 1, 'https://ror.org/05f0zr486 Allgemeines Krankenhaus der Stadt Wien Vienna General Hospital'),
(94173, 'https://ror.org/02mqqhj42', 'en', 1, 'https://ror.org/02mqqhj42 UW Health University Hospital'),
(94174, 'https://ror.org/00pb7yd26', 'en', 1, 'https://ror.org/00pb7yd26 Women University of Azad Jammu & Kashmir Bagh'),
(94175, 'https://ror.org/02nmd8z76', 'en', 1, 'https://ror.org/02nmd8z76 Krea University'),
(94176, 'https://ror.org/0409p1440', 'en', 1, 'https://ror.org/0409p1440 ASrid äŗŗć‚¢ć‚¹ćƒŖćƒƒćƒ‰'),
(94177, 'https://ror.org/00j5kgp20', 'en', 1, 'https://ror.org/00j5kgp20 Faculty of Mechanical Engineering and Naval Architecture in Zagreb Fakultet strojarstva i brodogradnje'),
(94178, 'https://ror.org/00zfe7z33', 'en', 1, 'https://ror.org/00zfe7z33 Rabindra Maitree University ą¦°ą¦¬ą§€ą¦Øą§ą¦¦ą§ą¦° ą¦®ą§ˆą¦¤ą§ą¦°ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(94179, 'https://ror.org/01trhq723', 'en', 1, 'https://ror.org/01trhq723 Radical Data Radical Data (Netherlands)'),
(94180, 'https://ror.org/0523w7v09', 'no_lang_code', 1, 'https://ror.org/0523w7v09 Narxoz University ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š¢. Š Ń‹ŃŠŗŃƒŠ»Š¾Š²Š° ŅšŠ°Š·Š°Ņ› ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ°Š»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(94181, 'https://ror.org/045380x72', 'en', 1, 'https://ror.org/045380x72 Honey bee and Silkworm Research Unit Unita'' di Ricerca di Apicoltura e Bachicoltura'),
(94182, 'https://ror.org/012prxm53', 'en', 1, 'https://ror.org/012prxm53 International Arctic Research Center'),
(94183, 'https://ror.org/01htygx54', 'en', 1, 'https://ror.org/01htygx54 DYNAMYC MYCOLOGY'),
(94184, 'https://ror.org/01hc18p32', 'de', 1, 'https://ror.org/01hc18p32 Ministerium für Wissenschaft, Forschung und Kunst Baden-Württemberg'),
(94185, 'https://ror.org/01ekk8h85', 'en', 1, 'https://ror.org/01ekk8h85 Union Bank of Switzerland'),
(94186, 'https://ror.org/01d4y0s98', 'es', 1, 'https://ror.org/01d4y0s98 Instituto de Investigaciones para el Desarrollo Territorial y el HƔbitat Humano'),
(94187, 'https://ror.org/00knt4f32', 'en', 1, 'https://ror.org/00knt4f32 Chan Zuckerberg Biohub San Francisco'),
(94188, 'https://ror.org/05ctb2n55', 'en', 1, 'https://ror.org/05ctb2n55 Lirio, Inc. Lirio, Inc. (United States)'),
(94189, 'https://ror.org/03wp9yy58', 'it', 1, 'https://ror.org/03wp9yy58 Foraggere e Lattiero Casearie'),
(94190, 'https://ror.org/031gsxa15', 'en', 1, 'https://ror.org/031gsxa15 OASIS International Hospital åŒ—äŗ¬ę˜Žå¾·åŒ»é™¢'),
(94191, 'https://ror.org/000tetj79', 'en', 1, 'https://ror.org/000tetj79 52°North Spatial Information Research'),
(94192, 'https://ror.org/05htwnh55', 'en', 1, 'https://ror.org/05htwnh55 Medical College in Prague VysokÔ Ŕkola zdravotnickÔ, o. p. s.'),
(94193, 'https://ror.org/03ypc6863', 'en', 1, 'https://ror.org/03ypc6863 EXP EXP (Canada)'),
(94194, 'https://ror.org/0327f2m07', 'it', 1, 'https://ror.org/0327f2m07 Consiglio per la ricerca in agricoltura e l’analisi dell’economia agraria Council for Agricultural Research and Economics'),
(94195, 'https://ror.org/0170ecg02', 'it', 1, 'https://ror.org/0170ecg02 Aziende Socio Sanitarie Territoriale della Valcamonica Regional Health Care and Social Agency Valcamonica'),
(94196, 'https://ror.org/05051wa40', 'es', 1, 'https://ror.org/05051wa40 Ministerio de Trabajo, Empleo y Seguridad Social de la Nación'),
(94197, 'https://ror.org/02pfn0w45', 'en', 1, 'https://ror.org/02pfn0w45 Scout Association of Hong Kong é¦™ęøÆē«„č»ēø½ęœƒ'),
(94198, 'https://ror.org/02bj1fd19', 'it', 1, 'https://ror.org/02bj1fd19 Aziende Socio Sanitarie Territoriale Nord Milano Regional Health Care and Social Agency North Milan'),
(94199, 'https://ror.org/03gxv7f86', 'fr', 1, 'https://ror.org/03gxv7f86 Centre National de la Cartographie et de la teledetection National Mapping and Remote Sensing Center'),
(94200, 'https://ror.org/00qjepm96', 'en', 1, 'https://ror.org/00qjepm96 Trion Tec Radion Trion Tec Radion (Brazil)'),
(94201, 'https://ror.org/037d55q12', 'en', 1, 'https://ror.org/037d55q12 United Nations Children''s Fund Ecuador'),
(94202, 'https://ror.org/02y5sbr94', 'en', 1, 'https://ror.org/02y5sbr94 CAB International'),
(94203, 'https://ror.org/05rrnfe85', 'de', 1, 'https://ror.org/05rrnfe85 Landesuntersuchungsamt Rheinland-Pfalz'),
(94204, 'https://ror.org/0042y9w49', 'en', 1, 'https://ror.org/0042y9w49 Canadian Research Data Centre Network'),
(94205, 'https://ror.org/055yb9v95', 'no_lang_code', 1, 'https://ror.org/055yb9v95 IBM (Netherlands)'),
(94206, 'https://ror.org/0263t7p64', 'en', 1, 'https://ror.org/0263t7p64 Chan Zuckerberg Biohub New York'),
(94207, 'https://ror.org/04jn5sa20', 'it', 1, 'https://ror.org/04jn5sa20 Ospedale Maggiore di Lodi'),
(94208, 'https://ror.org/04jzwa923', 'es', 1, 'https://ror.org/04jzwa923 Andean University of Cuzco Universidad Andina del Cusco'),
(94209, 'https://ror.org/00h88tf73', 'en', 1, 'https://ror.org/00h88tf73 IGRAC'),
(94210, 'https://ror.org/0522eh277', 'de', 1, 'https://ror.org/0522eh277 Landesregierung von Baden-Württemberg State Government of Baden-Württemberg'),
(94211, 'https://ror.org/00r4vsg44', 'en', 1, 'https://ror.org/00r4vsg44 Texas Heart Institute'),
(94212, 'https://ror.org/057ecva72', 'en', 1, 'https://ror.org/057ecva72 National University of the Northeast Universidad Nacional del Nordeste'),
(94213, 'https://ror.org/01h90qz20', 'en', 1, 'https://ror.org/01h90qz20 Humanology Sdn Bhd Humanology Sdn Bhd (Malaysia)'),
(94214, 'https://ror.org/01cyz3n15', 'en', 1, 'https://ror.org/01cyz3n15 DTU Space'),
(94215, 'https://ror.org/00pcwya82', 'en', 1, 'https://ror.org/00pcwya82 CamEd Business School'),
(94216, 'https://ror.org/0348b7w72', 'en', 1, 'https://ror.org/0348b7w72 Great Lakes Water Authority'),
(94217, 'https://ror.org/05rv6z116', 'it', 1, 'https://ror.org/05rv6z116 Azienda Ospedaliera Treviglio'),
(94218, 'https://ror.org/04mdtn250', 'es', 1, 'https://ror.org/04mdtn250 Instituto de Investigación y Desarrollo de la Vivienda'),
(94219, 'https://ror.org/01g0b5g28', 'en', 1, 'https://ror.org/01g0b5g28 Trinity Health Oakland Hospital'),
(94220, 'https://ror.org/05px6z163', 'de', 1, 'https://ror.org/05px6z163 Ministerium für Soziales und Integration Baden-Württemberg'),
(94221, 'https://ror.org/036dgtc48', 'id', 1, 'https://ror.org/036dgtc48 Universitas Hang Tuah Pekanbaru'),
(94222, 'https://ror.org/00ferh011', 'it', 0, 'https://ror.org/00ferh011 Istituti Clinici di Perfezionamento'),
(94223, 'https://ror.org/02mhxg157', 'fr', 1, 'https://ror.org/02mhxg157 Groupement LigƩrien pour le Calcul Intensif DistribuƩ'),
(94224, 'https://ror.org/03h7hkg24', 'es', 1, 'https://ror.org/03h7hkg24 Centro de Investigación y Desarrollo Tecnológico para la Agricultura Familiar'),
(94225, 'https://ror.org/01x8j4206', 'en', 1, 'https://ror.org/01x8j4206 UniversitƩ de webster Webster University'),
(94226, 'https://ror.org/02ry60714', 'en', 1, 'https://ror.org/02ry60714 Minneapolis VA Health Care System'),
(94227, 'https://ror.org/049waqj15', 'de', 1, 'https://ror.org/049waqj15 Chemisches und VeterinƤruntersuchungsamt Stuttgart'),
(94228, 'https://ror.org/01s5nqv53', 'en', 1, 'https://ror.org/01s5nqv53 Centre for Advanced Microscopy'),
(94229, 'https://ror.org/04vxzbp05', 'no_lang_code', 1, 'https://ror.org/04vxzbp05 Czech Welding Institute (Czechia) Český svÔřečský Ćŗstav'),
(94230, 'https://ror.org/01xt79e13', 'en', 1, 'https://ror.org/01xt79e13 An tÚdarÔs um Fhaisnéis agus CÔilíocht SlÔinte Health Information and Quality Authority'),
(94231, 'https://ror.org/01cqayg74', 'en', 1, 'https://ror.org/01cqayg74 European Future Innovation System (EFIS) Centre'),
(94232, 'https://ror.org/04ywkcf20', 'en', 1, 'https://ror.org/04ywkcf20 Minneapolis Foundation'),
(94233, 'https://ror.org/038taf935', 'de', 1, 'https://ror.org/038taf935 Chemisches und VeterinƤruntersuchungsamt Freiburg'),
(94234, 'https://ror.org/02xj61x84', 'fr', 1, 'https://ror.org/02xj61x84 Center for Research in Microelectronics and Nanotechnology Centre de Recherche en Microelectronique et Nanotechnologie'),
(94235, 'https://ror.org/03scswj21', 'sv', 1, 'https://ror.org/03scswj21 Stiftelsen Invandrarinstitut och Museum MƄngkulturellt centrum'),
(94236, 'https://ror.org/01597w461', 'en', 1, 'https://ror.org/01597w461 East-West University įƒįƒ¦įƒ›įƒįƒ”įƒįƒ•įƒšįƒ”įƒ—-įƒ“įƒįƒ”įƒįƒ•įƒšįƒ”įƒ— įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(94237, 'https://ror.org/01hdgge16', 'en', 1, 'https://ror.org/01hdgge16 Great Bay University 大湾区大学'),
(94238, 'https://ror.org/00wc22h63', 'en', 1, 'https://ror.org/00wc22h63 Altoosi University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų·ŁˆŲ³ŁŠ الجامعة'),
(94239, 'https://ror.org/03erw8p58', 'es', 1, 'https://ror.org/03erw8p58 Instituto de Investigaciones en Diversidad Cultural y Procesos de Cambio'),
(94240, 'https://ror.org/038b4c997', 'nl', 1, 'https://ror.org/038b4c997 National Health Care Institute Zorginstituut Nederland'),
(94241, 'https://ror.org/01tzdej37', 'pt', 1, 'https://ror.org/01tzdej37 Federal Institute of Bahia Instituto Federal da Bahia Ɖcole polytechnique fĆ©dĆ©rale de bahia'),
(94242, 'https://ror.org/004eyxv41', 'en', 1, 'https://ror.org/004eyxv41 NumFOCUS'),
(94243, 'https://ror.org/04r0wrp59', 'en', 1, 'https://ror.org/04r0wrp59 NOAA National Centers for Environmental Information'),
(94244, 'https://ror.org/007bjx395', 'en', 1, 'https://ror.org/007bjx395 Cereal Research Centre'),
(94245, 'https://ror.org/021wda575', 'de', 1, 'https://ror.org/021wda575 Chemisches und VeterinƤruntersuchungsamt Sigmaringen'),
(94246, 'https://ror.org/03svzcs16', 'en', 0, 'https://ror.org/03svzcs16 Ministarstvo Gospodarstva, PodruzeniŔtva i Obrta Ministry of Economy, Entrepreneurship and Crafts'),
(94247, 'https://ror.org/01zj4g759', 'id', 1, 'https://ror.org/01zj4g759 Universitas Ciputra'),
(94248, 'https://ror.org/04mc1gv86', 'es', 1, 'https://ror.org/04mc1gv86 Tecnológico de Estudios Superiores de Ecatepec'),
(94249, 'https://ror.org/05k4xnj24', 'en', 1, 'https://ror.org/05k4xnj24 Bukhara State University Buxoro davlat universiteti Š‘ŃƒŃ…Š°Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(94250, 'https://ror.org/00x9ewr78', 'en', 1, 'https://ror.org/00x9ewr78 National Council for Scientific Research'),
(94251, 'https://ror.org/03fsckq75', 'en', 1, 'https://ror.org/03fsckq75 Ho Chi Minh University of Banking TrĘ°į»ng ĐẔi hį»c NgĆ¢n hĆ ng ThĆ nh phố Hồ ChĆ­ Minh'),
(94252, 'https://ror.org/0262j1008', 'pl', 1, 'https://ror.org/0262j1008 Wojewódzki Szpital Specjalistyczny im. J. Gromkowskiego we Wrocławiu'),
(94253, 'https://ror.org/0104rcc94', 'en', 1, 'https://ror.org/0104rcc94 University of Silesia in Katowice'),
(94254, 'https://ror.org/01q2s4214', 'de', 1, 'https://ror.org/01q2s4214 Addisca'),
(94255, 'https://ror.org/00x54vt20', 'en', 1, 'https://ror.org/00x54vt20 BGMEA University of Fashion & Technology'),
(94256, 'https://ror.org/04k6va493', 'en', 1, 'https://ror.org/04k6va493 Catholic University of Zimbabwe'),
(94257, 'https://ror.org/0286my572', 'id', 1, 'https://ror.org/0286my572 Sekolah Tinggi Pembangunan Masyarakat Desa APMD'),
(94258, 'https://ror.org/0552dh385', 'en', 1, 'https://ror.org/0552dh385 Agrovyzkum Rapotin Agrovyzkum Rapotin (Czechia) Agrovýzkum Rapotín s.r.o.'),
(94259, 'https://ror.org/03j656z92', 'fr', 1, 'https://ror.org/03j656z92 Centre National de Semences ForestiĆØres'),
(94260, 'https://ror.org/02ddybj40', 'en', 1, 'https://ror.org/02ddybj40 G. Venkataswamy Naidu College ஜி. ą®µąÆ†ą®™ąÆą®•ą®Ÿą®šą®¾ą®®ą®æ நாயுடு ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(94261, 'https://ror.org/00dgcm453', 'en', 1, 'https://ror.org/00dgcm453 Red Española de Esclerosis Múltiple Spanish Multiple Sclerosis Network'),
(94262, 'https://ror.org/02t46gq94', 'es', 1, 'https://ror.org/02t46gq94 Ministerio de Salud PĆŗblica'),
(94263, 'https://ror.org/02hwjhx76', 'en', 1, 'https://ror.org/02hwjhx76 Universitets- og høgskolerÄdet Universities Norway'),
(94264, 'https://ror.org/01w4ss835', 'en', 1, 'https://ror.org/01w4ss835 Ateneo de Davao University Pamantasang Ateneo de Davao'),
(94265, 'https://ror.org/038tahs86', 'es', 1, 'https://ror.org/038tahs86 Consejería de Educación, Universidades, Ciencia y Portavocía'),
(94266, 'https://ror.org/02kjy3s76', 'en', 1, 'https://ror.org/02kjy3s76 Daiko Foundation'),
(94267, 'https://ror.org/043p1tw66', 'en', 0, 'https://ror.org/043p1tw66 Naval Facilities Engineering Service Center'),
(94268, 'https://ror.org/02wxm3f24', 'en', 1, 'https://ror.org/02wxm3f24 Institute of Science and Technology ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø तऄा ą¤Ŗą„ą¤°ą¤µą¤æą¤§ą¤æ ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(94269, 'https://ror.org/01rwa8h06', 'nl', 1, 'https://ror.org/01rwa8h06 FOD Volksgezondheid, Veiligheid van de Voedselketen en Leefmilieu FPS Public Health, Food Chain Safety and Environment FƖD Volksgesundheit, Sicherheit der Nahrungsmittelkette und Umwelt SPF SantĆ© publique, SĆ©curitĆ© de la ChaĆ®ne alimentaire et Environnement'),
(94270, 'https://ror.org/035927h47', 'es', 1, 'https://ror.org/035927h47 El Colegio de Morelos'),
(94271, 'https://ror.org/020mn7317', 'en', 1, 'https://ror.org/020mn7317 Miva Open University'),
(94272, 'https://ror.org/007kf2g74', 'no_lang_code', 0, 'https://ror.org/007kf2g74 Gamesa (Spain)'),
(94273, 'https://ror.org/04jr59487', 'en', 1, 'https://ror.org/04jr59487 Ghana Tertiary Education Commission'),
(94274, 'https://ror.org/03pkrdc36', 'en', 1, 'https://ror.org/03pkrdc36 PacifiCan'),
(94275, 'https://ror.org/05d95p271', 'fr', 1, 'https://ror.org/05d95p271 Jeunesse - ActivitƩ Physique et Sportive, santƩ'),
(94276, 'https://ror.org/00v3dp115', 'en', 1, 'https://ror.org/00v3dp115 Citizens Specialty Hospitals'),
(94277, 'https://ror.org/039mr5546', 'en', 1, 'https://ror.org/039mr5546 Knihovna ÚsteckĆ©ho kraje, příspěvkovĆ” organizace ÚstĆ­ Regional Library'),
(94278, 'https://ror.org/0521sww17', 'en', 1, 'https://ror.org/0521sww17 Arizona College of Emergency Physicians'),
(94279, 'https://ror.org/04g2swc55', 'en', 0, 'https://ror.org/04g2swc55 University of Iowa Hospitals and Clinics'),
(94280, 'https://ror.org/031gdae85', 'en', 1, 'https://ror.org/031gdae85 Kungliga Krigsvetenskapsakademien The Royal Swedish Academy of War Sciences'),
(94281, 'https://ror.org/00j9qzp88', 'en', 1, 'https://ror.org/00j9qzp88 Nordic International University Xalqaro Nordik universiteti ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет ŠŠ¾Ń€Š“ŠøŠŗ'),
(94282, 'https://ror.org/03hxmas11', 'no_lang_code', 1, 'https://ror.org/03hxmas11 Research Institute for Cattle Breeding (Czechia) Výzkumný Ustav pro Chov Skotu'),
(94283, 'https://ror.org/049bc0z69', 'en', 1, 'https://ror.org/049bc0z69 Canadian Glycomics Network'),
(94284, 'https://ror.org/01g7fa878', 'en', 0, 'https://ror.org/01g7fa878 State Agrarian University of Moldova Universitatea Agrară de Stat din Moldova'),
(94285, 'https://ror.org/02h1jtt91', 'en', 0, 'https://ror.org/02h1jtt91 Japan Private School Promotion Foundation ę—„ęœ¬ē§ē«‹å­¦ę ”ęŒÆčˆˆč²”å›£'),
(94286, 'https://ror.org/04jycch17', 'cs', 1, 'https://ror.org/04jycch17 Pardubice Region Pardubický kraj'),
(94287, 'https://ror.org/017cjzj15', 'en', 1, 'https://ror.org/017cjzj15 Yasuda Memorial Medical Foundation'),
(94288, 'https://ror.org/0493yt138', 'de', 1, 'https://ror.org/0493yt138 Thüringer Universitäts- und Landesbibliothek'),
(94289, 'https://ror.org/01rvhet58', 'en', 1, 'https://ror.org/01rvhet58 Farhangian University دانؓگاه ŁŲ±Ł‡Ł†ŚÆŪŒŲ§Ł†'),
(94290, 'https://ror.org/03rsncr94', 'nl', 1, 'https://ror.org/03rsncr94 4TU'),
(94291, 'https://ror.org/003ncxf91', 'en', 1, 'https://ror.org/003ncxf91 China University of Mining and Technology - Beijing äø­å›½ēŸæäøšå¤§å­¦ļ¼ˆåŒ—äŗ¬ļ¼‰'),
(94292, 'https://ror.org/01k800776', 'en', 1, 'https://ror.org/01k800776 ProMedica'),
(94293, 'https://ror.org/007gerq75', 'en', 1, 'https://ror.org/007gerq75 AIMST University'),
(94294, 'https://ror.org/04n3hg563', 'en', 1, 'https://ror.org/04n3hg563 Pamantasang STI ng Kanlurang Negros West Negros University'),
(94295, 'https://ror.org/00s8ft489', 'en', 1, 'https://ror.org/00s8ft489 Guangzhou Zengcheng District Traditional Chinese Medicine Hospital å¹æå·žåø‚å¢žåŸŽåŒŗäø­åŒ»åŒ»é™¢'),
(94296, 'https://ror.org/03a7m8962', 'en', 1, 'https://ror.org/03a7m8962 Tokyo Ohka Foundation for The Promotion of Science and Technology'),
(94297, 'https://ror.org/012x5xb44', 'en', 1, 'https://ror.org/012x5xb44 Unity Health Toronto'),
(94298, 'https://ror.org/02eq60031', 'en', 1, 'https://ror.org/02eq60031 Piri Reis University Pîrî Reis Üniversitesi'),
(94299, 'https://ror.org/05ck7c689', 'en', 1, 'https://ror.org/05ck7c689 Britaniya Menejment Universiteti British Management University Tashkent Британский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ менеГжмента в Š¢Š°ŃˆŠŗŠµŠ½Ń‚е'),
(94300, 'https://ror.org/01gmtnk43', 'en', 1, 'https://ror.org/01gmtnk43 Bundeskanzleramt Federal Chancellery Republic of Austria'),
(94301, 'https://ror.org/05kbck686', 'sv', 1, 'https://ror.org/05kbck686 SprƄkbanken Tal'),
(94302, 'https://ror.org/05ycwtk34', 'fr', 1, 'https://ror.org/05ycwtk34 Agence ThƩmatique de Recherche en Sciences et Technologie'),
(94303, 'https://ror.org/01qpswk97', 'en', 1, 'https://ror.org/01qpswk97 Canon Medical Systems Corporation (Japan) ć‚­ćƒ¤ćƒŽćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚·ć‚¹ćƒ†ćƒ ć‚ŗę Ŗå¼ä¼šē¤¾'),
(94304, 'https://ror.org/0273t3w24', 'es', 1, 'https://ror.org/0273t3w24 Universidad Tecnológica del Cibao Oriental'),
(94305, 'https://ror.org/03qyv5w70', 'fr', 1, 'https://ror.org/03qyv5w70 Institut de Recherche en Sciences AppliquƩes et Technologies'),
(94306, 'https://ror.org/04374qe70', 'en', 1, 'https://ror.org/04374qe70 SickKids Foundation'),
(94307, 'https://ror.org/01rx64j22', 'en', 1, 'https://ror.org/01rx64j22 Simon Diedong Dombo University of Business and Integrated Development Studies'),
(94308, 'https://ror.org/012ngjb50', 'es', 1, 'https://ror.org/012ngjb50 Universidad de Moa'),
(94309, 'https://ror.org/055v4a470', 'pt', 1, 'https://ror.org/055v4a470 Institute for Philosophical Studies Instituto de Estudos Filosóficos'),
(94310, 'https://ror.org/04bm3wy68', 'en', 1, 'https://ror.org/04bm3wy68 Hue University of Education TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m Huįŗæ University of Education, Hue University'),
(94311, 'https://ror.org/01yd28726', 'es', 1, 'https://ror.org/01yd28726 Instituto de Investigaciones GeogrƔficas de la Patagonia'),
(94312, 'https://ror.org/04g7z4238', 'en', 1, 'https://ror.org/04g7z4238 Fatty Acid Research Institute'),
(94313, 'https://ror.org/03pr6rd29', 'en', 1, 'https://ror.org/03pr6rd29 Educational and Rehabilitation Institution of Higher Education "Kamianets-Podilskyi State Institute" ŠŠ°Š²Ń‡Š°Š»ŃŒŠ½Š¾-реабілітаційний заклаГ вищої освіти "Кам''ŃŠ½ŠµŃ†ŃŒ-ŠŸŠ¾Š“Ń–Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚"'),
(94314, 'https://ror.org/00rfexj26', 'no_lang_code', 1, 'https://ror.org/00rfexj26 OPERAS'),
(94315, 'https://ror.org/021z9m619', 'en', 1, 'https://ror.org/021z9m619 Department of Industry, Science and Resources'),
(94316, 'https://ror.org/010gha940', 'en', 1, 'https://ror.org/010gha940 Swiss Vaccine Research Institute'),
(94317, 'https://ror.org/007zyap28', 'en', 1, 'https://ror.org/007zyap28 Queensland Department of Natural Resources, Mines and Energy'),
(94318, 'https://ror.org/01xs7ed64', 'es', 1, 'https://ror.org/01xs7ed64 Universidad Evangelica de El Salvador'),
(94319, 'https://ror.org/01614jm39', 'en', 1, 'https://ror.org/01614jm39 Lottery Health Research'),
(94320, 'https://ror.org/02tnxpn14', 'no_lang_code', 0, 'https://ror.org/02tnxpn14 Advanced Digital Imaging Research'),
(94321, 'https://ror.org/059c5gz18', 'en', 1, 'https://ror.org/059c5gz18 Ministarstvo gospodarstva i održivog razvoja Ministry of Economy and Sustainable Development'),
(94322, 'https://ror.org/032aw4s87', 'en', 1, 'https://ror.org/032aw4s87 Swiss UMEF'),
(94323, 'https://ror.org/00x1rrc95', 'en', 1, 'https://ror.org/00x1rrc95 Institut Sciences du vivant Institute of Life Sciences Instituts für Life Sciences'),
(94324, 'https://ror.org/03s65by71', 'en', 1, 'https://ror.org/03s65by71 Universidad de California en Santa Cruz University of California, Santa Cruz UniversitƩ de Californie Ơ Santa Cruz'),
(94325, 'https://ror.org/045dhqd98', 'en', 1, 'https://ror.org/045dhqd98 Far Eastern University'),
(94326, 'https://ror.org/005eqmw78', 'en', 1, 'https://ror.org/005eqmw78 Asian Theological Seminary'),
(94327, 'https://ror.org/050dyr068', 'en', 1, 'https://ror.org/050dyr068 Solomon Islands National University'),
(94328, 'https://ror.org/02rvbpq83', 'en', 1, 'https://ror.org/02rvbpq83 Takhar University دانؓگاه ŲŖŲ®Ų§Ų±'),
(94329, 'https://ror.org/00qf5qe53', 'en', 1, 'https://ror.org/00qf5qe53 Marie Curie Alumni Association'),
(94330, 'https://ror.org/03vsc0s28', 'fr', 1, 'https://ror.org/03vsc0s28 Fondation CentraleSupƩlec'),
(94331, 'https://ror.org/00d9ah105', 'en', 1, 'https://ror.org/00d9ah105 Universidad de California en Merced University of California, Merced UniversitƩ de Californie Ơ Merced'),
(94332, 'https://ror.org/039nk8734', 'en', 1, 'https://ror.org/039nk8734 Ada College of Education'),
(94333, 'https://ror.org/00r7raa16', 'en', 1, 'https://ror.org/00r7raa16 Ministry of Defence'),
(94334, 'https://ror.org/05f1nfh63', 'en', 1, 'https://ror.org/05f1nfh63 KrajskĆ” knihovna v PardubicĆ­ch Pardubice Regional Library'),
(94335, 'https://ror.org/00t12va36', 'de', 1, 'https://ror.org/00t12va36 Energieinstitut an der Johannes Kepler UniversitƤt Linz'),
(94336, 'https://ror.org/05x3f0345', 'en', 1, 'https://ror.org/05x3f0345 Government of Seattle'),
(94337, 'https://ror.org/005f4y685', 'no_lang_code', 1, 'https://ror.org/005f4y685 Chinhoyi University of Technology'),
(94338, 'https://ror.org/00p1tkb89', 'en', 0, 'https://ror.org/00p1tkb89 Rubin'),
(94339, 'https://ror.org/046q22e19', 'en', 1, 'https://ror.org/046q22e19 Kokand University Qoʻqon universiteti'),
(94340, 'https://ror.org/00xxrr382', 'en', 1, 'https://ror.org/00xxrr382 Tamale Technical University'),
(94341, 'https://ror.org/04n3wrd11', 'en', 1, 'https://ror.org/04n3wrd11 Nowgong Girls'' College'),
(94342, 'https://ror.org/04b8jtz89', 'en', 1, 'https://ror.org/04b8jtz89 River Security Inc. River Security Inc. (China) ē‘žę•°äæ”ęÆ'),
(94343, 'https://ror.org/0059b1q02', 'en', 1, 'https://ror.org/0059b1q02 Ministry of Communications, Knowledge and Technology'),
(94344, 'https://ror.org/01beje961', 'it', 1, 'https://ror.org/01beje961 Galleria Borghese'),
(94345, 'https://ror.org/00krdxg91', 'en', 1, 'https://ror.org/00krdxg91 Ono Medical Research Foundation'),
(94346, 'https://ror.org/00s426w44', 'en', 1, 'https://ror.org/00s426w44 St Joseph''s Health Centre'),
(94347, 'https://ror.org/04axnyp10', 'en', 1, 'https://ror.org/04axnyp10 Samsung Advanced Institute of Technology (South Korea) ģ‚¼ģ„±ģ¢…ķ•©źø°ģˆ ģ›'),
(94348, 'https://ror.org/05nf86y53', 'en', 1, 'https://ror.org/05nf86y53 Japan Atomic Energy Agency ę—„ęœ¬åŽŸå­åŠ›ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(94349, 'https://ror.org/05gedzg25', 'en', 1, 'https://ror.org/05gedzg25 Foso College of Education'),
(94350, 'https://ror.org/03bvg6e09', 'en', 1, 'https://ror.org/03bvg6e09 Youth Peer Education Network'),
(94351, 'https://ror.org/04mvx3d75', 'fr', 1, 'https://ror.org/04mvx3d75 Labex UnivEarthS'),
(94352, 'https://ror.org/04ryvdf08', 'en', 1, 'https://ror.org/04ryvdf08 Space Research Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космических исслеГований'),
(94353, 'https://ror.org/03tba1v94', 'en', 1, 'https://ror.org/03tba1v94 Federal Rostov Agrarian Research Centre Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Ростовский Аграрный ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр'),
(94354, 'https://ror.org/00490n048', 'en', 1, 'https://ror.org/00490n048 American Institutes for Research'),
(94355, 'https://ror.org/05bjxv014', 'en', 1, 'https://ror.org/05bjxv014 National Agricultural Research and Development Institute'),
(94356, 'https://ror.org/041wgbs27', 'de', 1, 'https://ror.org/041wgbs27 Clienia AG'),
(94357, 'https://ror.org/02nmt1x06', 'no_lang_code', 0, 'https://ror.org/02nmt1x06 MEDAV (Germany)'),
(94358, 'https://ror.org/050qe2074', 'fr', 1, 'https://ror.org/050qe2074 LabEx PRIMES'),
(94359, 'https://ror.org/01k476402', 'en', 1, 'https://ror.org/01k476402 Ahmed Draia University الجامعة Ų§Ł„Ų£ŁŲ±ŁŠŁ‚ŁŠŲ©'),
(94360, 'https://ror.org/025f3dm06', 'en', 1, 'https://ror.org/025f3dm06 European Network of Logistics Competence Centres'),
(94361, 'https://ror.org/011mac819', 'fr', 1, 'https://ror.org/011mac819 Histoire et ArchƩologie Maritimes'),
(94362, 'https://ror.org/05tvhac84', 'ca', 1, 'https://ror.org/05tvhac84 Andorra Recerca + Innovació'),
(94363, 'https://ror.org/00dy23r24', 'en', 1, 'https://ror.org/00dy23r24 Bagadhar Brahma Kishan College'),
(94364, 'https://ror.org/01dw2vm55', 'en', 1, 'https://ror.org/01dw2vm55 Rajalakshmi Engineering College'),
(94365, 'https://ror.org/026vm4649', 'en', 1, 'https://ror.org/026vm4649 Agricultural Research Institute Kromeriz Zemědělský Výzkumný Ustav Kroměříž'),
(94366, 'https://ror.org/02k239e36', 'es', 1, 'https://ror.org/02k239e36 Universidad del Gran Rosario'),
(94367, 'https://ror.org/02k65yv07', 'en', 1, 'https://ror.org/02k65yv07 Eachtra Archaeological Projects Eachtra Archaeological Projects (Ireland)'),
(94368, 'https://ror.org/05tqdk852', 'fr', 1, 'https://ror.org/05tqdk852 Laboratoire d''Excellence Dynamiques Territoriales et Spatiales'),
(94369, 'https://ror.org/02w7ezv91', 'fr', 1, 'https://ror.org/02w7ezv91 Pathologies Pulmonaires et PlasticitƩ Cellulaire'),
(94370, 'https://ror.org/008fkr426', 'ro', 1, 'https://ror.org/008fkr426 Institutul Naţional de Cercetare - Dezvoltare în Turism Institutul Naţional de Cercetare-Dezvoltare în Turism'),
(94371, 'https://ror.org/02q1v5910', 'en', 1, 'https://ror.org/02q1v5910 State Key Laboratory of Millimeter Waves ęÆ«ē±³ę³¢å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(94372, 'https://ror.org/05s4t4n85', 'pt', 1, 'https://ror.org/05s4t4n85 Faculdade Católica de Mato Grosso'),
(94373, 'https://ror.org/0064e3s97', 'en', 1, 'https://ror.org/0064e3s97 Alba Graduate Business School, The American College of Greece'),
(94374, 'https://ror.org/05gh16g69', 'pt', 1, 'https://ror.org/05gh16g69 Association for the Development of Industrial Aerodynamics Associação para o Desenvolvimento da Aerodinâmica Industrial'),
(94375, 'https://ror.org/01y25zv73', 'en', 1, 'https://ror.org/01y25zv73 Council of Science and Technology, Uttar Pradesh'),
(94376, 'https://ror.org/02rycsd19', 'en', 0, 'https://ror.org/02rycsd19 Institute for Work and Health'),
(94377, 'https://ror.org/01x1mwt32', 'fr', 1, 'https://ror.org/01x1mwt32 Centre de recherche interdisciplinaire sur les modèles esthétiques et littéraires'),
(94378, 'https://ror.org/01428y038', 'en', 1, 'https://ror.org/01428y038 Kibi Presbyterian College of Education'),
(94379, 'https://ror.org/04x7z1r26', 'en', 1, 'https://ror.org/04x7z1r26 GMT Technology (Shenzhen) Co., Ltd. GMT Technology (Shenzhen) Co., Ltd. (China)'),
(94380, 'https://ror.org/053wdma52', 'es', 1, 'https://ror.org/053wdma52 Pontifical Catholic University of Ecuador, Ibarra Campus Pontificia Universidad Católica del Ecuador Sede Ibarra'),
(94381, 'https://ror.org/05qy72j51', 'en', 0, 'https://ror.org/05qy72j51 dsafsdf'),
(94382, 'https://ror.org/031mgma31', 'en', 1, 'https://ror.org/031mgma31 Laserlab Europe'),
(94383, 'https://ror.org/0192yc246', 'cs', 1, 'https://ror.org/0192yc246 Liberec Region Liberecký kraj'),
(94384, 'https://ror.org/01sks0025', 'en', 1, 'https://ror.org/01sks0025 Kharkiv National Medical University Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(94385, 'https://ror.org/038n03236', 'en', 1, 'https://ror.org/038n03236 Idlib University Ų¬Ų§Ł…Ų¹Ų© ؄دلب'),
(94386, 'https://ror.org/02d887280', 'en', 1, 'https://ror.org/02d887280 4TU.ResearchData'),
(94387, 'https://ror.org/00fzg0656', 'en', 1, 'https://ror.org/00fzg0656 Crystal Impact Crystal Impact (Germany)'),
(94388, 'https://ror.org/02s47w807', 'en', 1, 'https://ror.org/02s47w807 WinnMed'),
(94389, 'https://ror.org/02b948n83', 'no_lang_code', 1, 'https://ror.org/02b948n83 LG (United States)'),
(94390, 'https://ror.org/01yhh4s82', 'en', 1, 'https://ror.org/01yhh4s82 Cascadia Seaweed Cascadia Seaweed (Canada)'),
(94391, 'https://ror.org/024ws6f80', 'en', 1, 'https://ror.org/024ws6f80 Queensland Department of Transport and Main Roads'),
(94392, 'https://ror.org/0496p8026', 'fr', 1, 'https://ror.org/0496p8026 DƩlƩgation CƓte d''Azur'),
(94393, 'https://ror.org/038esz880', 'en', 0, 'https://ror.org/038esz880 Institute of Social and Preventive Medicine'),
(94394, 'https://ror.org/00e50mf91', 'en', 1, 'https://ror.org/00e50mf91 International Network of Nuclear Reaction Data Centres'),
(94395, 'https://ror.org/01n0fwh86', 'es', 1, 'https://ror.org/01n0fwh86 Sociedad Latinoamericana de Nutrición'),
(94396, 'https://ror.org/02k949197', 'en', 1, 'https://ror.org/02k949197 Koneru Lakshmaiah Education Foundation'),
(94397, 'https://ror.org/04mcdza51', 'fr', 1, 'https://ror.org/04mcdza51 Centre universitaire de mƩdecine gƩnƩrale et santƩ publique, Lausanne'),
(94398, 'https://ror.org/00n6rde07', 'en', 1, 'https://ror.org/00n6rde07 Institute of Haematology and Blood Transfusion Ústav hematologie a krevní transfuze'),
(94399, 'https://ror.org/05rfrd414', 'en', 1, 'https://ror.org/05rfrd414 Dalubhasaang San Miguel ng Caraga Saint Michael College of Caraga'),
(94400, 'https://ror.org/04t59f227', 'en', 1, 'https://ror.org/04t59f227 Our Lady of Apostles College of Education'),
(94401, 'https://ror.org/05wkbzn97', 'en', 1, 'https://ror.org/05wkbzn97 Seattle Public Utilities'),
(94402, 'https://ror.org/0558szv56', 'en', 1, 'https://ror.org/0558szv56 Shunan University å‘Øå—å…¬ē«‹å¤§å­¦'),
(94403, 'https://ror.org/051qmsg29', 'en', 1, 'https://ror.org/051qmsg29 SBS Swiss Business School'),
(94404, 'https://ror.org/04rrs1z45', 'en', 1, 'https://ror.org/04rrs1z45 Agrotest Fyto Agrotest Fyto (Czechia) Agrotest fyto, s.r.o.'),
(94405, 'https://ror.org/05qajvd42', 'en', 1, 'https://ror.org/05qajvd42 Australia Telescope National Facility'),
(94406, 'https://ror.org/05xgfr295', 'en', 1, 'https://ror.org/05xgfr295 Canadian Sleep & Circadian Network Centre d''Ɖtudes AvancĆ©es en MĆ©decine du Sommeil'),
(94407, 'https://ror.org/009b9n257', 'en', 1, 'https://ror.org/009b9n257 Swedish Infrastructure for Ecosystem Science'),
(94408, 'https://ror.org/00zmg2m07', 'en', 1, 'https://ror.org/00zmg2m07 Georgian International University įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒ”įƒ įƒ—įƒįƒØįƒįƒ įƒ˜įƒ”įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(94409, 'https://ror.org/01d5qkg71', 'en', 1, 'https://ror.org/01d5qkg71 Ghana Academy of Arts and Sciences'),
(94410, 'https://ror.org/05291s926', 'fr', 1, 'https://ror.org/05291s926 UniversitĆ© Saint Thomas d’Aquin'),
(94411, 'https://ror.org/036wxwe09', 'es', 1, 'https://ror.org/036wxwe09 Escuela Normal de Jilotepec'),
(94412, 'https://ror.org/02k6qnd34', 'id', 1, 'https://ror.org/02k6qnd34 Politeknik Negeri Jember'),
(94413, 'https://ror.org/05jzcs626', 'en', 1, 'https://ror.org/05jzcs626 Palompon Institute of Technology'),
(94414, 'https://ror.org/02b7jh107', 'en', 1, 'https://ror.org/02b7jh107 Innopolis University ŠŠ²Ń‚Š¾Š½Š¾Š¼Š½Š°Ń Š½ŠµŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Университет Иннополис'),
(94415, 'https://ror.org/00gjmje40', 'en', 1, 'https://ror.org/00gjmje40 Samsung Science and Technology Foundation (South Korea) ģ‚¼ģ„±ėÆøėž˜źø°ģˆ ģœ”ģ„±ģž¬ė‹Ø'),
(94416, 'https://ror.org/046tqzn85', 'es', 1, 'https://ror.org/046tqzn85 Escuela Normal de Zumpango'),
(94417, 'https://ror.org/00h40a794', 'en', 1, 'https://ror.org/00h40a794 International Ice Hockey Federation'),
(94418, 'https://ror.org/012vk3585', 'en', 1, 'https://ror.org/012vk3585 Rift Valley Technical Training Institute'),
(94419, 'https://ror.org/05kpz5d89', 'en', 1, 'https://ror.org/05kpz5d89 Research Foundation for the Electrotechnology of Chubu å…¬ē›Šč²”å›£ę³•äŗŗäø­éƒØé›»ę°—åˆ©ē”ØåŸŗē¤Žē ”ē©¶ęŒÆčˆˆč²”å›£'),
(94420, 'https://ror.org/04vzt1785', 'es', 1, 'https://ror.org/04vzt1785 Ministerio del Comercio Interior'),
(94421, 'https://ror.org/04yanv433', 'en', 1, 'https://ror.org/04yanv433 NOVARTIS Foundation for the Promotion of Science (Japan)'),
(94422, 'https://ror.org/05ksqqc16', 'de', 1, 'https://ror.org/05ksqqc16 Bundesdenkmalamt'),
(94423, 'https://ror.org/01h0ycp25', 'nl', 0, 'https://ror.org/01h0ycp25 Internationale Stichting Alzheimer Onderzoek'),
(94424, 'https://ror.org/03jms8710', 'fr', 1, 'https://ror.org/03jms8710 Centre Gabriel NaudƩ'),
(94425, 'https://ror.org/00dh5gw98', 'en', 1, 'https://ror.org/00dh5gw98 Ministerul Educației și Cercetării Științifice Ministry of Education'),
(94426, 'https://ror.org/02gam0808', 'fr', 1, 'https://ror.org/02gam0808 Centre d''Etudes et de Recherche en Gestion d''Aix-Marseille'),
(94427, 'https://ror.org/036k0fg31', 'en', 1, 'https://ror.org/036k0fg31 Usti Region Ústecký kraj'),
(94428, 'https://ror.org/005914142', 'en', 1, 'https://ror.org/005914142 KDDI Foundation'),
(94429, 'https://ror.org/031jcsp55', 'en', 1, 'https://ror.org/031jcsp55 Czech Aerospace Research Centre Výzkumný a zkuŔební letecký ústav, a. s.'),
(94430, 'https://ror.org/02f4cyy89', 'es', 1, 'https://ror.org/02f4cyy89 Hospital General Docente de Calderón'),
(94431, 'https://ror.org/040qrz805', 'cs', 1, 'https://ror.org/040qrz805 The College of European and Regional Studies VysokÔ Ŕkola Evropských a RegionÔlních Studií VysokÔ Ŕkola evropských a regionÔlních studií, z. ú.'),
(94432, 'https://ror.org/047wbd030', 'en', 1, 'https://ror.org/047wbd030 Darmstadt University of Applied Sciences Hochschule Darmstadt'),
(94433, 'https://ror.org/04mwp2j83', 'no_lang_code', 0, 'https://ror.org/04mwp2j83 Thiokol (United States)'),
(94434, 'https://ror.org/01e6mcq80', 'id', 1, 'https://ror.org/01e6mcq80 Universitas Bosowa'),
(94435, 'https://ror.org/04mv5gg87', 'en', 1, 'https://ror.org/04mv5gg87 International Institute for Management Development'),
(94436, 'https://ror.org/01bwma613', 'en', 1, 'https://ror.org/01bwma613 Max Planck School Matter to Life'),
(94437, 'https://ror.org/03ge26363', 'en', 1, 'https://ror.org/03ge26363 Okinaka Memorial Institute for Medical Research'),
(94438, 'https://ror.org/01jzrzb86', 'en', 1, 'https://ror.org/01jzrzb86 Institute of Intelligent Industrial Systems and Technologies for Advanced Manufacturing Istituto di Sistemi e Tecnologie Industriali Intelligenti per il Manifatturiero Avanzato'),
(94439, 'https://ror.org/03mnxvp33', 'es', 1, 'https://ror.org/03mnxvp33 Dirección General de Universidades e Investigación General Directorate of Universities and Research'),
(94440, 'https://ror.org/02tjqwz24', 'no_lang_code', 1, 'https://ror.org/02tjqwz24 Research Institute for Fodder Crops (Czechia) výzkumný Ćŗstav pĆ­cninÔřský spol. s r.o'),
(94441, 'https://ror.org/032a28f65', 'en', 1, 'https://ror.org/032a28f65 European Research Center for Information Systems'),
(94442, 'https://ror.org/03wx0vn75', 'en', 1, 'https://ror.org/03wx0vn75 CentrEau - Centre QuƩbƩcois de Recherche sur la Gestion de l''Eau CentrEau - Quebec Water Management Research Centre'),
(94443, 'https://ror.org/03g98ap29', 'en', 1, 'https://ror.org/03g98ap29 Korea Medical Device Development Fund ė²”ė¶€ģ²˜ģ‹ ģ•½ź°œė°œģ‚¬ģ—…ė‹Ø'),
(94444, 'https://ror.org/02c37bg49', 'en', 1, 'https://ror.org/02c37bg49 Naval History and Heritage Command'),
(94445, 'https://ror.org/033fqnp11', 'en', 1, 'https://ror.org/033fqnp11 Ankara Bilkent City Hospital Ankara Bilkent Şehir Hastanesi ŠŠ½ŠŗŠ°Ń€ŃŠŗŠ°Ń Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š‘Š¾Š»ŃŒŠ½ŠøŃ†Š° مستؓفى محافظة انقرة'),
(94446, 'https://ror.org/03nw3dq29', 'en', 1, 'https://ror.org/03nw3dq29 Royal Botanic Garden Sydney'),
(94447, 'https://ror.org/03rc1y976', 'en', 1, 'https://ror.org/03rc1y976 Buildwise'),
(94448, 'https://ror.org/048pp2f81', 'en', 1, 'https://ror.org/048pp2f81 Mount Mary College of Education'),
(94449, 'https://ror.org/03eere626', 'en', 1, 'https://ror.org/03eere626 Brocher Foundation Fondation Brocher'),
(94450, 'https://ror.org/04skqfp25', 'en', 1, 'https://ror.org/04skqfp25 HƓpital St. Michael St. Michael''s Hospital'),
(94451, 'https://ror.org/00j7bab93', 'en', 1, 'https://ror.org/00j7bab93 Ho Technical University'),
(94452, 'https://ror.org/01cabt515', 'fr', 1, 'https://ror.org/01cabt515 UniversitƩ Publique du Sud''Est'),
(94453, 'https://ror.org/0313ta617', 'fr', 1, 'https://ror.org/0313ta617 Fonds National de la Recherche et de L''Innovation pour le DƩveloppement'),
(94454, 'https://ror.org/03rhjfh75', 'fr', 1, 'https://ror.org/03rhjfh75 Institut des Sciences des SociƩtƩs'),
(94455, 'https://ror.org/04jk8jz35', 'fr', 1, 'https://ror.org/04jk8jz35 Grand Port Maritime de Nantes Saint-Nazaire'),
(94456, 'https://ror.org/0105w2p42', 'en', 1, 'https://ror.org/0105w2p42 Bibliothèque Royale de Belgique Koninklijke Bibliotheek België Royal Library of Belgium'),
(94457, 'https://ror.org/03z0nnr82', 'en', 1, 'https://ror.org/03z0nnr82 Global Frontier Hybrid Interface Materials'),
(94458, 'https://ror.org/03eh6fk59', 'en', 1, 'https://ror.org/03eh6fk59 Mater Foundation'),
(94459, 'https://ror.org/03rvjk961', 'en', 1, 'https://ror.org/03rvjk961 Urasoe General Hospital'),
(94460, 'https://ror.org/0105dn617', 'en', 1, 'https://ror.org/0105dn617 National Science Library'),
(94461, 'https://ror.org/03ts7z477', 'en', 1, 'https://ror.org/03ts7z477 Institut de radiophysique Institute of Radiation Physics'),
(94462, 'https://ror.org/040sq8567', 'fr', 1, 'https://ror.org/040sq8567 Canal Savoir'),
(94463, 'https://ror.org/041yqj635', 'en', 1, 'https://ror.org/041yqj635 Steel Authority of India Limited'),
(94464, 'https://ror.org/0184n5y84', 'en', 1, 'https://ror.org/0184n5y84 University of Iowa Stead Family Children’s Hospital'),
(94465, 'https://ror.org/0209kfm92', 'en', 1, 'https://ror.org/0209kfm92 Samangan Higher Education Institute Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† سمنگان'),
(94466, 'https://ror.org/05kmgev50', 'en', 1, 'https://ror.org/05kmgev50 Science Center for Information Technologies in Design Центр информационных технологий в проектировании'),
(94467, 'https://ror.org/0349bbg69', 'en', 1, 'https://ror.org/0349bbg69 Kyoto University Institute for Chemical Research äŗ¬éƒ½å¤§å­¦åŒ–å­¦ē ”ē©¶ę‰€'),
(94468, 'https://ror.org/00evhj411', 'en', 1, 'https://ror.org/00evhj411 Franciscan Health Mooresville St. Francis Hospital'),
(94469, 'https://ror.org/0515tt074', 'es', 1, 'https://ror.org/0515tt074 Grupo EspaƱol de Tumores Neuroendocrinos'),
(94470, 'https://ror.org/05mq93331', 'en', 1, 'https://ror.org/05mq93331 Military Hospital Brno VojenskĆ” nemocnice Brno'),
(94471, 'https://ror.org/01czqbr06', 'en', 1, 'https://ror.org/01czqbr06 Swiss School of Public Health'),
(94472, 'https://ror.org/02ft5tp06', 'fr', 1, 'https://ror.org/02ft5tp06 DƩlƩgation Ile-de-France Ouest et Nord'),
(94473, 'https://ror.org/00mkz4t33', 'en', 1, 'https://ror.org/00mkz4t33 BIMM University'),
(94474, 'https://ror.org/03scrf030', 'en', 1, 'https://ror.org/03scrf030 ProMedica Toledo Hospital'),
(94475, 'https://ror.org/00621wh10', 'de', 1, 'https://ror.org/00621wh10 Klinik Hietzing'),
(94476, 'https://ror.org/05gnb6459', 'en', 1, 'https://ror.org/05gnb6459 Interdisciplinary Research Centre for Technology, Work and Culture Interdisziplinäre Forschungszentrum für Technik, Arbeit und Kultur'),
(94477, 'https://ror.org/052rxf585', 'pt', 1, 'https://ror.org/052rxf585 Associate Laboratory of Energy, Transports and Aerospace Laboratório Associado de Energia, Transportes e AeronÔutica'),
(94478, 'https://ror.org/01mqjeb88', 'sv', 1, 'https://ror.org/01mqjeb88 SprƄkbanken Sam'),
(94479, 'https://ror.org/00eqwze33', 'en', 1, 'https://ror.org/00eqwze33 Basque Centre for Climate Change Centro Vasco para el Cambio ClimƔtico Klima Aldaketa Ikergai'),
(94480, 'https://ror.org/02mvzme44', 'cs', 1, 'https://ror.org/02mvzme44 Výzkumný Ústav MlékÔrenský'),
(94481, 'https://ror.org/035qedt02', 'it', 1, 'https://ror.org/035qedt02 Ministero dei Beni e delle AttivitĆ  Culturali e del Turismo Ministero della cultura'),
(94482, 'https://ror.org/050q6t909', 'de', 1, 'https://ror.org/050q6t909 Rosenpass e.V.'),
(94483, 'https://ror.org/02899vv07', 'en', 0, 'https://ror.org/02899vv07 La Policlinique mƩdicale universitaire Polyclinic Medical University'),
(94484, 'https://ror.org/03mc0m715', 'ro', 1, 'https://ror.org/03mc0m715 Advisory Board for Research, Development and Innovation Colegiul Consultativ pentru Cercetare-Dezvoltare şi Inovare'),
(94485, 'https://ror.org/04r3m2882', 'en', 1, 'https://ror.org/04r3m2882 Southern University and Agricultural and Mechanical College'),
(94486, 'https://ror.org/05eq3gw79', 'cs', 1, 'https://ror.org/05eq3gw79 Agricultural Research, Ltd. Agricultural Research, Ltd. (Czechia) Zemědělský výzkum,spol. s r.o.'),
(94487, 'https://ror.org/01gsy1c54', 'en', 1, 'https://ror.org/01gsy1c54 Naval Aerospace Medical Research Laboratory'),
(94488, 'https://ror.org/04dj2za52', 'en', 1, 'https://ror.org/04dj2za52 Africa University'),
(94489, 'https://ror.org/051t1q308', 'en', 0, 'https://ror.org/051t1q308 Institute of Intelligent Systems for Automation Istituto di Studi sui Sistemi Intelligenti per l''Automazione'),
(94490, 'https://ror.org/006pyvd89', 'en', 1, 'https://ror.org/006pyvd89 Arkansas State University UniversitĆ© d''Ɖtat de l''arkansas'),
(94491, 'https://ror.org/03be73j71', 'en', 1, 'https://ror.org/03be73j71 St. John Bosco College of Education'),
(94492, 'https://ror.org/007x3c094', 'fr', 1, 'https://ror.org/007x3c094 DƩlƩgation Paris-Villejuif-03'),
(94493, 'https://ror.org/034np8920', 'fr', 1, 'https://ror.org/034np8920 UniversitƩ de Ouahigouya'),
(94494, 'https://ror.org/05m88q091', 'fr', 1, 'https://ror.org/05m88q091 Institut de Recherche en Sciences de la SantƩ'),
(94495, 'https://ror.org/01w6z0f95', 'en', 1, 'https://ror.org/01w6z0f95 Menorah Medical Center'),
(94496, 'https://ror.org/0507j3z22', 'en', 1, 'https://ror.org/0507j3z22 Quantinuum Quantinuum (United Kingdom)'),
(94497, 'https://ror.org/02zpvhb36', 'es', 1, 'https://ror.org/02zpvhb36 Universidad Tecnológica de Jalisco'),
(94498, 'https://ror.org/04hsa7a08', 'en', 1, 'https://ror.org/04hsa7a08 Gƶttingen Academy of Sciences and Humanities NiedersƤchsische Akademie der Wissenschaften zu Gƶttingen'),
(94499, 'https://ror.org/04dkjk636', 'es', 1, 'https://ror.org/04dkjk636 Universidad Tecnológica de San Juan del Río'),
(94500, 'https://ror.org/03q6t4s11', 'en', 1, 'https://ror.org/03q6t4s11 Presbyterian Women''s College of Education');
INSERT INTO `rors` VALUES
(94501, 'https://ror.org/01vnn4t89', 'fr', 0, 'https://ror.org/01vnn4t89 Laboratoire de Statistique ThƩorique et AppliquƩe'),
(94502, 'https://ror.org/05qhvy459', 'sv', 1, 'https://ror.org/05qhvy459 SprƄkbanken'),
(94503, 'https://ror.org/04vvy0t36', 'pl', 1, 'https://ror.org/04vvy0t36 Syntea'),
(94504, 'https://ror.org/04q1kbj36', 'fr', 1, 'https://ror.org/04q1kbj36 DƩlƩgation Normandie'),
(94505, 'https://ror.org/00p4n8p47', 'en', 1, 'https://ror.org/00p4n8p47 Presbyterian College of Education'),
(94506, 'https://ror.org/02tt2zf29', 'en', 1, 'https://ror.org/02tt2zf29 Centre de Ciència i Tecnologia Forestal de Catalunya Centre des Sciences et des Technologies Forestières de Catalogne Centro de Ciencia y Tecnología Forestal de Cataluña Forest Science and Technology Centre of Catalonia'),
(94507, 'https://ror.org/05e5yjs79', 'de', 1, 'https://ror.org/05e5yjs79 Schweizerisches Universitäres Institut für Traditionelle Chinesische Medizin'),
(94508, 'https://ror.org/05hk2rf18', 'en', 1, 'https://ror.org/05hk2rf18 Dongyang Red Cross Hospital äøœé˜³åø‚ēŗ¢ä¼šåŒ»é™¢'),
(94509, 'https://ror.org/05gjc4036', 'en', 1, 'https://ror.org/05gjc4036 Beijing Police College åŒ—äŗ¬č­¦åÆŸå­¦é™¢'),
(94510, 'https://ror.org/028nbcm46', 'en', 1, 'https://ror.org/028nbcm46 Schweizerisches Institut für Kunstwissenschaft Swiss Institute for Art Research'),
(94511, 'https://ror.org/04w3ppj64', 'nl', 1, 'https://ror.org/04w3ppj64 Onderwijsraad'),
(94512, 'https://ror.org/02f3v7194', 'en', 1, 'https://ror.org/02f3v7194 Constructor Institute'),
(94513, 'https://ror.org/05sz45x40', 'en', 1, 'https://ror.org/05sz45x40 Queensland Department of the Premier and Cabinet'),
(94514, 'https://ror.org/00axme198', 'sv', 1, 'https://ror.org/00axme198 Nordregio'),
(94515, 'https://ror.org/01raz2h88', 'fr', 1, 'https://ror.org/01raz2h88 UniversitƩ Thomas SANKARA'),
(94516, 'https://ror.org/04ze6rb18', 'en', 1, 'https://ror.org/04ze6rb18 University of Zimbabwe'),
(94517, 'https://ror.org/05r1hax23', 'en', 1, 'https://ror.org/05r1hax23 Armed Forces Hospital Southern Region مستؓفى Ų§Ł„Ł‚ŁˆŲ§ŲŖ المسلحة ŲØŲ§Ł„Ų¬Ł†ŁˆŲØ'),
(94518, 'https://ror.org/042t83k43', 'fr', 1, 'https://ror.org/042t83k43 DƩlƩgation Midi PyrƩnƩes'),
(94519, 'https://ror.org/004vxz697', 'pt', 1, 'https://ror.org/004vxz697 Faculdade Católica de VÔrzea Grande'),
(94520, 'https://ror.org/01npab275', 'es', 1, 'https://ror.org/01npab275 Universidad Autónoma del Carmen'),
(94521, 'https://ror.org/05ee96150', 'en', 1, 'https://ror.org/05ee96150 Institut suisse de droit comparé Istituto svizzero di diritto comparato Schweizerische Institut für Rechtsvergleichung Swiss Institute of Comparative Law'),
(94522, 'https://ror.org/039fjjj43', 'cs', 1, 'https://ror.org/039fjjj43 Zlín Region Zlínský kraj'),
(94523, 'https://ror.org/04zrkn810', 'en', 1, 'https://ror.org/04zrkn810 Agency for the Cooperation of Energy Regulators'),
(94524, 'https://ror.org/01y4fs673', 'en', 1, 'https://ror.org/01y4fs673 Soft Imaging LLC Soft Imaging LLC (United States)'),
(94525, 'https://ror.org/00p0app75', 'es', 1, 'https://ror.org/00p0app75 Observatorio CientĆ­fico Comercio Interior'),
(94526, 'https://ror.org/00412ts95', 'en', 1, 'https://ror.org/00412ts95 Children''s Hospital of Los Angeles'),
(94527, 'https://ror.org/04tjqa790', 'fr', 1, 'https://ror.org/04tjqa790 Institut SYMLOG de France'),
(94528, 'https://ror.org/0431j1t39', 'en', 1, 'https://ror.org/0431j1t39 University of Iowa Health Care'),
(94529, 'https://ror.org/03jqp8097', 'fr', 1, 'https://ror.org/03jqp8097 Matériaux Polymères Interfaces - Environnement Marin'),
(94530, 'https://ror.org/041agrq44', 'no_lang_code', 1, 'https://ror.org/041agrq44 Eerste Kamer der Staten-Generaal Senate'),
(94531, 'https://ror.org/02eaafc18', 'en', 1, 'https://ror.org/02eaafc18 Ege Universiteti Ege University Ege Üniversitesi'),
(94532, 'https://ror.org/004h88r69', 'fr', 1, 'https://ror.org/004h88r69 Fondation Leenaards'),
(94533, 'https://ror.org/03xfh2n14', 'sv', 1, 'https://ror.org/03xfh2n14 SprƄkbanken Text'),
(94534, 'https://ror.org/01h4pzb37', 'de', 1, 'https://ror.org/01h4pzb37 Hochschulinstitut Schaffhausen'),
(94535, 'https://ror.org/02g6ksr28', 'en', 1, 'https://ror.org/02g6ksr28 ResearchConcepts io GmbH ResearchConcepts io GmbH (Germany)'),
(94536, 'https://ror.org/01wfb3668', 'ca', 1, 'https://ror.org/01wfb3668 Biodiversity Research Institute of the Universiy of Barcelona Institut de Recerca de la Biodiversitat de la Universitat de Barcelona Instituto de Investigación de la Biodiversidad de la Universidad de Barcelona'),
(94537, 'https://ror.org/024779x77', 'no_lang_code', 0, 'https://ror.org/024779x77 Cambridge Quantum Computing (United Kingdom)'),
(94538, 'https://ror.org/021xhya68', 'en', 1, 'https://ror.org/021xhya68 Madan Bhandari University of Science and Technology मदन ą¤­ą¤£ą„ą¤”ą¤¾ą¤°ą„€ ą¤¬ą¤æą¤œą„ą¤žą¤¾ą¤Ø तऄा ą¤Ŗą„ą¤°ą¤¬ą¤æą¤§ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤¬ą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(94539, 'https://ror.org/017ewzp43', 'en', 1, 'https://ror.org/017ewzp43 Association Of Research Organizations'),
(94540, 'https://ror.org/03enb1k33', 'en', 1, 'https://ror.org/03enb1k33 Cambodian University for Specialties įžŸįž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžÆįž€įž‘įŸįžŸįž€įž˜įŸ’įž–įž»įž‡įž¶'),
(94541, 'https://ror.org/058cpk191', 'en', 1, 'https://ror.org/058cpk191 Komenda College of Education'),
(94542, 'https://ror.org/05rsdqb94', 'en', 1, 'https://ror.org/05rsdqb94 Mercy Hospital'),
(94543, 'https://ror.org/00weppy16', 'en', 1, 'https://ror.org/00weppy16 FORS – Centre de compĆ©tences Suisse en sciences sociales FORS – Schweizer Kompetenzzentrum Sozialwissenschaften FORS – Swiss Centre of Expertise in the Social Sciences'),
(94544, 'https://ror.org/043h32y24', 'no_lang_code', 1, 'https://ror.org/043h32y24 LG (China)'),
(94545, 'https://ror.org/02egw6w85', 'de', 1, 'https://ror.org/02egw6w85 Vienna Hospital Association Wiener Krankenanstaltenverbund'),
(94546, 'https://ror.org/03dy4eg44', 'en', 1, 'https://ror.org/03dy4eg44 Korea Semiconductor Research Consortium'),
(94547, 'https://ror.org/00jydkt05', 'en', 1, 'https://ror.org/00jydkt05 Fedorovsky Polar State University Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ УчрежГение Š’Ń‹ŃŃˆŠµŠ³Š¾ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ā«Š·Š°ŠæŠ¾Š»ŃŃ€Š½Ń‹Š¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет Им. Š.М. ФеГоровского»'),
(94548, 'https://ror.org/043s0fn12', 'en', 1, 'https://ror.org/043s0fn12 The Ichiro Kanehara Foundation for the Promotion of Medical Sciences and Medical Care ē›Šč²”å›£ę³•äŗŗé‡‘åŽŸäø€éƒŽčØ˜åæµåŒ»å­¦åŒ»ē™‚ęŒÆčˆˆč²”å›£'),
(94549, 'https://ror.org/01s1a1r54', 'en', 1, 'https://ror.org/01s1a1r54 "Ion Ionescu de la Brad" Iasi University of Life Sciences'),
(94550, 'https://ror.org/0461ms248', 'en', 1, 'https://ror.org/0461ms248 Innovative Ghar Nepal'),
(94551, 'https://ror.org/05vnsdr62', 'en', 1, 'https://ror.org/05vnsdr62 Tumu College of Education'),
(94552, 'https://ror.org/05s056h84', 'pt', 1, 'https://ror.org/05s056h84 Faculdade Católica de CuiabÔ'),
(94553, 'https://ror.org/05jyzx602', 'en', 1, 'https://ror.org/05jyzx602 BC Centre for Disease Control'),
(94554, 'https://ror.org/01cbd4k69', 'cs', 1, 'https://ror.org/01cbd4k69 Kraj Vysočina Vysočina Region'),
(94555, 'https://ror.org/02z8bdw71', 'en', 1, 'https://ror.org/02z8bdw71 AMBIS vysokÔ Ŕkola, a.s. College of Regional Development and Banking Institute - AMBIS'),
(94556, 'https://ror.org/05hvkkr89', 'en', 1, 'https://ror.org/05hvkkr89 Ghana Communication Technology University'),
(94557, 'https://ror.org/03m8r7k33', 'fr', 1, 'https://ror.org/03m8r7k33 HƓpital d''instruction des ArmƩes Desgenettes'),
(94558, 'https://ror.org/01epydt92', 'en', 1, 'https://ror.org/01epydt92 Open Science NL'),
(94559, 'https://ror.org/04ka9j141', 'en', 1, 'https://ror.org/04ka9j141 Nusrat Jahan Ahmadiyya College of Education'),
(94560, 'https://ror.org/04z0np064', 'en', 1, 'https://ror.org/04z0np064 Conseil Arabe pour les Sciences Sociales The Arab Council for the Social Sciences المجلس Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(94561, 'https://ror.org/01y434850', 'en', 1, 'https://ror.org/01y434850 Abetifi Presbyterian College of Education'),
(94562, 'https://ror.org/01d02zv78', 'en', 1, 'https://ror.org/01d02zv78 Australian Institute of Botanical Science'),
(94563, 'https://ror.org/02hrqje66', 'en', 1, 'https://ror.org/02hrqje66 University of Koudougou UniversitƩ Norbert Zongo'),
(94564, 'https://ror.org/052pnfc88', 'fr', 1, 'https://ror.org/052pnfc88 GaNeXT'),
(94565, 'https://ror.org/01sejnw50', 'en', 1, 'https://ror.org/01sejnw50 School of Management Fribourg'),
(94566, 'https://ror.org/02jj0ar17', 'pt', 1, 'https://ror.org/02jj0ar17 União das Faculdades Católicas de Mato Grosso'),
(94567, 'https://ror.org/02gv1gw80', 'en', 1, 'https://ror.org/02gv1gw80 Midlands State University'),
(94568, 'https://ror.org/03nyfz802', 'en', 1, 'https://ror.org/03nyfz802 Accra College of Education'),
(94569, 'https://ror.org/04eg25g76', 'fr', 1, 'https://ror.org/04eg25g76 Laboratoire de Conception et d''Intégration des Systèmes'),
(94570, 'https://ror.org/05wy2cj05', 'fr', 1, 'https://ror.org/05wy2cj05 Laboratoire architecture anthropologie'),
(94571, 'https://ror.org/03p6ach34', 'fr', 1, 'https://ror.org/03p6ach34 Structure FƩdƩrative de Recherche Bonamy'),
(94572, 'https://ror.org/02spbd534', 'no_lang_code', 1, 'https://ror.org/02spbd534 Thales Alenia Space Thales Alenia Space (Italy)'),
(94573, 'https://ror.org/044qmqe70', 'en', 1, 'https://ror.org/044qmqe70 Institut za bioloÅ”ka istraživanja ā€žSiniÅ”a Stanković" Institute for Biological Research ā€œSiniÅ”a StankoviÄ‡ā€ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за биолошка ŠøŃŃ‚Ń€Š°Š¶ŠøŠ²Š°ŃšŠ° ā€žŠ”ŠøŠ½ŠøŃˆŠ° Дтанковић"'),
(94574, 'https://ror.org/03cejhk28', 'fr', 1, 'https://ror.org/03cejhk28 B-com Institute of Research and Technology Institut de Recherche Technologique B-com'),
(94575, 'https://ror.org/05481me13', 'fr', 1, 'https://ror.org/05481me13 AlgoSolis'),
(94576, 'https://ror.org/00sxf8635', 'en', 1, 'https://ror.org/00sxf8635 NSWC Port Hueneme Division'),
(94577, 'https://ror.org/05hqfh882', 'fr', 1, 'https://ror.org/05hqfh882 Nutrition Obesity & Risk of Thrombosis Nutrition, ObƩsitƩ et Risque Thrombotique'),
(94578, 'https://ror.org/03qt6f440', 'en', 1, 'https://ror.org/03qt6f440 LINK - Laboratory for Innovative Key Materials and Structures'),
(94579, 'https://ror.org/023h4a821', 'fr', 1, 'https://ror.org/023h4a821 Institut d’EpidĆ©miologie et de Neurologie Tropicale'),
(94580, 'https://ror.org/05n62pb30', 'fr', 1, 'https://ror.org/05n62pb30 Catholic University of Rennes Institut catholique de rennes'),
(94581, 'https://ror.org/02a76a219', 'es', 1, 'https://ror.org/02a76a219 Fundación Almanaque Azul'),
(94582, 'https://ror.org/03taa9n66', 'fr', 1, 'https://ror.org/03taa9n66 Institut de MicroƩlectronique, ElectromagnƩtisme et Photonique'),
(94583, 'https://ror.org/04d73z393', 'fr', 0, 'https://ror.org/04d73z393 Institut des Maladies MƩtaboliques et Cardiovasculaires Institute of Cardiovascular and Metabolic Diseases'),
(94584, 'https://ror.org/02j7zpn48', 'fr', 1, 'https://ror.org/02j7zpn48 BibliothĆØques sans frontiĆØres Libraries without Borders'),
(94585, 'https://ror.org/03zftke13', 'pt', 1, 'https://ror.org/03zftke13 Faculdade EstƔcio de Alagoas'),
(94586, 'https://ror.org/02vas3094', 'no_lang_code', 1, 'https://ror.org/02vas3094 NXP (France)'),
(94587, 'https://ror.org/01741jv66', 'en', 1, 'https://ror.org/01741jv66 Institute of Physics, Bhubaneshwar'),
(94588, 'https://ror.org/00f5trr09', 'en', 1, 'https://ror.org/00f5trr09 National Center for Public Health Informatics'),
(94589, 'https://ror.org/04ynvm727', 'fr', 1, 'https://ror.org/04ynvm727 Groupe d’Etude des CĆ©tacĆ©s du Cotentin The Cotentin Cetacean Study Group'),
(94590, 'https://ror.org/04ahb2147', 'fr', 1, 'https://ror.org/04ahb2147 Centre de recherche franƧais Ơ JƩrusalem'),
(94591, 'https://ror.org/00dcrfk74', 'fr', 1, 'https://ror.org/00dcrfk74 ARMINES'),
(94592, 'https://ror.org/00ts9pr54', 'fr', 1, 'https://ror.org/00ts9pr54 Montpellier GenomiX'),
(94593, 'https://ror.org/00s3ahr75', 'fr', 1, 'https://ror.org/00s3ahr75 Cooperative Internationale de Recherche et d’Action en matiĆØre de Communication International Cooperative for Research and Action on the Field of Communication'),
(94594, 'https://ror.org/00136g547', 'en', 1, 'https://ror.org/00136g547 Fractionnation of AgroResources and Environment Fractionnement des AgroRessources et Environnement'),
(94595, 'https://ror.org/01me7wg25', 'en', 1, 'https://ror.org/01me7wg25 Center for Risk-Based Community Resilience Planning'),
(94596, 'https://ror.org/04rje0916', 'fr', 1, 'https://ror.org/04rje0916 Groupe d''Ɖtude sur les GĆ©omatĆ©riaux et ENvironnements AnthropisĆ©s'),
(94597, 'https://ror.org/03dg0f179', 'fr', 1, 'https://ror.org/03dg0f179 EPF - Graduate School of Engineering EPF - Ɖcole d''ingĆ©nieurs'),
(94598, 'https://ror.org/0508wny29', 'en', 1, 'https://ror.org/0508wny29 Economic & Social Sciences, Health Systems & Medical Informatics Sciences Economiques & Sociales de la SantƩ & Traitement de l''Information MƩdicale'),
(94599, 'https://ror.org/01txfgz53', 'en', 1, 'https://ror.org/01txfgz53 Center for Statistics and Applications in Forensic Evidence'),
(94600, 'https://ror.org/02qha4q93', 'no_lang_code', 0, 'https://ror.org/02qha4q93 Finmeccanica (United Kingdom)'),
(94601, 'https://ror.org/0425gsx30', 'en', 1, 'https://ror.org/0425gsx30 Protein Information Resource'),
(94602, 'https://ror.org/03d54td73', 'en', 1, 'https://ror.org/03d54td73 Air-Lock Air-Lock (United States)'),
(94603, 'https://ror.org/04kv7c795', 'fr', 1, 'https://ror.org/04kv7c795 DƩlƩgation RƩgionale Est'),
(94604, 'https://ror.org/01dt8cc51', 'en', 0, 'https://ror.org/01dt8cc51 Institut für Forschungsinformation und Qualitätssicherung Institute for Research Information and Quality Assurance'),
(94605, 'https://ror.org/000tdrn36', 'fr', 1, 'https://ror.org/000tdrn36 Centre Interuniversitaire de MicroElectronique et Nanotechnologies'),
(94606, 'https://ror.org/01ngpvg12', 'de', 1, 'https://ror.org/01ngpvg12 Max Planck Institute for Sustainable Materials Max-Planck-Institut für Nachhaltige Materialien'),
(94607, 'https://ror.org/00xm3h672', 'en', 1, 'https://ror.org/00xm3h672 NHS Commissioning Board NHS England'),
(94608, 'https://ror.org/03jfptm11', 'fr', 1, 'https://ror.org/03jfptm11 Institut des Vaisseaux et du Sang Vessels and Blood Institute'),
(94609, 'https://ror.org/03hwx9w41', 'en', 1, 'https://ror.org/03hwx9w41 Oxford University Clinical Research Unit Nepal'),
(94610, 'https://ror.org/02wgpwk78', 'fr', 1, 'https://ror.org/02wgpwk78 Agence Nationale des Titres SƩcurisƩs National Safe Securities Agency'),
(94611, 'https://ror.org/01jbdvx51', 'fr', 1, 'https://ror.org/01jbdvx51 Conseil International pour l''Information Scientifique et Technique International Council for Scientific and Technical Information'),
(94612, 'https://ror.org/01jq57122', 'fr', 1, 'https://ror.org/01jq57122 Ɖcole Nationale SupĆ©rieure d''Architecture de Nantes'),
(94613, 'https://ror.org/048289s82', 'fr', 1, 'https://ror.org/048289s82 Architecture, Milieu, Paysage'),
(94614, 'https://ror.org/008bf9746', 'fr', 1, 'https://ror.org/008bf9746 Centre d''Ɖtudes et de Documentation Ɖconomiques, Juridiques et sociales'),
(94615, 'https://ror.org/00fp8jg78', 'id', 1, 'https://ror.org/00fp8jg78 Universitas Mega Buana Palopo'),
(94616, 'https://ror.org/041bgem97', 'en', 1, 'https://ror.org/041bgem97 Alte University'),
(94617, 'https://ror.org/0009eec40', 'fr', 1, 'https://ror.org/0009eec40 Laboratoire de Linguistique de Nantes'),
(94618, 'https://ror.org/00vgp1308', 'en', 1, 'https://ror.org/00vgp1308 Banner MD Anderson Cancer Center at Banner McKee Medical Center'),
(94619, 'https://ror.org/01pb8rp31', 'en', 1, 'https://ror.org/01pb8rp31 Issyk-Kul State University Š˜ŃŃŃ‹Šŗ-Кульский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(94620, 'https://ror.org/05mqemx33', 'fr', 1, 'https://ror.org/05mqemx33 Laboratoire de Traitement de l''Information MƩdicale Laboratory of Medical Information Processing'),
(94621, 'https://ror.org/02rvv6x76', 'fr', 1, 'https://ror.org/02rvv6x76 Institut d''Etudes AvancƩes Paris Paris Institute for Advanced Study'),
(94622, 'https://ror.org/013dgcw28', 'fr', 1, 'https://ror.org/013dgcw28 Engarouines Observatory Observatoire des Engarouines'),
(94623, 'https://ror.org/02tg88m31', 'en', 1, 'https://ror.org/02tg88m31 Translational Research in Gene Therapy'),
(94624, 'https://ror.org/013ym9476', 'fr', 1, 'https://ror.org/013ym9476 Association Internationale de GĆ©omagnĆ©tisme et d’AĆ©ronomie International Association of Geomagnetism and Aeronomy'),
(94625, 'https://ror.org/04q4vzc07', 'fr', 1, 'https://ror.org/04q4vzc07 Institut MƩmoires de l''Edition Contemporaine Institute for Contemporary Publishing Archives'),
(94626, 'https://ror.org/02cc1pn48', 'en', 1, 'https://ror.org/02cc1pn48 Connected Farms Pty Ltd. Connected Farms Pty Ltd. (Australia)'),
(94627, 'https://ror.org/00pz29t13', 'fr', 1, 'https://ror.org/00pz29t13 GESTE - Gestion Territoriale de l''Eau et de l''Environnement'),
(94628, 'https://ror.org/03sm1ej59', 'en', 1, 'https://ror.org/03sm1ej59 Cancer Registry of Norway'),
(94629, 'https://ror.org/03yz3tz18', 'fr', 1, 'https://ror.org/03yz3tz18 Direction GƩnƩrale DƩlƩguƩe aux Ressources'),
(94630, 'https://ror.org/018sz1a42', 'fr', 1, 'https://ror.org/018sz1a42 Centre d''Innovation des Technologies sans Contact Centre of Innovations in Contactless Technologies'),
(94631, 'https://ror.org/00zmdjj30', 'fr', 1, 'https://ror.org/00zmdjj30 Centre d''Ć©tudes franco-russe de Moscou Центр франко-российских исслеГований'),
(94632, 'https://ror.org/04e3d6y73', 'fr', 1, 'https://ror.org/04e3d6y73 Centre International de Rencontres MathƩmatiques'),
(94633, 'https://ror.org/00t46pq88', 'en', 1, 'https://ror.org/00t46pq88 Marathwada Mitra Mandal''s College of Pharmacy'),
(94634, 'https://ror.org/0026vdt21', 'fr', 0, 'https://ror.org/0026vdt21 Biologie et GƩnƩtique des Interactions Plante-Parasite Biology and Genetics of Plant-Pathogen Interactions'),
(94635, 'https://ror.org/01mywhy53', 'en', 1, 'https://ror.org/01mywhy53 Vietnamese Academy of Forest Sciences'),
(94636, 'https://ror.org/044fxjq88', 'en', 1, 'https://ror.org/044fxjq88 Saint Joseph University UniversitĆ© Saint-Joseph ÕÕøÖ‚Ö€Õ¢ ŌŗÕøÕ¦Õ„Ö†Õ« Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚ŲÆŁŠŲ³ يوسف'),
(94637, 'https://ror.org/04az3m568', 'en', 1, 'https://ror.org/04az3m568 Integrated Genetic Approaches in Therapeutic Discovery for Rare Diseases'),
(94638, 'https://ror.org/02xwvzv71', 'fr', 0, 'https://ror.org/02xwvzv71 French Institute of Science and Technology for Transport, Spatial Planning, Development and Networks Institut FranƧais des Sciences et Technologies des Transports, de l''AmƩnagement et des RƩseaux'),
(94639, 'https://ror.org/03qbxk467', 'id', 1, 'https://ror.org/03qbxk467 Sekolah Tinggi Agama Buddha Negeri Sriwijaya Tangerang Banten'),
(94640, 'https://ror.org/01f5p1809', 'en', 1, 'https://ror.org/01f5p1809 Osol Aldeen University College ŁƒŁ„ŁŠŲ© Ų£ŲµŁˆŁ„ Ų§Ł„ŲÆŁŠŁ† الجامعة'),
(94641, 'https://ror.org/009frb846', 'fr', 1, 'https://ror.org/009frb846 EntrepƓts, ReprƩsentation et IngƩnierie des Connaissances'),
(94642, 'https://ror.org/05vbaw293', 'fr', 0, 'https://ror.org/05vbaw293 CommunautƩ d''universitƩs et Ʃtablissements d''Aquitaine Community of Universities and Higher Education Institutions of Aquitaine'),
(94643, 'https://ror.org/01p4g5p84', 'fr', 1, 'https://ror.org/01p4g5p84 GƩographie de l''environnement'),
(94644, 'https://ror.org/00jb9vg53', 'es', 1, 'https://ror.org/00jb9vg53 Universidad del Valle University of Valle'),
(94645, 'https://ror.org/01zwq9p88', 'es', 1, 'https://ror.org/01zwq9p88 Universidad de Ixtlahuaca CUI'),
(94646, 'https://ror.org/016vxbe23', 'fr', 1, 'https://ror.org/016vxbe23 Zone Atelier Moselle'),
(94647, 'https://ror.org/029519s87', 'en', 1, 'https://ror.org/029519s87 NUWC Keyport Division'),
(94648, 'https://ror.org/04damed73', 'fr', 1, 'https://ror.org/04damed73 Laboratoire des Systèmes Mécaniques et d''Ingénierie Simultanée Laboratory of Mechanical Systems and Concurrent Engineering'),
(94649, 'https://ror.org/000bbyx17', 'fr', 1, 'https://ror.org/000bbyx17 Bordeaux Plurithematic Clinical Research Center Centre d''Investigation Clinique PlurithƩmatique de Bordeaux'),
(94650, 'https://ror.org/047p7mf25', 'fr', 1, 'https://ror.org/047p7mf25 Institut Carnot PolyNat'),
(94651, 'https://ror.org/034bena10', 'fr', 1, 'https://ror.org/034bena10 Centre d''ImmunophƩnomique'),
(94652, 'https://ror.org/00x76wb44', 'fr', 0, 'https://ror.org/00x76wb44 Centre de Recherche Jean Pierre Aubert Jean-Pierre Aubert Research Center'),
(94653, 'https://ror.org/013m8h627', 'en', 1, 'https://ror.org/013m8h627 methodS in Patient-centered outcomes and HEalth ResEarch'),
(94654, 'https://ror.org/04h6n9433', 'fr', 1, 'https://ror.org/04h6n9433 Laboratoire de Recherche en Nanosciences'),
(94655, 'https://ror.org/03xsqa235', 'fr', 1, 'https://ror.org/03xsqa235 Institut SupƩrieur d''Agriculture RhƓne-Alpes'),
(94656, 'https://ror.org/01pxcyx49', 'fr', 1, 'https://ror.org/01pxcyx49 PƓle de Recherche Francophonies, Interculturel, Communication, Sociolinguistique'),
(94657, 'https://ror.org/00801j392', 'fr', 0, 'https://ror.org/00801j392 Institut des sciences de la communication Institute for Communication Sciences'),
(94658, 'https://ror.org/01qfjp710', 'fr', 1, 'https://ror.org/01qfjp710 Lasers, Plasmas et ProcƩdƩs Photoniques'),
(94659, 'https://ror.org/04v668f18', 'fr', 1, 'https://ror.org/04v668f18 Institut des MatƩriaux Poreux de Paris'),
(94660, 'https://ror.org/030ym6p85', 'fr', 0, 'https://ror.org/030ym6p85 Laboratoire de Physique ThĆ©orique d’Orsay Laboratory of Theoretical Physics'),
(94661, 'https://ror.org/00zh20c98', 'en', 1, 'https://ror.org/00zh20c98 Ministry of Agrarian Policy and Food ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ аграрної політики та ŠæŃ€Š¾Š“Š¾Š²Š¾Š»ŃŒŃŃ‚Š²Š°'),
(94662, 'https://ror.org/025sfbe73', 'en', 1, 'https://ror.org/025sfbe73 Theories and Approaches of Genomic Complexity'),
(94663, 'https://ror.org/04ya3ke98', 'en', 1, 'https://ror.org/04ya3ke98 Shri Gurudeo Ayurved College'),
(94664, 'https://ror.org/04rfxk768', 'fr', 1, 'https://ror.org/04rfxk768 Laboratoire de Neurosciences ExpƩrimentales et Cliniques'),
(94665, 'https://ror.org/02hydzw41', 'en', 1, 'https://ror.org/02hydzw41 Ogun State Ministry of Health'),
(94666, 'https://ror.org/04cfjax51', 'fr', 1, 'https://ror.org/04cfjax51 Fondation Lenval Lenval Foundation'),
(94667, 'https://ror.org/04k031t90', 'fr', 1, 'https://ror.org/04k031t90 Ɖcole Nationale VĆ©tĆ©rinaire d''Alfort'),
(94668, 'https://ror.org/03hxp6v65', 'en', 1, 'https://ror.org/03hxp6v65 Laboratory of Nanotechnology Instrumentation and Optics'),
(94669, 'https://ror.org/02gn4cf81', 'fr', 1, 'https://ror.org/02gn4cf81 Linguistique IngƩnierie et Didactique des Langues'),
(94670, 'https://ror.org/00nxdn656', 'en', 1, 'https://ror.org/00nxdn656 Baden State Library Badische Landesbibliothek'),
(94671, 'https://ror.org/04rp2mn26', 'fr', 1, 'https://ror.org/04rp2mn26 Institut de Recherche sur la Biologie de l''Insecte UMR 7261'),
(94672, 'https://ror.org/03qpa4m87', 'en', 1, 'https://ror.org/03qpa4m87 Enchi College of Education'),
(94673, 'https://ror.org/0370nxv28', 'fr', 1, 'https://ror.org/0370nxv28 Academie Polonaise des Sciences - Centre Scientifique Ć  Paris Polish Academy of Sciences - Scientific Station in Paris'),
(94674, 'https://ror.org/05exke706', 'fr', 0, 'https://ror.org/05exke706 Laboratoire Biologie Ơ Grande Ɖchelle Large Scale Biology Laboratory'),
(94675, 'https://ror.org/04cyqkg02', 'en', 1, 'https://ror.org/04cyqkg02 Baku Research Institute'),
(94676, 'https://ror.org/040r1a296', 'en', 1, 'https://ror.org/040r1a296 Evidence In Motion'),
(94677, 'https://ror.org/01pf7nz88', 'en', 0, 'https://ror.org/01pf7nz88 Agence FranƧaise Pour la BiodiversitƩ French National Agency for Water and Aquatic Environments'),
(94678, 'https://ror.org/00q8h6763', 'fr', 1, 'https://ror.org/00q8h6763 Institut Pierre-Gilles de Gennes pour la Microfluidique Pierre-Gilles de Gennes Institute'),
(94679, 'https://ror.org/01m83bk32', 'fr', 1, 'https://ror.org/01m83bk32 Laboratoire d''électronique, systèmes de communication et microsystèmes'),
(94680, 'https://ror.org/033x0mt18', 'fr', 0, 'https://ror.org/033x0mt18 Fonctionnement et Conduite des Systèmes de Culture Tropicaux et Méditerranéens Tropical and Mediterranean Cropping System Functioning and Management'),
(94681, 'https://ror.org/04fc8dp24', 'fr', 1, 'https://ror.org/04fc8dp24 GƩnƩtique MƩdicale & GƩnomique Fonctionelle Medical Genetics & Functional Genomics'),
(94682, 'https://ror.org/051sjmb83', 'fr', 1, 'https://ror.org/051sjmb83 Centre de Recherche Magellan'),
(94683, 'https://ror.org/04d3p2m17', 'fr', 1, 'https://ror.org/04d3p2m17 Ion Channel and Synaptic Neurobiology Laboratory UnitƩ de Neurobiologie des canaux Ioniques et de la Synapse'),
(94684, 'https://ror.org/00k2m1311', 'fr', 1, 'https://ror.org/00k2m1311 Centre de recherche Droit et territoire'),
(94685, 'https://ror.org/03z69yv22', 'fr', 0, 'https://ror.org/03z69yv22 Foie, MƩtabolisme, Cancer Liver, Metabolisms and Cancer'),
(94686, 'https://ror.org/0112mx960', 'en', 1, 'https://ror.org/0112mx960 Tokyo Institute of Technology ę±äŗ¬å·„ę„­å¤§å­¦'),
(94687, 'https://ror.org/05mv3tj33', 'fr', 1, 'https://ror.org/05mv3tj33 Observatoire des Sciences de l''Univers de la RƩunion'),
(94688, 'https://ror.org/028cp7y71', 'fr', 1, 'https://ror.org/028cp7y71 Groupe de Recherche en Psychologie Sociale'),
(94689, 'https://ror.org/05r25mc45', 'fr', 1, 'https://ror.org/05r25mc45 Plateforme d''Imagerie BiomƩdicale'),
(94690, 'https://ror.org/04f7wcr96', 'fr', 1, 'https://ror.org/04f7wcr96 Navigable Waterways of France Voies navigables de France'),
(94691, 'https://ror.org/04yrq0159', 'en', 1, 'https://ror.org/04yrq0159 NSWC Dahlgren Division'),
(94692, 'https://ror.org/04x3ne739', 'en', 1, 'https://ror.org/04x3ne739 Galala University Ų¬Ų§Ł…Ų¹Ų© الجلالة'),
(94693, 'https://ror.org/04j0rnj48', 'en', 1, 'https://ror.org/04j0rnj48 Mingachevir State University'),
(94694, 'https://ror.org/00axatv03', 'fr', 1, 'https://ror.org/00axatv03 Centre Gilles-Gaston Granger'),
(94695, 'https://ror.org/02ws75w34', 'en', 1, 'https://ror.org/02ws75w34 Nepal Mountain Academy'),
(94696, 'https://ror.org/012ba0982', 'en', 1, 'https://ror.org/012ba0982 NSWC Indian Head'),
(94697, 'https://ror.org/05rmjk207', 'fr', 1, 'https://ror.org/05rmjk207 Tempora'),
(94698, 'https://ror.org/013xzrn47', 'fr', 0, 'https://ror.org/013xzrn47 Aging and Chronic Diseases Epidemiological and Public Health Approaches Vieillissement et Maladies Chroniques. Approches EpidƩmiologiques et de santƩ publique'),
(94699, 'https://ror.org/03m0zs870', 'fr', 1, 'https://ror.org/03m0zs870 Institut Cellule Souche et Cerveau Stem-Cell and Brain Research Institute'),
(94700, 'https://ror.org/001gq4617', 'ca', 1, 'https://ror.org/001gq4617 AgĆØncia de Qualitat UniversitĆ ria de les Illes Balears'),
(94701, 'https://ror.org/00mrcf172', 'pt', 1, 'https://ror.org/00mrcf172 Santa Casa de Montes Claros - Irmandade Nossa Senhora das MercĆŖs'),
(94702, 'https://ror.org/04zmms242', 'fr', 0, 'https://ror.org/04zmms242 Laboratoire de Biologie MolƩculaire des Eucaryotes Laboratory of Eukaryotic Molecular Biology'),
(94703, 'https://ror.org/02aj0kh94', 'fr', 0, 'https://ror.org/02aj0kh94 Joseph Fourier University UniversitƩ Joseph Fourier'),
(94704, 'https://ror.org/00nc5fj04', 'fr', 1, 'https://ror.org/00nc5fj04 BioSpectroscopie Translationnelle'),
(94705, 'https://ror.org/02m7axw05', 'en', 1, 'https://ror.org/02m7axw05 Japan Society for the Promotion of Science London'),
(94706, 'https://ror.org/021wv9p83', 'fr', 0, 'https://ror.org/021wv9p83 Ɖcole des MĆ©tiers de l’Environnement'),
(94707, 'https://ror.org/050tnz974', 'fr', 0, 'https://ror.org/050tnz974 Imagerie et StratƩgies ThƩrapeutiques des Pathologies CƩrƩbrales et Tumorales Imaging and Therapeutical Strategies in Cerebral and Tumoral Pathologies'),
(94708, 'https://ror.org/000p4dw82', 'es', 1, 'https://ror.org/000p4dw82 Hospital Universitario del Valle ESE'),
(94709, 'https://ror.org/02j76x288', 'en', 1, 'https://ror.org/02j76x288 Sacred Heart College of Lucena City, Inc.'),
(94710, 'https://ror.org/02vhxx141', 'no_lang_code', 1, 'https://ror.org/02vhxx141 Patan Hospital'),
(94711, 'https://ror.org/055nbmz93', 'fr', 1, 'https://ror.org/055nbmz93 Micro et NanomƩdecines translationnelles'),
(94712, 'https://ror.org/04z91ja70', 'en', 1, 'https://ror.org/04z91ja70 Flinders Microscopy and Microanalysis'),
(94713, 'https://ror.org/04n2m3398', 'fr', 1, 'https://ror.org/04n2m3398 Centre EuropƩen de Recherches et de Formation aux Arts Verriers European Center for Researches and Training in the Glass-Work'),
(94714, 'https://ror.org/04bjfe226', 'en', 1, 'https://ror.org/04bjfe226 Centurion Pharma Centurion Pharma (Turkey)'),
(94715, 'https://ror.org/00zmnkx60', 'es', 1, 'https://ror.org/00zmnkx60 Alicante Institute for Health and Biomedical Research Instituto de investigación sanitaria y biomédica de Alicante'),
(94716, 'https://ror.org/04a9z6x78', 'fr', 1, 'https://ror.org/04a9z6x78 Infections Cardiovasculaires Virales et inflammation en pathologie humaine'),
(94717, 'https://ror.org/0343fpq57', 'fr', 1, 'https://ror.org/0343fpq57 Chimie, Structures et PropriƩtƩs de BiomatƩriaux et d''Agents ThƩrapeutiques'),
(94718, 'https://ror.org/009b91528', 'fr', 1, 'https://ror.org/009b91528 Biologie MolƩculaire Structurale et Processus Infectieux'),
(94719, 'https://ror.org/04b9q5f39', 'fr', 1, 'https://ror.org/04b9q5f39 Laboratoire de SpectromƩtrie Ionique et MolƩculaire'),
(94720, 'https://ror.org/01dn7gg32', 'fr', 1, 'https://ror.org/01dn7gg32 Ɖcole EuropĆ©enne SupĆ©rieure de l''Image'),
(94721, 'https://ror.org/025b4c754', 'fr', 0, 'https://ror.org/025b4c754 Charles de Gaulle University Lille III Charles de Gaulle UniversitƩ de Lille III'),
(94722, 'https://ror.org/004v3m339', 'en', 1, 'https://ror.org/004v3m339 The First People''s Hospital of Guangyuan å¹æå…ƒåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(94723, 'https://ror.org/05j8sgr10', 'fr', 1, 'https://ror.org/05j8sgr10 Architecture Histoire Technique Territoire Patrimoine'),
(94724, 'https://ror.org/0086zww50', 'fr', 0, 'https://ror.org/0086zww50 Groupe de Recherche en Ɖconomie ThĆ©orique et AppliquĆ©e Research Group in Theoretical and Applied Economics'),
(94725, 'https://ror.org/02j05s068', 'fr', 1, 'https://ror.org/02j05s068 Institut du DƩveloppement Durable et des Relations Internationales Institute for Sustainable Development and International Relations'),
(94726, 'https://ror.org/012hpz460', 'fr', 0, 'https://ror.org/012hpz460 Health Technologies Technologies pour la SantƩ'),
(94727, 'https://ror.org/000axn811', 'en', 1, 'https://ror.org/000axn811 Audencia Business School'),
(94728, 'https://ror.org/056atnc19', 'fr', 1, 'https://ror.org/056atnc19 French National School for Advanced Studies in Design Ɖcole Nationale SupĆ©rieure de CrĆ©ation Industrielle'),
(94729, 'https://ror.org/016wdna72', 'fr', 1, 'https://ror.org/016wdna72 Centre de Recherche en Sciences et Technologies de l''Information et de la Communication'),
(94730, 'https://ror.org/017h2rd72', 'fr', 1, 'https://ror.org/017h2rd72 Higher Institute for Electronics and Digital Training Institut SupĆ©rieur de l''Ɖlectronique et du NumĆ©rique'),
(94731, 'https://ror.org/00hy22508', 'fr', 1, 'https://ror.org/00hy22508 DƩlƩgation Paris Michel-Ange'),
(94732, 'https://ror.org/059be4e97', 'no_lang_code', 1, 'https://ror.org/059be4e97 NXP (Netherlands)'),
(94733, 'https://ror.org/01pb9t810', 'es', 1, 'https://ror.org/01pb9t810 Universidad PolitƩcnica de Guanajuato'),
(94734, 'https://ror.org/00jsr1632', 'en', 1, 'https://ror.org/00jsr1632 University of Providence'),
(94735, 'https://ror.org/031sd2508', 'fr', 0, 'https://ror.org/031sd2508 Ecologie et Ecophysiologie ForestiĆØres Forest Ecology and Ecophysiology'),
(94736, 'https://ror.org/032tp8450', 'en', 1, 'https://ror.org/032tp8450 Alfalah University Alfalah universiteti الفلاح Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(94737, 'https://ror.org/03fbwjm33', 'en', 0, 'https://ror.org/03fbwjm33 Cancer Research Center'),
(94738, 'https://ror.org/030txnd05', 'fr', 1, 'https://ror.org/030txnd05 Ɖcole Navale'),
(94739, 'https://ror.org/02k9vew78', 'fr', 0, 'https://ror.org/02k9vew78 Nice Sophia Antipolis University UniversitƩ Nice Sophia Antipolis'),
(94740, 'https://ror.org/0589k3111', 'fr', 1, 'https://ror.org/0589k3111 DƩlƩgation Paris 11'),
(94741, 'https://ror.org/02jthx987', 'fr', 1, 'https://ror.org/02jthx987 Institut de Neurobiologie de la MƩditerranƩe'),
(94742, 'https://ror.org/0438wbg98', 'fr', 1, 'https://ror.org/0438wbg98 Organisation For Economic Co-Operation and Development Organisation de CoopƩration et de DƩveloppement Economiques'),
(94743, 'https://ror.org/03cjyj977', 'fr', 1, 'https://ror.org/03cjyj977 Chemistry for Life Sciences Chimie Biologique pour le Vivant'),
(94744, 'https://ror.org/05t8ct211', 'fr', 1, 'https://ror.org/05t8ct211 Climat, Environnement, Couplages et Incertitudes'),
(94745, 'https://ror.org/04msk6077', 'es', 1, 'https://ror.org/04msk6077 Universidad Tecnológica de Torreón'),
(94746, 'https://ror.org/050x42563', 'fr', 1, 'https://ror.org/050x42563 Microscopies, imageries et ressources analytiques en rƩgion Centre-Val de Loire'),
(94747, 'https://ror.org/01rfstj90', 'fr', 1, 'https://ror.org/01rfstj90 Institut thƩmatique GƩnƩtique, gƩnomique et bioinformatique'),
(94748, 'https://ror.org/04v41zn46', 'fr', 1, 'https://ror.org/04v41zn46 Brigade des Sapeurs Pompiers de Paris Paris Fire Brigade'),
(94749, 'https://ror.org/00zqysk61', 'en', 1, 'https://ror.org/00zqysk61 NUWC Newport Division'),
(94750, 'https://ror.org/00y523k32', 'fr', 1, 'https://ror.org/00y523k32 Laboratoire Universitaire Histoire Cultures Italie Europe'),
(94751, 'https://ror.org/03vmza063', 'fr', 1, 'https://ror.org/03vmza063 UnitƩ Mixte de Recherche EpidƩmiologique et de Surveillance Transport Travail Environnement'),
(94752, 'https://ror.org/02c5gbd66', 'fr', 1, 'https://ror.org/02c5gbd66 Institut Marcel Mauss'),
(94753, 'https://ror.org/00etztf89', 'en', 1, 'https://ror.org/00etztf89 Holy Child College of Education'),
(94754, 'https://ror.org/03xnaaq19', 'pl', 1, 'https://ror.org/03xnaaq19 Instytut Badań i Innowacji w Edukacji'),
(94755, 'https://ror.org/03aw0bz08', 'en', 1, 'https://ror.org/03aw0bz08 Asian University of Bangladesh ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(94756, 'https://ror.org/043qd1272', 'fr', 1, 'https://ror.org/043qd1272 National Maritime College of France Ɖcole Nationale SupĆ©rieure Maritime'),
(94757, 'https://ror.org/03vc8d935', 'en', 1, 'https://ror.org/03vc8d935 Wuhan City College ę­¦ę±‰åŸŽåø‚å­¦é™¢'),
(94758, 'https://ror.org/04tnvnq52', 'fr', 1, 'https://ror.org/04tnvnq52 DƩlƩgation Paris B'),
(94759, 'https://ror.org/0270xt841', 'fr', 1, 'https://ror.org/0270xt841 Institut de Myologie Institute of Myology'),
(94760, 'https://ror.org/01jv2ft75', 'fr', 1, 'https://ror.org/01jv2ft75 Laboratoire de MƩcanique Paris-Saclay'),
(94761, 'https://ror.org/00pbrnp49', 'fr', 1, 'https://ror.org/00pbrnp49 CommunautƩ urbaine de Lyon Urban Community of Lyon'),
(94762, 'https://ror.org/01mjckp83', 'en', 1, 'https://ror.org/01mjckp83 Banner MD Anderson Cancer Center at Banner North Colorado Medical Center'),
(94763, 'https://ror.org/046cwyy43', 'fr', 1, 'https://ror.org/046cwyy43 Stress Environnementaux et Biosurveillance des Milieux Aquatiques'),
(94764, 'https://ror.org/021bcyf85', 'en', 0, 'https://ror.org/021bcyf85 U.S. Army Center for Health Promotion and Preventive Medicine'),
(94765, 'https://ror.org/04kbqb151', 'fr', 1, 'https://ror.org/04kbqb151 BISCEm - Biologie IntƩgrative SantƩ Chimie Environnement'),
(94766, 'https://ror.org/00avz5239', 'es', 1, 'https://ror.org/00avz5239 Universidad de Ciencias MƩdicas de Ciego de Ɓvila'),
(94767, 'https://ror.org/03affdz79', 'fr', 1, 'https://ror.org/03affdz79 French National School for the Judiciary Ɖcole Nationale de la Magistrature'),
(94768, 'https://ror.org/04cre2h49', 'fr', 1, 'https://ror.org/04cre2h49 Sciences, SociĆ©tĆ©, HistoricitĆ©, Ɖducation et Pratiques'),
(94769, 'https://ror.org/02t9nm044', 'fr', 1, 'https://ror.org/02t9nm044 Institut franƧais du Proche-Orient'),
(94770, 'https://ror.org/05qhnf349', 'fr', 1, 'https://ror.org/05qhnf349 Acquisition et Analyse de DonnƩes pour l''Histoire naturelle'),
(94771, 'https://ror.org/01yypjb30', 'fr', 1, 'https://ror.org/01yypjb30 Laboratoire d''Ingénierie des Systèmes Biologiques et des Procédés'),
(94772, 'https://ror.org/05qpmg879', 'fr', 1, 'https://ror.org/05qpmg879 Institut de Biologie MolƩculaire et Cellulaire Institute of Molecular and Cellular Biology'),
(94773, 'https://ror.org/040hwdc70', 'fr', 0, 'https://ror.org/040hwdc70 Lille 1 University UniversitƩ Lille 1'),
(94774, 'https://ror.org/01b266018', 'fr', 1, 'https://ror.org/01b266018 AcadƩmie Nationale de MƩdecine National Academy of Medicine'),
(94775, 'https://ror.org/03tbm7598', 'en', 1, 'https://ror.org/03tbm7598 NSWC Panama City Division'),
(94776, 'https://ror.org/01xyqts46', 'fr', 1, 'https://ror.org/01xyqts46 Institut de Recherche contre les Cancers de l’Appareil Digestif Research Institute against Digestive Cancer'),
(94777, 'https://ror.org/01wep6g48', 'fr', 0, 'https://ror.org/01wep6g48 Institut National de Recherche en Sciences et Technologies pour l''Environnement et l''Agriculture National Research Institute of Science and Technology for Environment and Agriculture'),
(94778, 'https://ror.org/04eqvyq94', 'en', 1, 'https://ror.org/04eqvyq94 Jashore University of Science and Technology যশোর ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(94779, 'https://ror.org/0061rmm93', 'fr', 1, 'https://ror.org/0061rmm93 Laboratoire d’Étude des MĆ©canismes Cognitifs'),
(94780, 'https://ror.org/04p5ggc03', 'en', 1, 'https://ror.org/04p5ggc03 Max Delbrück Center Max-Delbrück-Centrum für Molekulare Medizin in der Helmholtz-Gemeinschaft'),
(94781, 'https://ror.org/045hhcf06', 'es', 1, 'https://ror.org/045hhcf06 Instituto de Problemas Nacionales'),
(94782, 'https://ror.org/052pqt102', 'fr', 1, 'https://ror.org/052pqt102 Plateforme de chimie biologique intƩgrative de Strasbourg'),
(94783, 'https://ror.org/00ccxmy30', 'es', 1, 'https://ror.org/00ccxmy30 National University of LanĆŗs Universidad Nacional de LanĆŗs'),
(94784, 'https://ror.org/05q7a8a02', 'fr', 1, 'https://ror.org/05q7a8a02 EDHEC Business School Ecole des Hautes Etudes Commerciales du Nord'),
(94785, 'https://ror.org/05n4e2707', 'fr', 1, 'https://ror.org/05n4e2707 Conseil de L''Europe Consejo de Europa Consiglio d''Europa Council of Europe Europarat'),
(94786, 'https://ror.org/01d1g0t67', 'en', 1, 'https://ror.org/01d1g0t67 Institut za primenu nuklearne energije Institute for the Application of Nuclear Energy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠæŃ€ŠøŠ¼ŠµŠ½Ńƒ Š½ŃƒŠŗŠ»ŠµŠ°Ń€Š½Šµ ŠµŠ½ŠµŃ€Š³ŠøŃ˜Šµ'),
(94787, 'https://ror.org/03qhdpz92', 'en', 1, 'https://ror.org/03qhdpz92 Defense Center for Public Health - Aberdeen'),
(94788, 'https://ror.org/051k3eh31', 'en', 1, 'https://ror.org/051k3eh31 Tokyo Medical and Dental University ę±äŗ¬åŒ»ē§‘ę­Æē§‘å¤§å­¦'),
(94789, 'https://ror.org/04r5nwv94', 'fr', 1, 'https://ror.org/04r5nwv94 UMS BioCore'),
(94790, 'https://ror.org/05q3pap39', 'fr', 1, 'https://ror.org/05q3pap39 Centre de Recherche sur la Conservation'),
(94791, 'https://ror.org/04s9gqm51', 'fr', 1, 'https://ror.org/04s9gqm51 Centre FranƧais des Fonds et Fondations French Foundation Centre'),
(94792, 'https://ror.org/02txsgf39', 'fr', 1, 'https://ror.org/02txsgf39 Château de Longchamp'),
(94793, 'https://ror.org/04zptmf07', 'en', 1, 'https://ror.org/04zptmf07 DIII-D National Fusion Facility'),
(94794, 'https://ror.org/05e9zjs36', 'fr', 1, 'https://ror.org/05e9zjs36 European and Mediterranean Plant Protection Organization Organisation EuropƩenne et MƩditerranƩenne pour la Protection de Plantes'),
(94795, 'https://ror.org/01365h357', 'fr', 1, 'https://ror.org/01365h357 Observatoire des sciences de l''Univers Paris-Centre Ecce Terra'),
(94796, 'https://ror.org/00f5q5839', 'en', 1, 'https://ror.org/00f5q5839 Hochschule für angewandte Wissenschaft und Kunst Hildesheim/Holzminden/Göttingen University of Applied Sciences and Arts Hildesheim/Holzminden/Göttingen'),
(94797, 'https://ror.org/02xqkcw08', 'en', 1, 'https://ror.org/02xqkcw08 National Institute of Technology ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹é«˜ē­‰å°‚é–€å­¦ę ”ę©Ÿę§‹'),
(94798, 'https://ror.org/02mwm8067', 'en', 1, 'https://ror.org/02mwm8067 Pact for Youth Association'),
(94799, 'https://ror.org/05y1c5v47', 'en', 1, 'https://ror.org/05y1c5v47 The Small Earth Nepal'),
(94800, 'https://ror.org/04w9mdw91', 'fr', 1, 'https://ror.org/04w9mdw91 Institut SupƩrieur de Gestion de Tunis'),
(94801, 'https://ror.org/03r13py57', 'fr', 0, 'https://ror.org/03r13py57 UniLaSalle Amiens (ESIEE-Amiens)'),
(94802, 'https://ror.org/03d4ecn10', 'en', 1, 'https://ror.org/03d4ecn10 Naval Surface Warfare Center'),
(94803, 'https://ror.org/02vde2j43', 'en', 1, 'https://ror.org/02vde2j43 Institut za medicinska istraživanja Institute for Medical Research Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за меГицинска ŠøŃŃ‚Ń€Š°Š¶ŠøŠ²Š°ŃšŠ°'),
(94804, 'https://ror.org/01gw5dy53', 'en', 1, 'https://ror.org/01gw5dy53 CICERO Center for International Climate Research CICERO Senter for Klimaforskning'),
(94805, 'https://ror.org/03jm2hc44', 'fr', 1, 'https://ror.org/03jm2hc44 Laboratoire de MathƩmatiques Nicolas Oresme'),
(94806, 'https://ror.org/01prhkj58', 'en', 1, 'https://ror.org/01prhkj58 Isesaki Municipal Hospital'),
(94807, 'https://ror.org/01hfye903', 'no_lang_code', 1, 'https://ror.org/01hfye903 Framatome (Germany)'),
(94808, 'https://ror.org/02vfh9890', 'en', 1, 'https://ror.org/02vfh9890 Phu Yen Vocational College'),
(94809, 'https://ror.org/02ygac863', 'fr', 1, 'https://ror.org/02ygac863 Maison des Sciences de l''Homme et de la SociƩtƩ Sud-Est'),
(94810, 'https://ror.org/02raxsg56', 'es', 1, 'https://ror.org/02raxsg56 Instituto de Investigaciones y PolĆ­ticas del Ambiente Construido (IIPAC)'),
(94811, 'https://ror.org/000es9t33', 'en', 1, 'https://ror.org/000es9t33 Lomonosov Moscow State University Marine Research Center LLC Центр морских исслеГований ŠœŠ“Š£ имени М. Š’.Ломоносова'),
(94812, 'https://ror.org/022psxk94', 'fr', 1, 'https://ror.org/022psxk94 Maison FranƧaise d''Oxford'),
(94813, 'https://ror.org/018dfmm35', 'fr', 1, 'https://ror.org/018dfmm35 Immunologie et Nouveaux Concepts en ImmunothƩrapie Immunology and New Concepts in Immunotherapy'),
(94814, 'https://ror.org/05h5v3c50', 'fr', 1, 'https://ror.org/05h5v3c50 HƓpital Tenon Tenon Hospital'),
(94815, 'https://ror.org/03pef0w96', 'fr', 1, 'https://ror.org/03pef0w96 HƓpital Raymond-PoincarƩ Raymond PoincarƩ University Hospital'),
(94816, 'https://ror.org/05merjr74', 'fr', 1, 'https://ror.org/05merjr74 SystĆØmes d’élevage mĆ©diterranĆ©ens et tropicaux Tropical and Mediterranean Animal Production Systems'),
(94817, 'https://ror.org/01ms53j39', 'en', 1, 'https://ror.org/01ms53j39 Czech Association of Doctoral Researchers'),
(94818, 'https://ror.org/0583g3j25', 'es', 1, 'https://ror.org/0583g3j25 Escuela Normal Superior Federal de Aguascalientes Escuela Normal Superior Federal de Aguascalientes "Profr. JosƩ Santos ValdƩs"'),
(94819, 'https://ror.org/02vmjde87', 'es', 1, 'https://ror.org/02vmjde87 Gobierno de la Provincia de Mendoza'),
(94820, 'https://ror.org/00q7mnz48', 'fr', 1, 'https://ror.org/00q7mnz48 Collecte Localisation Satellites (France)'),
(94821, 'https://ror.org/00nbhg292', 'fr', 1, 'https://ror.org/00nbhg292 Lieux, IdentitƩs, eSpaces, ActivitƩs'),
(94822, 'https://ror.org/047pqfg44', 'en', 1, 'https://ror.org/047pqfg44 Ukrainian Institute for Plant Variety Examination'),
(94823, 'https://ror.org/034zk5h49', 'de', 0, 'https://ror.org/034zk5h49 Olga Mayenfisch Foundation Olga Mayenfisch Stiftung'),
(94824, 'https://ror.org/05spn1g36', 'es', 1, 'https://ror.org/05spn1g36 Centro Nacional de MetrologĆ­a de PanamĆ” (CENAMEP AIP)'),
(94825, 'https://ror.org/00s7v8q53', 'fr', 1, 'https://ror.org/00s7v8q53 HƓpital de la Conception'),
(94826, 'https://ror.org/02f9r3321', 'fr', 1, 'https://ror.org/02f9r3321 Institut de Recherche Vaccinale Vaccine Research Institute'),
(94827, 'https://ror.org/012jstb87', 'fr', 1, 'https://ror.org/012jstb87 Agence franƧaise de lutte contre le dopage French Anti-Doping Agency'),
(94828, 'https://ror.org/03vdg0553', 'es', 1, 'https://ror.org/03vdg0553 Instituto de Ambiente, HƔbitat y Energƭa'),
(94829, 'https://ror.org/02z9j6m75', 'fr', 0, 'https://ror.org/02z9j6m75 Economie Publique Public Economics'),
(94830, 'https://ror.org/01cqd9q31', 'fr', 1, 'https://ror.org/01cqd9q31 Cibles et MƩdicaments des Infections et de l''ImmunitƩ'),
(94831, 'https://ror.org/02rmwrd87', 'fr', 1, 'https://ror.org/02rmwrd87 Laboratoire Environnements, Dynamiques et Territoires de Montagne'),
(94832, 'https://ror.org/05h5wna09', 'fr', 0, 'https://ror.org/05h5wna09 UniversitƩ Montesquieu Bordeaux IV'),
(94833, 'https://ror.org/015a85k79', 'fr', 1, 'https://ror.org/015a85k79 Infections Virales et Pathologie ComparƩe'),
(94834, 'https://ror.org/044ha3612', 'fr', 1, 'https://ror.org/044ha3612 Institut de MƩdecine de la Reproduction Institute for Reproductive Medicine'),
(94835, 'https://ror.org/03ntmtb29', 'fr', 1, 'https://ror.org/03ntmtb29 Centre Val de Loire Loire Valley Centre'),
(94836, 'https://ror.org/04n7js917', 'fr', 1, 'https://ror.org/04n7js917 Institut de Recherche en SƩmiochimie et Ethologie AppliquƩe Research Institute and Applied Ethology in Semiochemistry'),
(94837, 'https://ror.org/03bcyhr16', 'fr', 1, 'https://ror.org/03bcyhr16 Irasia Recherche'),
(94838, 'https://ror.org/00genbz89', 'fr', 1, 'https://ror.org/00genbz89 MƩthodes et Histoire de l''architecture'),
(94839, 'https://ror.org/0257sgk90', 'fr', 1, 'https://ror.org/0257sgk90 Computer Science and Systems Laboratory Laboratoire d’Informatique et SystĆØmes'),
(94840, 'https://ror.org/02ffzdx16', 'en', 1, 'https://ror.org/02ffzdx16 Paris Network for Advanced Microscopy'),
(94841, 'https://ror.org/01p38cj84', 'en', 1, 'https://ror.org/01p38cj84 Institute of Applied Computing & Community Code'),
(94842, 'https://ror.org/023hvsb84', 'fr', 1, 'https://ror.org/023hvsb84 Clinique VƩtƩrinaire Occitanie'),
(94843, 'https://ror.org/02af93v77', 'fr', 1, 'https://ror.org/02af93v77 Biologie du DƩveloppement et Cellules Souches Developmental and Stem Cell Biology'),
(94844, 'https://ror.org/02wnmk332', 'pt', 1, 'https://ror.org/02wnmk332 Brazilian Center for Research in Physics Centro Brasileiro de Pesquisas FĆ­sicas'),
(94845, 'https://ror.org/001rmv394', 'fr', 1, 'https://ror.org/001rmv394 BiomƩcanique et Pathologie Locomotrice du Cheval'),
(94846, 'https://ror.org/00g7vvf64', 'fr', 1, 'https://ror.org/00g7vvf64 Maison de la Recherche en Sciences Humaines Social Sciences Research House'),
(94847, 'https://ror.org/00th3sv06', 'fr', 1, 'https://ror.org/00th3sv06 HƓpital Salvator'),
(94848, 'https://ror.org/026ddbz68', 'fr', 1, 'https://ror.org/026ddbz68 GƩnomique Ʃvolutive, modƩlisation et santƩ'),
(94849, 'https://ror.org/02f6tst70', 'fr', 1, 'https://ror.org/02f6tst70 Catalyse, PolymƩrisation, ProcƩdƩs et MatƩriaux Catalysis, Polymerisation, Process and Materials'),
(94850, 'https://ror.org/04bckew43', 'fr', 1, 'https://ror.org/04bckew43 HƓpitaux Universitaires de Strasbourg'),
(94851, 'https://ror.org/04c3dhk56', 'da', 1, 'https://ror.org/04c3dhk56 Sjællands Universitetshospital, Nykøbing F. Zealand University Hospital, Nykøbing F.'),
(94852, 'https://ror.org/04x383a88', 'fr', 1, 'https://ror.org/04x383a88 ESIEE Paris'),
(94853, 'https://ror.org/01kv58h76', 'fr', 1, 'https://ror.org/01kv58h76 Agence Nationale de Recherches sur le Sida et les HƩpatites Virales'),
(94854, 'https://ror.org/05jpad840', 'fr', 1, 'https://ror.org/05jpad840 Institut de la Mer de Villefranche'),
(94855, 'https://ror.org/04xskzp68', 'en', 1, 'https://ror.org/04xskzp68 Kharkiv Institute of Medicine and Biomedical Sciences Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицини та біомеГичних наук'),
(94856, 'https://ror.org/00cmmh940', 'fr', 1, 'https://ror.org/00cmmh940 Physiopathologie, mƩtabolisme et nutrition Physiopathology, metabolism and nutrition'),
(94857, 'https://ror.org/03y7m8990', 'fr', 1, 'https://ror.org/03y7m8990 Physics for Medicine Paris Physique pour la mƩdecine Paris'),
(94858, 'https://ror.org/04k4pxr75', 'fr', 1, 'https://ror.org/04k4pxr75 Centre EuropƩen de la CƩramique European Ceramics Centre'),
(94859, 'https://ror.org/00j5dj575', 'fr', 1, 'https://ror.org/00j5dj575 Institut thƩmatique Bases molƩculaires et structurales du vivant'),
(94860, 'https://ror.org/02f08fz18', 'fr', 1, 'https://ror.org/02f08fz18 Rennes School of Business Ɖcole SupĆ©rieure de Commerce de Rennes'),
(94861, 'https://ror.org/05r4re112', 'fr', 1, 'https://ror.org/05r4re112 Centre d’Etudes des Langues, Territoires et IdentitĆ©s Culturelles – Bretagne et Langues Minoritaires'),
(94862, 'https://ror.org/03y81da23', 'fr', 0, 'https://ror.org/03y81da23 Laboratoire d’HYdrologie et de GEochimie Laboratory of Hydrology and Geochemistry'),
(94863, 'https://ror.org/03d1jma17', 'fr', 1, 'https://ror.org/03d1jma17 Biologie Fonctionnelle Insectes et Interactions'),
(94864, 'https://ror.org/048bnmc64', 'fr', 1, 'https://ror.org/048bnmc64 EMMAH - Environnement Méditerranéen et Modélisation des Agro-Hydrosystèmes'),
(94865, 'https://ror.org/00t9pwh21', 'fr', 1, 'https://ror.org/00t9pwh21 Sport et environnement social'),
(94866, 'https://ror.org/03cjqqq10', 'fr', 1, 'https://ror.org/03cjqqq10 Institut Clinique de la Souris Mouse Clinical Institute'),
(94867, 'https://ror.org/008rwh029', 'en', 1, 'https://ror.org/008rwh029 Gene Therapy Laboratory Laboratoire de ThƩrapie GƩnique'),
(94868, 'https://ror.org/02wrd4e19', 'fr', 1, 'https://ror.org/02wrd4e19 Architecture, Environnement & Cultures Constructives');
INSERT INTO `rors` VALUES
(94869, 'https://ror.org/01set1758', 'fr', 1, 'https://ror.org/01set1758 Caisse des DƩpƓts et Consignations Deposits and Consignments Fund'),
(94870, 'https://ror.org/039hp5d87', 'en', 1, 'https://ror.org/039hp5d87 CINEC Campus (Pvt) Ltd.'),
(94871, 'https://ror.org/04pzw3j14', 'en', 0, 'https://ror.org/04pzw3j14 Equipe RhizogenĆØse Rhizogenesis Lab'),
(94872, 'https://ror.org/0264vhs54', 'fr', 0, 'https://ror.org/0264vhs54 GƩnomique Bioinformatique et Applications Laboratory Genomics, Bioinformatics, and Applications'),
(94873, 'https://ror.org/00xwwwr97', 'fr', 1, 'https://ror.org/00xwwwr97 Institut Parisien de Chimie Physique et ThƩorique'),
(94874, 'https://ror.org/01aj0bf86', 'fr', 1, 'https://ror.org/01aj0bf86 Autonomie, GƩrontologie, E-santƩ, Imagerie et SociƩtƩ'),
(94875, 'https://ror.org/01waxag60', 'en', 1, 'https://ror.org/01waxag60 Light, nanomaterials, nanotechnologies Lumière, nanomatériaux et nanotechnologies'),
(94876, 'https://ror.org/0467x8h16', 'fr', 1, 'https://ror.org/0467x8h16 Maison des Sciences de l''Homme-Alpes'),
(94877, 'https://ror.org/00m3mb357', 'en', 1, 'https://ror.org/00m3mb357 Image and Pervasive Access Laboratory'),
(94878, 'https://ror.org/001r0mk78', 'no_lang_code', 1, 'https://ror.org/001r0mk78 Hansa Biopharma (Sweden)'),
(94879, 'https://ror.org/0236xhv80', 'fr', 1, 'https://ror.org/0236xhv80 Centre d''Etudes et de Recherches sur les Emplois et les Professionnalisations'),
(94880, 'https://ror.org/00qe5nz43', 'fr', 1, 'https://ror.org/00qe5nz43 TBM-Core'),
(94881, 'https://ror.org/04b9vs620', 'fr', 1, 'https://ror.org/04b9vs620 Imagerie et StratƩgies ThƩrapeutiques pour les Cancers et Tissus cƩrƩbraux'),
(94882, 'https://ror.org/05k317v03', 'fr', 1, 'https://ror.org/05k317v03 Laboratoire de GƩnƩtique Cellulaire'),
(94883, 'https://ror.org/0022kfb81', 'fr', 0, 'https://ror.org/0022kfb81 Neuropsychiatrie : Recherche Epidemiologique et Clinique Neuropsychiatry Epidemiological and Clinical Research'),
(94884, 'https://ror.org/03nvnqg97', 'fr', 1, 'https://ror.org/03nvnqg97 Institut de Relations Internationales et StratƩgiques The French Institute for International and Strategic Affairs'),
(94885, 'https://ror.org/02004hr86', 'en', 1, 'https://ror.org/02004hr86 S. U. Umarov Physical-Technical Institute'),
(94886, 'https://ror.org/01mbsxc64', 'en', 1, 'https://ror.org/01mbsxc64 IVL Svenska Miljƶinstitutet IVL Swedish Environmental Research Institute ē‘žå…øēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(94887, 'https://ror.org/03t2gd572', 'id', 1, 'https://ror.org/03t2gd572 Institut Teknologi dan Bisnis Kalla'),
(94888, 'https://ror.org/0529q4s79', 'fr', 1, 'https://ror.org/0529q4s79 Institut d’EpidĆ©miologie Neurologique et de Neurologie Tropicale'),
(94889, 'https://ror.org/052dp8730', 'en', 1, 'https://ror.org/052dp8730 CIHR Skin Research Training Centre'),
(94890, 'https://ror.org/039wwwz66', 'en', 1, 'https://ror.org/039wwwz66 Banner Health'),
(94891, 'https://ror.org/03wzth680', 'fr', 1, 'https://ror.org/03wzth680 Stress Abiotiques et DiffƩrenciation des VƩgƩtaux CultivƩs'),
(94892, 'https://ror.org/02m19wv39', 'es', 1, 'https://ror.org/02m19wv39 Centro Internacional Franco-Argentino de Ciencias de la Información y de Sistemas'),
(94893, 'https://ror.org/0325zb480', 'en', 1, 'https://ror.org/0325zb480 Institute of Paleoprimatology Human Paleontology Evolution and Paleoenvironments'),
(94894, 'https://ror.org/04f6hmf16', 'fr', 0, 'https://ror.org/04f6hmf16 COMUE Languedoc-Roussillon UniversitƩs Languedoc-Roussillon Universities'),
(94895, 'https://ror.org/018r7pa17', 'fr', 0, 'https://ror.org/018r7pa17 Institut de Biologie systƩmique et synthƩtique Institute of Systems & Synthetic Biology'),
(94896, 'https://ror.org/04bsn3y16', 'en', 1, 'https://ror.org/04bsn3y16 Center for Research in Psychopathology and Clinical Psychology Centre de Recherches en Psychopathologie et Psychologie Clinique'),
(94897, 'https://ror.org/04jxggp80', 'en', 1, 'https://ror.org/04jxggp80 QuantumBasel (Switzerland)'),
(94898, 'https://ror.org/041yg4h55', 'fr', 1, 'https://ror.org/041yg4h55 National Graduate School of Engineering Chemistry of Lille Ɖcole Nationale SupĆ©rieure de Chimie de Lille'),
(94899, 'https://ror.org/02tqmhd47', 'fr', 1, 'https://ror.org/02tqmhd47 Catholic Institute of Higher Studies Institut catholique d’études supĆ©rieures'),
(94900, 'https://ror.org/00cj7p615', 'en', 1, 'https://ror.org/00cj7p615 IDEMS International Community Interest Company'),
(94901, 'https://ror.org/02mz0e468', 'en', 1, 'https://ror.org/02mz0e468 Curvenote Inc. (Canada)'),
(94902, 'https://ror.org/05v3w8223', 'en', 1, 'https://ror.org/05v3w8223 Field Observatory in Urban Hydrology Observatoire de terrain en hydrologie urbaine'),
(94903, 'https://ror.org/02awy7178', 'fr', 1, 'https://ror.org/02awy7178 Biomechanics and Impact Mechanics Laboratory Laboratoire de BiomƩcanique et MƩcanique des Chocs'),
(94904, 'https://ror.org/04nqadf13', 'fr', 1, 'https://ror.org/04nqadf13 Institut de Recherche et d’Innovation Institute of Research and Innovation'),
(94905, 'https://ror.org/03qvqb743', 'en', 1, 'https://ror.org/03qvqb743 Chuo University 中央大学'),
(94906, 'https://ror.org/023jdj880', 'fr', 1, 'https://ror.org/023jdj880 Groupe Hospitalier Mutualiste de Grenoble Mutual Hospital Group of Grenoble'),
(94907, 'https://ror.org/042w6m452', 'fr', 1, 'https://ror.org/042w6m452 Etude et ComprƩhension de la biodiversitƩ'),
(94908, 'https://ror.org/01nhp3z94', 'fr', 1, 'https://ror.org/01nhp3z94 Temps, Mondes, SociƩtƩs'),
(94909, 'https://ror.org/00bg4y631', 'fr', 1, 'https://ror.org/00bg4y631 AGIR Ć  dom'),
(94910, 'https://ror.org/059rnte75', 'en', 1, 'https://ror.org/059rnte75 Westminster University'),
(94911, 'https://ror.org/00r454w59', 'fr', 1, 'https://ror.org/00r454w59 Institut thƩmatique Immunologie, inflammation, infectiologie et microbiologie'),
(94912, 'https://ror.org/01dqrx648', 'en', 1, 'https://ror.org/01dqrx648 Nakhchivan University NaxƧıvan Universiteti'),
(94913, 'https://ror.org/05k1a6w82', 'fr', 1, 'https://ror.org/05k1a6w82 Laboratoire Morphodynamique Continentale et CÓtière'),
(94914, 'https://ror.org/03vs46t66', 'fr', 0, 'https://ror.org/03vs46t66 Cergy-Pontoise University UniversitƩ de Cergy-Pontoise'),
(94915, 'https://ror.org/05w6qh410', 'en', 1, 'https://ror.org/05w6qh410 Royal National Institute for Deaf People'),
(94916, 'https://ror.org/046dap961', 'fr', 1, 'https://ror.org/046dap961 Laboratoire interdisciplinaire d’études sur les rĆ©flexivitĆ©s - Fonds Yan Thomas'),
(94917, 'https://ror.org/048yvwh14', 'fr', 1, 'https://ror.org/048yvwh14 BioingƩnierie et Dynamique Microbienne aux Interfaces Alimentaires'),
(94918, 'https://ror.org/03nmrhk91', 'en', 1, 'https://ror.org/03nmrhk91 MoreBrains Cooperative MoreBrains Cooperative (United Kingdom)'),
(94919, 'https://ror.org/01wzg9f04', 'en', 1, 'https://ror.org/01wzg9f04 AgroResonance Platform Plateforme AgroResonance'),
(94920, 'https://ror.org/01cy4tj56', 'fr', 0, 'https://ror.org/01cy4tj56 Center for Research in Neurobiology and Neurophysiology of Marseille Centre de Recherche en Neurobiologie - Neurophysiologie de Marseille'),
(94921, 'https://ror.org/049hngf66', 'es', 1, 'https://ror.org/049hngf66 Laboratorio de Planificación y Gestión Estratégica'),
(94922, 'https://ror.org/01qvhcs77', 'en', 1, 'https://ror.org/01qvhcs77 Institut za filozofiju i druÅ”tvenu teoriju Institute for Philosophy and Social Theory Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Ń„ŠøŠ»Š¾Š·Š¾Ń„ŠøŃ˜Ńƒ Šø Š“Ń€ŃƒŃˆŃ‚Š²ŠµŠ½Ńƒ Ń‚ŠµŠ¾Ń€ŠøŃ˜Ńƒ'),
(94923, 'https://ror.org/0132f3h08', 'fr', 1, 'https://ror.org/0132f3h08 Fondation Nationale des Sciences Politiques National Foundation of Political Science'),
(94924, 'https://ror.org/023xgd207', 'fr', 1, 'https://ror.org/023xgd207 HƓpital Lyon Sud'),
(94925, 'https://ror.org/03cxgcr75', 'fr', 1, 'https://ror.org/03cxgcr75 Etude longitudinale franƧaise depuis l''enfance'),
(94926, 'https://ror.org/04qe59j94', 'fr', 1, 'https://ror.org/04qe59j94 Institut Mondor de Recherche BiomƩdicale Mondor Institute of Biomedical Research'),
(94927, 'https://ror.org/03k32n603', 'fr', 1, 'https://ror.org/03k32n603 CEPN - Centre d''Economie de l''UniversitƩ Paris Nord'),
(94928, 'https://ror.org/03evbwn87', 'fr', 1, 'https://ror.org/03evbwn87 Centre Hospitalier RƩgional Universitaire de Brest'),
(94929, 'https://ror.org/00z8th821', 'fr', 0, 'https://ror.org/00z8th821 Observatoire Oceanologique de Banyuls sur Mer Oceanographic Observatory in Banyuls-sur-Mer'),
(94930, 'https://ror.org/03hqv2x85', 'en', 1, 'https://ror.org/03hqv2x85 Mitochondrial and Cardiovascular Physiopathology Physiopathologie Cardiovasculaire et Mitochondriale'),
(94931, 'https://ror.org/02q7abn51', 'no_lang_code', 1, 'https://ror.org/02q7abn51 BioData.pt'),
(94932, 'https://ror.org/059eam965', 'fr', 1, 'https://ror.org/059eam965 Laboratoire des applications ThƩrapeutiques des Ultrasons'),
(94933, 'https://ror.org/014n62h48', 'fr', 1, 'https://ror.org/014n62h48 Institut de Recherche et DƩbat sur la Gouvernance Institute for Research and Debate on Governance'),
(94934, 'https://ror.org/01trpqt29', 'fr', 1, 'https://ror.org/01trpqt29 Centre Technique du Papier Pulp and Paper Technical Centre'),
(94935, 'https://ror.org/05rehad94', 'en', 1, 'https://ror.org/05rehad94 Oxford University Clinical Research Unit'),
(94936, 'https://ror.org/05akjb009', 'fr', 1, 'https://ror.org/05akjb009 Biologie des interactions hƓte-parasite Biology of Host-parasite Interactions'),
(94937, 'https://ror.org/045kr1469', 'en', 1, 'https://ror.org/045kr1469 Institut za multidisciplinarna istraživanja Institute for Multidisciplinary Research Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¼ŃƒŠ»Ń‚иГисциплинарна ŠøŃŃ‚Ń€Š°Š¶ŠøŠ²Š°ŃšŠ°'),
(94938, 'https://ror.org/04wttst55', 'fr', 1, 'https://ror.org/04wttst55 American Hospital of Paris HƓpital amƩricain de paris'),
(94939, 'https://ror.org/03t3h1s86', 'en', 0, 'https://ror.org/03t3h1s86 Fondation Franco-NorvƩgienne French Norwegian Foundation'),
(94940, 'https://ror.org/03wt67z55', 'no_lang_code', 1, 'https://ror.org/03wt67z55 PanThera Biopharma, LLC PanThera Biopharma, LLC (United States)'),
(94941, 'https://ror.org/05v5br676', 'id', 1, 'https://ror.org/05v5br676 Politeknik Negeri Bandung'),
(94942, 'https://ror.org/0451nna70', 'no_lang_code', 1, 'https://ror.org/0451nna70 Sirius'),
(94943, 'https://ror.org/02ty42a04', 'fr', 0, 'https://ror.org/02ty42a04 Ɖcole Nationale d''Administration de Madagascar'),
(94944, 'https://ror.org/01554y636', 'fr', 1, 'https://ror.org/01554y636 Institut de philosophie de Grenoble'),
(94945, 'https://ror.org/036wb4w46', 'fr', 1, 'https://ror.org/036wb4w46 CƩvennes National Park Parc national des CƩvennes'),
(94946, 'https://ror.org/021rrk332', 'fr', 1, 'https://ror.org/021rrk332 ConfƩdƩration franƧaise dƩmocratique du travail French Democratic Confederation of Labour'),
(94947, 'https://ror.org/04mfmy854', 'en', 1, 'https://ror.org/04mfmy854 NSWC Crane Division'),
(94948, 'https://ror.org/034jd0m14', 'en', 1, 'https://ror.org/034jd0m14 National Institute of Technology, Nara College å„ˆč‰Æå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(94949, 'https://ror.org/00arwy491', 'en', 1, 'https://ror.org/00arwy491 HƓpital Royal Victoria Royal Victoria Hospital'),
(94950, 'https://ror.org/05mmh5r64', 'no_lang_code', 0, 'https://ror.org/05mmh5r64 Alenia Aermacchi'),
(94951, 'https://ror.org/048z48z46', 'fr', 1, 'https://ror.org/048z48z46 Centre de Recherche en Linguistique AppliquƩe'),
(94952, 'https://ror.org/013nhg483', 'fr', 1, 'https://ror.org/013nhg483 Laboratoire Physiopathologie et GƩnƩtique du Neurone et du Muscle'),
(94953, 'https://ror.org/03kfjwy31', 'en', 1, 'https://ror.org/03kfjwy31 Automation and Process Engineering Laboratory Laboratoire d''Automatique et de GƩnie des ProcƩdƩs'),
(94954, 'https://ror.org/02c1tv516', 'fr', 0, 'https://ror.org/02c1tv516 Center for Physiopathology of Toulouse Purpan Centre de Physiopathologie de Toulouse-Purpan'),
(94955, 'https://ror.org/058hz8544', 'fr', 1, 'https://ror.org/058hz8544 Institut des Sciences Cognitives Institute for Cognitive Science'),
(94956, 'https://ror.org/00awrf758', 'fr', 1, 'https://ror.org/00awrf758 Groupe de recherche sur les enjeux de la communication'),
(94957, 'https://ror.org/03wdx6c48', 'fr', 1, 'https://ror.org/03wdx6c48 Trajectoires. De la sĆ©dentarisation Ć  l’État'),
(94958, 'https://ror.org/01x3ydm75', 'fr', 1, 'https://ror.org/01x3ydm75 Maladies rƩnales frƩquentes et rares : des mƩcanismes molƩculaires Ơ la mƩdecine personnalisƩe'),
(94959, 'https://ror.org/05gz4kr37', 'fr', 1, 'https://ror.org/05gz4kr37 Observatoire OcƩanologique de Banyuls-sur-Mer'),
(94960, 'https://ror.org/03237mt20', 'fr', 1, 'https://ror.org/03237mt20 Espaces et SociƩtƩs'),
(94961, 'https://ror.org/04g8a6786', 'fr', 1, 'https://ror.org/04g8a6786 BibliothĆØque publique d''information Public Information Library'),
(94962, 'https://ror.org/02e6ysw16', 'es', 1, 'https://ror.org/02e6ysw16 Instituto de Investigaciones Sociales'),
(94963, 'https://ror.org/03aef3108', 'fr', 1, 'https://ror.org/03aef3108 Centre de donnƩes socio-politiques de Sciences Po Sciences Po Center for Socio-Political Data'),
(94964, 'https://ror.org/03vte9x46', 'fr', 1, 'https://ror.org/03vte9x46 Observatoire des Sciences de l''Univers de Grenoble'),
(94965, 'https://ror.org/01k6ebg12', 'fr', 1, 'https://ror.org/01k6ebg12 Institut de recherches philosophiques de Lyon'),
(94966, 'https://ror.org/050f22e89', 'fr', 1, 'https://ror.org/050f22e89 Laboratoire d''Excellence Canaux Ioniques d''Intérêt Thérapeutique Laboratory of Excellence in Ion Channel Science and Therapeutics'),
(94967, 'https://ror.org/03btvgn05', 'fr', 0, 'https://ror.org/03btvgn05 University of Lille Nord de France UniversitƩ Lille Nord de France'),
(94968, 'https://ror.org/03cxnrt47', 'fr', 1, 'https://ror.org/03cxnrt47 Centre de Recherche d''Albi en gĆ©nie des ProcĆ©dĆ©s, des SOlides DivisĆ©s, de l''Ɖnergie et de l''Environnement'),
(94969, 'https://ror.org/01fh86n78', 'es', 1, 'https://ror.org/01fh86n78 Autonomous University of Nuevo León Universidad Autónoma de Nuevo León'),
(94970, 'https://ror.org/05bt7sv47', 'es', 1, 'https://ror.org/05bt7sv47 Instituto de Radioastronomƭa MilimƩtrica'),
(94971, 'https://ror.org/05ef4v550', 'fr', 1, 'https://ror.org/05ef4v550 Unit in Biological Sciences and Biotechnologies UnitƩ en Sciences Biologiques et Biotechnologies de Nantes'),
(94972, 'https://ror.org/048t33b90', 'no_lang_code', 1, 'https://ror.org/048t33b90 Allegro Allegro (Poland)'),
(94973, 'https://ror.org/01bpj7k68', 'fr', 1, 'https://ror.org/01bpj7k68 Centre d’Investigation Clinique Innovation Technologique de Nancy Nancy Clinical Investigation Centre Innovative Technology'),
(94974, 'https://ror.org/016crzw98', 'fr', 1, 'https://ror.org/016crzw98 Centre RĆ©gional d’Innovation et de Transferts Technologiques des Industries du Bois'),
(94975, 'https://ror.org/025agbr41', 'en', 1, 'https://ror.org/025agbr41 RMeS - Regenerative Medicine and Skeleton'),
(94976, 'https://ror.org/01s3m0650', 'en', 1, 'https://ror.org/01s3m0650 Institute of Chemical Physics NAS RA'),
(94977, 'https://ror.org/01165k395', 'en', 1, 'https://ror.org/01165k395 Center for Research in Transplantation and Translational Immunology Centre de Recherche en Transplantation et Immunologie'),
(94978, 'https://ror.org/02kctep32', 'en', 1, 'https://ror.org/02kctep32 Avalanche Canada'),
(94979, 'https://ror.org/05djhd259', 'fr', 1, 'https://ror.org/05djhd259 Institut Denis Poisson'),
(94980, 'https://ror.org/02n7qrg46', 'fr', 0, 'https://ror.org/02n7qrg46 Paris Diderot University UniversitƩ Paris Diderot'),
(94981, 'https://ror.org/039bex249', 'fr', 1, 'https://ror.org/039bex249 Centre d''Ʃtudes sud-asiatiques et himalayennes'),
(94982, 'https://ror.org/059ckk077', 'en', 1, 'https://ror.org/059ckk077 Panthera Biopartners (United Kingdom) Panthera Biopartners'),
(94983, 'https://ror.org/01pkecw43', 'en', 1, 'https://ror.org/01pkecw43 VF Calibration Laboratory VF Calibration Laboratory (Czechia)'),
(94984, 'https://ror.org/036mest28', 'en', 0, 'https://ror.org/036mest28 Biology of Extremophiles Laboratory Laboratoire de Biologie Moleculaire du GĆØne chez les Extremophiles'),
(94985, 'https://ror.org/019kqby73', 'fr', 1, 'https://ror.org/019kqby73 Institut de Neurosciences des SystĆØmes'),
(94986, 'https://ror.org/01s8rwd67', 'fr', 1, 'https://ror.org/01s8rwd67 DĆ©lĆ©gation RĆ©gionale Provence-Alpes-CĆ“te d’Azur et Corse'),
(94987, 'https://ror.org/026t9b832', 'fr', 1, 'https://ror.org/026t9b832 Institut franƧais d''Ʃtudes sur l''Asie centrale'),
(94988, 'https://ror.org/01kbkse74', 'en', 1, 'https://ror.org/01kbkse74 The Enteric Nervous System in Gut and Brain Disorders'),
(94989, 'https://ror.org/02nk5bh05', 'en', 1, 'https://ror.org/02nk5bh05 B. Verkin Institute for Low Temperature Physics and Engineering of the National Academy of Sciences of Ukraine Фізико-технічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠøŠ·ŃŒŠŗŠøŃ… Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€ ім. Š‘.І. Вєркіна ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України Фізико-технічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠøŠ·ŃŒŠŗŠøŃ… Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€ ім. Š‘.І. Вєркіна ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України, Єарків'),
(94990, 'https://ror.org/017yq1686', 'en', 1, 'https://ror.org/017yq1686 Nepal Academy of Tourism and Hotel Management'),
(94991, 'https://ror.org/01ws78v34', 'fr', 0, 'https://ror.org/01ws78v34 Research Unit on Infectious and Emerging Tropical Diseases UnitƩ de Recherche sur les Maladies Infectieuses et Tropicales Emergentes'),
(94992, 'https://ror.org/02mkbvg40', 'fr', 1, 'https://ror.org/02mkbvg40 Laboratoire MatƩriaux et DurabilitƩ des Constructions Laboratory for Materials and Construction Works Durability'),
(94993, 'https://ror.org/00yh00476', 'fr', 1, 'https://ror.org/00yh00476 Organisation Mondiale de la SantƩ Animale World Organisation for Animal Health'),
(94994, 'https://ror.org/03hz42y69', 'fr', 1, 'https://ror.org/03hz42y69 Ecole d''ingénieurs en génie des systèmes industriels'),
(94995, 'https://ror.org/00ynyay20', 'fr', 1, 'https://ror.org/00ynyay20 Forum international des transports International Transport Forum'),
(94996, 'https://ror.org/00y86zy26', 'fr', 1, 'https://ror.org/00y86zy26 Conseil international des monuments et des sites International Council on Monuments and Sites'),
(94997, 'https://ror.org/00batt813', 'en', 1, 'https://ror.org/00batt813 Dragomanov Ukrainian State University Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠœŠøŃ…Š°Š¹Š»Š° Драгоманова'),
(94998, 'https://ror.org/04qa2gd95', 'en', 1, 'https://ror.org/04qa2gd95 Transportation Security Administration'),
(94999, 'https://ror.org/02f7wz369', 'fr', 0, 'https://ror.org/02f7wz369 Pierre Mendès-France University Université Pierre Mendès France'),
(95000, 'https://ror.org/02hnp4676', 'en', 1, 'https://ror.org/02hnp4676 Astronomical Observatory of Rome Osservatorio Astronomico di Roma'),
(95001, 'https://ror.org/02a4c5q78', 'fr', 1, 'https://ror.org/02a4c5q78 Centre de recherche sur les InƩgalitƩs Sociales'),
(95002, 'https://ror.org/027364b18', 'fr', 1, 'https://ror.org/027364b18 Biologie MolƩculaire et Immunologie Parasitaire Bipar'),
(95003, 'https://ror.org/029e3sz53', 'no', 1, 'https://ror.org/029e3sz53 MiljĆøfaglig Utredning AS (Norway)'),
(95004, 'https://ror.org/052yj6c27', 'fr', 1, 'https://ror.org/052yj6c27 Nutrition, DiabĆØte et Cerveau'),
(95005, 'https://ror.org/00ysecr35', 'fr', 1, 'https://ror.org/00ysecr35 Ɖcole Nationale SupĆ©rieure de CĆ©ramique Industrielle'),
(95006, 'https://ror.org/05xpvk416', 'en', 1, 'https://ror.org/05xpvk416 Instituto Nacional de EstƔndares y Tecnologƭa National Institute of Standards and Technology'),
(95007, 'https://ror.org/01vqrde47', 'fr', 1, 'https://ror.org/01vqrde47 NanƧay Radio Observatory Observatoire Radioastronomique de NanƧay'),
(95008, 'https://ror.org/02mrg6e67', 'fr', 1, 'https://ror.org/02mrg6e67 Institut pour la Recherche AppliquƩe et l''ExpƩrimentation en GƩnie Civil Institute for Applied Research and Experimentation in Civil Engineering'),
(95009, 'https://ror.org/031v4np87', 'en', 1, 'https://ror.org/031v4np87 ADS Environmental Services ADS Environmental Services (Malaysia)'),
(95010, 'https://ror.org/04hk36d32', 'en', 1, 'https://ror.org/04hk36d32 Institut za hemiju, tehnologiju i metalurgiju Institute of Chemistry, Technology and Metallurgy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Ń…ŠµŠ¼ŠøŃ˜Ńƒ, Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ˜Ńƒ Šø Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³ŠøŃ˜Ńƒ'),
(95011, 'https://ror.org/04hca4691', 'sl', 1, 'https://ror.org/04hca4691 InŔtitut za Nutricionistiko Slovenian Nutrition Institute'),
(95012, 'https://ror.org/00m587853', 'fr', 1, 'https://ror.org/00m587853 MatƩriaux DivisƩs, Interfaces, RƩactivitƩ, Electrochimie'),
(95013, 'https://ror.org/0277bck87', 'en', 0, 'https://ror.org/0277bck87 HƓpital de Melun Melun Hospital'),
(95014, 'https://ror.org/014hxhm89', 'fr', 1, 'https://ror.org/014hxhm89 Institut universitaire du cancer de Toulouse Oncopole University Cancer Institute Toulouse Oncopole'),
(95015, 'https://ror.org/0359qxb80', 'fr', 1, 'https://ror.org/0359qxb80 Agence Parisienne du Climat Paris Climate Agency'),
(95016, 'https://ror.org/04k8wt746', 'fr', 1, 'https://ror.org/04k8wt746 Sommeil, Addiction et Neuropsychiatrie'),
(95017, 'https://ror.org/025xvn046', 'fr', 1, 'https://ror.org/025xvn046 Science and Technology of Music and Sound Laboratory Sciences et Technologies de la Musique et du Son'),
(95018, 'https://ror.org/04bnxa153', 'en', 1, 'https://ror.org/04bnxa153 Naval Undersea Warfare Center'),
(95019, 'https://ror.org/01eezs655', 'en', 1, 'https://ror.org/01eezs655 University of Regensburg UniversitƤt Regensburg'),
(95020, 'https://ror.org/04xp49e10', 'fr', 1, 'https://ror.org/04xp49e10 Ministere de l''Education Nationale Ministry of National Education'),
(95021, 'https://ror.org/02fqepy07', 'no_lang_code', 1, 'https://ror.org/02fqepy07 Cree (China)'),
(95022, 'https://ror.org/02gdcg342', 'fr', 1, 'https://ror.org/02gdcg342 University of the Littoral Opal Coast UniversitƩ du littoral cƓte d''opale'),
(95023, 'https://ror.org/05jgrm680', 'fr', 1, 'https://ror.org/05jgrm680 Observatoire des sciences de l''Univers en rƩgion Centre Val de Loire Universe Sciences Observatory of the Centre Val de Loire region'),
(95024, 'https://ror.org/0331qyx19', 'fr', 1, 'https://ror.org/0331qyx19 Institut FranƧais d''Ɖtudes Anatoliennes'),
(95025, 'https://ror.org/00gngwf81', 'es', 1, 'https://ror.org/00gngwf81 Instituto de Investigaciones en Desarrollo Urbano, TecnologĆ­a y Vivienda'),
(95026, 'https://ror.org/00yphhr71', 'fr', 1, 'https://ror.org/00yphhr71 Institut de CancƩrologie de Lorraine'),
(95027, 'https://ror.org/043nepn57', 'fr', 1, 'https://ror.org/043nepn57 Direction GƩnƩrale DƩlƩguƩe Ơ la Science'),
(95028, 'https://ror.org/0463z7496', 'fr', 1, 'https://ror.org/0463z7496 Biologie des maladies cardiovasculaires Biology of Cardiovascular Diseases'),
(95029, 'https://ror.org/028pmgd25', 'fr', 0, 'https://ror.org/028pmgd25 Institut des Technologies AvancƩes en sciences du Vivant Institute for Advanced Technology in life science'),
(95030, 'https://ror.org/041rhpw39', 'fr', 1, 'https://ror.org/041rhpw39 Centre Hospitalier Universitaire de Grenoble Grenoble University Hospital Centre'),
(95031, 'https://ror.org/00aqh6z65', 'fr', 0, 'https://ror.org/00aqh6z65 Ɖcole Nationale d''Administration'),
(95032, 'https://ror.org/05dwk8b49', 'fr', 1, 'https://ror.org/05dwk8b49 Chambre de Commerce et d''industrie de Paris Paris Chamber of Commerce'),
(95033, 'https://ror.org/03w4jzj90', 'en', 1, 'https://ror.org/03w4jzj90 Health and Care Research Wales Ymchwil Iechyd a Gofal Cymru'),
(95034, 'https://ror.org/0162y2387', 'fr', 1, 'https://ror.org/0162y2387 Association Francaise contre les Myopathies French Muscular Dystrophy Association'),
(95035, 'https://ror.org/02127h732', 'en', 1, 'https://ror.org/02127h732 Wolfspeed, Inc. Wolfspeed, Inc. (United States)'),
(95036, 'https://ror.org/055rzsa90', 'en', 1, 'https://ror.org/055rzsa90 Nelson College London'),
(95037, 'https://ror.org/00tepxj95', 'fr', 0, 'https://ror.org/00tepxj95 Laboratoire de Vectorologie et ThƩrapeutiques AnticancƩreuses Laboratory for Vectorology in Anticancer Therapy'),
(95038, 'https://ror.org/002cp4060', 'fr', 1, 'https://ror.org/002cp4060 Assistance Publique HƓpitaux de Marseille Marseille Public University Hospital System'),
(95039, 'https://ror.org/03e10x626', 'ca', 1, 'https://ror.org/03e10x626 Universidad de las Illes Balears Universidade das Illas Baleares Universitat de les Illes Balears University of the Balearic Islands'),
(95040, 'https://ror.org/04y24xj84', 'fr', 1, 'https://ror.org/04y24xj84 Equipe de recherche de Lyon en Sciences de l''Information et de la Communication'),
(95041, 'https://ror.org/051tqwf02', 'en', 1, 'https://ror.org/051tqwf02 International Society for Biocuration'),
(95042, 'https://ror.org/01z1ame92', 'en', 1, 'https://ror.org/01z1ame92 Wiawso College of Education'),
(95043, 'https://ror.org/038qac964', 'en', 1, 'https://ror.org/038qac964 SRKR Engineering College'),
(95044, 'https://ror.org/01p6gzq21', 'en', 1, 'https://ror.org/01p6gzq21 Brazilian Synchrotron Light Laboratory Laboratório Nacional de Luz Síncrotron'),
(95045, 'https://ror.org/02n399288', 'fr', 1, 'https://ror.org/02n399288 Laboratoire Informatique d''Avignon'),
(95046, 'https://ror.org/05c1qsg97', 'fr', 1, 'https://ror.org/05c1qsg97 Centre Hospitalier Universitaire de Nantes'),
(95047, 'https://ror.org/04htzww22', 'en', 1, 'https://ror.org/04htzww22 Vancouver Coastal Health Research Institute'),
(95048, 'https://ror.org/0103yxp25', 'fr', 1, 'https://ror.org/0103yxp25 French Defence Health Service Service de SantƩ des ArmƩes'),
(95049, 'https://ror.org/03gwcee47', 'no_lang_code', 1, 'https://ror.org/03gwcee47 AIntelia AIntelia (Turkey)'),
(95050, 'https://ror.org/04q54n515', 'en', 1, 'https://ror.org/04q54n515 NSWC Corona Division'),
(95051, 'https://ror.org/0157t2j08', 'fr', 1, 'https://ror.org/0157t2j08 Architecture Urbanisme SociƩtƩ : Savoirs, Enseignement, Recherche'),
(95052, 'https://ror.org/048k52v18', 'fr', 1, 'https://ror.org/048k52v18 Chevreul Institute Institut Chevreul'),
(95053, 'https://ror.org/04vne9k06', 'fr', 1, 'https://ror.org/04vne9k06 MARGE'),
(95054, 'https://ror.org/01s4cye48', 'fr', 1, 'https://ror.org/01s4cye48 Laboratoire d''Ecophysiologie VƩgƩtale, Agronomie & nutritions N.C.S'),
(95055, 'https://ror.org/04m6sq715', 'fr', 1, 'https://ror.org/04m6sq715 HƓpital Arnaud de Villeneuve'),
(95056, 'https://ror.org/04wzf4f82', 'en', 1, 'https://ror.org/04wzf4f82 National Institute for Innovation in Manufacturing Biopharmaceuticals'),
(95057, 'https://ror.org/01zzsqn40', 'no_lang_code', 1, 'https://ror.org/01zzsqn40 Signatope GmbH Signatope GmbH (Germany)'),
(95058, 'https://ror.org/051p9ra28', 'en', 1, 'https://ror.org/051p9ra28 Station Marine d''Endoume'),
(95059, 'https://ror.org/01dyfj824', 'fr', 1, 'https://ror.org/01dyfj824 Laboratoire Interdisciplinaire de Recherche en Innovations SociƩtales'),
(95060, 'https://ror.org/0079jjr10', 'en', 1, 'https://ror.org/0079jjr10 Max Planck Institute for Physics Max-Planck-Institut für Physik'),
(95061, 'https://ror.org/02aqt9c37', 'fr', 0, 'https://ror.org/02aqt9c37 University of Marne la VallƩe UniversitƩ Paris-Est Marne-la-VallƩe'),
(95062, 'https://ror.org/000n0fx93', 'fr', 1, 'https://ror.org/000n0fx93 Signalisation Fonctionnelle des Canaux Ioniques et RƩcepteurs'),
(95063, 'https://ror.org/05jrr4320', 'fr', 1, 'https://ror.org/05jrr4320 HƓpital de la Timone'),
(95064, 'https://ror.org/05vq65d72', 'en', 1, 'https://ror.org/05vq65d72 United States National Committee of the International Council on Monuments and Sites'),
(95065, 'https://ror.org/02n5evf44', 'en', 1, 'https://ror.org/02n5evf44 Sigma Clermont'),
(95066, 'https://ror.org/030h5jp79', 'fr', 1, 'https://ror.org/030h5jp79 Conservatoire national supƩrieur de musique et de danse de Paris Paris Conservatory'),
(95067, 'https://ror.org/029a4pp87', 'fr', 1, 'https://ror.org/029a4pp87 HƓpital Nord'),
(95068, 'https://ror.org/024k3xe80', 'fr', 1, 'https://ror.org/024k3xe80 Institut thƩmatique Biologie cellulaire, dƩveloppement et Ʃvolution'),
(95069, 'https://ror.org/01z4wn485', 'fr', 1, 'https://ror.org/01z4wn485 Agence d''Aide Ơ la CoopƩration Technique Et au DƩveloppement Agency for Technical Cooperation and Development'),
(95070, 'https://ror.org/00eqbnd64', 'en', 1, 'https://ror.org/00eqbnd64 Daejeon Woori Hospital ėŒ€ģ „ģš°ė¦¬ė³‘ģ›'),
(95071, 'https://ror.org/05kkw6065', 'fr', 1, 'https://ror.org/05kkw6065 IschƩmie Reperfusion, MƩtabolisme et Inflammation StƩrile en Transplantation'),
(95072, 'https://ror.org/05bw7ad85', 'fr', 1, 'https://ror.org/05bw7ad85 Centre de recherche en Ʃconomie de Grenoble'),
(95073, 'https://ror.org/049ykdj13', 'en', 1, 'https://ror.org/049ykdj13 ColdQuanta (United States) ColdQuanta, Inc., DBA Infleqtion ColdQuanta, Inc., DBA Infleqtion (United States)'),
(95074, 'https://ror.org/008zsd307', 'en', 0, 'https://ror.org/008zsd307 National Institute for Social Care and Health Research'),
(95075, 'https://ror.org/0090kax79', 'en', 1, 'https://ror.org/0090kax79 Auckland Institute of Studies Te Whare Wānanga ki Hato Herena'),
(95076, 'https://ror.org/00drkdp66', 'fr', 1, 'https://ror.org/00drkdp66 Pratiques et ThƩories de l''art contemporain'),
(95077, 'https://ror.org/05mnstq10', 'fr', 1, 'https://ror.org/05mnstq10 Institut d''Etudes Transtextuelles et Transculturelles'),
(95078, 'https://ror.org/00yyw0g86', 'fr', 1, 'https://ror.org/00yyw0g86 FƩdƩration Hospitalo-Universitaire, Paris Center for Microbiome Medicine'),
(95079, 'https://ror.org/04nsbpw26', 'fr', 1, 'https://ror.org/04nsbpw26 Centre de recherche en droit et management des services de santƩ'),
(95080, 'https://ror.org/00tm1qp20', 'fr', 1, 'https://ror.org/00tm1qp20 Laboratoire d’Informatique Signal et Image de la CĆ“te d’Opale Opal Coast Signal and Image Computer Laboratory'),
(95081, 'https://ror.org/05nex2951', 'fr', 1, 'https://ror.org/05nex2951 International Astronomical Union Union astronomique internationale'),
(95082, 'https://ror.org/04kkazx03', 'en', 1, 'https://ror.org/04kkazx03 University of Delta Agbor'),
(95083, 'https://ror.org/05dk2r620', 'en', 1, 'https://ror.org/05dk2r620 Centre de recherche Douglas Douglas Mental Health University Institute HƓpital Douglas Institut universitaire en santƩ mentale douglas'),
(95084, 'https://ror.org/0220k9r37', 'fr', 0, 'https://ror.org/0220k9r37 Paris Descartes University UniversitƩ Paris Descartes'),
(95085, 'https://ror.org/05qt8tf94', 'en', 1, 'https://ror.org/05qt8tf94 Cyprus University of Technology Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(95086, 'https://ror.org/0438g3j88', 'no_lang_code', 0, 'https://ror.org/0438g3j88 Freescale Semiconductor (France)'),
(95087, 'https://ror.org/04g2vpn86', 'en', 1, 'https://ror.org/04g2vpn86 Royal Holloway University of London'),
(95088, 'https://ror.org/05vb1zw21', 'es', 1, 'https://ror.org/05vb1zw21 Red Iberoamericana de Neurociencia Cognitiva'),
(95089, 'https://ror.org/032ry8695', 'ca', 1, 'https://ror.org/032ry8695 Instituto del Conurbano'),
(95090, 'https://ror.org/007yrhe07', 'fr', 1, 'https://ror.org/007yrhe07 Laboratoire Interdisciplinaire Sciences, Innovations, SociƩtƩs'),
(95091, 'https://ror.org/04tqhj682', 'fr', 1, 'https://ror.org/04tqhj682 Agence franƧaise de dƩveloppement French Development Agency'),
(95092, 'https://ror.org/02t2d3c36', 'en', 1, 'https://ror.org/02t2d3c36 Seventh-day Adventist College of Education'),
(95093, 'https://ror.org/05cm0es58', 'no_lang_code', 1, 'https://ror.org/05cm0es58 Bayer (France)'),
(95094, 'https://ror.org/04ved1v49', 'fr', 1, 'https://ror.org/04ved1v49 Relais d''information sur les sciences de la cognition'),
(95095, 'https://ror.org/04daj8721', 'fr', 1, 'https://ror.org/04daj8721 France, AmƩriques, Espagne, SociƩtƩs, Pouvoirs, Acteurs'),
(95096, 'https://ror.org/05ebnp485', 'fr', 1, 'https://ror.org/05ebnp485 Fondation Fyssen Fyssen Foundation'),
(95097, 'https://ror.org/01rf5x574', 'fr', 1, 'https://ror.org/01rf5x574 Laboratoire de Psychologie Cognitive'),
(95098, 'https://ror.org/01db2yn10', 'no_lang_code', 0, 'https://ror.org/01db2yn10 Ceralink (United States)'),
(95099, 'https://ror.org/03jsbvj12', 'en', 1, 'https://ror.org/03jsbvj12 NSWC Carderock Division'),
(95100, 'https://ror.org/05qfbsy35', 'no_lang_code', 1, 'https://ror.org/05qfbsy35 Arkansas Power Electronics International'),
(95101, 'https://ror.org/05ek91318', 'no_lang_code', 1, 'https://ror.org/05ek91318 Orano (France)'),
(95102, 'https://ror.org/03e2syc87', 'fr', 1, 'https://ror.org/03e2syc87 Maison Asie Pacifique'),
(95103, 'https://ror.org/001anga17', 'fr', 0, 'https://ror.org/001anga17 UniversitƩ Bordeaux-I'),
(95104, 'https://ror.org/020frhs78', 'fr', 1, 'https://ror.org/020frhs78 Agence internationale de l''Ʃnergie International Energy Agency'),
(95105, 'https://ror.org/03j7mz841', 'fr', 1, 'https://ror.org/03j7mz841 Centre d’Archives en Philosophie, Histoire et Ɖdition des Sciences'),
(95106, 'https://ror.org/021x7r354', 'fr', 1, 'https://ror.org/021x7r354 BiodiversitƩ et Biotechnologie Fongiques Fungal Biodiversity and Biotechnology'),
(95107, 'https://ror.org/00jyr0d86', 'en', 1, 'https://ror.org/00jyr0d86 Departamento de Seguridad Nacional de los Estados Unidos United States Department of Homeland Security'),
(95108, 'https://ror.org/03am1eg44', 'en', 0, 'https://ror.org/03am1eg44 NHS Digital'),
(95109, 'https://ror.org/01kvhwz50', 'fr', 1, 'https://ror.org/01kvhwz50 Direction des Services de la Navigation AƩrienne Directorate of Air Navigation Services'),
(95110, 'https://ror.org/034gk7456', 'fr', 1, 'https://ror.org/034gk7456 Bases de donnƩes sur la BiodiversitƩ, Ecologie, Environnement et SociƩtƩs'),
(95111, 'https://ror.org/006yrbb28', 'fr', 1, 'https://ror.org/006yrbb28 Ɖcole de Psychologues Praticien'),
(95112, 'https://ror.org/00mpxgs49', 'fr', 1, 'https://ror.org/00mpxgs49 Centre d’histoire de Sciences Po Sciences Po Centre for History'),
(95113, 'https://ror.org/023ffhx15', 'fr', 1, 'https://ror.org/023ffhx15 Laboratoire Roberval'),
(95114, 'https://ror.org/055q9jt53', 'fr', 1, 'https://ror.org/055q9jt53 Laboratoire Arts et pratiques du texte, de l’image, de l’écran et de la scĆØne'),
(95115, 'https://ror.org/041dsyz88', 'fr', 1, 'https://ror.org/041dsyz88 Laboratoire de Recherche sur la Croissance Cellulaire, la RƩparation et la RƩgƩnƩration Tissulaires'),
(95116, 'https://ror.org/00c62kq26', 'fr', 1, 'https://ror.org/00c62kq26 Institut MƩditerranƩen des Sciences de l''Information et de la Communication'),
(95117, 'https://ror.org/04db8q179', 'no_lang_code', 1, 'https://ror.org/04db8q179 Agri Obtentions (France)'),
(95118, 'https://ror.org/046nvst19', 'en', 1, 'https://ror.org/046nvst19 Nasjonalt folkehelseinstitutt Norwegian Institute of Public Health'),
(95119, 'https://ror.org/01yekza56', 'fr', 1, 'https://ror.org/01yekza56 National Forests Office Office National des ForĆŖts'),
(95120, 'https://ror.org/01xdxaz62', 'fr', 1, 'https://ror.org/01xdxaz62 Safety and Quality of Processed Fruit and Vegetables SƩcuritƩ et QualitƩ des Produits d''Origine VƩgƩtale'),
(95121, 'https://ror.org/029s6hd13', 'fr', 1, 'https://ror.org/029s6hd13 Centre Hospitalier Universitaire de Poitiers'),
(95122, 'https://ror.org/04bgzse17', 'fr', 1, 'https://ror.org/04bgzse17 Chimie Biologie Innovation'),
(95123, 'https://ror.org/04xw96n82', 'en', 1, 'https://ror.org/04xw96n82 Baku Eurasian University'),
(95124, 'https://ror.org/04ef65y11', 'fr', 1, 'https://ror.org/04ef65y11 Institut de Chimie MolƩculaire de Paris : organique, inorganique et biologique'),
(95125, 'https://ror.org/00rg8bd79', 'en', 1, 'https://ror.org/00rg8bd79 Epigenetics, Data, Politics'),
(95126, 'https://ror.org/05ps02017', 'en', 1, 'https://ror.org/05ps02017 World Organisation for Animal Health'),
(95127, 'https://ror.org/027wmnr48', 'en', 1, 'https://ror.org/027wmnr48 NextSense'),
(95128, 'https://ror.org/04hzkx672', 'fr', 1, 'https://ror.org/04hzkx672 Equipe de Recherche en EpidƩmiologie Nutritionnelle Nutritional Epidemiology Research Unit'),
(95129, 'https://ror.org/01thw2g46', 'fr', 1, 'https://ror.org/01thw2g46 Laboratoire de Biochimie Laboratory of BioChemistry'),
(95130, 'https://ror.org/0262br971', 'en', 1, 'https://ror.org/0262br971 Innovation and Development in Agriculture and Food'),
(95131, 'https://ror.org/00t9y0z13', 'fr', 1, 'https://ror.org/00t9y0z13 Institut de Radioastronomie MillimƩtrique International Research Institute for Radio Astronomy'),
(95132, 'https://ror.org/05263cd97', 'fr', 0, 'https://ror.org/05263cd97 Laboratoire Physiologie Biotechnologie des Algues Physiology and Biotechnology of Algae laboratory'),
(95133, 'https://ror.org/027mhn368', 'en', 1, 'https://ror.org/027mhn368 U.S. Army Engineer Research and Development Center'),
(95134, 'https://ror.org/008pt4x48', 'fr', 0, 'https://ror.org/008pt4x48 Laboratoire des MatƩriaux Surfaces et ProcƩdƩs pour la Catalyse'),
(95135, 'https://ror.org/00j4fc191', 'en', 1, 'https://ror.org/00j4fc191 Quang Nam University'),
(95136, 'https://ror.org/05hby3g70', 'fr', 0, 'https://ror.org/05hby3g70 Laboratoire sur le Langage, le Cerveau et la Cognition Laboratory for Language, Brain and Cognition'),
(95137, 'https://ror.org/05v2x6b69', 'no_lang_code', 1, 'https://ror.org/05v2x6b69 Imam Khomeini Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų§Ł…Ų§Ł… Ų®Ł…ŪŒŁ†ŪŒ تهران'),
(95138, 'https://ror.org/02zas6g74', 'en', 0, 'https://ror.org/02zas6g74 Conseil RƩgional Limousin Limousin Regional Council'),
(95139, 'https://ror.org/01e4wd589', 'fr', 1, 'https://ror.org/01e4wd589 Centre de GƩnƩtique MƩdicale de Marseille Marseille Medical Genetics'),
(95140, 'https://ror.org/05gscwg02', 'fr', 1, 'https://ror.org/05gscwg02 Laboratoire Souterrain Ć  Bas Bruit Low Noise Inter-Disciplinary Underground Science & Technology'),
(95141, 'https://ror.org/00je5w718', 'en', 1, 'https://ror.org/00je5w718 Police Staff College পুলিশ ą¦øą§ą¦Ÿą¦¾ą¦« ą¦•ą¦²ą§‡ą¦œ'),
(95142, 'https://ror.org/0037hx413', 'id', 1, 'https://ror.org/0037hx413 UIN Raden Mas Said Surakarta'),
(95143, 'https://ror.org/0120za682', 'no_lang_code', 1, 'https://ror.org/0120za682 Telsy Telsy (Italy)'),
(95144, 'https://ror.org/03bbjky47', 'fr', 1, 'https://ror.org/03bbjky47 Laboratoire CarMeN'),
(95145, 'https://ror.org/03kfrvm58', 'en', 1, 'https://ror.org/03kfrvm58 Institut d’Etudes Sociales et MĆ©diatiques Social and Media Studies Institute معهدالدراسات Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© و Ų§Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ©'),
(95146, 'https://ror.org/02trpr211', 'tr', 1, 'https://ror.org/02trpr211 Değerler Eğitimi Merkezi'),
(95147, 'https://ror.org/02cyaqf66', 'fr', 1, 'https://ror.org/02cyaqf66 International Criminal Police Organization Organisation internationale de police criminelle'),
(95148, 'https://ror.org/0338wkj94', 'fr', 1, 'https://ror.org/0338wkj94 HƓpital Sainte-Marguerite'),
(95149, 'https://ror.org/0502xk698', 'en', 1, 'https://ror.org/0502xk698 NSWC Philadelphia Division'),
(95150, 'https://ror.org/01x3gbx83', 'fr', 0, 'https://ror.org/01x3gbx83 French National Institute for Agricultural Research Institut National de la Recherche Agronomique'),
(95151, 'https://ror.org/045q3tp69', 'fr', 1, 'https://ror.org/045q3tp69 Centre d’études des langues et littĆ©ratures anciennes et modernes'),
(95152, 'https://ror.org/048ryj409', 'fr', 1, 'https://ror.org/048ryj409 Laboratoire Passages XX_XXI'),
(95153, 'https://ror.org/056mt4481', 'no_lang_code', 1, 'https://ror.org/056mt4481 Framatome (France)'),
(95154, 'https://ror.org/0512ckg88', 'fr', 1, 'https://ror.org/0512ckg88 Union des HƓpitaux pour les Achats Union of Hospitals for Purchasing'),
(95155, 'https://ror.org/003mzyg61', 'en', 1, 'https://ror.org/003mzyg61 Construction Engineering Research Laboratory'),
(95156, 'https://ror.org/00yzbmy59', 'fr', 1, 'https://ror.org/00yzbmy59 Institut supƩrieur des arts de Toulouse'),
(95157, 'https://ror.org/05y503v71', 'fr', 1, 'https://ror.org/05y503v71 Institut National de la Recherche Agronomique'),
(95158, 'https://ror.org/0250wyd34', 'no_lang_code', 1, 'https://ror.org/0250wyd34 TDK (United States)'),
(95159, 'https://ror.org/01qa4rf46', 'fr', 1, 'https://ror.org/01qa4rf46 DƩlƩgation RƩgionale Grand Ouest'),
(95160, 'https://ror.org/041v99f68', 'fr', 1, 'https://ror.org/041v99f68 Pharmacologie des anti-infectieux et antibiorƩsistance Pharmacology of Antimicrobial Agents and antibioResistance'),
(95161, 'https://ror.org/02cmt9z73', 'fr', 1, 'https://ror.org/02cmt9z73 Agence pour les MathƩmatiques en Interaction avec l''Entreprise et la SociƩtƩ'),
(95162, 'https://ror.org/05rnj8444', 'en', 1, 'https://ror.org/05rnj8444 Indo-French Centre for Applied Mathematics'),
(95163, 'https://ror.org/04nx64s73', 'en', 1, 'https://ror.org/04nx64s73 Offinso College of Education'),
(95164, 'https://ror.org/00x5jmr79', 'fr', 0, 'https://ror.org/00x5jmr79 Structure et PropriƩtƩs d''Architectures MolƩculaires'),
(95165, 'https://ror.org/036b8pc68', 'de', 1, 'https://ror.org/036b8pc68 Stiftung Alfried Krupp Kolleg Greifswald'),
(95166, 'https://ror.org/04dpm2z73', 'es', 1, 'https://ror.org/04dpm2z73 Institut Pasteur de Montevideo'),
(95167, 'https://ror.org/043x6pn39', 'fr', 1, 'https://ror.org/043x6pn39 HƓpital privƩ du Confluent'),
(95168, 'https://ror.org/00drqbm04', 'en', 1, 'https://ror.org/00drqbm04 Sheikh Saqr Laboratory'),
(95169, 'https://ror.org/0230m6b87', 'en', 1, 'https://ror.org/0230m6b87 Rufus Giwa Polytechnic'),
(95170, 'https://ror.org/03cvv1m29', 'es', 1, 'https://ror.org/03cvv1m29 Fundación Universitaria María Cano'),
(95171, 'https://ror.org/01h6z2q77', 'fr', 1, 'https://ror.org/01h6z2q77 Ɖquipe de Recherche sur les Mutations de l''Europe et de ses SociĆ©tĆ©s'),
(95172, 'https://ror.org/02nz6zk20', 'en', 1, 'https://ror.org/02nz6zk20 Humanities Montana'),
(95173, 'https://ror.org/01rcjd521', 'en', 1, 'https://ror.org/01rcjd521 Israel National Research Center for Electrochemical Propulsion'),
(95174, 'https://ror.org/016df9e78', 'en', 1, 'https://ror.org/016df9e78 Nevada Humanities'),
(95175, 'https://ror.org/03ht2dx40', 'fr', 1, 'https://ror.org/03ht2dx40 Institut Pasteur du Cambodge'),
(95176, 'https://ror.org/02ysgwq33', 'fr', 1, 'https://ror.org/02ysgwq33 Institut Pasteur de Dakar'),
(95177, 'https://ror.org/044xe8e90', 'fr', 1, 'https://ror.org/044xe8e90 Psychologie : Interactions, Temps, Emotions, Cognition'),
(95178, 'https://ror.org/01aa12z17', 'id', 1, 'https://ror.org/01aa12z17 Universitas Islam Negeri Ar-Raniry Universitas Islam Negeri Ar-Raniry Banda Aceh'),
(95179, 'https://ror.org/03eq8fa86', 'fr', 1, 'https://ror.org/03eq8fa86 UnitƩ de Recherche Pluridisciplinaire Sport, SantƩ, SociƩtƩ'),
(95180, 'https://ror.org/05tcbgw10', 'es', 1, 'https://ror.org/05tcbgw10 Universidad Tecnologica de Durango'),
(95181, 'https://ror.org/021xexe56', 'fr', 1, 'https://ror.org/021xexe56 Laboratoire AimƩ Cotton'),
(95182, 'https://ror.org/016hv6q66', 'es', 1, 'https://ror.org/016hv6q66 Escuela Nacional de AntropologĆ­a e Historia'),
(95183, 'https://ror.org/03vb88585', 'en', 1, 'https://ror.org/03vb88585 Abbott Diabetes Care Abbott Diabetes Care (United States)'),
(95184, 'https://ror.org/01erkkd87', 'en', 1, 'https://ror.org/01erkkd87 Methodist College of Education'),
(95185, 'https://ror.org/01r8ww931', 'en', 1, 'https://ror.org/01r8ww931 North Carolina Humanities Council'),
(95186, 'https://ror.org/010nk4c68', 'fr', 1, 'https://ror.org/010nk4c68 Institut de Recherche sur les Composants logiciels et matƩriels pour l''Information et la Communication AvancƩe'),
(95187, 'https://ror.org/02ggnyt49', 'fr', 1, 'https://ror.org/02ggnyt49 Ministry of Justice MinistĆØre de la Justice'),
(95188, 'https://ror.org/05hp04238', 'fr', 1, 'https://ror.org/05hp04238 Transitions Savoirs MƩdias Territoires'),
(95189, 'https://ror.org/01ymr5447', 'it', 1, 'https://ror.org/01ymr5447 Biogem Biologia e Genetica Molecolare nel Mezzogiorno'),
(95190, 'https://ror.org/02yknsc93', 'en', 1, 'https://ror.org/02yknsc93 McCoy College of Education'),
(95191, 'https://ror.org/02yvha224', 'fr', 1, 'https://ror.org/02yvha224 Centre pour les humanitƩs numƩriques et l''histoire de la justice'),
(95192, 'https://ror.org/03st4jm89', 'en', 1, 'https://ror.org/03st4jm89 Moscow University of the Ministry of Internal Affairs of Russia Московский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации имени Š’. ŠÆ. ŠšŠøŠŗŠ¾Ń‚Ń'),
(95193, 'https://ror.org/046p5eg67', 'sv', 1, 'https://ror.org/046p5eg67 Futurum - Akademin fƶr HƤlsa och VƄrd'),
(95194, 'https://ror.org/04h1tgj82', 'en', 1, 'https://ror.org/04h1tgj82 Humanities North Dakota'),
(95195, 'https://ror.org/00twdhr48', 'en', 1, 'https://ror.org/00twdhr48 Korea Hydro and Nuclear Power (Korea) ķ•œźµ­ģˆ˜ė „ģ›ģžė „'),
(95196, 'https://ror.org/00tt79z10', 'fr', 1, 'https://ror.org/00tt79z10 UnitƩ de MƩcanique de Lille - Joseph Boussinesq'),
(95197, 'https://ror.org/006vqpx82', 'fr', 1, 'https://ror.org/006vqpx82 Laboratoire de Virologie - PathogenĆØse virale'),
(95198, 'https://ror.org/00y1ekh28', 'en', 1, 'https://ror.org/00y1ekh28 University of Education, Winneba'),
(95199, 'https://ror.org/051635438', 'en', 1, 'https://ror.org/051635438 å…¬ē›Šč²”å›£ę³•äŗŗćƒ¤ć‚Æćƒ«ćƒˆćƒ»ćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶č²”å›£ Yakult Bio-Science Foundation Yakult Bio-Science Foundation (Japan)'),
(95200, 'https://ror.org/028p0gk46', 'fr', 1, 'https://ror.org/028p0gk46 Ramsay SantƩ HƓpital privƩ des Peupliers'),
(95201, 'https://ror.org/05d6q6m27', 'en', 1, 'https://ror.org/05d6q6m27 Beijing Intelligent Entropy Science & Technology Co. Ltd.'),
(95202, 'https://ror.org/042vxj938', 'en', 1, 'https://ror.org/042vxj938 Karnavati University'),
(95203, 'https://ror.org/04wbsq162', 'fr', 1, 'https://ror.org/04wbsq162 Institut thƩmatique SantƩ Publique'),
(95204, 'https://ror.org/03629my43', 'fr', 1, 'https://ror.org/03629my43 Centre d''Etudes en Civilisations, Langues et Littératures Etrangères'),
(95205, 'https://ror.org/00ndvqf03', 'fr', 1, 'https://ror.org/00ndvqf03 Laboratoire ModƩlisation et Exploration des MatƩriaux'),
(95206, 'https://ror.org/03qy9z186', 'en', 1, 'https://ror.org/03qy9z186 Institute for Translational Research in Inflammation'),
(95207, 'https://ror.org/00aqyg778', 'en', 1, 'https://ror.org/00aqyg778 Kwalejin Ilimi ta St. Teresa St. Teresa''s College of Education'),
(95208, 'https://ror.org/03rvrjk28', 'fr', 1, 'https://ror.org/03rvrjk28 Facteurs de risque et dƩterminants molƩculaires des maladies liƩes au vieillissement'),
(95209, 'https://ror.org/02yv7k107', 'en', 1, 'https://ror.org/02yv7k107 Kwalejin Ilimi ta Wesley Wesley College of Education'),
(95210, 'https://ror.org/017fdfe13', 'en', 1, 'https://ror.org/017fdfe13 Cluster in Biomedicine'),
(95211, 'https://ror.org/00cs28a13', 'en', 1, 'https://ror.org/00cs28a13 KISTI National Supercomputing Center źµ­ź°€ģŠˆķ¼ģ»“ķ“ØķŒ…ģ„¼ķ„°ėŠ”'),
(95212, 'https://ror.org/00cs79398', 'en', 1, 'https://ror.org/00cs79398 Japan Cardiovascular Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗ å¾Ŗē’°å™Øē—…ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(95213, 'https://ror.org/03c10r560', 'en', 1, 'https://ror.org/03c10r560 Humanities Nebraska'),
(95214, 'https://ror.org/038k8pw28', 'fr', 1, 'https://ror.org/038k8pw28 School of Engineering of the City of Paris Ɖcole des IngĆ©nieurs de la Ville de Paris'),
(95215, 'https://ror.org/02pt9a543', 'pt', 1, 'https://ror.org/02pt9a543 Autarquia de Ensino Superior de Garanhuns'),
(95216, 'https://ror.org/0371hm317', 'en', 1, 'https://ror.org/0371hm317 Humanities West'),
(95217, 'https://ror.org/04w66ad08', 'en', 1, 'https://ror.org/04w66ad08 Agricultural Sciences and Natural Resources University of Khuzestan'),
(95218, 'https://ror.org/00zhs8v21', 'es', 1, 'https://ror.org/00zhs8v21 Universidad de Ciego de Ávila Universidad de Ciego de Ávila "MÔximo Gómez BÔez"'),
(95219, 'https://ror.org/03qvpys73', 'es', 1, 'https://ror.org/03qvpys73 Instituto Tecnológico de Aguascalientes'),
(95220, 'https://ror.org/0182ff951', 'fr', 1, 'https://ror.org/0182ff951 Centre d''Ʃtudes et de recherche en droit administratif, constitutionnel, financier et fiscal'),
(95221, 'https://ror.org/03dd7qj98', 'en', 1, 'https://ror.org/03dd7qj98 Wenzhou University of Technology'),
(95222, 'https://ror.org/03c3m6m66', 'en', 1, 'https://ror.org/03c3m6m66 Lille Inflammation Research International Center'),
(95223, 'https://ror.org/02dvx0516', 'fr', 1, 'https://ror.org/02dvx0516 Groupe de Recherche sur les formes Injectables et les Technologies AssociƩes'),
(95224, 'https://ror.org/027ryxs60', 'en', 1, 'https://ror.org/027ryxs60 Catholic University of Santa María Universidad Católica de Santa María'),
(95225, 'https://ror.org/02f9zrr09', 'no_lang_code', 1, 'https://ror.org/02f9zrr09 Novartis (Switzerland)'),
(95226, 'https://ror.org/0018tj392', 'en', 1, 'https://ror.org/0018tj392 Humanities Kansas'),
(95227, 'https://ror.org/05c602238', 'en', 1, 'https://ror.org/05c602238 Vermont Humanities'),
(95228, 'https://ror.org/04r8mt206', 'en', 1, 'https://ror.org/04r8mt206 Yamaguchi Heisei Hospital'),
(95229, 'https://ror.org/03jbcxj66', 'pt', 1, 'https://ror.org/03jbcxj66 Faculdade de Tecnologia de SĆ£o Paulo'),
(95230, 'https://ror.org/05gtjpd57', 'en', 1, 'https://ror.org/05gtjpd57 Salale University'),
(95231, 'https://ror.org/02tare285', 'en', 1, 'https://ror.org/02tare285 National Institute of Technology, Puducherry ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤¦ą„ą¤šą„ą¤šą„‡ą¤°ą„€, ą¤•ą¤¾ą¤°ą„ˆą¤•ą„ą¤•ą¤¾ą¤² ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®ŖąÆą®¤ąÆą®šąÆą®šąÆ‡ą®°ą®æ, ą®•ą®¾ą®°ąÆˆą®•ąÆą®•ą®¾ą®²ąÆ'),
(95232, 'https://ror.org/03vyv3y87', 'fr', 1, 'https://ror.org/03vyv3y87 Haute Technologie Animale Grenobloise'),
(95233, 'https://ror.org/01q3rcc14', 'en', 1, 'https://ror.org/01q3rcc14 Indiana Humanities'),
(95234, 'https://ror.org/05pw23b17', 'fr', 1, 'https://ror.org/05pw23b17 Agglomeration Community of La Rochelle CommunautƩ d''agglomƩration de La Rochelle'),
(95235, 'https://ror.org/001dmmw97', 'en', 1, 'https://ror.org/001dmmw97 Leipzig Research Centre Global Dynamics'),
(95236, 'https://ror.org/02z1r3k29', 'en', 1, 'https://ror.org/02z1r3k29 Kwalejin Ilimi ta St. Ambrose St. Ambrose College of Education');
INSERT INTO `rors` VALUES
(95237, 'https://ror.org/037kxc307', 'en', 1, 'https://ror.org/037kxc307 Nickel Institute'),
(95238, 'https://ror.org/05p9z4t69', 'en', 1, 'https://ror.org/05p9z4t69 Pacific University'),
(95239, 'https://ror.org/03k2z3e59', 'en', 1, 'https://ror.org/03k2z3e59 KolaDaisi University'),
(95240, 'https://ror.org/020yme056', 'de', 1, 'https://ror.org/020yme056 Bundesinstitut für Kultur und Geschichte des östlichen Europa'),
(95241, 'https://ror.org/02vwv4x74', 'en', 1, 'https://ror.org/02vwv4x74 Ohio Humanities Council'),
(95242, 'https://ror.org/01zrk7293', 'fr', 1, 'https://ror.org/01zrk7293 Physiopathogénèse et Traitement des Maladies du Foie'),
(95243, 'https://ror.org/02zm1vy19', 'pt', 1, 'https://ror.org/02zm1vy19 Catavento Instituto'),
(95244, 'https://ror.org/01q3kj769', 'fr', 1, 'https://ror.org/01q3kj769 Laboratoire de Droit International et EuropƩen'),
(95245, 'https://ror.org/05y5s3h28', 'fr', 1, 'https://ror.org/05y5s3h28 Plant Health Institute de Montpellier'),
(95246, 'https://ror.org/04q29nn62', 'no_lang_code', 1, 'https://ror.org/04q29nn62 OncoThAI'),
(95247, 'https://ror.org/037wke960', 'en', 1, 'https://ror.org/037wke960 Foreign, Commonwealth & Development Office'),
(95248, 'https://ror.org/012mse022', 'en', 1, 'https://ror.org/012mse022 Rhode Island Council for the Humanities'),
(95249, 'https://ror.org/02kj5x347', 'en', 1, 'https://ror.org/02kj5x347 Sir Salimullah Medical College'),
(95250, 'https://ror.org/00embpk79', 'en', 1, 'https://ror.org/00embpk79 East West College of Natural Medicine'),
(95251, 'https://ror.org/05gd4yq49', 'fr', 1, 'https://ror.org/05gd4yq49 Institut de Biologie de Lille'),
(95252, 'https://ror.org/02dyaew97', 'fr', 1, 'https://ror.org/02dyaew97 Laboratoire de physique des Solides Laboratory of Solid State Physics'),
(95253, 'https://ror.org/020m4fx82', 'en', 1, 'https://ror.org/020m4fx82 Oregon Humanities'),
(95254, 'https://ror.org/01px0dw39', 'en', 1, 'https://ror.org/01px0dw39 Pratap University'),
(95255, 'https://ror.org/02fw8mx86', 'no_lang_code', 1, 'https://ror.org/02fw8mx86 Textron Systems (Germany)'),
(95256, 'https://ror.org/05dfqh778', 'en', 1, 'https://ror.org/05dfqh778 Research Institute for Sustainable Humanosphere äŗ¬éƒ½å¤§å­¦ē”Ÿå­˜åœē ”ē©¶ę‰€'),
(95257, 'https://ror.org/02gx2bb72', 'fr', 1, 'https://ror.org/02gx2bb72 Society of Dramatic Authors and Composers SociƩtƩ des Auteurs et Compositeurs Dramatiques'),
(95258, 'https://ror.org/05fagpw72', 'en', 1, 'https://ror.org/05fagpw72 Wenhua College ę–‡åŽå­¦é™¢'),
(95259, 'https://ror.org/03r7e7711', 'fr', 1, 'https://ror.org/03r7e7711 Louvre-Lens MusƩe du Louvre-Lens'),
(95260, 'https://ror.org/03hdf3w38', 'en', 1, 'https://ror.org/03hdf3w38 Northeastern University London'),
(95261, 'https://ror.org/01f5c5978', 'fr', 1, 'https://ror.org/01f5c5978 Centre d''Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse'),
(95262, 'https://ror.org/056qzgq67', 'en', 1, 'https://ror.org/056qzgq67 Georgia Humanities Council'),
(95263, 'https://ror.org/03gdzfa52', 'it', 1, 'https://ror.org/03gdzfa52 Seminario Arcivescovile di Milano'),
(95264, 'https://ror.org/01zefvs55', 'fr', 1, 'https://ror.org/01zefvs55 Immunity and Cancer ImmunitƩ et Cancer'),
(95265, 'https://ror.org/05bab7f08', 'en', 1, 'https://ror.org/05bab7f08 Humanities Tennessee'),
(95266, 'https://ror.org/02ncz7991', 'en', 1, 'https://ror.org/02ncz7991 Field Applied Research Australia'),
(95267, 'https://ror.org/01wjxf448', 'fr', 1, 'https://ror.org/01wjxf448 Aquitaine Regional Council Conseil RƩgional d''Aquitaine'),
(95268, 'https://ror.org/01xbd2h58', 'fr', 1, 'https://ror.org/01xbd2h58 UnitƩ Mixte de Recherche sur les Fromages'),
(95269, 'https://ror.org/03m8vkq32', 'fr', 1, 'https://ror.org/03m8vkq32 French National Cancer Institute Institut National du Cancer'),
(95270, 'https://ror.org/035pbs233', 'fr', 1, 'https://ror.org/035pbs233 Lyon Genou Centre Albert Trillat'),
(95271, 'https://ror.org/01q8rrk81', 'en', 1, 'https://ror.org/01q8rrk81 Stephan Angeloff Institute of Microbiology Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ŠŖŠ¢ ŠŸŠž ŠœŠ˜ŠšŠ ŠžŠ‘Š˜ŠžŠ›ŠžŠ“Š˜ŠÆ Дтефан Ангелов'),
(95272, 'https://ror.org/0160ba067', 'en', 1, 'https://ror.org/0160ba067 Humanities Council of Washington'),
(95273, 'https://ror.org/01nwn6r98', 'en', 1, 'https://ror.org/01nwn6r98 Sinopharm Animal Health Co., Ltd. Sinopharm Animal Health Co., Ltd. (China) å›½čÆé›†å›¢åŠØē‰©äæå„č‚”ä»½ęœ‰é™å…¬åø'),
(95274, 'https://ror.org/03skccr46', 'en', 1, 'https://ror.org/03skccr46 Guam Humanities Council'),
(95275, 'https://ror.org/055a4rj94', 'en', 1, 'https://ror.org/055a4rj94 Kashi University 喀什大学'),
(95276, 'https://ror.org/035gq6r08', 'fr', 1, 'https://ror.org/035gq6r08 Laboratoire d''Excellence en Recherche sur le MƩdicament et l''Innovation ThƩrapeutique Laboratory of Excellence in Research on Medication and Innovative Therapeutics'),
(95277, 'https://ror.org/02ac0n114', 'fr', 1, 'https://ror.org/02ac0n114 Centre Transdisciplinaire d''ƉpistĆ©mologie de la LittĆ©rature et des Arts vivants'),
(95278, 'https://ror.org/01r22mr83', 'en', 1, 'https://ror.org/01r22mr83 University of Ghana'),
(95279, 'https://ror.org/013z99a51', 'en', 1, 'https://ror.org/013z99a51 AERIS/ICARE Data and Services Center'),
(95280, 'https://ror.org/02z1xqy79', 'en', 1, 'https://ror.org/02z1xqy79 Al-Faruq College of Education Al-Faruq taʼlim kolleji ŁƒŁ„ŁŠŲ© Ų§Ł„ŁŲ§Ų±ŁˆŁ‚ Ł„Ł„ŲŖŲ±ŲØŁŠŲ©'),
(95281, 'https://ror.org/01569q067', 'en', 1, 'https://ror.org/01569q067 Bia Lamplighter College of Education'),
(95282, 'https://ror.org/009jmsj64', 'fr', 1, 'https://ror.org/009jmsj64 Syndicat des SƩlectionneurs Avicoles et Aquacoles FranƧais'),
(95283, 'https://ror.org/01bn5c048', 'fr', 1, 'https://ror.org/01bn5c048 Laboratoire de Photonique Quantique et MolƩculaire Laboratory of Quantum and Molecular Photonics'),
(95284, 'https://ror.org/00m090414', 'fr', 1, 'https://ror.org/00m090414 European Center for the Humanities and Social Sciences Maison EuropƩenne des Sciences de l''Homme et de la SociƩtƩ'),
(95285, 'https://ror.org/03ew9k907', 'en', 1, 'https://ror.org/03ew9k907 New Mexico Humanities Council'),
(95286, 'https://ror.org/05qy9ka59', 'fr', 1, 'https://ror.org/05qy9ka59 Laboratoire d''imagerie translationnelle en oncologie Laboratory of Translational Imaging in Oncology'),
(95287, 'https://ror.org/032k75171', 'en', 1, 'https://ror.org/032k75171 Carnot Institute Qualiment Institut Carnot Qualiment'),
(95288, 'https://ror.org/03sypqe31', 'fr', 1, 'https://ror.org/03sypqe31 Systèmes Membranaires, Photobiologie, Stress et Détoxication'),
(95289, 'https://ror.org/04dsjbp13', 'fr', 1, 'https://ror.org/04dsjbp13 Maladies RAres du DEveloppement embryonnaire et du MEtabolisme'),
(95290, 'https://ror.org/049s0ch10', 'no_lang_code', 1, 'https://ror.org/049s0ch10 Rakon (France)'),
(95291, 'https://ror.org/01ndqne76', 'fr', 1, 'https://ror.org/01ndqne76 Action Against Hunger Action Contre la Faim'),
(95292, 'https://ror.org/023nfn818', 'es', 1, 'https://ror.org/023nfn818 Instituto Tecnológico de Conkal'),
(95293, 'https://ror.org/02en65a92', 'en', 1, 'https://ror.org/02en65a92 Open Molecular Software Foundation'),
(95294, 'https://ror.org/00zv6sd12', 'en', 1, 'https://ror.org/00zv6sd12 Amerika Samoa Humanities Council'),
(95295, 'https://ror.org/03d7ypa48', 'fr', 1, 'https://ror.org/03d7ypa48 Laboratoire Polytech''Lab'),
(95296, 'https://ror.org/02yd1yr68', 'en', 1, 'https://ror.org/02yd1yr68 Jinzhou Medical University é”¦å·žåŒ»ē§‘å¤§å­¦'),
(95297, 'https://ror.org/05dm3m993', 'fr', 1, 'https://ror.org/05dm3m993 ProtƩomique, RƩponse Inflammatoire et SpectromƩtrie de Masse'),
(95298, 'https://ror.org/03ty41p70', 'en', 1, 'https://ror.org/03ty41p70 Corpus Christi College'),
(95299, 'https://ror.org/04kpwcf85', 'en', 1, 'https://ror.org/04kpwcf85 UCLA Clinical and Translational Science Institute'),
(95300, 'https://ror.org/01hxy9878', 'en', 1, 'https://ror.org/01hxy9878 ColĆ”iste RĆ­oga na MĆ”inlianna in Ɖirinn Royal College of Surgeons in Ireland'),
(95301, 'https://ror.org/03ab0zs98', 'fr', 1, 'https://ror.org/03ab0zs98 Laboratoire de MathƩmatiques d''Orsay Mathematics Laboratory of Orsay'),
(95302, 'https://ror.org/01tkejf16', 'fr', 1, 'https://ror.org/01tkejf16 French Cooperative Thoracic Group Intergroupe Francophone de CancƩrologie Thoracique'),
(95303, 'https://ror.org/01h2qr957', 'fr', 1, 'https://ror.org/01h2qr957 Laboratoire de dƩveloppement instrumental et de mƩthodologies innovantes pour les Biens Culturels'),
(95304, 'https://ror.org/05r7z1k40', 'en', 1, 'https://ror.org/05r7z1k40 NOAA National Marine Fisheries Service Northwest Fisheries Science Center'),
(95305, 'https://ror.org/02sy42d13', 'en', 1, 'https://ror.org/02sy42d13 Bambino Gesù Children''s Hospital Ospedale Pediatrico Bambino Gesù'),
(95306, 'https://ror.org/05kstpb17', 'en', 1, 'https://ror.org/05kstpb17 Agogo Presbyterian Women''s College of Education'),
(95307, 'https://ror.org/04abwvq32', 'en', 1, 'https://ror.org/04abwvq32 Input Output (Singapore)'),
(95308, 'https://ror.org/05xanhp90', 'fr', 1, 'https://ror.org/05xanhp90 Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète'),
(95309, 'https://ror.org/04nqdwb39', 'tr', 1, 'https://ror.org/04nqdwb39 Mersin University Mersin Üniversitesi'),
(95310, 'https://ror.org/00bf7t669', 'no_lang_code', 1, 'https://ror.org/00bf7t669 Ushahidi, Inc. Ushahidi, Inc. (Kenya)'),
(95311, 'https://ror.org/04sqtjj61', 'fr', 1, 'https://ror.org/04sqtjj61 Institut Pasteur de Nouvelle CalƩdonie'),
(95312, 'https://ror.org/00h8wdb33', 'en', 1, 'https://ror.org/00h8wdb33 Federal Polytechnic, Bauchi'),
(95313, 'https://ror.org/01ty7bz40', 'en', 1, 'https://ror.org/01ty7bz40 Humanities Iowa'),
(95314, 'https://ror.org/039jywa41', 'fr', 1, 'https://ror.org/039jywa41 EPITECH European Institute of Information Technology European Institute of Technology Ɖcole pour l''informatique et les nouvelles technologies'),
(95315, 'https://ror.org/05g7w4342', 'en', 1, 'https://ror.org/05g7w4342 Chartered Institute of Personnel Management Sri Lanka (Inc.)'),
(95316, 'https://ror.org/024kdkj87', 'en', 1, 'https://ror.org/024kdkj87 Maine Humanities Council'),
(95317, 'https://ror.org/04dese585', 'en', 1, 'https://ror.org/04dese585 Indian Institute of Science Bangalore ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ভারতীয় ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦øą¦‚ą¦øą§ą¦„ą¦¾ ਭਾਰਤੀ ਵਿਗਿਆਨ ਅਦਾਰਾ ભારતીય ąŖµąŖæąŖœą«ąŖžąŖ¾ąŖØ ąŖøąŖ‚ąŖøą«ąŖ„ąŖ¾ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą± ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°øą±ˆą°Øą±ą°øą± ಭಾರತೀಯ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³† ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“øą“Æąµ»ą“øąµ'),
(95318, 'https://ror.org/01ynb8e46', 'en', 1, 'https://ror.org/01ynb8e46 Mills College'),
(95319, 'https://ror.org/02bczqy30', 'en', 1, 'https://ror.org/02bczqy30 Nature Inspires Creativity Engineers Lab'),
(95320, 'https://ror.org/04hbmw205', 'no_lang_code', 1, 'https://ror.org/04hbmw205 Abcerion Diagnostics GmbH Abcerion Diagnostics GmbH (Germany)'),
(95321, 'https://ror.org/04jbt2p93', 'fr', 1, 'https://ror.org/04jbt2p93 LabEx Chimie des SystĆØmes Complexes LabEx-Chemistry of Complex Systems'),
(95322, 'https://ror.org/04yb4j419', 'fr', 1, 'https://ror.org/04yb4j419 Institut Pasteur du Maroc'),
(95323, 'https://ror.org/02p6v5z38', 'en', 1, 'https://ror.org/02p6v5z38 Teikyo University Hospital, Mizonokuchi åøäŗ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žęŗå£ē—…é™¢'),
(95324, 'https://ror.org/0165awy39', 'en', 1, 'https://ror.org/0165awy39 Brite Divinity School'),
(95325, 'https://ror.org/049281z38', 'en', 1, 'https://ror.org/049281z38 Ilocos Training and Regional Medical Center'),
(95326, 'https://ror.org/00hz02a80', 'fr', 1, 'https://ror.org/00hz02a80 AdipositƩ MƩdullaire et Os Marrow Adiposity & Bone Lab'),
(95327, 'https://ror.org/00wh4bp03', 'fr', 0, 'https://ror.org/00wh4bp03 University of Montpellier 2 UniversitƩ Montpellier 2'),
(95328, 'https://ror.org/02egw5x81', 'fr', 1, 'https://ror.org/02egw5x81 Center for Research and Restoration of Museums of France Centre de recherche et de restauration des musƩes de France'),
(95329, 'https://ror.org/059h7s745', 'fr', 1, 'https://ror.org/059h7s745 UnitƩ de Recherche Clinique CƓte d''Azur'),
(95330, 'https://ror.org/04z066j96', 'en', 0, 'https://ror.org/04z066j96 Judson College'),
(95331, 'https://ror.org/00b80ez59', 'fr', 1, 'https://ror.org/00b80ez59 Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes Functional Ecology and Biogeochemistry of Soils and Agrosystems'),
(95332, 'https://ror.org/02mnw9q71', 'fr', 1, 'https://ror.org/02mnw9q71 Institut Galien Paris-Saclay'),
(95333, 'https://ror.org/0299rre20', 'en', 1, 'https://ror.org/0299rre20 National Marine Data and Information Service å›½å®¶ęµ·ę“‹äæ”ęÆäø­åæƒ'),
(95334, 'https://ror.org/05kz79f96', 'fr', 1, 'https://ror.org/05kz79f96 Physiologie et Physiopathlogie Endocriniennes'),
(95335, 'https://ror.org/009445d52', 'en', 1, 'https://ror.org/009445d52 Michigan Humanities Council'),
(95336, 'https://ror.org/03bkshf67', 'en', 1, 'https://ror.org/03bkshf67 Florida Humanities Council'),
(95337, 'https://ror.org/05pdhes44', 'en', 1, 'https://ror.org/05pdhes44 SEI Group CSR Foundation (Japan) å…¬ē›Šč²”å›£ę³•äŗŗä½å‹é›»å·„ć‚°ćƒ«ćƒ¼ćƒ—ē¤¾ä¼šč²¢ēŒ®åŸŗé‡‘'),
(95338, 'https://ror.org/05sm9a571', 'en', 1, 'https://ror.org/05sm9a571 Hyogo Prefectural Institute of Environmental Sciences'),
(95339, 'https://ror.org/0068n3903', 'en', 1, 'https://ror.org/0068n3903 Guangzhou Xinhua University å¹æå·žę–°åŽå­¦é™¢'),
(95340, 'https://ror.org/01c98q459', 'sv', 1, 'https://ror.org/01c98q459 Region Jƶnkƶpings lƤn'),
(95341, 'https://ror.org/05e6g0130', 'en', 1, 'https://ror.org/05e6g0130 Yeungnam University College'),
(95342, 'https://ror.org/02tm5ny37', 'fr', 1, 'https://ror.org/02tm5ny37 MƩdipole Garonne'),
(95343, 'https://ror.org/017tgbk05', 'fr', 0, 'https://ror.org/017tgbk05 Universitat de Tolosa University of Toulouse UniversitƩ de Toulouse'),
(95344, 'https://ror.org/02qkn0e91', 'fr', 1, 'https://ror.org/02qkn0e91 Institut Pasteur du Laos ąŗŖąŗ°ąŗ–ąŗ²ąŗšąŗ±ąŗ™ ປັດສະເຕີ ຄາວ'),
(95345, 'https://ror.org/023k5m874', 'en', 1, 'https://ror.org/023k5m874 Project Seagrass'),
(95346, 'https://ror.org/02an5tz90', 'en', 1, 'https://ror.org/02an5tz90 Gulf of Mexico Fishery Management Council'),
(95347, 'https://ror.org/011xg1225', 'en', 1, 'https://ror.org/011xg1225 Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences'),
(95348, 'https://ror.org/04zdwr798', 'fr', 1, 'https://ror.org/04zdwr798 Cancer Thematics Institute Institut ThƩmatique Cancer'),
(95349, 'https://ror.org/04s14fd24', 'en', 1, 'https://ror.org/04s14fd24 Xingzhi College Zhejiang Normal University ęµ™ę±ŸåøˆčŒƒå¤§å­¦č”ŒēŸ„å­¦é™¢'),
(95350, 'https://ror.org/038sy2k93', 'fr', 1, 'https://ror.org/038sy2k93 Laboratoire GƩnie et MatƩriaux Textiles'),
(95351, 'https://ror.org/0171wr661', 'es', 1, 'https://ror.org/0171wr661 Playa Ancha University of Educational Sciences Universidad de Playa Ancha de Ciencias de la Educación'),
(95352, 'https://ror.org/030mmee62', 'en', 1, 'https://ror.org/030mmee62 University of Fada N''gourma UniversitƩ de Fada N''gourma UniversitƩ de Fada-Ngourma'),
(95353, 'https://ror.org/03swgmm98', 'en', 1, 'https://ror.org/03swgmm98 Regional Institute of Education, Mysuru'),
(95354, 'https://ror.org/00g2j5111', 'en', 1, 'https://ror.org/00g2j5111 Institut Pasteur in Ho Chi Minh City'),
(95355, 'https://ror.org/0503y1475', 'en', 1, 'https://ror.org/0503y1475 Evangelical Presbyterian College of Education, Bimbilla Kwalejin Ilimi ta Presbyterian, Bimbilla'),
(95356, 'https://ror.org/03tv49k22', 'fr', 1, 'https://ror.org/03tv49k22 International Union for Conservation of Nature, French Committee Union Internationale Pour la Conservation de la Nature, ComitƩ FranƧais'),
(95357, 'https://ror.org/01wck0s05', 'en', 1, 'https://ror.org/01wck0s05 Hangzhou City University'),
(95358, 'https://ror.org/039ptg826', 'en', 1, 'https://ror.org/039ptg826 Atebubu College of Education'),
(95359, 'https://ror.org/02czghn94', 'en', 1, 'https://ror.org/02czghn94 Board of Cooperative Educational Services of Nassau County'),
(95360, 'https://ror.org/04ejags36', 'no_lang_code', 1, 'https://ror.org/04ejags36 Sciensano (Belgium)'),
(95361, 'https://ror.org/05q5mgf13', 'en', 1, 'https://ror.org/05q5mgf13 Life Science Foundation of Japan å…¬ē›Šč²”å›£ę³•äŗŗćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹ęŒÆčˆˆč²”å›£'),
(95362, 'https://ror.org/05jkzmq27', 'en', 1, 'https://ror.org/05jkzmq27 Mass Humanities'),
(95363, 'https://ror.org/02x2d4k59', 'en', 1, 'https://ror.org/02x2d4k59 Pfizer Health Research Foundation'),
(95364, 'https://ror.org/053rhfn23', 'en', 1, 'https://ror.org/053rhfn23 Ministry of Power ą¤µą¤æą¤¦ą„ą¤Æą„ą¤¤ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(95365, 'https://ror.org/01s6bpp92', 'en', 1, 'https://ror.org/01s6bpp92 International Open University'),
(95366, 'https://ror.org/00jsgkx16', 'en', 1, 'https://ror.org/00jsgkx16 Lille School of Management Research Center'),
(95367, 'https://ror.org/03xkgc756', 'fr', 1, 'https://ror.org/03xkgc756 Microbiologie Orale, ImmunothƩrapie et SantƩ'),
(95368, 'https://ror.org/01xjctg43', 'fi', 1, 'https://ror.org/01xjctg43 FolkhƤlsan Research Foundation FolkhƤlsanin TutkimussƤƤtiƶ'),
(95369, 'https://ror.org/0005r2j17', 'fr', 1, 'https://ror.org/0005r2j17 Institut Agronomique MƩditerranƩen de Montpellier Mediterranean Agronomic Institute of Montpellier'),
(95370, 'https://ror.org/04y75v050', 'no_lang_code', 1, 'https://ror.org/04y75v050 Textron Systems (United Kingdom)'),
(95371, 'https://ror.org/03rvn2t89', 'de', 1, 'https://ror.org/03rvn2t89 Institut für Klimaschutz, Energie und Mobilität'),
(95372, 'https://ror.org/03tap6r50', 'en', 1, 'https://ror.org/03tap6r50 Institute of Public Administration لمعهد ال؄دارة العامة'),
(95373, 'https://ror.org/03gvjya19', 'en', 1, 'https://ror.org/03gvjya19 Eastern International University ĐẔi hį»c Quốc tįŗæ Miền ĐƓng'),
(95374, 'https://ror.org/033c46s90', 'fr', 0, 'https://ror.org/033c46s90 European University of Brittany UniversitƩ EuropƩenne de Bretagne'),
(95375, 'https://ror.org/05tqpe068', 'en', 1, 'https://ror.org/05tqpe068 Gulf States Marine Fisheries Commission'),
(95376, 'https://ror.org/04b7zk537', 'no_lang_code', 1, 'https://ror.org/04b7zk537 TÜV Nord (United States)'),
(95377, 'https://ror.org/00rj6k558', 'no_lang_code', 1, 'https://ror.org/00rj6k558 Candela Candela (United States)'),
(95378, 'https://ror.org/01s3kre18', 'en', 1, 'https://ror.org/01s3kre18 Colorado Technical University'),
(95379, 'https://ror.org/04x361v68', 'en', 1, 'https://ror.org/04x361v68 Virginia Foundation for the Humanities'),
(95380, 'https://ror.org/00b7rd089', 'en', 1, 'https://ror.org/00b7rd089 Institute of Management Technology, Dubai'),
(95381, 'https://ror.org/00v416254', 'en', 1, 'https://ror.org/00v416254 Hį»c Viện CĆ“ng Nghệ Bʰu ChĆ­nh Viį»…n ThĆ“ng CĘ” sở TP. Hồ ChĆ­ Minh Posts and Telecommunications Institute of Technology - Ho Chi Minh City'),
(95382, 'https://ror.org/00kqccw49', 'en', 1, 'https://ror.org/00kqccw49 New York Council for the Humanities'),
(95383, 'https://ror.org/00rgfaj93', 'no_lang_code', 1, 'https://ror.org/00rgfaj93 Technischer Überwachungsverein TÜV Nord (Germany)'),
(95384, 'https://ror.org/00qa63322', 'en', 1, 'https://ror.org/00qa63322 Atal Bihari Vajpayee Institute of Medical Sciences and Dr. Ram Manohar Lohia Hospital'),
(95385, 'https://ror.org/03rxtdc22', 'fr', 1, 'https://ror.org/03rxtdc22 Ɖcole Normale SupĆ©rieure de Rennes'),
(95386, 'https://ror.org/03n7grz74', 'es', 1, 'https://ror.org/03n7grz74 Universidad Tecnologica de Tijuana'),
(95387, 'https://ror.org/01wsc1g26', 'id', 1, 'https://ror.org/01wsc1g26 Universitas Prasetiya Mulya'),
(95388, 'https://ror.org/05dy6wv04', 'en', 1, 'https://ror.org/05dy6wv04 Inflammation, Microbiome and Immunosurveillance'),
(95389, 'https://ror.org/03egfjv78', 'fr', 1, 'https://ror.org/03egfjv78 France Parkinson'),
(95390, 'https://ror.org/024hqb733', 'en', 1, 'https://ror.org/024hqb733 West Virginia Humanities Council'),
(95391, 'https://ror.org/0290xtv45', 'en', 1, 'https://ror.org/0290xtv45 Humanities Council of South Carolina'),
(95392, 'https://ror.org/01mdyh744', 'fr', 1, 'https://ror.org/01mdyh744 Erasmus Fund Fonds Erasme'),
(95393, 'https://ror.org/023a3xe97', 'en', 1, 'https://ror.org/023a3xe97 Al-Mustaqbal University ŁƒŁ„ŁŠŲ© المستقبل الجامعة'),
(95394, 'https://ror.org/0546x0d08', 'en', 1, 'https://ror.org/0546x0d08 Guangzhou Huashang College å¹æå·žåŽå•†å­¦é™¢'),
(95395, 'https://ror.org/04fd4a013', 'en', 1, 'https://ror.org/04fd4a013 Center for Process Studies'),
(95396, 'https://ror.org/02k4h0334', 'en', 1, 'https://ror.org/02k4h0334 NOAA National Ocean Service'),
(95397, 'https://ror.org/02vtmh618', 'en', 0, 'https://ror.org/02vtmh618 Foreign and Commonwealth Office Y Swyddfa Dramor a Chymanwlad'),
(95398, 'https://ror.org/035cy3r13', 'en', 1, 'https://ror.org/035cy3r13 Pasteur Hellenic Institute'),
(95399, 'https://ror.org/02wxq9k17', 'en', 1, 'https://ror.org/02wxq9k17 Claremont School of Theology'),
(95400, 'https://ror.org/04n03q057', 'fr', 1, 'https://ror.org/04n03q057 Centre d''Ʃtudes et de recherches en droit des procƩdures'),
(95401, 'https://ror.org/031zpdg16', 'en', 1, 'https://ror.org/031zpdg16 Minnesota Children''s Museum'),
(95402, 'https://ror.org/01zec9695', 'en', 1, 'https://ror.org/01zec9695 Center for Global Change and Sustainability Centro del Cambio Global y la Sustentabilidad A.C.'),
(95403, 'https://ror.org/0240khg33', 'fr', 1, 'https://ror.org/0240khg33 Polyclinique Bordeaux Nord Aquitaine'),
(95404, 'https://ror.org/040pk9f39', 'en', 1, 'https://ror.org/040pk9f39 GHU Paris psychiatrie & neurosciences'),
(95405, 'https://ror.org/04t5xt781', 'en', 1, 'https://ror.org/04t5xt781 Northeastern University'),
(95406, 'https://ror.org/01fjvrm82', 'en', 1, 'https://ror.org/01fjvrm82 Omohundro Institute of Early American History and Culture'),
(95407, 'https://ror.org/04mz2k452', 'en', 1, 'https://ror.org/04mz2k452 Oklahoma Humanities Council'),
(95408, 'https://ror.org/04qsamf92', 'en', 1, 'https://ror.org/04qsamf92 United Nations Office for Outer Space Affairs'),
(95409, 'https://ror.org/05yeqc316', 'en', 1, 'https://ror.org/05yeqc316 Zhenjiang College é•‡ę±Ÿåø‚é«˜ē­‰äø“ē§‘å­¦ę ”'),
(95410, 'https://ror.org/04a6mjk91', 'de', 1, 'https://ror.org/04a6mjk91 HochschuljubilƤumsstiftung der Stadt Wien University Jubilee Foundation of the City of Vienna'),
(95411, 'https://ror.org/04znxe670', 'es', 1, 'https://ror.org/04znxe670 Universidad de Colima University of Colima'),
(95412, 'https://ror.org/05x2w9m74', 'en', 1, 'https://ror.org/05x2w9m74 Amrutvahini College of Engineering'),
(95413, 'https://ror.org/00amdr662', 'en', 1, 'https://ror.org/00amdr662 Virgin Islands Humanities Council'),
(95414, 'https://ror.org/00n4xrr40', 'es', 1, 'https://ror.org/00n4xrr40 Institución Universitaria Centro de Estudios Superiores María Goretti'),
(95415, 'https://ror.org/04ytecw04', 'en', 1, 'https://ror.org/04ytecw04 KLS Gogte Institute of Technology'),
(95416, 'https://ror.org/0268ecp52', 'fr', 1, 'https://ror.org/0268ecp52 Paris-Est Sup'),
(95417, 'https://ror.org/00enct420', 'fr', 1, 'https://ror.org/00enct420 Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux'),
(95418, 'https://ror.org/01b0sx541', 'fr', 1, 'https://ror.org/01b0sx541 Adventist University of France Campus adventiste du salĆØve'),
(95419, 'https://ror.org/05q5rnr22', 'id', 1, 'https://ror.org/05q5rnr22 Sekolah Tinggi Olahraga dan Kesehatan Bina Guna'),
(95420, 'https://ror.org/02e6tmy71', 'sv', 1, 'https://ror.org/02e6tmy71 Wilhelm and Else Stockmann Foundation Wilhelm och Else Stockmanns Stiftelse'),
(95421, 'https://ror.org/00w49ww42', 'en', 1, 'https://ror.org/00w49ww42 Akrokerri College of Education'),
(95422, 'https://ror.org/03ccs9d57', 'en', 1, 'https://ror.org/03ccs9d57 Wisconsin Humanities Council'),
(95423, 'https://ror.org/00za68765', 'pt', 1, 'https://ror.org/00za68765 Centro UniversitƔrio EstƔcio de Santa Catarina'),
(95424, 'https://ror.org/05dqf9946', 'en', 1, 'https://ror.org/05dqf9946 Institute of Science Tokyo ę±äŗ¬ē§‘å­¦å¤§å­¦'),
(95425, 'https://ror.org/03dw0bd08', 'en', 1, 'https://ror.org/03dw0bd08 Institute of Women Social Workers'),
(95426, 'https://ror.org/03tg3eb07', 'tr', 1, 'https://ror.org/03tg3eb07 Bursa Uludağ Üni̇versi̇tesi̇'),
(95427, 'https://ror.org/05514hp74', 'en', 1, 'https://ror.org/05514hp74 Laboratory of Fundamental and Applied Bioenergetics'),
(95428, 'https://ror.org/04p94ax69', 'en', 1, 'https://ror.org/04p94ax69 Lille Neurosciences & Cognition'),
(95429, 'https://ror.org/01xc5jm57', 'pt', 1, 'https://ror.org/01xc5jm57 Instituto Federal de Educação Ciência e Tecnologia da Paraíba'),
(95430, 'https://ror.org/00xdgaz28', 'en', 1, 'https://ror.org/00xdgaz28 Humanities Texas'),
(95431, 'https://ror.org/05k267t15', 'fr', 1, 'https://ror.org/05k267t15 France GƩnomique'),
(95432, 'https://ror.org/01dq3qq95', 'en', 1, 'https://ror.org/01dq3qq95 Beibu Gulf University åŒ—éƒØę¹¾å¤§å­¦'),
(95433, 'https://ror.org/01sewfq88', 'es', 1, 'https://ror.org/01sewfq88 Universidad Isalud'),
(95434, 'https://ror.org/02gpbfd77', 'en', 1, 'https://ror.org/02gpbfd77 Wyoming Humanities Council'),
(95435, 'https://ror.org/02d5gqx12', 'en', 1, 'https://ror.org/02d5gqx12 National Council Of Educational Research And Training ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ą²¶ą³ˆą²•ą³ą²·ą²£ą²æą²• ಸಂಶೋಧನಾ ą²®ą²¤ą³ą²¤ą³ ತರಬೇತಿ ą²Ŗą²°ą²æą²·ą²¤ą³'),
(95436, 'https://ror.org/04h6azc67', 'no_lang_code', 1, 'https://ror.org/04h6azc67 Textron Textron (United States)'),
(95437, 'https://ror.org/00j65mz88', 'id', 1, 'https://ror.org/00j65mz88 Universitas Amikom Yogyakarta'),
(95438, 'https://ror.org/00jp4qe04', 'fr', 1, 'https://ror.org/00jp4qe04 French Statistical Society SociƩtƩ FranƧaise de Statistique'),
(95439, 'https://ror.org/00hwfn059', 'en', 1, 'https://ror.org/00hwfn059 College of Technological Studies'),
(95440, 'https://ror.org/008rcjb67', 'fr', 1, 'https://ror.org/008rcjb67 RƩgie des transports mƩtropolitains'),
(95441, 'https://ror.org/0227fbx80', 'fr', 0, 'https://ror.org/0227fbx80 University of Montpellier 1 UniversitƩ Montpellier 1'),
(95442, 'https://ror.org/05r75c731', 'en', 1, 'https://ror.org/05r75c731 Federal Polytechnic, Bida'),
(95443, 'https://ror.org/02d4qm557', 'en', 1, 'https://ror.org/02d4qm557 Korn Ferry Korn Ferry (United States)'),
(95444, 'https://ror.org/04rz0sq59', 'en', 1, 'https://ror.org/04rz0sq59 Candys Foundation'),
(95445, 'https://ror.org/04pwyfk22', 'fr', 1, 'https://ror.org/04pwyfk22 HƓpital Saint Eloi'),
(95446, 'https://ror.org/01cqgcv21', 'en', 1, 'https://ror.org/01cqgcv21 Precise Measurement Technology Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗē²¾åÆ†ęø¬å®šęŠ€č”“ęŒÆčˆˆč²”å›£'),
(95447, 'https://ror.org/03rfnpw37', 'en', 1, 'https://ror.org/03rfnpw37 Kwalejin Ilimi ta St. Vincent St. Vincent College of Education'),
(95448, 'https://ror.org/050cf7q30', 'en', 1, 'https://ror.org/050cf7q30 Mampong Technical College of Education'),
(95449, 'https://ror.org/0187thv39', 'en', 1, 'https://ror.org/0187thv39 Kwalejin Ilimi ta St. Louis St. Louis College of Education'),
(95450, 'https://ror.org/02hkbys70', 'en', 1, 'https://ror.org/02hkbys70 Lille University Management'),
(95451, 'https://ror.org/03xvpbd79', 'no_lang_code', 1, 'https://ror.org/03xvpbd79 Robert Bosch (Hungary) Robert Bosch Kft.'),
(95452, 'https://ror.org/01et6g203', 'fr', 1, 'https://ror.org/01et6g203 Hypertension pulmonaire : physiopathologie et innovation thƩrapeutique Pulmonary Hypertension: Pathophysiology and Novel Therapies'),
(95453, 'https://ror.org/030vwjb30', 'fr', 1, 'https://ror.org/030vwjb30 Genopolys'),
(95454, 'https://ror.org/00k8f0571', 'en', 1, 'https://ror.org/00k8f0571 Federal College of Forestry, Ibadan'),
(95455, 'https://ror.org/0095dt357', 'fr', 1, 'https://ror.org/0095dt357 Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes'),
(95456, 'https://ror.org/04hpfhh92', 'en', 1, 'https://ror.org/04hpfhh92 Hope for Communities and Children Initiative'),
(95457, 'https://ror.org/03q7tj736', 'en', 1, 'https://ror.org/03q7tj736 St. Monica''s College of Education'),
(95458, 'https://ror.org/033v1zn65', 'fr', 1, 'https://ror.org/033v1zn65 Laboratoire interdisciplinaire RƩcits Cultures et SociƩtƩs'),
(95459, 'https://ror.org/05vwjwk52', 'en', 1, 'https://ror.org/05vwjwk52 Aisyah University'),
(95460, 'https://ror.org/02jskfj56', 'id', 1, 'https://ror.org/02jskfj56 Sekolah Tinggi Ilmu Ekonomi Gentiaras'),
(95461, 'https://ror.org/01273vs09', 'fr', 1, 'https://ror.org/01273vs09 Laboratoire de Radiopharmaceutiques Biocliniques'),
(95462, 'https://ror.org/05p8d2v16', 'en', 1, 'https://ror.org/05p8d2v16 Bengbu University čšŒåŸ å­¦é™¢'),
(95463, 'https://ror.org/02m5qpk42', 'fr', 1, 'https://ror.org/02m5qpk42 Institut Pasteur de Nha Trang'),
(95464, 'https://ror.org/00pwbq328', 'en', 1, 'https://ror.org/00pwbq328 Islamic Azad University, Babol دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲØŲ§ŲØŁ„'),
(95465, 'https://ror.org/059bp8k51', 'en', 1, 'https://ror.org/059bp8k51 Javna agencija za znanstvenoraziskovalno in inovacijsko dejavnost The Slovenian Research and Innovation Agency'),
(95466, 'https://ror.org/00g241p78', 'en', 1, 'https://ror.org/00g241p78 Istanbul Topkapi University İstanbul Topkapı Üniversitesi'),
(95467, 'https://ror.org/03t9s7t87', 'fr', 1, 'https://ror.org/03t9s7t87 Pathogénèse Bactérienne et Réponses Cellulaires'),
(95468, 'https://ror.org/050rs7291', 'fr', 1, 'https://ror.org/050rs7291 Centre de RadiofrƩquences, Optique et Micro-nanoƩlectronique des Alpes'),
(95469, 'https://ror.org/01m870m49', 'es', 1, 'https://ror.org/01m870m49 Instituto de Investigación en Cambio Global'),
(95470, 'https://ror.org/04eeyfe07', 'fr', 1, 'https://ror.org/04eeyfe07 Centre MĆ©diterranĆ©en de l’Environnement et de la BiodiversitĆ©'),
(95471, 'https://ror.org/034xqwd07', 'en', 1, 'https://ror.org/034xqwd07 Kano State Polytechnic'),
(95472, 'https://ror.org/04r5ddq29', 'fr', 1, 'https://ror.org/04r5ddq29 Graduate School of Computer Science and Advanced Technologies Ɖcole Pour l''Informatique et les Techniques AvancĆ©es Ɖcole pour l''informatique et les techniques avancĆ©es'),
(95473, 'https://ror.org/01cfdpz73', 'fr', 1, 'https://ror.org/01cfdpz73 Institut SupĆ©rieur d’Informatique et de Gestion de Goma'),
(95474, 'https://ror.org/00sbbhq57', 'en', 1, 'https://ror.org/00sbbhq57 Jilin Business and Technology College'),
(95475, 'https://ror.org/04f1eek20', 'en', 1, 'https://ror.org/04f1eek20 Universiti Cyberjaya University of Cyberjaya'),
(95476, 'https://ror.org/03ka94606', 'en', 1, 'https://ror.org/03ka94606 Hemostase Inflammation Thrombosis'),
(95477, 'https://ror.org/056k6mn31', 'es', 1, 'https://ror.org/056k6mn31 Instituto MadrileƱo de Antropologƭa'),
(95478, 'https://ror.org/05nw4bs65', 'en', 1, 'https://ror.org/05nw4bs65 Illinois Humanities Council'),
(95479, 'https://ror.org/023aac055', 'es', 1, 'https://ror.org/023aac055 Universidad de Investigación e Innovación de México'),
(95480, 'https://ror.org/05hjsty75', 'en', 1, 'https://ror.org/05hjsty75 Lesbian Herstory Archives'),
(95481, 'https://ror.org/028sfha37', 'en', 1, 'https://ror.org/028sfha37 Gambaga College of Education'),
(95482, 'https://ror.org/05q5m4q74', 'fr', 1, 'https://ror.org/05q5m4q74 Analyses LittƩraires et Histoire de la Langue'),
(95483, 'https://ror.org/05wjc8a85', 'fr', 1, 'https://ror.org/05wjc8a85 Laboratoire Universitaire de Recherche en Production AutomatisƩe'),
(95484, 'https://ror.org/04s3t1g37', 'fr', 1, 'https://ror.org/04s3t1g37 Institut Paoli-Calmettes Institute Paoli-Calmettes'),
(95485, 'https://ror.org/04cn7g698', 'en', 1, 'https://ror.org/04cn7g698 Haryana State Council for Science and Technology'),
(95486, 'https://ror.org/05ajmm513', 'en', 1, 'https://ror.org/05ajmm513 Humanities Washington'),
(95487, 'https://ror.org/01zss5v68', 'en', 0, 'https://ror.org/01zss5v68 Institute Cancer De La Loire Lucien Neuwirth'),
(95488, 'https://ror.org/03kf3ks42', 'en', 1, 'https://ror.org/03kf3ks42 The Schwarzman Animal Medical Center'),
(95489, 'https://ror.org/029ha4026', 'fr', 1, 'https://ror.org/029ha4026 France Europe Innovation'),
(95490, 'https://ror.org/034m2b326', 'en', 1, 'https://ror.org/034m2b326 Shahid Beheshti University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų“Ł‡ŪŒŲÆ ŲØŁ‡Ų“ŲŖŪŒ'),
(95491, 'https://ror.org/02pzyz439', 'en', 1, 'https://ror.org/02pzyz439 Forests and Societies Forêts et Sociétés'),
(95492, 'https://ror.org/03xzagw65', 'fr', 1, 'https://ror.org/03xzagw65 HƓpital Lapeyronie'),
(95493, 'https://ror.org/02s4dmd79', 'fr', 1, 'https://ror.org/02s4dmd79 Miniaturisation pour la Synthèse, l''Analyse et la Protéomique'),
(95494, 'https://ror.org/01ntvtb47', 'en', 1, 'https://ror.org/01ntvtb47 Alabama Humanities Foundation'),
(95495, 'https://ror.org/0018c4h73', 'fr', 1, 'https://ror.org/0018c4h73 Institut Charles Viollette'),
(95496, 'https://ror.org/05mkckz37', 'sk', 1, 'https://ror.org/05mkckz37 Nemocnica Bory, a.s'),
(95497, 'https://ror.org/0442rdt85', 'en', 1, 'https://ror.org/0442rdt85 Kangda College of Nanjing Medical University å—äŗ¬åŒ»ē§‘å¤§å­¦åŗ·č¾¾å­¦é™¢'),
(95498, 'https://ror.org/05pet6f20', 'en', 1, 'https://ror.org/05pet6f20 National Institute of Technology Uttarakhand'),
(95499, 'https://ror.org/00bwykg15', 'fr', 1, 'https://ror.org/00bwykg15 Centre d''Etude des Arts Contemporains'),
(95500, 'https://ror.org/00qx5am02', 'no_lang_code', 1, 'https://ror.org/00qx5am02 Lo.La Peak Solutions GmbH Lo.La Peak Solutions GmbH (Austria)'),
(95501, 'https://ror.org/035630h07', 'pt', 1, 'https://ror.org/035630h07 Universidade Save'),
(95502, 'https://ror.org/00yczwp93', 'fr', 1, 'https://ror.org/00yczwp93 Laboratoire en Sciences et Technologies de l''Information GƩographique pour la ville intelligente et les territoires durables'),
(95503, 'https://ror.org/00p5j4e25', 'no_lang_code', 1, 'https://ror.org/00p5j4e25 Panteia Panteia (Netherlands)'),
(95504, 'https://ror.org/04r56ky81', 'en', 1, 'https://ror.org/04r56ky81 Capital College'),
(95505, 'https://ror.org/026m44z54', 'fr', 1, 'https://ror.org/026m44z54 Laboratoire Nanotechnologies et NanosystĆØmes'),
(95506, 'https://ror.org/052b46n78', 'fr', 1, 'https://ror.org/052b46n78 Institut Pasteur d''AlgƩrie'),
(95507, 'https://ror.org/0305eqz85', 'en', 1, 'https://ror.org/0305eqz85 Gbewaa College of Education'),
(95508, 'https://ror.org/00wqczk30', 'en', 1, 'https://ror.org/00wqczk30 Institut Pasteur D''Iran Pasteur Institute of Iran'),
(95509, 'https://ror.org/007y9b339', 'fr', 1, 'https://ror.org/007y9b339 Centre de Recherche en Design'),
(95510, 'https://ror.org/01pe3t004', 'en', 1, 'https://ror.org/01pe3t004 Indian Institute of Science Education and Research Thiruvananthapuram ą¤†ą¤‡ą¤†ą¤‡ą¤ą¤øą¤‡ą¤†ą¤° ą¤¤ą¤æą¤°ą„‚ą¤…ą¤Øą¤‚ą¤¤ą¤Ŗą„ą¤°ą¤® ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¤ą¤æą¤°ą„ą¤µą¤Øą¤‚ą¤¤ą¤Ŗą„ą¤°ą¤®'),
(95511, 'https://ror.org/04p9p1r69', 'en', 1, 'https://ror.org/04p9p1r69 Chengdu Neusoft University ęˆéƒ½äøœč½Æå­¦é™¢'),
(95512, 'https://ror.org/01m10js32', 'fr', 1, 'https://ror.org/01m10js32 Strasbourg Oncologie LibƩrale'),
(95513, 'https://ror.org/05v3veg52', 'en', 1, 'https://ror.org/05v3veg52 Akatsi College of Education'),
(95514, 'https://ror.org/012fmmh32', 'en', 1, 'https://ror.org/012fmmh32 Bijagual Ecological Reserve'),
(95515, 'https://ror.org/008kngs41', 'en', 1, 'https://ror.org/008kngs41 St. Xavier''s University Kolkata'),
(95516, 'https://ror.org/02v8kk877', 'en', 1, 'https://ror.org/02v8kk877 European Union Agency for Railways'),
(95517, 'https://ror.org/05ba43f71', 'en', 1, 'https://ror.org/05ba43f71 NOAA National Centers for Coastal Ocean Science'),
(95518, 'https://ror.org/00yypjb24', 'en', 1, 'https://ror.org/00yypjb24 Dambai College of Education'),
(95519, 'https://ror.org/04p4jgt68', 'fr', 1, 'https://ror.org/04p4jgt68 Centre d''Investigation Clinique - Innovation Technologique de Lille'),
(95520, 'https://ror.org/031j0at32', 'en', 0, 'https://ror.org/031j0at32 Beibu Gulf University åŒ—éƒØę¹¾å¤§å­¦'),
(95521, 'https://ror.org/02xnnng09', 'fr', 1, 'https://ror.org/02xnnng09 Laboratoire de GĆ©nie Ɖlectrique et Ɖlectronique de Paris'),
(95522, 'https://ror.org/00pdj3j56', 'en', 1, 'https://ror.org/00pdj3j56 Tamale College of Education'),
(95523, 'https://ror.org/036qbj650', 'fr', 1, 'https://ror.org/036qbj650 Association Histiocytose France'),
(95524, 'https://ror.org/048z62t22', 'fr', 1, 'https://ror.org/048z62t22 Laboratoire d''Innovation et NumĆ©rique pour l''Ɖducation'),
(95525, 'https://ror.org/015hnv758', 'en', 1, 'https://ror.org/015hnv758 Minnesota Humanities Center'),
(95526, 'https://ror.org/01j6ykv32', 'es', 1, 'https://ror.org/01j6ykv32 Instituto de Investigación e Innovación en Energías Renovables y Medio Ambiente'),
(95527, 'https://ror.org/02jjxqt79', 'en', 1, 'https://ror.org/02jjxqt79 Idaho Humanities Council'),
(95528, 'https://ror.org/03esxxd95', 'en', 1, 'https://ror.org/03esxxd95 Institute of Chartered Accountants of Nigeria'),
(95529, 'https://ror.org/04k6k8h87', 'pt', 1, 'https://ror.org/04k6k8h87 Faculdade Anhanguera'),
(95530, 'https://ror.org/04cfvp438', 'en', 1, 'https://ror.org/04cfvp438 CGFNS International, Inc.'),
(95531, 'https://ror.org/01dn3gk89', 'en', 1, 'https://ror.org/01dn3gk89 Honeywell Federal Manufacturing and Technologies (United States)'),
(95532, 'https://ror.org/047egvh76', 'fr', 1, 'https://ror.org/047egvh76 Ɖquipe de Recherche sur l’Utilisation des DonnĆ©es Individuelles en Lien avec la ThĆ©orie Ɖconomique'),
(95533, 'https://ror.org/015yand93', 'fr', 1, 'https://ror.org/015yand93 Association France Alzheimer'),
(95534, 'https://ror.org/056mb6a70', 'id', 1, 'https://ror.org/056mb6a70 Institut Agama Islam Negeri Parepare'),
(95535, 'https://ror.org/03y61y350', 'fr', 1, 'https://ror.org/03y61y350 Imagerie MolƩculaire et StratƩgies ThƩranostiques'),
(95536, 'https://ror.org/0255jh689', 'en', 1, 'https://ror.org/0255jh689 King Danylo University'),
(95537, 'https://ror.org/05bea9918', 'fr', 1, 'https://ror.org/05bea9918 French-German Research Institute of Saint-Louis Institut Franco-Allemand de Recherches de Saint-Louis'),
(95538, 'https://ror.org/005wz0e45', 'en', 1, 'https://ror.org/005wz0e45 Colorado Humanities'),
(95539, 'https://ror.org/04e9t3w40', 'en', 1, 'https://ror.org/04e9t3w40 Arkansas Humanities Council'),
(95540, 'https://ror.org/0260nab69', 'es', 1, 'https://ror.org/0260nab69 Universidad Tecnológica de Chihuahua'),
(95541, 'https://ror.org/01he7e113', 'en', 1, 'https://ror.org/01he7e113 KPJ Healthcare University'),
(95542, 'https://ror.org/02byv2846', 'fr', 1, 'https://ror.org/02byv2846 Fluides, Automatique et SystĆØmes Thermiques'),
(95543, 'https://ror.org/00jp5dw81', 'fr', 1, 'https://ror.org/00jp5dw81 RadiothƩrapie MolƩculaire et Innovation ThƩrapeutique'),
(95544, 'https://ror.org/02y802x14', 'en', 1, 'https://ror.org/02y802x14 Korea Display Research Corporation'),
(95545, 'https://ror.org/03afwf105', 'en', 1, 'https://ror.org/03afwf105 Alaska Humanities Forum'),
(95546, 'https://ror.org/0033f4j54', 'en', 1, 'https://ror.org/0033f4j54 Royal Numismatic Society'),
(95547, 'https://ror.org/02ppyfa04', 'fr', 1, 'https://ror.org/02ppyfa04 Centre Hospitalier Universitaire de Lille'),
(95548, 'https://ror.org/04g9rt435', 'fr', 1, 'https://ror.org/04g9rt435 Institut des Cellules Souches pour le Traitement et l''Ɖtude des Maladies MonogĆ©niques'),
(95549, 'https://ror.org/04q35v833', 'fr', 1, 'https://ror.org/04q35v833 Maison de Sante Protestante de Bordeaux-Bagatelle'),
(95550, 'https://ror.org/04kezy879', 'fr', 1, 'https://ror.org/04kezy879 Risques, EpidƩmiologie, Territoires, Informations, Education et SantƩ'),
(95551, 'https://ror.org/051v7w268', 'it', 1, 'https://ror.org/051v7w268 Istituto Pasteur'),
(95552, 'https://ror.org/05hv8n393', 'en', 1, 'https://ror.org/05hv8n393 Berekum College of Education'),
(95553, 'https://ror.org/046hjmc37', 'fr', 1, 'https://ror.org/046hjmc37 Laboratoire Charles Fabry'),
(95554, 'https://ror.org/02s78cg64', 'en', 1, 'https://ror.org/02s78cg64 Mustaqbal University'),
(95555, 'https://ror.org/0027wax95', 'en', 1, 'https://ror.org/0027wax95 Cal Humanities'),
(95556, 'https://ror.org/037f6g911', 'fr', 1, 'https://ror.org/037f6g911 Universidad Tecnológica de Tecamachalco'),
(95557, 'https://ror.org/03wwjjr94', 'en', 1, 'https://ror.org/03wwjjr94 HKU-Pasteur Research Pole'),
(95558, 'https://ror.org/04wtce741', 'fr', 1, 'https://ror.org/04wtce741 Campus France'),
(95559, 'https://ror.org/00g8zjy95', 'en', 1, 'https://ror.org/00g8zjy95 Bergen School of Architecture'),
(95560, 'https://ror.org/04m0m4503', 'en', 1, 'https://ror.org/04m0m4503 Centre for Nursing Studies'),
(95561, 'https://ror.org/00tabsj08', 'en', 0, 'https://ror.org/00tabsj08 Istanbul Topkapi University İstanbul Topkapı Üniversitesi'),
(95562, 'https://ror.org/005tvz367', 'fr', 1, 'https://ror.org/005tvz367 French Intensive Care Society SociƩtƩ de RƩanimation de Langue FranƧaise'),
(95563, 'https://ror.org/00v0ean07', 'fr', 1, 'https://ror.org/00v0ean07 French Society of Periodontology SociĆ©tĆ© FranƧaise de Parodontologie et d’Implantologie Orale'),
(95564, 'https://ror.org/02zeryz43', 'no_lang_code', 0, 'https://ror.org/02zeryz43 Wyle (United States)'),
(95565, 'https://ror.org/00p73bw06', 'fr', 1, 'https://ror.org/00p73bw06 ContrĆ“le transcriptionnel et Ć©pigĆ©nĆ©tique de l’hĆ©matopoĆÆĆØse maligne'),
(95566, 'https://ror.org/04neq5659', 'no_lang_code', 0, 'https://ror.org/04neq5659 Avco (United States)'),
(95567, 'https://ror.org/05fjffm04', 'fr', 1, 'https://ror.org/05fjffm04 Laboratoire de Physiologie Cellulaire Laboratory of Cell Physiology'),
(95568, 'https://ror.org/04g0ktq11', 'fr', 1, 'https://ror.org/04g0ktq11 BibliothĆØque Jacques Hadamard'),
(95569, 'https://ror.org/03a77cf20', 'en', 1, 'https://ror.org/03a77cf20 Fasa University'),
(95570, 'https://ror.org/03mw9hb85', 'cs', 1, 'https://ror.org/03mw9hb85 Policie České republiky - Kriminalistický ústav'),
(95571, 'https://ror.org/05ba8sq03', 'en', 1, 'https://ror.org/05ba8sq03 Kwalejin Ilimi ta St. Joseph St. Joseph''s College of Education'),
(95572, 'https://ror.org/02r9kbs29', 'en', 1, 'https://ror.org/02r9kbs29 Peki College of Education'),
(95573, 'https://ror.org/01jx6h585', 'en', 1, 'https://ror.org/01jx6h585 Indian Institute of Management Bodh Gaya'),
(95574, 'https://ror.org/04fsxy317', 'fr', 1, 'https://ror.org/04fsxy317 ScanMAT'),
(95575, 'https://ror.org/023cs7p87', 'fr', 1, 'https://ror.org/023cs7p87 Groupe de Recherche en Management'),
(95576, 'https://ror.org/01yw67305', 'id', 1, 'https://ror.org/01yw67305 Institut Teknologi Nasional Yogyakarta'),
(95577, 'https://ror.org/04s92nm86', 'fr', 1, 'https://ror.org/04s92nm86 Laboratoire de Recherche Translationnelle en Oncologie'),
(95578, 'https://ror.org/0363rtq22', 'en', 1, 'https://ror.org/0363rtq22 Hį»c Viện CĆ“ng Nghệ Bʰu ChĆ­nh Viį»…n ThĆ“ng Posts and Telecommunications Institute of Technology'),
(95579, 'https://ror.org/0449rap84', 'fr', 1, 'https://ror.org/0449rap84 Laboratoire de Biologie de l''Exercice pour la Performance et la SantƩ'),
(95580, 'https://ror.org/01mjr8a07', 'en', 1, 'https://ror.org/01mjr8a07 Maharaja Agrasen University'),
(95581, 'https://ror.org/0409gk363', 'fr', 1, 'https://ror.org/0409gk363 LACTH - Laboratoire d''Architecture Conception Territoire Histoire MatƩrialitƩ'),
(95582, 'https://ror.org/00dqry546', 'en', 1, 'https://ror.org/00dqry546 Batterjee Medical College'),
(95583, 'https://ror.org/03xahj211', 'fr', 1, 'https://ror.org/03xahj211 Centre Hospitalier des Pays de Morlaix'),
(95584, 'https://ror.org/016w4zy25', 'fr', 1, 'https://ror.org/016w4zy25 Centre de Recherche "Individus, Epreuves, SociƩtƩs"'),
(95585, 'https://ror.org/0050w9p71', 'fr', 1, 'https://ror.org/0050w9p71 CancƩropƓle Est'),
(95586, 'https://ror.org/04czrrc08', 'en', 1, 'https://ror.org/04czrrc08 Bayan Islamic Graduate School'),
(95587, 'https://ror.org/030e1gk87', 'en', 1, 'https://ror.org/030e1gk87 Byrd Polar and Climate Research Center'),
(95588, 'https://ror.org/03ya3d516', 'fr', 1, 'https://ror.org/03ya3d516 UnitƩ de Taphonomie MƩdico-LƩgale'),
(95589, 'https://ror.org/048t5xm56', 'en', 1, 'https://ror.org/048t5xm56 Kentucky Humanities Council'),
(95590, 'https://ror.org/04vrpfw15', 'en', 1, 'https://ror.org/04vrpfw15 Snowflake Inc. Snowflake Inc. (United States)'),
(95591, 'https://ror.org/04y7h3604', 'en', 1, 'https://ror.org/04y7h3604 Alfried Krupp von Bohlen und Halbach Foundation Alfried Krupp von Bohlen und Halbach-Stiftung'),
(95592, 'https://ror.org/04e71td73', 'fr', 1, 'https://ror.org/04e71td73 Ɖcole SupĆ©rieure des GĆ©omĆØtres et Topographes'),
(95593, 'https://ror.org/02k44p231', 'en', 1, 'https://ror.org/02k44p231 Fujian Chuanzheng Communications College ē¦å»ŗčˆ¹ę”æäŗ¤é€ščŒäøšå­¦é™¢'),
(95594, 'https://ror.org/01ee94y34', 'fr', 1, 'https://ror.org/01ee94y34 Institut Pasteur de Bangui Pasteur Institute of Bangui'),
(95595, 'https://ror.org/01earvv39', 'fr', 1, 'https://ror.org/01earvv39 PrƩdicteurs molƩculaires et nouvelles cibles en oncologie'),
(95596, 'https://ror.org/02xqgcz97', 'en', 1, 'https://ror.org/02xqgcz97 Masdar Institute of Science and Technology'),
(95597, 'https://ror.org/054962n91', 'no_lang_code', 1, 'https://ror.org/054962n91 Siemens Healthcare (United States)'),
(95598, 'https://ror.org/02vdm1p28', 'en', 1, 'https://ror.org/02vdm1p28 National Endowment for the Humanities'),
(95599, 'https://ror.org/05njt8204', 'en', 1, 'https://ror.org/05njt8204 Delaware Humanities Forum'),
(95600, 'https://ror.org/039a53269', 'en', 1, 'https://ror.org/039a53269 Leibniz Institute on Aging - Fritz Lipmann Institute (FLI) Leibniz-Institut für Alternsforschung - Fritz-Lipmann-Institut (FLI)'),
(95601, 'https://ror.org/05fsjkf12', 'en', 1, 'https://ror.org/05fsjkf12 Guangdong Peizheng College'),
(95602, 'https://ror.org/04n1pzr73', 'en', 1, 'https://ror.org/04n1pzr73 Mississippi Humanities Council'),
(95603, 'https://ror.org/037er0m96', 'en', 1, 'https://ror.org/037er0m96 New Jersey Council for the Humanities'),
(95604, 'https://ror.org/00ve48a86', 'en', 1, 'https://ror.org/00ve48a86 Urban Studies Foundation'),
(95605, 'https://ror.org/054bwsx29', 'en', 1, 'https://ror.org/054bwsx29 New Hampshire Humanities Council'),
(95606, 'https://ror.org/04px4e658', 'fr', 1, 'https://ror.org/04px4e658 DƩlƩgation Alpes'),
(95607, 'https://ror.org/021zcv334', 'en', 1, 'https://ror.org/021zcv334 Ecology and Conservation Science for Sustainable Seas'),
(95608, 'https://ror.org/04d9hcc21', 'en', 1, 'https://ror.org/04d9hcc21 Arizona Humanities'),
(95609, 'https://ror.org/03yksw654', 'en', 1, 'https://ror.org/03yksw654 Guangdong Technical College of Water Resources and Electric Engineering å¹æäøœę°“åˆ©ē”µåŠ›čŒäøšęŠ€ęœÆå­¦é™¢'),
(95610, 'https://ror.org/02b03n805', 'en', 1, 'https://ror.org/02b03n805 University College of Science and Technology - Khan Younis Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ - خان ŁŠŁˆŁ†Ų³'),
(95611, 'https://ror.org/03ywnpj79', 'en', 1, 'https://ror.org/03ywnpj79 Southern Baptist Theological Seminary'),
(95612, 'https://ror.org/032m0qa86', 'en', 1, 'https://ror.org/032m0qa86 Louisiana Endowment for the Humanities'),
(95613, 'https://ror.org/03pq2y959', 'en', 1, 'https://ror.org/03pq2y959 Evangelical Presbyterian College of Education, Amedzofe Kwalejin Ilimi ta Presbyterian na Bishara, Amedzofe'),
(95614, 'https://ror.org/029xh1r47', 'no_lang_code', 1, 'https://ror.org/029xh1r47 Toray Industries, Inc. Toray Industries, Inc. (Japan) ę±ćƒ¬ę Ŗå¼ä¼šē¤¾'),
(95615, 'https://ror.org/05ayzqh10', 'en', 1, 'https://ror.org/05ayzqh10 Holy Family Red Crescent Medical College'),
(95616, 'https://ror.org/03q20pc87', 'en', 1, 'https://ror.org/03q20pc87 East of England Secure Data Environment'),
(95617, 'https://ror.org/03s61s823', 'en', 1, 'https://ror.org/03s61s823 Mitford Hospital, Dhaka'),
(95618, 'https://ror.org/02q7f3j18', 'en', 1, 'https://ror.org/02q7f3j18 Microbe, Intestine, Inflammation and Host Susceptibility'),
(95619, 'https://ror.org/056rync30', 'en', 1, 'https://ror.org/056rync30 Utah Humanities Council'),
(95620, 'https://ror.org/007jd4588', 'en', 1, 'https://ror.org/007jd4588 Joint Programming Initiative Urban Europe'),
(95621, 'https://ror.org/025ysd319', 'en', 1, 'https://ror.org/025ysd319 New Higher Education Institute - NEWUNI ახალი įƒ£įƒ›įƒįƒ¦įƒšįƒ”įƒ”įƒ˜ įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ”įƒ‘įƒ”įƒšįƒ˜ - ნიუუნი'),
(95622, 'https://ror.org/0452y0518', 'fr', 1, 'https://ror.org/0452y0518 Le rƩseau des Carnot The Carnot Network'),
(95623, 'https://ror.org/04t0zhb48', 'fr', 1, 'https://ror.org/04t0zhb48 Institut Pasteur Korea'),
(95624, 'https://ror.org/04kwqat20', 'fr', 1, 'https://ror.org/04kwqat20 Territoires, Villes, Environnement & SociƩtƩ'),
(95625, 'https://ror.org/05k441034', 'fr', 1, 'https://ror.org/05k441034 Louvre MusƩe du Louvre'),
(95626, 'https://ror.org/01fe0jt45', 'no_lang_code', 1, 'https://ror.org/01fe0jt45 Robert Bosch (Germany)'),
(95627, 'https://ror.org/01qygwc68', 'fr', 1, 'https://ror.org/01qygwc68 Evaluation des technologies de santƩ et des pratiques mƩdicales'),
(95628, 'https://ror.org/04kdzy146', 'en', 1, 'https://ror.org/04kdzy146 Institute for Humanities and Cultural Studies Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų¹Ł„ŁˆŁ… Ų§Ł†Ų³Ų§Ł†ŪŒ و مطالعات ŁŲ±Ł‡Ł†ŚÆŪŒ'),
(95629, 'https://ror.org/02wm3rq58', 'es', 1, 'https://ror.org/02wm3rq58 Sociedad de Lucha Contra el CƔncer del Ecuador'),
(95630, 'https://ror.org/047y28a09', 'fr', 1, 'https://ror.org/047y28a09 Centre de Recherche Droits et Perspectives du droit'),
(95631, 'https://ror.org/04f0j5d06', 'en', 1, 'https://ror.org/04f0j5d06 Guangzhou College of Commerce å¹æå·žå•†å­¦é™¢'),
(95632, 'https://ror.org/01fp8z436', 'fr', 1, 'https://ror.org/01fp8z436 Institut Pasteur de la Guyane'),
(95633, 'https://ror.org/034gh1d56', 'fr', 1, 'https://ror.org/034gh1d56 Laboratoire des Sciences de l’Information et de la Communication'),
(95634, 'https://ror.org/02b7f5969', 'en', 1, 'https://ror.org/02b7f5969 Akanu Ibiam, Federal Polytechnic Unwana');
INSERT INTO `rors` VALUES
(95635, 'https://ror.org/03vam5b06', 'fr', 1, 'https://ror.org/03vam5b06 Laboratoire des systèmes et applications des technologies de l''information et de l''énergie Laboratory of Systems and Applications of Information and Energy Technologies'),
(95636, 'https://ror.org/03d78qr79', 'en', 1, 'https://ror.org/03d78qr79 University of Minnesota Libraries Publishing'),
(95637, 'https://ror.org/00cc69h98', 'en', 1, 'https://ror.org/00cc69h98 Pennsylvania Humanities Council'),
(95638, 'https://ror.org/04abkkz03', 'fr', 1, 'https://ror.org/04abkkz03 Centre International deHautes Etudes Agronomiques MƩditerranƩennes'),
(95639, 'https://ror.org/031jmyr19', 'en', 1, 'https://ror.org/031jmyr19 Odisha University of Technology and Research'),
(95640, 'https://ror.org/0086epd30', 'fr', 1, 'https://ror.org/0086epd30 Drugs and Molecules for Living Systems Médicaments et Molécules pour Agir sur les Systèmes Vivants'),
(95641, 'https://ror.org/00h43mz31', 'en', 1, 'https://ror.org/00h43mz31 Maryland Humanities Council'),
(95642, 'https://ror.org/057cydn08', 'en', 1, 'https://ror.org/057cydn08 Hunan University of Technology and Business ę¹–å—å·„å•†å¤§å­¦'),
(95643, 'https://ror.org/03pbmtd68', 'fr', 1, 'https://ror.org/03pbmtd68 Recherche translationnelle sur le diabĆØte'),
(95644, 'https://ror.org/01wp2jz98', 'en', 1, 'https://ror.org/01wp2jz98 European X-Ray Free-Electron Laser'),
(95645, 'https://ror.org/042cxsy45', 'fr', 1, 'https://ror.org/042cxsy45 Institut Pasteur de la Guadeloupe'),
(95646, 'https://ror.org/00ccaam24', 'fr', 1, 'https://ror.org/00ccaam24 Centre Interuniversitaire de Recherche en Education de Lille'),
(95647, 'https://ror.org/051yxp643', 'en', 1, 'https://ror.org/051yxp643 Max Planck Institute for Biogeochemistry Max-Planck-Institut für Biogeochemie'),
(95648, 'https://ror.org/0459x4g44', 'fr', 1, 'https://ror.org/0459x4g44 Hypoxie et Physiopathologies cardiovasculaires et respiratoires'),
(95649, 'https://ror.org/02ke25a78', 'es', 1, 'https://ror.org/02ke25a78 Fundación Puertorriqueña de las Humanidades'),
(95650, 'https://ror.org/03ppaqb54', 'de', 1, 'https://ror.org/03ppaqb54 FIR e. V. an der RWTH Aachen'),
(95651, 'https://ror.org/04x1xkh65', 'en', 1, 'https://ror.org/04x1xkh65 State of Florida'),
(95652, 'https://ror.org/00tfaab58', 'en', 1, 'https://ror.org/00tfaab58 Yonsei University College of Dentistry'),
(95653, 'https://ror.org/014sj8802', 'fr', 1, 'https://ror.org/014sj8802 Recherches Translationnelles sur le VIH et les Maladies Infectieuses'),
(95654, 'https://ror.org/02p0q0q90', 'en', 1, 'https://ror.org/02p0q0q90 Jackson University College'),
(95655, 'https://ror.org/00b25kb57', 'fr', 1, 'https://ror.org/00b25kb57 EDP Sciences'),
(95656, 'https://ror.org/02sbkmb73', 'en', 1, 'https://ror.org/02sbkmb73 Connecticut Humanities Council'),
(95657, 'https://ror.org/01fd1kv21', 'en', 1, 'https://ror.org/01fd1kv21 National Institute of Biotechnology ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦¬ą¦¾ą¦Æą¦¼ą§‹ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(95658, 'https://ror.org/04fgntk96', 'en', 1, 'https://ror.org/04fgntk96 Tara Oceans Systems Ecology & Evolution'),
(95659, 'https://ror.org/044mrv955', 'fr', 1, 'https://ror.org/044mrv955 Institut d''Ɖtudes Scientifiques de CargĆØse'),
(95660, 'https://ror.org/046fcjp93', 'pt', 1, 'https://ror.org/046fcjp93 Instituto Pasteur Pasteur Institute'),
(95661, 'https://ror.org/05rf29967', 'en', 0, 'https://ror.org/05rf29967 Department for International Development Yr Adran dros Ddatblygu Rhyngwladol'),
(95662, 'https://ror.org/04xfq0f34', 'en', 1, 'https://ror.org/04xfq0f34 RWTH Aachen University Rheinisch-WestfƤlische Technische Hochschule Aachen'),
(95663, 'https://ror.org/01fmctt82', 'fr', 1, 'https://ror.org/01fmctt82 Sciences Po Rennes'),
(95664, 'https://ror.org/029rfe283', 'fr', 1, 'https://ror.org/029rfe283 Centre Méditerranéen de Médecine Moléculaire Mediterranean Center for Molecular Medicine'),
(95665, 'https://ror.org/03q29s414', 'fr', 1, 'https://ror.org/03q29s414 Mathématiques et Informatique pour la Complexité et les Systèmes'),
(95666, 'https://ror.org/05k9skc85', 'fr', 1, 'https://ror.org/05k9skc85 Institut Pasteur de Lille Pasteur Institute of Lille'),
(95667, 'https://ror.org/059h57z85', 'en', 1, 'https://ror.org/059h57z85 Guangzhou City Polytechnic å¹æå·žåŸŽåø‚čŒäøšå­¦é™¢'),
(95668, 'https://ror.org/01gaw2478', 'en', 1, 'https://ror.org/01gaw2478 Teikyo University åøäŗ¬å¤§å­¦'),
(95669, 'https://ror.org/05x7bg352', 'es', 1, 'https://ror.org/05x7bg352 General Royalties System Sistema General de RegalĆ­as de Colombia'),
(95670, 'https://ror.org/055hnsm41', 'en', 1, 'https://ror.org/055hnsm41 Vemu Institute of Technology'),
(95671, 'https://ror.org/05hffr360', 'en', 1, 'https://ror.org/05hffr360 Khalifa University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų®Ł„ŁŠŁŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„ŲØŲ­ŁˆŲ«'),
(95672, 'https://ror.org/057qyqy03', 'en', 1, 'https://ror.org/057qyqy03 Anna University Regional Campus, Coimbatore'),
(95673, 'https://ror.org/0558j5q12', 'ro', 1, 'https://ror.org/0558j5q12 POLITEHNICA București Universitatea Națională de Știință și Tehnologie Politehnica București'),
(95674, 'https://ror.org/04t8bw757', 'en', 1, 'https://ror.org/04t8bw757 Federal University Wukari'),
(95675, 'https://ror.org/0479azd18', 'fr', 1, 'https://ror.org/0479azd18 UniversitƩ de YaoundƩ II'),
(95676, 'https://ror.org/021zwb636', 'es', 1, 'https://ror.org/021zwb636 Universidad Tecnologica de Cancun'),
(95677, 'https://ror.org/04dse4f93', 'en', 1, 'https://ror.org/04dse4f93 Data & Society Research Institute'),
(95678, 'https://ror.org/04pwyer06', 'fr', 1, 'https://ror.org/04pwyer06 Institut Pasteur de Tunis'),
(95679, 'https://ror.org/03kfkzp90', 'fr', 1, 'https://ror.org/03kfkzp90 Institut Universitaire de Recherche Clinique'),
(95680, 'https://ror.org/037p13h95', 'es', 1, 'https://ror.org/037p13h95 Universidad CES'),
(95681, 'https://ror.org/04wvj5008', 'en', 1, 'https://ror.org/04wvj5008 An Foras RiarachƔin Institute of Public Administration'),
(95682, 'https://ror.org/05g3p2p60', 'fr', 1, 'https://ror.org/05g3p2p60 Alliance nationale pour les sciences de la vie et de la santƩ'),
(95683, 'https://ror.org/04aeaje24', 'en', 1, 'https://ror.org/04aeaje24 Hawai''i Council for the Humanities'),
(95684, 'https://ror.org/03t4pc386', 'fr', 1, 'https://ror.org/03t4pc386 Cancer, Heterogeneity, Instability and Plasticity Cancer, HƩtƩrogƩnƩitƩ, InstabilitƩ et PlasticitƩ'),
(95685, 'https://ror.org/027331q77', 'en', 1, 'https://ror.org/027331q77 Institute of Civil-Military Technology Cooperation ėÆ¼źµ°ķ˜‘ė „ģ§„ķ„ģ›'),
(95686, 'https://ror.org/0455vgw31', 'fr', 1, 'https://ror.org/0455vgw31 IMPact de l''Environnement Chimique sur la SantƩ humaine'),
(95687, 'https://ror.org/05dpfhh73', 'fr', 1, 'https://ror.org/05dpfhh73 Interactions Cellulaires et Physiopathologie HƩpathique'),
(95688, 'https://ror.org/05x4mwp36', 'en', 0, 'https://ror.org/05x4mwp36 Bethany College'),
(95689, 'https://ror.org/04vrxqg89', 'en', 1, 'https://ror.org/04vrxqg89 Nanfang College Guangzhou å¹æå·žå—ę–¹å­¦é™¢'),
(95690, 'https://ror.org/04hxnp039', 'en', 1, 'https://ror.org/04hxnp039 Danone Nutricia Research Danone Nutricia Research (Netherlands)'),
(95691, 'https://ror.org/00yp7f985', 'en', 1, 'https://ror.org/00yp7f985 The Federal Polytechnic Offa'),
(95692, 'https://ror.org/031g0x021', 'en', 1, 'https://ror.org/031g0x021 Jasikan College of Education'),
(95693, 'https://ror.org/02hewtj70', 'en', 1, 'https://ror.org/02hewtj70 South Dakota Humanities Council'),
(95694, 'https://ror.org/03g8bss77', 'en', 1, 'https://ror.org/03g8bss77 Kwalejin Ilimi ta St. Francis St. Francis College of Education'),
(95695, 'https://ror.org/00ft2kj97', 'en', 1, 'https://ror.org/00ft2kj97 Sichuan Medical Association å››å·ēœåŒ»å­¦ä¼š'),
(95696, 'https://ror.org/01vjab145', 'en', 1, 'https://ror.org/01vjab145 Missouri Humanities Council'),
(95697, 'https://ror.org/022qdz987', 'pt', 1, 'https://ror.org/022qdz987 Faculdade de Direito de Vitória'),
(95698, 'https://ror.org/00kvxt616', 'en', 1, 'https://ror.org/00kvxt616 Hajee Mohammad Danesh Science and Technology University ą¦¹ą¦¾ą¦œą§€ ą¦®ą§‹ą¦¹ą¦¾ą¦®ą§ą¦®ą¦¦ দানেশ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(95699, 'https://ror.org/053jqyp97', 'en', 1, 'https://ror.org/053jqyp97 Rangpur Medical College'),
(95700, 'https://ror.org/00tf8ca96', 'fr', 1, 'https://ror.org/00tf8ca96 MusƩe Curie'),
(95701, 'https://ror.org/04sph8e12', 'en', 1, 'https://ror.org/04sph8e12 Xingtai Medical College 邢台医学院'),
(95702, 'https://ror.org/05h8wtz16', 'en', 1, 'https://ror.org/05h8wtz16 Bagabaga College of Education'),
(95703, 'https://ror.org/01vx64p53', 'it', 1, 'https://ror.org/01vx64p53 Istituto Nazionale di Alta Matematica Francesco Severi'),
(95704, 'https://ror.org/04g7xjj37', 'no_lang_code', 1, 'https://ror.org/04g7xjj37 Rakon Rakon (New Zealand)'),
(95705, 'https://ror.org/009twqt47', 'en', 1, 'https://ror.org/009twqt47 Official Development Assistance'),
(95706, 'https://ror.org/02ny5za58', 'en', 1, 'https://ror.org/02ny5za58 Wuchang Shouyi University ę­¦ę˜Œé¦–ä¹‰å­¦é™¢'),
(95707, 'https://ror.org/053gv2m95', 'en', 1, 'https://ror.org/053gv2m95 Novartis Institutes for BioMedical Research'),
(95708, 'https://ror.org/00mgjz918', 'pt', 1, 'https://ror.org/00mgjz918 Instituto Superior de Angola'),
(95709, 'https://ror.org/053ppfe96', 'fr', 1, 'https://ror.org/053ppfe96 Advanced Drug Delivery Systems Systèmes avancés de délivrance de principes actifs'),
(95710, 'https://ror.org/002yp7f20', 'en', 1, 'https://ror.org/002yp7f20 Thammasat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø˜ąø£ąø£ąø”ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(95711, 'https://ror.org/00k3ph542', 'fr', 1, 'https://ror.org/00k3ph542 ComplexitƩ, Innovation et ActivitƩs Motrices et Sportives'),
(95712, 'https://ror.org/03bb0ht63', 'fr', 1, 'https://ror.org/03bb0ht63 Association Futuribles International Futuribles International'),
(95713, 'https://ror.org/04y53ne24', 'es', 1, 'https://ror.org/04y53ne24 Universidad de las Artes'),
(95714, 'https://ror.org/04s6kmw55', 'en', 1, 'https://ror.org/04s6kmw55 Arsi University'),
(95715, 'https://ror.org/032jsmy36', 'en', 1, 'https://ror.org/032jsmy36 Nippon Life Insurance Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿå‘½č²”å›£'),
(95716, 'https://ror.org/05f1eky95', 'en', 0, 'https://ror.org/05f1eky95 University of Saint Katherine'),
(95717, 'https://ror.org/04as3rk94', 'en', 1, 'https://ror.org/04as3rk94 Grenoble Institute of Neurosciences Institut des Neurosciences de Grenoble'),
(95718, 'https://ror.org/01hyzmp36', 'en', 1, 'https://ror.org/01hyzmp36 Shenzhen Ruipuxun Academy for Stem Cell & Regenerative Medicine'),
(95719, 'https://ror.org/056hav897', 'fr', 1, 'https://ror.org/056hav897 Plateformes Lilloises en Biologie et SantƩ'),
(95720, 'https://ror.org/00b9dvn87', 'it', 1, 'https://ror.org/00b9dvn87 Gruppo Nazionale per le Strutture Algebriche, Geometriche e le loro Applicazioni National Group for Algebraic, Geometric Structures and their Applications'),
(95721, 'https://ror.org/05x9zmx47', 'fr', 1, 'https://ror.org/05x9zmx47 CANTHER - Cancer, Heterogeneity, Plasticity and Resistance to Therapies CANTHER - HƩtƩrogƩnƩitƩ, PlasticitƩ et RƩsistance aux ThƩrapies des Cancers'),
(95722, 'https://ror.org/01k7fr644', 'id', 1, 'https://ror.org/01k7fr644 Universitas Muhammadiyah Kotabumi'),
(95723, 'https://ror.org/05wcwnx35', 'en', 1, 'https://ror.org/05wcwnx35 Brooklyn Academy of Music'),
(95724, 'https://ror.org/02m9kbe37', 'fr', 1, 'https://ror.org/02m9kbe37 Universitat de Tolon University of Toulon UniversitƩ de Toulon'),
(95725, 'https://ror.org/03ry6p839', 'es', 1, 'https://ror.org/03ry6p839 Instituto Tecnológico Superior de Huatusco'),
(95726, 'https://ror.org/00390t168', 'en', 1, 'https://ror.org/00390t168 College of Charleston'),
(95727, 'https://ror.org/0436nxt45', 'en', 0, 'https://ror.org/0436nxt45 Hydrobiologický Ústav Biologické Centrum AV ČR Institute of Hydrobiology, Biology Centre, Academy of Sciences of the Czech Republic'),
(95728, 'https://ror.org/05cz9j146', 'en', 1, 'https://ror.org/05cz9j146 Lusail University Ų¬ŁŽŲ§Ł…ŁŲ¹ŁŽŲ© Ł„ŁŁˆŲ³ŁŽŁŠŁ’Ł„'),
(95729, 'https://ror.org/04waf7p94', 'pl', 1, 'https://ror.org/04waf7p94 Instytut Biologii Doświadczalnej im. Marcelego Nenckiego'),
(95730, 'https://ror.org/03yv2tx67', 'es', 1, 'https://ror.org/03yv2tx67 AuditorĆ­a General de la RepĆŗblica'),
(95731, 'https://ror.org/03a0px669', 'en', 1, 'https://ror.org/03a0px669 Northeast Brooklyn Housing Development Corporation'),
(95732, 'https://ror.org/051pmyn62', 'en', 1, 'https://ror.org/051pmyn62 Centre de l’infection, de l’immunitĆ© et de l’inflammation Centre for Infection, Immunity and Inflammation'),
(95733, 'https://ror.org/03v9h4a52', 'pt', 1, 'https://ror.org/03v9h4a52 Conservatório Superior de Música de Gaia'),
(95734, 'https://ror.org/00aamz256', 'en', 1, 'https://ror.org/00aamz256 Georgian Technical University Š“Ń€ŃƒŠ·ŠøŠ½ŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ÕŽÖ€Õ”Õ½ÕæÕ”Õ¶Õ« ÕæÕ„Õ­Õ¶Õ«ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ¢įƒ”įƒ„įƒœįƒ˜įƒ™įƒ£įƒ įƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(95735, 'https://ror.org/031tam096', 'es', 1, 'https://ror.org/031tam096 Hospital de Especialidades de Portoviejo'),
(95736, 'https://ror.org/01n7dqn92', 'en', 1, 'https://ror.org/01n7dqn92 JanĆ”Äek Academy of Performing Arts JanĆ”Äkova akademie mĆŗzických uměnĆ­'),
(95737, 'https://ror.org/02p4sx080', 'en', 0, 'https://ror.org/02p4sx080 Northamptonshire County Council'),
(95738, 'https://ror.org/05bmezg83', 'de', 1, 'https://ror.org/05bmezg83 Die Autobahn GmbH des Bundes Die Autobahn GmbH des Bundes (Germany)'),
(95739, 'https://ror.org/00ca3ps77', 'no_lang_code', 1, 'https://ror.org/00ca3ps77 August Storck KG August Storck KG (Germany)'),
(95740, 'https://ror.org/03yh1tp98', 'pt', 1, 'https://ror.org/03yh1tp98 Fundo Nacional de Investigação'),
(95741, 'https://ror.org/00za3wc71', 'de', 0, 'https://ror.org/00za3wc71 Klinik und Poliklinik für Hautkrankheiten'),
(95742, 'https://ror.org/033xefj97', 'en', 1, 'https://ror.org/033xefj97 Centre Interdisciplinaire pour la santƩ des Noir Interdisciplinary Centre for Black Health'),
(95743, 'https://ror.org/037130043', 'en', 1, 'https://ror.org/037130043 Virginia Serious Game Institute'),
(95744, 'https://ror.org/057sc3e48', 'en', 1, 'https://ror.org/057sc3e48 Youxi County General Hospital'),
(95745, 'https://ror.org/00h01ex42', 'en', 1, 'https://ror.org/00h01ex42 Alaska Center for Energy and Power'),
(95746, 'https://ror.org/03k118f17', 'no_lang_code', 1, 'https://ror.org/03k118f17 Wolfram Research (United States)'),
(95747, 'https://ror.org/03m6ee736', 'en', 1, 'https://ror.org/03m6ee736 Vermont State University'),
(95748, 'https://ror.org/007gfwn20', 'fr', 1, 'https://ror.org/007gfwn20 Fachhochschule Westschweiz - Genf HES-SO GenĆØve Haute Ɖcole SpĆ©cialisĆ©e de Suisse Occidentale - GenĆØve University of Applied Sciences and Arts Western Switzerland – Geneva'),
(95749, 'https://ror.org/00gpmb873', 'de', 1, 'https://ror.org/00gpmb873 Canton of St. Gallen-Hospital Kantonsspital St. Gallen'),
(95750, 'https://ror.org/00daj4111', 'en', 1, 'https://ror.org/00daj4111 Innovation Fund Denmark Innovationsfonden'),
(95751, 'https://ror.org/03kaedj42', 'en', 1, 'https://ror.org/03kaedj42 International Dairy Federation'),
(95752, 'https://ror.org/02gzkyr25', 'en', 1, 'https://ror.org/02gzkyr25 Centre de recherche sur le futur des villes Research Centre on the Future of Cities'),
(95753, 'https://ror.org/05p96ba03', 'en', 0, 'https://ror.org/05p96ba03 Monash Institute of Medical Research'),
(95754, 'https://ror.org/01mgaqp12', 'en', 1, 'https://ror.org/01mgaqp12 Aktobe Regional State University named after K.Zhubanov Қ.Жұбанов атынГағы Ақтөбе өңірлік мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(95755, 'https://ror.org/042mm0k03', 'en', 1, 'https://ror.org/042mm0k03 Microscopy Australia'),
(95756, 'https://ror.org/02477a553', 'en', 1, 'https://ror.org/02477a553 Imam Ja’afar Al-Sadiq University'),
(95757, 'https://ror.org/03xftxq32', 'en', 1, 'https://ror.org/03xftxq32 PhytoTrade Africa'),
(95758, 'https://ror.org/00a5dxw64', 'fr', 1, 'https://ror.org/00a5dxw64 Ɖcole Nationale SupĆ©rieure d''Architecture de Normandie'),
(95759, 'https://ror.org/039yjh421', 'de', 1, 'https://ror.org/039yjh421 Deutsch-Franzƶsisches Institut'),
(95760, 'https://ror.org/05txm7f82', 'en', 1, 'https://ror.org/05txm7f82 Northwest University First Hospital č„æåŒ—å¤§å­¦ē¬¬äø€åŒ»é™¢'),
(95761, 'https://ror.org/05vdb2m56', 'en', 1, 'https://ror.org/05vdb2m56 Centre de recherche en santƩ et sciences infirmieres Centre for Research on Health and Nursing'),
(95762, 'https://ror.org/05fbn8x75', 'en', 1, 'https://ror.org/05fbn8x75 Wolfram Institute for Computational Foundations of Science'),
(95763, 'https://ror.org/039spa369', 'es', 1, 'https://ror.org/039spa369 Universidad Tecnológica Fidel VelÔzquez'),
(95764, 'https://ror.org/04c794867', 'en', 1, 'https://ror.org/04c794867 Centre de Droit de l''environnement Centre for Environmental Law and Global Sustainability'),
(95765, 'https://ror.org/05nxhgm70', 'nl', 1, 'https://ror.org/05nxhgm70 Dutch Heart Foundation Hartstichting Nederlandse Hartstichting'),
(95766, 'https://ror.org/05gz77z03', 'no_lang_code', 1, 'https://ror.org/05gz77z03 Thales Alenia Space Thales Alenia Space (France)'),
(95767, 'https://ror.org/02tcssc12', 'en', 1, 'https://ror.org/02tcssc12 Assalam International University Ų¬Ų§Ł…Ų¹Ų© السلام Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© - Ų³Ų±ŲŖ'),
(95768, 'https://ror.org/02n9c6y33', 'en', 1, 'https://ror.org/02n9c6y33 University of Al-Hamdaniya Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­Ł…ŲÆŲ§Ł†ŁŠŲ©'),
(95769, 'https://ror.org/04qs3nf63', 'pt', 1, 'https://ror.org/04qs3nf63 Escola Superior de Tecnologias de Fafe'),
(95770, 'https://ror.org/04m053216', 'en', 1, 'https://ror.org/04m053216 Khorezm Rural Advisory Support Service Xorazm Agromaslahat Markazi Єорезмский Агро-ŠšŠ¾Š½ŃŃƒŠ»ŃŒŃ‚Š°Ń‚ŠøŠ²Š½Ń‹Š¹ Центр'),
(95771, 'https://ror.org/0455wwj08', 'fr', 1, 'https://ror.org/0455wwj08 Laboratoire GƩnie Industriel'),
(95772, 'https://ror.org/033z59547', 'es', 1, 'https://ror.org/033z59547 Centro de Recursos para el Aprendizaje y la Investigación P. Florentino Idoate S.J.'),
(95773, 'https://ror.org/01dp7jr64', 'fr', 1, 'https://ror.org/01dp7jr64 Ɖcole Normale SupĆ©rieure'),
(95774, 'https://ror.org/04713ex73', 'en', 1, 'https://ror.org/04713ex73 Chengdu Technological University ęˆéƒ½å·„äøšå­¦é™¢'),
(95775, 'https://ror.org/04wxbhc62', 'en', 1, 'https://ror.org/04wxbhc62 Himalayan College of Agricultural Sciences and Technology'),
(95776, 'https://ror.org/00hxwjw54', 'pt', 0, 'https://ror.org/00hxwjw54 Centro UniversitƔrio Internacional UNINTER'),
(95777, 'https://ror.org/05ekbxr47', 'pt', 1, 'https://ror.org/05ekbxr47 Instituto Politécnico de Saúde do Norte - CESPU'),
(95778, 'https://ror.org/01h3wfd56', 'de', 1, 'https://ror.org/01h3wfd56 Nordzucker AG Nordzucker AG (Germany)'),
(95779, 'https://ror.org/03vaxkw63', 'en', 1, 'https://ror.org/03vaxkw63 Institute of Physics and Technology'),
(95780, 'https://ror.org/03c7zyj82', 'fr', 1, 'https://ror.org/03c7zyj82 Sciences Po Grenoble'),
(95781, 'https://ror.org/01m7n4g71', 'en', 1, 'https://ror.org/01m7n4g71 Centre for Health Law, Policy and Ethics'),
(95782, 'https://ror.org/027nn6b17', 'en', 1, 'https://ror.org/027nn6b17 Data Observatory Foundation Fundación Observatorio de Datos'),
(95783, 'https://ror.org/03dfz9238', 'pl', 1, 'https://ror.org/03dfz9238 Akademii Nauk Stosowanych im. Józefa Gołuchowskiego'),
(95784, 'https://ror.org/03q5e6q66', 'it', 1, 'https://ror.org/03q5e6q66 Fondazione Ricerca Biomedica Avanzata Onlus - VIMM'),
(95785, 'https://ror.org/01trny179', 'de', 1, 'https://ror.org/01trny179 Klinik und Poliklinik für Strahlentherapie und Radioonkologie'),
(95786, 'https://ror.org/001f39w38', 'en', 1, 'https://ror.org/001f39w38 Clermont Auvergne INP'),
(95787, 'https://ror.org/01pwmqe95', 'en', 1, 'https://ror.org/01pwmqe95 World Data System'),
(95788, 'https://ror.org/041g3z125', 'en', 1, 'https://ror.org/041g3z125 Volga Region State University of Service Поволжский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ сервиса'),
(95789, 'https://ror.org/0048jxt15', 'en', 1, 'https://ror.org/0048jxt15 Veneto Institute of Molecular Medicine'),
(95790, 'https://ror.org/04yfac239', 'en', 1, 'https://ror.org/04yfac239 COC Ruse Complex Oncology Center - Ruse Kompleksen Onkologichen Tsentar – Ruse Комплексен ŠžŠ½ŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŠ½ Š¦ŠµŠ½Ń‚ŃŠŃ€ Русе'),
(95791, 'https://ror.org/011c8cv48', 'fr', 1, 'https://ror.org/011c8cv48 BibliothĆØque interuniversitaire Cujas'),
(95792, 'https://ror.org/020ws7586', 'fr', 1, 'https://ror.org/020ws7586 Institut National des Sciences AppliquƩes Rouen Normandie'),
(95793, 'https://ror.org/018tp9r65', 'de', 1, 'https://ror.org/018tp9r65 Deutsche Stiftung für Engagement und Ehrenamt'),
(95794, 'https://ror.org/002pcmz09', 'es', 1, 'https://ror.org/002pcmz09 Universidad Tecnológica de TehuacÔn'),
(95795, 'https://ror.org/014c1mf08', 'en', 1, 'https://ror.org/014c1mf08 Dalian Naval Academy äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›å¤§čæžčˆ°č‰‡å­¦é™¢'),
(95796, 'https://ror.org/00bea5h57', 'fr', 1, 'https://ror.org/00bea5h57 Institute Mutualiste Montsouris'),
(95797, 'https://ror.org/04m8fht31', 'en', 1, 'https://ror.org/04m8fht31 Saint Paul & Minnesota Foundation'),
(95798, 'https://ror.org/05ey0h058', 'en', 1, 'https://ror.org/05ey0h058 Nansen Environmental and Remote Sensing Center Stiftelsen Nansen Senter For Miljƶ OG FjernmƄling'),
(95799, 'https://ror.org/047j0dn45', 'pt', 1, 'https://ror.org/047j0dn45 Cruz Vermelha Portuguesa'),
(95800, 'https://ror.org/039nazg33', 'en', 0, 'https://ror.org/039nazg33 Institute of Entomology'),
(95801, 'https://ror.org/02tz8r820', 'en', 0, 'https://ror.org/02tz8r820 Institute of Soil Biology'),
(95802, 'https://ror.org/00jaxbw05', 'pt', 1, 'https://ror.org/00jaxbw05 Instituto PolitƩcnico da Maia'),
(95803, 'https://ror.org/0079gpv38', 'es', 1, 'https://ror.org/0079gpv38 Autonomous University of Mexico State Universidad Autónoma del Estado de México'),
(95804, 'https://ror.org/035wq2m82', 'en', 1, 'https://ror.org/035wq2m82 Centre de recherche en droit, technologie et sociƩtƩ Centre for Law, Technology and Society'),
(95805, 'https://ror.org/0230c9q89', 'en', 1, 'https://ror.org/0230c9q89 ESIC Universidad ESIC University'),
(95806, 'https://ror.org/04ezxnp02', 'en', 1, 'https://ror.org/04ezxnp02 Birds Canada Oiseaux Canada'),
(95807, 'https://ror.org/002s5nt60', 'en', 1, 'https://ror.org/002s5nt60 Alfred Landecker Foundation'),
(95808, 'https://ror.org/04n9e8n41', 'tr', 1, 'https://ror.org/04n9e8n41 Aile ve Sosyal Hizmetler Bakanlığı'),
(95809, 'https://ror.org/03j546b66', 'de', 1, 'https://ror.org/03j546b66 Klinik und Poliklinik für Psychiatrie und Psychotherapie'),
(95810, 'https://ror.org/001vq2a15', 'en', 1, 'https://ror.org/001vq2a15 University of the South Pacific - Solomon Islands Campus'),
(95811, 'https://ror.org/02jd4yc28', 'it', 1, 'https://ror.org/02jd4yc28 Istituto Italiano di Studi Germanici'),
(95812, 'https://ror.org/03nf8d138', 'fr', 1, 'https://ror.org/03nf8d138 CHANGINS - Haute Ć©cole de viticulture et œnologie'),
(95813, 'https://ror.org/017mqhz69', 'en', 1, 'https://ror.org/017mqhz69 Tobruk University Ų¬Ų§Ł…Ų¹Ų© طبرق'),
(95814, 'https://ror.org/04xrcta15', 'en', 1, 'https://ror.org/04xrcta15 Munich Center for Quantum Science and Technology'),
(95815, 'https://ror.org/00f003n59', 'no_lang_code', 1, 'https://ror.org/00f003n59 Wolfram Research (United Kingdom)'),
(95816, 'https://ror.org/01920cw75', 'fr', 1, 'https://ror.org/01920cw75 Galaxies, Etoiles, Physique et Instrumentation'),
(95817, 'https://ror.org/01ss0kv69', 'en', 1, 'https://ror.org/01ss0kv69 Data Literacy Research Institute Institut de recherche en littƩratie des donnƩes'),
(95818, 'https://ror.org/00jgk9c55', 'en', 1, 'https://ror.org/00jgk9c55 Monash University European Research Foundation ETS'),
(95819, 'https://ror.org/032j9w495', 'en', 1, 'https://ror.org/032j9w495 Ministry of Technical and Higher Education'),
(95820, 'https://ror.org/03zthsk19', 'en', 1, 'https://ror.org/03zthsk19 Walk21'),
(95821, 'https://ror.org/05g0swy93', 'en', 1, 'https://ror.org/05g0swy93 LIFE Institute de Recherches LIFE Research Institute'),
(95822, 'https://ror.org/00n7ppt67', 'en', 1, 'https://ror.org/00n7ppt67 Sawa University Ų¬Ų§Ł…Ų¹Ų© ساوة'),
(95823, 'https://ror.org/032qezt74', 'fr', 1, 'https://ror.org/032qezt74 Institut de Recherche pour le DƩveloppement'),
(95824, 'https://ror.org/02xhk2825', 'en', 1, 'https://ror.org/02xhk2825 Pew Charitable Trusts'),
(95825, 'https://ror.org/03cg93958', 'es', 1, 'https://ror.org/03cg93958 Instituto de Assistência Médica ao Servidor Público Estadual'),
(95826, 'https://ror.org/055t1w920', 'en', 1, 'https://ror.org/055t1w920 State Education Development Agency Valsts izglītības attīstības aģentūra'),
(95827, 'https://ror.org/02dd6pb80', 'pt', 0, 'https://ror.org/02dd6pb80 ISPA - Instituto UniversitƔrio'),
(95828, 'https://ror.org/033rh4q91', 'en', 1, 'https://ror.org/033rh4q91 East Asia Institute of Management'),
(95829, 'https://ror.org/035pqt812', 'es', 1, 'https://ror.org/035pqt812 Tecnológico de Estudios Superiores de Coacalco'),
(95830, 'https://ror.org/04zj3zq12', 'de', 1, 'https://ror.org/04zj3zq12 Fachklinik für Neurologie Dietenbronn'),
(95831, 'https://ror.org/03v4vk244', 'la', 1, 'https://ror.org/03v4vk244 Collegium Polonicum'),
(95832, 'https://ror.org/01n8adr31', 'en', 1, 'https://ror.org/01n8adr31 Kotebe University of Education'),
(95833, 'https://ror.org/03ykjzh91', 'de', 1, 'https://ror.org/03ykjzh91 Baden Württemberg Cancer-Registry Krebsregister Baden-Württemberg'),
(95834, 'https://ror.org/04s5p1a35', 'pt', 1, 'https://ror.org/04s5p1a35 Centro Nacional de Pesquisa e Conservação de Cavernas Chico Mendes Institute for Biodiversity Conservation Instituto Chico Mendes de Conservação da Biodiversidade'),
(95835, 'https://ror.org/02am8se85', 'de', 1, 'https://ror.org/02am8se85 Klinik für Schweine'),
(95836, 'https://ror.org/02pbyft41', 'en', 1, 'https://ror.org/02pbyft41 Southwest Alaska Inventory and Monitoring Network'),
(95837, 'https://ror.org/04qae1p49', 'no_lang_code', 1, 'https://ror.org/04qae1p49 DoCoMo Communications Laboratories Europe GmbH'),
(95838, 'https://ror.org/00vmsps81', 'en', 1, 'https://ror.org/00vmsps81 Urganch Innovation University'),
(95839, 'https://ror.org/02hfps373', 'en', 1, 'https://ror.org/02hfps373 Medicines360'),
(95840, 'https://ror.org/01g72me42', 'en', 1, 'https://ror.org/01g72me42 Nuu Chah Nulth Tribal Council'),
(95841, 'https://ror.org/025z3z560', 'en', 1, 'https://ror.org/025z3z560 Munich Cluster for Systems Neurology'),
(95842, 'https://ror.org/05x85js44', 'en', 1, 'https://ror.org/05x85js44 Assumption College of Davao'),
(95843, 'https://ror.org/00j5kjh37', 'en', 1, 'https://ror.org/00j5kjh37 Cor Jesu College'),
(95844, 'https://ror.org/020f58t40', 'en', 1, 'https://ror.org/020f58t40 Regional Environmental Center For Central Asia Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Экологический Центр Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(95845, 'https://ror.org/03ypxpx75', 'en', 1, 'https://ror.org/03ypxpx75 Centre de recherche sur les services Ʃducatifs et communautaires Centre for Research on Educational and Community Services'),
(95846, 'https://ror.org/057pxfr24', 'en', 1, 'https://ror.org/057pxfr24 Veterinary Standards and Drug Regulatory Laboratory'),
(95847, 'https://ror.org/02jfe2t95', 'pt', 1, 'https://ror.org/02jfe2t95 Escola Superior de Saúde da Fundação ''Fernando Pessoa'''),
(95848, 'https://ror.org/002epp671', 'en', 1, 'https://ror.org/002epp671 Center for NanoScience'),
(95849, 'https://ror.org/014q1bn90', 'pt', 1, 'https://ror.org/014q1bn90 Universidade Lusíada de Vila Nova de Famalicão'),
(95850, 'https://ror.org/00ctmtz16', 'en', 1, 'https://ror.org/00ctmtz16 North Central Climate Adaptation Science Center'),
(95851, 'https://ror.org/025ng2310', 'es', 1, 'https://ror.org/025ng2310 Universidad Tecnológica de la Región Carbonífera'),
(95852, 'https://ror.org/02tvvdy44', 'en', 1, 'https://ror.org/02tvvdy44 Pew Research Center'),
(95853, 'https://ror.org/01996tc28', 'en', 1, 'https://ror.org/01996tc28 Munich Institute for Astro- and Particle Physics'),
(95854, 'https://ror.org/03k467383', 'en', 1, 'https://ror.org/03k467383 University of Oran 2 Mohamed Ben Ahmed UniversitĆ© d''Oran 2 Mohamed Ben Ahme Ų¬Ų§Ł…Ų¹Ų© ŁˆŁ‡Ų±Ų§Ł† 2 Ł…Ų­Ł…ŲÆ بن Ų£Ų­Ł…ŲÆ'),
(95855, 'https://ror.org/00je8sn69', 'en', 1, 'https://ror.org/00je8sn69 Rocket Force Sergeant School äø­å›½äŗŗę°‘č§£ę”¾å†›ē«ē®­å†›å£«å®˜å­¦ę ”'),
(95856, 'https://ror.org/032h9wv69', 'cs', 1, 'https://ror.org/032h9wv69 Czech Archaeological Society ČeskĆ” archeologickĆ” společnost'),
(95857, 'https://ror.org/03be9n013', 'en', 1, 'https://ror.org/03be9n013 University of the South Pacific - Samoa Campus'),
(95858, 'https://ror.org/02epwtt47', 'en', 1, 'https://ror.org/02epwtt47 OLS'),
(95859, 'https://ror.org/03f90br77', 'en', 1, 'https://ror.org/03f90br77 Mashreq University Ų¬Ų§Ł…Ų¹Ų© المؓرق'),
(95860, 'https://ror.org/04wb5nh51', 'id', 1, 'https://ror.org/04wb5nh51 Universitas Muhammadiyah Kalimantan Timur'),
(95861, 'https://ror.org/00b03qn53', 'en', 1, 'https://ror.org/00b03qn53 North Northamptonshire Council'),
(95862, 'https://ror.org/00qf78c11', 'en', 1, 'https://ror.org/00qf78c11 Centre commun de recherche sur les systèmes et la pharmacologie personnalisée Joint Research Center on Systems and Personalized Pharmacology'),
(95863, 'https://ror.org/05k10hd12', 'en', 1, 'https://ror.org/05k10hd12 Ministerium für Landwirtschaft, Ernährung und Weinbau Ministry of Agriculture, Food and Viticulture Ministère de l''Agriculture, de l''Alimentation et de la Viticultur Ministère fir Landwirtschaft, Ernärung a Wäibau'),
(95864, 'https://ror.org/00s2fy654', 'en', 1, 'https://ror.org/00s2fy654 West Northamptonshire Council'),
(95865, 'https://ror.org/048tf4023', 'en', 1, 'https://ror.org/048tf4023 Centre de recherche sur les francophonies canadiennes Centre for Research on French Canadian Culture'),
(95866, 'https://ror.org/04s7shc55', 'de', 1, 'https://ror.org/04s7shc55 Forschungsinstitut für Anwendungsorientierte Wissensverarbeitung'),
(95867, 'https://ror.org/032hzb643', 'en', 1, 'https://ror.org/032hzb643 Center for Integrated Protein Science Munich'),
(95868, 'https://ror.org/05hb8m595', 'fr', 1, 'https://ror.org/05hb8m595 PHOTOSYNTHESE'),
(95869, 'https://ror.org/04qf1dc42', 'no_lang_code', 1, 'https://ror.org/04qf1dc42 Plazi Verein'),
(95870, 'https://ror.org/0468dv016', 'id', 1, 'https://ror.org/0468dv016 Institut Nalanda Nalanda Institute'),
(95871, 'https://ror.org/04nvpy675', 'tr', 1, 'https://ror.org/04nvpy675 Gaziantep Islam Science and Technology University Gaziantep İslam Bilim ve Teknoloji Üniversitesi'),
(95872, 'https://ror.org/02mkvtw30', 'en', 1, 'https://ror.org/02mkvtw30 Brooklyn Perinatal Network'),
(95873, 'https://ror.org/05he7vj96', 'en', 1, 'https://ror.org/05he7vj96 Modern Business School Visoka Ŕkola modernog biznisa'),
(95874, 'https://ror.org/01bcckr12', 'en', 1, 'https://ror.org/01bcckr12 Canada Energy Regulator RĆ©gie de l’énergie du Canada'),
(95875, 'https://ror.org/02jjvb954', 'la', 1, 'https://ror.org/02jjvb954 Collegium Carolinum'),
(95876, 'https://ror.org/0241zpm76', 'en', 1, 'https://ror.org/0241zpm76 Algiers 2 University UniversitĆ© d''Alger 2 Ų¬Ų§Ł…Ų¹Ų© الجزائر 2'),
(95877, 'https://ror.org/03vtskf62', 'en', 1, 'https://ror.org/03vtskf62 California Earthquake Authority'),
(95878, 'https://ror.org/02hxb7v96', 'en', 1, 'https://ror.org/02hxb7v96 Society for Ecological Restoration'),
(95879, 'https://ror.org/04kvn3r95', 'en', 1, 'https://ror.org/04kvn3r95 Springer Nature (India)'),
(95880, 'https://ror.org/014g4a840', 'en', 1, 'https://ror.org/014g4a840 Falkland Islands Fisheries Department'),
(95881, 'https://ror.org/01h85cx24', 'en', 1, 'https://ror.org/01h85cx24 Institut geografii Respubliki Kazahstan Institute of Geography Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географии'),
(95882, 'https://ror.org/05pqx1c24', 'en', 1, 'https://ror.org/05pqx1c24 Denison University'),
(95883, 'https://ror.org/00jr65m43', 'en', 0, 'https://ror.org/00jr65m43 Institute of Plant Molecular Biology'),
(95884, 'https://ror.org/02g07ds81', 'en', 1, 'https://ror.org/02g07ds81 University of Duhok Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ‡ŁˆŁƒ'),
(95885, 'https://ror.org/056g0b798', 'pt', 1, 'https://ror.org/056g0b798 Fundação Minerva - Cultura - Ensino e Investigação Científica'),
(95886, 'https://ror.org/057fagq12', 'en', 1, 'https://ror.org/057fagq12 Bridging Access to Care'),
(95887, 'https://ror.org/006g31f33', 'de', 1, 'https://ror.org/006g31f33 Institut für Sonnenphysik Institute for Solar Physics'),
(95888, 'https://ror.org/02ttsq026', 'en', 1, 'https://ror.org/02ttsq026 Universidad de Colorado en Boulder University of Colorado Boulder UniversitƩ du Colorado Ơ Boulder'),
(95889, 'https://ror.org/04tpgrv36', 'en', 1, 'https://ror.org/04tpgrv36 Institute for Wildlife Studies'),
(95890, 'https://ror.org/04q8dyb68', 'en', 1, 'https://ror.org/04q8dyb68 Devki Devi Foundation'),
(95891, 'https://ror.org/02794jc95', 'de', 1, 'https://ror.org/02794jc95 Klinik und Poliklinik für Frauenheilkunde und Geburtshilfe'),
(95892, 'https://ror.org/05fw3y429', 'de', 1, 'https://ror.org/05fw3y429 Klinik und Poliklinik für Orthopädie, Physikalische Medizin und Rehabilitation'),
(95893, 'https://ror.org/04sftj265', 'en', 1, 'https://ror.org/04sftj265 Hį»c viện PhỄ nữ Việt Nam Vietnam Women''s Academy'),
(95894, 'https://ror.org/058j80c12', 'de', 1, 'https://ror.org/058j80c12 Deutsche Gesellschaft für Limnologie'),
(95895, 'https://ror.org/045dq5f72', 'no', 1, 'https://ror.org/045dq5f72 Stord hospital'),
(95896, 'https://ror.org/00p9ghj81', 'pt', 1, 'https://ror.org/00p9ghj81 Uninter'),
(95897, 'https://ror.org/00cbbq754', 'es', 1, 'https://ror.org/00cbbq754 Universidad Privada San Francisco de AsĆ­s Universidad San Francisco de AsĆ­s'),
(95898, 'https://ror.org/044tjxx32', 'en', 1, 'https://ror.org/044tjxx32 Centre de Droit Public Public Law Centre'),
(95899, 'https://ror.org/04z8qxc46', 'en', 1, 'https://ror.org/04z8qxc46 The Fund for Science, Technology and Innovation'),
(95900, 'https://ror.org/01z25am55', 'en', 1, 'https://ror.org/01z25am55 Center for Integrated Quantum Science and Technology'),
(95901, 'https://ror.org/00ek2rf42', 'en', 1, 'https://ror.org/00ek2rf42 Australian National Soil Archive'),
(95902, 'https://ror.org/01h2vtb84', 'en', 1, 'https://ror.org/01h2vtb84 Rachel Carson Center for Environment and Society'),
(95903, 'https://ror.org/05gngra25', 'es', 1, 'https://ror.org/05gngra25 Escuela Normal Rural "Gral. MatĆ­as Ramos Santos"'),
(95904, 'https://ror.org/05n8j1468', 'en', 1, 'https://ror.org/05n8j1468 Fonna Hospital Trust'),
(95905, 'https://ror.org/02gm62a96', 'en', 1, 'https://ror.org/02gm62a96 Prague Advanced Technology and Research Innovation Center, a.s.'),
(95906, 'https://ror.org/04r1rhv60', 'pt', 1, 'https://ror.org/04r1rhv60 Hospital do Servidor PĆŗblico Estadual'),
(95907, 'https://ror.org/052msxy68', 'en', 1, 'https://ror.org/052msxy68 Montana University System Sistema Universitario de Montana'),
(95908, 'https://ror.org/041w4c980', 'en', 1, 'https://ror.org/041w4c980 Laoshan Laboratory'),
(95909, 'https://ror.org/04gq09j61', 'en', 1, 'https://ror.org/04gq09j61 Institute of Agriculture and Animal Science'),
(95910, 'https://ror.org/01vgyse67', 'sh', 1, 'https://ror.org/01vgyse67 SveučiliÅ”te Privredna akademija University Business Academy in Novi Sad Univerzitet Privredna akademija u Novom Sadu Универзитет ŠŸŃ€ŠøŠ²Ń€ŠµŠ“Š½Š° акаГемија'),
(95911, 'https://ror.org/04q58ph11', 'en', 1, 'https://ror.org/04q58ph11 National Commission on Research Science and Technology'),
(95912, 'https://ror.org/010t4mz11', 'en', 1, 'https://ror.org/010t4mz11 WWF Hungary WWF MagyarorszƔg'),
(95913, 'https://ror.org/008mb6p65', 'en', 0, 'https://ror.org/008mb6p65 Technology Research Institute of Osaka Prefecture å¤§é˜Ŗåŗœē«‹ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(95914, 'https://ror.org/01p0n4966', 'en', 1, 'https://ror.org/01p0n4966 Open Modeling Foundation'),
(95915, 'https://ror.org/059et2b68', 'fr', 1, 'https://ror.org/059et2b68 UniversitĆ© Oran 1 Ahmed Ben Bella Ų¬Ų§Ł…Ų¹Ų© ŁˆŁ‡Ų±Ų§Ł†1 Ų£Ų­Ł…ŲÆ بن بلة'),
(95916, 'https://ror.org/04smycn12', 'en', 1, 'https://ror.org/04smycn12 Roy Rosenzweig Center for History and New Media'),
(95917, 'https://ror.org/004fa0x02', 'en', 1, 'https://ror.org/004fa0x02 University of Bamberg Press'),
(95918, 'https://ror.org/03vkhr254', 'fr', 1, 'https://ror.org/03vkhr254 Centre Virchow-VillermƩ'),
(95919, 'https://ror.org/01j7nq853', 'en', 1, 'https://ror.org/01j7nq853 Universidad de Alaska Fairbanks University of Alaska Fairbanks UniversitƩ de l''alaska Ơ fairbanks'),
(95920, 'https://ror.org/010wkny21', 'en', 1, 'https://ror.org/010wkny21 Excellence Cluster Origins Exzellenzcluster Origins'),
(95921, 'https://ror.org/02rk7kr02', 'id', 1, 'https://ror.org/02rk7kr02 Universitas Mochammad Sroedji Jember'),
(95922, 'https://ror.org/02kqs4h17', 'en', 1, 'https://ror.org/02kqs4h17 EHL Hospitality Business School'),
(95923, 'https://ror.org/02vb93k64', 'en', 1, 'https://ror.org/02vb93k64 Institut de l''environnement Institute of the Environment'),
(95924, 'https://ror.org/036zr1b90', 'en', 1, 'https://ror.org/036zr1b90 Institut klinickƩ a experimentƔlnƭ medicƭny Institute of Clinical and Experimental Medicine'),
(95925, 'https://ror.org/02xk45068', 'en', 1, 'https://ror.org/02xk45068 Institut de recherche sur la science, la sociƩtƩ et la politique publique Institute for Science, Society and Policy'),
(95926, 'https://ror.org/01ct9zb26', 'en', 1, 'https://ror.org/01ct9zb26 Wulin Academy of Arts ę­¦ęž—ę›øē•«é™¢'),
(95927, 'https://ror.org/02xvafv39', 'en', 1, 'https://ror.org/02xvafv39 ALS CURE Project'),
(95928, 'https://ror.org/03pj6ge82', 'en', 0, 'https://ror.org/03pj6ge82 Ministry of Education and Science of the Republic of Kazakhstan'),
(95929, 'https://ror.org/0083mf965', 'en', 1, 'https://ror.org/0083mf965 Hudson Institute of Medical Research'),
(95930, 'https://ror.org/04wez4p43', 'fr', 0, 'https://ror.org/04wez4p43 Laboratoire d''Automatique, GƩnie Informatique et Signal'),
(95931, 'https://ror.org/02c2jyf78', 'en', 1, 'https://ror.org/02c2jyf78 Research Council of Zimbabwe'),
(95932, 'https://ror.org/00xc87681', 'en', 1, 'https://ror.org/00xc87681 Shota Rustaveli National Science Foundation'),
(95933, 'https://ror.org/00va9mk15', 'en', 1, 'https://ror.org/00va9mk15 Gaia College'),
(95934, 'https://ror.org/047xz1e88', 'en', 1, 'https://ror.org/047xz1e88 L’Institut de biologie des systĆØmes d’Ottawa Ottawa Institute of Systems Biology'),
(95935, 'https://ror.org/04cxsn644', 'fr', 1, 'https://ror.org/04cxsn644 DƩlƩgation Nord, Pas-de-Calais et Picardie'),
(95936, 'https://ror.org/0015z8z93', 'en', 1, 'https://ror.org/0015z8z93 University College of Allameh Helli دانؓگاه علامه Ų­Ł„ŪŒ Ś†Ų§Ł„ŁˆŲ³'),
(95937, 'https://ror.org/05xwv2r69', 'id', 1, 'https://ror.org/05xwv2r69 Institut Teknologi dan Sains Mandala'),
(95938, 'https://ror.org/00sje9010', 'en', 1, 'https://ror.org/00sje9010 Saskatchewan Epidemiology Association'),
(95939, 'https://ror.org/03aes0d95', 'fr', 0, 'https://ror.org/03aes0d95 Centre Intégré de Santé et Services Sociaux de Chaudière-Appalache'),
(95940, 'https://ror.org/01zsaxn18', 'en', 1, 'https://ror.org/01zsaxn18 National Coalition of Independent Scholars'),
(95941, 'https://ror.org/05q526p85', 'en', 1, 'https://ror.org/05q526p85 Centre de recherche et d''enseignement sur les droits de la personne Human Rights Research and Education Centre'),
(95942, 'https://ror.org/01wtxm109', 'en', 1, 'https://ror.org/01wtxm109 Institute of Zoology Š—Š¾Š¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(95943, 'https://ror.org/05fr89837', 'de', 1, 'https://ror.org/05fr89837 Institut für Qualitätsentwicklung an Schulen Schleswig-Holstein'),
(95944, 'https://ror.org/05frnbh40', 'pt', 1, 'https://ror.org/05frnbh40 Escola Superior de SaĆŗde Cruz Vermelha Portuguesa - Alto TĆ¢mega'),
(95945, 'https://ror.org/00jga3n25', 'pt', 1, 'https://ror.org/00jga3n25 Associação De Conservação Do Ambiente E Desenvolvimento Integrado Rural'),
(95946, 'https://ror.org/037s0tq36', 'en', 1, 'https://ror.org/037s0tq36 Centre d''Ʃtudes en politiques internationales Centre on International Policy Studies'),
(95947, 'https://ror.org/02kkwkt79', 'fr', 1, 'https://ror.org/02kkwkt79 Fachhochschule Westschweiz Freiburg HES-SO Fribourg Haute Ɖcole SpĆ©cialisĆ©e de Suisse Occidentale de Fribourg University of Applied Sciences and Arts Western Switzerland Fribourg'),
(95948, 'https://ror.org/05120qw60', 'pt', 1, 'https://ror.org/05120qw60 Escola Superior de SaĆŗde Jean Piaget de Viseu'),
(95949, 'https://ror.org/047fn3608', 'en', 1, 'https://ror.org/047fn3608 Jaipuria School of Business, Ghaziabad'),
(95950, 'https://ror.org/016jxby71', 'pt', 1, 'https://ror.org/016jxby71 Escola Superior de Educação de Fafe'),
(95951, 'https://ror.org/028xjkf45', 'fr', 1, 'https://ror.org/028xjkf45 HEMU - Haute Ɖcole de Musique'),
(95952, 'https://ror.org/05snag760', 'en', 1, 'https://ror.org/05snag760 Slovenian Language Technologies Society'),
(95953, 'https://ror.org/01mvrj242', 'en', 1, 'https://ror.org/01mvrj242 Nanosystems Initiative Munich'),
(95954, 'https://ror.org/00r5mc782', 'en', 1, 'https://ror.org/00r5mc782 Institut de recherche en musique et santƩ Music and Health Research Institute'),
(95955, 'https://ror.org/01vbc2y23', 'en', 1, 'https://ror.org/01vbc2y23 ACR+ Association of Cities and Regionsfor sustainable Resource management'),
(95956, 'https://ror.org/04k2vrw13', 'it', 1, 'https://ror.org/04k2vrw13 Istituto Nazionale per la Valutazione del Sistema dell''Istruzione'),
(95957, 'https://ror.org/045vwce28', 'no_lang_code', 1, 'https://ror.org/045vwce28 NTT (Germany)'),
(95958, 'https://ror.org/00s0yct57', 'en', 1, 'https://ror.org/00s0yct57 Institute of Plant Biology and Biotechnology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Šø биотехнологии растений'),
(95959, 'https://ror.org/00r02pr68', 'es', 1, 'https://ror.org/00r02pr68 Universidad Tecnológica de Puebla'),
(95960, 'https://ror.org/02vvvm705', 'en', 1, 'https://ror.org/02vvvm705 Jade Hochschule Jade University of Applied Sciences'),
(95961, 'https://ror.org/057a6gk14', 'en', 1, 'https://ror.org/057a6gk14 University of Gibraltar'),
(95962, 'https://ror.org/00rzr5v92', 'en', 1, 'https://ror.org/00rzr5v92 Centre de recherche et d’innovation en catalyse Centre for Catalysis Research and Innovation'),
(95963, 'https://ror.org/05mpb3k90', 'de', 1, 'https://ror.org/05mpb3k90 Fƶrderverein Bioƶkonomieforschung e.V.'),
(95964, 'https://ror.org/02pcazp65', 'en', 1, 'https://ror.org/02pcazp65 BLOOM'),
(95965, 'https://ror.org/02gsv2389', 'en', 1, 'https://ror.org/02gsv2389 Institut Nexus de technologies quantiques Nexus for Quantum Technologies Institute'),
(95966, 'https://ror.org/0409yxb12', 'en', 1, 'https://ror.org/0409yxb12 Al-Farahidi University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŲ±Ų§Ł‡ŁŠŲÆŁŠ'),
(95967, 'https://ror.org/00kmnzb51', 'en', 1, 'https://ror.org/00kmnzb51 Institut de recherche et d’études autochtones Research Institute for Indigenous studies'),
(95968, 'https://ror.org/0407f1r36', 'pl', 1, 'https://ror.org/0407f1r36 SWPS University Uniwersytet SWPS'),
(95969, 'https://ror.org/05dh21g53', 'fr', 1, 'https://ror.org/05dh21g53 Structure FƩdƩrative de Recherche SantƩ Lyon Est'),
(95970, 'https://ror.org/01vhsdf43', 'en', 1, 'https://ror.org/01vhsdf43 Brooklyn Navy Yard'),
(95971, 'https://ror.org/02v6n4042', 'pt', 1, 'https://ror.org/02v6n4042 Instituto Europeu de Estudos Superiores'),
(95972, 'https://ror.org/00g8rx069', 'fr', 1, 'https://ror.org/00g8rx069 MinistĆØre de l''Ɖcologie, du DĆ©veloppement durable et de l’Énergie MinistĆØre de la Transition Ć©cologique et de la CohĆ©sion des territoires'),
(95973, 'https://ror.org/00dpnza76', 'en', 1, 'https://ror.org/00dpnza76 Finnish Food Authority Livsmedelsverket Ruokavirasto'),
(95974, 'https://ror.org/05gfj3z69', 'en', 1, 'https://ror.org/05gfj3z69 Integrated Rural Development And Nature Conservation'),
(95975, 'https://ror.org/02zzkv309', 'fr', 1, 'https://ror.org/02zzkv309 HES-SO Arc'),
(95976, 'https://ror.org/03mmnsr06', 'en', 1, 'https://ror.org/03mmnsr06 Debere Berhan Health Science College'),
(95977, 'https://ror.org/011skn125', 'en', 1, 'https://ror.org/011skn125 Mahatma Gandhi Institute of Technology'),
(95978, 'https://ror.org/01fkg1209', 'en', 1, 'https://ror.org/01fkg1209 NorthEast Pacific Deep-sea Exploration Project'),
(95979, 'https://ror.org/00vfjqp82', 'no_lang_code', 1, 'https://ror.org/00vfjqp82 Leonardo (France)'),
(95980, 'https://ror.org/02gndyy51', 'en', 1, 'https://ror.org/02gndyy51 Czech Botanical Society ČeskĆ” botanickĆ” společnost'),
(95981, 'https://ror.org/00yxpmx15', 'en', 1, 'https://ror.org/00yxpmx15 Royal British Columbia Museum'),
(95982, 'https://ror.org/0077saz97', 'pt', 1, 'https://ror.org/0077saz97 Instituto PolitƩcnico da Lusofonia'),
(95983, 'https://ror.org/01mz2wq83', 'en', 1, 'https://ror.org/01mz2wq83 Insilico Medicine Insilico Medicine (United States)'),
(95984, 'https://ror.org/036s2ns10', 'en', 1, 'https://ror.org/036s2ns10 L''Institut de recherche sur le cerveau uOttawa Brain and Mind Research Institute'),
(95985, 'https://ror.org/05rhg0h08', 'fr', 0, 'https://ror.org/05rhg0h08 Computer Science Laboratory of Lille Laboratoire d''Informatique Fondamentale de Lille'),
(95986, 'https://ror.org/01qdjtw37', 'en', 0, 'https://ror.org/01qdjtw37 Castleton University'),
(95987, 'https://ror.org/02j78kr76', 'en', 1, 'https://ror.org/02j78kr76 Kempelen Institute of Intelligent Technologies'),
(95988, 'https://ror.org/00j32a689', 'en', 0, 'https://ror.org/00j32a689 Vermont Technical College'),
(95989, 'https://ror.org/016cv4348', 'no_lang_code', 1, 'https://ror.org/016cv4348 Glycomine, Inc. Glycomine, Inc. (United States)'),
(95990, 'https://ror.org/00mj5bc69', 'en', 1, 'https://ror.org/00mj5bc69 Institute for Telecommunication Sciences'),
(95991, 'https://ror.org/00mvj8034', 'en', 1, 'https://ror.org/00mvj8034 International Institute of Health Management Research, Delhi'),
(95992, 'https://ror.org/05rhyza23', 'en', 0, 'https://ror.org/05rhyza23 Institute of Parasitology'),
(95993, 'https://ror.org/0203k1k48', 'no_lang_code', 1, 'https://ror.org/0203k1k48 Leonardo (Poland)'),
(95994, 'https://ror.org/0236dma10', 'en', 1, 'https://ror.org/0236dma10 Centre d’études en gouvernance Centre on Governance'),
(95995, 'https://ror.org/01gg39979', 'en', 1, 'https://ror.org/01gg39979 Eterna Therapeutics Eterna Therapeutics (United States)'),
(95996, 'https://ror.org/016bk3j80', 'en', 1, 'https://ror.org/016bk3j80 Brooklyn Children’s Museum'),
(95997, 'https://ror.org/01c1w6d29', 'en', 1, 'https://ror.org/01c1w6d29 Otto-Friedrich-UniversitƤt Bamberg University of Bamberg'),
(95998, 'https://ror.org/013dxmv67', 'id', 1, 'https://ror.org/013dxmv67 Universitas Gorontalo'),
(95999, 'https://ror.org/032241511', 'en', 1, 'https://ror.org/032241511 National Telecommunications and Information Administration'),
(96000, 'https://ror.org/023c4vk26', 'no_lang_code', 1, 'https://ror.org/023c4vk26 Global Ecology Unit CREAF-CSIC-UAB'),
(96001, 'https://ror.org/05vgg3342', 'fr', 0, 'https://ror.org/05vgg3342 Fachhochschule Westschweiz - Waadt HES-SO Vaud Haute Ɖcole SpĆ©cialisĆ©e de Suisse Occidentale - Vaud University of Applied Sciences and Arts Western Switzerland - Vaud'),
(96002, 'https://ror.org/0067qp350', 'fr', 1, 'https://ror.org/0067qp350 La Manufacture - Haute école des arts de la scène'),
(96003, 'https://ror.org/022knwr79', 'en', 1, 'https://ror.org/022knwr79 Centre for Interdisciplinary Research on Citizenship and Minorities Centre interdisciplinaire de recherche sur la citoyennetƩ et les minoritƩs'),
(96004, 'https://ror.org/04yem5s35', 'fr', 1, 'https://ror.org/04yem5s35 INFRANALYTICS'),
(96005, 'https://ror.org/02bhgkk43', 'es', 1, 'https://ror.org/02bhgkk43 Central American University José Simeón Cañas Universidad Centroamericana José Simeón Cañas'),
(96006, 'https://ror.org/03h5rdc49', 'en', 1, 'https://ror.org/03h5rdc49 Francisk Skorina Gomel State University Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Франциска Дкорины Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń Францыска Дкарыны'),
(96007, 'https://ror.org/04anrxg79', 'en', 0, 'https://ror.org/04anrxg79 Northern Vermont University'),
(96008, 'https://ror.org/02jhjzd11', 'fr', 1, 'https://ror.org/02jhjzd11 Ecole Nationale du GƩnie de l''Eau et de l''Environnement de Strasbourg (ENGEES)'),
(96009, 'https://ror.org/021j0ne73', 'en', 1, 'https://ror.org/021j0ne73 Council of the Haida Nation'),
(96010, 'https://ror.org/012nh4m41', 'es', 1, 'https://ror.org/012nh4m41 Universidad Tecnologica de la Huasteca Hidalguense'),
(96011, 'https://ror.org/04j47fz63', 'fr', 1, 'https://ror.org/04j47fz63 Haute Ɖcole de SantĆ© Vaud'),
(96012, 'https://ror.org/02qqvpd39', 'de', 1, 'https://ror.org/02qqvpd39 Zentrum für Klinische Tiermedizin'),
(96013, 'https://ror.org/04zvemf87', 'en', 1, 'https://ror.org/04zvemf87 Higher Institute of Science and Technology Sabratha المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ© - ŲµŲØŲ±Ų§ŲŖŲ©'),
(96014, 'https://ror.org/03a1kwz48', 'en', 1, 'https://ror.org/03a1kwz48 Eberhard Karls Universität Tübingen University of Tübingen'),
(96015, 'https://ror.org/02ksqcf75', 'no_lang_code', 1, 'https://ror.org/02ksqcf75 Didi Chuxing Didi Chuxing (China) åŒ—äŗ¬å°ę””ē§‘ęŠ€ęœ‰é™å…¬åø'),
(96016, 'https://ror.org/05pk81s67', 'en', 1, 'https://ror.org/05pk81s67 Dish Network Dish Network (United States)'),
(96017, 'https://ror.org/03wx30207', 'en', 1, 'https://ror.org/03wx30207 EOG Resources EOG Resources (United States)'),
(96018, 'https://ror.org/04rgg2p32', 'en', 1, 'https://ror.org/04rgg2p32 University of Business in Prague VysokÔ Ŕkola obchodní v Praze'),
(96019, 'https://ror.org/00dv28z40', 'en', 1, 'https://ror.org/00dv28z40 Nobel International Business School'),
(96020, 'https://ror.org/011fcvm83', 'no_lang_code', 0, 'https://ror.org/011fcvm83 Aeroflex');
INSERT INTO `rors` VALUES
(96021, 'https://ror.org/03zqyp327', 'en', 1, 'https://ror.org/03zqyp327 Cincinnati Financial Cincinnati Financial (United States)'),
(96022, 'https://ror.org/035k4m812', 'en', 1, 'https://ror.org/035k4m812 S. M. Kirov Military Medical Academy'),
(96023, 'https://ror.org/01nvq4081', 'en', 1, 'https://ror.org/01nvq4081 Museum of Glass and Jewellery in Jablonec nad Nisou Muzeum skla a bižuterie v Jablonci nad Nisou'),
(96024, 'https://ror.org/0140bzm64', 'en', 1, 'https://ror.org/0140bzm64 Society for the Study of Human Development'),
(96025, 'https://ror.org/035r10384', 'en', 1, 'https://ror.org/035r10384 MORSE MORSE (United States)'),
(96026, 'https://ror.org/008s47275', 'en', 0, 'https://ror.org/008s47275 Pratt & Whitney Rocketdyne Pratt & Whitney Rocketdyne (United States)'),
(96027, 'https://ror.org/04rqv8543', 'en', 1, 'https://ror.org/04rqv8543 Bridgewater Associates Bridgewater Associates (United States)'),
(96028, 'https://ror.org/00ksf6k80', 'en', 1, 'https://ror.org/00ksf6k80 Darden Restaurants Darden Restaurants (United States)'),
(96029, 'https://ror.org/02ewr8206', 'en', 1, 'https://ror.org/02ewr8206 Patel Institute of Science and Management'),
(96030, 'https://ror.org/01z05qp51', 'no_lang_code', 0, 'https://ror.org/01z05qp51 NamesforLife (United States)'),
(96031, 'https://ror.org/0552wkf46', 'en', 1, 'https://ror.org/0552wkf46 NRG Energy NRG Energy (United States)'),
(96032, 'https://ror.org/053jkh992', 'en', 1, 'https://ror.org/053jkh992 Thai Nguyen University of Medicine and Pharmacy TrĘ°į»ng ĐẔi hį»c Y - Dược, ĐẔi hį»c ThĆ”i NguyĆŖn'),
(96033, 'https://ror.org/029vc8149', 'en', 1, 'https://ror.org/029vc8149 Chongqing Airport'),
(96034, 'https://ror.org/00n16p182', 'no_lang_code', 1, 'https://ror.org/00n16p182 Martin Marietta Materials Martin Marietta Materials (United States)'),
(96035, 'https://ror.org/03r6wtf12', 'no_lang_code', 1, 'https://ror.org/03r6wtf12 Aibee Aibee (China) ēˆ±ē¬”ę™ŗčƒ½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(96036, 'https://ror.org/021a2zz52', 'en', 1, 'https://ror.org/021a2zz52 Hong Kong Chu Hai College é¦™ęøÆē ęµ·å­øé™¢'),
(96037, 'https://ror.org/030ev1m28', 'en', 1, 'https://ror.org/030ev1m28 General Hospital of Central Theater Command äø­å›½äŗŗę°‘č§£ę”¾å†›äø­éƒØęˆ˜åŒŗę€»åŒ»é™¢'),
(96038, 'https://ror.org/00wmhkr98', 'en', 1, 'https://ror.org/00wmhkr98 City College of New York'),
(96039, 'https://ror.org/04z557486', 'en', 1, 'https://ror.org/04z557486 Arizona Western College'),
(96040, 'https://ror.org/038dc7m35', 'no_lang_code', 1, 'https://ror.org/038dc7m35 CSX CSX (United States)'),
(96041, 'https://ror.org/053yszt22', 'en', 1, 'https://ror.org/053yszt22 Exelon Exelon (United States)'),
(96042, 'https://ror.org/03158q453', 'en', 1, 'https://ror.org/03158q453 Animal and Plant Inspection and Quarantine Technology Center of Shenzhen Customs District ę·±åœ³ęµ·å…³åŠØę¤ē‰©ę£€éŖŒę£€ē–«ęŠ€ęœÆäø­åæƒ'),
(96043, 'https://ror.org/051kejp81', 'en', 1, 'https://ror.org/051kejp81 Brooklyn Public Library'),
(96044, 'https://ror.org/01s63dd48', 'no_lang_code', 1, 'https://ror.org/01s63dd48 A.O. Smith A.O. Smith (United States)'),
(96045, 'https://ror.org/02y5f7327', 'en', 0, 'https://ror.org/02y5f7327 Taunton & Somerset NHS Foundation Trust'),
(96046, 'https://ror.org/03p8zav06', 'en', 1, 'https://ror.org/03p8zav06 Wellington Community Hospital'),
(96047, 'https://ror.org/01qz28660', 'en', 1, 'https://ror.org/01qz28660 Alfa University College'),
(96048, 'https://ror.org/05w630g93', 'en', 1, 'https://ror.org/05w630g93 PG&E Corporation PG&E Corporation (United States)'),
(96049, 'https://ror.org/01dfznc08', 'en', 1, 'https://ror.org/01dfznc08 Rock Flow Dynamics Rock Flow Dynamics (United Kingdom)'),
(96050, 'https://ror.org/055rbnx68', 'en', 1, 'https://ror.org/055rbnx68 Vulcan Materials Vulcan Materials (United States)'),
(96051, 'https://ror.org/00fxxw604', 'en', 1, 'https://ror.org/00fxxw604 Ministry of Culture'),
(96052, 'https://ror.org/01y92wg94', 'es', 1, 'https://ror.org/01y92wg94 Universidad Tecnológica de Querétaro'),
(96053, 'https://ror.org/03xbe6k03', 'en', 0, 'https://ror.org/03xbe6k03 Wuhan General Hospital of Guangzhou äø­å›½äŗŗę°‘č§£ę”¾å†›å¹æå·žå†›åŒŗę­¦ę±‰ę€»åŒ»é™¢'),
(96054, 'https://ror.org/04b7gmr83', 'en', 1, 'https://ror.org/04b7gmr83 Eversource Energy Eversource Energy (United States)'),
(96055, 'https://ror.org/05cwhxn91', 'en', 1, 'https://ror.org/05cwhxn91 Williton Community Hospital'),
(96056, 'https://ror.org/05nyp3428', 'en', 1, 'https://ror.org/05nyp3428 U.S. Bancorp U.S. Bancorp (United States)'),
(96057, 'https://ror.org/03zhyf578', 'fr', 1, 'https://ror.org/03zhyf578 Fonctionnement écologique et gestion durable des agrosystèmes bananiers et ananas Functioning and Sustainable Management of Banana and Pineapple'),
(96058, 'https://ror.org/01ykjav28', 'en', 1, 'https://ror.org/01ykjav28 Raymond James Financial Raymond James Financial (United States)'),
(96059, 'https://ror.org/05xk4yb78', 'fr', 1, 'https://ror.org/05xk4yb78 Analyses des eaux, sols et vƩgƩtaux Water, Soil and Plant Analysis'),
(96060, 'https://ror.org/00nb55479', 'es', 1, 'https://ror.org/00nb55479 Universidad Tecnológica de Manzanillo'),
(96061, 'https://ror.org/0333vk137', 'en', 1, 'https://ror.org/0333vk137 Minehead Community Hospital'),
(96062, 'https://ror.org/0502afh35', 'en', 1, 'https://ror.org/0502afh35 Abt Global Abt Global (United States)'),
(96063, 'https://ror.org/05jt6pc28', 'en', 0, 'https://ror.org/05jt6pc28 Somerset Partnership NHS Foundation Trust'),
(96064, 'https://ror.org/01s0v4q65', 'en', 1, 'https://ror.org/01s0v4q65 Governmental Agency for IT Development'),
(96065, 'https://ror.org/04nxkaq16', 'it', 1, 'https://ror.org/04nxkaq16 University of Cassino and Southern Lazio UniversitƠ degli Studi di Cassino e del Lazio Meridionale UniversitƠ degli studi di Cassino e del Lazio Meridionale UniversitƩ de cassino'),
(96066, 'https://ror.org/04r3s7465', 'en', 1, 'https://ror.org/04r3s7465 McMurdo Dry Valleys Long Term Ecological Research'),
(96067, 'https://ror.org/042twtr12', 'en', 1, 'https://ror.org/042twtr12 Centers for Disease Control and Prevention Centres pour le contrÓle et la prévention des maladies Centros para el Control y Prevención de Enfermedades'),
(96068, 'https://ror.org/01ypbmk97', 'no_lang_code', 1, 'https://ror.org/01ypbmk97 Verisign Verisign (United States)'),
(96069, 'https://ror.org/04qvpkd07', 'en', 0, 'https://ror.org/04qvpkd07 Harris Harris (United States)'),
(96070, 'https://ror.org/05et7jg19', 'en', 1, 'https://ror.org/05et7jg19 Shahid Matangini Hazra Government College for Women'),
(96071, 'https://ror.org/04m6zg706', 'no_lang_code', 1, 'https://ror.org/04m6zg706 Pinterest Pinterest (United States)'),
(96072, 'https://ror.org/05hzcdx60', 'en', 1, 'https://ror.org/05hzcdx60 Yum! Brands Yum! Brands (United States)'),
(96073, 'https://ror.org/03mj14b52', 'fr', 1, 'https://ror.org/03mj14b52 Peuplements vƩgƩtaux et bioagresseurs en milieu tropical Plant Communities and Biological Invaders in Tropical Environments'),
(96074, 'https://ror.org/04w0a0617', 'es', 1, 'https://ror.org/04w0a0617 Instituto Tecnológico de San Luis Potosí'),
(96075, 'https://ror.org/05e2f3x89', 'en', 1, 'https://ror.org/05e2f3x89 Universal Health Services Universal Health Services (United States)'),
(96076, 'https://ror.org/0577njw16', 'id', 1, 'https://ror.org/0577njw16 Universitas Nahdlatul Ulama Purwokerto'),
(96077, 'https://ror.org/00d7mgz29', 'en', 1, 'https://ror.org/00d7mgz29 Paramount Global Paramount Global (United States)'),
(96078, 'https://ror.org/04w7skc03', 'en', 1, 'https://ror.org/04w7skc03 Universidad de Denver University of Denver UniversitƩ de denver'),
(96079, 'https://ror.org/03v8tnc06', 'en', 1, 'https://ror.org/03v8tnc06 Institute of High Energy Physics äø­å›½ē§‘å­¦é™¢é«˜čƒ½ē‰©ē†ē ”ē©¶ę‰€'),
(96080, 'https://ror.org/031qgeg72', 'es', 1, 'https://ror.org/031qgeg72 Asociación Colombiana de Medicina Física y Rehabilitación'),
(96081, 'https://ror.org/051f36b19', 'es', 1, 'https://ror.org/051f36b19 Asociación Colombiana de Cirugía de la Mano'),
(96082, 'https://ror.org/000xs1x50', 'en', 1, 'https://ror.org/000xs1x50 Tusimple Tusimple (United States)'),
(96083, 'https://ror.org/03y6j4b59', 'en', 1, 'https://ror.org/03y6j4b59 Crown Castle International Crown Castle International (United States)'),
(96084, 'https://ror.org/009ps8477', 'en', 1, 'https://ror.org/009ps8477 North Bohemian Museum in Liberec SeveročeskĆ© muzeum v Liberci'),
(96085, 'https://ror.org/02ygzhr13', 'en', 1, 'https://ror.org/02ygzhr13 University of Washington Bothell'),
(96086, 'https://ror.org/027cyf249', 'sr', 1, 'https://ror.org/027cyf249 DruÅ”tvo ekonomista ā€žEkonomikaā€œ, NiÅ” Society of Economists "Ekonomika" NiÅ”'),
(96087, 'https://ror.org/04tb90x61', 'en', 1, 'https://ror.org/04tb90x61 Mininglamp Mininglamp (China) åŒ—äŗ¬ę˜Žē•„ę˜­č¾‰ē§‘ęŠ€ęœ‰é™å…¬åø'),
(96088, 'https://ror.org/02r609884', 'en', 1, 'https://ror.org/02r609884 Bridgwater Community Hospital'),
(96089, 'https://ror.org/000sg7415', 'es', 1, 'https://ror.org/000sg7415 Centro Universitario del Sur'),
(96090, 'https://ror.org/02ypdzw54', 'es', 1, 'https://ror.org/02ypdzw54 Tecnológico de Estudios Superiores de Chalco'),
(96091, 'https://ror.org/05pht7q62', 'es', 1, 'https://ror.org/05pht7q62 Instituto de la Democracia'),
(96092, 'https://ror.org/05febkk55', 'en', 1, 'https://ror.org/05febkk55 xAI xAI (United States)'),
(96093, 'https://ror.org/052waam31', 'en', 1, 'https://ror.org/052waam31 Aon Aon (United Kingdom)'),
(96094, 'https://ror.org/0286hg268', 'en', 1, 'https://ror.org/0286hg268 The Fafo Institute for Labour and Social Research'),
(96095, 'https://ror.org/027d3b308', 'en', 1, 'https://ror.org/027d3b308 American Tower American Tower (United States)'),
(96096, 'https://ror.org/00abj3t43', 'en', 1, 'https://ror.org/00abj3t43 Somerset NHS Foundation Trust'),
(96097, 'https://ror.org/041twcm28', 'no_lang_code', 1, 'https://ror.org/041twcm28 Leonardo (United States) Leonardo United States'),
(96098, 'https://ror.org/02hn16782', 'en', 1, 'https://ror.org/02hn16782 Climate Equity Reference Project'),
(96099, 'https://ror.org/039t4wk02', 'en', 1, 'https://ror.org/039t4wk02 Forschungszentrum L3S L3S Research Center'),
(96100, 'https://ror.org/05dvbq272', 'en', 1, 'https://ror.org/05dvbq272 Yeovil District Hospital'),
(96101, 'https://ror.org/03dgybn05', 'no_lang_code', 0, 'https://ror.org/03dgybn05 ElektronickÔ Zdravotní Knížka Izip (Czechia)'),
(96102, 'https://ror.org/02ebcws13', 'no_lang_code', 1, 'https://ror.org/02ebcws13 DAF Trucks (Netherlands)'),
(96103, 'https://ror.org/054ktxw16', 'fr', 1, 'https://ror.org/054ktxw16 Biomass, Wood, Energy, Bioproducts Biomasse, bois, Ʃnergie, bio-produits'),
(96104, 'https://ror.org/00zkxn351', 'en', 1, 'https://ror.org/00zkxn351 Information Society Development Institute'),
(96105, 'https://ror.org/00mbeqy34', 'en', 1, 'https://ror.org/00mbeqy34 Cabio Biotech (Wuhan) Biotechnology Co. Ltd Cabio Biotech (Wuhan) Biotechnology Co. Ltd (China) å˜‰åæ…ä¼˜ē”Ÿē‰©ęŠ€ęœÆ(ꭦ걉)č‚”ä»½ęœ‰é™å…¬åø'),
(96106, 'https://ror.org/05hz99a17', 'fr', 1, 'https://ror.org/05hz99a17 AAU - Ambiances, Architectures, UrbanitƩs'),
(96107, 'https://ror.org/0102wtd28', 'en', 1, 'https://ror.org/0102wtd28 Monolithic Power Systems Monolithic Power Systems (United States)'),
(96108, 'https://ror.org/00t42b697', 'en', 1, 'https://ror.org/00t42b697 Northern Trust Northern Trust (United States)'),
(96109, 'https://ror.org/02x6ahj98', 'en', 1, 'https://ror.org/02x6ahj98 University of Vavuniya ą®µą®µąÆą®©ą®æą®Æą®¾ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(96110, 'https://ror.org/03f658435', 'en', 1, 'https://ror.org/03f658435 Union Pacific Union Pacific (United States)'),
(96111, 'https://ror.org/0111dmn28', 'en', 1, 'https://ror.org/0111dmn28 Czech Office for Surveying, Mapping and Cadastre Český ĆŗÅ™ad zeměměřický a katastrĆ”lnĆ­'),
(96112, 'https://ror.org/04bg06z22', 'en', 1, 'https://ror.org/04bg06z22 Burnham On Sea War Memorial Hospital'),
(96113, 'https://ror.org/01b40r146', 'en', 1, 'https://ror.org/01b40r146 De Nationale Geologiske UndersĆøgelser for Danmark og GrĆønland Geological Survey of Denmark and Greenland'),
(96114, 'https://ror.org/016emmf09', 'en', 1, 'https://ror.org/016emmf09 Pan-European University PanevropskĆ” univerzita, a.s.'),
(96115, 'https://ror.org/04kz59847', 'no_lang_code', 1, 'https://ror.org/04kz59847 Pultegroup Pultegroup (United States)'),
(96116, 'https://ror.org/04st7tp96', 'en', 1, 'https://ror.org/04st7tp96 CCCC Comprehensive Planning and Design Institute Co., Ltd. CCCC Comprehensive Planning and Design Institute Co., Ltd. (China) äø­äŗ¤ē»¼åˆč§„åˆ’č®¾č®”é™¢ęœ‰é™å…¬åø'),
(96117, 'https://ror.org/00xbw4a70', 'es', 1, 'https://ror.org/00xbw4a70 Instituto Tecnólogico de La Laguna'),
(96118, 'https://ror.org/05rbj6w12', 'id', 0, 'https://ror.org/05rbj6w12 STIKES Muhammadiyah Kuningan'),
(96119, 'https://ror.org/01hete527', 'es', 1, 'https://ror.org/01hete527 Universidad PolitƩcnica de CuautitlƔn Izcalli'),
(96120, 'https://ror.org/05nj19v03', 'en', 1, 'https://ror.org/05nj19v03 Center for the Analysis of Sustainable Agricultural Systems'),
(96121, 'https://ror.org/0078xmk34', 'en', 1, 'https://ror.org/0078xmk34 Universidad de Montana University of Montana UniversitƩ du montana'),
(96122, 'https://ror.org/05p43t846', 'no_lang_code', 0, 'https://ror.org/05p43t846 NGimat (United States)'),
(96123, 'https://ror.org/00ee9xb13', 'en', 1, 'https://ror.org/00ee9xb13 Fafo Foundation'),
(96124, 'https://ror.org/019wb3548', 'en', 1, 'https://ror.org/019wb3548 Grassroot Soccer, Inc.'),
(96125, 'https://ror.org/04mcp3x60', 'en', 1, 'https://ror.org/04mcp3x60 Oбщество ŠøŠ½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»Š¾Š² за развитие науки в Дербии ā€žŠ”ŠµŃ€Š±ŃŠŗŠøŠ¹ aкаГемический Ń†ŠµŠ½Ń‚Ń€ā€ ŠŠ¾Š²Šø-ДаГ The Association of Intellectuals for the Development of Science in Serbia ā€œThe Serbian Academic Centerā€ Š£Š“Ń€ŃƒŠ¶ŠµŃšŠµ ŠøŠ½Ń‚ŠµŠ»ŠµŠŗŃ‚ŃƒŠ°Š»Š°Ń†Š° за Ń€Š°Š·Š²Š¾Ń˜ науке у Š”Ń€Š±ŠøŃ˜Šø - ā€žŠ”Š ŠŸŠ”ŠšŠ˜ ŠŠšŠŠ”Š•ŠœŠ”ŠšŠ˜ Š¦Š•ŠŠ¢ŠŠ ā€'),
(96126, 'https://ror.org/02ftyb663', 'en', 1, 'https://ror.org/02ftyb663 Disability Community Resource Center'),
(96127, 'https://ror.org/05angxc35', 'no_lang_code', 0, 'https://ror.org/05angxc35 Daimler (United States)'),
(96128, 'https://ror.org/04p9akw79', 'en', 1, 'https://ror.org/04p9akw79 Brown-Forman Brown-Forman (United States)'),
(96129, 'https://ror.org/03dgrff29', 'es', 1, 'https://ror.org/03dgrff29 Instituto Tecnológico Superior de Loreto'),
(96130, 'https://ror.org/056nsnt54', 'no_lang_code', 1, 'https://ror.org/056nsnt54 MeteoIA MeteoIA (Brazil)'),
(96131, 'https://ror.org/02xz6bf62', 'en', 1, 'https://ror.org/02xz6bf62 Czech Geological Survey ČeskÔ geologickÔ služba'),
(96132, 'https://ror.org/040asb018', 'en', 1, 'https://ror.org/040asb018 American Electric Power American Electric Power (United States)'),
(96133, 'https://ror.org/05gakfp64', 'es', 1, 'https://ror.org/05gakfp64 Asociación Colombiana de Hepatología'),
(96134, 'https://ror.org/054wd5j92', 'en', 1, 'https://ror.org/054wd5j92 Guangzhou Baiyun Airport Customs Comprehensive Technical Service Center å¹æå·žē™½äŗ‘ęœŗåœŗęµ·å…³ē»¼åˆęŠ€ęœÆęœåŠ”äø­åæƒ'),
(96135, 'https://ror.org/044466k19', 'en', 1, 'https://ror.org/044466k19 Bitmain Technologies Bitmain Technologies (China) ęÆ”ē‰¹å¤§é™†ē§‘ęŠ€ęœ‰é™å…¬åø'),
(96136, 'https://ror.org/00q580v32', 'no_lang_code', 0, 'https://ror.org/00q580v32 Reactive Innovations (United States)'),
(96137, 'https://ror.org/05dgrnf47', 'no_lang_code', 1, 'https://ror.org/05dgrnf47 Verizon Media Verizon Media (United States)'),
(96138, 'https://ror.org/03403zv90', 'en', 1, 'https://ror.org/03403zv90 Molson Coors Brewing Company Molson Coors Brewing Company (United States)'),
(96139, 'https://ror.org/01z3j1770', 'en', 1, 'https://ror.org/01z3j1770 Crewkerne Community Hospital'),
(96140, 'https://ror.org/016vzmc05', 'no_lang_code', 1, 'https://ror.org/016vzmc05 Nippon Steel Nippon Steel (Japan)'),
(96141, 'https://ror.org/044xay220', 'no_lang_code', 1, 'https://ror.org/044xay220 Koje College ź±°ģ œėŒ€ķ•™'),
(96142, 'https://ror.org/053kjm920', 'pt', 1, 'https://ror.org/053kjm920 Centro UniversitÔrio Católica de QuixadÔ'),
(96143, 'https://ror.org/04v7gh640', 'en', 1, 'https://ror.org/04v7gh640 Cloudwalk Cloudwalk (China) äŗ‘ä»Žē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(96144, 'https://ror.org/022nvg924', 'no_lang_code', 1, 'https://ror.org/022nvg924 Agari Data Agari Data (United States)'),
(96145, 'https://ror.org/01apday90', 'no_lang_code', 1, 'https://ror.org/01apday90 Nippon Steel (Germany)'),
(96146, 'https://ror.org/01y60h972', 'en', 1, 'https://ror.org/01y60h972 Ramon Magsaysay Memorial Colleges'),
(96147, 'https://ror.org/009pwww24', 'no_lang_code', 1, 'https://ror.org/009pwww24 IFlyTek IFlyTek (China) ē§‘å¤§č®Æé£žč‚”ä»½ęœ‰é™å…¬åø'),
(96148, 'https://ror.org/05v1amx46', 'en', 1, 'https://ror.org/05v1amx46 Hennepin Healthcare Research Institute'),
(96149, 'https://ror.org/05yk70j08', 'en', 1, 'https://ror.org/05yk70j08 Equifax Equifax (United States)'),
(96150, 'https://ror.org/022d68h52', 'de', 1, 'https://ror.org/022d68h52 Institut für Tourismus- und Bäderforschung in Nordeuropa (NIT) GmbH Institut für Tourismus- und Bäderforschung in Nordeuropa (NIT) GmbH (Germany)'),
(96151, 'https://ror.org/01d6p8r58', 'es', 1, 'https://ror.org/01d6p8r58 Instituto Tecnológico de Ciudad GuzmÔn'),
(96152, 'https://ror.org/04yp7fr64', 'en', 1, 'https://ror.org/04yp7fr64 CoStar Group CoStar Group (United States)'),
(96153, 'https://ror.org/05pdn2z45', 'en', 1, 'https://ror.org/05pdn2z45 Second Affiliated Hospital of Nantong University å—é€šå¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢ å—é€šåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(96154, 'https://ror.org/05p299b07', 'es', 1, 'https://ror.org/05p299b07 Instituto Tecnológico Superior de Los Reyes'),
(96155, 'https://ror.org/05yhca997', 'no_lang_code', 1, 'https://ror.org/05yhca997 Continental (United States)'),
(96156, 'https://ror.org/008khdx92', 'en', 1, 'https://ror.org/008khdx92 Comerica Comerica (United States)'),
(96157, 'https://ror.org/03x53g461', 'fr', 1, 'https://ror.org/03x53g461 Agroecological Functioning and Performances of Horticultural Systems Fonctionnement agroécologique et performances des systèmes de culture horticoles'),
(96158, 'https://ror.org/00ac5t267', 'no_lang_code', 0, 'https://ror.org/00ac5t267 Daimler (United Kingdom)'),
(96159, 'https://ror.org/041g6bx17', 'pt', 1, 'https://ror.org/041g6bx17 Faculdade Pernambucana de SaĆŗde'),
(96160, 'https://ror.org/00ffxmn68', 'en', 1, 'https://ror.org/00ffxmn68 Fox Corporation Fox Corporation (United States)'),
(96161, 'https://ror.org/05sy8fj60', 'en', 1, 'https://ror.org/05sy8fj60 Anand International College of Engineering'),
(96162, 'https://ror.org/040b32p69', 'no_lang_code', 1, 'https://ror.org/040b32p69 Megvii Megvii (China) åŒ—äŗ¬ę—·č§†ē§‘ęŠ€ęœ‰é™å…¬åø'),
(96163, 'https://ror.org/04yqxr030', 'en', 1, 'https://ror.org/04yqxr030 Shanghai Marine Meteorological Center äøŠęµ·ęµ·ę“‹äø­åæƒę°”č±”å°'),
(96164, 'https://ror.org/03c1m7989', 'no_lang_code', 1, 'https://ror.org/03c1m7989 Coupang Coupang (South Korea)'),
(96165, 'https://ror.org/0460tzy11', 'es', 1, 'https://ror.org/0460tzy11 Instituto Tecnológico de La Paz'),
(96166, 'https://ror.org/05n8t2628', 'en', 1, 'https://ror.org/05n8t2628 University of Washington Tacoma'),
(96167, 'https://ror.org/00ywema53', 'en', 1, 'https://ror.org/00ywema53 EPAM Systems EPAM Systems (United States)'),
(96168, 'https://ror.org/03d9rgw98', 'en', 1, 'https://ror.org/03d9rgw98 Molina Healthcare Molina Healthcare (United States)'),
(96169, 'https://ror.org/032h87485', 'en', 1, 'https://ror.org/032h87485 Office of Education'),
(96170, 'https://ror.org/056zprp28', 'en', 1, 'https://ror.org/056zprp28 Microsoft Research New York City Microsoft Research New York City (United States)'),
(96171, 'https://ror.org/02vpw2d22', 'en', 1, 'https://ror.org/02vpw2d22 Rai University'),
(96172, 'https://ror.org/01brjce02', 'es', 1, 'https://ror.org/01brjce02 Instituto Tecnológico Superior de Atlixco'),
(96173, 'https://ror.org/02x696c73', 'en', 1, 'https://ror.org/02x696c73 EQT EQT (United States)'),
(96174, 'https://ror.org/04hhxc122', 'no_lang_code', 1, 'https://ror.org/04hhxc122 State Research Institute for Material Protection (Czechia)'),
(96175, 'https://ror.org/05h3y2073', 'no_lang_code', 1, 'https://ror.org/05h3y2073 Costco Wholesale Costco Wholesale (United States)'),
(96176, 'https://ror.org/022t7x179', 'no_lang_code', 1, 'https://ror.org/022t7x179 ECS ECS (United States)'),
(96177, 'https://ror.org/03efxn362', 'es', 1, 'https://ror.org/03efxn362 Universidad Veracruzana University of Veracruz'),
(96178, 'https://ror.org/03qq6zv19', 'en', 1, 'https://ror.org/03qq6zv19 Dropbox Dropbox (United States)'),
(96179, 'https://ror.org/02z2yec16', 'en', 1, 'https://ror.org/02z2yec16 Zhongshan Ophthalmic Center, Sun Yat-sen University äø­å±±å¤§å­¦ēœ¼ē§‘äø­åæƒ'),
(96180, 'https://ror.org/04hc84p76', 'no_lang_code', 0, 'https://ror.org/04hc84p76 Daimler (Japan)'),
(96181, 'https://ror.org/02hdxw977', 'no_lang_code', 1, 'https://ror.org/02hdxw977 Paccar (United States)'),
(96182, 'https://ror.org/00wf6p036', 'en', 1, 'https://ror.org/00wf6p036 IPG Photonics IPG Photonics (United States)'),
(96183, 'https://ror.org/02bw9cj21', 'bs', 1, 'https://ror.org/02bw9cj21 Evropski univerzitet Brčko distrikt'),
(96184, 'https://ror.org/01526xe10', 'en', 1, 'https://ror.org/01526xe10 Boston Consulting Group Boston Consulting Group (United States)'),
(96185, 'https://ror.org/047pw0q71', 'en', 1, 'https://ror.org/047pw0q71 Steel Dynamics Steel Dynamics (United States)'),
(96186, 'https://ror.org/03t5a9538', 'es', 1, 'https://ror.org/03t5a9538 Instituto Tecnologico Superior de Misantla'),
(96187, 'https://ror.org/04n901n71', 'de', 1, 'https://ror.org/04n901n71 CAIMed - Niedersächsisches Zentrum für KI und Kausale Methoden in der Medizin'),
(96188, 'https://ror.org/057a3cc32', 'fr', 1, 'https://ror.org/057a3cc32 Association de lutte contre le sida (ALCS)'),
(96189, 'https://ror.org/01nhtcw46', 'en', 1, 'https://ror.org/01nhtcw46 Lyft Lyft (United States)'),
(96190, 'https://ror.org/04e3sqx89', 'en', 1, 'https://ror.org/04e3sqx89 Frome Community Hospital'),
(96191, 'https://ror.org/03hk8yf10', 'en', 1, 'https://ror.org/03hk8yf10 Entergy Entergy (United States)'),
(96192, 'https://ror.org/00n6tv709', 'en', 1, 'https://ror.org/00n6tv709 FBS, Inc. Guidedwave Guidedwave (United States)'),
(96193, 'https://ror.org/05kjvvp31', 'en', 1, 'https://ror.org/05kjvvp31 Travelers Companies Travelers Companies (United States)'),
(96194, 'https://ror.org/0122rxn37', 'en', 1, 'https://ror.org/0122rxn37 DTE Energy DTE Energy (United States)'),
(96195, 'https://ror.org/00x4k9h67', 'en', 1, 'https://ror.org/00x4k9h67 4Thparadigm 4Thparadigm (China) ē¬¬å››čŒƒå¼ļ¼ˆåŒ—äŗ¬ļ¼‰ęŠ€ęœÆęœ‰é™å…¬åø'),
(96196, 'https://ror.org/03ypykr22', 'es', 1, 'https://ror.org/03ypykr22 Universidad ORT Uruguay'),
(96197, 'https://ror.org/05dsfb086', 'en', 1, 'https://ror.org/05dsfb086 Berlin Institute for the Foundations of Learning and Data The Berlin Institute for the Foundations of Learning and Data (BIFOLD)'),
(96198, 'https://ror.org/02jb98t16', 'en', 1, 'https://ror.org/02jb98t16 NOAA Center for Earth System Sciences and Remote Sensing Technologies'),
(96199, 'https://ror.org/04z73qb28', 'en', 0, 'https://ror.org/04z73qb28 Brooklyn Philharmonic'),
(96200, 'https://ror.org/0535nfe19', 'es', 1, 'https://ror.org/0535nfe19 Universidad PolitƩcnica de la Zona Metropolitana de Guadalajara'),
(96201, 'https://ror.org/03ve7j725', 'en', 1, 'https://ror.org/03ve7j725 APA Corporation APA Corporation (United States)'),
(96202, 'https://ror.org/03bp0k446', 'en', 1, 'https://ror.org/03bp0k446 Prague College of Psychosocial Studies PražskÔ vysokÔ Ŕkola psychosociÔlních studií, s.r.o.'),
(96203, 'https://ror.org/05ykp4255', 'no_lang_code', 1, 'https://ror.org/05ykp4255 Epson (United States)'),
(96204, 'https://ror.org/04nnvgw25', 'no_lang_code', 1, 'https://ror.org/04nnvgw25 Europeum'),
(96205, 'https://ror.org/004sb9k31', 'es', 1, 'https://ror.org/004sb9k31 Universidad Tecnológica de Oriental'),
(96206, 'https://ror.org/04zxf4256', 'en', 1, 'https://ror.org/04zxf4256 General Tire General Tire (United States)'),
(96207, 'https://ror.org/02ctt0481', 'en', 1, 'https://ror.org/02ctt0481 Daimler Truck (United States)'),
(96208, 'https://ror.org/05he76226', 'en', 1, 'https://ror.org/05he76226 Pioneer Natural Resources Pioneer Natural Resources (United States)'),
(96209, 'https://ror.org/04d087g06', 'en', 1, 'https://ror.org/04d087g06 Association of Engineering Technology Svaz strojƭrenskƩ technologie'),
(96210, 'https://ror.org/038483r84', 'no_lang_code', 1, 'https://ror.org/038483r84 Eni (Italy)'),
(96211, 'https://ror.org/02apw2076', 'en', 1, 'https://ror.org/02apw2076 Xiaohongshu (Little Red Book) Xiaohongshu (Little Red Book) (China) č”ŒåŸäæ”ęÆē§‘ęŠ€ļ¼ˆäøŠęµ·ļ¼‰ęœ‰é™å…¬åø'),
(96212, 'https://ror.org/01fp50e73', 'en', 1, 'https://ror.org/01fp50e73 Axon Enterprise Axon Enterprise (United States)'),
(96213, 'https://ror.org/00a356y59', 'es', 1, 'https://ror.org/00a356y59 Sociedad Colombiana de Anestesiología y Reanimación'),
(96214, 'https://ror.org/04fj16d47', 'no_lang_code', 1, 'https://ror.org/04fj16d47 Kroger Kroger (United States)'),
(96215, 'https://ror.org/03mnkh157', 'en', 1, 'https://ror.org/03mnkh157 Enphase Energy Enphase Energy (United States)'),
(96216, 'https://ror.org/016cpew17', 'en', 1, 'https://ror.org/016cpew17 State Regional Archives in Prague StƔtnƭ oblastnƭ archiv v Praze'),
(96217, 'https://ror.org/04beeeh24', 'en', 1, 'https://ror.org/04beeeh24 Saybrook University'),
(96218, 'https://ror.org/02hha8x90', 'en', 1, 'https://ror.org/02hha8x90 Liaocheng Center for Disease Control and Prevention čŠåŸŽåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(96219, 'https://ror.org/00r2rga43', 'en', 1, 'https://ror.org/00r2rga43 Cambricon Cambricon (China) åŒ—äŗ¬äø­ē§‘åÆ’ę­¦ēŗŖē§‘ęŠ€ęœ‰é™å…¬åø 寒武纪'),
(96220, 'https://ror.org/038x25e13', 'en', 1, 'https://ror.org/038x25e13 Florida Global University Universidad Global de Florida'),
(96221, 'https://ror.org/0302jbz39', 'es', 1, 'https://ror.org/0302jbz39 Instituto Tecnológico de Boca del Río'),
(96222, 'https://ror.org/00c319182', 'en', 1, 'https://ror.org/00c319182 The Society of Occupational Medicine'),
(96223, 'https://ror.org/01bc41c65', 'cs', 1, 'https://ror.org/01bc41c65 Dětský domov a MateřskĆ” Å”kola Beroun'),
(96224, 'https://ror.org/01nq33970', 'es', 1, 'https://ror.org/01nq33970 Instituto Tecnológico Superior Zacatecas Norte'),
(96225, 'https://ror.org/054ys4h04', 'no_lang_code', 1, 'https://ror.org/054ys4h04 Cobham (United Kingdom)'),
(96226, 'https://ror.org/02hv38g57', 'no_lang_code', 1, 'https://ror.org/02hv38g57 Lululemon Athletica Lululemon Athletica (United States)'),
(96227, 'https://ror.org/03qj7sq78', 'en', 1, 'https://ror.org/03qj7sq78 CareQuest Institute for Oral Health'),
(96228, 'https://ror.org/004yv2z91', 'no_lang_code', 1, 'https://ror.org/004yv2z91 Ping An Ping An (China) äø­å›½å¹³å®‰äæé™©ļ¼ˆé›†å›¢ļ¼‰č‚”ä»½ęœ‰é™å…¬åø'),
(96229, 'https://ror.org/03w9xqv95', 'no_lang_code', 1, 'https://ror.org/03w9xqv95 Lowe''s Lowe''s (United States)'),
(96230, 'https://ror.org/01wfdn362', 'es', 1, 'https://ror.org/01wfdn362 Ministerio de Educación del Ecuador'),
(96231, 'https://ror.org/02ggwpx62', 'en', 1, 'https://ror.org/02ggwpx62 National Center for Emerging and Zoonotic Infectious Diseases'),
(96232, 'https://ror.org/03z22t144', 'no_lang_code', 1, 'https://ror.org/03z22t144 Mercedes-Benz (Japan) ćƒ”ćƒ«ć‚»ćƒ‡ć‚¹ćƒ™ćƒ³ćƒ„ę—„ęœ¬'),
(96233, 'https://ror.org/01avfeb97', 'en', 1, 'https://ror.org/01avfeb97 Imam Alkadhim University College ŁƒŁ„ŁŠŲ© الامام Ų§Ł„ŁƒŲ§ŲøŁ…'),
(96234, 'https://ror.org/03xvvtc63', 'en', 1, 'https://ror.org/03xvvtc63 Center for Brooklyn History'),
(96235, 'https://ror.org/04w5qp452', 'en', 1, 'https://ror.org/04w5qp452 TeX Users Group'),
(96236, 'https://ror.org/01pch6n67', 'en', 1, 'https://ror.org/01pch6n67 Broadridge Financial Solutions Broadridge Financial Solutions (United States)'),
(96237, 'https://ror.org/02zj7b759', 'en', 1, 'https://ror.org/02zj7b759 Australian Plant Phenomics Network'),
(96238, 'https://ror.org/049sebs45', 'no_lang_code', 1, 'https://ror.org/049sebs45 Chubb Chubb (Switzerland)'),
(96239, 'https://ror.org/01n015v70', 'en', 1, 'https://ror.org/01n015v70 Deepblue Technology Deepblue Technology (China) ę·±å…°ē§‘ęŠ€ļ¼ˆäøŠęµ·ļ¼‰ęœ‰é™å…¬åø'),
(96240, 'https://ror.org/02frhb430', 'en', 1, 'https://ror.org/02frhb430 Pony.AI Pony.AI (China)'),
(96241, 'https://ror.org/01xc2fv34', 'en', 1, 'https://ror.org/01xc2fv34 Mosaic Company Mosaic Company (United States)'),
(96242, 'https://ror.org/01vbv2a78', 'es', 1, 'https://ror.org/01vbv2a78 Emedic Salud'),
(96243, 'https://ror.org/042phe474', 'no_lang_code', 1, 'https://ror.org/042phe474 SGS Germany GmbH SGS Germany GmbH (Germany)'),
(96244, 'https://ror.org/02zvqmp51', 'en', 1, 'https://ror.org/02zvqmp51 V.F. Corporation V.F. Corporation (United States)'),
(96245, 'https://ror.org/03dtap658', 'es', 1, 'https://ror.org/03dtap658 Sociedad Colombiana de Cirugƭa OrtopƩdica y Traumatologƭa'),
(96246, 'https://ror.org/0526wv466', 'id', 1, 'https://ror.org/0526wv466 Universitas Muhammadiyah Kuningan'),
(96247, 'https://ror.org/0439k2291', 'es', 1, 'https://ror.org/0439k2291 Universidad Tecnológica del Valle de Toluca'),
(96248, 'https://ror.org/0231an742', 'en', 1, 'https://ror.org/0231an742 Jiangmen Underground Neutrino Observatory ę±Ÿé—Øåœ°äø‹äø­å¾®å­å®žéŖŒč§‚ęµ‹ē«™'),
(96249, 'https://ror.org/03n450987', 'en', 1, 'https://ror.org/03n450987 Global Citizenship Foundation'),
(96250, 'https://ror.org/049ahjd53', 'en', 1, 'https://ror.org/049ahjd53 Daimler Truck Daimler Truck (Germany)'),
(96251, 'https://ror.org/034wrbs29', 'en', 1, 'https://ror.org/034wrbs29 Shanghai Ecological Forecasting and Remote Sensing Center äøŠęµ·åø‚ē”Ÿę€ę°”č±”å’Œå«ę˜Ÿé„ę„Ÿäø­åæƒ'),
(96252, 'https://ror.org/02j0qs062', 'en', 1, 'https://ror.org/02j0qs062 MGM Resorts International MGM Resorts International (United States)'),
(96253, 'https://ror.org/018yqmx18', 'en', 1, 'https://ror.org/018yqmx18 Huntington Bancshares Huntington Bancshares (United States)'),
(96254, 'https://ror.org/035ky6r06', 'en', 1, 'https://ror.org/035ky6r06 Civilization University Ų¬Ų§Ł…Ų¹Ų© الحضارة'),
(96255, 'https://ror.org/01gsw0r50', 'de', 1, 'https://ror.org/01gsw0r50 Deutsche Gesellschaft für Patientensicherheit gGmbH'),
(96256, 'https://ror.org/005dzvw93', 'no_lang_code', 1, 'https://ror.org/005dzvw93 Zhipu AI Zhipu AI (China) åŒ—äŗ¬ę™ŗč°±åŽē« ē§‘ęŠ€ęœ‰é™å…¬åø'),
(96257, 'https://ror.org/0316y5a96', 'en', 1, 'https://ror.org/0316y5a96 St. Xavier''s College (Autonomous)'),
(96258, 'https://ror.org/04c7yen31', 'en', 1, 'https://ror.org/04c7yen31 Kookje College źµ­ģ œėŒ€ķ•™źµ'),
(96259, 'https://ror.org/03nj9d526', 'en', 1, 'https://ror.org/03nj9d526 Al-Hadi University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ł‡Ų§ŲÆŁŠ الجامعة'),
(96260, 'https://ror.org/05rsgy424', 'en', 1, 'https://ror.org/05rsgy424 Sysco Sysco (United States)'),
(96261, 'https://ror.org/027cbpk76', 'en', 1, 'https://ror.org/027cbpk76 CBRE Group CBRE Group (United States)'),
(96262, 'https://ror.org/0348v8v06', 'en', 1, 'https://ror.org/0348v8v06 Deepglint Deepglint (China) åŒ—äŗ¬ę ¼ēµę·±ēž³äæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(96263, 'https://ror.org/05p76fn60', 'en', 1, 'https://ror.org/05p76fn60 Aerojet Rocketdyne (United States)'),
(96264, 'https://ror.org/0488bwq42', 'en', 1, 'https://ror.org/0488bwq42 Delhi Skill and Entrepreneurship University'),
(96265, 'https://ror.org/02dr9m704', 'en', 1, 'https://ror.org/02dr9m704 Wincanton Community Hospital'),
(96266, 'https://ror.org/011r0yf09', 'en', 1, 'https://ror.org/011r0yf09 Charter Communications Charter Communications (United States)'),
(96267, 'https://ror.org/047b8ap14', 'en', 1, 'https://ror.org/047b8ap14 FactSet FactSet (United States)'),
(96268, 'https://ror.org/04ppmte83', 'no_lang_code', 1, 'https://ror.org/04ppmte83 Mercedes-Benz (United States)'),
(96269, 'https://ror.org/04md5yc36', 'en', 1, 'https://ror.org/04md5yc36 Phramongkutklao College of Medicine'),
(96270, 'https://ror.org/02ajrys73', 'en', 1, 'https://ror.org/02ajrys73 Empower AI Empower AI (United States)'),
(96271, 'https://ror.org/017sz3r20', 'no_lang_code', 1, 'https://ror.org/017sz3r20 Invesco Invesco (United States)'),
(96272, 'https://ror.org/04gsj9h69', 'en', 1, 'https://ror.org/04gsj9h69 Fifth Third Bancorp Fifth Third Bancorp (United States)'),
(96273, 'https://ror.org/0517rzt45', 'en', 1, 'https://ror.org/0517rzt45 T. Rowe Price Group T. Rowe Price Group (United States)'),
(96274, 'https://ror.org/048d5b075', 'en', 1, 'https://ror.org/048d5b075 Daimler Center for Automotive Information Technology Innovations'),
(96275, 'https://ror.org/03b8cwr11', 'en', 1, 'https://ror.org/03b8cwr11 Hilton Worldwide Holdings Hilton Worldwide Holdings (United States)'),
(96276, 'https://ror.org/049sjm257', 'no_lang_code', 1, 'https://ror.org/049sjm257 Fortinet Fortinet (United States)'),
(96277, 'https://ror.org/012874a19', 'no_lang_code', 1, 'https://ror.org/012874a19 Anduril Industries Anduril Industries (United States)'),
(96278, 'https://ror.org/00jz07n34', 'en', 1, 'https://ror.org/00jz07n34 South Petherton Community Hospital'),
(96279, 'https://ror.org/02pz5q213', 'en', 1, 'https://ror.org/02pz5q213 J. B. Hunt Transport Services J. B. Hunt Transport Services (United States)'),
(96280, 'https://ror.org/00v5nyn36', 'en', 0, 'https://ror.org/00v5nyn36 Yeovil District Hospital NHS Foundation Trust'),
(96281, 'https://ror.org/03qz2be51', 'en', 1, 'https://ror.org/03qz2be51 CMS Energy CMS Energy (United States)'),
(96282, 'https://ror.org/007h1qz76', 'no_lang_code', 1, 'https://ror.org/007h1qz76 Phramongkutklao Hospital'),
(96283, 'https://ror.org/00jcbwz30', 'en', 1, 'https://ror.org/00jcbwz30 Huntington Ingalls Industries Huntington Ingalls Industries (United States)'),
(96284, 'https://ror.org/046gx1e19', 'id', 0, 'https://ror.org/046gx1e19 STKIP Muhammadiyah Kuningan'),
(96285, 'https://ror.org/042qa2p32', 'no_lang_code', 1, 'https://ror.org/042qa2p32 Tamr Tamr (United States)'),
(96286, 'https://ror.org/05v5aya38', 'en', 1, 'https://ror.org/05v5aya38 West Mendip Community Hospital'),
(96287, 'https://ror.org/02kb89c09', 'en', 1, 'https://ror.org/02kb89c09 University of Sciences and Technology Houari Boumediene UniversitĆ© des Sciences et de la Technologie Houari-Boumediene Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ Ł‡ŁˆŲ§Ų±ŁŠ ŲØŁˆŁ…ŲÆŁŠŁ†'),
(96288, 'https://ror.org/00raqbe38', 'en', 1, 'https://ror.org/00raqbe38 PPL PPL (United States)'),
(96289, 'https://ror.org/01h1d4660', 'en', 1, 'https://ror.org/01h1d4660 Enflame Enflame (China)'),
(96290, 'https://ror.org/015em2733', 'en', 1, 'https://ror.org/015em2733 Data Documentation Initiative Alliance'),
(96291, 'https://ror.org/04vmke174', 'en', 0, 'https://ror.org/04vmke174 National Center for Infectious Diseases'),
(96292, 'https://ror.org/00m0j3d84', 'no_lang_code', 0, 'https://ror.org/00m0j3d84 Daimler (Germany)'),
(96293, 'https://ror.org/05a0xpx35', 'en', 1, 'https://ror.org/05a0xpx35 Maine College of Health Professions'),
(96294, 'https://ror.org/032ctpc91', 'no_lang_code', 1, 'https://ror.org/032ctpc91 CF Industries Holdings CF Industries Holdings (United States)'),
(96295, 'https://ror.org/04bsgk835', 'no_lang_code', 1, 'https://ror.org/04bsgk835 Ekologické Služby (Czechia) Ekologické služby, s.r.o'),
(96296, 'https://ror.org/0258as409', 'no_lang_code', 1, 'https://ror.org/0258as409 Kuaishou Kuaishou (China) åŒ—äŗ¬åæ«ę‰‹ē§‘ęŠ€ęœ‰é™å…¬åø 快手'),
(96297, 'https://ror.org/007v4hf75', 'en', 1, 'https://ror.org/007v4hf75 VIT-AP University'),
(96298, 'https://ror.org/023pm6532', 'en', 1, 'https://ror.org/023pm6532 An Giang University TrĘ°į»ng ĐẔi hį»c An Giang'),
(96299, 'https://ror.org/055rn2a38', 'no_lang_code', 1, 'https://ror.org/055rn2a38 Mercedes-Benz (Germany)'),
(96300, 'https://ror.org/0379dv337', 'en', 1, 'https://ror.org/0379dv337 Datarobot Datarobot (United States)'),
(96301, 'https://ror.org/023cz3h96', 'en', 1, 'https://ror.org/023cz3h96 Exergetic Systems Exergetic Systems (Canada)'),
(96302, 'https://ror.org/032kzxf45', 'en', 1, 'https://ror.org/032kzxf45 Vanguard Vanguard (United States)'),
(96303, 'https://ror.org/02ezdv132', 'no_lang_code', 1, 'https://ror.org/02ezdv132 Kinder Morgan Kinder Morgan (United States)'),
(96304, 'https://ror.org/03qn3zw06', 'en', 1, 'https://ror.org/03qn3zw06 Lakeside University College Ghana'),
(96305, 'https://ror.org/05mhxe367', 'de', 1, 'https://ror.org/05mhxe367 Beethoven-Haus Bonn'),
(96306, 'https://ror.org/00wymkh76', 'en', 1, 'https://ror.org/00wymkh76 Pima Community College'),
(96307, 'https://ror.org/02eh44r60', 'en', 1, 'https://ror.org/02eh44r60 Regions Financial Regions Financial (United States)'),
(96308, 'https://ror.org/006c9jk14', 'no_lang_code', 1, 'https://ror.org/006c9jk14 Zymergen Zymergen (United States)'),
(96309, 'https://ror.org/00hbd6420', 'no_lang_code', 1, 'https://ror.org/00hbd6420 Spotify Spotify (Sweden)'),
(96310, 'https://ror.org/05p5v2j38', 'en', 1, 'https://ror.org/05p5v2j38 Jane Street Jane Street (United States)'),
(96311, 'https://ror.org/02jzypx27', 'no_lang_code', 1, 'https://ror.org/02jzypx27 Hikvision Hikvision (China) ę­å·žęµ·åŗ·åØč§†ę•°å­—ęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(96312, 'https://ror.org/02nayd663', 'en', 1, 'https://ror.org/02nayd663 Mitsubishi Fuso Truck and Bus Mitsubishi Fuso Truck and Bus (Japan) äø‰č±ćµćć†ćƒˆćƒ©ćƒƒć‚Æćƒć‚¹ę Ŗå¼ä¼šē¤¾'),
(96313, 'https://ror.org/00bc02b32', 'en', 1, 'https://ror.org/00bc02b32 AutoZone AutoZone (United States)'),
(96314, 'https://ror.org/0573vrp16', 'de', 1, 'https://ror.org/0573vrp16 Abgeordnetenhaus Berlin'),
(96315, 'https://ror.org/05a5cgn70', 'en', 1, 'https://ror.org/05a5cgn70 Guangzhou Xiaopeng Motors Technology Co Ltd Xiaopeng Motors Xiaopeng Motors (China) å¹æå·žå°é¹ę±½č½¦ē§‘ęŠ€ęœ‰é™å…¬åø'),
(96316, 'https://ror.org/00j5bqf83', 'no_lang_code', 1, 'https://ror.org/00j5bqf83 Nucor Nucor (United States)'),
(96317, 'https://ror.org/014th2j85', 'no_lang_code', 1, 'https://ror.org/014th2j85 Generac Generac (United States)'),
(96318, 'https://ror.org/03mjtaj61', 'en', 1, 'https://ror.org/03mjtaj61 Council of Graduate Departments of Psychology'),
(96319, 'https://ror.org/01hv86c27', 'fr', 1, 'https://ror.org/01hv86c27 Agro-Ʃcologie et intensification durable des cultures annuelles Agroecology and Sustainable Intensification for Annual Crops'),
(96320, 'https://ror.org/000zz1243', 'id', 1, 'https://ror.org/000zz1243 Dinas Pendidikan Kabupaten Grobogan'),
(96321, 'https://ror.org/02x2vzy16', 'en', 1, 'https://ror.org/02x2vzy16 Dene Barton Community Hospital'),
(96322, 'https://ror.org/00kzhpn90', 'en', 1, 'https://ror.org/00kzhpn90 Keycorp Keycorp (United States)'),
(96323, 'https://ror.org/012ddk914', 'en', 1, 'https://ror.org/012ddk914 Bath & Body Works Bath & Body Works (United States)'),
(96324, 'https://ror.org/0512cxv65', 'no_lang_code', 1, 'https://ror.org/0512cxv65 Seiko (United States)'),
(96325, 'https://ror.org/0107nyd78', 'en', 1, 'https://ror.org/0107nyd78 Tübingen AI Center'),
(96326, 'https://ror.org/034fj3b42', 'en', 1, 'https://ror.org/034fj3b42 Los Altos History Museum'),
(96327, 'https://ror.org/0011v9813', 'no_lang_code', 1, 'https://ror.org/0011v9813 Evenor-Tech Evenor-Tech (Spain)'),
(96328, 'https://ror.org/02yyskm09', 'en', 1, 'https://ror.org/02yyskm09 AbbĆØs Laghrour University of Khenchela Ų¬Ų§Ł…Ų¹Ų© Ų¹ŲØŲ§Ų³ Ł„ŲŗŲ±ŁˆŲ± خنؓلة'),
(96329, 'https://ror.org/05jk8e518', 'es', 1, 'https://ror.org/05jk8e518 Universidad de Los Lagos'),
(96330, 'https://ror.org/0519z1a07', 'es', 1, 'https://ror.org/0519z1a07 Universidad Tecnológica del Valle del Mezquital'),
(96331, 'https://ror.org/03wmf1y16', 'en', 1, 'https://ror.org/03wmf1y16 University of Colorado Anschutz Medical Campus'),
(96332, 'https://ror.org/04n60x970', 'no_lang_code', 1, 'https://ror.org/04n60x970 GE Vernova GE Vernova (United States)'),
(96333, 'https://ror.org/052gyqs21', 'en', 1, 'https://ror.org/052gyqs21 T. Rowe Price Program for Charitable Giving'),
(96334, 'https://ror.org/01mwmfm08', 'en', 1, 'https://ror.org/01mwmfm08 Concord University'),
(96335, 'https://ror.org/03xxf5v12', 'en', 1, 'https://ror.org/03xxf5v12 Airbnb Airbnb (United States)'),
(96336, 'https://ror.org/00e2ydp85', 'no_lang_code', 1, 'https://ror.org/00e2ydp85 NeuroInDx (United States)'),
(96337, 'https://ror.org/055r0dt08', 'pt', 1, 'https://ror.org/055r0dt08 Faculdade do Futuro'),
(96338, 'https://ror.org/00fjt5570', 'en', 1, 'https://ror.org/00fjt5570 Best Buy Best Buy (United States)'),
(96339, 'https://ror.org/024ncvw44', 'en', 1, 'https://ror.org/024ncvw44 Dataminr Dataminr (United States)'),
(96340, 'https://ror.org/011bwvz55', 'en', 1, 'https://ror.org/011bwvz55 Waste Management Waste Management (United States)'),
(96341, 'https://ror.org/03q03zn57', 'en', 1, 'https://ror.org/03q03zn57 Gap (United States)'),
(96342, 'https://ror.org/03jnx8g68', 'es', 1, 'https://ror.org/03jnx8g68 Universidad Tecnológica de Coahuila'),
(96343, 'https://ror.org/01gdw7p94', 'en', 1, 'https://ror.org/01gdw7p94 The Royal Photographic Society'),
(96344, 'https://ror.org/02xs3dj23', 'en', 1, 'https://ror.org/02xs3dj23 Western Colorado University'),
(96345, 'https://ror.org/02banhz78', 'fr', 1, 'https://ror.org/02banhz78 Diversity-Adaptation-Development of Plants DiversitƩ, adaptation et dƩveloppement des plantes'),
(96346, 'https://ror.org/002swtn40', 'es', 1, 'https://ror.org/002swtn40 JLA Ediciones'),
(96347, 'https://ror.org/050yr0479', 'en', 1, 'https://ror.org/050yr0479 Cohere Cohere (Canada)'),
(96348, 'https://ror.org/05d917r56', 'en', 1, 'https://ror.org/05d917r56 Institute for Cultural Research of the National Academy of Arts of Ukraine'),
(96349, 'https://ror.org/03yajem64', 'no_lang_code', 1, 'https://ror.org/03yajem64 Nisource Nisource (United States)'),
(96350, 'https://ror.org/00363ea60', 'en', 1, 'https://ror.org/00363ea60 Serbian Sociological Association'),
(96351, 'https://ror.org/032mytt31', 'en', 1, 'https://ror.org/032mytt31 Firstenergy Firstenergy (United States)'),
(96352, 'https://ror.org/0199vdr69', 'en', 1, 'https://ror.org/0199vdr69 Principal Financial Group Principal Financial Group (United States)'),
(96353, 'https://ror.org/05783n648', 'en', 1, 'https://ror.org/05783n648 Discover Financial Services Discover Financial Services (United States)'),
(96354, 'https://ror.org/049vx3n55', 'en', 1, 'https://ror.org/049vx3n55 Charles Schwab Corporation Charles Schwab Corporation (United States)'),
(96355, 'https://ror.org/040zz8080', 'en', 1, 'https://ror.org/040zz8080 Cerebras Systems Cerebras Systems (United States)'),
(96356, 'https://ror.org/017gb1s53', 'la', 1, 'https://ror.org/017gb1s53 Collegium Intermarium Uczelnia Collegium Intermarium'),
(96357, 'https://ror.org/04pq1cz46', 'en', 1, 'https://ror.org/04pq1cz46 Nextera Energy Nextera Energy (United States)'),
(96358, 'https://ror.org/02xyv8p74', 'en', 1, 'https://ror.org/02xyv8p74 Shepton Mallet Community Hospital'),
(96359, 'https://ror.org/036ak4h42', 'en', 1, 'https://ror.org/036ak4h42 Agentur für Natur- und Landschaftsschutz der Tschechischen Republik Nature Conservation Agency of the Czech Republic'),
(96360, 'https://ror.org/02ja00s57', 'en', 1, 'https://ror.org/02ja00s57 Cobham (United States)'),
(96361, 'https://ror.org/01psx1920', 'en', 1, 'https://ror.org/01psx1920 National Academy of Arts ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(96362, 'https://ror.org/05cmv6g68', 'en', 1, 'https://ror.org/05cmv6g68 Horizon Robotics Horizon Robotics (China) åŒ—äŗ¬åœ°å¹³ēŗæäæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(96363, 'https://ror.org/00mwq1g96', 'en', 1, 'https://ror.org/00mwq1g96 Hartford Financial Services Hartford Financial Services (United States)'),
(96364, 'https://ror.org/05cg4bn76', 'en', 1, 'https://ror.org/05cg4bn76 City College of Calamba Dalubhasaan ng Calamba'),
(96365, 'https://ror.org/02jh2mm49', 'en', 1, 'https://ror.org/02jh2mm49 Olomouc Research Library VědeckĆ” knihovna v Olomouci Wissenschaftliche Bibliothek Olomouc'),
(96366, 'https://ror.org/01ev6a639', 'no_lang_code', 1, 'https://ror.org/01ev6a639 Research International (United States)'),
(96367, 'https://ror.org/03ggvqk67', 'en', 1, 'https://ror.org/03ggvqk67 Al-Amal College for Specialized Medical Sciences ŁƒŁ„ŁŠŲ© الأمل Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„ŲŖŲ®ŲµŲµŁŠŲ©'),
(96368, 'https://ror.org/01ynzx943', 'en', 1, 'https://ror.org/01ynzx943 Databricks Databricks (United States)'),
(96369, 'https://ror.org/02nbck826', 'es', 1, 'https://ror.org/02nbck826 Universidad PolitƩcnica de TecƔmac'),
(96370, 'https://ror.org/02b92xv22', 'en', 1, 'https://ror.org/02b92xv22 Duolingo Duolingo (United States)'),
(96371, 'https://ror.org/003nx8950', 'en', 1, 'https://ror.org/003nx8950 BlackSky Global BlackSky Global (United States)'),
(96372, 'https://ror.org/058svmp18', 'es', 1, 'https://ror.org/058svmp18 AlcaldĆ­a de Barranquilla'),
(96373, 'https://ror.org/01bvh8x83', 'no_lang_code', 1, 'https://ror.org/01bvh8x83 Sigma Group (Czechia)'),
(96374, 'https://ror.org/03jg63j21', 'es', 1, 'https://ror.org/03jg63j21 Instituto Tecnológico Superior de Tantoyuca'),
(96375, 'https://ror.org/05d37ka75', 'de', 1, 'https://ror.org/05d37ka75 Freies Institut für Bauforschung und Dokumentation e.V.'),
(96376, 'https://ror.org/054spjc55', 'en', 1, 'https://ror.org/054spjc55 Universidad de Colorado en Colorado Springs University of Colorado Colorado Springs UniversitƩ du Colorado Ơ Colorado Springs'),
(96377, 'https://ror.org/05252fg05', 'en', 1, 'https://ror.org/05252fg05 Deraya University Ų¬Ų§Ł…Ų¹Ų© دراية'),
(96378, 'https://ror.org/02w12zj89', 'no_lang_code', 1, 'https://ror.org/02w12zj89 Nio Nio (China) äøŠęµ·č”šę„ę±½č½¦ęœ‰é™å…¬åø'),
(96379, 'https://ror.org/001rm8957', 'en', 1, 'https://ror.org/001rm8957 Centre for Hydraulic Research Centrum hydraulického výzkumu spol. s r.o.'),
(96380, 'https://ror.org/014kv8184', 'en', 1, 'https://ror.org/014kv8184 Grand Canyon University'),
(96381, 'https://ror.org/01qwmf693', 'no_lang_code', 0, 'https://ror.org/01qwmf693 Harris (United States)'),
(96382, 'https://ror.org/02gqdm821', 'no_lang_code', 1, 'https://ror.org/02gqdm821 Epi Biotech Co., Ltd. Epi Biotech Co., Ltd. (South Korea) ģ—ķ”¼ė°”ģ“ģ˜¤ķ…'),
(96383, 'https://ror.org/0279hze33', 'en', 1, 'https://ror.org/0279hze33 Citizens Financial Group Citizens Financial Group (United States)'),
(96384, 'https://ror.org/02e15es11', 'en', 1, 'https://ror.org/02e15es11 Marathon Petroleum Marathon Petroleum (United States)'),
(96385, 'https://ror.org/04cvt0159', 'en', 1, 'https://ror.org/04cvt0159 Bureau of Quality and Safety of Food ąøŖąø³ąø™ąø±ąøąø„ąøøąø“ąø ąø²ąøžą¹ąø„ąø°ąø„ąø§ąø²ąø”ąø›ąø„ąø­ąø”ąø ąø±ąø¢ąø­ąø²ąø«ąø²ąø£'),
(96386, 'https://ror.org/04xsrsp28', 'en', 1, 'https://ror.org/04xsrsp28 King''s Fertility'),
(96387, 'https://ror.org/034nc1205', 'ca', 1, 'https://ror.org/034nc1205 Institut de NanociĆØncia i Nanotecnologia de la Universitat de Barcelona Institute of Nanoscience and Nanotechnology of the University of Barcelona Instituto de Nanociencia y NanotecnologĆ­a de la Universitat de Barcelona'),
(96388, 'https://ror.org/03v6e0402', 'en', 1, 'https://ror.org/03v6e0402 Iranian National Commission for UNESCO Ś©Ł…ŪŒŲ³ŪŒŁˆŁ† Ł…Ł„ŪŒ ŪŒŁˆŁ†Ų³Ś©Łˆ-Ų§ŪŒŲ±Ų§Ł†'),
(96389, 'https://ror.org/05ed0n793', 'en', 1, 'https://ror.org/05ed0n793 Foundation for Physical Medicine and Rehabilitation'),
(96390, 'https://ror.org/05vzw3663', 'en', 1, 'https://ror.org/05vzw3663 British Society of Interventional Radiology'),
(96391, 'https://ror.org/01jeee804', 'en', 1, 'https://ror.org/01jeee804 NOAA Great Lakes Environmental Research Laboratory'),
(96392, 'https://ror.org/01dwzy755', 'fr', 1, 'https://ror.org/01dwzy755 Institut Desbrest d''EpidƩmiologie et de SantƩ Publique'),
(96393, 'https://ror.org/0428ctr80', 'en', 1, 'https://ror.org/0428ctr80 Institut des neurosciences de Montpellier Institute for Neurosciences of Montpellier'),
(96394, 'https://ror.org/00mpnj452', 'en', 1, 'https://ror.org/00mpnj452 Freedom''s Wings International'),
(96395, 'https://ror.org/05cs9th70', 'it', 1, 'https://ror.org/05cs9th70 Conservatorio di musica "Vecchi Tonelli"'),
(96396, 'https://ror.org/04andmq85', 'fr', 1, 'https://ror.org/04andmq85 Institut National de Recherches ArchƩologiques PrƩventives'),
(96397, 'https://ror.org/011kg8p14', 'en', 1, 'https://ror.org/011kg8p14 Finger Lakes Community College'),
(96398, 'https://ror.org/01x3z9745', 'en', 1, 'https://ror.org/01x3z9745 Texas A&M University – Texarkana'),
(96399, 'https://ror.org/04msyas67', 'en', 1, 'https://ror.org/04msyas67 Onondaga Community College'),
(96400, 'https://ror.org/02ps2mz85', 'en', 1, 'https://ror.org/02ps2mz85 Mohawk Valley Community College'),
(96401, 'https://ror.org/00cesps27', 'fr', 1, 'https://ror.org/00cesps27 Observatoire de Recherche MontpelliƩrain de l''Environnement OREME Observatoire des Sciences de l''Univers OREME'),
(96402, 'https://ror.org/000y2g343', 'en', 1, 'https://ror.org/000y2g343 Azerbaijan State University of Economics Azərbaycan Dƶvlət İqtisad Universiteti АзербайГжанский Š³Š¾ŃŃƒŠ“арственный ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(96403, 'https://ror.org/024vfck88', 'en', 1, 'https://ror.org/024vfck88 Palau Community College'),
(96404, 'https://ror.org/057trrr89', 'en', 1, 'https://ror.org/057trrr89 Purchase College UniversitĆ© d''Ɖtat de new york Ć  purchase'),
(96405, 'https://ror.org/04gvvdt54', 'en', 1, 'https://ror.org/04gvvdt54 Public Health Laboratory'),
(96406, 'https://ror.org/03cmntr54', 'es', 1, 'https://ror.org/03cmntr54 Institut AstrofĆ­sic de les Illes CanĆ ries Instituto de AstrofĆ­sica de Canarias'),
(96407, 'https://ror.org/025g2e477', 'fr', 1, 'https://ror.org/025g2e477 Biocommunication en Cardio-MƩtabolique'),
(96408, 'https://ror.org/04p5baq95', 'en', 1, 'https://ror.org/04p5baq95 Mattel Children''s Hospital'),
(96409, 'https://ror.org/02y1pfw65', 'es', 1, 'https://ror.org/02y1pfw65 Tecnológico de Estudios Superiores de Ixtapaluca'),
(96410, 'https://ror.org/015hj0r78', 'en', 1, 'https://ror.org/015hj0r78 Crystal Bridges Museum of American Art'),
(96411, 'https://ror.org/03r97y618', 'en', 1, 'https://ror.org/03r97y618 International Center for Relativistic Astrophysics Network'),
(96412, 'https://ror.org/04jrf3m62', 'en', 1, 'https://ror.org/04jrf3m62 Chronic Granulomatous Disorder Society');
INSERT INTO `rors` VALUES
(96413, 'https://ror.org/00xmwgm53', 'no_lang_code', 1, 'https://ror.org/00xmwgm53 Telecom Italia (Italy)'),
(96414, 'https://ror.org/018wzhc20', 'en', 1, 'https://ror.org/018wzhc20 United Nations Educational, Scientific and Cultural Organization Afghanistan'),
(96415, 'https://ror.org/00xy44n04', 'en', 1, 'https://ror.org/00xy44n04 Yamagata University 山形大学'),
(96416, 'https://ror.org/01awjf572', 'en', 1, 'https://ror.org/01awjf572 Kementerian Kesihatan Ministry of Health'),
(96417, 'https://ror.org/058v0cd57', 'no_lang_code', 1, 'https://ror.org/058v0cd57 Genus (United Kingdom)'),
(96418, 'https://ror.org/008p7mq56', 'fr', 1, 'https://ror.org/008p7mq56 Ɖquipe Monde Arabe MĆ©diterranĆ©e'),
(96419, 'https://ror.org/00se82r08', 'en', 1, 'https://ror.org/00se82r08 Central Institute for Arid Horticulture'),
(96420, 'https://ror.org/0261b7b91', 'en', 1, 'https://ror.org/0261b7b91 Fetal Medicine Foundation'),
(96421, 'https://ror.org/02nymkz75', 'pt', 1, 'https://ror.org/02nymkz75 Faculdade Faci Wyden'),
(96422, 'https://ror.org/02c1xev33', 'en', 1, 'https://ror.org/02c1xev33 Islamic Azad University, Abadan Ų§Ų²Ų§ŲÆ فرع آبادان Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد آبادان'),
(96423, 'https://ror.org/05cshtm26', 'en', 1, 'https://ror.org/05cshtm26 Great Lakes Research Consortium'),
(96424, 'https://ror.org/00xffm983', 'fr', 1, 'https://ror.org/00xffm983 Dynamique Musculaire et MƩtabolisme'),
(96425, 'https://ror.org/02g0s4z48', 'en', 1, 'https://ror.org/02g0s4z48 Harrisburg University of Science and Technology'),
(96426, 'https://ror.org/0537aj111', 'en', 1, 'https://ror.org/0537aj111 Crohn''s in Childhood Research Association'),
(96427, 'https://ror.org/03sr1zw68', 'no_lang_code', 1, 'https://ror.org/03sr1zw68 Biocompatibles (United Kingdom)'),
(96428, 'https://ror.org/009ps2x93', 'fr', 1, 'https://ror.org/009ps2x93 Département des Systèmes Basses Températures'),
(96429, 'https://ror.org/0055acf80', 'en', 1, 'https://ror.org/0055acf80 Blood Cancer UK'),
(96430, 'https://ror.org/00b1zwh50', 'en', 1, 'https://ror.org/00b1zwh50 Society of British Neurological Surgeons'),
(96431, 'https://ror.org/00s4rmz74', 'en', 1, 'https://ror.org/00s4rmz74 Hochschule Ravensburg-Weingarten University of Applied Sciences Ravensburg-Weingarten'),
(96432, 'https://ror.org/0559cv935', 'en', 1, 'https://ror.org/0559cv935 Moshood Abiola Polytechnic'),
(96433, 'https://ror.org/00kw1sm04', 'en', 1, 'https://ror.org/00kw1sm04 Agence Spatiale EuropƩenne Agencia Espacial Europea European Space Astronomy Centre'),
(96434, 'https://ror.org/05y5zrm38', 'en', 1, 'https://ror.org/05y5zrm38 Scottish Salmon Producers Organisation'),
(96435, 'https://ror.org/05xrx2377', 'fr', 1, 'https://ror.org/05xrx2377 Laboratoire Parisien de Psychologie Sociale'),
(96436, 'https://ror.org/00mas2304', 'en', 1, 'https://ror.org/00mas2304 Guangxi Logistics Vocational and Technical College å¹æč„æē‰©ęµčŒäøšęŠ€ęœÆå­¦é™¢'),
(96437, 'https://ror.org/01qv3m779', 'en', 1, 'https://ror.org/01qv3m779 Miriam Foundation'),
(96438, 'https://ror.org/02b1bbq66', 'en', 1, 'https://ror.org/02b1bbq66 Benefit-sharing Fund of the International Treaty on Plant Genetic Resources for Food and Agriculture'),
(96439, 'https://ror.org/03w9e3r89', 'en', 1, 'https://ror.org/03w9e3r89 Rockland Community College'),
(96440, 'https://ror.org/051br2d77', 'fr', 1, 'https://ror.org/051br2d77 Lettres et Civilisations EtrangĆØres'),
(96441, 'https://ror.org/049dded83', 'de', 1, 'https://ror.org/049dded83 W. von Borries-Eckendorf GmbH & Co. KG W. von Borries-Eckendorf GmbH & Co. KG (Germany)'),
(96442, 'https://ror.org/0259td381', 'fr', 1, 'https://ror.org/0259td381 Neurophysiologie respiratoire expƩrimentale et clinique'),
(96443, 'https://ror.org/04wk1rj64', 'no_lang_code', 1, 'https://ror.org/04wk1rj64 Bioland e.V.'),
(96444, 'https://ror.org/051awsb83', 'en', 1, 'https://ror.org/051awsb83 Tompkins Cortland Community College'),
(96445, 'https://ror.org/03g5rm013', 'en', 1, 'https://ror.org/03g5rm013 Federal College of Education, Zaria'),
(96446, 'https://ror.org/00za10597', 'en', 1, 'https://ror.org/00za10597 Hospital Pharmacy of North Norway Trust Sykehusapotek Nord HF'),
(96447, 'https://ror.org/00w3swb66', 'en', 1, 'https://ror.org/00w3swb66 European Centre for Space Applications and Telecommunications'),
(96448, 'https://ror.org/030tbdr67', 'en', 1, 'https://ror.org/030tbdr67 Chittagong Medical University ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® মেঔিকেল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®šą®æą®ŸąÆą®Ÿą®•ą®¾ą®™ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(96449, 'https://ror.org/05vt9rv16', 'en', 1, 'https://ror.org/05vt9rv16 European Space Research Institute'),
(96450, 'https://ror.org/04qj6xg77', 'en', 1, 'https://ror.org/04qj6xg77 Healthcare Quality Improvement Partnership'),
(96451, 'https://ror.org/02r0wp596', 'en', 1, 'https://ror.org/02r0wp596 SUNY Ulster'),
(96452, 'https://ror.org/03yacj906', 'en', 1, 'https://ror.org/03yacj906 Indian Institute of Technology Jodhpur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤œą„‹ą¤§ą¤Ŗą„ą¤°'),
(96453, 'https://ror.org/007kf5222', 'pt', 1, 'https://ror.org/007kf5222 Centro UniversitƔrio FEI'),
(96454, 'https://ror.org/018hjpz25', 'en', 1, 'https://ror.org/018hjpz25 Sheffield Teaching Hospitals NHS Foundation Trust'),
(96455, 'https://ror.org/001377z89', 'no_lang_code', 1, 'https://ror.org/001377z89 Riverlane Riverlane (United Kingdom)'),
(96456, 'https://ror.org/03m99bx66', 'it', 1, 'https://ror.org/03m99bx66 Accademia di Belle Arti di Catania'),
(96457, 'https://ror.org/05kyy7d06', 'no_lang_code', 1, 'https://ror.org/05kyy7d06 Saab (Sweden)'),
(96458, 'https://ror.org/02deetg88', 'no_lang_code', 1, 'https://ror.org/02deetg88 Sekisui Medical (Japan) ē©ę°“ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(96459, 'https://ror.org/03t5r9r41', 'es', 1, 'https://ror.org/03t5r9r41 Telefónica Digital Innovation Telefónica Innovación Digital (Spain) Telefónica Innovación Digital S.L.U.'),
(96460, 'https://ror.org/01rt74q71', 'it', 1, 'https://ror.org/01rt74q71 Telecom Italia Lab'),
(96461, 'https://ror.org/0015qa126', 'en', 1, 'https://ror.org/0015qa126 International Centre for Theoretical Sciences ą²øą³†ą³–ą²¦ą³ą²§ą²¾ą²‚ą²¤ą²æą²• ą²µą²æą²œą³ą²žą²¾ą²Ø ą²…ą²‚ą²¤ą²°ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą²æą³•ą²Æ ą²•ą³†ą³•ą²‚ą²¦ą³ą²°'),
(96462, 'https://ror.org/04mjzst24', 'es', 1, 'https://ror.org/04mjzst24 Colfuturo'),
(96463, 'https://ror.org/047q8av65', 'fr', 1, 'https://ror.org/047q8av65 Centre de Recherche sur les Expertises, les Arts et les Transitions'),
(96464, 'https://ror.org/03wttga88', 'fr', 1, 'https://ror.org/03wttga88 Institut d''Histoire du Droit'),
(96465, 'https://ror.org/013r8c450', 'fr', 1, 'https://ror.org/013r8c450 Centre du Droit de l''Entreprise'),
(96466, 'https://ror.org/04v54gj93', 'en', 1, 'https://ror.org/04v54gj93 Cambridge University Hospitals NHS Foundation Trust'),
(96467, 'https://ror.org/00vtxwp63', 'no_lang_code', 1, 'https://ror.org/00vtxwp63 Aisin (Japan) ć‚¢ć‚¤ć‚·ćƒ³ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(96468, 'https://ror.org/01j1gwp17', 'no_lang_code', 1, 'https://ror.org/01j1gwp17 Teledyne FLIR (United States)'),
(96469, 'https://ror.org/00tqjtg68', 'en', 1, 'https://ror.org/00tqjtg68 SUNY Erie'),
(96470, 'https://ror.org/040jq3y94', 'en', 1, 'https://ror.org/040jq3y94 Scientific Research Institute of State Building and Local Government of the NALS of Ukraine ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гержавного Š±ŃƒŠ“івництва та місцевого ŃŠ°Š¼Š¾Š²Ń€ŃŠ“ŃƒŠ²Š°Š½Š½Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії правових наук України'),
(96471, 'https://ror.org/02gh4kt33', 'en', 1, 'https://ror.org/02gh4kt33 Istituto Nazionale di Astrofisica National Institute for Astrophysics'),
(96472, 'https://ror.org/01zh59148', 'en', 1, 'https://ror.org/01zh59148 City Institute for Public Health - Belgrade'),
(96473, 'https://ror.org/00f7yqx35', 'en', 1, 'https://ror.org/00f7yqx35 Federal Polytechnic, Mubi Kwalejin Kimiyya da Fasaha ta Tarayya, Mubi'),
(96474, 'https://ror.org/04kb0nk47', 'no_lang_code', 0, 'https://ror.org/04kb0nk47 Impaq International (United States)'),
(96475, 'https://ror.org/02hjfaw18', 'en', 1, 'https://ror.org/02hjfaw18 National Information Society Agency ķ•œźµ­ģ§€ėŠ„ģ •ė³“ģ‚¬ķšŒģ§„ķ„ģ›'),
(96476, 'https://ror.org/034741m06', 'en', 0, 'https://ror.org/034741m06 Institute of Advanced Manufacturing Technology'),
(96477, 'https://ror.org/0161w0r98', 'en', 1, 'https://ror.org/0161w0r98 Department for the Economy'),
(96478, 'https://ror.org/03ncxj847', 'en', 1, 'https://ror.org/03ncxj847 SUNY Schenectady County Community College'),
(96479, 'https://ror.org/000cyem11', 'en', 1, 'https://ror.org/000cyem11 Donald Danforth Plant Science Center'),
(96480, 'https://ror.org/02emx6223', 'en', 1, 'https://ror.org/02emx6223 Nepal Bureau of Standards and Metrology ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤—ą„ą¤£ą¤øą„ą¤¤ą¤° तऄा ą¤Øą¤¾ą¤Ŗą¤¤ą„Œą¤² विभाग'),
(96481, 'https://ror.org/05q4md098', 'en', 1, 'https://ror.org/05q4md098 Utenos kolegija Utenos kolegija Higher Education Institution'),
(96482, 'https://ror.org/005bk2339', 'en', 1, 'https://ror.org/005bk2339 Max Planck Institute for Solid State Research Max-Planck-Institut für Festkörperforschung'),
(96483, 'https://ror.org/00g1d7b60', 'en', 1, 'https://ror.org/00g1d7b60 Indiana University Melvin and Bren Simon Comprehensive Cancer Center'),
(96484, 'https://ror.org/052qegn86', 'es', 1, 'https://ror.org/052qegn86 Institute of Spain Instituto de EspaƱa'),
(96485, 'https://ror.org/02kxw0b63', 'en', 1, 'https://ror.org/02kxw0b63 Zhijiang College of Zhejiang University of Technology ęµ™ę±Ÿå·„äøšå¤§å­¦ä¹‹ę±Ÿå­¦é™¢'),
(96486, 'https://ror.org/0127n6542', 'fr', 1, 'https://ror.org/0127n6542 Laboratoire Interuniversitaire ExpƩrience, Ressources culturelles, Education'),
(96487, 'https://ror.org/045495t75', 'en', 1, 'https://ror.org/045495t75 Ifo Institute for Economic Research ifo Institut für Wirtschaftsforschung'),
(96488, 'https://ror.org/05bp8tz46', 'no_lang_code', 1, 'https://ror.org/05bp8tz46 AlphaSense (United States)'),
(96489, 'https://ror.org/00g7a7c91', 'en', 1, 'https://ror.org/00g7a7c91 SUNY Orange'),
(96490, 'https://ror.org/00gj7r351', 'fr', 1, 'https://ror.org/00gj7r351 Laboratoire écologie, évolution, interactions des systèmes amazoniens'),
(96491, 'https://ror.org/00zy6vr46', 'es', 1, 'https://ror.org/00zy6vr46 Real Academia de Bellas Artes de San Fernando Royal Academy of Fine Arts of San Fernando'),
(96492, 'https://ror.org/00bkaqj51', 'en', 0, 'https://ror.org/00bkaqj51 North Atlantic Treaty Organization Organisation du traitƩ de l''Atlantique Nord'),
(96493, 'https://ror.org/01hjzeq58', 'en', 1, 'https://ror.org/01hjzeq58 Chiba University åƒč‘‰å¤§å­¦'),
(96494, 'https://ror.org/001zt9558', 'sr', 1, 'https://ror.org/001zt9558 IPMA Serbia IPMA Srbija'),
(96495, 'https://ror.org/01g3jts20', 'en', 1, 'https://ror.org/01g3jts20 Air Force Harbin Flying College äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›å“ˆå°”ę»Øé£žč”Œå­¦é™¢'),
(96496, 'https://ror.org/01j72sa23', 'en', 1, 'https://ror.org/01j72sa23 NSW Roads and Maritime Services'),
(96497, 'https://ror.org/03t78wx29', 'en', 1, 'https://ror.org/03t78wx29 Hiroshima University 広島大学'),
(96498, 'https://ror.org/01hqfk569', 'en', 1, 'https://ror.org/01hqfk569 Indonesian Institute for Counseling, Education, and Therapy'),
(96499, 'https://ror.org/01da06998', 'es', 1, 'https://ror.org/01da06998 Higher Technological Institute of Irapuato Instituto Tecnológico Superior de Irapuato'),
(96500, 'https://ror.org/05hg41718', 'en', 1, 'https://ror.org/05hg41718 Ovarian Cancer Research Alliance'),
(96501, 'https://ror.org/012f7tj07', 'no_lang_code', 1, 'https://ror.org/012f7tj07 Telefónica (Spain)'),
(96502, 'https://ror.org/044nptt90', 'en', 1, 'https://ror.org/044nptt90 King''s College Hospital'),
(96503, 'https://ror.org/05jyayj71', 'en', 1, 'https://ror.org/05jyayj71 National Hospital Organization Saitama Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē—…é™¢ę©Ÿę§‹ åŸ¼ēŽ‰ē—…é™¢'),
(96504, 'https://ror.org/0465bzv04', 'en', 1, 'https://ror.org/0465bzv04 Chuo Kikuu cha Tharaka Tharaka University'),
(96505, 'https://ror.org/024tgbv41', 'no_lang_code', 1, 'https://ror.org/024tgbv41 Roche (United Kingdom)'),
(96506, 'https://ror.org/01hrtf583', 'en', 1, 'https://ror.org/01hrtf583 Synchrotron Radiation for Biomedicine'),
(96507, 'https://ror.org/02bdb7w16', 'en', 1, 'https://ror.org/02bdb7w16 Tongji Zhejiang College åŒęµŽå¤§å­¦ęµ™ę±Ÿå­¦é™¢'),
(96508, 'https://ror.org/00bxmqe50', 'en', 1, 'https://ror.org/00bxmqe50 National Institute of Academic Anaesthesia'),
(96509, 'https://ror.org/03s51y289', 'en', 1, 'https://ror.org/03s51y289 National Institute of Standards & Industrial Technology'),
(96510, 'https://ror.org/034jrey59', 'en', 1, 'https://ror.org/034jrey59 Zhenhai District Center for Disease Control and Prevention é•‡ęµ·åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(96511, 'https://ror.org/008td3p62', 'en', 1, 'https://ror.org/008td3p62 Institute for Cosmic Ray Research ę±äŗ¬å¤§å­¦å®‡å®™ē·šē ”ē©¶ę‰€'),
(96512, 'https://ror.org/05x3amg60', 'en', 1, 'https://ror.org/05x3amg60 Cambridge IVF'),
(96513, 'https://ror.org/01a58dz79', 'es', 1, 'https://ror.org/01a58dz79 Editorial Mar Caribe'),
(96514, 'https://ror.org/04b202422', 'es', 1, 'https://ror.org/04b202422 Universidad Tecnológica Gral. Mariano Escobedo'),
(96515, 'https://ror.org/02zv2b697', 'es', 1, 'https://ror.org/02zv2b697 Tecnológico de Estudios Superiores de Valle de Bravo'),
(96516, 'https://ror.org/05b2r4b98', 'en', 1, 'https://ror.org/05b2r4b98 AcadƩmies suisses des sciences Akademien der Wissenschaften Schweiz Swiss Academies of Arts and Sciences'),
(96517, 'https://ror.org/03ym4q031', 'en', 1, 'https://ror.org/03ym4q031 MSD Life Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗMSDē”Ÿå‘½ē§‘å­¦č²”å›£'),
(96518, 'https://ror.org/048bmqg23', 'no_lang_code', 1, 'https://ror.org/048bmqg23 Rail Safety and Standards Board (United Kingdom)'),
(96519, 'https://ror.org/00knds749', 'en', 1, 'https://ror.org/00knds749 Himachal Pradesh National Law University, Shimla'),
(96520, 'https://ror.org/05g3dte14', 'en', 1, 'https://ror.org/05g3dte14 Florida State University Universidad Estatal de Florida UniversitĆ© d''Ɖtat de Floride'),
(96521, 'https://ror.org/0573j3j10', 'en', 1, 'https://ror.org/0573j3j10 Taylor Geospatial Institute'),
(96522, 'https://ror.org/002q11y83', 'en', 1, 'https://ror.org/002q11y83 Institute For Cancer Vaccine & Immunotherapy'),
(96523, 'https://ror.org/03wd9za21', 'en', 1, 'https://ror.org/03wd9za21 Agence Spatiale Européenne Agència Espacial Europea Europako Espazio Agentzia European Space Agency'),
(96524, 'https://ror.org/01gdwxf40', 'tr', 1, 'https://ror.org/01gdwxf40 T.C. Ziraat Bankası A.Ş. Ziraat Bankası'),
(96525, 'https://ror.org/03vd8y618', 'en', 1, 'https://ror.org/03vd8y618 Research Institute in Science of Cyber Security'),
(96526, 'https://ror.org/048vrgr14', 'no_lang_code', 1, 'https://ror.org/048vrgr14 Becton Dickinson (United States)'),
(96527, 'https://ror.org/00tdmgj61', 'no_lang_code', 1, 'https://ror.org/00tdmgj61 SUNY Canton'),
(96528, 'https://ror.org/008eg1b26', 'es', 1, 'https://ror.org/008eg1b26 Instituto Tecnológico Superior de Perote'),
(96529, 'https://ror.org/01xr4jy61', 'es', 1, 'https://ror.org/01xr4jy61 Instituto de MeteorologĆ­a'),
(96530, 'https://ror.org/01anhj553', 'fr', 1, 'https://ror.org/01anhj553 UCLy (Lyon Catholic University) UniversitƩ catholique de lyon'),
(96531, 'https://ror.org/05ctx1h60', 'en', 1, 'https://ror.org/05ctx1h60 Franklin Templeton Franklin Templeton (United States)'),
(96532, 'https://ror.org/01cmkbc96', 'en', 1, 'https://ror.org/01cmkbc96 Fulton–Montgomery Community College'),
(96533, 'https://ror.org/01p7qe739', 'en', 1, 'https://ror.org/01p7qe739 Tokai University ę±ęµ·å¤§å­¦'),
(96534, 'https://ror.org/03csmp942', 'en', 1, 'https://ror.org/03csmp942 National Institute of Advanced Manufacturing Technology ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤‰ą¤Øą„ą¤Øą¤¤ ą¤µą¤æą¤Øą¤æą¤°ą„ą¤®ą¤¾ą¤£ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(96535, 'https://ror.org/02yg1pf55', 'en', 0, 'https://ror.org/02yg1pf55 IBM Research (China)'),
(96536, 'https://ror.org/024hs3d71', 'en', 1, 'https://ror.org/024hs3d71 City of Flagstaff'),
(96537, 'https://ror.org/0065vkd37', 'en', 1, 'https://ror.org/0065vkd37 Brookdale University Hospital and Medical Center'),
(96538, 'https://ror.org/05hntsd28', 'pt', 1, 'https://ror.org/05hntsd28 Faculdade Damas da Instrução Cristã'),
(96539, 'https://ror.org/01h3dr788', 'nl', 1, 'https://ror.org/01h3dr788 Fondation contre le Cancer Stichting tegen Kanker'),
(96540, 'https://ror.org/01ggkbb05', 'en', 1, 'https://ror.org/01ggkbb05 Remotely Operated Platform for Ocean Sciences'),
(96541, 'https://ror.org/05tppve82', 'en', 1, 'https://ror.org/05tppve82 Federal Polytechnic, Idah'),
(96542, 'https://ror.org/05qghxh33', 'en', 1, 'https://ror.org/05qghxh33 Stony Brook University Universidad de Stony Brook UniversitĆ© d''Ɖtat de new york Ć  stony brook'),
(96543, 'https://ror.org/00a1gne75', 'no_lang_code', 1, 'https://ror.org/00a1gne75 Teledyne Technologies (United States)'),
(96544, 'https://ror.org/045qsfj95', 'en', 1, 'https://ror.org/045qsfj95 Institute of Development Studies विकास ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(96545, 'https://ror.org/0232f6165', 'en', 1, 'https://ror.org/0232f6165 Department of Pharmaceuticals'),
(96546, 'https://ror.org/02v9m6h26', 'en', 1, 'https://ror.org/02v9m6h26 SUNY College of Optometry'),
(96547, 'https://ror.org/005w2mm89', 'fr', 1, 'https://ror.org/005w2mm89 Laboratoire d''Ʃtudes de genre et de sexualitƩ'),
(96548, 'https://ror.org/02abb9a79', 'en', 1, 'https://ror.org/02abb9a79 Severe Weather Institute - Radar & Lightning Laboratory'),
(96549, 'https://ror.org/037cnag11', 'en', 1, 'https://ror.org/037cnag11 University of Missouri–St. Louis'),
(96550, 'https://ror.org/04d996474', 'en', 1, 'https://ror.org/04d996474 Southwest University of Science and Technology č„æå—ē§‘ęŠ€å¤§å­¦'),
(96551, 'https://ror.org/036w79395', 'no_lang_code', 1, 'https://ror.org/036w79395 Sekisui Kasei (Japan) Sekisui Plastics ē©ę°“åŒ–ęˆå“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(96552, 'https://ror.org/01m296r74', 'es', 1, 'https://ror.org/01m296r74 Universidad Autónoma de Zacatecas Universidad Autónoma de Zacatecas "Francisco García Salinas"'),
(96553, 'https://ror.org/01qz4yx77', 'en', 1, 'https://ror.org/01qz4yx77 King''s College Hospital Charity'),
(96554, 'https://ror.org/04yqcxp07', 'en', 1, 'https://ror.org/04yqcxp07 Quantum Source Labs Ltd Quantum Source Labs Ltd (Israel)'),
(96555, 'https://ror.org/0468fwt03', 'en', 1, 'https://ror.org/0468fwt03 Clinton Community College'),
(96556, 'https://ror.org/03ab8zv57', 'en', 1, 'https://ror.org/03ab8zv57 International Centre for Mathematical Sciences'),
(96557, 'https://ror.org/029r1ks56', 'en', 1, 'https://ror.org/029r1ks56 NSW Forestry Corporation'),
(96558, 'https://ror.org/033zmj163', 'en', 1, 'https://ror.org/033zmj163 SUNY Plattsburgh'),
(96559, 'https://ror.org/033200e31', 'no_lang_code', 0, 'https://ror.org/033200e31 Gryphon Scientific (United States)'),
(96560, 'https://ror.org/054d78x30', 'en', 1, 'https://ror.org/054d78x30 IMRA Europe IMRA Europe SAS'),
(96561, 'https://ror.org/02c0fsq39', 'en', 1, 'https://ror.org/02c0fsq39 UGC-DAE Consortium for Scientific Research, Kolkata Centre'),
(96562, 'https://ror.org/03s49ys28', 'en', 1, 'https://ror.org/03s49ys28 Catholic International University'),
(96563, 'https://ror.org/02za3fg58', 'en', 1, 'https://ror.org/02za3fg58 Eton College'),
(96564, 'https://ror.org/01ms54x07', 'fr', 1, 'https://ror.org/01ms54x07 UMS-Autonomie'),
(96565, 'https://ror.org/02047t867', 'en', 1, 'https://ror.org/02047t867 New Phytologist Foundation'),
(96566, 'https://ror.org/039zedc16', 'en', 1, 'https://ror.org/039zedc16 St George’s University Hospitals NHS Foundation Trust'),
(96567, 'https://ror.org/04g5gcg95', 'en', 1, 'https://ror.org/04g5gcg95 Heilbronn University Hochschule Heilbronn'),
(96568, 'https://ror.org/0262z1d94', 'fr', 1, 'https://ror.org/0262z1d94 Laboratoire Innovation Communication et MarchƩ'),
(96569, 'https://ror.org/025zmdz23', 'en', 1, 'https://ror.org/025zmdz23 Imperial College Healthcare Charity'),
(96570, 'https://ror.org/010mf0m52', 'en', 1, 'https://ror.org/010mf0m52 Department for Transport'),
(96571, 'https://ror.org/010c2rf19', 'en', 1, 'https://ror.org/010c2rf19 Max Planck Institutes for Intelligent Systems & Solid State Research Library Max-Planck-Institute für Intelligente Systeme & Festkörperforschung Bibliothek'),
(96572, 'https://ror.org/03sg2bq51', 'en', 1, 'https://ror.org/03sg2bq51 Empire State University'),
(96573, 'https://ror.org/054mp6682', 'en', 1, 'https://ror.org/054mp6682 PAP Non-commissioned Officer School äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜Ÿå£«å®˜å­¦ę ”'),
(96574, 'https://ror.org/01vtcwd37', 'en', 1, 'https://ror.org/01vtcwd37 Washington State Department of Transportation'),
(96575, 'https://ror.org/02yt1th11', 'fr', 1, 'https://ror.org/02yt1th11 UR CONFLUENCE: Sciences et HumanitƩs'),
(96576, 'https://ror.org/03r938j26', 'fr', 1, 'https://ror.org/03r938j26 Laboratoire d''Informatique Fondamentale et AppliquƩe de Tours Laboratory of Fundamental and Applied Computer Science of Tours'),
(96577, 'https://ror.org/04w07sc25', 'fr', 1, 'https://ror.org/04w07sc25 Sciences pour L’Œnologie'),
(96578, 'https://ror.org/03vkfy293', 'en', 1, 'https://ror.org/03vkfy293 Central Institute of Mining and Fuel Research ą¤øą„€ą¤ą¤øą¤†ą¤ˆą¤†ą¤°-ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ खनन ą¤ą¤µą¤‚ ą¤ˆą¤‚ą¤§ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(96579, 'https://ror.org/039j4x695', 'fr', 1, 'https://ror.org/039j4x695 Laboratoire Biosciences et bioingƩnierie pour la SantƩ'),
(96580, 'https://ror.org/04161ta68', 'en', 1, 'https://ror.org/04161ta68 University "St. Kliment Ohridski" - Bitola Универзитет Дв. ā€žŠšŠ»ŠøŠ¼ŠµŠ½Ń‚ ŠžŃ…Ń€ŠøŠ“ŃŠŗŠøā€œ Битола'),
(96581, 'https://ror.org/04sw7nr96', 'es', 1, 'https://ror.org/04sw7nr96 Institute of Astrophysics La Plata Instituto de AstrofĆ­sica de La Plata'),
(96582, 'https://ror.org/00zg6dt46', 'en', 1, 'https://ror.org/00zg6dt46 New York State School of Industrial and Labor Relations'),
(96583, 'https://ror.org/008tr1381', 'en', 1, 'https://ror.org/008tr1381 Les Roches International School of Hotel Management'),
(96584, 'https://ror.org/05gzn8n94', 'en', 1, 'https://ror.org/05gzn8n94 PLA Air Force Xi''an Flying College äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›č„æå®‰é£žč”Œå­¦é™¢'),
(96585, 'https://ror.org/0402pty94', 'en', 1, 'https://ror.org/0402pty94 University of Chemical Technology and Metallurgy Єимикотехнологичен Šø Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³ŠøŃ‡ŠµŠ½ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(96586, 'https://ror.org/03aaxgs84', 'en', 1, 'https://ror.org/03aaxgs84 Cebu Normal University Pamantasang Normal ng Cebu'),
(96587, 'https://ror.org/00q1dg558', 'es', 1, 'https://ror.org/00q1dg558 Instituto Educativo Dolores Del Rio Extensión Santiago Papasquiaro Durango'),
(96588, 'https://ror.org/04q5r0746', 'en', 1, 'https://ror.org/04q5r0746 Liverpool Womens NHS Foundation Trust'),
(96589, 'https://ror.org/030deh410', 'en', 1, 'https://ror.org/030deh410 IHE Delft Institute for Water Education'),
(96590, 'https://ror.org/02qmrr889', 'en', 1, 'https://ror.org/02qmrr889 Yibin Vocational and Technical College å®œå®¾čŒäøšęŠ€ęœÆå­¦é™¢'),
(96591, 'https://ror.org/05gsrh908', 'no_lang_code', 1, 'https://ror.org/05gsrh908 Ecopetrol (Colombia)'),
(96592, 'https://ror.org/03myan165', 'en', 1, 'https://ror.org/03myan165 Tateisi Science and Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ē«‹ēŸ³ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(96593, 'https://ror.org/058y2sm81', 'no_lang_code', 1, 'https://ror.org/058y2sm81 Ceridian (United States) Dayforce Dayforce (United States)'),
(96594, 'https://ror.org/01wjs8e77', 'en', 1, 'https://ror.org/01wjs8e77 Kings Dental Center'),
(96595, 'https://ror.org/020wyb168', 'no_lang_code', 1, 'https://ror.org/020wyb168 Lancium Lancium (United States)'),
(96596, 'https://ror.org/00fvwqz75', 'en', 1, 'https://ror.org/00fvwqz75 Baranavichy State University'),
(96597, 'https://ror.org/04fq9j139', 'en', 1, 'https://ror.org/04fq9j139 Max Planck Institute for Intelligent Systems Max-Planck-Institut für Intelligente Systeme'),
(96598, 'https://ror.org/007bw2y16', 'fr', 1, 'https://ror.org/007bw2y16 SantƩ, Education et Situations de Handicap'),
(96599, 'https://ror.org/05dmpdy49', 'en', 1, 'https://ror.org/05dmpdy49 NSW Department of Communities and Justice'),
(96600, 'https://ror.org/01ydb3330', 'fr', 1, 'https://ror.org/01ydb3330 Soleil Synchrotron Synchrotron soleil'),
(96601, 'https://ror.org/03kkrza17', 'es', 1, 'https://ror.org/03kkrza17 Centro de Investigaciones Interdisciplinarias en Ciencias y Humanidades'),
(96602, 'https://ror.org/057zvny46', 'en', 1, 'https://ror.org/057zvny46 Genocide and Resistance Research Centre of Lithuania Lietuvos gyventojų genocido ir rezistencijos tyrimo centras'),
(96603, 'https://ror.org/01ddr6d46', 'fr', 1, 'https://ror.org/01ddr6d46 DƩlƩgation RƩgionale Occitanie MƩditerranƩe'),
(96604, 'https://ror.org/045n3eg64', 'fr', 1, 'https://ror.org/045n3eg64 Equipe de Droit PƩnal et de sciences Forensiques de Montpellier'),
(96605, 'https://ror.org/02ymav706', 'en', 1, 'https://ror.org/02ymav706 British Association for Applied Linguistics'),
(96606, 'https://ror.org/03bmwyk24', 'es', 1, 'https://ror.org/03bmwyk24 Tecnológico Nacional de México de Ciudad Jiménez'),
(96607, 'https://ror.org/044jxv425', 'en', 1, 'https://ror.org/044jxv425 Bacterial Virulence and Chronic Infections Virulence BactƩrienne et Infections Chroniques'),
(96608, 'https://ror.org/01t7v1t25', 'fr', 1, 'https://ror.org/01t7v1t25 DƩveloppement Individu Processus Handicap Education'),
(96609, 'https://ror.org/02sndnx77', 'en', 1, 'https://ror.org/02sndnx77 TrĘ°į»ng ĐẔi hį»c CĆ“ng nghiệp Việt – Hung Viet-Hung Industrial University'),
(96610, 'https://ror.org/01cmnjq37', 'fr', 1, 'https://ror.org/01cmnjq37 Centre LƩon BƩrard'),
(96611, 'https://ror.org/025320p83', 'en', 1, 'https://ror.org/025320p83 SUNY Sullivan'),
(96612, 'https://ror.org/043w3h917', 'en', 1, 'https://ror.org/043w3h917 Institution of Mechanical Engineers'),
(96613, 'https://ror.org/04qa46285', 'de', 1, 'https://ror.org/04qa46285 Dietrich Bonhoeffer Klinikum'),
(96614, 'https://ror.org/000dfsq72', 'en', 1, 'https://ror.org/000dfsq72 Office for Learning and Teaching'),
(96615, 'https://ror.org/04bjtbt12', 'es', 1, 'https://ror.org/04bjtbt12 Higher Technological Institute of Lerdo Instituto Tecnológico Superior de Lerdo'),
(96616, 'https://ror.org/01tx6pn92', 'en', 1, 'https://ror.org/01tx6pn92 Texas A&M Health Science Center'),
(96617, 'https://ror.org/0102dvb40', 'en', 1, 'https://ror.org/0102dvb40 Fujian Provincial Department of Ecology and Environment ē¦å»ŗēœē”Ÿę€ēŽÆå¢ƒåŽ…'),
(96618, 'https://ror.org/01pwhp331', 'sr', 1, 'https://ror.org/01pwhp331 Srpsko arheoloÅ”ko druÅ”tvo Дрпско Š°Ń€Ń…ŠµŠ¾Š»Š¾ŃˆŠŗŠ¾ Š“Ń€ŃƒŃˆŃ‚Š²Š¾'),
(96619, 'https://ror.org/04hx99g79', 'en', 1, 'https://ror.org/04hx99g79 XIM University'),
(96620, 'https://ror.org/00nx0vn86', 'en', 1, 'https://ror.org/00nx0vn86 Macao University of Tourism Universidade de Turismo de Macau ę¾³é–€ę—…éŠå¤§å­ø'),
(96621, 'https://ror.org/04achg568', 'en', 1, 'https://ror.org/04achg568 Royal Asiatic Society'),
(96622, 'https://ror.org/017a2yz34', 'en', 1, 'https://ror.org/017a2yz34 SUNY Delhi'),
(96623, 'https://ror.org/0276rjc88', 'en', 1, 'https://ror.org/0276rjc88 Institute for Nuclear Research and Nuclear Energy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŃŠ“Ń€ŠµŠ½Šø ŠøŠ·ŃŠ»ŠµŠ“Š²Š°Š½ŠøŃ Šø ŃŠ“Ń€ŠµŠ½Š° енергетика'),
(96624, 'https://ror.org/00s5kmw74', 'en', 1, 'https://ror.org/00s5kmw74 Canadian Research Knowledge Network RƩseau canadien de documentation pour la recherche'),
(96625, 'https://ror.org/01n0nt715', 'en', 1, 'https://ror.org/01n0nt715 University of the South Pacific - Emalus Campus'),
(96626, 'https://ror.org/0248dkz36', 'es', 1, 'https://ror.org/0248dkz36 Tecnológico Nacional de México, Campus Pachuca'),
(96627, 'https://ror.org/03d087w61', 'en', 1, 'https://ror.org/03d087w61 Department of National Trade Measurement and Standards'),
(96628, 'https://ror.org/0557vhy43', 'fr', 1, 'https://ror.org/0557vhy43 Laboratoire Biologie et Biotechnologie pour la SantƩ'),
(96629, 'https://ror.org/000q6dn27', 'fr', 1, 'https://ror.org/000q6dn27 Laboratoire d''anthropologie des enjeux contemporains'),
(96630, 'https://ror.org/00sepad12', 'en', 1, 'https://ror.org/00sepad12 SUNY Corning Community College'),
(96631, 'https://ror.org/0541jr710', 'en', 1, 'https://ror.org/0541jr710 European Space Operations Centre'),
(96632, 'https://ror.org/0100zmm86', 'fr', 1, 'https://ror.org/0100zmm86 Montpellier Recherche en Economie'),
(96633, 'https://ror.org/045h9g769', 'en', 1, 'https://ror.org/045h9g769 Ministry of Trade, Co-operatives, Small and Medium Enterprises'),
(96634, 'https://ror.org/02yqgb753', 'en', 1, 'https://ror.org/02yqgb753 Life Sciences International Postgraduate Educational Center'),
(96635, 'https://ror.org/04wsqd844', 'fr', 1, 'https://ror.org/04wsqd844 Direction GƩnƩrale de l''Armement'),
(96636, 'https://ror.org/05x6axq16', 'en', 1, 'https://ror.org/05x6axq16 Moscow Institute of Psychoanalysis Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психоанализа'),
(96637, 'https://ror.org/05jpzcy63', 'en', 1, 'https://ror.org/05jpzcy63 Association for Project Management'),
(96638, 'https://ror.org/05k6w6915', 'en', 1, 'https://ror.org/05k6w6915 North Country Community College'),
(96639, 'https://ror.org/05fpsjc82', 'en', 1, 'https://ror.org/05fpsjc82 Institute of Information and Communication Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по информационни Šø ŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¾Š½Š½Šø технологии'),
(96640, 'https://ror.org/05ms04m92', 'en', 1, 'https://ror.org/05ms04m92 Buffalo State University'),
(96641, 'https://ror.org/04rcxhq50', 'no_lang_code', 1, 'https://ror.org/04rcxhq50 Novartis (Italy) Novartis Farma S.p.A. Novartis Italia'),
(96642, 'https://ror.org/02t42bb94', 'en', 1, 'https://ror.org/02t42bb94 Naval Research Academy 中国人民解放军海军研究院'),
(96643, 'https://ror.org/047g2xp14', 'en', 1, 'https://ror.org/047g2xp14 New York State University College of Human Ecology'),
(96644, 'https://ror.org/03j3dv688', 'en', 1, 'https://ror.org/03j3dv688 SUNY New Paltz'),
(96645, 'https://ror.org/010bvr713', 'es', 1, 'https://ror.org/010bvr713 Instituto Colombiano del Petróleo y Energías de la Transición - Icpet'),
(96646, 'https://ror.org/01znbx673', 'en', 1, 'https://ror.org/01znbx673 Green Cross Laboratoies Green Cross Laboratories (South Korea)'),
(96647, 'https://ror.org/05p330p21', 'no_lang_code', 1, 'https://ror.org/05p330p21 Shell (United Kingdom)'),
(96648, 'https://ror.org/01qk7v094', 'en', 1, 'https://ror.org/01qk7v094 Intergovernmental Oceanographic Commission of UNESCO'),
(96649, 'https://ror.org/007ptm460', 'id', 1, 'https://ror.org/007ptm460 Badan Strategi Kebijakan Dalam Negeri'),
(96650, 'https://ror.org/05hz48k23', 'no_lang_code', 1, 'https://ror.org/05hz48k23 Vision RT (United Kingdom)'),
(96651, 'https://ror.org/05p9e6e48', 'en', 1, 'https://ror.org/05p9e6e48 Federal Center for Cardiovascular Surgery Astrakhan Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Центр ДерГечно-Š”Š¾ŃŃƒŠ“ŠøŃŃ‚Š¾Š¹ Š„ŠøŃ€ŃƒŃ€Š³ŠøŠø ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России г. ŠŃŃ‚Ń€Š°Ń…Š°Š½ŃŒ'),
(96652, 'https://ror.org/01w8zj169', 'es', 1, 'https://ror.org/01w8zj169 Instituto Tecnológico de Tuxtepec'),
(96653, 'https://ror.org/02bn68w95', 'en', 1, 'https://ror.org/02bn68w95 Institute of Optics and Electronics, Chinese Academy of Sciences'),
(96654, 'https://ror.org/01bj4g149', 'en', 1, 'https://ror.org/01bj4g149 Montana State University Foundation'),
(96655, 'https://ror.org/02heqqj04', 'en', 1, 'https://ror.org/02heqqj04 Pingtan Environmental Monitoring Center of Fujian ē¦å»ŗēœå¹³ę½­ēŽÆå¢ƒē›‘ęµ‹äø­åæƒē«™'),
(96656, 'https://ror.org/05h50sq48', 'no_lang_code', 1, 'https://ror.org/05h50sq48 Vuela for Health'),
(96657, 'https://ror.org/03g4kv388', 'en', 1, 'https://ror.org/03g4kv388 Ethiopian Technology Authority į‹ØįŠ¢į‰µį‹®įŒµį‹« į‰“įŠ­įŠ–įˆŽįŒ‚ į‰£įˆˆįˆµįˆįŒ£įŠ•'),
(96658, 'https://ror.org/013ps2585', 'no_lang_code', 1, 'https://ror.org/013ps2585 medica mondiale e.V.'),
(96659, 'https://ror.org/036ftwn63', 'en', 1, 'https://ror.org/036ftwn63 Great Lakes Observing System'),
(96660, 'https://ror.org/02a22tx41', 'fr', 1, 'https://ror.org/02a22tx41 Haute Ɖcole Provinciale de Hainaut Condorcet'),
(96661, 'https://ror.org/01jtrvx49', 'en', 1, 'https://ror.org/01jtrvx49 World Glacier Monitoring Service'),
(96662, 'https://ror.org/02k8f5n40', 'fr', 1, 'https://ror.org/02k8f5n40 Laboratoire Cognitions Humaine et Artificielle'),
(96663, 'https://ror.org/014qe3j22', 'en', 1, 'https://ror.org/014qe3j22 Stanford Cancer Institute'),
(96664, 'https://ror.org/05n2vpf20', 'en', 1, 'https://ror.org/05n2vpf20 Les Roches Marbella International School of Hotel Management'),
(96665, 'https://ror.org/05yqeks58', 'en', 1, 'https://ror.org/05yqeks58 The Centre for Reproductive & Genetic Health'),
(96666, 'https://ror.org/02r2qbj91', 'en', 1, 'https://ror.org/02r2qbj91 SUNY Westchester Community College'),
(96667, 'https://ror.org/00h5hvq79', 'es', 1, 'https://ror.org/00h5hvq79 INESPASA INESPASA (Spain)'),
(96668, 'https://ror.org/01vnt7q67', 'en', 1, 'https://ror.org/01vnt7q67 Historic England'),
(96669, 'https://ror.org/02sftkh09', 'es', 1, 'https://ror.org/02sftkh09 Instituto Tecnológico Superior de Centla'),
(96670, 'https://ror.org/00pdj1108', 'en', 1, 'https://ror.org/00pdj1108 RFF-CMCC European Institute on Economics and the Environment'),
(96671, 'https://ror.org/006zfjs50', 'de', 1, 'https://ror.org/006zfjs50 Forschungsanstalt für Waldökologie und Forstwirtschaft Rheinland-Pfalz'),
(96672, 'https://ror.org/047sfm294', 'en', 1, 'https://ror.org/047sfm294 Kementerian Dalam Negeri Ministry of Home Affairs'),
(96673, 'https://ror.org/02nwb8925', 'fr', 1, 'https://ror.org/02nwb8925 Ecole de droit social de Montpellier'),
(96674, 'https://ror.org/02n6w8087', 'en', 1, 'https://ror.org/02n6w8087 Air Force Communication NCO Academy äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›é€šäæ”å£«å®˜å­¦ę ”'),
(96675, 'https://ror.org/03g1fnq23', 'es', 1, 'https://ror.org/03g1fnq23 Centro de Investigaciones Biológicas del Noroeste S.C.'),
(96676, 'https://ror.org/038zhf168', 'en', 1, 'https://ror.org/038zhf168 SMA Trust'),
(96677, 'https://ror.org/05xdft911', 'en', 1, 'https://ror.org/05xdft911 Microsoft Research MontrƩal (Canada)'),
(96678, 'https://ror.org/02c0s8023', 'id', 1, 'https://ror.org/02c0s8023 Indonesian Muslim University of Makassar Universitas Muslim Indonesia'),
(96679, 'https://ror.org/00mskh452', 'sv', 1, 'https://ror.org/00mskh452 ƅForsk'),
(96680, 'https://ror.org/01hxyb880', 'pt', 1, 'https://ror.org/01hxyb880 Universidade de Luanda University of Luanda'),
(96681, 'https://ror.org/000twr676', 'en', 1, 'https://ror.org/000twr676 Anaesthetic Research Society'),
(96682, 'https://ror.org/01w66yj92', 'en', 1, 'https://ror.org/01w66yj92 NMIM National Metrology Institute of Malaysia'),
(96683, 'https://ror.org/03qq7c889', 'en', 1, 'https://ror.org/03qq7c889 Khulna Agricultural University খুলনা ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(96684, 'https://ror.org/05nne8c43', 'en', 1, 'https://ror.org/05nne8c43 NSW Department of Education'),
(96685, 'https://ror.org/05nspsj29', 'en', 1, 'https://ror.org/05nspsj29 Mediterranean Experts on Climate and environmental Change'),
(96686, 'https://ror.org/02nsq4g28', 'pt', 1, 'https://ror.org/02nsq4g28 Faculdade de Direito de Franca'),
(96687, 'https://ror.org/00t09mq63', 'en', 1, 'https://ror.org/00t09mq63 AbbVie (Australia)'),
(96688, 'https://ror.org/03q5ve753', 'en', 1, 'https://ror.org/03q5ve753 Jiangnan Social University'),
(96689, 'https://ror.org/04fxmcy40', 'en', 1, 'https://ror.org/04fxmcy40 Army Command College äø­å›½äŗŗę°‘č§£ę”¾å†›é™†å†›ęŒ‡ęŒ„å­¦é™¢ę’­ęŠ„'),
(96690, 'https://ror.org/00yzkzh74', 'en', 0, 'https://ror.org/00yzkzh74 River Lane Research'),
(96691, 'https://ror.org/03mp99h26', 'en', 1, 'https://ror.org/03mp99h26 Xavier Institute of Management and Entrepreneurship'),
(96692, 'https://ror.org/01hjh7h09', 'es', 1, 'https://ror.org/01hjh7h09 Tecnológico de Estudios Superiores de CuautitlÔn Izcalli'),
(96693, 'https://ror.org/05ht3z286', 'sr', 1, 'https://ror.org/05ht3z286 SMEITS Savez maŔinskih i elektrotehničkih inženjera i tehničara Srbije Union of Mechanical and Electrical Engineers and Technicians of Serbia'),
(96694, 'https://ror.org/004hyqr12', 'en', 1, 'https://ror.org/004hyqr12 Suffolk County Community College'),
(96695, 'https://ror.org/0001a2m26', 'en', 1, 'https://ror.org/0001a2m26 SUNY Broome Community College'),
(96696, 'https://ror.org/051n2s460', 'fr', 1, 'https://ror.org/051n2s460 Fonctionnement et dysfonctionnement cognitifs: les âges de la vie'),
(96697, 'https://ror.org/0068dme40', 'en', 1, 'https://ror.org/0068dme40 Jamestown Community College'),
(96698, 'https://ror.org/02bctrh07', 'sv', 1, 'https://ror.org/02bctrh07 Rune and Ulla Amlƶvs Stiftelse'),
(96699, 'https://ror.org/01bvv5f54', 'en', 1, 'https://ror.org/01bvv5f54 Bį»™ CĆ“ng Thʰʔng Ministry of Industry and Trade'),
(96700, 'https://ror.org/05h5a7d89', 'fr', 1, 'https://ror.org/05h5a7d89 Centre Spatial Guyanais Guiana Space Centre'),
(96701, 'https://ror.org/05sy4b952', 'en', 1, 'https://ror.org/05sy4b952 Saba University School of Medicine'),
(96702, 'https://ror.org/05kxbz959', 'no_lang_code', 1, 'https://ror.org/05kxbz959 Hyundai Motor Group (South Korea)'),
(96703, 'https://ror.org/00hdhxd58', 'en', 1, 'https://ror.org/00hdhxd58 European Astronaut Centre EuropƤisches Astronautenzentrum'),
(96704, 'https://ror.org/02a9x5m28', 'en', 1, 'https://ror.org/02a9x5m28 Central Institute of Metrology'),
(96705, 'https://ror.org/03jwjxy73', 'fr', 1, 'https://ror.org/03jwjxy73 ECAL/Ecole cantonale d''art de Lausanne'),
(96706, 'https://ror.org/05e3kjq13', 'en', 1, 'https://ror.org/05e3kjq13 Rajshahi Medical University ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ মেঔিকেল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(96707, 'https://ror.org/00gtjrz72', 'it', 1, 'https://ror.org/00gtjrz72 Fondazione Cassa di Risparmio di Roma Fondazione Roma'),
(96708, 'https://ror.org/03r0cdk24', 'fr', 1, 'https://ror.org/03r0cdk24 Institut de Recherche sur l''Architecture Antique'),
(96709, 'https://ror.org/03s13vb04', 'en', 1, 'https://ror.org/03s13vb04 Northern Netherlands Provinces alliance samenwerkingsverband Noord-Nederland'),
(96710, 'https://ror.org/01eb8ek77', 'en', 1, 'https://ror.org/01eb8ek77 United Nations Economic and Social Council'),
(96711, 'https://ror.org/042gs1a72', 'en', 1, 'https://ror.org/042gs1a72 Weston Park Cancer Centre'),
(96712, 'https://ror.org/02rm8h934', 'en', 1, 'https://ror.org/02rm8h934 UNESCO-UNEVOC International Centre for Technical and Vocational Education and Training'),
(96713, 'https://ror.org/04y9m7a06', 'sr', 1, 'https://ror.org/04y9m7a06 DruŔtvo lekara Vojvodine'),
(96714, 'https://ror.org/01djcs087', 'en', 1, 'https://ror.org/01djcs087 Rosalind Franklin Institute'),
(96715, 'https://ror.org/041brh707', 'en', 1, 'https://ror.org/041brh707 New Zealand Equine Research Foundation'),
(96716, 'https://ror.org/0146qxv70', 'es', 1, 'https://ror.org/0146qxv70 Fundación Naturaleza El Salvador'),
(96717, 'https://ror.org/00ggqtz82', 'fr', 1, 'https://ror.org/00ggqtz82 Institut FranƧais de la Mer Oceanographic Institute'),
(96718, 'https://ror.org/028kg2g03', 'tr', 1, 'https://ror.org/028kg2g03 Ƈanakkale Savaşları Enstitüsü'),
(96719, 'https://ror.org/01e11zd27', 'no_lang_code', 1, 'https://ror.org/01e11zd27 Gilead Sciences (United Kingdom)'),
(96720, 'https://ror.org/049v3kt97', 'en', 1, 'https://ror.org/049v3kt97 National Center for Measurement and Calibration Center'),
(96721, 'https://ror.org/018g09a27', 'tr', 1, 'https://ror.org/018g09a27 Bornova Türkan Ɩzilhan Devlet Hastanesi'),
(96722, 'https://ror.org/03h8f2y52', 'en', 1, 'https://ror.org/03h8f2y52 Zhangir Khan University Zhangir Khan West Kazakhstan Agrarian Technical University Жангир Єан Университет Жәңгір Єан Университеті Жәңгір хан атынГағы Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ аграрлық-техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ЗапаГно-ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ аграрно-технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Жангир хана'),
(96723, 'https://ror.org/05pmky480', 'pt', 1, 'https://ror.org/05pmky480 UningƔ - Centro UniversitƔrio IngƔ'),
(96724, 'https://ror.org/01kbr1737', 'fr', 1, 'https://ror.org/01kbr1737 PHotonique ELectronique et IngƩnierie QuantiqueS'),
(96725, 'https://ror.org/04kfz4b98', 'en', 1, 'https://ror.org/04kfz4b98 Harbin Finance University å“ˆå°”ę»Øé‡‘čžå­¦é™¢'),
(96726, 'https://ror.org/05eytha84', 'en', 1, 'https://ror.org/05eytha84 South East Coast Ambulance Service NHS Foundation Trust'),
(96727, 'https://ror.org/0336f3190', 'es', 1, 'https://ror.org/0336f3190 Tecnológico Nacional de México Campus Cancún'),
(96728, 'https://ror.org/04k7nem08', 'en', 1, 'https://ror.org/04k7nem08 Saint Louis University Unibersidad ng San Luis'),
(96729, 'https://ror.org/00kdfr768', 'id', 1, 'https://ror.org/00kdfr768 Sekolah Tinggi Ilmu Hukum Sumpah Pemuda Sumpah Pemuda School of Law'),
(96730, 'https://ror.org/04mfpmj78', 'en', 1, 'https://ror.org/04mfpmj78 K.S. Rangasamy College of Technology கே. ą®Žą®øąÆ. ą®°ą®™ąÆą®•ą®šą®¾ą®®ą®æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(96731, 'https://ror.org/04jpfrv51', 'en', 1, 'https://ror.org/04jpfrv51 Directorate General for Scientific Research and Technological Development Ų§Ł„Ł…ŲÆŁŠŲ±ŁŠŲ© العامة للبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŲ·ŁˆŁŠŲ± Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(96732, 'https://ror.org/01tf11a61', 'en', 1, 'https://ror.org/01tf11a61 CMCC Foundation - Euro-Mediterranean Center on Climate Change'),
(96733, 'https://ror.org/0234wmv40', 'en', 1, 'https://ror.org/0234wmv40 University of Bayreuth UniversitƤt Bayreuth'),
(96734, 'https://ror.org/04c9vp017', 'no_lang_code', 1, 'https://ror.org/04c9vp017 Supernal Supernal (United States) Supernal, LLC'),
(96735, 'https://ror.org/03y03ds95', 'en', 1, 'https://ror.org/03y03ds95 Cool Roof Rating Council'),
(96736, 'https://ror.org/04c5jwj47', 'pl', 1, 'https://ror.org/04c5jwj47 Collegium Medicum in Bydgoszcz'),
(96737, 'https://ror.org/00ka0b792', 'es', 1, 'https://ror.org/00ka0b792 Universidad del Chubut University of Chubut'),
(96738, 'https://ror.org/00fqyhf62', 'en', 1, 'https://ror.org/00fqyhf62 Harris–Stowe State University'),
(96739, 'https://ror.org/04sqpc563', 'no_lang_code', 1, 'https://ror.org/04sqpc563 Anglian Water Services (United Kingdom)'),
(96740, 'https://ror.org/025qq8j12', 'en', 1, 'https://ror.org/025qq8j12 Vesalius College'),
(96741, 'https://ror.org/00j387684', 'en', 1, 'https://ror.org/00j387684 Jefferson Community College'),
(96742, 'https://ror.org/00yh11w37', 'en', 1, 'https://ror.org/00yh11w37 Newlife the Charity for Disabled Children'),
(96743, 'https://ror.org/04dy97z61', 'fr', 1, 'https://ror.org/04dy97z61 LIDYL, Lasers, Interactions, and Dynamics Laboratory Laboratoire Interactions, Dynamiques et Lasers'),
(96744, 'https://ror.org/004v39231', 'es', 1, 'https://ror.org/004v39231 Universidad Multitecnica Profesional'),
(96745, 'https://ror.org/02ykxax89', 'no_lang_code', 1, 'https://ror.org/02ykxax89 Kowa (United Kingdom)'),
(96746, 'https://ror.org/01tjwm845', 'no_lang_code', 1, 'https://ror.org/01tjwm845 Kellogg''s (United Kingdom)'),
(96747, 'https://ror.org/00965mv68', 'es', 1, 'https://ror.org/00965mv68 Tecnológico Nacional de México Campus San Juan de los Ríos'),
(96748, 'https://ror.org/0473rr271', 'en', 1, 'https://ror.org/0473rr271 Federal Highway Administration'),
(96749, 'https://ror.org/01ttehr75', 'en', 1, 'https://ror.org/01ttehr75 Islamic Arabic University الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© ইসলামি আরবি ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(96750, 'https://ror.org/013hjnc74', 'en', 1, 'https://ror.org/013hjnc74 Energi Simulation'),
(96751, 'https://ror.org/02pjdv450', 'en', 1, 'https://ror.org/02pjdv450 Florida Museum of Natural History'),
(96752, 'https://ror.org/02wddde16', 'en', 1, 'https://ror.org/02wddde16 Distributed System of Scientific Collections'),
(96753, 'https://ror.org/02dj1mv43', 'en', 1, 'https://ror.org/02dj1mv43 Saudi Standards, Metrology and Quality Organization Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© Ł„Ł„Ł…ŁˆŲ§ŲµŁŲ§ŲŖ ŁˆŲ§Ł„Ł…Ł‚Ų§ŁŠŁŠŲ³ ŁˆŲ§Ł„Ų¬ŁˆŲÆŲ©'),
(96754, 'https://ror.org/04wedba92', 'no_lang_code', 1, 'https://ror.org/04wedba92 Shell (United States)'),
(96755, 'https://ror.org/03z2x5890', 'en', 1, 'https://ror.org/03z2x5890 CNIB Foundation Canadian National Institute for the Blind Fondation INCA Institut National Canadien des Aveugles'),
(96756, 'https://ror.org/02ya5n776', 'no_lang_code', 1, 'https://ror.org/02ya5n776 Technicolor (France)'),
(96757, 'https://ror.org/03mpd4h52', 'en', 1, 'https://ror.org/03mpd4h52 North Carolina State Climate Office'),
(96758, 'https://ror.org/05r2q4835', 'en', 1, 'https://ror.org/05r2q4835 Chengdu Fine Optical Engineering Research Center ęˆéƒ½ē²¾åÆ†å…‰å­¦å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(96759, 'https://ror.org/0234bnr88', 'sv', 1, 'https://ror.org/0234bnr88 Station LinnƩ'),
(96760, 'https://ror.org/04btem923', 'en', 1, 'https://ror.org/04btem923 Measurement Standards Section'),
(96761, 'https://ror.org/05j96kg65', 'en', 1, 'https://ror.org/05j96kg65 Janeway Children''s Health and Rehabilitation Centre'),
(96762, 'https://ror.org/01mq1e256', 'fr', 1, 'https://ror.org/01mq1e256 Laboratoire de sociologie des Territoires, du travail, des âges et de la santé'),
(96763, 'https://ror.org/02d5zdh33', 'en', 1, 'https://ror.org/02d5zdh33 Utah Agricultural Experiment Station'),
(96764, 'https://ror.org/00fe1xp94', 'en', 1, 'https://ror.org/00fe1xp94 Alfred State College'),
(96765, 'https://ror.org/03p3e4237', 'no_lang_code', 1, 'https://ror.org/03p3e4237 Silence Therapeutics (United Kingdom)'),
(96766, 'https://ror.org/00z8erc20', 'de', 1, 'https://ror.org/00z8erc20 Institut für soziale Gegenwartsfragen, Stuttgart, e.V.'),
(96767, 'https://ror.org/04r17kf39', 'en', 1, 'https://ror.org/04r17kf39 New York State College of Veterinary Medicine'),
(96768, 'https://ror.org/03hrye043', 'en', 1, 'https://ror.org/03hrye043 Herkimer College'),
(96769, 'https://ror.org/03rve6f96', 'en', 1, 'https://ror.org/03rve6f96 LS Cable & System LS Cable & System (South Korea) LS Cable Ltd. LSģ „ģ„ '),
(96770, 'https://ror.org/00e59cf80', 'es', 1, 'https://ror.org/00e59cf80 Instituto Tecnológico Superior de Naranjos'),
(96771, 'https://ror.org/03qan4b12', 'es', 1, 'https://ror.org/03qan4b12 Centro Científico Tecnológico - La Plata'),
(96772, 'https://ror.org/031m8s392', 'en', 1, 'https://ror.org/031m8s392 New York Sea Grant'),
(96773, 'https://ror.org/02n1c7856', 'en', 1, 'https://ror.org/02n1c7856 New York State College of Ceramics'),
(96774, 'https://ror.org/010j2gw05', 'fr', 1, 'https://ror.org/010j2gw05 CEA Paris-Saclay - Etablissement de Fontenay-aux-roses'),
(96775, 'https://ror.org/05r332y60', 'fr', 1, 'https://ror.org/05r332y60 Institut des Sciences des Plantes de Montpellier Institute for Plant Sciences of Montpellier'),
(96776, 'https://ror.org/02egcpy68', 'en', 1, 'https://ror.org/02egcpy68 Indian Institute of Management Ahmedabad इंऔियन ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤®ą„…ą¤Øą„‡ą¤œą¤®ą„‡ą¤Øą„ą¤Ÿ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø આઇ.આઇ.ąŖąŖ®. અમદાવાદ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ ą®…ą®•ą®®ą®¤ą®¾ą®Ŗą®¾ą®¤ąÆ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ą“¾ą“Øąµ‡ą“œąµą“®ąµ†ą“Øąµą“±ąµ'),
(96777, 'https://ror.org/02d31v873', 'es', 1, 'https://ror.org/02d31v873 Unidad AcadƩmica del Norte del Estado de Nayarit'),
(96778, 'https://ror.org/03qhewz33', 'en', 1, 'https://ror.org/03qhewz33 Kennedy Memorial Trust'),
(96779, 'https://ror.org/03jwrn541', 'en', 1, 'https://ror.org/03jwrn541 Fashion Institute of Technology'),
(96780, 'https://ror.org/0067dvq63', 'en', 1, 'https://ror.org/0067dvq63 Government of New South Wales'),
(96781, 'https://ror.org/04jzps455', 'en', 1, 'https://ror.org/04jzps455 Structural Genomics Consortium'),
(96782, 'https://ror.org/05g16vg65', 'en', 1, 'https://ror.org/05g16vg65 Rare Disease Foundation'),
(96783, 'https://ror.org/03dp8bn13', 'en', 1, 'https://ror.org/03dp8bn13 Kingsbrook Jewish Medical Center'),
(96784, 'https://ror.org/04pcmb734', 'en', 1, 'https://ror.org/04pcmb734 Mildred Elley College'),
(96785, 'https://ror.org/054b22910', 'en', 1, 'https://ror.org/054b22910 EuroMov Digital Health in Motion'),
(96786, 'https://ror.org/02w7rbf39', 'en', 1, 'https://ror.org/02w7rbf39 Chr. Michelsen Institute'),
(96787, 'https://ror.org/011aa4g29', 'en', 1, 'https://ror.org/011aa4g29 Sami Shamoon College of Engineering המכללה ×”××§×“×ž×™×Ŗ להנדהה ×¢"ש ×”Öø×žÖ“×™ שַמְעוּן'),
(96788, 'https://ror.org/03c59nw07', 'en', 1, 'https://ror.org/03c59nw07 Institute of Physics'),
(96789, 'https://ror.org/04m15mz97', 'en', 0, 'https://ror.org/04m15mz97 National Labor College'),
(96790, 'https://ror.org/00ad27c73', 'en', 1, 'https://ror.org/00ad27c73 A. Alikhanyan National Laboratory Ō±. Ō». Ō±Õ¬Õ«Õ­Õ”Õ¶ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ Õ¬Õ”Õ¢ÕøÖ€Õ”ÕæÕøÖ€Õ«Õ”'),
(96791, 'https://ror.org/00scwqd12', 'en', 1, 'https://ror.org/00scwqd12 Missouri University of Science and Technology UniversitƩ du missouri-columbia de science et technologie'),
(96792, 'https://ror.org/04eq71r04', 'pt', 1, 'https://ror.org/04eq71r04 Instituto Federal Farroupilha Instituto Federal de Educação, Ciência e Tecnologia Farroupilha'),
(96793, 'https://ror.org/00gg5zj35', 'en', 1, 'https://ror.org/00gg5zj35 PLA Rocket Force University of Engineering 中国人民解放军火箭军巄程大学'),
(96794, 'https://ror.org/03vncyz18', 'es', 1, 'https://ror.org/03vncyz18 Universidad Tecnológica del Norte de Aguascalientes'),
(96795, 'https://ror.org/044s61914', 'fr', 1, 'https://ror.org/044s61914 Centre Hospitalier Universitaire de LiĆØge'),
(96796, 'https://ror.org/05586es19', 'en', 1, 'https://ror.org/05586es19 Khwaja Yunus Ali Medical College ą¦–ą¦¾ą¦œą¦¾ ইউনুস আলী মেঔিকেল ą¦•ą¦²ą§‡ą¦œ');
INSERT INTO `rors` VALUES
(96797, 'https://ror.org/014h2x849', 'en', 1, 'https://ror.org/014h2x849 Anahuac Mayab University Universidad AnƔhuac Mayab'),
(96798, 'https://ror.org/05qqb8y62', 'es', 1, 'https://ror.org/05qqb8y62 Instituto Tecnológico Superior del Occidente del Estado de Hidalgo'),
(96799, 'https://ror.org/05fwzbv61', 'id', 1, 'https://ror.org/05fwzbv61 Yayasan Insanulhaq Cidadungu'),
(96800, 'https://ror.org/01411sx56', 'no_lang_code', 1, 'https://ror.org/01411sx56 Johnson Matthey (United Kingdom)'),
(96801, 'https://ror.org/02cwzx487', 'en', 1, 'https://ror.org/02cwzx487 Wild Animal Initiative'),
(96802, 'https://ror.org/04hjzsd20', 'no_lang_code', 1, 'https://ror.org/04hjzsd20 Sekisui XenoTech (United States)'),
(96803, 'https://ror.org/03psxy088', 'en', 1, 'https://ror.org/03psxy088 Monroe Community College'),
(96804, 'https://ror.org/057skhv53', 'no_lang_code', 1, 'https://ror.org/057skhv53 Northumbrian Water Group (United Kingdom)'),
(96805, 'https://ror.org/00637yt37', 'en', 1, 'https://ror.org/00637yt37 Niagara County Community College'),
(96806, 'https://ror.org/05frk8994', 'en', 1, 'https://ror.org/05frk8994 Initial MAnagement and prevention of acute orGan failures IN critically ill patiEnts'),
(96807, 'https://ror.org/00a9eka65', 'en', 1, 'https://ror.org/00a9eka65 Fan va Texnologiyalar universiteti University of Science and Technologies'),
(96808, 'https://ror.org/02q398w70', 'fr', 1, 'https://ror.org/02q398w70 DGA Techniques aƩrospatiales'),
(96809, 'https://ror.org/00m2zh467', 'no_lang_code', 1, 'https://ror.org/00m2zh467 arXiv'),
(96810, 'https://ror.org/03gx9a140', 'en', 1, 'https://ror.org/03gx9a140 Guangxi Research Institute of Chemical Industry å¹æč„æåŒ–å·„ē ”ē©¶é™¢'),
(96811, 'https://ror.org/04x7ec535', 'fr', 1, 'https://ror.org/04x7ec535 BioCampus Montpellier'),
(96812, 'https://ror.org/059b5pb30', 'en', 1, 'https://ror.org/059b5pb30 Konan University ē”²å—å¤§å­¦'),
(96813, 'https://ror.org/03rn0z073', 'en', 1, 'https://ror.org/03rn0z073 Ministry of Public Health ąøąø£ąø°ąø—ąø£ąø§ąø‡ąøŖąø²ąø˜ąø²ąø£ąø“ąøŖąøøąø‚'),
(96814, 'https://ror.org/048eqtw54', 'en', 1, 'https://ror.org/048eqtw54 Wales Institute of Social and Economic Research, Data and Methods'),
(96815, 'https://ror.org/023z8b445', 'en', 1, 'https://ror.org/023z8b445 Association for Cancer Surgery'),
(96816, 'https://ror.org/04chrp450', 'en', 1, 'https://ror.org/04chrp450 Nagoya University 名古屋大学'),
(96817, 'https://ror.org/00mgfk810', 'en', 1, 'https://ror.org/00mgfk810 The Navigation Fund'),
(96818, 'https://ror.org/01fw8ag12', 'en', 1, 'https://ror.org/01fw8ag12 SUNY Adirondack'),
(96819, 'https://ror.org/04gcfqs37', 'en', 1, 'https://ror.org/04gcfqs37 National Highway Traffic Safety Administration'),
(96820, 'https://ror.org/0265w5591', 'en', 1, 'https://ror.org/0265w5591 IBM Research - Thomas J. Watson Research Center'),
(96821, 'https://ror.org/025q8p570', 'en', 1, 'https://ror.org/025q8p570 The Kericho National Polytechnic'),
(96822, 'https://ror.org/058cb6311', 'en', 1, 'https://ror.org/058cb6311 The Charitable Foundation "BELA. Butterfly Children" Š‘Š»Š°Š³Š¾Ń‚Š²Š¾Ń€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ фонГ «БЭЛА. Дети-бабочки»'),
(96823, 'https://ror.org/01eas9a07', 'en', 1, 'https://ror.org/01eas9a07 Le Centre d’innovation et de recherche The Sense The Sense Innovation and Research Center'),
(96824, 'https://ror.org/01ar2dh82', 'en', 1, 'https://ror.org/01ar2dh82 Byte Road Byte Road (Portugal)'),
(96825, 'https://ror.org/01fe8k477', 'fr', 0, 'https://ror.org/01fe8k477 Laboratoire Lorrain de Sciences Sociales'),
(96826, 'https://ror.org/03qgzzb04', 'no_lang_code', 0, 'https://ror.org/03qgzzb04 Telefonica Research and Development Telefónica Investigación y Desarrollo'),
(96827, 'https://ror.org/03xx09h51', 'en', 1, 'https://ror.org/03xx09h51 Ministry of Commerce, Industry and Cooperatives'),
(96828, 'https://ror.org/01a2m8x11', 'en', 1, 'https://ror.org/01a2m8x11 Cayuga Community College'),
(96829, 'https://ror.org/0387w4y93', 'fr', 1, 'https://ror.org/0387w4y93 Childhood genetic diseases laboratory Maladies gĆ©nĆ©tiques d’expression pĆ©diatrique'),
(96830, 'https://ror.org/036wt8y39', 'en', 1, 'https://ror.org/036wt8y39 Hudson Valley Community College'),
(96831, 'https://ror.org/01m1tbs81', 'fr', 1, 'https://ror.org/01m1tbs81 Centre d''Etudes et de Recherches Comparatives Constitutionnelles et Politiques'),
(96832, 'https://ror.org/03k51ct10', 'en', 1, 'https://ror.org/03k51ct10 UNESCO Institute for Lifelong Learning'),
(96833, 'https://ror.org/019apvn83', 'en', 1, 'https://ror.org/019apvn83 Ahmadu Bello University YunifĆ”sĆ­tƬ ƀmį»Ģdù BĆ©llò'),
(96834, 'https://ror.org/04m69ya83', 'fr', 1, 'https://ror.org/04m69ya83 Théâtre antique : textes, histoire et réception'),
(96835, 'https://ror.org/01beh4y53', 'en', 0, 'https://ror.org/01beh4y53 Franklin Resources Franklin Resources (United States)'),
(96836, 'https://ror.org/01qhj1g70', 'no_lang_code', 1, 'https://ror.org/01qhj1g70 Daiichi Sankyo (Germany) ē¬¬äø€äø‰å…±ę Ŗå¼ä¼šē¤¾'),
(96837, 'https://ror.org/01dmkgv38', 'no', 1, 'https://ror.org/01dmkgv38 NODA Nordnorsk Design- og Arkitektursenter'),
(96838, 'https://ror.org/053j19t39', 'en', 1, 'https://ror.org/053j19t39 Genesee Community College'),
(96839, 'https://ror.org/02fjgwn28', 'es', 1, 'https://ror.org/02fjgwn28 Escuela Normal Rural "Justo Sierra MƩndez"'),
(96840, 'https://ror.org/04mxhn923', 'en', 1, 'https://ror.org/04mxhn923 Kansas Geological Survey'),
(96841, 'https://ror.org/008stv805', 'en', 1, 'https://ror.org/008stv805 University of the South Pacific'),
(96842, 'https://ror.org/02regkz96', 'en', 1, 'https://ror.org/02regkz96 Guangdong Teachers College of Foreign Language and Arts å¹æäøœēœå¤–čÆ­č‰ŗęœÆčŒäøšå­¦é™¢'),
(96843, 'https://ror.org/00yf0rv20', 'fr', 1, 'https://ror.org/00yf0rv20 Centre de Recherche en Technologies Agro-Alimentaires'),
(96844, 'https://ror.org/015qxt173', 'en', 1, 'https://ror.org/015qxt173 Lullaby Trust'),
(96845, 'https://ror.org/051arnj27', 'no_lang_code', 1, 'https://ror.org/051arnj27 Teledyne FLIR (Belgium)'),
(96846, 'https://ror.org/03h3jqn23', 'en', 1, 'https://ror.org/03h3jqn23 European Space Research and Technology Centre'),
(96847, 'https://ror.org/05b69xa56', 'en', 1, 'https://ror.org/05b69xa56 MIT Art, Design and Technology University'),
(96848, 'https://ror.org/03v9efr22', 'en', 1, 'https://ror.org/03v9efr22 The Christie NHS Foundation Trust'),
(96849, 'https://ror.org/00ma0mg56', 'en', 1, 'https://ror.org/00ma0mg56 NHS Grampian'),
(96850, 'https://ror.org/04qp98b92', 'es', 1, 'https://ror.org/04qp98b92 Instituto Regional De Enfermedades NeoplƔsicas Del Centro Iren Centro'),
(96851, 'https://ror.org/05jytbt55', 'en', 1, 'https://ror.org/05jytbt55 National Institute of Metrology Myanmar į€į€­į€€į€»į€…į€½į€¬į€į€­į€Æį€„į€ŗį€øį€į€¬į€į€¼į€„į€ŗį€øį€”į€Šį€ŗį€øį€•į€Šį€¬į€Œį€¬į€”'),
(96852, 'https://ror.org/025rgte66', 'en', 1, 'https://ror.org/025rgte66 NSW Office for Learning and Teaching'),
(96853, 'https://ror.org/0014xh077', 'fr', 1, 'https://ror.org/0014xh077 Centre d’histoire des sociĆ©tĆ©s MĆ©diĆ©vales et Modernes'),
(96854, 'https://ror.org/05hessd06', 'no_lang_code', 1, 'https://ror.org/05hessd06 Sekisui Chemical (Japan) ē©ę°“åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(96855, 'https://ror.org/01f8fjy92', 'pt', 1, 'https://ror.org/01f8fjy92 Guarapari City Hall Prefeitura Municipal de Guarapari'),
(96856, 'https://ror.org/02h21fy63', 'en', 1, 'https://ror.org/02h21fy63 AcadƩmie suisse des sciences techniques Accademia svizzera delle scienze tecniche Schweizerische Akademie der Technischen Wissenschaften Swiss Academy of Engineering Sciences SATW'),
(96857, 'https://ror.org/0576q1t15', 'es', 1, 'https://ror.org/0576q1t15 Universidad Autónoma de Nayarit'),
(96858, 'https://ror.org/03tq3c028', 'en', 1, 'https://ror.org/03tq3c028 European Regional Centre for Ecohydrology'),
(96859, 'https://ror.org/00dds0202', 'es', 1, 'https://ror.org/00dds0202 Instituto Tecnológico Superior de Cananea'),
(96860, 'https://ror.org/03j4z4422', 'es', 1, 'https://ror.org/03j4z4422 Universidad Nacional "Siglo XX"'),
(96861, 'https://ror.org/001nw2d36', 'en', 1, 'https://ror.org/001nw2d36 Chandpur Science and Technology University চাঁদপুর ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(96862, 'https://ror.org/014q9ch68', 'en', 1, 'https://ror.org/014q9ch68 Lyceum of the Philippines University – Batangas'),
(96863, 'https://ror.org/02x722129', 'en', 1, 'https://ror.org/02x722129 Central Geological Laboratory of Mongolia'),
(96864, 'https://ror.org/046ee4w71', 'es', 1, 'https://ror.org/046ee4w71 Instituto Tecnologico de Delicias'),
(96865, 'https://ror.org/039c93x30', 'en', 0, 'https://ror.org/039c93x30 Bureau of Public Roads'),
(96866, 'https://ror.org/05bsra506', 'en', 1, 'https://ror.org/05bsra506 Glasgow Childrens Hospital Charity'),
(96867, 'https://ror.org/01cfkyz79', 'en', 1, 'https://ror.org/01cfkyz79 Department of Science Service ąøąø£ąø”ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąøšąø£ąø“ąøąø²ąø£'),
(96868, 'https://ror.org/05vrs0r17', 'en', 1, 'https://ror.org/05vrs0r17 SUNY Fredonia'),
(96869, 'https://ror.org/04rre2k21', 'en', 1, 'https://ror.org/04rre2k21 Tommy''s'),
(96870, 'https://ror.org/01z485314', 'fr', 1, 'https://ror.org/01z485314 UMR Espace-Dev'),
(96871, 'https://ror.org/05r81yb60', 'en', 1, 'https://ror.org/05r81yb60 Jan Biziel University Hospital No. 2 in Bydgoszcz Szpital Uniwersytecki nr 2 im. dr. Jana Biziela w Bydgoszczy'),
(96872, 'https://ror.org/028tfkh72', 'en', 1, 'https://ror.org/028tfkh72 Oregon Department of Transportation'),
(96873, 'https://ror.org/00m0asz87', 'id', 1, 'https://ror.org/00m0asz87 Politeknik Negeri Batam'),
(96874, 'https://ror.org/022bqby64', 'en', 1, 'https://ror.org/022bqby64 Chongqing Zhijian Life Technology Co., Ltd (China) é‡åŗ†ēŸ„č§ē”Ÿå‘½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(96875, 'https://ror.org/0041qmd21', 'en', 1, 'https://ror.org/0041qmd21 SUNY Downstate Health Sciences University'),
(96876, 'https://ror.org/02zrwga81', 'en', 1, 'https://ror.org/02zrwga81 Nekton'),
(96877, 'https://ror.org/05k0hd440', 'no_lang_code', 1, 'https://ror.org/05k0hd440 Sonova (United States)'),
(96878, 'https://ror.org/01bg6x409', 'en', 1, 'https://ror.org/01bg6x409 Canadian Scientific Submersible Facility'),
(96879, 'https://ror.org/05kf27764', 'en', 1, 'https://ror.org/05kf27764 Anzac Research Institute'),
(96880, 'https://ror.org/01bgbk171', 'en', 1, 'https://ror.org/01bgbk171 Northern Health and Social Care Trust'),
(96881, 'https://ror.org/05v0vas53', 'en', 1, 'https://ror.org/05v0vas53 Nassau Community College'),
(96882, 'https://ror.org/034rkw812', 'no_lang_code', 1, 'https://ror.org/034rkw812 BioIVT BioIVT (United States)'),
(96883, 'https://ror.org/00z0vcr53', 'en', 1, 'https://ror.org/00z0vcr53 Columbia-Greene Community College'),
(96884, 'https://ror.org/00k9hfk65', 'en', 1, 'https://ror.org/00k9hfk65 American Society of Neuroradiology'),
(96885, 'https://ror.org/02fty0943', 'en', 1, 'https://ror.org/02fty0943 Great Lakes Indian Fish & Wildlife Commission'),
(96886, 'https://ror.org/02kj53224', 'es', 1, 'https://ror.org/02kj53224 Tecnológico Nacional de México Campus Ciudad SerdÔn'),
(96887, 'https://ror.org/045y2nc52', 'es', 1, 'https://ror.org/045y2nc52 Centro de Información de Medicamentos de la Universidad Nacional'),
(96888, 'https://ror.org/03zbydc22', 'en', 1, 'https://ror.org/03zbydc22 North Carolina School of Science and Mathematics'),
(96889, 'https://ror.org/05vn9ks38', 'en', 1, 'https://ror.org/05vn9ks38 Meningitis Now'),
(96890, 'https://ror.org/05957a955', 'en', 1, 'https://ror.org/05957a955 KS Rangasamy College of Arts and Science கே ą®Žą®øąÆ ą®°ą®™ąÆą®•ą®šą®¾ą®®ą®æ ą®•ą®²ąÆˆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(96891, 'https://ror.org/027rr8795', 'no_lang_code', 1, 'https://ror.org/027rr8795 Sonova (Switzerland)'),
(96892, 'https://ror.org/019kjfs29', 'es', 1, 'https://ror.org/019kjfs29 Instituto Tecnológico Superior de Calkiní'),
(96893, 'https://ror.org/05ve6g218', 'no_lang_code', 1, 'https://ror.org/05ve6g218 China National Building Materials Group (China)'),
(96894, 'https://ror.org/02ck2yw57', 'en', 0, 'https://ror.org/02ck2yw57 Institute of Geology and Mineral Exploration'),
(96895, 'https://ror.org/00j52pq61', 'en', 1, 'https://ror.org/00j52pq61 New York State College of Agriculture & Life Sciences'),
(96896, 'https://ror.org/014t9mt17', 'no_lang_code', 1, 'https://ror.org/014t9mt17 IMRA America IMRA America (United States) IMRA America, Inc.'),
(96897, 'https://ror.org/033xr5946', 'es', 1, 'https://ror.org/033xr5946 Tecnológico Nacional de México Campus Ciudad Valles'),
(96898, 'https://ror.org/058e0mz85', 'en', 1, 'https://ror.org/058e0mz85 Habiganj Agricultural University ą¦¹ą¦¬ą¦æą¦—ą¦žą§ą¦œ ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(96899, 'https://ror.org/02g1jdz81', 'en', 1, 'https://ror.org/02g1jdz81 Al Hikma University'),
(96900, 'https://ror.org/04ka0vh05', 'es', 1, 'https://ror.org/04ka0vh05 Institute of Astrophysics of Andalusia Instituto de AstrofĆ­sica de AndalucĆ­a'),
(96901, 'https://ror.org/05a353079', 'en', 1, 'https://ror.org/05a353079 Centre Hospitalier Universitaire Vaudois University Hospital of Lausanne'),
(96902, 'https://ror.org/01h6mr398', 'en', 1, 'https://ror.org/01h6mr398 Sociological Scientific Society of Serbia SocioloŔko naučno druŔtvo Srbije'),
(96903, 'https://ror.org/04a31ep84', 'en', 1, 'https://ror.org/04a31ep84 Society of Swedish Literature in Finland Svenska LitteratursƤllskapet i Finland'),
(96904, 'https://ror.org/00j8x3x80', 'en', 1, 'https://ror.org/00j8x3x80 FSU Coastal and Marine Laboratory'),
(96905, 'https://ror.org/02pjx9m11', 'en', 1, 'https://ror.org/02pjx9m11 Universitatea de Științele Vieții ā€œRegele Mihai Iā€ din Timișoara Univesity of Life Science "King Mihai I" from Timisoara'),
(96906, 'https://ror.org/03prym056', 'no_lang_code', 1, 'https://ror.org/03prym056 Almac (United Kingdom)'),
(96907, 'https://ror.org/02gz4qm35', 'en', 1, 'https://ror.org/02gz4qm35 Thames Valley Air Ambulance'),
(96908, 'https://ror.org/01k2qqb14', 'en', 0, 'https://ror.org/01k2qqb14 Toko University ēØ»ę±Ÿē§‘ęŠ€ęšØē®”ē†å­øé™¢'),
(96909, 'https://ror.org/05pys8802', 'en', 1, 'https://ror.org/05pys8802 Pain Labs'),
(96910, 'https://ror.org/05d362832', 'fr', 1, 'https://ror.org/05d362832 Laboratoire de Chimie Bio-inspirĆ©e et d’Innovations Ecologiques'),
(96911, 'https://ror.org/03jrr8f73', 'en', 1, 'https://ror.org/03jrr8f73 Stiftung Synapsis Synapsis Foundation'),
(96912, 'https://ror.org/01nyadv46', 'en', 1, 'https://ror.org/01nyadv46 New York State Museum'),
(96913, 'https://ror.org/056tn4839', 'en', 1, 'https://ror.org/056tn4839 Sogang University ģ„œź°•ėŒ€ķ•™źµ'),
(96914, 'https://ror.org/0583nw070', 'en', 1, 'https://ror.org/0583nw070 Cure Parkinson''s Trust'),
(96915, 'https://ror.org/006xg2x43', 'it', 1, 'https://ror.org/006xg2x43 Liceo scientifico statale Ulisse Dini Ulisse Dini Scientific High School'),
(96916, 'https://ror.org/027xab135', 'no_lang_code', 0, 'https://ror.org/027xab135 Low Carbon Living CRC (Australia)'),
(96917, 'https://ror.org/05a4kwh70', 'id', 1, 'https://ror.org/05a4kwh70 Universitas Islam Negeri Syekh Ali Hasan Ahmad Addary Padangsidimpuan'),
(96918, 'https://ror.org/05h1c9n12', 'fr', 1, 'https://ror.org/05h1c9n12 Laboratoire de droit privƩ'),
(96919, 'https://ror.org/007c4ae37', 'en', 1, 'https://ror.org/007c4ae37 Center for Community Progress'),
(96920, 'https://ror.org/05b955872', 'en', 1, 'https://ror.org/05b955872 Nwafor Orizu College of Education'),
(96921, 'https://ror.org/0508vt965', 'pt', 1, 'https://ror.org/0508vt965 Madan Parque'),
(96922, 'https://ror.org/044khe761', 'pt', 1, 'https://ror.org/044khe761 Santa Marcelina Colégio São Paulo'),
(96923, 'https://ror.org/02dzza612', 'en', 1, 'https://ror.org/02dzza612 Punta Galeta Marine Laboratory'),
(96924, 'https://ror.org/01ktn5v16', 'en', 1, 'https://ror.org/01ktn5v16 Al-Rayan University لجامعة Ų§Ł„Ų±ŁŠŲ§Ł†'),
(96925, 'https://ror.org/03d0b5142', 'fr', 1, 'https://ror.org/03d0b5142 Education, Discours et Apprentissages'),
(96926, 'https://ror.org/01g119h54', 'pt', 1, 'https://ror.org/01g119h54 Lógica EM SA Lógica EM SA (Portugal)'),
(96927, 'https://ror.org/04z2nq561', 'no_lang_code', 1, 'https://ror.org/04z2nq561 Qilimanjaro Quantum Tech Qilimanjaro Quantum Tech (Spain)'),
(96928, 'https://ror.org/03h3j0z67', 'fr', 1, 'https://ror.org/03h3j0z67 Chimie mƩdicinale et recherche translationnelle'),
(96929, 'https://ror.org/01gtsrs29', 'fr', 1, 'https://ror.org/01gtsrs29 Ɖcole de l''air et de l''espace'),
(96930, 'https://ror.org/058qdtv35', 'fr', 1, 'https://ror.org/058qdtv35 Centre de recherches en histoire internationale et atlantique'),
(96931, 'https://ror.org/03ngg2631', 'en', 1, 'https://ror.org/03ngg2631 Ministry of Defence of the Russian Federation ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ обороны Российской ФеГерации'),
(96932, 'https://ror.org/01f78dm33', 'en', 1, 'https://ror.org/01f78dm33 Federal College of Wildlife Management'),
(96933, 'https://ror.org/05ddxrm33', 'fr', 1, 'https://ror.org/05ddxrm33 FƩdƩration de Chimie de l''UniversitƩ Paris'),
(96934, 'https://ror.org/005xw4w62', 'en', 1, 'https://ror.org/005xw4w62 Mātai Medical Research Institute Te Mata Mātai Hura'),
(96935, 'https://ror.org/0181xaa49', 'pt', 1, 'https://ror.org/0181xaa49 Polícia de Segurança Pública'),
(96936, 'https://ror.org/0026h6z67', 'pt', 1, 'https://ror.org/0026h6z67 Instituto de Estudos Sociais e Económicos'),
(96937, 'https://ror.org/05nfk7108', 'en', 0, 'https://ror.org/05nfk7108 Deutsches Humangenom-PhƤnomarchiv German Human Genome-Phenome Archive'),
(96938, 'https://ror.org/01bc9gv98', 'pt', 1, 'https://ror.org/01bc9gv98 Jardim Zoológico'),
(96939, 'https://ror.org/00h438112', 'en', 1, 'https://ror.org/00h438112 African Reproducibility Network'),
(96940, 'https://ror.org/03f0sw771', 'en', 1, 'https://ror.org/03f0sw771 PRX Research'),
(96941, 'https://ror.org/0549ke970', 'en', 1, 'https://ror.org/0549ke970 Software Engineering Institute of Guangzhou å¹æå·žč½Æä»¶å­¦é™¢'),
(96942, 'https://ror.org/02qt18q04', 'en', 1, 'https://ror.org/02qt18q04 Cross-Border Institute'),
(96943, 'https://ror.org/02der9h97', 'en', 1, 'https://ror.org/02der9h97 Universidad de Connecticut University of Connecticut UniversitƩ du connecticut'),
(96944, 'https://ror.org/02d3n7h84', 'en', 1, 'https://ror.org/02d3n7h84 Czech Academy of Sciences, Institute of Geonics Ústav geoniky AV ČR Ústav geoniky AV ČR, v. v. i. Ústav geoniky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(96945, 'https://ror.org/0180r7w69', 'fr', 1, 'https://ror.org/0180r7w69 Centre de Robotique Mines Paris, PSL University, Centre for Robotics (CAOR) Mines Paris, UniversitƩ PSL, Centre de Robotique (CAOR)'),
(96946, 'https://ror.org/05gfs4w12', 'en', 1, 'https://ror.org/05gfs4w12 Pharma Health Science College'),
(96947, 'https://ror.org/00wffwv55', 'pt', 1, 'https://ror.org/00wffwv55 Laboratório Associado CICECO – Instituto de Materiais de Aveiro'),
(96948, 'https://ror.org/03fbhw139', 'pt', 1, 'https://ror.org/03fbhw139 Associação Para as Ciências do Mar'),
(96949, 'https://ror.org/016jp5b92', 'en', 1, 'https://ror.org/016jp5b92 Tanta University UniversitĆ© de Tanta Ų¬Ų§Ł…Ų¹Ų© طنطا'),
(96950, 'https://ror.org/03emnsk32', 'pt', 1, 'https://ror.org/03emnsk32 Institute of Earth Sciences Instituto de CiĆŖncias da Terra'),
(96951, 'https://ror.org/03w75z957', 'es', 1, 'https://ror.org/03w75z957 Leon Technological University Universidad Tecnológica de León'),
(96952, 'https://ror.org/04fysrj11', 'en', 1, 'https://ror.org/04fysrj11 National Fertilizer Corporation National Fertilizer Corporation (Pakistan) National Fertilizer Corporation of Pakistan (Pvt) Ltd Ł†ŪŒŲ“Ł†Ł„ ŁŲ±Ł¹ŪŒŁ„Ų§Ų¦Ų²Ų± Ś©Ų§Ų±Ł¾ŁˆŲ±ŪŒŲ“Ł† پاکستان'),
(96953, 'https://ror.org/00bc21d89', 'pt', 1, 'https://ror.org/00bc21d89 Amgen Biofarmaceutica Lda Amgen Biofarmaceutica Lda (Portugal) Amgen Biopharmaceutical'),
(96954, 'https://ror.org/05mzta732', 'en', 1, 'https://ror.org/05mzta732 Islamic Azad University, Ashkezar دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد اؓکذر'),
(96955, 'https://ror.org/02ycfa514', 'en', 1, 'https://ror.org/02ycfa514 California Science Center'),
(96956, 'https://ror.org/02nfy3535', 'en', 1, 'https://ror.org/02nfy3535 Munich Center for Machine Learning'),
(96957, 'https://ror.org/03exnf371', 'en', 1, 'https://ror.org/03exnf371 Smithsonian Center for Folklife and Cultural Heritage'),
(96958, 'https://ror.org/0151c4n05', 'pt', 1, 'https://ror.org/0151c4n05 Tribunal de Contas'),
(96959, 'https://ror.org/02qjcga68', 'en', 1, 'https://ror.org/02qjcga68 Avesta Battery & Energy Engineering Avesta Battery & Energy Engineering (Belgium)'),
(96960, 'https://ror.org/0310v3480', 'en', 0, 'https://ror.org/0310v3480 NFDI4Memory'),
(96961, 'https://ror.org/03wc8by49', 'en', 1, 'https://ror.org/03wc8by49 Posit Software, PBC Posit Software, PBC (United States)'),
(96962, 'https://ror.org/03bh37h15', 'pt', 1, 'https://ror.org/03bh37h15 Sociedade Portuguesa para o Estudo das Aves'),
(96963, 'https://ror.org/01a099706', 'en', 1, 'https://ror.org/01a099706 Shantou University 汕夓大学'),
(96964, 'https://ror.org/01df79331', 'fr', 1, 'https://ror.org/01df79331 Recherche clinique appliquƩe Ơ l''hƩmatologie'),
(96965, 'https://ror.org/02kyhnd71', 'pt', 1, 'https://ror.org/02kyhnd71 Museu Nacional de Etnologia'),
(96966, 'https://ror.org/019jb9m51', 'it', 1, 'https://ror.org/019jb9m51 Ospedale di Macerata'),
(96967, 'https://ror.org/05wrsh961', 'fr', 1, 'https://ror.org/05wrsh961 Dispositifs d''information et de communication à l''ère du numérique - Paris Ile-de-france'),
(96968, 'https://ror.org/0204y7905', 'pt', 1, 'https://ror.org/0204y7905 Academia Nacional de Belas Artes'),
(96969, 'https://ror.org/01hqyj078', 'en', 1, 'https://ror.org/01hqyj078 pyOpenSci'),
(96970, 'https://ror.org/04pv8zt35', 'en', 1, 'https://ror.org/04pv8zt35 Systems Plus College Foundation'),
(96971, 'https://ror.org/01za3ap29', 'en', 1, 'https://ror.org/01za3ap29 Smithsonian American Art Museum'),
(96972, 'https://ror.org/03jg13h58', 'en', 1, 'https://ror.org/03jg13h58 Modern University College Ų§Ł„Ł€ŁƒŁ„Ł€ŁŠŁ€Ų© Ų§Ł„Ł€Ų¹Ł€ŲµŁ€Ų±ŁŠŁ€Ų© Ų§Ł„Ł€Ų¬Ł€Ł€Ų§Ł…Ų¹Ł€ŁŠŁ€Ł€Ł€Ų©'),
(96973, 'https://ror.org/050y3ke75', 'en', 1, 'https://ror.org/050y3ke75 IFOAM Organics Europe'),
(96974, 'https://ror.org/03qqnc658', 'en', 1, 'https://ror.org/03qqnc658 Botanický Ćŗstav AV ČR Botanický Ćŗstav, v. v. i. Botanický Ćŗstav, veřejnĆ” výzkumnĆ” instituce Czech Academy of Sciences, Institute of Botany'),
(96975, 'https://ror.org/012kqkf58', 'de', 1, 'https://ror.org/012kqkf58 Robert Bosch Foundation Robert Bosch Stiftung'),
(96976, 'https://ror.org/04q7x1r70', 'en', 1, 'https://ror.org/04q7x1r70 Institute of Hydrology of the Slovak Academy of Sciences Ústav hydrológie Slovenskej akadémie vied'),
(96977, 'https://ror.org/02ke9c048', 'pt', 1, 'https://ror.org/02ke9c048 Governo da República Portuguesa Ministério do Mar'),
(96978, 'https://ror.org/00enhv193', 'en', 0, 'https://ror.org/00enhv193 NFDI4Ing National Research Data Infrastructure for Engineering Sciences Nationale Forschungsdateninfrastruktur für die Ingenieurwissenschaften'),
(96979, 'https://ror.org/01gbppd30', 'fr', 1, 'https://ror.org/01gbppd30 Dynamique des GƩnomes et Adaptation Microbienne Genome dynamics and microbial adaptation'),
(96980, 'https://ror.org/00wx1vg07', 'fr', 1, 'https://ror.org/00wx1vg07 Centre des Politiques de la Terre'),
(96981, 'https://ror.org/04b682n55', 'en', 1, 'https://ror.org/04b682n55 Ivy Enber Christian University'),
(96982, 'https://ror.org/04950b532', 'en', 1, 'https://ror.org/04950b532 NOAA National Marine Fisheries Service Office of Science and Technology'),
(96983, 'https://ror.org/00mwm0e05', 'es', 1, 'https://ror.org/00mwm0e05 Polytechnic University of Sinaloa Universidad PolitƩcnica de Sinaloa'),
(96984, 'https://ror.org/03bhwn395', 'pt', 1, 'https://ror.org/03bhwn395 Ministério Público'),
(96985, 'https://ror.org/05w7kec06', 'fr', 1, 'https://ror.org/05w7kec06 Interdisciplinary Laboratory for Applied Research in Health Economics Laboratoire Interdisciplinaire de Recherche AppliquƩe en Economie-Gestion et SantƩ'),
(96986, 'https://ror.org/03gvsr558', 'en', 1, 'https://ror.org/03gvsr558 Maqsut Narikbayev University'),
(96987, 'https://ror.org/04yd76m66', 'no_lang_code', 1, 'https://ror.org/04yd76m66 Faghihi Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ ŁŁ‚ŪŒŁ‡ŪŒ'),
(96988, 'https://ror.org/007yfgf06', 'en', 1, 'https://ror.org/007yfgf06 Laboratorios de isla Naos Naos Marine and Molecular Laboratories'),
(96989, 'https://ror.org/03jnmkq61', 'pt', 1, 'https://ror.org/03jnmkq61 Academia de Software Academia de Software (Portugal) Software Academy'),
(96990, 'https://ror.org/05e5kd476', 'de', 1, 'https://ror.org/05e5kd476 Technische Hochschule Ulm'),
(96991, 'https://ror.org/017fpfn86', 'en', 1, 'https://ror.org/017fpfn86 National Postal Museum'),
(96992, 'https://ror.org/03fxa4766', 'en', 1, 'https://ror.org/03fxa4766 Eidgenössisches Departement für auswärtige Angelegenheiten Federal Department of Foreign Affairs'),
(96993, 'https://ror.org/05j5esv78', 'pt', 1, 'https://ror.org/05j5esv78 Egas Moniz - Cooperativa de Ensino Superior Crl'),
(96994, 'https://ror.org/05ka4wq25', 'en', 1, 'https://ror.org/05ka4wq25 Basic Education College ŁƒŁ„ŁŠŲ© Ų§Ł„ŲŖŲ±ŲØŁŠŲ© Ų§Ł„Ų£Ų³Ų§Ų³ŁŠŲ©'),
(96995, 'https://ror.org/05cjf4t29', 'es', 1, 'https://ror.org/05cjf4t29 Universidad PolitƩcnica de Francisco I. Madero'),
(96996, 'https://ror.org/01p3rp369', 'pt', 1, 'https://ror.org/01p3rp369 Santa Marcelina Educação'),
(96997, 'https://ror.org/04ccm0n64', 'en', 1, 'https://ror.org/04ccm0n64 City Institute, Dalian University of Technology å¤§čæžē†å·„å¤§å­¦åŸŽåø‚å­¦é™¢'),
(96998, 'https://ror.org/04wh80b80', 'en', 1, 'https://ror.org/04wh80b80 Czech Academy of Sciences, Institute of Geology Geologický Ćŗstav AV ČR Geologický Ćŗstav AV ČR, v. v. i. Geologický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(96999, 'https://ror.org/03c3r2d17', 'en', 1, 'https://ror.org/03c3r2d17 Center for Astrophysics Harvard & Smithsonian'),
(97000, 'https://ror.org/05qj6w324', 'de', 1, 'https://ror.org/05qj6w324 German National Research Data Infrastructure Nationale Forschungsdateninfrastruktur'),
(97001, 'https://ror.org/059p3ae54', 'pt', 1, 'https://ror.org/059p3ae54 Estado-Maior da ForƧa AƩrea'),
(97002, 'https://ror.org/02sj0zy88', 'no_lang_code', 0, 'https://ror.org/02sj0zy88 SELEX Sistemi Integrati'),
(97003, 'https://ror.org/023ktxh49', 'en', 1, 'https://ror.org/023ktxh49 Waziri Umaru Federal Polytechnic, Birnin Kebbi'),
(97004, 'https://ror.org/04bspkv73', 'en', 1, 'https://ror.org/04bspkv73 Zhejiang Gongshang University Hangzhou College of Commerce ęµ™ę±Ÿå·„å•†å¤§å­¦ę­å·žå•†å­¦é™¢'),
(97005, 'https://ror.org/05mgwy297', 'en', 1, 'https://ror.org/05mgwy297 Smithsonian Libraries'),
(97006, 'https://ror.org/01vnkaz16', 'no_lang_code', 0, 'https://ror.org/01vnkaz16 NFDI4BIOIMAGE National Research Data Infrastructure for Microscopy, Biophotonics and Bioimage Analysis Nationale Forschungsdateninfrastruktur für Mikroskopie und Bildanalyse'),
(97007, 'https://ror.org/05r4atz68', 'en', 1, 'https://ror.org/05r4atz68 Engineering Biology Research Consortium'),
(97008, 'https://ror.org/002dmza47', 'en', 1, 'https://ror.org/002dmza47 Varastegan Institute for Medical Sciences مرکز Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų¹Ł„ŁˆŁ… پزؓکی ŁˆŲ§Ų±Ų³ŲŖŚÆŲ§Ł†'),
(97009, 'https://ror.org/04hnzva96', 'en', 1, 'https://ror.org/04hnzva96 Smithsonian Conservation Biology Institute'),
(97010, 'https://ror.org/01cvyp776', 'en', 1, 'https://ror.org/01cvyp776 Petroleum Training Institute'),
(97011, 'https://ror.org/02bmcpa10', 'fr', 1, 'https://ror.org/02bmcpa10 Bibliothèque Interuniversitaire de Santé'),
(97012, 'https://ror.org/018m4p414', 'pt', 1, 'https://ror.org/018m4p414 Instituto Mediterrâneo para a Agricultura Ambiente e Desenvolvimento'),
(97013, 'https://ror.org/04aqkwm14', 'no_lang_code', 0, 'https://ror.org/04aqkwm14 Selex ES (Italy)'),
(97014, 'https://ror.org/04mayb497', 'pt', 1, 'https://ror.org/04mayb497 Instituto Superior de Estudos Interculturais e Transdisciplinares de Almada'),
(97015, 'https://ror.org/04dy2xw62', 'no_lang_code', 0, 'https://ror.org/04dy2xw62 Text+'),
(97016, 'https://ror.org/05c2kyj22', 'fr', 1, 'https://ror.org/05c2kyj22 SantƩ, vulnƩrabilitƩs et relations de genre au Sud'),
(97017, 'https://ror.org/03y5vsd17', 'en', 1, 'https://ror.org/03y5vsd17 National Museum of African American History and Culture'),
(97018, 'https://ror.org/041ga1028', 'es', 1, 'https://ror.org/041ga1028 Universidad Tecnológica de Altamira, Tamaulipas'),
(97019, 'https://ror.org/020tty630', 'en', 0, 'https://ror.org/020tty630 KonsortSWD Konsortium für die Sozial-, Bildungs-, Verhaltens- und Wirtschaftswissenschaften'),
(97020, 'https://ror.org/01hcx6992', 'de', 1, 'https://ror.org/01hcx6992 Humboldt-UniversitƤt zu Berlin'),
(97021, 'https://ror.org/00sy0nx38', 'pt', 1, 'https://ror.org/00sy0nx38 Instituto Superior de Lisboa e Vale do Tejo'),
(97022, 'https://ror.org/03ahaae75', 'en', 1, 'https://ror.org/03ahaae75 PLA Rocket Force Research Institute 中国人民解放军火箭军研究院'),
(97023, 'https://ror.org/020wfrz93', 'en', 1, 'https://ror.org/020wfrz93 Foothills Medical Centre'),
(97024, 'https://ror.org/03bqnjp38', 'en', 1, 'https://ror.org/03bqnjp38 Guangzhou Huali College å¹æå·žåŽē«‹å­¦é™¢'),
(97025, 'https://ror.org/02xq3c453', 'en', 1, 'https://ror.org/02xq3c453 Smithsonian Latino Center'),
(97026, 'https://ror.org/03tm6pb36', 'en', 1, 'https://ror.org/03tm6pb36 Center for Jewish History'),
(97027, 'https://ror.org/00c47tk97', 'de', 1, 'https://ror.org/00c47tk97 Vereinigung der DenkmalfachƤmter in den LƤndern'),
(97028, 'https://ror.org/05ahyhp31', 'en', 1, 'https://ror.org/05ahyhp31 Holland Particle Therapy Center'),
(97029, 'https://ror.org/02tv1yf50', 'en', 1, 'https://ror.org/02tv1yf50 Czech Academy of Sciences, Institute of Mathematics Matematický Ćŗstav AV ČR Matematický Ćŗstav AV ČR, v. v. i. Matematický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(97030, 'https://ror.org/01vgwjr63', 'pt', 1, 'https://ror.org/01vgwjr63 Centro Internacional de MatemƔtica'),
(97031, 'https://ror.org/00drt4541', 'fr', 1, 'https://ror.org/00drt4541 Centre d''Investigation Clinique Saint-Louis'),
(97032, 'https://ror.org/057mq8856', 'en', 1, 'https://ror.org/057mq8856 National School of Nanoscience and Nanotechnology'),
(97033, 'https://ror.org/000xab928', 'pt', 1, 'https://ror.org/000xab928 Estado-Maior-General das ForƧas Armadas'),
(97034, 'https://ror.org/030qxym25', 'pt', 1, 'https://ror.org/030qxym25 Museu Nacional de História Natural e da Ciência'),
(97035, 'https://ror.org/03hq50145', 'pt', 1, 'https://ror.org/03hq50145 EDP University Universidade EDP'),
(97036, 'https://ror.org/034akh239', 'en', 1, 'https://ror.org/034akh239 Stem Cell Technology Research Center'),
(97037, 'https://ror.org/001jhv750', 'en', 0, 'https://ror.org/001jhv750 NFDI4Culture'),
(97038, 'https://ror.org/04sfkt825', 'pt', 1, 'https://ror.org/04sfkt825 Conselho Nacional de Educação'),
(97039, 'https://ror.org/04q8mtd88', 'pt', 1, 'https://ror.org/04q8mtd88 Instituto Superior de Tecnologias AvanƧadas do Porto'),
(97040, 'https://ror.org/03a4sp974', 'no_lang_code', 0, 'https://ror.org/03a4sp974 NFDI4Microbiota Nationale Forschungsdateninfrastruktur für Mikrobiota-Forschung'),
(97041, 'https://ror.org/02r3ebk48', 'pt', 1, 'https://ror.org/02r3ebk48 Faculdade Santa Marcelina MuriaƩ'),
(97042, 'https://ror.org/03dfh0s94', 'pt', 1, 'https://ror.org/03dfh0s94 Instituto Superior de Estudos Interculturais e Transdisciplinares de Viseu'),
(97043, 'https://ror.org/03fqpzb44', 'no_lang_code', 0, 'https://ror.org/03fqpzb44 NFDI4Biodiversity'),
(97044, 'https://ror.org/036ydxy43', 'fr', 0, 'https://ror.org/036ydxy43 Laboratoire MƩmoire et Cognition Memory and Cognition Laboratory'),
(97045, 'https://ror.org/04j0x0h93', 'it', 1, 'https://ror.org/04j0x0h93 Istituto Nazionale di Fisica Nucleare, Sezione di Bologna National Institute for Nuclear Physics, Bologna Division'),
(97046, 'https://ror.org/02h6ksg34', 'pt', 1, 'https://ror.org/02h6ksg34 Grupo Jose de Mello Grupo Jose de Mello (Portugal) JosƩ de Mello Group'),
(97047, 'https://ror.org/03pyhhg10', 'fr', 1, 'https://ror.org/03pyhhg10 Faculty of Medicine of Tunis FacultĆ© de mĆ©decine de Tunis ŁƒŁ„ŁŠŲ© الطب ŲØŲŖŁˆŁ†Ų³'),
(97048, 'https://ror.org/054fae424', 'fr', 1, 'https://ror.org/054fae424 Centre Observation, Impacts, Ɖnergie Centre for Observation, Impacts, Energy'),
(97049, 'https://ror.org/00k93wm15', 'pt', 1, 'https://ror.org/00k93wm15 Academia de Engenharia'),
(97050, 'https://ror.org/03txy7629', 'fr', 1, 'https://ror.org/03txy7629 Polytech Nice Sophia'),
(97051, 'https://ror.org/00ey4m741', 'pt', 1, 'https://ror.org/00ey4m741 Centro Hospitalar Leiria EPE'),
(97052, 'https://ror.org/03eqyg336', 'en', 1, 'https://ror.org/03eqyg336 Great Lakes Institute for Environmental Research'),
(97053, 'https://ror.org/035jbxr46', 'en', 1, 'https://ror.org/035jbxr46 Smithsonian Tropical Research Institute'),
(97054, 'https://ror.org/04wzc7f86', 'en', 1, 'https://ror.org/04wzc7f86 Geografický Ústav Slovenskej akadémie vied Institute of Geography of the Slovak Academy of Sciences'),
(97055, 'https://ror.org/00d8m2065', 'pt', 1, 'https://ror.org/00d8m2065 NAV NAV (Portugal)'),
(97056, 'https://ror.org/00z34yn88', 'it', 1, 'https://ror.org/00z34yn88 Istituto Nazionale di Fisica Nucleare, Sezione di Padova National Institute for Nuclear Physics, Padova Division'),
(97057, 'https://ror.org/04xv0vq46', 'en', 1, 'https://ror.org/04xv0vq46 National Center for Post Traumatic Stress Disorder'),
(97058, 'https://ror.org/03cz5gw17', 'pt', 1, 'https://ror.org/03cz5gw17 Sociedade Brasileira de Urologia'),
(97059, 'https://ror.org/032a13752', 'en', 1, 'https://ror.org/032a13752 Smithsonian Environmental Research Center'),
(97060, 'https://ror.org/02v3kjh70', 'en', 1, 'https://ror.org/02v3kjh70 National Institute of Financial Management ą¤…ą¤°ą„ą¤£ ą¤œą„‡ą¤Ÿą¤²ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¤ą„ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(97061, 'https://ror.org/050wjx790', 'pt', 1, 'https://ror.org/050wjx790 Instituto PolitƩcnico Jean Piaget do Sul'),
(97062, 'https://ror.org/03ahebw65', 'en', 1, 'https://ror.org/03ahebw65 Rabindra University ą¦°ą¦¬ą§€ą¦Øą§ą¦¦ą§ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(97063, 'https://ror.org/025jsyk19', 'en', 1, 'https://ror.org/025jsyk19 Suzhou City University č˜‡å·žåŸŽåø‚å­¦é™¢'),
(97064, 'https://ror.org/04j6ccm70', 'pt', 1, 'https://ror.org/04j6ccm70 Centro Hospitalar Póvoa de Varzim Vila do Conde EPE'),
(97065, 'https://ror.org/015z7n187', 'pt', 1, 'https://ror.org/015z7n187 Laboratório de Robótica e Sistemas de Engenharia'),
(97066, 'https://ror.org/004zhad81', 'en', 1, 'https://ror.org/004zhad81 Know Center Know Center GmbH Know Center Research GmbH Know Center Research GmbH (Austria)'),
(97067, 'https://ror.org/0103y3647', 'en', 1, 'https://ror.org/0103y3647 Naval Facilities Engineering and Expeditionary Warfare Center'),
(97068, 'https://ror.org/034pbpe12', 'en', 0, 'https://ror.org/034pbpe12 FAIRe Dateninfrastruktur für die Physik der kondensierten Materie und die chemische Physik fester Stoffe FAIRmat'),
(97069, 'https://ror.org/0324fzd89', 'en', 1, 'https://ror.org/0324fzd89 Nature Canada Nature Canada'),
(97070, 'https://ror.org/05qtjta41', 'en', 1, 'https://ror.org/05qtjta41 Open Preservation Foundation'),
(97071, 'https://ror.org/02g54pq76', 'pt', 1, 'https://ror.org/02g54pq76 Laboratório de Ensaios Desgaste e Materiais'),
(97072, 'https://ror.org/02wq41p38', 'no_lang_code', 1, 'https://ror.org/02wq41p38 Aviation Industry Corporation of China (China) äø­å›½čˆŖē©ŗå·„äøšé›†å›¢å…¬åø'),
(97073, 'https://ror.org/0157za327', 'en', 1, 'https://ror.org/0157za327 Czech Academy of Sciences, Institute of Animal Physiology and Genetics Ústav živočiÅ”nĆ© fyziologie a genetiky AV ČR Ústav živočiÅ”nĆ© fyziologie a genetiky AV ČR, v. v. i. Ústav živočiÅ”nĆ© fyziologie a genetiky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(97074, 'https://ror.org/0387aje64', 'en', 1, 'https://ror.org/0387aje64 Nanjing University of Science and Technology ZiJin College å—äŗ¬ē†å·„å¤§å­¦ē“«é‡‘å­¦é™¢'),
(97075, 'https://ror.org/026t55v35', 'en', 1, 'https://ror.org/026t55v35 Anacostia Community Museum'),
(97076, 'https://ror.org/03561sz23', 'pt', 1, 'https://ror.org/03561sz23 Centro de Maricultura da Calheta'),
(97077, 'https://ror.org/0503mhx84', 'fr', 1, 'https://ror.org/0503mhx84 Institut la Personne en mƩdecine'),
(97078, 'https://ror.org/02hyq7k73', 'en', 1, 'https://ror.org/02hyq7k73 Fresenius Medical Care Portugal Fresenius Medical Care Portugal (Portugal)'),
(97079, 'https://ror.org/008xnjf31', 'pt', 1, 'https://ror.org/008xnjf31 Ordem Hospitaleira de São João de Deus'),
(97080, 'https://ror.org/043kfae87', 'it', 1, 'https://ror.org/043kfae87 Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Salerno'),
(97081, 'https://ror.org/047agqt23', 'pt', 1, 'https://ror.org/047agqt23 Agri-CiĆŖncia Agri-CiĆŖncia (Portugal) Agri-Science'),
(97082, 'https://ror.org/05gsnx339', 'pt', 1, 'https://ror.org/05gsnx339 Hospital CUF Descobertas'),
(97083, 'https://ror.org/052dpkx72', 'en', 1, 'https://ror.org/052dpkx72 Membrane dynamics in and outside the cell'),
(97084, 'https://ror.org/02kdq0p73', 'pt', 1, 'https://ror.org/02kdq0p73 Jardim Botânico Tropical Lisbon Tropical Botanical Garden'),
(97085, 'https://ror.org/0172v8z89', 'fr', 1, 'https://ror.org/0172v8z89 Gouvernement de la RƩpublique franƧaise Government of France'),
(97086, 'https://ror.org/03bey6t10', 'en', 1, 'https://ror.org/03bey6t10 Cooper Hewitt, Smithsonian Design Museum'),
(97087, 'https://ror.org/056vt4a53', 'en', 1, 'https://ror.org/056vt4a53 Kogi State Polytechnic'),
(97088, 'https://ror.org/02snrxw52', 'en', 1, 'https://ror.org/02snrxw52 Centre for Advanced Material Application of the Slovak Academy of Sciences Centrum pre využitie pokročilých materiĆ”lov Slovenskej akadĆ©mie vied'),
(97089, 'https://ror.org/050a3a192', 'en', 1, 'https://ror.org/050a3a192 Prestige Institute of Management and Research, Bhopal'),
(97090, 'https://ror.org/05tf9r976', 'en', 1, 'https://ror.org/05tf9r976 Chinese People''s Liberation Army 中国人民解放军'),
(97091, 'https://ror.org/01k9z4a50', 'no_lang_code', 0, 'https://ror.org/01k9z4a50 NFDI for Catalysis-Related Sciences NFDI für Wissenschaften mit Bezug zur Katalyse NFDI4Cat'),
(97092, 'https://ror.org/05gp45n31', 'en', 1, 'https://ror.org/05gp45n31 Dalian Jiaotong University å¤§čæžäŗ¤é€šå¤§å­¦'),
(97093, 'https://ror.org/05njtdr40', 'en', 1, 'https://ror.org/05njtdr40 MILA University'),
(97094, 'https://ror.org/00g7v8090', 'en', 1, 'https://ror.org/00g7v8090 Akwa Ibom State Polytechnic'),
(97095, 'https://ror.org/008102z14', 'en', 1, 'https://ror.org/008102z14 Chengdu Jincheng College ęˆéƒ½é”¦åŸŽå­¦é™¢'),
(97096, 'https://ror.org/00fdzcx89', 'en', 1, 'https://ror.org/00fdzcx89 Qingdao City University é’å²›åŸŽåø‚å­¦é™¢'),
(97097, 'https://ror.org/05fxyrf35', 'fr', 1, 'https://ror.org/05fxyrf35 Federation for the Study and Evaluation of Intra-Uterine Therapeutics FƩdƩration pour la recherche en explorations thƩrapeutiques innovantes in utero'),
(97098, 'https://ror.org/025e3ct30', 'it', 1, 'https://ror.org/025e3ct30 Istituto Nazionale di Fisica Nucleare, Laboratori Nazionali di Legnaro National Institute for Nuclear Physics, Legnaro National Laboratories'),
(97099, 'https://ror.org/05n7bzj69', 'en', 1, 'https://ror.org/05n7bzj69 Mahatma Gandhi University, Nalgonda'),
(97100, 'https://ror.org/01xtd3q75', 'en', 1, 'https://ror.org/01xtd3q75 North Bengal International University'),
(97101, 'https://ror.org/05kk75d32', 'en', 1, 'https://ror.org/05kk75d32 Paris Public Health'),
(97102, 'https://ror.org/02qp2sy10', 'es', 1, 'https://ror.org/02qp2sy10 Colegio De La Salle'),
(97103, 'https://ror.org/03zz2aq73', 'pt', 1, 'https://ror.org/03zz2aq73 Centro de Investigação em Desporto Saúde e Desenvolvimento Humano'),
(97104, 'https://ror.org/00hggtk70', 'pt', 1, 'https://ror.org/00hggtk70 Instituto de Desenvolvimento Social'),
(97105, 'https://ror.org/034nkkr84', 'en', 1, 'https://ror.org/034nkkr84 Robert Bosch Hospital Robert-Bosch-Krankenhaus'),
(97106, 'https://ror.org/03b0ygs43', 'en', 1, 'https://ror.org/03b0ygs43 National Air and Space Museum'),
(97107, 'https://ror.org/00fxk9d32', 'pt', 1, 'https://ror.org/00fxk9d32 Hospital São João de Deus'),
(97108, 'https://ror.org/03pv69j64', 'en', 1, 'https://ror.org/03pv69j64 Cancer Research UK Scotland Institute'),
(97109, 'https://ror.org/02832k114', 'en', 1, 'https://ror.org/02832k114 S P Jain School of Global Management'),
(97110, 'https://ror.org/045x7eq21', 'pt', 1, 'https://ror.org/045x7eq21 LEO FarmacĆŖuticos LEO FarmacĆŖuticos (Portugal) LEO Pharmaceutical'),
(97111, 'https://ror.org/02f2f0234', 'en', 1, 'https://ror.org/02f2f0234 Institute of Biochemistry, Molecular Biology and Biotechnology'),
(97112, 'https://ror.org/02m44sp53', 'en', 1, 'https://ror.org/02m44sp53 Woman Online University دانؓگاه Ų¢Ł†Ł„Ų§ŪŒŁ† زن'),
(97113, 'https://ror.org/05ynqks44', 'es', 1, 'https://ror.org/05ynqks44 Universidad Ciudadana de Nuevo León'),
(97114, 'https://ror.org/05y5xxp70', 'pt', 1, 'https://ror.org/05y5xxp70 Fundacao Escola Superior da Defensoria Publica do Estado do Rio de Janeiro'),
(97115, 'https://ror.org/03jz4tp02', 'pt', 1, 'https://ror.org/03jz4tp02 Ordem dos Farmaceuticos'),
(97116, 'https://ror.org/039bhhz46', 'en', 1, 'https://ror.org/039bhhz46 Anahuac University Network Red de Universidades AnƔhuac'),
(97117, 'https://ror.org/02v423c65', 'en', 1, 'https://ror.org/02v423c65 Ajeenkya DY Patil University ą¤…ą¤œą¤æą¤‚ą¤•ą„ą¤Æ ą¤”ą„€.वाय. ą¤Ŗą¤¾ą¤Ÿą„€ą¤² ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(97118, 'https://ror.org/0238fds33', 'no_lang_code', 0, 'https://ror.org/0238fds33 NFDI4Energy National Research Data Infrastructure for Interdisciplinary Energy System Research Nationale Forschungsdateninfrastruktur für die interdisziplinäre Energiesystemforschung'),
(97119, 'https://ror.org/04wbg2z51', 'fr', 1, 'https://ror.org/04wbg2z51 Observatoire pour la Conservation de la MƩgafaune Marine'),
(97120, 'https://ror.org/03zzmvm93', 'en', 1, 'https://ror.org/03zzmvm93 Bangladesh Army International University of Science and Technology বাংলাদেশ সেনাবাহিনী ą¦†ą¦Øą§ą¦¤ą¦°ą§ą¦œą¦¾ą¦¤ą¦æą¦• ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(97121, 'https://ror.org/03r31ar10', 'pt', 1, 'https://ror.org/03r31ar10 Liga Portuguesa Contra o Cancro'),
(97122, 'https://ror.org/04d10cx61', 'pt', 1, 'https://ror.org/04d10cx61 Museu de Lisboa'),
(97123, 'https://ror.org/02p34hm58', 'en', 1, 'https://ror.org/02p34hm58 Fuzhou Melbourne Polytechnic ē¦å·žå¢Øå°”ęœ¬ē†å·„čŒäøšå­¦é™¢'),
(97124, 'https://ror.org/01t0q4k28', 'pt', 1, 'https://ror.org/01t0q4k28 Hospital das ForƧas Armadas'),
(97125, 'https://ror.org/01nbs8061', 'en', 1, 'https://ror.org/01nbs8061 Fluid Dynamics Research Institute'),
(97126, 'https://ror.org/00m9dvt07', 'pt', 1, 'https://ror.org/00m9dvt07 Teva Portugal Teva Portugal (Portugal)'),
(97127, 'https://ror.org/0445yn719', 'no_lang_code', 1, 'https://ror.org/0445yn719 Leonardo (United Kingdom)'),
(97128, 'https://ror.org/04kc6j250', 'pt', 1, 'https://ror.org/04kc6j250 Instituto da Construção'),
(97129, 'https://ror.org/02e8b2r87', 'en', 1, 'https://ror.org/02e8b2r87 Czech Academy of Sciences, Institute of Geophysics GeofyzikĆ”lnĆ­ Ćŗstav AV ČR GeofyzikĆ”lnĆ­ Ćŗstav AV ČR, v. v. i. GeofyzikĆ”lnĆ­ Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(97130, 'https://ror.org/05mx85j86', 'en', 1, 'https://ror.org/05mx85j86 Parkinson''s Foundation'),
(97131, 'https://ror.org/05c08zp36', 'en', 1, 'https://ror.org/05c08zp36 Khyber Girls Medical College خیبر Ų®ŁˆŲ§ŲŖŪŒŁ† طبی کالج ŲÆ خیبر ښځو Ų·ŲØ Ł¾ŁˆŁ‡Ł†ŚŪŒ'),
(97132, 'https://ror.org/00913gw18', 'en', 1, 'https://ror.org/00913gw18 Czech Academy of Sciences, Institute of Art History Ústav dějin uměnĆ­ AV ČR Ústav dějin uměnĆ­ AV ČR, v. v. i. Ústav dějin uměnĆ­ AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(97133, 'https://ror.org/03qw6qj17', 'pt', 1, 'https://ror.org/03qw6qj17 Administração Regional De Saude Do Centro'),
(97134, 'https://ror.org/0148t1k76', 'en', 1, 'https://ror.org/0148t1k76 Hirshhorn Museum and Sculpture Garden'),
(97135, 'https://ror.org/05g4cxq12', 'en', 1, 'https://ror.org/05g4cxq12 High Energy Astrophysics Science Archive Research Center'),
(97136, 'https://ror.org/008te1449', 'pt', 1, 'https://ror.org/008te1449 Defensoria PĆŗblica do Rio de Janeiro Rio de Janeiro State Public Defender''s Office'),
(97137, 'https://ror.org/05m5x8198', 'en', 1, 'https://ror.org/05m5x8198 BMJ Group BMJ Group (United Kingdom)'),
(97138, 'https://ror.org/02wwamm40', 'pt', 1, 'https://ror.org/02wwamm40 Departamento de CiĆŖncia e de Recursos Naturais'),
(97139, 'https://ror.org/02gswea15', 'en', 1, 'https://ror.org/02gswea15 Hanoi Academy of Theater and Cinema TrĘ°į»ng ĐẔi hį»c SĆ¢n khįŗ„u vĆ  Điện įŗ£nh HĆ  Nį»™i'),
(97140, 'https://ror.org/049cr8j69', 'pt', 1, 'https://ror.org/049cr8j69 Laboratório de Polícia Científica'),
(97141, 'https://ror.org/001d5wc61', 'it', 1, 'https://ror.org/001d5wc61 Istituto Nazionale di Fisica Nucleare, Centro Nazionale Analisi Fotogrammi National Institute for Nuclear Physics, National Center for Frame Analysis'),
(97142, 'https://ror.org/00dkkfj04', 'en', 1, 'https://ror.org/00dkkfj04 Arthur M. Sackler Gallery'),
(97143, 'https://ror.org/01hewbk46', 'pt', 1, 'https://ror.org/01hewbk46 Montes Claros State University Universidad Estatal de Montes Claros Universidade Estadual de Montes Claros'),
(97144, 'https://ror.org/03f6sdf65', 'en', 0, 'https://ror.org/03f6sdf65 PUNCH4NFDI'),
(97145, 'https://ror.org/00phxkk55', 'no_lang_code', 1, 'https://ror.org/00phxkk55 JURA Bio, Inc. JURA Bio, Inc. (United States)'),
(97146, 'https://ror.org/00x0kn981', 'pt', 1, 'https://ror.org/00x0kn981 Centro de Geofƭsica de Ɖvora'),
(97147, 'https://ror.org/0470vke61', 'no_lang_code', 1, 'https://ror.org/0470vke61 Leonardo (Italy)'),
(97148, 'https://ror.org/03s5x2j36', 'fr', 1, 'https://ror.org/03s5x2j36 Centre d''Investigation Clinique Robert DebrƩ'),
(97149, 'https://ror.org/02pnjnj33', 'en', 1, 'https://ror.org/02pnjnj33 Dr. Margarete Fischer-Bosch Institut für Klinische Pharmakologie Dr. Margarete Fischer-Bosch-Institute of Clinical Pharmacology'),
(97150, 'https://ror.org/033wstj18', 'pt', 1, 'https://ror.org/033wstj18 Ordem dos Economistas'),
(97151, 'https://ror.org/03m2b5j70', 'de', 1, 'https://ror.org/03m2b5j70 Deutscher Verband für Landschaftspflege Deutscher Verband für Landschaftspflege e.V. German Association for Landscape Conservation'),
(97152, 'https://ror.org/04k1tmf59', 'pt', 1, 'https://ror.org/04k1tmf59 Estado-Maior do ExƩrcito'),
(97153, 'https://ror.org/02jq1vf72', 'en', 1, 'https://ror.org/02jq1vf72 Coibita Island Isla Coibita, RancherĆ­a'),
(97154, 'https://ror.org/01ge7v435', 'en', 1, 'https://ror.org/01ge7v435 Punta Culebra Nature Center'),
(97155, 'https://ror.org/0247jgm75', 'de', 1, 'https://ror.org/0247jgm75 Senatsverwaltung für Mobilität, Verkehr, Klimaschutz und Umwelt'),
(97156, 'https://ror.org/045t78n53', 'en', 1, 'https://ror.org/045t78n53 Michoud Assembly Facility'),
(97157, 'https://ror.org/0222yqz05', 'pt', 1, 'https://ror.org/0222yqz05 Instituto Superior de CiĆŖncias Educativas do Douro'),
(97158, 'https://ror.org/03zzgjc77', 'en', 1, 'https://ror.org/03zzgjc77 Institute of Oceanography'),
(97159, 'https://ror.org/02ftc8763', 'en', 1, 'https://ror.org/02ftc8763 Bocas del Toro Estación de Investigación Bocas del Toro Research Station'),
(97160, 'https://ror.org/01zxe8n50', 'es', 1, 'https://ror.org/01zxe8n50 Universidad AnƔhuac Xalapa'),
(97161, 'https://ror.org/04zx93s85', 'fr', 1, 'https://ror.org/04zx93s85 Gendarmerie Nationale National Gendarmerie'),
(97162, 'https://ror.org/02hd1sz82', 'en', 1, 'https://ror.org/02hd1sz82 Mental Illness Research, Education and Clinical Centers'),
(97163, 'https://ror.org/03sczbr81', 'pt', 1, 'https://ror.org/03sczbr81 Kimera Biotecnologia Kimera Biotecnologia (Brazil)'),
(97164, 'https://ror.org/05m1fqs56', 'fr', 1, 'https://ror.org/05m1fqs56 AssemblƩe Nationale de France French National Assembly'),
(97165, 'https://ror.org/03hgcc197', 'en', 1, 'https://ror.org/03hgcc197 Islamic Azad University, East Tehran Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران ؓرق'),
(97166, 'https://ror.org/006703856', 'pt', 1, 'https://ror.org/006703856 Faculdade Metropolitana de Manaus Metropolitan College of Manaus'),
(97167, 'https://ror.org/04dwckp88', 'en', 0, 'https://ror.org/04dwckp88 Concordia University'),
(97168, 'https://ror.org/039epzh36', 'it', 1, 'https://ror.org/039epzh36 Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Cosenza'),
(97169, 'https://ror.org/02e5d6q93', 'en', 1, 'https://ror.org/02e5d6q93 Direction du développement et de la coopération DDC Direktion für Entwicklung und Zusammenarbeit DEZA Direzione dello sviluppo e della cooperazione DSC Swiss Agency for Development and Cooperation Swiss Agency for Development and Cooperation SDC'),
(97170, 'https://ror.org/00hy87220', 'en', 1, 'https://ror.org/00hy87220 Henan Academy of Sciences ę²³å—ēœē§‘å­¦é™¢'),
(97171, 'https://ror.org/059esff37', 'pt', 1, 'https://ror.org/059esff37 Instituto para a Sustentabilidade e Inovação em Estruturas de Engenharia'),
(97172, 'https://ror.org/04jbt9n06', 'en', 1, 'https://ror.org/04jbt9n06 Islamic Azad University, West Tehran Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران ŲŗŲ±ŲØ'),
(97173, 'https://ror.org/03ee15h24', 'pt', 1, 'https://ror.org/03ee15h24 Almedina Group Grupo Almedina'),
(97174, 'https://ror.org/029mvf840', 'pt', 1, 'https://ror.org/029mvf840 Instituto da SeguranƧa Social'),
(97175, 'https://ror.org/046jmn968', 'en', 1, 'https://ror.org/046jmn968 WE-SPARK Health Institute'),
(97176, 'https://ror.org/05k4bc948', 'en', 1, 'https://ror.org/05k4bc948 S P Jain School of Global Management'),
(97177, 'https://ror.org/04jmdbw57', 'en', 1, 'https://ror.org/04jmdbw57 National Center for Theoretical Sciences, Mathematics Division åœ‹å®¶ē†č«–ē§‘å­øē ”ē©¶äø­åæƒ 數學組');
INSERT INTO `rors` VALUES
(97178, 'https://ror.org/03c4rpa03', 'fr', 1, 'https://ror.org/03c4rpa03 Interactions Arbres-Microorganismes'),
(97179, 'https://ror.org/04snhqa82', 'en', 1, 'https://ror.org/04snhqa82 Obafemi Awolowo University YunifĆ”sĆ­tƬ ỌbĆ”fẹ́mi Awólį»Ģwį»Ģ€'),
(97180, 'https://ror.org/0579c5n38', 'en', 1, 'https://ror.org/0579c5n38 Institute for Diagnostic Imaging Research'),
(97181, 'https://ror.org/02mh1d616', 'en', 1, 'https://ror.org/02mh1d616 National Center for Theoretical Sciences, Physics Division åœ‹å®¶ē†č«–ē§‘å­øē ”ē©¶äø­åæƒ 物理組'),
(97182, 'https://ror.org/030txkr67', 'en', 1, 'https://ror.org/030txkr67 Bader College'),
(97183, 'https://ror.org/02sb0ps07', 'pt', 1, 'https://ror.org/02sb0ps07 Franciscanas MissionƔrias de Nossa Senhora'),
(97184, 'https://ror.org/00ejmq608', 'fr', 1, 'https://ror.org/00ejmq608 Centre d''Investigation Clinique BiothƩrapies Necker'),
(97185, 'https://ror.org/00whzh260', 'en', 1, 'https://ror.org/00whzh260 Woodrow Wilson International Center for Scholars'),
(97186, 'https://ror.org/02kyvdq62', 'pt', 1, 'https://ror.org/02kyvdq62 Instituto de Investigação em Design Media e Cultura'),
(97187, 'https://ror.org/02nxphm19', 'pt', 1, 'https://ror.org/02nxphm19 Instituto de Investigação e Formação Avançada em Ciências e Tecnologias da Saúde'),
(97188, 'https://ror.org/0171mag52', 'en', 1, 'https://ror.org/0171mag52 Centro de Vuelo Espacial Goddard Goddard Space Flight Center'),
(97189, 'https://ror.org/01pp8nd67', 'en', 1, 'https://ror.org/01pp8nd67 Smithsonian Institution'),
(97190, 'https://ror.org/02vyzav31', 'en', 1, 'https://ror.org/02vyzav31 PAU Excellencia Global Academy Foundation, Inc.'),
(97191, 'https://ror.org/0394yh759', 'en', 1, 'https://ror.org/0394yh759 Liaoning Academy of Materials'),
(97192, 'https://ror.org/01h009r26', 'pt', 1, 'https://ror.org/01h009r26 Fundação da Juventude'),
(97193, 'https://ror.org/03pfjex63', 'en', 1, 'https://ror.org/03pfjex63 Wing Luke Museum of the Asian Pacific American Experience'),
(97194, 'https://ror.org/01h3hm524', 'en', 1, 'https://ror.org/01h3hm524 Ahl Al Bayt University Ų¬Ų§Ł…Ų¹Ų© أهل Ų§Ł„ŲØŁŠŲŖ دانؓگاه Ų§Ł‡Ł„Ų§Ł„ŲØŪŒŲŖ'),
(97195, 'https://ror.org/0099j7t54', 'en', 1, 'https://ror.org/0099j7t54 Beijing Institute of Aeronautical Materials äø­å›½čˆŖå‘åŒ—äŗ¬čˆŖē©ŗęę–™ē ”ē©¶é™¢'),
(97196, 'https://ror.org/01swfyv43', 'en', 1, 'https://ror.org/01swfyv43 Proteus Ocean Group Proteus Ocean Group (United States)'),
(97197, 'https://ror.org/02feagj05', 'en', 1, 'https://ror.org/02feagj05 Upper Midwest Water Science Center'),
(97198, 'https://ror.org/05pc6yw33', 'en', 1, 'https://ror.org/05pc6yw33 Sri Siddhartha Academy of Higher Education'),
(97199, 'https://ror.org/01d2qgg03', 'de', 0, 'https://ror.org/01d2qgg03 NFDI-MatWerk National Research Data Infrastructure for Materials Science & Engineering Nationale Forschungsdateninfrastruktur für Materialwissenschaft & Werkstofftechnik'),
(97200, 'https://ror.org/04sbtbt61', 'pt', 1, 'https://ror.org/04sbtbt61 Institute of Integrative Medicine Instituto Medicina Integrativa (Portugal)'),
(97201, 'https://ror.org/03ptcxm22', 'pt', 1, 'https://ror.org/03ptcxm22 Direccao-Geral de Agricultura e Desenvolvimento Rural'),
(97202, 'https://ror.org/00898x434', 'pt', 1, 'https://ror.org/00898x434 Polƭcia JudiciƔria'),
(97203, 'https://ror.org/05769ap73', 'en', 1, 'https://ror.org/05769ap73 TOO Solid Research Group TOO Solid Research Group (Kazakhstan)'),
(97204, 'https://ror.org/04pca8d81', 'pt', 1, 'https://ror.org/04pca8d81 Agrupamento de Escolas Carlos Amarante Carlos Amarante Group of Schools'),
(97205, 'https://ror.org/04qmjst50', 'fr', 1, 'https://ror.org/04qmjst50 D2iA - Dynamiques, Interactions et InterculturalitƩ en Asie'),
(97206, 'https://ror.org/01ybw6t12', 'fr', 1, 'https://ror.org/01ybw6t12 Laboratoire de Changement Social et Politique'),
(97207, 'https://ror.org/031scq885', 'en', 1, 'https://ror.org/031scq885 Smithsonian Institution Archives'),
(97208, 'https://ror.org/02caz1f24', 'en', 1, 'https://ror.org/02caz1f24 British Medical Association'),
(97209, 'https://ror.org/05fhwtx59', 'no_lang_code', 1, 'https://ror.org/05fhwtx59 L3Harris (United States)'),
(97210, 'https://ror.org/01ve2ed25', 'en', 1, 'https://ror.org/01ve2ed25 Museum of the Rockies'),
(97211, 'https://ror.org/04cbgjc24', 'en', 1, 'https://ror.org/04cbgjc24 Petrified Forest National Park'),
(97212, 'https://ror.org/05mwdqq98', 'es', 1, 'https://ror.org/05mwdqq98 Instituto de Investigación de Enfermedades Raras Research Institute for Rare Diseases'),
(97213, 'https://ror.org/01nb01b94', 'en', 1, 'https://ror.org/01nb01b94 Nanjing Normal University Taizhou College å—äŗ¬åøˆčŒƒå¤§å­¦ę³°å·žå­¦é™¢'),
(97214, 'https://ror.org/00p5kn310', 'en', 1, 'https://ror.org/00p5kn310 Banking Academy of Vietnam Hį»c viện NgĆ¢n hĆ ng'),
(97215, 'https://ror.org/032fpxa41', 'pt', 1, 'https://ror.org/032fpxa41 CTT CTT (Portugal)'),
(97216, 'https://ror.org/01f5dqg10', 'en', 0, 'https://ror.org/01f5dqg10 NFDI4Earth'),
(97217, 'https://ror.org/00cz47042', 'en', 1, 'https://ror.org/00cz47042 National Museum of Natural History'),
(97218, 'https://ror.org/01bma3e06', 'pt', 1, 'https://ror.org/01bma3e06 Cat Clinic ClĆ­nica dos Gatos (Portugal)'),
(97219, 'https://ror.org/00f6f7930', 'en', 1, 'https://ror.org/00f6f7930 IFOAM – Organics International'),
(97220, 'https://ror.org/00vzebw12', 'en', 1, 'https://ror.org/00vzebw12 NFC Institute of Engineering and Technology Ų§ŪŒŁ† ایف سی Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ آف Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(97221, 'https://ror.org/026etfb20', 'en', 1, 'https://ror.org/026etfb20 National Zoological Park'),
(97222, 'https://ror.org/04pa05368', 'en', 1, 'https://ror.org/04pa05368 Shandong University of Arts å±±äøœč‰ŗęœÆå­¦é™¢'),
(97223, 'https://ror.org/05mnej980', 'pt', 1, 'https://ror.org/05mnej980 Instituto Superior de Gestão'),
(97224, 'https://ror.org/049czkm07', 'en', 1, 'https://ror.org/049czkm07 UK Reproducibility Network'),
(97225, 'https://ror.org/01p6ew896', 'en', 1, 'https://ror.org/01p6ew896 Gambella University'),
(97226, 'https://ror.org/01f9zrk18', 'en', 1, 'https://ror.org/01f9zrk18 Hebei Provincial Communications Planning, Design and Research Institute Co., Ltd. Hebei Provincial Communications Planning, Design and Research Institute Co., Ltd. (China) ę²³åŒ—ēœäŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(97227, 'https://ror.org/04fce1c40', 'no_lang_code', 1, 'https://ror.org/04fce1c40 Clarivate (United States)'),
(97228, 'https://ror.org/00nx7n658', 'en', 1, 'https://ror.org/00nx7n658 Osaka Women''s and Children''s Hospital å¤§é˜ŖęÆå­åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(97229, 'https://ror.org/01jkemy20', 'it', 1, 'https://ror.org/01jkemy20 Istituto Nazionale di Fisica Nucleare, Laboratorio di Tecniche Nucleari per l''Ambiente e i Beni Culturali National Institute for Nuclear Physics, Laboratory of Nuclear Techniques for Environment and Cultural Heritage'),
(97230, 'https://ror.org/02mgmvf72', 'es', 1, 'https://ror.org/02mgmvf72 Instituto Tecnológico de Zacatepec'),
(97231, 'https://ror.org/02cxb1m07', 'en', 0, 'https://ror.org/02cxb1m07 BERD@NFDI'),
(97232, 'https://ror.org/00fgwdb16', 'pt', 1, 'https://ror.org/00fgwdb16 Instituto de Nanoestruturas Nanomodelação e Nanofabricação'),
(97233, 'https://ror.org/04nyys021', 'en', 1, 'https://ror.org/04nyys021 ColibrĆ­ Gorriazul Research Center'),
(97234, 'https://ror.org/03xrvbe74', 'de', 0, 'https://ror.org/03xrvbe74 DAPHNE4NFDI DAten aus PHoton- und Neutronen Experimenten'),
(97235, 'https://ror.org/00xek3458', 'en', 1, 'https://ror.org/00xek3458 Freer Gallery of Art'),
(97236, 'https://ror.org/01dg9a450', 'fr', 1, 'https://ror.org/01dg9a450 Agronomy and Environment Laboratory Laboratoire Agronomie et Environnement'),
(97237, 'https://ror.org/03w8jv259', 'pt', 1, 'https://ror.org/03w8jv259 Instituto da Qualidade em SaĆŗde'),
(97238, 'https://ror.org/00f0z8g04', 'en', 1, 'https://ror.org/00f0z8g04 Guangdong Technology College å¹æäøœē†å·„å­¦é™¢'),
(97239, 'https://ror.org/0033j3009', 'no_lang_code', 0, 'https://ror.org/0033j3009 NFDIxCS National Research Data Infrastructure for and with Computer Science Nationale Forschungsdateninfrastruktur für und mit Computer Science'),
(97240, 'https://ror.org/01k97gp34', 'en', 1, 'https://ror.org/01k97gp34 TU Dortmund University Technische UniversitƤt Dortmund'),
(97241, 'https://ror.org/016xe6q07', 'no_lang_code', 1, 'https://ror.org/016xe6q07 Hanwha Group (South Korea) ķ•œķ™”ź·øė£¹'),
(97242, 'https://ror.org/05wwzbv21', 'en', 0, 'https://ror.org/05wwzbv21 NFDI4Chem'),
(97243, 'https://ror.org/01zghvr36', 'en', 1, 'https://ror.org/01zghvr36 Czech Academy of Sciences, Institute of Contemporary History Ústav pro soudobĆ© dějiny AV ČR Ústav pro soudobĆ© dějiny AV ČR, v. v. i. Ústav pro soudobĆ© dějiny AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(97244, 'https://ror.org/049jf1a25', 'it', 1, 'https://ror.org/049jf1a25 Istituto Nazionale di Fisica Nucleare, Laboratori Nazionali di Frascati National Institute for Nuclear Physics, National Laboratory of Frascati'),
(97245, 'https://ror.org/02kegw676', 'pt', 1, 'https://ror.org/02kegw676 Instituto Nacional de Engenharia BiomƩdica'),
(97246, 'https://ror.org/037h16f28', 'en', 1, 'https://ror.org/037h16f28 Zhejiang Institute of Subtropical Crops ęµ™ę±Ÿēœäŗšēƒ­åø¦ä½œē‰©ē ”ē©¶ę‰€'),
(97247, 'https://ror.org/02edbjh06', 'en', 1, 'https://ror.org/02edbjh06 Osun State Polytechnic, Iree'),
(97248, 'https://ror.org/02k1zhm92', 'it', 1, 'https://ror.org/02k1zhm92 Istituto Nazionale di Fisica Nucleare, Laboratori Nazionali del Sud National Institute for Nuclear Physics, Laboratori Nazionali del Sud'),
(97249, 'https://ror.org/01x4xt461', 'pt', 1, 'https://ror.org/01x4xt461 Laboratório de Inteligência Artificial e Apoio à Decisão'),
(97250, 'https://ror.org/05fa8ka61', 'pt', 1, 'https://ror.org/05fa8ka61 INESC TEC Instituto de Engenharia de Sistemas e Computadores Tecnologia e CiĆŖncia'),
(97251, 'https://ror.org/04aakzd15', 'no_lang_code', 1, 'https://ror.org/04aakzd15 Rinnoco Ltd Rinnoco Ltd (Cyprus)'),
(97252, 'https://ror.org/05f0vmf18', 'no_lang_code', 1, 'https://ror.org/05f0vmf18 Hanwha Techwin (South Korea) ķ•œķ™”ķ…Œķ¬ģœˆ'),
(97253, 'https://ror.org/0490a8967', 'pt', 1, 'https://ror.org/0490a8967 Tranquilidade Tranquilidade (Portugal) Tranquility'),
(97254, 'https://ror.org/05dmq6f22', 'no_lang_code', 1, 'https://ror.org/05dmq6f22 Hanwha Solutions (South Korea) ķ•œķ™”ģ†”ė£Øģ…˜'),
(97255, 'https://ror.org/02ad08x68', 'pt', 1, 'https://ror.org/02ad08x68 ISLA - Instituto Politécnico de Gestão e Tecnologia ISLA - Polytechnic Institute of Management and Technology'),
(97256, 'https://ror.org/00fj73d18', 'en', 1, 'https://ror.org/00fj73d18 University of Texas Institute for Geophysics'),
(97257, 'https://ror.org/036r78s06', 'en', 1, 'https://ror.org/036r78s06 National Institute of Social Development ą®¤ąÆ‡ą®šą®æą®Æ ą®šą®®ąÆ‚ą®• ą®…ą®Ŗą®æą®µą®æą®°ąÆą®¤ąÆą®¤ą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ ą¶¢ą·ą¶­ą·’ą¶š ą·ƒą¶øą·ą¶¢ ą·ƒą¶‚ą·€ą¶»ą·Šą¶°ą¶± ආයතනය'),
(97258, 'https://ror.org/03j99jp33', 'pt', 1, 'https://ror.org/03j99jp33 Nephrocare Portugal SA Nephrocare Portugal SA (Portugal)'),
(97259, 'https://ror.org/01qbk3798', 'en', 1, 'https://ror.org/01qbk3798 Institute of Adult Education Taasisi ya Elimu ya Watu Wazima'),
(97260, 'https://ror.org/011335j04', 'en', 0, 'https://ror.org/011335j04 University Hospital MĆŗtua de Terrassa'),
(97261, 'https://ror.org/057nsa394', 'fr', 1, 'https://ror.org/057nsa394 Institut d''Histoire du Droit Institute of the History of Law'),
(97262, 'https://ror.org/01swcva92', 'en', 1, 'https://ror.org/01swcva92 The Engineering & Technical College of Chengdu University of Technology ęˆéƒ½ē†å·„å¤§å­¦å·„ēØ‹ęŠ€ęœÆå­¦é™¢'),
(97263, 'https://ror.org/02mfp0b67', 'en', 1, 'https://ror.org/02mfp0b67 National Center for Theoretical Sciences åœ‹å®¶ē†č«–ē§‘å­øē ”ē©¶äø­åæƒ'),
(97264, 'https://ror.org/01jbxwn06', 'pt', 1, 'https://ror.org/01jbxwn06 Instituto de Ciência e Inovação em Engenharia Mecânica e Engenharia Industrial'),
(97265, 'https://ror.org/04s11ea33', 'en', 1, 'https://ror.org/04s11ea33 Lamarr Institute for Machine Learning and Artificial Intelligence Lamarr-Institut für Maschinelles Lernen und Künstliche Intelligenz'),
(97266, 'https://ror.org/00dj4dg56', 'pt', 1, 'https://ror.org/00dj4dg56 Instituto do Mar'),
(97267, 'https://ror.org/054gdnq27', 'en', 1, 'https://ror.org/054gdnq27 Bosch Health Campus Bosch Health Campus GmbH'),
(97268, 'https://ror.org/01dvske68', 'en', 0, 'https://ror.org/01dvske68 Base4NFDI Basic Services for NFDI Basisdienste für die NFDI'),
(97269, 'https://ror.org/05c43y157', 'fr', 1, 'https://ror.org/05c43y157 Laboratoire de Neurobiologie Orofaciale'),
(97270, 'https://ror.org/024242h31', 'en', 1, 'https://ror.org/024242h31 Public Authority for Applied Education and Training Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠ ŁˆŲ§Ł„ŲŖŲÆŲ±ŁŠŲØ'),
(97271, 'https://ror.org/05t8w9f79', 'en', 1, 'https://ror.org/05t8w9f79 46 Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны Российской ФеГерации 46th Central Research Institute of the Ministry of Defense of the Russian Federation'),
(97272, 'https://ror.org/01smjf452', 'en', 1, 'https://ror.org/01smjf452 HÜBNER GmbH & Co. KG HÜBNER Group HÜBNER Group (Germany) Hübner-Gruppe'),
(97273, 'https://ror.org/0349hba85', 'it', 1, 'https://ror.org/0349hba85 Maria Luigia Hospital Ospedale Maria Luigia'),
(97274, 'https://ror.org/030ws5c69', 'no_lang_code', 1, 'https://ror.org/030ws5c69 Istituto Nazionale di Fisica Nucleare, Galileo Galilei Institute for Theoretical Physics'),
(97275, 'https://ror.org/04cba8149', 'it', 1, 'https://ror.org/04cba8149 Istituto Teologico Leoniano di Anagni'),
(97276, 'https://ror.org/05hmt6r19', 'pt', 1, 'https://ror.org/05hmt6r19 Tribunal Constitucional'),
(97277, 'https://ror.org/04ecnk821', 'en', 1, 'https://ror.org/04ecnk821 University Center of Aflou'),
(97278, 'https://ror.org/035fz0s07', 'no_lang_code', 0, 'https://ror.org/035fz0s07 CH2M (United States)'),
(97279, 'https://ror.org/04jvj4z94', 'en', 1, 'https://ror.org/04jvj4z94 World Forest ID'),
(97280, 'https://ror.org/05ncpd436', 'en', 1, 'https://ror.org/05ncpd436 Enam Medical College & Hospital ą¦ą¦Øą¦¾ą¦® মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ও হাসপাতাল'),
(97281, 'https://ror.org/03t6cz096', 'en', 1, 'https://ror.org/03t6cz096 Astronomical Institute of the Slovak Academy of Sciences Astronomický ústav Slovenskej akadémie vied'),
(97282, 'https://ror.org/0374j2r33', 'en', 1, 'https://ror.org/0374j2r33 AESE Business School'),
(97283, 'https://ror.org/04cvd2327', 'pt', 1, 'https://ror.org/04cvd2327 Associação Científica Proteomass Proteomass Scientific Society'),
(97284, 'https://ror.org/02dvxkc14', 'fr', 1, 'https://ror.org/02dvxkc14 Institut Covid-19 Ad Memoriam'),
(97285, 'https://ror.org/01a325446', 'de', 1, 'https://ror.org/01a325446 Deutsche Physikalische Gesellschaft e.V. German Physical Society'),
(97286, 'https://ror.org/04dtbh109', 'fr', 1, 'https://ror.org/04dtbh109 Centre d''Investigation Clinique Bichat'),
(97287, 'https://ror.org/01x3vbs59', 'en', 1, 'https://ror.org/01x3vbs59 S P Jain School of Global Management'),
(97288, 'https://ror.org/01dm2vg23', 'pt', 1, 'https://ror.org/01dm2vg23 Instituto PolitƩcnico Jean Piaget do Norte'),
(97289, 'https://ror.org/04kd9w798', 'en', 1, 'https://ror.org/04kd9w798 Smithsonian Asian Pacific American Center'),
(97290, 'https://ror.org/030j39b93', 'en', 1, 'https://ror.org/030j39b93 VA Sierra Pacific Network'),
(97291, 'https://ror.org/04kd6c686', 'fr', 1, 'https://ror.org/04kd6c686 NF-kappaB, DiffƩrenciation et Cancer'),
(97292, 'https://ror.org/05avbyr67', 'pt', 1, 'https://ror.org/05avbyr67 CoLAB +ATLANTIC'),
(97293, 'https://ror.org/03wy09077', 'fr', 1, 'https://ror.org/03wy09077 Groupe Hospitalo-Universitaire Paris Nord'),
(97294, 'https://ror.org/05az7b208', 'pt', 1, 'https://ror.org/05az7b208 Laboratório da Paisagem'),
(97295, 'https://ror.org/041mhqs27', 'pt', 1, 'https://ror.org/041mhqs27 GlaxoSmithKline Produtos FarmacĆŖuticos Lda GlaxoSmithKline Produtos FarmacĆŖuticos Lda (Portugal)'),
(97296, 'https://ror.org/01xptp363', 'no_lang_code', 0, 'https://ror.org/01xptp363 NFDI4Objects'),
(97297, 'https://ror.org/00mfc1254', 'fr', 1, 'https://ror.org/00mfc1254 Centre de Recherches Psychanalyse, MƩdecine et SociƩtƩ'),
(97298, 'https://ror.org/02wdzfm91', 'it', 1, 'https://ror.org/02wdzfm91 Centro Siciliano di Fisica Nucleare e di Struttura della Materia Sicilian Center of Nuclear Physics and Physics of Matter'),
(97299, 'https://ror.org/02hx79439', 'fr', 1, 'https://ror.org/02hx79439 Centre de recherches en Philosophie, Sociologie, SƩmiologie et Politique'),
(97300, 'https://ror.org/038xg1y21', 'en', 1, 'https://ror.org/038xg1y21 Global Research Institute of Paris'),
(97301, 'https://ror.org/02j30f642', 'es', 1, 'https://ror.org/02j30f642 Tecnológico Universitario del Valle de Chalco'),
(97302, 'https://ror.org/03n1tgd19', 'en', 1, 'https://ror.org/03n1tgd19 Museum Conservation Institute'),
(97303, 'https://ror.org/05skwvp09', 'en', 1, 'https://ror.org/05skwvp09 All Saints University School of Medicine'),
(97304, 'https://ror.org/0077bqh92', 'en', 1, 'https://ror.org/0077bqh92 National University Ā«Odesa Maritime AcademyĀ» ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢ Ā«ŠžŠ”Š•Š”Š¬ŠšŠ ŠœŠžŠ Š”Š¬ŠšŠ ŠŠšŠŠ”Š•ŠœŠ†ŠÆĀ»'),
(97305, 'https://ror.org/021brj308', 'pt', 1, 'https://ror.org/021brj308 Brazilian School of Economics and Finance Escola Brasileira de Economia e FinanƧas'),
(97306, 'https://ror.org/02nf9ds89', 'pt', 1, 'https://ror.org/02nf9ds89 Centro de Investigação em Gestão'),
(97307, 'https://ror.org/04x3ad968', 'id', 1, 'https://ror.org/04x3ad968 Sekolah Tinggi Ilmu Kesehatan Kendal'),
(97308, 'https://ror.org/05p706d77', 'en', 1, 'https://ror.org/05p706d77 HAS green academy HAS green academy'),
(97309, 'https://ror.org/05g7knd32', 'en', 1, 'https://ror.org/05g7knd32 Czech Academy of Sciences, Institute of Analytical Chemistry Ústav analytickĆ© chemie AV ČR Ústav analytickĆ© chemie AV ČR, v. v. i. Ústav analytickĆ© chemie AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(97310, 'https://ror.org/04kw44c30', 'en', 1, 'https://ror.org/04kw44c30 NOAA National Systematics Laboratory'),
(97311, 'https://ror.org/011xg5j78', 'en', 1, 'https://ror.org/011xg5j78 IFP School Ɖcole Nationale SupĆ©rieure du PĆ©trole et des Moteurs'),
(97312, 'https://ror.org/00bw8d226', 'en', 1, 'https://ror.org/00bw8d226 National University of Malaysia Universiti Kebangsaan Malaysia é©¬ę„č„æäŗšå›½ę°‘å¤§å­¦'),
(97313, 'https://ror.org/05s45j557', 'en', 1, 'https://ror.org/05s45j557 Fortuna Field Station'),
(97314, 'https://ror.org/02275k146', 'pt', 1, 'https://ror.org/02275k146 Assembleia da RepĆŗblica'),
(97315, 'https://ror.org/043qcb444', 'en', 1, 'https://ror.org/043qcb444 Gran Sasso Science Institute'),
(97316, 'https://ror.org/04th3xh64', 'pt', 1, 'https://ror.org/04th3xh64 Centro de Informação de Biotecnologia'),
(97317, 'https://ror.org/00rtaje08', 'en', 1, 'https://ror.org/00rtaje08 Raffles University'),
(97318, 'https://ror.org/01aw5y656', 'en', 1, 'https://ror.org/01aw5y656 Yanching Institute of Technology 燕京理巄学院'),
(97319, 'https://ror.org/01k8bwd50', 'no_lang_code', 0, 'https://ror.org/01k8bwd50 NFDI4Immuno National Research Data Infrastructure for Immunology Nationale Forschungsdateninfrastruktur für Immunologie'),
(97320, 'https://ror.org/035bm9q36', 'pt', 1, 'https://ror.org/035bm9q36 IB Agency for Economic Dynamization InvestBraga Agência para a Dinamização Económica EM'),
(97321, 'https://ror.org/00gt5xe03', 'en', 1, 'https://ror.org/00gt5xe03 Hartford Hospital'),
(97322, 'https://ror.org/04cq7wg91', 'en', 1, 'https://ror.org/04cq7wg91 Melbourne Polytechnic'),
(97323, 'https://ror.org/04f13ze88', 'en', 1, 'https://ror.org/04f13ze88 People''s Liberation Army Air Force 中国人民解放军空军'),
(97324, 'https://ror.org/01ynf4891', 'en', 1, 'https://ror.org/01ynf4891 University of Milano-Bicocca UniversitĆ  degli Studi di Milano-Bicocca'),
(97325, 'https://ror.org/04qett061', 'no_lang_code', 0, 'https://ror.org/04qett061 Selex ES (United Kingdom)'),
(97326, 'https://ror.org/015144r31', 'fr', 1, 'https://ror.org/015144r31 Trajectoires dƩveloppementales & psychiatrie'),
(97327, 'https://ror.org/04js4m423', 'en', 1, 'https://ror.org/04js4m423 Federal Polytechnic, Nasarawa'),
(97328, 'https://ror.org/0526bmn46', 'de', 1, 'https://ror.org/0526bmn46 Bundesverband RIAS e.V. Bundesverband der Recherche- und Informationsstellen Antisemitismus'),
(97329, 'https://ror.org/02e9q2112', 'pt', 1, 'https://ror.org/02e9q2112 Universidade Lusƭada - Centro UniversitƔrio Lusƭada - Norte (campus do Porto)'),
(97330, 'https://ror.org/023kksk09', 'en', 1, 'https://ror.org/023kksk09 Weizenbaum Institute Weizenbaum-Institut'),
(97331, 'https://ror.org/04agawh36', 'en', 1, 'https://ror.org/04agawh36 European Federation for Services to Individuals'),
(97332, 'https://ror.org/00bnsfw19', 'fr', 1, 'https://ror.org/00bnsfw19 Centre d''Investigation Clinique MĆØre-Enfant Necker Cochin Paris Centre'),
(97333, 'https://ror.org/05v3ekh26', 'en', 1, 'https://ror.org/05v3ekh26 Kazakh Leading Academy of Architecture and Civil Engineering ŠšŠ°Š·Š°Ń…ŃŠŗŠ°Ń Š³Š¾Š»Š¾Š²Š½Š°Ń Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŅšŠ°Š·Š°Ņ› бас ŃÓ™ŃƒŠ»ŠµŃ‚-құрылыс Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(97334, 'https://ror.org/01bcvhf32', 'pt', 1, 'https://ror.org/01bcvhf32 Unidade Local de SaĆŗde da Guarda EPE'),
(97335, 'https://ror.org/010re0e60', 'pt', 1, 'https://ror.org/010re0e60 Centre of materials and civil engineering for sustainability Centro de Materiais e Tecnologias Construtivas'),
(97336, 'https://ror.org/02t67p115', 'en', 1, 'https://ror.org/02t67p115 Hebei Petroleum University of Technology ę²³åŒ—ēŸ³ę²¹čŒäøšęŠ€ęœÆå¤§å­¦'),
(97337, 'https://ror.org/03am7sg53', 'fr', 1, 'https://ror.org/03am7sg53 National Fund for Health Insurance l''Assurance Maladie'),
(97338, 'https://ror.org/04dn6rz78', 'pt', 1, 'https://ror.org/04dn6rz78 CADIn'),
(97339, 'https://ror.org/05sffn795', 'en', 1, 'https://ror.org/05sffn795 Gamboa Laboratories Laboratorios de Gamboa'),
(97340, 'https://ror.org/02mk53y73', 'en', 1, 'https://ror.org/02mk53y73 Dianchi College 滇池學院'),
(97341, 'https://ror.org/00dbv4g17', 'es', 1, 'https://ror.org/00dbv4g17 Instituto Tecnológico de ZitÔcuaro'),
(97342, 'https://ror.org/046qcp498', 'fr', 1, 'https://ror.org/046qcp498 Usages du numƩrique pour le dƩveloppement durable'),
(97343, 'https://ror.org/04z4esw72', 'en', 1, 'https://ror.org/04z4esw72 Archives of American Art'),
(97344, 'https://ror.org/03jz50365', 'en', 1, 'https://ror.org/03jz50365 Laboratory of Mechanics Physics of Materials'),
(97345, 'https://ror.org/01sgfhb12', 'en', 1, 'https://ror.org/01sgfhb12 National Enterprise for NanoScience and NanoTechnology'),
(97346, 'https://ror.org/03fvnzx77', 'en', 1, 'https://ror.org/03fvnzx77 National Museum of the American Indian'),
(97347, 'https://ror.org/05e0ydk16', 'en', 1, 'https://ror.org/05e0ydk16 Institute for Computing in Research'),
(97348, 'https://ror.org/03t57np97', 'pt', 1, 'https://ror.org/03t57np97 Instituto de Engenheiros Eletricistas e EletrƓnicos'),
(97349, 'https://ror.org/00p61b845', 'id', 1, 'https://ror.org/00p61b845 Universitas Islam Negeri Profesor Kiai Haji Saifuddin Zuhri Purwokerto'),
(97350, 'https://ror.org/01qaf6y44', 'pt', 1, 'https://ror.org/01qaf6y44 Blanc Hospital'),
(97351, 'https://ror.org/03zcqw776', 'no_lang_code', 1, 'https://ror.org/03zcqw776 Amir-Al-Momenin Hospital مرکز Ų¢Ł…ŁˆŲ²Ų“ŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų³ŁˆŲ§Ł†Ų­ سوختگی و ŲŖŲ±Ł…ŪŒŁ…ŪŒ Ų§Ł…ŪŒŲ±Ų§Ł„Ł…ŁˆŁ…Ł†ŪŒŁ†'),
(97352, 'https://ror.org/01s1e0738', 'fr', 1, 'https://ror.org/01s1e0738 Centre de Support en SantƩ Internationale'),
(97353, 'https://ror.org/01v7r4v08', 'en', 0, 'https://ror.org/01v7r4v08 DataPLANT Daten in Pflanzen-Grundlagenforschung'),
(97354, 'https://ror.org/0569mkk41', 'en', 1, 'https://ror.org/0569mkk41 Zhejiang Gongshang University ęµ™ę±Ÿå·„å•†å¤§å­¦'),
(97355, 'https://ror.org/05p03kd02', 'en', 1, 'https://ror.org/05p03kd02 Chuo Kikuu Cha Kikatoliki cha Mwenge Mwenge Catholic University'),
(97356, 'https://ror.org/005aa3k38', 'en', 0, 'https://ror.org/005aa3k38 National Parkinson''s Foundation'),
(97357, 'https://ror.org/000nwmh60', 'no_lang_code', 0, 'https://ror.org/000nwmh60 L-3 Communications (United States)'),
(97358, 'https://ror.org/05s4gph86', 'it', 1, 'https://ror.org/05s4gph86 Istituto Nazionale di Fisica Nucleare, Laboratori Acceleratori e SuperconduttivitĆ  Applicata'),
(97359, 'https://ror.org/036kqsd10', 'es', 1, 'https://ror.org/036kqsd10 Universidad Tecnológica del Suroeste de Guanajuato'),
(97360, 'https://ror.org/03mfb3630', 'en', 1, 'https://ror.org/03mfb3630 Southeast University Chengxian College äøœå—å¤§å­¦ęˆč“¤å­¦é™¢'),
(97361, 'https://ror.org/05mgxqt50', 'en', 1, 'https://ror.org/05mgxqt50 FyzikÔlny ústav Slovenskej akadémie vied Institute of Physics of the Slovak Academy of Sciences'),
(97362, 'https://ror.org/03myw9d11', 'en', 1, 'https://ror.org/03myw9d11 Iron and Steel Institute of Z. I. Nekrasov National Academy of Sciences of Ukraine Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ чорної Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³Ń–Ń— ім. Š—.І. ŠŠµŠŗŃ€Š°ŃŠ¾Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(97363, 'https://ror.org/04dfx8082', 'en', 1, 'https://ror.org/04dfx8082 Mineralogical Society of the United Kingdom and Ireland'),
(97364, 'https://ror.org/01yymex05', 'en', 1, 'https://ror.org/01yymex05 Southwest Jiaotong University Hope College č„æå—äŗ¤é€šå¤§å­¦åøŒęœ›å­¦é™¢'),
(97365, 'https://ror.org/020r0s364', 'pt', 1, 'https://ror.org/020r0s364 Centro de Investigação de Políticas do Ensino Superior'),
(97366, 'https://ror.org/02x435584', 'en', 1, 'https://ror.org/02x435584 Theological University Utrecht Theologische Universiteit Utrecht'),
(97367, 'https://ror.org/00ga81413', 'en', 1, 'https://ror.org/00ga81413 Smithsonian Marine Station'),
(97368, 'https://ror.org/03cbxvt13', 'fr', 1, 'https://ror.org/03cbxvt13 Centre d’Études et de Recherches Interdisciplinaires en Lettres, Arts et CinĆ©ma'),
(97369, 'https://ror.org/00xqgpg43', 'en', 1, 'https://ror.org/00xqgpg43 Bangladesh Army University of Science and Technology বাংলাদেশ ą¦†ą¦°ą§ą¦®ą¦æ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(97370, 'https://ror.org/03xc3yj23', 'pt', 1, 'https://ror.org/03xc3yj23 Sociedade de História Natural'),
(97371, 'https://ror.org/00nhs3j29', 'no_lang_code', 1, 'https://ror.org/00nhs3j29 Istituto Nazionale di Fisica Nucleare, Trento Institute for Fundamental Physics And Applications'),
(97372, 'https://ror.org/0305k8y39', 'no_lang_code', 0, 'https://ror.org/0305k8y39 NFDI consortium for Personal Health Data NFDI4Health Nationale Forschungsdateninfrastruktur für personenbezogene Gesundheitsdaten'),
(97373, 'https://ror.org/009f78a75', 'en', 1, 'https://ror.org/009f78a75 National Portrait Gallery'),
(97374, 'https://ror.org/03d28dw78', 'fr', 1, 'https://ror.org/03d28dw78 Biomolecular Engineering Laboratory Laboratoire d''IngƩnierie des BiomolƩcules Laboratory of Biomolecules Engineering'),
(97375, 'https://ror.org/00jphth26', 'pt', 1, 'https://ror.org/00jphth26 Instituto PortuguĆŖs de Reumatologia'),
(97376, 'https://ror.org/01qj7sc02', 'en', 1, 'https://ror.org/01qj7sc02 Czech Academy of Sciences, Institute of Ethnology Etnologický Ćŗstav AV ČR Etnologický Ćŗstav AV ČR, v. v. i. Etnologický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(97377, 'https://ror.org/0112yzy28', 'en', 1, 'https://ror.org/0112yzy28 ForestGEO'),
(97378, 'https://ror.org/03rdf8k41', 'en', 1, 'https://ror.org/03rdf8k41 Abia State Polytechnic'),
(97379, 'https://ror.org/04gyhce28', 'en', 1, 'https://ror.org/04gyhce28 Slovak Astronomical Society at the Slovak Academy of Sciences SlovenskĆ” astronomickĆ” spoločnosÅ„ pri Slovenskej akadĆ©mii vied'),
(97380, 'https://ror.org/01qycn260', 'en', 1, 'https://ror.org/01qycn260 Dalian Institute of Science and Technology å¤§čæžē§‘ęŠ€å­¦é™¢'),
(97381, 'https://ror.org/012hzxe25', 'en', 1, 'https://ror.org/012hzxe25 Kateb University دانؓگاه کاتب'),
(97382, 'https://ror.org/03dedp688', 'en', 1, 'https://ror.org/03dedp688 S P Jain School of Global Management'),
(97383, 'https://ror.org/0251tqx66', 'fr', 1, 'https://ror.org/0251tqx66 Centre d''Investigation Clinique HƓpital EuropƩen Georges Pompidou'),
(97384, 'https://ror.org/01r0cs760', 'fr', 1, 'https://ror.org/01r0cs760 Laboratoire MathƩmatiques, Image et Applications'),
(97385, 'https://ror.org/01j0ds221', 'en', 1, 'https://ror.org/01j0ds221 University of Eyvanekey دانؓگاه Ų§ŪŒŁˆŲ§Ł† کی'),
(97386, 'https://ror.org/047qq4s60', 'pt', 1, 'https://ror.org/047qq4s60 Instituto da Vinha e do Vinho IP'),
(97387, 'https://ror.org/02web8j86', 'es', 1, 'https://ror.org/02web8j86 CUNEF Universidad CUNEF University'),
(97388, 'https://ror.org/00qmhmb34', 'fr', 1, 'https://ror.org/00qmhmb34 Biostatistic, Biological Data Treatment and Modelisation Biostatistique, traitement et modƩlisation des donnƩes biologiques'),
(97389, 'https://ror.org/01b23gh75', 'en', 1, 'https://ror.org/01b23gh75 Czech Society for Biochemistry and Molecular Biology ČeskĆ” Společnost pro Biochemii a MolekulĆ”rnĆ­ Biologii, z. s.'),
(97390, 'https://ror.org/007q8dx38', 'en', 1, 'https://ror.org/007q8dx38 Geological Materials Repository'),
(97391, 'https://ror.org/00w7bj245', 'pt', 1, 'https://ror.org/00w7bj245 Cooperativa de Ensino Superior PolitƩcnico e UniversitƔrio'),
(97392, 'https://ror.org/001kawq27', 'en', 1, 'https://ror.org/001kawq27 National Museum of American Jewish History'),
(97393, 'https://ror.org/003p8mm90', 'en', 1, 'https://ror.org/003p8mm90 Bolgatanga Technical University'),
(97394, 'https://ror.org/00e3y0580', 'pt', 1, 'https://ror.org/00e3y0580 Instituto Ivoti'),
(97395, 'https://ror.org/03fyevk41', 'pt', 1, 'https://ror.org/03fyevk41 Grupo Lusófona (Portugal) Lusophone Group'),
(97396, 'https://ror.org/00xa57a59', 'en', 1, 'https://ror.org/00xa57a59 University of Novi Sad Универзитет у ŠŠ¾Š²Š¾Š¼ ДаГу'),
(97397, 'https://ror.org/02mks6v46', 'en', 1, 'https://ror.org/02mks6v46 DePauw University'),
(97398, 'https://ror.org/02t4ekc95', 'en', 1, 'https://ror.org/02t4ekc95 Medical University of Lodz Uniwersytet Medyczny w Łodzi'),
(97399, 'https://ror.org/00kgrkn83', 'en', 1, 'https://ror.org/00kgrkn83 University of Lucerne UniversitƠ di Lucerna UniversitƤt Luzern UniversitƩ de Lucerne'),
(97400, 'https://ror.org/02kqy4228', 'en', 1, 'https://ror.org/02kqy4228 Hochschule für Philosophie München Munich School of Philosophy'),
(97401, 'https://ror.org/03nf3fj23', 'en', 1, 'https://ror.org/03nf3fj23 MidKent College'),
(97402, 'https://ror.org/019ehh677', 'en', 1, 'https://ror.org/019ehh677 Cotton University ą¦•ą¦Ÿą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(97403, 'https://ror.org/03tw3kz18', 'en', 1, 'https://ror.org/03tw3kz18 Lake Tahoe Community College'),
(97404, 'https://ror.org/024tfg483', 'en', 1, 'https://ror.org/024tfg483 Copenhagen Hospitality College Hotel og Restaurantskolen'),
(97405, 'https://ror.org/03zsxkw25', 'en', 1, 'https://ror.org/03zsxkw25 Harbin University of Commerce å“ˆå°”ę»Øå•†äøšå¤§å­¦'),
(97406, 'https://ror.org/00q369629', 'en', 1, 'https://ror.org/00q369629 Le Moyne College'),
(97407, 'https://ror.org/00xa0xn82', 'en', 1, 'https://ror.org/00xa0xn82 Trakya University Trakya Üniversitesi'),
(97408, 'https://ror.org/01vevwk45', 'en', 1, 'https://ror.org/01vevwk45 Zhejiang Normal University ęµ™ę±ŸåøˆčŒƒå¤§å­¦'),
(97409, 'https://ror.org/04p2y4s44', 'en', 1, 'https://ror.org/04p2y4s44 Medical University of Warsaw Warszawski Uniwersytet Medyczny'),
(97410, 'https://ror.org/03a1kt624', 'es', 1, 'https://ror.org/03a1kt624 Universidad de Huelva University of Huelva'),
(97411, 'https://ror.org/00vkhbp60', 'ca', 1, 'https://ror.org/00vkhbp60 Universidad Abat Oliba CEU Universitat Abat Oliba CEU'),
(97412, 'https://ror.org/047swcp54', 'en', 1, 'https://ror.org/047swcp54 Guildford College'),
(97413, 'https://ror.org/04b8v1s79', 'en', 1, 'https://ror.org/04b8v1s79 Tilburg University Universiteit van Tilburg'),
(97414, 'https://ror.org/02vscf791', 'en', 1, 'https://ror.org/02vscf791 Gdynia Maritime University Uniwersytet Morski w Gdyni'),
(97415, 'https://ror.org/01wka8n18', 'en', 1, 'https://ror.org/01wka8n18 Royal Veterinary College'),
(97416, 'https://ror.org/0044e2g62', 'en', 1, 'https://ror.org/0044e2g62 Minzu University of China äø­å¤®ę°‘ę—å¤§å­¦'),
(97417, 'https://ror.org/00by1q023', 'en', 1, 'https://ror.org/00by1q023 West Dean College of Arts and Conservation'),
(97418, 'https://ror.org/03zmrmn05', 'no_lang_code', 1, 'https://ror.org/03zmrmn05 Xi’an Jiaotong-Liverpool University č„æäŗ¤åˆ©ē‰©ęµ¦å¤§å­¦'),
(97419, 'https://ror.org/003hb2249', 'en', 1, 'https://ror.org/003hb2249 Health Research Board'),
(97420, 'https://ror.org/01egahc47', 'en', 1, 'https://ror.org/01egahc47 Royal College of Art Y Coleg Celf Brenhinol'),
(97421, 'https://ror.org/01gmqr298', 'en', 1, 'https://ror.org/01gmqr298 UniversitƠ Vita-Salute San Raffaele UniversitƩ vie-santƩ Saint Raphaƫl Vita-Salute San Raffaele University'),
(97422, 'https://ror.org/055yf1005', 'en', 1, 'https://ror.org/055yf1005 Nagoya Institute of Technology åå¤å±‹å·„ę„­å¤§å­¦'),
(97423, 'https://ror.org/00cy1zs35', 'en', 1, 'https://ror.org/00cy1zs35 Central University of Kerala ą“•ąµ‡ą“Øąµą“¦ąµą“° ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“², ą“•ąµ‡ą“°ą“³ą“‚'),
(97424, 'https://ror.org/03qnxaf80', 'en', 1, 'https://ror.org/03qnxaf80 Fordham University Universidad de Fordham'),
(97425, 'https://ror.org/0197n2v40', 'en', 1, 'https://ror.org/0197n2v40 Pitzer College'),
(97426, 'https://ror.org/03gq9pd80', 'pt', 1, 'https://ror.org/03gq9pd80 Instituto Federal de Educação, Ciência e Tecnologia de GoiÔs Instituto Federal de GoiÔs'),
(97427, 'https://ror.org/050qj5m48', 'en', 1, 'https://ror.org/050qj5m48 University of Maine System'),
(97428, 'https://ror.org/02czw2k81', 'en', 1, 'https://ror.org/02czw2k81 Central South University of Forestry and Technology äø­å—ęž—äøšē§‘ęŠ€å¤§å­¦'),
(97429, 'https://ror.org/035hs9g56', 'en', 1, 'https://ror.org/035hs9g56 National Centre for Social research'),
(97430, 'https://ror.org/03m20nr07', 'no_lang_code', 1, 'https://ror.org/03m20nr07 Shenyang Ligong University'),
(97431, 'https://ror.org/00p0jh392', 'en', 1, 'https://ror.org/00p0jh392 State Center Community College District'),
(97432, 'https://ror.org/03embeq77', 'en', 1, 'https://ror.org/03embeq77 Mohawk College'),
(97433, 'https://ror.org/01t28d595', 'en', 1, 'https://ror.org/01t28d595 Cedarville University'),
(97434, 'https://ror.org/0093src13', 'en', 1, 'https://ror.org/0093src13 Hogeschool Leiden University of Applied Sciences Leiden'),
(97435, 'https://ror.org/03zsp3p94', 'en', 1, 'https://ror.org/03zsp3p94 University of the Aegean UniversitĆ© de l''ƉgĆ©e Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Αιγαίου'),
(97436, 'https://ror.org/03y71xh61', 'en', 1, 'https://ror.org/03y71xh61 Universidad de Richmond University of Richmond UniversitƩ de richmond'),
(97437, 'https://ror.org/03je71k37', 'en', 1, 'https://ror.org/03je71k37 Civil Aviation University of China äø­å›½ę°‘čˆŖå¤§å­¦'),
(97438, 'https://ror.org/01vd10e19', 'en', 1, 'https://ror.org/01vd10e19 Hampshire County Council'),
(97439, 'https://ror.org/04gx72j20', 'en', 1, 'https://ror.org/04gx72j20 Indian Institute of Technology Bhubaneswar ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤­ą„ą¤µą¤Øą„‡ą¤¶ą„ą¤µą¤° ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®ŖąÆą®µą®©ąÆ‡ą®šąÆą®µą®°ąÆ'),
(97440, 'https://ror.org/0404e3g62', 'en', 1, 'https://ror.org/0404e3g62 Moravian Silesian Research Library in Ostrava MoravskoslezskĆ” vědeckĆ” knihovna v Ostravě, příspěvkovĆ” organizace'),
(97441, 'https://ror.org/04s1nv328', 'en', 1, 'https://ror.org/04s1nv328 University of Canberra'),
(97442, 'https://ror.org/047dnqw48', 'en', 1, 'https://ror.org/047dnqw48 Chuo Kikuu cha Strathmore Strathmore University'),
(97443, 'https://ror.org/01g0jya04', 'en', 1, 'https://ror.org/01g0jya04 Dar Al-Hekma University Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± Ų§Ł„Ų­ŁƒŁ…Ų©'),
(97444, 'https://ror.org/0331z5r71', 'en', 1, 'https://ror.org/0331z5r71 Zhejiang Shuren University'),
(97445, 'https://ror.org/03r10zj06', 'en', 1, 'https://ror.org/03r10zj06 National Center for Supercomputing Applications'),
(97446, 'https://ror.org/01cbya385', 'en', 1, 'https://ror.org/01cbya385 New College of Florida'),
(97447, 'https://ror.org/02yw51758', 'en', 1, 'https://ror.org/02yw51758 Switch'),
(97448, 'https://ror.org/01p996c64', 'en', 1, 'https://ror.org/01p996c64 Ningde Normal University å®å¾·åøˆčŒƒå­¦é™¢'),
(97449, 'https://ror.org/028txef36', 'en', 1, 'https://ror.org/028txef36 National Library of Technology NƔrodnƭ TechnickƔ Knihovna'),
(97450, 'https://ror.org/00v1y6t69', 'en', 1, 'https://ror.org/00v1y6t69 Techno India University ą¦Ÿą§‡ą¦•ą¦Øą§‹ ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(97451, 'https://ror.org/034z67559', 'en', 1, 'https://ror.org/034z67559 Chengdu University'),
(97452, 'https://ror.org/01zhwwf82', 'en', 1, 'https://ror.org/01zhwwf82 Kırıkkale University Kırıkkale Üniversitesi'),
(97453, 'https://ror.org/0348f9w08', 'en', 1, 'https://ror.org/0348f9w08 Wuhan Technology and Business University'),
(97454, 'https://ror.org/03ya9h906', 'en', 1, 'https://ror.org/03ya9h906 National Library of Greece Εθνική βιβλιοθήκη της ΕλλάΓος'),
(97455, 'https://ror.org/05rk03822', 'en', 1, 'https://ror.org/05rk03822 University of Lagos YunifÔsítì ìlú Èkó'),
(97456, 'https://ror.org/00ayhx656', 'en', 1, 'https://ror.org/00ayhx656 Prifysgol Sussex University of Sussex'),
(97457, 'https://ror.org/04v302n28', 'en', 1, 'https://ror.org/04v302n28 Kafkas University Kafkas Üniversitesi'),
(97458, 'https://ror.org/02tpwnr26', 'en', 1, 'https://ror.org/02tpwnr26 Zaragoza Logistics Center'),
(97459, 'https://ror.org/01yqg2h08', 'en', 1, 'https://ror.org/01yqg2h08 Harbin Institute of Technology å“ˆå°”ę»Øå·„äøšå¤§å­¦'),
(97460, 'https://ror.org/04ywb0864', 'en', 1, 'https://ror.org/04ywb0864 Jahangirnagar University ą¦œą¦¾ą¦¹ą¦¾ą¦™ą§ą¦—ą§€ą¦°ą¦Øą¦—ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(97461, 'https://ror.org/04rdtx186', 'en', 1, 'https://ror.org/04rdtx186 Ocean University of China 中国海擋大学'),
(97462, 'https://ror.org/00kxafy15', 'en', 1, 'https://ror.org/00kxafy15 Mody University of Science and Technology'),
(97463, 'https://ror.org/054g2pw49', 'en', 1, 'https://ror.org/054g2pw49 Hasan Kalyoncu University Hasan Kalyoncu Üniversitesi'),
(97464, 'https://ror.org/02hxfx521', 'en', 1, 'https://ror.org/02hxfx521 Dalian Minzu University å¤§čæžę°‘ę—å¤§å­¦'),
(97465, 'https://ror.org/03xpwj629', 'en', 1, 'https://ror.org/03xpwj629 Liaoning University 辽宁大学'),
(97466, 'https://ror.org/00a5pe906', 'en', 1, 'https://ror.org/00a5pe906 University of Western Macedonia UniversitĆ© de MacĆ©doine-Occidentale Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Δυτικής ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(97467, 'https://ror.org/036pm0w06', 'en', 1, 'https://ror.org/036pm0w06 Sichuan International Studies University å››å·å¤–čÆ­å­¦é™¢'),
(97468, 'https://ror.org/03efmyj29', 'en', 1, 'https://ror.org/03efmyj29 Jiangxi University of Finance and Economics ę±Ÿč„æč“¢ē»å¤§å­¦'),
(97469, 'https://ror.org/05fwr8z16', 'en', 1, 'https://ror.org/05fwr8z16 Zhengzhou University of Light Industry éƒ‘å·žč½»å·„äøšå­¦é™¢'),
(97470, 'https://ror.org/02bbx2g30', 'pt', 1, 'https://ror.org/02bbx2g30 Instituto PolitƩcnico de SantarƩm Polytechnic Institute of SantarƩm'),
(97471, 'https://ror.org/05m2y7y74', 'en', 1, 'https://ror.org/05m2y7y74 Federal University Gusau Jami''ar Tarayya ta Gusau'),
(97472, 'https://ror.org/001nkz398', 'en', 1, 'https://ror.org/001nkz398 University of Library Studies and Information Technologies Университет по библиотекознание Šø информационни технологии'),
(97473, 'https://ror.org/05gbn2817', 'en', 1, 'https://ror.org/05gbn2817 China University of Petroleum, East China äø­å›½ēŸ³ę²¹å¤§å­¦'),
(97474, 'https://ror.org/05w0e5j23', 'en', 1, 'https://ror.org/05w0e5j23 Wuhan Polytechnic University 武汉轻巄大学'),
(97475, 'https://ror.org/02xvvvp28', 'en', 1, 'https://ror.org/02xvvvp28 Foshan University ä½›å±±ē§‘å­¦ęŠ€ęœÆå­¦é™¢'),
(97476, 'https://ror.org/02czkny70', 'en', 1, 'https://ror.org/02czkny70 Hefei University of Technology åˆč‚„å·„äøšå¤§å­¦'),
(97477, 'https://ror.org/01dn2ng71', 'en', 1, 'https://ror.org/01dn2ng71 JAMK University of Applied Sciences JyvƤskylƤn ammattikorkeakoulu'),
(97478, 'https://ror.org/05c9vr219', 'en', 1, 'https://ror.org/05c9vr219 HUN-REN Földfizikai és ŰrtudomÔnyi Kutatóintézet HUN-REN Institute of Earth Physics and Space Science'),
(97479, 'https://ror.org/03k23nv15', 'no_lang_code', 1, 'https://ror.org/03k23nv15 Karunya University ą®•ą®¾ą®°ąÆą®£ąÆą®Æą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(97480, 'https://ror.org/01qjrx392', 'en', 1, 'https://ror.org/01qjrx392 University of Liechtenstein UniversitƤt Liechtenstein'),
(97481, 'https://ror.org/02reesv50', 'en', 1, 'https://ror.org/02reesv50 Weston College'),
(97482, 'https://ror.org/03x80pn82', 'en', 1, 'https://ror.org/03x80pn82 Harbin Engineering University å“ˆå°”ę»Øå·„ēØ‹å¤§å­¦'),
(97483, 'https://ror.org/05mxya461', 'en', 1, 'https://ror.org/05mxya461 Chang''an University 长安大学'),
(97484, 'https://ror.org/00wa05t61', 'en', 1, 'https://ror.org/00wa05t61 Sikkim University ą¤øą¤æą¤•ą„ą¤•ą¤æą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(97485, 'https://ror.org/05wtfef22', 'en', 1, 'https://ror.org/05wtfef22 Royal Central School of Speech and Drama'),
(97486, 'https://ror.org/04h7cfr36', 'en', 1, 'https://ror.org/04h7cfr36 Milwaukee School of Engineering'),
(97487, 'https://ror.org/008a8z393', 'en', 1, 'https://ror.org/008a8z393 Dalian University of Foreign Languages å¤§čæžå¤–å›½čÆ­å­¦é™¢'),
(97488, 'https://ror.org/027tyzk91', 'en', 1, 'https://ror.org/027tyzk91 Tokyo University of Foreign Studies ę±äŗ¬å¤–å›½čŖžå¤§å­¦'),
(97489, 'https://ror.org/0496vr396', 'en', 1, 'https://ror.org/0496vr396 Flanders Marine Institute Vlaams Instituut voor de Zee'),
(97490, 'https://ror.org/018906e22', 'en', 1, 'https://ror.org/018906e22 Erasmus MC'),
(97491, 'https://ror.org/03yghzc09', 'en', 1, 'https://ror.org/03yghzc09 Prifysgol Caerwysg University of Exeter'),
(97492, 'https://ror.org/04qr3zq92', 'en', 1, 'https://ror.org/04qr3zq92 University of Electronic Science and Technology of China ē”µå­ē§‘ęŠ€å¤§å­¦'),
(97493, 'https://ror.org/0451s5g67', 'en', 1, 'https://ror.org/0451s5g67 Colorado Mesa University'),
(97494, 'https://ror.org/03grc6f14', 'en', 1, 'https://ror.org/03grc6f14 Mount Allison University'),
(97495, 'https://ror.org/02g81yf77', 'en', 1, 'https://ror.org/02g81yf77 Shanghai Lixin University of Accounting and Finance äøŠęµ·ē«‹äæ”ä¼šč®”é‡‘čžå­¦é™¢'),
(97496, 'https://ror.org/0267vjk41', 'en', 1, 'https://ror.org/0267vjk41 University of Hertfordshire'),
(97497, 'https://ror.org/01g21pa45', 'nl', 1, 'https://ror.org/01g21pa45 Amphia Ziekenhuis'),
(97498, 'https://ror.org/05es91y67', 'en', 1, 'https://ror.org/05es91y67 Usak University Uşak Üniversitesi'),
(97499, 'https://ror.org/04wq8zb47', 'en', 1, 'https://ror.org/04wq8zb47 Sultan Qaboos University Ų¬Ų§Ł…Ų¹Ų© السلطان Ł‚Ų§ŲØŁˆŲ³'),
(97500, 'https://ror.org/03tg3h819', 'en', 1, 'https://ror.org/03tg3h819 Colorado College'),
(97501, 'https://ror.org/0486x5a41', 'en', 1, 'https://ror.org/0486x5a41 Educause'),
(97502, 'https://ror.org/01fdxwh83', 'en', 1, 'https://ror.org/01fdxwh83 Hƶgskolan i BorƄs University of BorƄs'),
(97503, 'https://ror.org/05hfa4n20', 'en', 1, 'https://ror.org/05hfa4n20 Westlake University 脿湖大学'),
(97504, 'https://ror.org/0005w8d69', 'it', 1, 'https://ror.org/0005w8d69 UniversitƠ di Camerino UniversitƤt Camerino UniversitƩ de camerino'),
(97505, 'https://ror.org/01ggsp920', 'en', 1, 'https://ror.org/01ggsp920 Cyprus Institute of Neurology and Genetics'),
(97506, 'https://ror.org/0157pnt69', 'en', 1, 'https://ror.org/0157pnt69 Claremont Graduate University UniversitƩ de claremont'),
(97507, 'https://ror.org/053f2w588', 'en', 1, 'https://ror.org/053f2w588 Manisa Celal Bayar University Manisa Celal Bayar Üniversitesi'),
(97508, 'https://ror.org/0036rpn28', 'en', 1, 'https://ror.org/0036rpn28 Michigan Technological University'),
(97509, 'https://ror.org/049e1px04', 'en', 1, 'https://ror.org/049e1px04 Jiangxi Academy of Sciences ę±Ÿč„æēœē§‘å­¦é™¢'),
(97510, 'https://ror.org/02sps0775', 'en', 1, 'https://ror.org/02sps0775 Chubu University 中部大学'),
(97511, 'https://ror.org/012zs8222', 'en', 1, 'https://ror.org/012zs8222 University at Albany, State University of New York UniversitĆ© d''Ɖtat de new york Ć  albany'),
(97512, 'https://ror.org/03a96gc12', 'de', 1, 'https://ror.org/03a96gc12 ZBW – Leibniz-Informationszentrum Wirtschaft'),
(97513, 'https://ror.org/03jbbze48', 'en', 1, 'https://ror.org/03jbbze48 Universidad de San Diego University of San Diego UniversitƩ de san diego'),
(97514, 'https://ror.org/035h6g182', 'es', 1, 'https://ror.org/035h6g182 Center for Monetary and Financial Studies Centro de Estudios Monetarios y Financieros'),
(97515, 'https://ror.org/032twef21', 'en', 1, 'https://ror.org/032twef21 National Institute of Technology Delhi ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(97516, 'https://ror.org/00rs45z86', 'en', 1, 'https://ror.org/00rs45z86 Haute Ɖcole de Gand Hogeschool Gent University College Ghent'),
(97517, 'https://ror.org/00gx3j908', 'en', 1, 'https://ror.org/00gx3j908 Northwest Normal University č„æåŒ—åøˆčŒƒå¤§å­¦'),
(97518, 'https://ror.org/02fn69884', 'es', 1, 'https://ror.org/02fn69884 Universidad Villanueva Villanueva University'),
(97519, 'https://ror.org/00jzwgz36', 'en', 1, 'https://ror.org/00jzwgz36 Koç University Koç Üniversitesi Qoç Universiteti'),
(97520, 'https://ror.org/055mz3852', 'en', 1, 'https://ror.org/055mz3852 Jan Albrecht Music and Art Academy'),
(97521, 'https://ror.org/019k1pd13', 'en', 1, 'https://ror.org/019k1pd13 Keski-Ruotsin yliopisto Mid Sweden University Mittuniversitetet'),
(97522, 'https://ror.org/03va9g668', 'en', 1, 'https://ror.org/03va9g668 University of Chinese Academy of Social Sciences äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å¤§å­¦'),
(97523, 'https://ror.org/01n8ry083', 'en', 1, 'https://ror.org/01n8ry083 Burnley College'),
(97524, 'https://ror.org/057w15z03', 'en', 1, 'https://ror.org/057w15z03 Erasmus Universiteit Rotterdam Erasmus University Rotterdam'),
(97525, 'https://ror.org/01jrrs026', 'en', 1, 'https://ror.org/01jrrs026 Debrecen Reformed Theological University Debreceni ReformƔtus HittudomƔnyi Egyetem'),
(97526, 'https://ror.org/02xe5ns62', 'en', 1, 'https://ror.org/02xe5ns62 Jinan University ęšØå—å¤§å­¦'),
(97527, 'https://ror.org/049xhb141', 'en', 1, 'https://ror.org/049xhb141 Ostim Technical University Ostim Teknik Üniversitesi'),
(97528, 'https://ror.org/04apw5n28', 'en', 1, 'https://ror.org/04apw5n28 Academia de Muzica, Teatru si Arte Plastice Academy of Music Theatre and Fine Arts ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø, театра Šø ŠøŠ·Š¾Š±Ń€Š°Š·ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(97529, 'https://ror.org/04hyzq608', 'en', 1, 'https://ror.org/04hyzq608 Qilu University of Technology 齐鲁巄业大学'),
(97530, 'https://ror.org/03tmp6662', 'en', 1, 'https://ror.org/03tmp6662 Weifang Medical University ę½åŠåŒ»å­¦é™¢'),
(97531, 'https://ror.org/03fmjzx88', 'en', 1, 'https://ror.org/03fmjzx88 University of Winchester'),
(97532, 'https://ror.org/04gcegc37', 'en', 1, 'https://ror.org/04gcegc37 China University of Geosciences äø­å›½åœ°č“Øå¤§å­¦'),
(97533, 'https://ror.org/05bhp3g52', 'en', 1, 'https://ror.org/05bhp3g52 Centennial College'),
(97534, 'https://ror.org/057qfs197', 'en', 1, 'https://ror.org/057qfs197 Harran University Harran Üniversitesi'),
(97535, 'https://ror.org/043kppn11', 'en', 1, 'https://ror.org/043kppn11 Institutet fƶr rymdfysik Ruotsin avaruusfysiikan laitos Swedish Institute of Space Physics'),
(97536, 'https://ror.org/059yhyy33', 'en', 1, 'https://ror.org/059yhyy33 Japan Aerospace Exploration Agency å®‡å®™čˆŖē©ŗē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(97537, 'https://ror.org/00pyqav47', 'en', 1, 'https://ror.org/00pyqav47 OstravskĆ” univerzita v Ostravě University of Ostrava'),
(97538, 'https://ror.org/0270vfa57', 'en', 1, 'https://ror.org/0270vfa57 University of Southern Mississippi'),
(97539, 'https://ror.org/02w30qy89', 'en', 1, 'https://ror.org/02w30qy89 Xi’an International University 脿安国际大学'),
(97540, 'https://ror.org/01qdmn762', 'en', 1, 'https://ror.org/01qdmn762 LAB University of Applied Sciences LAB-ammattikorkeakoulu'),
(97541, 'https://ror.org/03v5jj203', 'it', 1, 'https://ror.org/03v5jj203 Stazione Zoologica Anton Dohrn'),
(97542, 'https://ror.org/019k25552', 'en', 1, 'https://ror.org/019k25552 National Heritage Institute'),
(97543, 'https://ror.org/015cgnr56', 'en', 1, 'https://ror.org/015cgnr56 Okinawa International University ę²–ēø„å›½éš›å¤§å­¦'),
(97544, 'https://ror.org/039bp8j42', 'en', 1, 'https://ror.org/039bp8j42 University of Verona UniversitƠ degli Studi di Verona UniversitƤt Verona UniversitƩ de vƩrone'),
(97545, 'https://ror.org/02495e989', 'fr', 1, 'https://ror.org/02495e989 Catholic University of Louvain UCLouvain'),
(97546, 'https://ror.org/05qbqeh37', 'en', 1, 'https://ror.org/05qbqeh37 Environmental Protection Agency'),
(97547, 'https://ror.org/026k5mg93', 'en', 1, 'https://ror.org/026k5mg93 Prifysgol Dwyrain Anglia University of East Anglia'),
(97548, 'https://ror.org/01kwgrb31', 'en', 1, 'https://ror.org/01kwgrb31 Northern State University'),
(97549, 'https://ror.org/0599z7n30', 'pt', 1, 'https://ror.org/0599z7n30 Instituto de Biologia Experimental e Tecnológica'),
(97550, 'https://ror.org/03h1hsz49', 'en', 1, 'https://ror.org/03h1hsz49 Czech Academy of Sciences, Institute of Information Theory and Automation Ústav teorie informace a automatizace AV ČR Ústav teorie informace a automatizace AV ČR, v. v. i. Ústav teorie informace a automatizace AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(97551, 'https://ror.org/02w2y2t16', 'en', 1, 'https://ror.org/02w2y2t16 Leuphana University of Lüneburg Leuphana Universität Lüneburg');
INSERT INTO `rors` VALUES
(97552, 'https://ror.org/0220f5b41', 'en', 1, 'https://ror.org/0220f5b41 Tokyo Dental College ę±äŗ¬ę­Æē§‘å¤§å­¦'),
(97553, 'https://ror.org/04tj5wz42', 'en', 1, 'https://ror.org/04tj5wz42 Christelijke Hogeschool Ede Christian University of Applied Sciences'),
(97554, 'https://ror.org/00tp01q71', 'en', 1, 'https://ror.org/00tp01q71 Sanda University äøŠęµ·ę‰č¾¾å­¦é™¢'),
(97555, 'https://ror.org/03dbpdh75', 'en', 1, 'https://ror.org/03dbpdh75 Shenyang University of Chemical Technology ę²ˆé˜³åŒ–å·„å¤§å­¦'),
(97556, 'https://ror.org/044j76961', 'en', 1, 'https://ror.org/044j76961 University of Lethbridge UniversitƩ de lethbridge'),
(97557, 'https://ror.org/01nky7652', 'en', 1, 'https://ror.org/01nky7652 North China University of Technology åŒ—ę–¹å·„äøšå¤§å­¦'),
(97558, 'https://ror.org/019bzvf55', 'en', 1, 'https://ror.org/019bzvf55 Kurukshetra University ą¤•ą„ą¤°ą„ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਕੁਰੂਕਸ਼ੇਤਰ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(97559, 'https://ror.org/027pd3r64', 'en', 1, 'https://ror.org/027pd3r64 Worcestershire County Council'),
(97560, 'https://ror.org/004je0088', 'en', 1, 'https://ror.org/004je0088 Wuhan Sports University 武汉体育学院'),
(97561, 'https://ror.org/034td6c88', 'en', 1, 'https://ror.org/034td6c88 Leeds College of Music'),
(97562, 'https://ror.org/01jgj2p89', 'en', 1, 'https://ror.org/01jgj2p89 King Fahd Medical City Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„Ų·ŲØŁŠŲ©'),
(97563, 'https://ror.org/02nr1jd69', 'pt', 1, 'https://ror.org/02nr1jd69 Escola Superior de Hotelaria e Turismo do Estoril'),
(97564, 'https://ror.org/0220qvk04', 'en', 1, 'https://ror.org/0220qvk04 Shanghai Jiao Tong University äøŠęµ·äŗ¤é€šå¤§å­¦'),
(97565, 'https://ror.org/01w9d4603', 'en', 1, 'https://ror.org/01w9d4603 Shunde Polytechnic é”ŗå¾·čŒäøšęŠ€ęœÆå­¦é™¢'),
(97566, 'https://ror.org/04w2mj190', 'en', 1, 'https://ror.org/04w2mj190 Cirencester College'),
(97567, 'https://ror.org/00syhrg42', 'de', 1, 'https://ror.org/00syhrg42 Lucerne Central and University Library Zentral und Hochschulbibliothek Luzern'),
(97568, 'https://ror.org/035gh3a49', 'en', 1, 'https://ror.org/035gh3a49 IMT School for Advanced Studies Lucca Scuola IMT Alti Studi Lucca'),
(97569, 'https://ror.org/0320nmn30', 'en', 1, 'https://ror.org/0320nmn30 Brockenhurst College'),
(97570, 'https://ror.org/00w7ta717', 'en', 1, 'https://ror.org/00w7ta717 College of New Caledonia'),
(97571, 'https://ror.org/00rjdhd62', 'en', 1, 'https://ror.org/00rjdhd62 Zhejiang Wanli University ęµ™ę±Ÿäø‡é‡Œå­¦é™¢'),
(97572, 'https://ror.org/02ygek028', 'en', 1, 'https://ror.org/02ygek028 FacultƩs universitaires saint-louis Saint-Louis University UCLouvain Saint-Louis Brussels'),
(97573, 'https://ror.org/03r6wam78', 'en', 1, 'https://ror.org/03r6wam78 Changchun Institute of Technology é•æę˜„å·„ēØ‹å­¦é™¢'),
(97574, 'https://ror.org/00ntfnx83', 'en', 1, 'https://ror.org/00ntfnx83 Waseda University 早稲田大学'),
(97575, 'https://ror.org/00c4e7y75', 'en', 1, 'https://ror.org/00c4e7y75 UniversitĆ© d''Ɖtat de wichita Wichita State University'),
(97576, 'https://ror.org/02v6aqf52', 'en', 1, 'https://ror.org/02v6aqf52 Camosun College'),
(97577, 'https://ror.org/0496m4831', 'en', 1, 'https://ror.org/0496m4831 Royal College of Nursing'),
(97578, 'https://ror.org/030mqy313', 'en', 1, 'https://ror.org/030mqy313 Bratislava International School of Liberal Arts'),
(97579, 'https://ror.org/028pmsz77', 'en', 1, 'https://ror.org/028pmsz77 James Madison University Universidad James Madison'),
(97580, 'https://ror.org/01qz5mb56', 'en', 1, 'https://ror.org/01qz5mb56 Oak Ridge National Laboratory'),
(97581, 'https://ror.org/055khxa55', 'en', 1, 'https://ror.org/055khxa55 Darlington College'),
(97582, 'https://ror.org/03xt0bg88', 'en', 1, 'https://ror.org/03xt0bg88 Dr. B. R. Ambedkar National Institute of Technology Jalandhar औा. ą¤¬ą„€. आर. ą¤…ą¤®ą„ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤œą¤¾ą¤²ą¤‚ą¤§ą¤°'),
(97583, 'https://ror.org/029hg0311', 'en', 1, 'https://ror.org/029hg0311 Leibniz Institute for Catalysis Leibniz-Institut für Katalyse e.V.'),
(97584, 'https://ror.org/05trd4x28', 'en', 1, 'https://ror.org/05trd4x28 University of Trento UniversitƠ degli Studi di Trento UniversitƤt Trient UniversitƩ de Trente'),
(97585, 'https://ror.org/00jdr0662', 'en', 1, 'https://ror.org/00jdr0662 Beijing Foreign Studies University åŒ—äŗ¬å¤–å›½čÆ­å¤§å­¦'),
(97586, 'https://ror.org/02pz16m08', 'en', 1, 'https://ror.org/02pz16m08 Southwest University of Political Science & Law č„æå—ę”æę³•å¤§å­¦'),
(97587, 'https://ror.org/05jscf583', 'en', 1, 'https://ror.org/05jscf583 Harbin Medical University å“ˆå°”ę»ØåŒ»ē§‘å¤§å­¦'),
(97588, 'https://ror.org/01b6kha49', 'en', 1, 'https://ror.org/01b6kha49 Walter and Eliza Hall Institute of Medical Research'),
(97589, 'https://ror.org/008n7pv89', 'en', 1, 'https://ror.org/008n7pv89 Prifysgol Plymouth University of Plymouth'),
(97590, 'https://ror.org/0420zk903', 'en', 1, 'https://ror.org/0420zk903 Yellow River Conservancy Technical Institute é»„ę²³ę°“åˆ©čŒäøšęŠ€ęœÆå­¦é™¢'),
(97591, 'https://ror.org/04ckqgs57', 'en', 1, 'https://ror.org/04ckqgs57 Kenyon College'),
(97592, 'https://ror.org/047cqa323', 'en', 1, 'https://ror.org/047cqa323 HZ University of Applied Sciences Hogeschool Zeeland'),
(97593, 'https://ror.org/023rhb549', 'en', 1, 'https://ror.org/023rhb549 Chongqing University é‡åŗ†å¤§å­¦'),
(97594, 'https://ror.org/05t8bcz72', 'en', 1, 'https://ror.org/05t8bcz72 Universidad de Alicante Universitat d''Alacant University of Alicante'),
(97595, 'https://ror.org/04a1a1e81', 'en', 1, 'https://ror.org/04a1a1e81 Dublin City University Ollscoil Chathair Bhaile Ɓtha Cliath'),
(97596, 'https://ror.org/01wwv2135', 'en', 1, 'https://ror.org/01wwv2135 Chesterfield College'),
(97597, 'https://ror.org/033vjfk17', 'en', 1, 'https://ror.org/033vjfk17 Wuhan University 武汉大学'),
(97598, 'https://ror.org/04xv2pc41', 'en', 1, 'https://ror.org/04xv2pc41 Beijing Forestry University åŒ—äŗ¬ęž—äøšå¤§å­¦'),
(97599, 'https://ror.org/056d84691', 'sv', 1, 'https://ror.org/056d84691 Karoliininen instituutti Karolinska Institutet'),
(97600, 'https://ror.org/016f61126', 'en', 1, 'https://ror.org/016f61126 Medical University of Lublin Uniwersytet Medyczny w Lublinie'),
(97601, 'https://ror.org/05kytsw45', 'en', 1, 'https://ror.org/05kytsw45 Ɩrebro University Ɩrebro universitet Ɩrebron yliopisto'),
(97602, 'https://ror.org/00bmj0a71', 'en', 1, 'https://ror.org/00bmj0a71 University of Greenwich'),
(97603, 'https://ror.org/04rk6w354', 'en', 1, 'https://ror.org/04rk6w354 University of Veterinary Sciences Brno VeterinƔrnƭ univerzita Brno'),
(97604, 'https://ror.org/049e6bc10', 'en', 1, 'https://ror.org/049e6bc10 Northumbria University Prifysgol Northymbria'),
(97605, 'https://ror.org/04vgbd477', 'en', 1, 'https://ror.org/04vgbd477 Chongqing University of Technology é‡åŗ†ē†å·„å¤§å­¦'),
(97606, 'https://ror.org/02v9bqx10', 'en', 1, 'https://ror.org/02v9bqx10 Başkent University Başkent Üniversitesi'),
(97607, 'https://ror.org/02fy0zn70', 'en', 1, 'https://ror.org/02fy0zn70 National Technical Museum NƔrodnƭ TechnickƩ Muzeum'),
(97608, 'https://ror.org/05e08rb26', 'en', 1, 'https://ror.org/05e08rb26 Novia University of Applied Sciences Yrkeshƶgskolan Novia'),
(97609, 'https://ror.org/041f45z81', 'en', 1, 'https://ror.org/041f45z81 Coleg Gwent Gwent College'),
(97610, 'https://ror.org/03zkxs276', 'en', 1, 'https://ror.org/03zkxs276 Centre of Administration and Operations CAS Czech Academy of Sciences, Centre of Administration and Operations Středisko společných činnostĆ­ AV ČR Středisko společných činnostĆ­ AV ČR, v. v. i. Středisko společných činnostĆ­ AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(97611, 'https://ror.org/0122p5f64', 'es', 1, 'https://ror.org/0122p5f64 Universidad de JaƩn University of JaƩn'),
(97612, 'https://ror.org/011v22a28', 'en', 1, 'https://ror.org/011v22a28 Institute of the Lithuanian Language Lietuvių Kalbos Institutas'),
(97613, 'https://ror.org/04mfj5474', 'en', 1, 'https://ror.org/04mfj5474 Breda University of Applied Sciences NHTV internationaal hoger onderwijs Breda'),
(97614, 'https://ror.org/01epvyf46', 'en', 1, 'https://ror.org/01epvyf46 Northern Michigan University UniversitƩ du Nord du Michigan'),
(97615, 'https://ror.org/04x0kvm78', 'en', 1, 'https://ror.org/04x0kvm78 Shihezi University 石河子大学'),
(97616, 'https://ror.org/05nj8rv48', 'en', 1, 'https://ror.org/05nj8rv48 TrnavskĆ” univerzita v Trnave University of Trnava'),
(97617, 'https://ror.org/05vmz5070', 'en', 1, 'https://ror.org/05vmz5070 University of Szczecin Uniwersytet Szczeciński'),
(97618, 'https://ror.org/04zj2bd87', 'en', 1, 'https://ror.org/04zj2bd87 Nanjing Audit University å—äŗ¬å®”č®”å­¦é™¢'),
(97619, 'https://ror.org/038n4rj40', 'en', 1, 'https://ror.org/038n4rj40 Kirklees College'),
(97620, 'https://ror.org/0001fmy77', 'en', 1, 'https://ror.org/0001fmy77 University of Macerata UniversitƠ degli Studi di Macerata UniversitƩ de macerata'),
(97621, 'https://ror.org/05szaq822', 'en', 1, 'https://ror.org/05szaq822 Giresun University Giresun Üniversitesi'),
(97622, 'https://ror.org/03tv2xh81', 'en', 1, 'https://ror.org/03tv2xh81 CEPT University ąŖøą«‡ąŖŖą«ąŖŸ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(97623, 'https://ror.org/05xefg082', 'no_lang_code', 1, 'https://ror.org/05xefg082 University of Primorska UniversitĆ  del Litorale Univerza na Primorskem'),
(97624, 'https://ror.org/032cph770', 'en', 1, 'https://ror.org/032cph770 SGH Warsaw School of Economics Szkoła Główna Handlowa w Warszawie'),
(97625, 'https://ror.org/039da5s33', 'en', 1, 'https://ror.org/039da5s33 The Sixth Form College Colchester'),
(97626, 'https://ror.org/049tgcd06', 'en', 1, 'https://ror.org/049tgcd06 Indian Institute of Technology Delhi Institut indien de technologie de delhi ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®¤ą®æą®²ąÆą®²ą®æ ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°¢ą°æą°²ą±ą°²ą±€ ą²‡ą²‚ą²”ą²æą²Æą²Øą³ ą²‡ą²Øą³ ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²«ą³ ą²Ÿą³†ą²•ą³ą²Øą²¾ą²²ą²œą²æ ದೆಹಲಿ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“”ąµ†ąµ½ą“¹ą“æ'),
(97627, 'https://ror.org/03599d813', 'no_lang_code', 1, 'https://ror.org/03599d813 Ochanomizu University お茶の氓儳子大学'),
(97628, 'https://ror.org/02f40zc51', 'es', 1, 'https://ror.org/02f40zc51 Universidad de Salamanca University of Salamanca'),
(97629, 'https://ror.org/02btqjz37', 'fr', 1, 'https://ror.org/02btqjz37 Ɖcole Nationale SupĆ©rieure d''Architecture de Strasbourg'),
(97630, 'https://ror.org/01qs45p40', 'en', 1, 'https://ror.org/01qs45p40 Otis College of Art and Design'),
(97631, 'https://ror.org/03sgz3g22', 'en', 1, 'https://ror.org/03sgz3g22 Mid Cheshire College'),
(97632, 'https://ror.org/025ecfn45', 'en', 1, 'https://ror.org/025ecfn45 Harvey Mudd College'),
(97633, 'https://ror.org/0039pbm21', 'en', 1, 'https://ror.org/0039pbm21 College of Physicians and Surgeons Pakistan'),
(97634, 'https://ror.org/02487ts63', 'en', 1, 'https://ror.org/02487ts63 Malaghan Institute of Medical Research'),
(97635, 'https://ror.org/05wyqp450', 'hu', 1, 'https://ror.org/05wyqp450 Apor Vilmos Catholic College Apor Vilmos Katolikus Főiskola'),
(97636, 'https://ror.org/02sffrq32', 'en', 1, 'https://ror.org/02sffrq32 Glasgow Clyde College'),
(97637, 'https://ror.org/04q77sg93', 'fr', 1, 'https://ror.org/04q77sg93 Collège de Maisonneuve Cégep de Maisonneuve'),
(97638, 'https://ror.org/01c5wha71', 'en', 1, 'https://ror.org/01c5wha71 Tun Hussein Onn University of Malaysia Universiti Tun Hussein Onn Malaysia'),
(97639, 'https://ror.org/0008kv292', 'en', 1, 'https://ror.org/0008kv292 Marymount University'),
(97640, 'https://ror.org/04rctme81', 'en', 1, 'https://ror.org/04rctme81 Guangdong Technion-Israel Institute of Technology å¹æäøœä»„č‰²åˆ—ē†å·„å­¦é™¢'),
(97641, 'https://ror.org/0430b4z40', 'en', 1, 'https://ror.org/0430b4z40 Full Sail University'),
(97642, 'https://ror.org/015jmes13', 'en', 1, 'https://ror.org/015jmes13 South Dakota State University Universidad Estatal de Dakota del Sur UniversitĆ© d''Ɖtat du Dakota du Sud'),
(97643, 'https://ror.org/04w3d2v20', 'en', 1, 'https://ror.org/04w3d2v20 Prifysgol Gorllewin yr Alban University of the West of Scotland'),
(97644, 'https://ror.org/02nmavx05', 'pt', 1, 'https://ror.org/02nmavx05 Insper Insper - Instituto de Ensino e Pesquisa'),
(97645, 'https://ror.org/03y4dt428', 'en', 1, 'https://ror.org/03y4dt428 University of Nottingham Ningbo China 宁波诺丁汉大学'),
(97646, 'https://ror.org/03m5hk977', 'hu', 1, 'https://ror.org/03m5hk977 PĆ©csi Püspƶki HittudomĆ”nyi Főiskola'),
(97647, 'https://ror.org/036h65h05', 'en', 1, 'https://ror.org/036h65h05 Hebei University of Engineering ę²³åŒ—å·„ēØ‹å¤§å­¦'),
(97648, 'https://ror.org/028vqfs63', 'en', 1, 'https://ror.org/028vqfs63 Amherst College'),
(97649, 'https://ror.org/01mkqqe32', 'en', 1, 'https://ror.org/01mkqqe32 Lanzhou University 兰州大学'),
(97650, 'https://ror.org/01khqgw87', 'tr', 1, 'https://ror.org/01khqgw87 Istanbul Galata University İstanbul Galata Üniversitesi'),
(97651, 'https://ror.org/016sewp10', 'en', 1, 'https://ror.org/016sewp10 Rhodes University'),
(97652, 'https://ror.org/02ypw0a72', 'fr', 1, 'https://ror.org/02ypw0a72 Brest National Engineering School Ɖcole nationale d''ingĆ©nieurs de Brest'),
(97653, 'https://ror.org/02ep9vf55', 'en', 1, 'https://ror.org/02ep9vf55 University of Wisconsin–River Falls UniversitĆ© du Wisconsin–River Falls'),
(97654, 'https://ror.org/02dzjmc73', 'en', 1, 'https://ror.org/02dzjmc73 Üsküdar University Üsküdar Üniversitesi'),
(97655, 'https://ror.org/00aad7q36', 'en', 1, 'https://ror.org/00aad7q36 Fort Lewis College'),
(97656, 'https://ror.org/037s24f05', 'en', 1, 'https://ror.org/037s24f05 Clemson University UniversitƩ de clemson'),
(97657, 'https://ror.org/05c24ew78', 'en', 1, 'https://ror.org/05c24ew78 Walsall College'),
(97658, 'https://ror.org/02qkhhn56', 'en', 1, 'https://ror.org/02qkhhn56 Indian Institute of Technology Ropar ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø,ą¤°ą„‹ą¤Ŗą¤”ą¤¼ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®Ŗą®žąÆą®šą®¾ą®ŖąÆ'),
(97659, 'https://ror.org/00mpz5a50', 'en', 1, 'https://ror.org/00mpz5a50 Quinnipiac University'),
(97660, 'https://ror.org/05d5f5m07', 'en', 1, 'https://ror.org/05d5f5m07 Dhofar University Ų¬Ų§Ł…Ų¹Ų© ظفار'),
(97661, 'https://ror.org/02fsagg23', 'de', 1, 'https://ror.org/02fsagg23 Swissuniversities'),
(97662, 'https://ror.org/02svzjn28', 'no_lang_code', 1, 'https://ror.org/02svzjn28 Walter Sisulu University'),
(97663, 'https://ror.org/03j3dbz94', 'en', 1, 'https://ror.org/03j3dbz94 Trinity College'),
(97664, 'https://ror.org/03ygmq230', 'en', 1, 'https://ror.org/03ygmq230 Trent University UniversitƩ de trent'),
(97665, 'https://ror.org/019tbdj08', 'en', 1, 'https://ror.org/019tbdj08 Acadamh Rƭoga na hƉireann Royal Irish Academy'),
(97666, 'https://ror.org/002ez5845', 'en', 1, 'https://ror.org/002ez5845 SzínhÔz- és Filmművészeti Egyetem University of Theatre and Film Arts'),
(97667, 'https://ror.org/052rphn09', 'en', 1, 'https://ror.org/052rphn09 Foundation for Research and Technology Hellas ĪŠĪ“ĻĻ…Ī¼Ī± Τεχνολογίας και ĪˆĻĪµĻ…Ī½Ī±Ļ‚'),
(97668, 'https://ror.org/04w5ec154', 'en', 1, 'https://ror.org/04w5ec154 Universiteit voor Humanistiek University of Humanistic Studies'),
(97669, 'https://ror.org/0282ggx30', 'en', 1, 'https://ror.org/0282ggx30 Wuhan Business University'),
(97670, 'https://ror.org/004ah3r71', 'en', 1, 'https://ror.org/004ah3r71 Sinop University Sinop Üniversitesi'),
(97671, 'https://ror.org/023hj5876', 'en', 1, 'https://ror.org/023hj5876 Dalian University of Technology å¤§čæžē†å·„å¤§å­¦'),
(97672, 'https://ror.org/01knv0402', 'no_lang_code', 1, 'https://ror.org/01knv0402 Linyi University 专沂大学'),
(97673, 'https://ror.org/04c152q53', 'tr', 1, 'https://ror.org/04c152q53 İzmir Democracy University İzmir Demokrasi Üniversitesi'),
(97674, 'https://ror.org/01kj4z117', 'en', 1, 'https://ror.org/01kj4z117 Southwest University č„æå—å¤§å­¦'),
(97675, 'https://ror.org/056wqre19', 'en', 1, 'https://ror.org/056wqre19 Ƈankaya University Ƈankaya Ɯniversitesi'),
(97676, 'https://ror.org/03s5t0r17', 'en', 1, 'https://ror.org/03s5t0r17 National Institute of Biology'),
(97677, 'https://ror.org/0583a0t97', 'en', 1, 'https://ror.org/0583a0t97 TemesvĆ”ri Nyugati TudomĆ”nyegyetem Universitatea de Vest din Timișoara West University of Timişoara'),
(97678, 'https://ror.org/022atwn53', 'en', 1, 'https://ror.org/022atwn53 Berkshire College of Agriculture'),
(97679, 'https://ror.org/018afyw53', 'en', 1, 'https://ror.org/018afyw53 GESIS - Leibniz-Institut für Sozialwissenschaften GESIS - Leibniz-Institute for the Social Sciences'),
(97680, 'https://ror.org/052g8jq94', 'ca', 1, 'https://ror.org/052g8jq94 Autonomous University of Barcelona Bartzelonako Unibertsitate Autonomoa Universidad Autónoma de Barcelona Universidade Autónoma de Barcelona Universitat Autònoma de Barcelona'),
(97681, 'https://ror.org/04f0qj703', 'en', 1, 'https://ror.org/04f0qj703 Robert Gordon University'),
(97682, 'https://ror.org/04ddfwm68', 'no_lang_code', 1, 'https://ror.org/04ddfwm68 Shenyang University'),
(97683, 'https://ror.org/002tx1f22', 'en', 1, 'https://ror.org/002tx1f22 Cleveland State University UniversitĆ© d''Ɖtat de cleveland'),
(97684, 'https://ror.org/05sjwtp51', 'en', 1, 'https://ror.org/05sjwtp51 Bryn Mawr College'),
(97685, 'https://ror.org/03hknyb50', 'en', 1, 'https://ror.org/03hknyb50 Jimei University é›†ē¾Žå¤§å­¦'),
(97686, 'https://ror.org/010r6td27', 'en', 1, 'https://ror.org/010r6td27 Digital Research Alliance of Canada L’Alliance de recherche numĆ©rique du Canada'),
(97687, 'https://ror.org/05rp1t554', 'en', 1, 'https://ror.org/05rp1t554 Yulin University ę¦†ęž—å­¦é™¢'),
(97688, 'https://ror.org/03svjbs84', 'en', 1, 'https://ror.org/03svjbs84 Liverpool School of Tropical Medicine'),
(97689, 'https://ror.org/02xsgn598', 'en', 1, 'https://ror.org/02xsgn598 Chaminade University of Honolulu'),
(97690, 'https://ror.org/00tkrft03', 'en', 1, 'https://ror.org/00tkrft03 Hƶgskolan Kristianstad Kristianstad University Kristianstadin korkeakoulu'),
(97691, 'https://ror.org/0511cmw96', 'en', 1, 'https://ror.org/0511cmw96 Indiana University of Pennsylvania Universidad de Pensilvania en Indiana'),
(97692, 'https://ror.org/02nwg5t34', 'en', 1, 'https://ror.org/02nwg5t34 Prifysgol Gorllewin Lloegr University of the West of England'),
(97693, 'https://ror.org/05abbep66', 'en', 1, 'https://ror.org/05abbep66 Brandeis University'),
(97694, 'https://ror.org/030bhh786', 'en', 1, 'https://ror.org/030bhh786 ShanghaiTech University äøŠęµ·ē§‘ęŠ€å¤§å­¦'),
(97695, 'https://ror.org/0597jba28', 'pt', 1, 'https://ror.org/0597jba28 Instituto Superior de Contabilidade e Administração de Coimbra'),
(97696, 'https://ror.org/042ejbk14', 'en', 1, 'https://ror.org/042ejbk14 Ardahan University Ardahan Ɯniversitesi ʏrdəhan Universiteti'),
(97697, 'https://ror.org/042v6xz23', 'en', 1, 'https://ror.org/042v6xz23 Nanchang University å—ę˜Œå¤§å­¦'),
(97698, 'https://ror.org/00zxgnq18', 'en', 1, 'https://ror.org/00zxgnq18 NORDUnet'),
(97699, 'https://ror.org/0052k0e03', 'en', 1, 'https://ror.org/0052k0e03 Mykolas Romeris University Mykolo Romerio universitetas'),
(97700, 'https://ror.org/01ck3zk14', 'pl', 1, 'https://ror.org/01ck3zk14 Społeczna Akademia Nauk University of Social Sciences'),
(97701, 'https://ror.org/00cta1n89', 'en', 1, 'https://ror.org/00cta1n89 Moholy-Nagy Művészeti Egyetem Moholy-Nagy University of Art and Design'),
(97702, 'https://ror.org/051mrsz47', 'en', 1, 'https://ror.org/051mrsz47 Hƶgskolan i Skƶvde University of Skƶvde'),
(97703, 'https://ror.org/007y6q934', 'fr', 1, 'https://ror.org/007y6q934 TƉLUQ University UniversitĆ© TƉLUQ'),
(97704, 'https://ror.org/05w60wm13', 'en', 1, 'https://ror.org/05w60wm13 Coast Mountain College'),
(97705, 'https://ror.org/04h699437', 'en', 1, 'https://ror.org/04h699437 University of Leicester'),
(97706, 'https://ror.org/0373a6k33', 'en', 1, 'https://ror.org/0373a6k33 Tokyo Ariake University of Medical and Health Sciences ę±äŗ¬ęœ‰ę˜ŽåŒ»ē™‚å¤§å­¦'),
(97707, 'https://ror.org/05xedqd83', 'es', 1, 'https://ror.org/05xedqd83 Universidad Regional Amazónica IKIAM'),
(97708, 'https://ror.org/056am2717', 'en', 1, 'https://ror.org/056am2717 Brock University'),
(97709, 'https://ror.org/05v9jqt67', 'en', 1, 'https://ror.org/05v9jqt67 South China Agricultural University åŽå—å†œäøšå¤§å­¦'),
(97710, 'https://ror.org/043mgze97', 'en', 1, 'https://ror.org/043mgze97 Maryland Institute College of Art'),
(97711, 'https://ror.org/03js1g511', 'en', 1, 'https://ror.org/03js1g511 Centurion University of Technology and Management ą¦øą§‡ą¦žą§ą¦šą§ą¦°ą¦æą¦Æą¦¼ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(97712, 'https://ror.org/0174shg90', 'es', 1, 'https://ror.org/0174shg90 Universidad de Extremadura University of Extremadura'),
(97713, 'https://ror.org/02wbxt087', 'en', 1, 'https://ror.org/02wbxt087 Selby College'),
(97714, 'https://ror.org/01w0v6m22', 'en', 1, 'https://ror.org/01w0v6m22 Tamil Nadu Physical Education and Sports University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®‰ą®Ÿą®±ąÆą®•ą®²ąÆą®µą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®æą®³ąÆˆą®Æą®¾ą®ŸąÆą®ŸąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(97715, 'https://ror.org/01e6ksd91', 'it', 1, 'https://ror.org/01e6ksd91 UniversitĆ  Iuav di Venezia'),
(97716, 'https://ror.org/02336z538', 'en', 1, 'https://ror.org/02336z538 Duquesne University'),
(97717, 'https://ror.org/05ans4e98', 'es', 1, 'https://ror.org/05ans4e98 ESS Bilbao'),
(97718, 'https://ror.org/04fnxsj42', 'en', 1, 'https://ror.org/04fnxsj42 University of North Carolina at Greensboro UniversitƩ de caroline du nord Ơ greensboro'),
(97719, 'https://ror.org/049bh0z35', 'en', 1, 'https://ror.org/049bh0z35 Kungliga biblioteket National Library of Sweden Ruotsin kuninkaallinen kirjasto'),
(97720, 'https://ror.org/05h7xva58', 'en', 1, 'https://ror.org/05h7xva58 Universidad Wesleyana Wesleyan University'),
(97721, 'https://ror.org/037a0a928', 'en', 1, 'https://ror.org/037a0a928 Lancaster and Morecambe College'),
(97722, 'https://ror.org/0528rdx54', 'en', 1, 'https://ror.org/0528rdx54 East Berkshire College'),
(97723, 'https://ror.org/01htwz965', 'nl', 1, 'https://ror.org/01htwz965 Politieacademie'),
(97724, 'https://ror.org/05hqf1284', 'en', 1, 'https://ror.org/05hqf1284 Chongqing Technology and Business University é‡åŗ†å·„å•†å¤§å­¦'),
(97725, 'https://ror.org/0093a8w51', 'en', 1, 'https://ror.org/0093a8w51 Blekinge Institute of Technology Blekinge tekniska hƶgskola Blekingen teknillinen korkeakoulu'),
(97726, 'https://ror.org/017afg044', 'en', 1, 'https://ror.org/017afg044 Education and Research Library of the Pilsen Region'),
(97727, 'https://ror.org/01wb6tr49', 'en', 1, 'https://ror.org/01wb6tr49 Kyambogo University'),
(97728, 'https://ror.org/008e3hf02', 'en', 1, 'https://ror.org/008e3hf02 Central University of Finance and Economics äø­å¤®č“¢ē»å¤§å­¦'),
(97729, 'https://ror.org/03frj4r98', 'en', 1, 'https://ror.org/03frj4r98 Japan Advanced Institute of Science and Technology åŒ—é™øå…ˆē«Æē§‘å­¦ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(97730, 'https://ror.org/05x2td559', 'en', 1, 'https://ror.org/05x2td559 Tianjin Normal University 天擄师范大学'),
(97731, 'https://ror.org/03126ng80', 'en', 1, 'https://ror.org/03126ng80 University of Aosta Valley UniversitƠ della Valle d''Aosta UniversitƩ de la vallƩe d''aoste'),
(97732, 'https://ror.org/04j757h98', 'en', 1, 'https://ror.org/04j757h98 Victoria University'),
(97733, 'https://ror.org/043a7rc44', 'fr', 1, 'https://ror.org/043a7rc44 Catholic University of Paris Institut catholique de paris'),
(97734, 'https://ror.org/016ebag96', 'en', 1, 'https://ror.org/016ebag96 Korea National Open University ķ•œźµ­ė°©ģ†”ķ†µģ‹ ėŒ€ķ•™źµ'),
(97735, 'https://ror.org/04askxv05', 'en', 1, 'https://ror.org/04askxv05 Hunan University of Finance and Economics ę¹–å—č“¢ę”æē»ęµŽå­¦é™¢'),
(97736, 'https://ror.org/02bdemg64', 'en', 1, 'https://ror.org/02bdemg64 Xiamen National Accounting Institute å›½å®¶ä¼šč®”å­¦é™¢'),
(97737, 'https://ror.org/01gnd8r41', 'en', 1, 'https://ror.org/01gnd8r41 HÔskólinn Ô Akureyri University of Akureyri'),
(97738, 'https://ror.org/01a5ke137', 'cs', 1, 'https://ror.org/01a5ke137 Nemocnice PardubickƩho Kraje'),
(97739, 'https://ror.org/036b2ww28', 'es', 1, 'https://ror.org/036b2ww28 Universidad de MƔlaga Universitat de MƠlaga University of Malaga'),
(97740, 'https://ror.org/03r1jm528', 'en', 1, 'https://ror.org/03r1jm528 Nelson Mandela Metropolitaanse Universiteit Nelson Mandela University'),
(97741, 'https://ror.org/05k1va520', 'no_lang_code', 1, 'https://ror.org/05k1va520 National NanoFab Center ė‚˜ė…øģ¢…ķ•©źø°ģˆ ģ›'),
(97742, 'https://ror.org/05fg6gr82', 'en', 1, 'https://ror.org/05fg6gr82 University of Macedonia UniversitĆ© de macĆ©doine Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(97743, 'https://ror.org/02qn6fq95', 'en', 1, 'https://ror.org/02qn6fq95 National Institute of Fashion Technology ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤«ą¤¼ą„ˆą¤¶ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤«ą„ˆą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą¤¾ą¤²ą„‰ą¤œą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¦Øą§ą¦Æą¦¾ą¦¶ą¦¾ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦«ą§ą¦Æą¦¾ą¦¶ą¦Ø ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą®¤ąÆ‡ą®šą®æą®Æ ą®‰ą®ŸąÆˆą®Æą®²ą®™ąÆą®•ą®¾ą®° ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(97744, 'https://ror.org/01zdaff53', 'en', 1, 'https://ror.org/01zdaff53 Metropolitan University Prague MetropolitnĆ­ univerzita Praha'),
(97745, 'https://ror.org/03xvggv44', 'en', 1, 'https://ror.org/03xvggv44 Huaiyin Normal University ę·®é˜“åøˆčŒƒå­¦é™¢'),
(97746, 'https://ror.org/01m59r132', 'en', 1, 'https://ror.org/01m59r132 Akdeniz University Akdeniz Üniversitesi'),
(97747, 'https://ror.org/05c4w7j07', 'en', 1, 'https://ror.org/05c4w7j07 College of Polytechnics Jihlava VysokÔ Ŕkola polytechnickÔ Jihlava'),
(97748, 'https://ror.org/00bge3r76', 'en', 1, 'https://ror.org/00bge3r76 The University of Law'),
(97749, 'https://ror.org/033z08192', 'en', 1, 'https://ror.org/033z08192 Central University of Technology'),
(97750, 'https://ror.org/01zhpv322', 'en', 1, 'https://ror.org/01zhpv322 Muscat College'),
(97751, 'https://ror.org/05wf30g94', 'en', 1, 'https://ror.org/05wf30g94 Creighton University'),
(97752, 'https://ror.org/01dzn5f42', 'en', 1, 'https://ror.org/01dzn5f42 Istanbul University-Cerrahpaşa İstanbul Üniversitesi-Cerrahpaşa'),
(97753, 'https://ror.org/026cfwd52', 'en', 1, 'https://ror.org/026cfwd52 Gautam Buddha University ą¤—ą„Œą¤¤ą¤® ą¤¬ą„ą¤¦ą„ą¤§ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®•ąÆŒą®¤ą®®ąÆ ą®ŖąÆą®¤ąÆą®¤ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(97754, 'https://ror.org/01cg9ws23', 'en', 1, 'https://ror.org/01cg9ws23 Transylvania University of Brașov Universitatea Transilvania din Brașov'),
(97755, 'https://ror.org/02m1x7h09', 'en', 1, 'https://ror.org/02m1x7h09 Kujawsko-Pomorska Szkoła Wyższa w Bydgoszczy Kujawy and Pomorze University in Bydgoszcz'),
(97756, 'https://ror.org/00fn7gb05', 'en', 1, 'https://ror.org/00fn7gb05 UniversitƩ wilfrid-laurier Wilfrid Laurier University'),
(97757, 'https://ror.org/03dzc0485', 'en', 1, 'https://ror.org/03dzc0485 University of Regina UniversitƩ de regina'),
(97758, 'https://ror.org/006t72359', 'en', 1, 'https://ror.org/006t72359 Norwich BioScience Institutes'),
(97759, 'https://ror.org/045hgzm75', 'en', 1, 'https://ror.org/045hgzm75 SelƧuk University SelƧuk Ɯniversitesi Səlcuq Universiteti'),
(97760, 'https://ror.org/03j1z6h17', 'en', 1, 'https://ror.org/03j1z6h17 KrajskĆ” knihovna Vysočiny Vysočina Regional Library'),
(97761, 'https://ror.org/041c9x778', 'en', 1, 'https://ror.org/041c9x778 Jianghan University ę±Ÿę±‰å¤§å­¦'),
(97762, 'https://ror.org/0038jbq24', 'en', 1, 'https://ror.org/0038jbq24 Bath Spa University'),
(97763, 'https://ror.org/020vvc407', 'en', 1, 'https://ror.org/020vvc407 Gaziantep University Gaziantep Üniversitesi'),
(97764, 'https://ror.org/0040axw97', 'en', 1, 'https://ror.org/0040axw97 Yunnan University äŗ‘å—å¤§å­¦'),
(97765, 'https://ror.org/006jb1a24', 'en', 1, 'https://ror.org/006jb1a24 Bangor University Prifysgol Bangor'),
(97766, 'https://ror.org/02ydh7m84', 'en', 1, 'https://ror.org/02ydh7m84 Dickinson College'),
(97767, 'https://ror.org/012k1v959', 'en', 1, 'https://ror.org/012k1v959 Hochschule München University of Applied Sciences Munich University of Applied Sciences'),
(97768, 'https://ror.org/00a6yph09', 'en', 1, 'https://ror.org/00a6yph09 University Hospital Ostrava'),
(97769, 'https://ror.org/05n0qbd70', 'en', 1, 'https://ror.org/05n0qbd70 Fujian University of Traditional Chinese Medicine ē¦å»ŗēœäø­åŒ»čÆē ”ē©¶é™¢'),
(97770, 'https://ror.org/044cse639', 'en', 1, 'https://ror.org/044cse639 Universidad de O''Higgins University of O''Higgins'),
(97771, 'https://ror.org/01awv9175', 'en', 1, 'https://ror.org/01awv9175 Longwood University'),
(97772, 'https://ror.org/003yn7c76', 'en', 1, 'https://ror.org/003yn7c76 Bates College'),
(97773, 'https://ror.org/03qt6ba18', 'en', 1, 'https://ror.org/03qt6ba18 Georgia State University'),
(97774, 'https://ror.org/047p7y759', 'en', 1, 'https://ror.org/047p7y759 Pace University'),
(97775, 'https://ror.org/05th6yx34', 'en', 1, 'https://ror.org/05th6yx34 Anhui University 安徽大学'),
(97776, 'https://ror.org/00jjkh886', 'en', 1, 'https://ror.org/00jjkh886 Zhoukou Normal University'),
(97777, 'https://ror.org/02ftvf862', 'en', 1, 'https://ror.org/02ftvf862 Sohar University Ų¬Ų§Ł…Ų¹Ų© ŲµŲ­Ų§Ų±'),
(97778, 'https://ror.org/01pxc4g62', 'en', 1, 'https://ror.org/01pxc4g62 Central Conservatory of Music äø­å¤®éŸ³ä¹å­¦é™¢'),
(97779, 'https://ror.org/021v3qy27', 'en', 1, 'https://ror.org/021v3qy27 Universidad de Dayton University of Dayton UniversitƩ de dayton'),
(97780, 'https://ror.org/03kgwb284', 'en', 1, 'https://ror.org/03kgwb284 Central University of Odisha ओऔिशा ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ଓଔ଼ିଶା ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ą¬¬ą¬æą¬¶ą­ą¬¬ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(97781, 'https://ror.org/012tjde79', 'en', 1, 'https://ror.org/012tjde79 Tianjin Vocational Institute 天擄职业大学'),
(97782, 'https://ror.org/056y3dw16', 'en', 1, 'https://ror.org/056y3dw16 Hubei Normal University ę¹–åŒ—åøˆčŒƒå­¦é™¢'),
(97783, 'https://ror.org/01621q256', 'en', 1, 'https://ror.org/01621q256 Coastal Carolina University'),
(97784, 'https://ror.org/00dz1eb96', 'en', 1, 'https://ror.org/00dz1eb96 Yaşar University Yaşar Üniversitesi'),
(97785, 'https://ror.org/04f81fm77', 'tr', 1, 'https://ror.org/04f81fm77 Sivas Cumhuriyet University Sivas Cumhuriyet Üniversitesi'),
(97786, 'https://ror.org/05pjkyk24', 'en', 1, 'https://ror.org/05pjkyk24 Hechi University 河池学院'),
(97787, 'https://ror.org/05v9kya57', 'en', 1, 'https://ror.org/05v9kya57 PƔzmƔny PƩter Catholic University PƔzmƔny PƩter Katolikus Egyetem'),
(97788, 'https://ror.org/02c9qn167', 'en', 1, 'https://ror.org/02c9qn167 Guangxi University 广脿大学'),
(97789, 'https://ror.org/0285rh439', 'en', 1, 'https://ror.org/0285rh439 TED University'),
(97790, 'https://ror.org/023ent443', 'en', 1, 'https://ror.org/023ent443 Coleg Brenhinol Cerdd a Drama Cymru Royal Welsh College of Music and Drama'),
(97791, 'https://ror.org/03z28gk75', 'en', 1, 'https://ror.org/03z28gk75 Teesside University'),
(97792, 'https://ror.org/0009eqg37', 'pt', 1, 'https://ror.org/0009eqg37 Instituto Federal Fluminense'),
(97793, 'https://ror.org/02s4gkg68', 'en', 1, 'https://ror.org/02s4gkg68 Adıyaman University Adıyaman Üniversitesi'),
(97794, 'https://ror.org/05v62cm79', 'en', 1, 'https://ror.org/05v62cm79 University of Reading'),
(97795, 'https://ror.org/04xtx5t16', 'en', 1, 'https://ror.org/04xtx5t16 DePaul University'),
(97796, 'https://ror.org/00rbjv475', 'en', 1, 'https://ror.org/00rbjv475 Netherlands eScience Center'),
(97797, 'https://ror.org/03e26wv14', 'en', 1, 'https://ror.org/03e26wv14 California State University, Sacramento Universidad Estatal de Sacramento UniversitĆ© d''Ɖtat de californie Ć  sacramento'),
(97798, 'https://ror.org/04v5nzb91', 'en', 1, 'https://ror.org/04v5nzb91 Central University of Himachal Pradesh'),
(97799, 'https://ror.org/05rbnsr42', 'en', 1, 'https://ror.org/05rbnsr42 Macclesfield College'),
(97800, 'https://ror.org/0315hfb21', 'en', 1, 'https://ror.org/0315hfb21 Rakai Health Sciences Program'),
(97801, 'https://ror.org/00xtsag93', 'en', 1, 'https://ror.org/00xtsag93 Jilin Normal University å‰ęž—åøˆčŒƒå¤§å­¦'),
(97802, 'https://ror.org/03k7r0z51', 'de', 1, 'https://ror.org/03k7r0z51 Fachhochschule Wiener Neustadt University of Applied Sciences Wiener Neustadt'),
(97803, 'https://ror.org/00f809463', 'en', 1, 'https://ror.org/00f809463 Institute for Advanced Study'),
(97804, 'https://ror.org/02y84bs66', 'en', 1, 'https://ror.org/02y84bs66 Hellenic Naval Academy Σχολή ĪĪ±Ļ…Ļ„Ī¹ĪŗĻŽĪ½ Δοκίμων'),
(97805, 'https://ror.org/02rex9304', 'en', 1, 'https://ror.org/02rex9304 Fareham College'),
(97806, 'https://ror.org/01q349q17', 'en', 1, 'https://ror.org/01q349q17 Hubei University for Nationalities ę¹–åŒ—ę°‘ę—å­¦é™¢'),
(97807, 'https://ror.org/04fp4ps48', 'en', 1, 'https://ror.org/04fp4ps48 Franklin & Marshall College'),
(97808, 'https://ror.org/010kva064', 'en', 1, 'https://ror.org/010kva064 Southern Oregon University'),
(97809, 'https://ror.org/02kn6nx58', 'en', 1, 'https://ror.org/02kn6nx58 Keio University 慶應義唾大学'),
(97810, 'https://ror.org/035psfh38', 'en', 1, 'https://ror.org/035psfh38 Donghua University äøœåŽå¤§å­¦'),
(97811, 'https://ror.org/00w4qrc49', 'en', 1, 'https://ror.org/00w4qrc49 Liberty University'),
(97812, 'https://ror.org/02k5kx966', 'es', 1, 'https://ror.org/02k5kx966 Technical University of Cartagena Universidad PolitƩcnica de Cartagena'),
(97813, 'https://ror.org/02g9nss57', 'en', 1, 'https://ror.org/02g9nss57 Anyang Normal University å®‰é˜³åøˆčŒƒå­¦é™¢'),
(97814, 'https://ror.org/05d80kz58', 'en', 1, 'https://ror.org/05d80kz58 Henan University of Science and Technology ę²³å—ē§‘ęŠ€å¤§å­¦'),
(97815, 'https://ror.org/01gb8pc70', 'en', 1, 'https://ror.org/01gb8pc70 University of Wisconsin–Stout UniversitĆ© du Wisconsin–Stout'),
(97816, 'https://ror.org/01p0a2d88', 'en', 1, 'https://ror.org/01p0a2d88 Belfast Metropolitan College'),
(97817, 'https://ror.org/051r3tx83', 'en', 1, 'https://ror.org/051r3tx83 North Carolina Central University UniversitƩ centrale de caroline du nord'),
(97818, 'https://ror.org/006er0w72', 'en', 1, 'https://ror.org/006er0w72 Usmanu Danfodiyo University YunifƔsƭtƬ Usman Dan Fodio'),
(97819, 'https://ror.org/046pqvy32', 'en', 1, 'https://ror.org/046pqvy32 University of the Visual & Performing Arts ą®•ą®ŸąÆą®ŖąÆą®² ą®†ą®±ąÆą®±ąÆą®•ąÆˆą®•ąÆ ą®•ą®²ąÆˆą®•ą®³ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(97820, 'https://ror.org/03zzmyz63', 'en', 1, 'https://ror.org/03zzmyz63 Philadelphia University UniversitƩ de philadelphie'),
(97821, 'https://ror.org/056m91h77', 'en', 1, 'https://ror.org/056m91h77 Shaanxi University of Technology 陕脿理巄大学'),
(97822, 'https://ror.org/02jqzm779', 'tr', 1, 'https://ror.org/02jqzm779 Atlas University Atlas Üniversitesi'),
(97823, 'https://ror.org/028k5qw24', 'en', 1, 'https://ror.org/028k5qw24 Ondokuz Mayıs University Ondokuz Mayıs Üniversitesi'),
(97824, 'https://ror.org/02bmftj86', 'en', 1, 'https://ror.org/02bmftj86 Azusa Pacific University'),
(97825, 'https://ror.org/025wzwv46', 'en', 1, 'https://ror.org/025wzwv46 University of Northern British Columbia'),
(97826, 'https://ror.org/01t3wyv61', 'en', 1, 'https://ror.org/01t3wyv61 National Institute for Fusion Science ę øčžåˆē§‘å­¦ē ”ē©¶ę‰€'),
(97827, 'https://ror.org/037wqvd92', 'en', 1, 'https://ror.org/037wqvd92 Conservatoire RƬoghail na h-Alba Royal Conservatoire of Scotland'),
(97828, 'https://ror.org/045ntgf29', 'en', 1, 'https://ror.org/045ntgf29 Oklahoma State University System'),
(97829, 'https://ror.org/025y36b60', 'tr', 1, 'https://ror.org/025y36b60 Ankara Sosyal Bilimler Üniversitesi'),
(97830, 'https://ror.org/025n5kj18', 'en', 1, 'https://ror.org/025n5kj18 Zhaoqing University 肇庆学院'),
(97831, 'https://ror.org/04r0hn449', 'en', 1, 'https://ror.org/04r0hn449 Ordu University Ordu Üniversitesi'),
(97832, 'https://ror.org/0080fxk18', 'en', 1, 'https://ror.org/0080fxk18 California State University, Long Beach Universidad Estatal de California, Long Beach UniversitĆ© d''Ɖtat de californie Ć  long beach'),
(97833, 'https://ror.org/02evg3h34', 'sk', 1, 'https://ror.org/02evg3h34 AkadƩmia Umenƭ v Banskej Bystrici'),
(97834, 'https://ror.org/017d8gk22', 'en', 1, 'https://ror.org/017d8gk22 Morgan State University Universidad Estatal de Morgan UniversitĆ© d''Ɖtat morgan'),
(97835, 'https://ror.org/03tf0c761', 'en', 1, 'https://ror.org/03tf0c761 Finnish Institute for Health and Welfare'),
(97836, 'https://ror.org/03964fn67', 'en', 1, 'https://ror.org/03964fn67 Manipur University ą¤®ą¤£ą¤æą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(97837, 'https://ror.org/04wb96h67', 'fr', 1, 'https://ror.org/04wb96h67 Agence de Mutualisation des UniversitƩs et Etablissements'),
(97838, 'https://ror.org/03dgaqz26', 'en', 1, 'https://ror.org/03dgaqz26 Chongqing University of Posts and Telecommunications é‡åŗ†é‚®ē”µå¤§å­¦'),
(97839, 'https://ror.org/032e6b942', 'de', 1, 'https://ror.org/032e6b942 Alfred-Wegener-Institut Helmholtz-Zentrum für Polar- und Meeresforschung'),
(97840, 'https://ror.org/045e26x92', 'en', 1, 'https://ror.org/045e26x92 Gettysburg College'),
(97841, 'https://ror.org/05ctdxz19', 'en', 1, 'https://ror.org/05ctdxz19 University of Messina UniversitƠ degli Studi di Messina UniversitƤt Messina UniversitƩ de messine'),
(97842, 'https://ror.org/01xtv3204', 'en', 1, 'https://ror.org/01xtv3204 University of Foggia UniversitƠ degli Studi di Foggia UniversitƩ de foggia'),
(97843, 'https://ror.org/02cntrd02', 'en', 1, 'https://ror.org/02cntrd02 Wayne State College'),
(97844, 'https://ror.org/03k174p87', 'en', 1, 'https://ror.org/03k174p87 Xuchang University'),
(97845, 'https://ror.org/0096c7651', 'en', 1, 'https://ror.org/0096c7651 North China Institute of Science and Technology åŽåŒ—ē§‘ęŠ€å­¦é™¢'),
(97846, 'https://ror.org/00hjr9f41', 'en', 1, 'https://ror.org/00hjr9f41 Mott Community College'),
(97847, 'https://ror.org/03y3e3s17', 'en', 1, 'https://ror.org/03y3e3s17 Shanxi University 山脿大学'),
(97848, 'https://ror.org/04z1y1967', 'en', 1, 'https://ror.org/04z1y1967 National Film and Television School'),
(97849, 'https://ror.org/048sx0r50', 'en', 1, 'https://ror.org/048sx0r50 Universidad de Houston University of Houston UniversitƩ de houston'),
(97850, 'https://ror.org/04jt46d36', 'en', 1, 'https://ror.org/04jt46d36 Prince Sattam Bin Abdulaziz University Ų¬Ų§Ł…Ų¹Ų© Ų³Ų·Ų§Ł… بن Ų¹ŲØŲÆŲ§Ł„Ų¹Ų²ŁŠŲ²'),
(97851, 'https://ror.org/02dk7c653', 'en', 1, 'https://ror.org/02dk7c653 DĆŗn Laoghaire Institute of Art, Design and Technology InstitiĆŗid EalaĆ­ona,Dearadh agus TeicneolaĆ­ochta DhĆŗn Laoghaire'),
(97852, 'https://ror.org/00vya8493', 'en', 1, 'https://ror.org/00vya8493 Tokyo Metropolitan Institute of Medical Science å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬éƒ½åŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(97853, 'https://ror.org/02hmy9x20', 'en', 1, 'https://ror.org/02hmy9x20 Isparta University of Applied Sciences Isparta Uygulamalı Bilimler Üniversitesi'),
(97854, 'https://ror.org/016zyd315', 'en', 1, 'https://ror.org/016zyd315 Pan-European University Paneurópska VysokÔ Ŕkola'),
(97855, 'https://ror.org/01ythxj32', 'en', 1, 'https://ror.org/01ythxj32 Oakland University'),
(97856, 'https://ror.org/049hrzs50', 'en', 1, 'https://ror.org/049hrzs50 University of Wisconsin–Whitewater'),
(97857, 'https://ror.org/00zx7z876', 'fr', 1, 'https://ror.org/00zx7z876 Haute Ɖcole Albert Jacquard'),
(97858, 'https://ror.org/01xszvp42', 'en', 1, 'https://ror.org/01xszvp42 Akademia Sztuki w Szczecinie Szczecin Academy of Arts'),
(97859, 'https://ror.org/021036w13', 'en', 1, 'https://ror.org/021036w13 Belarusian State University Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(97860, 'https://ror.org/02sv65x64', 'en', 1, 'https://ror.org/02sv65x64 Technische Universität Nürnberg University of Technology Nuremberg'),
(97861, 'https://ror.org/026db3d50', 'en', 1, 'https://ror.org/026db3d50 Aksaray University Aksaray Üniversitesi'),
(97862, 'https://ror.org/02g0yj703', 'en', 1, 'https://ror.org/02g0yj703 Meredith College'),
(97863, 'https://ror.org/00sfg6g55', 'tr', 1, 'https://ror.org/00sfg6g55 Afyonkarahisar Health Sciences University Afyonkarahisar Sağlık Bilimleri Üniversitesi'),
(97864, 'https://ror.org/01sfm2718', 'en', 1, 'https://ror.org/01sfm2718 China Pharmaceutical University äø­å›½čÆē§‘å¤§å­¦'),
(97865, 'https://ror.org/008rwr521', 'en', 1, 'https://ror.org/008rwr521 Istanbul Health and Technology University İstanbul Sağlık ve Teknoloji Üniversitesi'),
(97866, 'https://ror.org/00nddb461', 'en', 1, 'https://ror.org/00nddb461 Hakkari University Hakkari Üniversitesi'),
(97867, 'https://ror.org/01yxwrh59', 'en', 1, 'https://ror.org/01yxwrh59 Chengdu University of Information Technology ęˆéƒ½äæ”ęÆå·„ēØ‹å¤§å­¦'),
(97868, 'https://ror.org/04y4t7k95', 'en', 1, 'https://ror.org/04y4t7k95 Istituto Nazionale di Oceanografia e di Geofisica Sperimentale National Institute of Oceanography and Applied Geophysics'),
(97869, 'https://ror.org/03f6h9044', 'en', 1, 'https://ror.org/03f6h9044 Camilo JosƩ Cela University Universidad Camilo JosƩ Cela'),
(97870, 'https://ror.org/04k5rxe29', 'en', 1, 'https://ror.org/04k5rxe29 Guangdong Medical College å¹æäøœåŒ»å­¦é™¢'),
(97871, 'https://ror.org/002g57a93', 'en', 1, 'https://ror.org/002g57a93 Eastern Washington University'),
(97872, 'https://ror.org/03dtf6g75', 'en', 1, 'https://ror.org/03dtf6g75 Salish Kootenai College'),
(97873, 'https://ror.org/03x7qhw59', 'en', 1, 'https://ror.org/03x7qhw59 Sul Ross State University UniversitĆ© d''Ɖtat Sul Ross'),
(97874, 'https://ror.org/01j9p1r26', 'en', 1, 'https://ror.org/01j9p1r26 University of L''Aquila UniversitƠ degli Studi dell''Aquila UniversitƩ de l''aquila'),
(97875, 'https://ror.org/003xyzq10', 'en', 1, 'https://ror.org/003xyzq10 Henan University ę²³å—å¤§å­¦'),
(97876, 'https://ror.org/031wwwj55', 'en', 1, 'https://ror.org/031wwwj55 University of Žilina ŽilinskÔ univerzita v Žiline'),
(97877, 'https://ror.org/01e4rvb54', 'en', 1, 'https://ror.org/01e4rvb54 Zhejiang Technical Institute of Economics ęµ™ę±ŸēœęŠ€ęœÆē»ęµŽē ”ē©¶é™¢'),
(97878, 'https://ror.org/05damtm70', 'en', 1, 'https://ror.org/05damtm70 Beijing University of Chinese Medicine åŒ—äŗ¬äø­åŒ»čÆå¤§å­¦'),
(97879, 'https://ror.org/040zce739', 'en', 1, 'https://ror.org/040zce739 Toros University Toros Üniversitesi'),
(97880, 'https://ror.org/02qp5ew04', 'en', 1, 'https://ror.org/02qp5ew04 Aquinas College'),
(97881, 'https://ror.org/0145w8333', 'en', 1, 'https://ror.org/0145w8333 Altınbaş University Altınbaş Üniversitesi'),
(97882, 'https://ror.org/03s262162', 'en', 1, 'https://ror.org/03s262162 Athens University of Economics and Business UniversitĆ© d’économie d’athĆØnes Οικονομικό Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(97883, 'https://ror.org/04zeq1c51', 'fr', 1, 'https://ror.org/04zeq1c51 Cyceron'),
(97884, 'https://ror.org/01n15vy71', 'en', 1, 'https://ror.org/01n15vy71 Sant Longowal Institute of Engineering and Technology'),
(97885, 'https://ror.org/043atn006', 'en', 1, 'https://ror.org/043atn006 Ventura College Ventura County Community College District'),
(97886, 'https://ror.org/007k3k434', 'en', 1, 'https://ror.org/007k3k434 Barnsley College'),
(97887, 'https://ror.org/00ay9v204', 'en', 1, 'https://ror.org/00ay9v204 University of Shanghai for Science and Technology äøŠęµ·ē†å·„å¤§å­¦'),
(97888, 'https://ror.org/00m7gmp97', 'en', 1, 'https://ror.org/00m7gmp97 Los Rios Community College District'),
(97889, 'https://ror.org/048kmjm50', 'en', 1, 'https://ror.org/048kmjm50 Hradec KrĆ”lovĆ© City Library Knihovna města Hradce KrĆ”lovĆ©'),
(97890, 'https://ror.org/029ecwj92', 'en', 1, 'https://ror.org/029ecwj92 Prague University of Economics and Business VysokÔ Ŕkola ekonomickÔ v Praze'),
(97891, 'https://ror.org/059qxqp56', 'en', 1, 'https://ror.org/059qxqp56 Rhythmic Music Conservatory Rytmisk Musikkonservatorium'),
(97892, 'https://ror.org/05ndh7v49', 'en', 1, 'https://ror.org/05ndh7v49 Saudi Electronic University الجامعة Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†ŁŠŲ©'),
(97893, 'https://ror.org/00wk2mp56', 'en', 1, 'https://ror.org/00wk2mp56 Beihang University åŒ—äŗ¬čˆŖē©ŗčˆŖå¤©å¤§å­¦'),
(97894, 'https://ror.org/058aeep47', 'en', 1, 'https://ror.org/058aeep47 Mendel University in Brno Mendelova univerzita v Brně'),
(97895, 'https://ror.org/04kwvgz42', 'en', 1, 'https://ror.org/04kwvgz42 Hacettepe University Hacettepe Üniversitesi'),
(97896, 'https://ror.org/022x6qg61', 'en', 1, 'https://ror.org/022x6qg61 Vassar College'),
(97897, 'https://ror.org/03a5qrr21', 'en', 1, 'https://ror.org/03a5qrr21 Istanbul University İstanbul Üniversitesi'),
(97898, 'https://ror.org/03vfw8w96', 'en', 1, 'https://ror.org/03vfw8w96 Koninklijk Belgisch Instituut voor Ruimte-Aeronomie Königlich Belgisches Institut für Raumfahrt L''Institut royal d''Aéronomie Spatiale de Belgique Royal Belgian Institute for Space Aeronomy'),
(97899, 'https://ror.org/00wtvfq62', 'en', 1, 'https://ror.org/00wtvfq62 Shanghai University of Finance and Economics äøŠęµ·č“¢ē»å¤§å­¦'),
(97900, 'https://ror.org/0162z8b04', 'en', 1, 'https://ror.org/0162z8b04 Idaho State University Universidad Estatal de Idaho UniversitĆ© d''Ɖtat d''idaho'),
(97901, 'https://ror.org/01z6bgg93', 'en', 1, 'https://ror.org/01z6bgg93 Koninklijk Instituut voor de Tropen Royal Tropical Institute'),
(97902, 'https://ror.org/059z5w858', 'en', 1, 'https://ror.org/059z5w858 Pacific University Universidad del PacĆ­fico'),
(97903, 'https://ror.org/038kffh84', 'en', 1, 'https://ror.org/038kffh84 Hellenic Centre for Marine Research'),
(97904, 'https://ror.org/04zfme737', 'en', 1, 'https://ror.org/04zfme737 Liverpool John Moores University Prifysgol John Moores, Lerpwl'),
(97905, 'https://ror.org/03cfsyg37', 'en', 1, 'https://ror.org/03cfsyg37 Hogeschool Inholland Inholland University of Applied Sciences'),
(97906, 'https://ror.org/04wkzvc75', 'en', 1, 'https://ror.org/04wkzvc75 Fairleigh Dickinson University'),
(97907, 'https://ror.org/051v6v138', 'en', 1, 'https://ror.org/051v6v138 Kaakkois Suomen Ammattikorkeakoulu South Eastern Finland University of Applied Sciences'),
(97908, 'https://ror.org/033jvzr14', 'en', 1, 'https://ror.org/033jvzr14 University of Ruhuna ą®‰ą®±ąÆą®•ąÆą®£ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ රුහුණ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗą¶ŗ'),
(97909, 'https://ror.org/00xd6tp42', 'fr', 1, 'https://ror.org/00xd6tp42 Ɖcole SupĆ©rieure des Beaux-Arts de Nantes MĆ©tropole'),
(97910, 'https://ror.org/00gqzks48', 'en', 1, 'https://ror.org/00gqzks48 Dr. B. R. Ambedkar Open University UniversitĆ© ouverte de l''andhra pradesh ą¤†ą¤Øą„ą¤§ą„ą¤°ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤–ą„ą¤²ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(97911, 'https://ror.org/02afcvw97', 'en', 1, 'https://ror.org/02afcvw97 Nantong University 南通大学'),
(97912, 'https://ror.org/054ys1f07', 'en', 1, 'https://ror.org/054ys1f07 Slovak Centre of Scientific and Technical Information'),
(97913, 'https://ror.org/01q17sd51', 'en', 1, 'https://ror.org/01q17sd51 Zhejiang Institute of Communications ęµ™ę±Ÿäŗ¤é€ščŒäøšęŠ€ęœÆå­¦é™¢'),
(97914, 'https://ror.org/01sdnnq10', 'en', 1, 'https://ror.org/01sdnnq10 Gebze Technical University Gebze Teknik Ɯniversitesi Qəbzə Texnologiya İnstitutu'),
(97915, 'https://ror.org/037jwzz50', 'en', 1, 'https://ror.org/037jwzz50 Istanbul Medipol University'),
(97916, 'https://ror.org/01jdd9713', 'en', 1, 'https://ror.org/01jdd9713 Blackburn College'),
(97917, 'https://ror.org/05mknbx32', 'en', 1, 'https://ror.org/05mknbx32 Hƶgskolan pĆ„ ƅland ƅland University of Applied Sciences'),
(97918, 'https://ror.org/00y0zf565', 'en', 1, 'https://ror.org/00y0zf565 Institute for Basic Science'),
(97919, 'https://ror.org/05ex5vz81', 'en', 1, 'https://ror.org/05ex5vz81 Bundesinstitut für Arzneimittel und Medizinprodukte Federal Institute for Drugs and Medical Devices'),
(97920, 'https://ror.org/02eva5865', 'en', 1, 'https://ror.org/02eva5865 Konrad-Zuse-Zentrum für Informationstechnik Berlin Zuse Institute Berlin'),
(97921, 'https://ror.org/01r5sf951', 'en', 1, 'https://ror.org/01r5sf951 Capital University of Economics and Business é¦–éƒ½ē»ęµŽč“øę˜“å¤§å­¦'),
(97922, 'https://ror.org/00tfmqe91', 'en', 1, 'https://ror.org/00tfmqe91 Mozarteum University of Salzburg UniversitƤt Mozarteum Salzburg'),
(97923, 'https://ror.org/013x0ky90', 'en', 1, 'https://ror.org/013x0ky90 Alexander Fleming Biomedical Sciences Research Center Ī•ĻĪµĻ…Ī½Ī·Ļ„Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ Ī’Ī¹ĪæĻŠĪ±Ļ„ĻĪ¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ ΑλέξανΓρος Φλέμιγκ'),
(97924, 'https://ror.org/0396cd675', 'en', 1, 'https://ror.org/0396cd675 Mardin Artuklu University Mardin Artuklu Üniversitesi'),
(97925, 'https://ror.org/025mx2575', 'en', 1, 'https://ror.org/025mx2575 Yeditepe University Yeditepe Üniversitesi'),
(97926, 'https://ror.org/04facbs33', 'en', 1, 'https://ror.org/04facbs33 Communication University of China 中国传媒大学'),
(97927, 'https://ror.org/05v0p1f11', 'en', 1, 'https://ror.org/05v0p1f11 Munzur University Munzur Üniversitesi'),
(97928, 'https://ror.org/05qz4zw08', 'en', 1, 'https://ror.org/05qz4zw08 Akita International University å›½éš›ę•™é¤Šå¤§å­¦'),
(97929, 'https://ror.org/052hmv319', 'no_lang_code', 1, 'https://ror.org/052hmv319 GƉANT'),
(97930, 'https://ror.org/04qtj9h94', 'en', 1, 'https://ror.org/04qtj9h94 Danmarks Tekniske Universitet DƤnemarks Technische UniversitƤt Technical University of Denmark');
INSERT INTO `rors` VALUES
(97931, 'https://ror.org/02qdtrq21', 'en', 1, 'https://ror.org/02qdtrq21 Anhui University of Technology å®‰å¾½å·„äøšå¤§å­¦'),
(97932, 'https://ror.org/02j63m808', 'en', 1, 'https://ror.org/02j63m808 Tumkur University'),
(97933, 'https://ror.org/02gn3zg65', 'en', 1, 'https://ror.org/02gn3zg65 Colorado State University Pueblo'),
(97934, 'https://ror.org/024f5m737', 'en', 1, 'https://ror.org/024f5m737 Henan Institute of Technology ę²³å—å·„å­¦é™¢'),
(97935, 'https://ror.org/02tyrky19', 'en', 1, 'https://ror.org/02tyrky19 ColÔiste na Tríonóide Baile Átha Cliath Trinity College Dublin'),
(97936, 'https://ror.org/02kjms144', 'en', 1, 'https://ror.org/02kjms144 Neapolis University Pafos Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪĪµĪ¬Ļ€ĪæĪ»Ī¹Ļ‚ Πάφου'),
(97937, 'https://ror.org/041sj0284', 'en', 1, 'https://ror.org/041sj0284 Anhui Polytechnic University 安徽巄程大学'),
(97938, 'https://ror.org/03z34n548', 'en', 1, 'https://ror.org/03z34n548 Middle East College'),
(97939, 'https://ror.org/019ts0j55', 'en', 1, 'https://ror.org/019ts0j55 California State University, Bakersfield UniversitĆ© d''Ɖtat de californie Ć  bakersfield'),
(97940, 'https://ror.org/02erqft81', 'en', 1, 'https://ror.org/02erqft81 Marshall University'),
(97941, 'https://ror.org/039xnh269', 'en', 1, 'https://ror.org/039xnh269 Yanbian University 延边大学'),
(97942, 'https://ror.org/0131d6623', 'en', 1, 'https://ror.org/0131d6623 Algoma University'),
(97943, 'https://ror.org/02309jg23', 'en', 1, 'https://ror.org/02309jg23 IT University of Copenhagen IT-Universitetet i København IT-Universität Kopenhagen'),
(97944, 'https://ror.org/05yc77b46', 'en', 1, 'https://ror.org/05yc77b46 Universidad de Córdoba Universitat de Còrdova University of Córdoba'),
(97945, 'https://ror.org/0523y5c19', 'en', 1, 'https://ror.org/0523y5c19 Shandong University of Traditional Chinese Medicine å±±äøœäø­åŒ»čÆå¤§å­¦'),
(97946, 'https://ror.org/01fmc2233', 'en', 1, 'https://ror.org/01fmc2233 Xi''an Medical University č„æå®‰åŒ»å­¦é™¢'),
(97947, 'https://ror.org/03f4gsr42', 'en', 1, 'https://ror.org/03f4gsr42 Alliance University'),
(97948, 'https://ror.org/02cms1514', 'en', 1, 'https://ror.org/02cms1514 CAMPUS 02 Fachhochschule der Wirtschaft CAMPUS 02 University for Applied Sciences'),
(97949, 'https://ror.org/0074grg94', 'en', 1, 'https://ror.org/0074grg94 Pomona College'),
(97950, 'https://ror.org/03pwdyd87', 'es', 1, 'https://ror.org/03pwdyd87 Port d''Informació Científica'),
(97951, 'https://ror.org/03z391397', 'en', 1, 'https://ror.org/03z391397 Guilin University of Technology ę”‚ęž—ē†å·„å¤§å­¦'),
(97952, 'https://ror.org/008w1vb37', 'en', 1, 'https://ror.org/008w1vb37 Binzhou Medical University ę»Øå·žåŒ»å­¦é™¢'),
(97953, 'https://ror.org/04y91p704', 'en', 1, 'https://ror.org/04y91p704 Vancouver Community College'),
(97954, 'https://ror.org/01qg3j183', 'en', 1, 'https://ror.org/01qg3j183 University of Ioannina UniversitĆ© d''ioannina Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ιωαννίνων'),
(97955, 'https://ror.org/0170z8493', 'en', 1, 'https://ror.org/0170z8493 Shaanxi Normal University é™•č„æåøˆčŒƒå¤§å­¦'),
(97956, 'https://ror.org/03e21z229', 'en', 1, 'https://ror.org/03e21z229 Max Planck Computing and Data Facility Rechenzentrum Garching der Max-Planck-Gesellschaft'),
(97957, 'https://ror.org/020brnt57', 'en', 1, 'https://ror.org/020brnt57 South West College'),
(97958, 'https://ror.org/02hh7en24', 'en', 1, 'https://ror.org/02hh7en24 Universidad de Colorado en Denver University of Colorado Denver UniversitƩ du Colorado Ơ Denver'),
(97959, 'https://ror.org/049k6hp62', 'en', 1, 'https://ror.org/049k6hp62 Deccan College Post Graduate and Research Institute ą¤”ą„‡ą¤•ą„ą¤•ą¤Ø ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤Ŗą¤¦ą¤µą„ą¤Æą„ą¤¤ą„ą¤¤ą¤° आणि ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(97960, 'https://ror.org/03zjvnn91', 'en', 1, 'https://ror.org/03zjvnn91 Edinburgh Napier University'),
(97961, 'https://ror.org/01v8tze95', 'hu', 1, 'https://ror.org/01v8tze95 Eƶtvƶs József Főiskola'),
(97962, 'https://ror.org/014qgwb35', 'es', 1, 'https://ror.org/014qgwb35 Centro Ramón Piñeiro para a Investigación en Humanidades'),
(97963, 'https://ror.org/02z749649', 'es', 1, 'https://ror.org/02z749649 Pablo de Olavide University Universidad Pablo de Olavide'),
(97964, 'https://ror.org/04fzhyx73', 'en', 1, 'https://ror.org/04fzhyx73 Taizhou University 台州学院'),
(97965, 'https://ror.org/01jqked53', 'en', 1, 'https://ror.org/01jqked53 South Devon College'),
(97966, 'https://ror.org/007cx7r28', 'en', 1, 'https://ror.org/007cx7r28 Chizhou University ę± å·žå­¦é™¢'),
(97967, 'https://ror.org/04tvt8c73', 'en', 1, 'https://ror.org/04tvt8c73 Regent''s University London'),
(97968, 'https://ror.org/00bvhmc43', 'en', 1, 'https://ror.org/00bvhmc43 Centro Nacional de Investigaciones Oncológicas Spanish National Cancer Research Centre'),
(97969, 'https://ror.org/00wzhv093', 'en', 1, 'https://ror.org/00wzhv093 Universitatea din Oradea University of Oradea'),
(97970, 'https://ror.org/01js2sh04', 'de', 1, 'https://ror.org/01js2sh04 DESY Deutsches Elektronen-Synchrotron DESY'),
(97971, 'https://ror.org/04wncat98', 'en', 1, 'https://ror.org/04wncat98 The Wistar Institute'),
(97972, 'https://ror.org/02egmk993', 'en', 1, 'https://ror.org/02egmk993 University of Science and Technology Beijing åŒ—äŗ¬ē§‘ęŠ€å¤§å­¦'),
(97973, 'https://ror.org/059gcgy73', 'en', 1, 'https://ror.org/059gcgy73 Nanjing Medical University å—äŗ¬åŒ»ē§‘å¤§å­¦'),
(97974, 'https://ror.org/04f41cb79', 'en', 1, 'https://ror.org/04f41cb79 Hubei University of Education ę¹–åŒ—ę•™č‚²å­¦é™¢'),
(97975, 'https://ror.org/032gae017', 'en', 1, 'https://ror.org/032gae017 Shanghai University of Political Science and Law äøŠęµ·ę”æę³•å­¦é™¢'),
(97976, 'https://ror.org/03jtrja12', 'en', 1, 'https://ror.org/03jtrja12 Dumlupinar University Dumlupınar Üniversitesi'),
(97977, 'https://ror.org/057ewhh68', 'en', 1, 'https://ror.org/057ewhh68 Augsburg University'),
(97978, 'https://ror.org/01c9cnw16', 'tr', 1, 'https://ror.org/01c9cnw16 Ankara Medipol University Ankara Medipol Üniversitesi'),
(97979, 'https://ror.org/050mac570', 'en', 1, 'https://ror.org/050mac570 National Institute of Chemistry'),
(97980, 'https://ror.org/03vxay285', 'en', 1, 'https://ror.org/03vxay285 Cedar Crest College'),
(97981, 'https://ror.org/03c36x865', 'en', 1, 'https://ror.org/03c36x865 Oregon Institute of Technology'),
(97982, 'https://ror.org/0203c2755', 'en', 1, 'https://ror.org/0203c2755 Nanyang Institute of Technology å—é˜³ē†å·„å­¦é™¢'),
(97983, 'https://ror.org/05m169e78', 'en', 1, 'https://ror.org/05m169e78 PES University'),
(97984, 'https://ror.org/03a1crh56', 'en', 1, 'https://ror.org/03a1crh56 Afyon Kocatepe University Afyon Kocatepe Üniversitesi'),
(97985, 'https://ror.org/020hxh324', 'en', 1, 'https://ror.org/020hxh324 Wenzhou University ęø©å·žå¤§å­¦'),
(97986, 'https://ror.org/02qrg5a24', 'en', 1, 'https://ror.org/02qrg5a24 Royal College of Surgeons of England'),
(97987, 'https://ror.org/02d9ce178', 'en', 1, 'https://ror.org/02d9ce178 Academisch Ziekenhuis Maastricht Maastricht University Medical Centre'),
(97988, 'https://ror.org/01800zd49', 'en', 1, 'https://ror.org/01800zd49 Dundalk Institute of Technology InstitiĆŗid TeicneolaĆ­ochta DhĆŗn Dealgan'),
(97989, 'https://ror.org/03yyd7552', 'en', 1, 'https://ror.org/03yyd7552 National Institute of Technology Calicut ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€, ą¤•ą¤¾ą¤²ą„€ą¤•ą¤Ÿ ą“Øą“¾ą“·ą“£ą“²ąµā€ ą“‡ą“Øąµā€ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“•ą“¾ą“²ą“æą“•ąµą“•ą“±ąµą“±ąµā€Œ'),
(97990, 'https://ror.org/03sptdk90', 'en', 1, 'https://ror.org/03sptdk90 Leeds City College'),
(97991, 'https://ror.org/02bxzcy64', 'de', 1, 'https://ror.org/02bxzcy64 Technische Hochschule Ingolstadt'),
(97992, 'https://ror.org/01pen2t90', 'en', 1, 'https://ror.org/01pen2t90 Wiltshire College'),
(97993, 'https://ror.org/018hded08', 'en', 1, 'https://ror.org/018hded08 Hebei University of Technology ę²³åŒ—å·„äøšå¤§å­¦'),
(97994, 'https://ror.org/02frt9q65', 'en', 1, 'https://ror.org/02frt9q65 Guangxi Normal University 广脿师范大学'),
(97995, 'https://ror.org/03qbxj466', 'en', 1, 'https://ror.org/03qbxj466 Sistema Universitario del Norte de Texas University of North Texas System'),
(97996, 'https://ror.org/0561z3j45', 'fr', 1, 'https://ror.org/0561z3j45 Collège Boréal'),
(97997, 'https://ror.org/02w4jbg70', 'en', 1, 'https://ror.org/02w4jbg70 Koninklijke Bibliotheek National Library of the Netherlands'),
(97998, 'https://ror.org/02qtvee93', 'en', 1, 'https://ror.org/02qtvee93 Carleton University'),
(97999, 'https://ror.org/048b6qs33', 'en', 1, 'https://ror.org/048b6qs33 Kilis 7 Aralık University Kilis 7 Aralık Üniversitesi'),
(98000, 'https://ror.org/04ttnw109', 'en', 1, 'https://ror.org/04ttnw109 Sakarya University Sakarya Üniversitesi'),
(98001, 'https://ror.org/047302w76', 'en', 1, 'https://ror.org/047302w76 AuslƤnderuniversitƤt Perugia University for Foreigners Perugia UniversitƠ per stranieri di Perugia UniversitƩ pour Ʃtrangers de pƩrouse'),
(98002, 'https://ror.org/04ydmy275', 'en', 1, 'https://ror.org/04ydmy275 Universidad de Massachusetts Boston University of Massachusetts Boston UniversitƩ du Massachusetts'),
(98003, 'https://ror.org/02t9fsj94', 'en', 1, 'https://ror.org/02t9fsj94 Obihiro University of Agriculture and Veterinary Medicine åøÆåŗƒē•œē”£å¤§å­¦'),
(98004, 'https://ror.org/054341q84', 'en', 1, 'https://ror.org/054341q84 KTO Karatay University KTO Karatay Üniversitesi'),
(98005, 'https://ror.org/00e4hrk88', 'en', 1, 'https://ror.org/00e4hrk88 Wuhan University of Science and Technology ę­¦ę±‰ē§‘ęŠ€å¤§å­¦'),
(98006, 'https://ror.org/022e9e065', 'no_lang_code', 1, 'https://ror.org/022e9e065 Shijiazhuang Tiedao University ēŸ³å®¶åŗ„é“é“å¤§å­¦'),
(98007, 'https://ror.org/05nbqxr67', 'en', 1, 'https://ror.org/05nbqxr67 Miami University'),
(98008, 'https://ror.org/0002cnv45', 'fr', 1, 'https://ror.org/0002cnv45 Ɖcole Nationale SupĆ©rieure des Arts et Industries Textiles'),
(98009, 'https://ror.org/01f7a6m90', 'es', 1, 'https://ror.org/01f7a6m90 Instituto Tecnológico Agrario de Castilla y León'),
(98010, 'https://ror.org/033vfbz75', 'en', 1, 'https://ror.org/033vfbz75 MƤlardalen University MƤlardalens hƶgskola MƤlarinlaakson korkeakoulu'),
(98011, 'https://ror.org/00h6set76', 'en', 1, 'https://ror.org/00h6set76 Universidad Estatal de Utah UniversitĆ© d''Ɖtat de l''utah Utah State University'),
(98012, 'https://ror.org/05932h694', 'en', 1, 'https://ror.org/05932h694 Idiap Research Institute'),
(98013, 'https://ror.org/059gw8r13', 'en', 1, 'https://ror.org/059gw8r13 Xinjiang University 新疆大学'),
(98014, 'https://ror.org/05cdayb58', 'en', 1, 'https://ror.org/05cdayb58 Community College of Baltimore County'),
(98015, 'https://ror.org/03sffqe64', 'en', 1, 'https://ror.org/03sffqe64 Cawthron Institute'),
(98016, 'https://ror.org/01fxqs415', 'tr', 1, 'https://ror.org/01fxqs415 Kutahya Saglik Bilimleri Universitesi Kütahya Health Sciences University'),
(98017, 'https://ror.org/01whxzd80', 'en', 1, 'https://ror.org/01whxzd80 Research and Educational Networking Association of Moldova'),
(98018, 'https://ror.org/01d0jcz74', 'en', 1, 'https://ror.org/01d0jcz74 Jingdezhen Ceramic Institute 景德镇陶瓷学院'),
(98019, 'https://ror.org/01fqhas03', 'en', 1, 'https://ror.org/01fqhas03 B.S. Abdur Rahman Crescent Institute of Science & Technology பி. ą®Žą®øąÆ. ą®…ą®ŖąÆą®¤ąÆą®°ąÆ ą®°ą®•ąÆą®®ą®¾ą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(98020, 'https://ror.org/00eda4j42', 'en', 1, 'https://ror.org/00eda4j42 International Islamic University Chittagong ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ইসলামিক ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ, ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦®'),
(98021, 'https://ror.org/01pa62v70', 'en', 1, 'https://ror.org/01pa62v70 Tokyo Denki University ę±äŗ¬é›»ę©Ÿå¤§å­¦'),
(98022, 'https://ror.org/04n1me355', 'en', 1, 'https://ror.org/04n1me355 Claremont McKenna College'),
(98023, 'https://ror.org/02zpfcb35', 'en', 1, 'https://ror.org/02zpfcb35 Škoda Auto University Škoda Auto VysokÔ Ŕkola'),
(98024, 'https://ror.org/05qvskn85', 'en', 1, 'https://ror.org/05qvskn85 Xinxiang University 新乔学院'),
(98025, 'https://ror.org/03j2ta742', 'en', 1, 'https://ror.org/03j2ta742 O. P. Jindal Global University ओ.ą¤Ŗą„€. ą¤œą¤æą¤‚ą¤¦ą¤² ą¤—ą„ą¤²ą„‹ą¤¬ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(98026, 'https://ror.org/0329kr519', 'en', 1, 'https://ror.org/0329kr519 New Brunswick Community College'),
(98027, 'https://ror.org/04qzpec27', 'en', 1, 'https://ror.org/04qzpec27 Shenzhen Technology University ę·±åœ³ęŠ€ęœÆå¤§å­¦'),
(98028, 'https://ror.org/024kbgz78', 'en', 1, 'https://ror.org/024kbgz78 Gwangju Institute of Science and Technology ź“‘ģ£¼ź³¼ķ•™źø°ģˆ ģ›'),
(98029, 'https://ror.org/02n96ep67', 'en', 1, 'https://ror.org/02n96ep67 East China Normal University åŽäøœåøˆčŒƒå¤§å­¦'),
(98030, 'https://ror.org/04pm4x478', 'en', 1, 'https://ror.org/04pm4x478 Istanbul Bilgi University İstanbul Bilgi Üniversitesi'),
(98031, 'https://ror.org/015scty35', 'en', 1, 'https://ror.org/015scty35 Kastamonu University Kastamonu Üniversitesi'),
(98032, 'https://ror.org/04rxjcv17', 'en', 1, 'https://ror.org/04rxjcv17 Olds College'),
(98033, 'https://ror.org/04dde1554', 'en', 1, 'https://ror.org/04dde1554 Amsterdam University of the Arts Amsterdamse Hogeschool voor de Kunsten'),
(98034, 'https://ror.org/0458dap48', 'en', 1, 'https://ror.org/0458dap48 Atlantic Technological University Ollscoil TeicneolaĆ­ochta an Atlantaigh'),
(98035, 'https://ror.org/00wdq3744', 'en', 1, 'https://ror.org/00wdq3744 Thapar Institute of Engineering & Technology ਄ਾਪਰ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(98036, 'https://ror.org/03hdaef25', 'en', 1, 'https://ror.org/03hdaef25 Helsinki Metropolia University of Applied Sciences'),
(98037, 'https://ror.org/01hys1667', 'en', 1, 'https://ror.org/01hys1667 LIP - Laboratory of Instrumentation and Experimental Particle Physics LIP - Laboratório de Instrumentação e Física Experimental de Partículas'),
(98038, 'https://ror.org/04xnqep60', 'en', 1, 'https://ror.org/04xnqep60 Beijing Information Science & Technology University åŒ—äŗ¬äæ”ęÆē§‘ęŠ€å¤§å­¦'),
(98039, 'https://ror.org/036c9yv20', 'en', 1, 'https://ror.org/036c9yv20 University of Kansas Medical Center'),
(98040, 'https://ror.org/031z8pr38', 'en', 1, 'https://ror.org/031z8pr38 Mount Holyoke College'),
(98041, 'https://ror.org/05sbgwt55', 'en', 1, 'https://ror.org/05sbgwt55 Henan University of Technology ę²³å—å·„äøšå¤§å­¦'),
(98042, 'https://ror.org/05h9eqy10', 'en', 1, 'https://ror.org/05h9eqy10 International Institute of Information Technology Bangalore'),
(98043, 'https://ror.org/04hxxzz17', 'no_lang_code', 1, 'https://ror.org/04hxxzz17 HEAnet'),
(98044, 'https://ror.org/00bd1d647', 'en', 1, 'https://ror.org/00bd1d647 Beijing Wuzi University åŒ—äŗ¬ē‰©čµ„å­¦é™¢'),
(98045, 'https://ror.org/02hwvpm08', 'en', 1, 'https://ror.org/02hwvpm08 Bergen Community College'),
(98046, 'https://ror.org/04v0z9b22', 'es', 1, 'https://ror.org/04v0z9b22 Instituto Valenciano de Investigaciones Económicas The Valencian Institute of Economic Research'),
(98047, 'https://ror.org/04wfbp123', 'en', 1, 'https://ror.org/04wfbp123 Ahsanullah University of Science and Technology ą¦†ą¦¹ą¦øą¦¾ą¦Øą¦‰ą¦²ą§ą¦²ą¦¾ą¦¹ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(98048, 'https://ror.org/03qegss47', 'en', 1, 'https://ror.org/03qegss47 International Centre of Insect Physiology and Ecology'),
(98049, 'https://ror.org/05cf8a891', 'en', 1, 'https://ror.org/05cf8a891 Albert Einstein College of Medicine'),
(98050, 'https://ror.org/00hxk7s55', 'en', 1, 'https://ror.org/00hxk7s55 Lietuvos sporto universitetas Lithuanian Sports University'),
(98051, 'https://ror.org/05h33bt13', 'en', 1, 'https://ror.org/05h33bt13 Qinghai University é’ęµ·å¤§å­¦'),
(98052, 'https://ror.org/03nkhf159', 'en', 1, 'https://ror.org/03nkhf159 Agencia Europea de Control de la Pesca European Fisheries Control Agency'),
(98053, 'https://ror.org/024gw2733', 'en', 1, 'https://ror.org/024gw2733 University of Baltimore UniversitƩ de Baltimore'),
(98054, 'https://ror.org/02vxcq142', 'en', 1, 'https://ror.org/02vxcq142 University of Mpumalanga'),
(98055, 'https://ror.org/0530pts50', 'en', 1, 'https://ror.org/0530pts50 South China University of Technology åŽå—ē†å·„å¤§å­¦'),
(98056, 'https://ror.org/03sfp2d76', 'fr', 1, 'https://ror.org/03sfp2d76 Haute Ɖcole Louvain en Hainaut'),
(98057, 'https://ror.org/01v2b9475', 'en', 1, 'https://ror.org/01v2b9475 Svendborg International Maritime Academy'),
(98058, 'https://ror.org/00a6ram87', 'en', 1, 'https://ror.org/00a6ram87 Reed College'),
(98059, 'https://ror.org/047g8vk19', 'en', 1, 'https://ror.org/047g8vk19 Erciyes University Erciyes Ɯniversitesi ʏrciyəs Universiteti'),
(98060, 'https://ror.org/04nzrzs08', 'en', 1, 'https://ror.org/04nzrzs08 Skidmore College'),
(98061, 'https://ror.org/00gz95c92', 'en', 1, 'https://ror.org/00gz95c92 Selkirk College'),
(98062, 'https://ror.org/02qdc9985', 'de', 1, 'https://ror.org/02qdc9985 Mittelhessen University of Applied Sciences Technische Hochschule Mittelhessen'),
(98063, 'https://ror.org/016119s16', 'en', 1, 'https://ror.org/016119s16 Bridgewater College'),
(98064, 'https://ror.org/016jkmz48', 'en', 1, 'https://ror.org/016jkmz48 North Hertfordshire College'),
(98065, 'https://ror.org/01dzjez04', 'en', 1, 'https://ror.org/01dzjez04 Eskişehir Osmangazi University Eskişehir Osmangazi Üniversitesi'),
(98066, 'https://ror.org/0257kt353', 'en', 1, 'https://ror.org/0257kt353 Hƶgskolan VƤst University West'),
(98067, 'https://ror.org/02v7trd43', 'en', 1, 'https://ror.org/02v7trd43 Indian Institute of Technology Goa ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤—ą„‹ą¤µą¤¾'),
(98068, 'https://ror.org/0066qbn28', 'en', 1, 'https://ror.org/0066qbn28 Inter-University Accelerator Centre'),
(98069, 'https://ror.org/05szw2z23', 'en', 1, 'https://ror.org/05szw2z23 Future University Hakodate å…¬ē«‹ćÆć“ć ć¦ęœŖę„å¤§å­¦'),
(98070, 'https://ror.org/017ahwm60', 'en', 1, 'https://ror.org/017ahwm60 Preston''s College'),
(98071, 'https://ror.org/01f7yer47', 'en', 1, 'https://ror.org/01f7yer47 Nanyang Normal University å—é˜³åøˆčŒƒå­¦é™¢'),
(98072, 'https://ror.org/04te6a418', 'en', 1, 'https://ror.org/04te6a418 Irish Centre for High-End Computing'),
(98073, 'https://ror.org/00hn7w693', 'en', 1, 'https://ror.org/00hn7w693 Southwest Jiaotong University č„æå—äŗ¤é€šå¤§å­¦'),
(98074, 'https://ror.org/002b7nr53', 'en', 1, 'https://ror.org/002b7nr53 Dalian Maritime University å¤§čæžęµ·äŗ‹å¤§å­¦'),
(98075, 'https://ror.org/04eymdx19', 'en', 1, 'https://ror.org/04eymdx19 Hebei Medical University ę²³åŒ—åŒ»ē§‘å¤§å­¦'),
(98076, 'https://ror.org/01yetye73', 'en', 1, 'https://ror.org/01yetye73 University of Teramo UniversitƠ degli Studi di Teramo UniversitƩ de teramo'),
(98077, 'https://ror.org/01qpw1b93', 'en', 1, 'https://ror.org/01qpw1b93 Uniwersytet Medyczny im. Piastów Śląskich we Wrocławiu Wroclaw Medical University'),
(98078, 'https://ror.org/01p455v08', 'en', 1, 'https://ror.org/01p455v08 Xinjiang Medical University ę–°ē–†åŒ»ē§‘å¤§å­¦'),
(98079, 'https://ror.org/00pc48d59', 'en', 1, 'https://ror.org/00pc48d59 Eidgenƶssische Anstalt für Wasserversorgung, Abwasserreinigung und GewƤsserschutz Institut fĆ©dĆ©ral pour l’amĆ©nagement, l’épuration et la protection des eaux Swiss Federal Institute of Aquatic Science and Technology'),
(98080, 'https://ror.org/059djzq42', 'en', 1, 'https://ror.org/059djzq42 Wuyi University 武夷学院'),
(98081, 'https://ror.org/042tdr378', 'en', 1, 'https://ror.org/042tdr378 Southern Methodist University Universidad Metodista del Sur UniversitƩ mƩthodiste du sud'),
(98082, 'https://ror.org/037t3ry66', 'en', 1, 'https://ror.org/037t3ry66 Illinois Institute of Technology Institut de technologie de l''illinois Instituto de TecnologĆ­a de Illinois'),
(98083, 'https://ror.org/01drpwb22', 'en', 1, 'https://ror.org/01drpwb22 University of Chester'),
(98084, 'https://ror.org/058nh3n50', 'en', 1, 'https://ror.org/058nh3n50 International University of AndalucĆ­a Universidad Internacional de AndalucĆ­a Universitat Internacional d''Andalusia'),
(98085, 'https://ror.org/0190ak572', 'en', 1, 'https://ror.org/0190ak572 New York University Universidad de Nueva York UniversitƩ de New York'),
(98086, 'https://ror.org/00p55jd14', 'en', 1, 'https://ror.org/00p55jd14 Scripps College'),
(98087, 'https://ror.org/020ydms54', 'en', 1, 'https://ror.org/020ydms54 University of Finance and Administration VysokĆ” Å”kola finančnĆ­ a sprĆ”vnĆ­'),
(98088, 'https://ror.org/0106qb496', 'en', 1, 'https://ror.org/0106qb496 Inner Mongolia University å†…č’™å¤å¤§å­¦'),
(98089, 'https://ror.org/05kf5z787', 'en', 1, 'https://ror.org/05kf5z787 Shanghai Business School äøŠęµ·å•†å­¦é™¢'),
(98090, 'https://ror.org/04sgxw910', 'en', 1, 'https://ror.org/04sgxw910 Yavapai College'),
(98091, 'https://ror.org/038pb1155', 'en', 1, 'https://ror.org/038pb1155 Erzurum Technical University Erzurum Teknik Üniversitesi'),
(98092, 'https://ror.org/02acz2505', 'no_lang_code', 1, 'https://ror.org/02acz2505 Cenaero (Belgium)'),
(98093, 'https://ror.org/0563pg902', 'en', 1, 'https://ror.org/0563pg902 Lingnan University'),
(98094, 'https://ror.org/04wy7gp54', 'en', 1, 'https://ror.org/04wy7gp54 Karabük University Karabük Üniversitesi'),
(98095, 'https://ror.org/05fsfvw79', 'en', 1, 'https://ror.org/05fsfvw79 Anhui Normal University å®‰å¾½åøˆčŒƒå¤§å­¦'),
(98096, 'https://ror.org/01v2xem26', 'tr', 1, 'https://ror.org/01v2xem26 Malatya Turgut Ɩzal Ɯniversitesi'),
(98097, 'https://ror.org/04trzn023', 'en', 1, 'https://ror.org/04trzn023 Beijing Academy of Agricultural and Forestry Sciences åŒ—äŗ¬åø‚å†œęž—ē§‘å­¦é™¢'),
(98098, 'https://ror.org/03jxg4w44', 'en', 1, 'https://ror.org/03jxg4w44 College of the Rockies'),
(98099, 'https://ror.org/01mtxmr84', 'en', 1, 'https://ror.org/01mtxmr84 Inner Mongolia Medical University å†…č’™å¤åŒ»ē§‘å¤§å­¦'),
(98100, 'https://ror.org/020sxkn16', 'en', 1, 'https://ror.org/020sxkn16 Fife College'),
(98101, 'https://ror.org/05k238v14', 'en', 1, 'https://ror.org/05k238v14 University of Hradec KrƔlovƩ Univerzita Hradec KrƔlovƩ'),
(98102, 'https://ror.org/04v62ha11', 'en', 1, 'https://ror.org/04v62ha11 Glasgow Kelvin College'),
(98103, 'https://ror.org/00cybb798', 'en', 1, 'https://ror.org/00cybb798 Hospital Jihlava'),
(98104, 'https://ror.org/03az1t892', 'en', 1, 'https://ror.org/03az1t892 Qinghai Normal University é’ęµ·åøˆčŒƒå¤§å­¦'),
(98105, 'https://ror.org/04e67ap71', 'en', 1, 'https://ror.org/04e67ap71 Estonian Business School'),
(98106, 'https://ror.org/010x5y114', 'en', 1, 'https://ror.org/010x5y114 Yeovil College'),
(98107, 'https://ror.org/01690jq43', 'en', 1, 'https://ror.org/01690jq43 Loughborough College'),
(98108, 'https://ror.org/00k3ayt93', 'en', 1, 'https://ror.org/00k3ayt93 William Paterson University'),
(98109, 'https://ror.org/01462r250', 'en', 1, 'https://ror.org/01462r250 HÓpital universitaire de Zurich University Hospital of Zurich Universitätsspital Zürich'),
(98110, 'https://ror.org/00btgsb62', 'en', 1, 'https://ror.org/00btgsb62 Galatasaray University Galatasaray Üniversitesi'),
(98111, 'https://ror.org/02ak1t432', 'en', 1, 'https://ror.org/02ak1t432 Springfield College'),
(98112, 'https://ror.org/03e5mzp60', 'en', 1, 'https://ror.org/03e5mzp60 University of West London'),
(98113, 'https://ror.org/00te3t702', 'en', 1, 'https://ror.org/00te3t702 Universidad de Georgia University of Georgia UniversitƩ de gƩorgie'),
(98114, 'https://ror.org/00t8gz605', 'en', 1, 'https://ror.org/00t8gz605 Trinity University Universidad Trinidad'),
(98115, 'https://ror.org/02qskvh78', 'en', 1, 'https://ror.org/02qskvh78 University of Maryland, Baltimore County UniversitƩ du maryland, comtƩ de baltimore'),
(98116, 'https://ror.org/03ejnre35', 'tr', 1, 'https://ror.org/03ejnre35 Niğde Ɩmer Halisdemir Ɯniversitesi Niğde Ɯniversitesi'),
(98117, 'https://ror.org/05mey9k78', 'en', 1, 'https://ror.org/05mey9k78 Tallinn University Tallinna Ülikool Таллинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98118, 'https://ror.org/056k6yz11', 'nl', 1, 'https://ror.org/056k6yz11 Hogeschool de Kempel'),
(98119, 'https://ror.org/01m58xt27', 'en', 1, 'https://ror.org/01m58xt27 Sur University College Ų¬Ų§Ł…Ų¹Ų© سور'),
(98120, 'https://ror.org/00tx98v53', 'fr', 1, 'https://ror.org/00tx98v53 National School of Computer Science for Industry and Business Ɖcole Nationale SupĆ©rieure d’Informatique pour l’Industrie et l’Entreprise Ɖcole nationale supĆ©rieure d''informatique pour l''industrie et l''entreprise'),
(98121, 'https://ror.org/006pak935', 'en', 1, 'https://ror.org/006pak935 Cornwall College'),
(98122, 'https://ror.org/00xk3ch77', 'en', 1, 'https://ror.org/00xk3ch77 DTI University VysokÔ Ŕkola'),
(98123, 'https://ror.org/05sb2zp10', 'en', 1, 'https://ror.org/05sb2zp10 Dudley College'),
(98124, 'https://ror.org/02xf66n48', 'en', 1, 'https://ror.org/02xf66n48 Debreceni Egyetem University of Debrecen'),
(98125, 'https://ror.org/02rxpxc98', 'en', 1, 'https://ror.org/02rxpxc98 UniversitƩ de la VallƩe de l''Utah Utah Valley University'),
(98126, 'https://ror.org/01vjw4z39', 'en', 1, 'https://ror.org/01vjw4z39 Southern Medical University å—ę–¹åŒ»ē§‘å¤§å­¦'),
(98127, 'https://ror.org/01rtyzb94', 'en', 1, 'https://ror.org/01rtyzb94 Rensselaer Polytechnic Institute'),
(98128, 'https://ror.org/0539kc598', 'en', 1, 'https://ror.org/0539kc598 Arts University Bournemouth'),
(98129, 'https://ror.org/02b6amy98', 'en', 1, 'https://ror.org/02b6amy98 Tianjin University of Commerce å¤©ę“„å•†äøšå¤§å­¦'),
(98130, 'https://ror.org/03taest98', 'en', 1, 'https://ror.org/03taest98 Max Planck Institute for Plasma Physics Max-Planck-Institut für Plasmaphysik'),
(98131, 'https://ror.org/02x681a42', 'en', 1, 'https://ror.org/02x681a42 Eidgenössische Materialprüfungs- und Forschungsanstalt Laboratoire fédéral d''essai des matériaux et de recherche Swiss Federal Laboratories for Materials Science and Technology'),
(98132, 'https://ror.org/01v5cv687', 'es', 1, 'https://ror.org/01v5cv687 Rey Juan Carlos University Universidad Rey Juan Carlos'),
(98133, 'https://ror.org/039m95m06', 'en', 1, 'https://ror.org/039m95m06 Hubei University of Automotive Technology ę¹–åŒ—ę±½č½¦å·„äøšå­¦é™¢'),
(98134, 'https://ror.org/03zn9gq54', 'en', 1, 'https://ror.org/03zn9gq54 Jining Medical University ęµŽå®åŒ»å­¦é™¢'),
(98135, 'https://ror.org/04ar4g412', 'en', 1, 'https://ror.org/04ar4g412 Malone University'),
(98136, 'https://ror.org/0056pyw12', 'en', 1, 'https://ror.org/0056pyw12 Shanghai University of Sport äøŠęµ·ä½“č‚²å­¦é™¢'),
(98137, 'https://ror.org/02yj0p855', 'en', 1, 'https://ror.org/02yj0p855 Beijing University of Civil Engineering and Architecture åŒ—äŗ¬å»ŗē­‘å·„ēØ‹å­¦é™¢'),
(98138, 'https://ror.org/016476m91', 'en', 1, 'https://ror.org/016476m91 Prifysgol Aberdeen University of Aberdeen'),
(98139, 'https://ror.org/02tv7db43', 'en', 1, 'https://ror.org/02tv7db43 Balıkesir University Balıkesir Üniversitesi'),
(98140, 'https://ror.org/040mc4x48', 'en', 1, 'https://ror.org/040mc4x48 Slovak Medical University SlovenskĆ” zdravotnĆ­cka univerzita v Bratislave'),
(98141, 'https://ror.org/04n5wkv72', 'en', 1, 'https://ror.org/04n5wkv72 Diaconia University of Applied Sciences Diakonia-ammattikorkeakoulu Yrkeshƶgskolan Diakonia'),
(98142, 'https://ror.org/05a49e175', 'en', 1, 'https://ror.org/05a49e175 Stranmillis University College'),
(98143, 'https://ror.org/01wy3h363', 'en', 1, 'https://ror.org/01wy3h363 Shandong Normal University 山东师范大学'),
(98144, 'https://ror.org/0555ezg60', 'en', 1, 'https://ror.org/0555ezg60 Huaiyin Institute of Technology'),
(98145, 'https://ror.org/02a079e24', 'en', 1, 'https://ror.org/02a079e24 Conservatoire for Dance and Drama'),
(98146, 'https://ror.org/051rrf637', 'en', 1, 'https://ror.org/051rrf637 California Maritime Academy'),
(98147, 'https://ror.org/01zywja13', 'en', 1, 'https://ror.org/01zywja13 Kielce University of Technology Politechnika Świętokrzyska'),
(98148, 'https://ror.org/05baznr53', 'en', 1, 'https://ror.org/05baznr53 St. Thomas University UniversitƩ Saint-Thomas'),
(98149, 'https://ror.org/04hhgsb74', 'en', 1, 'https://ror.org/04hhgsb74 Sree Sankaracharya University of Sanskrit جامعہ ؓری ؓنکر Ų§Ś†Ų§Ų±ŪŒŪ ŲØŲ±Ų§Ų¦Ū’ سنسکرت ą“¶ąµą“°ąµ€ ą“¶ą“™ąµą“•ą“°ą“¾ą“šą“¾ą“°ąµą“Æ ą“øą“‚ą“øąµą“•ąµƒą“¤ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(98150, 'https://ror.org/0403kv531', 'en', 1, 'https://ror.org/0403kv531 City of Glasgow College Colaiste Baile Ghlaschu'),
(98151, 'https://ror.org/04sppb023', 'en', 1, 'https://ror.org/04sppb023 Copenhagen Business School'),
(98152, 'https://ror.org/049m34h22', 'en', 1, 'https://ror.org/049m34h22 Bifröst University HÔskólinn Ô Bifröst'),
(98153, 'https://ror.org/016st3p78', 'en', 1, 'https://ror.org/016st3p78 LuleƄ University of Technology LuleƄ tekniska universitet Luulajan teknillinen yliopisto'),
(98154, 'https://ror.org/04n2gfg40', 'en', 1, 'https://ror.org/04n2gfg40 Wirral Metropolitan College'),
(98155, 'https://ror.org/021rps953', 'en', 1, 'https://ror.org/021rps953 Southern Regional College'),
(98156, 'https://ror.org/05wf2ga96', 'en', 1, 'https://ror.org/05wf2ga96 New York Genome Center'),
(98157, 'https://ror.org/01n7x9n08', 'en', 1, 'https://ror.org/01n7x9n08 Shenyang Agricultural University'),
(98158, 'https://ror.org/022j2n646', 'en', 1, 'https://ror.org/022j2n646 South African Radio Astronomy Observatory'),
(98159, 'https://ror.org/04g3bsp16', 'en', 1, 'https://ror.org/04g3bsp16 Reaseheath College'),
(98160, 'https://ror.org/00fc1qt65', 'en', 1, 'https://ror.org/00fc1qt65 Bucknell University'),
(98161, 'https://ror.org/01x6rgt30', 'en', 1, 'https://ror.org/01x6rgt30 Xiamen Medical College åŽ¦é—ØåŒ»å­¦é™¢'),
(98162, 'https://ror.org/0249c2k77', 'en', 1, 'https://ror.org/0249c2k77 Moulton College'),
(98163, 'https://ror.org/05bhbn736', 'hu', 1, 'https://ror.org/05bhbn736 Szent PƔl AkadƩmia'),
(98164, 'https://ror.org/00afp2z80', 'en', 1, 'https://ror.org/00afp2z80 Universiteit van Luik University of Liège Universität Lüttich Université de Liège'),
(98165, 'https://ror.org/01jfvm310', 'en', 1, 'https://ror.org/01jfvm310 Suffolk New College'),
(98166, 'https://ror.org/045wgfr59', 'en', 1, 'https://ror.org/045wgfr59 University of Stirling'),
(98167, 'https://ror.org/023vrr657', 'en', 1, 'https://ror.org/023vrr657 Indian Institute of Science Education and Research Berhampur'),
(98168, 'https://ror.org/00965ax52', 'en', 1, 'https://ror.org/00965ax52 Kyoto Institute of Technology 京都巄芸繊維大学'),
(98169, 'https://ror.org/04jaeba88', 'en', 1, 'https://ror.org/04jaeba88 California State University, East Bay UniversitĆ© d''Ɖtat de californie Ć  east bay'),
(98170, 'https://ror.org/04ws47v52', 'en', 1, 'https://ror.org/04ws47v52 Library and Information Centre of the Hungarian Academy of Sciences Magyar TudomÔnyos Akadémia KönyvtÔr és InformÔciós Központ'),
(98171, 'https://ror.org/021r98132', 'en', 1, 'https://ror.org/021r98132 Shaanxi University of Chinese Medicine é™•č„æäø­åŒ»å­¦é™¢'),
(98172, 'https://ror.org/03efbq855', 'en', 1, 'https://ror.org/03efbq855 KƔroli GƔspƔr ReformƔtus Egyetem KƔroli GƔspƔr University of the Reformed Church in Hungary'),
(98173, 'https://ror.org/04qyvz380', 'en', 1, 'https://ror.org/04qyvz380 San Jose State University Universidad Estatal de San JosĆ© UniversitĆ© d''Ɖtat de san josĆ©'),
(98174, 'https://ror.org/0037qsh65', 'en', 1, 'https://ror.org/0037qsh65 Universidad de Detroit Misericordia University of Detroit Mercy UniversitƩ de detroit misƩricorde'),
(98175, 'https://ror.org/05xc6tc48', 'en', 1, 'https://ror.org/05xc6tc48 Birmingham Metropolitan College'),
(98176, 'https://ror.org/01bn89z48', 'en', 1, 'https://ror.org/01bn89z48 Shanghai International Studies University äøŠęµ·å¤–å›½čÆ­å¤§å­¦'),
(98177, 'https://ror.org/015waqy33', 'en', 1, 'https://ror.org/015waqy33 CMR University ಸಿ ą²Žą²®ą³ ą²†ą²°ą³ ą²µą²æą²¶ą³ą²µą²µą²æą²§ą³ą²Æą²¾ą²²ą²Æ'),
(98178, 'https://ror.org/0382bxa43', 'en', 1, 'https://ror.org/0382bxa43 Energy Sciences Network'),
(98179, 'https://ror.org/044rdrs62', 'en', 1, 'https://ror.org/044rdrs62 Danish School of Media and Journalism Danmarks Medie- og JournalisthĆøjskole'),
(98180, 'https://ror.org/05709zb94', 'en', 1, 'https://ror.org/05709zb94 Hamilton College'),
(98181, 'https://ror.org/05s754026', 'en', 1, 'https://ror.org/05s754026 Karlstad University Karlstadin yliopisto Karlstads universitet'),
(98182, 'https://ror.org/011xvna82', 'en', 1, 'https://ror.org/011xvna82 Fuzhou University ē¦å·žå¤§å­¦'),
(98183, 'https://ror.org/02s6k3f65', 'en', 1, 'https://ror.org/02s6k3f65 University of Basel Università di Basilea Universität Basel Université de Bâle'),
(98184, 'https://ror.org/01z7r7q48', 'en', 1, 'https://ror.org/01z7r7q48 Children''s Hospital of Philadelphia'),
(98185, 'https://ror.org/05w22af52', 'en', 1, 'https://ror.org/05w22af52 University of Wisconsin–Oshkosh UniversitĆ© du Wisconsin–Oshkosh'),
(98186, 'https://ror.org/03jy32q83', 'en', 1, 'https://ror.org/03jy32q83 Jiangxi University of Traditional Chinese Medicine ę±Ÿč„æäø­åŒ»čÆå¤§å­¦'),
(98187, 'https://ror.org/01fcvkv23', 'en', 1, 'https://ror.org/01fcvkv23 Sirnak Üniversitesi Şırnak University'),
(98188, 'https://ror.org/02rqsa469', 'en', 1, 'https://ror.org/02rqsa469 Hochschule für Wirtschaft und Umwelt Nürtingen-Geislingen Nürtingen-Geislingen University of Applied Science'),
(98189, 'https://ror.org/008wzdf98', 'en', 1, 'https://ror.org/008wzdf98 Satakunnan Ammattikorkeakoulu Satakunta University of Applied Sciences'),
(98190, 'https://ror.org/02vh8a032', 'en', 1, 'https://ror.org/02vh8a032 Bilkent University İhsan Doğramacı Bilkent Üniversitesi'),
(98191, 'https://ror.org/01cesdt21', 'en', 1, 'https://ror.org/01cesdt21 National Institute for Public Health and the Environment Rijksinstituut voor Volksgezondheid en Milieu'),
(98192, 'https://ror.org/03d1maw17', 'en', 1, 'https://ror.org/03d1maw17 University of Namur UniversitƩ de Namur'),
(98193, 'https://ror.org/02p350r61', 'es', 1, 'https://ror.org/02p350r61 Universidad Europea Miguel de Cervantes'),
(98194, 'https://ror.org/02edrav93', 'en', 1, 'https://ror.org/02edrav93 Vermont State Colleges'),
(98195, 'https://ror.org/007530q75', 'en', 1, 'https://ror.org/007530q75 Eesti Kunstiakadeemia Estonian Academy of Arts Š­ŃŃ‚Š¾Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²'),
(98196, 'https://ror.org/04fj67t72', 'en', 1, 'https://ror.org/04fj67t72 Eesti Lennuakadeemia Estonian Aviation Academy Š­ŃŃ‚Š¾Š½ŃŠŗŠ°Ń Š°Š²ŠøŠ°Ń†ŠøŠ¾Š½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(98197, 'https://ror.org/026c29h90', 'en', 1, 'https://ror.org/026c29h90 Pingdingshan University 平锶山学院'),
(98198, 'https://ror.org/01rxvg760', 'en', 1, 'https://ror.org/01rxvg760 Nanjing University å—äŗ¬å¤§å­¦'),
(98199, 'https://ror.org/017jyhg36', 'en', 1, 'https://ror.org/017jyhg36 Kungliga Musikhƶgskolan i Stockholm Royal College of Music in Stockholm'),
(98200, 'https://ror.org/05751b994', 'en', 1, 'https://ror.org/05751b994 Mahindra University'),
(98201, 'https://ror.org/034t3zs45', 'en', 1, 'https://ror.org/034t3zs45 Shaanxi University of Science and Technology é™•č„æē§‘ęŠ€å¤§å­¦'),
(98202, 'https://ror.org/054z83b16', 'no_lang_code', 1, 'https://ror.org/054z83b16 Alexandra Institute (Denmark)'),
(98203, 'https://ror.org/03hb1kr92', 'en', 1, 'https://ror.org/03hb1kr92 Bury College'),
(98204, 'https://ror.org/011fxed53', 'en', 1, 'https://ror.org/011fxed53 Estonian Academy of Security Sciences Sisekaitseakadeemia'),
(98205, 'https://ror.org/03aydme10', 'it', 1, 'https://ror.org/03aydme10 Scuola Normale Superiore'),
(98206, 'https://ror.org/0324fh017', 'en', 1, 'https://ror.org/0324fh017 World University of Bangladesh ą¦“ą¦Æą¦¼ą¦¾ą¦°ą§ą¦²ą§ą¦” ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(98207, 'https://ror.org/00yn2fy02', 'en', 1, 'https://ror.org/00yn2fy02 Portland State University'),
(98208, 'https://ror.org/01yhahq71', 'en', 1, 'https://ror.org/01yhahq71 WHU – Otto Beisheim School of Management'),
(98209, 'https://ror.org/040ndgk79', 'en', 1, 'https://ror.org/040ndgk79 Doncaster College'),
(98210, 'https://ror.org/04647g470', 'en', 1, 'https://ror.org/04647g470 Radford University'),
(98211, 'https://ror.org/03xz0ge78', 'en', 1, 'https://ror.org/03xz0ge78 Great Yarmouth College'),
(98212, 'https://ror.org/003d3xx08', 'en', 1, 'https://ror.org/003d3xx08 Universidad de AlmerĆ­a University of AlmerĆ­a'),
(98213, 'https://ror.org/038hzq450', 'en', 1, 'https://ror.org/038hzq450 Xinxiang Medical University ę–°ä¹”åŒ»å­¦é™¢'),
(98214, 'https://ror.org/01nztpc84', 'en', 1, 'https://ror.org/01nztpc84 Canarie'),
(98215, 'https://ror.org/048m81442', 'en', 1, 'https://ror.org/048m81442 National Institute of Economic and Social Research'),
(98216, 'https://ror.org/02mdbnd10', 'en', 1, 'https://ror.org/02mdbnd10 Hogeschool Van Hall Larenstein Van Hall Larenstein University of Applied Sciences'),
(98217, 'https://ror.org/055vj5234', 'en', 1, 'https://ror.org/055vj5234 Zhejiang University of Finance and Economics ęµ™ę±Ÿč“¢ē»å¤§å­¦'),
(98218, 'https://ror.org/027bzz146', 'en', 1, 'https://ror.org/027bzz146 California State University, Chico UniversitĆ© d''Ɖtat de californie Ć  chico'),
(98219, 'https://ror.org/05s4feg49', 'en', 1, 'https://ror.org/05s4feg49 University of Warmia and Mazury in Olsztyn Uniwersytet Warmińsko-Mazurski w Olsztynie'),
(98220, 'https://ror.org/01xdt7541', 'pt', 1, 'https://ror.org/01xdt7541 Escola Superior NƔutica Infante Dom Henrique'),
(98221, 'https://ror.org/0530xmm89', 'en', 1, 'https://ror.org/0530xmm89 Royal College of Physicians'),
(98222, 'https://ror.org/005g2dx86', 'en', 1, 'https://ror.org/005g2dx86 London Library'),
(98223, 'https://ror.org/05xm08015', 'en', 1, 'https://ror.org/05xm08015 Technical University of KoŔice TechnickÔ univerzita v KoŔiciach'),
(98224, 'https://ror.org/02zsxwr40', 'en', 1, 'https://ror.org/02zsxwr40 University of Alabama in Huntsville UniversitƩ d''alabama Ơ huntsville'),
(98225, 'https://ror.org/05a7av867', 'en', 1, 'https://ror.org/05a7av867 Hebrew Union College - Jewish Institute of Religion'),
(98226, 'https://ror.org/01ptm9403', 'de', 1, 'https://ror.org/01ptm9403 Palucca Hochschule für Tanz Dresden'),
(98227, 'https://ror.org/00z5fkj61', 'en', 1, 'https://ror.org/00z5fkj61 York St John University'),
(98228, 'https://ror.org/01s4gpq44', 'en', 1, 'https://ror.org/01s4gpq44 Universidad de Talca University of Talca'),
(98229, 'https://ror.org/01epn2q93', 'en', 1, 'https://ror.org/01epn2q93 UniversitĆ© d''Ɖtat de weber Weber State University'),
(98230, 'https://ror.org/0020fz961', 'en', 1, 'https://ror.org/0020fz961 FrantiÅ”ek BartoÅ” Regional Library in ZlĆ­n KrajskĆ” knihovna FrantiÅ”ka BartoÅ”e ve ZlĆ­ně'),
(98231, 'https://ror.org/0491f5305', 'en', 1, 'https://ror.org/0491f5305 University of Moratuwa ą®®ąÆŠą®±ą®ŸąÆą®ŸąÆą®µąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą¶øą·œą¶»ą¶§ą·”ą·€ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(98232, 'https://ror.org/041j8js14', 'en', 1, 'https://ror.org/041j8js14 Qingdao University of Science and Technology é’å²›ē§‘ęŠ€å¤§å­¦'),
(98233, 'https://ror.org/02dhttr28', 'en', 1, 'https://ror.org/02dhttr28 Clackamas Community College'),
(98234, 'https://ror.org/04v18t651', 'en', 1, 'https://ror.org/04v18t651 University of Nicosia Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī›ĪµĻ…ĪŗĻ‰ĻƒĪÆĪ±Ļ‚'),
(98235, 'https://ror.org/02dga6j42', 'fr', 1, 'https://ror.org/02dga6j42 Ɖcole SupĆ©rieure des Sciences Ɖconomiques et Commerciales Ɖcole supĆ©rieure des sciences Ć©conomiques et commerciales'),
(98236, 'https://ror.org/04avat194', 'en', 1, 'https://ror.org/04avat194 Oceanic Platform of the Canary Islands Plataforma OceƔnica de Canarias'),
(98237, 'https://ror.org/01zxaph45', 'tr', 1, 'https://ror.org/01zxaph45 Alanya Alaaddin Keykubat University Alanya Alaaddin Keykubat Üniversitesi'),
(98238, 'https://ror.org/01kdbb633', 'en', 1, 'https://ror.org/01kdbb633 Enskilda Hƶgskolan Stockholm University College Stockholm'),
(98239, 'https://ror.org/04mj8af82', 'en', 1, 'https://ror.org/04mj8af82 Fƶrsvarshƶgskolan Maanpuolustuskorkeakoulu Swedish Defence University'),
(98240, 'https://ror.org/0530bdk91', 'en', 1, 'https://ror.org/0530bdk91 Magna Graecia University UniversitƠ degli studi Magna GrƦcia di Catanzaro'),
(98241, 'https://ror.org/008rmbt77', 'en', 1, 'https://ror.org/008rmbt77 Binghamton University Universidad de Binghamton'),
(98242, 'https://ror.org/04xdyq509', 'en', 1, 'https://ror.org/04xdyq509 University of Ss. Cyril and Methodius in Trnava Univerzita sv. Cyrila a Metoda v Trnave'),
(98243, 'https://ror.org/04xdqtw10', 'en', 1, 'https://ror.org/04xdqtw10 Shanghai Jian Qiao University äøŠęµ·å»ŗę”„å­¦é™¢'),
(98244, 'https://ror.org/056ddyv20', 'en', 1, 'https://ror.org/056ddyv20 Panteion University UniversitĆ© panteion Πάντειο Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(98245, 'https://ror.org/00sbx0y13', 'tr', 1, 'https://ror.org/00sbx0y13 Amasya University Amasya Üniversitesi'),
(98246, 'https://ror.org/05xx77y52', 'es', 1, 'https://ror.org/05xx77y52 Centro de Investigaciones Energéticas, Medioambientales y Tecnológicas'),
(98247, 'https://ror.org/05bqcch62', 'en', 1, 'https://ror.org/05bqcch62 Ohio Library and Information Network'),
(98248, 'https://ror.org/03rc6as71', 'no_lang_code', 1, 'https://ror.org/03rc6as71 Tongji University Tongji-UniversitƤt åŒęµŽå¤§å­¦'),
(98249, 'https://ror.org/053tsx367', 'nl', 1, 'https://ror.org/053tsx367 Institute for Road Safety Research Stichting Wetenschappelijk Onderzoek Verkeersveiligheid'),
(98250, 'https://ror.org/03k5zb271', 'en', 1, 'https://ror.org/03k5zb271 Bangladesh Agricultural University বাংলাদেশ ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(98251, 'https://ror.org/03tc05689', 'en', 1, 'https://ror.org/03tc05689 University of Basilicata UniversitƠ degli Studi della Basilicata UniversitƩ de la basilicate'),
(98252, 'https://ror.org/018zpxs61', 'en', 1, 'https://ror.org/018zpxs61 Kazimierz Wielki University in Bydgoszcz Uniwersytet Kazimierza Wielkiego'),
(98253, 'https://ror.org/03pwaa786', 'sl', 1, 'https://ror.org/03pwaa786 Å olski Center Ptuj'),
(98254, 'https://ror.org/02kqnpp86', 'en', 1, 'https://ror.org/02kqnpp86 University of Campania "Luigi Vanvitelli" UniversitĆ  degli Studi della Campania "Luigi Vanvitelli"'),
(98255, 'https://ror.org/04pp4xq32', 'en', 1, 'https://ror.org/04pp4xq32 IULM University Libera UniversitƠ di Lingue e Comunicazione IULM UniversitƩ libre des langues et de la communication'),
(98256, 'https://ror.org/05n3dz165', 'fi', 1, 'https://ror.org/05n3dz165 JyvƤskylƤn Yliopisto University of JyvƤskylƤ'),
(98257, 'https://ror.org/009q3yg92', 'en', 1, 'https://ror.org/009q3yg92 ColƔiste Mhuire Gan SmƔl Mary Immaculate College'),
(98258, 'https://ror.org/03hv4y553', 'fr', 1, 'https://ror.org/03hv4y553 Centre d''Ɖtudes et de Recherches sur les Qualifications French Centre for Research on Education, Training and Employment'),
(98259, 'https://ror.org/05fct5h31', 'en', 1, 'https://ror.org/05fct5h31 Military University of Technology in Warsaw Wojskowa Akademia Techniczna im. Jarosława Dąbrowskiego w Warszawie'),
(98260, 'https://ror.org/01x8m3269', 'tr', 1, 'https://ror.org/01x8m3269 Hitit University Hitit Üniversitesi'),
(98261, 'https://ror.org/045vwzt11', 'no_lang_code', 1, 'https://ror.org/045vwzt11 Sabaragamuwa University of Sri Lanka ą®šą®Ŗą®°ą®•ą®®ąÆą®µą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą·ƒą¶¶ą¶»ą¶œą¶øą·”ą·€ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(98262, 'https://ror.org/02an57k10', 'en', 1, 'https://ror.org/02an57k10 Changchun University é•æę˜„å¤§å­¦'),
(98263, 'https://ror.org/00jzv1t04', 'fr', 1, 'https://ror.org/00jzv1t04 Catholic University of the West UniversitƩ catholique de l''ouest'),
(98264, 'https://ror.org/02x80b031', 'en', 1, 'https://ror.org/02x80b031 Leeds Trinity University'),
(98265, 'https://ror.org/036trcv74', 'en', 1, 'https://ror.org/036trcv74 Nanjing Normal University å—äŗ¬åøˆčŒƒå¤§å­¦'),
(98266, 'https://ror.org/02sw6yz40', 'en', 1, 'https://ror.org/02sw6yz40 Guizhou University of Finance and Economics č“µå·žč“¢ē»å¤§å­¦'),
(98267, 'https://ror.org/02k8rq894', 'en', 1, 'https://ror.org/02k8rq894 St Helens College'),
(98268, 'https://ror.org/05060sz93', 'en', 1, 'https://ror.org/05060sz93 Institut Jožef Stefan Jožef Stefan Institute'),
(98269, 'https://ror.org/04z7qrj66', 'en', 1, 'https://ror.org/04z7qrj66 Shanghai Maritime University äøŠęµ·ęµ·äŗ‹å¤§å­¦'),
(98270, 'https://ror.org/0576gt767', 'en', 1, 'https://ror.org/0576gt767 Hangzhou Dianzi University ę­å·žē”µå­ē§‘ęŠ€å¤§å­¦'),
(98271, 'https://ror.org/03qp1eh12', 'en', 1, 'https://ror.org/03qp1eh12 National Institute of Research in Tuberculosis'),
(98272, 'https://ror.org/0400avk24', 'en', 1, 'https://ror.org/0400avk24 University of Bedfordshire'),
(98273, 'https://ror.org/044k9ta02', 'en', 1, 'https://ror.org/044k9ta02 Universitat de Palerm University of Palermo UniversitƠ degli Studi di Palermo UniversitƤt Palermo UniversitƩ de palerme'),
(98274, 'https://ror.org/0120yqp15', 'en', 1, 'https://ror.org/0120yqp15 Solihull College'),
(98275, 'https://ror.org/02s83b296', 'en', 1, 'https://ror.org/02s83b296 Suzhou Art & Design Technology Institute č‹å·žå·„č‰ŗē¾ŽęœÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(98276, 'https://ror.org/04gds4h28', 'en', 1, 'https://ror.org/04gds4h28 Drew University UniversitƩ de drew'),
(98277, 'https://ror.org/01wbg2c90', 'es', 1, 'https://ror.org/01wbg2c90 Universidad San Jorge'),
(98278, 'https://ror.org/04ytb9n23', 'en', 1, 'https://ror.org/04ytb9n23 Furman University'),
(98279, 'https://ror.org/03sd3t490', 'en', 1, 'https://ror.org/03sd3t490 Anyang Institute of Technology 安阳巄学院'),
(98280, 'https://ror.org/046nfbs12', 'en', 1, 'https://ror.org/046nfbs12 Capilano University'),
(98281, 'https://ror.org/02yxnh564', 'en', 1, 'https://ror.org/02yxnh564 Northeast Forestry University äøœåŒ—ęž—äøšå¤§å­¦'),
(98282, 'https://ror.org/037rvh518', 'en', 1, 'https://ror.org/037rvh518 Jining University'),
(98283, 'https://ror.org/03natay60', 'en', 1, 'https://ror.org/03natay60 Istanbul Arel University İstanbul Arel Üniversitesi'),
(98284, 'https://ror.org/039965637', 'en', 1, 'https://ror.org/039965637 University of Pavol Jozef ŠafÔrik Univerzita Pavla Jozefa ŠafÔrika v KoŔiciach'),
(98285, 'https://ror.org/01bnjbv91', 'en', 1, 'https://ror.org/01bnjbv91 Universitat de SƠsser University of Sassari UniversitƠ degli Studi di Sassari UniversitƩ de Sassari'),
(98286, 'https://ror.org/03v0r5n49', 'en', 1, 'https://ror.org/03v0r5n49 Indian Institute of Technology Madras ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą¤¦ą„ą¤°ą¤¾ą¤ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®šąÆ†ą®©ąÆą®©ąÆˆ ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą± ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°®ą°¦ą±ą°°ą°¾ą°øą± ಭಾರತೀಯ ą²¤ą²‚ą²¤ą³ą²°ą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³† ą²®ą²¦ą³ą²°ą²¾ą²øą³ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“®ą“¦ąµą“°ą“¾ą“øąµ'),
(98287, 'https://ror.org/0519st743', 'en', 1, 'https://ror.org/0519st743 Suzhou Vocational Health College č‹å·žčŒäøšå„åŗ·å­¦é™¢'),
(98288, 'https://ror.org/008atfr08', 'en', 1, 'https://ror.org/008atfr08 Unicorn University'),
(98289, 'https://ror.org/0126qma51', 'en', 1, 'https://ror.org/0126qma51 University of Illinois at Springfield UniversitƩ de l''illinois Ơ Springfield'),
(98290, 'https://ror.org/002w4zy91', 'en', 1, 'https://ror.org/002w4zy91 University of West Florida'),
(98291, 'https://ror.org/03czfpz43', 'en', 1, 'https://ror.org/03czfpz43 Emory University'),
(98292, 'https://ror.org/04nraex26', 'en', 1, 'https://ror.org/04nraex26 Luoyang Institute of Science and Technology ę“›é˜³ē†å·„å­¦é™¢'),
(98293, 'https://ror.org/03eqd4a41', 'en', 1, 'https://ror.org/03eqd4a41 National Institute of Chemical Physics and Biophysics'),
(98294, 'https://ror.org/02d3fj342', 'en', 1, 'https://ror.org/02d3fj342 Hubei University of Technology ę¹–åŒ—å·„äøšå¤§å­¦'),
(98295, 'https://ror.org/02m44ak47', 'es', 1, 'https://ror.org/02m44ak47 Institut Nacional de Tècnica Aeroespacial d''Espanya Instituto Nacional de Técnica Aeroespacial National Institute for Aerospace Technology Teknika Aeroespazialaren Institutu Nazionala'),
(98296, 'https://ror.org/00tscx035', 'en', 1, 'https://ror.org/00tscx035 Vels University ą®µąÆ‡ą®²ąÆą®øąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(98297, 'https://ror.org/01mrfdz82', 'en', 1, 'https://ror.org/01mrfdz82 Texas A&M University – Corpus Christi'),
(98298, 'https://ror.org/00bqvf857', 'en', 1, 'https://ror.org/00bqvf857 Cardiff Metropolitan University Prifysgol Fetropolitan Caerdydd'),
(98299, 'https://ror.org/032d4f246', 'en', 1, 'https://ror.org/032d4f246 China Medical University äø­å›½åŒ»ē§‘å¤§å­¦'),
(98300, 'https://ror.org/05mjwh489', 'en', 1, 'https://ror.org/05mjwh489 Academy of Performing Arts in Prague Akademie mĆŗzických uměnĆ­ v Praze'),
(98301, 'https://ror.org/057jrqr44', 'en', 1, 'https://ror.org/057jrqr44 Prifysgol Dwyrain Llundain University of East London'),
(98302, 'https://ror.org/00hgzve81', 'en', 1, 'https://ror.org/00hgzve81 Ruotsin meteorologinen ja hydrologinen laitos Sveriges meteorologiska och hydrologiska institut Swedish Meteorological and Hydrological Institute'),
(98303, 'https://ror.org/00y0xnp53', 'en', 1, 'https://ror.org/00y0xnp53 Politechnika Warszawska Warsaw University of Technology'),
(98304, 'https://ror.org/007pr2d48', 'en', 1, 'https://ror.org/007pr2d48 Uganda Christian University'),
(98305, 'https://ror.org/02mjz6f26', 'en', 1, 'https://ror.org/02mjz6f26 University of Jinan ęµŽå—å¤§å­¦'),
(98306, 'https://ror.org/04g9e0f44', 'en', 1, 'https://ror.org/04g9e0f44 Willamette University'),
(98307, 'https://ror.org/034278w09', 'en', 1, 'https://ror.org/034278w09 Borders College'),
(98308, 'https://ror.org/01j8e0j24', 'en', 1, 'https://ror.org/01j8e0j24 California State University, San Marcos'),
(98309, 'https://ror.org/020ast312', 'ms', 1, 'https://ror.org/020ast312 Universiti Sains Islam Malaysia'),
(98310, 'https://ror.org/01cxqmw89', 'en', 1, 'https://ror.org/01cxqmw89 Shanghai Normal University 上海师范大学');
INSERT INTO `rors` VALUES
(98311, 'https://ror.org/01vy4gh70', 'en', 1, 'https://ror.org/01vy4gh70 Shenzhen University 深圳大学'),
(98312, 'https://ror.org/0411seq30', 'tr', 1, 'https://ror.org/0411seq30 Kocaeli University Kocaeli Üniversitesi'),
(98313, 'https://ror.org/006teas31', 'en', 1, 'https://ror.org/006teas31 Shanghai University 上海大学'),
(98314, 'https://ror.org/033wpf256', 'en', 1, 'https://ror.org/033wpf256 Akademia Leona KoÅŗmińskiego Kozminski University'),
(98315, 'https://ror.org/012eh0r35', 'en', 1, 'https://ror.org/012eh0r35 Fukushima Medical University ē¦å³¶ēœŒē«‹åŒ»ē§‘å¤§å­¦'),
(98316, 'https://ror.org/01f5rdf64', 'en', 1, 'https://ror.org/01f5rdf64 Hefei University åˆč‚„å­¦é™¢'),
(98317, 'https://ror.org/01fpqqe90', 'fr', 1, 'https://ror.org/01fpqqe90 Ɖcole Nationale SupĆ©rieure d''IngĆ©nieurs de Caen'),
(98318, 'https://ror.org/04fzm7v55', 'en', 1, 'https://ror.org/04fzm7v55 University of Zielona Góra Uniwersytet Zielonogórski'),
(98319, 'https://ror.org/01pn91c28', 'en', 1, 'https://ror.org/01pn91c28 Anhui Science and Technology University å®‰å¾½ē§‘ęŠ€å­¦é™¢'),
(98320, 'https://ror.org/03vrx7m55', 'en', 1, 'https://ror.org/03vrx7m55 University of Allahabad इलाहाबाद ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਇਲਾਹਾਬਾਦ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®…ą®²ą®•ą®¾ą®Ŗą®¾ą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°…ą°²ą°¹ą°¾ą°¬ą°¾ą°¦ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(98321, 'https://ror.org/02hstj355', 'en', 1, 'https://ror.org/02hstj355 Manchester Metropolitan University'),
(98322, 'https://ror.org/03n7a5z57', 'en', 1, 'https://ror.org/03n7a5z57 Huainan Normal University ę·®å—åøˆčŒƒå­¦é™¢'),
(98323, 'https://ror.org/02y5xdw18', 'en', 1, 'https://ror.org/02y5xdw18 Ibn Haldun University İbn Haldun Üniversitesi'),
(98324, 'https://ror.org/04chwzs27', 'en', 1, 'https://ror.org/04chwzs27 SOMT University of Physiotherapy'),
(98325, 'https://ror.org/02bjnq803', 'en', 1, 'https://ror.org/02bjnq803 Jazan University Ų¬Ų§Ł…Ų¹Ų© جازان'),
(98326, 'https://ror.org/046hach49', 'en', 1, 'https://ror.org/046hach49 Gymnastik- och Idrottshƶgskolan Swedish School of Sport and Health Sciences'),
(98327, 'https://ror.org/0265sk121', 'en', 1, 'https://ror.org/0265sk121 ColĆ”iste RĆ­oga Lianna na hƉireann Royal College of Physicians of Ireland'),
(98328, 'https://ror.org/01jrs3715', 'en', 1, 'https://ror.org/01jrs3715 Eastern University, Sri Lanka ą®•ą®æą®“ą®•ąÆą®•ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®‡ą®²ą®™ąÆą®•ąÆˆ ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶±ą·ą¶œą·™ą¶±ą·„ą·’ą¶» ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(98329, 'https://ror.org/01tnh0829', 'es', 1, 'https://ror.org/01tnh0829 Universidad Cardenal Herrera CEU Universitat CEU Cardenal Herrera'),
(98330, 'https://ror.org/04pyvbw03', 'en', 1, 'https://ror.org/04pyvbw03 California State University, Dominguez Hills Universidad Estatal de California UniversitĆ© d''Ɖtat de californie Ć  dominguez hills'),
(98331, 'https://ror.org/03bqmcz70', 'en', 1, 'https://ror.org/03bqmcz70 Jagiellonian University Uniwersytet Jagielloński'),
(98332, 'https://ror.org/00t53pv34', 'en', 1, 'https://ror.org/00t53pv34 National Defence University of Malaysia Universiti Pertahanan Nasional Malaysia'),
(98333, 'https://ror.org/01deh9c76', 'nl', 1, 'https://ror.org/01deh9c76 Deltares'),
(98334, 'https://ror.org/009avj582', 'en', 1, 'https://ror.org/009avj582 Oregon Health & Science University'),
(98335, 'https://ror.org/031dhcv14', 'en', 1, 'https://ror.org/031dhcv14 Hainan Normal University ęµ·å—åøˆčŒƒå¤§å­¦'),
(98336, 'https://ror.org/029pk6x14', 'en', 1, 'https://ror.org/029pk6x14 ƅbo Akademi University'),
(98337, 'https://ror.org/00fjzqj15', 'en', 1, 'https://ror.org/00fjzqj15 Shanghai Institute of Technology äøŠęµ·åŗ”ē”ØęŠ€ęœÆå¤§å­¦'),
(98338, 'https://ror.org/02tzt0b78', 'es', 1, 'https://ror.org/02tzt0b78 Universidad de León Universidade de León University of Leon'),
(98339, 'https://ror.org/00rz3mr26', 'en', 1, 'https://ror.org/00rz3mr26 Riyadh Elm University ŁƒŁ„ŁŠŲ§ŲŖ Ų§Ł„Ų±ŁŠŲ§Ų¶ لطب الأسنان ŁˆŲ§Ł„ŲµŁŠŲÆŁ„Ų©'),
(98340, 'https://ror.org/002qhr126', 'en', 1, 'https://ror.org/002qhr126 New Bulgarian University ŠŠ¾Š² Š±ŃŠŠ»Š³Š°Ń€ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98341, 'https://ror.org/05crjpb27', 'en', 1, 'https://ror.org/05crjpb27 Bocconi University UniversitƠ Commerciale Luigi Bocconi WirtschaftsuniversitƤt Luigi Bocconi'),
(98342, 'https://ror.org/02dqans26', 'en', 1, 'https://ror.org/02dqans26 Institute of Engineering Seismology and Earthquake Engineering'),
(98343, 'https://ror.org/00df5yc52', 'en', 1, 'https://ror.org/00df5yc52 Beijing University of Chemical Technology åŒ—äŗ¬åŒ–å·„å¤§å­¦'),
(98344, 'https://ror.org/0418kp584', 'en', 1, 'https://ror.org/0418kp584 Lishui University 丽氓学院'),
(98345, 'https://ror.org/05cy4wa09', 'en', 1, 'https://ror.org/05cy4wa09 Wellcome Sanger Institute'),
(98346, 'https://ror.org/01a28zg77', 'en', 1, 'https://ror.org/01a28zg77 Basque Center on Cognition, Brain and Language'),
(98347, 'https://ror.org/03sd35x91', 'en', 1, 'https://ror.org/03sd35x91 Nanjing Tech University å—äŗ¬å·„äøšå¤§å­¦'),
(98348, 'https://ror.org/04ds0jm32', 'en', 1, 'https://ror.org/04ds0jm32 National Institute of Technology Durgapur ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¦ą„ą¤°ą„ą¤—ą¤¾ą¤Ŗą„ą¤° ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ, ą®¤ąÆą®°ąÆą®•ą®¾ą®ŖąÆ‚ą®°ąÆ'),
(98349, 'https://ror.org/000vmwg42', 'fr', 1, 'https://ror.org/000vmwg42 Ɖcole nationale supĆ©rieure d''architecture de Marseille'),
(98350, 'https://ror.org/022zbr960', 'en', 1, 'https://ror.org/022zbr960 Seijo University ęˆåŸŽå¤§å­¦'),
(98351, 'https://ror.org/02a46nr93', 'no_lang_code', 1, 'https://ror.org/02a46nr93 Universiteit van CuraƧao University of CuraƧao'),
(98352, 'https://ror.org/00h2vm590', 'en', 1, 'https://ror.org/00h2vm590 Universiteit van Wes-Kaapland University of the Western Cape'),
(98353, 'https://ror.org/04z6gwv56', 'en', 1, 'https://ror.org/04z6gwv56 National Museum NƔrodnƭ muzeum'),
(98354, 'https://ror.org/04cx8ae47', 'en', 1, 'https://ror.org/04cx8ae47 Owens Community College'),
(98355, 'https://ror.org/00kx1jb78', 'en', 1, 'https://ror.org/00kx1jb78 Temple University Universidad de Temple'),
(98356, 'https://ror.org/05nz37n09', 'en', 1, 'https://ror.org/05nz37n09 Anadolu University Anadolu Üniversitesi'),
(98357, 'https://ror.org/02qzs9336', 'en', 1, 'https://ror.org/02qzs9336 National College of Ireland'),
(98358, 'https://ror.org/03vw74f64', 'en', 1, 'https://ror.org/03vw74f64 Alfréd Rényi Institute of Mathematics MTA Rényi Alfréd Matematikai Kutatóintézet'),
(98359, 'https://ror.org/00wfd0g93', 'en', 1, 'https://ror.org/00wfd0g93 Perdana University'),
(98360, 'https://ror.org/02nkf1q06', 'en', 1, 'https://ror.org/02nkf1q06 University of Essex'),
(98361, 'https://ror.org/03m96p165', 'en', 1, 'https://ror.org/03m96p165 Nanjing Forestry University å—äŗ¬ęž—äøšå¤§å­¦'),
(98362, 'https://ror.org/05szpc322', 'en', 1, 'https://ror.org/05szpc322 Qiannan Normal College For Nationalities é»”å—ę°‘ę—åøˆčŒƒå­¦é™¢'),
(98363, 'https://ror.org/04j7b2v61', 'no_lang_code', 1, 'https://ror.org/04j7b2v61 Ningxia University 宁夏大学'),
(98364, 'https://ror.org/04etcj997', 'en', 1, 'https://ror.org/04etcj997 Inter-University Centre for Astronomy and Astrophysics ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°-ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦° ফর ą¦…ą§ą¦Æą¦¾ą¦øą§ą¦Ÿą§ą¦°ą§‹ą¦Øą¦®ą¦æ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦…ą§ą¦Æą¦¾ą¦øą§ą¦Ÿą§ą¦°ą§‹ą¦«ą¦æą¦œą¦æą¦•ą§ą¦ø ą“‡ą“Øąµą“±ąµ¼ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“†ą“øąµą“Ÿąµą“°ąµ‹ą“£ą“®ą“æ ą“†ąµ»ą“”ąµ ą“†ą“øąµą“Ÿąµą“°ąµ‹ą“«ą“æą“øą“æą“•ąµą“øąµ'),
(98365, 'https://ror.org/02zngfv65', 'en', 1, 'https://ror.org/02zngfv65 MenƩndez Pelayo International University Universidad Internacional MenƩndez Pelayo Universidade Internacional MenƩndez Pelayo'),
(98366, 'https://ror.org/052w4zt36', 'en', 1, 'https://ror.org/052w4zt36 American University Universidad Americana'),
(98367, 'https://ror.org/00jeqjx33', 'en', 1, 'https://ror.org/00jeqjx33 Kennesaw State University UniversitĆ© d''Ɖtat de kennesaw'),
(98368, 'https://ror.org/016bysn57', 'en', 1, 'https://ror.org/016bysn57 University of Northern Colorado'),
(98369, 'https://ror.org/00b3j7936', 'en', 1, 'https://ror.org/00b3j7936 Zhengzhou University of Science and Technology éƒ‘å·žē§‘ęŠ€å­¦é™¢'),
(98370, 'https://ror.org/0084njv03', 'en', 1, 'https://ror.org/0084njv03 Texas A&M University – San Antonio'),
(98371, 'https://ror.org/01h6ecw13', 'en', 1, 'https://ror.org/01h6ecw13 Lingnan Normal University ę¹›ę±ŸåøˆčŒƒå­¦é™¢'),
(98372, 'https://ror.org/03x1f1d90', 'en', 1, 'https://ror.org/03x1f1d90 St. Catherine University UniversitƩ sainte-catherine'),
(98373, 'https://ror.org/03d9xwp94', 'en', 1, 'https://ror.org/03d9xwp94 Cambridge Regional College'),
(98374, 'https://ror.org/05wg1m734', 'en', 1, 'https://ror.org/05wg1m734 Radboud University Medical Center Radboudumc'),
(98375, 'https://ror.org/00mx91s63', 'en', 1, 'https://ror.org/00mx91s63 Catholic University of EichstƤtt-Ingolstadt Katholische UniversitƤt EichstƤtt-Ingolstadt'),
(98376, 'https://ror.org/0264fdx42', 'en', 1, 'https://ror.org/0264fdx42 San Diego State University Universidad Estatal de San Diego UniversitĆ© d''Ɖtat de san diego'),
(98377, 'https://ror.org/05dvptm82', 'en', 1, 'https://ror.org/05dvptm82 Kumaraguru College of Technology'),
(98378, 'https://ror.org/00mjdtw98', 'en', 1, 'https://ror.org/00mjdtw98 California State University, Monterey Bay'),
(98379, 'https://ror.org/0459pv085', 'en', 1, 'https://ror.org/0459pv085 Guangdong University Of Finances and Economics å¹æäøœå•†å­¦é™¢'),
(98380, 'https://ror.org/02jgsf398', 'en', 1, 'https://ror.org/02jgsf398 Wuhan Textile University'),
(98381, 'https://ror.org/032hq6188', 'en', 1, 'https://ror.org/032hq6188 Birkenhead Sixth Form College'),
(98382, 'https://ror.org/01fsptq02', 'en', 1, 'https://ror.org/01fsptq02 Trafford College'),
(98383, 'https://ror.org/03mtwkv54', 'en', 1, 'https://ror.org/03mtwkv54 Central University of Haryana हरियाणा ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(98384, 'https://ror.org/01agvej60', 'en', 1, 'https://ror.org/01agvej60 Shanghai Customs College äøŠęµ·ęµ·å…³å­¦é™¢'),
(98385, 'https://ror.org/04t0qbt32', 'en', 1, 'https://ror.org/04t0qbt32 Ollscoil TeicneolaĆ­ochta Bhaile Atha Cliath Technological University Dublin'),
(98386, 'https://ror.org/0238fqd79', 'en', 1, 'https://ror.org/0238fqd79 Savonia University of Applied Sciences Savonia-ammattikorkeakoulu'),
(98387, 'https://ror.org/05xsjkb63', 'no_lang_code', 1, 'https://ror.org/05xsjkb63 Xijing University'),
(98388, 'https://ror.org/04qyefj88', 'en', 1, 'https://ror.org/04qyefj88 John Paul II Catholic University of Lublin Katolicki Uniwersytet Lubelski Jana Pawła II'),
(98389, 'https://ror.org/00g7qtt96', 'en', 1, 'https://ror.org/00g7qtt96 Institute for Social and Economic Change'),
(98390, 'https://ror.org/029tw2407', 'en', 1, 'https://ror.org/029tw2407 University of Chichester'),
(98391, 'https://ror.org/000hdh770', 'en', 1, 'https://ror.org/000hdh770 Dalarna University Hƶgskolan Dalarna Taalainmaan korkeakoulu'),
(98392, 'https://ror.org/05p8w6387', 'en', 1, 'https://ror.org/05p8w6387 Florida Atlantic University'),
(98393, 'https://ror.org/00g2ypp58', 'en', 1, 'https://ror.org/00g2ypp58 Dalian University å¤§čæžå¤§å­¦'),
(98394, 'https://ror.org/057jm7w82', 'en', 1, 'https://ror.org/057jm7w82 Tokyo University of Pharmacy and Life Sciences ę±äŗ¬č–¬ē§‘å¤§å­¦'),
(98395, 'https://ror.org/04pmn0e78', 'es', 1, 'https://ror.org/04pmn0e78 Universidad de AlcalĆ” University of AlcalĆ”'),
(98396, 'https://ror.org/01mh5ph17', 'en', 1, 'https://ror.org/01mh5ph17 Kangwon National University ź°•ģ›ėŒ€ķ•™źµ'),
(98397, 'https://ror.org/03mmhfz41', 'en', 1, 'https://ror.org/03mmhfz41 JihočeskĆ” VědeckĆ” Knihovna v Českých BudějovicĆ­ch Research Library of South Bohemia'),
(98398, 'https://ror.org/027sdcz20', 'en', 1, 'https://ror.org/027sdcz20 Klaipėda University Klaipėdos universitetas Uniwersytet Kłajpedzki КлайпеГский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98399, 'https://ror.org/01cyb5v38', 'en', 1, 'https://ror.org/01cyb5v38 Fujian Jiangxia University ē¦å»ŗę±Ÿå¤å­¦é™¢'),
(98400, 'https://ror.org/003s89n44', 'en', 1, 'https://ror.org/003s89n44 MacEwan University'),
(98401, 'https://ror.org/05p5g9717', 'en', 1, 'https://ror.org/05p5g9717 Business Academy SouthWest'),
(98402, 'https://ror.org/013r8hx77', 'en', 1, 'https://ror.org/013r8hx77 International School of Management Slovakia VysokÔ Ŕkola medzinÔrodného podnikania ISM Slovakia v PreŔove'),
(98403, 'https://ror.org/02pe14c82', 'en', 1, 'https://ror.org/02pe14c82 Ringling College of Art and Design'),
(98404, 'https://ror.org/04r1cjx59', 'en', 1, 'https://ror.org/04r1cjx59 Institute for Fiscal Studies'),
(98405, 'https://ror.org/02avqqw26', 'en', 1, 'https://ror.org/02avqqw26 California State University, Fullerton Universidad Estatal de California UniversitĆ© d''Ɖtat de californie Ć  fullerton'),
(98406, 'https://ror.org/04ypx8c21', 'en', 1, 'https://ror.org/04ypx8c21 Zhengzhou University 郑州大学'),
(98407, 'https://ror.org/041m9xr71', 'en', 1, 'https://ror.org/041m9xr71 Ames National Laboratory'),
(98408, 'https://ror.org/05k6m5t95', 'en', 1, 'https://ror.org/05k6m5t95 National Institute of Polar Research å›½ē«‹ę„µåœ°ē ”ē©¶ę‰€'),
(98409, 'https://ror.org/037663q52', 'en', 1, 'https://ror.org/037663q52 Chuzhou University'),
(98410, 'https://ror.org/03awzbc87', 'en', 1, 'https://ror.org/03awzbc87 Northeastern University äøœåŒ—å¤§å­¦'),
(98411, 'https://ror.org/014axpa37', 'en', 1, 'https://ror.org/014axpa37 Roskilde Universitet Roskilde University'),
(98412, 'https://ror.org/01h96kj53', 'en', 1, 'https://ror.org/01h96kj53 Gateshead College'),
(98413, 'https://ror.org/0184vwv17', 'en', 1, 'https://ror.org/0184vwv17 University of Fort Hare'),
(98414, 'https://ror.org/012afjb06', 'en', 1, 'https://ror.org/012afjb06 Lehigh University Universidad de Lehigh'),
(98415, 'https://ror.org/01d1erx18', 'en', 1, 'https://ror.org/01d1erx18 East China University of Political Science and Law åŽäøœę”æę³•å¤§å­¦'),
(98416, 'https://ror.org/01yxtfe92', 'fr', 1, 'https://ror.org/01yxtfe92 Ɖcole Nationale SupĆ©rieure d''Architecture de Grenoble'),
(98417, 'https://ror.org/022jmgp84', 'en', 1, 'https://ror.org/022jmgp84 New Design University'),
(98418, 'https://ror.org/014bh1q35', 'en', 1, 'https://ror.org/014bh1q35 Istanbul 29 Mayis University'),
(98419, 'https://ror.org/05gd22996', 'en', 1, 'https://ror.org/05gd22996 University of Cumbria'),
(98420, 'https://ror.org/03rh9qr65', 'en', 1, 'https://ror.org/03rh9qr65 Anton Bruckner Private University Anton Bruckner PrivatuniversitƤt'),
(98421, 'https://ror.org/042drmv40', 'en', 1, 'https://ror.org/042drmv40 University of Puget Sound UniversitƩ de puget sound'),
(98422, 'https://ror.org/05xjevr11', 'en', 1, 'https://ror.org/05xjevr11 North Minzu University åŒ—ę–¹ę°‘ę—å¤§å­¦'),
(98423, 'https://ror.org/04fjtte88', 'en', 1, 'https://ror.org/04fjtte88 Süleyman Demirel University Süleyman Demirel Üniversitesi Süleyman Dəmirəl Universiteti'),
(98424, 'https://ror.org/03jdxdk20', 'en', 1, 'https://ror.org/03jdxdk20 Center for Advanced Studies Research and Development in Sardinia Centro di Ricerca, Sviluppo e Studi Superiori in Sardegna'),
(98425, 'https://ror.org/01tmqtf75', 'en', 1, 'https://ror.org/01tmqtf75 University of Salford'),
(98426, 'https://ror.org/01v9wj339', 'en', 1, 'https://ror.org/01v9wj339 Thompson Rivers University'),
(98427, 'https://ror.org/02q2d2610', 'en', 1, 'https://ror.org/02q2d2610 University of Brescia UniversitƠ degli Studi di Brescia UniversitƤt Brescia UniversitƩ de brescia'),
(98428, 'https://ror.org/05apxxy63', 'en', 1, 'https://ror.org/05apxxy63 Korea Advanced Institute of Science and Technology ķ•œźµ­ź³¼ķ•™źø°ģˆ ģ›'),
(98429, 'https://ror.org/019jds967', 'en', 1, 'https://ror.org/019jds967 Nevşehir Hacı Bektaş Veli University Nevşehir Üniversitesi'),
(98430, 'https://ror.org/01n2bd587', 'en', 1, 'https://ror.org/01n2bd587 Liaoning Technical University č¾½å®å·„ēØ‹ęŠ€ęœÆå¤§å­¦'),
(98431, 'https://ror.org/04vg4w365', 'en', 1, 'https://ror.org/04vg4w365 Loughborough University Prifysgol Loughborough'),
(98432, 'https://ror.org/04gtjhw98', 'en', 1, 'https://ror.org/04gtjhw98 Shandong University of Science and Technology å±±äøœē§‘ęŠ€å¤§å­¦'),
(98433, 'https://ror.org/01j7c0b24', 'en', 1, 'https://ror.org/01j7c0b24 Rush University Medical Center'),
(98434, 'https://ror.org/01dmq3816', 'en', 1, 'https://ror.org/01dmq3816 Brooklands College'),
(98435, 'https://ror.org/02f7k4z58', 'en', 1, 'https://ror.org/02f7k4z58 Davidson College'),
(98436, 'https://ror.org/011k7k191', 'en', 1, 'https://ror.org/011k7k191 LandspĆ­tali National University Hospital of Iceland'),
(98437, 'https://ror.org/04mbfgm16', 'en', 1, 'https://ror.org/04mbfgm16 Simmons University'),
(98438, 'https://ror.org/02463v873', 'pt', 1, 'https://ror.org/02463v873 Instituto PolitƩcnico da Guarda Polytechnic of Guarda'),
(98439, 'https://ror.org/00mwds915', 'en', 1, 'https://ror.org/00mwds915 Chaohu University 巢湖学院'),
(98440, 'https://ror.org/05w54sd08', 'en', 1, 'https://ror.org/05w54sd08 North West Regional College'),
(98441, 'https://ror.org/01tqv1p28', 'en', 1, 'https://ror.org/01tqv1p28 United International University ą¦‡ą¦‰ą¦Øą¦¾ą¦‡ą¦Ÿą§‡ą¦” ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(98442, 'https://ror.org/006cymg18', 'en', 1, 'https://ror.org/006cymg18 Universidad de Costa Este de Maryland University of Maryland Eastern Shore'),
(98443, 'https://ror.org/05xvt9f17', 'en', 1, 'https://ror.org/05xvt9f17 Leiden University Medical Center Leids Universitair Medisch Centrum'),
(98444, 'https://ror.org/02sscsx71', 'en', 1, 'https://ror.org/02sscsx71 Indian Institute of Technology Bhilai'),
(98445, 'https://ror.org/056xse072', 'en', 1, 'https://ror.org/056xse072 Politechnika Rzeszowska im. Ignacego Łukasiewicza Rzeszów University of Technology'),
(98446, 'https://ror.org/05v7fvh88', 'en', 1, 'https://ror.org/05v7fvh88 Guildhall School of Music and Drama Ysgol Gerdd a Drama y Guildhall'),
(98447, 'https://ror.org/012zpbg81', 'en', 1, 'https://ror.org/012zpbg81 Kakatiya University ą¤•ą¤¾ą¤•ą¤¤ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ కాకతీయ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(98448, 'https://ror.org/004dg2369', 'en', 1, 'https://ror.org/004dg2369 Maltepe University Maltepe Üniversitesi'),
(98449, 'https://ror.org/03er55z68', 'fr', 1, 'https://ror.org/03er55z68 Haute Ɖcole Charlemagne'),
(98450, 'https://ror.org/04py35477', 'en', 1, 'https://ror.org/04py35477 Max Planck Institute of Biochemistry Max-Planck-Institut für Biochemie'),
(98451, 'https://ror.org/00dde9829', 'en', 1, 'https://ror.org/00dde9829 Vaasa University of Applied Sciences Vaasan ammattikorkeakoulu Vasa yrkeshƶgskola'),
(98452, 'https://ror.org/04fm2fn75', 'en', 1, 'https://ror.org/04fm2fn75 Kalasalingam Academy of Research and Education ą®•ą®²ą®šą®²ą®æą®™ąÆą®•ą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(98453, 'https://ror.org/04n34rm95', 'en', 1, 'https://ror.org/04n34rm95 Angelo State University'),
(98454, 'https://ror.org/03g5hcd33', 'en', 1, 'https://ror.org/03g5hcd33 Integraal Kankercentrum Nederland Netherlands Comprehensive Cancer Organisation'),
(98455, 'https://ror.org/04vmtqg68', 'fr', 1, 'https://ror.org/04vmtqg68 Haute Ɖcole LĆ©onard de Vinci'),
(98456, 'https://ror.org/029d09756', 'en', 1, 'https://ror.org/029d09756 Cardiff and Vale College Coleg Caerdydd a''r Fro'),
(98457, 'https://ror.org/037b1pp87', 'en', 1, 'https://ror.org/037b1pp87 Beijing University of Technology åŒ—äŗ¬å·„äøšå¤§å­¦'),
(98458, 'https://ror.org/05azzk208', 'en', 1, 'https://ror.org/05azzk208 Zhengzhou Business University 郑州商学院'),
(98459, 'https://ror.org/03nw1rg94', 'en', 1, 'https://ror.org/03nw1rg94 Central University of Jammu'),
(98460, 'https://ror.org/030nc6282', 'en', 1, 'https://ror.org/030nc6282 South Gloucestershire and Stroud College'),
(98461, 'https://ror.org/00wygct11', 'en', 1, 'https://ror.org/00wygct11 University of Gloucestershire'),
(98462, 'https://ror.org/01hg31662', 'en', 1, 'https://ror.org/01hg31662 Beijing Union University åŒ—äŗ¬č”åˆå¤§å­¦'),
(98463, 'https://ror.org/015xq7480', 'en', 1, 'https://ror.org/015xq7480 Nederlands Instituut voor Onderzoek van de Gezondheidszorg Netherlands Institute for Health Services Research'),
(98464, 'https://ror.org/013q1eq08', 'en', 1, 'https://ror.org/013q1eq08 Fudan University å¤ę—¦å¤§å­¦'),
(98465, 'https://ror.org/02x5c5y60', 'es', 1, 'https://ror.org/02x5c5y60 Asociacion Centro De Investigacion Cooperativa En Biociencias CIC bioGUNE Center for Cooperative Research in Biosciences'),
(98466, 'https://ror.org/02xgxme97', 'en', 1, 'https://ror.org/02xgxme97 NHL Stenden Hogeschool NHL Stenden University of Applied Sciences'),
(98467, 'https://ror.org/04y58d606', 'en', 1, 'https://ror.org/04y58d606 Khulna University of Engineering & Technology Khulna University of Engineering and Technology খুলনা ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(98468, 'https://ror.org/04v2j2k71', 'en', 1, 'https://ror.org/04v2j2k71 Xi''an University of Architecture and Technology č„æå®‰å»ŗē­‘ē§‘ęŠ€å¤§å­¦'),
(98469, 'https://ror.org/01kq0pv72', 'en', 1, 'https://ror.org/01kq0pv72 South China Normal University åŽå—åøˆčŒƒå¤§å­¦'),
(98470, 'https://ror.org/00gcgqv39', 'en', 1, 'https://ror.org/00gcgqv39 Eskisehir Technical University Eskişehir Teknik Üniversitesi'),
(98471, 'https://ror.org/032j97c50', 'en', 1, 'https://ror.org/032j97c50 Coleg Cambria'),
(98472, 'https://ror.org/00yze4d93', 'en', 1, 'https://ror.org/00yze4d93 Bahçeşehir University Bahçeşehir Üniversitesi'),
(98473, 'https://ror.org/0262te083', 'en', 1, 'https://ror.org/0262te083 Krakow University of Economics Uniwersytet Ekonomiczny w Krakowie'),
(98474, 'https://ror.org/02m6k0m40', 'en', 1, 'https://ror.org/02m6k0m40 Zuyd Hogeschool Zuyd University of Applied Sciences'),
(98475, 'https://ror.org/01sa9ng67', 'en', 1, 'https://ror.org/01sa9ng67 PSG INSTITUTE OF TECHNOLOGY AND APPLIED RESEARCH பி ą®Žą®øąÆ ஜி ą®ą®ŸąÆ†ą®•ąÆ'),
(98476, 'https://ror.org/00561gr17', 'en', 1, 'https://ror.org/00561gr17 Colchester Institute'),
(98477, 'https://ror.org/04frnz493', 'en', 1, 'https://ror.org/04frnz493 Veer Narmad South Gujarat University વીર ąŖØąŖ°ą«ąŖ®ąŖ¦ ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(98478, 'https://ror.org/02qr8jq33', 'en', 1, 'https://ror.org/02qr8jq33 Lietuvos Muzikos ir Teatro Akademija Lithuanian Academy of Music and Theatre Š›ŠøŃ‚Š¾Š²ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø Šø театра'),
(98479, 'https://ror.org/01hpqfm28', 'en', 1, 'https://ror.org/01hpqfm28 Connecticut College'),
(98480, 'https://ror.org/00jrpyg10', 'pt', 1, 'https://ror.org/00jrpyg10 Atlantic University Atlântica Instituto UniversitÔrio'),
(98481, 'https://ror.org/024zjzd49', 'en', 1, 'https://ror.org/024zjzd49 Lublin University of Technology Politechnika Lubelska'),
(98482, 'https://ror.org/00qqv6244', 'en', 1, 'https://ror.org/00qqv6244 Medical College of Wisconsin'),
(98483, 'https://ror.org/00fbvqs70', 'en', 1, 'https://ror.org/00fbvqs70 Singapore Advanced Research and Education Network'),
(98484, 'https://ror.org/016gb1631', 'hu', 1, 'https://ror.org/016gb1631 HUN-REN Szegedi Biológiai Kutatóközpont Magyar TudomÔnyos Akadémia Szegedi Biológiai KutatóközpontjÔnak'),
(98485, 'https://ror.org/04e6y1282', 'en', 1, 'https://ror.org/04e6y1282 Harbin University of Science and Technology å“ˆå°”ę»Øē†å·„å¤§å­¦'),
(98486, 'https://ror.org/025r5qe02', 'en', 1, 'https://ror.org/025r5qe02 Syracuse University Universidad de Siracusa UniversitƩ de syracuse'),
(98487, 'https://ror.org/03mnm3272', 'en', 1, 'https://ror.org/03mnm3272 City of Wolverhampton College'),
(98488, 'https://ror.org/047x65e68', 'en', 1, 'https://ror.org/047x65e68 National Institute of Technology Tiruchirappalli ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą°Øą±‡ą°·ą°Øą°²ą± ą°‡ą°Øą± ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€'),
(98489, 'https://ror.org/02v3kkq53', 'en', 1, 'https://ror.org/02v3kkq53 Istanbul Commerce University İstanbul Ticaret Ɯniversitesi İstanbul Ticarət Universiteti'),
(98490, 'https://ror.org/023p7mg82', 'en', 1, 'https://ror.org/023p7mg82 Lakehead University UniversitƩ de lakehead'),
(98491, 'https://ror.org/02vg7mz57', 'en', 1, 'https://ror.org/02vg7mz57 Guangdong Pharmaceutical University å¹æäøœčÆå­¦é™¢'),
(98492, 'https://ror.org/049c46160', 'en', 1, 'https://ror.org/049c46160 Naif Arab University for Security Sciences Ų¬Ų§Ł…Ų¹Ų© Ł†Ų§ŁŠŁ Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų£Ł…Ł†ŁŠŲ©'),
(98493, 'https://ror.org/0435tej63', 'en', 1, 'https://ror.org/0435tej63 Shaoxing University ē»å…“ę–‡ē†å­¦é™¢'),
(98494, 'https://ror.org/01rf3yp57', 'en', 1, 'https://ror.org/01rf3yp57 University of Bridgeport'),
(98495, 'https://ror.org/03qeacd72', 'fr', 1, 'https://ror.org/03qeacd72 Ɖcole Nationale SupĆ©rieure de l''Ɖlectronique et de ses Applications'),
(98496, 'https://ror.org/05p2z3x69', 'en', 1, 'https://ror.org/05p2z3x69 Chuo Kikuu cha Kenyatta Kenyatta University'),
(98497, 'https://ror.org/0547wj766', 'en', 1, 'https://ror.org/0547wj766 Northern College'),
(98498, 'https://ror.org/0452jzg20', 'en', 1, 'https://ror.org/0452jzg20 Chapman University'),
(98499, 'https://ror.org/033wcvv61', 'en', 1, 'https://ror.org/033wcvv61 Vancouver Island University'),
(98500, 'https://ror.org/05564e019', 'en', 1, 'https://ror.org/05564e019 Inner Mongolia University of Technology å†…č’™å¤å·„äøšå¤§å­¦'),
(98501, 'https://ror.org/02mgt2s15', 'en', 1, 'https://ror.org/02mgt2s15 Ruskin College'),
(98502, 'https://ror.org/04pd3v454', 'en', 1, 'https://ror.org/04pd3v454 Atilim University Atılım Üniversitesi'),
(98503, 'https://ror.org/02eqpx475', 'en', 1, 'https://ror.org/02eqpx475 Salford City College'),
(98504, 'https://ror.org/000prga03', 'en', 1, 'https://ror.org/000prga03 Guilin Medical University ę”‚ęž—åŒ»å­¦é™¢'),
(98505, 'https://ror.org/03h17x602', 'en', 1, 'https://ror.org/03h17x602 Southwest Petroleum University č„æå—ēŸ³ę²¹å¤§å­¦'),
(98506, 'https://ror.org/04jn0td46', 'en', 1, 'https://ror.org/04jn0td46 Xi’an University of Posts and Telecommunications 脿安邮电大学'),
(98507, 'https://ror.org/01sebzx27', 'en', 1, 'https://ror.org/01sebzx27 National Institute of Technology Jamshedpur ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤œą¤®ą¤¶ą„‡ą¤¦ą¤Ŗą„ą¤°'),
(98508, 'https://ror.org/04nayfw11', 'en', 1, 'https://ror.org/04nayfw11 Tomas Bata University in ZlĆ­n Univerzita TomÔŔe Bati ve ZlĆ­ně'),
(98509, 'https://ror.org/05h664633', 'en', 1, 'https://ror.org/05h664633 Laurea University of Applied Sciences'),
(98510, 'https://ror.org/01tbgce33', 'en', 1, 'https://ror.org/01tbgce33 Evangelische Hochschule Nürnberg Lutheran University of Applied Sciences Nuremberg'),
(98511, 'https://ror.org/02x1pa065', 'en', 1, 'https://ror.org/02x1pa065 Guizhou Normal University č“µå·žåøˆčŒƒå¤§å­¦'),
(98512, 'https://ror.org/04qbqv677', 'de', 1, 'https://ror.org/04qbqv677 Film University Babelsberg KONRAD WOLF FilmuniversitƤt Babelsberg KONRAD WOLF'),
(98513, 'https://ror.org/04kqvjg13', 'en', 1, 'https://ror.org/04kqvjg13 Tongling University 铜陵学院'),
(98514, 'https://ror.org/05m83vp63', 'en', 1, 'https://ror.org/05m83vp63 Armed Forces Academy'),
(98515, 'https://ror.org/03jc41j30', 'en', 1, 'https://ror.org/03jc41j30 Jiangsu University ę±Ÿč‹å¤§å­¦'),
(98516, 'https://ror.org/059636586', 'en', 1, 'https://ror.org/059636586 Istanbul Technical University İstanbul Teknik Üniversitesi İstanbul Texniki Universiteti'),
(98517, 'https://ror.org/02q1hyx43', 'en', 1, 'https://ror.org/02q1hyx43 Sanjiang University äø‰ę±Ÿå­¦é™¢'),
(98518, 'https://ror.org/03t52dk35', 'en', 1, 'https://ror.org/03t52dk35 Western Sydney University'),
(98519, 'https://ror.org/03bfqnx40', 'en', 1, 'https://ror.org/03bfqnx40 Democritus University of Thrace UniversitĆ© dĆ©mocrite de thrace Δημοκρίτειο Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī˜ĻĪ¬ĪŗĪ·Ļ‚'),
(98520, 'https://ror.org/03k788b92', 'en', 1, 'https://ror.org/03k788b92 Emily Carr University of Art and Design'),
(98521, 'https://ror.org/02yhrrk59', 'en', 1, 'https://ror.org/02yhrrk59 University of Derby'),
(98522, 'https://ror.org/0304ty515', 'en', 1, 'https://ror.org/0304ty515 Dalian Neusoft University of Information å¤§čæžäøœč½Æäæ”ęÆå¤§å­¦'),
(98523, 'https://ror.org/017cfeh02', 'fr', 1, 'https://ror.org/017cfeh02 National Engineering School of Saint-Ɖtienne Ɖcole Nationale d''IngĆ©nieurs de Saint-Ɖtienne'),
(98524, 'https://ror.org/00bnk2e50', 'en', 1, 'https://ror.org/00bnk2e50 Sultan Zainal Abidin University Universiti Sultan Zainal Abidin'),
(98525, 'https://ror.org/046dg4z72', 'en', 1, 'https://ror.org/046dg4z72 Marine Biological Laboratory'),
(98526, 'https://ror.org/014g1a453', 'en', 1, 'https://ror.org/014g1a453 Taif University Ų¬Ų§Ł…Ų¹Ų© الطائف'),
(98527, 'https://ror.org/00p0dkd98', 'en', 1, 'https://ror.org/00p0dkd98 Sparsholt College'),
(98528, 'https://ror.org/05d23ve83', 'en', 1, 'https://ror.org/05d23ve83 Colgate University Universidad Colgate UniversitƩ de colgate'),
(98529, 'https://ror.org/05ra6d150', 'en', 1, 'https://ror.org/05ra6d150 Catholic University in Ruzomberok Katolícka univerzita v Ružomberku'),
(98530, 'https://ror.org/04v0fk911', 'en', 1, 'https://ror.org/04v0fk911 TechnologickÔ agentura České republiky Technology Agency of the Czech Republic'),
(98531, 'https://ror.org/01jmwd314', 'en', 1, 'https://ror.org/01jmwd314 Fanshawe College'),
(98532, 'https://ror.org/03tqb8s11', 'en', 1, 'https://ror.org/03tqb8s11 Yangzhou University ę‰¬å·žå¤§å­¦'),
(98533, 'https://ror.org/03470g923', 'tr', 1, 'https://ror.org/03470g923 Ankara Müzik ve Güzel Sanatlar Üniversitesi Ankara University of Music and Fine Arts'),
(98534, 'https://ror.org/04en8wb91', 'en', 1, 'https://ror.org/04en8wb91 Suzhou University of Science and Technology č‹å·žē§‘ęŠ€å­¦é™¢'),
(98535, 'https://ror.org/01b9y2p27', 'en', 1, 'https://ror.org/01b9y2p27 Xi''an University of Finance and Economics č„æå®‰č“¢ē»å­¦é™¢'),
(98536, 'https://ror.org/05mzfcs16', 'en', 1, 'https://ror.org/05mzfcs16 The Open University Y Brifysgol Agored'),
(98537, 'https://ror.org/013sqra93', 'en', 1, 'https://ror.org/013sqra93 Antalya Bilim University Antalya Bilim Üniversitesi'),
(98538, 'https://ror.org/039fj2469', 'fr', 1, 'https://ror.org/039fj2469 Observatoire de la CĆ“te d’Azur Observatoire de la cĆ“te d''azur'),
(98539, 'https://ror.org/02cr20t12', 'es', 1, 'https://ror.org/02cr20t12 Biblioteca Nacional d''Espanya Biblioteca Nacional de EspaƱa Espainiako Liburutegi Nazionala National Library of Spain'),
(98540, 'https://ror.org/05em1gq62', 'en', 1, 'https://ror.org/05em1gq62 Jinling Institute of Technology é‡‘é™µē§‘ęŠ€å­¦é™¢'),
(98541, 'https://ror.org/002xn4752', 'en', 1, 'https://ror.org/002xn4752 Western Oregon University'),
(98542, 'https://ror.org/00s7tkw17', 'en', 1, 'https://ror.org/00s7tkw17 Minjiang University é—½ę±Ÿå­¦é™¢'),
(98543, 'https://ror.org/042hb4t21', 'en', 1, 'https://ror.org/042hb4t21 University of New York in Prague'),
(98544, 'https://ror.org/01ztv7560', 'en', 1, 'https://ror.org/01ztv7560 Sapientia College of Theology of Religious Orders Sapientia Szerzetesi HittudomĆ”nyi Főiskola'),
(98545, 'https://ror.org/03q648j11', 'en', 1, 'https://ror.org/03q648j11 Hainan University ęµ·å—å¤§å­¦'),
(98546, 'https://ror.org/01etz1309', 'en', 1, 'https://ror.org/01etz1309 Pamukkale University Pamukkale Üniversitesi'),
(98547, 'https://ror.org/05qkq7x38', 'en', 1, 'https://ror.org/05qkq7x38 Nirma University નિરમા ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(98548, 'https://ror.org/00x194q47', 'en', 1, 'https://ror.org/00x194q47 Rikkyo University 立教大学'),
(98549, 'https://ror.org/00ejm2g54', 'en', 1, 'https://ror.org/00ejm2g54 California State University, Stanislaus UniversitƩ d''Ʃtat de californie Ơ stanislaus'),
(98550, 'https://ror.org/04gpd4q15', 'en', 1, 'https://ror.org/04gpd4q15 City University of Macau Universidade da Cidade de Macau ę¾³é–€åŸŽåø‚å¤§å­ø'),
(98551, 'https://ror.org/02v5cy890', 'da', 1, 'https://ror.org/02v5cy890 Erhvervsakademi MidtVest'),
(98552, 'https://ror.org/02pvbz391', 'en', 1, 'https://ror.org/02pvbz391 Vocational Training Council 職愭訓緓局'),
(98553, 'https://ror.org/04mma4681', 'en', 1, 'https://ror.org/04mma4681 Fatih Sultan Mehmet Vakıf Üniversitesi Fatih Sultan Mehmet Waqf University'),
(98554, 'https://ror.org/043dxc061', 'en', 1, 'https://ror.org/043dxc061 Sichuan Normal University å››å·åøˆčŒƒå¤§å­¦'),
(98555, 'https://ror.org/00490vc18', 'en', 1, 'https://ror.org/00490vc18 Koninklijke Academie van Beeldende Kunsten Royal Academy of Art'),
(98556, 'https://ror.org/04mkzax54', 'en', 1, 'https://ror.org/04mkzax54 Jiangnan University ę±Ÿå—å¤§å­¦'),
(98557, 'https://ror.org/00fy5v859', 'en', 1, 'https://ror.org/00fy5v859 Hogeschool West-Vlaanderen University College West Flanders'),
(98558, 'https://ror.org/02315by94', 'en', 1, 'https://ror.org/02315by94 Xuzhou University of Technology å¾å·žå·„ēØ‹å­¦é™¢'),
(98559, 'https://ror.org/02ytfzr55', 'en', 1, 'https://ror.org/02ytfzr55 Indian Institute of Engineering Science and Technology, Shibpur बंगाल ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¬ą§‡ą¦™ą§ą¦—ą¦² ą¦‡ą¦žą§ą¦œą¦æą¦Øą¦æą¦Æą¦¼ą¦¾ą¦°ą¦æą¦‚ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(98560, 'https://ror.org/05jgq9443', 'en', 1, 'https://ror.org/05jgq9443 Berlin-Brandenburg Academy of Sciences and Humanities Berlin-Brandenburgische Akademie der Wissenschaften'),
(98561, 'https://ror.org/04vrxay34', 'en', 1, 'https://ror.org/04vrxay34 SOAS University of London SOAS, Prifysgol Llundain'),
(98562, 'https://ror.org/0257dtg16', 'en', 1, 'https://ror.org/0257dtg16 Dicle University Dicle Üniversitesi'),
(98563, 'https://ror.org/03wafw466', 'en', 1, 'https://ror.org/03wafw466 City College Norwich'),
(98564, 'https://ror.org/0541v4g57', 'en', 1, 'https://ror.org/0541v4g57 University of Music and Performing Arts Graz Universität für Musik und darstellende Kunst Graz'),
(98565, 'https://ror.org/05jzt8766', 'en', 1, 'https://ror.org/05jzt8766 Lapin yliopisto Lapplands universitet University of Lapland'),
(98566, 'https://ror.org/02ks53214', 'en', 1, 'https://ror.org/02ks53214 Max Planck Institute for Chemical Ecology Max-Planck-Institut für Chemische Ɩkologie'),
(98567, 'https://ror.org/0264cg909', 'en', 1, 'https://ror.org/0264cg909 Indian Institute of Technology Palakkad ą“Ŗą“¾ą“²ą“•ąµą“•ą“¾ą“Ÿąµ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ą“æą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(98568, 'https://ror.org/00502j866', 'en', 1, 'https://ror.org/00502j866 British Universities Film & Video Council'),
(98569, 'https://ror.org/05gj63w50', 'en', 1, 'https://ror.org/05gj63w50 Southwestern University'),
(98570, 'https://ror.org/01xm4n520', 'en', 1, 'https://ror.org/01xm4n520 Ionian University UniversitĆ© ionienne Ī™ĻŒĪ½Ī¹Īæ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(98571, 'https://ror.org/04n37he08', 'en', 1, 'https://ror.org/04n37he08 General Sir John Kotelawala Defence University ą®œąÆ†ą®©ą®°ą®²ąÆ ą®šąÆ‡ą®°ąÆ ą®œąÆ‹ą®©ąÆ ą®•ąÆŠą®¤ąÆą®¤ą®²ą®¾ą®µą®² ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ą®¾ą®©ą®¤ąÆ ą¶¢ą·™ą¶±ą¶»ą·ą¶½ą·Š ą·ą·Šā€ą¶»ą·“ą¶øą¶­ą·Š ą¶¢ą·ą¶±ą·Š ą¶šą·œą¶­ą¶½ą·ą·€ą¶½ ą¶†ą¶»ą¶šą·Šą·‚ą¶š ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(98572, 'https://ror.org/05bbqza97', 'en', 1, 'https://ror.org/05bbqza97 Kingston University'),
(98573, 'https://ror.org/04n40zv07', 'en', 1, 'https://ror.org/04n40zv07 Shanghai Ocean University äøŠęµ·ęµ·ę“‹å¤§å­¦'),
(98574, 'https://ror.org/055hq4920', 'en', 1, 'https://ror.org/055hq4920 German University of Technology تسعى الجامعة Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(98575, 'https://ror.org/03zax1057', 'en', 1, 'https://ror.org/03zax1057 NyƭregyhƔzi Egyetem University of NyƭregyhƔza'),
(98576, 'https://ror.org/041pakw92', 'en', 1, 'https://ror.org/041pakw92 Renmin University of China 中国人民大学'),
(98577, 'https://ror.org/04kwn3124', 'en', 1, 'https://ror.org/04kwn3124 Royal College of Music Y Coleg Cerddoriaeth Brenhinol'),
(98578, 'https://ror.org/04tagjk85', 'en', 1, 'https://ror.org/04tagjk85 Netherlands Institute for Social Research'),
(98579, 'https://ror.org/04gkprb03', 'en', 1, 'https://ror.org/04gkprb03 Cyprus Research and Academic Network'),
(98580, 'https://ror.org/02gz6gg07', 'en', 1, 'https://ror.org/02gz6gg07 Florida International University Universidad Internacional de Florida UniversitƩ internationale de floride'),
(98581, 'https://ror.org/052411t69', 'en', 1, 'https://ror.org/052411t69 Courtauld Institute of Art Sefydliad Celf Courtauld'),
(98582, 'https://ror.org/02rkvz144', 'en', 1, 'https://ror.org/02rkvz144 Northeast Normal University äøœåŒ—åøˆčŒƒå¤§å­¦'),
(98583, 'https://ror.org/03hhhyk81', 'en', 1, 'https://ror.org/03hhhyk81 Hungarian University of Fine Arts Magyar KĆ©pzőművĆ©szeti Egyetem'),
(98584, 'https://ror.org/03zzckc47', 'en', 1, 'https://ror.org/03zzckc47 Kadir Has University Kadir Has Üniversitesi'),
(98585, 'https://ror.org/01qaqcf60', 'en', 1, 'https://ror.org/01qaqcf60 University of Białystok Uniwersytet w Białymstoku'),
(98586, 'https://ror.org/00e39jm60', 'no_lang_code', 1, 'https://ror.org/00e39jm60 Curio Stichting ROC West-Brabant'),
(98587, 'https://ror.org/0360zcg91', 'en', 1, 'https://ror.org/0360zcg91 Zhongyuan University of Technology äø­åŽŸå·„å­¦é™¢'),
(98588, 'https://ror.org/04jqqz255', 'en', 1, 'https://ror.org/04jqqz255 Barnfield College'),
(98589, 'https://ror.org/03c3y8w73', 'pt', 1, 'https://ror.org/03c3y8w73 Escola Superior de Enfermagem de Coimbra Nursing School of Coimbra'),
(98590, 'https://ror.org/00krbh354', 'en', 1, 'https://ror.org/00krbh354 Jan Kochanowski University Uniwersytet Jana Kochanowskiego w Kielcach'),
(98591, 'https://ror.org/055hnk386', 'en', 1, 'https://ror.org/055hnk386 Wuhu Institute of Technology čŠœę¹–å·„å­¦é™¢'),
(98592, 'https://ror.org/01p65pg69', 'en', 1, 'https://ror.org/01p65pg69 British Columbia Institute of Technology Institut de technologie de la colombie-britannique'),
(98593, 'https://ror.org/0102mm775', 'en', 1, 'https://ror.org/0102mm775 Nicolaus Copernicus University Uniwersytet Mikołaja Kopernika w Toruniu'),
(98594, 'https://ror.org/030e3n504', 'en', 1, 'https://ror.org/030e3n504 Liaoning University of Traditional Chinese Medicine č¾½å®äø­åŒ»čÆå¤§å­¦'),
(98595, 'https://ror.org/05d8tf882', 'en', 1, 'https://ror.org/05d8tf882 Frederick University'),
(98596, 'https://ror.org/05p21h471', 'en', 1, 'https://ror.org/05p21h471 University College Prague'),
(98597, 'https://ror.org/036n0x007', 'en', 1, 'https://ror.org/036n0x007 Lafayette College'),
(98598, 'https://ror.org/00k6tx165', 'en', 1, 'https://ror.org/00k6tx165 Ball State University Universidad Estatal Ball'),
(98599, 'https://ror.org/04v2twj65', 'en', 1, 'https://ror.org/04v2twj65 Oxford Brookes University Prifysgol Brookes Rhydychen'),
(98600, 'https://ror.org/02djqfd08', 'en', 1, 'https://ror.org/02djqfd08 Zhejiang University of Technology ęµ™ę±Ÿå·„äøšå¤§å­¦'),
(98601, 'https://ror.org/051sx6d27', 'en', 1, 'https://ror.org/051sx6d27 Dublin Institute For Advanced Studies Institiúid Ard-Léinn Bhaile Átha Cliath'),
(98602, 'https://ror.org/023c9pb11', 'en', 1, 'https://ror.org/023c9pb11 Indian Institute of Information Technology, Design and Manufacturing, Kancheepuram'),
(98603, 'https://ror.org/05ynr3m75', 'it', 1, 'https://ror.org/05ynr3m75 IRCCS Eugenio Medea'),
(98604, 'https://ror.org/04nte7y58', 'en', 1, 'https://ror.org/04nte7y58 Shanxi University of Finance and Economics å±±č„æč“¢ē»å¤§å­¦'),
(98605, 'https://ror.org/0270ceh40', 'en', 1, 'https://ror.org/0270ceh40 Masaryk Memorial Cancer Institute'),
(98606, 'https://ror.org/04ps1r162', 'en', 1, 'https://ror.org/04ps1r162 Lincoln University Te Whare Wanaka o Aoraki'),
(98607, 'https://ror.org/02teq1165', 'en', 1, 'https://ror.org/02teq1165 Universidad de Misisipi University of Mississippi UniversitƩ du Mississippi'),
(98608, 'https://ror.org/04wzzqn13', 'en', 1, 'https://ror.org/04wzzqn13 Kean University'),
(98609, 'https://ror.org/04tvy9335', 'en', 1, 'https://ror.org/04tvy9335 Oaklands College'),
(98610, 'https://ror.org/01j903a45', 'en', 1, 'https://ror.org/01j903a45 Universidad del Norte de Florida University of North Florida'),
(98611, 'https://ror.org/01k2y1055', 'en', 1, 'https://ror.org/01k2y1055 University of Wolverhampton'),
(98612, 'https://ror.org/00pbfkr44', 'en', 1, 'https://ror.org/00pbfkr44 University College of Arts Crafts and Design'),
(98613, 'https://ror.org/00q3dfs08', 'en', 1, 'https://ror.org/00q3dfs08 Rose Bruford College'),
(98614, 'https://ror.org/036je1b38', 'en', 1, 'https://ror.org/036je1b38 SeinƤjoen ammattikorkeakoulu SeinƤjoki University of Applied Sciences'),
(98615, 'https://ror.org/04523zj19', 'en', 1, 'https://ror.org/04523zj19 Nanjing University of Chinese Medicine å—äŗ¬äø­åŒ»čÆå¤§å­¦'),
(98616, 'https://ror.org/02ec8mb70', 'en', 1, 'https://ror.org/02ec8mb70 Kajaani University of Applied Sciences Kajaanin ammattikorkeakoulu'),
(98617, 'https://ror.org/03ajenk59', 'en', 1, 'https://ror.org/03ajenk59 Kingston Maurward College'),
(98618, 'https://ror.org/01x18ax09', 'en', 1, 'https://ror.org/01x18ax09 Yalova University Yalova Üniversitesi'),
(98619, 'https://ror.org/01scyh794', 'en', 1, 'https://ror.org/01scyh794 Nanjing University of Aeronautics and Astronautics å—äŗ¬čˆŖē©ŗčˆŖå¤©å¤§å­¦'),
(98620, 'https://ror.org/04af4be73', 'en', 1, 'https://ror.org/04af4be73 Halesowen College'),
(98621, 'https://ror.org/00fk31757', 'en', 1, 'https://ror.org/00fk31757 Xinjiang University of Finance and Economics ę–°ē–†č“¢ē»å¤§å­¦'),
(98622, 'https://ror.org/0111cdx62', 'en', 1, 'https://ror.org/0111cdx62 A Tan Kapuja Buddhista Főiskola Dharma Gate Buddhist College'),
(98623, 'https://ror.org/035s3f323', 'en', 1, 'https://ror.org/035s3f323 Agricultural University of Iceland LandbĆŗnaưarhĆ”skóli ƍslands'),
(98624, 'https://ror.org/03yeq9x20', 'en', 1, 'https://ror.org/03yeq9x20 University of Lincoln'),
(98625, 'https://ror.org/008taqp83', 'en', 1, 'https://ror.org/008taqp83 Inter University Computation Centre ×ž×Ø×›×– החישובים הבין-××•× ×™×‘×Ø×”×™×˜××™'),
(98626, 'https://ror.org/045y10908', 'en', 1, 'https://ror.org/045y10908 London School of Theology'),
(98627, 'https://ror.org/03ypqe447', 'en', 1, 'https://ror.org/03ypqe447 Santa Clara University Universidad de Santa Clara UniversitƩ de santa clara'),
(98628, 'https://ror.org/055fene14', 'en', 1, 'https://ror.org/055fene14 Shanghai Dianji University äøŠęµ·ē”µęœŗå­¦é™¢'),
(98629, 'https://ror.org/0149s5s84', 'en', 1, 'https://ror.org/0149s5s84 Stevenson University'),
(98630, 'https://ror.org/02aj7yc53', 'en', 1, 'https://ror.org/02aj7yc53 Princess MƔxima Center Prinses MƔxima Centrum'),
(98631, 'https://ror.org/03ewx7v96', 'en', 1, 'https://ror.org/03ewx7v96 TOBB Ekonomi ve Teknoloji Ɯniversitesi TOBB University of Economics and Technology TOBB İqtisadiyyat və Texnologiya Universiteti'),
(98632, 'https://ror.org/01szgyb91', 'en', 1, 'https://ror.org/01szgyb91 Elon University'),
(98633, 'https://ror.org/02k92ks68', 'en', 1, 'https://ror.org/02k92ks68 Huanghuai University 黄淮学院'),
(98634, 'https://ror.org/006x4sc24', 'en', 1, 'https://ror.org/006x4sc24 Gdańsk University of Technology Politechnika Gdańska'),
(98635, 'https://ror.org/01x1skr92', 'en', 1, 'https://ror.org/01x1skr92 Henan University of Urban Construction ę²³å—åŸŽå»ŗå­¦é™¢'),
(98636, 'https://ror.org/03hw5e041', 'fr', 1, 'https://ror.org/03hw5e041 Ɖcole Nationale SupĆ©rieure d''Architecture de Nancy'),
(98637, 'https://ror.org/03h0qfp10', 'en', 1, 'https://ror.org/03h0qfp10 Halmstad University Hƶgskolan i Halmstad'),
(98638, 'https://ror.org/04es49j42', 'it', 1, 'https://ror.org/04es49j42 Istituto Zooprofilattico Sperimentale dell''Abruzzo e del Molise G. Caporale'),
(98639, 'https://ror.org/04efm0253', 'en', 1, 'https://ror.org/04efm0253 Ollscoil Teicneolaƭochta na Sionainne: LƔr Tƭre Iarthar LƔir Technological University of the Shannon: Midlands Midwest'),
(98640, 'https://ror.org/037vvf096', 'en', 1, 'https://ror.org/037vvf096 Karamanoğlu Mehmetbey University Karamanoğlu Mehmetbey Üniversitesi'),
(98641, 'https://ror.org/044my7157', 'en', 1, 'https://ror.org/044my7157 Guangzhou Academy of Fine Arts å¹æå·žē¾ŽęœÆå­¦é™¢'),
(98642, 'https://ror.org/0263v9e25', 'en', 1, 'https://ror.org/0263v9e25 Tarleton State University UniversitĆ© d''Ɖtat de tarleton'),
(98643, 'https://ror.org/04dzesb62', 'en', 1, 'https://ror.org/04dzesb62 Majan College'),
(98644, 'https://ror.org/02fwjgw17', 'en', 1, 'https://ror.org/02fwjgw17 University of Jaffna ą®Æą®¾ą®“ąÆą®ŖąÆą®Ŗą®¾ą®£ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą¶ŗą·ą¶“ą¶±ą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(98645, 'https://ror.org/056veft20', 'en', 1, 'https://ror.org/056veft20 Kutztown University'),
(98646, 'https://ror.org/01ayc5b57', 'en', 1, 'https://ror.org/01ayc5b57 Deutsches Forschungszentrum für Künstliche Intelligenz German Research Centre for Artificial Intelligence'),
(98647, 'https://ror.org/04ka5nr41', 'en', 1, 'https://ror.org/04ka5nr41 Longley Park Sixth Form College'),
(98648, 'https://ror.org/03jep7677', 'en', 1, 'https://ror.org/03jep7677 Carleton College'),
(98649, 'https://ror.org/0567v8t28', 'en', 1, 'https://ror.org/0567v8t28 Jawaharlal Nehru University जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਜਵਾਹਿਰ ਲਾਲ ਨਹਿਰੂ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€, ਨਵੀਂ ਦਿੱਲੀ ą®œą®µą®•ą®°ąÆą®²ą®¾ą®²ąÆ நேரு ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²œą²µą²¾ą²¹ą²°ą²²ą²¾ą²²ą³ ನೆಹರು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ ą“œą“µą“¹ąµ¼ą“²ą“¾ąµ½ ą“Øąµ†ą“¹ąµą“°ąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(98650, 'https://ror.org/05aqahr97', 'en', 1, 'https://ror.org/05aqahr97 Shiv Nadar University'),
(98651, 'https://ror.org/0265d1010', 'en', 1, 'https://ror.org/0265d1010 Shanxi Medical University å±±č„æåŒ»ē§‘å¤§å­¦'),
(98652, 'https://ror.org/04twzkg92', 'en', 1, 'https://ror.org/04twzkg92 Tartu Health Care College Tartu Tervishoiu kƵrgkool'),
(98653, 'https://ror.org/01sp7nd78', 'en', 1, 'https://ror.org/01sp7nd78 Instituto PortuguĆŖs do Mar e da Atmosfera Portuguese Sea and Atmosphere Institute'),
(98654, 'https://ror.org/04kdh6x72', 'en', 1, 'https://ror.org/04kdh6x72 FZI Forschungszentrum Informatik FZI Research Center for Information Technology'),
(98655, 'https://ror.org/01d981710', 'en', 1, 'https://ror.org/01d981710 Technological University of Pereira Universidad Tecnológica de Pereira'),
(98656, 'https://ror.org/04q2sd920', 'en', 1, 'https://ror.org/04q2sd920 North East Surrey College of Technology'),
(98657, 'https://ror.org/05ar8rn06', 'en', 1, 'https://ror.org/05ar8rn06 Guangzhou University å¹æå·žå¤§å­¦'),
(98658, 'https://ror.org/04tf6q291', 'en', 1, 'https://ror.org/04tf6q291 Stockholm University of the Arts Stockholms KonstnƤrliga Hƶgskola'),
(98659, 'https://ror.org/009fw8j44', 'en', 1, 'https://ror.org/009fw8j44 Hebei Agricultural University ę²³åŒ—å†œäøšå¤§å­¦'),
(98660, 'https://ror.org/02n651896', 'en', 1, 'https://ror.org/02n651896 California State University, San Bernardino Universidad Estatal de California, San Bernardino'),
(98661, 'https://ror.org/03t9adt98', 'en', 1, 'https://ror.org/03t9adt98 Beijing University of Agriculture åŒ—äŗ¬å†œå­¦é™¢'),
(98662, 'https://ror.org/05rsv8p09', 'tr', 1, 'https://ror.org/05rsv8p09 Ƈanakkale Onsekiz Mart University Ƈanakkale Onsekiz Mart Ɯniversitesi'),
(98663, 'https://ror.org/05as1na60', 'en', 1, 'https://ror.org/05as1na60 North Island College'),
(98664, 'https://ror.org/001pe5g24', 'en', 1, 'https://ror.org/001pe5g24 University of North Georgia'),
(98665, 'https://ror.org/05ev1jb90', 'en', 1, 'https://ror.org/05ev1jb90 Tianjin University of Finance and Economics å¤©ę“„č“¢ē»å¤§å­¦'),
(98666, 'https://ror.org/03rj87919', 'ms', 1, 'https://ror.org/03rj87919 Politeknik Tuanku Syed Sirajuddin'),
(98667, 'https://ror.org/050s6ns64', 'en', 1, 'https://ror.org/050s6ns64 Fujian Medical University ē¦å»ŗåŒ»ē§‘å¤§å­¦'),
(98668, 'https://ror.org/02ndfsn03', 'en', 1, 'https://ror.org/02ndfsn03 PreŔovskÔ univerzita v PreŔove University of PreŔov'),
(98669, 'https://ror.org/041jyzp61', 'tr', 1, 'https://ror.org/041jyzp61 Van Yuzuncu Yil University Van Yüzüncü Yıl Üniversitesi'),
(98670, 'https://ror.org/04091f946', 'en', 1, 'https://ror.org/04091f946 SzƩchenyi IstvƔn Egyetem SzƩchenyi IstvƔn University'),
(98671, 'https://ror.org/05vghhr25', 'en', 1, 'https://ror.org/05vghhr25 Turun yliopisto University of Turku ƅbo universitet'),
(98672, 'https://ror.org/03vvy0v27', 'en', 1, 'https://ror.org/03vvy0v27 Det Kongelige Bibliotek Royal Danish Library'),
(98673, 'https://ror.org/03mqfn238', 'en', 1, 'https://ror.org/03mqfn238 University of South China 南华大学'),
(98674, 'https://ror.org/01p884a79', 'en', 1, 'https://ror.org/01p884a79 Hebei University ę²³åŒ—å¤§å­¦'),
(98675, 'https://ror.org/029gnnp81', 'es', 1, 'https://ror.org/029gnnp81 International University of La Rioja Universidad Internacional De La Rioja'),
(98676, 'https://ror.org/03mys6533', 'en', 1, 'https://ror.org/03mys6533 Zhejiang Ocean University ęµ™ę±Ÿęµ·ę“‹å­¦é™¢'),
(98677, 'https://ror.org/00jjdh985', 'sk', 1, 'https://ror.org/00jjdh985 VysokÔ Škola Manažmentu VysokÔ Ŕkola manažmentu, City University of Seattle'),
(98678, 'https://ror.org/02z43xh36', 'en', 1, 'https://ror.org/02z43xh36 Stevens Institute of Technology'),
(98679, 'https://ror.org/02ws1xc11', 'ca', 1, 'https://ror.org/02ws1xc11 Jaume I University Universidad Jaime I Universitat Jaume I'),
(98680, 'https://ror.org/03fe7t173', 'en', 1, 'https://ror.org/03fe7t173 Wuhan University of Technology 武汉理巄大学');
INSERT INTO `rors` VALUES
(98681, 'https://ror.org/00f2wje32', 'en', 1, 'https://ror.org/00f2wje32 Academy of Media Arts Cologne Kunsthochschule für Medien Köln'),
(98682, 'https://ror.org/03tqeft14', 'en', 1, 'https://ror.org/03tqeft14 Wentworth Institute of Technology'),
(98683, 'https://ror.org/03emska84', 'en', 1, 'https://ror.org/03emska84 University of Niigata Prefecture ę–°ę½ŸēœŒē«‹å¤§å­¦'),
(98684, 'https://ror.org/04xysgw12', 'en', 1, 'https://ror.org/04xysgw12 Pohang University of Science and Technology ķ¬ķ•­ź³µź³¼ėŒ€ķ•™źµ'),
(98685, 'https://ror.org/03s9yme23', 'en', 1, 'https://ror.org/03s9yme23 KrajskĆ” vědeckĆ” knihovna v Liberci, příspěvkovĆ” organizace Regional Research Library in Liberec'),
(98686, 'https://ror.org/04t9p9g29', 'en', 1, 'https://ror.org/04t9p9g29 Wuhan Conservatory of Music ę­¦ę±‰éŸ³ä¹å­¦é™¢'),
(98687, 'https://ror.org/046ft6c74', 'en', 1, 'https://ror.org/046ft6c74 West Anhui University ēš–č„æå­¦é™¢'),
(98688, 'https://ror.org/05x1ptx12', 'en', 1, 'https://ror.org/05x1ptx12 Heilongjiang University of Chinese Medicine'),
(98689, 'https://ror.org/04kx2sy84', 'en', 1, 'https://ror.org/04kx2sy84 Fujian Agriculture and Forestry University ē¦å»ŗå†œęž—å¤§å­¦'),
(98690, 'https://ror.org/05jd5aq25', 'en', 1, 'https://ror.org/05jd5aq25 National Law University Odisha'),
(98691, 'https://ror.org/05tc5bm31', 'en', 1, 'https://ror.org/05tc5bm31 Florida Gulf Coast University'),
(98692, 'https://ror.org/02z51cq88', 'es', 1, 'https://ror.org/02z51cq88 Centro de Supercomputación de Galicia The Supercomputing Center of Galicia'),
(98693, 'https://ror.org/05s92vm98', 'en', 1, 'https://ror.org/05s92vm98 Xidian University č„æå®‰ē”µå­ē§‘ęŠ€å¤§å­¦'),
(98694, 'https://ror.org/02yzaka98', 'de', 1, 'https://ror.org/02yzaka98 UniversitƤtsklinik Balgrist'),
(98695, 'https://ror.org/01wntqw50', 'en', 1, 'https://ror.org/01wntqw50 Ankara University Ankara Üniversitesi'),
(98696, 'https://ror.org/00jmsxk74', 'en', 1, 'https://ror.org/00jmsxk74 Putian University čŽ†ē”°å­¦é™¢'),
(98697, 'https://ror.org/052kwzs30', 'en', 1, 'https://ror.org/052kwzs30 King Khalid University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ خالد'),
(98698, 'https://ror.org/022gstf70', 'en', 1, 'https://ror.org/022gstf70 Falmouth University'),
(98699, 'https://ror.org/0557b9y08', 'en', 1, 'https://ror.org/0557b9y08 Shanghai University of Engineering Science äøŠęµ·å·„ēØ‹ęŠ€ęœÆå¤§å­¦'),
(98700, 'https://ror.org/025ae8628', 'en', 1, 'https://ror.org/025ae8628 Nederlands Instituut voor Beeld en Geluid Netherlands Institute for Sound and Vision'),
(98701, 'https://ror.org/02ye9h922', 'en', 1, 'https://ror.org/02ye9h922 National SzƩchƩnyi Library OrszƔgos SzƩchƩnyi KƶnyvtƔr'),
(98702, 'https://ror.org/03dveyr97', 'en', 1, 'https://ror.org/03dveyr97 Guangxi Medical University å¹æč„æåŒ»ē§‘å¤§å­¦'),
(98703, 'https://ror.org/039vq9023', 'en', 1, 'https://ror.org/039vq9023 Design Academy Eindhoven'),
(98704, 'https://ror.org/050ed7z50', 'en', 1, 'https://ror.org/050ed7z50 Bayburt University Bayburt Üniversitesi'),
(98705, 'https://ror.org/01f8qvj05', 'en', 1, 'https://ror.org/01f8qvj05 Bengbu Medical College čšŒåŸ åŒ»å­¦é™¢'),
(98706, 'https://ror.org/02e3zdp86', 'en', 1, 'https://ror.org/02e3zdp86 Boise State University Universidad Estatal de Boise UniversitĆ© d''Ɖtat de boise'),
(98707, 'https://ror.org/04xk0dc21', 'tr', 1, 'https://ror.org/04xk0dc21 Burdur Mehmet Akif Ersoy University Burdur Mehmet Akif Ersoy Üniversitesi'),
(98708, 'https://ror.org/02gdzyx04', 'en', 1, 'https://ror.org/02gdzyx04 University of Winnipeg UniversitƩ de winnipeg'),
(98709, 'https://ror.org/00fqrrm56', 'pt', 1, 'https://ror.org/00fqrrm56 Instituto HidrogrƔfico'),
(98710, 'https://ror.org/020hwjq30', 'en', 1, 'https://ror.org/020hwjq30 Aalto University Aalto-yliopisto'),
(98711, 'https://ror.org/036krsg33', 'es', 1, 'https://ror.org/036krsg33 CARTIF'),
(98712, 'https://ror.org/0031wrj91', 'en', 1, 'https://ror.org/0031wrj91 European University Institute EuropƤisches Hochschulinstitut Institut Universitari Europeu Institut universitaire europƩen de florence Istituto Universitario Europeo'),
(98713, 'https://ror.org/03z9tma90', 'en', 1, 'https://ror.org/03z9tma90 Boğaziçi University Boğaziçi Üniversitesi'),
(98714, 'https://ror.org/01khx4a30', 'en', 1, 'https://ror.org/01khx4a30 Goldsmiths University of London Goldsmiths, Prifysgol Llundain'),
(98715, 'https://ror.org/04ymc4274', 'en', 1, 'https://ror.org/04ymc4274 European Humanities University Europejski Uniwersytet Humanistyczny Europos humanitarinis universitetas Европейский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98716, 'https://ror.org/012wxa772', 'en', 1, 'https://ror.org/012wxa772 Northern Illinois University Universidad del Norte de Illinois'),
(98717, 'https://ror.org/04d4d3c02', 'en', 1, 'https://ror.org/04d4d3c02 University of Peloponnese UniversitĆ© du pĆ©loponnĆØse Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī ĪµĪ»ĪæĻ€ĪæĪ½Ī½Ī®ĻƒĪæĻ…'),
(98718, 'https://ror.org/00j98j631', 'en', 1, 'https://ror.org/00j98j631 Vinoba Bhave University ą¤µą¤æą¤Øą„‹ą¤¬ą¤¾ ą¤­ą¤¾ą¤µą„‡ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(98719, 'https://ror.org/01rv4p989', 'en', 1, 'https://ror.org/01rv4p989 Middlesex University'),
(98720, 'https://ror.org/03f8bz564', 'en', 1, 'https://ror.org/03f8bz564 Technical University of Crete UniversitĆ© technique de crĆØte Πολυτεχνείο ĪšĻĪ®Ļ„Ī·Ļ‚'),
(98721, 'https://ror.org/02423gm04', 'en', 1, 'https://ror.org/02423gm04 Shenyang Aerospace University 沈阳航空航天大学'),
(98722, 'https://ror.org/04bdffz58', 'en', 1, 'https://ror.org/04bdffz58 Drexel University'),
(98723, 'https://ror.org/02j61yw88', 'en', 1, 'https://ror.org/02j61yw88 Aristotle University of Thessaloniki UniversitĆ© aristote de thessalonique Ī‘ĻĪ¹ĻƒĻ„ĪæĻ„Ī­Ī»ĪµĪ¹Īæ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(98724, 'https://ror.org/0022nd079', 'en', 1, 'https://ror.org/0022nd079 Indian Institute of Technology Guwahati ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ąÆą®µą®•ą®¾ą®¤ąÆą®¤ą®æ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“—ąµą“µą“¹ą“¾ą“Ÿąµą“Ÿą“æ'),
(98725, 'https://ror.org/05v1baa28', 'en', 1, 'https://ror.org/05v1baa28 Lauder Business School'),
(98726, 'https://ror.org/017wvtq80', 'en', 1, 'https://ror.org/017wvtq80 University of Patras UniversitĆ© de patras Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī Ī±Ļ„ĻĻŽĪ½'),
(98727, 'https://ror.org/04rjxzd30', 'en', 1, 'https://ror.org/04rjxzd30 CPB Netherlands Bureau for Economic Policy Analysis Centraal Planbureau, Central Planning Bureau'),
(98728, 'https://ror.org/05mwmd090', 'en', 1, 'https://ror.org/05mwmd090 Fróðskaparsetur Føroya Færøernes Universitet University of the Faroe Islands'),
(98729, 'https://ror.org/0483s5p06', 'en', 1, 'https://ror.org/0483s5p06 Longyan University 龙岩学院'),
(98730, 'https://ror.org/00ws30h19', 'en', 1, 'https://ror.org/00ws30h19 Tokyo Metropolitan University ę±äŗ¬éƒ½ē«‹å¤§å­¦'),
(98731, 'https://ror.org/00jk0vn85', 'en', 1, 'https://ror.org/00jk0vn85 Institute of Rheumatology Revmatologický Ústav'),
(98732, 'https://ror.org/043fje207', 'en', 1, 'https://ror.org/043fje207 Hƶgskolan i GƤvle University of GƤvle'),
(98733, 'https://ror.org/03q8dnn23', 'en', 1, 'https://ror.org/03q8dnn23 City University of Hong Kong'),
(98734, 'https://ror.org/05td3s095', 'en', 1, 'https://ror.org/05td3s095 Nanjing Agricultural University å—äŗ¬å†œäøšå¤§å­¦'),
(98735, 'https://ror.org/02wj89n04', 'fr', 1, 'https://ror.org/02wj89n04 Ibn TofaĆÆl University UniversitĆ© Ibn-Tofail Ų¬Ų§Ł…Ų¹Ų© ابن Ų·ŁŁŠŁ„'),
(98736, 'https://ror.org/034p36h22', 'en', 1, 'https://ror.org/034p36h22 Shandong University of Art and Design å±±äøœå·„č‰ŗē¾ŽęœÆå­¦é™¢'),
(98737, 'https://ror.org/020rk2m16', 'cs', 1, 'https://ror.org/020rk2m16 Ústav ArcheologickĆ© PamĆ”tkovĆ© PĆ©Äe Brno'),
(98738, 'https://ror.org/02s82rs08', 'en', 1, 'https://ror.org/02s82rs08 Konya Technical University Konya Teknik Üniversitesi'),
(98739, 'https://ror.org/053w1zy07', 'en', 1, 'https://ror.org/053w1zy07 Hunan Normal University ę¹–å—åøˆčŒƒå¤§å­¦'),
(98740, 'https://ror.org/03j2gem75', 'no_lang_code', 1, 'https://ror.org/03j2gem75 AARNet (Australia)'),
(98741, 'https://ror.org/00bas1c41', 'en', 1, 'https://ror.org/00bas1c41 AGH University of Krakow Akademia Górniczo-Hutnicza im. Stanisława Staszica w Krakowie'),
(98742, 'https://ror.org/04t79ze18', 'en', 1, 'https://ror.org/04t79ze18 Karl Landsteiner Privatuniversität für Gesundheitswissenschaften Karl Landsteiner University of Health Sciences'),
(98743, 'https://ror.org/042ver755', 'en', 1, 'https://ror.org/042ver755 University College Birmingham'),
(98744, 'https://ror.org/05hbexn54', 'en', 1, 'https://ror.org/05hbexn54 University of Wisconsin–Green Bay UniversitĆ© du Wisconsin–Green Bay'),
(98745, 'https://ror.org/03hbp5t65', 'en', 1, 'https://ror.org/03hbp5t65 Universidad de Idaho University of Idaho'),
(98746, 'https://ror.org/01wsfe280', 'en', 1, 'https://ror.org/01wsfe280 Qassim University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚ŲµŁŠŁ…'),
(98747, 'https://ror.org/0388c3403', 'en', 1, 'https://ror.org/0388c3403 Sichuan Agricultural University å››å·å†œäøšå¤§å­¦'),
(98748, 'https://ror.org/01gw3d370', 'en', 1, 'https://ror.org/01gw3d370 University of Windsor UniversitƩ de windsor'),
(98749, 'https://ror.org/023372f11', 'en', 1, 'https://ror.org/023372f11 Royal Northern College of Music'),
(98750, 'https://ror.org/01jvdtb95', 'en', 1, 'https://ror.org/01jvdtb95 Royal Academy of Music'),
(98751, 'https://ror.org/04y8sc244', 'en', 1, 'https://ror.org/04y8sc244 Ozarks Technical Community College'),
(98752, 'https://ror.org/03p3aeb86', 'es', 1, 'https://ror.org/03p3aeb86 Universidad de Murcia Universidade de Murcia Universitat de MĆŗrcia University of Murcia'),
(98753, 'https://ror.org/022ge7714', 'tr', 1, 'https://ror.org/022ge7714 Kahramanmaraş İstiklal University Kahramanmaraş İstiklal Üniversitesi'),
(98754, 'https://ror.org/01p8y5k78', 'no_lang_code', 1, 'https://ror.org/01p8y5k78 Academic Analytics'),
(98755, 'https://ror.org/012gfrj24', 'en', 1, 'https://ror.org/012gfrj24 Intercollege'),
(98756, 'https://ror.org/012a84b59', 'en', 1, 'https://ror.org/012a84b59 Hubei University Of Economics ę¹–åŒ—ē»ęµŽå­¦é™¢'),
(98757, 'https://ror.org/053jtd921', 'en', 1, 'https://ror.org/053jtd921 National Academy of Chinese Theatre Arts äø­å›½ęˆę›²å­¦é™¢'),
(98758, 'https://ror.org/005f5hv41', 'en', 1, 'https://ror.org/005f5hv41 California State University, Northridge UniversitĆ© d''Ɖtat de californie Ć  northridge'),
(98759, 'https://ror.org/01n78t774', 'en', 1, 'https://ror.org/01n78t774 Institute of Nuclear Physics, Polish Academy of Sciences Instytut Fizyki Jądrowej im. Henryka Niewodniczańskiego'),
(98760, 'https://ror.org/03z0n5k81', 'en', 1, 'https://ror.org/03z0n5k81 M. Kumarasamy College of Engineering'),
(98761, 'https://ror.org/04d4qrf43', 'en', 1, 'https://ror.org/04d4qrf43 Eckerd College'),
(98762, 'https://ror.org/04wjxkk25', 'en', 1, 'https://ror.org/04wjxkk25 Sonoma State University'),
(98763, 'https://ror.org/026086s92', 'en', 1, 'https://ror.org/026086s92 Hanken School of Economics Hanken Svenska handelshƶgskolan'),
(98764, 'https://ror.org/05h3pkk68', 'en', 1, 'https://ror.org/05h3pkk68 Hebei University of Science and Technology ę²³åŒ—ē§‘ęŠ€å¤§å­¦'),
(98765, 'https://ror.org/00615dw36', 'en', 1, 'https://ror.org/00615dw36 Bishop Auckland College'),
(98766, 'https://ror.org/02pgb5q90', 'en', 1, 'https://ror.org/02pgb5q90 North Idaho College'),
(98767, 'https://ror.org/0272rjm42', 'en', 1, 'https://ror.org/0272rjm42 Doğuş University Doğuş Üniversitesi'),
(98768, 'https://ror.org/03c8fdb16', 'en', 1, 'https://ror.org/03c8fdb16 Fujian University of Technology ē¦å»ŗå·„ēØ‹å­¦é™¢'),
(98769, 'https://ror.org/013w98a82', 'en', 1, 'https://ror.org/013w98a82 University of Ha''il Ų¬Ų§Ł…Ų¹Ų© حائل'),
(98770, 'https://ror.org/02kknsa06', 'en', 1, 'https://ror.org/02kknsa06 Central University of Punjab ਪੰਜਾਬ ਕੇਂਦਰੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ਬਠਿੰਔਾ'),
(98771, 'https://ror.org/0532c1x92', 'en', 1, 'https://ror.org/0532c1x92 Poznań University of Economics and Business Uniwersytet Ekonomiczny w Poznaniu'),
(98772, 'https://ror.org/02k7wn190', 'en', 1, 'https://ror.org/02k7wn190 University of Parma UniversitƠ degli Studi di Parma UniversitƤt Parma UniversitƩ de parme'),
(98773, 'https://ror.org/00vasag41', 'en', 1, 'https://ror.org/00vasag41 University of Neuchâtel Universität Neuenburg Université de Neuchâtel'),
(98774, 'https://ror.org/04f1mvy95', 'en', 1, 'https://ror.org/04f1mvy95 KWR Water Research Institute'),
(98775, 'https://ror.org/04n3k2k71', 'en', 1, 'https://ror.org/04n3k2k71 Hunan Institute of Technology ę¹–å—å·„å­¦é™¢'),
(98776, 'https://ror.org/01rk3xf02', 'en', 1, 'https://ror.org/01rk3xf02 Athens School of Fine Arts Ɖcole des beaux-arts d''athĆØnes Ανωτάτη Σχολή ĪšĪ±Ī»ĻŽĪ½ Ī¤ĪµĻ‡Ī½ĻŽĪ½'),
(98777, 'https://ror.org/049asqa32', 'tr', 1, 'https://ror.org/049asqa32 Sabancı University Sabancı Üniversitesi'),
(98778, 'https://ror.org/007mntk44', 'en', 1, 'https://ror.org/007mntk44 Changchun University of Science and Technology é•æę˜„ē†å·„å¤§å­¦'),
(98779, 'https://ror.org/047rhhm47', 'en', 1, 'https://ror.org/047rhhm47 Brigham Young University'),
(98780, 'https://ror.org/01rp2a061', 'en', 1, 'https://ror.org/01rp2a061 Acıbadem University Acıbadem Üniversitesi'),
(98781, 'https://ror.org/05558nw16', 'en', 1, 'https://ror.org/05558nw16 Leibniz Supercomputing Centre Leibniz-Rechenzentrum'),
(98782, 'https://ror.org/017v96566', 'tr', 1, 'https://ror.org/017v96566 Bakırçay Üniversitesi İzmir Bakırçay University'),
(98783, 'https://ror.org/016e5hy63', 'no_lang_code', 1, 'https://ror.org/016e5hy63 Matej Bel University Univerzita Mateja Bela'),
(98784, 'https://ror.org/012mef835', 'en', 1, 'https://ror.org/012mef835 Augusta University'),
(98785, 'https://ror.org/029gwvs11', 'en', 1, 'https://ror.org/029gwvs11 Salisbury University'),
(98786, 'https://ror.org/00xf89h18', 'en', 1, 'https://ror.org/00xf89h18 Fenerbahçe University Fenerbahçe Üniversitesi'),
(98787, 'https://ror.org/03dmz0111', 'en', 1, 'https://ror.org/03dmz0111 Chuo Kikuu cha Makerere Makerere University Ų¬Ų§Ł…Ų¹Ų© Ł…Ų§ŁƒŁŠŲ±ŁŠŲ±ŁŠ'),
(98788, 'https://ror.org/05581wm82', 'en', 1, 'https://ror.org/05581wm82 Marine Institute'),
(98789, 'https://ror.org/015d0jq83', 'en', 1, 'https://ror.org/015d0jq83 Inner Mongolia Agricultural University å†…č’™å¤å†œäøšå¤§å­¦'),
(98790, 'https://ror.org/00xqtxw43', 'en', 1, 'https://ror.org/00xqtxw43 Hanze University of Applied Sciences Hanzehogeschool Groningen'),
(98791, 'https://ror.org/01vmfpj79', 'en', 1, 'https://ror.org/01vmfpj79 National Institute of Technology Goa'),
(98792, 'https://ror.org/02gez1e74', 'en', 1, 'https://ror.org/02gez1e74 Hackney College Hackney Community College'),
(98793, 'https://ror.org/012ajp527', 'en', 1, 'https://ror.org/012ajp527 Free University of Bozen-Bolzano Freie UniversitƤt Bozen Libera UniversitƠ di Bolzano UniversitƩ libre de bolzano'),
(98794, 'https://ror.org/04ksd4g47', 'en', 1, 'https://ror.org/04ksd4g47 National Institute of Informatics å›½ē«‹ęƒ…å ±å­¦ē ”ē©¶ę‰€'),
(98795, 'https://ror.org/026gdz537', 'en', 1, 'https://ror.org/026gdz537 Lucian Blaga Egyetem Lucian Blaga University of Sibiu Universitatea Lucian Blaga din Sibiu'),
(98796, 'https://ror.org/059a9qt60', 'en', 1, 'https://ror.org/059a9qt60 Bilborough Sixth Form College'),
(98797, 'https://ror.org/01rp41m56', 'en', 1, 'https://ror.org/01rp41m56 Yantai University ēƒŸå°å¤§å­¦'),
(98798, 'https://ror.org/011hy5f81', 'en', 1, 'https://ror.org/011hy5f81 Irish Management Institute'),
(98799, 'https://ror.org/00j62qv07', 'en', 1, 'https://ror.org/00j62qv07 Kungliga Vetenskapsakademien Royal Swedish Academy of Sciences Ruotsin kuninkaallinen tiedeakatemia'),
(98800, 'https://ror.org/05bxaer12', 'en', 1, 'https://ror.org/05bxaer12 West College Scotland'),
(98801, 'https://ror.org/056e9h402', 'en', 1, 'https://ror.org/056e9h402 Cape Peninsula University of Technology Kaapse Skiereiland Universiteit van Tegnologie'),
(98802, 'https://ror.org/0050vmv35', 'en', 1, 'https://ror.org/0050vmv35 Deutsches Institut für Wirtschaftsforschung German Institute for Economic Research'),
(98803, 'https://ror.org/03r7nsz84', 'fr', 1, 'https://ror.org/03r7nsz84 Haute Ɖcole Robert Schuman'),
(98804, 'https://ror.org/04zjtrb98', 'en', 1, 'https://ror.org/04zjtrb98 Old Dominion University'),
(98805, 'https://ror.org/01jjhfr75', 'en', 1, 'https://ror.org/01jjhfr75 Ɩzyeğin University Ɩzyeğin Ɯniversitesi'),
(98806, 'https://ror.org/040v70252', 'en', 1, 'https://ror.org/040v70252 Universiti Malaysia Sabah Universiti of Malaysia Sabah 沙巓大学'),
(98807, 'https://ror.org/04s99y476', 'en', 1, 'https://ror.org/04s99y476 China West Normal University č„æåŽåøˆčŒƒå¤§å­¦'),
(98808, 'https://ror.org/04znvdh69', 'en', 1, 'https://ror.org/04znvdh69 South Staffordshire College'),
(98809, 'https://ror.org/05wxkj555', 'en', 1, 'https://ror.org/05wxkj555 Cukurova University Ƈukurova Ɯniversitesi'),
(98810, 'https://ror.org/01qhqcj41', 'fr', 1, 'https://ror.org/01qhqcj41 University of Technology of Troyes UniversitƩ de Technologie de Troyes'),
(98811, 'https://ror.org/01wcaxs37', 'en', 1, 'https://ror.org/01wcaxs37 St. Francis Xavier University UniversitƩ saint-francis-xavier'),
(98812, 'https://ror.org/031857212', 'en', 1, 'https://ror.org/031857212 Gujarat Biotechnology University'),
(98813, 'https://ror.org/04gq0w522', 'en', 1, 'https://ror.org/04gq0w522 Flemish Institute for Technological Research Vlaamse Instelling voor Technologisch Onderzoek'),
(98814, 'https://ror.org/01dcz6f16', 'nl', 1, 'https://ror.org/01dcz6f16 Scalda'),
(98815, 'https://ror.org/042vayz55', 'en', 1, 'https://ror.org/042vayz55 Croydon College'),
(98816, 'https://ror.org/00q9atg80', 'en', 1, 'https://ror.org/00q9atg80 Anhui University of Science and Technology 安徽理巄大学'),
(98817, 'https://ror.org/05xdczy51', 'en', 1, 'https://ror.org/05xdczy51 Deutsches Institut für Ernährungsforschung Potsdam-Rehbrücke German Institute of Human Nutrition'),
(98818, 'https://ror.org/05xsxn838', 'fr', 1, 'https://ror.org/05xsxn838 Ɖcole Nationale SupĆ©rieure des Arts DĆ©coratifs'),
(98819, 'https://ror.org/02s08xt61', 'en', 1, 'https://ror.org/02s08xt61 University of the Highlands and Islands'),
(98820, 'https://ror.org/0462wa640', 'en', 1, 'https://ror.org/0462wa640 Guangdong Ocean University å¹æäøœęµ·ę“‹å¤§å­¦'),
(98821, 'https://ror.org/00yh3cz06', 'en', 1, 'https://ror.org/00yh3cz06 Sam Houston State University UniversitĆ© d''Ɖtat Sam Houston'),
(98822, 'https://ror.org/04e9czp26', 'tr', 1, 'https://ror.org/04e9czp26 Memar Sinan Gƶzəl Sənətlər Universiteti Mimar Sinan Fine Arts University Mimar Sinan Güzel Sanatlar Üniversitesi'),
(98823, 'https://ror.org/00py6z575', 'en', 1, 'https://ror.org/00py6z575 San Diego Community College District'),
(98824, 'https://ror.org/01e27f781', 'en', 1, 'https://ror.org/01e27f781 Stockport College'),
(98825, 'https://ror.org/00gnrwz95', 'fr', 1, 'https://ror.org/00gnrwz95 Centre Informatique National de l''Enseignement SupƩrieur National Computer Center for Higher Education'),
(98826, 'https://ror.org/01x1kqx83', 'en', 1, 'https://ror.org/01x1kqx83 Bolu Abant İzzet Baysal University Bolu Abant İzzet Baysal Üniversitesi'),
(98827, 'https://ror.org/01m8p7q42', 'en', 1, 'https://ror.org/01m8p7q42 Dongguan University of Technology äøœčŽžē†å·„å­¦é™¢'),
(98828, 'https://ror.org/01y0vz750', 'pt', 1, 'https://ror.org/01y0vz750 Agencia Regional para o Desenvolvimento da Investigacao Tecnologia e Inovacao'),
(98829, 'https://ror.org/02mqrrm75', 'fr', 1, 'https://ror.org/02mqrrm75 UniversitƩ du QuƩbec en Abitibi-TƩmiscamingue'),
(98830, 'https://ror.org/02mbd5571', 'en', 1, 'https://ror.org/02mbd5571 University of Bergamo UniversitƠ degli Studi di Bergamo UniversitƤt Bergamo UniversitƩ de bergame'),
(98831, 'https://ror.org/05aevyc10', 'en', 1, 'https://ror.org/05aevyc10 Okayama University of Science 岔山理科大学'),
(98832, 'https://ror.org/05d2kyx68', 'en', 1, 'https://ror.org/05d2kyx68 HÔskólinn í Reykjavík Reykjavík University'),
(98833, 'https://ror.org/00xp9wg62', 'en', 1, 'https://ror.org/00xp9wg62 Nanjing University of Science and Technology å—äŗ¬ē†å·„å¤§å­¦'),
(98834, 'https://ror.org/05x535462', 'no_lang_code', 1, 'https://ror.org/05x535462 Sapporo Gakuin University ęœ­å¹Œå­¦é™¢å¤§å­¦'),
(98835, 'https://ror.org/026b4k258', 'en', 1, 'https://ror.org/026b4k258 Shandong Sport University å±±äøœä½“č‚²å­¦é™¢'),
(98836, 'https://ror.org/00ysqcn41', 'en', 1, 'https://ror.org/00ysqcn41 Thomas Jefferson University'),
(98837, 'https://ror.org/04jx68594', 'fr', 1, 'https://ror.org/04jx68594 Ɖcole Nationale SupĆ©rieure de MĆ©canique et d''AĆ©rotechnique'),
(98838, 'https://ror.org/0396bvs97', 'en', 1, 'https://ror.org/0396bvs97 Truman State University'),
(98839, 'https://ror.org/047h64h89', 'en', 1, 'https://ror.org/047h64h89 Lapin ammattikorkeakoulu Lapland University of Applied Sciences'),
(98840, 'https://ror.org/02mh8wx89', 'en', 1, 'https://ror.org/02mh8wx89 Tianjin Medical University å¤©ę“„åŒ»ē§‘å¤§å­¦'),
(98841, 'https://ror.org/02vwzrd76', 'en', 1, 'https://ror.org/02vwzrd76 Thomas Jefferson National Accelerator Facility'),
(98842, 'https://ror.org/01vxt3d40', 'en', 1, 'https://ror.org/01vxt3d40 University of Economics in Katowice Uniwersytet Ekonomiczny w Katowicach'),
(98843, 'https://ror.org/02kq26x23', 'en', 1, 'https://ror.org/02kq26x23 Hellenic Open University UniversitĆ© ouverte de grĆØce Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Ī‘Ī½ĪæĪ¹ĪŗĻ„ĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(98844, 'https://ror.org/04cyy9943', 'en', 1, 'https://ror.org/04cyy9943 Northwest Minzu University č„æåŒ—ę°‘ę—å¤§å­¦'),
(98845, 'https://ror.org/006gksa02', 'es', 1, 'https://ror.org/006gksa02 Universidad de Oviedo University of Oviedo'),
(98846, 'https://ror.org/02kswqa67', 'en', 1, 'https://ror.org/02kswqa67 Marmara University Marmara Ɯniversitesi Mərmərə Universiteti'),
(98847, 'https://ror.org/04r0ks517', 'en', 1, 'https://ror.org/04r0ks517 University for the Creative Arts'),
(98848, 'https://ror.org/01xt1w755', 'en', 1, 'https://ror.org/01xt1w755 Academia Europeica de Bulsan Accademia Europea di Bolzano Eurac Research EuropƤische Akademie Bozen'),
(98849, 'https://ror.org/00rd5t069', 'en', 1, 'https://ror.org/00rd5t069 Wenzhou Medical University ęø©å·žåŒ»ē§‘å¤§å­¦'),
(98850, 'https://ror.org/013v3cc28', 'en', 1, 'https://ror.org/013v3cc28 Indian Institute of Technology Dhanbad ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®šąÆą®°ą®™ąÆą®•ą®µą®æą®Æą®²ąÆ ą®Ŗą®³ąÆą®³ą®æ ą®¤ą®©ąÆą®Ŗą®¾ą®¤ąÆ'),
(98851, 'https://ror.org/00r9t7n55', 'en', 1, 'https://ror.org/00r9t7n55 Gümüşhane University Gümüşhane Üniversitesi'),
(98852, 'https://ror.org/041sz8d87', 'en', 1, 'https://ror.org/041sz8d87 University of Reggio Calabria UniversitƠ degli Studi Mediterranea di Reggio Calabria UniversitƩ de reggio de calabre'),
(98853, 'https://ror.org/01cerpp10', 'en', 1, 'https://ror.org/01cerpp10 Middlesbrough College'),
(98854, 'https://ror.org/00y2z2s03', 'en', 1, 'https://ror.org/00y2z2s03 Amsterdam University of Applied Sciences Hogeschool van Amsterdam'),
(98855, 'https://ror.org/05gs3fb07', 'en', 1, 'https://ror.org/05gs3fb07 Aarhus School of Architecture Arkitektskolen Aarhus'),
(98856, 'https://ror.org/0368a2w96', 'en', 1, 'https://ror.org/0368a2w96 Prin. L. N. Welingkar Institute of Management Development and Research'),
(98857, 'https://ror.org/05dmhhd41', 'en', 1, 'https://ror.org/05dmhhd41 Jilin Agricultural University å‰ęž—å†œäøšå¤§å­¦'),
(98858, 'https://ror.org/02wcpmn42', 'en', 1, 'https://ror.org/02wcpmn42 Artvin Coruh University Artvin Ƈoruh Ɯniversitesi'),
(98859, 'https://ror.org/031wyx077', 'en', 1, 'https://ror.org/031wyx077 Fachhochschule Vorarlberg Vorarlberg University of Applied Sciences'),
(98860, 'https://ror.org/03nadee84', 'en', 1, 'https://ror.org/03nadee84 Uniwersytet Wileński Vilniaus universitetas Vilnius University Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98861, 'https://ror.org/05cr10x86', 'en', 1, 'https://ror.org/05cr10x86 West Herts College'),
(98862, 'https://ror.org/001c2sn75', 'en', 1, 'https://ror.org/001c2sn75 London Business School Ysgol Fusnes Llundain'),
(98863, 'https://ror.org/034arnt34', 'en', 1, 'https://ror.org/034arnt34 Nottingham College'),
(98864, 'https://ror.org/01mxmpy39', 'en', 1, 'https://ror.org/01mxmpy39 Occidental College'),
(98865, 'https://ror.org/00qsyw664', 'en', 1, 'https://ror.org/00qsyw664 Istanbul Aydın University İstanbul Aydın Üniversitesi'),
(98866, 'https://ror.org/0566bfb96', 'en', 1, 'https://ror.org/0566bfb96 Naturalis Biodiversity Center Nederlands Centrum voor Biodiversiteit Naturalis'),
(98867, 'https://ror.org/02xawj266', 'en', 1, 'https://ror.org/02xawj266 Central Michigan University UniversitƩ de central michigan'),
(98868, 'https://ror.org/0483fn738', 'en', 1, 'https://ror.org/0483fn738 Institute of Communication and Computer Systems'),
(98869, 'https://ror.org/01s033b11', 'en', 1, 'https://ror.org/01s033b11 Glasgow School of Art'),
(98870, 'https://ror.org/01jgxeb98', 'hu', 1, 'https://ror.org/01jgxeb98 Pentecostal Theological College Pünkƶsdi Teológiai Főiskola'),
(98871, 'https://ror.org/021cj6z65', 'en', 1, 'https://ror.org/021cj6z65 Qingdao University 青岛大学'),
(98872, 'https://ror.org/01vyrm377', 'en', 1, 'https://ror.org/01vyrm377 East China University of Science and Technology åŽäøœē†å·„å¤§å­¦'),
(98873, 'https://ror.org/05mvcw862', 'en', 1, 'https://ror.org/05mvcw862 Jilin International Studies University å‰ęž—åŽä¾Øå¤–å›½čÆ­å­¦é™¢'),
(98874, 'https://ror.org/00wjc7c48', 'en', 1, 'https://ror.org/00wjc7c48 Universitat de MilƠ University of Milan UniversitƠ degli Studi di Milano UniversitƤt Mailand UniversitƩ de milan'),
(98875, 'https://ror.org/0500gea42', 'en', 1, 'https://ror.org/0500gea42 HAN University of Applied Sciences Hogeschool van Arnhem en Nijmegen'),
(98876, 'https://ror.org/05edw4a90', 'en', 1, 'https://ror.org/05edw4a90 Najran University Ų¬Ų§Ł…Ų¹Ų© نجران'),
(98877, 'https://ror.org/0415fce48', 'en', 1, 'https://ror.org/0415fce48 ZhengZhou Shengda University Of Economics, Business & Management éƒ‘å·žå‡č¾¾ē»č“øē®”ē†å­¦é™¢'),
(98878, 'https://ror.org/04gaeyc40', 'en', 1, 'https://ror.org/04gaeyc40 York College'),
(98879, 'https://ror.org/05r78ng12', 'en', 1, 'https://ror.org/05r78ng12 Universidad de Castilla-La Mancha University of Castilla-La Mancha'),
(98880, 'https://ror.org/015m2p889', 'en', 1, 'https://ror.org/015m2p889 Aberystwyth University Prifysgol Aberystwyth'),
(98881, 'https://ror.org/000jtc944', 'en', 1, 'https://ror.org/000jtc944 Henan University of Economic and Law ę²³å—č“¢ē»å­¦é™¢;'),
(98882, 'https://ror.org/046p0fc17', 'en', 1, 'https://ror.org/046p0fc17 Eesti Muusika- ja Teatriakadeemia Estonian Academy of Music and Theatre Š­ŃŃ‚Š¾Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø Šø театра'),
(98883, 'https://ror.org/04yej8x59', 'en', 1, 'https://ror.org/04yej8x59 University of Tabuk Ų¬Ų§Ł…Ų¹Ų© تبوك'),
(98884, 'https://ror.org/000yk5876', 'en', 1, 'https://ror.org/000yk5876 Sapporo City University ęœ­å¹Œåø‚ē«‹å¤§å­¦'),
(98885, 'https://ror.org/00h1gc758', 'en', 1, 'https://ror.org/00h1gc758 Guilin University of Aerospace Technology ę”‚ęž—čˆŖå¤©å·„äøšå­¦é™¢'),
(98886, 'https://ror.org/01ndzg854', 'en', 1, 'https://ror.org/01ndzg854 Xinjiang University of Science and Technology ę–°ē–†ē§‘ęŠ€å­¦é™¢'),
(98887, 'https://ror.org/045bx8592', 'en', 1, 'https://ror.org/045bx8592 Royal Academy of Music yr Academi Gerddoriaeth Frenhinol'),
(98888, 'https://ror.org/001m1hv61', 'en', 1, 'https://ror.org/001m1hv61 Grand Valley State University'),
(98889, 'https://ror.org/01apwkd48', 'fr', 1, 'https://ror.org/01apwkd48 Graduate School of Engineering Ɖcole SupĆ©rieure d''IngĆ©nieurs en GĆ©nie Ɖlectrique'),
(98890, 'https://ror.org/00qjgza05', 'en', 1, 'https://ror.org/00qjgza05 Universitat Gabriele d''Annunzio University of Chieti-Pescara UniversitƠ degli Studi "G. d''Annunzio" Chieti-Pescara UniversitƩ de chieti'),
(98891, 'https://ror.org/04bj28v14', 'en', 1, 'https://ror.org/04bj28v14 Loma Linda University UniversitƩ de loma linda'),
(98892, 'https://ror.org/05tqaz865', 'en', 1, 'https://ror.org/05tqaz865 Hanshan Normal University'),
(98893, 'https://ror.org/052pakb34', 'en', 1, 'https://ror.org/052pakb34 Changchun University of Technology é•æę˜„å·„äøšå¤§å­¦'),
(98894, 'https://ror.org/038sjm754', 'en', 1, 'https://ror.org/038sjm754 Oldham College'),
(98895, 'https://ror.org/0478g4653', 'en', 1, 'https://ror.org/0478g4653 Hugh Baird College'),
(98896, 'https://ror.org/00ewz9128', 'en', 1, 'https://ror.org/00ewz9128 Huainan Union University ę·®å—č”åˆå¤§å­¦'),
(98897, 'https://ror.org/00vzprm14', 'en', 1, 'https://ror.org/00vzprm14 Shandong Management University å±±äøœē®”ē†å¤§å­¦'),
(98898, 'https://ror.org/001chpb97', 'en', 1, 'https://ror.org/001chpb97 Politeknik Ungku Omar Ungku Omar Polytechnic'),
(98899, 'https://ror.org/00s48x343', 'en', 1, 'https://ror.org/00s48x343 South Eastern Regional College'),
(98900, 'https://ror.org/02eysy271', 'en', 1, 'https://ror.org/02eysy271 Biblioteca PĆŗblica de Nueva York New York Public Library'),
(98901, 'https://ror.org/00xsfaz62', 'en', 1, 'https://ror.org/00xsfaz62 Xiangtan University 湘潭大学'),
(98902, 'https://ror.org/03144pv92', 'en', 1, 'https://ror.org/03144pv92 Lanzhou Jiaotong University å…°å·žäŗ¤é€šå¤§å­¦'),
(98903, 'https://ror.org/001g2fj96', 'en', 1, 'https://ror.org/001g2fj96 American University of Sharjah الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في الؓارقة دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ ؓارجه'),
(98904, 'https://ror.org/00tse2b39', 'ca', 1, 'https://ror.org/00tse2b39 International University of Catalonia Universidad Internacional de CataluƱa Universitat Internacional de Catalunya'),
(98905, 'https://ror.org/01qjyzh50', 'en', 1, 'https://ror.org/01qjyzh50 Zhengzhou University of Aeronautics éƒ‘å·žčˆŖē©ŗå·„äøšē®”ē†å­¦é™¢'),
(98906, 'https://ror.org/03e096643', 'en', 1, 'https://ror.org/03e096643 Institute of Rural Management Anand ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°°ą±‚ą°°ą°²ą± ą°®ą±‡ą°Øą±‡ą°œą±ą°®ą±†ą°‚ą°Ÿą±'),
(98907, 'https://ror.org/0108wjw08', 'en', 1, 'https://ror.org/0108wjw08 Anhui Jianzhu University å®‰å¾½å»ŗē­‘å·„äøšå­¦é™¢'),
(98908, 'https://ror.org/05vr1c885', 'en', 1, 'https://ror.org/05vr1c885 Henan Polytechnic University ę²³å—ē†å·„å¤§å­¦'),
(98909, 'https://ror.org/01k44g025', 'en', 1, 'https://ror.org/01k44g025 Northern Kentucky University'),
(98910, 'https://ror.org/035y7a716', 'en', 1, 'https://ror.org/035y7a716 Guiyang Medical University č“µé˜³åŒ»å­¦é™¢'),
(98911, 'https://ror.org/044v96v72', 'no_lang_code', 1, 'https://ror.org/044v96v72 A''Sharqiyah University جــــــامـعـة Ų§Ł„Ł€Ų“Ł€Ų±Ł‚Ł€Ł€Ł€Ł€Ł€Ł€Ł€ŁŠŁ€Ų©'),
(98912, 'https://ror.org/028ndzd53', 'en', 1, 'https://ror.org/028ndzd53 Edge Hill University'),
(98913, 'https://ror.org/010bpe446', 'no_lang_code', 1, 'https://ror.org/010bpe446 Internet2'),
(98914, 'https://ror.org/03grx7119', 'en', 1, 'https://ror.org/03grx7119 University of Science and Technology Liaoning č¾½å®ē§‘ęŠ€å¤§å­¦'),
(98915, 'https://ror.org/03zyp6p76', 'en', 1, 'https://ror.org/03zyp6p76 Yokohama National University ęØŖęµœå›½ē«‹å¤§å­¦'),
(98916, 'https://ror.org/01teme464', 'es', 1, 'https://ror.org/01teme464 Universidad de Las Palmas de Gran Canaria Universidade das Palmas de Gran Canaria University of Las Palmas de Gran Canaria'),
(98917, 'https://ror.org/02fzfx471', 'en', 1, 'https://ror.org/02fzfx471 Indira Gandhi National Open University UniversitĆ© nationale ouverte indira gandhi ą¤‡ą¤Øą„ą¤¦ą¤æą¤°ą¤¾ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤ˆą¤Øą„ą¤¦ą¤æą¤°ą¤¾ ą¤—ą¤¾ą¤Øą„ą¤§ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤–ą„ą¤²ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦‡ą¦Øą§ą¦¦ą¦æą¦°ą¦¾ ą¦—ą¦¾ą¦Øą§ą¦§ą§€ ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ਇੰਦਰਾ ਗਾਂਧੀ ਨੈਸ਼ਨਲ ਓਪਨ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®‡ą®ØąÆą®¤ą®æą®°ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ą®æą®±ą®ØąÆą®¤ą®Øą®æą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“‡ą“Øąµą“¦ą“æą“°ą“¾ą“—ą“¾ą“Øąµą“§ą“æ ą“Øą“¾ą“·ą“£ąµ½ ą““ą“Ŗąµą“Ŗąµŗ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(98918, 'https://ror.org/01zwcys39', 'no_lang_code', 1, 'https://ror.org/01zwcys39 Meiji Gakuin University ę˜Žę²»å­¦é™¢å¤§å­¦'),
(98919, 'https://ror.org/004x1qr23', 'en', 1, 'https://ror.org/004x1qr23 Coast Community College District'),
(98920, 'https://ror.org/040h76494', 'en', 1, 'https://ror.org/040h76494 Manipal University Jaipur'),
(98921, 'https://ror.org/02z8rzb71', 'en', 1, 'https://ror.org/02z8rzb71 Sias University éƒ‘å·žč„æäŗšę–Æå­¦é™¢'),
(98922, 'https://ror.org/00sc9n023', 'en', 1, 'https://ror.org/00sc9n023 Yunnan Normal University äŗ‘å—åøˆčŒƒå¤§å­¦'),
(98923, 'https://ror.org/042nfvn15', 'en', 1, 'https://ror.org/042nfvn15 Newham College'),
(98924, 'https://ror.org/04mz9mt17', 'en', 1, 'https://ror.org/04mz9mt17 Universiti Nottingham Malaysia University of Nottingham Malaysia Campus'),
(98925, 'https://ror.org/00y3hzd62', 'fr', 1, 'https://ror.org/00y3hzd62 UniversitƩ du QuƩbec Ơ Chicoutimi'),
(98926, 'https://ror.org/00mcjh785', 'en', 1, 'https://ror.org/00mcjh785 Xiamen University åŽ¦é—Øå¤§å­¦'),
(98927, 'https://ror.org/02jbv0t02', 'en', 1, 'https://ror.org/02jbv0t02 Laboratoire national lawrence-berkeley Lawrence Berkeley National Laboratory'),
(98928, 'https://ror.org/012a77v79', 'en', 1, 'https://ror.org/012a77v79 Lund University Lundin yliopisto Lunds universitet'),
(98929, 'https://ror.org/03cd72537', 'cs', 1, 'https://ror.org/03cd72537 StudijnĆ­ a vědeckĆ” knihovna v Hradci KrĆ”lovĆ© The Research Library in Hradec Kralove'),
(98930, 'https://ror.org/050nqkw90', 'en', 1, 'https://ror.org/050nqkw90 Bridgend College'),
(98931, 'https://ror.org/004rbbw49', 'en', 1, 'https://ror.org/004rbbw49 Hebei Normal University ę²³åŒ—åøˆčŒƒå¤§å­¦'),
(98932, 'https://ror.org/058s1vf87', 'en', 1, 'https://ror.org/058s1vf87 Beijing International Studies University åŒ—äŗ¬ē¬¬äŗŒå¤–å›½čÆ­å­¦é™¢'),
(98933, 'https://ror.org/02d0cgn19', 'en', 1, 'https://ror.org/02d0cgn19 Anhui Business College'),
(98934, 'https://ror.org/04gaexw88', 'en', 1, 'https://ror.org/04gaexw88 Southwest Minzu University č„æå—ę°‘ę—å¤§å­¦'),
(98935, 'https://ror.org/03yh0n709', 'en', 1, 'https://ror.org/03yh0n709 Liaocheng University čŠåŸŽå¤§å­¦'),
(98936, 'https://ror.org/04tbgt398', 'tr', 1, 'https://ror.org/04tbgt398 Gendarmerie and Coast Guard Academy Jandarma ve Sahil Güvenlik Akademisi'),
(98937, 'https://ror.org/01jw0fq74', 'en', 1, 'https://ror.org/01jw0fq74 Grimsby Institute'),
(98938, 'https://ror.org/05k27ay38', 'en', 1, 'https://ror.org/05k27ay38 Dokkyo Medical University ēØå”åŒ»ē§‘å¤§å­¦'),
(98939, 'https://ror.org/02g2frf98', 'en', 1, 'https://ror.org/02g2frf98 Great Plains Network'),
(98940, 'https://ror.org/04175wc52', 'tr', 1, 'https://ror.org/04175wc52 Düzce University Düzce Üniversitesi'),
(98941, 'https://ror.org/0515nd386', 'en', 1, 'https://ror.org/0515nd386 Northeast Agricultural University äøœåŒ—å†œäøšå¤§å­¦'),
(98942, 'https://ror.org/04tmmky42', 'en', 1, 'https://ror.org/04tmmky42 Grinnell College'),
(98943, 'https://ror.org/03stptj97', 'en', 1, 'https://ror.org/03stptj97 Izmir Institute of Technology İzmir Texnologiya İnstitutu İzmir Yüksek Teknoloji Enstitüsü'),
(98944, 'https://ror.org/05bhada84', 'en', 1, 'https://ror.org/05bhada84 Nara Institute of Science and Technology å„ˆč‰Æå…ˆē«Æē§‘å­¦ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(98945, 'https://ror.org/005781934', 'en', 1, 'https://ror.org/005781934 Baylor University'),
(98946, 'https://ror.org/0272j5188', 'en', 1, 'https://ror.org/0272j5188 Northern Arizona University'),
(98947, 'https://ror.org/00ndrvk93', 'en', 1, 'https://ror.org/00ndrvk93 Xinjiang Normal University ؓىنجاڭ Ł¾Ł‰ŲÆŲ§ŚÆŁˆŚÆŪŁƒŲ§ ئۇنىۋېرسىتېتى ę–°ē–†åøˆčŒƒå¤§å­¦'),
(98948, 'https://ror.org/059hhvg49', 'en', 1, 'https://ror.org/059hhvg49 Arden University'),
(98949, 'https://ror.org/04sa43y59', 'en', 1, 'https://ror.org/04sa43y59 Grantham College'),
(98950, 'https://ror.org/01b64k086', 'en', 1, 'https://ror.org/01b64k086 Hefei Normal University åˆč‚„åøˆčŒƒå­¦é™¢'),
(98951, 'https://ror.org/04v4g9h31', 'en', 1, 'https://ror.org/04v4g9h31 University of Thessaly UniversitĆ© de thessalie Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī˜ĪµĻƒĻƒĪ±Ī»ĪÆĪ±Ļ‚'),
(98952, 'https://ror.org/02rsjh069', 'en', 1, 'https://ror.org/02rsjh069 Carilion Clinic'),
(98953, 'https://ror.org/02kqf1812', 'en', 1, 'https://ror.org/02kqf1812 Municipal Library of Prague MěstskĆ” knihovna v Praze'),
(98954, 'https://ror.org/01eg9n443', 'en', 1, 'https://ror.org/01eg9n443 HƤme University of Applied Sciences HƤmeen ammattikorkeakoulu'),
(98955, 'https://ror.org/03gnh5541', 'en', 1, 'https://ror.org/03gnh5541 Institute of Science and Technology Austria'),
(98956, 'https://ror.org/03frjya69', 'en', 1, 'https://ror.org/03frjya69 Daegu Gyeongbuk Institute of Science and Technology ėŒ€źµ¬ź²½ė¶ź³¼ķ•™źø°ģˆ ģ›'),
(98957, 'https://ror.org/00g6cx256', 'en', 1, 'https://ror.org/00g6cx256 ESIEA University'),
(98958, 'https://ror.org/00kg3yf22', 'en', 1, 'https://ror.org/00kg3yf22 Runshaw College'),
(98959, 'https://ror.org/05b307002', 'ms', 1, 'https://ror.org/05b307002 Universiti Malaysia Sarawak University of Malaysia, Sarawak'),
(98960, 'https://ror.org/03081nz23', 'en', 1, 'https://ror.org/03081nz23 Istinye University İstinye Üniversitesi'),
(98961, 'https://ror.org/04wty6921', 'en', 1, 'https://ror.org/04wty6921 Sandwell College'),
(98962, 'https://ror.org/00scnsb87', 'en', 1, 'https://ror.org/00scnsb87 Zhejiang Yuexiu University ęµ™ę±Ÿč¶Šē§€å¤–å›½čÆ­å­¦é™¢'),
(98963, 'https://ror.org/0075rz071', 'en', 1, 'https://ror.org/0075rz071 Arthur C. Clarke Centre for Modern Technologies'),
(98964, 'https://ror.org/01y0j0j86', 'en', 1, 'https://ror.org/01y0j0j86 Northwestern Polytechnical University č„æåŒ—å·„äøšå¤§å­¦'),
(98965, 'https://ror.org/02zbb2597', 'en', 1, 'https://ror.org/02zbb2597 Poznan University of Medical Sciences Uniwersytet Medyczny im. Karola Marcinkowskiego w Poznaniu'),
(98966, 'https://ror.org/04z49n283', 'en', 1, 'https://ror.org/04z49n283 Fairfield University Universidad de Fairfield'),
(98967, 'https://ror.org/051tsqh55', 'en', 1, 'https://ror.org/051tsqh55 Batman University Batman Üniversitesi'),
(98968, 'https://ror.org/0406gha72', 'en', 1, 'https://ror.org/0406gha72 Universidad de Nevada, Las Vegas University of Nevada, Las Vegas UniversitƩ du Nevada Ơ las Vegas'),
(98969, 'https://ror.org/05jdsfp91', 'en', 1, 'https://ror.org/05jdsfp91 Sheridan College'),
(98970, 'https://ror.org/02h4qpx12', 'en', 1, 'https://ror.org/02h4qpx12 University of Northern Iowa UniversitƩ d''iowa du nord'),
(98971, 'https://ror.org/046fkpt18', 'en', 1, 'https://ror.org/046fkpt18 Xi''an University of Science and Technology č„æå®‰ē§‘ęŠ€å¤§å­¦'),
(98972, 'https://ror.org/03z77qz90', 'en', 1, 'https://ror.org/03z77qz90 Tartu Ülikool University of Tartu Š¢Š°Ń€Ń‚ŃƒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98973, 'https://ror.org/04bwp4t29', 'en', 1, 'https://ror.org/04bwp4t29 Shandong Youth University of Political Science å±±äøœé’å¹“ę”æę²»å­¦é™¢'),
(98974, 'https://ror.org/01cy0sz82', 'en', 1, 'https://ror.org/01cy0sz82 University of Suffolk'),
(98975, 'https://ror.org/0468j1635', 'en', 1, 'https://ror.org/0468j1635 Recep Tayyip Erdoğan University Recep Tayyip Erdoğan Üniversitesi'),
(98976, 'https://ror.org/0464eyp60', 'en', 1, 'https://ror.org/0464eyp60 University of Massachusetts Chan Medical School'),
(98977, 'https://ror.org/0445bza91', 'en', 1, 'https://ror.org/0445bza91 Tianjin Academy of Fine Arts å¤©ę“„ē¾ŽęœÆå­¦é™¢'),
(98978, 'https://ror.org/04qr5t414', 'en', 1, 'https://ror.org/04qr5t414 North China Electric Power University åŽåŒ—ē”µåŠ›å¤§å­¦'),
(98979, 'https://ror.org/00t5j6b61', 'kl', 1, 'https://ror.org/00t5j6b61 GrĆønlands Universitet Ilisimatusarfik University of Greenland'),
(98980, 'https://ror.org/0143tvy90', 'no_lang_code', 1, 'https://ror.org/0143tvy90 Tokaj-Hegyalja Egyetem University of Tokaj'),
(98981, 'https://ror.org/00tyjp878', 'en', 1, 'https://ror.org/00tyjp878 Jiangsu University of Science and Technology ę±Ÿč‹ē§‘ęŠ€å¤§å­¦'),
(98982, 'https://ror.org/03te4vd35', 'en', 1, 'https://ror.org/03te4vd35 Bartin University'),
(98983, 'https://ror.org/04fceqm38', 'en', 1, 'https://ror.org/04fceqm38 Macalester College'),
(98984, 'https://ror.org/02xpkhc07', 'en', 1, 'https://ror.org/02xpkhc07 University of Wisconsin–Platteville UniversitĆ© du Wisconsin–Platteville'),
(98985, 'https://ror.org/04h6w7946', 'en', 1, 'https://ror.org/04h6w7946 University of the Fraser Valley'),
(98986, 'https://ror.org/02jhqqg57', 'en', 1, 'https://ror.org/02jhqqg57 Leibniz Institute for Analytical Sciences - ISAS Leibniz-Institut für Analytische Wissenschaften - ISAS'),
(98987, 'https://ror.org/00d7f8730', 'en', 1, 'https://ror.org/00d7f8730 Shenyang University of Technology 沈阳巄业大学'),
(98988, 'https://ror.org/014v1mr15', 'en', 1, 'https://ror.org/014v1mr15 Hangzhou Normal University ę­å·žåøˆčŒƒå¤§å­¦'),
(98989, 'https://ror.org/04jcykh16', 'en', 1, 'https://ror.org/04jcykh16 Wuhan Institute of Technology 武汉巄程大学'),
(98990, 'https://ror.org/04gwtvf26', 'en', 1, 'https://ror.org/04gwtvf26 Xihua University č„æåŽå¤§å­¦'),
(98991, 'https://ror.org/04jp2hx10', 'en', 1, 'https://ror.org/04jp2hx10 University of Northampton'),
(98992, 'https://ror.org/01aem0w72', 'en', 1, 'https://ror.org/01aem0w72 Sophiahemmet Hƶgskola Sophiahemmet University College'),
(98993, 'https://ror.org/04v3r9z94', 'en', 1, 'https://ror.org/04v3r9z94 School of Pedagogical and Technological Education Ī‘Ī½ĻŽĻ„Ī±Ļ„Ī· Σχολή ΠαιΓαγωγικής και Τεχνολογικής Ī•ĪŗĻ€Ī±ĪÆĪ“ĪµĻ…ĻƒĪ·Ļ‚'),
(98994, 'https://ror.org/043nxc105', 'ca', 1, 'https://ror.org/043nxc105 Universidad de Valencia Universidade de Valencia Universitat de ValĆØncia University of Valencia'),
(98995, 'https://ror.org/02bzfsy61', 'en', 1, 'https://ror.org/02bzfsy61 Bialystok University of Technology Politechnika Białostocka'),
(98996, 'https://ror.org/01t001k65', 'en', 1, 'https://ror.org/01t001k65 Chongqing Jiaotong University é‡åŗ†äŗ¤é€šå¤§å­¦'),
(98997, 'https://ror.org/00f4jdp82', 'en', 1, 'https://ror.org/00f4jdp82 Keck Graduate Institute'),
(98998, 'https://ror.org/05nq41m91', 'en', 1, 'https://ror.org/05nq41m91 Tonghua Normal University é€šåŒ–åøˆčŒƒå­¦é™¢'),
(98999, 'https://ror.org/049da5t36', 'es', 1, 'https://ror.org/049da5t36 Universidad de Burgos University of Burgos'),
(99000, 'https://ror.org/02vgk5x44', 'en', 1, 'https://ror.org/02vgk5x44 Somerset College'),
(99001, 'https://ror.org/05pejbw21', 'en', 1, 'https://ror.org/05pejbw21 Chengdu University of Technology ęˆéƒ½ē†å·„å¤§å­¦'),
(99002, 'https://ror.org/00k206f19', 'fr', 1, 'https://ror.org/00k206f19 National School for Statistics and Information Analysis Ɖcole Nationale de la Statistique et de l''Analyse de l''Information'),
(99003, 'https://ror.org/01y1kjr75', 'en', 1, 'https://ror.org/01y1kjr75 Nankai University 南开大学'),
(99004, 'https://ror.org/05av6y173', 'tr', 1, 'https://ror.org/05av6y173 Istanbul Rumeli University TC İstanbul Rumeli Üniversitesi'),
(99005, 'https://ror.org/05g2swp31', 'en', 1, 'https://ror.org/05g2swp31 Institut national du design National Institute of Design ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤”ą¤æą¤œą¤¾ą¤‡ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®¤ąÆ‡ą®šą®æą®Æ ą®µą®Ÿą®æą®µą®®ąÆˆą®ŖąÆą®ŖąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(99006, 'https://ror.org/03a60m280', 'en', 1, 'https://ror.org/03a60m280 Hubei University ę¹–åŒ—å¤§å­¦'),
(99007, 'https://ror.org/01g6z7557', 'en', 1, 'https://ror.org/01g6z7557 Richmond upon Thames College'),
(99008, 'https://ror.org/04exd0a76', 'no_lang_code', 1, 'https://ror.org/04exd0a76 Jinggangshan University äŗ•å†ˆå±±å¤§å­¦'),
(99009, 'https://ror.org/02278tr80', 'en', 1, 'https://ror.org/02278tr80 Kyushu Institute of Technology ä¹å·žå·„ę„­å¤§å­¦'),
(99010, 'https://ror.org/04013rx15', 'en', 1, 'https://ror.org/04013rx15 Concordia University of Edmonton'),
(99011, 'https://ror.org/03dvp8k55', 'en', 1, 'https://ror.org/03dvp8k55 Oulu University of Applied Sciences Oulun seudun ammattikorkeakoulu'),
(99012, 'https://ror.org/0294hxs80', 'en', 1, 'https://ror.org/0294hxs80 California State University Los Angeles Universidad Estatal de California, Los Ɓngeles UniversitĆ© d''Ɖtat de californie Ć  los angeles'),
(99013, 'https://ror.org/01bh34439', 'en', 1, 'https://ror.org/01bh34439 East Riding College'),
(99014, 'https://ror.org/02k5gp281', 'en', 1, 'https://ror.org/02k5gp281 Harokopio University of Athens Ī§Ī±ĻĪæĪŗĻŒĻ€ĪµĪ¹Īæ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(99015, 'https://ror.org/01dcw5w74', 'en', 1, 'https://ror.org/01dcw5w74 Chongqing Normal University é‡åŗ†åøˆčŒƒå¤§å­¦'),
(99016, 'https://ror.org/014zxnz40', 'en', 1, 'https://ror.org/014zxnz40 Gheorghe Asachi Technical University of Iași Universitatea Tehnică Gheorghe Asachi din Iași'),
(99017, 'https://ror.org/03wze7d53', 'en', 1, 'https://ror.org/03wze7d53 Douglas College'),
(99018, 'https://ror.org/01285e189', 'en', 1, 'https://ror.org/01285e189 Xiamen University of Technology åŽ¦é—Øē†å·„å­¦é™¢'),
(99019, 'https://ror.org/01vh5nd96', 'en', 1, 'https://ror.org/01vh5nd96 Pacific Lutheran University'),
(99020, 'https://ror.org/01db19a87', 'en', 1, 'https://ror.org/01db19a87 ESIC Business & Marketing School'),
(99021, 'https://ror.org/03kjjhe36', 'en', 1, 'https://ror.org/03kjjhe36 Tokyo Women''s Medical University ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦'),
(99022, 'https://ror.org/00f93gn72', 'no_lang_code', 1, 'https://ror.org/00f93gn72 Suqian University 宿迁学院'),
(99023, 'https://ror.org/01jfjwr55', 'en', 1, 'https://ror.org/01jfjwr55 Beijing City University åŒ—äŗ¬åŸŽåø‚å­¦é™¢'),
(99024, 'https://ror.org/048arep70', 'en', 1, 'https://ror.org/048arep70 Shippensburg University'),
(99025, 'https://ror.org/03gn5cg19', 'en', 1, 'https://ror.org/03gn5cg19 Kahramanmaraş Sütçü İmam University Kahramanmaraş Sütçü İmam Üniversitesi'),
(99026, 'https://ror.org/04w9fbh59', 'en', 1, 'https://ror.org/04w9fbh59 Beijing University of Posts and Telecommunications åŒ—äŗ¬é‚®ē”µå¤§å­¦'),
(99027, 'https://ror.org/00t9n0h58', 'pt', 1, 'https://ror.org/00t9n0h58 Instituto PolitƩcnico de Beja Polytechnic Institute of Beja'),
(99028, 'https://ror.org/015d5s513', 'en', 1, 'https://ror.org/015d5s513 Avans Hogeschool Avans University of Applied Sciences'),
(99029, 'https://ror.org/03rp8h078', 'en', 1, 'https://ror.org/03rp8h078 Shandong Women’s University å±±äøœå„³å­å­¦é™¢'),
(99030, 'https://ror.org/01dg85j68', 'fr', 1, 'https://ror.org/01dg85j68 French Institute for Research and Security Institut National de Recherche et de SƩcuritƩ'),
(99031, 'https://ror.org/03mb27p64', 'en', 1, 'https://ror.org/03mb27p64 Tokyo Woman''s Christian University ę±äŗ¬å„³å­å¤§å­¦'),
(99032, 'https://ror.org/058w5nk68', 'en', 1, 'https://ror.org/058w5nk68 Union College'),
(99033, 'https://ror.org/033m02g29', 'en', 1, 'https://ror.org/033m02g29 Fondation nationale de recherche hellĆ©nique National Hellenic Research Foundation Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ī•ĻĪµĻ…Ī½ĻŽĪ½'),
(99034, 'https://ror.org/05dpv4c71', 'en', 1, 'https://ror.org/05dpv4c71 AMET University ą®…ą®®ąÆ†ą®ŸąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(99035, 'https://ror.org/010h78f45', 'en', 1, 'https://ror.org/010h78f45 Western Carolina University'),
(99036, 'https://ror.org/00jn4mb53', 'no_lang_code', 1, 'https://ror.org/00jn4mb53 Det Danske Sprog- og Litteraturselskab (Denmark)'),
(99037, 'https://ror.org/0338xea48', 'en', 1, 'https://ror.org/0338xea48 University of Venda'),
(99038, 'https://ror.org/02panr271', 'en', 1, 'https://ror.org/02panr271 Max Planck Institute of Biophysics Max-Planck-Institut für Biophysik'),
(99039, 'https://ror.org/01c3rrh15', 'it', 1, 'https://ror.org/01c3rrh15 Elettra-Sincrotrone Trieste S.C.p.A.'),
(99040, 'https://ror.org/00g0p6g84', 'en', 1, 'https://ror.org/00g0p6g84 Universiteit van Pretoria University of Pretoria'),
(99041, 'https://ror.org/05p7z7s64', 'pt', 1, 'https://ror.org/05p7z7s64 Centro Interdisciplinar de Investigação Marinha e Ambiental Interdisciplinary Centre of Marine and Environmental Research'),
(99042, 'https://ror.org/03ykbk197', 'en', 1, 'https://ror.org/03ykbk197 University of Portsmouth'),
(99043, 'https://ror.org/02dde7839', 'en', 1, 'https://ror.org/02dde7839 Foothill-De Anza Community College District'),
(99044, 'https://ror.org/045cwqj90', 'fr', 1, 'https://ror.org/045cwqj90 Institut national d''histoire de l''art National Institute for Art History'),
(99045, 'https://ror.org/03e2e3s57', 'en', 1, 'https://ror.org/03e2e3s57 Indian Institute of Information Technology, Nagpur इंऔियन ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤‡ą¤Øą¤«ą¤°ą„ą¤®ą„‡ą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€, ą¤Øą¤¾ą¤—ą¤Ŗą„ą¤°'),
(99046, 'https://ror.org/04rhev598', 'en', 1, 'https://ror.org/04rhev598 Yunnan University of Finance And Economics äŗ‘å—č“¢ē»å¤§å­¦'),
(99047, 'https://ror.org/04dyzkj40', 'en', 1, 'https://ror.org/04dyzkj40 Texas Woman''s University'),
(99048, 'https://ror.org/00j9qag85', 'en', 1, 'https://ror.org/00j9qag85 Linnaeus University LinnƩ-yliopisto LinnƩuniversitetet'),
(99049, 'https://ror.org/00j2a7k55', 'no_lang_code', 1, 'https://ror.org/00j2a7k55 Jiaxing University'),
(99050, 'https://ror.org/0547yzj13', 'en', 1, 'https://ror.org/0547yzj13 Yıldız Technical University Yıldız Teknik Üniversitesi'),
(99051, 'https://ror.org/013x4kb81', 'en', 1, 'https://ror.org/013x4kb81 Hebei GEO University ēŸ³å®¶åŗ„ē»ęµŽå­¦é™¢'),
(99052, 'https://ror.org/02mb95055', 'en', 1, 'https://ror.org/02mb95055 Birkbeck, Prifysgol Llundain Birkbeck, University of London'),
(99053, 'https://ror.org/02jgzjj54', 'en', 1, 'https://ror.org/02jgzjj54 Allegheny College'),
(99054, 'https://ror.org/05s32j989', 'tr', 1, 'https://ror.org/05s32j989 Sivas Bilim ve Teknoloji Üniversitesi Sivas University of Science and Technology');
INSERT INTO `rors` VALUES
(99055, 'https://ror.org/03j4zvd18', 'en', 1, 'https://ror.org/03j4zvd18 Foro Italico University of Rome Institut universitaire de sciences motrices UniversitĆ  degli Studi di Roma Foro italico'),
(99056, 'https://ror.org/03q0t9252', 'en', 1, 'https://ror.org/03q0t9252 Jiangxi University of Science and Technology ę±Ÿč„æē†å·„å¤§å­¦'),
(99057, 'https://ror.org/03ceheh96', 'no_lang_code', 1, 'https://ror.org/03ceheh96 Qufu Normal University ę›²é˜œåøˆčŒƒå¤§å­¦'),
(99058, 'https://ror.org/02brte405', 'en', 1, 'https://ror.org/02brte405 Samsun University Samsun Üniversitesi'),
(99059, 'https://ror.org/009axq942', 'en', 1, 'https://ror.org/009axq942 Muş Alparslan University Muş Alparslan Üniversitesi'),
(99060, 'https://ror.org/04ha0ax85', 'en', 1, 'https://ror.org/04ha0ax85 Northern Regional College'),
(99061, 'https://ror.org/01dn09e98', 'en', 1, 'https://ror.org/01dn09e98 Terra'),
(99062, 'https://ror.org/02fhfw393', 'de', 1, 'https://ror.org/02fhfw393 MontanuniversitƤt Leoben Univerza v Leobnu'),
(99063, 'https://ror.org/00c4wc133', 'en', 1, 'https://ror.org/00c4wc133 Florida Agricultural and Mechanical University Universidad Agrónoma y MecÔnica de Florida'),
(99064, 'https://ror.org/05fq50484', 'en', 1, 'https://ror.org/05fq50484 UniversitƩ York York University'),
(99065, 'https://ror.org/04ewct822', 'en', 1, 'https://ror.org/04ewct822 Southwestern University of Finance and Economics č„æå—č“¢ē»å¤§å­¦'),
(99066, 'https://ror.org/05e74xb87', 'en', 1, 'https://ror.org/05e74xb87 New Jersey Institute of Technology'),
(99067, 'https://ror.org/02474f074', 'ms', 1, 'https://ror.org/02474f074 Universiti Malaysia Terengganu University of Malaysia, Terengganu'),
(99068, 'https://ror.org/04f7afq11', 'en', 1, 'https://ror.org/04f7afq11 Green University of Bangladesh ą¦—ą§ą¦°ą¦æą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(99069, 'https://ror.org/03kv08d37', 'en', 1, 'https://ror.org/03kv08d37 Taiyuan University of Technology å¤ŖåŽŸē†å·„å¤§å­¦'),
(99070, 'https://ror.org/0266t3a64', 'en', 1, 'https://ror.org/0266t3a64 Akademia Marynarki Wojennej im. Bohaterów Westerplatte Polish Naval Academy'),
(99071, 'https://ror.org/023er3e86', 'en', 1, 'https://ror.org/023er3e86 Qingdao Binhai University é’å²›ę»Øęµ·å­¦é™¢'),
(99072, 'https://ror.org/007rty190', 'ca', 1, 'https://ror.org/007rty190 Consorci de Serveis Universitaris de Catalunya Consorcio de Servicios Universitarios de CataluƱa'),
(99073, 'https://ror.org/03xawq568', 'en', 1, 'https://ror.org/03xawq568 Agricultural University of Athens UniversitĆ© d''agriculture d''athĆØnes Ī“ĪµĻ‰Ļ€ĪæĪ½Ī¹ĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(99074, 'https://ror.org/03rdpn141', 'en', 1, 'https://ror.org/03rdpn141 Bursa Technical University Bursa Teknik Üniversitesi'),
(99075, 'https://ror.org/00n6txq60', 'en', 1, 'https://ror.org/00n6txq60 Nanjing Institute of Technology'),
(99076, 'https://ror.org/0456b2t50', 'en', 1, 'https://ror.org/0456b2t50 JK Lakshmipat University'),
(99077, 'https://ror.org/01xt2dr21', 'en', 1, 'https://ror.org/01xt2dr21 China University of Mining and Technology äø­å›½ēŸæäøšå¤§å­¦'),
(99078, 'https://ror.org/00xpsqk75', 'en', 1, 'https://ror.org/00xpsqk75 Iceland University of the Arts ListahĆ”skóli ƍslands'),
(99079, 'https://ror.org/054y2mb78', 'en', 1, 'https://ror.org/054y2mb78 Ağrı İbrahim ƇeƧen University Ağrı İbrahim ƇeƧen Üniversitesi'),
(99080, 'https://ror.org/00ne6sr39', 'es', 1, 'https://ror.org/00ne6sr39 Deustuko Unibertsitatea Universidad de Deusto Universidade de Deusto University of Deusto'),
(99081, 'https://ror.org/04p55hr04', 'en', 1, 'https://ror.org/04p55hr04 University of Sunderland'),
(99082, 'https://ror.org/04zyhq975', 'en', 1, 'https://ror.org/04zyhq975 Heilongjiang University é»‘é¾™ę±Ÿå¤§å­¦'),
(99083, 'https://ror.org/04q0nep37', 'en', 1, 'https://ror.org/04q0nep37 UniNettuno University UniversitĆ  Telematica Internazionale Uninettuno'),
(99084, 'https://ror.org/01wcbdc92', 'en', 1, 'https://ror.org/01wcbdc92 Taiyuan University of Science and Technology å¤ŖåŽŸē§‘ęŠ€å¤§å­¦'),
(99085, 'https://ror.org/03pp6gj92', 'en', 1, 'https://ror.org/03pp6gj92 Centro de LƔseres Pulsados Spanish Center for Pulsed Lasers'),
(99086, 'https://ror.org/02mtr7g38', 'en', 1, 'https://ror.org/02mtr7g38 Bandirma Onyedi Eylul Universitesi Bandırma Onyedi Eylül University'),
(99087, 'https://ror.org/02jqj7156', 'en', 1, 'https://ror.org/02jqj7156 George Mason University Universidad George Mason'),
(99088, 'https://ror.org/054b0b564', 'en', 1, 'https://ror.org/054b0b564 Texas Christian University Universidad Cristiana de Texas'),
(99089, 'https://ror.org/0559t6f56', 'en', 1, 'https://ror.org/0559t6f56 Wenshan University'),
(99090, 'https://ror.org/02ke8fw32', 'en', 1, 'https://ror.org/02ke8fw32 Shandong Agricultural University å±±äøœå†œäøšå¤§å­¦'),
(99091, 'https://ror.org/01r9htc13', 'fr', 1, 'https://ror.org/01r9htc13 UniversitƩ Libre de Bruxelles'),
(99092, 'https://ror.org/00sjd5653', 'en', 1, 'https://ror.org/00sjd5653 Ibaraki University čŒØåŸŽå¤§å­¦'),
(99093, 'https://ror.org/02txfnf15', 'en', 1, 'https://ror.org/02txfnf15 Yanshan University 燕山大学'),
(99094, 'https://ror.org/02f1z8215', 'en', 1, 'https://ror.org/02f1z8215 Sri Eshwar College of Engineering'),
(99095, 'https://ror.org/02yy6jb09', 'en', 1, 'https://ror.org/02yy6jb09 National Security Authority'),
(99096, 'https://ror.org/048m2aa35', 'en', 1, 'https://ror.org/048m2aa35 General Jonas Žemaitis Military Academy of Lithuania Generolo Jono Žemaičio Lietuvos karo akademija'),
(99097, 'https://ror.org/03562fh87', 'pt', 1, 'https://ror.org/03562fh87 Escola Superior de Enfermagem do Porto'),
(99098, 'https://ror.org/056nttx82', 'en', 1, 'https://ror.org/056nttx82 Sri Ramakrishna Engineering College'),
(99099, 'https://ror.org/05tjyqz67', 'en', 1, 'https://ror.org/05tjyqz67 Holy Cross College'),
(99100, 'https://ror.org/0290wsh42', 'it', 1, 'https://ror.org/0290wsh42 Istituto Universitario di Studi Superiori di Pavia University School for Advanced Studies - IUSS Pavia'),
(99101, 'https://ror.org/0192m2k53', 'en', 1, 'https://ror.org/0192m2k53 University of Salerno UniversitƠ degli Studi di Salerno UniversitƩ de salerne'),
(99102, 'https://ror.org/03frdh605', 'en', 1, 'https://ror.org/03frdh605 Huaqiao University åŽä¾Øå¤§å­¦'),
(99103, 'https://ror.org/023b72294', 'en', 1, 'https://ror.org/023b72294 Huazhong Agricultural University åŽäø­å†œäøšå¤§å­¦'),
(99104, 'https://ror.org/02956yf07', 'en', 1, 'https://ror.org/02956yf07 University of Tsukuba 筑波大学'),
(99105, 'https://ror.org/01kn7bc28', 'en', 1, 'https://ror.org/01kn7bc28 Sol Plaatje University'),
(99106, 'https://ror.org/055p14r26', 'en', 1, 'https://ror.org/055p14r26 Türk Hava Kurumu Üniversitesi University of Turkish Aeronautical Association'),
(99107, 'https://ror.org/01q7w1f47', 'en', 1, 'https://ror.org/01q7w1f47 St. Olaf College'),
(99108, 'https://ror.org/02t9b8973', 'en', 1, 'https://ror.org/02t9b8973 Centria University of Applied Sciences Centria ammattikorkeakoulu Centria yrkeshƶgskola'),
(99109, 'https://ror.org/038jp4m40', 'en', 1, 'https://ror.org/038jp4m40 National Centre of Scientific Research "Demokritos" Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ Ī¦Ļ…ĻƒĪ¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ Ī”Ī·Ī¼ĻŒĪŗĻĪ¹Ļ„ĪæĻ‚'),
(99110, 'https://ror.org/02e2c7k09', 'en', 1, 'https://ror.org/02e2c7k09 Delft University of Technology Technische Universiteit Delft'),
(99111, 'https://ror.org/04avkmd49', 'en', 1, 'https://ror.org/04avkmd49 Williams College'),
(99112, 'https://ror.org/053jpjd80', 'en', 1, 'https://ror.org/053jpjd80 Gerrit Rietveld Academie Gerrit Rietveld Academy'),
(99113, 'https://ror.org/01shwhq58', 'tr', 1, 'https://ror.org/01shwhq58 Sakarya University of Applied Sciences Sakarya Uygulamalı Bilimler Üniversitesi'),
(99114, 'https://ror.org/04v097707', 'en', 1, 'https://ror.org/04v097707 California State University, Channel Islands UniversitĆ© d''Ɖtat de californie Ć  channel islands'),
(99115, 'https://ror.org/05qp50e50', 'en', 1, 'https://ror.org/05qp50e50 Langara College'),
(99116, 'https://ror.org/00pvhed30', 'en', 1, 'https://ror.org/00pvhed30 City Literary Institute'),
(99117, 'https://ror.org/03dnytd23', 'en', 1, 'https://ror.org/03dnytd23 Shenyang Pharmaceutical University'),
(99118, 'https://ror.org/02d9gec76', 'ca', 1, 'https://ror.org/02d9gec76 Esade Escola Superior d''Administració i Direcció d''Empreses'),
(99119, 'https://ror.org/05akhmy90', 'en', 1, 'https://ror.org/05akhmy90 Huangshan University 黄山学院'),
(99120, 'https://ror.org/005edt527', 'en', 1, 'https://ror.org/005edt527 Capital Normal University é¦–éƒ½åøˆčŒƒå¤§å­¦'),
(99121, 'https://ror.org/03fs41j10', 'de', 1, 'https://ror.org/03fs41j10 PƤdagogische Hochschule Schaffhausen'),
(99122, 'https://ror.org/019wvm592', 'en', 1, 'https://ror.org/019wvm592 Australian National University'),
(99123, 'https://ror.org/03hx84x94', 'en', 1, 'https://ror.org/03hx84x94 Bingöl University Bingöl Üniversitesi'),
(99124, 'https://ror.org/03r8nwp71', 'en', 1, 'https://ror.org/03r8nwp71 Műszaki Egyetem Technical University of Cluj-Napoca Universitatea Tehnică Cluj-Napoca'),
(99125, 'https://ror.org/03265fv13', 'en', 1, 'https://ror.org/03265fv13 ColƔiste na hOllscoile University College Cork'),
(99126, 'https://ror.org/05w4ste42', 'en', 1, 'https://ror.org/05w4ste42 Royal Roads University'),
(99127, 'https://ror.org/037mrss42', 'en', 1, 'https://ror.org/037mrss42 Tshwane University of Technology Tshwane-Universiteit van Tegnologie'),
(99128, 'https://ror.org/01by1wp65', 'en', 1, 'https://ror.org/01by1wp65 Loyola University Maryland Universidad Loyola Maryland'),
(99129, 'https://ror.org/03z8fyr40', 'en', 1, 'https://ror.org/03z8fyr40 Karadeniz Technical University Karadeniz Teknik Üniversitesi'),
(99130, 'https://ror.org/00pxfwe85', 'en', 1, 'https://ror.org/00pxfwe85 National Museums Scotland'),
(99131, 'https://ror.org/00xvwpq40', 'tr', 1, 'https://ror.org/00xvwpq40 Istanbul Sabahattin Zaim University İstanbul Sabahattin Zaim Üniversitesi'),
(99132, 'https://ror.org/0561ghm58', 'en', 1, 'https://ror.org/0561ghm58 Slovak University of Technology in Bratislava SlovenskĆ” technickĆ” univerzita v Bratislave'),
(99133, 'https://ror.org/00g2rqs52', 'en', 1, 'https://ror.org/00g2rqs52 Southwest Medical University ę³øå·žåŒ»å­¦é™¢'),
(99134, 'https://ror.org/04np6eb38', 'en', 1, 'https://ror.org/04np6eb38 Det Kongelige Danske Musikkonservatorium Royal Danish Academy of Music'),
(99135, 'https://ror.org/031fw8h15', 'en', 1, 'https://ror.org/031fw8h15 Kungliga Konsthƶgskolan Kuninkaallinen taidekorkeakoulu Royal Institute of Art'),
(99136, 'https://ror.org/01kw1gj07', 'en', 1, 'https://ror.org/01kw1gj07 Colegio Ithaca Ithaca College'),
(99137, 'https://ror.org/025s55q11', 'en', 1, 'https://ror.org/025s55q11 Beijing Institute of Petrochemical Technology åŒ—äŗ¬ēŸ³ę²¹åŒ–å·„å­¦é™¢'),
(99138, 'https://ror.org/05xj56w78', 'en', 1, 'https://ror.org/05xj56w78 National Institute of Mental Health'),
(99139, 'https://ror.org/03442p831', 'en', 1, 'https://ror.org/03442p831 Xi''an Polytechnic University 脿安巄程大学'),
(99140, 'https://ror.org/014xc4822', 'en', 1, 'https://ror.org/014xc4822 PƤdagogische Hochschule Steiermark University of Teacher Education Styria'),
(99141, 'https://ror.org/01519ck20', 'en', 1, 'https://ror.org/01519ck20 Calderdale College'),
(99142, 'https://ror.org/0047q0d34', 'en', 1, 'https://ror.org/0047q0d34 South African Theological Seminary'),
(99143, 'https://ror.org/011gmn932', 'en', 1, 'https://ror.org/011gmn932 National Institute of Technology Rourkela ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤°ą¤¾ą¤‰ą¤°ą¤•ą„‡ą¤²ą¤¾ ą¬œą¬¾ą¬¤ą­€ą­Ÿ ą¬Ŗą­ą¬°ą¬Æą­ą¬•ą­ą¬¤ą¬æ ą¬Ŗą­ą¬°ą¬¤ą¬æą¬·ą­ą¬ ą¬¾ą¬Ø, ରାଉରକେଲା'),
(99144, 'https://ror.org/02n5c8f58', 'no_lang_code', 1, 'https://ror.org/02n5c8f58 Yamanashi Gakuin University 山梨学院大学'),
(99145, 'https://ror.org/05750v978', 'en', 1, 'https://ror.org/05750v978 National School of Political Science and Public Administration Şcoala Naţională de Studii Politice şi Administrative din Bucureşti'),
(99146, 'https://ror.org/04dd86x86', 'en', 1, 'https://ror.org/04dd86x86 Rajarata University of Sri Lanka ą®°ą®œą®°ą®ŸąÆą®Ÿ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ රජරට ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(99147, 'https://ror.org/01v1rak05', 'en', 1, 'https://ror.org/01v1rak05 Pomeranian Medical University Pommersche Medizinische UniversitƤt Pomorski Uniwersytet Medyczny w Szczecinie'),
(99148, 'https://ror.org/0497ase59', 'en', 1, 'https://ror.org/0497ase59 Inner Mongolia Normal University å†…č’™å¤åøˆčŒƒå¤§å­¦'),
(99149, 'https://ror.org/00gmd7q80', 'en', 1, 'https://ror.org/00gmd7q80 Indian Institute of Information Technology Design and Manufacturing Jabalpur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤…ą¤­ą¤æą¤•ą¤²ą„ą¤Ŗą¤Ø ą¤ą¤µą¤‚ ą¤µą¤æą¤Øą¤æą¤°ą„ą¤®ą¤¾ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾-ą¤Ŗą„ą¤°ą¤µą¤æą¤§ą¤æ ą¤”ą¤æą¤œą¤¾ą¤‡ą¤Ø ą¤ą¤µą¤‚ ą¤‰ą¤¤ą„ą¤Ŗą¤¾ą¤¦ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø PDPM'),
(99150, 'https://ror.org/0046ap498', 'en', 1, 'https://ror.org/0046ap498 Korea Research Institute of Ships and Ocean Engineering'),
(99151, 'https://ror.org/02jp16h88', 'en', 1, 'https://ror.org/02jp16h88 Heart of Worcestershire College'),
(99152, 'https://ror.org/050c3cw24', 'ca', 1, 'https://ror.org/050c3cw24 Universidad de LƩrida Universidade de Lleida Universitat de Lleida University of Lleida'),
(99153, 'https://ror.org/047kqmy39', 'nl', 1, 'https://ror.org/047kqmy39 Iselinge Hogeschool'),
(99154, 'https://ror.org/05jvrwv37', 'en', 1, 'https://ror.org/05jvrwv37 Istanbul Kültür University İstanbul Kültür Üniversitesi'),
(99155, 'https://ror.org/007vzmy24', 'en', 1, 'https://ror.org/007vzmy24 South Eastern University of Sri Lanka ą®¤ąÆ†ą®©ąÆą®•ą®æą®“ą®•ąÆą®•ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®‡ą®²ą®™ąÆą®•ąÆˆ ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶…ą¶œą·Šą¶±ą·’ą¶Æą·’ą¶œ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(99156, 'https://ror.org/00zbe0w13', 'en', 1, 'https://ror.org/00zbe0w13 Tianjin University of Technology 天擄理巄大学'),
(99157, 'https://ror.org/03ebzbt25', 'en', 1, 'https://ror.org/03ebzbt25 Wakefield College'),
(99158, 'https://ror.org/00mwh6v70', 'cs', 1, 'https://ror.org/00mwh6v70 Moravian University College Olomouc MoravskĆ” VysokĆ” Skola Olomouc'),
(99159, 'https://ror.org/052nzqz14', 'en', 1, 'https://ror.org/052nzqz14 Iskenderun Teknik Üniversitesi İskenderun Technical University'),
(99160, 'https://ror.org/051prj435', 'en', 1, 'https://ror.org/051prj435 Bishop''s University UniversitƩ Bishop'),
(99161, 'https://ror.org/04nbhqj75', 'en', 1, 'https://ror.org/04nbhqj75 Hasselt University Universiteit Hasselt UniversitƩ de Hasselt'),
(99162, 'https://ror.org/00340yn33', 'en', 1, 'https://ror.org/00340yn33 Keele University'),
(99163, 'https://ror.org/059me1x50', 'en', 1, 'https://ror.org/059me1x50 Institute of Infrastructure Technology Research and Management'),
(99164, 'https://ror.org/0110e6d16', 'en', 1, 'https://ror.org/0110e6d16 Stafford College'),
(99165, 'https://ror.org/01wd4xt90', 'en', 1, 'https://ror.org/01wd4xt90 Hohai University 河海大学'),
(99166, 'https://ror.org/018rbtf37', 'en', 1, 'https://ror.org/018rbtf37 Tianjin University of Science and Technology å¤©ę“„ē§‘ęŠ€å¤§å­¦'),
(99167, 'https://ror.org/012dg8a96', 'en', 1, 'https://ror.org/012dg8a96 Swarthmore College'),
(99168, 'https://ror.org/0553yr311', 'es', 1, 'https://ror.org/0553yr311 Errioxako Unibertsitatea Universidad de La Rioja Universidade da Rioxa University of La Rioja'),
(99169, 'https://ror.org/00x69rs40', 'en', 1, 'https://ror.org/00x69rs40 Marche Polytechnic University UniversitƠ Politecnica delle Marche UniversitƩ polytechnique des marches'),
(99170, 'https://ror.org/01r9skd65', 'es', 1, 'https://ror.org/01r9skd65 Universidad a Distancia de Madrid'),
(99171, 'https://ror.org/05gvnxz63', 'en', 1, 'https://ror.org/05gvnxz63 Argonne National Laboratory Laboratorio Nacional Argonne'),
(99172, 'https://ror.org/03egztz04', 'en', 1, 'https://ror.org/03egztz04 Maryland Geological Survey'),
(99173, 'https://ror.org/01hxbnq19', 'en', 1, 'https://ror.org/01hxbnq19 Czech Academy of Sciences, Institute of Theoretical and Applied Mechanics Ústav teoretickĆ© a aplikovanĆ© mechaniky AV ČR Ústav teoretickĆ© a aplikovanĆ© mechaniky AV ČR, v. v. i. Ústav teoretickĆ© a aplikovanĆ© mechaniky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(99174, 'https://ror.org/04cs12z33', 'en', 1, 'https://ror.org/04cs12z33 Uro Oncology Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ سرطان Ł‡Ų§ŪŒ دستگاه ادراری ŲŖŁ†Ų§Ų³Ł„ŪŒ'),
(99175, 'https://ror.org/01v75b264', 'en', 1, 'https://ror.org/01v75b264 Rosemont College'),
(99176, 'https://ror.org/04y3tyb88', 'de', 1, 'https://ror.org/04y3tyb88 Forest Research Institute Baden-Wuerttemberg Forstliche Versuchs- und Forschungsanstalt Baden-Württemberg'),
(99177, 'https://ror.org/05q7h6933', 'fr', 1, 'https://ror.org/05q7h6933 CƩgep Limoilou'),
(99178, 'https://ror.org/03kja7h52', 'fr', 1, 'https://ror.org/03kja7h52 La CitƩ du Genre'),
(99179, 'https://ror.org/059p10119', 'en', 1, 'https://ror.org/059p10119 Institute for Research in Social Communication of the Slovak Academy of Sciences Ústav výskumu sociÔlnej komunikÔcie SlovenskÔ akadémia vied'),
(99180, 'https://ror.org/05bcgdd94', 'en', 1, 'https://ror.org/05bcgdd94 Czech Academy of Sciences, Institute of Vertebrate Biology Ústav biologie obratlovcÅÆ AV ČR Ústav biologie obratlovcÅÆ AV ČR, v. v. i. Ústav biologie obratlovcÅÆ AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(99181, 'https://ror.org/027v97282', 'en', 1, 'https://ror.org/027v97282 International Clinical Research Center, St. Anne''s University Hospital Brno MezinÔrodní centrum klinického výzkumu ve Fakultní nemocnici u sv. Anny'),
(99182, 'https://ror.org/01x71m885', 'en', 1, 'https://ror.org/01x71m885 Exceptional Talents Development Center مرکز Ų±Ų“ŲÆ Ų§Ų³ŲŖŲ¹ŲÆŲ§ŲÆŁ‡Ų§ŪŒ درخؓان'),
(99183, 'https://ror.org/02m2rj159', 'en', 1, 'https://ror.org/02m2rj159 Pharmaceutical Sciences Research Center Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… دارویی'),
(99184, 'https://ror.org/03dmc3670', 'es', 1, 'https://ror.org/03dmc3670 Congreso de los Diputados Congress of Deputies'),
(99185, 'https://ror.org/04194kr83', 'en', 1, 'https://ror.org/04194kr83 Cell Therapy and Regenerative Medicine Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų³Ł„ŁˆŁ„ ŲÆŲ±Ł…Ų§Ł†ŪŒ و پزؓکی بازساختی'),
(99186, 'https://ror.org/01evs8y88', 'en', 1, 'https://ror.org/01evs8y88 Metabolomics and Genomics Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ł…ŲŖŲ§ŲØŁˆŁ„ŁˆŁ…ŪŒŚ©Ų³ و Ś˜Ł†ŁˆŁ…ŪŒŚ©Ų³'),
(99187, 'https://ror.org/01g400t51', 'en', 1, 'https://ror.org/01g400t51 Uganda National Academy of Sciences'),
(99188, 'https://ror.org/00jvn6d28', 'en', 1, 'https://ror.org/00jvn6d28 New Mexico Bureau of Geology and Mineral Resources'),
(99189, 'https://ror.org/03wb8xz10', 'no_lang_code', 1, 'https://ror.org/03wb8xz10 ƉlectricitĆ© de France (France)'),
(99190, 'https://ror.org/03xk4a758', 'no_lang_code', 1, 'https://ror.org/03xk4a758 Valneva (Austria)'),
(99191, 'https://ror.org/025k0bh36', 'en', 1, 'https://ror.org/025k0bh36 Baraka Agricultural College'),
(99192, 'https://ror.org/05hpp0w78', 'es', 1, 'https://ror.org/05hpp0w78 Universidad Tecnologica de Ciudad Juarez'),
(99193, 'https://ror.org/04hb7zd44', 'es', 1, 'https://ror.org/04hb7zd44 Universidad Tecnológica del Norte de Guanajuato'),
(99194, 'https://ror.org/04peych45', 'en', 1, 'https://ror.org/04peych45 Nigeria Maritime University'),
(99195, 'https://ror.org/00a5mh069', 'en', 1, 'https://ror.org/00a5mh069 University of Phayao ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø°ą¹€ąø¢ąø²'),
(99196, 'https://ror.org/04mf3mq37', 'en', 1, 'https://ror.org/04mf3mq37 Museums Victoria'),
(99197, 'https://ror.org/02h8tym68', 'en', 1, 'https://ror.org/02h8tym68 National College, Trichy'),
(99198, 'https://ror.org/00kmnqa46', 'en', 1, 'https://ror.org/00kmnqa46 Institute of Measurement Science of the Slovak Academy of Sciences Ústav Merania SlovenskÔ akadémia vied'),
(99199, 'https://ror.org/02fvps960', 'en', 1, 'https://ror.org/02fvps960 Farabi Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† فارابی'),
(99200, 'https://ror.org/011y8np74', 'en', 1, 'https://ror.org/011y8np74 Northern Territory Geological Survey'),
(99201, 'https://ror.org/03ybej830', 'en', 1, 'https://ror.org/03ybej830 Aju Pharm Aju Pharm (South Korea) ģ•„ģ£¼ģ•½ķ’ˆ'),
(99202, 'https://ror.org/002fnes28', 'en', 1, 'https://ror.org/002fnes28 Institute of Forest Ecology of the Slovak Academy of Sciences Ústav ekológie lesa SlovenskÔ akadémia vied'),
(99203, 'https://ror.org/049g74m22', 'en', 1, 'https://ror.org/049g74m22 Federal College of Education (Technical), Umunze'),
(99204, 'https://ror.org/02ytrz124', 'en', 1, 'https://ror.org/02ytrz124 LaserNetUS'),
(99205, 'https://ror.org/00jpm9b26', 'en', 1, 'https://ror.org/00jpm9b26 inhbar, Inc. inhbar, Inc. (Japan) ć‚¤ćƒ³ć‚Øć‚¤ćƒćƒćƒ¼åˆåŒä¼šē¤¾'),
(99206, 'https://ror.org/03e5da851', 'en', 1, 'https://ror.org/03e5da851 Tianjin Renai College 天擄仁愛學院'),
(99207, 'https://ror.org/03h4qwp45', 'en', 1, 'https://ror.org/03h4qwp45 Ethiopian Forestry Development'),
(99208, 'https://ror.org/00vh46373', 'en', 1, 'https://ror.org/00vh46373 Center for Solid Waste Research مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ł…ŁˆŲ§ŲÆ Ų²Ų§Ų¦ŲÆ Ų¬Ų§Ł…ŲÆ'),
(99209, 'https://ror.org/0235dpm25', 'en', 1, 'https://ror.org/0235dpm25 Elderly Health Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ سلامت سالمندان'),
(99210, 'https://ror.org/037wny167', 'en', 1, 'https://ror.org/037wny167 Centro Internacional de Agricultura Tropical International Center for Tropical Agriculture'),
(99211, 'https://ror.org/04b9maa60', 'es', 1, 'https://ror.org/04b9maa60 Biblioteca Judicial "Dr. Ricardo Gallardo"'),
(99212, 'https://ror.org/02k5swt12', 'pt', 1, 'https://ror.org/02k5swt12 Federal University of SĆ£o Paulo Universidade Federal de SĆ£o Paulo'),
(99213, 'https://ror.org/049kd0t63', 'id', 1, 'https://ror.org/049kd0t63 Poltekkes Kemenkes Surabaya'),
(99214, 'https://ror.org/00yknbj49', 'pt', 1, 'https://ror.org/00yknbj49 Faculdade Patos de Minas - FPM'),
(99215, 'https://ror.org/04ge02x20', 'en', 1, 'https://ror.org/04ge02x20 Geoscience Australia'),
(99216, 'https://ror.org/03n3yg876', 'fr', 1, 'https://ror.org/03n3yg876 Laboratoire de physique des lasers Laser Physics Laboratory'),
(99217, 'https://ror.org/03n800t92', 'en', 1, 'https://ror.org/03n800t92 Open Knowledge Nepal'),
(99218, 'https://ror.org/01xja5k46', 'en', 1, 'https://ror.org/01xja5k46 Institute of Materials and Machine Mechanics of the Slovak Academy of Sciences Ústav MateriÔlov a Mechaniky Strojov SlovenskÔ akadémia vied'),
(99219, 'https://ror.org/03r7r0k94', 'fr', 1, 'https://ror.org/03r7r0k94 Laboratoire Informatique, Image et Interaction (L3i)'),
(99220, 'https://ror.org/01d5v2p67', 'fr', 1, 'https://ror.org/01d5v2p67 Silva'),
(99221, 'https://ror.org/01byxf044', 'en', 1, 'https://ror.org/01byxf044 Harry Butler Institute'),
(99222, 'https://ror.org/034qe8j39', 'en', 1, 'https://ror.org/034qe8j39 Endocrine and Metabolism Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲŗŲÆŲÆ و Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŲ³Ł…'),
(99223, 'https://ror.org/0410gdv63', 'it', 1, 'https://ror.org/0410gdv63 Istituto Imaging della Svizzera Italiana'),
(99224, 'https://ror.org/00fhc9y79', 'en', 1, 'https://ror.org/00fhc9y79 Guangdong University of Foreign Studies å¹æäøœå¤–čÆ­å¤–č“øå¤§å­¦'),
(99225, 'https://ror.org/03xejxm22', 'it', 1, 'https://ror.org/03xejxm22 Istituto Nazionale di Fisica Nucleare, Sezione di Milano Bicocca National Institute for Nuclear Physics, Milano Bicocca Division'),
(99226, 'https://ror.org/0489cd473', 'en', 1, 'https://ror.org/0489cd473 Shanghai Institute for Mathematics and Interdisciplinary Sciences'),
(99227, 'https://ror.org/02b28ye70', 'es', 1, 'https://ror.org/02b28ye70 La Salle University Northwest Universidad La Salle Noroeste'),
(99228, 'https://ror.org/01ktv1m31', 'en', 1, 'https://ror.org/01ktv1m31 Cardiovascular Diseases Research Institute Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ قلب و Ų¹Ų±ŁˆŁ‚'),
(99229, 'https://ror.org/00p666k70', 'es', 1, 'https://ror.org/00p666k70 Instituto Campechano'),
(99230, 'https://ror.org/00r6qej07', 'en', 1, 'https://ror.org/00r6qej07 Medical College For Women and Hospital'),
(99231, 'https://ror.org/02cy4j108', 'en', 1, 'https://ror.org/02cy4j108 Committee on Data of the International Science Council'),
(99232, 'https://ror.org/0395hes28', 'en', 1, 'https://ror.org/0395hes28 Sendai Tokushukai Hospital ä»™å°å¾³ę“²ä¼šē—…é™¢'),
(99233, 'https://ror.org/01238z614', 'en', 1, 'https://ror.org/01238z614 Environmental Protection Authority Te Mana Rauhī Taiao'),
(99234, 'https://ror.org/043be3q74', 'en', 1, 'https://ror.org/043be3q74 Open Book Collective'),
(99235, 'https://ror.org/01tevnk56', 'en', 1, 'https://ror.org/01tevnk56 University of Siena UniversitƠ degli Studi di Siena UniversitƤt Siena UniversitƩ de sienne Univerza v Sieni'),
(99236, 'https://ror.org/02cfpj844', 'en', 1, 'https://ror.org/02cfpj844 ToxStrategies LLC ToxStrategies LLC (United States)'),
(99237, 'https://ror.org/04zp4f313', 'en', 1, 'https://ror.org/04zp4f313 Laboratory for Research on Enterprise and Decisions'),
(99238, 'https://ror.org/01704wp68', 'ms', 1, 'https://ror.org/01704wp68 Universiti Malaysia Pahang Al-Sultan Abdullah'),
(99239, 'https://ror.org/012fqzm33', 'fr', 1, 'https://ror.org/012fqzm33 GĆ©nĆ©tique Quantitative et Ɖvolution Le Moulon Quantitative Genetics and Evolution - Le Moulon'),
(99240, 'https://ror.org/04emwm605', 'no_lang_code', 1, 'https://ror.org/04emwm605 Thales (France)'),
(99241, 'https://ror.org/01743w997', 'fr', 1, 'https://ror.org/01743w997 Association pour la sauvegarde de la mƩdina de Gafsa Asm Gafsa'),
(99242, 'https://ror.org/0341vw408', 'it', 1, 'https://ror.org/0341vw408 Ministero dell''universitĆ  e della ricerca Ministry of Universities and Research'),
(99243, 'https://ror.org/02sgr3228', 'es', 1, 'https://ror.org/02sgr3228 Instituto Nacional de Ciencias Penales National Institute of Criminal Science'),
(99244, 'https://ror.org/0060wr328', 'fr', 1, 'https://ror.org/0060wr328 ArmƩe de l''air et de l''espace'),
(99245, 'https://ror.org/00nmgny79', 'de', 1, 'https://ror.org/00nmgny79 Bundeswehr'),
(99246, 'https://ror.org/035srj028', 'pt', 1, 'https://ror.org/035srj028 Fundação de Ensino e Pesquisa em Ciências da Saúde Secretaria de Estado de Saúde'),
(99247, 'https://ror.org/017eabx08', 'it', 1, 'https://ror.org/017eabx08 Ospedale Regionale di Mendrisio'),
(99248, 'https://ror.org/010mjn423', 'en', 1, 'https://ror.org/010mjn423 Hong Kong Sanatorium and Hospital 養和醫院'),
(99249, 'https://ror.org/01xexwj76', 'de', 1, 'https://ror.org/01xexwj76 Institut für Mikrobiologie der Bundeswehr'),
(99250, 'https://ror.org/05waxv440', 'en', 1, 'https://ror.org/05waxv440 Library and Archives Northern Territory'),
(99251, 'https://ror.org/00zd5gr55', 'en', 1, 'https://ror.org/00zd5gr55 Hessian Ministry for Science and the Arts Hessisches Ministerium für Wissenschaft und Kunst'),
(99252, 'https://ror.org/006ghkj05', 'en', 1, 'https://ror.org/006ghkj05 Institute of Construction and Architecture of the Slovak Academy of Sciences Ústav stavebníctva a architektúry SlovenskÔ akadémia vied'),
(99253, 'https://ror.org/014wj3r14', 'pt', 1, 'https://ror.org/014wj3r14 AIMM - Associação para a Investigação do Meio Marinho'),
(99254, 'https://ror.org/048m8ny81', 'en', 1, 'https://ror.org/048m8ny81 Center for Air Pollution Research مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų¢Ł„ŁˆŲÆŚÆŪŒ Ł‡ŁˆŲ§'),
(99255, 'https://ror.org/04fyj8k59', 'en', 1, 'https://ror.org/04fyj8k59 Vishnu Dental College'),
(99256, 'https://ror.org/05wrbcx33', 'en', 1, 'https://ror.org/05wrbcx33 Czech Academy of Sciences, Institute of Photonics and Electronics Ústav fotoniky a elektroniky AV ČR Ústav fotoniky a elektroniky AV ČR, v. v. i. Ústav fotoniky a elektroniky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(99257, 'https://ror.org/02te3c603', 'en', 1, 'https://ror.org/02te3c603 Chemický ústav SlovenskÔ akadémia vied Institute of Chemistry of the Slovak Academy of Sciences'),
(99258, 'https://ror.org/03xrwvc31', 'en', 1, 'https://ror.org/03xrwvc31 Amal College of Advanced Studies'),
(99259, 'https://ror.org/04naype60', 'en', 1, 'https://ror.org/04naype60 Kogi State College of Education, Ankpa'),
(99260, 'https://ror.org/05ptwtz25', 'tr', 1, 'https://ror.org/05ptwtz25 Siirt University Siirt Üniversitesi'),
(99261, 'https://ror.org/00m4pvq34', 'en', 1, 'https://ror.org/00m4pvq34 Czech Academy of Sciences, Institute of Rock Structure and Mechanics Ústav struktury a mechaniky hornin AV ČR Ústav struktury a mechaniky hornin AV ČR, v. v. i. Ústav struktury a mechaniky hornin AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(99262, 'https://ror.org/01x441g73', 'fr', 1, 'https://ror.org/01x441g73 Ɖcole Centrale de Lille'),
(99263, 'https://ror.org/010jnvp60', 'en', 1, 'https://ror.org/010jnvp60 LEM International LEM International (Switzerland)'),
(99264, 'https://ror.org/05t6hvr95', 'en', 1, 'https://ror.org/05t6hvr95 Beijing Institute of Mathematical Sciences and Applications åŒ—äŗ¬é›ę –ę¹–åŗ”ē”Øę•°å­¦ē ”ē©¶é™¢'),
(99265, 'https://ror.org/02qgf3849', 'es', 1, 'https://ror.org/02qgf3849 Observatorio Colombiano de Ciencia y TecnologĆ­a'),
(99266, 'https://ror.org/026md7341', 'en', 1, 'https://ror.org/026md7341 Mental Health Research Institute, Tomsk National Research Medical Center, Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Томский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский центр Российской акаГемии наук" ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психического Š·Š“Š¾Ń€Š¾Š²ŃŒŃ'),
(99267, 'https://ror.org/04q9vef57', 'fr', 1, 'https://ror.org/04q9vef57 Ecologie des ForĆŖts de Guyane Ecology of Guianan Forests'),
(99268, 'https://ror.org/03bamq636', 'en', 1, 'https://ror.org/03bamq636 Office for Government Policy Coordination Prime Minister''s Secretariat 국묓씰정실 źµ­ė¬“ģ“ė¦¬ė¹„ģ„œģ‹¤'),
(99269, 'https://ror.org/051dhry29', 'fr', 1, 'https://ror.org/051dhry29 Marine nationale'),
(99270, 'https://ror.org/0432vt678', 'fr', 1, 'https://ror.org/0432vt678 Collège Jean-de-Brébeuf'),
(99271, 'https://ror.org/04hpp6453', 'en', 1, 'https://ror.org/04hpp6453 Texas Southmost College'),
(99272, 'https://ror.org/04r43k021', 'it', 1, 'https://ror.org/04r43k021 Istituto di Scienze e Tecnologie Chimiche "Giulio Natta"'),
(99273, 'https://ror.org/021s9k294', 'en', 1, 'https://ror.org/021s9k294 Ekonomický ústav SlovenskÔ akadémia vied Institute of Economic Research of the Slovak Academy of Sciences'),
(99274, 'https://ror.org/0030ewy42', 'no_lang_code', 1, 'https://ror.org/0030ewy42 Iberdrola (Spain)'),
(99275, 'https://ror.org/01nspwd23', 'en', 1, 'https://ror.org/01nspwd23 Non-Communicable Diseases Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁ…Ų§Ų±ŪŒ Ł‡Ų§ŪŒ غیرواگی'),
(99276, 'https://ror.org/03hqan520', 'en', 1, 'https://ror.org/03hqan520 Royal University of Bhutan འབྲནག་རྒྱལ་འཛིན་གཙནག་ལག་སློབ་སྔེ'),
(99277, 'https://ror.org/017drqp47', 'de', 1, 'https://ror.org/017drqp47 Hessian State Office for Historical Studies Hessische Institut für Landesgeschichte'),
(99278, 'https://ror.org/03qtjre15', 'es', 1, 'https://ror.org/03qtjre15 Instituto Traumatológico Dr. Teodoro Gebauer Weisser'),
(99279, 'https://ror.org/04834zz12', 'it', 1, 'https://ror.org/04834zz12 Istituto Nazionale di Fisica Nucleare, Amministrazione Centrale'),
(99280, 'https://ror.org/02he3zy15', 'no_lang_code', 1, 'https://ror.org/02he3zy15 Bentham Science Publishers (China)'),
(99281, 'https://ror.org/03sawy356', 'se', 1, 'https://ror.org/03sawy356 Region SkƄne Region SkƄne'),
(99282, 'https://ror.org/00mvm1h40', 'en', 1, 'https://ror.org/00mvm1h40 Advanced Diagnostic and Interventional Radiology Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų±Ų§ŲÆŪŒŁˆŁ„ŁˆŚ˜ŪŒ Ł†ŁˆŪŒŁ† و ŲŖŁ‡Ų§Ų¬Ł…ŪŒ'),
(99283, 'https://ror.org/01927vf62', 'en', 1, 'https://ror.org/01927vf62 Zoology Museum of the University of Athens'),
(99284, 'https://ror.org/04zsyxa30', 'en', 1, 'https://ror.org/04zsyxa30 Centre for Biodiversity Genomics'),
(99285, 'https://ror.org/04ghtjd11', 'fr', 1, 'https://ror.org/04ghtjd11 Centre d''Investigation Clinique Pierre Drouin'),
(99286, 'https://ror.org/019c1xz73', 'fr', 1, 'https://ror.org/019c1xz73 Development, Adaptation and Handicap DƩveloppement, Adaptation et Handicap'),
(99287, 'https://ror.org/00k8tjv84', 'it', 1, 'https://ror.org/00k8tjv84 L’Agenzia per la Meteorologia e Climatologia "ItaliaMeteo"'),
(99288, 'https://ror.org/001vtka31', 'en', 0, 'https://ror.org/001vtka31 Instituto de Estudos Superiores Militares Portuguese Joint Command and Staff College'),
(99289, 'https://ror.org/05sex0295', 'en', 1, 'https://ror.org/05sex0295 Hungarian Dance University Magyar TÔncművészeti Egyetem'),
(99290, 'https://ror.org/04xrjem68', 'en', 1, 'https://ror.org/04xrjem68 Institute of Virology of the Slovak Academy of Sciences Virologického ústavu SlovenskÔ akadémia vied'),
(99291, 'https://ror.org/04xyf9e18', 'es', 1, 'https://ror.org/04xyf9e18 Instituto Tecnológico de TehuacÔn'),
(99292, 'https://ror.org/02t3hwk28', 'en', 1, 'https://ror.org/02t3hwk28 MineraLogic LLC MineraLogic LLC (United States)'),
(99293, 'https://ror.org/00wadf468', 'en', 1, 'https://ror.org/00wadf468 Polymer Institute of the Slovak Academy of Sciences Ústav polymérov SlovenskÔ akadémia vied'),
(99294, 'https://ror.org/0053vmf39', 'en', 1, 'https://ror.org/0053vmf39 Astana International University Астана халықаралық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Астана'),
(99295, 'https://ror.org/0420zvk78', 'en', 1, 'https://ror.org/0420zvk78 Concordia University UniversitƩ Concordia'),
(99296, 'https://ror.org/00z160c41', 'en', 1, 'https://ror.org/00z160c41 National Institute of Textile Engineering and Research ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦¬ą¦øą§ą¦¤ą§ą¦° ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(99297, 'https://ror.org/01h5a0582', 'no_lang_code', 1, 'https://ror.org/01h5a0582 Carnegie Learning, Inc. (United States)'),
(99298, 'https://ror.org/01j7ztj55', 'de', 1, 'https://ror.org/01j7ztj55 Oikoplus GmbH'),
(99299, 'https://ror.org/02t0k0832', 'fr', 1, 'https://ror.org/02t0k0832 UniversitƩ de Mayotte'),
(99300, 'https://ror.org/03cfha585', 'en', 1, 'https://ror.org/03cfha585 WSP (New Zealand)'),
(99301, 'https://ror.org/00b6sbq93', 'en', 1, 'https://ror.org/00b6sbq93 Emmanuel University'),
(99302, 'https://ror.org/05xzdtn10', 'es', 1, 'https://ror.org/05xzdtn10 CIRCE - Centro Tecnológico CIRCE - Technology Centre'),
(99303, 'https://ror.org/00r3bk393', 'en', 1, 'https://ror.org/00r3bk393 Pratiksha Institute of Pharmaceutical Sciences'),
(99304, 'https://ror.org/03x2amr67', 'en', 1, 'https://ror.org/03x2amr67 Jiangsu Frontier Electric Technology Co., Ltd. Jiangsu Frontier Electric Technology Co., Ltd. (China) ę±Ÿč‹ę–¹å¤©ē”µåŠ›ęŠ€ęœÆęœ‰é™å…¬åø'),
(99305, 'https://ror.org/00vkt8a90', 'en', 1, 'https://ror.org/00vkt8a90 Red Sea Global Red Sea Global (Saudi Arabia) البحر الأحمر Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(99306, 'https://ror.org/05ebfqk43', 'en', 1, 'https://ror.org/05ebfqk43 Institute of Geotechnics of the Slovak Academy of Sciences Ústav Geotechniky SlovenskÔ akadémia vied'),
(99307, 'https://ror.org/00thhhw55', 'en', 1, 'https://ror.org/00thhhw55 Iqra University'),
(99308, 'https://ror.org/04jgqpc26', 'en', 1, 'https://ror.org/04jgqpc26 Institute of Informatics of the Slovak Academy of Sciences Ustav Informatiky SlovenskƔ akadƩmia vied'),
(99309, 'https://ror.org/02j69wt57', 'no_lang_code', 1, 'https://ror.org/02j69wt57 PetroChina Southwest Oil and Gas Field Company (China) äø­å›½ēŸ³ę²¹č„æå—ę²¹ę°”ē”°åˆ†å…¬åø'),
(99310, 'https://ror.org/052dxv585', 'en', 1, 'https://ror.org/052dxv585 Concord University College Fujian Normal University ē¦å»ŗåøˆčŒƒå¤§å­¦åå’Œå­¦é™¢'),
(99311, 'https://ror.org/03gnr7b55', 'fr', 1, 'https://ror.org/03gnr7b55 Nantes UniversitƩ'),
(99312, 'https://ror.org/0166hxq48', 'en', 0, 'https://ror.org/0166hxq48 Ministero dell''Istruzione, dell''UniversitĆ  e della Ricerca Ministry of Education, Universities and Research'),
(99313, 'https://ror.org/04gb9ay54', 'en', 1, 'https://ror.org/04gb9ay54 Hai Phong University of Management and Technology TrĘ°į»ng ĐẔi hį»c Quįŗ£n lý vĆ  CĆ“ng nghệ Hįŗ£i Phòng'),
(99314, 'https://ror.org/02w7mv457', 'pt', 1, 'https://ror.org/02w7mv457 Sociedade Brasileira de Estudos em Sexualidade Humana'),
(99315, 'https://ror.org/01fem2359', 'en', 1, 'https://ror.org/01fem2359 Maryland Department of Natural Resources'),
(99316, 'https://ror.org/03zd3ta61', 'en', 1, 'https://ror.org/03zd3ta61 Shanxi Normal University'),
(99317, 'https://ror.org/054bqyk98', 'pt', 1, 'https://ror.org/054bqyk98 Centro de Estudos Jurídicos Celso Barroso Leite da Associação Nacional dos Procuradores e Advogados Públicos Federais'),
(99318, 'https://ror.org/04f50n919', 'fr', 1, 'https://ror.org/04f50n919 Stress, Immunity, Pathogens Stress, immunité, pathogènes'),
(99319, 'https://ror.org/01866ja76', 'en', 1, 'https://ror.org/01866ja76 Bentham Science Publishers Bentham Science Publishers (United Arab Emirates)'),
(99320, 'https://ror.org/04nfhy837', 'en', 1, 'https://ror.org/04nfhy837 Hong Kong Baptist Hospital'),
(99321, 'https://ror.org/048nq7g61', 'fr', 0, 'https://ror.org/048nq7g61 Centre National de CrƩation Musicale'),
(99322, 'https://ror.org/0459q5x08', 'en', 1, 'https://ror.org/0459q5x08 Source International Source International ETS'),
(99323, 'https://ror.org/029n7d640', 'fr', 1, 'https://ror.org/029n7d640 Agro-Biotechnologies Industrielles'),
(99324, 'https://ror.org/01c7rrt10', 'en', 1, 'https://ror.org/01c7rrt10 Institute of Parasitology of the Slovak Academy of Sciences Parazitologický ústav a biotechnológií rastlín SlovenskÔ akadémia vied'),
(99325, 'https://ror.org/05nsxg298', 'en', 1, 'https://ror.org/05nsxg298 Avangrid Renewables'),
(99326, 'https://ror.org/0546eya52', 'pt', 1, 'https://ror.org/0546eya52 Corpo de Bombeiros Militar de Minas Gerais'),
(99327, 'https://ror.org/034bxn811', 'en', 1, 'https://ror.org/034bxn811 Bureau of Economic Geology'),
(99328, 'https://ror.org/0108pa280', 'es', 1, 'https://ror.org/0108pa280 Centro para el Control Estatal de Medicamentos, Equipos y Dispositivos MƩdicos'),
(99329, 'https://ror.org/038kghk15', 'ca', 1, 'https://ror.org/038kghk15 Hospital de Figueres'),
(99330, 'https://ror.org/004pv5w59', 'en', 1, 'https://ror.org/004pv5w59 Archeologický ústav SlovenskÔ akadémia vied Institute of Archaeology of the Slovak Academy of Sciences'),
(99331, 'https://ror.org/05nyf1y15', 'pt', 1, 'https://ror.org/05nyf1y15 Instituto Nacional de Traumatologia e Ortopedia'),
(99332, 'https://ror.org/01r7qvp68', 'ca', 1, 'https://ror.org/01r7qvp68 Institut de Recerca Glòria Compte'),
(99333, 'https://ror.org/01752qx54', 'en', 1, 'https://ror.org/01752qx54 Plaksha University'),
(99334, 'https://ror.org/048zcaj52', 'en', 1, 'https://ror.org/048zcaj52 Charles Darwin University'),
(99335, 'https://ror.org/00pv6h884', 'id', 1, 'https://ror.org/00pv6h884 Universitas Muhammadiyah Banjarmasin'),
(99336, 'https://ror.org/010tdjz06', 'en', 1, 'https://ror.org/010tdjz06 Institute of Landscape Ecology of the Slovak Academy of Sciences Ústav krajinnej ekológie SlovenskÔ akadémia vied'),
(99337, 'https://ror.org/02225fd27', 'pt', 1, 'https://ror.org/02225fd27 Instituto Federal de Educação, Ciência e Tecnologia do CearÔ'),
(99338, 'https://ror.org/01z0w8p93', 'en', 1, 'https://ror.org/01z0w8p93 Tomsk National Research Medical Center Томский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский центр'),
(99339, 'https://ror.org/011pqxa69', 'fr', 1, 'https://ror.org/011pqxa69 UniversitƩ du QuƩbec en Outaouais'),
(99340, 'https://ror.org/02gkw1y06', 'en', 1, 'https://ror.org/02gkw1y06 Evidence Based Medicine Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ پزؓکی Ł…ŲØŲŖŁ†ŪŒ ŲØŲ± Ų“ŁˆŲ§Ł‡ŲÆ'),
(99341, 'https://ror.org/05fn63v39', 'en', 1, 'https://ror.org/05fn63v39 Institute of Oriental Studies of the Slovak Academy of Sciences Ústav orientalistiky SlovenskÔ akadémia vied'),
(99342, 'https://ror.org/00nga8w52', 'en', 1, 'https://ror.org/00nga8w52 Nepal Orthopaedic Hospital'),
(99343, 'https://ror.org/00wbse129', 'fr', 1, 'https://ror.org/00wbse129 Sciences de l''AntiquitƩ et du Moyen-Age'),
(99344, 'https://ror.org/04m8t3f14', 'it', 1, 'https://ror.org/04m8t3f14 Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Udine'),
(99345, 'https://ror.org/00kmde975', 'pt', 1, 'https://ror.org/00kmde975 Instituto de CiĆŖncias Ambientais, QuĆ­micas e FarmacĆŖuticas'),
(99346, 'https://ror.org/01jqdqz10', 'no_lang_code', 1, 'https://ror.org/01jqdqz10 Sina Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų³ŪŒŁ†Ų§'),
(99347, 'https://ror.org/03m66j484', 'es', 1, 'https://ror.org/03m66j484 Instituto Tecnológico de LÔzaro CÔrdenas'),
(99348, 'https://ror.org/01ywyw124', 'en', 1, 'https://ror.org/01ywyw124 Institute of Plant Genetics and Biotechnology of the Slovak Academy of Sciences Ústav genetiky a biotechnológií rastlín SlovenskÔ akadémia vied'),
(99349, 'https://ror.org/022zbs961', 'fr', 1, 'https://ror.org/022zbs961 University of YaoundƩ I UniversitƩ de YaoundƩ I'),
(99350, 'https://ror.org/02wwrqj12', 'en', 1, 'https://ror.org/02wwrqj12 Aga Khan University'),
(99351, 'https://ror.org/02qnnz951', 'en', 1, 'https://ror.org/02qnnz951 University of Mons UniversitƩ de Mons'),
(99352, 'https://ror.org/05aba1p21', 'en', 1, 'https://ror.org/05aba1p21 St. Aloysius (Deemed to Be University)'),
(99353, 'https://ror.org/00earpg61', 'fr', 1, 'https://ror.org/00earpg61 Centre Paul Broca'),
(99354, 'https://ror.org/00b98jc42', 'en', 1, 'https://ror.org/00b98jc42 University of Al Dhaid Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų°ŁŠŲÆ'),
(99355, 'https://ror.org/054vayn55', 'ca', 0, 'https://ror.org/054vayn55 Consorci Institut D''Investigacions Biomediques August Pi I Sunyer'),
(99356, 'https://ror.org/00e8hwt93', 'fr', 1, 'https://ror.org/00e8hwt93 Laboratoire lorrain de psychologie et neurosciences de la dynamique des comportements Lorraine Laboratory of Psychology and Neuroscience of Behavioral Dynamics'),
(99357, 'https://ror.org/03xkj6a08', 'en', 1, 'https://ror.org/03xkj6a08 Kent Scientific Corporation Kent Scientific Corporation (United States)'),
(99358, 'https://ror.org/001s04270', 'en', 1, 'https://ror.org/001s04270 Endocrinology and Metabolism Molecular-Cellular Sciences Institute Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… Ų³Ł„ŁˆŁ„ŪŒ و Ł…ŁˆŁ„Ś©ŁˆŁ„ŪŒ ŲŗŲÆŲÆ'),
(99359, 'https://ror.org/02nkrnd53', 'en', 1, 'https://ror.org/02nkrnd53 NSF Unidata'),
(99360, 'https://ror.org/04hpbsh69', 'es', 1, 'https://ror.org/04hpbsh69 Unidad Funcional de Investigación de Enfermedades Crónicas'),
(99361, 'https://ror.org/022efad20', 'en', 1, 'https://ror.org/022efad20 University of GabĆØs UniversitĆ© de gabĆØs Ų¬Ų§Ł…Ų¹Ų© قابس'),
(99362, 'https://ror.org/04gnjpq42', 'en', 1, 'https://ror.org/04gnjpq42 National and Kapodistrian University of Athens UniversitĆ© nationale et capodistrienne d''athĆØnes Ī•ĪøĪ½Ī¹ĪŗĻŒ και ĪšĪ±Ļ€ĪæĪ“Ī¹ĻƒĻ„ĻĪ¹Ī±ĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(99363, 'https://ror.org/00ax71d21', 'en', 1, 'https://ror.org/00ax71d21 Obuda University Universitas Budensis UniversitƤt Ɠbuda Ɠbudai Egyetem'),
(99364, 'https://ror.org/0588pbz68', 'en', 1, 'https://ror.org/0588pbz68 Institute of Experimental Pharmacology and Toxicology of the Slovak Academy of Sciences Ústav experimentÔlnej farmakológie a toxikológie SlovenskÔ akadémia vied'),
(99365, 'https://ror.org/0034tbg85', 'en', 1, 'https://ror.org/0034tbg85 Larbi Ben M''hidi University of Oum El Bouaghi Ų¬Ų§Ł…Ų¹Ų© أم Ų§Ł„ŲØŁˆŲ§Ł‚ŁŠ'),
(99366, 'https://ror.org/00kysjz64', 'en', 1, 'https://ror.org/00kysjz64 Technical University "Metinvest Polytechnic" LLC'),
(99367, 'https://ror.org/01hykfk44', 'es', 1, 'https://ror.org/01hykfk44 Centro de Investigación en Ciencias Atómicas, Nucleares y Moleculares'),
(99368, 'https://ror.org/00ayvpa66', 'en', 1, 'https://ror.org/00ayvpa66 Botanický ústav SlovenskÔ akadémia vied Institute of Botany of the Slovak Academy of Sciences'),
(99369, 'https://ror.org/03s9fqn10', 'en', 1, 'https://ror.org/03s9fqn10 Institute of State and Law of the Slovak Academy of Sciences Ústav ŔtÔtu a prÔva SlovenskÔ akadémia vied'),
(99370, 'https://ror.org/01fphns57', 'de', 1, 'https://ror.org/01fphns57 Lahn-Dill District Lahn-Dill-Kreis'),
(99371, 'https://ror.org/0430z0381', 'en', 1, 'https://ror.org/0430z0381 Endocrinology and Metabolism Clinical Sciences Institute Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… ŲØŲ§Ł„ŪŒŁ†ŪŒ ŲŗŲÆŲÆ'),
(99372, 'https://ror.org/02jjdwm75', 'en', 1, 'https://ror.org/02jjdwm75 IE Universidad IE University'),
(99373, 'https://ror.org/03cx6bg69', 'en', 1, 'https://ror.org/03cx6bg69 Ethnicon Metsovion Polytechnion National Technical University of Athens Ɖcole polytechnique d''athĆØnes Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪœĪµĻ„ĻƒĻŒĪ²Ī¹Īæ Πολυτεχνείο'),
(99374, 'https://ror.org/02rt1qz74', 'en', 1, 'https://ror.org/02rt1qz74 Elektrotechnický ústav SlovenskÔ akadémia vied Institute of Electrical Engineering of the Slovak Academy of Sciences'),
(99375, 'https://ror.org/02kry3y94', 'es', 1, 'https://ror.org/02kry3y94 Tecnológico de Estudios Superiores de JocotitlÔn'),
(99376, 'https://ror.org/006d30594', 'tr', 1, 'https://ror.org/006d30594 Nobel Tip Kitabevleri'),
(99377, 'https://ror.org/04pgf7495', 'en', 1, 'https://ror.org/04pgf7495 Digestive Disease Research Institute Tehran University of Medical Sciences Digestive Disease Research Center Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ ŲØŪŒŁ…Ų§Ų±ŪŒ Ł‡Ų§ŪŒ گوارؓ و کبد دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تهران'),
(99378, 'https://ror.org/02gmwvg31', 'en', 1, 'https://ror.org/02gmwvg31 Japan Fisheries Research and Education Agency å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę°“ē”£ē ”ē©¶ćƒ»ę•™č‚²ę©Ÿę§‹'),
(99379, 'https://ror.org/03qvrwv32', 'nl', 1, 'https://ror.org/03qvrwv32 Gemeente Maastricht'),
(99380, 'https://ror.org/01nksas32', 'en', 1, 'https://ror.org/01nksas32 Adeyemi Federal University of Education, Ondo, Nigeria'),
(99381, 'https://ror.org/02bkw1m29', 'en', 1, 'https://ror.org/02bkw1m29 International Laboratory on Learning Systems'),
(99382, 'https://ror.org/03kjyy960', 'es', 1, 'https://ror.org/03kjyy960 Institute of Biomedicine and Molecular Genetics of Valladolid Instituto de Biomedicina y GenƩtica Molecular de Valladolid'),
(99383, 'https://ror.org/05k1tzr49', 'en', 1, 'https://ror.org/05k1tzr49 Pharmaceutical Quality Assurance Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲŖŲ¶Ł…ŪŒŁ† کیفیت دارو'),
(99384, 'https://ror.org/03hg78m70', 'id', 1, 'https://ror.org/03hg78m70 Institut Parahikma Indonesia'),
(99385, 'https://ror.org/0479kf329', 'it', 1, 'https://ror.org/0479kf329 Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Alessandria'),
(99386, 'https://ror.org/05ht0mh31', 'en', 1, 'https://ror.org/05ht0mh31 University of Udine UniversitƠ degli Studi di Udine UniversitƤt Udine Univerza v Vidmu'),
(99387, 'https://ror.org/018ndmv91', 'ca', 0, 'https://ror.org/018ndmv91 Fundació Privada Clínic per a La Recerca Biomèdica'),
(99388, 'https://ror.org/025er3q23', 'fr', 1, 'https://ror.org/025er3q23 Ministère des Armées'),
(99389, 'https://ror.org/04d9kk613', 'en', 1, 'https://ror.org/04d9kk613 Iranian Research Center for HIV/AIDS مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ایدز Ų§ŪŒŲ±Ų§Ł†'),
(99390, 'https://ror.org/002b8we25', 'en', 1, 'https://ror.org/002b8we25 Center for Water Quality Research مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ کیفیت Ų¢ŲØ'),
(99391, 'https://ror.org/01r7awg59', 'en', 1, 'https://ror.org/01r7awg59 University of Guelph UniversitƩ de guelph'),
(99392, 'https://ror.org/008ztmr80', 'en', 1, 'https://ror.org/008ztmr80 Indian Institute of Management Sambalpur'),
(99393, 'https://ror.org/05ynctv81', 'es', 1, 'https://ror.org/05ynctv81 Corporación Universitaria Lasallista'),
(99394, 'https://ror.org/04pzh0a71', 'en', 1, 'https://ror.org/04pzh0a71 Ba Ria - Vung Tau College of Engineering and Technology TrĘ°į»ng Cao đẳng Kỹ thuįŗ­t CĆ“ng nghệ BĆ  Rịa - VÅ©ng TĆ u'),
(99395, 'https://ror.org/032dxr958', 'pt', 1, 'https://ror.org/032dxr958 Instituto para os Comportamentos Aditivos e as DependĆŖncias, I.P.'),
(99396, 'https://ror.org/03ydhsz75', 'en', 1, 'https://ror.org/03ydhsz75 Ergolight ××Ø×’×•×œ×™×™×˜'),
(99397, 'https://ror.org/03vn0fp34', 'ca', 1, 'https://ror.org/03vn0fp34 Fundació Salut Empordà'),
(99398, 'https://ror.org/03mw46n78', 'ca', 0, 'https://ror.org/03mw46n78 Fundació Clínic per a la Recerca Biomèdica'),
(99399, 'https://ror.org/0281zft76', 'en', 1, 'https://ror.org/0281zft76 Endocrine & Metabolism Research Institute Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų¹Ł„ŁˆŁ… ŲŗŲÆŲÆ و Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŲ³Ł…'),
(99400, 'https://ror.org/00xe6p546', 'en', 1, 'https://ror.org/00xe6p546 University of Guelma Ų¬Ų§Ł…Ų¹Ų© 8 Ł…Ų§ŁŠ 45-قالمة'),
(99401, 'https://ror.org/05nzy4r85', 'es', 1, 'https://ror.org/05nzy4r85 Instituto de Investigacion Traslacional y Biotransversal Ayru'),
(99402, 'https://ror.org/04690an59', 'en', 1, 'https://ror.org/04690an59 Personalized Medicine Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ پزؓکی فردی'),
(99403, 'https://ror.org/01ze79k90', 'en', 1, 'https://ror.org/01ze79k90 Research and Environmental Education Foundation'),
(99404, 'https://ror.org/05jjhy865', 'en', 1, 'https://ror.org/05jjhy865 Jan Stanislav Institute of Slavistics of the Slovak Academy of Sciences Slavistický ústav JÔna Stanislava SlovenskÔ akadémia vied'),
(99405, 'https://ror.org/01t2txb87', 'en', 1, 'https://ror.org/01t2txb87 Open Science Community Iraq Ł…Ų¬ŲŖŁ…Ų¹ Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų© العراق'),
(99406, 'https://ror.org/05p85rs79', 'en', 1, 'https://ror.org/05p85rs79 Ohio Department of Natural Resources'),
(99407, 'https://ror.org/03n6x9902', 'en', 1, 'https://ror.org/03n6x9902 VCCT Inc. (Japan)'),
(99408, 'https://ror.org/01w4ywr53', 'en', 1, 'https://ror.org/01w4ywr53 Pharmaceutical Management and Economics Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اقتصاد و Ł…ŲÆŪŒŲ±ŪŒŲŖ دارو'),
(99409, 'https://ror.org/05gsbkp40', 'en', 1, 'https://ror.org/05gsbkp40 Cancer Council NSW');
INSERT INTO `rors` VALUES
(99410, 'https://ror.org/025mhc977', 'fr', 1, 'https://ror.org/025mhc977 Diagnosis and International Adaptive Imaging Imagerie Adaptative Diagnostique et Interventionnelle'),
(99411, 'https://ror.org/00dnr1h67', 'en', 1, 'https://ror.org/00dnr1h67 Institute of Criminology and Social Prevention'),
(99412, 'https://ror.org/05f3azh29', 'es', 1, 'https://ror.org/05f3azh29 Instituto Tecnologico de Nuevo Laredo'),
(99413, 'https://ror.org/041xac353', 'en', 1, 'https://ror.org/041xac353 Metabolic Diseases Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اختلالات Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŚ©'),
(99414, 'https://ror.org/016dc4c80', 'fr', 1, 'https://ror.org/016dc4c80 ArmƩe de terre'),
(99415, 'https://ror.org/05yn67m85', 'en', 1, 'https://ror.org/05yn67m85 VIB Single Cell Core'),
(99416, 'https://ror.org/0046rz373', 'en', 1, 'https://ror.org/0046rz373 Institute of Experimental Physics of the Slovak Academy of Sciences Ústav ExperimentÔlnej Fyziky SlovenskÔ akadémia vied'),
(99417, 'https://ror.org/03dx8n755', 'en', 1, 'https://ror.org/03dx8n755 Medical Center "LORIMED" LLC'),
(99418, 'https://ror.org/05ky62v64', 'en', 1, 'https://ror.org/05ky62v64 Region of Attica'),
(99419, 'https://ror.org/01876xy81', 'en', 1, 'https://ror.org/01876xy81 Washington Department of Natural Resources'),
(99420, 'https://ror.org/043rfqs46', 'en', 1, 'https://ror.org/043rfqs46 Third Geological Brigade of Hubei Geological Bureau'),
(99421, 'https://ror.org/00vywdr32', 'en', 1, 'https://ror.org/00vywdr32 InŔtitut za hmeljarstvo in pivovarstvo Slovenije Slovenian Institute of Hop Research and Brewing'),
(99422, 'https://ror.org/03jb68d62', 'es', 1, 'https://ror.org/03jb68d62 IEEG Instituto Electoral del Estado de Guanajuato'),
(99423, 'https://ror.org/01d2r8q06', 'en', 1, 'https://ror.org/01d2r8q06 Archaeological Museum in Zagreb'),
(99424, 'https://ror.org/040bmjj59', 'en', 1, 'https://ror.org/040bmjj59 Radiant Earth'),
(99425, 'https://ror.org/039sqht39', 'en', 1, 'https://ror.org/039sqht39 BitsLab BitsLab (Singapore)'),
(99426, 'https://ror.org/05gdfay69', 'en', 0, 'https://ror.org/05gdfay69 Portsmouth College'),
(99427, 'https://ror.org/0471cyx86', 'fr', 1, 'https://ror.org/0471cyx86 Microbiologie de l’alimentation au service de la santĆ©'),
(99428, 'https://ror.org/04af1jj69', 'en', 1, 'https://ror.org/04af1jj69 Jednota slovenských matematikov a fyzikov Union of Slovak Mathematicians and Physicists'),
(99429, 'https://ror.org/020azc393', 'fr', 1, 'https://ror.org/020azc393 Laboratoire Lorrain de Chimie MolƩculaire'),
(99430, 'https://ror.org/03x2zja03', 'de', 1, 'https://ror.org/03x2zja03 Deutscher Fachverband für Agroforstwirtschaft Deutscher Fachverband für Agroforstwirtschaft e.V. German Association for Agroforestry'),
(99431, 'https://ror.org/01hntn815', 'fr', 1, 'https://ror.org/01hntn815 Research Team on Innovation Process Ɖquipe de Recherche sur les Processus Innovatifs'),
(99432, 'https://ror.org/00nh9re35', 'de', 1, 'https://ror.org/00nh9re35 Hessisches Landesarchiv'),
(99433, 'https://ror.org/00780az30', 'fr', 1, 'https://ror.org/00780az30 MathƩmatiques et Informatique AppliquƩes'),
(99434, 'https://ror.org/05sd9a193', 'en', 1, 'https://ror.org/05sd9a193 Zero Waste Scotland'),
(99435, 'https://ror.org/013w1n936', 'da', 1, 'https://ror.org/013w1n936 Velux Fonden'),
(99436, 'https://ror.org/03f4xj038', 'fr', 1, 'https://ror.org/03f4xj038 Laboratoire Dynamique de la BiodiversitƩ'),
(99437, 'https://ror.org/01rpe9k96', 'tr', 1, 'https://ror.org/01rpe9k96 Tokat Gaziosmanpaşa Üniversitesi'),
(99438, 'https://ror.org/02rdy2081', 'en', 1, 'https://ror.org/02rdy2081 Austrian Atherosclerosis Society Ɩsterreichischen Atherosklerosegesellschaft'),
(99439, 'https://ror.org/05n8c7s13', 'en', 1, 'https://ror.org/05n8c7s13 FOCUS Strategic Thinking Consultants'),
(99440, 'https://ror.org/029gycz42', 'en', 1, 'https://ror.org/029gycz42 World Bladder Cancer Patient Coalition World Bladder Cancer Patient Coalition aisbl'),
(99441, 'https://ror.org/04q8h6b75', 'pt', 1, 'https://ror.org/04q8h6b75 Brazilian School of Public and Business Administration Escola Brasileira de Administração Pública e de Empresas'),
(99442, 'https://ror.org/0517k6d93', 'en', 1, 'https://ror.org/0517k6d93 Jazykovedný ústav Ľudovíta Štúra SlovenskÔ akadémia vied Ludovit Stur Institute of Linguistics of the Slovak Academy of Sciences'),
(99443, 'https://ror.org/05nxsdg44', 'pt', 1, 'https://ror.org/05nxsdg44 Escola de SaĆŗde PĆŗblica do Distrito Federal'),
(99444, 'https://ror.org/00qknf621', 'en', 1, 'https://ror.org/00qknf621 Institute of World Literature of the Slovak Academy of Sciences Ústav etnológie a sociÔlnej antropológie SlovenskÔ akadémia vied'),
(99445, 'https://ror.org/02pns0q27', 'pt', 1, 'https://ror.org/02pns0q27 Associação Nacional dos Procuradores e Advogados Públicos Federais'),
(99446, 'https://ror.org/042pvpr51', 'fr', 1, 'https://ror.org/042pvpr51 CollĆØge de Bois-de-Boulogne'),
(99447, 'https://ror.org/0388g9052', 'en', 1, 'https://ror.org/0388g9052 Institute of Political Science of the Slovak Academy of Sciences Ústav politických vied SlovenskÔ akadémia vied'),
(99448, 'https://ror.org/00dyx6f45', 'en', 1, 'https://ror.org/00dyx6f45 Thoth Open Metadata'),
(99449, 'https://ror.org/01h6hv014', 'fr', 1, 'https://ror.org/01h6hv014 HƓpital Saint-Julien'),
(99450, 'https://ror.org/02a0c6v45', 'en', 1, 'https://ror.org/02a0c6v45 Centre for Digital Humanities'),
(99451, 'https://ror.org/03gcbhc33', 'fr', 1, 'https://ror.org/03gcbhc33 IFP Ɖnergies nouvelles Institut FranƧais du PĆ©trole'),
(99452, 'https://ror.org/02ambj410', 'de', 1, 'https://ror.org/02ambj410 ai-quanton GmbH'),
(99453, 'https://ror.org/01mp6rr09', 'en', 1, 'https://ror.org/01mp6rr09 Occupational Sleep Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اختلالات خواب Ų“ŲŗŁ„ŪŒ'),
(99454, 'https://ror.org/033hgcp80', 'en', 1, 'https://ror.org/033hgcp80 Dezful University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ ŲÆŲ²ŁŁˆŁ„'),
(99455, 'https://ror.org/03thkvp68', 'fr', 1, 'https://ror.org/03thkvp68 Institut franƧais Deutschland'),
(99456, 'https://ror.org/05dmpgb12', 'es', 1, 'https://ror.org/05dmpgb12 Centro Mexicano para la Producción mÔs Limpia'),
(99457, 'https://ror.org/05q2p2431', 'en', 1, 'https://ror.org/05q2p2431 Guangdong Polytechnic of Industry and Commerce å»£ę±å·„č²æč·ę„­ęŠ€č”“å­øé™¢'),
(99458, 'https://ror.org/039pzq605', 'en', 1, 'https://ror.org/039pzq605 Nozaki Tokushukai Hospital é‡Žå“Žå¾³ę“²ä¼šē—…é™¢'),
(99459, 'https://ror.org/01fem7p07', 'es', 1, 'https://ror.org/01fem7p07 Unión Médica Clínica Universitaria'),
(99460, 'https://ror.org/05508dt35', 'en', 1, 'https://ror.org/05508dt35 Craniomaxillofacial Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ جراحی Ł‡Ų§ŪŒ فک و صورت'),
(99461, 'https://ror.org/01r2hzx74', 'en', 1, 'https://ror.org/01r2hzx74 Biosensor Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁˆŲ³Ł†Ų³ŁˆŲ±'),
(99462, 'https://ror.org/05wc2hs84', 'es', 1, 'https://ror.org/05wc2hs84 Instituto Tecnológico Superior de Huauchinango'),
(99463, 'https://ror.org/00k2x0z20', 'en', 1, 'https://ror.org/00k2x0z20 Malawi College of Forestry and Wildlife'),
(99464, 'https://ror.org/01ps88w74', 'es', 1, 'https://ror.org/01ps88w74 Instituto Superior de Educación Normal del Estado de Colima "Profr. Gregorio Torres Quintero"'),
(99465, 'https://ror.org/00htrq823', 'en', 1, 'https://ror.org/00htrq823 Filozofický ústav SlovenskÔ akadémia vied Institute of Philosophy of the Slovak Academy of Sciences'),
(99466, 'https://ror.org/01e3jg024', 'es', 1, 'https://ror.org/01e3jg024 BenemƩrita Escuela Normal Urbana "Profr. Domingo Carballo FƩlix"'),
(99467, 'https://ror.org/01kwx4m12', 'fr', 1, 'https://ror.org/01kwx4m12 Groupe de Recherche en Ɖnergie Ɖlectrique de Nancy'),
(99468, 'https://ror.org/05b5a6q69', 'en', 1, 'https://ror.org/05b5a6q69 Institute for Forecasting of the Slovak Academy of Sciences Prognostický ústav SlovenskÔ akadémia vied'),
(99469, 'https://ror.org/02skb4169', 'en', 1, 'https://ror.org/02skb4169 Huayun Sounding Meteorological Technology Co. Ltd. Huayun Sounding Meteorological Technology Co. Ltd. (China) åŽäŗ‘å‡č¾¾ļ¼ˆåŒ—äŗ¬ļ¼‰ę°”č±”ē§‘ęŠ€ęœ‰é™č“£ä»»å…¬åø'),
(99470, 'https://ror.org/01zk01k31', 'en', 1, 'https://ror.org/01zk01k31 City of Portsmouth College'),
(99471, 'https://ror.org/02wefvw09', 'pt', 0, 'https://ror.org/02wefvw09 Serviço de Intervenção nos Comportamentos Aditivos e nas Dependências'),
(99472, 'https://ror.org/020dmyn61', 'en', 1, 'https://ror.org/020dmyn61 EMERGREEN'),
(99473, 'https://ror.org/035cp7g76', 'en', 1, 'https://ror.org/035cp7g76 Ohio Division of Geological Survey'),
(99474, 'https://ror.org/03k8h3h23', 'en', 1, 'https://ror.org/03k8h3h23 Local Contexts Local Contexts Inc.'),
(99475, 'https://ror.org/03fvq2a72', 'en', 1, 'https://ror.org/03fvq2a72 Czech Academy of Sciences, Institute of Thermomechanics Ústav termomechaniky AV ČR Ústav termomechaniky AV ČR, v. v. i. Ústav termomechaniky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(99476, 'https://ror.org/034s44556', 'en', 1, 'https://ror.org/034s44556 Conseil International des Sciences International Science Council'),
(99477, 'https://ror.org/00mw3br24', 'en', 1, 'https://ror.org/00mw3br24 Institute for Environmental Research Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ł…Ų­ŪŒŲ· زیست'),
(99478, 'https://ror.org/05re01744', 'en', 0, 'https://ror.org/05re01744 Australasian Sarcoma Study Group'),
(99479, 'https://ror.org/00gdrb321', 'en', 1, 'https://ror.org/00gdrb321 Research Center for Chronic Inflammatory Diseases مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁ…Ų§Ų±ŪŒ Ł‡Ų§ŪŒ Ų§Ł„ŲŖŁ‡Ų§ŲØŪŒ مزمن'),
(99480, 'https://ror.org/047hdnt12', 'fr', 1, 'https://ror.org/047hdnt12 Institut FranƧais'),
(99481, 'https://ror.org/00n2c0309', 'fr', 1, 'https://ror.org/00n2c0309 ABSys'),
(99482, 'https://ror.org/02f9n2c91', 'en', 0, 'https://ror.org/02f9n2c91 Writtle University College'),
(99483, 'https://ror.org/038kx6574', 'no_lang_code', 0, 'https://ror.org/038kx6574 Intercell (Austria)'),
(99484, 'https://ror.org/05wwfbb42', 'fr', 1, 'https://ror.org/05wwfbb42 Ɖcole Nationale d''Administration Publique'),
(99485, 'https://ror.org/049kncf73', 'en', 1, 'https://ror.org/049kncf73 Aga Khan University Institute for Study of Muslim Civilisations'),
(99486, 'https://ror.org/05kar0v43', 'en', 1, 'https://ror.org/05kar0v43 Institute of Animal Physiology of the Slovak Academy of Sciences Ústav fyziológie hospodÔrskych zviera SlovenskÔ akadémia vied'),
(99487, 'https://ror.org/01h0ffh48', 'fr', 1, 'https://ror.org/01h0ffh48 Ɖcole Nationale SupĆ©rieure de Chimie de Rennes'),
(99488, 'https://ror.org/01bfpmc46', 'en', 1, 'https://ror.org/01bfpmc46 Association for Farmers Rights Defense įƒ¤įƒ”įƒ įƒ›įƒ”įƒ įƒ—įƒ įƒ£įƒ¤įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜įƒ” įƒ“įƒįƒŖįƒ•įƒ˜įƒ” įƒįƒ”įƒįƒŖįƒ˜įƒįƒŖįƒ˜įƒ'),
(99489, 'https://ror.org/05etrbr47', 'it', 1, 'https://ror.org/05etrbr47 Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Siena'),
(99490, 'https://ror.org/02d2p5z18', 'en', 1, 'https://ror.org/02d2p5z18 Institute of Slovak Literature of the Slovak Academy of Sciences Ústav svetovej literatúry SlovenskÔ akadémia vied'),
(99491, 'https://ror.org/00r4sry34', 'en', 1, 'https://ror.org/00r4sry34 Murdoch University'),
(99492, 'https://ror.org/05kzawq90', 'en', 1, 'https://ror.org/05kzawq90 Kharkiv University of Technology "STEP"'),
(99493, 'https://ror.org/02ddzfk73', 'pt', 1, 'https://ror.org/02ddzfk73 Agence spatiale brésilienne Agencia Espacial Brasileña Agência Espacial Brasileira Brazilian Space Agency'),
(99494, 'https://ror.org/03154ek65', 'en', 1, 'https://ror.org/03154ek65 Osteoporosis Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ استئوپروز'),
(99495, 'https://ror.org/02kv1d786', 'en', 1, 'https://ror.org/02kv1d786 13 Aban Pharmacy ŲÆŲ§Ų±ŁˆŲ®Ų§Ł†Ł‡ Ł‡Ų§ŪŒ دانؓکده داروسازی دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تهران'),
(99496, 'https://ror.org/01cbtr271', 'fr', 1, 'https://ror.org/01cbtr271 Ɖcole d''IngĆ©nieurs en Chimie et Sciences du NumĆ©rique'),
(99497, 'https://ror.org/04b2s0r81', 'en', 1, 'https://ror.org/04b2s0r81 Graw Radiosondes GmbH & Co. KG Graw Radiosondes GmbH & Co. KG (Germany)'),
(99498, 'https://ror.org/01cdy6h50', 'es', 1, 'https://ror.org/01cdy6h50 Universidad Central "Marta Abreu" de las Villas Universidad Central "Marta Abreu" de las Villas (UCLV) Universidad Central Marta Abreu de las Villas'),
(99499, 'https://ror.org/01z30xm65', 'en', 1, 'https://ror.org/01z30xm65 Research Institute of Natural Gas Technology äø­å›½ēŸ³ę²¹č„æå—ę²¹ę°”ē”°å…¬åøå¤©ē„¶ę°”ē ”ē©¶é™¢'),
(99500, 'https://ror.org/04t4pws42', 'en', 1, 'https://ror.org/04t4pws42 Institute of Molecular Life Sciences MolekulĆ”ris ƉlettudomĆ”nyi IntĆ©zetben'),
(99501, 'https://ror.org/02v8wkr26', 'en', 1, 'https://ror.org/02v8wkr26 Cancer Research Institute of the Slovak Academy of Sciences Ústav experimentalnej onkológie SlovenskÔ akadémia vied'),
(99502, 'https://ror.org/0152k1537', 'en', 1, 'https://ror.org/0152k1537 Sleep Breathing Disorders Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اختلالات ŲŖŁ†ŁŲ³ŪŒ Ų­ŪŒŁ† خواب'),
(99503, 'https://ror.org/01rxedt69', 'en', 1, 'https://ror.org/01rxedt69 Iowa Geological Survey'),
(99504, 'https://ror.org/05tm6j853', 'en', 1, 'https://ror.org/05tm6j853 Institute of Zoology of the Slovak Academy of Sciences Ústav zoológie SlovenskÔ akadémia vied'),
(99505, 'https://ror.org/016hqt997', 'en', 1, 'https://ror.org/016hqt997 Ziaeian Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¶ŪŒŲ§Ų¦ŪŒŲ§Ł†'),
(99506, 'https://ror.org/032wz9653', 'fr', 1, 'https://ror.org/032wz9653 AtmoSud'),
(99507, 'https://ror.org/05czpjv93', 'en', 1, 'https://ror.org/05czpjv93 Hekima University College'),
(99508, 'https://ror.org/05gvn0b94', 'pt', 1, 'https://ror.org/05gvn0b94 Faculdade Municipal de PalhoƧa'),
(99509, 'https://ror.org/02gbdnn14', 'id', 1, 'https://ror.org/02gbdnn14 Universitas Kiai Abdullah Faqih Gresik'),
(99510, 'https://ror.org/005ta0471', 'it', 1, 'https://ror.org/005ta0471 Istituto Nazionale di Fisica Nucleare National Institute for Nuclear Physics'),
(99511, 'https://ror.org/05ra1x588', 'en', 1, 'https://ror.org/05ra1x588 Institute of Normal and Pathological Physiology of the Slovak Academy of Sciences Ústav normÔlnej a patologickej fyziológie SlovenskÔ akadémia vied'),
(99512, 'https://ror.org/03zx86w41', 'fr', 1, 'https://ror.org/03zx86w41 ESPCI Paris Ecole SupƩrieure de Physique et de Chimie Industrielles de la Ville de Paris'),
(99513, 'https://ror.org/04hbgcp92', 'en', 1, 'https://ror.org/04hbgcp92 University of Blida 2'),
(99514, 'https://ror.org/05xpy2592', 'en', 1, 'https://ror.org/05xpy2592 Museum of Prague Muzeum hlavnƭho města Prahy'),
(99515, 'https://ror.org/03zwxja46', 'en', 1, 'https://ror.org/03zwxja46 HUN-REN Research Centre for Natural Sciences HUN-REN TermészettudomÔnyi Kutatóközpont'),
(99516, 'https://ror.org/01ry2dq39', 'es', 1, 'https://ror.org/01ry2dq39 Universidad Tecmilenio - Campus Veracruz'),
(99517, 'https://ror.org/009vyzb24', 'en', 1, 'https://ror.org/009vyzb24 Osh Technological University ŠžŠØ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜ŠÆŠ›Š«Šš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š˜ ŠžŠØŠ”ŠšŠ˜Š™ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•CŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(99518, 'https://ror.org/01wrzrg21', 'en', 1, 'https://ror.org/01wrzrg21 Institute of Molecular Biology of the Slovak Academy of Sciences Ústav molekulÔrnej biológie SlovenskÔ akadémia vied'),
(99519, 'https://ror.org/042f28677', 'en', 1, 'https://ror.org/042f28677 Tehran Heart Center مرکز قلب تهران'),
(99520, 'https://ror.org/03kqap970', 'es', 1, 'https://ror.org/03kqap970 Universidad de Oriente'),
(99521, 'https://ror.org/0397a5g27', 'en', 1, 'https://ror.org/0397a5g27 Concordia University Press'),
(99522, 'https://ror.org/02r6pfc06', 'en', 1, 'https://ror.org/02r6pfc06 Nnamdi Azikiwe University'),
(99523, 'https://ror.org/01a1nz002', 'en', 1, 'https://ror.org/01a1nz002 Institute of Experimental Endocrinology of the Slovak Academy of Sciences Ústav experimentÔlnej endokrinológie SlovenskÔ akadémia vied'),
(99524, 'https://ror.org/02fhy7464', 'en', 1, 'https://ror.org/02fhy7464 Matematický ústav Slovenskej akadémie vied Mathematical Institute of the Slovak Academy of Sciences'),
(99525, 'https://ror.org/01wqd6v19', 'fr', 1, 'https://ror.org/01wqd6v19 Institut Jean-Pierre Bourgin'),
(99526, 'https://ror.org/05p4hdr45', 'fr', 1, 'https://ror.org/05p4hdr45 Atmo Guyane'),
(99527, 'https://ror.org/02krvw113', 'en', 1, 'https://ror.org/02krvw113 Linux Foundation'),
(99528, 'https://ror.org/031ggcd89', 'en', 1, 'https://ror.org/031ggcd89 Sherubtse College ą½¤ą½ŗą½¦ą¼‹ą½¢ą½–ą¼‹ą½¢ą¾©ą½ŗą¼‹ą½˜ą½ą½¼ą¼‹ą½¢ą½²ą½˜ą¼‹ą½¦ą¾³ą½¼ą½–ą¼‹ą½‚ą¾²ą¾­ą¼'),
(99529, 'https://ror.org/05fnp1145', 'en', 1, 'https://ror.org/05fnp1145 Al-Azhar University'),
(99530, 'https://ror.org/00hzy8397', 'en', 1, 'https://ror.org/00hzy8397 Czech Academy of Sciences, Institute of State and Law Ústav stĆ”tu a prĆ”va AV ČR Ústav stĆ”tu a prĆ”va AV ČR, v. v. i. Ústav stĆ”tu a prĆ”va AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(99531, 'https://ror.org/02n2tgg58', 'en', 1, 'https://ror.org/02n2tgg58 Communication University of China, Nanjing å—äŗ¬ä¼ åŖ’å­¦é™¢'),
(99532, 'https://ror.org/005p9kw61', 'en', 1, 'https://ror.org/005p9kw61 New Mexico Institute of Mining and Technology Ɖcole des mines du nouveau-mexique'),
(99533, 'https://ror.org/04fevhe89', 'en', 1, 'https://ror.org/04fevhe89 Al Fajr College of Science and Technology ŁƒŁ„ŁŠŲ© الفجر Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(99534, 'https://ror.org/04ez3r306', 'en', 1, 'https://ror.org/04ez3r306 Wuhan Engineering Science & Technology Institute ę­¦ę±‰åø‚å·„ēØ‹ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(99535, 'https://ror.org/04vrgjp38', 'no_lang_code', 1, 'https://ror.org/04vrgjp38 WSP (Canada)'),
(99536, 'https://ror.org/00khnq787', 'en', 1, 'https://ror.org/00khnq787 Kamuzu University of Health Sciences'),
(99537, 'https://ror.org/054tbkd46', 'es', 1, 'https://ror.org/054tbkd46 Universidad Autónoma de Guerrero'),
(99538, 'https://ror.org/039qz7352', 'de', 1, 'https://ror.org/039qz7352 Institut für Wohnbauforschung'),
(99539, 'https://ror.org/04507gt97', 'en', 1, 'https://ror.org/04507gt97 Royal Botanic Gardens Victoria'),
(99540, 'https://ror.org/01fvbaw18', 'es', 1, 'https://ror.org/01fvbaw18 Universidad de Valladolid Universidade de Valladolid University of Valladolid Valladolideko Unibertsitatea'),
(99541, 'https://ror.org/0067sfd77', 'en', 1, 'https://ror.org/0067sfd77 Kuras Institute of Political and Ethnic Studies of the National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ політичних і ŠµŃ‚Š½Š¾Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ім. І.Ф. ŠšŃƒŃ€Š°ŃŠ° ŠŠŠ України'),
(99542, 'https://ror.org/03qq0n189', 'en', 1, 'https://ror.org/03qq0n189 Czech Acad Sci, Inst Slav Studies Czech Academy of Sciences, Institute of Slavonic Studies Institute of Slavonic Studies CAS Slovanský ústav AV ČR'),
(99543, 'https://ror.org/02emftt08', 'en', 1, 'https://ror.org/02emftt08 Alaska Department of Natural Resources'),
(99544, 'https://ror.org/05nqkay65', 'da', 1, 'https://ror.org/05nqkay65 Villum Fonden'),
(99545, 'https://ror.org/02yfsfh77', 'en', 1, 'https://ror.org/02yfsfh77 China National Botanical Garden å›½å®¶ę¤ē‰©å›­'),
(99546, 'https://ror.org/05teb7b63', 'en', 1, 'https://ror.org/05teb7b63 Fırat University Fırat Üniversitesi'),
(99547, 'https://ror.org/013vsg966', 'en', 1, 'https://ror.org/013vsg966 Republican Specialised Scientific and Practical Medical Centre of Eye Microsurgery'),
(99548, 'https://ror.org/01537wn74', 'en', 1, 'https://ror.org/01537wn74 Government of the Northern Territory'),
(99549, 'https://ror.org/03784zd57', 'en', 1, 'https://ror.org/03784zd57 Center for Marine Sciences and Technology'),
(99550, 'https://ror.org/01chn8516', 'en', 1, 'https://ror.org/01chn8516 Washington Geological Survey'),
(99551, 'https://ror.org/05x8v1903', 'en', 1, 'https://ror.org/05x8v1903 Alaska Division of Geological and Geophysical Surveys'),
(99552, 'https://ror.org/0341q1641', 'en', 1, 'https://ror.org/0341q1641 Berkeley Yeast'),
(99553, 'https://ror.org/05se23v32', 'en', 1, 'https://ror.org/05se23v32 Protestant University of Rwanda'),
(99554, 'https://ror.org/05qsgqc11', 'en', 1, 'https://ror.org/05qsgqc11 Institute of Musicology of the Slovak Academy of Sciences Ústav hudobnej vedy SlovenskÔ akadémia vied'),
(99555, 'https://ror.org/037d7yy80', 'en', 1, 'https://ror.org/037d7yy80 Rheumatology Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų±ŁˆŁ…Ų§ŲŖŁˆŁ„ŁˆŚ˜ŪŒ'),
(99556, 'https://ror.org/04r71qh72', 'en', 1, 'https://ror.org/04r71qh72 Health Equity Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ عدالت ŲÆŲ± سلامت'),
(99557, 'https://ror.org/04h3f3n10', 'en', 1, 'https://ror.org/04h3f3n10 Penobscot Marine Museum'),
(99558, 'https://ror.org/03aas9509', 'en', 1, 'https://ror.org/03aas9509 Vancouver School of Theology'),
(99559, 'https://ror.org/03vtagt31', 'fr', 1, 'https://ror.org/03vtagt31 Paris Jourdan Sciences Economiques'),
(99560, 'https://ror.org/01tpajh44', 'en', 1, 'https://ror.org/01tpajh44 Institute of Inorganic Chemistry of the Slovak Academy of Sciences Ústav anorganickej chémie SlovenskÔ akadémia vied'),
(99561, 'https://ror.org/00y4h0j70', 'en', 1, 'https://ror.org/00y4h0j70 Institute for Sociology of the Slovak Academy of Sciences Sociologický ústav SlovenskÔ akadémia vied'),
(99562, 'https://ror.org/01w9d9x36', 'en', 1, 'https://ror.org/01w9d9x36 IP Innovative Publication Pvt. Ltd. IP Innovative Publication Pvt. Ltd. (India)'),
(99563, 'https://ror.org/01zz9ka42', 'en', 0, 'https://ror.org/01zz9ka42 Highbury College'),
(99564, 'https://ror.org/00szawm58', 'fr', 1, 'https://ror.org/00szawm58 Polytech Tours'),
(99565, 'https://ror.org/04e7j0a18', 'en', 1, 'https://ror.org/04e7j0a18 Al-Hawash Private University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŁˆŲ§Ų“ الخاصة'),
(99566, 'https://ror.org/01zmhvm70', 'en', 1, 'https://ror.org/01zmhvm70 Nune Eye Hospital ėˆ„ė„¤ģ•ˆź³¼ė³‘ģ›'),
(99567, 'https://ror.org/00ca2c886', 'es', 1, 'https://ror.org/00ca2c886 Institute of Health Carlos III Instituto de Salud Carlos III'),
(99568, 'https://ror.org/0020snb74', 'fr', 1, 'https://ror.org/0020snb74 Ɖcole de Technologie SupĆ©rieure'),
(99569, 'https://ror.org/01drx8a35', 'en', 1, 'https://ror.org/01drx8a35 VNUHCM – High School for the Gifted'),
(99570, 'https://ror.org/05k52ca05', 'es', 1, 'https://ror.org/05k52ca05 Instituto Electoral del Estado de MƩxico'),
(99571, 'https://ror.org/04c4bm785', 'no_lang_code', 1, 'https://ror.org/04c4bm785 CGIAR'),
(99572, 'https://ror.org/05n7q5q24', 'en', 1, 'https://ror.org/05n7q5q24 Department of Primary Industry and Resources'),
(99573, 'https://ror.org/04t6wsp57', 'pt', 1, 'https://ror.org/04t6wsp57 Instituto de Estudos Avançados da Universidade de São Paulo'),
(99574, 'https://ror.org/03103ye85', 'de', 1, 'https://ror.org/03103ye85 ARDIG - ArchƤologischer Dienst GesmbH'),
(99575, 'https://ror.org/05ww3wq27', 'fr', 1, 'https://ror.org/05ww3wq27 HEC MontrĆ©al Ɖcole des Hautes Ɖtudes commerciales de MontrĆ©al'),
(99576, 'https://ror.org/04xxk1t48', 'en', 1, 'https://ror.org/04xxk1t48 Obesity and Eating Habits Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ś†Ų§Ł‚ŪŒ و Ų¹Ų§ŲÆŲ§ŲŖ غذایی'),
(99577, 'https://ror.org/02atkd403', 'fr', 1, 'https://ror.org/02atkd403 Laboratoire de Physique et Chimie ThƩoriques'),
(99578, 'https://ror.org/031qkz233', 'en', 1, 'https://ror.org/031qkz233 Shiseikai Daini Hospital č‡³čŖ ä¼šē¬¬äŗŒē—…é™¢'),
(99579, 'https://ror.org/01gkmhp75', 'en', 1, 'https://ror.org/01gkmhp75 Raparin Technical and Vocational Institute معهد Ų±Ų§ŲØŲ±ŁŠŁ† Ų§Ł„ŲŖŁ‚Ł†ŁŠ ŁˆŲ§Ł„Ł…Ł‡Ł†ŁŠ Ł¾Ū•ŪŒŁ…Ų§Ł†ŚÆŪ•ŪŒ ŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ و Ł¾ŪŒŲ“Ū•ŪŒ Ś•Ų§Ł¾Ū•Ś•ŪŒŁ†'),
(99580, 'https://ror.org/041rsh762', 'fr', 1, 'https://ror.org/041rsh762 INSA Hauts-de-France'),
(99581, 'https://ror.org/028btb530', 'en', 1, 'https://ror.org/028btb530 Endocrinology and Metabolism Population Sciences Institute Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… Ų¬Ł…Ų¹ŪŒŲŖŪŒ ŲŗŲÆŲÆ'),
(99582, 'https://ror.org/01a258x16', 'en', 1, 'https://ror.org/01a258x16 Northwest Association of Networked Ocean Observing Systems'),
(99583, 'https://ror.org/01a15g348', 'en', 1, 'https://ror.org/01a15g348 Bioversity International'),
(99584, 'https://ror.org/05c99rg80', 'es', 1, 'https://ror.org/05c99rg80 Universidad La Salle'),
(99585, 'https://ror.org/02hnc0643', 'en', 1, 'https://ror.org/02hnc0643 Veni Creator Christian University'),
(99586, 'https://ror.org/040r57n67', 'en', 1, 'https://ror.org/040r57n67 Centrum Astronomiczne im. Mikołaja Kopernika Nicolaus Copernicus Astronomical Center'),
(99587, 'https://ror.org/00hjhrf26', 'en', 1, 'https://ror.org/00hjhrf26 European Research University EvropskÔ výzkumnÔ univerzita, z.ú.'),
(99588, 'https://ror.org/03jvry011', 'de', 1, 'https://ror.org/03jvry011 Institut für Kultur- und Geistesgeschichte Asiens'),
(99589, 'https://ror.org/02g349121', 'en', 1, 'https://ror.org/02g349121 Southern California Coastal Ocean Observing System'),
(99590, 'https://ror.org/02rrajq79', 'es', 1, 'https://ror.org/02rrajq79 Universidad Tecnologica de Tlaxcala'),
(99591, 'https://ror.org/00j1zdb24', 'en', 1, 'https://ror.org/00j1zdb24 NRI Medical College'),
(99592, 'https://ror.org/03aba6h29', 'en', 1, 'https://ror.org/03aba6h29 Czech Academy of Sciences, Institute of Psychology Psychologický Ćŗstav AV ČR Psychologický Ćŗstav AV ČR, v. v. i. Psychologický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(99593, 'https://ror.org/0376rfz34', 'en', 1, 'https://ror.org/0376rfz34 TecMilenio University Universidad TecMilenio'),
(99594, 'https://ror.org/05ggc9x40', 'fr', 1, 'https://ror.org/05ggc9x40 Paris-Est CrƩteil University UniversitƩ Paris-Est CrƩteil'),
(99595, 'https://ror.org/00mqc8k54', 'fr', 1, 'https://ror.org/00mqc8k54 FƩdƩration de Chimie et MatƩriaux de Paris-Centre'),
(99596, 'https://ror.org/04fnna213', 'it', 1, 'https://ror.org/04fnna213 Istituto Pediatrico della Svizzera Italiana'),
(99597, 'https://ror.org/033b9jk32', 'es', 1, 'https://ror.org/033b9jk32 Universidad Tecnológica de la Sierra Hidalguense'),
(99598, 'https://ror.org/04tr8pt83', 'en', 1, 'https://ror.org/04tr8pt83 Czech Academy of Sciences, Oriental Institute OrientĆ”lnĆ­ Ćŗstav AV ČR OrientĆ”lnĆ­ Ćŗstav AV ČR, v. v. i. OrientĆ”lnĆ­ Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(99599, 'https://ror.org/05g02g987', 'en', 1, 'https://ror.org/05g02g987 Diabetes Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ دیابت'),
(99600, 'https://ror.org/00rwjvc96', 'en', 1, 'https://ror.org/00rwjvc96 Center for Environmental Economics - Montpellier Centre d''Economie de l''Environnement - Montpellier'),
(99601, 'https://ror.org/01zaqjt83', 'nl', 1, 'https://ror.org/01zaqjt83 CBG|Centrum voor familiegeschiedenis'),
(99602, 'https://ror.org/03bps0m03', 'en', 1, 'https://ror.org/03bps0m03 Wuhan University of Engineering Science ę­¦ę±‰å·„ēØ‹ē§‘ęŠ€å­¦é™¢'),
(99603, 'https://ror.org/01nfvkq89', 'fr', 1, 'https://ror.org/01nfvkq89 UMR QualiSud'),
(99604, 'https://ror.org/01y3dn551', 'en', 1, 'https://ror.org/01y3dn551 Institute of Ethnology and Social Anthropology of the Slovak Academy of Sciences Ústav etnológie a sociÔlnej antropológie SlovenskÔ akadémia vied'),
(99605, 'https://ror.org/01y7vje06', 'es', 1, 'https://ror.org/01y7vje06 Tribunal Electoral del Estado de MƩxico'),
(99606, 'https://ror.org/055j0y167', 'no_lang_code', 1, 'https://ror.org/055j0y167 T4D GmbH T4D GmbH (Switzerland) T4D.ch'),
(99607, 'https://ror.org/04mgz4b37', 'en', 1, 'https://ror.org/04mgz4b37 National Meanchey University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž‡įž¶įžįž·įž˜įž¶įž“įž‡įŸįž™'),
(99608, 'https://ror.org/05fv90q80', 'it', 1, 'https://ror.org/05fv90q80 Comune di Venezia'),
(99609, 'https://ror.org/04pmj7516', 'en', 1, 'https://ror.org/04pmj7516 CollĆØge d’enseignement gĆ©nĆ©ral et professionnel Dawson College'),
(99610, 'https://ror.org/03rzyjb72', 'fr', 1, 'https://ror.org/03rzyjb72 Centre de Recherche en Nutrition Humaine d''Auvergne'),
(99611, 'https://ror.org/03bndpq63', 'en', 1, 'https://ror.org/03bndpq63 Centre for Research and Technology Hellas Ethniko Kentro Erevnas Kai Technologikis Anaptyxis Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και Τεχνολογικής Ανάπτυξης'),
(99612, 'https://ror.org/054hyrm55', 'pt', 1, 'https://ror.org/054hyrm55 Escola de Economia de SĆ£o Paulo SĆ£o Paulo School of Economics'),
(99613, 'https://ror.org/047b6f797', 'fr', 1, 'https://ror.org/047b6f797 HƓpital Jeanne d''Arc'),
(99614, 'https://ror.org/02ew7mv78', 'en', 1, 'https://ror.org/02ew7mv78 MwAPATA Institute'),
(99615, 'https://ror.org/00jwcjd97', 'en', 0, 'https://ror.org/00jwcjd97 Marine Biodiversity Hub'),
(99616, 'https://ror.org/04gyqhp07', 'en', 1, 'https://ror.org/04gyqhp07 Nan Tien Institute'),
(99617, 'https://ror.org/02yzgww51', 'es', 1, 'https://ror.org/02yzgww51 Universidad de Costa Rica University of Costa Rica'),
(99618, 'https://ror.org/03wcbtz60', 'en', 1, 'https://ror.org/03wcbtz60 Climate Change and Health Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ تغیر Ų§Ł‚Ł„ŪŒŁ… و سلامت'),
(99619, 'https://ror.org/05d5m0x38', 'en', 1, 'https://ror.org/05d5m0x38 Pharmaceutical Incubators مرکز Ų±Ų“ŲÆ ŁŲ±Ų¢ŁˆŲ±ŲÆŁ‡ Ł‡Ų§ŪŒ دارویی'),
(99620, 'https://ror.org/0427wbh59', 'en', 1, 'https://ror.org/0427wbh59 Nune Eye Hospital'),
(99621, 'https://ror.org/033r0ft34', 'en', 1, 'https://ror.org/033r0ft34 Ocean Discovery League'),
(99622, 'https://ror.org/05r0ccb59', 'fr', 1, 'https://ror.org/05r0ccb59 Ɖcole Nationale des Travaux Publics de l''Ɖtat'),
(99623, 'https://ror.org/03adm0793', 'en', 1, 'https://ror.org/03adm0793 South China Business College Guangdong University of Foreign Studies å¹æäøœå¤–čÆ­å¤–č“øå¤§å­¦å—å›½å•†å­¦é™¢ ęˆæäøœå¤–čÆ­å¤–č“øå¤§å­¦å—å›½å•†å­øé™¢'),
(99624, 'https://ror.org/04fnmyb71', 'it', 1, 'https://ror.org/04fnmyb71 Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Parma National Institute for Nuclear Physics, Parma Unit'),
(99625, 'https://ror.org/03ep3q589', 'de', 1, 'https://ror.org/03ep3q589 Leibniz-Institut für Verbundwerkstoffe GmbH'),
(99626, 'https://ror.org/037xrmj59', 'es', 1, 'https://ror.org/037xrmj59 Universidad del Azuay University of Azuay'),
(99627, 'https://ror.org/020azk594', 'en', 1, 'https://ror.org/020azk594 Fujian Normal University ē¦å»ŗåøˆčŒƒå¤§å­¦'),
(99628, 'https://ror.org/035j24j42', 'no_lang_code', 0, 'https://ror.org/035j24j42 Wyeth'),
(99629, 'https://ror.org/05mw0zd11', 'en', 1, 'https://ror.org/05mw0zd11 Alaska Volcano Observatory Observatoire volcanologique d''alaska Observatorio Vulcanológico de Alaska'),
(99630, 'https://ror.org/027dxfy84', 'es', 1, 'https://ror.org/027dxfy84 Polytechnic University of the Gulf of Mexico Universidad PolitƩcnica del Golfo de MƩxico'),
(99631, 'https://ror.org/029fer260', 'en', 1, 'https://ror.org/029fer260 Institute of Materials Research of the Slovak Academy of Sciences Ústav materiÔlového výskumu SlovenskÔ akadémia vied'),
(99632, 'https://ror.org/05c516317', 'en', 1, 'https://ror.org/05c516317 Institute of Neuroimmunology of the Slovak Academy of Sciences Neuroimunologického ústavu SlovenskÔ akadémia vied'),
(99633, 'https://ror.org/00n0s9w57', 'en', 1, 'https://ror.org/00n0s9w57 Federal Government of Brazil'),
(99634, 'https://ror.org/02pad4n29', 'en', 1, 'https://ror.org/02pad4n29 Australia and New Zealand Sarcoma Association'),
(99635, 'https://ror.org/03k9q0e81', 'en', 1, 'https://ror.org/03k9q0e81 Soran University Ų²Ų§Ł†Ś©Ū†ŪŒ سۆران'),
(99636, 'https://ror.org/05qxq4371', 'en', 1, 'https://ror.org/05qxq4371 University of Alkafeel Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁŁŠŁ„'),
(99637, 'https://ror.org/00q8h8k29', 'es', 1, 'https://ror.org/00q8h8k29 Centro de Investigaciones en Optica'),
(99638, 'https://ror.org/00fhk4582', 'en', 1, 'https://ror.org/00fhk4582 Sri Lanka Institute of Information Technology ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶­ą·œą¶»ą¶­ą·”ą¶»ą·” ą¶­ą·ā€Œą¶šą·Šą·‚ą¶« ආයතනය'),
(99639, 'https://ror.org/01gk44f56', 'en', 1, 'https://ror.org/01gk44f56 Bryant University Universidad Bryant'),
(99640, 'https://ror.org/05ayv2203', 'en', 1, 'https://ror.org/05ayv2203 International AIDS Vaccine Initiative'),
(99641, 'https://ror.org/00taa2s29', 'en', 1, 'https://ror.org/00taa2s29 University of Tripoli UniversitĆ  di Tripoli Ų¬Ų§Ł…Ų¹Ų© طرابلس'),
(99642, 'https://ror.org/05aqyve98', 'en', 1, 'https://ror.org/05aqyve98 Ion Creangă Pedagogical State University Universitatea Pedagogică de Stat Ion Creangă din Chișinău Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Иона ŠšŃ€ŃŠ½Š³Ń'),
(99643, 'https://ror.org/040896072', 'en', 1, 'https://ror.org/040896072 Klinika za infektivne bolesti Dr. Fran Mihaljević University Hospital for Infectious Diseases "Dr Fran Mihaljevic"'),
(99644, 'https://ror.org/01cq23130', 'en', 1, 'https://ror.org/01cq23130 University of Memphis UniversitƩ de memphis'),
(99645, 'https://ror.org/04mnmkz07', 'en', 1, 'https://ror.org/04mnmkz07 JSS Science and Technology University ą²œą³†ą²Žą²øą³ą²Žą²øą³ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²®ą²¤ą³ą²¤ą³ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(99646, 'https://ror.org/02v2sn747', 'en', 1, 'https://ror.org/02v2sn747 IFTM University'),
(99647, 'https://ror.org/035qsg823', 'en', 1, 'https://ror.org/035qsg823 Udayana University Universitas Udayana'),
(99648, 'https://ror.org/05hnb7x64', 'fr', 1, 'https://ror.org/05hnb7x64 Bureau de Recherches Géologiques et Minières Geological and Mining Research Bureau'),
(99649, 'https://ror.org/00kg1aq11', 'en', 1, 'https://ror.org/00kg1aq11 University of Sialkot جامعہ Ų³ŪŒŲ§Ł„Ś©ŁˆŁ¹'),
(99650, 'https://ror.org/05nydfs77', 'en', 1, 'https://ror.org/05nydfs77 Dubai Medical College ŁƒŁ„ŁŠŲ© دبي Ų§Ł„Ų·ŲØŁŠŲ©'),
(99651, 'https://ror.org/022yres73', 'en', 1, 'https://ror.org/022yres73 Universidad de Atacama University of Atacama'),
(99652, 'https://ror.org/03rqbe322', 'en', 1, 'https://ror.org/03rqbe322 Centrum Dopravního Výzkumu Transport Research Centre'),
(99653, 'https://ror.org/007m3p006', 'en', 1, 'https://ror.org/007m3p006 Pratt Institute'),
(99654, 'https://ror.org/044hshx49', 'en', 1, 'https://ror.org/044hshx49 Centre for Human Drug Research'),
(99655, 'https://ror.org/02crev113', 'it', 1, 'https://ror.org/02crev113 Azienda Ospedaliero-Universitaria Careggi'),
(99656, 'https://ror.org/01fkzt617', 'en', 1, 'https://ror.org/01fkzt617 Belarusian State Economic University Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃŠŗŠ°Š½Š°Š¼Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99657, 'https://ror.org/02hmaq742', 'en', 1, 'https://ror.org/02hmaq742 Croatian Geological Survey'),
(99658, 'https://ror.org/03z4qet58', 'es', 1, 'https://ror.org/03z4qet58 Universidad Agraria del Ecuador'),
(99659, 'https://ror.org/045016w83', 'en', 1, 'https://ror.org/045016w83 Norwegian School of Sport Sciences'),
(99660, 'https://ror.org/00c0k8h59', 'it', 1, 'https://ror.org/00c0k8h59 Istituto Zooprofilattico Sperimentale Della Sicilia'),
(99661, 'https://ror.org/045v4z873', 'en', 1, 'https://ror.org/045v4z873 Chattogram Veterinary and Animal Sciences University ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦­ą§‡ą¦Ÿą§‡ą¦°ą¦æą¦Øą¦¾ą¦°ą¦æ ও ą¦ą¦Øą¦æą¦®ą§ą¦Æą¦¾ą¦² ą¦øą¦¾ą¦‡ą¦Øą§ą¦øą§‡ą¦ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(99662, 'https://ror.org/02kycr729', 'id', 1, 'https://ror.org/02kycr729 Universitas Bhayangkara Surabaya'),
(99663, 'https://ror.org/011maz450', 'en', 1, 'https://ror.org/011maz450 University of the Punjab جامعہ پنجاب ਪੰਜਾਬ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(99664, 'https://ror.org/010310r32', 'en', 1, 'https://ror.org/010310r32 Center for Physical Sciences and Technology Fizinių ir technologijos mokslų centras'),
(99665, 'https://ror.org/04mxsc976', 'en', 1, 'https://ror.org/04mxsc976 Escuela de DiseƱo de Rhode Island Rhode Island School of Design'),
(99666, 'https://ror.org/05467hx49', 'no_lang_code', 1, 'https://ror.org/05467hx49 Altos Labs'),
(99667, 'https://ror.org/01g09ef73', 'en', 1, 'https://ror.org/01g09ef73 Angel Kanchev University of Ruse Русенски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99668, 'https://ror.org/05hknds03', 'en', 1, 'https://ror.org/05hknds03 University American College Skopje'),
(99669, 'https://ror.org/0509ggw88', 'en', 1, 'https://ror.org/0509ggw88 III V Lab'),
(99670, 'https://ror.org/02fabx761', 'nl', 1, 'https://ror.org/02fabx761 De Nederlandsche Bank'),
(99671, 'https://ror.org/03yez3163', 'en', 1, 'https://ror.org/03yez3163 King Fahd University of Petroleum and Minerals Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ فهد Ł„Ł„ŲØŲŖŲ±ŁˆŁ„ ŁˆŲ§Ł„Ł…Ų¹Ų§ŲÆŁ†'),
(99672, 'https://ror.org/043trmd87', 'en', 1, 'https://ror.org/043trmd87 Center for Hierarchical Manufacturing'),
(99673, 'https://ror.org/04bcbax71', 'no_lang_code', 1, 'https://ror.org/04bcbax71 Musashino University ę­¦č”µé‡Žå¤§å­¦'),
(99674, 'https://ror.org/048m9x696', 'en', 1, 'https://ror.org/048m9x696 Hansung University ķ•œģ„±ėŒ€ķ•™źµ'),
(99675, 'https://ror.org/01fvmtt37', 'en', 1, 'https://ror.org/01fvmtt37 OspidƩal Ollscoile Thamhlachta Tallaght University Hospital'),
(99676, 'https://ror.org/02fhfq388', 'en', 1, 'https://ror.org/02fhfq388 Enverga University'),
(99677, 'https://ror.org/05gs8cd61', 'en', 1, 'https://ror.org/05gs8cd61 Paris-Lodron-UniversitƤt Salzburg University of Salzburg'),
(99678, 'https://ror.org/04hgqjy83', 'en', 1, 'https://ror.org/04hgqjy83 Hakim Children Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ś©ŁˆŲÆŚ©Ų§Ł† Ų­Ś©ŪŒŁ…'),
(99679, 'https://ror.org/03m50n726', 'en', 1, 'https://ror.org/03m50n726 Patuakhali Science and Technology University ą¦Ŗą¦Ÿą§ą¦Æą¦¼ą¦¾ą¦–ą¦¾ą¦²ą§€ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(99680, 'https://ror.org/04tg98e93', 'no_lang_code', 1, 'https://ror.org/04tg98e93 Aso Iizuka Hospital é£Æå”šē—…é™¢'),
(99681, 'https://ror.org/02m8e1r74', 'en', 1, 'https://ror.org/02m8e1r74 Institute of Management Sciences Peshawar'),
(99682, 'https://ror.org/04a85ht85', 'en', 1, 'https://ror.org/04a85ht85 Galgotias College of Engineering & Technology'),
(99683, 'https://ror.org/00yzpcc69', 'en', 1, 'https://ror.org/00yzpcc69 Extreme Light Infrastructure Beamlines'),
(99684, 'https://ror.org/02437s643', 'en', 1, 'https://ror.org/02437s643 University of Illinois Chicago, Rockford campus'),
(99685, 'https://ror.org/05n2dnq32', 'en', 1, 'https://ror.org/05n2dnq32 Chatham University'),
(99686, 'https://ror.org/03ym7ve89', 'no', 1, 'https://ror.org/03ym7ve89 Lovisenberg Diakonale Sykehus'),
(99687, 'https://ror.org/05baqgp89', 'id', 1, 'https://ror.org/05baqgp89 Universitas Islam Makassar'),
(99688, 'https://ror.org/04xvhsp09', 'sv', 1, 'https://ror.org/04xvhsp09 VƤsterbotten County VƤsterbottens lƤn'),
(99689, 'https://ror.org/03szbwj17', 'en', 1, 'https://ror.org/03szbwj17 HonorHealth'),
(99690, 'https://ror.org/00enajs79', 'en', 1, 'https://ror.org/00enajs79 National Bioinformatics Infrastructure Sweden'),
(99691, 'https://ror.org/02tne2741', 'en', 1, 'https://ror.org/02tne2741 Adamas University ą¦…ą§ą¦Æą¦¾ą¦”ą¦¾ą¦®ą¦¾ą¦ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(99692, 'https://ror.org/04admxj95', 'en', 1, 'https://ror.org/04admxj95 Psychiatry and Psychology Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų±ŁˆŲ§Ł†Ł¾Ų²Ų“Ś©ŪŒ و Ų±ŁˆŲ§Ł†Ų“Ł†Ų§Ų³ŪŒ دانؓگاه'),
(99693, 'https://ror.org/050bg0846', 'en', 1, 'https://ror.org/050bg0846 Universidad de NariƱo University of NariƱo'),
(99694, 'https://ror.org/01e5ckr65', 'en', 1, 'https://ror.org/01e5ckr65 Herzen University Российский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. А. И. Герцена'),
(99695, 'https://ror.org/00aahnw66', 'pt', 1, 'https://ror.org/00aahnw66 Centro de Computação GrÔfica'),
(99696, 'https://ror.org/02rzqza52', 'en', 1, 'https://ror.org/02rzqza52 University Ferhat Abbas of Setif UniversitĆ© Ferhat Abbas de SĆ©tif Ų¬Ų§Ł…Ų¹Ų© فرحات Ų¹ŲØŲ§Ų³'),
(99697, 'https://ror.org/01k3mbs15', 'en', 1, 'https://ror.org/01k3mbs15 Shahid Chamran University of Ahvaz دانؓگاه Ų“Ł‡ŪŒŲÆ چمران Ų§Ł‡ŁˆŲ§Ų²'),
(99698, 'https://ror.org/05k903r09', 'en', 1, 'https://ror.org/05k903r09 Ardhi University Chuo Kikuu Ardhi'),
(99699, 'https://ror.org/03hevjm30', 'no_lang_code', 1, 'https://ror.org/03hevjm30 Cihan University-Erbil Zankoy Cihan Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ‡Ų§Ł†'),
(99700, 'https://ror.org/059076v18', 'en', 1, 'https://ror.org/059076v18 Liceo de Cagayan University'),
(99701, 'https://ror.org/02e66xy22', 'en', 1, 'https://ror.org/02e66xy22 Institute of Human Virology'),
(99702, 'https://ror.org/03mwqca46', 'fr', 1, 'https://ror.org/03mwqca46 University of Saida Dr.Moulay Tahar UniversitĆ© de Saida Dr.Moulay Tahar Ų¬Ų§Ł…Ų¹Ų© سعيدة'),
(99703, 'https://ror.org/04rdxre41', 'pt', 1, 'https://ror.org/04rdxre41 Instituto Federal de Educação, Ciência e Tecnologia de Roraima'),
(99704, 'https://ror.org/02qjtnr91', 'en', 1, 'https://ror.org/02qjtnr91 Elizade University'),
(99705, 'https://ror.org/01mksg519', 'en', 1, 'https://ror.org/01mksg519 Gokhale Institute of Politics and Economics ą¤—ą„‹ą¤–ą¤²ą„‡ ą¤°ą¤¾ą¤œą¤Øą„€ą¤¤ą¤æ ą¤ą¤µą¤‚ ą¤…ą¤°ą„ą¤„ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(99706, 'https://ror.org/03q8sby79', 'tr', 1, 'https://ror.org/03q8sby79 Istanbul Esenyurt University İstanbul Esenyurt Üniversitesi'),
(99707, 'https://ror.org/04yh52k23', 'en', 1, 'https://ror.org/04yh52k23 KLE Technological University ಕೆ ą²Žą²²ą³ ಇ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²¶ą²æą²•ą³ą²·ą²£ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(99708, 'https://ror.org/04tvaz881', 'en', 1, 'https://ror.org/04tvaz881 University of Environment and Sustainable Development'),
(99709, 'https://ror.org/04yvncj21', 'en', 1, 'https://ror.org/04yvncj21 Academia de Studii Economice Bucharest University of Economic Studies'),
(99710, 'https://ror.org/03vge2w84', 'en', 1, 'https://ror.org/03vge2w84 Federal State Budgetary Scientific Institution "Federal Research Center for Agrarian Economy and Social Development of Rural Areas - All-Russian Research Institute for Agricultural Economics" Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр аграрной ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ ŃŠµŠ»ŃŒŃŠŗŠøŃ… территорий - Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(99711, 'https://ror.org/006c42y96', 'pt', 1, 'https://ror.org/006c42y96 Instituto Brasileiro de Informação em Ciência e Tecnologia'),
(99712, 'https://ror.org/03qvyzg66', 'en', 1, 'https://ror.org/03qvyzg66 National University of La Rioja Universidad Nacional de La Rioja UniversitƩ nationale de la rioja'),
(99713, 'https://ror.org/03a53pk73', 'en', 1, 'https://ror.org/03a53pk73 National Law School of India University Ɖcole nationale de droit de l''universitĆ© de l''inde ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą²Øą³ą²Æą²¾ą²·ą²Øą²²ą³ā€Œ ಲಾ ą²øą³ą²•ą³‚ą²²ą³ā€Œ ą²†ą²«ą³ā€Œ ಇಂಔಿಯಾ'),
(99714, 'https://ror.org/04m0pny09', 'en', 1, 'https://ror.org/04m0pny09 N.I. Vavilov Research Institute of Plant Industry Вавилов Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ растениевоГства'),
(99715, 'https://ror.org/00frr1n84', 'en', 1, 'https://ror.org/00frr1n84 Covenant University YunifƔsƭtƬ Covenant'),
(99716, 'https://ror.org/026wwrx19', 'en', 1, 'https://ror.org/026wwrx19 Universiti Kuala Lumpur University of Kuala Lumpur 吉隆坔大学'),
(99717, 'https://ror.org/03gx10y75', 'es', 1, 'https://ror.org/03gx10y75 Universidad Gerardo Barrios'),
(99718, 'https://ror.org/02gekya22', 'en', 1, 'https://ror.org/02gekya22 Palestine Ahliya University Ų¬Ų§Ł…Ų¹Ų© ŁŁ„Ų³Ų·ŁŠŁ† Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(99719, 'https://ror.org/04cwrbc27', 'pt', 1, 'https://ror.org/04cwrbc27 Albert Einstein Israelite Hospital Hospital Israelita Albert Einstein'),
(99720, 'https://ror.org/00ba6pg24', 'en', 1, 'https://ror.org/00ba6pg24 Uttaranchal University'),
(99721, 'https://ror.org/046a2wj10', 'nl', 1, 'https://ror.org/046a2wj10 Isala'),
(99722, 'https://ror.org/044wn2t24', 'pt', 1, 'https://ror.org/044wn2t24 Universidade Federal de Rondonópolis'),
(99723, 'https://ror.org/04tq55h40', 'id', 1, 'https://ror.org/04tq55h40 Badan Pusat Statistik'),
(99724, 'https://ror.org/03f914y84', 'en', 1, 'https://ror.org/03f914y84 Plymouth Marjon University'),
(99725, 'https://ror.org/002q01z48', 'no_lang_code', 1, 'https://ror.org/002q01z48 Access 2 Perspectives'),
(99726, 'https://ror.org/03q1dcf42', 'en', 1, 'https://ror.org/03q1dcf42 University of Mary Hardin–Baylor'),
(99727, 'https://ror.org/05qeebj02', 'de', 1, 'https://ror.org/05qeebj02 Medizinische Einrichtungen des Bezirks Oberpfalz'),
(99728, 'https://ror.org/012m9bp23', 'en', 1, 'https://ror.org/012m9bp23 Fachhochschule Potsdam University of Applied Sciences Potsdam'),
(99729, 'https://ror.org/01r35jx22', 'fr', 1, 'https://ror.org/01r35jx22 Centre Hospitalier MƩtropole Savoie'),
(99730, 'https://ror.org/035zzs971', 'en', 1, 'https://ror.org/035zzs971 Technological University of Choco Universidad Tecnológica del Chocó Diego Luis Córdoba'),
(99731, 'https://ror.org/00hzs6t60', 'en', 1, 'https://ror.org/00hzs6t60 Chuo Kikuu cha Embu University of Embu'),
(99732, 'https://ror.org/0349v4t59', 'en', 1, 'https://ror.org/0349v4t59 Kibbutzim College of Education, Technology and the Arts ×”×ž×™× ×Ø הקיבוצים'),
(99733, 'https://ror.org/05qkpaf51', 'en', 1, 'https://ror.org/05qkpaf51 Albukhary International University Universiti Antarabangsa Albukhary'),
(99734, 'https://ror.org/05b4za178', 'id', 1, 'https://ror.org/05b4za178 Universitas Pembangunan Nasional Veteran Jakarta'),
(99735, 'https://ror.org/019ev8b82', 'es', 1, 'https://ror.org/019ev8b82 Gorgas Memorial Institute for Health Studies Instituto Conmemorativo Gorgas de Estudios de la Salud'),
(99736, 'https://ror.org/00sr5kc20', 'en', 1, 'https://ror.org/00sr5kc20 Universitas Timor University of Timor'),
(99737, 'https://ror.org/04ndqkb04', 'en', 1, 'https://ror.org/04ndqkb04 Federal University of Petroleum Resource Effurun'),
(99738, 'https://ror.org/00s582s04', 'es', 1, 'https://ror.org/00s582s04 Universidad Alas Peruanas'),
(99739, 'https://ror.org/04jm2zr28', 'en', 1, 'https://ror.org/04jm2zr28 Meshalkin National Medical Research Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр имени акаГемика Š•.Š. Мешалкина»'),
(99740, 'https://ror.org/02rw39616', 'en', 1, 'https://ror.org/02rw39616 Jawaharlal Nehru Technological University Anantapur ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ సాంకేతిక ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(99741, 'https://ror.org/05tcr1n44', 'en', 1, 'https://ror.org/05tcr1n44 University of Business and Technology Ų¬Ų§Ł…Ų¹Ų© الأعمال ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§.'),
(99742, 'https://ror.org/0237jt454', 'en', 1, 'https://ror.org/0237jt454 Indian Institute of Information Technology Dharwad'),
(99743, 'https://ror.org/03hf0wx76', 'es', 1, 'https://ror.org/03hf0wx76 Universidad Fraternidad de Agrupaciones Santo TomƔs de Aquino'),
(99744, 'https://ror.org/040fc1e14', 'en', 1, 'https://ror.org/040fc1e14 National Information Processing Institute Ośrodek Przetwarzania Informacji'),
(99745, 'https://ror.org/0182a5n39', 'it', 1, 'https://ror.org/0182a5n39 Consorzio Nazionale Interuniversitario per le Telecomunicazioni National Inter-University Consortium for Telecommunications'),
(99746, 'https://ror.org/0266hg789', 'en', 0, 'https://ror.org/0266hg789 Miljƶdepartementet Ministry of the Environment'),
(99747, 'https://ror.org/01s5n0596', 'en', 1, 'https://ror.org/01s5n0596 Dnipro State Agrarian and Economic University Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний аграрно-економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99748, 'https://ror.org/04mhy5c57', 'pt', 1, 'https://ror.org/04mhy5c57 Instituto Superior Politécnico de Tecnologia e Ciências'),
(99749, 'https://ror.org/046wvt864', 'en', 1, 'https://ror.org/046wvt864 Academy of Music in Łódź Akademia Muzyczna im. Grażyny i Kiejstuta Bacewiczów w Łodzi'),
(99750, 'https://ror.org/01r53hz59', 'en', 1, 'https://ror.org/01r53hz59 National University of Quilmes Universidad Nacional de Quilmes'),
(99751, 'https://ror.org/05jmm0651', 'en', 1, 'https://ror.org/05jmm0651 Korea Aerospace University ķ•œźµ­ķ•­ź³µėŒ€ķ•™źµ'),
(99752, 'https://ror.org/05nxk6n24', 'en', 1, 'https://ror.org/05nxk6n24 IEEE Computer Society'),
(99753, 'https://ror.org/05t0zvw13', 'id', 1, 'https://ror.org/05t0zvw13 Universitas Teknologi Digital'),
(99754, 'https://ror.org/00thr3w71', 'no_lang_code', 1, 'https://ror.org/00thr3w71 Alnylam Pharmaceuticals (United States)'),
(99755, 'https://ror.org/04c3j3t84', 'en', 1, 'https://ror.org/04c3j3t84 National Engineering Research Center for Information Technology in Agriculture å›½å®¶å†œäøšäæ”ęÆåŒ–å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(99756, 'https://ror.org/00yz2sm97', 'en', 1, 'https://ror.org/00yz2sm97 Polymat'),
(99757, 'https://ror.org/023mnb461', 'en', 1, 'https://ror.org/023mnb461 Kaliningrad State Technical University ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99758, 'https://ror.org/02f0bym65', 'en', 1, 'https://ror.org/02f0bym65 National Opinion Research Center'),
(99759, 'https://ror.org/00cg1ev32', 'en', 1, 'https://ror.org/00cg1ev32 Ferris State University UniversitĆ© d''Ɖtat ferris'),
(99760, 'https://ror.org/00skffm42', 'en', 1, 'https://ror.org/00skffm42 Amazon National University of Madre de Dios Universidad Nacional Amazónica de Madre de Dios'),
(99761, 'https://ror.org/03mfefw72', 'en', 1, 'https://ror.org/03mfefw72 The University of Kitakyushu åŒ—ä¹å·žåø‚ē«‹å¤§å­¦'),
(99762, 'https://ror.org/05t5ek106', 'en', 1, 'https://ror.org/05t5ek106 Collin College'),
(99763, 'https://ror.org/013f9hb65', 'en', 1, 'https://ror.org/013f9hb65 Mahatma Gandhi Central University'),
(99764, 'https://ror.org/03m0sya71', 'en', 1, 'https://ror.org/03m0sya71 Czech Immunological Society ČeskĆ” ImunologickĆ” Společnost'),
(99765, 'https://ror.org/02ytfpp52', 'id', 1, 'https://ror.org/02ytfpp52 Universitas PGRI Palembang');
INSERT INTO `rors` VALUES
(99766, 'https://ror.org/0037djy87', 'en', 1, 'https://ror.org/0037djy87 University of Maragheh دانؓگاه مراغه'),
(99767, 'https://ror.org/02eehp307', 'en', 1, 'https://ror.org/02eehp307 Universitas Warmadewa Warmadewa University'),
(99768, 'https://ror.org/0414ppq07', 'en', 1, 'https://ror.org/0414ppq07 San Juan Bautista School of Medicine'),
(99769, 'https://ror.org/0243nmr44', 'en', 1, 'https://ror.org/0243nmr44 Greater Poland Cancer Center'),
(99770, 'https://ror.org/042335e16', 'en', 1, 'https://ror.org/042335e16 Universidad de los Llanos University of the Llanos'),
(99771, 'https://ror.org/04pn9tn44', 'en', 1, 'https://ror.org/04pn9tn44 Mohamed-Cherif Messaadia University جــــامـعــة محــمــد Ų§Ł„Ų“Ł€Ł€Ų±ŁŠŁ Ł…Ų³Ł€Ų§Ų¹Ł€Ł€Ł€Ł€ŲÆŁŠŲ©'),
(99772, 'https://ror.org/00kt2hh26', 'es', 1, 'https://ror.org/00kt2hh26 Fundación Universitaria Agraria de Colombia - UNIAGRARIA'),
(99773, 'https://ror.org/01h745q46', 'en', 1, 'https://ror.org/01h745q46 Panthera Corporation'),
(99774, 'https://ror.org/013zrke44', 'en', 1, 'https://ror.org/013zrke44 Polytechnic of Rijeka VeleučiliŔte u Rijeci'),
(99775, 'https://ror.org/04p2pa451', 'en', 1, 'https://ror.org/04p2pa451 Institute of Transport Economics'),
(99776, 'https://ror.org/0242cby63', 'en', 1, 'https://ror.org/0242cby63 L. N. Gumilyov Eurasian National University Евразийский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š›. Š. Š“ŃƒŠ¼ŠøŠ»Ń‘Š²Š° Š•ŃƒŃ€Š°Š·ŠøŃ ұлттық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(99777, 'https://ror.org/050ccpd76', 'en', 1, 'https://ror.org/050ccpd76 Ovidius University'),
(99778, 'https://ror.org/00k0k7y87', 'en', 1, 'https://ror.org/00k0k7y87 Babcock University'),
(99779, 'https://ror.org/02veezx93', 'no_lang_code', 1, 'https://ror.org/02veezx93 Transport Research Laboratory Transport Research Laboratory (United Kingdom)'),
(99780, 'https://ror.org/0170edc15', 'en', 1, 'https://ror.org/0170edc15 University of Babylon Ų¬Ų§Ł…Ų¹Ų© ŲØŲ§ŲØŁ„'),
(99781, 'https://ror.org/03x3g5758', 'en', 1, 'https://ror.org/03x3g5758 National Marine Fisheries Research Institute'),
(99782, 'https://ror.org/02e4fn963', 'en', 1, 'https://ror.org/02e4fn963 University of Sahiwal'),
(99783, 'https://ror.org/05wp7an13', 'en', 1, 'https://ror.org/05wp7an13 Malmƶ University Malmƶ universitet'),
(99784, 'https://ror.org/01gngef73', 'id', 1, 'https://ror.org/01gngef73 Universitas Muhammadiyah Tangerang'),
(99785, 'https://ror.org/04fq7xz90', 'en', 1, 'https://ror.org/04fq7xz90 Guilford College'),
(99786, 'https://ror.org/02z6whe68', 'en', 1, 'https://ror.org/02z6whe68 Kobe University of Future Health Sciences ē„žęˆøåŒ»ē™‚ęœŖę„å¤§å­¦'),
(99787, 'https://ror.org/01rcfpa16', 'en', 1, 'https://ror.org/01rcfpa16 Office of Budget, Finance and Award Management'),
(99788, 'https://ror.org/05dxzqa20', 'no_lang_code', 1, 'https://ror.org/05dxzqa20 Avinashilingam University ą®…ą®µą®æą®Øą®¾ą®šą®æą®²ą®æą®™ąÆą®•ą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(99789, 'https://ror.org/04jrwm652', 'en', 1, 'https://ror.org/04jrwm652 San SebastiƔn University Universidad San SebastiƔn'),
(99790, 'https://ror.org/015jxh185', 'en', 1, 'https://ror.org/015jxh185 Liaquat University of Medical & Health Sciences'),
(99791, 'https://ror.org/055wmc747', 'es', 1, 'https://ror.org/055wmc747 Centro Científico Tecnológico - Mendoza'),
(99792, 'https://ror.org/053g6we49', 'en', 1, 'https://ror.org/053g6we49 Zagazig University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ł‚Ų§Ų²ŁŠŁ‚'),
(99793, 'https://ror.org/03f077y84', 'en', 1, 'https://ror.org/03f077y84 Latvia University of Life Sciences and Technologies Latvijas Biozinātņu un tehnoloÄ£iju universitāte Latvijos Žemės Ükio Universitetas Латвийский ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99794, 'https://ror.org/02awmn551', 'en', 1, 'https://ror.org/02awmn551 Hungarian National Bank Magyar Nemzeti Bank'),
(99795, 'https://ror.org/03bg7t353', 'es', 1, 'https://ror.org/03bg7t353 Institución Universitaria Escolme'),
(99796, 'https://ror.org/043k6re07', 'en', 1, 'https://ror.org/043k6re07 Akademia Wychowania Fizycznego Józefa Piłsudskiego w Warszawie Józef Piłsudski University of Physical Education in Warsaw'),
(99797, 'https://ror.org/035mh1293', 'en', 1, 'https://ror.org/035mh1293 L''UniversitĆ  Internazionale a Roma Link Campus University'),
(99798, 'https://ror.org/051zrh047', 'es', 1, 'https://ror.org/051zrh047 National University of Tres de Febrero Universidad Nacional de Tres de Febrero'),
(99799, 'https://ror.org/04af78111', 'en', 1, 'https://ror.org/04af78111 University of Fine Arts in Poznań Uniwersytet Artystyczny w Poznaniu'),
(99800, 'https://ror.org/03dydg188', 'fr', 1, 'https://ror.org/03dydg188 Ɖcole Nationale SupĆ©rieure d''Hydraulique المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų±ŁŠ'),
(99801, 'https://ror.org/040x97916', 'en', 1, 'https://ror.org/040x97916 London Borough of Redbridge'),
(99802, 'https://ror.org/02hd2zk59', 'en', 1, 'https://ror.org/02hd2zk59 Atma Jaya Catholic University of Indonesia Universitas Katolik Atma Jaya'),
(99803, 'https://ror.org/01fefmh69', 'es', 1, 'https://ror.org/01fefmh69 Jaime Bausate y Meza University Universidad Jaime Bausate y Meza'),
(99804, 'https://ror.org/02rc97e94', 'en', 1, 'https://ror.org/02rc97e94 University of Calabria UniversitƠ della Calabria UniversitƤt Kalabrien UniversitƩ de la calabre'),
(99805, 'https://ror.org/05xf50770', 'en', 1, 'https://ror.org/05xf50770 Niroo Research Institute'),
(99806, 'https://ror.org/045ncxc88', 'es', 1, 'https://ror.org/045ncxc88 Centro Tecnológico de Telecomunicaciones de Galicia Centro Tecnolóxico de Telecomunicacións de Galicia Galician Research and Development Center in Advanced Telecommunications'),
(99807, 'https://ror.org/02xh9a707', 'en', 1, 'https://ror.org/02xh9a707 Admiral Makarov State University of Maritime and Inland Shipping Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ морского Šø речного флота имени аГмирала Š”.Šž. ŠœŠ°ŠŗŠ°Ń€Š¾Š²Š°'),
(99808, 'https://ror.org/02s7fqp87', 'en', 1, 'https://ror.org/02s7fqp87 Akademia Sztuk Pięknych im. Jana Matejki w Krakowie Jan Matejko Academy Of Fine Arts'),
(99809, 'https://ror.org/021kg9v06', 'de', 1, 'https://ror.org/021kg9v06 Management Center Innsbruck'),
(99810, 'https://ror.org/03sbpft28', 'en', 1, 'https://ror.org/03sbpft28 Universidad de El Salvador University of El Salvador'),
(99811, 'https://ror.org/01gr30f96', 'en', 1, 'https://ror.org/01gr30f96 Alasmarya Islamic University الجامعة Ų§Ł„Ų£Ų³Ł…Ų±ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(99812, 'https://ror.org/01bmjkv45', 'en', 1, 'https://ror.org/01bmjkv45 Friedrich Miescher Institute'),
(99813, 'https://ror.org/0008d4756', 'en', 1, 'https://ror.org/0008d4756 Al-Hikmah University'),
(99814, 'https://ror.org/05hsgex59', 'no_lang_code', 1, 'https://ror.org/05hsgex59 Kharazmi University دانؓگاه Ų®ŁˆŲ§Ų±Ų²Ł…ŪŒ'),
(99815, 'https://ror.org/05m2n8847', 'en', 1, 'https://ror.org/05m2n8847 V.E. Zuev Institute of Atmospheric Optics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптики атмосферы им. Š’.Š•. Š—ŃƒŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(99816, 'https://ror.org/05ajnv358', 'en', 1, 'https://ror.org/05ajnv358 Karnatak University ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(99817, 'https://ror.org/00mp6e841', 'en', 1, 'https://ror.org/00mp6e841 Instituto de TecnologĆ­a Rose-Hulman Rose–Hulman Institute of Technology'),
(99818, 'https://ror.org/01hn2d233', 'en', 1, 'https://ror.org/01hn2d233 Biomechanics Institute of Valencia Instituto de BiomecƔnica de Valencia'),
(99819, 'https://ror.org/01d0hx540', 'no_lang_code', 1, 'https://ror.org/01d0hx540 MSD (Finland)'),
(99820, 'https://ror.org/05hz8m414', 'en', 1, 'https://ror.org/05hz8m414 Alabama Agricultural and Mechanical University'),
(99821, 'https://ror.org/05gefd119', 'pt', 1, 'https://ror.org/05gefd119 Feevale University Universidade Feevale'),
(99822, 'https://ror.org/03xc55g68', 'fr', 1, 'https://ror.org/03xc55g68 UniversitƩ Mohammed VI Polytechnique'),
(99823, 'https://ror.org/053jehz60', 'en', 1, 'https://ror.org/053jehz60 Vidyasirimedhi Institute of Science and Technology'),
(99824, 'https://ror.org/03d0jkp23', 'en', 1, 'https://ror.org/03d0jkp23 Colombian Corporation for Agricultural Research - AGROSAVIA Corporación Colombiana de Investigación Agropecuaria – AGROSAVIA'),
(99825, 'https://ror.org/05p0tzt32', 'en', 1, 'https://ror.org/05p0tzt32 East West University ą¦‡ą¦øą§ą¦Ÿą¦“ą¦Æą¦¼ą§‡ą¦øą§ą¦Ÿ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(99826, 'https://ror.org/03kdvpr29', 'en', 1, 'https://ror.org/03kdvpr29 Bundesanstalt für Gewässerkunde Federal Institute of Hydrology'),
(99827, 'https://ror.org/04q3r2543', 'en', 1, 'https://ror.org/04q3r2543 Universitas Widyagama Mahakam Samarinda Widya Gama Mahakam University'),
(99828, 'https://ror.org/023m51b03', 'en', 1, 'https://ror.org/023m51b03 Cancer Council Victoria'),
(99829, 'https://ror.org/01ccvgc22', 'en', 1, 'https://ror.org/01ccvgc22 Shri Ramswaroop Memorial College of Engineering and Management'),
(99830, 'https://ror.org/04cjjhh62', 'en', 1, 'https://ror.org/04cjjhh62 Universidad de La Guajira University of La Guajira'),
(99831, 'https://ror.org/023y4pd41', 'en', 1, 'https://ror.org/023y4pd41 Polis University'),
(99832, 'https://ror.org/03mxeqa17', 'en', 1, 'https://ror.org/03mxeqa17 Ministry of Economy of the Republic of Armenia ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Экономики Республики ŠŃ€Š¼ŠµŠ½ŠøŃ Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ€Õ”Õ¶Ö€Õ”ÕŗÕ„ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ Ō·ÕÆÕøÕ¶ÕøÕ“Õ«ÕÆÕ”ÕµÕ« Õ†Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(99833, 'https://ror.org/02ch5q898', 'en', 1, 'https://ror.org/02ch5q898 Office of Inspector General'),
(99834, 'https://ror.org/04zmmpw58', 'en', 1, 'https://ror.org/04zmmpw58 Swedish National Road and Transport Research Institute'),
(99835, 'https://ror.org/0561z8p38', 'en', 1, 'https://ror.org/0561z8p38 Rijnstate Hospital'),
(99836, 'https://ror.org/050nk7b98', 'id', 1, 'https://ror.org/050nk7b98 Ibnu Sina University Universitas Ibnu Sina'),
(99837, 'https://ror.org/04yayy336', 'en', 1, 'https://ror.org/04yayy336 Indira Gandhi National Tribal University इंदिरा ą¤—ą¤¾ą¤ą¤§ą„€ ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤Ÿą„ą¤°ą¤¾ą¤‡ą¤¬ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(99838, 'https://ror.org/037263487', 'it', 1, 'https://ror.org/037263487 Libera UniversitĆ  degli Studi Per l''Innovazione e le Organizzazioni University of International Studies of Rome UniversitĆ  degli Studi Internazionali di Roma'),
(99839, 'https://ror.org/046denk61', 'en', 1, 'https://ror.org/046denk61 Instituto Nacional de TecnologĆ­a Industrial National Institute of Industrial Technology'),
(99840, 'https://ror.org/02m68mv75', 'de', 1, 'https://ror.org/02m68mv75 Gesundheit Ɩsterreich'),
(99841, 'https://ror.org/023a7t361', 'en', 1, 'https://ror.org/023a7t361 Ghazi University غازی ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(99842, 'https://ror.org/01ge5zt06', 'en', 1, 'https://ror.org/01ge5zt06 Eberswalde University for Sustainable Development Hochschule für Nachhaltige Entwicklung Eberswalde'),
(99843, 'https://ror.org/05axv8155', 'en', 1, 'https://ror.org/05axv8155 Whitman College'),
(99844, 'https://ror.org/00nxce326', 'es', 1, 'https://ror.org/00nxce326 Fundación Universitaria Cafam'),
(99845, 'https://ror.org/00t7bpe49', 'en', 1, 'https://ror.org/00t7bpe49 European University of Lefke Lefke Avrupa Üniversitesi'),
(99846, 'https://ror.org/05sbm1c04', 'en', 1, 'https://ror.org/05sbm1c04 Universitas Pembangunan Nasional Veteran Jawa Timur University of Pembangunan Nasional Veteran Jawa Timur'),
(99847, 'https://ror.org/03nbh7398', 'es', 1, 'https://ror.org/03nbh7398 Fundación Universitaria Católica Lumen Gentium'),
(99848, 'https://ror.org/04p2rkp70', 'en', 1, 'https://ror.org/04p2rkp70 European University at Saint Petersburg Европейский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³Šµ'),
(99849, 'https://ror.org/02r91my29', 'en', 1, 'https://ror.org/02r91my29 University of Kelaniya களனி ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą¶šą·ą·…ą¶«ą·’ą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(99850, 'https://ror.org/019z71c59', 'en', 1, 'https://ror.org/019z71c59 Comisia Națională pentru Controlul Activităților Nucleare National Commission for Nuclear Activities Control'),
(99851, 'https://ror.org/00cdrtq48', 'no_lang_code', 1, 'https://ror.org/00cdrtq48 Alfaisal University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŁŠŲµŁ„'),
(99852, 'https://ror.org/0164qgj37', 'en', 1, 'https://ror.org/0164qgj37 Dong A University ĐẔi hį»c ĐƓng Ɓ'),
(99853, 'https://ror.org/0252mqn49', 'en', 1, 'https://ror.org/0252mqn49 Flame University'),
(99854, 'https://ror.org/01x784220', 'en', 1, 'https://ror.org/01x784220 Children''s Cancer Institute Australia'),
(99855, 'https://ror.org/029m7xn54', 'en', 1, 'https://ror.org/029m7xn54 Universidad de San Francisco University of San Francisco UniversitƩ de san francisco'),
(99856, 'https://ror.org/03x297z98', 'en', 1, 'https://ror.org/03x297z98 Agderin yliopisto University of Agder'),
(99857, 'https://ror.org/029md1766', 'es', 1, 'https://ror.org/029md1766 Instituto Tecnológico Autónomo de México Mexico Autonomous Institute of Technology'),
(99858, 'https://ror.org/02h3bfj85', 'de', 1, 'https://ror.org/02h3bfj85 Kepler UniversitƤtsklinikum'),
(99859, 'https://ror.org/0417ye583', 'da', 1, 'https://ror.org/0417ye583 State Serum Institute Statens Serum Institut'),
(99860, 'https://ror.org/05dhe8b71', 'en', 1, 'https://ror.org/05dhe8b71 British Library Llyfrgell Brydeinig'),
(99861, 'https://ror.org/05vatjr87', 'en', 1, 'https://ror.org/05vatjr87 Malawi University of Business and Applied Sciences'),
(99862, 'https://ror.org/01kzjg088', 'en', 1, 'https://ror.org/01kzjg088 Omsk State Technical University ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99863, 'https://ror.org/03jg24239', 'it', 1, 'https://ror.org/03jg24239 Ospedale di Parma'),
(99864, 'https://ror.org/02w0sqd02', 'es', 1, 'https://ror.org/02w0sqd02 Juarez University of the State of Durango Universidad JuƔrez del Estado de Durango'),
(99865, 'https://ror.org/05r9r2f34', 'en', 1, 'https://ror.org/05r9r2f34 Indian Institute of Technology Mandi ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą¤£ą„ą¤”ą„€ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®®ą®£ąÆą®Ÿą®æ'),
(99866, 'https://ror.org/0162saw54', 'de', 1, 'https://ror.org/0162saw54 Evangelisches Krankenhaus Bielefeld'),
(99867, 'https://ror.org/00q644y50', 'en', 1, 'https://ror.org/00q644y50 Hochschule Reutlingen Reutlingen University'),
(99868, 'https://ror.org/01ykx8d32', 'sr', 1, 'https://ror.org/01ykx8d32 Institut za onkologiju i radiologiju Srbije'),
(99869, 'https://ror.org/025kzpk63', 'en', 1, 'https://ror.org/025kzpk63 Directorate for Computer & Information Science & Engineering'),
(99870, 'https://ror.org/01apc5d07', 'en', 1, 'https://ror.org/01apc5d07 Ningbo No. 2 Hospital å®ę³¢åø‚ē¬¬äŗŒåŒ»é™¢'),
(99871, 'https://ror.org/0554h7e84', 'en', 1, 'https://ror.org/0554h7e84 Department of Earth Sciences'),
(99872, 'https://ror.org/00f266q65', 'en', 1, 'https://ror.org/00f266q65 Universidad Xavier UniversitƩ xavier de cincinnati Xavier University'),
(99873, 'https://ror.org/03p37s713', 'es', 1, 'https://ror.org/03p37s713 Corporación Tecnológica Industrial Colombiana'),
(99874, 'https://ror.org/00sdn4d17', 'tr', 1, 'https://ror.org/00sdn4d17 İstanbul Sisli Meslek Yüksekokulu'),
(99875, 'https://ror.org/04q2bhq19', 'pt', 1, 'https://ror.org/04q2bhq19 Associação Caruaruense de Ensino Superior e Técnico'),
(99876, 'https://ror.org/04ytrqw44', 'es', 1, 'https://ror.org/04ytrqw44 Universidad Privada San Juan Bautista'),
(99877, 'https://ror.org/022r8mj40', 'es', 1, 'https://ror.org/022r8mj40 Institute for Theoretical Physics Instituto de Física Teórica'),
(99878, 'https://ror.org/00nxz6d14', 'en', 1, 'https://ror.org/00nxz6d14 State University of Management Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(99879, 'https://ror.org/055n1ac14', 'en', 1, 'https://ror.org/055n1ac14 University of Southeastern Philippines'),
(99880, 'https://ror.org/033byn085', 'en', 1, 'https://ror.org/033byn085 Royal Agricultural University Y Brifysgol Amaethyddol Frenhinol'),
(99881, 'https://ror.org/04pzf5g91', 'es', 1, 'https://ror.org/04pzf5g91 Corporación Universitaria de Ibagué Universidad de Ibagué University of Ibagué'),
(99882, 'https://ror.org/00spd2n27', 'en', 1, 'https://ror.org/00spd2n27 National Institute of Health Researches of Iran Ł…ŁˆŲ³Ų³Ł‡ Ł…Ł„ŪŒ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ سلامت'),
(99883, 'https://ror.org/00syn5v21', 'en', 1, 'https://ror.org/00syn5v21 Igor Sikorsky Kijowski Instytut Politechniczny National Technical University of Ukraine ā€œIgor Sikorsky Kyiv Polytechnic Instituteā€ ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украины ""Киевский политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š˜Š³Š¾Ń€Ń Дикорского"" ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украины «Киевский политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š˜Š³Š¾Ń€Ń Дикорского» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ України ""ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ політехнічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імені Š†Š³Š¾Ń€Ń Š”Ń–ŠŗŠ¾Ń€ŃŃŒŠŗŠ¾Š³Š¾"" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ України Ā«ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ політехнічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імені Š†Š³Š¾Ń€Ń Š”Ń–ŠŗŠ¾Ń€ŃŃŒŠŗŠ¾Š³Š¾Ā»'),
(99884, 'https://ror.org/04w0b7z78', 'en', 1, 'https://ror.org/04w0b7z78 Reserve Bank of India ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤°ą¤æą¤œą¤¼ą¤°ą„ą¤µ ą¤¬ą„ˆą¤‚ą¤•'),
(99885, 'https://ror.org/02qcq7v36', 'it', 1, 'https://ror.org/02qcq7v36 Istituto Zooprofilattico Sperimentale della Lombardia e dell''Emilia Romagna "Bruno Ubertini"'),
(99886, 'https://ror.org/01khn0w07', 'en', 1, 'https://ror.org/01khn0w07 Lambung Mangkurat University Universitas Lambung Mangkurat'),
(99887, 'https://ror.org/02p5wzp69', 'en', 1, 'https://ror.org/02p5wzp69 Iran Broadcasting University دانؓکده ŲµŲÆŲ§ و Ų³ŪŒŁ…Ų§'),
(99888, 'https://ror.org/047ymzq84', 'en', 1, 'https://ror.org/047ymzq84 Chaitanya Bharathi Institute of Technology ą°šą±ˆą°¤ą°Øą±ą°Æ భారతి ą°‡ą°Øą±ā€Œą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€'),
(99889, 'https://ror.org/055a6gk50', 'en', 1, 'https://ror.org/055a6gk50 University of Anbar Ų¬Ų§Ł…Ų¹Ų© الأنبار'),
(99890, 'https://ror.org/00gykfs38', 'es', 1, 'https://ror.org/00gykfs38 Instituto Especializado de Profesionales de la Salud'),
(99891, 'https://ror.org/05j0ve876', 'en', 1, 'https://ror.org/05j0ve876 Aston University Prifysgol Aston'),
(99892, 'https://ror.org/04v4h0v24', 'en', 1, 'https://ror.org/04v4h0v24 Helmholtz Metadata Collaboration'),
(99893, 'https://ror.org/020dggs04', 'en', 1, 'https://ror.org/020dggs04 Humanitas University'),
(99894, 'https://ror.org/03qfdvc46', 'en', 1, 'https://ror.org/03qfdvc46 Centre of Excellence in Molecular Biology'),
(99895, 'https://ror.org/0515pjs57', 'en', 1, 'https://ror.org/0515pjs57 Austrian Institute of Economic Research Ɩsterreichisches Institut für Wirtschaftsforschung'),
(99896, 'https://ror.org/02h92td50', 'en', 1, 'https://ror.org/02h92td50 Police Academy of the Czech Republic in Prague Policejní akademie České republiky v Praze'),
(99897, 'https://ror.org/01bm9xh88', 'es', 1, 'https://ror.org/01bm9xh88 Corporación Universitaria del Caribe'),
(99898, 'https://ror.org/00e8nsh51', 'en', 1, 'https://ror.org/00e8nsh51 Mount St. Joseph University'),
(99899, 'https://ror.org/04dvbth24', 'es', 1, 'https://ror.org/04dvbth24 Universidad TƩcnica Particular de Loja'),
(99900, 'https://ror.org/01qdav448', 'en', 1, 'https://ror.org/01qdav448 Raman Research Institute ą®‡ą®°ą®¾ą®®ą®©ąÆ ą®†ą®ÆąÆą®µąÆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(99901, 'https://ror.org/029w3ge75', 'en', 1, 'https://ror.org/029w3ge75 Universidad de Quintana Roo University of Quintana Roo'),
(99902, 'https://ror.org/04yg23125', 'en', 1, 'https://ror.org/04yg23125 General University Hospital in Prague VŔeobecnÔ Fakultní Nemocnice v Praze'),
(99903, 'https://ror.org/0210dff90', 'en', 1, 'https://ror.org/0210dff90 Western Governors University'),
(99904, 'https://ror.org/01hynnt93', 'en', 1, 'https://ror.org/01hynnt93 Central Institute of Mental Health Zentralinstitut für Seelische Gesundheit'),
(99905, 'https://ror.org/034yyfc81', 'en', 1, 'https://ror.org/034yyfc81 State University of Papua Universitas Negeri Papua'),
(99906, 'https://ror.org/04zjcaq85', 'en', 1, 'https://ror.org/04zjcaq85 Valdosta State University'),
(99907, 'https://ror.org/04tb22w36', 'en', 1, 'https://ror.org/04tb22w36 GIFT University'),
(99908, 'https://ror.org/052r04325', 'fr', 1, 'https://ror.org/052r04325 UniversitƩ de Mostaganem'),
(99909, 'https://ror.org/00ks64q69', 'es', 1, 'https://ror.org/00ks64q69 Corporación Universitaria Latinoamericana'),
(99910, 'https://ror.org/05drmrq39', 'en', 1, 'https://ror.org/05drmrq39 Tennessee Technological University'),
(99911, 'https://ror.org/021p6rb08', 'en', 1, 'https://ror.org/021p6rb08 Shifa Tameer-e-Millat University'),
(99912, 'https://ror.org/02wget071', 'en', 1, 'https://ror.org/02wget071 Taiwan Agricultural Research Institute Council of Agriculture, Executive Yuan č”Œę”æé™¢č¾²ę„­å§”å“”ęœƒč¾²ę„­č©¦é©—ę‰€'),
(99913, 'https://ror.org/02n5f2c60', 'en', 1, 'https://ror.org/02n5f2c60 Central University of Karnataka ą®•ą®°ąÆą®Øą®¾ą®Ÿą®• ą®®ą®¤ąÆą®¤ą®æą®Æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²•ą³†ą³•ą²‚ą²¦ą³ą²°ą²æą³•ą²Æ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(99914, 'https://ror.org/00nmvbd84', 'en', 1, 'https://ror.org/00nmvbd84 Sunan Kalijaga State Islamic University Yogyakarta Universitas Islam Negeri Sunan Kalijaga Yogyakarta'),
(99915, 'https://ror.org/024wc1x05', 'no_lang_code', 1, 'https://ror.org/024wc1x05 Inagro (Belgium)'),
(99916, 'https://ror.org/00bmjd793', 'id', 1, 'https://ror.org/00bmjd793 Ganesha University of Education Universitas Pendidikan Ganesha'),
(99917, 'https://ror.org/01bkn5154', 'en', 1, 'https://ror.org/01bkn5154 Mbarara University of Science and Technology'),
(99918, 'https://ror.org/00haq1z06', 'en', 1, 'https://ror.org/00haq1z06 Daemen College'),
(99919, 'https://ror.org/00xanm517', 'it', 1, 'https://ror.org/00xanm517 Aziende Socio Sanitarie Territoriale dei Sette Laghi Regional Health Care and Social Agency Seven Lakes'),
(99920, 'https://ror.org/02ffcdy84', 'id', 1, 'https://ror.org/02ffcdy84 Politeknik Negeri Banjarmasin'),
(99921, 'https://ror.org/031xne895', 'en', 1, 'https://ror.org/031xne895 National University of Laos UniversitĆ© nationale du laos ąŗ”ąŗ°ąŗ«ąŗ²ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ą»„ąŗ„ą»ąŗ«ą»ˆąŗ‡ąŗŠąŗ²ąŗ”'),
(99922, 'https://ror.org/05j7qk258', 'en', 1, 'https://ror.org/05j7qk258 Brigham Young University - Idaho'),
(99923, 'https://ror.org/03z475876', 'it', 1, 'https://ror.org/03z475876 Policlinico Tor Vergata'),
(99924, 'https://ror.org/03ytqnm28', 'en', 1, 'https://ror.org/03ytqnm28 Central University of Tamil Nadu ą¤¤ą¤®ą¤æą¤²ą¤Øą¤¾ą¤”ą„ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®®ą®¤ąÆą®¤ą®æą®Æą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(99925, 'https://ror.org/0400am365', 'en', 1, 'https://ror.org/0400am365 Bangladesh University of Business and Technology বাংলাদেশ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(99926, 'https://ror.org/054nntz49', 'en', 1, 'https://ror.org/054nntz49 Wilkes University'),
(99927, 'https://ror.org/000vj2f52', 'en', 1, 'https://ror.org/000vj2f52 Universidad de Montemorelos University of Montemorelos'),
(99928, 'https://ror.org/027cbd221', 'en', 1, 'https://ror.org/027cbd221 FPInnovations'),
(99929, 'https://ror.org/010va4625', 'en', 1, 'https://ror.org/010va4625 Catholic University of Mozambique Universidade Católica de Moçambique'),
(99930, 'https://ror.org/01h1jbk91', 'en', 1, 'https://ror.org/01h1jbk91 Botanischer Garten Meise Jardin botanique de Meise Meise Botanic Garden Plantentuin Meise'),
(99931, 'https://ror.org/001skmk61', 'en', 1, 'https://ror.org/001skmk61 Drake University Universidad Drake'),
(99932, 'https://ror.org/049skhf47', 'en', 1, 'https://ror.org/049skhf47 Andhra University ą¤†ą¤Øą„ą¤§ą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®†ą®ØąÆą®¤ą®æą®°ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°†ą°‚ą°§ą±ą°° ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(99933, 'https://ror.org/01t80g375', 'pt', 1, 'https://ror.org/01t80g375 Laboratório Cedro Laboratório Cedro (Brazil) Laboratório Cedro, Ltda.'),
(99934, 'https://ror.org/01qcqyr62', 'en', 1, 'https://ror.org/01qcqyr62 California Institute of Integral Studies'),
(99935, 'https://ror.org/04y763m95', 'en', 1, 'https://ror.org/04y763m95 Central University of Jharkhand ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤¾ą¤°ą¤–ą¤£ą„ą¤”'),
(99936, 'https://ror.org/03rzp5127', 'en', 1, 'https://ror.org/03rzp5127 James Hutton Institute'),
(99937, 'https://ror.org/03eb1ae70', 'en', 1, 'https://ror.org/03eb1ae70 Leading University লিঔিং ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(99938, 'https://ror.org/031aa0x95', 'es', 1, 'https://ror.org/031aa0x95 Universidad Bolivariana del Ecuador'),
(99939, 'https://ror.org/009kx9832', 'en', 1, 'https://ror.org/009kx9832 University of Jos YunifÔsítì ìlú Jos'),
(99940, 'https://ror.org/00ftx0026', 'en', 1, 'https://ror.org/00ftx0026 Hochschule Düsseldorf Hochschule Düsseldorf University of Applied Sciences'),
(99941, 'https://ror.org/05pxcn248', 'en', 1, 'https://ror.org/05pxcn248 Singapore Polytechnic ę–°åŠ å”ē†å·„å­¦é™¢'),
(99942, 'https://ror.org/04qenc566', 'es', 1, 'https://ror.org/04qenc566 Escuela Superior Politecnica del Litoral Escuela Superior PolitƩcnica del Litoral'),
(99943, 'https://ror.org/05bq6ng76', 'en', 1, 'https://ror.org/05bq6ng76 Krida Wacana Christian University Universitas Kristen Krida Wacana'),
(99944, 'https://ror.org/02pdzen98', 'en', 1, 'https://ror.org/02pdzen98 Alma College'),
(99945, 'https://ror.org/05fdt2q64', 'en', 1, 'https://ror.org/05fdt2q64 NLA University College'),
(99946, 'https://ror.org/05ws31q32', 'en', 1, 'https://ror.org/05ws31q32 O.M. Beketov National University of Urban Economy in Kharkiv Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¼Ń–ŃŃŒŠŗŠ¾Š³Š¾ госпоГарства імені Šž. М. Бекетова Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ гороГского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(99947, 'https://ror.org/032583b91', 'en', 1, 'https://ror.org/032583b91 C.V. Raman Global University'),
(99948, 'https://ror.org/0470cgs30', 'en', 1, 'https://ror.org/0470cgs30 Ruotsin kokonaismaanpuolustuksen tutkimuslaitos Swedish Defence Research Agency Totalfƶrsvarets forskningsinstitut'),
(99949, 'https://ror.org/03a8sgj63', 'en', 1, 'https://ror.org/03a8sgj63 Military University Hospital Prague'),
(99950, 'https://ror.org/00yb99p92', 'en', 1, 'https://ror.org/00yb99p92 Institute of Animal Science Výzkumný Ústav ŽivočiÅ”nĆ© Výroby'),
(99951, 'https://ror.org/04mwwnx67', 'en', 1, 'https://ror.org/04mwwnx67 Abertay University'),
(99952, 'https://ror.org/04t2ss102', 'no_lang_code', 1, 'https://ror.org/04t2ss102 Novosibirsk State University ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99953, 'https://ror.org/05tr71696', 'no_lang_code', 1, 'https://ror.org/05tr71696 MSD (India)'),
(99954, 'https://ror.org/02nqtsx95', 'en', 1, 'https://ror.org/02nqtsx95 National Nuclear Center of the Republic of Kazakhstan ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠ“ŠµŃ€Š½Ń‹Š¹ центр Республики ŠšŠ°Š·Š°Ń…стан'),
(99955, 'https://ror.org/0538fxe03', 'en', 1, 'https://ror.org/0538fxe03 King Hamad University Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ Ų­Ł…ŲÆ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(99956, 'https://ror.org/04bs4rc32', 'en', 1, 'https://ror.org/04bs4rc32 Lagos State University of Education'),
(99957, 'https://ror.org/030xrqd09', 'en', 1, 'https://ror.org/030xrqd09 Nuh Naci Yazgan University Nuh Naci Yazgan Üniversitesi'),
(99958, 'https://ror.org/02j8sxk20', 'no_lang_code', 1, 'https://ror.org/02j8sxk20 Polymer Competence Center Leoben (Austria)'),
(99959, 'https://ror.org/03ctjbj91', 'en', 1, 'https://ror.org/03ctjbj91 Liverpool Hope University'),
(99960, 'https://ror.org/03ajsaw82', 'en', 1, 'https://ror.org/03ajsaw82 NASK National Research Institute NASK Państwowy Instytut Badawczy'),
(99961, 'https://ror.org/04exz5k48', 'en', 1, 'https://ror.org/04exz5k48 Tanjungpura University Universitas Tanjungpura'),
(99962, 'https://ror.org/056hr4255', 'en', 1, 'https://ror.org/056hr4255 Eastern Virginia Medical School'),
(99963, 'https://ror.org/051bats05', 'en', 1, 'https://ror.org/051bats05 Lorestan University'),
(99964, 'https://ror.org/03zjwc274', 'en', 1, 'https://ror.org/03zjwc274 Center of Research and Technologic Development in Electrochemistry Centro de Investigación y Desarrollo Tecnológico en Electroquímica'),
(99965, 'https://ror.org/01nm4t960', 'id', 1, 'https://ror.org/01nm4t960 Teuku Umar University Universitas Teuku Umar'),
(99966, 'https://ror.org/057p0ez44', 'en', 1, 'https://ror.org/057p0ez44 Jose Matias Delgado University Universidad Dr. JosƩ Matƭas Delgado'),
(99967, 'https://ror.org/015nkmw43', 'pt', 1, 'https://ror.org/015nkmw43 Escola Superior de SaĆŗde Norte da Cruz Vermelha Portuguesa'),
(99968, 'https://ror.org/00nw66q03', 'es', 1, 'https://ror.org/00nw66q03 Universidad Privada Franz Tamayo'),
(99969, 'https://ror.org/040kwf410', 'es', 1, 'https://ror.org/040kwf410 Universidad Tecnológica Oteima'),
(99970, 'https://ror.org/052sta926', 'en', 1, 'https://ror.org/052sta926 "Dunarea de Jos" University of Galati Universitatea ā€žDunărea de Josā€ din Galați'),
(99971, 'https://ror.org/00c70rp24', 'en', 1, 'https://ror.org/00c70rp24 Institute of Urban and Regional Development Krajowy Instytut Polityki Przestrzennej i Mieszkalnictwa'),
(99972, 'https://ror.org/0431v7h69', 'es', 1, 'https://ror.org/0431v7h69 Fundación Instituto Leloir'),
(99973, 'https://ror.org/01xfzxq83', 'en', 1, 'https://ror.org/01xfzxq83 Mohammed Bin Rashid University of Medicine and Health Sciences'),
(99974, 'https://ror.org/03m84a908', 'en', 1, 'https://ror.org/03m84a908 Universidad de HolguĆ­n University of HolguĆ­n'),
(99975, 'https://ror.org/024ga3r86', 'de', 1, 'https://ror.org/024ga3r86 Hochschule Mittweida University of Applied Sciences Mittweida'),
(99976, 'https://ror.org/01cn6ph21', 'en', 1, 'https://ror.org/01cn6ph21 Sam Ratulangi University Universitas Sam Ratulangi'),
(99977, 'https://ror.org/0042ytd14', 'no_lang_code', 1, 'https://ror.org/0042ytd14 Shizuoka Cancer Center é™å²”ēœŒē«‹é™å²”ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(99978, 'https://ror.org/043hyzt56', 'en', 1, 'https://ror.org/043hyzt56 Ladoke Akintola University of Technology'),
(99979, 'https://ror.org/04ptfwx96', 'pt', 1, 'https://ror.org/04ptfwx96 Escola Superior de Artes e Design'),
(99980, 'https://ror.org/04mbdq019', 'en', 1, 'https://ror.org/04mbdq019 Benito JuÔrez Autonomous University of Oaxaca Universidad Autónoma Benito JuÔrez de Oaxaca'),
(99981, 'https://ror.org/01mgtm102', 'no_lang_code', 1, 'https://ror.org/01mgtm102 MSD (Italy)'),
(99982, 'https://ror.org/03hq67y94', 'en', 1, 'https://ror.org/03hq67y94 University of Life Sciences in Lublin Uniwersytet Przyrodniczy w Lublinie'),
(99983, 'https://ror.org/032c3ae16', 'en', 1, 'https://ror.org/032c3ae16 Universitat Nicolau de Cusa University Niccolò Cusano Università degli Studi Niccolò Cusano Université nicolas de cues Univerza Nikolaj Kuzanski'),
(99984, 'https://ror.org/01wrp1146', 'en', 1, 'https://ror.org/01wrp1146 Victorian Institute of Forensic Medicine'),
(99985, 'https://ror.org/00812tr26', 'en', 1, 'https://ror.org/00812tr26 International European University ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99986, 'https://ror.org/030avcv93', 'en', 1, 'https://ror.org/030avcv93 Sukhoi State Technical University of Gomel Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П.Šž.Š”ŃƒŃ…Š¾Š³Š¾ Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń П.Š’.Š”ŃƒŃ…Š¾Š³Š°'),
(99987, 'https://ror.org/023qmza96', 'en', 1, 'https://ror.org/023qmza96 Salem State University UniversitƩ d''Ʃtat de salem'),
(99988, 'https://ror.org/052vdrx60', 'en', 1, 'https://ror.org/052vdrx60 Indian Institute of Management Tiruchirappalli ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¤ą¤æą¤°ą„ą¤šą„ą¤šą¤æą¤°ą¤¾ą¤Ŗą¤²ą„ą¤²ą„€ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ,ą®¤ą®æą®°ąÆą®šąÆą®šą®æą®°ą®¾ą®ŖąÆą®Ŗą®³ąÆą®³ą®æ'),
(99989, 'https://ror.org/014hpw227', 'es', 1, 'https://ror.org/014hpw227 Universidad Antonio NariƱo'),
(99990, 'https://ror.org/034gcgd08', 'en', 1, 'https://ror.org/034gcgd08 University of Hartford UniversitƩ de Hartford'),
(99991, 'https://ror.org/02yvp6477', 'en', 1, 'https://ror.org/02yvp6477 University of Batna 2 UniversitĆ© de Batna 2 Ų¬Ų§Ł…Ų¹Ų© باتنة 2 مصطفى بن ŲØŁˆŁ„Ų¹ŁŠ'),
(99992, 'https://ror.org/04hp0cf98', 'en', 1, 'https://ror.org/04hp0cf98 ABES Engineering College'),
(99993, 'https://ror.org/02necmg68', 'no_lang_code', 1, 'https://ror.org/02necmg68 Navrachana University'),
(99994, 'https://ror.org/05bwaty49', 'en', 1, 'https://ror.org/05bwaty49 Kingston Health Sciences Centre'),
(99995, 'https://ror.org/02wb73912', 'en', 1, 'https://ror.org/02wb73912 California Academy of Sciences'),
(99996, 'https://ror.org/058cmd703', 'en', 1, 'https://ror.org/058cmd703 Joint Global Change Research Institute'),
(99997, 'https://ror.org/050ktqq97', 'en', 1, 'https://ror.org/050ktqq97 Mouloud Mammeri University of Tizi-Ouzou Ų¬Ų§Ł…Ų¹Ų© Ł…ŁˆŁ„ŁˆŲÆ Ł…Ų¹Ł…Ų±ŁŠ'),
(99998, 'https://ror.org/024fm2y42', 'en', 1, 'https://ror.org/024fm2y42 Curtin University Sarawak'),
(99999, 'https://ror.org/05wqqhv83', 'en', 1, 'https://ror.org/05wqqhv83 Division of Ocean Sciences'),
(100000, 'https://ror.org/04mfr5763', 'id', 1, 'https://ror.org/04mfr5763 Universitas Sulawesi Barat West Sulawesi University'),
(100001, 'https://ror.org/01358s213', 'en', 1, 'https://ror.org/01358s213 Universidad del QuindĆ­o University of QuindĆ­o'),
(100002, 'https://ror.org/052nhnq73', 'en', 1, 'https://ror.org/052nhnq73 University for Development Studies'),
(100003, 'https://ror.org/05e94g991', 'en', 1, 'https://ror.org/05e94g991 Universidad de Illinois University of Illinois System UniversitƩ de l''illinois'),
(100004, 'https://ror.org/02sr8jt85', 'en', 1, 'https://ror.org/02sr8jt85 Shinawatra University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŠąø“ąø™ąø§ąø±ąø•ąø£'),
(100005, 'https://ror.org/05mqvn149', 'en', 1, 'https://ror.org/05mqvn149 Philadelphia University Ų¬Ų§Ł…Ų¹Ų© ŁŁŠŁ„Ų§ŲÆŁ„ŁŁŠŲ§'),
(100006, 'https://ror.org/009gpfg16', 'id', 1, 'https://ror.org/009gpfg16 Universitas Bung Hatta'),
(100007, 'https://ror.org/017ebfz38', 'en', 1, 'https://ror.org/017ebfz38 National Institute of Technology Warangal ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, वारांगल'),
(100008, 'https://ror.org/00shpc021', 'fr', 1, 'https://ror.org/00shpc021 Fonds de Recherche du QuƩbec - SociƩtƩ et culture'),
(100009, 'https://ror.org/0027cag10', 'en', 1, 'https://ror.org/0027cag10 Danylo Halytsky Lviv National Medical University Lwowski Narodowy Uniwersytet Medyczny im. Daniela Halickiego Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Данила Галицкого Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Данила Š“Š°Š»ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(100010, 'https://ror.org/03hv7a629', 'es', 1, 'https://ror.org/03hv7a629 Corporación Universitaria Empresarial Alexander von Humboldt'),
(100011, 'https://ror.org/0098gnz32', 'en', 1, 'https://ror.org/0098gnz32 Norwegian Defence Research Establishment'),
(100012, 'https://ror.org/041re0e60', 'en', 1, 'https://ror.org/041re0e60 R.V. College of Engineering'),
(100013, 'https://ror.org/0171n2m64', 'es', 1, 'https://ror.org/0171n2m64 Instituto Superior Tecnológico Bolivariano de Tecnología'),
(100014, 'https://ror.org/04d4hxn32', 'en', 1, 'https://ror.org/04d4hxn32 Dwarkadas J. Sanghvi College of Engineering'),
(100015, 'https://ror.org/05xzf9508', 'en', 1, 'https://ror.org/05xzf9508 Federal University of Technology Owerri'),
(100016, 'https://ror.org/008kvxw43', 'fr', 1, 'https://ror.org/008kvxw43 Ɖcole SupĆ©rieure des Technologies Industrielles AvancĆ©es'),
(100017, 'https://ror.org/00gcpds33', 'en', 1, 'https://ror.org/00gcpds33 Mongolian National University of Medical Sciences Анагаахын ŠØŠøŠ½Š¶Š»ŃŃ… Ухааны Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(100018, 'https://ror.org/048wxdk46', 'en', 1, 'https://ror.org/048wxdk46 Khorramshahr University of Marine Science and Technology دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† دریایی خرمؓهر'),
(100019, 'https://ror.org/03t54am93', 'en', 1, 'https://ror.org/03t54am93 Hƶgskolan i Jƶnkƶping Jƶnkƶping University'),
(100020, 'https://ror.org/0240hnb85', 'id', 1, 'https://ror.org/0240hnb85 Universitas Serambi Mekkah'),
(100021, 'https://ror.org/01m3rmj58', 'en', 1, 'https://ror.org/01m3rmj58 Educational Research Institute'),
(100022, 'https://ror.org/01cs0jg44', 'en', 1, 'https://ror.org/01cs0jg44 Ho Chi Minh City University of Education TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m ThĆ nh phố Hồ ChĆ­ Minh'),
(100023, 'https://ror.org/04aah1z61', 'en', 1, 'https://ror.org/04aah1z61 Norsk institutt for bioĆøkonomi Norwegian Institute of Bioeconomy Research'),
(100024, 'https://ror.org/0067fqk38', 'en', 1, 'https://ror.org/0067fqk38 St Mary''s University Twickenham London'),
(100025, 'https://ror.org/03b6ffh07', 'en', 1, 'https://ror.org/03b6ffh07 Sharda University'),
(100026, 'https://ror.org/01wykm490', 'en', 1, 'https://ror.org/01wykm490 Omar Al-Mukhtar University Ų¬Ų§Ł…Ų¹Ų© عمر المختار'),
(100027, 'https://ror.org/04jpdpb33', 'es', 1, 'https://ror.org/04jpdpb33 Instituto de HistologĆ­a y EmbriologĆ­a de Mendoza'),
(100028, 'https://ror.org/04hteea03', 'en', 1, 'https://ror.org/04hteea03 Pittsburg State University'),
(100029, 'https://ror.org/00e8ykd54', 'nl', 1, 'https://ror.org/00e8ykd54 Albert Schweitzer Ziekenhuis'),
(100030, 'https://ror.org/006maft66', 'it', 1, 'https://ror.org/006maft66 UniversitĆ  degli Studi eCampus'),
(100031, 'https://ror.org/03xw95w54', 'es', 1, 'https://ror.org/03xw95w54 CETAQUA Water Technology Centre Centro Tecnológico del Agua'),
(100032, 'https://ror.org/031n6w191', 'es', 1, 'https://ror.org/031n6w191 Universidad de Manizales'),
(100033, 'https://ror.org/005bw2d06', 'en', 1, 'https://ror.org/005bw2d06 University of Port Harcourt YunifÔsítì ìlú Ebute Harcourt'),
(100034, 'https://ror.org/02d5b7g69', 'en', 1, 'https://ror.org/02d5b7g69 Dhirubhai Ambani Institute of Information and Communication Technology ધીરુભાઇ અંબાણી ąŖ‡ąŖØą«ąŖøą«ąŖŸąŖæąŖŸą«ąŖÆą«ąŖŸ ąŖ“ąŖ« ąŖ‡ąŖØą«ąŖ«ą«‹ąŖ°ą«ąŖ®ą«‡ąŖ¶ąŖØ ąŖąŖØą«ąŖ” ąŖ•ąŖ®ą«ąŖÆą«ąŖØąŖæąŖ•ą«‡ąŖ¶ąŖØ ąŖŸą«‡ąŖ•ą«ąŖØą«‹ąŖ²ą«‹ąŖœą«€'),
(100035, 'https://ror.org/05s3qq987', 'en', 1, 'https://ror.org/05s3qq987 Libyan Academy Ų§Ł„Ų£ŁƒŁ€Ł€Ų§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ł„ŁŠŲØŁŠŲ©'),
(100036, 'https://ror.org/03hbmgt12', 'en', 1, 'https://ror.org/03hbmgt12 Hochschule Rosenheim Rosenheim Technical University of Applied Sciences TH Rosenheim Technische Hochschule Rosenheim'),
(100037, 'https://ror.org/001805t51', 'en', 1, 'https://ror.org/001805t51 Koninklijk Museum voor Centraal -Afrika MusƩe royal de l''Afrique central Royal Museum for Central Africa'),
(100038, 'https://ror.org/01r7w2j21', 'en', 1, 'https://ror.org/01r7w2j21 Akal University ਅਕਾਲ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(100039, 'https://ror.org/01r2c3v86', 'es', 1, 'https://ror.org/01r2c3v86 Universidad San Francisco de Quito'),
(100040, 'https://ror.org/02xp9d883', 'en', 1, 'https://ror.org/02xp9d883 Banco de MƩxico Bank of Mexico'),
(100041, 'https://ror.org/02njs1t69', 'en', 1, 'https://ror.org/02njs1t69 Leitat Technological Center'),
(100042, 'https://ror.org/03xry4v27', 'en', 1, 'https://ror.org/03xry4v27 Slovenian National Building and Civil Engineering Institute'),
(100043, 'https://ror.org/026441d17', 'en', 1, 'https://ror.org/026441d17 Mindanao State University Pamantasang Mindanao'),
(100044, 'https://ror.org/01mhwgh68', 'no_lang_code', 1, 'https://ror.org/01mhwgh68 MSD (Singapore)'),
(100045, 'https://ror.org/010zh7098', 'en', 1, 'https://ror.org/010zh7098 Saint Mary''s University UniversitƩ saint mary'),
(100046, 'https://ror.org/04r23zn56', 'en', 1, 'https://ror.org/04r23zn56 Universidad de Cuenca University of Cuenca'),
(100047, 'https://ror.org/024v3fg07', 'en', 1, 'https://ror.org/024v3fg07 Parul University'),
(100048, 'https://ror.org/030dn1812', 'no_lang_code', 1, 'https://ror.org/030dn1812 Marwadi University'),
(100049, 'https://ror.org/01fpczx89', 'en', 1, 'https://ror.org/01fpczx89 Tennessee State University UniversitĆ© d''Ɖtat du tennessee'),
(100050, 'https://ror.org/001nta019', 'fr', 1, 'https://ror.org/001nta019 INSA Strasbourg Institut National des Sciences AppliquƩes de Strasbourg'),
(100051, 'https://ror.org/04axvmf19', 'es', 1, 'https://ror.org/04axvmf19 Corporación Unificada Nacional de Educación Superior'),
(100052, 'https://ror.org/04xgbph11', 'en', 1, 'https://ror.org/04xgbph11 Presidency University ą¤Ŗą„ą¤°ą„‡ą¤øą¤æą¤”ą„‡ą¤‚ą¤øą„€ ą¤•ą„‰ą¤²ą„‡ą¤œ ą¦Ŗą§ą¦°ą§‡ą¦øą¦æą¦”ą§‡ą¦Øą§ą¦øą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®®ą®¾ą®Øą®æą®²ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(100053, 'https://ror.org/03b3baf09', 'en', 1, 'https://ror.org/03b3baf09 Institute of Power Engineering'),
(100054, 'https://ror.org/04dx2y384', 'en', 1, 'https://ror.org/04dx2y384 Sarhad University of Science and Information Technology جامعہ Ų³Ų±Ų­ŲÆ'),
(100055, 'https://ror.org/03xq4x896', 'nl', 1, 'https://ror.org/03xq4x896 Institut de mƩdecine tropicale Institute of Tropical Medicine Antwerp Instituut voor Tropische Geneeskunde'),
(100056, 'https://ror.org/050adtn77', 'id', 1, 'https://ror.org/050adtn77 Universitas Semarang'),
(100057, 'https://ror.org/006vzad83', 'en', 1, 'https://ror.org/006vzad83 Tata Medical Center টাটা ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦°'),
(100058, 'https://ror.org/05nrs2490', 'en', 1, 'https://ror.org/05nrs2490 University of Nebraska Foundation'),
(100059, 'https://ror.org/04z893x06', 'en', 1, 'https://ror.org/04z893x06 Langston University'),
(100060, 'https://ror.org/04gz69q88', 'id', 1, 'https://ror.org/04gz69q88 Universitas Cokroaminoto Palopo'),
(100061, 'https://ror.org/013vs5h31', 'en', 1, 'https://ror.org/013vs5h31 SRM University, Andhra Pradesh ą°Žą°øą±.ą°†ą°°ą±.ą°Žą°‚ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ అమరావతి ą°†ą°‚ą°§ą±ą°°ą°Ŗą±ą°°ą°¦ą±‡ą°¶ą±'),
(100062, 'https://ror.org/01qedwh63', 'en', 1, 'https://ror.org/01qedwh63 Museum of London Archaeology'),
(100063, 'https://ror.org/00s8vne50', 'en', 1, 'https://ror.org/00s8vne50 Yerevan State University ŌµÖ€Ö‡Õ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(100064, 'https://ror.org/008szy192', 'en', 1, 'https://ror.org/008szy192 Institute of Field and Vegetable Crops'),
(100065, 'https://ror.org/00j0w4q23', 'en', 1, 'https://ror.org/00j0w4q23 African Institute for Mathematical Sciences Senegal Institut Africain des Sciences MathƩmatiques SƩnƩgal'),
(100066, 'https://ror.org/021f99908', 'fr', 1, 'https://ror.org/021f99908 Ɖcole SupĆ©rieure PrivĆ©e d''IngĆ©nierie et de Technologies المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ الخاصة للهندسة و Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(100067, 'https://ror.org/01wea3g49', 'es', 1, 'https://ror.org/01wea3g49 Escuela Superior Politécnica Agropecuaria de Manabí Manuel Félix López'),
(100068, 'https://ror.org/01gx2kf62', 'en', 1, 'https://ror.org/01gx2kf62 Trinity Laban Conservatoire of Music and Dance'),
(100069, 'https://ror.org/016n74679', 'en', 1, 'https://ror.org/016n74679 Centre wallon de Recherches Agronomiques Walloon Agricultural Research Centre'),
(100070, 'https://ror.org/02x2akc96', 'en', 1, 'https://ror.org/02x2akc96 Washington State Department of Health'),
(100071, 'https://ror.org/05tw0x522', 'en', 1, 'https://ror.org/05tw0x522 NIMS University'),
(100072, 'https://ror.org/03v4km086', 'pl', 1, 'https://ror.org/03v4km086 Instytut Matki i Dziecka'),
(100073, 'https://ror.org/04909p852', 'en', 1, 'https://ror.org/04909p852 National Institute of Technology Kurukshetra'),
(100074, 'https://ror.org/0380hzw75', 'id', 1, 'https://ror.org/0380hzw75 Universitas Wijaya Putra'),
(100075, 'https://ror.org/04ch0eh11', 'en', 1, 'https://ror.org/04ch0eh11 Al Rasheed University College'),
(100076, 'https://ror.org/02shwmm76', 'en', 1, 'https://ror.org/02shwmm76 Center for Unmanned Aircraft Systems'),
(100077, 'https://ror.org/02pkt3s45', 'en', 1, 'https://ror.org/02pkt3s45 University of St. Thomas - Texas'),
(100078, 'https://ror.org/05xr2yq54', 'es', 1, 'https://ror.org/05xr2yq54 Centro de Investigacion Principe Felipe PrĆ­ncipe Felipe Research Center'),
(100079, 'https://ror.org/032kdwk38', 'en', 1, 'https://ror.org/032kdwk38 University of Ilorin YunifÔsítì ìlú Ilorin'),
(100080, 'https://ror.org/01vf7gd47', 'es', 1, 'https://ror.org/01vf7gd47 Escuela Colombiana de Carreras Industriales'),
(100081, 'https://ror.org/004nn4n27', 'en', 1, 'https://ror.org/004nn4n27 MSD (UK) Limited MSD (UK) Limited (United Kingdom)'),
(100082, 'https://ror.org/04gg60e72', 'de', 1, 'https://ror.org/04gg60e72 Hochschule Aalen'),
(100083, 'https://ror.org/04y8eg478', 'es', 1, 'https://ror.org/04y8eg478 Universidad Tecnológica de Nayarit'),
(100084, 'https://ror.org/03rk9sq81', 'en', 1, 'https://ror.org/03rk9sq81 Malayer University'),
(100085, 'https://ror.org/03aph1990', 'en', 1, 'https://ror.org/03aph1990 National University Zaporizhzhia Polytechnic ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ° політехніка»'),
(100086, 'https://ror.org/02qs41y18', 'en', 1, 'https://ror.org/02qs41y18 GeoEcoMar Institutul Național de Cercetare-Dezvoltare pentru Geologie și Geoecologie Marină'),
(100087, 'https://ror.org/03rcspa57', 'en', 1, 'https://ror.org/03rcspa57 Kettering University'),
(100088, 'https://ror.org/03g41pw14', 'en', 1, 'https://ror.org/03g41pw14 University of Blida UnivĆ©rsitĆ© Saad Dahlab Blida Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁ„ŁŠŲÆŲ©'),
(100089, 'https://ror.org/01pk2ck74', 'en', 1, 'https://ror.org/01pk2ck74 KIMEP University ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Š½ŠøŃ ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ менеГжмент'),
(100090, 'https://ror.org/0161dyt30', 'en', 1, 'https://ror.org/0161dyt30 Khwaja Fareed University of Engineering and Information Technology خواجہ فرید ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§Ł†Ų¬ŪŒŁ†ŪŒŲ¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(100091, 'https://ror.org/045tsnx36', 'es', 1, 'https://ror.org/045tsnx36 Fundación Universitaria CIEO - UNICIEO'),
(100092, 'https://ror.org/01jvpb595', 'nl', 1, 'https://ror.org/01jvpb595 St. Antonius Hospital St. Antonius Ziekenhuis'),
(100093, 'https://ror.org/03m2kj587', 'de', 1, 'https://ror.org/03m2kj587 Hochschule Hannover'),
(100094, 'https://ror.org/02xe2fg84', 'en', 1, 'https://ror.org/02xe2fg84 Shoolini University'),
(100095, 'https://ror.org/0278jft56', 'en', 1, 'https://ror.org/0278jft56 Federal University Dutse'),
(100096, 'https://ror.org/01s8nf094', 'en', 1, 'https://ror.org/01s8nf094 University of Religions and Denominations دانؓگاه Ų§ŲÆŪŒŲ§Ł† و مذاهب'),
(100097, 'https://ror.org/042m3ve83', 'nl', 1, 'https://ror.org/042m3ve83 GGZ inGeest'),
(100098, 'https://ror.org/04hyq8434', 'en', 1, 'https://ror.org/04hyq8434 Thomayer University Hospital Thomayerova nemocnice'),
(100099, 'https://ror.org/02s7j7z43', 'en', 1, 'https://ror.org/02s7j7z43 Institute of Nano Science and Technology ą¤Øą„ˆą¤Øą„‹ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(100100, 'https://ror.org/00s67c790', 'en', 1, 'https://ror.org/00s67c790 Eesti Maaülikool Estonian University of Life Sciences'),
(100101, 'https://ror.org/01km6p862', 'en', 1, 'https://ror.org/01km6p862 United Arab Emirates University Ų¬Ų§Ł…Ų¹Ų© ال؄مارات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© المتحدة'),
(100102, 'https://ror.org/02j6qd180', 'es', 1, 'https://ror.org/02j6qd180 Asociación de Investigación Metalúrgica del Noroeste'),
(100103, 'https://ror.org/049z8cx69', 'en', 1, 'https://ror.org/049z8cx69 NATO Centre for Maritime Research and Experimentation'),
(100104, 'https://ror.org/00kt5kp12', 'no_lang_code', 1, 'https://ror.org/00kt5kp12 MSD (France)'),
(100105, 'https://ror.org/00ywqar95', 'en', 1, 'https://ror.org/00ywqar95 Universitatea Valahia din TĆ¢rgoviște Valahia University of Targoviste'),
(100106, 'https://ror.org/025x8qw35', 'es', 1, 'https://ror.org/025x8qw35 Center for Theoretical Physics and Mathematics Centro de Física Teórica y MatemÔticas'),
(100107, 'https://ror.org/03xyve152', 'en', 1, 'https://ror.org/03xyve152 National Autonomous University of Honduras Universidad Nacional Autónoma de Honduras'),
(100108, 'https://ror.org/002jegx53', 'id', 1, 'https://ror.org/002jegx53 Universitas Nusantara PGRI Kediri'),
(100109, 'https://ror.org/04awzyg03', 'fr', 1, 'https://ror.org/04awzyg03 BIOASTER'),
(100110, 'https://ror.org/02dpvst32', 'en', 1, 'https://ror.org/02dpvst32 Kinnaird College for Women University Ś©Ł†ŪŒŲ¦Ų±Śˆ کالج'),
(100111, 'https://ror.org/0474ygz28', 'en', 1, 'https://ror.org/0474ygz28 University Clinical Center Tuzla'),
(100112, 'https://ror.org/02dfe8754', 'en', 1, 'https://ror.org/02dfe8754 Dr. N.G.P. Institute of Technology'),
(100113, 'https://ror.org/003qt4p19', 'pt', 1, 'https://ror.org/003qt4p19 Federal University of Pampa Universidade Federal do Pampa'),
(100114, 'https://ror.org/04abxn418', 'pt', 1, 'https://ror.org/04abxn418 Universidade JosƩ do RosƔrio Vellano'),
(100115, 'https://ror.org/03bp5hc83', 'es', 1, 'https://ror.org/03bp5hc83 Universidad de Antioquia University of Antioquia');
INSERT INTO `rors` VALUES
(100116, 'https://ror.org/0526p1y61', 'en', 1, 'https://ror.org/0526p1y61 Oak Ridge Associated Universities'),
(100117, 'https://ror.org/04jedda80', 'en', 1, 'https://ror.org/04jedda80 Kaohsiung Veterans General Hospital'),
(100118, 'https://ror.org/048tesw25', 'es', 1, 'https://ror.org/048tesw25 European University of the Atlantic Universidad Europea del AtlƔntico'),
(100119, 'https://ror.org/02ar8gr68', 'en', 1, 'https://ror.org/02ar8gr68 Kyrgyz National University QirgŹ»iz milliy universiteti Š–ŃƒŃŃƒŠæ Баласагын атынГагы ŠšŃ‹Ń€Š³Ń‹Š· Š£Š»ŃƒŃ‚Ń‚ŃƒŠŗ Университети ŠšŠøŃ€Š³ŠøŠ·ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š–ŃƒŃŃƒŠæŠ° Баласагына'),
(100120, 'https://ror.org/00jhp9q75', 'it', 1, 'https://ror.org/00jhp9q75 Azienda UnitĆ  Sanitaria Locale di Ferrara'),
(100121, 'https://ror.org/044deqz63', 'en', 1, 'https://ror.org/044deqz63 Thai Nguyen University Of Education TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m ThĆ”i NguyĆŖn'),
(100122, 'https://ror.org/031vnay14', 'en', 1, 'https://ror.org/031vnay14 Mountain Area Health Education Center'),
(100123, 'https://ror.org/04m9gzq43', 'es', 1, 'https://ror.org/04m9gzq43 Universidad El Bosque'),
(100124, 'https://ror.org/0003e4m70', 'en', 1, 'https://ror.org/0003e4m70 Hull York Medical School'),
(100125, 'https://ror.org/01q9mqz67', 'en', 1, 'https://ror.org/01q9mqz67 University of Swat ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų³ŁˆŲ§ŲŖā€Ž'),
(100126, 'https://ror.org/01b7wh712', 'en', 1, 'https://ror.org/01b7wh712 Kazan State Technical University named after A. N. Tupolev Казанский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š. Туполева'),
(100127, 'https://ror.org/03crmsn52', 'fr', 1, 'https://ror.org/03crmsn52 Institut de Recherche Technologique SystemX'),
(100128, 'https://ror.org/045e97x26', 'en', 1, 'https://ror.org/045e97x26 Petra Christian University Universitas Kristen Petra'),
(100129, 'https://ror.org/04xgcc957', 'en', 1, 'https://ror.org/04xgcc957 Epoka University Universiteti Epoka'),
(100130, 'https://ror.org/03dp11s58', 'en', 1, 'https://ror.org/03dp11s58 Raisoni Group of Institutions'),
(100131, 'https://ror.org/03b4za748', 'en', 1, 'https://ror.org/03b4za748 Seton Hill University'),
(100132, 'https://ror.org/02d10f818', 'en', 1, 'https://ror.org/02d10f818 Lala Lajpat Rai University of Veterinary and Animal Sciences लाला लाजपतराय ą¤Ŗą¤¶ą„ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤ą¤µą¤‚ ą¤Ŗą¤¶ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ லாலா ą®²ą®œą®Ŗą®¤ą®æą®°ą®¾ą®ÆąÆ ą®•ą®¾ą®²ąÆą®Øą®ŸąÆˆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®æą®²ą®™ąÆą®•ą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(100133, 'https://ror.org/02g4pvf45', 'en', 1, 'https://ror.org/02g4pvf45 B.M.S. College of Engineering ಬೀ.ą²Žą²‚.ą²Žą²øą³. ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(100134, 'https://ror.org/03wvtrq14', 'en', 1, 'https://ror.org/03wvtrq14 National Institute of Fundamental Studies ą¶¢ą·ą¶­ą·’ą¶š ą¶øą·–ą¶½ą·’ą¶š ą¶…ą¶°ą·Šā€ą¶ŗą¶± ආයතනය'),
(100135, 'https://ror.org/02kdm5630', 'en', 1, 'https://ror.org/02kdm5630 Riphah International University'),
(100136, 'https://ror.org/04sms9203', 'en', 1, 'https://ror.org/04sms9203 Aschaffenburg University of Applied Sciences Technische Hochschule Aschaffenburg'),
(100137, 'https://ror.org/000n1k313', 'en', 1, 'https://ror.org/000n1k313 Sylhet Agricultural University ą¦øą¦æą¦²ą§‡ą¦Ÿ ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(100138, 'https://ror.org/03s9gtm48', 'en', 1, 'https://ror.org/03s9gtm48 E.G.S. Pillay Engineering College'),
(100139, 'https://ror.org/01eqvd516', 'no_lang_code', 1, 'https://ror.org/01eqvd516 MSD (Sweden)'),
(100140, 'https://ror.org/02g6rcz57', 'en', 1, 'https://ror.org/02g6rcz57 Chandrakasem Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøˆąø±ąø™ąø—ąø£ą¹€ąøąø©ąø”'),
(100141, 'https://ror.org/01eeqzy24', 'en', 1, 'https://ror.org/01eeqzy24 HĆøgskulen i Volda Volda University College'),
(100142, 'https://ror.org/05mr3e010', 'es', 1, 'https://ror.org/05mr3e010 Universidad Nacional Hermilio ValdizƔn'),
(100143, 'https://ror.org/05n545h05', 'en', 1, 'https://ror.org/05n545h05 St. Edward''s University'),
(100144, 'https://ror.org/02tdf3n85', 'en', 1, 'https://ror.org/02tdf3n85 Dordt University'),
(100145, 'https://ror.org/00bxg8434', 'es', 1, 'https://ror.org/00bxg8434 Althaia'),
(100146, 'https://ror.org/05qcsva92', 'en', 1, 'https://ror.org/05qcsva92 Chuo cha Elimu ya Biashara College of Business Education'),
(100147, 'https://ror.org/04dx54y73', 'en', 1, 'https://ror.org/04dx54y73 Institutt for fredsforskning Peace Research Institute Oslo'),
(100148, 'https://ror.org/0316x1478', 'en', 1, 'https://ror.org/0316x1478 Chuo Kikuu cha Taifa cha Zanzibar State University of Zanzibar'),
(100149, 'https://ror.org/048gkf592', 'en', 1, 'https://ror.org/048gkf592 Moravian University'),
(100150, 'https://ror.org/039p8pn96', 'en', 1, 'https://ror.org/039p8pn96 Viterbo University'),
(100151, 'https://ror.org/01c9f4y89', 'en', 1, 'https://ror.org/01c9f4y89 Kyrgyz State Technical University ŠšŃ‹Ń€Š³Ń‹Š· мамлекеттик техникалык ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100152, 'https://ror.org/001rdde17', 'en', 1, 'https://ror.org/001rdde17 Hamm-Lippstadt University of Applied Sciences Hochschule Hamm-Lippstadt'),
(100153, 'https://ror.org/05kyrk544', 'en', 1, 'https://ror.org/05kyrk544 Zimbabwe Open University'),
(100154, 'https://ror.org/0228k1a18', 'en', 1, 'https://ror.org/0228k1a18 Linfield College'),
(100155, 'https://ror.org/05m3vpd98', 'en', 1, 'https://ror.org/05m3vpd98 FOM - Hochschule für Oekonomie und Management FOM University of Applied Sciences for Economics and Management'),
(100156, 'https://ror.org/05vqbh574', 'en', 1, 'https://ror.org/05vqbh574 Indian Institute of Management Raipur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(100157, 'https://ror.org/05cxx5e41', 'en', 1, 'https://ror.org/05cxx5e41 RENA Technologies Austria GmbH RENA Technologies Austria GmbH (Austria)'),
(100158, 'https://ror.org/0044w3h23', 'en', 1, 'https://ror.org/0044w3h23 Heidelberg University of Education PƤdagogische Hochschule Heidelberg'),
(100159, 'https://ror.org/05r0q9p84', 'en', 1, 'https://ror.org/05r0q9p84 Calvin University'),
(100160, 'https://ror.org/00mkp3p47', 'en', 1, 'https://ror.org/00mkp3p47 Jayoti Vidyapeeth Women''s University ą¤œą„ą¤Æą„‹ą¤¤ą¤æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  महिला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(100161, 'https://ror.org/01g1gvr46', 'no_lang_code', 1, 'https://ror.org/01g1gvr46 Viatris'),
(100162, 'https://ror.org/00yh88643', 'en', 1, 'https://ror.org/00yh88643 Superior University سپیریئر کالج'),
(100163, 'https://ror.org/033sm2k57', 'en', 1, 'https://ror.org/033sm2k57 Open University of Cyprus Ī‘Ī½ĪæĪ¹ĪŗĻ„ĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(100164, 'https://ror.org/00qa6r925', 'en', 1, 'https://ror.org/00qa6r925 Kyoto University of Advanced Science äŗ¬éƒ½å…ˆē«Æē§‘å­¦å¤§å­¦'),
(100165, 'https://ror.org/04k89yk85', 'en', 1, 'https://ror.org/04k89yk85 University of Kurdistan دانؓگاه کردستان'),
(100166, 'https://ror.org/00hy0st98', 'id', 1, 'https://ror.org/00hy0st98 Universitas Dehasen Bengkulu'),
(100167, 'https://ror.org/04bmr7q61', 'it', 1, 'https://ror.org/04bmr7q61 Aziende Socio Sanitarie Territoriali di Lecco Regional Health Care and Social Agency of Lecco'),
(100168, 'https://ror.org/04dgb8y52', 'es', 1, 'https://ror.org/04dgb8y52 Institute of Food Science Research Instituto de Investigación en Ciencias de la Alimentación'),
(100169, 'https://ror.org/01aams644', 'en', 1, 'https://ror.org/01aams644 Easwari Engineering College'),
(100170, 'https://ror.org/02d8v0v24', 'it', 1, 'https://ror.org/02d8v0v24 Libera UniversitĆ  Maria SS. Assunta Libera UniversitĆ  Maria Santissima Assunta Maria SS. Assunta University of Rome'),
(100171, 'https://ror.org/01dj05x81', 'en', 1, 'https://ror.org/01dj05x81 Federal University Dutsin-Ma'),
(100172, 'https://ror.org/0119zea93', 'en', 1, 'https://ror.org/0119zea93 Moscow Witte University'),
(100173, 'https://ror.org/00sw6rd76', 'no_lang_code', 1, 'https://ror.org/00sw6rd76 Bilad Alrafidain University College ŁƒŁ„ŁŠŲ© بلاد Ų§Ł„Ų±Ų§ŁŲÆŁŠŁ† الجامعة'),
(100174, 'https://ror.org/01wjxn842', 'pt', 1, 'https://ror.org/01wjxn842 Pontifícia Universidade Católica de Campinas Université pontificale catholique de campinas'),
(100175, 'https://ror.org/056t38c37', 'en', 1, 'https://ror.org/056t38c37 Vlerick Business School'),
(100176, 'https://ror.org/011g3me54', 'es', 1, 'https://ror.org/011g3me54 Instituto de Altos Estudios Nacionales'),
(100177, 'https://ror.org/04w077t62', 'en', 1, 'https://ror.org/04w077t62 Universitas Bengkulu University of Bengkulu'),
(100178, 'https://ror.org/02h7fsz12', 'es', 1, 'https://ror.org/02h7fsz12 Universidad Nacional de San MartĆ­n'),
(100179, 'https://ror.org/01h41r361', 'en', 1, 'https://ror.org/01h41r361 Lembaga Getah Malaysia Malaysian Rubber Board'),
(100180, 'https://ror.org/02kvg7a66', 'pt', 1, 'https://ror.org/02kvg7a66 Instituto Federal de Educação, Ciência e Tecnologia do Sudeste de Minas Gerais Instituto Federal do Sudeste de Minas Gerais'),
(100181, 'https://ror.org/01t5m8p03', 'en', 1, 'https://ror.org/01t5m8p03 Borys Grinchenko Kyiv Metropolitan University ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ столичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Бориса Грінченка'),
(100182, 'https://ror.org/03wf51b65', 'de', 1, 'https://ror.org/03wf51b65 SLUB Dresden Saxon State and University Library Dresden'),
(100183, 'https://ror.org/03z1wm043', 'id', 1, 'https://ror.org/03z1wm043 Universitas Islam Negeri Sumatera Utara'),
(100184, 'https://ror.org/02zk3am42', 'de', 1, 'https://ror.org/02zk3am42 Luzerner Kantonsspital'),
(100185, 'https://ror.org/0498ekt05', 'pt', 1, 'https://ror.org/0498ekt05 Laboratório Nacional de Computação Científica'),
(100186, 'https://ror.org/03k1z9s75', 'no_lang_code', 1, 'https://ror.org/03k1z9s75 Temasek Polytechnic 淔马锔理巄学院'),
(100187, 'https://ror.org/01sb6ek09', 'en', 1, 'https://ror.org/01sb6ek09 Ghulam Ishaq Khan Institute of Engineering Sciences and Technology غلام Ų§Ų³Ų­Ų§Ł‚ Ų§Ł†Ų³Ł¹ŪŒŁ¹ŪŒŁˆŁ¹ ŲØŲ±Ų§Ų¦Ū’ Ų§Ł†Ų¬ŪŒŁ†ŪŒŲ±Ł†ŚÆ سائنس Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(100188, 'https://ror.org/03d9vfb50', 'en', 1, 'https://ror.org/03d9vfb50 Muhammadiyah University of Ponorogo'),
(100189, 'https://ror.org/04egzqc64', 'en', 1, 'https://ror.org/04egzqc64 Colombian Geological Survey Servicio Geológico Colombiano'),
(100190, 'https://ror.org/02qrdc062', 'en', 1, 'https://ror.org/02qrdc062 Peoria campus of the University of Illinois System'),
(100191, 'https://ror.org/03gnqp653', 'en', 1, 'https://ror.org/03gnqp653 Poornima University'),
(100192, 'https://ror.org/00kfp3012', 'en', 1, 'https://ror.org/00kfp3012 North Estonia Medical Centre'),
(100193, 'https://ror.org/01xtkxh20', 'en', 1, 'https://ror.org/01xtkxh20 Indian Institute of Technology Tirupati ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą±‹ą°²ą°œą±€ తిరుపతి'),
(100194, 'https://ror.org/00ey0ed83', 'en', 1, 'https://ror.org/00ey0ed83 Odense University Hospital'),
(100195, 'https://ror.org/020cpsb96', 'no_lang_code', 1, 'https://ror.org/020cpsb96 Satbayev University ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. И. Датпаева ŅšŠ°Š½Ń‹Ńˆ Дәтбаев атынГағы ŅšŠ°Š·Š°Ņ› ұлттық техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(100196, 'https://ror.org/056cezx90', 'en', 1, 'https://ror.org/056cezx90 Esslingen University of Applied Sciences Hochschule Esslingen'),
(100197, 'https://ror.org/00qsdn986', 'en', 1, 'https://ror.org/00qsdn986 Academy of Athens AcadĆ©mie d''athĆØnes ΑκαΓημία Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(100198, 'https://ror.org/03rsm0k65', 'en', 1, 'https://ror.org/03rsm0k65 Afe Babalola University'),
(100199, 'https://ror.org/00hzjtg80', 'no_lang_code', 1, 'https://ror.org/00hzjtg80 COMTES FHT a.s. Comtes Fht (Czechia)'),
(100200, 'https://ror.org/02na8dn90', 'en', 1, 'https://ror.org/02na8dn90 Essen University Hospital UniversitƤtsklinikum Essen'),
(100201, 'https://ror.org/04ejmmq75', 'en', 1, 'https://ror.org/04ejmmq75 Shanghai Academy of Agricultural Sciences äøŠęµ·åø‚å†œäøšē§‘å­¦é™¢'),
(100202, 'https://ror.org/05vtb1235', 'en', 1, 'https://ror.org/05vtb1235 University of Haripur ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ہری Ł¾ŁˆŲ±ā€Ž'),
(100203, 'https://ror.org/03gtcxd54', 'en', 1, 'https://ror.org/03gtcxd54 REVA University ರೇವ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(100204, 'https://ror.org/03m5f7m65', 'en', 1, 'https://ror.org/03m5f7m65 Pilot University of Colombia Universidad Piloto de Colombia'),
(100205, 'https://ror.org/02kw5st29', 'en', 1, 'https://ror.org/02kw5st29 Deggendorf Institute of Technology Technische Hochschule Deggendorf'),
(100206, 'https://ror.org/04bpsyk42', 'en', 1, 'https://ror.org/04bpsyk42 Saitama Prefectural University åŸ¼ēŽ‰ēœŒē«‹å¤§å­¦'),
(100207, 'https://ror.org/049b2cm85', 'es', 1, 'https://ror.org/049b2cm85 Instituto Nacional de Investigacion y Desarrollo Pesquero Instituto de BiologĆ­a Marina'),
(100208, 'https://ror.org/05pea1m70', 'en', 1, 'https://ror.org/05pea1m70 Shanghai Children''s Hospital äøŠęµ·åø‚å„æē«„åŒ»é™¢'),
(100209, 'https://ror.org/03a39z514', 'en', 1, 'https://ror.org/03a39z514 Abia State University YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ ƁbĆ­Ć”'),
(100210, 'https://ror.org/04nseet23', 'en', 1, 'https://ror.org/04nseet23 Office of the Director'),
(100211, 'https://ror.org/00rf3br26', 'en', 1, 'https://ror.org/00rf3br26 Kerala Veterinary and Animal Sciences University ą“•ąµ‡ą“°ą“³ ą“µąµ†ą“±ąµą“±ą“±ą“æą“Øą“±ą“æ ą“†ą“Øąµą“±ąµ ą“…ą“Øą“æą“®ąµ½ ą“øą“Æąµ»ą“øąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(100212, 'https://ror.org/041kdhz15', 'en', 1, 'https://ror.org/041kdhz15 University of Buea UniversitƩ de Buea'),
(100213, 'https://ror.org/00dntj975', 'en', 1, 'https://ror.org/00dntj975 Science and Arts University دانؓگاه علم و هنر'),
(100214, 'https://ror.org/029efta16', 'es', 1, 'https://ror.org/029efta16 Universidad del Salvador UniversitƩ del salvador'),
(100215, 'https://ror.org/04hr99439', 'en', 1, 'https://ror.org/04hr99439 Centro Pfizer - Universidad de Granada - Junta de Andalucía de Genómica e Investigación Oncológica Pfizer-University of Granada-Junta de Andalucía Centre for Genomics and Oncological Research'),
(100216, 'https://ror.org/017p87168', 'en', 1, 'https://ror.org/017p87168 University of Limpopo'),
(100217, 'https://ror.org/0122bmm03', 'pt', 1, 'https://ror.org/0122bmm03 Federal University of Lavras Universidade Federal de Lavras'),
(100218, 'https://ror.org/008d6qw11', 'en', 1, 'https://ror.org/008d6qw11 Pacific Northwest University of Health Sciences'),
(100219, 'https://ror.org/058kvs153', 'en', 1, 'https://ror.org/058kvs153 University of Agricultural and Horticultural Sciences ą²Æą³‚ą²Øą²æą²µą²°ą³ą²øą²æą²Ÿą²æ ą²†ą²«ą³ ą²…ą²—ą³ą²°ą²æą²•ą²²ą³ą²šą²°ą²²ą³ ą²…ą²‚ą²”ą³ ą²¹ą²¾ą²°ą³ą²Ÿą²æą²•ą²²ą³ą²šą²°ą³ ą²øą³ˆą²Øą³ą²øą²øą³ - ą²øą³€ą²”ą³ ą²Æą³‚ą²Øą²æą²Ÿą³'),
(100220, 'https://ror.org/04d9an715', 'en', 1, 'https://ror.org/04d9an715 Xavier Institute of Social Service ą¤œą„‡ą¤µą¤æą¤Æą¤° समाज ą¤øą„‡ą¤µą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(100221, 'https://ror.org/0373te416', 'no_lang_code', 1, 'https://ror.org/0373te416 Uninova'),
(100222, 'https://ror.org/01gah6w46', 'en', 1, 'https://ror.org/01gah6w46 University of Southern Philippines Foundation'),
(100223, 'https://ror.org/01nrcma38', 'no_lang_code', 1, 'https://ror.org/01nrcma38 Bangkokthonburi University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø£ąøøąø‡ą¹€ąø—ąøžąø˜ąø™ąøšąøøąø£ąøµ'),
(100224, 'https://ror.org/019mzt973', 'no_lang_code', 1, 'https://ror.org/019mzt973 Roozbeh Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų±ŁˆŲ²ŲØŁ‡'),
(100225, 'https://ror.org/032xfst36', 'en', 1, 'https://ror.org/032xfst36 University of Kashmir ą¤•ą¤¶ą„ą¤®ą„€ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦•ą¦¾ą¦¶ą§ą¦®ą§€ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®•ą®¾ą®šąÆą®®ąÆ€ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(100226, 'https://ror.org/00hpjtd88', 'en', 1, 'https://ror.org/00hpjtd88 Beit Berl College המכללה ×”××§×“×ž×™×Ŗ בית ×‘×Ø×œ'),
(100227, 'https://ror.org/05pgk5e03', 'en', 1, 'https://ror.org/05pgk5e03 Agnes Scott College'),
(100228, 'https://ror.org/03trnsb56', 'en', 1, 'https://ror.org/03trnsb56 Vikram Sarabhai Space Centre ą¤µą¤æą¤•ą„ą¤°ą¤® साराभाई अंतराळ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° ą¤µą¤æą¤•ą„ą¤°ą¤® साराभाई ą¤…ą¤‚ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° ą®µą®æą®•ąÆą®°ą®®ąÆ ą®šą®¾ą®°ą®¾ą®Ŗą®¾ą®ÆąÆ ą®µą®æą®£ąÆą®µąÆ†ą®³ą®æ ą®®ąÆˆą®Æą®®ąÆ ą“µą“æą“•ąµą“°ą“‚ ą“øą“¾ą“°ą“¾ą“­ą“¾ą“Æąµ ą“¬ą“¹ą“æą“°ą“¾ą“•ą“¾ą“¶ą“•ąµ‡ą“Øąµą“¦ąµą“°ą“‚'),
(100229, 'https://ror.org/04yk0nx57', 'es', 1, 'https://ror.org/04yk0nx57 Fundación Universitaria Juan N. Corpas'),
(100230, 'https://ror.org/03ze70h02', 'en', 1, 'https://ror.org/03ze70h02 Gonzaga University Universidad Gonzaga'),
(100231, 'https://ror.org/00316zc91', 'en', 1, 'https://ror.org/00316zc91 Wollega University'),
(100232, 'https://ror.org/004pc5924', 'en', 1, 'https://ror.org/004pc5924 ITM University ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(100233, 'https://ror.org/01vnv1744', 'en', 1, 'https://ror.org/01vnv1744 Al Zawiya University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ų§ŁˆŁŠŲ©'),
(100234, 'https://ror.org/05h7vck49', 'en', 1, 'https://ror.org/05h7vck49 Institute for Circular Economy Development Viện NghiĆŖn cứu PhĆ”t triển Kinh tįŗæ tuįŗ§n hoĆ n'),
(100235, 'https://ror.org/01d5fpx70', 'en', 1, 'https://ror.org/01d5fpx70 National University Ostroh Academy ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠžŃŃ‚Ń€Š¾Š·ŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ»'),
(100236, 'https://ror.org/02qp25a50', 'en', 1, 'https://ror.org/02qp25a50 Brandon University'),
(100237, 'https://ror.org/03znjxt55', 'en', 1, 'https://ror.org/03znjxt55 Mercatorum University UniversitĆ  Telematica Universitas Mercatorum'),
(100238, 'https://ror.org/006sgpv47', 'fr', 1, 'https://ror.org/006sgpv47 UniversitĆ© Ibn Zohr Ų¬Ų§Ł…Ų¹Ų© ابن زهر'),
(100239, 'https://ror.org/04zhrfn38', 'es', 1, 'https://ror.org/04zhrfn38 Instituto Tecnológico de Costa Rica'),
(100240, 'https://ror.org/00xhcz327', 'en', 1, 'https://ror.org/00xhcz327 Westmont College'),
(100241, 'https://ror.org/04yg9zd47', 'en', 1, 'https://ror.org/04yg9zd47 Debapriya Mukhopadhyay Vision Research Institute & Foundation'),
(100242, 'https://ror.org/03yef2k78', 'es', 1, 'https://ror.org/03yef2k78 National Autonomous University of Tayacaja Daniel HernÔndez Morillo Universidad Nacional Autónoma de Tayacaja Daniel HernÔndez Morillo'),
(100243, 'https://ror.org/05eq9h938', 'id', 1, 'https://ror.org/05eq9h938 Mahkamah Agung Republik Indonesia Supreme Court of the Republic of Indonesia'),
(100244, 'https://ror.org/02pa24904', 'id', 1, 'https://ror.org/02pa24904 Universitas Garut'),
(100245, 'https://ror.org/05xkpwy13', 'en', 1, 'https://ror.org/05xkpwy13 Westcliff University'),
(100246, 'https://ror.org/00edvg943', 'de', 1, 'https://ror.org/00edvg943 Hochschule Bielefeld'),
(100247, 'https://ror.org/00dygpn15', 'en', 1, 'https://ror.org/00dygpn15 Maasai Mara University'),
(100248, 'https://ror.org/01xqkk481', 'en', 1, 'https://ror.org/01xqkk481 Caldwell University'),
(100249, 'https://ror.org/03z9wm572', 'pt', 1, 'https://ror.org/03z9wm572 Federal University of Fronteira Sul Universidade Federal da Fronteira Sul'),
(100250, 'https://ror.org/03qea8398', 'en', 1, 'https://ror.org/03qea8398 Holland Bloorview Kids Rehabilitation Hospital'),
(100251, 'https://ror.org/044yd9t77', 'en', 1, 'https://ror.org/044yd9t77 Joint Institute for Nuclear Research ŠžŠ±ŃŠŠµŠ“ŠøŠ½Ń‘Š½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(100252, 'https://ror.org/00ggq9r86', 'en', 1, 'https://ror.org/00ggq9r86 State University of Novi Pazar Државни ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ у ŠŠ¾Š²Š¾Š¼ ŠŸŠ°Š·Š°Ń€Ńƒ'),
(100253, 'https://ror.org/050reks70', 'en', 1, 'https://ror.org/050reks70 Küberkaitsekoostöö Keskus NATO Cooperative Cyber Defence Centre of Excellence'),
(100254, 'https://ror.org/00gzkxz88', 'en', 1, 'https://ror.org/00gzkxz88 Hochschule Weihenstephan-Triesdorf Weihenstephan-Triesdorf University of Applied Sciences'),
(100255, 'https://ror.org/037mh3841', 'no_lang_code', 1, 'https://ror.org/037mh3841 Sciex (Canada)'),
(100256, 'https://ror.org/028qtbk54', 'en', 1, 'https://ror.org/028qtbk54 Shiraz University دانؓگاه ؓیراز'),
(100257, 'https://ror.org/01arysc35', 'en', 1, 'https://ror.org/01arysc35 Institut de santa fe Santa Fe Institute'),
(100258, 'https://ror.org/05b1kx621', 'en', 1, 'https://ror.org/05b1kx621 Akita Prefectural University ē§‹ē”°ēœŒē«‹å¤§å­¦'),
(100259, 'https://ror.org/054wajj09', 'en', 1, 'https://ror.org/054wajj09 Huntington University'),
(100260, 'https://ror.org/00v9fsy28', 'en', 1, 'https://ror.org/00v9fsy28 Mohamed Sathak College of Arts and Science'),
(100261, 'https://ror.org/0508h6p74', 'no_lang_code', 1, 'https://ror.org/0508h6p74 Flatiron Health (United States)'),
(100262, 'https://ror.org/02e2wvy23', 'en', 1, 'https://ror.org/02e2wvy23 Kyoto Tachibana University 京都橘大学'),
(100263, 'https://ror.org/02mphcg88', 'en', 1, 'https://ror.org/02mphcg88 Patan Academy of Health Sciences पाटन ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(100264, 'https://ror.org/03xw5ev35', 'en', 1, 'https://ror.org/03xw5ev35 ORFEO-CINQA Research Network'),
(100265, 'https://ror.org/05w5rsy15', 'en', 1, 'https://ror.org/05w5rsy15 Aurel Vlaicu University of Arad Universitatea Aurel Vlaicu din Arad'),
(100266, 'https://ror.org/05yc0wv86', 'en', 1, 'https://ror.org/05yc0wv86 University of the City of Manila'),
(100267, 'https://ror.org/036rry744', 'es', 1, 'https://ror.org/036rry744 Instituto Argentino de Investigaciones de las Zonas Aridas'),
(100268, 'https://ror.org/00v542r37', 'en', 1, 'https://ror.org/00v542r37 World Maritime University'),
(100269, 'https://ror.org/04xf2rc74', 'es', 1, 'https://ror.org/04xf2rc74 Universidad Internacional del Ecuador'),
(100270, 'https://ror.org/05fryw881', 'en', 1, 'https://ror.org/05fryw881 Universitas Negeri Yogyakarta Yogyakarta State University'),
(100271, 'https://ror.org/01hwamj44', 'en', 1, 'https://ror.org/01hwamj44 Antwerp University Hospital Universitair Ziekenhuis Antwerpen'),
(100272, 'https://ror.org/00aj4th23', 'pt', 1, 'https://ror.org/00aj4th23 Instituto Federal de Educação, Ciência e Tecnologia do Sertão Pernambucano Instituto Federal do Sertão Pernambucano'),
(100273, 'https://ror.org/001bvc968', 'no_lang_code', 1, 'https://ror.org/001bvc968 Canadian Light Source (Canada) Centre Canadien de Rayonnement Synchrotron'),
(100274, 'https://ror.org/028h6g607', 'es', 1, 'https://ror.org/028h6g607 Sociedad EspaƱola de Neumologƭa y Cirugƭa TorƔcica'),
(100275, 'https://ror.org/04vsvr128', 'en', 1, 'https://ror.org/04vsvr128 International Centre for Diarrhoeal Disease Research ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦° ফর ঔাইরিয়াল ঔিজিজ ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š, বাংলাদেশ'),
(100276, 'https://ror.org/020fhsn68', 'en', 1, 'https://ror.org/020fhsn68 Research Experiences for Undergraduates'),
(100277, 'https://ror.org/008ej3804', 'en', 1, 'https://ror.org/008ej3804 Mzuzu University'),
(100278, 'https://ror.org/00qqx3790', 'en', 1, 'https://ror.org/00qqx3790 Forestry Research Institute of Sweden'),
(100279, 'https://ror.org/00zznvq98', 'tr', 1, 'https://ror.org/00zznvq98 FCR Yayin LTD'),
(100280, 'https://ror.org/01y2gf490', 'no_lang_code', 1, 'https://ror.org/01y2gf490 Noorul Islam University ą®ØąÆ‚ą®°ąÆą®²ąÆ ą®‡ą®øąÆą®²ą®¾ą®®ą®æą®Æą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“Øąµ‚ą“±ąµąµ½ ą“‡ą“øąµą“²ą“¾ą“‚ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(100281, 'https://ror.org/005aghs32', 'en', 1, 'https://ror.org/005aghs32 Taylor University'),
(100282, 'https://ror.org/03s37k362', 'en', 1, 'https://ror.org/03s37k362 Global Academy of Technology'),
(100283, 'https://ror.org/00chke646', 'id', 1, 'https://ror.org/00chke646 Universitas Madura'),
(100284, 'https://ror.org/01zx17h33', 'en', 1, 'https://ror.org/01zx17h33 Cappadocia University Cappadocia Vocational College'),
(100285, 'https://ror.org/00epajq42', 'en', 1, 'https://ror.org/00epajq42 Sukhothai Thammathirat Open University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŖąøøą¹‚ąø‚ąø—ąø±ąø¢ąø˜ąø£ąø£ąø”ąø²ąø˜ąø“ąø£ąø²ąøŠ'),
(100286, 'https://ror.org/031e9yc69', 'en', 1, 'https://ror.org/031e9yc69 Pamantasan ng Bohol University of Bohol'),
(100287, 'https://ror.org/023ke8y90', 'es', 1, 'https://ror.org/023ke8y90 CIC nanoGUNE Nanoscience Cooperative Research Center'),
(100288, 'https://ror.org/05ey7mm31', 'en', 1, 'https://ror.org/05ey7mm31 Vaal University of Technology'),
(100289, 'https://ror.org/01y3xgc52', 'en', 1, 'https://ror.org/01y3xgc52 Athabasca University'),
(100290, 'https://ror.org/02yta1w47', 'en', 1, 'https://ror.org/02yta1w47 Palmer College of Chiropractic'),
(100291, 'https://ror.org/02nkz4493', 'en', 1, 'https://ror.org/02nkz4493 Shahid Rajaee Teacher Training University دانؓگاه تربیت دبیر Ų“Ł‡ŪŒŲÆ رجایی'),
(100292, 'https://ror.org/02dr4ah95', 'en', 1, 'https://ror.org/02dr4ah95 SCMS Group of Educational Institutions'),
(100293, 'https://ror.org/03v2nbx43', 'en', 1, 'https://ror.org/03v2nbx43 Banca d''Italia Bank of Italy'),
(100294, 'https://ror.org/00cp8c465', 'en', 1, 'https://ror.org/00cp8c465 Belarusian State Technological University Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Š°Š»Š°Š³Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100295, 'https://ror.org/00wn5gw44', 'en', 1, 'https://ror.org/00wn5gw44 Great Zimbabwe University'),
(100296, 'https://ror.org/0529rbt18', 'en', 1, 'https://ror.org/0529rbt18 Distance State University Universidad Estatal a Distancia'),
(100297, 'https://ror.org/041jyt122', 'en', 1, 'https://ror.org/041jyt122 Matsumoto Dental University ę¾ęœ¬ę­Æē§‘å¤§å­¦'),
(100298, 'https://ror.org/01bk10867', 'en', 1, 'https://ror.org/01bk10867 Ostfalia Hochschule für Angewandte Wissenschaften Ostfalia University of Applied Sciences'),
(100299, 'https://ror.org/01hgj5t98', 'en', 1, 'https://ror.org/01hgj5t98 Saint Mary''s College of California'),
(100300, 'https://ror.org/02ndjfz59', 'no_lang_code', 1, 'https://ror.org/02ndjfz59 Flanders Make (Belgium)'),
(100301, 'https://ror.org/012dayg05', 'es', 1, 'https://ror.org/012dayg05 Centro de Cirugía de Mínima Invasión Jesús Usón Minimally Invasive Surgery centre'),
(100302, 'https://ror.org/00jtk7j90', 'en', 1, 'https://ror.org/00jtk7j90 Roanoke College'),
(100303, 'https://ror.org/02vk0qj37', 'en', 1, 'https://ror.org/02vk0qj37 Washington College'),
(100304, 'https://ror.org/0069akp70', 'en', 1, 'https://ror.org/0069akp70 Information Technologies Institute Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĻŽĪ½ Πληροφορικής και Ī•Ļ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½'),
(100305, 'https://ror.org/00pv45a02', 'de', 1, 'https://ror.org/00pv45a02 FH Münster Fachhochschule Münster'),
(100306, 'https://ror.org/042me8y77', 'en', 1, 'https://ror.org/042me8y77 Stepan Gzhytskyi National University of Veterinary Medicine and Biotechnologies Lviv Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарной меГицины Šø биотехнологий имени Š”.Š—. Гжицкого Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарної меГицини та біотехнологій імені Дтепана Š“Š¶ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(100307, 'https://ror.org/04exg7985', 'es', 1, 'https://ror.org/04exg7985 Instituto de Fomento Pesquero'),
(100308, 'https://ror.org/03rfycd69', 'en', 1, 'https://ror.org/03rfycd69 Aliah University আলিয়া ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(100309, 'https://ror.org/0077ex633', 'es', 1, 'https://ror.org/0077ex633 Universidad Metropolitana'),
(100310, 'https://ror.org/034yrjf77', 'fr', 1, 'https://ror.org/034yrjf77 French National Institute for Industrial Environment and Risks Institut national de l''environnement industriel et des risques'),
(100311, 'https://ror.org/03nyjqm54', 'es', 1, 'https://ror.org/03nyjqm54 Universidad del Valle de Guatemala University of the Valley of Guatemala'),
(100312, 'https://ror.org/000qg0t28', 'en', 0, 'https://ror.org/000qg0t28 COMTES FHT a.s. Complete Technological Service - Forming Heat Treatment'),
(100313, 'https://ror.org/01w8z9742', 'en', 1, 'https://ror.org/01w8z9742 L V Prasad Eye Institute'),
(100314, 'https://ror.org/0565s5e83', 'es', 1, 'https://ror.org/0565s5e83 Universidad Católica de El Salvador'),
(100315, 'https://ror.org/007e69832', 'en', 1, 'https://ror.org/007e69832 University of Abuja YunifÔsítì ìlú AbùjÔ'),
(100316, 'https://ror.org/01a1jjn24', 'en', 1, 'https://ror.org/01a1jjn24 Connecticut Children''s Medical Center'),
(100317, 'https://ror.org/05y28vr04', 'no_lang_code', 1, 'https://ror.org/05y28vr04 MSD (Netherlands)'),
(100318, 'https://ror.org/02m457w49', 'es', 1, 'https://ror.org/02m457w49 Pontificia Universidad Católica Madre y Maestra'),
(100319, 'https://ror.org/05qfd6v89', 'en', 1, 'https://ror.org/05qfd6v89 Sigma University'),
(100320, 'https://ror.org/04vnck882', 'no_lang_code', 1, 'https://ror.org/04vnck882 MSD (South Korea)'),
(100321, 'https://ror.org/003g49r03', 'en', 1, 'https://ror.org/003g49r03 Pham Ngoc Thach University of Medicine TrĘ°į»ng ĐẔi hį»c Y khoa Phįŗ”m Ngį»c Thįŗ”ch'),
(100322, 'https://ror.org/04kpdmm83', 'en', 1, 'https://ror.org/04kpdmm83 Ardakan University دانؓگاه اردکان'),
(100323, 'https://ror.org/02c3vg160', 'en', 1, 'https://ror.org/02c3vg160 Fukui Prefectural University ē¦äŗ•ēœŒē«‹å¤§å­¦'),
(100324, 'https://ror.org/02nhmp827', 'en', 1, 'https://ror.org/02nhmp827 Centro de Investigación en MatemÔticas Mathematics Research Center'),
(100325, 'https://ror.org/02rsnav77', 'en', 1, 'https://ror.org/02rsnav77 National University of San Juan Universidad Nacional de San Juan'),
(100326, 'https://ror.org/038997171', 'en', 1, 'https://ror.org/038997171 Rockhurst University'),
(100327, 'https://ror.org/00qd31w11', 'en', 1, 'https://ror.org/00qd31w11 King Abdullah Petroleum Studies and Research Center Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ عبدالله للدراسات ŁˆŲ§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„ŲØŲŖŲ±ŁˆŁ„ŁŠŲ©'),
(100328, 'https://ror.org/04esjnq02', 'en', 1, 'https://ror.org/04esjnq02 GƤvle Hospital GƤvle Sjukhus'),
(100329, 'https://ror.org/01cp5nb60', 'en', 1, 'https://ror.org/01cp5nb60 Academia Espaola de Dermatologa y Venereologa Spanish Academy of Dermatology and Venereology'),
(100330, 'https://ror.org/04s5e9593', 'id', 1, 'https://ror.org/04s5e9593 Universitas Muhammadiyah Purworejo'),
(100331, 'https://ror.org/0084z7g54', 'pt', 1, 'https://ror.org/0084z7g54 Universidade Paranaense'),
(100332, 'https://ror.org/039zvsn29', 'en', 1, 'https://ror.org/039zvsn29 Natural History Museum'),
(100333, 'https://ror.org/01qa5ep47', 'en', 1, 'https://ror.org/01qa5ep47 Materials Research Science and Engineering Centers'),
(100334, 'https://ror.org/02201g510', 'es', 1, 'https://ror.org/02201g510 Le Cordon Bleu University Universidad Le Cordon Bleu'),
(100335, 'https://ror.org/00w73cg32', 'en', 1, 'https://ror.org/00w73cg32 American University of Kuwait الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ų§Ł„ŁƒŁˆŁŠŲŖ'),
(100336, 'https://ror.org/054r97095', 'en', 1, 'https://ror.org/054r97095 Mangosuthu University of Technology'),
(100337, 'https://ror.org/043yykt67', 'no_lang_code', 1, 'https://ror.org/043yykt67 Wayamba University of Sri Lanka ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®µą®Æą®®ąÆą®Ŗ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· වයඹ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(100338, 'https://ror.org/00rj4x019', 'en', 1, 'https://ror.org/00rj4x019 Radiological Society of North America'),
(100339, 'https://ror.org/024a8dx81', 'en', 1, 'https://ror.org/024a8dx81 Klinički Bolnički Centar Sestre Milosrdnice Sisters of Charity Hospital'),
(100340, 'https://ror.org/05jsntm46', 'en', 1, 'https://ror.org/05jsntm46 University of Shkodra "Luigj Gurakuqi"'),
(100341, 'https://ror.org/00xn5w219', 'no_lang_code', 1, 'https://ror.org/00xn5w219 OMV (Austria)'),
(100342, 'https://ror.org/04q4kt073', 'en', 1, 'https://ror.org/04q4kt073 University of Urbino UniversitĆ  degli Studi di Urbino Carlo Bo'),
(100343, 'https://ror.org/051q2m369', 'en', 1, 'https://ror.org/051q2m369 Hankuk University of Foreign Studies ķ•œźµ­ģ™øźµ­ģ–“ėŒ€ķ•™źµ'),
(100344, 'https://ror.org/001xhss06', 'en', 1, 'https://ror.org/001xhss06 Directorate for Biological Sciences'),
(100345, 'https://ror.org/04db0t411', 'es', 1, 'https://ror.org/04db0t411 Universidad Privada Domingo Savio'),
(100346, 'https://ror.org/025fy2n80', 'pt', 1, 'https://ror.org/025fy2n80 Univates Universidade do Vale do Taquari'),
(100347, 'https://ror.org/02jqc0m91', 'en', 1, 'https://ror.org/02jqc0m91 Seattle University Universidad de Seattle UniversitƩ de seattle'),
(100348, 'https://ror.org/00ey4b732', 'en', 1, 'https://ror.org/00ey4b732 Dzemal Bijedic University of Mostar Univerzitet "Džemal Bijedić" u Mostaru Универзитет "ŠŠµŠ¼Š°Š» Š‘ŠøŃ˜ŠµŠ“ŠøŃ›" у ŠœŠ¾ŃŃ‚Š°Ń€Ńƒ'),
(100349, 'https://ror.org/05az4r222', 'pt', 1, 'https://ror.org/05az4r222 Centro UniversitƔrio Integrado'),
(100350, 'https://ror.org/03j4n8s31', 'en', 1, 'https://ror.org/03j4n8s31 Universiti Selangor University of Selangor'),
(100351, 'https://ror.org/02gm7te43', 'en', 1, 'https://ror.org/02gm7te43 Norwegian Computing Center'),
(100352, 'https://ror.org/03jkshc47', 'en', 1, 'https://ror.org/03jkshc47 Medical University of Varna ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Варна'),
(100353, 'https://ror.org/03dm7dd93', 'no_lang_code', 1, 'https://ror.org/03dm7dd93 Austrian Centre of Industrial Biotechnology (Austria)'),
(100354, 'https://ror.org/042vepq05', 'en', 1, 'https://ror.org/042vepq05 Gulu University'),
(100355, 'https://ror.org/00mz6ad23', 'en', 1, 'https://ror.org/00mz6ad23 University of Jiroft دانؓگاه جیرفت'),
(100356, 'https://ror.org/009b5t134', 'no_lang_code', 1, 'https://ror.org/009b5t134 Chuo Kikuu cha Kabarak Kabarak University'),
(100357, 'https://ror.org/028rf7391', 'de', 1, 'https://ror.org/028rf7391 Ordensklinikum Linz Barmherzige Schwestern'),
(100358, 'https://ror.org/01cfras43', 'pt', 1, 'https://ror.org/01cfras43 Instituto Federal de Educação Ciência e Tecnologia do Mato Grosso do Sul'),
(100359, 'https://ror.org/0163rt176', 'en', 1, 'https://ror.org/0163rt176 Indian Institute of Information Technology Vadodara'),
(100360, 'https://ror.org/0093wrd09', 'en', 1, 'https://ror.org/0093wrd09 Volgograd State University ВолгограГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100361, 'https://ror.org/02evec030', 'fr', 1, 'https://ror.org/02evec030 JUNIA'),
(100362, 'https://ror.org/01mxm0y17', 'es', 1, 'https://ror.org/01mxm0y17 Universidad Central del Este'),
(100363, 'https://ror.org/04qksbm30', 'en', 1, 'https://ror.org/04qksbm30 Narsee Monjee Institute of Management Studies'),
(100364, 'https://ror.org/00xb6aw94', 'en', 1, 'https://ror.org/00xb6aw94 State University of Norte Fluminense Universidad Estatal del Norte Fluminense Universidade Estadual do Norte Fluminense Darcy Ribeiro'),
(100365, 'https://ror.org/02a0fwv66', 'en', 1, 'https://ror.org/02a0fwv66 American Institute of Mathematics'),
(100366, 'https://ror.org/01ynmyv26', 'en', 1, 'https://ror.org/01ynmyv26 Sunamganj Science and Technology University ą¦øą§ą¦Øą¦¾ą¦®ą¦—ą¦žą§ą¦œ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(100367, 'https://ror.org/02tdtzx53', 'en', 1, 'https://ror.org/02tdtzx53 Sainsbury Laboratory'),
(100368, 'https://ror.org/04378d909', 'en', 1, 'https://ror.org/04378d909 Draper Laboratory'),
(100369, 'https://ror.org/0509djg30', 'en', 1, 'https://ror.org/0509djg30 Indian Institute of Technology Dharwad'),
(100370, 'https://ror.org/042714f67', 'es', 1, 'https://ror.org/042714f67 Universidad Virtual del Estado de Guanajuato'),
(100371, 'https://ror.org/05wzft155', 'en', 1, 'https://ror.org/05wzft155 Our Lady of Fatima University Pamantasang Our Lady of Fatima'),
(100372, 'https://ror.org/04j9d0s43', 'en', 1, 'https://ror.org/04j9d0s43 Whitworth University'),
(100373, 'https://ror.org/01nvz9x61', 'no_lang_code', 1, 'https://ror.org/01nvz9x61 Sartorius (Germany)'),
(100374, 'https://ror.org/028d5by70', 'en', 1, 'https://ror.org/028d5by70 Technical University of Gabrovo Технически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Габрово'),
(100375, 'https://ror.org/01n83er02', 'en', 1, 'https://ror.org/01n83er02 Kerala Agricultural University ą“•ąµ‡ą“°ą“³ ą“•ą“¾ąµ¼ą“·ą“æą“• ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(100376, 'https://ror.org/00nya5t35', 'pt', 1, 'https://ror.org/00nya5t35 Academia da ForƧa AƩrea Brazilian Air Force Academy'),
(100377, 'https://ror.org/03cg80535', 'fr', 1, 'https://ror.org/03cg80535 UniversitƩ Catholique de Bukavu'),
(100378, 'https://ror.org/01wbhqj28', 'en', 1, 'https://ror.org/01wbhqj28 North Eastern Regional Institute of Science and Technology ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø और ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤•ą„‡ ą¤Ŗą„‚ą¤°ą„ą¤µą„‹ą¤¤ą„ą¤¤ą¤° ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(100379, 'https://ror.org/02fdpqd66', 'en', 1, 'https://ror.org/02fdpqd66 D. A. Tsenov Academy of Economics Дтопанска Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ā€žŠ”. А. Ценов'),
(100380, 'https://ror.org/031d6ey43', 'en', 1, 'https://ror.org/031d6ey43 Akenten Appiah-Menka University of Skills Training and Entrepreneurial Development'),
(100381, 'https://ror.org/047cjg072', 'en', 1, 'https://ror.org/047cjg072 Bethlehem University Ų¬Ų§Ł…Ų¹Ų© بيت لحم'),
(100382, 'https://ror.org/0349vqz63', 'en', 1, 'https://ror.org/0349vqz63 Royal Botanic Garden Edinburgh'),
(100383, 'https://ror.org/05d0b7d20', 'no_lang_code', 1, 'https://ror.org/05d0b7d20 Sripatum University ดหาวณทยาคัยศรีปทุด'),
(100384, 'https://ror.org/022mv6k27', 'en', 1, 'https://ror.org/022mv6k27 University of East Sarajevo Univerzitet u Istočnom Sarajevu Универзитет у Š˜ŃŃ‚Š¾Ń‡Š½Š¾Š¼ Š”Š°Ń€Š°Ń˜ŠµŠ²Ńƒ'),
(100385, 'https://ror.org/03s9x8b85', 'en', 1, 'https://ror.org/03s9x8b85 Euro-Mediterranean University of Fes université Euro-Méditerranéenne de Fès'),
(100386, 'https://ror.org/04gazzm76', 'es', 1, 'https://ror.org/04gazzm76 Universidad para el Desarrollo Andino'),
(100387, 'https://ror.org/01ztcvt22', 'en', 1, 'https://ror.org/01ztcvt22 Delhi Technological University ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®ŸąÆ†ą®²ąÆą®²ą®æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(100388, 'https://ror.org/04xfdsg27', 'en', 1, 'https://ror.org/04xfdsg27 Telethon Institute Of Genetics And Medicine'),
(100389, 'https://ror.org/02sj9tq04', 'en', 1, 'https://ror.org/02sj9tq04 Akademia Morska w Szczecinie Maritime University of Szczecin'),
(100390, 'https://ror.org/04d6the49', 'en', 1, 'https://ror.org/04d6the49 Rezekne Academy of Technologies Rēzeknes Tehnoloģiju Akadēmija'),
(100391, 'https://ror.org/03c7s1f64', 'en', 1, 'https://ror.org/03c7s1f64 Maejo University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąø”ą¹ˆą¹‚ąøˆą¹‰'),
(100392, 'https://ror.org/02s466x84', 'en', 1, 'https://ror.org/02s466x84 Arcada University of Applied Sciences Arcada – Nylands svenska yrkeshƶgskola'),
(100393, 'https://ror.org/05xydav19', 'en', 1, 'https://ror.org/05xydav19 Southampton Solent University'),
(100394, 'https://ror.org/03ckw4m20', 'en', 1, 'https://ror.org/03ckw4m20 Al Noor University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ł†ŁˆŲ± الجامعة'),
(100395, 'https://ror.org/05ger6s34', 'en', 1, 'https://ror.org/05ger6s34 Universiteti "Ismail Qemali" Vlorƫ University of Vlora "Ismail Qemali"'),
(100396, 'https://ror.org/044xeax47', 'en', 1, 'https://ror.org/044xeax47 Centre for Social Innovation Zentrum für Soziale Innovation'),
(100397, 'https://ror.org/04mz5ra38', 'en', 1, 'https://ror.org/04mz5ra38 University of Duisburg-Essen UniversitƤt Duisburg-Essen'),
(100398, 'https://ror.org/04hqfvm50', 'en', 1, 'https://ror.org/04hqfvm50 Institute of Bioinformatics'),
(100399, 'https://ror.org/05ecg5h20', 'en', 1, 'https://ror.org/05ecg5h20 Universitetet i SĆørĆøst-Norge University of South-Eastern Norway'),
(100400, 'https://ror.org/00mvndc02', 'en', 1, 'https://ror.org/00mvndc02 Ivy Tech Community College of Indiana'),
(100401, 'https://ror.org/007j5qg12', 'id', 1, 'https://ror.org/007j5qg12 Universitas Muhammadiyah Palangkaraya'),
(100402, 'https://ror.org/04rszy995', 'no_lang_code', 1, 'https://ror.org/04rszy995 Nikola Vaptsarov Naval Academy Š’ŠøŃŃˆŠµ военноморско ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ, Варна'),
(100403, 'https://ror.org/00b9f9778', 'fr', 1, 'https://ror.org/00b9f9778 Fonds de Recherche du QuĆ©bec – Nature et Technologies'),
(100404, 'https://ror.org/03avf6522', 'en', 1, 'https://ror.org/03avf6522 Norwegian Polar Institute'),
(100405, 'https://ror.org/00p11pk44', 'en', 1, 'https://ror.org/00p11pk44 Wabash College'),
(100406, 'https://ror.org/00sdcjz77', 'en', 1, 'https://ror.org/00sdcjz77 Shenzhen Bay Laboratory ę·±åœ³ę¹¾å®žéŖŒå®¤'),
(100407, 'https://ror.org/02h9n8v16', 'no_lang_code', 1, 'https://ror.org/02h9n8v16 MSD (Mexico)'),
(100408, 'https://ror.org/007cnf143', 'en', 1, 'https://ror.org/007cnf143 Western New England University'),
(100409, 'https://ror.org/03mzvxz96', 'en', 1, 'https://ror.org/03mzvxz96 University of Aleppo UniversitĆ© d''alep Ų¬Ų§Ł…Ų¹Ų© حلب'),
(100410, 'https://ror.org/00crnyv53', 'en', 1, 'https://ror.org/00crnyv53 Community University of Chapecó Region - Unochapecó'),
(100411, 'https://ror.org/03ca7a577', 'es', 1, 'https://ror.org/03ca7a577 Fundación Universitaria Konrad Lorenz'),
(100412, 'https://ror.org/008a97q41', 'no_lang_code', 1, 'https://ror.org/008a97q41 Centro Nacional de Biopreparados (Cuba)'),
(100413, 'https://ror.org/02q38zd09', 'no_lang_code', 1, 'https://ror.org/02q38zd09 Stiftung Rehabilitation Heidelberg (Germany)'),
(100414, 'https://ror.org/02x559v43', 'en', 1, 'https://ror.org/02x559v43 UniversitƩ de walla walla Walla Walla University'),
(100415, 'https://ror.org/050vkgz80', 'en', 1, 'https://ror.org/050vkgz80 Razi Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† رازی'),
(100416, 'https://ror.org/02mg7se45', 'en', 1, 'https://ror.org/02mg7se45 Bauchi State University'),
(100417, 'https://ror.org/0036p5w23', 'en', 1, 'https://ror.org/0036p5w23 Indian Institute of Technology Gandhinagar iit ni jankari ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®¾ą®ØąÆą®¤ą®æą®Øą®•ą®°ąÆ'),
(100418, 'https://ror.org/0323wfn23', 'en', 1, 'https://ror.org/0323wfn23 National University Toribio RodrĆ­guez de Mendoza Universidad Nacional Toribio Rodriguez de Mendoza de Amazonas'),
(100419, 'https://ror.org/059r3nh67', 'en', 1, 'https://ror.org/059r3nh67 Fondazione LINKS LINKS Foundation'),
(100420, 'https://ror.org/05p7te762', 'no_lang_code', 1, 'https://ror.org/05p7te762 HRL Laboratories (United States)'),
(100421, 'https://ror.org/00e97v486', 'en', 1, 'https://ror.org/00e97v486 Varna Free University Varna Hür Üniversitesi Варненски свобоГен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100422, 'https://ror.org/02f8h1m78', 'pt', 1, 'https://ror.org/02f8h1m78 Instituto Federal Catarinense'),
(100423, 'https://ror.org/00b210x50', 'es', 1, 'https://ror.org/00b210x50 Universidad de Especialidades EspĆ­ritu Santo'),
(100424, 'https://ror.org/009z39p97', 'en', 1, 'https://ror.org/009z39p97 St. Joseph’s Healthcare Hamilton'),
(100425, 'https://ror.org/0115xv923', 'en', 1, 'https://ror.org/0115xv923 Eidgenössische Institut für Metrologie Institut Fédéral de Métrologie Istituto Federale di Metrologia Swiss Federal Institute of Metrology'),
(100426, 'https://ror.org/01ngnm118', 'en', 1, 'https://ror.org/01ngnm118 Institut militaire de virginie Virginia Military Institute'),
(100427, 'https://ror.org/03rgjt374', 'en', 1, 'https://ror.org/03rgjt374 Indian Institute of Information Technology Allahabad Institut indien d''informatique d''allahabad'),
(100428, 'https://ror.org/03ehk1n67', 'en', 1, 'https://ror.org/03ehk1n67 Indus University'),
(100429, 'https://ror.org/04vz7gz02', 'sv', 1, 'https://ror.org/04vz7gz02 Region VƤstmanland'),
(100430, 'https://ror.org/035d7ds17', 'en', 1, 'https://ror.org/035d7ds17 AfricArXiv'),
(100431, 'https://ror.org/0284vkq26', 'en', 1, 'https://ror.org/0284vkq26 Sari Agricultural Sciences and Natural Resources University دانؓگاه Ų¹Ł„ŁˆŁ… کؓاورزی و منابع طبیعی ساری'),
(100432, 'https://ror.org/023288525', 'en', 1, 'https://ror.org/023288525 Stonehill College'),
(100433, 'https://ror.org/00a7n7g54', 'de', 1, 'https://ror.org/00a7n7g54 Deutsches Museum German Museum'),
(100434, 'https://ror.org/03ase0085', 'en', 1, 'https://ror.org/03ase0085 University of Warith Al-Anbiyaa Ų¬Ų§Ł…Ų¹Ų© وارث Ų§Ł„Ų£Ł†ŲØŁŠŲ§Ų”'),
(100435, 'https://ror.org/0125yxn03', 'en', 1, 'https://ror.org/0125yxn03 University Hospital in Motol'),
(100436, 'https://ror.org/02z1kxt68', 'en', 1, 'https://ror.org/02z1kxt68 Il-KulleĔĔ Malti tal-Arti, Xjenza u TeknoloĔija Malta College of Arts, Science and Technology'),
(100437, 'https://ror.org/0376wwg26', 'en', 1, 'https://ror.org/0376wwg26 Huria Kristen Batak Protestan University of HKBP Nommensen'),
(100438, 'https://ror.org/05mt7ye26', 'no_lang_code', 1, 'https://ror.org/05mt7ye26 Invitae (United States)'),
(100439, 'https://ror.org/05sedbt07', 'en', 1, 'https://ror.org/05sedbt07 Baltic State Technical University Voenmeh Балтийский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Военмех'),
(100440, 'https://ror.org/01v2vzt58', 'en', 1, 'https://ror.org/01v2vzt58 Florida Department of Transportation'),
(100441, 'https://ror.org/00dr09x15', 'en', 1, 'https://ror.org/00dr09x15 Caltex Riau Polytechnic Politeknik Caltex Riau'),
(100442, 'https://ror.org/00n5re093', 'en', 1, 'https://ror.org/00n5re093 College of the Atlantic'),
(100443, 'https://ror.org/01468by48', 'en', 1, 'https://ror.org/01468by48 National Institute for Laser Plasma and Radiation Physics'),
(100444, 'https://ror.org/04tp6pr14', 'en', 1, 'https://ror.org/04tp6pr14 Bandung Islamic University Universitas Islam Bandung'),
(100445, 'https://ror.org/00abdnc40', 'en', 1, 'https://ror.org/00abdnc40 Petroleum & Gas University of Ploieşti Universitatea Petrol-Gaze din Ploiești'),
(100446, 'https://ror.org/00n619376', 'id', 1, 'https://ror.org/00n619376 Universitas Wijaya Kusuma Surabaya'),
(100447, 'https://ror.org/04ctjby61', 'en', 1, 'https://ror.org/04ctjby61 Chapingo Autonomous University Universidad Autónoma Chapingo'),
(100448, 'https://ror.org/022kvet57', 'en', 1, 'https://ror.org/022kvet57 Alexandru Ioan Cuza University Universitatea Alexandru Ioan Cuza'),
(100449, 'https://ror.org/017hvgd88', 'id', 1, 'https://ror.org/017hvgd88 Universitas Muhammadiyah Sidoarjo'),
(100450, 'https://ror.org/013sm1c65', 'en', 1, 'https://ror.org/013sm1c65 Uniwersytet Ekonomiczny we Wrocławiu Wroclaw University of Economics and Business'),
(100451, 'https://ror.org/007x5wz81', 'it', 1, 'https://ror.org/007x5wz81 Ospedale Santa Chiara'),
(100452, 'https://ror.org/04e8qfh32', 'es', 1, 'https://ror.org/04e8qfh32 Universidad Marcelino Champagnat'),
(100453, 'https://ror.org/0530tab10', 'en', 1, 'https://ror.org/0530tab10 Southern Leyte State University'),
(100454, 'https://ror.org/05qpbfx18', 'en', 1, 'https://ror.org/05qpbfx18 Defence Institute of Advanced Technology'),
(100455, 'https://ror.org/02ypa8k59', 'en', 1, 'https://ror.org/02ypa8k59 Thi Qar University Ų¬Ų§Ł…Ų¹Ų© ذي قار'),
(100456, 'https://ror.org/02hvzvg02', 'en', 1, 'https://ror.org/02hvzvg02 Modern College of Business and Science'),
(100457, 'https://ror.org/049d1x723', 'fr', 1, 'https://ror.org/049d1x723 FacultĆ© des Lettres et des Sciences Humaines de Sfax ŁƒŁ„ŁŠŲ© الآداب ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ł†Ų³Ų§Ł†ŁŠŲ© بصفاقس'),
(100458, 'https://ror.org/04jr4s665', 'en', 1, 'https://ror.org/04jr4s665 Veritas University'),
(100459, 'https://ror.org/03d2p2e72', 'en', 1, 'https://ror.org/03d2p2e72 Universiti Teknologi Sarawak University of Technology Sarawak'),
(100460, 'https://ror.org/0343j7r38', 'en', 1, 'https://ror.org/0343j7r38 The NorthCap University'),
(100461, 'https://ror.org/01eb5yv70', 'en', 1, 'https://ror.org/01eb5yv70 University of Diyala Ų¬Ų§Ł…Ų¹Ų© ŲÆŁŠŲ§Ł„Ł‰'),
(100462, 'https://ror.org/04w713f83', 'no_lang_code', 1, 'https://ror.org/04w713f83 Sri Chandrasekharendra Saraswathi Viswa Mahavidyalaya சிறி ą®šą®ØąÆą®¤ą®°ą®šąÆ‡ą®•ą®°ąÆ‡ą®ØąÆą®¤ą®°ą®¾ ą®šą®°ą®øąÆą®µą®¤ą®æ ą®µą®æą®øąÆą®µ ą®®ą®•ą®¾ą®µą®æą®¤ąÆą®Æą®¾ą®²ą®Æą®¾'),
(100463, 'https://ror.org/018yta094', 'en', 1, 'https://ror.org/018yta094 Morehead State University UniversitĆ© d''Ɖtat de morehead'),
(100464, 'https://ror.org/02bnddg69', 'en', 1, 'https://ror.org/02bnddg69 Comilla University ą¦•ą§ą¦®ą¦æą¦²ą§ą¦²ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(100465, 'https://ror.org/02z2sk479', 'en', 1, 'https://ror.org/02z2sk479 Shobhit University'),
(100466, 'https://ror.org/00k551w06', 'en', 1, 'https://ror.org/00k551w06 Center for Discrete Mathematics and Theoretical Computer Science'),
(100467, 'https://ror.org/027b9qx26', 'de', 1, 'https://ror.org/027b9qx26 Hochschule Niederrhein'),
(100468, 'https://ror.org/00ajzsc28', 'pt', 1, 'https://ror.org/00ajzsc28 Federal University of Southern Bahia Universidade Federal do Sul da Bahia'),
(100469, 'https://ror.org/03cyjf656', 'no_lang_code', 1, 'https://ror.org/03cyjf656 University Centre in Svalbard'),
(100470, 'https://ror.org/024nr0776', 'en', 1, 'https://ror.org/024nr0776 Catholic University of Applied Sciences of North Rhine – Westphalia Katholische Hochschule Nordrhein-Westfalen'),
(100471, 'https://ror.org/01s7bde64', 'en', 1, 'https://ror.org/01s7bde64 Tay Nguyen University TrĘ°į»ng ĐẔi hį»c TĆ¢y NguyĆŖn');
INSERT INTO `rors` VALUES
(100472, 'https://ror.org/01e0vxt85', 'es', 1, 'https://ror.org/01e0vxt85 Fundación Universitaria Monserrate'),
(100473, 'https://ror.org/05pfcz666', 'it', 1, 'https://ror.org/05pfcz666 Istituto Zooprofilattico Sperimentale delle Regioni Lazio e Toscana l’Istituto Zooprofilatico Sperimentale del Lazio e della Toscana'),
(100474, 'https://ror.org/042ewz993', 'en', 1, 'https://ror.org/042ewz993 Universidad de BoyacĆ” University of Boyaca'),
(100475, 'https://ror.org/04fbb7514', 'en', 1, 'https://ror.org/04fbb7514 Universidad de Sucre University of Sucre'),
(100476, 'https://ror.org/04ke6ht85', 'en', 1, 'https://ror.org/04ke6ht85 Scottish Association For Marine Science'),
(100477, 'https://ror.org/00waaqh38', 'en', 1, 'https://ror.org/00waaqh38 Vietnam National University Ho Chi Minh City ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh'),
(100478, 'https://ror.org/002ghjd91', 'en', 1, 'https://ror.org/002ghjd91 National Institute of Materials Physics'),
(100479, 'https://ror.org/007ygn379', 'en', 1, 'https://ror.org/007ygn379 Graduate Institute of International and Development Studies Hochschulinstitut für internationale Studien und Entwicklung Institut de Hautes études Internationales et du Développement'),
(100480, 'https://ror.org/0109yf692', 'en', 1, 'https://ror.org/0109yf692 Bursa Metropolitan Municipality'),
(100481, 'https://ror.org/035czp815', 'en', 1, 'https://ror.org/035czp815 All-Russian Scientific Research Institute of Physical-Technical and Radiotechnical Measurements Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физико-технических Šø раГиотехнических измерений'),
(100482, 'https://ror.org/03czk8k96', 'de', 1, 'https://ror.org/03czk8k96 Hochschule Macromedia Macromedia University'),
(100483, 'https://ror.org/04cr2sq58', 'en', 1, 'https://ror.org/04cr2sq58 Botswana International University of Science and Technology'),
(100484, 'https://ror.org/0485abs19', 'fr', 1, 'https://ror.org/0485abs19 UniversitƩ Alioune Diop de Bambey'),
(100485, 'https://ror.org/00840ea57', 'en', 1, 'https://ror.org/00840ea57 University of Basrah Ų¬Ų§Ł…Ų¹Ų© البصرة'),
(100486, 'https://ror.org/04jsx0x49', 'en', 1, 'https://ror.org/04jsx0x49 Fachhochschule Technikum Wien University of Applied Sciences Technikum Wien'),
(100487, 'https://ror.org/001mf9v16', 'en', 1, 'https://ror.org/001mf9v16 University of Gezira Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬Ų²ŁŠŲ±Ų©'),
(100488, 'https://ror.org/021aqk126', 'en', 1, 'https://ror.org/021aqk126 Illinois Wesleyan University'),
(100489, 'https://ror.org/0040cz635', 'en', 1, 'https://ror.org/0040cz635 Samford University'),
(100490, 'https://ror.org/03mwgfy56', 'no_lang_code', 1, 'https://ror.org/03mwgfy56 Tarbiat Modares University دانؓگاه تربیت Ł…ŲÆŲ±Ų³'),
(100491, 'https://ror.org/05bd7c383', 'en', 1, 'https://ror.org/05bd7c383 St. Anna Children''s Cancer Research Institute St. Anna Kinderkrebsforschung GmbH'),
(100492, 'https://ror.org/006mbby82', 'en', 1, 'https://ror.org/006mbby82 Menzies School of Health Research'),
(100493, 'https://ror.org/058q57q63', 'en', 1, 'https://ror.org/058q57q63 University College South Denmark University College Syddanmark'),
(100494, 'https://ror.org/014gb2s11', 'de', 1, 'https://ror.org/014gb2s11 Kantonsspital Winterthur'),
(100495, 'https://ror.org/04y8njc86', 'en', 1, 'https://ror.org/04y8njc86 Yancheng Institute of Technology ē›åŸŽå·„å­¦é™¢'),
(100496, 'https://ror.org/04ycjft64', 'en', 1, 'https://ror.org/04ycjft64 Mongolian University of Life Sciences ЄөГөө Аж ŠŃ…ŃƒŠ¹Š½ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(100497, 'https://ror.org/00pv8s374', 'en', 1, 'https://ror.org/00pv8s374 Avrasya University Avrasya Üniversitesi'),
(100498, 'https://ror.org/04habxs80', 'es', 1, 'https://ror.org/04habxs80 El Colegio de Sonora'),
(100499, 'https://ror.org/04xrarz80', 'no_lang_code', 1, 'https://ror.org/04xrarz80 Deutsche Bahn (Germany)'),
(100500, 'https://ror.org/002hgm057', 'no_lang_code', 1, 'https://ror.org/002hgm057 Pertamina (Indonesia)'),
(100501, 'https://ror.org/041vsn055', 'en', 1, 'https://ror.org/041vsn055 Nelson Mandela African Institution of Science and Technology Taasisi ya Sayansi na Teknolojia ya Nelson Mandela'),
(100502, 'https://ror.org/058qm9p63', 'en', 1, 'https://ror.org/058qm9p63 Koninklijk Meteorologisch Instituut van Belgiƫ L''Institut Royal MƩtƩorologique de Belgique Royal Meteorological Institute of Belgium'),
(100503, 'https://ror.org/015w2mp89', 'en', 1, 'https://ror.org/015w2mp89 National Physical Laboratory'),
(100504, 'https://ror.org/04z0p3077', 'es', 1, 'https://ror.org/04z0p3077 IK4-Lortek'),
(100505, 'https://ror.org/03zmnt269', 'es', 1, 'https://ror.org/03zmnt269 Universidad Nacional del Santa'),
(100506, 'https://ror.org/03wqgqd89', 'en', 1, 'https://ror.org/03wqgqd89 Graphic Era University ą¤—ą„ą¤°ą¤¾ą¤«ą¤¼ą¤æą¤• ą¤ą¤°ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(100507, 'https://ror.org/02r1xtk47', 'es', 1, 'https://ror.org/02r1xtk47 Corporación Universitaria del Meta'),
(100508, 'https://ror.org/05n7v5997', 'es', 1, 'https://ror.org/05n7v5997 Instituto de Investigación Sanitaria La Fe'),
(100509, 'https://ror.org/01r0dam38', 'es', 1, 'https://ror.org/01r0dam38 Corporación Universitaria Minuto de Dios'),
(100510, 'https://ror.org/04v8ap992', 'tr', 1, 'https://ror.org/04v8ap992 Lokman Hekim University Lokman Hekim Üniversitesi'),
(100511, 'https://ror.org/04yqw9c44', 'pt', 1, 'https://ror.org/04yqw9c44 Universidade Federal de Juiz de Fora'),
(100512, 'https://ror.org/03vs03g62', 'en', 1, 'https://ror.org/03vs03g62 Institut de Cardiologie de MontrƩal Montreal Heart Institute'),
(100513, 'https://ror.org/01grm2d66', 'en', 1, 'https://ror.org/01grm2d66 Technical University of Mombasa'),
(100514, 'https://ror.org/04fg7az81', 'nl', 1, 'https://ror.org/04fg7az81 Ziekenhuis Oost-Limburg'),
(100515, 'https://ror.org/05tgdvt16', 'en', 1, 'https://ror.org/05tgdvt16 Sabzevar University of Medical Sciences'),
(100516, 'https://ror.org/01app8660', 'en', 1, 'https://ror.org/01app8660 University of Bonab دانؓگاه بناب'),
(100517, 'https://ror.org/04aha0598', 'en', 1, 'https://ror.org/04aha0598 Norwegian Institute for Nature Research'),
(100518, 'https://ror.org/01gmyr425', 'en', 1, 'https://ror.org/01gmyr425 Atma Jaya University Yogyakarta Universitas Atma Jaya Yogyakarta'),
(100519, 'https://ror.org/0302fn725', 'en', 1, 'https://ror.org/0302fn725 Industrial Technology Institute'),
(100520, 'https://ror.org/05tqmmk50', 'id', 1, 'https://ror.org/05tqmmk50 Universitas Sains dan Teknologi Komputer'),
(100521, 'https://ror.org/00t5e2y66', 'fr', 1, 'https://ror.org/00t5e2y66 UniversitƩ Joseph Ki-Zerbo UniversitƩ de Ouagadougou'),
(100522, 'https://ror.org/00afdp487', 'en', 1, 'https://ror.org/00afdp487 Universitatea de Medicină și Farmacie Victor Babeș Victor Babeș University of Medicine and Pharmacy Timișoara'),
(100523, 'https://ror.org/0528q1h46', 'en', 1, 'https://ror.org/0528q1h46 KOMAG Institute of Mining Technology'),
(100524, 'https://ror.org/0004vyj87', 'en', 1, 'https://ror.org/0004vyj87 AcadĆ©mie Arabe des Sciences, de la Technologie et des Transports Maritimes Arab Academy for Science, Technology, and Maritime Transport Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ł†Ł‚Ł„ Ų§Ł„ŲØŲ­Ų±ŁŠ'),
(100525, 'https://ror.org/04eybkn52', 'en', 1, 'https://ror.org/04eybkn52 Saint Anselm College'),
(100526, 'https://ror.org/02105t278', 'en', 1, 'https://ror.org/02105t278 Sanata Dharma University Universitas Sanata Dharma UnivĆØrsitas Sanata Dharma'),
(100527, 'https://ror.org/040cw1309', 'en', 1, 'https://ror.org/040cw1309 Incedo Inc.'),
(100528, 'https://ror.org/01pxkj057', 'en', 1, 'https://ror.org/01pxkj057 TH Bingen University of Applied Sciences Technische Hochschule Bingen'),
(100529, 'https://ror.org/01z014940', 'en', 1, 'https://ror.org/01z014940 University of Mining and Geology "Saint Ivan Rilski" ŠœŠ˜ŠŠŠž-Š“Š•ŠžŠ›ŠžŠ–ŠšŠ˜ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢ "ДВ. Š˜Š’ŠŠ Š Š˜Š›Š”ŠšŠ˜"'),
(100530, 'https://ror.org/045r0qf45', 'en', 1, 'https://ror.org/045r0qf45 Collegium Civitas'),
(100531, 'https://ror.org/04rkbns44', 'en', 1, 'https://ror.org/04rkbns44 Botswana Harvard AIDS Institute Partnership'),
(100532, 'https://ror.org/012mm7y56', 'pt', 1, 'https://ror.org/012mm7y56 Methodist University of SĆ£o Paulo Universidade Metodista de SĆ£o Paulo'),
(100533, 'https://ror.org/01j2kd606', 'en', 1, 'https://ror.org/01j2kd606 Trinity Western University'),
(100534, 'https://ror.org/05t1h8f27', 'en', 1, 'https://ror.org/05t1h8f27 University of Huddersfield'),
(100535, 'https://ror.org/04yazpn06', 'en', 1, 'https://ror.org/04yazpn06 Bharath University'),
(100536, 'https://ror.org/02x2fbb57', 'es', 1, 'https://ror.org/02x2fbb57 Red Española de Supercomputación'),
(100537, 'https://ror.org/04be65q32', 'en', 1, 'https://ror.org/04be65q32 Daejin University ėŒ€ģ§„ėŒ€ķ•™źµ'),
(100538, 'https://ror.org/04thqez65', 'no_lang_code', 1, 'https://ror.org/04thqez65 MSD (Spain)'),
(100539, 'https://ror.org/04603xj85', 'pt', 1, 'https://ror.org/04603xj85 Federal University of Western ParĆ” Universidade Federal do Oeste do ParĆ”'),
(100540, 'https://ror.org/01rpmzy83', 'en', 1, 'https://ror.org/01rpmzy83 Central University of the Caribbean Universidad Central del Caribe'),
(100541, 'https://ror.org/00aygzx54', 'en', 1, 'https://ror.org/00aygzx54 Niigata University of Health and Welfare ę–°ę½ŸåŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(100542, 'https://ror.org/0546hnb39', 'en', 1, 'https://ror.org/0546hnb39 University of Konstanz UniversitƤt Konstanz'),
(100543, 'https://ror.org/04a7x2s11', 'en', 1, 'https://ror.org/04a7x2s11 Arkitektur- og designhĆøgskolen i Oslo Oslo School of Architecture and Design'),
(100544, 'https://ror.org/01wf1es90', 'en', 1, 'https://ror.org/01wf1es90 Zarqa University Ų¬Ų§Ł…Ų¹Ų© الزرقاؔ'),
(100545, 'https://ror.org/01385bp05', 'en', 1, 'https://ror.org/01385bp05 UbuntuNet Alliance for Research and Education Networking'),
(100546, 'https://ror.org/00ccda374', 'en', 1, 'https://ror.org/00ccda374 Baharloo Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ŲØŁ‡Ų§Ų±Ł„Łˆ'),
(100547, 'https://ror.org/03kgj4539', 'no_lang_code', 1, 'https://ror.org/03kgj4539 TRIUMF'),
(100548, 'https://ror.org/05te8rc78', 'en', 1, 'https://ror.org/05te8rc78 Thai-Nichi Institute of Technology ąøŖąø–ąø²ąøšąø±ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹„ąø—ąø¢-ąøąøµą¹ˆąø›ąøøą¹ˆąø™'),
(100549, 'https://ror.org/04jrfgq66', 'en', 1, 'https://ror.org/04jrfgq66 State University of Padang Universitas Negeri Padang'),
(100550, 'https://ror.org/05xpj2n48', 'en', 1, 'https://ror.org/05xpj2n48 HUTECH University TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ ThĆ nh phố Hồ ChĆ­ Minh, ĐẔi hį»c HUTECH'),
(100551, 'https://ror.org/00f362y94', 'en', 1, 'https://ror.org/00f362y94 Deutsches Institut für Lebensmitteltechnik German Institute of Food Technologies'),
(100552, 'https://ror.org/04v53s997', 'en', 1, 'https://ror.org/04v53s997 Norges HandelshĆøyskole Norwegian School of Economics'),
(100553, 'https://ror.org/02p804s75', 'en', 1, 'https://ror.org/02p804s75 Saint Leo University'),
(100554, 'https://ror.org/03yht3k11', 'en', 1, 'https://ror.org/03yht3k11 Shumen University Шуменски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100555, 'https://ror.org/054kd6r74', 'en', 1, 'https://ror.org/054kd6r74 Mercyhurst University'),
(100556, 'https://ror.org/00vjd4k74', 'en', 1, 'https://ror.org/00vjd4k74 HHL Leipzig Graduate School of Management Handelshochschule Leipzig'),
(100557, 'https://ror.org/03fkjvy27', 'fr', 1, 'https://ror.org/03fkjvy27 Institut Pasteur de Madagascar'),
(100558, 'https://ror.org/05sk14837', 'en', 1, 'https://ror.org/05sk14837 National Science Foundation Ice Core Facility'),
(100559, 'https://ror.org/05rp6gx35', 'en', 1, 'https://ror.org/05rp6gx35 Husson University'),
(100560, 'https://ror.org/041mvdf76', 'pt', 1, 'https://ror.org/041mvdf76 Institute for Technological Research Instituto de Pesquisas Tecnológicas'),
(100561, 'https://ror.org/059ncap70', 'en', 1, 'https://ror.org/059ncap70 Ontario College of Art and Design UniversitĆ© de l''Ɖcole d''art et de design de l''ontario'),
(100562, 'https://ror.org/013bgdt24', 'en', 1, 'https://ror.org/013bgdt24 Millikin University'),
(100563, 'https://ror.org/04hhhj520', 'en', 1, 'https://ror.org/04hhhj520 Donetsk National University of Economics and Trade named after Mykhailo Tugan-Baranovsky Донецкий ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń–й Университет Экономики Šø Торговли имени ŠœŠøŃ…аила Туган-Барановского Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Університет Економіки і Торгівлі імені ŠœŠøŃ…Š°Š¹Š»Š° Туган-Š‘Š°Ń€Š°Š½Š¾Š²ŃŃŒŠŗŠ¾Š³Š¾'),
(100564, 'https://ror.org/041pa7h16', 'en', 1, 'https://ror.org/041pa7h16 Waag Futurelab'),
(100565, 'https://ror.org/039e7bg24', 'en', 1, 'https://ror.org/039e7bg24 University of Taipei č‡ŗåŒ—åø‚ē«‹å¤§å­øę ”ęœ¬éƒØ'),
(100566, 'https://ror.org/035t7rn63', 'en', 1, 'https://ror.org/035t7rn63 Lorestan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ لرستان'),
(100567, 'https://ror.org/04a23br85', 'en', 1, 'https://ror.org/04a23br85 Wittenberg University'),
(100568, 'https://ror.org/03z2mrm76', 'en', 1, 'https://ror.org/03z2mrm76 Surgical Research and Global Education Lab (SURGE Lab)'),
(100569, 'https://ror.org/054w40x57', 'en', 1, 'https://ror.org/054w40x57 Instituto Tecnológico de Villahermosa Villahermosa Institute of Technology'),
(100570, 'https://ror.org/015nngf45', 'no_lang_code', 1, 'https://ror.org/015nngf45 Manufacturing Technology Centre (United Kingdom)'),
(100571, 'https://ror.org/04f2nsd36', 'en', 1, 'https://ror.org/04f2nsd36 Lancaster University Prifysgol Caerhirfryn'),
(100572, 'https://ror.org/019ad8130', 'en', 1, 'https://ror.org/019ad8130 University of Computer Studies Yangon į€›į€”į€ŗį€€į€Æį€”į€ŗį€€į€½į€”į€ŗį€•į€»į€°į€į€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(100573, 'https://ror.org/03xqtf034', 'en', 1, 'https://ror.org/03xqtf034 Nederlands Kanker Instituut The Netherlands Cancer Institute'),
(100574, 'https://ror.org/04qj3gf68', 'en', 1, 'https://ror.org/04qj3gf68 Brandenburg University of Applied Sciences Technische Hochschule Brandenburg'),
(100575, 'https://ror.org/02g9n8n52', 'de', 1, 'https://ror.org/02g9n8n52 Karl Landsteiner University Hospital St. Pƶlten UniversitƤtsklinikum St. Pƶlten'),
(100576, 'https://ror.org/04tgvs825', 'pl', 1, 'https://ror.org/04tgvs825 Building Research Institute Instytut Techniki Budowlanej'),
(100577, 'https://ror.org/04d2spn76', 'en', 1, 'https://ror.org/04d2spn76 Al-Bayan University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁŠŲ§Ł†'),
(100578, 'https://ror.org/052d0td05', 'es', 1, 'https://ror.org/052d0td05 Hospital Universitario San Ignacio'),
(100579, 'https://ror.org/02vqddp65', 'fr', 1, 'https://ror.org/02vqddp65 UniversitƩ Mustapha Stambouli de Mascara'),
(100580, 'https://ror.org/00dg2xc09', 'en', 1, 'https://ror.org/00dg2xc09 Balsillie School of International Affairs'),
(100581, 'https://ror.org/03w54w620', 'en', 1, 'https://ror.org/03w54w620 British Trust for Ornithology'),
(100582, 'https://ror.org/05ggagb37', 'en', 1, 'https://ror.org/05ggagb37 Samara National Research University Дамарский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика Š”. П. ŠšŠ¾Ń€Š¾Š»Ń‘Š²Š°'),
(100583, 'https://ror.org/01ptrk735', 'en', 1, 'https://ror.org/01ptrk735 MSD (Belgium)'),
(100584, 'https://ror.org/02q5h6807', 'en', 1, 'https://ror.org/02q5h6807 Federal University Oye Ekiti'),
(100585, 'https://ror.org/0235ynq74', 'en', 1, 'https://ror.org/0235ynq74 PƤdagogische Hochschule Luzern University of Teacher Education Lucerne'),
(100586, 'https://ror.org/01jbb3w63', 'fr', 1, 'https://ror.org/01jbb3w63 Centre Hospitalier Universitaire de Reims'),
(100587, 'https://ror.org/00shzgx32', 'en', 1, 'https://ror.org/00shzgx32 Methodist University of Piracicaba Universidade Metodista de Piracicaba'),
(100588, 'https://ror.org/035145p50', 'en', 1, 'https://ror.org/035145p50 University of Bechar Ų¬Ų§Ł…Ų¹Ų© ŲØŲ“Ų§Ų±'),
(100589, 'https://ror.org/00cv1e222', 'en', 1, 'https://ror.org/00cv1e222 Saint Peter''s University Universidad de San Pedro'),
(100590, 'https://ror.org/00183pc12', 'en', 1, 'https://ror.org/00183pc12 Kharkiv Institute of Physics and Technology Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ фізико-технічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(100591, 'https://ror.org/02r59nq91', 'es', 1, 'https://ror.org/02r59nq91 Fundación La Salle de Ciencias Naturales'),
(100592, 'https://ror.org/03g9v2404', 'en', 1, 'https://ror.org/03g9v2404 Universiteti i TiranĆ«s University of Tirana Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ των Τιράνων'),
(100593, 'https://ror.org/00gt23c81', 'es', 1, 'https://ror.org/00gt23c81 National Autonomous High Andean University of Tarma Universidad Nacional Autónoma Altoandina de Tarma'),
(100594, 'https://ror.org/05pzmdf74', 'en', 1, 'https://ror.org/05pzmdf74 Popular University of Cesar Universidad Popular del Cesar'),
(100595, 'https://ror.org/045qcpw44', 'en', 1, 'https://ror.org/045qcpw44 Tashkent Chemical-Technological Institute Toshkent Kimyo-Texnologiya Instituti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ химико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(100596, 'https://ror.org/033gess63', 'de', 1, 'https://ror.org/033gess63 Zentralbibliothek Zürich Zurich Central Library'),
(100597, 'https://ror.org/01cawbq05', 'en', 1, 'https://ror.org/01cawbq05 Qatar Foundation Ł…Ų¤Ų³Ų³Ų© قطر'),
(100598, 'https://ror.org/003r76697', 'de', 1, 'https://ror.org/003r76697 Nordakademie'),
(100599, 'https://ror.org/01spy4t79', 'en', 1, 'https://ror.org/01spy4t79 Wuppertal Institut für Klima, Umwelt, Energie Wuppertal Institute for Climate, Environment and Energy'),
(100600, 'https://ror.org/00yp5c433', 'en', 1, 'https://ror.org/00yp5c433 L’UniversitĆ© Nationale Technique Ā«Institut Polytechnique de KharkovĀ» Narodowy Techniczny Uniwersytet Politechnika Charkowska National Technical University "Kharkiv Polytechnic Institute" Ulusal Teknik Üniversitesi "Kharkov Politeknik Enstitüsü" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ політехнічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ā» Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(100601, 'https://ror.org/01abtsn51', 'en', 1, 'https://ror.org/01abtsn51 Chung Shan Medical University Hospital'),
(100602, 'https://ror.org/02kyh9583', 'en', 1, 'https://ror.org/02kyh9583 Industrial University of Tyumen Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100603, 'https://ror.org/05vhdrp61', 'id', 1, 'https://ror.org/05vhdrp61 IAIN Kudus Institut Agama Islam Negeri'),
(100604, 'https://ror.org/03dynh639', 'no_lang_code', 1, 'https://ror.org/03dynh639 SIMAD University'),
(100605, 'https://ror.org/04841rb23', 'en', 1, 'https://ror.org/04841rb23 Toplica Academy of Applied Studies Топличка акаГемија ŃŃ‚Ń€ŃƒŠŗŠ¾Š²Š½ŠøŃ… ŃŃ‚ŃƒŠ“ŠøŃ˜Š°'),
(100606, 'https://ror.org/02rb21j89', 'en', 1, 'https://ror.org/02rb21j89 Indian Institute of Science Education and Research, Bhopal ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤­ą„‹ą¤Ŗą¤¾ą¤²'),
(100607, 'https://ror.org/02q3m6z23', 'sv', 1, 'https://ror.org/02q3m6z23 Region VƤrmland Kommunalfƶrbund'),
(100608, 'https://ror.org/03q92e557', 'no_lang_code', 1, 'https://ror.org/03q92e557 Yanka Kupala State University of Grodno ГроГзенскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń Янкі ŠšŃƒŠæŠ°Š»Ń‹ ГроГненский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Янки ŠšŃƒŠæŠ°Š»Ń‹'),
(100609, 'https://ror.org/04a7rxb17', 'en', 1, 'https://ror.org/04a7rxb17 University of Hyderabad ą¤¹ą„ˆą¤¦ą¤°ą¤¾ą¤¬ą¤¾ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¹ą¦¾ą¦Æą¦¼ą¦¦ą§ą¦°ą¦¾ą¦¬ą¦¾ą¦¦ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ హైదరాబాదు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(100610, 'https://ror.org/04dzs7b08', 'en', 1, 'https://ror.org/04dzs7b08 Wofford College'),
(100611, 'https://ror.org/0319nzt45', 'es', 1, 'https://ror.org/0319nzt45 Universidad Nacional Agraria de la Selva'),
(100612, 'https://ror.org/002wcjr61', 'en', 1, 'https://ror.org/002wcjr61 South-West University "Neofit Rilski" ЮгозапаГен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŠµŠ¾Ń„ŠøŃ‚ Рилски'),
(100613, 'https://ror.org/000548d77', 'en', 1, 'https://ror.org/000548d77 Taraba State University'),
(100614, 'https://ror.org/05pfpea66', 'es', 1, 'https://ror.org/05pfpea66 Fundación Universitaria Sanitas'),
(100615, 'https://ror.org/03dpchx26', 'it', 1, 'https://ror.org/03dpchx26 Azienda Socio Sanitaria Territoriale Santi Paolo e Carlo Regional Health Care and Social Agency Saint Paul and Carlo'),
(100616, 'https://ror.org/021vseb03', 'en', 1, 'https://ror.org/021vseb03 Autonomous University of Tlaxcala Universidad Autónoma de Tlaxcala'),
(100617, 'https://ror.org/00zqn6a72', 'en', 1, 'https://ror.org/00zqn6a72 State Research Institute Centre for Innovative Medicine Valstybinis Mokslinių Tyrimų Institutas Inovatyvios Medicinos Centras'),
(100618, 'https://ror.org/05rb1q636', 'it', 1, 'https://ror.org/05rb1q636 Istituto Nazionale Genetica Molecolare'),
(100619, 'https://ror.org/014ecgm61', 'en', 1, 'https://ror.org/014ecgm61 Ravenshaw University ą¬°ą­‡ą¬­ą­‡ą¬Øą­ą¬øą¬¾ ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(100620, 'https://ror.org/00e1bj270', 'pt', 1, 'https://ror.org/00e1bj270 Instituto Superior de Ciências da Educação da Huíla'),
(100621, 'https://ror.org/00vgfzn51', 'es', 1, 'https://ror.org/00vgfzn51 Universidad Argentina de la Empresa UniversitƩ argentine de la empresa'),
(100622, 'https://ror.org/05fj29j73', 'es', 1, 'https://ror.org/05fj29j73 Universidad de Las Tunas'),
(100623, 'https://ror.org/05yptqp13', 'en', 1, 'https://ror.org/05yptqp13 SveučiliŔte u Dubrovniku University of Dubrovnik'),
(100624, 'https://ror.org/01msc1703', 'en', 1, 'https://ror.org/01msc1703 Indian Institute of Astrophysics ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤¾ą¤°ą¤¾ą¤­ą„Œą¤¤ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µą®¾ą®©ą®æą®Æą®±ąÆą®Ŗą®æą®Æą®²ąÆ ą®®ąÆˆą®Æą®®ąÆ'),
(100625, 'https://ror.org/049ajby27', 'en', 1, 'https://ror.org/049ajby27 Edo State University Uzairue'),
(100626, 'https://ror.org/00da1gf19', 'en', 1, 'https://ror.org/00da1gf19 Hasanuddin University Universitas Hasanuddin'),
(100627, 'https://ror.org/05kaxtp50', 'es', 1, 'https://ror.org/05kaxtp50 Universidad Católica de Manizales'),
(100628, 'https://ror.org/0138va192', 'en', 1, 'https://ror.org/0138va192 Royal Society for the Protection of Birds'),
(100629, 'https://ror.org/0537dnd74', 'no_lang_code', 1, 'https://ror.org/0537dnd74 Banco Bilbao Vizcaya Argentaria (Spain)'),
(100630, 'https://ror.org/024109974', 'en', 1, 'https://ror.org/024109974 JosƩ Benito Vives de AndrƩis Marine and Coastal Research Institute'),
(100631, 'https://ror.org/01p618c36', 'en', 1, 'https://ror.org/01p618c36 Nasjonalt Kunnskapssenter om Vold og Traumatisk Stress Norwegian Centre for Violence and Traumatic Stress Studies'),
(100632, 'https://ror.org/017vj9b48', 'en', 1, 'https://ror.org/017vj9b48 Rajiv Gandhi National University of Law ąØ°ąØ¾ąØœą©€ąØµ ਗਾਂਧੀ ਨੈਸ਼ਨਲ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ਆਫ਼ ਲਾ'),
(100633, 'https://ror.org/04frf8n21', 'en', 1, 'https://ror.org/04frf8n21 Kyrgyz-Türkish Manas Üniversity ŠšŃ‹Ń€Š³Ń‹Š·-Түрк «Манас» ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾-Š¢ŃƒŃ€ŠµŃ†ŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ «Манас»'),
(100634, 'https://ror.org/038dhfq97', 'en', 1, 'https://ror.org/038dhfq97 Jaipuria Institute of Management'),
(100635, 'https://ror.org/009n8zh45', 'en', 1, 'https://ror.org/009n8zh45 Chuo Kikuu cha Dodoma The University of Dodoma'),
(100636, 'https://ror.org/02y553197', 'en', 1, 'https://ror.org/02y553197 National Institute of Technology Raipur ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(100637, 'https://ror.org/04bqwzd17', 'de', 1, 'https://ror.org/04bqwzd17 Bayerisches Landesamt für Gesundheit und Lebensmittelsicherheit'),
(100638, 'https://ror.org/037y0xy94', 'fr', 1, 'https://ror.org/037y0xy94 Centre National de Recherche Agronomique'),
(100639, 'https://ror.org/045b9pr88', 'en', 1, 'https://ror.org/045b9pr88 Ministry of Science Technology and Higher Education Ministério da Ciência Tecnologia e Ensino Superior'),
(100640, 'https://ror.org/05nfkgg69', 'fr', 1, 'https://ror.org/05nfkgg69 Université de Thiès'),
(100641, 'https://ror.org/00cf3sf89', 'id', 1, 'https://ror.org/00cf3sf89 Electronic Engineering Polytechnic Institute of Surabaya Politeknik Elektronika Negeri Surabaya'),
(100642, 'https://ror.org/00qerpb33', 'en', 1, 'https://ror.org/00qerpb33 National Superconducting Cyclotron Laboratory'),
(100643, 'https://ror.org/05qgkbq61', 'en', 1, 'https://ror.org/05qgkbq61 Plant Breeding and Acclimatization Institute - National Research Institute'),
(100644, 'https://ror.org/02w32z542', 'en', 1, 'https://ror.org/02w32z542 African Institute for Mathematical Sciences'),
(100645, 'https://ror.org/0254y9b08', 'no_lang_code', 1, 'https://ror.org/0254y9b08 BEST - Bioenergy and Sustainable Technologies (Austria)'),
(100646, 'https://ror.org/01qkghv97', 'no_lang_code', 1, 'https://ror.org/01qkghv97 Navamindradhiraj University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø§ąø”ąø“ąø™ąø—ąø£ąø²ąø˜ąø“ąø£ąø²ąøŠ'),
(100647, 'https://ror.org/03m7qjm52', 'id', 1, 'https://ror.org/03m7qjm52 Universitas Galuh'),
(100648, 'https://ror.org/018jjaw76', 'fr', 1, 'https://ror.org/018jjaw76 UniversitĆ© IBN Khaldoun Tiaret Ų¬Ų§Ł…Ų¹Ų© ابن Ų®Ł„ŲÆŁˆŁ† تيارت'),
(100649, 'https://ror.org/0042xzm63', 'en', 1, 'https://ror.org/0042xzm63 NOAA RESTORE Science Program'),
(100650, 'https://ror.org/01spsga76', 'es', 1, 'https://ror.org/01spsga76 Universidad Nacional de Ciencias Forestales'),
(100651, 'https://ror.org/05wyxj832', 'en', 1, 'https://ror.org/05wyxj832 Girne Üniversitesi University of Kyrenia'),
(100652, 'https://ror.org/03tj5qd85', 'en', 1, 'https://ror.org/03tj5qd85 Tampa General Hospital'),
(100653, 'https://ror.org/01mke9645', 'en', 1, 'https://ror.org/01mke9645 Ministry of Defence MinistƩrio da Defesa'),
(100654, 'https://ror.org/03g3p3b82', 'en', 1, 'https://ror.org/03g3p3b82 Mount Saint Vincent University'),
(100655, 'https://ror.org/019v0z461', 'en', 1, 'https://ror.org/019v0z461 Institute of Natural Fibres and Medicinal Plants'),
(100656, 'https://ror.org/055f0jp24', 'en', 1, 'https://ror.org/055f0jp24 University of Mary'),
(100657, 'https://ror.org/01hw00g98', 'es', 1, 'https://ror.org/01hw00g98 Sociedad EspaƱola de Nefrologƭa'),
(100658, 'https://ror.org/05vss7635', 'en', 1, 'https://ror.org/05vss7635 Ibero American University Universidad Iberoamericana'),
(100659, 'https://ror.org/056srs126', 'es', 1, 'https://ror.org/056srs126 Universidad Tecnológica Empresarial de Guayaquil'),
(100660, 'https://ror.org/038dty275', 'no_lang_code', 1, 'https://ror.org/038dty275 CeNTI (Portugal)'),
(100661, 'https://ror.org/05s3rh916', 'es', 1, 'https://ror.org/05s3rh916 Autonomous University of Chiriqui Universidad Autónoma de Chiriquí'),
(100662, 'https://ror.org/04qjs4v45', 'en', 1, 'https://ror.org/04qjs4v45 Instytut Nafty i Gazu – Państwowy Instytutu Badawczy Oil and Gas Institute - National Research Institute'),
(100663, 'https://ror.org/029zqs055', 'en', 1, 'https://ror.org/029zqs055 College of Wooster'),
(100664, 'https://ror.org/03rcwtr18', 'en', 1, 'https://ror.org/03rcwtr18 Laurentian University UniversitƩ Laurentienne'),
(100665, 'https://ror.org/00874hx02', 'en', 1, 'https://ror.org/00874hx02 National Oceanography Centre'),
(100666, 'https://ror.org/00d6k8y35', 'en', 1, 'https://ror.org/00d6k8y35 University of Staffordshire'),
(100667, 'https://ror.org/04r9s1v23', 'vi', 1, 'https://ror.org/04r9s1v23 TrĘ°į»ng ĐH Nguyį»…n Tįŗ„t ThĆ nh'),
(100668, 'https://ror.org/058q1cn43', 'en', 1, 'https://ror.org/058q1cn43 Goce Delcev University Универзитет Гоце Делчев Штип'),
(100669, 'https://ror.org/03e75b898', 'en', 1, 'https://ror.org/03e75b898 University Mohamed El Bachir El Ibrahimi of Bordj Bou Arreridj UniversitĆ© Mohamed El Bachir El Ibrahimi de Bordj Bou ArrĆ©ridj Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ Ų§Ł„ŲØŲ“ŁŠŲ± Ų§Ł„Ų§ŲØŲ±Ų§Ł‡ŁŠŁ…ŁŠŲŒ ŲØŲ±Ų¬ بوعريريج'),
(100670, 'https://ror.org/03r6aza38', 'id', 1, 'https://ror.org/03r6aza38 Universitas Katolik Widya Mandira'),
(100671, 'https://ror.org/01gmp5538', 'en', 1, 'https://ror.org/01gmp5538 Office of Information and Resource Management'),
(100672, 'https://ror.org/01g3pby21', 'en', 1, 'https://ror.org/01g3pby21 St. Joseph’s College of Engineering'),
(100673, 'https://ror.org/00h1aq868', 'en', 1, 'https://ror.org/00h1aq868 Paula Stradiņa KlÄ«niskā universitātes slimnÄ«ca Pauls StradiņŔ Clinical University Hospital'),
(100674, 'https://ror.org/05cz92x43', 'en', 1, 'https://ror.org/05cz92x43 Texas Children''s Hospital'),
(100675, 'https://ror.org/02p5hsv84', 'en', 1, 'https://ror.org/02p5hsv84 Coburg University of Applied Sciences Hochschule Coburg'),
(100676, 'https://ror.org/02f9k5d27', 'en', 1, 'https://ror.org/02f9k5d27 African Institute for Mathematical Sciences'),
(100677, 'https://ror.org/04h67aa53', 'en', 1, 'https://ror.org/04h67aa53 Office of Legislative & Public Affairs'),
(100678, 'https://ror.org/00my7df95', 'en', 1, 'https://ror.org/00my7df95 Marwadi Education Foundation'),
(100679, 'https://ror.org/032xqbj11', 'en', 1, 'https://ror.org/032xqbj11 Technical University of Applied Sciences Lübeck Technische Hochschule Lübeck'),
(100680, 'https://ror.org/04eehsy38', 'en', 1, 'https://ror.org/04eehsy38 Technical University of Kenya'),
(100681, 'https://ror.org/03c33w089', 'en', 1, 'https://ror.org/03c33w089 Dr. Yashwant Singh Parmar University of Horticulture and Forestry ą¤”ą„‰. यशवंत ą¤øą¤æą¤‚ą¤˜ परमार ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤¹ą„‰ą¤°ą„ą¤Ÿą¤æą¤•ą¤²ą„ą¤šą¤° ą¤ą¤‚ą¤” ą¤«ą„‹ą¤°ą„‡ą¤øą„ą¤Ÿą„ą¤°ą„€'),
(100682, 'https://ror.org/05t1d6r64', 'en', 1, 'https://ror.org/05t1d6r64 Indian Institute of Management Ranchi ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤‚ą¤šą„€'),
(100683, 'https://ror.org/01xb6rs26', 'en', 1, 'https://ror.org/01xb6rs26 Technical University of Malaysia Malacca Universiti Teknikal Malaysia Melaka'),
(100684, 'https://ror.org/03zq0dg86', 'en', 1, 'https://ror.org/03zq0dg86 University Colleges Leuven-Limburg'),
(100685, 'https://ror.org/01ff74m36', 'en', 1, 'https://ror.org/01ff74m36 Burapha University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøšąø¹ąø£ąøžąø²'),
(100686, 'https://ror.org/00kxjcd28', 'en', 1, 'https://ror.org/00kxjcd28 Molde University College'),
(100687, 'https://ror.org/00rz3ed53', 'en', 1, 'https://ror.org/00rz3ed53 Merck Canada Inc. Merck Canada Inc. (Canada)'),
(100688, 'https://ror.org/004y8wk30', 'en', 1, 'https://ror.org/004y8wk30 QIMR Berghofer Medical Research Institute'),
(100689, 'https://ror.org/05c347015', 'en', 1, 'https://ror.org/05c347015 Irish Research eLibrary'),
(100690, 'https://ror.org/049f0ha78', 'id', 1, 'https://ror.org/049f0ha78 Universitas Jember'),
(100691, 'https://ror.org/02zhewk16', 'en', 1, 'https://ror.org/02zhewk16 Indian Institute of Management Calcutta ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤²ą¤•ą¤¤ą„ą¤¤ą¤¾ ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦•ą§ą¦Æą¦¾ą¦²ą¦•ą¦¾ą¦Ÿą¦¾ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ ą®•ąÆŠą®²ąÆą®•ą®¤ąÆą®¤ą®¾'),
(100692, 'https://ror.org/02qj9qr34', 'en', 1, 'https://ror.org/02qj9qr34 Ohio Wesleyan University Universidad Wesleyana de Ohio UniversitƩ wesleyenne de l''ohio'),
(100693, 'https://ror.org/01w69qj84', 'en', 1, 'https://ror.org/01w69qj84 Šiauliai State Higher Education Institution Šiaulių valstybinė kolegija'),
(100694, 'https://ror.org/000a8qk84', 'en', 1, 'https://ror.org/000a8qk84 National University Pamantasang Pambansa'),
(100695, 'https://ror.org/04v893f23', 'en', 1, 'https://ror.org/04v893f23 Forman Christian College ŁŲ§Ų±Ł…ŪŒŁ† Ś©Ų±Ų³Ś†ŪŒŁ† کالج'),
(100696, 'https://ror.org/008a6s711', 'en', 1, 'https://ror.org/008a6s711 California University of Science and Medicine'),
(100697, 'https://ror.org/0420db125', 'en', 1, 'https://ror.org/0420db125 Rockefeller University Universidad Rockefeller'),
(100698, 'https://ror.org/03sfk2504', 'en', 1, 'https://ror.org/03sfk2504 South Ural State University Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100699, 'https://ror.org/05fzhrv79', 'en', 1, 'https://ror.org/05fzhrv79 Lupane State University'),
(100700, 'https://ror.org/05479a247', 'no_lang_code', 1, 'https://ror.org/05479a247 Compuscript Compuscript (Ireland) Compuscript Limited'),
(100701, 'https://ror.org/05ty46q84', 'en', 1, 'https://ror.org/05ty46q84 Akademia Humanistyczno-Ekonomiczna w Łodzi University of Humanities and Economics in Lodz'),
(100702, 'https://ror.org/02r85r585', 'en', 1, 'https://ror.org/02r85r585 Institute of Rural Development Planning'),
(100703, 'https://ror.org/03y5msf78', 'en', 1, 'https://ror.org/03y5msf78 Florida Fish and Wildlife Conservation Commission'),
(100704, 'https://ror.org/02ht9xe28', 'id', 1, 'https://ror.org/02ht9xe28 Universitas Dharmawangsa'),
(100705, 'https://ror.org/044ntvm43', 'en', 1, 'https://ror.org/044ntvm43 Montefiore Medical Center'),
(100706, 'https://ror.org/01cjqyj20', 'id', 1, 'https://ror.org/01cjqyj20 Institut Agama Islam Negeri Curup'),
(100707, 'https://ror.org/00f5xw084', 'es', 1, 'https://ror.org/00f5xw084 Instituto de Educación Técnica Profesional de Roldanillo Professional and Technical Education Institute from Roldanillo'),
(100708, 'https://ror.org/02366kp40', 'en', 1, 'https://ror.org/02366kp40 Informatics Institute of Technology'),
(100709, 'https://ror.org/003rfsp33', 'en', 1, 'https://ror.org/003rfsp33 Nationwide Children''s Hospital'),
(100710, 'https://ror.org/03g67sb77', 'en', 1, 'https://ror.org/03g67sb77 University of Economics Varna Š˜ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Варна'),
(100711, 'https://ror.org/02avtbn34', 'en', 1, 'https://ror.org/02avtbn34 Bowen University'),
(100712, 'https://ror.org/031kjyq12', 'es', 1, 'https://ror.org/031kjyq12 Universidad Hipócrates'),
(100713, 'https://ror.org/02svf5f06', 'en', 1, 'https://ror.org/02svf5f06 Medi-Caps University ą¤®ą„‡ą¤”ą„€-ą¤•ą„ˆą¤Ŗą„ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(100714, 'https://ror.org/048gbrn88', 'es', 1, 'https://ror.org/048gbrn88 Universidad Tecnológica de Los Andes'),
(100715, 'https://ror.org/00q898q52', 'en', 1, 'https://ror.org/00q898q52 University of Medical Sciences, Ondo'),
(100716, 'https://ror.org/01ckdn478', 'en', 1, 'https://ror.org/01ckdn478 Universidad de Louisville University of Louisville UniversitƩ de louisville'),
(100717, 'https://ror.org/00ep21g81', 'es', 1, 'https://ror.org/00ep21g81 Universidad Nacional Arturo Jauretche'),
(100718, 'https://ror.org/0084e6430', 'pt', 1, 'https://ror.org/0084e6430 CEJAM - Centro de Estudos e Pesquisas Dr João Amorim'),
(100719, 'https://ror.org/01n0rnc91', 'nl', 1, 'https://ror.org/01n0rnc91 Maasstad Ziekenhuis'),
(100720, 'https://ror.org/03v0qd864', 'es', 1, 'https://ror.org/03v0qd864 Universidad de Los Andes, Chile University of the Andes, Chile'),
(100721, 'https://ror.org/02ryrf141', 'en', 1, 'https://ror.org/02ryrf141 TrĘ°į»ng ĐẔi hį»c Văn Lang Van Lang University'),
(100722, 'https://ror.org/01dez0c30', 'en', 1, 'https://ror.org/01dez0c30 MVJ College of Engineering'),
(100723, 'https://ror.org/00zrhbg82', 'en', 1, 'https://ror.org/00zrhbg82 King Khaled Eye Specialist Hospital'),
(100724, 'https://ror.org/030h1vb90', 'nl', 1, 'https://ror.org/030h1vb90 AZ Sint-Jan'),
(100725, 'https://ror.org/014hfaw95', 'en', 1, 'https://ror.org/014hfaw95 Albany College of Pharmacy and Health Sciences'),
(100726, 'https://ror.org/01rfnc002', 'en', 1, 'https://ror.org/01rfnc002 Ernst Abbe University of Applied Sciences Jena Ernst-Abbe-Hochschule Jena'),
(100727, 'https://ror.org/0479aed98', 'en', 1, 'https://ror.org/0479aed98 Chuo Kikuu cha Dar es Salaam University of Dar es Salaam Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± السلام'),
(100728, 'https://ror.org/00nk5y742', 'es', 1, 'https://ror.org/00nk5y742 Universidad Internacional SEK'),
(100729, 'https://ror.org/03w1s3j27', 'en', 1, 'https://ror.org/03w1s3j27 Integrative Graduate Education and Research Traineeship'),
(100730, 'https://ror.org/03mcsbr76', 'en', 1, 'https://ror.org/03mcsbr76 Schweizerische Vogelwarte Swiss Ornithological Institute'),
(100731, 'https://ror.org/03rk5jj58', 'en', 1, 'https://ror.org/03rk5jj58 International Institute of Earthquake Engineering and Seismology'),
(100732, 'https://ror.org/04y57vd64', 'en', 1, 'https://ror.org/04y57vd64 School of Planning and Architecture Delhi ą¤Æą„‹ą¤œą¤Øą¤¾ तऄा ą¤µą¤¾ą¤øą„ą¤¤ą„ą¤•ą¤²ą¤¾ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(100733, 'https://ror.org/0433e6t24', 'de', 1, 'https://ror.org/0433e6t24 University of Koblenz UniversitƤt Koblenz'),
(100734, 'https://ror.org/0420tmj11', 'en', 1, 'https://ror.org/0420tmj11 Bundesinstitut für Berufsbildung Federal Institute for Vocational Education and Training'),
(100735, 'https://ror.org/043ae9h44', 'en', 1, 'https://ror.org/043ae9h44 Regis University Universidad RƩgis'),
(100736, 'https://ror.org/04d4mbk19', 'en', 1, 'https://ror.org/04d4mbk19 Pakistan Institute of Engineering and Applied Sciences'),
(100737, 'https://ror.org/051m5c198', 'id', 1, 'https://ror.org/051m5c198 Universitas Islam Negeri Imam Bonjol Padang'),
(100738, 'https://ror.org/02azyry73', 'en', 1, 'https://ror.org/02azyry73 University of Siegen UniversitƤt Siegen'),
(100739, 'https://ror.org/057k4ej49', 'en', 1, 'https://ror.org/057k4ej49 Murang''a University of Technology'),
(100740, 'https://ror.org/0529ybh43', 'en', 1, 'https://ror.org/0529ybh43 Pepperdine University'),
(100741, 'https://ror.org/04ms51788', 'de', 1, 'https://ror.org/04ms51788 WestsƤchsische Hochschule Zwickau'),
(100742, 'https://ror.org/059yk7s89', 'no_lang_code', 1, 'https://ror.org/059yk7s89 Haramaya University įˆįˆØįˆ›į‹« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(100743, 'https://ror.org/05f8ce979', 'en', 1, 'https://ror.org/05f8ce979 Ukrainian State University of Railway Transport ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ залізничного Ń‚Ń€Š°Š½ŃŠæŠ¾Ń€Ń‚Ńƒ'),
(100744, 'https://ror.org/05dm6rc87', 'en', 1, 'https://ror.org/05dm6rc87 Esan University Universidad ESAN'),
(100745, 'https://ror.org/049krfp54', 'id', 1, 'https://ror.org/049krfp54 Bank Indonesia'),
(100746, 'https://ror.org/0277z0p27', 'en', 1, 'https://ror.org/0277z0p27 Molloy College'),
(100747, 'https://ror.org/051ae8e94', 'no_lang_code', 1, 'https://ror.org/051ae8e94 Ambry Genetics (United States)'),
(100748, 'https://ror.org/015rzvz05', 'no', 1, 'https://ror.org/015rzvz05 Lovisenberg Diakonale HĆøgskole'),
(100749, 'https://ror.org/0428dfn13', 'en', 1, 'https://ror.org/0428dfn13 Dev Sanskriti Vishwavidyalaya ą¤¦ą„‡ą¤µ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(100750, 'https://ror.org/03dk4hf38', 'en', 1, 'https://ror.org/03dk4hf38 University of Asia Pacific ą¦¦ą§ą¦Æ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ ą¦Ŗą§ą¦Æą¦¾ą¦øą¦æą¦«ą¦æą¦•'),
(100751, 'https://ror.org/04m2anh63', 'de', 1, 'https://ror.org/04m2anh63 Bonn-Rhein-Sieg University of Applied Sciences Hochschule Bonn-Rhein-Sieg'),
(100752, 'https://ror.org/059xgrv47', 'no_lang_code', 1, 'https://ror.org/059xgrv47 Uka Tarsadia University'),
(100753, 'https://ror.org/02yghbg68', 'en', 1, 'https://ror.org/02yghbg68 Veer Surendra Sai University of Technology'),
(100754, 'https://ror.org/03xq7w797', 'fr', 1, 'https://ror.org/03xq7w797 Centre Hospitalier de Luxembourg'),
(100755, 'https://ror.org/00twb6c09', 'en', 1, 'https://ror.org/00twb6c09 Riga Technical University Rygos technikos universitetas RÄ«gas Tehniskā universitāte Рижский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100756, 'https://ror.org/05sxbyd35', 'en', 1, 'https://ror.org/05sxbyd35 University Medical Centre Mannheim UniversitƤtsklinikum Mannheim'),
(100757, 'https://ror.org/05t2k9j40', 'en', 1, 'https://ror.org/05t2k9j40 Romanian Research and Development Institute for Gas Turbines'),
(100758, 'https://ror.org/02e7r0h80', 'en', 1, 'https://ror.org/02e7r0h80 Harare Institute of Technology'),
(100759, 'https://ror.org/00djv2c17', 'en', 1, 'https://ror.org/00djv2c17 Indian Institute of Science Education and Research Kolkata ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾ ভারতীয় ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¶ą¦æą¦•ą§ą¦·ą¦¾ ও গবেষণা ą¦øą¦‚ą¦øą§ą¦„ą¦¾, কলকাতা'),
(100760, 'https://ror.org/05g1rjn35', 'en', 1, 'https://ror.org/05g1rjn35 La Sierra University Universidad de La Sierra'),
(100761, 'https://ror.org/032vgar48', 'en', 1, 'https://ror.org/032vgar48 Toshkent Xalqaro Vestminster Universiteti Westminster International University in Tashkent ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Вестминстерский Университет в Š¢Š°ŃˆŠŗŠµŠ½Ń‚е'),
(100762, 'https://ror.org/026j3ca82', 'en', 1, 'https://ror.org/026j3ca82 Hokkaido Research Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŒ—ęµ·é“ē«‹ē·åˆē ”ē©¶ę©Ÿę§‹'),
(100763, 'https://ror.org/003ez4w63', 'es', 1, 'https://ror.org/003ez4w63 Hospital Son Llatzer'),
(100764, 'https://ror.org/01nxc2t48', 'en', 1, 'https://ror.org/01nxc2t48 Montclair State University Universidad Estatal de Montclair UniversitĆ© d''Ɖtat de montclair'),
(100765, 'https://ror.org/03x2m4d16', 'en', 1, 'https://ror.org/03x2m4d16 Trunojoyo University Universitas Trunojoyo Madura'),
(100766, 'https://ror.org/04r1hh402', 'en', 1, 'https://ror.org/04r1hh402 Barry University'),
(100767, 'https://ror.org/04m54m956', 'de', 1, 'https://ror.org/04m54m956 Kerckhoff Klinik'),
(100768, 'https://ror.org/01x2s7885', 'en', 1, 'https://ror.org/01x2s7885 Tashkent State University of Law Toshkent davlat yuridik universiteti'),
(100769, 'https://ror.org/03zh5eq96', 'en', 1, 'https://ror.org/03zh5eq96 Hochschule Offenburg Offenburg University of Applied Sciences'),
(100770, 'https://ror.org/03yxg7206', 'es', 1, 'https://ror.org/03yxg7206 Instituto Nacional de Salud'),
(100771, 'https://ror.org/03h2xy876', 'en', 1, 'https://ror.org/03h2xy876 Institute of Cardiology'),
(100772, 'https://ror.org/03gh19d69', 'en', 1, 'https://ror.org/03gh19d69 University of Zambia'),
(100773, 'https://ror.org/05nnz2423', 'en', 1, 'https://ror.org/05nnz2423 Royal Shrewsbury Hospital'),
(100774, 'https://ror.org/04zwxg371', 'es', 1, 'https://ror.org/04zwxg371 Corporación Universitaria Remington'),
(100775, 'https://ror.org/01x03t965', 'es', 1, 'https://ror.org/01x03t965 Fundación Universitaria Compensar'),
(100776, 'https://ror.org/01g7s6g79', 'en', 1, 'https://ror.org/01g7s6g79 Neuroscience Research Australia'),
(100777, 'https://ror.org/05xqycm14', 'en', 1, 'https://ror.org/05xqycm14 Tripura University ą¤¤ą„ą¤°ą¤æą¤Ŗą„ą¤°ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¤ą§ą¦°ą¦æą¦Ŗą§ą¦°ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ திரிபுரா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(100778, 'https://ror.org/01ereaj97', 'en', 1, 'https://ror.org/01ereaj97 Nacionalna i SveučiliŔna Knjižnica u Zagrebu National and University Library in Zagreb'),
(100779, 'https://ror.org/043c4kc51', 'en', 1, 'https://ror.org/043c4kc51 Edgewood College'),
(100780, 'https://ror.org/05d09wf68', 'en', 1, 'https://ror.org/05d09wf68 Agricultural Biotechnology Research Institute of Iran'),
(100781, 'https://ror.org/03ke6d638', 'id', 1, 'https://ror.org/03ke6d638 Universitas Gadjah Mada'),
(100782, 'https://ror.org/02ccxj712', 'en', 1, 'https://ror.org/02ccxj712 Kenya Medical Training College'),
(100783, 'https://ror.org/0066fxv63', 'en', 1, 'https://ror.org/0066fxv63 British University in Egypt UniversitĆ© britannique en Ɖgypte الجامعة Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ© فى Ł…ŲµŲ±'),
(100784, 'https://ror.org/03mcx2558', 'en', 1, 'https://ror.org/03mcx2558 Golestan University of Medical Sciences'),
(100785, 'https://ror.org/00jma8s40', 'en', 1, 'https://ror.org/00jma8s40 China Aerodynamics Research and Development Center äø­å›½ē©ŗę°”åŠØåŠ›ē ”ē©¶äøŽå‘å±•äø­åæƒ'),
(100786, 'https://ror.org/030bmb197', 'en', 1, 'https://ror.org/030bmb197 Sriwijaya University Universitas Sriwijaya'),
(100787, 'https://ror.org/05256ym39', 'en', 1, 'https://ror.org/05256ym39 Kazan Federal University Казанский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100788, 'https://ror.org/02nn4s922', 'no_lang_code', 1, 'https://ror.org/02nn4s922 Pioneer Hi-Bred'),
(100789, 'https://ror.org/01rdrb571', 'en', 1, 'https://ror.org/01rdrb571 Philipps University of Marburg Philipps-UniversitƤt Marburg'),
(100790, 'https://ror.org/000fdg564', 'en', 1, 'https://ror.org/000fdg564 Kementerian Kelautan dan Perikanan Ministry of Marine Affairs and Fisheries'),
(100791, 'https://ror.org/000nnmz85', 'en', 1, 'https://ror.org/000nnmz85 Ministry of Environment Protection and Agriculture of Georgia įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ’įƒįƒ įƒ”įƒ›įƒįƒ” įƒ“įƒįƒŖįƒ•įƒ˜įƒ”įƒ įƒ“įƒ įƒ”įƒįƒ¤įƒšįƒ˜įƒ” įƒ›įƒ”įƒ£įƒ įƒœįƒ”įƒįƒ‘įƒ˜įƒ” įƒ”įƒįƒ›įƒ˜įƒœįƒ˜įƒ”įƒ¢įƒ įƒ'),
(100792, 'https://ror.org/03cm0t424', 'en', 1, 'https://ror.org/03cm0t424 Metropolitan Museum of Art Museo Metropolitano de Arte'),
(100793, 'https://ror.org/01js9jv94', 'en', 1, 'https://ror.org/01js9jv94 EBS University of Business and Law EBS Universität für Wirtschaft und Recht'),
(100794, 'https://ror.org/037tgdn13', 'en', 1, 'https://ror.org/037tgdn13 Hindustan Institute of Technology and Science ą®‡ą®ØąÆą®¤ąÆą®šąÆą®¤ąÆą®¤ą®¾ą®©ąÆ ą®Ŗā€Œą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(100795, 'https://ror.org/00p4ywg82', 'en', 1, 'https://ror.org/00p4ywg82 Marian University - Indiana'),
(100796, 'https://ror.org/02qte9q33', 'en', 1, 'https://ror.org/02qte9q33 Stavangerin yliopisto University of Stavanger'),
(100797, 'https://ror.org/01jxtne23', 'en', 1, 'https://ror.org/01jxtne23 University Hospital Olomouc'),
(100798, 'https://ror.org/02w8ba206', 'en', 1, 'https://ror.org/02w8ba206 Galgotias University'),
(100799, 'https://ror.org/00g8jvh18', 'id', 1, 'https://ror.org/00g8jvh18 Universitas PGRI Adi Buana Surabaya'),
(100800, 'https://ror.org/03v9e8t09', 'es', 1, 'https://ror.org/03v9e8t09 Centro de BiologĆ­a Molecular Severo Ochoa'),
(100801, 'https://ror.org/0305fyb87', 'en', 1, 'https://ror.org/0305fyb87 Woxsen School of Business'),
(100802, 'https://ror.org/00bc64s87', 'nl', 1, 'https://ror.org/00bc64s87 Noordwest Ziekenhuisgroep'),
(100803, 'https://ror.org/023gzwx10', 'en', 1, 'https://ror.org/023gzwx10 Fayoum University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŁŠŁˆŁ…'),
(100804, 'https://ror.org/03y211p39', 'id', 1, 'https://ror.org/03y211p39 Universitas Krisnadwipayana'),
(100805, 'https://ror.org/03kndyq24', 'en', 1, 'https://ror.org/03kndyq24 Moshi Co-operative University'),
(100806, 'https://ror.org/04s8tv284', 'pl', 1, 'https://ror.org/04s8tv284 Akademia Wychowania Fizycznego im. Eugeniusza Piaseckiego w Poznaniu'),
(100807, 'https://ror.org/04rt94r53', 'en', 1, 'https://ror.org/04rt94r53 Barnard College'),
(100808, 'https://ror.org/05x4m5564', 'en', 1, 'https://ror.org/05x4m5564 Public Health Agency of Sweden'),
(100809, 'https://ror.org/02kesvt12', 'en', 1, 'https://ror.org/02kesvt12 National University of Science and Technology'),
(100810, 'https://ror.org/01856cw59', 'en', 1, 'https://ror.org/01856cw59 University Hospital Münster Universitätsklinikum Münster'),
(100811, 'https://ror.org/05k323c76', 'en', 1, 'https://ror.org/05k323c76 Naturhistoriska riksmuseet Swedish Museum of Natural History Valtion luonnonhistoriallinen museo'),
(100812, 'https://ror.org/03sx84n71', 'en', 1, 'https://ror.org/03sx84n71 Teagasc - The Irish Agriculture and Food Development Authority'),
(100813, 'https://ror.org/0350e0c50', 'en', 1, 'https://ror.org/0350e0c50 Lithuanian Energy Institute'),
(100814, 'https://ror.org/01cwd8p12', 'pt', 1, 'https://ror.org/01cwd8p12 Universidade de Passo Fundo University of Passo Fundo'),
(100815, 'https://ror.org/04ztvfe59', 'en', 1, 'https://ror.org/04ztvfe59 Akademia Sztuk Pieknych im. Eugeniusza Gepperta we Wroclawiu Eugeniusz Geppert Academy of Art and Design in Wroclaw'),
(100816, 'https://ror.org/00m160r09', 'en', 1, 'https://ror.org/00m160r09 Universitas Pendidikan Nasional University of National Education'),
(100817, 'https://ror.org/01897f782', 'es', 1, 'https://ror.org/01897f782 National University of Juliaca Universidad Nacional de Juliaca'),
(100818, 'https://ror.org/017x26m02', 'en', 1, 'https://ror.org/017x26m02 O''zbekiston Davlat Jahon tillari universiteti Uzbek State University of World Languages'),
(100819, 'https://ror.org/022egfk39', 'es', 1, 'https://ror.org/022egfk39 Escuela de Comunicación Mónica Herrera'),
(100820, 'https://ror.org/04v4swe56', 'en', 1, 'https://ror.org/04v4swe56 Uganda Martyrs University'),
(100821, 'https://ror.org/03cxs0c96', 'en', 1, 'https://ror.org/03cxs0c96 African Institute for Mathematical Sciences'),
(100822, 'https://ror.org/03qbgfe05', 'pt', 1, 'https://ror.org/03qbgfe05 Universidade do Contestado'),
(100823, 'https://ror.org/04k83g518', 'en', 1, 'https://ror.org/04k83g518 Concordia University Wisconsin'),
(100824, 'https://ror.org/051qw9f78', 'de', 1, 'https://ror.org/051qw9f78 HTWG Hochschule Konstanz - Technik, Wirtschaft und Gestaltung HTWG Konstanz - University of Applied Sciences'),
(100825, 'https://ror.org/03gcqw949', 'fr', 1, 'https://ror.org/03gcqw949 Centre Universitaire Nour Bachir El Bayadh Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł†ŁˆŲ± Ų§Ł„ŲØŲ“ŁŠŲ± Ų§Ł„ŲØŁŠŲ¶'),
(100826, 'https://ror.org/03v2r6x37', 'en', 1, 'https://ror.org/03v2r6x37 Bigelow Laboratory for Ocean Sciences'),
(100827, 'https://ror.org/008qpg558', 'de', 1, 'https://ror.org/008qpg558 Deutsches Biomasseforschungszentrum'),
(100828, 'https://ror.org/0539mt741', 'en', 1, 'https://ror.org/0539mt741 Bahrami Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ŲØŁ‡Ų±Ų§Ł…ŪŒ'),
(100829, 'https://ror.org/04j5g5g52', 'en', 1, 'https://ror.org/04j5g5g52 Tay Bac University ĐẔi hį»c TĆ¢y BįŗÆc');
INSERT INTO `rors` VALUES
(100830, 'https://ror.org/02my4wj17', 'en', 1, 'https://ror.org/02my4wj17 National College of Business Administration and Economics Ł†ŪŒŲ“Ł†Ł„ کالج آف بزنس Ų§ŪŒŚˆŁ…Ł†Ų³Ł¹Ų±ŪŒŲ“Ł† Ų§ŪŒŁ†Śˆ اکنامکس'),
(100831, 'https://ror.org/017pq0w72', 'en', 1, 'https://ror.org/017pq0w72 Koya University Ų¬Ų§Ł…Ų¹Ų© ŁƒŁˆŁŠŁ‡'),
(100832, 'https://ror.org/04yr71909', 'en', 1, 'https://ror.org/04yr71909 CollĆØge Militaire Royal du Canada Royal Military College of Canada'),
(100833, 'https://ror.org/02s9jxg24', 'en', 1, 'https://ror.org/02s9jxg24 University of Zenica Univerzitet u Zenici Универзитет у Зеници'),
(100834, 'https://ror.org/031tt0491', 'en', 1, 'https://ror.org/031tt0491 Fitchburg State University UniversitĆ© d''Ɖtat de Fitchburg'),
(100835, 'https://ror.org/04hfv3620', 'en', 1, 'https://ror.org/04hfv3620 Benue State University'),
(100836, 'https://ror.org/04e7kpf57', 'en', 1, 'https://ror.org/04e7kpf57 Thomas More Kempen'),
(100837, 'https://ror.org/01x98fq76', 'en', 1, 'https://ror.org/01x98fq76 Fachhochschule des bfi Wien University of Applied Sciences BFI Vienna'),
(100838, 'https://ror.org/00r9vb833', 'en', 1, 'https://ror.org/00r9vb833 University Hospital Centre Zagreb ŠšŠ‘Š¦ Загреб'),
(100839, 'https://ror.org/02bt0vt04', 'en', 1, 'https://ror.org/02bt0vt04 Institute of Environmental Protection'),
(100840, 'https://ror.org/02tvdnz86', 'en', 1, 'https://ror.org/02tvdnz86 Dulaty University М.Š„.Š”ŃƒŠ»Š°Ń‚Šø атынГағы Тараз өңірлік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(100841, 'https://ror.org/05sjf8653', 'en', 1, 'https://ror.org/05sjf8653 MIT Academy of Engineering'),
(100842, 'https://ror.org/023ycer62', 'es', 1, 'https://ror.org/023ycer62 Huanta National Autonomous University Universidad Nacional Autónoma de Huanta'),
(100843, 'https://ror.org/04j4j0a75', 'en', 1, 'https://ror.org/04j4j0a75 National University of Lesotho'),
(100844, 'https://ror.org/00ste1919', 'en', 1, 'https://ror.org/00ste1919 Tashkent Pharmaceutical Institute Toshkent farmatsevtika instituti'),
(100845, 'https://ror.org/01p510883', 'no_lang_code', 1, 'https://ror.org/01p510883 WakeMed'),
(100846, 'https://ror.org/00x6dk626', 'en', 1, 'https://ror.org/00x6dk626 Koszalin University of Technology Politechnika Koszalińska'),
(100847, 'https://ror.org/02jnjb343', 'id', 1, 'https://ror.org/02jnjb343 Universitas Islam Negeri Antasari Banjarmasin'),
(100848, 'https://ror.org/0111z3553', 'no_lang_code', 1, 'https://ror.org/0111z3553 Kibabii University'),
(100849, 'https://ror.org/03erkev52', 'en', 1, 'https://ror.org/03erkev52 Al Akhawayn University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ų®ŁˆŁŠŁ†'),
(100850, 'https://ror.org/03x7msx65', 'en', 1, 'https://ror.org/03x7msx65 Academy of Christian Humanism University Universidad Academia de Humanismo Cristiano'),
(100851, 'https://ror.org/01t1kq612', 'en', 1, 'https://ror.org/01t1kq612 Karlsruhe University of Education PƤdagogische Hochschule Karlsruhe'),
(100852, 'https://ror.org/04grrp271', 'nl', 1, 'https://ror.org/04grrp271 Twente Hospital Group Ziekenhuis Groep Twente'),
(100853, 'https://ror.org/057ts1y80', 'en', 1, 'https://ror.org/057ts1y80 Islamic University of Gaza الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ŲŗŲ²Ų©'),
(100854, 'https://ror.org/01bg3pz19', 'en', 1, 'https://ror.org/01bg3pz19 AISSMS Institute of Information Technology'),
(100855, 'https://ror.org/0581k0452', 'en', 1, 'https://ror.org/0581k0452 Wheaton College - Illinois'),
(100856, 'https://ror.org/03sbzv212', 'en', 1, 'https://ror.org/03sbzv212 Institute for Scientific and Technological Research Instituto Potosino de Investigación Científica y Tecnológica'),
(100857, 'https://ror.org/052133d12', 'en', 1, 'https://ror.org/052133d12 University of Indianapolis'),
(100858, 'https://ror.org/05yb43k62', 'en', 1, 'https://ror.org/05yb43k62 EMNO UniversitƩ NOSM University'),
(100859, 'https://ror.org/05vy8np18', 'en', 1, 'https://ror.org/05vy8np18 Akademia Wychowania Fizycznego w Krakowie University School of Physical Education in Kraków'),
(100860, 'https://ror.org/04ma0p518', 'en', 1, 'https://ror.org/04ma0p518 Institut za oceanografiju i ribarstvo Institute of Oceanography and Fisheries'),
(100861, 'https://ror.org/00akhqc20', 'pt', 1, 'https://ror.org/00akhqc20 Universidade do Tocantins'),
(100862, 'https://ror.org/007jfm765', 'en', 1, 'https://ror.org/007jfm765 Imam Reza International University دانؓگاه ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ Ų§Ł…Ų§Ł… Ų±Ų¶Ų§'),
(100863, 'https://ror.org/03s413k54', 'en', 1, 'https://ror.org/03s413k54 Topfaith University'),
(100864, 'https://ror.org/01a27ax82', 'en', 1, 'https://ror.org/01a27ax82 Caro and Cuervo Institute Instituto Caro y Cuervo'),
(100865, 'https://ror.org/03r668693', 'en', 1, 'https://ror.org/03r668693 Mahidol Wittayanusorn School ą¹‚ąø£ąø‡ą¹€ąø£ąøµąø¢ąø™ąø”ąø«ąø“ąø”ąø„ąø§ąø“ąø—ąø¢ąø²ąø™ąøøąøŖąø£ąø“ą¹Œ'),
(100866, 'https://ror.org/051e7m916', 'en', 1, 'https://ror.org/051e7m916 Endicott College'),
(100867, 'https://ror.org/01txwsw02', 'en', 1, 'https://ror.org/01txwsw02 National Center for Tumor Diseases Nationale Centrum für Tumorerkrankungen'),
(100868, 'https://ror.org/04q6cg820', 'en', 1, 'https://ror.org/04q6cg820 Association of American Medical Colleges'),
(100869, 'https://ror.org/04c3msc18', 'en', 1, 'https://ror.org/04c3msc18 Galileo University Universidad Galileo'),
(100870, 'https://ror.org/001drnv35', 'en', 1, 'https://ror.org/001drnv35 Jadara University Ų¬Ų§Ł…Ų¹Ų© Ų¬ŲÆŲ§Ų±Ų§'),
(100871, 'https://ror.org/054qtzc88', 'tr', 1, 'https://ror.org/054qtzc88 Ozanteks Tekstil San. Ve TİC. A.Ş.'),
(100872, 'https://ror.org/029ss0s83', 'es', 1, 'https://ror.org/029ss0s83 Universidad Estatal Amazónica'),
(100873, 'https://ror.org/04trbj059', 'en', 1, 'https://ror.org/04trbj059 Kherson National Technical University Єерсонский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100874, 'https://ror.org/05jt4c572', 'en', 1, 'https://ror.org/05jt4c572 Olabisi Onabanjo University YunifƔsƭtƬ Olabisi Onabanjo'),
(100875, 'https://ror.org/00rj2jz45', 'id', 1, 'https://ror.org/00rj2jz45 Bandung University of Technology Universitas Teknologi Bandung'),
(100876, 'https://ror.org/016dcc221', 'tr', 1, 'https://ror.org/016dcc221 Kocaeli Health and Technology University Kocaeli Sağlık ve Teknoloji Üniversitesi'),
(100877, 'https://ror.org/00rky3x16', 'no_lang_code', 1, 'https://ror.org/00rky3x16 ArchLab'),
(100878, 'https://ror.org/055k3dh55', 'ro', 1, 'https://ror.org/055k3dh55 Universitatea Din Petrosani University of Petroșani'),
(100879, 'https://ror.org/0036b6n81', 'es', 1, 'https://ror.org/0036b6n81 Universidad Católica de Cuenca'),
(100880, 'https://ror.org/054rm6z62', 'en', 1, 'https://ror.org/054rm6z62 Catholic University Los Angeles of Chimbote Universidad Católica Los Ángeles de Chimbote'),
(100881, 'https://ror.org/052qsay17', 'en', 1, 'https://ror.org/052qsay17 Chittagong University of Engineering & Technology ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(100882, 'https://ror.org/0406pmf58', 'es', 1, 'https://ror.org/0406pmf58 Universidad Tecnológica del Perú'),
(100883, 'https://ror.org/0198j4566', 'es', 1, 'https://ror.org/0198j4566 Universidad de Las AmƩricas'),
(100884, 'https://ror.org/02asy9212', 'en', 1, 'https://ror.org/02asy9212 Danish Institute for International Studies'),
(100885, 'https://ror.org/04wckhb82', 'en', 1, 'https://ror.org/04wckhb82 Fakultnƭ Nemocnice Hradec KrƔlovƩ University Hospital Hradec KrƔlovƩ'),
(100886, 'https://ror.org/048y5x817', 'no_lang_code', 1, 'https://ror.org/048y5x817 Geosyntec Consultants (United States)'),
(100887, 'https://ror.org/01jays723', 'en', 1, 'https://ror.org/01jays723 Canadian Blood Services'),
(100888, 'https://ror.org/053stv828', 'no_lang_code', 1, 'https://ror.org/053stv828 Kisii University'),
(100889, 'https://ror.org/02g0fsq64', 'id', 1, 'https://ror.org/02g0fsq64 Politeknik Negeri Samarinda'),
(100890, 'https://ror.org/013bn0m92', 'es', 1, 'https://ror.org/013bn0m92 Universidad Popular de la Chontalpa'),
(100891, 'https://ror.org/047z4t272', 'en', 1, 'https://ror.org/047z4t272 National Heart Institute'),
(100892, 'https://ror.org/007tbc964', 'en', 1, 'https://ror.org/007tbc964 Baze University'),
(100893, 'https://ror.org/014bj5w56', 'en', 1, 'https://ror.org/014bj5w56 Directorate for STEM Education (EDU)'),
(100894, 'https://ror.org/04m6skt51', 'fr', 1, 'https://ror.org/04m6skt51 Ɖcole SupĆ©rieure des Metiers Artistiques'),
(100895, 'https://ror.org/01m4gt983', 'en', 1, 'https://ror.org/01m4gt983 SAIT Polytechnic'),
(100896, 'https://ror.org/05ag62t55', 'de', 1, 'https://ror.org/05ag62t55 Institut für Höhere Studien - Institute for Advanced Studies (IHS)'),
(100897, 'https://ror.org/024ghrf67', 'en', 1, 'https://ror.org/024ghrf67 International Center for Chemical and Biological Sciences Ś©ŪŒŁ…ŪŒŲ§Ų¦ŪŒ اور حیاتیاتی سائنس کے لئے ŲØŪŒŁ† Ų§Ł„Ų§Ł‚ŁˆŲ§Ł…ŪŒ مرکز'),
(100898, 'https://ror.org/02nqrcj51', 'en', 1, 'https://ror.org/02nqrcj51 Vijayanagara Sri Krishnadevaraya University ą²µą²æą²œą²Æą²Øą²—ą²° ą²¶ą³ą²°ą³€ ą²•ą³ƒą²·ą³ą²£ą²¦ą³‡ą²µą²°ą²¾ą²Æ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(100899, 'https://ror.org/01h6frr69', 'en', 1, 'https://ror.org/01h6frr69 Duksung Women''s University ė•ģ„±ģ—¬ģžėŒ€ķ•™źµ'),
(100900, 'https://ror.org/03rzb4f20', 'es', 1, 'https://ror.org/03rzb4f20 Universidad Autónoma del Estado de Morelos'),
(100901, 'https://ror.org/001qst305', 'en', 1, 'https://ror.org/001qst305 Kalamazoo College'),
(100902, 'https://ror.org/057f9wg13', 'es', 1, 'https://ror.org/057f9wg13 Instituto Tecnológico MetalmecÔnico, Mueble, Madera, Embalaje y Afines'),
(100903, 'https://ror.org/01t34b131', 'en', 1, 'https://ror.org/01t34b131 Quaid-e-Awam University of Engineering, Science and Technology Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś± Ū½ Ł½ŁŠŚŖŁ†ŁŠŚ€ŁŠŲ§Ų³ جي جامعہ قائد Ų¹ŁˆŲ§Ł…ā€Ž قائد Ų¹ŁˆŲ§Ł… يورسٽي آف Ų§Ł†Ų¬Ł†ŁŠŲ±Ł†ŚÆ Ų§ŁŠŁ†ŚŠ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ'),
(100904, 'https://ror.org/00w9tx359', 'en', 1, 'https://ror.org/00w9tx359 University of Science and Technology Chittagong ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦øą¦¾ą¦‡ą¦Øą§ą¦ø ą¦ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦®'),
(100905, 'https://ror.org/05eyrmk93', 'en', 1, 'https://ror.org/05eyrmk93 Machakos University'),
(100906, 'https://ror.org/00kfpzv56', 'en', 1, 'https://ror.org/00kfpzv56 Financial Research Institute of the Ministry of Finance of the Russian Federation ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ финансовый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(100907, 'https://ror.org/02fywdp72', 'en', 1, 'https://ror.org/02fywdp72 Korea National Sport University ķ•œźµ­ģ²“ģœ”ėŒ€ķ•™źµ'),
(100908, 'https://ror.org/03ztsbk67', 'pt', 1, 'https://ror.org/03ztsbk67 Santa Catarina State University Universidade do Estado de Santa Catarina UniversitĆ© de l''Ɖtat de santa catarina'),
(100909, 'https://ror.org/03qsbr555', 'nl', 1, 'https://ror.org/03qsbr555 Hogeschool PXL'),
(100910, 'https://ror.org/05fr5y859', 'en', 1, 'https://ror.org/05fr5y859 University of Biskra Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ خيضر بسكرة'),
(100911, 'https://ror.org/05jstgx72', 'tr', 1, 'https://ror.org/05jstgx72 Iğdır Üniversitesi'),
(100912, 'https://ror.org/02wpry525', 'id', 1, 'https://ror.org/02wpry525 Universitas Mahasaraswati Denpasar'),
(100913, 'https://ror.org/03fttn066', 'id', 1, 'https://ror.org/03fttn066 Universitas Muslim Nusantara Al Washliyah'),
(100914, 'https://ror.org/04d26v797', 'en', 1, 'https://ror.org/04d26v797 Academia de Studii Economice a Moldovei Academy of Economic Studies of Moldova'),
(100915, 'https://ror.org/04pam3b03', 'en', 1, 'https://ror.org/04pam3b03 National Institute of Technology Sikkim ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„‹ą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤øą¤æą¤•ą„ą¤•ą¤æą¤®'),
(100916, 'https://ror.org/01s9pbd40', 'es', 1, 'https://ror.org/01s9pbd40 Universidad TƩcnica Nacional'),
(100917, 'https://ror.org/05qsezp22', 'es', 1, 'https://ror.org/05qsezp22 Agencia de Salud PĆŗblica de Barcelona'),
(100918, 'https://ror.org/04xyxjd90', 'en', 1, 'https://ror.org/04xyxjd90 Nottingham Trent University'),
(100919, 'https://ror.org/02b6gy972', 'en', 1, 'https://ror.org/02b6gy972 Samarkand State University named after Sharof Rashidov Sharof Rashidov nomidagi Samarqand davlat universiteti ДамарканГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шарофа РашиГова'),
(100920, 'https://ror.org/01dtbtf55', 'id', 1, 'https://ror.org/01dtbtf55 Universitas Islam Negeri Sultan Syarif Kasim Riau'),
(100921, 'https://ror.org/01dm2pd27', 'es', 1, 'https://ror.org/01dm2pd27 Universidad de Ciencias y Humanidades'),
(100922, 'https://ror.org/00a45v709', 'en', 1, 'https://ror.org/00a45v709 Tomsk Polytechnic University Томский политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100923, 'https://ror.org/02pdsdw78', 'de', 1, 'https://ror.org/02pdsdw78 Krankenhaus Barmherzige Brüder'),
(100924, 'https://ror.org/01afbkc02', 'en', 1, 'https://ror.org/01afbkc02 SveučiliŔte Sjever University North'),
(100925, 'https://ror.org/056mwwj30', 'en', 1, 'https://ror.org/056mwwj30 University Elmergib Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ų±Ų§ŲŗŁŠŲØ'),
(100926, 'https://ror.org/01vyg6f62', 'en', 1, 'https://ror.org/01vyg6f62 National Museum in Kraków'),
(100927, 'https://ror.org/03h45ec67', 'en', 1, 'https://ror.org/03h45ec67 Pamantasan ng Antique University of Antique'),
(100928, 'https://ror.org/02tpw8g37', 'en', 1, 'https://ror.org/02tpw8g37 Institute of Nuclear Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ физики ЯГролық физика ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(100929, 'https://ror.org/05q5pk319', 'en', 1, 'https://ror.org/05q5pk319 Hochschule für Technik und Wirtschaft Dresden – University of Applied Sciences'),
(100930, 'https://ror.org/04xe01d27', 'en', 1, 'https://ror.org/04xe01d27 Universidad de TarapacĆ” University of TarapacĆ”'),
(100931, 'https://ror.org/0367ap631', 'en', 1, 'https://ror.org/0367ap631 Central Mining Institute'),
(100932, 'https://ror.org/04hf8h220', 'en', 1, 'https://ror.org/04hf8h220 CenGen (Pty) Ltd'),
(100933, 'https://ror.org/02y2cxp25', 'en', 1, 'https://ror.org/02y2cxp25 HELP University Universiti HELP'),
(100934, 'https://ror.org/01b9eka53', 'pt', 1, 'https://ror.org/01b9eka53 Universidade Vale do Rio Doce'),
(100935, 'https://ror.org/03sbnrq14', 'en', 1, 'https://ror.org/03sbnrq14 LĆŗrio University Universidade LĆŗrio'),
(100936, 'https://ror.org/02m044a46', 'en', 1, 'https://ror.org/02m044a46 Fore School of Management'),
(100937, 'https://ror.org/05byh2e17', 'en', 1, 'https://ror.org/05byh2e17 Earth University Universidad EARTH'),
(100938, 'https://ror.org/0378w3a30', 'en', 1, 'https://ror.org/0378w3a30 Instituto Nacional de TelecomunicaƧƵes National Institute of Telecommunications'),
(100939, 'https://ror.org/022991v89', 'en', 1, 'https://ror.org/022991v89 Catholic University of Croatia Hrvatsko Katoličko SveučiliŔte'),
(100940, 'https://ror.org/024xejm70', 'en', 1, 'https://ror.org/024xejm70 European School of Management and Technology'),
(100941, 'https://ror.org/02drrjp49', 'en', 1, 'https://ror.org/02drrjp49 University of Montenegro Универзитет Црне Горе'),
(100942, 'https://ror.org/03h8wtj43', 'pt', 1, 'https://ror.org/03h8wtj43 Centro UniversitƔrio de Brusque'),
(100943, 'https://ror.org/027vmhf17', 'en', 1, 'https://ror.org/027vmhf17 Malawi University of Science and Technology'),
(100944, 'https://ror.org/02e50va28', 'en', 1, 'https://ror.org/02e50va28 Statistics Norway'),
(100945, 'https://ror.org/04zayvt43', 'pt', 1, 'https://ror.org/04zayvt43 Universidade de Santa Cruz do Sul University of Santa Cruz do Sul'),
(100946, 'https://ror.org/01mxcr651', 'es', 1, 'https://ror.org/01mxcr651 Universidad Católica del Cibao'),
(100947, 'https://ror.org/02xbhbx68', 'en', 1, 'https://ror.org/02xbhbx68 D. Serikbayev East Kazakhstan State Technical University Восточно-ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. Дерикбаева Š”Ó™ŃƒŠ»ŠµŃ‚ Дерікбаев атынГағы Шығыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ мемлекеттік техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(100948, 'https://ror.org/05r5a5c61', 'de', 1, 'https://ror.org/05r5a5c61 Institut für Solarenergieforschung Institute for Solar Energy Research Hamelin'),
(100949, 'https://ror.org/031x4qe27', 'en', 1, 'https://ror.org/031x4qe27 Schweizerische Nationalbank Swiss National Bank'),
(100950, 'https://ror.org/0445vt337', 'hi', 1, 'https://ror.org/0445vt337 Rajkiya Mahila Mahavidyalaya, Budaun ą¤°ą¤¾ą¤œą¤•ą„€ą¤Æ महिला ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤¬ą¤¦ą¤¾ą¤Æą„‚ą¤'),
(100951, 'https://ror.org/05xagc088', 'en', 1, 'https://ror.org/05xagc088 North Atlantic Treaty Organization Organisation du traitƩ de l''Atlantique Nord'),
(100952, 'https://ror.org/0062tve42', 'en', 1, 'https://ror.org/0062tve42 Pancasila University Universitas Pancasila'),
(100953, 'https://ror.org/05hkzza95', 'id', 1, 'https://ror.org/05hkzza95 Politeknik Kesehatan Kemenkes Semarang'),
(100954, 'https://ror.org/04raxj885', 'en', 1, 'https://ror.org/04raxj885 Kwantlen Polytechnic University'),
(100955, 'https://ror.org/00w641b14', 'en', 1, 'https://ror.org/00w641b14 George Fox University'),
(100956, 'https://ror.org/053bp9m60', 'en', 1, 'https://ror.org/053bp9m60 Children''s of Alabama'),
(100957, 'https://ror.org/00kq9hk82', 'en', 1, 'https://ror.org/00kq9hk82 Kazakhstan-Russian Medical University ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾-Российский ŠœŠµŠ“ицинский Университет ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½-Ресей ŠœŠµŠ“ициналық Университеті'),
(100958, 'https://ror.org/053yhr419', 'en', 1, 'https://ror.org/053yhr419 Mindanao State University – General Santos'),
(100959, 'https://ror.org/05rq0zy06', 'en', 1, 'https://ror.org/05rq0zy06 Government College Women University Faisalabad ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ کالج ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(100960, 'https://ror.org/01pbkyj13', 'en', 1, 'https://ror.org/01pbkyj13 Federal Research Institute for Health Organization and Informatics'),
(100961, 'https://ror.org/03vgz7r63', 'en', 1, 'https://ror.org/03vgz7r63 Centre for Electrochemical Technologies'),
(100962, 'https://ror.org/036kgyt43', 'en', 1, 'https://ror.org/036kgyt43 Chouaib Doukkali University UniversitĆ© Chouaib Doukkali Ų¬Ų§Ł…Ų¹Ų© ؓعيب Ų§Ł„ŲÆŁƒŲ§Ł„ŁŠ'),
(100963, 'https://ror.org/04w2jh416', 'en', 1, 'https://ror.org/04w2jh416 National Cancer Institute'),
(100964, 'https://ror.org/05ckyqt97', 'fr', 1, 'https://ror.org/05ckyqt97 UniversitƩ de ain TƩmouchent'),
(100965, 'https://ror.org/01pp0fx48', 'en', 1, 'https://ror.org/01pp0fx48 Universidad de ValparaĆ­so Valparaiso University'),
(100966, 'https://ror.org/02ckdts26', 'en', 1, 'https://ror.org/02ckdts26 AmirAlam Hospital Ł…Ų¬ŲŖŁ…Ų¹ ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł†ŪŒ Ų§Ł…ŪŒŲ± اعلم'),
(100967, 'https://ror.org/03ag2mf63', 'en', 1, 'https://ror.org/03ag2mf63 Sri Karan Narendra Agriculture University, Jobner ą¤¶ą„ą¤°ą„€ करण ą¤Øą¤°ą„‡ą¤‚ą¤¦ą„ą¤° ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤œą„‹ą¤¬ą¤Øą„‡ą¤°'),
(100968, 'https://ror.org/039zveh30', 'no_lang_code', 1, 'https://ror.org/039zveh30 Shimizu (Japan) ęø…ę°“å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(100969, 'https://ror.org/01s4mx151', 'en', 1, 'https://ror.org/01s4mx151 Tashkent Institute of Irrigation and Agricultural Mechanization Engineers Uzbe ikromjon alijonov Mexanizatsiyalash Muhandislari Instituti'),
(100970, 'https://ror.org/03r6hpz93', 'en', 1, 'https://ror.org/03r6hpz93 State University of Trade and Economics Державний Ń‚Š¾Ń€Š³Š¾Š²ŠµŠ»ŃŒŠ½Š¾-економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100971, 'https://ror.org/04kayk232', 'en', 1, 'https://ror.org/04kayk232 North-Western State Medical University named after I.I. Mechnikov Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени И. И. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(100972, 'https://ror.org/02j4p4h77', 'no_lang_code', 1, 'https://ror.org/02j4p4h77 MSD (Belgium)'),
(100973, 'https://ror.org/04hexmg17', 'en', 1, 'https://ror.org/04hexmg17 Palm Beach Atlantic University'),
(100974, 'https://ror.org/02nhqek82', 'en', 1, 'https://ror.org/02nhqek82 HĆ“pital universitaire pĆ©diatrique des deux BĆ¢le University Children’s Hospital Basel UniversitƤts-Kinderspital beider Basel'),
(100975, 'https://ror.org/02403vr89', 'en', 1, 'https://ror.org/02403vr89 Mathematica Policy Research'),
(100976, 'https://ror.org/00vc14296', 'en', 1, 'https://ror.org/00vc14296 Hanover College'),
(100977, 'https://ror.org/044mkdq33', 'no_lang_code', 1, 'https://ror.org/044mkdq33 Ajinomoto (Japan) å‘³ć®ē“ ę Ŗå¼ä¼šē¤¾'),
(100978, 'https://ror.org/01zc5h177', 'en', 1, 'https://ror.org/01zc5h177 McDaniel College'),
(100979, 'https://ror.org/03ny5wp25', 'pt', 1, 'https://ror.org/03ny5wp25 Universidade para o Desenvolvimento do Alto Vale do ItajaĆ­'),
(100980, 'https://ror.org/03b8f3736', 'en', 1, 'https://ror.org/03b8f3736 Architectural Association School of Architecture'),
(100981, 'https://ror.org/015zmr509', 'en', 1, 'https://ror.org/015zmr509 University of Kashan'),
(100982, 'https://ror.org/02xsh5r57', 'en', 1, 'https://ror.org/02xsh5r57 Leeds Beckett University'),
(100983, 'https://ror.org/03dafx737', 'no_lang_code', 1, 'https://ror.org/03dafx737 Research Center Pharmaceutical Engineering (Austria)'),
(100984, 'https://ror.org/0346k5011', 'id', 1, 'https://ror.org/0346k5011 Universitas Islam As-Syafi''iyah'),
(100985, 'https://ror.org/02jcd6j26', 'en', 1, 'https://ror.org/02jcd6j26 Caja Costarricense de Seguro Social Costa Rican Department of Social Security'),
(100986, 'https://ror.org/04g197z90', 'tr', 1, 'https://ror.org/04g197z90 General Directorate of Mineral Research and Exploration Maden Tetkik ve Arama Genel Müdürlüğü'),
(100987, 'https://ror.org/057z98j75', 'en', 1, 'https://ror.org/057z98j75 NatCen Social Research'),
(100988, 'https://ror.org/03tv88982', 'en', 1, 'https://ror.org/03tv88982 New York Botanical Garden'),
(100989, 'https://ror.org/0053fb273', 'en', 1, 'https://ror.org/0053fb273 Faculty of Medicine of Sfax'),
(100990, 'https://ror.org/01qmtv077', 'no_lang_code', 1, 'https://ror.org/01qmtv077 Daystar University'),
(100991, 'https://ror.org/02fgksf31', 'en', 1, 'https://ror.org/02fgksf31 Arka Jain University आरका ą¤œą„ˆą¤Ø ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(100992, 'https://ror.org/03vdm5c68', 'en', 1, 'https://ror.org/03vdm5c68 Texas Wesleyan University'),
(100993, 'https://ror.org/02msan859', 'en', 1, 'https://ror.org/02msan859 Europa-UniversitƤt Viadrina Frankfurt European University Viadrina'),
(100994, 'https://ror.org/026w31v75', 'en', 1, 'https://ror.org/026w31v75 Universiti Teknologi Malaysia University of Technology Malaysia é©¬ę„č„æäŗšå·„č‰ŗå¤§å­¦'),
(100995, 'https://ror.org/04kaqnt29', 'en', 1, 'https://ror.org/04kaqnt29 Migal - Galilee Technology Center'),
(100996, 'https://ror.org/01v6k8e31', 'no_lang_code', 1, 'https://ror.org/01v6k8e31 MatĆ­s (Iceland)'),
(100997, 'https://ror.org/04rmtzr09', 'en', 1, 'https://ror.org/04rmtzr09 Lake Forest College'),
(100998, 'https://ror.org/02jm1re07', 'en', 1, 'https://ror.org/02jm1re07 Catholic University of Eastern Africa'),
(100999, 'https://ror.org/01n006s45', 'es', 1, 'https://ror.org/01n006s45 Universidad Católica de Salta'),
(101000, 'https://ror.org/00efxp054', 'id', 1, 'https://ror.org/00efxp054 Universitas Katolik Widya Mandala Surabaya Widya Mandala Catholic University'),
(101001, 'https://ror.org/031eq5e98', 'en', 1, 'https://ror.org/031eq5e98 PƤdagogische Hochschule Weingarten University of Education Weingarten'),
(101002, 'https://ror.org/02c63wv67', 'en', 1, 'https://ror.org/02c63wv67 University of Central Missouri'),
(101003, 'https://ror.org/023pskh72', 'no_lang_code', 1, 'https://ror.org/023pskh72 Maseno University'),
(101004, 'https://ror.org/04mccvy52', 'en', 1, 'https://ror.org/04mccvy52 Interactive Research and Development'),
(101005, 'https://ror.org/0583g9182', 'en', 1, 'https://ror.org/0583g9182 Pontifical University of John Paul II in Kraków Uniwersytet Papieski Jana Pawła II w Krakowie'),
(101006, 'https://ror.org/00cy7e479', 'en', 1, 'https://ror.org/00cy7e479 GNA University'),
(101007, 'https://ror.org/02j6c0d67', 'en', 1, 'https://ror.org/02j6c0d67 Kanagawa University ē„žå„ˆå·å¤§å­¦'),
(101008, 'https://ror.org/006qyvf40', 'en', 1, 'https://ror.org/006qyvf40 Yas Hospital Ł…Ų¬ŲŖŁ…Ų¹ ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł†ŪŒ یاس'),
(101009, 'https://ror.org/05b5x4a35', 'en', 1, 'https://ror.org/05b5x4a35 Lahore University of Management Sciences Ł„Ų§ŪŁˆŲ± ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŁ†Ų¬Ł…Ł†Ł¹ سائنسز'),
(101010, 'https://ror.org/048gjv863', 'es', 1, 'https://ror.org/048gjv863 Universidad Tecnológica Emiliano Zapata del Estado de Morelos'),
(101011, 'https://ror.org/04taf2z98', 'fr', 1, 'https://ror.org/04taf2z98 Centre Hospitalier de Valenciennes'),
(101012, 'https://ror.org/04573k719', 'es', 1, 'https://ror.org/04573k719 Servicio CƔntabro de Salud'),
(101013, 'https://ror.org/00gq7p328', 'en', 1, 'https://ror.org/00gq7p328 Universitas Islam Negeri Walisongo Semarang Walisongo State Islamic University'),
(101014, 'https://ror.org/040baw385', 'fr', 1, 'https://ror.org/040baw385 Centrale Marseille'),
(101015, 'https://ror.org/02m03y943', 'es', 1, 'https://ror.org/02m03y943 El Colegio de Tlaxcala, A. C.'),
(101016, 'https://ror.org/01dy3j343', 'en', 1, 'https://ror.org/01dy3j343 Community Coordinated Modeling Center'),
(101017, 'https://ror.org/03vhr8v79', 'es', 1, 'https://ror.org/03vhr8v79 Escuela Superior de Administración Pública'),
(101018, 'https://ror.org/010t7sr36', 'no_lang_code', 1, 'https://ror.org/010t7sr36 Research Ireland Taighde Ɖireann Taighde Ɖireann - Research Ireland'),
(101019, 'https://ror.org/03svsaq22', 'es', 1, 'https://ror.org/03svsaq22 Universidad Inca Garcilaso de la Vega'),
(101020, 'https://ror.org/0449rh157', 'en', 1, 'https://ror.org/0449rh157 Osh State University Oş Devlet Üniversitesi ŠžŃˆ мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø ŠžŃˆŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101021, 'https://ror.org/05gfjrx96', 'en', 1, 'https://ror.org/05gfjrx96 Indian Institute of Management Lucknow'),
(101022, 'https://ror.org/056y7zx62', 'en', 1, 'https://ror.org/056y7zx62 Central University of Rajasthan ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(101023, 'https://ror.org/05tsvnv68', 'en', 1, 'https://ror.org/05tsvnv68 Partners In Health'),
(101024, 'https://ror.org/04arm8d04', 'es', 1, 'https://ror.org/04arm8d04 National University of Rafaela Universidad Nacional de Rafaela'),
(101025, 'https://ror.org/02rmd1t30', 'en', 1, 'https://ror.org/02rmd1t30 Babeș-Bolyai University Babeș-Bolyai UniversitƤt Babeș–Bolyai TudomĆ”nyegyetem Universitatea Babeș-Bolyai'),
(101026, 'https://ror.org/00j5nrv77', 'no_lang_code', 1, 'https://ror.org/00j5nrv77 RENA Technologies (Germany)'),
(101027, 'https://ror.org/02zcjqq51', 'en', 1, 'https://ror.org/02zcjqq51 Konya Food and Agriculture University Konya Gıda ve Tarım Üniversitesi'),
(101028, 'https://ror.org/00g1w3j30', 'en', 1, 'https://ror.org/00g1w3j30 Jambi University Universitas Jambi'),
(101029, 'https://ror.org/01ktt4j08', 'id', 1, 'https://ror.org/01ktt4j08 Universitas Maritim Raja Ali Haji'),
(101030, 'https://ror.org/03vcw1x21', 'en', 1, 'https://ror.org/03vcw1x21 King Edward Memorial Hospital and Seth G.S. Medical College राजा ą¤ą¤”ą„ą¤µą¤°ą„ą¤” ą¤øą„ą¤®ą¤¾ą¤°ą¤• ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ व ą¤øą„‡ą¤  ą¤—ą„‹ą¤µą¤°ą„ą¤§ą¤Øą¤¦ą¤¾ą¤ø ą¤øą„ą¤‚ą¤¦ą¤°ą¤¦ą¤¾ą¤ø ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®•ą®æą®™ąÆ ą®Žą®ŸąÆą®µą®°ąÆą®ŸąÆ நினைவு ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(101031, 'https://ror.org/00ezd5874', 'id', 1, 'https://ror.org/00ezd5874 Universitas Nahdlatul Ulama Indonesia'),
(101032, 'https://ror.org/039e4he37', 'id', 1, 'https://ror.org/039e4he37 Universitas ''Aisyiyah Yogyakarta'),
(101033, 'https://ror.org/0070j0q91', 'es', 1, 'https://ror.org/0070j0q91 Universidad de PanamĆ”'),
(101034, 'https://ror.org/00nzccc08', 'id', 1, 'https://ror.org/00nzccc08 Universitas Prima Indonesia'),
(101035, 'https://ror.org/009ec3j55', 'es', 1, 'https://ror.org/009ec3j55 Metropolitan Polytechnic University of Puebla Universidad PolitƩcnica Metropolitana de Puebla'),
(101036, 'https://ror.org/02anzyy56', 'no_lang_code', 1, 'https://ror.org/02anzyy56 Natera (United States)'),
(101037, 'https://ror.org/004fze387', 'it', 1, 'https://ror.org/004fze387 International School for Advanced Studies Scuola Internazionale Superiore di Studi Avanzati Ɖcole internationale supĆ©rieure d''Ć©tudes avancĆ©es'),
(101038, 'https://ror.org/00bp9f906', 'nl', 1, 'https://ror.org/00bp9f906 Reade'),
(101039, 'https://ror.org/04byt9g09', 'en', 1, 'https://ror.org/04byt9g09 Pamantasang Xavier – Ateneo de Cagayan Xavier University'),
(101040, 'https://ror.org/02e3nay30', 'no_lang_code', 1, 'https://ror.org/02e3nay30 M.J.P. Rohilkhand University ą¤°ą„ą¤¹ą„‡ą¤²ą¤–ą¤£ą„ą¤” ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®®ą®•ą®¾ą®¤ąÆą®®ą®¾ ą®œąÆ‹ą®¤ą®æą®Ŗą®¾ பூலே ą®°ąÆ‹ą®•ą®æą®²ąÆą®•ą®ØąÆą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(101041, 'https://ror.org/05fw3jg78', 'de', 1, 'https://ror.org/05fw3jg78 University Psychiatric Clinics Basel UniversitƤre Psychiatrische Kliniken Basel'),
(101042, 'https://ror.org/03564kq40', 'en', 1, 'https://ror.org/03564kq40 Rayat Bahra University'),
(101043, 'https://ror.org/01kaqxm37', 'en', 1, 'https://ror.org/01kaqxm37 MSD K.K. MSD K.K. (Japan)'),
(101044, 'https://ror.org/042rjfn67', 'en', 1, 'https://ror.org/042rjfn67 Kano State University of Technology'),
(101045, 'https://ror.org/0069bkg23', 'en', 1, 'https://ror.org/0069bkg23 Lietuvos Sveikatos Mokslų Universitetas Lithuanian University of Health Sciences Uniwersytet Medyczny w Kownie ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Литовского ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š° Š“Š»Ń наук Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(101046, 'https://ror.org/00cgjqd45', 'es', 1, 'https://ror.org/00cgjqd45 Universidad Regional Autónoma de Los Andes'),
(101047, 'https://ror.org/05rshs160', 'pt', 1, 'https://ror.org/05rshs160 Instituto Federal de Educação, Ciência e Tecnologia do Espírito Santo Instituto Federal do Espírito Santo'),
(101048, 'https://ror.org/0582kjx49', 'en', 1, 'https://ror.org/0582kjx49 T. G. Masaryk Water Research Institute'),
(101049, 'https://ror.org/04bya8j72', 'en', 1, 'https://ror.org/04bya8j72 Center for Experimental and Clinical Infection Research Zentrum für Experimentelle und Klinische Infektionsforschung'),
(101050, 'https://ror.org/051xex213', 'en', 0, 'https://ror.org/051xex213 Irish Research Council'),
(101051, 'https://ror.org/028gydn91', 'en', 1, 'https://ror.org/028gydn91 Saint Aloysius Gonzaga National University Universidad Nacional San Luis Gonzaga'),
(101052, 'https://ror.org/0434njb68', 'id', 1, 'https://ror.org/0434njb68 Universitas 17 Agustus 1945 Semarang'),
(101053, 'https://ror.org/03rr7xb36', 'en', 1, 'https://ror.org/03rr7xb36 Soka University of America'),
(101054, 'https://ror.org/02qzsgg04', 'en', 1, 'https://ror.org/02qzsgg04 NATO Science and Technology Organization Organisation pour la Recherche et la Technologie OTAN in French'),
(101055, 'https://ror.org/04kynyg17', 'id', 1, 'https://ror.org/04kynyg17 Politeknik Negeri Ujung Pandang'),
(101056, 'https://ror.org/0465jpv25', 'en', 1, 'https://ror.org/0465jpv25 Darshan University'),
(101057, 'https://ror.org/045zrcm98', 'en', 1, 'https://ror.org/045zrcm98 University of Mohaghegh Ardabili دانؓگاه محقق Ų§Ų±ŲÆŲØŪŒŁ„ŪŒ'),
(101058, 'https://ror.org/03vdarm34', 'en', 1, 'https://ror.org/03vdarm34 Al-Hadba University Ų¬Ų§Ł…Ų¹Ų© الحدباؔ'),
(101059, 'https://ror.org/043axf581', 'en', 1, 'https://ror.org/043axf581 St. Marianna University School of Medicine č–ćƒžćƒŖć‚¢ćƒ³ćƒŠåŒ»ē§‘å¤§å­¦'),
(101060, 'https://ror.org/02bjhwk41', 'en', 1, 'https://ror.org/02bjhwk41 University of Georgia'),
(101061, 'https://ror.org/053x9s498', 'fr', 1, 'https://ror.org/053x9s498 Artois University UniversitƩ d''Artois'),
(101062, 'https://ror.org/04wr6mz63', 'en', 1, 'https://ror.org/04wr6mz63 Muni University'),
(101063, 'https://ror.org/00brr5r54', 'en', 1, 'https://ror.org/00brr5r54 Rothman Orthopaedics'),
(101064, 'https://ror.org/03zhk3020', 'en', 1, 'https://ror.org/03zhk3020 Armenian State Pedagogical University after Khachatur Abovian Õ€Õ”ÕµÕÆÕ”ÕÆÕ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ“Õ”Õ¶ÕÆÕ”Õ¾Õ”Ö€ÕŖÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(101065, 'https://ror.org/0406s2v03', 'en', 1, 'https://ror.org/0406s2v03 Institute of Meteorology and Water Management Instytut Meteorologii i Gospodarki Wodnej – Państwowy Instytut Badawczy'),
(101066, 'https://ror.org/02y9m3311', 'en', 0, 'https://ror.org/02y9m3311 Institute of Play'),
(101067, 'https://ror.org/0079jgp14', 'en', 1, 'https://ror.org/0079jgp14 College of Europe CollĆØge d''Europe'),
(101068, 'https://ror.org/03qpz0718', 'en', 1, 'https://ror.org/03qpz0718 Sri Sri University'),
(101069, 'https://ror.org/05pjd6b26', 'en', 1, 'https://ror.org/05pjd6b26 Westfield State University'),
(101070, 'https://ror.org/05d58ss79', 'no_lang_code', 1, 'https://ror.org/05d58ss79 Aptara (United States)'),
(101071, 'https://ror.org/02yr3f298', 'es', 1, 'https://ror.org/02yr3f298 Foundation University of Health Sciences Fundación Universitaria de Ciencias de la Salud'),
(101072, 'https://ror.org/039d9es10', 'en', 1, 'https://ror.org/039d9es10 Petra University Ų¬Ų§Ł…Ų¹Ų© البتراؔ'),
(101073, 'https://ror.org/03jk5a988', 'en', 1, 'https://ror.org/03jk5a988 Cooperation on International Traceability in Analytical Chemistry'),
(101074, 'https://ror.org/04dxgvn87', 'it', 1, 'https://ror.org/04dxgvn87 Institut mƩditerranƩen pour les transplantations et thƩrapies de palerme Istituto Mediterraneo per i Trapianti e Terapie ad Alta Specializzazione Mediterranean Institute for Transplantation and Advanced Specialized Therapies'),
(101075, 'https://ror.org/01ghfgz70', 'en', 1, 'https://ror.org/01ghfgz70 Directorate for Technology, Innovation and Partnerships'),
(101076, 'https://ror.org/0431sk359', 'en', 1, 'https://ror.org/0431sk359 Marine Biological Association of the United Kingdom'),
(101077, 'https://ror.org/00zm4rq24', 'en', 1, 'https://ror.org/00zm4rq24 University of New Haven UniversitƩ de new haven'),
(101078, 'https://ror.org/00214hk10', 'en', 1, 'https://ror.org/00214hk10 Roointan Arash Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¬Ų§Ł…Ų¹ ŲØŲ§Ł†ŁˆŲ§Ł† Ų¢Ų±Ų“'),
(101079, 'https://ror.org/02ge27m07', 'de', 1, 'https://ror.org/02ge27m07 Hochschule für Technik und Wirtschaft des Saarlandes htw saar - University of Applied Sciences'),
(101080, 'https://ror.org/051f2wp73', 'en', 1, 'https://ror.org/051f2wp73 GIET University ą¬—ą¬¾ą¬Øą­ą¬§ą­€ ą¬Æą¬¾ą¬Øą­ą¬¤ą­ą¬°ą¬æą¬• ଓ ą¬Ŗą­ą¬°ą­Œą¬¦ą­ą­Ÿą­‹ą¬—ą¬æą¬• ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(101081, 'https://ror.org/01z7kzb45', 'en', 1, 'https://ror.org/01z7kzb45 Northeastern State University'),
(101082, 'https://ror.org/05cyprz33', 'en', 1, 'https://ror.org/05cyprz33 University of Mauritius UniversitƩ de Maurice'),
(101083, 'https://ror.org/01e57nb43', 'es', 1, 'https://ror.org/01e57nb43 Hospital Universitario Puerta de Hierro Majadahonda'),
(101084, 'https://ror.org/000w0ky84', 'es', 1, 'https://ror.org/000w0ky84 Instituto de Investigaciones Agropecuarias'),
(101085, 'https://ror.org/01j33fx63', 'en', 1, 'https://ror.org/01j33fx63 Sejarah berdirinya Universitas Islam Negeri Sunan Gunung Djati State Islamic University Bandung'),
(101086, 'https://ror.org/05d5mza29', 'en', 1, 'https://ror.org/05d5mza29 Center for Open Science'),
(101087, 'https://ror.org/02k3v9512', 'en', 1, 'https://ror.org/02k3v9512 National Veterinary Research Institute'),
(101088, 'https://ror.org/03sj2jc05', 'de', 1, 'https://ror.org/03sj2jc05 Gesellschaft für Anlagen und Reaktorsicherheit Global Research for Safety'),
(101089, 'https://ror.org/04jqeag92', 'fr', 1, 'https://ror.org/04jqeag92 IESEG School of Management Institut d''Economie Scientifique Et de Gestion'),
(101090, 'https://ror.org/00p034093', 'en', 1, 'https://ror.org/00p034093 University of Engineering and Technology Peshawar Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ پؓاور ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ.'),
(101091, 'https://ror.org/04mz9da58', 'pt', 1, 'https://ror.org/04mz9da58 Fundação Dom Cabral'),
(101092, 'https://ror.org/01texbd31', 'en', 1, 'https://ror.org/01texbd31 Parahyangan Catholic University Universitas Katolik Parahyangan'),
(101093, 'https://ror.org/02shjm398', 'es', 1, 'https://ror.org/02shjm398 Universidad Nacional Intercultural de la AmazonĆ­a'),
(101094, 'https://ror.org/05ac26z88', 'en', 1, 'https://ror.org/05ac26z88 Oberlin College'),
(101095, 'https://ror.org/032jh6m87', 'en', 1, 'https://ror.org/032jh6m87 Nordic Institute for Studies in Innovation, Research and Education'),
(101096, 'https://ror.org/03e7v3527', 'en', 1, 'https://ror.org/03e7v3527 Lindsey Wilson College'),
(101097, 'https://ror.org/02as55378', 'en', 1, 'https://ror.org/02as55378 University of Arts and Industrial Design Linz Universität für künstlerische und industrielle Gestaltung Linz'),
(101098, 'https://ror.org/00sx0cd23', 'en', 1, 'https://ror.org/00sx0cd23 Balseiro Institute Instituto Balseiro'),
(101099, 'https://ror.org/04kmeaw70', 'en', 1, 'https://ror.org/04kmeaw70 Bradley University Universidad Bradley'),
(101100, 'https://ror.org/058b16x44', 'en', 1, 'https://ror.org/058b16x44 Universitatea din Pitești University of Pitesti'),
(101101, 'https://ror.org/001yc7927', 'en', 1, 'https://ror.org/001yc7927 Hyogo Medical University å…µåŗ«åŒ»ē§‘å¤§å­¦'),
(101102, 'https://ror.org/05sa6gg87', 'en', 1, 'https://ror.org/05sa6gg87 Moscow Power Engineering Institute Московский ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(101103, 'https://ror.org/04wzb3z02', 'no_lang_code', 1, 'https://ror.org/04wzb3z02 Exponent (United States)'),
(101104, 'https://ror.org/03gg1ey66', 'en', 1, 'https://ror.org/03gg1ey66 Namibia University of Science and Technology Polytechnikum van Namibiƫ'),
(101105, 'https://ror.org/03ha64j07', 'es', 1, 'https://ror.org/03ha64j07 Francisco de Vitoria University Universidad Francisco de Vitoria'),
(101106, 'https://ror.org/05s3cw058', 'fr', 1, 'https://ror.org/05s3cw058 Centre Universitaire de Mila Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ-Ł…ŁŠŁ„Ų©'),
(101107, 'https://ror.org/01gkym270', 'de', 1, 'https://ror.org/01gkym270 Laser Zentrum Hannover'),
(101108, 'https://ror.org/00x014194', 'id', 1, 'https://ror.org/00x014194 Universitas Ibn Khaldun Bogor'),
(101109, 'https://ror.org/04dp7tp96', 'en', 1, 'https://ror.org/04dp7tp96 Motilal Nehru National Institute of Technology ą¤®ą„‹ą¤¤ą„€ą¤²ą¤¾ą¤² ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø इलाहाबाद'),
(101110, 'https://ror.org/05mqkk958', 'no_lang_code', 1, 'https://ror.org/05mqkk958 Uva Wellassa University ஊவா ą®µąÆ†ą®²ąÆą®²ą®š ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą¶Œą·€ ą·€ą·™ą¶½ą·Šą¶½ą·ƒą·Šą·ƒ ą·€ą·’ą·ą·Šą·€ ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(101111, 'https://ror.org/0247aa843', 'en', 1, 'https://ror.org/0247aa843 Matt''s Promise'),
(101112, 'https://ror.org/042zvmz29', 'en', 1, 'https://ror.org/042zvmz29 Bindura University of Science Education'),
(101113, 'https://ror.org/03adhka07', 'en', 1, 'https://ror.org/03adhka07 Swiss Tropical and Public Health Institute'),
(101114, 'https://ror.org/05snt2t16', 'no_lang_code', 1, 'https://ror.org/05snt2t16 Mintek'),
(101115, 'https://ror.org/05qbzwv83', 'en', 1, 'https://ror.org/05qbzwv83 Federation University'),
(101116, 'https://ror.org/01hh6s351', 'en', 1, 'https://ror.org/01hh6s351 Network for Earthquake Engineering Simulation'),
(101117, 'https://ror.org/048w4c951', 'en', 1, 'https://ror.org/048w4c951 Institute of Business Management Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف بزنس Ł…ŁŠŁ†ŁŠŲ¬Ł…ŁŠŁ†Ł½ā€Ž'),
(101118, 'https://ror.org/032j5hw78', 'en', 1, 'https://ror.org/032j5hw78 Tomsk State University of Control Systems and Radio-Electronics Томский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ систем ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(101119, 'https://ror.org/03w7bgm07', 'es', 1, 'https://ror.org/03w7bgm07 Universidad Nacional Santiago AntĆŗnez de Mayolo'),
(101120, 'https://ror.org/00q523p52', 'en', 1, 'https://ror.org/00q523p52 National Formosa University'),
(101121, 'https://ror.org/023p15505', 'en', 1, 'https://ror.org/023p15505 Aleksandƫr Moisiu University Universiteti Aleksandƫr Moisiu'),
(101122, 'https://ror.org/01mez6w56', 'en', 1, 'https://ror.org/01mez6w56 academyEX'),
(101123, 'https://ror.org/04avs3e27', 'es', 1, 'https://ror.org/04avs3e27 Technological University of Huejotzingo Universidad Tecnológica de Huejotzingo'),
(101124, 'https://ror.org/01xpfrc74', 'en', 1, 'https://ror.org/01xpfrc74 Flensburg University of Applied Sciences Hochschule Flensburg'),
(101125, 'https://ror.org/00qakfc35', 'en', 1, 'https://ror.org/00qakfc35 Hochschule Pforzheim Pforzheim University of Applied Sciences'),
(101126, 'https://ror.org/005zfy155', 'tr', 1, 'https://ror.org/005zfy155 Kayseri University Kayseri Üniversitesi'),
(101127, 'https://ror.org/00z10e966', 'en', 1, 'https://ror.org/00z10e966 Mohanlal Sukhadia University ą¤®ą„‹ą¤¹ą¤Øą¤²ą¤¾ą¤² ą¤øą„ą¤–ą¤¾ą¤”ą¤¼ą¤æą¤Æą¤¾ ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(101128, 'https://ror.org/05k84m754', 'no_lang_code', 1, 'https://ror.org/05k84m754 Celltrion (South Korea)'),
(101129, 'https://ror.org/016hm0k42', 'id', 1, 'https://ror.org/016hm0k42 Universitas Abdurrab'),
(101130, 'https://ror.org/051kqr635', 'no_lang_code', 1, 'https://ror.org/051kqr635 Headland Archaeology (UK) Limited (United Kingdom)'),
(101131, 'https://ror.org/04w686e65', 'en', 1, 'https://ror.org/04w686e65 Bicol University'),
(101132, 'https://ror.org/02pwsw017', 'en', 1, 'https://ror.org/02pwsw017 GAIKER Centro Tecnológico GAIKER Technology Centre'),
(101133, 'https://ror.org/03vtywh31', 'no_lang_code', 1, 'https://ror.org/03vtywh31 MSD (Australia)'),
(101134, 'https://ror.org/03dnx8x22', 'pt', 1, 'https://ror.org/03dnx8x22 Universidade da Região da Campanha'),
(101135, 'https://ror.org/03ntw4c66', 'en', 1, 'https://ror.org/03ntw4c66 Drury University'),
(101136, 'https://ror.org/03fvwxc59', 'en', 1, 'https://ror.org/03fvwxc59 National Center For Child Health and Development å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹ęˆč‚²åŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(101137, 'https://ror.org/00a4kqq17', 'en', 1, 'https://ror.org/00a4kqq17 Cochin University of Science and Technology ą®•ąÆŠą®šąÆą®šą®æą®©ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“•ąµŠą“šąµą“šą“æąµ» ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµ ą“øą“æą“±ąµą“±ą“æ ą““ą“«ąµ ą“øą“Æąµ»ą“øąµ ą“†ą“Øąµą“±ąµ ą“Ÿąµ†ą“•ąµ ą“Øąµ‹ą“³ą“œą“æ'),
(101138, 'https://ror.org/00t4cvq91', 'en', 1, 'https://ror.org/00t4cvq91 Harding University Main Campus'),
(101139, 'https://ror.org/02v806644', 'id', 1, 'https://ror.org/02v806644 Universitas Suryakancana'),
(101140, 'https://ror.org/030a8hg08', 'en', 1, 'https://ror.org/030a8hg08 Municipality of Chios Δήμος Χίου'),
(101141, 'https://ror.org/05d627n32', 'en', 1, 'https://ror.org/05d627n32 Research Institute of Forests and Rangelands Ł…ŁˆŲ³Ų³Ł‡ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ جنگلها و Ł…Ų±Ų§ŲŖŲ¹ کؓور'),
(101142, 'https://ror.org/01by48y20', 'no_lang_code', 1, 'https://ror.org/01by48y20 Bogdan Khmelnitsky Melitopol State Pedagogical University ŠœŠµŠ»Ń–Ń‚Š¾ŠæŠ¾Š»ŃŒŃŃŒŠøŠŗŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(101143, 'https://ror.org/03epxcz56', 'en', 1, 'https://ror.org/03epxcz56 National Institute of Research and Development for Optoelectronics'),
(101144, 'https://ror.org/00tjh4k26', 'en', 1, 'https://ror.org/00tjh4k26 Acharya N. G. Ranga Agricultural University'),
(101145, 'https://ror.org/046jt8k23', 'en', 1, 'https://ror.org/046jt8k23 Termez Institute of Engineering and Technology'),
(101146, 'https://ror.org/05t3p2g92', 'en', 1, 'https://ror.org/05t3p2g92 Universiteti i Prishtinƫs University of Prishtina'),
(101147, 'https://ror.org/04dt46w81', 'en', 1, 'https://ror.org/04dt46w81 Universidad de Evansville University of Evansville'),
(101148, 'https://ror.org/01pr2p702', 'en', 1, 'https://ror.org/01pr2p702 Mahatma Gandhi Dental College & Hospital'),
(101149, 'https://ror.org/028gf7832', 'no_lang_code', 1, 'https://ror.org/028gf7832 Alvernia University'),
(101150, 'https://ror.org/01b7tbs82', 'en', 1, 'https://ror.org/01b7tbs82 Adventist University of Africa'),
(101151, 'https://ror.org/02nmv9618', 'en', 1, 'https://ror.org/02nmv9618 Mount St. Mary''s University'),
(101152, 'https://ror.org/05kfstc28', 'en', 1, 'https://ror.org/05kfstc28 Sardar Patel University सरदार ą¤Ŗą¤Ÿą„‡ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ સરદાર ąŖŖąŖŸą«‡ąŖ² ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(101153, 'https://ror.org/02qnf3n86', 'ms', 1, 'https://ror.org/02qnf3n86 Universiti Brunei Darussalam University of Brunei Darussalam'),
(101154, 'https://ror.org/010996a78', 'en', 1, 'https://ror.org/010996a78 International University of Japan 国際大学'),
(101155, 'https://ror.org/058jm1724', 'id', 1, 'https://ror.org/058jm1724 Politeknik Kesehatan Kementerian Kesehatan Jakarta II'),
(101156, 'https://ror.org/04ykhhw18', 'en', 1, 'https://ror.org/04ykhhw18 UniversitĆ© d''Ɖtat de virginie-occidentale West Virginia State University'),
(101157, 'https://ror.org/054d5vq03', 'en', 1, 'https://ror.org/054d5vq03 Okan University Okan Üniversitesi'),
(101158, 'https://ror.org/04a1mvv97', 'en', 1, 'https://ror.org/04a1mvv97 Norges miljø- og biovitenskapelige universitet Norjan ympäristötieteen ja biologian yliopisto Norwegian University of Life Sciences'),
(101159, 'https://ror.org/00dmdt028', 'es', 1, 'https://ror.org/00dmdt028 Universidad UTE'),
(101160, 'https://ror.org/00pcv0g02', 'en', 1, 'https://ror.org/00pcv0g02 Ibero-American University Puebla Universidad Iberoamericana Puebla'),
(101161, 'https://ror.org/04wbzgn90', 'es', 1, 'https://ror.org/04wbzgn90 Universidad Jorge Tadeo Lozano Universidad de BogotĆ” Jorge Tadeo Lozano'),
(101162, 'https://ror.org/05adhha17', 'en', 1, 'https://ror.org/05adhha17 Tai Solarin University of Education'),
(101163, 'https://ror.org/01f0syq13', 'en', 1, 'https://ror.org/01f0syq13 Babson College'),
(101164, 'https://ror.org/02cnwgt19', 'en', 1, 'https://ror.org/02cnwgt19 Effat University Ų¬Ų§Ł…Ų¹Ų© عفت'),
(101165, 'https://ror.org/03jhe7195', 'en', 1, 'https://ror.org/03jhe7195 University of Illinois Hospital & Health Sciences System'),
(101166, 'https://ror.org/04eka8j06', 'en', 1, 'https://ror.org/04eka8j06 Ostwestfalen-Lippe University of Applied Sciences and Arts Technische Hochschule Ostwestfalen-Lippe'),
(101167, 'https://ror.org/050p80d78', 'sq', 1, 'https://ror.org/050p80d78 University of PriÅ”tina - Kosovska Mitrovica Универзитет у ŠŸŃ€ŠøŃˆŃ‚ŠøŠ½Šø са привременим ŃŠµŠ“ŠøŃˆŃ‚ŠµŠ¼ у Косовској ŠœŠøŃ‚Ń€Š¾Š²ŠøŃ†Šø'),
(101168, 'https://ror.org/01s7b5y08', 'en', 1, 'https://ror.org/01s7b5y08 University of South Alabama'),
(101169, 'https://ror.org/03d53xe41', 'en', 1, 'https://ror.org/03d53xe41 Tashkent State University of Oriental Studies Toshkent davlat sharqshunoslik universiteti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š¾ŃŃ‚Š¾ŠŗŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(101170, 'https://ror.org/05bbbc791', 'en', 1, 'https://ror.org/05bbbc791 University of Karachi جامعہ Ś©Ų±Ų§Ś†ŪŒ'),
(101171, 'https://ror.org/03v783k16', 'en', 1, 'https://ror.org/03v783k16 University of Kalyani ą¦•ą¦²ą§ą¦Æą¦¾ą¦£ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(101172, 'https://ror.org/00wgjpw02', 'en', 1, 'https://ror.org/00wgjpw02 Mount Sinai Medical Center'),
(101173, 'https://ror.org/03b21sh32', 'en', 1, 'https://ror.org/03b21sh32 Basque Center for Applied Mathematics'),
(101174, 'https://ror.org/049eq0c58', 'en', 1, 'https://ror.org/049eq0c58 Bydgoszcz University of Science and Technology Uniwersytet Technologiczno-Przyrodniczy im. Jana i Jędrzeja Śniadeckich w Bydgoszczy'),
(101175, 'https://ror.org/04gsyfx35', 'es', 1, 'https://ror.org/04gsyfx35 Centro de Investigación y Estudios Superiores en Antropología Social'),
(101176, 'https://ror.org/04pe4vg07', 'no_lang_code', 1, 'https://ror.org/04pe4vg07 Costello Medical Consulting (United Kingdom)'),
(101177, 'https://ror.org/03s7bv520', 'pt', 1, 'https://ror.org/03s7bv520 State University of Roraima Universidade Estadual de Roraima'),
(101178, 'https://ror.org/01fmwcn13', 'en', 1, 'https://ror.org/01fmwcn13 Murray State University UniversitĆ© d''Ɖtat de murray'),
(101179, 'https://ror.org/05dxn4584', 'es', 1, 'https://ror.org/05dxn4584 Autonomous University of Peru Universidad Autónoma del Perú'),
(101180, 'https://ror.org/030chxw89', 'en', 1, 'https://ror.org/030chxw89 Yaba College of Technology'),
(101181, 'https://ror.org/04vj69e88', 'en', 1, 'https://ror.org/04vj69e88 National Institute for Mathematical and Biological Synthesis'),
(101182, 'https://ror.org/04bt33m09', 'en', 1, 'https://ror.org/04bt33m09 Shri Dharmasthala Manjunatheswara College of Ayurveda and Hospital'),
(101183, 'https://ror.org/03x9hh156', 'en', 1, 'https://ror.org/03x9hh156 Council for Geoscience'),
(101184, 'https://ror.org/01s5jzh92', 'en', 1, 'https://ror.org/01s5jzh92 Handelshƶgskolan i Stockholm Stockholm School of Economics Tukholman kauppakorkeakoulu'),
(101185, 'https://ror.org/00tqx3b24', 'en', 1, 'https://ror.org/00tqx3b24 Rajagiri College of Social Sciences (Autonomous)'),
(101186, 'https://ror.org/01shctp43', 'en', 1, 'https://ror.org/01shctp43 Statistical and Applied Mathematical Sciences Institute'),
(101187, 'https://ror.org/036h8vg94', 'en', 1, 'https://ror.org/036h8vg94 SKEMA Business School'),
(101188, 'https://ror.org/02jbayz55', 'en', 1, 'https://ror.org/02jbayz55 University of Khartoum Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ų±Ų·ŁˆŁ…'),
(101189, 'https://ror.org/02fmg6q11', 'en', 1, 'https://ror.org/02fmg6q11 University of Okara جامعہ Ų§ŁˆŚ©Ų§Ś‘Ū'),
(101190, 'https://ror.org/05gqg4y53', 'en', 1, 'https://ror.org/05gqg4y53 Agharkar Research Institute');
INSERT INTO `rors` VALUES
(101191, 'https://ror.org/057d6z539', 'no_lang_code', 1, 'https://ror.org/057d6z539 Chitkara University ą¤šą¤æą¤¤ą¤•ą¤¾ą¤°ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(101192, 'https://ror.org/051h0cw83', 'en', 1, 'https://ror.org/051h0cw83 Iuliu Hațieganu Orvosi Ć©s GyógyszerĆ©szeti Egyetem Iuliu Hațieganu University of Medicine and Pharmacy Universitatea de Medicină și Farmacie Iuliu Hațieganu'),
(101193, 'https://ror.org/05saqv884', 'en', 1, 'https://ror.org/05saqv884 Nile University of Nigeria'),
(101194, 'https://ror.org/00nt6ka44', 'en', 1, 'https://ror.org/00nt6ka44 Ƈağ University Ƈağ Ɯniversitesi'),
(101195, 'https://ror.org/04cadha73', 'es', 1, 'https://ror.org/04cadha73 Geological and Mining Institute of Spain Instituto Geológico y Minero de España'),
(101196, 'https://ror.org/04kp2b655', 'en', 1, 'https://ror.org/04kp2b655 University of Brighton'),
(101197, 'https://ror.org/03a3kvy61', 'en', 1, 'https://ror.org/03a3kvy61 Columbia College Chicago'),
(101198, 'https://ror.org/01150px97', 'en', 1, 'https://ror.org/01150px97 National Institute of Science and Technology ନେସନାଲ ą¬‡ą¬Øą¬·ą­ą¬Ÿą¬æą¬šą­ą­Ÿą­ą¬Ÿą­ ą¬…ą¬«ą­ ą¬øą¬¾ą¬‡ą¬Øą­ą¬ø ą¬†ą¬£ą­ą¬” ą¬Ÿą­‡ą¬•ą­ą¬Øą­‹ą¬²ą­‹ą¬œą¬æ'),
(101199, 'https://ror.org/051zgra59', 'en', 1, 'https://ror.org/051zgra59 Government College University, Faisalabad جی سی ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(101200, 'https://ror.org/04gvszq17', 'es', 1, 'https://ror.org/04gvszq17 CETYS Universidad Centro de EnseƱanza TƩcnica y Superior'),
(101201, 'https://ror.org/02j9n6e35', 'no_lang_code', 1, 'https://ror.org/02j9n6e35 ALBA Synchrotron (Spain)'),
(101202, 'https://ror.org/018dfmf50', 'en', 1, 'https://ror.org/018dfmf50 Open Universiteit Nederland Open University of the Netherlands'),
(101203, 'https://ror.org/05hak1h47', 'en', 1, 'https://ror.org/05hak1h47 KolozsvĆ”ri AgrĆ”rtudomĆ”nyi Ć©s Ɓllatorvosi Egyetem Universitatea de Științe Agricole și Medicină Veterinară Cluj-Napoca University of Agricultural Sciences and Veterinary Medicine of Cluj-Napoca'),
(101204, 'https://ror.org/04y3rfg91', 'en', 1, 'https://ror.org/04y3rfg91 Central University of Gujarat'),
(101205, 'https://ror.org/04mzg6j57', 'en', 1, 'https://ror.org/04mzg6j57 English and Foreign Languages University ą¤…ą¤‚ą¤—ą„ą¤°ą„‡ą¤œą„€ और ą¤µą¤æą¤¦ą„‡ą¤¶ą„€ भाषाओ का ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ąØ…ą©°ąØ—ą©ąØ°ą©‡ąØœąØ¼ą©€ ਅਤੇ ਵਿਦੇਸ਼ੀ ਭਾਸ਼ਾਵਾਂ ਦੀ ਕੇਂਦਰੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°‡ą°‚ą°—ą±ą°²ą±€ą°·ą± ą°…ą°‚ą°”ą± ą°«ą°¾ą°°ą°æą°Øą± ą°²ą°¾ą°‚ą°—ą±ą°µą±‡ą°œą±†ą°øą±'),
(101206, 'https://ror.org/05bkmfm96', 'en', 1, 'https://ror.org/05bkmfm96 Minhaj University Lahore منہاج ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(101207, 'https://ror.org/03anrkt33', 'en', 1, 'https://ror.org/03anrkt33 Muhammadiyah University of Yogyakarta Universitas Muhammadiyah Yogyakarta'),
(101208, 'https://ror.org/053ez2v94', 'en', 1, 'https://ror.org/053ez2v94 ADA University Azərbaycan Diplomatik Akademiyası'),
(101209, 'https://ror.org/05297fh87', 'en', 1, 'https://ror.org/05297fh87 Primeasia University ą¦Ŗą§ą¦°ą¦¾ą¦‡ą¦®ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(101210, 'https://ror.org/00br9cf93', 'en', 1, 'https://ror.org/00br9cf93 University of Mines and Technology'),
(101211, 'https://ror.org/004ymxd45', 'en', 1, 'https://ror.org/004ymxd45 MIT World Peace University ą¤ą¤®ą¤†ą¤Æą¤Ÿą„€ ą¤µą¤°ą„ą¤²ą„ą¤” ą¤Ŗą„€ą¤ø ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(101212, 'https://ror.org/024kjbt21', 'en', 1, 'https://ror.org/024kjbt21 Duhok Polytechnic University'),
(101213, 'https://ror.org/05azws991', 'en', 1, 'https://ror.org/05azws991 Komar University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© ŁƒŁˆŁ…Ų§Ų± Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(101214, 'https://ror.org/02w5qgd07', 'es', 1, 'https://ror.org/02w5qgd07 Fundacion Universitaria Inpahu'),
(101215, 'https://ror.org/05cn2wc35', 'id', 1, 'https://ror.org/05cn2wc35 Universitas Muhammadiyah Surabaya'),
(101216, 'https://ror.org/00hhr3x36', 'en', 1, 'https://ror.org/00hhr3x36 Begum Rokeya University বেগম রোকেয়া ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(101217, 'https://ror.org/03bzf1g85', 'en', 1, 'https://ror.org/03bzf1g85 Vignan''s Foundation for Science, Technology & Research'),
(101218, 'https://ror.org/016zwj547', 'en', 1, 'https://ror.org/016zwj547 Vishwakarma University ą¤µą¤æą¤¶ą„ą¤µą¤•ą¤°ą„ą¤®ą¤¾ ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€ / ą¤µą¤æą¤¶ą„ą¤µą¤•ą¤°ą„ą¤®ą¤¾ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(101219, 'https://ror.org/01z0mc198', 'en', 1, 'https://ror.org/01z0mc198 Tadulako University Universitas Tadulako'),
(101220, 'https://ror.org/02kjpb485', 'nl', 1, 'https://ror.org/02kjpb485 VieCuri Medisch Centrum'),
(101221, 'https://ror.org/03e5jvk98', 'en', 1, 'https://ror.org/03e5jvk98 Sukkur IBA University سکر آئي بي اي ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(101222, 'https://ror.org/00dv9q566', 'en', 1, 'https://ror.org/00dv9q566 Campbell University'),
(101223, 'https://ror.org/02v7pt441', 'en', 1, 'https://ror.org/02v7pt441 Pramukhswami Medical College'),
(101224, 'https://ror.org/0489ggv38', 'en', 1, 'https://ror.org/0489ggv38 Canterbury Christ Church University'),
(101225, 'https://ror.org/016tr2g85', 'en', 1, 'https://ror.org/016tr2g85 Khatam University دانؓگاه Ų®Ų§ŲŖŁ…'),
(101226, 'https://ror.org/008gwdp12', 'en', 1, 'https://ror.org/008gwdp12 Lembaga Minyak Sawit Malaysia Malaysian Palm Oil Board'),
(101227, 'https://ror.org/0540vvc38', 'en', 1, 'https://ror.org/0540vvc38 American University in Dubai الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في دبي دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ دبی'),
(101228, 'https://ror.org/00b45dj41', 'en', 1, 'https://ror.org/00b45dj41 Ishikawa Prefectural University ēŸ³å·ēœŒē«‹å¤§å­¦'),
(101229, 'https://ror.org/02m6yfe37', 'en', 1, 'https://ror.org/02m6yfe37 Chuo Kikuu Huria cha Tanzania Open University of Tanzania'),
(101230, 'https://ror.org/00gvj4587', 'en', 1, 'https://ror.org/00gvj4587 Mawlana Bhashani Science and Technology University মাওলানা ভাসানী ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(101231, 'https://ror.org/00htrxv69', 'it', 1, 'https://ror.org/00htrxv69 Azienda Socio Sanitaria Territoriale Grande Ospedale Metropolitano Niguarda'),
(101232, 'https://ror.org/05kbmmt89', 'en', 1, 'https://ror.org/05kbmmt89 Institut Teknologi Sepuluh Nopember Institut TĆØknologi Sepuluh NopĆØmber Sepuluh Nopember Institute of Technology'),
(101233, 'https://ror.org/01mn7k054', 'en', 1, 'https://ror.org/01mn7k054 University of Lubumbashi UniversitƩ de Lubumbashi'),
(101234, 'https://ror.org/02xtwpk10', 'es', 1, 'https://ror.org/02xtwpk10 Universidad Externado de Colombia'),
(101235, 'https://ror.org/038dnay05', 'en', 1, 'https://ror.org/038dnay05 Constantine the Philosopher University in Nitra Nyitrai Konstantin Filozófus Egyetem Univerzita KonŔtantína Filozofa v Nitre'),
(101236, 'https://ror.org/0408v4c28', 'nl', 1, 'https://ror.org/0408v4c28 Centraal Bureau voor de Statistiek Statistics Netherlands'),
(101237, 'https://ror.org/058na1954', 'id', 1, 'https://ror.org/058na1954 Universitas Kanjuruhan'),
(101238, 'https://ror.org/01vxg3438', 'en', 1, 'https://ror.org/01vxg3438 Pabna University of Science and Technology পাবনা ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(101239, 'https://ror.org/01dm91j21', 'en', 1, 'https://ror.org/01dm91j21 Tartu University Hospital Tartu Ülikooli Kliinikum'),
(101240, 'https://ror.org/05sgb8g78', 'en', 1, 'https://ror.org/05sgb8g78 Suranaree University of Technology ดหาวณทยาคัยเทคโนโคยีสุรนารี'),
(101241, 'https://ror.org/03jz67a83', 'no_lang_code', 1, 'https://ror.org/03jz67a83 PTC Therapeutics (United States)'),
(101242, 'https://ror.org/00w9q2c06', 'en', 1, 'https://ror.org/00w9q2c06 Interkantonale Hochschule für Heilpädagogik University of Teacher Education in Special Needs'),
(101243, 'https://ror.org/01zrv0z61', 'en', 1, 'https://ror.org/01zrv0z61 Hamdard University Ų¬Ų§Ł…Ų¹Ū‚ ہمدرد'),
(101244, 'https://ror.org/026dk4f10', 'en', 1, 'https://ror.org/026dk4f10 Alexander von Humboldt Biological Resources Research Institute Instituto de Investigación de Recursos Biológicos Alexander von Humboldt'),
(101245, 'https://ror.org/01jk2zc89', 'en', 1, 'https://ror.org/01jk2zc89 Chuo Kikuu cha Egerton Egerton University'),
(101246, 'https://ror.org/00edtwv66', 'es', 1, 'https://ror.org/00edtwv66 Secretaría de Educación del Distrito Capital'),
(101247, 'https://ror.org/054a6wv56', 'en', 1, 'https://ror.org/054a6wv56 Institute of Space Science - INFLPR Subsidiary Institutul de Stiinte Spatiale - Filiala INFLPR'),
(101248, 'https://ror.org/01xcgd076', 'ca', 1, 'https://ror.org/01xcgd076 Institut Guttmann Instituto Guttmann'),
(101249, 'https://ror.org/014ezkx63', 'en', 1, 'https://ror.org/014ezkx63 Sir H.N. Reliance Foundation Hospital and Research Centre'),
(101250, 'https://ror.org/00yty3s07', 'es', 1, 'https://ror.org/00yty3s07 Universidad Nacional Tecnológica de Lima Sur'),
(101251, 'https://ror.org/03dnc6n82', 'en', 1, 'https://ror.org/03dnc6n82 National Institute for Biological Standards and Control'),
(101252, 'https://ror.org/02fckb719', 'en', 1, 'https://ror.org/02fckb719 Jenderal Soedirman University Universitas Jenderal Soedirman'),
(101253, 'https://ror.org/04asz2z59', 'en', 1, 'https://ror.org/04asz2z59 William James College'),
(101254, 'https://ror.org/01gcmye25', 'en', 1, 'https://ror.org/01gcmye25 Mattu University įˆ˜į‰± į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(101255, 'https://ror.org/02a3pzh97', 'es', 1, 'https://ror.org/02a3pzh97 Universidad PolitƩcnica de Puebla'),
(101256, 'https://ror.org/037s33w94', 'en', 1, 'https://ror.org/037s33w94 Yasuj University of Medical Sciences'),
(101257, 'https://ror.org/04xaa4j22', 'fr', 1, 'https://ror.org/04xaa4j22 Institut National des Sciences AppliquƩes de Rennes'),
(101258, 'https://ror.org/0127mpp72', 'en', 1, 'https://ror.org/0127mpp72 University of Uyo YunifÔsítì ìlú Uyo'),
(101259, 'https://ror.org/05339ng12', 'fr', 1, 'https://ror.org/05339ng12 Polytech Lille'),
(101260, 'https://ror.org/05sd1pz50', 'en', 1, 'https://ror.org/05sd1pz50 University of Zakho Ų¬Ų§Ł…Ų¹Ų© Ų²Ų§Ų®Ū†'),
(101261, 'https://ror.org/01gpw0445', 'no_lang_code', 1, 'https://ror.org/01gpw0445 Kompetenzzentrum Holz'),
(101262, 'https://ror.org/01j1rma10', 'en', 1, 'https://ror.org/01j1rma10 Ajman University Ų¬Ų§Ł…Ų¹Ų© عجمان Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(101263, 'https://ror.org/041tgg678', 'en', 1, 'https://ror.org/041tgg678 Kuwait Institute for Scientific Research'),
(101264, 'https://ror.org/03gnb6c23', 'en', 1, 'https://ror.org/03gnb6c23 Adeleke University'),
(101265, 'https://ror.org/010crp378', 'en', 1, 'https://ror.org/010crp378 University of Eldoret'),
(101266, 'https://ror.org/05gwtvp11', 'no_lang_code', 1, 'https://ror.org/05gwtvp11 Nuclear Research Institute Rez (Czechia)'),
(101267, 'https://ror.org/04jy41s17', 'nl', 1, 'https://ror.org/04jy41s17 Pro Persona'),
(101268, 'https://ror.org/03xgcq477', 'en', 1, 'https://ror.org/03xgcq477 Hochschule für Technik, Wirtschaft und Kultur Leipzig Leipzig University of Applied Sciences'),
(101269, 'https://ror.org/04q4j2f69', 'en', 1, 'https://ror.org/04q4j2f69 Dayalbagh Educational Institute'),
(101270, 'https://ror.org/014te7048', 'en', 1, 'https://ror.org/014te7048 Khazar University Xəzər Universiteti Университет Єазар'),
(101271, 'https://ror.org/05ekg7w76', 'en', 1, 'https://ror.org/05ekg7w76 Poltekkes Kemenkes Aceh'),
(101272, 'https://ror.org/04dgnw967', 'id', 1, 'https://ror.org/04dgnw967 Bale Bandung District Court Pengadilan Negeri Bale Bandung'),
(101273, 'https://ror.org/005wnzn26', 'en', 1, 'https://ror.org/005wnzn26 Mindanao State University-Sulu'),
(101274, 'https://ror.org/00smn7825', 'en', 1, 'https://ror.org/00smn7825 Dubna State University Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”ŃƒŠ±Š½Š°Ā»'),
(101275, 'https://ror.org/02m32cr13', 'en', 1, 'https://ror.org/02m32cr13 International University of Business Agriculture and Technology ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø, ą¦•ą¦¾ą¦²ą¦šą¦¾ą¦° ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(101276, 'https://ror.org/013fsnh78', 'en', 1, 'https://ror.org/013fsnh78 University of Waikato'),
(101277, 'https://ror.org/025j2nd68', 'en', 1, 'https://ror.org/025j2nd68 The Lundquist Institute'),
(101278, 'https://ror.org/00crqck26', 'no_lang_code', 1, 'https://ror.org/00crqck26 Varendra University ą¦¬ą¦°ą§‡ą¦Øą§ą¦¦ą§ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(101279, 'https://ror.org/03gz68w66', 'en', 1, 'https://ror.org/03gz68w66 National Institute of Geriatrics, Rheumatology and Rehabilitation'),
(101280, 'https://ror.org/00mw0tw28', 'en', 1, 'https://ror.org/00mw0tw28 University of Nova Gorica Univerza v Novi Gorici'),
(101281, 'https://ror.org/03apb0g70', 'en', 1, 'https://ror.org/03apb0g70 Marietta College'),
(101282, 'https://ror.org/01wsvqj37', 'es', 1, 'https://ror.org/01wsvqj37 Institución Universitaria Escuela Nacional del Deporte'),
(101283, 'https://ror.org/00b1c9541', 'en', 1, 'https://ror.org/00b1c9541 University of Hohenheim UniversitƤt Hohenheim'),
(101284, 'https://ror.org/03z44m407', 'en', 1, 'https://ror.org/03z44m407 Caleb University'),
(101285, 'https://ror.org/04k99et05', 'no_lang_code', 1, 'https://ror.org/04k99et05 Syngene International (India)'),
(101286, 'https://ror.org/047nnbj13', 'en', 1, 'https://ror.org/047nnbj13 Children''s Hospital of The King''s Daughters'),
(101287, 'https://ror.org/036zk8k10', 'es', 1, 'https://ror.org/036zk8k10 Universidad Tecnica de Machala'),
(101288, 'https://ror.org/015ycqv20', 'en', 1, 'https://ror.org/015ycqv20 Second Hospital of Hebei Medical University'),
(101289, 'https://ror.org/00a9b0g29', 'en', 1, 'https://ror.org/00a9b0g29 Vasil Levski National Military University ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ военен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101290, 'https://ror.org/05p847d66', 'en', 1, 'https://ror.org/05p847d66 Directorate for Geosciences'),
(101291, 'https://ror.org/035kykh40', 'no_lang_code', 1, 'https://ror.org/035kykh40 MSD (Serbia)'),
(101292, 'https://ror.org/01x0ngk19', 'pl', 1, 'https://ror.org/01x0ngk19 Instytut Transportu Samochodowego Motor Transport Institute'),
(101293, 'https://ror.org/03q201b69', 'en', 1, 'https://ror.org/03q201b69 Belarussian State Pedagogical University Named After Maxim Tank Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ пеГагагічны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń ŠœŠ°ŠŗŃŃ–Š¼Š° Танка Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101294, 'https://ror.org/04a4x4g72', 'en', 1, 'https://ror.org/04a4x4g72 Stanisław Sakowicz Inland Fisheries Institute'),
(101295, 'https://ror.org/01pe1d703', 'en', 1, 'https://ror.org/01pe1d703 Advanced Telecommunications Research Institute International ę Ŗå¼ä¼šē¤¾å›½éš›é›»ę°—é€šäæ”åŸŗē¤ŽęŠ€č”“ē ”ē©¶ę‰€'),
(101296, 'https://ror.org/02ekfbp48', 'en', 1, 'https://ror.org/02ekfbp48 Hamedan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ استان همدان'),
(101297, 'https://ror.org/05enmgs39', 'en', 1, 'https://ror.org/05enmgs39 West Bengal National University of Juridical Sciences ą¤Ŗą¤¶ą„ą¤šą¤æą¤® बंगाल ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Øą„ą¤Æą¤¾ą¤Æą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦†ą¦‡ą¦Øą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(101298, 'https://ror.org/025vmw012', 'en', 1, 'https://ror.org/025vmw012 Teikyo University of Science åøäŗ¬ē§‘å­¦å¤§å­¦'),
(101299, 'https://ror.org/055ag3e81', 'en', 1, 'https://ror.org/055ag3e81 Goucher College'),
(101300, 'https://ror.org/05pbkcd34', 'en', 1, 'https://ror.org/05pbkcd34 Cooper Union'),
(101301, 'https://ror.org/001et3313', 'en', 1, 'https://ror.org/001et3313 Mining and Metallurgy Institute Bor Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Ń€ŃƒŠ“Š°Ń€ŃŃ‚Š²Š¾ Šø Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³ŠøŃ˜Ńƒ Бор'),
(101302, 'https://ror.org/03eek8g24', 'en', 1, 'https://ror.org/03eek8g24 Antenor Orrego Private University Universidad Privada Antenor Orrego'),
(101303, 'https://ror.org/00t89vb53', 'en', 1, 'https://ror.org/00t89vb53 SveučiliÅ”te u Zadru University of Zadar Š”Š²ŠµŃƒŃ‡ŠøŠ»ŠøŃˆŃ‚Šµ у Š—Š°Š“Ń€Ńƒ'),
(101304, 'https://ror.org/00vg14f79', 'en', 1, 'https://ror.org/00vg14f79 Illinois Indiana Sea Grant'),
(101305, 'https://ror.org/00yvyvt82', 'en', 1, 'https://ror.org/00yvyvt82 Centre College'),
(101306, 'https://ror.org/04sjbnx57', 'en', 1, 'https://ror.org/04sjbnx57 University of Southern Queensland'),
(101307, 'https://ror.org/03e8vv411', 'en', 1, 'https://ror.org/03e8vv411 George Brown College'),
(101308, 'https://ror.org/01dn27978', 'en', 1, 'https://ror.org/01dn27978 Kabale University'),
(101309, 'https://ror.org/04j8de466', 'en', 1, 'https://ror.org/04j8de466 UniversitĆ© d''Ɖtat de worcester Worcester State University'),
(101310, 'https://ror.org/02bwxve09', 'en', 1, 'https://ror.org/02bwxve09 Microbial Chemistry Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¾®ē”Ÿē‰©åŒ–å­¦ē ”ē©¶ä¼š'),
(101311, 'https://ror.org/021s58p89', 'en', 1, 'https://ror.org/021s58p89 Thuongmai University TrĘ°į»ng ĐẔi hį»c Thʰʔng mįŗ”i'),
(101312, 'https://ror.org/04w4pwd42', 'en', 1, 'https://ror.org/04w4pwd42 President University Universitas Presiden'),
(101313, 'https://ror.org/02q9f3a53', 'en', 1, 'https://ror.org/02q9f3a53 KPR Institute of Engineering and Technology'),
(101314, 'https://ror.org/00gm0aw40', 'de', 1, 'https://ror.org/00gm0aw40 Ostbayerische Technische Hochschule Amberg-Weiden'),
(101315, 'https://ror.org/006yvnr95', 'en', 1, 'https://ror.org/006yvnr95 Ahlia University الجامعة Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(101316, 'https://ror.org/01c4pz451', 'en', 1, 'https://ror.org/01c4pz451 Tehran University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تهران'),
(101317, 'https://ror.org/03ehwqd13', 'en', 1, 'https://ror.org/03ehwqd13 Scientific and Research Centre for Fire Protection'),
(101318, 'https://ror.org/02j0n6s98', 'en', 1, 'https://ror.org/02j0n6s98 Ludwigsburg University of Education PƤdagogische Hochschule Ludwigsburg'),
(101319, 'https://ror.org/03ztgj037', 'en', 1, 'https://ror.org/03ztgj037 Deutsches Klimarechenzentrum German Climate Computing Centre'),
(101320, 'https://ror.org/04p81nz21', 'en', 1, 'https://ror.org/04p81nz21 Bellarmine University'),
(101321, 'https://ror.org/04nbz6d36', 'en', 1, 'https://ror.org/04nbz6d36 Hochschule Nordhausen Nordhausen University of Applied Sciences'),
(101322, 'https://ror.org/045y6d111', 'en', 1, 'https://ror.org/045y6d111 University of Vechta UniversitƤt Vechta'),
(101323, 'https://ror.org/01f7bcy98', 'en', 1, 'https://ror.org/01f7bcy98 Heidelberg Institute for Theoretical Studies Heidelberger Institut für Theoretische Studien'),
(101324, 'https://ror.org/04weaqm75', 'en', 1, 'https://ror.org/04weaqm75 Federal University Birnin Kebbi'),
(101325, 'https://ror.org/04gf7fp41', 'en', 1, 'https://ror.org/04gf7fp41 Høgskolen i Østfold Østfold University College'),
(101326, 'https://ror.org/00vsxg936', 'en', 1, 'https://ror.org/00vsxg936 University of Bouira Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁˆŁŠŲ±Ų©'),
(101327, 'https://ror.org/04nz0wq19', 'en', 1, 'https://ror.org/04nz0wq19 HudsonAlpha Institute for Biotechnology'),
(101328, 'https://ror.org/03gjktv92', 'en', 1, 'https://ror.org/03gjktv92 R.M.D. Engineering College'),
(101329, 'https://ror.org/05dwp6855', 'en', 1, 'https://ror.org/05dwp6855 College of the Holy Cross'),
(101330, 'https://ror.org/0545p3742', 'en', 1, 'https://ror.org/0545p3742 Plovdiv University ПловГивски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101331, 'https://ror.org/04j3saz95', 'en', 1, 'https://ror.org/04j3saz95 Siam University ดหาวณทยาคัยสยาด'),
(101332, 'https://ror.org/0463y2v87', 'ms', 1, 'https://ror.org/0463y2v87 Universiti Malaysia Kelantan University of Malaysia Kelantan'),
(101333, 'https://ror.org/010yce376', 'en', 1, 'https://ror.org/010yce376 TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ ThĆ nh phố Hồ ChĆ­ Minh University of Economics Ho Chi Minh City UniversitĆ© d''Ć©conomie d''hĆ“-chi-minh-ville'),
(101334, 'https://ror.org/0034jpk25', 'es', 1, 'https://ror.org/0034jpk25 Instituto Universitario de La Paz'),
(101335, 'https://ror.org/04577k168', 'en', 1, 'https://ror.org/04577k168 1 Decembrie 1918 University Universitatea 1 Decembrie 1918 din Alba Iulia'),
(101336, 'https://ror.org/02ks3nr96', 'no_lang_code', 1, 'https://ror.org/02ks3nr96 Software Competence Center Hagenberg (Austria)'),
(101337, 'https://ror.org/01e4kx996', 'en', 1, 'https://ror.org/01e4kx996 State University of Tetova Universiteti ShtetĆ«ror i TetovĆ«s Државен ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ во Тетово'),
(101338, 'https://ror.org/052rx6v10', 'en', 1, 'https://ror.org/052rx6v10 Claflin University'),
(101339, 'https://ror.org/02rjj7s91', 'en', 1, 'https://ror.org/02rjj7s91 University Clinical Centre Maribor'),
(101340, 'https://ror.org/01zkemb37', 'no_lang_code', 1, 'https://ror.org/01zkemb37 MSD (Germany)'),
(101341, 'https://ror.org/04y85wy15', 'no_lang_code', 1, 'https://ror.org/04y85wy15 Acciona (Spain)'),
(101342, 'https://ror.org/04dhnbf86', 'en', 1, 'https://ror.org/04dhnbf86 North Chiang Mai University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø­ąø£ą¹Œąø—-ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(101343, 'https://ror.org/03c4atk17', 'it', 1, 'https://ror.org/03c4atk17 UniversitĆ  della Svizzera italiana'),
(101344, 'https://ror.org/009zbth94', 'en', 1, 'https://ror.org/009zbth94 GLS University'),
(101345, 'https://ror.org/036gv0184', 'id', 1, 'https://ror.org/036gv0184 Institut Seni Indonesia Surakarta'),
(101346, 'https://ror.org/02fh3dt13', 'en', 1, 'https://ror.org/02fh3dt13 Petersburg State Transport University ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(101347, 'https://ror.org/00vmr6593', 'en', 1, 'https://ror.org/00vmr6593 Muhammad Nawaz Shareef University of Agriculture Ł…Ų­Ł…ŲÆ Ł†ŁˆŲ§Ų² ؓریف ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§ŪŒŚÆŲ±ŪŒŚ©Ł„Ś†Ų±'),
(101348, 'https://ror.org/00w7mf142', 'en', 1, 'https://ror.org/00w7mf142 Universitat d''Andorra University of Andorra'),
(101349, 'https://ror.org/04723hk63', 'en', 1, 'https://ror.org/04723hk63 Federal College of Education, Kontagora'),
(101350, 'https://ror.org/00j9b6f88', 'es', 1, 'https://ror.org/00j9b6f88 Instituto Maimónides de Investigación Biomédica de Córdoba'),
(101351, 'https://ror.org/03fvnza37', 'en', 1, 'https://ror.org/03fvnza37 St. Mary''s University, Texas UniversitƩ sainte-marie'),
(101352, 'https://ror.org/04b1m3e94', 'en', 1, 'https://ror.org/04b1m3e94 Mizoram University ą¤®ą¤æą¤œą¤¼ą„‹ą¤°ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(101353, 'https://ror.org/01yecy831', 'en', 1, 'https://ror.org/01yecy831 Siberian State Medical University Дибирский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101354, 'https://ror.org/04084tn63', 'en', 1, 'https://ror.org/04084tn63 National Autonomous University of Nicaragua Universidad Nacional Autónoma de Nicaragua'),
(101355, 'https://ror.org/034bdyc78', 'pt', 1, 'https://ror.org/034bdyc78 Empresa de Pesquisa AgropecuƔria de Minas Gerais'),
(101356, 'https://ror.org/044kc7a79', 'en', 1, 'https://ror.org/044kc7a79 Indira Gandhi Mirpur University इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(101357, 'https://ror.org/00qdc6m37', 'pt', 1, 'https://ror.org/00qdc6m37 Federal University of SĆ£o Carlos Universidade Federal de SĆ£o Carlos'),
(101358, 'https://ror.org/01gsr9f55', 'en', 1, 'https://ror.org/01gsr9f55 Surgut State University Š”ŃƒŃ€Š³ŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101359, 'https://ror.org/0120ae790', 'pt', 1, 'https://ror.org/0120ae790 Escola Superior de SaĆŗde da Cruz Vermelha Portuguesa'),
(101360, 'https://ror.org/05nrrsx06', 'no_lang_code', 1, 'https://ror.org/05nrrsx06 Centre Suisse d''Ɖlectronique et de Microtechnique Swiss Center for Electronics and Microtechnology (Switzerland)'),
(101361, 'https://ror.org/00b7x1x53', 'en', 1, 'https://ror.org/00b7x1x53 Montgomery College'),
(101362, 'https://ror.org/01es6dz53', 'en', 1, 'https://ror.org/01es6dz53 Universidad de Mendoza University of Mendoza'),
(101363, 'https://ror.org/03qcvkt88', 'es', 1, 'https://ror.org/03qcvkt88 Dirección General Marítima'),
(101364, 'https://ror.org/00apvva27', 'en', 1, 'https://ror.org/00apvva27 National Science Board'),
(101365, 'https://ror.org/05t4sxc87', 'en', 1, 'https://ror.org/05t4sxc87 Mogilev State A.Kuleshov University ŠœŠ°Š³Ń–Š»Ń‘ŃžŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń ŠŃ€ŠŗŠ°Š“Š·Ń ŠšŃƒŠ»ŃŃˆŠ¾Š²Š°'),
(101366, 'https://ror.org/028bzjj61', 'no_lang_code', 1, 'https://ror.org/028bzjj61 Repsol (Spain)'),
(101367, 'https://ror.org/017rd0q69', 'nl', 1, 'https://ror.org/017rd0q69 Alrijne Hospital Alrijne Ziekenhuis'),
(101368, 'https://ror.org/029eaeb35', 'en', 1, 'https://ror.org/029eaeb35 Albright College'),
(101369, 'https://ror.org/00s9vmn82', 'en', 1, 'https://ror.org/00s9vmn82 Antioquia Institute of Technology Tecnológico de Antioquia'),
(101370, 'https://ror.org/00wpfwd87', 'en', 1, 'https://ror.org/00wpfwd87 De La Salle-College of Saint Benilde'),
(101371, 'https://ror.org/02qg15b79', 'en', 1, 'https://ror.org/02qg15b79 Okinawa Institute of Science and Technology Graduate University ę²–ēø„ē§‘å­¦ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(101372, 'https://ror.org/00r63rv29', 'es', 1, 'https://ror.org/00r63rv29 Universidad PolitƩcnica de Pachuca'),
(101373, 'https://ror.org/016604a03', 'de', 1, 'https://ror.org/016604a03 Hochschule Augsburg University of Applied Sciences Technische Hochschule Augsburg'),
(101374, 'https://ror.org/047bj7979', 'en', 1, 'https://ror.org/047bj7979 National Institute for Aerospace Research Elie Carafoli'),
(101375, 'https://ror.org/01gasft26', 'pt', 1, 'https://ror.org/01gasft26 Instituto Superior PolitƩcnico de Gaza'),
(101376, 'https://ror.org/05xwb6v37', 'en', 1, 'https://ror.org/05xwb6v37 Universidad de Scranton University of Scranton UniversitƩ de scranton'),
(101377, 'https://ror.org/00bqe3914', 'es', 1, 'https://ror.org/00bqe3914 Universidad Fernando Pessoa Canarias'),
(101378, 'https://ror.org/01c06s784', 'en', 1, 'https://ror.org/01c06s784 ICFAI University, Tripura'),
(101379, 'https://ror.org/0456pcg54', 'en', 1, 'https://ror.org/0456pcg54 National Institute of Technology Andhra Pradesh ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤†ą¤‚ą¤§ą„ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶'),
(101380, 'https://ror.org/040hbk441', 'es', 1, 'https://ror.org/040hbk441 Universidad Nacional Pedro RuĆ­z Gallo'),
(101381, 'https://ror.org/02fvaj957', 'en', 1, 'https://ror.org/02fvaj957 Spelman College'),
(101382, 'https://ror.org/052t4a858', 'en', 1, 'https://ror.org/052t4a858 Daffodil International University ą¦”ą§ą¦Æą¦¾ą¦«ą§‹ą¦”ą¦æą¦² ą¦†ą¦Øą§ą¦¤ą¦°ą§ą¦œą¦¾ą¦¤ą¦æą¦• ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(101383, 'https://ror.org/05bh0zx16', 'en', 1, 'https://ror.org/05bh0zx16 Fasa University of Medical Sciences'),
(101384, 'https://ror.org/017g82c94', 'en', 1, 'https://ror.org/017g82c94 Kampala International University'),
(101385, 'https://ror.org/04csg5w40', 'en', 1, 'https://ror.org/04csg5w40 Fielding Graduate University'),
(101386, 'https://ror.org/03mhsvf98', 'en', 1, 'https://ror.org/03mhsvf98 Sir Padampat Singhania University सर पदमपत ą¤øą¤æą¤‚ą¤˜ą¤¾ą¤Øą¤æą¤Æą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(101387, 'https://ror.org/00x6twa51', 'es', 1, 'https://ror.org/00x6twa51 Universidad de Otavalo'),
(101388, 'https://ror.org/03snj0d76', 'en', 1, 'https://ror.org/03snj0d76 Berdyansk State Pedagogical University Š‘ŠµŃ€Š“ŃŠ½ŃŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101389, 'https://ror.org/00sh19a92', 'it', 1, 'https://ror.org/00sh19a92 Ente Ospedaliero Cantonale'),
(101390, 'https://ror.org/0250ngj72', 'fr', 1, 'https://ror.org/0250ngj72 Centre Hospitalier Universitaire d''Angers'),
(101391, 'https://ror.org/04sk2ar21', 'en', 1, 'https://ror.org/04sk2ar21 Washburn University'),
(101392, 'https://ror.org/02a39yh68', 'en', 1, 'https://ror.org/02a39yh68 Panca Bhakti University Universitas Panca Bhakti'),
(101393, 'https://ror.org/033zpbv42', 'en', 1, 'https://ror.org/033zpbv42 Moscow Aviation Institute Московский авиационный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(101394, 'https://ror.org/02kaerj47', 'en', 1, 'https://ror.org/02kaerj47 Gulf Medical University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ų§Ł„Ų·ŲØŁŠŲ©'),
(101395, 'https://ror.org/01a3g2z22', 'en', 1, 'https://ror.org/01a3g2z22 ICT Research Institute صفحه Ų§ŲµŁ„ŪŒ : Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų§Ų±ŲŖŲØŲ§Ų·Ų§ŲŖ و ŁŁ†Ų§ŁˆŲ±ŪŒ اطلاعات'),
(101396, 'https://ror.org/03q7j5x89', 'hr', 1, 'https://ror.org/03q7j5x89 Institut DruŔtvenih Znanosti Ivo Pilar'),
(101397, 'https://ror.org/02frkq021', 'en', 1, 'https://ror.org/02frkq021 Siberian Branch of the Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космофизических исслеГований Šø Š°ŃŃ€Š¾Š½Š¾Š¼ŠøŠø им. Š®.Š“.Шафера Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(101398, 'https://ror.org/03vvzk644', 'en', 1, 'https://ror.org/03vvzk644 American University of Central Asia OŹ»rta Osiyo Amerika Universiteti Американский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(101399, 'https://ror.org/02nv42w72', 'en', 1, 'https://ror.org/02nv42w72 Online Computer Library Center'),
(101400, 'https://ror.org/042x1tp92', 'no_lang_code', 1, 'https://ror.org/042x1tp92 Fortiss'),
(101401, 'https://ror.org/02v91gy68', 'en', 1, 'https://ror.org/02v91gy68 Polytechnic University of Timişoara Universitatea Politehnica din Timișoara'),
(101402, 'https://ror.org/05emabm63', 'en', 1, 'https://ror.org/05emabm63 University Hospital Ulm UniversitƤtsklinikum Ulm'),
(101403, 'https://ror.org/02h919y47', 'en', 1, 'https://ror.org/02h919y47 European Organisation for the Exploitation of Meteorological Satellites Europäische Organisation für die Nutzung meteorologischer Satelliten'),
(101404, 'https://ror.org/01cwqb692', 'en', 1, 'https://ror.org/01cwqb692 Middle Georgia State College'),
(101405, 'https://ror.org/046tym167', 'en', 1, 'https://ror.org/046tym167 Akademia WSB WSB University'),
(101406, 'https://ror.org/0036c6m19', 'en', 1, 'https://ror.org/0036c6m19 Instituto Federal Goiano'),
(101407, 'https://ror.org/04e6r1478', 'en', 1, 'https://ror.org/04e6r1478 Emporia State University UniversitĆ© d''Ɖtat d''emporia'),
(101408, 'https://ror.org/02ed64f32', 'no_lang_code', 1, 'https://ror.org/02ed64f32 Grifols (Spain)'),
(101409, 'https://ror.org/00pdej676', 'en', 1, 'https://ror.org/00pdej676 Cracow University of Technology Politechnika Krakowska im. Tadeusza Kościuszki'),
(101410, 'https://ror.org/02mb17771', 'es', 1, 'https://ror.org/02mb17771 Universidad Ricardo Palma'),
(101411, 'https://ror.org/02kyzv273', 'en', 1, 'https://ror.org/02kyzv273 University Clinical Centre Uniwersyteckie Centrum Kliniczne w Gdańsku'),
(101412, 'https://ror.org/03fj96t64', 'no_lang_code', 1, 'https://ror.org/03fj96t64 Genethon (France) GƩnƩthon'),
(101413, 'https://ror.org/017689761', 'en', 1, 'https://ror.org/017689761 Gulf College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų®Ł„ŁŠŲ¬'),
(101414, 'https://ror.org/04nqf9k60', 'en', 1, 'https://ror.org/04nqf9k60 Beijing Academy of Quantum Information Sciences'),
(101415, 'https://ror.org/01th1p123', 'en', 1, 'https://ror.org/01th1p123 Natural and Medical Sciences Institute Naturwissenschaftliches und Medizinisches Institut'),
(101416, 'https://ror.org/00568z619', 'es', 1, 'https://ror.org/00568z619 Instituto Interdisciplinario de Ciencias BƔsicas'),
(101417, 'https://ror.org/05e9bn444', 'en', 1, 'https://ror.org/05e9bn444 Institute of Mathematical Sciences Instituto de Ciencias MatemƔticas'),
(101418, 'https://ror.org/00engpz63', 'en', 1, 'https://ror.org/00engpz63 University of Sharjah Ų¬Ų§Ł…Ų¹Ų© الؓارقة'),
(101419, 'https://ror.org/019yxat94', 'en', 1, 'https://ror.org/019yxat94 University of Applied Health Sciences Zdravstveno veleučiliŔte u Zagrebu'),
(101420, 'https://ror.org/0118bra88', 'no_lang_code', 1, 'https://ror.org/0118bra88 MSD (Norway)'),
(101421, 'https://ror.org/05eer5n81', 'no_lang_code', 1, 'https://ror.org/05eer5n81 Wiss Janney Elstner Associates'),
(101422, 'https://ror.org/026yzxh70', 'it', 1, 'https://ror.org/026yzxh70 Arcispedale Sant''Anna'),
(101423, 'https://ror.org/03x0yya69', 'en', 1, 'https://ror.org/03x0yya69 Central Institute for Labour Protection Centralny Instytut Ochrony Pracy'),
(101424, 'https://ror.org/03hd30t45', 'en', 1, 'https://ror.org/03hd30t45 Grigore T. Popa University of Medicine and Pharmacy Universitatea de Medicină și Farmacie Grigore T. Popa'),
(101425, 'https://ror.org/01fhw6296', 'en', 1, 'https://ror.org/01fhw6296 University Of Fallujah Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŁ„ŁˆŲ¬Ų©'),
(101426, 'https://ror.org/04654kg92', 'en', 1, 'https://ror.org/04654kg92 La Salle Green Hills'),
(101427, 'https://ror.org/048m32v08', 'no_lang_code', 1, 'https://ror.org/048m32v08 MSD (Austria)'),
(101428, 'https://ror.org/02s2acn37', 'no_lang_code', 1, 'https://ror.org/02s2acn37 Kitware (United States)'),
(101429, 'https://ror.org/05m6y3182', 'en', 1, 'https://ror.org/05m6y3182 Norwegian Veterinary Institute'),
(101430, 'https://ror.org/0538pfx71', 'en', 1, 'https://ror.org/0538pfx71 Pontifical Catholic University of Puerto Rico Pontificia Universidad Catolica de Puerto Rico'),
(101431, 'https://ror.org/01d171k92', 'es', 1, 'https://ror.org/01d171k92 Universidad Tecnológica de Bolívar'),
(101432, 'https://ror.org/04jmbkr13', 'en', 1, 'https://ror.org/04jmbkr13 University of San Jose–Recoletos'),
(101433, 'https://ror.org/005vzbh90', 'en', 1, 'https://ror.org/005vzbh90 Universidad de las Regiones Autónomas de la Costa Caribe Nicaragüense University of the Autonomous Regions of the Nicaraguan Caribbean Coast'),
(101434, 'https://ror.org/03m1xdc36', 'en', 1, 'https://ror.org/03m1xdc36 Indian Institute of Management Kozhikode'),
(101435, 'https://ror.org/00b6sbb32', 'en', 1, 'https://ror.org/00b6sbb32 Directorate for Engineering'),
(101436, 'https://ror.org/029wwt733', 'en', 1, 'https://ror.org/029wwt733 National Library of China 中国国家图书馆'),
(101437, 'https://ror.org/04dv3aq25', 'en', 1, 'https://ror.org/04dv3aq25 International Iberian Nanotechnology Laboratory Laboratório Ibérico Internacional de Nanotecnologia'),
(101438, 'https://ror.org/02nt7a109', 'en', 1, 'https://ror.org/02nt7a109 AkÔdẹ́mì àbò asà Nàìjíríà Nigerian Defence Academy'),
(101439, 'https://ror.org/02f3ts956', 'ca', 1, 'https://ror.org/02f3ts956 Parc Sanitari Sant Joan de DƩu'),
(101440, 'https://ror.org/03jhhfg57', 'en', 1, 'https://ror.org/03jhhfg57 Colombia Adventist University Corporacion Universitaria Adventista'),
(101441, 'https://ror.org/03n273w86', 'en', 1, 'https://ror.org/03n273w86 Rajabhat Maha Sarakham University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøŽąø”ąø«ąø²ąøŖąø²ąø£ąø„ąø²ąø”'),
(101442, 'https://ror.org/05e715194', 'en', 1, 'https://ror.org/05e715194 Institute of Molecular and Clinical Ophthalmology Basel'),
(101443, 'https://ror.org/011q66e29', 'es', 1, 'https://ror.org/011q66e29 Instituto Nacional de Investigación y Tecnología Agraria y Alimentaria National Institute for Agricultural and Food Research and Technology'),
(101444, 'https://ror.org/00613ak93', 'en', 1, 'https://ror.org/00613ak93 Bergische UniversitƤt Wuppertal University of Wuppertal'),
(101445, 'https://ror.org/045m3v459', 'es', 1, 'https://ror.org/045m3v459 Universidad De Aquino Bolivia'),
(101446, 'https://ror.org/011xz5b94', 'en', 1, 'https://ror.org/011xz5b94 Emerson College'),
(101447, 'https://ror.org/00xhcc696', 'en', 1, 'https://ror.org/00xhcc696 National Center for Biotechnology ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр биотехнологии'),
(101448, 'https://ror.org/04pw1zg89', 'en', 1, 'https://ror.org/04pw1zg89 PARADIM'),
(101449, 'https://ror.org/04v8db398', 'sk', 1, 'https://ror.org/04v8db398 Trencianska Univerzita Alexandra Dubceka V Trencine'),
(101450, 'https://ror.org/02kwq2y85', 'en', 1, 'https://ror.org/02kwq2y85 Mulawarman University Universitas Mulawarman'),
(101451, 'https://ror.org/0138r3j35', 'en', 1, 'https://ror.org/0138r3j35 Institut International d''IngƩnierie de l''Eau et de l''Environnement International Institute for Water and Environmental Engineering'),
(101452, 'https://ror.org/015hejj83', 'en', 1, 'https://ror.org/015hejj83 Sultan Agung Islamic University Universitas Islam Sultan Agung'),
(101453, 'https://ror.org/03ztnr397', 'es', 1, 'https://ror.org/03ztnr397 Universidad Autónoma del Beni'),
(101454, 'https://ror.org/0579hyr20', 'fr', 1, 'https://ror.org/0579hyr20 HƓpital du Valais'),
(101455, 'https://ror.org/00fafvp33', 'en', 1, 'https://ror.org/00fafvp33 Gonabad University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓكي گناباد'),
(101456, 'https://ror.org/0566t4z20', 'fr', 1, 'https://ror.org/0566t4z20 University of Dschang UniversitƩ de Dschang'),
(101457, 'https://ror.org/043q8yx54', 'en', 1, 'https://ror.org/043q8yx54 Ontario Institute for Cancer Research'),
(101458, 'https://ror.org/04bm15q02', 'en', 1, 'https://ror.org/04bm15q02 Karatina University'),
(101459, 'https://ror.org/01xyp8r96', 'en', 1, 'https://ror.org/01xyp8r96 IPS Academy'),
(101460, 'https://ror.org/04rc8af74', 'en', 1, 'https://ror.org/04rc8af74 University of Garmian Ų²Ų§Ł†Ś©Ū†ŪŒ ŚÆŪ•Ų±Ł…ŪŒŲ§Ł†'),
(101461, 'https://ror.org/00ha1f767', 'es', 1, 'https://ror.org/00ha1f767 Instituto de Investigaciones BiomƩdicas Sols-Morreale Sols-Morreale Biomedical Research Institute'),
(101462, 'https://ror.org/011xesh37', 'no_lang_code', 1, 'https://ror.org/011xesh37 Razi Vaccine and Serum Research Institute'),
(101463, 'https://ror.org/03pe1mm80', 'en', 1, 'https://ror.org/03pe1mm80 Hampshire College'),
(101464, 'https://ror.org/02gag4781', 'en', 1, 'https://ror.org/02gag4781 DeSales University'),
(101465, 'https://ror.org/056tzgr32', 'en', 1, 'https://ror.org/056tzgr32 Hochschule Zittau/Gƶrlitz Zittau/Gƶrlitz University of Applied Sciences'),
(101466, 'https://ror.org/00y5zsg21', 'en', 1, 'https://ror.org/00y5zsg21 Institute of Oncology Ljubljana'),
(101467, 'https://ror.org/03a8hhw69', 'id', 1, 'https://ror.org/03a8hhw69 Universitas Islam Negeri Maulana Malik Ibrahim'),
(101468, 'https://ror.org/04n1nkp35', 'fr', 1, 'https://ror.org/04n1nkp35 HƓpital Intercommunal de CrƩteil'),
(101469, 'https://ror.org/049xfwy04', 'en', 1, 'https://ror.org/049xfwy04 Rhodes College'),
(101470, 'https://ror.org/05ffmnp02', 'en', 1, 'https://ror.org/05ffmnp02 Russian State Library Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń библиотека'),
(101471, 'https://ror.org/03nadks56', 'en', 1, 'https://ror.org/03nadks56 Riga StradiņŔ University Rygos Stradinio universitetas RÄ«gas Stradiņa universitāte Рижский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Паула Š”Ń‚Ń€Š°Š“ŠøŠ½Ń'),
(101472, 'https://ror.org/05k14ba46', 'en', 1, 'https://ror.org/05k14ba46 Nipissing University UniversitƩ de nipissing'),
(101473, 'https://ror.org/04fs90r60', 'en', 1, 'https://ror.org/04fs90r60 Tamil Nadu Agricultural University UniversitĆ© agricole de tamil nadu तमिल ą¤Øą¤¾ą¤”ą„ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®µąÆ‡ą®³ą®¾ą®£ąÆą®®ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“¤ą“®ą“æą““ąµą“Øą“¾ą“Ÿąµ ą“•ą“¾ąµ¼ą“·ą“æą“• ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(101474, 'https://ror.org/05fet5287', 'pl', 1, 'https://ror.org/05fet5287 Akademia Muzyczna im. Stanisława Moniuszki w Gdańsku The Stanisław Moniuszko Academy of Music in Gdańsk'),
(101475, 'https://ror.org/00jtmb277', 'en', 1, 'https://ror.org/00jtmb277 University of Wollongong'),
(101476, 'https://ror.org/04s620254', 'no_lang_code', 1, 'https://ror.org/04s620254 Materials Center Leoben (Austria)'),
(101477, 'https://ror.org/04pcw1010', 'en', 1, 'https://ror.org/04pcw1010 Albukhary Foundation Yayasan Albukhary'),
(101478, 'https://ror.org/01vme4277', 'en', 1, 'https://ror.org/01vme4277 Albany State University'),
(101479, 'https://ror.org/03s2x9d90', 'en', 1, 'https://ror.org/03s2x9d90 Ramapo College'),
(101480, 'https://ror.org/01e8w7w36', 'en', 1, 'https://ror.org/01e8w7w36 Saskatchewan Polytechnic'),
(101481, 'https://ror.org/04855bv47', 'en', 1, 'https://ror.org/04855bv47 National University of Mongolia Монгол Улсын Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ Монгольский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101482, 'https://ror.org/01wvxpc32', 'en', 1, 'https://ror.org/01wvxpc32 Cornell College'),
(101483, 'https://ror.org/05r40wk77', 'en', 1, 'https://ror.org/05r40wk77 Centre for English, Translation, and Anglo-Portuguese Studies'),
(101484, 'https://ror.org/05pm2mw36', 'pt', 1, 'https://ror.org/05pm2mw36 Centro de Investigação e Desenvolvimento em MatemÔtica e Aplicações'),
(101485, 'https://ror.org/03ham0v36', 'sr', 1, 'https://ror.org/03ham0v36 Etnografski institut Srpske akademije nauka i umetnosti'),
(101486, 'https://ror.org/05cz8qw35', 'en', 1, 'https://ror.org/05cz8qw35 MSD (Thailand)'),
(101487, 'https://ror.org/04jm7vd23', 'en', 1, 'https://ror.org/04jm7vd23 Computing Technology Industry Association'),
(101488, 'https://ror.org/04p7cys55', 'pt', 1, 'https://ror.org/04p7cys55 Autoridade de Segurança Alimentar e Económica'),
(101489, 'https://ror.org/04w6eh407', 'no_lang_code', 1, 'https://ror.org/04w6eh407 Xennia Technology (United Kingdom)'),
(101490, 'https://ror.org/03m3btt24', 'pt', 1, 'https://ror.org/03m3btt24 Centro de Biologia Molecular e Ambiental'),
(101491, 'https://ror.org/043c0p156', 'en', 1, 'https://ror.org/043c0p156 Koninklijke Nederlandse Akademie van Wetenschappen Royal Netherlands Academy of Arts and Sciences'),
(101492, 'https://ror.org/00714tm23', 'en', 0, 'https://ror.org/00714tm23 U.S. Air Force Space Command'),
(101493, 'https://ror.org/005xhc966', 'en', 1, 'https://ror.org/005xhc966 Norwalk Hospital'),
(101494, 'https://ror.org/03q1jzv88', 'pt', 1, 'https://ror.org/03q1jzv88 Sociedade Portuguesa de Psiquiatria e SaĆŗde Mental'),
(101495, 'https://ror.org/03njebb69', 'en', 1, 'https://ror.org/03njebb69 IRCCS San Camillo Hospital'),
(101496, 'https://ror.org/02f57qw79', 'en', 1, 'https://ror.org/02f57qw79 Japan Endocrine Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†…åˆ†ę³Œå­¦ä¼š'),
(101497, 'https://ror.org/03pvzjx64', 'es', 1, 'https://ror.org/03pvzjx64 Fundación Instituto Nacional de Heridas'),
(101498, 'https://ror.org/03f5sek97', 'pt', 1, 'https://ror.org/03f5sek97 Centro de Economia e FinanƧas'),
(101499, 'https://ror.org/059cm9r27', 'en', 1, 'https://ror.org/059cm9r27 Biology as a Solution Biology as a Solution (France)'),
(101500, 'https://ror.org/02ng2c866', 'pt', 1, 'https://ror.org/02ng2c866 Rede Interagencial de Informações para a Saúde'),
(101501, 'https://ror.org/03sxdvx36', 'en', 1, 'https://ror.org/03sxdvx36 Nevada System of Higher Education'),
(101502, 'https://ror.org/009hbta38', 'ro', 1, 'https://ror.org/009hbta38 Asociatia Romana pentru Industria Electronica si Software'),
(101503, 'https://ror.org/040zdp973', 'pt', 1, 'https://ror.org/040zdp973 Centro de Formação Cristã'),
(101504, 'https://ror.org/013v7ga69', 'en', 1, 'https://ror.org/013v7ga69 Bundesministerium für Inneres Federal Ministry for the Interior'),
(101505, 'https://ror.org/0397ts898', 'no_lang_code', 1, 'https://ror.org/0397ts898 AlmavivA (Italy)'),
(101506, 'https://ror.org/052zbdw10', 'es', 1, 'https://ror.org/052zbdw10 Universidad Unicervantes'),
(101507, 'https://ror.org/03nk5kq98', 'en', 1, 'https://ror.org/03nk5kq98 Saudi Health Council المجلس Ų§Ł„ŲµŲ­ŁŠ Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠ'),
(101508, 'https://ror.org/043kfff89', 'en', 1, 'https://ror.org/043kfff89 The National Gallery'),
(101509, 'https://ror.org/0131qn182', 'en', 1, 'https://ror.org/0131qn182 Japan Society for Analytical Chemistry å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åˆ†ęžåŒ–å­¦ä¼š'),
(101510, 'https://ror.org/03ep93h31', 'pt', 1, 'https://ror.org/03ep93h31 Centro de Investigação Desenvolvimento e Inovação em Turismo'),
(101511, 'https://ror.org/04fttyv97', 'en', 1, 'https://ror.org/04fttyv97 University of Arkansas at Little Rock UniversitƩ de l''arkansas Ơ little rock'),
(101512, 'https://ror.org/02m86se66', 'en', 1, 'https://ror.org/02m86se66 ASLAB Science'),
(101513, 'https://ror.org/05dq6d565', 'pt', 1, 'https://ror.org/05dq6d565 Universidade de Lisboa Centro de Estudos Anglisticos'),
(101514, 'https://ror.org/00katas93', 'pt', 1, 'https://ror.org/00katas93 Fundação Convento da Orada'),
(101515, 'https://ror.org/020gzt537', 'en', 1, 'https://ror.org/020gzt537 Chemical Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬ē†å­¦ä¼š'),
(101516, 'https://ror.org/04c2erx11', 'en', 1, 'https://ror.org/04c2erx11 VERITAS'),
(101517, 'https://ror.org/044ay9e62', 'pt', 1, 'https://ror.org/044ay9e62 Sociedade Brasileira de Geriatria e Gerontologia'),
(101518, 'https://ror.org/05qewa988', 'en', 1, 'https://ror.org/05qewa988 R Foundation for Statistical Computing R Vereinigung für statistisches Rechnen'),
(101519, 'https://ror.org/02t6w9483', 'en', 1, 'https://ror.org/02t6w9483 U.S. Air Force Research Laboratory AFWERX Directorate'),
(101520, 'https://ror.org/02t7c3b83', 'en', 1, 'https://ror.org/02t7c3b83 Sino-Africa Joint Research Center äø­å›½ē§‘å­¦é™¢äø­éžč”åˆē ”ē©¶äø­åæƒ'),
(101521, 'https://ror.org/05rbkcx47', 'en', 1, 'https://ror.org/05rbkcx47 Indiana University Hospital'),
(101522, 'https://ror.org/0173vvc25', 'en', 1, 'https://ror.org/0173vvc25 IEEE Magnetics Society'),
(101523, 'https://ror.org/03s3w2m84', 'en', 1, 'https://ror.org/03s3w2m84 Ministry of Foreign Affairs, Dhaka'),
(101524, 'https://ror.org/04rjwcx28', 'pt', 1, 'https://ror.org/04rjwcx28 Centro CientĆ­fico e Cultural de Macau'),
(101525, 'https://ror.org/05qb25959', 'pt', 1, 'https://ror.org/05qb25959 Centro de Investigação em Ciência Política'),
(101526, 'https://ror.org/0020c4y69', 'pt', 1, 'https://ror.org/0020c4y69 Associação BIOPOLIS - Rede de Investigação em Biodiversidade e Biologia Evolutiva'),
(101527, 'https://ror.org/04jvv9092', 'en', 1, 'https://ror.org/04jvv9092 Institute of Chemistry of Ireland InstitĆŗid Ceimice na hƉireann'),
(101528, 'https://ror.org/030npvq69', 'no_lang_code', 1, 'https://ror.org/030npvq69 MSD (Latvia)'),
(101529, 'https://ror.org/01zqw3717', 'pt', 1, 'https://ror.org/01zqw3717 ServiƧo de InformaƧƵes de SeguranƧa'),
(101530, 'https://ror.org/010mx2s02', 'pt', 1, 'https://ror.org/010mx2s02 Fundação Bissaya Barreto'),
(101531, 'https://ror.org/03ybmxt82', 'en', 1, 'https://ror.org/03ybmxt82 Guangzhou Laboratory Guangzhou National Laboratory å¹æå·žå®žéŖŒå®¤'),
(101532, 'https://ror.org/036t3bd25', 'en', 1, 'https://ror.org/036t3bd25 OP Jindal University'),
(101533, 'https://ror.org/010taw595', 'pt', 1, 'https://ror.org/010taw595 Sociedade Portuguesa de Endocrinologia Diabetes e Metabolismo'),
(101534, 'https://ror.org/03pecxr41', 'pt', 1, 'https://ror.org/03pecxr41 Centro de Engenharia Mecânica e Sustentabilidade de Recursos'),
(101535, 'https://ror.org/02y91h784', 'pt', 1, 'https://ror.org/02y91h784 7Degrees 7Graus (Portugal)'),
(101536, 'https://ror.org/01mtjs876', 'ro', 1, 'https://ror.org/01mtjs876 Spitalul Clinic de Nefrologie Dr. Carol Davila'),
(101537, 'https://ror.org/053tkcp92', 'en', 1, 'https://ror.org/053tkcp92 Bhawanipur Anchalik College'),
(101538, 'https://ror.org/055jk5a41', 'en', 1, 'https://ror.org/055jk5a41 Huzhou College ę¹–å·žå­¦é™¢'),
(101539, 'https://ror.org/01xxakw45', 'pt', 1, 'https://ror.org/01xxakw45 ComitƩ Olƭmpico de Portugal'),
(101540, 'https://ror.org/03jnv1a15', 'el', 1, 'https://ror.org/03jnv1a15 EXELISIS IKE (Greece)'),
(101541, 'https://ror.org/01y9py784', 'en', 0, 'https://ror.org/01y9py784 Centre for the Protection of National Infrastructure'),
(101542, 'https://ror.org/05j9d8v51', 'en', 1, 'https://ror.org/05j9d8v51 National Taitung University'),
(101543, 'https://ror.org/00d5f0g81', 'pt', 1, 'https://ror.org/00d5f0g81 PresidĆŖncia do Conselho de Ministros'),
(101544, 'https://ror.org/04q951c28', 'pt', 1, 'https://ror.org/04q951c28 Centro de Estudos Fiscais'),
(101545, 'https://ror.org/051f9hh10', 'en', 1, 'https://ror.org/051f9hh10 Fair Math Fair Math (United States) Fair Math, Inc'),
(101546, 'https://ror.org/040xdtr21', 'en', 1, 'https://ror.org/040xdtr21 MSD (Czech Republic)'),
(101547, 'https://ror.org/002g5jp68', 'en', 1, 'https://ror.org/002g5jp68 Mute'),
(101548, 'https://ror.org/02e2egq70', 'en', 1, 'https://ror.org/02e2egq70 United States Air Force Research Laboratory'),
(101549, 'https://ror.org/01tqfb593', 'en', 1, 'https://ror.org/01tqfb593 Delaware Asteroseismic Research Center'),
(101550, 'https://ror.org/05prvvz80', 'en', 1, 'https://ror.org/05prvvz80 Cogitatio Press'),
(101551, 'https://ror.org/01e33x915', 'en', 0, 'https://ror.org/01e33x915 Minneapolis Business College'),
(101552, 'https://ror.org/02qmsy927', 'pt', 1, 'https://ror.org/02qmsy927 Grupo Lobo'),
(101553, 'https://ror.org/02m7p2c22', 'de', 1, 'https://ror.org/02m7p2c22 Hochschule für Musik und Theater München University of Music and Theatre Munich'),
(101554, 'https://ror.org/03vzvbw58', 'en', 1, 'https://ror.org/03vzvbw58 Riley Hospital for Children'),
(101555, 'https://ror.org/04b6xjt49', 'pt', 1, 'https://ror.org/04b6xjt49 Sociedade Portuguesa de Gastrenterologia'),
(101556, 'https://ror.org/0161zbh32', 'en', 1, 'https://ror.org/0161zbh32 The Asian International School'),
(101557, 'https://ror.org/04z3ctv55', 'pt', 1, 'https://ror.org/04z3ctv55 Centro AcadƩmico de Medicina de Lisboa'),
(101558, 'https://ror.org/006m7dn80', 'en', 1, 'https://ror.org/006m7dn80 Institute of Desert Meteorology, China Meteorological Administration äø­å›½ę°”č±”å±€ä¹Œé²ęœØé½ę²™ę¼ ę°”č±”ē ”ē©¶ę‰€'),
(101559, 'https://ror.org/02cznc894', 'en', 1, 'https://ror.org/02cznc894 Air Force Installation and Mission Support Center'),
(101560, 'https://ror.org/01es68917', 'en', 1, 'https://ror.org/01es68917 American Association of Teachers of Spanish and Portuguese'),
(101561, 'https://ror.org/05w8p0566', 'pt', 1, 'https://ror.org/05w8p0566 Centro ALGORITMI');
INSERT INTO `rors` VALUES
(101562, 'https://ror.org/00hzpzv83', 'en', 1, 'https://ror.org/00hzpzv83 Fondation Familiale Trottier Trottier Family Foundation'),
(101563, 'https://ror.org/04apqa227', 'es', 1, 'https://ror.org/04apqa227 ANCAP (Uruguay) National Administration of Fuels, Alcohols and Portland'),
(101564, 'https://ror.org/04gq7sp95', 'pt', 1, 'https://ror.org/04gq7sp95 Universidade de Coimbra Centro de Investigação em Neuropsicologia e Intervenção Cognitivo-Comportamental'),
(101565, 'https://ror.org/00cmhce21', 'no_lang_code', 1, 'https://ror.org/00cmhce21 Huawei Technologies (China) åŽäøŗęŠ€ęœÆęœ‰é™å…¬åø'),
(101566, 'https://ror.org/02jvnqf51', 'no_lang_code', 1, 'https://ror.org/02jvnqf51 Cramer Fish Sciences (United States)'),
(101567, 'https://ror.org/04bwf3e34', 'de', 1, 'https://ror.org/04bwf3e34 Deutsches Zentrum für Luft- und Raumfahrt e. V. (DLR)'),
(101568, 'https://ror.org/01e97pj45', 'en', 1, 'https://ror.org/01e97pj45 Japan Surgical Association ę—„ęœ¬č‡ØåŗŠå¤–ē§‘å­¦ä¼š'),
(101569, 'https://ror.org/000dswa46', 'en', 1, 'https://ror.org/000dswa46 W. M. Keck Foundation'),
(101570, 'https://ror.org/00skee651', 'pt', 1, 'https://ror.org/00skee651 Instituto Para Os Sistemas e Tecnologias de Informação Controlo e Comunicação'),
(101571, 'https://ror.org/05hnd3017', 'pt', 1, 'https://ror.org/05hnd3017 Centro de Investigação em Actividade Física Saúde e Lazer'),
(101572, 'https://ror.org/05p0kyc43', 'tr', 1, 'https://ror.org/05p0kyc43 MSD (Turkiye)'),
(101573, 'https://ror.org/01460j859', 'no_lang_code', 1, 'https://ror.org/01460j859 Polytechnic University of Valencia Universidad Politécnica de Valencia Universitat Politècnica de València'),
(101574, 'https://ror.org/022888091', 'pt', 1, 'https://ror.org/022888091 Sociedade Portuguesa de Cuidados Intensivos'),
(101575, 'https://ror.org/0590pq693', 'en', 1, 'https://ror.org/0590pq693 Vilniaus universiteto ligoninės SantariÅ”kių klinikos Vilnius University Hospital Santariskiu Klinikos'),
(101576, 'https://ror.org/0196dtv45', 'pt', 1, 'https://ror.org/0196dtv45 Instituto Paulo Freire de Portugal'),
(101577, 'https://ror.org/03b6f4629', 'ca', 1, 'https://ror.org/03b6f4629 Fundació Institut de Recerca en Energia de Catalunya Institut de Recerca en Energia de Catalunya'),
(101578, 'https://ror.org/00btq2b69', 'pt', 1, 'https://ror.org/00btq2b69 Astellas Farma Lda (Portugal) Astellas Pharma Ltd'),
(101579, 'https://ror.org/02ggnh308', 'en', 1, 'https://ror.org/02ggnh308 Institute of China and Modern Asia of the Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŠøŃ‚Š°Ń Šø современной Азии Российской акаГемии наук'),
(101580, 'https://ror.org/04vq9c111', 'de', 1, 'https://ror.org/04vq9c111 Karlsruhe University of Arts and Design Staatliche Hochschule für Gestaltung Karlsruhe'),
(101581, 'https://ror.org/034kc6w18', 'en', 1, 'https://ror.org/034kc6w18 National Academy of Education named after Y. Altynsarin ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Имени И.Алтынсарина Ыбырай Алтынсарин атынГағы Ұлттық білім Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(101582, 'https://ror.org/02yfv7f42', 'de', 1, 'https://ror.org/02yfv7f42 Land Salzburg State of Salzburg'),
(101583, 'https://ror.org/02hwy9s76', 'en', 1, 'https://ror.org/02hwy9s76 Bệnh viện Thống Nhįŗ„t Thong Nhat Hospital'),
(101584, 'https://ror.org/03zse0q26', 'en', 1, 'https://ror.org/03zse0q26 American Indian Law Alliance'),
(101585, 'https://ror.org/02zr5jr81', 'en', 1, 'https://ror.org/02zr5jr81 University of Douala UniversitƩ de Douala'),
(101586, 'https://ror.org/01qcn1r66', 'en', 1, 'https://ror.org/01qcn1r66 National Museum Lagos'),
(101587, 'https://ror.org/00mxf7m82', 'pt', 1, 'https://ror.org/00mxf7m82 Deloitte Portugal (Portugal)'),
(101588, 'https://ror.org/00brrya24', 'pt', 1, 'https://ror.org/00brrya24 Centro de Território Ambiente e Construção'),
(101589, 'https://ror.org/03vsh1a40', 'pt', 1, 'https://ror.org/03vsh1a40 Centro de Inovação em Tecnologias e Cuidados de Saúde'),
(101590, 'https://ror.org/0510zxr89', 'pt', 1, 'https://ror.org/0510zxr89 Goethe Institut Portugal'),
(101591, 'https://ror.org/04hcmns80', 'id', 1, 'https://ror.org/04hcmns80 College of Business Runata Sekolah Tinggi Bisnis Runata'),
(101592, 'https://ror.org/01qaf6z41', 'en', 1, 'https://ror.org/01qaf6z41 Bhupal Nobles University ą¤­ą„‚ą¤Ŗą¤¾ą¤² ą¤Øą„‹ą¤¬ą¤²ą„ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(101593, 'https://ror.org/02969qk41', 'en', 1, 'https://ror.org/02969qk41 Swedish Agency for Economic and Regional Growth'),
(101594, 'https://ror.org/054yf8v46', 'en', 1, 'https://ror.org/054yf8v46 U.S. Air Force Research Laboratory Sensors Directorate'),
(101595, 'https://ror.org/05ja3tr06', 'en', 1, 'https://ror.org/05ja3tr06 Wind Engineering, Energy and Environment Research Institute'),
(101596, 'https://ror.org/05m92bb05', 'de', 1, 'https://ror.org/05m92bb05 Deutsche Gesellschaft für Materialkunde'),
(101597, 'https://ror.org/0001ws297', 'pt', 1, 'https://ror.org/0001ws297 Centro para o Desenvolvimento RƔpido e Sustentado de Produto'),
(101598, 'https://ror.org/04wgdeg88', 'en', 1, 'https://ror.org/04wgdeg88 R. E. Beverly III and Associates R. E. Beverly III and Associates (United States)'),
(101599, 'https://ror.org/05p0enq35', 'es', 1, 'https://ror.org/05p0enq35 Instituto AragonƩs de Ciencias de la Salud'),
(101600, 'https://ror.org/011bn8390', 'pt', 1, 'https://ror.org/011bn8390 Centro Nacional de Reprodução de Lince Ibérico'),
(101601, 'https://ror.org/037vkq915', 'es', 1, 'https://ror.org/037vkq915 Universidad PolitƩcnica de Juventino Rosas'),
(101602, 'https://ror.org/03x26x505', 'no_lang_code', 1, 'https://ror.org/03x26x505 Teleflex (Ireland)'),
(101603, 'https://ror.org/04sfnha74', 'pt', 1, 'https://ror.org/04sfnha74 Hospital SAMS'),
(101604, 'https://ror.org/017kqh787', 'no_lang_code', 1, 'https://ror.org/017kqh787 OxyMem (Ireland)'),
(101605, 'https://ror.org/03jers953', 'pt', 1, 'https://ror.org/03jers953 Fundação António Aleixo'),
(101606, 'https://ror.org/007rd1x46', 'pt', 1, 'https://ror.org/007rd1x46 Centro Champalimaud'),
(101607, 'https://ror.org/04m28hd07', 'es', 1, 'https://ror.org/04m28hd07 Instituto Tecnológico de Tlalnepantla'),
(101608, 'https://ror.org/02gqb2836', 'pt', 1, 'https://ror.org/02gqb2836 Sociedade Portuguesa de Alergologia e Imunologia ClĆ­nica'),
(101609, 'https://ror.org/05qse2d20', 'en', 1, 'https://ror.org/05qse2d20 Arab States Research and Education Network'),
(101610, 'https://ror.org/00rgp3j19', 'en', 1, 'https://ror.org/00rgp3j19 Japanese Society of Veterinary Science å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē£åŒ»å­¦ä¼š'),
(101611, 'https://ror.org/00csw7971', 'pl', 1, 'https://ror.org/00csw7971 Institute of Hematology and Transfusion Medicine Instytut Hematologii i Transfuzjologi'),
(101612, 'https://ror.org/05e1vv336', 'en', 1, 'https://ror.org/05e1vv336 The Japanese Association for Chest Surgery ę—„ęœ¬å‘¼åøå™Øå¤–ē§‘å­¦ä¼š'),
(101613, 'https://ror.org/05wn3mp32', 'fr', 1, 'https://ror.org/05wn3mp32 Institut des sciences de la mer'),
(101614, 'https://ror.org/01ez49q42', 'en', 1, 'https://ror.org/01ez49q42 Friends of the Earth Czech Republic HnutĆ­ DUHA'),
(101615, 'https://ror.org/04gpf9b23', 'nl', 1, 'https://ror.org/04gpf9b23 Kennispunt Twente'),
(101616, 'https://ror.org/01xmmqa34', 'pt', 1, 'https://ror.org/01xmmqa34 Comissão para a Cidadania e Igualdade de Género'),
(101617, 'https://ror.org/010vbsn33', 'en', 1, 'https://ror.org/010vbsn33 BICC - Bonn International Centre for Conflict Studies'),
(101618, 'https://ror.org/01e36dv41', 'en', 1, 'https://ror.org/01e36dv41 Robarts Clinical Trials'),
(101619, 'https://ror.org/026v2ph40', 'en', 1, 'https://ror.org/026v2ph40 The Society of Polymer Science, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗ'),
(101620, 'https://ror.org/050qgja27', 'pt', 1, 'https://ror.org/050qgja27 Câmara Municipal de Guimarães'),
(101621, 'https://ror.org/0068v6128', 'en', 1, 'https://ror.org/0068v6128 Guthrie Robert Packer Hospital'),
(101622, 'https://ror.org/04wx3x242', 'en', 1, 'https://ror.org/04wx3x242 Marist College'),
(101623, 'https://ror.org/03gb15459', 'pt', 1, 'https://ror.org/03gb15459 Escola de Negócios de Lisboa (Portugal) Lisbon Business School'),
(101624, 'https://ror.org/05rcbmq65', 'pt', 1, 'https://ror.org/05rcbmq65 Hospital LusĆ­adas Lisboa'),
(101625, 'https://ror.org/03z6f7h27', 'pt', 1, 'https://ror.org/03z6f7h27 Fundação Portuguesa de Cardiologia'),
(101626, 'https://ror.org/03vcded87', 'en', 0, 'https://ror.org/03vcded87 Western Connecticut Health Network'),
(101627, 'https://ror.org/03vdt4f56', 'pt', 1, 'https://ror.org/03vdt4f56 Centro de Estudos Transdisciplinares para o Desenvolvimento'),
(101628, 'https://ror.org/018ptcp83', 'pt', 1, 'https://ror.org/018ptcp83 Centro de QuĆ­mica'),
(101629, 'https://ror.org/02wq20039', 'pt', 1, 'https://ror.org/02wq20039 Gil Vicente Football Club Gil Vicente Futebol Clube Futebol SDUQ Lda (Portugal)'),
(101630, 'https://ror.org/02qjp0t33', 'pt', 1, 'https://ror.org/02qjp0t33 Centro de Estudos de Comunicação e Sociedade'),
(101631, 'https://ror.org/03jrc1b82', 'nl', 1, 'https://ror.org/03jrc1b82 Strukton (Netherlands)'),
(101632, 'https://ror.org/00ytqcj07', 'en', 1, 'https://ror.org/00ytqcj07 National Institute of Food Technology, Entrepreneurship and Management - Thanjavur'),
(101633, 'https://ror.org/03xwwht98', 'es', 1, 'https://ror.org/03xwwht98 Centro de Biomateriales e IngenierĆ­a Tisular'),
(101634, 'https://ror.org/00nyaem62', 'pt', 1, 'https://ror.org/00nyaem62 GrƩmio LiterƔrio'),
(101635, 'https://ror.org/052hkzn34', 'en', 1, 'https://ror.org/052hkzn34 Communal Institution of Higher Education Ā«Dnipro Academy of Continuing EducationĀ» of Dnipropetrovsk Regional Council Комунальний заклаГ вищої освіти "Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń неперервної освіти" Š”Š½Ń–ŠæŃ€Š¾ŠæŠµŃ‚Ń€Š¾Š²ŃŃŒŠŗŠ¾Ń— обласної раГи'),
(101636, 'https://ror.org/033rf4678', 'en', 1, 'https://ror.org/033rf4678 Al-Farabi University College ŁƒŁ„ŁŠŲ© Ų§Ł„ŁŲ§Ų±Ų§ŲØŁŠ الجامعة'),
(101637, 'https://ror.org/01m7hcv15', 'en', 1, 'https://ror.org/01m7hcv15 U.S. Air Force Sustainment Center'),
(101638, 'https://ror.org/00w7jwe49', 'en', 1, 'https://ror.org/00w7jwe49 People’s Hospital of Rizhao'),
(101639, 'https://ror.org/004jvxr73', 'pt', 1, 'https://ror.org/004jvxr73 Centro de Reabilitação Profissional de Gaia'),
(101640, 'https://ror.org/04qkqfe85', 'en', 1, 'https://ror.org/04qkqfe85 The CHILDS Trust Medical Research Foundation'),
(101641, 'https://ror.org/05ag2wm68', 'pt', 1, 'https://ror.org/05ag2wm68 CĆ¢mara Municipal de Coimbra'),
(101642, 'https://ror.org/04h58p752', 'en', 1, 'https://ror.org/04h58p752 Sano – Centre for Computational Personalised Medicine International Research Foundation'),
(101643, 'https://ror.org/001n2z339', 'ro', 1, 'https://ror.org/001n2z339 Asociatia Românã a Cãrnii'),
(101644, 'https://ror.org/02dw21289', 'pt', 1, 'https://ror.org/02dw21289 Sociedade Portuguesa de Dermatologia e Venereologia'),
(101645, 'https://ror.org/030fmj129', 'en', 1, 'https://ror.org/030fmj129 Atomic Energy Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŽŸå­åŠ›å­¦ä¼š'),
(101646, 'https://ror.org/02dknkp72', 'pt', 1, 'https://ror.org/02dknkp72 Instituto de Investigação e Desenvolvimento Tecnológico para a Construção Energia Ambiente e Sustentabilidade'),
(101647, 'https://ror.org/03b6h1a78', 'pt', 1, 'https://ror.org/03b6h1a78 Fundação Amadeu Dias'),
(101648, 'https://ror.org/020tjmw86', 'es', 1, 'https://ror.org/020tjmw86 Universidad Tecnológica de Zinacantepec'),
(101649, 'https://ror.org/05st8gg45', 'pt', 1, 'https://ror.org/05st8gg45 Centro de Biotecnologia de Plantas da Beira Interior'),
(101650, 'https://ror.org/01rrq9s86', 'en', 1, 'https://ror.org/01rrq9s86 Chinese Mechanical Engineering Society äø­å›½ęœŗę¢°å·„ēØ‹å­¦ä¼š'),
(101651, 'https://ror.org/04tqpcm97', 'en', 1, 'https://ror.org/04tqpcm97 Ministry of Food Processing Industries'),
(101652, 'https://ror.org/01aa0nz04', 'en', 1, 'https://ror.org/01aa0nz04 Bedford College'),
(101653, 'https://ror.org/00d1qw876', 'pt', 1, 'https://ror.org/00d1qw876 Centro de Investigação em Antropologia e Saúde'),
(101654, 'https://ror.org/0267j0k26', 'pt', 1, 'https://ror.org/0267j0k26 Centro de MatemƔtica'),
(101655, 'https://ror.org/00gz6rx61', 'pt', 1, 'https://ror.org/00gz6rx61 Brazilian Air Force Force aƩrienne brƩsilienne ForƧa AƩrea Brasileira Fuerza AƩrea BrasileƱa'),
(101656, 'https://ror.org/00jn5bv28', 'pt', 1, 'https://ror.org/00jn5bv28 Centro de Imagem Biomédica e Investigação Translacional'),
(101657, 'https://ror.org/004s85t07', 'en', 1, 'https://ror.org/004s85t07 International Organization for Standardization'),
(101658, 'https://ror.org/04gy2gr07', 'pt', 1, 'https://ror.org/04gy2gr07 CĆ¢mara Municipal de Loures'),
(101659, 'https://ror.org/03dhbdp32', 'tr', 1, 'https://ror.org/03dhbdp32 Ɩzgür Yayınları'),
(101660, 'https://ror.org/02sb4gh56', 'en', 1, 'https://ror.org/02sb4gh56 Japan Radiological Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»å­¦ę”¾å°„ē·šå­¦ä¼š'),
(101661, 'https://ror.org/02a3gqt64', 'pt', 1, 'https://ror.org/02a3gqt64 Instituto de Estudos Avançados em Catolicismo e Globalização'),
(101662, 'https://ror.org/04fpxzg11', 'en', 1, 'https://ror.org/04fpxzg11 IEEE Communications Society'),
(101663, 'https://ror.org/02xyxvc90', 'de', 1, 'https://ror.org/02xyxvc90 VRVis GmbH VRVis GmbH (Austria)'),
(101664, 'https://ror.org/02m27at14', 'pt', 1, 'https://ror.org/02m27at14 Qualiseg Engenharia e Gestão Lda (Portugal) Qualiseg Engineering and Management'),
(101665, 'https://ror.org/05wrc7826', 'en', 1, 'https://ror.org/05wrc7826 Mining and Metallurgical Institute of Tajikistan Горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ТаГжикистана Š”Š¾Š½ŠøŃˆŠŗŠ°Š“Š°Šø ŠŗÓÆŅ³ŠøŃŽ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Тоҷикистон'),
(101666, 'https://ror.org/032e34x73', 'pt', 1, 'https://ror.org/032e34x73 Fatec Praia Grande'),
(101667, 'https://ror.org/02h2fxd91', 'en', 1, 'https://ror.org/02h2fxd91 Astroserver Astroserver (Hungary)'),
(101668, 'https://ror.org/027318e47', 'en', 1, 'https://ror.org/027318e47 IMPACT School of Architecture'),
(101669, 'https://ror.org/0025mvn63', 'en', 1, 'https://ror.org/0025mvn63 National Commission for Museums and Monuments'),
(101670, 'https://ror.org/035c6mk53', 'es', 1, 'https://ror.org/035c6mk53 Nodos Culturales'),
(101671, 'https://ror.org/010vjyx44', 'no_lang_code', 1, 'https://ror.org/010vjyx44 North Bay Shellfish (United Kingdom)'),
(101672, 'https://ror.org/05yksqt98', 'pt', 1, 'https://ror.org/05yksqt98 ForƧa AƩrea Portuguesa'),
(101673, 'https://ror.org/03cmaaz53', 'en', 1, 'https://ror.org/03cmaaz53 ArmƩe canadienne Canadian Army'),
(101674, 'https://ror.org/048ppb911', 'ro', 1, 'https://ror.org/048ppb911 Regia Autonomă de Transport București Romanian Society of Trams'),
(101675, 'https://ror.org/03g001n57', 'en', 1, 'https://ror.org/03g001n57 Champalimaud Foundation'),
(101676, 'https://ror.org/00m2ka561', 'pt', 1, 'https://ror.org/00m2ka561 Escola de Hotelaria e Turismo do Porto'),
(101677, 'https://ror.org/0408b2b02', 'pt', 1, 'https://ror.org/0408b2b02 Centro de Direito da FamĆ­lia'),
(101678, 'https://ror.org/02qp3tb03', 'en', 1, 'https://ror.org/02qp3tb03 ClĆ­nica Mayo Mayo Clinic'),
(101679, 'https://ror.org/02ff2a336', 'pt', 1, 'https://ror.org/02ff2a336 Centro de Estudos IbƩricos'),
(101680, 'https://ror.org/05et28770', 'pt', 1, 'https://ror.org/05et28770 Comissão Nacional de Eleições'),
(101681, 'https://ror.org/00gkhpw57', 'es', 1, 'https://ror.org/00gkhpw57 Autonomous University of Bucaramanga Universidad Autónoma de Bucaramanga'),
(101682, 'https://ror.org/00cwp6m07', 'es', 1, 'https://ror.org/00cwp6m07 Instituto Tecnológico y de Estudios Superiores de Occidente'),
(101683, 'https://ror.org/023awsf17', 'en', 1, 'https://ror.org/023awsf17 IEEE Standards Association'),
(101684, 'https://ror.org/03m9nwf24', 'en', 1, 'https://ror.org/03m9nwf24 Andrzej Frycz Modrzewski Krakow University Uniwersytet Andrzeja Frycza Modrzewskiego w Krakowie'),
(101685, 'https://ror.org/05aashz48', 'en', 1, 'https://ror.org/05aashz48 U.S. Air Force Research Laboratory Space Vehicles Directorate'),
(101686, 'https://ror.org/0521rv456', 'en', 1, 'https://ror.org/0521rv456 Institute of High Temperature Electrochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŠø Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(101687, 'https://ror.org/03hn7vp62', 'en', 1, 'https://ror.org/03hn7vp62 Future Evidence Foundation'),
(101688, 'https://ror.org/04b08hq31', 'pt', 0, 'https://ror.org/04b08hq31 Instituto Gulbenkian de CiĆŖncia'),
(101689, 'https://ror.org/00vnfmn19', 'en', 1, 'https://ror.org/00vnfmn19 NSF Ocean Observatories Initiative'),
(101690, 'https://ror.org/029n0xq72', 'pt', 1, 'https://ror.org/029n0xq72 Secretaria Regional da Saúde e Segurança Social'),
(101691, 'https://ror.org/0583wsb64', 'en', 1, 'https://ror.org/0583wsb64 Minneapolis College'),
(101692, 'https://ror.org/00hgy8d33', 'en', 1, 'https://ror.org/00hgy8d33 Defence Research and Development Canada Recherche & dƩveloppement pour la dƩfense Canada'),
(101693, 'https://ror.org/0540h1p50', 'pt', 1, 'https://ror.org/0540h1p50 Centro Tecnológico da Cortiça'),
(101694, 'https://ror.org/009zrt367', 'en', 1, 'https://ror.org/009zrt367 Le Village FranƧais du NigƩria The Nigeria French Language Village'),
(101695, 'https://ror.org/00j57qa67', 'en', 1, 'https://ror.org/00j57qa67 International Nosocomial Infection Control Consortium Foundation'),
(101696, 'https://ror.org/009dqjj77', 'pt', 1, 'https://ror.org/009dqjj77 Content Ed Net Ltda (Portugal)'),
(101697, 'https://ror.org/05mrd5h76', 'en', 1, 'https://ror.org/05mrd5h76 U.S. Air Force Research Laboratory Aerospace Systems Directorate'),
(101698, 'https://ror.org/00cwssz89', 'en', 1, 'https://ror.org/00cwssz89 Hospice Africa France'),
(101699, 'https://ror.org/05kvsmq55', 'en', 1, 'https://ror.org/05kvsmq55 Korean Society for Aeronautical and Space Science ķ•œźµ­ķ•­ź³µģš°ģ£¼ķ•™ķšŒ'),
(101700, 'https://ror.org/01ncf8q17', 'pt', 1, 'https://ror.org/01ncf8q17 Instituto de Investigação em Vulcanologia e Avaliação de Riscos'),
(101701, 'https://ror.org/04bk3z010', 'en', 1, 'https://ror.org/04bk3z010 Aviation royale canadienne Royal Canadian Air Force'),
(101702, 'https://ror.org/01crcp038', 'en', 1, 'https://ror.org/01crcp038 Institute for Education Bucharest Institutul pentru Educatie (Bucuresti) Institutul pentru Educatie (Romania)'),
(101703, 'https://ror.org/03bajzn32', 'pt', 1, 'https://ror.org/03bajzn32 História Territórios e Comunidades'),
(101704, 'https://ror.org/035rreb34', 'en', 1, 'https://ror.org/035rreb34 Department of National Defence Ministère de la Défense nationale'),
(101705, 'https://ror.org/035qk7d98', 'pt', 1, 'https://ror.org/035qk7d98 Fidelidade Companhia de Seguros SA (Portugal) Fidelidade Insurance Company'),
(101706, 'https://ror.org/01cj80s71', 'en', 1, 'https://ror.org/01cj80s71 Athenaeum University Universitatea Athenaeum'),
(101707, 'https://ror.org/00z2hze84', 'hr', 1, 'https://ror.org/00z2hze84 Bjelovar University of Applied Sciences VeleučiliŔte u Bjelovaru'),
(101708, 'https://ror.org/054etjf65', 'en', 1, 'https://ror.org/054etjf65 Sacred Heart Seminary and School of Theology'),
(101709, 'https://ror.org/038xfq586', 'pt', 1, 'https://ror.org/038xfq586 Centro Tecnológico da Cerâmica e do Vidro (Portugal) Technological Centre for Ceramics and Glass'),
(101710, 'https://ror.org/0368jkn02', 'fr', 1, 'https://ror.org/0368jkn02 Centre de Droit Social'),
(101711, 'https://ror.org/05tj4xy20', 'en', 1, 'https://ror.org/05tj4xy20 Berkeley Eye Center'),
(101712, 'https://ror.org/030attg11', 'pt', 1, 'https://ror.org/030attg11 Instituto Rocha Cabral'),
(101713, 'https://ror.org/05x2wrh98', 'en', 1, 'https://ror.org/05x2wrh98 Institute of Geological Sciences'),
(101714, 'https://ror.org/012szh196', 'en', 1, 'https://ror.org/012szh196 Kementerian Luar Negeri Republik Indonesia Ministry of Foreign Affairs'),
(101715, 'https://ror.org/03vzjhn88', 'en', 1, 'https://ror.org/03vzjhn88 Shiite Endowment Diwan'),
(101716, 'https://ror.org/05esnc164', 'en', 1, 'https://ror.org/05esnc164 Ivey Business School'),
(101717, 'https://ror.org/03bx01x40', 'pt', 1, 'https://ror.org/03bx01x40 Jerónimo Martins (Portugal)'),
(101718, 'https://ror.org/05g70ef90', 'pt', 1, 'https://ror.org/05g70ef90 Centro de Estudos e Formação Avançada em Gestão e Economia'),
(101719, 'https://ror.org/0252a3c27', 'en', 1, 'https://ror.org/0252a3c27 Adera Medical Center Adera Medical Center PLC'),
(101720, 'https://ror.org/054877331', 'en', 1, 'https://ror.org/054877331 Wekerle Business School Wekerle SĆ”ndor Üzleti Főiskola'),
(101721, 'https://ror.org/01dpyn972', 'en', 1, 'https://ror.org/01dpyn972 Institute of Oncology Research'),
(101722, 'https://ror.org/02dbp3m50', 'es', 1, 'https://ror.org/02dbp3m50 Escuela de Posgrado Newman Newman Graduate School'),
(101723, 'https://ror.org/0005yy970', 'en', 1, 'https://ror.org/0005yy970 Federal University of Health Sciences Azare'),
(101724, 'https://ror.org/032tz4q83', 'en', 1, 'https://ror.org/032tz4q83 Minneapolis Public Library'),
(101725, 'https://ror.org/01wjsdp58', 'pt', 1, 'https://ror.org/01wjsdp58 Centro de Investigação Naval'),
(101726, 'https://ror.org/0181cy234', 'en', 1, 'https://ror.org/0181cy234 GeoSphere Austria'),
(101727, 'https://ror.org/02n19a666', 'pt', 1, 'https://ror.org/02n19a666 Centro de Medicina de Reabilitação da Região Centro Rovisco Pais'),
(101728, 'https://ror.org/011r90h67', 'en', 1, 'https://ror.org/011r90h67 American Bryological and Lichenological Society'),
(101729, 'https://ror.org/013hqyg37', 'en', 1, 'https://ror.org/013hqyg37 Benghazi Modern University Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŲŗŲ§Ų²ŁŠ Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(101730, 'https://ror.org/02rzxtq06', 'no_lang_code', 1, 'https://ror.org/02rzxtq06 Shijonawate Gakuen University å››ę¢ē•·å­¦åœ’å¤§å­¦'),
(101731, 'https://ror.org/04pa22x51', 'en', 1, 'https://ror.org/04pa22x51 International Kidney Stone Institute'),
(101732, 'https://ror.org/042vyhc60', 'pt', 1, 'https://ror.org/042vyhc60 Hospital da Horta EPER'),
(101733, 'https://ror.org/05rxjkq42', 'en', 1, 'https://ror.org/05rxjkq42 Health Data Hub'),
(101734, 'https://ror.org/05qat3p53', 'pt', 1, 'https://ror.org/05qat3p53 Centro de Investigação e Intervenção Educativas'),
(101735, 'https://ror.org/0472q6y77', 'pt', 1, 'https://ror.org/0472q6y77 Unidade Local de SaĆŗde de Castelo Branco EPE'),
(101736, 'https://ror.org/031gdzd12', 'pt', 1, 'https://ror.org/031gdzd12 Sociedade Portuguesa de Enfermagem de SaĆŗde Mental'),
(101737, 'https://ror.org/033zfn006', 'en', 1, 'https://ror.org/033zfn006 In-Service Aircraft for a Global Observing System'),
(101738, 'https://ror.org/01dst3018', 'es', 1, 'https://ror.org/01dst3018 Instituto Tecnológico de MazatlÔn'),
(101739, 'https://ror.org/00kdk7297', 'en', 1, 'https://ror.org/00kdk7297 LBJ Tropical Medical Center'),
(101740, 'https://ror.org/05vkpd318', 'en', 1, 'https://ror.org/05vkpd318 La Jolla Institute for Immunology'),
(101741, 'https://ror.org/01sy34016', 'en', 1, 'https://ror.org/01sy34016 Korean Orthopaedic Association ėŒ€ķ•œģ •ķ˜•ģ™øź³¼ķ•™ķšŒ'),
(101742, 'https://ror.org/04jp0me91', 'pt', 1, 'https://ror.org/04jp0me91 Centro de Psicologia'),
(101743, 'https://ror.org/0016chc90', 'pt', 1, 'https://ror.org/0016chc90 Instituto das Florestas e Conservação da Natureza'),
(101744, 'https://ror.org/02kfmz861', 'en', 1, 'https://ror.org/02kfmz861 China Resources Cement Technology Research and Development (Guangxi) Company Limited China Resources Cement Technology Research and Development (Guangxi) Company Limited (China) åŽę¶¦å»ŗęē§‘ęŠ€å®˜ē½‘'),
(101745, 'https://ror.org/04y7eh037', 'en', 1, 'https://ror.org/04y7eh037 Uniwersytet Witolda Wielkiego Vytautas Magnus University Vytauto Didžiojo universitetas Университет Витовта Великого'),
(101746, 'https://ror.org/03a5xsc56', 'en', 1, 'https://ror.org/03a5xsc56 Leibniz Institute for Tropospheric Research Leibniz-Institut für Troposphärenforschung'),
(101747, 'https://ror.org/042vemv88', 'pt', 1, 'https://ror.org/042vemv88 Santa Casa da Misericórdia do Porto'),
(101748, 'https://ror.org/05txhmf96', 'en', 1, 'https://ror.org/05txhmf96 Bangladesh Agricultural Research Council'),
(101749, 'https://ror.org/03qhv9c02', 'en', 1, 'https://ror.org/03qhv9c02 Australia''s Climate Simulator'),
(101750, 'https://ror.org/054df1z79', 'es', 1, 'https://ror.org/054df1z79 Institute of Advanced Social Studies Instituto de Estudios Sociales Avanzados'),
(101751, 'https://ror.org/05qk4xh70', 'en', 1, 'https://ror.org/05qk4xh70 Center for Translational Medicine Centrum Medycyny Translacyjnej'),
(101752, 'https://ror.org/01wh7p279', 'en', 1, 'https://ror.org/01wh7p279 Center for Health Research Studies Ł…Ų±ŁƒŲ² Ų§Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„ŲµŲ­ŁŠŲ©'),
(101753, 'https://ror.org/00xd2zr10', 'en', 1, 'https://ror.org/00xd2zr10 Groupe de Recherche sur l''Inadaptation Psychosociale Chez l''Enfant Research Unit on Children''s Psychosocial Maladjustment'),
(101754, 'https://ror.org/04nqyn415', 'sr', 1, 'https://ror.org/04nqyn415 Institut za higijenu i tehnologiju mesa'),
(101755, 'https://ror.org/026tc4g97', 'fr', 1, 'https://ror.org/026tc4g97 Territoires'),
(101756, 'https://ror.org/058nncw69', 'en', 1, 'https://ror.org/058nncw69 TIB Open Publishing'),
(101757, 'https://ror.org/05vtax910', 'pt', 1, 'https://ror.org/05vtax910 Direção Geral do Património Cultural'),
(101758, 'https://ror.org/04m6nbg42', 'pt', 1, 'https://ror.org/04m6nbg42 Instituto de HidrƔulica e Recursos Hƭdricos'),
(101759, 'https://ror.org/018v7v020', 'en', 1, 'https://ror.org/018v7v020 Institute of European Studies'),
(101760, 'https://ror.org/00bm99g65', 'en', 1, 'https://ror.org/00bm99g65 MSD (Greece)'),
(101761, 'https://ror.org/05dr32318', 'pt', 1, 'https://ror.org/05dr32318 Instituto Federal Sul-rio-grandense Instituto Federal de Educação, Ciência e Tecnologia Sul-rio-grandense Sul-rio-grandense Federal Institute'),
(101762, 'https://ror.org/03yz67v10', 'pt', 1, 'https://ror.org/03yz67v10 Direção Regional dos Assuntos do Mar'),
(101763, 'https://ror.org/0050cbz19', 'fr', 1, 'https://ror.org/0050cbz19 ModƩlisation SystƩmique AppliquƩe aux Ruminants'),
(101764, 'https://ror.org/04bq88r97', 'pt', 1, 'https://ror.org/04bq88r97 Centro de Informação Antivenenos'),
(101765, 'https://ror.org/01zdfh260', 'pt', 1, 'https://ror.org/01zdfh260 Centro de Investigação do Território Transportes e Ambiente'),
(101766, 'https://ror.org/033tt8e33', 'en', 1, 'https://ror.org/033tt8e33 NOAA Earth System Research Laboratory'),
(101767, 'https://ror.org/0560xhg44', 'en', 1, 'https://ror.org/0560xhg44 National Protective Security Authority'),
(101768, 'https://ror.org/02cptmd52', 'en', 1, 'https://ror.org/02cptmd52 Agronomie'),
(101769, 'https://ror.org/03rqcfv80', 'en', 1, 'https://ror.org/03rqcfv80 Canadian Armed Forces Forces ArmƩes Canadiennes'),
(101770, 'https://ror.org/01nmbn403', 'en', 1, 'https://ror.org/01nmbn403 University of Technology Nowshera'),
(101771, 'https://ror.org/02z92c890', 'en', 1, 'https://ror.org/02z92c890 Common Language Resources and Technology Infrastructure, Slovenia'),
(101772, 'https://ror.org/02dvm3910', 'pt', 1, 'https://ror.org/02dvm3910 Fundação Francisco Manuel dos Santos'),
(101773, 'https://ror.org/0418av495', 'en', 1, 'https://ror.org/0418av495 Alda Research Institute'),
(101774, 'https://ror.org/03r8ke253', 'pt', 1, 'https://ror.org/03r8ke253 Centro de Estudos e Recuperação de Animais Selvagens'),
(101775, 'https://ror.org/0418c0338', 'pt', 1, 'https://ror.org/0418c0338 Fundo Regional para a CiĆŖncia e Tecnologia'),
(101776, 'https://ror.org/02bt2v049', 'pt', 1, 'https://ror.org/02bt2v049 Centro de Investigação Marinha e Ambiental'),
(101777, 'https://ror.org/0584m4844', 'en', 1, 'https://ror.org/0584m4844 U.S. Air Force Research Laboratory Materials and Manufacturing Directorate'),
(101778, 'https://ror.org/01exg3m30', 'pt', 1, 'https://ror.org/01exg3m30 Centro de Investigação em Cidades Inteligentes'),
(101779, 'https://ror.org/01davvx50', 'pt', 1, 'https://ror.org/01davvx50 Hospital VeterinƔrio do Porto (Portugal) Porto Veterinary Hospital'),
(101780, 'https://ror.org/03q1x3h54', 'en', 1, 'https://ror.org/03q1x3h54 Federal Medical Center, Birnin Kudu'),
(101781, 'https://ror.org/02bxt4m23', 'en', 1, 'https://ror.org/02bxt4m23 Northwell Health'),
(101782, 'https://ror.org/02ejhav42', 'en', 1, 'https://ror.org/02ejhav42 Kyushu Dental Society ä¹å·žę­Æē§‘å­¦ä¼š'),
(101783, 'https://ror.org/010djr242', 'pt', 1, 'https://ror.org/010djr242 Laboratório Associado ICVS 3B''s'),
(101784, 'https://ror.org/00nc7ge81', 'pt', 1, 'https://ror.org/00nc7ge81 Centro de Investigação em Justiça e Governação'),
(101785, 'https://ror.org/00p0fvr40', 'pt', 1, 'https://ror.org/00p0fvr40 Centro de Investigação em Informação Comunicação e Cultura Digital'),
(101786, 'https://ror.org/00rv6r564', 'en', 1, 'https://ror.org/00rv6r564 Balfour Hospital'),
(101787, 'https://ror.org/04rmdjx50', 'en', 1, 'https://ror.org/04rmdjx50 Inter-Research Science Publisher Inter-Research Science Publisher (Germany)'),
(101788, 'https://ror.org/05gaf6s15', 'pt', 1, 'https://ror.org/05gaf6s15 Escola das Armas'),
(101789, 'https://ror.org/04hkzty24', 'en', 1, 'https://ror.org/04hkzty24 Bucharest National University of Arts Universitatea Națională de Arte București'),
(101790, 'https://ror.org/04eh2yn43', 'pt', 1, 'https://ror.org/04eh2yn43 Sociedade Portuguesa de Endoscopia Digestiva'),
(101791, 'https://ror.org/005bvs909', 'en', 1, 'https://ror.org/005bvs909 The Royal Melbourne Hospital'),
(101792, 'https://ror.org/04d54np47', 'en', 1, 'https://ror.org/04d54np47 Ball Memorial Hospital'),
(101793, 'https://ror.org/04gbpnx96', 'en', 1, 'https://ror.org/04gbpnx96 University of Opole'),
(101794, 'https://ror.org/0586h1368', 'en', 1, 'https://ror.org/0586h1368 The Korea Academia-Industrial Cooperation Society ķ•œźµ­ģ‚°ķ•™źø°ģˆ ķ•™ķšŒ'),
(101795, 'https://ror.org/059yx9a68', 'es', 1, 'https://ror.org/059yx9a68 National University of Colombia Universidad Nacional de Colombia'),
(101796, 'https://ror.org/04h27b256', 'en', 1, 'https://ror.org/04h27b256 Salymbekov University Далымбеков ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101797, 'https://ror.org/0458hw939', 'fr', 1, 'https://ror.org/0458hw939 Territoires, Environnement, TƩlƩdƩtection et Information Spatiale'),
(101798, 'https://ror.org/02tywpz50', 'es', 1, 'https://ror.org/02tywpz50 Instituto Tecnológico José Mario Molina Pasquel y Henrique'),
(101799, 'https://ror.org/04rtxcq25', 'en', 1, 'https://ror.org/04rtxcq25 Arkalyk State Pedagogical Institute named after Ibrai Altynsarin Аркалыкский пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. И. Алтынсарина Š«.Алтынсарин атынГағы Арқалық пеГагогикалық ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(101800, 'https://ror.org/00z65zs77', 'en', 1, 'https://ror.org/00z65zs77 U.S. Air Force Research Laboratory Information Directorate'),
(101801, 'https://ror.org/00z72xb75', 'pt', 1, 'https://ror.org/00z72xb75 Centro de Estudos e Formação Avançada em Gestão e Economia'),
(101802, 'https://ror.org/019qzkn95', 'en', 1, 'https://ror.org/019qzkn95 Srinivas University ą®šą®æą®±ąÆ€ą®©ą®æą®µą®¾ą®šąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(101803, 'https://ror.org/03cw6ep97', 'fr', 1, 'https://ror.org/03cw6ep97 FƩdƩration RƩgionale des Acteurs en Promotion de la SantƩ'),
(101804, 'https://ror.org/00d1wky64', 'pt', 1, 'https://ror.org/00d1wky64 Centro de Medicina AeronƔutica'),
(101805, 'https://ror.org/01y8teq94', 'ro', 1, 'https://ror.org/01y8teq94 Garda Nationala de Mediu'),
(101806, 'https://ror.org/05g023586', 'en', 1, 'https://ror.org/05g023586 Vassar Brothers Medical Center'),
(101807, 'https://ror.org/049pcye65', 'no_lang_code', 1, 'https://ror.org/049pcye65 Blue Point IT Solutions (Romania)'),
(101808, 'https://ror.org/007t3j908', 'en', 0, 'https://ror.org/007t3j908 Aleksandras Stulginskis University Aleksandro Stulginskio universitetas Uniwersytet Aleksandrasa Stulginskisa'),
(101809, 'https://ror.org/05d3apa77', 'pt', 1, 'https://ror.org/05d3apa77 Hospital de Sant''Ana'),
(101810, 'https://ror.org/0415mh255', 'nl', 1, 'https://ror.org/0415mh255 SSH-council of the Netherlands SSH-raad'),
(101811, 'https://ror.org/031pn0f70', 'en', 1, 'https://ror.org/031pn0f70 Dublin Tenants'),
(101812, 'https://ror.org/01vvakt76', 'pt', 1, 'https://ror.org/01vvakt76 Centro de Investigação em Reabilitação'),
(101813, 'https://ror.org/00pmyff63', 'en', 1, 'https://ror.org/00pmyff63 Union Adventist University'),
(101814, 'https://ror.org/01rn5yy33', 'pt', 1, 'https://ror.org/01rn5yy33 Grupo Tecnimede (Portugal) Tecnimede Group'),
(101815, 'https://ror.org/036vefa56', 'en', 1, 'https://ror.org/036vefa56 Shijonawate Gakuen Junior College å››ę¢ē•·å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(101816, 'https://ror.org/03d187f57', 'en', 1, 'https://ror.org/03d187f57 Technical University of Civil Engineering of Bucharest Universitatea Tehnică de Construcții din București'),
(101817, 'https://ror.org/026vbyp30', 'en', 1, 'https://ror.org/026vbyp30 Q University коллеГжа Ā«ŠšŠ°Š¹Š½Š°Ń€Ā» ŅšŠ°Š¹Š½Š°Ń€ ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(101818, 'https://ror.org/01n002310', 'en', 1, 'https://ror.org/01n002310 Institute of Electrical and Electronics Engineers'),
(101819, 'https://ror.org/048cva627', 'de', 1, 'https://ror.org/048cva627 DVGW-Forschungsstelle TUHH'),
(101820, 'https://ror.org/02n2wvw97', 'en', 1, 'https://ror.org/02n2wvw97 Specialized Hospital for Active Treatment of Children''s Diseases "Prof. Ivan Mitev" ЕАD-Sofia Дпециализирана болница за активно лечение по Гетски болести – проф.Иван ŠœŠøŃ‚ев ЕАД-Š”Š¾Ń„ŠøŃ'),
(101821, 'https://ror.org/05xca8873', 'pt', 1, 'https://ror.org/05xca8873 Direção de Formação'),
(101822, 'https://ror.org/04b62yp82', 'en', 0, 'https://ror.org/04b62yp82 Lietuvos edukologijos universitetas Lithuanian University of Educational Sciences Wileński Uniwersytet Pedagogiczny Литовский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Ń… наук'),
(101823, 'https://ror.org/03871gy17', 'pt', 1, 'https://ror.org/03871gy17 Embaixada da República da Indonésia Embassy of the Republic of Indonesia Lisabon Kedutaan Besar Republik Indonesia Lisabon Republik Portugal'),
(101824, 'https://ror.org/0188sb718', 'en', 1, 'https://ror.org/0188sb718 Dutchess Community College'),
(101825, 'https://ror.org/05p2xef58', 'id', 1, 'https://ror.org/05p2xef58 Lembaga Pengelola Dana Pendidikan'),
(101826, 'https://ror.org/02ajw2j97', 'pt', 1, 'https://ror.org/02ajw2j97 Hospital-Escola da Universidade Fernando Pessoa'),
(101827, 'https://ror.org/012qhb022', 'en', 1, 'https://ror.org/012qhb022 Romanian Educational and Research Network'),
(101828, 'https://ror.org/0062xp078', 'en', 1, 'https://ror.org/0062xp078 Institute of Agriculture of Carpathian Region of National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ Ń€ŠµŠ³Ń–Š¾Š½Ńƒ ŠŠ°Ń†Ń–Š¾Š½Š°ĢŠ»ŃŒŠ½Š¾Ń— акаГе́мії агра́рних нау́к України'),
(101829, 'https://ror.org/0480gk412', 'en', 1, 'https://ror.org/0480gk412 Maryam Abacha American University of Niger'),
(101830, 'https://ror.org/04vyj0v05', 'en', 1, 'https://ror.org/04vyj0v05 Observation International'),
(101831, 'https://ror.org/057jj1a66', 'en', 1, 'https://ror.org/057jj1a66 Indian Society of Agricultural Engineers ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ अभियंता ą¤øą„‹ą¤øą¤¾ą¤Æą¤Ÿą„€'),
(101832, 'https://ror.org/04fxjrd39', 'pt', 1, 'https://ror.org/04fxjrd39 Universidade de Coimbra Centro de GeociĆŖncias'),
(101833, 'https://ror.org/00nehgv82', 'en', 0, 'https://ror.org/00nehgv82 Datascope Analytics'),
(101834, 'https://ror.org/0300enh49', 'no_lang_code', 1, 'https://ror.org/0300enh49 BioClin (Ireland)'),
(101835, 'https://ror.org/02nwsdc81', 'en', 1, 'https://ror.org/02nwsdc81 IEEE Photonics Society'),
(101836, 'https://ror.org/015cr1d34', 'en', 1, 'https://ror.org/015cr1d34 MSD (Hungary)'),
(101837, 'https://ror.org/01n9zy652', 'en', 1, 'https://ror.org/01n9zy652 Medical University of Sofia ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Š”Š¾Ń„ŠøŃ'),
(101838, 'https://ror.org/02anj9s22', 'en', 1, 'https://ror.org/02anj9s22 Mt. Cuba Astronomical Observatory Mt. Cuba Astronomical Observatory, Inc.'),
(101839, 'https://ror.org/041bgx172', 'pt', 1, 'https://ror.org/041bgx172 Base Naval de Lisboa'),
(101840, 'https://ror.org/00qsh5z35', 'pt', 1, 'https://ror.org/00qsh5z35 Centro de FĆ­sica'),
(101841, 'https://ror.org/054qbhq46', 'en', 1, 'https://ror.org/054qbhq46 Institute of Natural Sciences and Applied Technology'),
(101842, 'https://ror.org/04hmdyv97', 'pt', 1, 'https://ror.org/04hmdyv97 Grupo HPA SaĆŗde'),
(101843, 'https://ror.org/03z4npt02', 'pt', 1, 'https://ror.org/03z4npt02 Centro de Engenharia Mecânica Materiais e Processos'),
(101844, 'https://ror.org/03k98v737', 'en', 1, 'https://ror.org/03k98v737 Audio Engineering Society, Inc. Audio Engineering Society, Inc. (United States)'),
(101845, 'https://ror.org/03fms3g32', 'pt', 1, 'https://ror.org/03fms3g32 Centro de Investigação em Estudos da Criança'),
(101846, 'https://ror.org/01vcn0259', 'en', 1, 'https://ror.org/01vcn0259 The Japanese Association of Indian and Buddhist Studies ę—„ęœ¬å°åŗ¦å­¦ä»ę•™å­¦ä¼š'),
(101847, 'https://ror.org/00g635h87', 'en', 1, 'https://ror.org/00g635h87 Methodist Hospital'),
(101848, 'https://ror.org/00dfbms98', 'en', 1, 'https://ror.org/00dfbms98 Hamburg University of Music and Drama Hochschule für Musik und Theater Hamburg'),
(101849, 'https://ror.org/01q3vqr85', 'en', 1, 'https://ror.org/01q3vqr85 Kyiv Institute of the National Guard of Ukraine'),
(101850, 'https://ror.org/05dx9nr48', 'pt', 1, 'https://ror.org/05dx9nr48 Centro de Filosofia'),
(101851, 'https://ror.org/04tfzc498', 'it', 1, 'https://ror.org/04tfzc498 Istituti di Ricovero e Cura a Carattere Scientifico'),
(101852, 'https://ror.org/01s6b8920', 'en', 1, 'https://ror.org/01s6b8920 Henan Vocational University of Science and Technology'),
(101853, 'https://ror.org/04gsk8f09', 'pt', 1, 'https://ror.org/04gsk8f09 Centro de Desenvolvimento do Potencial Humano'),
(101854, 'https://ror.org/022fqnb56', 'pt', 1, 'https://ror.org/022fqnb56 Centro de Estudos da População Economia e Sociedade'),
(101855, 'https://ror.org/037kgdv05', 'pt', 1, 'https://ror.org/037kgdv05 Fundação José Saramago'),
(101856, 'https://ror.org/04ecp7x75', 'ro', 1, 'https://ror.org/04ecp7x75 Spitalul Clinic de Psihiatrie Alexandru Obregia'),
(101857, 'https://ror.org/02at7cs40', 'en', 1, 'https://ror.org/02at7cs40 Japanese Society of Medical Instrumentation äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»ē™‚ę©Ÿå™Øå­¦ä¼š'),
(101858, 'https://ror.org/004q9wj75', 'en', 1, 'https://ror.org/004q9wj75 MSD (Peru)'),
(101859, 'https://ror.org/013pnfx92', 'fr', 1, 'https://ror.org/013pnfx92 Institut des Hautes Ɖtudes pour l’Innovation et l’Entreprenariat - IHEIE Institute of Higher Education for Innovation and Entrepreneurship - IHEIE Mines Paris, PSL University, Institute of Higher Education for Innovation and Entrepreneurship (IHEIE) Mines Paris, UniversitĆ© PSL, Institut des Hautes Ɖtudes pour l’Innovation et l’Entreprenariat (IHEIE)'),
(101860, 'https://ror.org/0238rvs44', 'en', 1, 'https://ror.org/0238rvs44 Sistema Universitario de Nebraska University of Nebraska System UniversitƩ du nebraska'),
(101861, 'https://ror.org/03f9f1d95', 'en', 1, 'https://ror.org/03f9f1d95 U.S. Air Force Institute of Technology'),
(101862, 'https://ror.org/0329ynx05', 'en', 1, 'https://ror.org/0329ynx05 German Environment Agency Umweltbundesamt'),
(101863, 'https://ror.org/010jr2e58', 'en', 1, 'https://ror.org/010jr2e58 The Society of Chemical Engineers, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ–å­¦å·„å­¦ä¼š'),
(101864, 'https://ror.org/03et3fv37', 'en', 1, 'https://ror.org/03et3fv37 Royal Military Academy Sandhurst'),
(101865, 'https://ror.org/00hqrwy91', 'pt', 1, 'https://ror.org/00hqrwy91 Ordem dos Nutricionistas'),
(101866, 'https://ror.org/00bqtef03', 'pt', 1, 'https://ror.org/00bqtef03 Fundação Oriente'),
(101867, 'https://ror.org/03nwwjk70', 'pt', 1, 'https://ror.org/03nwwjk70 Sociedade Portuguesa de ObstetrĆ­cia e Medicina Materno-Fetal'),
(101868, 'https://ror.org/045xhw230', 'en', 1, 'https://ror.org/045xhw230 Bir Tikendrajit University'),
(101869, 'https://ror.org/03r556n57', 'pt', 1, 'https://ror.org/03r556n57 Unidade Local de SaĆŗde do Baixo Alentejo Unidade Local de SaĆŗde do Baixo Alentejo EPE'),
(101870, 'https://ror.org/02v3vzd60', 'en', 1, 'https://ror.org/02v3vzd60 Chilean Institute for Disaster Resilience Instituto para la Resiliencia ante Desastres'),
(101871, 'https://ror.org/050a13412', 'pt', 1, 'https://ror.org/050a13412 Comando do Pessoal'),
(101872, 'https://ror.org/04xm4gw61', 'en', 1, 'https://ror.org/04xm4gw61 Nigerian Army University Biu'),
(101873, 'https://ror.org/007n70166', 'pt', 1, 'https://ror.org/007n70166 Centro de Investigação em Agronomia Alimentos Ambiente e Paisagem'),
(101874, 'https://ror.org/01rvyj653', 'en', 1, 'https://ror.org/01rvyj653 Pharmaceutical Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬å­¦ä¼š'),
(101875, 'https://ror.org/02xw5dc73', 'en', 1, 'https://ror.org/02xw5dc73 Facility for Airborne Atmospheric Measurements'),
(101876, 'https://ror.org/03cnjaa38', 'no_lang_code', 1, 'https://ror.org/03cnjaa38 MSD (Lithuania)'),
(101877, 'https://ror.org/02mjhg506', 'en', 1, 'https://ror.org/02mjhg506 Japanese Pharmacological Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬ē†å­¦ä¼š'),
(101878, 'https://ror.org/00sq4df16', 'en', 1, 'https://ror.org/00sq4df16 Japanese Dermatological Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēš®č†šē§‘å­¦ä¼š'),
(101879, 'https://ror.org/035764y25', 'pt', 1, 'https://ror.org/035764y25 Centro de LinguĆ­stica da Universidade do Porto'),
(101880, 'https://ror.org/05srvzs48', 'en', 1, 'https://ror.org/05srvzs48 Szkoła Główna Gospodarstwa Wiejskiego w Warszawie Warsaw University of Life Sciences'),
(101881, 'https://ror.org/030s0zd03', 'pt', 1, 'https://ror.org/030s0zd03 Centro de Investigação DidÔtica e Tecnologia na Formação de Formadores'),
(101882, 'https://ror.org/034x1h689', 'pt', 1, 'https://ror.org/034x1h689 Instituto Nacional da Propriedade Industrial'),
(101883, 'https://ror.org/03zbnzt98', 'en', 1, 'https://ror.org/03zbnzt98 Woods Hole Oceanographic Institution'),
(101884, 'https://ror.org/01pab2602', 'en', 1, 'https://ror.org/01pab2602 Yantai Institute of Coastal Zone Research äø­å›½ē§‘å­¦é™¢ēƒŸå°ęµ·å²øåø¦ē ”ē©¶ę‰€'),
(101885, 'https://ror.org/04gtcke47', 'en', 1, 'https://ror.org/04gtcke47 The Meteorological Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°—č±”å­¦ä¼š'),
(101886, 'https://ror.org/00xrbvb54', 'en', 1, 'https://ror.org/00xrbvb54 IEEE Antennas and Propagation Society'),
(101887, 'https://ror.org/05mzs1s34', 'fr', 1, 'https://ror.org/05mzs1s34 Centre de recherche multidisciplinaire en sciences humaines et sociales'),
(101888, 'https://ror.org/006a5tm74', 'pt', 1, 'https://ror.org/006a5tm74 Museu Nacional da MĆŗsica'),
(101889, 'https://ror.org/02hynvh35', 'pt', 1, 'https://ror.org/02hynvh35 Direcção-Geral de Alimentação e VeterinÔria'),
(101890, 'https://ror.org/00fe63682', 'pt', 1, 'https://ror.org/00fe63682 Institute of Ethnomusicology - Center for Studies in Music and Dance Instituto de Etnomusicologia - Centro de Estudos em Música e Dança'),
(101891, 'https://ror.org/024qcmm72', 'en', 1, 'https://ror.org/024qcmm72 The Bedford College Group'),
(101892, 'https://ror.org/04k69sk69', 'en', 1, 'https://ror.org/04k69sk69 The Charutar Vidya Mandal (CVM) University'),
(101893, 'https://ror.org/01r3yy824', 'en', 1, 'https://ror.org/01r3yy824 European Doctoral School'),
(101894, 'https://ror.org/018bbh535', 'en', 1, 'https://ror.org/018bbh535 University of Laghouat Ų¬Ų§Ł…Ų¹Ų© عمار Ų«Ł„ŁŠŲ¬ŁŠ'),
(101895, 'https://ror.org/04pschh68', 'en', 1, 'https://ror.org/04pschh68 Naučni institut za veterinarstvo Novi Sad Scientific Veterinary Institute "Novi Sad" ŠŠ°ŃƒŃ‡Š½Šø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ветеринарсво "ŠŠžŠ’Š˜ ДАД"'),
(101896, 'https://ror.org/0146fdq04', 'pt', 1, 'https://ror.org/0146fdq04 Conselho de Reitores das Universidades Portuguesas'),
(101897, 'https://ror.org/03m8mwm20', 'pt', 1, 'https://ror.org/03m8mwm20 Instituto de Oftalmologia Dr Gama Pinto'),
(101898, 'https://ror.org/056dsy097', 'pt', 1, 'https://ror.org/056dsy097 Centro de Estudo de BioƩtica'),
(101899, 'https://ror.org/002b5je16', 'pt', 1, 'https://ror.org/002b5je16 Centro de Estudos Florestais'),
(101900, 'https://ror.org/03ajk1m02', 'no_lang_code', 1, 'https://ror.org/03ajk1m02 ArheoloÅ”ki Institut Institute of Archaeology ŠŃ€Ń…ŠµŠ¾Š»Š¾ŃˆŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(101901, 'https://ror.org/04vafwy12', 'en', 1, 'https://ror.org/04vafwy12 Western Nevada College'),
(101902, 'https://ror.org/04bcef453', 'no_lang_code', 1, 'https://ror.org/04bcef453 Target Active Training (Romania)'),
(101903, 'https://ror.org/00ej60137', 'en', 1, 'https://ror.org/00ej60137 International Information and Engineering Technology Association'),
(101904, 'https://ror.org/00t5ccq33', 'en', 1, 'https://ror.org/00t5ccq33 Louvre Abou Dabi Louvre Abu Dhabi Ų§Ł„Ł„ŁˆŁŲ± أبوظبي'),
(101905, 'https://ror.org/04tty5b50', 'it', 1, 'https://ror.org/04tty5b50 Istituto Oncologico della Svizzera Italiana'),
(101906, 'https://ror.org/03t7a2639', 'pt', 1, 'https://ror.org/03t7a2639 Brazilian Air Force University Universidade da ForƧa AƩrea'),
(101907, 'https://ror.org/0423jr945', 'pt', 1, 'https://ror.org/0423jr945 Centro de CiĆŖncia e Tecnologia TĆŖxtil'),
(101908, 'https://ror.org/0426zq843', 'pt', 1, 'https://ror.org/0426zq843 Military Review Revista Militar (Portugal)'),
(101909, 'https://ror.org/01aaptx40', 'en', 1, 'https://ror.org/01aaptx40 Indiana University Health'),
(101910, 'https://ror.org/02vdhwb89', 'en', 1, 'https://ror.org/02vdhwb89 Srinath University'),
(101911, 'https://ror.org/0581dw191', 'en', 0, 'https://ror.org/0581dw191 Civil Aeronautics Authority'),
(101912, 'https://ror.org/01zpmbk67', 'en', 1, 'https://ror.org/01zpmbk67 Richard L. Roudebush VA Medical Center'),
(101913, 'https://ror.org/025th6q62', 'es', 1, 'https://ror.org/025th6q62 Bizkaiko Farmazilarien Elkargo Ofiziala COFBizkaia Colegio Oficial de FarmacƩuticos de Bizkaia'),
(101914, 'https://ror.org/02qze4e34', 'pt', 1, 'https://ror.org/02qze4e34 Escola de Direito de São Paulo da Fundação Getulio Vargas Fundação Getulio Vargas São Paulo Law School'),
(101915, 'https://ror.org/03a9csj98', 'pt', 1, 'https://ror.org/03a9csj98 Centro de Tecnologia Mecânica e Automação'),
(101916, 'https://ror.org/02yps9f67', 'en', 1, 'https://ror.org/02yps9f67 New Europe College'),
(101917, 'https://ror.org/01x87xv89', 'pt', 1, 'https://ror.org/01x87xv89 Centro Português de Geo-História e Pré-História'),
(101918, 'https://ror.org/00kvert56', 'pt', 1, 'https://ror.org/00kvert56 Fundação Gaspar Frutuoso'),
(101919, 'https://ror.org/010a43y06', 'pt', 1, 'https://ror.org/010a43y06 Instituto Nacional de Administração'),
(101920, 'https://ror.org/0107wa321', 'en', 1, 'https://ror.org/0107wa321 National Association for Practical Nurse Education and Service National Association for Practical Nurse Education and Service, Inc. (United States)'),
(101921, 'https://ror.org/013d2se23', 'pt', 1, 'https://ror.org/013d2se23 CĆ¢mara Municipal de Aveiro'),
(101922, 'https://ror.org/05qdjap63', 'pt', 1, 'https://ror.org/05qdjap63 Centro de Investigação em Arquitetura Urbanismo e Design'),
(101923, 'https://ror.org/04t2rv460', 'en', 1, 'https://ror.org/04t2rv460 Danbury Hospital'),
(101924, 'https://ror.org/04gey0774', 'en', 1, 'https://ror.org/04gey0774 Government of Sweden Konungariket Sveriges regering'),
(101925, 'https://ror.org/05qn0z879', 'fr', 0, 'https://ror.org/05qn0z879 Centre de Sociologie EuropƩenne'),
(101926, 'https://ror.org/03k4rda62', 'en', 1, 'https://ror.org/03k4rda62 FishEye Collaborative'),
(101927, 'https://ror.org/01cjash87', 'no_lang_code', 1, 'https://ror.org/01cjash87 Astellas Pharma (Japan) ć‚¢ć‚¹ćƒ†ćƒ©ć‚¹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(101928, 'https://ror.org/012cz7g18', 'en', 1, 'https://ror.org/012cz7g18 e-think energy research'),
(101929, 'https://ror.org/05rknw161', 'en', 1, 'https://ror.org/05rknw161 National Research And Development Institute For Energy'),
(101930, 'https://ror.org/01986j293', 'pt', 1, 'https://ror.org/01986j293 Centro de Investigação em Sociologia Económica e das Organizações'),
(101931, 'https://ror.org/02cnp0083', 'pt', 1, 'https://ror.org/02cnp0083 Centro de Investigação Desenvolvimento e Inovação em Turismo Leiria'),
(101932, 'https://ror.org/04f6z5785', 'es', 1, 'https://ror.org/04f6z5785 Instituto Tecnológico Superior de Salvatierra'),
(101933, 'https://ror.org/02kcab747', 'es', 1, 'https://ror.org/02kcab747 Escuela Normal Superior del Estado State Higher Normal School'),
(101934, 'https://ror.org/007a2ta87', 'en', 1, 'https://ror.org/007a2ta87 Huawei Technologies (Poland)'),
(101935, 'https://ror.org/014qpa824', 'en', 1, 'https://ror.org/014qpa824 Minnesota State Colleges and Universities System'),
(101936, 'https://ror.org/05jthwq62', 'en', 1, 'https://ror.org/05jthwq62 Association of College and Research Libraries'),
(101937, 'https://ror.org/004t6v776', 'en', 1, 'https://ror.org/004t6v776 The Korean Association of Internal Medicine ėŒ€ķ•œė‚“ź³¼ķ•™ķšŒ'),
(101938, 'https://ror.org/015byee85', 'pt', 1, 'https://ror.org/015byee85 Instituto do Ambiente Tecnologia e Vida'),
(101939, 'https://ror.org/03wtqpk68', 'no_lang_code', 1, 'https://ror.org/03wtqpk68 Technischer Überwachungsverein TÜV Rheinland (Germany)'),
(101940, 'https://ror.org/019g8w217', 'pt', 0, 'https://ror.org/019g8w217 Instituto de Medicina Molecular João Lobo Antunes'),
(101941, 'https://ror.org/03gfc5a27', 'en', 1, 'https://ror.org/03gfc5a27 American Society for Horticultural Science'),
(101942, 'https://ror.org/00mfa2s19', 'pt', 1, 'https://ror.org/00mfa2s19 Centro de Investigação em Sistemas Computacionais Embebidos e de Tempo-Real'),
(101943, 'https://ror.org/01hgwb793', 'pt', 1, 'https://ror.org/01hgwb793 Direcção-Geral da Saúde'),
(101944, 'https://ror.org/02n3jsk50', 'pt', 1, 'https://ror.org/02n3jsk50 Centro de Estudos e Investigação em Saúde');
INSERT INTO `rors` VALUES
(101945, 'https://ror.org/03nb7yk44', 'pt', 1, 'https://ror.org/03nb7yk44 Centro de Física Teórica e Computacional'),
(101946, 'https://ror.org/00mcb2b28', 'en', 1, 'https://ror.org/00mcb2b28 International Image Sensor Society'),
(101947, 'https://ror.org/00p0pr527', 'pt', 1, 'https://ror.org/00p0pr527 Centro de Estudos ClƔssicos e Humanƭsticos'),
(101948, 'https://ror.org/04fq48551', 'en', 1, 'https://ror.org/04fq48551 U.S. Air Force Research Laboratory Directed Energy Directorate'),
(101949, 'https://ror.org/0220pja87', 'en', 1, 'https://ror.org/0220pja87 IEEE Microwave Theory and Techniques Society'),
(101950, 'https://ror.org/00tpr5718', 'pt', 1, 'https://ror.org/00tpr5718 Centro de Investigação em Sistemas e Tecnologias'),
(101951, 'https://ror.org/01h019421', 'pt', 1, 'https://ror.org/01h019421 Associação BLC3 Campus de Tecnologia e Inovação'),
(101952, 'https://ror.org/002n47361', 'pt', 1, 'https://ror.org/002n47361 APDSI'),
(101953, 'https://ror.org/04yjnf659', 'id', 1, 'https://ror.org/04yjnf659 Sekolah Tinggi Ilmu Komunikasi Almamater Wartawan Surabaya'),
(101954, 'https://ror.org/04nsasc45', 'en', 1, 'https://ror.org/04nsasc45 Maryam Abacha American University of Nigeria'),
(101955, 'https://ror.org/01ygyzs83', 'en', 1, 'https://ror.org/01ygyzs83 Leibniz Centre for Agricultural Landscape Research Leibniz-Zentrum für Agrarlandschaftsforschung'),
(101956, 'https://ror.org/03r8typ39', 'pt', 1, 'https://ror.org/03r8typ39 Centro de Investigação em Meio Ambiente Genética e Oncobiologia'),
(101957, 'https://ror.org/04ryd5567', 'en', 1, 'https://ror.org/04ryd5567 Fatima Animal Medical Center'),
(101958, 'https://ror.org/00ra1q261', 'es', 1, 'https://ror.org/00ra1q261 Facultad de Contaduría y Administración'),
(101959, 'https://ror.org/05j2ptn94', 'en', 1, 'https://ror.org/05j2ptn94 College of Science and Technology'),
(101960, 'https://ror.org/05xfmys41', 'pt', 1, 'https://ror.org/05xfmys41 BPI Lisboa (Portugal) BPI Lisbon'),
(101961, 'https://ror.org/001p58g30', 'en', 1, 'https://ror.org/001p58g30 Institut za zaŔtitu bilja i životnu sredinu Institute for Plant Protection and Environment'),
(101962, 'https://ror.org/01m6pbq35', 'pt', 1, 'https://ror.org/01m6pbq35 Administração do Porto de Lisboa SA (Portugal) Port of Lisbon'),
(101963, 'https://ror.org/00qz2t575', 'pt', 1, 'https://ror.org/00qz2t575 Centro de Investigação em Ciências da Saúde'),
(101964, 'https://ror.org/02zvy6a06', 'en', 1, 'https://ror.org/02zvy6a06 Anthony J. Leggett Institute for Condensed Matter Theory'),
(101965, 'https://ror.org/04q2cza07', 'pt', 1, 'https://ror.org/04q2cza07 Centro MƩdico DentƔrio (Portugal) Dental Medical Centre'),
(101966, 'https://ror.org/05ft4db12', 'pt', 1, 'https://ror.org/05ft4db12 Colaboratório para as Geociências'),
(101967, 'https://ror.org/04pweky63', 'en', 1, 'https://ror.org/04pweky63 Mama Ngina University College'),
(101968, 'https://ror.org/01q4hzt15', 'pt', 1, 'https://ror.org/01q4hzt15 Centro de Ecologia Evolução e Alterações Ambientais'),
(101969, 'https://ror.org/04q9fhm49', 'en', 1, 'https://ror.org/04q9fhm49 American Association of Immunologists'),
(101970, 'https://ror.org/04yxc1466', 'id', 1, 'https://ror.org/04yxc1466 Universitas Sari Mulia'),
(101971, 'https://ror.org/058p87c41', 'en', 1, 'https://ror.org/058p87c41 South Ethiopia Regional State Health Bureau'),
(101972, 'https://ror.org/001cahp29', 'pt', 1, 'https://ror.org/001cahp29 Autoridade Nacional de Comunicacoes'),
(101973, 'https://ror.org/00x3jrk87', 'pt', 1, 'https://ror.org/00x3jrk87 Centro de Física Teórica de Partículas'),
(101974, 'https://ror.org/004j8hp41', 'en', 1, 'https://ror.org/004j8hp41 Community Action Tenants Union'),
(101975, 'https://ror.org/01xjmqm90', 'pt', 1, 'https://ror.org/01xjmqm90 Centro de Estudos GeogrƔficos'),
(101976, 'https://ror.org/04a7p1d16', 'pt', 1, 'https://ror.org/04a7p1d16 Academia das CiĆŖncias de Lisboa'),
(101977, 'https://ror.org/05bdn4a17', 'pt', 1, 'https://ror.org/05bdn4a17 Comando das ForƧas Terrestres'),
(101978, 'https://ror.org/04w5mvp04', 'it', 1, 'https://ror.org/04w5mvp04 Ospedale generale di zona San Camillo Treviso'),
(101979, 'https://ror.org/05mnb8680', 'de', 1, 'https://ror.org/05mnb8680 Deutscher EDV-Gerichtstag Deutscher EDV-Gerichtstag e.V.'),
(101980, 'https://ror.org/038a16f20', 'en', 1, 'https://ror.org/038a16f20 Mt. Cuba Astronomical Foundation'),
(101981, 'https://ror.org/03h86rm10', 'pt', 1, 'https://ror.org/03h86rm10 Centro de Estudos do Ambiente e do Mar'),
(101982, 'https://ror.org/044fynn32', 'en', 1, 'https://ror.org/044fynn32 Chinese Medical Association äø­åŽåŒ»å­¦ä¼šåæƒč”€ē®”ē—…å­¦åˆ†ä¼š'),
(101983, 'https://ror.org/04sa5es20', 'pt', 1, 'https://ror.org/04sa5es20 Centro de Investigação em Engenharia dos Processos Químicos e dos Produtos da Floresta'),
(101984, 'https://ror.org/0240tdq38', 'pt', 1, 'https://ror.org/0240tdq38 Centro de Apoio Tecnológico à Indústria Metalomecânica'),
(101985, 'https://ror.org/03h3w3289', 'de', 1, 'https://ror.org/03h3w3289 Deutscher Verein des Gas und Wasserfaches German Technical and Scientific Association for Gas and Water'),
(101986, 'https://ror.org/00rg6zq05', 'en', 1, 'https://ror.org/00rg6zq05 U.S. Army Research Institute of Environmental Medicine'),
(101987, 'https://ror.org/05hjyba86', 'nl', 1, 'https://ror.org/05hjyba86 Provincie Overijssel'),
(101988, 'https://ror.org/002t9r032', 'fr', 1, 'https://ror.org/002t9r032 CollĆØge international des sciences territoriales'),
(101989, 'https://ror.org/01232eg66', 'en', 1, 'https://ror.org/01232eg66 NOAA Global Monitoring Laboratory'),
(101990, 'https://ror.org/04k0tth05', 'en', 1, 'https://ror.org/04k0tth05 U.S. Air Force Test Center'),
(101991, 'https://ror.org/01nw5dz57', 'pt', 1, 'https://ror.org/01nw5dz57 Centro Hospitalar do MƩdio Ave EPE'),
(101992, 'https://ror.org/03faz3d81', 'pt', 1, 'https://ror.org/03faz3d81 Centro de Investigação de Montanha'),
(101993, 'https://ror.org/03ef3sy26', 'en', 1, 'https://ror.org/03ef3sy26 Academy of Public Administration under the President of the Republic of Kazakhstan ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при ŠŸŃ€ŠµŠ·ŠøŠ“енте Республики ŠšŠ°Š·Š°Ń…стан ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Ń–Š½Ń–Ņ£ жанынГағы ŠœŠµŠ¼Š»ŠµŠŗŠµŃ‚Ń‚Ń–Šŗ Š±Š°ŃŅ›Š°Ń€Ńƒ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(101994, 'https://ror.org/02zf1jv40', 'pt', 1, 'https://ror.org/02zf1jv40 Autoridade da ConcorrĆŖncia'),
(101995, 'https://ror.org/04ha6fg30', 'pt', 1, 'https://ror.org/04ha6fg30 Grupo de Ativistas em Tratamentos'),
(101996, 'https://ror.org/0297axj39', 'es', 1, 'https://ror.org/0297axj39 Cesar Vallejo University Universidad CƩsar Vallejo'),
(101997, 'https://ror.org/0225cs656', 'en', 1, 'https://ror.org/0225cs656 Thanh Dong University TrĘ°į»ng ĐẔi hį»c ThĆ nh ĐƓng'),
(101998, 'https://ror.org/02fcqqz87', 'en', 1, 'https://ror.org/02fcqqz87 State Biotechnological University Державний біотехнологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101999, 'https://ror.org/0081xr281', 'en', 1, 'https://ror.org/0081xr281 Nevada State University'),
(102000, 'https://ror.org/02q916a93', 'en', 1, 'https://ror.org/02q916a93 Japanese Society of Otorhinolaryngology-Head and Neck Surgery, Inc. (Japan) äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č€³é¼»å’½å–‰ē§‘é ­é øéƒØå¤–ē§‘å­¦ä¼š'),
(102001, 'https://ror.org/03r9jms12', 'en', 1, 'https://ror.org/03r9jms12 Consiliul National pentru Dezvoltare si Inovare National Council for Development and Innovation'),
(102002, 'https://ror.org/03qf6ek79', 'en', 1, 'https://ror.org/03qf6ek79 NCCR Catalysis'),
(102003, 'https://ror.org/04xpv6e64', 'pt', 1, 'https://ror.org/04xpv6e64 Centro de QuĆ­mica de Coimbra'),
(102004, 'https://ror.org/02rymmk58', 'en', 1, 'https://ror.org/02rymmk58 Nuvance Health'),
(102005, 'https://ror.org/02w101243', 'pt', 1, 'https://ror.org/02w101243 Guarda Nacional Republicana'),
(102006, 'https://ror.org/03w747513', 'no_lang_code', 1, 'https://ror.org/03w747513 Bluepoint (Romania)'),
(102007, 'https://ror.org/02ssfnt75', 'no_lang_code', 1, 'https://ror.org/02ssfnt75 Accent Pro 2000 (Romania)'),
(102008, 'https://ror.org/03pezec88', 'en', 1, 'https://ror.org/03pezec88 Pabna Medical College'),
(102009, 'https://ror.org/05496jt92', 'pt', 1, 'https://ror.org/05496jt92 Fundação Rebikoff-Niggeler'),
(102010, 'https://ror.org/023wr5s35', 'es', 1, 'https://ror.org/023wr5s35 Instituto Tecnológico de Nuevo Leon'),
(102011, 'https://ror.org/05jwwpn37', 'en', 1, 'https://ror.org/05jwwpn37 Guthrie Corning Hospital'),
(102012, 'https://ror.org/04yyzaa40', 'pt', 1, 'https://ror.org/04yyzaa40 Centro de Investigação em Economia e Gestão'),
(102013, 'https://ror.org/00r7nkg08', 'en', 1, 'https://ror.org/00r7nkg08 Brixsana Private Clinic'),
(102014, 'https://ror.org/05wctc146', 'id', 1, 'https://ror.org/05wctc146 Sekolah Tinggi Ilmu Kesehatan Medistra Indonesia'),
(102015, 'https://ror.org/039e52y06', 'no_lang_code', 1, 'https://ror.org/039e52y06 Industriplast (Norway)'),
(102016, 'https://ror.org/02gs16m83', 'lt', 1, 'https://ror.org/02gs16m83 Lietuvos Mokslo Taryba Research Council of Lithuania'),
(102017, 'https://ror.org/00bag6861', 'en', 1, 'https://ror.org/00bag6861 U.S. Air Force Research Laboratory Munitions Directorate'),
(102018, 'https://ror.org/04wdnn819', 'en', 1, 'https://ror.org/04wdnn819 Society of Motion Picture and Television Engineers'),
(102019, 'https://ror.org/00vzywk83', 'pt', 1, 'https://ror.org/00vzywk83 Museu de Cerâmica'),
(102020, 'https://ror.org/02zz1nj61', 'en', 1, 'https://ror.org/02zz1nj61 R Core Team'),
(102021, 'https://ror.org/004h7p317', 'pt', 1, 'https://ror.org/004h7p317 Ordem dos Psicólogos Portugueses'),
(102022, 'https://ror.org/014cbz578', 'nl', 1, 'https://ror.org/014cbz578 Provincie Gelderland'),
(102023, 'https://ror.org/02vkcx287', 'pt', 1, 'https://ror.org/02vkcx287 SOLFARCOS - Pharmaceutical and Cosmetic Solutions Ltd Solfarcos LDA (Portugal)'),
(102024, 'https://ror.org/01jrr7w21', 'fr', 1, 'https://ror.org/01jrr7w21 Montpellier Recherche en Management'),
(102025, 'https://ror.org/01jem9c82', 'es', 1, 'https://ror.org/01jem9c82 Andaluziako Junta Junta de AndalucĆ­a Regional Government of Andalusia'),
(102026, 'https://ror.org/04adarv34', 'de', 1, 'https://ror.org/04adarv34 Institut für digitale Gesundheitsdaten Rheinland-Pfalz'),
(102027, 'https://ror.org/05vn4sj02', 'en', 1, 'https://ror.org/05vn4sj02 Pravara Rural College of Pharmacy Pravaranagar'),
(102028, 'https://ror.org/00tjqcr17', 'en', 1, 'https://ror.org/00tjqcr17 The Japanese Psychological Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åæƒē†å­¦ä¼š'),
(102029, 'https://ror.org/05am9gt90', 'de', 1, 'https://ror.org/05am9gt90 Deutsche Rentenversicherung Bund'),
(102030, 'https://ror.org/02727gt60', 'no_lang_code', 1, 'https://ror.org/02727gt60 SolanoTech (Ireland)'),
(102031, 'https://ror.org/031w3kk19', 'en', 1, 'https://ror.org/031w3kk19 Music Library Association'),
(102032, 'https://ror.org/044feat76', 'fr', 1, 'https://ror.org/044feat76 SUMMIT'),
(102033, 'https://ror.org/0216g1929', 'no_lang_code', 1, 'https://ror.org/0216g1929 Innocoll (Ireland)'),
(102034, 'https://ror.org/02gmnxp82', 'en', 1, 'https://ror.org/02gmnxp82 The Japanese Society of Internal Medicine äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†…ē§‘å­¦ä¼š'),
(102035, 'https://ror.org/01mzbks65', 'en', 1, 'https://ror.org/01mzbks65 Institute for Information Technologies Kragujevac Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за информационе Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ˜Šµ ŠšŃ€Š°Š³ŃƒŃ˜ŠµŠ²Š°Ń†'),
(102036, 'https://ror.org/05f5sjd34', 'pt', 1, 'https://ror.org/05f5sjd34 Centro de Estudos e Investigação em Direito'),
(102037, 'https://ror.org/05k3cms83', 'en', 1, 'https://ror.org/05k3cms83 Sunni Endowment Diwan'),
(102038, 'https://ror.org/02jkz0640', 'tr', 1, 'https://ror.org/02jkz0640 Turkish Radio and Television Corporation Türkiye Radyo ve Televizyon Kurumu'),
(102039, 'https://ror.org/011gp7f64', 'es', 1, 'https://ror.org/011gp7f64 Hospital Zambrano Hellion'),
(102040, 'https://ror.org/0581yrz56', 'de', 1, 'https://ror.org/0581yrz56 Virtuelle Hochschule Bayern'),
(102041, 'https://ror.org/03mg4x680', 'pt', 1, 'https://ror.org/03mg4x680 Comissão do Mercado de Valores MobiliÔrios'),
(102042, 'https://ror.org/04hdmxt42', 'no_lang_code', 1, 'https://ror.org/04hdmxt42 Reuniwatt Reuniwatt (France) Reuniwatt SAS'),
(102043, 'https://ror.org/04y0ypp13', 'no_lang_code', 1, 'https://ror.org/04y0ypp13 ThyssenKrupp (Brazil)'),
(102044, 'https://ror.org/05kz0b889', 'de', 1, 'https://ror.org/05kz0b889 Michael Succow Stiftung zum Schutz der Natur'),
(102045, 'https://ror.org/015xhc487', 'pt', 1, 'https://ror.org/015xhc487 Instituto de Gestão e Administração Pública'),
(102046, 'https://ror.org/01rjnta51', 'en', 1, 'https://ror.org/01rjnta51 Centre for Human Genetics'),
(102047, 'https://ror.org/04gey2582', 'en', 1, 'https://ror.org/04gey2582 Japan Audiological Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č“č¦šåŒ»å­¦ä¼š'),
(102048, 'https://ror.org/01vsypp41', 'en', 1, 'https://ror.org/01vsypp41 Zymo Research Corporation Zymo Research Corporation (United States)'),
(102049, 'https://ror.org/0468z1z85', 'pt', 1, 'https://ror.org/0468z1z85 Observatório da Comunicação'),
(102050, 'https://ror.org/02eqy9808', 'en', 1, 'https://ror.org/02eqy9808 University of Hillah Ų¬Ų§Ł…Ų¹Ų© الحلة'),
(102051, 'https://ror.org/009nc9s30', 'no_lang_code', 1, 'https://ror.org/009nc9s30 MSD (Switzerland)'),
(102052, 'https://ror.org/04att9732', 'en', 1, 'https://ror.org/04att9732 Minnesota State University, Mankato UniversitĆ© d''Ɖtat du Minnesota'),
(102053, 'https://ror.org/04pjd0435', 'pt', 1, 'https://ror.org/04pjd0435 Centro de Estudos em Educação e Inovação'),
(102054, 'https://ror.org/014572h89', 'en', 1, 'https://ror.org/014572h89 Unnan City Hospital é›²å—åø‚ē«‹ē—…é™¢'),
(102055, 'https://ror.org/004ngv535', 'en', 1, 'https://ror.org/004ngv535 Sapporo Yamanoue Hospital åŒ»ē™‚ę³•äŗŗęœ­å¹Œå±±ć®äøŠē—…é™¢'),
(102056, 'https://ror.org/04a7t5284', 'en', 1, 'https://ror.org/04a7t5284 Japan Automobile Manufacturers Association, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»Šå·„ę„­ä¼š'),
(102057, 'https://ror.org/03prf0r66', 'en', 1, 'https://ror.org/03prf0r66 Tochigi Prefectural Government 栃木県庁'),
(102058, 'https://ror.org/04zx3vk32', 'en', 1, 'https://ror.org/04zx3vk32 IUCN World Commission on Environmental Law'),
(102059, 'https://ror.org/017s8ee04', 'en', 1, 'https://ror.org/017s8ee04 Kawasaki Saiwai Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ēŸ³åæƒä¼šå·å“Žå¹øē—…é™¢'),
(102060, 'https://ror.org/01mbjxe28', 'en', 1, 'https://ror.org/01mbjxe28 Japan Sabo Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ę²»ę°“ē ‚é˜²å”ä¼š'),
(102061, 'https://ror.org/03528cg63', 'en', 1, 'https://ror.org/03528cg63 Japan AeroSpace Technology Foundation äø€čˆ¬č²”å›£ę³•äŗŗčˆŖē©ŗå®‡å®™ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(102062, 'https://ror.org/05k9kcg68', 'en', 1, 'https://ror.org/05k9kcg68 Shizuoka Professional University of Agriculture é™å²”ēœŒē«‹č¾²ęž—ē’°å¢ƒå°‚é–€č·å¤§å­¦'),
(102063, 'https://ror.org/019yv5w19', 'en', 1, 'https://ror.org/019yv5w19 Japan Fisheries Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§ę—„ęœ¬ę°“ē”£ä¼š'),
(102064, 'https://ror.org/02st0pe74', 'en', 1, 'https://ror.org/02st0pe74 The Sasakawa Peace Foundation å…¬ē›Šč²”å›£ę³•äŗŗē¬¹å·å¹³å’Œč²”å›£'),
(102065, 'https://ror.org/01aqax545', 'es', 1, 'https://ror.org/01aqax545 Hospital Royo Villanova'),
(102066, 'https://ror.org/03psq8c32', 'en', 1, 'https://ror.org/03psq8c32 Iwaki City Medical Center ć„ć‚ćåø‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102067, 'https://ror.org/02rsmd323', 'en', 1, 'https://ror.org/02rsmd323 Koga Red Cross Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾å¤ę²³čµ¤åå­—ē—…é™¢'),
(102068, 'https://ror.org/04kfj2295', 'en', 1, 'https://ror.org/04kfj2295 Japan Marrow Donor Program å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éŖØé«„ćƒćƒ³ć‚Æ'),
(102069, 'https://ror.org/033zp8j66', 'en', 1, 'https://ror.org/033zp8j66 The Life Planning Center Foundation äø€čˆ¬č²”å›£ę³•äŗŗćƒ©ć‚¤ćƒ•ćƒ»ćƒ—ćƒ©ćƒ³ćƒ‹ćƒ³ć‚°ćƒ»ć‚»ćƒ³ć‚æćƒ¼'),
(102070, 'https://ror.org/03mkjjy25', 'fr', 1, 'https://ror.org/03mkjjy25 UniversitƩ de Versailles Saint-Quentin-en-Yvelines Versailles Saint-Quentin-en-Yvelines University'),
(102071, 'https://ror.org/02c9sby34', 'en', 1, 'https://ror.org/02c9sby34 Miyagi Prefecture Fisheries Technology Institute å®®åŸŽēœŒę°“ē”£ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(102072, 'https://ror.org/03g7eh380', 'en', 1, 'https://ror.org/03g7eh380 Bundesministerium der Verteidigung Federal Ministry of Defence Ministère Fédéral de la Défense'),
(102073, 'https://ror.org/00hyv6j94', 'en', 1, 'https://ror.org/00hyv6j94 Tochigi Prefectural Livestock & Dairy Experimental Center ę ƒęœØēœŒē•œē”£é…Ŗč¾²ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102074, 'https://ror.org/05cpcfk84', 'en', 1, 'https://ror.org/05cpcfk84 Hirosaki University of Health and Welfare å¼˜å‰åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(102075, 'https://ror.org/02nc1mn78', 'en', 1, 'https://ror.org/02nc1mn78 The Japanese Society of Nutrition and Dietetics ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ę „é¤Šę”¹å–„å­¦ä¼š'),
(102076, 'https://ror.org/01h30sx92', 'en', 1, 'https://ror.org/01h30sx92 The Society of Photography and Imaging of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†™ēœŸå­¦ä¼š'),
(102077, 'https://ror.org/01wp0c315', 'fr', 1, 'https://ror.org/01wp0c315 Ministère des Solidarités et de la Santé'),
(102078, 'https://ror.org/01e4yrb49', 'en', 1, 'https://ror.org/01e4yrb49 Mie Prefectural Government äø‰é‡ēœŒåŗ'),
(102079, 'https://ror.org/03s0kpb69', 'en', 1, 'https://ror.org/03s0kpb69 JR Sapporo Hospital JRęœ­å¹Œē—…é™¢'),
(102080, 'https://ror.org/05m7x5j55', 'en', 1, 'https://ror.org/05m7x5j55 Central Japan Industries äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­éƒØē”£ę„­é€£ē›Ÿ'),
(102081, 'https://ror.org/03n062t48', 'en', 1, 'https://ror.org/03n062t48 Gifu Prefectural Industrial Technology Center å²é˜œēœŒē”£ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(102082, 'https://ror.org/05exn8n22', 'en', 1, 'https://ror.org/05exn8n22 Association for Disaster Prevention Research äø€čˆ¬č²”å›£ę³•äŗŗé˜²ē½ē ”ē©¶å”ä¼š'),
(102083, 'https://ror.org/01psf3m26', 'en', 1, 'https://ror.org/01psf3m26 Robarts Research Institute'),
(102084, 'https://ror.org/00x53ay56', 'en', 1, 'https://ror.org/00x53ay56 Musashino Central Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·åˆä¼šę­¦č”µé‡Žäø­å¤®ē—…é™¢'),
(102085, 'https://ror.org/00ye6zh98', 'en', 1, 'https://ror.org/00ye6zh98 JAē§‹ē”°åŽšē”Ÿé€£åŒ—ē§‹ē”°åø‚ę°‘ē—…é™¢ Kita-akita Municipal Hospital'),
(102086, 'https://ror.org/017vz0682', 'en', 1, 'https://ror.org/017vz0682 IUCN Climate Crisis Commission'),
(102087, 'https://ror.org/04100x327', 'en', 1, 'https://ror.org/04100x327 Gifu Prefectural Agricultural Technology Center å²é˜œēœŒč¾²ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102088, 'https://ror.org/05rp22271', 'en', 1, 'https://ror.org/05rp22271 National Sanatorium Hoshizuka Keiaien å›½ē«‹ē™‚é¤Šę‰€ę˜Ÿå”šę•¬ę„›åœ’'),
(102089, 'https://ror.org/053yx7592', 'en', 1, 'https://ror.org/053yx7592 J A Kyosai Research Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗJAå…±ęøˆē·åˆē ”ē©¶ę‰€'),
(102090, 'https://ror.org/02dkjms65', 'en', 1, 'https://ror.org/02dkjms65 Daido Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå®ę½¤ä¼šå¤§åŒē—…é™¢'),
(102091, 'https://ror.org/00ex29c91', 'en', 1, 'https://ror.org/00ex29c91 Atago Hospital åŒ»ē™‚ę³•äŗŗę–°ę¾ē”°ä¼šę„›å®•ē—…é™¢'),
(102092, 'https://ror.org/05s7yq554', 'en', 1, 'https://ror.org/05s7yq554 Omiya Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§å®®åŒ»åø«ä¼š'),
(102093, 'https://ror.org/02be6w209', 'en', 1, 'https://ror.org/02be6w209 Rimska Univerza La Sapienza Sapienza University of Rome Sapienza – UniversitĆ  di Roma Universitat de Roma La Sapienza UniversitĆ© La Sapienza de Rome'),
(102094, 'https://ror.org/007g1vn56', 'en', 1, 'https://ror.org/007g1vn56 JAē§‹ē”°åŽšē”Ÿé€£ē”±åˆ©ēµ„åˆē·åˆē—…é™¢ Yuri Kumiai General Hospital'),
(102095, 'https://ror.org/0517ebj20', 'en', 1, 'https://ror.org/0517ebj20 ms consultants, inc.'),
(102096, 'https://ror.org/00c8w1e05', 'en', 1, 'https://ror.org/00c8w1e05 Yamanashi Prefectural Industrial Technology Center å±±ę¢ØēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102097, 'https://ror.org/05jtnqh09', 'en', 1, 'https://ror.org/05jtnqh09 Osaka Design Center äø€čˆ¬č²”å›£ę³•äŗŗå¤§é˜Ŗćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(102098, 'https://ror.org/058c33149', 'en', 1, 'https://ror.org/058c33149 Minamiosaka Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę™Æå²³ä¼šå—å¤§é˜Ŗē—…é™¢'),
(102099, 'https://ror.org/02nyr4y94', 'en', 1, 'https://ror.org/02nyr4y94 Ramaiah Institute of Technology'),
(102100, 'https://ror.org/00j20yy16', 'en', 1, 'https://ror.org/00j20yy16 Nuclear Safety Research Association å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›å®‰å…Øē ”ē©¶å”ä¼š'),
(102101, 'https://ror.org/03azf2g07', 'en', 1, 'https://ror.org/03azf2g07 Natural Hazards Research Australia'),
(102102, 'https://ror.org/03m8f5n28', 'en', 1, 'https://ror.org/03m8f5n28 Shonan Keiiku Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å„č‚²ä¼šę¹˜å—ę…¶č‚²ē—…é™¢'),
(102103, 'https://ror.org/022brxy17', 'en', 1, 'https://ror.org/022brxy17 Gifu International Center å…¬ē›Šč²”å›£ę³•äŗŗå²é˜œēœŒå›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(102104, 'https://ror.org/03hapbz02', 'en', 1, 'https://ror.org/03hapbz02 Electric Technology Research Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—å”åŒē ”ē©¶ä¼š'),
(102105, 'https://ror.org/03t2vee10', 'en', 1, 'https://ror.org/03t2vee10 Nagoya International Center å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(102106, 'https://ror.org/03t988a77', 'en', 1, 'https://ror.org/03t988a77 Japan Food Industry Center äø€čˆ¬č²”å›£ę³•äŗŗé£Ÿå“ē”£ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(102107, 'https://ror.org/03kb2zm15', 'en', 1, 'https://ror.org/03kb2zm15 Land Information Center äø€čˆ¬č²”å›£ę³•äŗŗåœŸåœ°ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(102108, 'https://ror.org/01np3cz56', 'en', 1, 'https://ror.org/01np3cz56 Tokyo Professional University of Health Sciences ę±äŗ¬äæå„åŒ»ē™‚å°‚é–€č·å¤§å­¦'),
(102109, 'https://ror.org/049y5v215', 'en', 1, 'https://ror.org/049y5v215 Mimihara General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒä»ä¼šč€³åŽŸē·åˆē—…é™¢'),
(102110, 'https://ror.org/04qpepa75', 'en', 1, 'https://ror.org/04qpepa75 Minami Seikyo Hospital å—åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆē·åˆē—…é™¢å—ē”Ÿå”ē—…é™¢'),
(102111, 'https://ror.org/01s7pfd33', 'en', 1, 'https://ror.org/01s7pfd33 Alfraganus Universiteti Alfraganus University'),
(102112, 'https://ror.org/03wvqgn13', 'en', 1, 'https://ror.org/03wvqgn13 Hiroshima Prefectural Government 広島県庁'),
(102113, 'https://ror.org/02d9tjn82', 'en', 1, 'https://ror.org/02d9tjn82 National Sanatorium Suruga å›½ē«‹é§æę²³ē™‚é¤Šę‰€'),
(102114, 'https://ror.org/00drqs466', 'en', 1, 'https://ror.org/00drqs466 Dinajpur Medical College দিনাজপুর মেঔিকেল ą¦•ą¦²ą§‡ą¦œ, দিনাজপুর'),
(102115, 'https://ror.org/04387x656', 'it', 1, 'https://ror.org/04387x656 University of Piemonte Orientale Amedeo Avogadro UniversitĆ  degli Studi del Piemonte Orientale ā€œAmedeo Avogadroā€'),
(102116, 'https://ror.org/052dn0m48', 'en', 1, 'https://ror.org/052dn0m48 Japanese Society of Tribologists äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒˆćƒ©ć‚¤ćƒœćƒ­ć‚øćƒ¼å­¦ä¼š'),
(102117, 'https://ror.org/013w2sr27', 'en', 1, 'https://ror.org/013w2sr27 Fukui General Hospital äø€čˆ¬č²”å›£ę³•äŗŗę–°ē”°å”šåŒ»ē™‚ē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼ē¦äŗ•ē·åˆē—…é™¢'),
(102118, 'https://ror.org/00hdh0747', 'en', 1, 'https://ror.org/00hdh0747 Northwest Pacific Region Environmental Cooperation Center å…¬ē›Šč²”å›£ę³•äŗŗē’°ę—„ęœ¬ęµ·ē’°å¢ƒå”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(102119, 'https://ror.org/0140wyg37', 'en', 1, 'https://ror.org/0140wyg37 KKR Takamatsu Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šKKRé«˜ę¾ē—…é™¢'),
(102120, 'https://ror.org/02fe00a81', 'en', 1, 'https://ror.org/02fe00a81 Environmental Management And Technology Center äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æē’°å¢ƒē®”ē†ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102121, 'https://ror.org/02ccw7t09', 'en', 1, 'https://ror.org/02ccw7t09 The Robotics Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ­ćƒœćƒƒćƒˆå­¦ä¼š'),
(102122, 'https://ror.org/03ndtc605', 'en', 1, 'https://ror.org/03ndtc605 Institute of Kampo Medicine äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę¼¢ę–¹åŒ»å­¦ē ”ē©¶ę‰€'),
(102123, 'https://ror.org/010dca812', 'en', 1, 'https://ror.org/010dca812 BibliothĆØque cantonale et universitaire – Lausanne Cantonal and University Library of Lausanne'),
(102124, 'https://ror.org/00pzcqk77', 'en', 1, 'https://ror.org/00pzcqk77 Asakura Medical Association Hospital äø€čˆ¬ē¤¾å›£ę³•äŗŗęœå€‰åŒ»åø«ä¼šęœå€‰åŒ»åø«ä¼šē—…é™¢'),
(102125, 'https://ror.org/02zzfq177', 'en', 1, 'https://ror.org/02zzfq177 The Japan Geriatrics Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č€å¹“åŒ»å­¦ä¼š'),
(102126, 'https://ror.org/036tnqa40', 'en', 1, 'https://ror.org/036tnqa40 Midocean University UniversitĆ© Midocean Ų¬Ų§Ł…Ų¹Ų© Ł…ŁŠŲÆŲ£ŁˆŲ“Ł†'),
(102127, 'https://ror.org/022471030', 'en', 1, 'https://ror.org/022471030 Hokkaido Development Association äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“é–‹ē™ŗå”ä¼š'),
(102128, 'https://ror.org/042p3sp68', 'en', 1, 'https://ror.org/042p3sp68 Niigata Prefecture Yoshida Hospital ę–°ę½ŸēœŒē«‹å‰ē”°ē—…é™¢'),
(102129, 'https://ror.org/0387g1t09', 'en', 1, 'https://ror.org/0387g1t09 Japan Institute of Navigation å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čˆŖęµ·å­¦ä¼š'),
(102130, 'https://ror.org/0545mcb72', 'en', 1, 'https://ror.org/0545mcb72 Miyagi Prefectural Institute of Agriculture and Horticulture å®®åŸŽēœŒč¾²ę„­ćƒ»åœ’čŠøē·åˆē ”ē©¶ę‰€'),
(102131, 'https://ror.org/03w0x6k04', 'en', 1, 'https://ror.org/03w0x6k04 Fujinomiya City General Hospital åÆŒå£«å®®åø‚ē«‹ē—…é™¢'),
(102132, 'https://ror.org/041zkgm14', 'en', 1, 'https://ror.org/041zkgm14 University of Ferrara UniversitƠ degli Studi di Ferrara UniversitƤt Ferrara UniversitƩ de ferrare'),
(102133, 'https://ror.org/05r92j264', 'en', 1, 'https://ror.org/05r92j264 The Society for Near Eastern Studies in Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚ŖćƒŖć‚Øćƒ³ćƒˆå­¦ä¼š'),
(102134, 'https://ror.org/00t134269', 'en', 1, 'https://ror.org/00t134269 Aichi Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗę„›ēŸ„ēœŒåŒ»åø«ä¼š'),
(102135, 'https://ror.org/04gf8db07', 'en', 1, 'https://ror.org/04gf8db07 Kochi Prefectural Livestock Experiment Station é«˜ēŸ„ēœŒē•œē”£č©¦éØ“å “'),
(102136, 'https://ror.org/01n71w067', 'en', 1, 'https://ror.org/01n71w067 Biwako Gakuin University Junior College ć³ć‚ć“å­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102137, 'https://ror.org/040r16a68', 'en', 1, 'https://ror.org/040r16a68 Construction Research Institute äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ē‰©ä¾”čŖæęŸ»ä¼š'),
(102138, 'https://ror.org/01tw4jt52', 'en', 1, 'https://ror.org/01tw4jt52 Newman College ą“Øąµą“Æąµ‚ą“®ą“¾ąµ» ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(102139, 'https://ror.org/027ynra39', 'en', 1, 'https://ror.org/027ynra39 University of Bari Aldo Moro UniversitƠ degli Studi di Bari Aldo Moro UniversitƩ de bari'),
(102140, 'https://ror.org/00t76qa96', 'en', 1, 'https://ror.org/00t76qa96 KIDS First äø€čˆ¬č²”å›£ę³•äŗŗć‚­ćƒƒć‚ŗćƒ•ć‚”ćƒ¼ć‚¹ćƒˆ'),
(102141, 'https://ror.org/02mdzkw21', 'en', 1, 'https://ror.org/02mdzkw21 Japan Association For Advancement Of PHYTO-REGULATORS å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©čŖæēÆ€å‰¤ē ”ē©¶å”ä¼š'),
(102142, 'https://ror.org/00ffm0v33', 'pt', 1, 'https://ror.org/00ffm0v33 Wiki Movement Brazil Wiki Movimento Brasil'),
(102143, 'https://ror.org/01szdrn56', 'en', 1, 'https://ror.org/01szdrn56 International Union for Conservation of Nature (Bangladesh)'),
(102144, 'https://ror.org/014zgm880', 'en', 1, 'https://ror.org/014zgm880 The Association for Preventive Medicine of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬äŗˆé˜²åŒ»å­¦å”ä¼š'),
(102145, 'https://ror.org/01sbek618', 'en', 1, 'https://ror.org/01sbek618 Yamagata Integrated Agricultural Research Center å±±å½¢ēœŒč¾²ę„­ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102146, 'https://ror.org/046wpeg62', 'en', 1, 'https://ror.org/046wpeg62 IUCN World Commission on Protected Areas'),
(102147, 'https://ror.org/059hgec16', 'en', 1, 'https://ror.org/059hgec16 Osaka Management Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗčƒ½ēŽ‡å”ä¼š'),
(102148, 'https://ror.org/00vmrsn64', 'en', 1, 'https://ror.org/00vmrsn64 Fujiyoshida Municipal Medical Center å›½ę°‘å„åŗ·äæé™ŗåÆŒå£«å‰ē”°åø‚ē«‹ē—…é™¢'),
(102149, 'https://ror.org/00396tw82', 'en', 1, 'https://ror.org/00396tw82 Kohsei Chuo General Hospital å…Øå›½åœŸęœØå»ŗēÆ‰å›½ę°‘å„åŗ·äæé™ŗēµ„åˆē·åˆē—…é™¢åŽšē”Ÿäø­å¤®ē—…é™¢'),
(102150, 'https://ror.org/016nnmm16', 'en', 1, 'https://ror.org/016nnmm16 Miyagi Prefectural Government å®®åŸŽēœŒåŗ'),
(102151, 'https://ror.org/04apbg334', 'en', 1, 'https://ror.org/04apbg334 Tsurugi Municipal Handa Hospital ć¤ć‚‹ćŽē”ŗē«‹åŠē”°ē—…é™¢'),
(102152, 'https://ror.org/05an9fc88', 'en', 1, 'https://ror.org/05an9fc88 Kyoto Prefectural International Center å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½åŗœå›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(102153, 'https://ror.org/021nndv84', 'en', 1, 'https://ror.org/021nndv84 Nagano Vegetable and Ornamental Crops Experiment Station é•·é‡ŽēœŒé‡ŽčœčŠ±ćč©¦éØ“å “'),
(102154, 'https://ror.org/03mwd2t56', 'en', 1, 'https://ror.org/03mwd2t56 Cardiovascular Hospital of Central Japan åŒ—é–¢ę±å¾Ŗē’°å™Øē—…é™¢'),
(102155, 'https://ror.org/02srmp066', 'en', 1, 'https://ror.org/02srmp066 Suzuki Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚¹ć‚ŗć‚­č²”å›£'),
(102156, 'https://ror.org/0567bnk35', 'en', 1, 'https://ror.org/0567bnk35 Kumamoto Regional Medical Center ē†Šęœ¬åø‚åŒ»åø«ä¼šē†Šęœ¬åœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102157, 'https://ror.org/00q3c5d02', 'pt', 1, 'https://ror.org/00q3c5d02 Universidade Paulista Campinas'),
(102158, 'https://ror.org/00hm1dp75', 'en', 1, 'https://ror.org/00hm1dp75 Japan Meteorological Business Support Center äø€čˆ¬č²”å›£ę³•äŗŗę°—č±”ę„­å‹™ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(102159, 'https://ror.org/02tqf3106', 'en', 1, 'https://ror.org/02tqf3106 Nishichita General Hospital å…¬ē«‹č„æēŸ„å¤šē·åˆē—…é™¢'),
(102160, 'https://ror.org/009wnjh50', 'it', 1, 'https://ror.org/009wnjh50 Istituto Nazionale di Fisica Nucleare, Sezione di Roma Tre National Institute for Nuclear Physics, Roma Tre Division'),
(102161, 'https://ror.org/02ws0hm40', 'en', 1, 'https://ror.org/02ws0hm40 Telecom Engineering Center äø€čˆ¬č²”å›£ę³•äŗŗćƒ†ćƒ¬ć‚³ćƒ ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ć‚»ćƒ³ć‚æćƒ¼'),
(102162, 'https://ror.org/01v6gqa59', 'en', 1, 'https://ror.org/01v6gqa59 Shaheed Zulfiqar Ali Bhutto Medical University, Islamabad ؓہید Ų°ŁˆŲ§Ł„ŁŁ‚Ų§Ų± Ų¹Ł„ŪŒ بھٹو Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒŲŒ اسلام Ų¢ŲØŲ§ŲÆ'),
(102163, 'https://ror.org/01vqn8764', 'en', 1, 'https://ror.org/01vqn8764 Saitama Health Promotion å…¬ē›Šč²”å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒå„åŗ·ć„ćć‚Šäŗ‹ę„­å›£'),
(102164, 'https://ror.org/0001k0954', 'en', 1, 'https://ror.org/0001k0954 All Japan Labor Welfare Foundation äø€čˆ¬č²”å›£ę³•äŗŗå…Øę—„ęœ¬åŠ“åƒē¦ē„‰å”ä¼š'),
(102165, 'https://ror.org/02h8ntn95', 'en', 1, 'https://ror.org/02h8ntn95 Fukuoka Wajiro Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ę± å‹ä¼šē¦å²”å’Œē™½ē—…é™¢'),
(102166, 'https://ror.org/03jekm885', 'en', 1, 'https://ror.org/03jekm885 Hokkaido Nuclear Energy Environmental Research Center åŒ—ęµ·é“åŽŸå­åŠ›ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(102167, 'https://ror.org/026k08163', 'en', 1, 'https://ror.org/026k08163 Eisei Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę°øē”Ÿä¼šę°øē”Ÿē—…é™¢'),
(102168, 'https://ror.org/041v96n47', 'fr', 0, 'https://ror.org/041v96n47 Centre hospitalier de l''UniversitƩ Laval'),
(102169, 'https://ror.org/04z4ygh26', 'en', 1, 'https://ror.org/04z4ygh26 Iwate Prefectural Kuji Hospital å²©ę‰‹ēœŒē«‹ä¹…ę…ˆē—…é™¢'),
(102170, 'https://ror.org/03fmqsk78', 'en', 1, 'https://ror.org/03fmqsk78 Trinity Health Grand Rapids'),
(102171, 'https://ror.org/050wdfq62', 'en', 1, 'https://ror.org/050wdfq62 THE Nippon Agricultural Research Institute å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č¾²ę„­ē ”ē©¶ę‰€'),
(102172, 'https://ror.org/025ys5y27', 'en', 1, 'https://ror.org/025ys5y27 Japan Health Promotion and Fitness Foundation å…¬ē›Šč²”å›£ę³•äŗŗå„åŗ·ćƒ»ä½“åŠ›ć„ćć‚Šäŗ‹ę„­č²”å›£'),
(102173, 'https://ror.org/02p3rmf37', 'en', 1, 'https://ror.org/02p3rmf37 Toyota Yahagi River Institute č±Šē”°åø‚ēŸ¢ä½œå·ē ”ē©¶ę‰€'),
(102174, 'https://ror.org/0305wnm79', 'en', 1, 'https://ror.org/0305wnm79 Kanagawa Prefectural Government ē„žå„ˆå·ēœŒåŗ'),
(102175, 'https://ror.org/006ffkc02', 'en', 1, 'https://ror.org/006ffkc02 Tottori Municipal Hospital é³„å–åø‚ē«‹ē—…é™¢'),
(102176, 'https://ror.org/028mk3t27', 'en', 1, 'https://ror.org/028mk3t27 Science and Technology Promotion Foundation of Ibaraki äø€čˆ¬č²”å›£ę³•äŗŗčŒØåŸŽēœŒē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(102177, 'https://ror.org/01gyv0x79', 'en', 1, 'https://ror.org/01gyv0x79 Gifu Prefectural Research Institute for Health and Environmental Sciences å²é˜œēœŒäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(102178, 'https://ror.org/04fn0fc92', 'en', 1, 'https://ror.org/04fn0fc92 Tsukiji Neurological Clinic åŒ»ē™‚ę³•äŗŗē¤¾å›£é«˜ęµä¼šēÆ‰åœ°ē„žēµŒē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(102179, 'https://ror.org/020v13m88', 'pt', 1, 'https://ror.org/020v13m88 Universidade Paulista'),
(102180, 'https://ror.org/007wxbw11', 'en', 1, 'https://ror.org/007wxbw11 The Dia Foundation for Research on Ageing Societies å…¬ē›Šč²”å›£ę³•äŗŗćƒ€ć‚¤ćƒ¤é«˜é½¢ē¤¾ä¼šē ”ē©¶č²”å›£'),
(102181, 'https://ror.org/03bdrf724', 'en', 1, 'https://ror.org/03bdrf724 Shimane Prefectural Mountainous Regions Research Center å³¶ę ¹ēœŒäø­å±±é–“åœ°åŸŸē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102182, 'https://ror.org/032k1g572', 'en', 1, 'https://ror.org/032k1g572 Akita Research Center for Public Health and Environment ē§‹ē”°ēœŒå„åŗ·ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(102183, 'https://ror.org/0359kqn13', 'en', 1, 'https://ror.org/0359kqn13 Japan Environmental Management Association for Industry äø€čˆ¬ē¤¾å›£ę³•äŗŗē”£ę„­ē’°å¢ƒē®”ē†å”ä¼š'),
(102184, 'https://ror.org/0244vtq08', 'en', 1, 'https://ror.org/0244vtq08 Shizuoka Prefectural Research Institute of Fishery é™å²”ēœŒę°“ē”£ćƒ»ęµ·ę“‹ęŠ€č”“ē ”ē©¶ę‰€'),
(102185, 'https://ror.org/035n4wk95', 'en', 1, 'https://ror.org/035n4wk95 Kyoto Prefectural Government 京都府庁'),
(102186, 'https://ror.org/042qg8e60', 'en', 1, 'https://ror.org/042qg8e60 Atsugi City Hospital åŽšęœØåø‚ē«‹ē—…é™¢'),
(102187, 'https://ror.org/03myv4x23', 'en', 1, 'https://ror.org/03myv4x23 Kumamoto Prefectural Fisheries Research Center ē†Šęœ¬ēœŒę°“ē”£ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102188, 'https://ror.org/01jty7g66', 'en', 1, 'https://ror.org/01jty7g66 Deutsches Zentrum für integrative Biodiversitätsforschung German Centre for Integrative Biodiversity Research'),
(102189, 'https://ror.org/03s63xr43', 'en', 1, 'https://ror.org/03s63xr43 Japan Pharmaceutical Information Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åŒ»č–¬ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(102190, 'https://ror.org/04tq97318', 'en', 1, 'https://ror.org/04tq97318 Society of Environmental Science, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗē’°å¢ƒē§‘å­¦ä¼š'),
(102191, 'https://ror.org/02g5mge27', 'en', 1, 'https://ror.org/02g5mge27 Nishiwaki Municipal Hospital 脿脇市立脿脇病院'),
(102192, 'https://ror.org/02czxf571', 'en', 1, 'https://ror.org/02czxf571 Fisheries Infrastructure Development Center äø€čˆ¬ē¤¾å›£ę³•äŗŗę°“ē”£åœŸęœØå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102193, 'https://ror.org/00hc8av43', 'en', 1, 'https://ror.org/00hc8av43 Japan Space Systems äø€čˆ¬č²”å›£ę³•äŗŗå®‡å®™ć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗåˆ©ē”ØęŽØé€²ę©Ÿę§‹'),
(102194, 'https://ror.org/0264f4e78', 'en', 1, 'https://ror.org/0264f4e78 Institute of Local Finance äø€čˆ¬č²”å›£ę³•äŗŗåœ°ę–¹č²”å‹™å”ä¼š'),
(102195, 'https://ror.org/0339vwz86', 'en', 1, 'https://ror.org/0339vwz86 Tsukuba International Junior College ć¤ćć°å›½éš›ēŸ­ęœŸå¤§å­¦'),
(102196, 'https://ror.org/00nmbr691', 'en', 1, 'https://ror.org/00nmbr691 Japan Inspection Association of Food and Food Industry Environment äø€čˆ¬č²”å›£ę³•äŗŗé£Ÿå“ē’°å¢ƒę¤œęŸ»å”ä¼š'),
(102197, 'https://ror.org/0399pg384', 'en', 1, 'https://ror.org/0399pg384 Tokushima Prefectural Industrial Technology Center å¾³å³¶ēœŒē«‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102198, 'https://ror.org/01w4jxn67', 'en', 1, 'https://ror.org/01w4jxn67 Howard University Hospital'),
(102199, 'https://ror.org/01hgyd665', 'en', 1, 'https://ror.org/01hgyd665 Manicaland State University of Applied Sciences'),
(102200, 'https://ror.org/003109y17', 'en', 1, 'https://ror.org/003109y17 University of Cagliari UniversitƠ degli Studi di Cagliari UniversitƩ de Cagliari'),
(102201, 'https://ror.org/04n9sp567', 'no_lang_code', 1, 'https://ror.org/04n9sp567 Biwako Gakuin University ć³ć‚ć“å­¦é™¢å¤§å­¦'),
(102202, 'https://ror.org/0306zjp26', 'en', 1, 'https://ror.org/0306zjp26 Tamakyuryo Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å¹øéš†ä¼šå¤šę‘©äø˜é™µē—…é™¢'),
(102203, 'https://ror.org/05s76re36', 'en', 1, 'https://ror.org/05s76re36 The Illuminating Engineering Institute of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗē…§ę˜Žå­¦ä¼š'),
(102204, 'https://ror.org/059kpn068', 'en', 1, 'https://ror.org/059kpn068 Policy Research Institute for Land Infrastructure and Transport å›½åœŸäŗ¤é€šēœå›½åœŸäŗ¤é€šę”æē­–ē ”ē©¶ę‰€'),
(102205, 'https://ror.org/02sygzf32', 'en', 1, 'https://ror.org/02sygzf32 Hokkaido Center Of Environmental Sciences & Technology äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“ē’°å¢ƒē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102206, 'https://ror.org/02t989p36', 'en', 1, 'https://ror.org/02t989p36 Chihaya Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šåƒę—©ē—…é™¢'),
(102207, 'https://ror.org/00cq1sr42', 'en', 1, 'https://ror.org/00cq1sr42 Food and Agricultural Materials Inspection Center ē‹¬ē«‹č”Œę”æę³•äŗŗč¾²ęž—ę°“ē”£ę¶ˆč²»å®‰å…ØęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102208, 'https://ror.org/01jn5wy42', 'en', 1, 'https://ror.org/01jn5wy42 Brest State A.S. Pushkin University Брестский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š”. Пушкина Š‘Ń€ŃŃŃ†ŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń А. Š”. ŠŸŃƒŃˆŠŗŃ–Š½Š°'),
(102209, 'https://ror.org/018bw0k35', 'en', 1, 'https://ror.org/018bw0k35 Sasebo Chuo Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ē™½åå­—ä¼šä½äø–äæäø­å¤®ē—…é™¢'),
(102210, 'https://ror.org/01e6xrt80', 'en', 1, 'https://ror.org/01e6xrt80 Japanese Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēœ‹č­·å”ä¼š'),
(102211, 'https://ror.org/04awywg66', 'en', 1, 'https://ror.org/04awywg66 Hyogo Emergency Medical Center å…µåŗ«ēœŒē½å®³åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102212, 'https://ror.org/01z2bgb86', 'en', 1, 'https://ror.org/01z2bgb86 Reproduction Clinic Osaka ćƒŖćƒ—ćƒ­ćƒ€ć‚Æć‚·ćƒ§ćƒ³ć‚ÆćƒŖćƒ‹ćƒƒć‚Æå¤§é˜Ŗ'),
(102213, 'https://ror.org/006pvs224', 'en', 1, 'https://ror.org/006pvs224 Hirosaki University of Health and Welfare Junior College å¼˜å‰åŒ»ē™‚ē¦ē„‰å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102214, 'https://ror.org/03hb9hm67', 'en', 1, 'https://ror.org/03hb9hm67 The Holstein Cattle Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ›ćƒ«ć‚¹ć‚æć‚¤ćƒ³ē™»éŒ²å”ä¼š'),
(102215, 'https://ror.org/02mn5bt07', 'en', 1, 'https://ror.org/02mn5bt07 Shimonoseki Junior College äø‹é–¢ēŸ­ęœŸå¤§å­¦'),
(102216, 'https://ror.org/05epddd96', 'en', 1, 'https://ror.org/05epddd96 House of Councillors, the National Diet of Japan å‚č­°é™¢'),
(102217, 'https://ror.org/013hc2j39', 'en', 1, 'https://ror.org/013hc2j39 Aldakin Aldakin S.L. Aldakin S.L. (Spain)'),
(102218, 'https://ror.org/055bn7729', 'en', 1, 'https://ror.org/055bn7729 Hiroshima City Industrial Technology Center åŗƒå³¶åø‚å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102219, 'https://ror.org/02ta2q948', 'en', 1, 'https://ror.org/02ta2q948 The Society of Materials Science, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęę–™å­¦ä¼š'),
(102220, 'https://ror.org/04v67fd63', 'en', 1, 'https://ror.org/04v67fd63 Tsudanuma Central General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę„›å‹ä¼šę“„ē”°ę²¼äø­å¤®ē·åˆē—…é™¢'),
(102221, 'https://ror.org/02tzt1z19', 'en', 1, 'https://ror.org/02tzt1z19 The Institute of Electrical Engineers of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—å­¦ä¼š'),
(102222, 'https://ror.org/02qjrjx09', 'en', 1, 'https://ror.org/02qjrjx09 University of Cyprus Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(102223, 'https://ror.org/016f98811', 'en', 1, 'https://ror.org/016f98811 St. Catherine Junior College č–ć‚«ć‚æćƒŖćƒŠå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102224, 'https://ror.org/02zpmxf06', 'en', 1, 'https://ror.org/02zpmxf06 Medical Information System Development Center äø€čˆ¬č²”å›£ę³•äŗŗåŒ»ē™‚ęƒ…å ±ć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(102225, 'https://ror.org/0414v5413', 'en', 1, 'https://ror.org/0414v5413 The Hyogo Institute of Assistive Technology å…µåŗ«ēœŒē«‹ē¦ē„‰ć®ć¾ć”ć„ćć‚Šē ”ē©¶ę‰€'),
(102226, 'https://ror.org/05gqaka33', 'en', 1, 'https://ror.org/05gqaka33 Martin Luther University Halle-Wittenberg Martin-Luther-UniversitƤt Halle-Wittenberg'),
(102227, 'https://ror.org/00x27da85', 'en', 1, 'https://ror.org/00x27da85 University of Perugia UniversitƠ degli Studi di Perugia UniversitƤt Perugia UniversitƩ de pƩrouse'),
(102228, 'https://ror.org/04bpbcc82', 'en', 1, 'https://ror.org/04bpbcc82 Japan Weathering Test Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¦ć‚Øć‚¶ćƒŖćƒ³ć‚°ćƒ†ć‚¹ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(102229, 'https://ror.org/01rgz7g32', 'en', 1, 'https://ror.org/01rgz7g32 Institute for Agriculture, Medicine, and the Environment å…¬ē›Šč²”å›£ę³•äŗŗč¾²ę„­ćƒ»ē’°å¢ƒćƒ»å„åŗ·ē ”ē©¶ę‰€'),
(102230, 'https://ror.org/05cd29s30', 'en', 1, 'https://ror.org/05cd29s30 Gifu Prefectural Government 岐阜県庁'),
(102231, 'https://ror.org/01xegsd60', 'en', 1, 'https://ror.org/01xegsd60 Oyokyo Kidney Research Institute å…¬ē›Šč²”å›£ę³•äŗŗé·¹ęšéƒ·č…Žē ”ē©¶ę‰€'),
(102232, 'https://ror.org/03kedtk42', 'en', 1, 'https://ror.org/03kedtk42 JIPDEC äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęƒ…å ±ēµŒęøˆē¤¾ä¼šęŽØé€²å”ä¼š'),
(102233, 'https://ror.org/038z6xg73', 'en', 1, 'https://ror.org/038z6xg73 Kiryu Kosei General Hospital ę”ē”ŸåŽšē”Ÿē·åˆē—…é™¢'),
(102234, 'https://ror.org/05qxhp197', 'en', 1, 'https://ror.org/05qxhp197 The Japanese Respiratory Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å‘¼åøå™Øå­¦ä¼š'),
(102235, 'https://ror.org/01p5z3v19', 'en', 1, 'https://ror.org/01p5z3v19 Japan Consulting Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ©ćƒ³ćƒˆå”ä¼š'),
(102236, 'https://ror.org/016kdhy07', 'en', 1, 'https://ror.org/016kdhy07 Nishinihon Hospital åŒ»ē™‚ę³•äŗŗč²”å›£č–åå­—ä¼šč„æę—„ęœ¬ē—…é™¢'),
(102237, 'https://ror.org/04wb7ez66', 'en', 1, 'https://ror.org/04wb7ez66 KKR Hokuriku Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šåŒ—é™øē—…é™¢'),
(102238, 'https://ror.org/00c5pmp34', 'en', 1, 'https://ror.org/00c5pmp34 Shinjo Ophthalmologic Institute åŒ»ē™‚ę³•äŗŗč²”å›£ć‚·ćƒ­ć‚¢ćƒ ä¼šę–°åŸŽēœ¼ē§‘åŒ»é™¢'),
(102239, 'https://ror.org/03cgzzr66', 'en', 1, 'https://ror.org/03cgzzr66 Minamisoma Municipal General Hospital å—ē›øé¦¬åø‚ē«‹ē·åˆē—…é™¢'),
(102240, 'https://ror.org/056zesk73', 'en', 1, 'https://ror.org/056zesk73 Tottori Prefectural Government é³„å–ēœŒåŗ'),
(102241, 'https://ror.org/04kz5f756', 'en', 1, 'https://ror.org/04kz5f756 Tohoku Institute for Management of Blood Pressure äø€čˆ¬ē¤¾å›£ę³•äŗŗę±åŒ—č”€åœ§ē®”ē†å”ä¼š'),
(102242, 'https://ror.org/02je4dt23', 'en', 1, 'https://ror.org/02je4dt23 Hyogo Prefectural Harima-Himeji General Medical Center å…µåŗ«ēœŒē«‹ćÆć‚Šć¾å§«č·Æē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102243, 'https://ror.org/00vc3qb55', 'en', 1, 'https://ror.org/00vc3qb55 Japan Power Engineering and Inspection Corporation äø€čˆ¬č²”å›£ę³•äŗŗē™ŗé›»čØ­å‚™ęŠ€č”“ę¤œęŸ»å”ä¼š'),
(102244, 'https://ror.org/00cfbfw05', 'en', 1, 'https://ror.org/00cfbfw05 Ibaraki Kasumigaura Environmental Science Center čŒØåŸŽēœŒéœžć‚±ęµ¦ē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(102245, 'https://ror.org/04xqm0b91', 'en', 1, 'https://ror.org/04xqm0b91 Professional College of Arts and Tourism čŠøč”“ę–‡åŒ–č¦³å…‰å°‚é–€č·å¤§å­¦'),
(102246, 'https://ror.org/02v9z1h82', 'en', 1, 'https://ror.org/02v9z1h82 Manufacturing Technology Association of Biologics ę¬”äø–ä»£ćƒć‚¤ć‚ŖåŒ»č–¬å“č£½é€ ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(102247, 'https://ror.org/01z8nwq27', 'en', 1, 'https://ror.org/01z8nwq27 Chugoku Regional Research Center å…¬ē›Šē¤¾å›£ę³•äŗŗäø­å›½åœ°ę–¹ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102248, 'https://ror.org/0037bkn51', 'en', 1, 'https://ror.org/0037bkn51 Sanyo Gakuen Junior College å±±é™½å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(102249, 'https://ror.org/041pxbv16', 'en', 1, 'https://ror.org/041pxbv16 Ushiku Aiwa General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£åøøä»ä¼šē‰›ä¹…ę„›å’Œē·åˆē—…é™¢'),
(102250, 'https://ror.org/040mpqc50', 'en', 1, 'https://ror.org/040mpqc50 Japan Foods Inspection Corporation äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ę¤œęŸ»'),
(102251, 'https://ror.org/01esb9c72', 'en', 1, 'https://ror.org/01esb9c72 Sugita Genpaku Memorial Obama Municipal Hospital ę‰ē”°ēŽ„ē™½čØ˜åæµå…¬ē«‹å°ęµœē—…é™¢'),
(102252, 'https://ror.org/04v440f32', 'en', 1, 'https://ror.org/04v440f32 Konan Medical Center å…¬ē›Šč²”å›£ę³•äŗŗē”²å—ä¼šē”²å—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102253, 'https://ror.org/00vjwyg07', 'en', 1, 'https://ror.org/00vjwyg07 Kinjo College é‡‘åŸŽå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102254, 'https://ror.org/007ag2e14', 'en', 1, 'https://ror.org/007ag2e14 Fujieda Heisei Memorial Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å¹³ęˆä¼šč—¤ęžå¹³ęˆčØ˜åæµē—…é™¢'),
(102255, 'https://ror.org/04h9pf148', 'en', 1, 'https://ror.org/04h9pf148 Okayama Prefectural Institute for Environmental Science and Public Health å²”å±±ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(102256, 'https://ror.org/05jvtxd47', 'en', 1, 'https://ror.org/05jvtxd47 Ehime Prefectural Government ę„›åŖ›ēœŒåŗ'),
(102257, 'https://ror.org/02nf82x34', 'en', 1, 'https://ror.org/02nf82x34 Kagoshima Prefectural Institute for Environmental Research and Public Health é¹æå…å³¶ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(102258, 'https://ror.org/00bxtx484', 'en', 1, 'https://ror.org/00bxtx484 Akita Prefectural Livestock Experiment Station ē§‹ē”°ēœŒē•œē”£č©¦éØ“å “'),
(102259, 'https://ror.org/052pz1t61', 'en', 1, 'https://ror.org/052pz1t61 Chiba Prefectural Environmental Research Center åƒč‘‰ēœŒē’°å¢ƒē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102260, 'https://ror.org/006s4cj68', 'en', 1, 'https://ror.org/006s4cj68 Industrial Technology Innovation Center of Ibaraki Prefecture čŒØåŸŽēœŒē”£ę„­ęŠ€č”“ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(102261, 'https://ror.org/05n9ybf95', 'en', 1, 'https://ror.org/05n9ybf95 Japan Livestock Technology Association å…¬ē›Šē¤¾å›£ę³•äŗŗē•œē”£ęŠ€č”“å”ä¼š'),
(102262, 'https://ror.org/050wvyk52', 'en', 1, 'https://ror.org/050wvyk52 Matsusaka City Hospital ę¾é˜Ŗåø‚ę°‘ē—…é™¢'),
(102263, 'https://ror.org/02btnf645', 'en', 1, 'https://ror.org/02btnf645 Kusatsu General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗčŖ å…‰ä¼šč‰ę“„ē·åˆē—…é™¢'),
(102264, 'https://ror.org/04rjn2z79', 'en', 1, 'https://ror.org/04rjn2z79 Sanjo City University äø‰ę”åø‚ē«‹å¤§å­¦'),
(102265, 'https://ror.org/01e08v038', 'en', 1, 'https://ror.org/01e08v038 Yawatahama City General Hospital åø‚ē«‹å…«å¹”ęµœē·åˆē—…é™¢'),
(102266, 'https://ror.org/03aphgr60', 'en', 1, 'https://ror.org/03aphgr60 Radioactive and Decommissioning Center å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›ćƒćƒƒć‚Æć‚Øćƒ³ćƒ‰ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(102267, 'https://ror.org/05vf68943', 'en', 1, 'https://ror.org/05vf68943 Niigata Seiryo WOMEN''S Junior College ę–°ę½Ÿé’é™µå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102268, 'https://ror.org/03gvvw626', 'en', 1, 'https://ror.org/03gvvw626 Association of Radio Industries and Businesses äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę³¢ē”£ę„­ä¼š'),
(102269, 'https://ror.org/04gmpq477', 'en', 1, 'https://ror.org/04gmpq477 Saga Tea Research Laboratory ä½č³€ēœŒčŒ¶ę„­č©¦éØ“å “'),
(102270, 'https://ror.org/04nng3n69', 'en', 1, 'https://ror.org/04nng3n69 Asahi General Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē·åˆē—…é™¢å›½äæę—­äø­å¤®ē—…é™¢ ē·åˆē—…é™¢å›½äæę—­äø­å¤®ē—…é™¢'),
(102271, 'https://ror.org/01vwq9032', 'en', 1, 'https://ror.org/01vwq9032 Tanaka Growth Clinic ćŸćŖć‹ęˆé•·ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(102272, 'https://ror.org/01zsf5a90', 'en', 1, 'https://ror.org/01zsf5a90 Tango Central Hospital å…¬ē›Šč²”å›£ę³•äŗŗäø¹å¾Œäø­å¤®ē—…é™¢'),
(102273, 'https://ror.org/04c292595', 'en', 1, 'https://ror.org/04c292595 Japan Municipal Hospital Association å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č‡Ŗę²»ä½“ē—…é™¢å”č­°ä¼š'),
(102274, 'https://ror.org/02dwjbw48', 'en', 1, 'https://ror.org/02dwjbw48 Osaka Heavy Ion Therapy Center å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗå›½éš›ćŒć‚“ę²»ē™‚č²”å›£å¤§é˜Ŗé‡ē²’å­ē·šć‚»ćƒ³ć‚æćƒ¼'),
(102275, 'https://ror.org/05bpgjr24', 'en', 0, 'https://ror.org/05bpgjr24 Rissho Kosei-kai Hospital ē«‹ę­£ä½¼ęˆä¼šé™„å±žä½¼ęˆē—…é™¢'),
(102276, 'https://ror.org/03fc1k060', 'en', 1, 'https://ror.org/03fc1k060 University of Salento UniversitƠ degli Studi di Lecce UniversitƤt Salento UniversitƩ du salento'),
(102277, 'https://ror.org/048jm0g87', 'en', 1, 'https://ror.org/048jm0g87 PRO Natura Foundation Japan å…¬ē›Šč²”å›£ę³•äŗŗč‡Ŗē„¶äæč­·åŠ©ęˆåŸŗé‡‘'),
(102278, 'https://ror.org/00c7s9h48', 'en', 1, 'https://ror.org/00c7s9h48 Kyoto Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗ¬éƒ½åŗœåŒ»åø«ä¼š'),
(102279, 'https://ror.org/00b3mwd12', 'en', 1, 'https://ror.org/00b3mwd12 Yamaguchi Prefectural Government å±±å£ēœŒåŗ'),
(102280, 'https://ror.org/037y9hb39', 'fr', 1, 'https://ror.org/037y9hb39 Centre d''Investigation Clinique - Innovation Technologique de Garches'),
(102281, 'https://ror.org/05t2w7768', 'en', 1, 'https://ror.org/05t2w7768 R Professional University Of Rehabilitation ć‚¢ćƒ¼ćƒ«åŒ»ē™‚å°‚é–€č·å¤§å­¦'),
(102282, 'https://ror.org/04aqrg319', 'en', 1, 'https://ror.org/04aqrg319 Japan Industrial Waste Management Foundation å…¬ē›Šč²”å›£ę³•äŗŗē”£ę„­å»ƒę£„ē‰©å‡¦ē†äŗ‹ę„­ęŒÆčˆˆč²”å›£'),
(102283, 'https://ror.org/030gskw66', 'en', 1, 'https://ror.org/030gskw66 Tsuruoka Municipal Shonai Hospital é¶“å²”åø‚ē«‹č˜å†…ē—…é™¢'),
(102284, 'https://ror.org/017mh6638', 'en', 1, 'https://ror.org/017mh6638 Akita City Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåø‚ē«‹ē§‹ē”°ē·åˆē—…é™¢'),
(102285, 'https://ror.org/04t9wmk29', 'no_lang_code', 1, 'https://ror.org/04t9wmk29 Okayama Gakuin University 岔山学院大学'),
(102286, 'https://ror.org/02j1mt797', 'en', 1, 'https://ror.org/02j1mt797 Yokosuka General Hospital Uwamachi ęØŖé ˆč³€åø‚ē«‹ć†ć‚ć¾ć”ē—…é™¢'),
(102287, 'https://ror.org/01j392911', 'en', 1, 'https://ror.org/01j392911 Kido Hospital ę–°ę½ŸåŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆęœØęˆøē—…é™¢'),
(102288, 'https://ror.org/05wthsp76', 'en', 1, 'https://ror.org/05wthsp76 Policy Study Group äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›ēµŒęøˆę”æē­–čŖæęŸ»ä¼š'),
(102289, 'https://ror.org/02t4mp811', 'en', 1, 'https://ror.org/02t4mp811 Japan Bioindustry Association äø€čˆ¬č²”å›£ę³•äŗŗćƒć‚¤ć‚Ŗć‚¤ćƒ³ćƒ€ć‚¹ćƒˆćƒŖćƒ¼å”ä¼š'),
(102290, 'https://ror.org/03bsybc69', 'en', 1, 'https://ror.org/03bsybc69 Mie Prefectural Shima Hospital äø‰é‡ēœŒē«‹åæ—ę‘©ē—…é™¢'),
(102291, 'https://ror.org/00qq6h941', 'en', 1, 'https://ror.org/00qq6h941 St. Andrew''s University of Education ę”ƒå±±å­¦é™¢ę•™č‚²å¤§å­¦'),
(102292, 'https://ror.org/02q2vrq41', 'en', 1, 'https://ror.org/02q2vrq41 LU Matemātikas un informātikas institūts UL Institute of Mathematics and Computer Science'),
(102293, 'https://ror.org/04pzmmv39', 'en', 1, 'https://ror.org/04pzmmv39 WSL Institut pour l''étude de la neige et des avalanches SLF WSL Institute for Snow and Avalanche Research SLF WSL Istituto per lo studio della neve e delle valanghe SLF WSL-Institut für Schnee-und Lawinenforschung SLF'),
(102294, 'https://ror.org/00vbp6334', 'en', 1, 'https://ror.org/00vbp6334 Tokyo Bay Rehabilitation Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£äæå„ä¼šę±äŗ¬ę¹¾å²øćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢');
INSERT INTO `rors` VALUES
(102295, 'https://ror.org/027sfg181', 'en', 1, 'https://ror.org/027sfg181 Hokkaido Regional Research äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ćƒŖćƒ¼ć‚øćƒ§ćƒŠćƒ«ćƒŖć‚µćƒ¼ćƒ'),
(102296, 'https://ror.org/03jzxwd55', 'en', 1, 'https://ror.org/03jzxwd55 Japan Institute of Marine Engineering å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒžćƒŖćƒ³ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°å­¦ä¼š'),
(102297, 'https://ror.org/00k0q6e68', 'en', 1, 'https://ror.org/00k0q6e68 Institute for Building Environment and Energy Conservation äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰ē’°å¢ƒćƒ»ēœć‚Øćƒćƒ«ć‚®ćƒ¼ę©Ÿę§‹'),
(102298, 'https://ror.org/05wd4m765', 'en', 1, 'https://ror.org/05wd4m765 Osaka Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜ŖåŗœåŒ»åø«ä¼š'),
(102299, 'https://ror.org/03fdbez45', 'en', 1, 'https://ror.org/03fdbez45 Kyoto Industrial Association å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½å·„ę„­ä¼š'),
(102300, 'https://ror.org/00n1gz317', 'en', 1, 'https://ror.org/00n1gz317 Tokyo Kasei Junior College ę±äŗ¬å®¶ę”æå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102301, 'https://ror.org/02d2yy683', 'en', 1, 'https://ror.org/02d2yy683 Research Institute for Local Government äø€čˆ¬č²”å›£ę³•äŗŗåœ°ę–¹č‡Ŗę²»ē ”ē©¶ę©Ÿę§‹'),
(102302, 'https://ror.org/036vh1t90', 'en', 1, 'https://ror.org/036vh1t90 Chigasaki Municipal Hospital čŒ…ćƒ¶å“Žåø‚ē«‹ē—…é™¢'),
(102303, 'https://ror.org/045v44z74', 'en', 1, 'https://ror.org/045v44z74 Ibaraki Prefectural Medical Center of Psychiatry čŒØåŸŽēœŒē«‹ć“ć“ć‚ć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102304, 'https://ror.org/03zsqw120', 'en', 1, 'https://ror.org/03zsqw120 Higashisumiyoshi Morimoto Hospital åŒ»ē™‚ę³•äŗŗę©˜ä¼šę±ä½å‰ę£®ęœ¬ē—…é™¢'),
(102305, 'https://ror.org/05dbskv62', 'en', 1, 'https://ror.org/05dbskv62 PL Hospital åŒ»ē™‚ę³•äŗŗå®ē”Ÿä¼šPL病院'),
(102306, 'https://ror.org/03558c952', 'en', 1, 'https://ror.org/03558c952 Botanic Gardens of Toyama åÆŒå±±ēœŒäø­å¤®ę¤ē‰©åœ’'),
(102307, 'https://ror.org/04mmhnh95', 'en', 1, 'https://ror.org/04mmhnh95 Quantum Science and Technology in Arcetri'),
(102308, 'https://ror.org/02bm3x632', 'en', 1, 'https://ror.org/02bm3x632 AKO City Hospital 赤穂市民病院'),
(102309, 'https://ror.org/03s7b3g60', 'en', 1, 'https://ror.org/03s7b3g60 Cryogenics and Superconductivity Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗä½Žęø©å·„å­¦ćƒ»č¶…é›»å°Žå­¦ä¼š'),
(102310, 'https://ror.org/04bghay88', 'en', 1, 'https://ror.org/04bghay88 Shiga Prefectural Fishery Experiment Station ę»‹č³€ēœŒę°“ē”£č©¦éØ“å “'),
(102311, 'https://ror.org/03gthnr76', 'en', 1, 'https://ror.org/03gthnr76 Fukuoka Fisheries and Marine Technology Research Center ē¦å²”ēœŒę°“ē”£ęµ·ę“‹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102312, 'https://ror.org/02gtc5h12', 'en', 1, 'https://ror.org/02gtc5h12 Japan Medical Women''s Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å„³åŒ»ä¼š'),
(102313, 'https://ror.org/04m2ke783', 'de', 1, 'https://ror.org/04m2ke783 Foundation for Innovation in Higher Education Stiftung Innovation in der Hochschullehre'),
(102314, 'https://ror.org/05c0k5d98', 'en', 1, 'https://ror.org/05c0k5d98 Danish Cardiovascular Academy'),
(102315, 'https://ror.org/055h12990', 'en', 1, 'https://ror.org/055h12990 Ube Frontier College å®‡éƒØćƒ•ćƒ­ćƒ³ćƒ†ć‚£ć‚¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102316, 'https://ror.org/02hht4t25', 'en', 1, 'https://ror.org/02hht4t25 Urban Innovation Institute å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚ę“»åŠ›ē ”ē©¶ę‰€'),
(102317, 'https://ror.org/00tecsr44', 'en', 1, 'https://ror.org/00tecsr44 Gunma Industry Support Organization å…¬ē›Šč²”å›£ę³•äŗŗē¾¤é¦¬ēœŒē”£ę„­ę”Æę“ę©Ÿę§‹'),
(102318, 'https://ror.org/04250ya65', 'en', 1, 'https://ror.org/04250ya65 Sodegaura Satsukidai Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē¤¾å›£ć•ć¤ćä¼šč¢–ć‚±ęµ¦ć•ć¤ćå°ē—…é™¢'),
(102319, 'https://ror.org/03v84dj52', 'en', 1, 'https://ror.org/03v84dj52 Kawakita General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę²³åŒ—åŒ»ē™‚č²”å›£ę²³åŒ—ē·åˆē—…é™¢'),
(102320, 'https://ror.org/05bt52s63', 'en', 1, 'https://ror.org/05bt52s63 Fukui Science Education Academy NPOę³•äŗŗćµćć„ē§‘å­¦å­¦åœ’'),
(102321, 'https://ror.org/00x3jzn88', 'en', 1, 'https://ror.org/00x3jzn88 Japan Institute of Energy äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Øćƒćƒ«ć‚®ćƒ¼å­¦ä¼š'),
(102322, 'https://ror.org/00hnc9t77', 'en', 1, 'https://ror.org/00hnc9t77 Kunduz University ŲÆ کندز Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† دانؓگاه_Ł‚Ł†ŲÆŁˆŲ²'),
(102323, 'https://ror.org/002wgkd29', 'en', 1, 'https://ror.org/002wgkd29 Association for Health Economics Research and Social Insurance and Welfare äø€čˆ¬č²”å›£ę³•äŗŗåŒ»ē™‚ēµŒęøˆē ”ē©¶ćƒ»ē¤¾ä¼šäæé™ŗē¦ē„‰å”ä¼š'),
(102324, 'https://ror.org/01kvvc641', 'en', 1, 'https://ror.org/01kvvc641 Avicenna Medical College ابن Ų³ŪŒŁ†Ų§ Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(102325, 'https://ror.org/051124b05', 'en', 1, 'https://ror.org/051124b05 Iwate Prefectural Isawa Hospital å²©ę‰‹ēœŒē«‹čƒ†ę²¢ē—…é™¢'),
(102326, 'https://ror.org/03fbas882', 'en', 1, 'https://ror.org/03fbas882 Japan Industrial Location Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē«‹åœ°ć‚»ćƒ³ć‚æćƒ¼'),
(102327, 'https://ror.org/059r6em50', 'en', 1, 'https://ror.org/059r6em50 Gihu Prefecture Research Institute for Human Life Technology å²é˜œēœŒē”Ÿę“»ęŠ€č”“ē ”ē©¶ę‰€'),
(102328, 'https://ror.org/03q6zg452', 'en', 1, 'https://ror.org/03q6zg452 Obihiro First Hospital å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“åŒ»ē™‚å›£åøÆåŗƒē¬¬äø€ē—…é™¢'),
(102329, 'https://ror.org/00z87de70', 'en', 1, 'https://ror.org/00z87de70 Omihachiman Community Medical Center čæ‘ę±Ÿå…«å¹”åø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102330, 'https://ror.org/01f8dzj77', 'en', 1, 'https://ror.org/01f8dzj77 Kuwana City Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę”‘ååø‚ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102331, 'https://ror.org/059r0wf81', 'en', 1, 'https://ror.org/059r0wf81 Aidu Chuo Hospital äø€čˆ¬č²”å›£ę³•äŗŗęø©ēŸ„ä¼šä¼šę“„äø­å¤®ē—…é™¢'),
(102332, 'https://ror.org/03d1edh55', 'en', 1, 'https://ror.org/03d1edh55 Kasukabe Medical Center ę˜„ę—„éƒØåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102333, 'https://ror.org/02tqzbq72', 'en', 1, 'https://ror.org/02tqzbq72 Saitama Cooperative Hospital åŒ»ē™‚ē”Ÿå”ć•ć„ćŸć¾ē”Ÿę“»å”åŒēµ„åˆåŸ¼ēŽ‰å”åŒē—…é™¢'),
(102334, 'https://ror.org/03fmts619', 'en', 1, 'https://ror.org/03fmts619 International Economy and Work Research Institute å…¬ē›Šē¤¾å›£ę³•äŗŗå›½éš›ēµŒęøˆåŠ“åƒē ”ē©¶ę‰€'),
(102335, 'https://ror.org/01p29af69', 'en', 1, 'https://ror.org/01p29af69 Yokohama Women''s Junior College 横浜儳子短期大学'),
(102336, 'https://ror.org/0213h2a91', 'en', 1, 'https://ror.org/0213h2a91 Ohda Municipal Hospital 大田市立病院'),
(102337, 'https://ror.org/030vsyx86', 'en', 1, 'https://ror.org/030vsyx86 Tsukazaki Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗäø‰ę „ä¼šćƒ„ć‚«ć‚¶ć‚­ē—…é™¢'),
(102338, 'https://ror.org/04gvrc423', 'en', 1, 'https://ror.org/04gvrc423 Okitama Public General Hospital å…¬ē«‹ē½®č³œē·åˆē—…é™¢'),
(102339, 'https://ror.org/02mn89d43', 'en', 1, 'https://ror.org/02mn89d43 Nishio Municipal Hospital 脿尾市民病院'),
(102340, 'https://ror.org/05227xs87', 'en', 1, 'https://ror.org/05227xs87 Tagawa Hospital äø€čˆ¬č²”å›£ę³•äŗŗē¦å²”ēœŒē¤¾ä¼šäæé™ŗåŒ»ē™‚å”ä¼šē¤¾ä¼šäæé™ŗē”°å·ē—…é™¢'),
(102341, 'https://ror.org/02p1gpn45', 'fr', 0, 'https://ror.org/02p1gpn45 HƓpital de l''Enfant-JƩsus'),
(102342, 'https://ror.org/02bjreh63', 'en', 1, 'https://ror.org/02bjreh63 Munakata Suikokai General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę°“å…‰ä¼šå®—åƒę°“å…‰ä¼šē·åˆē—…é™¢'),
(102343, 'https://ror.org/00dxbgs74', 'fr', 1, 'https://ror.org/00dxbgs74 Centre de MathƩmatiques AppliquƩes - CMA Centre for Applied Mathematics - CMA Mines Paris, PSL University, Centre for Applied Mathematics (CMA) Mines Paris, UniversitƩ PSL, Centre de MathƩmatiques AppliquƩes (CMA)'),
(102344, 'https://ror.org/032xjn982', 'en', 1, 'https://ror.org/032xjn982 Kyoto Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½äø­å°ä¼ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(102345, 'https://ror.org/005hx4g64', 'en', 1, 'https://ror.org/005hx4g64 The Salt Industry Center of Japan å…¬ē›Šč²”å›£ę³•äŗŗå”©äŗ‹ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(102346, 'https://ror.org/04nhgac81', 'en', 1, 'https://ror.org/04nhgac81 Jissen Women''s Junior College 実践儳子大学短期大学部'),
(102347, 'https://ror.org/00zbywh04', 'en', 1, 'https://ror.org/00zbywh04 Kyoto Kizugawa Hospital åŒ»ē™‚ę³•äŗŗå•“äæ”ä¼šäŗ¬éƒ½ćć„å·ē—…é™¢'),
(102348, 'https://ror.org/0444ptj69', 'en', 1, 'https://ror.org/0444ptj69 Gunma Prefectural Police 群馬県警察'),
(102349, 'https://ror.org/02p77k626', 'en', 1, 'https://ror.org/02p77k626 University of Rome Tor Vergata UniversitĆ  degli Studi di Roma Tor Vergata'),
(102350, 'https://ror.org/03ygpv007', 'en', 1, 'https://ror.org/03ygpv007 Otakanomori Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é«˜ä¼šćŠćŠćŸć‹ć®ę£®ē—…é™¢'),
(102351, 'https://ror.org/04hbvjm68', 'en', 1, 'https://ror.org/04hbvjm68 Nagoya City Public Health Research Institute åå¤å±‹åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(102352, 'https://ror.org/05kkv3f82', 'de', 1, 'https://ror.org/05kkv3f82 University of the Bundeswehr Munich Universität der Bundeswehr München'),
(102353, 'https://ror.org/00d57gd44', 'en', 1, 'https://ror.org/00d57gd44 Fujimoto General Hospital äø€čˆ¬ē¤¾å›£ę³•äŗŗč—¤å…ƒćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚·ć‚¹ćƒ†ćƒ č—¤å…ƒē·åˆē—…é™¢'),
(102354, 'https://ror.org/05kqjmn09', 'en', 1, 'https://ror.org/05kqjmn09 Fort Hays Tech North Central'),
(102355, 'https://ror.org/03ggkx359', 'en', 1, 'https://ror.org/03ggkx359 Gunma Prefectural Government 群馬県庁'),
(102356, 'https://ror.org/02m6br644', 'en', 1, 'https://ror.org/02m6br644 Osaka Gyoumeikan Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗå¤§é˜Ŗęšę˜Žé¤Øå¤§é˜Ŗęšę˜Žé¤Øē—…é™¢'),
(102357, 'https://ror.org/04f8q4539', 'en', 1, 'https://ror.org/04f8q4539 Toyama College of Welfare Science åÆŒå±±ē¦ē„‰ēŸ­ęœŸå¤§å­¦'),
(102358, 'https://ror.org/0104w5s79', 'en', 1, 'https://ror.org/0104w5s79 Kimitsu Chuo Hospital å›½äæē›“å–¶ē·åˆē—…é™¢å›ę“„äø­å¤®ē—…é™¢'),
(102359, 'https://ror.org/00tzybz48', 'en', 1, 'https://ror.org/00tzybz48 Japan Child and Family Research Institute ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęÆå­ę„›č‚²ä¼šę—„ęœ¬å­ć©ć‚‚å®¶åŗ­ē·åˆē ”ē©¶ę‰€'),
(102360, 'https://ror.org/03thcgz97', 'en', 1, 'https://ror.org/03thcgz97 Shonai Amarume Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å±±å½¢ę„›åæƒä¼šåŗ„å†…ä½™ē›®ē—…é™¢'),
(102361, 'https://ror.org/017ryfk58', 'en', 1, 'https://ror.org/017ryfk58 Iwate University of Health and Medical Sciences å²©ę‰‹äæå„åŒ»ē™‚å¤§å­¦'),
(102362, 'https://ror.org/05s7zab55', 'en', 1, 'https://ror.org/05s7zab55 Tottori College of Nursing é³„å–ēœ‹č­·å¤§å­¦'),
(102363, 'https://ror.org/039rqan90', 'en', 1, 'https://ror.org/039rqan90 Architectural Research Association äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰ē ”ē©¶å”ä¼š'),
(102364, 'https://ror.org/04hba3q82', 'en', 1, 'https://ror.org/04hba3q82 JAé¦™å·åŽšē”Ÿé€£å±‹å³¶ē·åˆē—…é™¢ Yashima General hospital'),
(102365, 'https://ror.org/00b296q39', 'en', 1, 'https://ror.org/00b296q39 Kochi Prefectural Freshwater Fisheries Center é«˜ēŸ„ēœŒå†…ę°“é¢ę¼ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(102366, 'https://ror.org/015d1gt07', 'en', 1, 'https://ror.org/015d1gt07 Japan Quality Assurance Organization äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å“č³ŖäæčØ¼ę©Ÿę§‹'),
(102367, 'https://ror.org/05etvh706', 'en', 1, 'https://ror.org/05etvh706 Kuwait International Law School ŁƒŁ„ŁŠŲ© Ų§Ł„Ł‚Ų§Ł†ŁˆŁ† Ų§Ł„ŁƒŁˆŁŠŲŖŁŠŲ© Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(102368, 'https://ror.org/00edv6x70', 'en', 1, 'https://ror.org/00edv6x70 International Union for Conservation of Nature (United States)'),
(102369, 'https://ror.org/00atkzx31', 'en', 1, 'https://ror.org/00atkzx31 Fukushima Agricultural Technology Centre ē¦å³¶ēœŒč¾²ę„­ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(102370, 'https://ror.org/02j2vw786', 'en', 1, 'https://ror.org/02j2vw786 Hiroshima Bunka Gakuen Two-Year College åŗƒå³¶ę–‡åŒ–å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(102371, 'https://ror.org/01grym831', 'en', 1, 'https://ror.org/01grym831 Shikoku University, Junior College å››å›½å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102372, 'https://ror.org/04bs5yc70', 'en', 1, 'https://ror.org/04bs5yc70 Eidgenössische Forschungsanstalt für Wald, Schnee und Landschaft Institut Fédéral de Recherches sur la Forêt, la Neige et le Paysage Istituto Federale di Ricerca per la Foresta, la Neve e il Paesaggio Swiss Federal Institute for Forest, Snow and Landscape Research'),
(102373, 'https://ror.org/01m1cpf62', 'en', 1, 'https://ror.org/01m1cpf62 SENSCIENCE'),
(102374, 'https://ror.org/00qrf6g60', 'it', 1, 'https://ror.org/00qrf6g60 Istituto Nazionale di Fisica Nucleare, Sezione di Lecce National Institute for Nuclear Physics, Lecce Section'),
(102375, 'https://ror.org/053290d43', 'en', 1, 'https://ror.org/053290d43 The Japanese Society of Gastroenterology äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę¶ˆåŒ–å™Øē—…å­¦ä¼š'),
(102376, 'https://ror.org/03rh1a838', 'en', 1, 'https://ror.org/03rh1a838 Fukui Industrial Support Center å…¬ē›Šč²”å›£ę³•äŗŗćµćć„ē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(102377, 'https://ror.org/04m9r4v66', 'en', 1, 'https://ror.org/04m9r4v66 Masuda Medical Association Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗē›Šē”°åø‚åŒ»åø«ä¼šē«‹ē›Šē”°åœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼åŒ»åø«ä¼šē—…é™¢'),
(102378, 'https://ror.org/00bfc1p59', 'pt', 1, 'https://ror.org/00bfc1p59 Centro de Investigação em Artes e Comunicação'),
(102379, 'https://ror.org/03nc4h531', 'en', 1, 'https://ror.org/03nc4h531 National Printing Bureau ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹å°åˆ·å±€'),
(102380, 'https://ror.org/02g7vqw33', 'en', 1, 'https://ror.org/02g7vqw33 Japan Association for Real Estate Sciences å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äøå‹•ē”£å­¦ä¼š'),
(102381, 'https://ror.org/033r5zc58', 'en', 1, 'https://ror.org/033r5zc58 JAå²é˜œåŽšē”Ÿé€£ä¹…ē¾Žę„›åŽšē”Ÿē—…é™¢ Kumiai Kousei Hospital'),
(102382, 'https://ror.org/04m8av638', 'en', 1, 'https://ror.org/04m8av638 ByteDance ByteDance (China)'),
(102383, 'https://ror.org/04p1hmw66', 'en', 1, 'https://ror.org/04p1hmw66 Meijibashi Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåž£č°·ä¼šę˜Žę²»ę©‹ē—…é™¢'),
(102384, 'https://ror.org/01dxv6p09', 'en', 1, 'https://ror.org/01dxv6p09 Japan Water Research Center å…¬ē›Šč²”å›£ę³•äŗŗę°“é“ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102385, 'https://ror.org/031bmh670', 'en', 1, 'https://ror.org/031bmh670 Chiba Prefectural Fisheries Research Center åƒč‘‰ēœŒę°“ē”£ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102386, 'https://ror.org/00zays289', 'en', 1, 'https://ror.org/00zays289 Nexus Institute of Research and Innovation (NIRI)'),
(102387, 'https://ror.org/05a04tz09', 'en', 1, 'https://ror.org/05a04tz09 Tottori Prefectural Police é³„å–ēœŒč­¦åÆŸ'),
(102388, 'https://ror.org/052kp6r10', 'en', 1, 'https://ror.org/052kp6r10 Saka General Hospital å…¬ē›Šč²”å›£ę³•äŗŗå®®åŸŽåŽšē”Ÿå”ä¼šå‚ē·åˆē—…é™¢'),
(102389, 'https://ror.org/023tvfz15', 'en', 1, 'https://ror.org/023tvfz15 National Sanatorium Oku-Komyoen å›½ē«‹ē™‚é¤Šę‰€é‚‘ä¹…å…‰ę˜Žåœ’'),
(102390, 'https://ror.org/031sr5j33', 'en', 1, 'https://ror.org/031sr5j33 Mie Prefecture Industrial Research Institute äø‰é‡ēœŒå·„ę„­ē ”ē©¶ę‰€'),
(102391, 'https://ror.org/05jysaq31', 'en', 1, 'https://ror.org/05jysaq31 Debra'),
(102392, 'https://ror.org/009t4th85', 'en', 1, 'https://ror.org/009t4th85 The Institute For Zen Studies å…¬ē›Šč²”å›£ę³•äŗŗē¦…ę–‡åŒ–ē ”ē©¶ę‰€'),
(102393, 'https://ror.org/00qrcbh63', 'en', 1, 'https://ror.org/00qrcbh63 Mie Prefectural General Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗäø‰é‡ēœŒē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102394, 'https://ror.org/02z2bfb91', 'en', 1, 'https://ror.org/02z2bfb91 Asahino General Hospital åŒ»ē™‚ę³•äŗŗęœę—„é‡Žä¼šęœę—„é‡Žē·åˆē—…é™¢'),
(102395, 'https://ror.org/01cpt0h14', 'en', 1, 'https://ror.org/01cpt0h14 The Japanese Association for Infectious Diseases äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę„ŸęŸ“ē—‡å­¦ä¼š'),
(102396, 'https://ror.org/035hv2v80', 'fr', 1, 'https://ror.org/035hv2v80 Observatoire des sciences de l''univers de l''UniversitƩ Versailles Saint-Quentin Universe Sciences Observatory of University Versailles Saint-Quentin'),
(102397, 'https://ror.org/033n9gh91', 'de', 1, 'https://ror.org/033n9gh91 Carl von Ossietzky University of Oldenburg Carl von Ossietzky UniversitƤt Oldenburg'),
(102398, 'https://ror.org/03rh0ye08', 'en', 1, 'https://ror.org/03rh0ye08 Fukui Prefectural General Green Center ē¦äŗ•ēœŒē·åˆć‚°ćƒŖćƒ¼ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(102399, 'https://ror.org/04sbmhc14', 'en', 1, 'https://ror.org/04sbmhc14 Nagasaki Agriculture and Forestry Technical Development Center é•·å“ŽēœŒč¾²ęž—ęŠ€č”“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(102400, 'https://ror.org/00c3rvj09', 'en', 1, 'https://ror.org/00c3rvj09 Nagasaki Prefectural Police é•·å“ŽēœŒč­¦åÆŸ'),
(102401, 'https://ror.org/02n9c6w39', 'en', 1, 'https://ror.org/02n9c6w39 Hyogo Health Service Association å…¬ē›Šč²”å›£ę³•äŗŗå…µåŗ«ēœŒäŗˆé˜²åŒ»å­¦å”ä¼š'),
(102402, 'https://ror.org/0175rgg14', 'en', 1, 'https://ror.org/0175rgg14 Sakura General Hospital åŒ»ē™‚ę³•äŗŗåŒ»ä»ä¼šć•ćć‚‰ē·åˆē—…é™¢'),
(102403, 'https://ror.org/02mpa7586', 'en', 1, 'https://ror.org/02mpa7586 Yamanashi Gakuin Junior College å±±ę¢Øå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(102404, 'https://ror.org/00fg4wc36', 'en', 1, 'https://ror.org/00fg4wc36 Shimane Prefectural Government 島根県庁'),
(102405, 'https://ror.org/05j05sz90', 'en', 1, 'https://ror.org/05j05sz90 Omuta City Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§ē‰Ÿē”°åø‚ē«‹ē—…é™¢'),
(102406, 'https://ror.org/0274bkc50', 'en', 1, 'https://ror.org/0274bkc50 Toho Gakuen College of Drama and Music ę”ęœ‹å­¦åœ’čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(102407, 'https://ror.org/0126h8t90', 'en', 1, 'https://ror.org/0126h8t90 Union of Japanese Scientists and Engineers äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦ęŠ€č”“é€£ē›Ÿ'),
(102408, 'https://ror.org/00kw8nz94', 'en', 1, 'https://ror.org/00kw8nz94 SANKO Research Institute å…¬ē›Šč²”å›£ę³•äŗŗäø‰åŗ·ę–‡åŒ–ē ”ē©¶ę‰€'),
(102409, 'https://ror.org/05mf8aw81', 'en', 1, 'https://ror.org/05mf8aw81 Research Institute for Animal Science in Biochemistry and Toxicology äø€čˆ¬č²”å›£ę³•äŗŗē”Ÿē‰©ē§‘å­¦å®‰å…Øē ”ē©¶ę‰€'),
(102410, 'https://ror.org/015y5ng21', 'en', 1, 'https://ror.org/015y5ng21 Ehime Prefectural International Center å…¬ē›Šč²”å›£ę³•äŗŗę„›åŖ›ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(102411, 'https://ror.org/01j5j6632', 'en', 1, 'https://ror.org/01j5j6632 Industrial Research Center of Shiga Prefecture ę»‹č³€ēœŒå·„ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(102412, 'https://ror.org/017ew4470', 'en', 1, 'https://ror.org/017ew4470 Kumamoto Kenhoku Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗćć¾ć‚‚ćØēœŒåŒ—ē—…é™¢'),
(102413, 'https://ror.org/04t3v6492', 'en', 1, 'https://ror.org/04t3v6492 Kyoto Kujo Hospital åŒ»ē™‚ę³•äŗŗåŒä»ä¼šäŗ¬éƒ½ä¹ę”ē—…é™¢'),
(102414, 'https://ror.org/05pbevm62', 'en', 1, 'https://ror.org/05pbevm62 Aichi Prefectural Forestry Research Institute ę„›ēŸ„ēœŒę£®ęž—ćƒ»ęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102415, 'https://ror.org/04k6amx66', 'en', 1, 'https://ror.org/04k6amx66 Yamagata Prefectural Government 山形県庁'),
(102416, 'https://ror.org/01188dy18', 'en', 1, 'https://ror.org/01188dy18 Tochigi Prefectural Museum ę ƒęœØēœŒē«‹åšē‰©é¤Ø'),
(102417, 'https://ror.org/02g61vs33', 'en', 1, 'https://ror.org/02g61vs33 Incorporated Foundation Okinawa Prefecture Environment Science Center äø€čˆ¬č²”å›£ę³•äŗŗę²–ēø„ēœŒē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(102418, 'https://ror.org/04wwtb809', 'en', 1, 'https://ror.org/04wwtb809 Ichinomiyanishi Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęå¶ŗä¼šäø€å®®č„æē—…é™¢'),
(102419, 'https://ror.org/01py0xw12', 'en', 1, 'https://ror.org/01py0xw12 Keidanren äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒęøˆå›£ä½“é€£åˆä¼š'),
(102420, 'https://ror.org/00ee9rw54', 'en', 1, 'https://ror.org/00ee9rw54 The Society of Non-Traditional Technology äø€čˆ¬ē¤¾å›£ę³•äŗŗęœŖčøē§‘å­¦ęŠ€č”“å”ä¼š'),
(102421, 'https://ror.org/04j27n830', 'en', 1, 'https://ror.org/04j27n830 Snow Research Center å…¬ē›Šē¤¾å›£ę³•äŗŗé›Ŗć‚»ćƒ³ć‚æćƒ¼'),
(102422, 'https://ror.org/04cb5cb57', 'en', 1, 'https://ror.org/04cb5cb57 Yamaguchi Prefectural Institute of Public Health and Environment å±±å£ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(102423, 'https://ror.org/01am20874', 'en', 1, 'https://ror.org/01am20874 Osaka Industrial Design Center å¤§é˜Ŗåŗœē”£ę„­ćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(102424, 'https://ror.org/02jx8ck11', 'en', 1, 'https://ror.org/02jx8ck11 Viral Hepatitis Research Foundation of Japan å…¬ē›Šč²”å›£ę³•äŗŗć‚¦ć‚¤ćƒ«ć‚¹č‚ē‚Žē ”ē©¶č²”å›£'),
(102425, 'https://ror.org/04g926778', 'en', 1, 'https://ror.org/04g926778 Wakayama Prefectural Government å’Œę­Œå±±ēœŒåŗ'),
(102426, 'https://ror.org/01qw7w969', 'en', 1, 'https://ror.org/01qw7w969 Gyoda General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå£®å¹øä¼šč”Œē”°ē·åˆē—…é™¢'),
(102427, 'https://ror.org/00brrcj79', 'en', 1, 'https://ror.org/00brrcj79 Nagano Animal Industry Experiment Station é•·é‡ŽēœŒē•œē”£č©¦éØ“å “'),
(102428, 'https://ror.org/05wkg1r24', 'en', 1, 'https://ror.org/05wkg1r24 Yamaguchi Prefectural Fisheries Research Center å±±å£ēœŒę°“ē”£ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102429, 'https://ror.org/047mtdf33', 'en', 1, 'https://ror.org/047mtdf33 Agency for Natural Resources and Energy č³‡ęŗć‚Øćƒćƒ«ć‚®ćƒ¼åŗ'),
(102430, 'https://ror.org/01pq2gy67', 'en', 1, 'https://ror.org/01pq2gy67 Kumagaya General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē†Šč°·ē·åˆē—…é™¢'),
(102431, 'https://ror.org/05rmqsa52', 'en', 1, 'https://ror.org/05rmqsa52 Japan Institute of Information Technology å…¬ē›Šē¤¾å›£ę³•äŗŗä¼ę„­ęƒ…å ±åŒ–å”ä¼š'),
(102432, 'https://ror.org/01a7rqj69', 'en', 1, 'https://ror.org/01a7rqj69 Archaeological Information System of the Czech Republic'),
(102433, 'https://ror.org/01z528e40', 'en', 1, 'https://ror.org/01z528e40 Coastal Development Institute of Technology äø€čˆ¬č²”å›£ę³•äŗŗę²æå²øęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102434, 'https://ror.org/01g307a52', 'en', 1, 'https://ror.org/01g307a52 Gifu Prefectural Livestock Research Institute å²é˜œēœŒē•œē”£ē ”ē©¶ę‰€'),
(102435, 'https://ror.org/0051bz348', 'en', 1, 'https://ror.org/0051bz348 Machida Municipal Hospital 町田市民病院'),
(102436, 'https://ror.org/007j3xx12', 'en', 1, 'https://ror.org/007j3xx12 Jikei University of Health Care Sciences ę»‹ę…¶åŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(102437, 'https://ror.org/00xrkfw53', 'en', 1, 'https://ror.org/00xrkfw53 Gifu Prefectural Research Institute for Agricultural Technology in Hilly and Mountainous Areas å²é˜œēœŒäø­å±±é–“č¾²ę„­ē ”ē©¶ę‰€'),
(102438, 'https://ror.org/03wjngf63', 'en', 1, 'https://ror.org/03wjngf63 Ibaraki Prefectural Institute of Public Health čŒØåŸŽēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(102439, 'https://ror.org/02t8qyv80', 'en', 1, 'https://ror.org/02t8qyv80 Kochi Prefectural Deep Seawater Laboratory é«˜ēŸ„ēœŒęµ·ę“‹ę·±å±¤ę°“ē ”ē©¶ę‰€'),
(102440, 'https://ror.org/05c6s8n11', 'en', 1, 'https://ror.org/05c6s8n11 Kyoto Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½åŗœēœ‹č­·å”ä¼š'),
(102441, 'https://ror.org/03nk1jp69', 'en', 1, 'https://ror.org/03nk1jp69 Miyazaki Prefectural Government å®®å“ŽēœŒåŗ'),
(102442, 'https://ror.org/03jy2g328', 'en', 1, 'https://ror.org/03jy2g328 Toyama Prefectural Government 富山県庁'),
(102443, 'https://ror.org/04h7yms32', 'en', 1, 'https://ror.org/04h7yms32 Nagasaki Prefectural Institute for Environmental Research and Public Health é•·å“ŽēœŒē’°å¢ƒäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102444, 'https://ror.org/04g386355', 'en', 1, 'https://ror.org/04g386355 Shioda Hospital åŒ»ē™‚ę³•äŗŗSHIODA唩田病院'),
(102445, 'https://ror.org/03vvt5470', 'en', 1, 'https://ror.org/03vvt5470 International Development Center of Japan äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(102446, 'https://ror.org/0138q6933', 'en', 1, 'https://ror.org/0138q6933 Kyoto Industrial Health Association äø€čˆ¬č²”å›£ę³•äŗŗäŗ¬éƒ½å·„å “äæå„ä¼š'),
(102447, 'https://ror.org/03zqd3v71', 'en', 1, 'https://ror.org/03zqd3v71 The Japan Research Institute of Industrial Science äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē”£ę„­ē§‘å­¦ē ”ē©¶ę‰€'),
(102448, 'https://ror.org/05kf0fr54', 'en', 1, 'https://ror.org/05kf0fr54 Suzuka Kaisei Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå³°å’Œä¼šéˆ“é¹æå›žē”Ÿē—…é™¢'),
(102449, 'https://ror.org/05eva6s33', 'it', 1, 'https://ror.org/05eva6s33 Istituto Nazionale di Fisica Nucleare, Sezione di Roma I National Institute for Nuclear Physics, Rome I Division'),
(102450, 'https://ror.org/01srz1t22', 'en', 1, 'https://ror.org/01srz1t22 Research and Training Institute of the Ministry of Justice ę³•å‹™ēœę³•å‹™ē·åˆē ”ē©¶ę‰€'),
(102451, 'https://ror.org/02dp3a879', 'en', 1, 'https://ror.org/02dp3a879 Istituto Nazionale di Ottica National Institute of Optics'),
(102452, 'https://ror.org/05kpa2035', 'en', 1, 'https://ror.org/05kpa2035 Industrial Research Institute of Niigata Prefecture ę–°ę½ŸēœŒå·„ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(102453, 'https://ror.org/02znq2s88', 'en', 1, 'https://ror.org/02znq2s88 Wakayama City Institute Of Public Health å’Œę­Œå±±åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(102454, 'https://ror.org/014bj9a17', 'en', 1, 'https://ror.org/014bj9a17 Hikone Municipal Hospital 彦根市立病院'),
(102455, 'https://ror.org/00w16jn86', 'en', 1, 'https://ror.org/00w16jn86 Uji-Tokushukai Medical Center åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šå®‡ę²»å¾³ę“²ä¼šē—…é™¢'),
(102456, 'https://ror.org/031q7h902', 'en', 1, 'https://ror.org/031q7h902 THE Research Foundation For Pharmaceutical Sciences å…¬ē›Šč²”å›£ę³•äŗŗč–¬å­¦ē ”ē©¶å„ØåŠ±č²”å›£'),
(102457, 'https://ror.org/04v59rt43', 'en', 1, 'https://ror.org/04v59rt43 Tokai Technology Center äø€čˆ¬č²”å›£ę³•äŗŗę±ęµ·ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102458, 'https://ror.org/05j1fb737', 'en', 1, 'https://ror.org/05j1fb737 Kashiwa Kousei General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å”å‹ä¼šęŸåŽšē”Ÿē·åˆē—…é™¢'),
(102459, 'https://ror.org/03m0f1043', 'en', 1, 'https://ror.org/03m0f1043 Tsukuba Central Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč‹„ē«¹ä¼šć¤ćć°ć‚»ćƒ³ćƒˆćƒ©ćƒ«ē—…é™¢'),
(102460, 'https://ror.org/00f3fvn46', 'en', 1, 'https://ror.org/00f3fvn46 Japan Dam Engineering Center äø€čˆ¬č²”å›£ę³•äŗŗćƒ€ćƒ ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102461, 'https://ror.org/04pde1m41', 'en', 1, 'https://ror.org/04pde1m41 Chiba Tokushukai Hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šåƒč‘‰å¾³ę“²ä¼šē—…é™¢'),
(102462, 'https://ror.org/00m3ptg97', 'en', 1, 'https://ror.org/00m3ptg97 Toyosato Hospital å…¬ē›Šč²”å›£ę³•äŗŗč±Šéƒ·ē—…é™¢'),
(102463, 'https://ror.org/054kjfv40', 'en', 1, 'https://ror.org/054kjfv40 Yamanashi Prefectural Government 山梨県庁'),
(102464, 'https://ror.org/05k1zsp15', 'en', 1, 'https://ror.org/05k1zsp15 Japan Visiting Nursing Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬čØŖå•ēœ‹č­·č²”å›£'),
(102465, 'https://ror.org/02tzncp91', 'en', 1, 'https://ror.org/02tzncp91 Kitakyushu General Hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗåŒ—ä¹å·žē—…é™¢åŒ—ä¹å·žē·åˆē—…é™¢'),
(102466, 'https://ror.org/04krhex92', 'en', 1, 'https://ror.org/04krhex92 Research Institute for Regional Planning and Development äø€čˆ¬ē¤¾å›£ę³•äŗŗåœ°åŸŸå•é”Œē ”ē©¶ę‰€'),
(102467, 'https://ror.org/02k107z27', 'en', 1, 'https://ror.org/02k107z27 Yonemori Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē·‘ę³‰ä¼šē±³ē››ē—…é™¢'),
(102468, 'https://ror.org/027v46j67', 'en', 1, 'https://ror.org/027v46j67 Ibaraki Agriculture Institute čŒØåŸŽēœŒč¾²ę„­ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(102469, 'https://ror.org/01k0ds106', 'en', 1, 'https://ror.org/01k0ds106 National Institute for Research Advancement å…¬ē›Šč²”å›£ę³•äŗŗē·åˆē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(102470, 'https://ror.org/03edrct07', 'en', 1, 'https://ror.org/03edrct07 Hyogo Prefectural Tamba Medical Center å…µåŗ«ēœŒē«‹äø¹ę³¢åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102471, 'https://ror.org/04b0sqj14', 'en', 1, 'https://ror.org/04b0sqj14 Forestry Agency ęž—é‡Žåŗ'),
(102472, 'https://ror.org/00fb64e91', 'en', 1, 'https://ror.org/00fb64e91 Miyazaki Prefectural Industrial Support Foundation å…¬ē›Šč²”å›£ę³•äŗŗå®®å“ŽēœŒē”£ę„­ęŒÆčˆˆę©Ÿę§‹'),
(102473, 'https://ror.org/04d5ay023', 'en', 1, 'https://ror.org/04d5ay023 Tokushima Prefectural Government 徳島県庁'),
(102474, 'https://ror.org/032m8jb43', 'en', 1, 'https://ror.org/032m8jb43 Service Center of Port Engineering äø€čˆ¬č²”å›£ę³•äŗŗęøÆę¹¾ē©ŗęøÆē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102475, 'https://ror.org/03h5w3785', 'en', 1, 'https://ror.org/03h5w3785 Kyoto Prefectural Technology Center for Small and Medium Enterprises äŗ¬éƒ½åŗœäø­å°ä¼ę„­ęŠ€č”“ć‚»ćƒ³ć‚æāˆ’'),
(102476, 'https://ror.org/02c58qy62', 'en', 1, 'https://ror.org/02c58qy62 Kansai Occupational Health Association äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æåŠ“åƒäæå„å”ä¼š'),
(102477, 'https://ror.org/05v4axe68', 'en', 1, 'https://ror.org/05v4axe68 Ishikawa Prefecture Fisheries Research Center ēŸ³å·ēœŒę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(102478, 'https://ror.org/02v55pn13', 'en', 1, 'https://ror.org/02v55pn13 The Institute of Environmental Toxicology äø€čˆ¬č²”å›£ę³•äŗŗę®‹ē•™č¾²č–¬ē ”ē©¶ę‰€'),
(102479, 'https://ror.org/028hemt13', 'en', 1, 'https://ror.org/028hemt13 Tokiwa Junior College 常磐短期大学'),
(102480, 'https://ror.org/03pvja988', 'en', 1, 'https://ror.org/03pvja988 Variable Star Observers League in Japan ę—„ęœ¬å¤‰å…‰ę˜Ÿč¦³ęø¬č€…é€£ē›Ÿ'),
(102481, 'https://ror.org/01b23yw56', 'en', 1, 'https://ror.org/01b23yw56 Shiraniwa Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę¾äø‹ä¼šē™½åŗ­ē—…é™¢'),
(102482, 'https://ror.org/02vvaeh07', 'en', 1, 'https://ror.org/02vvaeh07 Iwate Prefectural Nihohe Hospital å²©ę‰‹ēœŒē«‹äŗŒęˆøē—…é™¢'),
(102483, 'https://ror.org/0368r1627', 'en', 1, 'https://ror.org/0368r1627 Geological Carbon Dioxide Storage Technology Research Association äŗŒé…øåŒ–ē‚­ē“ åœ°äø­č²Æē•™ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(102484, 'https://ror.org/037ez2r19', 'en', 1, 'https://ror.org/037ez2r19 KIOS Research and Innovation Center of Excellence'),
(102485, 'https://ror.org/00frth518', 'en', 1, 'https://ror.org/00frth518 Hiroshima International Center å…¬ē›Šč²”å›£ę³•äŗŗć²ć‚ć—ć¾å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(102486, 'https://ror.org/04a5x0a43', 'en', 1, 'https://ror.org/04a5x0a43 Kurate Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗćć‚‰ć¦ē—…é™¢'),
(102487, 'https://ror.org/05jkxnr58', 'en', 1, 'https://ror.org/05jkxnr58 Shakomae Kokorono Clinic č»Šåŗ«å‰ć“ć“ć‚ć®ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(102488, 'https://ror.org/0340mjr48', 'en', 1, 'https://ror.org/0340mjr48 Nagasaki Prefectural Institute of Fisheries é•·å“ŽēœŒē·åˆę°“ē”£č©¦éØ“å “'),
(102489, 'https://ror.org/01vj6ck58', 'it', 1, 'https://ror.org/01vj6ck58 Istituto Nazionale di Fisica Nucleare, Sezione di Torino National Institute for Nuclear Physics, Turin Section'),
(102490, 'https://ror.org/03827k711', 'en', 1, 'https://ror.org/03827k711 Chugoku Junior College äø­å›½ēŸ­ęœŸå¤§å­¦'),
(102491, 'https://ror.org/053h8r787', 'en', 1, 'https://ror.org/053h8r787 Saitama Citizens Medical Center ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć•ć„ćŸć¾åø‚ę°‘åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102492, 'https://ror.org/0579t4s85', 'fr', 1, 'https://ror.org/0579t4s85 Centre de Morphologie MathƩmatique - CMM Centre for mathematical morphology - CMM Mines Paris, PSL University, Centre for mathematical morphology (CMM) Mines Paris, UniversitƩ PSL, Centre de Morphologie MathƩmatique (CMM)'),
(102493, 'https://ror.org/05sm4qw49', 'en', 1, 'https://ror.org/05sm4qw49 The Japanese Institute of Irrigation and Drainage äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę°“åœŸē·åˆē ”ē©¶ę‰€'),
(102494, 'https://ror.org/0240a1c32', 'en', 1, 'https://ror.org/0240a1c32 Nihon Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»å­¦å”ä¼š'),
(102495, 'https://ror.org/04y0s1771', 'en', 1, 'https://ror.org/04y0s1771 Tokyo Metropolitan Hospital Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę±äŗ¬éƒ½ē«‹ē—…é™¢ę©Ÿę§‹'),
(102496, 'https://ror.org/02ck2y820', 'en', 1, 'https://ror.org/02ck2y820 LU Literatūras, Folkloras Un Mākslas Instituts UL Institute of Literature, Folklore and Art'),
(102497, 'https://ror.org/05rj7xr73', 'en', 1, 'https://ror.org/05rj7xr73 St Joseph''s Health Care'),
(102498, 'https://ror.org/01eah2841', 'en', 1, 'https://ror.org/01eah2841 Oita Prefectural Agriculture, Forestry and Fisheries Research Center å¤§åˆ†ēœŒč¾²ęž—ę°“ē”£ē ”ē©¶ęŒ‡å°Žć‚»ćƒ³ć‚æćƒ¼'),
(102499, 'https://ror.org/026hasc65', 'en', 1, 'https://ror.org/026hasc65 Shinbeppu Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šę–°åˆ„åŗœē—…é™¢'),
(102500, 'https://ror.org/002zghs56', 'fr', 0, 'https://ror.org/002zghs56 HƓpital du Saint-Sacrement'),
(102501, 'https://ror.org/00kpwzc89', 'en', 1, 'https://ror.org/00kpwzc89 Musashino Junior College ę­¦č”µé‡ŽēŸ­ęœŸå¤§å­¦'),
(102502, 'https://ror.org/01g23ms62', 'en', 1, 'https://ror.org/01g23ms62 Saitama Agricultural Technology Research Center åŸ¼ēŽ‰ēœŒč¾²ę„­ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102503, 'https://ror.org/026gtp362', 'en', 1, 'https://ror.org/026gtp362 Optoelectronic Industry and Technology Development Association äø€čˆ¬č²”å›£ę³•äŗŗå…‰ē”£ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(102504, 'https://ror.org/04qxf2010', 'en', 1, 'https://ror.org/04qxf2010 Akita Prefectural Resources Technology Development Organization äø€čˆ¬č²”å›£ę³•äŗŗē§‹ē”°ēœŒč³‡ęŗęŠ€č”“é–‹ē™ŗę©Ÿę§‹'),
(102505, 'https://ror.org/05kss3581', 'en', 1, 'https://ror.org/05kss3581 Aichi Blood Disease Research Foundation č²”å›£ę³•äŗŗę„›ēŸ„č”€ę¶²ē–¾ę‚£ē ”ē©¶č²”å›£'),
(102506, 'https://ror.org/00j9zbm39', 'en', 1, 'https://ror.org/00j9zbm39 Gifu Prefectural Ceramics Research Institute å²é˜œēœŒć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ē ”ē©¶ę‰€'),
(102507, 'https://ror.org/05r7hdk89', 'en', 1, 'https://ror.org/05r7hdk89 Sendai Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗä»™å°åø‚åŒ»åø«ä¼š'),
(102508, 'https://ror.org/0060pja03', 'en', 1, 'https://ror.org/0060pja03 Institut für Chemie und Biologie des Meeres Institute for Chemistry and Biology of the Marine Environment'),
(102509, 'https://ror.org/04xndpe63', 'en', 1, 'https://ror.org/04xndpe63 Chiba City Institute of Health and Environment åƒč‘‰åø‚ē’°å¢ƒäæå„ē ”ē©¶ę‰€'),
(102510, 'https://ror.org/05bfveq94', 'en', 1, 'https://ror.org/05bfveq94 Fukuoka Nursing College ē¦å²”ēœ‹č­·å¤§å­¦'),
(102511, 'https://ror.org/01r3j5027', 'en', 1, 'https://ror.org/01r3j5027 SAM Global University'),
(102512, 'https://ror.org/00p6b0z91', 'en', 1, 'https://ror.org/00p6b0z91 Nippon Koukan Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ć“ć†ć‹ć‚“ä¼šę—„ęœ¬é‹¼ē®”ē—…é™¢'),
(102513, 'https://ror.org/038btwr93', 'en', 1, 'https://ror.org/038btwr93 Fukuoka Prefectural Police ē¦å²”ēœŒč­¦åÆŸ'),
(102514, 'https://ror.org/015dkwr19', 'en', 1, 'https://ror.org/015dkwr19 Kumamoto Prefectural Agricultural Research Center ē†Šęœ¬ēœŒč¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102515, 'https://ror.org/02gbj1120', 'en', 1, 'https://ror.org/02gbj1120 Tsugaru General Hospital ć¤ćŒć‚‹ē·åˆē—…é™¢'),
(102516, 'https://ror.org/057tpd183', 'en', 1, 'https://ror.org/057tpd183 Hanshin Expressway Research Institute for Advanced Technology äø€čˆ¬č²”å›£ę³•äŗŗé˜Ŗē„žé«˜é€Ÿå…ˆé€²ęŠ€č”“ē ”ē©¶ę‰€'),
(102517, 'https://ror.org/01c9b5052', 'en', 0, 'https://ror.org/01c9b5052 Nagano Techno Foundation å…¬ē›Šč²”å›£ę³•äŗŗé•·é‡ŽēœŒćƒ†ć‚ÆćƒŽč²”å›£'),
(102518, 'https://ror.org/037va9e86', 'en', 1, 'https://ror.org/037va9e86 Hirakata Kohsai Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šęžšę–¹å…¬ęøˆē—…é™¢'),
(102519, 'https://ror.org/05ghahk68', 'en', 1, 'https://ror.org/05ghahk68 Madurai Medical College மதுரை ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(102520, 'https://ror.org/04w4m6z96', 'it', 1, 'https://ror.org/04w4m6z96 Istituto Nazionale di Fisica Nucleare, Sezione di Milano National Institute for Nuclear Physics, Milan Unit'),
(102521, 'https://ror.org/059czkb40', 'en', 1, 'https://ror.org/059czkb40 The Japanese Society for Artificial Intelligence äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗŗå·„ēŸ„čƒ½å­¦ä¼š'),
(102522, 'https://ror.org/032f2kz07', 'en', 1, 'https://ror.org/032f2kz07 Micromachine Center äø€čˆ¬č²”å›£ę³•äŗŗćƒžć‚¤ć‚Æćƒ­ćƒžć‚·ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(102523, 'https://ror.org/02k60m694', 'en', 1, 'https://ror.org/02k60m694 Japan Association For Inspection And Investigation Of Foods Including Fats And Oils å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ę²¹č„‚ę¤œęŸ»å”ä¼š'),
(102524, 'https://ror.org/04vqpwb25', 'en', 1, 'https://ror.org/04vqpwb25 Miyazaki Medical Association Hospital å®®å“Žåø‚éƒ”åŒ»åø«ä¼šē—…é™¢'),
(102525, 'https://ror.org/04xzxak21', 'en', 1, 'https://ror.org/04xzxak21 The Building Center of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ć‚»ćƒ³ć‚æćƒ¼'),
(102526, 'https://ror.org/00zs3y046', 'it', 1, 'https://ror.org/00zs3y046 Istituto Nazionale di Fisica Nucleare, Sezione di Ferrara National Institute for Nuclear Physics, Ferrara Division'),
(102527, 'https://ror.org/03yb7n124', 'en', 1, 'https://ror.org/03yb7n124 Kakogawa City Hospital Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ å¤å·åø‚ę°‘ē—…é™¢ę©Ÿę§‹'),
(102528, 'https://ror.org/01bcvtg38', 'en', 1, 'https://ror.org/01bcvtg38 Obihiro Kyokai Hospital åŒ—ęµ·é“ē¤¾ä¼šäŗ‹ę„­å”ä¼šåøÆåŗƒē—…é™¢'),
(102529, 'https://ror.org/04j41hc27', 'en', 1, 'https://ror.org/04j41hc27 Yokohama General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·‘ęˆä¼šęØŖęµœē·åˆē—…é™¢'),
(102530, 'https://ror.org/051gsh239', 'en', 0, 'https://ror.org/051gsh239 Lawson Health Research Institute'),
(102531, 'https://ror.org/04n1h6833', 'en', 1, 'https://ror.org/04n1h6833 Isehara Kyodo Hospital JAē„žå„ˆå·åŽšē”Ÿé€£ä¼Šå‹¢åŽŸå”åŒē—…é™¢'),
(102532, 'https://ror.org/05baafc90', 'en', 1, 'https://ror.org/05baafc90 Hokusho College åŒ—ēæ”å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102533, 'https://ror.org/008swzc61', 'en', 1, 'https://ror.org/008swzc61 Canadian Social Prescribing Student Collective'),
(102534, 'https://ror.org/011xdz256', 'en', 1, 'https://ror.org/011xdz256 Iwate Prefectural Forestry Technology Center å²©ę‰‹ēœŒęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102535, 'https://ror.org/01tkga408', 'en', 1, 'https://ror.org/01tkga408 Kokugakuin Tochigi Junior College åœ‹å­øé™¢å¤§å­¦ę ƒęœØēŸ­ęœŸå¤§å­¦'),
(102536, 'https://ror.org/04c419163', 'en', 1, 'https://ror.org/04c419163 Liaoning Police College č¾½å®č­¦åÆŸå­¦é™¢'),
(102537, 'https://ror.org/029dyna49', 'en', 1, 'https://ror.org/029dyna49 Saga Forestry Research Laboratory ä½č³€ēœŒęž—ę„­č©¦éØ“å “'),
(102538, 'https://ror.org/05y7et149', 'en', 1, 'https://ror.org/05y7et149 Nara Prefectural Pharmaceutical Research Center å„ˆč‰ÆēœŒč–¬äŗ‹ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102539, 'https://ror.org/031aq0s38', 'en', 1, 'https://ror.org/031aq0s38 Hyogo Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗå…µåŗ«ēœŒēœ‹č­·å”ä¼š'),
(102540, 'https://ror.org/01v4vm136', 'en', 1, 'https://ror.org/01v4vm136 Japan Environmental Technology Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒęŠ€č”“å”ä¼š'),
(102541, 'https://ror.org/00vepg991', 'en', 1, 'https://ror.org/00vepg991 Ceramic Research Center of Nagasaki é•·å“ŽēœŒēŖÆę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102542, 'https://ror.org/01efr2w87', 'en', 1, 'https://ror.org/01efr2w87 Institute for Traffic Accident Research and Data Analysis å…¬ē›Šč²”å›£ę³•äŗŗäŗ¤é€šäŗ‹ę•…ē·åˆåˆ†ęžć‚»ćƒ³ć‚æćƒ¼'),
(102543, 'https://ror.org/03ws9bs22', 'en', 1, 'https://ror.org/03ws9bs22 Ajinomoto Dietary Culture Center å…¬ē›Šč²”å›£ę³•äŗŗå‘³ć®ē“ é£Ÿć®ę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(102544, 'https://ror.org/02yahyh51', 'en', 1, 'https://ror.org/02yahyh51 Matsuyama Junior College ę¾å±±ēŸ­ęœŸå¤§å­¦'),
(102545, 'https://ror.org/00hb4j726', 'en', 1, 'https://ror.org/00hb4j726 Yokohama Environmental Science Research Institute ęØŖęµœåø‚ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(102546, 'https://ror.org/04a0bad71', 'en', 1, 'https://ror.org/04a0bad71 Institute of Solid State Physics, UL LU Cietvielu fizikas institūts'),
(102547, 'https://ror.org/00n4rzk96', 'en', 1, 'https://ror.org/00n4rzk96 Kurashiki Sweet Hospital åŒ»ē™‚ę³•äŗŗå’Œé¦™ä¼šå€‰ę•·ć‚¹ć‚¤ćƒ¼ćƒˆćƒ›ć‚¹ćƒ”ć‚æćƒ«'),
(102548, 'https://ror.org/00bctk817', 'en', 1, 'https://ror.org/00bctk817 Association of Polish Surveyors'),
(102549, 'https://ror.org/03v8pkb73', 'en', 1, 'https://ror.org/03v8pkb73 Oita Prefectural Police å¤§åˆ†ēœŒč­¦åÆŸ'),
(102550, 'https://ror.org/04ketrr59', 'en', 1, 'https://ror.org/04ketrr59 Kumamoto City Environmental Research Center ē†Šęœ¬åø‚ē’°å¢ƒē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(102551, 'https://ror.org/032ybtz45', 'en', 1, 'https://ror.org/032ybtz45 The Japan Foundation Center å…¬ē›Šč²”å›£ę³•äŗŗåŠ©ęˆč²”å›£ć‚»ćƒ³ć‚æćƒ¼'),
(102552, 'https://ror.org/04xdag444', 'en', 1, 'https://ror.org/04xdag444 Osaka University of Arts Junior College å¤§é˜ŖčŠøč”“å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102553, 'https://ror.org/016yns761', 'en', 1, 'https://ror.org/016yns761 Kyoto Okamoto Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå²”ęœ¬ē—…é™¢ļ¼ˆč²”å›£ļ¼‰äŗ¬éƒ½å²”ęœ¬čØ˜åæµē—…é™¢'),
(102554, 'https://ror.org/048arg914', 'en', 1, 'https://ror.org/048arg914 The Operations Research Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Ŗćƒšćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗćƒ»ćƒŖć‚µćƒ¼ćƒå­¦ä¼š'),
(102555, 'https://ror.org/00nwxj335', 'en', 1, 'https://ror.org/00nwxj335 Hokkaido Cardiovascular Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ—ęµ·é“å¾Ŗē’°å™Øē—…é™¢'),
(102556, 'https://ror.org/02n742c10', 'en', 1, 'https://ror.org/02n742c10 University of Trieste UniversitƠ degli Studi di Trieste UniversitƤt Triest UniversitƩ de Trieste Univerza v Trstu'),
(102557, 'https://ror.org/00czxgw88', 'en', 1, 'https://ror.org/00czxgw88 Thermal and Nuclear Power Engineering Society äø€čˆ¬ē¤¾å›£ę³•äŗŗē«åŠ›åŽŸå­åŠ›ē™ŗé›»ęŠ€č”“å”ä¼š'),
(102558, 'https://ror.org/00k09zh24', 'en', 1, 'https://ror.org/00k09zh24 Japan Patent Information Organization äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē‰¹čØ±ęƒ…å ±ę©Ÿę§‹'),
(102559, 'https://ror.org/05dnvsb41', 'en', 1, 'https://ror.org/05dnvsb41 Chemical Materials Evaluation and Research Base ę¬”äø–ä»£åŒ–å­¦ęę–™č©•ä¾”ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(102560, 'https://ror.org/019qy1011', 'en', 1, 'https://ror.org/019qy1011 Civil Aviation College ē‹¬ē«‹č”Œę”æę³•äŗŗčˆŖē©ŗå¤§å­¦ę ”'),
(102561, 'https://ror.org/04qmfwz39', 'en', 1, 'https://ror.org/04qmfwz39 Yamanoue Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å„åÆæä¼šå±±ć®äøŠē—…é™¢'),
(102562, 'https://ror.org/00pkaf287', 'en', 1, 'https://ror.org/00pkaf287 The Distribution Economics Institute of Japan å…¬ē›Šč²”å›£ę³•äŗŗęµé€šēµŒęøˆē ”ē©¶ę‰€'),
(102563, 'https://ror.org/04x9cdm35', 'en', 1, 'https://ror.org/04x9cdm35 Wakayama Shin-ai University å’Œę­Œå±±äæ”ę„›å¤§å­¦'),
(102564, 'https://ror.org/05bevt606', 'en', 1, 'https://ror.org/05bevt606 Shin-Oyama City Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę–°å°å±±åø‚ę°‘ē—…é™¢'),
(102565, 'https://ror.org/03paz5966', 'it', 1, 'https://ror.org/03paz5966 Istituto Nazionale di Fisica Nucleare, Sezione di Cagliari National Institute for Nuclear Physics, Cagliari Division'),
(102566, 'https://ror.org/03e0v3w65', 'en', 1, 'https://ror.org/03e0v3w65 Itabashi Chuo Medical Center åŒ»ē™‚ę³•äŗŗē¤¾å›£ę˜ŽčŠ³ä¼šęæę©‹äø­å¤®ē·åˆē—…é™¢'),
(102567, 'https://ror.org/023r10y33', 'en', 1, 'https://ror.org/023r10y33 Japan Grassland Agriculture and Forage Seed Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‰åœ°ē•œē”£ēØ®å­å”ä¼š'),
(102568, 'https://ror.org/05gw0md72', 'en', 1, 'https://ror.org/05gw0md72 Saga Prefectural Ariake Fisheries Research and Development Center ä½č³€ēœŒęœ‰ę˜Žę°“ē”£ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(102569, 'https://ror.org/00g482e48', 'en', 1, 'https://ror.org/00g482e48 Japan Medical Education Foundation å…¬ē›Šč²”å›£ę³•äŗŗåŒ»å­¦ę•™č‚²ęŒÆčˆˆč²”å›£'),
(102570, 'https://ror.org/00j6jx121', 'en', 1, 'https://ror.org/00j6jx121 Japan Concrete Institute å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚³ćƒ³ć‚ÆćƒŖćƒ¼ćƒˆå·„å­¦ä¼š'),
(102571, 'https://ror.org/00jqjdp84', 'en', 1, 'https://ror.org/00jqjdp84 The Japanese Society of Pathology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē—…ē†å­¦ä¼š'),
(102572, 'https://ror.org/00ye93n57', 'en', 1, 'https://ror.org/00ye93n57 Yoka Hospital 公立八鹿病院'),
(102573, 'https://ror.org/03t61bk55', 'en', 1, 'https://ror.org/03t61bk55 Fukui Memorial Hospital åŒ»ē™‚ę³•äŗŗč²”å›£é’å±±ä¼šē¦äŗ•čØ˜åæµē—…é™¢'),
(102574, 'https://ror.org/0116en103', 'en', 1, 'https://ror.org/0116en103 Kaken Test Center äø€čˆ¬č²”å›£ę³•äŗŗć‚«ć‚±ćƒ³ćƒ†ć‚¹ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(102575, 'https://ror.org/01hkzmd51', 'en', 1, 'https://ror.org/01hkzmd51 Miyagi Prefectural Furukawa Agricultural Experiment Station å®®åŸŽēœŒå¤å·č¾²ę„­č©¦éØ“å “'),
(102576, 'https://ror.org/00fn9q691', 'en', 1, 'https://ror.org/00fn9q691 Niigata Prefectural Institute Of Brewing ę–°ę½ŸēœŒé†øé€ č©¦éØ“å “'),
(102577, 'https://ror.org/05aqg9159', 'en', 1, 'https://ror.org/05aqg9159 Japan Association on Odor Environment å…¬ē›Šē¤¾å›£ę³•äŗŗć«ćŠć„ćƒ»ć‹ćŠć‚Šē’°å¢ƒå”ä¼š'),
(102578, 'https://ror.org/04rpzaq65', 'en', 1, 'https://ror.org/04rpzaq65 Rural Development Planning Commission äø€čˆ¬č²”å›£ę³•äŗŗč¾²ę‘é–‹ē™ŗä¼ē”»å§”å“”ä¼š'),
(102579, 'https://ror.org/04edvhw11', 'en', 1, 'https://ror.org/04edvhw11 The Japanese Society for Cardiovascular Surgery ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬åæƒč‡“č”€ē®”å¤–ē§‘å­¦ä¼š'),
(102580, 'https://ror.org/0031fc687', 'en', 1, 'https://ror.org/0031fc687 THE Institute Of Clinical Psychiatry äø€čˆ¬č²”å›£ę³•äŗŗē²¾ē„žåŒ»å­¦ē ”ē©¶ę‰€'),
(102581, 'https://ror.org/053vczf59', 'en', 1, 'https://ror.org/053vczf59 Kumamoto Prefecture Forestry Research Guidance Place ē†Šęœ¬ēœŒęž—ę„­ē ”ē©¶ćƒ»ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(102582, 'https://ror.org/05ptvzg43', 'en', 1, 'https://ror.org/05ptvzg43 Fukushima Prefectural Government ē¦å³¶ēœŒåŗ'),
(102583, 'https://ror.org/04z44m122', 'en', 1, 'https://ror.org/04z44m122 Miyamoto Hospital åŒ»ē™‚ę³•äŗŗå®®ęœ¬ē—…é™¢'),
(102584, 'https://ror.org/04vpzzp35', 'en', 1, 'https://ror.org/04vpzzp35 Nagano Environmental Conservation Research Institute é•·é‡ŽēœŒē’°å¢ƒäæå…Øē ”ē©¶ę‰€'),
(102585, 'https://ror.org/02vje2a46', 'en', 1, 'https://ror.org/02vje2a46 Iwate Prefectural Ofunato Hospital å²©ę‰‹ēœŒē«‹å¤§čˆ¹ęø”ē—…é™¢'),
(102586, 'https://ror.org/04knm0293', 'en', 1, 'https://ror.org/04knm0293 Caltech Alumni Association'),
(102587, 'https://ror.org/00a429j56', 'en', 1, 'https://ror.org/00a429j56 Agano City Hospital ć‚ćŒć®åø‚ę°‘ē—…é™¢'),
(102588, 'https://ror.org/04w7eg945', 'en', 1, 'https://ror.org/04w7eg945 Public Health Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒ‘ćƒ–ćƒŖćƒƒć‚Æćƒ˜ćƒ«ć‚¹ćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(102589, 'https://ror.org/04h1pq403', 'en', 1, 'https://ror.org/04h1pq403 Materials Process Technology Center äø€čˆ¬č²”å›£ę³•äŗŗē“ å½¢ęć‚»ćƒ³ć‚æćƒ¼'),
(102590, 'https://ror.org/04xzp4624', 'en', 1, 'https://ror.org/04xzp4624 Josai Junior College åŸŽč„æēŸ­ęœŸå¤§å­¦'),
(102591, 'https://ror.org/01x36m247', 'en', 1, 'https://ror.org/01x36m247 Japan Forest Technology Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę£®ęž—ęŠ€č”“å”ä¼š'),
(102592, 'https://ror.org/0345xq683', 'en', 1, 'https://ror.org/0345xq683 SMART Reading'),
(102593, 'https://ror.org/02955j881', 'en', 1, 'https://ror.org/02955j881 Hokkaido Cancer Society å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“åÆ¾ćŒć‚“å”ä¼š'),
(102594, 'https://ror.org/0501fpn39', 'en', 1, 'https://ror.org/0501fpn39 Japan Fisheries Resource Conservation Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“ē”£č³‡ęŗäæč­·å”ä¼š'),
(102595, 'https://ror.org/01aaq3s61', 'en', 1, 'https://ror.org/01aaq3s61 IVF Namba Clinic åŒ»ē™‚ę³•äŗŗäø‰ę…§ä¼šIVFćŖć‚“ć°ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(102596, 'https://ror.org/04f4ae402', 'en', 1, 'https://ror.org/04f4ae402 The Advanced Materials Processing Institute Kinki Japan äø€čˆ¬č²”å›£ę³•äŗŗčæ‘ē•æé«˜ć‚Øćƒćƒ«ć‚®ćƒ¼åŠ å·„ęŠ€č”“ē ”ē©¶ę‰€'),
(102597, 'https://ror.org/052q9xn36', 'en', 1, 'https://ror.org/052q9xn36 Yaizu City Hospital ē„¼ę“„åø‚ē«‹ē·åˆē—…é™¢'),
(102598, 'https://ror.org/027t3y253', 'en', 1, 'https://ror.org/027t3y253 Fukuoka Mirai Hospital åŒ»ē™‚ę³•äŗŗē›øē”Ÿä¼šē¦å²”ćæć‚‰ć„ē—…é™¢'),
(102599, 'https://ror.org/033jecd97', 'en', 1, 'https://ror.org/033jecd97 Nagayoshi General Hospital åŒ»ē™‚ę³•äŗŗåÆŗč„æå ±ę©ä¼šé•·å‰ē·åˆē—…é™¢'),
(102600, 'https://ror.org/02ppaa456', 'en', 1, 'https://ror.org/02ppaa456 Okinawa Prefectural Forest Resources Research Center ę²–ēø„ēœŒę£®ęž—č³‡ęŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102601, 'https://ror.org/00fzmm222', 'en', 1, 'https://ror.org/00fzmm222 Universidad de Massachusetts Dartmouth University of Massachusetts Dartmouth UniversitƩ du massachusetts de dartmouth'),
(102602, 'https://ror.org/006pbws28', 'en', 1, 'https://ror.org/006pbws28 Japan Seafarers Relief Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęµ·å“”ęŽ–ęøˆä¼š'),
(102603, 'https://ror.org/04e4qr749', 'en', 1, 'https://ror.org/04e4qr749 Japan Environment Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒå”ä¼š'),
(102604, 'https://ror.org/00c5mww57', 'en', 1, 'https://ror.org/00c5mww57 Japan Frozen Food Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡é£Ÿå“å”ä¼š'),
(102605, 'https://ror.org/03xdfcy19', 'en', 1, 'https://ror.org/03xdfcy19 Tatebayashi Kosei General Hospital å…¬ē«‹é¤Øęž—åŽšē”Ÿē—…é™¢'),
(102606, 'https://ror.org/01v7ahx52', 'en', 1, 'https://ror.org/01v7ahx52 Water Re-use Promotion Center äø€čˆ¬č²”å›£ę³•äŗŗé€ ę°“äæƒé€²ć‚»ćƒ³ć‚æćƒ¼'),
(102607, 'https://ror.org/02xa0x739', 'en', 1, 'https://ror.org/02xa0x739 Aichi Children''s Health and Medical Center ć‚ć„ć”å°å…äæå„åŒ»ē™‚ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(102608, 'https://ror.org/02x6dxy73', 'en', 1, 'https://ror.org/02x6dxy73 Kochi Professional University of Rehabilitation é«˜ēŸ„ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(102609, 'https://ror.org/0148jqz97', 'en', 1, 'https://ror.org/0148jqz97 Public Opinion Research Center äø€čˆ¬ē¤¾å›£ę³•äŗŗč¼æč«–ē§‘å­¦å”ä¼š'),
(102610, 'https://ror.org/0386syr84', 'en', 1, 'https://ror.org/0386syr84 Tokyo Dental Junior College ę±äŗ¬ę­Æē§‘å¤§å­¦ēŸ­ęœŸå¤§å­¦'),
(102611, 'https://ror.org/0166m3x03', 'en', 1, 'https://ror.org/0166m3x03 Japan International Forestry Promotion and Cooperation Center å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē·‘åŒ–ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(102612, 'https://ror.org/0183te774', 'en', 1, 'https://ror.org/0183te774 The Institute of Statistical Research äø€čˆ¬č²”å›£ę³•äŗŗēµ±čØˆē ”ē©¶ä¼š'),
(102613, 'https://ror.org/04aywby51', 'en', 1, 'https://ror.org/04aywby51 Toyama Prefectural Environmental Science Research Center åÆŒå±±ēœŒē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(102614, 'https://ror.org/04g2hr413', 'en', 1, 'https://ror.org/04g2hr413 Fukui Prefectural Livestock Experimental Station ē¦äŗ•ēœŒē•œē”£č©¦éØ“å “'),
(102615, 'https://ror.org/04y5x0d62', 'en', 1, 'https://ror.org/04y5x0d62 Central Japan Cord Blood Bank äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­éƒØć•ć„åøÆč”€ćƒćƒ³ć‚Æ'),
(102616, 'https://ror.org/01sysa144', 'en', 1, 'https://ror.org/01sysa144 Seikeikai Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęø…ęµä¼šęø…ęµä¼šē—…é™¢'),
(102617, 'https://ror.org/02spwfy20', 'en', 1, 'https://ror.org/02spwfy20 Nagoya Tokushukai General Hospital åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šåå¤å±‹å¾³ę“²ä¼šē·åˆē—…é™¢'),
(102618, 'https://ror.org/03zcsz552', 'en', 1, 'https://ror.org/03zcsz552 Takamatsu Junior College é«˜ę¾ēŸ­ęœŸå¤§å­¦'),
(102619, 'https://ror.org/02kx5fx64', 'en', 1, 'https://ror.org/02kx5fx64 Tochigi Prefectural Forestry Research Center ę ƒęœØēœŒęž—ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(102620, 'https://ror.org/02xjwnh68', 'en', 1, 'https://ror.org/02xjwnh68 National Sanatorium Kikuchi Keifuen å›½ē«‹ē™‚é¤Šę‰€čŠę± ęµę„“åœ’'),
(102621, 'https://ror.org/04g76yf98', 'en', 1, 'https://ror.org/04g76yf98 Nagasaki Industrial Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗé•·å“ŽēœŒē”£ę„­ęŒÆčˆˆč²”å›£'),
(102622, 'https://ror.org/00pqk4h50', 'en', 1, 'https://ror.org/00pqk4h50 Chiba Industrial Technology Research Institute åƒč‘‰ēœŒē”£ę„­ę”Æę“ęŠ€č”“ē ”ē©¶ę‰€'),
(102623, 'https://ror.org/035f5kg94', 'en', 1, 'https://ror.org/035f5kg94 Teikyo Gakuen Junior College åøäŗ¬å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(102624, 'https://ror.org/04sv18103', 'en', 1, 'https://ror.org/04sv18103 The Mathematical Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę•°å­¦ä¼š'),
(102625, 'https://ror.org/03kx44b81', 'en', 1, 'https://ror.org/03kx44b81 Japan Die Casting Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ€ć‚¤ć‚«ć‚¹ćƒˆå”ä¼š'),
(102626, 'https://ror.org/05tc25765', 'en', 1, 'https://ror.org/05tc25765 Kawaguchi Municipal Medical Center å·å£åø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102627, 'https://ror.org/03jdf4784', 'en', 1, 'https://ror.org/03jdf4784 Asada Ladies Clinic åŒ»ē™‚ę³•äŗŗęµ…ē”°ćƒ¬ćƒ‡ć‚£ćƒ¼ć‚¹ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ');
INSERT INTO `rors` VALUES
(102628, 'https://ror.org/04fav5970', 'en', 1, 'https://ror.org/04fav5970 Kanagawa Health Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‹ćŖćŒć‚å„åŗ·č²”å›£'),
(102629, 'https://ror.org/01nnzt520', 'en', 1, 'https://ror.org/01nnzt520 Yamato Takada Municipal Hospital å¤§å’Œé«˜ē”°åø‚ē«‹ē—…é™¢'),
(102630, 'https://ror.org/00f083n24', 'en', 1, 'https://ror.org/00f083n24 National Sanatorium KURIU-RAKUSENEN å›½ē«‹ē™‚é¤Šę‰€ę —ē”Ÿę„½ę³‰åœ’'),
(102631, 'https://ror.org/00xn6v638', 'en', 1, 'https://ror.org/00xn6v638 KANO General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå”å’Œä¼šåŠ ē“ē·åˆē—…é™¢'),
(102632, 'https://ror.org/03fm86n58', 'en', 1, 'https://ror.org/03fm86n58 Kitakyushu City Hospital Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŒ—ä¹å·žåø‚ē«‹ē—…é™¢ę©Ÿę§‹'),
(102633, 'https://ror.org/05da84g64', 'en', 1, 'https://ror.org/05da84g64 SOUSEIKAI Hakata Clinic åŒ»ē™‚ę³•äŗŗē›øē”Ÿä¼šåšå¤šć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(102634, 'https://ror.org/00tykj324', 'en', 1, 'https://ror.org/00tykj324 Kihara Memorial Yokohama Foundation for the Advancement of Life Sciences å…¬ē›Šč²”å›£ę³•äŗŗęœØåŽŸčØ˜åæµęØŖęµœē”Ÿå‘½ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(102635, 'https://ror.org/0054s2h05', 'en', 0, 'https://ror.org/0054s2h05 Danish Cardiovascular Research Academy Dansk KardiovaskulƦrt Forskningsakademi'),
(102636, 'https://ror.org/00cvcp097', 'en', 1, 'https://ror.org/00cvcp097 Kochi Prefectural Fisheries Experiment Station é«˜ēŸ„ēœŒę°“ē”£č©¦éØ“å “'),
(102637, 'https://ror.org/032jssp65', 'en', 1, 'https://ror.org/032jssp65 Hekinan Municipal Hospital ē¢§å—åø‚ę°‘ē—…é™¢'),
(102638, 'https://ror.org/05ggcve06', 'en', 1, 'https://ror.org/05ggcve06 Eikei University Of Hiroshima 叔啓大学'),
(102639, 'https://ror.org/01169d420', 'en', 1, 'https://ror.org/01169d420 Nuclear Regulation Authority åŽŸå­åŠ›č¦åˆ¶å§”å“”ä¼š'),
(102640, 'https://ror.org/00j5vv741', 'en', 1, 'https://ror.org/00j5vv741 The Japan Electrical Manufacturers'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę©Ÿå·„ę„­ä¼š'),
(102641, 'https://ror.org/01kkk1p70', 'en', 1, 'https://ror.org/01kkk1p70 Hot Spring Research Center å…¬ē›Šč²”å›£ę³•äŗŗäø­å¤®ęø©ę³‰ē ”ē©¶ę‰€'),
(102642, 'https://ror.org/006qqg238', 'en', 1, 'https://ror.org/006qqg238 Seirei Hamamatsu City Rehabilitation Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£ęµœę¾åø‚ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(102643, 'https://ror.org/02jj93j25', 'en', 1, 'https://ror.org/02jj93j25 Johoku Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗēŸ³å·å‹¤åŠ“č€…åŒ»ē™‚å”ä¼šåŸŽåŒ—ē—…é™¢'),
(102644, 'https://ror.org/05qzb2q24', 'en', 1, 'https://ror.org/05qzb2q24 Japanese Olympic Committee å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚ŖćƒŖćƒ³ćƒ”ćƒƒć‚Æå§”å“”ä¼š'),
(102645, 'https://ror.org/02ekfha90', 'en', 1, 'https://ror.org/02ekfha90 Chukyo Eye Clinic åŒ»ē™‚ę³•äŗŗć„ć•ćŖä¼šäø­äŗ¬ēœ¼ē§‘'),
(102646, 'https://ror.org/02a3mnt93', 'en', 1, 'https://ror.org/02a3mnt93 Jiyugaoka Sanno College č‡Ŗē”±ćŒäø˜ē”£čƒ½ēŸ­ęœŸå¤§å­¦'),
(102647, 'https://ror.org/02t1m5632', 'en', 1, 'https://ror.org/02t1m5632 Japan Pharmaceutical Manufacturers Association ę—„ęœ¬č£½č–¬å·„ę„­å”ä¼š'),
(102648, 'https://ror.org/03vk2ee13', 'en', 1, 'https://ror.org/03vk2ee13 Japanese Society of Periodontology ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ę­Æå‘Øē—…å­¦ä¼š'),
(102649, 'https://ror.org/058j0b191', 'en', 1, 'https://ror.org/058j0b191 Hyogo Prefectural Technology Center for Agriculture, Forestry and Fisheries å…µåŗ«ēœŒē«‹č¾²ęž—ę°“ē”£ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(102650, 'https://ror.org/0156a8r12', 'en', 1, 'https://ror.org/0156a8r12 Miyagi Prefectural Livestock Experiment Station å®®åŸŽēœŒē•œē”£č©¦éØ“å “'),
(102651, 'https://ror.org/04yzg0e77', 'en', 1, 'https://ror.org/04yzg0e77 Mie Industry and Enterprise Support Center å…¬ē›Šč²”å›£ę³•äŗŗäø‰é‡ēœŒē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(102652, 'https://ror.org/03rzv1186', 'en', 1, 'https://ror.org/03rzv1186 Tagawa Municipal Hospital ē”°å·åø‚ē«‹ē—…é™¢'),
(102653, 'https://ror.org/05qpz1x62', 'en', 1, 'https://ror.org/05qpz1x62 Friedrich Schiller University Jena Friedrich-Schiller-UniversitƤt Jena'),
(102654, 'https://ror.org/05whv5732', 'en', 1, 'https://ror.org/05whv5732 Tohoku Seikatsu Bunka Junior College ę±åŒ—ē”Ÿę“»ę–‡åŒ–å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102655, 'https://ror.org/04wpjpv62', 'en', 1, 'https://ror.org/04wpjpv62 Tajimi Iwase Eye Clinic ćŸć˜ćæå²©ē€¬ēœ¼ē§‘'),
(102656, 'https://ror.org/01y98tt60', 'en', 1, 'https://ror.org/01y98tt60 Olusegun Agagu University of Science and Technology'),
(102657, 'https://ror.org/05k0sbt34', 'en', 1, 'https://ror.org/05k0sbt34 SAGA Prefectural Environmental Research Center ä½č³€ēœŒē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(102658, 'https://ror.org/00pdqy006', 'en', 1, 'https://ror.org/00pdqy006 Textile Research Institute of Gunma ē¾¤é¦¬ēœŒē¹Šē¶­å·„ę„­č©¦éØ“å “'),
(102659, 'https://ror.org/052je9n03', 'en', 1, 'https://ror.org/052je9n03 Inabe General Hospital JAäø‰é‡åŽšē”Ÿé€£äø‰é‡åŒ—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ć„ćŖć¹ē·åˆē—…é™¢'),
(102660, 'https://ror.org/032rqtv20', 'en', 1, 'https://ror.org/032rqtv20 The Pharmaceutical Manufacturers'' Association of Tokyo å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬åŒ»č–¬å“å·„ę„­å”ä¼š'),
(102661, 'https://ror.org/004zvfq85', 'es', 1, 'https://ror.org/004zvfq85 Estacion Experimental Agraria Pucallpa - INIA'),
(102662, 'https://ror.org/004mgh374', 'en', 1, 'https://ror.org/004mgh374 Kofu Municipal Hospital åø‚ē«‹ē”²åŗœē—…é™¢'),
(102663, 'https://ror.org/01v60bs72', 'en', 1, 'https://ror.org/01v60bs72 Rinku General Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗć‚Šć‚“ćć†ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102664, 'https://ror.org/01q4ekd43', 'en', 1, 'https://ror.org/01q4ekd43 Hiroshima City Institute of Public Health åŗƒå³¶åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(102665, 'https://ror.org/04jhea107', 'en', 1, 'https://ror.org/04jhea107 Shin Koga Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤©ē„žä¼šę–°å¤č³€ē—…é™¢'),
(102666, 'https://ror.org/00t09ra09', 'en', 1, 'https://ror.org/00t09ra09 Toyama Prefectural Police 富山県警察'),
(102667, 'https://ror.org/048997274', 'en', 1, 'https://ror.org/048997274 Chikugo City Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē­‘å¾Œåø‚ē«‹ē—…é™¢'),
(102668, 'https://ror.org/01ws25a19', 'en', 1, 'https://ror.org/01ws25a19 Fraunhofer Innovation Platform for Composites Research'),
(102669, 'https://ror.org/018x9xw13', 'en', 1, 'https://ror.org/018x9xw13 IsoArcH'),
(102670, 'https://ror.org/05w035e71', 'en', 1, 'https://ror.org/05w035e71 Japan Grain Inspection Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē©€ē‰©ę¤œå®šå”ä¼š'),
(102671, 'https://ror.org/01w1yrw69', 'en', 1, 'https://ror.org/01w1yrw69 Fuel Cell Cutting-Edge Research Center Technology Research Association ęŠ€č”“ē ”ē©¶ēµ„åˆFC-Cubic'),
(102672, 'https://ror.org/02t5r1875', 'en', 1, 'https://ror.org/02t5r1875 Inistiitiyuutii Qorannoo Qonna Oromiyaa Oromia Agricultural Research Institute į‹ØįŠ¦įˆ®įˆšį‹« įŒį‰„įˆ­įŠ“ įˆįˆ­įˆįˆ­ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(102673, 'https://ror.org/033ba9e70', 'en', 1, 'https://ror.org/033ba9e70 Hokkaido Veterinary Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ē£åŒ»åø«ä¼š'),
(102674, 'https://ror.org/015ac6d32', 'en', 1, 'https://ror.org/015ac6d32 Okayama Prefecture Industrial Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗå²”å±±ēœŒē”£ę„­ęŒÆčˆˆč²”å›£'),
(102675, 'https://ror.org/04qgbbk05', 'en', 1, 'https://ror.org/04qgbbk05 Japan Meat Processors Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿč‚‰åŠ å·„å”ä¼š'),
(102676, 'https://ror.org/020ay5m03', 'en', 1, 'https://ror.org/020ay5m03 Japan Plant Protection Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©é˜²ē–«å”ä¼š'),
(102677, 'https://ror.org/02f4g7t12', 'en', 1, 'https://ror.org/02f4g7t12 CARE International Japan å…¬ē›Šč²”å›£ę³•äŗŗć‚±ć‚¢ćƒ»ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«ć‚øćƒ£ćƒ‘ćƒ³'),
(102678, 'https://ror.org/04924p703', 'en', 1, 'https://ror.org/04924p703 Iwate Prefectural Miyako Hospital å²©ę‰‹ēœŒē«‹å®®å¤ē—…é™¢'),
(102679, 'https://ror.org/00k5r5s45', 'en', 1, 'https://ror.org/00k5r5s45 Iwaki Junior College ć„ć‚ćēŸ­ęœŸå¤§å­¦'),
(102680, 'https://ror.org/03wz4p175', 'en', 1, 'https://ror.org/03wz4p175 The Japan Welding Engineering Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęŗ¶ęŽ„å”ä¼š'),
(102681, 'https://ror.org/02h2fg990', 'en', 1, 'https://ror.org/02h2fg990 Takaoka City Hospital é«˜å²”åø‚ę°‘ē—…é™¢'),
(102682, 'https://ror.org/0370bwp13', 'en', 1, 'https://ror.org/0370bwp13 The New Industry Research Organization å…¬ē›Šč²”å›£ę³•äŗŗę–°ē”£ę„­å‰µé€ ē ”ē©¶ę©Ÿę§‹'),
(102683, 'https://ror.org/01exadq33', 'en', 1, 'https://ror.org/01exadq33 Okayama Southern Institute of Health å²”å±±ēœŒå—éƒØå„åŗ·ć„ćć‚Šć‚»ćƒ³ć‚æćƒ¼'),
(102684, 'https://ror.org/01jnc6p74', 'fr', 1, 'https://ror.org/01jnc6p74 Charles LeMoyne Hospital HƓpital Charles-Le Moyne HƓpital Charles-LeMoyne'),
(102685, 'https://ror.org/010y48890', 'en', 1, 'https://ror.org/010y48890 Tottori Horticultural Experiment Station é³„å–ēœŒåœ’čŠøč©¦éØ“å “'),
(102686, 'https://ror.org/02efcyw28', 'en', 1, 'https://ror.org/02efcyw28 Inokashira Hospital å…¬ē›Šč²”å›£ę³•äŗŗäŗ•ä¹‹é ­ē—…é™¢'),
(102687, 'https://ror.org/03fhnqw17', 'en', 1, 'https://ror.org/03fhnqw17 Houju Memorial Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å’Œę„½ä»čŠ³ē čØ˜åæµē—…é™¢'),
(102688, 'https://ror.org/0409v6m60', 'en', 1, 'https://ror.org/0409v6m60 Japanese Standards Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬č¦ę ¼å”ä¼š'),
(102689, 'https://ror.org/03hp3mw60', 'en', 1, 'https://ror.org/03hp3mw60 Institute of Administrative Management äø€čˆ¬č²”å›£ę³•äŗŗč”Œę”æē®”ē†ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102690, 'https://ror.org/00sq42p81', 'en', 0, 'https://ror.org/00sq42p81 Institute for Animal Science äø€čˆ¬č²”å›£ę³•äŗŗå®¶ē•œå­¦ē ”ē©¶ę‰€'),
(102691, 'https://ror.org/05dhcxc25', 'en', 1, 'https://ror.org/05dhcxc25 Highway Technology Research Center äø€čˆ¬č²”å›£ę³•äŗŗé¦–éƒ½é«˜é€Ÿé“č·ÆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102692, 'https://ror.org/01xerg443', 'en', 1, 'https://ror.org/01xerg443 Industrial Property Cooperation Center äø€čˆ¬č²”å›£ę³•äŗŗå·„ę„­ę‰€ęœ‰ęØ©å”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(102693, 'https://ror.org/039n45t76', 'en', 1, 'https://ror.org/039n45t76 Nitobe Memorial Nakano General Hospital ę±äŗ¬åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆę–°ęø”ęˆøčØ˜åæµäø­é‡Žē·åˆē—…é™¢'),
(102694, 'https://ror.org/053hfm619', 'en', 1, 'https://ror.org/053hfm619 Hayama Heart Center ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šč‘‰å±±ćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(102695, 'https://ror.org/05m88m864', 'en', 1, 'https://ror.org/05m88m864 Yonezawa City Hospital 米沢市立病院'),
(102696, 'https://ror.org/03rpe7357', 'en', 1, 'https://ror.org/03rpe7357 Nagano Chuo Hospital é•·é‡ŽåŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆé•·é‡Žäø­å¤®ē—…é™¢'),
(102697, 'https://ror.org/04betma47', 'en', 1, 'https://ror.org/04betma47 Tachikawa Sogo Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē¤¾å›£å„ē”Ÿä¼šē«‹å·ē›øäŗ’ē—…é™¢'),
(102698, 'https://ror.org/03dzfh113', 'en', 1, 'https://ror.org/03dzfh113 Shin-yurigaoka General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£äø‰ęˆä¼šę–°ē™¾åˆćƒ¶äø˜ē·åˆē—…é™¢'),
(102699, 'https://ror.org/03n6vpg27', 'en', 1, 'https://ror.org/03n6vpg27 Biwako Professional University of Rehabilitation ć³ć‚ć“ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(102700, 'https://ror.org/00dbg3003', 'en', 1, 'https://ror.org/00dbg3003 Economic Research Association äø€čˆ¬č²”å›£ę³•äŗŗēµŒęøˆčŖæęŸ»ä¼š'),
(102701, 'https://ror.org/05xdejm35', 'en', 1, 'https://ror.org/05xdejm35 Research Institute for Safety Engineering å…¬ē›Šč²”å›£ę³•äŗŗē·åˆå®‰å…Øå·„å­¦ē ”ē©¶ę‰€'),
(102702, 'https://ror.org/02y8cd205', 'en', 1, 'https://ror.org/02y8cd205 Systems Research & Development Institute of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗē ”ē©¶ę‰€'),
(102703, 'https://ror.org/022vghp55', 'en', 1, 'https://ror.org/022vghp55 The Occupational Health Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗē”£ę„­åŒ»å­¦ęŒÆčˆˆč²”å›£'),
(102704, 'https://ror.org/03je5c526', 'en', 1, 'https://ror.org/03je5c526 Atatürk University Atatürk Üniversitesi'),
(102705, 'https://ror.org/043x4kv51', 'en', 1, 'https://ror.org/043x4kv51 Shin-Kuki General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£åŸ¼ēŽ‰å·ØęØ¹ć®ä¼šę–°ä¹…å–œē·åˆē—…é™¢'),
(102706, 'https://ror.org/00ga49p33', 'en', 1, 'https://ror.org/00ga49p33 Nagano Prefectural Police é•·é‡ŽēœŒč­¦åÆŸ'),
(102707, 'https://ror.org/055g2mf68', 'en', 1, 'https://ror.org/055g2mf68 Industrial Technology Center of Wakayama Prefecture å’Œę­Œå±±ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102708, 'https://ror.org/0561be828', 'en', 1, 'https://ror.org/0561be828 Iwate Prefectural Iwai Hospital å²©ę‰‹ēœŒē«‹ē£äŗ•ē—…é™¢'),
(102709, 'https://ror.org/046jdgp91', 'en', 1, 'https://ror.org/046jdgp91 Yokohama City Institute of Public Health ęØŖęµœåø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(102710, 'https://ror.org/048tbm396', 'en', 1, 'https://ror.org/048tbm396 Universitat de Torƭ University of Turin UniversitƠ degli Studi di Torino UniversitƤt Turin UniversitƩ de Turin'),
(102711, 'https://ror.org/03qhh6685', 'en', 1, 'https://ror.org/03qhh6685 Vector Magnetic Characteristic Technical Lavoratory ćƒ™ć‚Æćƒˆćƒ«ē£ę°—ē‰¹ę€§ęŠ€č”“ē ”ē©¶ę‰€'),
(102712, 'https://ror.org/0189v8q85', 'en', 1, 'https://ror.org/0189v8q85 Yame General Hospital å…¬ē«‹å…«å„³ē·åˆē—…é™¢'),
(102713, 'https://ror.org/032rjhh75', 'en', 1, 'https://ror.org/032rjhh75 Nagano Fruit Tree Experiment Station é•·é‡ŽēœŒęžœęØ¹č©¦éØ“å “'),
(102714, 'https://ror.org/03165bw24', 'en', 1, 'https://ror.org/03165bw24 Photocoding ćƒ•ć‚©ćƒˆć‚³ćƒ¼ćƒ‡ć‚£ćƒ³ć‚°'),
(102715, 'https://ror.org/0583bza14', 'en', 1, 'https://ror.org/0583bza14 Matsuoka Research Institute for Science äø€čˆ¬č²”å›£ę³•äŗŗę¾å²”ē§‘å­¦ē ”ē©¶ę‰€'),
(102716, 'https://ror.org/029yr5c74', 'en', 1, 'https://ror.org/029yr5c74 Kagawa Prefectural Agricultural Experiment Station é¦™å·ēœŒč¾²ę„­č©¦éØ“å “'),
(102717, 'https://ror.org/04a5zrn98', 'en', 1, 'https://ror.org/04a5zrn98 Chuno Kosei Hospital JAå²é˜œåŽšē”Ÿé€£äø­ęæƒåŽšē”Ÿē—…é™¢'),
(102718, 'https://ror.org/056mzm948', 'en', 1, 'https://ror.org/056mzm948 Kagoshima Prefectural Fisheries Technology and Development Center é¹æå…å³¶ēœŒę°“ē”£ęŠ€č”“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(102719, 'https://ror.org/02f3v2286', 'en', 1, 'https://ror.org/02f3v2286 Saga Prefectural Government ä½č³€ēœŒåŗ'),
(102720, 'https://ror.org/0430ewv75', 'en', 1, 'https://ror.org/0430ewv75 Jyuzen General Hospital äø€čˆ¬č²”å›£ę³•äŗŗē©å–„ä¼šåå…Øē·åˆē—…é™¢'),
(102721, 'https://ror.org/0457rd124', 'en', 1, 'https://ror.org/0457rd124 National Sanatorium Nagashima-Aiseien å›½ē«‹ē™‚é¤Šę‰€é•·å³¶ę„›ē”Ÿåœ’'),
(102722, 'https://ror.org/04byjrr35', 'en', 1, 'https://ror.org/04byjrr35 The Miyagi Prefectural Izunuma-Uchinuma Environmental Foundation å…¬ē›Šč²”å›£ę³•äŗŗå®®åŸŽēœŒä¼Šč±†ę²¼ćƒ»å†…ę²¼ē’°å¢ƒäæå…Øč²”å›£'),
(102723, 'https://ror.org/02zgfrv63', 'en', 1, 'https://ror.org/02zgfrv63 Kyoto Interdisciplinary Institute of Community Medicine äø€čˆ¬č²”å›£ę³•äŗŗäŗ¬éƒ½åœ°åŸŸåŒ»ē™‚å­¦éš›ē ”ē©¶ę‰€'),
(102724, 'https://ror.org/04f5ykh80', 'en', 1, 'https://ror.org/04f5ykh80 International Media Research Foundation č²”å›£ę³•äŗŗå›½éš›ćƒ”ćƒ‡ć‚£ć‚¢ē ”ē©¶č²”å›£'),
(102725, 'https://ror.org/014vaaj20', 'en', 1, 'https://ror.org/014vaaj20 Miyazaki Prefectural NOBEOKA Hospital å®®å“ŽēœŒē«‹å»¶å²”ē—…é™¢'),
(102726, 'https://ror.org/001my6k32', 'en', 1, 'https://ror.org/001my6k32 Akita Prefectural Institute of Fisheries ē§‹ē”°ēœŒę°“ē”£ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(102727, 'https://ror.org/044yw8e10', 'fr', 1, 'https://ror.org/044yw8e10 Center for Legal and Political Philosophy Centre de Philosophie Juridique et Politique'),
(102728, 'https://ror.org/05c2wqt85', 'en', 0, 'https://ror.org/05c2wqt85 Gifu Junior College of Health Science å²é˜œäæå„å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102729, 'https://ror.org/044fpa022', 'en', 1, 'https://ror.org/044fpa022 Suiseikai Kajikawa Hospital åŒ»ē™‚ę³•äŗŗēæ ęø…ä¼šēæ ęø…ä¼šę¢¶å·ē—…é™¢'),
(102730, 'https://ror.org/02cmwmx57', 'en', 1, 'https://ror.org/02cmwmx57 Biliran Province State University'),
(102731, 'https://ror.org/01cjdqj81', 'en', 1, 'https://ror.org/01cjdqj81 The Japan Forestry Association å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§ę—„ęœ¬å±±ęž—ä¼š'),
(102732, 'https://ror.org/00rmfsa57', 'en', 1, 'https://ror.org/00rmfsa57 SongShan ShaoLin WuShu College åµ©å±±å°‘ęž—ę­¦ęœÆčŒäøšå­¦é™¢'),
(102733, 'https://ror.org/00cjz8690', 'en', 1, 'https://ror.org/00cjz8690 Tohoku Bunkyo Junior College ę±åŒ—ę–‡ę•™å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102734, 'https://ror.org/05rhq6v14', 'en', 1, 'https://ror.org/05rhq6v14 Motojima General hospital åŒ»ē™‚ę³•äŗŗå³¶é–€ä¼šęœ¬å³¶ē·åˆē—…é™¢'),
(102735, 'https://ror.org/00zcmwh29', 'en', 1, 'https://ror.org/00zcmwh29 Hiroshima Prefectural Technology Research Institute åŗƒå³¶ēœŒē«‹ē·åˆęŠ€č”“ē ”ē©¶ę‰€'),
(102736, 'https://ror.org/04d8f7w44', 'en', 1, 'https://ror.org/04d8f7w44 Saga Prefectural Upland Farming Research and Extension Center ä½č³€ēœŒäøŠå “å–¶č¾²ć‚»ćƒ³ć‚æćƒ¼'),
(102737, 'https://ror.org/05c1b0t46', 'en', 1, 'https://ror.org/05c1b0t46 Fukui Health Sciences University ē¦äŗ•åŒ»ē™‚å¤§å­¦'),
(102738, 'https://ror.org/016ryph89', 'en', 1, 'https://ror.org/016ryph89 Japan Society for Design Engineering å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čØ­čØˆå·„å­¦ä¼š'),
(102739, 'https://ror.org/01t7rrn64', 'en', 1, 'https://ror.org/01t7rrn64 Niigata Industrial Creation Organization å…¬ē›Šč²”å›£ę³•äŗŗć«ć„ćŒćŸē”£ę„­å‰µé€ ę©Ÿę§‹'),
(102740, 'https://ror.org/034qq8j36', 'en', 1, 'https://ror.org/034qq8j36 High Pressure Institute of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é«˜åœ§åŠ›ęŠ€č”“å”ä¼š'),
(102741, 'https://ror.org/02jm2sa52', 'en', 1, 'https://ror.org/02jm2sa52 The Gunma Prefectural Education Center ē¾¤é¦¬ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(102742, 'https://ror.org/05tre4438', 'en', 1, 'https://ror.org/05tre4438 Nagano Prefectural Government é•·é‡ŽēœŒåŗ'),
(102743, 'https://ror.org/04rpc4v21', 'en', 1, 'https://ror.org/04rpc4v21 Hokkaido Prefectural Government åŒ—ęµ·é“åŗ'),
(102744, 'https://ror.org/00ytawf04', 'en', 1, 'https://ror.org/00ytawf04 Akita Prefectural Government ē§‹ē”°ēœŒåŗ'),
(102745, 'https://ror.org/030y7x049', 'en', 1, 'https://ror.org/030y7x049 Business Research Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗä¼ę„­ē ”ē©¶ä¼š'),
(102746, 'https://ror.org/022mwkf84', 'en', 1, 'https://ror.org/022mwkf84 THE General Insurance Institute Of Japan å…¬ē›Šč²”å›£ę³•äŗŗęå®³äæé™ŗäŗ‹ę„­ē·åˆē ”ē©¶ę‰€'),
(102747, 'https://ror.org/01dfakn83', 'en', 1, 'https://ror.org/01dfakn83 Gunma Prefectural Livestock Experiment Station ē¾¤é¦¬ēœŒē•œē”£č©¦éØ“å “'),
(102748, 'https://ror.org/005qbkr94', 'en', 1, 'https://ror.org/005qbkr94 Association for Nuclear Technology in Medicine å…¬ē›Šč²”å›£ę³•äŗŗåŒ»ē”ØåŽŸå­åŠ›ęŠ€č”“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(102749, 'https://ror.org/05ajree11', 'en', 1, 'https://ror.org/05ajree11 Kohka Public Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå…¬ē«‹ē”²č³€ē—…é™¢'),
(102750, 'https://ror.org/02wqt4811', 'en', 1, 'https://ror.org/02wqt4811 Fukushima Forestry Research Center ē¦å³¶ēœŒęž—ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102751, 'https://ror.org/02qahtf82', 'en', 0, 'https://ror.org/02qahtf82 Naval State University'),
(102752, 'https://ror.org/00qsrmq07', 'en', 1, 'https://ror.org/00qsrmq07 Japan Railway Construction, Transport and Technology Agency ē‹¬ē«‹č”Œę”æę³•äŗŗé‰„é“å»ŗčØ­ćƒ»é‹č¼øę–½čØ­ę•“å‚™ę”Æę“ę©Ÿę§‹'),
(102753, 'https://ror.org/00xcsac28', 'en', 1, 'https://ror.org/00xcsac28 Kochi Prefectural Government 高矄県庁'),
(102754, 'https://ror.org/028p89q89', 'en', 1, 'https://ror.org/028p89q89 North Eastern Industrial Research Center of Shiga Prefecture ę»‹č³€ēœŒę±åŒ—éƒØå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102755, 'https://ror.org/05g3mes96', 'en', 1, 'https://ror.org/05g3mes96 Latvijas Universitāte Latvijos universitetas University of Latvia Латвийский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(102756, 'https://ror.org/01y42f538', 'en', 1, 'https://ror.org/01y42f538 Japan Canners Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē¼¶č©°ć³ć‚“č©°ćƒ¬ćƒˆćƒ«ćƒˆé£Ÿå“å”ä¼š'),
(102757, 'https://ror.org/03d85wd75', 'en', 1, 'https://ror.org/03d85wd75 Urban Renaissance Agency ē‹¬ē«‹č”Œę”æę³•äŗŗéƒ½åø‚å†ē”Ÿę©Ÿę§‹'),
(102758, 'https://ror.org/03eyzfr91', 'en', 1, 'https://ror.org/03eyzfr91 National Sanatorium Okinawa Airakuen å›½ē«‹ē™‚é¤Šę‰€ę²–ēø„ę„›ę„½åœ’'),
(102759, 'https://ror.org/03crfce94', 'en', 1, 'https://ror.org/03crfce94 Livestock Industry''s Environmental Improvement Organization äø€čˆ¬č²”å›£ę³•äŗŗē•œē”£ē’°å¢ƒę•“å‚™ę©Ÿę§‹'),
(102760, 'https://ror.org/025w3tf57', 'en', 1, 'https://ror.org/025w3tf57 Research Institute on Building Cost äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰ć‚³ć‚¹ćƒˆē®”ē†ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę‰€'),
(102761, 'https://ror.org/03qfes209', 'en', 1, 'https://ror.org/03qfes209 Sugiyama Chemical and Industrial Laboratory äø€čˆ¬č²”å›£ę³•äŗŗę‰å±±ē”£ę„­åŒ–å­¦ē ”ē©¶ę‰€'),
(102762, 'https://ror.org/0227zyy26', 'en', 1, 'https://ror.org/0227zyy26 Toyota Regional Medical Center å…¬ē›Šč²”å›£ę³•äŗŗč±Šē”°åœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(102763, 'https://ror.org/00xfecy77', 'en', 1, 'https://ror.org/00xfecy77 Aichi Center for Industry and Science Technology ć‚ć„ć”ē”£ę„­ē§‘å­¦ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(102764, 'https://ror.org/03m8f4963', 'en', 1, 'https://ror.org/03m8f4963 Itami Kousei Neurosurgical Hospital ä¼Šäø¹ę’ē”Ÿč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(102765, 'https://ror.org/004bcc434', 'en', 1, 'https://ror.org/004bcc434 Fukuoka City Education Center ē¦å²”åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(102766, 'https://ror.org/050x4es15', 'en', 1, 'https://ror.org/050x4es15 Niigata Prefectural Fisheries and Marine Research Institute ę–°ę½ŸēœŒę°“ē”£ęµ·ę“‹ē ”ē©¶ę‰€'),
(102767, 'https://ror.org/011rjky44', 'en', 1, 'https://ror.org/011rjky44 NIIZASHIKI Central General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę­¦č”µé‡Žä¼šę–°åŗ§åæ—ęœØäø­å¤®ē·åˆē—…é™¢'),
(102768, 'https://ror.org/033wde937', 'en', 1, 'https://ror.org/033wde937 Fussa Hospital å…¬ē«‹ē¦ē”Ÿē—…é™¢'),
(102769, 'https://ror.org/02490gh04', 'en', 1, 'https://ror.org/02490gh04 Shizuoka Professional University Junior College of Agriculture é™å²”ēœŒē«‹č¾²ęž—ē’°å¢ƒå°‚é–€č·å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102770, 'https://ror.org/018wh2466', 'en', 1, 'https://ror.org/018wh2466 Japan Food Hygiene Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“č”›ē”Ÿå”ä¼š'),
(102771, 'https://ror.org/03w0jkt32', 'en', 1, 'https://ror.org/03w0jkt32 Technology Research Association for Next generation natural products chemistry ę¬”äø–ä»£å¤©ē„¶ē‰©åŒ–å­¦ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(102772, 'https://ror.org/02nq4wt82', 'en', 1, 'https://ror.org/02nq4wt82 Hochschule Schmalkalden Schmalkalden University of Applied Sciences'),
(102773, 'https://ror.org/01cm4sr79', 'lt', 1, 'https://ror.org/01cm4sr79 Klaipėdos valstybinė kolegija / Higher Education Institution'),
(102774, 'https://ror.org/053skcm44', 'en', 1, 'https://ror.org/053skcm44 Defense Research Center äø€čˆ¬č²”å›£ę³•äŗŗćƒ‡ć‚£ćƒ•ć‚§ćƒ³ć‚¹ćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(102775, 'https://ror.org/05qxwej02', 'en', 1, 'https://ror.org/05qxwej02 THE Japan Soy Sauce Technology Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é†¤ę²¹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102776, 'https://ror.org/00941jr33', 'en', 1, 'https://ror.org/00941jr33 The Japan Electric Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę°—å”ä¼š'),
(102777, 'https://ror.org/00gn1bk57', 'en', 1, 'https://ror.org/00gn1bk57 Japan Gastroenterological Endoscopy Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¶ˆåŒ–å™Øå†…č¦–é”å­¦ä¼š'),
(102778, 'https://ror.org/05t9myw53', 'en', 1, 'https://ror.org/05t9myw53 Nakatsugawa Municipal General Hospital ē·åˆē—…é™¢äø­ę“„å·åø‚ę°‘ē—…é™¢'),
(102779, 'https://ror.org/02a6etc13', 'en', 1, 'https://ror.org/02a6etc13 Japan Racing Horse Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē«¶čµ°é¦¬å”ä¼š'),
(102780, 'https://ror.org/04skj0t32', 'en', 1, 'https://ror.org/04skj0t32 Ishikawa Agriculture and Forestry Research Center ēŸ³å·ēœŒč¾²ęž—ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102781, 'https://ror.org/04bht2a94', 'en', 1, 'https://ror.org/04bht2a94 Ise Municipal General Hospital åø‚ē«‹ä¼Šå‹¢ē·åˆē—…é™¢'),
(102782, 'https://ror.org/04k6ang09', 'en', 1, 'https://ror.org/04k6ang09 Nagoya Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗåå¤å±‹åø‚åŒ»åø«ä¼š'),
(102783, 'https://ror.org/0188yz413', 'en', 1, 'https://ror.org/0188yz413 Kyorin University ęęž—å¤§å­¦'),
(102784, 'https://ror.org/00yw7a334', 'en', 1, 'https://ror.org/00yw7a334 Nerima Hikarigaoka Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗåœ°åŸŸåŒ»ē™‚ęŒÆčˆˆå”ä¼šē·“é¦¬å…‰ćŒäø˜ē—…é™¢'),
(102785, 'https://ror.org/048b6ft22', 'en', 1, 'https://ror.org/048b6ft22 Ibaraki Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗčŒØęœØåø‚åŒ»åø«ä¼š'),
(102786, 'https://ror.org/01m316d02', 'en', 1, 'https://ror.org/01m316d02 Center for Reproductive Medicine and Implantation Research, Sugiyama Clinic ę‰å±±ē”£å©¦äŗŗē§‘'),
(102787, 'https://ror.org/042q4rc86', 'en', 1, 'https://ror.org/042q4rc86 HLA Laboratory å…¬ē›Šč²”å›£ę³•äŗŗHLA研究所'),
(102788, 'https://ror.org/01wpjrv46', 'en', 1, 'https://ror.org/01wpjrv46 Defense Facilities Environment Improvement Association äø€čˆ¬č²”å›£ę³•äŗŗé˜²č”›ę–½čØ­å”ä¼š'),
(102789, 'https://ror.org/05xs52z55', 'en', 1, 'https://ror.org/05xs52z55 The Takeda Foundation äø€čˆ¬č²”å›£ę³•äŗŗę­¦ē”°čØˆęø¬å…ˆē«ÆēŸ„č²”å›£'),
(102790, 'https://ror.org/02qnq4988', 'en', 1, 'https://ror.org/02qnq4988 Japan Center for Regional Development äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(102791, 'https://ror.org/01eeckp72', 'en', 1, 'https://ror.org/01eeckp72 The Electrochemical Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗé›»ę°—åŒ–å­¦ä¼š'),
(102792, 'https://ror.org/05gf6be35', 'en', 1, 'https://ror.org/05gf6be35 Japan Prosthodontic Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č£œē¶“ę­Æē§‘å­¦ä¼š'),
(102793, 'https://ror.org/01psvah38', 'en', 1, 'https://ror.org/01psvah38 Lasso Informatics'),
(102794, 'https://ror.org/03dgaxm65', 'en', 1, 'https://ror.org/03dgaxm65 The Japan P.E.N. club äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒšćƒ³ć‚Æćƒ©ćƒ–'),
(102795, 'https://ror.org/051tr1y59', 'en', 1, 'https://ror.org/051tr1y59 Luxembourg Centre for Systems Biomedicine'),
(102796, 'https://ror.org/01yen8f82', 'en', 1, 'https://ror.org/01yen8f82 Yachiyo Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ę–°å’Œä¼šå…«åƒä»£ē—…é™¢'),
(102797, 'https://ror.org/02e420914', 'en', 1, 'https://ror.org/02e420914 JAę–°ę½ŸåŽšē”Ÿé€£ęŸå“Žē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ Kashiwazaki General Hospital and Medical Center'),
(102798, 'https://ror.org/01aqcpe75', 'en', 1, 'https://ror.org/01aqcpe75 Japan Association for Building Research Promotion äø€čˆ¬ē¤¾å›£ę³•äŗŗå»ŗēÆ‰ē ”ē©¶ęŒÆčˆˆå”ä¼š'),
(102799, 'https://ror.org/040ja7936', 'en', 1, 'https://ror.org/040ja7936 Japan Energy Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•åŠ›å”ä¼š'),
(102800, 'https://ror.org/04rnxkh71', 'en', 1, 'https://ror.org/04rnxkh71 Moscow State University of Psychology & Education Московский Š³Š¾ŃŃƒŠ“арственный психолого-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(102801, 'https://ror.org/00yaak728', 'en', 1, 'https://ror.org/00yaak728 JAē§‹ē”°åŽšē”Ÿé€£å¤§ę›²åŽšē”ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ Omagari Kousei Medical Center'),
(102802, 'https://ror.org/00dzmf738', 'en', 1, 'https://ror.org/00dzmf738 Islamic Azad University Roudehen Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų±ŁˆŲÆŁ‡Ł†'),
(102803, 'https://ror.org/05sj3n476', 'en', 1, 'https://ror.org/05sj3n476 Tokyo University of Science ę±äŗ¬ē†ē§‘å¤§å­¦'),
(102804, 'https://ror.org/05qemrn04', 'en', 1, 'https://ror.org/05qemrn04 Tokyo Metropolitan College of Industrial Technology ę±äŗ¬éƒ½ē«‹ē”£ę„­ęŠ€č”“é«˜ē­‰å°‚é–€å­¦ę ”'),
(102805, 'https://ror.org/0468zj874', 'en', 1, 'https://ror.org/0468zj874 Tokyo Health Service Association å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬éƒ½äŗˆé˜²åŒ»å­¦å”ä¼š'),
(102806, 'https://ror.org/02pec9g39', 'en', 1, 'https://ror.org/02pec9g39 Iwate Prefectural Inland Fisheries Technology Center å²©ę‰‹ēœŒå†…ę°“é¢ę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102807, 'https://ror.org/002b4pj73', 'en', 1, 'https://ror.org/002b4pj73 Japan Foundation for AIDS Prevention å…¬ē›Šč²”å›£ę³•äŗŗć‚Øć‚¤ć‚ŗäŗˆé˜²č²”å›£'),
(102808, 'https://ror.org/02swm2f23', 'en', 1, 'https://ror.org/02swm2f23 Tokyo Metropolitan Park Association å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬éƒ½å…¬åœ’å”ä¼š'),
(102809, 'https://ror.org/052vbfx84', 'en', 1, 'https://ror.org/052vbfx84 The Nature Conservation Society of Japan å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č‡Ŗē„¶äæč­·å”ä¼š'),
(102810, 'https://ror.org/02jzg8331', 'en', 1, 'https://ror.org/02jzg8331 Okinawa Churaumi Aquarium ę²–ēø„ē¾Žć‚‰ęµ·ę°“ę—é¤Ø'),
(102811, 'https://ror.org/0314n2018', 'en', 1, 'https://ror.org/0314n2018 Shiretoko Nature Foundation å…¬ē›Šč²”å›£ę³•äŗŗēŸ„åŗŠč²”å›£'),
(102812, 'https://ror.org/00xhy9s30', 'en', 1, 'https://ror.org/00xhy9s30 Toyama International Center å…¬ē›Šč²”å›£ę³•äŗŗćØć‚„ć¾å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(102813, 'https://ror.org/02ehwsx58', 'en', 1, 'https://ror.org/02ehwsx58 Fujita General Hospital å…¬ē«‹č—¤ē”°ē·åˆē—…é™¢'),
(102814, 'https://ror.org/02wt02e97', 'en', 1, 'https://ror.org/02wt02e97 River Center Of Hokkaido äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“ę²³å·č²”å›£'),
(102815, 'https://ror.org/05e9q5230', 'en', 1, 'https://ror.org/05e9q5230 Tokyo Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½åŒ»åø«ä¼š'),
(102816, 'https://ror.org/002tq9174', 'en', 1, 'https://ror.org/002tq9174 Akashio Research Institute of Kagawa Prefecture é¦™å·ēœŒčµ¤ę½®ē ”ē©¶ę‰€'),
(102817, 'https://ror.org/057p7sf36', 'en', 1, 'https://ror.org/057p7sf36 Japan Testing Center for Construction Materials äø€čˆ¬č²”å›£ę³•äŗŗå»ŗęč©¦éØ“ć‚»ćƒ³ć‚æćƒ¼'),
(102818, 'https://ror.org/021djqe90', 'en', 1, 'https://ror.org/021djqe90 Ikegami General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę¾å’Œä¼šę± äøŠē·åˆē—…é™¢'),
(102819, 'https://ror.org/05yc82y16', 'en', 1, 'https://ror.org/05yc82y16 Kamma Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåšę„›ä¼šč…é–“čØ˜åæµē—…é™¢'),
(102820, 'https://ror.org/02r1pzn16', 'fr', 0, 'https://ror.org/02r1pzn16 HƓpital Saint-FranƧois d''Assise'),
(102821, 'https://ror.org/00tydck69', 'en', 1, 'https://ror.org/00tydck69 Software Information Center äø€čˆ¬č²”å›£ę³•äŗŗć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(102822, 'https://ror.org/05symbg58', 'it', 1, 'https://ror.org/05symbg58 Istituto Nazionale di Fisica Nucleare, Sezione di Pisa National Institute for Nuclear Physics, Pisa Division'),
(102823, 'https://ror.org/006m32489', 'en', 1, 'https://ror.org/006m32489 Hyogo Prefectural Government å…µåŗ«ēœŒåŗ'),
(102824, 'https://ror.org/05k7hsv70', 'en', 1, 'https://ror.org/05k7hsv70 Hiroshima City Education Center åŗƒå³¶åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(102825, 'https://ror.org/02zv7ne49', 'en', 1, 'https://ror.org/02zv7ne49 South Australian Museum'),
(102826, 'https://ror.org/01m6drz27', 'en', 1, 'https://ror.org/01m6drz27 Tokoha Gakuen Junior College åøøč‘‰å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102827, 'https://ror.org/01h394058', 'pt', 1, 'https://ror.org/01h394058 Instituto Nacional de Administração Instituto Nacional de Administração, I. P. National Institute for Public Administration'),
(102828, 'https://ror.org/04dx9xj68', 'en', 1, 'https://ror.org/04dx9xj68 RajaRajeswari College of Engineering'),
(102829, 'https://ror.org/04aawnm78', 'en', 1, 'https://ror.org/04aawnm78 Technology Research Association for Future Additive Manufacturing ęŠ€č”“ē ”ē©¶ēµ„åˆę¬”äø–ä»£3Dē©å±¤é€ å½¢ęŠ€č”“ē·åˆé–‹ē™ŗę©Ÿę§‹'),
(102830, 'https://ror.org/041cyqf41', 'en', 1, 'https://ror.org/041cyqf41 Tokyo Veterinary Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½ē£åŒ»åø«ä¼š'),
(102831, 'https://ror.org/04c7gjr63', 'en', 1, 'https://ror.org/04c7gjr63 Fujioka General Hospital å…¬ē«‹č—¤å²”ē·åˆē—…é™¢'),
(102832, 'https://ror.org/05amt1h64', 'en', 1, 'https://ror.org/05amt1h64 Electron Science Institute äø€čˆ¬č²”å›£ę³•äŗŗé›»å­ē§‘å­¦ē ”ē©¶ę‰€'),
(102833, 'https://ror.org/02zdnfn05', 'fr', 1, 'https://ror.org/02zdnfn05 Institut National Agronomique de Tunisie المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŁŁ„Ų§Ų­ŁŠŲ© ŲØŲŖŁˆŁ†Ų³'),
(102834, 'https://ror.org/00f8c2k07', 'en', 1, 'https://ror.org/00f8c2k07 Foundation of River&Basin Integrated Communications äø€čˆ¬č²”å›£ę³•äŗŗę²³å·ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(102835, 'https://ror.org/00jcmeh55', 'en', 1, 'https://ror.org/00jcmeh55 University of Emerging Technologies Університет новітніх технологій'),
(102836, 'https://ror.org/047svzh56', 'en', 1, 'https://ror.org/047svzh56 Wakakusa-Tatsuma Rehabilitation Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč‹„å¼˜ä¼šć‚ć‹ćć•ē«œé–“ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(102837, 'https://ror.org/03mffej36', 'en', 1, 'https://ror.org/03mffej36 Shiga Prefectural Government ę»‹č³€ēœŒåŗ'),
(102838, 'https://ror.org/01ac0ay07', 'en', 1, 'https://ror.org/01ac0ay07 Kawasaki City Institute for Public Health å·å“Žåø‚å„åŗ·å®‰å…Øē ”ē©¶ę‰€'),
(102839, 'https://ror.org/04kaff912', 'en', 1, 'https://ror.org/04kaff912 Osaka City Research Center of Environmental Science å¤§é˜Ŗåø‚ē«‹ē’°å¢ƒē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102840, 'https://ror.org/04av5vp66', 'en', 1, 'https://ror.org/04av5vp66 Public Telephone Communication å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å…¬č”†é›»č©±ä¼š'),
(102841, 'https://ror.org/0208kvs35', 'en', 1, 'https://ror.org/0208kvs35 Nagoya Public Institute of Medicine äø€čˆ¬č²”å›£ę³•äŗŗåå¤å±‹å…¬č”†åŒ»å­¦ē ”ē©¶ę‰€'),
(102842, 'https://ror.org/008x6wy98', 'id', 1, 'https://ror.org/008x6wy98 Politeknik Kesehatan Bhakti Setya Indonesia'),
(102843, 'https://ror.org/05ds4px46', 'en', 1, 'https://ror.org/05ds4px46 Ibaraki Prefectural Forestry Research Institute čŒØåŸŽēœŒęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102844, 'https://ror.org/051v5t493', 'en', 1, 'https://ror.org/051v5t493 Kyoto University of Foreign Studies äŗ¬éƒ½å¤–å›½čŖžå¤§å­¦'),
(102845, 'https://ror.org/01gxncx39', 'en', 1, 'https://ror.org/01gxncx39 JAē„žå„ˆå·åŽšē”Ÿé€£ē›øęØ”åŽŸå”åŒē—…é™¢ Sagamihara Kyodo Hospital'),
(102846, 'https://ror.org/00qar5s49', 'en', 1, 'https://ror.org/00qar5s49 The Japan Society of Information and Communication å…¬ē›Šč²”å›£ę³•äŗŗęƒ…å ±é€šäæ”å­¦ä¼š'),
(102847, 'https://ror.org/03acrzv41', 'en', 1, 'https://ror.org/03acrzv41 North China University of Water Resources and Electric Power åŽåŒ—ę°“åˆ©ę°“ē”µå¤§å­¦'),
(102848, 'https://ror.org/01ds1xe75', 'fr', 0, 'https://ror.org/01ds1xe75 Laboratoire d''Immunologie et d''ImmunothƩrapie des Cancers'),
(102849, 'https://ror.org/04tac8f56', 'en', 1, 'https://ror.org/04tac8f56 Wild Bird Society of Japan å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é‡Žé³„ć®ä¼š'),
(102850, 'https://ror.org/043hmxn40', 'en', 1, 'https://ror.org/043hmxn40 Takeda General Hospital äø€čˆ¬č²”å›£ę³•äŗŗē«¹ē”°å„åŗ·č²”å›£ē«¹ē”°ē¶œåˆē—…é™¢'),
(102851, 'https://ror.org/057sfvh62', 'en', 1, 'https://ror.org/057sfvh62 Chidoribashi Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗē¦å²”åŒ»ē™‚å›£åƒé³„ę©‹ē—…é™¢'),
(102852, 'https://ror.org/04cqf4q11', 'en', 1, 'https://ror.org/04cqf4q11 Miyamoto Hospital åŒ»ē™‚ę³•äŗŗē›”čŖ ä¼šå®®ęœ¬ē—…é™¢'),
(102853, 'https://ror.org/000w8yc17', 'en', 1, 'https://ror.org/000w8yc17 Okinawa Prefectural Institute of Animal Health ę²–ēø„ēœŒå®¶ē•œč”›ē”Ÿč©¦éØ“å “'),
(102854, 'https://ror.org/05j0zv629', 'en', 1, 'https://ror.org/05j0zv629 Kansai Institute of Information Systems äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(102855, 'https://ror.org/04z8fv018', 'en', 1, 'https://ror.org/04z8fv018 The Mushroom Research Institute of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćć®ć“ē ”ē©¶ę‰€'),
(102856, 'https://ror.org/01c8g5837', 'en', 1, 'https://ror.org/01c8g5837 Sanda City Hospital 三田市民病院'),
(102857, 'https://ror.org/04t0wry96', 'en', 1, 'https://ror.org/04t0wry96 Institute for Health Outcomes & Process Evaluation Research ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗå„åŗ·åŒ»ē™‚č©•ä¾”ē ”ē©¶ę©Ÿę§‹'),
(102858, 'https://ror.org/004713342', 'en', 1, 'https://ror.org/004713342 Japanese Society for Rehabilitation of Persons with Disabilities å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éšœå®³č€…ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å”ä¼š'),
(102859, 'https://ror.org/04zp58p78', 'en', 1, 'https://ror.org/04zp58p78 Japan Cement Association äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚»ćƒ”ćƒ³ćƒˆå”ä¼š'),
(102860, 'https://ror.org/00k4p0q25', 'en', 1, 'https://ror.org/00k4p0q25 Kurihara Central Hospital ę —åŽŸåø‚ē«‹ę —åŽŸäø­å¤®ē—…é™¢'),
(102861, 'https://ror.org/05bpbnx46', 'en', 1, 'https://ror.org/05bpbnx46 Copenhagen University Hospital KĆøbenhavns Universitetshospital'),
(102862, 'https://ror.org/052eb8626', 'en', 1, 'https://ror.org/052eb8626 Shimane Institute Of Health Science å…¬ē›Šč²”å›£ę³•äŗŗćƒ˜ćƒ«ć‚¹ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼å³¶ę ¹'),
(102863, 'https://ror.org/04fmayc82', 'fr', 1, 'https://ror.org/04fmayc82 Centre d''Investigation Clinique - Innovation Technologique Clinical Investigation Centre for Innovative Technology Network'),
(102864, 'https://ror.org/01s3ggx63', 'en', 1, 'https://ror.org/01s3ggx63 Mitoyo General Hospital äø‰č±Šē·åˆē—…é™¢'),
(102865, 'https://ror.org/034efzt69', 'en', 1, 'https://ror.org/034efzt69 Kizawa Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŽšē”Ÿä¼šęœØę²¢čØ˜åæµē—…é™¢'),
(102866, 'https://ror.org/02pq29p90', 'it', 1, 'https://ror.org/02pq29p90 Istituto Nazionale di Fisica Nucleare, Sezione di Catania National Institute for Nuclear Physics, Catania Division'),
(102867, 'https://ror.org/05bgs3h91', 'en', 1, 'https://ror.org/05bgs3h91 MiCAN Technologies Inc. MiCAN Technologies Inc. (Japan) ćƒžć‚¤ć‚­ćƒ£ćƒ³ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(102868, 'https://ror.org/04ahz4m50', 'en', 1, 'https://ror.org/04ahz4m50 The Hokkaido Centre for Family Medicine åŒ»ē™‚ę³•äŗŗåŒ—ęµ·é“å®¶åŗ­åŒ»ē™‚å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(102869, 'https://ror.org/02t5tv480', 'en', 1, 'https://ror.org/02t5tv480 Aomori Prefectural Nuclear Power Safety Center é’ę£®ēœŒåŽŸå­åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(102870, 'https://ror.org/05n6vkd45', 'en', 1, 'https://ror.org/05n6vkd45 Miyazaki Prefectural Institute for Public Health and Environment å®®å“ŽēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(102871, 'https://ror.org/025rrx658', 'it', 1, 'https://ror.org/025rrx658 Istituto Nazionale di Fisica Nucleare, Roma Tor Vergata National Institute for Nuclear Physics, Rome Tor Vergata'),
(102872, 'https://ror.org/00kc4c253', 'en', 0, 'https://ror.org/00kc4c253 Information Technology Association of America'),
(102873, 'https://ror.org/05jhmfs41', 'en', 1, 'https://ror.org/05jhmfs41 Zama General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć‚øćƒ£ćƒ‘ćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚¢ćƒ©ć‚¤ćƒ³ć‚¹åŗ§é–“ē·åˆē—…é™¢'),
(102874, 'https://ror.org/018402t03', 'en', 1, 'https://ror.org/018402t03 The Iron and Steel Institute of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é‹¼å”ä¼š'),
(102875, 'https://ror.org/05japqc65', 'en', 1, 'https://ror.org/05japqc65 International Research Institute for Nuclear Decommissioning ęŠ€č”“ē ”ē©¶ēµ„åˆå›½éš›å»ƒē‚‰ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(102876, 'https://ror.org/00kdk2k41', 'en', 1, 'https://ror.org/00kdk2k41 Okinawa Prefectural Fisheries Research and Extension Center ę²–ēø„ēœŒę°“ē”£ęµ·ę“‹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102877, 'https://ror.org/02r472m60', 'en', 1, 'https://ror.org/02r472m60 Chiba Prefectural Livestock Research Center åƒč‘‰ēœŒē•œē”£ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102878, 'https://ror.org/03wk7a387', 'en', 1, 'https://ror.org/03wk7a387 The Graduate School of Project Design äŗ‹ę„­ę§‹ęƒ³å¤§å­¦é™¢å¤§å­¦'),
(102879, 'https://ror.org/0529fhg57', 'en', 1, 'https://ror.org/0529fhg57 Morioka Yuai Hospital åŒ»ē™‚ę³•äŗŗå‹ę„›ä¼šē››å²”å‹ę„›ē—…é™¢'),
(102880, 'https://ror.org/04r0rzf56', 'en', 1, 'https://ror.org/04r0rzf56 Komazawa Women''s Junior College é§’ę²¢å„³å­ēŸ­ęœŸå¤§å­¦'),
(102881, 'https://ror.org/0476qjd65', 'en', 1, 'https://ror.org/0476qjd65 Hakusan Nature Conservation Center ēŸ³å·ēœŒē™½å±±č‡Ŗē„¶äæč­·ć‚»ćƒ³ć‚æćƒ¼'),
(102882, 'https://ror.org/00rw99n54', 'en', 1, 'https://ror.org/00rw99n54 Institute of Local Government äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½č‡Ŗę²»å”ä¼š'),
(102883, 'https://ror.org/03ccw9774', 'en', 1, 'https://ror.org/03ccw9774 Fukui Prefectural Government ē¦äŗ•ēœŒåŗ'),
(102884, 'https://ror.org/01e7bym67', 'en', 1, 'https://ror.org/01e7bym67 Aomori Prefectural Government é’ę£®ēœŒåŗ'),
(102885, 'https://ror.org/0381yqw52', 'en', 1, 'https://ror.org/0381yqw52 Fukushima Institute of Public Health ē¦å³¶ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(102886, 'https://ror.org/05hw4mw40', 'en', 1, 'https://ror.org/05hw4mw40 Sakuyo Junior College ä½œé™½éŸ³ę„½ēŸ­ęœŸå¤§å­¦'),
(102887, 'https://ror.org/0263b6f89', 'en', 1, 'https://ror.org/0263b6f89 Japanese Society of Allergology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ¬ćƒ«ć‚®ćƒ¼å­¦ä¼š'),
(102888, 'https://ror.org/05m0neb33', 'en', 1, 'https://ror.org/05m0neb33 Nagoya College of Music åå¤å±‹éŸ³ę„½å¤§å­¦'),
(102889, 'https://ror.org/01st30669', 'it', 1, 'https://ror.org/01st30669 Istituto Nazionale di Fisica Nucleare, Sezione di Pavia National Institute for Nuclear Physics, Pavia Section'),
(102890, 'https://ror.org/00yd3y871', 'en', 1, 'https://ror.org/00yd3y871 Dr. Om Parkash Eye Institute Pvt Ltd'),
(102891, 'https://ror.org/023s81402', 'en', 1, 'https://ror.org/023s81402 The Japanese Red Cross Junior College of Akita ę—„ęœ¬čµ¤åå­—ē§‹ē”°ēŸ­ęœŸå¤§å­¦'),
(102892, 'https://ror.org/03vsze143', 'en', 1, 'https://ror.org/03vsze143 Niigata Prefectural Inland Water Fisheries Experiment Station ę–°ę½ŸēœŒå†…ę°“é¢ę°“ē”£č©¦éØ“å “'),
(102893, 'https://ror.org/008z75r39', 'en', 1, 'https://ror.org/008z75r39 Kumamoto Prefectural Institute of Public-Health and Environmental Science ē†Šęœ¬ēœŒäæå„ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(102894, 'https://ror.org/05rk57t35', 'en', 1, 'https://ror.org/05rk57t35 Sendai Akamon College ä»™å°čµ¤é–€ēŸ­ęœŸå¤§å­¦'),
(102895, 'https://ror.org/01hrftf03', 'en', 1, 'https://ror.org/01hrftf03 Japan Maritime Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęµ·äŗ‹ć‚»ćƒ³ć‚æćƒ¼'),
(102896, 'https://ror.org/02f7src36', 'en', 1, 'https://ror.org/02f7src36 Sainokuni Higashiomiya Medical Center åŒ»ē™‚ę³•äŗŗē¤¾å›£å”å‹ä¼šå½©ć®å›½ę±å¤§å®®ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(102897, 'https://ror.org/0028wg630', 'en', 1, 'https://ror.org/0028wg630 Global Environmental Forum äø€čˆ¬č²”å›£ę³•äŗŗåœ°ēƒćƒ»äŗŗé–“ē’°å¢ƒćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(102898, 'https://ror.org/04hrfeg06', 'en', 1, 'https://ror.org/04hrfeg06 Nakagami Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę•¬ę„›ä¼šäø­é ­ē—…é™¢'),
(102899, 'https://ror.org/05dcna836', 'en', 1, 'https://ror.org/05dcna836 The Acoustical Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬éŸ³éŸæå­¦ä¼š'),
(102900, 'https://ror.org/03x38rw49', 'en', 1, 'https://ror.org/03x38rw49 Shinozaki Medical Clinic ēÆ å“Žå†…ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(102901, 'https://ror.org/04aa21062', 'en', 1, 'https://ror.org/04aa21062 Technology Research Association of Highly Efficient Gene Design é«˜ę©Ÿčƒ½éŗä¼å­ćƒ‡ć‚¶ć‚¤ćƒ³ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(102902, 'https://ror.org/04jh8cx24', 'en', 1, 'https://ror.org/04jh8cx24 Professional Institute of International Fashion å›½éš›ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(102903, 'https://ror.org/00259hn89', 'en', 1, 'https://ror.org/00259hn89 Miyoshi Central Hospital 市立三欔中央病院'),
(102904, 'https://ror.org/05vsgas81', 'en', 1, 'https://ror.org/05vsgas81 Nagoya City Institute For Environmental Sciences åå¤å±‹åø‚ē’°å¢ƒē§‘å­¦čŖæęŸ»ć‚»ćƒ³ć‚æćƒ¼'),
(102905, 'https://ror.org/04s3cat53', 'en', 1, 'https://ror.org/04s3cat53 Wakayama Prefectural Research Center of Environment and Public Health å’Œę­Œå±±ēœŒē’°å¢ƒč”›ē”Ÿē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102906, 'https://ror.org/04tstaj46', 'en', 1, 'https://ror.org/04tstaj46 Nexford University'),
(102907, 'https://ror.org/02vyesn05', 'en', 1, 'https://ror.org/02vyesn05 Abashiri-Kosei General Hospital JAåŒ—ęµ·é“åŽšē”Ÿé€£ē¶²čµ°åŽšē”Ÿē—…é™¢'),
(102908, 'https://ror.org/01258d510', 'en', 0, 'https://ror.org/01258d510 Sugino Fashion Junior College ę‰é‡Žęœé£¾å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102909, 'https://ror.org/044sn6f93', 'en', 1, 'https://ror.org/044sn6f93 Miyagi Prefectural Forestry Technology Institute å®®åŸŽēœŒęž—ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(102910, 'https://ror.org/02j9hdd14', 'en', 0, 'https://ror.org/02j9hdd14 Miyazaki Agricultural Research Institute å®®å“Žč¾²ę„­å®ŸéØ“å “'),
(102911, 'https://ror.org/046jrga91', 'en', 1, 'https://ror.org/046jrga91 Zikei Institute of Psychiatry å…¬ē›Šč²”å›£ę³•äŗŗę…ˆåœ­ä¼šę…ˆåœ­ē—…é™¢'),
(102912, 'https://ror.org/0458zsr51', 'en', 1, 'https://ror.org/0458zsr51 Sanshikai Toho Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£äø‰ę€ä¼šę±é‚¦ē—…é™¢'),
(102913, 'https://ror.org/01kfvpq31', 'en', 1, 'https://ror.org/01kfvpq31 Yashio Central General hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å”å‹ä¼šå…«ę½®äø­å¤®ē·åˆē—…é™¢'),
(102914, 'https://ror.org/01trsq591', 'en', 1, 'https://ror.org/01trsq591 Okinawa Miyako Hospital ę²–ēø„ēœŒē«‹å®®å¤ē—…é™¢'),
(102915, 'https://ror.org/050ybep11', 'en', 1, 'https://ror.org/050ybep11 Federation of National Public Service Personnel Mutual Aid Associations å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼š'),
(102916, 'https://ror.org/04a79d524', 'en', 1, 'https://ror.org/04a79d524 International Medical Information Center äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›åŒ»å­¦ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(102917, 'https://ror.org/04jp9sj81', 'en', 1, 'https://ror.org/04jp9sj81 Gunma Prefectural Cancer Center ē¾¤é¦¬ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(102918, 'https://ror.org/05evsxq57', 'en', 1, 'https://ror.org/05evsxq57 Chiba Industry Advancement Center å…¬ē›Šč²”å›£ę³•äŗŗåƒč‘‰ēœŒē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(102919, 'https://ror.org/04w2akp96', 'en', 1, 'https://ror.org/04w2akp96 Advanced Construction Technology Center äø€čˆ¬č²”å›£ę³•äŗŗå…ˆē«Æå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102920, 'https://ror.org/000h6jb29', 'en', 1, 'https://ror.org/000h6jb29 Helmholtz Centre for Environmental Research Helmholtz-Zentrum für Umweltforschung'),
(102921, 'https://ror.org/00pv5gd36', 'en', 1, 'https://ror.org/00pv5gd36 Kameoka Municipal Hospital 亀岔市立病院'),
(102922, 'https://ror.org/00cr19p86', 'en', 1, 'https://ror.org/00cr19p86 Shizuoka Prefectural Environmental Radiation Monitoring Center é™å²”ēœŒē’°å¢ƒę”¾å°„ē·šē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(102923, 'https://ror.org/027qmrv63', 'en', 1, 'https://ror.org/027qmrv63 Yasuda Women''s College å®‰ē”°å„³å­ēŸ­ęœŸå¤§å­¦'),
(102924, 'https://ror.org/01yf5j164', 'en', 1, 'https://ror.org/01yf5j164 Japan Health Food & Nutrition Food Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·ćƒ»ę „é¤Šé£Ÿå“å”ä¼š'),
(102925, 'https://ror.org/044npbj02', 'en', 1, 'https://ror.org/044npbj02 Okayama Healthcare Professional University å²”å±±åŒ»ē™‚å°‚é–€č·å¤§å­¦'),
(102926, 'https://ror.org/01k0ckf23', 'en', 1, 'https://ror.org/01k0ckf23 Japan Organ Transplant Network å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č‡“å™Øē§»ę¤ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(102927, 'https://ror.org/00jakdf17', 'en', 1, 'https://ror.org/00jakdf17 The Social Development Research Center äø€čˆ¬č²”å›£ę³•äŗŗē¤¾ä¼šé–‹ē™ŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102928, 'https://ror.org/05wa54d95', 'en', 1, 'https://ror.org/05wa54d95 DeepSeek DeepSeek (China) ę­å·žę·±åŗ¦ę±‚ē“¢äŗŗå·„ę™ŗčƒ½åŸŗē”€ęŠ€ęœÆē ”ē©¶ęœ‰é™å…¬åø'),
(102929, 'https://ror.org/05r0whd85', 'en', 1, 'https://ror.org/05r0whd85 International Medical Foundation of Japan č²”å›£ę³•äŗŗę—„ęœ¬å›½éš›åŒ»ē™‚å›£'),
(102930, 'https://ror.org/03f74xd51', 'en', 1, 'https://ror.org/03f74xd51 Japan Osteoporosis Foundation å…¬ē›Šč²”å›£ę³•äŗŗéŖØē²—é¬†ē—‡č²”å›£'),
(102931, 'https://ror.org/00dreqn16', 'en', 1, 'https://ror.org/00dreqn16 Waterfront Vitalization and Environment Research Foundation äø€čˆ¬č²”å›£ę³•äŗŗćæćŖćØē·åˆē ”ē©¶č²”å›£'),
(102932, 'https://ror.org/00zpddd51', 'en', 1, 'https://ror.org/00zpddd51 Kumamoto Rehabilitation Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗä»¤å’Œä¼šē†Šęœ¬ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(102933, 'https://ror.org/00cvmch98', 'en', 1, 'https://ror.org/00cvmch98 Tokyo Seitoku College ę±äŗ¬ęˆå¾³ēŸ­ęœŸå¤§å­¦'),
(102934, 'https://ror.org/00sjzkg31', 'en', 1, 'https://ror.org/00sjzkg31 Geo-Research Institute äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸåœ°ē›¤ē’°å¢ƒē ”ē©¶ę‰€'),
(102935, 'https://ror.org/01yapdx55', 'en', 1, 'https://ror.org/01yapdx55 Tsuchiya General Hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗć‚ć‹ć­ä¼šåœŸč°·ē·åˆē—…é™¢'),
(102936, 'https://ror.org/00nj85p14', 'en', 1, 'https://ror.org/00nj85p14 JAå²é˜œåŽšē”Ÿé€£č„æē¾ŽęæƒåŽšē”Ÿē—…é™¢ Nishimino Kosei Hospital'),
(102937, 'https://ror.org/04c7kr625', 'en', 1, 'https://ror.org/04c7kr625 National Sanatorium Amami-Wakouen å›½ē«‹ē™‚é¤Šę‰€å„„ē¾Žå’Œå…‰åœ’'),
(102938, 'https://ror.org/0244p6188', 'en', 1, 'https://ror.org/0244p6188 Okinawa Prefectural Plant Protection Center ę²–ēø„ēœŒē—…å®³č™«é˜²é™¤ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102939, 'https://ror.org/05kp9zx42', 'en', 1, 'https://ror.org/05kp9zx42 Nippon Life Hospital Public Interest Incorporated Foundation Nippon Life Hospital å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿå‘½ęøˆē”Ÿä¼šę—„ęœ¬ē”Ÿå‘½ē—…é™¢ ę—„ęœ¬ē”Ÿå‘½ē—…é™¢'),
(102940, 'https://ror.org/05ed7ae91', 'en', 1, 'https://ror.org/05ed7ae91 Public Works Research Center äø€čˆ¬č²”å›£ę³•äŗŗåœŸęœØē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102941, 'https://ror.org/01a9fqn74', 'en', 1, 'https://ror.org/01a9fqn74 HORAC GRAND FRONT OSAKA Clinic HORACć‚°ćƒ©ćƒ³ćƒ•ćƒ­ćƒ³ćƒˆå¤§é˜Ŗć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(102942, 'https://ror.org/05e571q11', 'en', 1, 'https://ror.org/05e571q11 Ikuei University 育英大学'),
(102943, 'https://ror.org/05qsjq305', 'fr', 1, 'https://ror.org/05qsjq305 Centre Hospitalier Universitaire de Nice'),
(102944, 'https://ror.org/02fc7c239', 'en', 1, 'https://ror.org/02fc7c239 Tsushima City Hospital 擄島市民病院'),
(102945, 'https://ror.org/01zb8dw34', 'en', 1, 'https://ror.org/01zb8dw34 Chiba City Education Center åƒč‘‰åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(102946, 'https://ror.org/04a45k919', 'en', 1, 'https://ror.org/04a45k919 Nagaoka Sutoku University 長岔哇徳大学'),
(102947, 'https://ror.org/0486g6b11', 'en', 1, 'https://ror.org/0486g6b11 The Japan Society of Acupuncture and Moxibustion å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬é¼ēøå­¦ä¼š'),
(102948, 'https://ror.org/03k3nz445', 'en', 1, 'https://ror.org/03k3nz445 Institute of Systems Science Research äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚·ć‚¹ćƒ†ćƒ ē§‘å­¦ē ”ē©¶ę‰€'),
(102949, 'https://ror.org/05xsza309', 'en', 1, 'https://ror.org/05xsza309 Kagoshima Prefectural Government é¹æå…å³¶ēœŒåŗ'),
(102950, 'https://ror.org/04yjz9j46', 'en', 1, 'https://ror.org/04yjz9j46 St. Marguerite Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ęµä»ä¼šć‚»ćƒ³ćƒˆćƒžćƒ¼ć‚¬ćƒ¬ćƒƒćƒˆē—…é™¢'),
(102951, 'https://ror.org/04d7bvw76', 'en', 1, 'https://ror.org/04d7bvw76 Paurastya Vidyāpīṭham Pontifical Oriental Institute of Religious Studies'),
(102952, 'https://ror.org/03she8458', 'en', 1, 'https://ror.org/03she8458 Association of International Research Initiatives for Environmental Studies äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›ē’°å¢ƒē ”ē©¶å”ä¼š'),
(102953, 'https://ror.org/015a2rt79', 'en', 1, 'https://ror.org/015a2rt79 Ecosystem Conservation SOCIETY-JAPAN å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿę…‹ē³»å”ä¼š'),
(102954, 'https://ror.org/02hrb2387', 'en', 1, 'https://ror.org/02hrb2387 Japan Aluminium Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ«ćƒŸćƒ‹ć‚¦ćƒ å”ä¼š'),
(102955, 'https://ror.org/05mv5zk02', 'en', 1, 'https://ror.org/05mv5zk02 Plastic Waste Management Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ—ćƒ©ć‚¹ćƒćƒƒć‚Æå¾Ŗē’°åˆ©ē”Øå”ä¼š'),
(102956, 'https://ror.org/05ayjgf78', 'en', 1, 'https://ror.org/05ayjgf78 Wakayama Prefectural Agricultural Experiment Station å’Œę­Œå±±ēœŒč¾²ę„­č©¦éØ“å “'),
(102957, 'https://ror.org/054en7g85', 'en', 1, 'https://ror.org/054en7g85 Life Sports Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒ©ć‚¤ćƒ•ć‚¹ćƒćƒ¼ćƒ„č²”å›£'),
(102958, 'https://ror.org/02cpxvv16', 'en', 1, 'https://ror.org/02cpxvv16 Teikyo Junior College åøäŗ¬ēŸ­ęœŸå¤§å­¦'),
(102959, 'https://ror.org/00v5th343', 'en', 1, 'https://ror.org/00v5th343 Tokyo Geographical Society å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬åœ°å­¦å”ä¼š');
INSERT INTO `rors` VALUES
(102960, 'https://ror.org/022hq6c49', 'it', 1, 'https://ror.org/022hq6c49 Istituto Nazionale di Fisica Nucleare, Sezione di Bari National Institute for Nuclear Physics, Bari Division'),
(102961, 'https://ror.org/05mzmc736', 'en', 1, 'https://ror.org/05mzmc736 Japan Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(102962, 'https://ror.org/046cmpm03', 'en', 1, 'https://ror.org/046cmpm03 Iwate Fisheries Technology Center å²©ę‰‹ēœŒę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102963, 'https://ror.org/01vew2c72', 'en', 1, 'https://ror.org/01vew2c72 Japan Organization for Metals and Energy Security (Japan) ē‹¬ē«‹č”Œę”æę³•äŗŗć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»é‡‘å±žé‰±ē‰©č³‡ęŗę©Ÿę§‹'),
(102964, 'https://ror.org/04t5mt493', 'en', 1, 'https://ror.org/04t5mt493 OKINAWA Science and Technology Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗę²–ēø„ē§‘å­¦ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(102965, 'https://ror.org/050np5j74', 'en', 1, 'https://ror.org/050np5j74 Institute for Horticultural Plant Breeding å…¬ē›Šč²”å›£ę³•äŗŗåœ’čŠøę¤ē‰©č‚²ēØ®ē ”ē©¶ę‰€'),
(102966, 'https://ror.org/03tw8sj29', 'en', 1, 'https://ror.org/03tw8sj29 Yamanashi Prefectural Agricultural Technology Center å±±ę¢ØēœŒē·åˆč¾²ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102967, 'https://ror.org/0044png46', 'en', 1, 'https://ror.org/0044png46 Tottori Agricultural Experiment Station é³„å–ēœŒč¾²ę„­č©¦éØ“å “'),
(102968, 'https://ror.org/05ebds523', 'en', 1, 'https://ror.org/05ebds523 Japan Antibiotics Research Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę„ŸęŸ“ē—‡åŒ»č–¬å“å”ä¼š'),
(102969, 'https://ror.org/01aeda621', 'en', 1, 'https://ror.org/01aeda621 Matsue Seikyo General Hospital ę¾ę±Ÿäæå„ē”Ÿę“»å”åŒēµ„åˆē·åˆē—…é™¢ę¾ę±Ÿē”Ÿå”ē—…é™¢'),
(102970, 'https://ror.org/01jpqtk24', 'bs', 1, 'https://ror.org/01jpqtk24 Institut za ispitivanje materijala IMS a.d. Beograd Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠøŃŠæŠøŃ‚ŠøŠ²Š°ŃšŠµ Š¼Š°Ń‚ŠµŃ€ŠøŃ˜Š°Š»Š° а.Š“.'),
(102971, 'https://ror.org/03qd78f09', 'en', 1, 'https://ror.org/03qd78f09 Mito Kyodo General Hospital ē·åˆē—…é™¢ę°“ęˆøå”åŒē—…é™¢'),
(102972, 'https://ror.org/01y7jk925', 'en', 1, 'https://ror.org/01y7jk925 Japan Industrial Waste Information Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”£ę„­å»ƒę£„ē‰©å‡¦ē†ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(102973, 'https://ror.org/02vv5y108', 'it', 1, 'https://ror.org/02vv5y108 Istituto Nazionale di Fisica Nucleare, Sezione di Firenze National Institute for Nuclear Physics, Florence Division'),
(102974, 'https://ror.org/0047dy656', 'en', 1, 'https://ror.org/0047dy656 Stichting Arab West Foundation'),
(102975, 'https://ror.org/0499gg586', 'en', 1, 'https://ror.org/0499gg586 Nagasaki Prefectural Government é•·å“ŽēœŒåŗ'),
(102976, 'https://ror.org/006a7pj43', 'fr', 0, 'https://ror.org/006a7pj43 Centre hospitalier universitaire de QuƩbec'),
(102977, 'https://ror.org/02twrxy18', 'en', 1, 'https://ror.org/02twrxy18 Cancer Research Horizons'),
(102978, 'https://ror.org/0412swj16', 'en', 1, 'https://ror.org/0412swj16 Osaka Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗåŗœēœ‹č­·å”ä¼š'),
(102979, 'https://ror.org/01dwytp71', 'en', 1, 'https://ror.org/01dwytp71 Gifu Prefectural Police 岐阜県警察'),
(102980, 'https://ror.org/006tv5x42', 'en', 1, 'https://ror.org/006tv5x42 Medical Corporation JR Hiroshima Hospital åŒ»ē™‚ę³•äŗŗJRåŗƒå³¶ē—…é™¢'),
(102981, 'https://ror.org/028680a31', 'en', 1, 'https://ror.org/028680a31 Hino Municipal Hospital ę—„é‡Žåø‚ē«‹ē—…é™¢'),
(102982, 'https://ror.org/00aa7w613', 'en', 1, 'https://ror.org/00aa7w613 Council of Australasian University Librarians'),
(102983, 'https://ror.org/00nnxmp87', 'en', 1, 'https://ror.org/00nnxmp87 Kagawa Prefectural Industrial Technology Center é¦™å·ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102984, 'https://ror.org/03h5b6q78', 'en', 1, 'https://ror.org/03h5b6q78 Wakkanai City Hospital åø‚ē«‹ēØšå†…ē—…é™¢'),
(102985, 'https://ror.org/00cc2cj67', 'en', 1, 'https://ror.org/00cc2cj67 Japan Cooperation Center Petroleum äø€čˆ¬č²”å›£ę³•äŗŗJCCPå›½éš›ēŸ³ę²¹ćƒ»ć‚¬ć‚¹å”åŠ›ę©Ÿé–¢'),
(102986, 'https://ror.org/049hm3d27', 'en', 1, 'https://ror.org/049hm3d27 Miyazaki Prefectural Fisheries Research Institute å®®å“ŽēœŒę°“ē”£č©¦éØ“å “'),
(102987, 'https://ror.org/02denmt82', 'en', 1, 'https://ror.org/02denmt82 Suwa University of Science å…¬ē«‹č«čØŖę±äŗ¬ē†ē§‘å¤§å­¦'),
(102988, 'https://ror.org/03ad39j10', 'en', 1, 'https://ror.org/03ad39j10 University of Pisa UniversitƠ di Pisa UniversitƤt Pisa UniversitƩ de Pise'),
(102989, 'https://ror.org/00a5h0053', 'en', 1, 'https://ror.org/00a5h0053 JAä½é‡ŽåŽšē”Ÿé€£ä½é‡ŽåŽšē”Ÿē·åˆē—…é™¢ Sanokousei General Hospital'),
(102990, 'https://ror.org/00x62xy97', 'en', 1, 'https://ror.org/00x62xy97 The Land Institute of Japan äø€čˆ¬č²”å›£ę³•äŗŗåœŸåœ°ē·åˆē ”ē©¶ę‰€'),
(102991, 'https://ror.org/03cxavb34', 'en', 1, 'https://ror.org/03cxavb34 Seirei Yokohama Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£č–éš·ęØŖęµœē—…é™¢'),
(102992, 'https://ror.org/05j3snm48', 'it', 1, 'https://ror.org/05j3snm48 Istituto Nazionale di Fisica Nucleare, Sezione di Trieste National Institute for Nuclear Physics, Division in Trieste'),
(102993, 'https://ror.org/00yq23r19', 'en', 1, 'https://ror.org/00yq23r19 IUCN (United Kingdom) International Union for Conservation of Nature (United Kingdom)'),
(102994, 'https://ror.org/05vf0dg29', 'en', 1, 'https://ror.org/05vf0dg29 Roma Tre University UniversitƠ degli Studi Roma Tre UniversitƩ de Rome III'),
(102995, 'https://ror.org/03j6mx979', 'en', 1, 'https://ror.org/03j6mx979 Hakodate Goryoukaku Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗå‡½é¤ØåŽšē”Ÿé™¢å‡½é¤Øäŗ”ēØœéƒ­ē—…é™¢'),
(102996, 'https://ror.org/02btb7z30', 'en', 1, 'https://ror.org/02btb7z30 Tsurugaya Hospital åŒ»ē™‚ę³•äŗŗé¶“č°·ä¼šé¶“č°·ē—…é™¢'),
(102997, 'https://ror.org/01vtvs553', 'en', 1, 'https://ror.org/01vtvs553 Hokusho Central Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŒ—ę¾äø­å¤®ē—…é™¢'),
(102998, 'https://ror.org/01bfp5e25', 'en', 0, 'https://ror.org/01bfp5e25 NTT WEST Osaka Hospital NTTč„æę—„ęœ¬å¤§é˜Ŗē—…é™¢'),
(102999, 'https://ror.org/038wr0v37', 'en', 1, 'https://ror.org/038wr0v37 Tottori Institute of Industrial Technology åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗé³„å–ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103000, 'https://ror.org/00xcej302', 'en', 1, 'https://ror.org/00xcej302 The Japan Iron and Steel Federation äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é‹¼é€£ē›Ÿ'),
(103001, 'https://ror.org/02t3ccg55', 'en', 1, 'https://ror.org/02t3ccg55 Takeda Hospital åŒ»ē™‚ę³•äŗŗč²”å›£åŗ·ē”Ÿä¼šę­¦ē”°ē—…é™¢'),
(103002, 'https://ror.org/008bamj58', 'en', 1, 'https://ror.org/008bamj58 Saga Prefectural Genkai Fisheries Research and Development Center ä½č³€ēœŒēŽ„ęµ·ę°“ē”£ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(103003, 'https://ror.org/049qz7x77', 'en', 1, 'https://ror.org/049qz7x77 Capital Region of Denmark Region Hovedstaden'),
(103004, 'https://ror.org/015kcdd40', 'it', 1, 'https://ror.org/015kcdd40 Istituto Nazionale di Fisica Nucleare, Sezione di Napoli National Institute for Nuclear Physics, Naples Unit'),
(103005, 'https://ror.org/05xenc464', 'en', 1, 'https://ror.org/05xenc464 Kawasaki Rinko General Hospital ē·åˆå·å“Žč‡ØęøÆē—…é™¢'),
(103006, 'https://ror.org/0202tms25', 'en', 1, 'https://ror.org/0202tms25 Gihoku Kosei Hospital JAå²é˜œåŽšē”Ÿé€£å²åŒ—åŽšē”Ÿē—…é™¢'),
(103007, 'https://ror.org/01qag5b35', 'en', 1, 'https://ror.org/01qag5b35 Child Information and Research Center å…¬ē›Šē¤¾å›£ę³•äŗŗå­ć©ć‚‚ęƒ…å ±ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103008, 'https://ror.org/01my0h411', 'en', 1, 'https://ror.org/01my0h411 Kanazawa Gakuin College é‡‘ę²¢å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(103009, 'https://ror.org/04701bc03', 'en', 1, 'https://ror.org/04701bc03 Japan Industrial Management Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒå–¶å·„å­¦ä¼š'),
(103010, 'https://ror.org/01wg7pd89', 'id', 1, 'https://ror.org/01wg7pd89 State Islamic University Datokarama Palu Universitas Islam Negeri Datokarama Palu'),
(103011, 'https://ror.org/00zyznv55', 'en', 1, 'https://ror.org/00zyznv55 Shizuoka Graduate University of Public Health é™å²”ē¤¾ä¼šå„åŗ·åŒ»å­¦å¤§å­¦é™¢å¤§å­¦'),
(103012, 'https://ror.org/01fs5y210', 'en', 1, 'https://ror.org/01fs5y210 Nagano Prefecture General Industrial Technology Center é•·é‡ŽēœŒå·„ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(103013, 'https://ror.org/00vr49948', 'es', 1, 'https://ror.org/00vr49948 National Agrarian University La Molina Universidad Nacional Agraria La Molina'),
(103014, 'https://ror.org/023mv6842', 'en', 1, 'https://ror.org/023mv6842 Al-Naji University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†Ų§Ų¬ŁŠ'),
(103015, 'https://ror.org/0037m9489', 'en', 1, 'https://ror.org/0037m9489 Marondera University of Agricultural Sciences and Technology'),
(103016, 'https://ror.org/00p9hna44', 'en', 1, 'https://ror.org/00p9hna44 Aisei Hospital å…¬ē›Šč²”å›£ę³•äŗŗę„›äø–ä¼šę„›čŖ ē—…é™¢'),
(103017, 'https://ror.org/04h56d485', 'en', 1, 'https://ror.org/04h56d485 Heisei Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¹³ęˆčØ˜åæµē—…é™¢'),
(103018, 'https://ror.org/01kj3mp08', 'en', 1, 'https://ror.org/01kj3mp08 Organization for Landscape and Urban Green Infrastructure å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚ē·‘åŒ–ę©Ÿę§‹'),
(103019, 'https://ror.org/02ftyfe43', 'en', 1, 'https://ror.org/02ftyfe43 Control System Security Center ęŠ€č”“ē ”ē©¶ēµ„åˆåˆ¶å¾”ć‚·ć‚¹ćƒ†ćƒ ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£ć‚»ćƒ³ć‚æćƒ¼'),
(103020, 'https://ror.org/023hy0x04', 'en', 1, 'https://ror.org/023hy0x04 Asakayama General Hospital å…¬ē›Šč²”å›£ę³•äŗŗęµ…é¦™å±±ē—…é™¢'),
(103021, 'https://ror.org/00bfkan04', 'en', 1, 'https://ror.org/00bfkan04 Livit Ottobock Care'),
(103022, 'https://ror.org/042q4kf72', 'en', 1, 'https://ror.org/042q4kf72 Brewing Society of Japan å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é†øé€ å”ä¼š'),
(103023, 'https://ror.org/04j4db344', 'en', 1, 'https://ror.org/04j4db344 European Agroforestry Federation FƩdƩration europƩenne d''agroforesterie'),
(103024, 'https://ror.org/03pxeg974', 'en', 1, 'https://ror.org/03pxeg974 Ishikawa Insect Museum ēŸ³å·ēœŒćµć‚Œć‚ć„ę˜†č™«é¤Ø'),
(103025, 'https://ror.org/04dab1g54', 'en', 1, 'https://ror.org/04dab1g54 SAGA Light Source ä½č³€ēœŒē«‹ä¹å·žć‚·ćƒ³ć‚Æćƒ­ćƒˆćƒ­ćƒ³å…‰ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼ å…¬ē›Šč²”å›£ę³•äŗŗä½č³€ēœŒē”£ę„­ęŒÆčˆˆę©Ÿę§‹ ä¹å·žć‚·ćƒ³ć‚Æćƒ­ćƒˆćƒ­ćƒ³å…‰ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103026, 'https://ror.org/00mw3k977', 'en', 1, 'https://ror.org/00mw3k977 Miyazaki Prefectural Forestry Technology Center å®®å“ŽēœŒęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103027, 'https://ror.org/01vsged97', 'en', 1, 'https://ror.org/01vsged97 Ishinkai Yao General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ»ēœŸä¼šå…«å°¾ē·åˆē—…é™¢'),
(103028, 'https://ror.org/02f90t643', 'en', 1, 'https://ror.org/02f90t643 Kansai Airport Research Institute äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æē©ŗęøÆčŖæęŸ»ä¼š'),
(103029, 'https://ror.org/013qjyp86', 'en', 1, 'https://ror.org/013qjyp86 Industrial Technology Center of Tochigi Prefecture ę ƒęœØēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103030, 'https://ror.org/01stv0b46', 'en', 1, 'https://ror.org/01stv0b46 Nuclear Material Control Center å…¬ē›Šč²”å›£ę³•äŗŗę øē‰©č³Ŗē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(103031, 'https://ror.org/02d0sp989', 'en', 1, 'https://ror.org/02d0sp989 Consortium for Lithium Ion Battery Technology and Evaluation Center ęŠ€č”“ē ”ē©¶ēµ„åˆćƒŖćƒć‚¦ćƒ ć‚¤ć‚Ŗćƒ³é›»ę± ęę–™č©•ä¾”ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103032, 'https://ror.org/016r0x448', 'en', 1, 'https://ror.org/016r0x448 Mie Prefecture Fisheries Research Institute äø‰é‡ēœŒę°“ē”£ē ”ē©¶ę‰€'),
(103033, 'https://ror.org/038hap456', 'en', 1, 'https://ror.org/038hap456 Niigata Rheumatic Center ę–°ę½ŸēœŒē«‹ćƒŖć‚¦ćƒžćƒć‚»ćƒ³ć‚æćƒ¼'),
(103034, 'https://ror.org/01mq28k31', 'en', 1, 'https://ror.org/01mq28k31 Sakurajyuji Hospital åŒ»ē™‚ę³•äŗŗę”œåå­—ę”œåå­—ē—…é™¢'),
(103035, 'https://ror.org/030chaq85', 'en', 1, 'https://ror.org/030chaq85 Yamaguchi College of Arts å±±å£čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(103036, 'https://ror.org/05erkh051', 'en', 1, 'https://ror.org/05erkh051 Ibaraki Prefectural Government čŒØåŸŽēœŒåŗ'),
(103037, 'https://ror.org/01nwhyj12', 'en', 1, 'https://ror.org/01nwhyj12 Toyama Design Center åÆŒå±±ēœŒē·åˆćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(103038, 'https://ror.org/05vjvdn70', 'en', 1, 'https://ror.org/05vjvdn70 Agricultural Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§ę—„ęœ¬č¾²ä¼š'),
(103039, 'https://ror.org/049jaya88', 'en', 1, 'https://ror.org/049jaya88 Japanese Society of School Health å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å­¦ę ”äæå„ä¼š'),
(103040, 'https://ror.org/03vzxt803', 'en', 1, 'https://ror.org/03vzxt803 Japan Marine Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęµ·ę“‹ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(103041, 'https://ror.org/009xkwf56', 'en', 1, 'https://ror.org/009xkwf56 Japan Techno-Economics Society äø€čˆ¬ē¤¾å›£ę³•äŗŗē§‘å­¦ęŠ€č”“ćØēµŒęøˆć®ä¼š'),
(103042, 'https://ror.org/03bmwz664', 'en', 1, 'https://ror.org/03bmwz664 Wakayama Prefectural Police å’Œę­Œå±±ēœŒč­¦åÆŸ'),
(103043, 'https://ror.org/02necr605', 'en', 1, 'https://ror.org/02necr605 Penang Institute'),
(103044, 'https://ror.org/018q2r417', 'en', 1, 'https://ror.org/018q2r417 Database Center for Life Science ćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹ēµ±åˆćƒ‡ćƒ¼ć‚æćƒ™ćƒ¼ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(103045, 'https://ror.org/02nhk3291', 'en', 1, 'https://ror.org/02nhk3291 National Center for Educational Technology äø­å¤®ē”µåŒ–ę•™č‚²é¦†'),
(103046, 'https://ror.org/035gxp094', 'en', 1, 'https://ror.org/035gxp094 The Japan Lung Cancer Society ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬č‚ŗē™Œå­¦ä¼š'),
(103047, 'https://ror.org/053mdsa13', 'en', 1, 'https://ror.org/053mdsa13 Fukushima Prefectural Inland Water Fisheries Experimental Station ē¦å³¶ēœŒå†…ę°“é¢ę°“ē”£č©¦éØ“å “'),
(103048, 'https://ror.org/05gc63392', 'ro', 1, 'https://ror.org/05gc63392 Academia de Politie Alexandru Ioan Cuza'),
(103049, 'https://ror.org/05tq2c590', 'en', 1, 'https://ror.org/05tq2c590 Hokkaido Gastroenterology Hospital åŒ»ē™‚ę³•äŗŗå½°å’Œä¼šåŒ—ęµ·é“ę¶ˆåŒ–å™Øē§‘ē—…é™¢'),
(103050, 'https://ror.org/026tt3h56', 'en', 1, 'https://ror.org/026tt3h56 The City Planning Institute of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬éƒ½åø‚čØˆē”»å­¦ä¼š'),
(103051, 'https://ror.org/01p6f7g83', 'en', 1, 'https://ror.org/01p6f7g83 SAITAMA SEKISHINKAI Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ēŸ³åæƒä¼šåŸ¼ēŽ‰ēŸ³åæƒä¼šē—…é™¢'),
(103052, 'https://ror.org/04mnyr134', 'en', 1, 'https://ror.org/04mnyr134 Sonoda Women''s College åœ’ē”°å­¦åœ’å„³å­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103053, 'https://ror.org/04w3b2231', 'en', 1, 'https://ror.org/04w3b2231 Fukuoka Prefectural Government ē¦å²”ēœŒåŗ'),
(103054, 'https://ror.org/03dntmd83', 'en', 1, 'https://ror.org/03dntmd83 NMEMS Technology Research Organization ęŠ€č”“ē ”ē©¶ēµ„åˆNMEMSęŠ€č”“ē ”ē©¶ę©Ÿę§‹'),
(103055, 'https://ror.org/02yedhf35', 'en', 1, 'https://ror.org/02yedhf35 Shiraumegakuen College ē™½ę¢…å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(103056, 'https://ror.org/04gv2er37', 'no_lang_code', 1, 'https://ror.org/04gv2er37 Mary Ann Liebert Mary Ann Liebert (United States) Mary Ann Liebert, Inc.'),
(103057, 'https://ror.org/00w7qnw63', 'en', 1, 'https://ror.org/00w7qnw63 Sapporo International Junior College ęœ­å¹Œå›½éš›å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103058, 'https://ror.org/05290cv24', 'en', 1, 'https://ror.org/05290cv24 Universitat de NƠpols Frederic II University of Naples Federico II UniversitƠ degli Studi di Napoli Federico II UniversitƤt Neapel Federico II UniversitƩ de Naples - FrƩdƩric-II'),
(103059, 'https://ror.org/03xjfrn37', 'en', 1, 'https://ror.org/03xjfrn37 Fort Hays Tech Northwest'),
(103060, 'https://ror.org/02fhgzv56', 'en', 1, 'https://ror.org/02fhgzv56 Okinawa Prefectural Sea Farming Center ę²–ēø„ēœŒę ½åŸ¹ę¼ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(103061, 'https://ror.org/04yndey86', 'en', 1, 'https://ror.org/04yndey86 IUCN Species Survival Commission'),
(103062, 'https://ror.org/01tsmvz08', 'en', 1, 'https://ror.org/01tsmvz08 Henan University of Traditional Chinese Medicine ę²³å—äø­åŒ»å­¦é™¢'),
(103063, 'https://ror.org/04n160k30', 'en', 1, 'https://ror.org/04n160k30 Kanagawa Institute of Industrial Science and Technology åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē„žå„ˆå·ēœŒē«‹ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(103064, 'https://ror.org/04reayw33', 'en', 1, 'https://ror.org/04reayw33 The Engineering Academy of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å·„å­¦ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(103065, 'https://ror.org/05sjtt732', 'en', 1, 'https://ror.org/05sjtt732 Hiroshima HIGH-PRECISION Radiotherapy Cancer Center åŗƒå³¶ćŒć‚“é«˜ē²¾åŗ¦ę”¾å°„ē·šę²»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103066, 'https://ror.org/04e76k847', 'en', 1, 'https://ror.org/04e76k847 Kobe Institute of Urban Research å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøéƒ½åø‚å•é”Œē ”ē©¶ę‰€'),
(103067, 'https://ror.org/0493g0246', 'en', 1, 'https://ror.org/0493g0246 Osaka Health Medical Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗåŗœäæå„åŒ»ē™‚č²”å›£'),
(103068, 'https://ror.org/023qw0p91', 'en', 1, 'https://ror.org/023qw0p91 Hokkaido Tokachi Area Regional Food Processing Technology Center åŒ—ęµ·é“ē«‹åå‹åœåœ°åŸŸé£Ÿå“åŠ å·„ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103069, 'https://ror.org/04xh72p96', 'en', 1, 'https://ror.org/04xh72p96 Chukyo Junior College äø­äŗ¬å­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103070, 'https://ror.org/03g278m11', 'en', 1, 'https://ror.org/03g278m11 JAę–°ę½ŸåŽšē”Ÿé€£ę–°ę½ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ Niigata Medical Center'),
(103071, 'https://ror.org/04ympke82', 'en', 1, 'https://ror.org/04ympke82 General Building Research Corporation of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ē·åˆč©¦éØ“ę‰€'),
(103072, 'https://ror.org/01xj5sv76', 'en', 1, 'https://ror.org/01xj5sv76 Yoshida Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¹³å’Œä¼šå‰ē”°ē—…é™¢'),
(103073, 'https://ror.org/01q9hyq02', 'en', 1, 'https://ror.org/01q9hyq02 Sasebo Kyosai Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šä½äø–äæå…±ęøˆē—…é™¢'),
(103074, 'https://ror.org/03rfvyw43', 'en', 1, 'https://ror.org/03rfvyw43 Slovak University of Agriculture in Nitra SlovenskÔ poľnohospodÔrska univerzita v Nitre'),
(103075, 'https://ror.org/05vvex219', 'en', 1, 'https://ror.org/05vvex219 Kamakura Women''s Junior College éŽŒå€‰å„³å­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103076, 'https://ror.org/01nf7g970', 'en', 1, 'https://ror.org/01nf7g970 Aiseikai Yamashina Hospital äø€čˆ¬ē¤¾å›£ę³•äŗŗę„›ē”Ÿä¼šå±±ē§‘ē—…é™¢'),
(103077, 'https://ror.org/0020pds25', 'en', 1, 'https://ror.org/0020pds25 Kyoto Koka Women''s College äŗ¬éƒ½å…‰čÆå„³å­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103078, 'https://ror.org/03p1rmr05', 'en', 1, 'https://ror.org/03p1rmr05 Shiseido General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę¾ęŸä¼šč‡³čŖ å ‚ē·åˆē—…é™¢'),
(103079, 'https://ror.org/03w87mp28', 'en', 1, 'https://ror.org/03w87mp28 Kita Harima Medical Center åŒ—ę’­ē£Øē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103080, 'https://ror.org/03a649882', 'en', 1, 'https://ror.org/03a649882 Hanyu General Hospital åŸ¼ēŽ‰åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆē¾½ē”Ÿē·åˆē—…é™¢'),
(103081, 'https://ror.org/03vnpk711', 'en', 1, 'https://ror.org/03vnpk711 Sendai City Institute of Public Health ä»™å°åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(103082, 'https://ror.org/05wez5a86', 'en', 1, 'https://ror.org/05wez5a86 Chubu Region Institute for Social and Economic Research å…¬ē›Šč²”å›£ę³•äŗŗäø­éƒØåœē¤¾ä¼šēµŒęøˆē ”ē©¶ę‰€'),
(103083, 'https://ror.org/01cprck53', 'en', 1, 'https://ror.org/01cprck53 Osaka Pediatric Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗå°å…ē§‘åŒ»ä¼š'),
(103084, 'https://ror.org/022zdgp77', 'en', 1, 'https://ror.org/022zdgp77 Kumamoto Prefectural Government ē†Šęœ¬ēœŒåŗ'),
(103085, 'https://ror.org/05c42js38', 'en', 1, 'https://ror.org/05c42js38 Engaru-Kosei General Hospital JAåŒ—ęµ·é“åŽšē”Ÿé€£é č»½åŽšē”Ÿē—…é™¢'),
(103086, 'https://ror.org/05xx1v358', 'en', 1, 'https://ror.org/05xx1v358 Hay’adda Istaatistikada Qaranka Soomaaliya Somalia National Bureau of Statistics'),
(103087, 'https://ror.org/00wgkqx32', 'en', 1, 'https://ror.org/00wgkqx32 The River Foundation å…¬ē›Šč²”å›£ę³•äŗŗę²³å·č²”å›£'),
(103088, 'https://ror.org/0194f6935', 'en', 1, 'https://ror.org/0194f6935 Hokkaido Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“åŒ»åø«ä¼š'),
(103089, 'https://ror.org/00j04tm62', 'en', 1, 'https://ror.org/00j04tm62 Japanese Drug Organization of Appropriate Use and Research ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗåŒ»č–¬å“é©ę­£ä½æē”ØęŽØé€²ę©Ÿę§‹'),
(103090, 'https://ror.org/027s9cy89', 'en', 1, 'https://ror.org/027s9cy89 Hara Genitourinary Hospital åŽŸę³Œå°æå™Øē§‘ē—…é™¢'),
(103091, 'https://ror.org/024e7gt83', 'en', 1, 'https://ror.org/024e7gt83 Shimane Prefectural Agriculture And Livestock Industry Promotion Division å³¶ę ¹ēœŒč¾²ęž—ę°“ē”£éƒØ'),
(103092, 'https://ror.org/03r12d203', 'en', 1, 'https://ror.org/03r12d203 Clinical Research Education and Management Services'),
(103093, 'https://ror.org/00pm9ra94', 'en', 1, 'https://ror.org/00pm9ra94 Kumamoto Shinto General Hospital åŒ»ē™‚ę³•äŗŗå‰µčµ·ä¼šćć¾ć‚‚ćØę£®éƒ½ē·åˆē—…é™¢'),
(103094, 'https://ror.org/02e45e442', 'en', 1, 'https://ror.org/02e45e442 Yokohama Asahi Chuo General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę˜ŽčŠ³ä¼šęØŖęµœę—­äø­å¤®ē·åˆē—…é™¢'),
(103095, 'https://ror.org/03tr61b37', 'en', 1, 'https://ror.org/03tr61b37 Okinawa Christian Junior College ę²–ēø„ć‚­ćƒŖć‚¹ćƒˆę•™ēŸ­ęœŸå¤§å­¦'),
(103096, 'https://ror.org/00kktwv09', 'en', 1, 'https://ror.org/00kktwv09 Inuyama Hospital åŒ»ē™‚ę³•äŗŗę”œę”‚ä¼šēŠ¬å±±ē—…é™¢'),
(103097, 'https://ror.org/01tmjm536', 'en', 1, 'https://ror.org/01tmjm536 BioSafety Research Center å…¬ē›Šč²”å›£ę³•äŗŗé£Ÿå“č¾²åŒ»č–¬å“å®‰å…Øę€§č©•ä¾”ć‚»ćƒ³ć‚æćƒ¼'),
(103098, 'https://ror.org/059vb7y44', 'en', 1, 'https://ror.org/059vb7y44 Nanpuh Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗé¹æå…å³¶å…±ęøˆä¼šå—é¢Øē—…é™¢'),
(103099, 'https://ror.org/04rgqcd02', 'fr', 1, 'https://ror.org/04rgqcd02 Centre de recherche du CHU de QuƩbec-UniversitƩ Laval'),
(103100, 'https://ror.org/03rkrnn78', 'en', 1, 'https://ror.org/03rkrnn78 Takamatsu Municipal Hospital é«˜ę¾åø‚ē«‹ćæć‚“ćŖć®ē—…é™¢'),
(103101, 'https://ror.org/00xvcvx97', 'en', 1, 'https://ror.org/00xvcvx97 Nagasaki Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé•·å“ŽčØ˜åæµē—…é™¢'),
(103102, 'https://ror.org/027gdbg63', 'en', 1, 'https://ror.org/027gdbg63 Tokyo Metropolitan Leather Technology Center ę±äŗ¬éƒ½ē«‹ēš®é©ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103103, 'https://ror.org/03egn3336', 'en', 1, 'https://ror.org/03egn3336 Aomori Prefectural Public Health and Environment Center é’ę£®ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(103104, 'https://ror.org/05xqrc755', 'en', 1, 'https://ror.org/05xqrc755 Kurobe City Hospital é»’éƒØåø‚ę°‘ē—…é™¢'),
(103105, 'https://ror.org/037hd3x76', 'en', 1, 'https://ror.org/037hd3x76 Hyogo College å…µåŗ«å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103106, 'https://ror.org/05wg82p98', 'en', 1, 'https://ror.org/05wg82p98 Jusendo Hospital å…¬ē›Šč²”å›£ę³•äŗŗę¹Æęµ…å ±ę©ä¼šåÆæę³‰å ‚ē¶œåˆē—…é™¢'),
(103107, 'https://ror.org/05h6tzw52', 'en', 1, 'https://ror.org/05h6tzw52 Yamagata Promotional Organization for Industrial Technology å…¬ē›Šč²”å›£ę³•äŗŗå±±å½¢ēœŒē”£ę„­ęŠ€č”“ęŒÆčˆˆę©Ÿę§‹'),
(103108, 'https://ror.org/02qhhm014', 'en', 1, 'https://ror.org/02qhhm014 Wakayama Prefectural Forestry Experiment Station å’Œę­Œå±±ēœŒęž—ę„­č©¦éØ“å “'),
(103109, 'https://ror.org/05g6ct380', 'en', 1, 'https://ror.org/05g6ct380 Iwate Prefectural Government å²©ę‰‹ēœŒåŗ'),
(103110, 'https://ror.org/00kh69w15', 'en', 1, 'https://ror.org/00kh69w15 Institute Of Geriatric Medicine And Dentistry äø€čˆ¬č²”å›£ę³•äŗŗč€å¹“ę­Æē§‘åŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(103111, 'https://ror.org/02ksnjk05', 'en', 1, 'https://ror.org/02ksnjk05 Kyoto City Institute of Health and Environmental Sciences äŗ¬éƒ½åø‚č”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(103112, 'https://ror.org/02p1mzj94', 'en', 1, 'https://ror.org/02p1mzj94 National Statistics Center ē‹¬ē«‹č”Œę”æę³•äŗŗēµ±čØˆć‚»ćƒ³ć‚æćƒ¼'),
(103113, 'https://ror.org/032ymr618', 'en', 1, 'https://ror.org/032ymr618 Musashimurayama Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£å¤§å’Œä¼šę­¦č”µę‘å±±ē—…é™¢'),
(103114, 'https://ror.org/03r4yvq42', 'en', 1, 'https://ror.org/03r4yvq42 Wagyu Registry Association å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½å’Œē‰›ē™»éŒ²å”ä¼š'),
(103115, 'https://ror.org/03gt88y48', 'en', 1, 'https://ror.org/03gt88y48 Aino University Junior College č—é‡Žå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103116, 'https://ror.org/002k0xe08', 'en', 1, 'https://ror.org/002k0xe08 Sensho-kai Eye Institute åŒ»ē™‚ę³•äŗŗåƒē…§ä¼šåƒåŽŸēœ¼ē§‘åŒ»é™¢'),
(103117, 'https://ror.org/05c1b7t53', 'en', 1, 'https://ror.org/05c1b7t53 Mahrah University Ų¬Ų§Ł…Ų¹Ų© المهرة'),
(103118, 'https://ror.org/02vdyab02', 'en', 1, 'https://ror.org/02vdyab02 NUCLEAR Safety Technology Center å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›å®‰å…ØęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103119, 'https://ror.org/04phfvx94', 'en', 1, 'https://ror.org/04phfvx94 National Sanatorium Tama Zenshoen å›½ē«‹ē™‚é¤Šę‰€å¤šē£Øå…Øē”Ÿåœ’'),
(103120, 'https://ror.org/04p6trc94', 'en', 1, 'https://ror.org/04p6trc94 Tsukuba Gakuen Hospital äø€čˆ¬č²”å›£ę³•äŗŗē­‘ę³¢éŗ“ä»ä¼šē­‘ę³¢å­¦åœ’ē—…é™¢'),
(103121, 'https://ror.org/04a1sdj76', 'en', 1, 'https://ror.org/04a1sdj76 Shizuoka Prefectural Research Institute of Animal Industry é™å²”ēœŒē•œē”£ęŠ€č”“ē ”ē©¶ę‰€'),
(103122, 'https://ror.org/01fk7f614', 'en', 1, 'https://ror.org/01fk7f614 Gakushuin Women''s College 学習院儳子大学'),
(103123, 'https://ror.org/00gq2av75', 'en', 1, 'https://ror.org/00gq2av75 Kagoshima Seikyo Hospital é¹æå…å³¶åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆé¹æå…å³¶ē”Ÿå”ē—…é™¢'),
(103124, 'https://ror.org/03ddrbp36', 'en', 1, 'https://ror.org/03ddrbp36 Japan Travel Bureau Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äŗ¤é€šå…¬ē¤¾'),
(103125, 'https://ror.org/04jks9y88', 'en', 1, 'https://ror.org/04jks9y88 Hakodate Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗå‡½é¤Øåø‚åŒ»åø«ä¼š'),
(103126, 'https://ror.org/05qn5kv73', 'fr', 1, 'https://ror.org/05qn5kv73 CHU de QuƩbec-UniversitƩ Laval'),
(103127, 'https://ror.org/02h5t6n73', 'en', 1, 'https://ror.org/02h5t6n73 Istanbul Provincial Directorate of National Education İstanbul İl Millî Eğitim Müdürlüğü'),
(103128, 'https://ror.org/0128bs295', 'en', 1, 'https://ror.org/0128bs295 Inazawa Municipal Hospital 稲沢市民病院'),
(103129, 'https://ror.org/04me52195', 'en', 1, 'https://ror.org/04me52195 Kyoto Junior College of Foreign Languages äŗ¬éƒ½å¤–å›½čŖžēŸ­ęœŸå¤§å­¦'),
(103130, 'https://ror.org/03zkz9130', 'en', 1, 'https://ror.org/03zkz9130 Japan RiverFront research Center å…¬ē›Šč²”å›£ę³•äŗŗćƒŖćƒćƒ¼ćƒ•ćƒ­ćƒ³ćƒˆē ”ē©¶ę‰€'),
(103131, 'https://ror.org/01zdtdh72', 'en', 1, 'https://ror.org/01zdtdh72 Yamaguchi Prefectural Industrial Technology Institute åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå±±å£ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103132, 'https://ror.org/0053cs676', 'en', 1, 'https://ror.org/0053cs676 Research Institute for Urban & Environmental Development äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é–‹ē™ŗę§‹ęƒ³ē ”ē©¶ę‰€'),
(103133, 'https://ror.org/02v30xn43', 'en', 1, 'https://ror.org/02v30xn43 Kagawa Forestry Center é¦™å·ēœŒę£®ęž—ć‚»ćƒ³ć‚æćƒ¼'),
(103134, 'https://ror.org/04vgz7238', 'en', 1, 'https://ror.org/04vgz7238 Akita Prefecture Forestry Research and Training Center ē§‹ē”°ēœŒęž—ę„­ē ”ē©¶ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(103135, 'https://ror.org/02p3fnn23', 'en', 1, 'https://ror.org/02p3fnn23 Tokyo Online University ę±äŗ¬é€šäæ”å¤§å­¦'),
(103136, 'https://ror.org/02j0pzx46', 'en', 1, 'https://ror.org/02j0pzx46 Foundation for Detection of Early Gastric Carcinoma å…¬ē›Šč²”å›£ę³•äŗŗę—©ęœŸčƒƒē™Œę¤œčØŗå”ä¼š'),
(103137, 'https://ror.org/03258q629', 'en', 1, 'https://ror.org/03258q629 Kobe Tokushukai Hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šē„žęˆøå¾³ę“²ä¼šē—…é™¢'),
(103138, 'https://ror.org/01fgkdh07', 'en', 1, 'https://ror.org/01fgkdh07 Daiyukai General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤§é›„ä¼šē·åˆå¤§é›„ä¼šē—…é™¢ ē·åˆå¤§é›„ä¼šē—…é™¢å¤§é›„ä¼šē¬¬äø€ē—…é™¢'),
(103139, 'https://ror.org/0079tm437', 'en', 1, 'https://ror.org/0079tm437 Tobacco Academic Studies Center å…¬ē›Šč²”å›£ę³•äŗŗćŸć°ć“ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103140, 'https://ror.org/05crh3591', 'en', 1, 'https://ror.org/05crh3591 Osaka International College å¤§é˜Ŗå›½éš›å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103141, 'https://ror.org/04xkn8h91', 'en', 1, 'https://ror.org/04xkn8h91 Gifu Prefectural Gero Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå²é˜œēœŒē«‹äø‹å‘‚ęø©ę³‰ē—…é™¢'),
(103142, 'https://ror.org/00m6y2w67', 'en', 1, 'https://ror.org/00m6y2w67 JAé•·é‡ŽåŽšē”Ÿé€£é¹æę•™ę¹Æäø‰ę‰å±±ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼ Kakeyu-Misayama Rehabilitation Center'),
(103143, 'https://ror.org/01t871e57', 'en', 1, 'https://ror.org/01t871e57 Hakuhokai Central Hospital åŒ»ē™‚ę³•äŗŗä¼Æé³³ä¼šćÆćć»ć†ä¼šć‚»ćƒ³ćƒˆćƒ©ćƒ«ē—…é™¢'),
(103144, 'https://ror.org/02rvr7q96', 'en', 1, 'https://ror.org/02rvr7q96 Osaka College of Music 大阪音愽大学'),
(103145, 'https://ror.org/020kqfe02', 'en', 1, 'https://ror.org/020kqfe02 Yamanashi Kosei Hospital å…¬ē›Šč²”å›£ę³•äŗŗå±±ę¢ØåŽšē”Ÿä¼šå±±ę¢ØåŽšē”Ÿē—…é™¢'),
(103146, 'https://ror.org/01tpx7q41', 'en', 1, 'https://ror.org/01tpx7q41 Kochi Prefectural Forest Technology Center é«˜ēŸ„ēœŒē«‹ę£®ęž—ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103147, 'https://ror.org/04r2hbv78', 'en', 1, 'https://ror.org/04r2hbv78 Japan Pharmacists Education Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č–¬å‰¤åø«ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(103148, 'https://ror.org/05ad39p10', 'en', 1, 'https://ror.org/05ad39p10 Ishikawa Prefectural Institute of Public Health and Environmental Science ēŸ³å·ēœŒäæå„ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(103149, 'https://ror.org/01k3n4406', 'en', 1, 'https://ror.org/01k3n4406 Asama Nanroku Komoro Medical Center JAé•·é‡ŽåŽšē”Ÿé€£ęµ…é–“å—éŗ“ć“ć‚‚ć‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103150, 'https://ror.org/00sv37239', 'en', 1, 'https://ror.org/00sv37239 Sakai City Institute of Public Health å ŗåø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(103151, 'https://ror.org/043ysj081', 'en', 1, 'https://ror.org/043ysj081 Research Institute of Human Engineering for Quality Life äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗŗé–“ē”Ÿę“»å·„å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103152, 'https://ror.org/023zs7d73', 'en', 1, 'https://ror.org/023zs7d73 Cupid Clinic ē¤¾ä¼šē¦ē„‰ę³•äŗŗć‚Æćƒ”ćƒ‰ćƒ»ćƒ•ć‚§ć‚¢ćć“ć©ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(103153, 'https://ror.org/01v05f472', 'en', 1, 'https://ror.org/01v05f472 Kagoshima Prefectural Institute For Agricultural Development é¹æå…å³¶ēœŒč¾²ę„­é–‹ē™ŗē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(103154, 'https://ror.org/02g9f5b81', 'en', 1, 'https://ror.org/02g9f5b81 JAIS å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é€šäæ”ę•™č‚²ęŒÆčˆˆå”ä¼š'),
(103155, 'https://ror.org/017h2dy10', 'en', 1, 'https://ror.org/017h2dy10 Electro-Chemical and Cancer Institute åŒ»ē™‚ę³•äŗŗē¤¾å›£ē å…‰ä¼šč“®č¦‹ē™Œē ”ē©¶ę‰€'),
(103156, 'https://ror.org/015f26s43', 'en', 1, 'https://ror.org/015f26s43 Photovoltaic Power Generation Technology Research Association å¤Ŗé™½å…‰ē™ŗé›»ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(103157, 'https://ror.org/0162y3f52', 'en', 1, 'https://ror.org/0162y3f52 The Japan Bird Research Association čŖå®šNPOę³•äŗŗćƒćƒ¼ćƒ‰ćƒŖć‚µćƒ¼ćƒ'),
(103158, 'https://ror.org/05hf5kp66', 'en', 1, 'https://ror.org/05hf5kp66 Fukuoka Renal Clinic åŒ»ē™‚ę³•äŗŗåŒ»åæƒä¼šē¦å²”č…Žč‡“å†…ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(103159, 'https://ror.org/05qck8y15', 'en', 1, 'https://ror.org/05qck8y15 Kameda Daiichi Hospital åŒ»ē™‚ę³•äŗŗę„›ä»ä¼šäŗ€ē”°ē¬¬äø€ē—…é™¢'),
(103160, 'https://ror.org/0433m7c65', 'en', 1, 'https://ror.org/0433m7c65 Tanushimaru Central Hospital åŒ»ē™‚ę³•äŗŗč–å³°ä¼šē”°äø»äøøäø­å¤®ē—…é™¢'),
(103161, 'https://ror.org/05478fx36', 'it', 1, 'https://ror.org/05478fx36 Istituto Nazionale di Fisica Nucleare, Sezione di Perugia National Institute for Nuclear Physics, Perugia Unit'),
(103162, 'https://ror.org/01pvaw447', 'en', 0, 'https://ror.org/01pvaw447 Wikimedia Brasil'),
(103163, 'https://ror.org/03ram9582', 'no_lang_code', 1, 'https://ror.org/03ram9582 Shiraume Gakuen University ē™½ę¢…å­¦åœ’å¤§å­¦'),
(103164, 'https://ror.org/025mxtn51', 'en', 1, 'https://ror.org/025mxtn51 Center for Environmental Information Science äø€čˆ¬ē¤¾å›£ę³•äŗŗē’°å¢ƒęƒ…å ±ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(103165, 'https://ror.org/023p6h289', 'en', 1, 'https://ror.org/023p6h289 International Association of Privacy Professionals'),
(103166, 'https://ror.org/03hremv38', 'en', 1, 'https://ror.org/03hremv38 Japan Library Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›³ę›øé¤Øå”ä¼š'),
(103167, 'https://ror.org/040cqjs91', 'en', 1, 'https://ror.org/040cqjs91 New Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒ‹ćƒ„ćƒ¼ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ęŒÆčˆˆč²”å›£'),
(103168, 'https://ror.org/013cs1q72', 'pt', 1, 'https://ror.org/013cs1q72 Hospital de Santo AndrƩ'),
(103169, 'https://ror.org/05k8qyy21', 'en', 1, 'https://ror.org/05k8qyy21 Japan Medical Imaging and Radiological Systems Industries Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”»åƒåŒ»ē™‚ć‚·ć‚¹ćƒ†ćƒ å·„ę„­ä¼š'),
(103170, 'https://ror.org/007wr0r46', 'en', 1, 'https://ror.org/007wr0r46 Yokosuka City Hospital ęØŖé ˆč³€åø‚ē«‹åø‚ę°‘ē—…é™¢'),
(103171, 'https://ror.org/00j7hdq58', 'fr', 0, 'https://ror.org/00j7hdq58 Centre hospitalier affiliƩ universitaire de QuƩbec'),
(103172, 'https://ror.org/04de06r93', 'en', 1, 'https://ror.org/04de06r93 Fuji City General Hospital åÆŒå£«åø‚ē«‹äø­å¤®ē—…é™¢'),
(103173, 'https://ror.org/00dr28g20', 'en', 1, 'https://ror.org/00dr28g20 University of Crete UniversitĆ© de crĆØte Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĪ®Ļ„Ī·Ļ‚'),
(103174, 'https://ror.org/0373e2w33', 'en', 1, 'https://ror.org/0373e2w33 Japan Public Health Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å…¬č”†č”›ē”Ÿå”ä¼š'),
(103175, 'https://ror.org/02v4dqa55', 'en', 1, 'https://ror.org/02v4dqa55 Al-Qalam University for Humanities and Applied Sciences Ų¬Ų§Ł…Ų¹Ų© القلم Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ł†Ų³Ų§Ł†ŁŠŲ© ŁˆŲ§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(103176, 'https://ror.org/002hy1z05', 'en', 1, 'https://ror.org/002hy1z05 Japan Hydrographic Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę°“č·Æå”ä¼š'),
(103177, 'https://ror.org/022nkr288', 'en', 1, 'https://ror.org/022nkr288 Okayama College 岔山短期大学'),
(103178, 'https://ror.org/04q3w4q22', 'en', 1, 'https://ror.org/04q3w4q22 Japan Textile Products Quality and Technology Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē¹Šē¶­č£½å“å“č³ŖęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103179, 'https://ror.org/04ry0xt97', 'en', 1, 'https://ror.org/04ry0xt97 Nagoya Industries Promotion Corporation å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹ē”£ę„­ęŒÆčˆˆå…¬ē¤¾'),
(103180, 'https://ror.org/02hs16028', 'en', 1, 'https://ror.org/02hs16028 Fukushima Prefectual Center for Environmental Creation ē¦å³¶ēœŒē’°å¢ƒå‰µé€ ć‚»ćƒ³ć‚æćƒ¼'),
(103181, 'https://ror.org/03w63ta28', 'en', 1, 'https://ror.org/03w63ta28 Kato Ladies Clinic åŠ č—¤ćƒ¬ćƒ‡ć‚£ć‚¹ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(103182, 'https://ror.org/030t15102', 'en', 1, 'https://ror.org/030t15102 Matsuyama Shinonome Junior College ę¾å±±ę±é›²ēŸ­ęœŸå¤§å­¦'),
(103183, 'https://ror.org/03tpcyh35', 'en', 1, 'https://ror.org/03tpcyh35 Policy Research Institute, Ministry of Finance č²”å‹™ēœč²”å‹™ē·åˆę”æē­–ē ”ē©¶ę‰€'),
(103184, 'https://ror.org/03feehn34', 'en', 1, 'https://ror.org/03feehn34 The Nakamura Hajime Eastern Institute å…¬ē›Šč²”å›£ę³•äŗŗäø­ę‘å…ƒę±ę–¹ē ”ē©¶ę‰€'),
(103185, 'https://ror.org/01nffqt88', 'it', 1, 'https://ror.org/01nffqt88 Politecnico di Milano Polytechnic University of Milan Ɖcole Polytechnique de Milan'),
(103186, 'https://ror.org/044qwwh31', 'en', 1, 'https://ror.org/044qwwh31 Infrastructure Development INSTITUTE-JAPAN äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›å»ŗčØ­ęŠ€č”“å”ä¼š'),
(103187, 'https://ror.org/04s3apq10', 'en', 1, 'https://ror.org/04s3apq10 Miyazaki Prefecture Foods Development Center å®®å“ŽēœŒé£Ÿå“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(103188, 'https://ror.org/05p939w45', 'en', 1, 'https://ror.org/05p939w45 Tochigi Prefecture Kenou Animal Hygiene Service Center Of Tochigi ę ƒęœØēœŒēœŒå¤®å®¶ē•œäæå„č”›ē”Ÿę‰€'),
(103189, 'https://ror.org/014d2dj78', 'en', 1, 'https://ror.org/014d2dj78 Yamaguchi Prefectural Agriculture and Forestry General Technology Center å±±å£ēœŒč¾²ęž—ē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103190, 'https://ror.org/018c4h365', 'en', 1, 'https://ror.org/018c4h365 Japan Educational Research Institute äø€čˆ¬č²”å›£ę³•äŗŗę•™č‚²čŖæęŸ»ē ”ē©¶ę‰€'),
(103191, 'https://ror.org/01ws30v92', 'en', 1, 'https://ror.org/01ws30v92 Gamagori City Hospital č’²éƒ”åø‚ę°‘ē—…é™¢'),
(103192, 'https://ror.org/02gxxzb83', 'en', 1, 'https://ror.org/02gxxzb83 Japan Network Information Center äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æć‚¤ćƒ³ćƒ•ć‚©ćƒ”ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(103193, 'https://ror.org/03t99av60', 'en', 1, 'https://ror.org/03t99av60 Kyoto Prefectural Agriculture, Forestry and Fisheries Technology Center äŗ¬éƒ½åŗœč¾²ęž—ę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103194, 'https://ror.org/00nf9rg18', 'en', 1, 'https://ror.org/00nf9rg18 Japan Accreditation Board å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é©åˆę€§čŖå®šå”ä¼š'),
(103195, 'https://ror.org/04p7cv903', 'en', 1, 'https://ror.org/04p7cv903 The Energy Conservation Center, Japan äø€čˆ¬č²”å›£ę³•äŗŗēœć‚Øćƒćƒ«ć‚®ćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(103196, 'https://ror.org/05eya0167', 'en', 1, 'https://ror.org/05eya0167 Ishikawa Prefectural Government ēŸ³å·ēœŒåŗ'),
(103197, 'https://ror.org/056cay145', 'en', 1, 'https://ror.org/056cay145 Saga Fruit Research Laboratory ä½č³€ēœŒęžœęØ¹č©¦éØ“å “'),
(103198, 'https://ror.org/03dhqwb76', 'en', 1, 'https://ror.org/03dhqwb76 Japan Building Management Institute äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ“ćƒ«ćƒ‚ćƒ³ć‚°ēµŒå–¶ć‚»ćƒ³ć‚æćƒ¼'),
(103199, 'https://ror.org/01xcq4388', 'en', 1, 'https://ror.org/01xcq4388 Japan Health & Research Institute äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·é–‹ē™ŗč²”å›£'),
(103200, 'https://ror.org/05pp6zn13', 'en', 1, 'https://ror.org/05pp6zn13 Kaizuka City Hospital åø‚ē«‹č²å”šē—…é™¢'),
(103201, 'https://ror.org/038evk156', 'en', 1, 'https://ror.org/038evk156 Nagasaki Rehabilitation äø€čˆ¬ē¤¾å›£ę³•äŗŗę˜ÆēœŸä¼šé•·å“ŽćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(103202, 'https://ror.org/03eb2zp02', 'en', 1, 'https://ror.org/03eb2zp02 Japanese Organisation for Research and Treatment of Cancer ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗJORTC'),
(103203, 'https://ror.org/04xfw1m83', 'en', 1, 'https://ror.org/04xfw1m83 Shingu Municipal Medical Center ę–°å®®åø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103204, 'https://ror.org/03rp86n04', 'en', 1, 'https://ror.org/03rp86n04 Japan Society for the Promotion of Machine Industry äø€čˆ¬č²”å›£ę³•äŗŗę©Ÿę¢°ęŒÆčˆˆå”ä¼š'),
(103205, 'https://ror.org/00v5mf634', 'en', 1, 'https://ror.org/00v5mf634 Hiroshima Community Research Center č²”å›£ę³•äŗŗåŗƒå³¶åœ°åŸŸē¤¾ä¼šē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103206, 'https://ror.org/05aqxs106', 'en', 1, 'https://ror.org/05aqxs106 Hyogo Environmental Advancement Association å…¬ē›Šč²”å›£ę³•äŗŗć²ć‚‡ć†ć”ē’°å¢ƒå‰µé€ å”ä¼š'),
(103207, 'https://ror.org/01e87x925', 'en', 1, 'https://ror.org/01e87x925 The Institute of Cetacean Research äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬éÆØé”žē ”ē©¶ę‰€'),
(103208, 'https://ror.org/04pj4k457', 'en', 1, 'https://ror.org/04pj4k457 Fukuoka Sanno Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£é«˜é‚¦ä¼šē¦å²”å±±ēŽ‹ē—…é™¢'),
(103209, 'https://ror.org/04abgsr31', 'en', 1, 'https://ror.org/04abgsr31 Japan Council for Quality Health Care å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åŒ»ē™‚ę©Ÿčƒ½č©•ä¾”ę©Ÿę§‹'),
(103210, 'https://ror.org/01ftapy35', 'en', 1, 'https://ror.org/01ftapy35 Kagoshima Prefectural Forestry Technology Center é¹æå…å³¶ēœŒę£®ęž—ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(103211, 'https://ror.org/023ss7c43', 'en', 1, 'https://ror.org/023ss7c43 Tokushima Agriculture, Forestry and Fisheries Technology Support Center å¾³å³¶ēœŒē«‹č¾²ęž—ę°“ē”£ē·åˆęŠ€č”“ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(103212, 'https://ror.org/05720c510', 'en', 1, 'https://ror.org/05720c510 Nozaki Hospital äø€čˆ¬č²”å›£ę³•äŗŗå¼˜ę½¤ä¼šé‡Žå“Žē—…é™¢'),
(103213, 'https://ror.org/055tbc836', 'fr', 1, 'https://ror.org/055tbc836 Fondation Maison franco-japonaise å…¬ē›Šč²”å›£ę³•äŗŗę—„ä»ä¼šé¤Ø'),
(103214, 'https://ror.org/01k38fe56', 'en', 1, 'https://ror.org/01k38fe56 Katsuragi Hospital åŒ»ē™‚ę³•äŗŗå¤§ę¤ä¼šč‘›åŸŽē—…é™¢'),
(103215, 'https://ror.org/04jr01610', 'en', 1, 'https://ror.org/04jr01610 Carnegie Institution for Science'),
(103216, 'https://ror.org/015xqjq34', 'en', 1, 'https://ror.org/015xqjq34 Yokohama Brain and Spine Center ęØŖęµœåø‚ē«‹č„³å’äø­ćƒ»ē„žēµŒč„Šę¤Žć‚»ćƒ³ć‚æćƒ¼'),
(103217, 'https://ror.org/02snrrd92', 'en', 1, 'https://ror.org/02snrrd92 Mie Prefecture Livestock Research Institute äø‰é‡ēœŒē•œē”£ē ”ē©¶ę‰€'),
(103218, 'https://ror.org/05999hj24', 'en', 1, 'https://ror.org/05999hj24 Kumamoto Kinoh Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£åÆæé‡ä¼šē†Šęœ¬ę©Ÿčƒ½ē—…é™¢'),
(103219, 'https://ror.org/03dq5hx50', 'en', 1, 'https://ror.org/03dq5hx50 Chutoen General Medical Center ęŽ›å·åø‚ćƒ»č¢‹äŗ•åø‚ē—…é™¢ä¼ę„­å›£ē«‹äø­ę±é ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103220, 'https://ror.org/04adnng28', 'en', 1, 'https://ror.org/04adnng28 International Society for Mangrove Ecosystems ē‰¹åˆ„éžå–¶åˆ©ę“»å‹•ę³•äŗŗå›½éš›ćƒžćƒ³ć‚°ćƒ­ćƒ¼ćƒ–ē”Ÿę…‹ē³»å”ä¼š'),
(103221, 'https://ror.org/02a0gt662', 'en', 1, 'https://ror.org/02a0gt662 The Japan Society of Hepatology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‚č‡“å­¦ä¼š'),
(103222, 'https://ror.org/005q86y64', 'en', 1, 'https://ror.org/005q86y64 Radiation Effects Association å…¬ē›Šč²”å›£ę³•äŗŗę”¾å°„ē·šå½±éŸæå”ä¼š'),
(103223, 'https://ror.org/056rez340', 'es', 1, 'https://ror.org/056rez340 Instituto Tecnológico de Agua Prieta'),
(103224, 'https://ror.org/00813j607', 'en', 1, 'https://ror.org/00813j607 Miyazaki Prefecture Industrial Technology Center å®®å“ŽēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103225, 'https://ror.org/00vye5g85', 'en', 1, 'https://ror.org/00vye5g85 Research Centre in Digitalization and Intelligent Robotics'),
(103226, 'https://ror.org/03ajxah49', 'en', 1, 'https://ror.org/03ajxah49 Japanese Society of Oral Implantology å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å£č…”ć‚¤ćƒ³ćƒ—ćƒ©ćƒ³ćƒˆå­¦ä¼š'),
(103227, 'https://ror.org/01xxhmy70', 'en', 1, 'https://ror.org/01xxhmy70 Ibaraki Fisheries Research Institute čŒØåŸŽēœŒę°“ē”£č©¦éØ“å “'),
(103228, 'https://ror.org/00d238852', 'en', 1, 'https://ror.org/00d238852 Saitamaken Chagyo Research Institute åŸ¼ēŽ‰ēœŒčŒ¶ę„­ē ”ē©¶ę‰€'),
(103229, 'https://ror.org/03gngkv54', 'en', 1, 'https://ror.org/03gngkv54 Sapporo City Institute of Public Health ęœ­å¹Œåø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(103230, 'https://ror.org/03e1qkx04', 'en', 1, 'https://ror.org/03e1qkx04 Yamagata Prefectural Forest Research and Instruction Center å±±å½¢ēœŒę£®ęž—ē ”ē©¶ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(103231, 'https://ror.org/00vx61498', 'en', 1, 'https://ror.org/00vx61498 Aichi University of Technology Automotive Junior College ę„›ēŸ„å·„ē§‘å¤§å­¦č‡Ŗå‹•č»ŠēŸ­ęœŸå¤§å­¦'),
(103232, 'https://ror.org/01ce8nm85', 'vi', 1, 'https://ror.org/01ce8nm85 Hoa Binh University TrĘ°į»ng ĐẔi hį»c HoĆ  BƬnh'),
(103233, 'https://ror.org/007gbh138', 'en', 1, 'https://ror.org/007gbh138 Sakurakai Takahashi Hospital åŒ»ē™‚ē¤¾å›£ę³•äŗŗć•ćć‚‰ä¼šé«˜ę©‹ē—…é™¢'),
(103234, 'https://ror.org/01bb9k904', 'en', 1, 'https://ror.org/01bb9k904 Hokkaido Medical Center for Child Health and Rehabilitation åŒ—ęµ·é“ē«‹å­ć©ć‚‚ē·åˆåŒ»ē™‚ćƒ»ē™‚č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(103235, 'https://ror.org/05k623468', 'en', 1, 'https://ror.org/05k623468 Foundation for Ambulance Service Development äø€čˆ¬č²”å›£ę³•äŗŗę•‘ę€„ęŒÆčˆˆč²”å›£'),
(103236, 'https://ror.org/033v6h662', 'en', 1, 'https://ror.org/033v6h662 Japan Foundry Engineering Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é‹³é€ å·„å­¦ä¼š'),
(103237, 'https://ror.org/009pyrv87', 'en', 1, 'https://ror.org/009pyrv87 Sekizen Hospital äø€čˆ¬č²”å›£ę³•äŗŗę±ŸåŽŸē©å–„ä¼šē©å–„ē—…é™¢'),
(103238, 'https://ror.org/00msgqq02', 'en', 1, 'https://ror.org/00msgqq02 Steel Memorial Muroran Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč£½é‰„čØ˜åæµå®¤č˜­ē—…é™¢'),
(103239, 'https://ror.org/000hskt11', 'en', 1, 'https://ror.org/000hskt11 The Institute of Medical Science, Asahi Life Foundation å…¬ē›Šč²”å›£ę³•äŗŗęœę—„ē”Ÿå‘½ęˆäŗŗē—…ē ”ē©¶ę‰€ 附属医院'),
(103240, 'https://ror.org/009e5z592', 'en', 1, 'https://ror.org/009e5z592 Civil Engineering Research Laboratory äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ęŠ€č”“ē ”ē©¶ę‰€'),
(103241, 'https://ror.org/00tdyb139', 'en', 0, 'https://ror.org/00tdyb139 Carnegie Department of Plant Biology'),
(103242, 'https://ror.org/010a7ac66', 'en', 1, 'https://ror.org/010a7ac66 Soseikai General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£č˜‡ē”Ÿä¼šč˜‡ē”Ÿä¼šē·åˆē—…é™¢'),
(103243, 'https://ror.org/00b51r420', 'en', 1, 'https://ror.org/00b51r420 Institute of Radiation Measurements å…¬ē›Šč²”å›£ę³•äŗŗę”¾å°„ē·ščØˆęø¬å”ä¼š'),
(103244, 'https://ror.org/05nmgz888', 'en', 1, 'https://ror.org/05nmgz888 Okinawa Prefectural Livestock and Grassland Research Center ę²–ēø„ēœŒē•œē”£ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103245, 'https://ror.org/054y9ww65', 'en', 1, 'https://ror.org/054y9ww65 Nishinomiya Watanabe Cardiovascular Center ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęø”é‚Šé«˜čØ˜åæµä¼šč„æå®®ęø”č¾ŗåæƒč‡“ćƒ»č”€ē®”ć‚»ćƒ³ć‚æćƒ¼'),
(103246, 'https://ror.org/019xtd122', 'en', 1, 'https://ror.org/019xtd122 Japan Management Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čƒ½ēŽ‡å”ä¼š'),
(103247, 'https://ror.org/000rfqn88', 'en', 1, 'https://ror.org/000rfqn88 Amagasaki Chuo Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗäø­å¤®ä¼šå°¼å“Žäø­å¤®ē—…é™¢'),
(103248, 'https://ror.org/05xek1n35', 'en', 1, 'https://ror.org/05xek1n35 Todachuo General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę±å…‰ä¼šęˆøē”°äø­å¤®ē·åˆē—…é™¢'),
(103249, 'https://ror.org/057m2yx22', 'en', 1, 'https://ror.org/057m2yx22 Koriyama Women''s College 郔山儳子大学短期大学部'),
(103250, 'https://ror.org/03pdrsd12', 'en', 1, 'https://ror.org/03pdrsd12 Osaka Gakuin Junior College å¤§é˜Ŗå­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103251, 'https://ror.org/031nbmf07', 'en', 0, 'https://ror.org/031nbmf07 Social Sports Center äø€čˆ¬č²”å›£ę³•äŗŗē¤¾ä¼šć‚¹ćƒćƒ¼ćƒ„ć‚»ćƒ³ć‚æćƒ¼'),
(103252, 'https://ror.org/03fxjgq92', 'en', 1, 'https://ror.org/03fxjgq92 Asian Health Institute å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚øć‚¢äæå„ē ”äæ®ę‰€'),
(103253, 'https://ror.org/03tw56e23', 'en', 1, 'https://ror.org/03tw56e23 Akita Fruit-Tree Experiment Station ē§‹ē”°ēœŒęžœęØ¹č©¦éØ“å “'),
(103254, 'https://ror.org/03memf294', 'en', 1, 'https://ror.org/03memf294 Gunma Prefectural Forestry Experiment Station ē¾¤é¦¬ēœŒęž—ę„­č©¦éØ“å “'),
(103255, 'https://ror.org/05fkc6595', 'en', 1, 'https://ror.org/05fkc6595 Ogaki Tokushukai Hospital åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šå¤§åž£å¾³ę“²ä¼šē—…é™¢'),
(103256, 'https://ror.org/00ybvyr04', 'en', 1, 'https://ror.org/00ybvyr04 IUCN Commission on Ecosystem Management'),
(103257, 'https://ror.org/004jgvp16', 'en', 1, 'https://ror.org/004jgvp16 Mimasaka Junior College ē¾Žä½œå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103258, 'https://ror.org/02x0yjy88', 'en', 1, 'https://ror.org/02x0yjy88 Research Institute of Urbanization å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚åŒ–ē ”ē©¶å…¬å®¤'),
(103259, 'https://ror.org/03xes6q20', 'en', 1, 'https://ror.org/03xes6q20 Utsunomiya Junior College å®‡éƒ½å®®ēŸ­ęœŸå¤§å­¦'),
(103260, 'https://ror.org/00gxqh189', 'en', 1, 'https://ror.org/00gxqh189 KKR Sapporo Medical Center å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šęœ­å¹ŒåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103261, 'https://ror.org/0068d6x78', 'en', 1, 'https://ror.org/0068d6x78 Aino Hospital åŒ»ē™‚ę³•äŗŗę’ę˜­ä¼šč—é‡Žē—…é™¢'),
(103262, 'https://ror.org/018g9j451', 'en', 1, 'https://ror.org/018g9j451 YAO Municipal Hospital 八尾市立病院'),
(103263, 'https://ror.org/037vd2e78', 'en', 1, 'https://ror.org/037vd2e78 Mie Prefecture Health and Environment Research Institute äø‰é‡ēœŒäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(103264, 'https://ror.org/02p2zte22', 'fr', 1, 'https://ror.org/02p2zte22 Centre de recherche Charles-Le Moyne'),
(103265, 'https://ror.org/03kp94284', 'en', 1, 'https://ror.org/03kp94284 THE Japan Welding Technology Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęŗ¶ęŽ„ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103266, 'https://ror.org/00e2t3013', 'en', 1, 'https://ror.org/00e2t3013 Reconstruction Agency 復興庁'),
(103267, 'https://ror.org/01t5ta457', 'pt', 1, 'https://ror.org/01t5ta457 Centre for Innovative Biomedicine and Biotechnology Centro de Inovação em Biomedicina e Biotecnologia'),
(103268, 'https://ror.org/0246fxh44', 'en', 1, 'https://ror.org/0246fxh44 Kostanay Socio-Technical University named after academician Z. Aldamzhar АкаГемик Š—. АлГамжар атынГағы ŅšŠ¾ŃŃ‚Š°Š½Š°Š¹ Ó™Š»ŠµŃƒŠ¼ŠµŃ‚Ń‚Ń–Šŗ-техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š—.АлГамжар'),
(103269, 'https://ror.org/049dv0m11', 'en', 1, 'https://ror.org/049dv0m11 Mutsu General Hospital ć‚€ć¤ē·åˆē—…é™¢'),
(103270, 'https://ror.org/03znejq22', 'en', 1, 'https://ror.org/03znejq22 Tomakomai City Hospital č‹«å°ē‰§åø‚ē«‹ē—…é™¢'),
(103271, 'https://ror.org/00nrj9146', 'en', 1, 'https://ror.org/00nrj9146 Kobe Tokiwa Junior College ē„žęˆøåøøē›¤å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103272, 'https://ror.org/04q876q10', 'en', 1, 'https://ror.org/04q876q10 The Tokyo Foundation for Policy Research å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬č²”å›£ę”æē­–ē ”ē©¶ę‰€'),
(103273, 'https://ror.org/01tz05n88', 'en', 1, 'https://ror.org/01tz05n88 Omuta Tenryo Hospital äø€čˆ¬č²”å›£ę³•äŗŗē¦å²”ēœŒē¤¾ä¼šäæé™ŗåŒ»ē™‚å”ä¼šē¤¾ä¼šäæé™ŗå¤§ē‰Ÿē”°å¤©é ˜ē—…é™¢'),
(103274, 'https://ror.org/0058xdx33', 'en', 1, 'https://ror.org/0058xdx33 Japan Welding Society äø€čˆ¬ē¤¾å›£ę³•äŗŗęŗ¶ęŽ„å­¦ä¼š'),
(103275, 'https://ror.org/00xgca252', 'en', 1, 'https://ror.org/00xgca252 Kawasaki Environment Research Institute å·å“Žåø‚ē’°å¢ƒē·åˆē ”ē©¶ę‰€'),
(103276, 'https://ror.org/0086pzr68', 'en', 1, 'https://ror.org/0086pzr68 Nanbu Child Medical Center ę²–ēø„ēœŒē«‹å—éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ćƒ»ć“ć©ć‚‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103277, 'https://ror.org/00qembr49', 'en', 1, 'https://ror.org/00qembr49 The Japanese Society of Hematology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č”€ę¶²å­¦ä¼š'),
(103278, 'https://ror.org/057jn4x11', 'en', 1, 'https://ror.org/057jn4x11 Sanno Hospital åŒ»ē™‚ę³•äŗŗēæ ę˜Žä¼šå±±ēŽ‹ē—…é™¢'),
(103279, 'https://ror.org/015gz1707', 'en', 1, 'https://ror.org/015gz1707 Kyoaikai Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗå‡½é¤Øå…±ę„›ä¼šå…±ę„›ä¼šē—…é™¢'),
(103280, 'https://ror.org/016svmr24', 'en', 1, 'https://ror.org/016svmr24 Nishina Memorial Foundation å…¬ē›Šč²”å›£ę³•äŗŗä»ē§‘čØ˜åæµč²”å›£'),
(103281, 'https://ror.org/03grecp63', 'en', 1, 'https://ror.org/03grecp63 Nagasaki City Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé•·å“Žåø‚åŒ»åø«ä¼š'),
(103282, 'https://ror.org/05e48s567', 'en', 0, 'https://ror.org/05e48s567 The Medical and Pharmacological Research Center Foundation äø€čˆ¬č²”å›£ę³•äŗŗå…ˆē«ÆåŒ»å­¦č–¬å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103283, 'https://ror.org/05fsqrn62', 'en', 1, 'https://ror.org/05fsqrn62 Kagawa Prefectural Government é¦™å·ēœŒåŗ'),
(103284, 'https://ror.org/01e2d5r18', 'en', 1, 'https://ror.org/01e2d5r18 Navitas Clinic åŒ»ē™‚ę³•äŗŗē¤¾å›£é‰„åŒ»ä¼šćƒŠćƒ“ć‚æć‚¹ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(103285, 'https://ror.org/05b08sa84', 'en', 1, 'https://ror.org/05b08sa84 Niigata Prefectural Forest Experiment Station ę–°ę½ŸēœŒę£®ęž—ē ”ē©¶ę‰€'),
(103286, 'https://ror.org/02m9md307', 'en', 1, 'https://ror.org/02m9md307 Ibaraki Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗčŒØåŸŽēœŒåŒ»åø«ä¼š'),
(103287, 'https://ror.org/00nhpg097', 'en', 1, 'https://ror.org/00nhpg097 Kobe College of Education ē„žęˆøę•™č‚²ēŸ­ęœŸå¤§å­¦'),
(103288, 'https://ror.org/056fncw72', 'en', 1, 'https://ror.org/056fncw72 The Japan Institute of Metals and Materials å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é‡‘å±žå­¦ä¼š'),
(103289, 'https://ror.org/01641cv78', 'en', 1, 'https://ror.org/01641cv78 Soka Women''s College å‰µä¾”å„³å­ēŸ­ęœŸå¤§å­¦'),
(103290, 'https://ror.org/01rd31k26', 'en', 1, 'https://ror.org/01rd31k26 Japan Packaging Institute å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ…č£…ęŠ€č”“å”ä¼š'),
(103291, 'https://ror.org/02qr20086', 'en', 1, 'https://ror.org/02qr20086 The Institute of Professional Engineers, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęŠ€č”“å£«ä¼š'),
(103292, 'https://ror.org/03nv2sd82', 'en', 1, 'https://ror.org/03nv2sd82 Wakayama Prefectural Fisheries Experiment Station å’Œę­Œå±±ēœŒę°“ē”£č©¦éØ“å “');
INSERT INTO `rors` VALUES
(103293, 'https://ror.org/02j1as185', 'en', 1, 'https://ror.org/02j1as185 Narimasu Kosei Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ēæ ä¼šęˆå¢—åŽšē”Ÿē—…é™¢'),
(103294, 'https://ror.org/03eg6ys02', 'en', 1, 'https://ror.org/03eg6ys02 American Library Association'),
(103295, 'https://ror.org/003536y35', 'en', 1, 'https://ror.org/003536y35 South Miyagi Medical Center ćæć‚„ćŽēœŒå—äø­ę øē—…é™¢'),
(103296, 'https://ror.org/0200bd281', 'en', 1, 'https://ror.org/0200bd281 Asahikawa Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—­å·åø‚åŒ»åø«ä¼š'),
(103297, 'https://ror.org/03ztgas51', 'es', 1, 'https://ror.org/03ztgas51 Asociación Colombiana de Ciencias Biológicas'),
(103298, 'https://ror.org/015x7ap02', 'en', 1, 'https://ror.org/015x7ap02 Osaka Police Hospital å¤§é˜Ŗć‘ć„ć•ć¤ē—…é™¢ å¤§é˜Ŗč­¦åÆŸē—…é™¢ ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤§é˜Ŗå›½éš›ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ļ¼†ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼ å¤§é˜Ŗč­¦åÆŸē—…é™¢'),
(103299, 'https://ror.org/02q7ncz83', 'en', 1, 'https://ror.org/02q7ncz83 Hosogi Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗä»ē”Ÿä¼šē“°ęœØē—…é™¢'),
(103300, 'https://ror.org/03zszgs95', 'en', 1, 'https://ror.org/03zszgs95 National Medical Library NĆ”rodnĆ­ LĆ©kařskĆ” Knihovna'),
(103301, 'https://ror.org/00g2asy76', 'en', 1, 'https://ror.org/00g2asy76 Japan Guide Dog Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē›²å°ŽēŠ¬å”ä¼š'),
(103302, 'https://ror.org/042vs2406', 'en', 1, 'https://ror.org/042vs2406 Sanno Hospital åŒ»ē™‚ę³•äŗŗč²”å›£é †å’Œä¼šå±±ēŽ‹ē—…é™¢'),
(103303, 'https://ror.org/03ejtwf02', 'en', 1, 'https://ror.org/03ejtwf02 INA Central Hospital ä¼Šé‚£äø­å¤®ē—…é™¢'),
(103304, 'https://ror.org/04nefcs44', 'en', 1, 'https://ror.org/04nefcs44 Nepal College of Management'),
(103305, 'https://ror.org/01cnyr648', 'en', 1, 'https://ror.org/01cnyr648 International College of Technology, Kanazawa å›½éš›é«˜ē­‰å°‚é–€å­¦ę ”'),
(103306, 'https://ror.org/05mbb3g87', 'en', 1, 'https://ror.org/05mbb3g87 Akitsu Kounoike Hospital åŒ»ē™‚ę³•äŗŗé“»ę± ä¼šē§‹ę“„é“»ę± ē—…é™¢'),
(103307, 'https://ror.org/04renyd42', 'en', 1, 'https://ror.org/04renyd42 The University of Shimane Junior College å³¶ę ¹ēœŒē«‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103308, 'https://ror.org/05qg1fd04', 'en', 1, 'https://ror.org/05qg1fd04 Fukuoka Agriculture and Forestry Research Center ē¦å²”ēœŒč¾²ęž—ę„­ē·åˆč©¦éØ“å “'),
(103309, 'https://ror.org/05h2s3g06', 'en', 1, 'https://ror.org/05h2s3g06 Nissenken Quality Evaluation Center äø€čˆ¬č²”å›£ę³•äŗŗćƒ‹ćƒƒć‚»ćƒ³ć‚±ćƒ³å“č³Ŗč©•ä¾”ć‚»ćƒ³ć‚æćƒ¼'),
(103310, 'https://ror.org/044a8tz03', 'en', 1, 'https://ror.org/044a8tz03 Nagano Prefectural Institute of Technology é•·é‡ŽēœŒå·„ē§‘ēŸ­ęœŸå¤§å­¦ę ”'),
(103311, 'https://ror.org/00573e884', 'en', 1, 'https://ror.org/00573e884 Nagano Nanshin Agricultural Experiment Station é•·é‡ŽēœŒå—äæ”č¾²ę„­č©¦éØ“å “'),
(103312, 'https://ror.org/03jmt9g16', 'en', 1, 'https://ror.org/03jmt9g16 Akita Kousei Medical Center JAē§‹ē”°åŽšē”Ÿé€£ē§‹ē”°åŽšē”ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103313, 'https://ror.org/01r281910', 'en', 1, 'https://ror.org/01r281910 Tokyo Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½ēœ‹č­·å”ä¼š'),
(103314, 'https://ror.org/05r7da694', 'en', 1, 'https://ror.org/05r7da694 Fukushima Prefectural Environmental Center ē¦å³¶ēœŒē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(103315, 'https://ror.org/02cpwqf16', 'en', 1, 'https://ror.org/02cpwqf16 JAē§‹ē”°åŽšē”Ÿé€£é›„å‹äø­å¤®ē—…é™¢ Ogachi Central Hospital'),
(103316, 'https://ror.org/04y2jhf44', 'en', 1, 'https://ror.org/04y2jhf44 Nissho å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę¶ˆé˜²å”ä¼š'),
(103317, 'https://ror.org/0347ywk92', 'fr', 1, 'https://ror.org/0347ywk92 Bien-ĆŖtre, Organisations, NumĆ©rique, HabitabilitĆ©, Ɖducation, UniversalitĆ©, Relations, Savoirs - BONHEURS Well-being, Organizations, Digital, Habitability, Education, Universality, Relations, Knowledge'),
(103318, 'https://ror.org/02mjn1p68', 'en', 1, 'https://ror.org/02mjn1p68 Tottori Swine & Poultry Experiment Station é³„å–ēœŒäø­å°å®¶ē•œč©¦éØ“å “'),
(103319, 'https://ror.org/05nn4ph13', 'en', 1, 'https://ror.org/05nn4ph13 Hata Kenmin Hospital é«˜ēŸ„ēœŒē«‹å¹”å¤šć‘ć‚“ćæć‚“ē—…é™¢'),
(103320, 'https://ror.org/0057ax056', 'en', 1, 'https://ror.org/0057ax056 King Mongkut''s University of Technology Thonburi ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ąø˜ąø™ąøšąøøąø£ąøµ'),
(103321, 'https://ror.org/04dq3z287', 'en', 1, 'https://ror.org/04dq3z287 Iwamizawa Asuka Hospital å²©č¦‹ę²¢ę˜Žę—„ä½³ē—…é™¢'),
(103322, 'https://ror.org/00f1ezm10', 'de', 1, 'https://ror.org/00f1ezm10 Deutsche Gartenbauwissenschaftliche Gesellschaft e. V. German Society for Horticultural Science'),
(103323, 'https://ror.org/032keq607', 'en', 1, 'https://ror.org/032keq607 International Union for Conservation of Nature (Guinea-Bissau) Union Internationale Pour la Conservation de la Nature'),
(103324, 'https://ror.org/02zab2r83', 'en', 1, 'https://ror.org/02zab2r83 Hirosaki Stroke and Rehabilitation Center äø€čˆ¬č²”å›£ę³•äŗŗé»Žę˜Žéƒ·å¼˜å‰č„³å’äø­ćƒ»ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(103325, 'https://ror.org/04ea1wf37', 'en', 1, 'https://ror.org/04ea1wf37 Uonuma kikan Hospital ę–°ę½Ÿå¤§å­¦åœ°åŸŸåŒ»ē™‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼é­šę²¼åŸŗå¹¹ē—…é™¢'),
(103326, 'https://ror.org/01dzm1z55', 'en', 1, 'https://ror.org/01dzm1z55 Humboldt International University'),
(103327, 'https://ror.org/01qf62403', 'en', 1, 'https://ror.org/01qf62403 SUWA Central Hospital ēµ„åˆē«‹č«čØŖäø­å¤®ē—…é™¢'),
(103328, 'https://ror.org/00ajvsd91', 'en', 1, 'https://ror.org/00ajvsd91 Marie Cederschiƶld Hƶgskola Marie Cederschiƶld University'),
(103329, 'https://ror.org/04ehhn480', 'en', 1, 'https://ror.org/04ehhn480 Japan Building Materials Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ęę–™å”ä¼š'),
(103330, 'https://ror.org/009e9xc03', 'en', 1, 'https://ror.org/009e9xc03 Shinseikai-Toyama Hospital åŒ»ē™‚ę³•äŗŗēœŸē”Ÿä¼šåÆŒå±±ē—…é™¢'),
(103331, 'https://ror.org/03chdv970', 'en', 1, 'https://ror.org/03chdv970 Yamaha Music Foundation äø€čˆ¬č²”å›£ę³•äŗŗćƒ¤ćƒžćƒéŸ³ę„½ęŒÆčˆˆä¼š'),
(103332, 'https://ror.org/03wm0hx40', 'en', 1, 'https://ror.org/03wm0hx40 Ofuna Chuo Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£äŗ’ęµä¼šå¤§čˆ¹äø­å¤®ē—…é™¢'),
(103333, 'https://ror.org/05qxybn54', 'en', 1, 'https://ror.org/05qxybn54 Kyoto Saga Art College åµÆå³Øē¾Žč”“ēŸ­ęœŸå¤§å­¦'),
(103334, 'https://ror.org/02meqw785', 'en', 1, 'https://ror.org/02meqw785 The SKYLARK Food Science Institute å…¬ē›Šč²”å›£ę³•äŗŗć™ć‹ć„ć‚‰ćƒ¼ććƒ•ćƒ¼ćƒ‰ć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶ę‰€'),
(103335, 'https://ror.org/01pawvf59', 'fr', 0, 'https://ror.org/01pawvf59 PrƩhistoire et Technologie'),
(103336, 'https://ror.org/05814ha56', 'en', 1, 'https://ror.org/05814ha56 Japan Dairy Association äø€čˆ¬ē¤¾å›£ę³•äŗŗJćƒŸćƒ«ć‚Æ'),
(103337, 'https://ror.org/041akmr36', 'en', 1, 'https://ror.org/041akmr36 University of Shizuoka Junior College é™å²”ēœŒē«‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103338, 'https://ror.org/02ngp7z50', 'en', 1, 'https://ror.org/02ngp7z50 Saga Livestock Research Laboratory ä½č³€ēœŒē•œē”£č©¦éØ“å “'),
(103339, 'https://ror.org/03jwfk445', 'en', 1, 'https://ror.org/03jwfk445 IUCN Commission on Environmental, Economic and Social Policy'),
(103340, 'https://ror.org/02s3af642', 'en', 1, 'https://ror.org/02s3af642 Saitama Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒåŒ»åø«ä¼š'),
(103341, 'https://ror.org/01ww30x54', 'en', 1, 'https://ror.org/01ww30x54 Public Tomioka General Hospital å…¬ē«‹åÆŒå²”ē·åˆē—…é™¢'),
(103342, 'https://ror.org/05mhc7495', 'en', 1, 'https://ror.org/05mhc7495 The Japan Diabetes Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē³–å°æē—…å­¦ä¼š'),
(103343, 'https://ror.org/034sbqc84', 'fr', 0, 'https://ror.org/034sbqc84 HƓtel-Dieu de QuƩbec'),
(103344, 'https://ror.org/04gzand64', 'en', 1, 'https://ror.org/04gzand64 New Glass Forum äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ‹ćƒ„ćƒ¼ć‚¬ćƒ©ć‚¹ćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(103345, 'https://ror.org/0107cfd66', 'en', 1, 'https://ror.org/0107cfd66 The Nigerian Baptist Theological Seminary'),
(103346, 'https://ror.org/0531smp09', 'en', 1, 'https://ror.org/0531smp09 Kitasato Research Center of Environmental Sciences äø€čˆ¬č²”å›£ę³•äŗŗåŒ—é‡Œē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(103347, 'https://ror.org/04y31xb63', 'en', 1, 'https://ror.org/04y31xb63 Center for Better Living äø€čˆ¬č²”å›£ę³•äŗŗćƒ™ć‚æćƒ¼ćƒŖćƒ“ćƒ³ć‚°'),
(103348, 'https://ror.org/04jfpax71', 'en', 1, 'https://ror.org/04jfpax71 Industrial Technology Center of Nagasaki é•·å“ŽēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103349, 'https://ror.org/04f8zmj78', 'en', 1, 'https://ror.org/04f8zmj78 Kyoto Yamashiro General Medical Center äŗ¬éƒ½å±±åŸŽē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103350, 'https://ror.org/01eyz2v57', 'en', 1, 'https://ror.org/01eyz2v57 Nanbu Tokushukai Hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šå—éƒØå¾³ę“²ä¼šē—…é™¢'),
(103351, 'https://ror.org/03pgfk695', 'en', 1, 'https://ror.org/03pgfk695 JAę–°ę½ŸåŽšē”Ÿé€£é•·å²”äø­å¤®ē¶œåˆē—…é™¢ Nagaoka Chuo General hospital'),
(103352, 'https://ror.org/01rxcdb50', 'en', 1, 'https://ror.org/01rxcdb50 Laboratories of Image Information Science and Technology č²”å›£ę³•äŗŗć‚¤ćƒ”ćƒ¼ć‚øęƒ…å ±ē§‘å­¦ē ”ē©¶ę‰€'),
(103353, 'https://ror.org/01jqtw136', 'en', 1, 'https://ror.org/01jqtw136 Seikei-kai Chiba Medical Center åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é¦Øä¼šåƒč‘‰ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(103354, 'https://ror.org/042wasb67', 'en', 1, 'https://ror.org/042wasb67 Policy Research Institute, Ministry of Agriculture, Forestry and Fisheries č¾²ęž—ę°“ē”£ēœč¾²ęž—ę°“ē”£ę”æē­–ē ”ē©¶ę‰€'),
(103355, 'https://ror.org/01ef7p617', 'en', 1, 'https://ror.org/01ef7p617 Senzoku Junior College of Childhood Education ę“—č¶³ć“ć©ć‚‚ēŸ­ęœŸå¤§å­¦'),
(103356, 'https://ror.org/01hked897', 'en', 1, 'https://ror.org/01hked897 Nara Kasuga Hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗę–°ä»ä¼šå„ˆč‰Æę˜„ę—„ē—…é™¢'),
(103357, 'https://ror.org/024h5t657', 'en', 1, 'https://ror.org/024h5t657 Ohara General Hospital äø€čˆ¬č²”å›£ę³•äŗŗå¤§åŽŸē¶œåˆē—…é™¢'),
(103358, 'https://ror.org/05m5trf73', 'en', 1, 'https://ror.org/05m5trf73 General Hospital Uzice ЗГравствени центар Ужице'),
(103359, 'https://ror.org/01jb2fs87', 'en', 1, 'https://ror.org/01jb2fs87 Gunma Livestock Health Laboratory ē¾¤é¦¬ēœŒå®¶ē•œč”›ē”Ÿē ”ē©¶ę‰€'),
(103360, 'https://ror.org/00gcc1r92', 'en', 1, 'https://ror.org/00gcc1r92 Saitama Prefectural Hospital Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŸ¼ēŽ‰ēœŒē«‹ē—…é™¢ę©Ÿę§‹'),
(103361, 'https://ror.org/01fyp5w42', 'es', 1, 'https://ror.org/01fyp5w42 Hospital Universitario de Jerez'),
(103362, 'https://ror.org/00gj5p964', 'en', 1, 'https://ror.org/00gj5p964 Research Institute for High-Life å…¬ē›Šč²”å›£ę³•äŗŗćƒć‚¤ćƒ©ć‚¤ćƒ•ē ”ē©¶ę‰€'),
(103363, 'https://ror.org/004qcrr52', 'es', 1, 'https://ror.org/004qcrr52 Instituto Nacional de Innovación Agraria National Institute of Agrarian Innovation'),
(103364, 'https://ror.org/01z0kpz83', 'en', 1, 'https://ror.org/01z0kpz83 Japan Industrial Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē”£ę„­å”ä¼š'),
(103365, 'https://ror.org/01ywqnr15', 'en', 1, 'https://ror.org/01ywqnr15 Japan Association for Techno-innovation in Agriculture, Forestry and Fisheries å…¬ē›Šē¤¾å›£ę³•äŗŗč¾²ęž—ę°“ē”£ćƒ»é£Ÿå“ē”£ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(103366, 'https://ror.org/0126kmk90', 'en', 1, 'https://ror.org/0126kmk90 Yamanashi Institute for Public Health and Environment å±±ę¢ØēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(103367, 'https://ror.org/01wdxt577', 'en', 1, 'https://ror.org/01wdxt577 Chubu Gakuin Junior College äø­éƒØå­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103368, 'https://ror.org/02vpwt473', 'pt', 0, 'https://ror.org/02vpwt473 Centro de Investigação em Biodiversidade e Recursos Genéticos'),
(103369, 'https://ror.org/02pk1bn41', 'en', 1, 'https://ror.org/02pk1bn41 Kagoshima Prefectural Institute of Industrial Technology é¹æå…å³¶ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103370, 'https://ror.org/05xs1pz44', 'en', 1, 'https://ror.org/05xs1pz44 Uekusa Gakuen Junior College ę¤č‰å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(103371, 'https://ror.org/007kqr982', 'en', 1, 'https://ror.org/007kqr982 Kyushu Industrial Technology Center äø€čˆ¬č²”å›£ę³•äŗŗä¹å·žē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103372, 'https://ror.org/04pvv2m50', 'en', 1, 'https://ror.org/04pvv2m50 JAē§‹ē”°åŽšē”Ÿé€£čƒ½ä»£åŽšē”ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ Noshiro Kousei Medical Center'),
(103373, 'https://ror.org/00kgetx37', 'es', 1, 'https://ror.org/00kgetx37 Universidad para el Bienestar Benito JuƔrez Garcƭa'),
(103374, 'https://ror.org/01q9jet09', 'en', 1, 'https://ror.org/01q9jet09 Hakodate Municipal Hospital 市立函館病院'),
(103375, 'https://ror.org/00gmq0p08', 'en', 1, 'https://ror.org/00gmq0p08 Nara Prefecture Agricultural Research and Development Center å„ˆč‰ÆēœŒč¾²ę„­ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(103376, 'https://ror.org/04g9zpa43', 'en', 1, 'https://ror.org/04g9zpa43 S. C. Institute of Health Science and Research ć•ć„ćŸć¾åø‚å„åŗ·ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103377, 'https://ror.org/02my5hx05', 'fr', 1, 'https://ror.org/02my5hx05 Technologie et Ethnologie des Mondes PrƩhistoriqueS'),
(103378, 'https://ror.org/04vxejn53', 'en', 1, 'https://ror.org/04vxejn53 Fukui Prefectural Sea Farming Center ē¦äŗ•ēœŒę ½åŸ¹ę¼ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(103379, 'https://ror.org/037teva93', 'en', 1, 'https://ror.org/037teva93 Manufacturing Science and Technology Center äø€čˆ¬č²”å›£ę³•äŗŗč£½é€ ē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103380, 'https://ror.org/03c44v465', 'en', 1, 'https://ror.org/03c44v465 Politecnico di Bari Polytechnic University of Bari Ɖcole Polytechnique de Bari'),
(103381, 'https://ror.org/05ckf9v85', 'en', 1, 'https://ror.org/05ckf9v85 The Japan Society for Oriental Medicine äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę±ę“‹åŒ»å­¦ä¼š'),
(103382, 'https://ror.org/04vd4xz14', 'en', 1, 'https://ror.org/04vd4xz14 Shizuoka Prefectural Government é™å²”ēœŒåŗ'),
(103383, 'https://ror.org/02v89pq06', 'it', 1, 'https://ror.org/02v89pq06 Istituto Nazionale di Fisica Nucleare, Sezione di Genova National Institute for Nuclear Physics, Genoa'),
(103384, 'https://ror.org/057j7nx65', 'en', 1, 'https://ror.org/057j7nx65 Wakayama Prefectural Fruit Tree Experiment Station å’Œę­Œå±±ēœŒęžœęØ¹č©¦éØ“å “'),
(103385, 'https://ror.org/007tyhq53', 'en', 1, 'https://ror.org/007tyhq53 Niigata Prefectural Police ę–°ę½ŸēœŒč­¦åÆŸ'),
(103386, 'https://ror.org/01cdnw320', 'en', 1, 'https://ror.org/01cdnw320 National Institution for Academic Degrees and Quality Enhancement of Higher Education å¤§å­¦ę”¹é©ę”Æę“ćƒ»å­¦ä½ęŽˆäøŽę©Ÿę§‹'),
(103387, 'https://ror.org/02sk93j50', 'en', 1, 'https://ror.org/02sk93j50 Miyazaki Livestock Research Institute å®®å“ŽēœŒē•œē”£č©¦éØ“å “'),
(103388, 'https://ror.org/00dnn6j70', 'en', 1, 'https://ror.org/00dnn6j70 Japan Society of Obstetrics and Gynecology å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£ē§‘å©¦äŗŗē§‘å­¦ä¼š'),
(103389, 'https://ror.org/00d1mx684', 'en', 1, 'https://ror.org/00d1mx684 Chrisland University'),
(103390, 'https://ror.org/01gj2n097', 'en', 1, 'https://ror.org/01gj2n097 Iwate Industry Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗć„ć‚ć¦ē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(103391, 'https://ror.org/05nksec02', 'en', 1, 'https://ror.org/05nksec02 Shirahama Foundation for Health and Welfare å…¬ē›Šč²”å›£ę³•äŗŗē™½ęµœåŒ»ē™‚ē¦ē„‰č²”å›£'),
(103392, 'https://ror.org/041k7vj66', 'en', 1, 'https://ror.org/041k7vj66 Japan Aging Research Center äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚Øć‚¤ć‚øćƒ³ć‚°ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103393, 'https://ror.org/04p3g7x29', 'en', 1, 'https://ror.org/04p3g7x29 Sapporo Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗęœ­å¹Œåø‚åŒ»åø«ä¼š'),
(103394, 'https://ror.org/007qq9s41', 'en', 1, 'https://ror.org/007qq9s41 Hokkaido Aquaculture Promotion Corporation å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ę ½åŸ¹ę¼ę„­ęŒÆčˆˆå…¬ē¤¾'),
(103395, 'https://ror.org/01mpd7s19', 'en', 1, 'https://ror.org/01mpd7s19 Japan Education Center of Environmental Sanitation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒę•“å‚™ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(103396, 'https://ror.org/04b3jbx04', 'en', 1, 'https://ror.org/04b3jbx04 Kochi Health Sciences Center é«˜ēŸ„ēœŒćƒ»é«˜ēŸ„åø‚ē—…é™¢ä¼ę„­å›£ē«‹é«˜ēŸ„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103397, 'https://ror.org/01vbs6145', 'en', 1, 'https://ror.org/01vbs6145 Japan Fisheries Information Service Center äø€čˆ¬ē¤¾å›£ę³•äŗŗę¼ę„­ęƒ…å ±ć‚µćƒ¼ćƒ“ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(103398, 'https://ror.org/01casae32', 'en', 1, 'https://ror.org/01casae32 Muroran City General Hospital åø‚ē«‹å®¤č˜­ē·åˆē—…é™¢'),
(103399, 'https://ror.org/040j99w46', 'en', 1, 'https://ror.org/040j99w46 Osaka College of Music Junior College 大阪音愽大学短期大学部'),
(103400, 'https://ror.org/0052cym82', 'en', 1, 'https://ror.org/0052cym82 Choshi Hospital éŠšå­åø‚ē«‹ē—…é™¢'),
(103401, 'https://ror.org/02n470s97', 'en', 1, 'https://ror.org/02n470s97 Tobacco Institute of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćŸć°ć“å”ä¼š'),
(103402, 'https://ror.org/004hg5r31', 'en', 1, 'https://ror.org/004hg5r31 Hiraoka Environmental Science Laboratory å…¬ē›Šč²”å›£ę³•äŗŗå¹³å²”ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(103403, 'https://ror.org/02wa6sn09', 'en', 1, 'https://ror.org/02wa6sn09 Japan Society of Plastic and Reconstructive Surgery äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å½¢ęˆå¤–ē§‘å­¦ä¼š'),
(103404, 'https://ror.org/02kb86z46', 'en', 1, 'https://ror.org/02kb86z46 Tajimi City Pottery Design and Technical Center å¤šę²»č¦‹åø‚é™¶ē£å™Øę„åŒ ē ”ē©¶ę‰€'),
(103405, 'https://ror.org/0495rze17', 'en', 1, 'https://ror.org/0495rze17 Kobe Institute of Health ē„žęˆøåø‚å„åŗ·ē§‘å­¦ē ”ē©¶ę‰€'),
(103406, 'https://ror.org/017b2d067', 'en', 1, 'https://ror.org/017b2d067 Tokyo Information Design Professional University ę±äŗ¬ęƒ…å ±ćƒ‡ć‚¶ć‚¤ćƒ³å°‚é–€č·å¤§å­¦'),
(103407, 'https://ror.org/04epjbk36', 'en', 1, 'https://ror.org/04epjbk36 Institute of Housing and Urban Technology äø€čˆ¬č²”å›£ę³•äŗŗä½å®…éƒ½åø‚å·„å­¦ē ”ē©¶ę‰€'),
(103408, 'https://ror.org/00beq8h88', 'en', 1, 'https://ror.org/00beq8h88 JAē¦å³¶åŽšē”Ÿé€£ē™½ę²³åŽšē”Ÿē·åˆē—…é™¢ Shirakawa Kosei General Hospital'),
(103409, 'https://ror.org/002mztf78', 'en', 1, 'https://ror.org/002mztf78 Japan Scientific Feeds Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦é£¼ę–™å”ä¼š'),
(103410, 'https://ror.org/04y0q2a96', 'en', 1, 'https://ror.org/04y0q2a96 Zimbabwe University Libraries Consortium'),
(103411, 'https://ror.org/047fh3h41', 'en', 1, 'https://ror.org/047fh3h41 Fukui Food Processing Research Institute ē¦äŗ•ēœŒé£Ÿå“åŠ å·„ē ”ē©¶ę‰€'),
(103412, 'https://ror.org/00khjyb83', 'en', 1, 'https://ror.org/00khjyb83 Chiba Children''s Hospital åƒč‘‰ēœŒć“ć©ć‚‚ē—…é™¢'),
(103413, 'https://ror.org/05jxd4z48', 'en', 1, 'https://ror.org/05jxd4z48 The Society for Biotechnology, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”Ÿē‰©å·„å­¦ä¼š'),
(103414, 'https://ror.org/04vv8tv34', 'en', 1, 'https://ror.org/04vv8tv34 Hasuda Hospital åŒ»ē™‚ę³•äŗŗé”•ę­£ä¼šč“®ē”°ē—…é™¢'),
(103415, 'https://ror.org/01fz2dm70', 'en', 1, 'https://ror.org/01fz2dm70 Ochanomizu Institute for Medical Mycology and Allergology ćŠčŒ¶ć®ę°“ēœŸčŒć‚¢ćƒ¬ćƒ«ć‚®ćƒ¼ē ”ē©¶ę‰€'),
(103416, 'https://ror.org/03ggyy033', 'en', 1, 'https://ror.org/03ggyy033 Tokyo Bay Urayasu Ichikawa Medical Center å…¬ē›Šē¤¾å›£ę³•äŗŗåœ°åŸŸåŒ»ē™‚ęŒÆčˆˆå”ä¼šę±äŗ¬ćƒ™ć‚¤ćƒ»ęµ¦å®‰åø‚å·åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103417, 'https://ror.org/03nr6mx92', 'en', 1, 'https://ror.org/03nr6mx92 Chiba Keizai College åƒč‘‰ēµŒęøˆå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103418, 'https://ror.org/05jjkap67', 'en', 1, 'https://ror.org/05jjkap67 Institute for Information and Communications Policy ē·å‹™ēœęƒ…å ±é€šäæ”ę”æē­–ē ”ē©¶ę‰€'),
(103419, 'https://ror.org/033b1bz24', 'en', 1, 'https://ror.org/033b1bz24 Koto Memorial Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę˜“ä¼šę¹–ę±čØ˜åæµē—…é™¢'),
(103420, 'https://ror.org/04fv0zf35', 'en', 1, 'https://ror.org/04fv0zf35 Shiga Prefecture Agricultural Technology Promotion Center ę»‹č³€ēœŒč¾²ę„­ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(103421, 'https://ror.org/02bxhgv17', 'en', 1, 'https://ror.org/02bxhgv17 The Japan Research Institute for Local Government å…¬ē›Šč²”å›£ę³•äŗŗåœ°ę–¹č‡Ŗę²»ē·åˆē ”ē©¶ę‰€'),
(103422, 'https://ror.org/054yyhg83', 'en', 1, 'https://ror.org/054yyhg83 Research Institute for Environmental Development äø€čˆ¬ē¤¾å›£ę³•äŗŗē’°å¢ƒę–‡åŒ–ē ”ē©¶ę‰€'),
(103423, 'https://ror.org/003qdfg20', 'en', 1, 'https://ror.org/003qdfg20 Soka University 創侔大学'),
(103424, 'https://ror.org/01s1wh718', 'en', 1, 'https://ror.org/01s1wh718 Okayama Prefectural Technology Center for Agriculture, Forestry and Fisheries å²”å±±ēœŒč¾²ęž—ę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(103425, 'https://ror.org/059wkht85', 'en', 1, 'https://ror.org/059wkht85 Hokkaido Club å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“å€¶ę„½éƒØ'),
(103426, 'https://ror.org/056m9zn95', 'de', 1, 'https://ror.org/056m9zn95 Institut für Biotechnologie und Wirkstoff-Forschung Institute of Biotechnology and Drug Research'),
(103427, 'https://ror.org/056rfe452', 'en', 1, 'https://ror.org/056rfe452 Zimbabwe National Defence University'),
(103428, 'https://ror.org/027wsbc40', 'en', 1, 'https://ror.org/027wsbc40 Kyorin University Suginami Hospital ęęž—å¤§å­¦åŒ»å­¦éƒØä»˜å±žę‰äø¦ē—…é™¢'),
(103429, 'https://ror.org/02e6jwz14', 'en', 1, 'https://ror.org/02e6jwz14 Radioactive Waste Management Funding and Research Center å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›ē’°å¢ƒę•“å‚™äæƒé€²ćƒ»č³‡é‡‘ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(103430, 'https://ror.org/05d7x7x53', 'en', 1, 'https://ror.org/05d7x7x53 Japan Gas Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¬ć‚¹å”ä¼š'),
(103431, 'https://ror.org/019vk3e29', 'en', 1, 'https://ror.org/019vk3e29 Kyushu Environmental Evaluation Association äø€čˆ¬č²”å›£ę³•äŗŗä¹å·žē’°å¢ƒē®”ē†å”ä¼š'),
(103432, 'https://ror.org/05534qc24', 'no_lang_code', 1, 'https://ror.org/05534qc24 SAGE Publishing (United States)'),
(103433, 'https://ror.org/03z3pjf09', 'en', 1, 'https://ror.org/03z3pjf09 Akiru Municipal Medical Center å…¬ē«‹é˜æä¼Žē•™åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103434, 'https://ror.org/04j9a9128', 'en', 1, 'https://ror.org/04j9a9128 KAISEI Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤§ęØ¹ä¼šē·åˆē—…é™¢å›žē”Ÿē—…é™¢'),
(103435, 'https://ror.org/04d6h2y86', 'en', 1, 'https://ror.org/04d6h2y86 Warakukai Incorporated Medical Institution åŒ»ē™‚ę³•äŗŗå’Œę„½ä¼š'),
(103436, 'https://ror.org/024701x39', 'en', 1, 'https://ror.org/024701x39 Kagoshima Prefectural Police é¹æå…å³¶ēœŒč­¦åÆŸ'),
(103437, 'https://ror.org/05jjtbe25', 'en', 1, 'https://ror.org/05jjtbe25 Sagami Chemical Research Institute ē›øęØ”äø­å¤®åŒ–å­¦ē ”ē©¶ę‰€'),
(103438, 'https://ror.org/03n56e796', 'en', 1, 'https://ror.org/03n56e796 Islamic Azad University, Shahrebabak دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓهربابک'),
(103439, 'https://ror.org/00w949314', 'en', 1, 'https://ror.org/00w949314 Hyogo Prefectural Kakogawa Medical Center å…µåŗ«ēœŒē«‹åŠ å¤å·åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103440, 'https://ror.org/04w9xep10', 'en', 1, 'https://ror.org/04w9xep10 Kyoto Min-iren Chuo Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½äæå„ä¼šäŗ¬éƒ½ę°‘åŒ»é€£äø­å¤®ē—…é™¢'),
(103441, 'https://ror.org/03azpm588', 'en', 1, 'https://ror.org/03azpm588 Shonan Kamakura University of Medical Sciences ę¹˜å—éŽŒå€‰åŒ»ē™‚å¤§å­¦'),
(103442, 'https://ror.org/04ez83p88', 'en', 1, 'https://ror.org/04ez83p88 Okinawa Hokubu Hospital ę²–ēø„ēœŒē«‹åŒ—éƒØē—…é™¢'),
(103443, 'https://ror.org/01dj4ez18', 'en', 1, 'https://ror.org/01dj4ez18 Okayama City General Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå²”å±±åø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103444, 'https://ror.org/05sqj2j86', 'en', 1, 'https://ror.org/05sqj2j86 Sanmu Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗć•ć‚“ć‚€åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103445, 'https://ror.org/01jrscb12', 'en', 1, 'https://ror.org/01jrscb12 Miyakojima iGRT Clinic éƒ½å³¶ę”¾å°„ē·šē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(103446, 'https://ror.org/02bvcjw39', 'en', 1, 'https://ror.org/02bvcjw39 Archeologický ústav AV ČR, Brno, v. v. i. Czech Academy of Sciences, Institute of Archaeology, Brno'),
(103447, 'https://ror.org/059v2tb26', 'en', 1, 'https://ror.org/059v2tb26 Japan Housing & Wood Technology Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä½å®…ćƒ»ęœØęęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103448, 'https://ror.org/02q12v714', 'en', 1, 'https://ror.org/02q12v714 Kansai Gaidai College é–¢č„æå¤–å›½čŖžå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103449, 'https://ror.org/00ksm0582', 'en', 1, 'https://ror.org/00ksm0582 Japan Sport Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„å”ä¼š'),
(103450, 'https://ror.org/01c082437', 'en', 1, 'https://ror.org/01c082437 Osaka Seikei College 大阪成蹊短期大学'),
(103451, 'https://ror.org/05d1de378', 'en', 1, 'https://ror.org/05d1de378 Civil Engineering Center Tokyo Metropolitan Government ę±äŗ¬éƒ½åœŸęœØęŠ€č”“ę”Æę“ćƒ»äŗŗęč‚²ęˆć‚»ćƒ³ć‚æćƒ¼'),
(103452, 'https://ror.org/03gp3tf26', 'en', 1, 'https://ror.org/03gp3tf26 Yuai Memorial Hospital čŒØåŸŽēœŒę°‘ē”Ÿę“»å”åŒēµ„åˆå‹ę„›čØ˜åæµē—…é™¢'),
(103453, 'https://ror.org/0287jta43', 'en', 1, 'https://ror.org/0287jta43 Archeologický Ćŗstav AV ČR, Praha Archeologický Ćŗstav AV ČR, Praha, v. v. i. Archeologický Ćŗstav AV ČR, Praha, veřejnĆ” výzkumnĆ” instituce Czech Academy of Sciences, Institute of Archaeology, Prague'),
(103454, 'https://ror.org/03b92a478', 'en', 1, 'https://ror.org/03b92a478 Chugoku Occupational Health Association å…¬ē›Šč²”å›£ę³•äŗŗäø­å›½åŠ“åƒč”›ē”Ÿå”ä¼š'),
(103455, 'https://ror.org/05kapbh20', 'en', 1, 'https://ror.org/05kapbh20 Niigata Prefectural Government ę–°ę½ŸēœŒåŗ'),
(103456, 'https://ror.org/05gbd1t94', 'en', 1, 'https://ror.org/05gbd1t94 Mishuku Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šäø‰å®æē—…é™¢'),
(103457, 'https://ror.org/05awykg63', 'en', 1, 'https://ror.org/05awykg63 Seiyo Municipal Hospital č„æäŗˆåø‚ē«‹č„æäŗˆåø‚ę°‘ē—…é™¢'),
(103458, 'https://ror.org/05xtcg731', 'en', 1, 'https://ror.org/05xtcg731 Fukuchiyama City Hospital åø‚ē«‹ē¦ēŸ„å±±åø‚ę°‘ē—…é™¢'),
(103459, 'https://ror.org/05e06xw13', 'en', 1, 'https://ror.org/05e06xw13 International Nature Farming Research Center å…¬ē›Šč²”å›£ę³•äŗŗč‡Ŗē„¶č¾²ę³•å›½éš›ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(103460, 'https://ror.org/05b2w9c34', 'en', 1, 'https://ror.org/05b2w9c34 Japan Institute of Electronics Packaging äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹å®Ÿč£…å­¦ä¼š'),
(103461, 'https://ror.org/00nava455', 'en', 1, 'https://ror.org/00nava455 The Japanese Association of Rehabilitation Medicine å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³åŒ»å­¦ä¼š'),
(103462, 'https://ror.org/03jx1y547', 'en', 1, 'https://ror.org/03jx1y547 Japan Map Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åœ°å›³ć‚»ćƒ³ć‚æćƒ¼'),
(103463, 'https://ror.org/0083dxv92', 'en', 0, 'https://ror.org/0083dxv92 Institute for Applied Optics å…¬ē›Šč²”å›£ę³•äŗŗåæœē”Øå…‰å­¦ē ”ē©¶ę‰€'),
(103464, 'https://ror.org/05hd91813', 'en', 1, 'https://ror.org/05hd91813 Urban Design Center å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚ć„ćć‚Šćƒ‘ćƒ–ćƒŖćƒƒć‚Æćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(103465, 'https://ror.org/01g8jmb35', 'en', 1, 'https://ror.org/01g8jmb35 Japan Health Promotion Foundation äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·å¢—é€²č²”å›£'),
(103466, 'https://ror.org/00jkndb94', 'en', 1, 'https://ror.org/00jkndb94 Japan Water Agency ē‹¬ē«‹č”Œę”æę³•äŗŗę°“č³‡ęŗę©Ÿę§‹'),
(103467, 'https://ror.org/04p4e8t29', 'en', 1, 'https://ror.org/04p4e8t29 Research Organization of Information and Systems ęƒ…å ±ćƒ»ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę©Ÿę§‹'),
(103468, 'https://ror.org/03467xv55', 'fr', 1, 'https://ror.org/03467xv55 Centre de Recherche sur les Fonctionnements et Dysfonctionnements Psychologiques'),
(103469, 'https://ror.org/04tqen686', 'en', 1, 'https://ror.org/04tqen686 Japan Productivity Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿē”£ę€§ęœ¬éƒØ'),
(103470, 'https://ror.org/055263j93', 'en', 1, 'https://ror.org/055263j93 IUCN Commission on Education and Communication'),
(103471, 'https://ror.org/04hd12s89', 'en', 1, 'https://ror.org/04hd12s89 Tsurumi Junior College é¶“č¦‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103472, 'https://ror.org/02z66n477', 'es', 1, 'https://ror.org/02z66n477 Escuela Superior de Guerra Naval'),
(103473, 'https://ror.org/01m38g178', 'en', 1, 'https://ror.org/01m38g178 Yamanashi Fruit Tree Experiment Station å±±ę¢ØēœŒęžœęØ¹č©¦éØ“å “'),
(103474, 'https://ror.org/01z745x67', 'en', 1, 'https://ror.org/01z745x67 The Laser Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ¬ćƒ¼ć‚¶ćƒ¼å­¦ä¼š'),
(103475, 'https://ror.org/04zee8776', 'en', 1, 'https://ror.org/04zee8776 International Consortium on Landslides ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗå›½éš›ę–œę–œé¢ē½å®³ē ”ē©¶ę©Ÿę§‹'),
(103476, 'https://ror.org/01zkayc13', 'en', 1, 'https://ror.org/01zkayc13 Kawanishi City Hospital åø‚ē«‹å·č„æē—…é™¢'),
(103477, 'https://ror.org/03wssfd89', 'en', 1, 'https://ror.org/03wssfd89 SABO & Landslide Technical Center äø€čˆ¬č²”å›£ę³•äŗŗē ‚é˜²ćƒ»åœ°ć™ć¹ć‚ŠęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103478, 'https://ror.org/04jt3r546', 'en', 1, 'https://ror.org/04jt3r546 Kamagaya General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē¤¾å›£ęœØäø‹ä¼šéŽŒć‚±č°·ē·åˆē—…é™¢'),
(103479, 'https://ror.org/0485mm908', 'en', 1, 'https://ror.org/0485mm908 State Institution of Science Ā«Center of Innovative Healthcare TechnologiesĀ» State Administrative Department Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° «Центр інноваційних технологій охорони Š·Š“Š¾Ń€Š¾Š²ā€™ŃĀ» Державного ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń справами'),
(103480, 'https://ror.org/022q30y61', 'en', 1, 'https://ror.org/022q30y61 Yamanashi Prefectural Police 山梨県警察'),
(103481, 'https://ror.org/03x27fd96', 'en', 1, 'https://ror.org/03x27fd96 Shizuoka City Institute Of Environmental Sciences And Public Health é™å²”åø‚ē’°å¢ƒäæå„ē ”ē©¶ę‰€'),
(103482, 'https://ror.org/034c0pj78', 'en', 1, 'https://ror.org/034c0pj78 Aomori City Hospital é’ę£®åø‚ę°‘ē—…é™¢'),
(103483, 'https://ror.org/007zj6g46', 'en', 1, 'https://ror.org/007zj6g46 Gunma Sericultural Technology Center ē¾¤é¦¬ēœŒčš•ē³øęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(103484, 'https://ror.org/03nyq1252', 'en', 1, 'https://ror.org/03nyq1252 Nihon Wellness Sports University ę—„ęœ¬ć‚¦ć‚§ćƒ«ćƒć‚¹ć‚¹ćƒćƒ¼ćƒ„å¤§å­¦'),
(103485, 'https://ror.org/02hdk7n88', 'en', 1, 'https://ror.org/02hdk7n88 Hachinohe City Hospital å…«ęˆøåø‚ē«‹åø‚ę°‘ē—…é™¢'),
(103486, 'https://ror.org/04txrm941', 'en', 1, 'https://ror.org/04txrm941 Japanese Association of Medical Technologists äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡ØåŗŠč”›ē”Ÿę¤œęŸ»ęŠ€åø«ä¼š'),
(103487, 'https://ror.org/00k4h2615', 'de', 1, 'https://ror.org/00k4h2615 Schloss Dagstuhl – Leibniz Center for Informatics Schloss Dagstuhl – Leibniz-Zentrum für Informatik'),
(103488, 'https://ror.org/00e0jd726', 'en', 1, 'https://ror.org/00e0jd726 Delaware Geological Survey'),
(103489, 'https://ror.org/00gg87355', 'en', 1, 'https://ror.org/00gg87355 Department of Behavioral Health'),
(103490, 'https://ror.org/0165q4v52', 'es', 1, 'https://ror.org/0165q4v52 Universidad Privada MarĆ­a Serrana'),
(103491, 'https://ror.org/03mrzxj79', 'en', 1, 'https://ror.org/03mrzxj79 Grameen Caledonian College of Nursing'),
(103492, 'https://ror.org/03r7q1314', 'fr', 1, 'https://ror.org/03r7q1314 Laboratoire de sociologie juridique'),
(103493, 'https://ror.org/00te98f55', 'en', 1, 'https://ror.org/00te98f55 Edwards Aquifer Authority'),
(103494, 'https://ror.org/048ey1e04', 'fr', 1, 'https://ror.org/048ey1e04 Institut de recherche en droit des affaires (Paris)'),
(103495, 'https://ror.org/05v78qy15', 'en', 1, 'https://ror.org/05v78qy15 Naval Medical Research Unit INDO PACIFIC'),
(103496, 'https://ror.org/056hgwq51', 'en', 1, 'https://ror.org/056hgwq51 Embry-Riddle Aeronautical University Worldwide & Online'),
(103497, 'https://ror.org/0597yw556', 'en', 1, 'https://ror.org/0597yw556 Florida Native Plant Society'),
(103498, 'https://ror.org/0473rjf26', 'en', 1, 'https://ror.org/0473rjf26 Northern Mindanao Colleges, Inc.'),
(103499, 'https://ror.org/04h1h0y33', 'fr', 1, 'https://ror.org/04h1h0y33 Centre National d''Ɖtudes Spatiales National Centre for Space Studies'),
(103500, 'https://ror.org/035dsb084', 'en', 1, 'https://ror.org/035dsb084 HUN-REN Wigner Fizikai Kutatóközpont HUN-REN Wigner Research Centre for Physics'),
(103501, 'https://ror.org/004z2ax38', 'fr', 1, 'https://ror.org/004z2ax38 Centre de recherche sur les droits de l''Homme et le droit humanitaire'),
(103502, 'https://ror.org/03ncsts70', 'en', 1, 'https://ror.org/03ncsts70 Lakulish Yoga University'),
(103503, 'https://ror.org/003cgs259', 'fr', 1, 'https://ror.org/003cgs259 Centre de recherche sur le droit des marchƩs et des investissements internationaux'),
(103504, 'https://ror.org/048z03f58', 'en', 1, 'https://ror.org/048z03f58 Delta State Polytechnic Otefe-Oghara'),
(103505, 'https://ror.org/02r0v5a32', 'en', 1, 'https://ror.org/02r0v5a32 Multidisciplinary Institute of Ageing'),
(103506, 'https://ror.org/04zj3ra44', 'en', 1, 'https://ror.org/04zj3ra44 Westmead Institute for Medical Research'),
(103507, 'https://ror.org/00qsv5a30', 'en', 0, 'https://ror.org/00qsv5a30 Iida Junior College é£Æē”°ēŸ­ęœŸå¤§å­¦'),
(103508, 'https://ror.org/032nfpx77', 'en', 1, 'https://ror.org/032nfpx77 ColƔiste Uƭ Ghrƭofa, Corcaigh Griffith College Cork'),
(103509, 'https://ror.org/01s8j4r12', 'en', 1, 'https://ror.org/01s8j4r12 State Herbarium of South Australia'),
(103510, 'https://ror.org/05emvfn26', 'en', 1, 'https://ror.org/05emvfn26 National Defense University'),
(103511, 'https://ror.org/0518nb352', 'en', 1, 'https://ror.org/0518nb352 Nelson University'),
(103512, 'https://ror.org/05dzwvx76', 'en', 1, 'https://ror.org/05dzwvx76 Royal Perth Bentley Group'),
(103513, 'https://ror.org/006yszn50', 'fr', 1, 'https://ror.org/006yszn50 Laboratoire de Physique des MatƩriaux et des Surfaces Laboratory Physics of Materials and Surfaces'),
(103514, 'https://ror.org/045t90p09', 'en', 1, 'https://ror.org/045t90p09 Osaka Tokiwakai Gakuen University å¤§é˜Ŗåøøē£ä¼šå­¦åœ’'),
(103515, 'https://ror.org/00f4wkg38', 'en', 1, 'https://ror.org/00f4wkg38 Energia- Ʃs KƶrnyezetbiztonsƔgi IntƩzet Institute for Energy Security and Environmental Safety'),
(103516, 'https://ror.org/04yk3xm91', 'en', 1, 'https://ror.org/04yk3xm91 National Examinations Council'),
(103517, 'https://ror.org/01vwxpj86', 'en', 1, 'https://ror.org/01vwxpj86 Amhara Agricultural Research Institute'),
(103518, 'https://ror.org/05sg6gr96', 'en', 1, 'https://ror.org/05sg6gr96 Law Enforcement Academy of the Republic of Uzbekistan OŹ»zbekiston Respublikasi Huquqni muhofaza qilish akademiyasi ŠŸŃ€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Республики Узбекистан'),
(103519, 'https://ror.org/02p066h55', 'en', 1, 'https://ror.org/02p066h55 Pars University of Art and Architecture دانؓگاه Ł…Ų¹Ł…Ų§Ų±ŪŒ و هنر پارس'),
(103520, 'https://ror.org/04nh1dc89', 'en', 1, 'https://ror.org/04nh1dc89 Division of Advanced Cyberinfrastructure'),
(103521, 'https://ror.org/01kq2by19', 'en', 1, 'https://ror.org/01kq2by19 Fukushima Institute for Research, Education and Innovation'),
(103522, 'https://ror.org/05xk1kx14', 'en', 1, 'https://ror.org/05xk1kx14 Dynamic Ideas Dynamic Ideas (United States)'),
(103523, 'https://ror.org/04h9xka55', 'id', 1, 'https://ror.org/04h9xka55 Teknologi Pendidikan ID (Indonesia)'),
(103524, 'https://ror.org/052hbwv48', 'en', 1, 'https://ror.org/052hbwv48 LJ University'),
(103525, 'https://ror.org/01e9gfg41', 'es', 1, 'https://ror.org/01e9gfg41 Universidad Nacional de San Agustin de Arequipa'),
(103526, 'https://ror.org/05pep2321', 'fr', 1, 'https://ror.org/05pep2321 Laboratoire de Droit Social'),
(103527, 'https://ror.org/014xaa570', 'en', 1, 'https://ror.org/014xaa570 Next Step Drug and Alcohol Services'),
(103528, 'https://ror.org/02n59d691', 'en', 1, 'https://ror.org/02n59d691 Priyadharshani Research and Development (OPC) Pvt. Ltd. Priyadharshani Research and Development (OPC) Pvt. Ltd. (India)'),
(103529, 'https://ror.org/05cc98565', 'en', 1, 'https://ror.org/05cc98565 Bank of Canada Banque du Canada'),
(103530, 'https://ror.org/04677dp78', 'en', 1, 'https://ror.org/04677dp78 3billion, Inc. 3billion, Inc. (South Korea)'),
(103531, 'https://ror.org/0284btd36', 'en', 1, 'https://ror.org/0284btd36 Bishkek International Medical Institute Š‘ŠøŃˆŠŗŠµŠŗ ŃŠ» аралык меГициналык ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ Š‘ŠøŃˆŠŗŠµŠŗŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(103532, 'https://ror.org/05037p730', 'en', 1, 'https://ror.org/05037p730 Economic Scientific Research Institute İqtisadi Elmi Tədqiqat İnstitutu'),
(103533, 'https://ror.org/01s96w554', 'en', 1, 'https://ror.org/01s96w554 St. Xavier''s College'),
(103534, 'https://ror.org/022w03s59', 'en', 1, 'https://ror.org/022w03s59 St. Elizabeths Hospital'),
(103535, 'https://ror.org/04e30s833', 'en', 1, 'https://ror.org/04e30s833 CREATe Centre Centre for Regulation of the Creative Economy'),
(103536, 'https://ror.org/04qhdzv22', 'en', 1, 'https://ror.org/04qhdzv22 Agriculture University, Jodhpur'),
(103537, 'https://ror.org/048400679', 'en', 1, 'https://ror.org/048400679 Space Sciences Laboratory'),
(103538, 'https://ror.org/02g7kyh11', 'en', 0, 'https://ror.org/02g7kyh11 Shibata Gakuen University ęŸ“ē”°å­¦åœ’å¤§å­¦'),
(103539, 'https://ror.org/00t3njy04', 'fr', 1, 'https://ror.org/00t3njy04 Culture/s, Patrimoine/s, CrƩation/s - HƩritages'),
(103540, 'https://ror.org/05j0vwh63', 'en', 1, 'https://ror.org/05j0vwh63 Bangladesh Institute of Governance and Management'),
(103541, 'https://ror.org/02yxgb786', 'en', 1, 'https://ror.org/02yxgb786 Mekdela Amba University'),
(103542, 'https://ror.org/04zf66g39', 'en', 1, 'https://ror.org/04zf66g39 Sumgayit State University Sumqayıt Dƶvlət Universiteti Š”ŃƒŠ¼Š³Š°ŠøŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(103543, 'https://ror.org/00cs35d33', 'is', 1, 'https://ror.org/00cs35d33 Natural Science Institute of Iceland NÔttúrufræðistofnun'),
(103544, 'https://ror.org/04czc9s55', 'en', 1, 'https://ror.org/04czc9s55 Nasus Pharma Nasus Pharma (Israel)'),
(103545, 'https://ror.org/0330j0z60', 'en', 1, 'https://ror.org/0330j0z60 Environmental Data Initiative'),
(103546, 'https://ror.org/00fsgfk96', 'en', 1, 'https://ror.org/00fsgfk96 State University of Information and Communication Technologies Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ інформаційно-ŠŗŠ¾Š¼ŃƒŠ½Ń–ŠŗŠ°Ń†Ń–Š¹Š½ŠøŃ… технологій'),
(103547, 'https://ror.org/02a6s9190', 'fr', 1, 'https://ror.org/02a6s9190 ENSIT Ɖcole nationale supĆ©rieure d''ingĆ©nieurs de Tunis المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† ŲØŲŖŁˆŁ†Ų³'),
(103548, 'https://ror.org/0236hye39', 'en', 1, 'https://ror.org/0236hye39 National Centre for Coastal Research'),
(103549, 'https://ror.org/03rcp1y74', 'en', 1, 'https://ror.org/03rcp1y74 Islamic University of Madinah الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(103550, 'https://ror.org/02b6c1039', 'fr', 1, 'https://ror.org/02b6c1039 Laboratoire Interdisciplinaire Carnot de Bourgogne'),
(103551, 'https://ror.org/01cxqde27', 'en', 1, 'https://ror.org/01cxqde27 Centre of Estonian Rural Research and Knowledge Maaelu Teadmuskeskus'),
(103552, 'https://ror.org/05rtm6v16', 'en', 1, 'https://ror.org/05rtm6v16 Shandiz Institute of Higher Education Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų“Ų§Ł†ŲÆŪŒŲ² مؓهد'),
(103553, 'https://ror.org/05ekmpa79', 'fr', 1, 'https://ror.org/05ekmpa79 Ministry of Natural Resources and Forests MinistĆØre des Ressources naturelles et des ForĆŖts'),
(103554, 'https://ror.org/02c3nzd41', 'en', 1, 'https://ror.org/02c3nzd41 Australian Urban Research Infrastructure Network'),
(103555, 'https://ror.org/01rf0w704', 'fr', 0, 'https://ror.org/01rf0w704 Economic Interest Group Groupement d''Intérêt Economique'),
(103556, 'https://ror.org/03vy7v919', 'en', 1, 'https://ror.org/03vy7v919 U.S. Army Tank-automotive and Armaments Command'),
(103557, 'https://ror.org/02w95hf30', 'en', 1, 'https://ror.org/02w95hf30 Croatian Meteorological and Hydrological Service Državni hidrometeoroloŔki zavod'),
(103558, 'https://ror.org/040x95d02', 'en', 1, 'https://ror.org/040x95d02 Nabarangpur College ą¬Øą¬¬ą¬°ą¬™ą­ą¬—ą¬Ŗą­ą¬° ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(103559, 'https://ror.org/022wdak15', 'en', 1, 'https://ror.org/022wdak15 Yaroslavl State Technical University Ярославский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(103560, 'https://ror.org/05c196m06', 'en', 1, 'https://ror.org/05c196m06 National Blood Authority'),
(103561, 'https://ror.org/03v2nwz54', 'en', 1, 'https://ror.org/03v2nwz54 Shri BM Patil Medical College'),
(103562, 'https://ror.org/039qhs116', 'en', 1, 'https://ror.org/039qhs116 Brain Corporation Brain Corporation (United States)'),
(103563, 'https://ror.org/02r4m3z56', 'pt', 1, 'https://ror.org/02r4m3z56 Leitão Guerra - Oftalmologia'),
(103564, 'https://ror.org/024k8tp19', 'en', 1, 'https://ror.org/024k8tp19 Space Rapid Capabilities Office'),
(103565, 'https://ror.org/03hn13397', 'id', 1, 'https://ror.org/03hn13397 Universitas Ahmad Dahlan'),
(103566, 'https://ror.org/04raf6v53', 'en', 1, 'https://ror.org/04raf6v53 Colorado School of Mines'),
(103567, 'https://ror.org/04vg4mg18', 'de', 1, 'https://ror.org/04vg4mg18 Heinrich-Barth-Institut'),
(103568, 'https://ror.org/01h06nz15', 'en', 1, 'https://ror.org/01h06nz15 ARC Centre of Excellence for Particle Physics at the Terascale'),
(103569, 'https://ror.org/02d1wkd30', 'nl', 1, 'https://ror.org/02d1wkd30 Municipality of Nijmegen'),
(103570, 'https://ror.org/013vqm712', 'en', 1, 'https://ror.org/013vqm712 TKM College of Engineering'),
(103571, 'https://ror.org/00eaqry86', 'en', 1, 'https://ror.org/00eaqry86 Centre for Microscopy and Microanalysis'),
(103572, 'https://ror.org/05kf0bf77', 'en', 1, 'https://ror.org/05kf0bf77 Canadian University of Bangladesh'),
(103573, 'https://ror.org/00qrpt643', 'en', 1, 'https://ror.org/00qrpt643 Bankstown Lidcombe Hospital'),
(103574, 'https://ror.org/043y2tx42', 'fr', 1, 'https://ror.org/043y2tx42 Research Unit on Cardiovascular and Metabolic Diseases UnitƩ de recherche sur les maladies cardiovasculaires et mƩtaboliques'),
(103575, 'https://ror.org/0434c4478', 'en', 1, 'https://ror.org/0434c4478 King George V Memorial Hospital'),
(103576, 'https://ror.org/0526kmt93', 'es', 1, 'https://ror.org/0526kmt93 Tecnológico de Estudios Superiores de Tianguistenco'),
(103577, 'https://ror.org/00bm0qt52', 'en', 1, 'https://ror.org/00bm0qt52 Australian Commission on Safety and Quality in Health Care'),
(103578, 'https://ror.org/00jrpxe15', 'en', 1, 'https://ror.org/00jrpxe15 Geelong Hospital'),
(103579, 'https://ror.org/0496n3z90', 'pl', 1, 'https://ror.org/0496n3z90 Akademia Tarnowska University of Applied Sciences in Tarnow'),
(103580, 'https://ror.org/05b035a98', 'en', 1, 'https://ror.org/05b035a98 Xindu District People''s Hospital of Chengdu ęˆéƒ½åø‚ę–°éƒ½åŒŗäŗŗę°‘åŒ»é™¢'),
(103581, 'https://ror.org/03g0rgh76', 'en', 1, 'https://ror.org/03g0rgh76 Kaiyuan E-Commerce (Shenzhen) Co., Ltd. Kaiyuan E-Commerce (Shenzhen) Co., Ltd. (China)'),
(103582, 'https://ror.org/00392bh69', 'en', 1, 'https://ror.org/00392bh69 Institute of Clinical and Translational Research of the Slovak Academy of Sciences Ústav klinickĆ©ho a translačnĆ©ho výskumu BiomedicĆ­nskeho centra Slovenskej akadĆ©mie vied'),
(103583, 'https://ror.org/03s53tn92', 'pl', 1, 'https://ror.org/03s53tn92 Akademia Pożarnicza Fire University'),
(103584, 'https://ror.org/03c7p2r39', 'en', 1, 'https://ror.org/03c7p2r39 Nuclear Science User Facilities'),
(103585, 'https://ror.org/00stfdh39', 'fr', 1, 'https://ror.org/00stfdh39 Laboratoire d’études juridiques et politiques Legal and Political Studies Laboratory'),
(103586, 'https://ror.org/00n9fkm63', 'en', 1, 'https://ror.org/00n9fkm63 Indiana University Northwest'),
(103587, 'https://ror.org/04rkh0096', 'fr', 0, 'https://ror.org/04rkh0096 Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles'),
(103588, 'https://ror.org/040y0yf78', 'en', 1, 'https://ror.org/040y0yf78 Federal University of Health Sciences, Otukpo'),
(103589, 'https://ror.org/04cawmd62', 'id', 1, 'https://ror.org/04cawmd62 Universitas Darunnajah University of Darunnajah'),
(103590, 'https://ror.org/00gbmg575', 'en', 1, 'https://ror.org/00gbmg575 Greenhood Nepal ą¤—ą„ą¤°ą¤æą¤Øą¤¹ą„ą¤” ą¤Øą„‡ą¤Ŗą¤¾ą¤²'),
(103591, 'https://ror.org/035cfnw24', 'en', 1, 'https://ror.org/035cfnw24 Institute of Art History of the Art Research Centre of the Slovak Academy of Sciences Ústav dejín umenia Centra vied o umení Slovenskej akadémie vied'),
(103592, 'https://ror.org/02rktxt32', 'en', 1, 'https://ror.org/02rktxt32 Royal Children''s Hospital'),
(103593, 'https://ror.org/02dkt6479', 'en', 1, 'https://ror.org/02dkt6479 National Center for Presons with Severe Intellectual Disabilities, Nozominosono ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹é‡åŗ¦ēŸ„ēš„éšœå®³č€…ē·åˆę–½čØ­ć®ćžćæć®åœ’'),
(103594, 'https://ror.org/033vnzz93', 'en', 1, 'https://ror.org/033vnzz93 The Affiliated Yongchuan Hospital of Chongqing Medical University é‡åŗ†åŒ»ē§‘å¤§å­¦é™„å±žę°øå·åŒ»é™¢'),
(103595, 'https://ror.org/027snxs20', 'en', 1, 'https://ror.org/027snxs20 Wildlife Trust of India'),
(103596, 'https://ror.org/03gss5916', 'no', 1, 'https://ror.org/03gss5916 HĆøyskolen Kristiania Kristiania University of Applied Sciences'),
(103597, 'https://ror.org/03b0nrd90', 'en', 1, 'https://ror.org/03b0nrd90 IMAQ Research'),
(103598, 'https://ror.org/02w0m4735', 'en', 1, 'https://ror.org/02w0m4735 Organ and Tissue Authority'),
(103599, 'https://ror.org/01tzvvp98', 'en', 1, 'https://ror.org/01tzvvp98 Academia.edu Journals'),
(103600, 'https://ror.org/02se0t636', 'en', 1, 'https://ror.org/02se0t636 Leibniz Institute of Photonic Technology Leibniz-Institut für Photonische Technologien'),
(103601, 'https://ror.org/05kc6dc21', 'en', 1, 'https://ror.org/05kc6dc21 Tianshui Normal University å¤©ę°“åøˆčŒƒå­¦é™¢ę¬¢čæŽę‚Ø'),
(103602, 'https://ror.org/000ztjy10', 'en', 1, 'https://ror.org/000ztjy10 Naval Information Warfare Systems Command'),
(103603, 'https://ror.org/03djz2k45', 'en', 1, 'https://ror.org/03djz2k45 Society for the Protection of Underground Networks'),
(103604, 'https://ror.org/04karqd05', 'en', 1, 'https://ror.org/04karqd05 Bolan University of Medical and Health Sciences ŲØŁˆŁ„Ų§Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŚˆŪŒŚ©Ł„ Ų§ŪŒŁ†Śˆ ŪŪŒŁ„ŲŖŚ¾ سائنسز'),
(103605, 'https://ror.org/000t8cv40', 'en', 1, 'https://ror.org/000t8cv40 National Council for Civilian Research and Development'),
(103606, 'https://ror.org/01j2dwr66', 'de', 1, 'https://ror.org/01j2dwr66 KSH München Katholische Stiftungshochschule München'),
(103607, 'https://ror.org/01bxnaj63', 'en', 1, 'https://ror.org/01bxnaj63 Thomas More University'),
(103608, 'https://ror.org/05ep65r25', 'en', 1, 'https://ror.org/05ep65r25 Bį»™ NĆ“ng nghiệp vĆ  PhĆ”t triển NĆ“ng thĆ“n Ministry of Agriculture and Rural Development'),
(103609, 'https://ror.org/05wk90v81', 'en', 1, 'https://ror.org/05wk90v81 Central Research Institute for Machine Building Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(103610, 'https://ror.org/03pcc9z86', 'fr', 0, 'https://ror.org/03pcc9z86 University of Franche-ComtƩ UniversitƩ de franche-comtƩ'),
(103611, 'https://ror.org/023tnh888', 'en', 1, 'https://ror.org/023tnh888 Space Delta 8'),
(103612, 'https://ror.org/03kj11b67', 'en', 1, 'https://ror.org/03kj11b67 Ala-Too International University OlatogŹ» xalqaro universiteti ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет Ала-Тоо'),
(103613, 'https://ror.org/00mdaf969', 'en', 1, 'https://ror.org/00mdaf969 Space Delta 4'),
(103614, 'https://ror.org/036cb3t60', 'en', 1, 'https://ror.org/036cb3t60 Shenzhen Babel InfoTech. Co., Ltd. Shenzhen Babel InfoTech. Co., Ltd. (China) ę·±åœ³å·“č“å°”äæ”ęÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(103615, 'https://ror.org/053mfxd72', 'en', 1, 'https://ror.org/053mfxd72 ARC Centre of Excellence for Children and Families over the Life Course'),
(103616, 'https://ror.org/01vt7w207', 'id', 1, 'https://ror.org/01vt7w207 Universitas PGRI Madiun Universitas Persatuan Guru Republik Indonesia Madiun'),
(103617, 'https://ror.org/02vq8p756', 'en', 1, 'https://ror.org/02vq8p756 University of Minnesota Itasca Biological Station and Laboratories'),
(103618, 'https://ror.org/02kv0px94', 'en', 1, 'https://ror.org/02kv0px94 Hadhramout University Ų¬Ų§Ł…Ų¹Ų© Ų­Ų¶Ų±Ł…ŁˆŲŖ'),
(103619, 'https://ror.org/018wagb29', 'en', 1, 'https://ror.org/018wagb29 Sydney Dental Hospital'),
(103620, 'https://ror.org/05tkcgz23', 'en', 1, 'https://ror.org/05tkcgz23 Crediton Hospital'),
(103621, 'https://ror.org/02bdf7k74', 'en', 1, 'https://ror.org/02bdf7k74 BLDE (Deemed to be University)'),
(103622, 'https://ror.org/04xtznh26', 'en', 1, 'https://ror.org/04xtznh26 Bishkek Academy of Finance and Economics Š‘ŠøŃˆŠŗŠµŠŗŃŠŗŠ°Ń Финансово – Š­ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(103623, 'https://ror.org/00pw52a85', 'es', 1, 'https://ror.org/00pw52a85 Instituto de Altos Estudios Espaciales ā€œMario Gulichā€'),
(103624, 'https://ror.org/02fqgjy67', 'en', 1, 'https://ror.org/02fqgjy67 North-Eastern University, Gombe'),
(103625, 'https://ror.org/013995344', 'pt', 1, 'https://ror.org/013995344 Centro UniversitÔrio de Telêmaco Borba'),
(103626, 'https://ror.org/0210z2q47', 'en', 1, 'https://ror.org/0210z2q47 eMOTIONAL Cities'),
(103627, 'https://ror.org/0190ze463', 'en', 1, 'https://ror.org/0190ze463 Farg`ona davlat universiteti Ferghana State University Ферганский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(103628, 'https://ror.org/04jkwt097', 'fr', 1, 'https://ror.org/04jkwt097 Institut Michel Villey pour la Culture Juridique et la Philosophie du Droit'),
(103629, 'https://ror.org/011ygpb73', 'fr', 1, 'https://ror.org/011ygpb73 Institut de Chimie MolƩculaire de l''UniversitƩ de Bourgogne Institute of Molecular Chemistry of the University of Burgundy'),
(103630, 'https://ror.org/03wpx0k22', 'pt', 1, 'https://ror.org/03wpx0k22 Institute of Agricultural and Forestry Defense of Espƭrito Santo Instituto de Defesa AgropecuƔria e Florestal do Espƭrito Santo'),
(103631, 'https://ror.org/01a5edp07', 'en', 1, 'https://ror.org/01a5edp07 Institute of Experimental Psychology of the Centre of Social and Psychological Sciences of the Slovak Academy of Sciences Ústav experimentĆ”lnej psychológie Centra spoločenských a psychologických vied Slovenskej akadĆ©mie vied'),
(103632, 'https://ror.org/043kc1412', 'es', 1, 'https://ror.org/043kc1412 Polytechnic University of Gómez Palacio Universidad Politécnica de Gómez Palacio'),
(103633, 'https://ror.org/038k1np15', 'sv', 1, 'https://ror.org/038k1np15 If SkadefƶrsƤkring AB'),
(103634, 'https://ror.org/0510mg863', 'en', 1, 'https://ror.org/0510mg863 Reiwa Health Sciences University ä»¤å’Œå„åŗ·ē§‘å­¦å¤§å­¦'),
(103635, 'https://ror.org/03fn9xs58', 'no_lang_code', 1, 'https://ror.org/03fn9xs58 Gentex Gentex (United States)'),
(103636, 'https://ror.org/04f9wq675', 'es', 1, 'https://ror.org/04f9wq675 Servicios de Salud de YucatƔn'),
(103637, 'https://ror.org/034baah44', 'id', 1, 'https://ror.org/034baah44 Cyber University Indonesia Universitas Siber Indonesia'),
(103638, 'https://ror.org/02s6bxr02', 'fr', 1, 'https://ror.org/02s6bxr02 Laboratoire de Droit Civil'),
(103639, 'https://ror.org/04c6fcr68', 'en', 1, 'https://ror.org/04c6fcr68 Canterbury Hospital');
INSERT INTO `rors` VALUES
(103640, 'https://ror.org/04b0n4406', 'en', 1, 'https://ror.org/04b0n4406 Concord Repatriation General Hospital'),
(103641, 'https://ror.org/0167fw009', 'fr', 1, 'https://ror.org/0167fw009 Centre de Recherche LƩon Duguit'),
(103642, 'https://ror.org/02x9apr53', 'en', 1, 'https://ror.org/02x9apr53 Baqai Institute of Diabetology and Endocrinology'),
(103643, 'https://ror.org/05555bn28', 'en', 1, 'https://ror.org/05555bn28 CodeDay'),
(103644, 'https://ror.org/02dx4dc92', 'en', 1, 'https://ror.org/02dx4dc92 Universitetet i Innlandet University of Inland Norway'),
(103645, 'https://ror.org/01k8nkc73', 'en', 1, 'https://ror.org/01k8nkc73 ARC Centre of Excellence for Environmental Decisions'),
(103646, 'https://ror.org/02cm95j49', 'en', 1, 'https://ror.org/02cm95j49 U.S. Army Communications-Electronics Command'),
(103647, 'https://ror.org/02kyzc549', 'en', 1, 'https://ror.org/02kyzc549 U.S. Army Information Systems Engineering Command'),
(103648, 'https://ror.org/00vrp1e19', 'en', 1, 'https://ror.org/00vrp1e19 Axminster Hospital'),
(103649, 'https://ror.org/01q4vax14', 'en', 1, 'https://ror.org/01q4vax14 Commonwealth of Virginia'),
(103650, 'https://ror.org/00n4cf238', 'id', 1, 'https://ror.org/00n4cf238 Institut Kesehatan Helvetia'),
(103651, 'https://ror.org/05tgyyk02', 'en', 1, 'https://ror.org/05tgyyk02 Research Institute of Communication in Art Výzkumný Ćŗstav komunikace v uměnĆ­'),
(103652, 'https://ror.org/01e8etd40', 'fr', 1, 'https://ror.org/01e8etd40 Laboratoire Sols et Environnement Laboratory of Soil and Environmental Sciences'),
(103653, 'https://ror.org/011kf5r70', 'en', 1, 'https://ror.org/011kf5r70 National Health and Medical Research Council'),
(103654, 'https://ror.org/02q6q1660', 'en', 1, 'https://ror.org/02q6q1660 Institute of Molecular Physiology and Genetics of the Slovak Academy of Sciences Ústav molekulÔrnej fyziológie agenetiky Centra biovied Slovenskej akadémie vied'),
(103655, 'https://ror.org/00dcr5w37', 'en', 1, 'https://ror.org/00dcr5w37 Creative Education Technology (Shenzhen) Co., Ltd. Creative Education Technology (Shenzhen) Co., Ltd. (China) å¼€å…ƒę•™č‚²ē§‘ęŠ€ļ¼ˆę·±åœ³ļ¼‰ęœ‰é™å…¬åø'),
(103656, 'https://ror.org/04xdx3z73', 'en', 1, 'https://ror.org/04xdx3z73 Center for Media Research - Nepal'),
(103657, 'https://ror.org/02bv1h546', 'en', 1, 'https://ror.org/02bv1h546 Institute of Vocational Education of the National Academy of Educational Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ професійної освіти ŠŠŠŸŠ України'),
(103658, 'https://ror.org/03b7pda13', 'en', 1, 'https://ror.org/03b7pda13 Military Health System Sistema Militar de Salud de EUA'),
(103659, 'https://ror.org/01bsaey45', 'en', 1, 'https://ror.org/01bsaey45 Children''s Medical Research Institute'),
(103660, 'https://ror.org/01qpscg90', 'en', 1, 'https://ror.org/01qpscg90 Ferox Therapeutics Ferox Therapeutics (United States)'),
(103661, 'https://ror.org/044ywxm13', 'de', 1, 'https://ror.org/044ywxm13 Hogrefe AG Hogrefe AG (Switzerland)'),
(103662, 'https://ror.org/019mfv850', 'pt', 1, 'https://ror.org/019mfv850 Secretaria de Estado de Cultura e Turismo de Minas Gerais'),
(103663, 'https://ror.org/04w3vhe37', 'en', 1, 'https://ror.org/04w3vhe37 Simmaron Research'),
(103664, 'https://ror.org/03fatne33', 'en', 1, 'https://ror.org/03fatne33 Mamun University Ma’mun Universiteti Мамун Университет'),
(103665, 'https://ror.org/03j1avm36', 'en', 1, 'https://ror.org/03j1avm36 Women and Infants Research Foundation'),
(103666, 'https://ror.org/01ps52c20', 'en', 1, 'https://ror.org/01ps52c20 The Apollo University'),
(103667, 'https://ror.org/04nkhqe34', 'en', 1, 'https://ror.org/04nkhqe34 United States Army Intelligence and Security Command'),
(103668, 'https://ror.org/040xbp995', 'es', 1, 'https://ror.org/040xbp995 Universidad Nacional Rosario Castellanos'),
(103669, 'https://ror.org/00st91468', 'en', 1, 'https://ror.org/00st91468 Victorian Comprehensive Cancer Centre'),
(103670, 'https://ror.org/022q77t14', 'en', 1, 'https://ror.org/022q77t14 Nephro Care India Limited Nephro Care India Limited (India)'),
(103671, 'https://ror.org/03k1bsr36', 'fr', 0, 'https://ror.org/03k1bsr36 University of Burgundy UniversitƩ de Bourgogne'),
(103672, 'https://ror.org/057g0ax13', 'et', 1, 'https://ror.org/057g0ax13 MPhysX OÜ'),
(103673, 'https://ror.org/05mdm6g98', 'en', 1, 'https://ror.org/05mdm6g98 Federal Budgetary Institution "Research Center for Applied Metrology - Rostest" Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр приклаГной метрологии – Ростест»'),
(103674, 'https://ror.org/00jrey675', 'en', 1, 'https://ror.org/00jrey675 Science Europe'),
(103675, 'https://ror.org/042ahds41', 'de', 1, 'https://ror.org/042ahds41 Forschungsinstitut Gesellschaftlicher Zusammenhalt'),
(103676, 'https://ror.org/052z7nw84', 'en', 1, 'https://ror.org/052z7nw84 University of Education ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§ŪŒŲ¬ŁˆŚ©ŪŒŲ“Ł†'),
(103677, 'https://ror.org/02kg4rn42', 'en', 1, 'https://ror.org/02kg4rn42 ICAR - Agricultural Technology Application Research Institute'),
(103678, 'https://ror.org/044mjtc47', 'en', 1, 'https://ror.org/044mjtc47 Institute for Heart Research of the Slovak Academy of Sciences Ústav pre výskum srdca Centra experimentÔlnej medicíny Slovenskej akadémie vied'),
(103679, 'https://ror.org/011tt4192', 'en', 1, 'https://ror.org/011tt4192 Mona Vale Hospital'),
(103680, 'https://ror.org/00zgas264', 'fr', 1, 'https://ror.org/00zgas264 ProcƩdƩs Alimentaires et Microbiologiques'),
(103681, 'https://ror.org/01chh3p26', 'en', 1, 'https://ror.org/01chh3p26 Ecole SupƩrieure de Management Tlemcen Higher School of Management of Tlemcen'),
(103682, 'https://ror.org/01xz39a70', 'es', 1, 'https://ror.org/01xz39a70 Comisión Nacional de Energía Atómica National Atomic Energy Commission'),
(103683, 'https://ror.org/01ah6nb52', 'en', 1, 'https://ror.org/01ah6nb52 Applied Science Private University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© الخاصة'),
(103684, 'https://ror.org/0314h5y94', 'en', 1, 'https://ror.org/0314h5y94 Australian Government'),
(103685, 'https://ror.org/008q4kt04', 'en', 1, 'https://ror.org/008q4kt04 The Royal Victorian Eye & Ear Hospital'),
(103686, 'https://ror.org/057g1dn72', 'en', 1, 'https://ror.org/057g1dn72 Kumamoto Chuo Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šē†Šęœ¬äø­å¤®ē—…é™¢'),
(103687, 'https://ror.org/02gb0hd06', 'en', 1, 'https://ror.org/02gb0hd06 United States Army Institute of Surgical Research'),
(103688, 'https://ror.org/02ett6548', 'en', 1, 'https://ror.org/02ett6548 Epworth Hospital'),
(103689, 'https://ror.org/03cd02q50', 'en', 1, 'https://ror.org/03cd02q50 United States Army Medical Research and Development Command'),
(103690, 'https://ror.org/035agn614', 'en', 1, 'https://ror.org/035agn614 Navy and Marine Corps Force Health Protection Command'),
(103691, 'https://ror.org/00q3j1c96', 'fr', 1, 'https://ror.org/00q3j1c96 Centre d''Ɖtude sur la FiscalitĆ© des Entreprises de Paris'),
(103692, 'https://ror.org/033yfkj90', 'en', 1, 'https://ror.org/033yfkj90 Naval Postgraduate School'),
(103693, 'https://ror.org/016c71q24', 'en', 1, 'https://ror.org/016c71q24 Hornsby Ku-ring-gai Hospital'),
(103694, 'https://ror.org/01v1wyw29', 'it', 1, 'https://ror.org/01v1wyw29 Confederazione Generale dell’Agricoltura Italiana Confederazione Generale dell’Agricoltura Italiana (Italy)'),
(103695, 'https://ror.org/05ktbsm52', 'en', 1, 'https://ror.org/05ktbsm52 Burnet Institute'),
(103696, 'https://ror.org/00afsp483', 'en', 1, 'https://ror.org/00afsp483 United States Army'),
(103697, 'https://ror.org/04r3kq386', 'en', 1, 'https://ror.org/04r3kq386 Uniformed Services University of the Health Sciences'),
(103698, 'https://ror.org/04dxv8v14', 'en', 1, 'https://ror.org/04dxv8v14 ARC Centre of Excellence for Innovations in Peptide and Protein Science'),
(103699, 'https://ror.org/03yp23s77', 'en', 0, 'https://ror.org/03yp23s77 Nagano Prefectural College é•·é‡ŽēœŒēŸ­ęœŸå¤§å­¦'),
(103700, 'https://ror.org/01f0pxq13', 'en', 1, 'https://ror.org/01f0pxq13 Naval Strike and Air Warfare Center'),
(103701, 'https://ror.org/00nb3j622', 'no_lang_code', 1, 'https://ror.org/00nb3j622 L''OrƩal (France)'),
(103702, 'https://ror.org/00q10wd18', 'en', 1, 'https://ror.org/00q10wd18 Sydney Adventist Hospital'),
(103703, 'https://ror.org/03hmvjq54', 'en', 1, 'https://ror.org/03hmvjq54 U.S. Army Joint Munitions Command'),
(103704, 'https://ror.org/01pynjp12', 'en', 1, 'https://ror.org/01pynjp12 University of Algiers 3 Ų¬Ų§Ł…Ų¹Ų© الجزائر 3'),
(103705, 'https://ror.org/01prvb521', 'es', 1, 'https://ror.org/01prvb521 Instituto Superior de Artes y Ciencias de la Comunicación'),
(103706, 'https://ror.org/00emta992', 'en', 1, 'https://ror.org/00emta992 Sidmouth Hospital'),
(103707, 'https://ror.org/03eb33654', 'en', 1, 'https://ror.org/03eb33654 Hooghly Engineering & Technology College'),
(103708, 'https://ror.org/04rm24644', 'en', 1, 'https://ror.org/04rm24644 Naval Aerospace Medical Institute'),
(103709, 'https://ror.org/0019ead15', 'en', 1, 'https://ror.org/0019ead15 University of Ilesa'),
(103710, 'https://ror.org/01ha22c77', 'fr', 0, 'https://ror.org/01ha22c77 Institut de Radioprotection et de SƻretƩ NuclƩaire Institute for Radiological Protection and Nuclear Safety'),
(103711, 'https://ror.org/02baa5g50', 'en', 1, 'https://ror.org/02baa5g50 East Metropolitan Health Service'),
(103712, 'https://ror.org/02akqbn88', 'en', 1, 'https://ror.org/02akqbn88 Academy of Applied Studies Belgrade Akademija strukovnih studija Beograd'),
(103713, 'https://ror.org/0556v4357', 'en', 1, 'https://ror.org/0556v4357 Strategic Systems Programs'),
(103714, 'https://ror.org/051tvxa49', 'is', 1, 'https://ror.org/051tvxa49 NƔtturustofa Suưurlands'),
(103715, 'https://ror.org/05c30h479', 'en', 1, 'https://ror.org/05c30h479 Virginia Department of Behavioral Health and Developmental Services'),
(103716, 'https://ror.org/051m4vc48', 'en', 1, 'https://ror.org/051m4vc48 Appalachian State University'),
(103717, 'https://ror.org/003873p55', 'en', 1, 'https://ror.org/003873p55 National Policing Institute'),
(103718, 'https://ror.org/044j5pz44', 'en', 1, 'https://ror.org/044j5pz44 Al-Qasim Green University Ų¬Ų§Ł…Ų¹Ų© القاسم الخضراؔ'),
(103719, 'https://ror.org/04mb1pr47', 'en', 1, 'https://ror.org/04mb1pr47 Kano Independent Research Centre Trust'),
(103720, 'https://ror.org/05y050b06', 'en', 1, 'https://ror.org/05y050b06 Society for AgroEnvironmental Sustainability'),
(103721, 'https://ror.org/00fjzc349', 'id', 1, 'https://ror.org/00fjzc349 Politeknik Harapan Bersama'),
(103722, 'https://ror.org/05p4q8207', 'en', 1, 'https://ror.org/05p4q8207 Tripler Army Medical Center'),
(103723, 'https://ror.org/05w4e8v21', 'en', 1, 'https://ror.org/05w4e8v21 Corps des ingĆ©nieurs de l''armĆ©e des Ɖtats-unis Cuerpo de Ingenieros del EjĆ©rcito de los Estados Unidos United States Army Corps of Engineers'),
(103724, 'https://ror.org/043ddq142', 'en', 1, 'https://ror.org/043ddq142 Flanders Heritage Agency Onroerend Erfgoed'),
(103725, 'https://ror.org/04vxq1969', 'en', 1, 'https://ror.org/04vxq1969 Naval Medical Center Portsmouth'),
(103726, 'https://ror.org/05ef68207', 'en', 1, 'https://ror.org/05ef68207 Transparent Products, Inc. Transparent Products, Inc. (United States)'),
(103727, 'https://ror.org/01594wh23', 'en', 1, 'https://ror.org/01594wh23 National Institute of Rock Mechanics ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą„‰ą¤• ą¤®ą„ˆą¤•ą„‡ą¤Øą¤æą¤•ą„ą¤ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(103728, 'https://ror.org/04dk3ha27', 'en', 1, 'https://ror.org/04dk3ha27 Bangladesh Army University of Engineering & Technology বাংলাদেশ সেনাবাহিনী ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(103729, 'https://ror.org/04k9m3424', 'it', 1, 'https://ror.org/04k9m3424 Fondation Montagne Sùre Fondazione Montagna Sicura'),
(103730, 'https://ror.org/05kbhwa49', 'en', 1, 'https://ror.org/05kbhwa49 Vlatacom Institute Vlatacom Institute (Serbia) Vlatacom institut visokih tehnologija d.o.o.'),
(103731, 'https://ror.org/03df8gj37', 'en', 1, 'https://ror.org/03df8gj37 Defense Health Agency'),
(103732, 'https://ror.org/02qr74541', 'en', 1, 'https://ror.org/02qr74541 Philomath University'),
(103733, 'https://ror.org/015zanq20', 'en', 1, 'https://ror.org/015zanq20 Institute for Evaluation of Labour Market and Education Policy Institutet fƶr arbetsmarknads- och utbildningspolitisk utvƤrdering'),
(103734, 'https://ror.org/02qvmaf13', 'en', 1, 'https://ror.org/02qvmaf13 Mahatma Basaveshwar Education Society''s College of Engineering, Ambajogai'),
(103735, 'https://ror.org/011zkmm97', 'id', 1, 'https://ror.org/011zkmm97 Universitas Bina Sarana Informatika'),
(103736, 'https://ror.org/05bnk7418', 'en', 1, 'https://ror.org/05bnk7418 Naval Medical Research Unit EURAFCENT'),
(103737, 'https://ror.org/004yvak38', 'fr', 1, 'https://ror.org/004yvak38 Extracellular Matrix-Cell Relations Research Tea Ɖquipe de Recherche sur les Relations Matrice Extracellulaire-Cellules'),
(103738, 'https://ror.org/05jxfge78', 'fr', 1, 'https://ror.org/05jxfge78 Institut national de l’information gĆ©ographique et forestiĆØre National Geographic Institute'),
(103739, 'https://ror.org/01pdam362', 'en', 1, 'https://ror.org/01pdam362 Institute for Solid State Physics and Optics SzilƔrdtestfizikai Ʃs Optikai IntƩzet'),
(103740, 'https://ror.org/027z4c440', 'id', 1, 'https://ror.org/027z4c440 Institut Teknologi Calvin'),
(103741, 'https://ror.org/023rzn231', 'fr', 1, 'https://ror.org/023rzn231 Ecole Nationale SupĆ©rieur des TĆ©lĆ©communications et des Technologies de l’Information et de la Communication, Abdelhafid Boussouf Higher National School of Telecommunications and Information and Communication Technologies Abdelhafid Boussouf المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ لل؄تصالات ŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ŲŖ ال؄علام ŁˆŲ§Ł„Ų„ŲŖŲµŲ§Ł„'),
(103742, 'https://ror.org/021xc9887', 'id', 1, 'https://ror.org/021xc9887 Universitas Nias University of Nias'),
(103743, 'https://ror.org/049qgqg40', 'fr', 1, 'https://ror.org/049qgqg40 DƩlƩgation Provence et Corse'),
(103744, 'https://ror.org/03ytzg339', 'en', 1, 'https://ror.org/03ytzg339 Defense & Veterans Center for Integrative Pain Management'),
(103745, 'https://ror.org/002chxk62', 'no_lang_code', 1, 'https://ror.org/002chxk62 Institut für Entwicklungsplanung und Strukturforschung Institut für Entwicklungsplanung und Strukturforschung (Germany)'),
(103746, 'https://ror.org/01p2tsc55', 'en', 1, 'https://ror.org/01p2tsc55 Al Wasl University'),
(103747, 'https://ror.org/010dsgr95', 'en', 1, 'https://ror.org/010dsgr95 Santa Anna IT Research Institute'),
(103748, 'https://ror.org/01xghct51', 'en', 1, 'https://ror.org/01xghct51 Institute for Regional Studies Magyar TudomÔnyos Akadémia KözgazdasÔg- és RegionÔlis TudomÔnyi Kutatóközpont RegionÔlis KutatÔsok Intézete'),
(103749, 'https://ror.org/05e7k4575', 'en', 1, 'https://ror.org/05e7k4575 Institute of World Economics MTA KözgazdasÔg- és RegionÔlis TudomÔnyi Kutatóközpont'),
(103750, 'https://ror.org/02k3nmd98', 'en', 1, 'https://ror.org/02k3nmd98 Program for Climate Model Diagnosis and Intercomparison'),
(103751, 'https://ror.org/05t7hrn58', 'en', 1, 'https://ror.org/05t7hrn58 Princess Elizabeth Orthopaedic Centre'),
(103752, 'https://ror.org/03mt1jy53', 'en', 1, 'https://ror.org/03mt1jy53 Embry-Riddle Aeronautical University Prescott Arizona Campus'),
(103753, 'https://ror.org/00s2qq515', 'no_lang_code', 1, 'https://ror.org/00s2qq515 Dr. D.Y. Patil Vidyapeeth, Pune'),
(103754, 'https://ror.org/04t3sm733', 'fr', 1, 'https://ror.org/04t3sm733 Centre Energie Environnement ProcĆ©dĆ©s Mines Paris, PSL University, Centre for Energy, Environment & Processes (CEEP) Mines Paris, UniversitĆ© PSL, Centre Ɖnergie Environnement ProcĆ©dĆ©s (CEEP)'),
(103755, 'https://ror.org/05qz4qd45', 'fr', 1, 'https://ror.org/05qz4qd45 Centre de droit public comparƩ'),
(103756, 'https://ror.org/014p8mr66', 'fr', 1, 'https://ror.org/014p8mr66 Institut d''Astrophysique Spatiale'),
(103757, 'https://ror.org/03t9pn762', 'en', 1, 'https://ror.org/03t9pn762 DUG Technology DUG Technology (Australia)'),
(103758, 'https://ror.org/05vmx1h48', 'en', 1, 'https://ror.org/05vmx1h48 The Microsampling Laboratory'),
(103759, 'https://ror.org/03eqwt088', 'fr', 1, 'https://ror.org/03eqwt088 Institut Des HumanitƩs NumƩriques Institute of Digital Humanities'),
(103760, 'https://ror.org/025cem651', 'en', 1, 'https://ror.org/025cem651 Centro MƩdico Naval Nacional Walter Reed National Military Medical Center'),
(103761, 'https://ror.org/001zwgm84', 'en', 1, 'https://ror.org/001zwgm84 NSF CI Compass'),
(103762, 'https://ror.org/05pnwvj86', 'en', 0, 'https://ror.org/05pnwvj86 Institute of Marine Research Instituto de Investigaciones Marinas'),
(103763, 'https://ror.org/04er32z07', 'en', 1, 'https://ror.org/04er32z07 Rockefeller University Press'),
(103764, 'https://ror.org/02zsyt821', 'en', 1, 'https://ror.org/02zsyt821 Jouf University'),
(103765, 'https://ror.org/00yae6e25', 'en', 1, 'https://ror.org/00yae6e25 University of Wrocław UniversitƤt Breslau Uniwersytet Wrocławski'),
(103766, 'https://ror.org/03a1q3q78', 'en', 1, 'https://ror.org/03a1q3q78 The Evaluation Center'),
(103767, 'https://ror.org/02ysz4z77', 'en', 1, 'https://ror.org/02ysz4z77 Fisheries Education and Training Agency'),
(103768, 'https://ror.org/04ctq6f67', 'de', 1, 'https://ror.org/04ctq6f67 Kuratorium Pfahlbauten'),
(103769, 'https://ror.org/054ajk512', 'en', 1, 'https://ror.org/054ajk512 Naval Air Systems Command'),
(103770, 'https://ror.org/02fxw5m16', 'en', 1, 'https://ror.org/02fxw5m16 Institute of Theatre and Film Research of the Art Research Centre of the Slovak Academy of Sciences Ústav divadelnej afilmovej vedy Centra vied o umení Slovenskej akadémie vied'),
(103771, 'https://ror.org/03a2tac74', 'en', 1, 'https://ror.org/03a2tac74 Florey Institute of Neuroscience and Mental Health'),
(103772, 'https://ror.org/0338jc112', 'en', 1, 'https://ror.org/0338jc112 St. Petersburg State Technological Institute Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(103773, 'https://ror.org/05awjvv42', 'en', 1, 'https://ror.org/05awjvv42 Physics Research Initiatives'),
(103774, 'https://ror.org/03vb6df93', 'en', 1, 'https://ror.org/03vb6df93 Nepean Hospital'),
(103775, 'https://ror.org/05wnp9598', 'en', 1, 'https://ror.org/05wnp9598 Air Education and Training Command'),
(103776, 'https://ror.org/02441px27', 'en', 1, 'https://ror.org/02441px27 Sydney Microscopy & Microanalysis'),
(103777, 'https://ror.org/0105x3s66', 'pt', 1, 'https://ror.org/0105x3s66 Instituto Superior de Administração e Finanças'),
(103778, 'https://ror.org/020hzkv18', 'es', 1, 'https://ror.org/020hzkv18 Observatorio Nacional de Ciencia, Tecnología e Innovación'),
(103779, 'https://ror.org/05yf8st19', 'en', 1, 'https://ror.org/05yf8st19 Naval Medical Research Unit San Antonio'),
(103780, 'https://ror.org/00fzkn482', 'en', 1, 'https://ror.org/00fzkn482 Space Delta 3'),
(103781, 'https://ror.org/04wrhg795', 'en', 1, 'https://ror.org/04wrhg795 Indiana University Fort Wayne'),
(103782, 'https://ror.org/00r4taj88', 'en', 1, 'https://ror.org/00r4taj88 IRL HealthDEEP'),
(103783, 'https://ror.org/01yzad698', 'en', 1, 'https://ror.org/01yzad698 Institute of Molecular Physics of the Polish Academy of Sciences Institute of Molecular Physics of the Polish Academy of Sciences Instytut Fizyki Molekularnej Polskiej Akademii Nauk'),
(103784, 'https://ror.org/050zcgq96', 'en', 1, 'https://ror.org/050zcgq96 China Construction Sixth Engineering Bureau Corp., Ltd China Construction Sixth Engineering Bureau Corp., Ltd (China) äø­å›½å»ŗē­‘ē¬¬å…­å·„ēØ‹å±€ęœ‰é™å…¬åø'),
(103785, 'https://ror.org/04vjq8z95', 'de', 1, 'https://ror.org/04vjq8z95 Museum Burg Golling'),
(103786, 'https://ror.org/058xdtn86', 'en', 1, 'https://ror.org/058xdtn86 ARC Centre of Excellence for Plant Success in Nature and Agriculture'),
(103787, 'https://ror.org/01bm08x34', 'fr', 1, 'https://ror.org/01bm08x34 Francophone Society of Nutritherapy and Applied Nutrigenetics SociƩtƩ Francophone de NutrithƩrapie et de NutrigƩnƩtique AppliquƩe'),
(103788, 'https://ror.org/03ba0sv14', 'en', 1, 'https://ror.org/03ba0sv14 Government College of Pharmacy Rohru'),
(103789, 'https://ror.org/03qma7a12', 'fr', 1, 'https://ror.org/03qma7a12 Observatoire Aquitain des Sciences de l''Univers'),
(103790, 'https://ror.org/03ekph544', 'en', 0, 'https://ror.org/03ekph544 All-Russian research Institute of metrological service Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологической ŃŠ»ŃƒŠ¶Š±Ń‹'),
(103791, 'https://ror.org/00510tw04', 'en', 1, 'https://ror.org/00510tw04 Cancer Australia'),
(103792, 'https://ror.org/054yran63', 'en', 1, 'https://ror.org/054yran63 Bihar National College'),
(103793, 'https://ror.org/021cxfs56', 'en', 1, 'https://ror.org/021cxfs56 Royal Hospital for Women'),
(103794, 'https://ror.org/04ysp6769', 'en', 1, 'https://ror.org/04ysp6769 Patna University पटना ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ পটনা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ਪਟਨਾ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(103795, 'https://ror.org/011wdec52', 'en', 1, 'https://ror.org/011wdec52 Centre of Excellence for Biosecurity Risk Analysis'),
(103796, 'https://ror.org/008zs3103', 'en', 1, 'https://ror.org/008zs3103 Rice University Universidad Rice'),
(103797, 'https://ror.org/05b8dr220', 'en', 1, 'https://ror.org/05b8dr220 Women Fund Tanzania Trust'),
(103798, 'https://ror.org/00phkb172', 'en', 1, 'https://ror.org/00phkb172 Arts Flanders Japan å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ćƒ¼ćƒ„ćƒ•ćƒ©ćƒ³ćƒ€ćƒ¼ć‚¹ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(103799, 'https://ror.org/004k6zk54', 'fr', 1, 'https://ror.org/004k6zk54 Structure et activitƩ des biomolƩcules normales et pathologiques'),
(103800, 'https://ror.org/02yqamp19', 'en', 1, 'https://ror.org/02yqamp19 Chadli Bendjedid El Tarf University UniversitĆ© Chadli Bendjedid d''El Tarf Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų“Ų§Ų°Ł„ŁŠ بن جديد -الطارف'),
(103801, 'https://ror.org/05p4ndd12', 'en', 1, 'https://ror.org/05p4ndd12 U.S. Army Sustainment Command'),
(103802, 'https://ror.org/03dhqvj54', 'en', 1, 'https://ror.org/03dhqvj54 American Counseling Association'),
(103803, 'https://ror.org/05dbj6g52', 'en', 1, 'https://ror.org/05dbj6g52 Austin Health'),
(103804, 'https://ror.org/05khzk066', 'en', 1, 'https://ror.org/05khzk066 Association for Water and Rural Development'),
(103805, 'https://ror.org/00c87jq02', 'es', 1, 'https://ror.org/00c87jq02 Instituto de Investigación, Desarrollo e Innovación en Biotecnología Sanitaria de Elche Instituto de Investigación, Desarrollo e Innovación en Biotecnología Sanitaria de Elche (IDiBE) Instituto de Investigación, Desarrollo e Innovación en Biotecnología Sanitaria de Elche (IDiBE) - Universidad Miguel HernÔndez de Elche'),
(103806, 'https://ror.org/001gedw60', 'es', 1, 'https://ror.org/001gedw60 Instituto Tecnológico Superior de Huichapan'),
(103807, 'https://ror.org/03nx05k88', 'fr', 1, 'https://ror.org/03nx05k88 Geography and Planning Laboratory Laboratoire de gƩographie et d''amƩnagement'),
(103808, 'https://ror.org/00zsew396', 'en', 1, 'https://ror.org/00zsew396 Institute of Biology Bucharest'),
(103809, 'https://ror.org/03ydjev11', 'en', 0, 'https://ror.org/03ydjev11 IRYO Sosei University åŒ»ē™‚å‰µē”Ÿå¤§å­¦'),
(103810, 'https://ror.org/030q0xp60', 'da', 1, 'https://ror.org/030q0xp60 Museum Lolland-Falster'),
(103811, 'https://ror.org/00nxxkd60', 'en', 0, 'https://ror.org/00nxxkd60 Emergent Behaviors of Integrated Cellular Systems'),
(103812, 'https://ror.org/02rm1kq61', 'en', 1, 'https://ror.org/02rm1kq61 Iida Junior College é£Æē”°ēŸ­ęœŸå¤§å­¦'),
(103813, 'https://ror.org/003fvsp28', 'id', 1, 'https://ror.org/003fvsp28 Universitas Nahdlatul Ulama Blitar'),
(103814, 'https://ror.org/00dvsyx28', 'en', 1, 'https://ror.org/00dvsyx28 Kogi State University'),
(103815, 'https://ror.org/00cybsr61', 'en', 1, 'https://ror.org/00cybsr61 ARC Centre of Excellence for Dark Matter Particle Physics'),
(103816, 'https://ror.org/004gem776', 'en', 1, 'https://ror.org/004gem776 Ministry of Agriculture Regionaal - Ja PƵllumajandusministeerium'),
(103817, 'https://ror.org/02m9sez84', 'ta', 1, 'https://ror.org/02m9sez84 Bangko Sentral ng Pilipinas Central Bank of the Philippines'),
(103818, 'https://ror.org/03ehdx160', 'en', 1, 'https://ror.org/03ehdx160 Brightpoint Community College'),
(103819, 'https://ror.org/00xwpff16', 'en', 1, 'https://ror.org/00xwpff16 Kokand branch of Tashkent State Technical University named after Islam Karimov'),
(103820, 'https://ror.org/00yak2029', 'en', 1, 'https://ror.org/00yak2029 Venkateswara Homoeopathic Medical College and Hospital'),
(103821, 'https://ror.org/028khat13', 'en', 1, 'https://ror.org/028khat13 Oceans Institute'),
(103822, 'https://ror.org/05tj8pb04', 'fr', 1, 'https://ror.org/05tj8pb04 Abdou Moumouni University UniversitƩ Abdou Moumouni'),
(103823, 'https://ror.org/059fvxn54', 'en', 1, 'https://ror.org/059fvxn54 Phasecraft Inc. Phasecraft Inc. (United States)'),
(103824, 'https://ror.org/00zevd106', 'en', 1, 'https://ror.org/00zevd106 J. Selye University Selye JƔnos Egyetem Univerzita J. Selyeho'),
(103825, 'https://ror.org/01gtjxz83', 'fr', 1, 'https://ror.org/01gtjxz83 Haute-Provence Observatory Observatoire de Haute-Provence'),
(103826, 'https://ror.org/001p2e958', 'en', 0, 'https://ror.org/001p2e958 Argosy University'),
(103827, 'https://ror.org/0063g1m23', 'en', 1, 'https://ror.org/0063g1m23 The State Archives in Dubrovnik'),
(103828, 'https://ror.org/038npk083', 'en', 0, 'https://ror.org/038npk083 North Devon District Hospital'),
(103829, 'https://ror.org/02vd5tc88', 'en', 1, 'https://ror.org/02vd5tc88 Rogante Engineering'),
(103830, 'https://ror.org/00z9m6b57', 'en', 1, 'https://ror.org/00z9m6b57 Northern Devon Healthcare NHS Trust'),
(103831, 'https://ror.org/017z00e58', 'en', 1, 'https://ror.org/017z00e58 Chongqing Medical University é‡åŗ†åŒ»ē§‘å¤§å­¦'),
(103832, 'https://ror.org/011rwyf32', 'en', 1, 'https://ror.org/011rwyf32 U.S. Army Materiel Command'),
(103833, 'https://ror.org/000n1xh78', 'fr', 0, 'https://ror.org/000n1xh78 Biopathologie de la myƩline, neuroprotection et stratƩgies thƩrapeutiques'),
(103834, 'https://ror.org/00eg59v22', 'eu', 1, 'https://ror.org/00eg59v22 Euskalmet'),
(103835, 'https://ror.org/05m3rf228', 'en', 1, 'https://ror.org/05m3rf228 KMEA Engineering College'),
(103836, 'https://ror.org/00rjza670', 'id', 1, 'https://ror.org/00rjza670 STMIK Widya Cipta Dharma'),
(103837, 'https://ror.org/02s3ds748', 'en', 1, 'https://ror.org/02s3ds748 Biomedical Research Center of the Slovak Academy of Sciences Biomedicƭnske Centrum SlovenskƔ akadƩmia vied'),
(103838, 'https://ror.org/03w7awk87', 'en', 1, 'https://ror.org/03w7awk87 Steno Diabetes Centers'),
(103839, 'https://ror.org/017wkbn09', 'en', 1, 'https://ror.org/017wkbn09 Autonomous Nonprofit Organization Scientific Research Center for Information Technologies in the Museum ŠŠ²Ń‚Š¾Š½Š¾Š¼Š½Š°Ń ŠŠµŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ°Ń ŠžŃ€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Ń‹Ń… Технологий Š’ Музее ā€œŠ˜Ń‚Š¼ŃƒŃā€'),
(103840, 'https://ror.org/00hjft591', 'en', 1, 'https://ror.org/00hjft591 Curtin Hub for Immersive Visualisation and eResearch'),
(103841, 'https://ror.org/03cs53d16', 'en', 1, 'https://ror.org/03cs53d16 United States Navy'),
(103842, 'https://ror.org/04z4kmw33', 'en', 1, 'https://ror.org/04z4kmw33 Melbourne Health'),
(103843, 'https://ror.org/04fxxe129', 'en', 1, 'https://ror.org/04fxxe129 Botany Foundation'),
(103844, 'https://ror.org/022arna15', 'en', 1, 'https://ror.org/022arna15 Azərbaycan Respublikası Təhsil Nazirliyinin Ministry of Education of Azerbaijan Republic'),
(103845, 'https://ror.org/0556bdk88', 'en', 1, 'https://ror.org/0556bdk88 The University of Nagano é•·é‡ŽēœŒē«‹å¤§å­¦'),
(103846, 'https://ror.org/03dwsxr17', 'en', 1, 'https://ror.org/03dwsxr17 University of Forestry and Environmental Science į€žį€…į€ŗį€į€±į€¬į€”į€¾į€„į€·į€ŗį€•į€į€ŗį€į€”į€ŗį€øį€€į€»į€„į€ŗį€†į€­į€Æį€„į€ŗį€›į€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ-ရေဆင်း'),
(103847, 'https://ror.org/00ns9pc83', 'en', 1, 'https://ror.org/00ns9pc83 Physical Sciences Division ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ физических наук Š ŠŠ'),
(103848, 'https://ror.org/01q1m8392', 'fr', 1, 'https://ror.org/01q1m8392 Laboratoire de MƩcanique et MatƩriaux du GƩnie Civil Mechanics and Materials Laboratory of Civil Engineering'),
(103849, 'https://ror.org/0380mmw63', 'en', 1, 'https://ror.org/0380mmw63 Centre of Experimental Medicine of the Slovak Academy of Sciences Centrum experimentƔlnej medicƭny SlovenskƔ akadƩmia vied'),
(103850, 'https://ror.org/0539h2w52', 'en', 1, 'https://ror.org/0539h2w52 Naval Facilities Engineering Systems Command'),
(103851, 'https://ror.org/01reat095', 'en', 1, 'https://ror.org/01reat095 Kinder Institute for Urban Research'),
(103852, 'https://ror.org/02j9p0d64', 'id', 1, 'https://ror.org/02j9p0d64 Indonesian Palm Oil Technology Institute Institut Teknologi Sawit Indonesia المعهد Ų§Ł„Ų„Ł†ŲÆŁˆŁ†ŁŠŲ³ŁŠ Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ زيت Ų§Ł„Ł†Ų®ŁŠŁ„'),
(103853, 'https://ror.org/05y7zcx10', 'en', 1, 'https://ror.org/05y7zcx10 Tokyo Shinagawa Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·‘é‡Žä¼šę±äŗ¬å“å·ē—…é™¢'),
(103854, 'https://ror.org/05htqpy51', 'en', 1, 'https://ror.org/05htqpy51 International Association of Computer Science in Sport'),
(103855, 'https://ror.org/008pnp284', 'en', 1, 'https://ror.org/008pnp284 Data Archiving Networked Services (DANS) Het Nationale expertisecentrum en repository voor onderzoeksdata'),
(103856, 'https://ror.org/02t99a717', 'fr', 1, 'https://ror.org/02t99a717 Centre d''Ɖtudes Constitutionnelles et Politiques'),
(103857, 'https://ror.org/03npdj196', 'fr', 1, 'https://ror.org/03npdj196 Institut de recherche en propriƩtƩ intellectuelle'),
(103858, 'https://ror.org/042rf5k64', 'en', 1, 'https://ror.org/042rf5k64 Space Delta 2'),
(103859, 'https://ror.org/00sme9021', 'en', 1, 'https://ror.org/00sme9021 Shibata Gakuen University ęŸ“ē”°å­¦åœ’å¤§å­¦'),
(103860, 'https://ror.org/05wg0mj66', 'en', 1, 'https://ror.org/05wg0mj66 Global Mountain Action'),
(103861, 'https://ror.org/01972fe66', 'en', 1, 'https://ror.org/01972fe66 Australian Institute of Health and Welfare'),
(103862, 'https://ror.org/01xyjyt81', 'fr', 1, 'https://ror.org/01xyjyt81 Centre de Recherches de l''Institut des Hautes Ɖtudes Internationales'),
(103863, 'https://ror.org/040h2sq90', 'en', 1, 'https://ror.org/040h2sq90 Afya na Haki Institute'),
(103864, 'https://ror.org/03r5d5c48', 'fr', 1, 'https://ror.org/03r5d5c48 UnitƩ d''Appui et de Recherche PythƩas'),
(103865, 'https://ror.org/01t9d4c21', 'en', 0, 'https://ror.org/01t9d4c21 Tokyo Shinagawa Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·‘é‡Žä¼šę±äŗ¬å“å·ē—…é™¢'),
(103866, 'https://ror.org/00acxb050', 'fr', 1, 'https://ror.org/00acxb050 Geosciences and Environment Laboratory Laboratoire GƩosciences et Environnement Cergy'),
(103867, 'https://ror.org/01j5n9f07', 'en', 1, 'https://ror.org/01j5n9f07 Atomenergia Kutatóintézet Institute for Atomic Energy Research'),
(103868, 'https://ror.org/02ab3cb17', 'en', 1, 'https://ror.org/02ab3cb17 Research Association of High-Throughput Design and Development for Advanced Functional Materials å…ˆē«Æē“ ęé«˜é€Ÿé–‹ē™ŗęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(103869, 'https://ror.org/00p7p3302', 'en', 1, 'https://ror.org/00p7p3302 Politechnika Poznańska Poznań University of Technology'),
(103870, 'https://ror.org/03x44hg04', 'fr', 1, 'https://ror.org/03x44hg04 Centre de recherche en amƩnagement et dƩveloppement'),
(103871, 'https://ror.org/01c2t8448', 'fr', 1, 'https://ror.org/01c2t8448 Centre de Microbiologie du Sol et de l''Environnement'),
(103872, 'https://ror.org/0045xgt95', 'fr', 0, 'https://ror.org/0045xgt95 Fondation pour l''Innovation en CardiomƩtabolisme et Nutrition Foundation for Innovation in Cardiometabolism and Nutrition'),
(103873, 'https://ror.org/011fnkc96', 'en', 1, 'https://ror.org/011fnkc96 Combined Military Hospital Dhaka ą¦øą¦®ą§ą¦®ą¦æą¦²ą¦æą¦¤ সামরিক হাসপাতাল (ঢাকা)'),
(103874, 'https://ror.org/04g7ya794', 'en', 1, 'https://ror.org/04g7ya794 Spitalul Clinic de Ortopedie, Traumatologie și TBC Osteoarticular Foișor ā€œFoisorā€ Clinical Hospital of Orthopaedics, Traumatology and Osteoarticular TB'),
(103875, 'https://ror.org/03crewh69', 'en', 1, 'https://ror.org/03crewh69 Nablus University for Vocational and Technical Education'),
(103876, 'https://ror.org/0557mft23', 'fr', 1, 'https://ror.org/0557mft23 Formation, Innovation, Recherche, Services et Transfert en Temps-FrƩquence'),
(103877, 'https://ror.org/03wxseg04', 'en', 1, 'https://ror.org/03wxseg04 Terrestrial Ecosystem Research Network'),
(103878, 'https://ror.org/05701wm02', 'en', 1, 'https://ror.org/05701wm02 Equator University of Science and Technology'),
(103879, 'https://ror.org/03c86nx70', 'en', 1, 'https://ror.org/03c86nx70 Ministerstwo Spraw Wewnętrznych i Administracji Ministry of Interior and Administration'),
(103880, 'https://ror.org/01znkr924', 'en', 1, 'https://ror.org/01znkr924 Mahidol University ดหาวณทยาคัยดหณดค'),
(103881, 'https://ror.org/012w5e784', 'en', 1, 'https://ror.org/012w5e784 University of Cross River State'),
(103882, 'https://ror.org/03p1tqc11', 'en', 1, 'https://ror.org/03p1tqc11 Naval Submarine Medical Research Laboratory'),
(103883, 'https://ror.org/02naczy15', 'en', 1, 'https://ror.org/02naczy15 Ministerstvo pƓdohospodƔrstva a rozvoja vidieka Slovenskej republiky Ministry of Agriculture and Rural Development of the Slovak Republic'),
(103884, 'https://ror.org/05a778a43', 'en', 1, 'https://ror.org/05a778a43 Presence Foundation Stichting Presentie'),
(103885, 'https://ror.org/04rbss527', 'es', 1, 'https://ror.org/04rbss527 Banco de Germoplasma Vegetal de la UPM "César Gómez Campo" Germplasm bank of the Technical University of Madrid'),
(103886, 'https://ror.org/05gzceg21', 'no_lang_code', 1, 'https://ror.org/05gzceg21 Kasetsart University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøąø©ąø•ąø£ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(103887, 'https://ror.org/0200wpa28', 'en', 1, 'https://ror.org/0200wpa28 Centrum biológie rastlín a biodiverzity Slovenskej akadémie vied Plant Science and Biodiversity Centre of the Slovak Academy of Sciences'),
(103888, 'https://ror.org/01n8x4993', 'en', 1, 'https://ror.org/01n8x4993 Instituto PolitƩcnico de Coimbra Polytechnic Institute of Coimbra'),
(103889, 'https://ror.org/00skvsz15', 'id', 1, 'https://ror.org/00skvsz15 Badan Pengembangan Sumber Daya Manusia Provinsi DKI Jakarta'),
(103890, 'https://ror.org/03m775f27', 'en', 1, 'https://ror.org/03m775f27 Institute of Social Sciences of the Centre of Social and Psychological Sciences of the Slovak Academy of Sciences Spoločenskovedný Ćŗstav Centra spoločenských a psychologických vied Slovenskej akadĆ©mie vied'),
(103891, 'https://ror.org/01e2k1j30', 'en', 1, 'https://ror.org/01e2k1j30 Bureau of Medicine and Surgery'),
(103892, 'https://ror.org/0169mwg35', 'es', 1, 'https://ror.org/0169mwg35 Grupo Empresarial LABIOFAM'),
(103893, 'https://ror.org/05f421b09', 'en', 1, 'https://ror.org/05f421b09 Naval Medical Research Command'),
(103894, 'https://ror.org/00f945z63', 'fr', 1, 'https://ror.org/00f945z63 Institut Pytheas Observatoire des Sciences de l’OSU Institut PythĆ©as'),
(103895, 'https://ror.org/03085z545', 'en', 0, 'https://ror.org/03085z545 Royal Devon & Exeter NHS Foundation Trust'),
(103896, 'https://ror.org/04xkqms46', 'en', 1, 'https://ror.org/04xkqms46 European Multidisciplinary Seafloor and water column Observatory'),
(103897, 'https://ror.org/04q1st976', 'en', 1, 'https://ror.org/04q1st976 Institute of Animal Biochemistry and Genetics of the Slovak Academy of Sciences Ústav biochĆ©mie a genetiky živočƭchov Centra biovied Slovenskej akadĆ©mie vied'),
(103898, 'https://ror.org/0278h4n28', 'en', 1, 'https://ror.org/0278h4n28 Naval Hospital Bremerton'),
(103899, 'https://ror.org/0233st365', 'fr', 1, 'https://ror.org/0233st365 MƩtƩo-France'),
(103900, 'https://ror.org/00cvh4b12', 'fr', 1, 'https://ror.org/00cvh4b12 Institut de Criminologie et de Droit PƩnal de Paris'),
(103901, 'https://ror.org/01s62z461', 'en', 1, 'https://ror.org/01s62z461 Australian Coral Reef Society'),
(103902, 'https://ror.org/019snar59', 'en', 1, 'https://ror.org/019snar59 Centre of Biosciences of the Slovak Academy of Sciences Centrum biovied SlovenskƔ akadƩmia vied'),
(103903, 'https://ror.org/0249y7230', 'en', 1, 'https://ror.org/0249y7230 Vertical Farm Institute'),
(103904, 'https://ror.org/043vhnd15', 'en', 1, 'https://ror.org/043vhnd15 Academic Perpective Akademik Perspektif Derneği'),
(103905, 'https://ror.org/014pvr265', 'en', 1, 'https://ror.org/014pvr265 Telemedicine & Advanced Technology Research Center'),
(103906, 'https://ror.org/05tc4vc39', 'en', 1, 'https://ror.org/05tc4vc39 Dr. Babasaheb Ambedkar Technological University ą¤”ą„‰. ą¤¬ą¤¾ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤†ą¤‚ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(103907, 'https://ror.org/00h98p168', 'en', 1, 'https://ror.org/00h98p168 Tanzania Fisheries Research Institute'),
(103908, 'https://ror.org/010mv7n52', 'en', 1, 'https://ror.org/010mv7n52 Austin Hospital'),
(103909, 'https://ror.org/056texh07', 'en', 1, 'https://ror.org/056texh07 The Nature Center at Steele Creek Park'),
(103910, 'https://ror.org/006de3q07', 'en', 1, 'https://ror.org/006de3q07 American International Theism University'),
(103911, 'https://ror.org/04mymyn49', 'en', 1, 'https://ror.org/04mymyn49 Federal Polytechnic Wannune'),
(103912, 'https://ror.org/00cn92c09', 'en', 1, 'https://ror.org/00cn92c09 National Taipei University of Technology åœ‹ē«‹č‡ŗåŒ—ē§‘ęŠ€å¤§å­ø'),
(103913, 'https://ror.org/03ftngr23', 'en', 1, 'https://ror.org/03ftngr23 Institute for Technical Physics and Materials Science Műszaki Fizikai és AnyagtudomÔnyi Intézet'),
(103914, 'https://ror.org/01cqp7y05', 'fr', 1, 'https://ror.org/01cqp7y05 Synergies Langues Arts Musique'),
(103915, 'https://ror.org/05h13a661', 'en', 1, 'https://ror.org/05h13a661 Korea Football Association'),
(103916, 'https://ror.org/041vekr17', 'en', 0, 'https://ror.org/041vekr17 Argosy University'),
(103917, 'https://ror.org/0402tt118', 'en', 1, 'https://ror.org/0402tt118 Sydney Hospital'),
(103918, 'https://ror.org/03ggezs29', 'en', 1, 'https://ror.org/03ggezs29 National University of Battambang įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž‡įž¶įžįž·įž”įž¶įžįŸ‹įžŠįŸ†įž”įž„'),
(103919, 'https://ror.org/0151ntc51', 'en', 1, 'https://ror.org/0151ntc51 Tiverton and District Hospital'),
(103920, 'https://ror.org/00c2x1j89', 'en', 1, 'https://ror.org/00c2x1j89 Pakistan Museum of Natural History پاکستا ن Ł…ŪŒŁˆŲ²ŪŒŁ… آف Ł†ŪŒŚ†Ų±Ł„ ہسٹرئ'),
(103921, 'https://ror.org/037r1m174', 'en', 1, 'https://ror.org/037r1m174 Budleigh Salterton Hospital'),
(103922, 'https://ror.org/05v0eqq44', 'id', 1, 'https://ror.org/05v0eqq44 Universitas Harapan Bangsa'),
(103923, 'https://ror.org/035gwtk09', 'en', 1, 'https://ror.org/035gwtk09 Tianjin University of Technology and Education å¤©ę“„čŒäøšęŠ€ęœÆåøˆčŒƒå¤§å­¦'),
(103924, 'https://ror.org/04gbzm373', 'fr', 0, 'https://ror.org/04gbzm373 Universite de Bordeaux II Victor Segalen UniversitƩ Bordeaux II UniversitƩ Bordeaux Segalen'),
(103925, 'https://ror.org/050f5ff98', 'en', 1, 'https://ror.org/050f5ff98 Southern Institute of Water Resources Research Viện Khoa hį»c Thį»§y lợi miền Nam'),
(103926, 'https://ror.org/02vhcfz72', 'en', 1, 'https://ror.org/02vhcfz72 Catholic Institute of Technology'),
(103927, 'https://ror.org/005r2ww51', 'en', 1, 'https://ror.org/005r2ww51 Symbiosis International University'),
(103928, 'https://ror.org/0162hm862', 'en', 1, 'https://ror.org/0162hm862 Life Science Alliance LLC Life Science Alliance LLC (United States)'),
(103929, 'https://ror.org/042s7kp61', 'en', 1, 'https://ror.org/042s7kp61 GreenCross Veterinary Products Co. GreenCross Veterinary Products Co. (South Korea)'),
(103930, 'https://ror.org/028rypz17', 'fr', 0, 'https://ror.org/028rypz17 Universitat de Parƭs Sud University of Paris-Sud UniversitƩ Paris-Sud'),
(103931, 'https://ror.org/0121jnt59', 'fr', 1, 'https://ror.org/0121jnt59 Institut de Recherche et Coordination Acoustique Musique Institute for Research and Coordination in Acoustics/Music'),
(103932, 'https://ror.org/00y4bgc09', 'en', 1, 'https://ror.org/00y4bgc09 Sumerian Scriptum Synthesis Publisher'),
(103933, 'https://ror.org/03rtykw43', 'en', 1, 'https://ror.org/03rtykw43 ARC Centre of Excellence for Engineered Quantum Systems'),
(103934, 'https://ror.org/003shc010', 'es', 1, 'https://ror.org/003shc010 Escuela Radical'),
(103935, 'https://ror.org/036h6g940', 'en', 1, 'https://ror.org/036h6g940 Government of India'),
(103936, 'https://ror.org/03sqmjr39', 'en', 1, 'https://ror.org/03sqmjr39 International Taraz University named after Sherkhan Murtaza'),
(103937, 'https://ror.org/04gm7z490', 'en', 1, 'https://ror.org/04gm7z490 Asia Technology Research Institute'),
(103938, 'https://ror.org/04dgg6v25', 'en', 1, 'https://ror.org/04dgg6v25 Capacity Development in Nutrition'),
(103939, 'https://ror.org/02spt7814', 'es', 1, 'https://ror.org/02spt7814 Center for Documentation and Research on Left-Wing Culture Centro de Documentación e Investigación de la Cultura de Izquierdas'),
(103940, 'https://ror.org/00vz7hd33', 'en', 1, 'https://ror.org/00vz7hd33 XploreOpen'),
(103941, 'https://ror.org/003jjq839', 'en', 1, 'https://ror.org/003jjq839 University of Hormozgan'),
(103942, 'https://ror.org/00wsw4f53', 'en', 1, 'https://ror.org/00wsw4f53 Central State Scientific and Technical Archive of Ukraine Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ Гержавний науково-технічний архів України'),
(103943, 'https://ror.org/03dm1p143', 'en', 1, 'https://ror.org/03dm1p143 Naval Sea Systems Command'),
(103944, 'https://ror.org/017343w90', 'en', 1, 'https://ror.org/017343w90 Canadian Cancer Society SociƩtƩ canadienne du cancer'),
(103945, 'https://ror.org/02v6vgb19', 'id', 1, 'https://ror.org/02v6vgb19 Universitas Aufa Royhan'),
(103946, 'https://ror.org/00ajwxp03', 'en', 1, 'https://ror.org/00ajwxp03 Womack Army Medical Center'),
(103947, 'https://ror.org/059vyyn23', 'no_lang_code', 1, 'https://ror.org/059vyyn23 L''OrƩal (India)'),
(103948, 'https://ror.org/00w8wc934', 'en', 1, 'https://ror.org/00w8wc934 Tokyo Metropolitan Islands Area Research and Development Center for Agriculture, Forestry and Fisheries ę±äŗ¬éƒ½å³¶ć—ć‚‡č¾²ęž—ę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(103949, 'https://ror.org/00kx55e87', 'en', 1, 'https://ror.org/00kx55e87 Poltava State Medical University ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(103950, 'https://ror.org/05wswj918', 'en', 1, 'https://ror.org/05wswj918 HUN-REN Centre for Energy Research HUN-REN EnergiatudomÔnyi Kutatóközpont'),
(103951, 'https://ror.org/05q3eyj09', 'en', 1, 'https://ror.org/05q3eyj09 Aerosol d.o.o. Aerosol d.o.o. (Slovenia)'),
(103952, 'https://ror.org/03mbfdc31', 'fr', 1, 'https://ror.org/03mbfdc31 Laboratoire de recherche en sciences de gestion PanthƩon-Assas'),
(103953, 'https://ror.org/0566yhn94', 'en', 1, 'https://ror.org/0566yhn94 Jan Długosz University Uniwersytet Jana Długosza wCzęstochowie'),
(103954, 'https://ror.org/04z01sb73', 'en', 1, 'https://ror.org/04z01sb73 Foraminifera.eu Lab'),
(103955, 'https://ror.org/030z8x523', 'en', 1, 'https://ror.org/030z8x523 Sincan Eğitim ve Araştırma Hastanesi Sincan Training and Research Hospital'),
(103956, 'https://ror.org/046p5xf85', 'en', 1, 'https://ror.org/046p5xf85 Xichong County People''s Hospital č„æå……åŽæäŗŗę°‘åŒ»é™¢'),
(103957, 'https://ror.org/041xzk838', 'it', 1, 'https://ror.org/041xzk838 Biophysics Institute Instituto di Biofisica'),
(103958, 'https://ror.org/04jy6j173', 'en', 1, 'https://ror.org/04jy6j173 Alandalus University For Science & Technology Ų¬Ų§Ł…Ų¹Ų© الأندلس Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(103959, 'https://ror.org/046nzaj59', 'en', 1, 'https://ror.org/046nzaj59 Bundesanstalt für Straßenwesen Federal Highway and Transport Research Institute'),
(103960, 'https://ror.org/00vj0q898', 'en', 1, 'https://ror.org/00vj0q898 Sarsen Amanzholov East Kazakhstan University Š’ŠžŠ”Š¢ŠžŠ§ŠŠž-ŠšŠŠ—ŠŠ„Š”Š¢ŠŠŠ”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢ Š˜ŠœŠ•ŠŠ˜ Š”ŠŠ Š”Š•ŠŠ ŠŠœŠŠŠ–ŠžŠ›ŠžŠ’Š Š”Ó˜Š Š”Š•Š ŠŠœŠŠŠ–ŠžŠ›ŠžŠ’ ŠŠ¢Š«ŠŠ”ŠŅ’Š« ШЫҒЫД ŅšŠŠ—ŠŅšŠ”Š¢ŠŠ ŠœŠ•ŠœŠ›Š•ŠšŠ•Š¢Š¢Š†Šš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š†'),
(103961, 'https://ror.org/00p6her27', 'en', 1, 'https://ror.org/00p6her27 Sydney College of Divinity'),
(103962, 'https://ror.org/02e0y6e06', 'fr', 1, 'https://ror.org/02e0y6e06 DƩlƩgation Paris 5'),
(103963, 'https://ror.org/013xqfw52', 'en', 1, 'https://ror.org/013xqfw52 Centar za istraživanje i razvoj druŔtva IDEAS Centre for Research and Social Development IDEAS'),
(103964, 'https://ror.org/02q1spa57', 'en', 1, 'https://ror.org/02q1spa57 Tunis University UniversitĆ© de Tunis Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³'),
(103965, 'https://ror.org/03k1ptr98', 'en', 1, 'https://ror.org/03k1ptr98 International Platform on Mental Health ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½Š° ŠŸŠ»Š°Ń‚Ń„Š¾Ń€Š¼Š° Ā«ŠŸŃŠøŃ…Ń–Ń‡Š½Šµ Š·Š“Š¾Ń€Š¾Š²ā€™Ń: Š³Š»Š¾Š±Š°Š»ŃŒŠ½Ń– виклики»'),
(103966, 'https://ror.org/05556pa07', 'en', 1, 'https://ror.org/05556pa07 Sieć Badawcza Łukasiewicz –Instytut Inżynierii Materiałów Polimerowych i Barwników Łukasiewicz Research Network - Institute for Engineering of Polymer Materials and Dyes'),
(103967, 'https://ror.org/054n84d53', 'no_lang_code', 1, 'https://ror.org/054n84d53 L''Oreal (United States)'),
(103968, 'https://ror.org/01q6dzp07', 'en', 1, 'https://ror.org/01q6dzp07 College of Engineering Trivandrum'),
(103969, 'https://ror.org/02mh9a093', 'fr', 1, 'https://ror.org/02mh9a093 HÓpital de la Pitié-Salpêtrière Pitié-Salpêtrière Hospital'),
(103970, 'https://ror.org/00hswnk62', 'en', 1, 'https://ror.org/00hswnk62 Queen''s University Belfast'),
(103971, 'https://ror.org/01hhqsm59', 'en', 1, 'https://ror.org/01hhqsm59 Sir Charles Gairdner Hospital'),
(103972, 'https://ror.org/0039zvd55', 'fr', 1, 'https://ror.org/0039zvd55 Labex EMC3'),
(103973, 'https://ror.org/037pnxs58', 'fr', 1, 'https://ror.org/037pnxs58 School, Mutations, Learning Ɖcole, Mutations, Apprentissages'),
(103974, 'https://ror.org/006eae983', 'en', 1, 'https://ror.org/006eae983 Nuclear Institute of Agriculture (NIA) Tandojam Nuclear Institute of Agriculture, Tandojam'),
(103975, 'https://ror.org/0081esx06', 'es', 1, 'https://ror.org/0081esx06 Fundación Observatorio Ƒuble Ƒuble Observatory Foundation'),
(103976, 'https://ror.org/00b5jyb64', 'en', 0, 'https://ror.org/00b5jyb64 Kanazawa Municipal Hospital 金沢市立病院'),
(103977, 'https://ror.org/01sfyq865', 'en', 1, 'https://ror.org/01sfyq865 Madigan Army Medical Center'),
(103978, 'https://ror.org/01ch21j41', 'fr', 1, 'https://ror.org/01ch21j41 Connaissance & Intelligence Artificielle DistribuƩes'),
(103979, 'https://ror.org/004cv0665', 'en', 1, 'https://ror.org/004cv0665 Yildirim Beyazit University Yenimahalle Education and Research Hospital'),
(103980, 'https://ror.org/04srehp09', 'en', 1, 'https://ror.org/04srehp09 Pakistan Science Foundation'),
(103981, 'https://ror.org/01svqjv39', 'en', 1, 'https://ror.org/01svqjv39 Universitetssenteret pƄ Kjeller University Graduate Center'),
(103982, 'https://ror.org/024jkkf40', 'en', 1, 'https://ror.org/024jkkf40 Australian Centre for Excellence in Antarctic Science'),
(103983, 'https://ror.org/04yev3f93', 'en', 1, 'https://ror.org/04yev3f93 International Space Centre'),
(103984, 'https://ror.org/044webc45', 'en', 1, 'https://ror.org/044webc45 CECOM Software Engineering Center'),
(103985, 'https://ror.org/04t512h04', 'en', 1, 'https://ror.org/04t512h04 Swedish National Space Agency'),
(103986, 'https://ror.org/030snpp57', 'es', 1, 'https://ror.org/030snpp57 Catholic University of Santiago de Guayaquil Universidad Católica de Santiago de Guayaquil'),
(103987, 'https://ror.org/05sd1pp77', 'en', 1, 'https://ror.org/05sd1pp77 International Centre for Radio Astronomy Research'),
(103988, 'https://ror.org/05pwkex33', 'fr', 1, 'https://ror.org/05pwkex33 Observatoire des Sciences de l''Environnement de Rennes'),
(103989, 'https://ror.org/033z8fr92', 'en', 1, 'https://ror.org/033z8fr92 Abadan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی آبادان'),
(103990, 'https://ror.org/050trge43', 'en', 1, 'https://ror.org/050trge43 Denau Institute of Entrepreneurship and Pedagogy Denov tadbirkorlik va pedagogika instituti Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° Šø пеГагогики имени Денова ŲÆŪŒŁ†ŁˆŁ ŲÆ Ł…ŲŖŲ“ŲØŲ«ŪŒŲŖ او تدریس Ų§Ł†Ų³Ł¼ŪŒŁ¼ŪŒŁˆŁ¼'),
(103991, 'https://ror.org/01pzqw594', 'en', 1, 'https://ror.org/01pzqw594 Department of Livestock Services ą¦Ŗą§ą¦°ą¦¾ą¦£ą¦æą¦øą¦®ą§ą¦Ŗą¦¦ ą¦…ą¦§ą¦æą¦¦ą¦Ŗą§ą¦¤ą¦°'),
(103992, 'https://ror.org/03hqfkf51', 'en', 1, 'https://ror.org/03hqfkf51 Space Delta 6'),
(103993, 'https://ror.org/05mjmsc11', 'en', 1, 'https://ror.org/05mjmsc11 Northern Hospital'),
(103994, 'https://ror.org/0126v6t20', 'en', 1, 'https://ror.org/0126v6t20 Geologiya və Geofizika İnstitutu Institute of Geology and Geophysics'),
(103995, 'https://ror.org/03sm7xj72', 'es', 1, 'https://ror.org/03sm7xj72 Universidad Nacional Experimental del Yaracuy'),
(103996, 'https://ror.org/05xde4j27', 'en', 1, 'https://ror.org/05xde4j27 United States Naval Hospital Okinawa ē±³å›½ęµ·č»ē—…é™¢'),
(103997, 'https://ror.org/04v5axh10', 'en', 1, 'https://ror.org/04v5axh10 IRYO Sosei University åŒ»ē™‚å‰µē”Ÿå¤§å­¦'),
(103998, 'https://ror.org/0312sjw67', 'en', 1, 'https://ror.org/0312sjw67 EMSO-France'),
(103999, 'https://ror.org/03fqkgf18', 'en', 1, 'https://ror.org/03fqkgf18 Navy Expeditionary Combat Command'),
(104000, 'https://ror.org/03a5bvk43', 'en', 1, 'https://ror.org/03a5bvk43 Institute of Climate-Smart Agriculture of the National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кліматично орієнтованого ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України');
INSERT INTO `rors` VALUES
(104001, 'https://ror.org/00ezjkn15', 'en', 1, 'https://ror.org/00ezjkn15 Osipyan Institute of Solid State Physics RAS'),
(104002, 'https://ror.org/04k2ezm16', 'en', 1, 'https://ror.org/04k2ezm16 Okanagan College'),
(104003, 'https://ror.org/013vpa670', 'en', 1, 'https://ror.org/013vpa670 Kyzylorda Open University ŠšŃ‹Š·Ń‹Š»Š¾Ń€Š“ŠøŠ½ŃŠŗŠøŠ¹ открытый ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŅšŃ‹Š·Ń‹Š»Š¾Ń€Š“Š° Š°ŃˆŃ‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(104004, 'https://ror.org/01pcb8y44', 'es', 1, 'https://ror.org/01pcb8y44 Instituto de Investigación en Paleobiología y Geología'),
(104005, 'https://ror.org/03s92mv58', 'fr', 1, 'https://ror.org/03s92mv58 Geosciences Paris-Saclay'),
(104006, 'https://ror.org/050cgqa20', 'en', 1, 'https://ror.org/050cgqa20 Center for Emergency Situations and Disaster Risk Reduction'),
(104007, 'https://ror.org/01bgeqk20', 'en', 1, 'https://ror.org/01bgeqk20 CUPA-HR'),
(104008, 'https://ror.org/05f8gg818', 'en', 1, 'https://ror.org/05f8gg818 Russian Association of Computer Science in Sport ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ ŠŗŠ¾Š¼ŠæŃŒŃŽŃ‚ŠµŃ€Š½Ń‹Ń… наук в спорте'),
(104009, 'https://ror.org/00a3qqg15', 'en', 1, 'https://ror.org/00a3qqg15 U.S. Army CECOM Integrated Logistics Support Center'),
(104010, 'https://ror.org/00t7ph632', 'en', 1, 'https://ror.org/00t7ph632 Heavitree Hospital'),
(104011, 'https://ror.org/012gvf162', 'en', 1, 'https://ror.org/012gvf162 Autonomous State Medical College, Pilibhit ą¤øą„ą¤µą¤¶ą¤¾ą¤øą„€ ą¤°ą¤¾ą¤œą„ą¤Æ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤Ŗą„€ą¤²ą„€ą¤­ą„€ą¤¤'),
(104012, 'https://ror.org/01e4w2966', 'en', 1, 'https://ror.org/01e4w2966 Australian Sports Commission'),
(104013, 'https://ror.org/0092hde74', 'en', 1, 'https://ror.org/0092hde74 Scottish Avalanche Information Service'),
(104014, 'https://ror.org/032vkvz43', 'en', 1, 'https://ror.org/032vkvz43 State Organization "Institute of Market and Economic&Ecological Researches of NAS of Ukraine" Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŠøŠ½ŠŗŃƒ і економіко-екологічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ŠŠŠ України"'),
(104015, 'https://ror.org/039qa0b28', 'de', 1, 'https://ror.org/039qa0b28 Hogrefe Verlag GmbH & Co. KG Hogrefe Verlag GmbH & Co. KG (Germany)'),
(104016, 'https://ror.org/01mjwqg35', 'en', 1, 'https://ror.org/01mjwqg35 TYDEX, LLC TYDEX, LLC (Russia)'),
(104017, 'https://ror.org/03arvv474', 'en', 1, 'https://ror.org/03arvv474 Anglo-American University Anglo-americkÔ vysokÔ Ŕkola'),
(104018, 'https://ror.org/0421f6a14', 'en', 1, 'https://ror.org/0421f6a14 Naval Hospital Jacksonville'),
(104019, 'https://ror.org/02157xr58', 'en', 1, 'https://ror.org/02157xr58 Naval Hospital Pensacola'),
(104020, 'https://ror.org/04qvk8036', 'en', 1, 'https://ror.org/04qvk8036 GENESIS Hospital ĪšĪ»Ī¹Ī½Ī¹ĪŗĪ®Ļ‚ Ī“Ī•ĪĪ•Ī£Ī™Ī£'),
(104021, 'https://ror.org/0593xbv16', 'en', 1, 'https://ror.org/0593xbv16 United States Army Futures Command'),
(104022, 'https://ror.org/00rnbty21', 'en', 1, 'https://ror.org/00rnbty21 Centre for Quantum Computation and Communication Technology'),
(104023, 'https://ror.org/00mffw377', 'en', 1, 'https://ror.org/00mffw377 Australian Health Practitioner Regulation Agency'),
(104024, 'https://ror.org/05sxfrm39', 'en', 1, 'https://ror.org/05sxfrm39 GlobalNeurology'),
(104025, 'https://ror.org/00b15e322', 'en', 1, 'https://ror.org/00b15e322 Dharanidhar University, Keonjhar'),
(104026, 'https://ror.org/036kpp596', 'en', 1, 'https://ror.org/036kpp596 Project Data Sphere'),
(104027, 'https://ror.org/0453j3c58', 'no_lang_code', 1, 'https://ror.org/0453j3c58 Mahasarakham University ดหาวณทยาคัยดหาสารคาด'),
(104028, 'https://ror.org/002h4ry72', 'en', 1, 'https://ror.org/002h4ry72 Co-design Center for Quantum Advantage'),
(104029, 'https://ror.org/02mft8527', 'en', 1, 'https://ror.org/02mft8527 Bentley Health Service'),
(104030, 'https://ror.org/05r91p430', 'de', 1, 'https://ror.org/05r91p430 Praxisklinik Rennbahn AG'),
(104031, 'https://ror.org/01tez1r52', 'en', 1, 'https://ror.org/01tez1r52 PSG College of Technology'),
(104032, 'https://ror.org/0354d1a47', 'it', 1, 'https://ror.org/0354d1a47 Institut Agricole RƩgional'),
(104033, 'https://ror.org/0189w2q14', 'en', 1, 'https://ror.org/0189w2q14 United States Army Test and Evaluation Command'),
(104034, 'https://ror.org/04g9wgp02', 'en', 1, 'https://ror.org/04g9wgp02 University of Kotli, Azad Jammu and Kashmir'),
(104035, 'https://ror.org/024nx4843', 'en', 1, 'https://ror.org/024nx4843 Izmir KĆ¢tip Ƈelebi University İzmir KĆ¢tip Ƈelebi Üniversitesi'),
(104036, 'https://ror.org/04s1m4564', 'en', 1, 'https://ror.org/04s1m4564 AuScope'),
(104037, 'https://ror.org/05e5ahc59', 'en', 1, 'https://ror.org/05e5ahc59 Royal Devon University Healthcare NHS Foundation Trust'),
(104038, 'https://ror.org/01h2d3422', 'no_lang_code', 0, 'https://ror.org/01h2d3422 Engility (United States)'),
(104039, 'https://ror.org/025m0q735', 'en', 1, 'https://ror.org/025m0q735 Wilford Hall Ambulatory Surgical Center'),
(104040, 'https://ror.org/02chzeh21', 'en', 1, 'https://ror.org/02chzeh21 National Institute of Fisheries Science źµ­ė¦½ģˆ˜ģ‚°ź³¼ķ•™ģ›'),
(104041, 'https://ror.org/05dfa2347', 'en', 1, 'https://ror.org/05dfa2347 Kailai Technology (Shenzhen) Co., Ltd. Kailai Technology (Shenzhen) Co., Ltd. (China)'),
(104042, 'https://ror.org/01jxzq227', 'en', 0, 'https://ror.org/01jxzq227 Indiana University – Purdue University Fort Wayne'),
(104043, 'https://ror.org/0463nzc67', 'id', 1, 'https://ror.org/0463nzc67 Universitas Nahdlatul Ulama Lampung'),
(104044, 'https://ror.org/05est4g74', 'en', 1, 'https://ror.org/05est4g74 Guru Nanak First Grade College Bidar'),
(104045, 'https://ror.org/04emb5q74', 'id', 1, 'https://ror.org/04emb5q74 Universitas Maarif Hasyim Latif'),
(104046, 'https://ror.org/05vgzn161', 'es', 1, 'https://ror.org/05vgzn161 Central Institute of Pedagogical Sciences Instituto Central de Ciencias Pedagógicas'),
(104047, 'https://ror.org/03p0rew30', 'en', 1, 'https://ror.org/03p0rew30 St. Xavier''s College (Autonomous), Kolkata'),
(104048, 'https://ror.org/053wq6q28', 'en', 1, 'https://ror.org/053wq6q28 Northern Virginia Mental Health Institute'),
(104049, 'https://ror.org/03grnna41', 'en', 1, 'https://ror.org/03grnna41 Royal Women''s Hospital'),
(104050, 'https://ror.org/05p52kj31', 'en', 1, 'https://ror.org/05p52kj31 Royal Brisbane and Women''s Hospital'),
(104051, 'https://ror.org/04pt40967', 'en', 1, 'https://ror.org/04pt40967 Imam Ali University'),
(104052, 'https://ror.org/03e0aj978', 'en', 1, 'https://ror.org/03e0aj978 University of Larestan Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ لارستان'),
(104053, 'https://ror.org/00jjz9s23', 'en', 1, 'https://ror.org/00jjz9s23 Digitisation Centre of Western Australia'),
(104054, 'https://ror.org/05v8m3s60', 'id', 1, 'https://ror.org/05v8m3s60 Nusamandiri University Universitas Nusa Mandiri'),
(104055, 'https://ror.org/04ydm6t76', 'en', 1, 'https://ror.org/04ydm6t76 Malcolm Grow Medical Clinic'),
(104056, 'https://ror.org/00d4ca571', 'en', 1, 'https://ror.org/00d4ca571 Moretonhampstead Hospital'),
(104057, 'https://ror.org/00yrb1d04', 'en', 1, 'https://ror.org/00yrb1d04 Institute of Neurobiology of the Slovak Academy of Sciences Neurobiologický ústav Biomedicínskeho centra Slovenskej akadémie vied'),
(104058, 'https://ror.org/035hc0m07', 'pl', 1, 'https://ror.org/035hc0m07 Nicolaus Copernicus Superior School Szkoła Główna Mikołaja Kopernika'),
(104059, 'https://ror.org/04bath731', 'en', 1, 'https://ror.org/04bath731 Solers Research Group (United States)'),
(104060, 'https://ror.org/044nqyr35', 'id', 1, 'https://ror.org/044nqyr35 Universitas Islam Negeri Kiai Haji Achmad Siddiq Jember'),
(104061, 'https://ror.org/035tm0421', 'it', 1, 'https://ror.org/035tm0421 Ordine Architetti Pianificatori Paesaggisti Conservatori di Napoli e Provincia'),
(104062, 'https://ror.org/01xkgze42', 'id', 1, 'https://ror.org/01xkgze42 Universitas Harapan Medan'),
(104063, 'https://ror.org/00s9qnc79', 'ga', 1, 'https://ror.org/00s9qnc79 Bord Iascaigh Mharaga'),
(104064, 'https://ror.org/03pnyy777', 'en', 1, 'https://ror.org/03pnyy777 Croatian Natural History Museum'),
(104065, 'https://ror.org/02vhd9c58', 'id', 1, 'https://ror.org/02vhd9c58 Universitas Islam Negeri Alauddin Makassar'),
(104066, 'https://ror.org/00m91n277', 'en', 1, 'https://ror.org/00m91n277 Naval Education and Training Command'),
(104067, 'https://ror.org/04g3scy39', 'en', 1, 'https://ror.org/04g3scy39 Government of South Australia'),
(104068, 'https://ror.org/01kps9p44', 'en', 1, 'https://ror.org/01kps9p44 Ircam Amplify Ircam Amplify (France)'),
(104069, 'https://ror.org/03t7n7h72', 'en', 1, 'https://ror.org/03t7n7h72 Symbiosis University of Applied Sciences'),
(104070, 'https://ror.org/00frv1728', 'en', 1, 'https://ror.org/00frv1728 Art Research Centre of the Slovak Academy of Sciences Centrum vied o umenƭ SlovenskƔ akadƩmia vied'),
(104071, 'https://ror.org/05maz1p71', 'en', 1, 'https://ror.org/05maz1p71 The London Interdisciplinary School'),
(104072, 'https://ror.org/01dm0sk45', 'es', 1, 'https://ror.org/01dm0sk45 Fundación Cóndor Andino'),
(104073, 'https://ror.org/05brv9741', 'de', 1, 'https://ror.org/05brv9741 PƤdagogische Hochschule Vorarlberg'),
(104074, 'https://ror.org/04fcqnd54', 'en', 1, 'https://ror.org/04fcqnd54 Ottery St Mary Hospital'),
(104075, 'https://ror.org/05f7dn964', 'en', 1, 'https://ror.org/05f7dn964 International University named after K.Sh.Toktomamatov'),
(104076, 'https://ror.org/018hd1228', 'en', 1, 'https://ror.org/018hd1228 Space Delta 7'),
(104077, 'https://ror.org/041nk4h53', 'en', 1, 'https://ror.org/041nk4h53 Laboratorio Nacional Lawrence Livermore Lawrence Livermore National Laboratory'),
(104078, 'https://ror.org/05egqah77', 'en', 1, 'https://ror.org/05egqah77 Naval Medical Research Unit DAYTON'),
(104079, 'https://ror.org/04ysmh328', 'en', 1, 'https://ror.org/04ysmh328 State Institution Ā«Dobrov Institute for Scientific and Technological Potential and Science History Studies of the NAS of UkraineĀ» Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ науково-технічного ŠæŠ¾Ń‚ŠµŠ½Ń†Ń–Š°Š»Ńƒ та історії науки ім. Š“. М. Доброва ŠŠŠ України»'),
(104080, 'https://ror.org/04crh2b66', 'fr', 1, 'https://ror.org/04crh2b66 Institut des MatƩriaux Materials Institute'),
(104081, 'https://ror.org/039kwqk96', 'en', 1, 'https://ror.org/039kwqk96 Long Term Ecological Research Network'),
(104082, 'https://ror.org/014khrd35', 'en', 1, 'https://ror.org/014khrd35 Naval Meteorology and Oceanography Command'),
(104083, 'https://ror.org/03zxjdk07', 'en', 1, 'https://ror.org/03zxjdk07 Saxon Academy of Sciences and Humanities in Leipzig SƤchsische Akademie der Wissenschaften zu Leipzig'),
(104084, 'https://ror.org/02jb60a57', 'en', 1, 'https://ror.org/02jb60a57 Centre of Social and Psychological Sciences of the Slovak Academy of Sciences Centrum spoločenských a psychologických vied SlovenskĆ” akadĆ©mia vied'),
(104085, 'https://ror.org/01ss3xk05', 'en', 1, 'https://ror.org/01ss3xk05 National University of Science and Technology'),
(104086, 'https://ror.org/04hwn5841', 'en', 1, 'https://ror.org/04hwn5841 Nusmetics Pte Ltd (Singapore)'),
(104087, 'https://ror.org/05txewa23', 'en', 1, 'https://ror.org/05txewa23 Okehampton Hospital'),
(104088, 'https://ror.org/03a976s92', 'en', 1, 'https://ror.org/03a976s92 Cedar Creek Ecosystem Science Reserve'),
(104089, 'https://ror.org/036s4j728', 'en', 1, 'https://ror.org/036s4j728 Federal College of Animal Health and Production Technology Ibadan'),
(104090, 'https://ror.org/059zr1469', 'fr', 1, 'https://ror.org/059zr1469 Lexicons, Texts, Speeches, Dictionaries Lexiques, Textes, Discours, Dictionnaires'),
(104091, 'https://ror.org/03d7sax13', 'en', 1, 'https://ror.org/03d7sax13 South Central Minzu University äø­å—ę°‘ę—å¤§å­¦'),
(104092, 'https://ror.org/03trvqr13', 'en', 1, 'https://ror.org/03trvqr13 Victor Chang Cardiac Research Institute'),
(104093, 'https://ror.org/05y03jg42', 'en', 1, 'https://ror.org/05y03jg42 Exmouth Hospital'),
(104094, 'https://ror.org/00yfma824', 'fr', 1, 'https://ror.org/00yfma824 UniversitƩ AndrƩ Salifou'),
(104095, 'https://ror.org/001emy730', 'en', 1, 'https://ror.org/001emy730 Embry-Riddle Aeronautical University Daytona Beach Florida Campus'),
(104096, 'https://ror.org/038w5kx24', 'es', 1, 'https://ror.org/038w5kx24 Universidad PolitƩcnica de Otzolotepec'),
(104097, 'https://ror.org/02c1myh82', 'en', 1, 'https://ror.org/02c1myh82 National Science and Technology Commission'),
(104098, 'https://ror.org/028rq5v79', 'en', 1, 'https://ror.org/028rq5v79 Institutul Național de Cercetare - Dezvoltare Ć®n Informatică ICI București National Institute for Research and Development in Informatics - ICI Bucharest'),
(104099, 'https://ror.org/048c8ew36', 'id', 1, 'https://ror.org/048c8ew36 Mercu Buana University of Yogyakarta Universitas Mercu Buana Yogyakarta'),
(104100, 'https://ror.org/01v2x9m21', 'en', 1, 'https://ror.org/01v2x9m21 Baqai Medical University ŲØŁ‚Ų§Ų¦ŪŒ Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(104101, 'https://ror.org/04pmg2p90', 'en', 1, 'https://ror.org/04pmg2p90 Zhangjiang Laboratory å¼ ę±Ÿå®žéŖŒå®¤'),
(104102, 'https://ror.org/05jet6f92', 'fr', 1, 'https://ror.org/05jet6f92 Centre de Recherche de Droit International PrivƩ et du Commerce International'),
(104103, 'https://ror.org/05cczs510', 'en', 0, 'https://ror.org/05cczs510 Ukrainian Medical Stomatological Academy Š£ŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń ŃŃ‚Š¾Š¼Š°Ń‚Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° меГична стоматологічна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(104104, 'https://ror.org/04e5av293', 'en', 1, 'https://ror.org/04e5av293 Ministry of Mines खान ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(104105, 'https://ror.org/017qtjx43', 'fr', 1, 'https://ror.org/017qtjx43 Laboratoire Population Environnement DƩveloppement Population Environment Development Laboratory'),
(104106, 'https://ror.org/01mvc0z38', 'tr', 1, 'https://ror.org/01mvc0z38 İzmir Akademi Derneği'),
(104107, 'https://ror.org/05ng8e884', 'en', 1, 'https://ror.org/05ng8e884 Institute of Economics Magyar TudomƔnyos AkadƩmia KƶzgazdasƔgtudomƔnyi IntƩzet'),
(104108, 'https://ror.org/01sq4yt06', 'en', 1, 'https://ror.org/01sq4yt06 59th Medical Wing'),
(104109, 'https://ror.org/000peaf50', 'en', 1, 'https://ror.org/000peaf50 Image Insight Inc. (United States)'),
(104110, 'https://ror.org/0472vpe75', 'en', 1, 'https://ror.org/0472vpe75 Mukuba University'),
(104111, 'https://ror.org/02dbwrk72', 'en', 1, 'https://ror.org/02dbwrk72 United States Naval Medical Research Unit SOUTH'),
(104112, 'https://ror.org/04rdbcq08', 'fr', 1, 'https://ror.org/04rdbcq08 Mobilities, Planning, Transport, Risks and Society MobilitƩs, AmƩnagement, Transports, Risques et SociƩtƩ'),
(104113, 'https://ror.org/01r159865', 'en', 1, 'https://ror.org/01r159865 "Silk Road" International University of Tourism and Cultural Heritage'),
(104114, 'https://ror.org/04w12t635', 'en', 1, 'https://ror.org/04w12t635 Mokhuri Oriental Medicine Hospital ėŖØģ»¤ė¦¬ķ•œė°©ė³‘ģ›'),
(104115, 'https://ror.org/006e1h504', 'es', 1, 'https://ror.org/006e1h504 Pontificia Universidad Católica del Ecuador Sede Manabí'),
(104116, 'https://ror.org/00k8k8t47', 'en', 1, 'https://ror.org/00k8k8t47 Namangan Davlat Universiteti Namangan State University'),
(104117, 'https://ror.org/0281dp749', 'en', 1, 'https://ror.org/0281dp749 Helmholtz Association of German Research Centres Helmholtz-Gemeinschaft Deutscher Forschungszentren'),
(104118, 'https://ror.org/02ag4yb46', 'en', 1, 'https://ror.org/02ag4yb46 North Sea Transition Authority'),
(104119, 'https://ror.org/007gp5s15', 'en', 0, 'https://ror.org/007gp5s15 Kumamoto Chuo Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šē†Šęœ¬äø­å¤®ē—…é™¢'),
(104120, 'https://ror.org/01dh9vr61', 'en', 1, 'https://ror.org/01dh9vr61 Office of Naval Intelligence'),
(104121, 'https://ror.org/00angvn73', 'en', 1, 'https://ror.org/00angvn73 BiofyzikĆ”lnĆ­ Ćŗstav AV ČR BiofyzikĆ”lnĆ­ Ćŗstav AV ČR, v. v. i. BiofyzikĆ”lnĆ­ Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce Czech Academy of Sciences, Institute of Biophysics'),
(104122, 'https://ror.org/03chr2715', 'en', 1, 'https://ror.org/03chr2715 Colorado Geological Survey'),
(104123, 'https://ror.org/02heb2n75', 'en', 1, 'https://ror.org/02heb2n75 Ministry of Innovation, Science and Technology'),
(104124, 'https://ror.org/029e6qe04', 'en', 1, 'https://ror.org/029e6qe04 LMU Open Science Center'),
(104125, 'https://ror.org/00zc2xc51', 'en', 1, 'https://ror.org/00zc2xc51 Royal Perth Hospital'),
(104126, 'https://ror.org/05gpvde20', 'en', 1, 'https://ror.org/05gpvde20 Royal Prince Alfred Hospital'),
(104127, 'https://ror.org/00m89dr11', 'fr', 1, 'https://ror.org/00m89dr11 Ɖcole Nationale SupĆ©rieure Maritime المدرسة_Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©_Ų§Ł„Ų¹Ł„ŁŠŲ§_Ł„Ł„ŲØŲ­Ų±ŁŠŲ©'),
(104128, 'https://ror.org/03aqyvf83', 'en', 1, 'https://ror.org/03aqyvf83 Steno Diabetes Center North Jutland'),
(104129, 'https://ror.org/042jzp908', 'en', 1, 'https://ror.org/042jzp908 Phasecraft Ltd. Phasecraft Ltd. (United Kingdom)'),
(104130, 'https://ror.org/02zda6x08', 'en', 1, 'https://ror.org/02zda6x08 Carl R. Darnall Army Medical Center'),
(104131, 'https://ror.org/0290qyp66', 'en', 1, 'https://ror.org/0290qyp66 Ochsner Medical Center'),
(104132, 'https://ror.org/0477akv50', 'en', 1, 'https://ror.org/0477akv50 Makumbusho ya Taifa la Tanzania National Museum of Tanzania'),
(104133, 'https://ror.org/018jgg490', 'en', 1, 'https://ror.org/018jgg490 Kanazawa Municipal Hospital 金沢市立病院'),
(104134, 'https://ror.org/01kbxwc15', 'en', 1, 'https://ror.org/01kbxwc15 Imam Maturidi International Scientific Research Center'),
(104135, 'https://ror.org/034k8m376', 'id', 1, 'https://ror.org/034k8m376 Politeknik Statistika STIS'),
(104136, 'https://ror.org/0405mnx93', 'en', 1, 'https://ror.org/0405mnx93 Texas Tech University'),
(104137, 'https://ror.org/053gv9453', 'en', 1, 'https://ror.org/053gv9453 Department for Environment and Water'),
(104138, 'https://ror.org/00zxcjq81', 'en', 1, 'https://ror.org/00zxcjq81 European Powder Metallugy Association'),
(104139, 'https://ror.org/05k0s5494', 'en', 1, 'https://ror.org/05k0s5494 Children''s Hospital at Westmead'),
(104140, 'https://ror.org/0076sm922', 'en', 1, 'https://ror.org/0076sm922 Honiton Hospital'),
(104141, 'https://ror.org/01697cy46', 'en', 1, 'https://ror.org/01697cy46 Naval Supply Systems Command'),
(104142, 'https://ror.org/02vcqg248', 'en', 1, 'https://ror.org/02vcqg248 ARC Centre of Excellence for Mathematical and Statistical Frontiers'),
(104143, 'https://ror.org/0244cgm12', 'en', 1, 'https://ror.org/0244cgm12 TrĘ°į»ng ĐẔi Hį»c Vinh Vinh University'),
(104144, 'https://ror.org/01sbda189', 'en', 1, 'https://ror.org/01sbda189 Central Library of the Slovak Academy of Sciences ÚstrednÔ knižnica Slovenskej akadémie vied'),
(104145, 'https://ror.org/03sxgeg61', 'en', 1, 'https://ror.org/03sxgeg61 GenesisCare'),
(104146, 'https://ror.org/04bc5j847', 'id', 1, 'https://ror.org/04bc5j847 STMIK Methodist Binjai'),
(104147, 'https://ror.org/00v0g9w49', 'es', 1, 'https://ror.org/00v0g9w49 Andalusian Earth Sciences Institute Instituto Andaluz de Ciencias de la Tierra'),
(104148, 'https://ror.org/02vn54r74', 'en', 1, 'https://ror.org/02vn54r74 Lutsk National Technical University Łucki Narodowy Uniwersytet Techniczny Š›ŃƒŃ†ŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š›ŃƒŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104149, 'https://ror.org/04cyjwv12', 'en', 1, 'https://ror.org/04cyjwv12 Kogi State University, Kabba'),
(104150, 'https://ror.org/01m4er335', 'en', 1, 'https://ror.org/01m4er335 Nuremberg Zoo Tiergarten Nürnberg'),
(104151, 'https://ror.org/03gqzdg87', 'en', 1, 'https://ror.org/03gqzdg87 Steno Diabetes Center Copenhagen'),
(104152, 'https://ror.org/03jrh3t05', 'en', 1, 'https://ror.org/03jrh3t05 Royal Devon and Exeter Hospital'),
(104153, 'https://ror.org/04shwth06', 'en', 1, 'https://ror.org/04shwth06 Centre Universitaire de Maghnia University Centre of Maghnia Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł…ŲŗŁ†ŁŠŲ©'),
(104154, 'https://ror.org/0006cvt76', 'en', 1, 'https://ror.org/0006cvt76 Griffith College'),
(104155, 'https://ror.org/01s91ey96', 'en', 1, 'https://ror.org/01s91ey96 Renaissance Computing Institute'),
(104156, 'https://ror.org/00d2z7680', 'fr', 1, 'https://ror.org/00d2z7680 Centre de droit europƩen'),
(104157, 'https://ror.org/05v4dza81', 'id', 1, 'https://ror.org/05v4dza81 Syiah Kuala University Universitas Syiah Kuala'),
(104158, 'https://ror.org/04v9m3h35', 'en', 1, 'https://ror.org/04v9m3h35 ARC Centre of Excellence for All-sky Astrophysics'),
(104159, 'https://ror.org/04ff7hb94', 'en', 1, 'https://ror.org/04ff7hb94 Seaton Hospital'),
(104160, 'https://ror.org/05r94ab93', 'en', 1, 'https://ror.org/05r94ab93 Midway University'),
(104161, 'https://ror.org/01r6gjy48', 'en', 1, 'https://ror.org/01r6gjy48 HauHau Research HauHau Research (New Zealand)'),
(104162, 'https://ror.org/02ncy5p18', 'en', 1, 'https://ror.org/02ncy5p18 Research on healthcare performance'),
(104163, 'https://ror.org/02qynva45', 'en', 1, 'https://ror.org/02qynva45 Asociatia TEAM4Excellence TEAM4Excellence Association'),
(104164, 'https://ror.org/05s33m053', 'en', 1, 'https://ror.org/05s33m053 St. Francis Institute of Management and Research'),
(104165, 'https://ror.org/03kz56x72', 'en', 1, 'https://ror.org/03kz56x72 Space Development Agency'),
(104166, 'https://ror.org/02y81ys86', 'en', 1, 'https://ror.org/02y81ys86 Bureau of Naval Personnel'),
(104167, 'https://ror.org/04t2mbr50', 'en', 1, 'https://ror.org/04t2mbr50 S. G. Balekundri Institute of Technology Belagavi'),
(104168, 'https://ror.org/00vaxb994', 'en', 1, 'https://ror.org/00vaxb994 Sylhet Engineering College'),
(104169, 'https://ror.org/056d91m78', 'en', 1, 'https://ror.org/056d91m78 U.S. Army Aviation and Missile Command'),
(104170, 'https://ror.org/003ene322', 'fr', 1, 'https://ror.org/003ene322 European Research Laboratory for Rheumatoid Polyarthritis Laboratoire de recherche européen pour la polyarthrite rhumatoïde'),
(104171, 'https://ror.org/04dq4wh71', 'es', 1, 'https://ror.org/04dq4wh71 Centro de ToxicologĆ­a y Biomedicina'),
(104172, 'https://ror.org/03jqsmn45', 'fr', 1, 'https://ror.org/03jqsmn45 Asemmas n unadi deg tutlayt d yidles n tmaziɣt Centre de recherche en langue et culture amazighes'),
(104173, 'https://ror.org/03j28nn17', 'en', 1, 'https://ror.org/03j28nn17 Delta State Polytechnic Ogwashi-Uku'),
(104174, 'https://ror.org/03cw9y275', 'en', 1, 'https://ror.org/03cw9y275 Assumption College'),
(104175, 'https://ror.org/03kpeyf37', 'en', 1, 'https://ror.org/03kpeyf37 Trinity University Trinity University, Yaba, Lagos'),
(104176, 'https://ror.org/03nwvqf55', 'en', 1, 'https://ror.org/03nwvqf55 SƔrospatak Reformed Theological University SƔrospataki ReformƔtus HittudomƔnyi Egyetem'),
(104177, 'https://ror.org/05rrfpt58', 'en', 1, 'https://ror.org/05rrfpt58 Ahi Evran University Ahi Evran Üniversitesi'),
(104178, 'https://ror.org/00n1gdp39', 'en', 1, 'https://ror.org/00n1gdp39 Central Coastal Agricultural Research Institute'),
(104179, 'https://ror.org/02n14ez29', 'en', 1, 'https://ror.org/02n14ez29 Naval Medical Center San Diego'),
(104180, 'https://ror.org/05k000j23', 'fr', 1, 'https://ror.org/05k000j23 Laboratoire de MĆ©canique et d''EnergĆ©tique d''Ɖvry'),
(104181, 'https://ror.org/03esr8826', 'en', 1, 'https://ror.org/03esr8826 Lake Biwa Museum ę»‹č³€ēœŒē«‹ēµē¶ę¹–åšē‰©é¤Ø'),
(104182, 'https://ror.org/03taz7m60', 'en', 1, 'https://ror.org/03taz7m60 Universidad del Sur de California University of Southern California UniversitƩ de Californie du Sud'),
(104183, 'https://ror.org/05gvja138', 'en', 1, 'https://ror.org/05gvja138 Centenary Institute'),
(104184, 'https://ror.org/00zv91802', 'no_lang_code', 1, 'https://ror.org/00zv91802 Science Applications International Corporation (United States)'),
(104185, 'https://ror.org/01ept9717', 'pt', 1, 'https://ror.org/01ept9717 EcoFaxina Institute Instituto EcoFaxina'),
(104186, 'https://ror.org/016899r71', 'en', 1, 'https://ror.org/016899r71 Peter Doherty Institute'),
(104187, 'https://ror.org/01kvxx237', 'fr', 1, 'https://ror.org/01kvxx237 FƩdƩration de Recherche FCLAB'),
(104188, 'https://ror.org/052wj6v68', 'en', 1, 'https://ror.org/052wj6v68 Griffith College Limerick'),
(104189, 'https://ror.org/02khkrx67', 'id', 1, 'https://ror.org/02khkrx67 Universitas Buana Perjuangan Karawang'),
(104190, 'https://ror.org/01hq93e28', 'fr', 1, 'https://ror.org/01hq93e28 Laboratoire de Physicochimie des PolymĆØres et des Interfaces Laboratory of Physical Chemistry of Polymers and Interfaces'),
(104191, 'https://ror.org/03gz5yh89', 'id', 1, 'https://ror.org/03gz5yh89 Universitas Hasyim Asy''ari'),
(104192, 'https://ror.org/0542gd495', 'en', 1, 'https://ror.org/0542gd495 Hellenic Agricultural Organization - DIMITRA Ī•Ī›Ī›Ī—ĪĪ™ĪšĪŸĪ£ Ī“Ī•Ī©Ī”Ī“Ī™ĪšĪŸĪ£ ĪŸĪ”Ī“Ī‘ĪĪ™Ī£ĪœĪŸĪ£ - Ī”Ī—ĪœĪ—Ī¤Ī”Ī‘'),
(104193, 'https://ror.org/05yd19040', 'fr', 1, 'https://ror.org/05yd19040 Higher institute for environmental engineering and management - ISIGE Institut SupĆ©rieur d''IngĆ©nierie et Gestion de l''Environnement - ISIGE Mines Paris, PSL University, Higher institute for environmental engineering and management (ISIGE) Mines Paris, UniversitĆ© PSL, Institut SupĆ©rieur d’IngĆ©nierie et Gestion de l''Environnement (ISIGE)'),
(104194, 'https://ror.org/05813w841', 'fr', 1, 'https://ror.org/05813w841 Ɖcole Nationale SupĆ©rieure de MĆ©canique et des Microtechniques'),
(104195, 'https://ror.org/04399kt07', 'en', 1, 'https://ror.org/04399kt07 Takasaki Advanced Radiation Research Institute é«˜å“Žé‡å­åæœē”Øē ”ē©¶ę‰€'),
(104196, 'https://ror.org/043jp9q35', 'en', 1, 'https://ror.org/043jp9q35 Islamic University of Science and Technology, Kashmir'),
(104197, 'https://ror.org/05ya3ee02', 'en', 1, 'https://ror.org/05ya3ee02 David Grant USAF Medical Center'),
(104198, 'https://ror.org/054m2wy71', 'en', 1, 'https://ror.org/054m2wy71 Smart University College for Modern Education Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų°ŁƒŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų­ŲÆŁŠŲ«'),
(104199, 'https://ror.org/01yteb360', 'en', 1, 'https://ror.org/01yteb360 Delta State University of Science and Technology Ozoro'),
(104200, 'https://ror.org/040qyzk67', 'en', 1, 'https://ror.org/040qyzk67 Universidad de Camagüey University of Camagüey'),
(104201, 'https://ror.org/048rzsb27', 'id', 1, 'https://ror.org/048rzsb27 Universitas Imelda Medan'),
(104202, 'https://ror.org/04v022284', 'en', 1, 'https://ror.org/04v022284 Osun State College of Education, Ila-Orangun'),
(104203, 'https://ror.org/02erxsp04', 'en', 1, 'https://ror.org/02erxsp04 Animal Production Research Centre'),
(104204, 'https://ror.org/03n0zb450', 'fr', 1, 'https://ror.org/03n0zb450 Institut National de Recherches en SantĆ© Publique National Institute of Public Health Research المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„ŲØŲ­ŁˆŲ« الصحة العامة'),
(104205, 'https://ror.org/007z9s698', 'en', 1, 'https://ror.org/007z9s698 Nepal Mediciti Hospital'),
(104206, 'https://ror.org/05ws4bn80', 'pl', 1, 'https://ror.org/05ws4bn80 Polskie Towarzystwo Teologiczne'),
(104207, 'https://ror.org/01hzj5y23', 'en', 1, 'https://ror.org/01hzj5y23 Naval Health Research Center'),
(104208, 'https://ror.org/02htvcm84', 'en', 1, 'https://ror.org/02htvcm84 Space Delta 9'),
(104209, 'https://ror.org/006vyxm49', 'en', 1, 'https://ror.org/006vyxm49 Thomas More University Biology Field Station'),
(104210, 'https://ror.org/01s57k749', 'en', 1, 'https://ror.org/01s57k749 Singapore University of Social Sciences ę–°åŠ å”ē¤¾ē§‘å¤§å­¦'),
(104211, 'https://ror.org/010g47133', 'en', 1, 'https://ror.org/010g47133 Ipswich Hospital'),
(104212, 'https://ror.org/01pt68m88', 'en', 1, 'https://ror.org/01pt68m88 Love Wildlife Foundation'),
(104213, 'https://ror.org/00e0c0q64', 'en', 0, 'https://ror.org/00e0c0q64 Indiana University – Purdue University Columbus'),
(104214, 'https://ror.org/03yxgmm62', 'en', 1, 'https://ror.org/03yxgmm62 Fremantle Hospital'),
(104215, 'https://ror.org/00znex860', 'en', 1, 'https://ror.org/00znex860 Academia Naval de los Estados Unidos AcadƩmie Navale d''Annapolis United States Naval Academy'),
(104216, 'https://ror.org/01d0bkz51', 'no_lang_code', 1, 'https://ror.org/01d0bkz51 Tianjin Chengjian University å¤©ę“„åŸŽå»ŗå¤§å­¦'),
(104217, 'https://ror.org/0394hvg14', 'en', 1, 'https://ror.org/0394hvg14 Hogrefe Publishing GmbH Hogrefe Publishing GmbH (Germany)'),
(104218, 'https://ror.org/02gyw3498', 'en', 1, 'https://ror.org/02gyw3498 P.E.L.C. - Private Entomological Laboratory and Collection'),
(104219, 'https://ror.org/006vyay97', 'en', 1, 'https://ror.org/006vyay97 Lions Eye Institute'),
(104220, 'https://ror.org/02gs3vg83', 'en', 1, 'https://ror.org/02gs3vg83 ARC Centre of Excellence for Coherent X-ray Science'),
(104221, 'https://ror.org/05e4f1b55', 'en', 1, 'https://ror.org/05e4f1b55 Bionics Institute'),
(104222, 'https://ror.org/03x5gwj59', 'en', 1, 'https://ror.org/03x5gwj59 Geo-Environmental Protection Center äø€čˆ¬ē¤¾å›£ę³•äŗŗåœŸå£Œē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(104223, 'https://ror.org/03h7qq074', 'en', 1, 'https://ror.org/03h7qq074 Slovak Academy of Sciences SlovenskƔ AkadƩmia Vied SzlovƔk TudomƔnyos AkadƩmia'),
(104224, 'https://ror.org/01pxchq54', 'en', 1, 'https://ror.org/01pxchq54 Parlement du Canada Parliament of Canada'),
(104225, 'https://ror.org/0206wcs06', 'en', 1, 'https://ror.org/0206wcs06 Urawa Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ¦å’ŒåŒ»åø«ä¼š'),
(104226, 'https://ror.org/03re3pg25', 'fr', 1, 'https://ror.org/03re3pg25 Institut sur la nutrition et les aliments fonctionnels (INAF) Institute of Nutrition and Functional Foods'),
(104227, 'https://ror.org/048ar9n68', 'en', 1, 'https://ror.org/048ar9n68 Public Buildings Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…¬å…±å»ŗēÆ‰å”ä¼š'),
(104228, 'https://ror.org/00padv491', 'en', 1, 'https://ror.org/00padv491 The Cell Science Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗē“°čƒžē§‘å­¦ē ”ē©¶č²”å›£'),
(104229, 'https://ror.org/054z15n55', 'en', 1, 'https://ror.org/054z15n55 United States Naval Special Warfare Command'),
(104230, 'https://ror.org/03y4a4v35', 'id', 1, 'https://ror.org/03y4a4v35 Universitas PGRI Silampari'),
(104231, 'https://ror.org/057a09f21', 'es', 1, 'https://ror.org/057a09f21 Instituto para la Conservación de Especies Amenazadas'),
(104232, 'https://ror.org/008jam490', 'en', 1, 'https://ror.org/008jam490 Japan Paint Manufacturers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å”—ę–™å·„ę„­ä¼š'),
(104233, 'https://ror.org/04gkha250', 'pt', 1, 'https://ror.org/04gkha250 Universidade SENAI CIMATEC'),
(104234, 'https://ror.org/04hsvrj60', 'en', 1, 'https://ror.org/04hsvrj60 Arkansas Game and Fish Commission'),
(104235, 'https://ror.org/0418h6h65', 'en', 0, 'https://ror.org/0418h6h65 Chemical Insights Research Institute'),
(104236, 'https://ror.org/024bncw68', 'en', 1, 'https://ror.org/024bncw68 Tochigi International Association å…¬ē›Šč²”å›£ę³•äŗŗę ƒęœØēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(104237, 'https://ror.org/02cq5yc29', 'no_lang_code', 1, 'https://ror.org/02cq5yc29 Jacobs (Spain)'),
(104238, 'https://ror.org/003aydv21', 'en', 1, 'https://ror.org/003aydv21 Iwate Prefectural Ichinohe Hospital å²©ę‰‹ēœŒē«‹äø€ęˆøē—…é™¢'),
(104239, 'https://ror.org/00mp8yb15', 'en', 1, 'https://ror.org/00mp8yb15 Kawasaki International Association å…¬ē›Šč²”å›£ę³•äŗŗå·å“Žåø‚å›½éš›äŗ¤ęµå”ä¼š'),
(104240, 'https://ror.org/0127z7r15', 'en', 1, 'https://ror.org/0127z7r15 Saibalaji International Institute of Management Sciences Pune'),
(104241, 'https://ror.org/03k2z9h56', 'fr', 1, 'https://ror.org/03k2z9h56 Presses Universitaires de Franche-ComtƩ'),
(104242, 'https://ror.org/04x6yts59', 'en', 1, 'https://ror.org/04x6yts59 United Lutheran Seminary'),
(104243, 'https://ror.org/03njxtn49', 'en', 1, 'https://ror.org/03njxtn49 Japan Association of Charitable Organizations å…¬ē›Šč²”å›£ę³•äŗŗå…¬ē›Šę³•äŗŗå”ä¼š'),
(104244, 'https://ror.org/01yjngp91', 'en', 1, 'https://ror.org/01yjngp91 Japan Bridge Engineering Center äø€čˆ¬č²”å›£ę³•äŗŗę©‹ę¢čŖæęŸ»ä¼š'),
(104245, 'https://ror.org/01659fs09', 'en', 1, 'https://ror.org/01659fs09 Sunstar Foundation äø€čˆ¬č²”å›£ę³•äŗŗć‚µćƒ³ć‚¹ć‚æćƒ¼č²”å›£'),
(104246, 'https://ror.org/05enegw32', 'en', 1, 'https://ror.org/05enegw32 Niigata Prefectural Institute of Environmental Radiation Monitoring ę–°ę½ŸēœŒę”¾å°„ē·šē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(104247, 'https://ror.org/02yg9kp93', 'en', 1, 'https://ror.org/02yg9kp93 Akita Prefectural Police ē§‹ē”°ēœŒč­¦åÆŸ'),
(104248, 'https://ror.org/00cbts945', 'en', 1, 'https://ror.org/00cbts945 Zhengzhou Normal University'),
(104249, 'https://ror.org/0570csa90', 'en', 1, 'https://ror.org/0570csa90 General Hanamaki Hospital å…¬ē›Šč²”å›£ę³•äŗŗē·åˆčŠ±å·»ē—…é™¢'),
(104250, 'https://ror.org/0399dfq26', 'en', 1, 'https://ror.org/0399dfq26 United States Pacific Air Forces'),
(104251, 'https://ror.org/012wfs048', 'en', 1, 'https://ror.org/012wfs048 United States Air Forces in Europe – Air Forces Africa'),
(104252, 'https://ror.org/032skn216', 'en', 1, 'https://ror.org/032skn216 Kanazawa Seiryo University Women''s Junior College é‡‘ę²¢ę˜ŸēØœå¤§å­¦å„³å­ēŸ­ęœŸå¤§å­¦éƒØ'),
(104253, 'https://ror.org/01tn0em45', 'en', 1, 'https://ror.org/01tn0em45 Digital Content Association of Japan äø€čˆ¬č²”å›£ę³•äŗŗćƒ‡ć‚øć‚æćƒ«ć‚³ćƒ³ćƒ†ćƒ³ćƒ„å”ä¼š'),
(104254, 'https://ror.org/02z497645', 'en', 1, 'https://ror.org/02z497645 Federal College of Education, Eha-Amufu'),
(104255, 'https://ror.org/00smpyt26', 'en', 1, 'https://ror.org/00smpyt26 The Japanese Society of Fisheries Science å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“ē”£å­¦ä¼š'),
(104256, 'https://ror.org/03p0f6497', 'en', 1, 'https://ror.org/03p0f6497 Blood Products Research Organization å…¬ē›Šč²”å›£ę³•äŗŗč”€ę¶²č£½å‰¤čŖæęŸ»ę©Ÿę§‹'),
(104257, 'https://ror.org/02ha2pr67', 'en', 1, 'https://ror.org/02ha2pr67 Public Welfare Institute of Scientific Research Foundation äø€čˆ¬č²”å›£ę³•äŗŗę°‘ē”Ÿē§‘å­¦å”ä¼š'),
(104258, 'https://ror.org/05p1kkx35', 'en', 1, 'https://ror.org/05p1kkx35 Ellison Institute of Technology'),
(104259, 'https://ror.org/014pr4r77', 'en', 1, 'https://ror.org/014pr4r77 Japan Wood Protection Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęœØęäæå­˜å”ä¼š'),
(104260, 'https://ror.org/02tc3qm58', 'en', 1, 'https://ror.org/02tc3qm58 TechnologickƩ centrum Praha Technology Centre Prague'),
(104261, 'https://ror.org/05kqr5637', 'en', 1, 'https://ror.org/05kqr5637 The Association for Promotion of Advanced Broadcasting Services äø€čˆ¬ē¤¾å›£ę³•äŗŗę”¾é€ć‚µćƒ¼ćƒ“ć‚¹é«˜åŗ¦åŒ–ęŽØé€²å”ä¼š'),
(104262, 'https://ror.org/034x75m33', 'en', 1, 'https://ror.org/034x75m33 Yamagata Prefectural Inland Water Fisheries Experiment Station å±±å½¢ēœŒå†…ę°“é¢ę°“ē”£ē ”ē©¶ę‰€'),
(104263, 'https://ror.org/01w2xgk13', 'en', 1, 'https://ror.org/01w2xgk13 Puducherry Technological University'),
(104264, 'https://ror.org/052p6n135', 'en', 1, 'https://ror.org/052p6n135 Kanagawa Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗē„žå„ˆå·ēœŒēœ‹č­·å”ä¼š'),
(104265, 'https://ror.org/04gzb3214', 'en', 1, 'https://ror.org/04gzb3214 Yamazaki University of Animal Health Technology ćƒ¤ćƒžć‚¶ć‚­å‹•ē‰©ēœ‹č­·å¤§å­¦'),
(104266, 'https://ror.org/03pnxry67', 'en', 1, 'https://ror.org/03pnxry67 Kawasaki Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗå·å“Žåø‚ēœ‹č­·å”ä¼š'),
(104267, 'https://ror.org/03gnqwy84', 'en', 1, 'https://ror.org/03gnqwy84 Japan Association for Promotion of Educational Technology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę•™č‚²ęƒ…å ±åŒ–ęŒÆčˆˆä¼š'),
(104268, 'https://ror.org/03f20qb41', 'en', 1, 'https://ror.org/03f20qb41 School of Planning and Architecture, Vijayawada'),
(104269, 'https://ror.org/00fsjcs42', 'en', 1, 'https://ror.org/00fsjcs42 Japan Industrial Designers'' Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¤ćƒ³ćƒ€ć‚¹ćƒˆćƒŖć‚¢ćƒ«ćƒ‡ć‚¶ć‚¤ćƒŠćƒ¼å”ä¼š'),
(104270, 'https://ror.org/0130jk839', 'en', 1, 'https://ror.org/0130jk839 University Hospitals of Cleveland'),
(104271, 'https://ror.org/013yaf259', 'en', 1, 'https://ror.org/013yaf259 International Institute of Food Technology and Engineering'),
(104272, 'https://ror.org/037405308', 'en', 1, 'https://ror.org/037405308 Queensland Government'),
(104273, 'https://ror.org/00d7vgm92', 'en', 1, 'https://ror.org/00d7vgm92 Japan Electric Power Information Center, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–é›»åŠ›čŖæęŸ»ä¼š'),
(104274, 'https://ror.org/01y81a911', 'en', 1, 'https://ror.org/01y81a911 Missenyi District Council'),
(104275, 'https://ror.org/003gxqe71', 'en', 1, 'https://ror.org/003gxqe71 Japan Copper Development Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬éŠ…ć‚»ćƒ³ć‚æćƒ¼'),
(104276, 'https://ror.org/036ptw795', 'en', 1, 'https://ror.org/036ptw795 Japan Waste MANAGEMENT&3R Reserch Foundation å…¬ē›Šč²”å›£ę³•äŗŗå»ƒę£„ē‰©ćƒ»3R研究貔団'),
(104277, 'https://ror.org/0120cx869', 'en', 1, 'https://ror.org/0120cx869 Earth Science Institute of the Slovak Academy of Sciences Ústav vied o Zemi Slovenskej akadémie vied'),
(104278, 'https://ror.org/01bj4fd12', 'fr', 1, 'https://ror.org/01bj4fd12 Laboratoire de Biologie et ModƩlisation de la Cellule'),
(104279, 'https://ror.org/01nd4jr17', 'en', 1, 'https://ror.org/01nd4jr17 University of Saba Region Ų¬Ų§Ł…Ų¹Ų© Ų§Ł‚Ł„ŁŠŁ… Ų³ŲØŲ£'),
(104280, 'https://ror.org/01qm4sd11', 'en', 1, 'https://ror.org/01qm4sd11 International Tourism Center of Japan äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›č¦³å…‰ć‚µćƒ¼ćƒ“ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(104281, 'https://ror.org/04rmr1278', 'en', 1, 'https://ror.org/04rmr1278 Research Institute for Advancement of Living Standards å…¬ē›Šč²”å›£ę³•äŗŗé€£åˆē·åˆē”Ÿę“»é–‹ē™ŗē ”ē©¶ę‰€'),
(104282, 'https://ror.org/03xsr4q95', 'en', 1, 'https://ror.org/03xsr4q95 Japan Organics Recycling Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęœ‰ę©Ÿč³‡ęŗå”ä¼š'),
(104283, 'https://ror.org/025z7v781', 'es', 1, 'https://ror.org/025z7v781 Sociedad Micológica de Gran Canaria'),
(104284, 'https://ror.org/00vfkh368', 'es', 1, 'https://ror.org/00vfkh368 Fundación I+D Software Libre'),
(104285, 'https://ror.org/056x4q282', 'en', 1, 'https://ror.org/056x4q282 Japanese Society of Animal Science å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē•œē”£å­¦ä¼š'),
(104286, 'https://ror.org/00w76ga53', 'en', 1, 'https://ror.org/00w76ga53 Nippon International Cooperation for Community Development å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›½éš›ę°‘é–“å”åŠ›ä¼š'),
(104287, 'https://ror.org/05bgxxb69', 'en', 1, 'https://ror.org/05bgxxb69 CSIRO Environment'),
(104288, 'https://ror.org/04kmb0727', 'en', 1, 'https://ror.org/04kmb0727 Stem Cell Evaluation Technology Research Association å¹¹ē“°čƒžč©•ä¾”åŸŗē›¤ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(104289, 'https://ror.org/03qvxc742', 'en', 1, 'https://ror.org/03qvxc742 Jhargram Raj College'),
(104290, 'https://ror.org/03ygpq003', 'en', 1, 'https://ror.org/03ygpq003 Cold Region Port and Harbor Engineering Research Center äø€čˆ¬ē¤¾å›£ę³•äŗŗåÆ’åœ°ęøÆę¹¾ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(104291, 'https://ror.org/05htt1s44', 'en', 1, 'https://ror.org/05htt1s44 Japan Association for Safety of Hazardous Materials äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½å±é™ŗē‰©å®‰å…Øå”ä¼š'),
(104292, 'https://ror.org/04ek39g80', 'en', 1, 'https://ror.org/04ek39g80 National Sanatorium Matuoka Hoyoen å›½ē«‹ē™‚é¤Šę‰€ę¾äø˜äæé¤Šåœ’'),
(104293, 'https://ror.org/0396j7182', 'pl', 1, 'https://ror.org/0396j7182 St. Hedwig Hospital in Trzebnica Szpital im Świętej Jadwigi w Trzebnicy'),
(104294, 'https://ror.org/03pa1rf77', 'en', 1, 'https://ror.org/03pa1rf77 Institute of Metal Research'),
(104295, 'https://ror.org/01wvnp782', 'en', 1, 'https://ror.org/01wvnp782 De Montfort University Kazakhstan Де ŠœŠ¾Š½Ń„орт ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½'),
(104296, 'https://ror.org/02c5kbs29', 'en', 1, 'https://ror.org/02c5kbs29 Misono Gakuen Junior College č–åœ’å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(104297, 'https://ror.org/05xbwdt61', 'en', 1, 'https://ror.org/05xbwdt61 Ibaraki Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗčŒØåŸŽēœŒēœ‹č­·å”ä¼š'),
(104298, 'https://ror.org/00drk6w41', 'en', 1, 'https://ror.org/00drk6w41 Japan Foundation For Emergency Medicine äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę•‘ę€„åŒ»ē™‚č²”å›£'),
(104299, 'https://ror.org/031j7r736', 'en', 1, 'https://ror.org/031j7r736 Akademia Nauk Stosowanych w Bielsku-Białej Bielsko-Biala University of Applied Sciences'),
(104300, 'https://ror.org/023yvt917', 'ca', 1, 'https://ror.org/023yvt917 EURECAT Centre Tecnològic de Catalunya Fundació Eurecat'),
(104301, 'https://ror.org/01rpcwa78', 'en', 1, 'https://ror.org/01rpcwa78 Hajjah University Ų¬Ų§Ł…Ų¹Ų© Ų­Ų¬Ų©'),
(104302, 'https://ror.org/03jdm4e29', 'en', 1, 'https://ror.org/03jdm4e29 United States 6th Fleet United States Naval Forces Europe-Africa'),
(104303, 'https://ror.org/00306vw82', 'en', 1, 'https://ror.org/00306vw82 World Wide Fund for Nature Japan å…¬ē›Šč²”å›£ę³•äŗŗäø–ē•Œč‡Ŗē„¶äæč­·åŸŗé‡‘ć‚øćƒ£ćƒ‘ćƒ³'),
(104304, 'https://ror.org/04kn38436', 'en', 1, 'https://ror.org/04kn38436 Japanese Society of Radiological Technology å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę”¾å°„ē·šęŠ€č”“å­¦ä¼š'),
(104305, 'https://ror.org/03519c477', 'en', 1, 'https://ror.org/03519c477 The Japan Society for Bioscience, Biotechnology, and Agrochemistry å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č¾²čŠøåŒ–å­¦ä¼š'),
(104306, 'https://ror.org/01973x930', 'en', 1, 'https://ror.org/01973x930 United States Department of the Air Force'),
(104307, 'https://ror.org/05sfvzs47', 'en', 1, 'https://ror.org/05sfvzs47 Ministry of Justice, Iran وزارت دادگستری Ų¬Ł…Ł‡ŁˆŲ±ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(104308, 'https://ror.org/04ask4j07', 'en', 1, 'https://ror.org/04ask4j07 The KIRIN Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚­ćƒŖćƒ³ē¦ē„‰č²”å›£'),
(104309, 'https://ror.org/02vver293', 'en', 1, 'https://ror.org/02vver293 Nagano City Education Center é•·é‡Žåø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(104310, 'https://ror.org/02v1r2s82', 'en', 1, 'https://ror.org/02v1r2s82 Naha Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé‚£č¦‡åø‚åŒ»åø«ä¼š'),
(104311, 'https://ror.org/043ga8x09', 'en', 1, 'https://ror.org/043ga8x09 THE Kajima Foundation å…¬ē›Šč²”å›£ę³•äŗŗé¹æå³¶å­¦č”“ęŒÆčˆˆč²”å›£'),
(104312, 'https://ror.org/00tvq5277', 'en', 1, 'https://ror.org/00tvq5277 United States Air Combat Command'),
(104313, 'https://ror.org/000818d46', 'en', 1, 'https://ror.org/000818d46 Hokkaido Industrial Technology Center åŒ—ęµ·é“ē«‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(104314, 'https://ror.org/04cqcs587', 'en', 1, 'https://ror.org/04cqcs587 Japan Association of Specialists in Textiles and Apparel äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č”£ę–™ē®”ē†å”ä¼š'),
(104315, 'https://ror.org/023rb5836', 'en', 1, 'https://ror.org/023rb5836 Japanese Association for Laboratory Animal Science å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å®ŸéØ“å‹•ē‰©å­¦ä¼š'),
(104316, 'https://ror.org/0071pyk24', 'en', 1, 'https://ror.org/0071pyk24 Public Health Research Society Nepal'),
(104317, 'https://ror.org/007w76162', 'en', 1, 'https://ror.org/007w76162 Japan Railway Electrical Engineering Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é“é›»ę°—ęŠ€č”“å”ä¼š'),
(104318, 'https://ror.org/00w3jeh04', 'uk', 1, 'https://ror.org/00w3jeh04 Polissya Institute of Agriculture of National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠŸŠ¾Š»Ń–сся ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(104319, 'https://ror.org/03mnb0t97', 'en', 1, 'https://ror.org/03mnb0t97 SHIN Nihon Kentei Kyokai äø€čˆ¬č²”å›£ę³•äŗŗę–°ę—„ęœ¬ę¤œå®šå”ä¼š'),
(104320, 'https://ror.org/03x5wxe68', 'en', 1, 'https://ror.org/03x5wxe68 The Osaka Community Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£č²”å›£'),
(104321, 'https://ror.org/038rnnj64', 'en', 1, 'https://ror.org/038rnnj64 Kenya National Bureau of Statistics'),
(104322, 'https://ror.org/01xgfwb48', 'en', 1, 'https://ror.org/01xgfwb48 United States Cyberspace Capabilities Center'),
(104323, 'https://ror.org/05f659z64', 'en', 1, 'https://ror.org/05f659z64 Japan Agricultural Development and Extension Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½č¾²ę„­ę”¹č‰Æę™®åŠę”Æę“å”ä¼š'),
(104324, 'https://ror.org/03mg1c955', 'en', 1, 'https://ror.org/03mg1c955 United States Transportation Command'),
(104325, 'https://ror.org/01ep7xn66', 'en', 1, 'https://ror.org/01ep7xn66 TAMA CITY Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤šę‘©åø‚åŒ»åø«ä¼š'),
(104326, 'https://ror.org/03b03vy48', 'en', 1, 'https://ror.org/03b03vy48 Japan Rehabilitation Nursing Association ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ēœ‹č­·å­¦ä¼š'),
(104327, 'https://ror.org/03xqbqb14', 'en', 1, 'https://ror.org/03xqbqb14 Japan Electronics Packaging and Circuits Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»å­å›žč·Æå·„ę„­ä¼š'),
(104328, 'https://ror.org/0161dh580', 'en', 1, 'https://ror.org/0161dh580 Japan Association for Working Environment Measurement å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ä½œę„­ē’°å¢ƒęø¬å®šå”ä¼š'),
(104329, 'https://ror.org/02cyw3861', 'fr', 1, 'https://ror.org/02cyw3861 Observatoire Terre et environnement de Lorraine'),
(104330, 'https://ror.org/02gmprx88', 'it', 1, 'https://ror.org/02gmprx88 Cogentech S.R.L. SocietĆ  Benefit a Socio Unico soggetta all’attivitĆ  di direzione e coordinamento di IFOM - Istituto Fondazione di Oncologia Molecolare ETS Cogentech S.R.L. SocietĆ  Benefit a Socio Unico soggetta all’attivitĆ  di direzione e coordinamento di IFOM - Istituto Fondazione di Oncologia Molecolare ETS (Italy)'),
(104331, 'https://ror.org/04msypa27', 'en', 1, 'https://ror.org/04msypa27 Health and Welfare Information Association äø€čˆ¬č²”å›£ę³•äŗŗäæå„ē¦ē„‰åŗƒå ±å”ä¼š'),
(104332, 'https://ror.org/04263dh80', 'en', 1, 'https://ror.org/04263dh80 Saisyukan Hospital åŒ»ē™‚ę³•äŗŗęøˆč”†é¤Øęøˆč”†é¤Øē—…é™¢'),
(104333, 'https://ror.org/02pjbsb60', 'en', 1, 'https://ror.org/02pjbsb60 The Japan Landslide Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åœ°ć™ć¹ć‚Šå­¦ä¼š'),
(104334, 'https://ror.org/03eyrxr75', 'en', 1, 'https://ror.org/03eyrxr75 Kathmandu Diabetes and Thyroid Center Pvt Ltd'),
(104335, 'https://ror.org/05g4ym745', 'en', 1, 'https://ror.org/05g4ym745 YEZO Deer Association äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚Øć‚¾ć‚·ć‚«å”ä¼š'),
(104336, 'https://ror.org/01g7v1865', 'en', 1, 'https://ror.org/01g7v1865 Fujisawa Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗč—¤ę²¢åø‚åŒ»åø«ä¼š'),
(104337, 'https://ror.org/02bcwkf72', 'en', 1, 'https://ror.org/02bcwkf72 Center of Iizuka Research and Development ē¦å²”ēœŒē«‹é£Æå”šē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(104338, 'https://ror.org/017j9wh51', 'en', 1, 'https://ror.org/017j9wh51 Japan Association of Physical Education for Women å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å„³å­ä½“č‚²é€£ē›Ÿ'),
(104339, 'https://ror.org/02h1qe123', 'en', 1, 'https://ror.org/02h1qe123 Japan Arts Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę–‡åŒ–č—č”“č²”å›£'),
(104340, 'https://ror.org/00h3e1s37', 'en', 1, 'https://ror.org/00h3e1s37 National Research Institute for Chemical Technology'),
(104341, 'https://ror.org/02rxky039', 'en', 1, 'https://ror.org/02rxky039 New Unmanned Construction Technology Research Association ę¬”äø–ä»£ē„”äŗŗåŒ–ę–½å·„ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(104342, 'https://ror.org/03y6rwc78', 'en', 1, 'https://ror.org/03y6rwc78 The MRC Foundation äø€čˆ¬č²”å›£ę³•äŗŗē§»å‹•ē„”ē·šć‚»ćƒ³ć‚æćƒ¼'),
(104343, 'https://ror.org/05f9ze865', 'en', 1, 'https://ror.org/05f9ze865 Nippon Badminton Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒćƒ‰ćƒŸćƒ³ćƒˆćƒ³å”ä¼š'),
(104344, 'https://ror.org/016y74486', 'en', 1, 'https://ror.org/016y74486 Matsumoto College of Nursing ę¾ęœ¬ēœ‹č­·å¤§å­¦'),
(104345, 'https://ror.org/03kpdys72', 'de', 0, 'https://ror.org/03kpdys72 Stadtspital Triemli Triemli Hospital'),
(104346, 'https://ror.org/03dsae014', 'es', 1, 'https://ror.org/03dsae014 Hospital Clƭnico FƩlix Bulnes'),
(104347, 'https://ror.org/02ad6az62', 'de', 1, 'https://ror.org/02ad6az62 Gesellschaft für Arbeits-, Wirtschafts- und Organisationspsychologische Forschung e.V.'),
(104348, 'https://ror.org/00906dm81', 'en', 1, 'https://ror.org/00906dm81 White Rose Libraries'),
(104349, 'https://ror.org/05yemb122', 'en', 1, 'https://ror.org/05yemb122 United States Africa Command'),
(104350, 'https://ror.org/04r9s9m52', 'en', 1, 'https://ror.org/04r9s9m52 United States Central Command'),
(104351, 'https://ror.org/035fwcz02', 'en', 1, 'https://ror.org/035fwcz02 Japan Subway Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åœ°äø‹é‰„å”ä¼š'),
(104352, 'https://ror.org/04fhg0w34', 'en', 1, 'https://ror.org/04fhg0w34 ALERT Geomaterials – Alliance of Laboratories in Europe for Education, Research and Technology'),
(104353, 'https://ror.org/00jn5mv37', 'en', 1, 'https://ror.org/00jn5mv37 Okayama Construction Technology Center å…¬ē›Šč²”å›£ę³•äŗŗå²”å±±ēœŒå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(104354, 'https://ror.org/00vvaxp92', 'pt', 1, 'https://ror.org/00vvaxp92 Centro Paula Souza'),
(104355, 'https://ror.org/02t50p128', 'en', 1, 'https://ror.org/02t50p128 Insurance Research Center'),
(104356, 'https://ror.org/01jmx7534', 'fr', 1, 'https://ror.org/01jmx7534 National Office for Sanitary Safety of Food Products Office National de SĆ©curitĆ© Sanitaire des Produits Alimentaires Ų§Ł„Ł…ŁƒŲŖŲØ Ų§Ł„ŁˆŲ·Ł†ŁŠ للسلامة Ų§Ł„ŲµŲ­ŁŠŲ© للمنتجات Ų§Ł„ŲŗŲ°Ų§Ų¦ŁŠŲ©'),
(104357, 'https://ror.org/029mmgm72', 'en', 1, 'https://ror.org/029mmgm72 Okinawa Industrial Federation å…¬ē›Šē¤¾å›£ę³•äŗŗę²–ēø„ēœŒå·„ę„­é€£åˆä¼š'),
(104358, 'https://ror.org/00s21eg45', 'de', 1, 'https://ror.org/00s21eg45 Landesforschungsanstalt für Landwirtschaft und Fischerei Mecklenburg-Vorpommern Mecklenburg-Vorpommern Research Centre for Agriculture and Fisheries'),
(104359, 'https://ror.org/054m9m571', 'en', 1, 'https://ror.org/054m9m571 Maeda Ippoen Foundation äø€čˆ¬č²”å›£ę³•äŗŗå‰ē”°äø€ę­©åœ’č²”å›£'),
(104360, 'https://ror.org/026cfgc43', 'en', 1, 'https://ror.org/026cfgc43 Kamibayashi Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęå¶ŗä¼šäøŠęž—čØ˜åæµē—…é™¢'),
(104361, 'https://ror.org/059swyb75', 'en', 1, 'https://ror.org/059swyb75 Japan Association for Clinical Engineers å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č‡ØåŗŠå·„å­¦ęŠ€å£«ä¼š'),
(104362, 'https://ror.org/02m6qk538', 'en', 1, 'https://ror.org/02m6qk538 Japan Project-Industry Council äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ­ć‚øć‚§ć‚Æćƒˆē”£ę„­å”č­°ä¼š'),
(104363, 'https://ror.org/03hpf3e81', 'en', 1, 'https://ror.org/03hpf3e81 The Japan Association of Marine Safety å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęµ·é›£é˜²ę­¢å”ä¼š'),
(104364, 'https://ror.org/04535zb61', 'en', 1, 'https://ror.org/04535zb61 Japan Dental Hygienists'' Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę­Æē§‘č”›ē”Ÿå£«ä¼š'),
(104365, 'https://ror.org/04h1kaf55', 'en', 1, 'https://ror.org/04h1kaf55 Nagano Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé•·é‡ŽēœŒåŒ»åø«ä¼š'),
(104366, 'https://ror.org/05pe30f54', 'en', 1, 'https://ror.org/05pe30f54 Japan Society for Reproductive Medicine äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”Ÿę®–åŒ»å­¦ä¼š'),
(104367, 'https://ror.org/04qdrz239', 'en', 1, 'https://ror.org/04qdrz239 DeSci Foundation');
INSERT INTO `rors` VALUES
(104368, 'https://ror.org/0182e3j77', 'en', 1, 'https://ror.org/0182e3j77 Boken Quality Evaluation Institute äø€čˆ¬č²”å›£ę³•äŗŗćƒœćƒ¼ć‚±ćƒ³å“č³Ŗč©•ä¾”ę©Ÿę§‹'),
(104369, 'https://ror.org/03fzyek12', 'en', 1, 'https://ror.org/03fzyek12 Japan International Labour Foundation å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›åŠ“åƒč²”å›£'),
(104370, 'https://ror.org/00v6ffm80', 'en', 1, 'https://ror.org/00v6ffm80 Ecrins National Park'),
(104371, 'https://ror.org/03ep8k939', 'en', 1, 'https://ror.org/03ep8k939 Japan Building Maintenance Association å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½ćƒ“ćƒ«ćƒ”ćƒ³ćƒ†ćƒŠćƒ³ć‚¹å”ä¼š'),
(104372, 'https://ror.org/017fcpb94', 'no_lang_code', 1, 'https://ror.org/017fcpb94 Hatch (Canada)'),
(104373, 'https://ror.org/02sbkts37', 'en', 1, 'https://ror.org/02sbkts37 Uyo Gakuen College ē¾½é™½å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(104374, 'https://ror.org/037gphk63', 'en', 1, 'https://ror.org/037gphk63 Japanese Foundation for Sexual Health Medicine å…¬ē›Šč²”å›£ę³•äŗŗę€§ć®å„åŗ·åŒ»å­¦č²”å›£'),
(104375, 'https://ror.org/02p2hdv07', 'en', 1, 'https://ror.org/02p2hdv07 Japan Center for International Exchange å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(104376, 'https://ror.org/03436dr48', 'en', 1, 'https://ror.org/03436dr48 Felicia College of Childhood Education ćƒ•ć‚§ćƒŖć‚·ć‚¢ć“ć©ć‚‚ēŸ­ęœŸå¤§å­¦'),
(104377, 'https://ror.org/014xtzx46', 'en', 1, 'https://ror.org/014xtzx46 Nagaoka Healthcare Center äø€čˆ¬č²”å›£ę³•äŗŗé•·å²”čØ˜åæµč²”å›£é•·å²”ćƒ˜ćƒ«ć‚¹ć‚±ć‚¢ć‚»ćƒ³ć‚æćƒ¼'),
(104378, 'https://ror.org/01aff2v68', 'en', 1, 'https://ror.org/01aff2v68 University of Waterloo UniversitƩ de waterloo'),
(104379, 'https://ror.org/02kkhtm43', 'en', 1, 'https://ror.org/02kkhtm43 CO2-free Hydrogen Energy Supply-chain Technology Research Association ęŠ€č”“ē ”ē©¶ēµ„åˆCO2ćƒ•ćƒŖćƒ¼ę°“ē“ ć‚µćƒ—ćƒ©ć‚¤ćƒć‚§ćƒ¼ćƒ³ęŽØé€²ę©Ÿę§‹'),
(104380, 'https://ror.org/04fnrxr62', 'en', 1, 'https://ror.org/04fnrxr62 Haverford College'),
(104381, 'https://ror.org/00cw67x51', 'en', 1, 'https://ror.org/00cw67x51 Institute of Eastern Culture äø€čˆ¬č²”å›£ę³•äŗŗę±ę–¹å­¦ä¼š'),
(104382, 'https://ror.org/05d0z1h60', 'en', 1, 'https://ror.org/05d0z1h60 APEF å…¬ē›Šč²”å›£ę³•äŗŗćƒ•ćƒ©ćƒ³ć‚¹čŖžę•™č‚²ęŒÆčˆˆå”ä¼š'),
(104383, 'https://ror.org/04hd1a463', 'en', 1, 'https://ror.org/04hd1a463 Jawaharlal Nehru Technological University-Gurajada, Vizianagaram'),
(104384, 'https://ror.org/03h8d7859', 'en', 1, 'https://ror.org/03h8d7859 Czech Infrastructure for Integrative Structural Biology ČeskÔ infrastruktura pro integrativní strukturní biologii'),
(104385, 'https://ror.org/0149yd715', 'en', 1, 'https://ror.org/0149yd715 Japan Handball Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒćƒ³ćƒ‰ćƒœćƒ¼ćƒ«å”ä¼š'),
(104386, 'https://ror.org/03560ne38', 'en', 1, 'https://ror.org/03560ne38 Japan Professional Football League å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ­ć‚µćƒƒć‚«ćƒ¼ćƒŖćƒ¼ć‚°'),
(104387, 'https://ror.org/03zrhvt86', 'en', 1, 'https://ror.org/03zrhvt86 TwinEdge Bioscience TwinEdge Bioscience (Switzerland) TwinEdge Bioscience SA'),
(104388, 'https://ror.org/04qgk0f68', 'en', 1, 'https://ror.org/04qgk0f68 NHK Engineering System, Inc. äø€čˆ¬č²”å›£ę³•äŗŗNHKć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ć‚·ć‚¹ćƒ†ćƒ '),
(104389, 'https://ror.org/04zbcdm10', 'en', 1, 'https://ror.org/04zbcdm10 The Zoological Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©å­¦ä¼š'),
(104390, 'https://ror.org/05wsqf852', 'en', 1, 'https://ror.org/05wsqf852 Rokko Island Kohnan Hospital å…¬ē›Šč²”å›£ę³•äŗŗē”²å—ä¼šå…­ē”²ć‚¢ć‚¤ćƒ©ćƒ³ćƒ‰ē”²å—ē—…é™¢ å…­ē”²ć‚¢ć‚¤ćƒ©ćƒ³ćƒ‰ē”²å—ē—…é™¢'),
(104391, 'https://ror.org/028bjvp30', 'en', 1, 'https://ror.org/028bjvp30 Aichi Medical Foundation of Diagnostic Technology äø€čˆ¬č²”å›£ę³•äŗŗę„›ēŸ„čØŗę–­ę²»ē™‚ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(104392, 'https://ror.org/05kt9ar58', 'en', 1, 'https://ror.org/05kt9ar58 Research Institute of Construction and Economy äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ēµŒęøˆē ”ē©¶ę‰€'),
(104393, 'https://ror.org/05m83tk71', 'en', 1, 'https://ror.org/05m83tk71 M S Ramaiah Institute of Management'),
(104394, 'https://ror.org/00d3en495', 'en', 1, 'https://ror.org/00d3en495 The Magnetics Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē£ę°—å­¦ä¼š'),
(104395, 'https://ror.org/056hy2s79', 'en', 1, 'https://ror.org/056hy2s79 Institute for Areal Studies, Foundation äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸé–‹ē™ŗē ”ē©¶ę‰€'),
(104396, 'https://ror.org/04w5h0820', 'en', 1, 'https://ror.org/04w5h0820 Japan Farriery Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č£…å‰Šč¹„å”ä¼š'),
(104397, 'https://ror.org/00kn8pe59', 'en', 1, 'https://ror.org/00kn8pe59 Japan Association of International Relations äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å›½éš›ę”æę²»å­¦ä¼š'),
(104398, 'https://ror.org/034ny7j54', 'en', 1, 'https://ror.org/034ny7j54 National Agricultural Insurance Association å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č¾²ę„­å…±ęøˆå”ä¼š'),
(104399, 'https://ror.org/00hqc6w79', 'en', 1, 'https://ror.org/00hqc6w79 Japan Allergy Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ¬ćƒ«ć‚®ćƒ¼å”ä¼š'),
(104400, 'https://ror.org/037xnbc69', 'en', 1, 'https://ror.org/037xnbc69 Hakodate Regional Industry Promotion Organization å…¬ē›Šč²”å›£ę³•äŗŗå‡½é¤Øåœ°åŸŸē”£ę„­ęŒÆčˆˆč²”å›£'),
(104401, 'https://ror.org/05b8ssq51', 'en', 1, 'https://ror.org/05b8ssq51 Yokohama City Industrial Technical Support Center ęØŖęµœåø‚å·„ę„­ęŠ€č”“ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(104402, 'https://ror.org/024mrxd33', 'en', 1, 'https://ror.org/024mrxd33 Prifysgol Leeds University of Leeds'),
(104403, 'https://ror.org/02ygpzn39', 'en', 1, 'https://ror.org/02ygpzn39 The Japan Building Disaster Prevention Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰é˜²ē½å”ä¼š'),
(104404, 'https://ror.org/00v6r8906', 'en', 1, 'https://ror.org/00v6r8906 National Agency for Automotive Safety & Victims'' Aid ē‹¬ē«‹č”Œę”æę³•äŗŗč‡Ŗå‹•č»Šäŗ‹ę•…åÆ¾ē­–ę©Ÿę§‹'),
(104405, 'https://ror.org/01dfq7t84', 'en', 1, 'https://ror.org/01dfq7t84 R. N. G. Patel Institute of Technology'),
(104406, 'https://ror.org/04vtb5f91', 'en', 1, 'https://ror.org/04vtb5f91 Ibaraki Prefectural Environmental Radiation Monitoring Center čŒØåŸŽēœŒē’°å¢ƒę”¾å°„ē·šē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(104407, 'https://ror.org/00np4yj42', 'en', 1, 'https://ror.org/00np4yj42 Osaka Nuclear Science Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗćƒ‹ćƒ„ćƒ¼ć‚ÆćƒŖć‚¢ć‚µć‚¤ć‚Øćƒ³ć‚¹å”ä¼š'),
(104408, 'https://ror.org/038x45410', 'en', 1, 'https://ror.org/038x45410 Miyagi International Association å…¬ē›Šč²”å›£ę³•äŗŗå®®åŸŽēœŒå›½éš›åŒ–å”ä¼š'),
(104409, 'https://ror.org/01m16wd76', 'en', 1, 'https://ror.org/01m16wd76 C. K. Pithawalla Institute of Pharmaceutical Science and Research'),
(104410, 'https://ror.org/02s8ge618', 'en', 1, 'https://ror.org/02s8ge618 Japan Society of Powder and Powder Metallurgy äø€čˆ¬ē¤¾å›£ę³•äŗŗē²‰ä½“ē²‰ęœ«å†¶é‡‘å”ä¼š'),
(104411, 'https://ror.org/00sqxf378', 'en', 1, 'https://ror.org/00sqxf378 Dobrudzha Agricultural Institute - General Toshevo Š”Š¾Š±Ń€ŃƒŠ“Š¶Š°Š½ŃŠŗŠø земеГелски ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ - Генерал Тошево'),
(104412, 'https://ror.org/04ntaar48', 'en', 1, 'https://ror.org/04ntaar48 Takarazuka Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå®å”šåø‚åŒ»åø«ä¼š'),
(104413, 'https://ror.org/03hbqx296', 'en', 1, 'https://ror.org/03hbqx296 Gifu Municipal Institute of Public Health å²é˜œåø‚č”›ē”Ÿč©¦éØ“ę‰€'),
(104414, 'https://ror.org/04a4qnc06', 'en', 1, 'https://ror.org/04a4qnc06 lululab Inc. lululab Inc. (South Korea)'),
(104415, 'https://ror.org/0123ggt98', 'en', 1, 'https://ror.org/0123ggt98 United States Space Command'),
(104416, 'https://ror.org/00vntp727', 'en', 1, 'https://ror.org/00vntp727 Spinal Injuries Japan å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č„Šé«„ęå‚·č€…é€£åˆä¼š'),
(104417, 'https://ror.org/04yrt0z65', 'en', 1, 'https://ror.org/04yrt0z65 The Institute of Administrative Information Systems äø€čˆ¬ē¤¾å›£ę³•äŗŗč”Œę”æęƒ…å ±ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę‰€'),
(104418, 'https://ror.org/056w4jg78', 'en', 1, 'https://ror.org/056w4jg78 United States Indo-Pacific Command'),
(104419, 'https://ror.org/015kte140', 'en', 1, 'https://ror.org/015kte140 Osaka Shin-Ai Gakuin University å¤§é˜Ŗäæ”ę„›å­¦é™¢å¤§å­¦'),
(104420, 'https://ror.org/033d3yc78', 'en', 1, 'https://ror.org/033d3yc78 Professional University of Information and Management for Innovation ęƒ…å ±ēµŒå–¶ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(104421, 'https://ror.org/05amc2t75', 'en', 1, 'https://ror.org/05amc2t75 IBADAT International University Islamabad'),
(104422, 'https://ror.org/009gmrj52', 'fr', 1, 'https://ror.org/009gmrj52 EMLYON Business School Ɖcole de management de Lyon'),
(104423, 'https://ror.org/04cw3s860', 'en', 1, 'https://ror.org/04cw3s860 Next generation Space system Technology Research Association ę¬”äø–ä»£å®‡å®™ć‚·ć‚¹ćƒ†ćƒ ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(104424, 'https://ror.org/049c7r177', 'en', 1, 'https://ror.org/049c7r177 Kitakyushu Municipal Education Center åŒ—ä¹å·žåø‚ē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(104425, 'https://ror.org/01d03q474', 'es', 1, 'https://ror.org/01d03q474 National University of Callao Universidad Nacional del Callao'),
(104426, 'https://ror.org/017b8rn13', 'en', 1, 'https://ror.org/017b8rn13 Technology Research Association of Secure IoT Edge application based on RISC-V Open architecture ć‚»ć‚­ćƒ„ć‚¢ć‚Ŗćƒ¼ćƒ—ćƒ³ć‚¢ćƒ¼ć‚­ćƒ†ć‚Æćƒćƒ£ćƒ»ć‚Øćƒƒć‚øåŸŗē›¤ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(104427, 'https://ror.org/05v8zes35', 'en', 1, 'https://ror.org/05v8zes35 Broadcast Programming Center of Japan å…¬ē›Šč²”å›£ę³•äŗŗę”¾é€ē•Ŗēµ„ć‚»ćƒ³ć‚æćƒ¼'),
(104428, 'https://ror.org/04d8mwk58', 'en', 1, 'https://ror.org/04d8mwk58 Wyoming State Geological Survey'),
(104429, 'https://ror.org/0447fe631', 'en', 1, 'https://ror.org/0447fe631 Departamento de Defensa de los Estados Unidos DĆ©partement de la DĆ©fense des Ɖtats-Unis United States Department of Defense'),
(104430, 'https://ror.org/042qzc198', 'en', 1, 'https://ror.org/042qzc198 National Institute of Unani Medicine'),
(104431, 'https://ror.org/002n7pq15', 'es', 1, 'https://ror.org/002n7pq15 Universidad PolitƩcnica de Santa Rosa Jauregui'),
(104432, 'https://ror.org/02jdepa55', 'en', 0, 'https://ror.org/02jdepa55 Food Research Institute Prague'),
(104433, 'https://ror.org/00e5k6m88', 'en', 1, 'https://ror.org/00e5k6m88 United States 4th Fleet United States Naval Forces Southern Command'),
(104434, 'https://ror.org/028zvc673', 'en', 1, 'https://ror.org/028zvc673 United States Air Force Special Operations Command'),
(104435, 'https://ror.org/02c2drs76', 'id', 1, 'https://ror.org/02c2drs76 Sekolah Tingi Pertanian Kutai Timur'),
(104436, 'https://ror.org/01wvs2n51', 'en', 1, 'https://ror.org/01wvs2n51 The Japanese Society for Quality Control äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å“č³Ŗē®”ē†å­¦ä¼š'),
(104437, 'https://ror.org/055z4ja82', 'en', 1, 'https://ror.org/055z4ja82 Japanese Society of Nutrition and Food Science å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę „é¤Šćƒ»é£Ÿē³§å­¦ä¼š'),
(104438, 'https://ror.org/050gjdz33', 'en', 1, 'https://ror.org/050gjdz33 Federal Polytechnic Ohodo'),
(104439, 'https://ror.org/02wr9sg03', 'en', 1, 'https://ror.org/02wr9sg03 United States Cyber Command'),
(104440, 'https://ror.org/00nr08b21', 'en', 1, 'https://ror.org/00nr08b21 MR Education & Accreditation Center of Japan å…¬ē›Šč²”å›£ę³•äŗŗMRčŖå®šć‚»ćƒ³ć‚æćƒ¼'),
(104441, 'https://ror.org/035q3qk69', 'en', 1, 'https://ror.org/035q3qk69 Organization for Promoting Urban Development äø€čˆ¬č²”å›£ę³•äŗŗę°‘é–“éƒ½åø‚é–‹ē™ŗęŽØé€²ę©Ÿę§‹'),
(104442, 'https://ror.org/05p83r381', 'en', 1, 'https://ror.org/05p83r381 Aichi Seaside Environment Center å…¬ē›Šč²”å›£ę³•äŗŗę„›ēŸ„č‡Øęµ·ē’°å¢ƒę•“å‚™ć‚»ćƒ³ć‚æćƒ¼'),
(104443, 'https://ror.org/0497srf50', 'en', 1, 'https://ror.org/0497srf50 Solana Research Solana Research (Germany) Solana Research GmbH'),
(104444, 'https://ror.org/05pn3fc68', 'en', 1, 'https://ror.org/05pn3fc68 M&S Research Hub'),
(104445, 'https://ror.org/01zpw4h31', 'en', 1, 'https://ror.org/01zpw4h31 Sousen Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é¦Øä¼šē·ę³‰ē—…é™¢'),
(104446, 'https://ror.org/010fqbs34', 'en', 1, 'https://ror.org/010fqbs34 Global Environment Centre Foundation å…¬ē›Šč²”å›£ę³•äŗŗåœ°ēƒē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(104447, 'https://ror.org/01eh42f79', 'en', 1, 'https://ror.org/01eh42f79 Nederlandse Hart Registratie Netherlands Heart Registration'),
(104448, 'https://ror.org/04djd0e70', 'en', 1, 'https://ror.org/04djd0e70 Paper Recycling Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗå¤ē“™å†ē”Ÿäæƒé€²ć‚»ćƒ³ć‚æćƒ¼'),
(104449, 'https://ror.org/00r79yp05', 'da', 1, 'https://ror.org/00r79yp05 HF & VUC Klar'),
(104450, 'https://ror.org/00fvs1x60', 'en', 1, 'https://ror.org/00fvs1x60 Japan International Medical TEchnology Foundation å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›åŒ»ē™‚ęŠ€č”“č²”å›£'),
(104451, 'https://ror.org/03pbssv88', 'en', 1, 'https://ror.org/03pbssv88 Japan Wrestling Federation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ¬ć‚¹ćƒŖćƒ³ć‚°å”ä¼š'),
(104452, 'https://ror.org/04w9pag91', 'en', 1, 'https://ror.org/04w9pag91 Shimadzu Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗå³¶ę“„ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(104453, 'https://ror.org/02et3py29', 'en', 1, 'https://ror.org/02et3py29 Japan Association of Geriatric Health Services Facilities å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č€äŗŗäæå„ę–½čØ­å”ä¼š'),
(104454, 'https://ror.org/04v90xq82', 'en', 1, 'https://ror.org/04v90xq82 Federal Polytechnic Orogun'),
(104455, 'https://ror.org/047r3fm82', 'en', 1, 'https://ror.org/047r3fm82 Japan Confectionery and Innovative Food Ingredients Research Center äø€čˆ¬ē¤¾å›£ę³•äŗŗč“å­ćƒ»é£Ÿå“ę–°ē“ ęęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(104456, 'https://ror.org/04t9sje43', 'en', 1, 'https://ror.org/04t9sje43 Japanese Heart Rhythm Society ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬äøę•“č„ˆåæƒé›»å­¦ä¼š'),
(104457, 'https://ror.org/01kt7ap73', 'en', 1, 'https://ror.org/01kt7ap73 Overseas Fishery Cooperation Foundation of Japan å…¬ē›Šč²”å›£ę³•äŗŗęµ·å¤–ę¼ę„­å”åŠ›č²”å›£'),
(104458, 'https://ror.org/043apdk07', 'en', 1, 'https://ror.org/043apdk07 THE Institute Of Marketing & Distribution Research äø€čˆ¬ē¤¾å›£ę³•äŗŗęµé€šå•é”Œē ”ē©¶å”ä¼š'),
(104459, 'https://ror.org/00466x086', 'en', 1, 'https://ror.org/00466x086 PROPUL Evidence LLP PROPUL Evidence LLP (India)'),
(104460, 'https://ror.org/057sz6r47', 'pt', 1, 'https://ror.org/057sz6r47 Legale Educacional'),
(104461, 'https://ror.org/01dvsne70', 'es', 1, 'https://ror.org/01dvsne70 Fundación Ecotonos'),
(104462, 'https://ror.org/03g0m9c53', 'en', 1, 'https://ror.org/03g0m9c53 KEN I Kai Foundation å…¬ē›Šč²”å›£ę³•äŗŗē ”åŒ»ä¼š'),
(104463, 'https://ror.org/00yx1kx21', 'de', 1, 'https://ror.org/00yx1kx21 University Hospital Wiener Neustadt UniversitƤtsklinikum Wiener Neustadt'),
(104464, 'https://ror.org/00asdjp84', 'en', 1, 'https://ror.org/00asdjp84 National Institute for Freshwater Fisheries Research - NIFFR'),
(104465, 'https://ror.org/05sb81p75', 'en', 1, 'https://ror.org/05sb81p75 Association for Rainwater Storage and Infiltration Technology å…¬ē›Šē¤¾å›£ę³•äŗŗé›Øę°“č²Æē•™ęµøé€ęŠ€č”“å”ä¼š'),
(104466, 'https://ror.org/056s15d10', 'en', 1, 'https://ror.org/056s15d10 Maritime Disaster Prevention Center äø€čˆ¬č²”å›£ę³•äŗŗęµ·äøŠē½å®³é˜²ę­¢ć‚»ćƒ³ć‚æćƒ¼'),
(104467, 'https://ror.org/042tqz317', 'en', 1, 'https://ror.org/042tqz317 ECHO Inc.'),
(104468, 'https://ror.org/055fjg955', 'en', 1, 'https://ror.org/055fjg955 KEC Electronic Industry Development Center äø€čˆ¬ē¤¾å›£ę³•äŗŗKECé–¢č„æé›»å­å·„ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(104469, 'https://ror.org/054vgcb65', 'en', 1, 'https://ror.org/054vgcb65 Wakayama Prefectural Kokoro Medical Center å’Œę­Œå±±ēœŒē«‹ć“ć“ć‚ć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(104470, 'https://ror.org/0252zrf32', 'en', 1, 'https://ror.org/0252zrf32 Center for Criminological Research Saxony Zentrum für kriminologische Forschung Sachsen Zentrum für kriminologische Forschung Sachsen e.V.'),
(104471, 'https://ror.org/05f8g2610', 'en', 1, 'https://ror.org/05f8g2610 Hanawa Kousei Hospital JAē¦å³¶åŽšē”Ÿé€£å”™åŽšē”Ÿē—…é™¢'),
(104472, 'https://ror.org/049x36t95', 'fr', 1, 'https://ror.org/049x36t95 CIRAD - Direction gƩnƩrale dƩlƩguƩe Ơ la recherche et Ơ la stratƩgie CIRAD-Office of the Director General in charge of Research and Strategy'),
(104473, 'https://ror.org/042vw1210', 'en', 1, 'https://ror.org/042vw1210 NSBM Green University'),
(104474, 'https://ror.org/05tc8mw15', 'en', 1, 'https://ror.org/05tc8mw15 LoveYourself Inc.'),
(104475, 'https://ror.org/000wy3051', 'en', 1, 'https://ror.org/000wy3051 UTMS Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗUTMS協会'),
(104476, 'https://ror.org/05k6f2980', 'en', 1, 'https://ror.org/05k6f2980 Hyogo Prefectural Center for Advanced Science and Technonogy å…µåŗ«ēœŒē«‹å…ˆē«Æē§‘å­¦ęŠ€č”“ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(104477, 'https://ror.org/00ax8ja79', 'en', 1, 'https://ror.org/00ax8ja79 Aichi International Association å…¬ē›Šč²”å›£ę³•äŗŗę„›ēŸ„ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(104478, 'https://ror.org/04ep4cb98', 'en', 1, 'https://ror.org/04ep4cb98 The Japanese Association of Anatomists äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č§£å‰–å­¦ä¼š'),
(104479, 'https://ror.org/001g3jn25', 'en', 1, 'https://ror.org/001g3jn25 Japan Soil Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åœŸå£Œå”ä¼š'),
(104480, 'https://ror.org/00yzszn60', 'en', 1, 'https://ror.org/00yzszn60 Wakayama Professional University of Rehabilitation å’Œę­Œå±±ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(104481, 'https://ror.org/02s8w9d85', 'en', 1, 'https://ror.org/02s8w9d85 The Association of Japanese Geographers å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åœ°ē†å­¦ä¼š'),
(104482, 'https://ror.org/014b96823', 'en', 1, 'https://ror.org/014b96823 Institute of Chinese Affairs äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å›½ē ”ē©¶ę‰€'),
(104483, 'https://ror.org/00n2n7216', 'en', 1, 'https://ror.org/00n2n7216 Yokosuka City Institute Of Public Health ęØŖé ˆč³€åø‚å„åŗ·å®‰å…Øē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(104484, 'https://ror.org/01y54h464', 'en', 1, 'https://ror.org/01y54h464 Japan Skating Federation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¹ć‚±ćƒ¼ćƒˆé€£ē›Ÿ'),
(104485, 'https://ror.org/01t5wp533', 'en', 1, 'https://ror.org/01t5wp533 Good Ventures'),
(104486, 'https://ror.org/00jm1tr64', 'en', 1, 'https://ror.org/00jm1tr64 Research Center for Applied Zoology'),
(104487, 'https://ror.org/010s8jw92', 'en', 1, 'https://ror.org/010s8jw92 Takatsuki Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé«˜ę§»åø‚åŒ»åø«ä¼š'),
(104488, 'https://ror.org/0312pnr83', 'en', 1, 'https://ror.org/0312pnr83 De Montfort University'),
(104489, 'https://ror.org/00acx1e95', 'en', 1, 'https://ror.org/00acx1e95 National Defense Medical Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é˜²č”›č”›ē”Ÿå­¦ä¼š'),
(104490, 'https://ror.org/004dwjp24', 'en', 1, 'https://ror.org/004dwjp24 The Institute of Oriental Philosophy å…¬ē›Šč²”å›£ę³•äŗŗę±ę“‹å“²å­¦ē ”ē©¶ę‰€'),
(104491, 'https://ror.org/02vhkjx14', 'en', 1, 'https://ror.org/02vhkjx14 International Foundation for Information Technology äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›IT貔団'),
(104492, 'https://ror.org/02mgg8p98', 'en', 1, 'https://ror.org/02mgg8p98 Information Center for Building Administration äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰č”Œę”æęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(104493, 'https://ror.org/04efvj010', 'en', 1, 'https://ror.org/04efvj010 Japan Institute of Baking äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ‘ćƒ³ęŠ€č”“ē ”ē©¶ę‰€'),
(104494, 'https://ror.org/01ph0pk09', 'en', 1, 'https://ror.org/01ph0pk09 Japan Arts Council ē‹¬ē«‹č”Œę”æę³•äŗŗę—„ęœ¬čŠøč”“ę–‡åŒ–ęŒÆčˆˆä¼š'),
(104495, 'https://ror.org/045f4cj55', 'en', 1, 'https://ror.org/045f4cj55 Japan Bicycle Technical Center äø€čˆ¬č²”å›£ę³•äŗŗč‡Ŗč»¢č»Šē”£ę„­ęŒÆčˆˆå”ä¼šęŠ€č”“ē ”ē©¶ę‰€'),
(104496, 'https://ror.org/05tme3j70', 'en', 1, 'https://ror.org/05tme3j70 Chiba Meitoku College åƒč‘‰ę˜Žå¾³ēŸ­ęœŸå¤§å­¦'),
(104497, 'https://ror.org/03z8r7474', 'en', 1, 'https://ror.org/03z8r7474 Esaka Hospital åŒ»ē™‚ę³•äŗŗę¾ęŸä¼šę¦Žå‚ē—…é™¢'),
(104498, 'https://ror.org/057216j94', 'en', 1, 'https://ror.org/057216j94 Kanagawa Physical Therapy Association å…¬ē›Šē¤¾å›£ę³•äŗŗē„žå„ˆå·ēœŒē†å­¦ē™‚ę³•å£«ä¼š'),
(104499, 'https://ror.org/021qagr46', 'en', 1, 'https://ror.org/021qagr46 Kouki Hospital åŒ»ē™‚ę³•äŗŗå…‰č¼ä¼šå…‰č¼ē—…é™¢'),
(104500, 'https://ror.org/02kjypr98', 'en', 1, 'https://ror.org/02kjypr98 The Foundation for the Promotion of Industrial Science äø€čˆ¬č²”å›£ę³•äŗŗē”Ÿē”£ęŠ€č”“ē ”ē©¶å„ØåŠ±ä¼š'),
(104501, 'https://ror.org/03zvkcq15', 'en', 1, 'https://ror.org/03zvkcq15 Independent National Electoral Commission'),
(104502, 'https://ror.org/03m5frb12', 'en', 1, 'https://ror.org/03m5frb12 Institute for Political Studies, Belgrade Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за политичке ŃŃ‚ŃƒŠ“ŠøŃ˜Šµ, БеограГ'),
(104503, 'https://ror.org/01hhnmk90', 'en', 0, 'https://ror.org/01hhnmk90 Caledonian College of Engineering'),
(104504, 'https://ror.org/03vgmsr20', 'en', 1, 'https://ror.org/03vgmsr20 Japan Pediatric Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°å…ē§‘åŒ»ä¼š'),
(104505, 'https://ror.org/02njk4j98', 'en', 1, 'https://ror.org/02njk4j98 The Nukada Institute for Medical and Biological Research å…¬ē›Šč²”å›£ę³•äŗŗé”ē”°åŒ»å­¦ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(104506, 'https://ror.org/0251f2x81', 'en', 1, 'https://ror.org/0251f2x81 White Rose University Consortium'),
(104507, 'https://ror.org/02wav3x53', 'en', 1, 'https://ror.org/02wav3x53 Nagoya Ryujo Women''s University åå¤å±‹ęŸ³åŸŽå„³å­å¤§å­¦'),
(104508, 'https://ror.org/057wbqz50', 'en', 1, 'https://ror.org/057wbqz50 Tottori Prefectural Animal Husbandry Experiment Station é³„å–ēœŒē•œē”£č©¦éØ“å “'),
(104509, 'https://ror.org/00rke6z83', 'en', 1, 'https://ror.org/00rke6z83 Aeon Environmental Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚¤ć‚Ŗćƒ³ē’°å¢ƒč²”å›£'),
(104510, 'https://ror.org/029sggp14', 'en', 1, 'https://ror.org/029sggp14 Hokkaido International Foundation äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(104511, 'https://ror.org/04k56w561', 'en', 1, 'https://ror.org/04k56w561 Japan Sediments Management Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę°“åŗ•č³Ŗęµ„åŒ–ęŠ€č”“å”ä¼š'),
(104512, 'https://ror.org/00hyexx56', 'en', 1, 'https://ror.org/00hyexx56 Next Generation Laser Processing Technology Research Association ę¬”äø–ä»£ćƒ¬ćƒ¼ć‚¶ćƒ¼ćƒ—ćƒ­ć‚»ćƒƒć‚·ćƒ³ć‚°ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(104513, 'https://ror.org/005f36726', 'de', 1, 'https://ror.org/005f36726 Institut für Theorie und Empirie des Sozialen - Werkstatt für sozialpädagogisches Denken e.V.'),
(104514, 'https://ror.org/04kgp9g48', 'es', 1, 'https://ror.org/04kgp9g48 Universidad de Ciencias MƩdicas de la Habana'),
(104515, 'https://ror.org/007c64331', 'en', 1, 'https://ror.org/007c64331 Japanese Society for Mastication Science and Health Promotion ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å’€åš¼å­¦ä¼š'),
(104516, 'https://ror.org/05011v920', 'en', 1, 'https://ror.org/05011v920 Shibata Gakuen University Junior College ęŸ“ē”°å­¦åœ’å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(104517, 'https://ror.org/0041d2q41', 'en', 1, 'https://ror.org/0041d2q41 National Sanatorium Miyako Nanseien å›½ē«‹ē™‚é¤Šę‰€å®®å¤å—é™åœ’'),
(104518, 'https://ror.org/031yhcs65', 'en', 1, 'https://ror.org/031yhcs65 eDNA solutions AB eDNA solutions AB (Sweden)'),
(104519, 'https://ror.org/02rs95642', 'en', 1, 'https://ror.org/02rs95642 Japanese Educational Clinical Cardiology Society å…¬ē›Šē¤¾å›£ę³•äŗŗč‡ØåŗŠåæƒč‡“ē—…å­¦ę•™č‚²ē ”ē©¶ä¼š'),
(104520, 'https://ror.org/032s6vg49', 'en', 1, 'https://ror.org/032s6vg49 Japan Society of Physical Education, Health and Sport Sciences äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½“č‚²å­¦ä¼š'),
(104521, 'https://ror.org/01he8zy72', 'en', 1, 'https://ror.org/01he8zy72 Technology Research Association of Magnetic Materials for High-Efficiency Motors é«˜åŠ¹ēŽ‡ćƒ¢ćƒ¼ć‚æćƒ¼ē”Øē£ę€§ęę–™ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(104522, 'https://ror.org/00hc54507', 'en', 1, 'https://ror.org/00hc54507 The Japan Titanium Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒć‚æćƒ³å”ä¼š'),
(104523, 'https://ror.org/00wchgj69', 'en', 1, 'https://ror.org/00wchgj69 Nagano Society for the Promotion of Science äø€čˆ¬č²”å›£ę³•äŗŗé•·é‡ŽēœŒē§‘å­¦ęŒÆčˆˆä¼š'),
(104524, 'https://ror.org/04sv2e820', 'en', 1, 'https://ror.org/04sv2e820 VeleučiliŔte u Šibeniku Šibenik University of Applied Sciences'),
(104525, 'https://ror.org/027jdar49', 'en', 1, 'https://ror.org/027jdar49 Indian Institute of Technology Delhi Abu Dhabi'),
(104526, 'https://ror.org/00dyw7b26', 'en', 1, 'https://ror.org/00dyw7b26 Japanese Society of Steel Construction äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‹¼ę§‹é€ å”ä¼š'),
(104527, 'https://ror.org/00najys15', 'en', 1, 'https://ror.org/00najys15 Hokkaido Intellect Tank äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ē·åˆē ”ē©¶čŖæęŸ»ä¼š'),
(104528, 'https://ror.org/00y53rp76', 'en', 1, 'https://ror.org/00y53rp76 Osaka Tennoji Zoo åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤©ēŽ‹åÆŗå‹•ē‰©åœ’'),
(104529, 'https://ror.org/004m1nt14', 'en', 1, 'https://ror.org/004m1nt14 National Art School'),
(104530, 'https://ror.org/05fdzxt48', 'en', 1, 'https://ror.org/05fdzxt48 International Institute of Socionics'),
(104531, 'https://ror.org/02nkp0d65', 'en', 1, 'https://ror.org/02nkp0d65 JAäø‰é‡åŽšē”Ÿé€£ę¾é˜Ŗäø­å¤®ē·åˆē—…é™¢ Matsuzaka Central General Hospital'),
(104532, 'https://ror.org/01j240j59', 'en', 1, 'https://ror.org/01j240j59 Research Institute of Meteorology and Atmospheric Science Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł‡ŁˆŲ§Ų“Ł†Ų§Ų³ŪŒ و Ų¹Ł„ŁˆŁ… جو'),
(104533, 'https://ror.org/05db4en82', 'en', 1, 'https://ror.org/05db4en82 SOWA Hospital åŒ»ē™‚ę³•äŗŗč²”å›£ę„›ę…ˆä¼šē›øå’Œē—…é™¢'),
(104534, 'https://ror.org/01t7fx814', 'en', 1, 'https://ror.org/01t7fx814 Japan Research Foundation for Clinical Pharmacology å…¬ē›Šč²”å›£ę³•äŗŗč‡ØåŗŠč–¬ē†ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(104535, 'https://ror.org/02zv8ns48', 'en', 1, 'https://ror.org/02zv8ns48 Azal University for Human Development Ų¬Ų§Ł…Ų¹Ų© Ų¢Ų²Ų§Ł„ Ł„Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„ŲØŲ“Ų±ŁŠŲ©'),
(104536, 'https://ror.org/026nh4520', 'en', 0, 'https://ror.org/026nh4520 CSIRO Oceans and Atmosphere'),
(104537, 'https://ror.org/04mag0y45', 'en', 1, 'https://ror.org/04mag0y45 Japan Boiler Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒœć‚¤ćƒ©å”ä¼š'),
(104538, 'https://ror.org/02zrvdm16', 'en', 1, 'https://ror.org/02zrvdm16 Nara Prefectural Institute of Industrial Development å„ˆč‰ÆēœŒē”£ę„­ęŒÆčˆˆē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(104539, 'https://ror.org/01r490t98', 'en', 1, 'https://ror.org/01r490t98 Japan Society of Colour Material äø€čˆ¬ē¤¾å›£ę³•äŗŗč‰²ęå”ä¼š'),
(104540, 'https://ror.org/05071e455', 'en', 1, 'https://ror.org/05071e455 Japan Swimming Federation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę°“ę³³é€£ē›Ÿ'),
(104541, 'https://ror.org/02fx8f125', 'en', 1, 'https://ror.org/02fx8f125 United States Air Force Global Strike Command'),
(104542, 'https://ror.org/0304xxk68', 'en', 1, 'https://ror.org/0304xxk68 Japan Recreation And Miscellaneous Goods Safety Laboratory äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę–‡åŒ–ē”Øå“å®‰å…Øč©¦éØ“ę‰€'),
(104543, 'https://ror.org/03b5p6e80', 'en', 1, 'https://ror.org/03b5p6e80 Chulabhorn Royal Academy'),
(104544, 'https://ror.org/01bntpj94', 'en', 1, 'https://ror.org/01bntpj94 Japan Institute of Invention and Innovation å…¬ē›Šē¤¾å›£ę³•äŗŗē™ŗę˜Žå”ä¼š'),
(104545, 'https://ror.org/05q26tj83', 'en', 1, 'https://ror.org/05q26tj83 Consumer Co-operative Institute of Japan å…¬ē›Šč²”å›£ę³•äŗŗē”Ÿå”ē·åˆē ”ē©¶ę‰€'),
(104546, 'https://ror.org/010z6xx69', 'en', 1, 'https://ror.org/010z6xx69 Japan Road Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é“č·Æå”ä¼š'),
(104547, 'https://ror.org/040zxe022', 'en', 1, 'https://ror.org/040zxe022 Asia-Pacific Cultural Centre for UNESCO å…¬ē›Šč²”å›£ę³•äŗŗćƒ¦ćƒć‚¹ć‚³ćƒ»ć‚¢ć‚øć‚¢ę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(104548, 'https://ror.org/03b7q7m09', 'uz', 1, 'https://ror.org/03b7q7m09 Paxta Ilmiy-innovasiya Markazi Paxta Ilmiy-innovasiya Markazi (Uzbekistan)'),
(104549, 'https://ror.org/01tts0094', 'en', 1, 'https://ror.org/01tts0094 Termez University of Economics and Service'),
(104550, 'https://ror.org/013ytx106', 'en', 1, 'https://ror.org/013ytx106 Japan Indonesia Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¤ćƒ³ćƒ‰ćƒć‚·ć‚¢å”ä¼š'),
(104551, 'https://ror.org/007qpef44', 'de', 1, 'https://ror.org/007qpef44 de-RSE e.V.'),
(104552, 'https://ror.org/01mdfj071', 'en', 1, 'https://ror.org/01mdfj071 MARINO-FORUM 21 äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒžćƒŖćƒŽćƒ•ć‚©ćƒ¼ćƒ©ćƒ 21'),
(104553, 'https://ror.org/02qv1bd91', 'en', 1, 'https://ror.org/02qv1bd91 University of Buner'),
(104554, 'https://ror.org/02anpr822', 'en', 1, 'https://ror.org/02anpr822 Japan Aircraft Development Corporation äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬čˆŖē©ŗę©Ÿé–‹ē™ŗå”ä¼š'),
(104555, 'https://ror.org/03kb66j27', 'en', 1, 'https://ror.org/03kb66j27 Shakhrisabz State Pedagogical Institute'),
(104556, 'https://ror.org/02nnr0a52', 'en', 1, 'https://ror.org/02nnr0a52 Anshin Zaidan äø€čˆ¬č²”å›£ę³•äŗŗäø­å°ä¼ę„­ē½å®³č£œå„Ÿå…±ęøˆē¦ē„‰č²”å›£'),
(104557, 'https://ror.org/02kj7wx32', 'en', 1, 'https://ror.org/02kj7wx32 Real Estate Transaction Improvement Organization äø€čˆ¬č²”å›£ę³•äŗŗäøå‹•ē”£é©ę­£å–å¼•ęŽØé€²ę©Ÿę§‹'),
(104558, 'https://ror.org/01mc6ts50', 'en', 1, 'https://ror.org/01mc6ts50 Japanese Society of Psychosomatic Medicine äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åæƒčŗ«åŒ»å­¦ä¼š'),
(104559, 'https://ror.org/04azmz153', 'de', 0, 'https://ror.org/04azmz153 Stadtspital Waid Waidspital'),
(104560, 'https://ror.org/00yvyj927', 'en', 1, 'https://ror.org/00yvyj927 Defense Technology Foundation äø€čˆ¬č²”å›£ę³•äŗŗé˜²č”›ęŠ€č”“å”ä¼š'),
(104561, 'https://ror.org/02bspkt64', 'en', 1, 'https://ror.org/02bspkt64 Industrial Science Research Promotion Foundation äø€čˆ¬č²”å›£ę³•äŗŗē”Ÿē”£ē§‘å­¦ē ”ē©¶å„ØåŠ±ä¼š'),
(104562, 'https://ror.org/02hyp2675', 'en', 1, 'https://ror.org/02hyp2675 Haryugaoka Hospital å…¬ē›Šč²”å›£ę³•äŗŗé‡‘ę£®å’Œåæƒä¼šé‡ē”Ÿćƒ¶äø˜ē—…é™¢'),
(104563, 'https://ror.org/0350q3086', 'en', 0, 'https://ror.org/0350q3086 Electrochemical Safety Research Institute'),
(104564, 'https://ror.org/00b5fk960', 'en', 1, 'https://ror.org/00b5fk960 The Japanese Society of Snow and Ice å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é›Ŗę°·å­¦ä¼š'),
(104565, 'https://ror.org/059jw6v13', 'en', 1, 'https://ror.org/059jw6v13 The Organization for Industrial, Spiritual and Cultural Advancement-International å…¬ē›Šč²”å›£ę³•äŗŗć‚Ŗć‚¤ć‚¹ć‚«'),
(104566, 'https://ror.org/03qx2bq13', 'en', 1, 'https://ror.org/03qx2bq13 Genius University for Sciences & Technology Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ†ŁŠŲ³ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(104567, 'https://ror.org/00cvc5g32', 'en', 1, 'https://ror.org/00cvc5g32 Japan Dairy Technical Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä¹³ę„­ęŠ€č”“å”ä¼š'),
(104568, 'https://ror.org/01411f618', 'en', 1, 'https://ror.org/01411f618 Highway Industry Development Organization äø€čˆ¬č²”å›£ę³•äŗŗé“č·Æę–°ē”£ę„­é–‹ē™ŗę©Ÿę§‹'),
(104569, 'https://ror.org/01baz5f40', 'en', 1, 'https://ror.org/01baz5f40 Arctic Research Foundation'),
(104570, 'https://ror.org/050kvkr25', 'en', 1, 'https://ror.org/050kvkr25 Ebara Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗčåŽŸåŒ»åø«ä¼š'),
(104571, 'https://ror.org/050rsje66', 'en', 1, 'https://ror.org/050rsje66 Mochida Memorial Foundation For Medical And Pharmaceutical Research å…¬ē›Šč²”å›£ę³•äŗŗęŒē”°čØ˜åæµåŒ»å­¦č–¬å­¦ęŒÆčˆˆč²”å›£'),
(104572, 'https://ror.org/00dm87y50', 'en', 1, 'https://ror.org/00dm87y50 Sendai Foundation for Applied Information Sciences å…¬ē›Šč²”å›£ę³•äŗŗä»™å°åæœē”Øęƒ…å ±å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(104573, 'https://ror.org/03nqap837', 'en', 1, 'https://ror.org/03nqap837 Japan Polar Research Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę„µåœ°ē ”ē©¶ęŒÆčˆˆä¼š'),
(104574, 'https://ror.org/01e6v1265', 'en', 1, 'https://ror.org/01e6v1265 Japan Marine Industry Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒžćƒŖćƒ³äŗ‹ę„­å”ä¼š'),
(104575, 'https://ror.org/017wv6808', 'fr', 1, 'https://ror.org/017wv6808 University Frères Mentouri Constantine 1 Université Frères Mentouri Constantine 1'),
(104576, 'https://ror.org/055g2p018', 'en', 1, 'https://ror.org/055g2p018 Scientific Certification Services, Inc. Scientific Certification Services, Inc. (United States)'),
(104577, 'https://ror.org/04wr3ta36', 'es', 1, 'https://ror.org/04wr3ta36 Universidad de Ciencias MƩdicas de Matanzas'),
(104578, 'https://ror.org/01q81y572', 'en', 1, 'https://ror.org/01q81y572 Al-Irsyad Cilacap University Universitas Al-Irsyad Cilacap'),
(104579, 'https://ror.org/05a3rjz27', 'hi', 1, 'https://ror.org/05a3rjz27 Balagarh Bijoy Krishna Mahavidyalaya বলাগঔ় ą¦¬ą¦æą¦œą¦Æą¦¼ą¦•ą§ƒą¦·ą§ą¦£ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(104580, 'https://ror.org/03jjjme57', 'en', 1, 'https://ror.org/03jjjme57 Japan Association of Obstetricians and Gynecologists å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£å©¦äŗŗē§‘åŒ»ä¼š'),
(104581, 'https://ror.org/05m7sjn28', 'en', 1, 'https://ror.org/05m7sjn28 Japanese Society of Pediatric Cardiology and Cardiac Surgery ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å°å…å¾Ŗē’°å™Øå­¦ä¼š'),
(104582, 'https://ror.org/0595wsj36', 'en', 1, 'https://ror.org/0595wsj36 Japan Forest Recreation Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ę£®ęž—ćƒ¬ć‚ÆćƒŖć‚Øćƒ¼ć‚·ćƒ§ćƒ³å”ä¼š'),
(104583, 'https://ror.org/03bhc0r81', 'en', 1, 'https://ror.org/03bhc0r81 Honda Foundation å…¬ē›Šč²”å›£ę³•äŗŗęœ¬ē”°č²”å›£'),
(104584, 'https://ror.org/05qqr4176', 'en', 1, 'https://ror.org/05qqr4176 Center for Environmental Creative Studies äø€čˆ¬ē¤¾å›£ę³•äŗŗē’°å¢ƒå‰µé€ ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(104585, 'https://ror.org/01pn4sd83', 'en', 1, 'https://ror.org/01pn4sd83 Springer Nature (Beijing, China)'),
(104586, 'https://ror.org/021xaf247', 'en', 1, 'https://ror.org/021xaf247 Japan Industrial Promotion Association å…¬ē›Šč²”å›£ę³•äŗŗå›½ę°‘å·„ę„­ęŒÆčˆˆä¼š'),
(104587, 'https://ror.org/003bjsc39', 'en', 1, 'https://ror.org/003bjsc39 Japanese Association of Occupational Therapists äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½œę„­ē™‚ę³•å£«å”ä¼š'),
(104588, 'https://ror.org/004p1pb71', 'en', 1, 'https://ror.org/004p1pb71 Japan Basketball Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒć‚¹ć‚±ćƒƒćƒˆćƒœćƒ¼ćƒ«å”ä¼š'),
(104589, 'https://ror.org/05b30wy30', 'en', 1, 'https://ror.org/05b30wy30 UmeƄ Marine Sciences Centre'),
(104590, 'https://ror.org/0325mag79', 'en', 1, 'https://ror.org/0325mag79 Royal Borough of Kingston upon Thames'),
(104591, 'https://ror.org/04jfsqd34', 'en', 1, 'https://ror.org/04jfsqd34 Alupe University'),
(104592, 'https://ror.org/03c94yw72', 'en', 1, 'https://ror.org/03c94yw72 Japan Association of Refrigeration and Air-Conditioning Contractors äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡ē©ŗčŖæčØ­å‚™å·„ę„­é€£åˆä¼š'),
(104593, 'https://ror.org/03dqw6d47', 'en', 1, 'https://ror.org/03dqw6d47 Kadoorie Farm and Botanic Garden å˜‰é“ē†å†œåœŗęšØę¤ē‰©å›­'),
(104594, 'https://ror.org/05pgbm483', 'en', 1, 'https://ror.org/05pgbm483 WHO Association of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬WHO協会'),
(104595, 'https://ror.org/02c345z96', 'en', 1, 'https://ror.org/02c345z96 Swami Vivekananda University'),
(104596, 'https://ror.org/05a856n95', 'en', 1, 'https://ror.org/05a856n95 Australian Centre for Sustainable Development Research & Innovation'),
(104597, 'https://ror.org/01g09s323', 'id', 1, 'https://ror.org/01g09s323 Politeknik Manufaktur Negeri Bangka Belitung'),
(104598, 'https://ror.org/04067bp33', 'en', 1, 'https://ror.org/04067bp33 The Institute of Image Information and Television Engineers äø€čˆ¬ē¤¾å›£ę³•äŗŗę˜ åƒęƒ…å ±ćƒ”ćƒ‡ć‚£ć‚¢å­¦ä¼š'),
(104599, 'https://ror.org/05fpx4038', 'en', 1, 'https://ror.org/05fpx4038 Koto Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗę±Ÿę±åŒŗåŒ»åø«ä¼š'),
(104600, 'https://ror.org/0376pgy71', 'en', 1, 'https://ror.org/0376pgy71 The Institute of Labour Administration äø€čˆ¬č²”å›£ę³•äŗŗåŠ“å‹™č”Œę”æē ”ē©¶ę‰€'),
(104601, 'https://ror.org/04jvphv53', 'en', 1, 'https://ror.org/04jvphv53 Government Post Graduate College, Karak ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ پوسٹ گریجویٹ کالج کرک'),
(104602, 'https://ror.org/04tt6wm54', 'es', 1, 'https://ror.org/04tt6wm54 Centro de Investigación y Conservación Marina'),
(104603, 'https://ror.org/01nhj9647', 'en', 1, 'https://ror.org/01nhj9647 Japan Environmental Education Forum å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒę•™č‚²ćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(104604, 'https://ror.org/057m0at44', 'en', 1, 'https://ror.org/057m0at44 Japan Pest Control Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒšć‚¹ćƒˆć‚³ćƒ³ćƒˆćƒ­ćƒ¼ćƒ«å”ä¼š'),
(104605, 'https://ror.org/039byj944', 'en', 1, 'https://ror.org/039byj944 Asahigawasou Rehabilitation and Medical Center ē¤¾ä¼šē¦ē„‰ę³•äŗŗę—­å·č˜ē™‚č‚²ćƒ»åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(104606, 'https://ror.org/03v77b728', 'en', 1, 'https://ror.org/03v77b728 Japanese Society of Soil Science and Plant Nutrition äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åœŸå£Œč‚„ę–™å­¦ä¼š'),
(104607, 'https://ror.org/01hde4t98', 'en', 1, 'https://ror.org/01hde4t98 Japan Center for Cities å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éƒ½åø‚ć‚»ćƒ³ć‚æćƒ¼'),
(104608, 'https://ror.org/05t4ema23', 'en', 1, 'https://ror.org/05t4ema23 RV University'),
(104609, 'https://ror.org/03r5zec51', 'fr', 1, 'https://ror.org/03r5zec51 Fachhochschule Westschweiz - Wallis HES-SO Valais-Wallis Haute Ɖcole SpĆ©cialisĆ©e de Suisse Occidentale - Valais'),
(104610, 'https://ror.org/055pg0t11', 'en', 1, 'https://ror.org/055pg0t11 K. Matsushita Foundation'),
(104611, 'https://ror.org/05sqjae09', 'fr', 1, 'https://ror.org/05sqjae09 HƓpital HƓtel-Dieu de LƩvis'),
(104612, 'https://ror.org/03aexwf51', 'en', 1, 'https://ror.org/03aexwf51 Housing RESEARCH&ADVANCEMENT Foundation Of Japan å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä½å®…ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(104613, 'https://ror.org/04avsp476', 'en', 1, 'https://ror.org/04avsp476 Japan Light Metal Welding Association äø€čˆ¬ē¤¾å›£ę³•äŗŗč»½é‡‘å±žęŗ¶ęŽ„å”ä¼š'),
(104614, 'https://ror.org/022wcvk97', 'en', 1, 'https://ror.org/022wcvk97 The Japanese Society of Psychiatry and Neurology å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē²¾ē„žē„žēµŒå­¦ä¼š'),
(104615, 'https://ror.org/04bbxay08', 'en', 1, 'https://ror.org/04bbxay08 Reliability Center for Electronic Components of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é›»å­éƒØå“äæ”é ¼ę€§ć‚»ćƒ³ć‚æćƒ¼'),
(104616, 'https://ror.org/01fmrf533', 'en', 1, 'https://ror.org/01fmrf533 Japan Poison Information Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äø­ęÆ’ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(104617, 'https://ror.org/05yehah71', 'en', 1, 'https://ror.org/05yehah71 Kyoto City International Foundation å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½åø‚å›½éš›äŗ¤ęµå”ä¼š'),
(104618, 'https://ror.org/043v7fq47', 'en', 1, 'https://ror.org/043v7fq47 Japan Association for International Collaboration of Agriculture and Forestry å…¬ē›Šē¤¾å›£ę³•äŗŗå›½éš›č¾²ęž—ę„­å”åƒå”ä¼š'),
(104619, 'https://ror.org/044wxf274', 'en', 1, 'https://ror.org/044wxf274 Eden University'),
(104620, 'https://ror.org/02wk7hb64', 'en', 1, 'https://ror.org/02wk7hb64 The Africa Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚¢ćƒ•ćƒŖć‚«å”ä¼š'),
(104621, 'https://ror.org/05rcyr649', 'en', 1, 'https://ror.org/05rcyr649 Japan Steel Constructors Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé‰„éŖØå»ŗčØ­ę„­å”ä¼š'),
(104622, 'https://ror.org/05102hs19', 'en', 1, 'https://ror.org/05102hs19 The Japanese Association of Rural Medicine äø€čˆ¬ē¤¾å›£ę³•äŗŗč¾²ę‘åŒ»å­¦ä¼š'),
(104623, 'https://ror.org/04mg6x265', 'en', 1, 'https://ror.org/04mg6x265 Rocky Mountain Humanistic Counseling and Psychological Association'),
(104624, 'https://ror.org/0067q4j84', 'en', 1, 'https://ror.org/0067q4j84 Swiss Economics Swiss Economics (Switzerland)'),
(104625, 'https://ror.org/05t43vz03', 'en', 1, 'https://ror.org/05t43vz03 Far Eastern Branch of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø процессов ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(104626, 'https://ror.org/00jdn5183', 'en', 1, 'https://ror.org/00jdn5183 Japan Digital Road Map Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ‡ć‚øć‚æćƒ«é“č·Æåœ°å›³å”ä¼š'),
(104627, 'https://ror.org/04jghfn91', 'de', 1, 'https://ror.org/04jghfn91 Berufsbildungswerk Leipzig für Hör- und Sprachgeschädigte gGmbH'),
(104628, 'https://ror.org/02tr2a818', 'id', 1, 'https://ror.org/02tr2a818 Universitas Kristen Wira Wacana Sumba'),
(104629, 'https://ror.org/0191nxa85', 'en', 1, 'https://ror.org/0191nxa85 Indonesia Fuel Cell and Hydrogen Energy'),
(104630, 'https://ror.org/001r3gq61', 'en', 1, 'https://ror.org/001r3gq61 The Architectural Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰å”ä¼š'),
(104631, 'https://ror.org/02ysb6405', 'en', 1, 'https://ror.org/02ysb6405 United States Southern Command'),
(104632, 'https://ror.org/037xxr180', 'en', 1, 'https://ror.org/037xxr180 Saitama Arts Foundation å…¬ē›Šč²”å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒčŠøč”“ę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(104633, 'https://ror.org/006t9zc28', 'en', 1, 'https://ror.org/006t9zc28 Tokyo Fisheries Promotion Foundation äø€čˆ¬č²”å›£ę³•äŗŗę±äŗ¬ę°“ē”£ęŒÆčˆˆä¼š'),
(104634, 'https://ror.org/01d35tt43', 'en', 1, 'https://ror.org/01d35tt43 Kawaguchi Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå·å£åŒ»åø«ä¼š'),
(104635, 'https://ror.org/05jg29s84', 'en', 1, 'https://ror.org/05jg29s84 Hachioji Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…«ēŽ‹å­åø‚åŒ»åø«ä¼š'),
(104636, 'https://ror.org/00x3b5b62', 'en', 1, 'https://ror.org/00x3b5b62 The Japan Food Machinery Manufacturers'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ę©Ÿę¢°å·„ę„­ä¼š'),
(104637, 'https://ror.org/05q1qnx50', 'en', 1, 'https://ror.org/05q1qnx50 Hamamatsu City Institute of Health and Environment ęµœę¾åø‚äæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(104638, 'https://ror.org/006j39w13', 'en', 1, 'https://ror.org/006j39w13 Fukui Prefecture Inland Waters Center ē¦äŗ•ēœŒå†…ę°“é¢ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(104639, 'https://ror.org/02hp2td73', 'en', 0, 'https://ror.org/02hp2td73 Materials Discovery Research Institute'),
(104640, 'https://ror.org/04f9xr902', 'en', 1, 'https://ror.org/04f9xr902 Japan Sports Medicine Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„ę²»ē™‚åŒ»å­¦ē ”ē©¶ä¼š'),
(104641, 'https://ror.org/01db28q79', 'en', 1, 'https://ror.org/01db28q79 Saitama Toho Junior College åŸ¼ēŽ‰ę±čŒēŸ­ęœŸå¤§å­¦'),
(104642, 'https://ror.org/00rxf5j14', 'en', 1, 'https://ror.org/00rxf5j14 Japan Atherosclerosis Research Foundation äø€čˆ¬č²”å›£ę³•äŗŗå‹•č„ˆē”¬åŒ–ē ”ē©¶å„ØåŠ±ä¼š'),
(104643, 'https://ror.org/011rc5898', 'en', 1, 'https://ror.org/011rc5898 Konya Veterinary Control Institute Konya Veteriner Kontrol Enstitüsü T.C. Tarim Ve Orman Bakanligi Konya Veteriner Kontrol Enstitüsü'),
(104644, 'https://ror.org/005xm8c52', 'en', 1, 'https://ror.org/005xm8c52 Hokkaido Road Management Engineering Center äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“é“č·Æē®”ē†ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(104645, 'https://ror.org/05ybfpg54', 'fr', 1, 'https://ror.org/05ybfpg54 SociƩtƩ de MathƩmatiques AppliquƩes et Industrielles'),
(104646, 'https://ror.org/02gkxja18', 'en', 1, 'https://ror.org/02gkxja18 Housing and Community Foundation äø€čˆ¬č²”å›£ę³•äŗŗćƒć‚¦ć‚øćƒ³ć‚°ć‚¢ćƒ³ćƒ‰ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£č²”å›£'),
(104647, 'https://ror.org/03tgxtq39', 'en', 1, 'https://ror.org/03tgxtq39 Japan Society of Newer Metals äø€čˆ¬ē¤¾å›£ę³•äŗŗę–°é‡‘å±žå”ä¼š'),
(104648, 'https://ror.org/05dhs9b36', 'en', 1, 'https://ror.org/05dhs9b36 THE Oita Prefectural Organization For Industry Creation å…¬ē›Šč²”å›£ę³•äŗŗå¤§åˆ†ēœŒē”£ę„­å‰µé€ ę©Ÿę§‹'),
(104649, 'https://ror.org/05b5gb044', 'en', 1, 'https://ror.org/05b5gb044 Environmental Science Research Center Of Yamagata Prefecture å±±å½¢ēœŒē’°å¢ƒē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(104650, 'https://ror.org/01zcrn013', 'en', 1, 'https://ror.org/01zcrn013 Nippon Electric Control Equipment Industries Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę°—åˆ¶å¾”ę©Ÿå™Øå·„ę„­ä¼š'),
(104651, 'https://ror.org/0305dcn72', 'en', 1, 'https://ror.org/0305dcn72 The Japan Transportation Planning Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äŗ¤é€ščØˆē”»å”ä¼š'),
(104652, 'https://ror.org/04j5zna81', 'en', 1, 'https://ror.org/04j5zna81 Kyoto Prefectural Institute for Northern Industry äŗ¬éƒ½åŗœē¹”ē‰©ćƒ»ę©Ÿę¢°é‡‘å±žęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(104653, 'https://ror.org/0285aqz98', 'en', 1, 'https://ror.org/0285aqz98 The Horological Institute of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę™‚čØˆå­¦ä¼š'),
(104654, 'https://ror.org/014y8mn22', 'en', 1, 'https://ror.org/014y8mn22 Japan Aeromedical Research Center äø€čˆ¬č²”å›£ę³•äŗŗčˆŖē©ŗåŒ»å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(104655, 'https://ror.org/033t44h92', 'en', 1, 'https://ror.org/033t44h92 Jigawa State Polytechnic, Dutse'),
(104656, 'https://ror.org/04tgrx733', 'en', 1, 'https://ror.org/04tgrx733 Gazipur Agricultural University ą¦—ą¦¾ą¦œą§€ą¦Ŗą§ą¦° ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą§Ÿ'),
(104657, 'https://ror.org/01qh72446', 'en', 1, 'https://ror.org/01qh72446 Japanese Animal Hospital Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©ē—…é™¢å”ä¼š'),
(104658, 'https://ror.org/03nmm4c68', 'en', 0, 'https://ror.org/03nmm4c68 Fire Safety Research Institute'),
(104659, 'https://ror.org/04hvb2270', 'en', 1, 'https://ror.org/04hvb2270 KOBE Tourism Bureau äø€čˆ¬č²”å›£ę³•äŗŗē„žęˆøč¦³å…‰å±€'),
(104660, 'https://ror.org/05wzf8525', 'en', 1, 'https://ror.org/05wzf8525 Energy Institute for Higher Education Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų§Ł†Ų±Ś˜ŪŒ'),
(104661, 'https://ror.org/01a1ew260', 'en', 1, 'https://ror.org/01a1ew260 The Foundation of Research Institute for Oriental Medicine äø€čˆ¬č²”å›£ę³•äŗŗę±ę“‹åŒ»å­¦ē ”ē©¶ę‰€'),
(104662, 'https://ror.org/04bbejv30', 'en', 1, 'https://ror.org/04bbejv30 National Sanatorium Tohokushinseien å›½ē«‹ē™‚é¤Šę‰€ę±åŒ—ę–°ē”Ÿåœ’'),
(104663, 'https://ror.org/00p68mm48', 'en', 1, 'https://ror.org/00p68mm48 Department of Mineral and Geoscience Malaysia Jabatan Mineral dan Geosains Malaysia'),
(104664, 'https://ror.org/04gpjfg13', 'en', 1, 'https://ror.org/04gpjfg13 International Centre for Materials Physics äø­å›½ē§‘å­¦é™¢å›½é™…ęę–™ē‰©ē†äø­åæƒ'),
(104665, 'https://ror.org/04t5phd24', 'en', 1, 'https://ror.org/04t5phd24 Fachhochschule Südwestfalen South Westphalia University of Applied Sciences'),
(104666, 'https://ror.org/04e45ng25', 'en', 1, 'https://ror.org/04e45ng25 All Japan Judo Federation å…¬ē›Šč²”å›£ę³•äŗŗå…Øę—„ęœ¬ęŸ”é“é€£ē›Ÿ'),
(104667, 'https://ror.org/0377srw41', 'en', 1, 'https://ror.org/0377srw41 MetroHealth'),
(104668, 'https://ror.org/05yck4460', 'id', 1, 'https://ror.org/05yck4460 Sekolah Tinggi Pastoral - Yayasan Institut Pastoral Indonesia Malang'),
(104669, 'https://ror.org/006p0ay31', 'en', 1, 'https://ror.org/006p0ay31 Nippon Koei Bangladesh Nippon Koei Bangladesh Ltd. (Bangladesh)'),
(104670, 'https://ror.org/01rphtg24', 'es', 1, 'https://ror.org/01rphtg24 Plataforma de Acción, Gestión e Investigación Social S.A.S. Plataforma de Acción, Gestión e Investigación Social S.A.S. (Colombia)'),
(104671, 'https://ror.org/054qdnd47', 'en', 1, 'https://ror.org/054qdnd47 State Key Laboratory of Metal Corrosion and Protection é‡‘å±žč…čš€äøŽé˜²ęŠ¤å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(104672, 'https://ror.org/036ajj366', 'en', 1, 'https://ror.org/036ajj366 Shiga Prefectural Livestock Technology Promotion Center ę»‹č³€ēœŒē•œē”£ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(104673, 'https://ror.org/02r5cnj08', 'en', 1, 'https://ror.org/02r5cnj08 Association for Technical Aids, Inc. å…¬ē›Šč²”å›£ę³•äŗŗćƒ†ć‚ÆćƒŽć‚Øć‚¤ćƒ‰å”ä¼š'),
(104674, 'https://ror.org/00bhdmf45', 'en', 1, 'https://ror.org/00bhdmf45 Japan Association of Athletics Federations å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é™øäøŠē«¶ęŠ€é€£ē›Ÿ'),
(104675, 'https://ror.org/03adc6155', 'en', 1, 'https://ror.org/03adc6155 Okinawa Prefectural Deep See Water Research Center ę²–ēø„ēœŒęµ·ę“‹ę·±å±¤ę°“ē ”ē©¶ę‰€'),
(104676, 'https://ror.org/010cncq09', 'en', 0, 'https://ror.org/010cncq09 Magnetic Resonance Imaging Institute for Biomedical Research'),
(104677, 'https://ror.org/002zvky07', 'en', 1, 'https://ror.org/002zvky07 Kagawa Industry Support Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‹ćŒć‚ē”£ę„­ę”Æę“č²”å›£'),
(104678, 'https://ror.org/01pr72x76', 'en', 1, 'https://ror.org/01pr72x76 Hakujuji General Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗē™½åå­—ä¼šē™½åå­—ē·åˆē—…é™¢'),
(104679, 'https://ror.org/04j43p132', 'en', 1, 'https://ror.org/04j43p132 National Ecological Observatory Network'),
(104680, 'https://ror.org/04h5jjv17', 'en', 1, 'https://ror.org/04h5jjv17 Japan Ship Technology Research Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬čˆ¹čˆ¶ęŠ€č”“ē ”ē©¶å”ä¼š'),
(104681, 'https://ror.org/052ha6r03', 'en', 1, 'https://ror.org/052ha6r03 Hokkaido Building Engineering Association äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“å»ŗēÆ‰ęŠ€č”“å”ä¼š'),
(104682, 'https://ror.org/0474m4e38', 'en', 1, 'https://ror.org/0474m4e38 Department of National Museums ą®¤ąÆ‡ą®šą®æą®Æ ą®ØąÆ‚ą®¤ą®©ą®šą®¾ą®²ąÆˆą®¤ąÆ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ ą¶¢ą·ą¶­ą·’ą¶š ą¶šą·žą¶­ą·”ą¶šą·ą¶œą·ą¶» ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(104683, 'https://ror.org/05ryemn72', 'en', 1, 'https://ror.org/05ryemn72 Ankara Yıldırım Beyazıt University Yıldırım Beyazıt Üniversitesi'),
(104684, 'https://ror.org/005vft420', 'en', 1, 'https://ror.org/005vft420 Suga Weathering Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚¹ć‚¬ć‚¦ć‚§ć‚¶ćƒŖćƒ³ć‚°ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(104685, 'https://ror.org/048va4596', 'en', 1, 'https://ror.org/048va4596 THE Institute Of Electrical Installation Engineers Of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—čØ­å‚™å­¦ä¼š'),
(104686, 'https://ror.org/04ejgr990', 'en', 1, 'https://ror.org/04ejgr990 Japan Oilseed Processors Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©ę²¹å”ä¼š'),
(104687, 'https://ror.org/01h0yme57', 'en', 1, 'https://ror.org/01h0yme57 Osaka Prefectural Management Foundation äø€čˆ¬č²”å›£ę³•äŗŗå¤§é˜Ŗåŗœć‚æć‚¦ćƒ³ē®”ē†č²”å›£'),
(104688, 'https://ror.org/03xrphz63', 'en', 1, 'https://ror.org/03xrphz63 Japanese Society of Oral and Maxillofacial Surgeons å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å£č…”å¤–ē§‘å­¦ä¼š'),
(104689, 'https://ror.org/04164j283', 'en', 1, 'https://ror.org/04164j283 The Telecommunication Technology Committee äø€čˆ¬ē¤¾å›£ę³•äŗŗęƒ…å ±é€šäæ”ęŠ€č”“å§”å“”ä¼š'),
(104690, 'https://ror.org/00834m943', 'en', 1, 'https://ror.org/00834m943 Fishing Boat And System Engineering Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·ę“‹ę°“ē”£ć‚·ć‚¹ćƒ†ćƒ å”ä¼š'),
(104691, 'https://ror.org/030j3nq69', 'en', 1, 'https://ror.org/030j3nq69 Cape Town Creative Academy'),
(104692, 'https://ror.org/0368htj83', 'en', 0, 'https://ror.org/0368htj83 Aerospace Technologies of Australia Aerospace Technologies of Australia (Australia)'),
(104693, 'https://ror.org/00qzypv28', 'en', 1, 'https://ror.org/00qzypv28 Vellore Institute of Technology University ą®µąÆ‡ą®²ąÆ‚ą®°ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(104694, 'https://ror.org/03rprq887', 'tr', 1, 'https://ror.org/03rprq887 Foundation for Mehir and Youth Marriage GenƧleri Evlendirme ve Mehir Vakfı'),
(104695, 'https://ror.org/0090me784', 'en', 1, 'https://ror.org/0090me784 The Japan Stroke Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č„³å’äø­å”ä¼š'),
(104696, 'https://ror.org/0017qee02', 'en', 1, 'https://ror.org/0017qee02 Environmental Radioactivity Monitoring Center of Fukushima ē¦å³¶ēœŒåŽŸå­åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(104697, 'https://ror.org/029c2pn37', 'en', 1, 'https://ror.org/029c2pn37 Japan Federation Of Printing Industries äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å°åˆ·ē”£ę„­é€£åˆä¼š'),
(104698, 'https://ror.org/05pfa7h42', 'en', 1, 'https://ror.org/05pfa7h42 The Academy of Pharmaceutical Science and Technology, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬å‰¤å­¦ä¼š'),
(104699, 'https://ror.org/05e0s9394', 'en', 1, 'https://ror.org/05e0s9394 JAäø‰é‡åŽšē”Ÿé€£éˆ“é¹æåŽšē”Ÿē—…é™¢ Suzuka Kosei Hospital'),
(104700, 'https://ror.org/01bcb9c06', 'en', 1, 'https://ror.org/01bcb9c06 Ube-kohsan Central Hospital Corp åŒ»ē™‚ę³•äŗŗē¤¾å›£å®‡éƒØčˆˆē”£äø­å¤®ē—…é™¢');
INSERT INTO `rors` VALUES
(104701, 'https://ror.org/01xjv7358', 'en', 1, 'https://ror.org/01xjv7358 Japan Synchrotron Radiation Research Institute å…¬ē›Šč²”å›£ę³•äŗŗé«˜č¼åŗ¦å…‰ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(104702, 'https://ror.org/02jcak191', 'en', 1, 'https://ror.org/02jcak191 Japan Bicycle Promotion Institute äø€čˆ¬č²”å›£ę³•äŗŗč‡Ŗč»¢č»Šē”£ę„­ęŒÆčˆˆå”ä¼š'),
(104703, 'https://ror.org/0032sc770', 'fr', 0, 'https://ror.org/0032sc770 Laboratoire de Biophotonique et Pharmacologie Laboratory of Biophotonics and Pharmacology'),
(104704, 'https://ror.org/031ntzm95', 'en', 1, 'https://ror.org/031ntzm95 NEC C&C Foundation å…¬ē›Šč²”å›£ę³•äŗŗNEC C&C貔団'),
(104705, 'https://ror.org/00vn0zk41', 'en', 1, 'https://ror.org/00vn0zk41 Ohara Graduate School of Business 大原大学院大学'),
(104706, 'https://ror.org/0193mb561', 'en', 1, 'https://ror.org/0193mb561 Interdisciplinary Center for Archaeology and the Evolution of Human Behaviour'),
(104707, 'https://ror.org/01je2yp79', 'en', 1, 'https://ror.org/01je2yp79 Kochi Prefectural Police 高矄県警察'),
(104708, 'https://ror.org/03157dt42', 'en', 1, 'https://ror.org/03157dt42 Nagasaki International Association å…¬ē›Šč²”å›£ę³•äŗŗé•·å“ŽēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(104709, 'https://ror.org/05s8rbp47', 'en', 1, 'https://ror.org/05s8rbp47 SBI Graduate School SBI大学院大学'),
(104710, 'https://ror.org/04ssf8c19', 'fr', 1, 'https://ror.org/04ssf8c19 Unité sous contrat Caractérisation et suivi des phénomènes d''évolution des résistances'),
(104711, 'https://ror.org/03bb8az06', 'en', 1, 'https://ror.org/03bb8az06 Raw Materials Research and Development Council'),
(104712, 'https://ror.org/00ykkv152', 'en', 1, 'https://ror.org/00ykkv152 Saga Pharmaceutical Sanitation Center ä½č³€ēœŒč”›ē”Ÿč–¬ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(104713, 'https://ror.org/05568t935', 'fr', 1, 'https://ror.org/05568t935 Ecole SupĆ©rieure en Sciences Biologiques d’Oran Higher School of Biological Sciences of Oran'),
(104714, 'https://ror.org/047by5682', 'en', 1, 'https://ror.org/047by5682 Japan Traffic Management Technology Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äŗ¤é€šē®”ē†ęŠ€č”“å”ä¼š'),
(104715, 'https://ror.org/05hg47c09', 'en', 1, 'https://ror.org/05hg47c09 KV Institute of Management and Information Studies'),
(104716, 'https://ror.org/031tdqb65', 'en', 1, 'https://ror.org/031tdqb65 Papua New Guinea National Research Institute'),
(104717, 'https://ror.org/009xs9759', 'en', 1, 'https://ror.org/009xs9759 The Foundation for Development of the Community å…¬ē›Šč²”å›£ę³•äŗŗåœ°åŸŸē¤¾ä¼šęŒÆčˆˆč²”å›£'),
(104718, 'https://ror.org/03avb9a76', 'en', 1, 'https://ror.org/03avb9a76 Water Resources Environment Center, Japan äø€čˆ¬č²”å›£ę³•äŗŗę°“ęŗåœ°ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(104719, 'https://ror.org/0297mgg61', 'en', 1, 'https://ror.org/0297mgg61 Sakakibara Onsen hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗęš²ē“”ä¼šę¦ŠåŽŸęø©ę³‰ē—…é™¢'),
(104720, 'https://ror.org/0384epz80', 'en', 1, 'https://ror.org/0384epz80 The Japanese Society of Irrigation, Drainage and Rural Engineering å…¬ē›Šē¤¾å›£ę³•äŗŗč¾²ę„­č¾²ę‘å·„å­¦ä¼š'),
(104721, 'https://ror.org/02s0yy165', 'en', 1, 'https://ror.org/02s0yy165 North-East Interdisciplinary Scientific Research Institute Деверо-Восточный комплексный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Деверо-Восточный комплексный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Š’Šž Š ŠŠ'),
(104722, 'https://ror.org/02ptcz660', 'en', 1, 'https://ror.org/02ptcz660 Iwate International Association å…¬ē›Šč²”å›£ę³•äŗŗå²©ę‰‹ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(104723, 'https://ror.org/04eqksj42', 'en', 1, 'https://ror.org/04eqksj42 Rowden Technologies (United Kingdom)'),
(104724, 'https://ror.org/03ea0g517', 'en', 0, 'https://ror.org/03ea0g517 Ellison Institute of Technology'),
(104725, 'https://ror.org/03qgy8k22', 'en', 1, 'https://ror.org/03qgy8k22 San Isidro College'),
(104726, 'https://ror.org/05pskjt78', 'en', 1, 'https://ror.org/05pskjt78 Akita International Association å…¬ē›Šč²”å›£ę³•äŗŗē§‹ē”°ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(104727, 'https://ror.org/037xsw929', 'en', 1, 'https://ror.org/037xsw929 Nerima Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗē·“é¦¬åŒŗåŒ»åø«ä¼š'),
(104728, 'https://ror.org/04xrh1s08', 'en', 1, 'https://ror.org/04xrh1s08 Saint Gabriel College'),
(104729, 'https://ror.org/039pt7s63', 'en', 1, 'https://ror.org/039pt7s63 Semiconductor Equipment Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŠå°Žä½“č£½é€ č£…ē½®å”ä¼š'),
(104730, 'https://ror.org/02mhm5w65', 'en', 1, 'https://ror.org/02mhm5w65 Shanti Volunteer Association å…¬ē›Šē¤¾å›£ę³•äŗŗć‚·ćƒ£ćƒ³ćƒ†ć‚£å›½éš›ćƒœćƒ©ćƒ³ćƒ†ć‚£ć‚¢ä¼š'),
(104731, 'https://ror.org/00zemkf37', 'en', 1, 'https://ror.org/00zemkf37 KOBE Ymca å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøYMCA'),
(104732, 'https://ror.org/048m7sg95', 'en', 1, 'https://ror.org/048m7sg95 Indian Institute of Information Technology Lucknow'),
(104733, 'https://ror.org/01pq0fv11', 'en', 1, 'https://ror.org/01pq0fv11 Amagasaki Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå°¼å“Žåø‚åŒ»åø«ä¼š'),
(104734, 'https://ror.org/04bva2z59', 'pt', 1, 'https://ror.org/04bva2z59 Escola da Magistratura do Estado de RondƓnia - Emeron'),
(104735, 'https://ror.org/01jmqsj15', 'en', 1, 'https://ror.org/01jmqsj15 Nagasaki Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗé•·å“ŽēœŒēœ‹č­·å”ä¼š'),
(104736, 'https://ror.org/04bzszh50', 'en', 0, 'https://ror.org/04bzszh50 GeofyzikÔlny odbor Ústav vied o Zemi v.v.i SlovenskÔ Akadémia Vied Geophysical Division of the Earth Science Institute of the Slovak Academy of Sciences'),
(104737, 'https://ror.org/01t3pqg89', 'es', 1, 'https://ror.org/01t3pqg89 Centro de Normalización Lingüística de la Lengua de Signos Española'),
(104738, 'https://ror.org/02arc3934', 'id', 1, 'https://ror.org/02arc3934 Universitas Islam Negeri Mahmud Yunus Batusangkar'),
(104739, 'https://ror.org/03bgt5n04', 'en', 1, 'https://ror.org/03bgt5n04 Japan Association of Graphic Arts Technology å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°åˆ·ęŠ€č”“å”ä¼š'),
(104740, 'https://ror.org/01hp34w32', 'en', 1, 'https://ror.org/01hp34w32 Southern United Academy of Sciences Limited å—ę–¹čÆåˆē§‘å­øē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(104741, 'https://ror.org/015yqp743', 'en', 1, 'https://ror.org/015yqp743 Japanese Society of Gastrointestinal Cancer Screening äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¶ˆåŒ–å™ØćŒć‚“ę¤œčØŗå­¦ä¼š'),
(104742, 'https://ror.org/02vfdxz10', 'en', 1, 'https://ror.org/02vfdxz10 International Relations Council of Turkey'),
(104743, 'https://ror.org/01y0anq30', 'en', 1, 'https://ror.org/01y0anq30 Nippon Association of Consumer Specialists å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę¶ˆč²»ē”Ÿę“»ć‚¢ćƒ‰ćƒć‚¤ć‚¶ćƒ¼ćƒ»ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆćƒ»ē›øč«‡å“”å”ä¼š'),
(104744, 'https://ror.org/02x88th57', 'en', 1, 'https://ror.org/02x88th57 Real Estate Companies Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗäøå‹•ē”£å”ä¼š'),
(104745, 'https://ror.org/05fg7k674', 'en', 1, 'https://ror.org/05fg7k674 Japan Wellness Foundation äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¦ć‚Øćƒ«ćƒć‚¹å”ä¼š'),
(104746, 'https://ror.org/0187p1364', 'en', 1, 'https://ror.org/0187p1364 Japan Mint ē‹¬ē«‹č”Œę”æę³•äŗŗé€ å¹£å±€'),
(104747, 'https://ror.org/0516ek610', 'en', 1, 'https://ror.org/0516ek610 Tottori Prefectural Education Center é³„å–ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(104748, 'https://ror.org/057xz1h85', 'en', 0, 'https://ror.org/057xz1h85 CSIRO Land and Water'),
(104749, 'https://ror.org/0262n0g55', 'en', 1, 'https://ror.org/0262n0g55 Japan Industrial Furnace Manufacturers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·„ę„­ē‚‰å”ä¼š'),
(104750, 'https://ror.org/04b22v608', 'en', 1, 'https://ror.org/04b22v608 Japan Association for Trade with Russia & NIS äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ­ć‚·ć‚¢NISč²æę˜“ä¼š'),
(104751, 'https://ror.org/000xwam85', 'de', 1, 'https://ror.org/000xwam85 Museum of Natural History Solothurn MusĆ©e d’histoire naturelle de Soleure Naturmuseum Solothurn'),
(104752, 'https://ror.org/044enzw67', 'en', 1, 'https://ror.org/044enzw67 The Japan Neurosurgical Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č„³ē„žēµŒå¤–ē§‘å­¦ä¼š'),
(104753, 'https://ror.org/01edysk27', 'es', 1, 'https://ror.org/01edysk27 Ministerio de Medio Ambiente y Recursos Naturales'),
(104754, 'https://ror.org/03ph67546', 'en', 1, 'https://ror.org/03ph67546 Japan Electrical Safety & Environment Technology Laboratories äø€čˆ¬č²”å›£ę³•äŗŗé›»ę°—å®‰å…Øē’°å¢ƒē ”ē©¶ę‰€'),
(104755, 'https://ror.org/02eag8530', 'en', 1, 'https://ror.org/02eag8530 Japan Acupuncture & Moxibustion Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é¼ēøåø«ä¼š'),
(104756, 'https://ror.org/04meywz55', 'en', 1, 'https://ror.org/04meywz55 THE Osaka Medical Research Foundation For Intractable Diseases å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗé›£ē—…ē ”ē©¶č²”å›£'),
(104757, 'https://ror.org/01t5mwx02', 'en', 1, 'https://ror.org/01t5mwx02 Foundation for Senior Citizens'' Housing äø€čˆ¬č²”å›£ę³•äŗŗé«˜é½¢č€…ä½å®…č²”å›£'),
(104758, 'https://ror.org/00mx93n77', 'en', 1, 'https://ror.org/00mx93n77 Kyoai Gakuen Junior College å…±ę„›å­¦åœ’å‰ę©‹å›½éš›å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(104759, 'https://ror.org/04998x052', 'en', 1, 'https://ror.org/04998x052 Nagasaki Food Hygiene Association å…¬ē›Šē¤¾å›£ę³•äŗŗé•·å“ŽēœŒé£Ÿå“č”›ē”Ÿå”ä¼š'),
(104760, 'https://ror.org/02rvee531', 'en', 1, 'https://ror.org/02rvee531 Kagoshima International Association å…¬ē›Šč²”å›£ę³•äŗŗé¹æå…å³¶ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(104761, 'https://ror.org/00nwpew23', 'en', 1, 'https://ror.org/00nwpew23 The Optical Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…‰å­¦ä¼š'),
(104762, 'https://ror.org/05wdzdd31', 'en', 1, 'https://ror.org/05wdzdd31 The Japanese Midwives Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŠ©ē”£åø«ä¼š'),
(104763, 'https://ror.org/03jsv8b41', 'en', 1, 'https://ror.org/03jsv8b41 Yamagata Prefecture Fisheries Experiment Station å±±å½¢ēœŒę°“ē”£ē ”ē©¶ę‰€'),
(104764, 'https://ror.org/05k12ah57', 'en', 1, 'https://ror.org/05k12ah57 Japan Camera Industry Institute äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚«ćƒ”ćƒ©č²”å›£'),
(104765, 'https://ror.org/03fqxnd58', 'en', 1, 'https://ror.org/03fqxnd58 The Japan Containers And Packaging Recycling Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å®¹å™ØåŒ…č£…ćƒŖć‚µć‚¤ć‚Æćƒ«å”ä¼š'),
(104766, 'https://ror.org/00g6kte47', 'it', 1, 'https://ror.org/00g6kte47 Ospedale "Santa Maria delle Croci" di Ravenna'),
(104767, 'https://ror.org/00xmgvk71', 'en', 1, 'https://ror.org/00xmgvk71 Oral Health Association of Japan äø€čˆ¬č²”å›£ę³•äŗŗå£č…”äæå„å”ä¼š'),
(104768, 'https://ror.org/049ndh460', 'en', 1, 'https://ror.org/049ndh460 JIS University'),
(104769, 'https://ror.org/01gens881', 'en', 1, 'https://ror.org/01gens881 Higashikyushu Junior College ę±ä¹å·žēŸ­ęœŸå¤§å­¦'),
(104770, 'https://ror.org/054crwb12', 'en', 1, 'https://ror.org/054crwb12 International Association of Traffic and Safety Sciences å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›äŗ¤é€šå®‰å…Øå­¦ä¼š'),
(104771, 'https://ror.org/02sprfq10', 'fr', 0, 'https://ror.org/02sprfq10 AutoritƩ de SƻretƩ NuclƩaire French Nuclear Safety Authority'),
(104772, 'https://ror.org/03nv0e143', 'en', 1, 'https://ror.org/03nv0e143 Sharjah Maritime Academy'),
(104773, 'https://ror.org/01d0sjx19', 'en', 1, 'https://ror.org/01d0sjx19 The Japan Society for Precision Engineering å…¬ē›Šē¤¾å›£ę³•äŗŗē²¾åÆ†å·„å­¦ä¼š'),
(104774, 'https://ror.org/00ab45451', 'en', 1, 'https://ror.org/00ab45451 Save the Children Japan å…¬ē›Šē¤¾å›£ę³•äŗŗć‚»ćƒ¼ćƒ–ćƒ»ć‚¶ćƒ»ćƒćƒ«ćƒ‰ćƒ¬ćƒ³ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(104775, 'https://ror.org/046r13h33', 'en', 1, 'https://ror.org/046r13h33 Ministry of Health and Social Services Ministère de la Santé et des Services Sociaux'),
(104776, 'https://ror.org/04cpva028', 'en', 1, 'https://ror.org/04cpva028 Hiroshima Industrial Promotion Organization å…¬ē›Šč²”å›£ę³•äŗŗć²ć‚ć—ć¾ē”£ę„­ęŒÆčˆˆę©Ÿę§‹'),
(104777, 'https://ror.org/05bb9ty69', 'en', 1, 'https://ror.org/05bb9ty69 Institute of Public Administration معهد ال؄دارة العامة'),
(104778, 'https://ror.org/009hftk42', 'id', 1, 'https://ror.org/009hftk42 Institut Teknologi dan Bisnis Asia Malang'),
(104779, 'https://ror.org/034cr7f64', 'en', 1, 'https://ror.org/034cr7f64 Omiya-Kyoritsu Hospital åŒ»ē™‚ę³•äŗŗč²”å›£ę–°ē”Ÿä¼šå¤§å®®å…±ē«‹ē—…é™¢'),
(104780, 'https://ror.org/0057tc939', 'en', 1, 'https://ror.org/0057tc939 Japan Construction Training Center äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½å»ŗčØ­ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(104781, 'https://ror.org/02saqmp17', 'en', 1, 'https://ror.org/02saqmp17 Kochi Prefecture Paper Technology Center é«˜ēŸ„ēœŒē«‹ē“™ē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(104782, 'https://ror.org/017rv5x19', 'fr', 1, 'https://ror.org/017rv5x19 Mission de Promotion des Materiaux Locaux'),
(104783, 'https://ror.org/00q4mmh24', 'en', 1, 'https://ror.org/00q4mmh24 Sendai gender equal opportunity foundation å…¬ē›Šč²”å›£ę³•äŗŗć›ć‚“ć ć„ē”·å„³å…±åŒå‚ē”»č²”å›£'),
(104784, 'https://ror.org/03kg5a226', 'en', 1, 'https://ror.org/03kg5a226 The Japan Institute of Light Metals äø€čˆ¬ē¤¾å›£ę³•äŗŗč»½é‡‘å±žå­¦ä¼š'),
(104785, 'https://ror.org/04q6rd425', 'en', 1, 'https://ror.org/04q6rd425 Japan Atomic Industrial Forum, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŽŸå­åŠ›ē”£ę„­å”ä¼š'),
(104786, 'https://ror.org/003hg3x32', 'en', 1, 'https://ror.org/003hg3x32 Amagasaki City Institute of Public Health å°¼å“Žåø‚ē«‹č”›ē”Ÿē ”ē©¶ę‰€'),
(104787, 'https://ror.org/02jz0s612', 'en', 1, 'https://ror.org/02jz0s612 RINRI Institute of Ethics äø€čˆ¬ē¤¾å›£ę³•äŗŗå€«ē†ē ”ē©¶ę‰€'),
(104788, 'https://ror.org/04k1v1a87', 'it', 1, 'https://ror.org/04k1v1a87 Fondazione Paolo Procacci'),
(104789, 'https://ror.org/01f53pe83', 'en', 1, 'https://ror.org/01f53pe83 Marine & Environmental Research Lab Ltd Marine & Environmental Research Lab Ltd (Cyprus)'),
(104790, 'https://ror.org/006b5q767', 'fr', 1, 'https://ror.org/006b5q767 CIRAD - Direction gƩnƩrale'),
(104791, 'https://ror.org/00na7db76', 'en', 1, 'https://ror.org/00na7db76 Mathematics in Open Access'),
(104792, 'https://ror.org/01216n141', 'en', 1, 'https://ror.org/01216n141 Aijinkai Healthcare Corporation äø€čˆ¬č²”å›£ę³•äŗŗę„›ä»ä¼š'),
(104793, 'https://ror.org/02m5s2d07', 'en', 1, 'https://ror.org/02m5s2d07 Japan Agricultural Mechanization Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č¾²ę„­ę©Ÿę¢°åŒ–å”ä¼š'),
(104794, 'https://ror.org/04dav1h78', 'en', 1, 'https://ror.org/04dav1h78 Tada Tomohiro The Institute of Gastroenterology & Proctology ćŸć ćØć‚‚ć²ć‚čƒƒč…øē§‘č‚›é–€ē§‘'),
(104795, 'https://ror.org/02esxtn62', 'de', 1, 'https://ror.org/02esxtn62 Max Weber Foundation - German Humanities Institutes Abroad Max Weber Stiftung - Deutsche Geisteswissenschaftliche Institute im Ausland'),
(104796, 'https://ror.org/04qbh3z77', 'en', 1, 'https://ror.org/04qbh3z77 Japan International Cooperation System äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å›½éš›å”åŠ›ć‚·ć‚¹ćƒ†ćƒ '),
(104797, 'https://ror.org/05dpybt35', 'en', 1, 'https://ror.org/05dpybt35 Association of Urban Housing Sciences å…¬ē›Šē¤¾å›£ę³•äŗŗéƒ½åø‚ä½å®…å­¦ä¼š'),
(104798, 'https://ror.org/03mp4b404', 'en', 1, 'https://ror.org/03mp4b404 Japan Federation Of HEALTH&SPORTS å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·ć‚¹ćƒćƒ¼ćƒ„é€£ē›Ÿ'),
(104799, 'https://ror.org/054mwza93', 'es', 1, 'https://ror.org/054mwza93 Fundación para el Desarrollo de las Ciencias Físicas, MatemÔticas y Naturales'),
(104800, 'https://ror.org/01qrn0494', 'en', 1, 'https://ror.org/01qrn0494 Ishikawa Sunrise Industries Creation Organization å…¬ē›Šč²”å›£ę³•äŗŗēŸ³å·ēœŒē”£ę„­å‰µå‡ŗę”Æę“ę©Ÿę§‹'),
(104801, 'https://ror.org/05mr2mp15', 'en', 1, 'https://ror.org/05mr2mp15 Surya Sen Mahavidyalaya'),
(104802, 'https://ror.org/00etn5569', 'en', 1, 'https://ror.org/00etn5569 Japan Crane Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Æćƒ¬ćƒ¼ćƒ³å”ä¼š'),
(104803, 'https://ror.org/03vm5ng67', 'en', 1, 'https://ror.org/03vm5ng67 Nishinomiya Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗč„æå®®åø‚åŒ»åø«ä¼š'),
(104804, 'https://ror.org/04wz3qh02', 'en', 1, 'https://ror.org/04wz3qh02 Haute Ecole de Santé - HES-SO Valais-Wallis Hochschule für Gesundheit - HES-SO Valais-Wallis School of Health Sciences - HES-SO Valais-Wallis'),
(104805, 'https://ror.org/03x1v8811', 'en', 1, 'https://ror.org/03x1v8811 Kawada Hospital äø€čˆ¬č²”å›£ę³•äŗŗę²³ē”°ē—…é™¢'),
(104806, 'https://ror.org/0503rna79', 'en', 1, 'https://ror.org/0503rna79 National Surimi Manufacturers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ć™ć‚Ščŗ«å”ä¼š'),
(104807, 'https://ror.org/0393cmd93', 'en', 1, 'https://ror.org/0393cmd93 United States Air Force Reserve Command'),
(104808, 'https://ror.org/02wqdd210', 'en', 1, 'https://ror.org/02wqdd210 Japan Painting Contractors Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å”—č£…å·„ę„­ä¼š'),
(104809, 'https://ror.org/02m1hjw88', 'en', 1, 'https://ror.org/02m1hjw88 Nagano Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗé•·é‡ŽēœŒēœ‹č­·å”ä¼š'),
(104810, 'https://ror.org/042fhxk54', 'en', 1, 'https://ror.org/042fhxk54 Japan Construction Machinery and Construction Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗčØ­ę©Ÿę¢°ę–½å·„å”ä¼š'),
(104811, 'https://ror.org/03fhbym19', 'en', 1, 'https://ror.org/03fhbym19 Global Infrastructure Fund Research Foundation Japan å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚°ćƒ­ćƒ¼ćƒćƒ«ćƒ»ć‚¤ćƒ³ćƒ•ćƒ©ć‚¹ćƒˆćƒ©ć‚Æćƒćƒ£ćƒ¼ē ”ē©¶č²”å›£'),
(104812, 'https://ror.org/025k5ez60', 'en', 1, 'https://ror.org/025k5ez60 Nihon Sumo Kyokai å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē›øę’²å”ä¼š'),
(104813, 'https://ror.org/05cd54q30', 'en', 1, 'https://ror.org/05cd54q30 Federal State Budgetary Institution Russian Center of Forensic Medical Expertise of the Ministry of Health of Russian Federation Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Российский центр суГебно-меГицинской ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(104814, 'https://ror.org/053gs7z03', 'en', 1, 'https://ror.org/053gs7z03 Showa University of Music ę˜­å’ŒéŸ³ę„½å¤§å­¦'),
(104815, 'https://ror.org/00re37a10', 'en', 1, 'https://ror.org/00re37a10 Computer Graphic Arts Society å…¬ē›Šč²”å›£ę³•äŗŗē”»åƒęƒ…å ±ę•™č‚²ęŒÆčˆˆå”ä¼š'),
(104816, 'https://ror.org/03tkw8026', 'en', 1, 'https://ror.org/03tkw8026 Shinano Educational Association å…¬ē›Šē¤¾å›£ę³•äŗŗäæ”ęæƒę•™č‚²ä¼š'),
(104817, 'https://ror.org/03agkn750', 'en', 1, 'https://ror.org/03agkn750 U.S. Army Space and Missile Defense Command'),
(104818, 'https://ror.org/05krs5044', 'en', 1, 'https://ror.org/05krs5044 Prifysgol Sheffield University of Sheffield'),
(104819, 'https://ror.org/026ehzk15', 'es', 1, 'https://ror.org/026ehzk15 Universidad Intercultural del Estado de Tabasco'),
(104820, 'https://ror.org/04fpn4067', 'en', 1, 'https://ror.org/04fpn4067 Japan Technology Transfer Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·„ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(104821, 'https://ror.org/007k1td47', 'en', 1, 'https://ror.org/007k1td47 Japan Science Support Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å­¦č”“å”åŠ›č²”å›£'),
(104822, 'https://ror.org/0022kt416', 'en', 1, 'https://ror.org/0022kt416 Japan Housing Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½å®…å”ä¼š'),
(104823, 'https://ror.org/04k13ej84', 'en', 1, 'https://ror.org/04k13ej84 Society for Promotion of Space Science å…¬ē›Šč²”å›£ę³•äŗŗå®‡å®™ē§‘å­¦ęŒÆčˆˆä¼š'),
(104824, 'https://ror.org/034yf3q41', 'en', 1, 'https://ror.org/034yf3q41 Nara Prefectural Livestock Experiment Station å„ˆč‰ÆēœŒē•œē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(104825, 'https://ror.org/01z6w7773', 'en', 1, 'https://ror.org/01z6w7773 Institute of Engineering Mechanics, China Earthquake Administration äø­å›½åœ°éœ‡å±€å·„ēØ‹åŠ›å­¦ē ”ē©¶ę‰€'),
(104826, 'https://ror.org/04gdzy103', 'en', 1, 'https://ror.org/04gdzy103 Center of Research for Environment, Energy and Water वातावरण, ą¤‰ą¤°ą„ą¤œą¤¾ तऄा जल ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(104827, 'https://ror.org/05t3x2m13', 'en', 1, 'https://ror.org/05t3x2m13 Japan Water Works Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“é“å”ä¼š'),
(104828, 'https://ror.org/00rfzm906', 'en', 1, 'https://ror.org/00rfzm906 Japan Cycling Federation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č‡Ŗč»¢č»Šē«¶ęŠ€é€£ē›Ÿ'),
(104829, 'https://ror.org/02978gv32', 'fr', 1, 'https://ror.org/02978gv32 Clinique TrƩnel'),
(104830, 'https://ror.org/00kb3f655', 'en', 1, 'https://ror.org/00kb3f655 Federal College of Education (Technical) Bichi'),
(104831, 'https://ror.org/04dwy1130', 'fr', 1, 'https://ror.org/04dwy1130 AcadƩmie des sciences French Academy of Sciences'),
(104832, 'https://ror.org/024ntkp17', 'en', 1, 'https://ror.org/024ntkp17 MARUGAME Medical Center åŒ»ē™‚ę³•äŗŗē¤¾å›£é‡ä»ä¼šć¾ć‚‹ćŒć‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(104833, 'https://ror.org/01tgfh512', 'en', 1, 'https://ror.org/01tgfh512 Fukuoka Asian Urban Research Center å…¬ē›Šč²”å›£ę³•äŗŗē¦å²”ć‚¢ć‚øć‚¢éƒ½åø‚ē ”ē©¶ę‰€'),
(104834, 'https://ror.org/04b4vdm84', 'en', 1, 'https://ror.org/04b4vdm84 Shivnagar Vidya Prasarak Mandal Institute of Technology and Engineering'),
(104835, 'https://ror.org/02wjqfd29', 'en', 1, 'https://ror.org/02wjqfd29 Overseas Environmental Cooperation Center, Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–ē’°å¢ƒå”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(104836, 'https://ror.org/00kpwg207', 'en', 1, 'https://ror.org/00kpwg207 Research Institute Of Regional And Urban Planning äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸęŒÆčˆˆē ”ē©¶ę‰€'),
(104837, 'https://ror.org/0078dkj09', 'en', 1, 'https://ror.org/0078dkj09 Council for Nutritional and Environmental Medicine'),
(104838, 'https://ror.org/00nqfnw21', 'es', 1, 'https://ror.org/00nqfnw21 Instituto Peruano de Neurociencias'),
(104839, 'https://ror.org/0391adj93', 'en', 1, 'https://ror.org/0391adj93 Japanese Association of Surveyors å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęø¬é‡å”ä¼š'),
(104840, 'https://ror.org/00hz8mj39', 'en', 1, 'https://ror.org/00hz8mj39 Vehicle Information and Communication System Center äø€čˆ¬č²”å›£ę³•äŗŗé“č·Æäŗ¤é€šęƒ…å ±é€šäæ”ć‚·ć‚¹ćƒ†ćƒ ć‚»ćƒ³ć‚æćƒ¼'),
(104841, 'https://ror.org/05xq5xh16', 'en', 1, 'https://ror.org/05xq5xh16 Central Research Services, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å¤®čŖæęŸ»ē¤¾'),
(104842, 'https://ror.org/00z5tv669', 'en', 1, 'https://ror.org/00z5tv669 Small Business Institute Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å°ä¼ę„­ē ”ē©¶ę‰€'),
(104843, 'https://ror.org/03eexn793', 'en', 1, 'https://ror.org/03eexn793 THE Botanical Society Of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©å­¦ä¼š'),
(104844, 'https://ror.org/0415s9t38', 'en', 1, 'https://ror.org/0415s9t38 Nethermind Nethermind (United Kingdom)'),
(104845, 'https://ror.org/04990kb44', 'en', 1, 'https://ror.org/04990kb44 Bangladesh Institute of Innovative Health Research'),
(104846, 'https://ror.org/0235aj664', 'en', 1, 'https://ror.org/0235aj664 Hatch (Australia)'),
(104847, 'https://ror.org/03sh0x419', 'en', 0, 'https://ror.org/03sh0x419 Rockwell International Rockwell International (United States)'),
(104848, 'https://ror.org/02mr55435', 'en', 1, 'https://ror.org/02mr55435 Yokohama Medical Associations äø€čˆ¬ē¤¾å›£ę³•äŗŗęØŖęµœåø‚åŒ»åø«ä¼š'),
(104849, 'https://ror.org/03zqdzq14', 'en', 1, 'https://ror.org/03zqdzq14 Osumikanoya Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé¹æå…å³¶ę„›åæƒä¼šå¤§éš…é¹æå±‹ē—…é™¢'),
(104850, 'https://ror.org/01t7xbe38', 'en', 1, 'https://ror.org/01t7xbe38 Research Institute of Marine Invertebrates å…¬ē›Šč²”å›£ę³•äŗŗę°“ē”£ē„”č„Šę¤Žå‹•ē‰©ē ”ē©¶ę‰€'),
(104851, 'https://ror.org/02s7jtw71', 'en', 1, 'https://ror.org/02s7jtw71 Inazawa Kosei Hospital JAę„›ēŸ„åŽšē”Ÿé€£ēØ²ę²¢åŽšē”Ÿē—…é™¢'),
(104852, 'https://ror.org/039qq6580', 'en', 1, 'https://ror.org/039qq6580 CITI Program Collaborative Institutional Training Initiative'),
(104853, 'https://ror.org/01j32n803', 'tr', 1, 'https://ror.org/01j32n803 Türkiye Eğitim Gönüllüleri Vakfı'),
(104854, 'https://ror.org/05wq91d49', 'sv', 1, 'https://ror.org/05wq91d49 Region JƤmtland HƤrjedalen'),
(104855, 'https://ror.org/04mpvff38', 'en', 1, 'https://ror.org/04mpvff38 Japan Lubricating Oil Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę½¤ę»‘ę²¹å”ä¼š'),
(104856, 'https://ror.org/01f9pza55', 'en', 1, 'https://ror.org/01f9pza55 Springer Nature (Shanghai, China)'),
(104857, 'https://ror.org/01v420674', 'ro', 1, 'https://ror.org/01v420674 Stațiunea de Cercetare-Dezvoltare pentru Pomicultură Bistrița'),
(104858, 'https://ror.org/047j4zh09', 'en', 1, 'https://ror.org/047j4zh09 Association of Management Consultants in Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒå–¶å£«ä¼š'),
(104859, 'https://ror.org/052hbrn62', 'fr', 1, 'https://ror.org/052hbrn62 Office pour les insectes et leur environnement (Opie)'),
(104860, 'https://ror.org/01wvydd52', 'en', 1, 'https://ror.org/01wvydd52 Comprehensive Research Organization for Science and Technology, Yamanashi Prefectural Government å±±ę¢ØēœŒē·åˆē†å·„å­¦ē ”ē©¶ę©Ÿę§‹'),
(104861, 'https://ror.org/048t56w09', 'en', 1, 'https://ror.org/048t56w09 Agricultural Development Consultants Association äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–č¾²ę„­é–‹ē™ŗć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒ„å”ä¼š'),
(104862, 'https://ror.org/03e1cv717', 'en', 1, 'https://ror.org/03e1cv717 Shirai Hospital åŒ»ē™‚ę³•äŗŗē™½åÆä¼šē™½äŗ•ē—…é™¢'),
(104863, 'https://ror.org/053364k84', 'en', 1, 'https://ror.org/053364k84 The Academy of Clinical Dentistry ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬é”Žå’¬åˆå­¦ä¼š'),
(104864, 'https://ror.org/00psznt47', 'en', 1, 'https://ror.org/00psznt47 Osaka Architecture Technology Association äø€čˆ¬č²”å›£ę³•äŗŗå¤§é˜Ŗå»ŗēÆ‰ęŠ€č”“å”ä¼š'),
(104865, 'https://ror.org/04f8vwg61', 'en', 1, 'https://ror.org/04f8vwg61 Japan Property Management Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č³ƒč²øä½å®…ē®”ē†å”ä¼š'),
(104866, 'https://ror.org/00hbgbh82', 'en', 1, 'https://ror.org/00hbgbh82 JAPAN Anti-Doping Agency å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ³ćƒćƒ»ćƒ‰ćƒ¼ćƒ”ćƒ³ć‚°ę©Ÿę§‹'),
(104867, 'https://ror.org/027d2g669', 'en', 1, 'https://ror.org/027d2g669 Ɩstersunds Hospital Ɩstersunds sjukhus'),
(104868, 'https://ror.org/03a2d0d33', 'en', 1, 'https://ror.org/03a2d0d33 Institute of Earthquake Forecasting, China Earthquake Administration äø­å›½åœ°éœ‡å±€åœ°éœ‡é¢„ęµ‹ē ”ē©¶ę‰€'),
(104869, 'https://ror.org/034bx4794', 'en', 1, 'https://ror.org/034bx4794 Hokkaido Guide Dogs Association å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“ē›²å°ŽēŠ¬å”ä¼š'),
(104870, 'https://ror.org/000t1zq41', 'en', 1, 'https://ror.org/000t1zq41 The Japan Bloodhorse Breeders''Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č»½ēØ®é¦¬å”ä¼š'),
(104871, 'https://ror.org/013k5zx16', 'de', 1, 'https://ror.org/013k5zx16 Ministerium für Klimaschutz, Landwirtschaft, ländliche Räume und Umwelt des Landes Mecklenburg-Vorpommern'),
(104872, 'https://ror.org/026cnzg44', 'no_lang_code', 0, 'https://ror.org/026cnzg44 Advanced Technological Center Fundació CTM Centre Tecnològic'),
(104873, 'https://ror.org/00kfc2x89', 'en', 1, 'https://ror.org/00kfc2x89 Turan International University'),
(104874, 'https://ror.org/03625s204', 'en', 1, 'https://ror.org/03625s204 Joshibi Junior College of Art and Design å„³å­ē¾Žč”“å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(104875, 'https://ror.org/018nsc354', 'id', 1, 'https://ror.org/018nsc354 Universitas Islam An Nur Lampung'),
(104876, 'https://ror.org/026w8xv69', 'en', 1, 'https://ror.org/026w8xv69 Japan Association for Women''s Education å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å„³ę€§å­¦ēæ’č²”å›£'),
(104877, 'https://ror.org/01sqgq073', 'en', 1, 'https://ror.org/01sqgq073 Future Cities Institute'),
(104878, 'https://ror.org/03eta3039', 'es', 1, 'https://ror.org/03eta3039 CEDEU - Centro de Estudios Universitarios'),
(104879, 'https://ror.org/00qcwfy86', 'en', 1, 'https://ror.org/00qcwfy86 Japan Designers Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›³ę”ˆå®¶å”ä¼š'),
(104880, 'https://ror.org/02d1jet54', 'en', 1, 'https://ror.org/02d1jet54 Society for Art in Education å…¬ē›Šč²”å›£ę³•äŗŗę•™č‚²ē¾Žč”“ęŒÆčˆˆä¼š'),
(104881, 'https://ror.org/0042p7n06', 'en', 1, 'https://ror.org/0042p7n06 Shonan Institute of Chemoinformatics and Mathmatical Chemistry ę¹˜å—ęƒ…å ±ę•°ē†åŒ–å­¦ē ”ē©¶ę‰€'),
(104882, 'https://ror.org/02mchxy08', 'en', 1, 'https://ror.org/02mchxy08 Thermal Management Materials and technology Research Association ęœŖåˆ©ē”Øē†±ć‚Øćƒćƒ«ć‚®ćƒ¼é©ę–°ēš„ę“»ē”ØęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(104883, 'https://ror.org/054wnct40', 'en', 1, 'https://ror.org/054wnct40 Japan Family Care Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å®¶åŗ­ē”Ÿę“»ē ”ē©¶å”ä¼š'),
(104884, 'https://ror.org/04eqtjv38', 'en', 1, 'https://ror.org/04eqtjv38 Japanese Society for Preservation of Birds å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é³„é”žäæč­·é€£ē›Ÿ'),
(104885, 'https://ror.org/01nnar428', 'en', 1, 'https://ror.org/01nnar428 Center of Research in Mechanics Centre de recherche en mĆ©canique Ł…Ų±ŁƒŲ² Ų§Ł„ŲØŲ­ŁˆŲ« في الهندسة Ų§Ł„Ł…ŁŠŁƒŲ§Ł†ŁŠŁƒŁŠŲ©'),
(104886, 'https://ror.org/03h5yht09', 'en', 1, 'https://ror.org/03h5yht09 Japan Volleyball Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒćƒ¬ćƒ¼ćƒœćƒ¼ćƒ«å”ä¼š'),
(104887, 'https://ror.org/05x3w7z93', 'en', 1, 'https://ror.org/05x3w7z93 Express Highway Research Foundation of Japan å…¬ē›Šč²”å›£ę³•äŗŗé«˜é€Ÿé“č·ÆčŖæęŸ»ä¼š'),
(104888, 'https://ror.org/035nx7155', 'en', 1, 'https://ror.org/035nx7155 Kenwakai Ootemachi Hospital å…¬ē›Šč²”å›£ę³•äŗŗå„å’Œä¼šå¤§ę‰‹ē”ŗē—…é™¢'),
(104889, 'https://ror.org/0346ase89', 'no_lang_code', 1, 'https://ror.org/0346ase89 Boeing (Australia)'),
(104890, 'https://ror.org/05n0rxa32', 'en', 1, 'https://ror.org/05n0rxa32 The Association of Powder Process Industry and Engineering, JAPAN äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē²‰ä½“å·„ę„­ęŠ€č”“å”ä¼š'),
(104891, 'https://ror.org/04933pe04', 'de', 1, 'https://ror.org/04933pe04 Stadtspital Zürich'),
(104892, 'https://ror.org/00v9d4z37', 'en', 1, 'https://ror.org/00v9d4z37 IESE Business School'),
(104893, 'https://ror.org/01jwqqd72', 'en', 1, 'https://ror.org/01jwqqd72 Japan Meat Technology Institute å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é£Ÿč‚‰ē”Ÿē”£ęŠ€č”“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(104894, 'https://ror.org/02ph9d254', 'en', 1, 'https://ror.org/02ph9d254 David Umahi Federal University of Health Sciences Uburu'),
(104895, 'https://ror.org/057xcsb04', 'en', 1, 'https://ror.org/057xcsb04 Society for Agricultural Education Research Development Abroad äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–č¾²ę„­ę•™č‚²ćƒ»ē ”ē©¶é–‹ē™ŗå”ä¼š'),
(104896, 'https://ror.org/05v54wa38', 'en', 1, 'https://ror.org/05v54wa38 The Asahi Glass Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—­ē”å­č²”å›£'),
(104897, 'https://ror.org/01fhn0r91', 'en', 1, 'https://ror.org/01fhn0r91 The Radiation Science Society of Japan å…¬ē›Šč²”å›£ę³•äŗŗč¼»å°„ē§‘å­¦ē ”ē©¶ä¼š'),
(104898, 'https://ror.org/04jthgw29', 'en', 1, 'https://ror.org/04jthgw29 Center for Digital Narrative Senter for digitale fortellinger'),
(104899, 'https://ror.org/01cwfm348', 'it', 1, 'https://ror.org/01cwfm348 SocietĆ  Storica e Antropologica di Valle Camonica'),
(104900, 'https://ror.org/00kwdwj09', 'en', 1, 'https://ror.org/00kwdwj09 Hyogo International Association å…¬ē›Šč²”å›£ę³•äŗŗå…µåŗ«ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(104901, 'https://ror.org/01a08yc77', 'en', 1, 'https://ror.org/01a08yc77 STEI Yogyakarta'),
(104902, 'https://ror.org/05k0zs997', 'en', 1, 'https://ror.org/05k0zs997 Sofar Ocean Sofar Ocean (United States)'),
(104903, 'https://ror.org/01vrybr67', 'en', 1, 'https://ror.org/01vrybr67 Louis Stokes Cleveland VA Medical Center'),
(104904, 'https://ror.org/02c8xgx19', 'en', 1, 'https://ror.org/02c8xgx19 Kuroshio Biology Research Institute å…¬ē›Šč²”å›£ę³•äŗŗé»’ę½®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(104905, 'https://ror.org/03zt5y861', 'es', 1, 'https://ror.org/03zt5y861 Instituto de BiologĆ­a de Organismos Marinos'),
(104906, 'https://ror.org/05w5m7541', 'en', 1, 'https://ror.org/05w5m7541 The Mori Memorial Foundation äø€čˆ¬č²”å›£ę³•äŗŗę£®čØ˜åæµč²”å›£'),
(104907, 'https://ror.org/05gr4mx33', 'en', 1, 'https://ror.org/05gr4mx33 Tashkent State Agrarian University Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104908, 'https://ror.org/02hcsa680', 'it', 1, 'https://ror.org/02hcsa680 IFOM'),
(104909, 'https://ror.org/0589fsf57', 'en', 1, 'https://ror.org/0589fsf57 Japanese Association of Zoos and Aquariums å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©åœ’ę°“ę—é¤Øå”ä¼š'),
(104910, 'https://ror.org/05s9k3969', 'en', 1, 'https://ror.org/05s9k3969 Joshibi University of Art and Design å„³å­ē¾Žč”“å¤§å­¦'),
(104911, 'https://ror.org/01e47e403', 'en', 1, 'https://ror.org/01e47e403 Junior Chamber International äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§ę±é’å¹“ä¼šč­°ę‰€'),
(104912, 'https://ror.org/02mqxz690', 'en', 1, 'https://ror.org/02mqxz690 Harajuku Rehabilitation Hospital äø€čˆ¬ē¤¾å›£ę³•äŗŗå·ØęØ¹ć®ä¼šåŽŸå®æćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(104913, 'https://ror.org/036z42n03', 'en', 1, 'https://ror.org/036z42n03 Ibarakiken Medical Center äø€čˆ¬č²”å›£ę³•äŗŗčŒØåŸŽēœŒćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(104914, 'https://ror.org/02fr96y79', 'en', 1, 'https://ror.org/02fr96y79 Nature Conservation Society of Hokkaido äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“č‡Ŗē„¶äæč­·å”ä¼š'),
(104915, 'https://ror.org/05wxj1991', 'en', 1, 'https://ror.org/05wxj1991 The Graduate School of Social Design ē¤¾ä¼šę§‹ęƒ³å¤§å­¦é™¢å¤§å­¦'),
(104916, 'https://ror.org/0017c2n05', 'en', 1, 'https://ror.org/0017c2n05 Tochigi Prefectural Okamotodai Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę ƒęœØēœŒē«‹å²”ęœ¬å°ē—…é™¢'),
(104917, 'https://ror.org/02a5g4t56', 'en', 1, 'https://ror.org/02a5g4t56 NHK Service Center, Inc. äø€čˆ¬č²”å›£ę³•äŗŗNHKć‚µćƒ¼ćƒ“ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(104918, 'https://ror.org/040f4y023', 'en', 1, 'https://ror.org/040f4y023 Japan Rugby Football Union å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ©ć‚°ćƒ“ćƒ¼ćƒ•ćƒƒćƒˆćƒœćƒ¼ćƒ«å”ä¼š'),
(104919, 'https://ror.org/05t1ev189', 'en', 1, 'https://ror.org/05t1ev189 The Japan Refrigeration and Air Conditioning Industry Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡ē©ŗčŖæå·„ę„­ä¼š'),
(104920, 'https://ror.org/04gkesc36', 'en', 1, 'https://ror.org/04gkesc36 The Japan Association of Rural Solutions for Environmental Conservation and Resource Recycling äø€čˆ¬ē¤¾å›£ę³•äŗŗåœ°åŸŸē’°å¢ƒč³‡ęŗć‚»ćƒ³ć‚æćƒ¼'),
(104921, 'https://ror.org/051fsqe52', 'en', 1, 'https://ror.org/051fsqe52 Kanagawa International Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‹ćŖćŒć‚å›½éš›äŗ¤ęµč²”å›£'),
(104922, 'https://ror.org/00f7jtn66', 'en', 1, 'https://ror.org/00f7jtn66 The Japanese Society for Food Science and Technology Secretariat å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ē§‘å­¦å·„å­¦ä¼š'),
(104923, 'https://ror.org/01p9dcy47', 'en', 1, 'https://ror.org/01p9dcy47 PFA Pension PFA Pension (Denmark)'),
(104924, 'https://ror.org/0218nnd14', 'en', 1, 'https://ror.org/0218nnd14 Kinugasa Research Foundation for Textile Science å…¬ē›Šč²”å›£ę³•äŗŗč”£ē¬ ē¹Šē¶­ē ”ē©¶ę‰€'),
(104925, 'https://ror.org/01pdt0g30', 'en', 1, 'https://ror.org/01pdt0g30 Organization for Small & Medium Enterprises and Regional Innovation, JAPAN ē‹¬ē«‹č”Œę”æę³•äŗŗäø­å°ä¼ę„­åŸŗē›¤ę•“å‚™ę©Ÿę§‹'),
(104926, 'https://ror.org/01h54h698', 'en', 1, 'https://ror.org/01h54h698 International Professional University of Technology in Tokyo ę±äŗ¬å›½éš›å·„ē§‘å°‚é–€č·å¤§å­¦'),
(104927, 'https://ror.org/00ejz0646', 'en', 1, 'https://ror.org/00ejz0646 Japanese Society of Pediatric Surgeons ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å°å…å¤–ē§‘å­¦ä¼š'),
(104928, 'https://ror.org/05jv76h83', 'en', 1, 'https://ror.org/05jv76h83 Japan Society for Atmospheric Environment å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§ę°—ē’°å¢ƒå­¦ä¼š'),
(104929, 'https://ror.org/033sse383', 'en', 1, 'https://ror.org/033sse383 Human Media Creation Center å…¬ē›Šč²”å›£ę³•äŗŗä¹å·žćƒ’ćƒ„ćƒ¼ćƒžćƒ³ćƒ”ćƒ‡ć‚£ć‚¢å‰µé€ ć‚»ćƒ³ć‚æćƒ¼'),
(104930, 'https://ror.org/0388t6n15', 'en', 1, 'https://ror.org/0388t6n15 Japan Monorail Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ¢ćƒŽćƒ¬ćƒ¼ćƒ«å”ä¼š'),
(104931, 'https://ror.org/02adgj289', 'en', 1, 'https://ror.org/02adgj289 Nagasaki City Public Health and Environmental Testing Center é•·å“Žåø‚äæå„ē’°å¢ƒč©¦éØ“ę‰€'),
(104932, 'https://ror.org/049e3er75', 'en', 1, 'https://ror.org/049e3er75 Yamanashi International Association å…¬ē›Šč²”å›£ę³•äŗŗå±±ę¢ØēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(104933, 'https://ror.org/05xze5t06', 'en', 1, 'https://ror.org/05xze5t06 Federal State Budgetary Institution ā€˜Scientific Centre for Expert Evaluation of Medicinal Products’ of the Ministry of Health of the Russian Federation (SCEEMP) Ā«ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ среГств меГицинского ŠæŃ€ŠøŠ¼ŠµŠ½ŠµŠ½ŠøŃĀ» ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации (ФГБУ Ā«ŠŠ¦Š­Š”ŠœŠŸĀ» ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России)'),
(104934, 'https://ror.org/021djcc85', 'en', 1, 'https://ror.org/021djcc85 Yamamoto the Third Hospital åŒ»ē™‚ę³•äŗŗå±±ē“€ä¼šå±±ęœ¬ē¬¬äø‰ē—…é™¢'),
(104935, 'https://ror.org/0014zp728', 'en', 1, 'https://ror.org/0014zp728 The Japanese Society of Printing Science and Technology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å°åˆ·å­¦ä¼š'),
(104936, 'https://ror.org/039vzkj41', 'en', 1, 'https://ror.org/039vzkj41 Japan Art Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē¾Žč”“å”ä¼š'),
(104937, 'https://ror.org/01b3k3194', 'en', 1, 'https://ror.org/01b3k3194 Saijo City Shuso Hospital č„æę”åø‚ē«‹å‘Øę”‘ē—…é™¢'),
(104938, 'https://ror.org/02bz8aa76', 'en', 1, 'https://ror.org/02bz8aa76 Suzhou University å®æå·žå­¦é™¢'),
(104939, 'https://ror.org/05sb3ve62', 'en', 1, 'https://ror.org/05sb3ve62 The Japan Muscular Dystrophy Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē­‹ć‚øć‚¹ćƒˆćƒ­ćƒ•ć‚£ćƒ¼å”ä¼š'),
(104940, 'https://ror.org/04341bz40', 'en', 1, 'https://ror.org/04341bz40 Valahia Medical Center'),
(104941, 'https://ror.org/0056n6234', 'en', 1, 'https://ror.org/0056n6234 International Lake Environment Committee Foundation å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ę¹–ę²¼ē’°å¢ƒå§”å“”ä¼š'),
(104942, 'https://ror.org/016w11g38', 'en', 1, 'https://ror.org/016w11g38 Chubu Okinawa Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­éƒØåœ°åŒŗåŒ»åø«ä¼š'),
(104943, 'https://ror.org/00mkj8e45', 'en', 1, 'https://ror.org/00mkj8e45 Genkikai Yokohama Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å…ƒę°—ä¼šęØŖęµœē—…é™¢'),
(104944, 'https://ror.org/029e9gc02', 'en', 1, 'https://ror.org/029e9gc02 Kagawa Prefecture Livestock Experiment Station é¦™å·ēœŒē•œē”£č©¦éØ“å “'),
(104945, 'https://ror.org/018rcdc65', 'en', 1, 'https://ror.org/018rcdc65 Shipbuilding Research Centre of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é€ čˆ¹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(104946, 'https://ror.org/00kswvd50', 'en', 1, 'https://ror.org/00kswvd50 The Life Insurance Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗē”Ÿå‘½äæé™ŗå”ä¼š'),
(104947, 'https://ror.org/05pkv7077', 'en', 1, 'https://ror.org/05pkv7077 Superconducting Sensing Technology Research Association č¶…é›»å°Žć‚»ćƒ³ć‚·ćƒ³ć‚°ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(104948, 'https://ror.org/04gf11d56', 'en', 1, 'https://ror.org/04gf11d56 Landscape Research Institute Výzkumný ústav pro kraj Výzkumný ústav pro krajinu, v. v. i'),
(104949, 'https://ror.org/04pjvvb04', 'en', 1, 'https://ror.org/04pjvvb04 Yamazaki Professional College of Animal Health Technology ćƒ¤ćƒžć‚¶ć‚­å‹•ē‰©ēœ‹č­·å°‚é–€č·ēŸ­ęœŸå¤§å­¦'),
(104950, 'https://ror.org/04ee64434', 'en', 1, 'https://ror.org/04ee64434 Functional Water Foundation äø€čˆ¬č²”å›£ę³•äŗŗę©Ÿčƒ½ę°“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(104951, 'https://ror.org/00de23h54', 'en', 1, 'https://ror.org/00de23h54 Japan Dairy Industry Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä¹³ę„­å”ä¼š'),
(104952, 'https://ror.org/00w6b2w91', 'en', 1, 'https://ror.org/00w6b2w91 Agricultural Development and Training Center äø€čˆ¬ē¤¾å›£ę³•äŗŗč¾²ę„­é–‹ē™ŗē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(104953, 'https://ror.org/004aqbt71', 'es', 1, 'https://ror.org/004aqbt71 Instituto Interuniversitario de Investigación Avanzada sobre Evaluación de la Ciencia y la Universidad Research Institute for Higher Education and Science'),
(104954, 'https://ror.org/0221vgq66', 'en', 1, 'https://ror.org/0221vgq66 The Overseas Coastal Area Development Institute of Japan äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›č‡Øęµ·é–‹ē™ŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(104955, 'https://ror.org/023cyha02', 'en', 1, 'https://ror.org/023cyha02 United States Northern Command'),
(104956, 'https://ror.org/01gbjs041', 'en', 1, 'https://ror.org/01gbjs041 Laghman University لغمان Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(104957, 'https://ror.org/0022tw254', 'en', 1, 'https://ror.org/0022tw254 Jacobs (Australia) Jacobs Australia Pty Ltd'),
(104958, 'https://ror.org/02as3rh88', 'en', 1, 'https://ror.org/02as3rh88 Institut za proučavanje lekovitog bilja "Dr Josif Pančić" u Beogradu Institute for Medicinal Plants Research "dr Josif Pančić"'),
(104959, 'https://ror.org/00b9mr468', 'fr', 1, 'https://ror.org/00b9mr468 Ecole Nationale Polytechnique de Constantine'),
(104960, 'https://ror.org/01bd3ye13', 'en', 1, 'https://ror.org/01bd3ye13 Asahi Group Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚µćƒ’ć‚°ćƒ«ćƒ¼ćƒ—å­¦č”“ęŒÆčˆˆč²”å›£'),
(104961, 'https://ror.org/01f0xj683', 'en', 1, 'https://ror.org/01f0xj683 Japan Family Planning Association, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å®¶ę—čØˆē”»å”ä¼š'),
(104962, 'https://ror.org/048dxy086', 'en', 1, 'https://ror.org/048dxy086 Matsuyama International Center å…¬ē›Šč²”å›£ę³•äŗŗę¾å±±å›½éš›äŗ¤ęµå”ä¼š'),
(104963, 'https://ror.org/04agvdf86', 'en', 1, 'https://ror.org/04agvdf86 AIC Yaesu Clinic åŒ»ē™‚ę³•äŗŗē¤¾å›£č±Šę™ŗä¼šAICå…«é‡ę“²ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(104964, 'https://ror.org/041yds613', 'en', 1, 'https://ror.org/041yds613 Niigata Psychiatric Center ę–°ę½ŸēœŒē«‹ē²¾ē„žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(104965, 'https://ror.org/03ktesd60', 'en', 1, 'https://ror.org/03ktesd60 Bayazid Rokhan Institute of Higher Education'),
(104966, 'https://ror.org/05xejcn14', 'en', 1, 'https://ror.org/05xejcn14 The Japanese Orthopaedic Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę•“å½¢å¤–ē§‘å­¦ä¼š'),
(104967, 'https://ror.org/04swqsn39', 'en', 1, 'https://ror.org/04swqsn39 The Calamity Science Institute äø€čˆ¬č²”å›£ę³•äŗŗē½å®³ē§‘å­¦ē ”ē©¶ę‰€'),
(104968, 'https://ror.org/04kwn1e80', 'en', 1, 'https://ror.org/04kwn1e80 Saitama International Association å…¬ē›Šč²”å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(104969, 'https://ror.org/00kb6va54', 'it', 1, 'https://ror.org/00kb6va54 Consorzio Polo Tecnologico Magona'),
(104970, 'https://ror.org/05cd3cw56', 'en', 1, 'https://ror.org/05cd3cw56 Association of New Urban Housing Technology äø€čˆ¬ē¤¾å›£ę³•äŗŗę–°éƒ½åø‚ćƒć‚¦ć‚øćƒ³ć‚°å”ä¼š'),
(104971, 'https://ror.org/00dzsfb89', 'en', 1, 'https://ror.org/00dzsfb89 Glass MANUFACTURERS'' Association Of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”å­č£½å“å·„ę„­ä¼š'),
(104972, 'https://ror.org/00y0zne44', 'en', 1, 'https://ror.org/00y0zne44 Japan Center for Area Development Research äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åœ°åŸŸé–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(104973, 'https://ror.org/05n3gf051', 'en', 1, 'https://ror.org/05n3gf051 Abdulrahman Al-Sumait University Ų¬Ų§Ł…Ų¹Ų© عبدالرحمن Ų§Ł„Ų³Ł…ŁŠŲ·'),
(104974, 'https://ror.org/00bsmzd39', 'en', 1, 'https://ror.org/00bsmzd39 Japan Plywood Inspection Corporation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åˆęæę¤œęŸ»ä¼š'),
(104975, 'https://ror.org/010f84q38', 'en', 1, 'https://ror.org/010f84q38 IDEA College, Malta'),
(104976, 'https://ror.org/017f85t98', 'en', 1, 'https://ror.org/017f85t98 Kanagawa Industrial Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗē„žå„ˆå·ē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(104977, 'https://ror.org/01vp99c97', 'es', 1, 'https://ror.org/01vp99c97 College of Mexico El Colegio de MƩxico'),
(104978, 'https://ror.org/0192dpg52', 'en', 1, 'https://ror.org/0192dpg52 The Remote Sensing Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒŖćƒ¢ćƒ¼ćƒˆć‚»ćƒ³ć‚·ćƒ³ć‚°å­¦ä¼š'),
(104979, 'https://ror.org/041k23c94', 'en', 1, 'https://ror.org/041k23c94 Agriculture & Livestock Industries Corporation ē‹¬ē«‹č”Œę”æę³•äŗŗč¾²ē•œē”£ę„­ęŒÆčˆˆę©Ÿę§‹'),
(104980, 'https://ror.org/04mdct971', 'en', 1, 'https://ror.org/04mdct971 Japan Society for Safety Engineering ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗå®‰å…Øå·„å­¦ä¼š'),
(104981, 'https://ror.org/008740n09', 'en', 1, 'https://ror.org/008740n09 Humanitec Junior College ćƒ¦ćƒžćƒ‹ćƒ†ć‚ÆēŸ­ęœŸå¤§å­¦'),
(104982, 'https://ror.org/05c85ns62', 'en', 1, 'https://ror.org/05c85ns62 Kanazawa Seiryo University é‡‘ę²¢ę˜ŸēØœå¤§å­¦'),
(104983, 'https://ror.org/0183qt302', 'en', 1, 'https://ror.org/0183qt302 Japan Media Communication Center äø€čˆ¬č²”å›£ę³•äŗŗę”¾é€ē•Ŗēµ„å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(104984, 'https://ror.org/04m1b9565', 'en', 1, 'https://ror.org/04m1b9565 Japan Telework Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ†ćƒ¬ćƒÆćƒ¼ć‚Æå”ä¼š'),
(104985, 'https://ror.org/024wb5k07', 'en', 1, 'https://ror.org/024wb5k07 Yokohama Sports Association å…¬ē›Šč²”å›£ę³•äŗŗęØŖęµœåø‚ä½“č‚²å”ä¼š'),
(104986, 'https://ror.org/04g8ye561', 'en', 1, 'https://ror.org/04g8ye561 United States European Command'),
(104987, 'https://ror.org/03cymxs77', 'en', 1, 'https://ror.org/03cymxs77 Medical Corporation Kyowakai Senri Chuo Hospital åŒ»ē™‚ę³•äŗŗå”å’Œä¼šåƒé‡Œäø­å¤®ē—…é™¢'),
(104988, 'https://ror.org/039td7v51', 'en', 1, 'https://ror.org/039td7v51 The Japan Federation of Engineering Societies å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å·„å­¦ä¼š'),
(104989, 'https://ror.org/0113jvc39', 'en', 1, 'https://ror.org/0113jvc39 Nihon Ki-in å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę£‹é™¢'),
(104990, 'https://ror.org/037kggh38', 'en', 1, 'https://ror.org/037kggh38 Southern Philippines Agri-Business and Marine and Aquatic School of Technology'),
(104991, 'https://ror.org/04q6w3b25', 'en', 1, 'https://ror.org/04q6w3b25 Society of Automotive Engineers of Japan, Inc. å…¬ē›Šē¤¾å›£ę³•äŗŗč‡Ŗå‹•č»ŠęŠ€č”“ä¼š'),
(104992, 'https://ror.org/00ypk1e52', 'en', 1, 'https://ror.org/00ypk1e52 Al Maaref University Ų¬Ų§Ł…Ų¹Ų© المعارف'),
(104993, 'https://ror.org/029fmre22', 'en', 1, 'https://ror.org/029fmre22 Chiba Aiyukai Kinen Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę„›å‹ä¼šåƒč‘‰ę„›å‹ä¼ščØ˜åæµē—…é™¢'),
(104994, 'https://ror.org/00mx8nh75', 'en', 1, 'https://ror.org/00mx8nh75 Chiba City International Association å…¬ē›Šč²”å›£ę³•äŗŗåƒč‘‰åø‚å›½éš›äŗ¤ęµå”ä¼š'),
(104995, 'https://ror.org/02e2yrp11', 'en', 1, 'https://ror.org/02e2yrp11 The Japan Council of Traffic Science äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬äŗ¤é€šē§‘å­¦å­¦ä¼š'),
(104996, 'https://ror.org/02zgnng91', 'en', 1, 'https://ror.org/02zgnng91 Niigata City Institute of Public Health and Environment ę–°ę½Ÿåø‚č”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(104997, 'https://ror.org/0566rpx77', 'en', 1, 'https://ror.org/0566rpx77 United States Strategic Command'),
(104998, 'https://ror.org/04pg51e30', 'en', 1, 'https://ror.org/04pg51e30 Government Pension Investment Fund å¹“é‡‘ē©ē«‹é‡‘ē®”ē†é‹ē”Øē‹¬ē«‹č”Œę”æę³•äŗŗ'),
(104999, 'https://ror.org/02nq0tm67', 'en', 1, 'https://ror.org/02nq0tm67 Kenkoigaku Associaton äø€čˆ¬č²”å›£ę³•äŗŗå„åŗ·åŒ»å­¦å”ä¼š'),
(105000, 'https://ror.org/00hjz5209', 'en', 1, 'https://ror.org/00hjz5209 European Infrastructure for Translational Medicine'),
(105001, 'https://ror.org/017rk2s63', 'en', 1, 'https://ror.org/017rk2s63 Tochigi Mental Health & Welfare Center ę ƒęœØēœŒē²¾ē„žäæå„ē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼'),
(105002, 'https://ror.org/0241n6h40', 'en', 1, 'https://ror.org/0241n6h40 Japan Civil engineering Consultants Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå»ŗčØ­ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒ„å”ä¼š'),
(105003, 'https://ror.org/02ndn7046', 'en', 1, 'https://ror.org/02ndn7046 Information Center For Petroleum Exploration And Production äø€čˆ¬č²”å›£ę³•äŗŗēŸ³ę²¹é–‹ē™ŗęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(105004, 'https://ror.org/01sx1pm50', 'no_lang_code', 1, 'https://ror.org/01sx1pm50 Rockwell Automation (United States)'),
(105005, 'https://ror.org/04rnn2c07', 'en', 1, 'https://ror.org/04rnn2c07 Dr. Subhash University'),
(105006, 'https://ror.org/021fqaq27', 'en', 1, 'https://ror.org/021fqaq27 American International University Kuwait'),
(105007, 'https://ror.org/04v2qcm44', 'fr', 1, 'https://ror.org/04v2qcm44 CIRAD - Direction gƩnƩrale dƩlƩguƩe aux ressources et aux dispositifs CIRAD-Office of the Director General in charge of Resources and Organization'),
(105008, 'https://ror.org/05pzmc409', 'en', 1, 'https://ror.org/05pzmc409 Okinawa Prefectural Police ę²–ēø„ēœŒč­¦åÆŸ'),
(105009, 'https://ror.org/04hmhe775', 'en', 1, 'https://ror.org/04hmhe775 Institute for Balkan Studies SASA Š‘Š°Š»ŠŗŠ°Š½Š¾Š»Š¾ŃˆŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š‘Š°Š»ŠŗŠ°Š½Š¾Š»Š¾ŃˆŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дрпске акаГемије наука Šø ŃƒŠ¼ŠµŃ‚Š½Š¾ŃŃ‚Šø'),
(105010, 'https://ror.org/0530evv80', 'en', 1, 'https://ror.org/0530evv80 Japan Lighting Manufacturers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē…§ę˜Žå·„ę„­ä¼š'),
(105011, 'https://ror.org/03m694081', 'en', 1, 'https://ror.org/03m694081 Institute for HyperNetwork Society å…¬ē›Šč²”å›£ę³•äŗŗćƒć‚¤ćƒ‘ćƒ¼ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æē¤¾ä¼šē ”ē©¶ę‰€'),
(105012, 'https://ror.org/01fsjjr57', 'en', 1, 'https://ror.org/01fsjjr57 Ski Association of Japan å…¬ē›Šč²”å›£ę³•äŗŗå…Øę—„ęœ¬ć‚¹ć‚­ćƒ¼é€£ē›Ÿ'),
(105013, 'https://ror.org/017g9a849', 'en', 1, 'https://ror.org/017g9a849 Foundation for MultiMedia Communications äø€čˆ¬č²”å›£ę³•äŗŗćƒžćƒ«ćƒćƒ”ćƒ‡ć‚£ć‚¢ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(105014, 'https://ror.org/01971q181', 'en', 1, 'https://ror.org/01971q181 Japan Geotechnical Consultants Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½åœ°č³ŖčŖæęŸ»ę„­å”ä¼šé€£åˆä¼š'),
(105015, 'https://ror.org/03bvv1786', 'en', 1, 'https://ror.org/03bvv1786 Springer Nature (Nanjing, China)'),
(105016, 'https://ror.org/03y5vba12', 'en', 1, 'https://ror.org/03y5vba12 National Land Planning Association äø€čˆ¬č²”å›£ę³•äŗŗå›½åœŸčØˆē”»å”ä¼š'),
(105017, 'https://ror.org/04fz66x85', 'en', 1, 'https://ror.org/04fz66x85 The Accessible Design Foundation of Japan å…¬ē›Šč²”å›£ę³•äŗŗå…±ē”Øå“ęŽØé€²ę©Ÿę§‹'),
(105018, 'https://ror.org/00yf32w91', 'en', 1, 'https://ror.org/00yf32w91 Yokohama Minatomirai äø€čˆ¬ē¤¾å›£ę³•äŗŗęØŖęµœćæćŖćØćæć‚‰ć„21'),
(105019, 'https://ror.org/04ma40g91', 'en', 1, 'https://ror.org/04ma40g91 Japan Robot Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ­ćƒœćƒƒćƒˆå·„ę„­ä¼š'),
(105020, 'https://ror.org/05a733z41', 'en', 1, 'https://ror.org/05a733z41 Federal Housing Finance Agency'),
(105021, 'https://ror.org/007hv5983', 'en', 1, 'https://ror.org/007hv5983 Hokkaido Construction Technology Center äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“å»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(105022, 'https://ror.org/01gc0wp38', 'en', 1, 'https://ror.org/01gc0wp38 University Hospitals Cleveland Medical Center'),
(105023, 'https://ror.org/03sbefh90', 'en', 1, 'https://ror.org/03sbefh90 United States Air Mobility Command'),
(105024, 'https://ror.org/03xv17r49', 'en', 1, 'https://ror.org/03xv17r49 Sa''ada University Ų¬Ų§Ł…Ų¹Ų© ŲµŲ¹ŲÆŲ©'),
(105025, 'https://ror.org/01j21x531', 'en', 1, 'https://ror.org/01j21x531 Japan Elevator Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Øćƒ¬ćƒ™ćƒ¼ć‚æćƒ¼å”ä¼š'),
(105026, 'https://ror.org/05sh9gw40', 'en', 1, 'https://ror.org/05sh9gw40 Woogene B&G Co., Ltd. Woogene B&G Co., Ltd. (South Korea) ģš°ģ§„ė¹„ģ•¤ģ§€ ģ£¼ģ‹ķšŒģ‚¬'),
(105027, 'https://ror.org/05083wh51', 'en', 1, 'https://ror.org/05083wh51 United States Pacific Fleet'),
(105028, 'https://ror.org/04tz4vh74', 'en', 1, 'https://ror.org/04tz4vh74 University Ahmed Zabana of Relizane Ų¬Ų§Ł…Ų¹Ų© Ų£Ų­Ł…ŲÆ زبانة - ŲŗŁ„ŁŠŲ²Ų§Ł†'),
(105029, 'https://ror.org/045n75910', 'en', 1, 'https://ror.org/045n75910 UL Research Institutes'),
(105030, 'https://ror.org/033m6bb51', 'en', 1, 'https://ror.org/033m6bb51 Japan Atomic Energy Relations Organization äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åŽŸå­åŠ›ę–‡åŒ–č²”å›£'),
(105031, 'https://ror.org/05y184w12', 'en', 1, 'https://ror.org/05y184w12 New Energy Foundation äø€čˆ¬č²”å›£ę³•äŗŗę–°ć‚Øćƒćƒ«ć‚®ćƒ¼č²”å›£');
INSERT INTO `rors` VALUES
(105032, 'https://ror.org/01k5ave46', 'en', 1, 'https://ror.org/01k5ave46 Fukui Prefectural Environmental Radiation Research and Monitoring Center ē¦äŗ•ēœŒåŽŸå­åŠ›ē’°å¢ƒē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(105033, 'https://ror.org/02tf01n02', 'en', 1, 'https://ror.org/02tf01n02 Japan Table Tennis Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å“ēƒå”ä¼š'),
(105034, 'https://ror.org/00tne8j02', 'en', 1, 'https://ror.org/00tne8j02 Gifu Seiryu Hospital åŒ»ē™‚ę³•äŗŗęø…å…‰ä¼šå²é˜œęø…ęµē—…é™¢'),
(105035, 'https://ror.org/0528tq312', 'pt', 1, 'https://ror.org/0528tq312 Faculdade de Tecnologia da Zona Leste'),
(105036, 'https://ror.org/013yhev13', 'en', 1, 'https://ror.org/013yhev13 Japanese Association of Neuro-Psychiatric Clinics å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē²¾ē„žē„žēµŒē§‘čØŗē™‚ę‰€å”ä¼š'),
(105037, 'https://ror.org/059j2wh09', 'en', 1, 'https://ror.org/059j2wh09 United States Naval Forces Central Command'),
(105038, 'https://ror.org/024d9fq04', 'pt', 1, 'https://ror.org/024d9fq04 Associação Brasileira de Estudos do Trabalho'),
(105039, 'https://ror.org/05xnn8353', 'en', 1, 'https://ror.org/05xnn8353 Japan Greenery Research and Development Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē·‘åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(105040, 'https://ror.org/00p46er52', 'en', 1, 'https://ror.org/00p46er52 Japan Groundwork Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚°ćƒ©ć‚¦ćƒ³ćƒ‰ćƒÆćƒ¼ć‚Æå”ä¼š'),
(105041, 'https://ror.org/005bf9897', 'en', 1, 'https://ror.org/005bf9897 Fire Technology and Safety Laboratory, Tokyo Fire Department ę±äŗ¬ę¶ˆé˜²åŗę¶ˆé˜²ęŠ€č”“å®‰å…Øę‰€'),
(105042, 'https://ror.org/002srw947', 'en', 1, 'https://ror.org/002srw947 Saito Koyu Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗč„æéƒ½å…ę¹ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(105043, 'https://ror.org/01h399f18', 'en', 1, 'https://ror.org/01h399f18 Japan Marine Oil Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę°“ē”£ę²¹č„‚å”ä¼š'),
(105044, 'https://ror.org/04f0mr516', 'en', 1, 'https://ror.org/04f0mr516 Japan Karatedo Federation å…¬ē›Šč²”å›£ę³•äŗŗå…Øę—„ęœ¬ē©ŗę‰‹é“é€£ē›Ÿ'),
(105045, 'https://ror.org/04xn08160', 'en', 1, 'https://ror.org/04xn08160 Tatra National Park Tatrzański Park Narodowy'),
(105046, 'https://ror.org/04eh0c412', 'en', 1, 'https://ror.org/04eh0c412 Foundation for Advancement of Essential Diagnostics'),
(105047, 'https://ror.org/037rcz246', 'en', 1, 'https://ror.org/037rcz246 Ibaraki International Association å…¬ē›Šč²”å›£ę³•äŗŗčŒØåŸŽēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(105048, 'https://ror.org/02sr5qc36', 'pt', 1, 'https://ror.org/02sr5qc36 Centro UniversitĆ”rio Cesusc – UNICESUSC'),
(105049, 'https://ror.org/02cjet079', 'fr', 1, 'https://ror.org/02cjet079 Institut de France'),
(105050, 'https://ror.org/00wbqz082', 'en', 1, 'https://ror.org/00wbqz082 Australian College of Environmental Studies'),
(105051, 'https://ror.org/00hjps814', 'en', 1, 'https://ror.org/00hjps814 Showa College of Music ę˜­å’ŒéŸ³ę„½å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(105052, 'https://ror.org/042pns516', 'en', 1, 'https://ror.org/042pns516 Center for the Study of Democracy'),
(105053, 'https://ror.org/0437r5r80', 'en', 1, 'https://ror.org/0437r5r80 International Information Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗęƒ…å ±ē§‘å­¦å›½éš›äŗ¤ęµč²”å›£'),
(105054, 'https://ror.org/04b6xwk80', 'en', 1, 'https://ror.org/04b6xwk80 Japan Electronics and Information Technology Industries Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»å­ęƒ…å ±ęŠ€č”“ē”£ę„­å”ä¼š'),
(105055, 'https://ror.org/059vwwb84', 'en', 1, 'https://ror.org/059vwwb84 United States Fleet Cyber Command'),
(105056, 'https://ror.org/00v744p56', 'en', 1, 'https://ror.org/00v744p56 GREEN CROSS japan äø€čˆ¬č²”å›£ę³•äŗŗć‚°ćƒŖćƒ¼ćƒ³ć‚Æćƒ­ć‚¹ć‚øćƒ£ćƒ‘ćƒ³'),
(105057, 'https://ror.org/04gg5rd67', 'en', 1, 'https://ror.org/04gg5rd67 Wakayama Prefectural Livestock Experiment Station å’Œę­Œå±±ēœŒē•œē”£č©¦éØ“å “'),
(105058, 'https://ror.org/04n4ycp90', 'es', 1, 'https://ror.org/04n4ycp90 Advanced Neuroscience Institute of Barcelona Institut de Neurociència Avançada de Barcelona Instituto de Neurociencia Avanzada de Barcelona'),
(105059, 'https://ror.org/01syakj07', 'en', 1, 'https://ror.org/01syakj07 Sapporo Tokusyukai Medecal Corporation åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šęœ­å¹Œå¾³ę“²ä¼šē—…é™¢'),
(105060, 'https://ror.org/04mq2px33', 'fr', 1, 'https://ror.org/04mq2px33 GeoRessources'),
(105061, 'https://ror.org/00ew91b62', 'en', 1, 'https://ror.org/00ew91b62 Joint Vietnam-Russia Tropical Science and Technology Research Center Trung TĆ¢m Nhiệt Đới Việt - Nga Российско-Š’ŃŒŠµŃ‚Š½Š°Š¼ŃŠŗŠøŠ¹ тропический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø технологический центр'),
(105062, 'https://ror.org/05fvfp460', 'en', 1, 'https://ror.org/05fvfp460 Kanadevia Kanadevia (Japan) ć‚«ćƒŠćƒ‡ćƒ“ć‚¢ę Ŗå¼ä¼šē¤¾'),
(105063, 'https://ror.org/05q2acf12', 'en', 1, 'https://ror.org/05q2acf12 Indian Institute of Management Mumbai ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą„ą¤‚ą¤¬ą¤ˆ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą„ą¤Æą¤µą¤øą„ą¤„ą¤¾ą¤Ŗą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤®ą„ą¤‚ą¤¬ą¤ˆ'),
(105064, 'https://ror.org/01yv3d743', 'en', 1, 'https://ror.org/01yv3d743 Japan Oil Chemists'' Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę²¹åŒ–å­¦ä¼š'),
(105065, 'https://ror.org/010p88392', 'en', 1, 'https://ror.org/010p88392 Japan Fitness Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ•ć‚£ćƒƒćƒˆćƒć‚¹å”ä¼š'),
(105066, 'https://ror.org/02rr0k120', 'id', 1, 'https://ror.org/02rr0k120 LP2M Institut Teknologi dan Bisnis Asia Malang'),
(105067, 'https://ror.org/00s9amp20', 'en', 1, 'https://ror.org/00s9amp20 Japan Image and Information Management Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę–‡ę›øęƒ…å ±ćƒžćƒć‚øćƒ”ćƒ³ćƒˆå”ä¼š'),
(105068, 'https://ror.org/0195avp08', 'en', 1, 'https://ror.org/0195avp08 The Japan Machinery Federation äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę©Ÿę¢°å·„ę„­é€£åˆä¼š'),
(105069, 'https://ror.org/04gd29w40', 'en', 1, 'https://ror.org/04gd29w40 The Society for Teaching Japanese as a Foreign Language å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čŖžę•™č‚²å­¦ä¼š'),
(105070, 'https://ror.org/00qw7q473', 'en', 1, 'https://ror.org/00qw7q473 Toyama New Industry Organization å…¬ē›Šč²”å›£ę³•äŗŗåÆŒå±±ēœŒę–°äø–ē“€ē”£ę„­ę©Ÿę§‹'),
(105071, 'https://ror.org/00dfx2z56', 'en', 1, 'https://ror.org/00dfx2z56 Technology Institution of Industrial Safety å…¬ē›Šē¤¾å›£ę³•äŗŗē”£ę„­å®‰å…ØęŠ€č”“å”ä¼š'),
(105072, 'https://ror.org/04e764k96', 'en', 1, 'https://ror.org/04e764k96 Japan Society of Corrosion Engineering å…¬ē›Šē¤¾å›£ę³•äŗŗč…é£Ÿé˜²é£Ÿå­¦ä¼š'),
(105073, 'https://ror.org/03986ee65', 'en', 1, 'https://ror.org/03986ee65 Japan Gymnastics Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä½“ę“å”ä¼š'),
(105074, 'https://ror.org/025ccn685', 'en', 1, 'https://ror.org/025ccn685 Japanese Organization for International Cooperation in Family Planning å…¬ē›Šč²”å›£ę³•äŗŗć‚øćƒ§ć‚¤ć‚»ćƒ•'),
(105075, 'https://ror.org/034r3f481', 'en', 1, 'https://ror.org/034r3f481 Amano Institute of Technology å…¬ē›Šč²”å›£ę³•äŗŗå¤©é‡Žå·„ę„­ęŠ€č”“ē ”ē©¶ę‰€'),
(105076, 'https://ror.org/00wh8n595', 'en', 1, 'https://ror.org/00wh8n595 Westlake Robotics Westlake Robotics (China)'),
(105077, 'https://ror.org/02y6wk324', 'en', 1, 'https://ror.org/02y6wk324 Centre de Recherche en Anthropologie Sociale et Culturelle Centre of Research in Social and Cultural Anthropology Ł…Ų±ŁƒŲ² البحث في Ų§Ł„Ų£Ł†Ų«Ų±ŁˆŲØŁˆŲ¬ŁŠŲ§ Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŁŠŲ©'),
(105078, 'https://ror.org/04gzwnm37', 'en', 1, 'https://ror.org/04gzwnm37 Hatsutomi Hoken Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£äø€åæƒä¼šåˆåÆŒäæå„ē—…é™¢'),
(105079, 'https://ror.org/004tay810', 'en', 1, 'https://ror.org/004tay810 Military Sealift Command'),
(105080, 'https://ror.org/02gagwm66', 'en', 1, 'https://ror.org/02gagwm66 Kobe Parks and Greenery Association å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøåø‚å…¬åœ’ē·‘åŒ–å”ä¼š'),
(105081, 'https://ror.org/04m01e293', 'en', 1, 'https://ror.org/04m01e293 Prifysgol Efrog University of York'),
(105082, 'https://ror.org/018hy5194', 'en', 1, 'https://ror.org/018hy5194 Czech Academy of Sciences, Institute of Sociology Sociologický ústav AV ČR'),
(105083, 'https://ror.org/01vvnmw35', 'en', 1, 'https://ror.org/01vvnmw35 Forschungsinstitut für Nachhaltigkeit am GFZ Research Institute for Sustainability at GFZ'),
(105084, 'https://ror.org/0259r0013', 'en', 1, 'https://ror.org/0259r0013 Praxis Business School'),
(105085, 'https://ror.org/028n19d35', 'en', 1, 'https://ror.org/028n19d35 Celligenics Pte. Ltd. Celligenics Pte. Ltd. (Singapore)'),
(105086, 'https://ror.org/03fqqe674', 'en', 1, 'https://ror.org/03fqqe674 Davao Oriental State University'),
(105087, 'https://ror.org/02szraf30', 'en', 1, 'https://ror.org/02szraf30 Goethe Institut Goethe Institute'),
(105088, 'https://ror.org/03d0p2685', 'en', 1, 'https://ror.org/03d0p2685 Helmholtz Centre for Infection Research Helmholtz-Zentrum für Infektionsforschung'),
(105089, 'https://ror.org/02jtk7k02', 'en', 1, 'https://ror.org/02jtk7k02 Technical University of Liberec TechnickĆ” univerzita v Liberci'),
(105090, 'https://ror.org/00r3jwh90', 'en', 1, 'https://ror.org/00r3jwh90 Budapest University of Economics and Business Budapesti GazdasƔgi Egyetem'),
(105091, 'https://ror.org/028ngjx88', 'es', 1, 'https://ror.org/028ngjx88 Centro de Investigaciones en GeografĆ­a Ambiental'),
(105092, 'https://ror.org/020wkc787', 'en', 1, 'https://ror.org/020wkc787 QIB Extra Ltd QIB Extra Ltd (United Kingdom)'),
(105093, 'https://ror.org/03tc3ph72', 'en', 1, 'https://ror.org/03tc3ph72 Sempra Energy Sempra Energy (United States)'),
(105094, 'https://ror.org/05b1yn577', 'en', 1, 'https://ror.org/05b1yn577 Royal Metropolitan University'),
(105095, 'https://ror.org/00gcaxc92', 'es', 1, 'https://ror.org/00gcaxc92 Instituto Tecnológico Superior de la Región Sierra'),
(105096, 'https://ror.org/04tz2h245', 'en', 1, 'https://ror.org/04tz2h245 Center for Research in Agricultural Genomics Centre de Recerca en Agrigenomica Centre de Recerca en Agrigenòmica'),
(105097, 'https://ror.org/01rbbya36', 'es', 1, 'https://ror.org/01rbbya36 Instituto de Investigaciones Filosóficas'),
(105098, 'https://ror.org/015hz7p22', 'ca', 1, 'https://ror.org/015hz7p22 Museo de Ciencias Naturales de Barcelona Museu de CiĆØncies Naturals de Barcelona'),
(105099, 'https://ror.org/03qc4m595', 'es', 1, 'https://ror.org/03qc4m595 Unidad de Investigación sobre Representaciones Culturales y Sociales'),
(105100, 'https://ror.org/00kwqrp22', 'en', 1, 'https://ror.org/00kwqrp22 Yueyang Vocational Technical College å²³é˜³čŒäøšęŠ€ęœÆå­¦é™¢'),
(105101, 'https://ror.org/04q2cht42', 'it', 1, 'https://ror.org/04q2cht42 High Pressure-High Temperature Laboratory of the Istituto Nazionale di Geofisica e Vulcanologia of Rome Laboratorio per le Alte Pressioni e Alte Temperature di Geofisica e Vulcanologia Sperimentali'),
(105102, 'https://ror.org/04mtej177', 'en', 1, 'https://ror.org/04mtej177 Al-Kunooze University ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁ†ŁˆŲ² الجامعة'),
(105103, 'https://ror.org/02j4mf075', 'id', 1, 'https://ror.org/02j4mf075 Haluoleo University Universitas Halu Oleo'),
(105104, 'https://ror.org/03d5zgz97', 'en', 1, 'https://ror.org/03d5zgz97 Ministry of Municipal Affairs, Regions and Land Occupancy MinistĆØre des Affaires Municipales et de l''Occupation du Territoire'),
(105105, 'https://ror.org/04x4znw66', 'en', 1, 'https://ror.org/04x4znw66 Pierre Auger Observatory'),
(105106, 'https://ror.org/02hyvqv96', 'en', 1, 'https://ror.org/02hyvqv96 Sexuality Education Resource Centre'),
(105107, 'https://ror.org/02kgjn162', 'no_lang_code', 1, 'https://ror.org/02kgjn162 Union Nikola Tesla University Univerzitet Union Nikola Tesla Универзитет Унион ŠŠøŠŗŠ¾Š»Š° Тесла'),
(105108, 'https://ror.org/059hk2233', 'en', 1, 'https://ror.org/059hk2233 University Center of Illizi'),
(105109, 'https://ror.org/05sajct49', 'en', 1, 'https://ror.org/05sajct49 Barcelona Biomedical Research Park Parc de Recerca Biomèdica de Barcelona Parque de Investigación Biomédica de Barcelona'),
(105110, 'https://ror.org/016av6b15', 'de', 1, 'https://ror.org/016av6b15 Max Weber Network Eastern Europe Max Weber Netzwerk Osteuropa'),
(105111, 'https://ror.org/05s4nk876', 'en', 1, 'https://ror.org/05s4nk876 Endo-ERN'),
(105112, 'https://ror.org/05hcacp57', 'en', 1, 'https://ror.org/05hcacp57 Agricultural Research Center'),
(105113, 'https://ror.org/04jybm820', 'en', 1, 'https://ror.org/04jybm820 Wadi Alshatti University Ų¬Ų§Ł…Ų¹Ų© وادي الؓاطئ'),
(105114, 'https://ror.org/000b3gw41', 'it', 1, 'https://ror.org/000b3gw41 Agenzia Regionale per la Protezione dell''Ambiente Campania'),
(105115, 'https://ror.org/001bgrc10', 'en', 1, 'https://ror.org/001bgrc10 Hellenic Society of Emergency Prehospital Care Ελληνική Εταιρεία Ī•Ļ€ĪµĪÆĪ³ĪæĻ…ĻƒĪ±Ļ‚ Ī ĻĪæĪ½ĪæĻƒĪæĪŗĪæĪ¼ĪµĪ¹Ī±ĪŗĪ®Ļ‚ ΦροντίΓας'),
(105116, 'https://ror.org/03hjekm25', 'en', 1, 'https://ror.org/03hjekm25 Czech Academy of Sciences, Institute of Experimental Medicine Ústav experimentĆ”lnĆ­ medicĆ­ny AV ČR Ústav experimentĆ”lnĆ­ medicĆ­ny AV ČR, v. v. i. Ústav experimentĆ”lnĆ­ medicĆ­ny AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105117, 'https://ror.org/006xxv571', 'en', 1, 'https://ror.org/006xxv571 Mobius Labs GmbH (Germany)'),
(105118, 'https://ror.org/04n210m18', 'it', 1, 'https://ror.org/04n210m18 Agenzia Provinciale per l’ambiente e la tutela del clima'),
(105119, 'https://ror.org/03mnd0t64', 'es', 1, 'https://ror.org/03mnd0t64 Universitario de Formación'),
(105120, 'https://ror.org/01ydp2x12', 'fr', 1, 'https://ror.org/01ydp2x12 Centre Procédés, Energies Renouvelables et Systèmes Energétiques Centre for Processes, Renewable Energies and Energy Systems Mines Paris, PSL University, Centre for processes, renewable energies and energy systems (PERSEE) Mines Paris, Université PSL, Centre Procédés Energies Renouvelables et Systèmes Energétiques (PERSEE)'),
(105121, 'https://ror.org/05y6sxq90', 'en', 1, 'https://ror.org/05y6sxq90 Osaka Tokiwakai Junior College 大阪常磐会大学短期大学部'),
(105122, 'https://ror.org/05cx2q110', 'en', 1, 'https://ror.org/05cx2q110 St Joseph''s University, Bengaluru, India'),
(105123, 'https://ror.org/03dx15n64', 'en', 1, 'https://ror.org/03dx15n64 Autodesk (Singapore) Autodesk Asia Pte Ltd'),
(105124, 'https://ror.org/05p7zpp88', 'fr', 1, 'https://ror.org/05p7zpp88 Centre de Recherche sur les Risques et les Crises Centre for Research on Risks and Crises'),
(105125, 'https://ror.org/02eczew70', 'es', 1, 'https://ror.org/02eczew70 Fundación JardĆ­n BotĆ”nico ā€œJoaquĆ­n Antonio Uribeā€ de MedellĆ­n'),
(105126, 'https://ror.org/04y9a5y12', 'en', 1, 'https://ror.org/04y9a5y12 Civil Aviation Authority of Singapore'),
(105127, 'https://ror.org/03va0yq34', 'fr', 1, 'https://ror.org/03va0yq34 ERN ITHACA'),
(105128, 'https://ror.org/01y01jq30', 'de', 1, 'https://ror.org/01y01jq30 Dresden College of Music Hochschule für Musik Dresden'),
(105129, 'https://ror.org/053brmk41', 'fr', 1, 'https://ror.org/053brmk41 Association des Annales de l''institut Fourier'),
(105130, 'https://ror.org/02mgmsz22', 'fr', 1, 'https://ror.org/02mgmsz22 Gouvernance et dƩveloppement insulaire'),
(105131, 'https://ror.org/00yz0w484', 'en', 1, 'https://ror.org/00yz0w484 CHRIST (Deemed to be) University, Delhi NCR'),
(105132, 'https://ror.org/012295r09', 'en', 1, 'https://ror.org/012295r09 Belgrade Business and Arts Academy of Applied Studies'),
(105133, 'https://ror.org/03jty3219', 'en', 1, 'https://ror.org/03jty3219 A.E. Arbuzov Institute of Organic and Physical Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органической Šø физической химии им. А. Š•. ŠŃ€Š±ŃƒŠ·Š¾Š²Š° Казанского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(105134, 'https://ror.org/0143w7709', 'en', 1, 'https://ror.org/0143w7709 Czech Academy of Sciences, Institute of Macromolecular Chemistry Ústav makromolekulĆ”rnĆ­ chemie AV ČR Ústav makromolekulĆ”rnĆ­ chemie AV ČR, v. v. i. Ústav makromolekulĆ”rnĆ­ chemie AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105135, 'https://ror.org/04krhg278', 'en', 1, 'https://ror.org/04krhg278 Asian Office of Aerospace Research and Development'),
(105136, 'https://ror.org/02hr47071', 'en', 1, 'https://ror.org/02hr47071 Center for International Relations and International Security'),
(105137, 'https://ror.org/0287zzv25', 'es', 1, 'https://ror.org/0287zzv25 Centro Interdisciplinario de Estudios Complejos'),
(105138, 'https://ror.org/01yzs6492', 'en', 1, 'https://ror.org/01yzs6492 Canadian Coast Guard Garde cÓtière canadienne'),
(105139, 'https://ror.org/038kp1442', 'en', 1, 'https://ror.org/038kp1442 Minnesota Supercomputing Institute'),
(105140, 'https://ror.org/03r547v08', 'en', 1, 'https://ror.org/03r547v08 COMPASS – Tokamak for Thermonuclear Fusion Research COMPASS – Tokamak pro výzkum termonukleĆ”rnĆ­ fĆŗze'),
(105141, 'https://ror.org/059hmwv16', 'en', 1, 'https://ror.org/059hmwv16 Qaujigiartiit Health Research Centre'),
(105142, 'https://ror.org/0496n6574', 'en', 1, 'https://ror.org/0496n6574 Czech Academy of Sciences, Institute of Computer Science Ústav informatiky AV ČR Ústav informatiky AV ČR, v. v. i. Ústav informatiky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105143, 'https://ror.org/048ks4z66', 'en', 1, 'https://ror.org/048ks4z66 Ministerium für Umwelt, Landwirtschaft, Natur- und Verbraucherschutz des Landes Nordrhein-Westfalen Ministry for Environment, Agriculture, Conservation and Consumer Protection'),
(105144, 'https://ror.org/03pxref83', 'it', 1, 'https://ror.org/03pxref83 Agenzia Regionale per la Prevenzione e Protezione Ambientale del Veneto'),
(105145, 'https://ror.org/00003ef66', 'en', 1, 'https://ror.org/00003ef66 All India Institute of Ayurveda, New Delhi'),
(105146, 'https://ror.org/05j8ejf75', 'id', 1, 'https://ror.org/05j8ejf75 Universitas Islam Negeri Sulthan Thaha Saifuddin Jambi'),
(105147, 'https://ror.org/01qvdmc93', 'en', 0, 'https://ror.org/01qvdmc93 Lutheran Theological Seminary at Gettysburg'),
(105148, 'https://ror.org/01e666568', 'en', 1, 'https://ror.org/01e666568 Seoul Digital University'),
(105149, 'https://ror.org/02sat5y74', 'en', 1, 'https://ror.org/02sat5y74 Czech Acad Sci, J Heyrovský Inst Phys Chem Czech Academy of Sciences, J. Heyrovský Institute of Physical Chemistry J. Heyrovský Institute of Physical Chemistry CAS Ústav fyzikÔlní chemie J. Heyrovského AV ČR'),
(105150, 'https://ror.org/01evtvs57', 'en', 1, 'https://ror.org/01evtvs57 European Solar Telescope – participation of the Czech Republic Evropský slunečnĆ­ teleskop Evropský slunečnĆ­ teleskop – ĆŗÄast ČR'),
(105151, 'https://ror.org/03m4qdj85', 'fr', 1, 'https://ror.org/03m4qdj85 Laboratoire d''Informatique en Calcul Intensif et Image pour la Simulation'),
(105152, 'https://ror.org/0535vdw70', 'en', 1, 'https://ror.org/0535vdw70 National Institute of Education, Sri Lanka'),
(105153, 'https://ror.org/042jtbg10', 'en', 1, 'https://ror.org/042jtbg10 Sumathi Reddy Institute of Technology for Women'),
(105154, 'https://ror.org/02bctx354', 'fr', 1, 'https://ror.org/02bctx354 DigiHub (Canada)'),
(105155, 'https://ror.org/04crk2m06', 'en', 1, 'https://ror.org/04crk2m06 ERN BOND'),
(105156, 'https://ror.org/019gydp64', 'en', 1, 'https://ror.org/019gydp64 Institute of Mineralogy and Crystallography "Acad. Ivan Kostov" Bulgarian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ По ŠœŠøŠ½ŠµŃ€Š°Š»Š¾Š³ŠøŃ И ŠšŃ€ŠøŃŃ‚Š°Š»Š¾Š³Ń€Š°Ń„ŠøŃ ā€œŠŠŗŠ°Š“. Иван ŠšŠ¾ŃŃ‚Š¾Š²ā€ Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ° ŠŠ°ŃƒŠŗŠøŃ‚Šµ'),
(105157, 'https://ror.org/04rnfrn04', 'en', 1, 'https://ror.org/04rnfrn04 Center for Psychobiology and Behavioral Medicine Institut für Psychobiologie und Verhaltensmedizin'),
(105158, 'https://ror.org/00n9h3r02', 'en', 1, 'https://ror.org/00n9h3r02 Novorossiysk Polytechnic Institute ŠŠ¾Š²Š¾Ń€Š¾ŃŃŠøŠ¹ŃŠŗŠøŠ¹ политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(105159, 'https://ror.org/055j8ya05', 'no_lang_code', 1, 'https://ror.org/055j8ya05 RELX Group (United Kingdom)'),
(105160, 'https://ror.org/05me1q676', 'en', 1, 'https://ror.org/05me1q676 Infrastructure for Promoting Metrology in Food and Nutrition in the Czech Republic Infrastruktura pro propagaci metrologie v potravinÔřstvĆ­ a výživě v ČR'),
(105161, 'https://ror.org/01zh80k81', 'en', 1, 'https://ror.org/01zh80k81 Hungarian University of Sports Science'),
(105162, 'https://ror.org/04tmh0n51', 'fr', 1, 'https://ror.org/04tmh0n51 Institut FranƧais de l''Ɖducation'),
(105163, 'https://ror.org/01emts431', 'en', 1, 'https://ror.org/01emts431 Academy of Applied Studies Å abac Akademija strukovnih studija Å abac АкаГемија ŃŃ‚Ń€ŃƒŠŗŠ¾Š²Š½ŠøŃ… ŃŃ‚ŃƒŠ“ŠøŃ˜Š° Шабац'),
(105164, 'https://ror.org/02syf1597', 'en', 1, 'https://ror.org/02syf1597 American University of Kurdistan Kürdistan Amerikan Üniversitesi Universitas Americana Kurdistanensis ZanĆ®ngeha AmerĆ®kayĆ® ya KurdistanĆŖ الجامعة_Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ©_في_ŲÆŁ‡ŁˆŁƒ'),
(105165, 'https://ror.org/01e70kg07', 'en', 1, 'https://ror.org/01e70kg07 Munger University ą¤®ą„ą¤‚ą¤—ą„‡ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(105166, 'https://ror.org/056ncc580', 'en', 1, 'https://ror.org/056ncc580 The Align Foundation'),
(105167, 'https://ror.org/01y3ft232', 'en', 1, 'https://ror.org/01y3ft232 Czech Academy of Sciences, Economics Institute Ekonomický Ćŗstav AV ČR Ekonomický Ćŗstav AV ČR, v. v. i. Ekonomický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce NĆ”rodohospodÔřský Ćŗstav AV ČR'),
(105168, 'https://ror.org/0403vsj52', 'en', 1, 'https://ror.org/0403vsj52 Turkish Association for Landscape Architecture Education and Science'),
(105169, 'https://ror.org/01hsjcv06', 'en', 1, 'https://ror.org/01hsjcv06 Czech Academy of Sciences, Institute of Inorganic Chemistry Ústav anorganickĆ© chemie AV ČR Ústav anorganickĆ© chemie AV ČR, v. v. i. Ústav anorganickĆ© chemie AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105170, 'https://ror.org/003shpf72', 'en', 1, 'https://ror.org/003shpf72 Institute of Public Health Bengaluru'),
(105171, 'https://ror.org/052xgjt73', 'en', 1, 'https://ror.org/052xgjt73 Airbus Defence and Space GmbH Airbus Defence and Space GmbH (Germany)'),
(105172, 'https://ror.org/0241avf06', 'es', 1, 'https://ror.org/0241avf06 Centre de Recerca en Economia Internacional'),
(105173, 'https://ror.org/05desj304', 'es', 1, 'https://ror.org/05desj304 El Colegio de San Luis, A.C.'),
(105174, 'https://ror.org/00qq1fp34', 'en', 1, 'https://ror.org/00qq1fp34 FakultnĆ­ Nemocnice Brno University Hospital Brno'),
(105175, 'https://ror.org/05b367g49', 'pt', 1, 'https://ror.org/05b367g49 Faculdades Nova EsperanƧa'),
(105176, 'https://ror.org/00wppxb27', 'fr', 1, 'https://ror.org/00wppxb27 Vieillissement, FragilitƩ'),
(105177, 'https://ror.org/00bd1zn20', 'es', 1, 'https://ror.org/00bd1zn20 Instituto de Investigaciones JurĆ­dicas'),
(105178, 'https://ror.org/01bmf6d75', 'en', 1, 'https://ror.org/01bmf6d75 Czech International Centre of Research Reactors České mezinÔrodní centrum výzkumných reaktorů'),
(105179, 'https://ror.org/03cykd395', 'en', 1, 'https://ror.org/03cykd395 National Archives NƔrodnƭ archiv'),
(105180, 'https://ror.org/03ze73t75', 'fr', 1, 'https://ror.org/03ze73t75 Recyclage et risque Recycling and Risk'),
(105181, 'https://ror.org/0001a1c49', 'en', 1, 'https://ror.org/0001a1c49 Czech National Node to the European Clinical Research Infrastructure Network Český nĆ”rodnĆ­ uzel EvropskĆ© sĆ­tě infrastruktur klinickĆ©ho výzkumu'),
(105182, 'https://ror.org/00v570979', 'en', 1, 'https://ror.org/00v570979 Centre of Materials and Nanotechnologies Centrum materiÔlů a nanotechnologií'),
(105183, 'https://ror.org/05n86fa68', 'es', 1, 'https://ror.org/05n86fa68 Center or Research on North America Centro de Investigaciones sobre AmƩrica del Norte'),
(105184, 'https://ror.org/00qk0vr83', 'fr', 1, 'https://ror.org/00qk0vr83 Institut National de l''Ɖnergie Solaire National Solar Energy Institute'),
(105185, 'https://ror.org/01545mx32', 'en', 1, 'https://ror.org/01545mx32 University of Loralai'),
(105186, 'https://ror.org/05d49bv37', 'it', 1, 'https://ror.org/05d49bv37 Institute of Polar Sciences Istituto di Scienze Polari'),
(105187, 'https://ror.org/05w75gv97', 'en', 1, 'https://ror.org/05w75gv97 National Football League'),
(105188, 'https://ror.org/032f7hg16', 'en', 1, 'https://ror.org/032f7hg16 Bukovinian University ŠŸŠ’ŠŠ— "Š‘ŃƒŠŗŠ¾Š²ŠøŠ½ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚"'),
(105189, 'https://ror.org/0489gab80', 'en', 1, 'https://ror.org/0489gab80 Leibniz Institute for High Performance Microelectronics Leibniz-Institut für innovative Mikroelektronik'),
(105190, 'https://ror.org/037qn8k12', 'en', 1, 'https://ror.org/037qn8k12 Texas Instruments (Singapore) Texas Instruments Singapore Ltd'),
(105191, 'https://ror.org/04phre941', 'en', 1, 'https://ror.org/04phre941 TerezĆ­n Memorial'),
(105192, 'https://ror.org/024cw0321', 'es', 1, 'https://ror.org/024cw0321 Autonomous Community of the Region of Murcia Comunidad Autónoma de la Región de Murcia'),
(105193, 'https://ror.org/02akb7n88', 'en', 1, 'https://ror.org/02akb7n88 Alexandra Health Pte Ltd'),
(105194, 'https://ror.org/00aqdmx54', 'en', 1, 'https://ror.org/00aqdmx54 Tyndale University'),
(105195, 'https://ror.org/03c81c376', 'es', 1, 'https://ror.org/03c81c376 Hospital Universitario de Neiva'),
(105196, 'https://ror.org/03f394x19', 'en', 1, 'https://ror.org/03f394x19 National Institute of Hydrology'),
(105197, 'https://ror.org/047jgsa20', 'id', 1, 'https://ror.org/047jgsa20 Universitas Muhammadiyah Madiun'),
(105198, 'https://ror.org/027h77v82', 'en', 1, 'https://ror.org/027h77v82 National Health Innovation Centre'),
(105199, 'https://ror.org/05mhx5h16', 'fr', 1, 'https://ror.org/05mhx5h16 Ɖcole Nationale SupĆ©rieure d''Architecture de Lyon'),
(105200, 'https://ror.org/03a1v4n19', 'en', 1, 'https://ror.org/03a1v4n19 Korea Radioactive Waste Agency'),
(105201, 'https://ror.org/03wyhgf98', 'id', 1, 'https://ror.org/03wyhgf98 Universitas Saintek Muhammadiyah'),
(105202, 'https://ror.org/03p41qy95', 'en', 1, 'https://ror.org/03p41qy95 Graduate School of China Academy of Engineering Physics äø­ē‰©é™¢ē ”ē©¶ē”Ÿé™¢'),
(105203, 'https://ror.org/01y2mzv68', 'en', 1, 'https://ror.org/01y2mzv68 Agricultural Engineering Research Institute معهد بحوث الهندسة Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(105204, 'https://ror.org/00btp0650', 'en', 1, 'https://ror.org/00btp0650 Chuo Kikuu cha Kikatoliki cha Ruaha Ruaha Catholic University'),
(105205, 'https://ror.org/05a5k9h08', 'it', 1, 'https://ror.org/05a5k9h08 Istituto Nazionale di Statistica National Institute of Statistics'),
(105206, 'https://ror.org/02689mz67', 'fr', 0, 'https://ror.org/02689mz67 Linguistique et lexicographie latines et romanes'),
(105207, 'https://ror.org/00y7tet25', 'en', 1, 'https://ror.org/00y7tet25 ERN eUROGEN'),
(105208, 'https://ror.org/05m92zc22', 'en', 1, 'https://ror.org/05m92zc22 Czech Centre for Phenogenomics České centrum pro fenogenomiku'),
(105209, 'https://ror.org/03zbxqj79', 'en', 0, 'https://ror.org/03zbxqj79 Occupational Safety Research Institute'),
(105210, 'https://ror.org/02xdmj269', 'pt', 1, 'https://ror.org/02xdmj269 Centro Latino-Americano e do Caribe de Informação em Ciências da Saúde Centro Latinoamericano y del Caribe de Información en Ciencias de la Salud Latin American and Caribbean Center on Health Sciences Information'),
(105211, 'https://ror.org/02jf3sn72', 'en', 1, 'https://ror.org/02jf3sn72 Islamia College of Science and Commerce, Srinagar'),
(105212, 'https://ror.org/028sgmw18', 'en', 1, 'https://ror.org/028sgmw18 Czech Academy of Sciences, Library Knihovna AV ČR'),
(105213, 'https://ror.org/02arxvh93', 'en', 1, 'https://ror.org/02arxvh93 READ Global'),
(105214, 'https://ror.org/04p12m446', 'id', 1, 'https://ror.org/04p12m446 Bina Bangsa School Pantai Indah Kapuk'),
(105215, 'https://ror.org/05d78xc36', 'en', 1, 'https://ror.org/05d78xc36 Euro-BioImaging ERIC'),
(105216, 'https://ror.org/00dbyax80', 'id', 1, 'https://ror.org/00dbyax80 Sekolah Tinggi Filsafat Theologia Jaffray'),
(105217, 'https://ror.org/01pb6n515', 'en', 1, 'https://ror.org/01pb6n515 Foundation for Information Society'),
(105218, 'https://ror.org/04ttwk906', 'en', 1, 'https://ror.org/04ttwk906 Ships of Exploration and Discovery Research'),
(105219, 'https://ror.org/029nm1m14', 'fr', 1, 'https://ror.org/029nm1m14 ERN EYE'),
(105220, 'https://ror.org/0496m6d18', 'no_lang_code', 1, 'https://ror.org/0496m6d18 Horizon Discovery Group (United States)'),
(105221, 'https://ror.org/02r5hxg85', 'en', 0, 'https://ror.org/02r5hxg85 BellSouth Foundation'),
(105222, 'https://ror.org/04nfjn472', 'en', 1, 'https://ror.org/04nfjn472 Czech Academy of Sciences, Institute of Organic Chemistry and Biochemistry Ústav organickĆ© chemie a biochemie AV ČR Ústav organickĆ© chemie a biochemie AV ČR, v. v. i. Ústav organickĆ© chemie a biochemie AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105223, 'https://ror.org/057br4398', 'en', 1, 'https://ror.org/057br4398 Czech Academy of Sciences, Institute of Experimental Botany Ústav experimentĆ”lnĆ­ botaniky AV ČR Ústav experimentĆ”lnĆ­ botaniky AV ČR, v. v. i. Ústav experimentĆ”lnĆ­ botaniky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105224, 'https://ror.org/02q0kge84', 'en', 1, 'https://ror.org/02q0kge84 The Sharp Foundation'),
(105225, 'https://ror.org/050w9j879', 'en', 1, 'https://ror.org/050w9j879 Kuban State Technological University Кубанский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105226, 'https://ror.org/04ww8nw62', 'en', 1, 'https://ror.org/04ww8nw62 China Science and Technology Publishing & Media äø­å›½ē§‘ęŠ€å‡ŗē‰ˆä¼ åŖ’č‚”ä»½ęœ‰é™å…¬åø'),
(105227, 'https://ror.org/02s1c4g54', 'en', 1, 'https://ror.org/02s1c4g54 Brookhaven National Laboratory - Participation of the Czech Republic BrookhavenskĆ” nĆ”rodnĆ­ laboratoř BrookhavenskĆ” nĆ”rodnĆ­ laboratoř – ĆŗÄast ČeskĆ© republiky'),
(105228, 'https://ror.org/03ftsw720', 'en', 1, 'https://ror.org/03ftsw720 National Football League Players Association'),
(105229, 'https://ror.org/00q2y5s03', 'en', 1, 'https://ror.org/00q2y5s03 Horizon Discovery Horizon Discovery (United Kingdom) Revvity Discovery Limited'),
(105230, 'https://ror.org/003jt2y14', 'en', 1, 'https://ror.org/003jt2y14 Cluster University of Jammu'),
(105231, 'https://ror.org/05193xx52', 'es', 1, 'https://ror.org/05193xx52 TecnoCampus'),
(105232, 'https://ror.org/04hp42s89', 'en', 1, 'https://ror.org/04hp42s89 Institute of International Relations Prague Ústav mezinÔrodních vztahů, v. v. i.'),
(105233, 'https://ror.org/02p1jz666', 'en', 1, 'https://ror.org/02p1jz666 Czech Academy of Sciences, Institute of Microbiology Mikrobiologický Ćŗstav AV ČR Mikrobiologický Ćŗstav AV ČR, v. v. i. Mikrobiologický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105234, 'https://ror.org/05r4c7e67', 'en', 1, 'https://ror.org/05r4c7e67 Laboratoire Souterrain de Modane Laboratoire Souterrain de Modane – participation of the Czech Republic PodzemnĆ­ laboratoř LSM PodzemnĆ­ laboratoř LSM – ĆŗÄast ČR'),
(105235, 'https://ror.org/00ypd7t24', 'es', 1, 'https://ror.org/00ypd7t24 Centro de Isotopos'),
(105236, 'https://ror.org/00yttx659', 'en', 1, 'https://ror.org/00yttx659 HJ International Graduate School for Peace and Public Leadership ēµ±äø€ē„žå­¦ę ”'),
(105237, 'https://ror.org/027taah18', 'en', 1, 'https://ror.org/027taah18 Czech Academy of Sciences, Institute of Scientific Instruments Ústav přístrojovĆ© techniky AV ČR Ústav přístrojovĆ© techniky AV ČR, v. v. i. Ústav přístrojovĆ© techniky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105238, 'https://ror.org/04xm4jh96', 'it', 1, 'https://ror.org/04xm4jh96 Agenzia Regionale per la Protezione ambientale Molise'),
(105239, 'https://ror.org/00yx29a03', 'en', 1, 'https://ror.org/00yx29a03 SRH Fernhochschule – The Mobile University'),
(105240, 'https://ror.org/020m6x732', 'en', 1, 'https://ror.org/020m6x732 Danish Meteorological Institute'),
(105241, 'https://ror.org/007dnwq44', 'en', 1, 'https://ror.org/007dnwq44 Armavir Institute of Economics and Finance Армавирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø финансов'),
(105242, 'https://ror.org/04rfh4r06', 'es', 1, 'https://ror.org/04rfh4r06 Armada de Chile Armada do Chile Chilean Navy Marine chilienne'),
(105243, 'https://ror.org/01petg633', 'fr', 1, 'https://ror.org/01petg633 Lorraine Institute for Social Sciences and Humanities Maison des Sciences sociales et des HumanitƩs Lorraine'),
(105244, 'https://ror.org/01h494015', 'en', 1, 'https://ror.org/01h494015 Czech Academy of Sciences, Institute of Plasma Physics Ústav fyziky plazmatu AV ČR Ústav fyziky plazmatu AV ČR, v. v. i. Ústav fyziky plazmatu AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105245, 'https://ror.org/00phktm30', 'en', 0, 'https://ror.org/00phktm30 ClearWay Minnesota'),
(105246, 'https://ror.org/034w35q36', 'it', 1, 'https://ror.org/034w35q36 Agenzia Regionale Protezione Ambiente Valle d''Aosta'),
(105247, 'https://ror.org/041ke1609', 'es', 1, 'https://ror.org/041ke1609 Instituto de Investigaciones Bibliotecológicas y de la Información'),
(105248, 'https://ror.org/02edavb98', 'it', 1, 'https://ror.org/02edavb98 Agenzia Regionale Prevenzione e Ambiente della Regione Emilia-Romagna Regional Agency for Environmental Protection in the Emilia-Romagna region'),
(105249, 'https://ror.org/05sz0hh57', 'en', 1, 'https://ror.org/05sz0hh57 Karabakh University'),
(105250, 'https://ror.org/018h10037', 'en', 1, 'https://ror.org/018h10037 UK Health Security Agency'),
(105251, 'https://ror.org/02azcsx83', 'en', 1, 'https://ror.org/02azcsx83 OpenSky Network'),
(105252, 'https://ror.org/05ygfpx91', 'de', 0, 'https://ror.org/05ygfpx91 SRH Fernhochschule Riedlingen'),
(105253, 'https://ror.org/02cp6mx43', 'en', 1, 'https://ror.org/02cp6mx43 Alliance to End Plastic Waste, Inc.'),
(105254, 'https://ror.org/00q6h8f30', 'nl', 1, 'https://ror.org/00q6h8f30 Amsterdam UMC Location Vrije Universiteit Amsterdam'),
(105255, 'https://ror.org/037tawy03', 'en', 1, 'https://ror.org/037tawy03 BIST Dolors Aleu Graduate Centre'),
(105256, 'https://ror.org/05vmyz452', 'de', 0, 'https://ror.org/05vmyz452 Deutsches Historisches Institut Moskau German Historical Institute Moscow Германский исторический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ в Москве'),
(105257, 'https://ror.org/0230rkd28', 'en', 1, 'https://ror.org/0230rkd28 Wildlife Research and Training Institute'),
(105258, 'https://ror.org/02ck0dq88', 'en', 1, 'https://ror.org/02ck0dq88 Amsterdam Gastroenterology Endocrinology Metabolism'),
(105259, 'https://ror.org/00dnbtf70', 'en', 1, 'https://ror.org/00dnbtf70 Niigata University of Pharmacy and Medical and Life Sciences ę–°ę½Ÿč–¬ē§‘å¤§å­¦'),
(105260, 'https://ror.org/04wew1t29', 'it', 1, 'https://ror.org/04wew1t29 Agenzia Regionale per la Protezione dell''Ambiente della Basilicata'),
(105261, 'https://ror.org/024q01f72', 'en', 1, 'https://ror.org/024q01f72 Gulf of America Coastal Ocean Observing System'),
(105262, 'https://ror.org/056c57m96', 'en', 1, 'https://ror.org/056c57m96 Czech Literary Bibliography ČeskÔ literÔrní bibliografie'),
(105263, 'https://ror.org/01821ts51', 'en', 1, 'https://ror.org/01821ts51 Bishkek Humanities University Š‘ŠøŃˆŠŗŠµŠŗŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105264, 'https://ror.org/01hyg6578', 'en', 1, 'https://ror.org/01hyg6578 Czech Academy of Sciences, Institute of Philosophy Filosofický Ćŗstav AV ČR Filosofický Ćŗstav AV ČR, v. v. i. Filosofický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105265, 'https://ror.org/033eqas34', 'de', 1, 'https://ror.org/033eqas34 Justus Liebig University Giessen Justus-Liebig-Universität Gießen'),
(105266, 'https://ror.org/05s8x7560', 'no_lang_code', 1, 'https://ror.org/05s8x7560 PerkinElmer (United States)'),
(105267, 'https://ror.org/014ycg306', 'en', 1, 'https://ror.org/014ycg306 ST Engineering ST Engineering (Singapore) Singapore Technologies Engineering Ltd'),
(105268, 'https://ror.org/05ag2zv50', 'en', 1, 'https://ror.org/05ag2zv50 Srusti Academy of Management'),
(105269, 'https://ror.org/01bgpbn64', 'fr', 1, 'https://ror.org/01bgpbn64 GREI - Groupe de recherches en Ć©tudes indienne Groupe de Recherches en Ɖtudes Indiennes'),
(105270, 'https://ror.org/01fypx926', 'en', 1, 'https://ror.org/01fypx926 Advanced Technology Research Centre Pte Ltd Advanced Technology Research Centre Pte Ltd (Singapore)'),
(105271, 'https://ror.org/03ecnj426', 'no_lang_code', 0, 'https://ror.org/03ecnj426 InfectControl'),
(105272, 'https://ror.org/001338s77', 'en', 1, 'https://ror.org/001338s77 Laboratoř fyziky povrchÅÆ – OptickĆ” drĆ”ha pro výzkum materiĆ”lÅÆ Surface Physics Laboratory – Hydrogen Technology Centre'),
(105273, 'https://ror.org/01rjy2539', 'en', 1, 'https://ror.org/01rjy2539 Survey of Health, Ageing and Retirement in Europe Survey of Health, Ageing and Retirement in Europe – ĆŗÄast ČR'),
(105274, 'https://ror.org/00g280465', 'en', 1, 'https://ror.org/00g280465 Gradiant International Holdings Pte Ltd Gradiant International Holdings Pte Ltd (Singapore)'),
(105275, 'https://ror.org/005pygq66', 'en', 1, 'https://ror.org/005pygq66 VASCERN'),
(105276, 'https://ror.org/033m8p353', 'ca', 1, 'https://ror.org/033m8p353 Escola Superior de ComerƧ Internacional'),
(105277, 'https://ror.org/023422920', 'no_lang_code', 1, 'https://ror.org/023422920 Vallen Systeme (Germany) Vallen Systeme GmbH'),
(105278, 'https://ror.org/01ry9c816', 'en', 1, 'https://ror.org/01ry9c816 Changjiang River Scientific Research Institute é•æę±Ÿę°“åˆ©å§”å‘˜ä¼šé•æę±Ÿē§‘å­¦é™¢'),
(105279, 'https://ror.org/05fx63164', 'en', 1, 'https://ror.org/05fx63164 The International Maglev Board'),
(105280, 'https://ror.org/00r2kgw23', 'it', 1, 'https://ror.org/00r2kgw23 Agenzia Regionale per la Protezione dell''Ambiente Sicilia'),
(105281, 'https://ror.org/055zp1089', 'no_lang_code', 1, 'https://ror.org/055zp1089 EU-OPENSCREEN'),
(105282, 'https://ror.org/02tx80f61', 'en', 0, 'https://ror.org/02tx80f61 Central Research Institute of Mechanical Engineering'),
(105283, 'https://ror.org/020e7ee92', 'es', 1, 'https://ror.org/020e7ee92 Instituto de Investigaciones Económicas'),
(105284, 'https://ror.org/025602r80', 'it', 1, 'https://ror.org/025602r80 Sant''Anna School of Advanced Studies Scuola Superiore Sant''Anna Ɖcole supĆ©rieure sainte-anne de pise'),
(105285, 'https://ror.org/009yn9w19', 'en', 1, 'https://ror.org/009yn9w19 Kalivir Immunotherapeutics Kalivir Immunotherapeutics, Inc. (United States)'),
(105286, 'https://ror.org/03xvagj73', 'no_lang_code', 1, 'https://ror.org/03xvagj73 KPMG (Netherlands)'),
(105287, 'https://ror.org/01h2v3d55', 'en', 1, 'https://ror.org/01h2v3d55 Central European Research Infrastructure Consortium'),
(105288, 'https://ror.org/02ed17502', 'en', 1, 'https://ror.org/02ed17502 Guilin Institute of Information Technology ę”‚ęž—äæ”ęÆē§‘ęŠ€å­¦é™¢'),
(105289, 'https://ror.org/04m3cqq68', 'en', 1, 'https://ror.org/04m3cqq68 UPF Barcelona School of Management'),
(105290, 'https://ror.org/01adx8c71', 'en', 1, 'https://ror.org/01adx8c71 Atacama Large Millimeter Submillimeter Array'),
(105291, 'https://ror.org/02g818g52', 'pt', 1, 'https://ror.org/02g818g52 ICI - Instituto de CiĆŖncias Integradas ICI - Instituto de CiĆŖncias Integradas (Portugal)'),
(105292, 'https://ror.org/02tr8q829', 'en', 1, 'https://ror.org/02tr8q829 University of Chakwal'),
(105293, 'https://ror.org/01ggx4157', 'en', 1, 'https://ror.org/01ggx4157 European Organization for Nuclear Research Europäische Organisation für Kernforschung Organisation européenne pour la recherche nucléaire'),
(105294, 'https://ror.org/00a7jq604', 'en', 1, 'https://ror.org/00a7jq604 Eurasian Institute of Osteopathic Medicine'),
(105295, 'https://ror.org/030ggnb25', 'en', 1, 'https://ror.org/030ggnb25 Lower Shabelle University'),
(105296, 'https://ror.org/00rk50852', 'en', 1, 'https://ror.org/00rk50852 K. N. Bhise Arts, Commerce and Vinayakrao Patil Science College'),
(105297, 'https://ror.org/030npen62', 'en', 0, 'https://ror.org/030npen62 Private University College of Economic Studies SoukromÔ VysokÔ Skola Ekonomických Studií'),
(105298, 'https://ror.org/02pcnxw09', 'en', 1, 'https://ror.org/02pcnxw09 Lumoscribe Lumoscribe (Cyprus)'),
(105299, 'https://ror.org/03wyzt892', 'en', 1, 'https://ror.org/03wyzt892 Centre for Genomic Regulation'),
(105300, 'https://ror.org/05cx8cy07', 'en', 1, 'https://ror.org/05cx8cy07 European Innovation Council'),
(105301, 'https://ror.org/03kmffx98', 'en', 1, 'https://ror.org/03kmffx98 Evonik (Singapore) Evonik Pte Ltd'),
(105302, 'https://ror.org/02d4c4y02', 'en', 1, 'https://ror.org/02d4c4y02 Universitat de Mòdena University of Modena and Reggio Emilia UniversitĆ  degli Studi di Modena e Reggio Emilia UniversitƤt Modena und Reggio Emilia UniversitĆ© de modĆØne et de reggio d''Ɖmilie'),
(105303, 'https://ror.org/054225q67', 'en', 1, 'https://ror.org/054225q67 Cancer Research UK'),
(105304, 'https://ror.org/03geepx94', 'en', 1, 'https://ror.org/03geepx94 Northern Iloilo State University'),
(105305, 'https://ror.org/04xwksx09', 'en', 1, 'https://ror.org/04xwksx09 Chaoyang University of Technology'),
(105306, 'https://ror.org/02mebaz96', 'en', 1, 'https://ror.org/02mebaz96 Research Infrastructure for Fermilab Experiments VýzkumnÔ infrastruktura pro experimenty ve Fermilab'),
(105307, 'https://ror.org/05h61fg48', 'fr', 1, 'https://ror.org/05h61fg48 Ɖlisabeth BruyĆØre Hospital'),
(105308, 'https://ror.org/03663xq97', 'en', 1, 'https://ror.org/03663xq97 Hamburg Port Authority'),
(105309, 'https://ror.org/03f239z63', 'en', 1, 'https://ror.org/03f239z63 Moravian Library in Brno MoravskĆ” zemskĆ” knihovna v Brně'),
(105310, 'https://ror.org/05mqwtr17', 'fr', 1, 'https://ror.org/05mqwtr17 Histoire, ArchƩologie, LittƩratures des Mondes ChrƩtiens et Musulmans MƩdiƩvaux'),
(105311, 'https://ror.org/00nd19b42', 'en', 1, 'https://ror.org/00nd19b42 Gombe State College of Health Sciences and Technology Kaltungo'),
(105312, 'https://ror.org/04jp88086', 'ca', 1, 'https://ror.org/04jp88086 Escola Superior d''Infermeria del Mar'),
(105313, 'https://ror.org/05xdkcv71', 'en', 1, 'https://ror.org/05xdkcv71 Strategies for Open Science (Stratos)'),
(105314, 'https://ror.org/03snjhe90', 'en', 1, 'https://ror.org/03snjhe90 Federal Research and Clinical Center of Physical-Chemical Medicine named after Y.M. Lopukhin Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-клинический центр физико-химической меГицины им. акаГемика Š®. М. Š›Š¾ŠæŃƒŃ…ŠøŠ½Š° Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(105315, 'https://ror.org/02hdf6119', 'it', 1, 'https://ror.org/02hdf6119 Istituto di Scienze Marine del Consiglio Nazionale delle Ricerche'),
(105316, 'https://ror.org/009k8aq92', 'ro', 1, 'https://ror.org/009k8aq92 BRGV Buzău'),
(105317, 'https://ror.org/00w3gq485', 'es', 1, 'https://ror.org/00w3gq485 Pronatura Peninsula de Yucatan, A.C.'),
(105318, 'https://ror.org/047f73w76', 'fr', 1, 'https://ror.org/047f73w76 Cegep de Sainte Foy'),
(105319, 'https://ror.org/03s53g630', 'en', 1, 'https://ror.org/03s53g630 National High Magnetic Field Laboratory'),
(105320, 'https://ror.org/05hygey35', 'en', 1, 'https://ror.org/05hygey35 Institute of Genetics and Cancer'),
(105321, 'https://ror.org/036w00e23', 'de', 1, 'https://ror.org/036w00e23 Carinthia University of Applied Sciences FH Kärnten FH Kärnten Gemeinnützige Gesellschaft mbH'),
(105322, 'https://ror.org/02029th93', 'en', 1, 'https://ror.org/02029th93 Australian University, Kuwait'),
(105323, 'https://ror.org/05tkyf982', 'en', 1, 'https://ror.org/05tkyf982 Ben-Gurion University of the Negev ××•× ×™×‘×Ø×”×™×˜×Ŗ בן-×’×•×Ø×™×•×Ÿ בנגב Ų¬Ų§Ł…Ų¹Ų© بن ŲŗŁˆŲ±ŁŠŁˆŁ†'),
(105324, 'https://ror.org/011hja523', 'fr', 1, 'https://ror.org/011hja523 Rome et ses renaissances Rome et ses renaissances : arts, archƩologie, littƩrature et philosophie'),
(105325, 'https://ror.org/02as5yg64', 'en', 1, 'https://ror.org/02as5yg64 Shanghai Polytechnic University Shanghai Second Polytechnic University 上海第二巄业大学'),
(105326, 'https://ror.org/03kmzms45', 'en', 1, 'https://ror.org/03kmzms45 Deep Eye Care Foundation'),
(105327, 'https://ror.org/01wf12v72', 'en', 1, 'https://ror.org/01wf12v72 University of Media, Arts and Communication'),
(105328, 'https://ror.org/023q9yj10', 'en', 1, 'https://ror.org/023q9yj10 Korea Racing Authority'),
(105329, 'https://ror.org/0193j3v20', 'es', 1, 'https://ror.org/0193j3v20 Centro de Investigaciones y Estudios de GƩnero'),
(105330, 'https://ror.org/03hgdjp72', 'en', 1, 'https://ror.org/03hgdjp72 Ontario HIV Treatment Network'),
(105331, 'https://ror.org/01a78vm40', 'en', 0, 'https://ror.org/01a78vm40 College of Regional Development VysokÔ Ŕkola regionÔlního rozvoje'),
(105332, 'https://ror.org/02zqm6r10', 'no_lang_code', 1, 'https://ror.org/02zqm6r10 Toyota Motor Corporation (Japan) ćƒˆćƒØć‚æč‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(105333, 'https://ror.org/01ztxwq91', 'en', 1, 'https://ror.org/01ztxwq91 Skin Research Institute of Singapore'),
(105334, 'https://ror.org/02ab4cq13', 'en', 1, 'https://ror.org/02ab4cq13 Nile University of Science and Technology'),
(105335, 'https://ror.org/04f7pyb58', 'ca', 1, 'https://ror.org/04f7pyb58 Hospital Universitari Sant Joan de Reus University Hospital Sant Joan de Reus'),
(105336, 'https://ror.org/0443gqz72', 'en', 1, 'https://ror.org/0443gqz72 Ayurved Mahavidyalaya & Seth RV Ayurved Hospital'),
(105337, 'https://ror.org/05ggn0a85', 'en', 1, 'https://ror.org/05ggn0a85 University of Chemistry and Technology, Prague VysokÔ Ŕkola chemicko-technologickÔ v Praze'),
(105338, 'https://ror.org/01fgged21', 'en', 1, 'https://ror.org/01fgged21 Toyooka Junior College 豊岔短期大学'),
(105339, 'https://ror.org/05q27qy76', 'fr', 1, 'https://ror.org/05q27qy76 Technologie Hoola One Inc. Technologie Hoola One Inc. (Canada)'),
(105340, 'https://ror.org/03g1q6c06', 'en', 1, 'https://ror.org/03g1q6c06 SUNY Geneseo'),
(105341, 'https://ror.org/04j3k7769', 'en', 1, 'https://ror.org/04j3k7769 Monetary Authority of Singapore'),
(105342, 'https://ror.org/02synbq51', 'en', 1, 'https://ror.org/02synbq51 TUM CREATE'),
(105343, 'https://ror.org/059qr5h87', 'fr', 1, 'https://ror.org/059qr5h87 National Superior School of Information Science and Libraries Ɖcole nationale supĆ©rieure des sciences de l''information et des bibliothĆØques'),
(105344, 'https://ror.org/03cq6nq25', 'fr', 1, 'https://ror.org/03cq6nq25 Mission ArchƩologique FranƧaise du Bassin de l''Indus'),
(105345, 'https://ror.org/04x3ta798', 'en', 1, 'https://ror.org/04x3ta798 ERN EURO-NMD'),
(105346, 'https://ror.org/04wc4pz32', 'en', 1, 'https://ror.org/04wc4pz32 International Patient Organisation for Primary Immunodeficiencies'),
(105347, 'https://ror.org/02fpcfw82', 'en', 1, 'https://ror.org/02fpcfw82 GlaxoSmithKline Consumer Healthcare Pte Ltd GlaxoSmithKline Consumer Healthcare Pte Ltd (Singapore)'),
(105348, 'https://ror.org/01g470z66', 'es', 1, 'https://ror.org/01g470z66 Instituto de Investigaciones Antropológicas'),
(105349, 'https://ror.org/05pq4yn02', 'en', 1, 'https://ror.org/05pq4yn02 BiologickĆ© centrum AV ČR BiologickĆ© centrum AV ČR, v. v. i. BiologickĆ© centrum AV ČR, veřejnĆ” výzkumnĆ” instituce Czech Academy of Sciences, Biology Centre'),
(105350, 'https://ror.org/04rr75245', 'en', 1, 'https://ror.org/04rr75245 ERN TRANSPLANT-CHILD'),
(105351, 'https://ror.org/0130dsa73', 'en', 1, 'https://ror.org/0130dsa73 Futures Forward Research Institute'),
(105352, 'https://ror.org/022tv9y30', 'en', 1, 'https://ror.org/022tv9y30 Christ University ą²•ą³ą²°ą³ˆą²øą³ą²Ÿą³ ą²Æą³‚ą²Øą²æą²µą²°ą³ą²øą²æą²Ÿą²æ'),
(105353, 'https://ror.org/00bwsj193', 'en', 1, 'https://ror.org/00bwsj193 Tanzania Institute of Education (TIE)'),
(105354, 'https://ror.org/05whd1183', 'en', 1, 'https://ror.org/05whd1183 Ventio Ventio (France)'),
(105355, 'https://ror.org/044790d95', 'en', 1, 'https://ror.org/044790d95 Sinai Health System'),
(105356, 'https://ror.org/02sgq4c64', 'fr', 1, 'https://ror.org/02sgq4c64 Centre de Formation des journalistes'),
(105357, 'https://ror.org/0390kp681', 'en', 1, 'https://ror.org/0390kp681 Institute for Circumpolar Health Research'),
(105358, 'https://ror.org/01y05p716', 'es', 1, 'https://ror.org/01y05p716 Academia Nacional de Investigación en Trabajo Social Acanits'),
(105359, 'https://ror.org/04xsmz457', 'en', 1, 'https://ror.org/04xsmz457 Czech National Node to the European Infrastructure for Translational Medicine Český nĆ”rodnĆ­ uzel EvropskĆ© infrastruktury pro translačnĆ­ medicĆ­nu'),
(105360, 'https://ror.org/05mk2jr28', 'es', 1, 'https://ror.org/05mk2jr28 Instituto de Investigaciones Sociales'),
(105361, 'https://ror.org/007xqfr83', 'fr', 1, 'https://ror.org/007xqfr83 Centre d''innovation de l''aquaculture et des pêches du Québec Merinov Merinov (Canada)'),
(105362, 'https://ror.org/04rqt6703', 'en', 1, 'https://ror.org/04rqt6703 Precision Health Research, Singapore'),
(105363, 'https://ror.org/045y5pt10', 'en', 1, 'https://ror.org/045y5pt10 Cyber-Complex Foundation Fundacja Cyber-Complex'),
(105364, 'https://ror.org/041mrvc03', 'en', 1, 'https://ror.org/041mrvc03 MiRXES Lab Pte. Ltd. MiRXES Lab Pte. Ltd. (Singapore)'),
(105365, 'https://ror.org/02dk8t214', 'en', 1, 'https://ror.org/02dk8t214 ERN PaedCan'),
(105366, 'https://ror.org/0317dkp69', 'en', 1, 'https://ror.org/0317dkp69 Indigo Rock Marine Research Centre'),
(105367, 'https://ror.org/043vfk764', 'fr', 1, 'https://ror.org/043vfk764 Centre de recherche en Agropastoralisme (CRAPast) Ł…Ų±ŁƒŲ² البحث في الفلاحة Ų§Ł„Ų±Ų¹ŁˆŁŠŲ©'),
(105368, 'https://ror.org/03g8mak77', 'en', 1, 'https://ror.org/03g8mak77 Lubrizol Lubrizol (United States) Lubrizol Advanced Materials, Inc.'),
(105369, 'https://ror.org/03tgwp072', 'de', 1, 'https://ror.org/03tgwp072 Deutschen Institute für Textil und Faserforschung German Institutes of Textile and Fiber Research Denkendorf'),
(105370, 'https://ror.org/01v743b94', 'en', 1, 'https://ror.org/01v743b94 Chugai Pharmaceutical Co., Ltd. Chugai Pharmaceutical Co., Ltd. (Japan) äø­å¤–č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(105371, 'https://ror.org/05f9vtt89', 'en', 1, 'https://ror.org/05f9vtt89 Kingsley Ozumba Mbadiwe University'),
(105372, 'https://ror.org/0278ff426', 'fr', 1, 'https://ror.org/0278ff426 Haute Ʃcole de travail social et de la santƩ Lausanne - HETSL, HES-SO'),
(105373, 'https://ror.org/05f0grf58', 'en', 1, 'https://ror.org/05f0grf58 Gritstone Oncology, Inc Gritstone Oncology, Inc (United States)'),
(105374, 'https://ror.org/032gggv33', 'en', 1, 'https://ror.org/032gggv33 ERN CRANIO');
INSERT INTO `rors` VALUES
(105375, 'https://ror.org/029chgv08', 'en', 1, 'https://ror.org/029chgv08 Wellcome Trust'),
(105376, 'https://ror.org/00bcn1057', 'en', 1, 'https://ror.org/00bcn1057 Amsterdam institute for Immunology and Infectious Diseases'),
(105377, 'https://ror.org/05jc8b719', 'en', 1, 'https://ror.org/05jc8b719 Royal Birmingham Conservatoire'),
(105378, 'https://ror.org/020hgte69', 'en', 1, 'https://ror.org/020hgte69 Fermi National Accelerator Laboratory'),
(105379, 'https://ror.org/05rke5d69', 'ca', 1, 'https://ror.org/05rke5d69 Barcelona Institute of International Studies Institut Barcelona d''Estudis Internacionals'),
(105380, 'https://ror.org/0232r4451', 'en', 1, 'https://ror.org/0232r4451 Southern Illinois University School of Medicine'),
(105381, 'https://ror.org/03gn3ta84', 'en', 1, 'https://ror.org/03gn3ta84 Akademia Wychowania Fizycznego imienia Polskich Olimpijczyków we Wrocławiu Wroclaw University of Health and Sport Sciences'),
(105382, 'https://ror.org/00vh6r649', 'it', 1, 'https://ror.org/00vh6r649 Centro interuniversitario per la ricerca sull''influenza e le altre infezioni trasmissibili'),
(105383, 'https://ror.org/0437w5765', 'cs', 1, 'https://ror.org/0437w5765 Institut TerezƭnskƩ iniciativy Terezƭn Initiative Institute'),
(105384, 'https://ror.org/007ck3v83', 'en', 1, 'https://ror.org/007ck3v83 ATLAS SkillTech University'),
(105385, 'https://ror.org/03hz5th67', 'en', 1, 'https://ror.org/03hz5th67 Shenzhen University of Advanced Technology'),
(105386, 'https://ror.org/05csczx38', 'en', 1, 'https://ror.org/05csczx38 SIA StarBridge SIA StarBridge (Latvia)'),
(105387, 'https://ror.org/045syc608', 'en', 1, 'https://ror.org/045syc608 Czech Academy of Sciences, Institute of Molecular Genetics Ústav molekulĆ”rnĆ­ genetiky AV ČR Ústav molekulĆ”rnĆ­ genetiky AV ČR, v. v. i. Ústav molekulĆ”rnĆ­ genetiky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105388, 'https://ror.org/015ya8798', 'en', 1, 'https://ror.org/015ya8798 University of Jeddah جامعـــة Ų¬ŲÆŲ©'),
(105389, 'https://ror.org/00ag2p577', 'en', 1, 'https://ror.org/00ag2p577 Gilgamesh University'),
(105390, 'https://ror.org/02vcyrg44', 'mi', 1, 'https://ror.org/02vcyrg44 Te Wānanga o Aotearoa'),
(105391, 'https://ror.org/02qqsgs30', 'no_lang_code', 1, 'https://ror.org/02qqsgs30 Danylo Zabolotny Institute of Microbiology and Virology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мікробіології і Š²Ń–Ń€ŃƒŃŠ¾Š»Š¾Š³Ń–Ń— ім. Š”.К. Заболотного Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мікробіології і Š²Ń–Ń€ŃƒŃŠ¾Š»Š¾Š³Ń–Ń— ім. Š”.К. Заболотного ŠŠŠ України'),
(105392, 'https://ror.org/05s4b1t72', 'es', 1, 'https://ror.org/05s4b1t72 Hospital Universitari Joan XXIII de Tarragona'),
(105393, 'https://ror.org/03z7sc942', 'en', 1, 'https://ror.org/03z7sc942 Rethink Learning Inc'),
(105394, 'https://ror.org/04yhfw911', 'en', 1, 'https://ror.org/04yhfw911 Sabratha University'),
(105395, 'https://ror.org/04427p113', 'fr', 1, 'https://ror.org/04427p113 Centre d''enseignement et de recherche en foresterie'),
(105396, 'https://ror.org/028hcgr48', 'en', 1, 'https://ror.org/028hcgr48 Raoul Wallenberg Institute of Human Rights and Humanitarian Law'),
(105397, 'https://ror.org/03s5kvf41', 'en', 1, 'https://ror.org/03s5kvf41 Heyou Hospital å’Œē„åŒ»é™¢'),
(105398, 'https://ror.org/048zxff28', 'es', 1, 'https://ror.org/048zxff28 Instituto de Investigaciones Históricas'),
(105399, 'https://ror.org/016m4az54', 'es', 1, 'https://ror.org/016m4az54 Programa Universitario de Estudios del Desarrollo'),
(105400, 'https://ror.org/005d90q56', 'pl', 1, 'https://ror.org/005d90q56 Akademia Podlaska w Białymstoku Akademia Podlaska w Białymstoku – Akademia Nauk Stosowanych The Podlasie Academy of Applied Sciences in Białystok'),
(105401, 'https://ror.org/02r2ga890', 'es', 1, 'https://ror.org/02r2ga890 Instituto de GeografĆ­a'),
(105402, 'https://ror.org/01b1h1f72', 'en', 1, 'https://ror.org/01b1h1f72 Observatoř Pierra Augera Research Infrastructure AUGER‑CZ VýzkumnĆ” infrastruktura AUGER‑CZ'),
(105403, 'https://ror.org/04evvyd49', 'en', 1, 'https://ror.org/04evvyd49 Modelica Association'),
(105404, 'https://ror.org/05k6dh252', 'es', 1, 'https://ror.org/05k6dh252 Centro Peninsular en Humanidades y Ciencias Sociales'),
(105405, 'https://ror.org/05htjr371', 'en', 1, 'https://ror.org/05htjr371 Portage College'),
(105406, 'https://ror.org/02nrkmh53', 'it', 1, 'https://ror.org/02nrkmh53 Agenzia Regionale per la Protezione ambientale Marche'),
(105407, 'https://ror.org/0377z4z10', 'fr', 1, 'https://ror.org/0377z4z10 CHU Dijon Bourgogne'),
(105408, 'https://ror.org/00bh09c15', 'en', 1, 'https://ror.org/00bh09c15 Guang''anmen Hospital Jinan Hospital, China Academy of Chinese Medical Sciences ęµŽå—åø‚äø­åŒ»åŒ»é™¢'),
(105409, 'https://ror.org/01qn7cs15', 'en', 1, 'https://ror.org/01qn7cs15 Oficina del Censo de los Estados Unidos United States Census Bureau'),
(105410, 'https://ror.org/02cvp5j67', 'en', 1, 'https://ror.org/02cvp5j67 Democracy X'),
(105411, 'https://ror.org/05x0g9h76', 'en', 1, 'https://ror.org/05x0g9h76 DunaújvÔrosi Egyetem University of DunaújvÔros'),
(105412, 'https://ror.org/014e7ac16', 'en', 1, 'https://ror.org/014e7ac16 Vivekanandha College of Nursing'),
(105413, 'https://ror.org/0026cwk62', 'en', 1, 'https://ror.org/0026cwk62 The Palliative Care Centre for Excellence in Research and Education'),
(105414, 'https://ror.org/03ypsay29', 'en', 1, 'https://ror.org/03ypsay29 Amili Pte Ltd Amili Pte Ltd (Singapore)'),
(105415, 'https://ror.org/0419aq933', 'en', 1, 'https://ror.org/0419aq933 Sport Singapore'),
(105416, 'https://ror.org/04jb37t29', 'es', 1, 'https://ror.org/04jb37t29 Centro de Emergencias Sanitarias 061'),
(105417, 'https://ror.org/02nv9nh90', 'en', 1, 'https://ror.org/02nv9nh90 Rajah Serfoji Government College (Autonomous)'),
(105418, 'https://ror.org/020cdve92', 'fr', 1, 'https://ror.org/020cdve92 Centre de Recherche en Informatique Mines Paris, PSL University, Centre for computer science (CRI) Mines Paris, UniversitƩ PSL, Centre de Recherche en Informatique (CRI)'),
(105419, 'https://ror.org/004fpq690', 'en', 1, 'https://ror.org/004fpq690 CzechNanoLab Research Infrastructure VýzkumnÔ infrastruktura CzechNanoLab'),
(105420, 'https://ror.org/007wafy80', 'fr', 1, 'https://ror.org/007wafy80 Maison des Sciences de l''Homme du Pacifique'),
(105421, 'https://ror.org/05j2hty04', 'en', 1, 'https://ror.org/05j2hty04 Oda Bultum University'),
(105422, 'https://ror.org/01xsqw823', 'no_lang_code', 1, 'https://ror.org/01xsqw823 GlaxoSmithKline (United Kingdom)'),
(105423, 'https://ror.org/03kv1ct34', 'es', 1, 'https://ror.org/03kv1ct34 Centro de EnseƱanza para Extranjeros'),
(105424, 'https://ror.org/03yv7qm57', 'it', 1, 'https://ror.org/03yv7qm57 Ospedale Castelfranco Veneto'),
(105425, 'https://ror.org/01q27p626', 'no_lang_code', 1, 'https://ror.org/01q27p626 Neurolixis (United States)'),
(105426, 'https://ror.org/00232ct28', 'en', 1, 'https://ror.org/00232ct28 Federal University of Health Sciences, Ila-Orangun'),
(105427, 'https://ror.org/05m8pzq90', 'en', 1, 'https://ror.org/05m8pzq90 Institut de Recherches Cliniques de MontrƩal Montreal Clinical Research Institute'),
(105428, 'https://ror.org/033p99c56', 'de', 1, 'https://ror.org/033p99c56 Institut für Psychologie, Umwelt, Nachhaltigkeit und Kybernetik Institut für Psychologie, Umwelt, Nachhaltigkeit und Kybernetik (Germany)'),
(105429, 'https://ror.org/0215tyt79', 'id', 1, 'https://ror.org/0215tyt79 Sekolah Tinggi Ilmu Keguruan Dan Ilmu Pendidikan Yayasan Pendidikan Ujung Pandang'),
(105430, 'https://ror.org/05ps48151', 'es', 1, 'https://ror.org/05ps48151 Polytechnic University of Tlaxcala Universidad PolitƩcnica de Tlaxcala'),
(105431, 'https://ror.org/020vvqg79', 'en', 1, 'https://ror.org/020vvqg79 Laboratoř pro syntĆ©zu a měřenĆ­ materiĆ”lÅÆ Materials Growth and Measurement Laboratory'),
(105432, 'https://ror.org/001xjdh50', 'en', 1, 'https://ror.org/001xjdh50 Kansai Medical University é–¢č„æåŒ»ē§‘å¤§å­¦'),
(105433, 'https://ror.org/051exe838', 'en', 1, 'https://ror.org/051exe838 Army Infantry College of PLA 中国人民解放军陆军歄兵学院'),
(105434, 'https://ror.org/03wp25384', 'en', 1, 'https://ror.org/03wp25384 Common Language Resources and Technology Infrastructure'),
(105435, 'https://ror.org/057tezk82', 'en', 1, 'https://ror.org/057tezk82 Northland Regional Council Te Kaunihera Ć  rohe o Te Taitokerau'),
(105436, 'https://ror.org/059bdq320', 'en', 1, 'https://ror.org/059bdq320 Autonomous a2z Corporation Autonomous a2z Corporation (South Korea)'),
(105437, 'https://ror.org/0411d8q28', 'en', 1, 'https://ror.org/0411d8q28 Waco Mammoth National Monument'),
(105438, 'https://ror.org/03ev5xa26', 'en', 1, 'https://ror.org/03ev5xa26 Coiba Scientific Station (Coiba AIP)'),
(105439, 'https://ror.org/039hb9t88', 'pt', 1, 'https://ror.org/039hb9t88 Universidade do Minho Centro de Engenharia Biológica'),
(105440, 'https://ror.org/05qehkd24', 'en', 1, 'https://ror.org/05qehkd24 Ahmadi Hospital-Kuwait Oil Company'),
(105441, 'https://ror.org/020fah966', 'es', 1, 'https://ror.org/020fah966 Universidad Tecnológica de Mineral de la Reforma'),
(105442, 'https://ror.org/00e2e3n51', 'en', 1, 'https://ror.org/00e2e3n51 Mitsubishi Electric Research Laboratories Mitsubishi Electric Research Laboratories (United States)'),
(105443, 'https://ror.org/04vtp9n41', 'en', 1, 'https://ror.org/04vtp9n41 Southern Institute of Ecology Viện Sinh thĆ”i hį»c Miền Nam'),
(105444, 'https://ror.org/02rrhsz92', 'en', 1, 'https://ror.org/02rrhsz92 SUNY Old Westbury State University of New York at Old Westbury'),
(105445, 'https://ror.org/01ce1xs48', 'es', 1, 'https://ror.org/01ce1xs48 Corporación Universitaria de Asturias'),
(105446, 'https://ror.org/02y17a925', 'it', 1, 'https://ror.org/02y17a925 Agenzia Regionale protezione ambientale del Lazio'),
(105447, 'https://ror.org/043gz6e45', 'es', 1, 'https://ror.org/043gz6e45 Servicio Regional de Investigación y Desarrollo Agroalimentario'),
(105448, 'https://ror.org/01v0znr74', 'fr', 1, 'https://ror.org/01v0znr74 Ɖtudes approfondies des sociĆ©tĆ©s traditionnelles et contemporaines en OcĆ©anie'),
(105449, 'https://ror.org/0560stp04', 'en', 1, 'https://ror.org/0560stp04 Nalla Narasimha Reddy Education Society''s Group of Institutions'),
(105450, 'https://ror.org/04t22ac91', 'en', 1, 'https://ror.org/04t22ac91 OEKOTEAM - Institute for Animal Ecology and Landscape Planning OEKOTEAM - Institute for Animal Ecology and Landscape Planning (Austria) ƖKOTEAM - Institut für Tierƶkologie und Naturraumplanung'),
(105451, 'https://ror.org/016vvvm54', 'en', 1, 'https://ror.org/016vvvm54 Peter Cohen Foundation DBA EverythingALS'),
(105452, 'https://ror.org/05mf37487', 'en', 1, 'https://ror.org/05mf37487 U.S. Virgin Islands Division of Fish and Wildlife'),
(105453, 'https://ror.org/05dc6w374', 'en', 1, 'https://ror.org/05dc6w374 Research Data Alliance'),
(105454, 'https://ror.org/03f6z9r32', 'en', 1, 'https://ror.org/03f6z9r32 UniMAC-GIJ University of Media, Arts and Communication - Ghana Institute of Journalism'),
(105455, 'https://ror.org/05y4bwy94', 'es', 1, 'https://ror.org/05y4bwy94 Escuela Normal de San Felipe del Progreso'),
(105456, 'https://ror.org/0038jry16', 'pt', 1, 'https://ror.org/0038jry16 Hospital Santa Luzia'),
(105457, 'https://ror.org/01crmad49', 'en', 1, 'https://ror.org/01crmad49 Federal University of Agriculture Zuru'),
(105458, 'https://ror.org/03k4wdb90', 'en', 1, 'https://ror.org/03k4wdb90 Barcelonaβeta Brain Research Center'),
(105459, 'https://ror.org/044sx9203', 'fr', 1, 'https://ror.org/044sx9203 Sherbrooke Ville de Sherbrooke'),
(105460, 'https://ror.org/031bk9q76', 'en', 1, 'https://ror.org/031bk9q76 Electrical Research and Development Association'),
(105461, 'https://ror.org/04kd6c783', 'no_lang_code', 1, 'https://ror.org/04kd6c783 Advanced Micro Devices (United States)'),
(105462, 'https://ror.org/003eyrc02', 'es', 1, 'https://ror.org/003eyrc02 Instituto de GeologĆ­a'),
(105463, 'https://ror.org/01h3bmp72', 'en', 1, 'https://ror.org/01h3bmp72 Clinical Practice Research Datalink'),
(105464, 'https://ror.org/03tp8z347', 'en', 1, 'https://ror.org/03tp8z347 Astronomický Ćŗstav AV ČR Astronomický Ćŗstav AV ČR, v. v. i. Astronomický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce Czech Academy of Sciences, Astronomical Institute'),
(105465, 'https://ror.org/00vhyej92', 'en', 1, 'https://ror.org/00vhyej92 Federal University of Technology, Babura'),
(105466, 'https://ror.org/0408cjw96', 'en', 1, 'https://ror.org/0408cjw96 Bamidele Olumilua University of Education, Science and Technology Bamidele Olumilua University of Education, Science and Technology, Ikere-Ekiti'),
(105467, 'https://ror.org/04yzd7z34', 'en', 1, 'https://ror.org/04yzd7z34 Fire and Emergency New Zealand'),
(105468, 'https://ror.org/01c64df17', 'en', 1, 'https://ror.org/01c64df17 Illumina (Singapore) Illumina Singapore Pte Ltd'),
(105469, 'https://ror.org/00dm44s31', 'id', 1, 'https://ror.org/00dm44s31 Politeknik Negeri Madiun State Polytechnic of Madiun'),
(105470, 'https://ror.org/012dgx147', 'en', 1, 'https://ror.org/012dgx147 International Center for Advanced Training and Research in Physics'),
(105471, 'https://ror.org/02z4rsp10', 'no_lang_code', 1, 'https://ror.org/02z4rsp10 Airbus (Netherlands)'),
(105472, 'https://ror.org/025ny4j27', 'en', 1, 'https://ror.org/025ny4j27 The Atlantis Project'),
(105473, 'https://ror.org/031mcyy47', 'en', 1, 'https://ror.org/031mcyy47 Edinburgh Systems Edinburgh Systems (United Kingdom)'),
(105474, 'https://ror.org/04n0g0b29', 'ca', 1, 'https://ror.org/04n0g0b29 Pompeu Fabra University Universidad Pompeu Fabra Universitat Pompeu Fabra'),
(105475, 'https://ror.org/03fsekm51', 'en', 1, 'https://ror.org/03fsekm51 Institute of Economics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук'),
(105476, 'https://ror.org/054ca2x66', 'en', 1, 'https://ror.org/054ca2x66 Adler'),
(105477, 'https://ror.org/04x2ddb07', 'de', 1, 'https://ror.org/04x2ddb07 ERKNet'),
(105478, 'https://ror.org/04w0rgq42', 'eu', 1, 'https://ror.org/04w0rgq42 LEA ARTIBAI Ikastetxea'),
(105479, 'https://ror.org/023jyyg30', 'en', 1, 'https://ror.org/023jyyg30 National Infrastructure for Chemical Biology NƔrodnƭ infrastruktura chemickƩ biologie'),
(105480, 'https://ror.org/028696h48', 'de', 1, 'https://ror.org/028696h48 Austrian Biolmaging - Verein zur innovativen, korrelativen, multimodalen Bildgebung in Ɩsterreich'),
(105481, 'https://ror.org/01agts093', 'en', 1, 'https://ror.org/01agts093 Association of Accountants and Auditors of Republic of Srpska'),
(105482, 'https://ror.org/04dmevr13', 'en', 1, 'https://ror.org/04dmevr13 KwaZulu-Natal Museum'),
(105483, 'https://ror.org/00mvc2b94', 'en', 1, 'https://ror.org/00mvc2b94 Dr. Franjo Tudman Defense and Security University'),
(105484, 'https://ror.org/04069k268', 'en', 1, 'https://ror.org/04069k268 ERN ReCONNET'),
(105485, 'https://ror.org/02d4maz67', 'en', 1, 'https://ror.org/02d4maz67 SUNY Maritime College'),
(105486, 'https://ror.org/03khan160', 'en', 1, 'https://ror.org/03khan160 Kannur Dental College'),
(105487, 'https://ror.org/03pvr2g57', 'de', 1, 'https://ror.org/03pvr2g57 Universitätsklinikum Würzburg'),
(105488, 'https://ror.org/05wykb893', 'en', 1, 'https://ror.org/05wykb893 Elliniki Archi Geologikon Kai Metalleftikon Erevnon Hellenic Survey of Geology and Mineral Exploration Ελληνική Αρχή Ī“ĪµĻ‰Ī»ĪæĪ³Ī¹ĪŗĻŽĪ½ & ĪœĪµĻ„Ī±Ī»Ī»ĪµĻ…Ļ„Ī¹ĪŗĻŽĪ½ Ī•ĻĪµĻ…Ī½ĻŽĪ½'),
(105489, 'https://ror.org/03rwcxx67', 'es', 1, 'https://ror.org/03rwcxx67 Centro Cultural Universitario Tlatelolco'),
(105490, 'https://ror.org/04fac6491', 'es', 1, 'https://ror.org/04fac6491 Instituto de Investigaciones sobre la Universidad y la Educación'),
(105491, 'https://ror.org/013cpv265', 'fr', 1, 'https://ror.org/013cpv265 Cégep de Rivière-du-Loup'),
(105492, 'https://ror.org/03rewfs15', 'es', 1, 'https://ror.org/03rewfs15 Universidad de la Isla de la Juventud "Jesús Montané Oropesa"'),
(105493, 'https://ror.org/05a721x13', 'en', 1, 'https://ror.org/05a721x13 EnergetickĆ© využitĆ­ odpadÅÆ a čiÅ”těnĆ­ plynÅÆ Energy Waste Recovery and Gas Treatment'),
(105494, 'https://ror.org/03hh0by67', 'en', 1, 'https://ror.org/03hh0by67 Pacific AIDS Network'),
(105495, 'https://ror.org/01n313408', 'en', 1, 'https://ror.org/01n313408 Sister Nibedita Government General Degree College for Girls'),
(105496, 'https://ror.org/034pkh014', 'en', 1, 'https://ror.org/034pkh014 Kannur Medical College ą“•ą“£ąµą“£ąµ‚ąµ¼ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‡ą“¾ą“³ąµ‡ą“œąµ'),
(105497, 'https://ror.org/05c9qnd49', 'en', 1, 'https://ror.org/05c9qnd49 Amsterdam Cardiovascular Sciences'),
(105498, 'https://ror.org/008snev66', 'fr', 1, 'https://ror.org/008snev66 Institut SupƩrieur de Technologie d''Antananarivo'),
(105499, 'https://ror.org/00xvm4f81', 'en', 1, 'https://ror.org/00xvm4f81 British Columbia Centre of Excellence for Women''s Health'),
(105500, 'https://ror.org/01nzbjb88', 'en', 1, 'https://ror.org/01nzbjb88 Eco Research'),
(105501, 'https://ror.org/01912nj27', 'en', 1, 'https://ror.org/01912nj27 Czech Academy of Sciences, Czech Language Institute Ústav pro jazyk český AV ČR Ústav pro jazyk český AV ČR, v. v. i. Ústav pro jazyk český AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105502, 'https://ror.org/05hwn7849', 'en', 0, 'https://ror.org/05hwn7849 Minnesota Project'),
(105503, 'https://ror.org/03k9fzs17', 'en', 1, 'https://ror.org/03k9fzs17 Centrum výzkumu Řež Research Centre Rez'),
(105504, 'https://ror.org/00j210205', 'en', 1, 'https://ror.org/00j210205 Institute for European Energy and Climate Policy'),
(105505, 'https://ror.org/0123wax79', 'en', 1, 'https://ror.org/0123wax79 Latin American Cooperative Oncology Group (LACOG)'),
(105506, 'https://ror.org/03n73wg95', 'en', 1, 'https://ror.org/03n73wg95 Nanofiber Quantum Technologies, Inc. Nanofiber Quantum Technologies, Inc. (Japan)'),
(105507, 'https://ror.org/03b1fmh33', 'pt', 1, 'https://ror.org/03b1fmh33 Faculdade Santa Marcelina'),
(105508, 'https://ror.org/01w64ht88', 'en', 1, 'https://ror.org/01w64ht88 Vienna BioCenter Core Facilities'),
(105509, 'https://ror.org/01xb7t232', 'en', 1, 'https://ror.org/01xb7t232 KeAi Communications Co., Ltd. KeAi Communications Co., Ltd. (China) åŒ—äŗ¬ē§‘ēˆ±ę£®č“ę–‡åŒ–ä¼ ę’­ęœ‰é™å…¬åø'),
(105510, 'https://ror.org/052tpj472', 'es', 1, 'https://ror.org/052tpj472 Instituto de IngenierĆ­a'),
(105511, 'https://ror.org/05q4tey07', 'no_lang_code', 1, 'https://ror.org/05q4tey07 Blue Quills University University nuhelot''ine thaiyots''i nistameyimâkanak Blue Quills'),
(105512, 'https://ror.org/00f29ja18', 'en', 1, 'https://ror.org/00f29ja18 European Rare Disease Research Coordination and Support Action'),
(105513, 'https://ror.org/00hxy4673', 'pt', 1, 'https://ror.org/00hxy4673 IPE Digital Instituto de Pesquisa para Economia Digital'),
(105514, 'https://ror.org/016ncsr12', 'fr', 1, 'https://ror.org/016ncsr12 Centre Hospitalier RƩgional et Universitaire de Nancy'),
(105515, 'https://ror.org/02gfc7t72', 'es', 1, 'https://ror.org/02gfc7t72 Consejo Superior de Investigaciones Científicas Consell Superior d''Investigacions Científiques Consello Superior de Investigacións Científicas Spanish National Research Council'),
(105516, 'https://ror.org/04nfmp149', 'en', 1, 'https://ror.org/04nfmp149 Bharathiyar Institute of Engineering for Women'),
(105517, 'https://ror.org/05nm3t079', 'en', 1, 'https://ror.org/05nm3t079 University of the City of Muntinlupa'),
(105518, 'https://ror.org/02y22ws83', 'en', 1, 'https://ror.org/02y22ws83 Institut des Sciences naturelles Institut für Naturwissenschaften Institute of Natural Sciences'),
(105519, 'https://ror.org/045jsht94', 'sl', 1, 'https://ror.org/045jsht94 InŔtitut za Razvoj Družbene Odgovornosti'),
(105520, 'https://ror.org/05kak9m10', 'en', 1, 'https://ror.org/05kak9m10 Atacama Large Millimeter / Submillimeter Array – participation of the Czech Republic Atacama Large Millimeter /submillimeter Array – ĆŗÄast ČeskĆ© republiky'),
(105521, 'https://ror.org/01epq7d95', 'fr', 1, 'https://ror.org/01epq7d95 2degrƩs'),
(105522, 'https://ror.org/0549rra43', 'en', 1, 'https://ror.org/0549rra43 Inuvialuit Regional Corporation'),
(105523, 'https://ror.org/00jeq5q38', 'en', 1, 'https://ror.org/00jeq5q38 Kalaroa Govt. College'),
(105524, 'https://ror.org/04vtzcr32', 'en', 1, 'https://ror.org/04vtzcr32 Czech Academy of Sciences, Institute of Atmospheric Physics Ústav fyziky atmosfĆ©ry AV ČR Ústav fyziky atmosfĆ©ry AV ČR, v. v. i. Ústav fyziky atmosfĆ©ry AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105525, 'https://ror.org/03kp1tb17', 'no_lang_code', 1, 'https://ror.org/03kp1tb17 Lubrizol Life Science Health (United States)'),
(105526, 'https://ror.org/055gja518', 'en', 1, 'https://ror.org/055gja518 Center for Economic Research on Governance, Inequality and Conflict'),
(105527, 'https://ror.org/04n6qsf08', 'es', 1, 'https://ror.org/04n6qsf08 Universidad De Santander University of Santander'),
(105528, 'https://ror.org/04wqh1h93', 'en', 1, 'https://ror.org/04wqh1h93 Gandaki Medical College'),
(105529, 'https://ror.org/03znfjv42', 'en', 1, 'https://ror.org/03znfjv42 Nature Conservation and Study Centre'),
(105530, 'https://ror.org/00fp3ce15', 'en', 1, 'https://ror.org/00fp3ce15 The Gurdon Institute'),
(105531, 'https://ror.org/036h5fs56', 'en', 1, 'https://ror.org/036h5fs56 Institute of Malariology, Parasitology, and Entomology Quy Nhon Viện sốt rĆ©t ký sinh trùng Quy NhĘ”n'),
(105532, 'https://ror.org/01hmmsr16', 'it', 1, 'https://ror.org/01hmmsr16 Azienda Ospedaliero-Universitaria di Modena'),
(105533, 'https://ror.org/00h8mcj46', 'en', 1, 'https://ror.org/00h8mcj46 Philippine Association of State Universities and Colleges'),
(105534, 'https://ror.org/00ep5v251', 'de', 1, 'https://ror.org/00ep5v251 Europäische Hochschule für Innovation und Perspektive'),
(105535, 'https://ror.org/03hjh0h14', 'en', 1, 'https://ror.org/03hjh0h14 CNRS@CREATE Ltd CNRS@CREATE Ltd (Singapore)'),
(105536, 'https://ror.org/04sbq4036', 'fr', 1, 'https://ror.org/04sbq4036 MusƩe national d''archƩologie, d''historie et d''art'),
(105537, 'https://ror.org/04akc8v18', 'en', 1, 'https://ror.org/04akc8v18 UXtweak j.s.a. UXtweak j.s.a. (Slovakia)'),
(105538, 'https://ror.org/03mj9k259', 'sv', 1, 'https://ror.org/03mj9k259 K2 The Swedish Knowledge Centre for Public Transport'),
(105539, 'https://ror.org/02c44gx70', 'es', 1, 'https://ror.org/02c44gx70 Centro de Investigación Flamenco Telethusa'),
(105540, 'https://ror.org/00pg3n198', 'it', 1, 'https://ror.org/00pg3n198 Agenzia Regionale per la Prevenzione e la Protezione dell''Ambiente Puglia'),
(105541, 'https://ror.org/05smn7x89', 'en', 1, 'https://ror.org/05smn7x89 Sree Abirami College of Occupational Therapy'),
(105542, 'https://ror.org/04z8jg394', 'en', 1, 'https://ror.org/04z8jg394 GFZ Helmholtz Centre for Geosciences GFZ Helmholtz-Zentrum für Geoforschung'),
(105543, 'https://ror.org/00wj9ta74', 'en', 1, 'https://ror.org/00wj9ta74 TheCombinatorics Consortium'),
(105544, 'https://ror.org/018681541', 'en', 1, 'https://ror.org/018681541 Black Sea Agricultural Research Institute'),
(105545, 'https://ror.org/013swba46', 'en', 1, 'https://ror.org/013swba46 Punjab Tianjin University of Technology'),
(105546, 'https://ror.org/0095hvq29', 'en', 1, 'https://ror.org/0095hvq29 Youthscape'),
(105547, 'https://ror.org/05rdan836', 'eu', 1, 'https://ror.org/05rdan836 Leartiker'),
(105548, 'https://ror.org/0208ges23', 'en', 1, 'https://ror.org/0208ges23 ERN RITA'),
(105549, 'https://ror.org/03kc13263', 'fr', 1, 'https://ror.org/03kc13263 Centre de GƩosciences Geosciences and Geoengineering Research Department Mines Paris, PSL University, Centre for geosciences and geoengineering Mines Paris, UniversitƩ PSL, Centre de GƩosciences'),
(105550, 'https://ror.org/04hypz134', 'en', 1, 'https://ror.org/04hypz134 Kyiv Zoological Park of National Importance'),
(105551, 'https://ror.org/041b8zc76', 'en', 1, 'https://ror.org/041b8zc76 Institute for Work & Health'),
(105552, 'https://ror.org/037x9qj67', 'en', 1, 'https://ror.org/037x9qj67 Research Data Alliance-US'),
(105553, 'https://ror.org/04xcmds50', 'en', 1, 'https://ror.org/04xcmds50 Lifecare Hospital'),
(105554, 'https://ror.org/04dng8q18', 'en', 1, 'https://ror.org/04dng8q18 ERN EuroBloodNet'),
(105555, 'https://ror.org/03et06q41', 'en', 1, 'https://ror.org/03et06q41 Khwopa College of Engineering ą¤–ą„ą¤µą¤Ŗ ą¤•ą¤²ą„‡ą¤œ अफ ą¤ˆą¤Øą„ą¤œą¤æą¤Øą¤æą¤Æą¤°ą¤æą¤™ą„ą¤—'),
(105556, 'https://ror.org/011pe6079', 'en', 1, 'https://ror.org/011pe6079 Urban Redevelopment Authority'),
(105557, 'https://ror.org/01yhr7f48', 'en', 1, 'https://ror.org/01yhr7f48 Association Nationale des Centres d''amitiƩ National Association of Friendship Centres'),
(105558, 'https://ror.org/02999cg07', 'en', 1, 'https://ror.org/02999cg07 Bệnh Viện Mỹ Đức My Duc Hospital'),
(105559, 'https://ror.org/011wzff38', 'cs', 0, 'https://ror.org/011wzff38 BIVÅ  VysokĆ” Å”kola v Praze a v Brně'),
(105560, 'https://ror.org/05fbs9e55', 'en', 1, 'https://ror.org/05fbs9e55 Taiwan Banana Research Institute å°ē£é¦™č•‰ē ”ē©¶ę‰€'),
(105561, 'https://ror.org/05ghbjx71', 'fr', 1, 'https://ror.org/05ghbjx71 Centre intégré de santé et de services sociaux de Chaudière-Appalaches'),
(105562, 'https://ror.org/00ck9qk95', 'ne', 1, 'https://ror.org/00ck9qk95 Nepal Netra Jyoti Sangh (NNJS)'),
(105563, 'https://ror.org/033n3pw66', 'en', 1, 'https://ror.org/033n3pw66 JihočeskĆ” univerzita v Českých BudějovicĆ­ch University of South Bohemia in ČeskĆ© Budějovice'),
(105564, 'https://ror.org/0111tgp49', 'en', 1, 'https://ror.org/0111tgp49 Geological Survey of Bangladesh বাংলাদেশ ą¦­ą§‚ą¦¤ą¦¾ą¦¤ą§ą¦¤ą§ą¦¬ą¦æą¦• জরিপ ą¦…ą¦§ą¦æą¦¦ą¦Ŗą§ą¦¤ą¦°'),
(105565, 'https://ror.org/00rxtj918', 'en', 1, 'https://ror.org/00rxtj918 Bangladesh Foreign Trade Institute বাংলাদেশ ফরেন ą¦Ÿą§ą¦°ą§‡ą¦” ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(105566, 'https://ror.org/0009t4v78', 'en', 1, 'https://ror.org/0009t4v78 Anglia Ruskin University Anglia Ruskin University Higher Education Corporation Prifysgol Anglia Ruskin'),
(105567, 'https://ror.org/05mzxk449', 'fr', 1, 'https://ror.org/05mzxk449 Association pour la diffusion de la recherche francophone en intelligence artificielle'),
(105568, 'https://ror.org/0106a2j17', 'no_lang_code', 1, 'https://ror.org/0106a2j17 Wolaita Sodo University į‹ˆįˆ‹į‹­į‰³ įˆ¶į‹¶ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(105569, 'https://ror.org/01m9c6b05', 'en', 1, 'https://ror.org/01m9c6b05 Articares Pte Ltd Articares Pte Ltd (Singapore)'),
(105570, 'https://ror.org/01chzd453', 'en', 1, 'https://ror.org/01chzd453 University of Pardubice'),
(105571, 'https://ror.org/01qz8fw96', 'en', 0, 'https://ror.org/01qz8fw96 Lutheran Theological Seminary at Philadelphia'),
(105572, 'https://ror.org/047hncm83', 'it', 1, 'https://ror.org/047hncm83 Agenzia Regionale per la Protezione dell''ambiente del Friuli Venezia Giulia'),
(105573, 'https://ror.org/00dne1g41', 'de', 1, 'https://ror.org/00dne1g41 Institut für donauschwäbische Geschichte und Landeskunde'),
(105574, 'https://ror.org/00wzqmx94', 'en', 1, 'https://ror.org/00wzqmx94 Biotechnologický Ćŗstav AV ČR Biotechnologický Ćŗstav AV ČR, v. v. i. Biotechnologický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce Czech Academy of Sciences, Institute of Biotechnology'),
(105575, 'https://ror.org/05n7r7c91', 'en', 1, 'https://ror.org/05n7r7c91 International Society of Biomechanics in Sports'),
(105576, 'https://ror.org/05acchb91', 'en', 1, 'https://ror.org/05acchb91 Association of Food Technology, Turkey Gıda Teknolojisi Derneği'),
(105577, 'https://ror.org/03kg99y69', 'es', 1, 'https://ror.org/03kg99y69 Officina Nacional de Normalizacion'),
(105578, 'https://ror.org/04ckbty56', 'en', 1, 'https://ror.org/04ckbty56 Cardio-Pulmonary Institute'),
(105579, 'https://ror.org/05cfanb60', 'de', 1, 'https://ror.org/05cfanb60 St. Josef-Stift Sendenhorst'),
(105580, 'https://ror.org/04r6ndt39', 'es', 1, 'https://ror.org/04r6ndt39 FUNDECYT PCTEX'),
(105581, 'https://ror.org/04jan8q76', 'es', 1, 'https://ror.org/04jan8q76 Dirección General de Bibliotecas y Servicios Digitales de Información'),
(105582, 'https://ror.org/03waxs135', 'es', 1, 'https://ror.org/03waxs135 Hospital General Docente HƩroes del Baire'),
(105583, 'https://ror.org/023jryc44', 'en', 1, 'https://ror.org/023jryc44 Testament Theological Seminary'),
(105584, 'https://ror.org/00rn4r370', 'en', 1, 'https://ror.org/00rn4r370 Peace Corps'),
(105585, 'https://ror.org/02m69r871', 'en', 1, 'https://ror.org/02m69r871 Maine Mineral & Gem Museum'),
(105586, 'https://ror.org/021mmqe47', 'id', 1, 'https://ror.org/021mmqe47 Sekretariat Jenderal Dewan Perwakilan Rakyat Republik Indonesia'),
(105587, 'https://ror.org/038agj363', 'en', 1, 'https://ror.org/038agj363 National Library of the Czech Republic NÔrodní knihovna České republiky'),
(105588, 'https://ror.org/00ntacr26', 'en', 1, 'https://ror.org/00ntacr26 AI Singapore'),
(105589, 'https://ror.org/02wx4md20', 'en', 1, 'https://ror.org/02wx4md20 Czech National Cluster for Family Research Český nÔrodní uzel pro výzkum rodiny GGP-CZ'),
(105590, 'https://ror.org/04q970a97', 'en', 1, 'https://ror.org/04q970a97 Vladivostok State University ВлаГивостокский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105591, 'https://ror.org/01w176078', 'fr', 1, 'https://ror.org/01w176078 GƩopƓle du Pacifique Sud'),
(105592, 'https://ror.org/00q3psk33', 'en', 1, 'https://ror.org/00q3psk33 Institute of Biophysics and Cell Engineering Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Š±Ń–ŃŃ„Ń–Š·Ń–ŠŗŃ– і клетачнай інжынерыі Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Š±Ń–ŃŃ„Ń–Š·Ń–ŠŗŃ– і клетачнай інжынерыі ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(105593, 'https://ror.org/00t67pt25', 'en', 1, 'https://ror.org/00t67pt25 Birmingham City University'),
(105594, 'https://ror.org/051c1vb08', 'fr', 1, 'https://ror.org/051c1vb08 PHEN X - Physiopathologie, Environnement et Exposome'),
(105595, 'https://ror.org/02wg9xc72', 'en', 1, 'https://ror.org/02wg9xc72 Consortium of European Social Science Data Archives'),
(105596, 'https://ror.org/02ynmc580', 'fr', 1, 'https://ror.org/02ynmc580 Laboratoire Animal et Agroécosystèmes'),
(105597, 'https://ror.org/02mvmd115', 'en', 1, 'https://ror.org/02mvmd115 Centrum výzkumu a vývoje plazmatu a nanotechnologických povrchových úprav R&D Centre for Low-Cost Plasma and Nanotechnology Surface Modifications'),
(105598, 'https://ror.org/02h9n4675', 'no_lang_code', 1, 'https://ror.org/02h9n4675 ERNICA'),
(105599, 'https://ror.org/00fbnyb24', 'en', 1, 'https://ror.org/00fbnyb24 Julius-Maximilians-Universität Würzburg University of Würzburg'),
(105600, 'https://ror.org/03v501g47', 'de', 1, 'https://ror.org/03v501g47 TÜV AI.Lab TÜV AI.Lab (Germany)'),
(105601, 'https://ror.org/03kadp558', 'en', 1, 'https://ror.org/03kadp558 The Aurum Project'),
(105602, 'https://ror.org/05dt05430', 'fr', 1, 'https://ror.org/05dt05430 Groupe de Recherche sur la Socialisation'),
(105603, 'https://ror.org/00xsr9m91', 'en', 1, 'https://ror.org/00xsr9m91 Tiangong University 天擄巄业大学'),
(105604, 'https://ror.org/020z5t515', 'fr', 1, 'https://ror.org/020z5t515 LECEMO - Les Cultures de l''Europe MƩditerranƩenne Occidentale Les Cultures de l''Europe MƩditerranƩenne Occidentale'),
(105605, 'https://ror.org/00xms0c62', 'it', 1, 'https://ror.org/00xms0c62 Agenzia Regionale per la Tutela dell''Ambiente'),
(105606, 'https://ror.org/025bevr47', 'en', 1, 'https://ror.org/025bevr47 Montserrat National Trust'),
(105607, 'https://ror.org/00jgd4s13', 'en', 1, 'https://ror.org/00jgd4s13 ICAR - Central Institute for Research on Cotton Technology'),
(105608, 'https://ror.org/01v5hek98', 'en', 1, 'https://ror.org/01v5hek98 Czech Academy of Sciences, Global Change Research Institute Global Change Research Institute CAS Ústav výzkumu globĆ”lnĆ­ změny AV ČR Ústav výzkumu globĆ”lnĆ­ změny AV ČR, v. v. i. Ústav výzkumu globĆ”lnĆ­ změny AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105609, 'https://ror.org/033thdr11', 'en', 1, 'https://ror.org/033thdr11 Public Health Concern Trust, Nepal जन ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤øą¤°ą„‹ą¤•ą¤¾ą¤° ą¤Ÿą„ą¤°ą¤·ą„ą¤Ÿ'),
(105610, 'https://ror.org/00chzvk16', 'es', 1, 'https://ror.org/00chzvk16 Centro de Proteccion e Higiene de la Radiociones'),
(105611, 'https://ror.org/04m06f066', 'de', 1, 'https://ror.org/04m06f066 TÜV Association TÜV-Verband'),
(105612, 'https://ror.org/05dq4pp56', 'en', 1, 'https://ror.org/05dq4pp56 Internationaal Instituut voor Sociale Geschiedenis International Institute of Social History'),
(105613, 'https://ror.org/00sdcqq09', 'en', 1, 'https://ror.org/00sdcqq09 Lesbian, Gay, Bisexual and Transgender Community Center'),
(105614, 'https://ror.org/04evsam41', 'en', 1, 'https://ror.org/04evsam41 Mount Royal University'),
(105615, 'https://ror.org/05x4gcn89', 'en', 1, 'https://ror.org/05x4gcn89 College of Technical Sciences Derna ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŁŁ†ŁŠŲ© درنة'),
(105616, 'https://ror.org/05ygqar59', 'en', 1, 'https://ror.org/05ygqar59 Maharshi Dayanand Science College, Porbandar'),
(105617, 'https://ror.org/01k1m6p08', 'en', 1, 'https://ror.org/01k1m6p08 Rahman Institute of Higher Education Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ رحمان Ų±Ų§Ł…Ų³Ų±'),
(105618, 'https://ror.org/02acv3g39', 'en', 1, 'https://ror.org/02acv3g39 Czech Academy of Sciences, Institute of Chemical Process Fundamentals Ústav chemických procesÅÆ AV ČR Ústav chemických procesÅÆ AV ČR, v. v. i. Ústav chemických procesÅÆ AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105619, 'https://ror.org/05fe6qm90', 'nl', 1, 'https://ror.org/05fe6qm90 Nederlands Instituut Publieke Veiligheid Netherlands Institute for Public Safety'),
(105620, 'https://ror.org/02vc99v03', 'fr', 0, 'https://ror.org/02vc99v03 Calbinotox ComposƩs Alimentaires : BiofonctionnalitƩs et risques Neurotoxiques Food Compounds: Biofunctionalities and Neurotoxic Risks'),
(105621, 'https://ror.org/008adv646', 'en', 1, 'https://ror.org/008adv646 Kansas Department of Wildlife and Parks'),
(105622, 'https://ror.org/02scfj030', 'no_lang_code', 1, 'https://ror.org/02scfj030 RELX Group (Netherlands)'),
(105623, 'https://ror.org/04bdjet71', 'en', 1, 'https://ror.org/04bdjet71 Sydenham College of Commerce and Economics, Mumbai'),
(105624, 'https://ror.org/03tmbn325', 'en', 1, 'https://ror.org/03tmbn325 GM University Davanagere Karnataka'),
(105625, 'https://ror.org/05qkemg93', 'en', 1, 'https://ror.org/05qkemg93 National Healthcare Group'),
(105626, 'https://ror.org/015m6h915', 'en', 1, 'https://ror.org/015m6h915 Erbil Polytechnic University Ų¬Ų§Ł…Ų¹Ų© Ų£Ų±ŲØŁŠŁ„ Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų²Ų§Ł†Ś©Ū†ŪŒ Ł¾Ū†Ł„ŪŒŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ Ś¾Ū•ŁˆŁ„ŪŽŲ±'),
(105627, 'https://ror.org/026ytr635', 'en', 1, 'https://ror.org/026ytr635 Centre international de l''ISSN ISSN International Centre'),
(105628, 'https://ror.org/00jp6wj61', 'es', 1, 'https://ror.org/00jp6wj61 Instituto Nacional de Metrologia Instituto Nacional de Metrologia de la Republica de Cuba'),
(105629, 'https://ror.org/04mc23283', 'en', 1, 'https://ror.org/04mc23283 Tartu Observatoorium Tartu Observatory'),
(105630, 'https://ror.org/05jnvbc31', 'en', 1, 'https://ror.org/05jnvbc31 Astana IT University'),
(105631, 'https://ror.org/044mj7r89', 'es', 1, 'https://ror.org/044mj7r89 Institut de Biologia Evolutiva Institute of Evolutionary Biology Instituto de BiologĆ­a Evolutiva'),
(105632, 'https://ror.org/03weg0b71', 'en', 1, 'https://ror.org/03weg0b71 Google (Singapore) Google Asia Pacific Pte Ltd'),
(105633, 'https://ror.org/01mtt4z48', 'de', 1, 'https://ror.org/01mtt4z48 Goethe-Institut Singapore Goethe-Institut Singapur'),
(105634, 'https://ror.org/00fxwgt94', 'fr', 1, 'https://ror.org/00fxwgt94 Centre de Recherche sur les Poétiques du XIXe siècle'),
(105635, 'https://ror.org/038fcbc74', 'fr', 1, 'https://ror.org/038fcbc74 Institut de GƩnomique Fonctionnelle de Lyon'),
(105636, 'https://ror.org/00xdsr520', 'en', 1, 'https://ror.org/00xdsr520 MetabERN'),
(105637, 'https://ror.org/03jk31721', 'en', 1, 'https://ror.org/03jk31721 EyeSmart Technology Ltd. EyeSmart Technology Ltd. (China) åŒ—äŗ¬é‡Šē å¤§åŽē§‘ęŠ€ęœ‰é™å…¬åø'),
(105638, 'https://ror.org/010nsgg66', 'de', 1, 'https://ror.org/010nsgg66 TU Braunschweig Technische UniversitƤt Braunschweig'),
(105639, 'https://ror.org/010sf3c58', 'en', 1, 'https://ror.org/010sf3c58 Adisseo France SAS Adisseo France SAS (France)'),
(105640, 'https://ror.org/04ht9dx76', 'de', 1, 'https://ror.org/04ht9dx76 Vorarlberger Landesbibliothek'),
(105641, 'https://ror.org/03szqc633', 'en', 1, 'https://ror.org/03szqc633 Maharashtra Institute of Medical Science and Research'),
(105642, 'https://ror.org/0419b2556', 'it', 1, 'https://ror.org/0419b2556 Agenzia Regionale per la Protezione dell''ambiente ligure'),
(105643, 'https://ror.org/022fhz392', 'en', 1, 'https://ror.org/022fhz392 Bryansk State University Š‘Ń€ŃŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика И. Š“. ŠŸŠµŃ‚Ń€Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(105644, 'https://ror.org/0282skn54', 'en', 1, 'https://ror.org/0282skn54 JFE Engineering Pte Ltd JFE Engineering Pte Ltd (Singapore)'),
(105645, 'https://ror.org/0214h3370', 'en', 1, 'https://ror.org/0214h3370 ERN EpiCARE'),
(105646, 'https://ror.org/001w7jn25', 'de', 1, 'https://ror.org/001w7jn25 CharitƩ - UniversitƤtsmedizin Berlin'),
(105647, 'https://ror.org/02kb5ve22', 'en', 1, 'https://ror.org/02kb5ve22 American Musicological Society'),
(105648, 'https://ror.org/03sbpja79', 'en', 1, 'https://ror.org/03sbpja79 Department of Health and Social Care'),
(105649, 'https://ror.org/00qaqy020', 'it', 1, 'https://ror.org/00qaqy020 Agenzia Regionale per la Protezione Ambientale della Toscana'),
(105650, 'https://ror.org/02vmnye06', 'en', 1, 'https://ror.org/02vmnye06 Koninklijke Militaire School Kƶnigliche MilitƤrakademie Royal Military Academy Ɖcole Royale Militaire'),
(105651, 'https://ror.org/000nfmp17', 'fr', 1, 'https://ror.org/000nfmp17 Centre de Recherche sur l''AmƩrique PrƩ-hispanique'),
(105652, 'https://ror.org/019yc2n42', 'fr', 1, 'https://ror.org/019yc2n42 GƩomƩtrie algƩbrique et applications Ơ la thƩorie de l''information'),
(105653, 'https://ror.org/013fhv752', 'en', 1, 'https://ror.org/013fhv752 Elsevier BV Elsevier BV (Netherlands)'),
(105654, 'https://ror.org/00cn3vx82', 'en', 1, 'https://ror.org/00cn3vx82 Novartis Institute For Tropical Diseases Novartis Institute For Tropical Diseases Pte Ltd'),
(105655, 'https://ror.org/01gccqc59', 'en', 1, 'https://ror.org/01gccqc59 Research Institute for Labour and Social Affairs'),
(105656, 'https://ror.org/00y25pj85', 'pt', 1, 'https://ror.org/00y25pj85 Unidade Local de SaĆŗde do Alto Minho'),
(105657, 'https://ror.org/03s72rc96', 'en', 1, 'https://ror.org/03s72rc96 Open University of Kenya'),
(105658, 'https://ror.org/044n25186', 'en', 1, 'https://ror.org/044n25186 Yuriy Fedkovych Chernivtsi National University Š§ŠµŃ€Š½Ń–Š²ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š®Ń€Ń–Ń Š¤ŠµŠ“ŃŒŠŗŠ¾Š²ŠøŃ‡Š°'),
(105659, 'https://ror.org/03pbpa834', 'en', 1, 'https://ror.org/03pbpa834 ERN GENTURIS'),
(105660, 'https://ror.org/04ghsqz27', 'en', 1, 'https://ror.org/04ghsqz27 U.S. Virgin Islands Department of Planning and Natural Resources'),
(105661, 'https://ror.org/05t153d32', 'en', 1, 'https://ror.org/05t153d32 JFE Engineering Corporation JFE Engineering Corporation (Japan) JFEć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚° ę Ŗå¼ä¼šē¤¾'),
(105662, 'https://ror.org/01304n587', 'en', 1, 'https://ror.org/01304n587 Bani-Waleed University Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŁŠ ŁˆŁ„ŁŠŲÆ'),
(105663, 'https://ror.org/04gwnkw13', 'es', 1, 'https://ror.org/04gwnkw13 Centro Nacional de TecnologĆ­a QuĆ­mica'),
(105664, 'https://ror.org/0129qb137', 'ro', 1, 'https://ror.org/0129qb137 Universitatea Adventus'),
(105665, 'https://ror.org/05a4pj207', 'en', 1, 'https://ror.org/05a4pj207 SUNY Cortland'),
(105666, 'https://ror.org/03qb6k992', 'en', 1, 'https://ror.org/03qb6k992 Quantum Science Center of Guangdong-Hong Kong-Macao Greater Bay Area ē²¤ęøÆę¾³é‡å­ē§‘å­¦äø­åæƒ'),
(105667, 'https://ror.org/02asgya46', 'it', 1, 'https://ror.org/02asgya46 Agenzia Provinciale per la Protezione dell''ambiente'),
(105668, 'https://ror.org/00ascas35', 'es', 1, 'https://ror.org/00ascas35 Sociedad de Doctores e Investigadores de Colombia'),
(105669, 'https://ror.org/016knds80', 'fr', 1, 'https://ror.org/016knds80 Fondation Saint Helier'),
(105670, 'https://ror.org/007413320', 'en', 1, 'https://ror.org/007413320 Seichiryo Hospital åŒ»ē™‚ę³•äŗŗäŗ¤ę­£ä¼šē²¾ę²»åÆ®ē—…é™¢'),
(105671, 'https://ror.org/00wgpgb78', 'en', 1, 'https://ror.org/00wgpgb78 John Adams Institute for Accelerator Science'),
(105672, 'https://ror.org/051316d77', 'en', 1, 'https://ror.org/051316d77 National Film Archive NÔrodní filmový archiv'),
(105673, 'https://ror.org/00defv642', 'en', 1, 'https://ror.org/00defv642 National Research Infrastructure for Biological and Medical Imaging NƔrodnƭ infrastruktura pro biologickƩ a medicƭnskƩ zobrazovƔnƭ'),
(105674, 'https://ror.org/00gcjcf31', 'en', 1, 'https://ror.org/00gcjcf31 Professional Compounding Centers of America Professional Compounding Centers of America (United States)'),
(105675, 'https://ror.org/00226ge45', 'en', 1, 'https://ror.org/00226ge45 Global Green Growth Institute Global Green Growth Institute (South Korea) źø€ė”œė²Œė…¹ģƒ‰ģ„±ģž„ģ—°źµ¬ģ†Œ'),
(105676, 'https://ror.org/05wkmpm88', 'en', 1, 'https://ror.org/05wkmpm88 EDF LAB Singapore Pte Ltd EDF LAB Singapore Pte Ltd (Singapore)'),
(105677, 'https://ror.org/01hf3jh89', 'es', 1, 'https://ror.org/01hf3jh89 Centro Especializado en Diabetes, Obesidad y Prevención de Enfermedades Cardiovasculares'),
(105678, 'https://ror.org/008zr3m11', 'en', 1, 'https://ror.org/008zr3m11 SUNY Morrisville'),
(105679, 'https://ror.org/013zggc82', 'en', 1, 'https://ror.org/013zggc82 Cherenkov Telescope Array – participation of the Czech Republic Cherenkov Telescope Array – ĆŗÄast ČR'),
(105680, 'https://ror.org/00qsype34', 'en', 1, 'https://ror.org/00qsype34 Armavir Institute of Mechanics and Technology Армавирский механико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(105681, 'https://ror.org/014zc6253', 'en', 1, 'https://ror.org/014zc6253 Institut für Marine Biotechnologie Institute of Marine Biotechnology'),
(105682, 'https://ror.org/0339vbv81', 'fr', 1, 'https://ror.org/0339vbv81 ZĆŗ'),
(105683, 'https://ror.org/05fb7v315', 'en', 1, 'https://ror.org/05fb7v315 CTA Observatory'),
(105684, 'https://ror.org/01przfp05', 'en', 1, 'https://ror.org/01przfp05 University of Narowal'),
(105685, 'https://ror.org/03mmcvm23', 'id', 1, 'https://ror.org/03mmcvm23 Institut Agama Islam Negeri Ponorogo'),
(105686, 'https://ror.org/008yqe287', 'it', 1, 'https://ror.org/008yqe287 RINA Consulting - Centro Sviluppo Materiali S.p.A. RINA Consulting - Centro Sviluppo Materiali S.p.A. (Italy)'),
(105687, 'https://ror.org/011xjpe74', 'en', 1, 'https://ror.org/011xjpe74 Gopalganj Science and Technology University ą¦—ą§‹ą¦Ŗą¦¾ą¦²ą¦—ą¦žą§ą¦œ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(105688, 'https://ror.org/0194egz44', 'es', 1, 'https://ror.org/0194egz44 Centro de Investigaciones Multidisciplinarias sobre Chiapas y la Frontera Sur'),
(105689, 'https://ror.org/03v2eh785', 'en', 1, 'https://ror.org/03v2eh785 Agricultural and Rural Management Training Institute'),
(105690, 'https://ror.org/05k4wb327', 'en', 1, 'https://ror.org/05k4wb327 Maharashtra Institute of Dental Science and Research'),
(105691, 'https://ror.org/01r4q9n85', 'en', 1, 'https://ror.org/01r4q9n85 Universidade de Macau University of Macau'),
(105692, 'https://ror.org/04bfjpv87', 'en', 1, 'https://ror.org/04bfjpv87 Cisbio Cisbio (France) Cisbio Bioassays'),
(105693, 'https://ror.org/05qfavd56', 'en', 1, 'https://ror.org/05qfavd56 University of Sciences and Arts in Lebanon Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„Ų¢ŲÆŲ§ŲØ Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ©'),
(105694, 'https://ror.org/01ca3xs90', 'fr', 1, 'https://ror.org/01ca3xs90 Centre de rƩadaptation en dƩpendance de QuƩbec'),
(105695, 'https://ror.org/02wae9s43', 'en', 1, 'https://ror.org/02wae9s43 World Health Organization Regional Office for South-East Asia'),
(105696, 'https://ror.org/051ycea61', 'en', 1, 'https://ror.org/051ycea61 European Clinical Research Infrastructure Network'),
(105697, 'https://ror.org/05db0es39', 'it', 1, 'https://ror.org/05db0es39 Institute for Studies on the Mediterranean (CNR - ISMed) Istituto di Studi sul Mediterraneo (CNR - ISMed)'),
(105698, 'https://ror.org/013kbs677', 'en', 1, 'https://ror.org/013kbs677 Thunder Bay Regional Research Institute'),
(105699, 'https://ror.org/05cn0b378', 'en', 1, 'https://ror.org/05cn0b378 Prague Asterix Laser System'),
(105700, 'https://ror.org/01ahvm174', 'en', 1, 'https://ror.org/01ahvm174 NFL Foundation'),
(105701, 'https://ror.org/039v8dd90', 'en', 1, 'https://ror.org/039v8dd90 Data Intelligence Institute of Paris'),
(105702, 'https://ror.org/020r6p262', 'en', 1, 'https://ror.org/020r6p262 IVL - Swedish Environmental Research Institute IVL Svenska Miljƶinstitutet IVL Swedish Environmental Research Institute'),
(105703, 'https://ror.org/00vgscq55', 'en', 0, 'https://ror.org/00vgscq55 University of Belgrade – Faculty of Pharmacy Univerzitet u Beogradu – Farmaceutski fakultet'),
(105704, 'https://ror.org/00f0khk08', 'it', 1, 'https://ror.org/00f0khk08 Agenzia Regionale per la Protezione Ambientale dell''Umbria'),
(105705, 'https://ror.org/0046gcs23', 'en', 1, 'https://ror.org/0046gcs23 Max Planck Institute for Infection Biology Max-Planck-Institut für Infektionsbiologie'),
(105706, 'https://ror.org/02n5e6456', 'en', 1, 'https://ror.org/02n5e6456 Peninsula Health'),
(105707, 'https://ror.org/0415vcw02', 'en', 1, 'https://ror.org/0415vcw02 Czech University of Life Sciences Prague ČeskĆ” zemědělskĆ” univerzita v Praze'),
(105708, 'https://ror.org/02xsn1q87', 'en', 1, 'https://ror.org/02xsn1q87 Nootan Ayurvedic College & Research Centre'),
(105709, 'https://ror.org/04mb4bg59', 'en', 1, 'https://ror.org/04mb4bg59 AMSolutions Inc. AMSolutions Inc. (Korea)'),
(105710, 'https://ror.org/01vr20t27', 'en', 1, 'https://ror.org/01vr20t27 Czech Academy of Sciences, Institute of Czech Literature Ústav pro českou literaturu AV ČR Ústav pro českou literaturu AV ČR, v. v. i. Ústav pro českou literaturu AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105711, 'https://ror.org/00c33xm12', 'en', 1, 'https://ror.org/00c33xm12 Neurophet (South Korea) Neurophet Inc. ė‰“ė”œķŽ« ģ£¼ģ‹ķšŒģ‚¬'),
(105712, 'https://ror.org/02p87jp31', 'es', 1, 'https://ror.org/02p87jp31 Biblioteca del Congreso Nacional de Chile'),
(105713, 'https://ror.org/032xkv341', 'en', 1, 'https://ror.org/032xkv341 Exactpro Systems Exactpro Systems (United Kingdom)'),
(105714, 'https://ror.org/039vhkg84', 'es', 1, 'https://ror.org/039vhkg84 Comisión Nacional de Investigación y Desarrollo Aeroespacial National Commission for Aerospace Research and Development'),
(105715, 'https://ror.org/0289y1w68', 'en', 1, 'https://ror.org/0289y1w68 Acknowledge Education'),
(105716, 'https://ror.org/036e61f39', 'en', 1, 'https://ror.org/036e61f39 ERN RARE-LIVER'),
(105717, 'https://ror.org/01yb6xh37', 'en', 1, 'https://ror.org/01yb6xh37 World Health Organization - Bangladesh'),
(105718, 'https://ror.org/01t6gwh61', 'en', 1, 'https://ror.org/01t6gwh61 VR-1 – Training Reactor for Research Activities VR-1 – Å kolnĆ­ reaktor pro výzkumnou činnost'),
(105719, 'https://ror.org/04tjt3j49', 'en', 1, 'https://ror.org/04tjt3j49 National Institute of Biologicals'),
(105720, 'https://ror.org/0234cd281', 'no_lang_code', 1, 'https://ror.org/0234cd281 Mitsubishi Group (Japan) äø‰č±ć‚°ćƒ«ćƒ¼ćƒ—'),
(105721, 'https://ror.org/00d0nc645', 'no_lang_code', 1, 'https://ror.org/00d0nc645 Microsoft (United States)'),
(105722, 'https://ror.org/004n81v75', 'fr', 1, 'https://ror.org/004n81v75 Ecole Normale SupĆ©rieure of Laghouat المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ŲØŲ§Ł„Ų£ŲŗŁˆŲ§Ų·'),
(105723, 'https://ror.org/0436mv865', 'en', 1, 'https://ror.org/0436mv865 Czech Agrifood Research Center NĆ”rodnĆ­ centrum zemědělskĆ©ho a potravinÔřskĆ©ho výzkumu NĆ”rodnĆ­ centrum zemědělskĆ©ho a potravinÔřskĆ©ho výzkumu, v. v. i.'),
(105724, 'https://ror.org/00fjnjn69', 'fr', 1, 'https://ror.org/00fjnjn69 Cegep de Trois-Rivieres College of general and vocational education Trois-Rivieres Collège d''enseignement général et professionnel'),
(105725, 'https://ror.org/030g3ew36', 'pt', 1, 'https://ror.org/030g3ew36 Secretaria de Estado de Educação de Minas Gerais'),
(105726, 'https://ror.org/00pnhhv55', 'no_lang_code', 1, 'https://ror.org/00pnhhv55 Jamia Millia Islamia جامعہ Ł…Ł„ŪŒŪ Ų§Ų³Ł„Ų§Ł…ŪŒŪ जामिया मिलिया ą¤‡ą¤øą„ą¤²ą¤¾ą¤®ą¤æą¤Æą¤¾ জামিয়া মিলিয়া ইসলামিয়া ąØœąØ¾ąØ®ą©€ąØ† ਮਿਲੀਆ ਇਸਲਾਮੀਆ ą“œą“¾ą“®ą“æą“Æ ą“®ą“æą“²ąµą“²ą“æą“Æ ą“‡ą“øąµą“²ą“¾ą“®ą“æą“Æ'),
(105727, 'https://ror.org/03n8g4k47', 'en', 1, 'https://ror.org/03n8g4k47 Kwansei Gakuin Junior College é–¢č„æå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(105728, 'https://ror.org/0173pgy91', 'en', 1, 'https://ror.org/0173pgy91 Maharana Pratap Polytechnic Gorakhpur'),
(105729, 'https://ror.org/04td3ys19', 'en', 1, 'https://ror.org/04td3ys19 Quadram Institute'),
(105730, 'https://ror.org/04zjhw235', 'es', 1, 'https://ror.org/04zjhw235 Instituto Tecnológico Superior de AcatlÔn de Osorio TecNM Campus de AcatlÔn de Osorio Tecnológico Nacional de México Campus de AcatlÔn de Osorio'),
(105731, 'https://ror.org/00w85m497', 'en', 0, 'https://ror.org/00w85m497 Toyota Motor Engineering & Manufacturing North America, Inc. Toyota Motor Engineering & Manufacturing North America, Inc. (United States) ćƒˆćƒØć‚æč‡Ŗå‹•č»ŠåŒ—ē±³'),
(105732, 'https://ror.org/040884w51', 'en', 1, 'https://ror.org/040884w51 Taizhou Central Hospital Taizhou University Hospital å°å·žåø‚äø­åæƒåŒ»é™¢'),
(105733, 'https://ror.org/02gafa949', 'en', 1, 'https://ror.org/02gafa949 Dechinta Bush University Centre for Research and Learning'),
(105734, 'https://ror.org/0418gak31', 'en', 1, 'https://ror.org/0418gak31 Czech Carbon Observation System ČeskÔ infrastruktura sledovÔní uhlíku'),
(105735, 'https://ror.org/04wkkwk59', 'en', 1, 'https://ror.org/04wkkwk59 Institute of Mathematics National Academy of Science of Tajikistan Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ°Ń‚ŠµŠ¼Š°Ń‚ŠøŠŗŠø ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ АкаГемии ŠŠ°ŃƒŠŗ ТаГжикистана');
INSERT INTO `rors` VALUES
(105736, 'https://ror.org/01pf2cj55', 'eu', 1, 'https://ror.org/01pf2cj55 Biophysics Institute Instituto Biofisika'),
(105737, 'https://ror.org/04q8yne12', 'en', 1, 'https://ror.org/04q8yne12 Navoi State University Navoiy davlat universiteti'),
(105738, 'https://ror.org/03zeev498', 'es', 1, 'https://ror.org/03zeev498 Instituto de Ciencias de la Atmósfera y Cambio ClimÔtico'),
(105739, 'https://ror.org/00vj45j81', 'it', 1, 'https://ror.org/00vj45j81 AULSS 2 Marca Trevigiana'),
(105740, 'https://ror.org/046eg6x37', 'fr', 1, 'https://ror.org/046eg6x37 Ecole Nationale SupƩrieure des Sciences de la Mer et de l''AmƩnagement du Littoral'),
(105741, 'https://ror.org/03nvfe914', 'en', 1, 'https://ror.org/03nvfe914 Czech Academy of Sciences, Masaryk Institute and Archives MasarykÅÆv Ćŗstav a Archiv AV ČR MasarykÅÆv Ćŗstav a Archiv AV ČR, v. v. i. MasarykÅÆv Ćŗstav a Archiv AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105742, 'https://ror.org/02vwpg498', 'en', 1, 'https://ror.org/02vwpg498 National Radiation Protection Institute'),
(105743, 'https://ror.org/01rq5e797', 'en', 1, 'https://ror.org/01rq5e797 ERN EURACAN'),
(105744, 'https://ror.org/01fxcka27', 'en', 1, 'https://ror.org/01fxcka27 The No. 2 People''s Hospital of Lanzhou å…°å·žåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(105745, 'https://ror.org/03tybc759', 'en', 1, 'https://ror.org/03tybc759 Czech Academy of Sciences, Institute of History Historický Ćŗstav AV ČR Historický Ćŗstav AV ČR, v. v. i. Historický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105746, 'https://ror.org/02rcrvv70', 'en', 1, 'https://ror.org/02rcrvv70 Government of the United States of America'),
(105747, 'https://ror.org/026ey8z81', 'en', 1, 'https://ror.org/026ey8z81 Centre de Recherche en Environnement Environmental Research Center Ł…Ų±ŁƒŲ² البحث في Ų§Ł„ŲØŁŠŲ¦Ų©'),
(105748, 'https://ror.org/032nzv584', 'de', 1, 'https://ror.org/032nzv584 University Hospital of Giessen and Marburg Universitätsklinikum Gießen und Marburg'),
(105749, 'https://ror.org/02ex6cf31', 'en', 1, 'https://ror.org/02ex6cf31 Brookhaven National Laboratory'),
(105750, 'https://ror.org/05czf9j81', 'es', 1, 'https://ror.org/05czf9j81 Escuela Nacional de Lenguas, Lingüística y Traducción'),
(105751, 'https://ror.org/01c0m1t63', 'en', 1, 'https://ror.org/01c0m1t63 Hochschule Karlsruhe Technik und Wirtschaft Karlsruhe University of Applied Sciences'),
(105752, 'https://ror.org/02rgsr590', 'en', 1, 'https://ror.org/02rgsr590 LEO Fondet LEO Foundation'),
(105753, 'https://ror.org/03s9qe417', 'en', 1, 'https://ror.org/03s9qe417 Advancing Sight Network'),
(105754, 'https://ror.org/042nkmz09', 'en', 1, 'https://ror.org/042nkmz09 Hospital del Mar Research Institute'),
(105755, 'https://ror.org/01crjdg76', 'en', 1, 'https://ror.org/01crjdg76 Shonan Fujisawa Tokusyukai Hospital åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šę¹˜å—č—¤ę²¢å¾³ę“²ä¼šē—…é™¢'),
(105756, 'https://ror.org/04mqemp48', 'en', 1, 'https://ror.org/04mqemp48 Shenyang Maternity and Child Health Hospital ę²ˆé˜³åø‚å¦‡å¹¼äæå„é™¢'),
(105757, 'https://ror.org/0555gjx72', 'en', 1, 'https://ror.org/0555gjx72 Avient Colorants Singapore Pte. Ltd. Avient Colorants Singapore Pte. Ltd. (Singapore)'),
(105758, 'https://ror.org/010t24d82', 'tr', 1, 'https://ror.org/010t24d82 Milli Savunma Üniversitesi National Defense University'),
(105759, 'https://ror.org/0368jtq03', 'en', 1, 'https://ror.org/0368jtq03 Circular Economy Foundation'),
(105760, 'https://ror.org/02fq9b702', 'en', 1, 'https://ror.org/02fq9b702 Western Atlantic University School of Medicine'),
(105761, 'https://ror.org/05qmj7q47', 'pt', 1, 'https://ror.org/05qmj7q47 Centro UniversitƔrio Ateneu'),
(105762, 'https://ror.org/03rcw8h21', 'en', 1, 'https://ror.org/03rcw8h21 National Institute of Oceanography, Pakistan'),
(105763, 'https://ror.org/04nwrc387', 'ca', 1, 'https://ror.org/04nwrc387 Institut CatalƠ d''Arqueologia ClƠssica Instituto CatalƔn de Arqueologƭa ClƔsica'),
(105764, 'https://ror.org/02jpyxx33', 'en', 1, 'https://ror.org/02jpyxx33 MicroMir ŠœŠøŠŗŃ€Š¾Š¼ŠøŃ€'),
(105765, 'https://ror.org/04tje1v24', 'es', 1, 'https://ror.org/04tje1v24 Centro de Estudios e Investigaciones Laborales'),
(105766, 'https://ror.org/04jt1bz85', 'en', 1, 'https://ror.org/04jt1bz85 Advanced Micro Devices (Singapore) Advanced Micro Devices (Singapore) Pte Ltd'),
(105767, 'https://ror.org/049412q44', 'it', 1, 'https://ror.org/049412q44 INGV Sezione di Roma 1'),
(105768, 'https://ror.org/01b62sk68', 'en', 1, 'https://ror.org/01b62sk68 Kharkiv National Automobile and Highway University Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Š°Š²Ń‚Š¾Š¼Š¾Š±Ń–Š»ŃŒŠ½Š¾-Горожній ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105769, 'https://ror.org/020p6zm06', 'it', 1, 'https://ror.org/020p6zm06 Agenzia Regionale per la Protezione dell''Ambiente della Calabria'),
(105770, 'https://ror.org/03q0vrn42', 'en', 1, 'https://ror.org/03q0vrn42 Al-Farabi Kazakh National University ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени аль-Фараби Әл-Фараби атынГағы ŅšŠ°Š·Š°Ņ› ұлттық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(105771, 'https://ror.org/025vngs54', 'de', 1, 'https://ror.org/025vngs54 Greifswald University Hospital Greifswald University Medicine University Medicine of Greifswald UniversitƤtsmedizin Greifswald'),
(105772, 'https://ror.org/003g5mn55', 'en', 1, 'https://ror.org/003g5mn55 Sieć Badawcza Łukasiewicz - Instytut Lotnictwa Łukasiewicz Research Network - Institute of Aviation'),
(105773, 'https://ror.org/024z4gd71', 'en', 1, 'https://ror.org/024z4gd71 Stichting Innovations in Graph Theory'),
(105774, 'https://ror.org/0092mfq48', 'en', 0, 'https://ror.org/0092mfq48 Institut für Textilchemie- und Chemiefasern Institute of Textile Chemistry and Chemical Fibers'),
(105775, 'https://ror.org/02v66pf20', 'no_lang_code', 1, 'https://ror.org/02v66pf20 Novartis (Singapore)'),
(105776, 'https://ror.org/01gnqgn87', 'en', 1, 'https://ror.org/01gnqgn87 d-Matrix Inc. d-Matrix Inc. (United States)'),
(105777, 'https://ror.org/0319mkh28', 'en', 1, 'https://ror.org/0319mkh28 HITEC Institute of Medical Sciences'),
(105778, 'https://ror.org/02qh5wf78', 'en', 1, 'https://ror.org/02qh5wf78 Health and Research Collaborative'),
(105779, 'https://ror.org/04xk08052', 'it', 1, 'https://ror.org/04xk08052 Agenzia Regionale per la Protezione dell''Ambiente della Sardegna'),
(105780, 'https://ror.org/01xf8ec44', 'en', 1, 'https://ror.org/01xf8ec44 NSF National eXtreme Ultrafast Science Facility'),
(105781, 'https://ror.org/00ta7wy41', 'en', 1, 'https://ror.org/00ta7wy41 University of Business Engineering and Management Univerzitet za poslovni inženjering i menadžment Banja Luka Универзитет за пословни ŠøŠ½Š¶ŠµŃšŠµŃ€ŠøŠ½Š³ Šø Š¼ŠµŠ½Š°ŃŸŠ¼ŠµŠ½Ń‚'),
(105782, 'https://ror.org/0279ntc65', 'de', 1, 'https://ror.org/0279ntc65 ERN LUNG'),
(105783, 'https://ror.org/007385880', 'en', 1, 'https://ror.org/007385880 Maharshi Vashishtha Autonomous State Medical College, Basti'),
(105784, 'https://ror.org/036dmex16', 'en', 1, 'https://ror.org/036dmex16 Dr. Dayaram Patel Pharmacy College'),
(105785, 'https://ror.org/006kks873', 'en', 1, 'https://ror.org/006kks873 Hunan Credo Pump Co., Ltd Hunan Credo Pump Co., Ltd (China) ę¹–å—å‡Æåˆ©ē‰¹ę³µäøšęœ‰é™å…¬åø'),
(105786, 'https://ror.org/05v10bv14', 'no_lang_code', 1, 'https://ror.org/05v10bv14 Researcherenye Wappayalawangka - Central Australia Academic Health Science Network'),
(105787, 'https://ror.org/02e9whs18', 'en', 1, 'https://ror.org/02e9whs18 Guangzhou Institute of Science and Technology å¹æå·žē†å·„å­¦é™¢'),
(105788, 'https://ror.org/04swvgk67', 'hu', 1, 'https://ror.org/04swvgk67 Budapest Neutron Centre'),
(105789, 'https://ror.org/04jexp049', 'es', 1, 'https://ror.org/04jexp049 Dirección General de Publicaciones y Fomento Editorial'),
(105790, 'https://ror.org/03vsmv677', 'no_lang_code', 1, 'https://ror.org/03vsmv677 Texas Instruments (United States)'),
(105791, 'https://ror.org/00vhnmh07', 'fr', 1, 'https://ror.org/00vhnmh07 Catalyseur Technologie SantƩ'),
(105792, 'https://ror.org/00e798h81', 'en', 1, 'https://ror.org/00e798h81 Tigray Health Research Institute THRI įŠ¢įŠ’įˆµį‰²į‰µį‹©į‰µ įˆįˆ­įˆįˆ­ įŒ„į‹•įŠ“ į‰µįŒįˆ«į‹­'),
(105793, 'https://ror.org/0446wcg70', 'en', 1, 'https://ror.org/0446wcg70 ERN Skin'),
(105794, 'https://ror.org/03q9f6286', 'en', 1, 'https://ror.org/03q9f6286 KPMG (Singapore) KPMG Services Pte. Ltd.'),
(105795, 'https://ror.org/049bjee35', 'en', 1, 'https://ror.org/049bjee35 St. Anne''s University Hospital Brno'),
(105796, 'https://ror.org/0335t7e62', 'en', 1, 'https://ror.org/0335t7e62 cynkra GmbH (Switzerland)'),
(105797, 'https://ror.org/05nan2a61', 'id', 1, 'https://ror.org/05nan2a61 Sekolah Tinggi Ilmu Pemerintahan Abdi Negara'),
(105798, 'https://ror.org/04hmssf27', 'en', 1, 'https://ror.org/04hmssf27 Advanced Remanufacturing & Technology Centre'),
(105799, 'https://ror.org/00qd5p471', 'en', 1, 'https://ror.org/00qd5p471 National Gallery in Prague'),
(105800, 'https://ror.org/03spk3j53', 'en', 1, 'https://ror.org/03spk3j53 National Centre for Medical Genomics NĆ”rodnĆ­ centrum lĆ©kařskĆ© genomiky'),
(105801, 'https://ror.org/032q61545', 'en', 1, 'https://ror.org/032q61545 Microsoft (Singapore) Microsoft Operations Pte Ltd'),
(105802, 'https://ror.org/020q9r015', 'en', 1, 'https://ror.org/020q9r015 China Building Materials Academy China Building Materials Academy Co., Ltd. äø­å›½å»ŗē­‘ęę–™ē§‘å­¦ē ”ē©¶'),
(105803, 'https://ror.org/05xw0ep96', 'en', 1, 'https://ror.org/05xw0ep96 Czech Academy of Sciences, Institute of Physiology Fyziologický Ćŗstav AV ČR Fyziologický Ćŗstav AV ČR, v. v. i. Fyziologický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(105804, 'https://ror.org/03yk43w67', 'en', 1, 'https://ror.org/03yk43w67 The University Of Agriculture Dera Ismail Khan'),
(105805, 'https://ror.org/01307kj45', 'en', 1, 'https://ror.org/01307kj45 Arkansas Colleges of Health Education'),
(105806, 'https://ror.org/03x28ee27', 'fr', 1, 'https://ror.org/03x28ee27 CollĆØge Communautaire du Nouveau-Brunswick'),
(105807, 'https://ror.org/00xbsaf62', 'en', 1, 'https://ror.org/00xbsaf62 Czech Hydrometeorological Institute'),
(105808, 'https://ror.org/0107c5v14', 'en', 1, 'https://ror.org/0107c5v14 Universitat de Gènova University of Genoa Università degli Studi di Genova Universität Genua Université de gênes'),
(105809, 'https://ror.org/01j84x757', 'en', 1, 'https://ror.org/01j84x757 Nanomaterials and Nanotechnologies for Environment Protection and Sustainable Future NanomateriĆ”ly a nanotechnologie pro ochranu životnĆ­ho prostředĆ­ a udržitelnou budoucnost'),
(105810, 'https://ror.org/05a27za87', 'de', 1, 'https://ror.org/05a27za87 ERN-RND'),
(105811, 'https://ror.org/04d8gk172', 'de', 1, 'https://ror.org/04d8gk172 Duale Hochschule Sachsen'),
(105812, 'https://ror.org/045bktg48', 'en', 1, 'https://ror.org/045bktg48 Yilmaz Bilisim Yılmaz Bilişim Ar-Ge Danışmanlık Yazılım Mühendislik ve Servis Hizmetleri Ticaret Limited Şirketi Yılmaz Bilişim R&D Consulting Software Engineering and Services Trade Limited Company Yılmaz Bilişim R&D Consulting Software Engineering and Services Trade Limited Company (Türkiye)'),
(105813, 'https://ror.org/01z2efh66', 'en', 1, 'https://ror.org/01z2efh66 Airbus Group Singapore Pte Ltd Airbus Group Singapore Pte Ltd (Singapore)'),
(105814, 'https://ror.org/04ze00805', 'en', 1, 'https://ror.org/04ze00805 Konya City Hospital Konya Şehir Hastanesi'),
(105815, 'https://ror.org/00pe60k11', 'en', 1, 'https://ror.org/00pe60k11 Dhanalakshmi Srinivasan University'),
(105816, 'https://ror.org/02jwd3b35', 'en', 1, 'https://ror.org/02jwd3b35 National School of Electronics and Telecommunications of Sfax, Tunisia'),
(105817, 'https://ror.org/0533nhm89', 'en', 1, 'https://ror.org/0533nhm89 Institut für Polymere Institute of Polymers'),
(105818, 'https://ror.org/00msh6959', 'en', 1, 'https://ror.org/00msh6959 Institute of Pharmaceutical Education and Research'),
(105819, 'https://ror.org/003fkdj63', 'de', 1, 'https://ror.org/003fkdj63 Centre for Sustainable Development Zentrum Nachhaltige Entwicklung'),
(105820, 'https://ror.org/02sd7kz27', 'es', 1, 'https://ror.org/02sd7kz27 Escuela Superior de Audio y AcĆŗstica'),
(105821, 'https://ror.org/05t5p8x70', 'no_lang_code', 0, 'https://ror.org/05t5p8x70 AmpliPhi Biosciences (United States)'),
(105822, 'https://ror.org/04pvzxy78', 'en', 1, 'https://ror.org/04pvzxy78 European Association for Higher Education Advancement'),
(105823, 'https://ror.org/05fhwqj89', 'en', 1, 'https://ror.org/05fhwqj89 Institut für Chemie- und Bioingenieurwissenschaften Institute for Chemical and Bioengineering'),
(105824, 'https://ror.org/018pg7a85', 'no_lang_code', 1, 'https://ror.org/018pg7a85 E4SMA E4SMA (Italy) E4SMA S.r.l.'),
(105825, 'https://ror.org/02y2f8v85', 'en', 1, 'https://ror.org/02y2f8v85 K.M.G. College of Arts and Science (Autonomous)'),
(105826, 'https://ror.org/02ceze395', 'en', 1, 'https://ror.org/02ceze395 SEEK Education SEEK Education, Inc. (United States)'),
(105827, 'https://ror.org/03s0ryk19', 'en', 1, 'https://ror.org/03s0ryk19 The Klamath Tribes'),
(105828, 'https://ror.org/04bn5x956', 'en', 1, 'https://ror.org/04bn5x956 Institut für Operations Research Institute for Operations Research'),
(105829, 'https://ror.org/032d3h410', 'de', 1, 'https://ror.org/032d3h410 Centre of Professional Studies Zentrum Berufspraktische Studien'),
(105830, 'https://ror.org/015f9wa43', 'en', 1, 'https://ror.org/015f9wa43 Institut für Integrierte Systeme Integrated Systems Laboratory'),
(105831, 'https://ror.org/01wgq9h91', 'en', 1, 'https://ror.org/01wgq9h91 Scientific Academy for Service Technology (ServTech)'),
(105832, 'https://ror.org/04pk7zz41', 'en', 1, 'https://ror.org/04pk7zz41 Arctic Long Term Ecological Research'),
(105833, 'https://ror.org/0119pw819', 'en', 1, 'https://ror.org/0119pw819 InnoTech Alberta'),
(105834, 'https://ror.org/02731xq41', 'sq', 1, 'https://ror.org/02731xq41 Tirana Business University'),
(105835, 'https://ror.org/02tm87597', 'en', 1, 'https://ror.org/02tm87597 Swiss SkyLab'),
(105836, 'https://ror.org/02hqkr514', 'en', 1, 'https://ror.org/02hqkr514 Unibersidad ng Pilipinas University of the Philippines System'),
(105837, 'https://ror.org/03dfqms15', 'en', 1, 'https://ror.org/03dfqms15 Institut für Informationssicherheit Institute of Information Security'),
(105838, 'https://ror.org/01jdwf714', 'en', 1, 'https://ror.org/01jdwf714 University of Home Economics'),
(105839, 'https://ror.org/03hfk3t86', 'no_lang_code', 1, 'https://ror.org/03hfk3t86 Marzano Research (United States)'),
(105840, 'https://ror.org/00jj11r28', 'en', 1, 'https://ror.org/00jj11r28 Infectious Diseases Labs'),
(105841, 'https://ror.org/04dfk4c13', 'en', 1, 'https://ror.org/04dfk4c13 Neotropical Primates Research Group'),
(105842, 'https://ror.org/05t6xmn93', 'en', 1, 'https://ror.org/05t6xmn93 LINQ management LINQ management (Germany)'),
(105843, 'https://ror.org/0007wfz33', 'en', 1, 'https://ror.org/0007wfz33 Scientific Center for Optical and Electron Microscopy'),
(105844, 'https://ror.org/037w8vx49', 'de', 1, 'https://ror.org/037w8vx49 Labor für Immunologische und Molekulare Krebsforschung SCRI-LIMCR GmbH'),
(105845, 'https://ror.org/05433te07', 'en', 1, 'https://ror.org/05433te07 Coalition for Advancing Research Assessment'),
(105846, 'https://ror.org/045k2fq98', 'en', 1, 'https://ror.org/045k2fq98 Institut für Metallforschung Institute of Metals Research'),
(105847, 'https://ror.org/05w2bye72', 'es', 1, 'https://ror.org/05w2bye72 Grupo de Ecología y Conservación de Islas, A.C.'),
(105848, 'https://ror.org/02nwrwa70', 'fr', 1, 'https://ror.org/02nwrwa70 Institut national du service public (INSP)'),
(105849, 'https://ror.org/01x6n3581', 'en', 1, 'https://ror.org/01x6n3581 Singapore-ETH Centre'),
(105850, 'https://ror.org/03tcbg664', 'id', 1, 'https://ror.org/03tcbg664 Poltekkes Kemenkes Gorontalo'),
(105851, 'https://ror.org/01fv25t22', 'fr', 1, 'https://ror.org/01fv25t22 CEA Paris-Saclay - Etablissement de Saclay Saclay Nuclear Research Centre'),
(105852, 'https://ror.org/05dafkr85', 'en', 1, 'https://ror.org/05dafkr85 Ethiopian Roads Administration'),
(105853, 'https://ror.org/051d04622', 'en', 1, 'https://ror.org/051d04622 ETH Institut für Theoretische Studien ETH Institute for Theoretical Studies'),
(105854, 'https://ror.org/02c6k8737', 'en', 1, 'https://ror.org/02c6k8737 A*STAR Research Entities'),
(105855, 'https://ror.org/03kxq0d97', 'it', 1, 'https://ror.org/03kxq0d97 Associazione Internazionale di Archeologia Classica'),
(105856, 'https://ror.org/03zgn2611', 'tr', 1, 'https://ror.org/03zgn2611 Akademik Bilişim Araştırmaları Derneği'),
(105857, 'https://ror.org/046b54093', 'ms', 1, 'https://ror.org/046b54093 Universiti Tunku Abdul Rahman Sungai Long Campus'),
(105858, 'https://ror.org/007e33924', 'fr', 1, 'https://ror.org/007e33924 Laboratoire de l''Ɖducation'),
(105859, 'https://ror.org/00m0tfg52', 'en', 1, 'https://ror.org/00m0tfg52 Geological Institute Geologisches Institut'),
(105860, 'https://ror.org/05ke6rn16', 'en', 1, 'https://ror.org/05ke6rn16 Eduvos'),
(105861, 'https://ror.org/05xw14184', 'en', 1, 'https://ror.org/05xw14184 Institut für Geschichte und Theorie der Architektur GTA Institute for the History and Theory of Architecture'),
(105862, 'https://ror.org/05e93vc61', 'en', 1, 'https://ror.org/05e93vc61 Institut für Fluiddynamik Institute of Fluid Dynamics'),
(105863, 'https://ror.org/01w1erp60', 'fr', 1, 'https://ror.org/01w1erp60 Couplage Multi-physiques et Multi-Ʃchelles en mƩcanique gƩo-environnemental Multi-Physics and Multi-scale Couplings in Geo-environmental Mechanics'),
(105864, 'https://ror.org/02gk0fv06', 'en', 1, 'https://ror.org/02gk0fv06 Al Zaytona University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†Ł„ŁˆŲ¬ŁŠŲ§'),
(105865, 'https://ror.org/05wjjh025', 'en', 1, 'https://ror.org/05wjjh025 American Society for Inclusion, Diversity, and Equity in Healthcare (ASIDE)'),
(105866, 'https://ror.org/037xmw090', 'es', 1, 'https://ror.org/037xmw090 Red Gobernanza Metropolitana'),
(105867, 'https://ror.org/02qtnz251', 'de', 1, 'https://ror.org/02qtnz251 Gesellschaft für Biologische Daten e.V.'),
(105868, 'https://ror.org/01mef8r43', 'en', 1, 'https://ror.org/01mef8r43 JAM MUSIC LAB Private University for Jazz and Popular Music Vienna'),
(105869, 'https://ror.org/028ew7558', 'en', 1, 'https://ror.org/028ew7558 Computer Engineering and Networks Laboratory Institut für Technische Informatik und Kommunikationsnetze'),
(105870, 'https://ror.org/013q9v540', 'en', 1, 'https://ror.org/013q9v540 Institut für Theoretische Informatik Institute of Theoretical Computer Science'),
(105871, 'https://ror.org/00hwfrn96', 'en', 1, 'https://ror.org/00hwfrn96 Laboratorium für Festkörperphysik Laboratory for Solid State Physics'),
(105872, 'https://ror.org/02yk4hg14', 'de', 1, 'https://ror.org/02yk4hg14 Centre of Internationalisation, Mobility and External Relations Zentrum Internationalisierung, MobilitƤt und Aussenbeziehungen'),
(105873, 'https://ror.org/030hywx92', 'en', 1, 'https://ror.org/030hywx92 The Reward Foundation'),
(105874, 'https://ror.org/05y762451', 'en', 1, 'https://ror.org/05y762451 Institut für Quantenelektronik Institute for Quantum Electronics'),
(105875, 'https://ror.org/01m6e3f86', 'en', 1, 'https://ror.org/01m6e3f86 Ecosmic Ecosmic (Italy)'),
(105876, 'https://ror.org/0079fsj36', 'de', 1, 'https://ror.org/0079fsj36 Institut Bewegung, Sport und Gesundheit Institute of Physical Education, Sports, and Health'),
(105877, 'https://ror.org/04xnb3798', 'es', 1, 'https://ror.org/04xnb3798 Sinergias Alianzas EstratƩgicas para la Salud y el Desarrollo Social'),
(105878, 'https://ror.org/021m9jg72', 'en', 1, 'https://ror.org/021m9jg72 University of the Philippines Tacloban College'),
(105879, 'https://ror.org/04azajg63', 'en', 1, 'https://ror.org/04azajg63 PT Indonesia Comnets Plus PT Indonesia Comnets Plus (Indonesia)'),
(105880, 'https://ror.org/03ba7k022', 'de', 1, 'https://ror.org/03ba7k022 Anstalt für Verbrennungskraftmaschinen List (Germany)'),
(105881, 'https://ror.org/037jqrk16', 'es', 1, 'https://ror.org/037jqrk16 Grupo Docente 2.0 C.A.'),
(105882, 'https://ror.org/024stfn38', 'pt', 1, 'https://ror.org/024stfn38 Centro de ReferĆŖncia da SaĆŗde da Mulher - Hospital da Mulher SĆ£o Paulo'),
(105883, 'https://ror.org/01029k907', 'en', 1, 'https://ror.org/01029k907 University of Telafer Ų¬Ų§Ł…Ų¹Ų© تلعفر'),
(105884, 'https://ror.org/0022v1p96', 'en', 1, 'https://ror.org/0022v1p96 Institut für Verhaltenswissenschaften Institute of Behavioral Sciences'),
(105885, 'https://ror.org/039cf4q47', 'en', 1, 'https://ror.org/039cf4q47 University of Mosul Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŁˆŲµŁ„'),
(105886, 'https://ror.org/00rt03g55', 'de', 1, 'https://ror.org/00rt03g55 Wiener Psychoanalytische Vereinigung'),
(105887, 'https://ror.org/014vhw898', 'en', 1, 'https://ror.org/014vhw898 Institut für Umweltingenieurwissenschaften Institute of Environmental Engineering'),
(105888, 'https://ror.org/05ttb7q93', 'en', 1, 'https://ror.org/05ttb7q93 Manitoba Geological Survey'),
(105889, 'https://ror.org/00dgdnb65', 'en', 1, 'https://ror.org/00dgdnb65 AITHYRA GmbH AITHYRA GmbH- Research Institute for Biomedical Artificial Intelligence (Austria)'),
(105890, 'https://ror.org/02hh2kw42', 'en', 1, 'https://ror.org/02hh2kw42 Institut für Agrarwissenschaften Institute of Agricultural Sciences'),
(105891, 'https://ror.org/00vzpka39', 'id', 1, 'https://ror.org/00vzpka39 Universitas Islam Negeri Sultan Maulana Hasanuddin Banten'),
(105892, 'https://ror.org/03zfv2g22', 'es', 1, 'https://ror.org/03zfv2g22 Hospital AlcĆ­var'),
(105893, 'https://ror.org/03q3pjc65', 'en', 1, 'https://ror.org/03q3pjc65 College of Engineering and Management, Kolaghat'),
(105894, 'https://ror.org/02dha3k90', 'en', 1, 'https://ror.org/02dha3k90 Punjab Institute of Neurosciences'),
(105895, 'https://ror.org/05rmjys46', 'de', 1, 'https://ror.org/05rmjys46 Salzburg Research Forschungsgesellschaft mbH Salzburg Research Forschungsgesellschaft mbH (Austria)'),
(105896, 'https://ror.org/01bydex26', 'de', 1, 'https://ror.org/01bydex26 Anstalt für Verbrennungskraftmaschinen List (Austria)'),
(105897, 'https://ror.org/03bzbcg65', 'en', 1, 'https://ror.org/03bzbcg65 Nigerian Army College of Education'),
(105898, 'https://ror.org/02speyz69', 'de', 1, 'https://ror.org/02speyz69 Schƶnbrunner Tiergarten-GmbH'),
(105899, 'https://ror.org/03rx5xe39', 'es', 1, 'https://ror.org/03rx5xe39 Servicios Especiales de Salud Hospital Universitario de Caldas'),
(105900, 'https://ror.org/03zmy5w64', 'en', 1, 'https://ror.org/03zmy5w64 Tigray Agricultural Research Institute (TARI) įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ įˆįˆ­įˆįˆ­ įˆ•įˆ­įˆ» į‰µįŒįˆ«'),
(105901, 'https://ror.org/04793bt26', 'de', 1, 'https://ror.org/04793bt26 Institut Sprachliche und Literarische Bildung Institute for Language and Literary Education'),
(105902, 'https://ror.org/024ejyz46', 'en', 1, 'https://ror.org/024ejyz46 Sylhet MAG Osmani Medical College Hospital'),
(105903, 'https://ror.org/05rq5rv71', 'de', 1, 'https://ror.org/05rq5rv71 CHASE center Competence Center CHASE GmbH Competence Center CHASE GmbH (Austria)'),
(105904, 'https://ror.org/05jewg405', 'en', 1, 'https://ror.org/05jewg405 Kaminari Medical Kaminari Medical (Netherlands)'),
(105905, 'https://ror.org/054by0y65', 'en', 1, 'https://ror.org/054by0y65 Bayelsa Medical University'),
(105906, 'https://ror.org/0431s8639', 'en', 1, 'https://ror.org/0431s8639 AgroVet-Strickhof'),
(105907, 'https://ror.org/053fs4039', 'en', 1, 'https://ror.org/053fs4039 Bệnh Viện Ung Bướu HĆ  Nį»™i Hanoi Oncology Hospital'),
(105908, 'https://ror.org/043gh2t42', 'en', 1, 'https://ror.org/043gh2t42 Medical Center of the Americas Foundation'),
(105909, 'https://ror.org/05nrn5x84', 'en', 1, 'https://ror.org/05nrn5x84 Institut für Intelligente interaktive Systeme Institute for Intelligent Interactive Systems'),
(105910, 'https://ror.org/03wtkyy12', 'de', 1, 'https://ror.org/03wtkyy12 Gustav Mahler PrivatuniversitƤt'),
(105911, 'https://ror.org/010kh0a92', 'en', 1, 'https://ror.org/010kh0a92 Institut für Baustatik und Konstruktion Institute of Structural Engineering'),
(105912, 'https://ror.org/01m8r1j18', 'de', 1, 'https://ror.org/01m8r1j18 Institut Gesellschaftswissenschaftliche Bildung Institute of Social Studies Education'),
(105913, 'https://ror.org/04jxcqr50', 'en', 1, 'https://ror.org/04jxcqr50 International Glaciological Society'),
(105914, 'https://ror.org/02cxf3w16', 'en', 1, 'https://ror.org/02cxf3w16 Edna Adan University'),
(105915, 'https://ror.org/01pnt7129', 'en', 1, 'https://ror.org/01pnt7129 Nano Center Indonesia'),
(105916, 'https://ror.org/03hgb4x70', 'de', 1, 'https://ror.org/03hgb4x70 Regional Didactic Centres Regionale Didaktische Zentren PHSG'),
(105917, 'https://ror.org/0542j0w74', 'en', 1, 'https://ror.org/0542j0w74 Ministry of Municipality وزارة Ų§Ł„ŲØŁ„ŲÆŁŠŲ©'),
(105918, 'https://ror.org/027qvdx76', 'en', 1, 'https://ror.org/027qvdx76 Emmanuel Alayande University of Education, Oyo'),
(105919, 'https://ror.org/036sm5f18', 'en', 1, 'https://ror.org/036sm5f18 American Shark Conservancy'),
(105920, 'https://ror.org/00xj0bd35', 'fr', 1, 'https://ror.org/00xj0bd35 Laboratoire de sociologie et d''anthropologie'),
(105921, 'https://ror.org/01zcpa714', 'en', 1, 'https://ror.org/01zcpa714 Michigan Medicine Système de santé de l''université du michigan'),
(105922, 'https://ror.org/03vyy8a54', 'en', 1, 'https://ror.org/03vyy8a54 Swedish College of Engineering & Technology Rahim Yar Khan'),
(105923, 'https://ror.org/00dw75k93', 'en', 1, 'https://ror.org/00dw75k93 Leifur EirĆ­ksson Foundation'),
(105924, 'https://ror.org/053ts2049', 'en', 1, 'https://ror.org/053ts2049 Institut für Bewegungswissenschaften und Sport Institute of Human Movement Sciences and Sport'),
(105925, 'https://ror.org/002gnht82', 'en', 1, 'https://ror.org/002gnht82 Sanaka Educational Trust’s Group of Institutions'),
(105926, 'https://ror.org/01c3xc117', 'en', 1, 'https://ror.org/01c3xc117 University of Michigan–Flint'),
(105927, 'https://ror.org/050et2s91', 'en', 1, 'https://ror.org/050et2s91 Statistics Poland'),
(105928, 'https://ror.org/04xfxym47', 'en', 1, 'https://ror.org/04xfxym47 Finlands LƤkarfƶrbund Finnish Medical Association Suomen LƤƤkƤriliitto'),
(105929, 'https://ror.org/023sfvt89', 'ca', 1, 'https://ror.org/023sfvt89 Institut de Recerca i Innovació Educativa'),
(105930, 'https://ror.org/00ppz8629', 'en', 1, 'https://ror.org/00ppz8629 Institut für Computing Platforms Institute for Computing Platforms'),
(105931, 'https://ror.org/04neydj61', 'en', 1, 'https://ror.org/04neydj61 Institut für Robotik und Intelligente Systeme Institute of Robotics and Intelligent Systems'),
(105932, 'https://ror.org/03pzc2n68', 'en', 1, 'https://ror.org/03pzc2n68 Institut für Dynamische Systeme und Regelungstechnik Institute for Dynamic Systems and Control'),
(105933, 'https://ror.org/01mqnkc89', 'en', 1, 'https://ror.org/01mqnkc89 Institut für Umweltentscheidungen Institute for Environmental Decisions'),
(105934, 'https://ror.org/049784n50', 'es', 1, 'https://ror.org/049784n50 Universidad de Magallanes University of Magallanes'),
(105935, 'https://ror.org/03me2s213', 'en', 1, 'https://ror.org/03me2s213 Azenta Azenta (United States)'),
(105936, 'https://ror.org/057rvn534', 'en', 1, 'https://ror.org/057rvn534 Institut für Geochemie und Petrologie Institute of Geochemistry and Petrology'),
(105937, 'https://ror.org/02bxfy242', 'de', 1, 'https://ror.org/02bxfy242 Centre for Academic Consulting Zentrum Wissenschaftsberatung'),
(105938, 'https://ror.org/05rkrf147', 'en', 1, 'https://ror.org/05rkrf147 Seminar for Statistics Seminar für Statistik'),
(105939, 'https://ror.org/05sx2xv92', 'en', 1, 'https://ror.org/05sx2xv92 Institut für Programmiersprachen und -systeme Institute for Programming Languages and Systems'),
(105940, 'https://ror.org/057mgcy61', 'en', 1, 'https://ror.org/057mgcy61 Michigan Space Grant Consortium'),
(105941, 'https://ror.org/0423jsj19', 'fr', 1, 'https://ror.org/0423jsj19 HEC Paris'),
(105942, 'https://ror.org/010408w50', 'en', 1, 'https://ror.org/010408w50 Language Center of UZH and ETH Zürich Sprachenzentrum der Universität und der ETH Zürich'),
(105943, 'https://ror.org/00bbkr059', 'en', 1, 'https://ror.org/00bbkr059 Institut für Signal- und Informationsverarbeitung Signal and Information Processing Laboratory'),
(105944, 'https://ror.org/009m79n22', 'no_lang_code', 1, 'https://ror.org/009m79n22 Schlumberger (United States)'),
(105945, 'https://ror.org/00be75x22', 'en', 1, 'https://ror.org/00be75x22 Good Manufacturing Practice Facility'),
(105946, 'https://ror.org/00m0fmt63', 'en', 1, 'https://ror.org/00m0fmt63 ETH Phenomics Center'),
(105947, 'https://ror.org/03r592s72', 'pt', 1, 'https://ror.org/03r592s72 Faculdade de MĆŗsica do EspĆ­rito Santo "MaurĆ­cio de Oliveira" - FAMES'),
(105948, 'https://ror.org/02xcy2g83', 'en', 1, 'https://ror.org/02xcy2g83 Institut für Geophysik Institute of Geophysics'),
(105949, 'https://ror.org/03jnpet14', 'de', 1, 'https://ror.org/03jnpet14 Institut Berufsbildung Institut of Vocational Education and Training'),
(105950, 'https://ror.org/04rkbtw40', 'en', 1, 'https://ror.org/04rkbtw40 Institute of Health Management Research Bangalore'),
(105951, 'https://ror.org/04yrth272', 'pl', 1, 'https://ror.org/04yrth272 ANS w Wałczu Akademia Nauk Stosowanych w Wałcz University of Applied Sciences in Wałcz'),
(105952, 'https://ror.org/00eztte08', 'en', 1, 'https://ror.org/00eztte08 Institut für Geotechnik Institute for Geotechnical Engineering'),
(105953, 'https://ror.org/02xhcf905', 'en', 1, 'https://ror.org/02xhcf905 Institut für Molekulare Pflanzenbiologie Institute of Molecular Plant Biology'),
(105954, 'https://ror.org/04xgzv028', 'en', 1, 'https://ror.org/04xgzv028 Cooperative Institute for Great Lakes Research'),
(105955, 'https://ror.org/035wtm547', 'en', 1, 'https://ror.org/035wtm547 University of Michigan–Dearborn'),
(105956, 'https://ror.org/026ghpf29', 'de', 1, 'https://ror.org/026ghpf29 Institut Mathematische, Naturwissenschaftliche und Technische Bildung Institute of Mathematical, Scientific and Technological Education'),
(105957, 'https://ror.org/04mn32j67', 'de', 1, 'https://ror.org/04mn32j67 alchemia-nova research and innovation gemeinnützige GmbH'),
(105958, 'https://ror.org/03mkrhh61', 'en', 1, 'https://ror.org/03mkrhh61 Institut für Baustoffe Institute for Building Materials'),
(105959, 'https://ror.org/03qtkxb61', 'de', 1, 'https://ror.org/03qtkxb61 Collegium Helveticum'),
(105960, 'https://ror.org/00fwm2t61', 'de', 1, 'https://ror.org/00fwm2t61 Kompetenznetzwerk Informationstechnologie zur Fƶrderung der Integration von Menschen mit Behinderungen (KI-I)'),
(105961, 'https://ror.org/02zz7h206', 'en', 1, 'https://ror.org/02zz7h206 MMGH Consulting MMGH Consulting (Switzerland)'),
(105962, 'https://ror.org/047axtc96', 'en', 1, 'https://ror.org/047axtc96 Center for Climate Systems Modeling'),
(105963, 'https://ror.org/03ek6xh90', 'tr', 1, 'https://ror.org/03ek6xh90 Maliye ve Finans Yazıları Yayıncılık Ltd. Şti. Maliye ve Finans Yazıları Yayıncılık Ltd. Şti. (Türkiye)'),
(105964, 'https://ror.org/04vmkfw91', 'en', 1, 'https://ror.org/04vmkfw91 The Fluoromatics Lab'),
(105965, 'https://ror.org/05g8xwk07', 'en', 1, 'https://ror.org/05g8xwk07 Sultan Qaboos Comprehensive Cancer Care & Research Center'),
(105966, 'https://ror.org/02rkgge26', 'en', 1, 'https://ror.org/02rkgge26 Lawson Research Institute'),
(105967, 'https://ror.org/021rtdj45', 'en', 1, 'https://ror.org/021rtdj45 Lakes Country Service Cooperative'),
(105968, 'https://ror.org/043xj7k26', 'es', 1, 'https://ror.org/043xj7k26 Universidad de Guadalajara University of Guadalajara'),
(105969, 'https://ror.org/01nm77r92', 'de', 1, 'https://ror.org/01nm77r92 Institut PƤdagogische Psychologie Institute of Educational Psychology'),
(105970, 'https://ror.org/03vk15693', 'fr', 1, 'https://ror.org/03vk15693 mƩdialab Sciences Po'),
(105971, 'https://ror.org/003bsdh42', 'en', 1, 'https://ror.org/003bsdh42 Binnig and Rohrer Nanotechnology Center'),
(105972, 'https://ror.org/025mf1j72', 'fr', 1, 'https://ror.org/025mf1j72 Le Centre International de Recherches et Ɖtudes Transdisciplinaires'),
(105973, 'https://ror.org/04wdpa646', 'en', 1, 'https://ror.org/04wdpa646 Forschungsinstitut für Mathematik Institute for Mathematical Research'),
(105974, 'https://ror.org/023b7n604', 'en', 1, 'https://ror.org/023b7n604 Institut für Terrestrische Oekosysteme Institute of Terrestrial Ecosystems'),
(105975, 'https://ror.org/00drw4m60', 'de', 1, 'https://ror.org/00drw4m60 Institut Kulturelle und Ƅsthetische Bildung Institute of Cultural and Aesthetic Education'),
(105976, 'https://ror.org/00sth2g95', 'en', 1, 'https://ror.org/00sth2g95 General Hospital of Larisa, Greece'),
(105977, 'https://ror.org/04p2fa809', 'en', 1, 'https://ror.org/04p2fa809 Institut für Maschinelles Lernen Institute for Machine Learning'),
(105978, 'https://ror.org/03zqk4w67', 'en', 1, 'https://ror.org/03zqk4w67 Institut für Design, Materialien und Fabrikation Institute of Design, Materials and Fabrication'),
(105979, 'https://ror.org/01cgmpb23', 'en', 1, 'https://ror.org/01cgmpb23 Institut für Teilchen- und Astrophysik Institute for Particle Physics and Astrophysics'),
(105980, 'https://ror.org/04k21pf91', 'es', 1, 'https://ror.org/04k21pf91 Universidad Naval'),
(105981, 'https://ror.org/04qghrn10', 'en', 1, 'https://ror.org/04qghrn10 Institut für Kartografie und Geoinformation Institute of Cartography and Geoinformation'),
(105982, 'https://ror.org/05nfch282', 'en', 1, 'https://ror.org/05nfch282 BillionToOne BillionToOne (United States)'),
(105983, 'https://ror.org/007t8rt26', 'en', 1, 'https://ror.org/007t8rt26 Gout Support Group of America'),
(105984, 'https://ror.org/005d2xw40', 'id', 1, 'https://ror.org/005d2xw40 Universitas Islam Negeri Fatmawati Sukarno Bengkulu'),
(105985, 'https://ror.org/02j3zj861', 'en', 1, 'https://ror.org/02j3zj861 Institut für Geodäsie und Photogrammetrie Institute of Geodesy and Photogrammetry'),
(105986, 'https://ror.org/027m4m339', 'en', 1, 'https://ror.org/027m4m339 Federal College of Education (Technical) Asaba'),
(105987, 'https://ror.org/03f0zj759', 'it', 1, 'https://ror.org/03f0zj759 Congressi Stefano Franscini'),
(105988, 'https://ror.org/05scxf493', 'en', 1, 'https://ror.org/05scxf493 University of Al Maarif ŁƒŁ„ŁŠŲ© المعارف الجامعة'),
(105989, 'https://ror.org/0148jn964', 'en', 1, 'https://ror.org/0148jn964 Atiba University'),
(105990, 'https://ror.org/01yfrpn34', 'en', 1, 'https://ror.org/01yfrpn34 Institut für Denkmalpflege und historische Bauforschung IDB Institute for Preservation and Construction History'),
(105991, 'https://ror.org/046egda04', 'en', 1, 'https://ror.org/046egda04 ETH Zürich Campus Heilbronn gGmbH'),
(105992, 'https://ror.org/0565zqf96', 'en', 1, 'https://ror.org/0565zqf96 Institut für Technologie in der Architektur ITA Institute for Technology in Architecture'),
(105993, 'https://ror.org/0040ykz39', 'no_lang_code', 0, 'https://ror.org/0040ykz39 C3J Therapeutics (United States)'),
(105994, 'https://ror.org/053vrqh41', 'en', 1, 'https://ror.org/053vrqh41 Wigwe University'),
(105995, 'https://ror.org/00hca4f40', 'en', 1, 'https://ror.org/00hca4f40 Shivharsh Kisan Post Graduate College, Basti'),
(105996, 'https://ror.org/01a83vw07', 'en', 1, 'https://ror.org/01a83vw07 NEXUS Personalized Health Technologies'),
(105997, 'https://ror.org/03ctfnk02', 'tr', 1, 'https://ror.org/03ctfnk02 Ağri İl Sağlik Müdürlüğü Dr. Yaşar Eryilmaz Doğubeyazit Devlet Hastanesi̇ Dr. Yaşar Eryilmaz Doğubeyazit Devlet Hastanesi̇'),
(105998, 'https://ror.org/028wqwc72', 'en', 1, 'https://ror.org/028wqwc72 Communication Technology Laboratory Institut für Kommunikationstechnik'),
(105999, 'https://ror.org/02zv2se87', 'de', 1, 'https://ror.org/02zv2se87 SWISDATA gGmbH'),
(106000, 'https://ror.org/02q2nz798', 'en', 1, 'https://ror.org/02q2nz798 Institut für Neurowissenschaften Institute for Neuroscience'),
(106001, 'https://ror.org/02p702482', 'en', 1, 'https://ror.org/02p702482 Institut für Molekularbiologie und Biophysik Institute of Molecular Biology and Biophysics'),
(106002, 'https://ror.org/01k089j70', 'de', 1, 'https://ror.org/01k089j70 Topas GmbH Topas GmbH (Germany)'),
(106003, 'https://ror.org/02bkkgm47', 'en', 1, 'https://ror.org/02bkkgm47 Center for Complex Particle Systems'),
(106004, 'https://ror.org/01nt5j435', 'en', 1, 'https://ror.org/01nt5j435 Institut für Raum- und Landschaftsentwicklung Institute for Spatial and Landscape Development'),
(106005, 'https://ror.org/033h3cg70', 'en', 1, 'https://ror.org/033h3cg70 Institut für Bau- und Infrastrukturmanagement Institute of Construction and Infrastructure Management'),
(106006, 'https://ror.org/015txh811', 'en', 1, 'https://ror.org/015txh811 Institut für Entwurf und Architektur IEA Institute of Design and Architecture'),
(106007, 'https://ror.org/04mthze50', 'en', 1, 'https://ror.org/04mthze50 Millennium Institute for Care Research'),
(106008, 'https://ror.org/00z49z463', 'es', 1, 'https://ror.org/00z49z463 Instituto Superior Universitario RumiƱahui'),
(106009, 'https://ror.org/01m8gvd94', 'es', 1, 'https://ror.org/01m8gvd94 Universidad Laica Eloy Alfaro de ManabĆ­'),
(106010, 'https://ror.org/01k0e0792', 'en', 1, 'https://ror.org/01k0e0792 Institut für Hochleistungsrechnersysteme Institute for High Performance Computing Systems'),
(106011, 'https://ror.org/01jca1n07', 'en', 1, 'https://ror.org/01jca1n07 Turkish Chemical Society'),
(106012, 'https://ror.org/03383rg81', 'pt', 1, 'https://ror.org/03383rg81 Escola Superior Pedagógica do Cuanza Norte'),
(106013, 'https://ror.org/01jt0e422', 'en', 1, 'https://ror.org/01jt0e422 Ethiopian Policy Studies Institute'),
(106014, 'https://ror.org/01kwjhv40', 'en', 1, 'https://ror.org/01kwjhv40 Institut für Integrative Biologie Institute of Integrative Biology'),
(106015, 'https://ror.org/01gqd2r46', 'en', 1, 'https://ror.org/01gqd2r46 Institute of Science, Technology and Policy'),
(106016, 'https://ror.org/01tfw4958', 'de', 1, 'https://ror.org/01tfw4958 Centre for Digitalisation and Education Zentrum Digitalisierung und Bildung'),
(106017, 'https://ror.org/04n35qp23', 'en', 1, 'https://ror.org/04n35qp23 Institut für Pharmazeutische Wissenschaften Institute of Pharmaceutical Sciences'),
(106018, 'https://ror.org/01e0c1w56', 'en', 1, 'https://ror.org/01e0c1w56 Eco Astronomy Inc'),
(106019, 'https://ror.org/01td8v330', 'en', 1, 'https://ror.org/01td8v330 Oxford BioDynamics Oxford BioDynamics (United Kingdom) Oxford BioDynamics Plc'),
(106020, 'https://ror.org/0285j9m82', 'en', 1, 'https://ror.org/0285j9m82 Centre for Origin and Prevalence of Life'),
(106021, 'https://ror.org/025en1p25', 'en', 1, 'https://ror.org/025en1p25 Institut für Theoretische Physik Institute for Theoretical Physics'),
(106022, 'https://ror.org/05p1dq710', 'de', 1, 'https://ror.org/05p1dq710 Institut Frühe Bildung 0 bis 8 Institute of Early Childhood Education 0 to 8 years'),
(106023, 'https://ror.org/05cj0mj74', 'en', 1, 'https://ror.org/05cj0mj74 Institute for Protein Physics'),
(106024, 'https://ror.org/025t7k891', 'de', 1, 'https://ror.org/025t7k891 OƖ Landes-Kultur GmbH OƖ Landes-Kultur GmbH (Austria)'),
(106025, 'https://ror.org/05ht7qn52', 'en', 1, 'https://ror.org/05ht7qn52 Xinghua People''s Hospital Affiliated to Yangzhou University å…“åŒ–åø‚äŗŗę°‘åŒ»é™¢'),
(106026, 'https://ror.org/034npj057', 'en', 1, 'https://ror.org/034npj057 Hurley Medical Center'),
(106027, 'https://ror.org/04tgr1802', 'en', 1, 'https://ror.org/04tgr1802 Functional Genomics Center Zurich'),
(106028, 'https://ror.org/024bje446', 'en', 1, 'https://ror.org/024bje446 Institut für Lebensmittelwissenschaften, Ernährung und Gesundheit Institute of Food, Nutrition, and Health'),
(106029, 'https://ror.org/04f7jrb21', 'en', 1, 'https://ror.org/04f7jrb21 Institut für Translationale Medizin Institute of Translational Medicine'),
(106030, 'https://ror.org/040vtrd69', 'es', 1, 'https://ror.org/040vtrd69 Instituto del Patrimonio Cultural de EspaƱa'),
(106031, 'https://ror.org/01rd8n845', 'en', 1, 'https://ror.org/01rd8n845 Institut für Biochemie Institute of Biochemistry'),
(106032, 'https://ror.org/05y121968', 'en', 1, 'https://ror.org/05y121968 Afro-American University of Central Africa'),
(106033, 'https://ror.org/048r0ec88', 'en', 1, 'https://ror.org/048r0ec88 Armata Pharmaceuticals Armata Pharmaceuticals (United States) Armata Pharmaceuticals, Inc.'),
(106034, 'https://ror.org/00gcgw028', 'en', 1, 'https://ror.org/00gcgw028 Government College of Engineering, Nagpur'),
(106035, 'https://ror.org/054kzvr89', 'de', 1, 'https://ror.org/054kzvr89 Centre of Further Education Zentrum Weiterbildung'),
(106036, 'https://ror.org/00w0t0m75', 'en', 0, 'https://ror.org/00w0t0m75 Anderson Orthopaedic Clinic'),
(106037, 'https://ror.org/04sm24z48', 'en', 1, 'https://ror.org/04sm24z48 Institut für Biogeochemie und Schadstoffdynamik Institute of Biogeochemistry and Pollutant Dynamics'),
(106038, 'https://ror.org/02c770x21', 'en', 1, 'https://ror.org/02c770x21 EnGreen EnGreen (Italy)'),
(106039, 'https://ror.org/0274ppf08', 'en', 1, 'https://ror.org/0274ppf08 Alliance to Feed the Earth in Disasters'),
(106040, 'https://ror.org/05d1kkh39', 'en', 1, 'https://ror.org/05d1kkh39 International Business University'),
(106041, 'https://ror.org/04fev5t41', 'en', 1, 'https://ror.org/04fev5t41 Institut für Energie- und Verfahrenstechnik Institute of Energy and Process Engineering'),
(106042, 'https://ror.org/05qmny332', 'de', 1, 'https://ror.org/05qmny332 Institut Schule und Profession Institute of Education and Professional Studies'),
(106043, 'https://ror.org/04xwh9695', 'en', 1, 'https://ror.org/04xwh9695 Ionosphere Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š˜Š¾Š½Š¾ŃŃ„ŠµŃ€Ń‹'),
(106044, 'https://ror.org/03pges087', 'de', 1, 'https://ror.org/03pges087 WPZ Research GmbH WPZ Research GmbH (Austria)'),
(106045, 'https://ror.org/016jwfw49', 'en', 1, 'https://ror.org/016jwfw49 University Center of Barika'),
(106046, 'https://ror.org/007y0wv84', 'en', 1, 'https://ror.org/007y0wv84 Institut für Visual Computing Institute for Visual Computing'),
(106047, 'https://ror.org/003v3fz65', 'es', 1, 'https://ror.org/003v3fz65 Centro de AstropartĆ­culas y FĆ­sica de Altas EnergĆ­as'),
(106048, 'https://ror.org/04xfre028', 'en', 1, 'https://ror.org/04xfre028 Group on Earth Observations'),
(106049, 'https://ror.org/0007enk15', 'en', 1, 'https://ror.org/0007enk15 HMS Hamburg Media School GmbH Hamburg Media School'),
(106050, 'https://ror.org/032p8r578', 'en', 1, 'https://ror.org/032p8r578 Institut für Elektronik Institute for Electronics'),
(106051, 'https://ror.org/05m37v666', 'en', 1, 'https://ror.org/05m37v666 PƤdagogische Hochschule St.Gallen St.Gallen University of Teacher Education'),
(106052, 'https://ror.org/00v171g37', 'en', 1, 'https://ror.org/00v171g37 Laboratorium für Physikalische Chemie Laboratory of Physical Chemistry'),
(106053, 'https://ror.org/04f7vj627', 'no_lang_code', 1, 'https://ror.org/04f7vj627 University of Kragujevac Универзитет у ŠšŃ€Š°Š³ŃƒŃ˜ŠµŠ²Ń†Ńƒ'),
(106054, 'https://ror.org/02db2t754', 'es', 1, 'https://ror.org/02db2t754 Instituto de Biodiversidad de Ecosistemas AntƔrticos y SubantƔrticos'),
(106055, 'https://ror.org/008eg3158', 'en', 1, 'https://ror.org/008eg3158 Schweiz. Erdbebendienst Swiss Seismological Service'),
(106056, 'https://ror.org/03hq9jn34', 'en', 1, 'https://ror.org/03hq9jn34 Institut für Mechanische Systeme Institute of Mechanical Systems'),
(106057, 'https://ror.org/04pazve79', 'en', 1, 'https://ror.org/04pazve79 Wyss Zurich Translational Center'),
(106058, 'https://ror.org/00bea3106', 'en', 1, 'https://ror.org/00bea3106 Electromagnetic Fields Laboratory Institut für Elektromagnetische Felder'),
(106059, 'https://ror.org/00v6d2h12', 'de', 1, 'https://ror.org/00v6d2h12 Bertha von Suttner PrivatuniversitƤt St. Pƶlten GmbH'),
(106060, 'https://ror.org/04mx33r94', 'en', 1, 'https://ror.org/04mx33r94 Atria Institute of Technology'),
(106061, 'https://ror.org/01p0vsd73', 'en', 1, 'https://ror.org/01p0vsd73 CETT Barcelona School of Tourism, Hospitality and Gastronomy'),
(106062, 'https://ror.org/030akyn67', 'no_lang_code', 1, 'https://ror.org/030akyn67 Piezocryst (Austria)'),
(106063, 'https://ror.org/04bb6bf94', 'de', 1, 'https://ror.org/04bb6bf94 Spatial Services GmbH Spatial Services GmbH (Austria)'),
(106064, 'https://ror.org/0009gmq77', 'en', 1, 'https://ror.org/0009gmq77 Nigeria Police Academy'),
(106065, 'https://ror.org/03yyp5644', 'en', 1, 'https://ror.org/03yyp5644 Malla Reddy Engineering College for Women'),
(106066, 'https://ror.org/01hs9md59', 'en', 1, 'https://ror.org/01hs9md59 Laboratory of Hydraulics, Hydrology and Glaciology Versuchsanstalt für Wasserbau, Hydrologie und Glaziologie'),
(106067, 'https://ror.org/05q2cwx50', 'en', 1, 'https://ror.org/05q2cwx50 Institut für Molecular Health Sciences Institute of Molecular Health Sciences'),
(106068, 'https://ror.org/00cyf6533', 'en', 1, 'https://ror.org/00cyf6533 Tashkent Institute of Management and Economics'),
(106069, 'https://ror.org/02nm03p70', 'en', 1, 'https://ror.org/02nm03p70 Maulana Azad University Jodhpur'),
(106070, 'https://ror.org/00wnzj089', 'fr', 0, 'https://ror.org/00wnzj089 Escòla Nacionala d''Administracion National School of Administration Ɖcole nationale d''administration'),
(106071, 'https://ror.org/0451wqa05', 'en', 1, 'https://ror.org/0451wqa05 Iligan Capitol College'),
(106072, 'https://ror.org/04jecwn30', 'de', 1, 'https://ror.org/04jecwn30 Anstalt für Verbrennungskraftmaschinen List (United Kingdom)'),
(106073, 'https://ror.org/03marfy19', 'de', 1, 'https://ror.org/03marfy19 Vienna Circle Society Vienna Circle Society - Society for the Advancement of Scientific World Conception Wiener Kreis Gesellschaft Wiener Kreis Gesellschaft - Verein z. Fƶrderung wissenschaftl. Weltauffassung'),
(106074, 'https://ror.org/026csjr38', 'en', 1, 'https://ror.org/026csjr38 Al-Sham Private University Ų¬Ų§Ł…Ų¹Ų© الؓام الخاصة'),
(106075, 'https://ror.org/05scdje39', 'en', 1, 'https://ror.org/05scdje39 Association for the Conservation of Biodiversity of Kazakhstan'),
(106076, 'https://ror.org/0125dpf52', 'en', 1, 'https://ror.org/0125dpf52 Flow Cytometry Core Facility'),
(106077, 'https://ror.org/00rx1p510', 'en', 1, 'https://ror.org/00rx1p510 University of Michigan Press'),
(106078, 'https://ror.org/04r3nef08', 'en', 1, 'https://ror.org/04r3nef08 State University of Medical and Applied Sciences'),
(106079, 'https://ror.org/02jvjmd55', 'en', 1, 'https://ror.org/02jvjmd55 University of New Mexico Health Sciences Center'),
(106080, 'https://ror.org/050pq4m56', 'ms', 1, 'https://ror.org/050pq4m56 Tunku Abdul Rahman University Universiti Tunku Abdul Rahman ą®¤ąÆą®™ąÆą®•ąÆ ą®…ą®ŖąÆą®¤ąÆą®²ąÆ ą®°ą®•ąÆą®®ą®¾ą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(106081, 'https://ror.org/03vc1wb14', 'en', 1, 'https://ror.org/03vc1wb14 openRxiv'),
(106082, 'https://ror.org/02hhndj92', 'en', 1, 'https://ror.org/02hhndj92 University of Michigan Biological Station'),
(106083, 'https://ror.org/0556as610', 'en', 1, 'https://ror.org/0556as610 Institut für Mikrobiologie Institute of Microbiology'),
(106084, 'https://ror.org/05y8y6598', 'en', 1, 'https://ror.org/05y8y6598 FIRST Center for Micro- and Nanoscience'),
(106085, 'https://ror.org/00cepxd71', 'en', 1, 'https://ror.org/00cepxd71 Institut für Biomechanik Institute for Biomechanics'),
(106086, 'https://ror.org/015ndb314', 'de', 1, 'https://ror.org/015ndb314 Laserdata GmbH Laserdata GmbH (Austria)'),
(106087, 'https://ror.org/025em6n98', 'en', 1, 'https://ror.org/025em6n98 Institut für Verkehrsplanung und Transportsysteme Institute for Transport Planning and Systems'),
(106088, 'https://ror.org/015tnsz82', 'en', 1, 'https://ror.org/015tnsz82 Michigan Sea Grant'),
(106089, 'https://ror.org/02q73ep21', 'en', 1, 'https://ror.org/02q73ep21 Laboratorium für Organische Chemie Laboratory of Organic Chemistry'),
(106090, 'https://ror.org/02y3wb057', 'en', 1, 'https://ror.org/02y3wb057 Altai Economics and Law Institute Алтайский ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(106091, 'https://ror.org/01nbken06', 'en', 1, 'https://ror.org/01nbken06 Abu Dhabi Stem Cells Center'),
(106092, 'https://ror.org/03rvt2327', 'en', 1, 'https://ror.org/03rvt2327 Center for Health and Migration Center for Health and Migration (Austria) Trummer & Novak-Zezula OG'),
(106093, 'https://ror.org/006ha6n07', 'es', 1, 'https://ror.org/006ha6n07 Editorial de la Universidad de Cantabria'),
(106094, 'https://ror.org/04ses8e30', 'en', 1, 'https://ror.org/04ses8e30 Institut für virtuelle Produktion Institute of Virtual Manufacturing'),
(106095, 'https://ror.org/03hjcs512', 'en', 1, 'https://ror.org/03hjcs512 Automatic Control Laboratory Institut für Automatik'),
(106096, 'https://ror.org/059ygsz90', 'en', 1, 'https://ror.org/059ygsz90 Computer Vision Laboratory Institut für Bildverarbeitung'),
(106097, 'https://ror.org/00y1neg56', 'en', 1, 'https://ror.org/00y1neg56 digital Trial Innovation Platform'),
(106098, 'https://ror.org/0000pc329', 'fr', 1, 'https://ror.org/0000pc329 Sinergies'),
(106099, 'https://ror.org/02nax7140', 'en', 1, 'https://ror.org/02nax7140 SLB Middle East S.A. Schlumberger Middle East SA Schlumberger Middle East SA (Saudi Arabia)'),
(106100, 'https://ror.org/02scr7307', 'en', 1, 'https://ror.org/02scr7307 Institut für Landschaft und Urbane Studien LUS Institute for Urban and Landscape Studies'),
(106101, 'https://ror.org/00bfrk915', 'en', 1, 'https://ror.org/00bfrk915 Seminar for Applied Mathematics Seminar für Angewandte Mathematik'),
(106102, 'https://ror.org/05s4p3019', 'en', 1, 'https://ror.org/05s4p3019 Sustainable Futures Collaborative'),
(106103, 'https://ror.org/04yyk0258', 'en', 1, 'https://ror.org/04yyk0258 Naga College Foundation, Inc.'),
(106104, 'https://ror.org/01w61pg27', 'en', 1, 'https://ror.org/01w61pg27 Pordis Pordis (United States)'),
(106105, 'https://ror.org/04550za12', 'en', 1, 'https://ror.org/04550za12 Yakpermas Banyumas Polytechnic'),
(106106, 'https://ror.org/023frmf57', 'en', 1, 'https://ror.org/023frmf57 Socioeconomic Institute for Advanced Studies Socioeconomic Institute for Advanced Studies (Rwanda)'),
(106107, 'https://ror.org/0001rqc34', 'es', 1, 'https://ror.org/0001rqc34 Hospital Central Norte de Petroleos Mexicanos');
INSERT INTO `rors` VALUES
(106108, 'https://ror.org/02wmjy128', 'de', 1, 'https://ror.org/02wmjy128 Stella Vorarlberg Privathochschule für Musik'),
(106109, 'https://ror.org/04w2ds943', 'en', 1, 'https://ror.org/04w2ds943 Institut für Elektrische Energieübertragung und Hochspannungstechnik Power Systems and High Voltage Laboratory'),
(106110, 'https://ror.org/00q12hk53', 'en', 1, 'https://ror.org/00q12hk53 AGST Philippines'),
(106111, 'https://ror.org/02vrd8j29', 'en', 1, 'https://ror.org/02vrd8j29 The Chicago School'),
(106112, 'https://ror.org/003sddv93', 'en', 1, 'https://ror.org/003sddv93 Shri Lal Bahadur Shastri Degree College, Gonda ą¤¶ą„ą¤°ą„€ लाल ą¤¬ą¤¹ą¤¾ą¤¦ą„ą¤° ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤°ą„€ ą¤”ą¤æą¤—ą„ą¤°ą„€ ą¤•ą„‰ą¤²ą„‡ą¤œ, ą¤—ą„‹ą¤£ą„ą¤”ą¤¾'),
(106113, 'https://ror.org/03j5gm982', 'en', 1, 'https://ror.org/03j5gm982 Institut für Molekulare Systembiologie Institute for Molecular Systems Biology'),
(106114, 'https://ror.org/01a2cdx51', 'en', 1, 'https://ror.org/01a2cdx51 Kumamoto Saishun Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ ē†Šęœ¬å†ę˜„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(106115, 'https://ror.org/00ae9r889', 'de', 1, 'https://ror.org/00ae9r889 Leistungssport Austria'),
(106116, 'https://ror.org/048s0na58', 'de', 1, 'https://ror.org/048s0na58 Institut Digitale und Informatische Bildung Institute Digital and Computer Science Education'),
(106117, 'https://ror.org/03akamm78', 'en', 1, 'https://ror.org/03akamm78 School for Continuing Education'),
(106118, 'https://ror.org/04nd0xd48', 'en', 1, 'https://ror.org/04nd0xd48 Haute Ɖcole de Lucerne Hochschule Luzern Lucerne University of Applied Sciences and Arts'),
(106119, 'https://ror.org/04hjvxe87', 'id', 1, 'https://ror.org/04hjvxe87 Politeknik Pariwisata NHI Bandung'),
(106120, 'https://ror.org/04a7xee56', 'en', 1, 'https://ror.org/04a7xee56 Institut für Neuroinformatik Institute of Neuroinformatics'),
(106121, 'https://ror.org/02cp6jm68', 'en', 1, 'https://ror.org/02cp6jm68 Institut für Geschichte Institute of History'),
(106122, 'https://ror.org/014s0bx45', 'en', 1, 'https://ror.org/014s0bx45 MAKAM Research GmbH MAKAM Research GmbH (Austria)'),
(106123, 'https://ror.org/02zbmre89', 'en', 1, 'https://ror.org/02zbmre89 Institut für Werkzeugmaschinen und Fertigung Institute of Machine Tools and Manufacturing'),
(106124, 'https://ror.org/01m0th787', 'en', 1, 'https://ror.org/01m0th787 Institut für Molekulare Physikalische Wissenschaft Institute of Molecular Physical Science'),
(106125, 'https://ror.org/04npskv21', 'it', 1, 'https://ror.org/04npskv21 Environmental Monitoring and Modeling Laboratory for the Sustainable Development Laboratorio di Monitoraggio e Modellistica Ambientale per lo sviluppo sostenibile'),
(106126, 'https://ror.org/05bzz1e33', 'en', 1, 'https://ror.org/05bzz1e33 Institut für Atmosphäre und Klima Institute for Atmospheric and Climate Science'),
(106127, 'https://ror.org/049n68p64', 'en', 1, 'https://ror.org/049n68p64 Universidad de Caldas University of Caldas'),
(106128, 'https://ror.org/0342s9s13', 'en', 1, 'https://ror.org/0342s9s13 Laboratorium für Anorganische Chemie Laboratory of Inorganic Chemistry'),
(106129, 'https://ror.org/03tmdzc72', 'pt', 1, 'https://ror.org/03tmdzc72 Jardim Botânico da Ajuda'),
(106130, 'https://ror.org/03zh4st66', 'no_lang_code', 0, 'https://ror.org/03zh4st66 Sincolor (Czechia)'),
(106131, 'https://ror.org/05n3san77', 'pt', 1, 'https://ror.org/05n3san77 Sociedade Portuguesa da Psicanalise'),
(106132, 'https://ror.org/03b1m6c97', 'pt', 1, 'https://ror.org/03b1m6c97 Conservatório Bomfim'),
(106133, 'https://ror.org/00mthsf17', 'fr', 1, 'https://ror.org/00mthsf17 Centre Hospitalier Universitaire de Montpellier University Hospital of Montpellier'),
(106134, 'https://ror.org/01r3j2c85', 'pt', 1, 'https://ror.org/01r3j2c85 Unidade de Investigação e Desenvolvimento de Nefrologia'),
(106135, 'https://ror.org/05v1yhp25', 'pt', 1, 'https://ror.org/05v1yhp25 Laboratório Colaborativo para a Bioeconomia Azul'),
(106136, 'https://ror.org/0232x7x42', 'no_lang_code', 1, 'https://ror.org/0232x7x42 Laboratory of Food and Pharmaceutical Biology Laboratório de Biologia Alimentar e Farmacêutica Laboratório de Biologia Alimentar e Farmacêutica (Portugal)'),
(106137, 'https://ror.org/02x5r8343', 'no_lang_code', 1, 'https://ror.org/02x5r8343 Algardata Sistemas InformƔticos (Portugal) Algardata Sistemas InformƔticos, S.A.'),
(106138, 'https://ror.org/01ffz3y94', 'pt', 1, 'https://ror.org/01ffz3y94 Azores Oncology Center Centro de Oncologia dos AƧores'),
(106139, 'https://ror.org/01kk7j351', 'pt', 1, 'https://ror.org/01kk7j351 Instituto de Estudos de Literatura e Tradição'),
(106140, 'https://ror.org/00pamm417', 'fr', 1, 'https://ror.org/00pamm417 Centre intƩgrƩ universitaire de santƩ et de services sociaux de la Capitale-Nationale'),
(106141, 'https://ror.org/00xvhrm87', 'pt', 1, 'https://ror.org/00xvhrm87 Ispa CRL'),
(106142, 'https://ror.org/02xta6736', 'pt', 1, 'https://ror.org/02xta6736 Governo do Estado de SĆ£o Paulo'),
(106143, 'https://ror.org/00dn3c815', 'en', 1, 'https://ror.org/00dn3c815 Eishinkai Kishiwada Rehabilitation Hospital å²øå’Œē”°ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(106144, 'https://ror.org/01ctjz153', 'no_lang_code', 1, 'https://ror.org/01ctjz153 Pfizer (Portugal)'),
(106145, 'https://ror.org/01t7shc19', 'no_lang_code', 1, 'https://ror.org/01t7shc19 Atena Equity Partners Atena Equity Partners (Portugal) Atena Equity Partners SCR SA'),
(106146, 'https://ror.org/01hcb0r47', 'pt', 1, 'https://ror.org/01hcb0r47 Centro de Administração e Políticas Públicas'),
(106147, 'https://ror.org/04cstt562', 'pt', 1, 'https://ror.org/04cstt562 Direção Geral de Energia e Geologia'),
(106148, 'https://ror.org/05y3vhx59', 'no_lang_code', 1, 'https://ror.org/05y3vhx59 Brainanswer (Portugal)'),
(106149, 'https://ror.org/01ar90c17', 'it', 1, 'https://ror.org/01ar90c17 Institute of Agricultural Biology and Biotechnology Istituto di Biologia e Biotecnologia Agraria'),
(106150, 'https://ror.org/04yh84372', 'en', 1, 'https://ror.org/04yh84372 Nexcelom Nexcelom (United States)'),
(106151, 'https://ror.org/044bfs567', 'pt', 1, 'https://ror.org/044bfs567 Republica Portuguesa Direção-Geral das Artes'),
(106152, 'https://ror.org/03nsze348', 'pt', 1, 'https://ror.org/03nsze348 Medical Art Center Clƭnica MƩdica (Portugal) Medical Art Center Clƭnica MƩdica Lda Medical Art Center Medical Clinic'),
(106153, 'https://ror.org/00ssszg35', 'pt', 1, 'https://ror.org/00ssszg35 Instituto de Investigação em Ciências do Mar Okeanos'),
(106154, 'https://ror.org/03fsbqz23', 'en', 1, 'https://ror.org/03fsbqz23 Chuadanga Government College ą¦šą§ą¦Æą¦¼ą¦¾ą¦”ą¦¾ą¦™ą§ą¦—ą¦¾ সরকারি ą¦•ą¦²ą§‡ą¦œ'),
(106155, 'https://ror.org/04ngktm18', 'pt', 1, 'https://ror.org/04ngktm18 Sociedade Portuguesa de Psicodrama'),
(106156, 'https://ror.org/02s91mw17', 'no_lang_code', 1, 'https://ror.org/02s91mw17 Prime Matter Consulting (Portugal)'),
(106157, 'https://ror.org/022w6b140', 'pt', 1, 'https://ror.org/022w6b140 Conservatório de Música e Artes do Centro'),
(106158, 'https://ror.org/05wag9297', 'en', 1, 'https://ror.org/05wag9297 Van der Waals-Zeeman Institute'),
(106159, 'https://ror.org/01sn0bt42', 'en', 1, 'https://ror.org/01sn0bt42 Animal Health Research Center'),
(106160, 'https://ror.org/02sarsp54', 'pt', 1, 'https://ror.org/02sarsp54 Câmara Municipal de Vila Nova de Famalicão'),
(106161, 'https://ror.org/006ae1882', 'en', 1, 'https://ror.org/006ae1882 Institute of Polymers Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠŸŠ¾Š»ŠøŠ¼ŠµŃ€Šø'),
(106162, 'https://ror.org/05mwex884', 'no_lang_code', 1, 'https://ror.org/05mwex884 CIENGIS (Portugal) CIENGIS, S.A.'),
(106163, 'https://ror.org/05g6gfq40', 'pt', 1, 'https://ror.org/05g6gfq40 CENERTEC Centro de Energia e Tecnologia'),
(106164, 'https://ror.org/04bxpb944', 'it', 1, 'https://ror.org/04bxpb944 Aplysia APS'),
(106165, 'https://ror.org/0543paf14', 'pt', 1, 'https://ror.org/0543paf14 Unidade Local de SaĆŗde do Arco Ribeirinho'),
(106166, 'https://ror.org/048h18v79', 'no_lang_code', 1, 'https://ror.org/048h18v79 Covilha Science and Technology Park Parque de Ciência e Tecnologia da Covilhã (Portugal) Parque de Ciência e Tecnologia da Covilhã, S.A.'),
(106167, 'https://ror.org/029j7ca59', 'pt', 1, 'https://ror.org/029j7ca59 Sociedade Portuguesa de Psiquiatria e Psicologia da JustiƧa'),
(106168, 'https://ror.org/01bbb4v96', 'pt', 1, 'https://ror.org/01bbb4v96 Centro de Investigação e Informação da Música Portuguesa'),
(106169, 'https://ror.org/0199x1p30', 'en', 1, 'https://ror.org/0199x1p30 Kolej Universiti Linton Linton University College'),
(106170, 'https://ror.org/02dc4wm38', 'pt', 1, 'https://ror.org/02dc4wm38 Sociedade Portuguesa de Osteoporose e DoenƧas Ɠsseas Metabólicas'),
(106171, 'https://ror.org/02vrzme47', 'pt', 1, 'https://ror.org/02vrzme47 Escola de MĆŗsica Nossa Senhora do Cabo'),
(106172, 'https://ror.org/02n6c9837', 'no_lang_code', 1, 'https://ror.org/02n6c9837 Sanofi (France)'),
(106173, 'https://ror.org/0249hxr55', 'no_lang_code', 1, 'https://ror.org/0249hxr55 Dryas Dryas (Portugal)'),
(106174, 'https://ror.org/031tq3q38', 'pt', 1, 'https://ror.org/031tq3q38 Direção-Geral de Estatísticas da Educação e Ciência'),
(106175, 'https://ror.org/04sff9874', 'pt', 1, 'https://ror.org/04sff9874 CĆ¢mara Municipal de Sever do Vouga'),
(106176, 'https://ror.org/04csh5253', 'no_lang_code', 1, 'https://ror.org/04csh5253 PricewaterhouseCoopers (Portugal) PwC Portugal'),
(106177, 'https://ror.org/05vwew660', 'no_lang_code', 1, 'https://ror.org/05vwew660 Atomedical - Laboratório de Medicina Nuclear Atomedical Atomedical (Portugal) Atomedical - Nuclear Medicine Laboratory'),
(106178, 'https://ror.org/03tashy42', 'pt', 1, 'https://ror.org/03tashy42 Instituto de Higiene e Medicina Tropical Biblioteca'),
(106179, 'https://ror.org/04mn0nr69', 'fr', 1, 'https://ror.org/04mn0nr69 Interactions, Corpus, Apprentissages, ReprƩsentations'),
(106180, 'https://ror.org/00edve068', 'fr', 1, 'https://ror.org/00edve068 Centre Technique de la Conservation des Produits Agricoles Technical Center for the Preservation of Agricultural Products'),
(106181, 'https://ror.org/033sc7b24', 'en', 1, 'https://ror.org/033sc7b24 City College, Kolkata সিটি ą¦•ą¦²ą§‡ą¦œ'),
(106182, 'https://ror.org/00h8z7d20', 'pt', 1, 'https://ror.org/00h8z7d20 AgĆŖncia Municipal de Energia do Seixal'),
(106183, 'https://ror.org/056a73h57', 'en', 1, 'https://ror.org/056a73h57 Fraunhofer Center for Smart Agriculture and Water Management – AWAM'),
(106184, 'https://ror.org/02k5qyv44', 'pt', 1, 'https://ror.org/02k5qyv44 Centro Interpretativo do Tapete de Arraiolos'),
(106185, 'https://ror.org/0041cxe63', 'en', 1, 'https://ror.org/0041cxe63 Marine Ecosystems and oRganisms reSEArch Lab'),
(106186, 'https://ror.org/04j4kch98', 'en', 1, 'https://ror.org/04j4kch98 Yavuz Selim Bone Diseases and Rehabilitation Hospital Yavuz Seli̇m Kemi̇k Hastaliklari ve Rehabi̇li̇tasyon Hastanesi̇'),
(106187, 'https://ror.org/046athf97', 'pt', 1, 'https://ror.org/046athf97 RELACRE - Associação de Laboratórios Acreditados de Portugal'),
(106188, 'https://ror.org/01tavxj45', 'pt', 1, 'https://ror.org/01tavxj45 Federação das Indústrias Portuguesas Agro-Alimentares'),
(106189, 'https://ror.org/013xyzs10', 'no_lang_code', 1, 'https://ror.org/013xyzs10 Tuamutunga Internacional (Portugal)'),
(106190, 'https://ror.org/03cn82n65', 'pt', 1, 'https://ror.org/03cn82n65 Sociedade Portuguesa de Materiais'),
(106191, 'https://ror.org/03w7bfr91', 'no_lang_code', 1, 'https://ror.org/03w7bfr91 Arouconstrói Engenharia e Construções (Portugal) Arouconstrói Engenharia e Construções, S.A.'),
(106192, 'https://ror.org/04bky9367', 'pt', 1, 'https://ror.org/04bky9367 Sociedade Portuguesa de Espeleologia'),
(106193, 'https://ror.org/02qvxfw73', 'no_lang_code', 1, 'https://ror.org/02qvxfw73 Mentortec Serviços de Apoio a Projectos Tecnológicos (Portugal) Mentortec Serviços de Apoio a Projectos Tecnológicos, S.A. Mentortec Technological Projects Support Services'),
(106194, 'https://ror.org/05fkmcx91', 'pt', 1, 'https://ror.org/05fkmcx91 Centro de AnƔlise Funcional Estruturas Lineares e AplicaƧƵes'),
(106195, 'https://ror.org/008dmsy67', 'en', 1, 'https://ror.org/008dmsy67 Adler University'),
(106196, 'https://ror.org/04km2r075', 'no_lang_code', 1, 'https://ror.org/04km2r075 Lusomedicamenta (Portugal) Lusomedicamenta, S.A.'),
(106197, 'https://ror.org/02gjq6d42', 'pt', 1, 'https://ror.org/02gjq6d42 Casa da AmƩrica Latina'),
(106198, 'https://ror.org/02gaw1s20', 'fr', 1, 'https://ror.org/02gaw1s20 Laboratoire de Chimie'),
(106199, 'https://ror.org/04z16cc77', 'pt', 1, 'https://ror.org/04z16cc77 Centro de MatemÔtica Pólo da Universidade de TrÔs-os-Montes e Alto Douro'),
(106200, 'https://ror.org/000865z52', 'en', 1, 'https://ror.org/000865z52 Governo Regional da Madeira Regional Government of Madeira'),
(106201, 'https://ror.org/04587cw34', 'no_lang_code', 1, 'https://ror.org/04587cw34 Serraic Create and Innovate (Portugal)'),
(106202, 'https://ror.org/02mahbh18', 'pt', 1, 'https://ror.org/02mahbh18 Conservatório de Música de Barcelos'),
(106203, 'https://ror.org/04q4yxc04', 'es', 1, 'https://ror.org/04q4yxc04 Centro Regional de Formación Docente e Investigación Educativa Regional Center for Teacher Training and Educational Research'),
(106204, 'https://ror.org/02t0qr887', 'pt', 1, 'https://ror.org/02t0qr887 ARS Associação Investigação Desenvolvimento'),
(106205, 'https://ror.org/056gkfq80', 'pt', 1, 'https://ror.org/056gkfq80 Unidade Local de Saúde de Santo António EPE'),
(106206, 'https://ror.org/03wg0q111', 'pt', 1, 'https://ror.org/03wg0q111 Portugal Inovação Social'),
(106207, 'https://ror.org/0209md279', 'en', 1, 'https://ror.org/0209md279 Portuguese Clinical Research Infrastructure Network'),
(106208, 'https://ror.org/038e47q18', 'es', 1, 'https://ror.org/038e47q18 La Universidad Americana'),
(106209, 'https://ror.org/0061z8559', 'pt', 1, 'https://ror.org/0061z8559 Sociedade Portuguesa de Microbiologia'),
(106210, 'https://ror.org/01w5x0z26', 'pt', 1, 'https://ror.org/01w5x0z26 Sociedade Portuguesa de Neurocirurgia'),
(106211, 'https://ror.org/04rh0vg05', 'en', 1, 'https://ror.org/04rh0vg05 Littoral Power Systems, Inc. Littoral Power Systems, Inc. (United States)'),
(106212, 'https://ror.org/0448pab96', 'en', 1, 'https://ror.org/0448pab96 Velalar College of Engineering and Technology ą®µąÆ‡ą®³ą®¾ą®³ą®°ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(106213, 'https://ror.org/01gmv5d77', 'no_lang_code', 1, 'https://ror.org/01gmv5d77 McKinsey & Company (United States)'),
(106214, 'https://ror.org/01t4ttr56', 'en', 1, 'https://ror.org/01t4ttr56 Center for Scalable Data Analytics and Artificial Intelligence'),
(106215, 'https://ror.org/03z5bhc64', 'pt', 1, 'https://ror.org/03z5bhc64 Biobanco.pt'),
(106216, 'https://ror.org/02y7f0c04', 'pt', 1, 'https://ror.org/02y7f0c04 Assembleia da RepĆŗblica Biblioteca Passos Manuel'),
(106217, 'https://ror.org/05j00sy30', 'en', 1, 'https://ror.org/05j00sy30 Idorsia Pharmaceuticals Ltd Idorsia Pharmaceuticals Ltd (Switzerland)'),
(106218, 'https://ror.org/052rv9321', 'pt', 1, 'https://ror.org/052rv9321 Câmara Municipal de Portimão'),
(106219, 'https://ror.org/023nv2019', 'pt', 1, 'https://ror.org/023nv2019 Centro de Tecnologia e Inovação Industrial'),
(106220, 'https://ror.org/05hf24p52', 'pt', 1, 'https://ror.org/05hf24p52 Sociedade Portuguesa de Relatividade e Gravitação'),
(106221, 'https://ror.org/016871071', 'pt', 1, 'https://ror.org/016871071 Centro de Investigação em Comunicação Aplicada Cultura e Novas Tecnologias'),
(106222, 'https://ror.org/00ww5b307', 'pt', 1, 'https://ror.org/00ww5b307 Unidade Local de SaĆŗde de Amadora/Sintra'),
(106223, 'https://ror.org/03fhy0p09', 'no_lang_code', 1, 'https://ror.org/03fhy0p09 MCretail SGPS (Portugal) MCretail SGPS, S.A.'),
(106224, 'https://ror.org/05x14st26', 'pt', 1, 'https://ror.org/05x14st26 Direção de História e Cultura Militar'),
(106225, 'https://ror.org/04pyh8443', 'pt', 1, 'https://ror.org/04pyh8443 Escola de Comunicação Arquitectura Artes e Tecnologias da Informação'),
(106226, 'https://ror.org/0137avj42', 'pt', 1, 'https://ror.org/0137avj42 Sociedade Portuguesa de Astronomia'),
(106227, 'https://ror.org/01j92g734', 'pt', 1, 'https://ror.org/01j92g734 Companhia de MĆŗsica Teatral'),
(106228, 'https://ror.org/03h1a3963', 'pt', 1, 'https://ror.org/03h1a3963 Centro para o Direito Ambiental e Desenvolvimento Sustentado'),
(106229, 'https://ror.org/00hvzd703', 'pt', 1, 'https://ror.org/00hvzd703 ClĆ­nica de Otorrinolaringologia Dr Agostinho Pereira da Silva ClĆ­nica de Otorrinolaringologia Dr Agostinho Pereira da Silva (Portugal) Dr Agostinho Pereira da Silva Otorhinolaryngology Clinic'),
(106230, 'https://ror.org/01x19ms63', 'pt', 1, 'https://ror.org/01x19ms63 EurolĆ­nguas'),
(106231, 'https://ror.org/03a73ny50', 'en', 1, 'https://ror.org/03a73ny50 Atlantic International Research Centre'),
(106232, 'https://ror.org/053veeq82', 'en', 1, 'https://ror.org/053veeq82 Facility for Antiproton and Ion Research Internationale Beschleuniger-Anlage zur Forschung mit Antiprotonen und Ionen'),
(106233, 'https://ror.org/05se46277', 'pt', 1, 'https://ror.org/05se46277 Novotecna - Associação para o Desenvolvimento Tecnológico Novotecna'),
(106234, 'https://ror.org/02e6qgh10', 'no_lang_code', 1, 'https://ror.org/02e6qgh10 Omnidea (Portugal)'),
(106235, 'https://ror.org/03e5g4t87', 'no_lang_code', 1, 'https://ror.org/03e5g4t87 Puratos Puratos (Portugal)'),
(106236, 'https://ror.org/00ksx0a64', 'no_lang_code', 1, 'https://ror.org/00ksx0a64 Oceano Fresco (Portugal) Oceano Fresco, S.A.'),
(106237, 'https://ror.org/03q8wy381', 'no_lang_code', 1, 'https://ror.org/03q8wy381 Shine 2Europe Shine 2Europe (Portugal)'),
(106238, 'https://ror.org/05qfzn664', 'no_lang_code', 1, 'https://ror.org/05qfzn664 Pharol SGPS (Portugal) Pharol SGPS, S.A.'),
(106239, 'https://ror.org/040kpmb93', 'es', 1, 'https://ror.org/040kpmb93 Universidad Autónoma de Entre Ríos'),
(106240, 'https://ror.org/03zd03166', 'no_lang_code', 1, 'https://ror.org/03zd03166 Eli Lilly (Portugal)'),
(106241, 'https://ror.org/01kshng77', 'no_lang_code', 1, 'https://ror.org/01kshng77 Egoclinic Prestação de Serviços Médicos (Portugal) Egoclinic Provision of Medical Services'),
(106242, 'https://ror.org/0263sxq51', 'pt', 1, 'https://ror.org/0263sxq51 Fundação AstraZeneca'),
(106243, 'https://ror.org/01ddxs846', 'en', 1, 'https://ror.org/01ddxs846 BSC Engineering BSC Engineering (United States)'),
(106244, 'https://ror.org/011pctb02', 'pt', 1, 'https://ror.org/011pctb02 PalƔcio Nacional da Ajuda'),
(106245, 'https://ror.org/056j70537', 'es', 1, 'https://ror.org/056j70537 Instituto Superior Tecnológico Portoviejo con condición Superior Universitario "ITSUP"'),
(106246, 'https://ror.org/01t6wkc63', 'pt', 1, 'https://ror.org/01t6wkc63 CĆ¢mara Municipal da Maia'),
(106247, 'https://ror.org/02dfqxw09', 'en', 1, 'https://ror.org/02dfqxw09 Photon Science Innovation Center äø€čˆ¬č²”å›£ę³•äŗŗå…‰ē§‘å­¦ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼ å…‰ē§‘å­¦ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(106248, 'https://ror.org/019de9x44', 'en', 1, 'https://ror.org/019de9x44 Network of Extreme Conditions Laboratories'),
(106249, 'https://ror.org/02a44pn39', 'no_lang_code', 1, 'https://ror.org/02a44pn39 FairJourney Biologics (Portugal) FairJourney Biologics, S.A.'),
(106250, 'https://ror.org/05nghbc66', 'no_lang_code', 1, 'https://ror.org/05nghbc66 Smartwatt (Portugal) Smartwatt, S.A.'),
(106251, 'https://ror.org/04ecb9d64', 'pt', 1, 'https://ror.org/04ecb9d64 Câmara Municipal de AlvaiÔzere'),
(106252, 'https://ror.org/03s1n8594', 'no_lang_code', 1, 'https://ror.org/03s1n8594 Docapesca Portos e Lotas (Portugal) Docapesca Portos e Lotas, S.A.'),
(106253, 'https://ror.org/023g0hr89', 'no_lang_code', 1, 'https://ror.org/023g0hr89 Perceive3D (Portugal) Perceive3D, S.A.'),
(106254, 'https://ror.org/0168sy579', 'pt', 1, 'https://ror.org/0168sy579 ServiƧo de Estrangeiros e Fronteiras'),
(106255, 'https://ror.org/03v11jn59', 'pt', 1, 'https://ror.org/03v11jn59 Instituto Superior de Direito Canónico'),
(106256, 'https://ror.org/038e1m489', 'pt', 1, 'https://ror.org/038e1m489 Centro de Investigação em Produção Agroalimentar SustentÔvel'),
(106257, 'https://ror.org/044eb2772', 'it', 1, 'https://ror.org/044eb2772 Fondazione Ethoikos'),
(106258, 'https://ror.org/05t6zk898', 'pt', 1, 'https://ror.org/05t6zk898 Alto Comissariado para as MigraƧƵes'),
(106259, 'https://ror.org/0328c6f81', 'pt', 1, 'https://ror.org/0328c6f81 ConferĆŖncia Episcopal Portuguesa'),
(106260, 'https://ror.org/000c03k13', 'pt', 1, 'https://ror.org/000c03k13 Sociedade Portuguesa de Otorrinolaringologia e Cirurgia de CabeƧa e PescoƧo'),
(106261, 'https://ror.org/05jp5ja73', 'pt', 1, 'https://ror.org/05jp5ja73 Centro de Estudos de História do Atlântico Alberto Vieira'),
(106262, 'https://ror.org/03q2knb18', 'pt', 1, 'https://ror.org/03q2knb18 Instituto Superior Tecnico Campus Tecnológico e Nuclear'),
(106263, 'https://ror.org/009nk6b02', 'en', 1, 'https://ror.org/009nk6b02 Portuguese Additive Manufacturing Initiative'),
(106264, 'https://ror.org/052xmb466', 'pt', 1, 'https://ror.org/052xmb466 APHVIN GEHVID - Associação Portuguesa de História da Vinha e do Vinho'),
(106265, 'https://ror.org/03hwdys44', 'pt', 1, 'https://ror.org/03hwdys44 Laboratório de Investigação e Reabilitação Respiratória'),
(106266, 'https://ror.org/04x763b43', 'no_lang_code', 1, 'https://ror.org/04x763b43 Fresenius Kabi Pharma Portugal (Portugal)'),
(106267, 'https://ror.org/02vmw2t69', 'en', 1, 'https://ror.org/02vmw2t69 Aeronautics and Astronautics Research Center'),
(106268, 'https://ror.org/04aykk734', 'en', 1, 'https://ror.org/04aykk734 DTX Digital Transformation CoLAB'),
(106269, 'https://ror.org/05tfx2624', 'pt', 1, 'https://ror.org/05tfx2624 Estação Nacional de Fruticultura Vieira Natividade'),
(106270, 'https://ror.org/046r5vg91', 'pt', 1, 'https://ror.org/046r5vg91 Sociedade Broteriana'),
(106271, 'https://ror.org/038tjv815', 'pt', 1, 'https://ror.org/038tjv815 Unidade de Ensino e Investigação de Clínica Tropical'),
(106272, 'https://ror.org/02n54r639', 'en', 1, 'https://ror.org/02n54r639 Smart Energy LAB'),
(106273, 'https://ror.org/04fk8gw96', 'pt', 1, 'https://ror.org/04fk8gw96 Centro de Medicina Laboratorial Germano de Sousa Centro de Medicina Laboratorial Germano de Sousa (Portugal) Germano de Sousa Centre for Laboratory Medicine'),
(106274, 'https://ror.org/043asvy84', 'en', 1, 'https://ror.org/043asvy84 Metropolitan Water Reclamation District of Greater Chicago'),
(106275, 'https://ror.org/032r98v39', 'no_lang_code', 1, 'https://ror.org/032r98v39 Caetano de Freitas & Associados Caetano de Freitas & Associados (Portugal) Caetano de Freitas & Partners'),
(106276, 'https://ror.org/05t256516', 'pt', 1, 'https://ror.org/05t256516 Sociedade Portuguesa de Cardiologia VeterinƔria'),
(106277, 'https://ror.org/03yf5zr20', 'fr', 0, 'https://ror.org/03yf5zr20 Clermont UniversitƩ'),
(106278, 'https://ror.org/05tjew235', 'pt', 1, 'https://ror.org/05tjew235 Centro de Informação Europeia Jacques Delors'),
(106279, 'https://ror.org/01n029866', 'no_lang_code', 1, 'https://ror.org/01n029866 UCB Pharma (Belgium)'),
(106280, 'https://ror.org/013dzwk66', 'en', 1, 'https://ror.org/013dzwk66 Wageningen Marine Research'),
(106281, 'https://ror.org/04fb0kf32', 'pt', 1, 'https://ror.org/04fb0kf32 Centro de Competências em Envelhecimento Ativo e SaudÔvel'),
(106282, 'https://ror.org/02by2rg20', 'en', 1, 'https://ror.org/02by2rg20 Laboratory for Advanced Computing'),
(106283, 'https://ror.org/030101v90', 'en', 1, 'https://ror.org/030101v90 Felician University'),
(106284, 'https://ror.org/04ct4d772', 'en', 1, 'https://ror.org/04ct4d772 Southeast University äøœå—å¤§å­¦'),
(106285, 'https://ror.org/03q1qx424', 'fr', 1, 'https://ror.org/03q1qx424 Diversity, Genomes and Insects-Microorganisms Interactions DiversitƩ, gƩnomes et interactions micro-organismes-insectes'),
(106286, 'https://ror.org/03mpjj471', 'pt', 1, 'https://ror.org/03mpjj471 Centro para a Valorização de Resíduos'),
(106287, 'https://ror.org/05dsdbp53', 'pt', 1, 'https://ror.org/05dsdbp53 Centro de FĆ­sica Computacional'),
(106288, 'https://ror.org/0278jd714', 'pt', 1, 'https://ror.org/0278jd714 Cooperativa para a Educação e Reabilitação de Cidadãos Inadaptados de Vila Nova de Gaia'),
(106289, 'https://ror.org/00tdc7x54', 'pt', 1, 'https://ror.org/00tdc7x54 Escola Naval Unidade Orgânica de Ensino Politécnico'),
(106290, 'https://ror.org/052023y69', 'pt', 1, 'https://ror.org/052023y69 Laboratório Hercules Herança Cultural Estudos e Salvaguarda'),
(106291, 'https://ror.org/00kwaxx75', 'no_lang_code', 1, 'https://ror.org/00kwaxx75 Basi Laboratories - Pharmaceutical Industries Laboratórios Basi - Indústria Farmacêutica (Portugal) Laboratórios Basi - Indústria Farmacêutica, S.A.'),
(106292, 'https://ror.org/03fgbzh72', 'pt', 1, 'https://ror.org/03fgbzh72 Ordem dos Advogados'),
(106293, 'https://ror.org/010215a25', 'en', 1, 'https://ror.org/010215a25 FelsőbbfokĆŗ TanulmĆ”nyok IntĆ©zete Institute of Advanced Studies Kőszeg'),
(106294, 'https://ror.org/00jwkzj28', 'en', 1, 'https://ror.org/00jwkzj28 Museu de Arte Contemporânea de Serralves'),
(106295, 'https://ror.org/00jp83f12', 'en', 1, 'https://ror.org/00jp83f12 Bochum University of Applied Sciences Health Campus Hochschule Bochum Standort Gesundheitscampus'),
(106296, 'https://ror.org/000752v72', 'no_lang_code', 1, 'https://ror.org/000752v72 Nefrodial SAS Renal Unit Unidad Renal Nefrodial SAS Unidad Renal Nefrodial SAS (Portugal)'),
(106297, 'https://ror.org/01qy36j97', 'pt', 1, 'https://ror.org/01qy36j97 Secretaria Regional de Agricultura e Pescas Direção Regional de Agricultura'),
(106298, 'https://ror.org/00xtxt091', 'pt', 1, 'https://ror.org/00xtxt091 Centro de Estudos de Arquitetura Cidade e Território'),
(106299, 'https://ror.org/02ncby374', 'en', 1, 'https://ror.org/02ncby374 CHEM.I.NET CO., Ltd. CHEM.I.NET CO., Ltd. (South Korea) ģ¼ģ•„ģ“ė„·(주)'),
(106300, 'https://ror.org/0449bkp65', 'en', 1, 'https://ror.org/0449bkp65 University of Kerbala'),
(106301, 'https://ror.org/016gnej37', 'pt', 1, 'https://ror.org/016gnej37 Sociedade Portuguesa de Pneumologia'),
(106302, 'https://ror.org/04bg2jm34', 'pt', 1, 'https://ror.org/04bg2jm34 Unidade de Arqueologia'),
(106303, 'https://ror.org/03q0y5n22', 'pt', 1, 'https://ror.org/03q0y5n22 Sociedade Portuguesa de Anestesiologia'),
(106304, 'https://ror.org/03865xp31', 'pt', 1, 'https://ror.org/03865xp31 Biblioteca Francisco Pereira de Moura'),
(106305, 'https://ror.org/05cxawq11', 'pl', 1, 'https://ror.org/05cxawq11 School of Management and Banking in Cracow Wyższa Szkoła Zarządzania i Bankowości w Krakowie'),
(106306, 'https://ror.org/01zy07c70', 'de', 1, 'https://ror.org/01zy07c70 National Center for Tumor Diseases Partner Site Dresden Nationales Centrum für Tumorerkrankungen Dresden'),
(106307, 'https://ror.org/013wpy744', 'en', 1, 'https://ror.org/013wpy744 Network of Micro- and Nano-Fabrication Research Facilities in Portugal'),
(106308, 'https://ror.org/02fpe6x37', 'fr', 1, 'https://ror.org/02fpe6x37 Plateforme d''Analyses et de CaractƩrisations Chimie Balard'),
(106309, 'https://ror.org/03bqvm492', 'en', 1, 'https://ror.org/03bqvm492 SciKA-Association for Promotion and Dissemination of Scientific Knowledge'),
(106310, 'https://ror.org/00t10t971', 'es', 1, 'https://ror.org/00t10t971 Instituto Multidisciplinario para la Investigación y el Desarrollo Productivo y Social de la Cuenca del Golfo San Jorge'),
(106311, 'https://ror.org/05q1k5n27', 'no_lang_code', 1, 'https://ror.org/05q1k5n27 Omniservices Representations and Services OmniserviƧos RepresentaƧƵes e ServiƧos (Portugal)'),
(106312, 'https://ror.org/03jxqgs95', 'pt', 1, 'https://ror.org/03jxqgs95 Sociedade Portuguesa da CiĆŖncia do Solo'),
(106313, 'https://ror.org/00rehag55', 'pt', 1, 'https://ror.org/00rehag55 Academia de MĆŗsica de Lisboa'),
(106314, 'https://ror.org/0300ckk74', 'pt', 1, 'https://ror.org/0300ckk74 Sociedade Portuguesa de Arte-Terapia'),
(106315, 'https://ror.org/0484kce93', 'no_lang_code', 1, 'https://ror.org/0484kce93 R&D Nester R&D Nester (Portugal)'),
(106316, 'https://ror.org/05t8y2r12', 'en', 1, 'https://ror.org/05t8y2r12 Soochow University č‹å·žå¤§å­¦'),
(106317, 'https://ror.org/01qat3289', 'no_lang_code', 1, 'https://ror.org/01qat3289 Eli Lilly (United States)'),
(106318, 'https://ror.org/01erw1k48', 'pt', 1, 'https://ror.org/01erw1k48 Sociedade Portuguesa das DoenƧas do Movimento'),
(106319, 'https://ror.org/04ebesy71', 'en', 1, 'https://ror.org/04ebesy71 Osh State Pedagogical University named after A. Myrsabekov'),
(106320, 'https://ror.org/040ksm610', 'pt', 1, 'https://ror.org/040ksm610 Sociedade da LĆ­ngua Portuguesa'),
(106321, 'https://ror.org/03cppt751', 'en', 1, 'https://ror.org/03cppt751 Stanbridge University'),
(106322, 'https://ror.org/03k07te79', 'pt', 1, 'https://ror.org/03k07te79 Santa Casa da Misericórdia de Anadia'),
(106323, 'https://ror.org/03h3fdc41', 'en', 1, 'https://ror.org/03h3fdc41 Collaborative Innovation Center of Suzhou Nano Science and Technology č‹å·žēŗ³ē±³ē§‘ęŠ€ååŒåˆ›ę–°äø­åæƒ'),
(106324, 'https://ror.org/01bd2b489', 'pt', 1, 'https://ror.org/01bd2b489 Unidade de Ensino e Investigação em Saúde Pública Global'),
(106325, 'https://ror.org/04hf92r68', 'no_lang_code', 1, 'https://ror.org/04hf92r68 Valmet (Portugal)'),
(106326, 'https://ror.org/01v5dbc85', 'en', 1, 'https://ror.org/01v5dbc85 National Institute for Nigerian Languages'),
(106327, 'https://ror.org/02ksxxs60', 'pt', 1, 'https://ror.org/02ksxxs60 Centro de Literatura Portuguesa'),
(106328, 'https://ror.org/05qnjvk36', 'pt', 1, 'https://ror.org/05qnjvk36 Sociedade Portuguesa de CiĆŖncias FarmacĆŖuticas'),
(106329, 'https://ror.org/0288c3494', 'es', 1, 'https://ror.org/0288c3494 Instituto de GeografĆ­a, Historia y Ciencias Sociales'),
(106330, 'https://ror.org/03kn0h537', 'pt', 1, 'https://ror.org/03kn0h537 Sociedade Ibero-Americana para o Desenvolvimento das Biorrefinarias'),
(106331, 'https://ror.org/00zec6w20', 'no_lang_code', 1, 'https://ror.org/00zec6w20 Secil Companhia Geral de Cal e Cimento (Portugal) Secil Companhia Geral de Cal e Cimento, S.A.'),
(106332, 'https://ror.org/01q9hny69', 'it', 1, 'https://ror.org/01q9hny69 Maremma Natural History Museum Museo di Storia Naturale della Maremma'),
(106333, 'https://ror.org/051fzrb60', 'pt', 1, 'https://ror.org/051fzrb60 Centro de MatemƔtica Computacional e EstocƔstica'),
(106334, 'https://ror.org/05jcmg235', 'pt', 1, 'https://ror.org/05jcmg235 Sociedade Portuguesa do Acidente Vascular Cerebral'),
(106335, 'https://ror.org/00k52t116', 'pt', 1, 'https://ror.org/00k52t116 Direcção-Geral do Emprego e das Relações de Trabalho'),
(106336, 'https://ror.org/05p0gmm10', 'pt', 1, 'https://ror.org/05p0gmm10 Sociedade Portuguesa de FĆ­sica'),
(106337, 'https://ror.org/02q06yt34', 'no_lang_code', 1, 'https://ror.org/02q06yt34 Toxfinder (Portugal)'),
(106338, 'https://ror.org/040hzz705', 'fr', 1, 'https://ror.org/040hzz705 Atmo Normandie'),
(106339, 'https://ror.org/047rmns35', 'es', 1, 'https://ror.org/047rmns35 Hospital Santa Rosa'),
(106340, 'https://ror.org/02fnqta57', 'no_lang_code', 1, 'https://ror.org/02fnqta57 VTM Global VTM Global (Portugal)'),
(106341, 'https://ror.org/03wanmk11', 'en', 1, 'https://ror.org/03wanmk11 Messiah University'),
(106342, 'https://ror.org/048p7wk03', 'pt', 1, 'https://ror.org/048p7wk03 Casa do Professor'),
(106343, 'https://ror.org/05s5t4n42', 'pt', 1, 'https://ror.org/05s5t4n42 Centro de Investigação em Ciências Históricas'),
(106344, 'https://ror.org/046k90f22', 'pt', 1, 'https://ror.org/046k90f22 Sociedade Portuguesa de AcĆŗstica'),
(106345, 'https://ror.org/03egzhv07', 'pt', 1, 'https://ror.org/03egzhv07 Museu Municipal Amadeo de Souza-Cardoso'),
(106346, 'https://ror.org/05pqstf09', 'no_lang_code', 1, 'https://ror.org/05pqstf09 EDUGEP (Portugal) EDUGEP - Concepção Desenvolvimento e Gestão de Projectos de Natureza Educacional Social e Cultural'),
(106347, 'https://ror.org/04w8znj39', 'no_lang_code', 1, 'https://ror.org/04w8znj39 Cofina SGPS (Portugal) Cofina SGPS, S.A.'),
(106348, 'https://ror.org/00ss0c234', 'pt', 1, 'https://ror.org/00ss0c234 CĆ¢mara Municipal do Seixal'),
(106349, 'https://ror.org/00704c791', 'no_lang_code', 1, 'https://ror.org/00704c791 Sanofi (Portugal)'),
(106350, 'https://ror.org/057abda04', 'pt', 1, 'https://ror.org/057abda04 Ordem dos Enfermeiros'),
(106351, 'https://ror.org/04mrps332', 'pt', 1, 'https://ror.org/04mrps332 Sociedade Portuguesa de NeurociĆŖncias'),
(106352, 'https://ror.org/03872jq72', 'pt', 1, 'https://ror.org/03872jq72 AgĆŖncia de Desenvolvimento Regional do Alentejo'),
(106353, 'https://ror.org/049zrp193', 'pt', 1, 'https://ror.org/049zrp193 Governo dos AƧores'),
(106354, 'https://ror.org/00bfb4387', 'no_lang_code', 1, 'https://ror.org/00bfb4387 Megajoule Megajoule (Portugal)'),
(106355, 'https://ror.org/02er63282', 'pt', 1, 'https://ror.org/02er63282 Centro de LinguĆ­stica'),
(106356, 'https://ror.org/0422kfj84', 'pt', 1, 'https://ror.org/0422kfj84 Sociedade Portuguesa de Investigação em Música'),
(106357, 'https://ror.org/05ykkaq96', 'pt', 1, 'https://ror.org/05ykkaq96 Pavilhão do Conhecimento-Centro Ciência Viva'),
(106358, 'https://ror.org/03d66mt49', 'en', 1, 'https://ror.org/03d66mt49 West Midlands Open University'),
(106359, 'https://ror.org/04gmdfj30', 'no_lang_code', 1, 'https://ror.org/04gmdfj30 Biotronik (Germany)'),
(106360, 'https://ror.org/05e0gzh77', 'no_lang_code', 1, 'https://ror.org/05e0gzh77 Medac (Germany)'),
(106361, 'https://ror.org/001szvq52', 'en', 1, 'https://ror.org/001szvq52 Air Force Institute of Technology Kaduna'),
(106362, 'https://ror.org/03tq5ma70', 'pt', 1, 'https://ror.org/03tq5ma70 Biblioteca PĆŗblica e Arquivo Regional de Ponta Delgada'),
(106363, 'https://ror.org/040m3v743', 'pt', 1, 'https://ror.org/040m3v743 Centro de Investigação Transdisciplinar Cultura Espaço e Memória'),
(106364, 'https://ror.org/04hdhz511', 'no_lang_code', 1, 'https://ror.org/04hdhz511 Pierre Fabre (France)'),
(106365, 'https://ror.org/03yr4r733', 'pt', 1, 'https://ror.org/03yr4r733 Direção-Geral da Administração e do Emprego Público'),
(106366, 'https://ror.org/012q7x496', 'pt', 1, 'https://ror.org/012q7x496 Sociedade Portuguesa de GenƩtica Humana'),
(106367, 'https://ror.org/04q83ct73', 'no_lang_code', 1, 'https://ror.org/04q83ct73 Vieira de Almeida and Partners Vieira de Almeida e Associados Vieira de Almeida e Associados (Portugal)'),
(106368, 'https://ror.org/03bvw9g02', 'en', 1, 'https://ror.org/03bvw9g02 Laboratório Nacional de Engenharia Civil National Laboratory for Civil Engineering'),
(106369, 'https://ror.org/012cw1a31', 'fr', 1, 'https://ror.org/012cw1a31 UniversitƩ Virtuelle de CƓte d''Ivoire Virtual University of Cote d''Ivoire'),
(106370, 'https://ror.org/014bj2y47', 'en', 1, 'https://ror.org/014bj2y47 Schmidt Family Foundation'),
(106371, 'https://ror.org/03s05fs57', 'no_lang_code', 1, 'https://ror.org/03s05fs57 Empresa Portuguesa de Ɓguas Livres (Portugal) Empresa Portuguesa de Ɓguas Livres, S.A. Portuguese Company of Free Water'),
(106372, 'https://ror.org/052jffj50', 'no_lang_code', 1, 'https://ror.org/052jffj50 Lusodoc Documentação Técnico-Científica (Portugal) Lusodoc Technical-Scientific Documentation'),
(106373, 'https://ror.org/02bn55144', 'no_lang_code', 1, 'https://ror.org/02bn55144 Zimmer Biomet (United States)'),
(106374, 'https://ror.org/04e9egb11', 'no_lang_code', 1, 'https://ror.org/04e9egb11 Flex2000 Flex2000 (Portugal)'),
(106375, 'https://ror.org/03ac55d31', 'no_lang_code', 1, 'https://ror.org/03ac55d31 Stachema (Czechia)'),
(106376, 'https://ror.org/041h7hf54', 'pt', 1, 'https://ror.org/041h7hf54 Laboratório de Protecção e Segurança Radiológica'),
(106377, 'https://ror.org/02z52qx16', 'no_lang_code', 1, 'https://ror.org/02z52qx16 Dias de Sousa (Portugal) Dias de Sousa, S.A.'),
(106378, 'https://ror.org/04pa29242', 'pt', 1, 'https://ror.org/04pa29242 Biblioteca da Ajuda'),
(106379, 'https://ror.org/03tmk1b43', 'no_lang_code', 1, 'https://ror.org/03tmk1b43 Sinfic (Portugal) Sinfic, S.A.'),
(106380, 'https://ror.org/02g3k6d74', 'no_lang_code', 1, 'https://ror.org/02g3k6d74 Lima Implantes Portugal SU (Portugal)'),
(106381, 'https://ror.org/043kj1e77', 'no_lang_code', 1, 'https://ror.org/043kj1e77 Continental Engineering Services Portugal Continental Engineering Services Portugal (Portugal)'),
(106382, 'https://ror.org/05acs9g96', 'nl', 1, 'https://ror.org/05acs9g96 Karel de Grote Hogeschool KdG University of Applied Sciences and Arts'),
(106383, 'https://ror.org/03szq9n82', 'pt', 1, 'https://ror.org/03szq9n82 Turismo de Portugal'),
(106384, 'https://ror.org/04x02q560', 'en', 1, 'https://ror.org/04x02q560 Bochum University of Applied Sciences Hochschule Bochum'),
(106385, 'https://ror.org/002qcfp85', 'en', 1, 'https://ror.org/002qcfp85 Production and Archive of Social Science Data'),
(106386, 'https://ror.org/01x2k2x19', 'no_lang_code', 1, 'https://ror.org/01x2k2x19 Epicentre (South Africa)'),
(106387, 'https://ror.org/01ns4zj17', 'no_lang_code', 1, 'https://ror.org/01ns4zj17 Behavioral and Molecular Lab (Portugal)'),
(106388, 'https://ror.org/01mjhcq39', 'no_lang_code', 1, 'https://ror.org/01mjhcq39 Abreu Tours Viagens Abreu (Portugal) Viagens Abreu, S.A.'),
(106389, 'https://ror.org/02s5jrq73', 'no_lang_code', 1, 'https://ror.org/02s5jrq73 Alfasigma Portugal (Portugal)'),
(106390, 'https://ror.org/02693j602', 'fr', 1, 'https://ror.org/02693j602 Institut Regional du Cancer de Montpellier'),
(106391, 'https://ror.org/05jpvfw41', 'pt', 1, 'https://ror.org/05jpvfw41 TecMinho'),
(106392, 'https://ror.org/01mzwqv25', 'en', 1, 'https://ror.org/01mzwqv25 Portugal Football School'),
(106393, 'https://ror.org/04kt5vk53', 'en', 1, 'https://ror.org/04kt5vk53 Obninsk Institute for Nuclear Power Engineering ŠžŠ‘ŠŠ˜ŠŠ”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŠ¢ŠžŠœŠŠžŠ™ Š­ŠŠ•Š Š“Š•Š¢Š˜ŠšŠ˜'),
(106394, 'https://ror.org/05e1sg358', 'pt', 1, 'https://ror.org/05e1sg358 Sociedade Portuguesa de Angiologia e Cirurgia Vascular'),
(106395, 'https://ror.org/04bw6mb63', 'pt', 1, 'https://ror.org/04bw6mb63 Centro de Investigação em Marketing e AnÔlise de Dados'),
(106396, 'https://ror.org/03pymd732', 'no_lang_code', 1, 'https://ror.org/03pymd732 Linklaters LLP Lisbon Linklaters LLP Lisbon (Portugal)'),
(106397, 'https://ror.org/05qjwb041', 'en', 1, 'https://ror.org/05qjwb041 All India Institute of Medical Sciences Rishikesh अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‹ą¤·ą¤æą¤•ą„‡ą¤¶'),
(106398, 'https://ror.org/03en16648', 'no_lang_code', 1, 'https://ror.org/03en16648 Novo Nordisk (Portugal)'),
(106399, 'https://ror.org/029aap830', 'pt', 1, 'https://ror.org/029aap830 Escola Superior Aveiro Norte'),
(106400, 'https://ror.org/04wn6w972', 'de', 1, 'https://ror.org/04wn6w972 Förderverein Institut für Medizintechnik Dresden'),
(106401, 'https://ror.org/04gwbew76', 'en', 1, 'https://ror.org/04gwbew76 Ministry of Ecology and Environment äø­åŽäŗŗę°‘å…±å’Œå›½ēŽÆå¢ƒäæęŠ¤éƒØ'),
(106402, 'https://ror.org/045btyr58', 'pt', 1, 'https://ror.org/045btyr58 Sociedade de Ciências AgrÔrias de Portugal'),
(106403, 'https://ror.org/011ashp19', 'en', 1, 'https://ror.org/011ashp19 Sichuan University 四川大学'),
(106404, 'https://ror.org/03vba6259', 'fr', 1, 'https://ror.org/03vba6259 Centre Spatial de l''UniversitƩ de Montpellier Space center of the University of Montpellier'),
(106405, 'https://ror.org/02kf3wg72', 'pt', 1, 'https://ror.org/02kf3wg72 Eborae Mvsica'),
(106406, 'https://ror.org/0581acv95', 'pt', 1, 'https://ror.org/0581acv95 CĆ¢mara Municipal de Tavira'),
(106407, 'https://ror.org/03ag5sy22', 'pt', 1, 'https://ror.org/03ag5sy22 Sociedade Portuguesa de Biologia de Plantas'),
(106408, 'https://ror.org/04p8h4609', 'pt', 1, 'https://ror.org/04p8h4609 Arquivo Histórico Municipal do Porto'),
(106409, 'https://ror.org/001kbww44', 'pt', 1, 'https://ror.org/001kbww44 Museu Municipal Dr Santos Rocha'),
(106410, 'https://ror.org/0223rpe14', 'no_lang_code', 1, 'https://ror.org/0223rpe14 Bristol-Myers Squibb (Portugal) Bristol-Myers Squibb FarmacĆŖutica Portuguesa SA'),
(106411, 'https://ror.org/01wdfe214', 'pt', 1, 'https://ror.org/01wdfe214 AquaValor Centro de Valorização e Transferência de Tecnologia da Água'),
(106412, 'https://ror.org/0286p1c86', 'en', 1, 'https://ror.org/0286p1c86 Cancer Center Amsterdam'),
(106413, 'https://ror.org/00vvm7f23', 'pt', 1, 'https://ror.org/00vvm7f23 Universidade Norte do ParanĆ”'),
(106414, 'https://ror.org/05rsfvf53', 'en', 1, 'https://ror.org/05rsfvf53 Forward College'),
(106415, 'https://ror.org/04fbr3m90', 'en', 1, 'https://ror.org/04fbr3m90 Allectra GmbH Allectra Limited Allectra Limited (Germany)'),
(106416, 'https://ror.org/01qfx2848', 'no_lang_code', 1, 'https://ror.org/01qfx2848 Multinfor Equipamento e Manutenção Hospitalar (Portugal) Multinfor Hospital Equipment and Maintenance'),
(106417, 'https://ror.org/05hkenk96', 'pt', 1, 'https://ror.org/05hkenk96 Unidade de Investigação e Desenvolvimento Cardiovascular'),
(106418, 'https://ror.org/00nd16e30', 'en', 1, 'https://ror.org/00nd16e30 Emirates Academy for Identity and Citizenship Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© الامارات Ł„Ł„Ł‡ŁˆŁŠŲ© ŁˆŲ§Ł„Ų¬Ł†Ų³ŁŠŲ©'),
(106419, 'https://ror.org/04z60tq39', 'tr', 1, 'https://ror.org/04z60tq39 Bezmialem Vakıf University Bezmiâlem Vakıf Üniversitesi'),
(106420, 'https://ror.org/031aa3p22', 'pt', 1, 'https://ror.org/031aa3p22 Sociedade Portuguesa de NumismƔtica'),
(106421, 'https://ror.org/00bm5dk29', 'en', 1, 'https://ror.org/00bm5dk29 The Millennium Project'),
(106422, 'https://ror.org/0307jk798', 'pt', 1, 'https://ror.org/0307jk798 Ballet Teatro Contemporâneo do Porto'),
(106423, 'https://ror.org/008qs6838', 'fr', 1, 'https://ror.org/008qs6838 Molecular Mechanisms in Neurodegenerative Diseases MƩcanismes molƩculaires dans les dƩmences neurodƩgƩnƩratives'),
(106424, 'https://ror.org/03ahhd635', 'en', 1, 'https://ror.org/03ahhd635 Facility for Antiproton and Ion Research (FAIR) – participation of the Czech Republic Laboratoř pro výzkum s antiprotony a těžkými ionty (FAIR) – ĆŗÄast ČR'),
(106425, 'https://ror.org/00s1b0733', 'es', 1, 'https://ror.org/00s1b0733 Institución Universitaria Pascual Bravo'),
(106426, 'https://ror.org/05e15a779', 'en', 1, 'https://ror.org/05e15a779 AIIMS Jodhpur All India Institute of Medical Sciences Jodhpur अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤œą„‹ą¤§ą¤Ŗą„ą¤°'),
(106427, 'https://ror.org/051dasd51', 'en', 1, 'https://ror.org/051dasd51 Oliva Creative Factory'),
(106428, 'https://ror.org/03j6cgd89', 'pt', 1, 'https://ror.org/03j6cgd89 Biblioteca de Arte Gulbenkian'),
(106429, 'https://ror.org/00td9be07', 'no_lang_code', 1, 'https://ror.org/00td9be07 Wipro (Portugal)'),
(106430, 'https://ror.org/00b3bdc03', 'pt', 1, 'https://ror.org/00b3bdc03 CETERA'),
(106431, 'https://ror.org/04790ar32', 'it', 1, 'https://ror.org/04790ar32 Lamezia Terme Hospital Presidio Ospedaliero Lamezia Terme'),
(106432, 'https://ror.org/01nhjym26', 'pt', 1, 'https://ror.org/01nhjym26 Sociedade Portuguesa de ElectroquĆ­mica'),
(106433, 'https://ror.org/048xj2376', 'pt', 1, 'https://ror.org/048xj2376 Academia de LĆ­nguas da Madeira'),
(106434, 'https://ror.org/04rsfzy06', 'no_lang_code', 1, 'https://ror.org/04rsfzy06 ISQe (Portugal) ISQe, S.A.'),
(106435, 'https://ror.org/00j29pk38', 'fr', 0, 'https://ror.org/00j29pk38 Centre Européen de Résonance Magnétique Nucléaire A Très Hauts Champs The European Center for High Field NMR'),
(106436, 'https://ror.org/0039e5h59', 'pt', 1, 'https://ror.org/0039e5h59 Cooperativa de Formação e Animação Cultural CRL'),
(106437, 'https://ror.org/00skrkx16', 'no_lang_code', 1, 'https://ror.org/00skrkx16 TMG Group TMG Group (Portugal)'),
(106438, 'https://ror.org/00hgbrg14', 'fr', 1, 'https://ror.org/00hgbrg14 French Network on Material Under high Strain Rate. Applications to Material Under Extreme Conditions, Processes and Structures Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures'),
(106439, 'https://ror.org/05jna1677', 'es', 1, 'https://ror.org/05jna1677 ClĆ­nica privada de Ojos Dr. Enrique Alza Dr. Enrique Alza Private Eye Clinic'),
(106440, 'https://ror.org/00xdvw685', 'de', 1, 'https://ror.org/00xdvw685 Hochschule 21'),
(106441, 'https://ror.org/00jt9rc96', 'pt', 1, 'https://ror.org/00jt9rc96 Associação Rede de Competência em Polímeros'),
(106442, 'https://ror.org/02fvxw605', 'no_lang_code', 1, 'https://ror.org/02fvxw605 WINNING Scientific Management (Portugal)'),
(106443, 'https://ror.org/01588c811', 'no_lang_code', 1, 'https://ror.org/01588c811 Companhia Industrial de Resinas SintƩticas (Portugal) Industrial Company of Synthetic Resins'),
(106444, 'https://ror.org/004s7zp13', 'pt', 1, 'https://ror.org/004s7zp13 Biblioteca Municipal de Santa Maria da Feira'),
(106445, 'https://ror.org/02p5f6d43', 'pt', 1, 'https://ror.org/02p5f6d43 AMEC Metropolitana'),
(106446, 'https://ror.org/02vxrsd04', 'no_lang_code', 1, 'https://ror.org/02vxrsd04 Bluepharm Bluepharma (Portugal)'),
(106447, 'https://ror.org/033fmp855', 'pt', 1, 'https://ror.org/033fmp855 Centro de História'),
(106448, 'https://ror.org/03m9a6y90', 'en', 1, 'https://ror.org/03m9a6y90 CAEP Software Center for High Performance Numerical Simulation äø­ę— é™¢é«˜ę€§čƒ½ę•°å€¼ęØ”ę‹Ÿč½Æä»¶äø­åæƒ'),
(106449, 'https://ror.org/0201axf80', 'pt', 1, 'https://ror.org/0201axf80 AlmaScience'),
(106450, 'https://ror.org/018j01b27', 'pt', 1, 'https://ror.org/018j01b27 Centro de Formação de Associação de Escolas Braga/Sul'),
(106451, 'https://ror.org/04e5cqn96', 'pt', 1, 'https://ror.org/04e5cqn96 Riscos e Sustentabilidade na Construção'),
(106452, 'https://ror.org/040at6s67', 'pt', 1, 'https://ror.org/040at6s67 Centro de Investigação em Química'),
(106453, 'https://ror.org/04c65ax22', 'pt', 1, 'https://ror.org/04c65ax22 Centro Ciência Viva de Bragança'),
(106454, 'https://ror.org/01jjfyf53', 'pt', 1, 'https://ror.org/01jjfyf53 Fundacao de Computacao Cientifica Nacional'),
(106455, 'https://ror.org/0170cre53', 'pt', 1, 'https://ror.org/0170cre53 Teatro AcadƩmico de Gil Vicente'),
(106456, 'https://ror.org/018wkw265', 'pt', 1, 'https://ror.org/018wkw265 Centro de Engenharia Mecânica e Sustentabilidade de Recursos'),
(106457, 'https://ror.org/04ggnw234', 'pt', 1, 'https://ror.org/04ggnw234 LabComIFP - Comunicação Filosofia e Humanidades LabComIFP'),
(106458, 'https://ror.org/03qrb1j36', 'en', 1, 'https://ror.org/03qrb1j36 NSF NCAR Climate and Global Dynamics Laboratory'),
(106459, 'https://ror.org/01gn0k096', 'pt', 1, 'https://ror.org/01gn0k096 Academia Portuguesa da História'),
(106460, 'https://ror.org/04wpw8x71', 'pt', 1, 'https://ror.org/04wpw8x71 Sociedade de Ɖtica Ambiental'),
(106461, 'https://ror.org/053ytd308', 'pt', 1, 'https://ror.org/053ytd308 Serviço de Documentação e Bibliotecas'),
(106462, 'https://ror.org/008t8t864', 'pt', 1, 'https://ror.org/008t8t864 SaĆŗde Global e Medicina Tropical'),
(106463, 'https://ror.org/0407mvh49', 'pt', 1, 'https://ror.org/0407mvh49 Associação Portuguesa de Estudos sobre as Mulheres'),
(106464, 'https://ror.org/008tk1j70', 'es', 1, 'https://ror.org/008tk1j70 Fundación Jardín BotÔnico Nacional de Viña del Mar Jardín BotÔnico Nacional de Viña del Mar'),
(106465, 'https://ror.org/007khra81', 'no_lang_code', 1, 'https://ror.org/007khra81 Eurocasmedica Eurocasmedica - Produtos Hospitalares (Portugal) Eurocasmedica - Produtos Hospitalares, S.A.'),
(106466, 'https://ror.org/03n9zbw76', 'no_lang_code', 1, 'https://ror.org/03n9zbw76 Abbott (Portugal)'),
(106467, 'https://ror.org/033dtky70', 'en', 1, 'https://ror.org/033dtky70 All India Institute of Medical Sciences, Kalyani অখিল ভারতীয় ą¦†ą¦Æą¦¼ą§ą¦°ą§ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦øą¦‚ą¦øą§ą¦„ą¦¾ą¦Ø, ą¦•ą¦²ą§ą¦Æą¦¾ą¦£ą§€'),
(106468, 'https://ror.org/04f9q6692', 'pt', 1, 'https://ror.org/04f9q6692 Centro de Estudos de História Religiosa'),
(106469, 'https://ror.org/00e7sae22', 'en', 1, 'https://ror.org/00e7sae22 European Spallation Source – participation of the Czech Republic Evropský spalačnĆ­ zdroj Evropský spalačnĆ­ zdroj – ĆŗÄast ČR'),
(106470, 'https://ror.org/02y798n84', 'en', 1, 'https://ror.org/02y798n84 Institute for Modeling Plasma, Atmospheres and Cosmic Dust'),
(106471, 'https://ror.org/050j5t898', 'pt', 1, 'https://ror.org/050j5t898 Republica Portuguesa Direção-Geral do Livro dos Arquivos e das Bibliotecas'),
(106472, 'https://ror.org/008jpeg44', 'pt', 1, 'https://ror.org/008jpeg44 Ordem dos Médicos Secção Regional do Sul'),
(106473, 'https://ror.org/0198h7w65', 'no_lang_code', 1, 'https://ror.org/0198h7w65 Areal Editores (Portugal) Areal Editores, S.A. Areal Publishers'),
(106474, 'https://ror.org/04dg1fw36', 'en', 1, 'https://ror.org/04dg1fw36 Católica Global School of Law'),
(106475, 'https://ror.org/050mzen17', 'no_lang_code', 1, 'https://ror.org/050mzen17 Manitoba Portugal'),
(106476, 'https://ror.org/01kb0b173', 'pt', 1, 'https://ror.org/01kb0b173 Rede Portuguesa de Monitorização Costeira'),
(106477, 'https://ror.org/01qqh8f81', 'pt', 1, 'https://ror.org/01qqh8f81 Observatório de Ciberjornalismo'),
(106478, 'https://ror.org/004y9ds29', 'pt', 1, 'https://ror.org/004y9ds29 Sociedade Portuguesa de Biotecnologia'),
(106479, 'https://ror.org/015x0as60', 'pt', 1, 'https://ror.org/015x0as60 Escola de Música São Teotónio'),
(106480, 'https://ror.org/01wh89t26', 'pt', 1, 'https://ror.org/01wh89t26 Centro Criatividade Digital'),
(106481, 'https://ror.org/04v27rh38', 'es', 1, 'https://ror.org/04v27rh38 Asociación para la Conservación y el Desarrollo Sostenible Sallqa Perú'),
(106482, 'https://ror.org/00daq2f30', 'pt', 1, 'https://ror.org/00daq2f30 Centro de Estudos em Património Paisagem e Construção'),
(106483, 'https://ror.org/00bpqvp39', 'pt', 1, 'https://ror.org/00bpqvp39 Sociedade Portuguesa de Biologia do Desenvolvimento'),
(106484, 'https://ror.org/03mcd3h93', 'no_lang_code', 1, 'https://ror.org/03mcd3h93 CSL Behring (Portugal)'),
(106485, 'https://ror.org/051307376', 'pt', 1, 'https://ror.org/051307376 Sociedade Portuguesa de Recursos GenƩticos Animais'),
(106486, 'https://ror.org/058dvej55', 'pt', 1, 'https://ror.org/058dvej55 Centro de MatemƔtica e AplicaƧƵes');
INSERT INTO `rors` VALUES
(106487, 'https://ror.org/02eqqc684', 'pt', 1, 'https://ror.org/02eqqc684 Centro Social Paroquial São Romão de Carnaxide'),
(106488, 'https://ror.org/02kmtwp90', 'en', 1, 'https://ror.org/02kmtwp90 Government of Portugal Governo de Portugal'),
(106489, 'https://ror.org/01p9s2d84', 'es', 1, 'https://ror.org/01p9s2d84 Instituto Superior Tecnológico ITCA'),
(106490, 'https://ror.org/03yvmh624', 'no_lang_code', 1, 'https://ror.org/03yvmh624 Angelini Pharma (Portugal)'),
(106491, 'https://ror.org/02rnb8t27', 'nl', 1, 'https://ror.org/02rnb8t27 Katholieke Hogeschool Vives VIVES University of Applied Sciences'),
(106492, 'https://ror.org/03hm05b86', 'pt', 1, 'https://ror.org/03hm05b86 Museu do Abade de BaƧal'),
(106493, 'https://ror.org/02sy57p23', 'pt', 1, 'https://ror.org/02sy57p23 CĆ¢mara Municipal de Viana do Castelo'),
(106494, 'https://ror.org/03jhtdw16', 'no_lang_code', 1, 'https://ror.org/03jhtdw16 Yabulu YƤbulu YƤbulu (Portugal)'),
(106495, 'https://ror.org/05qqw4p44', 'pt', 1, 'https://ror.org/05qqw4p44 Interdisciplinary Center for Children and Adolescents Núcleo Interdisciplinar da Criança e do Adolescente'),
(106496, 'https://ror.org/05y9nn961', 'en', 1, 'https://ror.org/05y9nn961 EVICR Network'),
(106497, 'https://ror.org/001ccf545', 'no_lang_code', 1, 'https://ror.org/001ccf545 Wipro (India)'),
(106498, 'https://ror.org/00mtfsb62', 'pt', 1, 'https://ror.org/00mtfsb62 c5Lab'),
(106499, 'https://ror.org/03bt7ej51', 'pt', 1, 'https://ror.org/03bt7ej51 Centro de Investigacao em Direito Europeu Economico Financeiro e Fiscal'),
(106500, 'https://ror.org/024bsvr29', 'no_lang_code', 1, 'https://ror.org/024bsvr29 Mundiconvenius Mundiconvenius (Portugal)'),
(106501, 'https://ror.org/01kdnp479', 'en', 1, 'https://ror.org/01kdnp479 Shaoxing Shangyu Women and Children Hospital ē»å…“åø‚äøŠč™žå¦‡å¹¼äæå„é™¢'),
(106502, 'https://ror.org/019zcmj26', 'en', 1, 'https://ror.org/019zcmj26 Department of Medical Sciences'),
(106503, 'https://ror.org/001cp5661', 'pt', 1, 'https://ror.org/001cp5661 Centro de Investigação em Estruturas e Construção'),
(106504, 'https://ror.org/056274550', 'pt', 1, 'https://ror.org/056274550 Enercoutim - Associação Empresarial de Energia Solar de Alcoutim Enercoutim'),
(106505, 'https://ror.org/042nafx13', 'pt', 1, 'https://ror.org/042nafx13 ProvĆ­ncia Portuguesa da Companhia de Jesus'),
(106506, 'https://ror.org/046dyvq82', 'pt', 1, 'https://ror.org/046dyvq82 Comissao de Coordenacao e Desenvolvimento Regional do Norte'),
(106507, 'https://ror.org/04pcv1x85', 'pt', 1, 'https://ror.org/04pcv1x85 Entidade Reguladora da SaĆŗde'),
(106508, 'https://ror.org/01ptp4v90', 'pt', 1, 'https://ror.org/01ptp4v90 Secretaria Regional de Agricultura e Pescas'),
(106509, 'https://ror.org/0528pfx89', 'pt', 1, 'https://ror.org/0528pfx89 Unidade de Investigação Educação e Desenvolvimento'),
(106510, 'https://ror.org/03cemkr79', 'pt', 1, 'https://ror.org/03cemkr79 Instituto de Cultura e LĆ­ngua Portuguesa'),
(106511, 'https://ror.org/00kf8z465', 'no_lang_code', 1, 'https://ror.org/00kf8z465 AdvanceCare Gestão em Saúde (Portugal) AdvanceCare Gestão em Saúde, S.A. AdvanceCare Healthcare'),
(106512, 'https://ror.org/002krky39', 'no_lang_code', 1, 'https://ror.org/002krky39 Consulmark 2 Estudos de Mercado e Trabalho de Campo (Portugal) Consulmark Market and Field Studies'),
(106513, 'https://ror.org/00gdv3j64', 'pt', 1, 'https://ror.org/00gdv3j64 Centro CiĆŖncia Viva de Lagos'),
(106514, 'https://ror.org/05wqert96', 'pt', 1, 'https://ror.org/05wqert96 Arquivo Nacional da Torre do Tombo'),
(106515, 'https://ror.org/01gwfgg30', 'en', 1, 'https://ror.org/01gwfgg30 SFCOLAB - Smart Farm Collaborative Laboratory'),
(106516, 'https://ror.org/04z5e6e52', 'pt', 1, 'https://ror.org/04z5e6e52 S. ENERGIA – AgĆŖncia Regional de Energia para os Concelhos do Barreiro, Moita e Montijo'),
(106517, 'https://ror.org/014d1kb73', 'no_lang_code', 1, 'https://ror.org/014d1kb73 Radosys Atlantic (Portugal)'),
(106518, 'https://ror.org/02zndhd13', 'pt', 1, 'https://ror.org/02zndhd13 Santa Casa da Misericórdia de Serpa'),
(106519, 'https://ror.org/03syjba97', 'pt', 1, 'https://ror.org/03syjba97 Autoridade de Gestão do Programa Operacional Competitividade e Internacionalização'),
(106520, 'https://ror.org/05xtthp47', 'pt', 1, 'https://ror.org/05xtthp47 Parques de Sintra Monte da Lua SA'),
(106521, 'https://ror.org/00bnpn789', 'en', 1, 'https://ror.org/00bnpn789 Publishing House ā€œAkademperiodykaā€ of the National Academy of Sciences of Ukraine ВиГавничий Гім «АкаГемперіоГика» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(106522, 'https://ror.org/05djn7t12', 'en', 1, 'https://ror.org/05djn7t12 Toxicology Excellence for Risk Assessment'),
(106523, 'https://ror.org/04z7k2h16', 'pt', 1, 'https://ror.org/04z7k2h16 Açores Direção Regional da Educação'),
(106524, 'https://ror.org/008efyp87', 'no_lang_code', 1, 'https://ror.org/008efyp87 Public Social Communication Público Comunicação Social (Portugal) Público Comunicação Social, S.A.'),
(106525, 'https://ror.org/045kd8221', 'en', 1, 'https://ror.org/045kd8221 Federal Polytechnic Ugep'),
(106526, 'https://ror.org/038vftk36', 'pt', 1, 'https://ror.org/038vftk36 Nonagon - Parque de CiĆŖncia e Tecnologia de SĆ£o Miguel'),
(106527, 'https://ror.org/00y9q1296', 'pt', 1, 'https://ror.org/00y9q1296 Centro CiĆŖncia Viva de Tavira'),
(106528, 'https://ror.org/012mhj061', 'no_lang_code', 1, 'https://ror.org/012mhj061 Alcon Portugal Produtos e Equipamentos Oftalmológicos (Portugal)'),
(106529, 'https://ror.org/01d5r9432', 'no_lang_code', 1, 'https://ror.org/01d5r9432 I-Sensis Perfume Design (Portugal)'),
(106530, 'https://ror.org/01dj9qb53', 'en', 1, 'https://ror.org/01dj9qb53 TransDeN Lab'),
(106531, 'https://ror.org/05q49dx47', 'pt', 1, 'https://ror.org/05q49dx47 Centro Interdisciplinar de Estudos de GƩnero'),
(106532, 'https://ror.org/01j0djm57', 'no_lang_code', 1, 'https://ror.org/01j0djm57 Gades Training (Portugal)'),
(106533, 'https://ror.org/025ja7931', 'en', 1, 'https://ror.org/025ja7931 Margaret Lawrence University'),
(106534, 'https://ror.org/03kqpb082', 'en', 1, 'https://ror.org/03kqpb082 Czech Technical University in Prague ČeskĆ© vysokĆ© učenĆ­ technickĆ© v Praze'),
(106535, 'https://ror.org/03gbgw380', 'fr', 1, 'https://ror.org/03gbgw380 Institut de Science des DonnƩes de Montpellier'),
(106536, 'https://ror.org/01ryhrp48', 'no_lang_code', 1, 'https://ror.org/01ryhrp48 Jorge Evandro Alves Unip (Portugal)'),
(106537, 'https://ror.org/049k6es50', 'no_lang_code', 1, 'https://ror.org/049k6es50 REABE Benfica Rehabilitation Centre REABE Centro de Reabilitação de Benfica (Portugal)'),
(106538, 'https://ror.org/05sj3cj25', 'no_lang_code', 1, 'https://ror.org/05sj3cj25 SPEMD Eventos CientĆ­ficos e Culturais (Portugal) SPEMD Scientific and Cultural Events'),
(106539, 'https://ror.org/0265f3m16', 'pt', 1, 'https://ror.org/0265f3m16 Centro de Investigação em Saúde Pública'),
(106540, 'https://ror.org/03d1gxm29', 'pt', 1, 'https://ror.org/03d1gxm29 Comissão de Coordenação e Desenvolvimento Regional do Centro'),
(106541, 'https://ror.org/00msrw429', 'pt', 1, 'https://ror.org/00msrw429 Ribadial Clƭnica de DiƔlise de SantarƩm (Portugal) Ribadial Clƭnica de DiƔlise de SantarƩm Lda'),
(106542, 'https://ror.org/02sbvqb41', 'en', 1, 'https://ror.org/02sbvqb41 Revvity Revvity (United States) Revvity, Inc.'),
(106543, 'https://ror.org/02y3qvw23', 'en', 1, 'https://ror.org/02y3qvw23 Sudden Cardiac Arrest UK'),
(106544, 'https://ror.org/01spe0w42', 'pt', 1, 'https://ror.org/01spe0w42 Laboratório de Ɠptica Lasers e Sistemas'),
(106545, 'https://ror.org/015790680', 'en', 1, 'https://ror.org/015790680 Federation of Orthopaedic Trainees in Europe'),
(106546, 'https://ror.org/028j67555', 'pt', 1, 'https://ror.org/028j67555 Centro de Ciências e Tecnologias da Engenharia Mecânica e Aeroespacial'),
(106547, 'https://ror.org/00d28yw77', 'pt', 1, 'https://ror.org/00d28yw77 ATEVA - Associação Técnica dos Viticultores do Alentejo Associação Técnica dos Viticultores do Alentejo'),
(106548, 'https://ror.org/05g3svt72', 'pt', 1, 'https://ror.org/05g3svt72 Centro da Ciências e Tecnologias Mecânicas e Aeroespaciais'),
(106549, 'https://ror.org/030bj1s48', 'pt', 1, 'https://ror.org/030bj1s48 Arquivo Municipal de Lisboa'),
(106550, 'https://ror.org/052g2se33', 'en', 1, 'https://ror.org/052g2se33 Mongolian National Institute for Educational Research Š‘ŠžŠ»Š¾Š²ŃŃ€Š¾Š»Ń‹Š½ Š”ŃƒŠ“Š°Š»Š³Š°Š°Š½Ń‹ Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Š„ŅÆŃ€ŃŃŠ»ŃŠ½'),
(106551, 'https://ror.org/010g6wv40', 'pt', 1, 'https://ror.org/010g6wv40 Ordem dos MƩdicos Dentistas'),
(106552, 'https://ror.org/04w5vxn39', 'pt', 1, 'https://ror.org/04w5vxn39 Parque Tecnológico de Ɠbidos'),
(106553, 'https://ror.org/00cxt9737', 'pt', 1, 'https://ror.org/00cxt9737 Laboratório Nacional de Investigação VeterinÔria'),
(106554, 'https://ror.org/018jp3h36', 'pt', 1, 'https://ror.org/018jp3h36 CiĆŖncia Viva'),
(106555, 'https://ror.org/03pypm027', 'en', 1, 'https://ror.org/03pypm027 Kishoreganj University ą¦•ą¦æą¦¶ą§‹ą¦°ą¦—ą¦žą§ą¦œ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(106556, 'https://ror.org/020wxam75', 'pt', 1, 'https://ror.org/020wxam75 Unidade de Investigação Vidro e Cerâmica para as Artes'),
(106557, 'https://ror.org/045yqyw06', 'pt', 1, 'https://ror.org/045yqyw06 Centro de MatemƔtica'),
(106558, 'https://ror.org/00xmk8w24', 'pt', 1, 'https://ror.org/00xmk8w24 Instituto de Filosofia'),
(106559, 'https://ror.org/031xaae12', 'pt', 1, 'https://ror.org/031xaae12 Unidade Local de SaĆŗde Santa Maria'),
(106560, 'https://ror.org/017axx893', 'pt', 1, 'https://ror.org/017axx893 Biblioteca do Conhecimento Online'),
(106561, 'https://ror.org/04k0x5034', 'no_lang_code', 1, 'https://ror.org/04k0x5034 Startup Madeira More Than Ideas (Portugal)'),
(106562, 'https://ror.org/03b45mr48', 'en', 0, 'https://ror.org/03b45mr48 Central Clinical Hospital Centralny Szpital Kliniczny Ministerstwa Spraw Wewnętrznych'),
(106563, 'https://ror.org/009qdm547', 'pt', 1, 'https://ror.org/009qdm547 LaserLab Portugal'),
(106564, 'https://ror.org/03z899093', 'pt', 1, 'https://ror.org/03z899093 Centro de Investigação em Sistemas Electromecatrónicos'),
(106565, 'https://ror.org/04y6n3q27', 'en', 1, 'https://ror.org/04y6n3q27 Institute for High Energy Physics'),
(106566, 'https://ror.org/02kwxh770', 'pt', 1, 'https://ror.org/02kwxh770 PresidĆŖncia da RepĆŗblica Portuguesa'),
(106567, 'https://ror.org/01gm4bw78', 'no_lang_code', 1, 'https://ror.org/01gm4bw78 Riasearch Riasearch (Portugal)'),
(106568, 'https://ror.org/015w8p155', 'pt', 1, 'https://ror.org/015w8p155 Sociedade Portuguesa de Cefaleias'),
(106569, 'https://ror.org/05416tz41', 'pt', 1, 'https://ror.org/05416tz41 Republica Portuguesa Direção-Geral do Património Cultural'),
(106570, 'https://ror.org/03zx3qn16', 'pt', 1, 'https://ror.org/03zx3qn16 Laboratório da Cor'),
(106571, 'https://ror.org/057h3j743', 'no_lang_code', 1, 'https://ror.org/057h3j743 OMNI Aviation and Technology Omni – Aviação e Tecnologia Omni – Aviação e Tecnologia (Portugal)'),
(106572, 'https://ror.org/03g600928', 'pt', 1, 'https://ror.org/03g600928 Agência para a Competitividade e Inovação IP'),
(106573, 'https://ror.org/01xw0b717', 'pt', 1, 'https://ror.org/01xw0b717 Modatex Centro de Formação Profissional da Indústria Têxtil VestuÔrio Confecção e Lanifícios'),
(106574, 'https://ror.org/03brtw716', 'pt', 1, 'https://ror.org/03brtw716 Sociedade Portuguesa de Cerâmica e Vidro'),
(106575, 'https://ror.org/0403hq463', 'en', 1, 'https://ror.org/0403hq463 CMMI – Cyprus Marine & Maritime Institute CMMI – Cyprus Marine & Maritime Institute (Cyprus)'),
(106576, 'https://ror.org/02mwqj658', 'no_lang_code', 1, 'https://ror.org/02mwqj658 Associação Centro de Medicina P5 Associação Centro de Medicina P5 (Portugal) P5 Medical Centre'),
(106577, 'https://ror.org/05fmbse12', 'no_lang_code', 1, 'https://ror.org/05fmbse12 Euromedice Medical Publishing EuromƩdice EdiƧƵes MƩdicas (Portugal)'),
(106578, 'https://ror.org/041dm9873', 'en', 1, 'https://ror.org/041dm9873 The Assam Royal Global University'),
(106579, 'https://ror.org/01zvj7w48', 'no_lang_code', 1, 'https://ror.org/01zvj7w48 Bonera Group Bonera Group (Portugal)'),
(106580, 'https://ror.org/02zwvpt29', 'en', 1, 'https://ror.org/02zwvpt29 International Research Association of Feed Technology Internationale Forschungsgemeinschaft Futtermitteltechnik Internationale Forschungsgemeinschaft Futtermitteltechnik e.V.'),
(106581, 'https://ror.org/0531xjy14', 'no_lang_code', 1, 'https://ror.org/0531xjy14 Krantiguru Shyamji Krishna Verma Kachchh University ąŖ•ą«ąŖ°ąŖ¾ąŖ‚ąŖ¤ąŖæąŖ—ą«ąŖ°ą« ąŖ¶ą«ąŖÆąŖ¾ąŖ®ąŖœą«€ ąŖ•ą«ƒąŖ·ą«ąŖ£ąŖµąŖ°ą«ąŖ®ąŖ¾ ąŖ•ąŖšą«ąŖ› ąŖµąŖæąŖ¶ą«ąŖµąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖ²ąŖÆ ą°•ą±ą°°ą°¾ą°‚ą°¤ą°æą°—ą±ą°°ą±‚ ą°¶ą±ą°Æą°¾ą°®ą±ą°œą°æ ą°•ą±ƒą°·ą±ą°£ ą°µą±†ą°°ą±ą°® ą°•ą°¾ą°šą±ą°šą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(106582, 'https://ror.org/02c6z1q75', 'no_lang_code', 1, 'https://ror.org/02c6z1q75 FC PaƧos de Ferreira FC PaƧos de Ferreira (Portugal)'),
(106583, 'https://ror.org/03x2yvz14', 'pt', 1, 'https://ror.org/03x2yvz14 Sociedade Portuguesa de MatemƔtica'),
(106584, 'https://ror.org/009j14p05', 'pl', 1, 'https://ror.org/009j14p05 Akademia Ignatianum w Krakowie Ignatianum University in Cracow'),
(106585, 'https://ror.org/010srfv22', 'en', 0, 'https://ror.org/010srfv22 Osaka International Cancer Institute å¤§é˜Ŗå›½éš›ćŒć‚“ē ”ē©¶ę‰€'),
(106586, 'https://ror.org/019yty581', 'en', 1, 'https://ror.org/019yty581 Knowledge to Innovate Professions in Tourism'),
(106587, 'https://ror.org/02rbzhv36', 'en', 1, 'https://ror.org/02rbzhv36 State Key Laboratory of Polymer Materials Engineering é«˜åˆ†å­ęę–™å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(106588, 'https://ror.org/042999n30', 'en', 1, 'https://ror.org/042999n30 National Supercomputer Center in Guangzhou äø­å±±å¤§å­¦å›½å®¶č¶…ēŗ§č®”ē®—å¹æå·žäø­åæƒ å›½å®¶č¶…ēŗ§č®”ē®—å¹æå·žäø­åæƒ'),
(106589, 'https://ror.org/009zjqj21', 'pt', 1, 'https://ror.org/009zjqj21 Entidade Reguladora dos ServiƧos de Ɓguas e Resƭduos'),
(106590, 'https://ror.org/04wffgt70', 'pt', 1, 'https://ror.org/04wffgt70 State University of Campinas (UNICAMP) Universidade Estadual de Campinas (UNICAMP)'),
(106591, 'https://ror.org/028h2cy94', 'no_lang_code', 1, 'https://ror.org/028h2cy94 Tetra Pak (Sweden)'),
(106592, 'https://ror.org/00560h931', 'en', 1, 'https://ror.org/00560h931 Tio Business School'),
(106593, 'https://ror.org/03q1qyr62', 'en', 1, 'https://ror.org/03q1qyr62 In Vivo Arthropod Security Facility'),
(106594, 'https://ror.org/00rt27171', 'en', 1, 'https://ror.org/00rt27171 Laboratoire des pathogènes et de l''immunité de l''hÓte Laboratory of Pathogens and Host Immunity'),
(106595, 'https://ror.org/037gd6g64', 'en', 1, 'https://ror.org/037gd6g64 Division of Atmospheric and Geospace Sciences'),
(106596, 'https://ror.org/02jqkb192', 'no_lang_code', 1, 'https://ror.org/02jqkb192 Biogen (United States)'),
(106597, 'https://ror.org/05015xk23', 'pt', 1, 'https://ror.org/05015xk23 CĆ¢mara Municipal de Matosinhos'),
(106598, 'https://ror.org/03pscpn55', 'en', 0, 'https://ror.org/03pscpn55 Kazakh Academy of Transport and Communications named after M.Tynyshpaev ŠšŠ°Š·Š°Ń…ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ транспорта Šø ŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹ имени М. Š¢Ń‹Š½Ń‹ŃˆŠæŠ°ŠµŠ²Š° ŅšŠ°Š·Š°Ņ› көлік және ŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŃ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(106599, 'https://ror.org/00gd7ns03', 'es', 1, 'https://ror.org/00gd7ns03 State University of Milagro Universidad Estatal de Milagro'),
(106600, 'https://ror.org/00pc6v375', 'en', 1, 'https://ror.org/00pc6v375 Biznesa, mākslas un tehnoloģiju augstskola RISEBA RISEBA University of Applied Sciences'),
(106601, 'https://ror.org/0059w6r63', 'no_lang_code', 1, 'https://ror.org/0059w6r63 Bloom Up (Portugal)'),
(106602, 'https://ror.org/05n694h24', 'pt', 1, 'https://ror.org/05n694h24 Biblioteca UniversitÔria João Paulo II'),
(106603, 'https://ror.org/03ga7rm71', 'pt', 1, 'https://ror.org/03ga7rm71 Sociedade Portuguesa de Botânica'),
(106604, 'https://ror.org/00051wc04', 'no_lang_code', 1, 'https://ror.org/00051wc04 Oracle (Portugal)'),
(106605, 'https://ror.org/05ye29x39', 'fr', 1, 'https://ror.org/05ye29x39 Interactions hotes-vecteurs-parasites-environnement dans les maladies tropicales nƩgligƩes dues aux trypanosomatides'),
(106606, 'https://ror.org/02jtacs89', 'pt', 1, 'https://ror.org/02jtacs89 Infraestrutura de Investigação para a Biomassa e a Bioenergia'),
(106607, 'https://ror.org/01bf8pa91', 'no_lang_code', 1, 'https://ror.org/01bf8pa91 Raporal (Portugal) Raporal, S.A.'),
(106608, 'https://ror.org/01fcjzv38', 'en', 1, 'https://ror.org/01fcjzv38 Laboratory for Atmospheric and Space Physics'),
(106609, 'https://ror.org/01rs0zz87', 'en', 1, 'https://ror.org/01rs0zz87 All India Institute of Medical Sciences Bhopal'),
(106610, 'https://ror.org/00s6fdn14', 'pt', 1, 'https://ror.org/00s6fdn14 FÔbrica Centro Ciência Viva de Aveiro'),
(106611, 'https://ror.org/0300tmz02', 'pt', 1, 'https://ror.org/0300tmz02 Centro Cultural de BelƩm'),
(106612, 'https://ror.org/02zjgam16', 'no_lang_code', 1, 'https://ror.org/02zjgam16 Logiser (Portugal) Logiser, S.A.'),
(106613, 'https://ror.org/040ebrp24', 'en', 1, 'https://ror.org/040ebrp24 Science and Technology Department of Ningxia å®å¤å›žę—č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(106614, 'https://ror.org/00nmxt396', 'pt', 1, 'https://ror.org/00nmxt396 Centro de Empresas Inovadoras'),
(106615, 'https://ror.org/05jatax32', 'no_lang_code', 1, 'https://ror.org/05jatax32 MSD (Portugal)'),
(106616, 'https://ror.org/05b6h5f79', 'pt', 1, 'https://ror.org/05b6h5f79 Secretaria Regional do Turismo e Cultura'),
(106617, 'https://ror.org/01jc8mb89', 'pt', 1, 'https://ror.org/01jc8mb89 Centro Interdisciplinar de CiĆŖncias Sociais'),
(106618, 'https://ror.org/02pbb4g34', 'no_lang_code', 1, 'https://ror.org/02pbb4g34 Tecnifar Tecnifar (Portugal)'),
(106619, 'https://ror.org/04kt8mw18', 'pt', 1, 'https://ror.org/04kt8mw18 Madeira N-Lincs'),
(106620, 'https://ror.org/03esshb58', 'pt', 1, 'https://ror.org/03esshb58 Centro de Investigação para Tecnologias Interactivas'),
(106621, 'https://ror.org/01qx94h42', 'pt', 1, 'https://ror.org/01qx94h42 Sociedade Portuguesa de Medicina Física e Reabilitação'),
(106622, 'https://ror.org/03a4d8673', 'pt', 1, 'https://ror.org/03a4d8673 Escola Superior de Educação de Paula Frassinetti'),
(106623, 'https://ror.org/0282fcs06', 'pt', 1, 'https://ror.org/0282fcs06 Sociedade Portuguesa de Entomologia'),
(106624, 'https://ror.org/04rdz6f84', 'pt', 1, 'https://ror.org/04rdz6f84 Confederação do Comércio e Serviços de Portugal'),
(106625, 'https://ror.org/05d442434', 'no_lang_code', 1, 'https://ror.org/05d442434 Bondalti (Portugal)'),
(106626, 'https://ror.org/00me29179', 'de', 1, 'https://ror.org/00me29179 Institut für Holztechnologie Dresden'),
(106627, 'https://ror.org/04w8z7f34', 'en', 1, 'https://ror.org/04w8z7f34 National Research Nuclear University MEPhI ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃŠ“ŠµŃ€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ МИФИ'),
(106628, 'https://ror.org/00bbp3619', 'pt', 1, 'https://ror.org/00bbp3619 Instituto de Literatura Comparada Margarida Losa'),
(106629, 'https://ror.org/006c77m33', 'no_lang_code', 1, 'https://ror.org/006c77m33 Oracle (United States)'),
(106630, 'https://ror.org/05wf13d42', 'pt', 1, 'https://ror.org/05wf13d42 CoLAB BIOREF'),
(106631, 'https://ror.org/016p93117', 'no_lang_code', 1, 'https://ror.org/016p93117 Joaquim Chaves Health Joaquim Chaves SaĆŗde Joaquim Chaves SaĆŗde (Portugal)'),
(106632, 'https://ror.org/01nzkd566', 'pt', 1, 'https://ror.org/01nzkd566 Centre for Neuroscience and Cell Biology Centro de NeurociĆŖncias e Biologia Celular'),
(106633, 'https://ror.org/03zrwn122', 'no_lang_code', 1, 'https://ror.org/03zrwn122 J Garraio & Ca (Portugal)'),
(106634, 'https://ror.org/03zkz3r52', 'pt', 1, 'https://ror.org/03zkz3r52 Federação Portuguesa de Espeleologia'),
(106635, 'https://ror.org/04jymbd90', 'en', 1, 'https://ror.org/04jymbd90 Czech Academy of Sciences, Nuclear Physics Institute Ústav jadernĆ© fyziky AV ČR Ústav jadernĆ© fyziky AV ČR, v. v. i. Ústav jadernĆ© fyziky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(106636, 'https://ror.org/02mvf8z51', 'en', 1, 'https://ror.org/02mvf8z51 Alnukhba University College ŁƒŁ„ŁŠŲ© النخبة الجامعة'),
(106637, 'https://ror.org/03wzqqd66', 'pt', 1, 'https://ror.org/03wzqqd66 Quercus - Associação Nacional de Conservação da Natureza Quercus'),
(106638, 'https://ror.org/02erf0j28', 'en', 1, 'https://ror.org/02erf0j28 Toshkent Amaliy Fanlar Universiteti University of Tashkent for Applied Sciences Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Университет ŠŸŃ€ŠøŠŗŠ»Š°Š“Š½Ń‹Ń… ŠŠ°ŃƒŠŗ'),
(106639, 'https://ror.org/03yx73m48', 'en', 1, 'https://ror.org/03yx73m48 Sri Dev Suman Uttarakhand University Sri Dev Suman Uttarakhand Vishwavidyalay'),
(106640, 'https://ror.org/028dyrk43', 'pt', 1, 'https://ror.org/028dyrk43 Sociedade Portuguesa de Radiologia e Medicina Nuclear'),
(106641, 'https://ror.org/04x110p08', 'no_lang_code', 1, 'https://ror.org/04x110p08 Beiras Business School Escola de Negócios das Beiras Escola de Negócios das Beiras (Portugal)'),
(106642, 'https://ror.org/05s7cev82', 'de', 1, 'https://ror.org/05s7cev82 Tumor Zentrum Aarau AG Tumor Zentrum Aargau'),
(106643, 'https://ror.org/00fxczr88', 'no_lang_code', 1, 'https://ror.org/00fxczr88 Laboratoires Bailleul Portugal, S.A. Laboratoires Bailleul Portugal, S.A. (Portugal)'),
(106644, 'https://ror.org/026pt7089', 'pt', 1, 'https://ror.org/026pt7089 Centro CiĆŖncia Viva de Vila do Conde'),
(106645, 'https://ror.org/007qr6339', 'pt', 1, 'https://ror.org/007qr6339 Ordem dos Engenheiros'),
(106646, 'https://ror.org/02vbb6770', 'pt', 1, 'https://ror.org/02vbb6770 Centro de Estudos Europeus'),
(106647, 'https://ror.org/03eaa3f03', 'no_lang_code', 1, 'https://ror.org/03eaa3f03 Valmet (Finland)'),
(106648, 'https://ror.org/01fn87p98', 'no_lang_code', 1, 'https://ror.org/01fn87p98 Whiteboard (Portugal)'),
(106649, 'https://ror.org/01mv71k12', 'no_lang_code', 1, 'https://ror.org/01mv71k12 Findmore Consulting Findmore Consulting (Portugal)'),
(106650, 'https://ror.org/04pqetg36', 'en', 1, 'https://ror.org/04pqetg36 Ministry of Health and Family Welfare'),
(106651, 'https://ror.org/02a96qd10', 'en', 1, 'https://ror.org/02a96qd10 CoLAB ForestWISE'),
(106652, 'https://ror.org/00hzrhy27', 'en', 1, 'https://ror.org/00hzrhy27 New England School of Acupuncture'),
(106653, 'https://ror.org/03hj8rz96', 'en', 0, 'https://ror.org/03hj8rz96 Hochschule für Gesundheit - University of Applied Sciences Hochschule für Gesundheit Bochum'),
(106654, 'https://ror.org/02yy6gj83', 'es', 1, 'https://ror.org/02yy6gj83 Instituto Tecnológico Superior de Tlaxco'),
(106655, 'https://ror.org/05qwb1e82', 'pt', 1, 'https://ror.org/05qwb1e82 Centro de Investigação em Educação de Adultos e Intervenção ComunitÔria'),
(106656, 'https://ror.org/00675rp98', 'fr', 1, 'https://ror.org/00675rp98 Centre National pour la Recherche Scientifique et Technique (CNRST) National Center for Scientific and Technical Research (CNRST) Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ للبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠ'),
(106657, 'https://ror.org/01vj2tr26', 'en', 1, 'https://ror.org/01vj2tr26 Jabatan Muzium Sarawak Sarawak Museum Department'),
(106658, 'https://ror.org/03saa3s66', 'pt', 1, 'https://ror.org/03saa3s66 CUF Infante Santo Hospital'),
(106659, 'https://ror.org/0026v5a61', 'pt', 1, 'https://ror.org/0026v5a61 Serviço Regional de Proteção Civil e Bombeiros dos Açores'),
(106660, 'https://ror.org/05kh1qs05', 'en', 1, 'https://ror.org/05kh1qs05 Institut für Angewandte Manuelle Therapie Institute for Applied Manual Therapy'),
(106661, 'https://ror.org/044b87t53', 'en', 1, 'https://ror.org/044b87t53 The Bible Seminary'),
(106662, 'https://ror.org/05sd8gr95', 'pt', 1, 'https://ror.org/05sd8gr95 Centro de Investigação e Desenvolvimento em Ciências Jurídicas Ratio Legis'),
(106663, 'https://ror.org/05j136930', 'es', 1, 'https://ror.org/05j136930 Universidad de las Fuerzas Armadas ESPE University of the Armed Forces (ESPE)'),
(106664, 'https://ror.org/002nfjv61', 'pt', 1, 'https://ror.org/002nfjv61 Sociedade Portuguesa de EstatĆ­stica'),
(106665, 'https://ror.org/05rsepe19', 'no_lang_code', 1, 'https://ror.org/05rsepe19 WEGEURO Electric Corporation WEGEURO Indústria Eléctrica (Portugal) WEGEURO Indústria Eléctrica, S.A.'),
(106666, 'https://ror.org/03ee8t320', 'pt', 1, 'https://ror.org/03ee8t320 Centro de Materiais'),
(106667, 'https://ror.org/002tnzj78', 'pt', 1, 'https://ror.org/002tnzj78 Conselho Nacional de Ɖtica para as CiĆŖncias da Vida'),
(106668, 'https://ror.org/03sgyqj04', 'fr', 1, 'https://ror.org/03sgyqj04 Ɖcole Nationale SupĆ©rieure de Chimie de Montpellier'),
(106669, 'https://ror.org/02fhpy910', 'pt', 1, 'https://ror.org/02fhpy910 Centro de Estudos do Território Cultura e Desenvolvimento'),
(106670, 'https://ror.org/05y39br74', 'pt', 1, 'https://ror.org/05y39br74 Unidade Local de SaĆŗde de Braga'),
(106671, 'https://ror.org/04qdeja70', 'pt', 1, 'https://ror.org/04qdeja70 Associação Portuguesa de Estudantes de Agricultura'),
(106672, 'https://ror.org/00vq5j353', 'no_lang_code', 1, 'https://ror.org/00vq5j353 Costa NƔutica (Portugal)'),
(106673, 'https://ror.org/03n8zhd73', 'no_lang_code', 1, 'https://ror.org/03n8zhd73 Tecnoveritas Services of Engineering and Systems Technology Tecnoveritas Serviços de Engenharia e Sistemas Tecnológicos (Portugal)'),
(106674, 'https://ror.org/01b9fyw42', 'pt', 1, 'https://ror.org/01b9fyw42 Centro de História de Arte e Investigação Artística'),
(106675, 'https://ror.org/01bw9nb45', 'en', 1, 'https://ror.org/01bw9nb45 3B''s Research Group'),
(106676, 'https://ror.org/05141h569', 'es', 1, 'https://ror.org/05141h569 Instituto Nacional de Capacitación Profesional'),
(106677, 'https://ror.org/00wq4fp40', 'no_lang_code', 1, 'https://ror.org/00wq4fp40 FI Group FI Group (Portugal)'),
(106678, 'https://ror.org/00hvyfn28', 'en', 1, 'https://ror.org/00hvyfn28 Research Institute for Environmental Studies'),
(106679, 'https://ror.org/05mt63e64', 'no_lang_code', 1, 'https://ror.org/05mt63e64 AstraZeneca (Portugal)'),
(106680, 'https://ror.org/00t6gnv18', 'en', 1, 'https://ror.org/00t6gnv18 Hochschule für Angewandte Wissenschaften Burgenland University of Applied Sciences Burgenland'),
(106681, 'https://ror.org/00wdyvz26', 'pt', 1, 'https://ror.org/00wdyvz26 Centro de Investigação em Educação'),
(106682, 'https://ror.org/05w758267', 'pt', 1, 'https://ror.org/05w758267 Sociedade Portuguesa de QuĆ­mica'),
(106683, 'https://ror.org/0064kty71', 'en', 1, 'https://ror.org/0064kty71 Sun Yat-sen University 中山大学'),
(106684, 'https://ror.org/04ehvzt53', 'pt', 1, 'https://ror.org/04ehvzt53 Casa das Artes'),
(106685, 'https://ror.org/04y5gfw04', 'pt', 1, 'https://ror.org/04y5gfw04 Sociedade das Ciências Médicas de Lisboa'),
(106686, 'https://ror.org/01vjxh080', 'no_lang_code', 1, 'https://ror.org/01vjxh080 Affidea Portugal Affidea Portugal (Portugal)'),
(106687, 'https://ror.org/00phr5c96', 'pt', 1, 'https://ror.org/00phr5c96 Sociedade Portuguesa de Terapia Familiar'),
(106688, 'https://ror.org/048dw0897', 'pt', 1, 'https://ror.org/048dw0897 Centro de CiĆŖncia e Tecnologia do Ambiente e do Mar'),
(106689, 'https://ror.org/00xf91p27', 'no_lang_code', 1, 'https://ror.org/00xf91p27 MarSensing (Portugal)'),
(106690, 'https://ror.org/00mdktx17', 'pt', 1, 'https://ror.org/00mdktx17 Mosteiro dos Jerónimos'),
(106691, 'https://ror.org/027fb8k30', 'no_lang_code', 1, 'https://ror.org/027fb8k30 Atelier de Lisboa Atelier de Lisboa (Portugal) Atelier of Lisbon'),
(106692, 'https://ror.org/00z1f6y87', 'en', 1, 'https://ror.org/00z1f6y87 Seribiotechnology Research Laboratory'),
(106693, 'https://ror.org/036vff312', 'pt', 1, 'https://ror.org/036vff312 Aletheia - Associação Científica e Cultural Aletheia'),
(106694, 'https://ror.org/048kx0z93', 'en', 1, 'https://ror.org/048kx0z93 European Marine Biological Resource Centre Portugal'),
(106695, 'https://ror.org/01n5r7t14', 'it', 1, 'https://ror.org/01n5r7t14 School of Freudian Psychoanalysis Scuola di Psicanalisi Freudiana'),
(106696, 'https://ror.org/05tqgjy81', 'en', 1, 'https://ror.org/05tqgjy81 Ministry of Education وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ©'),
(106697, 'https://ror.org/03p8snc64', 'pt', 1, 'https://ror.org/03p8snc64 Centro Operativo e Tecnológico Hortofrutícola Nacional'),
(106698, 'https://ror.org/028070c57', 'no_lang_code', 1, 'https://ror.org/028070c57 NaMLab (Germany)'),
(106699, 'https://ror.org/02cyq1796', 'en', 1, 'https://ror.org/02cyq1796 Regentropfen University College'),
(106700, 'https://ror.org/05e8gmx74', 'no_lang_code', 1, 'https://ror.org/05e8gmx74 Skyros Conferences Skyros Congressos Skyros Congressos (Portugal)'),
(106701, 'https://ror.org/04h27a546', 'no_lang_code', 1, 'https://ror.org/04h27a546 Lightning Packs (United States)'),
(106702, 'https://ror.org/023dfpy06', 'en', 1, 'https://ror.org/023dfpy06 Jamalpur Science and Technology University জামালপুর ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(106703, 'https://ror.org/00esxkm46', 'pt', 1, 'https://ror.org/00esxkm46 Instituto Superior de Economia e Gestão Campus Tecnológico e Nuclear'),
(106704, 'https://ror.org/01j7g2q21', 'pt', 1, 'https://ror.org/01j7g2q21 Comunidade Intermunicipal do Alentejo Litoral'),
(106705, 'https://ror.org/00asevw10', 'es', 1, 'https://ror.org/00asevw10 Universidad para la Cooperación Internacional University for International Cooperation'),
(106706, 'https://ror.org/02kn5av21', 'pt', 1, 'https://ror.org/02kn5av21 Instituto Europeu'),
(106707, 'https://ror.org/04yfmyg44', 'pt', 1, 'https://ror.org/04yfmyg44 Instituto de Comunicação da Nova'),
(106708, 'https://ror.org/034fhbw64', 'pt', 1, 'https://ror.org/034fhbw64 Centro de Investigação em Educação e Psicologia'),
(106709, 'https://ror.org/03fwrze78', 'pt', 1, 'https://ror.org/03fwrze78 Entidade Reguladora para a Comunicação Social'),
(106710, 'https://ror.org/01xj2hh02', 'no_lang_code', 1, 'https://ror.org/01xj2hh02 MBA Lisboa MBA Lisboa (Portugal) MBA Lisbon'),
(106711, 'https://ror.org/00m9m9291', 'en', 1, 'https://ror.org/00m9m9291 Spinal Injuries Association'),
(106712, 'https://ror.org/05av4ht18', 'pt', 1, 'https://ror.org/05av4ht18 NĆŗcleo Empresarial da RegiĆ£o de Ɖvora'),
(106713, 'https://ror.org/014er2a73', 'no_lang_code', 1, 'https://ror.org/014er2a73 CBRAIN Group'),
(106714, 'https://ror.org/01xdqrp08', 'no_lang_code', 1, 'https://ror.org/01xdqrp08 Pfizer (United States)'),
(106715, 'https://ror.org/000t9e931', 'pt', 1, 'https://ror.org/000t9e931 Centro de Estudos de Sociologia e EstƩtica Musical'),
(106716, 'https://ror.org/02rvr3e22', 'en', 1, 'https://ror.org/02rvr3e22 65th Force Support Squadron'),
(106717, 'https://ror.org/01shbcv79', 'pt', 1, 'https://ror.org/01shbcv79 Museu MonogrƔfico de Conimbriga'),
(106718, 'https://ror.org/01v5xwf23', 'no_lang_code', 1, 'https://ror.org/01v5xwf23 NestlƩ (Switzerland)'),
(106719, 'https://ror.org/0428c0g78', 'en', 1, 'https://ror.org/0428c0g78 Oxford Immunotec Oxford Immunotec (United Kingdom) Oxford Immunotec Ltd'),
(106720, 'https://ror.org/01xgnvv94', 'pt', 1, 'https://ror.org/01xgnvv94 OPEN - Associação para Oportunidades Específicas de Negócio'),
(106721, 'https://ror.org/04bdj7239', 'no_lang_code', 1, 'https://ror.org/04bdj7239 Amkor Technology (United States)'),
(106722, 'https://ror.org/02jxg4w38', 'pt', 1, 'https://ror.org/02jxg4w38 Sociedade Portuguesa de Hematologia'),
(106723, 'https://ror.org/03hxzy361', 'en', 1, 'https://ror.org/03hxzy361 Institute of Physics'),
(106724, 'https://ror.org/01jhd3147', 'pt', 1, 'https://ror.org/01jhd3147 Sociedade Portuguesa de Estomatologia e Medicina DentƔria'),
(106725, 'https://ror.org/03te08f76', 'pt', 1, 'https://ror.org/03te08f76 Sociedade Portuguesa de Investigação em Educação MatemÔtica'),
(106726, 'https://ror.org/035emn182', 'fr', 1, 'https://ror.org/035emn182 Laboratoire de Chimie Agro-Industrielle Laboratory of Agro-Industrial Chemistry'),
(106727, 'https://ror.org/0537fzf45', 'en', 1, 'https://ror.org/0537fzf45 MyFace Clinic'),
(106728, 'https://ror.org/0520mfp02', 'pt', 1, 'https://ror.org/0520mfp02 Marinha Portuguesa'),
(106729, 'https://ror.org/03hfq8t25', 'no_lang_code', 1, 'https://ror.org/03hfq8t25 Almedina, S.A. (Portugal)'),
(106730, 'https://ror.org/04936mc07', 'pt', 1, 'https://ror.org/04936mc07 Centro CiĆŖncia Viva de Estremoz'),
(106731, 'https://ror.org/041945v60', 'pt', 1, 'https://ror.org/041945v60 Cinemateca Portuguesa Museu do Cinema'),
(106732, 'https://ror.org/03tsa2x69', 'pt', 1, 'https://ror.org/03tsa2x69 Escola de Artes do Norte Alentejano'),
(106733, 'https://ror.org/01t0p2n85', 'pt', 1, 'https://ror.org/01t0p2n85 Centimfe Centro Tecnológico da Indústria de Moldes, Ferramentas Especiais e PlÔsticos'),
(106734, 'https://ror.org/0212r6c65', 'en', 1, 'https://ror.org/0212r6c65 University of Torbat-e Jam دانؓگاه ŲŖŲ±ŲØŲŖ Ų¬Ų§Ł…'),
(106735, 'https://ror.org/03b3ph316', 'es', 1, 'https://ror.org/03b3ph316 FundaQuim'),
(106736, 'https://ror.org/039em6c59', 'en', 1, 'https://ror.org/039em6c59 Luxoft (Germany) Luxoft GmbH'),
(106737, 'https://ror.org/02th1pb96', 'en', 1, 'https://ror.org/02th1pb96 Ho Chi Minh City University of Foreign Languages and Information Technology'),
(106738, 'https://ror.org/054gwrv13', 'pt', 1, 'https://ror.org/054gwrv13 Sociedade Portuguesa de Psicoterapias Construtivistas'),
(106739, 'https://ror.org/05ern7v24', 'pt', 1, 'https://ror.org/05ern7v24 Ordem dos MƩdicos VeterinƔrios'),
(106740, 'https://ror.org/03166ra26', 'en', 1, 'https://ror.org/03166ra26 Portuguese microBiological Resources Center Network'),
(106741, 'https://ror.org/020g0rw41', 'fr', 1, 'https://ror.org/020g0rw41 Gestion de l''Eau, Acteurs, Usages'),
(106742, 'https://ror.org/01qf6yj86', 'no_lang_code', 1, 'https://ror.org/01qf6yj86 Medical Society of Entrecampos Sociedade MƩdica de Entrecampos (Portugal)'),
(106743, 'https://ror.org/0220zje72', 'en', 0, 'https://ror.org/0220zje72 North Caucasian State Humanitarian Technological Academy Деверо-ŠšŠ°Š²ŠŗŠ°Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(106744, 'https://ror.org/01dvwhz14', 'no_lang_code', 1, 'https://ror.org/01dvwhz14 Zimmer (Portugal)'),
(106745, 'https://ror.org/00hw3vb36', 'de', 1, 'https://ror.org/00hw3vb36 Novetus GmbH Novetus GmbH (Austria)'),
(106746, 'https://ror.org/052jj4m32', 'en', 1, 'https://ror.org/052jj4m32 EGI'),
(106747, 'https://ror.org/044v1kn41', 'pt', 1, 'https://ror.org/044v1kn41 Associação Empresarial da Região de Viseu'),
(106748, 'https://ror.org/01ymbe816', 'pt', 1, 'https://ror.org/01ymbe816 Centro de Física e Investigação Tecnológica'),
(106749, 'https://ror.org/01ts2hw13', 'pt', 1, 'https://ror.org/01ts2hw13 Caritas Diocesana de Coimbra'),
(106750, 'https://ror.org/05h3g8k59', 'pt', 1, 'https://ror.org/05h3g8k59 CoLAB VORTEX'),
(106751, 'https://ror.org/008wzj148', 'pt', 1, 'https://ror.org/008wzj148 Centro de Intervenção Para o Desenvolvimento Amílcar Cabral'),
(106752, 'https://ror.org/04r9kv423', 'pt', 1, 'https://ror.org/04r9kv423 Unidade de I e D em AnƔlise de Ciclo de Vida de Produtos e Componentes Industriais Soldados'),
(106753, 'https://ror.org/01sf57728', 'en', 1, 'https://ror.org/01sf57728 Smartgridslab'),
(106754, 'https://ror.org/051p4mw04', 'es', 1, 'https://ror.org/051p4mw04 Universidad Antropológica de Guadalajara'),
(106755, 'https://ror.org/04egzc574', 'pt', 1, 'https://ror.org/04egzc574 Serviço de Assistência Médico-Social'),
(106756, 'https://ror.org/002jzkf60', 'no_lang_code', 1, 'https://ror.org/002jzkf60 DIGESTAID DIGESTAID (Portugal)'),
(106757, 'https://ror.org/051fx1c67', 'no_lang_code', 1, 'https://ror.org/051fx1c67 Escrever Escrever (Portugal)'),
(106758, 'https://ror.org/04t46h467', 'no_lang_code', 1, 'https://ror.org/04t46h467 Maldral Science Maldral Scientia (Portugal) Maldral Scientia, S.A.'),
(106759, 'https://ror.org/05aqjsn79', 'no_lang_code', 1, 'https://ror.org/05aqjsn79 Nestle (Portugal)'),
(106760, 'https://ror.org/00rv19195', 'no_lang_code', 1, 'https://ror.org/00rv19195 Armory of the Alfeite Arsenal do Alfeite Arsenal do Alfeite (Portugal)'),
(106761, 'https://ror.org/03g24yj40', 'pt', 1, 'https://ror.org/03g24yj40 SANJOTEC - Centro Empresarial e Tecnológico de São João da Madeira'),
(106762, 'https://ror.org/027y26122', 'no_lang_code', 1, 'https://ror.org/027y26122 Daiichi-Sankyo (Japan) ē¬¬äø€äø‰å…±ę Ŗå¼ä¼šē¤¾'),
(106763, 'https://ror.org/011p0ty46', 'en', 1, 'https://ror.org/011p0ty46 Institute for Theoretical Physics Amsterdam'),
(106764, 'https://ror.org/0407n8113', 'no_lang_code', 1, 'https://ror.org/0407n8113 SGS Academy Portugal SGS Academy Portugal (Portugal)'),
(106765, 'https://ror.org/00abb3b58', 'no_lang_code', 1, 'https://ror.org/00abb3b58 Flatlantic Flatlantic (Portugal)'),
(106766, 'https://ror.org/02dhpke20', 'pt', 1, 'https://ror.org/02dhpke20 Centro de Investigação em MatemÔtica e Aplicações'),
(106767, 'https://ror.org/00m7f6j63', 'id', 1, 'https://ror.org/00m7f6j63 STAI Al-Falah Cicalengka'),
(106768, 'https://ror.org/016c14g50', 'pt', 1, 'https://ror.org/016c14g50 Sociedade Portuguesa de Virologia'),
(106769, 'https://ror.org/02qr09225', 'no_lang_code', 1, 'https://ror.org/02qr09225 Chrysea Labs (Portugal)'),
(106770, 'https://ror.org/02e698f45', 'es', 1, 'https://ror.org/02e698f45 Universidad Tecnológica de Chile INACAP'),
(106771, 'https://ror.org/02bgk0802', 'no_lang_code', 1, 'https://ror.org/02bgk0802 Congento - Consortium for Genetically Tractable Organisms'),
(106772, 'https://ror.org/009p5yx63', 'no_lang_code', 1, 'https://ror.org/009p5yx63 Corte Velada Corte Velada (Portugal) Veiled Court'),
(106773, 'https://ror.org/040gmwg54', 'pt', 1, 'https://ror.org/040gmwg54 Escola de Tecnologias Inovação e Criação'),
(106774, 'https://ror.org/03vp28b81', 'pt', 1, 'https://ror.org/03vp28b81 Biblioteca Municipal Almeida Garrett'),
(106775, 'https://ror.org/02x5qpn68', 'en', 1, 'https://ror.org/02x5qpn68 Luxoft Luxoft (Switzerland)'),
(106776, 'https://ror.org/03ggzay52', 'en', 1, 'https://ror.org/03ggzay52 Neu-Ulm University of Applied Sciences'),
(106777, 'https://ror.org/01br1h281', 'no_lang_code', 1, 'https://ror.org/01br1h281 Servidor de Apontadores Portugueses Online Servidor de Apontadores Portugueses Online (Portugal)'),
(106778, 'https://ror.org/00p7a1q41', 'no_lang_code', 1, 'https://ror.org/00p7a1q41 SEMTDistribuição SEMTDistribuição (Portugal)'),
(106779, 'https://ror.org/03az81r49', 'es', 1, 'https://ror.org/03az81r49 Santiago University of Technology Universidad Tecnológica de Santiago'),
(106780, 'https://ror.org/0014aaz48', 'no_lang_code', 1, 'https://ror.org/0014aaz48 Lima Cabrita SGPS Lima Cabrita SGPS S.A. (Portugal) Lima Cabrita SGPS, S.A.'),
(106781, 'https://ror.org/02zxraz57', 'pt', 1, 'https://ror.org/02zxraz57 Investigação em Ciências Sociais e Gestão'),
(106782, 'https://ror.org/025jbsx21', 'pt', 1, 'https://ror.org/025jbsx21 Autoridade para as CondiƧƵes do Trabalho'),
(106783, 'https://ror.org/00ygfxx68', 'de', 1, 'https://ror.org/00ygfxx68 Technologie- und Förderzentrum im Kompetenzzentrum für Nachwachsende Rohstoffe Technology and Support Centre in the Centre of Excellence for Renewable Resources'),
(106784, 'https://ror.org/01wgfva68', 'es', 1, 'https://ror.org/01wgfva68 National University of Entre Rios Universidad Nacional de Entre RĆ­os'),
(106785, 'https://ror.org/057mgfd18', 'en', 1, 'https://ror.org/057mgfd18 PT OPENSCREEN National Infrastructure for Chemical Biology and Genetics'),
(106786, 'https://ror.org/04x9p9g72', 'en', 1, 'https://ror.org/04x9p9g72 Satellite Application Center for Ecology and Environment ē”Ÿę€ēŽÆå¢ƒéƒØå«ę˜ŸēŽÆå¢ƒåŗ”ē”Øäø­åæƒ'),
(106787, 'https://ror.org/004e3rc90', 'no_lang_code', 1, 'https://ror.org/004e3rc90 Metablue Solution (Portugal)'),
(106788, 'https://ror.org/00ws7a790', 'pt', 1, 'https://ror.org/00ws7a790 Sociedade Portuguesa de Patologia Animal'),
(106789, 'https://ror.org/03mgvjg96', 'no_lang_code', 1, 'https://ror.org/03mgvjg96 MOG Technologies MOG Technologies (Portugal)'),
(106790, 'https://ror.org/03vsddp82', 'pt', 1, 'https://ror.org/03vsddp82 Instituto de Investigação Inovação e Desenvolvimento'),
(106791, 'https://ror.org/04z553m34', 'no_lang_code', 1, 'https://ror.org/04z553m34 UltraWise (Portugal)'),
(106792, 'https://ror.org/02b9fyg84', 'no_lang_code', 1, 'https://ror.org/02b9fyg84 Archeofactu Archeofactu (Portugal)'),
(106793, 'https://ror.org/00qv6a180', 'pt', 1, 'https://ror.org/00qv6a180 CĆ¢mara Municipal de Albergaria'),
(106794, 'https://ror.org/02qx1np85', 'pt', 1, 'https://ror.org/02qx1np85 Sociedade Portuguesa de Ciências Cosmetológicas'),
(106795, 'https://ror.org/05dtxsf72', 'pt', 1, 'https://ror.org/05dtxsf72 ClĆ­nica do Bom Jesus'),
(106796, 'https://ror.org/05v9jgm78', 'no_lang_code', 1, 'https://ror.org/05v9jgm78 MyFace Academy MyFace Academy (Portugal)'),
(106797, 'https://ror.org/04pd1hv08', 'en', 1, 'https://ror.org/04pd1hv08 Ukrainian Research Institute of Design and Ergonomics of the National Aviation University Š£ŠŗŃ€ŠŠ”Š† ДЕ ŠŠŠ£'),
(106798, 'https://ror.org/02g5p4n58', 'no_lang_code', 1, 'https://ror.org/02g5p4n58 AbbVie (United States)'),
(106799, 'https://ror.org/02ed58631', 'pt', 1, 'https://ror.org/02ed58631 Centro de Psicologia Aplicada do ExƩrcito'),
(106800, 'https://ror.org/0172tk840', 'pt', 1, 'https://ror.org/0172tk840 Centro de Documentação 25 de Abril'),
(106801, 'https://ror.org/03q68gw20', 'no_lang_code', 1, 'https://ror.org/03q68gw20 Pioneer Europe NV Pioneer Europe NV (Portugal)'),
(106802, 'https://ror.org/022ssnb78', 'pt', 1, 'https://ror.org/022ssnb78 Universidade de Coimbra Arquivo'),
(106803, 'https://ror.org/044fhy270', 'de', 1, 'https://ror.org/044fhy270 Carl-Thiem-Klinikum Cottbus'),
(106804, 'https://ror.org/019cppw68', 'pt', 1, 'https://ror.org/019cppw68 Sociedade Portuguesa de Disfunção Temporomandibular e Dor Orofacial'),
(106805, 'https://ror.org/00b8mh310', 'en', 1, 'https://ror.org/00b8mh310 Institute for Regenerative Medicine & Biotherapy'),
(106806, 'https://ror.org/01vcqp636', 'pt', 1, 'https://ror.org/01vcqp636 Direção Regional dos Recursos Florestais'),
(106807, 'https://ror.org/02b61xm43', 'en', 1, 'https://ror.org/02b61xm43 International Institute of Management and Business ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(106808, 'https://ror.org/057mkdb21', 'no_lang_code', 1, 'https://ror.org/057mkdb21 Biogen (Portugal)'),
(106809, 'https://ror.org/01hpkt650', 'en', 1, 'https://ror.org/01hpkt650 Portuguese Nuclear Magnetic Resonance Network'),
(106810, 'https://ror.org/05jvzd424', 'pt', 1, 'https://ror.org/05jvzd424 Centro de Estudos JudiciƔrios'),
(106811, 'https://ror.org/01j69h118', 'pt', 1, 'https://ror.org/01j69h118 Centro Nacional de Cultura'),
(106812, 'https://ror.org/043h9aq51', 'en', 0, 'https://ror.org/043h9aq51 Tashkent Islamic University'),
(106813, 'https://ror.org/04qgwd705', 'pt', 1, 'https://ror.org/04qgwd705 Associação Fibrenamics'),
(106814, 'https://ror.org/01kh72s55', 'pt', 1, 'https://ror.org/01kh72s55 Centro de Investigação em Ambiente e Sustentabilidade'),
(106815, 'https://ror.org/00acb7a22', 'pt', 1, 'https://ror.org/00acb7a22 Companhia de DanƧa ContemporĆ¢nea de Ɖvora'),
(106816, 'https://ror.org/03exyhz83', 'pt', 1, 'https://ror.org/03exyhz83 NET4CO2'),
(106817, 'https://ror.org/02bxa4w69', 'en', 1, 'https://ror.org/02bxa4w69 English Language Centre'),
(106818, 'https://ror.org/0286e5b31', 'pt', 1, 'https://ror.org/0286e5b31 Laboratório de Aceleradores e Difracção de Raios-X'),
(106819, 'https://ror.org/05me1j380', 'pt', 1, 'https://ror.org/05me1j380 CĆ¢mara Municipal da Amadora'),
(106820, 'https://ror.org/05e94de73', 'en', 1, 'https://ror.org/05e94de73 Sarov Institute of Physics and Technology Даровский Š³Š¾ŃŃƒŠ“арственный физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(106821, 'https://ror.org/033sr3d10', 'pt', 1, 'https://ror.org/033sr3d10 Autoridade Antidopagem de Portugal'),
(106822, 'https://ror.org/00zvh0k30', 'pt', 1, 'https://ror.org/00zvh0k30 Museu Carlos Machado'),
(106823, 'https://ror.org/0033wqw71', 'pt', 1, 'https://ror.org/0033wqw71 Fundação ÁrpÔd Szenes Vieira da Silva'),
(106824, 'https://ror.org/01rm6cx93', 'pt', 1, 'https://ror.org/01rm6cx93 Vigararia de Oeiras'),
(106825, 'https://ror.org/00x0n6k03', 'pt', 1, 'https://ror.org/00x0n6k03 Centro de Investigação e Estudos João de Deus'),
(106826, 'https://ror.org/00ps2qb39', 'pt', 1, 'https://ror.org/00ps2qb39 Data CoLAB'),
(106827, 'https://ror.org/00fkydv97', 'en', 1, 'https://ror.org/00fkydv97 Computer and Robot Vision Laboratory'),
(106828, 'https://ror.org/02r2e4917', 'pt', 1, 'https://ror.org/02r2e4917 Unidade de Investigação e Desenvolvimento em Engenharia Mecânica e Industrial'),
(106829, 'https://ror.org/0564cd633', 'no_lang_code', 1, 'https://ror.org/0564cd633 Lundbeck (Denmark)'),
(106830, 'https://ror.org/04011hd89', 'fr', 1, 'https://ror.org/04011hd89 Centre Ellipse'),
(106831, 'https://ror.org/024d6js02', 'en', 1, 'https://ror.org/024d6js02 Charles University Univerzita Karlova'),
(106832, 'https://ror.org/045d8n041', 'pt', 1, 'https://ror.org/045d8n041 Sindicato dos BancƔrios do Centro'),
(106833, 'https://ror.org/02891sr49', 'en', 1, 'https://ror.org/02891sr49 Merck & Co., Inc., Rahway, NJ, USA Merck & Co., Inc., Rahway, NJ, USA (United States)'),
(106834, 'https://ror.org/04fmw2x94', 'pt', 1, 'https://ror.org/04fmw2x94 Infraestrutura Nacional de Investigação para Energia Solar de Concentração'),
(106835, 'https://ror.org/03e4pc311', 'pt', 1, 'https://ror.org/03e4pc311 Centro de Estudos Farmaceuticos'),
(106836, 'https://ror.org/02znh1e25', 'pt', 1, 'https://ror.org/02znh1e25 Sociedade Portuguesa de Medicina Laboratorial'),
(106837, 'https://ror.org/04qc94066', 'pt', 1, 'https://ror.org/04qc94066 Centro de Investigação em Ciências Geo-Espaciais'),
(106838, 'https://ror.org/02xz7b430', 'pt', 1, 'https://ror.org/02xz7b430 Fraterna - Centro ComunitÔrio de Solidariedade e Integração Social'),
(106839, 'https://ror.org/01y5vq430', 'pt', 1, 'https://ror.org/01y5vq430 Sindicato dos Enfermeiros Portugueses'),
(106840, 'https://ror.org/01cc9yk21', 'no_lang_code', 1, 'https://ror.org/01cc9yk21 ViiV Healthcare (United Kingdom)'),
(106841, 'https://ror.org/01gktc425', 'pt', 1, 'https://ror.org/01gktc425 Sociedade Portuguesa de Biomecânica'),
(106842, 'https://ror.org/017zhmm22', 'en', 1, 'https://ror.org/017zhmm22 Xi''an Jiaotong University č„æå®‰äŗ¤é€šå¤§å­¦'),
(106843, 'https://ror.org/02qn6bm03', 'pt', 1, 'https://ror.org/02qn6bm03 Açores Direção Regional da Saúde'),
(106844, 'https://ror.org/029dp3h45', 'en', 1, 'https://ror.org/029dp3h45 The Ecclesiastical History Society'),
(106845, 'https://ror.org/01ere8z56', 'pt', 1, 'https://ror.org/01ere8z56 Conselho Coordenador dos Institutos Superiores PolitƩcnicos'),
(106846, 'https://ror.org/01yfjr974', 'pt', 1, 'https://ror.org/01yfjr974 Dentavis Avis Clinic Dentavis ClĆ­nica de Avis (Portugal) Dentavis ClĆ­nica de Avis Lda'),
(106847, 'https://ror.org/04xcb6q52', 'pt', 1, 'https://ror.org/04xcb6q52 Escola de Pós-Graduação em Saúde e Gestão'),
(106848, 'https://ror.org/028e64g94', 'pt', 1, 'https://ror.org/028e64g94 Centro de Investigacao em Recursos Naturais'),
(106849, 'https://ror.org/00re6p830', 'pt', 1, 'https://ror.org/00re6p830 Oftalcare Clínica Oftalmológica (Portugal) Oftalcare Clínica Oftalmológica Lda Oftalcare Eye Clinic'),
(106850, 'https://ror.org/011gakh74', 'es', 1, 'https://ror.org/011gakh74 Universidad Nacional del Centro de la Provincia de Buenos Aires'),
(106851, 'https://ror.org/02gp58w27', 'pt', 1, 'https://ror.org/02gp58w27 Portugal Direção-Geral do Tesouro e Finanças'),
(106852, 'https://ror.org/00pqq3g83', 'pt', 1, 'https://ror.org/00pqq3g83 Sociedade Portuguesa de Estudos Rurais'),
(106853, 'https://ror.org/02ys8pq62', 'en', 1, 'https://ror.org/02ys8pq62 All India Institute of Medical Sciences Raipur अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(106854, 'https://ror.org/0157yfp40', 'pt', 1, 'https://ror.org/0157yfp40 Sociedade Portuguesa de Doenças Metabólicas'),
(106855, 'https://ror.org/035q34n44', 'no_lang_code', 1, 'https://ror.org/035q34n44 Schréder Iluminação (Portugal) Schréder Iluminação, S.A.'),
(106856, 'https://ror.org/03tp0f269', 'en', 1, 'https://ror.org/03tp0f269 Darul Uloom Deoband ŲÆŲ§Ų± Ų§Ł„Ų¹Ł„ŁˆŁ… ŲÆŁŠŁˆŲØŁ†ŲÆ ŲÆŲ§Ų± Ų§Ł„Ų¹Ł„ŁˆŁ… ŲÆŪŒŁˆŲØŁ†ŲÆ ą¤¦ą¤¾ą¤°ą„ą¤² ą¤‰ą¤²ą„‚ą¤® ą¤¦ą„‡ą¤µą¤¬ą¤‚ą¤¦'),
(106857, 'https://ror.org/05pr9ef24', 'pt', 1, 'https://ror.org/05pr9ef24 Autoridade para a Prevenção e o Combate à Violência no Desporto'),
(106858, 'https://ror.org/05cncd958', 'en', 1, 'https://ror.org/05cncd958 Cranfield University Prifysgol Cranfield'),
(106859, 'https://ror.org/059fwb810', 'en', 1, 'https://ror.org/059fwb810 Portuguese Research Infrastructure of Scientific Collections'),
(106860, 'https://ror.org/03cy88j81', 'pt', 1, 'https://ror.org/03cy88j81 PORBIOTA'),
(106861, 'https://ror.org/00w7v1v77', 'en', 1, 'https://ror.org/00w7v1v77 Laboratório Nacional de Energia e Geologia National Laboratory of Energy and Geology'),
(106862, 'https://ror.org/05ymfsn43', 'no_lang_code', 1, 'https://ror.org/05ymfsn43 EnviSolutions EnviSolutions (Portugal)'),
(106863, 'https://ror.org/054mh5j79', 'pt', 1, 'https://ror.org/054mh5j79 Câmara Municipal de São João da Madeira'),
(106864, 'https://ror.org/04qxnmv42', 'en', 1, 'https://ror.org/04qxnmv42 Palacký University Olomouc Univerzita Palackého Univerzita Palackého v Olomouci'),
(106865, 'https://ror.org/009antb74', 'pt', 1, 'https://ror.org/009antb74 Sociedade Portuguesa de Medicina da Reprodução'),
(106866, 'https://ror.org/01xh2mr27', 'en', 1, 'https://ror.org/01xh2mr27 Revvity Gene Delivery Revvity Gene Delivery (Germany)'),
(106867, 'https://ror.org/058e2tg06', 'pt', 1, 'https://ror.org/058e2tg06 Laboratório para a Ciência da Computação e InformÔtica'),
(106868, 'https://ror.org/058k6gb21', 'pt', 1, 'https://ror.org/058k6gb21 Centro de Investigação de MatemÔtica e Aplicações'),
(106869, 'https://ror.org/03va9ng43', 'no_lang_code', 1, 'https://ror.org/03va9ng43 Idorsia Idorsia (Switzerland) Idorsia Ltd');
INSERT INTO `rors` VALUES
(106870, 'https://ror.org/056530580', 'pt', 1, 'https://ror.org/056530580 Escolas do Turismo de Portugal'),
(106871, 'https://ror.org/04ykwra43', 'en', 1, 'https://ror.org/04ykwra43 First Capital University of Bangladesh ą¦«ą¦¾ą¦°ą§ą¦øą§ą¦Ÿ ą¦•ą§ą¦Æą¦¾ą¦Ŗą¦æą¦Ÿą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব বাংলাদেশ'),
(106872, 'https://ror.org/02mqz7148', 'no_lang_code', 1, 'https://ror.org/02mqz7148 3M (Portugal)'),
(106873, 'https://ror.org/04ddmn863', 'pt', 1, 'https://ror.org/04ddmn863 Rede Nacional de Centros Integrais de CĆ¢ncer'),
(106874, 'https://ror.org/04vm13460', 'pt', 1, 'https://ror.org/04vm13460 CĆ¢mara Municipal de Braga'),
(106875, 'https://ror.org/01ygjc434', 'pt', 1, 'https://ror.org/01ygjc434 Patriarcado de Lisboa'),
(106876, 'https://ror.org/013w30494', 'pt', 1, 'https://ror.org/013w30494 Rede CiĆŖncia Tecnologia e Sociedade'),
(106877, 'https://ror.org/00ad9ka24', 'en', 1, 'https://ror.org/00ad9ka24 Zhejiang Department of Finance ęµ™ę±Ÿēœč“¢ę”æåŽ…'),
(106878, 'https://ror.org/01ys43y82', 'pt', 1, 'https://ror.org/01ys43y82 Sociedade Portuguesa de CƩlulas Estaminais e Terapia Celular'),
(106879, 'https://ror.org/032typz45', 'pt', 1, 'https://ror.org/032typz45 Centro de Arqueologia da Almada'),
(106880, 'https://ror.org/01q0xs158', 'no_lang_code', 1, 'https://ror.org/01q0xs158 Trinap Equipamentos Industriais (Portugal) Trinap Industrial Equipments'),
(106881, 'https://ror.org/00fcpmw49', 'pt', 1, 'https://ror.org/00fcpmw49 Federal Institute of Education, Science and Technology of Santa Catarina Instituto Federal de Educação, Ciência e Tecnologia de Santa Catarina'),
(106882, 'https://ror.org/00e0e5c69', 'pt', 1, 'https://ror.org/00e0e5c69 Magellan - Associação para a Representação dos Interesses Portugueses no Exterior'),
(106883, 'https://ror.org/05rgdc794', 'no_lang_code', 1, 'https://ror.org/05rgdc794 Banco Santander (Portugal) Banco Santander Portugal Santander Portugal Bank'),
(106884, 'https://ror.org/04ehtgm24', 'en', 1, 'https://ror.org/04ehtgm24 LusĆ­ada University of Porto'),
(106885, 'https://ror.org/020njfc53', 'no_lang_code', 1, 'https://ror.org/020njfc53 Medicineone SGPS (Portugal) Medicineone SGPS, S.A.'),
(106886, 'https://ror.org/049hw1a96', 'pt', 1, 'https://ror.org/049hw1a96 Centro de Estudos Interdisciplinares em Educação e Desenvolvimento'),
(106887, 'https://ror.org/035xba693', 'de', 1, 'https://ror.org/035xba693 Krankenhaus Dresden-Friedrichstadt'),
(106888, 'https://ror.org/05qhz9f36', 'pt', 1, 'https://ror.org/05qhz9f36 Academia ClĆ­nica Espregueira'),
(106889, 'https://ror.org/03mt5nv96', 'fr', 1, 'https://ror.org/03mt5nv96 Institut Universitaire en SantƩ Mentale de QuƩbec University Institute in Mental Health of Quebec'),
(106890, 'https://ror.org/0008p2x82', 'pt', 1, 'https://ror.org/0008p2x82 Instituto de Estudos ClƔssicos'),
(106891, 'https://ror.org/00y7acy81', 'pt', 1, 'https://ror.org/00y7acy81 Conservatório de Música e Artes do Dão'),
(106892, 'https://ror.org/047yy2056', 'no_lang_code', 1, 'https://ror.org/047yy2056 Biosurfit (Portugal) Biosurfit, S.A.'),
(106893, 'https://ror.org/03pwc4s90', 'pt', 1, 'https://ror.org/03pwc4s90 Sociedade Portuguesa de Robótica'),
(106894, 'https://ror.org/046ss3906', 'en', 0, 'https://ror.org/046ss3906 Górnoslaska Wyzsza Szkola Handlowa Katowice School of Economics'),
(106895, 'https://ror.org/036301z78', 'en', 1, 'https://ror.org/036301z78 St. Andrews Institute of Technology and Management'),
(106896, 'https://ror.org/01frf0543', 'no_lang_code', 1, 'https://ror.org/01frf0543 Milupa Comercial (Portugal) Milupa Comercial, S.A.'),
(106897, 'https://ror.org/0435w9661', 'pt', 1, 'https://ror.org/0435w9661 Escola Superior de Artes e Design Associação para a Promoção da Investigação em Design e Arte'),
(106898, 'https://ror.org/01k92h814', 'no_lang_code', 1, 'https://ror.org/01k92h814 G. H. Gillespie Associates G. H. Gillespie Associates (United States) G. H. Gillespie Associates, Inc.'),
(106899, 'https://ror.org/04n0kzv11', 'pt', 1, 'https://ror.org/04n0kzv11 Direção Geral do Território'),
(106900, 'https://ror.org/04ckm7v43', 'en', 1, 'https://ror.org/04ckm7v43 Advanced Computing Center'),
(106901, 'https://ror.org/047s1xy56', 'en', 1, 'https://ror.org/047s1xy56 RESTART'),
(106902, 'https://ror.org/00k4nan09', 'no_lang_code', 1, 'https://ror.org/00k4nan09 Logiters Portugal Logiters Portugal (Portugal)'),
(106903, 'https://ror.org/017d1hs72', 'no_lang_code', 1, 'https://ror.org/017d1hs72 Banco Santander (Spain)'),
(106904, 'https://ror.org/02v6phz91', 'fr', 1, 'https://ror.org/02v6phz91 Vision pour la Robotique'),
(106905, 'https://ror.org/02339sc10', 'en', 1, 'https://ror.org/02339sc10 United Nations University Operating Unit on Policy-Driven Electronic Governance'),
(106906, 'https://ror.org/044fk6795', 'en', 1, 'https://ror.org/044fk6795 Schmidt Sciences'),
(106907, 'https://ror.org/001ssys51', 'pt', 1, 'https://ror.org/001ssys51 AgĆŖncia Espacial Portuguesa'),
(106908, 'https://ror.org/00vwzpn38', 'no_lang_code', 1, 'https://ror.org/00vwzpn38 Sermail Integrated Logistics Sermail LogĆ­stica Integrada (Portugal)'),
(106909, 'https://ror.org/00sddyf72', 'en', 1, 'https://ror.org/00sddyf72 Museu de Arte Contemporânea de Elvas'),
(106910, 'https://ror.org/02rc1q381', 'en', 1, 'https://ror.org/02rc1q381 Research and Development Station for Cattle Breeding Dancu Stațiunea de Cercetare Dezvoltare pentru Creșterea Bovinelor Dancu'),
(106911, 'https://ror.org/03g2ax673', 'pt', 1, 'https://ror.org/03g2ax673 Unidade de Microbiologia MƩdica'),
(106912, 'https://ror.org/04tdjhc40', 'pt', 1, 'https://ror.org/04tdjhc40 Sociedade Portuguesa de Esclerose MĆŗltipla'),
(106913, 'https://ror.org/04e9nc458', 'no_lang_code', 1, 'https://ror.org/04e9nc458 WSA Portugal (Portugal) WSA Portugal, S.A.'),
(106914, 'https://ror.org/02sm0ej21', 'pt', 1, 'https://ror.org/02sm0ej21 Museu Doutor Joaquim Manso'),
(106915, 'https://ror.org/05getq675', 'en', 1, 'https://ror.org/05getq675 Center for Studies in Ethnobiology Biodiversity & Sustainability'),
(106916, 'https://ror.org/01w6gdg13', 'pt', 1, 'https://ror.org/01w6gdg13 Centro de Biotecnologia e QuĆ­mica Fina'),
(106917, 'https://ror.org/03dgzv892', 'en', 1, 'https://ror.org/03dgzv892 The Crichton Trust'),
(106918, 'https://ror.org/05rn5n623', 'pt', 1, 'https://ror.org/05rn5n623 Centro de Estudos em Inovação Tecnologia e Políticas de Desenvolvimento'),
(106919, 'https://ror.org/01zy52m07', 'pt', 1, 'https://ror.org/01zy52m07 Luz SaĆŗde SA'),
(106920, 'https://ror.org/05hys2498', 'no_lang_code', 1, 'https://ror.org/05hys2498 Widex Reabilitação Auditiva Unip (Portugal)'),
(106921, 'https://ror.org/02wgz6f65', 'pt', 1, 'https://ror.org/02wgz6f65 Agência Nacional para a Qualificação e o Ensino Profissional IP'),
(106922, 'https://ror.org/04r8cg910', 'pt', 1, 'https://ror.org/04r8cg910 Sociedade Portuguesa de Cirurgia Cardƭaca TorƔcica e Vascular'),
(106923, 'https://ror.org/03qc03t81', 'en', 1, 'https://ror.org/03qc03t81 Exército Português Portuguese Army'),
(106924, 'https://ror.org/04mgnp447', 'fr', 1, 'https://ror.org/04mgnp447 Centre d''Ʃtudes et de recherches comparƩes sur la crƩation'),
(106925, 'https://ror.org/05q9c5395', 'pt', 1, 'https://ror.org/05q9c5395 Rede Nacional de Computação Avançada'),
(106926, 'https://ror.org/01agh2v89', 'pt', 1, 'https://ror.org/01agh2v89 Engage-SKA Portugal'),
(106927, 'https://ror.org/00se1zw92', 'en', 1, 'https://ror.org/00se1zw92 Seversk Technological Institute Деверский технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(106928, 'https://ror.org/01ys5nb92', 'pt', 1, 'https://ror.org/01ys5nb92 Tapada Nacional de Mafra'),
(106929, 'https://ror.org/03ms6mt76', 'pt', 1, 'https://ror.org/03ms6mt76 Centro de Conservação das Borboletas de Portugal'),
(106930, 'https://ror.org/04x10nc27', 'fr', 1, 'https://ror.org/04x10nc27 GloNeuro'),
(106931, 'https://ror.org/00y1f4581', 'en', 1, 'https://ror.org/00y1f4581 Kyrgyz-Uzbek International University named after Batyraly Sydykov Батыралы ДыГыков атынГагы ŠšŃ‹Ń€Š³Ń‹Š·-Өзбек Š­Š» аралык ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾-Узбекский ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Батыралы ДыГыкова'),
(106932, 'https://ror.org/05tw07694', 'pt', 1, 'https://ror.org/05tw07694 Rede de Investigação sobre Condições de Trabalho'),
(106933, 'https://ror.org/01zf4xe83', 'pt', 1, 'https://ror.org/01zf4xe83 Associação Para o Desenvolvimento da Engenharia Química'),
(106934, 'https://ror.org/05f1jmk63', 'pt', 1, 'https://ror.org/05f1jmk63 Hospital de Cascais Dr JosƩ de Almeida'),
(106935, 'https://ror.org/046rj7h96', 'pt', 0, 'https://ror.org/046rj7h96 Escola Superior de Artes Decorativas'),
(106936, 'https://ror.org/01c7rh275', 'pt', 1, 'https://ror.org/01c7rh275 Sociedade Portuguesa de Suicidologia'),
(106937, 'https://ror.org/03zfp3202', 'pt', 1, 'https://ror.org/03zfp3202 Centro de Estudos de Arquitectura e Urbanismo'),
(106938, 'https://ror.org/040f6xz90', 'en', 1, 'https://ror.org/040f6xz90 International Association of Advanced Materials Internationella fƶreningen fƶr avancerade material'),
(106939, 'https://ror.org/00cjaqb97', 'no_lang_code', 1, 'https://ror.org/00cjaqb97 CiviTest Pesquisa de Novos Materiais para a Engenharia Civil (Portugal)'),
(106940, 'https://ror.org/01tw4ag74', 'pt', 1, 'https://ror.org/01tw4ag74 Casa Fernando Pessoa'),
(106941, 'https://ror.org/03emx5713', 'pt', 1, 'https://ror.org/03emx5713 Centro CiĆŖncia Viva de Alviela'),
(106942, 'https://ror.org/0501pvx50', 'pt', 1, 'https://ror.org/0501pvx50 Biblioteca Victor de SĆ”'),
(106943, 'https://ror.org/016n0mr11', 'pt', 1, 'https://ror.org/016n0mr11 Diocese de Coimbra'),
(106944, 'https://ror.org/02008s973', 'en', 1, 'https://ror.org/02008s973 Govt. College Mananthavady'),
(106945, 'https://ror.org/02ff27430', 'en', 0, 'https://ror.org/02ff27430 KaposvƔri Egyetem University of KaposvƔr'),
(106946, 'https://ror.org/05vrgj110', 'en', 1, 'https://ror.org/05vrgj110 Baptist College of Theology, Obinze'),
(106947, 'https://ror.org/02xv42m49', 'en', 1, 'https://ror.org/02xv42m49 Ministry of Education Ministério da Educação'),
(106948, 'https://ror.org/00n8bph87', 'pt', 1, 'https://ror.org/00n8bph87 Sociedade Portuguesa de Psicologia da SaĆŗde'),
(106949, 'https://ror.org/05weqsy81', 'en', 1, 'https://ror.org/05weqsy81 CoLab4Food'),
(106950, 'https://ror.org/00qhsr941', 'pt', 1, 'https://ror.org/00qhsr941 Câmara Municipal de Águeda'),
(106951, 'https://ror.org/002wn1w29', 'pt', 1, 'https://ror.org/002wn1w29 Centro de Direito do Consumo'),
(106952, 'https://ror.org/01hyjmc38', 'pt', 1, 'https://ror.org/01hyjmc38 Sociedade Portuguesa de Ciências VeterinÔrias'),
(106953, 'https://ror.org/02bc09j30', 'no_lang_code', 1, 'https://ror.org/02bc09j30 Mercurius Health (Portugal) Mercurius Health, S.A.'),
(106954, 'https://ror.org/003fvp188', 'no_lang_code', 1, 'https://ror.org/003fvp188 Caixa Geral de Depositos Caixa Geral de Depositos (Portugal)'),
(106955, 'https://ror.org/00phccp77', 'pt', 1, 'https://ror.org/00phccp77 Camões - Instituto da Cooperação e da Língua'),
(106956, 'https://ror.org/00bjjqs38', 'fr', 1, 'https://ror.org/00bjjqs38 DƩlƩgation RhƓne Auvergne'),
(106957, 'https://ror.org/045rmt345', 'pt', 1, 'https://ror.org/045rmt345 Unidade Nacional de Gestão do Mecanismo Financeiro do Espaço Económico Europeu'),
(106958, 'https://ror.org/022g6pv04', 'en', 1, 'https://ror.org/022g6pv04 National University of Patagonia San Juan Bosco Universidad Nacional de la Patagonia San Juan Bosco'),
(106959, 'https://ror.org/03gbh4j43', 'no_lang_code', 1, 'https://ror.org/03gbh4j43 Tetra Pak (Portugal) Tetra Pak Portugal SA'),
(106960, 'https://ror.org/053sn3a32', 'en', 1, 'https://ror.org/053sn3a32 VectorB2B'),
(106961, 'https://ror.org/02zdscb63', 'en', 1, 'https://ror.org/02zdscb63 Thailand National Sports University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø²ąø£ąøąøµąø¬ąø²ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(106962, 'https://ror.org/04za5zm41', 'en', 1, 'https://ror.org/04za5zm41 University Hospital Carl Gustav Carus UniversitƤtsklinikum Carl Gustav Carus Dresden'),
(106963, 'https://ror.org/04kkx4y96', 'en', 1, 'https://ror.org/04kkx4y96 United Nations University'),
(106964, 'https://ror.org/0125qck59', 'pt', 1, 'https://ror.org/0125qck59 Republica Portuguesa Secretaria-Geral da Educação e Ciência'),
(106965, 'https://ror.org/039sn6527', 'no_lang_code', 1, 'https://ror.org/039sn6527 Sistemas do Futuro Multimédia Gestão e Arte (Portugal) Systems of the Future Multimedia Management and Art'),
(106966, 'https://ror.org/04shcr998', 'en', 1, 'https://ror.org/04shcr998 Shenzhen Municipal Human Resources and Social Security Bureau ę·±åœ³åø‚äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœå±€'),
(106967, 'https://ror.org/04q88r129', 'es', 1, 'https://ror.org/04q88r129 Instituto de GeofĆ­sica'),
(106968, 'https://ror.org/05ke5hb07', 'en', 1, 'https://ror.org/05ke5hb07 Paul Langerhans Institut Dresden Paul Langerhans Institute Dresden'),
(106969, 'https://ror.org/04437j066', 'en', 1, 'https://ror.org/04437j066 Solar System Exploration Research Virtual Institute'),
(106970, 'https://ror.org/057r2zn69', 'no_lang_code', 1, 'https://ror.org/057r2zn69 Biotronik (Portugal)'),
(106971, 'https://ror.org/028wqdr21', 'en', 1, 'https://ror.org/028wqdr21 Shodh Sagar Shodh Sagar (India)'),
(106972, 'https://ror.org/00xkg1h94', 'en', 1, 'https://ror.org/00xkg1h94 International Islamic Academy of Uzbekistan'),
(106973, 'https://ror.org/04a73z253', 'no_lang_code', 1, 'https://ror.org/04a73z253 UCB Pharma (Portugal)'),
(106974, 'https://ror.org/00bjc2870', 'pt', 1, 'https://ror.org/00bjc2870 Instituto Coordenador da Investigação'),
(106975, 'https://ror.org/04m2z6m32', 'pt', 1, 'https://ror.org/04m2z6m32 Biblioteca PĆŗblica de Braga'),
(106976, 'https://ror.org/02gte1z30', 'en', 1, 'https://ror.org/02gte1z30 North Caucasian State Academy Деверо-ŠšŠ°Š²ŠŗŠ°Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(106977, 'https://ror.org/04dzd0b05', 'no_lang_code', 1, 'https://ror.org/04dzd0b05 Forcerebrus Forcerebrus (Portugal)'),
(106978, 'https://ror.org/04yvax419', 'fr', 1, 'https://ror.org/04yvax419 Centre hospitalier universitaire d''OrlƩans'),
(106979, 'https://ror.org/03gdqbp47', 'en', 1, 'https://ror.org/03gdqbp47 Sharing Foundation'),
(106980, 'https://ror.org/03eyknf31', 'pt', 1, 'https://ror.org/03eyknf31 LISPOLIS - Associação para o Pólo Tecnológico de Lisboa'),
(106981, 'https://ror.org/02n2b6780', 'id', 1, 'https://ror.org/02n2b6780 Bahaudin Mudhary Madura University Universitas Bahaudin Mudhary Madura'),
(106982, 'https://ror.org/00w7whj55', 'de', 1, 'https://ror.org/00w7whj55 Berliner Hochschule für Technik'),
(106983, 'https://ror.org/00mdj5148', 'pt', 1, 'https://ror.org/00mdj5148 Beira Serra Associação de Desenvolvimento'),
(106984, 'https://ror.org/04qz4qy85', 'fr', 1, 'https://ror.org/04qz4qy85 Laboratoire de Recherche Historique RhƓne-Alpes'),
(106985, 'https://ror.org/00mvtb293', 'pt', 1, 'https://ror.org/00mvtb293 Comissão de Coordenação e Desenvolvimento Regional do Algarve'),
(106986, 'https://ror.org/05t810027', 'pt', 1, 'https://ror.org/05t810027 Central Clinic Povoa Santa Iria Clínica Central Póvoa Santa Iria (Portugal) Clínica Central Póvoa Santa Iria Lda Clínica Central Póvoa Santa Iria Lda (Portugal)'),
(106987, 'https://ror.org/04ya1kq07', 'fr', 1, 'https://ror.org/04ya1kq07 QuƩbec-OcƩan'),
(106988, 'https://ror.org/00ehghs54', 'pt', 1, 'https://ror.org/00ehghs54 Clínica Oftalmológica Rufino Ribeiro (Portugal) Clínica Oftalmológica Rufino Ribeiro SA Rufino Ribeiro Ophthalmic Clinic'),
(106989, 'https://ror.org/00zk88636', 'pt', 1, 'https://ror.org/00zk88636 Sociedade Portuguesa MƩdica de Acupunctura'),
(106990, 'https://ror.org/023y7c457', 'pt', 1, 'https://ror.org/023y7c457 AgĆŖncia DNA Cascais Cascais um concelho empreendedor'),
(106991, 'https://ror.org/05qqsty43', 'pt', 1, 'https://ror.org/05qqsty43 Centro de Estudos M Manuela Eloi International Language School Centro de Estudos M. Manuela Eloi International Language School'),
(106992, 'https://ror.org/052qcyn36', 'pt', 1, 'https://ror.org/052qcyn36 Centro de Formação Interação UBI Tecido Empresarial'),
(106993, 'https://ror.org/04b8yec33', 'pt', 1, 'https://ror.org/04b8yec33 Faust LĆ­ngua e Cultura'),
(106994, 'https://ror.org/015hr2538', 'pt', 1, 'https://ror.org/015hr2538 Centro de Investigação Interdisciplinar em Sanidade Animal'),
(106995, 'https://ror.org/01hnx7606', 'en', 1, 'https://ror.org/01hnx7606 Atmo France'),
(106996, 'https://ror.org/05wa8m537', 'no_lang_code', 1, 'https://ror.org/05wa8m537 AG da Cunha Ferreira (Portugal)'),
(106997, 'https://ror.org/01hyesf03', 'pt', 1, 'https://ror.org/01hyesf03 Centro de Matematica Aplicada à Previsão e Decisão Económica'),
(106998, 'https://ror.org/041etnv80', 'en', 1, 'https://ror.org/041etnv80 Regia-Douro Park'),
(106999, 'https://ror.org/02pwryp18', 'no_lang_code', 1, 'https://ror.org/02pwryp18 PHAGECON - Serviços e Consultoria Farmacêutica Ltd PHAGECON - Serviços e Consultoria Farmacêutica Ltd (Portugal)'),
(107000, 'https://ror.org/01a44wh51', 'no_lang_code', 1, 'https://ror.org/01a44wh51 SiliconGate (Portugal)'),
(107001, 'https://ror.org/03z3ft420', 'es', 1, 'https://ror.org/03z3ft420 Benemérito Instituto Normal del Estado "Gral. Juan Crisóstomo Bonilla"'),
(107002, 'https://ror.org/04sk0bj73', 'no_lang_code', 1, 'https://ror.org/04sk0bj73 Fresenius Medical Care (Germany)'),
(107003, 'https://ror.org/01fqrjt38', 'pt', 1, 'https://ror.org/01fqrjt38 Instituto Nacional de Investigação AgrÔria e VeterinÔria'),
(107004, 'https://ror.org/0597csq05', 'pt', 1, 'https://ror.org/0597csq05 Laboratório de Sistemas InformÔticos de Grande Escala'),
(107005, 'https://ror.org/02hx1fs81', 'pt', 1, 'https://ror.org/02hx1fs81 Centro de Investigação Formação Inovação e Intervenção em Desporto'),
(107006, 'https://ror.org/04b77dm91', 'pt', 1, 'https://ror.org/04b77dm91 Centro de Estudos HumanĆ­sticos'),
(107007, 'https://ror.org/01e9w2169', 'no_lang_code', 1, 'https://ror.org/01e9w2169 Muroplas Industria de Plasticos (Portugal) Muroplas Plastic Manufacturers'),
(107008, 'https://ror.org/00h9h4c14', 'en', 1, 'https://ror.org/00h9h4c14 Proplast Consortium for the Promotion of the Plastic Culture'),
(107009, 'https://ror.org/058p72x50', 'no_lang_code', 1, 'https://ror.org/058p72x50 AromƔticas Vivas (Portugal)'),
(107010, 'https://ror.org/0128w6917', 'en', 1, 'https://ror.org/0128w6917 University of Management and Technology'),
(107011, 'https://ror.org/05a8vs978', 'pt', 1, 'https://ror.org/05a8vs978 PORTUCALEA - Associação Florestal do Grande Porto'),
(107012, 'https://ror.org/00q4rrr38', 'pt', 1, 'https://ror.org/00q4rrr38 Escola Artística de Dança do Conservatório Nacional'),
(107013, 'https://ror.org/022hk8s78', 'pt', 1, 'https://ror.org/022hk8s78 Centro de Investigação em Serviço Social e Intervenção Social'),
(107014, 'https://ror.org/04agm8872', 'pt', 1, 'https://ror.org/04agm8872 DECO - Associação Portuguesa para a Defesa do Consumidor'),
(107015, 'https://ror.org/04xf77m96', 'pt', 1, 'https://ror.org/04xf77m96 Fundação António Quadros Cultura e Pensamento'),
(107016, 'https://ror.org/01qtksf33', 'no_lang_code', 1, 'https://ror.org/01qtksf33 AtralCipan AtralCipan (Portugal)'),
(107017, 'https://ror.org/00ssv5a91', 'pt', 1, 'https://ror.org/00ssv5a91 Casa de Sarmento'),
(107018, 'https://ror.org/051t7v989', 'pt', 1, 'https://ror.org/051t7v989 Laboratório de Educação a Distância e E-learning'),
(107019, 'https://ror.org/0435rc536', 'no_lang_code', 1, 'https://ror.org/0435rc536 Novo Nordisk (Denmark)'),
(107020, 'https://ror.org/045p37n96', 'en', 1, 'https://ror.org/045p37n96 National University Bangladesh ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(107021, 'https://ror.org/011fna123', 'en', 1, 'https://ror.org/011fna123 ACTRIS ARES Data Centre Unit'),
(107022, 'https://ror.org/0255mkf31', 'pt', 1, 'https://ror.org/0255mkf31 Agência para o Investimento e Comércio Externo de Portugal EPE'),
(107023, 'https://ror.org/044w2d669', 'no_lang_code', 1, 'https://ror.org/044w2d669 Vygon Portugal Vygon Portugal (Portugal)'),
(107024, 'https://ror.org/00v79re66', 'no_lang_code', 1, 'https://ror.org/00v79re66 Ferraz Lynce Especialidades FarmacĆŖuticas (Portugal) Ferraz Lynce Especialidades FarmacĆŖuticas, S.A. Ferraz Lynce Pharmaceutical Specialties'),
(107025, 'https://ror.org/00yeyhb94', 'tr', 1, 'https://ror.org/00yeyhb94 Antalya Bilim University Antalya Bilim Üniversitesi'),
(107026, 'https://ror.org/00b063968', 'en', 1, 'https://ror.org/00b063968 Health University of Applied Sciences Tyrol Zentrum fur Gesundheitsberufe Tirol'),
(107027, 'https://ror.org/057htmp57', 'en', 1, 'https://ror.org/057htmp57 Free Economic Society of Russia Š’Š¾Š»ŃŒŠ½Š¾Šµ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Šµ общество России'),
(107028, 'https://ror.org/00fem8f23', 'pt', 1, 'https://ror.org/00fem8f23 Rede Nacional de Espectrometria de Massa'),
(107029, 'https://ror.org/05cb5rq39', 'no_lang_code', 1, 'https://ror.org/05cb5rq39 Isurgical3D (Portugal)'),
(107030, 'https://ror.org/02gdy0611', 'no_lang_code', 1, 'https://ror.org/02gdy0611 Building Global Innovators (Portugal) Building Global Innovators, S.A.'),
(107031, 'https://ror.org/04yve5w51', 'en', 1, 'https://ror.org/04yve5w51 All India Institute of Medical Sciences Gorakhpur'),
(107032, 'https://ror.org/021wh8h68', 'fr', 1, 'https://ror.org/021wh8h68 Ambassade de France au Portugal'),
(107033, 'https://ror.org/00zxc2134', 'no_lang_code', 1, 'https://ror.org/00zxc2134 Nefrodial SAS Renal Unit Hemodialysis Service Unidad Renal Nefrodial SAS Servicio de HemodiƔlisis Unidad Renal Nefrodial SAS Servicio de HemodiƔlisis (Portugal)'),
(107034, 'https://ror.org/05shmma62', 'en', 1, 'https://ror.org/05shmma62 Institute of Public Health of Sabac Zavod za javno zdravlje Å abac'),
(107035, 'https://ror.org/04frnva71', 'en', 1, 'https://ror.org/04frnva71 World Climate Research Programme'),
(107036, 'https://ror.org/04fvb7v36', 'en', 1, 'https://ror.org/04fvb7v36 European Maritime Safety Agency'),
(107037, 'https://ror.org/04sg8wn78', 'no_lang_code', 1, 'https://ror.org/04sg8wn78 AEROMEC AEROMEC (Portugal)'),
(107038, 'https://ror.org/03vrb0p48', 'en', 1, 'https://ror.org/03vrb0p48 SciencePark Corporation SciencePark Corporation (Japan)'),
(107039, 'https://ror.org/05ngwf943', 'pt', 1, 'https://ror.org/05ngwf943 Instituto Superior TƩcnico Biblioteca'),
(107040, 'https://ror.org/01mx16184', 'no_lang_code', 1, 'https://ror.org/01mx16184 Rovensa Rovensa (Portugal)'),
(107041, 'https://ror.org/030bbe882', 'es', 1, 'https://ror.org/030bbe882 Universidad de la RepĆŗblica de Uruguay University of the Republic of Uruguay'),
(107042, 'https://ror.org/03hhrgn91', 'pt', 1, 'https://ror.org/03hhrgn91 Fundação Amélia de Mello'),
(107043, 'https://ror.org/01c730s93', 'pt', 1, 'https://ror.org/01c730s93 Universidade Virtual do Estado de SĆ£o Paulo'),
(107044, 'https://ror.org/03mhbwz88', 'pt', 1, 'https://ror.org/03mhbwz88 Centro PortuguĆŖs de Fotografia'),
(107045, 'https://ror.org/00fgvy228', 'no_lang_code', 1, 'https://ror.org/00fgvy228 OneVet Group OneVet Group (Portugal)'),
(107046, 'https://ror.org/029h91n25', 'pt', 1, 'https://ror.org/029h91n25 Sociedade Portuguesa de Ortopedia e Traumatologia'),
(107047, 'https://ror.org/03d5bdh78', 'pt', 1, 'https://ror.org/03d5bdh78 Prevenção RodoviÔria Portuguesa'),
(107048, 'https://ror.org/03nhgb791', 'pt', 1, 'https://ror.org/03nhgb791 Centro Protocolar de Formação Profissional para Jornalistas'),
(107049, 'https://ror.org/01vff2n71', 'en', 1, 'https://ror.org/01vff2n71 Value for Health CoLAB'),
(107050, 'https://ror.org/047b1nx71', 'pt', 1, 'https://ror.org/047b1nx71 Laboratório de Ciências do Mar'),
(107051, 'https://ror.org/04tb38061', 'no_lang_code', 1, 'https://ror.org/04tb38061 LeYa LeYa (Portugal)'),
(107052, 'https://ror.org/05chsdq22', 'pt', 1, 'https://ror.org/05chsdq22 Direção Regional de Agricultura e Pescas do Centro'),
(107053, 'https://ror.org/05e2mfb24', 'no_lang_code', 1, 'https://ror.org/05e2mfb24 medac (Portugal) medac Sucursal em Portugal'),
(107054, 'https://ror.org/01fhrjq14', 'no_lang_code', 1, 'https://ror.org/01fhrjq14 blueCAPE blueCAPE (Portugal)'),
(107055, 'https://ror.org/029mnbn96', 'en', 1, 'https://ror.org/029mnbn96 All India Institute of Medical Sciences Bhubaneswar'),
(107056, 'https://ror.org/02nvdf845', 'pt', 1, 'https://ror.org/02nvdf845 Sistema Nacional de Informação GeogrÔfica'),
(107057, 'https://ror.org/02fznj749', 'no_lang_code', 1, 'https://ror.org/02fznj749 Flying Sharks Consultoria e Inovação (Portugal) Sharks Consulting and Innovation'),
(107058, 'https://ror.org/004wjjr23', 'no_lang_code', 1, 'https://ror.org/004wjjr23 EAV-L-Arteriovenous-Lymphatic Studies EAV-L-Estudos ArtƩrio Veno-LinfƔticos (Portugal)'),
(107059, 'https://ror.org/02dycg053', 'pt', 1, 'https://ror.org/02dycg053 Escola Superior de Educação de João de Deus'),
(107060, 'https://ror.org/03sbb5035', 'pt', 1, 'https://ror.org/03sbb5035 MORE – Laboratório Colaborativo Montanhas de Investigação – Associação'),
(107061, 'https://ror.org/0125ne927', 'pt', 1, 'https://ror.org/0125ne927 Centro de Estudos de Desenvolvimento TurĆ­stico'),
(107062, 'https://ror.org/02hrbeb75', 'en', 1, 'https://ror.org/02hrbeb75 KeyLogic KeyLogic (United States)'),
(107063, 'https://ror.org/049dvyc65', 'fr', 0, 'https://ror.org/049dvyc65 Association des graduƩes et graduƩs en agriculture et alimentation'),
(107064, 'https://ror.org/03pdwzs13', 'pt', 1, 'https://ror.org/03pdwzs13 SerQ Centro de Inovação e Competências da Floresta'),
(107065, 'https://ror.org/01mn31a72', 'en', 0, 'https://ror.org/01mn31a72 Haute Ɖcole de Musique de Lausanne University of Music Lausanne'),
(107066, 'https://ror.org/04hrs9369', 'fr', 1, 'https://ror.org/04hrs9369 DƩlƩgation Languedoc Roussillon'),
(107067, 'https://ror.org/04gtv2261', 'pt', 1, 'https://ror.org/04gtv2261 Centro de Estudos AvanƧados em Direito Francisco SuƔrez'),
(107068, 'https://ror.org/03zca6435', 'pt', 1, 'https://ror.org/03zca6435 Laboratório de Software ConfiÔvel'),
(107069, 'https://ror.org/0290gp094', 'no_lang_code', 1, 'https://ror.org/0290gp094 Cromeleque Cromeleque (Portugal)'),
(107070, 'https://ror.org/00rd6jv12', 'no_lang_code', 1, 'https://ror.org/00rd6jv12 FƔbrica de Startups (Portugal) FƔbrica de Startups, S.A. Startups Factory'),
(107071, 'https://ror.org/012wvs044', 'pt', 1, 'https://ror.org/012wvs044 ASIC - Associação de Saúde Infantil de Coimbra'),
(107072, 'https://ror.org/03zqqwp43', 'en', 1, 'https://ror.org/03zqqwp43 All India Institute of Medical Sciences, Vijaypur, Jammu'),
(107073, 'https://ror.org/0285srj36', 'pt', 1, 'https://ror.org/0285srj36 Arquitectura Investigação e Desenvolvimento'),
(107074, 'https://ror.org/02rrt4f19', 'no_lang_code', 1, 'https://ror.org/02rrt4f19 ViiV Healthcare (Portugal)'),
(107075, 'https://ror.org/01yemhm44', 'no_lang_code', 1, 'https://ror.org/01yemhm44 CTI Clinical Trial and Consulting Services Lisbon Clinical Trial and Consulting (Portugal)'),
(107076, 'https://ror.org/04c4dkn09', 'en', 1, 'https://ror.org/04c4dkn09 University of Science and Technology of China äø­å›½ē§‘å­¦ęŠ€ęœÆå¤§å­¦'),
(107077, 'https://ror.org/04bmnmq75', 'no_lang_code', 1, 'https://ror.org/04bmnmq75 Companhia das LezĆ­rias (Portugal) Companhia das LezĆ­rias, S.A.'),
(107078, 'https://ror.org/00nea6d84', 'no_lang_code', 1, 'https://ror.org/00nea6d84 Farcimar SGPS (Portugal) Farcimar SGPS, S.A.'),
(107079, 'https://ror.org/01tqb7m13', 'en', 1, 'https://ror.org/01tqb7m13 WCRP-ESMO International Project Office'),
(107080, 'https://ror.org/053r7b732', 'no_lang_code', 1, 'https://ror.org/053r7b732 ASCENZA ASCENZA AGRO (Portugal) ASCENZA AGRO, S.A.'),
(107081, 'https://ror.org/04mfscn60', 'no_lang_code', 1, 'https://ror.org/04mfscn60 Family Health Unit Alphamouro Unidade de SaĆŗde Familiar Alphamouro Unidade de SaĆŗde Familiar Alphamouro (Portugal)'),
(107082, 'https://ror.org/00fhq7034', 'it', 1, 'https://ror.org/00fhq7034 Iridra Srl Iridra Srl (Italy)'),
(107083, 'https://ror.org/00aztm892', 'no_lang_code', 1, 'https://ror.org/00aztm892 Direct e Quixa Seguros y Reaseguros SAU Portugal Branch Direct e Quixa Seguros y Reaseguros SAU Sucursal em Portugal Direct e Quixa Seguros y Reaseguros SAU Sucursal em Portugal (Portugal)'),
(107084, 'https://ror.org/05mm0t389', 'pt', 1, 'https://ror.org/05mm0t389 Escola de Pós-Graduação e Formação Avançada'),
(107085, 'https://ror.org/00j09zy03', 'pt', 1, 'https://ror.org/00j09zy03 Universidade Católica Portuguesa - Braga'),
(107086, 'https://ror.org/046swdx52', 'pt', 1, 'https://ror.org/046swdx52 CECOLAB'),
(107087, 'https://ror.org/01swxpd40', 'no_lang_code', 1, 'https://ror.org/01swxpd40 ADDSOLUTIONS ADDSOLUTIONS (Portugal)'),
(107088, 'https://ror.org/00dvt2119', 'pt', 1, 'https://ror.org/00dvt2119 Câmara Municipal da Covilhã'),
(107089, 'https://ror.org/01s3q7074', 'en', 1, 'https://ror.org/01s3q7074 Sree Narayana College, Punalur'),
(107090, 'https://ror.org/05fk72r68', 'en', 1, 'https://ror.org/05fk72r68 Esfarayen University of Technology Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ ŁŁ†ŪŒ و Ł…Ł‡Ł†ŲÆŲ³ŪŒ Ų§Ų³ŁŲ±Ų§ŪŒŁ†'),
(107091, 'https://ror.org/02weesc23', 'en', 1, 'https://ror.org/02weesc23 Worldwide Hospice Palliative Care Alliance'),
(107092, 'https://ror.org/03kpr8w05', 'pt', 1, 'https://ror.org/03kpr8w05 Sociedade Portuguesa de Ciências da Nutrição e Alimentação'),
(107093, 'https://ror.org/01nxcd525', 'pt', 1, 'https://ror.org/01nxcd525 Laboratório de Plasmas Hipersónicos'),
(107094, 'https://ror.org/04fkwzm96', 'eu', 1, 'https://ror.org/04fkwzm96 Donostiako Unibertsitate Ospitalea Hospital Universitario de Donostia University Hospital Donostia'),
(107095, 'https://ror.org/04psz6g86', 'en', 1, 'https://ror.org/04psz6g86 International Lead and Zinc Study Group'),
(107096, 'https://ror.org/048xgyx59', 'no_lang_code', 1, 'https://ror.org/048xgyx59 Maria Design Maria Design (Portugal)'),
(107097, 'https://ror.org/00mgss748', 'no_lang_code', 1, 'https://ror.org/00mgss748 3M (United States)'),
(107098, 'https://ror.org/02nyh5931', 'pt', 1, 'https://ror.org/02nyh5931 Sociedade Portuguesa de Anatomia Patológica'),
(107099, 'https://ror.org/03qk8fz33', 'en', 1, 'https://ror.org/03qk8fz33 Kauno Kolegija Kauno kolegija Higher Education Institution'),
(107100, 'https://ror.org/003346y56', 'en', 1, 'https://ror.org/003346y56 Ispahani Islamia Eye Institute and Hospital'),
(107101, 'https://ror.org/04t6b9824', 'pt', 1, 'https://ror.org/04t6b9824 Arquidiocese de Braga'),
(107102, 'https://ror.org/02bt8f617', 'pt', 1, 'https://ror.org/02bt8f617 Culturgest - Fundação Caixa Geral de Depósitos Culturgest'),
(107103, 'https://ror.org/016adfh43', 'pt', 1, 'https://ror.org/016adfh43 Universidade de Coimbra Imprensa'),
(107104, 'https://ror.org/0279bkg17', 'no_lang_code', 1, 'https://ror.org/0279bkg17 Frotcom International (Portugal)'),
(107105, 'https://ror.org/05pm2wj74', 'en', 1, 'https://ror.org/05pm2wj74 Royal School of Languages'),
(107106, 'https://ror.org/03r3mh697', 'pt', 1, 'https://ror.org/03r3mh697 Núcleo de Investigação Científica de Incêndios Florestais'),
(107107, 'https://ror.org/04etzz842', 'pt', 1, 'https://ror.org/04etzz842 Instituto de Direito Penal e CiĆŖncias Criminais'),
(107108, 'https://ror.org/00j3wcb35', 'fr', 1, 'https://ror.org/00j3wcb35 Atmo Hauts-de-France'),
(107109, 'https://ror.org/035pqrt53', 'pt', 1, 'https://ror.org/035pqrt53 Sociedade CientĆ­fica de Pedagogia do Desporto'),
(107110, 'https://ror.org/020hp3377', 'pt', 1, 'https://ror.org/020hp3377 Centro de Astrofísica e Gravitação'),
(107111, 'https://ror.org/058kv9q68', 'pt', 1, 'https://ror.org/058kv9q68 Centro de MatemƔtica'),
(107112, 'https://ror.org/05qz1p375', 'es', 1, 'https://ror.org/05qz1p375 Centro de Estudios Sociales de AmƩrica Latina'),
(107113, 'https://ror.org/03014md85', 'es', 1, 'https://ror.org/03014md85 Jardƭn BotƔnico de Missouri'),
(107114, 'https://ror.org/02w1qb116', 'pt', 1, 'https://ror.org/02w1qb116 CĆ¢mara Municipal de Vila do Conde'),
(107115, 'https://ror.org/00s8nav02', 'no_lang_code', 1, 'https://ror.org/00s8nav02 Upstream Portugal Upstream Portugal (Portugal)'),
(107116, 'https://ror.org/058z19632', 'pt', 1, 'https://ror.org/058z19632 Sociedade Portuguesa de Imunologia'),
(107117, 'https://ror.org/05y2y7178', 'en', 1, 'https://ror.org/05y2y7178 Fun Languages'),
(107118, 'https://ror.org/02z15rc45', 'pt', 1, 'https://ror.org/02z15rc45 Casa do Douro Federação Renovação do Douro'),
(107119, 'https://ror.org/0220vsn27', 'pt', 1, 'https://ror.org/0220vsn27 FeedInov'),
(107120, 'https://ror.org/023gbj611', 'pt', 1, 'https://ror.org/023gbj611 Sociedade Portuguesa de Ecologia'),
(107121, 'https://ror.org/005a50d87', 'en', 1, 'https://ror.org/005a50d87 MagIC'),
(107122, 'https://ror.org/00w1ah179', 'en', 1, 'https://ror.org/00w1ah179 Jabalpur Engineering College ą¤œą¤¬ą¤²ą¤Ŗą„ą¤° ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(107123, 'https://ror.org/032p0ce74', 'pt', 1, 'https://ror.org/032p0ce74 Instituto Português de Relações Internacionais'),
(107124, 'https://ror.org/000trq935', 'en', 1, 'https://ror.org/000trq935 All India Institute of Medical Sciences Bibinagar'),
(107125, 'https://ror.org/02bpcpj94', 'pt', 1, 'https://ror.org/02bpcpj94 Sociedade Portuguesa de BioquĆ­mica'),
(107126, 'https://ror.org/02v9e1947', 'no_lang_code', 1, 'https://ror.org/02v9e1947 Equigerminal Equigerminal (Portugal)'),
(107127, 'https://ror.org/025e1z063', 'en', 1, 'https://ror.org/025e1z063 B.E.S.T Innovation University'),
(107128, 'https://ror.org/049dk3691', 'en', 1, 'https://ror.org/049dk3691 Marine Biodiversity Exploitation and Conservation'),
(107129, 'https://ror.org/05ddx0m09', 'en', 1, 'https://ror.org/05ddx0m09 Research Infrastructure on Integration of Solar Energy Systems in Buildings'),
(107130, 'https://ror.org/05px0fc16', 'no_lang_code', 1, 'https://ror.org/05px0fc16 Jose Maria da Fonseca Wines JosƩ Maria da Fonseca Vinhos (Portugal) JosƩ Maria da Fonseca Vinhos, S.A.'),
(107131, 'https://ror.org/04dqnye44', 'pt', 1, 'https://ror.org/04dqnye44 Administração Regional de Saúde do Alentejo IP'),
(107132, 'https://ror.org/029e9dn69', 'pt', 1, 'https://ror.org/029e9dn69 Sociedade Portuguesa de Neuropsicologia'),
(107133, 'https://ror.org/05pv70v72', 'no_lang_code', 1, 'https://ror.org/05pv70v72 Exigo Consultants Exigo Consultores Exigo Consultores (Portugal)'),
(107134, 'https://ror.org/04m8g9b03', 'pt', 1, 'https://ror.org/04m8g9b03 Centro CiĆŖncia Viva do Algarve'),
(107135, 'https://ror.org/02kdcg676', 'pt', 1, 'https://ror.org/02kdcg676 Museu de Arte Arquitetura e Tecnologia'),
(107136, 'https://ror.org/025324638', 'en', 1, 'https://ror.org/025324638 Food4Sustainability CoLAB'),
(107137, 'https://ror.org/03qegbj54', 'no_lang_code', 1, 'https://ror.org/03qegbj54 Ar Telecom Ar Telecom (Portugal)'),
(107138, 'https://ror.org/03f8vdc52', 'no_lang_code', 1, 'https://ror.org/03f8vdc52 Valorsul Valorsul (Portugal)'),
(107139, 'https://ror.org/03r0dz519', 'pt', 1, 'https://ror.org/03r0dz519 Centro de Investigação em Psicologia para o Desenvolvimento'),
(107140, 'https://ror.org/03mef8k70', 'no_lang_code', 1, 'https://ror.org/03mef8k70 Startup Braga Startup Braga (Portugal)'),
(107141, 'https://ror.org/03ncgk335', 'pt', 1, 'https://ror.org/03ncgk335 CĆ¢mara Municipal de Santa Maria da Feira'),
(107142, 'https://ror.org/01w4gn737', 'en', 1, 'https://ror.org/01w4gn737 All India Institute of Medical Sciences, Nagpur'),
(107143, 'https://ror.org/041cyvf45', 'en', 1, 'https://ror.org/041cyvf45 Amsterdam Reproduction Development'),
(107144, 'https://ror.org/05c7r3091', 'pt', 1, 'https://ror.org/05c7r3091 Instituto de Investigação em Arte Design e Sociedade'),
(107145, 'https://ror.org/04nk3ny21', 'fr', 1, 'https://ror.org/04nk3ny21 Centre d''Investigation Clinique de BesanƧon'),
(107146, 'https://ror.org/058ytyc05', 'pt', 1, 'https://ror.org/058ytyc05 Sociedade Portuguesa de Défice de Atenção'),
(107147, 'https://ror.org/03wv9bq39', 'pt', 1, 'https://ror.org/03wv9bq39 Sociedade Portuguesa de Cirurgia'),
(107148, 'https://ror.org/0311zw396', 'pt', 1, 'https://ror.org/0311zw396 Centro de Direito BiomƩdico'),
(107149, 'https://ror.org/01c8th393', 'es', 1, 'https://ror.org/01c8th393 Centro de Investigaciones Históricas, Antropológicas y Culturales - AIP'),
(107150, 'https://ror.org/05wke6r62', 'pt', 1, 'https://ror.org/05wke6r62 Centro de Ɖtica Polƭtica e Sociedade'),
(107151, 'https://ror.org/04gnwaz35', 'pt', 1, 'https://ror.org/04gnwaz35 Paróquia de Nossa Senhora do Cabo de Linda-a-Velha'),
(107152, 'https://ror.org/01cgw9e63', 'no_lang_code', 1, 'https://ror.org/01cgw9e63 Amkor Technology (Portugal) Amkor Technology Portugal SA'),
(107153, 'https://ror.org/04mnzd349', 'pt', 1, 'https://ror.org/04mnzd349 Escola de Moda do Porto'),
(107154, 'https://ror.org/04s42pp05', 'pt', 1, 'https://ror.org/04s42pp05 Sociedade Portuguesa para o Estudo da SaĆŗde Mental'),
(107155, 'https://ror.org/03kve7z42', 'en', 1, 'https://ror.org/03kve7z42 Bangladesh Institute of Law and International Affairs বাংলাদেশ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ল'' ą¦ą¦Øą§ą¦” ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦…ą§ą¦Æą¦¾ą¦«ą§‡ą§Ÿą¦¾ą¦°ą§ą¦ø'),
(107156, 'https://ror.org/027arzy69', 'fr', 1, 'https://ror.org/027arzy69 Centre Hospitalier Universitaire de Caen Normandie'),
(107157, 'https://ror.org/04gd5dx40', 'no_lang_code', 1, 'https://ror.org/04gd5dx40 Dinabook National Book Distributor Dinalivro Distribuidora Nacional de Livros (Portugal)'),
(107158, 'https://ror.org/01w3k3276', 'pt', 1, 'https://ror.org/01w3k3276 Centro de Estudos Africanos'),
(107159, 'https://ror.org/00ayt3w58', 'pt', 1, 'https://ror.org/00ayt3w58 CĆ¢mara Municipal de Cascais'),
(107160, 'https://ror.org/00e58fv15', 'pt', 1, 'https://ror.org/00e58fv15 Rede de Investigação em Biodiversidade e Biologia Evolutiva'),
(107161, 'https://ror.org/04hehwn14', 'es', 1, 'https://ror.org/04hehwn14 Catholic University of Córdoba Katholische Universität Córdoba Universidad Católica de Córdoba Université Catholique de Cordoba'),
(107162, 'https://ror.org/05tv32x62', 'no_lang_code', 1, 'https://ror.org/05tv32x62 Success Gadget Nanotechnology and New Materials Success Gadget Nanotecnologia e Novos Materiais (Portugal)'),
(107163, 'https://ror.org/05v7vr423', 'pt', 1, 'https://ror.org/05v7vr423 Sociedade Portuguesa de Antropologia e Etnologia'),
(107164, 'https://ror.org/03vq6aj50', 'en', 1, 'https://ror.org/03vq6aj50 Sindh Institute of Ophthalmology & Visual Sciences (SIOVS)'),
(107165, 'https://ror.org/004z7y014', 'en', 1, 'https://ror.org/004z7y014 National Medical Institute of the Ministry of Interior and Administration Państwowy Instytut Medyczny Ministerstwa Spraw Wewnętrznych i Administracji'),
(107166, 'https://ror.org/05x3m4218', 'en', 1, 'https://ror.org/05x3m4218 BGI Research, Wuhan ę­¦ę±‰åŽå¤§ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(107167, 'https://ror.org/03zbd1c48', 'no_lang_code', 1, 'https://ror.org/03zbd1c48 Neurowave (Portugal)'),
(107168, 'https://ror.org/003b7tf67', 'fr', 1, 'https://ror.org/003b7tf67 Centre Universitaire Morsli Abdellah de Tipaza Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł…Ų±Ų³Ł„ŁŠ Ų¹ŲØŲÆ الله تيبازة الجزائر'),
(107169, 'https://ror.org/02xnrmy62', 'no_lang_code', 1, 'https://ror.org/02xnrmy62 Korn Ferry Lisbon Korn Ferry Lisbon (Portugal)'),
(107170, 'https://ror.org/02vw4rj70', 'en', 1, 'https://ror.org/02vw4rj70 Kyrgyz National Agrarian University named after K.I. Skryabin ŠšŃ‹Ń€Š³Ń‹Š· ŃƒŠ»ŃƒŃ‚Ń‚ŃƒŠŗ аграрГык ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø К. И. Š”ŠŗŃ€ŃŠ±ŠøŠ½ атынГагы ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. К.И.Š”ŠŗŃ€ŃŠ±ŠøŠ½Š°'),
(107171, 'https://ror.org/055g3mw61', 'pt', 1, 'https://ror.org/055g3mw61 CĆ¢mara Municipal de Ɖvora'),
(107172, 'https://ror.org/005stwr12', 'no_lang_code', 1, 'https://ror.org/005stwr12 Lidel EdiƧƵes TƩcnicas (Portugal) Lidel Technical Editions'),
(107173, 'https://ror.org/02vtvez67', 'en', 1, 'https://ror.org/02vtvez67 Science and Technology Department of Xinjiang Uyghur Autonomous Region ؓىنجاڭ Ų¦Ū‡ŁŠŲŗŪ‡Ų± Ų¦Ų§Ł¾ŲŖŁˆŁ†ŁˆŁ… Ų±Ų§ŁŠŁˆŁ†Ł„Ū‡Ł‚ Ł¾Ū•Ł†ā€“ŲŖŪŲ®Ł†Ł‰ŁƒŲ§ نازارىتى ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(107174, 'https://ror.org/02wyjqf34', 'pt', 1, 'https://ror.org/02wyjqf34 Vasco da Gama CoLAB'),
(107175, 'https://ror.org/042wjdg05', 'de', 1, 'https://ror.org/042wjdg05 Hannah-Arendt-Institut für Totalitarismusforschung e.V. an der TU Dresden'),
(107176, 'https://ror.org/015fxwh80', 'en', 1, 'https://ror.org/015fxwh80 International Committee on Taxonomy of Viruses'),
(107177, 'https://ror.org/03wax1305', 'pt', 1, 'https://ror.org/03wax1305 Instituto de Direito Penal Económico e Europeu'),
(107178, 'https://ror.org/00zrtnw53', 'no_lang_code', 1, 'https://ror.org/00zrtnw53 ChemiTek - Quƭmica AvanƧada (Portugal) ChemiTek - Quƭmica AvanƧada, S.A.'),
(107179, 'https://ror.org/05j2f5w22', 'pt', 1, 'https://ror.org/05j2f5w22 Sistema Nacional de Informação de Recursos Hídricos'),
(107180, 'https://ror.org/04rk2jc83', 'pt', 1, 'https://ror.org/04rk2jc83 União da Floresta Mediterrânica'),
(107181, 'https://ror.org/03em9qx04', 'no_lang_code', 1, 'https://ror.org/03em9qx04 AbbVie (Portugal)'),
(107182, 'https://ror.org/014ft4k69', 'en', 1, 'https://ror.org/014ft4k69 Aviation and Aerospace University, Bangladesh ą¦…ą§ą¦Æą¦¾ą¦­ą¦æą¦Æą¦¼ą§‡ą¦¶ą¦Ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦…ą§ą¦Æą¦¾ą¦°ą§‹ą¦øą§ą¦Ŗą§‡ą¦ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼, বাংলাদেশ'),
(107183, 'https://ror.org/00zy84838', 'pt', 1, 'https://ror.org/00zy84838 Centro de AnÔlise MatemÔtica Geometria e Sistemas Dinâmicos'),
(107184, 'https://ror.org/018hh3649', 'en', 1, 'https://ror.org/018hh3649 Dravet Syndrome Foundation'),
(107185, 'https://ror.org/05hrn3e05', 'en', 1, 'https://ror.org/05hrn3e05 Center for Systems Biology Dresden'),
(107186, 'https://ror.org/04dmd4321', 'pt', 1, 'https://ror.org/04dmd4321 Conselho Científico-Pedagógico da Formação Contínua'),
(107187, 'https://ror.org/024zy9450', 'en', 1, 'https://ror.org/024zy9450 ACTRIS Czech Republic ACTRIS – ĆŗÄast ČeskĆ© republiky'),
(107188, 'https://ror.org/00qcpjs09', 'de', 1, 'https://ror.org/00qcpjs09 Klinikum Gƶrlitz'),
(107189, 'https://ror.org/01dnwt956', 'en', 1, 'https://ror.org/01dnwt956 Naval Research Laboratory Tactical Electronic Warfare Division'),
(107190, 'https://ror.org/024yq7p07', 'no_lang_code', 1, 'https://ror.org/024yq7p07 Joane Family Health Unit Unidade de SaĆŗde Familiar Joane Unidade de SaĆŗde Familiar Joane (Portugal)'),
(107191, 'https://ror.org/059sbnj83', 'en', 1, 'https://ror.org/059sbnj83 Sona College of Technology'),
(107192, 'https://ror.org/03b6n4p76', 'pt', 1, 'https://ror.org/03b6n4p76 CĆ¢mara Municipal de Tondela'),
(107193, 'https://ror.org/05b2rqw66', 'no_lang_code', 1, 'https://ror.org/05b2rqw66 Partex Oil and Gas Holdings Corp Partex Oil and Gas Holdings Corp (Portugal)'),
(107194, 'https://ror.org/01965sc27', 'pt', 1, 'https://ror.org/01965sc27 Câmara Municipal do Fundão'),
(107195, 'https://ror.org/05scq4290', 'no_lang_code', 1, 'https://ror.org/05scq4290 DXC Technology (United States)'),
(107196, 'https://ror.org/00zgs5r70', 'pt', 1, 'https://ror.org/00zgs5r70 Centro de Investigação em Teologia e Estudos da Religião'),
(107197, 'https://ror.org/04pzdfg37', 'pt', 1, 'https://ror.org/04pzdfg37 Centro de Toxicogenómica e Saúde Humana'),
(107198, 'https://ror.org/03w3e5q61', 'pt', 1, 'https://ror.org/03w3e5q61 Junta de Freguesia de SĆ£o Domingos de Benfica'),
(107199, 'https://ror.org/034e9s822', 'fr', 1, 'https://ror.org/034e9s822 SociƩtƩ ArithmƩtique de Bordeaux'),
(107200, 'https://ror.org/01330v142', 'pt', 1, 'https://ror.org/01330v142 Comunidade Intermunicipal do Alto TĆ¢mega e Barroso'),
(107201, 'https://ror.org/04kkyet53', 'en', 1, 'https://ror.org/04kkyet53 ESSCA School of Management'),
(107202, 'https://ror.org/02qdtzh46', 'pt', 1, 'https://ror.org/02qdtzh46 Centro de Instrumentação Científica'),
(107203, 'https://ror.org/05c68ap48', 'pt', 1, 'https://ror.org/05c68ap48 Centro de Investigação Paula Frassinetti'),
(107204, 'https://ror.org/04n0tpv32', 'no_lang_code', 1, 'https://ror.org/04n0tpv32 J. Pereira da Cruz, S.A .(Portugal)'),
(107205, 'https://ror.org/024nbhd47', 'pt', 1, 'https://ror.org/024nbhd47 Centro de Documentação Europeia'),
(107206, 'https://ror.org/04atb9h07', 'en', 1, 'https://ror.org/04atb9h07 Amsterdam Movement Sciences'),
(107207, 'https://ror.org/027hz7j04', 'no_lang_code', 1, 'https://ror.org/027hz7j04 Sistemas e Informação GeogrÔfica, S.A. (Portugal)'),
(107208, 'https://ror.org/0431cxf05', 'en', 1, 'https://ror.org/0431cxf05 SPI Research Centre'),
(107209, 'https://ror.org/019nshe08', 'pt', 1, 'https://ror.org/019nshe08 Museu Nacional Soares dos Reis'),
(107210, 'https://ror.org/024fhbm82', 'en', 1, 'https://ror.org/024fhbm82 Baikal State University Байгалийн Улсын Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŠøŠ¹Š³ Š‘Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ č“åŠ å°”å›½ē«‹å¤§å­¦'),
(107211, 'https://ror.org/02d4bgz76', 'pt', 1, 'https://ror.org/02d4bgz76 Aerogare Civil das Lajes'),
(107212, 'https://ror.org/02rrmmh31', 'no_lang_code', 1, 'https://ror.org/02rrmmh31 MPO Portugal (Portugal)'),
(107213, 'https://ror.org/038f7y939', 'nl', 1, 'https://ror.org/038f7y939 Universitair Ziekenhuis Brussel'),
(107214, 'https://ror.org/033003e23', 'en', 1, 'https://ror.org/033003e23 Tampere University Tampereen Yliopisto'),
(107215, 'https://ror.org/02mp3jf37', 'pt', 1, 'https://ror.org/02mp3jf37 Sociedade Portuguesa de Geotecnia'),
(107216, 'https://ror.org/05k0jdv03', 'pt', 1, 'https://ror.org/05k0jdv03 Pólo de Inovação em Engenharia de Polímeros'),
(107217, 'https://ror.org/0269he949', 'pt', 1, 'https://ror.org/0269he949 Instituto de Direito Económico Financeiro e Fiscal'),
(107218, 'https://ror.org/00va36f15', 'en', 1, 'https://ror.org/00va36f15 Zhejiang Provincial Health Commission ęµ™ę±Ÿēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(107219, 'https://ror.org/03dspf496', 'no_lang_code', 1, 'https://ror.org/03dspf496 McKinsey and Company (Portugal)'),
(107220, 'https://ror.org/01hw1ck36', 'en', 1, 'https://ror.org/01hw1ck36 All India Institute of Medical Sciences, Rajkot'),
(107221, 'https://ror.org/02j226352', 'pt', 1, 'https://ror.org/02j226352 Instituto de Historia da Arte'),
(107222, 'https://ror.org/00g7xqw85', 'ro', 1, 'https://ror.org/00g7xqw85 Ecological University of Bucharest Universitatea Ecologica din Bucuresti Universitatea Ecologică Din Bucureşti'),
(107223, 'https://ror.org/017sdcr35', 'no_lang_code', 1, 'https://ror.org/017sdcr35 Cabopol Polymer Compounds (Portugal) Cabopol Polymer Compounds, S.A.'),
(107224, 'https://ror.org/02r8aws92', 'no_lang_code', 1, 'https://ror.org/02r8aws92 Servier Portugal Especialidades FarmacĆŖuticas (Portugal) Servier Portugal Pharmaceutical Specialties'),
(107225, 'https://ror.org/00jkr8r49', 'es', 1, 'https://ror.org/00jkr8r49 Program for the Development of Basic Sciences Programa de Desarrollo de las Ciencias BƔsicas'),
(107226, 'https://ror.org/00gtmwv55', 'no_lang_code', 1, 'https://ror.org/00gtmwv55 Bristol-Myers Squibb (United States)'),
(107227, 'https://ror.org/01astzd61', 'pt', 1, 'https://ror.org/01astzd61 Ar.Co Centro de Arte e Comunicação Visual'),
(107228, 'https://ror.org/02rt0vs64', 'en', 1, 'https://ror.org/02rt0vs64 Washington State Department of Enterprise Services'),
(107229, 'https://ror.org/02qy1gq34', 'pt', 1, 'https://ror.org/02qy1gq34 Centro de Gestão Empresa Agrícola Entre Douro e CÓa'),
(107230, 'https://ror.org/03ksm1d77', 'pt', 1, 'https://ror.org/03ksm1d77 Fundação Átrio da Música'),
(107231, 'https://ror.org/05djkc225', 'no_lang_code', 1, 'https://ror.org/05djkc225 Daiichi Sankyo (Portugal)'),
(107232, 'https://ror.org/01kcw0y52', 'pt', 1, 'https://ror.org/01kcw0y52 Reactor Português de Investigação'),
(107233, 'https://ror.org/026mcrn69', 'pt', 1, 'https://ror.org/026mcrn69 Federação Portuguesa de Futebol'),
(107234, 'https://ror.org/05ee6mp02', 'pt', 1, 'https://ror.org/05ee6mp02 Centro de Arqueologia'),
(107235, 'https://ror.org/008e8k888', 'fr', 1, 'https://ror.org/008e8k888 Structure FƩdƩrative de Recherche Biosciences'),
(107236, 'https://ror.org/03nr2fs68', 'en', 1, 'https://ror.org/03nr2fs68 NOVA School of Business and Economics'),
(107237, 'https://ror.org/011jef648', 'pt', 1, 'https://ror.org/011jef648 Direção Regional da Cultura'),
(107238, 'https://ror.org/033ncjh92', 'pt', 1, 'https://ror.org/033ncjh92 Observatório de Economia e Gestão de Fraude'),
(107239, 'https://ror.org/04fjf3434', 'no_lang_code', 1, 'https://ror.org/04fjf3434 Carlos Pinto de Abreu and Associates Carlos Pinto de Abreu e Associados Carlos Pinto de Abreu e Associados (Portugal)'),
(107240, 'https://ror.org/0543jzn83', 'pt', 1, 'https://ror.org/0543jzn83 Fórum Oceano Associação da Economia do Mar'),
(107241, 'https://ror.org/03sssya70', 'no_lang_code', 1, 'https://ror.org/03sssya70 CAETSU TWO CAETSU TWO (Portugal)'),
(107242, 'https://ror.org/04hasps36', 'en', 1, 'https://ror.org/04hasps36 ALT Университет имени ŠœŃƒŃ…амеГжана Š¢Ń‹Š½Ń‹ŃˆŠæŠ°ŠµŠ²Š° Mukhametzhan Tynyshbayev ALT University ŠœŅ±Ń…Š°Š¼ŠµŃ‚Š¶Š°Š½ Š¢Ń‹Š½Ń‹ŃˆŠ±Š°ŠµŠ² атынГағы ALT ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(107243, 'https://ror.org/05bd5qd97', 'pt', 1, 'https://ror.org/05bd5qd97 Escola Artística do Conservatório de Música Calouste Gulbenkian de Braga'),
(107244, 'https://ror.org/00zn13224', 'fr', 1, 'https://ror.org/00zn13224 Interactions HÓtes-Pathogènes-Environnements'),
(107245, 'https://ror.org/017hnb609', 'en', 1, 'https://ror.org/017hnb609 HódmezővĆ”sĆ”rhely-Makó Healthcare Center HódmezővĆ”sĆ”rhelyi-Makói EgĆ©szsĆ©gügyi Kƶzpont'),
(107246, 'https://ror.org/04xb2d077', 'pt', 1, 'https://ror.org/04xb2d077 Instituto de Estudos Medievais'),
(107247, 'https://ror.org/04e3ebx16', 'pt', 1, 'https://ror.org/04e3ebx16 Observatório do Mar dos Açores'),
(107248, 'https://ror.org/01j7nv178', 'en', 1, 'https://ror.org/01j7nv178 BUILT CoLAB'),
(107249, 'https://ror.org/041gev667', 'no_lang_code', 1, 'https://ror.org/041gev667 PricewaterhouseCoopers (United Kingdom)'),
(107250, 'https://ror.org/039qn6p62', 'en', 1, 'https://ror.org/039qn6p62 Institute of Advanced Materials');
INSERT INTO `rors` VALUES
(107251, 'https://ror.org/04m9s0y85', 'pt', 1, 'https://ror.org/04m9s0y85 Cooperativa de Ensino UniversitƔrio CRL'),
(107252, 'https://ror.org/05g289n53', 'no_lang_code', 1, 'https://ror.org/05g289n53 Distrifarma Companhia de Distribuição Farmacêutica (Portugal) Distrifarma Companhia de Distribuição Farmacêutica, S.A. Distrifarma Pharmaceutical Distribution Company'),
(107253, 'https://ror.org/02yqqg594', 'no_lang_code', 1, 'https://ror.org/02yqqg594 Servensino (Portugal)'),
(107254, 'https://ror.org/04ga8mt87', 'pt', 1, 'https://ror.org/04ga8mt87 Plataforma Tecnológica Portuguesa da Construção'),
(107255, 'https://ror.org/00kkpv737', 'en', 1, 'https://ror.org/00kkpv737 Complexity and Topology in Quantum Matter'),
(107256, 'https://ror.org/00eg0ep76', 'pt', 1, 'https://ror.org/00eg0ep76 Sociedade Portuguesa de Enfermagem Oncológica'),
(107257, 'https://ror.org/04xr90796', 'no_lang_code', 1, 'https://ror.org/04xr90796 Mulher Avestruz ProduƧƵes e Eventos (Portugal) Ostrich Woman Productions and Events'),
(107258, 'https://ror.org/02xt0e812', 'en', 1, 'https://ror.org/02xt0e812 Tashkent International University Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет'),
(107259, 'https://ror.org/00x75sk82', 'en', 1, 'https://ror.org/00x75sk82 Houston Christian University'),
(107260, 'https://ror.org/03x895t47', 'fr', 1, 'https://ror.org/03x895t47 Edition, LittƩratures, Langages, Informatique, Arts, Didactiques, Discours'),
(107261, 'https://ror.org/02p5nh382', 'pt', 1, 'https://ror.org/02p5nh382 SPACE Portugal'),
(107262, 'https://ror.org/04kdvm687', 'no_lang_code', 1, 'https://ror.org/04kdvm687 Blue Geo Lighthouse (Portugal)'),
(107263, 'https://ror.org/055s37c97', 'de', 1, 'https://ror.org/055s37c97 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI) Leibniz-Institut für Naturstoff-Forschung und Infektionsbiologie e. V. - Hans-Knöll-Institut (HKI)'),
(107264, 'https://ror.org/04pe1sa24', 'es', 1, 'https://ror.org/04pe1sa24 Ecotec University Universidad Ecotec'),
(107265, 'https://ror.org/03zjsjb54', 'en', 1, 'https://ror.org/03zjsjb54 Langford Research Institute'),
(107266, 'https://ror.org/01p6tkc71', 'no_lang_code', 1, 'https://ror.org/01p6tkc71 Portimonense Futebol SAD Portimonense Futebol SAD (Portugal)'),
(107267, 'https://ror.org/0119taq84', 'en', 1, 'https://ror.org/0119taq84 International Medical Center in Jeddah Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų·ŲØŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠ ŲØŲ¬ŲÆŲ©'),
(107268, 'https://ror.org/006dgdz57', 'no_lang_code', 1, 'https://ror.org/006dgdz57 Media Invest (Portugal)'),
(107269, 'https://ror.org/01fx94528', 'pt', 1, 'https://ror.org/01fx94528 Centro de Investigação de Direito Privado'),
(107270, 'https://ror.org/00zec5297', 'no_lang_code', 1, 'https://ror.org/00zec5297 Bayer (Portugal) Bayer Portugal SA'),
(107271, 'https://ror.org/03kx93m19', 'pt', 1, 'https://ror.org/03kx93m19 Sociedade Portuguesa de Filosofia'),
(107272, 'https://ror.org/04cxyxy43', 'en', 1, 'https://ror.org/04cxyxy43 Fulbright Portugal'),
(107273, 'https://ror.org/03b554061', 'no_lang_code', 1, 'https://ror.org/03b554061 Atlantik Fish (Portugal)'),
(107274, 'https://ror.org/05j2h7h24', 'en', 1, 'https://ror.org/05j2h7h24 Zambia Information and Communications Technology Authority Zambia Information and Communications Technology Authority (ZICTA)'),
(107275, 'https://ror.org/025ds8c39', 'en', 1, 'https://ror.org/025ds8c39 Lajes Airman and Family Readiness Center'),
(107276, 'https://ror.org/00hhrtn83', 'no_lang_code', 1, 'https://ror.org/00hhrtn83 Pierre Fabre (Portugal)'),
(107277, 'https://ror.org/05fe7ax82', 'fr', 1, 'https://ror.org/05fe7ax82 Institut d''Etudes Politiques de Paris Sciences Po'),
(107278, 'https://ror.org/054w7b348', 'no_lang_code', 1, 'https://ror.org/054w7b348 SHL Portugal SHL Portugal (Portugal)'),
(107279, 'https://ror.org/001ghdf98', 'en', 1, 'https://ror.org/001ghdf98 Baldwin Wallace University'),
(107280, 'https://ror.org/036k1r314', 'no_lang_code', 1, 'https://ror.org/036k1r314 Lundbeck (Portugal)'),
(107281, 'https://ror.org/04ytn6v31', 'pt', 1, 'https://ror.org/04ytn6v31 CĆ¢mara Municipal de Mafra'),
(107282, 'https://ror.org/00a5g4995', 'no_lang_code', 1, 'https://ror.org/00a5g4995 Grupo Italfarmaco (Portugal)'),
(107283, 'https://ror.org/04mmhqs73', 'no_lang_code', 1, 'https://ror.org/04mmhqs73 Medjournal Medjournal (Portugal)'),
(107284, 'https://ror.org/01sxyfe19', 'en', 1, 'https://ror.org/01sxyfe19 Space & Earth Geodetic Analysis Laboratory'),
(107285, 'https://ror.org/04xxc1193', 'en', 1, 'https://ror.org/04xxc1193 Zimbabwe Library Association (ZimLA)'),
(107286, 'https://ror.org/05fz31p11', 'no_lang_code', 1, 'https://ror.org/05fz31p11 Printipo Graphic Design Printipo Indústrias GrÔficas (Portugal)'),
(107287, 'https://ror.org/056qj1t15', 'en', 1, 'https://ror.org/056qj1t15 Institut für Automatisierungstechnik Institute of Automation'),
(107288, 'https://ror.org/05q2jm224', 'no_lang_code', 1, 'https://ror.org/05q2jm224 Octapharma Pharmaceutical Products Octapharma Produtos FarmacĆŖuticos (Portugal)'),
(107289, 'https://ror.org/0027d9x02', 'en', 1, 'https://ror.org/0027d9x02 Suzhou Institute of Nano-tech and Nano-bionics äø­å›½ē§‘å­¦é™¢č‹å·žēŗ³ē±³ęŠ€ęœÆäøŽēŗ³ē±³ä»æē”Ÿē ”ē©¶ę‰€'),
(107290, 'https://ror.org/020ztsv38', 'pt', 1, 'https://ror.org/020ztsv38 Instituto JurĆ­dico Portucalense'),
(107291, 'https://ror.org/0284has79', 'pt', 1, 'https://ror.org/0284has79 Sociedade Portuguesa de Oftalmologia'),
(107292, 'https://ror.org/04xhba395', 'no_lang_code', 1, 'https://ror.org/04xhba395 Formasau Formação e Saúde (Portugal) Formasau Training and Health Limited'),
(107293, 'https://ror.org/00kxr5737', 'pt', 1, 'https://ror.org/00kxr5737 Jardim Botânico da Madeira Engenheiro Rui Vieira'),
(107294, 'https://ror.org/000c93k10', 'pt', 1, 'https://ror.org/000c93k10 Centro de Investigação em Materiais'),
(107295, 'https://ror.org/0346skn57', 'no_lang_code', 1, 'https://ror.org/0346skn57 TNA Animal Technology and Nutrition TNA Tecnologia e Nutrição Animal (Portugal) TNA Tecnologia e Nutrição Animal, S.A.'),
(107296, 'https://ror.org/01jx86h05', 'de', 1, 'https://ror.org/01jx86h05 Heart Center Dresden, University Hospital Herzzentrum Dresden Universitaetsklinik'),
(107297, 'https://ror.org/01vzd2352', 'pt', 1, 'https://ror.org/01vzd2352 Crescer na Maior Associação de Intervenção ComunitÔria'),
(107298, 'https://ror.org/055vdn769', 'no_lang_code', 1, 'https://ror.org/055vdn769 Terraprima Terraprima (Portugal)'),
(107299, 'https://ror.org/01tggzh22', 'es', 1, 'https://ror.org/01tggzh22 Universidad Tecnológica de la Región Centro de Coahuila'),
(107300, 'https://ror.org/02zzeb133', 'pt', 1, 'https://ror.org/02zzeb133 CĆ¢mara Municipal de Vendas Novas'),
(107301, 'https://ror.org/03myx7b47', 'en', 1, 'https://ror.org/03myx7b47 ProChild CoLAB'),
(107302, 'https://ror.org/02fvywg07', 'en', 1, 'https://ror.org/02fvywg07 Massachusetts College of Pharmacy and Health Sciences'),
(107303, 'https://ror.org/004p8an59', 'no_lang_code', 1, 'https://ror.org/004p8an59 SGS Portugal (Portugal) SGS Portugal SA SGS Portugal, S.A.'),
(107304, 'https://ror.org/04k49my20', 'pt', 1, 'https://ror.org/04k49my20 Sociedade Portuguesa de Neuropediatria'),
(107305, 'https://ror.org/0292fgv83', 'fr', 1, 'https://ror.org/0292fgv83 Centre de REcherche En Gestion des Organisations'),
(107306, 'https://ror.org/05c2vjs51', 'no_lang_code', 1, 'https://ror.org/05c2vjs51 VilaWork Barcelos Business Center VilaWork Barcelos Business Center (Portugal)'),
(107307, 'https://ror.org/02fkrnz10', 'it', 1, 'https://ror.org/02fkrnz10 Regional Science Association International'),
(107308, 'https://ror.org/05rs7tq63', 'no_lang_code', 0, 'https://ror.org/05rs7tq63 Fresenius Medical Care North America (United States)'),
(107309, 'https://ror.org/01zp6xd43', 'en', 1, 'https://ror.org/01zp6xd43 The People''s Government of Liaoning Province č¾½å®ēœäŗŗę°‘ę”æåŗœ'),
(107310, 'https://ror.org/04v2q5g49', 'en', 1, 'https://ror.org/04v2q5g49 Lisbon Institute of Global Mental Health'),
(107311, 'https://ror.org/02w4f2z17', 'en', 1, 'https://ror.org/02w4f2z17 Silesian University in Opava SlezskĆ” univerzita v Opavě'),
(107312, 'https://ror.org/00d0rke27', 'fr', 1, 'https://ror.org/00d0rke27 Institut d''optique thĆ©orique et appliquĆ©e Institut d’Optique Graduate School'),
(107313, 'https://ror.org/05p30rt34', 'no_lang_code', 1, 'https://ror.org/05p30rt34 SGS (Switzerland) SociƩtƩ GƩnƩrale de Surveillance'),
(107314, 'https://ror.org/00mcdyn90', 'ca', 1, 'https://ror.org/00mcdyn90 Institut de Robòtica i Informàtica Industrial Institute of Robotics and Industrial Informatics Instituto de Robótica e InformÔtica Industrial'),
(107315, 'https://ror.org/05gcgh726', 'en', 1, 'https://ror.org/05gcgh726 All India Institute of Medical Sciences, Mangalagiri'),
(107316, 'https://ror.org/02fxtvv50', 'pt', 1, 'https://ror.org/02fxtvv50 Centro NOVAFRICA'),
(107317, 'https://ror.org/00hy0kp07', 'pt', 1, 'https://ror.org/00hy0kp07 Instituto Jurídico da Comunicação'),
(107318, 'https://ror.org/016s2am02', 'pt', 1, 'https://ror.org/016s2am02 MOVELTEX Centro de Competências e de Incubação de Empresas'),
(107319, 'https://ror.org/0349akt15', 'pt', 1, 'https://ror.org/0349akt15 Centro de Investigação em Ciências da Construção'),
(107320, 'https://ror.org/00s89aq18', 'de', 1, 'https://ror.org/00s89aq18 Gesellschaft für Klinische Forschung Gesellschaft für klinische Forschung e.V.'),
(107321, 'https://ror.org/02qjeza50', 'pt', 1, 'https://ror.org/02qjeza50 Sociedade Portuguesa de Farmacologia'),
(107322, 'https://ror.org/02c1hqj73', 'no_lang_code', 1, 'https://ror.org/02c1hqj73 Tonic App Tonic App (Portugal)'),
(107323, 'https://ror.org/00jm8vk13', 'pt', 1, 'https://ror.org/00jm8vk13 Instituto de Direito das Empresas e do Trabalho'),
(107324, 'https://ror.org/01rftrx87', 'pt', 1, 'https://ror.org/01rftrx87 Centro de Investigação em Desporto Educação Física Exercício e Saúde'),
(107325, 'https://ror.org/02mxx0b77', 'en', 1, 'https://ror.org/02mxx0b77 Carnegie Mellon Portugal'),
(107326, 'https://ror.org/022525y32', 'pt', 1, 'https://ror.org/022525y32 Centro de Investigação Tecnológica do Algarve'),
(107327, 'https://ror.org/047d13a24', 'es', 1, 'https://ror.org/047d13a24 Universidad de GuantƔnamo University of Guantanamo'),
(107328, 'https://ror.org/02yndkk15', 'pt', 1, 'https://ror.org/02yndkk15 Consultores de LĆ­nguas'),
(107329, 'https://ror.org/03m31qx80', 'pt', 1, 'https://ror.org/03m31qx80 Academia Livre de PMC-Conservatório Interativo'),
(107330, 'https://ror.org/03hgf2c53', 'es', 1, 'https://ror.org/03hgf2c53 Fundación Síndrome de Dravet'),
(107331, 'https://ror.org/02e84js70', 'pt', 1, 'https://ror.org/02e84js70 Sociedade Portuguesa de Sexologia ClĆ­nica'),
(107332, 'https://ror.org/0466t8w27', 'pt', 1, 'https://ror.org/0466t8w27 echLab Centro de Investigação em Tecnologias'),
(107333, 'https://ror.org/02ezqbp79', 'en', 1, 'https://ror.org/02ezqbp79 Anatolii Pidhornyi Institute of Power Machines and Systems Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ енергетичних машин і систем ім. А. М. ŠŸŃ–Š“Š³Š¾Ń€Š½Š¾Š³Š¾'),
(107334, 'https://ror.org/05sjjha49', 'en', 1, 'https://ror.org/05sjjha49 Kohzu Precision Co., Ltd. Kohzu Precision Co., Ltd. (Japan) ē„žę“„ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(107335, 'https://ror.org/01ejynq87', 'en', 1, 'https://ror.org/01ejynq87 National Brain Imaging Network'),
(107336, 'https://ror.org/003zsfh57', 'pt', 1, 'https://ror.org/003zsfh57 Laboratório de Energia Solar'),
(107337, 'https://ror.org/03b4k4y74', 'en', 1, 'https://ror.org/03b4k4y74 Molecular Structural and Cellular Microbiology'),
(107338, 'https://ror.org/02n2fzt79', 'en', 1, 'https://ror.org/02n2fzt79 Boston College'),
(107339, 'https://ror.org/01azfw069', 'en', 1, 'https://ror.org/01azfw069 The University of Texas at Tyler'),
(107340, 'https://ror.org/03bg0ms48', 'en', 1, 'https://ror.org/03bg0ms48 California Walnut Growers Association'),
(107341, 'https://ror.org/008s83205', 'en', 1, 'https://ror.org/008s83205 University of Alabama at Birmingham UniversitƩ d''alabama Ơ birmingham'),
(107342, 'https://ror.org/044h7tr79', 'no_lang_code', 1, 'https://ror.org/044h7tr79 Hilti (Liechtenstein)'),
(107343, 'https://ror.org/052r2xn60', 'en', 1, 'https://ror.org/052r2xn60 Johannes Kepler University of Linz Johannes Kepler UniversitƤt Linz'),
(107344, 'https://ror.org/032va1j59', 'en', 1, 'https://ror.org/032va1j59 University of Missouri System'),
(107345, 'https://ror.org/04jzmdh37', 'en', 1, 'https://ror.org/04jzmdh37 Centre for Economic Policy Research'),
(107346, 'https://ror.org/05b9pgt88', 'en', 1, 'https://ror.org/05b9pgt88 Advanced Centre for Treatment, Research and Education in Cancer'),
(107347, 'https://ror.org/05hjmfb58', 'en', 1, 'https://ror.org/05hjmfb58 Egyptian Ministry of Environment وزارة Ų§Ł„ŲØŁŠŲ¦Ų©- جهاز Ų“Ų¦ŁˆŁ† Ų§Ł„ŲØŁŠŲ¦Ų©Ų§Ł„Ł…Ų¹Ų§ŲÆŁ‰'),
(107348, 'https://ror.org/0043h8f16', 'en', 1, 'https://ror.org/0043h8f16 Universidad de Dakota del Sur University of South Dakota UniversitƩ du Dakota du Sud'),
(107349, 'https://ror.org/054hj6489', 'es', 1, 'https://ror.org/054hj6489 Bioef - Fundación Vasca de Innovación e Investigación Sanitarias Fundación Vasca de Innovación e Investigación Sanitarias'),
(107350, 'https://ror.org/04dkp1p98', 'en', 1, 'https://ror.org/04dkp1p98 Bureau of Meteorology'),
(107351, 'https://ror.org/0500kmp11', 'de', 1, 'https://ror.org/0500kmp11 Salzburger Landeskliniken'),
(107352, 'https://ror.org/02s016q17', 'en', 1, 'https://ror.org/02s016q17 Naito Foundation å…¬ē›Šč²”å›£ę³•äŗŗå†…č—¤čØ˜åæµē§‘å­¦ęŒÆčˆˆč²”å›£'),
(107353, 'https://ror.org/04zerf618', 'en', 1, 'https://ror.org/04zerf618 European Forest Institute'),
(107354, 'https://ror.org/00b57ws56', 'en', 1, 'https://ror.org/00b57ws56 Institution of Engineers'),
(107355, 'https://ror.org/046e90j34', 'es', 1, 'https://ror.org/046e90j34 Instituto Nacional de CardiologĆ­a National Institute of Cardiology'),
(107356, 'https://ror.org/03swyrn62', 'en', 1, 'https://ror.org/03swyrn62 National Institute of Technology Agartala ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, अगरतला ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø, আগরতলা'),
(107357, 'https://ror.org/04bynv497', 'no_lang_code', 1, 'https://ror.org/04bynv497 Biosensors International Group (Singapore)'),
(107358, 'https://ror.org/05p8z3f47', 'en', 1, 'https://ror.org/05p8z3f47 Purdue University System'),
(107359, 'https://ror.org/01rbqr638', 'no_lang_code', 1, 'https://ror.org/01rbqr638 Elkem (Norway)'),
(107360, 'https://ror.org/02ma57s91', 'es', 1, 'https://ror.org/02ma57s91 Universidad de Santiago de Chile University of Santiago Chile'),
(107361, 'https://ror.org/04609ps55', 'no_lang_code', 1, 'https://ror.org/04609ps55 GKN (United Kingdom)'),
(107362, 'https://ror.org/05e7w0f38', 'en', 1, 'https://ror.org/05e7w0f38 Ministry of External Affairs'),
(107363, 'https://ror.org/0468tgh79', 'en', 1, 'https://ror.org/0468tgh79 Nature Research Centre'),
(107364, 'https://ror.org/01pntf040', 'en', 1, 'https://ror.org/01pntf040 Ministry of Education and Research Utbildningsdepartementet'),
(107365, 'https://ror.org/042gz1a70', 'en', 1, 'https://ror.org/042gz1a70 Bioplatforms Australia'),
(107366, 'https://ror.org/0030zas98', 'en', 1, 'https://ror.org/0030zas98 Hong Kong Polytechnic University 香港理巄大學'),
(107367, 'https://ror.org/045sza929', 'en', 1, 'https://ror.org/045sza929 China Earthquake Administration äø­å›½åœ°éœ‡å±€'),
(107368, 'https://ror.org/03a64bh57', 'en', 1, 'https://ror.org/03a64bh57 University of Catania UniversitƠ degli Studi di Catania UniversitƤt Catania UniversitƩ de catane'),
(107369, 'https://ror.org/00b140761', 'en', 1, 'https://ror.org/00b140761 Foundation for Rural and Regional Renewal'),
(107370, 'https://ror.org/0524sp257', 'en', 1, 'https://ror.org/0524sp257 Prifysgol Bryste University of Bristol'),
(107371, 'https://ror.org/04ww2n633', 'en', 1, 'https://ror.org/04ww2n633 Fushun Seismological Bureau ęŠšé”ŗåø‚åœ°éœ‡å±€'),
(107372, 'https://ror.org/04p800546', 'en', 1, 'https://ror.org/04p800546 Commission des subventions aux universitĆ©s University Grants Commission ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤…ą¤Øą„ą¤¦ą¤¾ą¤Ø ą¤†ą¤Æą„‹ą¤— ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą¦®ą¦žą§ą¦œą§ą¦°ą¦æ কমিশন ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ąØ—ą©ąØ°ąØ¾ąØ‚ąØŸ ਕਮਿਸ਼ਨ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®• ą®®ą®¾ą®©ą®æą®Æą®•ąÆ குஓு ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą“—ąµą“°ą“¾ą“Øąµą“±ąµą“øąµ ą“•ą“®ąµą“®ąµ€ą“·ąµ»'),
(107373, 'https://ror.org/01an3r305', 'en', 1, 'https://ror.org/01an3r305 Universidad de Pittsburgh University of Pittsburgh UniversitƩ de Pittsburgh'),
(107374, 'https://ror.org/016qv5070', 'no_lang_code', 1, 'https://ror.org/016qv5070 AstraZeneca (France)'),
(107375, 'https://ror.org/05p8nb362', 'en', 1, 'https://ror.org/05p8nb362 Health Canada SantƩ Canada'),
(107376, 'https://ror.org/041nas322', 'en', 1, 'https://ror.org/041nas322 Rheinische Friedrich-Wilhelms-UniversitƤt Bonn University of Bonn'),
(107377, 'https://ror.org/0488w4k89', 'en', 1, 'https://ror.org/0488w4k89 Empowers Africa'),
(107378, 'https://ror.org/04kqxbr46', 'en', 1, 'https://ror.org/04kqxbr46 American Quarter Horse Association'),
(107379, 'https://ror.org/00y4zzh67', 'en', 1, 'https://ror.org/00y4zzh67 George Washington University Universidad George Washington'),
(107380, 'https://ror.org/013x70191', 'en', 1, 'https://ror.org/013x70191 JSS Academy of Higher Education and Research'),
(107381, 'https://ror.org/00n1e1p60', 'en', 1, 'https://ror.org/00n1e1p60 Institute of Oceanology. PP Shirshov Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ океанологии имени П. П. ŠØŠøŃ€ŃˆŠ¾Š²Š°'),
(107382, 'https://ror.org/02b6qw903', 'en', 1, 'https://ror.org/02b6qw903 Universidad de Carolina del Sur University of South Carolina UniversitƩ de caroline du sud'),
(107383, 'https://ror.org/04cdgtt98', 'en', 1, 'https://ror.org/04cdgtt98 Deutsches Krebsforschungszentrum German Cancer Research Center'),
(107384, 'https://ror.org/0189raq88', 'en', 1, 'https://ror.org/0189raq88 Deutsche Sporthochschule Kƶln German Sport University Cologne'),
(107385, 'https://ror.org/03wtazd67', 'en', 1, 'https://ror.org/03wtazd67 Danish Energy Agency Energistyrelsen'),
(107386, 'https://ror.org/02wbrth70', 'en', 1, 'https://ror.org/02wbrth70 Fatih University Fatih Üniversitesi'),
(107387, 'https://ror.org/04b2dty93', 'no_lang_code', 1, 'https://ror.org/04b2dty93 Merck (Germany)'),
(107388, 'https://ror.org/015z29x25', 'en', 1, 'https://ror.org/015z29x25 United Nations Environment Programme'),
(107389, 'https://ror.org/00mkhxb43', 'en', 1, 'https://ror.org/00mkhxb43 University of Notre Dame UniversitƩ notre-dame'),
(107390, 'https://ror.org/00986na66', 'es', 1, 'https://ror.org/00986na66 Universidad SEK'),
(107391, 'https://ror.org/0310smc09', 'pt', 1, 'https://ror.org/0310smc09 Federal University of Grande Dourados Universidad Federal de Grande Dourados Universidade Federal da Grande Dourados UniversitƩ FƩdƩrale de Grande Dourados'),
(107392, 'https://ror.org/03j186m48', 'en', 1, 'https://ror.org/03j186m48 Urakami Food and Food Culture Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗęµ¦äøŠé£Ÿå“é£Ÿę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(107393, 'https://ror.org/04e5bwf87', 'en', 1, 'https://ror.org/04e5bwf87 Agricultural University Plovdiv Аграрен Университет'),
(107394, 'https://ror.org/02qyf5152', 'en', 1, 'https://ror.org/02qyf5152 Indian Institute of Technology Bombay Institut indien de technologie de bombay ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾, ą¤®ą„ą¤‚ą¤¬ą¤ˆ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą„ą¤®ą„ą¤¬ą¤ˆ ਇੰਔੀਅਨ ąØ‡ą©°ąØøąØŸą©€ąØšąØæąØŠąØŸ ਆਫ਼ ąØŸą©ˆąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®®ąÆą®®ąÆą®ŖąÆˆ ą°ą°ą°Ÿą±€ బాంబే ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“¬ąµ‹ą“‚ą“¬ąµ†'),
(107395, 'https://ror.org/04zfaj906', 'en', 1, 'https://ror.org/04zfaj906 Catalan Institute for Water Research Instituto Catalan de Investigacion del Agua'),
(107396, 'https://ror.org/01gy1fk68', 'en', 1, 'https://ror.org/01gy1fk68 International Union of Pure and Applied Physics'),
(107397, 'https://ror.org/039bccw84', 'no_lang_code', 1, 'https://ror.org/039bccw84 Empresa Nacional de Residuos Radiactivos'),
(107398, 'https://ror.org/02n415q13', 'en', 1, 'https://ror.org/02n415q13 Curtin University'),
(107399, 'https://ror.org/05mmg7t28', 'en', 1, 'https://ror.org/05mmg7t28 Universidad del Pacifico University of the Pacific'),
(107400, 'https://ror.org/03qsven24', 'no_lang_code', 1, 'https://ror.org/03qsven24 Almirall (Spain)'),
(107401, 'https://ror.org/05j6fvn87', 'en', 1, 'https://ror.org/05j6fvn87 Singapore University of Technology and Design ę–°åŠ å”ē§‘ęŠ€č®¾č®”å¤§å­¦'),
(107402, 'https://ror.org/044w7a341', 'en', 1, 'https://ror.org/044w7a341 Towson University'),
(107403, 'https://ror.org/05xjn4769', 'no_lang_code', 1, 'https://ror.org/05xjn4769 Topcon (Netherlands)'),
(107404, 'https://ror.org/01751w114', 'es', 1, 'https://ror.org/01751w114 Universidad de Lima University of Lima'),
(107405, 'https://ror.org/03h2bxq36', 'en', 1, 'https://ror.org/03h2bxq36 University of Dundee'),
(107406, 'https://ror.org/004y7f915', 'ms', 1, 'https://ror.org/004y7f915 Universiti Teknologi Brunei'),
(107407, 'https://ror.org/017zqws13', 'en', 1, 'https://ror.org/017zqws13 University of Minnesota'),
(107408, 'https://ror.org/050cc1579', 'es', 1, 'https://ror.org/050cc1579 Consejería de Inclusión Social, Juventud, Familias e Igualdad'),
(107409, 'https://ror.org/00965bg92', 'en', 1, 'https://ror.org/00965bg92 University of Nis Универзитет у ŠŠøŃˆŃƒ'),
(107410, 'https://ror.org/01kh0x418', 'en', 1, 'https://ror.org/01kh0x418 Indian Institute of Chemical Biology'),
(107411, 'https://ror.org/0288swk05', 'en', 1, 'https://ror.org/0288swk05 Instytut Farmakologii im. Jerzego Maja Polskiej Akademii Nauk Maj Institute of Pharmacology'),
(107412, 'https://ror.org/03zga2b32', 'en', 1, 'https://ror.org/03zga2b32 Bergenin Yliopisto Universitas Bergensis Universitetet i Bergen University of Bergen'),
(107413, 'https://ror.org/03k7bde87', 'tr', 1, 'https://ror.org/03k7bde87 Sağlık Bilimleri Üniversitesi University of Health Sciences'),
(107414, 'https://ror.org/05asdy483', 'en', 1, 'https://ror.org/05asdy483 U-M Rogel Cancer Center'),
(107415, 'https://ror.org/04a0aep16', 'no', 1, 'https://ror.org/04a0aep16 Sykehuset i Vestfold Vestfold Hospital Trust'),
(107416, 'https://ror.org/03yzqyp10', 'en', 1, 'https://ror.org/03yzqyp10 Ministry of Energy ąøąø£ąø°ąø—ąø£ąø§ąø‡ąøžąø„ąø±ąø‡ąø‡ąø²ąø™'),
(107417, 'https://ror.org/03prydq77', 'en', 1, 'https://ror.org/03prydq77 BĆ©csi Egyetem SveučiliÅ”te u Beču University of Vienna UniversitƤt Wien Univerza na Dunaju'),
(107418, 'https://ror.org/012jban78', 'en', 1, 'https://ror.org/012jban78 Medical University of South Carolina'),
(107419, 'https://ror.org/00ks0ka28', 'sv', 1, 'https://ror.org/00ks0ka28 Svenska Frimurare Orden'),
(107420, 'https://ror.org/01qepzr42', 'en', 1, 'https://ror.org/01qepzr42 British Broadcasting Corporation (United Kingdom)'),
(107421, 'https://ror.org/01gmxjx09', 'pt', 1, 'https://ror.org/01gmxjx09 Sociedade Portuguesa de Diabetologia'),
(107422, 'https://ror.org/03jjbp459', 'no_lang_code', 1, 'https://ror.org/03jjbp459 Turkish Aerospace Industries (Turkey) Türk Havacılık ve Uzay Sanayii'),
(107423, 'https://ror.org/03grvy078', 'en', 1, 'https://ror.org/03grvy078 Universidad de Minnesota University of Minnesota System UniversitƩ du Minnesota'),
(107424, 'https://ror.org/03p74gp79', 'en', 1, 'https://ror.org/03p74gp79 Universiteit van Kaapstad University of Cape Town iYunivesithi yaseKapa'),
(107425, 'https://ror.org/01xj0n090', 'en', 1, 'https://ror.org/01xj0n090 Sociedad para el Desarrollo Regional de Cantabria Sodercan'),
(107426, 'https://ror.org/01aj84f44', 'en', 1, 'https://ror.org/01aj84f44 Aarhus Universitet Aarhus University'),
(107427, 'https://ror.org/05g13zd79', 'en', 1, 'https://ror.org/05g13zd79 Toronto Metropolitan University'),
(107428, 'https://ror.org/05f11g639', 'en', 1, 'https://ror.org/05f11g639 International Institute of Information Technology, Hyderabad ą¤…ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(107429, 'https://ror.org/04ydnv789', 'en', 1, 'https://ror.org/04ydnv789 Vancouver Foundation'),
(107430, 'https://ror.org/01y64my43', 'en', 1, 'https://ror.org/01y64my43 Universidad de BĆŗfalo University at Buffalo, State University of New York UniversitĆ© d''Ɖtat de new york Ć  buffalo'),
(107431, 'https://ror.org/03w4czv65', 'es', 1, 'https://ror.org/03w4czv65 Departamento de Salud Osasun Departamentua'),
(107432, 'https://ror.org/00rzspn62', 'en', 1, 'https://ror.org/00rzspn62 Universiti Malaya University of Malaya மலாயா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ดหาวณทยาคัยดาคายา é©¬ę„äŗšå¤§å­¦'),
(107433, 'https://ror.org/01qmw3j63', 'no_lang_code', 1, 'https://ror.org/01qmw3j63 Evonik (Germany)'),
(107434, 'https://ror.org/05fj8cf83', 'es', 1, 'https://ror.org/05fj8cf83 Universidad Autónoma de Ciudad JuÔrez'),
(107435, 'https://ror.org/029nydt37', 'en', 1, 'https://ror.org/029nydt37 Nitte University'),
(107436, 'https://ror.org/0208vgz68', 'fi', 1, 'https://ror.org/0208vgz68 Lappeenrannan-Lahden teknillinen yliopisto Lappeenranta-Lahti University of Technology'),
(107437, 'https://ror.org/01y34t753', 'en', 1, 'https://ror.org/01y34t753 First Institute of Oceanography'),
(107438, 'https://ror.org/01p9rc392', 'en', 1, 'https://ror.org/01p9rc392 John Jay College of Criminal Justice'),
(107439, 'https://ror.org/033cz7157', 'en', 1, 'https://ror.org/033cz7157 University of Architecture, Civil Engineering and Geodesy Университет по Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š°, строителство Šø Š³ŠµŠ¾Š“ŠµŠ·ŠøŃ'),
(107440, 'https://ror.org/0155zta11', 'en', 1, 'https://ror.org/0155zta11 Universidad de Vermont University of Vermont UniversitƩ du vermont'),
(107441, 'https://ror.org/03y7q9t39', 'en', 1, 'https://ror.org/03y7q9t39 Te Whare Wānanga o Waitaha University of Canterbury'),
(107442, 'https://ror.org/00hshrf16', 'en', 1, 'https://ror.org/00hshrf16 Jaypee University of Information Technology ą¤œą„‡ą¤Ŗą„€ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤¤ą¤•ą¤Øą„€ą¤• ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(107443, 'https://ror.org/04q0a4f84', 'en', 1, 'https://ror.org/04q0a4f84 Economic and Social Research Institute'),
(107444, 'https://ror.org/037zgn354', 'en', 1, 'https://ror.org/037zgn354 Johns Hopkins Medicine'),
(107445, 'https://ror.org/04me94w47', 'en', 1, 'https://ror.org/04me94w47 SingHealth'),
(107446, 'https://ror.org/010gf7388', 'en', 1, 'https://ror.org/010gf7388 Agriculture and Horticulture Development Board'),
(107447, 'https://ror.org/01mar7r17', 'en', 1, 'https://ror.org/01mar7r17 D’Or Institute for Research and Education Instituto D’Or de Pesquisa e Ensino'),
(107448, 'https://ror.org/04hmn8g73', 'no_lang_code', 1, 'https://ror.org/04hmn8g73 Bayer (Germany)'),
(107449, 'https://ror.org/03cah9702', 'en', 1, 'https://ror.org/03cah9702 Shiv Nadar Foundation शिव नादर ą¤«ą¤¾ą¤‰ą¤‚ą¤”ą„‡ą¤¶ą¤Ø'),
(107450, 'https://ror.org/04dp81f27', 'no_lang_code', 1, 'https://ror.org/04dp81f27 The Navigator (Portugal)'),
(107451, 'https://ror.org/011dv8m48', 'en', 1, 'https://ror.org/011dv8m48 University of Gdańsk Uniwersytet Gdański'),
(107452, 'https://ror.org/05p1j8758', 'en', 1, 'https://ror.org/05p1j8758 Kansas State University Universidad Estatal de Kansas UniversitĆ© d''Ɖtat du kansas'),
(107453, 'https://ror.org/00hzjh992', 'en', 1, 'https://ror.org/00hzjh992 Ministry of Higher Education And Scientific Research وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ Ų§Ł„Ų³ŁˆŲÆŲ§Ł†'),
(107454, 'https://ror.org/008g9ns82', 'en', 1, 'https://ror.org/008g9ns82 Mutah University Ų¬Ų§Ł…Ų¹Ų© Ł…Ų¤ŲŖŲ©'),
(107455, 'https://ror.org/05ap9rf45', 'en', 1, 'https://ror.org/05ap9rf45 G.B. Pant Institute of Himalayan Environment and Development'),
(107456, 'https://ror.org/05mx0bp18', 'en', 1, 'https://ror.org/05mx0bp18 Ministry of Interior'),
(107457, 'https://ror.org/00c5q9r49', 'en', 1, 'https://ror.org/00c5q9r49 Indian Institute of Advanced Research'),
(107458, 'https://ror.org/00ks66431', 'en', 1, 'https://ror.org/00ks66431 Prifysgol Surrey University of Surrey'),
(107459, 'https://ror.org/0354t7b78', 'no_lang_code', 1, 'https://ror.org/0354t7b78 RTX (United States)'),
(107460, 'https://ror.org/00qhg0338', 'en', 1, 'https://ror.org/00qhg0338 Institute of Soil Science and Plant Cultivation'),
(107461, 'https://ror.org/0526cz443', 'no_lang_code', 1, 'https://ror.org/0526cz443 Henkel (Germany)'),
(107462, 'https://ror.org/00bfm8s22', 'en', 1, 'https://ror.org/00bfm8s22 Office of the Principal Scientific Adviser'),
(107463, 'https://ror.org/02htqyr59', 'en', 1, 'https://ror.org/02htqyr59 Akademia Obrony Narodowej National Defence University of Warsaw'),
(107464, 'https://ror.org/01xd6q208', 'en', 1, 'https://ror.org/01xd6q208 Koch Institute for Integrative Cancer Research At MIT'),
(107465, 'https://ror.org/05xczn782', 'es', 1, 'https://ror.org/05xczn782 Corporación Ecuatoriana para el Desarrollo de la Investigación y la Academia Ecuadorian Corporation for the Development of Research and Academia'),
(107466, 'https://ror.org/0575jwx13', 'pl', 1, 'https://ror.org/0575jwx13 Academic Computer Centre Cyfronet AGH Akademickie Centrum Komputerowe Cyfronet AGH'),
(107467, 'https://ror.org/003hsr719', 'en', 1, 'https://ror.org/003hsr719 Sefako Makgatho Health Sciences University'),
(107468, 'https://ror.org/022es3t03', 'en', 1, 'https://ror.org/022es3t03 Japan International Cooperation Agency ē‹¬ē«‹č”Œę”æę³•äŗŗå›½éš›å”åŠ›ę©Ÿę§‹'),
(107469, 'https://ror.org/047pymx40', 'es', 1, 'https://ror.org/047pymx40 ConsejerĆ­a de Salud y Consumo'),
(107470, 'https://ror.org/03kkevc75', 'en', 1, 'https://ror.org/03kkevc75 Indian Agricultural Statistics Research Institute ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤øą¤¾ą¤‚ą¤–ą„ą¤Æą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(107471, 'https://ror.org/01rrxb840', 'no_lang_code', 1, 'https://ror.org/01rrxb840 Guam Sea Grant'),
(107472, 'https://ror.org/02wtcj248', 'en', 1, 'https://ror.org/02wtcj248 Queensland Department of Environment and Science'),
(107473, 'https://ror.org/03tk0wy30', 'no_lang_code', 1, 'https://ror.org/03tk0wy30 Tessa Therapeutic (Singapore)'),
(107474, 'https://ror.org/00y4ya841', 'en', 1, 'https://ror.org/00y4ya841 Medical University of Białystok Uniwersytet Medyczny w Białymstoku'),
(107475, 'https://ror.org/01j4v3x97', 'en', 1, 'https://ror.org/01j4v3x97 Indian Institute of Technology Hyderabad Institut de technologie indien d''hyderabad ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ஐதராபாது ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°¹ą±ˆą°¦ą°°ą°¾ą°¬ą°¾ą°¦ą± ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ą“±ą“æą“±ą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“•ąµ†ą“®ą“æą“•ąµą“•ąµ½ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(107476, 'https://ror.org/001gpfp45', 'en', 1, 'https://ror.org/001gpfp45 California Polytechnic State University Universidad PolitĆ©cnica Estatal de California UniversitĆ© d''Ɖtat polytechnique de californie'),
(107477, 'https://ror.org/02f0vsw63', 'en', 1, 'https://ror.org/02f0vsw63 Indian Institute of Technology Jammu'),
(107478, 'https://ror.org/005616b46', 'en', 1, 'https://ror.org/005616b46 Competence Center Energy and Mobility Kompetenzzentrum für Energie und Mobilität'),
(107479, 'https://ror.org/04gdybn86', 'no_lang_code', 1, 'https://ror.org/04gdybn86 AstraZeneca (Poland)'),
(107480, 'https://ror.org/025194b42', 'no_lang_code', 1, 'https://ror.org/025194b42 Mundipharma (United Kingdom)'),
(107481, 'https://ror.org/05twwhs70', 'no_lang_code', 1, 'https://ror.org/05twwhs70 State Grid Corporation of China (China) å›½å®¶ē”µē½‘å…¬åø'),
(107482, 'https://ror.org/01csc7562', 'en', 1, 'https://ror.org/01csc7562 Middle East University Ų¬Ų§Ł…Ų¹Ų© الؓرق Ų§Ł„Ų£ŁˆŲ³Ų·'),
(107483, 'https://ror.org/041m6k425', 'no_lang_code', 1, 'https://ror.org/041m6k425 OCP Group (Morocco) Office chĆ©rifien des phosphates Ų§Ł„Ł…ŁƒŲŖŲØ Ų§Ł„Ų“Ų±ŁŠŁ Ł„Ł„ŁŁˆŲ³ŁŲ§Ų·'),
(107484, 'https://ror.org/031tatj48', 'en', 1, 'https://ror.org/031tatj48 Heilongjiang Provincial Science and Technology Department é»‘é¾™ę±Ÿēœē§‘ęŠ€åŽ…'),
(107485, 'https://ror.org/02dyjk442', 'en', 1, 'https://ror.org/02dyjk442 Politechnika Śląska Silesian University of Technology'),
(107486, 'https://ror.org/00e9kx775', 'en', 1, 'https://ror.org/00e9kx775 European Renal Association – European Dialysis and Transplant Association'),
(107487, 'https://ror.org/01g8djv19', 'no_lang_code', 1, 'https://ror.org/01g8djv19 Solvay (Belgium)'),
(107488, 'https://ror.org/03dvm1235', 'en', 1, 'https://ror.org/03dvm1235 Glasgow Caledonian University'),
(107489, 'https://ror.org/03w28pb62', 'en', 1, 'https://ror.org/03w28pb62 South Eastern Sydney Local Health District'),
(107490, 'https://ror.org/01db6h964', 'en', 1, 'https://ror.org/01db6h964 HĆ”skóli ƍslands University of Iceland'),
(107491, 'https://ror.org/00qfb4074', 'nl', 1, 'https://ror.org/00qfb4074 Jan Kornelis de Cock Stichting'),
(107492, 'https://ror.org/01vfw8847', 'en', 1, 'https://ror.org/01vfw8847 Ministry of Agriculture Zemkopības ministrija'),
(107493, 'https://ror.org/03yt24h27', 'no_lang_code', 1, 'https://ror.org/03yt24h27 General Electric (United Kingdom)'),
(107494, 'https://ror.org/03ez40v33', 'en', 1, 'https://ror.org/03ez40v33 BI Norwegian Business School'),
(107495, 'https://ror.org/004svx814', 'en', 1, 'https://ror.org/004svx814 Government of Jiangsu Province'),
(107496, 'https://ror.org/032n1tr36', 'en', 1, 'https://ror.org/032n1tr36 Hausdorff Center for Mathematics'),
(107497, 'https://ror.org/05tewj457', 'en', 1, 'https://ror.org/05tewj457 Shanghai Municipal Education Commission'),
(107498, 'https://ror.org/009xwd568', 'en', 1, 'https://ror.org/009xwd568 Universiteit van die Vrystaat University of the Free State Yunivesithi ya Freistata'),
(107499, 'https://ror.org/05wkfym33', 'en', 1, 'https://ror.org/05wkfym33 Cystic Fibrosis Ireland'),
(107500, 'https://ror.org/05bqach95', 'en', 1, 'https://ror.org/05bqach95 National Taiwan University'),
(107501, 'https://ror.org/03hrns542', 'no_lang_code', 1, 'https://ror.org/03hrns542 Robert Bosch (Australia)'),
(107502, 'https://ror.org/00bsdxt65', 'en', 1, 'https://ror.org/00bsdxt65 China International Science and Technology Cooperation äø­å›½å›½é™…ē§‘ęŠ€åˆä½œē½‘'),
(107503, 'https://ror.org/01vnxev61', 'no_lang_code', 1, 'https://ror.org/01vnxev61 Bayer (Canada)'),
(107504, 'https://ror.org/02rm76t37', 'en', 1, 'https://ror.org/02rm76t37 University of Sri Jayewardenepura ą®øąÆą®°ąÆ€ ą®œą®Æą®µą®°ąÆą®¤ą®©ą®ŖąÆą®° ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ශ් රී ą¶¢ą¶ŗą·€ą¶»ą·Šą¶°ą¶±ą¶“ą·”ą¶» ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(107505, 'https://ror.org/05m2a2x14', 'en', 1, 'https://ror.org/05m2a2x14 Le ministère de la Santé Saskatchewan Health'),
(107506, 'https://ror.org/05wma2347', 'it', 1, 'https://ror.org/05wma2347 SocietĆ  Italiana dell’Ipertensione Arteriosa'),
(107507, 'https://ror.org/02nnhbq91', 'no_lang_code', 1, 'https://ror.org/02nnhbq91 Asahi Glass (Japan) ę—­ē”å­'),
(107508, 'https://ror.org/029hqf550', 'no_lang_code', 1, 'https://ror.org/029hqf550 CytoSorbents (Germany)'),
(107509, 'https://ror.org/01hznc410', 'en', 1, 'https://ror.org/01hznc410 Institute for Plasma Research ą¤Ŗą„ą¤²ą¤¾ą¤œą„ą¤®ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(107510, 'https://ror.org/05y381977', 'no_lang_code', 1, 'https://ror.org/05y381977 Pfizer (Ireland)'),
(107511, 'https://ror.org/03k1gpj17', 'en', 1, 'https://ror.org/03k1gpj17 Colorado State University Universidad Estatal de Colorado UniversitĆ© d''Ɖtat du colorado'),
(107512, 'https://ror.org/00jb0e673', 'en', 1, 'https://ror.org/00jb0e673 Kırklareli University Kırklareli Üniversitesi'),
(107513, 'https://ror.org/02mpq6x41', 'en', 1, 'https://ror.org/02mpq6x41 University of Illinois Chicago UniversitƩ de l''illinois Ơ chicago'),
(107514, 'https://ror.org/02ma4wv74', 'en', 1, 'https://ror.org/02ma4wv74 King Abdulaziz University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ²'),
(107515, 'https://ror.org/02ayn5869', 'en', 1, 'https://ror.org/02ayn5869 Southern Centre For Inequality Studies'),
(107516, 'https://ror.org/00wd8c661', 'en', 1, 'https://ror.org/00wd8c661 Siddaganga Institute of Technology'),
(107517, 'https://ror.org/0432jq872', 'en', 1, 'https://ror.org/0432jq872 Mississippi State University UniversitĆ© d''Ɖtat du Mississippi'),
(107518, 'https://ror.org/055sbzs47', 'no_lang_code', 1, 'https://ror.org/055sbzs47 Syngenta (Canada)'),
(107519, 'https://ror.org/04gr4te78', 'en', 1, 'https://ror.org/04gr4te78 Marquette University Universidad Marquette'),
(107520, 'https://ror.org/01swzsf04', 'en', 1, 'https://ror.org/01swzsf04 University of Geneva Università di Ginevra Université de Genève'),
(107521, 'https://ror.org/056r65c22', 'en', 1, 'https://ror.org/056r65c22 Nunavut Wildlife Management Board'),
(107522, 'https://ror.org/0097mvx21', 'ca', 1, 'https://ror.org/0097mvx21 Generalidad Valenciana Generalitat Valenciana'),
(107523, 'https://ror.org/02hpadn98', 'en', 1, 'https://ror.org/02hpadn98 Bielefeld University UniversitƤt Bielefeld'),
(107524, 'https://ror.org/01394d192', 'hu', 1, 'https://ror.org/01394d192 Hungarian University of Agriculture and Life Sciences Magyar AgrĆ”r- Ć©s ƉlettudomĆ”nyi Egyetem'),
(107525, 'https://ror.org/0168em120', 'no_lang_code', 1, 'https://ror.org/0168em120 Bracco (United States)'),
(107526, 'https://ror.org/00xkeyj56', 'en', 1, 'https://ror.org/00xkeyj56 University of Kent'),
(107527, 'https://ror.org/01yc8eq25', 'en', 1, 'https://ror.org/01yc8eq25 Spanish Clinical Research Network'),
(107528, 'https://ror.org/02k7v4d05', 'en', 1, 'https://ror.org/02k7v4d05 University of Bern UniversitƠ di Berna UniversitƤt Bern UniversitƩ de Berne'),
(107529, 'https://ror.org/016na8197', 'en', 1, 'https://ror.org/016na8197 University of Maiduguri YunifÔsítì ìlú Màídúgùri'),
(107530, 'https://ror.org/00py81415', 'en', 1, 'https://ror.org/00py81415 Duke University Universidad de Duke'),
(107531, 'https://ror.org/00m2s0z68', 'en', 1, 'https://ror.org/00m2s0z68 Pennsylvania State System of Higher Education'),
(107532, 'https://ror.org/04cx3ye04', 'en', 1, 'https://ror.org/04cx3ye04 Foundation for Assistance to Small Innovative Enterprises in Science and Technology'),
(107533, 'https://ror.org/05gq02987', 'en', 1, 'https://ror.org/05gq02987 Brown University Universidad Brown'),
(107534, 'https://ror.org/02rcazp29', 'da', 1, 'https://ror.org/02rcazp29 TrygFonden'),
(107535, 'https://ror.org/05vzafd60', 'en', 1, 'https://ror.org/05vzafd60 Georgetown University Universidad de Georgetown UniversitƩ de Georgetown'),
(107536, 'https://ror.org/04970qw83', 'en', 1, 'https://ror.org/04970qw83 National Institute of Nutrition ą°œą°¾ą°¤ą±€ą°Æ ą°Ŗą±Œą°·ą±ą°Ÿą°æą°•ą°¾ą°¹ą°¾ą°° పరిశోధన శాల'),
(107537, 'https://ror.org/03fj82m46', 'en', 1, 'https://ror.org/03fj82m46 INTI International University Kolej Universiti Antarabangsa INTI'),
(107538, 'https://ror.org/03fjwdh27', 'pt', 1, 'https://ror.org/03fjwdh27 Novartis Farma SA (Portugal)'),
(107539, 'https://ror.org/01bn4mn58', 'en', 1, 'https://ror.org/01bn4mn58 Grosses LF Foghts Fund'),
(107540, 'https://ror.org/04htnem03', 'tr', 1, 'https://ror.org/04htnem03 Turkish Energy, Nuclear and Mineral Research Agency Türkiye Enerji Nükleer ve Maden Araştırma Kurumu'),
(107541, 'https://ror.org/00ay7va13', 'en', 1, 'https://ror.org/00ay7va13 Bowling Green State University Universidad Estatal de Bowling Green UniversitĆ© d''Ɖtat de bowling green'),
(107542, 'https://ror.org/01v376g59', 'no_lang_code', 1, 'https://ror.org/01v376g59 Fresenius (Germany) Fresenius SE & Co. KGaA'),
(107543, 'https://ror.org/00rrpnq66', 'no_lang_code', 1, 'https://ror.org/00rrpnq66 Aimmune Therapeutics (United Kingdom)'),
(107544, 'https://ror.org/03kt66j61', 'en', 1, 'https://ror.org/03kt66j61 Science and Technology Commission of Shanghai Municipality'),
(107545, 'https://ror.org/02zy4nc24', 'en', 1, 'https://ror.org/02zy4nc24 ICMR-National Institute of Virology ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤·ą¤¾ą¤£ą„‚ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(107546, 'https://ror.org/03zmf4s77', 'en', 1, 'https://ror.org/03zmf4s77 Binus University Universitas Bina Nusantara'),
(107547, 'https://ror.org/020f3ap87', 'en', 1, 'https://ror.org/020f3ap87 University of Tennessee at Knoxville'),
(107548, 'https://ror.org/04xftk194', 'en', 1, 'https://ror.org/04xftk194 De La Salle University'),
(107549, 'https://ror.org/05pckj715', 'en', 1, 'https://ror.org/05pckj715 University of North Carolina at Pembroke'),
(107550, 'https://ror.org/058p20n09', 'en', 1, 'https://ror.org/058p20n09 Henan Science and Technology Department ę²³å—ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(107551, 'https://ror.org/00epmv149', 'en', 1, 'https://ror.org/00epmv149 Norjan tiedeneuvosto The Research Council of Norway'),
(107552, 'https://ror.org/00s6t1f81', 'en', 1, 'https://ror.org/00s6t1f81 Universitat de Pavia University of Pavia UniversitƠ degli Studi di Pavia UniversitƩ de pavie'),
(107553, 'https://ror.org/00h9jrb69', 'en', 1, 'https://ror.org/00h9jrb69 Universidad de ValparaĆ­so University of ValparaĆ­so'),
(107554, 'https://ror.org/05m5b8x20', 'en', 1, 'https://ror.org/05m5b8x20 Sidney Kimmel Comprehensive Cancer Center'),
(107555, 'https://ror.org/02cb1bz50', 'en', 1, 'https://ror.org/02cb1bz50 Society of Economic Geologists'),
(107556, 'https://ror.org/02ymzm013', 'en', 1, 'https://ror.org/02ymzm013 Alzheimer’s Research UK'),
(107557, 'https://ror.org/03angcq70', 'en', 1, 'https://ror.org/03angcq70 Prifysgol Birmingham University of Birmingham'),
(107558, 'https://ror.org/02qs84g94', 'en', 1, 'https://ror.org/02qs84g94 University of Piraeus UniversitĆ© du pirĆ©e Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī ĪµĪ¹ĻĪ±Ī¹ĻŽĻ‚'),
(107559, 'https://ror.org/036jqmy94', 'en', 1, 'https://ror.org/036jqmy94 Universidad de Iowa University of Iowa UniversitƩ de l''iowa'),
(107560, 'https://ror.org/040af2s02', 'en', 1, 'https://ror.org/040af2s02 Helsingfors Universitet Helsingin Yliopisto University of Helsinki'),
(107561, 'https://ror.org/00fc5q271', 'en', 1, 'https://ror.org/00fc5q271 Fundació Markets Organizations and Votes in Economics (MOVE) MOVE (Markets, Organizations and Votes in Economics)'),
(107562, 'https://ror.org/05kb8h459', 'en', 1, 'https://ror.org/05kb8h459 UmeƄ Universitet UmeƄ University Uumajan Yliopisto'),
(107563, 'https://ror.org/02vfrsg15', 'pt', 1, 'https://ror.org/02vfrsg15 Sociedade Portuguesa de Pediatria'),
(107564, 'https://ror.org/0575ttm03', 'en', 1, 'https://ror.org/0575ttm03 Mehran University of Engineering and Technology مھراڻ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ آف Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ł†ŚÆ Ų§ŁŠŁ†ŚŠ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ'),
(107565, 'https://ror.org/0461q1s51', 'en', 1, 'https://ror.org/0461q1s51 Uttarakhand Forest Department ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤£ą„ą¤” वन'),
(107566, 'https://ror.org/01nc8zs04', 'en', 1, 'https://ror.org/01nc8zs04 National Institute of Technology Hamirpur ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¹ą¤®ą„€ą¤°ą¤Ŗą„ą¤°'),
(107567, 'https://ror.org/00bgtad15', 'en', 1, 'https://ror.org/00bgtad15 St. John''s University Universidad de San Juan'),
(107568, 'https://ror.org/03jb7qa21', 'no_lang_code', 1, 'https://ror.org/03jb7qa21 Hebei Seismological Bureau ę²³åŒ—ēœåœ°éœ‡å±€'),
(107569, 'https://ror.org/02ymw8z06', 'en', 1, 'https://ror.org/02ymw8z06 Universidad de Misuri University of Missouri UniversitƩ du Missouri'),
(107570, 'https://ror.org/017qcv467', 'en', 1, 'https://ror.org/017qcv467 Max Planck Institut für Astrophysik Max Planck Institute for Astrophysics'),
(107571, 'https://ror.org/00h3d0p13', 'en', 1, 'https://ror.org/00h3d0p13 King’s University College'),
(107572, 'https://ror.org/04h3h5b09', 'en', 1, 'https://ror.org/04h3h5b09 Institute of Physics Belgrade'),
(107573, 'https://ror.org/05n2cz176', 'en', 1, 'https://ror.org/05n2cz176 Muğla Sıtkı Koçman Üniversitesi Muğla University'),
(107574, 'https://ror.org/04a711r87', 'no_lang_code', 1, 'https://ror.org/04a711r87 South African Nuclear Energy Corporation (South Africa)'),
(107575, 'https://ror.org/00trqv719', 'en', 1, 'https://ror.org/00trqv719 University of Rochester Medical Center'),
(107576, 'https://ror.org/016tfm930', 'en', 1, 'https://ror.org/016tfm930 Centro MƩdico de la Universidad de Texas The University of Texas Medical Branch at Galveston'),
(107577, 'https://ror.org/00925cq50', 'no_lang_code', 1, 'https://ror.org/00925cq50 Tata Steel (Netherlands)'),
(107578, 'https://ror.org/03gwbzf29', 'ro', 1, 'https://ror.org/03gwbzf29 George Emil Palade University of Medicine, Pharmacy, Science and Technology of TĆ¢rgu Mureș MarosvĆ”sĆ”rhelyi Orvosi Ć©s GyógyszerĆ©szeti Egyetem Universitatea de Medicină, Farmacie, Științe și Tehnologie ā€žGeorge Emil Paladeā€ din TĆ¢rgu Mureș'),
(107579, 'https://ror.org/04ec9cc06', 'en', 1, 'https://ror.org/04ec9cc06 Alagappa University ą®…ą®“ą®•ą®ŖąÆą®Ŗą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(107580, 'https://ror.org/00m6w7z96', 'en', 1, 'https://ror.org/00m6w7z96 Northwestern University'),
(107581, 'https://ror.org/002k5fe57', 'no_lang_code', 1, 'https://ror.org/002k5fe57 Octapharma (Switzerland)'),
(107582, 'https://ror.org/03msb7010', 'en', 1, 'https://ror.org/03msb7010 Washington Center'),
(107583, 'https://ror.org/0324q6b35', 'no_lang_code', 1, 'https://ror.org/0324q6b35 Chevron (Australia)'),
(107584, 'https://ror.org/00e5k0821', 'en', 1, 'https://ror.org/00e5k0821 New York University Abu Dhabi Ų¬Ų§Ł…Ų¹Ų© Ł†ŁŠŁˆŁŠŁˆŲ±Łƒ أبوظبي'),
(107585, 'https://ror.org/02v1rsx93', 'no_lang_code', 1, 'https://ror.org/02v1rsx93 Nofima'),
(107586, 'https://ror.org/05k65ce46', 'nl', 1, 'https://ror.org/05k65ce46 Parkinson Vereniging'),
(107587, 'https://ror.org/01788sq40', 'no_lang_code', 1, 'https://ror.org/01788sq40 Acorda Therapeutics (United States)'),
(107588, 'https://ror.org/02wnqcb97', 'en', 1, 'https://ror.org/02wnqcb97 National Health Service'),
(107589, 'https://ror.org/04fa64g55', 'en', 1, 'https://ror.org/04fa64g55 Hang Seng University of Hong Kong é¦™ęøÆę’ē”Ÿå¤§å­ø'),
(107590, 'https://ror.org/008d1xp69', 'en', 1, 'https://ror.org/008d1xp69 Arbets- och nƤringsministeriet Ministry of Economic Affairs and Employment Tyƶ- ja elinkeinoministeriƶ'),
(107591, 'https://ror.org/037b5pv06', 'en', 1, 'https://ror.org/037b5pv06 PƩcsi TudomƔnyegyetem University of Pecs'),
(107592, 'https://ror.org/0425b4h79', 'en', 1, 'https://ror.org/0425b4h79 Prime Minister''s Office ę–°åŠ å”ę€»ē†åŠžå…¬å®¤'),
(107593, 'https://ror.org/05wn7r715', 'en', 1, 'https://ror.org/05wn7r715 Western Washington University'),
(107594, 'https://ror.org/03b94tp07', 'en', 1, 'https://ror.org/03b94tp07 University of Auckland Waipapa Taumata Rau'),
(107595, 'https://ror.org/03ymhqy66', 'en', 1, 'https://ror.org/03ymhqy66 AcadƩmie Hassan II des Sciences et Techniques Hassan II Academy of Science and Technology'),
(107596, 'https://ror.org/00ghzk478', 'fr', 1, 'https://ror.org/00ghzk478 INSEAD Institut EuropƩen d''Administration des Affaires'),
(107597, 'https://ror.org/01r3kjq03', 'en', 1, 'https://ror.org/01r3kjq03 Abu Dhabi University Ų¬Ų§Ł…Ų¹Ų© ابوظبي'),
(107598, 'https://ror.org/04pf17v09', 'no_lang_code', 1, 'https://ror.org/04pf17v09 Medtronic (Switzerland)'),
(107599, 'https://ror.org/02wn5qz54', 'en', 1, 'https://ror.org/02wn5qz54 Prifysgol St Andrews University of St Andrews'),
(107600, 'https://ror.org/01ht74751', 'en', 1, 'https://ror.org/01ht74751 Universidad de La Serena University of La Serena'),
(107601, 'https://ror.org/00s8fpf52', 'en', 1, 'https://ror.org/00s8fpf52 Lodz University of Technology Politechnika Łódzka'),
(107602, 'https://ror.org/02nkdxk79', 'en', 1, 'https://ror.org/02nkdxk79 Universidad de la Commonwealth de Virginia Virginia Commonwealth University'),
(107603, 'https://ror.org/00377k374', 'es', 1, 'https://ror.org/00377k374 Fundación Interhospitalaria para la Investigación Cardiovascular'),
(107604, 'https://ror.org/00ew4na22', 'no_lang_code', 1, 'https://ror.org/00ew4na22 Otsuka (United States)'),
(107605, 'https://ror.org/006c8a128', 'de', 1, 'https://ror.org/006c8a128 Ruhrlandklinik'),
(107606, 'https://ror.org/0293rh119', 'en', 1, 'https://ror.org/0293rh119 Universidad de Oregón University of Oregon'),
(107607, 'https://ror.org/030k6vb67', 'en', 1, 'https://ror.org/030k6vb67 Hualien Tzu Chi Medical Center'),
(107608, 'https://ror.org/04dawnj30', 'en', 1, 'https://ror.org/04dawnj30 Universidad de Carolina del Norte en Charlotte University of North Carolina at Charlotte UniversitƩ de caroline du nord Ơ charlotte'),
(107609, 'https://ror.org/04pjzv747', 'no_lang_code', 1, 'https://ror.org/04pjzv747 LG Chem (South Korea) LG화학'),
(107610, 'https://ror.org/00n3w3b69', 'en', 1, 'https://ror.org/00n3w3b69 University of Strathclyde'),
(107611, 'https://ror.org/04w6y2z35', 'en', 1, 'https://ror.org/04w6y2z35 Sydney Local Health District'),
(107612, 'https://ror.org/0228a5v71', 'pt', 1, 'https://ror.org/0228a5v71 Administração Regional de Saúde do Norte IP'),
(107613, 'https://ror.org/028wp3y58', 'en', 1, 'https://ror.org/028wp3y58 Chulalongkorn University ąøˆąøøąø¬ąø²ąø„ąø‡ąøąø£ąø“ą¹Œąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(107614, 'https://ror.org/0207ad724', 'en', 1, 'https://ror.org/0207ad724 Universidad de Wake Forest UniversitƩ de wake forest Wake Forest University'),
(107615, 'https://ror.org/00fgdtt86', 'en', 1, 'https://ror.org/00fgdtt86 Society of Interventional Radiology'),
(107616, 'https://ror.org/059wmd288', 'es', 1, 'https://ror.org/059wmd288 Universidad Nacional de Chimborazo'),
(107617, 'https://ror.org/00f54p054', 'en', 1, 'https://ror.org/00f54p054 Stanford University Universidad Stanford'),
(107618, 'https://ror.org/03qtzce31', 'fr', 1, 'https://ror.org/03qtzce31 MinistĆØre de l''Ɖconomie, de l''Innovation et de l''Ɖnergie');
INSERT INTO `rors` VALUES
(107619, 'https://ror.org/00xzqjh13', 'en', 1, 'https://ror.org/00xzqjh13 Universidad de Tennessee University of Tennessee System UniversitƩ du Tennessee'),
(107620, 'https://ror.org/047w75g40', 'en', 1, 'https://ror.org/047w75g40 International Islamic University, Islamabad ŲØŁŠŁ† Ų§Ł„Ų§Ł‚ŁˆŲ§Ł…ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł¹ŪŒ اسلام Ų¢ŲØŲ§ŲÆā€Ž'),
(107621, 'https://ror.org/00j6z5f80', 'sv', 1, 'https://ror.org/00j6z5f80 LantmƤnnen'),
(107622, 'https://ror.org/05tzrdd39', 'no_lang_code', 1, 'https://ror.org/05tzrdd39 Leo Pharma (Denmark)'),
(107623, 'https://ror.org/03vgk3f90', 'es', 1, 'https://ror.org/03vgk3f90 Universidad San Ignacio de Loyola'),
(107624, 'https://ror.org/037vx0145', 'de', 1, 'https://ror.org/037vx0145 Projektträger Jülich'),
(107625, 'https://ror.org/013js5t03', 'no_lang_code', 1, 'https://ror.org/013js5t03 Roche (Estonia)'),
(107626, 'https://ror.org/05ynxx418', 'en', 1, 'https://ror.org/05ynxx418 Linkƶping University Linkƶpingin Yliopisto Linkƶpings Universitet'),
(107627, 'https://ror.org/048cwvf49', 'en', 1, 'https://ror.org/048cwvf49 Universiteit van Suid-Afrika University of South Africa'),
(107628, 'https://ror.org/029w34q36', 'no_lang_code', 1, 'https://ror.org/029w34q36 Ningxia Seismological Bureau å®å¤å›žę—č‡Ŗę²»åŒŗåœ°éœ‡å±€'),
(107629, 'https://ror.org/03xk7zy09', 'en', 1, 'https://ror.org/03xk7zy09 Society of University Surgeons'),
(107630, 'https://ror.org/023b0x485', 'en', 1, 'https://ror.org/023b0x485 Johannes Gutenberg University Mainz Johannes Gutenberg-UniversitƤt Mainz'),
(107631, 'https://ror.org/0449jya45', 'no_lang_code', 1, 'https://ror.org/0449jya45 Ningxia Meteorological Bureau å®å¤å›žę—č‡Ŗę²»åŒŗę°”č±”å±€'),
(107632, 'https://ror.org/05w5gh811', 'en', 1, 'https://ror.org/05w5gh811 GBS/CIDP Foundation International'),
(107633, 'https://ror.org/05kph4940', 'en', 1, 'https://ror.org/05kph4940 Forskningsinstitutet fƶr informationsteknologi Helsinki Institute for Information Technology Tietotekniikan tutkimuslaitos'),
(107634, 'https://ror.org/056wyhh33', 'en', 1, 'https://ror.org/056wyhh33 National Institute of Technology Patna ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø पटना'),
(107635, 'https://ror.org/052czxv31', 'en', 1, 'https://ror.org/052czxv31 Massey University'),
(107636, 'https://ror.org/03rp50x72', 'en', 1, 'https://ror.org/03rp50x72 University of the Witwatersrand'),
(107637, 'https://ror.org/027m9bs27', 'en', 1, 'https://ror.org/027m9bs27 Prifysgol Manceinion University of Manchester'),
(107638, 'https://ror.org/00a0n9e72', 'en', 1, 'https://ror.org/00a0n9e72 Ollscoil Luimnigh University of Limerick'),
(107639, 'https://ror.org/00b30xv10', 'en', 1, 'https://ror.org/00b30xv10 University of Pennsylvania'),
(107640, 'https://ror.org/04vc81p87', 'en', 1, 'https://ror.org/04vc81p87 University of Sannio UniversitĆ  degli Studi del Sannio'),
(107641, 'https://ror.org/048hyya13', 'en', 1, 'https://ror.org/048hyya13 Swiss HIV Cohort Study'),
(107642, 'https://ror.org/05rcfc739', 'en', 1, 'https://ror.org/05rcfc739 Shenzhen Municipal People''s Government'),
(107643, 'https://ror.org/05a7rhx54', 'no_lang_code', 1, 'https://ror.org/05a7rhx54 Ericsson (Sweden)'),
(107644, 'https://ror.org/01q3tbs38', 'en', 1, 'https://ror.org/01q3tbs38 King Abdullah University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ الله Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(107645, 'https://ror.org/00excyz84', 'en', 1, 'https://ror.org/00excyz84 Doğu Akdeniz Üniversitesi Eastern Mediterranean University'),
(107646, 'https://ror.org/03ytt7k16', 'en', 1, 'https://ror.org/03ytt7k16 Danish Cancer Society'),
(107647, 'https://ror.org/0249tng68', 'en', 1, 'https://ror.org/0249tng68 Ministry of Public Safety and Security'),
(107648, 'https://ror.org/02rgb2k63', 'ms', 1, 'https://ror.org/02rgb2k63 Universiti Sains Malaysia University of Science Malaysia ą®®ą®²ąÆ‡ą®šą®æą®Æ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ é©¬ę„č„æäŗšē†ē§‘å¤§å­¦'),
(107649, 'https://ror.org/006e4ws51', 'de', 1, 'https://ror.org/006e4ws51 ZEIT-Stiftung'),
(107650, 'https://ror.org/03xrrjk67', 'en', 1, 'https://ror.org/03xrrjk67 Universidad de Alabama University of Alabama UniversitƩ de l''Alabama'),
(107651, 'https://ror.org/029qx3s09', 'en', 1, 'https://ror.org/029qx3s09 High Point University Universidad de High Point'),
(107652, 'https://ror.org/05rfqv493', 'en', 1, 'https://ror.org/05rfqv493 East Tennessee State University'),
(107653, 'https://ror.org/005teat46', 'ca', 1, 'https://ror.org/005teat46 Institut de Recerca Sant Pau'),
(107654, 'https://ror.org/003kmcj19', 'no_lang_code', 1, 'https://ror.org/003kmcj19 Karl Storz (Germany)'),
(107655, 'https://ror.org/03tdcw665', 'en', 1, 'https://ror.org/03tdcw665 Irkutsk Scientific Center of Surgery and Traumatology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø Šø травматологии'),
(107656, 'https://ror.org/039k72y49', 'en', 1, 'https://ror.org/039k72y49 Assumption College'),
(107657, 'https://ror.org/0229nk184', 'en', 1, 'https://ror.org/0229nk184 Insurance and Care NSW'),
(107658, 'https://ror.org/03769b225', 'en', 1, 'https://ror.org/03769b225 University of Vaasa Vaasan yliopisto Vasa universitet'),
(107659, 'https://ror.org/0034me914', 'en', 1, 'https://ror.org/0034me914 Saveetha University'),
(107660, 'https://ror.org/03dtebk39', 'en', 1, 'https://ror.org/03dtebk39 Ethniko Asteroskopeio Athinon National Observatory of Athens Ī•ĪøĪ½Ī¹ĪŗĻŒ Ī‘ĻƒĻ„ĪµĻĪæĻƒĪŗĪæĻ€ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(107661, 'https://ror.org/01zctcs90', 'no_lang_code', 1, 'https://ror.org/01zctcs90 BP (United Kingdom)'),
(107662, 'https://ror.org/02crff812', 'en', 1, 'https://ror.org/02crff812 University of Zurich Università di Zurigo Universität Zürich Université de Zurich'),
(107663, 'https://ror.org/046awyn59', 'en', 1, 'https://ror.org/046awyn59 Częstochowa University of Technology Politechnika Częstochowska'),
(107664, 'https://ror.org/035ggvj17', 'en', 1, 'https://ror.org/035ggvj17 The Women University Multan ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ملتان'),
(107665, 'https://ror.org/00t33hh48', 'en', 1, 'https://ror.org/00t33hh48 Chinese University of Hong Kong 香港中文大學'),
(107666, 'https://ror.org/02v80fc35', 'en', 1, 'https://ror.org/02v80fc35 Auburn University Universidad de Auburn'),
(107667, 'https://ror.org/01k5qnb77', 'en', 1, 'https://ror.org/01k5qnb77 Robert Koch Institute Robert Koch-Institut'),
(107668, 'https://ror.org/019whta54', 'en', 1, 'https://ror.org/019whta54 University of Lausanne UniversitƠ di Losanna UniversitƤt Lausanne UniversitƩ de Lausanne'),
(107669, 'https://ror.org/057vybt25', 'no_lang_code', 1, 'https://ror.org/057vybt25 Plansee (Germany)'),
(107670, 'https://ror.org/00hj8s172', 'en', 1, 'https://ror.org/00hj8s172 Columbia University Universidad de Columbia'),
(107671, 'https://ror.org/00x0nkm13', 'pt', 1, 'https://ror.org/00x0nkm13 Federal University of Health Sciences of Porto Alegre Universidad Federal de Ciencias de la Salud de Porto Alegre Universidade Federal de CiĆŖncias da SaĆŗde de Porto Alegre'),
(107672, 'https://ror.org/03wv1cb14', 'en', 1, 'https://ror.org/03wv1cb14 Kunnskapsdepartementet, lit. Ministry of Knowledge Ministry of Education and Research'),
(107673, 'https://ror.org/0497crr92', 'en', 1, 'https://ror.org/0497crr92 Smith College'),
(107674, 'https://ror.org/04njjy449', 'es', 1, 'https://ror.org/04njjy449 Granadako Unibertsitatea Universidad de Granada University of Granada'),
(107675, 'https://ror.org/03myd1n81', 'en', 1, 'https://ror.org/03myd1n81 Dar Al Uloom University Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± Ų§Ł„Ų¹Ł„ŁˆŁ…'),
(107676, 'https://ror.org/014r0rr19', 'es', 1, 'https://ror.org/014r0rr19 Universidad de Oriente'),
(107677, 'https://ror.org/01vhnrs90', 'en', 1, 'https://ror.org/01vhnrs90 Max Planck Institute for Astronomy Max-Planck-Institut für Astronomie'),
(107678, 'https://ror.org/05vg07g77', 'en', 1, 'https://ror.org/05vg07g77 Aravind Eye Hospital'),
(107679, 'https://ror.org/01skt4w74', 'en', 1, 'https://ror.org/01skt4w74 Beijing Institute of Technology åŒ—äŗ¬ē†å·„å¤§å­¦'),
(107680, 'https://ror.org/0166e9x11', 'en', 1, 'https://ror.org/0166e9x11 Universidad de Las AmƩricas University of the Americas'),
(107681, 'https://ror.org/01gtctx88', 'no_lang_code', 1, 'https://ror.org/01gtctx88 GW Pharmaceuticals (United Kingdom)'),
(107682, 'https://ror.org/019tvvb70', 'en', 1, 'https://ror.org/019tvvb70 Institute of Organic Synthesis Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠžŃ€Š³Š°Š½ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Динтеза им. И. ŠÆ. ŠŸŠ¾ŃŃ‚Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(107683, 'https://ror.org/0049xax05', 'en', 1, 'https://ror.org/0049xax05 AgĆŖncia Portuguesa do Ambiente Portuguese Environment Agency'),
(107684, 'https://ror.org/05k0wa595', 'es', 1, 'https://ror.org/05k0wa595 Consejo Mexiquense de Ciencia y TecnologĆ­a'),
(107685, 'https://ror.org/01ryk1543', 'en', 1, 'https://ror.org/01ryk1543 Prifysgol Southampton University of Southampton'),
(107686, 'https://ror.org/050p6gz73', 'en', 1, 'https://ror.org/050p6gz73 Indian Association for the Cultivation of Science ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦…ą§ą¦Æą¦¾ą¦øą§‹ą¦øą¦æą¦Æą¦¼ą§‡ą¦¶ą¦Ø ফর ą¦¦ą§ą¦Æ ą¦•ą¦¾ą¦²ą¦Ÿą¦æą¦­ą§‡ą¦¶ą¦Ø অফ ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®µą®³ą®°ąÆą®šąÆą®šą®æą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“…ą“øąµ‹ą“øą“æą“Æąµ‡ą“·ąµ» ą“«ąµ‹ąµ¼ ą“¦ą“æ ą“•ąµ¾ą“Ÿąµą“Ÿą“æą“µąµ‡ą“·ąµ» ą““ą“«ąµ ą“øą“Æąµ»ą“øąµ'),
(107687, 'https://ror.org/01vx35703', 'en', 1, 'https://ror.org/01vx35703 East Carolina University Universidad del Este de Carolina'),
(107688, 'https://ror.org/04vyex278', 'en', 1, 'https://ror.org/04vyex278 Ministry of Urban Development'),
(107689, 'https://ror.org/041jtyq26', 'no_lang_code', 1, 'https://ror.org/041jtyq26 GAIL (India) ą¤—ą„‡ą¤² (इंऔिया) ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(107690, 'https://ror.org/01h21cs69', 'no_lang_code', 1, 'https://ror.org/01h21cs69 Wacker Group (Germany)'),
(107691, 'https://ror.org/00dpnh189', 'es', 1, 'https://ror.org/00dpnh189 Autonomous University of Coahuila Universidad Autónoma de Coahuila'),
(107692, 'https://ror.org/03613d656', 'en', 1, 'https://ror.org/03613d656 Brno University of Technology VysokĆ© učenĆ­ technickĆ© v Brně'),
(107693, 'https://ror.org/0324r4e56', 'en', 1, 'https://ror.org/0324r4e56 Karakoram International University ŲØŪŒŁ† Ų§Ł„Ų§Ł‚ŁˆŲ§Ł…ŪŒ جامعہ Ł‚Ų±Ų§Ł‚Ų±Ł…ā€Ž'),
(107694, 'https://ror.org/05psqqq26', 'en', 1, 'https://ror.org/05psqqq26 Equity Trustees'),
(107695, 'https://ror.org/0111es613', 'es', 1, 'https://ror.org/0111es613 Hospital General Universitario Gregorio Marañón'),
(107696, 'https://ror.org/02p2qrw13', 'en', 1, 'https://ror.org/02p2qrw13 Ningxia Water Conservancy å®å¤å›žę—č‡Ŗę²»åŒŗę°“åˆ©åŽ… å®å¤ę°“åˆ©åŽ…'),
(107697, 'https://ror.org/04j4kfb22', 'en', 1, 'https://ror.org/04j4kfb22 Centre for Advanced Laser Applications'),
(107698, 'https://ror.org/00286hs46', 'en', 1, 'https://ror.org/00286hs46 Kaminuza y’u Rwanda University of Rwanda UniversitĆ© du Rwanda'),
(107699, 'https://ror.org/03vdzkx92', 'en', 1, 'https://ror.org/03vdzkx92 City of Helsinki Helsingin Kaupunki'),
(107700, 'https://ror.org/012m7k033', 'en', 1, 'https://ror.org/012m7k033 Anhui Provincial Department of Education'),
(107701, 'https://ror.org/01485tq96', 'en', 1, 'https://ror.org/01485tq96 Universidad de Wyoming University of Wyoming UniversitƩ du wyoming'),
(107702, 'https://ror.org/0535jz951', 'en', 1, 'https://ror.org/0535jz951 Emissions Reduction Alberta'),
(107703, 'https://ror.org/049htfh25', 'en', 1, 'https://ror.org/049htfh25 FDI World Dental Federation'),
(107704, 'https://ror.org/042wh0w21', 'en', 1, 'https://ror.org/042wh0w21 Irish Rugby Football Union'),
(107705, 'https://ror.org/0566a8c54', 'en', 1, 'https://ror.org/0566a8c54 University of North Carolina System UniversitƩ de caroline du nord'),
(107706, 'https://ror.org/01d0fc168', 'en', 1, 'https://ror.org/01d0fc168 Integrated Carbon Observation System'),
(107707, 'https://ror.org/05e1k0d14', 'de', 1, 'https://ror.org/05e1k0d14 Deutsche Arthrose-Hilfe'),
(107708, 'https://ror.org/00m1rny06', 'fr', 1, 'https://ror.org/00m1rny06 Fondation Francqui'),
(107709, 'https://ror.org/04bs1pb34', 'en', 1, 'https://ror.org/04bs1pb34 Hamburg University of Technology Technische UniversitƤt Hamburg'),
(107710, 'https://ror.org/04h3c2e31', 'en', 1, 'https://ror.org/04h3c2e31 Institute of Fluid Flow-Machinery Instytut Maszyn Przepływowych'),
(107711, 'https://ror.org/03nz8qe97', 'en', 1, 'https://ror.org/03nz8qe97 Ariel University'),
(107712, 'https://ror.org/00ysfqy60', 'en', 1, 'https://ror.org/00ysfqy60 Oregon State University Universidad Estatal de Oregón UniversitĆ© d''Ɖtat de l''Oregon'),
(107713, 'https://ror.org/00rk2pe57', 'en', 1, 'https://ror.org/00rk2pe57 Office of Naval Research'),
(107714, 'https://ror.org/001tmjg57', 'en', 1, 'https://ror.org/001tmjg57 Universidad de Kansas University of Kansas UniversitƩ du kansas'),
(107715, 'https://ror.org/05arvb276', 'en', 1, 'https://ror.org/05arvb276 Indian National Academy of Engineering'),
(107716, 'https://ror.org/05dk0ce17', 'en', 1, 'https://ror.org/05dk0ce17 Universidad Estatal de Washington UniversitĆ© d''Ɖtat de washington Washington State University'),
(107717, 'https://ror.org/00n1dhm50', 'en', 1, 'https://ror.org/00n1dhm50 Ethiopian Institute of Water Resources į‹ØįŠ¢į‰µį‹®įŒµį‹« į‹įˆƒ įˆ€į‰„į‰µ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(107718, 'https://ror.org/01z1vct10', 'en', 1, 'https://ror.org/01z1vct10 City of Hope'),
(107719, 'https://ror.org/00pyevk91', 'en', 1, 'https://ror.org/00pyevk91 Structural Engineering Research Centre'),
(107720, 'https://ror.org/04n00c532', 'de', 1, 'https://ror.org/04n00c532 Ministerium für Kultur und Wissenschaft des Landes Nordrhein-Westfalen'),
(107721, 'https://ror.org/01ee9ar58', 'en', 1, 'https://ror.org/01ee9ar58 Prifysgol Nottingham University of Nottingham'),
(107722, 'https://ror.org/02p8nt844', 'en', 1, 'https://ror.org/02p8nt844 North East Institute of Science and Technology North East Institute of Science and Technology, Jorhat ą¦‰ą¦¤ą§ą¦¤ą§°-পূব ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø আৰু ą¦Ŗą§ą§°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą§°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø'),
(107723, 'https://ror.org/008y4p075', 'sv', 1, 'https://ror.org/008y4p075 Blekinge County Council Region Blekinge'),
(107724, 'https://ror.org/032000t02', 'de', 1, 'https://ror.org/032000t02 Ulm University UniversitƤt Ulm'),
(107725, 'https://ror.org/02vyfsk43', 'no_lang_code', 0, 'https://ror.org/02vyfsk43 SmithKline Beecham (United States)'),
(107726, 'https://ror.org/01a77tt86', 'en', 1, 'https://ror.org/01a77tt86 Prifysgol Warwick University of Warwick'),
(107727, 'https://ror.org/02czsnj07', 'en', 1, 'https://ror.org/02czsnj07 Deakin University'),
(107728, 'https://ror.org/01zkghx44', 'en', 1, 'https://ror.org/01zkghx44 Georgia Institute of Technology Instituto de TecnologĆ­a de Georgia'),
(107729, 'https://ror.org/03gvhpa76', 'es', 1, 'https://ror.org/03gvhpa76 Centro Internacional de Mejoramiento de MaĆ­z Y Trigo'),
(107730, 'https://ror.org/03tz3v863', 'en', 1, 'https://ror.org/03tz3v863 British Sjƶgren''s Syndrome Association'),
(107731, 'https://ror.org/04xdyc983', 'en', 1, 'https://ror.org/04xdyc983 Instytut Niskich Temperatur i Badań Strukturalnych im. Włodzimierza Trzebiatowskiego Włodzimierz Trzebiatowski Institute of Low Temperature and Structure Research'),
(107732, 'https://ror.org/00rcxh774', 'en', 1, 'https://ror.org/00rcxh774 University of Cologne UniversitƤt zu Kƶln'),
(107733, 'https://ror.org/0014fb593', 'en', 1, 'https://ror.org/0014fb593 University of Food Technologies'),
(107734, 'https://ror.org/01jaj8n65', 'no_lang_code', 1, 'https://ror.org/01jaj8n65 Assiut University UniversitĆ© d''Assiout Ų¬Ų§Ł…Ų¹Ų© أسيوط'),
(107735, 'https://ror.org/031m0fr54', 'en', 1, 'https://ror.org/031m0fr54 National University of Villa MarĆ­a Universidad Nacional de Villa MarĆ­a'),
(107736, 'https://ror.org/02r1d7x68', 'no_lang_code', 1, 'https://ror.org/02r1d7x68 Boehringer Ingelheim (Japan) ę—„ęœ¬ćƒ™ćƒ¼ćƒŖćƒ³ć‚¬ćƒ¼ć‚¤ćƒ³ć‚²ćƒ«ćƒć‚¤ćƒ ę Ŗå¼ä¼šē¤¾'),
(107737, 'https://ror.org/022mz6y25', 'en', 1, 'https://ror.org/022mz6y25 Drugs for Neglected Diseases Initiative'),
(107738, 'https://ror.org/05wf1w785', 'en', 1, 'https://ror.org/05wf1w785 Hope Foundation'),
(107739, 'https://ror.org/03vek6s52', 'en', 1, 'https://ror.org/03vek6s52 Harvard University Universidad de Harvard'),
(107740, 'https://ror.org/05wvpxv85', 'en', 1, 'https://ror.org/05wvpxv85 Tufts University'),
(107741, 'https://ror.org/01djxaj77', 'no_lang_code', 1, 'https://ror.org/01djxaj77 Wockhardt (India)'),
(107742, 'https://ror.org/01d22zt92', 'nl', 1, 'https://ror.org/01d22zt92 Spieren voor Spieren'),
(107743, 'https://ror.org/0008vp155', 'da', 1, 'https://ror.org/0008vp155 Grundfos Fond Grundfos Foundation'),
(107744, 'https://ror.org/04jr1s763', 'en', 1, 'https://ror.org/04jr1s763 University of Florence UniversitƠ degli Studi di Firenze UniversitƤt Florenz UniversitƩ de Florence'),
(107745, 'https://ror.org/04khwmr87', 'en', 1, 'https://ror.org/04khwmr87 Vienna Biocenter'),
(107746, 'https://ror.org/0040r6f76', 'en', 1, 'https://ror.org/0040r6f76 Te Herenga Waka Victoria University of Wellington'),
(107747, 'https://ror.org/04he1c034', 'en', 1, 'https://ror.org/04he1c034 Office of Carbon Management'),
(107748, 'https://ror.org/05dxps055', 'en', 1, 'https://ror.org/05dxps055 California Institute of Technology Instituto de TecnologĆ­a de California'),
(107749, 'https://ror.org/04d5mb615', 'en', 1, 'https://ror.org/04d5mb615 University of Nebraska at Kearney'),
(107750, 'https://ror.org/00ktq1636', 'en', 1, 'https://ror.org/00ktq1636 Finnish National Agency for Education Opetushallitus Utbildningsstyrelsen'),
(107751, 'https://ror.org/03jrmgg47', 'en', 1, 'https://ror.org/03jrmgg47 Alvin J. Siteman Cancer Center'),
(107752, 'https://ror.org/05wgann87', 'de', 1, 'https://ror.org/05wgann87 Deutsches Stiftungszentrum'),
(107753, 'https://ror.org/05t4nb462', 'en', 1, 'https://ror.org/05t4nb462 Guangzhou Science, Technology and Innovation Commission å¹æå·žåø‚ē§‘ęŠ€åˆ›ę–°å§”å‘˜ä¼š'),
(107754, 'https://ror.org/01f5ytq51', 'en', 1, 'https://ror.org/01f5ytq51 Texas A&M University'),
(107755, 'https://ror.org/00fd30e02', 'en', 1, 'https://ror.org/00fd30e02 Indo Soviet Friendship College of Pharmacy'),
(107756, 'https://ror.org/0316ej306', 'en', 1, 'https://ror.org/0316ej306 Weizmann Institute of Science מכון ויצמן למדע معهد ŁˆŲ§ŁŠŲ²Ł…Ų§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ…'),
(107757, 'https://ror.org/05dbapj97', 'no_lang_code', 1, 'https://ror.org/05dbapj97 Schaeffler (Germany)'),
(107758, 'https://ror.org/04yf4aj88', 'en', 1, 'https://ror.org/04yf4aj88 Universitas Nusa Cendana University of Nusa Cendana'),
(107759, 'https://ror.org/048fyec77', 'en', 1, 'https://ror.org/048fyec77 Murdoch Children''s Research Institute'),
(107760, 'https://ror.org/05s6mpv98', 'en', 1, 'https://ror.org/05s6mpv98 State Key Laboratory of Urban Water Resources and Water Environment åŸŽåø‚ę°“čµ„ęŗäøŽę°“ēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(107761, 'https://ror.org/05vt9qd57', 'en', 1, 'https://ror.org/05vt9qd57 Rutgers, The State University of New Jersey'),
(107762, 'https://ror.org/01yc7t268', 'en', 1, 'https://ror.org/01yc7t268 Universidad Washington en San Luis UniversitƩ Washington Ơ Saint-louis Washington University in St. Louis'),
(107763, 'https://ror.org/04jk2xb11', 'no_lang_code', 1, 'https://ror.org/04jk2xb11 Serum Institute of India (India)'),
(107764, 'https://ror.org/056qw0m61', 'pt', 1, 'https://ror.org/056qw0m61 Instituto Nacional de Ciências e Tecnologias Analíticas Avançadas'),
(107765, 'https://ror.org/02prz6q96', 'en', 1, 'https://ror.org/02prz6q96 One Mind'),
(107766, 'https://ror.org/024mw5h28', 'en', 1, 'https://ror.org/024mw5h28 Universidad de Chicago University of Chicago UniversitƩ de chicago'),
(107767, 'https://ror.org/02smfhw86', 'en', 1, 'https://ror.org/02smfhw86 Institut polytechnique et universitĆ© d''Ɖtat de virginie Instituto PolitĆ©cnico y Universidad Estatal de Virginia Virginia Tech'),
(107768, 'https://ror.org/02jz4aj89', 'en', 1, 'https://ror.org/02jz4aj89 Maastricht University Universiteit Maastricht'),
(107769, 'https://ror.org/011vxgd24', 'en', 1, 'https://ror.org/011vxgd24 Universidad de Virginia Occidental West Virginia University'),
(107770, 'https://ror.org/00w78qy64', 'fr', 1, 'https://ror.org/00w78qy64 Institut Pasteur of Shanghai äøŠęµ·å·“ę–Æå¾·ē ”ē©¶ę‰€'),
(107771, 'https://ror.org/00n3pea85', 'no_lang_code', 1, 'https://ror.org/00n3pea85 GlaxoSmithKline (Belgium)'),
(107772, 'https://ror.org/03vmmgg57', 'en', 1, 'https://ror.org/03vmmgg57 Singapore Immunology Network'),
(107773, 'https://ror.org/00vc9b171', 'en', 1, 'https://ror.org/00vc9b171 Rising Tide Foundation'),
(107774, 'https://ror.org/011y3sy88', 'en', 1, 'https://ror.org/011y3sy88 Zhangjiakou City Science and Technology and Seismological Bureau å¼ å®¶å£åø‚ē§‘å­¦ęŠ€ęœÆå’Œåœ°éœ‡å±€'),
(107775, 'https://ror.org/0309msh52', 'de', 1, 'https://ror.org/0309msh52 Wehrwissenschaftliches Institut für Werk- und Betriebsstoffe'),
(107776, 'https://ror.org/01jdpyv68', 'en', 1, 'https://ror.org/01jdpyv68 Saarland University UniversitƤt des Saarlandes'),
(107777, 'https://ror.org/03ehgrz61', 'en', 1, 'https://ror.org/03ehgrz61 Ministrstvo za zdravje Ministry of Health'),
(107778, 'https://ror.org/02c5jsm26', 'en', 1, 'https://ror.org/02c5jsm26 Forschungsinstitut f molekulare Pathologie GesmbH Research Institute of Molecular Pathology'),
(107779, 'https://ror.org/03rrfep50', 'de', 1, 'https://ror.org/03rrfep50 Ministerium für Bildung, Wissenschaft, Weiterbildung und Kultur'),
(107780, 'https://ror.org/01jmxt844', 'en', 1, 'https://ror.org/01jmxt844 University of Otago'),
(107781, 'https://ror.org/02sp3q482', 'en', 1, 'https://ror.org/02sp3q482 The University of Agriculture, Peshawar زرعی جامعہ پؓاور'),
(107782, 'https://ror.org/02b5m3n83', 'en', 1, 'https://ror.org/02b5m3n83 Instytut Medycyny Pracy imienia prof. dra med. Jerzego Nofera Nofer Institute of Occupational Medicine'),
(107783, 'https://ror.org/02r109517', 'en', 1, 'https://ror.org/02r109517 Weill Cornell Medicine'),
(107784, 'https://ror.org/03tee2f33', 'en', 1, 'https://ror.org/03tee2f33 Ministry of Colleges and Universities'),
(107785, 'https://ror.org/053mqrf26', 'en', 1, 'https://ror.org/053mqrf26 Prince Sultan University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± سلطان'),
(107786, 'https://ror.org/03yj89h83', 'en', 1, 'https://ror.org/03yj89h83 Oulun yliopisto University of Oulu'),
(107787, 'https://ror.org/05fw72335', 'fr', 1, 'https://ror.org/05fw72335 GIS-Institut pour la Recherche en SantƩ Publique'),
(107788, 'https://ror.org/05nbtzd04', 'it', 1, 'https://ror.org/05nbtzd04 Fondazione Lombardia per l’Ambiente'),
(107789, 'https://ror.org/023abrt21', 'en', 1, 'https://ror.org/023abrt21 Al Ain University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹ŁŠŁ† Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(107790, 'https://ror.org/0349bsm71', 'en', 1, 'https://ror.org/0349bsm71 Hong Kong Metropolitan University é¦™ęøÆéƒ½ęœƒå¤§å­ø'),
(107791, 'https://ror.org/01t1agx36', 'en', 1, 'https://ror.org/01t1agx36 Central University of South Bihar ą¤¦ą¤•ą„ą¤·ą¤æą¤£ बिहार ą¤•ą„‡ą¤Øą„ā€ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(107792, 'https://ror.org/036nfer12', 'en', 1, 'https://ror.org/036nfer12 Universidad de Florida Central University of Central Florida'),
(107793, 'https://ror.org/00hx57361', 'en', 1, 'https://ror.org/00hx57361 Princeton University Universidad de Princeton UniversitƩ de princeton'),
(107794, 'https://ror.org/03kaab451', 'en', 1, 'https://ror.org/03kaab451 Maharshi Dayanand University ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤¦ą¤Æą¤¾ą¤Øą¤Øą„ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤°ą„‹ą¤¹ą¤¤ą¤•'),
(107795, 'https://ror.org/0130frc33', 'en', 1, 'https://ror.org/0130frc33 Universidad de Carolina del Norte en Chapel Hill University of North Carolina at Chapel Hill UniversitƩ de la Caroline du Nord Ơ Chapel Hill'),
(107796, 'https://ror.org/03bw8ys89', 'en', 1, 'https://ror.org/03bw8ys89 Sainsbury Family Charitable Trusts'),
(107797, 'https://ror.org/000e0be47', 'en', 1, 'https://ror.org/000e0be47 Northwestern University'),
(107798, 'https://ror.org/00yncr324', 'en', 1, 'https://ror.org/00yncr324 Monash University Malaysia'),
(107799, 'https://ror.org/05p5z9518', 'no_lang_code', 1, 'https://ror.org/05p5z9518 Dentsply Sirona (Sweden)'),
(107800, 'https://ror.org/02cbymn47', 'pt', 1, 'https://ror.org/02cbymn47 Mato Grosso State University Universidade do Estado de Mato Grosso'),
(107801, 'https://ror.org/03qxff017', 'en', 1, 'https://ror.org/03qxff017 Hebrew University of Jerusalem ×”××•× ×™×‘×Ø×”×™×˜×” העברית ×‘×™×Ø×•×©×œ×™× الجامعة Ų§Ł„Ų¹ŲØŲ±ŁŠŲ© في القدس'),
(107802, 'https://ror.org/00xcryt71', 'en', 1, 'https://ror.org/00xcryt71 University of Arkansas for Medical Sciences'),
(107803, 'https://ror.org/02smred28', 'en', 1, 'https://ror.org/02smred28 International Institute of Tropical Agriculture'),
(107804, 'https://ror.org/03rkhwr46', 'en', 1, 'https://ror.org/03rkhwr46 Inter-University Council for East Africa'),
(107805, 'https://ror.org/030c55a26', 'es', 1, 'https://ror.org/030c55a26 Agroseguro Agrupación Española de Entidades Aseguradoras de los Seguros Agrarios Combinados S.A.'),
(107806, 'https://ror.org/045yy3r21', 'es', 1, 'https://ror.org/045yy3r21 Institute of Food Science, Technology and Nutrition Instituto de Ciencia y Tecnología de Alimentos y Nutrición'),
(107807, 'https://ror.org/005t7z309', 'en', 1, 'https://ror.org/005t7z309 The Exploratory Research Center on Life and Living Systems ē”Ÿå‘½å‰µęˆęŽ¢ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(107808, 'https://ror.org/04mrb6c22', 'en', 1, 'https://ror.org/04mrb6c22 Inova Health System'),
(107809, 'https://ror.org/01sdrjx85', 'en', 1, 'https://ror.org/01sdrjx85 Institut de Fisica d''Altes Energies Institute for High Energy Physics'),
(107810, 'https://ror.org/01q8csw59', 'sv', 1, 'https://ror.org/01q8csw59 Halland County Council Region Halland'),
(107811, 'https://ror.org/04yrkc140', 'en', 1, 'https://ror.org/04yrkc140 University of Nebraska at Omaha UniversitƩ du nebraska Ơ omaha'),
(107812, 'https://ror.org/02srcnm40', 'en', 1, 'https://ror.org/02srcnm40 American College of Clinical Pharmacy'),
(107813, 'https://ror.org/03bvtv586', 'pt', 1, 'https://ror.org/03bvtv586 Instituto PortuguĆŖs do Desporto e Juventude IP'),
(107814, 'https://ror.org/051axzw70', 'en', 1, 'https://ror.org/051axzw70 Allergia- ja Astmaliitto Allergy and Asthma Federation'),
(107815, 'https://ror.org/02n1hzn07', 'en', 1, 'https://ror.org/02n1hzn07 Middle Tennessee State University'),
(107816, 'https://ror.org/049c8eh51', 'en', 1, 'https://ror.org/049c8eh51 Central Washington University'),
(107817, 'https://ror.org/04yzxz566', 'en', 1, 'https://ror.org/04yzxz566 Ca'' Foscari University of Venice UniversitƠ Ca'' Foscari Venezia UniversitƤt Venedig UniversitƩ ca'' foscari de venise Univerza v Benetkah'),
(107818, 'https://ror.org/04kfn4587', 'en', 1, 'https://ror.org/04kfn4587 Mount Sinai Health System'),
(107819, 'https://ror.org/03yrrjy16', 'en', 1, 'https://ror.org/03yrrjy16 Syddansk Universitet University of Southern Denmark'),
(107820, 'https://ror.org/00tvate34', 'es', 1, 'https://ror.org/00tvate34 Universidad San Pablo CEU Universidade San Pablo CEU'),
(107821, 'https://ror.org/04ctejd88', 'en', 1, 'https://ror.org/04ctejd88 Airlangga University Universitas Airlangga'),
(107822, 'https://ror.org/05hs6h993', 'en', 1, 'https://ror.org/05hs6h993 Michigan State University UniversitĆ© d''Ɖtat du michigan'),
(107823, 'https://ror.org/031n2c920', 'es', 1, 'https://ror.org/031n2c920 Aragon Nanoscience and Materials Institute Instituto de Nanociencia y Materiales de Aragón'),
(107824, 'https://ror.org/054d77k59', 'en', 1, 'https://ror.org/054d77k59 University of Agriculture Faisalabad جامعہ زرعیہ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(107825, 'https://ror.org/00jdryp44', 'en', 1, 'https://ror.org/00jdryp44 Chuo Kikuu cha Sokoine cha Kilimo Sokoine University of Agriculture'),
(107826, 'https://ror.org/047s7ex42', 'en', 1, 'https://ror.org/047s7ex42 University of Utah Health Care'),
(107827, 'https://ror.org/01t466c14', 'es', 1, 'https://ror.org/01t466c14 National University of Costa Rica Universidad Nacional'),
(107828, 'https://ror.org/057rhqk62', 'en', 1, 'https://ror.org/057rhqk62 Uppsala Monitoring Centre'),
(107829, 'https://ror.org/00jxnh380', 'en', 1, 'https://ror.org/00jxnh380 Sri Lanka Council For Agricultural Research Policy'),
(107830, 'https://ror.org/02vm5rt34', 'en', 1, 'https://ror.org/02vm5rt34 Vanderbilt University'),
(107831, 'https://ror.org/051e7s436', 'en', 1, 'https://ror.org/051e7s436 ARC Centre of Excellence in Advanced Molecular Imaging'),
(107832, 'https://ror.org/00q32j219', 'no_lang_code', 1, 'https://ror.org/00q32j219 Boehringer Ingelheim (Germany)'),
(107833, 'https://ror.org/03y5egs41', 'en', 1, 'https://ror.org/03y5egs41 Pannon Egyetem University of Pannonia'),
(107834, 'https://ror.org/035pkj773', 'en', 1, 'https://ror.org/035pkj773 Universitatea Ștefan cel Mare din Suceava Ştefan cel Mare University of Suceava'),
(107835, 'https://ror.org/03mzbmf11', 'en', 1, 'https://ror.org/03mzbmf11 Institute for Physics of Microstructures Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики Š¼ŠøŠŗŃ€Š¾ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€ Российской акаГемии наук'),
(107836, 'https://ror.org/025vmq686', 'pt', 1, 'https://ror.org/025vmq686 Pontifical Catholic University of Rio Grande do Sul Pontifícia Universidade Católica do Rio Grande do Sul'),
(107837, 'https://ror.org/05ykr0121', 'en', 1, 'https://ror.org/05ykr0121 San Francisco State University Universidad Estatal de San Francisco UniversitĆ© d''Ɖtat de san francisco'),
(107838, 'https://ror.org/01qwh7a74', 'en', 1, 'https://ror.org/01qwh7a74 Chinese Aeronautical Establishment äø­å›½čˆŖē©ŗē ”ē©¶é™¢'),
(107839, 'https://ror.org/05j00sr48', 'en', 1, 'https://ror.org/05j00sr48 Council for Scientific and Industrial Research Wetenskaplike en Nywerheidnavorsingsraad'),
(107840, 'https://ror.org/02f81g417', 'en', 1, 'https://ror.org/02f81g417 King Saud University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ سعود'),
(107841, 'https://ror.org/04f9hsx44', 'no_lang_code', 1, 'https://ror.org/04f9hsx44 Vontobel (Switzerland)'),
(107842, 'https://ror.org/04z1ebj23', 'no', 1, 'https://ror.org/04z1ebj23 Finnmarkssykehuset'),
(107843, 'https://ror.org/038t36y30', 'en', 1, 'https://ror.org/038t36y30 Heidelberg University Ruprecht-Karls-UniversitƤt Heidelberg'),
(107844, 'https://ror.org/00nfs4461', 'no_lang_code', 1, 'https://ror.org/00nfs4461 Systembolaget (Sweden) Systembolaget Aktiebolag'),
(107845, 'https://ror.org/04z6c2n17', 'en', 1, 'https://ror.org/04z6c2n17 University of Johannesburg'),
(107846, 'https://ror.org/01xm30661', 'en', 1, 'https://ror.org/01xm30661 International Space Science Institute'),
(107847, 'https://ror.org/02hkzs489', 'en', 1, 'https://ror.org/02hkzs489 Bayer Foundation Bayer-Studienstiftung'),
(107848, 'https://ror.org/01zk3ma76', 'de', 1, 'https://ror.org/01zk3ma76 Deutsche Gesellschaft für Neurologie German Neurological Society'),
(107849, 'https://ror.org/015h0qg34', 'en', 1, 'https://ror.org/015h0qg34 Maria Curie-Skłodowska University Uniwersytet Marii Curie-Skłodowskiej w Lublinie'),
(107850, 'https://ror.org/013fn6665', 'en', 1, 'https://ror.org/013fn6665 Samara University'),
(107851, 'https://ror.org/047gexf31', 'en', 1, 'https://ror.org/047gexf31 Mongolian National University of Education Монгол Улсын Боловсролын Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(107852, 'https://ror.org/03svthf85', 'en', 1, 'https://ror.org/03svthf85 Damanhour University Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ…Ł†Ł‡ŁˆŲ±'),
(107853, 'https://ror.org/03svwq685', 'it', 1, 'https://ror.org/03svwq685 University of Tuscia UniversitĆ  degli Studi della Tuscia'),
(107854, 'https://ror.org/05yfdxt86', 'en', 1, 'https://ror.org/05yfdxt86 Korean Society of Cardiology'),
(107855, 'https://ror.org/029s7f567', 'de', 1, 'https://ror.org/029s7f567 Bundesministerium für Familien und Jugend Federal Ministry of Families and Youth'),
(107856, 'https://ror.org/049emcs32', 'en', 1, 'https://ror.org/049emcs32 The University of Texas at Dallas Universidad de Texas en Dallas UniversitƩ du texas Ơ dallas'),
(107857, 'https://ror.org/032db5x82', 'en', 1, 'https://ror.org/032db5x82 Universidad del Sur de Florida University of South Florida UniversitƩ de floride du sud'),
(107858, 'https://ror.org/03867fh96', 'es', 1, 'https://ror.org/03867fh96 Instituto Nacional de Ecologƭa y Cambio ClimƔtico National Institute of Ecology and Climate Change'),
(107859, 'https://ror.org/049wsmj07', 'en', 1, 'https://ror.org/049wsmj07 Sensetime Sensetime (China) å•†ę±¤é›†å›¢ęœ‰é™å…¬åø'),
(107860, 'https://ror.org/03kgsv495', 'en', 1, 'https://ror.org/03kgsv495 Bar-Ilan University Ų¬Ų§Ł…Ų¹Ų© ŲØŲ§Ų± Ų„ŁŠŁ„Ų§Ł†'),
(107861, 'https://ror.org/04q12yn84', 'en', 1, 'https://ror.org/04q12yn84 OsloMet – Oslo Metropolitan University OsloMet – storbyuniversitetet'),
(107862, 'https://ror.org/01ch2yn61', 'en', 1, 'https://ror.org/01ch2yn61 Met Office'),
(107863, 'https://ror.org/01d88se56', 'en', 1, 'https://ror.org/01d88se56 UCLA Health'),
(107864, 'https://ror.org/040wg7k59', 'en', 1, 'https://ror.org/040wg7k59 Chalmers University of Technology Chalmers tekniska hƶgskola Chalmersin teknillinen korkeakoulu'),
(107865, 'https://ror.org/05cq64r17', 'en', 1, 'https://ror.org/05cq64r17 University of Łódź Uniwersytet Łódzki'),
(107866, 'https://ror.org/00ew3x319', 'no_lang_code', 1, 'https://ror.org/00ew3x319 An-Nan Hospital'),
(107867, 'https://ror.org/002h8g185', 'en', 1, 'https://ror.org/002h8g185 University of Bath'),
(107868, 'https://ror.org/01db6n192', 'en', 1, 'https://ror.org/01db6n192 Department of Climate Change, Energy, the Environment and Water'),
(107869, 'https://ror.org/04qzfn040', 'en', 1, 'https://ror.org/04qzfn040 University of KwaZulu-Natal'),
(107870, 'https://ror.org/034wa7719', 'en', 1, 'https://ror.org/034wa7719 The National Lottery Community Fund'),
(107871, 'https://ror.org/022fs9h90', 'en', 1, 'https://ror.org/022fs9h90 University of Fribourg UniversitƠ di Friburgo UniversitƤt Freiburg UniversitƩ de Fribourg'),
(107872, 'https://ror.org/02sfax819', 'pt', 1, 'https://ror.org/02sfax819 Ministério do Ambiente, Ordenamento do Território e Energia'),
(107873, 'https://ror.org/0146tv827', 'en', 1, 'https://ror.org/0146tv827 Heilongjiang Earthquake Agency é»‘é¾™ę±Ÿēœåœ°éœ‡å±€'),
(107874, 'https://ror.org/01encsj80', 'no_lang_code', 1, 'https://ror.org/01encsj80 University of Botswana'),
(107875, 'https://ror.org/005x56091', 'en', 1, 'https://ror.org/005x56091 Tezpur University ą¤¤ą„‡ą¤œą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¤ą§‡ą¦œą¦Ŗą§ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(107876, 'https://ror.org/02k40bc56', 'en', 1, 'https://ror.org/02k40bc56 Indiana University Bloomington Universidad de Indiana Bloomington UniversitƩ de l''Indiana Ơ Bloomington'),
(107877, 'https://ror.org/0101er145', 'it', 1, 'https://ror.org/0101er145 Ministero dell''Economia e delle Finanze Ministry of Economy and Finance'),
(107878, 'https://ror.org/04e4j5d46', 'no_lang_code', 1, 'https://ror.org/04e4j5d46 Galapagos (Belgium)'),
(107879, 'https://ror.org/026zar759', 'en', 1, 'https://ror.org/026zar759 U.S. Army Combat Capabilities Development Command Ground Vehicle System Center'),
(107880, 'https://ror.org/05r1jm831', 'en', 1, 'https://ror.org/05r1jm831 Federal Ministry of Agriculture and Rural Development'),
(107881, 'https://ror.org/05ckt8b96', 'en', 1, 'https://ror.org/05ckt8b96 Ministry of Agriculture and Rural Affairs äø­åŽäŗŗę°‘å…±å’Œå›½å†œäøšå†œę‘éƒØ'),
(107882, 'https://ror.org/01070mq45', 'en', 1, 'https://ror.org/01070mq45 Universidad Estatal Wayne UniversitƩ de Wayne State Wayne State University'),
(107883, 'https://ror.org/04abg5t05', 'en', 1, 'https://ror.org/04abg5t05 Russian Federal Space Agency Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ космическое агентство'),
(107884, 'https://ror.org/026a2aw47', 'pt', 1, 'https://ror.org/026a2aw47 Centre for Marine Technology and Ocean Engineering Centro de Engenharia e Tecnologia Naval e Oceanica'),
(107885, 'https://ror.org/04vkd2013', 'en', 1, 'https://ror.org/04vkd2013 Teerthanker Mahaveer University ą¤¤ą„€ą¤°ą„ą¤„ą¤‚ą¤•ą¤° ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(107886, 'https://ror.org/01dbmzx78', 'en', 1, 'https://ror.org/01dbmzx78 The Kids Research Institute Australia'),
(107887, 'https://ror.org/01r9z8p25', 'es', 1, 'https://ror.org/01r9z8p25 Universidad de La Laguna Universidade de La Laguna University of La Laguna'),
(107888, 'https://ror.org/0587ef340', 'en', 1, 'https://ror.org/0587ef340 Comenius Egyetem Comenius University Bratislava Comenius-UniversitƤt Bratislava Universidad Comenius de Bratislava Universitas Comeniana Bratislavensis UniversitƩ Commenius de Bratislava Univerzita KomenskƩho v Bratislave'),
(107889, 'https://ror.org/051ce0b09', 'en', 1, 'https://ror.org/051ce0b09 Independent Electricity System Operator'),
(107890, 'https://ror.org/02e24yw40', 'en', 1, 'https://ror.org/02e24yw40 Donostia International Physics Center'),
(107891, 'https://ror.org/01hgxez56', 'no_lang_code', 1, 'https://ror.org/01hgxez56 Arla Foods (Denmark)'),
(107892, 'https://ror.org/04ch49185', 'en', 1, 'https://ror.org/04ch49185 Centre fédéral d''éducation technologique du minas gerais Centro Federal de Educação Tecnológica de Minas Gerais Federal Center for Technological Education of Minas Gerais'),
(107893, 'https://ror.org/00n7swc17', 'en', 1, 'https://ror.org/00n7swc17 Rajiv Gandhi Institute of Petroleum Technology'),
(107894, 'https://ror.org/00v4yb702', 'en', 1, 'https://ror.org/00v4yb702 Rochester Institute of Technology'),
(107895, 'https://ror.org/03nawhv43', 'en', 1, 'https://ror.org/03nawhv43 Universidad de California en Riverside University of California, Riverside UniversitƩ de Californie Ơ Riverside'),
(107896, 'https://ror.org/0091vmj44', 'en', 1, 'https://ror.org/0091vmj44 Shahid Beheshti University دانؓگاه Ų“Ł‡ŪŒŲÆ ŲØŁ‡Ų“ŲŖŪŒ'),
(107897, 'https://ror.org/01mdyhz69', 'en', 1, 'https://ror.org/01mdyhz69 Pan African Thoracic Society'),
(107898, 'https://ror.org/01vjcez22', 'en', 1, 'https://ror.org/01vjcez22 International Union of Forest Research Organizations Internationaler Verband Forstlicher Forschungsanstalten Union Internationale des Instituts de Recherches Forestières Unión Internacional de Institutos de Investigación Forestal'),
(107899, 'https://ror.org/04gyf1771', 'en', 1, 'https://ror.org/04gyf1771 Universidad de California en Irvine University of California, Irvine UniversitƩ de Californie Ơ Irvine'),
(107900, 'https://ror.org/01dhvva97', 'en', 1, 'https://ror.org/01dhvva97 Markey Cancer Center'),
(107901, 'https://ror.org/0290a6k23', 'en', 1, 'https://ror.org/0290a6k23 Region Syddanmark Region Süddänemark Region of Southern Denmark'),
(107902, 'https://ror.org/02h7kd997', 'en', 1, 'https://ror.org/02h7kd997 U.S. Army Command, Control, Communications, Computers, Cyber, Intelligence, Surveillance and Reconnaissance Center'),
(107903, 'https://ror.org/0266vkh91', 'pt', 1, 'https://ror.org/0266vkh91 Instituto Nacional de CiĆŖncia e Tecnologia em Nanomateriais de Carbono'),
(107904, 'https://ror.org/035b05819', 'en', 1, 'https://ror.org/035b05819 Københavns Universitet University of Copenhagen Universität Kopenhagen'),
(107905, 'https://ror.org/0022v2454', 'en', 1, 'https://ror.org/0022v2454 Educational Department of Liaoning Province č¾½å®ēœę•™č‚²åŽ…'),
(107906, 'https://ror.org/04wyyg856', 'en', 1, 'https://ror.org/04wyyg856 British Geriatrics Society'),
(107907, 'https://ror.org/0440yjn92', 'en', 1, 'https://ror.org/0440yjn92 American University of Ras Al Khaimah الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ų±Ų£Ų³ Ų§Ł„Ų®ŁŠŁ…Ų©'),
(107908, 'https://ror.org/04wbcfb93', 'en', 1, 'https://ror.org/04wbcfb93 Institut de Recherche en Energie Solaire et Energies Nouvelles Institut of Research in Solar Energy and New Energies'),
(107909, 'https://ror.org/040yeqy86', 'en', 1, 'https://ror.org/040yeqy86 Ludovika University of Public Service Nemzeti KƶzszolgƔlati Egyetem'),
(107910, 'https://ror.org/01cqa1772', 'en', 1, 'https://ror.org/01cqa1772 Irish Thoracic Society'),
(107911, 'https://ror.org/00mwcg389', 'no_lang_code', 1, 'https://ror.org/00mwcg389 Ferrer Grupo (Spain)'),
(107912, 'https://ror.org/04gq6mn61', 'en', 1, 'https://ror.org/04gq6mn61 Ministerio de Salud del PerĆŗ Ministry of Health'),
(107913, 'https://ror.org/02dqehb95', 'en', 1, 'https://ror.org/02dqehb95 Purdue University West Lafayette UniversitƩ de Purdue'),
(107914, 'https://ror.org/02ncgfj77', 'en', 1, 'https://ror.org/02ncgfj77 Danish Ministry of Defence Forsvarsministeriet'),
(107915, 'https://ror.org/01tk4y529', 'es', 1, 'https://ror.org/01tk4y529 Sociedad Española de Endocrinología y Nutrición'),
(107916, 'https://ror.org/02cwe0496', 'no_lang_code', 1, 'https://ror.org/02cwe0496 Vejchewin Research Institute ą¤µą„‡ą¤œą„ą¤œą„€ą¤µą¤æą¤Øą„ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(107917, 'https://ror.org/03f0f6041', 'en', 1, 'https://ror.org/03f0f6041 University of Technology Sydney'),
(107918, 'https://ror.org/049s0rh22', 'en', 1, 'https://ror.org/049s0rh22 Dartmouth College'),
(107919, 'https://ror.org/01azzms13', 'ca', 1, 'https://ror.org/01azzms13 Miguel HernƔndez University of Elche Universidad Miguel HernƔndez de Elche Universitat de Miguel HernƔndez d''Elx'),
(107920, 'https://ror.org/059md9404', 'en', 1, 'https://ror.org/059md9404 Jiangsu Education Department ę±Ÿč‹ēœę•™č‚²åŽ…'),
(107921, 'https://ror.org/0491yz035', 'en', 1, 'https://ror.org/0491yz035 Saha Institute of Nuclear Physics'),
(107922, 'https://ror.org/05rpv7f61', 'es', 1, 'https://ror.org/05rpv7f61 Ministerio del Ambiente, Agua y Transición Ecológica'),
(107923, 'https://ror.org/04x7ccp17', 'en', 1, 'https://ror.org/04x7ccp17 Babasaheb Bhimrao Ambedkar University ą¤¬ą¤¾ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤­ą„€ą¤®ą¤°ą¤¾ą¤µ ą¤…ą¤‚ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®…ą®®ąÆą®ŖąÆ‡ą®¤ąÆą®•ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(107924, 'https://ror.org/04w7zn912', 'en', 1, 'https://ror.org/04w7zn912 Marcus Foundation'),
(107925, 'https://ror.org/0575ycz84', 'en', 1, 'https://ror.org/0575ycz84 Prince of Songkla University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŖąø‡ąø‚ąø„ąø²ąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(107926, 'https://ror.org/041hz9568', 'en', 1, 'https://ror.org/041hz9568 Korea Institute for Advanced Study 고등과학원'),
(107927, 'https://ror.org/04kq4yy23', 'en', 1, 'https://ror.org/04kq4yy23 Joint Institute for Nuclear Astrophysics'),
(107928, 'https://ror.org/02ecj1n50', 'de', 1, 'https://ror.org/02ecj1n50 Hilfe für krebskranke Kinder Frankfurt'),
(107929, 'https://ror.org/00ty2a548', 'en', 1, 'https://ror.org/00ty2a548 Idaho National Laboratory Laboratoire national de l''idaho Laboratorio Nacional de Idaho'),
(107930, 'https://ror.org/02x2v6p15', 'en', 1, 'https://ror.org/02x2v6p15 Bukaresti Egyetem Universitatea din București University of Bucharest'),
(107931, 'https://ror.org/006mtxa58', 'en', 1, 'https://ror.org/006mtxa58 Xiamen Municipal Bureau of Science and Technology åŽ¦é—Øē§‘å­¦ęŠ€ęœÆå±…'),
(107932, 'https://ror.org/008p1v134', 'pt', 1, 'https://ror.org/008p1v134 Instituto Federal de Educação, Ciência e Tecnologia do Rio Grande do Sul Rio Grande do Sul Federal Institute of Education, Science and Technology'),
(107933, 'https://ror.org/03m01yf64', 'en', 1, 'https://ror.org/03m01yf64 Ministry of Education'),
(107934, 'https://ror.org/0595f4b08', 'en', 1, 'https://ror.org/0595f4b08 U.S. Air Force Life Cycle Management Center'),
(107935, 'https://ror.org/03ar0mv07', 'en', 1, 'https://ror.org/03ar0mv07 United States Department of the Navy'),
(107936, 'https://ror.org/001cqv036', 'fr', 1, 'https://ror.org/001cqv036 Terres Inovia'),
(107937, 'https://ror.org/05t0w3074', 'en', 1, 'https://ror.org/05t0w3074 Government of the Republic of China äø­čÆę°‘åœ‹ę”æåŗœ'),
(107938, 'https://ror.org/002v1jc79', 'en', 0, 'https://ror.org/002v1jc79 United States Air Force Electronic Systems Center'),
(107939, 'https://ror.org/02cezmk53', 'en', 1, 'https://ror.org/02cezmk53 Institute of Hydromechanics of National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гіГромеханіки ŠŠŠ України'),
(107940, 'https://ror.org/00c72nj97', 'en', 1, 'https://ror.org/00c72nj97 Vinh Long University of Technology Education ĐẔi hį»c Sʰ phįŗ”m Kỹ thuįŗ­t VÄ©nh Long'),
(107941, 'https://ror.org/02eb12f53', 'en', 1, 'https://ror.org/02eb12f53 Yew Chung Yew Wah Education Network č€€äø­č€€åŽę•™č‚²ē½‘ē»œ'),
(107942, 'https://ror.org/0057w2a90', 'en', 1, 'https://ror.org/0057w2a90 CoE MARBLE - Centre of Excellence in Maritime Robotics and Technologies for Sustainable Blue Economy'),
(107943, 'https://ror.org/02ykxvx09', 'en', 1, 'https://ror.org/02ykxvx09 Mighty Crow Mighty Crow (United States)'),
(107944, 'https://ror.org/054bfvp24', 'en', 1, 'https://ror.org/054bfvp24 Cooperative Institute for Climate, Ocean, & Ecosystem Studies'),
(107945, 'https://ror.org/04ck23c90', 'en', 1, 'https://ror.org/04ck23c90 Ministry of Environment and Climate Change وزارة Ų§Ł„ŲØŁŠŲ¦Ų© ŁˆŲ§Ł„ŲŖŲŗŁŠŁ‘Ų± Ų§Ł„Ł…Ł†Ų§Ų®ŁŠ'),
(107946, 'https://ror.org/02emb2322', 'de', 0, 'https://ror.org/02emb2322 Institut für Angewandte manuelle Therapie'),
(107947, 'https://ror.org/02knc1802', 'en', 1, 'https://ror.org/02knc1802 Alexander T. Augusta Military Medical Center'),
(107948, 'https://ror.org/01v2hty12', 'en', 1, 'https://ror.org/01v2hty12 Dmytro Motornyi Tavria State Agrotechnological University Š¢Š°Š²Ń€Ń–Š¹ŃŃŒŠŗŠøŠ¹ Гержавний агротехнологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Дмитра ŠœŠ¾Ń‚орного'),
(107949, 'https://ror.org/03bq05s23', 'en', 1, 'https://ror.org/03bq05s23 U.S. Army Research Institute for the Behavioral and Social Sciences'),
(107950, 'https://ror.org/02qaxpe77', 'en', 1, 'https://ror.org/02qaxpe77 Arab Institution of Knowledge Management المؤسسة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© ل؄دارة المعرفة'),
(107951, 'https://ror.org/00tykrx49', 'en', 1, 'https://ror.org/00tykrx49 Longwood Gardens'),
(107952, 'https://ror.org/00axf5s51', 'en', 1, 'https://ror.org/00axf5s51 State Scientific and Production Enterprise Ā«KartographiaĀ» Державне науково-виробниче піГприємство Ā«ŠšŠ°Ń€Ń‚Š¾Š³Ń€Š°Ń„Ń–ŃĀ»'),
(107953, 'https://ror.org/02302gs61', 'en', 0, 'https://ror.org/02302gs61 Gesellschaft fuer klinische Forschung Society for Clinical Research'),
(107954, 'https://ror.org/0454e9996', 'de', 1, 'https://ror.org/0454e9996 Institut für Arbeitsschutz der Deutschen Gesetzlichen Unfallversicherung Institute for Occupational Safety and Health of the German Social Accident Insurance'),
(107955, 'https://ror.org/030andk23', 'en', 1, 'https://ror.org/030andk23 Ministry of Justice äø­čÆę°‘åœ‹ę³•å‹™éƒØ'),
(107956, 'https://ror.org/02shpj718', 'en', 1, 'https://ror.org/02shpj718 Indian Institute of Management Jammu'),
(107957, 'https://ror.org/008fnwb73', 'en', 1, 'https://ror.org/008fnwb73 Alliance for Decision Education'),
(107958, 'https://ror.org/008xxew50', 'nl', 1, 'https://ror.org/008xxew50 Vrije Universiteit Amsterdam'),
(107959, 'https://ror.org/020s2ee41', 'en', 1, 'https://ror.org/020s2ee41 Institute of Bioenergy Crops and Sugar Beet Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біоенергетичних ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ і Ń†ŃƒŠŗŃ€Š¾Š²ŠøŃ… Š±ŃƒŃ€ŃŠŗŃ–Š²'),
(107960, 'https://ror.org/015qjap30', 'pl', 1, 'https://ror.org/015qjap30 Narodowy Instytut Zdrowia Publicznego PZH – Państwowy Instytut Badawczy National Institute of Public Health, National Institute of Hygiene – National Research Institute'),
(107961, 'https://ror.org/04gn37s26', 'id', 1, 'https://ror.org/04gn37s26 Akademi Komunitas Industri Tekstil dan Produk Tekstil Surakarta'),
(107962, 'https://ror.org/01s1hnr07', 'ro', 1, 'https://ror.org/01s1hnr07 Academia RomĆ¢nă, Filiala Iași Romanian Academy, Iași Divison'),
(107963, 'https://ror.org/05cs8k179', 'en', 1, 'https://ror.org/05cs8k179 Uniwersytet Przyrodniczy we Wrocławiu Wrocław University of Environmental and Life Sciences'),
(107964, 'https://ror.org/04pdpxj40', 'fr', 0, 'https://ror.org/04pdpxj40 Union Nationale Interprofessionnelle des plantes riches en ProtƩines'),
(107965, 'https://ror.org/03jd7xe26', 'en', 1, 'https://ror.org/03jd7xe26 Faculty of Economics and Management of Sfax FacultĆ© des Sciences Economiques et de Gestion de Sfax ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŁŠŲ© ŁˆŲ§Ł„ŲŖŲµŲ±Ł بصفاقس'),
(107966, 'https://ror.org/01md9v276', 'en', 1, 'https://ror.org/01md9v276 U.S. Army Intelligence Center of Excellence'),
(107967, 'https://ror.org/02dh19c23', 'en', 1, 'https://ror.org/02dh19c23 Phan Chau Trinh University TrĘ°į»ng ĐẔi Hį»c Phan ChĆ¢u Trinh'),
(107968, 'https://ror.org/00nj2dc54', 'en', 0, 'https://ror.org/00nj2dc54 United States Air Force Aeronautical Systems Center'),
(107969, 'https://ror.org/00ppaw753', 'en', 1, 'https://ror.org/00ppaw753 World Wide Fund for Nature'),
(107970, 'https://ror.org/01x2d9f70', 'en', 1, 'https://ror.org/01x2d9f70 Amsterdam Neuroscience Researchsites Amsterdam'),
(107971, 'https://ror.org/02skkz355', 'en', 1, 'https://ror.org/02skkz355 Army Sustainment University'),
(107972, 'https://ror.org/01ze10m80', 'es', 1, 'https://ror.org/01ze10m80 Facultad Latinoamericana de Ciencias Costa Rica Facultad Latinoamericana de Ciencias Sociales Costa Rica Latin American Faculty of Social Sciences Costa Rica'),
(107973, 'https://ror.org/04vyrqf62', 'en', 1, 'https://ror.org/04vyrqf62 National Institute for the Empowerment of Persons with Intellectual Disabilities ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤¬ą„Œą¤¦ą„ą¤§ą¤æą¤• ą¤¦ą¤æą¤µą„ą¤Æą¤¾ą¤‚ą¤—ą¤œą¤Ø ą¤øą¤¶ą¤•ą„ą¤¤ą¤æą¤•ą¤°ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(107974, 'https://ror.org/0427vvt16', 'en', 1, 'https://ror.org/0427vvt16 Affaires Mondiales Canada Global Affairs Canada'),
(107975, 'https://ror.org/05kt9ap64', 'en', 1, 'https://ror.org/05kt9ap64 Kindai University 近畿大学'),
(107976, 'https://ror.org/041471c24', 'en', 0, 'https://ror.org/041471c24 National Research Center for Hematology Russian Academy of Medical Sciences ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр гематологии');
INSERT INTO `rors` VALUES
(107977, 'https://ror.org/039a3rs54', 'en', 1, 'https://ror.org/039a3rs54 U.S. Army Fires Center of Excellence'),
(107978, 'https://ror.org/010g64j43', 'es', 1, 'https://ror.org/010g64j43 Museo Nacional de Historia Natural de Cuba Natural History National Museum of Cuba'),
(107979, 'https://ror.org/00jxdjq56', 'en', 1, 'https://ror.org/00jxdjq56 Rani Lakshmi Bai Central Agricultural University, Jhansi ą¤°ą¤¾ą¤Øą„€ ą¤²ą¤•ą„ą¤·ą„ą¤®ą„€ą¤¬ą¤¾ą¤ˆ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤ą¤¾ą¤‚ą¤øą„€'),
(107980, 'https://ror.org/00kq5zs47', 'en', 1, 'https://ror.org/00kq5zs47 MediaKind MediaKind (United States)'),
(107981, 'https://ror.org/00phht511', 'en', 1, 'https://ror.org/00phht511 Tashkent Institute of Architecture and Civil Engineering Toshkent Arxitektura Qurilish Universiteti'),
(107982, 'https://ror.org/04mhzgx49', 'en', 1, 'https://ror.org/04mhzgx49 Tel Aviv University Ų¬Ų§Ł…Ų¹Ų© ŲŖŁ„ أبيب'),
(107983, 'https://ror.org/02e5sbe24', 'en', 0, 'https://ror.org/02e5sbe24 Institute of Agricultural Biology and Biotechnology Istituto di Biologia e Biotecnologia Agraria'),
(107984, 'https://ror.org/042hqyj67', 'en', 1, 'https://ror.org/042hqyj67 Higher Technological Institute, 6th of October City المعهد Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ Ų§Ł„Ų¹Ų§Ł„ŁŠ بالسادس من أكتوبر'),
(107985, 'https://ror.org/03ay56170', 'en', 1, 'https://ror.org/03ay56170 Ministry of National Defense äø­čÆę°‘åœ‹åœ‹é˜²éƒØ'),
(107986, 'https://ror.org/04g6gva85', 'en', 1, 'https://ror.org/04g6gva85 Centre for Advancing Health Outcomes'),
(107987, 'https://ror.org/01ehk9611', 'es', 1, 'https://ror.org/01ehk9611 Facultad Latinoamericana de Ciencias Sociales Latin American Faculty of Social Sciences'),
(107988, 'https://ror.org/0540ewb14', 'en', 1, 'https://ror.org/0540ewb14 Reuth TLV Rehabilitation Hospital רעות תל-אביב בית חולים שיקומי'),
(107989, 'https://ror.org/03arvsj30', 'en', 1, 'https://ror.org/03arvsj30 NGO ā€œResearch And Educational Innovation Center of Social Transformationsā€ Š“Šž Ā«ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ŠžŃŠ²Ń–Ń‚Š½Ń–Š¹ Інноваційний Центр Š”ŃƒŃŠæŃ–Š»ŃŒŠ½ŠøŃ… Трансформацій»'),
(107990, 'https://ror.org/044qsaz69', 'no_lang_code', 1, 'https://ror.org/044qsaz69 GHENOVA GHENOVA (Spain)'),
(107991, 'https://ror.org/03r0ha626', 'en', 1, 'https://ror.org/03r0ha626 Universidad de Utah University of Utah'),
(107992, 'https://ror.org/00rpmx650', 'es', 1, 'https://ror.org/00rpmx650 Escuela Naval del PerĆŗ'),
(107993, 'https://ror.org/05pzny168', 'en', 1, 'https://ror.org/05pzny168 Independent Public Health Care Institution of the Ministry of the Interior and Administration in Krakow, Kraków, Poland Mowia Samodzielny Publiczny Zakład Opieki Zdrowotnej Ministerstwa Spraw Wewnętrznych i Administracji w Krakowie'),
(107994, 'https://ror.org/011jzyk83', 'en', 1, 'https://ror.org/011jzyk83 Kulyash Bayseyitova Kazakh National University of Arts К. Байсейітова атынГағы ŅšŠ°Š·Š°Ņ› ұлттық өнер ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² имени ŠšŃƒŠ»ŃŃˆ Байсеитовой ŠšŠ°Š·Š°Ń…ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ мистецтв'),
(107995, 'https://ror.org/01wtcdw56', 'en', 1, 'https://ror.org/01wtcdw56 National Alliance against Disparities in Patient Health'),
(107996, 'https://ror.org/00nnxx647', 'en', 1, 'https://ror.org/00nnxx647 People''s Dental College and Hospital'),
(107997, 'https://ror.org/05rpr6785', 'en', 1, 'https://ror.org/05rpr6785 Landstuhl Regional Medical Center'),
(107998, 'https://ror.org/00hj54h04', 'en', 1, 'https://ror.org/00hj54h04 The University of Texas at Austin Universidad de Texas en Austin UniversitƩ du texas Ơ austin'),
(107999, 'https://ror.org/04w8f2338', 'en', 1, 'https://ror.org/04w8f2338 Research Institute for Road and Street äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćæć”ē ”ē©¶ę‰€'),
(108000, 'https://ror.org/03jnx2c74', 'en', 1, 'https://ror.org/03jnx2c74 Aeres Hogeschool Aeres University of Applied Sciences'),
(108001, 'https://ror.org/03qqdf793', 'en', 1, 'https://ror.org/03qqdf793 Providence Health Care'),
(108002, 'https://ror.org/024brep87', 'en', 1, 'https://ror.org/024brep87 International Centre for Integrated Mountain Development'),
(108003, 'https://ror.org/052n3b751', 'pl', 1, 'https://ror.org/052n3b751 Foundation for Education and Social Dialogue ā€œPro Civisā€ Fundacja Edukacji i Dialogu Społecznego PRO CIVIS'),
(108004, 'https://ror.org/03c1e5w32', 'en', 1, 'https://ror.org/03c1e5w32 State Scientific Research Institute of Armament and Military Equipment Testing and Certification Державний науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²ŠøŠæŃ€Š¾Š±ŃƒŠ²Š°Š½ŃŒ і сертифікації Š¾Š·Š±Ń€Š¾Ń”Š½Š½Ń та Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾Ń— техніки'),
(108005, 'https://ror.org/03594dm11', 'en', 1, 'https://ror.org/03594dm11 Ambassade du Canada Ć  Washington, D.C Embassy of Canada in Washington, D.C'),
(108006, 'https://ror.org/022hwxg26', 'en', 1, 'https://ror.org/022hwxg26 Ambika Prasad Research Foundation'),
(108007, 'https://ror.org/029yaft79', 'en', 0, 'https://ror.org/029yaft79 Osaka University of Pharmaceutical Sciences å¤§é˜Ŗč–¬ē§‘å¤§å­¦'),
(108008, 'https://ror.org/04gmmfj60', 'en', 1, 'https://ror.org/04gmmfj60 University of Limassol Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī›ĪµĪ¼ĪµĻƒĪæĻ Университет Лимассола'),
(108009, 'https://ror.org/04tpvzp22', 'en', 1, 'https://ror.org/04tpvzp22 European Severe Storms Laboratory'),
(108010, 'https://ror.org/0476hs695', 'pt', 1, 'https://ror.org/0476hs695 Centro de Investigação em Biodiversidade e Recursos Genéticos Research Centre in Biodiversity and Genetic Resources'),
(108011, 'https://ror.org/009rdzd88', 'en', 1, 'https://ror.org/009rdzd88 National Centre for Biodiversity and Gene Conservation Nemzeti BiodiverzitĆ”s- Ć©s GĆ©nmegőrzĆ©si Kƶzpont'),
(108012, 'https://ror.org/0179h0y45', 'de', 1, 'https://ror.org/0179h0y45 International Gustav Mahler Society Internationale Gustav Mahler Gesellschaft'),
(108013, 'https://ror.org/04yrdjv67', 'en', 1, 'https://ror.org/04yrdjv67 M.M. Gryshko National Botanical Garden of National Academy of Sciences of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ботанічний саГ імені М. М. Š“Ń€ŠøŃˆŠŗŠ° ŠŠŠ України'),
(108014, 'https://ror.org/02ns6se93', 'pt', 1, 'https://ror.org/02ns6se93 Universidade de Rio Verde'),
(108015, 'https://ror.org/03pn1y237', 'en', 1, 'https://ror.org/03pn1y237 Biomaz Infosearch'),
(108016, 'https://ror.org/01v6shv96', 'fr', 1, 'https://ror.org/01v6shv96 Institut de Recherche de l’École Navale Naval Academy Research Institute'),
(108017, 'https://ror.org/02t7y5s37', 'en', 1, 'https://ror.org/02t7y5s37 U.S. Army Training and Doctrine Command'),
(108018, 'https://ror.org/0523ssa79', 'en', 1, 'https://ror.org/0523ssa79 VIVE - Det Nationale Forsknings- og Analysecenter for VelfƦrd VIVE - The Danish Center for Social Science Research'),
(108019, 'https://ror.org/000n2a918', 'de', 1, 'https://ror.org/000n2a918 EcoAustria Institut für Wirtschaftsforschung'),
(108020, 'https://ror.org/048sjjr07', 'en', 1, 'https://ror.org/048sjjr07 The East European Scientific Studies Center Центр ŃŃ…Ń–Š“Š½Š¾Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŃ… Š½Š°ŃƒŠŗŠ¾Š²ŠøŃ… ŃŃ‚ŃƒŠ“Ń–Š¹'),
(108021, 'https://ror.org/01e8wn134', 'en', 1, 'https://ror.org/01e8wn134 Belmont Forum'),
(108022, 'https://ror.org/056wg7w27', 'de', 1, 'https://ror.org/056wg7w27 Federal Institute for Quality Assurance of the Austrian School System Institut des Bundes für Qualitätssicherung im österreichischen Schulwesen'),
(108023, 'https://ror.org/052bk0b97', 'uz', 1, 'https://ror.org/052bk0b97 Oriental Universiteti Oriental University'),
(108024, 'https://ror.org/04565hy55', 'en', 1, 'https://ror.org/04565hy55 Deutsches Institut für Erwachsenenbildung – Leibniz-Zentrum für Lebenslanges Lernen German Institute for Adult Education – Leibniz Centre for Lifelong Learning'),
(108025, 'https://ror.org/0029ze972', 'de', 1, 'https://ror.org/0029ze972 Institut AllergoSan Pharmazeutische Produkte Forschungs- und Vertriebs GmbH Institut AllergoSan Pharmazeutische Produkte Forschungs- und Vertriebs GmbH (Austria)'),
(108026, 'https://ror.org/02g02v883', 'en', 1, 'https://ror.org/02g02v883 BioLuster Research Center Ltd'),
(108027, 'https://ror.org/05a1qpv97', 'en', 1, 'https://ror.org/05a1qpv97 Bangladesh University of Engineering and Technology বাংলাদেশ ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(108028, 'https://ror.org/03xj0st28', 'en', 1, 'https://ror.org/03xj0st28 InsideOutBio InsideOutBio (United States)'),
(108029, 'https://ror.org/020787x82', 'de', 1, 'https://ror.org/020787x82 Deutsches Institut für Gesundheitsforschung Deutsches Institut für Gesundheitsforschung gGmbH'),
(108030, 'https://ror.org/044wk9m82', 'en', 1, 'https://ror.org/044wk9m82 Spiritan University Nneochi'),
(108031, 'https://ror.org/04rvfc379', 'en', 1, 'https://ror.org/04rvfc379 Solar Data Analysis Center'),
(108032, 'https://ror.org/03vdgq770', 'en', 1, 'https://ror.org/03vdgq770 Kindai University Nara Hospital čæ‘ē•æå¤§å­¦å„ˆč‰Æē—…é™¢'),
(108033, 'https://ror.org/00z7z7a14', 'en', 1, 'https://ror.org/00z7z7a14 Cygnet Godden Green'),
(108034, 'https://ror.org/05whw7f42', 'es', 1, 'https://ror.org/05whw7f42 Universitario Tecnológico Universitam'),
(108035, 'https://ror.org/05k9ds907', 'fr', 1, 'https://ror.org/05k9ds907 Institut SupƩrieur d''Informatique et des Technologies de Communication de Hammam Sousse'),
(108036, 'https://ror.org/05tfr6j26', 'es', 1, 'https://ror.org/05tfr6j26 Facultad Latinoamericana de Ciencias Sociales RepĆŗblica Dominicana Latin American Faculty of Social Sciences Dominican Republic'),
(108037, 'https://ror.org/05y8yz623', 'en', 1, 'https://ror.org/05y8yz623 Bayworld Centre for Research and Education'),
(108038, 'https://ror.org/0398kcw49', 'fr', 1, 'https://ror.org/0398kcw49 Terres Univia'),
(108039, 'https://ror.org/0402qmp47', 'en', 1, 'https://ror.org/0402qmp47 Clonal Heterogeneity, Leukemic environment, ThErapy Resistance of chronic leukemias'),
(108040, 'https://ror.org/00dexcn42', 'es', 1, 'https://ror.org/00dexcn42 Escuela Naval de Cadetes "Almirante Padilla"'),
(108041, 'https://ror.org/00se00q44', 'it', 1, 'https://ror.org/00se00q44 Accademia Albertina delle Belle Arti Albertina Academy of Fine Arts'),
(108042, 'https://ror.org/0524qb764', 'en', 1, 'https://ror.org/0524qb764 Ministry of Labor å‹žå‹•éƒØ'),
(108043, 'https://ror.org/052nj3835', 'en', 1, 'https://ror.org/052nj3835 School of Management Sciences, Varanasi'),
(108044, 'https://ror.org/03pcpfy27', 'de', 1, 'https://ror.org/03pcpfy27 DGUV Hochschule - Hochschule der Gesetzlichen Unfallversicherung (HGU) University of Applied Sciences of the German Social Accident Insurance'),
(108045, 'https://ror.org/02xmyxb72', 'fr', 1, 'https://ror.org/02xmyxb72 Laboratoire de Recherche sur le Langage'),
(108046, 'https://ror.org/02wdjwg88', 'es', 1, 'https://ror.org/02wdjwg88 Facultad Latinoamericana de Ciencias MƩxico Facultad Latinoamericana de Ciencias Sociales MƩxico Latin American Faculty of Social Sciences Mexico'),
(108047, 'https://ror.org/04dn8cr54', 'pt', 0, 'https://ror.org/04dn8cr54 Faculdades Nova EsperanƧa'),
(108048, 'https://ror.org/04032fz76', 'pt', 1, 'https://ror.org/04032fz76 Hospitais da Universidade de Coimbra Hospitals of the University of Coimbra'),
(108049, 'https://ror.org/00xp3z794', 'es', 1, 'https://ror.org/00xp3z794 Facultad Latinoamericana de Ciencias Argentina Facultad Latinoamericana de Ciencias Sociales Argentina Latin American Faculty of Social Sciences Argentina'),
(108050, 'https://ror.org/05m107x33', 'no_lang_code', 1, 'https://ror.org/05m107x33 Qu & Co. (Netherlands)'),
(108051, 'https://ror.org/001gcc176', 'de', 1, 'https://ror.org/001gcc176 FHWien der WKW'),
(108052, 'https://ror.org/00azp8t92', 'en', 0, 'https://ror.org/00azp8t92 Gachon University Gil Hospital'),
(108053, 'https://ror.org/02pnc0262', 'en', 1, 'https://ror.org/02pnc0262 Ministry of Transportation and Communications äø­čÆę°‘åœ‹äŗ¤é€šéƒØ'),
(108054, 'https://ror.org/02decng19', 'en', 1, 'https://ror.org/02decng19 University of Engineering & Management ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦‡ą¦žą§ą¦œą¦æą¦Øą¦æą¦Æą¦¼ą¦¾ą¦°ą¦æą¦‚ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ'),
(108055, 'https://ror.org/00pfj7a95', 'en', 1, 'https://ror.org/00pfj7a95 Ellison Medical Institute'),
(108056, 'https://ror.org/00mhxaf94', 'en', 1, 'https://ror.org/00mhxaf94 U.S. Army Cyber Center of Excellence'),
(108057, 'https://ror.org/034c96889', 'no_lang_code', 1, 'https://ror.org/034c96889 IBO – Ɩsterreichisches Institut für Bauen und Ɩkologie IBO – Ɩsterreichisches Institut für Bauen und Ɩkologie (Austria)'),
(108058, 'https://ror.org/04f57t081', 'de', 1, 'https://ror.org/04f57t081 Internationale Joseph Haydn Privatstiftung Eisenstadt'),
(108059, 'https://ror.org/032x6kp45', 'en', 0, 'https://ror.org/032x6kp45 Research Institute for Road and Street äø€čˆ¬č²”å›£ę—„ęœ¬ćæć”ē ”ē©¶ę‰€'),
(108060, 'https://ror.org/026e19k63', 'nl', 1, 'https://ror.org/026e19k63 Stichting Aeres Groep'),
(108061, 'https://ror.org/00qrc8a81', 'it', 1, 'https://ror.org/00qrc8a81 Agenzia Regionale per la Protezione Ambientale del Piemonte Regional Agency For Environmental Protection of Piedmont'),
(108062, 'https://ror.org/04a0dbe36', 'es', 1, 'https://ror.org/04a0dbe36 Fundación Universitaria San Pablo CEU'),
(108063, 'https://ror.org/00s765g78', 'en', 1, 'https://ror.org/00s765g78 Ministry of Finance č²”ę”æéƒØ'),
(108064, 'https://ror.org/053gdvc84', 'fr', 1, 'https://ror.org/053gdvc84 Institut de BiomƩcanique Humaine Georges Charpak'),
(108065, 'https://ror.org/056t2ab10', 'en', 1, 'https://ror.org/056t2ab10 Wisconsin Lutheran Seminary'),
(108066, 'https://ror.org/03kchyj69', 'en', 1, 'https://ror.org/03kchyj69 The Welding Institute'),
(108067, 'https://ror.org/03f6zdx21', 'en', 1, 'https://ror.org/03f6zdx21 General Hospital of Laconia Γενικο ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪ¹Īæ Λακωνιας'),
(108068, 'https://ror.org/030t3sv08', 'no_lang_code', 1, 'https://ror.org/030t3sv08 Trinoma Trinoma (France)'),
(108069, 'https://ror.org/03gng8t46', 'en', 1, 'https://ror.org/03gng8t46 Bundesministerium für Bildung, Wissenschaft und Forschung Federal Ministry of Education, Science and Research'),
(108070, 'https://ror.org/023deh932', 'it', 1, 'https://ror.org/023deh932 University Ambrosiana UniversitĆ  Ambrosiana'),
(108071, 'https://ror.org/042ge0913', 'en', 1, 'https://ror.org/042ge0913 Ministry of Economic Affairs'),
(108072, 'https://ror.org/051kpcy16', 'fr', 1, 'https://ror.org/051kpcy16 University of Caen Normandy UniversitƩ de Caen Normandie'),
(108073, 'https://ror.org/041nz5a71', 'en', 1, 'https://ror.org/041nz5a71 Foundation for Partnership Initiatives in the Niger Delta'),
(108074, 'https://ror.org/03myraf72', 'en', 1, 'https://ror.org/03myraf72 Heliophysics Science Division'),
(108075, 'https://ror.org/00awn3k11', 'fr', 1, 'https://ror.org/00awn3k11 Laboratoire IngĆ©nierie des Fluides SystĆØmes ƉnergĆ©tiques Laboratory Fluids Engineering Energy Systems'),
(108076, 'https://ror.org/03w2cmy34', 'de', 0, 'https://ror.org/03w2cmy34 FernUni Schweiz'),
(108077, 'https://ror.org/01snj4592', 'en', 1, 'https://ror.org/01snj4592 Czech Social Science Data Archive Český sociĆ”lněvědnĆ­ datový archiv'),
(108078, 'https://ror.org/01rsvh545', 'en', 1, 'https://ror.org/01rsvh545 Army University'),
(108079, 'https://ror.org/01kknrc90', 'id', 1, 'https://ror.org/01kknrc90 Universitas Sumatera Utara University of North Sumatra'),
(108080, 'https://ror.org/031fx5580', 'de', 1, 'https://ror.org/031fx5580 Institut für Ländliche Strukturforschung Institut für Ländliche Strukturforschung e.V. Institute for Rural Development Research'),
(108081, 'https://ror.org/02gy1r431', 'fr', 1, 'https://ror.org/02gy1r431 Centre de Recherches sur les LittƩratures et la SociopoƩtique'),
(108082, 'https://ror.org/020a9ab42', 'en', 1, 'https://ror.org/020a9ab42 U.S. Army Maneuver Center of Excellence'),
(108083, 'https://ror.org/02rqhpa98', 'no_lang_code', 1, 'https://ror.org/02rqhpa98 KLA (United States)'),
(108084, 'https://ror.org/01jepya76', 'en', 1, 'https://ror.org/01jepya76 Academia Militar de los Estados Unidos AcadƩmie Militaire de West Point United States Military Academy'),
(108085, 'https://ror.org/03ay59x86', 'en', 1, 'https://ror.org/03ay59x86 University of French Polynesia UniversitƩ de la polynƩsie franƧaise'),
(108086, 'https://ror.org/03scae842', 'en', 1, 'https://ror.org/03scae842 United States Special Operations Command'),
(108087, 'https://ror.org/039v3q173', 'en', 1, 'https://ror.org/039v3q173 Shmuel Harofeh Hospital בית החולים שמואל הרופא'),
(108088, 'https://ror.org/0087gn380', 'en', 1, 'https://ror.org/0087gn380 Electrochem Technologies & Materials Inc. Electrochem Technologies & Materials Inc. (Canada)'),
(108089, 'https://ror.org/04zn7j940', 'en', 1, 'https://ror.org/04zn7j940 Joint Special Operations University'),
(108090, 'https://ror.org/05h1v3r89', 'en', 1, 'https://ror.org/05h1v3r89 Ministère de la Santé Ontario Ministry of Health'),
(108091, 'https://ror.org/03sj9b840', 'en', 1, 'https://ror.org/03sj9b840 EOSC Association'),
(108092, 'https://ror.org/03ba1t516', 'it', 1, 'https://ror.org/03ba1t516 Sistema Nazionale per la Protezione dell''Ambiente'),
(108093, 'https://ror.org/00v452281', 'fr', 1, 'https://ror.org/00v452281 Centre international de recherche sur le cancer International Agency for Research on Cancer'),
(108094, 'https://ror.org/01k6wxv57', 'fr', 1, 'https://ror.org/01k6wxv57 ROMEO'),
(108095, 'https://ror.org/01fwb5927', 'en', 1, 'https://ror.org/01fwb5927 Naval Safety Command'),
(108096, 'https://ror.org/035w1gb98', 'en', 1, 'https://ror.org/035w1gb98 Departamento del EjƩrcito de los Estados Unidos United States Department of the Army'),
(108097, 'https://ror.org/01mkht758', 'en', 1, 'https://ror.org/01mkht758 Netversity International'),
(108098, 'https://ror.org/05c2qg481', 'fr', 1, 'https://ror.org/05c2qg481 Institut des Sciences et Technologies de Paris ParisTech'),
(108099, 'https://ror.org/01jmqcy63', 'en', 1, 'https://ror.org/01jmqcy63 Consortium des bibliothĆØques universitaires suisses Consortium of Swiss Academic Libraries Consorzio delle biblioteche universitarie svizzere Konsortium der Schweizer Hochschulbibliotheken'),
(108100, 'https://ror.org/01sgp7065', 'en', 1, 'https://ror.org/01sgp7065 Singapore Baptist Theological Seminary ę–°åŠ å”ęµøäæ”ä¼šē„žå­¦é™¢'),
(108101, 'https://ror.org/001tjjt60', 'en', 1, 'https://ror.org/001tjjt60 AOI Universal Hospital AOIå›½éš›ē—…é™¢'),
(108102, 'https://ror.org/024w0ge69', 'en', 1, 'https://ror.org/024w0ge69 Ministry of Health and Welfare'),
(108103, 'https://ror.org/01hvaky50', 'en', 1, 'https://ror.org/01hvaky50 Ibn Sina University of Medical and Pharmaceutical Sciences Ų¬Ų§Ł…Ų¹Ų© ابن Ų³ŁŠŁ†Ų§ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„ŲµŁŠŲÆŁ„Ų§Ł†ŁŠŲ©'),
(108104, 'https://ror.org/0346k0491', 'en', 1, 'https://ror.org/0346k0491 Gulbenkian Institute for Molecular Medicine'),
(108105, 'https://ror.org/03vsgv549', 'en', 1, 'https://ror.org/03vsgv549 Government Ayurvedic College & Hospital, Balangir ସରକାରୀ ą¬†ą­Ÿą­ą¬°ą­ą¬¬ą­‡ą¬¦ ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿą­ ą¬¬ą¬²ą­ą¬™ą­ą¬—ą¬°ą­'),
(108106, 'https://ror.org/02jp62t23', 'en', 1, 'https://ror.org/02jp62t23 UNM Sandoval Regional Medical Center'),
(108107, 'https://ror.org/0522sfr70', 'en', 1, 'https://ror.org/0522sfr70 ADJURIS – International Academic Publisher'),
(108108, 'https://ror.org/05swbnm48', 'en', 1, 'https://ror.org/05swbnm48 Association for Molecular Pathology'),
(108109, 'https://ror.org/03nhjew95', 'fr', 1, 'https://ror.org/03nhjew95 UniversitƩ de Rouen Normandie'),
(108110, 'https://ror.org/01s8kfg79', 'en', 1, 'https://ror.org/01s8kfg79 WWF-Pakistan'),
(108111, 'https://ror.org/01nk6sj42', 'en', 1, 'https://ror.org/01nk6sj42 Ankara Etlik City Hospital Ankara Etlik Şehir Hastanesi مستؓفى Ł…ŲÆŁŠŁ†Ų© Ų„ŲŖŁ„ŁŠŁƒ'),
(108112, 'https://ror.org/03j74rs53', 'en', 1, 'https://ror.org/03j74rs53 The Madura College ą®®ą®¤ąÆą®°ąÆˆą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(108113, 'https://ror.org/0108mwc04', 'es', 1, 'https://ror.org/0108mwc04 Universidad del Rosario'),
(108114, 'https://ror.org/005caq902', 'fr', 1, 'https://ror.org/005caq902 ACCompagnement Pluriprofessionnel PatienT'),
(108115, 'https://ror.org/03c52pz66', 'en', 1, 'https://ror.org/03c52pz66 Indian Institute of Information Technology, Sonepat ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤øą„‹ą¤Øą„€ą¤Ŗą¤¤'),
(108116, 'https://ror.org/04dza7n80', 'de', 1, 'https://ror.org/04dza7n80 NABU|naturgucker geG NABU|naturgucker gemeinnützige eG'),
(108117, 'https://ror.org/00k4v9x79', 'es', 1, 'https://ror.org/00k4v9x79 Higher University of San AndrƩs Universidad Mayor de San AndrƩs'),
(108118, 'https://ror.org/018fv4x96', 'de', 1, 'https://ror.org/018fv4x96 Naturkundemuseum Bamberg'),
(108119, 'https://ror.org/05bnrs208', 'en', 1, 'https://ror.org/05bnrs208 International Research and Publishing Academy International Research and Publishing Academy (Pakistan)'),
(108120, 'https://ror.org/016hqe888', 'en', 1, 'https://ror.org/016hqe888 Beaver Creek Analytical, LLC Beaver Creek Analytical, LLC (United States)'),
(108121, 'https://ror.org/00kcjks51', 'es', 1, 'https://ror.org/00kcjks51 Fundación Universidad de América Universidad de América University of America'),
(108122, 'https://ror.org/00mpfbp90', 'en', 1, 'https://ror.org/00mpfbp90 Foundation for Renewable Energy & Environment'),
(108123, 'https://ror.org/05jwcsm16', 'en', 1, 'https://ror.org/05jwcsm16 Air University'),
(108124, 'https://ror.org/03zg8ak49', 'es', 1, 'https://ror.org/03zg8ak49 Universidad CEU Fernando III'),
(108125, 'https://ror.org/01298dc11', 'en', 1, 'https://ror.org/01298dc11 Chuiko Institute of Surface Chemistry Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ хімії поверхні ім. Šž.Šž. Чуйка ŠŠŠ України'),
(108126, 'https://ror.org/037z3rx48', 'en', 1, 'https://ror.org/037z3rx48 Namangan State Pedagogical Institute Namanganskij gosudarstvennyj pedagogičeskij institut'),
(108127, 'https://ror.org/0300ws552', 'en', 1, 'https://ror.org/0300ws552 University of Internal Affairs of Mongolia Монгол Улсын Єууль Š”Š°Ń…ŠøŃƒŠ»Š°Ń…Ń‹Š½ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(108128, 'https://ror.org/021k7qh53', 'en', 1, 'https://ror.org/021k7qh53 We and AI We and AI Ltd'),
(108129, 'https://ror.org/05hpgga53', 'hu', 1, 'https://ror.org/05hpgga53 Flór Ferenc Hospital Kistarcsai Flór Ferenc KórhÔz'),
(108130, 'https://ror.org/042dqsh43', 'en', 1, 'https://ror.org/042dqsh43 Arrington Research, Inc. Arrington Research, Inc. (United States)'),
(108131, 'https://ror.org/03h4rc418', 'es', 1, 'https://ror.org/03h4rc418 Dirección de Educación Policial Institución Universitaria de la Policía Nacional'),
(108132, 'https://ror.org/04yrqp957', 'fr', 1, 'https://ror.org/04yrqp957 University of Angers UniversitƩ d''Angers'),
(108133, 'https://ror.org/00wftym42', 'en', 1, 'https://ror.org/00wftym42 Burrell College of Osteopathic Medicine'),
(108134, 'https://ror.org/00389wp47', 'en', 1, 'https://ror.org/00389wp47 South Carolina Department of Public Health'),
(108135, 'https://ror.org/00ryjtt64', 'en', 1, 'https://ror.org/00ryjtt64 Space Physics Data Facility'),
(108136, 'https://ror.org/04hztmn48', 'fr', 1, 'https://ror.org/04hztmn48 Laboratoire Conception de Produits et Innovation'),
(108137, 'https://ror.org/01tqf6a73', 'de', 1, 'https://ror.org/01tqf6a73 Institut für Geschichte des ländlichen Raumes Institute of Rural History'),
(108138, 'https://ror.org/049234459', 'en', 1, 'https://ror.org/049234459 Cygnet Healthcare Ltd'),
(108139, 'https://ror.org/001j26r80', 'fr', 1, 'https://ror.org/001j26r80 Health and Services of Polynesian Ecosystems Santé et Services des Ecosytèmes Polynésiens'),
(108140, 'https://ror.org/035b18p12', 'en', 1, 'https://ror.org/035b18p12 CBM Bethel Hospital'),
(108141, 'https://ror.org/02vfy7g92', 'en', 1, 'https://ror.org/02vfy7g92 Bayworld'),
(108142, 'https://ror.org/04m7cgp86', 'en', 1, 'https://ror.org/04m7cgp86 London Health Sciences Centre Research Institute'),
(108143, 'https://ror.org/05xmg2z40', 'en', 1, 'https://ror.org/05xmg2z40 V.M. Glushkov Institute of Cybernetics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кібернетики імені Š’.М. Š“Š»ŃƒŃˆŠŗŠ¾Š²Š° ŠŠŠ України'),
(108144, 'https://ror.org/01vmzej98', 'fr', 1, 'https://ror.org/01vmzej98 Centre Michel de l’Hospital'),
(108145, 'https://ror.org/0258apj61', 'en', 1, 'https://ror.org/0258apj61 Amsterdam Public Health'),
(108146, 'https://ror.org/0335fsx71', 'en', 1, 'https://ror.org/0335fsx71 German University of Digital Science'),
(108147, 'https://ror.org/04273hz96', 'en', 1, 'https://ror.org/04273hz96 Open Research Community Accelerator'),
(108148, 'https://ror.org/00htggt94', 'no_lang_code', 1, 'https://ror.org/00htggt94 Pasqal Pasqal (France)'),
(108149, 'https://ror.org/05e4xkm09', 'en', 1, 'https://ror.org/05e4xkm09 Czech National Corpus Český nÔrodní korpus'),
(108150, 'https://ror.org/03870dx82', 'en', 1, 'https://ror.org/03870dx82 Alisher Navo''i Tashkent State University of Uzbek Language and Literature Alisher Navoiy nomidagi Toshkent davlat oŹ»zbek tili va adabiyoti universiteti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ узбекского ŃŠ·Ń‹ŠŗŠ° Šø Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ имени ŠŠ»ŠøŃˆŠµŃ€Š° ŠŠ°Š²Š¾Šø Š¢Š°ŃˆŠŗÓ™Š½Ń‚ Гәүләт үзбәк теле һәм Ó™Š“Ó™Š±ŠøŃŃ‚Ń‹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(108151, 'https://ror.org/02re7jk37', 'en', 1, 'https://ror.org/02re7jk37 Putra Business School'),
(108152, 'https://ror.org/01rp22j96', 'fr', 1, 'https://ror.org/01rp22j96 Centre de Recherche en Odontologie Clinique'),
(108153, 'https://ror.org/01p1q1f66', 'en', 1, 'https://ror.org/01p1q1f66 Sustainment Center of Excellence'),
(108154, 'https://ror.org/05qrz8r95', 'en', 1, 'https://ror.org/05qrz8r95 Alice & Bob Alice & Bob (France)'),
(108155, 'https://ror.org/04w46c814', 'en', 1, 'https://ror.org/04w46c814 United States Fleet Forces Command'),
(108156, 'https://ror.org/005gk0s47', 'en', 0, 'https://ror.org/005gk0s47 University of the Pacific'),
(108157, 'https://ror.org/0153tk833', 'en', 1, 'https://ror.org/0153tk833 Universidad de Virginia University of Virginia UniversitƩ de virginie'),
(108158, 'https://ror.org/00hbc1k35', 'fr', 1, 'https://ror.org/00hbc1k35 Laboratoire Bourguignon des MatƩriaux et ProcƩdƩs'),
(108159, 'https://ror.org/05fs6jp91', 'en', 1, 'https://ror.org/05fs6jp91 Universidad de Nuevo MƩxico University of New Mexico UniversitƩ du Nouveau-Mexique'),
(108160, 'https://ror.org/056gpyn03', 'en', 1, 'https://ror.org/056gpyn03 National Research Council Nepal ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤Ŗą¤°ą¤æą¤·ą¤¦ą„ ą¤Øą„‡ą¤Ŗą¤¾ą¤²'),
(108161, 'https://ror.org/04s60rj63', 'es', 1, 'https://ror.org/04s60rj63 South Colombian University Universidad Surcolombiana'),
(108162, 'https://ror.org/00dmpgj58', 'en', 1, 'https://ror.org/00dmpgj58 University of Sousse UniversitĆ© de Sousse Ų¬Ų§Ł…Ų¹Ų© سوسة'),
(108163, 'https://ror.org/00q9bwh14', 'pl', 1, 'https://ror.org/00q9bwh14 Górnośląska Wyższa Szkoła Handlowa im. Wojciecha Korfantego'),
(108164, 'https://ror.org/04yzbzc51', 'fr', 1, 'https://ror.org/04yzbzc51 Laboratoire de MƩcanique et ProcƩdƩs de Fabrication Mechanics, Surfaces and Materials Processing'),
(108165, 'https://ror.org/04m24yn62', 'en', 1, 'https://ror.org/04m24yn62 National Radio Astronomy Observatory'),
(108166, 'https://ror.org/05sn8wf81', 'es', 1, 'https://ror.org/05sn8wf81 National University of Cuyo Universidad Nacional de Cuyo'),
(108167, 'https://ror.org/05p53ep46', 'fr', 1, 'https://ror.org/05p53ep46 Analyse IntƩgrƩe Multimodale en SantƩ'),
(108168, 'https://ror.org/05cr76371', 'it', 1, 'https://ror.org/05cr76371 Museo di Storia Naturale di Milano Natural History Museum of Milan'),
(108169, 'https://ror.org/00qg2m632', 'en', 0, 'https://ror.org/00qg2m632 South Carolina Department of Health and Environmental Control'),
(108170, 'https://ror.org/03hasqf61', 'ca', 1, 'https://ror.org/03hasqf61 Institut de CiĆØncia de Materials de Barcelona Institute of Materials Science of Barcelona'),
(108171, 'https://ror.org/01agh0847', 'de', 1, 'https://ror.org/01agh0847 Deutsche Gesetzliche Unfallversicherung'),
(108172, 'https://ror.org/04w49cs59', 'en', 1, 'https://ror.org/04w49cs59 Dienst Wegverkeer Netherlands Vehicle Authority'),
(108173, 'https://ror.org/000kkaz97', 'en', 1, 'https://ror.org/000kkaz97 Odesa State Agrarian University ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Гержавний аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108174, 'https://ror.org/01y5nr239', 'en', 1, 'https://ror.org/01y5nr239 International Training Network, Bangladesh University of Engineering and Technology'),
(108175, 'https://ror.org/02nrqs528', 'de', 1, 'https://ror.org/02nrqs528 Deutscher Wetterdienst'),
(108176, 'https://ror.org/007nyh531', 'de', 1, 'https://ror.org/007nyh531 Documentation Centre of Austrian Resistance Dokumentationsarchiv des ƶsterreichischen Widerstandes'),
(108177, 'https://ror.org/04hdbav23', 'es', 1, 'https://ror.org/04hdbav23 Gordon Academic College of Education Instituto de Educación Superior Gordon College ×”××§×“×ž×™×Ŗ ×’×•×Ø×“×•×Ÿ'),
(108178, 'https://ror.org/006gmme17', 'en', 1, 'https://ror.org/006gmme17 United States Air Force'),
(108179, 'https://ror.org/0000n5x09', 'fr', 1, 'https://ror.org/0000n5x09 Agropolymer Engineering and Emerging Technologies Ingénierie des Agropolymères et Technologies Emergentes'),
(108180, 'https://ror.org/03kh2rb68', 'fr', 1, 'https://ror.org/03kh2rb68 Higher Normal School of Kouba Ɖcole Normale SupĆ©rieure de Kouba المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة بالقبة'),
(108181, 'https://ror.org/016sbja37', 'en', 1, 'https://ror.org/016sbja37 STRA LLC - Sci Tac Research Associates STRA LLC - Sci Tac Research Associates (United States)'),
(108182, 'https://ror.org/00zpzcf38', 'de', 1, 'https://ror.org/00zpzcf38 Bioforschung Austria'),
(108183, 'https://ror.org/02wd5d093', 'en', 1, 'https://ror.org/02wd5d093 Universa Universa Investments Universa Investments L.P. Universa Investments L.P. (United States)'),
(108184, 'https://ror.org/034thb936', 'es', 1, 'https://ror.org/034thb936 Fundación Española para la Ciencia y Tecnología Fundación Española para la Ciencia y la Tecnología Spanish Foundation for Science and Technology'),
(108185, 'https://ror.org/02e1c4h55', 'en', 1, 'https://ror.org/02e1c4h55 Secretariat of Public Education Secretaría de Educación Pública'),
(108186, 'https://ror.org/009m7cp22', 'es', 1, 'https://ror.org/009m7cp22 Autonomous University of the West Universidad Autónoma de Occidente'),
(108187, 'https://ror.org/03sk27d45', 'en', 1, 'https://ror.org/03sk27d45 South Carolina Department of Environmental Services'),
(108188, 'https://ror.org/01dx9yw21', 'en', 1, 'https://ror.org/01dx9yw21 Jabir Ibn Hayyan University for Medical and Pharmaceutical Sciences Ų¬Ų§ŲØŲ± بن Ų­ŁŠŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„ŲµŁŠŲÆŁ„Ų§Ł†ŁŠŲ©'),
(108189, 'https://ror.org/02yjrws02', 'en', 1, 'https://ror.org/02yjrws02 Jagannath International Management School, Kalkaji, New Delhi'),
(108190, 'https://ror.org/04pya0t36', 'fr', 1, 'https://ror.org/04pya0t36 Laboratoire d''Etudes Sociologiques sur la Construction et la Reproduction Sociales'),
(108191, 'https://ror.org/024j6hc19', 'no_lang_code', 1, 'https://ror.org/024j6hc19 Cihan University - Duhok Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ‡Ų§Ł† - ŲÆŁ‡ŁˆŁƒ'),
(108192, 'https://ror.org/00ktm1v71', 'id', 1, 'https://ror.org/00ktm1v71 Akademi Teknik Alat Berat Indonesia Indonesian Heavy Equipment Technical Academy'),
(108193, 'https://ror.org/016fdky84', 'en', 1, 'https://ror.org/016fdky84 Directorate General of Mines Safety'),
(108194, 'https://ror.org/02bj0z236', 'en', 1, 'https://ror.org/02bj0z236 Anhui Broadcasting Movie and Television College å®‰å¾½å¹æę’­å½±č§†čŒäøšęŠ€ęœÆå­¦é™¢'),
(108195, 'https://ror.org/05x7vmp26', 'en', 1, 'https://ror.org/05x7vmp26 Iris Energy LLC Iris Energy LLC (United States)'),
(108196, 'https://ror.org/05xpskt80', 'en', 1, 'https://ror.org/05xpskt80 American Transportation Research Institute'),
(108197, 'https://ror.org/00987cb86', 'pt', 1, 'https://ror.org/00987cb86 SĆ£o Paulo State University Universidad Estatal Paulista Universidade Estadual Paulista "JĆŗlio de Mesquita Filho" Universidade Estadual Paulista (Unesp)'),
(108198, 'https://ror.org/010q4q527', 'en', 1, 'https://ror.org/010q4q527 Gouvernement du Canada Government of Canada'),
(108199, 'https://ror.org/051g75b06', 'en', 1, 'https://ror.org/051g75b06 Kharkiv State Academy of Design and Arts Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Гизайну і мистецтв'),
(108200, 'https://ror.org/04e90ca47', 'en', 1, 'https://ror.org/04e90ca47 Faculty of Electrical Engineering and Computing in Zagreb Fakultet elektrotehnike i računarstva'),
(108201, 'https://ror.org/02e91jd64', 'ms', 1, 'https://ror.org/02e91jd64 Universiti Putra Malaysia ą®®ą®²ąÆ‡ą®šą®æą®Æ ą®ŖąÆą®¤ąÆą®°ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ åšē‰¹ę‹‰å¤§å­¦'),
(108202, 'https://ror.org/04vrzee53', 'en', 1, 'https://ror.org/04vrzee53 United States Army Medical Command'),
(108203, 'https://ror.org/05wa62164', 'en', 1, 'https://ror.org/05wa62164 Catholic University of Ávila Universidad Católica de Ávila'),
(108204, 'https://ror.org/05w6fhk97', 'en', 1, 'https://ror.org/05w6fhk97 CBS International Business School'),
(108205, 'https://ror.org/03ed7y723', 'en', 1, 'https://ror.org/03ed7y723 Ministrstvo za Notranje Zadeve Ministry of the Interior'),
(108206, 'https://ror.org/01xsq9m65', 'en', 1, 'https://ror.org/01xsq9m65 National Scientific Center Ā«ŠŠ¾n. Prof. М.S. Bokarius Forensic Science InstituteĀ» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃƒŠ“Š¾Š²ŠøŃ… експертиз ім. Засл. проф. М.Š”. Š‘Š¾ŠŗŠ°Ń€Ń–ŃƒŃŠ°Ā»'),
(108207, 'https://ror.org/02qjybw03', 'en', 1, 'https://ror.org/02qjybw03 Government Medical College Omandurar ą®…ą®°ą®šąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®“ą®®ą®ØąÆą®¤ąÆ‚ą®°ą®°ąÆ'),
(108208, 'https://ror.org/042949r55', 'fr', 1, 'https://ror.org/042949r55 HESAM UniversitƩ'),
(108209, 'https://ror.org/00stdvt59', 'en', 1, 'https://ror.org/00stdvt59 Austrian Competence Centre for Feed and Food Quality, Safety & Innovation Austrian Competence Centre for Feed and Food Quality, Safety & Innovation (Austria) FFoQSI GmbH'),
(108210, 'https://ror.org/04magv453', 'es', 1, 'https://ror.org/04magv453 Centro de Estudios de Innovación Institucional'),
(108211, 'https://ror.org/02x3zr378', 'en', 1, 'https://ror.org/02x3zr378 Office of the Chief of Naval Operations'),
(108212, 'https://ror.org/03exthx58', 'fr', 1, 'https://ror.org/03exthx58 UniDistance Suisse'),
(108213, 'https://ror.org/03me10b26', 'pt', 1, 'https://ror.org/03me10b26 Unesp de MarĆ­lia'),
(108214, 'https://ror.org/01y2kdt21', 'en', 1, 'https://ror.org/01y2kdt21 Osaka Medical and Pharmaceutical University å¤§é˜ŖåŒ»ē§‘č–¬ē§‘å¤§å­¦'),
(108215, 'https://ror.org/0213tsk84', 'en', 1, 'https://ror.org/0213tsk84 Mayanei Hayeshua Medical Center ×ž×Ø×›×– רפואי מעיני הישועה'),
(108216, 'https://ror.org/01htsap06', 'en', 0, 'https://ror.org/01htsap06 Geological Survey of Estonia'),
(108217, 'https://ror.org/0027z3756', 'en', 1, 'https://ror.org/0027z3756 Gezhouba Central Hospital of Sinopharm å›½čÆč‘›ę“²åäø­åæƒåŒ»é™¢'),
(108218, 'https://ror.org/01jvqnd16', 'fr', 0, 'https://ror.org/01jvqnd16 Centre Technique Interprofessionnel des OlƩagineux MƩtropolitains'),
(108219, 'https://ror.org/03qkmpv48', 'en', 1, 'https://ror.org/03qkmpv48 Institute of Labor, Occupational Safety And Health, Ministry of Labor'),
(108220, 'https://ror.org/02ts0wj93', 'en', 1, 'https://ror.org/02ts0wj93 Submarine Force, Atlantic'),
(108221, 'https://ror.org/00d1g0h88', 'en', 1, 'https://ror.org/00d1g0h88 Heliophysics Digital Resource Library'),
(108222, 'https://ror.org/04x5wnb75', 'en', 1, 'https://ror.org/04x5wnb75 Academic Center for Dentistry Amsterdam Academisch Centrum Tandheelkunde Amsterdam'),
(108223, 'https://ror.org/02w0vb190', 'fr', 1, 'https://ror.org/02w0vb190 Observatoire des Sciences de l''Univers Nantes Atlantique'),
(108224, 'https://ror.org/0563ebm96', 'en', 0, 'https://ror.org/0563ebm96 United States Air Force Air Armament Center'),
(108225, 'https://ror.org/01w5pyt41', 'en', 1, 'https://ror.org/01w5pyt41 European Severe Storms Laboratory - Science and Training'),
(108226, 'https://ror.org/04h3efr78', 'en', 1, 'https://ror.org/04h3efr78 Arunachal Pradesh University'),
(108227, 'https://ror.org/01v1h3m62', 'en', 1, 'https://ror.org/01v1h3m62 Jagannath International Management School, Vasant Kunj, New Delhi'),
(108228, 'https://ror.org/00sda7m35', 'tr', 1, 'https://ror.org/00sda7m35 Fethi̇ye Devlet Hastanesi̇'),
(108229, 'https://ror.org/01nse6g27', 'es', 1, 'https://ror.org/01nse6g27 Centro Nacional de Investigación sobre la Evolución Humana National Research Center on Human Evolution'),
(108230, 'https://ror.org/007dy3y92', 'fr', 1, 'https://ror.org/007dy3y92 Institut d''Asie Orientale'),
(108231, 'https://ror.org/038pa9k74', 'en', 1, 'https://ror.org/038pa9k74 Children’s Health Research Institute'),
(108232, 'https://ror.org/02n9j6f76', 'es', 1, 'https://ror.org/02n9j6f76 Universidad Del Pacifico University of the Pacific'),
(108233, 'https://ror.org/0103bf245', 'en', 1, 'https://ror.org/0103bf245 Kenya Association of Urological Surgeons'),
(108234, 'https://ror.org/03ap74s16', 'en', 1, 'https://ror.org/03ap74s16 U.S. Army Aviation Center of Excellence'),
(108235, 'https://ror.org/01cd4f636', 'fr', 1, 'https://ror.org/01cd4f636 Laboratoire de Philosophies et RationalitƩs'),
(108236, 'https://ror.org/010nd4p40', 'de', 1, 'https://ror.org/010nd4p40 Tiroler Landesmuseen-Betriebsgesellschaft M.B.H.'),
(108237, 'https://ror.org/055449294', 'fr', 1, 'https://ror.org/055449294 Laboratoire d’IngĆ©nierie des SystĆØmes Physiques et NumĆ©riques'),
(108238, 'https://ror.org/03f2vf930', 'en', 1, 'https://ror.org/03f2vf930 "И.АбГраимов атынГагы ŠšŃ‹Ń€Š³Ń‹Š· Š°Š²ŠøŠ°Ń†ŠøŃŠ»Ń‹Šŗ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ" Š¶Š¾Š³Š¾Ń€ŠŗŃƒ Š°Š²ŠøŠ°Ń†ŠøŃŠ»Ń‹Šŗ окуу жайы Higher Aviation Educational Institution ā€œKyrgyz Aviation Institute named after I. Abdraimovā€ Kyrgyz Aviation Institute named after I. Abdraimov Š’Ń‹ŃŃˆŠµŠµ авиационное ŃƒŃ‡ŠµŠ±Š½Š¾Šµ завеГение "ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ авиационный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени И.АбГраимова"'),
(108239, 'https://ror.org/03zb3rf33', 'en', 1, 'https://ror.org/03zb3rf33 RVS College of Engineering & Technology, Jamshedpur'),
(108240, 'https://ror.org/01vzrbc95', 'en', 1, 'https://ror.org/01vzrbc95 Maaref University of Applied Sciences Ų¬Ų§Ł…Ų¹Ų© المعارف Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(108241, 'https://ror.org/015fskz95', 'en', 1, 'https://ror.org/015fskz95 National Medical Research Center for Hematology ФГБУ Ā«ŠŠœŠ˜Š¦ Гематологии» ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Гематологический Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр» ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Российской ФеГерации'),
(108242, 'https://ror.org/00tjpb250', 'en', 0, 'https://ror.org/00tjpb250 Ministry of Health and Long Term Care Ministère de la Santé et des Soins de Longue Durée'),
(108243, 'https://ror.org/017mdc710', 'es', 1, 'https://ror.org/017mdc710 Comillas Pontifical University Universidad Pontificia Comillas Universidade Pontificia Comillas Universitat PontifĆ­cia de Comillas'),
(108244, 'https://ror.org/05kyx6f64', 'en', 1, 'https://ror.org/05kyx6f64 U.S. Army Combined Arms Support Command'),
(108245, 'https://ror.org/05x8ajk28', 'en', 1, 'https://ror.org/05x8ajk28 United States Army Command and General Staff College'),
(108246, 'https://ror.org/04cc84y45', 'pt', 1, 'https://ror.org/04cc84y45 Instituto de Pesquisas Científicas e Tecnológicas do Estado do AmapÔ'),
(108247, 'https://ror.org/03fqcyc11', 'es', 1, 'https://ror.org/03fqcyc11 Facultad Latinoamericana de Ciencias Sociales Latin American Faculty of Social Sciences'),
(108248, 'https://ror.org/05q785t81', 'en', 1, 'https://ror.org/05q785t81 Eesti Geoloogiateenistus Geological Survey of Estonia'),
(108249, 'https://ror.org/05p2t3578', 'en', 1, 'https://ror.org/05p2t3578 University of Engineering & Management, Jaipur'),
(108250, 'https://ror.org/02rz0r794', 'es', 1, 'https://ror.org/02rz0r794 Facultad Latinoamericana de Ciencias Ecuador Facultad Latinoamericana de Ciencias Sociales Ecuador Latin American Faculty of Social Sciences Ecuador'),
(108251, 'https://ror.org/03h5jx394', 'en', 1, 'https://ror.org/03h5jx394 TWI (United Kingdom)'),
(108252, 'https://ror.org/01rn8rf71', 'en', 0, 'https://ror.org/01rn8rf71 KLA Corporation KLA Corporation (United States)'),
(108253, 'https://ror.org/01b61x679', 'en', 1, 'https://ror.org/01b61x679 Army Cyber Institute at West Point'),
(108254, 'https://ror.org/04k1xjf56', 'en', 1, 'https://ror.org/04k1xjf56 Clinic for Special Children'),
(108255, 'https://ror.org/01vkp3w06', 'en', 1, 'https://ror.org/01vkp3w06 Inter-American Institute'),
(108256, 'https://ror.org/055j2zg87', 'es', 1, 'https://ror.org/055j2zg87 Escuela Universitaria de Magisterio Fray Luis de León'),
(108257, 'https://ror.org/00rqfzz65', 'en', 1, 'https://ror.org/00rqfzz65 Ministry of Labour and Employment ą¤¶ą„ą¤°ą¤® ą¤ą¤µą¤‚ ą¤°ą„‹ą¤œą¤—ą¤¾ą¤° ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(108258, 'https://ror.org/03d5egc95', 'no_lang_code', 1, 'https://ror.org/03d5egc95 GHEbavaria Maschinen GmbH GHEbavaria Maschinen GmbH (Germany)'),
(108259, 'https://ror.org/03w2w6331', 'en', 1, 'https://ror.org/03w2w6331 Mykolaiv regional organization of National Union of Lore Researchers of Ukraine ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠ° обласна Š¾Ń€Š³Š°Š½Ń–Š·Š°Ń†Ń–Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— спілки краєзнавців України'),
(108260, 'https://ror.org/035c9qf67', 'fr', 1, 'https://ror.org/035c9qf67 Academic Consortium for Electronic Publications Consortium Unifié des établissements Universitaires et de recherche pour l''accès aux publications numériques Couperin'),
(108261, 'https://ror.org/017s0zm38', 'en', 1, 'https://ror.org/017s0zm38 OMF Publishing, LLC OMF Publishing, LLC (Ukraine) Š¢ŠžŠ’ "ŠžŠœŠ¤ ŠŸŠ°Š±Š»Ń–ŃˆŠøŠ½Š³"'),
(108262, 'https://ror.org/02kvbt343', 'en', 1, 'https://ror.org/02kvbt343 ZEN University ZEN大学'),
(108263, 'https://ror.org/02j46qs45', 'en', 1, 'https://ror.org/02j46qs45 Masaryk University Masarykova univerzita'),
(108264, 'https://ror.org/02n6s8k31', 'tr', 1, 'https://ror.org/02n6s8k31 Central Fisheries Research Institute (SUMAE) Su Ürünleri Merkez Araştırma Enstitüsü'),
(108265, 'https://ror.org/03gewjm80', 'en', 1, 'https://ror.org/03gewjm80 Evolutionary Engineering & Distributed Information Systems Laboratory'),
(108266, 'https://ror.org/01bvjz807', 'pt', 1, 'https://ror.org/01bvjz807 Instituto Politecnico de Setubal Polytechnic Institute of SetĆŗbal'),
(108267, 'https://ror.org/04xkdwy10', 'en', 1, 'https://ror.org/04xkdwy10 Instituto Superior Miguel Torga'),
(108268, 'https://ror.org/04v3p2s41', 'en', 1, 'https://ror.org/04v3p2s41 Ethiopian Defence University'),
(108269, 'https://ror.org/02qyprq35', 'pt', 1, 'https://ror.org/02qyprq35 Museu de Arqueologia D Diogo de Sousa Museu de Arqueologia D. Diogo de Sousa'),
(108270, 'https://ror.org/0458p8g61', 'fr', 1, 'https://ror.org/0458p8g61 Anti-infectieux : supports molƩculaires des rƩsistances et innovations thƩrapeutiques'),
(108271, 'https://ror.org/009vhk114', 'nl', 1, 'https://ror.org/009vhk114 SURF'),
(108272, 'https://ror.org/01h1p3y81', 'pt', 1, 'https://ror.org/01h1p3y81 Centre for the Research and Technology of Agro-Environmental and Biological Sciences Centro de Investigação e de Tecnologias Agro-Ambientais e Biologicas'),
(108273, 'https://ror.org/01qg1af66', 'en', 1, 'https://ror.org/01qg1af66 Army Institute of Business Administration, Sylhet ą¦†ą¦°ą§ą¦®ą¦æ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø ą¦ą¦”ą¦®ą¦æą¦Øą¦æą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦¶ą¦Ø, ą¦øą¦æą¦²ą§‡ą¦Ÿ'),
(108274, 'https://ror.org/0326g9440', 'en', 1, 'https://ror.org/0326g9440 Kazan State Power Engineering University Казанский Š³Š¾ŃŃƒŠ“арственный ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108275, 'https://ror.org/043k3s342', 'fr', 1, 'https://ror.org/043k3s342 Centre de Vision NumƩrique Centre for Visual Computing'),
(108276, 'https://ror.org/00nrc9e09', 'no_lang_code', 1, 'https://ror.org/00nrc9e09 Thoughtventions Unlimited (United States)'),
(108277, 'https://ror.org/01zk8e745', 'pt', 1, 'https://ror.org/01zk8e745 CÔtedra Educação Cidadania e Diversidade Cultural'),
(108278, 'https://ror.org/05rnn8t74', 'en', 1, 'https://ror.org/05rnn8t74 Osaka University Hospital å¤§é˜Ŗå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(108279, 'https://ror.org/0290nn447', 'en', 1, 'https://ror.org/0290nn447 Institute of Mechanics of Continua and Mathematical Sciences'),
(108280, 'https://ror.org/02an8es95', 'en', 1, 'https://ror.org/02an8es95 Agenzia Nazionale per le Nuove Tecnologie, l''Energia e lo Sviluppo Economico Sostenibile Italian National Agency for New Technologies, Energy and Sustainable Economic Development National Agency for New Technologies, Energy and Sustainable Economic Development'),
(108281, 'https://ror.org/00thqtb16', 'en', 1, 'https://ror.org/00thqtb16 Centro MƩdico de la Universidad de Nebraska University of Nebraska Medical Center'),
(108282, 'https://ror.org/00w53b262', 'pt', 1, 'https://ror.org/00w53b262 Instituto Superior de Entre Douro e Vouga'),
(108283, 'https://ror.org/04562w448', 'pt', 1, 'https://ror.org/04562w448 Centro de Estudos Complexidade e Diversidade Humana'),
(108284, 'https://ror.org/04t4vzy93', 'pt', 1, 'https://ror.org/04t4vzy93 Inspeção-Geral da Educação e Ciência'),
(108285, 'https://ror.org/04hrtv807', 'no_lang_code', 1, 'https://ror.org/04hrtv807 Soginfer Investimentos ImobiliƔrios (Portugal) Soginfer Real Estate Investments'),
(108286, 'https://ror.org/03rsy5447', 'en', 1, 'https://ror.org/03rsy5447 Riskfuel Riskfuel (Canada)'),
(108287, 'https://ror.org/02qy8ba98', 'pt', 1, 'https://ror.org/02qy8ba98 Instituto Lusófono de Investigação e Desenvolvimento'),
(108288, 'https://ror.org/0113v9j97', 'de', 1, 'https://ror.org/0113v9j97 Hesse University of Applied Sciences for Public Management and Security Hessische Hochschule für öffentliches Management und Sicherheit'),
(108289, 'https://ror.org/0360xra57', 'en', 1, 'https://ror.org/0360xra57 Dewu 得物'),
(108290, 'https://ror.org/04gzz8859', 'pt', 1, 'https://ror.org/04gzz8859 Centro de Investigação em Saúde e Tecnologia Health and Technology Research Center'),
(108291, 'https://ror.org/0020x0a87', 'pt', 1, 'https://ror.org/0020x0a87 Centro de Estudos Internacionais'),
(108292, 'https://ror.org/02d9h1y41', 'en', 1, 'https://ror.org/02d9h1y41 International House Porto Foz'),
(108293, 'https://ror.org/04mvswa78', 'es', 1, 'https://ror.org/04mvswa78 Universidad Metropolitana para la Educación y el Trabajo'),
(108294, 'https://ror.org/00r80yr56', 'en', 1, 'https://ror.org/00r80yr56 Australian College of Perioperative Nurses'),
(108295, 'https://ror.org/0448qsq10', 'en', 1, 'https://ror.org/0448qsq10 Instituto PolitƩcnico do CƔvado e do Ave Polytechnic Institute of CƔvado and Ave'),
(108296, 'https://ror.org/020sr6z07', 'pt', 0, 'https://ror.org/020sr6z07 Centro Hospitalar Lisboa Norte'),
(108297, 'https://ror.org/03w0wfe93', 'en', 1, 'https://ror.org/03w0wfe93 Institut Rhodanien'),
(108298, 'https://ror.org/035hfz097', 'id', 1, 'https://ror.org/035hfz097 Akademi Komunitas Negeri Pacitan'),
(108299, 'https://ror.org/04pe73709', 'es', 1, 'https://ror.org/04pe73709 Ministerio de Salud Ministry of Health'),
(108300, 'https://ror.org/04kjehf08', 'fr', 1, 'https://ror.org/04kjehf08 Laboratoire d''Activation MolƩculaire'),
(108301, 'https://ror.org/0104paa34', 'pt', 1, 'https://ror.org/0104paa34 Instituto de História Contemporânea'),
(108302, 'https://ror.org/03rdgwh02', 'pt', 1, 'https://ror.org/03rdgwh02 Fundação para o Estudo e Desenvolvimento da Região de Aveiro'),
(108303, 'https://ror.org/02yg1ds16', 'en', 1, 'https://ror.org/02yg1ds16 Bekaa Hospital مستؓفى البقاع'),
(108304, 'https://ror.org/016va0r53', 'no_lang_code', 1, 'https://ror.org/016va0r53 Livraria Portugal (Portugal) Portugal Bookshop'),
(108305, 'https://ror.org/050m0b055', 'en', 1, 'https://ror.org/050m0b055 People''s Government of Guangdong Province'),
(108306, 'https://ror.org/0475kvb92', 'en', 1, 'https://ror.org/0475kvb92 Moldova State University Universitatea de Stat din Moldova Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ¾Š»Š“Š¾Š²Ń‹'),
(108307, 'https://ror.org/0264sz467', 'en', 1, 'https://ror.org/0264sz467 Geological Survey of the Netherlands'),
(108308, 'https://ror.org/022b6wh61', 'es', 1, 'https://ror.org/022b6wh61 Laboratorio Nacional de GeoInteligencia'),
(108309, 'https://ror.org/00k0vnk02', 'en', 1, 'https://ror.org/00k0vnk02 National Oil Corporation National Oil Corporation (Libya) المؤسسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للنفط'),
(108310, 'https://ror.org/02mhbdp94', 'es', 1, 'https://ror.org/02mhbdp94 Universidad de Los Andes University of Los Andes'),
(108311, 'https://ror.org/04ssfa057', 'pt', 1, 'https://ror.org/04ssfa057 Centro de Polƭmeros BiomƩdicos'),
(108312, 'https://ror.org/00qpqrv96', 'no_lang_code', 1, 'https://ror.org/00qpqrv96 Ubiquity Press (United Kingdom)'),
(108313, 'https://ror.org/006556814', 'pt', 1, 'https://ror.org/006556814 Hospital Cruz Vermelha'),
(108314, 'https://ror.org/059hjeb83', 'fr', 1, 'https://ror.org/059hjeb83 Institut supĆ©rieur de documentation المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„ŲŖŁˆŲ«ŁŠŁ‚'),
(108315, 'https://ror.org/013z4qk72', 'no_lang_code', 1, 'https://ror.org/013z4qk72 AXA (France)'),
(108316, 'https://ror.org/0053hhj95', 'en', 1, 'https://ror.org/0053hhj95 Grupo Interdisciplinario de Investigación en Sechium edule en México Interdisciplinary Research Group of Sechium edule in México');
INSERT INTO `rors` VALUES
(108317, 'https://ror.org/05bq01106', 'pt', 1, 'https://ror.org/05bq01106 Instituto Superior Técnico Instituto de Engenharia Mecânica'),
(108318, 'https://ror.org/00x21nt47', 'pt', 1, 'https://ror.org/00x21nt47 Fundação Engenheiro António de Almeida'),
(108319, 'https://ror.org/05x0rpm45', 'pt', 1, 'https://ror.org/05x0rpm45 Centro Interdisciplinar de Arqueologia e Evolução do Comportamento Humano Interdisciplinary Center for Archaeology and the Evolution of Human Behaviour'),
(108320, 'https://ror.org/008qzek11', 'sr', 1, 'https://ror.org/008qzek11 Istraživačko-razvojni institut za veŔtačku inteligenciju Srbije The Institute for Artificial Intelligence Research and Development of Serbia'),
(108321, 'https://ror.org/0429gcg78', 'fr', 1, 'https://ror.org/0429gcg78 Institut d''Etudes de Droit Public Institute of Public Law Studies'),
(108322, 'https://ror.org/01y11b825', 'en', 0, 'https://ror.org/01y11b825 Central Forensic Laboratory of the Police Centralne Laboratorium Kryminalistyczne Policji'),
(108323, 'https://ror.org/05h9f1789', 'pt', 1, 'https://ror.org/05h9f1789 Rede CUF'),
(108324, 'https://ror.org/01rnvbj75', 'no_lang_code', 1, 'https://ror.org/01rnvbj75 International Society for the Promotion of Education and Culture Sociedade Internacional de Promoção de Ensino e Cultura (Portugal)'),
(108325, 'https://ror.org/02ydx9r70', 'pt', 1, 'https://ror.org/02ydx9r70 ANJE - Associação Nacional de Jovens EmpresÔrios Associação Nacional de Jovens EmpresÔrios'),
(108326, 'https://ror.org/05gb5xf93', 'en', 1, 'https://ror.org/05gb5xf93 Asia International University Osiyo xalqaro universiteti Азиатский ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет'),
(108327, 'https://ror.org/04jx8x679', 'no_lang_code', 1, 'https://ror.org/04jx8x679 Infohealth Institute of Training and Innovation in Health Infosaúde Instituto de Formação e Inovação em Saúde Unipessoal (Portugal)'),
(108328, 'https://ror.org/00nyrjc53', 'es', 1, 'https://ror.org/00nyrjc53 Departament de Salut Departamento de Salud Department of Health'),
(108329, 'https://ror.org/00c00ys31', 'fr', 1, 'https://ror.org/00c00ys31 Centre de Bio-Informatique Centre de Bio-Informatique (CBIO), Mines Paris, UniversitƩ PSL Centre for computational biology (CBIO), Mines Paris, PSL University'),
(108330, 'https://ror.org/00tzk1s92', 'en', 1, 'https://ror.org/00tzk1s92 Khatam Al-Nabieen University دانؓگاه Ų®Ų§ŲŖŁ… Ų§Ł„Ł†ŲØŪŒŪŒŁ†'),
(108331, 'https://ror.org/01h8t7c63', 'pt', 1, 'https://ror.org/01h8t7c63 Universidade de Aveiro Incubator'),
(108332, 'https://ror.org/04agtv307', 'en', 1, 'https://ror.org/04agtv307 Saratov State Agrarian University named after N.I .Vavilov Даратовский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108333, 'https://ror.org/014kh0147', 'tr', 1, 'https://ror.org/014kh0147 Başakşehir Belediyesi'),
(108334, 'https://ror.org/02j2xmd27', 'en', 1, 'https://ror.org/02j2xmd27 Swedish Geotechnical Institute'),
(108335, 'https://ror.org/03mvmfx36', 'en', 1, 'https://ror.org/03mvmfx36 National Agriculture Research Center Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(108336, 'https://ror.org/02521wj37', 'en', 1, 'https://ror.org/02521wj37 Dr. Hilla Limann Technical University'),
(108337, 'https://ror.org/02c8sqt04', 'en', 1, 'https://ror.org/02c8sqt04 Marine and Freshwater Research Institute'),
(108338, 'https://ror.org/0306brh86', 'pt', 1, 'https://ror.org/0306brh86 Rainha Njinga a Mbande University Universidade Rainha Njinga a Mbande'),
(108339, 'https://ror.org/02dcnef98', 'pt', 1, 'https://ror.org/02dcnef98 NERSANT - Associação Empresarial da Região de Santarém'),
(108340, 'https://ror.org/01zq65v31', 'en', 1, 'https://ror.org/01zq65v31 Evercare Hospital Dhaka'),
(108341, 'https://ror.org/04m5j1k67', 'en', 1, 'https://ror.org/04m5j1k67 Aalborg Universitet Aalborg University'),
(108342, 'https://ror.org/01zz3bg18', 'pt', 1, 'https://ror.org/01zz3bg18 Centro de Reabilitação de Paralisia Cerebral Calouste Gulbenkian'),
(108343, 'https://ror.org/04gtrgv98', 'en', 1, 'https://ror.org/04gtrgv98 Embassy of the United States Lisbon U.S. Embassy Lisbon'),
(108344, 'https://ror.org/02wbcav28', 'de', 1, 'https://ror.org/02wbcav28 Walther Straub Institute of Pharmacology and Toxicology Walther-Straub-Institut für Pharmakologie und Toxikologie'),
(108345, 'https://ror.org/02v7vsy25', 'en', 1, 'https://ror.org/02v7vsy25 International Viticulture and Enology Society'),
(108346, 'https://ror.org/01vgbcw83', 'pt', 1, 'https://ror.org/01vgbcw83 Escola Superior ArtĆ­stica do Porto'),
(108347, 'https://ror.org/039b1yq56', 'no_lang_code', 1, 'https://ror.org/039b1yq56 Jorge Lozano Trabalhos em Altura Formação e Serviços (Portugal) Jorge Lozano Work at Height Training and Services Sole Proprietorship'),
(108348, 'https://ror.org/04f6rmh40', 'en', 1, 'https://ror.org/04f6rmh40 Tenement Museum'),
(108349, 'https://ror.org/00zj9v924', 'es', 1, 'https://ror.org/00zj9v924 Instituto Murciano de Investigación y Desarrollo Agrario y Medioambiental Murcian Institute for Agricultural and Environmental Research and Development'),
(108350, 'https://ror.org/02py5p643', 'pt', 1, 'https://ror.org/02py5p643 Instituto Brasileiro de Direito Processual Penal'),
(108351, 'https://ror.org/04k9nv771', 'en', 1, 'https://ror.org/04k9nv771 Regional Centre on Capacity Development and Research in Water Harvesting'),
(108352, 'https://ror.org/0111er030', 'no_lang_code', 1, 'https://ror.org/0111er030 Whitaker International Europe Business Strategy Whitaker International Europe EstratƩgia Empresarial (Portugal)'),
(108353, 'https://ror.org/05b1rsv17', 'es', 1, 'https://ror.org/05b1rsv17 Catholic University of Murcia Universidad Católica de Murcia ē©†å°”č„æäŗšåœ£å®‰äøœå°¼å„„å¤©äø»ę•™å¤§å­¦'),
(108354, 'https://ror.org/00n1dbb71', 'en', 1, 'https://ror.org/00n1dbb71 City Space Architecture'),
(108355, 'https://ror.org/0181xkt10', 'no_lang_code', 1, 'https://ror.org/0181xkt10 PLMJ Advogados (Portugal) PLMJ Transformative Legal Experts'),
(108356, 'https://ror.org/019gw3w69', 'no_lang_code', 1, 'https://ror.org/019gw3w69 Diaverum (Portugal)'),
(108357, 'https://ror.org/00147fj93', 'en', 1, 'https://ror.org/00147fj93 Rashtriya Raksha University'),
(108358, 'https://ror.org/037yfz375', 'pt', 1, 'https://ror.org/037yfz375 Infraestrutura de Investigação para a Ciência e Tecnologia da Linguagem Research Infrastructure for the Science and Technology of Language'),
(108359, 'https://ror.org/0380g1485', 'no_lang_code', 1, 'https://ror.org/0380g1485 Future Balloons Future Balloons (Portugal)'),
(108360, 'https://ror.org/035zg3a51', 'en', 1, 'https://ror.org/035zg3a51 ISCTE Business School'),
(108361, 'https://ror.org/0500xsz18', 'en', 1, 'https://ror.org/0500xsz18 Centre of Excellence in Biodiversity and Natural Resources Management'),
(108362, 'https://ror.org/04gz78964', 'es', 1, 'https://ror.org/04gz78964 Instituto Tecnológico Superior ARGOS'),
(108363, 'https://ror.org/0352k1g16', 'en', 1, 'https://ror.org/0352k1g16 Institute of Economics Institute of Economics of the Committee of Science of the Ministry of Science and Higher Education of the Republic of Kazakhstan Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø ŠšŠ¾Š¼ŠøŃ‚ŠµŃ‚Š° науки ŠœŠøŠ½ŠøŃŃ‚ерства науки Šø Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ РК Экономика ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹ ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ғылым және жоғары білім министрлігінің Ғылым комитеті'),
(108364, 'https://ror.org/04zkdpw71', 'id', 1, 'https://ror.org/04zkdpw71 Raharja University Universitas Raharja'),
(108365, 'https://ror.org/05qvvsf76', 'en', 1, 'https://ror.org/05qvvsf76 International Centre for Capacity Development, Sustainability and Societal Change ƞekkingarmiưstƶư þróunarsamvinnu'),
(108366, 'https://ror.org/05ehbhp30', 'pt', 1, 'https://ror.org/05ehbhp30 Coordenação Interdisciplinar para a Investigação e Inovação'),
(108367, 'https://ror.org/01e67se92', 'no_lang_code', 1, 'https://ror.org/01e67se92 Institute of Business Management (Portugal)'),
(108368, 'https://ror.org/01zz2zk94', 'en', 1, 'https://ror.org/01zz2zk94 International Training Centre in Astronomy ąøØąø¹ąø™ąø¢ą¹Œąøąø¶ąøąø­ąøšąø£ąø”ąø”ąø²ąø£ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ąø ąø²ąø¢ą¹ƒąø•ą¹‰ąø¢ąø¹ą¹€ąø™ąøŖą¹‚ąø'),
(108369, 'https://ror.org/031fvak76', 'en', 1, 'https://ror.org/031fvak76 European Bioplastics'),
(108370, 'https://ror.org/04s9rz084', 'pt', 1, 'https://ror.org/04s9rz084 Infraestrutura Nacional de Computação Distribuída / Centro Nacional de Computação Avançada.'),
(108371, 'https://ror.org/054bkz707', 'en', 1, 'https://ror.org/054bkz707 Research Lab in Computer Science'),
(108372, 'https://ror.org/04vn2za59', 'fr', 1, 'https://ror.org/04vn2za59 SantƩ de l''Homme'),
(108373, 'https://ror.org/00ngcze84', 'en', 1, 'https://ror.org/00ngcze84 Agence d''Ʃvaluation d''impact du Canada Impact Assessment Agency of Canada'),
(108374, 'https://ror.org/01sxmzj91', 'de', 0, 'https://ror.org/01sxmzj91 Zürcher Fachhochschule'),
(108375, 'https://ror.org/02f3k4e87', 'pt', 1, 'https://ror.org/02f3k4e87 Centro para o Desenvolvimento de CompetĆŖncias Digitais'),
(108376, 'https://ror.org/03xzttv08', 'en', 1, 'https://ror.org/03xzttv08 International University of Technology Twintech Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†ŲŖŁƒ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(108377, 'https://ror.org/02rdcxd75', 'id', 1, 'https://ror.org/02rdcxd75 Politeknik Negeri Cilacap'),
(108378, 'https://ror.org/03vsp1s58', 'no_lang_code', 1, 'https://ror.org/03vsp1s58 Id Tour Unique Solutions (Portugal)'),
(108379, 'https://ror.org/03031sb11', 'pt', 1, 'https://ror.org/03031sb11 Unidade de e-Learning e Inovação Pedagógica'),
(108380, 'https://ror.org/01qgrh175', 'fr', 1, 'https://ror.org/01qgrh175 Prevention of Chemical Risks PrƩvention du risque chimique'),
(108381, 'https://ror.org/00a4kne42', 'en', 1, 'https://ror.org/00a4kne42 NSS College of Engineering Palakkad'),
(108382, 'https://ror.org/035c70a92', 'en', 1, 'https://ror.org/035c70a92 Arnold P Gold Foundation'),
(108383, 'https://ror.org/05eze5936', 'en', 0, 'https://ror.org/05eze5936 Andijan Machine-building Institute Andijon Mashinasozlik instituti АнГижанский ŠœŠ°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(108384, 'https://ror.org/05747a161', 'en', 1, 'https://ror.org/05747a161 Association for Research in Infant and Child Development'),
(108385, 'https://ror.org/00prsav78', 'en', 1, 'https://ror.org/00prsav78 Instituto PolitƩcnico de BraganƧa Polytechnic Institute of BraganƧa'),
(108386, 'https://ror.org/0327f0k08', 'fr', 1, 'https://ror.org/0327f0k08 Handicap, ActivitƩ, Vieillissement, Autonomie, Environnement'),
(108387, 'https://ror.org/054edew91', 'en', 1, 'https://ror.org/054edew91 Defence Services Medical Research Centre'),
(108388, 'https://ror.org/05bgatk16', 'fr', 1, 'https://ror.org/05bgatk16 Genetic Stability and Oncogenesis IntƩgritƩ du gƩnome et cancers'),
(108389, 'https://ror.org/0034eay46', 'en', 1, 'https://ror.org/0034eay46 Sistema Universitario Texas A&M Texas A&M University System'),
(108390, 'https://ror.org/01a61tf67', 'en', 1, 'https://ror.org/01a61tf67 Office RƩgional de la SantƩ de Winnipeg Winnipeg Regional Health Authority'),
(108391, 'https://ror.org/009p3kk18', 'es', 1, 'https://ror.org/009p3kk18 Centro de Desarrollo Tecnológico Naval'),
(108392, 'https://ror.org/04dabqh73', 'en', 1, 'https://ror.org/04dabqh73 Waha Oil Company ؓركة Ų§Ł„ŁˆŲ§Ų­Ų© للنفط'),
(108393, 'https://ror.org/056mff334', 'pt', 1, 'https://ror.org/056mff334 Centro de Investigação em Educação BÔsica'),
(108394, 'https://ror.org/01jfp4b04', 'en', 1, 'https://ror.org/01jfp4b04 Al-Esraa University لجامعة الاسراؔ'),
(108395, 'https://ror.org/0257ekp23', 'en', 1, 'https://ror.org/0257ekp23 Imo State University YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ ƍmò'),
(108396, 'https://ror.org/01mhm6x57', 'en', 1, 'https://ror.org/01mhm6x57 Ethiopian Institute of Agricultural Research į‹ØįŠ¢į‰µį‹®įŒµį‹« į‹ØįŒį‰„įˆ­įŠ“ įˆįˆ­įˆįˆ­ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(108397, 'https://ror.org/045mh9k56', 'no_lang_code', 1, 'https://ror.org/045mh9k56 Phonetike Centro de Lƭnguas e PromoƧƵes Culturais (Portugal) Phonetike Language Centre and Cultural Promotions'),
(108398, 'https://ror.org/0235kxk33', 'en', 1, 'https://ror.org/0235kxk33 Instituto PolitƩcnico de Viseu Polytechnic Institute of Viseu'),
(108399, 'https://ror.org/04hkqw151', 'pt', 1, 'https://ror.org/04hkqw151 Hospital São José de Fafe'),
(108400, 'https://ror.org/02vpdtj36', 'no_lang_code', 1, 'https://ror.org/02vpdtj36 Instituto de Alimentação Becel (Portugal)'),
(108401, 'https://ror.org/05336nh10', 'en', 1, 'https://ror.org/05336nh10 Hospital Ana Nery'),
(108402, 'https://ror.org/050zc9t80', 'en', 1, 'https://ror.org/050zc9t80 50Hertz Transmission GmbH 50Hertz Transmission GmbH (Germany)'),
(108403, 'https://ror.org/01aexyw02', 'fr', 1, 'https://ror.org/01aexyw02 Droit & sociƩtƩs religieuses Droit et sociƩtƩs religieuses Laboratory on Law and Religious Societies'),
(108404, 'https://ror.org/04357wy15', 'en', 1, 'https://ror.org/04357wy15 International Centre of Research and Postgraduate Training in Mathematics Trung tĆ¢m NghiĆŖn cứu vĆ  ĐƠo tįŗ”o toĆ”n hį»c quốc tįŗæ'),
(108405, 'https://ror.org/01cqkb585', 'tr', 1, 'https://ror.org/01cqkb585 Ataşehir Adıgüzel Meslek Yüksekokulu'),
(108406, 'https://ror.org/014ns9811', 'es', 1, 'https://ror.org/014ns9811 Departament de Cultura Departamento de Cultura Ministry of Culture'),
(108407, 'https://ror.org/03g57ef97', 'en', 1, 'https://ror.org/03g57ef97 Joint Evaluated Fission and Fusion'),
(108408, 'https://ror.org/0295vxe02', 'it', 1, 'https://ror.org/0295vxe02 Liceo Scientifico Statale "S. Cannizzaro" di Palermo'),
(108409, 'https://ror.org/00eb63538', 'en', 1, 'https://ror.org/00eb63538 Greater Lisbon Christian Academy'),
(108410, 'https://ror.org/048hf7w38', 'en', 1, 'https://ror.org/048hf7w38 Squad Medicine and Research (SMR)'),
(108411, 'https://ror.org/02e1a0y45', 'no_lang_code', 1, 'https://ror.org/02e1a0y45 Irmãs Hospitaleiras (Portugal) Sisters Hospitaller'),
(108412, 'https://ror.org/018pkmj73', 'en', 1, 'https://ror.org/018pkmj73 Kaliyaganj College'),
(108413, 'https://ror.org/05a3vdg66', 'pt', 1, 'https://ror.org/05a3vdg66 Incubadora de Iniciativas Empresariais Inovadoras'),
(108414, 'https://ror.org/01rv9gx86', 'en', 1, 'https://ror.org/01rv9gx86 Jisc'),
(108415, 'https://ror.org/02gwsdp44', 'it', 1, 'https://ror.org/02gwsdp44 Azienda Sanitaria Locale Salerno'),
(108416, 'https://ror.org/03zmqts64', 'es', 1, 'https://ror.org/03zmqts64 Instituto Superior Tecnológico San Antonio'),
(108417, 'https://ror.org/04954k862', 'pt', 1, 'https://ror.org/04954k862 Centro de Estudos Africanos'),
(108418, 'https://ror.org/03ym7bm55', 'en', 1, 'https://ror.org/03ym7bm55 RITM Research Center in Economics & Management RƩseaux, Innovation, Territoires et Mondialisation'),
(108419, 'https://ror.org/05safxn82', 'pt', 1, 'https://ror.org/05safxn82 Centro de Estudos de Ciencia Animal'),
(108420, 'https://ror.org/03cf87p34', 'en', 1, 'https://ror.org/03cf87p34 Center for Engineering and Industrial Development Centro de IngenierĆ­a y Desarrollo Industrial'),
(108421, 'https://ror.org/03hzhqp45', 'en', 1, 'https://ror.org/03hzhqp45 Institute for Urban Excellence'),
(108422, 'https://ror.org/00jxzny32', 'no_lang_code', 1, 'https://ror.org/00jxzny32 Innovation Hospital Care (Portugal)'),
(108423, 'https://ror.org/02ejkey04', 'en', 1, 'https://ror.org/02ejkey04 Hochschule für Wirtschaft Zürich Zurich University of Applied Sciences in Business Administration'),
(108424, 'https://ror.org/03w9ctg72', 'es', 1, 'https://ror.org/03w9ctg72 Laboratorio de Investigaciones del Territorio y el Ambiente'),
(108425, 'https://ror.org/01tyw2j63', 'en', 1, 'https://ror.org/01tyw2j63 Safran Electronics & Defense Spain Safran Electronics & Defense Spain S.L.U. Safran Electronics & Defense Spain S.L.U. (Spain)'),
(108426, 'https://ror.org/01sn1yx84', 'en', 1, 'https://ror.org/01sn1yx84 University of Nigeria YunifĆ”sĆ­tƬ ilẹ̀ NƠƬjĆ­rĆ­Ć '),
(108427, 'https://ror.org/053dxh363', 'fr', 1, 'https://ror.org/053dxh363 University of UƩlƩ UniversitƩ de l''UƩlƩ'),
(108428, 'https://ror.org/01rdv4660', 'en', 1, 'https://ror.org/01rdv4660 Nurses Specialized in Wound, Ostomy and Continence Canada'),
(108429, 'https://ror.org/010de4288', 'en', 1, 'https://ror.org/010de4288 Research Institute of Food Science and Technology Ł…ŁˆŲ³Ų³Ł‡ Ł¾Ś˜ŁˆŁ‡Ų“ŪŒ Ų¹Ł„ŁˆŁ… و ŲµŁ†Ų§ŪŒŲ¹ غذایی'),
(108430, 'https://ror.org/03c62s410', 'en', 1, 'https://ror.org/03c62s410 Canadian-Pacific Robotic Ocean Observing Facility'),
(108431, 'https://ror.org/017kdxe49', 'id', 1, 'https://ror.org/017kdxe49 Politeknik Bina Trada Semarang'),
(108432, 'https://ror.org/05xkn9s74', 'en', 0, 'https://ror.org/05xkn9s74 Incorporated Research Institutions For Seismology'),
(108433, 'https://ror.org/00kazde95', 'en', 1, 'https://ror.org/00kazde95 Institute of Innovation Development Strategies and Knowledge Transfer Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стратегій інноваційного Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ і Ń‚Ń€Š°Š½ŃŃ„ŠµŃ€Ńƒ знань'),
(108434, 'https://ror.org/03sbcey83', 'en', 1, 'https://ror.org/03sbcey83 TechForFuture'),
(108435, 'https://ror.org/04n64pm61', 'en', 1, 'https://ror.org/04n64pm61 Bezos Earth Fund'),
(108436, 'https://ror.org/00vv27t93', 'es', 1, 'https://ror.org/00vv27t93 Mid Atlantic University Universidad del AtlƔntico Medio'),
(108437, 'https://ror.org/047s2c258', 'en', 1, 'https://ror.org/047s2c258 Universidad de Maryland University of Maryland, College Park UniversitƩ du Maryland'),
(108438, 'https://ror.org/02y8kge02', 'pt', 1, 'https://ror.org/02y8kge02 Gabinete de Documentacao e Direito Comparado'),
(108439, 'https://ror.org/01js43d58', 'pt', 1, 'https://ror.org/01js43d58 Instituto de Artes Visuais, Design e Marketing'),
(108440, 'https://ror.org/0065r7453', 'no_lang_code', 1, 'https://ror.org/0065r7453 Ferring Pharmaceuticals (Portugal)'),
(108441, 'https://ror.org/01bnjb948', 'en', 1, 'https://ror.org/01bnjb948 Nederlandse Organisatie voor Toegepast Natuurwetenschappelijk Onderzoek Netherlands Organisation for Applied Scientific Research'),
(108442, 'https://ror.org/01gbnem66', 'ca', 1, 'https://ror.org/01gbnem66 Departament de Recerca i Universitats Departamento de Investigación y Universidades Ministry of Research and Universities'),
(108443, 'https://ror.org/024c3xj78', 'fr', 1, 'https://ror.org/024c3xj78 Diseases and Hormones of the Nervous System Maladies et hormones du systĆØme nerveux'),
(108444, 'https://ror.org/01j3jyr88', 'en', 1, 'https://ror.org/01j3jyr88 School of Management Sciences, Lucknow'),
(108445, 'https://ror.org/0266k9652', 'en', 1, 'https://ror.org/0266k9652 Akademια Mazowiecka w Płocku Mazovian University in Płock'),
(108446, 'https://ror.org/046qcse71', 'en', 1, 'https://ror.org/046qcse71 Institute of Gifted Child of National Academy of Educational Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ обГарованої Гитини ŠŠŠŸŠ України'),
(108447, 'https://ror.org/055mxh123', 'pt', 1, 'https://ror.org/055mxh123 Institut Français du Portugal Instituto Francês de Portugal'),
(108448, 'https://ror.org/03tcx6c30', 'en', 1, 'https://ror.org/03tcx6c30 Finnish Museum of Natural History Luonnontieteellinen keskusmuseo Naturhistoriska centralmuseet'),
(108449, 'https://ror.org/04k7exg05', 'en', 1, 'https://ror.org/04k7exg05 Mymensingh Engineering College'),
(108450, 'https://ror.org/00rw1dq87', 'fr', 1, 'https://ror.org/00rw1dq87 UniversitƩ des patients'),
(108451, 'https://ror.org/015d72457', 'fr', 1, 'https://ror.org/015d72457 Laboratoire de mécanique des structures et des systèmes couplés'),
(108452, 'https://ror.org/033yvsr74', 'pt', 1, 'https://ror.org/033yvsr74 Laboratório de Reabilitação Psicossocial Psychosocial Rehabilitation Laboratory'),
(108453, 'https://ror.org/00wkh9a76', 'es', 0, 'https://ror.org/00wkh9a76 Governo Civil de Viana do Castelo'),
(108454, 'https://ror.org/02q5jeq02', 'en', 1, 'https://ror.org/02q5jeq02 International Sustainable Energy Development Centre ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ центр ŃƒŃŃ‚Š¾Š¹Ń‡ŠøŠ²Š¾Š³Š¾ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ поГ ŃŠ³ŠøŠ“Š¾Š¹ Š®ŠŠ•Š”ŠšŠž'),
(108455, 'https://ror.org/01rba9m50', 'pt', 1, 'https://ror.org/01rba9m50 INCUB“UP ANPME'),
(108456, 'https://ror.org/04zp24820', 'en', 1, 'https://ror.org/04zp24820 Chennai Mathematical Institute ą®šąÆ†ą®©ąÆą®©ąÆˆ ą®•ą®£ą®æą®¤ą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(108457, 'https://ror.org/00227f603', 'no_lang_code', 1, 'https://ror.org/00227f603 Elia (Belgium)'),
(108458, 'https://ror.org/0518hs626', 'id', 1, 'https://ror.org/0518hs626 Politeknik Bumi Akpelni'),
(108459, 'https://ror.org/01j308435', 'pt', 1, 'https://ror.org/01j308435 Galeria Geraldes da Silva'),
(108460, 'https://ror.org/01xjag017', 'es', 1, 'https://ror.org/01xjag017 Armada de Colombia Colombian National Navy'),
(108461, 'https://ror.org/02x4b0932', 'en', 1, 'https://ror.org/02x4b0932 Cleveland Clinic Lerner College of Medicine'),
(108462, 'https://ror.org/00z298720', 'pt', 1, 'https://ror.org/00z298720 Fundação Bomfim'),
(108463, 'https://ror.org/03xxypa75', 'en', 1, 'https://ror.org/03xxypa75 European Health and Digital Executive Agency Health and Digital Executive Agency'),
(108464, 'https://ror.org/04bxscs93', 'en', 1, 'https://ror.org/04bxscs93 Politeknik Negeri Indramayu'),
(108465, 'https://ror.org/019tcpt25', 'fr', 1, 'https://ror.org/019tcpt25 CentraleSupƩlec'),
(108466, 'https://ror.org/01hg13988', 'fr', 1, 'https://ror.org/01hg13988 Centre d''Ɖtudes et de Recherches sur le DĆ©veloppement International'),
(108467, 'https://ror.org/03ekjqf86', 'en', 1, 'https://ror.org/03ekjqf86 State Darwin Museum Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Дарвиновский музей'),
(108468, 'https://ror.org/01hwhm419', 'de', 0, 'https://ror.org/01hwhm419 Hessian University for Police and Administration Hessische Hochschule für Polizei und Verwaltung'),
(108469, 'https://ror.org/01jwcme05', 'en', 1, 'https://ror.org/01jwcme05 Fontys Hogeschool Fontys University of Applied Sciences'),
(108470, 'https://ror.org/01a2wsa50', 'eu', 1, 'https://ror.org/01a2wsa50 Biogipuzkoa Health Research Institute'),
(108471, 'https://ror.org/02fe5jg47', 'pt', 1, 'https://ror.org/02fe5jg47 Fundação INATEL Instituto Nacional para o Aproveitamento dos Tempos Livres dos Trabalhadores'),
(108472, 'https://ror.org/0321g0743', 'fr', 1, 'https://ror.org/0321g0743 Institut Gustave Roussy Institut Gustave-Roussy'),
(108473, 'https://ror.org/03q95nj24', 'en', 1, 'https://ror.org/03q95nj24 Rishihood University'),
(108474, 'https://ror.org/00b7dkt53', 'it', 1, 'https://ror.org/00b7dkt53 Centro Ricerche FIAT'),
(108475, 'https://ror.org/05tej8j73', 'no_lang_code', 1, 'https://ror.org/05tej8j73 Imprensa Nacional Casa da Moeda (Portugal) Imprensa Nacional Casa da Moeda, S.A. National Business Portuguese Mint'),
(108476, 'https://ror.org/020qm1538', 'en', 1, 'https://ror.org/020qm1538 California State University System Universidad Estatal de California UniversitĆ© d''Ɖtat de californie'),
(108477, 'https://ror.org/04kedsb71', 'no_lang_code', 1, 'https://ror.org/04kedsb71 Pro2B Consulting and Project Management Pro2B Consultoria e Gestão de Projetos (Portugal)'),
(108478, 'https://ror.org/03xrg8537', 'pt', 1, 'https://ror.org/03xrg8537 Instituto de Formação e Investigação da Língua Portuguesa'),
(108479, 'https://ror.org/008y7px84', 'fr', 1, 'https://ror.org/008y7px84 Groupe de recherche et d''accueil en droit et Ʃconomie de la santƩ'),
(108480, 'https://ror.org/024pp7288', 'en', 1, 'https://ror.org/024pp7288 Centro Internacional para las Reservas de la Biosfera MediterrƔneas International Centre for Mediterranean Biosphere Reserves'),
(108481, 'https://ror.org/01xvwxv41', 'en', 1, 'https://ror.org/01xvwxv41 University of Balamand UniversitĆ© de Balamand Ų¬Ų§Ł…Ų¹Ų© البلمند'),
(108482, 'https://ror.org/0149nzz61', 'pt', 1, 'https://ror.org/0149nzz61 Centro Internacional de Investigação Epistemologia e Reflexão Transdisciplinar'),
(108483, 'https://ror.org/01tzqyt58', 'no_lang_code', 1, 'https://ror.org/01tzqyt58 Takeda (Portugal)'),
(108484, 'https://ror.org/03akdp333', 'pt', 1, 'https://ror.org/03akdp333 Research Unit in Design and Communication Unidade de Investigação em Design e Comunicação'),
(108485, 'https://ror.org/03hzgjt93', 'pt', 1, 'https://ror.org/03hzgjt93 Linc Centros de Incubação'),
(108486, 'https://ror.org/046rtng78', 'en', 1, 'https://ror.org/046rtng78 Human Resources and Social Security Department of Guangdong Provice Human Resources and Social Security Department of Guangdong Province å¹æäøœēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(108487, 'https://ror.org/05byvp690', 'en', 1, 'https://ror.org/05byvp690 The University of Texas Southwestern Medical Center'),
(108488, 'https://ror.org/006ennj27', 'id', 1, 'https://ror.org/006ennj27 Batam Institute of Technology Institut Teknologi Batam'),
(108489, 'https://ror.org/00k0fnn97', 'no_lang_code', 0, 'https://ror.org/00k0fnn97 Novabase SGPS SA Matosinhos (Portugal)'),
(108490, 'https://ror.org/013yqne57', 'en', 1, 'https://ror.org/013yqne57 Giza Engineering Institute معهد Ų§Ł„Ų¬ŁŠŲ²Ų© العالى للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(108491, 'https://ror.org/04n4q3s42', 'pt', 1, 'https://ror.org/04n4q3s42 Galeria ze dos Bois'),
(108492, 'https://ror.org/03tr7gk60', 'pt', 1, 'https://ror.org/03tr7gk60 Centro Interdisciplinar em CiĆŖncias da SaĆŗde'),
(108493, 'https://ror.org/00v49t918', 'pt', 1, 'https://ror.org/00v49t918 Fundação Escola Americana de Lisboa'),
(108494, 'https://ror.org/02r1kz177', 'fr', 1, 'https://ror.org/02r1kz177 Bioinformatique MolƩculaire'),
(108495, 'https://ror.org/00rrjp493', 'es', 1, 'https://ror.org/00rrjp493 SecretarĆ­a de Ambiente de Quito'),
(108496, 'https://ror.org/01qg96j18', 'en', 1, 'https://ror.org/01qg96j18 International Centre for the Integrated Management of Watershed and Bio-Resources in Arid and Semi-Arid Regions'),
(108497, 'https://ror.org/04rwqq797', 'en', 1, 'https://ror.org/04rwqq797 International Centre for Research of Physics International Centre of Physics'),
(108498, 'https://ror.org/05p80rh40', 'fr', 1, 'https://ror.org/05p80rh40 MusƩe d''Anthropologie prƩhistorique de Monaco'),
(108499, 'https://ror.org/056546b03', 'no_lang_code', 1, 'https://ror.org/056546b03 Gilead Sciences (United States)'),
(108500, 'https://ror.org/01vn94n11', 'en', 1, 'https://ror.org/01vn94n11 Berlin International University of Applied Sciences'),
(108501, 'https://ror.org/02n3mew76', 'en', 1, 'https://ror.org/02n3mew76 Bioenergy and Business Incubator of Portalegre'),
(108502, 'https://ror.org/042akwa68', 'pt', 1, 'https://ror.org/042akwa68 Centro de Investigação Interdisciplinar e Intervenção ComunitÔria'),
(108503, 'https://ror.org/04kmgtr65', 'en', 1, 'https://ror.org/04kmgtr65 Guru Nanak Institute of Management Studies'),
(108504, 'https://ror.org/02dtdp942', 'pt', 1, 'https://ror.org/02dtdp942 Center for Drug Discovery and Innovative Medicines Centro de Investigação Farmacológica e Inovação Medicamentosa'),
(108505, 'https://ror.org/02rn1d663', 'es', 1, 'https://ror.org/02rn1d663 Colegio Superior Agropecuario del Estado de Guerrero'),
(108506, 'https://ror.org/05pv4tx93', 'pt', 1, 'https://ror.org/05pv4tx93 Instituto Superior de SaĆŗde do Alto Ave'),
(108507, 'https://ror.org/05xe12881', 'fr', 1, 'https://ror.org/05xe12881 ModƩlisation mathƩmatique et numƩrique'),
(108508, 'https://ror.org/00sarvh59', 'en', 1, 'https://ror.org/00sarvh59 ALT School of Theology Akademi fƶr Ledarskap och Teologi'),
(108509, 'https://ror.org/00xz5w759', 'pt', 1, 'https://ror.org/00xz5w759 Incubadora de Empresas da Figueira da Foz – Associação para o Desenvolvimento Empresarial'),
(108510, 'https://ror.org/0128rnm65', 'en', 1, 'https://ror.org/0128rnm65 Regional Centre for Renewable Energy and Energy Efficiency Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų„Ł‚Ł„ŁŠŁ…ŁŠ للطاقة المتجددة وكفاؔة'),
(108511, 'https://ror.org/048ank724', 'pt', 1, 'https://ror.org/048ank724 Centro de Investigação em Ciências Empresariais'),
(108512, 'https://ror.org/05cvfcr44', 'en', 1, 'https://ror.org/05cvfcr44 NSF National Center for Atmospheric Research'),
(108513, 'https://ror.org/05rb43d91', 'en', 1, 'https://ror.org/05rb43d91 Laser & Health Academy'),
(108514, 'https://ror.org/04y76z183', 'en', 1, 'https://ror.org/04y76z183 Information Society Research Laboratory'),
(108515, 'https://ror.org/0013hqd91', 'pt', 1, 'https://ror.org/0013hqd91 Centro Interdisciplinar de Estudos Educacionais'),
(108516, 'https://ror.org/0148ay426', 'pt', 1, 'https://ror.org/0148ay426 Poder JudiciƔrio do Estado de RondƓnia Tribunal de JustiƧa'),
(108517, 'https://ror.org/02jz7m443', 'fr', 1, 'https://ror.org/02jz7m443 Institut du dƩveloppement et des ressources en informatique scientifique Institute for Development and Resources in Intensive Scientific Computing'),
(108518, 'https://ror.org/034xs3n22', 'en', 1, 'https://ror.org/034xs3n22 Islamic Azad University, Naragh Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد نراق'),
(108519, 'https://ror.org/029wqbx83', 'pt', 1, 'https://ror.org/029wqbx83 Fundação Dr António Cupertino de Miranda'),
(108520, 'https://ror.org/048a87296', 'en', 1, 'https://ror.org/048a87296 Uppsala University Uppsala universitet Uppsalan yliopisto'),
(108521, 'https://ror.org/00cg73391', 'es', 1, 'https://ror.org/00cg73391 Instituto de Cultura, Sociedad y Estado'),
(108522, 'https://ror.org/03p17fv29', 'no_lang_code', 1, 'https://ror.org/03p17fv29 Yunnan Yunnei Power Machinery Manufacturing Co., Ltd. Yunnan Yunnei Power Machinery Manufacturing Co., Ltd. (China) äŗ‘å—äŗ‘å†…åŠØåŠ›ęœŗę¢°åˆ¶é€ ęœ‰é™å…¬åø'),
(108523, 'https://ror.org/04hkkk014', 'pt', 1, 'https://ror.org/04hkkk014 Centro de Investigação em Turismo Sustentabilidade e Bem-Estar'),
(108524, 'https://ror.org/01wghy068', 'no_lang_code', 1, 'https://ror.org/01wghy068 EGOR Group Grupo EGOR (Portugal)'),
(108525, 'https://ror.org/04165bm54', 'es', 1, 'https://ror.org/04165bm54 Benemerita Escuela Normal Urbana Federal Fronteriza'),
(108526, 'https://ror.org/008gcn350', 'en', 1, 'https://ror.org/008gcn350 Advanced Institute for Wildlife Conservation ą®‰ą®Æą®°ąÆą®Øą®æą®²ąÆˆ வன ą®‰ą®Æą®æą®°ą®æą®©ą®ŖąÆ ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(108527, 'https://ror.org/05fswdm20', 'no_lang_code', 1, 'https://ror.org/05fswdm20 Galderma (Switzerland)'),
(108528, 'https://ror.org/04eh3ff78', 'pt', 1, 'https://ror.org/04eh3ff78 Instituto de Inovação Tecnológica dos Açores'),
(108529, 'https://ror.org/02p811x92', 'pt', 1, 'https://ror.org/02p811x92 Instituto PortuguĆŖs de Naturologia'),
(108530, 'https://ror.org/032wd5c37', 'en', 1, 'https://ror.org/032wd5c37 Mongolian Natural History Museum ŠœŠ¾Š½Š³Š¾Š»Ń‹Š½ Байгалийн Түүхийн Музей'),
(108531, 'https://ror.org/00r6gdp61', 'es', 1, 'https://ror.org/00r6gdp61 Instituto Nacional de Investigaciones Forestales AgrĆ­colas y Pecuarias'),
(108532, 'https://ror.org/02we8vm03', 'no_lang_code', 1, 'https://ror.org/02we8vm03 Fiat Chrysler Automobiles (United Kingdom)'),
(108533, 'https://ror.org/055knhw20', 'no_lang_code', 1, 'https://ror.org/055knhw20 Baixa''s Bookstore Livraria da Baixa (Portugal)'),
(108534, 'https://ror.org/006xh4k10', 'pt', 1, 'https://ror.org/006xh4k10 Fundação Portugal África'),
(108535, 'https://ror.org/00gg6zc85', 'en', 1, 'https://ror.org/00gg6zc85 International Centre on Qanats and Historic Hydraulic Structures مرکز ŲØŪŒŁ†Ų§Ł„Ł…Ł„Ł„ŪŒ قنات و Ų³Ų§Ų²Ł‡Ł‡Ų§ŪŒ آبی تاریخی'),
(108536, 'https://ror.org/04wkrkf28', 'fr', 1, 'https://ror.org/04wkrkf28 Cellules souches hématopoïétiques et développement des hémopathies myéloïdes Hematopoietic stem cells and the development of myeloid malignancies'),
(108537, 'https://ror.org/004dvm254', 'pt', 1, 'https://ror.org/004dvm254 Center for Research and Development in Agrifood Systems and Sustainability Centro de Investigação e Desenvolvimento em Sistemas Agroalimentares e Sustentabilidade'),
(108538, 'https://ror.org/010rgx680', 'ms', 1, 'https://ror.org/010rgx680 Kolej Matrikulasi Selangor Selangor Matriculation College'),
(108539, 'https://ror.org/043z3jh59', 'es', 1, 'https://ror.org/043z3jh59 Secretaría de Educación Jalisco'),
(108540, 'https://ror.org/02k7a6666', 'id', 1, 'https://ror.org/02k7a6666 Politeknik Manufaktur Bandung'),
(108541, 'https://ror.org/04p1n4n05', 'fr', 1, 'https://ror.org/04p1n4n05 MatƩriaux et santƩ'),
(108542, 'https://ror.org/05k4c0m35', 'en', 1, 'https://ror.org/05k4c0m35 Observatory Sciences Ltd. Observatory Sciences Ltd. (United Kingdom)'),
(108543, 'https://ror.org/046n2n457', 'hr', 1, 'https://ror.org/046n2n457 Poliklinika za rehabilitaciju sluŔanja i govora SUVAG Polyclinic for the Rehabilitation of Listening and Speech SUVAG'),
(108544, 'https://ror.org/03w6kry90', 'en', 1, 'https://ror.org/03w6kry90 Polytechnic Institute of Viana do Castelo'),
(108545, 'https://ror.org/0541v8n46', 'it', 1, 'https://ror.org/0541v8n46 Museo di Archeologia e Scienze Naturali ''G. Zannato'''),
(108546, 'https://ror.org/04zn69b90', 'no_lang_code', 1, 'https://ror.org/04zn69b90 Ludomedia (Portugal)'),
(108547, 'https://ror.org/00enr3s27', 'en', 1, 'https://ror.org/00enr3s27 Jiangxi Provincial Institute of Traditional Chinese Medicine ę±Ÿč„æēœäø­åŒ»čÆē ”ē©¶é™¢'),
(108548, 'https://ror.org/055hegm02', 'no_lang_code', 1, 'https://ror.org/055hegm02 Hydro Aluminium Extrusion Portugal (Portugal)'),
(108549, 'https://ror.org/031t5w623', 'en', 1, 'https://ror.org/031t5w623 Deutsches Zentrum für Herz-Kreislauf-Forschung German Centre for Cardiovascular Research'),
(108550, 'https://ror.org/00t4vnv68', 'it', 1, 'https://ror.org/00t4vnv68 IRCCS Azienda Ospedliero-Universitaria di Bologna Policlinico di Sant''Orsola'),
(108551, 'https://ror.org/05emsba88', 'en', 1, 'https://ror.org/05emsba88 Association of European Research Libraries Ligue des Bibliothèques Européennes de Recherche'),
(108552, 'https://ror.org/00r7b5b77', 'pt', 1, 'https://ror.org/00r7b5b77 Instituto PortuguĆŖs de Oncologia Francisco Gentil Portuguese Oncology Institute'),
(108553, 'https://ror.org/03qxrge70', 'no_lang_code', 0, 'https://ror.org/03qxrge70 Fiat Chrysler Automobiles (United States)'),
(108554, 'https://ror.org/03936xk86', 'pt', 1, 'https://ror.org/03936xk86 Laboratório de Engenharia MatemÔtica do Instituto Politécnico do Porto'),
(108555, 'https://ror.org/02ar29j81', 'en', 1, 'https://ror.org/02ar29j81 Hogeschool Viaa Viaa Christian University of Applied Sciences'),
(108556, 'https://ror.org/014tx0036', 'fr', 1, 'https://ror.org/014tx0036 Centre de Recherches SƩmiotiques'),
(108557, 'https://ror.org/007xckb65', 'en', 1, 'https://ror.org/007xckb65 Institute for Neurodegenerative Diseases'),
(108558, 'https://ror.org/02pc8sa31', 'no_lang_code', 1, 'https://ror.org/02pc8sa31 Galp Energia SGPS (Portugal) Galp Energia SGPS, S.A.'),
(108559, 'https://ror.org/012j9yt19', 'pt', 1, 'https://ror.org/012j9yt19 Centro de Investigação em Contabilidade e Fiscalidade'),
(108560, 'https://ror.org/048vk1h54', 'en', 1, 'https://ror.org/048vk1h54 Kasturba Medical College, Mangalore'),
(108561, 'https://ror.org/0457e3t07', 'en', 1, 'https://ror.org/0457e3t07 Regional Centre on Urban Water Management'),
(108562, 'https://ror.org/02x2mx074', 'en', 1, 'https://ror.org/02x2mx074 Bailey-Matthews National Shell Museum Bailey-Matthews National Shell Museum & Aquarium'),
(108563, 'https://ror.org/02r8brs23', 'pt', 1, 'https://ror.org/02r8brs23 Instituto Portugues do Sangue e da Transplantacao, IP'),
(108564, 'https://ror.org/022je8241', 'en', 1, 'https://ror.org/022je8241 Openscapes Openscapes (United States)'),
(108565, 'https://ror.org/03eh14z46', 'en', 1, 'https://ror.org/03eh14z46 University of Chitral'),
(108566, 'https://ror.org/02qjyba57', 'en', 1, 'https://ror.org/02qjyba57 Central Laboratory of Applied Physics'),
(108567, 'https://ror.org/014s45j06', 'pt', 1, 'https://ror.org/014s45j06 Autonomous Systems Laboratory Laboratório de Sistemas Autónomos'),
(108568, 'https://ror.org/008qdx283', 'en', 1, 'https://ror.org/008qdx283 Manipal Academy of Higher Education, Dubai'),
(108569, 'https://ror.org/01hje9742', 'en', 1, 'https://ror.org/01hje9742 Global Research and Training Centre for Internationally Designated Areas ģœ ė„¤ģŠ¤ģ½” źµ­ģ œė³“ķ˜øģ§€ģ—­ źø€ė”œė²Œ ģ—°źµ¬Ā·ķ›ˆė Øģ„¼ķ„°'),
(108570, 'https://ror.org/00zw5g161', 'en', 1, 'https://ror.org/00zw5g161 Acharya Narendra Deva University of Agriculture and Technology UniversitĆ© narendra dev d''agriculture et de technologie ą¤Øą¤°ą„‡ą¤‚ą¤¦ą„ą¤° ą¤¦ą„‡ą¤µą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤—ą„ą¤°ą„€ą¤•ą¤²ą„ą¤šą¤° ą¤ą¤‚ą¤” ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€ ą¤•ą„ą¤®ą¤¾ą¤°ą¤—ą¤‚ą¤œ ą¤«ą¤¼ą„ˆą¤œą¤¼ą¤¾ą¤¬ą¤¾ą¤¦'),
(108571, 'https://ror.org/00x1cgf82', 'pt', 1, 'https://ror.org/00x1cgf82 Centro de Espectrometria de Massa Mass Spectrometry Centre'),
(108572, 'https://ror.org/02wwd9h37', 'pt', 1, 'https://ror.org/02wwd9h37 Hospital JosƩ Luciano de Castro Anadia'),
(108573, 'https://ror.org/00b78v464', 'de', 1, 'https://ror.org/00b78v464 Akademische Raumfahrt Initiative Schweiz'),
(108574, 'https://ror.org/02b5sc606', 'en', 1, 'https://ror.org/02b5sc606 NSF NCAR Earth Observing Laboratory'),
(108575, 'https://ror.org/05aev7j66', 'en', 1, 'https://ror.org/05aev7j66 National Institute of Carpology (Gaertnerian Institution) ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карпологии (Гертнеровский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚)'),
(108576, 'https://ror.org/01hym1a89', 'fr', 1, 'https://ror.org/01hym1a89 Human Sciences Institute (MSH) of Paris-Saclay Maison des Sciences sociales et des HumanitƩs de Paris-Saclay'),
(108577, 'https://ror.org/04afhv062', 'pt', 1, 'https://ror.org/04afhv062 Gabinete Emprego Empreendedorismo e Ligação às Empresas'),
(108578, 'https://ror.org/05tpdng73', 'fr', 1, 'https://ror.org/05tpdng73 UniversitƩ des Antilles PƓle Guadeloupe'),
(108579, 'https://ror.org/02af8gx52', 'no_lang_code', 1, 'https://ror.org/02af8gx52 Inter Partner Assistance Portugal Branch SA Inter Partner Assistance Sucursal Portugal (Portugal) Inter Partner Assistance Sucursal Portugal, S.A.'),
(108580, 'https://ror.org/05v8z6a72', 'bm', 1, 'https://ror.org/05v8z6a72 Kementerian Pendidikan Malaysia Ministry of Education Malaysia'),
(108581, 'https://ror.org/04ca50994', 'en', 1, 'https://ror.org/04ca50994 Bangladesh Naval Academy বাংলাদেশ নেভাল ą¦ą¦•ą¦¾ą¦”ą§‡ą¦®ą¦æ'),
(108582, 'https://ror.org/01f83q676', 'pt', 1, 'https://ror.org/01f83q676 MinistƩrio do Planejamento e das Infraestruturas'),
(108583, 'https://ror.org/01mk44223', 'no_lang_code', 1, 'https://ror.org/01mk44223 IQVIA (United States)'),
(108584, 'https://ror.org/04r08fn92', 'no_lang_code', 1, 'https://ror.org/04r08fn92 Global Health Platform (Portugal) Global Health Platform, S.A.'),
(108585, 'https://ror.org/056etpt97', 'no_lang_code', 1, 'https://ror.org/056etpt97 Atlantic Idea Institute for Development and Innovation of the Atlantic Instituto de Desenvolvimento e Inovação do Atlântico (Portugal)'),
(108586, 'https://ror.org/00hhhr502', 'fr', 1, 'https://ror.org/00hhhr502 Laboratoire AntiDopage FranƧais'),
(108587, 'https://ror.org/04ewgsz80', 'en', 1, 'https://ror.org/04ewgsz80 Guangdong Provincial Key Laboratory of Geophysical High-resolution Imaging Technology å¹æäøœēœåœ°ēƒē‰©ē†é«˜ē²¾åŗ¦ęˆåƒęŠ€ęœÆé‡ē‚¹å®žéŖŒå®¤'),
(108588, 'https://ror.org/0100b4v88', 'fr', 1, 'https://ror.org/0100b4v88 Neurodev : Troubles du neuro-dĆ©veloppement : du fœtus Ć  l''adulte'),
(108589, 'https://ror.org/01nzrgp81', 'en', 1, 'https://ror.org/01nzrgp81 Chirchik State Pedagogical University'),
(108590, 'https://ror.org/03gatys88', 'es', 1, 'https://ror.org/03gatys88 Ministerio de Salud PĆŗblica y Bienestar Social'),
(108591, 'https://ror.org/00jsay989', 'en', 1, 'https://ror.org/00jsay989 Shenzhen Medical Academy of Research and Translation ę·±åœ³åŒ»å­¦ē§‘å­¦é™¢'),
(108592, 'https://ror.org/00praab34', 'no_lang_code', 1, 'https://ror.org/00praab34 Energias de Portugal (Portugal)'),
(108593, 'https://ror.org/0316g0z65', 'pt', 1, 'https://ror.org/0316g0z65 Centro de Ecofisiologia BioquĆ­mica e Biotecnologia Vegetal'),
(108594, 'https://ror.org/01e312d09', 'en', 1, 'https://ror.org/01e312d09 Indo-German Science & Technology Centre'),
(108595, 'https://ror.org/01bqtpd23', 'no_lang_code', 1, 'https://ror.org/01bqtpd23 Coinscrap Finance Coinscrap Finance SL Coinscrap Finance SL (Spain)'),
(108596, 'https://ror.org/0152wf839', 'fr', 1, 'https://ror.org/0152wf839 Dynamique des Cellules Tumorales Tumor cell dynamics'),
(108597, 'https://ror.org/02pgsjq66', 'fr', 1, 'https://ror.org/02pgsjq66 Centre de Neurosciences de Sorbonne UniversitƩ Centre of Neurosciences of Sorbonne UniversitƩ Neuro-SU'),
(108598, 'https://ror.org/018786988', 'fr', 1, 'https://ror.org/018786988 Center for Systems and Control (CAS), Mines Paris, PSL University Centre Automatique et Systèmes Centre Automatique et Systèmes (CAS), Mines Paris, Université PSL'),
(108599, 'https://ror.org/05nebqd66', 'pt', 1, 'https://ror.org/05nebqd66 Centro Interdisciplinar de História Culturas e Sociedades'),
(108600, 'https://ror.org/00dey0g77', 'en', 1, 'https://ror.org/00dey0g77 Breakthrough Prize Breakthrough Prize Foundation'),
(108601, 'https://ror.org/02hkm3s40', 'pt', 1, 'https://ror.org/02hkm3s40 Associação de Pesquisa Iyaleta – Pesquisa, CiĆŖncias e Humanidades Iyaleta - Pesquisa, CiĆŖncias e Humanidades Iyaleta - Research, Sciences and Humanities'),
(108602, 'https://ror.org/00h6t8180', 'pt', 1, 'https://ror.org/00h6t8180 Gabinete de Planeamento Estratégia Avaliação e Relações Internacionais'),
(108603, 'https://ror.org/05xc0qp17', 'en', 1, 'https://ror.org/05xc0qp17 NSF NCAR Computational & Information Systems Laboratory'),
(108604, 'https://ror.org/059bq3232', 'fr', 1, 'https://ror.org/059bq3232 IngƩnierie et Plateformes au Service de l''Innovation ThƩrapeutique Paris-Saclay Institute of Therapeutic Innovation'),
(108605, 'https://ror.org/049tv2d57', 'en', 1, 'https://ror.org/049tv2d57 Southern University of Science and Technology å—ę–¹ē§‘ęŠ€å¤§å­¦'),
(108606, 'https://ror.org/044dy7e28', 'pt', 1, 'https://ror.org/044dy7e28 Escola de CiĆŖncias Sociais e Humanas'),
(108607, 'https://ror.org/01m8xrn95', 'pt', 1, 'https://ror.org/01m8xrn95 Centro de Estudos de Comunicação e Cultura'),
(108608, 'https://ror.org/016z02n57', 'no_lang_code', 1, 'https://ror.org/016z02n57 Suprema Imaginação Unipessoal (Portugal)'),
(108609, 'https://ror.org/01t6whv16', 'en', 1, 'https://ror.org/01t6whv16 Gobabeb Namib Research Institute'),
(108610, 'https://ror.org/027p1me18', 'en', 1, 'https://ror.org/027p1me18 LEAD College of Management LEAD College of Management (Autonomous)'),
(108611, 'https://ror.org/04cnjk665', 'pt', 1, 'https://ror.org/04cnjk665 Inspecção-Geral de Finanças'),
(108612, 'https://ror.org/035t8zc32', 'en', 1, 'https://ror.org/035t8zc32 The University of Osaka 大阪大学'),
(108613, 'https://ror.org/05v1m8q81', 'en', 1, 'https://ror.org/05v1m8q81 Ministry of Higher Education and Scientific Research MinistĆØre de l''Enseignement SupĆ©rieur et de la Recherche Scientifique وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(108614, 'https://ror.org/05km0fn42', 'no_lang_code', 1, 'https://ror.org/05km0fn42 HM Consultants Centre for Business Studies HM Consultores (Portugal)'),
(108615, 'https://ror.org/03gsfpp62', 'pt', 1, 'https://ror.org/03gsfpp62 Instituto PolitƩcnico de Tomar Polytechnic Institute of Tomar'),
(108616, 'https://ror.org/027wh3z10', 'de', 1, 'https://ror.org/027wh3z10 Centre for Media, Communication and Information Research Zentrum für Medien-, Kommunikations- und Informationsforschung'),
(108617, 'https://ror.org/03zpfpj30', 'pt', 1, 'https://ror.org/03zpfpj30 Fundação das Casas de Fronteira e Alorna'),
(108618, 'https://ror.org/05078rg59', 'en', 1, 'https://ror.org/05078rg59 Institute of Mathematical Sciences ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤®ą„‡ą¤„ą„‡ą¤®ą„‡ą¤Ÿą¤æą¤•ą¤² ą¤øą¤¾ą¤‡ą¤‚ą¤øą„‡ą¤ø गणित ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø கணித ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(108619, 'https://ror.org/01awgk221', 'en', 1, 'https://ror.org/01awgk221 Haute école pédagogique de Zurich Pädagogische Hochschule Zürich Zurich University of Teacher Education'),
(108620, 'https://ror.org/042aqky30', 'de', 1, 'https://ror.org/042aqky30 TUD Dresden University of Technology Technische UniversitƤt Dresden'),
(108621, 'https://ror.org/01zy7yh11', 'de', 1, 'https://ror.org/01zy7yh11 Bundesinstitut für Bau-, Stadt- und Raumforschung'),
(108622, 'https://ror.org/01ahxvn85', 'es', 1, 'https://ror.org/01ahxvn85 IFMIF-DONES EspaƱa'),
(108623, 'https://ror.org/00wz2vk41', 'en', 1, 'https://ror.org/00wz2vk41 Center for Mathematical Modeling Centre de modƩlisation mathƩmatique Centro de Modelamiento MatemƔtico'),
(108624, 'https://ror.org/03syhjw18', 'en', 0, 'https://ror.org/03syhjw18 Hlukhiv State Pedagogical University'),
(108625, 'https://ror.org/003g03329', 'en', 1, 'https://ror.org/003g03329 Flux50'),
(108626, 'https://ror.org/01h9ygv15', 'pt', 1, 'https://ror.org/01h9ygv15 Unidade de Investigação em Media Artes e Design'),
(108627, 'https://ror.org/015vzk543', 'es', 1, 'https://ror.org/015vzk543 Centro Regional de Seguridad HĆ­drica Regional Centre on Water Security'),
(108628, 'https://ror.org/029jcsg20', 'pt', 1, 'https://ror.org/029jcsg20 CƔtedra de Estudos Sefarditas Alberto Benveniste'),
(108629, 'https://ror.org/041c9jk31', 'pt', 1, 'https://ror.org/041c9jk31 Centro de Investigação Cientifica da Construção e do ImobiliÔrio'),
(108630, 'https://ror.org/01akr3654', 'pt', 1, 'https://ror.org/01akr3654 Ministra Adjunta e dos Assuntos Parlamentares'),
(108631, 'https://ror.org/00b8b0v21', 'en', 1, 'https://ror.org/00b8b0v21 Center of Research on International Business and Strategy'),
(108632, 'https://ror.org/02s3rf023', 'pt', 1, 'https://ror.org/02s3rf023 Centre for Research & Innovation in Education Centro de Investigação e Inovação em Educação'),
(108633, 'https://ror.org/02p8ayf63', 'en', 1, 'https://ror.org/02p8ayf63 Hainan 301 Hospital č§£ę”¾å†›ę€»åŒ»é™¢ęµ·å—åŒ»é™¢'),
(108634, 'https://ror.org/01xy6f245', 'en', 1, 'https://ror.org/01xy6f245 Nuclear Energy Agency'),
(108635, 'https://ror.org/040m5vj74', 'en', 1, 'https://ror.org/040m5vj74 Games Interaction and Learning Technologies'),
(108636, 'https://ror.org/05w4grc49', 'en', 1, 'https://ror.org/05w4grc49 HyLab Green Hydrogen Collaborative Laboratory'),
(108637, 'https://ror.org/01b6rns71', 'pt', 1, 'https://ror.org/01b6rns71 Unidade de Investigação e Internacionalização do ISVOUGA'),
(108638, 'https://ror.org/00wq7h592', 'fr', 0, 'https://ror.org/00wq7h592 Fondation des Maladies du Cœur et de l''AVC'),
(108639, 'https://ror.org/038yc9530', 'fr', 1, 'https://ror.org/038yc9530 Institut de Technologie Agroalimentaire'),
(108640, 'https://ror.org/02wht1c60', 'no_lang_code', 1, 'https://ror.org/02wht1c60 Livraria do Centro Comercial Arco ƍris (Portugal) Rainbow Shopping Centre Bookstore'),
(108641, 'https://ror.org/00hhjz250', 'en', 1, 'https://ror.org/00hhjz250 NSF NCAR Atmospheric Chemistry Observations & Modeling'),
(108642, 'https://ror.org/05fj1je62', 'en', 1, 'https://ror.org/05fj1je62 CADT - Cambodia Academy of Digital Technology Cambodia Academy of Digital Technology (CADT)'),
(108643, 'https://ror.org/0545qzj69', 'en', 1, 'https://ror.org/0545qzj69 Centre for Nanomaterials and Biotechnology Centrum nanomateriÔlů a biotechnologií'),
(108644, 'https://ror.org/01x14dh17', 'en', 1, 'https://ror.org/01x14dh17 Regional Humid Tropics Hydrology and Water Resources Centre for South-East Asia and the Pacific'),
(108645, 'https://ror.org/01b2cn516', 'es', 1, 'https://ror.org/01b2cn516 Hospital Rafael MƩndez'),
(108646, 'https://ror.org/01q600m51', 'no_lang_code', 1, 'https://ror.org/01q600m51 Kironfarma Pharmaceutical Products Kironfarma Produtos FarmacĆŖuticos (Portugal)'),
(108647, 'https://ror.org/02h3fqt03', 'es', 1, 'https://ror.org/02h3fqt03 Sistema Nacional de Investigadores'),
(108648, 'https://ror.org/03vx93323', 'no_lang_code', 1, 'https://ror.org/03vx93323 Norsk Hydro (Norway)'),
(108649, 'https://ror.org/05v4f3f05', 'en', 1, 'https://ror.org/05v4f3f05 International House'),
(108650, 'https://ror.org/007jk3x13', 'en', 1, 'https://ror.org/007jk3x13 Military Institute of Science and Technology মিলিটারি ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą“øąµˆą“Øą“æą“• ą“¶ą“¾ą“øąµą“¤ąµą“°ą“øą“¾ą“™ąµą“•ąµ‡ą“¤ą“æą“• ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“Ÿąµą“Æąµ‚ą“Ÿąµą“Ÿąµ, ą“¬ą“‚ą“—ąµą“²ą“¾ą“¦ąµ‡ą“¶ąµ'),
(108651, 'https://ror.org/01e4q9134', 'en', 1, 'https://ror.org/01e4q9134 Min-On Music Research Institute'),
(108652, 'https://ror.org/04npze968', 'no_lang_code', 1, 'https://ror.org/04npze968 ConocoPhillips (Qatar)'),
(108653, 'https://ror.org/01pjhvt09', 'fr', 1, 'https://ror.org/01pjhvt09 Transgénèse pour les études fonctionnelles sur les organismes modèles - Paris-Saclay'),
(108654, 'https://ror.org/0487m2n62', 'pt', 1, 'https://ror.org/0487m2n62 Instituto de Investigacao das Pescas e do Mar'),
(108655, 'https://ror.org/05kvtff09', 'en', 1, 'https://ror.org/05kvtff09 National Supercomputing Changsha Center å›½å®¶č¶…ēŗ§č®”ē®—é•æę²™äø­åæƒ'),
(108656, 'https://ror.org/03aaw7g70', 'pt', 1, 'https://ror.org/03aaw7g70 Centro Regional de Investigação Pesqueira do Sul'),
(108657, 'https://ror.org/03qtdvp28', 'pt', 1, 'https://ror.org/03qtdvp28 Centro de Reabilitação de Paralisia Cerebral de Coimbra'),
(108658, 'https://ror.org/01vvenv09', 'en', 1, 'https://ror.org/01vvenv09 GreenCoLab'),
(108659, 'https://ror.org/02kf4r633', 'en', 1, 'https://ror.org/02kf4r633 Manav Rachna International Institute of Research and Studies मानव रचना ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤ą¤‚ą¤” ą¤øą„ą¤Ÿą¤”ą„€ą¤ø'),
(108660, 'https://ror.org/03rvea339', 'en', 1, 'https://ror.org/03rvea339 Shared Health Inc. Shared Health Manitoba Soins communs Manitoba');
INSERT INTO `rors` VALUES
(108661, 'https://ror.org/009xfkq89', 'en', 1, 'https://ror.org/009xfkq89 Tehatta Sadananda Mahavidyalaya ą¦¤ą§‡ą¦¹ą¦¾ą¦¤ą¦Ÿą¦¾ ą¦øą¦¦ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ą¦¾'),
(108662, 'https://ror.org/007wk7062', 'en', 1, 'https://ror.org/007wk7062 William James Center for Research'),
(108663, 'https://ror.org/05d5m2r55', 'fr', 1, 'https://ror.org/05d5m2r55 Institut des Hautes Ɖtudes Scientifiques Institut des hautes Ć©tudes scientifiques Institute of Advanced Scientific Studies'),
(108664, 'https://ror.org/05vnksv67', 'en', 1, 'https://ror.org/05vnksv67 Instituto PolitƩcnico de Portalegre Polytechnic Institute of Portalegre'),
(108665, 'https://ror.org/005k7hp45', 'en', 1, 'https://ror.org/005k7hp45 Medical University of Silesia Śląski Uniwersytet Medyczny w Katowicach'),
(108666, 'https://ror.org/04kpgmg94', 'en', 1, 'https://ror.org/04kpgmg94 Manipur International University'),
(108667, 'https://ror.org/05bz2z050', 'en', 1, 'https://ror.org/05bz2z050 Euro-Argo ERIC Euro-Argo European Research Infrastructure Consortium'),
(108668, 'https://ror.org/00zb4qh40', 'en', 1, 'https://ror.org/00zb4qh40 City University Ajman Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŲÆŁŠŁ†Ų© عجمان'),
(108669, 'https://ror.org/04gbbq803', 'nl', 1, 'https://ror.org/04gbbq803 GGD Amsterdam Geneeskundige en Gezondheidsdienst Amsterdam Public Health Service of Amsterdam'),
(108670, 'https://ror.org/045m49j31', 'pt', 1, 'https://ror.org/045m49j31 Fundação Portuguesa das Comunicações'),
(108671, 'https://ror.org/05kdbps11', 'pt', 1, 'https://ror.org/05kdbps11 Centro de Geologia'),
(108672, 'https://ror.org/00myww245', 'no_lang_code', 1, 'https://ror.org/00myww245 Foresight Institute of Research and Translation Foresight Institute of Research and Translation (Rwanda)'),
(108673, 'https://ror.org/023y7b165', 'es', 1, 'https://ror.org/023y7b165 Centro Interdisciplinario de Estudios sobre Desarrollo'),
(108674, 'https://ror.org/013yhdf48', 'es', 1, 'https://ror.org/013yhdf48 CIES Salud Sexual - Salud Reproductiva'),
(108675, 'https://ror.org/04w2bqf56', 'en', 1, 'https://ror.org/04w2bqf56 Asia-Pacific Centre for Ecohydrology'),
(108676, 'https://ror.org/040d0cf15', 'no_lang_code', 1, 'https://ror.org/040d0cf15 Stellantis North America Stellantis North America (United States)'),
(108677, 'https://ror.org/02e2xy827', 'fr', 1, 'https://ror.org/02e2xy827 Syndicat des vignerons des CƓtes du RhƓne Syndicat gƩnƩral des vignerons des CƓtes du RhƓne'),
(108678, 'https://ror.org/03dapab36', 'en', 1, 'https://ror.org/03dapab36 Bangladesh Betar বাংলাদেশ বেতার'),
(108679, 'https://ror.org/013x8r926', 'pt', 1, 'https://ror.org/013x8r926 Applied Artificial Intelligence Laboratory Laboratório de Inteligência Artificial Aplicada'),
(108680, 'https://ror.org/03nxwh762', 'no_lang_code', 1, 'https://ror.org/03nxwh762 Intermusica Musical and Artistic Representations Intermúsica Representações Musicais e Artísticas (Portugal)'),
(108681, 'https://ror.org/058sk9j54', 'pt', 1, 'https://ror.org/058sk9j54 Incubadora de Empresas de Vouzela'),
(108682, 'https://ror.org/00e94h574', 'en', 1, 'https://ror.org/00e94h574 Ajay Kumar Garg Institute of Management'),
(108683, 'https://ror.org/05ahcg684', 'no_lang_code', 1, 'https://ror.org/05ahcg684 Morais Leitao Galvao Teles Soares da Silva & Associados Sociedade de Advogados (Portugal) Morais Leitao Galvao Teles Soares da Silva & Associates Lawyers Society'),
(108684, 'https://ror.org/05kh85b59', 'id', 1, 'https://ror.org/05kh85b59 Insitut Kesehatan Immanuel'),
(108685, 'https://ror.org/0260qqv98', 'de', 1, 'https://ror.org/0260qqv98 Barkhausen Institut Barkhausen Institut gGmbH'),
(108686, 'https://ror.org/05br64h13', 'en', 1, 'https://ror.org/05br64h13 SciPost'),
(108687, 'https://ror.org/04x483560', 'pt', 1, 'https://ror.org/04x483560 Fundação Grünenthal'),
(108688, 'https://ror.org/04439z919', 'no_lang_code', 1, 'https://ror.org/04439z919 Galderma (Portugal)'),
(108689, 'https://ror.org/03r89qc03', 'es', 1, 'https://ror.org/03r89qc03 Centro de Investigaciones y Transferencia Tierra del Fuego'),
(108690, 'https://ror.org/05cjqtz98', 'no_lang_code', 1, 'https://ror.org/05cjqtz98 Vasconcelos Xavier ServiƧos MƩdicos (Portugal)'),
(108691, 'https://ror.org/01k6ah132', 'ca', 1, 'https://ror.org/01k6ah132 Institut de Seguretat Pública de Catalunya Institute for Public Security of Catalonia Instituto de Seguridad Pública de Cataluña'),
(108692, 'https://ror.org/016w95s77', 'pt', 1, 'https://ror.org/016w95s77 Centro de Inovação em Engenharia e Tecnologia Industrial'),
(108693, 'https://ror.org/056v2rs36', 'pt', 1, 'https://ror.org/056v2rs36 Centro de Fisƭca e Engenharia de Materiais AvanƧados'),
(108694, 'https://ror.org/02zs48f23', 'fr', 1, 'https://ror.org/02zs48f23 Conditions Extrêmes et Matériaux Haute Température et Irradiation'),
(108695, 'https://ror.org/00bqs6f60', 'pt', 1, 'https://ror.org/00bqs6f60 Center for the History of Society and Culture Centro de História da Sociedade e da Cultura'),
(108696, 'https://ror.org/050e1k935', 'it', 1, 'https://ror.org/050e1k935 Consorzio di Ricerca Gian Pietro Ballatore'),
(108697, 'https://ror.org/01g6qcm52', 'en', 1, 'https://ror.org/01g6qcm52 Institute of Earth Sciences Jarðvísindastofnun HÔskólans'),
(108698, 'https://ror.org/02ps7mh93', 'pt', 1, 'https://ror.org/02ps7mh93 Startup SantarƩm'),
(108699, 'https://ror.org/03bbyax37', 'en', 1, 'https://ror.org/03bbyax37 Spintronics Research Network of Japan'),
(108700, 'https://ror.org/04mktej28', 'en', 1, 'https://ror.org/04mktej28 Dhaka Chamber of Commerce & Industry ঢাকা ą¦šą§‡ą¦®ą§ą¦¬ą¦¾ą¦° অব ą¦•ą¦®ą¦¾ą¦°ą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦‡ą¦Øą§ą¦”ą¦¾ą¦øą§ą¦Ÿą§ą¦°ą¦æ'),
(108701, 'https://ror.org/05fyr1y23', 'en', 1, 'https://ror.org/05fyr1y23 Lyceum of the Philippines University Laguna'),
(108702, 'https://ror.org/03pjf9v33', 'en', 1, 'https://ror.org/03pjf9v33 Toyo Institute of Food Technology å…¬ē›Šč²”å›£ę³•äŗŗę±ę“‹é£Ÿå“ē ”ē©¶ę‰€ ę±ę“‹é£Ÿå“ē ”ē©¶ę‰€'),
(108703, 'https://ror.org/032qwy987', 'pt', 1, 'https://ror.org/032qwy987 CƔtedra Energias RenovƔveis'),
(108704, 'https://ror.org/00v2cdz24', 'fr', 1, 'https://ror.org/00v2cdz24 CELPHEDIA'),
(108705, 'https://ror.org/01qv8fp92', 'en', 1, 'https://ror.org/01qv8fp92 Louisiana State University Health Sciences Center New Orleans'),
(108706, 'https://ror.org/05qaamg61', 'en', 1, 'https://ror.org/05qaamg61 Iraqi Association for Medical Research and Studies'),
(108707, 'https://ror.org/02ndqas38', 'en', 1, 'https://ror.org/02ndqas38 Institute of Applied Problems of Physics'),
(108708, 'https://ror.org/000nbj923', 'en', 1, 'https://ror.org/000nbj923 Medical Colleges of Northern Philippines'),
(108709, 'https://ror.org/01bvmtn27', 'en', 1, 'https://ror.org/01bvmtn27 Oxford College of Engineering and Management'),
(108710, 'https://ror.org/05r0ap620', 'en', 1, 'https://ror.org/05r0ap620 Haute Ɖcole d''Art de Zurich Zurich University of the Arts Zürcher Hochschule der Künste'),
(108711, 'https://ror.org/04c34mc83', 'en', 1, 'https://ror.org/04c34mc83 Avicenna - Batumi Medical University įƒįƒ•įƒ˜įƒŖįƒ”įƒœįƒ - įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(108712, 'https://ror.org/02kxhqs80', 'en', 1, 'https://ror.org/02kxhqs80 University of Gharyan Ų¬Ų§Ł…Ų¹Ų© ŲŗŲ±ŁŠŲ§Ł†'),
(108713, 'https://ror.org/057sddq63', 'no_lang_code', 1, 'https://ror.org/057sddq63 Inovapotek Pharmaceutical Research and Development (Portugal)'),
(108714, 'https://ror.org/037gm3x52', 'pt', 1, 'https://ror.org/037gm3x52 Fundação MÔrio Soares e Maria Barroso'),
(108715, 'https://ror.org/0249sb656', 'en', 1, 'https://ror.org/0249sb656 Lira University'),
(108716, 'https://ror.org/01vpa2k04', 'en', 1, 'https://ror.org/01vpa2k04 U.S. Army Medical Center of Excellence'),
(108717, 'https://ror.org/00cdteb39', 'de', 1, 'https://ror.org/00cdteb39 Kanton Zürich'),
(108718, 'https://ror.org/01ryg1n93', 'pt', 1, 'https://ror.org/01ryg1n93 Laboratório de Ciências Forenses e Psicológicas Egas Moniz'),
(108719, 'https://ror.org/04jc3ew84', 'en', 1, 'https://ror.org/04jc3ew84 Dracaena Draco Research Farm Melbourne'),
(108720, 'https://ror.org/00a61zv30', 'pt', 1, 'https://ror.org/00a61zv30 Inova-Ria Associação de Empresas para uma Rede de Inovação em Aveiro'),
(108721, 'https://ror.org/02kgv1t61', 'ro', 1, 'https://ror.org/02kgv1t61 Stațiunea de Cercetare Dezvoltare pentru Legumicultură Buzău Vegetable Research and Development Station Buzău'),
(108722, 'https://ror.org/00zyx2j96', 'pt', 1, 'https://ror.org/00zyx2j96 Centro de Inovação da Mouraria'),
(108723, 'https://ror.org/03e75qp68', 'fr', 1, 'https://ror.org/03e75qp68 Immunologie anti-tumorale et immunothƩrapie des cancers Immunology of tumors and cancer immunotherapy'),
(108724, 'https://ror.org/0398ehz79', 'no_lang_code', 1, 'https://ror.org/0398ehz79 Uahuah Comércio Electrónico de Informação (Portugal) Uahuah Ecommerce of Information'),
(108725, 'https://ror.org/05pvn0w32', 'es', 1, 'https://ror.org/05pvn0w32 CeReGAS – Centro Regional para la Gestión de Aguas SubterrĆ”neas Centro Regional para la Gestión de Aguas SubterrĆ”neas en AmĆ©rica Latina y el Caribe Regional Centre for Groundwater Management for Latin America and the Caribbean'),
(108726, 'https://ror.org/054zcfj38', 'en', 1, 'https://ror.org/054zcfj38 International Centre for Water Hazard and Risk Management ę°“ē½å®³ćƒ»ćƒŖć‚¹ć‚Æćƒžćƒć‚øćƒ”ćƒ³ćƒˆå›½éš›ć‚»ćƒ³ć‚æ'),
(108727, 'https://ror.org/044k31203', 'pt', 1, 'https://ror.org/044k31203 Instituto Piaget'),
(108728, 'https://ror.org/00t2w7350', 'pt', 1, 'https://ror.org/00t2w7350 idD Portugal'),
(108729, 'https://ror.org/04c8v4y49', 'no_lang_code', 1, 'https://ror.org/04c8v4y49 Centro de Estudos Arnaldo AraĆŗjo'),
(108730, 'https://ror.org/029jy7238', 'en', 1, 'https://ror.org/029jy7238 Myriad USA'),
(108731, 'https://ror.org/03zfteg02', 'en', 1, 'https://ror.org/03zfteg02 Mental Health Authority'),
(108732, 'https://ror.org/02gs8md51', 'en', 1, 'https://ror.org/02gs8md51 International Competence Centre for Mining-Engineering Education, Russia ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ центр компетенций в горнотехническом образовании поГ ŃŠ³ŠøŠ“Š¾Š¹ Š®ŠŠ•Š”ŠšŠž'),
(108733, 'https://ror.org/03hdb9194', 'pt', 1, 'https://ror.org/03hdb9194 Centro de Investigação em Energia e Ambiente'),
(108734, 'https://ror.org/023x52d96', 'pt', 1, 'https://ror.org/023x52d96 Valoriza Centro de Investigação para a Valorização de Recursos Endógenos'),
(108735, 'https://ror.org/03m21w409', 'en', 1, 'https://ror.org/03m21w409 National Blood Transfusion Service'),
(108736, 'https://ror.org/05d8e6004', 'es', 1, 'https://ror.org/05d8e6004 Fundación Escuela Tecnológica de Neiva'),
(108737, 'https://ror.org/04c2tm284', 'fr', 1, 'https://ror.org/04c2tm284 AC Echo : Analyse CentralisĆ©e Ɖchocardiographique en imagerie cardiovasculaire'),
(108738, 'https://ror.org/01y55wc83', 'pt', 1, 'https://ror.org/01y55wc83 Centro de Estudos Interdisciplinares do SƩculo XX'),
(108739, 'https://ror.org/058y9e160', 'pt', 1, 'https://ror.org/058y9e160 Pólo da Madeira do Centro de Ciências do Mar e do Ambiente'),
(108740, 'https://ror.org/03abrgd14', 'en', 1, 'https://ror.org/03abrgd14 Centre de Recerca Ecològica i Aplicacions Forestals Centre for Research on Ecology and Forestry Applications Centro de Investigación Ecológica y Aplicaciones Forestales'),
(108741, 'https://ror.org/03f7dts09', 'en', 1, 'https://ror.org/03f7dts09 Jesselton University College Kolej Universiti Jesselton'),
(108742, 'https://ror.org/03q59sw07', 'en', 1, 'https://ror.org/03q59sw07 World Association for Positive and Transcultural Psychotherapy World Association for Positive and Transcultural Psychotherapy (WAPP) World Association for Positive and Transcultural Psychotherapy e.V. (WAPP)'),
(108743, 'https://ror.org/04v2jp439', 'pt', 1, 'https://ror.org/04v2jp439 Fundação Serra Henriques Serra Henriques Foundation'),
(108744, 'https://ror.org/027xhdf25', 'en', 1, 'https://ror.org/027xhdf25 Mary Baldwin University'),
(108745, 'https://ror.org/04t35mq24', 'fr', 1, 'https://ror.org/04t35mq24 Laboratoire de GƩnie des ProcƩdƩs et MatƩriaux'),
(108746, 'https://ror.org/03m8e6y67', 'es', 1, 'https://ror.org/03m8e6y67 Hospital El Salvador'),
(108747, 'https://ror.org/04pz7b180', 'de', 1, 'https://ror.org/04pz7b180 Bundesministerium für Forschung, Technologie und Raumfahrt Federal Ministry of Research, Technology and Space'),
(108748, 'https://ror.org/0140d9d30', 'de', 1, 'https://ror.org/0140d9d30 SWILD - Stadtƶkologie, Wildtierforschung, Kommunikation SWILD - Urban Ecology & Wildlife Research'),
(108749, 'https://ror.org/031q4ft47', 'pt', 1, 'https://ror.org/031q4ft47 Fundação LIGA'),
(108750, 'https://ror.org/02631h019', 'no_lang_code', 1, 'https://ror.org/02631h019 Lightbook Livroluz (Portugal)'),
(108751, 'https://ror.org/02z8r0s95', 'fr', 1, 'https://ror.org/02z8r0s95 Fondation HaĆÆtienne de DiabĆØte et de Maladies Cardio-Vasculaires Haitian Diabetes and Cardiovascular Disease Foundation'),
(108752, 'https://ror.org/036k3ee35', 'en', 0, 'https://ror.org/036k3ee35 Windesheim Flevoland'),
(108753, 'https://ror.org/026cgcq38', 'pt', 1, 'https://ror.org/026cgcq38 Health Cluster Portugal'),
(108754, 'https://ror.org/056d27308', 'en', 1, 'https://ror.org/056d27308 Manomet Conservation Sciences'),
(108755, 'https://ror.org/05ebxsr90', 'fr', 1, 'https://ror.org/05ebxsr90 Chimie Physique et Chimie du Vivant'),
(108756, 'https://ror.org/054kb3y86', 'en', 1, 'https://ror.org/054kb3y86 Jordan Center for Disease Control Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł…ŁƒŲ§ŁŲ­Ų© Ų§Ł„Ų§ŁˆŲØŲ¦Ų© ŁˆŲ§Ł„Ų§Ł…Ų±Ų§Ų¶ Ų§Ł„Ų³Ų§Ų±ŁŠŲ©'),
(108757, 'https://ror.org/00vxrhz27', 'en', 1, 'https://ror.org/00vxrhz27 Dataking Consulting Dataking Consulting (Ghana)'),
(108758, 'https://ror.org/00e37es74', 'en', 1, 'https://ror.org/00e37es74 WiseThorough (Portugal) WiseThorough Urban Creativity'),
(108759, 'https://ror.org/02vk1k895', 'en', 1, 'https://ror.org/02vk1k895 Fezzan University لجامعة فزان'),
(108760, 'https://ror.org/04ttwvv57', 'pt', 1, 'https://ror.org/04ttwvv57 Fundação Eugénio de Almeida'),
(108761, 'https://ror.org/03bzaxf53', 'no_lang_code', 1, 'https://ror.org/03bzaxf53 NBP Produção em Vídeo (Portugal) NBP Produção em Vídeo, S.A. NBP Video Production'),
(108762, 'https://ror.org/02grjkp95', 'en', 1, 'https://ror.org/02grjkp95 KSCSTE - Institute for Climate Change Studies'),
(108763, 'https://ror.org/04vnthv83', 'en', 1, 'https://ror.org/04vnthv83 B.V. Raju College'),
(108764, 'https://ror.org/05b793h63', 'fr', 1, 'https://ror.org/05b793h63 Histoire des technosciences en sociƩtƩ'),
(108765, 'https://ror.org/0584vrv37', 'pt', 1, 'https://ror.org/0584vrv37 Centre of Applied Research in Management and Economics Centro de Investigação Aplicada em Gestão e Economia'),
(108766, 'https://ror.org/01jfz6618', 'en', 1, 'https://ror.org/01jfz6618 Bangladesh Bioethics Society বাংলাদেশ ą¦¬ą¦¾ą¦Æą¦¼ą§‹ą¦ą¦„ą¦æą¦•ą§ą¦ø ą¦øą§‹ą¦øą¦¾ą¦‡ą¦Ÿą¦æ ą¦¬ą¦æą¦¬ą¦æą¦ą¦ø'),
(108767, 'https://ror.org/00q2tt650', 'en', 1, 'https://ror.org/00q2tt650 National Supercomputing Center in Jinan å›½å®¶č¶…ēŗ§č®”ē®—ęµŽå—äø­åæƒ'),
(108768, 'https://ror.org/02da7q954', 'en', 1, 'https://ror.org/02da7q954 Nirmala College for Women ą®Øą®æą®°ąÆą®®ą®²ą®¾ ą®®ą®•ą®³ą®æą®°ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(108769, 'https://ror.org/04dyzk191', 'en', 1, 'https://ror.org/04dyzk191 Islamic Azad University, Aras Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§Ų±Ų³'),
(108770, 'https://ror.org/01kzn7k21', 'en', 1, 'https://ror.org/01kzn7k21 Islamic Azad University, Tehran دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ'),
(108771, 'https://ror.org/00yks7c94', 'sr', 1, 'https://ror.org/00yks7c94 ITS - Visoka Ŕkola strukovnih studija za informacione tehnologije Visoka Ŕkola strukovnih studija za informacione tehnologije - ITS'),
(108772, 'https://ror.org/0141vgj39', 'en', 1, 'https://ror.org/0141vgj39 Katanov Khakass State University Єакасский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š. Ф. ŠšŠ°Ń‚Š°Š½Š¾Š²Š°'),
(108773, 'https://ror.org/005xxh676', 'en', 1, 'https://ror.org/005xxh676 IPDT Tourism (Portugal)'),
(108774, 'https://ror.org/01n4pqe45', 'ca', 1, 'https://ror.org/01n4pqe45 Agencia de Gestión de Ayudas Universitarias y de Investigación Agència de Gestió d''Ajuts Universitaris i de Recerca'),
(108775, 'https://ror.org/00sxx6887', 'pt', 1, 'https://ror.org/00sxx6887 Centro Interdisciplinar de Estudo da Performance Humana Interdisciplinary Center for the Study of Human Performance'),
(108776, 'https://ror.org/01fyg2222', 'no_lang_code', 1, 'https://ror.org/01fyg2222 Seber Portuguesa FarmacĆŖutica (Portugal) Seber Portuguese Pharmaceutical'),
(108777, 'https://ror.org/03n6nwv02', 'es', 1, 'https://ror.org/03n6nwv02 Universidad Politécnica de Madrid Universidade Politécnica de Madrid Universitat Politècnica de Madrid'),
(108778, 'https://ror.org/00fwme054', 'pt', 1, 'https://ror.org/00fwme054 Centre for Organizational and Social Studies Centro de Estudos Organizacionais e Sociais'),
(108779, 'https://ror.org/00gb8xr35', 'en', 1, 'https://ror.org/00gb8xr35 Centre for Water Law, Policy and Science UNESCO Centre for Water Law, Policy and Science'),
(108780, 'https://ror.org/02gf21x28', 'en', 1, 'https://ror.org/02gf21x28 International Federation for Systems Research'),
(108781, 'https://ror.org/03ef0j886', 'fr', 1, 'https://ror.org/03ef0j886 Analyse molƩculaire, modƩlisation et imagerie de la maladie cancƩreuse'),
(108782, 'https://ror.org/038b18w37', 'pt', 1, 'https://ror.org/038b18w37 Centro de Informação e Vigilância Sismovulcânica dos Açores'),
(108783, 'https://ror.org/04v86h471', 'pt', 1, 'https://ror.org/04v86h471 IPN Incubator Incubadora Associação para o Desenvolvimento de Actividades de Incubação de Ideias e Empresas'),
(108784, 'https://ror.org/01f2qa203', 'es', 1, 'https://ror.org/01f2qa203 Centro Nacional de Ɓreas Protegidas'),
(108785, 'https://ror.org/028paz341', 'en', 1, 'https://ror.org/028paz341 Central and Northern California Ocean Observing System'),
(108786, 'https://ror.org/00a7zdw53', 'en', 1, 'https://ror.org/00a7zdw53 Artificial Engineering Artificial Engineering (Italy)'),
(108787, 'https://ror.org/036dwbr90', 'en', 1, 'https://ror.org/036dwbr90 Geological Survey of Norway NGU, Noregs geologiske undersĆøking NGU, Norges geologiske undersĆøkelse'),
(108788, 'https://ror.org/03ar63e27', 'en', 1, 'https://ror.org/03ar63e27 Bangladesh Institute of Capital Market'),
(108789, 'https://ror.org/03sf55932', 'en', 1, 'https://ror.org/03sf55932 Badji Mokhtar-Annaba University UniversitĆ© Badji Mokhtar-Annaba Ų¬Ų§Ł…Ų¹Ų© باجي Ł…Ų®ŲŖŲ§Ų±-عنابة'),
(108790, 'https://ror.org/04gac9b55', 'en', 1, 'https://ror.org/04gac9b55 Learning Transitions'),
(108791, 'https://ror.org/0311zp875', 'no_lang_code', 1, 'https://ror.org/0311zp875 Ginkgo Bioworks, Inc. Ginkgo Bioworks, Inc. (United States)'),
(108792, 'https://ror.org/00keh9s20', 'no_lang_code', 1, 'https://ror.org/00keh9s20 Consiglio Nazionale delle Ricerche - Istituto di Ricerca sugli Ecosistemi Terrestri'),
(108793, 'https://ror.org/04nmpkv11', 'pt', 1, 'https://ror.org/04nmpkv11 Hospital da Luz Coimbra'),
(108794, 'https://ror.org/0200mm479', 'en', 1, 'https://ror.org/0200mm479 African Regional Centre for Ecohydrology'),
(108795, 'https://ror.org/03j2hqv95', 'no_lang_code', 1, 'https://ror.org/03j2hqv95 Sourcecode Investigação Unipessoal (Portugal) Sourcecode Research Sole Proprietorship'),
(108796, 'https://ror.org/02ycs5538', 'en', 1, 'https://ror.org/02ycs5538 Parkinson''s Research and Education Foundation Parkinson’s & Alzheimer’s Research and Education Foundation'),
(108797, 'https://ror.org/00dks4e03', 'en', 1, 'https://ror.org/00dks4e03 Asgar Ali Hospital'),
(108798, 'https://ror.org/027hswj27', 'no_lang_code', 1, 'https://ror.org/027hswj27 Grupo LusĆ­adas SaĆŗde Grupo LusĆ­adas SaĆŗde (Portugal) Lusiadas Health Group'),
(108799, 'https://ror.org/04jjpxe06', 'en', 1, 'https://ror.org/04jjpxe06 Bangladesh Atomic Energy Regulatory Authority বাংলাদেশ পরমাণু ą¦¶ą¦•ą§ą¦¤ą¦æ ą¦Øą¦æą§Ÿą¦Øą§ą¦¤ą§ą¦°ą¦£ ą¦•ą¦°ą§ą¦¤ą§ƒą¦Ŗą¦•ą§ą¦·'),
(108800, 'https://ror.org/02w0ma450', 'en', 1, 'https://ror.org/02w0ma450 Agence de l''eau du Canada Canada Water Agency'),
(108801, 'https://ror.org/017pvbx14', 'es', 1, 'https://ror.org/017pvbx14 CIVE - Clínica Internacional De La Visión De Ecuador Clínica Internacional De La Visión De Ecuador'),
(108802, 'https://ror.org/058yhnv51', 'en', 1, 'https://ror.org/058yhnv51 Central Asian Regional Glaciological Centre ŠžŃ€Ń‚Š°Š»Ń‹Ņ› ŠŠ·ŠøŃ Өңірлік Š³Š»ŃŃ†ŠøŠ¾Š»Š¾Š³ŠøŃŠ»Ń‹Ņ› ŠžŃ€Ń‚Š°Š»Ń‹Ņ“Ń‹'),
(108803, 'https://ror.org/00ck4kx95', 'es', 1, 'https://ror.org/00ck4kx95 Centro del Agua para Zonas Ɓridas y SemiƔridas de AmƩrica Latina y el Caribe Water Centre for Arid and Semi-arid Zones of Latin America and the Caribbean'),
(108804, 'https://ror.org/0378szg41', 'fr', 1, 'https://ror.org/0378szg41 Djillali Liabes University Sidi Bel AbbĆØs UniversitĆ© Djilali de Sidi Bel AbbĆØs Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ„Ų§Ł„ŁŠ Ł„ŁŠŲ§ŲØŲ³ سيدي بلعباس - Ų¬Ł…ŁŠŲ¹ Ų§Ł„Ų­Ł‚ŁˆŁ‚ Ł…Ų­ŁŁˆŲøŲ©'),
(108805, 'https://ror.org/04h50g296', 'es', 1, 'https://ror.org/04h50g296 Instituto de Antropología de Córdoba'),
(108806, 'https://ror.org/04nmsb180', 'no_lang_code', 1, 'https://ror.org/04nmsb180 Partnia (Portugal)'),
(108807, 'https://ror.org/00e3rec75', 'no_lang_code', 1, 'https://ror.org/00e3rec75 HUBER Diffraktionstechnik GmbH & Co. KG HUBER Diffraktionstechnik GmbH & Co. KG (Germany)'),
(108808, 'https://ror.org/0032wgp28', 'en', 1, 'https://ror.org/0032wgp28 Islamic Azad University Sari Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ساری'),
(108809, 'https://ror.org/02znfhp50', 'pt', 1, 'https://ror.org/02znfhp50 Instituto Federal de Educação Ciência e Tecnologia do ParanÔ Instituto Federal do ParanÔ ParanÔ Federal Institute of Education, Science and Technology'),
(108810, 'https://ror.org/04a9e1d62', 'id', 1, 'https://ror.org/04a9e1d62 Sekolah Tinggi Ilmu Ekonomi IBEK Pangkalpinang'),
(108811, 'https://ror.org/0134qgb15', 'en', 1, 'https://ror.org/0134qgb15 West African Science Service Centre on Climate Change and Adapted Land Use'),
(108812, 'https://ror.org/04h4z8k05', 'en', 1, 'https://ror.org/04h4z8k05 Organisation des Nations Unies pour l''Ɖducation, la Science et la Culture UNESCO United Nations Educational, Scientific and Cultural Organization'),
(108813, 'https://ror.org/05g772c20', 'pt', 1, 'https://ror.org/05g772c20 Biblioteca Geral da Universidade de Coimbra'),
(108814, 'https://ror.org/04rc9d057', 'en', 1, 'https://ror.org/04rc9d057 Institute of Geophysics Polish Academy of Sciences Instytut Geofizyki PAN Instytut Geofizyki Polskiej Akademii Nauk'),
(108815, 'https://ror.org/050ebfn24', 'en', 1, 'https://ror.org/050ebfn24 National Center for Educational Research and Development Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł‚ŁˆŁ…ŁŠ Ł„Ł„ŲØŲ­ŁˆŲ« Ų§Ł„ŲŖŲ±ŲØŁˆŁŠŲ© ŁˆŲ§Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(108816, 'https://ror.org/0412bhr24', 'pt', 1, 'https://ror.org/0412bhr24 UACOOPERA'),
(108817, 'https://ror.org/04tezbw68', 'no_lang_code', 1, 'https://ror.org/04tezbw68 Hub de Negócios de Impacto Português Impact Hub Lisbon (Portugal)'),
(108818, 'https://ror.org/050dkka69', 'cs', 1, 'https://ror.org/050dkka69 CESNET, zÔjmové sdružení prÔvnických osob'),
(108819, 'https://ror.org/012avmg86', 'en', 1, 'https://ror.org/012avmg86 Atria University'),
(108820, 'https://ror.org/05tt55065', 'en', 1, 'https://ror.org/05tt55065 Departement Mobiliteit en Openbare Werken Department Mobility and Public Works'),
(108821, 'https://ror.org/00g325k81', 'en', 1, 'https://ror.org/00g325k81 University of Veterinary and Animal Sciences ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŁˆŪŒŁ¹Ų±Ł†Ų±ŪŒ Ų§ŪŒŁ†Śˆ Ų§ŪŒŁ†ŪŒŁ…Ł„ سائنسز'),
(108822, 'https://ror.org/03dnnmg11', 'en', 1, 'https://ror.org/03dnnmg11 Quantic School of Business and Technology'),
(108823, 'https://ror.org/00c9yng40', 'pt', 1, 'https://ror.org/00c9yng40 Centre for Management Studies of Instituto Superior Técnico Centro de Estudos de Gestão'),
(108824, 'https://ror.org/04p491231', 'en', 1, 'https://ror.org/04p491231 Pennsylvania State University Universidad Estatal de Pensilvania UniversitĆ© d''Ɖtat de Pennsylvanie'),
(108825, 'https://ror.org/05jw2mx52', 'de', 1, 'https://ror.org/05jw2mx52 BG Klinikum Hamburg'),
(108826, 'https://ror.org/01b11d975', 'en', 1, 'https://ror.org/01b11d975 Iranian Light Source Facility'),
(108827, 'https://ror.org/05kaje043', 'pt', 1, 'https://ror.org/05kaje043 Business Research Unit Unidade de Investigação em Desenvolvimento Empresarial'),
(108828, 'https://ror.org/0075yd342', 'no_lang_code', 1, 'https://ror.org/0075yd342 Fresh Ideas Design and Multimedia Ideias Frescas Design e MultimƩdia (Portugal)'),
(108829, 'https://ror.org/01jn7qf49', 'ca', 1, 'https://ror.org/01jn7qf49 Departament d''Empresa i Treball Departamento de Empresa y Conocimiento, Generalidad de CataluƱa Ministry of Business and Knowledge, Government of Catalonia'),
(108830, 'https://ror.org/043j0f473', 'en', 1, 'https://ror.org/043j0f473 Deutsches Zentrum für Neurodegenerative Erkrankungen German Center for Neurodegenerative Diseases'),
(108831, 'https://ror.org/00f5fa103', 'en', 1, 'https://ror.org/00f5fa103 Ocean First Institute'),
(108832, 'https://ror.org/012zh9h13', 'en', 1, 'https://ror.org/012zh9h13 Institut de Recerca i Tecnologia AgroalimentĆ ries Institute of Agrifood Research and Technology'),
(108833, 'https://ror.org/00mbmxf83', 'pt', 1, 'https://ror.org/00mbmxf83 Centro de Investigação em Educação'),
(108834, 'https://ror.org/059x9zv24', 'no_lang_code', 1, 'https://ror.org/059x9zv24 Letras e Livros Bookshop Letras e Livros Livraria (Portugal)'),
(108835, 'https://ror.org/055tcab57', 'no_lang_code', 0, 'https://ror.org/055tcab57 In-Uteis Design In-Uteis Design (Portugal)'),
(108836, 'https://ror.org/01a9g9931', 'no_lang_code', 1, 'https://ror.org/01a9g9931 MinistƩrio das FinanƧas (Portugal) Portuguese Republic Government Ministry of Finance'),
(108837, 'https://ror.org/05tngq747', 'es', 1, 'https://ror.org/05tngq747 CIATEQ'),
(108838, 'https://ror.org/04zmc0e16', 'en', 1, 'https://ror.org/04zmc0e16 Windesheim Windesheim University of Applied Sciences'),
(108839, 'https://ror.org/0166xf875', 'sk', 1, 'https://ror.org/0166xf875 National Institute of Children’s Diseases NĆ”rodný Ćŗstav detských chorĆ“b'),
(108840, 'https://ror.org/024n8kn26', 'en', 1, 'https://ror.org/024n8kn26 Land and Forest Iceland Land og skógur'),
(108841, 'https://ror.org/01th9t868', 'pt', 1, 'https://ror.org/01th9t868 Instituto para o Desenvolvimento AgrÔrio da Região Norte'),
(108842, 'https://ror.org/00vnmde96', 'en', 1, 'https://ror.org/00vnmde96 Aqua Kompetanse AS Aqua Kompetanse AS (Norway)'),
(108843, 'https://ror.org/04g07g074', 'en', 1, 'https://ror.org/04g07g074 Radiation Protection, Safety, Dismantling engineering ingénierie Radioprotection Sûreté Démantèlement'),
(108844, 'https://ror.org/009m4mk40', 'en', 1, 'https://ror.org/009m4mk40 One Hundred Seventy-Ninth School Š“Š‘ŠžŠ£ "Школа ā„–179"'),
(108845, 'https://ror.org/04r3v4q69', 'en', 1, 'https://ror.org/04r3v4q69 International House Coimbra - Olivais | Santa Clara'),
(108846, 'https://ror.org/03fjwmt07', 'pt', 1, 'https://ror.org/03fjwmt07 Group for Lasers and Plasmas Grupo de Lasers e Plasmas'),
(108847, 'https://ror.org/0260bjh30', 'fr', 1, 'https://ror.org/0260bjh30 Laboratoire des Agroressources, BiomolĆ©cules et Chimie pour l’Innovation en SantĆ©'),
(108848, 'https://ror.org/05hbxqw22', 'no_lang_code', 1, 'https://ror.org/05hbxqw22 Pmlopes Consulting and Training in Cultural Activities Sole Proprietorship Pmlopes Consultoria e Formação em Actividades Culturais Unipessoal (Portugal)'),
(108849, 'https://ror.org/01d7kqy13', 'pt', 1, 'https://ror.org/01d7kqy13 Centro de Reabilitação de Paralisia Cerebral do Porto'),
(108850, 'https://ror.org/05pv75449', 'fr', 1, 'https://ror.org/05pv75449 Psychiatrie-ComorbiditƩs-Addictions'),
(108851, 'https://ror.org/03rvzaf62', 'pt', 1, 'https://ror.org/03rvzaf62 Escola Superior de Música e das Artes do EspectÔculo'),
(108852, 'https://ror.org/00kbtzj92', 'en', 1, 'https://ror.org/00kbtzj92 Behavioral Science Research Institute, Inc.'),
(108853, 'https://ror.org/04vgsxx78', 'en', 1, 'https://ror.org/04vgsxx78 International Research and Training Centre on Urban Drainage'),
(108854, 'https://ror.org/02gnbsh21', 'en', 1, 'https://ror.org/02gnbsh21 Switzerland Innovation Park Biel/Bienne'),
(108855, 'https://ror.org/00pbmyh42', 'es', 1, 'https://ror.org/00pbmyh42 Centro Universitario San Isidoro'),
(108856, 'https://ror.org/013nwbx64', 'pt', 1, 'https://ror.org/013nwbx64 Fundação Montepio'),
(108857, 'https://ror.org/051jbqs24', 'no_lang_code', 1, 'https://ror.org/051jbqs24 Relato LouvƔvel (Portugal)'),
(108858, 'https://ror.org/00byfqq14', 'no_lang_code', 1, 'https://ror.org/00byfqq14 Buchholz Bookshop Livraria Buchholz (Portugal)'),
(108859, 'https://ror.org/03m5hm687', 'no_lang_code', 1, 'https://ror.org/03m5hm687 Sinora Industrial Synthetics Sinora SintƩticos Industriais (Portugal) Sinora SintƩticos Industriais, S.A.'),
(108860, 'https://ror.org/041awyd76', 'en', 1, 'https://ror.org/041awyd76 Hellenic Air Force Academy Σχολη Ικαρων'),
(108861, 'https://ror.org/01vm69c87', 'en', 1, 'https://ror.org/01vm69c87 Departement van Bosbou, Visserye en die Omgewing Department of Forestry, Fisheries and the Environment ISebe lezamaHlathi, ezokuLoba noKusingqongileyo Kgoro ya Kagodikgwa, Boreadihlapi le Tikologo Lefapha la Dikgwa, Ditlhapi le Tikologo Lefapha la Meru, Indasteri ya DitlhapiBotshwasi le Tikoloho Litiko Letemahlatsi, Tinhlanti Netemvelo Muhasho wa zwa Vhusima-maįø“aka, Vhurakhovhe na Mupo Ndzawulo ya Swihlahla, swa Tinhlampfi na Mbango OmNyango wezamaHlathi, iinHlambi neBhoduluko uMnyango Wezamahlathi, Ezokudoba Nezemvelo'),
(108862, 'https://ror.org/039rg7508', 'en', 1, 'https://ror.org/039rg7508 Shiv Nadar University, Chennai'),
(108863, 'https://ror.org/05gmfdj98', 'no', 0, 'https://ror.org/05gmfdj98 NĆøtterĆøy Kommune'),
(108864, 'https://ror.org/0541t3460', 'no_lang_code', 1, 'https://ror.org/0541t3460 BETAR Group Grupo BETAR (Portugal)'),
(108865, 'https://ror.org/01gkfbh21', 'pt', 1, 'https://ror.org/01gkfbh21 Fundação Ensino e Cultura Fernando Pessoa'),
(108866, 'https://ror.org/028h22z81', 'pt', 1, 'https://ror.org/028h22z81 Ponteditora'),
(108867, 'https://ror.org/00990e921', 'de', 1, 'https://ror.org/00990e921 Sigmund Freud Private University - Campus Milano Sigmund Freud PrivatuniversitƤt - Standort Mailand'),
(108868, 'https://ror.org/01red3556', 'en', 1, 'https://ror.org/01red3556 East Texas A&M University'),
(108869, 'https://ror.org/02arhc230', 'no_lang_code', 1, 'https://ror.org/02arhc230 Montepio Geral-Associação Mutualista Montepio Geral-Associação Mutualista (Portugal) Montepio Group'),
(108870, 'https://ror.org/008gy9p72', 'de', 1, 'https://ror.org/008gy9p72 Bayerische Akademie für Naturschutz und Landschaftspflege'),
(108871, 'https://ror.org/03wbt1f24', 'ca', 1, 'https://ror.org/03wbt1f24 Institut de Política Econòmica i Governança Institute of Political Economy and Governance'),
(108872, 'https://ror.org/0571r1m86', 'es', 1, 'https://ror.org/0571r1m86 Hospital Juan Domingo Perón, Tartagal'),
(108873, 'https://ror.org/01e26yv04', 'fr', 1, 'https://ror.org/01e26yv04 SURDI.AD : SurditƩs neurosensorielles complexes et rƩhabilitation de l''audition chez l''adulte'),
(108874, 'https://ror.org/0561a3s31', 'en', 1, 'https://ror.org/0561a3s31 University of St.Gallen UniversitƠ di San Gallo UniversitƤt St.Gallen UniversitƩ de Saint-Gall'),
(108875, 'https://ror.org/02j6sxc30', 'no_lang_code', 1, 'https://ror.org/02j6sxc30 Cruz VilaƧa & Associados - Law Firm SP RL Cruz VilaƧa & Associados - Sociedade de Advogados SP RL (Portugal)'),
(108876, 'https://ror.org/03c86ca21', 'no_lang_code', 1, 'https://ror.org/03c86ca21 S2Innovation Sp. z o. o. [ltd.] S2Innovation Sp. z o. o. [ltd.] (Poland)'),
(108877, 'https://ror.org/01bdy0k56', 'en', 1, 'https://ror.org/01bdy0k56 Maryland Quantum Materials Center'),
(108878, 'https://ror.org/02ef88m96', 'en', 1, 'https://ror.org/02ef88m96 Centre commun de recherche Gemeinsame Forschungsstelle Joint Research Center'),
(108879, 'https://ror.org/00gt6pp04', 'en', 1, 'https://ror.org/00gt6pp04 University of Health Sciences Lahore ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŪŪŒŁ„ŲŖŚ¾ Ų³Ų§Ų¦ŪŒŁ†Ų³ Ł„Ų§ŪŁˆŲ±ā€Ž'),
(108880, 'https://ror.org/01zj5sk64', 'fr', 1, 'https://ror.org/01zj5sk64 Institut droit Ʃthique patrimoine'),
(108881, 'https://ror.org/005cmms77', 'en', 1, 'https://ror.org/005cmms77 CancerCare Manitoba'),
(108882, 'https://ror.org/04t0chd16', 'no_lang_code', 1, 'https://ror.org/04t0chd16 Livraria Minho Ferreira e Salgado (Portugal) Minho Bookshop'),
(108883, 'https://ror.org/00131es19', 'pt', 1, 'https://ror.org/00131es19 Centro de Estudos Interculturais'),
(108884, 'https://ror.org/02zk23548', 'pt', 1, 'https://ror.org/02zk23548 Instituto PortuguĆŖs de Fotografia'),
(108885, 'https://ror.org/043b21242', 'no_lang_code', 1, 'https://ror.org/043b21242 Laboratório Normal Produtos Farmacêuticos (Portugal) Normal Laboratory Pharmaceutical Products'),
(108886, 'https://ror.org/05fkq5j19', 'pt', 1, 'https://ror.org/05fkq5j19 Centro de Investigação em Ciência Psicológica Research Center for Psychological Science'),
(108887, 'https://ror.org/05j5mt352', 'no_lang_code', 1, 'https://ror.org/05j5mt352 IQVIA (Portugal)'),
(108888, 'https://ror.org/02dqhhq58', 'en', 1, 'https://ror.org/02dqhhq58 Regional Centre for Shared Aquifer Resources Management'),
(108889, 'https://ror.org/00a775j83', 'en', 1, 'https://ror.org/00a775j83 Welsh Blood Service'),
(108890, 'https://ror.org/03wnawg76', 'en', 1, 'https://ror.org/03wnawg76 IRELEC IRELEC (FRANCE)'),
(108891, 'https://ror.org/03g0h0k24', 'ca', 1, 'https://ror.org/03g0h0k24 Institut CatalĆ  de les Dones'),
(108892, 'https://ror.org/039bqpr70', 'no_lang_code', 1, 'https://ror.org/039bqpr70 Insia Information systems Insia Sistemas de Informação (Portugal)'),
(108893, 'https://ror.org/04rkgkn20', 'en', 1, 'https://ror.org/04rkgkn20 Ministry of Health'),
(108894, 'https://ror.org/034b4g685', 'no_lang_code', 1, 'https://ror.org/034b4g685 Nuclear Research and Consultancy Group'),
(108895, 'https://ror.org/028hx1067', 'uz', 1, 'https://ror.org/028hx1067 Institute of Scientific Research of Physical Education and Sport Jismoniy tarbiya va sport ilmiy tadqiqotlar instituti'),
(108896, 'https://ror.org/017gpzf77', 'pt', 1, 'https://ror.org/017gpzf77 Santa Casa da Misericórdia de Fafe'),
(108897, 'https://ror.org/02ht1tz09', 'en', 1, 'https://ror.org/02ht1tz09 Molecular Microbiology'),
(108898, 'https://ror.org/03azxga02', 'en', 1, 'https://ror.org/03azxga02 Nebraska Medical Center'),
(108899, 'https://ror.org/050xe8986', 'en', 1, 'https://ror.org/050xe8986 Guimaras State University Kolehiyong Estatal ng Guimaras'),
(108900, 'https://ror.org/052vhkx86', 'en', 1, 'https://ror.org/052vhkx86 University of Africa Toru-Orua'),
(108901, 'https://ror.org/0583fqk10', 'fr', 1, 'https://ror.org/0583fqk10 UniversitƩ des Antilles PƓle Martinique'),
(108902, 'https://ror.org/03p14d497', 'en', 1, 'https://ror.org/03p14d497 University of Augsburg UniversitƤt Augsburg'),
(108903, 'https://ror.org/05pwqr258', 'fr', 1, 'https://ror.org/05pwqr258 Interactions Cellules souches-niches: physiologie, tumeurs et rƩparation tissulaire'),
(108904, 'https://ror.org/03mshhe73', 'fr', 1, 'https://ror.org/03mshhe73 Models of Malignant and Therapeutic Stem Cells Modèles de cellules souches malignes et thérapeutiques'),
(108905, 'https://ror.org/01pspve98', 'pt', 1, 'https://ror.org/01pspve98 Instituto PortuguĆŖs do Ritmo CardĆ­aco'),
(108906, 'https://ror.org/05775sm20', 'pt', 1, 'https://ror.org/05775sm20 Fundação Casa da Música'),
(108907, 'https://ror.org/02napb987', 'pt', 1, 'https://ror.org/02napb987 Center of Applied Economic Studies of the Atlantic Centro de Estudos de Economia Aplicada do Atlântico'),
(108908, 'https://ror.org/010twtk45', 'en', 1, 'https://ror.org/010twtk45 Sadiya College'),
(108909, 'https://ror.org/00wpg9430', 'en', 1, 'https://ror.org/00wpg9430 TCC International Centre for Innovation, Manufacturing, Technology Transfer and Entrepreneurship, KNUST, Kumasi'),
(108910, 'https://ror.org/02whw0x72', 'en', 1, 'https://ror.org/02whw0x72 Pluto Educational Trust'),
(108911, 'https://ror.org/02ynn6218', 'de', 1, 'https://ror.org/02ynn6218 Sigmund Freud Private University - Campus Berlin Sigmund Freud PrivatuniversitƤt - Standort Berlin'),
(108912, 'https://ror.org/04hskk338', 'en', 1, 'https://ror.org/04hskk338 (주)ė™ė‚Øģ˜ķ™”ķ•™ģ—°źµ¬ģ›ģ€ Southeast Medi-Chem Institute Southeast Medi-Chem Institute (South Korea)'),
(108913, 'https://ror.org/05c0n7t28', 'fr', 1, 'https://ror.org/05c0n7t28 Laboratoire d''Analyse et de Prospective Economiques'),
(108914, 'https://ror.org/033y26782', 'no_lang_code', 1, 'https://ror.org/033y26782 Mitsubishi Electric (Japan) äø‰č±é›»ę©Ÿ'),
(108915, 'https://ror.org/02gnwjv43', 'en', 1, 'https://ror.org/02gnwjv43 State Key Laboratory for Spintronic Devices and Technologies'),
(108916, 'https://ror.org/00r0fgm05', 'en', 1, 'https://ror.org/00r0fgm05 Arab Planning Institute المعهد Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ł„ŲŖŲ®Ų·ŁŠŲ·'),
(108917, 'https://ror.org/0300qkv14', 'en', 1, 'https://ror.org/0300qkv14 Zanzibar Health Research Institute (ZAHRI)'),
(108918, 'https://ror.org/04qatz820', 'es', 1, 'https://ror.org/04qatz820 Instituto de Investigación de Vivienda y HÔbitat'),
(108919, 'https://ror.org/04a1wt724', 'pt', 1, 'https://ror.org/04a1wt724 Oficina de Transferência de Tecnologia Inovação e Conhecimento'),
(108920, 'https://ror.org/02w5kge70', 'en', 1, 'https://ror.org/02w5kge70 IES-Social Business School'),
(108921, 'https://ror.org/04tkj7h48', 'pt', 1, 'https://ror.org/04tkj7h48 Instituto do Cinema e do Audiovisual'),
(108922, 'https://ror.org/02qzfnk68', 'pt', 1, 'https://ror.org/02qzfnk68 Instituto Pedro Nunes'),
(108923, 'https://ror.org/04ac5jv08', 'en', 0, 'https://ror.org/04ac5jv08 Saratov State Vavilov Agrarian University Даратовский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108924, 'https://ror.org/01bqt8g97', 'en', 1, 'https://ror.org/01bqt8g97 Long An University of Economics and Industry TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ CĆ“ng nghiệp Long An éš†å®‰å·„ę„­ē¶“ęæŸå¤§å­ø'),
(108925, 'https://ror.org/04r0g9114', 'fr', 1, 'https://ror.org/04r0g9114 Laboratoire d''Informatique de l''URCA'),
(108926, 'https://ror.org/01th0qt14', 'no_lang_code', 1, 'https://ror.org/01th0qt14 Prizmakat (Portugal)'),
(108927, 'https://ror.org/01j87z370', 'en', 1, 'https://ror.org/01j87z370 Junior Academy of Sciences Мала Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń наук України'),
(108928, 'https://ror.org/01d8vw515', 'en', 1, 'https://ror.org/01d8vw515 South China Institute of Frontier Science (Guangdong)'),
(108929, 'https://ror.org/01bpsk167', 'fr', 1, 'https://ror.org/01bpsk167 Centre de recherche sur le vieillissement Research Centre on Aging'),
(108930, 'https://ror.org/018bzp792', 'en', 1, 'https://ror.org/018bzp792 Hogeschool voor de Kunsten Utrecht University of the Arts Utrecht'),
(108931, 'https://ror.org/03xk32b06', 'en', 1, 'https://ror.org/03xk32b06 Oli Health Magazine Organization'),
(108932, 'https://ror.org/02y086m63', 'en', 1, 'https://ror.org/02y086m63 Admiralty University of Nigeria'),
(108933, 'https://ror.org/03e2dsv41', 'es', 1, 'https://ror.org/03e2dsv41 Instituto de Investigaciones en Humanidades y Ciencias Sociales'),
(108934, 'https://ror.org/017579j39', 'pt', 1, 'https://ror.org/017579j39 Centro de Sangue e da Transplantação de Lisboa Área Funcional do Sangue'),
(108935, 'https://ror.org/0091g1j61', 'en', 1, 'https://ror.org/0091g1j61 oDocs Eye Care Research Institute oDocs Eye Care Research Institute (New Zealand)'),
(108936, 'https://ror.org/021wj5r76', 'en', 1, 'https://ror.org/021wj5r76 National University of Tierra del Fuego Universidad Nacional de Tierra del Fuego, AntƔrtida e Islas del AtlƔntico Sur'),
(108937, 'https://ror.org/040wqw555', 'en', 1, 'https://ror.org/040wqw555 Central Agency for Public Mobilization & Statistics الجهاز Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ للتعبئة العامة ŁˆŲ§Ł„Ų„Ų­ŲµŲ§Ų”'),
(108938, 'https://ror.org/04nz36f20', 'fr', 1, 'https://ror.org/04nz36f20 Nova : inNOvation in NeuroVAscular diseases'),
(108939, 'https://ror.org/038y7fs10', 'no_lang_code', 1, 'https://ror.org/038y7fs10 Maia Dias - Consultório Médico (Portugal) Maia Dias - Medical Office Ltd'),
(108940, 'https://ror.org/00w9skz30', 'en', 1, 'https://ror.org/00w9skz30 International University of Erbil Ų¬Ų§Ł…Ų¹Ų© Ų§Ų±ŲØŁŠŁ„ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ų²Ų§Ł†ŁƒŪ†ŪŒ Ų¦Ł‡Ų±ŲØŪŒŁ„ŪŒ Ł†ŪŽŁˆŲÆŁ‡ŁˆŚµŁ‡ŲŖŪŒ'),
(108941, 'https://ror.org/012h1pw83', 'pt', 1, 'https://ror.org/012h1pw83 Unimais'),
(108942, 'https://ror.org/01p08rg37', 'uz', 1, 'https://ror.org/01p08rg37 Andijan State Technical Institute Andijon davlat texnika insituti АнГижанского Š³Š¾ŃŃƒŠ“арственного технического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š°'),
(108943, 'https://ror.org/04p7dfs72', 'fr', 1, 'https://ror.org/04p7dfs72 Ecole RĆ©gionale Postuniversitaire d’AmĆ©nagement et de Gestion intĆ©grĆ©s des ForĆŖts et Territoires tropicaux Regional Post-Graduate Training School on Integrated Management of Tropical Forests and Lands'),
(108944, 'https://ror.org/01m3ry316', 'es', 1, 'https://ror.org/01m3ry316 Centro de Producción e Investigación en Artes'),
(108945, 'https://ror.org/05tyrdn58', 'de', 1, 'https://ror.org/05tyrdn58 res publica Wissenschaftsverlag res publica Wissenschaftsverlag (Germany)'),
(108946, 'https://ror.org/01xx18q52', 'en', 1, 'https://ror.org/01xx18q52 NingboTech University 浙大宁波理巄学院'),
(108947, 'https://ror.org/000t1x690', 'en', 1, 'https://ror.org/000t1x690 International Centre for Water Security and Sustainable Management ģœ ė„¤ģŠ¤ģ½” 물 ģ•ˆė³“ źµ­ģ œģ—°źµ¬źµģœ”ģ„¼ķ„°'),
(108948, 'https://ror.org/03r3ww479', 'no_lang_code', 1, 'https://ror.org/03r3ww479 Grünenthal Group (Germany)'),
(108949, 'https://ror.org/026exqw73', 'no_lang_code', 1, 'https://ror.org/026exqw73 National Instruments (United States)'),
(108950, 'https://ror.org/01sdhtm90', 'en', 1, 'https://ror.org/01sdhtm90 Quezon City University'),
(108951, 'https://ror.org/038p71r52', 'pt', 1, 'https://ror.org/038p71r52 Centre for Research & Development in Mechanical Engineering Centro de Investigação e Desenvolvimento em Engenharia Mecânica'),
(108952, 'https://ror.org/027e56k73', 'en', 1, 'https://ror.org/027e56k73 Lyceum of the Philippines University'),
(108953, 'https://ror.org/02my5ky04', 'pt', 1, 'https://ror.org/02my5ky04 Fundação Spes'),
(108954, 'https://ror.org/05wzskb47', 'en', 1, 'https://ror.org/05wzskb47 Centre commun de recherche Centro Comune di Ricerca Gemeinsame Forschungsstelle Joint Research Centre'),
(108955, 'https://ror.org/01mz7kc73', 'en', 1, 'https://ror.org/01mz7kc73 ICAR-Directorate of Rapeseed-Mustard Research, Bharatpur ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ-ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą¤°ą¤øą„‹ą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(108956, 'https://ror.org/006abnv46', 'en', 1, 'https://ror.org/006abnv46 Combined Military Hospital Kohat مؓترکہ فوجی ہسپتال کوہاٹ'),
(108957, 'https://ror.org/02ecn7b85', 'en', 1, 'https://ror.org/02ecn7b85 Khamai Foundation'),
(108958, 'https://ror.org/05w7zwn86', 'en', 1, 'https://ror.org/05w7zwn86 Amaltas University'),
(108959, 'https://ror.org/03dvx1426', 'pl', 1, 'https://ror.org/03dvx1426 Academy of Silesia Akademia Śląska'),
(108960, 'https://ror.org/03hypw319', 'fr', 1, 'https://ror.org/03hypw319 UniversitƩ de Reims Champagne-Ardenne'),
(108961, 'https://ror.org/05bnw9805', 'no_lang_code', 1, 'https://ror.org/05bnw9805 Livraria Lopes da Silva (Portugal) Lopes da Silva Bookshop'),
(108962, 'https://ror.org/0508zfg64', 'pt', 1, 'https://ror.org/0508zfg64 Centro Hospitalar Conde de Ferreira'),
(108963, 'https://ror.org/019e4ht86', 'pt', 1, 'https://ror.org/019e4ht86 Centro de Fƭsica do Instituto PolitƩcnico de Lisboa'),
(108964, 'https://ror.org/014pnzh29', 'no_lang_code', 1, 'https://ror.org/014pnzh29 HeartGenetics Genetics and Biotechnology (Portugal) HeartGenetics Genetics and Biotechnology, S.A.'),
(108965, 'https://ror.org/04kxtb734', 'en', 1, 'https://ror.org/04kxtb734 Gates Ventures'),
(108966, 'https://ror.org/007xn7v02', 'en', 1, 'https://ror.org/007xn7v02 Japanese-French Laboratory for Informatics ę—„ä»ęƒ…å ±å­¦é€£ęŗē ”ē©¶ę‹ ē‚¹'),
(108967, 'https://ror.org/02va7wy35', 'no_lang_code', 1, 'https://ror.org/02va7wy35 Sociedad de Acueducto, Alcantarillado y Aseo de Barranquilla E.S.P. Sociedad de Acueducto, Alcantarillado y Aseo de Barranquilla E.S.P. (Colombia)'),
(108968, 'https://ror.org/03hey5755', 'no_lang_code', 1, 'https://ror.org/03hey5755 Lusoterapia Sociedade Comercial de Produção Químico-Farmacêutica (Portugal) Lusotherapy Commercial Society of Chemical-Pharmaceutical Production'),
(108969, 'https://ror.org/04vddbq17', 'en', 1, 'https://ror.org/04vddbq17 Ajay Kumar Garg Engineering College'),
(108970, 'https://ror.org/04bsm4075', 'fr', 1, 'https://ror.org/04bsm4075 SoLID : SOrbonne study group for Lung Infectious Diseases'),
(108971, 'https://ror.org/05ayqqv15', 'en', 1, 'https://ror.org/05ayqqv15 Vivensa Foundation'),
(108972, 'https://ror.org/00c0q8820', 'pt', 1, 'https://ror.org/00c0q8820 Sociedade Brasileira de Pediatria'),
(108973, 'https://ror.org/056xz7b30', 'pt', 1, 'https://ror.org/056xz7b30 Infraestrutura de Investigação para as Ciências Sociais, artes e humanidades ROSSIO'),
(108974, 'https://ror.org/01jc17w92', 'pt', 1, 'https://ror.org/01jc17w92 Centro de Investigação Prof Doutor Joaquim Veríssimo Serrão'),
(108975, 'https://ror.org/02n85j827', 'en', 1, 'https://ror.org/02n85j827 National Research Centre Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł‚ŁˆŁ…ŁŠ Ł„Ł„ŲØŲ­ŁˆŲ«'),
(108976, 'https://ror.org/0537tge94', 'pt', 1, 'https://ror.org/0537tge94 Gabinete de História Económica e Social'),
(108977, 'https://ror.org/02c798j29', 'en', 1, 'https://ror.org/02c798j29 Academy of Technical and Art Applied Studies АкаГемија техничко-ŃƒŠ¼ŠµŃ‚Š½ŠøŃ‡ŠŗŠøŃ… ŃŃ‚Ń€ŃƒŠŗŠ¾Š²Š½ŠøŃ… ŃŃ‚ŃƒŠ“ŠøŃ˜Š°'),
(108978, 'https://ror.org/03db2by73', 'pt', 1, 'https://ror.org/03db2by73 Instituto Superior TƩcnico'),
(108979, 'https://ror.org/01x8hew03', 'en', 1, 'https://ror.org/01x8hew03 Bulgar Bilimler Akademisi Bulgarian Academy of Sciences Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ на Š½Š°ŃƒŠŗŠøŃ‚е'),
(108980, 'https://ror.org/044frxc69', 'pt', 1, 'https://ror.org/044frxc69 Tech & Art Centro de Tecnologia Restauro e Valorização das Artes'),
(108981, 'https://ror.org/05nwrf687', 'en', 1, 'https://ror.org/05nwrf687 D. G. Khan Medical College'),
(108982, 'https://ror.org/05ynkz779', 'pt', 0, 'https://ror.org/05ynkz779 Instituto Superior de Estudos Interculturais e Transdisciplinares de Mirandela'),
(108983, 'https://ror.org/03fx0zp19', 'en', 1, 'https://ror.org/03fx0zp19 State University of Intelligent Technologies and Telecommunications Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń–Š½Ń‚ŠµŠ»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½ŠøŃ… технологій і зв''ŃŠ·ŠŗŃƒ'),
(108984, 'https://ror.org/03302rx63', 'pt', 1, 'https://ror.org/03302rx63 Centro de Estatƭstica e AplicaƧƵes'),
(108985, 'https://ror.org/034dv1544', 'pt', 1, 'https://ror.org/034dv1544 Centro de Investigação em Saúde e Ambiente'),
(108986, 'https://ror.org/013wmr868', 'en', 1, 'https://ror.org/013wmr868 EX Research Institute EX Research Institute (Japan)'),
(108987, 'https://ror.org/00wx0aw19', 'no_lang_code', 1, 'https://ror.org/00wx0aw19 Urƭa MenƩndez Abogados (Portugal) Urƭa MenƩndez-ProenƧa de Carvalho'),
(108988, 'https://ror.org/00t943441', 'en', 1, 'https://ror.org/00t943441 Regional Education and Research Centre on Earthquake Risk Management and Resilience for West and Central Asia'),
(108989, 'https://ror.org/03hnm8b07', 'fr', 1, 'https://ror.org/03hnm8b07 Centre d''Ʃtudes des politiques Ʃconomiques'),
(108990, 'https://ror.org/00mv6h241', 'en', 1, 'https://ror.org/00mv6h241 University of Ajdabiya Ų¬Ų§Ł…Ų¹Ų© اجدابيا'),
(108991, 'https://ror.org/01mfest76', 'en', 1, 'https://ror.org/01mfest76 ICMR - National Institute of Immunohaemotology आय ą¤øą„€ ą¤ą¤® आर - ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¤ą¤æą¤°ą¤•ą„ą¤·ą¤¾ ą¤°ą„ą¤§ą¤æą¤° ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(108992, 'https://ror.org/02d21x239', 'pt', 1, 'https://ror.org/02d21x239 Gabinete de Projetos e Inovação'),
(108993, 'https://ror.org/02bd6dy50', 'pt', 1, 'https://ror.org/02bd6dy50 Centro de Investigação e Estudos de Sociologia'),
(108994, 'https://ror.org/05v3ej173', 'fr', 1, 'https://ror.org/05v3ej173 Education et DiversitƩs en espaces Francophones'),
(108995, 'https://ror.org/05jp74k96', 'en', 1, 'https://ror.org/05jp74k96 NHO Kinki Chuo Chest Medical Center NHOčæ‘ē•æäø­å¤®å‘¼åøå™Øć‚»ćƒ³ć‚æćƒ¼ å›½ē«‹ē—…é™¢ę©Ÿę§‹čæ‘ē•æäø­å¤®čƒøéƒØē–¾ę‚£ć‚»ćƒ³ć‚æćƒ¼'),
(108996, 'https://ror.org/04x8g4m03', 'pt', 1, 'https://ror.org/04x8g4m03 Centro Investigação Vasco da Gama'),
(108997, 'https://ror.org/00h79yr28', 'pt', 1, 'https://ror.org/00h79yr28 Centro de Investigação em Ciências da Informação Tecnologias e Arquitetura Information Sciences, Technologies and Architecture Research Centre'),
(108998, 'https://ror.org/02khwtc20', 'en', 1, 'https://ror.org/02khwtc20 Fourth Institute of Oceanography č‡Ŗē„¶čµ„ęŗč‡Ŗē„¶čµ„ęŗéƒØē¬¬å››ęµ·ę“‹ē ”ē©¶ę‰€'),
(108999, 'https://ror.org/047kfvz78', 'fr', 1, 'https://ror.org/047kfvz78 Institut Droit, Espaces et Technologies Institute of Space and Telecommunications Law Instituto de Derecho del Espacio y de las Telecomunicaciones ē©ŗé—“å’Œē”µäæ”ę³•ē ”ē©¶ę‰€'),
(109000, 'https://ror.org/02f53da92', 'no_lang_code', 1, 'https://ror.org/02f53da92 Gedeon Richter (Portugal)'),
(109001, 'https://ror.org/04zc7p361', 'en', 1, 'https://ror.org/04zc7p361 University of Kassel UniversitƤt Kassel'),
(109002, 'https://ror.org/013vgfn32', 'pt', 1, 'https://ror.org/013vgfn32 Galeria Municipal do Porto'),
(109003, 'https://ror.org/01r4aq231', 'en', 1, 'https://ror.org/01r4aq231 East Africa Institute for Fundamental Research ICTP - East Africa Institute for Fundamental Research'),
(109004, 'https://ror.org/049rejj19', 'tl', 1, 'https://ror.org/049rejj19 Dalubhasaan ng Lungsod ng Lucena');
INSERT INTO `rors` VALUES
(109005, 'https://ror.org/02nj8cq30', 'tr', 1, 'https://ror.org/02nj8cq30 Ankara Dr. Abdurrahman Yurtaslan Oncology Training and Research Hospital Dr. Abdurrahman Yurtaslan Onkoloji̇ Eği̇ti̇m Ve Araştirma Hastanesi̇'),
(109006, 'https://ror.org/04hxjdv47', 'en', 1, 'https://ror.org/04hxjdv47 International House Viseu'),
(109007, 'https://ror.org/02apwhd52', 'en', 1, 'https://ror.org/02apwhd52 Abu Dhabi School of Management ŁƒŁ„ŁŠŲ© أبوظبي لل؄دارة'),
(109008, 'https://ror.org/025qvcy11', 'en', 1, 'https://ror.org/025qvcy11 Adesh Medical College & Hospital'),
(109009, 'https://ror.org/03vd4n772', 'fr', 1, 'https://ror.org/03vd4n772 Vieillissement, FragilitƩ, PrƩvention, e-SantƩ'),
(109010, 'https://ror.org/0060vt104', 'en', 1, 'https://ror.org/0060vt104 Tech University of Korea ķ•œźµ­ź³µķ•™ėŒ€ķ•™źµ'),
(109011, 'https://ror.org/04n1jm588', 'en', 1, 'https://ror.org/04n1jm588 National Academy of Culture and Arts Management'),
(109012, 'https://ror.org/024d4px27', 'en', 1, 'https://ror.org/024d4px27 Central Police Hospital ą¦•ą§‡ą¦Øą§ą¦¦ą§ą¦°ą§€ą§Ÿ পুলিশ হাসপাতাল'),
(109013, 'https://ror.org/00g1rv562', 'pt', 1, 'https://ror.org/00g1rv562 Centro de Investigação e Intervenção na Leitura'),
(109014, 'https://ror.org/02exh3e86', 'en', 1, 'https://ror.org/02exh3e86 NSF NCAR Mesoscale & Microscale Meteorology Laboratory'),
(109015, 'https://ror.org/01bsb8064', 'pt', 1, 'https://ror.org/01bsb8064 Centre for Psychological Research and Social Intervention Centro de Investigação e Intervenção Social'),
(109016, 'https://ror.org/01g16ph33', 'en', 1, 'https://ror.org/01g16ph33 Institute for Advanced Materials and Mathematics Instituto de Materiales Avanzados y MatemƔticas Material Aurreratuetarako eta Matematikarako Institutua'),
(109017, 'https://ror.org/04qagr784', 'en', 1, 'https://ror.org/04qagr784 University of Agriculture and Environmental Sciences, Umuagwo'),
(109018, 'https://ror.org/04h3rfa52', 'en', 1, 'https://ror.org/04h3rfa52 Mata Gujri University'),
(109019, 'https://ror.org/04b8j4a33', 'en', 1, 'https://ror.org/04b8j4a33 Public Works Research Institute åœŸęœØē ”ē©¶ę‰€'),
(109020, 'https://ror.org/02ys9r941', 'it', 1, 'https://ror.org/02ys9r941 Aequitas Magazine Associazione culturale di Ricerca e Studi giuridici'),
(109021, 'https://ror.org/03dkygb08', 'en', 1, 'https://ror.org/03dkygb08 Primate Expertise'),
(109022, 'https://ror.org/03zf1gf80', 'no_lang_code', 1, 'https://ror.org/03zf1gf80 Antonio Vilar and Associates Lawyers Gabinete de Advogados António Vilar e Associados (Portugal)'),
(109023, 'https://ror.org/035ahym13', 'en', 1, 'https://ror.org/035ahym13 Renaissance Educational University Renessans ta’lim universiteti ŠžŠ±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ренессанс'),
(109024, 'https://ror.org/04hft8h57', 'es', 1, 'https://ror.org/04hft8h57 El Colegio de la Frontera Norte'),
(109025, 'https://ror.org/03twp6y34', 'pt', 1, 'https://ror.org/03twp6y34 Centro de Investigação em Modelação e Optimização de Sistemas Multifuncionais'),
(109026, 'https://ror.org/02w2nhy22', 'en', 1, 'https://ror.org/02w2nhy22 Institute for Science Application in Agriculture Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠæŃ€ŠøŠ¼ŠµŠ½Ńƒ науке у пољопривреГи'),
(109027, 'https://ror.org/02g6kcr15', 'no_lang_code', 1, 'https://ror.org/02g6kcr15 Generis FarmacĆŖutica (Portugal) Generis FarmacĆŖutica, S.A. Generis Pharmaceutical'),
(109028, 'https://ror.org/04dkt3v19', 'en', 1, 'https://ror.org/04dkt3v19 Centre d''Economie de l''ENS Paris-Saclay Centre for Economics at Paris-Saclay'),
(109029, 'https://ror.org/054abx977', 'pt', 0, 'https://ror.org/054abx977 Centro de Estudos de Antropologia Social'),
(109030, 'https://ror.org/03y56t646', 'no_lang_code', 1, 'https://ror.org/03y56t646 PƔgina Transparente Unipessoal (Portugal) Transparent Page Sole Trader'),
(109031, 'https://ror.org/03kwktj23', 'pt', 1, 'https://ror.org/03kwktj23 CĆ¢mara Municipal de Lisboa'),
(109032, 'https://ror.org/033z8ms94', 'pt', 1, 'https://ror.org/033z8ms94 Tribunal de JustiƧa do Estado de GoiƔs'),
(109033, 'https://ror.org/04xs15c78', 'en', 1, 'https://ror.org/04xs15c78 Karshi State Technical University'),
(109034, 'https://ror.org/046tqzs73', 'pt', 1, 'https://ror.org/046tqzs73 Grupo de Estudos de Cancro da CabeƧa e do PescoƧo'),
(109035, 'https://ror.org/02zjzr085', 'id', 1, 'https://ror.org/02zjzr085 Bina Insan University Universitas Bina Insan'),
(109036, 'https://ror.org/029zh7t58', 'en', 1, 'https://ror.org/029zh7t58 International Biosecurity and Biosafety Initiative for Science'),
(109037, 'https://ror.org/00hg1tm72', 'en', 1, 'https://ror.org/00hg1tm72 Biosphere Reserves Institute'),
(109038, 'https://ror.org/01by29f02', 'en', 1, 'https://ror.org/01by29f02 St. Thomas College (Autonomous) ą“øąµ†ą“Øąµą“±ąµ ą“¤ąµ‹ą“®ą“øąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“¤ąµƒą“¶ąµ‚ąµ¼'),
(109039, 'https://ror.org/004s18446', 'en', 1, 'https://ror.org/004s18446 Instituto PolitƩcnico de Castelo Branco Polytechnic Institute of Castelo Branco'),
(109040, 'https://ror.org/04j8mn309', 'fr', 1, 'https://ror.org/04j8mn309 ƉcoCirta'),
(109041, 'https://ror.org/00ckvhj86', 'pt', 1, 'https://ror.org/00ckvhj86 Centro de Estudos em Educação Tecnologia e Saúde'),
(109042, 'https://ror.org/01z9q7v15', 'id', 1, 'https://ror.org/01z9q7v15 Universitas Sembilanbelas November Kolaka'),
(109043, 'https://ror.org/047f1xe49', 'en', 1, 'https://ror.org/047f1xe49 International Centre on Global-Scale Geochemistry č”åˆå›½ę•™ē§‘ę–‡ē»„ē»‡å…Øēƒå°ŗåŗ¦åœ°ēƒåŒ–å­¦å›½é™…ē ”ē©¶äø­åæƒ'),
(109044, 'https://ror.org/012f0ja90', 'pt', 1, 'https://ror.org/012f0ja90 Hospital Doutor João de Almada'),
(109045, 'https://ror.org/029zfa075', 'no_lang_code', 1, 'https://ror.org/029zfa075 Yenepoya University'),
(109046, 'https://ror.org/05bpb0y22', 'es', 1, 'https://ror.org/05bpb0y22 El Colegio de la Frontera Sur'),
(109047, 'https://ror.org/02z9hby18', 'pt', 1, 'https://ror.org/02z9hby18 Instituto da Mobilidade e dos Transportes'),
(109048, 'https://ror.org/02mm7dt19', 'es', 1, 'https://ror.org/02mm7dt19 Agencia Nacional de Empleo'),
(109049, 'https://ror.org/04smp4393', 'es', 1, 'https://ror.org/04smp4393 Fundación Biosfera'),
(109050, 'https://ror.org/0573qkz50', 'en', 1, 'https://ror.org/0573qkz50 Federal College of Medical Laboratory Science and Technology'),
(109051, 'https://ror.org/03canf739', 'en', 1, 'https://ror.org/03canf739 Regional Centre for Integrated River Basin Management'),
(109052, 'https://ror.org/03m83wh67', 'en', 1, 'https://ror.org/03m83wh67 National Blood Service Ghana'),
(109053, 'https://ror.org/01pd41442', 'en', 1, 'https://ror.org/01pd41442 FiberCop FiberCop (Italy)'),
(109054, 'https://ror.org/03f7kee28', 'pt', 1, 'https://ror.org/03f7kee28 Gabinete de EstratƩgia e Estudos'),
(109055, 'https://ror.org/03bhs4y95', 'en', 1, 'https://ror.org/03bhs4y95 Summit University, Offa'),
(109056, 'https://ror.org/059vc0x72', 'en', 1, 'https://ror.org/059vc0x72 Holetta Agricultural Research Center į‹Øįˆ†įˆˆį‰³ įŒį‰„įˆ­įŠ“ įˆįˆ­įˆįˆ­ įˆ›į‹•įŠØįˆ'),
(109057, 'https://ror.org/0117a2k50', 'en', 1, 'https://ror.org/0117a2k50 Manav Rachna University'),
(109058, 'https://ror.org/01jgt3r49', 'no_lang_code', 1, 'https://ror.org/01jgt3r49 Momento Medico Publishing House Momento MƩdico Editora de PublicaƧƵes (Portugal)'),
(109059, 'https://ror.org/00ydx1s47', 'en', 1, 'https://ror.org/00ydx1s47 Astera Institute'),
(109060, 'https://ror.org/03t41q113', 'pt', 1, 'https://ror.org/03t41q113 Centro de Oceanografia'),
(109061, 'https://ror.org/05mecez53', 'en', 1, 'https://ror.org/05mecez53 Kazakhstan Institute for Strategic Studies under the President of the Republic of Kazakhstan ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Ń– жанынГағы ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½Š½Ń‹Ņ£ ŃŃ‚Ń€Š°Ń‚ŠµŠ³ŠøŃŠ»Ń‹Ņ› Š·ŠµŃ€Ń‚Ń‚ŠµŃƒŠ»ŠµŃ€ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(109062, 'https://ror.org/00kc9pf87', 'en', 1, 'https://ror.org/00kc9pf87 State Scientific and Technical Center for Nuclear and Radiation Safety Державний науково-технічний центр Š· ŃŠ“ŠµŃ€Š½Š¾Ń— та раГіаційної безпеки'),
(109063, 'https://ror.org/02hrx0m28', 'en', 1, 'https://ror.org/02hrx0m28 TU Delft OPEN Publishing'),
(109064, 'https://ror.org/00cjer453', 'pt', 1, 'https://ror.org/00cjer453 InnovPlantProtect'),
(109065, 'https://ror.org/02wfxqa76', 'de', 1, 'https://ror.org/02wfxqa76 Berufsgenossenschaftliche Unfallklinik Ludwigshafen'),
(109066, 'https://ror.org/001h1y284', 'no_lang_code', 1, 'https://ror.org/001h1y284 Prosport - Rocha, Moreira, Pinto & Soares (Portugal)'),
(109067, 'https://ror.org/02k4kfh71', 'no_lang_code', 1, 'https://ror.org/02k4kfh71 Clever Advertising (Portugal)'),
(109068, 'https://ror.org/03hjeqb56', 'en', 1, 'https://ror.org/03hjeqb56 International House Braga'),
(109069, 'https://ror.org/00tkdj896', 'en', 1, 'https://ror.org/00tkdj896 GenomePT'),
(109070, 'https://ror.org/03r44cm77', 'en', 1, 'https://ror.org/03r44cm77 Mata Gujri Memorial Medical College & Lions Seva Kendra Hospital'),
(109071, 'https://ror.org/02etvq888', 'en', 1, 'https://ror.org/02etvq888 Software Heritage'),
(109072, 'https://ror.org/05mdg8117', 'fr', 1, 'https://ror.org/05mdg8117 Laboratoire interdisciplinaire de recherches en sciences de l''action'),
(109073, 'https://ror.org/03qn7fc69', 'en', 1, 'https://ror.org/03qn7fc69 Ibn-e-Sina University'),
(109074, 'https://ror.org/05j7zcm59', 'pt', 1, 'https://ror.org/05j7zcm59 Bibliotecas do Instituto PolitƩcnico de Castelo Branco'),
(109075, 'https://ror.org/00cb23x68', 'en', 1, 'https://ror.org/00cb23x68 Kwame Nkrumah University of Science and Technology'),
(109076, 'https://ror.org/056kkbk56', 'de', 1, 'https://ror.org/056kkbk56 Sigmund Freud Private University - Campus Ljubljana Sigmund Freud PrivatuniversitƤt - Standort Ljubljana'),
(109077, 'https://ror.org/01b3jg951', 'en', 1, 'https://ror.org/01b3jg951 Agrolabo S.p.A.'),
(109078, 'https://ror.org/05hv3c612', 'fr', 1, 'https://ror.org/05hv3c612 Genomics, Bioinformatics, and Molecular Chemistry GƩnomique, bioinformatique et chimie molƩculaire'),
(109079, 'https://ror.org/0005c8d42', 'no_lang_code', 1, 'https://ror.org/0005c8d42 Starmark (United States)'),
(109080, 'https://ror.org/012bmcn87', 'pt', 1, 'https://ror.org/012bmcn87 Editora Mundos Sociais'),
(109081, 'https://ror.org/04ekaae20', 'pt', 1, 'https://ror.org/04ekaae20 Instituto PortuguĆŖs de Psicologia e Outras CiĆŖncias'),
(109082, 'https://ror.org/02whzxb57', 'en', 1, 'https://ror.org/02whzxb57 National Supercomputing Center in Chengdu å›½å®¶č¶…ēŗ§č®”ē®—ęˆéƒ½äø­åæƒ'),
(109083, 'https://ror.org/05f05cy37', 'en', 1, 'https://ror.org/05f05cy37 National University of Avellaneda Universidad Nacional de Avellaneda'),
(109084, 'https://ror.org/0553mez82', 'pt', 1, 'https://ror.org/0553mez82 Associate Laboratory for Sustainability and Technology in Mountain Regions Laboratório Associado para a Sustentabilidade e Tecnologia em Regiões do Interior'),
(109085, 'https://ror.org/04046pn04', 'pt', 1, 'https://ror.org/04046pn04 Hospital da Prelada'),
(109086, 'https://ror.org/00f5trc45', 'id', 1, 'https://ror.org/00f5trc45 STAI Al-Anwar Sarang Rembang'),
(109087, 'https://ror.org/05210hx76', 'no_lang_code', 1, 'https://ror.org/05210hx76 The Super Coder Code Academy (Portugal)'),
(109088, 'https://ror.org/05jnf3k06', 'en', 1, 'https://ror.org/05jnf3k06 National Supercomputing Center In Zhengzhou å›½å®¶č¶…ēŗ§č®”ē®—éƒ‘å·žäø­åæƒ'),
(109089, 'https://ror.org/00b0abc98', 'de', 1, 'https://ror.org/00b0abc98 Sigmund Freud Private University - Campus Paris Sigmund Freud PrivatuniversitƤt - Standort Paris'),
(109090, 'https://ror.org/02tpccc26', 'pt', 1, 'https://ror.org/02tpccc26 Centro da Mulher'),
(109091, 'https://ror.org/047qzfw27', 'fr', 1, 'https://ror.org/047qzfw27 Agence Spatiale AlgĆ©rienne Algerian Space Agency Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁŲ¶Ų§Ų¦ŁŠŲ© Ų§Ł„Ų¬Ų²Ų§Ų¦Ų±ŁŠŲ©'),
(109092, 'https://ror.org/04gnxkq03', 'en', 1, 'https://ror.org/04gnxkq03 KwaZulu-Natal Department of Community Safety & Liaison'),
(109093, 'https://ror.org/05d755m86', 'en', 0, 'https://ror.org/05d755m86 Brightwood College'),
(109094, 'https://ror.org/05sxmgf12', 'en', 0, 'https://ror.org/05sxmgf12 Brightwood College'),
(109095, 'https://ror.org/03eyga648', 'pt', 1, 'https://ror.org/03eyga648 Centro de Investigação Interdisciplinar em Saúde'),
(109096, 'https://ror.org/007s93255', 'no_lang_code', 1, 'https://ror.org/007s93255 Centro de HemodiƔlise (Portugal) Centro de HemodiƔlise, S.A. Centrodial Hemodialysis Centre'),
(109097, 'https://ror.org/039s43t96', 'en', 1, 'https://ror.org/039s43t96 Conservancy of Southwest Florida'),
(109098, 'https://ror.org/02h5dpj70', 'es', 1, 'https://ror.org/02h5dpj70 Escuela Normal Fronteriza Tijuana'),
(109099, 'https://ror.org/02pqn3g31', 'de', 1, 'https://ror.org/02pqn3g31 Deutschen Konsortium für Translationale Krebsforschung German Cancer Consortium'),
(109100, 'https://ror.org/02gccas13', 'cs', 1, 'https://ror.org/02gccas13 TƔbor Zoo ZOO TƔbor'),
(109101, 'https://ror.org/04n97g567', 'fr', 1, 'https://ror.org/04n97g567 HTAM2 : Hypertension Maligne Multimodale'),
(109102, 'https://ror.org/01xm1pt56', 'es', 1, 'https://ror.org/01xm1pt56 Fundación GESICA'),
(109103, 'https://ror.org/01sabsj32', 'pt', 1, 'https://ror.org/01sabsj32 Centro de Investigação Desenvolvimento e Inovação da Academia Militar'),
(109104, 'https://ror.org/00e96v939', 'fr', 1, 'https://ror.org/00e96v939 University of Ɖvry Val d''Essonne UniversitĆ© d''Ɖvry Val-d''Essonne UniversitĆ© Ɖvry-Paris Saclay'),
(109105, 'https://ror.org/004sx2h24', 'en', 1, 'https://ror.org/004sx2h24 Research Center for Industrial Problems of Development of the National Academy of Sciences of Ukraine ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний центр Ń–Š½Š“ŃƒŃŃ‚Ń€Ń–Š°Š»ŃŒŠ½ŠøŃ… проблем Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(109106, 'https://ror.org/02msb2n33', 'en', 1, 'https://ror.org/02msb2n33 Centre for Water for Sustainable Development and Adaptation to Climate Change Water for Sustainable Development and Adaptation to Climate Change Centre'),
(109107, 'https://ror.org/01pvj8f56', 'no_lang_code', 1, 'https://ror.org/01pvj8f56 X2 Science Solutions (Portugal)'),
(109108, 'https://ror.org/05jw9dg17', 'fr', 1, 'https://ror.org/05jw9dg17 Inter RhƓne Inter-RhƓne'),
(109109, 'https://ror.org/00hcf7151', 'en', 1, 'https://ror.org/00hcf7151 Information Processing and Telecommunications Center'),
(109110, 'https://ror.org/02tpk0p14', 'en', 1, 'https://ror.org/02tpk0p14 Masinde Muliro University of Science and Technology'),
(109111, 'https://ror.org/00b252v89', 'en', 1, 'https://ror.org/00b252v89 Mitsubishi Electric (China) Corporation Mitsubishi Electric (China) Corporation (China) äø‰č±ē”µęœŗļ¼ˆäø­å›½ļ¼‰å®˜ę–¹ē½‘ē«™'),
(109112, 'https://ror.org/019sdck14', 'en', 1, 'https://ror.org/019sdck14 International Knowledge Centre for Engineering Sciences and Technology å›½é™…å·„ēØ‹ē§‘ęŠ€ēŸ„čÆ†äø­åæƒ'),
(109113, 'https://ror.org/019frx870', 'en', 1, 'https://ror.org/019frx870 Govt. Sundarban Adarsha College, Khulna সরকারি ą¦øą§ą¦Øą§ą¦¦ą¦°ą¦¬ą¦Ø ą¦†ą¦¦ą¦°ą§ą¦¶ ą¦•ą¦²ą§‡ą¦œ, খুলনা'),
(109114, 'https://ror.org/05rtg8f23', 'en', 1, 'https://ror.org/05rtg8f23 Arxeologiya və Antropologiya İnstitutu Institute of Archaeology and Anthropology'),
(109115, 'https://ror.org/011teq312', 'no_lang_code', 1, 'https://ror.org/011teq312 PSPC Active Living and Environment PSPC Vida Activa e Ambiente (Portugal)'),
(109116, 'https://ror.org/048wtcr31', 'en', 1, 'https://ror.org/048wtcr31 Institute of Aviation Engineering & Technology'),
(109117, 'https://ror.org/0196q1421', 'en', 1, 'https://ror.org/0196q1421 Mahatma Gandhi Ayurved College Hospital and Research Centre'),
(109118, 'https://ror.org/03r76m759', 'pt', 1, 'https://ror.org/03r76m759 Centro de Investigação em InformÔtica e Comunicações Computer Science and Communication Research Centre'),
(109119, 'https://ror.org/008yzrs90', 'pt', 1, 'https://ror.org/008yzrs90 Instituto de Plasmas e Fusão Nuclear'),
(109120, 'https://ror.org/02xjdvd91', 'no_lang_code', 1, 'https://ror.org/02xjdvd91 Noah ComƩrcio de MobiliƔrio (Portugal) Noah Furniture Trade'),
(109121, 'https://ror.org/0368tgm64', 'no', 1, 'https://ror.org/0368tgm64 FƦrder Kommune'),
(109122, 'https://ror.org/02sgeh698', 'pt', 1, 'https://ror.org/02sgeh698 MinistƩrio do Trabalho Solidariedade e SeguranƧa Social'),
(109123, 'https://ror.org/02aga1t67', 'no_lang_code', 1, 'https://ror.org/02aga1t67 Emerson (United States)'),
(109124, 'https://ror.org/03whah770', 'en', 1, 'https://ror.org/03whah770 Liaoning Institute of Science and Technology č¾½å®ē§‘ęŠ€å­¦é™¢'),
(109125, 'https://ror.org/00b9fry24', 'en', 0, 'https://ror.org/00b9fry24 United States Air Force Logistics Command'),
(109126, 'https://ror.org/009gyvm78', 'en', 1, 'https://ror.org/009gyvm78 Centro Internazionale di Fisica Teorica Abdus Salam Mednarodno srediŔče Abdusa Salama za teoretično fiziko The Abdus Salam International Centre for Theoretical Physics (ICTP)'),
(109127, 'https://ror.org/031d0m432', 'pt', 1, 'https://ror.org/031d0m432 Centro UniversitÔrio do Rio São Francisco'),
(109128, 'https://ror.org/029nzk735', 'en', 1, 'https://ror.org/029nzk735 Shree Somnath Sanskrit University'),
(109129, 'https://ror.org/048ca6n16', 'en', 0, 'https://ror.org/048ca6n16 United States Air Force Systems Command'),
(109130, 'https://ror.org/04eyv5322', 'pt', 1, 'https://ror.org/04eyv5322 Fundação da Casa de Mateus'),
(109131, 'https://ror.org/0495f8j82', 'pt', 1, 'https://ror.org/0495f8j82 Hospital da Mulher SĆ£o Paulo'),
(109132, 'https://ror.org/03kyeb689', 'pt', 1, 'https://ror.org/03kyeb689 Fundação Nossa Senhora do Bom Sucesso'),
(109133, 'https://ror.org/02a849f66', 'fr', 1, 'https://ror.org/02a849f66 Signalisation, radiobiologie et cancer'),
(109134, 'https://ror.org/03zav0w05', 'fr', 1, 'https://ror.org/03zav0w05 Institut Universitaire de Technologie de Dijon/Auxerre'),
(109135, 'https://ror.org/02hgzc508', 'es', 1, 'https://ror.org/02hgzc508 Centro de Investigación y Asistencia en Tecnología y Diseño del Estado de Jalisco'),
(109136, 'https://ror.org/044cfnj78', 'fr', 1, 'https://ror.org/044cfnj78 GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de DonnƩes'),
(109137, 'https://ror.org/056tb7j80', 'es', 1, 'https://ror.org/056tb7j80 National University of Córdoba Universidad Nacional de Córdoba Universidade Nacional de Córdoba Università Nazionale di Córdoba Université nationale de córdoba'),
(109138, 'https://ror.org/03dcwgh33', 'no_lang_code', 1, 'https://ror.org/03dcwgh33 Intellegibilis (Portugal)'),
(109139, 'https://ror.org/037b36v23', 'es', 1, 'https://ror.org/037b36v23 Sanatorio Adventista del Plata'),
(109140, 'https://ror.org/052ad0f33', 'es', 1, 'https://ror.org/052ad0f33 Centro de Estudios del Habitar Popular'),
(109141, 'https://ror.org/00bb5py04', 'no_lang_code', 1, 'https://ror.org/00bb5py04 Sociedade de Gestão de Projectos Internacionais (Portugal)'),
(109142, 'https://ror.org/03sawc144', 'de', 1, 'https://ror.org/03sawc144 Büro für Angewandte Hydrologie Büro für Angewandte Hydrologie (Germany) Büro für Angewandte Hydrologie GmbH'),
(109143, 'https://ror.org/029rc9g37', 'no_lang_code', 1, 'https://ror.org/029rc9g37 Virtual Vehicle Research GmbH Virtual Vehicle Research GmbH (Austria)'),
(109144, 'https://ror.org/01jjwvs48', 'en', 1, 'https://ror.org/01jjwvs48 Carl Remigius Medical School'),
(109145, 'https://ror.org/01vsrcf54', 'pt', 1, 'https://ror.org/01vsrcf54 Escola Superior de Actividades ImobiliƔrias'),
(109146, 'https://ror.org/01hjg2702', 'no_lang_code', 1, 'https://ror.org/01hjg2702 Instituto Eletrotécnico Português (Portugal) Portuguese Electronic Institute'),
(109147, 'https://ror.org/03m09fn93', 'pt', 1, 'https://ror.org/03m09fn93 Instituto Brasileiro de CiĆŖncias Criminais'),
(109148, 'https://ror.org/02m4c1x70', 'en', 1, 'https://ror.org/02m4c1x70 U.S. Air Force Materiel Command'),
(109149, 'https://ror.org/04shhzf53', 'de', 1, 'https://ror.org/04shhzf53 PH NMS Bern PƤdagogische Hochschulinstitut NMS University of Teacher Education NMS Bern'),
(109150, 'https://ror.org/056k09r13', 'no_lang_code', 1, 'https://ror.org/056k09r13 Stellantis Canada Stellantis Canada (Canada)'),
(109151, 'https://ror.org/03nqb0t90', 'en', 1, 'https://ror.org/03nqb0t90 MĆŗsaeim NĆ”isiĆŗnta TƉ National Museums NI'),
(109152, 'https://ror.org/037ejjy86', 'en', 1, 'https://ror.org/037ejjy86 Wannan Medical College ēš–å—åŒ»å­¦é™¢'),
(109153, 'https://ror.org/04mgfat68', 'no_lang_code', 1, 'https://ror.org/04mgfat68 E&Q Engineering E&Q Engineering (Spain) E&Q Engineering Solutions & Innovation S.L.'),
(109154, 'https://ror.org/0301be148', 'no_lang_code', 1, 'https://ror.org/0301be148 STLab s.r.l. STLab s.r.l. (Italy)'),
(109155, 'https://ror.org/00evec309', 'it', 1, 'https://ror.org/00evec309 European International State School "Altiero Spinelli" Scuola Internazionale Europea Statale "Altiero Spinelli"'),
(109156, 'https://ror.org/02n0h0a52', 'en', 1, 'https://ror.org/02n0h0a52 International Centre for Biotechnology UNESCO International Centre for Biotechnology'),
(109157, 'https://ror.org/03ygmt427', 'no_lang_code', 1, 'https://ror.org/03ygmt427 Grupo SIBS SIBS Partners in Payments (Portugal)'),
(109158, 'https://ror.org/04tc42m81', 'no_lang_code', 1, 'https://ror.org/04tc42m81 Qualityplant Investigação e Produção em Biotecnologia Vegetal (Portugal) Qualityplant Research and Production in Plant Biotechnology Sole Proprietorship'),
(109159, 'https://ror.org/0320fj966', 'en', 1, 'https://ror.org/0320fj966 ICEE International Centre for Engineering Education ęœŖę„ē§‘ęŠ€ę•™č‚²åŸŗåœ°'),
(109160, 'https://ror.org/02vzc7q68', 'no_lang_code', 1, 'https://ror.org/02vzc7q68 LivaNova (United Kingdom)'),
(109161, 'https://ror.org/05vwg1891', 'no_lang_code', 1, 'https://ror.org/05vwg1891 SHI Accelerator Service Ltd. SHI Accelerator Service Ltd. (Japan) ä½é‡åŠ é€Ÿå™Øć‚µćƒ¼ćƒ“ć‚¹ę Ŗå¼ä¼šē¤¾'),
(109162, 'https://ror.org/0564q6y15', 'ca', 1, 'https://ror.org/0564q6y15 Departament d''Economia i Hisenda de la Generalitat de Catalunya Departamento de EconomĆ­a y Hacienda'),
(109163, 'https://ror.org/01pwpsf61', 'en', 1, 'https://ror.org/01pwpsf61 Homs University Ų¬ŁŽŲ§Ł…ŁŲ¹ŁŽŲ© حِمْص'),
(109164, 'https://ror.org/01xhc9d78', 'ca', 1, 'https://ror.org/01xhc9d78 Agencia per a la Competitivit de l''Empresa'),
(109165, 'https://ror.org/02r396328', 'no_lang_code', 1, 'https://ror.org/02r396328 Velvet Smile (Portugal)'),
(109166, 'https://ror.org/02zv4ka60', 'en', 1, 'https://ror.org/02zv4ka60 Australian Museum'),
(109167, 'https://ror.org/05xvwhv53', 'en', 1, 'https://ror.org/05xvwhv53 Osaka International Cancer Institute å¤§é˜Ŗå›½éš›ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(109168, 'https://ror.org/045ye0b30', 'fr', 1, 'https://ror.org/045ye0b30 Aspects métaboliques et systémiques de l''oncogénèse pour de nouvelles approches thérapeutiques Metabolic and systemic aspects of oncogenesis for new therapeutic approaches'),
(109169, 'https://ror.org/04prmqc97', 'en', 1, 'https://ror.org/04prmqc97 KAT General Hospital of Attica Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Αττικής ĪšĪ‘Ī¤'),
(109170, 'https://ror.org/017pgz739', 'id', 1, 'https://ror.org/017pgz739 Universitas Widya Gama Malang'),
(109171, 'https://ror.org/038f2eq15', 'en', 1, 'https://ror.org/038f2eq15 Jawahar Medical Foundation''s Annasaheb Chudaman Patil Memorial Medical College & Hospital'),
(109172, 'https://ror.org/025z1vr32', 'en', 1, 'https://ror.org/025z1vr32 Geo Geo (Denmark)'),
(109173, 'https://ror.org/00ke0xj02', 'fr', 1, 'https://ror.org/00ke0xj02 Espaces Humains et Interactions Culturelles'),
(109174, 'https://ror.org/037sqgc19', 'pt', 0, 'https://ror.org/037sqgc19 Incubadora D Dinis Associação para a Promoção do Empreendedorismo Inovação e Novas Tecnologias Incubadora D. Dinis Associação para a Promoção do Empreendedorismo Inovação e Novas Tecnologias'),
(109175, 'https://ror.org/0201zh494', 'no_lang_code', 1, 'https://ror.org/0201zh494 Moreirense Football Club Moreirense Futebol Clube (Portugal)'),
(109176, 'https://ror.org/00v52fx68', 'pt', 1, 'https://ror.org/00v52fx68 Bibliotecas da Universidade do Porto'),
(109177, 'https://ror.org/00by9h273', 'fr', 1, 'https://ror.org/00by9h273 Eau Environnement Limoges'),
(109178, 'https://ror.org/04hjbmv12', 'no_lang_code', 1, 'https://ror.org/04hjbmv12 Takeda Takeda (Japan) 武田薬品巄愭'),
(109179, 'https://ror.org/013f0wm52', 'pt', 1, 'https://ror.org/013f0wm52 Fundação Energias de Portugal'),
(109180, 'https://ror.org/05xxrw222', 'no_lang_code', 1, 'https://ror.org/05xxrw222 Hidrosoph (Portugal)'),
(109181, 'https://ror.org/0203gyr63', 'no_lang_code', 1, 'https://ror.org/0203gyr63 GfK Portugal Marketing Services (Portugal) GfK Portugal Marketing Services, S.A.'),
(109182, 'https://ror.org/037g0y787', 'pt', 1, 'https://ror.org/037g0y787 Instituto Design Guimarães'),
(109183, 'https://ror.org/05wmdej13', 'pt', 1, 'https://ror.org/05wmdej13 Centro de Negócios e Inovação de Rio Maior'),
(109184, 'https://ror.org/036d3mg02', 'fr', 1, 'https://ror.org/036d3mg02 President Joseph Kasa-Vubu University UniversitƩ PrƩsident Joseph Kasa-Vubu'),
(109185, 'https://ror.org/01ad57y24', 'pt', 1, 'https://ror.org/01ad57y24 Centro de Investigação em Psicologia'),
(109186, 'https://ror.org/03vdvap73', 'pt', 0, 'https://ror.org/03vdvap73 Centro de Estudo do Movimento e Atividade Humana'),
(109187, 'https://ror.org/00p9xg744', 'no_lang_code', 1, 'https://ror.org/00p9xg744 Jose Alves'' Library Livraria de JosƩ Alves (Portugal)'),
(109188, 'https://ror.org/00anwhm62', 'en', 1, 'https://ror.org/00anwhm62 The Brain Institute of America The Brain Institute of America (United States)'),
(109189, 'https://ror.org/04eq3m258', 'no_lang_code', 1, 'https://ror.org/04eq3m258 Piscicultura do Vale da Lama (Portugal)'),
(109190, 'https://ror.org/04g6y8x69', 'pt', 1, 'https://ror.org/04g6y8x69 Procuradoria-Geral da Fazenda Nacional'),
(109191, 'https://ror.org/029kbaf30', 'en', 1, 'https://ror.org/029kbaf30 Federal Medical Centre Abuja'),
(109192, 'https://ror.org/051fd9666', 'en', 1, 'https://ror.org/051fd9666 Case Western Reserve University'),
(109193, 'https://ror.org/05nn56080', 'pt', 1, 'https://ror.org/05nn56080 Grupo de Reação e AnÔlises Químicas'),
(109194, 'https://ror.org/04zhhyn23', 'en', 1, 'https://ror.org/04zhhyn23 University Corporation for Atmospheric Research'),
(109195, 'https://ror.org/055gmxq47', 'en', 1, 'https://ror.org/055gmxq47 Bio Suisse'),
(109196, 'https://ror.org/029v1c965', 'pt', 1, 'https://ror.org/029v1c965 Hospital Distrital Pombal'),
(109197, 'https://ror.org/02ywsaa19', 'no_lang_code', 1, 'https://ror.org/02ywsaa19 SenSiC GmbH SenSiC GmbH (Switzerland)'),
(109198, 'https://ror.org/007dshj79', 'de', 1, 'https://ror.org/007dshj79 KinderKunstLabor für zeitgenƶssische Kunst NƖ Kulturlandeshauptstadt St. Pƶlten GmbH'),
(109199, 'https://ror.org/00dx9kg40', 'pt', 1, 'https://ror.org/00dx9kg40 Santa Casa da Misericórdia de Lisboa'),
(109200, 'https://ror.org/00tt7hm51', 'ca', 1, 'https://ror.org/00tt7hm51 Centre d’Estudis Superiors de l’Aviació'),
(109201, 'https://ror.org/04wk25q62', 'en', 1, 'https://ror.org/04wk25q62 University of Constantine 3 UniversitĆ© de Constantine 3 Ų¬Ų§Ł…Ų¹Ų© Ł‚Ų³Ł†ŲøŁŠŁ†Ų© 3'),
(109202, 'https://ror.org/05nxds205', 'es', 1, 'https://ror.org/05nxds205 Fundación Pablo CasarÔ'),
(109203, 'https://ror.org/05jra0838', 'en', 1, 'https://ror.org/05jra0838 T.K. Zhurgenov Kazakh National Academy of Arts ŠšŠ°Š·Š°Ń…ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š² имени Темирбека Жүргенова Š¢.Қ. Жүргенов атынГағы ŅšŠ°Š·Š°Ņ› ұлттық өнер Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(109204, 'https://ror.org/01mwwwn80', 'en', 1, 'https://ror.org/01mwwwn80 Koninklijk Conservatorium Royal Conservatory The Hague'),
(109205, 'https://ror.org/01wv9cn34', 'en', 1, 'https://ror.org/01wv9cn34 European Spallation Source'),
(109206, 'https://ror.org/02zp1rf72', 'en', 1, 'https://ror.org/02zp1rf72 Hama University Ų¬Ų§Ł…Ų¹Ų© Ų­Ł…Ų§Ų©'),
(109207, 'https://ror.org/02v6n0329', 'fr', 1, 'https://ror.org/02v6n0329 Lipides: systĆØmes analytiques et biologiques'),
(109208, 'https://ror.org/00hpnfm55', 'en', 1, 'https://ror.org/00hpnfm55 Union of Concerned Scientists'),
(109209, 'https://ror.org/02kek8d34', 'pt', 1, 'https://ror.org/02kek8d34 Hospital Bernardino Lopes de Oliveira AlcobaƧa'),
(109210, 'https://ror.org/05t56sj93', 'en', 1, 'https://ror.org/05t56sj93 Federal University Gashua'),
(109211, 'https://ror.org/010dvvh94', 'pt', 1, 'https://ror.org/010dvvh94 Instituto PolitƩcnico de Leiria Polytechnic Institute of Leiria'),
(109212, 'https://ror.org/00npbs606', 'pt', 1, 'https://ror.org/00npbs606 Centro de LĆ­nguas Literaturas e Culturas'),
(109213, 'https://ror.org/04bhk6583', 'it', 1, 'https://ror.org/04bhk6583 Azienda Ospedale - UniversitĆ  Padova'),
(109214, 'https://ror.org/05xcj1e13', 'id', 1, 'https://ror.org/05xcj1e13 Yayasan Penelitian Dan Pengembangan Obstetri Indonesia'),
(109215, 'https://ror.org/003byr264', 'es', 1, 'https://ror.org/003byr264 Universidad Adventista del Plata'),
(109216, 'https://ror.org/052rhgg57', 'fr', 1, 'https://ror.org/052rhgg57 Institut Biomédical du Val de Bièvre'),
(109217, 'https://ror.org/04ea70f07', 'pt', 1, 'https://ror.org/04ea70f07 Instituto PolitƩcnico de Lisboa Instituto Superior de Engenharia de Lisboa Polytechnical Institute of Lisbon'),
(109218, 'https://ror.org/017kx4966', 'fr', 1, 'https://ror.org/017kx4966 Higher Normal School of Bou Saada Ɖcole Normale SupĆ©rieure de Bou Saada المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ببوسعادة'),
(109219, 'https://ror.org/01k0j3535', 'en', 1, 'https://ror.org/01k0j3535 ETC Group ETC Group - Action Group on Erosion, Technology and Concentration'),
(109220, 'https://ror.org/05nw5qw03', 'pt', 1, 'https://ror.org/05nw5qw03 Hospital LusĆ­adas Porto'),
(109221, 'https://ror.org/044g3rq92', 'pt', 1, 'https://ror.org/044g3rq92 Fundação Museu do Douro'),
(109222, 'https://ror.org/015tefs60', 'en', 1, 'https://ror.org/015tefs60 International Research Centre on Karst č”åˆå›½ę•™ē§‘ę–‡ē»„ē»‡å›½é™…å²©ęŗ¶ē ”ē©¶äø­åæƒ'),
(109223, 'https://ror.org/01mwsm621', 'no_lang_code', 1, 'https://ror.org/01mwsm621 AnamĆŖ Health Design AnamĆŖ Health Design (Brazil)'),
(109224, 'https://ror.org/003ccjg76', 'pt', 1, 'https://ror.org/003ccjg76 Centro de FĆ­sica das Universidades do Minho e do Porto'),
(109225, 'https://ror.org/0319xgg25', 'en', 1, 'https://ror.org/0319xgg25 One Earth'),
(109226, 'https://ror.org/03t8ra664', 'pt', 1, 'https://ror.org/03t8ra664 Fundação Professor Ernesto Morais'),
(109227, 'https://ror.org/020a03t90', 'pt', 1, 'https://ror.org/020a03t90 Centro de Estudos sobre a Mudança Socioeconómica e o Território'),
(109228, 'https://ror.org/011saky36', 'en', 1, 'https://ror.org/011saky36 International Research and Training Centre on Erosion and Sedimentation å›½é™…ę³„ę²™ē ”ē©¶åŸ¹č®­äø­åæƒäø»åŠž'),
(109229, 'https://ror.org/0500awy95', 'hr', 1, 'https://ror.org/0500awy95 Evanđeosko teoloÅ”ko veleučiliÅ”te'),
(109230, 'https://ror.org/039zdhk64', 'es', 1, 'https://ror.org/039zdhk64 Centro de Innovación Aplicada en Tecnologías Competitivas'),
(109231, 'https://ror.org/00680hx61', 'fr', 1, 'https://ror.org/00680hx61 Center for Direct Scientific Communication Centre pour la Communication Scientifique Directe Centro para la Comunicación Científica Directa'),
(109232, 'https://ror.org/014z21s47', 'en', 1, 'https://ror.org/014z21s47 ZaoZhuang Vocational College of Science and Technology ęž£åŗ„ē§‘ęŠ€čŒäøšå­¦é™¢'),
(109233, 'https://ror.org/02hb2jr20', 'no_lang_code', 1, 'https://ror.org/02hb2jr20 Linguaterra School of English (Portugal)'),
(109234, 'https://ror.org/04msnz457', 'fr', 1, 'https://ror.org/04msnz457 Laboratoire de l''Informatique du ParallƩlisme'),
(109235, 'https://ror.org/03sa30d69', 'pt', 1, 'https://ror.org/03sa30d69 Grupo de Estudos de Ordenamento do Território e Ambiente'),
(109236, 'https://ror.org/03rrh5171', 'pt', 1, 'https://ror.org/03rrh5171 Center for Interdisciplinary Research Centro de Investigação Interdisciplinar Egas Moniz'),
(109237, 'https://ror.org/02frbs640', 'de', 1, 'https://ror.org/02frbs640 Sigmund Freud Private University - Campus Linz Sigmund Freud PrivatuniversitƤt - Standort Linz'),
(109238, 'https://ror.org/05az93f25', 'en', 1, 'https://ror.org/05az93f25 ArtEZ University of the Arts'),
(109239, 'https://ror.org/0154n7s58', 'pt', 1, 'https://ror.org/0154n7s58 Escola de Sociologia e PolĆ­ticas PĆŗblicas'),
(109240, 'https://ror.org/02dkz1149', 'ca', 1, 'https://ror.org/02dkz1149 Departament d''Educació Departamento de Edicación'),
(109241, 'https://ror.org/02754py23', 'no_lang_code', 1, 'https://ror.org/02754py23 Mercator Ocean (France)'),
(109242, 'https://ror.org/0120hrx64', 'en', 1, 'https://ror.org/0120hrx64 Institute of Water Problems and Land Reclamation Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГних проблем і меліорації ŠŠŠŠ Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГних проблем і меліорації ŠŠŠŠ України'),
(109243, 'https://ror.org/0433hjd74', 'no_lang_code', 1, 'https://ror.org/0433hjd74 LivaNova (Portugal)'),
(109244, 'https://ror.org/04em18c81', 'en', 1, 'https://ror.org/04em18c81 NOVA SBE Venture Lab'),
(109245, 'https://ror.org/04yeez720', 'no_lang_code', 1, 'https://ror.org/04yeez720 Grupo Urbanos (Portugal) Urbanos Group'),
(109246, 'https://ror.org/03p3cw779', 'en', 1, 'https://ror.org/03p3cw779 Mongolian National Institute of Physical Education Š£Š½Š“ŃŃŠ½ŠøŠ¹ Биеийн Тамирын Š”ŃŃŠ“ Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(109247, 'https://ror.org/04cxp0t61', 'pt', 1, 'https://ror.org/04cxp0t61 Centro de Investigação do Instituto Português de Oncologia do Porto Francisco Gentil'),
(109248, 'https://ror.org/03e5e7w20', 'fr', 1, 'https://ror.org/03e5e7w20 ContrĆ“le de l’Activation cellulaire, Progression Tumorale et RĆ©sistance thĆ©rapeutique'),
(109249, 'https://ror.org/05ky1y595', 'no_lang_code', 1, 'https://ror.org/05ky1y595 Nanopower (Portugal)'),
(109250, 'https://ror.org/00nm9rw58', 'en', 1, 'https://ror.org/00nm9rw58 International Association for Development of the Information Society'),
(109251, 'https://ror.org/04pq6be62', 'no_lang_code', 1, 'https://ror.org/04pq6be62 Azevedos Group Grupo Azevedos (Portugal)'),
(109252, 'https://ror.org/05hdb5q36', 'en', 1, 'https://ror.org/05hdb5q36 International House Torres Vedras | Lisbon'),
(109253, 'https://ror.org/04hkvc554', 'es', 1, 'https://ror.org/04hkvc554 Instituto Superior Tecnológico Consulting Group Ecuador-Esculapio'),
(109254, 'https://ror.org/054224v54', 'de', 1, 'https://ror.org/054224v54 BG Hospitals BG Kliniken BG Kliniken – Klinikverbund der gesetzlichen Unfallversicherung gGmbH'),
(109255, 'https://ror.org/04qb8nc58', 'en', 1, 'https://ror.org/04qb8nc58 Clausthal University of Technology Technische UniversitƤt Clausthal'),
(109256, 'https://ror.org/03vw1kz33', 'no', 1, 'https://ror.org/03vw1kz33 HĆøgskulen for GrĆøn Utvikling Norwegian University College of Green Development'),
(109257, 'https://ror.org/02aj2pb82', 'pt', 1, 'https://ror.org/02aj2pb82 Instituto de Investigação Desenvolvimento e Estudos Avançados'),
(109258, 'https://ror.org/04czk1152', 'en', 1, 'https://ror.org/04czk1152 NOVAMath Center for Mathematics and Applications'),
(109259, 'https://ror.org/0230zs006', 'nl', 1, 'https://ror.org/0230zs006 Hogeschool iPabo'),
(109260, 'https://ror.org/03773p874', 'en', 1, 'https://ror.org/03773p874 NSF NCAR High Altitude Observatory'),
(109261, 'https://ror.org/01we7jp47', 'pt', 1, 'https://ror.org/01we7jp47 MaiĆŖutica Cooperativa de Ensino Superior'),
(109262, 'https://ror.org/00t11qq58', 'pt', 1, 'https://ror.org/00t11qq58 One Health Toxicology Research Unit Unidade de Investigação em Toxicologia & Uma Só Saúde'),
(109263, 'https://ror.org/03rggar28', 'es', 1, 'https://ror.org/03rggar28 Centro Medico Nacional - Hospital Nacional'),
(109264, 'https://ror.org/051djhv63', 'es', 1, 'https://ror.org/051djhv63 Instituto Superior Tecnológico Edupraxis'),
(109265, 'https://ror.org/01gw3vg45', 'no_lang_code', 1, 'https://ror.org/01gw3vg45 Kupu'),
(109266, 'https://ror.org/0073npr77', 'pt', 1, 'https://ror.org/0073npr77 Instituto UniversitƔrio JustiƧa e Paz Justice and Peace University Institute'),
(109267, 'https://ror.org/02n9tn974', 'en', 0, 'https://ror.org/02n9tn974 UNAVCO'),
(109268, 'https://ror.org/03eaxvz05', 'en', 1, 'https://ror.org/03eaxvz05 Institute of Applied Physics'),
(109269, 'https://ror.org/01h07p820', 'pt', 1, 'https://ror.org/01h07p820 Embaixada do PanamĆ” em Portugal'),
(109270, 'https://ror.org/01na3y974', 'en', 1, 'https://ror.org/01na3y974 Seychelles Public Health Authority'),
(109271, 'https://ror.org/044xk2674', 'en', 1, 'https://ror.org/044xk2674 Hellenic Air Force Πολεμική Αεροπορία'),
(109272, 'https://ror.org/01a0mk874', 'en', 1, 'https://ror.org/01a0mk874 Tekirdağ Namık Kemal University Teki̇rdağ Namik Kemal Üni̇versi̇tesi̇'),
(109273, 'https://ror.org/03tgyqg89', 'no_lang_code', 1, 'https://ror.org/03tgyqg89 Independent Society for the Development of Higher Education Sociedade Independente para o Desenvolvimento do Ensino Superior (Portugal)'),
(109274, 'https://ror.org/05mpe3728', 'en', 1, 'https://ror.org/05mpe3728 International Society of City and Regional Planners'),
(109275, 'https://ror.org/04vkybr09', 'en', 1, 'https://ror.org/04vkybr09 Philippine Nurses Association of America Philippine Nurses Association of America, Inc.'),
(109276, 'https://ror.org/03hm91306', 'en', 1, 'https://ror.org/03hm91306 Meteorological Service of Catalonia Servei Meteorològic de Catalunya'),
(109277, 'https://ror.org/042jn4x95', 'en', 0, 'https://ror.org/042jn4x95 GGD Amsterdam Public Health Service of Amsterdam'),
(109278, 'https://ror.org/04gpsrx13', 'fr', 1, 'https://ror.org/04gpsrx13 Œuvre Nationale Œuvre Nationale de Secours Grande-Duchesse Charlotte'),
(109279, 'https://ror.org/059btw256', 'en', 1, 'https://ror.org/059btw256 Chang Guang Satellite Technology Co., Ltd. é•æå…‰å«ę˜ŸęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(109280, 'https://ror.org/04jr43q89', 'pt', 1, 'https://ror.org/04jr43q89 Centro de Ecologia Aplicada Prof Baeta Neves'),
(109281, 'https://ror.org/05vgk4s73', 'en', 1, 'https://ror.org/05vgk4s73 Walter AG Walter AG (Germany)'),
(109282, 'https://ror.org/04q65x027', 'da', 1, 'https://ror.org/04q65x027 Krankenhaus SĆønderjylland Sygehus SĆønderjylland University Hospital of Southern Denmark, Hospital Sonderjylland'),
(109283, 'https://ror.org/02qt0xs84', 'en', 1, 'https://ror.org/02qt0xs84 Cal Poly Humboldt'),
(109284, 'https://ror.org/030ndkt55', 'pt', 1, 'https://ror.org/030ndkt55 Inspeção-Geral da Administração Interna'),
(109285, 'https://ror.org/00zsk2t64', 'en', 1, 'https://ror.org/00zsk2t64 European Holocaust Research Infrastructure'),
(109286, 'https://ror.org/02dkzc548', 'no_lang_code', 1, 'https://ror.org/02dkzc548 Grupo RAR (Portugal) RAR Group'),
(109287, 'https://ror.org/01vpv3z28', 'no_lang_code', 1, 'https://ror.org/01vpv3z28 InterContinental Lisboa (Portugal) InterContinental Lisbon'),
(109288, 'https://ror.org/02e4dkh70', 'fr', 1, 'https://ror.org/02e4dkh70 Centre d''excellence en microscience Centre of Excellence in Microscience'),
(109289, 'https://ror.org/03ntccx93', 'en', 1, 'https://ror.org/03ntccx93 National Hospital Organization ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹'),
(109290, 'https://ror.org/05sqf9v67', 'no_lang_code', 1, 'https://ror.org/05sqf9v67 Safran (France)'),
(109291, 'https://ror.org/03e4c9473', 'fr', 1, 'https://ror.org/03e4c9473 Ecole Nationale SupĆ©rieure de Biotechnologie Taoufik Khaznadar Taoufik Khaznadar National Higher School of Biotechnology المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ في Ų§Ł„ŲØŁŠŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(109292, 'https://ror.org/02005jv13', 'no_lang_code', 1, 'https://ror.org/02005jv13 Grupo Martifer (Portugal) Martifer Group'),
(109293, 'https://ror.org/04dkjtk04', 'es', 1, 'https://ror.org/04dkjtk04 Instituto de Cultura JurĆ­dica'),
(109294, 'https://ror.org/04mxdhb79', 'en', 1, 'https://ror.org/04mxdhb79 Phillip Island Nature Parks'),
(109295, 'https://ror.org/03jnyk256', 'no_lang_code', 1, 'https://ror.org/03jnyk256 Houselab (Portugal)'),
(109296, 'https://ror.org/00kpjh567', 'fr', 1, 'https://ror.org/00kpjh567 UnitĆ© de Recherche en GĆ©nie des ProcĆ©dĆ©s et en GĆ©nie de l’Environnement'),
(109297, 'https://ror.org/037r6xs74', 'pt', 1, 'https://ror.org/037r6xs74 Centro de CiĆŖncias e Tecnologias Nucleares'),
(109298, 'https://ror.org/05cq0p497', 'no_lang_code', 1, 'https://ror.org/05cq0p497 InfoCiência Processamento e Gestão de Informação Científica (Portugal) InfoScience Processing and Management of Scientific Information'),
(109299, 'https://ror.org/0013p0655', 'en', 1, 'https://ror.org/0013p0655 Ankaful Psychiatric Hospital'),
(109300, 'https://ror.org/00js76g45', 'pt', 1, 'https://ror.org/00js76g45 Universidade Nova de Lisboa Associação para a Inovação e Desenvolvimento da FCT'),
(109301, 'https://ror.org/02x7kb876', 'pt', 1, 'https://ror.org/02x7kb876 Instituto Padre António Vieira'),
(109302, 'https://ror.org/01mehdc51', 'pt', 1, 'https://ror.org/01mehdc51 Fundação Professor Francisco Pulido Valente'),
(109303, 'https://ror.org/01w01n720', 'en', 1, 'https://ror.org/01w01n720 Academia de Științe a Moldovei Academy of Sciences of Moldova ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук МолГавии'),
(109304, 'https://ror.org/00pggkr55', 'en', 1, 'https://ror.org/00pggkr55 UK Centre for Ecology & Hydrology'),
(109305, 'https://ror.org/03eqm6y13', 'fr', 1, 'https://ror.org/03eqm6y13 LabEx PERSYVAL-Lab'),
(109306, 'https://ror.org/05ts7ya70', 'en', 0, 'https://ror.org/05ts7ya70 Kazan State Energy University'),
(109307, 'https://ror.org/03hwccr94', 'no_lang_code', 1, 'https://ror.org/03hwccr94 Informa D&B Business Management Services Informa D&B Serviços de Gestão de Empresas (Portugal)'),
(109308, 'https://ror.org/02sxhjt61', 'pt', 1, 'https://ror.org/02sxhjt61 CÔtedra Poesia e Transcendência Sophia de Mello Breyner Andresen'),
(109309, 'https://ror.org/04488qa52', 'pt', 1, 'https://ror.org/04488qa52 Centro Interdisciplinar de Investigação Psicossocial Interdisciplinary Center for Psychosocial Research'),
(109310, 'https://ror.org/01pck0x04', 'fr', 1, 'https://ror.org/01pck0x04 Centre National de la Propriété Forestière'),
(109311, 'https://ror.org/0371sxw13', 'de', 1, 'https://ror.org/0371sxw13 StƤdtische Bibliotheken Dresden'),
(109312, 'https://ror.org/016btc076', 'fr', 1, 'https://ror.org/016btc076 Observatoire des Mutations Institutionnelles et Juridiques'),
(109313, 'https://ror.org/05f6x5242', 'de', 1, 'https://ror.org/05f6x5242 Schweizerischer Forstverein Società forestale svizzera Société forestière suisse Swiss Forestry Society'),
(109314, 'https://ror.org/04vvd5f15', 'no_lang_code', 0, 'https://ror.org/04vvd5f15 Zimmer (Switzerland)'),
(109315, 'https://ror.org/014837179', 'pt', 1, 'https://ror.org/014837179 Iscte – Instituto UniversitĆ”rio de Lisboa Iscte – University Institute of Lisbon'),
(109316, 'https://ror.org/03d77hy23', 'es', 1, 'https://ror.org/03d77hy23 Sociedad Argentina de AnÔlisis Filosófico'),
(109317, 'https://ror.org/026ny0e17', 'en', 1, 'https://ror.org/026ny0e17 Environment and Climate Change Canada Environnement et Changement Climatique Canada'),
(109318, 'https://ror.org/03w440z57', 'pt', 1, 'https://ror.org/03w440z57 Centro CiĆŖncia LP International Centre for Advanced Training of Scientists from Portuguese-Speaking Countries in Areas of Basic Sciences'),
(109319, 'https://ror.org/0138n7g46', 'en', 1, 'https://ror.org/0138n7g46 Islamic Azad University, Saghez Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سقز'),
(109320, 'https://ror.org/013cr3v30', 'en', 1, 'https://ror.org/013cr3v30 Pluto Journals'),
(109321, 'https://ror.org/04wbdez64', 'fr', 1, 'https://ror.org/04wbdez64 Laboratoire Alexander Grothendieck'),
(109322, 'https://ror.org/02nfq4215', 'pt', 1, 'https://ror.org/02nfq4215 Biblioteca das CiĆŖncias da SaĆŗde'),
(109323, 'https://ror.org/0581m7006', 'no_lang_code', 1, 'https://ror.org/0581m7006 Teravix Pharmaceutical Services Teravix Servicos Farmaceuticos (Portugal)'),
(109324, 'https://ror.org/0292pya81', 'en', 1, 'https://ror.org/0292pya81 Afghan Telecom Afghan Telecom (Afghanistan)'),
(109325, 'https://ror.org/00wge5k78', 'en', 1, 'https://ror.org/00wge5k78 UiT Norges arktiske universitet UiT Norgga ÔrktalaŔ universitehta UiT The Arctic University of Norway'),
(109326, 'https://ror.org/05pmsvm27', 'en', 1, 'https://ror.org/05pmsvm27 ZHAW Zurich University of Applied Sciences ZHAW Zürcher Hochschule für Angewandte Wissenschaften'),
(109327, 'https://ror.org/01tkwzk77', 'en', 1, 'https://ror.org/01tkwzk77 Livingstone Center for Prevention and Translational Science'),
(109328, 'https://ror.org/02dhqpx10', 'pt', 1, 'https://ror.org/02dhqpx10 Centro de Investigação em Estudos Interdisciplinares Interdisciplinary Studies Research Center'),
(109329, 'https://ror.org/017b7qd04', 'no_lang_code', 1, 'https://ror.org/017b7qd04 Innovation Services (Portugal)'),
(109330, 'https://ror.org/0540dcv15', 'pt', 1, 'https://ror.org/0540dcv15 Centro de Investigação em Psicologia'),
(109331, 'https://ror.org/02ee5f207', 'es', 1, 'https://ror.org/02ee5f207 Instituto Tecnológico Superior Oriente'),
(109332, 'https://ror.org/01wsw8g60', 'en', 1, 'https://ror.org/01wsw8g60 Asociația Independent Research Independent Research Association'),
(109333, 'https://ror.org/04mqc6b03', 'fr', 1, 'https://ror.org/04mqc6b03 MinistĆØre de l''Agriculture, des PĆŖcheries et de l''Alimentation'),
(109334, 'https://ror.org/038586y26', 'pt', 1, 'https://ror.org/038586y26 Audax ISCTE'),
(109335, 'https://ror.org/05x8mcb75', 'en', 1, 'https://ror.org/05x8mcb75 VSB - Technical University of Ostrava VSB - Technische UniversitƤt Ostrava VSB - Universidad TĆ©cnica de Ostrava VSB - UniversitĆ© Technique d''Ostrava VysokĆ” Å”kola bÔňskĆ” - TechnickĆ” univerzita Ostrava Š’ŠØŠ‘ - Tехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŃŃ‚Ń€Š°Š²Š°'),
(109336, 'https://ror.org/040ys9e84', 'pt', 1, 'https://ror.org/040ys9e84 Federal Institute of Education, Science and Technology Alagoas Instituto Federal de Educação, Ciência e Tecnologia de Alagoas'),
(109337, 'https://ror.org/05xmt4746', 'en', 0, 'https://ror.org/05xmt4746 Hainan 301 Hospital č§£ę”¾å†›ę€»åŒ»é™¢ęµ·å—åŒ»é™¢'),
(109338, 'https://ror.org/05dz0mr61', 'en', 1, 'https://ror.org/05dz0mr61 Shenzhen Pregene Biopharma Co., Ltd. Shenzhen Pregene Biopharma Co., Ltd. (China) ę·±åœ³ę™®ē‘žé‡‘ē”Ÿē‰©čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(109339, 'https://ror.org/02mxmh518', 'en', 0, 'https://ror.org/02mxmh518 Okanagan University College'),
(109340, 'https://ror.org/05xsb5925', 'en', 1, 'https://ror.org/05xsb5925 United States Army Combined Arms Center'),
(109341, 'https://ror.org/05njvy161', 'en', 1, 'https://ror.org/05njvy161 International Centre for Water Resources and Global Change Internationales Zentrum für Wasserressourcen und Globalen Wandel'),
(109342, 'https://ror.org/018n39k75', 'en', 1, 'https://ror.org/018n39k75 Aalborg Centre for Problem Based Learning in Engineering Science and Sustainability'),
(109343, 'https://ror.org/036qacm67', 'en', 1, 'https://ror.org/036qacm67 Gour Mahavidyalaya ą¦—ą§Œą¦”ą¦¼ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109344, 'https://ror.org/04t0ycd05', 'en', 1, 'https://ror.org/04t0ycd05 Swisssem'),
(109345, 'https://ror.org/04v0m1m23', 'id', 1, 'https://ror.org/04v0m1m23 Politeknik Kota Malang'),
(109346, 'https://ror.org/05frret15', 'pt', 1, 'https://ror.org/05frret15 Centro de Estudos de Fenómenos de Transporte Transport Phenomena Research Center'),
(109347, 'https://ror.org/030sqvy05', 'fr', 1, 'https://ror.org/030sqvy05 Laboratoire de Signalisation et Physiopathologie Cardiovasculaire Laboratory of Signalling and Cardiovascular Pathophysiology'),
(109348, 'https://ror.org/01aht8z37', 'en', 1, 'https://ror.org/01aht8z37 Demartino Public Hospital'),
(109349, 'https://ror.org/02anr8k37', 'en', 1, 'https://ror.org/02anr8k37 International Research and Training Centre for Science and Technology Strategy äø­å›½ē§‘å­¦ęŠ€ęœÆå‘å±•ęˆ˜ē•„ē ”ē©¶é™¢'),
(109350, 'https://ror.org/0411txc13', 'pt', 1, 'https://ror.org/0411txc13 Centro de Investigação da Terra e do Espaço'),
(109351, 'https://ror.org/0535eqg88', 'fr', 1, 'https://ror.org/0535eqg88 Centre International de MathƩmatiques Pures et AppliquƩes International Centre for Pure and Applied Mathematics'),
(109352, 'https://ror.org/026xdv168', 'no_lang_code', 1, 'https://ror.org/026xdv168 De Gruyter Brill De Gruyter Brill (Germany)'),
(109353, 'https://ror.org/02b9d0n72', 'en', 1, 'https://ror.org/02b9d0n72 SupƩlec ONERA DSTA Research Alliance'),
(109354, 'https://ror.org/03pkh6520', 'pt', 1, 'https://ror.org/03pkh6520 Grupo de Investigação em Engenharia e Computação Inteligente para a Inovação e o Desenvolvimento'),
(109355, 'https://ror.org/0419y0m35', 'en', 1, 'https://ror.org/0419y0m35 Isfahan Regional Center for Technology Incubators and Science Parks Development'),
(109356, 'https://ror.org/01t3s1q45', 'en', 1, 'https://ror.org/01t3s1q45 Regional Experimental Centre for Sanitation Technologies'),
(109357, 'https://ror.org/05e6z8230', 'en', 1, 'https://ror.org/05e6z8230 BioMark Sensor Research'),
(109358, 'https://ror.org/011cp4r12', 'pt', 1, 'https://ror.org/011cp4r12 Center of Intelligent Systems Centro de Sistemas Inteligentes'),
(109359, 'https://ror.org/05cayv663', 'no_lang_code', 1, 'https://ror.org/05cayv663 Stone Circuit Boards Stone Circuitos Impressos (Portugal)'),
(109360, 'https://ror.org/03synvw58', 'fr', 1, 'https://ror.org/03synvw58 Institut FranƧais de la Vigne et du Vin'),
(109361, 'https://ror.org/05detrt70', 'en', 1, 'https://ror.org/05detrt70 NSF NCAR Research Applications Laboratory'),
(109362, 'https://ror.org/02tpb5702', 'en', 1, 'https://ror.org/02tpb5702 Pluto Press'),
(109363, 'https://ror.org/05pr37258', 'en', 1, 'https://ror.org/05pr37258 Health Sciences Centre'),
(109364, 'https://ror.org/038x32w97', 'fr', 1, 'https://ror.org/038x32w97 ChronothƩrapie, cancers et transplantation'),
(109365, 'https://ror.org/035e2s580', 'no_lang_code', 1, 'https://ror.org/035e2s580 EvoLogics GmbH EvoLogics GmbH (Germany)'),
(109366, 'https://ror.org/00p7fpt19', 'en', 1, 'https://ror.org/00p7fpt19 Military Technological College');
INSERT INTO `rors` VALUES
(109367, 'https://ror.org/02cvd7c90', 'es', 1, 'https://ror.org/02cvd7c90 Instituto Mexicano del Transporte'),
(109368, 'https://ror.org/0190t5s25', 'en', 1, 'https://ror.org/0190t5s25 Sustainable Prosperity Initiative Nepal'),
(109369, 'https://ror.org/012rct222', 'en', 1, 'https://ror.org/012rct222 Changchun Institute of Optics, Fine Mechanics and Physics äø­å›½ē§‘å­¦é™¢é•æę˜„å…‰å­¦ē²¾åÆ†ęœŗę¢°äøŽē‰©ē†ē ”ē©¶ę‰€'),
(109370, 'https://ror.org/040rsxp47', 'fr', 1, 'https://ror.org/040rsxp47 Neuropathies PƩriphƩriques et Innovations ThƩrapeutiques'),
(109371, 'https://ror.org/04sbg3r30', 'fr', 1, 'https://ror.org/04sbg3r30 NMS Berne'),
(109372, 'https://ror.org/01snnxs56', 'pt', 1, 'https://ror.org/01snnxs56 Instituto das Comunidades Educativas'),
(109373, 'https://ror.org/00v7kzy54', 'no_lang_code', 1, 'https://ror.org/00v7kzy54 Grünenthal (Portugal)'),
(109374, 'https://ror.org/04mj80311', 'ja', 1, 'https://ror.org/04mj80311 National Instruments (Japan)'),
(109375, 'https://ror.org/01rc60n61', 'en', 1, 'https://ror.org/01rc60n61 Centre for the Sustainable Management of Water Resources in the Caribbean Island Sates'),
(109376, 'https://ror.org/02771np58', 'en', 1, 'https://ror.org/02771np58 IB-Cancer Research Foundation'),
(109377, 'https://ror.org/01bw5rm87', 'en', 1, 'https://ror.org/01bw5rm87 Bangladesh Atomic Energy Commission বাংলাদেশ পরমাণু ą¦¶ą¦•ą§ą¦¤ą¦æ কমিশন'),
(109378, 'https://ror.org/05862k391', 'id', 1, 'https://ror.org/05862k391 Muhammadiyah Bandung University UM Bandung Universitas Muhammadiyah Bandung'),
(109379, 'https://ror.org/03x368n87', 'en', 1, 'https://ror.org/03x368n87 Abylkas Saginov Karaganda Technical University Ó˜Š±Ń–Š»Ņ›Š°Ń Дағынов атынГағы ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(109380, 'https://ror.org/00sv48x88', 'en', 1, 'https://ror.org/00sv48x88 Institute of Industrial Economics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіки промисловості'),
(109381, 'https://ror.org/041s4g143', 'no_lang_code', 1, 'https://ror.org/041s4g143 Salvor Sociedade de Investimento Hoteleiro (Portugal) Salvor Sociedade de Investimento Hoteleiro, S.A.'),
(109382, 'https://ror.org/046hw5281', 'en', 1, 'https://ror.org/046hw5281 Nova School of Business and Economics Library'),
(109383, 'https://ror.org/02gg6pa94', 'en', 1, 'https://ror.org/02gg6pa94 Kerala Forest Research Institute கேரள வன ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ ą“•ąµ‡ą“°ą“³ ą“µą“Øą“—ą“µąµ‡ą“·ą“£ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(109384, 'https://ror.org/03fx7vd72', 'en', 1, 'https://ror.org/03fx7vd72 P. R. Pote Patil College of Engineering & Management, Amravati'),
(109385, 'https://ror.org/01xbtjm93', 'en', 1, 'https://ror.org/01xbtjm93 Islamic Azad University, Fasa Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŁˆŲ§Ų­ŲÆ فسا'),
(109386, 'https://ror.org/03cvzf910', 'pt', 1, 'https://ror.org/03cvzf910 MARE - Centro de CiĆŖncias do Mar e do Ambiente'),
(109387, 'https://ror.org/00qf76b12', 'pt', 1, 'https://ror.org/00qf76b12 Instituto Empresarial do TĆ¢mega'),
(109388, 'https://ror.org/03k2k6011', 'pt', 1, 'https://ror.org/03k2k6011 ISEG - Instituto Superior de Economia e Gestão University of Lisbon Higher Institute of Economics and Management'),
(109389, 'https://ror.org/00r693281', 'en', 1, 'https://ror.org/00r693281 Institute of Pig Breeding and Agroindustrial Production of the National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ свинарства і агропромислового виробництва ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(109390, 'https://ror.org/02wsd5p50', 'en', 1, 'https://ror.org/02wsd5p50 Vietnam Academy of Science and Technology Viện HĆ n lĆ¢m Khoa hį»c vĆ  CĆ“ng nghệ Việt Nam'),
(109391, 'https://ror.org/00j0rk173', 'en', 1, 'https://ror.org/00j0rk173 Marconi University UniversitƠ degli Studi Guglielmo Marconi UniversitƩ des Ʃtudes guglielmo marconi'),
(109392, 'https://ror.org/019v0g155', 'pt', 1, 'https://ror.org/019v0g155 Instituto CRIAP'),
(109393, 'https://ror.org/018g8by31', 'no_lang_code', 1, 'https://ror.org/018g8by31 Solkeys Solkeys (Spain)'),
(109394, 'https://ror.org/01hqy5n02', 'en', 1, 'https://ror.org/01hqy5n02 State Educational Institution "Academy of Education" Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ā«ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ ŠžŠ‘Š ŠŠ—ŠžŠ’ŠŠŠ˜ŠÆĀ» Š”Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń ŃžŃŃ‚Š°Š½Š¾Š²Š° Š°Š“ŃƒŠŗŠ°Ń†Ń‹Ń– Ā«ŠŠšŠŠ”Š­ŠœŠ†ŠÆ ŠŠ”Š£ŠšŠŠ¦Š«Š†Ā»'),
(109395, 'https://ror.org/01ebs6k31', 'es', 1, 'https://ror.org/01ebs6k31 Instituto de Ciencias'),
(109396, 'https://ror.org/024hnwe62', 'fr', 0, 'https://ror.org/024hnwe62 Developmental Biology Laboratory Laboratoire de Biologie du DƩveloppement'),
(109397, 'https://ror.org/042ezq693', 'en', 1, 'https://ror.org/042ezq693 Advanced Mining Technology Center Centro Avanzado de TecnologĆ­a para la MinerĆ­a'),
(109398, 'https://ror.org/00nqhfc30', 'fr', 1, 'https://ror.org/00nqhfc30 GR-Trans : Groupe de Recherche en TransidentitƩs'),
(109399, 'https://ror.org/04hrvh150', 'no_lang_code', 1, 'https://ror.org/04hrvh150 Grupo Pedago (Portugal) Pedago Group'),
(109400, 'https://ror.org/0033rtn64', 'no_lang_code', 1, 'https://ror.org/0033rtn64 Gedeon Richter (Hungary) Richter Gedeon Nyrt'),
(109401, 'https://ror.org/02xerpt86', 'en', 1, 'https://ror.org/02xerpt86 St. Boniface Hospital'),
(109402, 'https://ror.org/04zkjzt52', 'ro', 1, 'https://ror.org/04zkjzt52 Institutul Clinic de Urologie și Transplant Renal Cluj'),
(109403, 'https://ror.org/052aws486', 'en', 1, 'https://ror.org/052aws486 Center for Integrated and Multidisciplinary Water Resources Management'),
(109404, 'https://ror.org/0467pvr81', 'pt', 1, 'https://ror.org/0467pvr81 Unidade de Investigação Nova SBE'),
(109405, 'https://ror.org/03sft3r75', 'de', 1, 'https://ror.org/03sft3r75 Akkon Hochschule für Humanwissenschaften Akkon Hochschule für Humanwissenschaften gGmbH Johanniter University of Applied Sciences'),
(109406, 'https://ror.org/00a2n7220', 'fr', 1, 'https://ror.org/00a2n7220 Ɖtudes sur les Sciences et les Techniques'),
(109407, 'https://ror.org/00mfpxb84', 'fr', 1, 'https://ror.org/00mfpxb84 University of Avignon UniversitƩ d''Avignon et des Pays de Vaucluse'),
(109408, 'https://ror.org/027y41g36', 'en', 1, 'https://ror.org/027y41g36 Ministry of Education and Culture Ministry of Education and Culture – Government of Samoa'),
(109409, 'https://ror.org/01bm50s04', 'tr', 1, 'https://ror.org/01bm50s04 Eskişehir Anadolu Lisesi'),
(109410, 'https://ror.org/04ek0a809', 'no_lang_code', 1, 'https://ror.org/04ek0a809 Gilead Sciences (Portugal)'),
(109411, 'https://ror.org/049h51c33', 'no_lang_code', 1, 'https://ror.org/049h51c33 Health Products Research and Development (Portugal)'),
(109412, 'https://ror.org/02hnjd848', 'en', 1, 'https://ror.org/02hnjd848 Fujian Academy of Chinese Medicine Sciences ē¦å»ŗēœäø­åŒ»čÆē§‘å­¦é™¢'),
(109413, 'https://ror.org/01p825v31', 'en', 1, 'https://ror.org/01p825v31 Alliance for Education on Probiotics'),
(109414, 'https://ror.org/04kjrtp25', 'pl', 1, 'https://ror.org/04kjrtp25 Central Forensic Laboratory of the Police Centralne Laboratorium Kryminalistyczne Policji'),
(109415, 'https://ror.org/03ftn5w97', 'en', 1, 'https://ror.org/03ftn5w97 Basque Culinary Center'),
(109416, 'https://ror.org/01yvark48', 'en', 1, 'https://ror.org/01yvark48 NOAA Integrated Ocean Observing System'),
(109417, 'https://ror.org/047fp3543', 'en', 1, 'https://ror.org/047fp3543 Higher National School of Renewable Energies, Environment & Sustainable Development المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للطاقات المتجددة ŁˆŲ§Ł„ŲØŁŠŲ¦Ų© ŁˆŲ§Ł„ŲŖŁ†Ł…ŁŠŲ© المستدامة'),
(109418, 'https://ror.org/008kn4z11', 'fr', 1, 'https://ror.org/008kn4z11 DƩlƩgation Ile-de-France Villejuif'),
(109419, 'https://ror.org/038a0ty60', 'en', 1, 'https://ror.org/038a0ty60 International Centre for South-South Cooperation in Science, Technology and Innovation International Science, Technology and Innovation Centre for South-South Cooperation'),
(109420, 'https://ror.org/04qrtty26', 'en', 1, 'https://ror.org/04qrtty26 HemoNED - Dutch Hemophilia Registry'),
(109421, 'https://ror.org/02zt1gg83', 'en', 1, 'https://ror.org/02zt1gg83 International Atomic Energy Agency Internationale Atomenergie-Organisation Mednarodna agencija za jedrsko energijo Međunarodna agencija za atomsku energiju Nemzetkƶzi Atomenergia-ügynƶksĆ©g'),
(109422, 'https://ror.org/0332t5716', 'no_lang_code', 1, 'https://ror.org/0332t5716 Give U Design Art (Portugal)'),
(109423, 'https://ror.org/00m5mvp27', 'pt', 1, 'https://ror.org/00m5mvp27 Núcleo de Investigação e Desenvolvimento em Educação'),
(109424, 'https://ror.org/05jekdj60', 'fr', 1, 'https://ror.org/05jekdj60 Centre d''Imagerie Multimodale'),
(109425, 'https://ror.org/034amdq04', 'pt', 1, 'https://ror.org/034amdq04 Sociedade Portuguesa de Neurologia'),
(109426, 'https://ror.org/03q11ek36', 'en', 1, 'https://ror.org/03q11ek36 Government College University Hyderabad ŚÆŁˆŲ±Ł†Ł…ŁŠŁ†Ł½ ŚŖŲ§Ł„ŁŠŲ¬ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ,حيدرآباد'),
(109427, 'https://ror.org/00cpdar66', 'fr', 1, 'https://ror.org/00cpdar66 Laboratoire d''Ɖtude de l''Univers et des PhĆ©nomĆØnes ExtrĆŖmes'),
(109428, 'https://ror.org/00prvqp73', 'fr', 1, 'https://ror.org/00prvqp73 Institut RhÓnalpin des Systèmes Complexes'),
(109429, 'https://ror.org/05g46av80', 'en', 1, 'https://ror.org/05g46av80 BRB Hospitals LTD বিআরবি হসপিটালস ą¦²ą¦æą¦®ą¦æą¦Ÿą§‡ą¦”'),
(109430, 'https://ror.org/0297cew58', 'no_lang_code', 0, 'https://ror.org/0297cew58 Joalvi Commercial Textiles Ltd Joalvi Comércio Têxteis Unipessoal (Portugal)'),
(109431, 'https://ror.org/05j8mvd88', 'pt', 1, 'https://ror.org/05j8mvd88 Laboratório Colaborativo para o Trabalho, Emprego e Proteção Social'),
(109432, 'https://ror.org/05htk5m33', 'en', 1, 'https://ror.org/05htk5m33 Hunan University ę¹–å—å¤§å­¦'),
(109433, 'https://ror.org/05jn03e26', 'fr', 1, 'https://ror.org/05jn03e26 Les arts dƩcoratifs'),
(109434, 'https://ror.org/02546v940', 'en', 1, 'https://ror.org/02546v940 Turkish Patent and Trademark Organization TÜRKPATENT Türk Patent ve Marka Kurumu'),
(109435, 'https://ror.org/0318tzh81', 'fr', 1, 'https://ror.org/0318tzh81 Virologie'),
(109436, 'https://ror.org/02gme4h42', 'en', 1, 'https://ror.org/02gme4h42 Gongju Medical Center ź³µģ£¼ģ˜ė£Œģ›'),
(109437, 'https://ror.org/011t73165', 'fr', 1, 'https://ror.org/011t73165 Centre de recherche sur les innovations et les transformations sociales Research Center on Social Innovation and Transformation'),
(109438, 'https://ror.org/03e691z93', 'en', 1, 'https://ror.org/03e691z93 Media and Journalism Research Center'),
(109439, 'https://ror.org/0437ap982', 'en', 1, 'https://ror.org/0437ap982 Konyang University Buyeo Hospital ź±“ģ–‘ėŒ€ķ•™źµ 부여병원'),
(109440, 'https://ror.org/01s1km724', 'es', 1, 'https://ror.org/01s1km724 Universidad de las AmƩricas Puebla'),
(109441, 'https://ror.org/05v727m31', 'fr', 0, 'https://ror.org/05v727m31 CommunautƩ UniversitƩ Grenoble Alpes Community University Grenoble Alps'),
(109442, 'https://ror.org/04rzzr925', 'en', 1, 'https://ror.org/04rzzr925 Gyeonggi Provincal Medical Center Paju Hospital ź²½źø°ė„ģ˜ė£Œģ› ķŒŒģ£¼ė³‘ģ›'),
(109443, 'https://ror.org/0214k6v65', 'fr', 1, 'https://ror.org/0214k6v65 Laboratoire de Physique de Clermont Auvergne'),
(109444, 'https://ror.org/04hxybt44', 'id', 1, 'https://ror.org/04hxybt44 Institut Bisnis dan Teknologi Indonesia'),
(109445, 'https://ror.org/039gdg280', 'en', 1, 'https://ror.org/039gdg280 Hochschule für Technik Stuttgart Stuttgart Technical University of Applied Sciences'),
(109446, 'https://ror.org/01qjd1497', 'fr', 1, 'https://ror.org/01qjd1497 Centre de recherche bretonne et celtique'),
(109447, 'https://ror.org/03j7gdf68', 'en', 1, 'https://ror.org/03j7gdf68 Mogam Institute for Biomedical Research ėŖ©ģ•”ģƒėŖ…ź³¼ķ•™ģ—°źµ¬ģ†Œ'),
(109448, 'https://ror.org/02bs3zv47', 'en', 1, 'https://ror.org/02bs3zv47 Jeonnam Research Institute 전남연구원'),
(109449, 'https://ror.org/05xga6t39', 'fr', 1, 'https://ror.org/05xga6t39 CollĆØge MacDonald'),
(109450, 'https://ror.org/050ttrs82', 'en', 1, 'https://ror.org/050ttrs82 Soonchunhyang University Hospital Gumi ģˆœģ²œķ–„ėŒ€ķ•™źµ 구미병원'),
(109451, 'https://ror.org/02fzqav45', 'en', 1, 'https://ror.org/02fzqav45 State Council of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½å›½åŠ”é™¢'),
(109452, 'https://ror.org/00szdrw29', 'es', 1, 'https://ror.org/00szdrw29 Facultad de Estudios Superiores Aragón'),
(109453, 'https://ror.org/008hxwy89', 'fr', 1, 'https://ror.org/008hxwy89 Institut de recherches arctiques Jean Malaurie Malaurie Institute of Arctic Research'),
(109454, 'https://ror.org/02jnxkf76', 'en', 1, 'https://ror.org/02jnxkf76 Akhand Jyoti Eye Hospital'),
(109455, 'https://ror.org/0146j2x71', 'en', 1, 'https://ror.org/0146j2x71 Gangwon State Yeongwol Medical Center ź°•ģ›ķŠ¹ė³„ģžģ¹˜ė„ģ˜ģ›”ģ˜ė£Œģ›'),
(109456, 'https://ror.org/04gvzsd39', 'fr', 1, 'https://ror.org/04gvzsd39 ISEG'),
(109457, 'https://ror.org/03qng4b58', 'en', 1, 'https://ror.org/03qng4b58 Wonkwang University Sanbon Hospital ģ›ź“‘ėŒ€ķ•™źµ 산본병원'),
(109458, 'https://ror.org/016t48x91', 'en', 1, 'https://ror.org/016t48x91 Extrica'),
(109459, 'https://ror.org/02v4g3v80', 'en', 1, 'https://ror.org/02v4g3v80 Department of Science and Technology of Inner Mongolia Autonomous Region å†…č’™å¤č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(109460, 'https://ror.org/03w796f45', 'eu', 1, 'https://ror.org/03w796f45 AcadƩmie de la langue basque Euskaltzaindia Real Academia de la Lengua Vasca'),
(109461, 'https://ror.org/01y88kd38', 'es', 1, 'https://ror.org/01y88kd38 Escuela de Enfermería Angelópolis'),
(109462, 'https://ror.org/05g0qby12', 'en', 1, 'https://ror.org/05g0qby12 Shri Guru Ram Rai University'),
(109463, 'https://ror.org/00bxwx839', 'en', 1, 'https://ror.org/00bxwx839 Associazione Italiana Editori Italian Publishers Association'),
(109464, 'https://ror.org/05jbf6z15', 'en', 1, 'https://ror.org/05jbf6z15 North Eastern Institute of Ayurveda and Homoeopathy'),
(109465, 'https://ror.org/00fz8k419', 'de', 1, 'https://ror.org/00fz8k419 HFR Freiburg Kantonsspital'),
(109466, 'https://ror.org/05ktf0c82', 'en', 1, 'https://ror.org/05ktf0c82 Netrokona University ą¦Øą§‡ą¦¤ą§ą¦°ą¦•ą§‹ą¦£ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109467, 'https://ror.org/02k7jpz69', 'fr', 1, 'https://ror.org/02k7jpz69 Ɖcole supĆ©rieure d''art Annecy Alpes'),
(109468, 'https://ror.org/01j5zzr31', 'en', 1, 'https://ror.org/01j5zzr31 The Open Group'),
(109469, 'https://ror.org/03ehee371', 'en', 1, 'https://ror.org/03ehee371 Seosan Medical Center ģ„œģ‚°ģ˜ė£Œģ›'),
(109470, 'https://ror.org/01c2sx728', 'en', 1, 'https://ror.org/01c2sx728 Shaanxi Science and Technology Department é™•č„æēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(109471, 'https://ror.org/051dczx73', 'en', 1, 'https://ror.org/051dczx73 Nonghyup Food Research Institute Nonghyup Food Research Institute (South Korea) ė†ķ˜‘ģ‹ķ’ˆR&Dģ—°źµ¬ģ†Œ'),
(109472, 'https://ror.org/04nrv3s86', 'es', 1, 'https://ror.org/04nrv3s86 Institute for Mediterranean and Subtropical Horticulture "La Mayoraā€ Instituto de Hortofruticultura Subtropical y MediterrĆ”nea "La Mayora"'),
(109473, 'https://ror.org/01rk35k63', 'fr', 1, 'https://ror.org/01rk35k63 Lyongo unibertsitatea UniversitƩ de Lyon'),
(109474, 'https://ror.org/0091hhm06', 'en', 1, 'https://ror.org/0091hhm06 Wonkwang University Gwangju Medical Center ģ›ź“‘ėŒ€ķ•™źµ ź“‘ģ£¼ķ•œė°©ė³‘ģ›'),
(109475, 'https://ror.org/01qkxmg64', 'en', 1, 'https://ror.org/01qkxmg64 Education Design Lab'),
(109476, 'https://ror.org/05atctj59', 'en', 1, 'https://ror.org/05atctj59 Turkmen State Medical University Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŠøŠø'),
(109477, 'https://ror.org/00xvf9d29', 'en', 1, 'https://ror.org/00xvf9d29 Education Department of Henan Province ę²³å—ēœę•™č‚²åŽ…'),
(109478, 'https://ror.org/01xp57w77', 'en', 1, 'https://ror.org/01xp57w77 Beijing Municipal Government åŒ—äŗ¬åø‚ę”æåŗœ'),
(109479, 'https://ror.org/01jfb0069', 'en', 1, 'https://ror.org/01jfb0069 NGO "Eastern European Union of Scientists"'),
(109480, 'https://ror.org/01q1pz867', 'en', 1, 'https://ror.org/01q1pz867 Korea Development Bank ķ•œźµ­ģ‚°ģ—…ģ€ķ–‰'),
(109481, 'https://ror.org/02m79yz62', 'en', 1, 'https://ror.org/02m79yz62 Jeju Women & Family Research Institute ģ œģ£¼ģ—¬ģ„±ź°€ģ”±ģ—°źµ¬ģ›'),
(109482, 'https://ror.org/04zg0cs74', 'en', 1, 'https://ror.org/04zg0cs74 Dongshin University Mokpo Korean Medicine Hospital ėŖ©ķ¬ė™ģ‹ ėŒ€ķ•™źµķ•œė°©ė³‘ģ›'),
(109483, 'https://ror.org/02cfe6r19', 'en', 1, 'https://ror.org/02cfe6r19 Nico-tama Coloproctology Clinic ćƒ‹ć‚³ć‚æćƒžå¤§č…øćƒ»č‚›é–€ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(109484, 'https://ror.org/03tekc442', 'en', 1, 'https://ror.org/03tekc442 Dongguk University Gyeongju Oriental Medicine Clinic ė™źµ­ėŒ€ķ•™źµ ź²½ģ£¼ķ•œģ˜ģ›'),
(109485, 'https://ror.org/043rxf076', 'en', 1, 'https://ror.org/043rxf076 Udice French Research Universities'),
(109486, 'https://ror.org/02kq62k80', 'en', 1, 'https://ror.org/02kq62k80 Taiwan Institute of Sports Science åœ‹å®¶é‹å‹•ē§‘å­øäø­åæƒ'),
(109487, 'https://ror.org/05v8kmm60', 'fr', 1, 'https://ror.org/05v8kmm60 NanomƩdecine, Biologie extracellulaire IntƩgratome et Innovations en santƩ'),
(109488, 'https://ror.org/057trhh06', 'fr', 1, 'https://ror.org/057trhh06 Dynamique des CapacitƩs Humaines et des Conduites de SantƩ'),
(109489, 'https://ror.org/00w0dbz25', 'no_lang_code', 1, 'https://ror.org/00w0dbz25 Sherbrooke O.E.M (Canada)'),
(109490, 'https://ror.org/00v7npr30', 'en', 1, 'https://ror.org/00v7npr30 Architecture & Urban Research Institute 걓축공간연구원'),
(109491, 'https://ror.org/00dhpdx54', 'en', 1, 'https://ror.org/00dhpdx54 Guangxi Science and Technology Department Gvangjsih Bouxcuengh Swcigih Gohyoz Gisuz Dingh å¹æč„æå£®ę—č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(109492, 'https://ror.org/01xnshd39', 'en', 1, 'https://ror.org/01xnshd39 Tianjin People''s Government å¤©ę“„åø‚äŗŗę°‘ę”æåŗœ'),
(109493, 'https://ror.org/01m0a8q03', 'en', 1, 'https://ror.org/01m0a8q03 Nigerian Building and Road Research Institute'),
(109494, 'https://ror.org/05g81h903', 'en', 1, 'https://ror.org/05g81h903 Trade Union University'),
(109495, 'https://ror.org/03h00nx35', 'fr', 1, 'https://ror.org/03h00nx35 Ɖcole supĆ©rieure de commerce international'),
(109496, 'https://ror.org/05ate2e14', 'fr', 0, 'https://ror.org/05ate2e14 Ɖcole des Mines de Douai'),
(109497, 'https://ror.org/05sat2s07', 'fr', 1, 'https://ror.org/05sat2s07 Littoral, Environnement, TƩlƩdƩtection, GƩomatique'),
(109498, 'https://ror.org/043zvrs33', 'en', 1, 'https://ror.org/043zvrs33 National Meteorological Satellite Center źµ­ź°€źø°ģƒģœ„ģ„±ģ„¼ķ„°'),
(109499, 'https://ror.org/0112tx473', 'id', 1, 'https://ror.org/0112tx473 STT Tiberias Jakarta Sekolah Tinggi Teologi Tiberias Jakarta'),
(109500, 'https://ror.org/01bk2mc10', 'de', 1, 'https://ror.org/01bk2mc10 Kolping Hochschule'),
(109501, 'https://ror.org/03d9x4621', 'en', 1, 'https://ror.org/03d9x4621 Katsina State Institute of Technology and Management'),
(109502, 'https://ror.org/01fv9q536', 'en', 1, 'https://ror.org/01fv9q536 Goyang City Institute 고양연구원'),
(109503, 'https://ror.org/037pqnq23', 'en', 1, 'https://ror.org/037pqnq23 Korea Aerospace Research Institute ķ•œźµ­ķ•­ź³µģš°ģ£¼ģ—°źµ¬ģ›'),
(109504, 'https://ror.org/037tz0e16', 'en', 1, 'https://ror.org/037tz0e16 London Health Sciences Centre'),
(109505, 'https://ror.org/05mz9t398', 'en', 1, 'https://ror.org/05mz9t398 mEDRA mEDRA srl'),
(109506, 'https://ror.org/00v6w5255', 'en', 1, 'https://ror.org/00v6w5255 Hanyang University International Hospital ķ•œģ–‘ėŒ€ķ•™źµźµ­ģ œė³‘ģ›'),
(109507, 'https://ror.org/05cf5m708', 'en', 1, 'https://ror.org/05cf5m708 Lviv Scientific Research Forensic Center of the Ministry of Internal Affairs of Ukraine Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ДосліГний Експертно-ŠšŃ€Ń–Š¼Ń–Š½Š°Š»Ń–ŃŃ‚ŠøŃ‡Š½ŠøŠ¹ Центр Мвс України'),
(109508, 'https://ror.org/05xg72x27', 'en', 1, 'https://ror.org/05xg72x27 Norges Teknisk-Naturvitenskapelige Universitet Norjan teknis-luonnontieteellinen yliopisto Norwegian University of Science and Technology'),
(109509, 'https://ror.org/02grwav03', 'en', 1, 'https://ror.org/02grwav03 NorESM Climate Modeling Consortium'),
(109510, 'https://ror.org/04m0ms912', 'en', 1, 'https://ror.org/04m0ms912 National Office of Philosophy and Social Sciences å…Øå›½å“²å­¦ē¤¾ä¼šē§‘å­¦å·„ä½œåŠžå…¬å®¤'),
(109511, 'https://ror.org/00m3k3802', 'en', 1, 'https://ror.org/00m3k3802 Cross Cancer Institute'),
(109512, 'https://ror.org/0466vx552', 'en', 1, 'https://ror.org/0466vx552 Chungnam National University Sejong Hospital ģ„øģ¢…ģ¶©ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(109513, 'https://ror.org/03bgf7t27', 'es', 1, 'https://ror.org/03bgf7t27 Universidad Nacional Experimental de la Gran Caracas'),
(109514, 'https://ror.org/05we5gj17', 'en', 0, 'https://ror.org/05we5gj17 Inje University Seoul Paik Hospital ģøģ œėŒ€ķ•™źµ ģ„œģšøė°±ė³‘ģ›'),
(109515, 'https://ror.org/02c01r047', 'fr', 1, 'https://ror.org/02c01r047 Laboratoire d''Ʃconomie de Dijon'),
(109516, 'https://ror.org/05fgmqm64', 'en', 1, 'https://ror.org/05fgmqm64 National Cancer Center Hospital 국립암센터 병원 국립암센터 ė¶€ģ†ė³‘ģ›'),
(109517, 'https://ror.org/04yznqr36', 'fr', 0, 'https://ror.org/04yznqr36 Jean Monnet University UniversitƩ Jean Monnet'),
(109518, 'https://ror.org/01thhk923', 'en', 1, 'https://ror.org/01thhk923 Dongshin University ė™ģ‹ ėŒ€ķ•™źµ'),
(109519, 'https://ror.org/04k9ke985', 'en', 1, 'https://ror.org/04k9ke985 Nonghyup Future Strategy Research Institute Nonghyup Future Strategy Research Institute (South Korea) ė†ķ˜‘ėÆøėž˜ģ „ėžµģ—°źµ¬ģ†Œ'),
(109520, 'https://ror.org/00j4p5x30', 'fr', 1, 'https://ror.org/00j4p5x30 Connaissance, organisation et systĆØmes techniques'),
(109521, 'https://ror.org/02c39sz82', 'en', 1, 'https://ror.org/02c39sz82 Sakana Consultants Sakana Consultants (France)'),
(109522, 'https://ror.org/00qbxky68', 'en', 1, 'https://ror.org/00qbxky68 Korea Carbon Industry Promotion Agency ķ•œźµ­ķƒ„ģ†Œģ‚°ģ—…ģ§„ķ„ģ›'),
(109523, 'https://ror.org/053yrm154', 'es', 1, 'https://ror.org/053yrm154 IDC Instituto de CÔncer Hemato Oncólogos Instituto de CÔncer Hemato Oncólogos'),
(109524, 'https://ror.org/0250h3a52', 'fr', 1, 'https://ror.org/0250h3a52 Physiopathologie et EpidƩmiologie CƩrƩbro-Cardiovasculaires'),
(109525, 'https://ror.org/058twm752', 'vi', 1, 'https://ror.org/058twm752 Bệnh viện Phong - Da liį»…u Trung ʰʔng Quy Hòa'),
(109526, 'https://ror.org/02f9eh597', 'fr', 1, 'https://ror.org/02f9eh597 Ɖcole de design Nantes Atlantique'),
(109527, 'https://ror.org/05881nc45', 'en', 1, 'https://ror.org/05881nc45 Korea Marine Equipment Research Institute ķ•œźµ­ģ”°ģ„ ķ•“ģ–‘źø°ģžģž¬ģ—°źµ¬ģ›'),
(109528, 'https://ror.org/04mgza367', 'en', 1, 'https://ror.org/04mgza367 CHA University Ilsan Medical Center ģ¼ģ‚°ģ°Øė³‘ģ›'),
(109529, 'https://ror.org/04qjh6n03', 'fr', 1, 'https://ror.org/04qjh6n03 Geotop Research Centre in Earth System Dynamics'),
(109530, 'https://ror.org/03qrab844', 'fr', 1, 'https://ror.org/03qrab844 Biomass Technology Laboratory Laboratoire des Technologies de la Biomasse'),
(109531, 'https://ror.org/05g6zgq36', 'en', 1, 'https://ror.org/05g6zgq36 Goethe-Institut Vereinigtes Kƶnigreich Goethe-Institute United Kingdom'),
(109532, 'https://ror.org/03gnxmx77', 'no_lang_code', 0, 'https://ror.org/03gnxmx77 Kemerovo Cardiology Center ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠ¾Š³Š¾ ŠšŠ°Ń€Š“ŠøŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ центра'),
(109533, 'https://ror.org/0154bb690', 'en', 1, 'https://ror.org/0154bb690 Korea University Guro Hospital ź³ ėŒ€źµ¬ė”œė³‘ģ› ź³ ė ¤ėŒ€ķ•™źµ źµ¬ė”œė³‘ģ›'),
(109534, 'https://ror.org/01pwqpc02', 'en', 1, 'https://ror.org/01pwqpc02 Center for Wildlife Studies'),
(109535, 'https://ror.org/02yfxxh25', 'en', 1, 'https://ror.org/02yfxxh25 Dankook University Sejong Dental Hospital ė‹Øźµ­ėŒ€ķ•™źµ ģ¹˜ź³¼ėŒ€ķ•™ ģ„øģ¢…ģ¹˜ź³¼ė³‘ģ›'),
(109536, 'https://ror.org/01r1eq391', 'en', 1, 'https://ror.org/01r1eq391 Carl Correns Foundation For Mathematical Biology'),
(109537, 'https://ror.org/02xk0ns75', 'en', 1, 'https://ror.org/02xk0ns75 Shinhan Bank Shinhan Bank (South Korea) ģ‹ ķ•œģ€ķ–‰'),
(109538, 'https://ror.org/01x2ksr57', 'fr', 1, 'https://ror.org/01x2ksr57 Europe Etats-Unis Empires-Post-Empires, Cultures, Histoire, LittƩratures, Longue durƩe et Sciences Sociales'),
(109539, 'https://ror.org/04x9a0q46', 'fr', 1, 'https://ror.org/04x9a0q46 Triangle : Action, Discours, PensƩe politique et Ʃconomique Triangle. Action, discourses, economic and political thought'),
(109540, 'https://ror.org/02dq20r43', 'en', 1, 'https://ror.org/02dq20r43 Dragon Rises College of Oriental Medicine'),
(109541, 'https://ror.org/04yxssd91', 'no_lang_code', 1, 'https://ror.org/04yxssd91 Advanced Photonix (United States)'),
(109542, 'https://ror.org/05tbg9t18', 'en', 1, 'https://ror.org/05tbg9t18 Jogamaya Devi College'),
(109543, 'https://ror.org/0494tzz73', 'fr', 1, 'https://ror.org/0494tzz73 Institut du cancer Rosalind & Morris Goodman Rosalind & Morris Goodman Cancer Institute'),
(109544, 'https://ror.org/03yppfm65', 'fr', 0, 'https://ror.org/03yppfm65 Stendhal University UniversitĆ© Stendhal – Grenoble 3'),
(109545, 'https://ror.org/00xdzs422', 'en', 1, 'https://ror.org/00xdzs422 Pohang Oriental Medicine Hospital of Daegu Haany University ėŒ€źµ¬ķ•œģ˜ėŒ€ķ¬ķ•­ķ•œė°©ė³‘ģ› ėŒ€źµ¬ķ•œģ˜ėŒ€ķ•™źµ ķ¬ķ•­ķ•œė°©ė³‘ģ›'),
(109546, 'https://ror.org/01d3bej53', 'pt', 1, 'https://ror.org/01d3bej53 Instituto Nacional de Estudos e Pesquisas Educacionais AnĆ­sio Teixeira'),
(109547, 'https://ror.org/02kb2dn85', 'no_lang_code', 1, 'https://ror.org/02kb2dn85 Kakao Corporation Kakao Corporation (South Korea) 칓칓오'),
(109548, 'https://ror.org/013km0e25', 'de', 1, 'https://ror.org/013km0e25 Institut für Notfallmedizin Allgäu'),
(109549, 'https://ror.org/0302k4c24', 'en', 1, 'https://ror.org/0302k4c24 Sri Lanka Institute of Development Administration'),
(109550, 'https://ror.org/05shr7d71', 'en', 1, 'https://ror.org/05shr7d71 A-Clinic Foundation'),
(109551, 'https://ror.org/00mff5m03', 'en', 1, 'https://ror.org/00mff5m03 SveučiliŔte VERN'' VERN'' University'),
(109552, 'https://ror.org/01v4tcx09', 'id', 1, 'https://ror.org/01v4tcx09 Politeknik Pembangunan Pertanian Malang'),
(109553, 'https://ror.org/05d3yke23', 'fr', 1, 'https://ror.org/05d3yke23 Higher National School of Landscape Ɖcole nationale supĆ©rieure de paysage'),
(109554, 'https://ror.org/041hem229', 'en', 1, 'https://ror.org/041hem229 Dong-Eui Hospital ė™ģ˜ė³‘ģ›'),
(109555, 'https://ror.org/00ak7t903', 'en', 1, 'https://ror.org/00ak7t903 Cheongju Research Institute ģ²­ģ£¼ģ‹œģ •ģ—°źµ¬ģ›'),
(109556, 'https://ror.org/0248pfh71', 'fr', 1, 'https://ror.org/0248pfh71 Institut de management et de communication interculturels'),
(109557, 'https://ror.org/0560dtp08', 'en', 1, 'https://ror.org/0560dtp08 Guangzhou Municipal Science and Technology Bureau å¹æå·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(109558, 'https://ror.org/05epbp274', 'en', 1, 'https://ror.org/05epbp274 Korea Research Institute for Fashion Industry ķ•œźµ­ķŒØģ…˜ģ‚°ģ—…ģ—°źµ¬ģ›'),
(109559, 'https://ror.org/00ss0a232', 'fr', 1, 'https://ror.org/00ss0a232 AMURE - Centre de droit et d''Ʃconomie de la mer'),
(109560, 'https://ror.org/04v1yb855', 'en', 1, 'https://ror.org/04v1yb855 United Steelworkers'),
(109561, 'https://ror.org/02n7ax847', 'fr', 1, 'https://ror.org/02n7ax847 Centre Pluridisciplinaire Textes et Cultures'),
(109562, 'https://ror.org/013yc5d80', 'en', 1, 'https://ror.org/013yc5d80 Space Operations Command'),
(109563, 'https://ror.org/05dfhha71', 'es', 1, 'https://ror.org/05dfhha71 Universidad Intercontinental de la Empresa'),
(109564, 'https://ror.org/04zxn2t77', 'en', 1, 'https://ror.org/04zxn2t77 Pusan National University Children''s Hospital ė¶€ģ‚°ėŒ€ķ•™źµģ–“ė¦°ģ“ė³‘ģ›'),
(109565, 'https://ror.org/03nzgkh49', 'fr', 1, 'https://ror.org/03nzgkh49 Ecole supƩrieure d''Art et Design Toulon Provence MƩditerranƩe'),
(109566, 'https://ror.org/00gskyj95', 'en', 1, 'https://ror.org/00gskyj95 Ningbo Science and Technology Bureau å®ę³¢åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(109567, 'https://ror.org/02aghm194', 'en', 1, 'https://ror.org/02aghm194 Nonghyup Nonghyup (South Korea) ė†ģ—…ķ˜‘ķ˜‘ė™ģ”°ķ•©ģ¤‘ģ•™ķšŒ ė†ķ˜‘ģ¤‘ģ•™ķšŒ'),
(109568, 'https://ror.org/01m9r8618', 'fr', 1, 'https://ror.org/01m9r8618 Ecole Nationale SupƩrieure des Technologies AvancƩes National Higher School of Advanced Technologies'),
(109569, 'https://ror.org/020yaek67', 'en', 1, 'https://ror.org/020yaek67 Gangjin Medical Center ź°•ģ§„ģ˜ė£Œģ›'),
(109570, 'https://ror.org/000xsnr85', 'en', 1, 'https://ror.org/000xsnr85 Euskal Herriko Unibertsitatea Universidad del PaĆ­s Vasco Universitat del PaĆ­s Basc University of the Basque Country'),
(109571, 'https://ror.org/025nwkd90', 'fr', 1, 'https://ror.org/025nwkd90 BibliothĆØque nationale et universitaire de Strasbourg National and University Library'),
(109572, 'https://ror.org/05fa5kd53', 'fr', 1, 'https://ror.org/05fa5kd53 HƩritage et CrƩation dans le Texte et l''Image'),
(109573, 'https://ror.org/01acyer19', 'en', 1, 'https://ror.org/01acyer19 Kyungpook National University Dental Hospital ź²½ė¶ėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(109574, 'https://ror.org/024nqsz94', 'en', 1, 'https://ror.org/024nqsz94 IMP Diagnostics IMP Diagnostics (Portugal)'),
(109575, 'https://ror.org/024nb2556', 'en', 1, 'https://ror.org/024nb2556 International Institute of Molecular Mechanisms and Machines Polish Academy of Science Międzynarodowy Instytut Mechanizmów i Maszyn Molekularnych Polskiej Akademii Nauk'),
(109576, 'https://ror.org/03p5eky76', 'en', 1, 'https://ror.org/03p5eky76 China Agriculture Research System ēŽ°ä»£å†œäøšäŗ§äøšęŠ€ęœÆä½“ē³»'),
(109577, 'https://ror.org/036c61f28', 'fr', 1, 'https://ror.org/036c61f28 Ɖcole Secondaire Sisler High School'),
(109578, 'https://ror.org/02kt9rj72', 'es', 1, 'https://ror.org/02kt9rj72 Fundación para la Conservación del Bosque Chiquitano'),
(109579, 'https://ror.org/04azj1350', 'es', 1, 'https://ror.org/04azj1350 Instituto de Psicologƭa BƔsica, Aplicada y Tecnologƭa'),
(109580, 'https://ror.org/000kjm556', 'en', 0, 'https://ror.org/000kjm556 General Administration of Quality Supervision, Inspection and Quarantine'),
(109581, 'https://ror.org/00ypk0v12', 'en', 1, 'https://ror.org/00ypk0v12 Ewha Womans University Mokdong Hospital ģ“ėŒ€ėŖ©ė™ė³‘ģ› ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ ėŖ©ė™ė³‘ģ›'),
(109582, 'https://ror.org/053hz0f96', 'en', 1, 'https://ror.org/053hz0f96 Ewha Womans University Aorta and Vascular Hospital ģ“ėŒ€ė™ė§„ķ˜ˆź“€ė³‘ģ› ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ ė™ė§„ķ˜ˆź“€ė³‘ģ›'),
(109583, 'https://ror.org/018h5ek25', 'en', 1, 'https://ror.org/018h5ek25 The Incheon Institute ģøģ²œģ—°źµ¬ģ›'),
(109584, 'https://ror.org/01xxxmv75', 'en', 1, 'https://ror.org/01xxxmv75 Baptist MD Anderson Cancer Center'),
(109585, 'https://ror.org/00dc0fn76', 'en', 1, 'https://ror.org/00dc0fn76 Suncheon Medical Center ģˆœģ²œģ˜ė£Œģ›'),
(109586, 'https://ror.org/05rwxjy27', 'en', 1, 'https://ror.org/05rwxjy27 Seoul National University Cancer Hospital ģ„œģšøėŒ€ģ•”ė³‘ģ› ģ„œģšøėŒ€ķ•™źµģ•”ė³‘ģ›'),
(109587, 'https://ror.org/055zxjg88', 'en', 1, 'https://ror.org/055zxjg88 Changwon Hanmaeum Hospital ģ°½ģ›ķ•œė§ˆģŒė³‘ģ›'),
(109588, 'https://ror.org/000rf5t55', 'fr', 1, 'https://ror.org/000rf5t55 ISC Paris Institut supƩrieur du commerce de Paris'),
(109589, 'https://ror.org/01et3vf73', 'en', 1, 'https://ror.org/01et3vf73 Kunshan Supercomputing Center å›½å®¶č¶…ēŗ§č®”ē®—ę˜†å±±äø­åæƒ'),
(109590, 'https://ror.org/00txjny54', 'en', 1, 'https://ror.org/00txjny54 Conseil Cri de la santƩ et des services sociaux de la Baie-James Cree Board of Health and Social Services of James Bay'),
(109591, 'https://ror.org/05ty8cs18', 'fr', 1, 'https://ror.org/05ty8cs18 MillƩnium QuƩbecor'),
(109592, 'https://ror.org/01gpxyz26', 'en', 1, 'https://ror.org/01gpxyz26 H. Skovoroda Institute of Philosophy of the National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ філософії імені Š“.Š”. ДковороГи ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ філософії імені Š“Ń€ŠøŠ³Š¾Ń€Ń–Ń ДковороГи ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń ŠŠ°ŃƒŠŗ Украіни'),
(109593, 'https://ror.org/05w61r586', 'en', 1, 'https://ror.org/05w61r586 St. Ignatius Loyola College Å v. Ignaco Lojolos Kolegija'),
(109594, 'https://ror.org/0005vby86', 'en', 1, 'https://ror.org/0005vby86 Yonsei Cancer Hospital 연세암병원'),
(109595, 'https://ror.org/03cbcg118', 'en', 1, 'https://ror.org/03cbcg118 CHA Gumi Hospital 구미차병원'),
(109596, 'https://ror.org/03sfcvs36', 'en', 1, 'https://ror.org/03sfcvs36 Vikas College of Engineering and Technology'),
(109597, 'https://ror.org/0133rp226', 'en', 1, 'https://ror.org/0133rp226 National Institute of Homoeopathy , Kolkata'),
(109598, 'https://ror.org/03m5xaf46', 'pt', 1, 'https://ror.org/03m5xaf46 Centro UniversitƔrio de Adamantina'),
(109599, 'https://ror.org/026r6c532', 'en', 1, 'https://ror.org/026r6c532 South Valley University'),
(109600, 'https://ror.org/02qdbgx97', 'en', 1, 'https://ror.org/02qdbgx97 Geisinger Health System'),
(109601, 'https://ror.org/02jpv3e53', 'en', 1, 'https://ror.org/02jpv3e53 Gunsan Medical Center źµ°ģ‚°ģ˜ė£Œģ›'),
(109602, 'https://ror.org/0357msq30', 'en', 1, 'https://ror.org/0357msq30 Yongin Severance Hospital ģš©ģøģ„øėøŒėž€ģŠ¤ė³‘ģ›'),
(109603, 'https://ror.org/0011pmj28', 'en', 1, 'https://ror.org/0011pmj28 Korea Research Institute on Climate Change ķ•œźµ­źø°ķ›„ė³€ķ™”ģ—°źµ¬ģ›'),
(109604, 'https://ror.org/025zn3p72', 'en', 1, 'https://ror.org/025zn3p72 Knowledge Exchange'),
(109605, 'https://ror.org/04b7fym73', 'en', 1, 'https://ror.org/04b7fym73 Khulna Medical University খুলনা ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109606, 'https://ror.org/05fqp8n03', 'en', 1, 'https://ror.org/05fqp8n03 Ajou University Intermediate Care Hospital ģ•„ģ£¼ėŒ€ķ•™źµ ģš”ģ–‘ė³‘ģ›'),
(109607, 'https://ror.org/05cfy3e91', 'en', 1, 'https://ror.org/05cfy3e91 Korean Agency for Technology and Standards źµ­ź°€źø°ģˆ ķ‘œģ¤€ģ›'),
(109608, 'https://ror.org/00f1zfq44', 'en', 1, 'https://ror.org/00f1zfq44 Central South University äø­å—å¤§å­¦'),
(109609, 'https://ror.org/023331s46', 'en', 1, 'https://ror.org/023331s46 The George Institute for Global Health'),
(109610, 'https://ror.org/02bjqcp14', 'no_lang_code', 1, 'https://ror.org/02bjqcp14 Mynvax Mynvax (India)'),
(109611, 'https://ror.org/03vrr2435', 'en', 1, 'https://ror.org/03vrr2435 National Center for Mental Health 국립정신걓강센터'),
(109612, 'https://ror.org/05b1f6q13', 'de', 1, 'https://ror.org/05b1f6q13 Landesamt für Gesundheit und Soziales'),
(109613, 'https://ror.org/020m7t761', 'en', 1, 'https://ror.org/020m7t761 Samsung Electronics Samsung Electronics (South Korea) Samsung Electronics Co., Ltd. ģ‚¼ģ„±ģ „ģž ģ£¼ģ‹ķšŒģ‚¬'),
(109614, 'https://ror.org/01f1amm71', 'fr', 1, 'https://ror.org/01f1amm71 Laboratoire Traitement du Signal et de l''Image'),
(109615, 'https://ror.org/01qrnj512', 'en', 1, 'https://ror.org/01qrnj512 Nourse Science Centre for Pet Nutrition Nourse Science Centre for Pet Nutrition (China)'),
(109616, 'https://ror.org/03rrd1912', 'en', 1, 'https://ror.org/03rrd1912 People for the Ethical Treatment of Animals'),
(109617, 'https://ror.org/059ynac98', 'fr', 1, 'https://ror.org/059ynac98 Centre Atlantique de Philosophie'),
(109618, 'https://ror.org/010jbqd54', 'en', 1, 'https://ror.org/010jbqd54 University of Lancashire'),
(109619, 'https://ror.org/0304hg989', 'en', 1, 'https://ror.org/0304hg989 Gyeongnam Institute 경남연구원'),
(109620, 'https://ror.org/038kqx890', 'fr', 1, 'https://ror.org/038kqx890 Laboratoire d''Informatique de Bourgogne'),
(109621, 'https://ror.org/014e1xw86', 'fr', 1, 'https://ror.org/014e1xw86 Centre des hautes Ʃtudes de la construction'),
(109622, 'https://ror.org/01rvv0733', 'fr', 1, 'https://ror.org/01rvv0733 National School of Arts and Techniques of theater Ɖcole nationale supĆ©rieure des arts et techniques du théâtre'),
(109623, 'https://ror.org/04yggzp50', 'en', 1, 'https://ror.org/04yggzp50 United States Space Force Space Training and Readiness Command'),
(109624, 'https://ror.org/02gnf3372', 'en', 1, 'https://ror.org/02gnf3372 Korea Fire Institute ķ•œźµ­ģ†Œė°©ģ‚°ģ—…źø°ģˆ ģ›'),
(109625, 'https://ror.org/044b0v477', 'en', 1, 'https://ror.org/044b0v477 Chungnam Institute of History and Culture 충남역사문화연구원'),
(109626, 'https://ror.org/01vf6fe11', 'en', 1, 'https://ror.org/01vf6fe11 Korea Exchange ķ•œźµ­ź±°ėž˜ģ†Œ'),
(109627, 'https://ror.org/029x2tx62', 'en', 1, 'https://ror.org/029x2tx62 Chukwuemeka Odumegwu Ojukwu University, Igbariam Campus'),
(109628, 'https://ror.org/04pfqvy45', 'fr', 1, 'https://ror.org/04pfqvy45 Ɖcole nationale des sports de montagne'),
(109629, 'https://ror.org/04t0gwh46', 'fr', 1, 'https://ror.org/04t0gwh46 Institut Curie Institute Curie'),
(109630, 'https://ror.org/00ccg8z84', 'en', 1, 'https://ror.org/00ccg8z84 European Blood Alliance'),
(109631, 'https://ror.org/01jncbd09', 'no_lang_code', 1, 'https://ror.org/01jncbd09 Prometeon Tyre Group S.R.L. Prometeon Tyre Group S.R.L. (Italy)'),
(109632, 'https://ror.org/02ktmdj25', 'en', 1, 'https://ror.org/02ktmdj25 Leading English Education and Resource Network RĆ©seau des ressources pour l’éducation anglophone'),
(109633, 'https://ror.org/035g89j34', 'en', 1, 'https://ror.org/035g89j34 KDI School of Public Policy and Management ķ•œźµ­ź°œė°œģ—°źµ¬ģ› źµ­ģ œģ •ģ±…ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(109634, 'https://ror.org/025d8rj75', 'en', 1, 'https://ror.org/025d8rj75 Yeungnam University Yeongcheon Hospital ģ˜ė‚ØėŒ€ķ•™źµ ģ˜ģ²œė³‘ģ›'),
(109635, 'https://ror.org/010ph5q26', 'en', 1, 'https://ror.org/010ph5q26 Nigerian Nuclear Regulatory Authority'),
(109636, 'https://ror.org/047n24c95', 'pt', 1, 'https://ror.org/047n24c95 Escola de AperfeiƧoamento de Oficiais'),
(109637, 'https://ror.org/058zxnw98', 'en', 1, 'https://ror.org/058zxnw98 OBEMET Center for Obesity and Metabolic Health OBEMET Centro de Obesidad y Salud Metabólica'),
(109638, 'https://ror.org/037dym702', 'en', 1, 'https://ror.org/037dym702 Ningbo University of Technology 宁波巄程学院'),
(109639, 'https://ror.org/05nn1k450', 'fr', 1, 'https://ror.org/05nn1k450 Institut du droit public et de la science politique'),
(109640, 'https://ror.org/00wp2pa62', 'fr', 1, 'https://ror.org/00wp2pa62 ISTEAH Institut des Sciences, des Technologies et des Ɖtudes AvancĆ©es d’HaĆÆti'),
(109641, 'https://ror.org/00r5q6y06', 'en', 1, 'https://ror.org/00r5q6y06 Department of Human Resources and Social Security Of Shaanxi Province é™•č„æēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(109642, 'https://ror.org/03kbarg82', 'fr', 1, 'https://ror.org/03kbarg82 Laboratoire interdisciplinaire de recherche en didactique, Ʃducation et formation'),
(109643, 'https://ror.org/01s49sr14', 'en', 1, 'https://ror.org/01s49sr14 Non-Governmental Organization ā€œAll Ukrainian Association of Endovascular Neuroradiologyā€ Š“Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ° Š¾Ń€Š³Š°Š½Ń–Š·Š°Ń†Ń–Ń ā€œŠ’ŃŠµŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŃŠ¾Ń†Ń–Š°Ń†Ń–Ń ŠµŠ½Š“Š¾Š²Š°ŃŠŗŃƒŠ»ŃŃ€Š½Š¾Ń— Š½ŠµŠ¹Ń€Š¾Ń€ŠµŠ½Ń‚Š³ŠµŠ½Š¾Ń…Ń–Ń€ŃƒŃ€Š³Ń–Ń—ā€'),
(109644, 'https://ror.org/037dep095', 'fr', 1, 'https://ror.org/037dep095 Troubles du comportement Alimentaire, Addictions et Poids ExtrĆŖmes'),
(109645, 'https://ror.org/056a2wg22', 'en', 1, 'https://ror.org/056a2wg22 Universitas Syedza Saintika'),
(109646, 'https://ror.org/02mz5xm98', 'en', 1, 'https://ror.org/02mz5xm98 Korea Broadcast Advertising Corporation Korea Broadcast Advertising Corporation (South Korea) ķ•œźµ­ė°©ģ†”ź“‘ź³ ģ§„ķ„ź³µģ‚¬'),
(109647, 'https://ror.org/003ntpa62', 'en', 1, 'https://ror.org/003ntpa62 Gangwon State Samcheok Medical Center ź°•ģ›ķŠ¹ė³„ģžģ¹˜ė„ģ‚¼ģ²™ģ˜ė£Œģ›'),
(109648, 'https://ror.org/04xxe0935', 'en', 1, 'https://ror.org/04xxe0935 Keimyung University Dongsan Hospital ź³„ėŖ…ėŒ€ķ•™źµ ė™ģ‚°ė³‘ģ›'),
(109649, 'https://ror.org/03k4zaw35', 'en', 1, 'https://ror.org/03k4zaw35 Ajou Research Institute for Innovative Medicine ģ•„ģ£¼ėŒ€ķ•™źµ ģ²Øė‹Øģ˜ķ•™ģ—°źµ¬ģ›'),
(109650, 'https://ror.org/01hjh2443', 'fr', 1, 'https://ror.org/01hjh2443 GOBELINS Paris'),
(109651, 'https://ror.org/04h0zjx60', 'en', 1, 'https://ror.org/04h0zjx60 The George Institute for Global Health'),
(109652, 'https://ror.org/01jgdnq42', 'no_lang_code', 1, 'https://ror.org/01jgdnq42 OSI Systems (United States)'),
(109653, 'https://ror.org/021a40z85', 'en', 1, 'https://ror.org/021a40z85 Gimhae Research Institute 김핓연구원'),
(109654, 'https://ror.org/057d69c93', 'en', 1, 'https://ror.org/057d69c93 Uma Nath Singh Autonomous State Medical College Jaunpur'),
(109655, 'https://ror.org/0160cpw27', 'en', 1, 'https://ror.org/0160cpw27 University of Alberta UniversitƩ de l''Alberta'),
(109656, 'https://ror.org/01r024a98', 'en', 1, 'https://ror.org/01r024a98 Chung-Ang University ģ¤‘ģ•™ėŒ€ķ•™źµ'),
(109657, 'https://ror.org/029kezw11', 'en', 1, 'https://ror.org/029kezw11 Ewha Womans University Cancer Center for Women ģ“ėŒ€ģ—¬ģ„±ģ•”ė³‘ģ› ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ 여성암병원'),
(109658, 'https://ror.org/044dv6z74', 'en', 1, 'https://ror.org/044dv6z74 Pohang Medical Center ķ¬ķ•­ģ˜ė£Œģ›'),
(109659, 'https://ror.org/05v7ewv27', 'no_lang_code', 1, 'https://ror.org/05v7ewv27 Kveloce Kveloce (Spain) Senior Europa S.L.'),
(109660, 'https://ror.org/00dv99552', 'en', 1, 'https://ror.org/00dv99552 Dominican University, Ibadan'),
(109661, 'https://ror.org/00edzht24', 'fr', 1, 'https://ror.org/00edzht24 Laboratoire de gƩnƩtique et biologie cellulaire Laboratory of Genetics and Biology of the Cell'),
(109662, 'https://ror.org/01jj61460', 'en', 1, 'https://ror.org/01jj61460 Gyeongsang National University Changwon Hospital ģ°½ģ›ź²½ģƒźµ­ė¦½ėŒ€ķ•™źµė³‘ģ›'),
(109663, 'https://ror.org/03bdkz192', 'en', 1, 'https://ror.org/03bdkz192 Gyeonggi Provincal Medical Center Ansung Hospital ź²½źø°ė„ģ˜ė£Œģ› ģ•ˆģ„±ė³‘ģ›'),
(109664, 'https://ror.org/01x3t1868', 'en', 1, 'https://ror.org/01x3t1868 Saint Paul University UniversitƩ Saint-Paul'),
(109665, 'https://ror.org/03tpec229', 'en', 1, 'https://ror.org/03tpec229 Gyeonggido Business and Science Accelerator ź²½źø°ė„ź²½ģ œź³¼ķ•™ģ§„ķ„ģ›'),
(109666, 'https://ror.org/01bqvph43', 'en', 1, 'https://ror.org/01bqvph43 W. G. (Bill) Hefner VA Medical Center'),
(109667, 'https://ror.org/00akf2z72', 'fr', 1, 'https://ror.org/00akf2z72 Centre national des arts du cirque'),
(109668, 'https://ror.org/03ken7w58', 'en', 1, 'https://ror.org/03ken7w58 Virginia Wesleyan University'),
(109669, 'https://ror.org/02ap92826', 'en', 1, 'https://ror.org/02ap92826 Rabdan Academy Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© ربدان'),
(109670, 'https://ror.org/036tyjs84', 'fr', 1, 'https://ror.org/036tyjs84 Laboratoire de recherche en droit'),
(109671, 'https://ror.org/00mtrzx11', 'es', 1, 'https://ror.org/00mtrzx11 Hospital Nacional Cayetano Heredia'),
(109672, 'https://ror.org/009dbys72', 'en', 1, 'https://ror.org/009dbys72 Yongin Research Institute ģš©ģøģ‹œģ •ģ—°źµ¬ģ›'),
(109673, 'https://ror.org/05avfsg20', 'en', 1, 'https://ror.org/05avfsg20 Jinju Medical Center ģ§„ģ£¼ģ˜ė£Œģ›'),
(109674, 'https://ror.org/04w01w454', 'en', 1, 'https://ror.org/04w01w454 Kyung Hee University Dental Hospital at Gangdong ź°•ė™ź²½ķ¬ėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(109675, 'https://ror.org/01svc3820', 'en', 1, 'https://ror.org/01svc3820 Financial Services Commission źøˆģœµģœ„ģ›ķšŒ'),
(109676, 'https://ror.org/02stf8w13', 'en', 1, 'https://ror.org/02stf8w13 Decision & Information Sciences for Production Systems Décision et Information pour les Systèmes de Production'),
(109677, 'https://ror.org/04gpe6h67', 'fr', 1, 'https://ror.org/04gpe6h67 Savoirs, Environnement, SociƩtƩs'),
(109678, 'https://ror.org/04yr81d29', 'en', 1, 'https://ror.org/04yr81d29 Jogesh Chandra Chaudhuri College'),
(109679, 'https://ror.org/0544z6x19', 'en', 1, 'https://ror.org/0544z6x19 Incheon International Airport Corporation Incheon International Airport Corporation (South Korea) ģøģ²œźµ­ģ œź³µķ•­ź³µģ‚¬'),
(109680, 'https://ror.org/01vxda543', 'en', 1, 'https://ror.org/01vxda543 Mahallat Institute of Higher Education'),
(109681, 'https://ror.org/049g6ah05', 'fr', 1, 'https://ror.org/049g6ah05 Laboratoire d''analyse des signaux & des processus industriels'),
(109682, 'https://ror.org/00gd5av19', 'fr', 1, 'https://ror.org/00gd5av19 Parcours santƩ systƩmique'),
(109683, 'https://ror.org/01em43w09', 'fr', 1, 'https://ror.org/01em43w09 Ɖcole Nationale SupĆ©rieure d''IngĆ©nieurs du Mans'),
(109684, 'https://ror.org/02jx3x895', 'en', 1, 'https://ror.org/02jx3x895 Coleg Prifysgol Llundain University College London'),
(109685, 'https://ror.org/03kezjk28', 'en', 1, 'https://ror.org/03kezjk28 Centre for Management Development'),
(109686, 'https://ror.org/04py2s465', 'fr', 1, 'https://ror.org/04py2s465 ESIEE-IT'),
(109687, 'https://ror.org/05ct91r78', 'en', 1, 'https://ror.org/05ct91r78 Chongqing Municipal Government'),
(109688, 'https://ror.org/03gf9qe34', 'en', 1, 'https://ror.org/03gf9qe34 Arab Administrative Development Organization'),
(109689, 'https://ror.org/04c9wp534', 'en', 1, 'https://ror.org/04c9wp534 Universitas Amikom Purwokerto'),
(109690, 'https://ror.org/03xe54902', 'en', 1, 'https://ror.org/03xe54902 Cognition, Action et PlasticitƩ Sensorimotrice Cognition, Action, and Sensorimotor Plasticity'),
(109691, 'https://ror.org/01bsmqk19', 'en', 1, 'https://ror.org/01bsmqk19 Korea Asset Management Corporation ķ•œźµ­ģžģ‚°ź“€ė¦¬ź³µģ‚¬'),
(109692, 'https://ror.org/04qb2qm38', 'fr', 1, 'https://ror.org/04qb2qm38 UniversitƩ Paris-PanthƩon-Assas'),
(109693, 'https://ror.org/0504zw976', 'en', 1, 'https://ror.org/0504zw976 Cheonan Medical Center ģ²œģ•ˆģ˜ė£Œģ›'),
(109694, 'https://ror.org/03j6pc929', 'en', 1, 'https://ror.org/03j6pc929 Emirates International University الجامعة Ų§Ł„Ų„Ł…Ų§Ų±Ų§ŲŖŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(109695, 'https://ror.org/04f4n0j07', 'en', 1, 'https://ror.org/04f4n0j07 Korea Construction Equipment Technology Institute ķ•œźµ­ź±“ģ„¤źø°ź³„ģ—°źµ¬ģ›'),
(109696, 'https://ror.org/024wcjs34', 'fr', 1, 'https://ror.org/024wcjs34 SƩminaire de Sherbrooke'),
(109697, 'https://ror.org/04d4sd432', 'en', 1, 'https://ror.org/04d4sd432 University of Sfax UniversitĆ© de Sfax Ų¬Ų§Ł…Ų¹Ų© صفاقس'),
(109698, 'https://ror.org/04jd9pn68', 'en', 1, 'https://ror.org/04jd9pn68 Samsung Austin Semiconductor Samsung Austin Semiconductor (United States)'),
(109699, 'https://ror.org/02wtzn374', 'fr', 1, 'https://ror.org/02wtzn374 Brest Business School'),
(109700, 'https://ror.org/00222cc16', 'en', 1, 'https://ror.org/00222cc16 Yeongdeok Asan Hospital ģ˜ė•ģ•„ģ‚°ė³‘ģ›'),
(109701, 'https://ror.org/02fvb1t21', 'en', 1, 'https://ror.org/02fvb1t21 Seongnam Research Institute ģ„±ė‚Øģ‹œģ •ģ—°źµ¬ģ›'),
(109702, 'https://ror.org/00r88ye51', 'en', 1, 'https://ror.org/00r88ye51 LIGS University'),
(109703, 'https://ror.org/01222g256', 'en', 1, 'https://ror.org/01222g256 Dongguk University Ilsan Oriental Hospital ė™źµ­ėŒ€ķ•™źµ ģ¼ģ‚°ķ•œė°©ė³‘ģ›'),
(109704, 'https://ror.org/00daydm56', 'no_lang_code', 1, 'https://ror.org/00daydm56 Echotex Echotex (Bangladesh)'),
(109705, 'https://ror.org/01twf8472', 'en', 1, 'https://ror.org/01twf8472 Keshav Memorial Institute of Commerce and Sciences'),
(109706, 'https://ror.org/000w2e718', 'en', 1, 'https://ror.org/000w2e718 Pakistan Air Quality Initiative Pakistan Air Quality Initiative (Pakistan)'),
(109707, 'https://ror.org/00jt2mw14', 'en', 1, 'https://ror.org/00jt2mw14 Land and Geospatial Informatix Corporation Land and Geospatial Informatix Corporation (South Korea) ķ•œźµ­źµ­ķ† ģ •ė³“ź³µģ‚¬'),
(109708, 'https://ror.org/036ktj817', 'en', 1, 'https://ror.org/036ktj817 Kyung Hee University Humanitas Cancer Center ź²½ķ¬ėŒ€ķ•™źµķ›„ė§ˆė‹ˆķƒ€ģŠ¤ģ•”ė³‘ģ› ķ›„ė§ˆė‹ˆķƒ€ģŠ¤ģ•”ė³‘ģ›'),
(109709, 'https://ror.org/0243prb22', 'en', 1, 'https://ror.org/0243prb22 Bengal School of Technology and Management'),
(109710, 'https://ror.org/03mcrfa90', 'fr', 1, 'https://ror.org/03mcrfa90 Centre François Viète'),
(109711, 'https://ror.org/05ta6qn61', 'en', 1, 'https://ror.org/05ta6qn61 Dong-Eui Medical Center ė™ģ˜ģ˜ė£Œģ›'),
(109712, 'https://ror.org/04387n260', 'es', 1, 'https://ror.org/04387n260 Sociedad Española de Gastroenterología, Hepatología y Nutrición PediÔtrica'),
(109713, 'https://ror.org/00rjw1x90', 'en', 1, 'https://ror.org/00rjw1x90 Samsung Seoul Hospital ģ‚¼ģ„±ģ„œģšøė³‘ģ›'),
(109714, 'https://ror.org/04vzcpe25', 'id', 1, 'https://ror.org/04vzcpe25 Universitas Yarsi Pratama'),
(109715, 'https://ror.org/05ckss308', 'fr', 1, 'https://ror.org/05ckss308 France UniversitƩs'),
(109716, 'https://ror.org/02f33kj63', 'en', 1, 'https://ror.org/02f33kj63 Kyung Hee University Korean Medicine Hospital ź²½ķ¬ėŒ€ķ•™źµķ•œė°©ė³‘ģ›'),
(109717, 'https://ror.org/03s4x4e93', 'en', 1, 'https://ror.org/03s4x4e93 George Institute for Global Health'),
(109718, 'https://ror.org/0517bmz88', 'en', 1, 'https://ror.org/0517bmz88 Jeju Research Institute ģ œģ£¼ģ—°źµ¬ģ›'),
(109719, 'https://ror.org/02d7yc062', 'en', 1, 'https://ror.org/02d7yc062 Geely University of China 吉利学院'),
(109720, 'https://ror.org/027nn9a23', 'es', 1, 'https://ror.org/027nn9a23 Escuela Normal Superior de QuerƩtaro'),
(109721, 'https://ror.org/00fh1dw28', 'fr', 1, 'https://ror.org/00fh1dw28 Laboratoire de GƩnie Civil et GƩo Environnement'),
(109722, 'https://ror.org/0207fe012', 'fr', 1, 'https://ror.org/0207fe012 Burgundy School of Business ESC Dijon Bourgogne, Ɖcole supĆ©rieure de commerce de Dijon-Bourgogne'),
(109723, 'https://ror.org/01vn5a437', 'en', 1, 'https://ror.org/01vn5a437 Kyung Hee University Korean Medicine Hospital at Gangdong ź°•ė™ź²½ķ¬ėŒ€ķ•™źµķ•œė°©ė³‘ģ›'),
(109724, 'https://ror.org/0173p1x79', 'en', 1, 'https://ror.org/0173p1x79 Dongguk University Gyeongju Hospital ė™źµ­ėŒ€ķ•™źµ 경주병원'),
(109725, 'https://ror.org/04hr9sz71', 'en', 1, 'https://ror.org/04hr9sz71 Samsung Semiconductor Samsung Semiconductor (United States) Samsung Semiconductor, Inc.'),
(109726, 'https://ror.org/03tg44r87', 'fr', 1, 'https://ror.org/03tg44r87 Centre interuniversitaire d''Ʃtudes et de recherches autochtones'),
(109727, 'https://ror.org/05qst0247', 'en', 1, 'https://ror.org/05qst0247 Freetown Polytechnic'),
(109728, 'https://ror.org/010paqf38', 'en', 1, 'https://ror.org/010paqf38 Ansan Research Institute ģ•ˆģ‚°ėÆøėž˜ģ—°źµ¬ģ›');
INSERT INTO `rors` VALUES
(109729, 'https://ror.org/05e1zqb39', 'en', 1, 'https://ror.org/05e1zqb39 George Institute for Global Health'),
(109730, 'https://ror.org/057q6n778', 'no_lang_code', 1, 'https://ror.org/057q6n778 Dongguk University ė™źµ­ėŒ€ķ•™źµ'),
(109731, 'https://ror.org/03gvw5538', 'en', 1, 'https://ror.org/03gvw5538 Dongshin University Gwangju Korean Medicine Hospital ź“‘ģ£¼ė™ģ‹ ėŒ€ķ•™źµķ•œė°©ė³‘ģ›'),
(109732, 'https://ror.org/0454sq974', 'en', 1, 'https://ror.org/0454sq974 Wonkwang University Sanbon Dental Hospital ģ›ź“‘ėŒ€ķ•™źµ ģ‚°ė³øģ¹˜ź³¼ė³‘ģ›'),
(109733, 'https://ror.org/009dxy917', 'en', 1, 'https://ror.org/009dxy917 Machon Siach'),
(109734, 'https://ror.org/00fkj2s96', 'en', 1, 'https://ror.org/00fkj2s96 Claretian University Claretian University of Nigeria'),
(109735, 'https://ror.org/04pn6vp43', 'fr', 1, 'https://ror.org/04pn6vp43 Centre Hospitalier Universitaire de Saint-Ɖtienne'),
(109736, 'https://ror.org/05f2f0155', 'en', 1, 'https://ror.org/05f2f0155 Rangjung Yeshe Institute'),
(109737, 'https://ror.org/015tdma78', 'en', 1, 'https://ror.org/015tdma78 UpStage UpStage (South Korea) ģ—…ģŠ¤ķ…Œģ“ģ§€'),
(109738, 'https://ror.org/017agdj19', 'en', 1, 'https://ror.org/017agdj19 Kakao Brain Kakao Brain (South Korea) ģ¹“ģ¹“ģ˜¤ėøŒė ˆģø'),
(109739, 'https://ror.org/018g0vw88', 'it', 1, 'https://ror.org/018g0vw88 Accademia Nazionale di Danza'),
(109740, 'https://ror.org/044t4x544', 'fr', 0, 'https://ror.org/044t4x544 University of NƮmes UniversitƩ de NƮmes'),
(109741, 'https://ror.org/007wbr017', 'fr', 1, 'https://ror.org/007wbr017 Lille School of Journalism Ɖcole supĆ©rieure de journalisme de Lille'),
(109742, 'https://ror.org/03qy2cv56', 'en', 1, 'https://ror.org/03qy2cv56 Gangwon State Sokcho Medical Center ź°•ģ›ķŠ¹ė³„ģžģ¹˜ė„ģ†ģ“ˆģ˜ė£Œģ›'),
(109743, 'https://ror.org/0432dt133', 'en', 1, 'https://ror.org/0432dt133 Ewha Womans University Urology Institute ģ“ėŒ€ė¹„ė‡Øźø°ė³‘ģ› ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ 비뇨기병원'),
(109744, 'https://ror.org/057n5zn03', 'es', 1, 'https://ror.org/057n5zn03 Universidad del Caribe PanamĆ”'),
(109745, 'https://ror.org/00xanaq50', 'en', 1, 'https://ror.org/00xanaq50 Wonkwang University Daejeon Dental Hospital ģ›ź“‘ėŒ€ķ•™źµ ėŒ€ģ „ģ¹˜ź³¼ė³‘ģ›'),
(109746, 'https://ror.org/05dycrx89', 'fr', 1, 'https://ror.org/05dycrx89 Modélisation multi-échelle des systèmes urbains'),
(109747, 'https://ror.org/022b0h879', 'fr', 1, 'https://ror.org/022b0h879 Institut de Physique de Rennes'),
(109748, 'https://ror.org/00js3aw79', 'en', 1, 'https://ror.org/00js3aw79 Jilin University å‰ęž—å¤§å­¦'),
(109749, 'https://ror.org/0025nbs67', 'id', 1, 'https://ror.org/0025nbs67 Institut Teknologi Kesehatan dan Sains Wiyata Husada Samarinda'),
(109750, 'https://ror.org/0013h7w30', 'fr', 1, 'https://ror.org/0013h7w30 Y SCHOOLS'),
(109751, 'https://ror.org/01r9jj364', 'en', 1, 'https://ror.org/01r9jj364 Kakaobank Kakaobank (South Korea) ģ¹“ģ¹“ģ˜¤ė±…ķ¬'),
(109752, 'https://ror.org/00mkad321', 'fr', 1, 'https://ror.org/00mkad321 Agroecology AgroƩcologie'),
(109753, 'https://ror.org/0335n2618', 'en', 1, 'https://ror.org/0335n2618 Jiangsu Agricultural Science and Technology Innovation Fund ę±Ÿč‹ēœå†œäøšē§‘ęŠ€č‡Ŗäø»åˆ›ę–°åŸŗé‡‘'),
(109754, 'https://ror.org/02nmt8h49', 'en', 1, 'https://ror.org/02nmt8h49 ECOģœµķ•©ģ„¬ģœ ģ—°źµ¬ģ› Korea Institute of Convergence Textile'),
(109755, 'https://ror.org/01e5ta479', 'fr', 1, 'https://ror.org/01e5ta479 Ɖcole Nationale SupĆ©rieure des Beaux-Arts de Lyon'),
(109756, 'https://ror.org/0077sy889', 'en', 1, 'https://ror.org/0077sy889 Bratislava University of Economics and Management VysokÔ Ŕkola ekonómie a manažmentu v Bratislave'),
(109757, 'https://ror.org/01cgtm828', 'fr', 1, 'https://ror.org/01cgtm828 Oral Health SantƩ Orale'),
(109758, 'https://ror.org/03d1tvr44', 'fr', 0, 'https://ror.org/03d1tvr44 ITESCIA'),
(109759, 'https://ror.org/05dd4y172', 'en', 1, 'https://ror.org/05dd4y172 College of Remote and Offshore Medicine'),
(109760, 'https://ror.org/05pdrtn98', 'en', 1, 'https://ror.org/05pdrtn98 Yeongnam Regional Rehabilitation Hospital ģ–‘ģ‚°ė¶€ģ‚°ėŒ€ķ•™źµė³‘ģ› ģ˜ė‚Øź¶Œģ—­ģž¬ķ™œė³‘ģ› ģ˜ė‚Øź¶Œģ—­ģž¬ķ™œė³‘ģ›'),
(109761, 'https://ror.org/041051y78', 'en', 1, 'https://ror.org/041051y78 NAVER Cloud NAVER Cloud (South Korea) ė„¤ģ“ė²„ ķ“ė¼ģš°ė“œ'),
(109762, 'https://ror.org/05jhv1f87', 'fr', 1, 'https://ror.org/05jhv1f87 NƮmes UniversitƩ'),
(109763, 'https://ror.org/04qymaz42', 'en', 1, 'https://ror.org/04qymaz42 United States Space Force Space Systems Command'),
(109764, 'https://ror.org/041segm15', 'en', 1, 'https://ror.org/041segm15 Geumgang Asan Hospital źøˆź°•ģ•„ģ‚°ė³‘ģ›'),
(109765, 'https://ror.org/05m8bez85', 'en', 1, 'https://ror.org/05m8bez85 Pereslavl Museum-Reserve'),
(109766, 'https://ror.org/04302qt77', 'en', 1, 'https://ror.org/04302qt77 Jecheon Myongji Hospital ģ œģ²œėŖ…ģ§€ė³‘ģ›'),
(109767, 'https://ror.org/046p4xg50', 'fr', 1, 'https://ror.org/046p4xg50 Institut franƧais de la mode'),
(109768, 'https://ror.org/00ra8zc69', 'fr', 1, 'https://ror.org/00ra8zc69 MinistĆØre de l’Environnement, de la Lutte contre les changements climatiques, de la Faune et des Parcs'),
(109769, 'https://ror.org/017rj5k52', 'en', 1, 'https://ror.org/017rj5k52 Gyeonggi Provincal Medical Center Icheon Hospital ź²½źø°ė„ģ˜ė£Œģ› ģ“ģ²œė³‘ģ›'),
(109770, 'https://ror.org/05s6hm275', 'fr', 1, 'https://ror.org/05s6hm275 Maison des Sciences de l''Homme SUD'),
(109771, 'https://ror.org/00jb7xy46', 'en', 1, 'https://ror.org/00jb7xy46 Education Department of Shaanxi Province é™•č„æēœę•™č‚²åŽ…'),
(109772, 'https://ror.org/00a89ga42', 'fr', 1, 'https://ror.org/00a89ga42 IDRAC Business School'),
(109773, 'https://ror.org/039w4g252', 'fr', 1, 'https://ror.org/039w4g252 The Ɖlisabeth-BruyĆØre School of Social Innovation Ɖcole d''innovation sociale Ɖlisabeth-BruyĆØre'),
(109774, 'https://ror.org/04jx0vp64', 'fr', 1, 'https://ror.org/04jx0vp64 Ɖcole SupĆ©rieure d''Art Pays Basque'),
(109775, 'https://ror.org/02gy3yk56', 'en', 1, 'https://ror.org/02gy3yk56 Gangwon Institute 강원연구원'),
(109776, 'https://ror.org/03bw6qq24', 'en', 1, 'https://ror.org/03bw6qq24 Boryeong Asan Hospital 볓령아산병원'),
(109777, 'https://ror.org/017am7t20', 'fr', 1, 'https://ror.org/017am7t20 Groupe de Recherche Interuniversitaire sur la NormativitƩ Interuniversity Normativity Research Group'),
(109778, 'https://ror.org/0087n5v55', 'fr', 1, 'https://ror.org/0087n5v55 Centre d’histoire culturelle des sociĆ©tĆ©s contemporaines'),
(109779, 'https://ror.org/04zbfd360', 'fr', 1, 'https://ror.org/04zbfd360 Centre de la science de la biodiversitƩ du QuƩbec Quebec Centre For Biodiversity Science'),
(109780, 'https://ror.org/0047rmf80', 'fr', 1, 'https://ror.org/0047rmf80 Centre de Recherche en Ɖconomie et Management'),
(109781, 'https://ror.org/03ac68784', 'fr', 1, 'https://ror.org/03ac68784 Ɖcole Nationale SupĆ©rieure de Formation de l’Enseignement Agricole'),
(109782, 'https://ror.org/00z9wtp09', 'no_lang_code', 1, 'https://ror.org/00z9wtp09 Aichi Shukutoku University ę„›ēŸ„ę·‘å¾³å¤§å­¦'),
(109783, 'https://ror.org/03yj40c58', 'en', 1, 'https://ror.org/03yj40c58 Daegu Catholic University Chilgok Catholic Hospital ėŒ€źµ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµ 칠곔가톨릭병원'),
(109784, 'https://ror.org/03yczjf25', 'es', 1, 'https://ror.org/03yczjf25 Universidad Peruana Cayetano Heredia'),
(109785, 'https://ror.org/03znzxz68', 'fr', 1, 'https://ror.org/03znzxz68 AcadƩmie des technologies National Academy of Technologies of France'),
(109786, 'https://ror.org/03rtb0z86', 'fr', 1, 'https://ror.org/03rtb0z86 Quebec Pain Research Network RƩseau quƩbƩcois de recherche sur la douleur'),
(109787, 'https://ror.org/01mxx0e62', 'en', 1, 'https://ror.org/01mxx0e62 Hanoi University TrĘ°į»ng ĐẔi hį»c HĆ  Nį»™i UniversitĆ© de hanoĆÆ'),
(109788, 'https://ror.org/05yj3y977', 'en', 1, 'https://ror.org/05yj3y977 Science and Technology Department of Zhejiang Province ęµ™ę±Ÿēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(109789, 'https://ror.org/04t89f389', 'fr', 1, 'https://ror.org/04t89f389 Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement'),
(109790, 'https://ror.org/04np4m207', 'en', 1, 'https://ror.org/04np4m207 Gyeonggi Provincal Medical Center Pocheon Hospital ź²½źø°ė„ģ˜ė£Œģ› ķ¬ģ²œė³‘ģ›'),
(109791, 'https://ror.org/05a01f577', 'en', 1, 'https://ror.org/05a01f577 True P.A.L.E.O. Inc'),
(109792, 'https://ror.org/05fe3qr79', 'en', 1, 'https://ror.org/05fe3qr79 Institut international de sociologie du droit Instituto Internacional de Sociologƭa Jurƭdica de OƱati OƱati International Institute for the Sociology of Law Foundation OƱatiko Lege Soziologiako Nazioarteko Erakundea'),
(109793, 'https://ror.org/02drdmm93', 'en', 1, 'https://ror.org/02drdmm93 Chinese Academy of Medical Sciences & Peking Union Medical College äø­å›½åŒ»å­¦ē§‘å­¦é™¢åŒ—äŗ¬åå’ŒåŒ»å­¦é™¢'),
(109794, 'https://ror.org/028ebfc83', 'en', 1, 'https://ror.org/028ebfc83 West Virginia University Institute of Technology'),
(109795, 'https://ror.org/017jsrs50', 'en', 1, 'https://ror.org/017jsrs50 KB Kookmin Bank KB Kookmin Bank (South Korea) KBźµ­ėÆ¼ģ€ķ–‰'),
(109796, 'https://ror.org/0256r1e04', 'fr', 1, 'https://ror.org/0256r1e04 Environment, City, Society Environnement, ville, sociƩtƩ'),
(109797, 'https://ror.org/04103be72', 'en', 1, 'https://ror.org/04103be72 Oubari Habboush Pharma Oubari Habboush Pharma (Syria)'),
(109798, 'https://ror.org/00da1ft82', 'en', 1, 'https://ror.org/00da1ft82 Korea Textile Development Institute ķ•œźµ­ģ„¬ģœ ź°œė°œģ—°źµ¬ģ›'),
(109799, 'https://ror.org/018yz8h07', 'en', 1, 'https://ror.org/018yz8h07 Earth Rover Program'),
(109800, 'https://ror.org/00n9d5724', 'es', 1, 'https://ror.org/00n9d5724 Facultad de Estudios Superiores CuautitlƔn'),
(109801, 'https://ror.org/053nnef06', 'en', 1, 'https://ror.org/053nnef06 An Sinh Hospital Bệnh viện An Sinh'),
(109802, 'https://ror.org/04wh4te66', 'en', 1, 'https://ror.org/04wh4te66 Korea Silk Research Institute ķ•œźµ­ģ‹¤ķ¬ģ—°źµ¬ģ›'),
(109803, 'https://ror.org/03rfpav60', 'en', 1, 'https://ror.org/03rfpav60 Wonkwang University Dental Hospital ģ›ź“‘ėŒ€ķ•™źµ ģ¹˜ź³¼ė³‘ģ›'),
(109804, 'https://ror.org/019v7sr25', 'fr', 1, 'https://ror.org/019v7sr25 DƩveloppement Embryonnaire, FertilitƩ et Environnement'),
(109805, 'https://ror.org/04ejcwb57', 'fr', 1, 'https://ror.org/04ejcwb57 Maison des Sciences sociales et des HumanitƩs de Dijon'),
(109806, 'https://ror.org/00j2y4070', 'en', 1, 'https://ror.org/00j2y4070 Hongcheon Asan Hospital ķ™ģ²œģ•„ģ‚°ė³‘ģ›'),
(109807, 'https://ror.org/03vxc6h80', 'en', 1, 'https://ror.org/03vxc6h80 Ewha Womans University Blood Cancer Hospital ģ“ėŒ€ķ˜ˆģ•”ģ•”ė³‘ģ› ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ ķ˜ˆģ•”ģ•”ė³‘ģ›'),
(109808, 'https://ror.org/01bz63t48', 'en', 1, 'https://ror.org/01bz63t48 Gachon University Medical Center Gil Oriental Medicine Clinic ź°€ģ²œėŒ€ķ•™źµė¶€ģ† źøøķ•œė°©ė³‘ģ› źøøķ•œė°©ė³‘ģ›'),
(109809, 'https://ror.org/0277xhz50', 'en', 1, 'https://ror.org/0277xhz50 People''s Government of Guangzhou Municipality å¹æå·žåø‚ę”æåŗœ'),
(109810, 'https://ror.org/022y5bk62', 'fr', 1, 'https://ror.org/022y5bk62 Maison des Sciences de l''Homme'),
(109811, 'https://ror.org/03q81ka58', 'pl', 1, 'https://ror.org/03q81ka58 Ministerstwo Cyfryzacji'),
(109812, 'https://ror.org/009tqft73', 'en', 1, 'https://ror.org/009tqft73 Hanoi Procuratorate University TrĘ°į»ng ĐẔi hį»c Kiểm sĆ”t'),
(109813, 'https://ror.org/05mpvtx13', 'en', 1, 'https://ror.org/05mpvtx13 Kyungpook National University Children''s Hospital ź²½ė¶ėŒ€ķ•™źµģ–“ė¦°ģ“ė³‘ģ›'),
(109814, 'https://ror.org/045wr3278', 'en', 1, 'https://ror.org/045wr3278 Daegu Haany University ėŒ€źµ¬ķ•œģ˜ėŒ€ķ•™źµ'),
(109815, 'https://ror.org/037xc1874', 'fr', 1, 'https://ror.org/037xc1874 Education, Cultures, Politiques Ɖducation, Cultures, Politiques'),
(109816, 'https://ror.org/01q2x3e08', 'en', 1, 'https://ror.org/01q2x3e08 Ligue nationale de hockey National Hockey League'),
(109817, 'https://ror.org/04h98gb56', 'en', 1, 'https://ror.org/04h98gb56 Bac Ninh Sport University of Viet Nam TrĘ°į»ng ĐẔi hį»c Thể dỄc Thể thao BįŗÆc Ninh åŒ—å®ä½“č‚²å¤§å­¦'),
(109818, 'https://ror.org/03wb1xh22', 'en', 1, 'https://ror.org/03wb1xh22 Tianjin Municipal Science and Technology Commission å¤©ę“„åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(109819, 'https://ror.org/010rve435', 'fr', 1, 'https://ror.org/010rve435 Laboratoire d’Économie et de Gestion de l''Ouest'),
(109820, 'https://ror.org/05xkxf605', 'en', 1, 'https://ror.org/05xkxf605 Ajou University Medical Center ģ•„ģ£¼ėŒ€ķ•™źµģ˜ė£Œģ›'),
(109821, 'https://ror.org/00sk0vp53', 'en', 1, 'https://ror.org/00sk0vp53 Korea Institute of Nuclear Nonproliferation & Control ķ•œźµ­ģ›ģžė „ķ†µģ œźø°ģˆ ģ›'),
(109822, 'https://ror.org/01paa4y94', 'fr', 0, 'https://ror.org/01paa4y94 Centre d''entrepreneuriat Poly-UdeM'),
(109823, 'https://ror.org/01xtb7181', 'en', 1, 'https://ror.org/01xtb7181 Lviv State University of Internal Affairs Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(109824, 'https://ror.org/03whqdf70', 'en', 1, 'https://ror.org/03whqdf70 Yunnan Province Science and Technology Department äŗ‘å—ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(109825, 'https://ror.org/01thp0k37', 'en', 1, 'https://ror.org/01thp0k37 Faculty of Sciences of Sfax FacultĆ© des Sciences de Sfax ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… بصفاقس'),
(109826, 'https://ror.org/04j5thv60', 'es', 1, 'https://ror.org/04j5thv60 Calima Foundation Fundación Calima'),
(109827, 'https://ror.org/001f9e125', 'en', 1, 'https://ror.org/001f9e125 Jiangsu Academy of Agricultural Sciences ę±Ÿč‹ēœå†œäøšē§‘å­¦é™¢'),
(109828, 'https://ror.org/02zjr9h86', 'en', 1, 'https://ror.org/02zjr9h86 Mekong University Vietnamese university'),
(109829, 'https://ror.org/0370htr03', 'en', 1, 'https://ror.org/0370htr03 UCL Queen Square Institute of Neurology'),
(109830, 'https://ror.org/01kjxxw55', 'en', 1, 'https://ror.org/01kjxxw55 Jinangun Medical Center ģ§„ģ•ˆźµ°ģ˜ė£Œģ›'),
(109831, 'https://ror.org/036bvfx36', 'en', 1, 'https://ror.org/036bvfx36 Ewha Womans University Cerebrovascular Hospital ģ“ėŒ€ė‡Œķ˜ˆź“€ė³‘ģ› ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ ė‡Œķ˜ˆź“€ė³‘ģ›'),
(109832, 'https://ror.org/05k812a28', 'en', 0, 'https://ror.org/05k812a28 Hebei Science and Technology Department'),
(109833, 'https://ror.org/01pq8qc29', 'en', 1, 'https://ror.org/01pq8qc29 Daegu Medical Center ėŒ€źµ¬ģ˜ė£Œģ›'),
(109834, 'https://ror.org/002v9pb51', 'en', 1, 'https://ror.org/002v9pb51 Jeongeup Asan Hospital ģ •ģģ•„ģ‚°ė³‘ģ›'),
(109835, 'https://ror.org/00aytnh12', 'fr', 1, 'https://ror.org/00aytnh12 Laboratoire de Biotechnologie et Chimie Marines'),
(109836, 'https://ror.org/040ybh559', 'en', 1, 'https://ror.org/040ybh559 National Institute of Horticultural and Herbal Science źµ­ė¦½ģ›ģ˜ˆķŠ¹ģž‘ź³¼ķ•™ģ›'),
(109837, 'https://ror.org/05am4sg66', 'en', 1, 'https://ror.org/05am4sg66 ChungNam Institute 충남연구원'),
(109838, 'https://ror.org/02pk91c23', 'en', 1, 'https://ror.org/02pk91c23 Knowledge University Ų¬Ų§Ł…Ų¹Ų© Ł†ŁˆŁ„Ų¬ Ų²Ų§Ł†Ś©Ū†ŪŒ نۆلج'),
(109839, 'https://ror.org/05rrxz787', 'fr', 1, 'https://ror.org/05rrxz787 Conservatoire national supƩrieur d''art dramatique'),
(109840, 'https://ror.org/03zp9tj36', 'es', 1, 'https://ror.org/03zp9tj36 Universidad de Ciencias MƩdicas de Santiago de Cuba'),
(109841, 'https://ror.org/049weex04', 'en', 1, 'https://ror.org/049weex04 Chonnam National University Children''s Hospital ģ „ė‚ØėŒ€ķ•™źµģ–“ė¦°ģ“ė³‘ģ›'),
(109842, 'https://ror.org/000cqmf02', 'en', 1, 'https://ror.org/000cqmf02 Department of Agricultural Research'),
(109843, 'https://ror.org/0275ye937', 'fr', 1, 'https://ror.org/0275ye937 Centre Hospitalier Universitaire de NƮmes'),
(109844, 'https://ror.org/03g6fsw88', 'en', 1, 'https://ror.org/03g6fsw88 Changwon Research Institute ģ°½ģ›ģ‹œģ •ģ—°źµ¬ģ›'),
(109845, 'https://ror.org/001610k88', 'en', 1, 'https://ror.org/001610k88 National Traffic injury Rehabilitation Hospital źµ­ė¦½źµķ†µģž¬ķ™œė³‘ģ› ģ„œģšøėŒ€ķ•™źµė³‘ģ›ģš“ģ˜ źµ­ė¦½źµķ†µģž¬ķ™œė³‘ģ›'),
(109846, 'https://ror.org/036xhtv26', 'fr', 1, 'https://ror.org/036xhtv26 Institut de gƩnƩtique et de dƩveloppement de Rennes Institute of Genetics and Development of Rennes'),
(109847, 'https://ror.org/03y8kgm87', 'en', 1, 'https://ror.org/03y8kgm87 Jeonju Research Institute ģ „ģ£¼ģ‹œģ •ģ—°źµ¬ģ›'),
(109848, 'https://ror.org/04hgb7n06', 'en', 1, 'https://ror.org/04hgb7n06 Wonkwang University Oriental Medical Hospital Jeonju ģ›ź“‘ėŒ€ķ•™źµ ģ „ģ£¼ķ•œė°©ė³‘ģ›'),
(109849, 'https://ror.org/048kg1k05', 'en', 1, 'https://ror.org/048kg1k05 Chaum 차움'),
(109850, 'https://ror.org/033vecp71', 'en', 1, 'https://ror.org/033vecp71 Seoul National University Gwanak Dental Hospital ź“€ģ•…ģ„œģšøėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(109851, 'https://ror.org/002k3wk88', 'en', 1, 'https://ror.org/002k3wk88 National Medical Products Administration'),
(109852, 'https://ror.org/03v8sx406', 'en', 1, 'https://ror.org/03v8sx406 Uljin Medical Center ģšøģ§„źµ°ģ˜ė£Œģ›'),
(109853, 'https://ror.org/0525j5h19', 'en', 1, 'https://ror.org/0525j5h19 Korea Institute of Child Care & Education ģœ”ģ•„ģ •ģ±…ģ—°źµ¬ģ†Œ'),
(109854, 'https://ror.org/04y897m55', 'en', 1, 'https://ror.org/04y897m55 Dankook University Dental Hospital ė‹Øźµ­ėŒ€ķ•™źµ ģ¹˜ź³¼ėŒ€ķ•™ė³‘ģ›'),
(109855, 'https://ror.org/05sbt2524', 'fr', 1, 'https://ror.org/05sbt2524 Grenoble Institute of Technology Institut polytechnique de Grenoble'),
(109856, 'https://ror.org/035r7hb75', 'en', 1, 'https://ror.org/035r7hb75 Keimyung University Dongsan Medical Center ź³„ėŖ…ėŒ€ķ•™źµ ė™ģ‚°ģ˜ė£Œģ›'),
(109857, 'https://ror.org/04gs3ey40', 'en', 1, 'https://ror.org/04gs3ey40 Abhilashi University'),
(109858, 'https://ror.org/04efaym97', 'en', 1, 'https://ror.org/04efaym97 Mokpo Medical Center ėŖ©ķ¬ģ‹œģ˜ė£Œģ›'),
(109859, 'https://ror.org/03j3wkv12', 'en', 1, 'https://ror.org/03j3wkv12 Siheung Research Institute ģ‹œķ„ģ‹œģ •ģ—°źµ¬ģ›'),
(109860, 'https://ror.org/0104vsb12', 'en', 1, 'https://ror.org/0104vsb12 Chalimbana University'),
(109861, 'https://ror.org/04ygdhc67', 'en', 1, 'https://ror.org/04ygdhc67 Amity University Bengaluru'),
(109862, 'https://ror.org/024tyc086', 'fr', 1, 'https://ror.org/024tyc086 Centre Innovation et Droit'),
(109863, 'https://ror.org/00523a319', 'en', 1, 'https://ror.org/00523a319 Uniwersytet VIZJA VIZJA University'),
(109864, 'https://ror.org/038kxsm48', 'fr', 1, 'https://ror.org/038kxsm48 Institut de GƩnƩtique, Environnement et Protection des Plantes Institute for Genetics, Environment and Plant Protection'),
(109865, 'https://ror.org/00w5wtr35', 'en', 1, 'https://ror.org/00w5wtr35 Daejeon Sejong Research Institute ėŒ€ģ „ģ„øģ¢…ģ—°źµ¬ģ›'),
(109866, 'https://ror.org/045jgg271', 'en', 1, 'https://ror.org/045jgg271 New York State Office of Cannabis Management'),
(109867, 'https://ror.org/055eqsb67', 'en', 1, 'https://ror.org/055eqsb67 National University of Mar del Plata Universidad Nacional de Mar del Plata'),
(109868, 'https://ror.org/05bskz173', 'ko', 1, 'https://ror.org/05bskz173 Gyeongsangnam-do Masan Medical Center ź²½ģƒė‚Øė„ė§ˆģ‚°ģ˜ė£Œģ› ė§ˆģ‚°ģ˜ė£Œģ›'),
(109869, 'https://ror.org/017x7n237', 'en', 1, 'https://ror.org/017x7n237 Sidho-Kanho-Birsha University সিধো কানো বিরসা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109870, 'https://ror.org/011k9pp95', 'en', 1, 'https://ror.org/011k9pp95 Korea Textile Machinery Convergence Research Institute ķ•œźµ­ģ„¬ģœ źø°ź³„ģœµķ•©ģ—°źµ¬ģ›'),
(109871, 'https://ror.org/04p7qf855', 'fr', 1, 'https://ror.org/04p7qf855 Centre national des œuvres universitaires et scolaires'),
(109872, 'https://ror.org/03851x012', 'en', 1, 'https://ror.org/03851x012 The Hwaseong Institute ķ™”ģ„±ģ‹œģ—°źµ¬ģ›'),
(109873, 'https://ror.org/026tf7535', 'fr', 1, 'https://ror.org/026tf7535 Centre Max Weber'),
(109874, 'https://ror.org/03wgqqb38', 'no_lang_code', 1, 'https://ror.org/03wgqqb38 Beijing HuiLongGuan Hospital åŒ—äŗ¬å›žé¾™č§‚åŒ»é™¢'),
(109875, 'https://ror.org/049we9z90', 'fr', 1, 'https://ror.org/049we9z90 University of Technology Tarbes Occitanie PyrƩnƩes UniversitƩ de technologie Tarbes Occitanie PyrƩnƩes'),
(109876, 'https://ror.org/02y0rxk19', 'en', 1, 'https://ror.org/02y0rxk19 Nanjing University of Information Science and Technology å—äŗ¬äæ”ęÆå·„ēØ‹å¤§å­¦'),
(109877, 'https://ror.org/05a2d1r13', 'en', 1, 'https://ror.org/05a2d1r13 Gyeonggi Provincal Medical Center Uijeongbu Hospital ź²½źø°ė„ģ˜ė£Œģ› ģ˜ģ •ė¶€ė³‘ģ›'),
(109878, 'https://ror.org/00vw6wf38', 'fr', 1, 'https://ror.org/00vw6wf38 Institut d''ingƩnierie informatique de Limoges The Limoges Computer Sciences Engineering School'),
(109879, 'https://ror.org/01x7q0308', 'en', 1, 'https://ror.org/01x7q0308 Dongshin Korean Medicine Hospital ė™ģ‹ ķ•œė°©ė³‘ģ› ėŖ©ė™ė™ģ‹ ķ•œė°©ė³‘ģ›'),
(109880, 'https://ror.org/02dd1bz43', 'en', 1, 'https://ror.org/02dd1bz43 Hanyang University Hospital for Rheumatic Disease ķ•œģ–‘ėŒ€ķ•™źµė„˜ė§ˆķ‹°ģŠ¤ė³‘ģ›'),
(109881, 'https://ror.org/022gvqh28', 'en', 1, 'https://ror.org/022gvqh28 Amsterdam Institute for Addiction Research'),
(109882, 'https://ror.org/046j9cm62', 'en', 1, 'https://ror.org/046j9cm62 Research Institute for Future Medicine ģ‚¼ģ„±ģ„œģšøė³‘ģ› ėÆøėž˜ģ˜ķ•™ģ—°źµ¬ģ›'),
(109883, 'https://ror.org/022sgvv39', 'en', 1, 'https://ror.org/022sgvv39 Gyeonggi Provincal Medical Center ź²½źø°ė„ģ˜ė£Œģ›'),
(109884, 'https://ror.org/012sv7z62', 'en', 0, 'https://ror.org/012sv7z62 Chongqing Vocational College of Electronic Technology é‡åŗ†ē”µå­ē§‘ęŠ€čŒäøšå­¦é™¢'),
(109885, 'https://ror.org/00adwkx90', 'fr', 1, 'https://ror.org/00adwkx90 Institut des Sciences Chimiques de Rennes Rennes Institute of Chemical Sciences'),
(109886, 'https://ror.org/00j5eb891', 'fr', 1, 'https://ror.org/00j5eb891 Centre Interlangues'),
(109887, 'https://ror.org/01b5p4884', 'en', 1, 'https://ror.org/01b5p4884 Polar-Alpine Botanical Garden Institute ŠŸŠ¾Š»ŃŃ€Š½Š¾-альпийский ботанический саГ-ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š.А. Аврорина'),
(109888, 'https://ror.org/03yn94905', 'fr', 1, 'https://ror.org/03yn94905 Fonctions Optiques pour les Technologies de l’information'),
(109889, 'https://ror.org/04fperw70', 'no_lang_code', 1, 'https://ror.org/04fperw70 Korea Electric Power Corporation (South Korea)'),
(109890, 'https://ror.org/056vrw334', 'fr', 1, 'https://ror.org/056vrw334 MonastĆØre des Augustines MonastĆØre des Augustines de l’HĆ“tel-Dieu de QuĆ©bec'),
(109891, 'https://ror.org/04ckem624', 'en', 1, 'https://ror.org/04ckem624 Nantong Institute of Technology å—é€šē†å·„å­¦é™¢'),
(109892, 'https://ror.org/03x362t66', 'en', 1, 'https://ror.org/03x362t66 Hongseong Medical Center ķ™ģ„±ģ˜ė£Œģ›'),
(109893, 'https://ror.org/02xfrv514', 'fr', 1, 'https://ror.org/02xfrv514 SAntƩ INgenierie BIOlogie Saint-Etienne'),
(109894, 'https://ror.org/01hr6dm75', 'en', 1, 'https://ror.org/01hr6dm75 Independent Publisher Zhanneta Kozina Independent Publisher Zhanneta Kozina (Ukraine)'),
(109895, 'https://ror.org/04gjj3027', 'en', 1, 'https://ror.org/04gjj3027 Korea University Anam Hospital ź³ ėŒ€ģ•ˆģ•”ė³‘ģ› ź³ ė ¤ėŒ€ķ•™źµ ģ•ˆģ•”ė³‘ģ›'),
(109896, 'https://ror.org/03ccwte70', 'en', 1, 'https://ror.org/03ccwte70 National Geographic Information Institute 국토지리정볓원'),
(109897, 'https://ror.org/01egdsz94', 'en', 1, 'https://ror.org/01egdsz94 Baptist Health System'),
(109898, 'https://ror.org/01v1k9x08', 'en', 1, 'https://ror.org/01v1k9x08 Pusan National University Korean Medicine Hospital ė¶€ģ‚°ėŒ€ķ•™źµķ•œė°©ė³‘ģ›'),
(109899, 'https://ror.org/02zggdn05', 'fr', 1, 'https://ror.org/02zggdn05 Ɖtudes du Contemporain en LittĆ©ratures, Langues, Arts'),
(109900, 'https://ror.org/03s5v5320', 'es', 1, 'https://ror.org/03s5v5320 BenemƩrita Escuela Normal Veracruzana "Enrique C. RƩbsamen"'),
(109901, 'https://ror.org/05f1c3n42', 'en', 1, 'https://ror.org/05f1c3n42 Defense Agency for Technology and Quality źµ­ė°©źø°ģˆ ķ’ˆģ§ˆģ›'),
(109902, 'https://ror.org/03pf9d152', 'fr', 1, 'https://ror.org/03pf9d152 RƩseau QuƩbƩcois en reproduction'),
(109903, 'https://ror.org/058s27532', 'en', 1, 'https://ror.org/058s27532 National Assembly Futures Institute źµ­ķšŒėÆøėž˜ģ—°źµ¬ģ›'),
(109904, 'https://ror.org/012gdv017', 'fr', 1, 'https://ror.org/012gdv017 Centre de recherche interuniversitaire sur la littƩrature et la culture quƩbƩcoises'),
(109905, 'https://ror.org/0303qjm02', 'en', 1, 'https://ror.org/0303qjm02 Boseong Asan Hospital 볓성아산병원'),
(109906, 'https://ror.org/042vhbr87', 'en', 1, 'https://ror.org/042vhbr87 Chungju Medical Center ģ¶©ģ£¼ģ˜ė£Œģ›'),
(109907, 'https://ror.org/028vaas30', 'en', 1, 'https://ror.org/028vaas30 Department of Biotechnology Research į€‡į€®į€į€”į€Šį€ŗį€øį€•į€Šį€¬į€žį€Æį€į€±į€žį€”į€¦į€øį€…į€®į€øį€Œį€¬į€”'),
(109908, 'https://ror.org/01gaag595', 'en', 1, 'https://ror.org/01gaag595 Asia Pacific Foundation for Infectious Diseases ģ•„ģ‹œģ•„ķƒœķ‰ģ–‘ź°ģ—¼ģ—°źµ¬ģž¬ė‹Ø'),
(109909, 'https://ror.org/02escth15', 'id', 1, 'https://ror.org/02escth15 KONKLUSI - Kolaborasi Inklusi Konservasi (Yayasan)'),
(109910, 'https://ror.org/01e70gy59', 'en', 1, 'https://ror.org/01e70gy59 Department of Science and Technology of Anhui Province å®‰å¾½ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(109911, 'https://ror.org/03a7cv628', 'fr', 1, 'https://ror.org/03a7cv628 Centre technique du livre de l''enseignement supƩrieur'),
(109912, 'https://ror.org/02qb91e52', 'en', 1, 'https://ror.org/02qb91e52 Ajou University Dental Hospital ģ•„ģ£¼ėŒ€ķ•™źµ ģ¹˜ź³¼ė³‘ģ›'),
(109913, 'https://ror.org/013e4n276', 'en', 1, 'https://ror.org/013e4n276 Beijing Tongren Hospital é¦–éƒ½åŒ»ē§‘å¤§å­¦é™„å±žåŒ—äŗ¬åŒä»åŒ»é™¢'),
(109914, 'https://ror.org/03pfm5m48', 'en', 1, 'https://ror.org/03pfm5m48 Gyeonggi Provincal Medical Center Suwon Hospital ź²½źø°ė„ģ˜ė£Œģ› ģˆ˜ģ›ė³‘ģ›'),
(109915, 'https://ror.org/03dqrvm16', 'en', 1, 'https://ror.org/03dqrvm16 Global Centre for Academic Research Global Centre for Academic Research, South Africa'),
(109916, 'https://ror.org/05xs9wh57', 'es', 1, 'https://ror.org/05xs9wh57 Fundación Renal Española'),
(109917, 'https://ror.org/02rdw6h67', 'en', 1, 'https://ror.org/02rdw6h67 Hanmaeum Medical Center ķ•œė§ˆģŒģ˜ė£Œģ›'),
(109918, 'https://ror.org/05w9ent16', 'en', 1, 'https://ror.org/05w9ent16 Africa Health Sciences University'),
(109919, 'https://ror.org/02ch4pf44', 'en', 1, 'https://ror.org/02ch4pf44 Institute of Marine Biology of the National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Ń€ŃŃŒŠŗŠ¾Ń— біології ŠŠŠ України'),
(109920, 'https://ror.org/03h2b9f40', 'fr', 1, 'https://ror.org/03h2b9f40 EDC Paris Business School'),
(109921, 'https://ror.org/025mxgc68', 'en', 1, 'https://ror.org/025mxgc68 National Agricultural Products Quality Management Service źµ­ė¦½ė†ģ‚°ė¬¼ķ’ˆģ§ˆź“€ė¦¬ģ›'),
(109922, 'https://ror.org/04w0zef94', 'de', 1, 'https://ror.org/04w0zef94 Ferdinand Porsche FERNFH Ferdinand Porsche FERNFH – Distance-Learning University of Applied Sciences'),
(109923, 'https://ror.org/04y5kwa70', 'fr', 1, 'https://ror.org/04y5kwa70 University of Technology of Compiègne Université de Technologie de Compiègne'),
(109924, 'https://ror.org/006z56y91', 'en', 1, 'https://ror.org/006z56y91 Raymond M. Alf Museum of Paleontology'),
(109925, 'https://ror.org/01s9x6r32', 'en', 1, 'https://ror.org/01s9x6r32 All India Shri Shivaji Memorial Society College of Engineering'),
(109926, 'https://ror.org/013frrx13', 'en', 1, 'https://ror.org/013frrx13 Land and Housing Institute ķ† ģ§€ģ£¼ķƒģ—°źµ¬ģ›'),
(109927, 'https://ror.org/020frhj02', 'en', 1, 'https://ror.org/020frhj02 International Standard University'),
(109928, 'https://ror.org/00c7kvd80', 'en', 1, 'https://ror.org/00c7kvd80 Christian Medical College, Vellore ą¦–ą§ą¦°ą¦æą¦øą§ą¦Ÿą¦¾ą¦Ø মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ভেলোর ą®µąÆ‡ą®²ąÆ‚ą®°ąÆ ą®•ą®æą®±ą®æą®øąÆą®¤ą®µ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(109929, 'https://ror.org/01j6bah27', 'en', 1, 'https://ror.org/01j6bah27 Seoul National University Hospital Institute of Convergence Medicine with Innovative Technology ģ„œģšøėŒ€ķ•™źµė³‘ģ› ģœµķ•©ģ˜ķ•™źø°ģˆ ģ›'),
(109930, 'https://ror.org/04v3ym002', 'en', 1, 'https://ror.org/04v3ym002 Dongshin University Naju Korean Medicine Hospital ė‚˜ģ£¼ė™ģ‹ ėŒ€ķ•™źµķ•œė°©ė³‘ģ›'),
(109931, 'https://ror.org/00jnds476', 'en', 1, 'https://ror.org/00jnds476 Kyung Hee University Healthcare System ź²½ķ¬ėŒ€ķ•™źµģ˜ė£Œģ›'),
(109932, 'https://ror.org/02jj93564', 'es', 1, 'https://ror.org/02jj93564 Pontifical University of Salamanca Universidad Pontificia de Salamanca Universitat PontifĆ­cia de Salamanca'),
(109933, 'https://ror.org/05vp4an32', 'en', 1, 'https://ror.org/05vp4an32 Shanxi Science and Technology Department å±±č„æēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(109934, 'https://ror.org/02e9fga34', 'en', 1, 'https://ror.org/02e9fga34 Gyeongbuk Development Institute 경북연구원'),
(109935, 'https://ror.org/00fw97762', 'id', 1, 'https://ror.org/00fw97762 Universitas Nurdin Hamzah'),
(109936, 'https://ror.org/0132rxg34', 'en', 1, 'https://ror.org/0132rxg34 Ewha Womans University Mother and Baby Hospital ģ“ėŒ€ģ—„ė§ˆģ•„źø°ė³‘ģ› ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ ģ—„ė§ˆģ•„źø°ė³‘ģ›'),
(109937, 'https://ror.org/042yhqx52', 'pl', 1, 'https://ror.org/042yhqx52 Wyższa Szkoła Nauk o Zdrowiu'),
(109938, 'https://ror.org/00vazrw17', 'fr', 1, 'https://ror.org/00vazrw17 Laboratoire de GƩographie et d''AmƩnagement de Montpellier'),
(109939, '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'),
(109940, 'https://ror.org/01dmavx46', 'en', 1, 'https://ror.org/01dmavx46 Code for Science & Society'),
(109941, 'https://ror.org/00f25x804', 'en', 1, 'https://ror.org/00f25x804 ATTMOS Inc. ATTMOS Inc. (United States)'),
(109942, 'https://ror.org/04gmf5p72', 'fr', 0, 'https://ror.org/04gmf5p72 Ɖcole Nationale SupĆ©rieure de Technologie المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(109943, 'https://ror.org/00g7m7w72', 'en', 1, 'https://ror.org/00g7m7w72 Madhav University'),
(109944, 'https://ror.org/018ze3r73', 'en', 1, 'https://ror.org/018ze3r73 Chukwuemeka Odumegwu Ojukwu University'),
(109945, 'https://ror.org/005m6rn77', 'no_lang_code', 0, 'https://ror.org/005m6rn77 Fiat Chrysler Automobiles (Italy)'),
(109946, 'https://ror.org/03xbd7n63', 'en', 1, 'https://ror.org/03xbd7n63 Intellectual Property Scientific Research Institute of the National Academy of Legal Sciences of Ukraine ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ДосліГний Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š†Š½Ń‚ŠµŠ»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Š¾Ń— Власності ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— АкаГемії ŠŸŃ€Š°Š²Š¾Š²ŠøŃ… ŠŠ°ŃƒŠŗ України'),
(109947, 'https://ror.org/01p178v10', 'fr', 1, 'https://ror.org/01p178v10 Institut de Recherche en SantƩ, Environnement et Travail Research Institute for Environmental and Occupation Health'),
(109948, 'https://ror.org/0496zek69', 'fr', 1, 'https://ror.org/0496zek69 FERRANDI Paris'),
(109949, 'https://ror.org/01jr3y717', 'en', 1, 'https://ror.org/01jr3y717 Ohio University Universidad de Ohio UniversitƩ de l''ohio'),
(109950, 'https://ror.org/044eq7773', 'en', 1, 'https://ror.org/044eq7773 Korea Seed & Variety Service źµ­ė¦½ģ¢…ģžģ›'),
(109951, 'https://ror.org/02w5vxx03', 'fr', 1, 'https://ror.org/02w5vxx03 Centre de recherche en santƩ publique Centre for Public Health Research'),
(109952, 'https://ror.org/05de6h762', 'fr', 1, 'https://ror.org/05de6h762 Maison de l''Orient et de la MƩditerranƩe Jean Pouilloux'),
(109953, 'https://ror.org/04xqwq985', 'en', 1, 'https://ror.org/04xqwq985 Inje University ģøģ œėŒ€ķ•™źµ'),
(109954, 'https://ror.org/05n1n3w07', 'en', 1, 'https://ror.org/05n1n3w07 Device Lab Inc. Device Lab Inc. (Japan)'),
(109955, 'https://ror.org/02fhmtn03', 'en', 1, 'https://ror.org/02fhmtn03 National Fire Agency ėŒ€ķ•œėÆ¼źµ­ ģ†Œė°©ģ²­'),
(109956, 'https://ror.org/04wveea53', 'cs', 1, 'https://ror.org/04wveea53 Laboratories of Behavioral Studies Laboratoře BehaviorĆ”lnĆ­ch StudiĆ­'),
(109957, 'https://ror.org/00c5s4a53', 'en', 1, 'https://ror.org/00c5s4a53 Ministry of Oceans and Fisheries ėŒ€ķ•œėÆ¼źµ­ ķ•“ģ–‘ģˆ˜ģ‚°ė¶€'),
(109958, 'https://ror.org/02wmc6m46', 'fr', 1, 'https://ror.org/02wmc6m46 Institut d''Histoire des ReprƩsentations et des IdƩes dans les ModernitƩs'),
(109959, 'https://ror.org/013k0nv46', 'en', 1, 'https://ror.org/013k0nv46 Namwon Medical Center ė‚Øģ›ģ˜ė£Œģ›'),
(109960, 'https://ror.org/04yzej849', 'en', 1, 'https://ror.org/04yzej849 City College of Angeles'),
(109961, 'https://ror.org/05yp5js06', 'en', 1, 'https://ror.org/05yp5js06 Korea University Ansan Hospital ź³ ėŒ€ģ•ˆģ‚°ė³‘ģ› ź³ ė ¤ėŒ€ķ•™źµ ģ•ˆģ‚°ė³‘ģ›'),
(109962, 'https://ror.org/02msb5n36', 'es', 1, 'https://ror.org/02msb5n36 National University of Distance Education Universidad Nacional de Educación a Distancia'),
(109963, 'https://ror.org/02sqbf202', 'fr', 1, 'https://ror.org/02sqbf202 MusƩe national du Sport'),
(109964, 'https://ror.org/00bnp0v08', 'en', 1, 'https://ror.org/00bnp0v08 Konkuk University Chungju Hospital ź±“źµ­ėŒ€ķ•™źµ 충주병원'),
(109965, 'https://ror.org/049enk825', 'en', 1, 'https://ror.org/049enk825 Kakao Enterprise Kakao Enterprise (South Korea) ģ¹“ģ¹“ģ˜¤ģ—”ķ„°ķ”„ė¼ģ“ģ¦ˆ'),
(109966, 'https://ror.org/05fhe0r85', 'en', 1, 'https://ror.org/05fhe0r85 Agency for Defense Development źµ­ė°©ź³¼ķ•™ģ—°źµ¬ģ†Œ'),
(109967, 'https://ror.org/02jsxd428', 'es', 1, 'https://ror.org/02jsxd428 Francisco JosƩ de Caldas District University Universidad Distrital Francisco JosƩ de Caldas'),
(109968, 'https://ror.org/03gfzce48', 'fr', 1, 'https://ror.org/03gfzce48 Universcience'),
(109969, 'https://ror.org/02yd1e415', 'en', 1, 'https://ror.org/02yd1e415 Al Hayah University in Cairo Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŁŠŲ§Ų© بالقاهرة'),
(109970, 'https://ror.org/002g4yr42', 'en', 1, 'https://ror.org/002g4yr42 Gamal Abdel Nasser University of Conakry UniversitƩ gamal abdel nasser de conakry'),
(109971, 'https://ror.org/0585jdm07', 'en', 1, 'https://ror.org/0585jdm07 Keimyung University Gyeongju Dongsan Hospital ź³„ėŖ…ėŒ€ķ•™źµ ź²½ģ£¼ė™ģ‚°ė³‘ģ›'),
(109972, 'https://ror.org/00zqx9e28', 'en', 1, 'https://ror.org/00zqx9e28 Charles Perkins Centre Histology Facility'),
(109973, 'https://ror.org/0274dq154', 'fr', 1, 'https://ror.org/0274dq154 Centre de droit des affaires'),
(109974, 'https://ror.org/00n3whp50', 'en', 1, 'https://ror.org/00n3whp50 African Digital Heritage Foundation'),
(109975, 'https://ror.org/022tspp03', 'en', 1, 'https://ror.org/022tspp03 Green Climate Fund ė…¹ģƒ‰źø°ķ›„źø°źøˆ'),
(109976, 'https://ror.org/03ddh2c27', 'en', 1, 'https://ror.org/03ddh2c27 LG (South Korea)'),
(109977, 'https://ror.org/00vn4ec76', 'en', 1, 'https://ror.org/00vn4ec76 Korea National College of Agriculture and Fisheries ķ•œźµ­ė†ģˆ˜ģ‚°ėŒ€ķ•™źµ'),
(109978, 'https://ror.org/05ma8mw15', 'en', 1, 'https://ror.org/05ma8mw15 LTER-Italia LTER-Italy'),
(109979, 'https://ror.org/02z87sy46', 'fr', 1, 'https://ror.org/02z87sy46 Institut SupƩrieur des Beaux-arts de BesanƧon'),
(109980, 'https://ror.org/01gr8hx37', 'en', 1, 'https://ror.org/01gr8hx37 Gimcheon Medical Center ź¹€ģ²œģ˜ė£Œģ›'),
(109981, 'https://ror.org/047f01g80', 'en', 1, 'https://ror.org/047f01g80 Swiss National Data and Service Center for the Humanities'),
(109982, 'https://ror.org/04nzrnx83', 'no_lang_code', 1, 'https://ror.org/04nzrnx83 Naver (South Korea) ė„¤ģ“ė²„'),
(109983, 'https://ror.org/03yrc0w08', 'en', 1, 'https://ror.org/03yrc0w08 Gachon University Medical Center Dong Incheon Gil Hospital ź°€ģ²œėŒ€ķ•™źµė¶€ģ† ė™ģøģ²œźøøė³‘ģ› ė™ģøģ²œźøøė³‘ģ›'),
(109984, 'https://ror.org/03f546a26', 'en', 1, 'https://ror.org/03f546a26 People''s Government of Shaanxi Province é™•č„æēœäŗŗę°‘ę”æåŗœ'),
(109985, 'https://ror.org/01fmz7t89', 'en', 1, 'https://ror.org/01fmz7t89 Federal State Budget Educational Institution of Higher Education Ā«Lesgaft National State University of Physical Education, Sport and Health, St. PetersburgĀ» Lesgaft National State University of Physical Education, Sport and Health ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Š·Š“Š¾Ń€Š¾Š²ŃŒŃ им. Лесгафта Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ УчрежГение Š’Ń‹ŃŃˆŠµŠ³Š¾ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ā€œŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет Физической ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, Дпорта И Š—Š“Š¾Ń€Š¾Š²ŃŒŃ Имени П.Ф.Лесгафта, Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ā€'),
(109986, 'https://ror.org/053wack18', 'fr', 1, 'https://ror.org/053wack18 Laboratoire de psychologie: dynamiques relationnelles et processus identitaires'),
(109987, 'https://ror.org/036xb2667', 'en', 1, 'https://ror.org/036xb2667 Ministry of Strategy and Finance ėŒ€ķ•œėÆ¼źµ­ źø°ķšģž¬ģ •ė¶€'),
(109988, 'https://ror.org/03hf41361', 'en', 1, 'https://ror.org/03hf41361 Fowler Kennedy Sport Medicine Clinic'),
(109989, 'https://ror.org/029jhrq61', 'en', 1, 'https://ror.org/029jhrq61 Aspiring Scholars Directed Research Program'),
(109990, 'https://ror.org/05da5vm76', 'en', 1, 'https://ror.org/05da5vm76 Hį»c Viện HĆ ng KhĆ“ng Việt Nam Vietnam Aviation Academy'),
(109991, 'https://ror.org/049z3x013', 'fr', 1, 'https://ror.org/049z3x013 Laboratoire de mathématiques appliquées de Compiègne'),
(109992, 'https://ror.org/04d1tte79', 'en', 1, 'https://ror.org/04d1tte79 Hana Bank Hana Bank (South Korea) ķ•˜ė‚˜ģ€ķ–‰'),
(109993, 'https://ror.org/05qv7ha25', 'en', 1, 'https://ror.org/05qv7ha25 Ohio University Zanesville'),
(109994, 'https://ror.org/02cyrtj23', 'en', 1, 'https://ror.org/02cyrtj23 Korea Capital Market Institute ģžė³øģ‹œģž„ģ—°źµ¬ģ›'),
(109995, 'https://ror.org/00qhgj647', 'fr', 1, 'https://ror.org/00qhgj647 Ɖcole nationale de voile et des sports nautiques'),
(109996, 'https://ror.org/02evt3n51', 'en', 1, 'https://ror.org/02evt3n51 insitro insitro, inc. insitro, inc. (United States)'),
(109997, 'https://ror.org/038j07x88', 'en', 1, 'https://ror.org/038j07x88 Dr. Vitthalrao Vikhe Patil Foundation’s Medical College'),
(109998, 'https://ror.org/01yx7av22', 'fr', 1, 'https://ror.org/01yx7av22 Histoire et Sources des Mondes Antiques'),
(109999, 'https://ror.org/010cna561', 'fr', 1, 'https://ror.org/010cna561 Haut Conseil de l''Ʃvaluation de la recherche et de l''enseignement supƩrieur High Council for the Evaluation of Research and Higher Education'),
(110000, 'https://ror.org/05a7g7f24', 'en', 1, 'https://ror.org/05a7g7f24 Hebei Provincial Department of Science and Technology ę²³åŒ—ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(110001, 'https://ror.org/04bxf0m67', 'en', 1, 'https://ror.org/04bxf0m67 Scientific-Practical Center of Endovascular Neuroradiology of the National Academy of Medical Sciences of Ukraine State Institution "Scientific-Practical Center of Endovascular Neuroradiology, NAMS of Ukraine" ДУ Ā«ŠŠŸŠ¦Š•ŠŠ Š„ ŠŠŠœŠ України'),
(110002, 'https://ror.org/02evk6c51', 'fr', 1, 'https://ror.org/02evk6c51 Animal and Human Ethology Ethologie animale et humaine'),
(110003, 'https://ror.org/04nj43p05', 'en', 1, 'https://ror.org/04nj43p05 Chuo cha Takwimu Mashariki mwa Afrika Eastern Africa Statistical Training Centre'),
(110004, 'https://ror.org/01xwm1a56', 'en', 1, 'https://ror.org/01xwm1a56 Beijing Shunyi District Hospital åŒ—äŗ¬åø‚é”ŗä¹‰åŒŗåŒ»é™¢'),
(110005, 'https://ror.org/00662t695', 'en', 1, 'https://ror.org/00662t695 DER Security DER Security (United States) DERSec'),
(110006, 'https://ror.org/00psw8792', 'fr', 1, 'https://ror.org/00psw8792 Center for Research on Education, Learning and Didactics Centre de recherche sur l’éducation, les apprentissages et la didactique'),
(110007, 'https://ror.org/03khw1425', 'en', 1, 'https://ror.org/03khw1425 Korea AeroSpace Administration ģš°ģ£¼ķ•­ź³µģ²­'),
(110008, 'https://ror.org/04c2djv76', 'en', 1, 'https://ror.org/04c2djv76 IBKźø°ģ—…ģ€ķ–‰ Industrial Bank of Korea'),
(110009, 'https://ror.org/014809085', 'fr', 1, 'https://ror.org/014809085 IUT de Paris - Rives de Seine University Institute of Technology (IUT) of Paris – Rives de Seine'),
(110010, 'https://ror.org/05ede7y70', 'en', 1, 'https://ror.org/05ede7y70 State Emergency Service of Ukraine Державна служба України Š· наГзвичайних ŃŠøŃ‚ŃƒŠ°Ń†Ń–Š¹'),
(110011, 'https://ror.org/03sc1p174', 'fr', 1, 'https://ror.org/03sc1p174 Laboratoire Interuniversitaire de Biologie de la MotricitƩ'),
(110012, 'https://ror.org/039wnc210', 'no', 1, 'https://ror.org/039wnc210 Senja kommune'),
(110013, 'https://ror.org/05x4saq78', 'en', 1, 'https://ror.org/05x4saq78 Thal University Bhakkar'),
(110014, 'https://ror.org/020n3gx08', 'fr', 1, 'https://ror.org/020n3gx08 ImViA - Imagerie et Vision Artificielle'),
(110015, 'https://ror.org/036wqyb22', 'fr', 1, 'https://ror.org/036wqyb22 ENSA Dijon ENSA Dijon Art and Design Ɖcole nationale supĆ©rieure d’art de Dijon'),
(110016, 'https://ror.org/02gz6nd21', 'en', 1, 'https://ror.org/02gz6nd21 FC3R - Groupement d’IntĆ©rĆŖt Scientifique French Center 3R'),
(110017, 'https://ror.org/011wcsv83', 'no_lang_code', 1, 'https://ror.org/011wcsv83 Stellantis Stellantis (Netherlands) Stellantis NV'),
(110018, 'https://ror.org/05wrcnz68', 'en', 1, 'https://ror.org/05wrcnz68 Gangwon State Wonju Medical Center ź°•ģ›ķŠ¹ė³„ģžģ¹˜ė„ģ›ģ£¼ģ˜ė£Œģ›'),
(110019, 'https://ror.org/02x9xnh02', 'en', 1, 'https://ror.org/02x9xnh02 National Institute of Chemical Safety ķ™”ķ•™ė¬¼ģ§ˆģ•ˆģ „ģ›'),
(110020, 'https://ror.org/011rp3b19', 'en', 1, 'https://ror.org/011rp3b19 National Institute of Crop Science źµ­ė¦½ģ‹ėŸ‰ź³¼ķ•™ģ›'),
(110021, 'https://ror.org/04nh80821', 'fr', 1, 'https://ror.org/04nh80821 ESCE International Business School Ɖcole SupĆ©rieure du Commerce ExtĆ©rieur'),
(110022, 'https://ror.org/01nktd821', 'en', 1, 'https://ror.org/01nktd821 Society for Scholarly Publishing'),
(110023, 'https://ror.org/05dfg0d13', 'en', 1, 'https://ror.org/05dfg0d13 PETA Science Consortium International e.V.'),
(110024, 'https://ror.org/04tpgkf67', 'en', 1, 'https://ror.org/04tpgkf67 AgriBio e-Spectrum'),
(110025, 'https://ror.org/04155vc40', 'fr', 1, 'https://ror.org/04155vc40 Institut Catholique d''Arts et MƩtiers'),
(110026, 'https://ror.org/0209j4f64', 'en', 1, 'https://ror.org/0209j4f64 University of Perpetual Help System Laguna'),
(110027, 'https://ror.org/00a2a1y63', 'fr', 1, 'https://ror.org/00a2a1y63 Approches LittƩraires, Linguistiques & Historiques des Sources'),
(110028, 'https://ror.org/05q76pg64', 'en', 1, 'https://ror.org/05q76pg64 Jeju Medical Center ģ œģ£¼ģ˜ė£Œģ›'),
(110029, 'https://ror.org/007gmjd97', 'en', 1, 'https://ror.org/007gmjd97 Korea Electric Power Research Institute 전렄연구원 ķ•œźµ­ģ „ė „ź³µģ‚¬ 전렄연구원'),
(110030, 'https://ror.org/04sf78n69', 'en', 1, 'https://ror.org/04sf78n69 Sangnam Hanmaeum Hospital ģƒė‚Øķ•œė§ˆģŒė³‘ģ›'),
(110031, 'https://ror.org/00e8mza46', 'fr', 1, 'https://ror.org/00e8mza46 Centre de recherche de MontrƩal sur les inƩgalitƩs sociales, les discriminations et les pratiques alternatives de citoyennetƩ'),
(110032, 'https://ror.org/05ev54a13', 'fr', 1, 'https://ror.org/05ev54a13 Laboratoire d''Ɖconomie des Ressources Naturelles'),
(110033, 'https://ror.org/01y6ccd51', 'en', 1, 'https://ror.org/01y6ccd51 Woori Bank Woori Bank (South Korea) ģš°ė¦¬ģ€ķ–‰'),
(110034, 'https://ror.org/04wkxxb16', 'fr', 1, 'https://ror.org/04wkxxb16 AcadƩmie des sciences d''outre-mer'),
(110035, 'https://ror.org/04jzh4z84', 'en', 1, 'https://ror.org/04jzh4z84 Korea High Tech Textile Research Institute ķ•œźµ­ģ„¬ģœ ģ†Œģž¬ģ—°źµ¬ģ›'),
(110036, 'https://ror.org/0002mgt08', 'fr', 1, 'https://ror.org/0002mgt08 Ɖcole supĆ©rieure d''Art d''Avignon'),
(110037, 'https://ror.org/043ddwk90', 'en', 1, 'https://ror.org/043ddwk90 Cheongju Medical Center ģ²­ģ£¼ģ˜ė£Œģ›'),
(110038, 'https://ror.org/030ewzw66', 'fr', 1, 'https://ror.org/030ewzw66 Institut de l''Ouest : Droit et Europe Western Institute of Law and Europe'),
(110039, 'https://ror.org/02687b281', 'en', 1, 'https://ror.org/02687b281 Gachon University Medical Center ź°€ģ²œėŒ€ķ•™źµģ˜ė£Œģ›'),
(110040, 'https://ror.org/00pjqzf38', 'fr', 1, 'https://ror.org/00pjqzf38 Centre Georges FranƧois Leclerc'),
(110041, 'https://ror.org/03dgmxj03', 'fr', 1, 'https://ror.org/03dgmxj03 Laboratoire de Psychologie : Cognition, Comportement, Communication'),
(110042, 'https://ror.org/054f5fc35', 'fr', 1, 'https://ror.org/054f5fc35 FƩdƩration Informatique de Lyon'),
(110043, 'https://ror.org/016539177', 'en', 1, 'https://ror.org/016539177 KISTI Research Division for Data Analysis KISTI ė°ģ“ķ„°ė¶„ģ„ģ—°źµ¬ė³øė¶€'),
(110044, 'https://ror.org/011f68d87', 'fr', 1, 'https://ror.org/011f68d87 Laboratoire franco-mexicain d''informatique et d''automatique'),
(110045, 'https://ror.org/01fgbt009', 'en', 1, 'https://ror.org/01fgbt009 Daegu Mechatronics & Materials Institute ėŒ€źµ¬źø°ź³„ė¶€ķ’ˆģ—°źµ¬ģ›'),
(110046, 'https://ror.org/0310h1546', 'en', 1, 'https://ror.org/0310h1546 Bratislava University of Economics and Business'),
(110047, 'https://ror.org/03f0nev63', 'en', 1, 'https://ror.org/03f0nev63 Danish e-infrastructure Consortium DeiC - Danish e-infrastructure Consortium'),
(110048, 'https://ror.org/014fwd296', 'en', 1, 'https://ror.org/014fwd296 Gangwon State Gangneung Medical Center ź°•ģ›ķŠ¹ė³„ģžģ¹˜ė„ź°•ė¦‰ģ˜ė£Œģ›'),
(110049, 'https://ror.org/00chcy438', 'en', 1, 'https://ror.org/00chcy438 Pau Costa Foundation'),
(110050, 'https://ror.org/02xba8z29', 'en', 1, 'https://ror.org/02xba8z29 INSEEC School of Business and Economics'),
(110051, 'https://ror.org/013q33h79', 'fr', 1, 'https://ror.org/013q33h79 Institut d''Ɖlectronique et des Technologies du numĆ©Rique'),
(110052, 'https://ror.org/05vzq8x33', 'fr', 1, 'https://ror.org/05vzq8x33 RƩseau CanopƩ'),
(110053, 'https://ror.org/00hyr5m88', 'en', 1, 'https://ror.org/00hyr5m88 Kyungpook National University Chilgok Hospital ź²½ė¶ėŒ€ķ•™źµģ¹ ź³”ė³‘ģ› ģ¹ ź³”ź²½ė¶ėŒ€ķ•™źµė³‘ģ›'),
(110054, 'https://ror.org/00bf6bf92', 'en', 1, 'https://ror.org/00bf6bf92 Oncogenesis Stress Signaling'),
(110055, 'https://ror.org/027286m03', 'en', 1, 'https://ror.org/027286m03 Korea Expressway Corporation Korea Expressway Corporation (South Korea) ķ•œźµ­ė„ė”œź³µģ‚¬'),
(110056, 'https://ror.org/04atp4p48', 'en', 1, 'https://ror.org/04atp4p48 China Scholarship Council å›½å®¶ē•™å­¦åŸŗé‡‘ē®”ē†å§”å‘˜ä¼š'),
(110057, 'https://ror.org/0299nd731', 'en', 1, 'https://ror.org/0299nd731 Daegu Haany University Medical Center ėŒ€źµ¬ķ•œģ˜ėŒ€ķ•™źµ ģ˜ė£Œģ›'),
(110058, 'https://ror.org/03xjsc505', 'en', 1, 'https://ror.org/03xjsc505 Ferdinand-Steinbeis-Institut'),
(110059, 'https://ror.org/03nj85g50', 'en', 1, 'https://ror.org/03nj85g50 Tryptomics Tryptomics (United States)'),
(110060, 'https://ror.org/01ta8v847', 'en', 1, 'https://ror.org/01ta8v847 PPM School of Management'),
(110061, 'https://ror.org/00wgj7j17', 'en', 1, 'https://ror.org/00wgj7j17 Daegu Policy Institute ėŒ€źµ¬ģ •ģ±…ģ—°źµ¬ģ›'),
(110062, 'https://ror.org/01jk65d91', 'en', 1, 'https://ror.org/01jk65d91 Keimyung University Daegu Dongsan Hospital ź³„ėŖ…ėŒ€ķ•™źµ ėŒ€źµ¬ė™ģ‚°ė³‘ģ›'),
(110063, 'https://ror.org/004g9hq59', 'en', 1, 'https://ror.org/004g9hq59 CHA Advanced Research Institute ģ°Ø 종합연구원'),
(110064, 'https://ror.org/034k14f91', 'en', 1, 'https://ror.org/034k14f91 Beijing Municipal Science and Technology Commission åŒ—äŗ¬åø‚ē§‘å­¦ęŠ€ęœÆå§”å‘˜ä¼š'),
(110065, 'https://ror.org/020p6g633', 'en', 1, 'https://ror.org/020p6g633 Ethophilia Research Foundation'),
(110066, 'https://ror.org/041p8ws46', 'no_lang_code', 0, 'https://ror.org/041p8ws46 Chrysler (Canada)'),
(110067, 'https://ror.org/05799pa89', 'no_lang_code', 1, 'https://ror.org/05799pa89 Gondwana University ą¤—ą„‹ą¤‚ą¤”ą¤µą¤¾ą¤Øą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(110068, 'https://ror.org/04d70nb60', 'fr', 1, 'https://ror.org/04d70nb60 Center for Translational and Molecular Medicine Centre de recherche Translationnelle en MƩdecine molƩculaire'),
(110069, 'https://ror.org/007ezqq25', 'en', 1, 'https://ror.org/007ezqq25 Research Institute of Medium & Small Shipbuilding ģ¤‘ģ†Œģ”°ģ„ ģ—°źµ¬ģ›'),
(110070, 'https://ror.org/0033vhx30', 'fr', 0, 'https://ror.org/0033vhx30 University of Paris-Seine UniversitƩ Paris-Seine'),
(110071, 'https://ror.org/004dtkx37', 'en', 1, 'https://ror.org/004dtkx37 Haridev Joshi University of Journalism and Mass Communication ą¤¹ą¤°ą¤æą¤¦ą„‡ą¤µ ą¤œą„‹ą¤¶ą„€ ą¤Ŗą¤¤ą„ą¤°ą¤•ą¤¾ą¤°ą¤æą¤¤ą¤¾ और ą¤œą¤Øą¤øą¤‚ą¤šą¤¾ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(110072, 'https://ror.org/04f56f814', 'id', 1, 'https://ror.org/04f56f814 Sekolah Tinggi Ilmu Ekonomi Bina Karya'),
(110073, 'https://ror.org/059sz6q14', 'fr', 1, 'https://ror.org/059sz6q14 Centre International de Recherche en Infectiologie International Center for Infectiology Research'),
(110074, 'https://ror.org/04k7gvs40', 'en', 1, 'https://ror.org/04k7gvs40 Nakdonggang National Institute of Biological Resources źµ­ė¦½ė‚™ė™ź°•ģƒė¬¼ģžģ›ź“€'),
(110075, 'https://ror.org/007dbrz84', 'en', 1, 'https://ror.org/007dbrz84 Geo-Ocean'),
(110076, 'https://ror.org/0582v6g41', 'en', 1, 'https://ror.org/0582v6g41 Chung-Ang University Gwangmyeong Hospital ģ¤‘ģ•™ėŒ€ķ•™źµ ꓑ명병원'),
(110077, 'https://ror.org/04fke6556', 'fr', 1, 'https://ror.org/04fke6556 Recherches en Psychopathologie et Psychanalyse'),
(110078, 'https://ror.org/0520xdp94', 'en', 1, 'https://ror.org/0520xdp94 University of Kut Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁˆŲŖ'),
(110079, 'https://ror.org/05yhtfv11', 'fr', 1, 'https://ror.org/05yhtfv11 GƩoarchitecture, Territoires, Urbanisation, BiodiversitƩ, Environnement'),
(110080, 'https://ror.org/03r1gb843', 'en', 1, 'https://ror.org/03r1gb843 University of Perpetual Help System DALTA Calamba'),
(110081, 'https://ror.org/0261sqs28', 'en', 0, 'https://ror.org/0261sqs28 United States Air Force Space and Missile Systems Center'),
(110082, 'https://ror.org/00m4rxj18', 'fr', 1, 'https://ror.org/00m4rxj18 Arènes: politique, santé publique, environnement, médias'),
(110083, 'https://ror.org/055135t18', 'en', 1, 'https://ror.org/055135t18 Dongguk University Bundang Oriental Hospital ė™źµ­ėŒ€ķ•™źµ ė¶„ė‹¹ķ•œė°©ė³‘ģ›'),
(110084, 'https://ror.org/00xx85724', 'en', 1, 'https://ror.org/00xx85724 Seoul National University Hospital Biomedical Research Institute ģ„œģšøėŒ€ķ•™źµė³‘ģ› ģ˜ģƒėŖ…ģ—°źµ¬ģ›'),
(110085, 'https://ror.org/019em0d38', 'en', 1, 'https://ror.org/019em0d38 Chungbuk Research Institute 충북연구원'),
(110086, 'https://ror.org/003n95695', 'fr', 1, 'https://ror.org/003n95695 LabexMER');
INSERT INTO `rors` VALUES
(110087, 'https://ror.org/009q4y463', 'en', 1, 'https://ror.org/009q4y463 Japan Marketing Academy ę—„ęœ¬ćƒžćƒ¼ć‚±ćƒ†ć‚£ćƒ³ć‚°å­¦ä¼š'),
(110088, 'https://ror.org/02ypept83', 'en', 1, 'https://ror.org/02ypept83 United States Space Force'),
(110089, 'https://ror.org/04dbtaf18', 'fr', 1, 'https://ror.org/04dbtaf18 AutoritƩ de sƻretƩ nuclƩaire et de radioprotection French Authority for Nuclear Safety and Radiation Protection'),
(110090, 'https://ror.org/00r7c6e04', 'en', 1, 'https://ror.org/00r7c6e04 Paavai Engineering College'),
(110091, 'https://ror.org/04bqfk210', 'en', 1, 'https://ror.org/04bqfk210 Geisinger Commonwealth School of Medicine'),
(110092, 'https://ror.org/05w9erc61', 'en', 1, 'https://ror.org/05w9erc61 Chongqing Science and Technology Commission é‡åŗ†åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(110093, 'https://ror.org/025ras206', 'en', 1, 'https://ror.org/025ras206 Ningbo Municipal People''s Government'),
(110094, 'https://ror.org/02z7ccn69', 'en', 1, 'https://ror.org/02z7ccn69 The Catholic University of Korea Eunpyeong St. Mary''s Hospital ź°€ķ†Øė¦­ėŒ€ķ•™źµģ€ķ‰ģ„±ėŖØė³‘ģ› ģ€ķ‰ģ„±ėŖØė³‘ģ›'),
(110095, 'https://ror.org/051ehkh20', 'en', 1, 'https://ror.org/051ehkh20 Seogwipo Medical Center ģ„œź·€ķ¬ģ˜ė£Œģ›'),
(110096, 'https://ror.org/05yj2y557', 'fr', 1, 'https://ror.org/05yj2y557 DƩpartement de Recherche en IngƩnierie des VƩhicules pour l''Environnement'),
(110097, 'https://ror.org/01vx3p235', 'en', 1, 'https://ror.org/01vx3p235 Andong Medical Center ģ•ˆė™ģ˜ė£Œģ›'),
(110098, 'https://ror.org/05pa8nx74', 'fr', 1, 'https://ror.org/05pa8nx74 Africa Center of Excellence for Prevention and Control of Communicable Diseases Centre d’excellence africain pour la prĆ©vention et le contrĆ“le des maladies transmissibles'),
(110099, 'https://ror.org/0443n9e75', 'fr', 0, 'https://ror.org/0443n9e75 Toulouse 1 Capitole University UniversitƩ Toulouse-I-Capitole'),
(110100, 'https://ror.org/056zsfg36', 'en', 1, 'https://ror.org/056zsfg36 Habibullah Bahar College'),
(110101, 'https://ror.org/02ajeds27', 'en', 1, 'https://ror.org/02ajeds27 Ulsan Research Institute ģšøģ‚°ģ—°źµ¬ģ›'),
(110102, 'https://ror.org/059k49c26', 'en', 1, 'https://ror.org/059k49c26 Ewha Womans University Seoul Hospital ģ“ėŒ€ģ„œģšøė³‘ģ› ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ ģ„œģšøė³‘ģ›'),
(110103, 'https://ror.org/00wy32730', 'en', 1, 'https://ror.org/00wy32730 JESSENIUS JESSENIUS - Diagnostic Center A.S. JESSENIUS - diagnostickƩ centrum a.s.'),
(110104, 'https://ror.org/02ety8s21', 'en', 1, 'https://ror.org/02ety8s21 Dankook University Jukjeon Dental Hospital ė‹Øźµ­ėŒ€ķ•™źµ ģ¹˜ź³¼ėŒ€ķ•™ ģ£½ģ „ģ¹˜ź³¼ė³‘ģ›'),
(110105, 'https://ror.org/0190ehg68', 'en', 1, 'https://ror.org/0190ehg68 Ukrainian Hydrometeorological Institute'),
(110106, 'https://ror.org/05b3p7p58', 'fr', 1, 'https://ror.org/05b3p7p58 Laboratoire Mouvement Sport SantƩ Movement, Sport and health Sciences Laboratory'),
(110107, 'https://ror.org/02ffh4228', 'es', 1, 'https://ror.org/02ffh4228 Institute of Tropical Medicine Alexander von Humboldt Instituto de Medicina Tropical Alexander von Humboldt'),
(110108, 'https://ror.org/029cgt552', 'en', 1, 'https://ror.org/029cgt552 Tunis El Manar University UniversitĆ© de tunis - el manar Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³ المنار'),
(110109, 'https://ror.org/033s45t12', 'en', 1, 'https://ror.org/033s45t12 University of Quran and Hadith'),
(110110, 'https://ror.org/01jp62s20', 'en', 1, 'https://ror.org/01jp62s20 Korea Dyeing & Finishing Technology Institute ė‹¤ģ“ķ…ģ—°źµ¬ģ›'),
(110111, 'https://ror.org/02gagpf75', 'en', 1, 'https://ror.org/02gagpf75 NORCE Research AS'),
(110112, 'https://ror.org/010hc8153', 'en', 1, 'https://ror.org/010hc8153 Wonkwang University Korean Medicine Hospital ģ›ź“‘ėŒ€ķ•™źµ ķ•œė°©ė³‘ģ›'),
(110113, 'https://ror.org/03vch0r71', 'en', 1, 'https://ror.org/03vch0r71 Ministry of Science and Technology'),
(110114, 'https://ror.org/05y76vp22', 'fr', 1, 'https://ror.org/05y76vp22 Institut de recherche mathƩmatique de Rennes Mathematics Research Institute of Rennes'),
(110115, 'https://ror.org/01wqj3451', 'en', 1, 'https://ror.org/01wqj3451 Daegu Haany University Korean Medicine Hospital ėŒ€źµ¬ķ•œģ˜ėŒ€ķ•™źµ ķ•œė°©ė³‘ģ› ėŒ€źµ¬ķ•œģ˜ėŒ€ķ•œė°©ė³‘ģ›'),
(110116, 'https://ror.org/02ezch769', 'fr', 1, 'https://ror.org/02ezch769 Polytechnic University of Hauts-de-France UniversitƩ Polytechnique Hauts-de-France'),
(110117, 'https://ror.org/03z879s51', 'tr', 1, 'https://ror.org/03z879s51 Ağrı Eğitim ve Araştırma Hastanesi'),
(110118, 'https://ror.org/01tz1zp46', 'fr', 1, 'https://ror.org/01tz1zp46 DƩlƩgation Centre-Est'),
(110119, 'https://ror.org/019qdtz78', 'fr', 1, 'https://ror.org/019qdtz78 Institut de recherche sur l''Ʃducation'),
(110120, 'https://ror.org/05skde940', 'en', 1, 'https://ror.org/05skde940 Federal Polytechnic, Ukana'),
(110121, 'https://ror.org/01b8h3982', 'fr', 0, 'https://ror.org/01b8h3982 UniversitƩ de Bretagne Occidentale'),
(110122, 'https://ror.org/05j3rwq14', 'en', 1, 'https://ror.org/05j3rwq14 Korea Railroad Corporation Korea Railroad Corporation (South Korea) ķ•œźµ­ģ² ė„ź³µģ‚¬'),
(110123, 'https://ror.org/04pme8x11', 'en', 1, 'https://ror.org/04pme8x11 Severance Mental Health Hospital ģ„øėøŒėž€ģŠ¤ģ •ģ‹ ź±“ź°•ė³‘ģ›'),
(110124, 'https://ror.org/05mx53e97', 'es', 1, 'https://ror.org/05mx53e97 Universidad Amazonica de Pando'),
(110125, 'https://ror.org/04336k829', 'en', 1, 'https://ror.org/04336k829 Dong-Eui University Korean Medicine Hospital ė™ģ˜ėŒ€ķ•™źµ ķ•œė°©ė³‘ģ›'),
(110126, 'https://ror.org/02vpk4745', 'en', 1, 'https://ror.org/02vpk4745 Suzhou Science and Technology Bureau č‹å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(110127, 'https://ror.org/02emq3e83', 'id', 1, 'https://ror.org/02emq3e83 STISIP Imam Bonjol Sekolah Tinggi Ilmu Sosial dan Ilmu Politik Imam Bonjol'),
(110128, 'https://ror.org/027mweb98', 'id', 1, 'https://ror.org/027mweb98 Institut Teknologi dan Kesehatan Permata Ilmu Maros'),
(110129, 'https://ror.org/00nt82y31', 'en', 1, 'https://ror.org/00nt82y31 LG AI Research LG AI Research (South Korea) LG AI 연구원'),
(110130, 'https://ror.org/02j7n9748', 'en', 1, 'https://ror.org/02j7n9748 Lancashire Teaching Hospitals NHS Foundation Trust'),
(110131, 'https://ror.org/05rdkc048', 'fr', 1, 'https://ror.org/05rdkc048 Paris School of Technology and Business'),
(110132, 'https://ror.org/05awecr05', 'no_lang_code', 0, 'https://ror.org/05awecr05 Institut für Angewandte Zellkultur (Germany)'),
(110133, 'https://ror.org/05x7z5a78', 'en', 1, 'https://ror.org/05x7z5a78 Stellantis Europe Stellantis Europe (Italy) Stellantis Europe S.p.A.'),
(110134, 'https://ror.org/03sq4z970', 'fr', 1, 'https://ror.org/03sq4z970 Ɖcole spĆ©ciale d''architecture'),
(110135, 'https://ror.org/05x4c1983', 'en', 1, 'https://ror.org/05x4c1983 Gwangju Institute ꓑ주연구원'),
(110136, 'https://ror.org/00d7h8p49', 'fr', 1, 'https://ror.org/00d7h8p49 IUT de Paris Pajol'),
(110137, 'https://ror.org/04xbq1n92', 'en', 1, 'https://ror.org/04xbq1n92 Heliophysics Data & Model Consortium Heliophysics Data and Modeling Consortium'),
(110138, 'https://ror.org/00kf3fs20', 'en', 1, 'https://ror.org/00kf3fs20 Chongqing Polytechnic University of Electronic Technology é‡åŗ†ē”µå­ē§‘ęŠ€čŒäøšå¤§å­¦'),
(110139, 'https://ror.org/00aaqtw69', 'en', 1, 'https://ror.org/00aaqtw69 State Administration for Market Regulation'),
(110140, 'https://ror.org/03a35w771', 'en', 1, 'https://ror.org/03a35w771 Chonnam National University Dental Hospital ģ „ė‚ØėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(110141, 'https://ror.org/03e044190', 'fr', 1, 'https://ror.org/03e044190 Spintronique et Technologie des Composants'),
(110142, 'https://ror.org/041vwr251', 'en', 1, 'https://ror.org/041vwr251 National Observatory on Labour Market and Social Protection Affairs ʏmək Bazarı və Sosial Müdafie Məsələləri üzrə Milli Observatoriya'),
(110143, 'https://ror.org/0131s3p65', 'en', 1, 'https://ror.org/0131s3p65 Seongnam Citizens Medical Center ģ„±ė‚Øģ‹œģ˜ė£Œģ›'),
(110144, 'https://ror.org/01em4e880', 'en', 1, 'https://ror.org/01em4e880 Korea Institute for Defense Analyses ķ•œźµ­źµ­ė°©ģ—°źµ¬ģ›'),
(110145, 'https://ror.org/04dtgat87', 'en', 1, 'https://ror.org/04dtgat87 Korea Water Resources Corporation Korea Water Resources Corporation (South Korea) ķ•œźµ­ģˆ˜ģžģ›ź³µģ‚¬'),
(110146, 'https://ror.org/01v053v88', 'fr', 1, 'https://ror.org/01v053v88 IAE Paris - Sorbonne Business School Sorbonne Business School'),
(110147, 'https://ror.org/01jmj5g35', 'es', 1, 'https://ror.org/01jmj5g35 Instituto Profesional Virginio Gómez'),
(110148, 'https://ror.org/03fj01431', 'en', 1, 'https://ror.org/03fj01431 Korean Institute of Tuberculosis 결핵연구원'),
(110149, 'https://ror.org/032hvvf98', 'fr', 1, 'https://ror.org/032hvvf98 Aluminium Research Center – REGAL Centre de recherche sur l''aluminium – REGAL'),
(110150, 'https://ror.org/03zb6nw87', 'fr', 1, 'https://ror.org/03zb6nw87 Nutrition, mƩtabolismes et cancer'),
(110151, 'https://ror.org/04dg5b632', 'en', 1, 'https://ror.org/04dg5b632 Zhejiang University of Water Resource and Electric Power Zhejiang University of Water Resources and Electric Power ęµ™ę±Ÿę°“åˆ©ę°“ē”µå­¦é™¢'),
(110152, 'https://ror.org/05x0sf518', 'en', 1, 'https://ror.org/05x0sf518 Guidong People''s Hospital of Guangxi Zhuang Autonomous Region å¹æč„æå£®ę—č‡Ŗę²»åŒŗę”‚äøœäŗŗę°‘åŒ»é™¢'),
(110153, 'https://ror.org/021py7g65', 'en', 1, 'https://ror.org/021py7g65 Chonnam National University Bitgoeul Hospital ė¹›ź³ ģ„ģ „ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(110154, 'https://ror.org/03t101k34', 'en', 1, 'https://ror.org/03t101k34 Dominion University, Ibadan'),
(110155, 'https://ror.org/033zcvm50', 'fr', 1, 'https://ror.org/033zcvm50 Centre national d''enseignement Ć  distance'),
(110156, 'https://ror.org/02fhagp58', 'en', 1, 'https://ror.org/02fhagp58 SveučiliŔte u Zagrebu SveučiliŔni računski centar University of Zagreb University Computing Centre'),
(110157, 'https://ror.org/04njvae93', 'fr', 1, 'https://ror.org/04njvae93 UnitƩ de service pour la pƩdagogie et la recherche en santƩ'),
(110158, 'https://ror.org/04vjwcp92', 'en', 1, 'https://ror.org/04vjwcp92 Jan Evangelista Purkyně University in ƚstƭ nad Labem Univerzita Jana Evangelisty Purkyně v ƚstƭ nad Labem'),
(110159, 'https://ror.org/04p61dj41', 'de', 1, 'https://ror.org/04p61dj41 Technische Hochschule Mannheim'),
(110160, 'https://ror.org/0384j8v12', 'en', 1, 'https://ror.org/0384j8v12 The University of Sydney'),
(110161, 'https://ror.org/01m6gyc89', 'en', 1, 'https://ror.org/01m6gyc89 Shri Shivaji Science and Arts College, Chikhli'),
(110162, 'https://ror.org/05c9p1x46', 'fr', 1, 'https://ror.org/05c9p1x46 BicĆŖtre Hospital Hospice de la Vieillesse Hommes'),
(110163, 'https://ror.org/02z8pdw35', 'en', 1, 'https://ror.org/02z8pdw35 Hong Kong Jockey Club Charities Trust'),
(110164, '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'),
(110165, 'https://ror.org/03hgsyv65', 'fr', 1, 'https://ror.org/03hgsyv65 Laboratoire Temps Espace'),
(110166, 'https://ror.org/00ry0st69', 'en', 1, 'https://ror.org/00ry0st69 Milton F. Gregg Centre for the Study of War and Society'),
(110167, 'https://ror.org/023r2mm18', 'en', 1, 'https://ror.org/023r2mm18 Aerosolitutkimusseura Finnish Association for Aerosol Research'),
(110168, 'https://ror.org/00qf9jc85', 'en', 1, 'https://ror.org/00qf9jc85 HIBMAT University Institute of Buea'),
(110169, 'https://ror.org/01fv5sp53', 'en', 1, 'https://ror.org/01fv5sp53 Institute of Advanced Light Source Facilities Shenzhen ę·±åœ³å…ˆčæ›å…‰ęŗē ”ē©¶é™¢'),
(110170, 'https://ror.org/014nzh720', 'fr', 1, 'https://ror.org/014nzh720 Droit et changement social'),
(110171, 'https://ror.org/03h89t847', 'en', 1, 'https://ror.org/03h89t847 Loyola Institute of Technology and Science'),
(110172, 'https://ror.org/02zspd164', 'en', 1, 'https://ror.org/02zspd164 Sona College of Arts and Science'),
(110173, 'https://ror.org/042g71q39', 'en', 1, 'https://ror.org/042g71q39 Finnish Society of Clinical Chemistry Fƶreningen fƶr klinisk kemi i Finland SociƩtƩ Finlandaise de Chimie Clinique Suomen Kliinisen Kemian Yhdistys'),
(110174, 'https://ror.org/05ewdm369', 'en', 1, 'https://ror.org/05ewdm369 CommunautƩ du Pacifique Pacific Community'),
(110175, 'https://ror.org/038207k30', 'fr', 1, 'https://ror.org/038207k30 Laboratoire GƩnome et DƩveloppement des Plantes Plant Genome and Development Laboratory'),
(110176, 'https://ror.org/015egth93', 'en', 1, 'https://ror.org/015egth93 T J Institute of Technology'),
(110177, 'https://ror.org/00mjny636', 'no', 1, 'https://ror.org/00mjny636 Lofotr Viking Museum Lofotr Vikingmuseum Wikingermuseum Lofotr'),
(110178, 'https://ror.org/03fnk5526', 'es', 1, 'https://ror.org/03fnk5526 Instituto Superior Tecnológico Tsa“chila'),
(110179, 'https://ror.org/05y8esm45', 'en', 1, 'https://ror.org/05y8esm45 Ramachandra College of Engineering (A)'),
(110180, 'https://ror.org/046s1f829', 'de', 1, 'https://ror.org/046s1f829 Materialfoschngs- und -prüfanstalt Weimar'),
(110181, 'https://ror.org/01yw9vz37', 'en', 1, 'https://ror.org/01yw9vz37 Finnish Society of Sport Sciences Idrottsvetenskapliga SƤllskapet i Finland Liikuntatieteellinen Seura'),
(110182, 'https://ror.org/056dsj764', 'es', 1, 'https://ror.org/056dsj764 Cultiva Territorio Cultiva Territorio SAS Cultiva Territorio SAS (Colombia)'),
(110183, 'https://ror.org/0473hxz56', 'fr', 1, 'https://ror.org/0473hxz56 UnitĆ© mixte de recherche Œnologie'),
(110184, 'https://ror.org/010k8cs62', 'en', 1, 'https://ror.org/010k8cs62 Wilf Family Foundations'),
(110185, 'https://ror.org/035ydet58', 'fr', 1, 'https://ror.org/035ydet58 UniversitƩ Libre du Burkina'),
(110186, 'https://ror.org/02xzytt36', 'en', 1, 'https://ror.org/02xzytt36 Manipal Academy of Higher Education UniversitƩ de Manipal'),
(110187, 'https://ror.org/04bgbbh33', 'fr', 1, 'https://ror.org/04bgbbh33 Institut Universitaire des SystĆØmes Thermiques Industriels'),
(110188, 'https://ror.org/0130pxe62', 'en', 1, 'https://ror.org/0130pxe62 Marudhar Kesari Jain College for Women ą®®ą®°ąÆą®¤ą®°ąÆ ą®•ąÆ‡ą®šą®°ą®æ ą®œąÆ†ą®Æą®æą®©ąÆ ą®®ą®•ą®³ą®æą®°ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(110189, 'https://ror.org/04h9c4011', 'id', 1, 'https://ror.org/04h9c4011 Universitas Dinamika Bangsa'),
(110190, 'https://ror.org/03b26fw52', 'en', 1, 'https://ror.org/03b26fw52 Gesellschaft für die Erforschung der finnischen Sprache Kotikielen Seura Society for the Study of Finnish Société pour l''étude de la langue finnoise Sällskapet för forskning i finska sprÄket'),
(110191, 'https://ror.org/0072z7k52', 'en', 1, 'https://ror.org/0072z7k52 Digvijai Nath Post Graduate College, Gorakhpur U.P. ą¤¦ą¤æą¤—ą„ą¤µą¤æą¤œą¤Æą¤Øą¤¾ą¤„ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤—ą„‹ą¤°ą¤–ą¤Ŗą„ą¤° उ.ą¤Ŗą„ą¤°.'),
(110192, 'https://ror.org/016900n31', 'en', 1, 'https://ror.org/016900n31 Association finlandaise de l''amenagement technique communale Finlands kommuntekniska fƶrening Finnish Association of Municipal Engineering Suomen kuntatekniikan yhdistys ry'),
(110193, 'https://ror.org/02dxxz946', 'en', 1, 'https://ror.org/02dxxz946 Herpetologists'' League'),
(110194, 'https://ror.org/05ssyrw85', 'en', 1, 'https://ror.org/05ssyrw85 Vimal Jyothi Institute of Management and Research'),
(110195, 'https://ror.org/04wcaa208', 'en', 1, 'https://ror.org/04wcaa208 BirdLife international'),
(110196, 'https://ror.org/04nv75k16', 'en', 1, 'https://ror.org/04nv75k16 Centre for Criminal Justice Studies and Policing Research'),
(110197, 'https://ror.org/00jqpmm31', 'en', 1, 'https://ror.org/00jqpmm31 Rajuk Uttara Model College ą¦°ą¦¾ą¦œą¦‰ą¦• ą¦‰ą¦¤ą§ą¦¤ą¦°ą¦¾ মঔেল ą¦•ą¦²ą§‡ą¦œ'),
(110198, 'https://ror.org/00qxc1v02', 'es', 1, 'https://ror.org/00qxc1v02 Facultad de Estudios Superiores AcatlƔn'),
(110199, 'https://ror.org/02j9f1t93', 'en', 1, 'https://ror.org/02j9f1t93 Finlands Patologfƶrening Finnish Society of Pathology Suomen Patologiyhdistys'),
(110200, 'https://ror.org/00hbxvp14', 'en', 1, 'https://ror.org/00hbxvp14 Kazakh National Academy of Choreography'),
(110201, 'https://ror.org/000md3w58', 'en', 1, 'https://ror.org/000md3w58 Torch Farm and Equine, Farm and Equine Veterinary Surgeons Torch Farm and Equine, Farm and Equine Veterinary Surgeons (United Kingdom)'),
(110202, 'https://ror.org/03tvsbk17', 'en', 1, 'https://ror.org/03tvsbk17 Finnish Association of Nursing Research Hoitotieteiden tutkimusseura (HTTS) SƤllskapet fƶr VƄrdvetenskaplig Forskning'),
(110203, 'https://ror.org/02tt8rw78', 'en', 1, 'https://ror.org/02tt8rw78 Centre of Excellence for Engineering and Technology (CREaTE)'),
(110204, 'https://ror.org/02jr43a19', 'en', 1, 'https://ror.org/02jr43a19 Dallas International University'),
(110205, 'https://ror.org/04gx1wg54', 'es', 1, 'https://ror.org/04gx1wg54 Instituto de Investigaciones Ambientales del PacĆ­fico'),
(110206, 'https://ror.org/01j57dr21', 'en', 1, 'https://ror.org/01j57dr21 Finnish Society for Theatre Research Fƶreningen fƶr teaterforskning i Finland Teatterintutkimuksen seura - TeaTS'),
(110207, 'https://ror.org/01zphyp78', 'en', 1, 'https://ror.org/01zphyp78 Bangladesh University of Professionals বাংলাদেশ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦Ŗą§ą¦°ą¦«ą§‡ą¦¶ą¦Øą¦¾ą¦²ą¦ø'),
(110208, 'https://ror.org/01brr5229', 'en', 1, 'https://ror.org/01brr5229 Brazilian Radiation Protection Society Sociedade Brasileira de Proteção Radiológica'),
(110209, 'https://ror.org/04jdck127', 'az', 1, 'https://ror.org/04jdck127 Azərbaycan İlahiyyat İnstitutu'),
(110210, 'https://ror.org/03m8xtr03', 'en', 1, 'https://ror.org/03m8xtr03 Modern Language Society of Helsinki Neuphilologischer Verein in Helsinki Nyfilologiska fƶreningen SociƩtƩ NƩophilologique de Helsinki Uusfilologinen yhdistys'),
(110211, 'https://ror.org/00bzdg454', 'en', 1, 'https://ror.org/00bzdg454 KMA Consulting Ltd. KMA Consulting Ltd. (Saint Lucia)'),
(110212, 'https://ror.org/059nhsp51', 'en', 1, 'https://ror.org/059nhsp51 Wilmette Institute'),
(110213, 'https://ror.org/011ff5411', 'de', 1, 'https://ror.org/011ff5411 Duale Hochschule Schleswig-Holstein'),
(110214, 'https://ror.org/02h0g9r59', 'fr', 1, 'https://ror.org/02h0g9r59 Institut UTINAM'),
(110215, 'https://ror.org/05rpnj507', 'no_lang_code', 0, 'https://ror.org/05rpnj507 UES UES (United States) UES, Inc.'),
(110216, 'https://ror.org/021vwkz44', 'en', 1, 'https://ror.org/021vwkz44 Matsue City Hospital ę¾ę±Ÿåø‚ē«‹ē—…é™¢'),
(110217, 'https://ror.org/03vb53h45', 'en', 1, 'https://ror.org/03vb53h45 Guru Nanak Institutions'),
(110218, 'https://ror.org/01e75bd71', 'en', 1, 'https://ror.org/01e75bd71 Finlands FƶretagslƤkarfƶrening Finnish Association of Occupational Physicians Suomen TyƶterveyslƤƤkƤriyhdistys'),
(110219, 'https://ror.org/02pqf3z85', 'en', 1, 'https://ror.org/02pqf3z85 Central Tribal University of Andhra Pradesh'),
(110220, 'https://ror.org/0514h0p28', 'en', 1, 'https://ror.org/0514h0p28 Academic Engineers and Architects in Finland TEK Tekniikan akateemiset TEK Teknikens Akademikerfƶrbund'),
(110221, 'https://ror.org/02ypeqj11', 'pt', 1, 'https://ror.org/02ypeqj11 Secretaria da Educação do Estado do CearÔ'),
(110222, 'https://ror.org/05veges73', 'en', 1, 'https://ror.org/05veges73 National Museum of Mongolia ŠœŠ¾Š½Š³Š¾Š»Ń‹Š½ Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ музей'),
(110223, 'https://ror.org/01b8mj511', 'fr', 1, 'https://ror.org/01b8mj511 Laboratoire Interdisciplinaire pour la Sociologie Economique'),
(110224, 'https://ror.org/02swcnz29', 'en', 1, 'https://ror.org/02swcnz29 Department of Health and Aged Care'),
(110225, 'https://ror.org/05yeagb65', 'es', 1, 'https://ror.org/05yeagb65 Centro MƩdico Sanitas Alcobendas Sanitas Alcobendas Medical Centre'),
(110226, 'https://ror.org/0261smd61', 'no', 1, 'https://ror.org/0261smd61 Lofoten Museum Lofotmuseet'),
(110227, 'https://ror.org/03wcck081', 'en', 1, 'https://ror.org/03wcck081 Shanghai Advanced Research in Physical Sciences äøŠęµ·å‰ēž»ē‰©č“Øē§‘å­¦ē ”ē©¶é™¢'),
(110228, 'https://ror.org/014pzm971', 'es', 1, 'https://ror.org/014pzm971 Instituto de Geocronología y Geología Isotópica'),
(110229, 'https://ror.org/039da4689', 'it', 1, 'https://ror.org/039da4689 Museo di Storia Naturale di Venezia Giancarlo Ligabue'),
(110230, 'https://ror.org/00ysx0t12', 'en', 1, 'https://ror.org/00ysx0t12 Hungarian National Rural Network Hungarian National Rural Network (MNVH) Magyar Nemzeti Vidéki HÔlózat'),
(110231, 'https://ror.org/0055s1s34', 'en', 1, 'https://ror.org/0055s1s34 Jazeera University Hospital'),
(110232, 'https://ror.org/05radqp27', 'en', 1, 'https://ror.org/05radqp27 Marathwada Mitra Mandal''s College of Engineering'),
(110233, 'https://ror.org/04hx4bq94', 'id', 1, 'https://ror.org/04hx4bq94 Sekolah Tinggi Ilmu Tarbiyah Aqidah Usymuni Sumenep'),
(110234, 'https://ror.org/03y8mpv07', 'fr', 1, 'https://ror.org/03y8mpv07 Centre de Recherche sur l''HƩtƩro-Epitaxie et ses Applications'),
(110235, 'https://ror.org/00dm4zp67', 'en', 1, 'https://ror.org/00dm4zp67 BirdLife Finland BirdLife Suomi'),
(110236, 'https://ror.org/02g2b3c55', 'en', 1, 'https://ror.org/02g2b3c55 New College Berkeley'),
(110237, 'https://ror.org/01d357q33', 'en', 1, 'https://ror.org/01d357q33 American Registry for Internet Numbers'),
(110238, 'https://ror.org/05m2hee04', 'en', 1, 'https://ror.org/05m2hee04 Finnish Lepidopterologist Society Lepidopterologiska SƤllskapet i Finland Suomen Perhostutkijain Seura'),
(110239, 'https://ror.org/00z06pk85', 'en', 1, 'https://ror.org/00z06pk85 Finska bergmekanikfƶreningen Suomen kalliomekaniikkayhdistys ry The Finnish Society for Rock Mechanics'),
(110240, 'https://ror.org/01b5dy719', 'en', 1, 'https://ror.org/01b5dy719 Institute of Mathematics and Informatics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ По ŠœŠ°Ń‚ематика И Š˜Š½Ń„Š¾Ń€Š¼Š°Ń‚ŠøŠŗŠ° Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ° ŠŠ°ŃƒŠŗŠøŃ‚Šµ'),
(110241, 'https://ror.org/02me5cy06', 'fr', 1, 'https://ror.org/02me5cy06 Developmental Biology Institute of Marseille Institut de Biologie du DƩveloppement Marseille'),
(110242, 'https://ror.org/02nyy1d43', 'en', 1, 'https://ror.org/02nyy1d43 Finnish Society for the History of Education Fƶreningen fƶr pedagogik- och utbildningshistoria i Finland Suomen kasvatuksen ja koulutuksen historian seura'),
(110243, 'https://ror.org/01f0pjz75', 'en', 1, 'https://ror.org/01f0pjz75 Jazeera University'),
(110244, 'https://ror.org/045xgsj44', 'es', 1, 'https://ror.org/045xgsj44 Hospital Universitario Sanitas La Moraleja Sanitas La Moraleja University Hospital'),
(110245, 'https://ror.org/03ndnx171', 'en', 1, 'https://ror.org/03ndnx171 Centre for Research in Integrated Care'),
(110246, 'https://ror.org/00pdrrf84', 'en', 1, 'https://ror.org/00pdrrf84 Research & Development & Innovation Consortium Š”Š“Ń€ŃƒŠ¶ŠµŠ½ŠøŠµ за Š½Š°ŃƒŃ‡Š½Š¾ŠøŠ·ŃŠ»ŠµŠ“ователска Šø развойна Гейност'),
(110247, 'https://ror.org/03w2gk930', 'fr', 1, 'https://ror.org/03w2gk930 UniversitĆ© d’Ébolowa'),
(110248, 'https://ror.org/039tea555', 'en', 1, 'https://ror.org/039tea555 FinlƤndska Fƶreningen fƶr Stadsforskning Finnish Society for Urban Studies Suomen Kaupunkitutkimuksen Seura'),
(110249, 'https://ror.org/04bbst665', 'en', 1, 'https://ror.org/04bbst665 Brain Research Society of Finland Fƶreningen fƶr hjƤrnforskning i Finland Suomen Aivotutkimusseura'),
(110250, 'https://ror.org/00xvhgt61', 'en', 1, 'https://ror.org/00xvhgt61 Lapin tutkimusseura Research Society of Lapland'),
(110251, 'https://ror.org/01kzswj76', 'en', 1, 'https://ror.org/01kzswj76 International Hydrographic Organization Organisation Hydrographique Internationale'),
(110252, 'https://ror.org/0416g8z79', 'fr', 1, 'https://ror.org/0416g8z79 Laboratoire Collisions AgrƩgats RƩactivitƩ'),
(110253, 'https://ror.org/05n0skd45', 'id', 1, 'https://ror.org/05n0skd45 Politeknik Bisnis Kaltara'),
(110254, 'https://ror.org/026cjqx95', 'en', 1, 'https://ror.org/026cjqx95 Manna Institute'),
(110255, 'https://ror.org/03sgpah29', 'en', 1, 'https://ror.org/03sgpah29 GS University'),
(110256, 'https://ror.org/010tg8670', 'en', 1, 'https://ror.org/010tg8670 Association Finlandaise d'' Etudes Russes et l'' Europe de l''Est Finljandskoe obÅ”cestvo po izuceniju Rossii i Vostocnoj Evropy Finnische Gesellschaft für Russland- und Osteuropaforschung Finnish Association for Russian and East European Studies SƤllskapet fƶr Rysslands- och Ɩsteuropaforskning VenƤjƤn ja ItƤ-Euroopan tutkimuksen seura'),
(110257, 'https://ror.org/01111rn36', 'en', 1, 'https://ror.org/01111rn36 Universitat de Bolonya University of Bologna UniversitƠ di Bologna UniversitƤt Bologna UniversitƩ de Bologne'),
(110258, 'https://ror.org/01awp1783', 'es', 1, 'https://ror.org/01awp1783 Centro de Rehabilitación Avanzada Sanitas Dr. Esquerdo Sanitas Dr. Esquerdo Advanced Rehabilitation Centre'),
(110259, 'https://ror.org/04mr1by41', 'es', 1, 'https://ror.org/04mr1by41 Instituto de Investigaciones Químico Biológicas'),
(110260, 'https://ror.org/03171kt61', 'en', 1, 'https://ror.org/03171kt61 International Longshore and Warehouse Union'),
(110261, 'https://ror.org/0592ata02', 'fr', 1, 'https://ror.org/0592ata02 Equipes Traitement de l''Information et SystĆØmes Information Processing and System Research Lab'),
(110262, 'https://ror.org/019ptgs60', 'en', 1, 'https://ror.org/019ptgs60 Buenos Aires Interdisciplinary Political Economy Institute Instituto Interdisciplinario de EconomĆ­a PolĆ­tica de Buenos Aires'),
(110263, 'https://ror.org/000tj4z49', 'en', 1, 'https://ror.org/000tj4z49 Sri Lanka Institute of Biotechnology (SLIBTEC)'),
(110264, 'https://ror.org/01wk35t67', 'fr', 1, 'https://ror.org/01wk35t67 Groupe Sociétés, Religions, Laïcités'),
(110265, 'https://ror.org/04xjh9r83', 'es', 1, 'https://ror.org/04xjh9r83 Instituto Superior Tecnológico Simón Bolívar'),
(110266, 'https://ror.org/02d6dw644', 'en', 1, 'https://ror.org/02d6dw644 EUDAT'),
(110267, 'https://ror.org/01zkkmr61', 'en', 1, 'https://ror.org/01zkkmr61 Oceans Initiative'),
(110268, 'https://ror.org/02wjvj587', 'en', 1, 'https://ror.org/02wjvj587 Center for Research of Problems in Privatization and State Assets Management Центр ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Š½ŠøŃ проблем приватизации Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¼Šø активами'),
(110269, 'https://ror.org/00w2q5j98', 'fr', 1, 'https://ror.org/00w2q5j98 Institut de Neurophysiopathologie'),
(110270, 'https://ror.org/05erzpv68', 'en', 1, 'https://ror.org/05erzpv68 Waves for Change'),
(110271, 'https://ror.org/05qpen692', 'en', 1, 'https://ror.org/05qpen692 California Lutheran University'),
(110272, 'https://ror.org/00jf9gy22', 'en', 1, 'https://ror.org/00jf9gy22 Biochemical, Biophysical and Microbiological Society of Finland Societas biochemica, biophysica et microbiologica Fenniae'),
(110273, 'https://ror.org/01jdptv64', 'fr', 1, 'https://ror.org/01jdptv64 Laboratoire interdisciplinaire sur les mutations des espaces Ʃconomiques et politiques - Paris Saclay'),
(110274, 'https://ror.org/03dcphs12', 'en', 1, 'https://ror.org/03dcphs12 Istemi Istemi s.r.l. Istemi s.r.l. (Italy)'),
(110275, 'https://ror.org/02avk1n91', 'en', 1, 'https://ror.org/02avk1n91 Ahvenanmaan rauhaninstituutti Stiftelsen ƅlands fredsinstitut sr The ƅland Islands Peace Institute Foundation'),
(110276, 'https://ror.org/0426mg969', 'en', 1, 'https://ror.org/0426mg969 Finnish Epidemiological Society Finska Epidemiologiska SƤllskapet Suomen epidemiologian seura'),
(110277, 'https://ror.org/002w9v046', 'en', 1, 'https://ror.org/002w9v046 Deka Biosciences Deka Biosciences (United States)'),
(110278, 'https://ror.org/05xv69974', 'en', 1, 'https://ror.org/05xv69974 Antropologiska SƤllskapet i Finland Finnish Anthropological Society Suomen Antropologinen Seura'),
(110279, 'https://ror.org/039yyx623', 'fr', 1, 'https://ror.org/039yyx623 Institut des Sciences et Technologies MolƩculaires d''Angers'),
(110280, 'https://ror.org/0047z8a16', 'es', 1, 'https://ror.org/0047z8a16 Instituto de Ciencias Antropológicas'),
(110281, 'https://ror.org/022txr781', 'fr', 1, 'https://ror.org/022txr781 Laboratoire de Physique Corpusculaire de Caen'),
(110282, 'https://ror.org/01tp1c480', 'fr', 1, 'https://ror.org/01tp1c480 Biologie des Organismes et ƉcosystĆØmes Aquatiques'),
(110283, 'https://ror.org/04zfvcz90', 'en', 1, 'https://ror.org/04zfvcz90 St. Francis University College of Health and Allied Sciences'),
(110284, 'https://ror.org/04d823j42', 'en', 1, 'https://ror.org/04d823j42 Finnish Society for Labour History Forschungsgesellschaft für Arbeitergeschichte und Arbeitertradition Sällskapet för forskning för arbetarrörelsens historia och arbetarkultur i Finland Työväen historian ja perinteen tutkimuksen seura'),
(110285, 'https://ror.org/01kzmqa32', 'en', 1, 'https://ror.org/01kzmqa32 Socialmedicinska fƶreningen Society of Social Medicine in Finland SosiaalilƤƤketieteen yhdistys'),
(110286, 'https://ror.org/045dk1x92', 'en', 1, 'https://ror.org/045dk1x92 Naryn State University Naryn State University named after Satybaldy Naamatov ŠŠ°Ń€Ń‹Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ДатыбалГы ŠŠ°Š°Š¼Š°Ń‚Š¾Š²Š° ДатыбалГы ŠŠ°Š°Š¼Š°Ń‚Š¾Š² атынГагы ŠŠ°Ń€Ń‹Š½ мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(110287, 'https://ror.org/04cw3a069', 'en', 1, 'https://ror.org/04cw3a069 Historical Association of Northern Finland Norra Finlands Historiska Fƶrening Pohjois-Suomen Historiallinen Yhdistys'),
(110288, 'https://ror.org/02g6y2720', 'fr', 1, 'https://ror.org/02g6y2720 UnitƩ de Glycobiologie Structurale et Fonctionnelle'),
(110289, 'https://ror.org/02d5v7338', 'no_lang_code', 1, 'https://ror.org/02d5v7338 Focus Localis ry'),
(110290, 'https://ror.org/031rmvb88', 'en', 1, 'https://ror.org/031rmvb88 International University Bamenda'),
(110291, 'https://ror.org/04s6pzp83', 'en', 1, 'https://ror.org/04s6pzp83 North East Medical College ą¦Øą¦°ą§ą¦„ ą¦‡ą¦·ą§ą¦Ÿ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(110292, 'https://ror.org/018qevc89', 'en', 1, 'https://ror.org/018qevc89 TUETECH University TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ - CĆ“ng nghệ ThĆ”i NguyĆŖn'),
(110293, 'https://ror.org/045xmmt46', 'en', 1, 'https://ror.org/045xmmt46 Rajendra Institute of Technology and Sciences'),
(110294, 'https://ror.org/04na6mn45', 'de', 1, 'https://ror.org/04na6mn45 ZURZACH Care AG'),
(110295, 'https://ror.org/03fgkeq02', 'en', 1, 'https://ror.org/03fgkeq02 Finnish Psycho-Analytical Society Finska Psykoanalytiska Fƶrening Suomen Psykoanalyyttinen Yhdistys'),
(110296, 'https://ror.org/04qt2fv43', 'en', 1, 'https://ror.org/04qt2fv43 Finnish Research Association for Subject Didactics Samfundet fƶr Ƅmnesdidaktisk Forskning i Finland Suomen ainedidaktinen tutkimusseura'),
(110297, 'https://ror.org/02rpkh424', 'en', 1, 'https://ror.org/02rpkh424 Finnish National Section of the International Association for Philosophy of Law and Social Philosophy (IVR) Suomen oikeusfilosofinen yhdistys SOFY'),
(110298, 'https://ror.org/01c8knz80', 'fr', 1, 'https://ror.org/01c8knz80 University of Faso UniversitƩ du Faso'),
(110299, 'https://ror.org/02csfhe50', 'fr', 1, 'https://ror.org/02csfhe50 Ɖcole Nationale SupĆ©rieure de Journalisme et des Sciences de l’Information المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للصحافة ŁˆŲ¹Ł„ŁˆŁ… ال؄علام'),
(110300, 'https://ror.org/05r8e2384', 'en', 1, 'https://ror.org/05r8e2384 Finnisch-Ugrische Gesellschaft Finno-Ugrian Society Finsk-Ugriska Sällskapet Société Finno-Ougrienne Suoma-UgralaŔ Searvi Suomalais-Ugrilainen Seura'),
(110301, 'https://ror.org/012wmev19', 'en', 1, 'https://ror.org/012wmev19 Arava Institute for Environmental Studies מכון הערבה ללימודי ההביבה معهد وادي Ų¹Ų±ŲØŲ© للدراسات Ų§Ł„ŲØŁŠŲ¦ŁŠŲ©'),
(110302, 'https://ror.org/02jhq9s16', 'en', 1, 'https://ror.org/02jhq9s16 Svenska tekniska vetenskapsakademien i Finland Swedish Academy of Engineering Sciences in Finland'),
(110303, 'https://ror.org/00fwjkb59', 'fr', 1, 'https://ror.org/00fwjkb59 Grenoble Applied Economics Lab Laboratoire d''Economie AppliquƩe de Grenoble'),
(110304, 'https://ror.org/00fqsk919', 'en', 1, 'https://ror.org/00fqsk919 Urban and Community Studies Institute'),
(110305, 'https://ror.org/02ktmav92', 'es', 1, 'https://ror.org/02ktmav92 Universidad Intercultural del Estado de Puebla'),
(110306, 'https://ror.org/01jt5ms28', 'fr', 1, 'https://ror.org/01jt5ms28 Centre de Formation et de Recherche sur les Environnements MƩditerranƩens'),
(110307, 'https://ror.org/04tmf0341', 'es', 1, 'https://ror.org/04tmf0341 Instituto de Investigaciones Gino Germani'),
(110308, 'https://ror.org/00fnv1k24', 'en', 1, 'https://ror.org/00fnv1k24 Demografiska Fƶreningen i Finland Finnish Demographic Society Suomen VƤestƶtieteen Yhdistys ry'),
(110309, 'https://ror.org/05sgk3765', 'en', 1, 'https://ror.org/05sgk3765 Finnish Society for Cinema Studies Suomen Elokuvatutkimuksen Seura SƤllskapet fƶr Filmforskning i Finland'),
(110310, 'https://ror.org/03kbxzp97', 'en', 1, 'https://ror.org/03kbxzp97 Dongying Vocational Institute äøœč„čŒäøšå­¦é™¢'),
(110311, 'https://ror.org/05vvhh982', 'en', 1, 'https://ror.org/05vvhh982 University of Arkansas System'),
(110312, 'https://ror.org/053x0xb84', 'en', 1, 'https://ror.org/053x0xb84 Shared Value Africa'),
(110313, 'https://ror.org/00822yn93', 'es', 1, 'https://ror.org/00822yn93 Institute of Physics of Buenos Aires Instituto de FĆ­sica de Buenos Aires'),
(110314, 'https://ror.org/022jb6a16', 'es', 1, 'https://ror.org/022jb6a16 Asociación Colombiana de Radiología'),
(110315, 'https://ror.org/01dv35y78', 'en', 1, 'https://ror.org/01dv35y78 Lounais-Hämeen Luonnonsuojeluyhdistys (LHLY) Nature Conservation Society of South-West Häme Naturschutzverein von Südwest-Häme Sydvästra Tavastlands Naturskyddsförening'),
(110316, 'https://ror.org/03q7b1821', 'en', 1, 'https://ror.org/03q7b1821 KulttuuriympƤristƶtutkimuksen seura Samfundet fƶr kulturmiljƶforskning rf Society for Cultural Environment Studies'),
(110317, 'https://ror.org/02verss31', 'en', 1, 'https://ror.org/02verss31 Chang Gung Memorial Hospital'),
(110318, 'https://ror.org/03s5z5x70', 'fr', 1, 'https://ror.org/03s5z5x70 Institut des Sciences Analytiques Institute of Analytical Sciences'),
(110319, 'https://ror.org/04sb8a726', 'no_lang_code', 1, 'https://ror.org/04sb8a726 HÓpital Antoine-Béclère'),
(110320, 'https://ror.org/05jmc0783', 'it', 1, 'https://ror.org/05jmc0783 Ausl 4 Piazza Ospedale'),
(110321, 'https://ror.org/03vb83t17', 'en', 1, 'https://ror.org/03vb83t17 Chemical Society of Finland Finska Kemistsamfundet Suomen Kemistiseura'),
(110322, 'https://ror.org/03c4ktp05', 'en', 1, 'https://ror.org/03c4ktp05 Finnish Association for Maritime History Seegeschichtliche Vereinigung Finnlands Sjƶhistoriska fƶreningen i Finland Suomen merihistoriallinen yhdistys'),
(110323, 'https://ror.org/02phn5242', 'en', 1, 'https://ror.org/02phn5242 University of Colombo ą®•ąÆŠą®“ąÆą®®ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą¶šą·œą·…ą¶¹ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(110324, 'https://ror.org/01k383v05', 'fr', 1, 'https://ror.org/01k383v05 Centre d''ƉnergĆ©tique et de Thermique de Lyon Centre for Energy and Thermal Sciences of Lyon'),
(110325, 'https://ror.org/0135mxn53', 'es', 1, 'https://ror.org/0135mxn53 Instituto de Estudios de AmƩrica Latina y el Caribe'),
(110326, 'https://ror.org/04w61vh47', 'fr', 1, 'https://ror.org/04w61vh47 Laboratoire Reproduction et DƩveloppement des Plantes'),
(110327, 'https://ror.org/036xbx209', 'en', 1, 'https://ror.org/036xbx209 Fƶreningen fƶr konsthistoria Society for Art History in Finland Taidehistorian seura'),
(110328, 'https://ror.org/01shbzz86', 'no_lang_code', 0, 'https://ror.org/01shbzz86 Wikimedia RU ВикимеГиа РУ'),
(110329, 'https://ror.org/03nr56d94', 'en', 1, 'https://ror.org/03nr56d94 The First People''s Hospital of Neijiang å†…ę±Ÿåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(110330, 'https://ror.org/01q3sdw96', 'en', 1, 'https://ror.org/01q3sdw96 Tezpur College'),
(110331, 'https://ror.org/02c0rrp38', 'pt', 1, 'https://ror.org/02c0rrp38 Escola de Administração de Empresas de SĆ£o Paulo FGV’s SĆ£o Paulo School of Business Administration'),
(110332, 'https://ror.org/00j7qa995', 'en', 1, 'https://ror.org/00j7qa995 Retina Consultants of Texas'),
(110333, 'https://ror.org/007jfj375', 'en', 1, 'https://ror.org/007jfj375 Finlands Medicinhistoriska SƤllskap Finnish Society for the History of Medicine Societas Historiae Medicinae Fennica Suomen LƤƤketieteen Historian Seura'),
(110334, 'https://ror.org/03j8s2d17', 'en', 1, 'https://ror.org/03j8s2d17 East Asia University of Technology TrĘ°į»ng ĐẔi hį»c CĆ“ng Nghệ ĐƓng Ɓ'),
(110335, 'https://ror.org/006wtk122', 'en', 1, 'https://ror.org/006wtk122 Matrouh University Ų¬Ų§Ł…Ų¹Ų© Ł…Ų·Ų±ŁˆŲ­'),
(110336, 'https://ror.org/04gaaws65', 'en', 1, 'https://ror.org/04gaaws65 Finnish Society for Aesthetics Suomen Estetiikan Seura SƤllskapet fƶr Estetik i Finland'),
(110337, 'https://ror.org/053dzdd93', 'es', 1, 'https://ror.org/053dzdd93 Fundación Bariloche'),
(110338, 'https://ror.org/03gbp6p96', 'en', 0, 'https://ror.org/03gbp6p96 Hospital of Prato'),
(110339, 'https://ror.org/0511hhx56', 'en', 1, 'https://ror.org/0511hhx56 Hoitotyƶn tutkimussƤƤtiƶ Nursing Research Foundation'),
(110340, 'https://ror.org/02zsazk32', 'en', 1, 'https://ror.org/02zsazk32 Geological Society of Finland Geologiska SƤllskapet i Finland SociƩtƩ Geologique de Finlande Suomen Geologinen Seura'),
(110341, 'https://ror.org/02xs4hf68', 'no_lang_code', 1, 'https://ror.org/02xs4hf68 Incom Incom (United States)'),
(110342, 'https://ror.org/04mv1z119', 'fr', 1, 'https://ror.org/04mv1z119 La Rochelle UniversitƩ'),
(110343, 'https://ror.org/008h1f725', 'fr', 1, 'https://ror.org/008h1f725 Interfaces, Confinement, MatƩriaux et Nanostructures'),
(110344, 'https://ror.org/046efbj43', 'en', 1, 'https://ror.org/046efbj43 Finna Asocio de Media Juro Finnische Gesellschaft für Umweltrecht Finnish Society for Environmental Law (FSEL) Miljörättsliga Sällskapet i Finland Société Finlandaise pour le Droit de l''Environnement Suomen Ympäristöoikeustieteen Seura (SYS)'),
(110345, 'https://ror.org/00hkhm024', 'en', 1, 'https://ror.org/00hkhm024 University of Arkansas Clinton School of Public Service'),
(110346, 'https://ror.org/0304hq317', 'en', 1, 'https://ror.org/0304hq317 Leibniz University Hannover Leibniz UniversitƤt Hannover'),
(110347, 'https://ror.org/05bpk5567', 'es', 1, 'https://ror.org/05bpk5567 Instituto Tecnológico Superior de San Luis Potosí, Capital'),
(110348, 'https://ror.org/03p3f6k20', 'fr', 1, 'https://ror.org/03p3f6k20 Laboratoire de Microbiologie, Adaptation et PathogƩnie Microbiology, Adaptation and Pathogenesis Lab'),
(110349, 'https://ror.org/03jrwss91', 'fi', 1, 'https://ror.org/03jrwss91 Anatomici Fenniae ry'),
(110350, 'https://ror.org/011q9hc45', 'en', 1, 'https://ror.org/011q9hc45 Global Deaf Research Institute'),
(110351, 'https://ror.org/0424mzx13', 'en', 1, 'https://ror.org/0424mzx13 NSF-Simons AI Institute for Cosmic Origins'),
(110352, 'https://ror.org/00xmqmx64', 'en', 1, 'https://ror.org/00xmqmx64 Senckenberg - Leibniz Institution for Biodiversity and Earth System Research Senckenberg Gesellschaft für Naturforschung'),
(110353, 'https://ror.org/01462bm80', 'es', 1, 'https://ror.org/01462bm80 Fundacion Ibis Para la Investigacion de HIV/SIDA'),
(110354, 'https://ror.org/03hm9j517', 'en', 1, 'https://ror.org/03hm9j517 National Centre of Science, Information and Communication Technology, and Mathematics Education for Rural and Regional Australia SiMERR National Research Centre'),
(110355, 'https://ror.org/043ghe326', 'en', 1, 'https://ror.org/043ghe326 Finnish Society of Toxicology Suomen Toksikologiyhdistys (STY)'),
(110356, 'https://ror.org/03wg93s13', 'fr', 1, 'https://ror.org/03wg93s13 Biologie IntƩgrative des Organismes Marins Integrative Biology of Marine Organisms'),
(110357, 'https://ror.org/02wn03s86', 'en', 1, 'https://ror.org/02wn03s86 Suizhou Vocational and Technical College éšå·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(110358, 'https://ror.org/004z9ct79', 'en', 1, 'https://ror.org/004z9ct79 Finnish Society for Political Economy Research Poliittisen talouden tutkimuksen seura SƤllskapet fƶr studier i politisk ekonomi'),
(110359, 'https://ror.org/01y7srt09', 'en', 1, 'https://ror.org/01y7srt09 Shahida Islam Medical and Dental'),
(110360, 'https://ror.org/05d1hsw45', 'es', 1, 'https://ror.org/05d1hsw45 Asociación Cultural Ecozetaquira'),
(110361, 'https://ror.org/02pfgfj27', 'en', 1, 'https://ror.org/02pfgfj27 Entomological Society of Finland Entomologiska fƶreningen i Finland rf Societas Entomologica Fennica Suomen Hyƶnteisseura ry'),
(110362, 'https://ror.org/05xb5eg35', 'en', 1, 'https://ror.org/05xb5eg35 Emera & NB Power Research Centre for Smart Grid Technologies'),
(110363, 'https://ror.org/04f921w28', 'es', 1, 'https://ror.org/04f921w28 Centro de Innovación y Desarrollo Educativo'),
(110364, 'https://ror.org/02hfyct53', 'en', 1, 'https://ror.org/02hfyct53 University of Redlands UniversitƩ de redlands'),
(110365, 'https://ror.org/00yhsjs55', 'en', 1, 'https://ror.org/00yhsjs55 Canadian Institute for Cybersecurity'),
(110366, 'https://ror.org/05qkhrm84', 'en', 1, 'https://ror.org/05qkhrm84 The International Society for Orthodox Church Music (ISOCM)'),
(110367, 'https://ror.org/00rp90b42', 'it', 1, 'https://ror.org/00rp90b42 SocietĆ  Italiana di Health Technology Assessment'),
(110368, 'https://ror.org/04wpdxp21', 'en', 1, 'https://ror.org/04wpdxp21 Finnish Association for Structural Mechanics Gesellschaft für Technische Mechanik in Finnland Konstruktionsmekaniska föreningen i Finland Rakenteiden Mekaniikan Seura'),
(110369, 'https://ror.org/0039r8530', 'en', 1, 'https://ror.org/0039r8530 Muriel McQueen Fergusson Centre for Family Violence Research'),
(110370, 'https://ror.org/0447ejr46', 'en', 1, 'https://ror.org/0447ejr46 Svenska skolhistoriska fƶreningen i Finland Swedish Society of School History in Finland'),
(110371, 'https://ror.org/00fta5x15', 'es', 1, 'https://ror.org/00fta5x15 Centro MƩdico Sanitas Artaza Sanitas Artaza Medical Centre'),
(110372, 'https://ror.org/003d4nz26', 'en', 1, 'https://ror.org/003d4nz26 Finnish Literary Research Society Kirjallisuudentutkijain Seura'),
(110373, 'https://ror.org/030tqw635', 'en', 1, 'https://ror.org/030tqw635 Finlands vetenskapliga bibliotekssamfund Finnish Research Library Association Suomen tieteellinen kirjastoseura'),
(110374, 'https://ror.org/02nnpw434', 'fr', 1, 'https://ror.org/02nnpw434 Institut d''Histoire et de Philosophie des Sciences et des Techniques Institute for the History and Philosophy of Science and Technology'),
(110375, 'https://ror.org/05pcf2t08', 'en', 1, 'https://ror.org/05pcf2t08 Centre for Earth Observation Science'),
(110376, 'https://ror.org/03xddpv71', 'es', 1, 'https://ror.org/03xddpv71 SecretarĆ­a de Medio Ambiente e Historia Natural'),
(110377, 'https://ror.org/00zfapm50', 'en', 1, 'https://ror.org/00zfapm50 Tokyo Electric Power Services Co., Ltd Tokyo Electric Power Services Co., Ltd (Japan)'),
(110378, 'https://ror.org/0550dmh35', 'fr', 1, 'https://ror.org/0550dmh35 Centre Interdisciplinaire de Nanoscience de Marseille'),
(110379, 'https://ror.org/01j9kcg62', 'en', 1, 'https://ror.org/01j9kcg62 Finnische Theologische Literaturgesellschaft Finnish Theological Literature Society Suomalainen Teologinen Kirjallisuusseura'),
(110380, 'https://ror.org/04n178a97', 'fi', 1, 'https://ror.org/04n178a97 StatsfƶrfattningsrƤttsliga sƤllskapet i Finland Suomen valtiosƤƤntƶoikeudellinen seura'),
(110381, 'https://ror.org/04fzegp81', 'en', 1, 'https://ror.org/04fzegp81 Westford University College Ł…ŲÆŲ±Ų³Ų© ويست فورد لل؄دارة'),
(110382, 'https://ror.org/02k3fsp78', 'en', 1, 'https://ror.org/02k3fsp78 Shonan Atsugi Hospital ę¹˜å—åŽšęœØē—…é™¢'),
(110383, 'https://ror.org/04g1hjn96', 'fr', 1, 'https://ror.org/04g1hjn96 Laboratoire de MathƩmatiques Jean Leray'),
(110384, 'https://ror.org/05yhm9088', 'en', 1, 'https://ror.org/05yhm9088 Albert Health Albert Health (United Kingdom)'),
(110385, 'https://ror.org/0423q9896', 'es', 1, 'https://ror.org/0423q9896 Centro MƩdico Sanitas Las Rozas Sanitas Las Rozas Medical Centre'),
(110386, 'https://ror.org/04m245a70', 'en', 1, 'https://ror.org/04m245a70 Sri Venkateswara College of Engineering Tirupati'),
(110387, 'https://ror.org/02fbf9x60', 'en', 1, 'https://ror.org/02fbf9x60 Alue- ja YmpƤristƶtutkimuksen Seura Society for Regional and Environmental Studies SƤllskapet fƶr Regional- och Miljƶforskning'),
(110388, 'https://ror.org/020kwj692', 'en', 1, 'https://ror.org/020kwj692 Sumy State Pedagogical University named after A. S. Makarenko Думський Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені А.Š”. ŠœŠ°ŠŗŠ°Ń€ŠµŠ½ŠŗŠ°'),
(110389, 'https://ror.org/02b8rce15', 'en', 1, 'https://ror.org/02b8rce15 Pan African Institute for Development Regional Institute for West Africa'),
(110390, 'https://ror.org/02wyv8x71', 'en', 1, 'https://ror.org/02wyv8x71 San Francisco Theological Seminary'),
(110391, 'https://ror.org/04gsp2c11', 'en', 1, 'https://ror.org/04gsp2c11 James Cook University'),
(110392, 'https://ror.org/00eq7x759', 'en', 1, 'https://ror.org/00eq7x759 Iraqi Medical Research Center'),
(110393, 'https://ror.org/02kbq5n70', 'en', 1, 'https://ror.org/02kbq5n70 Institute of Development Management'),
(110394, 'https://ror.org/01wrng808', 'fr', 1, 'https://ror.org/01wrng808 Groupe d’Étude de la MatiĆØre CondensĆ©e'),
(110395, 'https://ror.org/059sy2c11', 'en', 1, 'https://ror.org/059sy2c11 Finnish Lawyers'' Association Suomalainen Lakimiesyhdistys'),
(110396, 'https://ror.org/02h8zn861', 'en', 1, 'https://ror.org/02h8zn861 e-Infrastructure of the Czech Republic e-Infrastruktura CZ'),
(110397, 'https://ror.org/017xemh21', 'en', 1, 'https://ror.org/017xemh21 Finnish Society on Media Education Mediakasvatusseura SƤllskapet fƶr Mediefostran'),
(110398, 'https://ror.org/03ae8w006', 'fr', 1, 'https://ror.org/03ae8w006 Sorbonne - IdentitĆ©s, Relations Internationales et Civilisations de l’Europe'),
(110399, 'https://ror.org/00rj79h44', 'en', 1, 'https://ror.org/00rj79h44 Charleston Community Unit School District 1'),
(110400, 'https://ror.org/05630cd58', 'en', 1, 'https://ror.org/05630cd58 SwissLink Higher Institute of Business & Technology'),
(110401, 'https://ror.org/05akb0e23', 'en', 1, 'https://ror.org/05akb0e23 Indian Ocean Tuna Commission'),
(110402, 'https://ror.org/00k2j5y64', 'no', 1, 'https://ror.org/00k2j5y64 Harstad kommune Harstad municipality HƔrsttƔid suohkan'),
(110403, 'https://ror.org/03w6nzd18', 'en', 1, 'https://ror.org/03w6nzd18 Cerro Tololo Inter-American Observatory'),
(110404, 'https://ror.org/01fj9vz58', 'en', 1, 'https://ror.org/01fj9vz58 Finnish Society for Agricultural Law LandsbygdsrƤttsliga SƤllskapet Maaseutuoikeuden Seura'),
(110405, 'https://ror.org/020nks034', 'fr', 1, 'https://ror.org/020nks034 UMR Botanique et ModĆ©lisation de l’Architecture des Plantes et des vĆ©gĆ©tations'),
(110406, 'https://ror.org/03v4gjf40', 'de', 1, 'https://ror.org/03v4gjf40 Technische UniversitƤt Berlin'),
(110407, 'https://ror.org/014ye1258', 'en', 1, 'https://ror.org/014ye1258 Rutgers New Jersey Medical School'),
(110408, 'https://ror.org/02rt3gt49', 'en', 0, 'https://ror.org/02rt3gt49 Long Beach Medical Center'),
(110409, 'https://ror.org/03k4yh676', 'en', 1, 'https://ror.org/03k4yh676 Fƶrening fƶr forskning och utvecklandet av rehabilitering Kuntoutuksen tutkimus- ja kehittƤmisyhdistys, KUTKE ry Society for Rehabilitation Research and Development'),
(110410, 'https://ror.org/05vf7mn51', 'en', 1, 'https://ror.org/05vf7mn51 Finnish Association for Medical Law and Ethics Suomen LƤƤkintƤoikeuden ja -etiikan Seura SƤllskapet fƶr MedicinalrƤtt och -etik i Finland'),
(110411, 'https://ror.org/00vy2n929', 'en', 1, 'https://ror.org/00vy2n929 SPECTRAL Spatial Computing Research Centre'),
(110412, 'https://ror.org/05x95ne37', 'es', 1, 'https://ror.org/05x95ne37 Asociación Colombiana de Facultades de Psicología'),
(110413, 'https://ror.org/015nj5y87', 'pt', 1, 'https://ror.org/015nj5y87 Instituto de Tecnologia e LideranƧa'),
(110414, 'https://ror.org/04n0wbr94', 'no_lang_code', 1, 'https://ror.org/04n0wbr94 HARZ Labs DOO HARZ Labs DOO (Montenegro)'),
(110415, 'https://ror.org/02ce3qg42', 'fi', 1, 'https://ror.org/02ce3qg42 Suomen Kriminologinen yhdistys'),
(110416, 'https://ror.org/03sqj6c96', 'pt', 1, 'https://ror.org/03sqj6c96 Companhia de Desenvolvimento EconƓmico de Minas Gerais'),
(110417, 'https://ror.org/026phzp50', 'en', 1, 'https://ror.org/026phzp50 Stalwart University Institute'),
(110418, 'https://ror.org/033dwq131', 'en', 1, 'https://ror.org/033dwq131 Arab Center for Research and Policy Studies'),
(110419, 'https://ror.org/03ymkwc92', 'en', 1, 'https://ror.org/03ymkwc92 Finlands marinarkeologiska sƤllskap Suomen meriarkeologinen seura The Maritime Archaeological Society of Finland'),
(110420, 'https://ror.org/05wav0c22', 'en', 1, 'https://ror.org/05wav0c22 The Leprosy Mission International'),
(110421, 'https://ror.org/0238zyh04', 'fr', 1, 'https://ror.org/0238zyh04 Institut des MatƩriaux, de MicroƩlectronique et des Nanosciences de Provence'),
(110422, 'https://ror.org/0444r5845', 'en', 1, 'https://ror.org/0444r5845 Centre for Advanced Studies - Atlantic'),
(110423, 'https://ror.org/0229z0679', 'fr', 1, 'https://ror.org/0229z0679 Milieux environnementaux, transferts et interactions dans les hydrosystĆØmes et les sols'),
(110424, 'https://ror.org/00vp8qm49', 'en', 1, 'https://ror.org/00vp8qm49 Institut für Inklusive Bildung Institute for Inclusive Education'),
(110425, 'https://ror.org/03m8xgk08', 'es', 1, 'https://ror.org/03m8xgk08 Fundación Ernesto SÔnchez Villares'),
(110426, 'https://ror.org/01paa1e42', 'fr', 1, 'https://ror.org/01paa1e42 Centre Maurice-Halbwachs'),
(110427, 'https://ror.org/02twzcg73', 'en', 1, 'https://ror.org/02twzcg73 Finnish Air Pollution Prevention Society Ilmansuojeluyhdistys (FAPPS) LuftvƄrdsfƶreningen'),
(110428, 'https://ror.org/04b8pg882', 'en', 1, 'https://ror.org/04b8pg882 Finlands Tribologifƶrening Finnish Society for Tribology Suomen Tribologiayhdistys'),
(110429, 'https://ror.org/00212nd65', 'en', 1, 'https://ror.org/00212nd65 Arkistoyhdistys Arkivfƶreningen Society of Finnish Archivists');
INSERT INTO `rors` VALUES
(110430, 'https://ror.org/01awx2523', 'de', 1, 'https://ror.org/01awx2523 Forschungsinstitut für politisch-historische Studien der Dr.-Wilfried-Haslauer-Bibliothek'),
(110431, 'https://ror.org/036ragn25', 'en', 1, 'https://ror.org/036ragn25 Forschungszentrum Borstel - Leibniz Lungenzentrum Research Center Borstel - Leibniz Lung Center'),
(110432, 'https://ror.org/04x5g0k34', 'es', 1, 'https://ror.org/04x5g0k34 Centro de Rehabilitación Avanzada Sanitas Isaac Peral Sanitas Isaac Peral Advanced Rehabilitation Centre'),
(110433, 'https://ror.org/01m2qwb98', 'es', 1, 'https://ror.org/01m2qwb98 Centro Médico Sanitas Alcorcón Sanitas Alcorcón Medical Centre'),
(110434, 'https://ror.org/010ge4q90', 'en', 1, 'https://ror.org/010ge4q90 Association for Military History in Finland Krigshistoriska Samfundet i Finland Krigshistoriska samfundet i Finland Suomen Sotahistoriallinen Seura'),
(110435, 'https://ror.org/03d7d9103', 'en', 1, 'https://ror.org/03d7d9103 Spinghar Institute of Higher Education, Nangarhar Ų³Ł¾ŪŒŁ† ŲŗŲ± ŲÆ Ł„ŁˆŚ“Łˆ Ų²ŲÆŚ©Ś“Łˆ Ł…ŁˆŲ³Ų³Ł‡ مرکز Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų³Ł¾ŪŒŁ†ŲŗŲ±'),
(110436, 'https://ror.org/02npb2t32', 'es', 1, 'https://ror.org/02npb2t32 Instituto Superior Tecnológico España'),
(110437, 'https://ror.org/012rxev91', 'en', 1, 'https://ror.org/012rxev91 Jai Prakash University'),
(110438, 'https://ror.org/00my5c754', 'es', 1, 'https://ror.org/00my5c754 Centro MƩdico Sanitas A CoruƱa Sanitas A CoruƱa Medical Centre'),
(110439, 'https://ror.org/05b2p8944', 'fr', 1, 'https://ror.org/05b2p8944 National University of Agriculture UniversitƩ Nationale d''Agriculture'),
(110440, 'https://ror.org/03jnxq519', 'fr', 1, 'https://ror.org/03jnxq519 Denis Sassou Nguesso University UniversitƩ de Denis Sassou N''guesso'),
(110441, 'https://ror.org/05dthq022', 'en', 1, 'https://ror.org/05dthq022 Rajapinta Association of Digital Social Sciences Rajapinta fƶrening fƶr digitala samhƤllsvetenskaper Rajapinta ry - Digitaalisten yhteiskuntatieteiden yhdistys'),
(110442, 'https://ror.org/05ma24182', 'en', 1, 'https://ror.org/05ma24182 Finnish Association of Speech and Language Research Finsk fƶrening fƶr tal- och sprƄkforskning Puheen ja kielen tutkimuksen yhdistys'),
(110443, 'https://ror.org/019379q74', 'no_lang_code', 0, 'https://ror.org/019379q74 Marka - Marketing Aplicado (Portugal)'),
(110444, 'https://ror.org/0512qgw13', 'en', 1, 'https://ror.org/0512qgw13 Karelian Theological Society Karjalan teologinen seura'),
(110445, 'https://ror.org/053vv7851', 'fr', 1, 'https://ror.org/053vv7851 Ecologie Microbienne Lyon Microbial Ecology'),
(110446, 'https://ror.org/05n6mkj97', 'en', 1, 'https://ror.org/05n6mkj97 Consortium of Higher Education Researchers in Finland Korkeakoulututkimuksen seura'),
(110447, 'https://ror.org/02ekjvb96', 'en', 1, 'https://ror.org/02ekjvb96 Association des Architectes de Finlande Finlands Arkitektfƶrbund (SAFA) Finnish Association of Architects Finnlands Architektenverband Suomen Arkkitehtiliitto'),
(110448, 'https://ror.org/03f0apy98', 'fr', 1, 'https://ror.org/03f0apy98 Laboratoire de Physique Subatomique et de Cosmologie Laboratory of Subatomic Physics and Cosmology'),
(110449, 'https://ror.org/01j5pk676', 'en', 1, 'https://ror.org/01j5pk676 BGI Research, Sanya äø‰äŗšåŽå¤§ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(110450, 'https://ror.org/02c6p9834', 'fr', 1, 'https://ror.org/02c6p9834 Physiologie de la Reproduction et des Comportements'),
(110451, 'https://ror.org/02xh1an97', 'en', 1, 'https://ror.org/02xh1an97 Army Institute of Business Administration, Savar'),
(110452, 'https://ror.org/051nvp675', 'es', 1, 'https://ror.org/051nvp675 Temuco Catholic University Universidad Católica de Temuco'),
(110453, 'https://ror.org/02gpy3h79', 'en', 1, 'https://ror.org/02gpy3h79 MemorialCare Health System'),
(110454, 'https://ror.org/05d0e2p84', 'en', 1, 'https://ror.org/05d0e2p84 Nano Research Centre'),
(110455, 'https://ror.org/05kacnm89', 'en', 1, 'https://ror.org/05kacnm89 Central University of Venezuela Universidad Central de Venezuela'),
(110456, 'https://ror.org/02t6wt791', 'en', 1, 'https://ror.org/02t6wt791 Al-Ayen Iraqi University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹ŁŠŁ† Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ©'),
(110457, 'https://ror.org/02p6c5g88', 'en', 1, 'https://ror.org/02p6c5g88 Federal Ministry of Innovation, Science and Technology'),
(110458, 'https://ror.org/004qxj953', 'en', 1, 'https://ror.org/004qxj953 FOMIC Polytechnic University Institute'),
(110459, 'https://ror.org/03t1nty19', 'en', 1, 'https://ror.org/03t1nty19 Geografiska SƤllskapet i Finland Geographical Society of Finland Geographische Gesellschaft von Finnland SociƩtƩ Geographique de Finlande Suomen Maantieteellinen Seura'),
(110460, 'https://ror.org/03rqtbt42', 'en', 1, 'https://ror.org/03rqtbt42 Sule Lamido University Sule Lamido University Kafin Hausa'),
(110461, 'https://ror.org/02swxtp23', 'en', 1, 'https://ror.org/02swxtp23 National Acoustic Laboratories'),
(110462, 'https://ror.org/058gwcb74', 'en', 1, 'https://ror.org/058gwcb74 Gyeongbuk College of Health ź²½ė¶ė³“ź±“ėŒ€ķ•™źµ'),
(110463, 'https://ror.org/00sc77p73', 'en', 1, 'https://ror.org/00sc77p73 New England Regional Headache Center'),
(110464, 'https://ror.org/00q5dmf54', 'de', 1, 'https://ror.org/00q5dmf54 LVR-Klinik Langenfeld'),
(110465, 'https://ror.org/01cpcdq46', 'en', 1, 'https://ror.org/01cpcdq46 Finnische Gesellschaft für Psychologie Finnish Psychological Society Suomen Psykologinen Seura'),
(110466, 'https://ror.org/0527z9404', 'en', 1, 'https://ror.org/0527z9404 Finnish Pharmacological Society Suomen Farmakologiyhdistys (SFY)'),
(110467, 'https://ror.org/03vyjkj45', 'fr', 1, 'https://ror.org/03vyjkj45 Centre d’Immunologie de Marseille-Luminy'),
(110468, 'https://ror.org/04s0b8n66', 'fr', 1, 'https://ror.org/04s0b8n66 Institut d''Histoire du Temps PrƩsent'),
(110469, 'https://ror.org/00d82rk36', 'en', 1, 'https://ror.org/00d82rk36 HLA-G immune checkpoint in Oncology and Transplantation'),
(110470, 'https://ror.org/04seaqa62', 'en', 1, 'https://ror.org/04seaqa62 Kyiv Municipal Academy of Performing and Circus Arts ŠšŠøŃ—Š²ŃŃŒŠŗŠ° Š¼ŃƒŠ½Ń–Ń†ŠøŠæŠ°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń естраГного та циркового мистецтв'),
(110471, 'https://ror.org/04qmyh407', 'en', 1, 'https://ror.org/04qmyh407 KG College of Arts and Science ą®•ąÆ‡ą®œą®æ ą®•ą®²ąÆˆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(110472, 'https://ror.org/02kedcz83', 'es', 1, 'https://ror.org/02kedcz83 Centro MƩdico Sanitas Robresa Sanitas Robresa Medical Centre'),
(110473, 'https://ror.org/00qme7p86', 'en', 1, 'https://ror.org/00qme7p86 Kalevala Society Kalevala SƤllskapet Kalevalaseura-sƤƤtiƶ'),
(110474, 'https://ror.org/05jv9s411', 'de', 1, 'https://ror.org/05jv9s411 Senckenberg Museum für Naturkunde Görlitz Senckenberg Museum of Natural History Görlitz'),
(110475, 'https://ror.org/033bf3r97', 'en', 1, 'https://ror.org/033bf3r97 IWO - Institute for Science & Development'),
(110476, 'https://ror.org/05k4ema52', 'fr', 1, 'https://ror.org/05k4ema52 Institut de Pharmacologie MolƩculaire et Cellulaire Institute of Molecular and Cellular Pharmacology'),
(110477, 'https://ror.org/029yqf282', 'fr', 1, 'https://ror.org/029yqf282 Institut Polytechnique Africain'),
(110478, 'https://ror.org/02ntfea48', 'en', 1, 'https://ror.org/02ntfea48 Mount Tamalpais College'),
(110479, 'https://ror.org/05dgrss21', 'en', 1, 'https://ror.org/05dgrss21 Camtree: the Cambridge Teacher Research Exchange'),
(110480, 'https://ror.org/00nrven85', 'fr', 1, 'https://ror.org/00nrven85 Structures Formelles du Langage'),
(110481, 'https://ror.org/019wcsf72', 'en', 1, 'https://ror.org/019wcsf72 Finnish Society of Social Work Research Fƶreningen fƶr forskning i socialt arbete Sosiaalityƶn tutkimuksen seura'),
(110482, 'https://ror.org/03de6xz87', 'en', 1, 'https://ror.org/03de6xz87 Finlands herpetologiska fƶrening Suomen herpetologinen yhdistys The Herpetological Society of Finland'),
(110483, 'https://ror.org/02zh2vx86', 'fr', 1, 'https://ror.org/02zh2vx86 ContrƓle de la RƩponse Immune B et LymphoprolifƩrations'),
(110484, 'https://ror.org/018tsk340', 'en', 1, 'https://ror.org/018tsk340 Fundatia "Ana Aslan" International'),
(110485, 'https://ror.org/02vmerq40', 'tr', 1, 'https://ror.org/02vmerq40 T.T.G. Uluslararası Telekomünikasyon İletişim Hiz. ve Elekt. Tic. Ltd. Şti. T.T.G. Uluslararası Telekomünikasyon İletişim Hiz. ve Elekt. Tic. Ltd. Şti. (Türkiye) TTG 5G Lab'),
(110486, 'https://ror.org/02xbdd320', 'en', 1, 'https://ror.org/02xbdd320 Donner-instituutti Donnerska institutet fƶr religionshistorisk och kulturhistorisk forskning The Donner Institute for Research in Religious and Cultural History'),
(110487, 'https://ror.org/05wx7f653', 'en', 1, 'https://ror.org/05wx7f653 Global Digital Heritage'),
(110488, 'https://ror.org/00pzjnx43', 'id', 1, 'https://ror.org/00pzjnx43 Universitas Prima Nusantara Bukittinggi'),
(110489, 'https://ror.org/000tpgs13', 'en', 1, 'https://ror.org/000tpgs13 Muthesius Kunsthochschule Muthesius University of Fine Arts and Design'),
(110490, 'https://ror.org/027q7z608', 'es', 1, 'https://ror.org/027q7z608 Instituto Superior de Ciencias de la Educación del Estado de México'),
(110491, 'https://ror.org/0143dvz59', 'es', 1, 'https://ror.org/0143dvz59 Instituto de ZoologĆ­a y EcologĆ­a Tropical'),
(110492, 'https://ror.org/02csscj62', 'pt', 1, 'https://ror.org/02csscj62 Serviço de Saúde da Região Autónoma da Madeira'),
(110493, 'https://ror.org/05fnxds15', 'fr', 1, 'https://ror.org/05fnxds15 Processus Infectieux en Milieu Insulaire Tropical'),
(110494, 'https://ror.org/0118p9q95', 'en', 1, 'https://ror.org/0118p9q95 Ecological Restoration Fund'),
(110495, 'https://ror.org/00gd2w119', 'fr', 1, 'https://ror.org/00gd2w119 Centre d''Ʃtudes EuropƩennes de Sciences Po Sciences Po Centre for European Studies and Comparative Politics'),
(110496, 'https://ror.org/057zme681', 'fr', 1, 'https://ror.org/057zme681 Laboratoire de Chimie BactƩrienne'),
(110497, 'https://ror.org/025sxka56', 'no_lang_code', 1, 'https://ror.org/025sxka56 IBM (Canada)'),
(110498, 'https://ror.org/03nqvpf75', 'fr', 1, 'https://ror.org/03nqvpf75 Laboratoire d''Ɖtude des Microstructures'),
(110499, 'https://ror.org/043bdvm75', 'en', 1, 'https://ror.org/043bdvm75 Suomen pelitutkimuksen seura ry The Finnish Society for Game Research'),
(110500, 'https://ror.org/02y363509', 'en', 1, 'https://ror.org/02y363509 International Fiscal Association, Avdelning i Finland International Fiscal Association, Finnish Branch International Fiscal Association, Suomen osasto'),
(110501, 'https://ror.org/04k88mt22', 'en', 1, 'https://ror.org/04k88mt22 Tabesh University ŲŖŲ§ŲØŲ“ Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(110502, 'https://ror.org/01asdba22', 'es', 1, 'https://ror.org/01asdba22 Colegio de Postgraduados Campus Córdoba'),
(110503, 'https://ror.org/0475fva64', 'en', 1, 'https://ror.org/0475fva64 Applied Agricultural Remote Sensing Centre'),
(110504, 'https://ror.org/03wfy4222', 'en', 1, 'https://ror.org/03wfy4222 Bệnh viện Ung bướu thĆ nh phố Cįŗ§n ThĘ” Can Tho Oncology Hospital'),
(110505, 'https://ror.org/03r7eh527', 'fr', 1, 'https://ror.org/03r7eh527 Laboratoire de Photophysique et Photochimie SupramolƩculaires et MacromolƩculaires'),
(110506, 'https://ror.org/058p7rr87', 'en', 1, 'https://ror.org/058p7rr87 Finnish Association of Co-operative Studies SƤllskapet fƶr ekonomiskt samarbete och kooperativ forskning Kooperatiivi Taloudellisen yhteistyƶn ja osuustoiminnan tutkimuksen seura Kooperatiivi'),
(110507, 'https://ror.org/00saanr69', 'en', 1, 'https://ror.org/00saanr69 University of Sulaimani Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³Ł„ŁŠŁ…Ų§Ł†ŁŠŲ© Ų²Ų§Ł†Ś©Ū†ŪŒ Ų³Ł„ŪŽŁ…Ų§Ł†ŪŒ'),
(110508, 'https://ror.org/056034x33', 'en', 1, 'https://ror.org/056034x33 Sri Muthukumaran Institute of Technology'),
(110509, 'https://ror.org/01prxdf57', 'en', 1, 'https://ror.org/01prxdf57 Georges Friedel Laboratory Laboratoire George Friedel'),
(110510, 'https://ror.org/042prw809', 'en', 1, 'https://ror.org/042prw809 Finlands matematiska fƶrening Finnish Mathematical Society Suomen matemaattinen yhdistys'),
(110511, 'https://ror.org/043xjcd49', 'fr', 1, 'https://ror.org/043xjcd49 Institute of Labour Economics and Industrial Sociology Laboratoire d''Economie et de Sociologie du Travail'),
(110512, 'https://ror.org/00b9pg524', 'en', 1, 'https://ror.org/00b9pg524 National Solar Observatory'),
(110513, 'https://ror.org/03k51z204', 'en', 1, 'https://ror.org/03k51z204 Hotchkiss Brain Institute'),
(110514, 'https://ror.org/027atwb90', 'fr', 1, 'https://ror.org/027atwb90 Genes, Synapses, and Cognition GĆØnes, synapses et cognition'),
(110515, 'https://ror.org/00r0rx657', 'en', 1, 'https://ror.org/00r0rx657 University of Tamanghasset UniversitĆ© de Tamanrasset Ų¬Ų§Ł…Ų¹Ų© تامنغست'),
(110516, 'https://ror.org/05mmjvv12', 'fr', 1, 'https://ror.org/05mmjvv12 Institut de Recherche Interdisciplinaire en Sciences Sociales'),
(110517, 'https://ror.org/0120w0n28', 'es', 1, 'https://ror.org/0120w0n28 Centro MƩdico Sanitas Montecarmelo Sanitas Montecarmelo Medical Centre'),
(110518, 'https://ror.org/02vqg0r45', 'en', 1, 'https://ror.org/02vqg0r45 Photonics Finland Suomen fotoniikan seura'),
(110519, 'https://ror.org/02qca0955', 'en', 1, 'https://ror.org/02qca0955 Finnish Astronomical Society Suomen TƤhtitieteilijƤseura'),
(110520, 'https://ror.org/016xad343', 'en', 1, 'https://ror.org/016xad343 Senckenberg Natural History Collections Dresden Senckenberg Naturhistorische Sammlungen Dresden'),
(110521, 'https://ror.org/020rbyg91', 'en', 1, 'https://ror.org/020rbyg91 National Institutes for Quantum Science and Technology é‡å­ē§‘å­¦ęŠ€č”“ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(110522, 'https://ror.org/0170yz872', 'es', 1, 'https://ror.org/0170yz872 Centro Médico Sanitas Córdoba Sanitas Cordoba Medical Centre'),
(110523, 'https://ror.org/0526w4346', 'en', 1, 'https://ror.org/0526w4346 Society of Scientific Hypnosis in Finland Tieteellinen hypnoosi Vetenskaplig hypnos'),
(110524, 'https://ror.org/01vwc3f17', 'en', 1, 'https://ror.org/01vwc3f17 Azerbaijan Science Center Azərbaycan Elm Mərkəzi'),
(110525, 'https://ror.org/01c8f2y33', 'en', 1, 'https://ror.org/01c8f2y33 Moss Landing Marine Laboratories'),
(110526, 'https://ror.org/057sq8641', 'en', 1, 'https://ror.org/057sq8641 Takshashila Institute of Engineering and Technology, Darapur'),
(110527, 'https://ror.org/048338z54', 'nl', 1, 'https://ror.org/048338z54 Radiotherapiegroep'),
(110528, 'https://ror.org/02ftce284', 'fr', 1, 'https://ror.org/02ftce284 Laboratoire Charles Coulomb'),
(110529, 'https://ror.org/03jcg6182', 'en', 0, 'https://ror.org/03jcg6182 Union of Needletrades Industrial and Textile Employees'),
(110530, 'https://ror.org/01beam711', 'en', 1, 'https://ror.org/01beam711 Finlands SvampvƤnner Finnish Mycological Society Societas Mycologica Fennica Suomen Sieniseura'),
(110531, 'https://ror.org/02yvzq394', 'en', 1, 'https://ror.org/02yvzq394 University of Khorfakkan'),
(110532, 'https://ror.org/03daptr13', 'en', 1, 'https://ror.org/03daptr13 Social Policy Research Institute'),
(110533, 'https://ror.org/009eqmr18', 'es', 1, 'https://ror.org/009eqmr18 Center for Research and Advanced Studies of the National Polytechnic Institute Centro de Investigación y de Estudios Avanzados del Instituto Politécnico Nacional'),
(110534, 'https://ror.org/05jtaec51', 'en', 1, 'https://ror.org/05jtaec51 Finlands VeterinƤrfƶrbund Finnish Veterinary Association Suomen ElƤinlƤƤkƤriliitto'),
(110535, 'https://ror.org/05pm8ec76', 'fr', 1, 'https://ror.org/05pm8ec76 Laboratoire d''Anthropologie Sociale'),
(110536, 'https://ror.org/0109nwa96', 'en', 1, 'https://ror.org/0109nwa96 Finnish Society for Health Economics HƤlsoekonomiska Samfundet Terveystaloustieteen Seura'),
(110537, 'https://ror.org/04jwe2p45', 'es', 1, 'https://ror.org/04jwe2p45 Administración de Parques Nacionales'),
(110538, 'https://ror.org/023t8cy86', 'en', 1, 'https://ror.org/023t8cy86 Finnish Literature Society of Vyborg Finska LitteratursƤllskapet i Viborg Viipurin Suomalainen Kirjallisuusseura'),
(110539, 'https://ror.org/014xd9r11', 'ro', 1, 'https://ror.org/014xd9r11 Complexul Muzeal Bistriţa-Năsăud'),
(110540, 'https://ror.org/03c8mxf83', 'en', 1, 'https://ror.org/03c8mxf83 Semiotic Society of Finland Semiotiska SƤllskapet i Finland rf Suomen Semiotiikan Seura'),
(110541, 'https://ror.org/01nqdzv73', 'id', 1, 'https://ror.org/01nqdzv73 Akademi Kesehatan Sumenep'),
(110542, 'https://ror.org/04yfmby80', 'en', 1, 'https://ror.org/04yfmby80 Museum of Archeology and Ethnography in Lodz Muzeum Archeologiczne i Etnograficzne w Łodzi'),
(110543, 'https://ror.org/05kecan97', 'es', 1, 'https://ror.org/05kecan97 Centro de Estudios GeogrÔficos, Biológicos y Comunitarios, S.C. Geobicom'),
(110544, 'https://ror.org/02z8yps18', 'fr', 1, 'https://ror.org/02z8yps18 Laboratoire de gĆ©nie des procĆ©dĆ©s pour la bioraffinerie, les matĆ©riaux bio-sourcĆ©s et l’impression fonctionnelle'),
(110545, 'https://ror.org/05f685734', 'en', 1, 'https://ror.org/05f685734 Crater Lake National Park'),
(110546, 'https://ror.org/03s9zdv09', 'en', 1, 'https://ror.org/03s9zdv09 Manipal Centre for Natural Sciences'),
(110547, 'https://ror.org/04mp4zc06', 'fr', 1, 'https://ror.org/04mp4zc06 Laboratoire d''Ʃtude de l''apprentissage et du dƩveloppement Laboratory for Research on Learning and Development'),
(110548, 'https://ror.org/050d7te68', 'en', 1, 'https://ror.org/050d7te68 Finnish Gerontological Society Finska Gerontologiska Fƶreningen Societas Gerontologica Fennica'),
(110549, 'https://ror.org/05qz2dz14', 'en', 1, 'https://ror.org/05qz2dz14 The Max Stern Academic College of Emek Yezreel The Max Stern Yezreel Valley College המכללה ×”××§×“×ž×™×Ŗ עמק ×™×–×Ø×¢××œ עדש מקה שטרן'),
(110550, 'https://ror.org/021kgjd57', 'en', 1, 'https://ror.org/021kgjd57 MemorialCare Long Beach Medical Center'),
(110551, 'https://ror.org/006pvfx30', 'en', 0, 'https://ror.org/006pvfx30 Wells College'),
(110552, 'https://ror.org/01h14ww21', 'fr', 1, 'https://ror.org/01h14ww21 Kastler Brossel Laboratory Laboratoire Kastler Brossel'),
(110553, 'https://ror.org/04wcsk891', 'en', 1, 'https://ror.org/04wcsk891 Finnish Educational Research Association Samfundet fƶr pedagogisk forskning i Finland Suomen kasvatustieteellinen seura'),
(110554, 'https://ror.org/0266y7j75', 'fr', 1, 'https://ror.org/0266y7j75 Centre de Recherches Politiques de Sciences Po Centre for Political Research at Sciences Po'),
(110555, 'https://ror.org/04bmqy315', 'fr', 1, 'https://ror.org/04bmqy315 Centre Hospitalo-Universitaire Mohammed VI d''Oujda Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų§Ų³ŲŖŲ“ŁŲ§Ų¦ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł…Ų­Ł…ŲÆ السادس-وجدة'),
(110556, 'https://ror.org/037hby126', 'fr', 1, 'https://ror.org/037hby126 Ɖtablissement FranƧais du Sang'),
(110557, 'https://ror.org/024sbrh64', 'en', 1, 'https://ror.org/024sbrh64 Bujumbura Christian University UniversitƩ ChrƩtienne de Bujumbura'),
(110558, 'https://ror.org/03zkk2612', 'en', 1, 'https://ror.org/03zkk2612 Agricultural Research Institute Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī“ĪµĻ‰ĻĪ³Ī¹ĪŗĻŽĪ½ Ī•ĻĪµĻ…Ī½ĻŽĪ½'),
(110559, 'https://ror.org/019g2qd78', 'en', 1, 'https://ror.org/019g2qd78 Marine Additive Manufacturing Centre of Excellence'),
(110560, 'https://ror.org/0218kr574', 'en', 1, 'https://ror.org/0218kr574 Engineering Society in Finland, TFiF SociƩte des IngeniƩurs Civils Finlandais TFiF Tekniska Fƶreningen i Finland Verein Finnischer Diplom-Ingenieure TFiF'),
(110561, 'https://ror.org/04zdqq152', 'en', 1, 'https://ror.org/04zdqq152 Senckenberg Deutsches Entomologisches Institut Senckenberg German Entomological Institute'),
(110562, 'https://ror.org/04xfycm61', 'fr', 1, 'https://ror.org/04xfycm61 Communication Molecules and Adapation of Micro-organisms MolƩcules de Communication et Adaptation des Micro-organismes'),
(110563, 'https://ror.org/050r0fy88', 'en', 1, 'https://ror.org/050r0fy88 Noroff HĆøyskole Noroff University College'),
(110564, 'https://ror.org/05j7dv334', 'en', 1, 'https://ror.org/05j7dv334 Finnische Gesellschaft für Naturphilosophie Luonnonfilosofian seura ry The Finnish Society for Natural Philosophy'),
(110565, 'https://ror.org/01ej9dk98', 'en', 1, 'https://ror.org/01ej9dk98 The University of Melbourne'),
(110566, 'https://ror.org/053v53919', 'en', 1, 'https://ror.org/053v53919 AGRF Ltd'),
(110567, 'https://ror.org/04c5b8z55', 'en', 1, 'https://ror.org/04c5b8z55 Biomedicine Research Institute of Buenos Aires - CONICET - Partner Institute of the Max Planck Society Instituto de Investigación en Biomedicina de Buenos Aires - Instituto Partner de la Sociedad Max Planck'),
(110568, 'https://ror.org/05cnrsb60', 'tr', 1, 'https://ror.org/05cnrsb60 Urban Policies and Research Center (ŞURA) Şura Kent Politikaları ve Araştırmaları Merkezi'),
(110569, 'https://ror.org/01wc6sh26', 'fr', 1, 'https://ror.org/01wc6sh26 Risques cliniques et sƩcuritƩ en santƩ des femmes et en santƩ pƩrinatale'),
(110570, 'https://ror.org/004bvj338', 'en', 1, 'https://ror.org/004bvj338 Ahalia School of Engineering and Technology'),
(110571, 'https://ror.org/052ygfd66', 'no_lang_code', 1, 'https://ror.org/052ygfd66 Zimbabwe Ezekiel Guti University'),
(110572, 'https://ror.org/03hjgt059', 'en', 1, 'https://ror.org/03hjgt059 Barcelona Institute for Global Health Institut de Salut Global de Barcelona Instituto de Salud Global de Barcelona'),
(110573, 'https://ror.org/04t7xwd76', 'es', 1, 'https://ror.org/04t7xwd76 Fundación para la Investigación Aplicada en Delincuencia y Seguridad'),
(110574, 'https://ror.org/00ah32k04', 'fr', 1, 'https://ror.org/00ah32k04 Laboratoire d''Ɖlectronique, Antennes et TĆ©lĆ©communications'),
(110575, 'https://ror.org/00dacp034', 'fr', 1, 'https://ror.org/00dacp034 Conservatoire d''espaces naturels d''Occitanie'),
(110576, 'https://ror.org/030za3c40', 'fr', 1, 'https://ror.org/030za3c40 Laboratoire des SystĆØmes Perceptifs'),
(110577, 'https://ror.org/053rcsq61', 'en', 1, 'https://ror.org/053rcsq61 Academy of Scientific and Innovative Research'),
(110578, 'https://ror.org/00rs6n938', 'no_lang_code', 1, 'https://ror.org/00rs6n938 Lockheed Martin (Canada)'),
(110579, 'https://ror.org/05dk86115', 'en', 1, 'https://ror.org/05dk86115 Fisheries Research Institute'),
(110580, 'https://ror.org/00gj33s30', 'fr', 1, 'https://ror.org/00gj33s30 Institut de Chimie et Biochimie MolƩculaires et SupramolƩculaires'),
(110581, 'https://ror.org/019v4c279', 'en', 1, 'https://ror.org/019v4c279 Finnish Statistical Society Statistiska Samfundet i Finland Suomen Tilastoseura'),
(110582, 'https://ror.org/023dk5t32', 'en', 1, 'https://ror.org/023dk5t32 Bangladesh National Herbarium বাংলাদেশ ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² হারবেরিয়াম'),
(110583, 'https://ror.org/00rz4ps57', 'id', 1, 'https://ror.org/00rz4ps57 Institut Agama Islam An-Nawawi Purworejo'),
(110584, 'https://ror.org/05xc5re08', 'en', 1, 'https://ror.org/05xc5re08 Birbal Sahni Institute of Palaeosciences ą¤¬ą„€ą¤°ą¤¬ą¤² ą¤øą¤¾ą¤¹ą¤Øą„€ ą¤Ŗą„ą¤°ą¤¾ą¤µą¤Øą¤øą„ą¤Ŗą¤¤ą¤æą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®ŖąÆ€ą®°ąÆą®Ŗą®¾ą®²ąÆ ą®šą®•ą®¾ą®©ą®æ ą®¤ąÆŠą®²ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(110585, 'https://ror.org/00gbmjg44', 'pt', 0, 'https://ror.org/00gbmjg44 Museu Nacional de História Natural e Ciência'),
(110586, 'https://ror.org/00jc2kb84', 'en', 1, 'https://ror.org/00jc2kb84 Spectrum International University College'),
(110587, 'https://ror.org/030jm0n16', 'fr', 1, 'https://ror.org/030jm0n16 Proche-Orient, Caucase : Langues, ArchƩologie, Cultures'),
(110588, 'https://ror.org/05bqmrg42', 'no_lang_code', 1, 'https://ror.org/05bqmrg42 Shandong Energy Group Xibei Mining Co., Ltd Shandong Energy Group Xibei Mining Co., Ltd (China) å±±äøœčƒ½ęŗé›†å›¢č„æåŒ—ēŸæäøšęœ‰é™å…¬åø'),
(110589, 'https://ror.org/02e0y3b12', 'en', 1, 'https://ror.org/02e0y3b12 JKK Munirajah Institute of Health Sciences College of Pharmacy'),
(110590, 'https://ror.org/04ycq3x09', 'en', 1, 'https://ror.org/04ycq3x09 Finnish Political Science Association (FPSA) Statsvetenskapliga fƶreningen Valtiotieteellinen yhdistys'),
(110591, 'https://ror.org/02n86gn18', 'es', 1, 'https://ror.org/02n86gn18 Instituto de Mediación de México'),
(110592, 'https://ror.org/00jxb8k91', 'en', 1, 'https://ror.org/00jxb8k91 Agricultural Plant Physiology and Ecology Research Institute Instituto de Investigaciones Fisiológicas y Ecológicas Vinculadas a la Agricultura'),
(110593, 'https://ror.org/018vqs433', 'tr', 1, 'https://ror.org/018vqs433 Antalya Şehi̇r Hastanesi̇'),
(110594, 'https://ror.org/05mzhke23', 'en', 1, 'https://ror.org/05mzhke23 Kansai Institute for Photon Science é–¢č„æå…‰é‡å­ē§‘å­¦ē ”ē©¶ę‰€'),
(110595, 'https://ror.org/03br1wy20', 'fr', 1, 'https://ror.org/03br1wy20 Institut Fresnel'),
(110596, 'https://ror.org/01j78b619', 'en', 1, 'https://ror.org/01j78b619 Post Graduate Institute of Medicine, University of Colombo, Sri Lanka'),
(110597, 'https://ror.org/02e9b4021', 'en', 1, 'https://ror.org/02e9b4021 Finnish American Studies Association (FASA) Suomen Yhdysvaltain tutkimuksen seura ry'),
(110598, 'https://ror.org/05r5kfz11', 'en', 1, 'https://ror.org/05r5kfz11 Upper Skagit Indian Tribe'),
(110599, 'https://ror.org/04kwf6b96', 'es', 1, 'https://ror.org/04kwf6b96 Centro MƩdico Sanitas Costa Rica Sanitas Costa Rica Medical Centre'),
(110600, 'https://ror.org/01anspy44', 'en', 1, 'https://ror.org/01anspy44 Namibian Chamber of Environment'),
(110601, 'https://ror.org/02wgtm643', 'fr', 1, 'https://ror.org/02wgtm643 Centre de Recherche en ArchƩologie, ArchƩosciences, Histoire'),
(110602, 'https://ror.org/04asck240', 'en', 1, 'https://ror.org/04asck240 Inonu University İnönü Üniversitesi'),
(110603, 'https://ror.org/01xta2p78', 'fr', 1, 'https://ror.org/01xta2p78 Data and algorithms for an intelligent and sustainable city DonnƩes et algorithmes pour une ville intelligente et durable'),
(110604, 'https://ror.org/00b8afy92', 'fr', 1, 'https://ror.org/00b8afy92 UniversitƩ PrivƩe de Ouagadougou'),
(110605, 'https://ror.org/03n91q085', 'fr', 1, 'https://ror.org/03n91q085 Centre d''Etudes et de Recherches Administratives, Politiques et Sociales Lille Center for European Research on Administration, Politics and Society'),
(110606, 'https://ror.org/03xhhjj50', 'en', 1, 'https://ror.org/03xhhjj50 Parents International'),
(110607, 'https://ror.org/03561aw17', 'es', 1, 'https://ror.org/03561aw17 ClĆ­nica Santa SofĆ­a'),
(110608, 'https://ror.org/03s877y45', 'fr', 1, 'https://ror.org/03s877y45 Chimie du Solide et Energie Solid State Chemistry And Energy Lab'),
(110609, 'https://ror.org/00ygmry26', 'en', 0, 'https://ror.org/00ygmry26 Cluster of Excellence "Inflammation at Interfaces" Exzellenzclusters Entzündungsforschung'),
(110610, 'https://ror.org/05jmtyh46', 'es', 1, 'https://ror.org/05jmtyh46 Hospital Provincial Universitario Cardiocentro Ernesto Guevara'),
(110611, 'https://ror.org/05qb4e256', 'en', 1, 'https://ror.org/05qb4e256 Finnish Society for Science Fiction and Fantasy Research Suomen science fiction- ja fantasiatutkimuksen seura ry'),
(110612, 'https://ror.org/03kk0na15', 'en', 1, 'https://ror.org/03kk0na15 Biaka University Institute of Buea'),
(110613, 'https://ror.org/05wb5sh61', 'en', 1, 'https://ror.org/05wb5sh61 Luther-Agricola Society Luther-Agricola-Gesellschaft Luther-Agricola-Seura Luther-Agricola-sƤllskapet'),
(110614, 'https://ror.org/02f4mhw47', 'pt', 1, 'https://ror.org/02f4mhw47 Unidade Local de SaĆŗde do Litoral Alentejano'),
(110615, 'https://ror.org/03hhba993', 'en', 1, 'https://ror.org/03hhba993 Finlands Byggnadsingenjƶrsfƶrbund RIL Finnish Association of Civil Engineers RIL Suomen Rakennusinsinƶƶrien Liitto RIL Verband Finnischer Bauingenieure RIL'),
(110616, 'https://ror.org/058c1vz16', 'en', 1, 'https://ror.org/058c1vz16 Acoustical Society of Finland Akustinen Seura Akustiska SƤllskapet'),
(110617, 'https://ror.org/048kh8m41', 'en', 1, 'https://ror.org/048kh8m41 Foundation of the Finnish Institute at Athens Stiftelsen fƶr Finlands Atheninstitut Suomen Ateenan-instituutin sƤƤtiƶ To Idryma tou Finlandikou Institoutou Athenon'),
(110618, 'https://ror.org/04dzkeq78', 'en', 1, 'https://ror.org/04dzkeq78 Davao del Sur State College'),
(110619, 'https://ror.org/00jqhs518', 'en', 1, 'https://ror.org/00jqhs518 Finnish Society for Tourism Research Suomen matkailututkimuksen seura ry SƤllskapet fƶr turismforskning i Finland'),
(110620, 'https://ror.org/03c0nx407', 'fr', 1, 'https://ror.org/03c0nx407 Institut de Chimie MolƩculaire de Reims Institute of Molecular Chemistry Reims'),
(110621, 'https://ror.org/052zxv878', 'en', 1, 'https://ror.org/052zxv878 FastighetsvƤrderingsfƶreningen i Finland Finnish Association for Real Estate Valuation Suomen Kiinteistƶarviointiyhdistys ry'),
(110622, 'https://ror.org/02mgw3155', 'fr', 1, 'https://ror.org/02mgw3155 Cancer Research Center of Lyon Centre de Recherche en CancƩrologie de Lyon'),
(110623, 'https://ror.org/01h66rj90', 'en', 1, 'https://ror.org/01h66rj90 University of Mashreq'),
(110624, 'https://ror.org/03b8mgm73', 'en', 1, 'https://ror.org/03b8mgm73 Finlands Forstvetenskapliga Samfund Finnish Society of Forest Science Forstwissenschaftliche Gesellschaft in Finnland Sociedad Científica Forestal de Finlandia Société Finlandaise des Sciences Forestières Suomen Metsätieteellinen Seura'),
(110625, 'https://ror.org/02cy9g557', 'fr', 1, 'https://ror.org/02cy9g557 Analyse et Traitement Informatique de la Langue FranƧaise Computer Processing and Analysis of the French Language'),
(110626, 'https://ror.org/00ngy6m35', 'en', 1, 'https://ror.org/00ngy6m35 Geodesian ja fotogrammetrian seura The Finnish Society of Geodesy and Photogrammetry'),
(110627, 'https://ror.org/04z941k25', 'en', 1, 'https://ror.org/04z941k25 School of Sex Therapy'),
(110628, 'https://ror.org/00whjrr70', 'en', 1, 'https://ror.org/00whjrr70 Bildungswerk der Wirtschaft Hamburg Education and Training Service for Hamburg Businesses'),
(110629, 'https://ror.org/00hbz7e82', 'en', 1, 'https://ror.org/00hbz7e82 Nanogeios Laboratory Nanogeios Laboratory (United States)'),
(110630, 'https://ror.org/043b2ny75', 'fi', 1, 'https://ror.org/043b2ny75 Fƶreningen Granskaren r.f.'),
(110631, 'https://ror.org/03tbwrd56', 'en', 1, 'https://ror.org/03tbwrd56 Zo Indigenous Forum'),
(110632, 'https://ror.org/05hyx5a17', 'fr', 1, 'https://ror.org/05hyx5a17 Laboratoire de GĆ©nie Ɖlectrique de Grenoble'),
(110633, 'https://ror.org/00an8nd29', 'en', 1, 'https://ror.org/00an8nd29 Association Finlandaise du BƩton Betongfƶreningen i Finland Concrete Association of Finland Finnischer Betonverein Suomen Betoniyhdistys'),
(110634, 'https://ror.org/00s4fex77', 'fr', 1, 'https://ror.org/00s4fex77 Laboratoire de recherche en Management'),
(110635, 'https://ror.org/03njrcx45', 'fr', 1, 'https://ror.org/03njrcx45 Laboratoire de Biologie et Pharmacologie AppliquƩe'),
(110636, 'https://ror.org/052q3p191', 'en', 1, 'https://ror.org/052q3p191 Shakarim University Шәкәрім ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–Š½Ń–Ņ£'),
(110637, 'https://ror.org/02g0e3a49', 'fr', 1, 'https://ror.org/02g0e3a49 Ecole de santƩ publique de Kinshasa Kinshasa School of Public Health'),
(110638, 'https://ror.org/03f9g6r02', 'en', 1, 'https://ror.org/03f9g6r02 Scientific Society for Vegetarian Nutrition SSNV APS'),
(110639, 'https://ror.org/00yfbr841', 'fr', 1, 'https://ror.org/00yfbr841 HƓpital Armand-Trousseau'),
(110640, 'https://ror.org/03bzks091', 'en', 1, 'https://ror.org/03bzks091 Agenla Academy'),
(110641, 'https://ror.org/00h2ac426', 'en', 1, 'https://ror.org/00h2ac426 Higher Institute of Engineering and Technology, Kafrelsheikh المعهد العالى للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ بكفر Ų§Ł„Ų“ŁŠŲ®'),
(110642, 'https://ror.org/03rejdd20', 'es', 1, 'https://ror.org/03rejdd20 Instituto de Investigaciones JurĆ­dicas y Sociales Ambrosio L. Gioja'),
(110643, 'https://ror.org/02gfys938', 'en', 1, 'https://ror.org/02gfys938 University of Manitoba UniversitƩ du manitoba'),
(110644, 'https://ror.org/01gr0mj11', 'en', 1, 'https://ror.org/01gr0mj11 Mineralogical Society of Finland Mineralogiska SƤllskapet i Finland Suomen Mineraloginen Seura'),
(110645, 'https://ror.org/05gdngf21', 'pt', 1, 'https://ror.org/05gdngf21 Kimpa Vita University Universidade Kimpa Vita'),
(110646, 'https://ror.org/03a9gd656', 'fr', 1, 'https://ror.org/03a9gd656 Institut des MolƩcules et MatƩriaux du Mans'),
(110647, 'https://ror.org/02yns5j97', 'en', 1, 'https://ror.org/02yns5j97 Society of Antiquaries'),
(110648, 'https://ror.org/05nnsb240', 'es', 1, 'https://ror.org/05nnsb240 El Colegio del Estado de Hidalgo'),
(110649, 'https://ror.org/021g7jh80', 'pt', 1, 'https://ror.org/021g7jh80 Associação Nacional de Estudos em Empreendedorismo e Gestão de Pequenas Empresas'),
(110650, 'https://ror.org/03sv5kk82', 'fr', 1, 'https://ror.org/03sv5kk82 Migrations Internationales, Espace Espaces et SociƩtƩs'),
(110651, 'https://ror.org/054see995', 'en', 1, 'https://ror.org/054see995 Łukasiewicz - Poznański Instytut Technologiczny Łukasiewicz Research Network - Poznań Institute of Technology'),
(110652, 'https://ror.org/02npt7q41', 'en', 1, 'https://ror.org/02npt7q41 BindvƤvsforskare Finnish Connective Tissue Society Sidekudostutkijat'),
(110653, 'https://ror.org/02vkhvb24', 'id', 1, 'https://ror.org/02vkhvb24 IKIP PGRI Kalimantan Timur Institut Keguruan dan Ilmu Pendidikan PGRI Kaltim'),
(110654, 'https://ror.org/01x6zrv65', 'en', 1, 'https://ror.org/01x6zrv65 Taiwan AI Labs å°ē£äŗŗå·„ę™ŗę…§åÆ¦é©—å®¤'),
(110655, 'https://ror.org/02xa2sh69', 'no', 0, 'https://ror.org/02xa2sh69 HƄlogaland Kraft'),
(110656, 'https://ror.org/02c3rje24', 'es', 1, 'https://ror.org/02c3rje24 Centro de Estudios Justo Sierra'),
(110657, 'https://ror.org/02wmzkm85', 'en', 1, 'https://ror.org/02wmzkm85 Historical Association of Northern Karelia Pohjois-Karjalan historiallinen yhdistys'),
(110658, 'https://ror.org/00mdx2x22', 'fr', 1, 'https://ror.org/00mdx2x22 Laboratoire Printemps'),
(110659, 'https://ror.org/05r0mw364', 'fr', 1, 'https://ror.org/05r0mw364 Biomarqueurs et essais cliniques en CancƩrologie et Onco-HƩmatologie'),
(110660, 'https://ror.org/01td3kv81', 'fr', 1, 'https://ror.org/01td3kv81 Institut de Recherche sur le Cancer et le Vieillissement de Nice Institute of Research on Cancer and Aging in Nice'),
(110661, 'https://ror.org/049j1tf72', 'en', 0, 'https://ror.org/049j1tf72 Badan Tenaga Nuklir Nasional National Nuclear Energy Agency of Indonesia'),
(110662, 'https://ror.org/03rsftq16', 'en', 1, 'https://ror.org/03rsftq16 Elintarviketieteiden Seura Finnish Society of Food Science and Technology'),
(110663, 'https://ror.org/012nkbb42', 'en', 1, 'https://ror.org/012nkbb42 St Vincent''s Health'),
(110664, 'https://ror.org/057axh226', 'fr', 1, 'https://ror.org/057axh226 Laboratoire de Recherche Hydrodynamique, EnergƩtique et Environnement AtmosphƩrique'),
(110665, 'https://ror.org/008300504', 'en', 1, 'https://ror.org/008300504 Finlands sƤllskap fƶr avantgarde och modernism Finnish Association for Modernism and Avant-garde (FAM) La SociĆ©tĆ© finlandaise d’étude de l’avantgarde et du modernisme Suomen avantgarden ja modernismin seura'),
(110666, 'https://ror.org/00zazm316', 'en', 1, 'https://ror.org/00zazm316 OSCE Academy'),
(110667, 'https://ror.org/00jsv7j98', 'en', 1, 'https://ror.org/00jsv7j98 Electrophysiology and Heart Modeling Institute L’Institut de Rythmologie et ModĆ©lisation Cardiaque'),
(110668, 'https://ror.org/003mz1d41', 'en', 1, 'https://ror.org/003mz1d41 Hungarian Young Academy'),
(110669, 'https://ror.org/05ppf7q77', 'fr', 1, 'https://ror.org/05ppf7q77 Laboratoire atmosphĆØres, milieux, observations spatiales'),
(110670, 'https://ror.org/02sj34732', 'en', 1, 'https://ror.org/02sj34732 African Regional Institute for Geospatial Information Science and Technology'),
(110671, 'https://ror.org/008sahv08', 'tr', 1, 'https://ror.org/008sahv08 Doğu Akdeniz Geçit Kuşağı Tarımsal Araştırma Enstitüsü East Mediterranean Transitional Zone Agricultural Research of Institute'),
(110672, 'https://ror.org/00v6y6p60', 'en', 1, 'https://ror.org/00v6y6p60 Wood Science and Technology Centre'),
(110673, 'https://ror.org/04s7p2s02', 'en', 1, 'https://ror.org/04s7p2s02 New Zealand Police Nga Pirihimana O Aotearoa'),
(110674, 'https://ror.org/02vb91604', 'en', 1, 'https://ror.org/02vb91604 Agrikulturwissenschaftliche Gesellschaft in Finnland Lantbruksvetenskapliga Samfundet i Finland Scientific Agricultural Society of Finland Suomen Maataloustieteellinen Seura'),
(110675, 'https://ror.org/056mxwx29', 'fr', 0, 'https://ror.org/056mxwx29 CATI'),
(110676, 'https://ror.org/03xh9nq73', 'en', 1, 'https://ror.org/03xh9nq73 Leibniz Institute for Baltic Sea Research Warnemünde Leibniz-Institut für Ostseeforschung Warnemünde'),
(110677, 'https://ror.org/00m415573', 'en', 1, 'https://ror.org/00m415573 ALTERITAS'),
(110678, 'https://ror.org/046ctqk05', 'en', 1, 'https://ror.org/046ctqk05 Association historique de Turku Historischen Vereinigung zu Turku Historiska fƶreningen i ƅbo Turku Historical Society Turu ajalooline ühing Turun Historiallinen Yhdistys'),
(110679, 'https://ror.org/0445j8v47', 'en', 1, 'https://ror.org/0445j8v47 Parque Nacional de Yosemite Yosemite National Park'),
(110680, 'https://ror.org/024gb9b66', 'en', 1, 'https://ror.org/024gb9b66 Federal University of Technology Ikot Abasi'),
(110681, 'https://ror.org/058tw4f12', 'en', 1, 'https://ror.org/058tw4f12 International Gemini Observatory'),
(110682, 'https://ror.org/00rawf147', 'fr', 1, 'https://ror.org/00rawf147 Maison des Sciences sociales et des HumanitĆ©s - Lyon St-Ɖtienne'),
(110683, 'https://ror.org/033tx3651', 'no_lang_code', 1, 'https://ror.org/033tx3651 KAGRA KAGRA å¤§åž‹ä½Žęø©é‡åŠ›ę³¢ęœ›é é”'),
(110684, 'https://ror.org/05wnasr61', 'en', 1, 'https://ror.org/05wnasr61 Instituto Tecnológico Vale Vale Institute of Technology Vale Technological Institute'),
(110685, 'https://ror.org/020m7gh21', 'es', 1, 'https://ror.org/020m7gh21 Centro de Rehabilitación Avanzada Sanitas Hortaleza Sanitas Hortaleza Advanced Rehabilitation Centre'),
(110686, 'https://ror.org/00emejf86', 'en', 1, 'https://ror.org/00emejf86 Pattern Recognition Society of Finland Suomen hahmontunnistustutkimuksen seura'),
(110687, 'https://ror.org/02cxa6j83', 'en', 1, 'https://ror.org/02cxa6j83 Prologos ry The Finnish Association of Communication and Social Interaction'),
(110688, 'https://ror.org/02fkrfj43', 'pt', 1, 'https://ror.org/02fkrfj43 Faculdade Unida de Vitória'),
(110689, 'https://ror.org/024gts110', 'fr', 1, 'https://ror.org/024gts110 GƩosciences Montpellier'),
(110690, 'https://ror.org/01tm6cn81', 'en', 1, 'https://ror.org/01tm6cn81 Gƶteborgin yliopisto Gƶteborgs universitet University of Gothenburg'),
(110691, 'https://ror.org/007m1fk72', 'en', 1, 'https://ror.org/007m1fk72 Off-site Construction Research Centre'),
(110692, 'https://ror.org/03f5qhg45', 'fi', 1, 'https://ror.org/03f5qhg45 Fundación Iberoamericana de Finlandia Iberialais-amerikkalainen säätiö sr Iberoamerikanska stiftelsen rf'),
(110693, 'https://ror.org/05a92a023', 'de', 1, 'https://ror.org/05a92a023 Institut für Materialprüfung und Werkstofftechnik Dr. Neubert GmbH Institute for Materials Testing and Materials Technology Dr. Neubert'),
(110694, 'https://ror.org/05arnd765', 'es', 1, 'https://ror.org/05arnd765 Institución Universitaria Mayor de Cartagena'),
(110695, 'https://ror.org/032drvw38', 'en', 1, 'https://ror.org/032drvw38 Finnish Society for Ethnomusicology Finska musiketnologiska sƤllskapet Suomen Etnomusikologinen Seura'),
(110696, 'https://ror.org/05f8d4e86', 'fr', 1, 'https://ror.org/05f8d4e86 Polytechnique MontrƩal'),
(110697, 'https://ror.org/04fqvqs63', 'fr', 1, 'https://ror.org/04fqvqs63 Biologie Tissulaire et IngƩnierie ThƩrapeutique'),
(110698, 'https://ror.org/011c1jj51', 'en', 1, 'https://ror.org/011c1jj51 People''s Government of Zhejiang Province ęµ™ę±Ÿēœäŗŗę°‘ę”æåŗœ'),
(110699, 'https://ror.org/045wa9418', 'es', 1, 'https://ror.org/045wa9418 Hospital Sanitas CIMA Sanitas CIMA Hospital'),
(110700, 'https://ror.org/02cqfj858', 'en', 1, 'https://ror.org/02cqfj858 Helsingforstraktens Ornitologiska Fƶreningen Tringa Helsingin Seudun Lintutieteellinen Yhdistys Tringa Ornithological Society of Helsinki and Western Uusimaa Tringa'),
(110701, 'https://ror.org/04507cg26', 'en', 1, 'https://ror.org/04507cg26 SBU - Statens beredning fƶr medicinsk och social utvƤrdering SBU - Swedish Agency for Health Technology Assessment and Assessment of Social Services Statens beredning fƶr medicinsk och social utvƤrdering Swedish Agency for Health Technology Assessment and Assessment of Social Services'),
(110702, 'https://ror.org/00xqcey59', 'en', 1, 'https://ror.org/00xqcey59 Association Finlandaise de Linguistique AppliquƩe FinlƤndska fƶreningen fƶr tillƤmpad sprƄkvetenskap Finnish Association of Applied Linguistics Suomen soveltavan kielitieteen yhdistys AFinLA'),
(110703, 'https://ror.org/00vctdx48', 'fr', 1, 'https://ror.org/00vctdx48 ThĆ©orie Ɖconomique, ModĆ©lisation et Applications'),
(110704, 'https://ror.org/04gq34q40', 'en', 1, 'https://ror.org/04gq34q40 RAEGE-Az'),
(110705, 'https://ror.org/05mz89y65', 'es', 1, 'https://ror.org/05mz89y65 Asociación de Naturalistas del Sureste'),
(110706, 'https://ror.org/033ndcm12', 'de', 1, 'https://ror.org/033ndcm12 Bavarian State Ministry of Health, Care and Prevention Bayerisches Staatsministerium für Gesundheit, Pflege und Prävention'),
(110707, 'https://ror.org/02jv8mz69', 'en', 1, 'https://ror.org/02jv8mz69 Velayat University'),
(110708, 'https://ror.org/05jm22562', 'fr', 1, 'https://ror.org/05jm22562 Ausonius Institut de Recherche sur l''AntiquitƩ et le Moyen age'),
(110709, 'https://ror.org/01rnfhz46', 'fr', 1, 'https://ror.org/01rnfhz46 MatƩriaux IngƩnierie et Science'),
(110710, 'https://ror.org/05dbe0t82', 'fr', 1, 'https://ror.org/05dbe0t82 Immunologie - Immunopathologie - ImmunothƩrapie Immunology - Immunopathology - Immunotherapy'),
(110711, 'https://ror.org/02frv6648', 'en', 1, 'https://ror.org/02frv6648 Society of Social and Economic Research in the Universities of Turku Turun korkeakoulujen yhteiskunnallis-taloudellinen tutkimusyhdistys ƅbohƶgskolornas fƶrening fƶr social och ekonomisk forskning'),
(110712, 'https://ror.org/03aq0zp76', 'id', 1, 'https://ror.org/03aq0zp76 Sekolah Tinggi Ilmu Kesehatan Dharma Husada'),
(110713, 'https://ror.org/05srrpx28', 'fr', 1, 'https://ror.org/05srrpx28 Institut SupƩrieur des MƩtiers du Patrimoine de Tunis'),
(110714, 'https://ror.org/04tf3kx07', 'en', 1, 'https://ror.org/04tf3kx07 Astrakhan Tatischev State University Астраханский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(110715, 'https://ror.org/00ppmht14', 'es', 1, 'https://ror.org/00ppmht14 Hospital Borda Hospital Interdisciplinario Psicoasistencial JosƩ Tiburcio Borda'),
(110716, 'https://ror.org/05nsqd782', 'en', 1, 'https://ror.org/05nsqd782 Finnish Society for Humanāˆ’Animal Studies Yhteiskunnallisen ja kulttuurisen elƤintutkimuksen seura'),
(110717, 'https://ror.org/00n10g760', 'en', 1, 'https://ror.org/00n10g760 Finnische Altertumsgesellschaft Finnish Antiquarian Society Finska Fornminnesfƶreningen Suomen Muinaismuistoyhdistys'),
(110718, 'https://ror.org/00pe0tf51', 'en', 1, 'https://ror.org/00pe0tf51 Food and Agriculture Organization of the United Nations Organisation des Nations Unies pour l''Alimentation et l''Agriculture Organizzazione delle Nazioni Unite per l''Alimentazione e l''Agricoltura'),
(110719, 'https://ror.org/024t2fn03', 'es', 1, 'https://ror.org/024t2fn03 Centro MƩdico Sanitas Balmes Sanitas Balmes Medical Centre'),
(110720, 'https://ror.org/01vd60g76', 'en', 1, 'https://ror.org/01vd60g76 Geopolymer Institute'),
(110721, 'https://ror.org/028e23t32', 'en', 1, 'https://ror.org/028e23t32 Barnpsykiaterfƶreningen i Finland Finnish Society for Child and Adolescent Psychiatry Suomen Lastenpsykiatriyhdistys'),
(110722, 'https://ror.org/03padqz24', 'fr', 1, 'https://ror.org/03padqz24 Brain Plasticity laboratory Laboratoire PlasticitƩ du Cerveau'),
(110723, 'https://ror.org/00xagyq07', 'fr', 1, 'https://ror.org/00xagyq07 Institut des Sciences de la Terre de Paris'),
(110724, 'https://ror.org/04gzm4v34', 'pt', 1, 'https://ror.org/04gzm4v34 Instituto AnĆ­sio Teixeira'),
(110725, 'https://ror.org/00c1d7941', 'en', 1, 'https://ror.org/00c1d7941 Economic History Society in Finland Ekonomisk-historiska fƶreningen i Finland Suomen taloushistoriallinen yhdistys'),
(110726, 'https://ror.org/00qxbas82', 'en', 1, 'https://ror.org/00qxbas82 Historical Society of Tampere Historische Gesellschaft Tampere Tampereen Historiallinen Seura'),
(110727, 'https://ror.org/02z0jg532', 'en', 1, 'https://ror.org/02z0jg532 Finnish Patristic Society Patristiska samfundet i Finland rf Societas Patristica Fennica Suomen patristinen seura ry'),
(110728, 'https://ror.org/03ejpjn40', 'es', 1, 'https://ror.org/03ejpjn40 Universidad Intercultural de las Nacionalidades y Pueblos IndĆ­genas Amawtay Wasi'),
(110729, 'https://ror.org/05ngxmx20', 'fr', 1, 'https://ror.org/05ngxmx20 Laboratoire de GĆ©nie des ProcĆ©dĆ©s – Environnement – Agro-alimentaire Process Engineering for Environment and Food'),
(110730, 'https://ror.org/02kktyy14', 'en', 1, 'https://ror.org/02kktyy14 Environnement Organisation LEgislation'),
(110731, 'https://ror.org/05g1mh260', 'es', 1, 'https://ror.org/05g1mh260 Autonomous University of Sinaloa Universidad Autónoma de Sinaloa'),
(110732, 'https://ror.org/04hjqx874', 'en', 1, 'https://ror.org/04hjqx874 Sri Balaji University, Pune'),
(110733, 'https://ror.org/05367a632', 'fr', 1, 'https://ror.org/05367a632 Plateforme Technologique d''Innovation BiomƩdicale'),
(110734, 'https://ror.org/027953924', 'fr', 0, 'https://ror.org/027953924 AmƩnagement, DƩveloppement, Environnement, SantƩ et SociƩtƩs'),
(110735, 'https://ror.org/05bw62t06', 'en', 1, 'https://ror.org/05bw62t06 Sant Kavi Baba Baijnath Govt. PG College'),
(110736, 'https://ror.org/00vn0zc62', 'fr', 1, 'https://ror.org/00vn0zc62 GƩosciences Rennes'),
(110737, 'https://ror.org/035hzws46', 'en', 1, 'https://ror.org/035hzws46 Luxor University Ų¬Ų§Ł…Ų¹Ų© الأقصر'),
(110738, 'https://ror.org/027bs3411', 'en', 1, 'https://ror.org/027bs3411 TIDE Foundation Together In Development & Education (TIDE) Foundation'),
(110739, 'https://ror.org/04t0et613', 'en', 1, 'https://ror.org/04t0et613 Finlands vetenskapsredaktƶrers fƶrbund Finnish Association of Science Editors and Journalists (FASEJ) Suomen tiedetoimittajain liitto'),
(110740, 'https://ror.org/03mfap132', 'es', 1, 'https://ror.org/03mfap132 Centro de Rehabilitación Avanzada Sanitas Castellana Sanitas Castellana Advanced Rehabilitation Centre'),
(110741, 'https://ror.org/0142f0814', 'en', 1, 'https://ror.org/0142f0814 Finnish Association of Mathematics and Science Education Research Matematiikan ja luonnontieteiden opetuksen tutkimusseura'),
(110742, 'https://ror.org/01dcjsf07', 'en', 1, 'https://ror.org/01dcjsf07 Federal Capital Territory Administration'),
(110743, 'https://ror.org/05dx9q607', 'en', 1, 'https://ror.org/05dx9q607 Andean Road Countries for Science and Technology'),
(110744, 'https://ror.org/05v48bz32', 'it', 1, 'https://ror.org/05v48bz32 Ospedale di Prato Santo Stefano'),
(110745, 'https://ror.org/00ehj1e38', 'en', 1, 'https://ror.org/00ehj1e38 Azzaytuna University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų©'),
(110746, 'https://ror.org/036wzr887', 'en', 1, 'https://ror.org/036wzr887 Finnish Society of Chemical Engineers Kemiallisteknillinen Yhdistys Kemisktekniska Fƶreningen'),
(110747, 'https://ror.org/00efsvy35', 'en', 1, 'https://ror.org/00efsvy35 Materials Research Center Materials Research Center (Ukraine)'),
(110748, 'https://ror.org/00nzqgm49', 'fr', 1, 'https://ror.org/00nzqgm49 UniversitƩ Catholique de l''Afrique de l''Ouest - UnitƩ Universitaire de Bobo Dioulasso'),
(110749, 'https://ror.org/02bwf1062', 'en', 1, 'https://ror.org/02bwf1062 Eurooppaoikeuden yhdistys European Law Association (in Finland), FIDE Finland Fƶreningen fƶr EuroparƤtt'),
(110750, 'https://ror.org/04gt8an83', 'en', 1, 'https://ror.org/04gt8an83 Thakur College of Engineering and Technology'),
(110751, 'https://ror.org/02jfggg09', 'en', 1, 'https://ror.org/02jfggg09 St. Xavier’s College of Management & Technology'),
(110752, 'https://ror.org/05rrz2q74', 'en', 1, 'https://ror.org/05rrz2q74 University of Kinshasa UniversitƩ de Kinshasa'),
(110753, 'https://ror.org/03ay63490', 'en', 1, 'https://ror.org/03ay63490 ForestAction Nepal'),
(110754, 'https://ror.org/03k9wer31', 'fr', 1, 'https://ror.org/03k9wer31 PhysicoChimie des Processus de Combustion et de l''AtmosphĆØre'),
(110755, 'https://ror.org/02fvcqy63', 'en', 1, 'https://ror.org/02fvcqy63 Finnish Artificial Intelligence Society (FAIS) Suomen TekoƤlyseura (STeS)'),
(110756, 'https://ror.org/04d06rs29', 'en', 1, 'https://ror.org/04d06rs29 Burkhart Research Institute for Orthopaedics'),
(110757, 'https://ror.org/04s73kb35', 'en', 1, 'https://ror.org/04s73kb35 Finnish Inverse Problems Society (FIPS) Suomen Inversioseura'),
(110758, 'https://ror.org/03maf3k43', 'en', 1, 'https://ror.org/03maf3k43 Indoc Research'),
(110759, 'https://ror.org/01h81ha55', 'en', 1, 'https://ror.org/01h81ha55 Assotsiatsija slavistov Finljandii Finlands Slavistkrets Society of Finnish Slavists Suomen Slavistipiiri'),
(110760, 'https://ror.org/05s40xr45', 'en', 1, 'https://ror.org/05s40xr45 Finnish Death Studies Association Suomalaisen Kuolemantutkimuksen Seura ry SƤllskapet fƶr FinlƤndsk Dƶdsforskning'),
(110761, 'https://ror.org/0308ygr94', 'en', 1, 'https://ror.org/0308ygr94 Finnish Society of Church History Finska kyrkohistoriska samfundetnische Gesellschaft für Kirchengeschichte Societas Historiae Ecclesiasticae Fennica Suomen kirkkohistoriallinen seura'),
(110762, 'https://ror.org/04c5kct39', 'es', 1, 'https://ror.org/04c5kct39 Universidad Francisco de Paula Santander Seccional OcaƱa'),
(110763, 'https://ror.org/022kmmb78', 'es', 1, 'https://ror.org/022kmmb78 San Marcos University Universidad San Marcos'),
(110764, 'https://ror.org/02wycgj20', 'fr', 0, 'https://ror.org/02wycgj20 Molécules d''Intérêt Biologique'),
(110765, 'https://ror.org/02958f780', 'en', 1, 'https://ror.org/02958f780 Early Childhood Education Association Finland Suomen Varhaiskasvatus ry'),
(110766, 'https://ror.org/036eg1q44', 'fr', 1, 'https://ror.org/036eg1q44 Institut de Recherche en Infectiologie de Montpellier');
INSERT INTO `rors` VALUES
(110767, 'https://ror.org/059prtx18', 'en', 1, 'https://ror.org/059prtx18 Kolegji Universitar LOGOS LOGOS University College'),
(110768, 'https://ror.org/02wy8nb15', 'es', 1, 'https://ror.org/02wy8nb15 Centro MƩdico Sanitas Conde Duque Sanitas Conde Duque Medical Centre'),
(110769, 'https://ror.org/01evzkn27', 'pt', 1, 'https://ror.org/01evzkn27 Fundación Getulio Vargas Fundação Getulio Vargas Getúlio Vargas Foundation'),
(110770, 'https://ror.org/01hcc6p91', 'fr', 1, 'https://ror.org/01hcc6p91 Laboratoire d''Ingénierie des Systèmes de Versailles'),
(110771, 'https://ror.org/02yrq3150', 'en', 1, 'https://ror.org/02yrq3150 Institute of Buddhist Studies ä»ę•™å¤§å­¦é™¢'),
(110772, 'https://ror.org/005epk420', 'en', 1, 'https://ror.org/005epk420 National Space Research and Development Agency'),
(110773, 'https://ror.org/022nh3q37', 'en', 1, 'https://ror.org/022nh3q37 Finnish International Studies Association (FISA) Fƶreningen fƶr internationella studier KansainvƤlisten suhteiden tutkimuksen seura (KATSE) ry'),
(110774, 'https://ror.org/013r0qk51', 'tr', 1, 'https://ror.org/013r0qk51 Ordu Büyükşehir Belediyesi'),
(110775, 'https://ror.org/008rywf59', 'fr', 1, 'https://ror.org/008rywf59 Centre d''Ɖcologie Fonctionnelle et Ɖvolutive'),
(110776, 'https://ror.org/00c65ad46', 'tr', 1, 'https://ror.org/00c65ad46 SUASIS SUASIS (Turkey) Sualtı Sistemleri Teknoloji Gel. San. Tic. Ltd. Şti. (SUASIS)'),
(110777, 'https://ror.org/05n21n105', 'fr', 1, 'https://ror.org/05n21n105 UnitƩ de MathƩmatiques Pures et AppliquƩes'),
(110778, 'https://ror.org/00t3r8h32', 'en', 1, 'https://ror.org/00t3r8h32 University of Lübeck Universität zu Lübeck'),
(110779, 'https://ror.org/02ktdea20', 'es', 1, 'https://ror.org/02ktdea20 Facultad Latinoamericana de Ciencias Sociales Programa Paraguay'),
(110780, 'https://ror.org/00cexft48', 'en', 1, 'https://ror.org/00cexft48 Biostatistiska Fƶreningen i Finland Finnish Society of Biostatistics Suomen Biostatistiikan Seura'),
(110781, 'https://ror.org/00ts9ac78', 'en', 1, 'https://ror.org/00ts9ac78 East Africa Star University'),
(110782, 'https://ror.org/00fvf0r45', 'en', 1, 'https://ror.org/00fvf0r45 Archaeological Society of Finland Arkeologiska sƤllskapet i Finland Finnische archƤologische Gesellschaft Suomen Arkeologinen Seura'),
(110783, 'https://ror.org/0178pey68', 'en', 1, 'https://ror.org/0178pey68 Finnish Society for Medical Physics and Medical Engineering (FSMPME) Fƶrening fƶr medicinsk fysik och teknik i Finland LƤƤketieteellisen fysiikan ja tekniikan yhdistys (LFTY)'),
(110784, 'https://ror.org/00mc9k596', 'id', 1, 'https://ror.org/00mc9k596 Safin Pati University Universitas Safin Pati'),
(110785, 'https://ror.org/010xy3m51', 'en', 1, 'https://ror.org/010xy3m51 Universidad de Piura University of Piura'),
(110786, 'https://ror.org/03nr5t347', 'fi', 1, 'https://ror.org/03nr5t347 Nordiskt vƤgforum (NVF), finska avdelningen Pohjoismaiden tie- ja liikennefoorumi (PTL), Suomen osasto'),
(110787, 'https://ror.org/055npa722', 'en', 1, 'https://ror.org/055npa722 The Karen Beasley Sea Turtle Rescue and Rehabilitation Center'),
(110788, 'https://ror.org/00dvg7y05', 'en', 1, 'https://ror.org/00dvg7y05 Boston Children''s Hospital'),
(110789, 'https://ror.org/04jpwp546', 'en', 1, 'https://ror.org/04jpwp546 Dr. P. A. Inamdar University'),
(110790, 'https://ror.org/03dhypm73', 'en', 1, 'https://ror.org/03dhypm73 Cartographic Society of Finland Suomen Kartografinen Seura'),
(110791, 'https://ror.org/02k3cxs74', 'en', 1, 'https://ror.org/02k3cxs74 St Vincents Institute of Medical Research'),
(110792, 'https://ror.org/00z0kq074', 'es', 1, 'https://ror.org/00z0kq074 Universidad Michoacana de San NicolƔs de Hidalgo'),
(110793, 'https://ror.org/01mkdkh87', 'pt', 1, 'https://ror.org/01mkdkh87 Operação Nariz Vermelho'),
(110794, 'https://ror.org/02y9nqj18', 'en', 1, 'https://ror.org/02y9nqj18 Delta State College of Education, Mosogar'),
(110795, 'https://ror.org/05d4yqg75', 'en', 1, 'https://ror.org/05d4yqg75 Finnish Society of Dairy Science Meijeritieteellinen Seura'),
(110796, 'https://ror.org/036a3f271', 'en', 1, 'https://ror.org/036a3f271 Institute for Medical Research Instituto de Investigaciones MƩdicas'),
(110797, 'https://ror.org/0291w4p60', 'no_lang_code', 1, 'https://ror.org/0291w4p60 Sony Interactive Entertainment Sony Interactive Entertainment (United States)'),
(110798, 'https://ror.org/02gkgrd84', 'en', 1, 'https://ror.org/02gkgrd84 Evgeni Kharadze Georgian National Astrophysical Observatory įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ•įƒ’įƒ”įƒœįƒ˜ ხარაძიე įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒįƒ”įƒ¢įƒ įƒįƒ¤įƒ˜įƒ–įƒ˜įƒ™įƒ£įƒ įƒ˜ įƒįƒ‘įƒ”įƒ”įƒ įƒ•įƒįƒ¢įƒįƒ įƒ˜įƒ'),
(110799, 'https://ror.org/044ggyg50', 'fr', 1, 'https://ror.org/044ggyg50 Laboratoire RhƩologie et ProcƩdƩs'),
(110800, 'https://ror.org/00ty37a62', 'en', 1, 'https://ror.org/00ty37a62 Finnish Society of Soil Sciences Finska SƤllskapet fƶr Markvetenskap Suomen MaaperƤtieteiden Seura'),
(110801, 'https://ror.org/01pmcea89', 'es', 1, 'https://ror.org/01pmcea89 Centro MƩdico Sanitas BS Boadilla Sanitas BS Boadilla Medical Centre'),
(110802, 'https://ror.org/04p68c221', 'en', 1, 'https://ror.org/04p68c221 Finnish Evaluation Society (SAYFES) Suomen Arviointiyhdistys ry'),
(110803, 'https://ror.org/002ee1685', 'de', 1, 'https://ror.org/002ee1685 Kunsthaus Graz Kunsthaus Graz GmbH'),
(110804, 'https://ror.org/01zjabs95', 'es', 1, 'https://ror.org/01zjabs95 Instituto Nacional de Medicina Legal y Ciencias Forenses'),
(110805, 'https://ror.org/00dwb8378', 'en', 1, 'https://ror.org/00dwb8378 Finlands Medicinska Radioisotopfƶrening Finnish Society of Nuclear Medicine LƤƤketieteellinen Radioisotooppiyhdistys'),
(110806, 'https://ror.org/01j6cta96', 'fr', 1, 'https://ror.org/01j6cta96 Laboratoire de Biotechnologies VƩgƩtales AppliquƩes aux Plantes Aromatiques et MƩdicinales Laboratory of Plant Biotechnologies Applied to Aromatic and Medicinal Plants'),
(110807, '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'),
(110808, 'https://ror.org/028ycv057', 'fr', 1, 'https://ror.org/028ycv057 Centre Norbert Elias'),
(110809, 'https://ror.org/04vs2tg58', 'id', 1, 'https://ror.org/04vs2tg58 Sekolah Tinggi Teologi Injili Indonesia Surabaya'),
(110810, 'https://ror.org/03x80wn88', 'en', 1, 'https://ror.org/03x80wn88 Aue-Foundation Aue-Stiftung Aue-stiftelse Aue-sƤƤtiƶ'),
(110811, 'https://ror.org/056tfkm20', 'en', 1, 'https://ror.org/056tfkm20 Brokenshire College'),
(110812, 'https://ror.org/01m444286', 'es', 1, 'https://ror.org/01m444286 Instituto de Investigaciones BiomƩdicas en Retrovirus y Sida'),
(110813, 'https://ror.org/02ry5rx37', 'en', 1, 'https://ror.org/02ry5rx37 Finnish Cognitive Linguistics Association Fƶreningen fƶr kognitiv lingvistik i Finland Suomen kognitiivisen kielentutkimuksen yhdistys FiCLA'),
(110814, 'https://ror.org/01qew8q20', 'es', 1, 'https://ror.org/01qew8q20 Center for Applied Medical Research Centro de Investigación Médica Aplicada'),
(110815, 'https://ror.org/05cgg2w42', 'en', 1, 'https://ror.org/05cgg2w42 Association for Informationstudies (AIS) Fƶreningen fƶr informationsvetenskap Informaatiotutkimuksen yhdistys (ITY)'),
(110816, 'https://ror.org/000d5zy28', 'fr', 1, 'https://ror.org/000d5zy28 Institut de Chimie Radicalaire'),
(110817, 'https://ror.org/00mryrd39', 'fr', 1, 'https://ror.org/00mryrd39 Patrimoines locaux, Environnement et Globalisation'),
(110818, 'https://ror.org/05j15gc95', 'en', 1, 'https://ror.org/05j15gc95 Finlands DjurrƤttsjurister rf Finnish Animal Rights Law Society Suomen elƤinoikeusjuristit ry'),
(110819, 'https://ror.org/046y57928', 'en', 1, 'https://ror.org/046y57928 ComitƩ finlandais de l''Association Internationale des Sciences Juridiques Finska kommittƩn fƶr International Association of Legal Science KansainvƤlisen oikeustieteiden yhdistyksen Suomen osasto r.y. The Finnish Committee for Comparative Law'),
(110820, 'https://ror.org/05e891306', 'es', 1, 'https://ror.org/05e891306 Instituto Nacional de Bellas Artes y Literatura'),
(110821, 'https://ror.org/00d81yb34', 'en', 1, 'https://ror.org/00d81yb34 Victimology Society of Serbia ViktimoloŔko DruŔtvo Srbije'),
(110822, 'https://ror.org/02rpygq27', 'en', 0, 'https://ror.org/02rpygq27 Credit Comfort'),
(110823, 'https://ror.org/05axeg038', 'hu', 1, 'https://ror.org/05axeg038 Hungarian Seed Association Vetőmag SzƶvetsĆ©g Vetőmag SzƶvetsĆ©g Szakmakƶzi Szervezet Ć©s TermĆ©ktanĆ”cs'),
(110824, 'https://ror.org/01h0a3k64', 'fr', 1, 'https://ror.org/01h0a3k64 Laboratoire de GƩnƩtique & Evolution des Populations VƩgƩtales'),
(110825, 'https://ror.org/04wz9m339', 'fr', 1, 'https://ror.org/04wz9m339 ArchĆ©ologies et Sciences de l’AntiquitĆ©'),
(110826, 'https://ror.org/02apzcx95', 'en', 1, 'https://ror.org/02apzcx95 American Islamic College Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ©'),
(110827, 'https://ror.org/049b67h23', 'pl', 1, 'https://ror.org/049b67h23 Zespół Szkół w Rzepinie'),
(110828, 'https://ror.org/00ye49w76', 'de', 1, 'https://ror.org/00ye49w76 semantics gGmbH'),
(110829, 'https://ror.org/03dsp4s22', 'en', 1, 'https://ror.org/03dsp4s22 International Thorium Molten-Salt Forum ćƒˆćƒŖć‚¦ćƒ ē†”čžå”©åŽŸå­ē‚‰'),
(110830, 'https://ror.org/05t8fqn47', 'pt', 1, 'https://ror.org/05t8fqn47 Associação Brasileira para o Estudo da Obesidade e Síndrome Metabólica'),
(110831, 'https://ror.org/01te3fg67', 'en', 1, 'https://ror.org/01te3fg67 Social Policy Association in Finland Socialpolitiska fƶreningen Sosiaalipoliittinen yhdistys'),
(110832, 'https://ror.org/021y7pv34', 'en', 1, 'https://ror.org/021y7pv34 Confluence University of Science and Technology, Osara'),
(110833, 'https://ror.org/05kwbf598', 'fr', 1, 'https://ror.org/05kwbf598 Institut pour l''avancƩe des biosciences Institute for Advanced Biosciences'),
(110834, 'https://ror.org/04pvd4f07', 'es', 1, 'https://ror.org/04pvd4f07 Instituto de Seguridad Social del Estado de MƩxico y Municipios'),
(110835, 'https://ror.org/019j4rz03', 'en', 1, 'https://ror.org/019j4rz03 Actuarial Society of Finland Finlands Aktuariefƶrening Suomen Aktuaariyhdistys ry'),
(110836, 'https://ror.org/05mbthf02', 'en', 1, 'https://ror.org/05mbthf02 Finnish Colour Association Suomen vƤriyhdistys ry (SVY)'),
(110837, 'https://ror.org/04qjkhc08', 'en', 1, 'https://ror.org/04qjkhc08 Mirpur University of Science and Technology Ł…ŪŒŲ±Ł¾ŁˆŲ± ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŲ±Ų§Ū“ سائنس اور Ł¹ŪŒŚ©Ł†ŁˆŁ„ŁˆŲ¬ŪŒ'),
(110838, 'https://ror.org/02tk26447', 'en', 1, 'https://ror.org/02tk26447 Fysikersamfundet i Finland Physical Society in Finland Suomen Fyysikkojen seura r.f.'),
(110839, 'https://ror.org/028cjvx63', 'en', 1, 'https://ror.org/028cjvx63 Philippine Atmospheric, Geophysical, and Astronomical Services Administration'),
(110840, 'https://ror.org/02xmpvg90', 'en', 1, 'https://ror.org/02xmpvg90 Institute of Polymer Chemistry and Physics Polimerlar Kimyosi va Fizikasi insitituti'),
(110841, 'https://ror.org/00t03mp68', 'id', 1, 'https://ror.org/00t03mp68 Maha Prajna Buddhist College Sekolah Tinggi Agama Buddha Maha Prajna Jakarta'),
(110842, 'https://ror.org/00vaf6k96', 'en', 1, 'https://ror.org/00vaf6k96 College of Alameda'),
(110843, 'https://ror.org/03b1ff176', 'en', 1, 'https://ror.org/03b1ff176 King Faisal University of N''Djamena'),
(110844, 'https://ror.org/04j5xdc03', 'en', 1, 'https://ror.org/04j5xdc03 Bat Conservation India Trust'),
(110845, 'https://ror.org/05n7yzd13', 'fr', 1, 'https://ror.org/05n7yzd13 HƓpital Paul-Brousse'),
(110846, 'https://ror.org/02am44w88', 'nl', 1, 'https://ror.org/02am44w88 King Baudouin Foundation Koning Boudewijnstichting'),
(110847, 'https://ror.org/0145vcx24', 'en', 1, 'https://ror.org/0145vcx24 EU Business School, Barcelona'),
(110848, 'https://ror.org/05s1rff82', 'fr', 1, 'https://ror.org/05s1rff82 Centre des Sciences du Goƻt et de l''Alimentation'),
(110849, 'https://ror.org/05r2y6w07', 'en', 1, 'https://ror.org/05r2y6w07 Egyptologiska SƤllskapet i Finland Finnish Egyptological Society SociƩtƩ d'' Egyptologie de Finlande Suomen Egyptologinen Seura'),
(110850, 'https://ror.org/03z4agd71', 'en', 1, 'https://ror.org/03z4agd71 ITCC-P4 gGmbH'),
(110851, 'https://ror.org/05py4xf09', 'en', 1, 'https://ror.org/05py4xf09 Association of Finnish Ethnologists Ethnos Finlands etnologfƶrening Ethnos Suomen etnologien yhdistys Ethnos ry'),
(110852, 'https://ror.org/03r38cy24', 'en', 1, 'https://ror.org/03r38cy24 Osaka Research Institute of Industrial Science and Technology åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§é˜Ŗē”£ę„­ęŠ€č”“ē ”ē©¶ę‰€'),
(110853, 'https://ror.org/01mzxgm71', 'fr', 1, 'https://ror.org/01mzxgm71 Dauphine Recherches en Management'),
(110854, 'https://ror.org/00cjjmc56', 'fr', 1, 'https://ror.org/00cjjmc56 ModƩlisation alƩatoire de Paris Nanterre'),
(110855, 'https://ror.org/041naj703', 'en', 1, 'https://ror.org/041naj703 Sagar Institute of Research, Technology & Science – Pharmacy'),
(110856, 'https://ror.org/003es8347', 'id', 1, 'https://ror.org/003es8347 Universitas Satya Terra Bhinneka'),
(110857, 'https://ror.org/04h30bj32', 'no_lang_code', 1, 'https://ror.org/04h30bj32 Boehringer Ingelheim (Portugal)'),
(110858, 'https://ror.org/0213rcc28', 'en', 1, 'https://ror.org/0213rcc28 Simon Fraser University'),
(110859, 'https://ror.org/03zmsge54', 'en', 1, 'https://ror.org/03zmsge54 NSF NOIRLab'),
(110860, 'https://ror.org/0039wpa60', 'en', 1, 'https://ror.org/0039wpa60 Ambedkar University Delhi ą¤…ą¤®ą„ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(110861, 'https://ror.org/04ate5z57', 'fr', 1, 'https://ror.org/04ate5z57 Laboratoire de Droit des affaires et nouvelles technologies'),
(110862, 'https://ror.org/03yvfj659', 'en', 1, 'https://ror.org/03yvfj659 IIMT College of Engineering, Greater Noida'),
(110863, 'https://ror.org/006z7v557', 'fr', 1, 'https://ror.org/006z7v557 Laboratoire d''Automatique, de MƩcanique et d''Informatique Industrielles et Humaines Laboratory of Industrial and Human Automation Control, Mechanical Engineering and Computer Science'),
(110864, 'https://ror.org/01twche52', 'es', 1, 'https://ror.org/01twche52 Centro MƩdico Sanitas Valencia Sanitas Valencia Medical Centre'),
(110865, 'https://ror.org/01kxesq83', 'fr', 1, 'https://ror.org/01kxesq83 Laboratoire de Physique Subatomique et des Technologies AssociƩes'),
(110866, 'https://ror.org/04xv7je94', 'en', 1, 'https://ror.org/04xv7je94 Alice L. Walton School of Medicine'),
(110867, 'https://ror.org/02ysd5177', 'fi', 1, 'https://ror.org/02ysd5177 JyvƤskylƤn Historiallinen Yhdistys'),
(110868, 'https://ror.org/05cvwty68', 'es', 1, 'https://ror.org/05cvwty68 Universidad Nacional Daniel AlomĆ­a Robles'),
(110869, 'https://ror.org/01y98m811', 'no_lang_code', 1, 'https://ror.org/01y98m811 HARZ Labs LLC HARZ Labs LLC (Russia)'),
(110870, 'https://ror.org/00wj36765', 'en', 1, 'https://ror.org/00wj36765 Linguistic Association of Finland SprƄkvetenskapliga fƶreningen i Finland Suomen kielitieteellinen yhdistys'),
(110871, 'https://ror.org/03bqrn397', 'de', 1, 'https://ror.org/03bqrn397 Meininger Museen'),
(110872, 'https://ror.org/00cszmj56', 'en', 1, 'https://ror.org/00cszmj56 Finnish Society for the History of Technology Tekniikan Historian Seura THS ry Teknikhistoriska Samfundet THS'),
(110873, 'https://ror.org/01cvasn76', 'en', 1, 'https://ror.org/01cvasn76 BC Children''s Hospital Research Institute'),
(110874, 'https://ror.org/0108t0k50', 'en', 1, 'https://ror.org/0108t0k50 Rwanda Forensic Institute'),
(110875, 'https://ror.org/015t08553', 'en', 1, 'https://ror.org/015t08553 KPR College of Arts Science and Research'),
(110876, 'https://ror.org/04aan8w11', 'en', 1, 'https://ror.org/04aan8w11 Kocaeli Büyükşehir Belediyesi Metropolitan Municipality of Kocaeli'),
(110877, 'https://ror.org/01amp2a31', 'en', 1, 'https://ror.org/01amp2a31 Senckenberg Biodiversity and Climate Research Centre Senckenberg BiodiversitƤt und Klima Forschungszentrum'),
(110878, 'https://ror.org/05tm1p212', 'en', 1, 'https://ror.org/05tm1p212 Institute of Oilseed Crops of the National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ олійних ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(110879, 'https://ror.org/00a5z9122', 'fr', 1, 'https://ror.org/00a5z9122 Institut Interdisciplinaire d’Anthropologie du Contemporain'),
(110880, 'https://ror.org/04rje7438', 'en', 1, 'https://ror.org/04rje7438 Indian Institute of Technology Madras, Zanzibar'),
(110881, 'https://ror.org/00ya6vp57', 'en', 1, 'https://ror.org/00ya6vp57 Enieg Oxford University Institute'),
(110882, 'https://ror.org/01ppj9r51', 'en', 1, 'https://ror.org/01ppj9r51 Gauhati University ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦—ą§ą¦Æą¦¼ą¦¾ą¦¹ą¦¾ą¦Ÿą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®•ąÆą®µą®¹ą®¾ą®¤ąÆą®¤ą®æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(110883, 'https://ror.org/00nxtmb68', 'de', 1, 'https://ror.org/00nxtmb68 Universalmuseum Joanneum'),
(110884, 'https://ror.org/04s6tej12', 'en', 1, 'https://ror.org/04s6tej12 National Eating Disorders Collaboration'),
(110885, 'https://ror.org/04pk9k962', 'en', 1, 'https://ror.org/04pk9k962 Wetsus, European Centre of Excellence for Sustainable Water Technology'),
(110886, 'https://ror.org/053hzer83', 'en', 1, 'https://ror.org/053hzer83 Institute of Population Health'),
(110887, 'https://ror.org/04rk76w86', 'en', 1, 'https://ror.org/04rk76w86 Teesta University'),
(110888, 'https://ror.org/05qw57229', 'id', 1, 'https://ror.org/05qw57229 Ma''had Aly Hasyim Asy''ari Pesantren Tebuireng'),
(110889, 'https://ror.org/02fh5m162', 'cs', 1, 'https://ror.org/02fh5m162 National Pedagogical Museum and Library of J. A. Comenius NƔrodnƭ pedagogickƩ muzeum a knihovna J. A. KomenskƩho'),
(110890, 'https://ror.org/02tqp2911', 'en', 1, 'https://ror.org/02tqp2911 Bulgarian Defence Institute "Professor Tsvetan Lazarov" Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по отбрана "ŠŸŃ€Š¾Ń„ŠµŃŠ¾Ń€ Цветан Лазаров"'),
(110891, 'https://ror.org/04m8m1253', 'no_lang_code', 1, 'https://ror.org/04m8m1253 CSC - IT Center for Science CSC - IT Center for Science (Finland) CSC – Tieteen tietotekniikan keskus oy Yhteystiedot'),
(110892, 'https://ror.org/03f44aj49', 'en', 1, 'https://ror.org/03f44aj49 Service Employees International Union'),
(110893, 'https://ror.org/00m7zca23', 'fr', 1, 'https://ror.org/00m7zca23 Science et IngƩnierie des MatƩriaux et ProcƩdƩs'),
(110894, 'https://ror.org/00aycez97', 'fr', 1, 'https://ror.org/00aycez97 Laboratoire HydroSciences Montpellier Laboratory HydroSciences Montpellier'),
(110895, 'https://ror.org/00010f167', 'en', 1, 'https://ror.org/00010f167 Finnish Physiological Society Societas Physiologica Finlandiae Suomen Fysiologiyhdistys'),
(110896, 'https://ror.org/045rrq664', 'cs', 1, 'https://ror.org/045rrq664 Research Institute for Soil and Water Conservation Výzkumný ústav monitoringu a ochrany půdy, v. v. i.'),
(110897, 'https://ror.org/02q8ctk93', 'es', 1, 'https://ror.org/02q8ctk93 Centro MƩdico Sanitas Reina Victoria Sanitas Reina Victoria Medical Centre'),
(110898, 'https://ror.org/02xtv7020', 'en', 1, 'https://ror.org/02xtv7020 Finnish Society of Urban Planning Fƶreningen fƶr samhƤllsplanering Yhdyskuntasuunnittelun seura'),
(110899, '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'),
(110900, 'https://ror.org/003ct2653', 'es', 1, 'https://ror.org/003ct2653 Centro de Ingeniería Ambiental de Camagüey'),
(110901, 'https://ror.org/04mz2ws95', 'en', 1, 'https://ror.org/04mz2ws95 Suomen Lihavuustutkijat ry The Finnish Association for the Study of Obesity'),
(110902, 'https://ror.org/007rrgz19', 'en', 1, 'https://ror.org/007rrgz19 Gati Shakti Vishwavidyalaya'),
(110903, 'https://ror.org/02k243t26', 'fr', 1, 'https://ror.org/02k243t26 Laboratoire physiopathologie et pharmacologie clinique de la douleur'),
(110904, 'https://ror.org/04v43tz75', 'en', 1, 'https://ror.org/04v43tz75 Finnish Sleep Research Society Finska SƶmnforskningssƤllksapet rf Suomen Unitutkimusseura ry'),
(110905, 'https://ror.org/00gh97247', 'en', 1, 'https://ror.org/00gh97247 Mighty Penguins Sled Hockey'),
(110906, 'https://ror.org/05nvmqq56', 'en', 1, 'https://ror.org/05nvmqq56 Sids Hospital and Research Center'),
(110907, 'https://ror.org/054qyrd12', 'pt', 1, 'https://ror.org/054qyrd12 Hospital Dr. NƩlio MendonƧa'),
(110908, 'https://ror.org/029zewg13', 'en', 1, 'https://ror.org/029zewg13 Dale Kietzman University'),
(110909, 'https://ror.org/00vedpd88', 'en', 1, 'https://ror.org/00vedpd88 Finnish Association for Psychedelic Research Fƶreningen fƶr psykedelisk vetenskap i Finland Psykedeelitutkimusyhdistys ry'),
(110910, 'https://ror.org/025eawp88', 'en', 1, 'https://ror.org/025eawp88 İKSAD Institute'),
(110911, 'https://ror.org/02q4res37', 'fr', 1, 'https://ror.org/02q4res37 Institut d''Ʃlectronique de microƩlectronique et de nanotechnologie Institute of Electronics, Microelectronics and Nanotechnology'),
(110912, 'https://ror.org/04nvecq41', 'fr', 1, 'https://ror.org/04nvecq41 Bondoukou University UniversitƩ de Bondoukou'),
(110913, 'https://ror.org/05jnvkm15', 'en', 1, 'https://ror.org/05jnvkm15 Parc national des Voyageurs Parque nacional Voyageurs Voyageurs National Park'),
(110914, 'https://ror.org/015agz903', 'en', 1, 'https://ror.org/015agz903 Sapien Labs'),
(110915, 'https://ror.org/00mjajb45', 'en', 1, 'https://ror.org/00mjajb45 Filosofiska Fƶreningen i Finland Philosophical Society of Finland Societas Philosophica Fennica Suomen Filosofinen Yhdistys'),
(110916, 'https://ror.org/00rp0wr34', 'en', 1, 'https://ror.org/00rp0wr34 Insurance Institute for Business & Home Safety'),
(110917, 'https://ror.org/03sdr4558', 'en', 1, 'https://ror.org/03sdr4558 Alkoholi-, huume- ja rahapelitutkimuksen seura ry The Finnish Association for Alcohol, Drug and Gambling Research'),
(110918, 'https://ror.org/047rqcm40', 'fr', 1, 'https://ror.org/047rqcm40 SoutenabilitƩ et RƩsilence'),
(110919, 'https://ror.org/03sd3yf61', 'de', 1, 'https://ror.org/03sd3yf61 Senckenberg am Meer'),
(110920, 'https://ror.org/05rqqvg04', 'en', 1, 'https://ror.org/05rqqvg04 Etnisten suhteiden ja kansainvƤlisen muuttoliikkeen tutkimuksen seura ETMU Society for the Study of Ethnic Relations and International Migration ETMU SƤllskapet fƶr forskning i etniska relationer och internationell migration ETMU'),
(110921, 'https://ror.org/059fxjr98', 'en', 1, 'https://ror.org/059fxjr98 Agata Communications Agata Communications (Spain) Agata Communications Ltd. Agata Comunicación Científica S.L.'),
(110922, 'https://ror.org/04e05my57', 'en', 1, 'https://ror.org/04e05my57 The Blyth Institute'),
(110923, 'https://ror.org/01rnnvr75', 'es', 1, 'https://ror.org/01rnnvr75 Universidad MarĆ­a Auxiliadora'),
(110924, 'https://ror.org/01y766z47', 'fr', 1, 'https://ror.org/01y766z47 Groupement de Recherche et d''Ɖtudes en Gestion d’HEC'),
(110925, 'https://ror.org/05evznf71', 'fr', 1, 'https://ror.org/05evznf71 Institut de Recherche et d''Histoire des Textes'),
(110926, 'https://ror.org/00erq5j83', 'es', 1, 'https://ror.org/00erq5j83 Laboratorio Central de Sanitas Sanitas Central Laboratory'),
(110927, 'https://ror.org/03x30hb31', 'fr', 1, 'https://ror.org/03x30hb31 Institut de Recherche en GƩnie Civil et MƩcanique'),
(110928, 'https://ror.org/02c3t1f68', 'en', 1, 'https://ror.org/02c3t1f68 FinlƤndska sƤllskapet fƶr barndomsforskning Finnish Society for Childhood Studies Lapsuudentutkimuksen seura'),
(110929, 'https://ror.org/03pnp1a74', 'fr', 1, 'https://ror.org/03pnp1a74 Laboratoire d''Analyse et de Modélisation des Systèmes pour l''Aide à la Décision Lamsade'),
(110930, 'https://ror.org/00p3wgq28', 'en', 1, 'https://ror.org/00p3wgq28 Finlands idrottshistoriska fƶrening Finnish Society for Sport History Suomen urheiluhistoriallinen seura ry'),
(110931, 'https://ror.org/02are1e81', 'en', 1, 'https://ror.org/02are1e81 Eurooppalaisen filosofian seura Society for European Philosophy'),
(110932, 'https://ror.org/031ex4j83', 'en', 1, 'https://ror.org/031ex4j83 Canadian Rivers Institute'),
(110933, 'https://ror.org/01820h958', 'id', 1, 'https://ror.org/01820h958 Sekolah Tinggi Ilmu Kesehatan Panakkukang'),
(110934, 'https://ror.org/02zteat75', 'en', 1, 'https://ror.org/02zteat75 Federal Government of Nigeria'),
(110935, 'https://ror.org/00y5gap90', 'en', 1, 'https://ror.org/00y5gap90 Musicological Society of Finland Musikvetenskapliga sƤllskapet i Finland Suomen musiikkitieteellinen seura'),
(110936, 'https://ror.org/044ey1506', 'en', 1, 'https://ror.org/044ey1506 Kirsehir Training and Research Hospital Kırşehir Eğitim ve Araştırma Hastanesi - Sağlık Bakanlığı'),
(110937, 'https://ror.org/00wwxk695', 'fr', 1, 'https://ror.org/00wwxk695 Laboratoire Analyse et ModƩlisation pour la Biologie et l''Environnement'),
(110938, 'https://ror.org/0445kkj20', 'en', 1, 'https://ror.org/0445kkj20 Kaiser Permanente Bernard J. Tyson School of Medicine'),
(110939, 'https://ror.org/005cw7x17', 'en', 1, 'https://ror.org/005cw7x17 International Institute of Clinical Sexology'),
(110940, 'https://ror.org/000063q30', 'en', 1, 'https://ror.org/000063q30 Techniques de l''Informatique et de la Microélectronique pour l''Architecture des Systèmes Intégrés Techniques of Informatics and Microelectronics for Integrated Systems Architecture'),
(110941, 'https://ror.org/050khh066', 'en', 1, 'https://ror.org/050khh066 New South Wales Department of Primary Industries'),
(110942, 'https://ror.org/01w0hda30', 'fr', 1, 'https://ror.org/01w0hda30 Laboratoire de Physique ThƩorique'),
(110943, 'https://ror.org/05hntsh16', 'en', 1, 'https://ror.org/05hntsh16 Society of Antiquaries of London'),
(110944, 'https://ror.org/00rrg2797', 'en', 1, 'https://ror.org/00rrg2797 Finlands Hypertensionsfƶrening Finnish Hypertension Society Suomen Verenpaineyhdistys'),
(110945, 'https://ror.org/04cccxk37', 'en', 1, 'https://ror.org/04cccxk37 Finnish Association for Transport Planning Föreningen för Trafikplanering Liikennesuunnittelun Seura Verein für Verkehrsplanning, Finnland'),
(110946, 'https://ror.org/05mzd8v39', 'fr', 1, 'https://ror.org/05mzd8v39 Institut Lavoisier de Versailles'),
(110947, 'https://ror.org/0462e7868', 'en', 1, 'https://ror.org/0462e7868 Finnish Association for Legal and Social Science Oikeus- ja yhteiskuntatieteellinen yhdistys RƤtts- och samhƤllsvetenskapliga fƶreningen'),
(110948, 'https://ror.org/05de0bv95', 'es', 1, 'https://ror.org/05de0bv95 Institute of Biodiversity and Applied and Experimental Biology Instituto de Biodiversidad y BiologĆ­a Experimental y Aplicada'),
(110949, 'https://ror.org/02mcpvv78', 'es', 1, 'https://ror.org/02mcpvv78 Hospital Universitario Sanitas Virgen del Mar Sanitas Virgen del Mar University Hospital'),
(110950, 'https://ror.org/01fp3d161', 'en', 1, 'https://ror.org/01fp3d161 Finnish Peace Research Association Fƶreningen fƶr fredsforskning i Finland Suomen rauhantutkimusyhdistys ry'),
(110951, 'https://ror.org/05wawjf63', 'en', 1, 'https://ror.org/05wawjf63 Baku Engineering University'),
(110952, 'https://ror.org/05kdz4d87', 'en', 1, 'https://ror.org/05kdz4d87 NHS Greater Glasgow and Clyde'),
(110953, 'https://ror.org/03tyrec74', 'en', 1, 'https://ror.org/03tyrec74 Phi Lambda Upsilon'),
(110954, 'https://ror.org/01hb6nd81', 'en', 1, 'https://ror.org/01hb6nd81 Finnish Peatland Society Societas Paludologica Fennica Suoseura ry Torvmarksfƶreningen i Finland'),
(110955, 'https://ror.org/04pmayc53', 'en', 1, 'https://ror.org/04pmayc53 Eurasian International University Евразийский ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет'),
(110956, 'https://ror.org/02d79fk15', 'en', 1, 'https://ror.org/02d79fk15 Finnische Historische Gesellschaft Finnish Historical Society Finska Historiska Samfundet Societas Historica Finlandiae Suomen Historiallinen Seura'),
(110957, 'https://ror.org/04eyc6d95', 'es', 1, 'https://ror.org/04eyc6d95 Universidad de Antofagasta University of Antofagasta'),
(110958, 'https://ror.org/05kexg904', 'en', 1, 'https://ror.org/05kexg904 International Organization Center of Academic Research International Organization Center of Academic Research (Türkiye)'),
(110959, 'https://ror.org/03b30ft17', 'en', 1, 'https://ror.org/03b30ft17 Finnish Society for Futures Studies SƤllskapet fƶr framtidsstudier Tulevaisuuden tutkimuksen seura'),
(110960, 'https://ror.org/03hva1f89', 'en', 1, 'https://ror.org/03hva1f89 Museum Odense'),
(110961, 'https://ror.org/02wtj7z45', 'en', 0, 'https://ror.org/02wtj7z45 Gemini South Observatory'),
(110962, 'https://ror.org/05gpsb578', 'en', 1, 'https://ror.org/05gpsb578 Kasvinsuojeluseura Pflanzenschutzgesellschaft in Finnland Plant Protection Society in Finland VƤxtskyddsfƶreningen i Finland'),
(110963, 'https://ror.org/02xnf3r66', 'en', 1, 'https://ror.org/02xnf3r66 Suomen Vesiyhdistys ry Vattenfƶreningen Water Association Finland'),
(110964, 'https://ror.org/02g61p297', 'en', 1, 'https://ror.org/02g61p297 Virgo'),
(110965, 'https://ror.org/03hk3vn23', 'pt', 1, 'https://ror.org/03hk3vn23 Universidade de Belas University of Belas'),
(110966, 'https://ror.org/01wjxh159', 'en', 1, 'https://ror.org/01wjxh159 Saudi ADHD Society'),
(110967, 'https://ror.org/0516swn35', 'en', 1, 'https://ror.org/0516swn35 Wilderman Medical Clinic'),
(110968, 'https://ror.org/01k1v7590', 'fr', 1, 'https://ror.org/01k1v7590 Laboratoire de MathƩmatiques Raphaƫl Salem'),
(110969, 'https://ror.org/001n7ee52', 'fr', 1, 'https://ror.org/001n7ee52 Institut de Chimie des Milieux et des MatƩriaux de Poitiers Poitiers Chemistry Institute Materials and Natural Resources'),
(110970, 'https://ror.org/05mdgee81', 'en', 1, 'https://ror.org/05mdgee81 Saad Pharmaceuticals OÜ Saad Pharmaceuticals OÜ (Estonia)'),
(110971, 'https://ror.org/04z08gp61', 'en', 1, 'https://ror.org/04z08gp61 Institute of Biomedical Engineering'),
(110972, 'https://ror.org/045ht2717', 'en', 1, 'https://ror.org/045ht2717 Dendrologian Seura Dendrologiska SƤllskapet Finnish Dendrological Society'),
(110973, 'https://ror.org/01x7tft50', 'en', 1, 'https://ror.org/01x7tft50 Ninevah University Ų¬Ų§Ł…Ų¹Ų© Ł†ŁŠŁ†ŁˆŁ‰'),
(110974, 'https://ror.org/02ddgd424', 'fr', 1, 'https://ror.org/02ddgd424 Institut universitaire sur les dƩpendances'),
(110975, 'https://ror.org/02cdzet69', 'en', 1, 'https://ror.org/02cdzet69 Federation of Finnish Learned Societies Tieteellisten seurain valtuuskunta Vetenskapliga samfundens delegation'),
(110976, 'https://ror.org/045qk7v62', 'fr', 1, 'https://ror.org/045qk7v62 Centre d''Ʃtudes et de recherches internationales de Sciences Po Sciences Po Center for International Studies'),
(110977, 'https://ror.org/05vp6rn13', 'en', 1, 'https://ror.org/05vp6rn13 Finnische Gesellschaft für Informatik Finnish Society for Computer Science Finska sällskapet för datalogi Société Finlandaise d''Informatique Tietojenkäsittelytieteen Seura'),
(110978, 'https://ror.org/03jse9f02', 'en', 1, 'https://ror.org/03jse9f02 Polyphony Digital Inc. Polyphony Digital Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒŖćƒ•ć‚©ćƒ‹ćƒ¼ćƒ»ćƒ‡ć‚øć‚æćƒ«'),
(110979, 'https://ror.org/0591js524', 'en', 1, 'https://ror.org/0591js524 Pacif Institute of Cosmology and Selfology'),
(110980, 'https://ror.org/05j1qpr59', 'en', 1, 'https://ror.org/05j1qpr59 Istanbul Medeniyet University İstanbul Medeniyet Üniversitesi'),
(110981, 'https://ror.org/02qcqwf93', 'de', 1, 'https://ror.org/02qcqwf93 Institut für Arbeitsmarkt und Berufsforschung Institut für Arbeitsmarkt- und Berufsforschung (IAB) der Bundesagentur für Arbeit (BA) Institute for Employment Research (IAB) of the Federal Employment Agency (BA)'),
(110982, 'https://ror.org/02gk6az84', 'en', 1, 'https://ror.org/02gk6az84 National Polytechnic University Institute Bamenda'),
(110983, 'https://ror.org/020ck2w23', 'en', 1, 'https://ror.org/020ck2w23 UNITE HERE'),
(110984, 'https://ror.org/023pf1n13', 'en', 1, 'https://ror.org/023pf1n13 Finnish Society for Environmental Social Science SƤllskapet fƶr samhƤllsvetenskaplig miljƶforskning i Finland Yhteiskuntatieteellisen ympƤristƶtutkimuksen seura ry'),
(110985, 'https://ror.org/05tfcfv12', 'en', 1, 'https://ror.org/05tfcfv12 Smart Data Foundry'),
(110986, 'https://ror.org/027v2y954', 'en', 1, 'https://ror.org/027v2y954 Guangdong Institute of Intelligence Science and Technology å¹æäøœēœę™ŗčƒ½ē§‘å­¦äøŽęŠ€ęœÆē ”ē©¶é™¢'),
(110987, 'https://ror.org/02pfhbd70', 'en', 1, 'https://ror.org/02pfhbd70 Bundesministerium für Landesverteidigung Federal Ministry of Defence'),
(110988, 'https://ror.org/00k5kwq11', 'en', 1, 'https://ror.org/00k5kwq11 Nordic Association of Agricultural Scientists Finland Nordiska Jordbruksforskares Fƶrening, Finska avdelningen Pohjoismaiden Maataloustutkijain Yhdistys, Suomen osasto'),
(110989, 'https://ror.org/05ad3ge41', 'en', 1, 'https://ror.org/05ad3ge41 Society of Queer Studies in Finland Suomen Queer-tutkimuksen Seura SƤllskapet fƶr queerforskning i Finland'),
(110990, 'https://ror.org/04a8vts25', 'id', 1, 'https://ror.org/04a8vts25 Universitas Katolik Musi Charitas'),
(110991, 'https://ror.org/02xg3v284', 'fr', 1, 'https://ror.org/02xg3v284 Adventist University of Goma UniversitƩ Adventiste de Goma'),
(110992, 'https://ror.org/00qm1ye08', 'fr', 1, 'https://ror.org/00qm1ye08 Centre de Mise en Forme des MatƩriaux Centre for Material Forming Mines Paris, PSL University, Centre for material forming (CEMEF) Mines Paris, UniversitƩ PSL, Centre de Mise en Forme des MatƩriaux (CEMEF)'),
(110993, 'https://ror.org/04wm9vh89', 'en', 1, 'https://ror.org/04wm9vh89 Abeda Inamdar Senior College Abeda Inamdar Senior College of Arts, Science and Commerce'),
(110994, 'https://ror.org/03h2h5e37', 'en', 1, 'https://ror.org/03h2h5e37 Finnische Karl-Marx-Gesellschaft Finnish Karl Marx Society Karl Marx -SƤllskapet i Finland Karl Marx -seura'),
(110995, 'https://ror.org/00rq7kf39', 'pt', 1, 'https://ror.org/00rq7kf39 Jose Eduardo dos Santos University Universidade JosƩ Eduardo dos Santos'),
(110996, 'https://ror.org/02fek9t68', 'en', 1, 'https://ror.org/02fek9t68 Macedonian Ecological Society МакеГонско еколошко Š“Ń€ŃƒŃˆŃ‚Š²Š¾'),
(110997, 'https://ror.org/054gwtz03', 'no_lang_code', 1, 'https://ror.org/054gwtz03 PalmElit SAS PalmElit SAS (France)'),
(110998, 'https://ror.org/0300mzg60', 'en', 1, 'https://ror.org/0300mzg60 Genomique et Physiologie Moleculaire des Maladies Metaboliques Integrated Genomics and Metabolic Diseases Modeling'),
(110999, 'https://ror.org/007sc9r91', 'fr', 1, 'https://ror.org/007sc9r91 Chimie MolƩculaire, MacromolƩculaire, MatƩriaux'),
(111000, 'https://ror.org/05jgzc896', 'en', 1, 'https://ror.org/05jgzc896 ZRx Outcomes Research Inc ZRx Outcomes Research Inc (Canada)'),
(111001, 'https://ror.org/036nxd919', 'en', 1, 'https://ror.org/036nxd919 Finnish Society for Environmental Sciences Miljƶvetenskapliga SƤllskapet YmpƤristƶtieteellinen Seura'),
(111002, 'https://ror.org/01ghvgs84', 'fr', 1, 'https://ror.org/01ghvgs84 Laboratoire Jean Perrin'),
(111003, 'https://ror.org/001jpbm58', 'en', 1, 'https://ror.org/001jpbm58 Finnish Social and Health Informatics Association Fƶrening fƶr informationsbehandling inom social- och hƤlsovƄrden Sosiaali- ja terveydenhuollon tietojenkƤsittely -yhdistys'),
(111004, 'https://ror.org/027hwsm17', 'en', 1, 'https://ror.org/027hwsm17 Kolej Universiti Islam Antarabangsa Sultan Ismail Petra Sultan Ismail Petra International Islamic University College'),
(111005, 'https://ror.org/03qej2h15', 'en', 1, 'https://ror.org/03qej2h15 Finnish Association of Consumer Research Kulutustutkimuksen Seura ry'),
(111006, 'https://ror.org/04n901w50', 'en', 1, 'https://ror.org/04n901w50 BC Children''s Hospital British Columbia Children''s Hospital'),
(111007, 'https://ror.org/04e89s906', 'fr', 1, 'https://ror.org/04e89s906 Laboratoire de Physique des Lasers, Atomes et MolƩcules'),
(111008, 'https://ror.org/02e0qz722', 'en', 1, 'https://ror.org/02e0qz722 Chiropterologiska fƶreningen i Finland rf Finnish Chiropterological Society Suomen lepakkotieteellinen yhdistys ry'),
(111009, 'https://ror.org/02h3vcz70', 'fr', 1, 'https://ror.org/02h3vcz70 Sciences Po Lyon'),
(111010, 'https://ror.org/02ne61390', 'es', 1, 'https://ror.org/02ne61390 Universidad PolitƩcnica Metropolitana de Hidalgo'),
(111011, 'https://ror.org/051y5cb26', 'en', 1, 'https://ror.org/051y5cb26 Finlands Krigsvetenskapliga Samfund Finnish Society of Military Sciences Suomen Sotatieteellinen Seura ry'),
(111012, 'https://ror.org/04jb47e97', 'fr', 1, 'https://ror.org/04jb47e97 Center for Sociological and Political Research in Paris Centre de recherches sociologiques et politiques de Paris'),
(111013, 'https://ror.org/01zprwd36', 'fr', 1, 'https://ror.org/01zprwd36 Centre d''Acquisition et de Traitement des Images'),
(111014, 'https://ror.org/03r3t2292', 'es', 1, 'https://ror.org/03r3t2292 Hospital Materno Infantil Instituto de Seguridad Social del Estado de MƩxico y Municipios Hospital Materno Infantil Instituto de Seguridad Social del Estado de MƩxico y Municipios (ISSEMyM)'),
(111015, 'https://ror.org/03yjb2x39', 'en', 1, 'https://ror.org/03yjb2x39 University of Calgary UniversitƩ de Calgary'),
(111016, 'https://ror.org/04ahbtp08', 'es', 1, 'https://ror.org/04ahbtp08 Centro de Rehabilitación Avanzada Sanitas Acacias Sanitas Paseo de las Acacias Advanced Rehabilitation Centre'),
(111017, 'https://ror.org/00hbdmd07', 'en', 1, 'https://ror.org/00hbdmd07 Mortality Research & Consulting, Inc. Mortality Research & Consulting, Inc. (United States)'),
(111018, 'https://ror.org/01v75d751', 'fr', 1, 'https://ror.org/01v75d751 Human Neurodevelopment and Disorder NeurodƩveloppement humain et pathologies associƩes'),
(111019, 'https://ror.org/01wdvvb93', 'en', 1, 'https://ror.org/01wdvvb93 Bornean Sun Bear Conservation Centre Pusat Pemuliharaan Beruang Madu Borneo'),
(111020, 'https://ror.org/01zvb3h47', 'en', 1, 'https://ror.org/01zvb3h47 Finlands fƶrsƶksdjurvetenskapliga fƶrening Finnish Laboratory Animal Science Association Suomen koe-elƤintieteen yhdistys FinLAS'),
(111021, 'https://ror.org/040f8z831', 'en', 1, 'https://ror.org/040f8z831 Hainan Institute of Grain and Oil Science ęµ·å—ēœē²®ę²¹ē§‘å­¦ē ”ē©¶ę‰€'),
(111022, 'https://ror.org/00ya7vv74', 'en', 1, 'https://ror.org/00ya7vv74 National Transport Authority'),
(111023, 'https://ror.org/04ga97v06', 'en', 1, 'https://ror.org/04ga97v06 Banana Link'),
(111024, 'https://ror.org/0367pw924', 'en', 0, 'https://ror.org/0367pw924 Lincoln College'),
(111025, 'https://ror.org/042mrsz23', 'en', 1, 'https://ror.org/042mrsz23 Bangladesh Medical University বাংলাদেশ ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(111026, 'https://ror.org/03m8p6f77', 'en', 1, 'https://ror.org/03m8p6f77 Women''s College, Silchar'),
(111027, 'https://ror.org/00k2r9g11', 'en', 1, 'https://ror.org/00k2r9g11 LeeMing Institute of Technology é»Žę˜ŽęŠ€č”“å­øé™¢'),
(111028, 'https://ror.org/02jtfca03', 'en', 1, 'https://ror.org/02jtfca03 Finnish Society for Scientific Information Forskningsinformation Tieteen tiedotus'),
(111029, 'https://ror.org/05wb8n204', 'en', 1, 'https://ror.org/05wb8n204 Society for the Study of Religion, Worldview and Education Uskonnon, katsomuksen ja kasvatuksen tutkimusseura ry'),
(111030, 'https://ror.org/00q5cbf13', 'pt', 0, 'https://ror.org/00q5cbf13 Hospital Dr. NƩlio MendonƧa'),
(111031, 'https://ror.org/00ewx5836', 'en', 1, 'https://ror.org/00ewx5836 Finnish Association for Impact Assessment Mkb (Miljƶkonsekvensbedƶmning) Yva ry (YmpƤristƶvaikutusten arviointi)'),
(111032, 'https://ror.org/01xpc6869', 'fr', 1, 'https://ror.org/01xpc6869 Centre de Recherche en Biologie cellulaire de Montpellier Centre for Biochemical and Macromolecular Research'),
(111033, 'https://ror.org/04ramkt35', 'en', 1, 'https://ror.org/04ramkt35 Ba Isago University'),
(111034, 'https://ror.org/021y79102', 'en', 1, 'https://ror.org/021y79102 Bysantin tutkimuksen seura Finnish Society for Byzantine Studies SƤllskapet fƶr bysantinsk forskning'),
(111035, 'https://ror.org/02s578v81', 'en', 1, 'https://ror.org/02s578v81 Porthan SƤllskapet Porthan-Seura'),
(111036, 'https://ror.org/004q7z165', 'en', 1, 'https://ror.org/004q7z165 New York College of Podiatric Medicine'),
(111037, 'https://ror.org/01mk1hj86', 'en', 1, 'https://ror.org/01mk1hj86 Paul Drude Institut für Festkörperelektronik Paul Drude Institute for Solid State Electronics'),
(111038, 'https://ror.org/00bdw9n86', 'en', 1, 'https://ror.org/00bdw9n86 NeuroGEARS NeuroGEARS (United Kingdom) NeuroGEARS Ltd'),
(111039, 'https://ror.org/05kns1v88', 'id', 1, 'https://ror.org/05kns1v88 Politeknik Sandi Karsa'),
(111040, 'https://ror.org/02aqxf272', 'en', 1, 'https://ror.org/02aqxf272 Mongolian University of Pharmaceutical Sciences Эм Зүйн ŠØŠøŠ½Š¶Š»ŃŃ… Ухааны Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(111041, 'https://ror.org/043749971', 'fr', 1, 'https://ror.org/043749971 GREYC'),
(111042, 'https://ror.org/04935k107', 'de', 1, 'https://ror.org/04935k107 Verein für Geschichte der Arbeiterbewegung'),
(111043, 'https://ror.org/05g84qt54', 'fi', 1, 'https://ror.org/05g84qt54 Building Information Foundation RTS Bygginformationsstiftelsen RTS RakennustietosƤƤtiƶ RTS'),
(111044, 'https://ror.org/05frz7c80', 'fi', 1, 'https://ror.org/05frz7c80 Suomen sosiaalipedagoginen seura'),
(111045, 'https://ror.org/03rqr7m89', 'en', 1, 'https://ror.org/03rqr7m89 Finnish Society for the Study of Infectious Diseases Fƶreningen fƶr infektionssjukdomsforskning Infektiotautien tutkimusyhdistys'),
(111046, 'https://ror.org/01c0q3y52', 'en', 1, 'https://ror.org/01c0q3y52 Diplomatic Academy of the Ministry of Foreign Affairs of the Kyrgyz Republic'),
(111047, 'https://ror.org/03da7zw11', 'es', 1, 'https://ror.org/03da7zw11 Centro MƩdico Sanitas MƔlaga Sanitas Malaga Medical Centre'),
(111048, 'https://ror.org/00yeap462', 'en', 1, 'https://ror.org/00yeap462 Research and Productivity Council'),
(111049, 'https://ror.org/03qvznj82', 'es', 1, 'https://ror.org/03qvznj82 Centro de Rehabilitación Avanzada Sanitas Pozuelo Sanitas Pozuelo Advanced Rehabilitation Centre'),
(111050, 'https://ror.org/01y6zzq66', 'es', 1, 'https://ror.org/01y6zzq66 Centro de Rehabilitación Avanzada Sanitas Barcelona Sanitas Barcelona Advanced Rehabilitation Centre'),
(111051, 'https://ror.org/02ny3y993', 'en', 1, 'https://ror.org/02ny3y993 Association for Gender Studies in Finland Sukupuolentutkimuksen seura SƤllskapet fƶr genusforskning (SUNS)'),
(111052, 'https://ror.org/04thk1w30', 'en', 1, 'https://ror.org/04thk1w30 Academie Finlandaise des Sciences Techniques Akademin fƶr Tekniska Vetenskaper Finnische Akademie der Technischen Wissenschaften Finnish Academy of Technology Teknillisten Tieteiden Akatemia'),
(111053, 'https://ror.org/048apet91', 'en', 1, 'https://ror.org/048apet91 Association for Progressive Policy in Finland Edistyksellinen tiedeliitto Progressiva vetenskapsfƶrbund'),
(111054, 'https://ror.org/018jssn45', 'fi', 1, 'https://ror.org/018jssn45 Deutscher Bibliotheksverein Saksalainen kirjastoyhdistys - Tyska biblioteksfƶreningen'),
(111055, 'https://ror.org/03d3h3882', 'en', 1, 'https://ror.org/03d3h3882 National Institute of Health Research, Zimbabwe'),
(111056, 'https://ror.org/02v6w2r95', 'en', 1, 'https://ror.org/02v6w2r95 California Department of Fish and Wildlife'),
(111057, 'https://ror.org/040r94546', 'fr', 1, 'https://ror.org/040r94546 Institut National du Sport du QuƩbec'),
(111058, 'https://ror.org/02ge03p30', 'en', 1, 'https://ror.org/02ge03p30 Finnish Association of Media and Communication Studies Media- ja viestintƤtieteellinen seura Mevi Samfundet fƶr medie- och kommunikationsvetenskap'),
(111059, 'https://ror.org/05nfypp21', 'fr', 1, 'https://ror.org/05nfypp21 DƩlƩgation Aquitaine'),
(111060, 'https://ror.org/0248h4s70', 'de', 1, 'https://ror.org/0248h4s70 UniversitƤts Hautklinik Kiel'),
(111061, 'https://ror.org/0141j1w94', 'en', 0, 'https://ror.org/0141j1w94 Gemini North Observatory'),
(111062, 'https://ror.org/00kzrp571', 'en', 1, 'https://ror.org/00kzrp571 University of Derna جـــامــــعـــة درنــــة'),
(111063, 'https://ror.org/038zpss69', 'de', 1, 'https://ror.org/038zpss69 Cluster Initiative Forestry and Wood in Bavaria gGmbH Cluster-Initiative Forst und Holz in Bayern gGmbH'),
(111064, 'https://ror.org/02wxx3e24', 'en', 1, 'https://ror.org/02wxx3e24 Brandenburg University of Technology Cottbus-Senftenberg Brandenburgische Technische UniversitƤt Cottbus-Senftenberg'),
(111065, 'https://ror.org/01xvsjf67', 'es', 1, 'https://ror.org/01xvsjf67 Centro de Rehabilitación Avanzada Sanitas Las Tablas Sanitas Las Tablas Advanced Rehabilitation Centre'),
(111066, 'https://ror.org/00g30e956', 'de', 1, 'https://ror.org/00g30e956 University of Hamburg UniversitƤt Hamburg'),
(111067, 'https://ror.org/032ag8k16', 'en', 1, 'https://ror.org/032ag8k16 Upstream CFD Upstream CFD (Germany) Upstream CFD GmbH'),
(111068, 'https://ror.org/000pvc513', 'fr', 1, 'https://ror.org/000pvc513 Institut de Chimie de Nice'),
(111069, 'https://ror.org/005pfhc08', 'en', 1, 'https://ror.org/005pfhc08 Senckenberg Centre for Human Evolution and Palaeoenvironment'),
(111070, 'https://ror.org/05b74sw86', 'en', 1, 'https://ror.org/05b74sw86 Research Center of Neurology ŠŠ°ŃƒŃ‡Š½Š¾Š³Š¾ центра неврологии'),
(111071, 'https://ror.org/0348f6e47', 'es', 1, 'https://ror.org/0348f6e47 Instituto de Historia Argentina y Americana "Dr. Emilio Ravignani"'),
(111072, 'https://ror.org/01z29pd22', 'pl', 1, 'https://ror.org/01z29pd22 Andrzej Kaube Regional Museum in Wolin Muzeum Regionalne im. Andrzeja Kaubego w Wolinie'),
(111073, 'https://ror.org/01feg7624', 'en', 1, 'https://ror.org/01feg7624 Fondazione Institutum Romanum Finlandiae Foundation Institutum Romanum Finlandiae Stiftelsen Institutum Romanum Finlandiae SƤƤtiƶ Institutum Romanum Finlandiae'),
(111074, 'https://ror.org/0367b3935', 'en', 1, 'https://ror.org/0367b3935 Finnish Forest History Society Gesellschaft der Finnischen Forstgeschichte MetsƤhistorian Seura Skogshistoriska SƤllskapet'),
(111075, 'https://ror.org/04vj6zn89', 'fr', 1, 'https://ror.org/04vj6zn89 Institut Sophia Agrobiotech Sophia Agrobiotech Institute'),
(111076, 'https://ror.org/029wzgz47', 'en', 1, 'https://ror.org/029wzgz47 Keros Therapeutics Keros Therapeutics (United States)'),
(111077, 'https://ror.org/0024cnj47', 'no_lang_code', 0, 'https://ror.org/0024cnj47 Boehringer Ingelheim (Portugal)'),
(111078, 'https://ror.org/03933j230', 'en', 1, 'https://ror.org/03933j230 Globiz Professional University ć‚°ćƒ­ćƒ¼ćƒćƒ«Biz専門職大学'),
(111079, 'https://ror.org/03n96hw58', 'en', 1, 'https://ror.org/03n96hw58 Daniel Alcides Carrión National University Universidad Nacional Daniel Alcides Carrión'),
(111080, 'https://ror.org/05vjdsn22', 'fr', 1, 'https://ror.org/05vjdsn22 Institut Pprime'),
(111081, 'https://ror.org/00h1wvj36', 'es', 1, 'https://ror.org/00h1wvj36 Saint Paul-T University Universidad de San Pablo-T'),
(111082, 'https://ror.org/03rdrv793', 'en', 1, 'https://ror.org/03rdrv793 CIRAIG Centre international de rĆ©fĆ©rence sur l’analyse du cycle de vie et la transition durable International Reference Center for Life Cycle Assessment and Sustainable Transition'),
(111083, 'https://ror.org/03fs3vy65', 'no_lang_code', 1, 'https://ror.org/03fs3vy65 Oncopadi Technologies Limited Oncopadi Technologies Limited (Nigeria)'),
(111084, 'https://ror.org/05r3zen25', 'fr', 1, 'https://ror.org/05r3zen25 Institut Superieur Sapientiae de Bafoussam'),
(111085, 'https://ror.org/011fm0p15', 'en', 1, 'https://ror.org/011fm0p15 Finlands Ungdomspsykiatriska fƶrening Finnish Association of Adolescent Psychiatry Suomen Nuorisopsykiatrinen yhdistys'),
(111086, 'https://ror.org/02m4bb038', 'en', 1, 'https://ror.org/02m4bb038 Islamic University of Maldives الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© في Ų¬Ų²Ų± Ų§Ł„Ł…Ų§Ł„ŲÆŁŠŁ Ž‹ŽØŽˆŽ¬Ž€ŽØŽƒŽ§Ž‡Ž°Ž–Ž­ŽŽŽ¬ Ž‡ŽØŽŽ°ŽŽ§Ž‰ŽØŽ†Ž° Ž”ŽŖŽ‚ŽØŽˆŽ¦ŽƒŽŽØŽ“Ž©'),
(111087, 'https://ror.org/047h65d05', 'en', 1, 'https://ror.org/047h65d05 RNHM – Plovdiv Regional Natural History Museum - Plovdiv Š ŠŸŠŠœ ПловГив Регионален ŠæŃ€ŠøŃ€Š¾Š“Š¾Š½Š¾Š½Š°ŃƒŃ‡ŠµŠ½ музей, ПловГив Š ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГничий музей'),
(111088, 'https://ror.org/00pybm724', 'en', 1, 'https://ror.org/00pybm724 Finska SƤllskapet fƶr Forskning om Byggd Miljƶ Rakennetun YmpƤristƶn Tutkimuksen Seura ry The Finnish Society of Built Environment Research'),
(111089, 'https://ror.org/04m8aby47', 'en', 1, 'https://ror.org/04m8aby47 Finnish Society for Labour and Social Security Law Tyƶoikeudellinen Yhdistys ry'),
(111090, 'https://ror.org/02eyebr22', 'es', 1, 'https://ror.org/02eyebr22 Consejo Colombiano de Seguridad'),
(111091, 'https://ror.org/007kjmw55', 'en', 1, 'https://ror.org/007kjmw55 Karume Institute of Science and Technology'),
(111092, 'https://ror.org/052zd4v68', 'no_lang_code', 1, 'https://ror.org/052zd4v68 Arcadia Science'),
(111093, 'https://ror.org/01x4grt62', 'fi', 1, 'https://ror.org/01x4grt62 Kriminalistfƶreningen i Finland Suomen Kriminalistiyhdistys'),
(111094, 'https://ror.org/03dxs3n54', 'en', 1, 'https://ror.org/03dxs3n54 EstiMates Oy EstiMates Oy (Finland)'),
(111095, 'https://ror.org/02k73xc41', 'en', 1, 'https://ror.org/02k73xc41 Bankim Sardar College'),
(111096, 'https://ror.org/008dy3d28', 'en', 1, 'https://ror.org/008dy3d28 Finnish Society for Development Studies Fƶreningen fƶr utvecklingsforskning Kehitystutkimuksen seura'),
(111097, 'https://ror.org/04appkh56', 'en', 1, 'https://ror.org/04appkh56 Manado State University Universitas Negeri Manado'),
(111098, 'https://ror.org/02h2x0161', 'en', 1, 'https://ror.org/02h2x0161 GEOMAR Helmholtz Centre for Ocean Research Kiel GEOMAR Helmholtz-Zentrum für Ozeanforschung Kiel'),
(111099, 'https://ror.org/018pjv878', 'en', 1, 'https://ror.org/018pjv878 National Basketball Association'),
(111100, 'https://ror.org/005san826', 'en', 1, 'https://ror.org/005san826 Finnish Association for Business Administration Fƶreningen fƶr fƶretagsekonomisk forskning Kauppatieteellinen yhdistys ry'),
(111101, 'https://ror.org/01nehnf32', 'es', 1, 'https://ror.org/01nehnf32 Centro MƩdico Sanitas Valdebebas Sanitas Valdebebas Medical Centre');
INSERT INTO `rors` VALUES
(111102, 'https://ror.org/02v9xd857', 'es', 1, 'https://ror.org/02v9xd857 Hospital Universitario Sanitas La Zarzuela Sanitas La Zarzuela University Hospital'),
(111103, 'https://ror.org/04rvw8791', 'fr', 1, 'https://ror.org/04rvw8791 Institut Ɖlie Cartan de Lorraine'),
(111104, 'https://ror.org/0573jvt10', 'pt', 1, 'https://ror.org/0573jvt10 Universidade Mandume Ya Ndemufayo'),
(111105, 'https://ror.org/03jqwsm52', 'en', 1, 'https://ror.org/03jqwsm52 Scottish Science Society'),
(111106, 'https://ror.org/0110z6e72', 'en', 1, 'https://ror.org/0110z6e72 Finnish National Section of the International Institute of Administrative Sciences Institut International des Sciences Administratives. Section finlandaise KansainvƤlisen Hallintotieteiden Instituutin Suomen osasto'),
(111107, 'https://ror.org/01cx38h52', 'id', 1, 'https://ror.org/01cx38h52 Sekolah Tinggi Ilmu Ekonomi Eka Prasetya'),
(111108, 'https://ror.org/048yzb176', 'no_lang_code', 1, 'https://ror.org/048yzb176 DAASI International (Germany)'),
(111109, 'https://ror.org/04y3taw17', 'fr', 1, 'https://ror.org/04y3taw17 UniversitƩ Polytechnique de Gitega'),
(111110, 'https://ror.org/044tvee59', 'en', 1, 'https://ror.org/044tvee59 Patriarch Athenagoras Orthodox Institute'),
(111111, 'https://ror.org/02da6vx63', 'en', 1, 'https://ror.org/02da6vx63 Finlands Fysikerfƶrening Finnish Physical Society Suomen Fyysikkoseura'),
(111112, 'https://ror.org/011494s34', 'en', 1, 'https://ror.org/011494s34 Large Synoptic Survey Telescope Corporation'),
(111113, 'https://ror.org/052hd3k14', 'en', 1, 'https://ror.org/052hd3k14 Boitekanelo College'),
(111114, 'https://ror.org/042sjvf54', 'fr', 1, 'https://ror.org/042sjvf54 Institut National de sante publique'),
(111115, 'https://ror.org/0157vf689', 'en', 1, 'https://ror.org/0157vf689 Nordenskiƶld Society in Finland Nordenskiƶld-samfundet i Finland'),
(111116, 'https://ror.org/039hsf911', 'en', 1, 'https://ror.org/039hsf911 Qinhuangdao Vocational and Technical College ē§¦ēš‡å²›čŒäøšęŠ€ęœÆå­¦é™¢'),
(111117, 'https://ror.org/0494jpz02', 'fr', 1, 'https://ror.org/0494jpz02 Centre de Recherche en CancƩrologie de Marseille'),
(111118, 'https://ror.org/0356g0571', 'en', 1, 'https://ror.org/0356g0571 Atomtekniska SƤllskapet i Finland Finnish Nuclear Society Suomen Atomiteknillinen Seura'),
(111119, 'https://ror.org/0192b6408', 'es', 1, 'https://ror.org/0192b6408 Centro MƩdico Sanitas Boreal Sanitas Boreal Medical Centre'),
(111120, 'https://ror.org/01xzez183', 'en', 1, 'https://ror.org/01xzez183 Finnish Skeptics'' Association Skepsis ry'),
(111121, 'https://ror.org/00qfnf017', 'es', 1, 'https://ror.org/00qfnf017 Colegio de Postgraduados'),
(111122, 'https://ror.org/011nqat45', 'fr', 1, 'https://ror.org/011nqat45 Centre de Recherches PƩtrographiques et GƩochimiques'),
(111123, 'https://ror.org/00sz8gn76', 'es', 1, 'https://ror.org/00sz8gn76 Centro de Rehabilitación Avanzada Sanitas Fortuny Sanitas Fortuny Advanced Rehabilitation Centre'),
(111124, 'https://ror.org/039p01270', 'fr', 1, 'https://ror.org/039p01270 Laboratoire de BiodiversitƩ et Biotechnologies Microbiennes Laboratory of Microbial Biodiversity and Biotechnology'),
(111125, 'https://ror.org/02qnhe903', 'en', 1, 'https://ror.org/02qnhe903 LƤrar- och forskarsektionen Suomen kƤƤntƤjien ja tulkkien liitto The Finnish Association of Translators and Interpreters'),
(111126, 'https://ror.org/05t6wee76', 'en', 1, 'https://ror.org/05t6wee76 EU Business School, Munich'),
(111127, 'https://ror.org/006gz9x22', 'id', 1, 'https://ror.org/006gz9x22 Sekolah Tinggi Agama Buddha Negeri Raden Wijaya Wonogiri'),
(111128, 'https://ror.org/01pa4h393', 'fr', 1, 'https://ror.org/01pa4h393 Centre de Recherche et d’Enseignement de GĆ©osciences de l’Environnement Centre for Research and Teaching in Environmental Geoscience'),
(111129, 'https://ror.org/0518wrr32', 'en', 1, 'https://ror.org/0518wrr32 LIGO Scientific Collaboration'),
(111130, 'https://ror.org/023bv6t84', 'fr', 1, 'https://ror.org/023bv6t84 Equipe de recherche paramƩdicale sur le handicap neuromoteur'),
(111131, 'https://ror.org/02tq3tn70', 'en', 1, 'https://ror.org/02tq3tn70 Institute of Hotel Management Catering Technology and Applied Nutrition, Ranchi ą¤¹ą„‹ą¤Ÿą¤² ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø खानपान ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤Ŗą„ą¤°ą¤Æą„ą¤•ą„ą¤¤ ą¤Ŗą„‹ą¤·ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤°ą¤¾ą¤‚ą¤šą„€'),
(111132, 'https://ror.org/00ebdgr24', 'en', 1, 'https://ror.org/00ebdgr24 Third People''s Hospital of Chengdu ęˆéƒ½åø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(111133, 'https://ror.org/04k3by130', 'en', 1, 'https://ror.org/04k3by130 Federal Ministry of Transportation, Nigeria'),
(111134, 'https://ror.org/01adp8v93', 'en', 1, 'https://ror.org/01adp8v93 Finnish Society of Clinical Pharmacology Suomen Kliinisen Farmakologian Yhdistys'),
(111135, 'https://ror.org/03nj9k629', 'en', 1, 'https://ror.org/03nj9k629 MedChemExpress MedChemExpress (United States)'),
(111136, 'https://ror.org/04cc75104', 'en', 1, 'https://ror.org/04cc75104 National Arbovirus and Vectors Research Centre'),
(111137, 'https://ror.org/04b24s476', 'en', 1, 'https://ror.org/04b24s476 Economic Society of Finland Ekonomiska Samfundet i Finland r.f. Taloustieteellinen yhdistys'),
(111138, 'https://ror.org/00x6x2m91', 'no', 1, 'https://ror.org/00x6x2m91 Verdensarvsenter for bergkunst - Alta museum World Heritage Rock Art Centre - Alta Museum'),
(111139, 'https://ror.org/051zk9m13', 'pt', 1, 'https://ror.org/051zk9m13 Fundação UniversitÔria de Itaperuna'),
(111140, 'https://ror.org/00edjt083', 'en', 1, 'https://ror.org/00edjt083 Finnische Gesellschaft für Philosophie und Phänomenologische Forschung Finnish Society for Philosophy and Phenomenological Research Societas philosophica et phaenomenologica Finlandiae Suomen filosofian ja fenomenologisen tutkimuksen seura SFFS'),
(111141, 'https://ror.org/02250mf28', 'es', 1, 'https://ror.org/02250mf28 Centro MƩdico Sanitas Imperial Tarraco Sanitas Imperial Tarraco Medical Centre'),
(111142, 'https://ror.org/00hjsa992', 'en', 1, 'https://ror.org/00hjsa992 Finnish Society for Science and Technology Studies Fƶreningen fƶr vetenskaps- och teknikstudier i Finland Suomen tieteen- ja teknologiantutkimuksen seura'),
(111143, 'https://ror.org/04bme6973', 'en', 1, 'https://ror.org/04bme6973 Finlands Lärdomshistoriska Samfund Finnische Gesellschaft für die Geschichte der Wissenschaften Finnish Society for the History of Science and Learning Societas Historiae Scientiarum Fennica Suomen Oppihistoriallinen Seura'),
(111144, 'https://ror.org/05rwj0911', 'de', 1, 'https://ror.org/05rwj0911 Stift Seitenstetten'),
(111145, 'https://ror.org/02hv7zh11', 'en', 1, 'https://ror.org/02hv7zh11 Farmaceutiska fƶreningen i Finland Finnish Pharmaceutical Society Pharmazeutische Gesellschaft in Finnland Suomen farmaseuttinen yhdistys'),
(111146, 'https://ror.org/02jx36x09', 'fi', 1, 'https://ror.org/02jx36x09 Rakennustaiteen Seura Samfundet fƶr byggnadskonst'),
(111147, 'https://ror.org/0492g1k39', 'en', 1, 'https://ror.org/0492g1k39 Community Science and Data Center'),
(111148, 'https://ror.org/016z5er26', 'es', 1, 'https://ror.org/016z5er26 Fundación para el Estudio de Especies Invasivas'),
(111149, 'https://ror.org/00swkht58', 'en', 1, 'https://ror.org/00swkht58 Abu Ali ibn Sino nomidagi Buxoro davlat tibbiyot instituti Bukhara State Medical Institute named after Abu Ali ibn Sino Š‘ŃƒŃ…Š°Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Абу Али ибн Дино Š‘ŃƒŃ…Š°Ń€ŃŃŒŠŗŠøŠ¹ Гержавний меГичний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імени Авіцени'),
(111150, 'https://ror.org/03we51n78', 'en', 1, 'https://ror.org/03we51n78 Finlands Naturskyddsfƶrbund Finnish Association for Nature Conservation Suomen luonnonsuojeluliitto'),
(111151, 'https://ror.org/021aq6016', 'en', 1, 'https://ror.org/021aq6016 Historiska fƶreningen Swedish Historical Society in Finland'),
(111152, 'https://ror.org/03g1srd85', 'id', 1, 'https://ror.org/03g1srd85 Sekolah Tinggi Teologi Injili Indonesia Palu'),
(111153, 'https://ror.org/0110at529', 'en', 1, 'https://ror.org/0110at529 Odessa National Medical University ŠžŠ“ŠµŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111154, 'https://ror.org/00f7hpc57', 'de', 1, 'https://ror.org/00f7hpc57 Friedrich-Alexander-Universität Erlangen-Nürnberg'),
(111155, 'https://ror.org/02dnn6q67', 'en', 1, 'https://ror.org/02dnn6q67 Linkou Chang Gung Memorial Hospital ęž—å£é•·åŗšē“€åæµé†«é™¢'),
(111156, 'https://ror.org/02yhess13', 'en', 1, 'https://ror.org/02yhess13 The Leprosy Mission Nepal'),
(111157, 'https://ror.org/003g1aw90', 'fr', 1, 'https://ror.org/003g1aw90 Centre de Recherche en CancƩrologie et Immunologie IntƩgrƩe Nantes Angers Nantes Angers Cancer and Immunology Research Center'),
(111158, 'https://ror.org/041p6g433', 'en', 1, 'https://ror.org/041p6g433 Curly Birch Society Visaseura'),
(111159, 'https://ror.org/03fgx6868', 'en', 1, 'https://ror.org/03fgx6868 Ollscoil TeicneolaĆ­ochta and Oirdheiscirt South East Technological University'),
(111160, 'https://ror.org/015gaxx73', 'fr', 1, 'https://ror.org/015gaxx73 Laboratoire Optimisation de la Conception et IngƩnierie de l''Environnement'),
(111161, 'https://ror.org/00cqpd580', 'fr', 1, 'https://ror.org/00cqpd580 Institut des MatƩriaux Jean Rouxel Institute of Materials Jean Rouxel'),
(111162, 'https://ror.org/02nv7yv05', 'de', 1, 'https://ror.org/02nv7yv05 Forschungszentrum Jülich'),
(111163, 'https://ror.org/02rzvwr38', 'es', 1, 'https://ror.org/02rzvwr38 Centro MƩdico Sanitas Nicasio Gallego Sanitas Nicasio Gallego Medical Centre'),
(111164, 'https://ror.org/02nf7r014', 'en', 1, 'https://ror.org/02nf7r014 Department of Culture and Tourism Abu Dhabi'),
(111165, 'https://ror.org/055cj5j49', 'en', 1, 'https://ror.org/055cj5j49 Organisasi Riset Tenaga Nukli Research Organization for Nuclear Energy'),
(111166, 'https://ror.org/041bj4p48', 'no_lang_code', 1, 'https://ror.org/041bj4p48 gmp International GmbH gmp Ā· Architekten von Gerkan, Marg und Partner gmp Ā· Architekten von Gerkan, Marg und Partner (Germany)'),
(111167, 'https://ror.org/01jases89', 'en', 1, 'https://ror.org/01jases89 WaterCampus'),
(111168, 'https://ror.org/03bdeag60', 'en', 1, 'https://ror.org/03bdeag60 University of Lucknow ą¤²ą¤–ą¤Øą¤Š ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ąØ²ąØ–ąØØąØŠ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(111169, 'https://ror.org/00fpwpk34', 'fi', 1, 'https://ror.org/00fpwpk34 Suomen musiikkiterapiayhdistys'),
(111170, 'https://ror.org/049pb4825', 'en', 1, 'https://ror.org/049pb4825 Metropolitan Homoeopathic Medical College and Hospital'),
(111171, 'https://ror.org/012qjvc34', 'en', 1, 'https://ror.org/012qjvc34 Foundation of the Finnish Institute in the Middle East Stiftelsen fƶr Finlands Mellanƶsterinstitut Suomen LƤhi-idƤn instituutin sƤƤtiƶ'),
(111172, 'https://ror.org/0352ndv59', 'en', 1, 'https://ror.org/0352ndv59 Moscow Research and Practical Centre on Addictions of the Moscow Department of Healthcare Московский ŠŠ°ŃƒŃ‡Š½Š¾-ŠŸŃ€Š°ŠŗŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ Центр ŠŠ°Ń€ŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(111173, 'https://ror.org/04d4fp218', 'en', 1, 'https://ror.org/04d4fp218 St. Xavier''s College Jaipur'),
(111174, 'https://ror.org/01jrsh341', 'hu', 1, 'https://ror.org/01jrsh341 Tudatosan a Környezetünkért Egyesület'),
(111175, 'https://ror.org/041q21635', 'en', 1, 'https://ror.org/041q21635 Nigerian Institute for Trypanosomiasis Research'),
(111176, 'https://ror.org/02n89n861', 'es', 1, 'https://ror.org/02n89n861 Centro MƩdico Sanitas Sevilla La Buhaira Sanitas Sevilla La Buhaira Medical Centre'),
(111177, 'https://ror.org/04axb9j69', 'fr', 1, 'https://ror.org/04axb9j69 Laboratoire d’Electrochimie et de Physico-chimie des MatĆ©riaux et des Interfaces'),
(111178, 'https://ror.org/05g1zjw44', 'fr', 1, 'https://ror.org/05g1zjw44 Laboratoire d''Informatique de Paris Nord Laboratoire d''Informatique de Paris-Nord'),
(111179, 'https://ror.org/01sq42g08', 'en', 1, 'https://ror.org/01sq42g08 Idaho College of Osteopathic Medicine'),
(111180, 'https://ror.org/01bt3e159', 'fr', 1, 'https://ror.org/01bt3e159 Cultures, Environments, Arctic, Representations, Climate Cultures, Environnements, Arctique, ReprƩsentations, Climat'),
(111181, 'https://ror.org/01zck8n68', 'en', 1, 'https://ror.org/01zck8n68 Fourth Central Hospital of Baoding City äæå®šåø‚ē¬¬å››äø­åæƒåŒ»é™¢'),
(111182, 'https://ror.org/00dn43547', 'en', 1, 'https://ror.org/00dn43547 King Faisal University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„'),
(111183, 'https://ror.org/03720mc82', 'en', 1, 'https://ror.org/03720mc82 Finnish Oriental Society Finska OrientsƤllskapet Societas Orientalis Fennica Suomen ItƤmainen Seura'),
(111184, 'https://ror.org/04fy20a51', 'fr', 1, 'https://ror.org/04fy20a51 Institut de Recherches sur la Catalyse et l''Environnement de Lyon Institute of Researches on Catalysis and Environment in Lyon'),
(111185, 'https://ror.org/005fjj927', 'fr', 1, 'https://ror.org/005fjj927 Ecosystèmes, Biodiversité, Evolution'),
(111186, 'https://ror.org/04ddydq39', 'es', 1, 'https://ror.org/04ddydq39 El Poder del Consumidor AC'),
(111187, 'https://ror.org/05vg9cw43', 'fr', 1, 'https://ror.org/05vg9cw43 Laboratoire de GĆ©ologie de l’École Normale SupĆ©rieure'),
(111188, 'https://ror.org/0208m5v39', 'fr', 0, 'https://ror.org/0208m5v39 RƩgulations Naturelle et Artificielle'),
(111189, 'https://ror.org/048g3cy84', 'en', 1, 'https://ror.org/048g3cy84 NSF-DOE Vera C. Rubin Observatory Vera C. Rubin Observatory'),
(111190, 'https://ror.org/03y83ze93', 'en', 1, 'https://ror.org/03y83ze93 Pacific Lutheran Theological Seminary'),
(111191, 'https://ror.org/05y0gcs37', 'en', 1, 'https://ror.org/05y0gcs37 Finnish Society for Cultural History Kulttuurihistorian seura'),
(111192, 'https://ror.org/02k0m6705', 'es', 1, 'https://ror.org/02k0m6705 Instituto Latinoamericano de Altos Estudios'),
(111193, 'https://ror.org/03re99q86', 'es', 1, 'https://ror.org/03re99q86 Museo del Instituto de ZoologĆ­a AgrĆ­cola'),
(111194, 'https://ror.org/05wvyr320', 'en', 1, 'https://ror.org/05wvyr320 Classical Association of Finland Klassillis-filologinen yhdistys Klassisk-filologiska fƶreningen Societas Philologica Classica'),
(111195, 'https://ror.org/03ykg5j95', 'en', 1, 'https://ror.org/03ykg5j95 ATAFOM University International Atlantic African Oriental Multicultural University International'),
(111196, 'https://ror.org/021d2sw23', 'fr', 1, 'https://ror.org/021d2sw23 Politique LittĆ©ratures Cultures Ɖcritures MĆ©dialitĆ© IdĆ©es Expressions Sciences'),
(111197, 'https://ror.org/04ers2y35', 'en', 1, 'https://ror.org/04ers2y35 University of Bremen UniversitƤt Bremen'),
(111198, 'https://ror.org/01b5nw197', 'fr', 1, 'https://ror.org/01b5nw197 Sciences Po Bordeaux'),
(111199, 'https://ror.org/04cjm7d31', 'fr', 1, 'https://ror.org/04cjm7d31 UniversitƩ Polytechnique IntƩgrƩe'),
(111200, 'https://ror.org/00jv0wy06', 'en', 1, 'https://ror.org/00jv0wy06 Bases Moléculaires et Structurales des Systèmes Infectieux Structural and Molecular Basis of Infectious Systems'),
(111201, 'https://ror.org/04fwfsb90', 'en', 1, 'https://ror.org/04fwfsb90 S.P. Jain Institute of Management and Research'),
(111202, 'https://ror.org/028cdc266', 'en', 0, 'https://ror.org/028cdc266 ARC Centre of Excellence for Coral Reef Studies'),
(111203, 'https://ror.org/00vtgdb53', 'en', 1, 'https://ror.org/00vtgdb53 Oilthigh Ghlaschu Prifysgol Glasgow University of Glasgow'),
(111204, 'https://ror.org/04m7y9d03', 'en', 1, 'https://ror.org/04m7y9d03 Freedom to Live'),
(111205, 'https://ror.org/05bvma389', 'fi', 1, 'https://ror.org/05bvma389 Juridiska Fƶreningen i Finland Suomen Lainopillinen Yhdistys'),
(111206, 'https://ror.org/023bwq308', 'fr', 1, 'https://ror.org/023bwq308 UniversitƩ de l''Assomption au Congo'),
(111207, 'https://ror.org/03wbhsn33', 'en', 1, 'https://ror.org/03wbhsn33 Diakonian tutkimuksen seura Society for Diaconia Research'),
(111208, 'https://ror.org/04m29ac35', 'fr', 1, 'https://ror.org/04m29ac35 Institut Universitaire LES COURS SONOU'),
(111209, 'https://ror.org/04facnr46', 'en', 1, 'https://ror.org/04facnr46 EU Business School, Geneva'),
(111210, 'https://ror.org/01jt3k523', 'en', 1, 'https://ror.org/01jt3k523 Indoc Systems Inc. Indoc Systems Inc. (Canada)'),
(111211, 'https://ror.org/04hd6wf14', 'fr', 1, 'https://ror.org/04hd6wf14 PolymĆØres, BiopolymĆØres, Surfaces'),
(111212, 'https://ror.org/01hcs1859', 'de', 1, 'https://ror.org/01hcs1859 biohelp – biologischer Pflanzenschutz, Nützlingsproduktions-, Handels- und Beratungs-GmbH biohelp – biologischer Pflanzenschutz, Nützlingsproduktions-, Handels- und Beratungs-GmbH (Austria)'),
(111213, 'https://ror.org/052gj4g33', 'no_lang_code', 1, 'https://ror.org/052gj4g33 Withings Withings (France)'),
(111214, 'https://ror.org/05f0czc43', 'en', 1, 'https://ror.org/05f0czc43 Bokhistoriska sƤllskapet i Finland Society for the history of book in Finland Suomen kirjahistoriallinen seura'),
(111215, 'https://ror.org/04ccj0x73', 'en', 1, 'https://ror.org/04ccj0x73 Nigerian Institute of Transport Technology'),
(111216, 'https://ror.org/048fraw27', 'en', 1, 'https://ror.org/048fraw27 Ministry of Agriculture, Natural Resources and Environment ΄πουργείο Γεωργίας'),
(111217, 'https://ror.org/03vyzg221', 'fr', 1, 'https://ror.org/03vyzg221 Groupe de SpectromƩtrie MolƩculaire et AtmosphƩrique Molecular and Atmospheric Spectrometry Group'),
(111218, 'https://ror.org/05bjz6251', 'en', 1, 'https://ror.org/05bjz6251 Finnish Society for Rural Research and Development Maaseudun uusi aika Nya landbygden'),
(111219, 'https://ror.org/04mc33q52', 'fr', 1, 'https://ror.org/04mc33q52 Centre IntĆ©grĆ© Universitaire de SantĆ© et de Services Sociaux du Centre-Sud-de-l''Ǝle-de-MontrĆ©al'),
(111220, 'https://ror.org/01bj3aw27', 'en', 1, 'https://ror.org/01bj3aw27 Departamento de EnergĆ­a de los Estados Unidos DĆ©partement de l''Ɖnergie des Ɖtats-unis United States Department of Energy'),
(111221, 'https://ror.org/01jwm2188', 'en', 1, 'https://ror.org/01jwm2188 FH Gesundheitsberufe OƖ FH Gesundheitsberufe OƖ GmbH University of Applied Sciences for Health Professions Upper Austria'),
(111222, 'https://ror.org/00dyt5s15', 'en', 1, 'https://ror.org/00dyt5s15 Center for Infection and Immunity of Lille Centre d''infection et d''immunitƩ de Lille'),
(111223, 'https://ror.org/01dg47b60', 'pt', 1, 'https://ror.org/01dg47b60 Pontifical Catholic University of Rio de Janeiro Pontifícia Universidade Católica do Rio de Janeiro'),
(111224, 'https://ror.org/01xbygx95', 'fi', 1, 'https://ror.org/01xbygx95 Mikael Agricola -seura'),
(111225, 'https://ror.org/05tgxx705', 'en', 1, 'https://ror.org/05tgxx705 Department of Science and Technology Kagawaran ng Agham at Teknolohiya'),
(111226, 'https://ror.org/05k1smh27', 'fr', 1, 'https://ror.org/05k1smh27 Institut Jean Lamour'),
(111227, 'https://ror.org/04d7jwc58', 'la', 1, 'https://ror.org/04d7jwc58 Bibliothecarii Medicinae Fenniae'),
(111228, 'https://ror.org/03c2k2909', 'fr', 1, 'https://ror.org/03c2k2909 Groupe de Physique des MatƩriaux'),
(111229, 'https://ror.org/0534re684', 'en', 1, 'https://ror.org/0534re684 Max Planck Institute for Evolutionary Biology Max-Planck-Institut für Evolutionsbiologie'),
(111230, 'https://ror.org/05s608j53', 'fr', 1, 'https://ror.org/05s608j53 Contact and Structure Mechanics Laboratory Laboratoire de MƩcanique des Contacts et des Structures'),
(111231, 'https://ror.org/05258q350', 'fr', 1, 'https://ror.org/05258q350 Institut MĆ©diterranĆ©en d’OcĆ©anologie Mediterranean Institute of Oceanography'),
(111232, 'https://ror.org/05a68ds78', 'en', 1, 'https://ror.org/05a68ds78 Institut de recherche, de donnƩes et de formation du Nouveau-Brunswick New Brunswick Institute for Research, Data and Training'),
(111233, 'https://ror.org/01zthxk11', 'fi', 1, 'https://ror.org/01zthxk11 Fƶreningen fƶr nordisk filologi'),
(111234, 'https://ror.org/01w4t0r91', 'en', 1, 'https://ror.org/01w4t0r91 Finnish Society for the Study of Religion Religionsvetenskapliga SƤllskapet i Finland Suomen Uskontotieteellinen Seura'),
(111235, 'https://ror.org/000zhpw23', 'fr', 1, 'https://ror.org/000zhpw23 Institut de la Vision Vision Institute'),
(111236, 'https://ror.org/0079aq025', 'en', 1, 'https://ror.org/0079aq025 Geographical Society of Northern Finland Pohjois-Suomen Maantieteellinen Seura'),
(111237, 'https://ror.org/02pn4f312', 'id', 1, 'https://ror.org/02pn4f312 Universitas Pendidikan Muhammadiyah Sorong'),
(111238, 'https://ror.org/00d18z302', 'en', 1, 'https://ror.org/00d18z302 B. Borooah College'),
(111239, 'https://ror.org/01nrgrf58', 'en', 1, 'https://ror.org/01nrgrf58 Finnish Language Society Gesellschaft für Finnische Sprache Société de la langue finnoise Suomen Kielen Seura'),
(111240, 'https://ror.org/02a94wn24', 'it', 1, 'https://ror.org/02a94wn24 OPHIS Museo Paleontologico e Centro Erpetologico'),
(111241, 'https://ror.org/017cvaq73', 'en', 1, 'https://ror.org/017cvaq73 Finlands Bryologiska SƤllskap Finnish Bryological Society Societas Bryologica Fennica Suomen Sammalseura'),
(111242, 'https://ror.org/03eq4xf54', 'en', 1, 'https://ror.org/03eq4xf54 The Westermarck Society'),
(111243, 'https://ror.org/048sx3416', 'en', 1, 'https://ror.org/048sx3416 Finnish Society for Eighteenth-Century Studies Finska sällskapet för 1700-talsstudier Société finlandaise d''étude du dix-huitième siècle Suomen 1700-luvun tutkimuksen seura'),
(111244, 'https://ror.org/02bahkp76', 'en', 1, 'https://ror.org/02bahkp76 Centre for Nuclear Energy Research'),
(111245, 'https://ror.org/04c3j6v84', 'en', 1, 'https://ror.org/04c3j6v84 California Cooperative Oceanic Fisheries Investigations'),
(111246, 'https://ror.org/023b2c435', 'fr', 1, 'https://ror.org/023b2c435 Laboratoire Anthropologie, ArchƩologie, Biologie'),
(111247, 'https://ror.org/00f2yqf98', 'de', 1, 'https://ror.org/00f2yqf98 Hannover Medical School Medizinische Hochschule Hannover'),
(111248, 'https://ror.org/0589zt809', 'id', 1, 'https://ror.org/0589zt809 Universitas Muslim Maros'),
(111249, 'https://ror.org/03rq94151', 'en', 1, 'https://ror.org/03rq94151 Institute of Astronomy and Space Physics Instituto de AstronomĆ­a y FĆ­sica del Espacio'),
(111250, 'https://ror.org/042393h03', 'en', 1, 'https://ror.org/042393h03 Genesystem Co., Ltd. Genesystem Co., Ltd. (South Korea) ģ§„ģ‹œģŠ¤ķ…œ'),
(111251, 'https://ror.org/00b8pww10', 'en', 1, 'https://ror.org/00b8pww10 Kulttuurintutkimuksen seura Society for Cultural Studies in Finland SƤllskapet fƶr kulturstudier i Finland'),
(111252, 'https://ror.org/01a13xb70', 'en', 1, 'https://ror.org/01a13xb70 Finnish Bone Society (FBS)'),
(111253, 'https://ror.org/03jzm5a44', 'es', 1, 'https://ror.org/03jzm5a44 Rafael LandĆ­var University Universidad Rafael LandĆ­var'),
(111254, 'https://ror.org/012cq4j44', 'en', 1, 'https://ror.org/012cq4j44 People''s Government of Inner Mongolia Autonomous Region į „į Ŗį „į · ᠮᠣᠩᠭᠣᠯ ᠤᠨ ᠄ᠪ᠔ᠷᠲ᠔ᠭ᠔ᠨ ᠵᠠᠰᠠᠬᠤ ᠣᠷᠣᠨ į ¤ į  į ·į  į ³ ᠤᠨ ᠲ᠄ᠯ᠄ᠭ᠔ᠯ᠔ᠭ᠓ᠢᠳ ᠦᠨ ᠶ᠔ᠬ᠔ ᠬᠤᠷᠠᠯ å†…č’™å¤č‡Ŗę²»åŒŗäŗŗę°‘ę”æåŗœ'),
(111255, 'https://ror.org/04pfgav07', 'no_lang_code', 1, 'https://ror.org/04pfgav07 PinCell srl PinCell srl (Italy)'),
(111256, 'https://ror.org/03d7c1451', 'en', 0, 'https://ror.org/03d7c1451 Indonesian Institute of Sciences Lembaga Ilmu Pengetahuan Indonesia'),
(111257, 'https://ror.org/01d8fne82', 'de', 1, 'https://ror.org/01d8fne82 Wirtschaftsakademie Schleswig-Holstein Wirtschaftsakademie Schleswig-Holstein GmbH'),
(111258, 'https://ror.org/04tehfn33', 'en', 1, 'https://ror.org/04tehfn33 International Union for Conservation of Nature'),
(111259, 'https://ror.org/018gvvj12', 'en', 1, 'https://ror.org/018gvvj12 Finnische Exegetische Gesellschaft Finnish Exegetical Society Suomen Eksegeettinen Seura'),
(111260, 'https://ror.org/05gzmn429', 'en', 1, 'https://ror.org/05gzmn429 Centre de l''AccƩlƩrateur LinƩaire de Stanford SLAC National Accelerator Laboratory'),
(111261, 'https://ror.org/01ed4t417', 'fr', 1, 'https://ror.org/01ed4t417 Centre de recherche en EpidƩmiologie et SantƩ des Populations Centre for Epidemiology and Population Health'),
(111262, 'https://ror.org/05qer7k24', 'es', 1, 'https://ror.org/05qer7k24 Centro MƩdico Sanitas Zaragoza Sanitas Zaragoza Medical Centre'),
(111263, 'https://ror.org/03zj2ek66', 'en', 1, 'https://ror.org/03zj2ek66 Ammatillisen koulutuksen tutkimusseura OTTU Finnish Vocational Educational Research Association (FiVERA)'),
(111264, 'https://ror.org/03q9kea04', 'en', 1, 'https://ror.org/03q9kea04 Archaeoastronomical Society of Finland Arkeoastronomiska sƤllskap i Finland rf Suomen arkeoastronominen seura ry'),
(111265, 'https://ror.org/05hj98d81', 'en', 1, 'https://ror.org/05hj98d81 Glossa - Keskiajan tutkimuksen seura Glossa - SƤllskapet fƶr medeltidsforskning Glossa - The Society for Medieval Studies'),
(111266, 'https://ror.org/036zp6g16', 'en', 1, 'https://ror.org/036zp6g16 Historical Society in Oulu Oulun Historiaseura Societas Historica Ouluensis'),
(111267, 'https://ror.org/01tvm6f46', 'en', 1, 'https://ror.org/01tvm6f46 University Hospital Schleswig-Holstein UniversitƤtsklinikum Schleswig-Holstein'),
(111268, 'https://ror.org/02en51p20', 'en', 1, 'https://ror.org/02en51p20 Geofysiikan Seura Geofysiska SƤllskapet Geophysical Society of Finland'),
(111269, 'https://ror.org/03ye8kt44', 'en', 1, 'https://ror.org/03ye8kt44 Federal Polytechnic Ayede'),
(111270, 'https://ror.org/03rtw5049', 'en', 1, 'https://ror.org/03rtw5049 Laboratory for Ocean Physics and Satellite Remote Sensing'),
(111271, 'https://ror.org/04xz2my07', 'en', 0, 'https://ror.org/04xz2my07 Oenology Research Unit Unite de Recherche Œnologie'),
(111272, 'https://ror.org/019h9qa74', 'en', 1, 'https://ror.org/019h9qa74 Finnish Association of Working Life Research (FAWORE) Fƶreningen fƶr arbetspolitisk forskning TyƶelƤmƤn tutkimusyhdistys'),
(111273, 'https://ror.org/00b52n740', 'en', 1, 'https://ror.org/00b52n740 Commission Finlandaise d'' Histoire Militaire Finnish Comission of Military History MilitƤrhistoriska Komissionen i Finland Suomen Sotahistorian Komissio'),
(111274, 'https://ror.org/05nkf0n29', 'en', 1, 'https://ror.org/05nkf0n29 University of New Brunswick UniversitƩ du nouveau-brunswick'),
(111275, 'https://ror.org/01j1xrv26', 'en', 1, 'https://ror.org/01j1xrv26 Heraldische Gesellschaft in Finnland Heraldiska SƤllskapet i Finland Heraldry Society of Finland Societas Heraldica Fennica SociƩtƩ hƩraldique de la Finlande Suomen Heraldinen Seura'),
(111276, 'https://ror.org/01vye5q70', 'en', 1, 'https://ror.org/01vye5q70 Genealogical Society of Finland Genealogiska Samfundet i Finland Suomen Sukututkimusseura'),
(111277, 'https://ror.org/053s1c013', 'en', 1, 'https://ror.org/053s1c013 Delfini del Ponente APS'),
(111278, 'https://ror.org/01w2yhe61', 'en', 1, 'https://ror.org/01w2yhe61 Mackay Hospital and Health Service'),
(111279, 'https://ror.org/02w821491', 'es', 1, 'https://ror.org/02w821491 Dirección General de Educación Tecnológica Industrial y de Servicios'),
(111280, 'https://ror.org/05jkgzq43', 'en', 1, 'https://ror.org/05jkgzq43 Research Institute in Data Science and Artificial Intelligence'),
(111281, 'https://ror.org/04fy3ta12', 'en', 1, 'https://ror.org/04fy3ta12 KVK College of Pharmacy'),
(111282, 'https://ror.org/00b0h5r86', 'ca', 1, 'https://ror.org/00b0h5r86 Fundació Hospital d''Olot i Comarcal de la Garrotxa'),
(111283, 'https://ror.org/006m4q736', 'en', 1, 'https://ror.org/006m4q736 Azerbaijan National Academy of Sciences Azərbaycan Milli Elmlər Akademiyası ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук АзербайГжана'),
(111284, 'https://ror.org/04vs9wp72', 'en', 1, 'https://ror.org/04vs9wp72 Hangzhou Institute of Medicine, Chinese Academy of Sciences äø­å›½ē§‘å­¦é™¢ę­å·žåŒ»å­¦ē ”ē©¶ę‰€'),
(111285, 'https://ror.org/00h761y79', 'en', 1, 'https://ror.org/00h761y79 Gravitational Wave Open Science Center'),
(111286, 'https://ror.org/01j170155', 'en', 1, 'https://ror.org/01j170155 Southwest Transplant Alliance'),
(111287, 'https://ror.org/04yqbsw50', 'en', 1, 'https://ror.org/04yqbsw50 Institute of Higher Education of Art and Islamic Thought دانؓگاه هنر و Ų§Ł†ŲÆŪŒŲ“Ł‡ Ų§Ų³Ł„Ų§Ł…ŪŒ'),
(111288, 'https://ror.org/057k5pq74', 'en', 1, 'https://ror.org/057k5pq74 Islamic University of Minnesota الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©ŲŒ ŲØŁ…Ł†ŁŠŲ³ŁˆŲŖŲ§'),
(111289, 'https://ror.org/01844ac84', 'en', 1, 'https://ror.org/01844ac84 Kulttuuripolitiikan tutkimuksen seura ry Society for Cultural Policy Research in Finland SƤllskapet fƶr kulturpolitisk forskring rf'),
(111290, 'https://ror.org/00pw5c804', 'es', 1, 'https://ror.org/00pw5c804 Centro Médico Sanitas Núñez de Balboa Sanitas Núñez de Balboa Medical Centre'),
(111291, 'https://ror.org/03hnwy706', 'en', 1, 'https://ror.org/03hnwy706 Experimental Medicine and Biology Institute Instituto de BiologĆ­a y Medicina Experimental'),
(111292, 'https://ror.org/05b5c0584', 'fr', 1, 'https://ror.org/05b5c0584 Jean Moulin University Lyon 3 UniversitƩ Jean Moulin Lyon III'),
(111293, 'https://ror.org/038kkxr11', 'en', 1, 'https://ror.org/038kkxr11 Centre for Research in Infectious Diseases'),
(111294, 'https://ror.org/04zbz6283', 'en', 1, 'https://ror.org/04zbz6283 Suomalaisten Kemistien Seura The Finnish Chemical Society'),
(111295, 'https://ror.org/0060xzr04', 'fr', 1, 'https://ror.org/0060xzr04 BioƩnergƩtique et IngƩnierie des ProtƩines'),
(111296, 'https://ror.org/01xhv6h58', 'no_lang_code', 1, 'https://ror.org/01xhv6h58 Sage (United Kingdom)'),
(111297, 'https://ror.org/05c50dy08', 'en', 1, 'https://ror.org/05c50dy08 Finnish Operations Research Society (FORS) Suomen Operaatiotutkimusseura'),
(111298, 'https://ror.org/0095bgs14', 'en', 1, 'https://ror.org/0095bgs14 Grand Canyon National Park Parque nacional del Gran Cañón'),
(111299, 'https://ror.org/00rww7b11', 'en', 1, 'https://ror.org/00rww7b11 The Association of Diplomacy and Strategy Studies'),
(111300, 'https://ror.org/04hbyjq58', 'no_lang_code', 1, 'https://ror.org/04hbyjq58 Embecosm Embecosm (United Kingdom)'),
(111301, 'https://ror.org/0234pcb82', 'nl', 1, 'https://ror.org/0234pcb82 Dienst Uitvoering Onderwijs'),
(111302, 'https://ror.org/03vat4j79', 'en', 1, 'https://ror.org/03vat4j79 Gesellschaft der Geschichtsfreunde Historian YstƤvƤin Liitto HistorievƤnnernas Fƶrbund Society of the Friends of History SociƩtƩ des Amis de l''Histoire'),
(111303, 'https://ror.org/03gzm8w29', 'en', 1, 'https://ror.org/03gzm8w29 Tom Mboya University College'),
(111304, 'https://ror.org/00kkbzr26', 'es', 1, 'https://ror.org/00kkbzr26 Academia Nacional de AgronomĆ­a y Veterinaria'),
(111305, 'https://ror.org/02x3hmg72', 'en', 1, 'https://ror.org/02x3hmg72 SMS Medical College'),
(111306, 'https://ror.org/00s8hq550', 'fr', 1, 'https://ror.org/00s8hq550 Centre d''Etudes Biologiques de ChizƩ'),
(111307, 'https://ror.org/021fdyt09', 'fr', 1, 'https://ror.org/021fdyt09 Heat Transfer and Energy Laboratory at Nantes Laboratoire de Thermique et Energie de Nantes'),
(111308, 'https://ror.org/01edbpy62', 'fr', 1, 'https://ror.org/01edbpy62 GenĆØve Team Ambulances'),
(111309, 'https://ror.org/00k081886', 'en', 1, 'https://ror.org/00k081886 Berkeley School of Theology'),
(111310, 'https://ror.org/001s37a48', 'en', 1, 'https://ror.org/001s37a48 Finnish Society for Growth and Aging Research Fƶreningen fƶr forskning i uppvƤxt och Ƅldrande Kasvun ja vanhenemisen tutkijat'),
(111311, 'https://ror.org/035mqrn57', 'fr', 1, 'https://ror.org/035mqrn57 Center for the Sociology of Organizations Centre de Sociologie des Organisations'),
(111312, 'https://ror.org/04rzzc331', 'pt', 1, 'https://ror.org/04rzzc331 Applied Marketing Marketing Aplicado Lda Marketing Aplicado Lda (Portugal)'),
(111313, 'https://ror.org/04g3hdh17', 'en', 1, 'https://ror.org/04g3hdh17 Atlantic Institute for Policy Research'),
(111314, 'https://ror.org/04frfb960', 'en', 1, 'https://ror.org/04frfb960 Mackay Base Hospital'),
(111315, 'https://ror.org/01v5jen27', 'en', 1, 'https://ror.org/01v5jen27 Finnish Folklore Society Föreningen för finsk folklivsforskning Suomen Kansantietouden Tutkijain Seura Verein für Finnische Volkskunde'),
(111316, 'https://ror.org/05gsxrt27', 'en', 1, 'https://ror.org/05gsxrt27 BGI Research åŽå¤§ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(111317, 'https://ror.org/01yw9jt43', 'en', 1, 'https://ror.org/01yw9jt43 Pathogenesis and Control of Chronic and Emerging Infections'),
(111318, 'https://ror.org/04z8pga07', 'fr', 1, 'https://ror.org/04z8pga07 Ɖcole Normale d''Administration'),
(111319, 'https://ror.org/056femd95', 'en', 1, 'https://ror.org/056femd95 Fƶrening fƶr utveckling och forskning av mental hƤlsa Mielenterveystyƶn kehittƤminen ja tutkimus ry The Association of Development and Research on Mental Health Care'),
(111320, 'https://ror.org/00b9t6d21', 'en', 1, 'https://ror.org/00b9t6d21 Spinghar Institute of Higher Education, Kabul Ų³Ł¾ŪŒŁ† ŲŗŲ± ŲÆ Ł„ŁˆŚ“Łˆ Ų²ŲÆŚ©Ś“Łˆ Ł…ŁˆŲ³Ų³Ł‡ مرکز Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų³Ł¾ŪŒŁ†ŲŗŲ±'),
(111321, 'https://ror.org/02sbnnp08', 'en', 1, 'https://ror.org/02sbnnp08 Alanya University Alanya Üniversitesi'),
(111322, 'https://ror.org/05v432w66', 'no_lang_code', 1, 'https://ror.org/05v432w66 Yueyang Yumeikang Biotechnology Co., Ltd. Yueyang Yumeikang Biotechnology Co., Ltd. (China) å²³é˜³ęø”ē¾Žåŗ·ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(111323, 'https://ror.org/00wf4k745', 'en', 0, 'https://ror.org/00wf4k745 Alytaus Kolegija Alytus College'),
(111324, 'https://ror.org/04qkyjv79', 'es', 1, 'https://ror.org/04qkyjv79 Asociación Madrileña de Salud Pública'),
(111325, 'https://ror.org/03w4prx81', 'en', 1, 'https://ror.org/03w4prx81 FinlƤndska sƤllskapet fƶr forskning i konstfostran Suomen taidekasvatuksen tutkimusseura The Finnish Society for Research in Art Education'),
(111326, 'https://ror.org/04m5rvb18', 'fr', 1, 'https://ror.org/04m5rvb18 Laboratoire Interdisciplinaire SolidaritƩs SociƩtƩs Territoires'),
(111327, 'https://ror.org/05t8pbe86', 'en', 1, 'https://ror.org/05t8pbe86 Engineering Staff College of India'),
(111328, 'https://ror.org/01tg0fx40', 'en', 1, 'https://ror.org/01tg0fx40 Institute for the Future of Work'),
(111329, 'https://ror.org/043hw6336', 'fr', 1, 'https://ror.org/043hw6336 Institut de Neurosciences de la Timone'),
(111330, 'https://ror.org/024m1xa82', 'en', 1, 'https://ror.org/024m1xa82 People''s University of Medical and Health Sciences for Women Ł¾ŪŒŁ¾Ł„Ų² ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŚˆŪŒŚ©Ł„ Ų§ŪŒŁ†Śˆ ŪŪŒŁ„ŲŖŚ¾ سائنسز ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ†ŲŒ Ł†ŁˆŲ§ŲØŲ“Ų§Ū'),
(111331, 'https://ror.org/05fvhm231', 'fr', 1, 'https://ror.org/05fvhm231 Laboratoire de Sciences Cognitives et Psycholinguistique'),
(111332, 'https://ror.org/03xe1kn47', 'tr', 1, 'https://ror.org/03xe1kn47 SBÜ Beyhekim Training and Research Hospital Sağlik Bi̇li̇mleri̇ Üni̇versi̇tesi̇ Beyheki̇m Eği̇ti̇m Ve Araştirma Hastanesi̇'),
(111333, 'https://ror.org/016grk095', 'en', 1, 'https://ror.org/016grk095 Dr. Jack McKenzie Limerick Pulp & Paper Research & Education Centre'),
(111334, 'https://ror.org/0338qbx87', 'tr', 1, 'https://ror.org/0338qbx87 Ecology and Evolutionary Biology Society of Turkey Ekoloji ve Evrimsel Biyoloji Derneği'),
(111335, 'https://ror.org/05r6d4v68', 'es', 1, 'https://ror.org/05r6d4v68 Centro MƩdico Sanitas Murcia Sanitas Murcia Medical Centre'),
(111336, 'https://ror.org/05vf9ay78', 'fr', 1, 'https://ror.org/05vf9ay78 Ecole Nationale SupĆ©rieure de Sciences Politiques المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų³ŁŠŲ§Ų³ŁŠŲ©'),
(111337, 'https://ror.org/00awy4551', 'en', 1, 'https://ror.org/00awy4551 Ukrainian Institute of Arts and Sciences'),
(111338, 'https://ror.org/02y5f7c97', 'en', 1, 'https://ror.org/02y5f7c97 Association of Universities for Research in Astronomy'),
(111339, 'https://ror.org/01py0v579', 'no_lang_code', 1, 'https://ror.org/01py0v579 eSOL eSOL (Japan) eSOL Co. Ltd.'),
(111340, 'https://ror.org/05xa3qt90', 'en', 1, 'https://ror.org/05xa3qt90 Finnish Association of Researchers Forskarfƶrbundet i Finland ry Tutkijaliitto ry'),
(111341, 'https://ror.org/045vs8r92', 'en', 1, 'https://ror.org/045vs8r92 Finnish European Studies Association Finska Fƶreningen fƶr Europaforskning Suomen Eurooppa-tutkimuksen seura ry'),
(111342, 'https://ror.org/04r34kg48', 'no_lang_code', 1, 'https://ror.org/04r34kg48 Energie NB Power (Canada) Ɖnergie NB'),
(111343, 'https://ror.org/0340twe86', 'en', 1, 'https://ror.org/0340twe86 Mir Chakar Khan Rind University'),
(111344, 'https://ror.org/05j7gyw58', 'fr', 1, 'https://ror.org/05j7gyw58 Ati University of Science and Technology UniversitƩ des Sciences et de Technologie d''Ati'),
(111345, 'https://ror.org/03vdbkq52', 'en', 1, 'https://ror.org/03vdbkq52 Association canadienne des écoles de sciences infirmières Canadian Association of Schools of Nursing'),
(111346, 'https://ror.org/04f9rh541', 'fr', 1, 'https://ror.org/04f9rh541 Pays Germaniques'),
(111347, 'https://ror.org/027eejh88', 'no_lang_code', 1, 'https://ror.org/027eejh88 Sakana AI Sakana AI (Japan)'),
(111348, 'https://ror.org/014sxh290', 'en', 1, 'https://ror.org/014sxh290 Minorities in Shark Sciences'),
(111349, 'https://ror.org/037dgft74', 'en', 1, 'https://ror.org/037dgft74 Metalchemy Metalchemy (United Kingdom) Metalchemy Limited'),
(111350, 'https://ror.org/027m8zy97', 'en', 1, 'https://ror.org/027m8zy97 Agricultural Research Center Aqrar Tədqiqatlar Mərkəzi'),
(111351, 'https://ror.org/00ejy4812', 'en', 1, 'https://ror.org/00ejy4812 Finnish Society of Telemedicine and eHealth Suomen TelelƤƤketieteen ja e-Health seura (STeHS)'),
(111352, 'https://ror.org/03jqqba05', 'fr', 1, 'https://ror.org/03jqqba05 UniversitƩ de DƩdougou'),
(111353, 'https://ror.org/01zprvt93', 'en', 1, 'https://ror.org/01zprvt93 ALSALAM International for Development & Agricultural Investment ALSALAM International for Development & Agricultural Investment (Egypt)'),
(111354, 'https://ror.org/032xdry56', 'en', 1, 'https://ror.org/032xdry56 Agentschap Innoveren & Ondernemen Flanders Innovation and Entrepreneurship'),
(111355, 'https://ror.org/031c62s89', 'en', 1, 'https://ror.org/031c62s89 Adult Education Research Society Aikuiskasvatuksen Tutkimusseura ForskningssƤllskapet fƶr vuxenutbildning'),
(111356, 'https://ror.org/04310tc15', 'fr', 1, 'https://ror.org/04310tc15 Laboratoire de Cristallographie et Sciences des MatƩriaux'),
(111357, 'https://ror.org/04bnsmc96', 'en', 1, 'https://ror.org/04bnsmc96 Ukrainian Nature Conservation Group Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° прироГоохоронна Š³Ń€ŃƒŠæŠ°'),
(111358, 'https://ror.org/056mmjd70', 'fr', 1, 'https://ror.org/056mmjd70 Modélisation et Ingénierie des Systèmes Complexes Biologiques pour le Diagnostic'),
(111359, 'https://ror.org/02he5dz58', 'fr', 1, 'https://ror.org/02he5dz58 Centre for Cognitive Neuroscience Institut de sciences cognitives Marc Jeannerod Institut des Sciences Cognitives Marc Jeannerod'),
(111360, 'https://ror.org/01zndrn87', 'en', 1, 'https://ror.org/01zndrn87 Finlands Keltologiska SƤllskap (SFKS) Finnish Society for Celtic Studies Suomen Keltologinen Seura'),
(111361, 'https://ror.org/01s0ssk34', 'fr', 1, 'https://ror.org/01s0ssk34 HƓpitaux universitaires Paris Sud'),
(111362, 'https://ror.org/03sjhzv65', 'en', 1, 'https://ror.org/03sjhzv65 Federal Neuro-Psychiatric Hospital, Calabar'),
(111363, 'https://ror.org/03xhv9997', 'en', 1, 'https://ror.org/03xhv9997 The Medical City Ortigas'),
(111364, 'https://ror.org/00ts5sv17', 'en', 1, 'https://ror.org/00ts5sv17 Biocentis Biocentis (Italy)'),
(111365, 'https://ror.org/04wvkky61', 'en', 0, 'https://ror.org/04wvkky61 Southern General Hospital'),
(111366, 'https://ror.org/01tfx4p51', 'en', 1, 'https://ror.org/01tfx4p51 National Medical Research Center of Surgery named after A. Vishnevsky ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø имени А.Š’. Š’ŠøŃˆŠ½ŠµŠ²ŃŠŗŠ¾Š³Š¾'),
(111367, 'https://ror.org/0182x4x40', 'en', 1, 'https://ror.org/0182x4x40 Finnish Association for Administrative Studies Hallinnon Tutkimuksen Seura SƤllskapet fƶr fƶrvaltningsforskning'),
(111368, 'https://ror.org/00357kh21', 'fr', 1, 'https://ror.org/00357kh21 Maladies Infectieuses et Vecteurs: Ɖcologie, GĆ©nĆ©tique, Ɖvolution et ContrĆ“le'),
(111369, 'https://ror.org/03sc4n560', 'en', 1, 'https://ror.org/03sc4n560 Neuralix Inc. Neuralix Inc. (United States)'),
(111370, 'https://ror.org/03vttse06', 'en', 1, 'https://ror.org/03vttse06 Hymnologian ja liturgiikan seura ry SƤllskapet fƶr hymnologi och liturgik The Finnish Society for Hymnology and Liturgy'),
(111371, 'https://ror.org/02a4e1x23', 'en', 1, 'https://ror.org/02a4e1x23 Finnish Society of International Law Suomen KansainvƤlisoikeudellinen Seura'),
(111372, 'https://ror.org/04kadgz77', 'fr', 1, 'https://ror.org/04kadgz77 Surface du Verre et Interfaces'),
(111373, 'https://ror.org/042cesy50', 'fr', 1, 'https://ror.org/042cesy50 Institut de Physique de Nice'),
(111374, 'https://ror.org/01gnh5n78', 'es', 1, 'https://ror.org/01gnh5n78 Centro MƩdico Sanitas Sevilla Los Remedios Sanitas Sevilla Los Remedios Medical Centre'),
(111375, 'https://ror.org/024vkek24', 'en', 1, 'https://ror.org/024vkek24 Kuwait Technical College ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁˆŁŠŲŖ Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(111376, 'https://ror.org/00br60m67', 'en', 1, 'https://ror.org/00br60m67 Finnish Society for Medieval Archaeology Societas Archaeologiae Medii Aevi Finlandiae Suomen keskiajan arkeologian seura SƤllskapet fƶr medeltidsarkeologi i Finland'),
(111377, 'https://ror.org/036f5mx38', 'en', 1, 'https://ror.org/036f5mx38 Space Telescope Science Institute'),
(111378, 'https://ror.org/024dzaa63', 'en', 1, 'https://ror.org/024dzaa63 Islamic University of Najaf الجامعة Ų§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠŲ© في النجف الاؓرف'),
(111379, 'https://ror.org/055ymkj32', 'fr', 1, 'https://ror.org/055ymkj32 Adhesion and Inflammation Lab Laboratoire AdhƩsion et inflammation'),
(111380, 'https://ror.org/01bvkzq91', 'en', 1, 'https://ror.org/01bvkzq91 Zimbabwe Ezekiel Guti University Press'),
(111381, 'https://ror.org/02bcfch31', 'en', 1, 'https://ror.org/02bcfch31 University of Future Transformation Університет трансформації Š¼Š°Š¹Š±ŃƒŃ‚Š½ŃŒŠ¾Š³Š¾'),
(111382, 'https://ror.org/01qb1sw63', 'it', 1, 'https://ror.org/01qb1sw63 Centro Ricerche Enrico Fermi'),
(111383, 'https://ror.org/04tq61m59', 'en', 1, 'https://ror.org/04tq61m59 Suomen Vammaistutkimuksen Seura SƤllskapet fƶr handikappsforskning i Finland The Finnish Society of Disability Studies'),
(111384, 'https://ror.org/01fn4zr85', 'en', 1, 'https://ror.org/01fn4zr85 Institute of Management Development and Research'),
(111385, 'https://ror.org/03c9r2283', 'fr', 1, 'https://ror.org/03c9r2283 Verechaguine A.K. School of Civil Engineering Ɖcole SupĆ©rieure de GĆ©nie Civil VĆ©rĆ©chaguine AK'),
(111386, 'https://ror.org/04qcebk79', 'de', 1, 'https://ror.org/04qcebk79 Austrian National Defence Academy Landesverteidigungsakademie'),
(111387, 'https://ror.org/017je3b10', 'fr', 1, 'https://ror.org/017je3b10 Crystallography, Magnetic Resonance and Modeling Laboratory Labor für Kristallographie, Kernspinresonanz und Modellierung Laboratoire de Cristallographie, Résonance Magnétique et Modélisations'),
(111388, 'https://ror.org/023n3bf88', 'en', 1, 'https://ror.org/023n3bf88 State College of Health Sciences'),
(111389, 'https://ror.org/002rjbv21', 'fr', 1, 'https://ror.org/002rjbv21 University of Quebec in Montreal UniversitƩ du QuƩbec Ơ MontrƩal'),
(111390, 'https://ror.org/01qpwsp84', 'en', 1, 'https://ror.org/01qpwsp84 Nigeria Natural Medicine Development Agency'),
(111391, 'https://ror.org/04c1ygb30', 'en', 1, 'https://ror.org/04c1ygb30 Finnish Association for Industrial Property Rights Finska Fƶreningen fƶr industriellt rƤttsskydd Suomen Teollisoikeudellinen Yhdistys'),
(111392, 'https://ror.org/02y9ntj21', 'en', 1, 'https://ror.org/02y9ntj21 ICOMOS Finnish National Committee ICOMOS Finska national kommitteƩn ICOMOSin Suomen osasto'),
(111393, 'https://ror.org/01mc1cc12', 'en', 1, 'https://ror.org/01mc1cc12 Tissemsilt University Ų¬Ų§Ł…Ų¹Ų© ŲŖŁŠŲ³Ł…Ų³ŁŠŁ„ŲŖ'),
(111394, 'https://ror.org/05x9p3f75', 'no', 1, 'https://ror.org/05x9p3f75 Museum Nord'),
(111395, 'https://ror.org/018beez50', 'en', 1, 'https://ror.org/018beez50 Myanmar Medical Association į€™į€¼į€”į€ŗį€™į€¬į€”į€­į€Æį€„į€ŗį€„į€¶į€†į€›į€¬į€į€”į€ŗį€”į€žį€„į€ŗį€ø'),
(111396, 'https://ror.org/05je79696', 'fr', 1, 'https://ror.org/05je79696 Interdisciplinary Laboratory for Continental Environments Laboratoire Interdisciplinaire des Environnements Continentaux'),
(111397, 'https://ror.org/033a7pe30', 'en', 1, 'https://ror.org/033a7pe30 Goalpara College গোয়ালপারা ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(111398, 'https://ror.org/00d57sb59', 'en', 1, 'https://ror.org/00d57sb59 Finnish Economic Association Nationalekonomiska Fƶreningen Taloustieteellinen Yhdistys'),
(111399, 'https://ror.org/05arfhc56', 'en', 1, 'https://ror.org/05arfhc56 University of Rajasthan UniversitĆ© du rajasthan ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਰਾਜਸ਄ਾਨ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(111400, 'https://ror.org/00qyswv14', 'fr', 1, 'https://ror.org/00qyswv14 Laboratoire d’informatique ParallĆ©lisme RĆ©seaux Algorithmes DistribuĆ©s'),
(111401, 'https://ror.org/042j26x71', 'fr', 1, 'https://ror.org/042j26x71 Centre de recherche Versailles Saint-Quentin Institutions Publiques'),
(111402, 'https://ror.org/021ddkf20', 'fr', 1, 'https://ror.org/021ddkf20 Institut de Recherches Historiques du Septentrion'),
(111403, 'https://ror.org/0083v8891', 'es', 1, 'https://ror.org/0083v8891 Universidad Tecnológica de Saltillo'),
(111404, 'https://ror.org/01b1tj713', 'en', 1, 'https://ror.org/01b1tj713 Finnish Neurological Association Neurologiska Fƶreningen i Finland Suomen neurologinen yhdistys'),
(111405, 'https://ror.org/00bexrv72', 'id', 1, 'https://ror.org/00bexrv72 Medan State Polytechnic Politeknik Negeri Medan'),
(111406, 'https://ror.org/002pfnf57', 'en', 1, 'https://ror.org/002pfnf57 Senckenberg Institute for Plant Form and Function Jena'),
(111407, 'https://ror.org/01x3dve48', 'es', 1, 'https://ror.org/01x3dve48 Centro de Rehabilitación Avanzada Sanitas Serrano Sanitas Serrano Advanced Rehabilitation Centre'),
(111408, 'https://ror.org/01sf06y89', 'en', 1, 'https://ror.org/01sf06y89 Macquarie University'),
(111409, 'https://ror.org/05kxdq627', 'fr', 1, 'https://ror.org/05kxdq627 Jardins botaniques du Grand Nancy et de l''UniversitƩ de Lorraine'),
(111410, 'https://ror.org/04nzxq235', 'fr', 1, 'https://ror.org/04nzxq235 Djibo Hamani University UniversitƩ Djibo Hamani'),
(111411, 'https://ror.org/033czgg21', 'en', 1, 'https://ror.org/033czgg21 State Enterprise "Ukrainian Scientific Railway Car Building Research Institute" Державне піГприємство ā€œŠ£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Š°Š³Š¾Š½Š¾Š±ŃƒŠ“ŃƒŠ²Š°Š½Š½Ńā€'),
(111412, 'https://ror.org/00xjw1x97', 'es', 1, 'https://ror.org/00xjw1x97 Universidad Tecnológica de San Luis Potosí'),
(111413, 'https://ror.org/04h08p482', 'no_lang_code', 1, 'https://ror.org/04h08p482 Rolls-Royce Rolls-Royce (United Kingdom)'),
(111414, 'https://ror.org/002xqbd08', 'en', 1, 'https://ror.org/002xqbd08 Information and Communications Technology Academy'),
(111415, 'https://ror.org/02y2c2646', 'fr', 0, 'https://ror.org/02y2c2646 Adaptation Biologique et Vieillissement Biological Adaptation and Ageing'),
(111416, 'https://ror.org/01j33xk10', 'it', 1, 'https://ror.org/01j33xk10 Fondazione Bruno Kessler'),
(111417, 'https://ror.org/05wq02383', 'en', 1, 'https://ror.org/05wq02383 Institute for BioEconomy Istituto per la BioEconomia'),
(111418, 'https://ror.org/00vkd8x05', 'en', 1, 'https://ror.org/00vkd8x05 Selangor Islamic University Universiti Islam Selangor الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ŲØŲ³Ł„Ų§Ł†Ų¬ŁˆŲ±'),
(111419, 'https://ror.org/04g9vz245', 'id', 1, 'https://ror.org/04g9vz245 Bhamada University Slawi Universitas Bhamada Slawi'),
(111420, 'https://ror.org/05apf4k11', 'en', 1, 'https://ror.org/05apf4k11 Myanmar Liver Foundation မြန်မာနိုင်ငံ į€”į€žį€Šį€ŗį€øį€–į€±į€¬į€„į€ŗį€’į€±į€øį€›į€¾į€„į€ŗį€ø'),
(111421, 'https://ror.org/02wy4ac67', 'fr', 1, 'https://ror.org/02wy4ac67 DƩlƩgation Alsace'),
(111422, 'https://ror.org/02jnxpg76', 'en', 1, 'https://ror.org/02jnxpg76 Ministry of Finance of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½č“¢ę”æéƒØ'),
(111423, 'https://ror.org/04bpn6s66', 'en', 1, 'https://ror.org/04bpn6s66 Beijing Municipal Education Commission åŒ—äŗ¬åø‚ę•™č‚²å§”å‘˜ä¼š'),
(111424, 'https://ror.org/0536cgq50', 'en', 1, 'https://ror.org/0536cgq50 Buenavista Community College'),
(111425, 'https://ror.org/04mywez65', 'fr', 1, 'https://ror.org/04mywez65 Agents infectieux, rƩsistance et chimiothƩrapie'),
(111426, 'https://ror.org/04jn1bv21', 'de', 1, 'https://ror.org/04jn1bv21 IFDT - Institut für Digitale Technologien'),
(111427, 'https://ror.org/02vap8294', 'en', 1, 'https://ror.org/02vap8294 Cleveland Dental Institute'),
(111428, 'https://ror.org/05s2fqz02', 'en', 1, 'https://ror.org/05s2fqz02 Universidad de Puerto Rico en Utuado University of Puerto Rico at Utuado'),
(111429, 'https://ror.org/02faxbd19', 'en', 1, 'https://ror.org/02faxbd19 Bethel University'),
(111430, 'https://ror.org/01q9pd408', 'nl', 1, 'https://ror.org/01q9pd408 Huisartsenpraktijk Meander'),
(111431, 'https://ror.org/04dtrtr74', 'en', 1, 'https://ror.org/04dtrtr74 IFMR Graduate School of Business'),
(111432, 'https://ror.org/02wz9mw49', 'id', 1, 'https://ror.org/02wz9mw49 Sekolah Tinggi Teologi Injili Indonesia Yogyakarta'),
(111433, 'https://ror.org/04m5jhc07', 'fr', 0, 'https://ror.org/04m5jhc07 Virologie de l''hƩpatite C'),
(111434, 'https://ror.org/04w9m1f21', 'it', 1, 'https://ror.org/04w9m1f21 Aeronautica Militare Italian Air Force'),
(111435, 'https://ror.org/03kre0g15', 'en', 1, 'https://ror.org/03kre0g15 Bank of Israel בנק ×™×©×Ø××œ ŲØŁ†Łƒ Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„'),
(111436, 'https://ror.org/04f90ax67', 'en', 1, 'https://ror.org/04f90ax67 Ministry of Health and Population وزارة الصحة - الصفحة Ų§Ł„Ų±Ų¦ŁŠŲ³ŁŠŲ©'),
(111437, 'https://ror.org/03r1pw664', 'fr', 0, 'https://ror.org/03r1pw664 Conception, synthèse et vectorisation de biomolécules');
INSERT INTO `rors` VALUES
(111438, 'https://ror.org/02kx1aw31', 'fr', 0, 'https://ror.org/02kx1aw31 UnitƩ de Recherche en DƩveloppement, Imagerie et Anatomie'),
(111439, 'https://ror.org/04x6wax64', 'de', 1, 'https://ror.org/04x6wax64 Institut für Klinische Neuroimmunologie Institute of Clinical Neuroimmunology'),
(111440, 'https://ror.org/03kjmz544', 'fr', 0, 'https://ror.org/03kjmz544 UniversitƩ de Nantes'),
(111441, 'https://ror.org/04e2jep17', 'en', 1, 'https://ror.org/04e2jep17 Croydon University Hospital'),
(111442, 'https://ror.org/04e41qn78', 'en', 1, 'https://ror.org/04e41qn78 Air Line Pilots Association'),
(111443, 'https://ror.org/01sjwvz98', 'ja', 1, 'https://ror.org/01sjwvz98 RIKEN ē†åŒ–å­¦ē ”ē©¶ę‰€'),
(111444, 'https://ror.org/018yhvz21', 'fr', 0, 'https://ror.org/018yhvz21 Clinical Research City Hospital Methodologies and Society Recherche Clinique ville-hƓpital, MƩthodologies et SociƩtƩ'),
(111445, 'https://ror.org/03gc4br58', 'de', 1, 'https://ror.org/03gc4br58 Institut für Ethik, Geschichte und Theorie der Medizin Institute for the Ethics, History and Theory of Medicine'),
(111446, 'https://ror.org/05hdxka83', 'fr', 0, 'https://ror.org/05hdxka83 UniversitƩ PanthƩon-Assas'),
(111447, 'https://ror.org/02mf8ey61', 'en', 1, 'https://ror.org/02mf8ey61 Kaya University åŠ č€¶å¤§å­¦ę ” åŠ č€¶å¤§å­øę ” ź°€ģ•¼ėŒ€ķ•™źµ'),
(111448, 'https://ror.org/01zj1kk27', 'it', 0, 'https://ror.org/01zj1kk27 Centro di Ricerca sulla Tradizione Filologica Europea Research Centre for European Philological Tradition'),
(111449, 'https://ror.org/01yz9xh49', 'fr', 0, 'https://ror.org/01yz9xh49 Service de Recherches en HƩmato-Immunologie'),
(111450, 'https://ror.org/052jx3443', 'en', 0, 'https://ror.org/052jx3443 Institute of Nuclear Energy Research ę øčƒ½ē ”ē©¶ę‰€'),
(111451, 'https://ror.org/05bsaay65', 'en', 1, 'https://ror.org/05bsaay65 West Midlands Ambulance Service University NHS Foundation Trust'),
(111452, 'https://ror.org/0542cwx04', 'fr', 0, 'https://ror.org/0542cwx04 Analyse Linguistique Profonde Ć  Grande Echelle'),
(111453, 'https://ror.org/01pw9dq94', 'fr', 0, 'https://ror.org/01pw9dq94 VariabilitƩ GƩnƩtique et Maladies Humaines'),
(111454, 'https://ror.org/03hxyy717', 'de', 1, 'https://ror.org/03hxyy717 Institut für Humangenetik Institute of Human Genetics'),
(111455, 'https://ror.org/030br0314', 'en', 1, 'https://ror.org/030br0314 Notre Dame University – Louaize Ų¬Ų§Ł…Ų¹Ų© سيدة Ų§Ł„Ł„ŁˆŁŠŲ²Ų©'),
(111456, 'https://ror.org/030cszc07', 'en', 0, 'https://ror.org/030cszc07 Australian Astronomical Observatory'),
(111457, 'https://ror.org/00r0qs524', 'no_lang_code', 1, 'https://ror.org/00r0qs524 FAIR Data Infrastructure for Agrosystems FAIRagro FAIRe Dateninfrastruktur für die Agrosystemforschung'),
(111458, 'https://ror.org/04grq1g73', 'fr', 1, 'https://ror.org/04grq1g73 Centre amiƩnois de recherche en Ʃducation et formation'),
(111459, 'https://ror.org/04w7hre37', 'en', 1, 'https://ror.org/04w7hre37 Universidad de Puerto Rico en Aguadilla University of Puerto Rico at Aguadilla'),
(111460, 'https://ror.org/04bzgtz06', 'en', 1, 'https://ror.org/04bzgtz06 Takuvik Joint International Laboratory'),
(111461, 'https://ror.org/051wpfh59', 'en', 1, 'https://ror.org/051wpfh59 CMH Multan Institute of Medical Sciences'),
(111462, 'https://ror.org/00f7sjz58', 'es', 1, 'https://ror.org/00f7sjz58 Universidad Tecnológica de TecÔmac'),
(111463, 'https://ror.org/00d4vd957', 'en', 1, 'https://ror.org/00d4vd957 Global Research Labs'),
(111464, 'https://ror.org/001kwz481', 'en', 1, 'https://ror.org/001kwz481 ERIG a.i.s.b.l. European Research Institute for Gas and Energy Innovation'),
(111465, 'https://ror.org/0240bsv43', 'en', 1, 'https://ror.org/0240bsv43 SIMEC Institute of Technology'),
(111466, 'https://ror.org/05h1e3230', 'id', 1, 'https://ror.org/05h1e3230 Politeknik Teknologi Nuklir Indonesia Polytechnic Institutes of Nuclear Technology'),
(111467, 'https://ror.org/000q0mx12', 'en', 0, 'https://ror.org/000q0mx12 Jawzjan University Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų¬ŁˆŲ²Ų¬Ų§Ł†'),
(111468, 'https://ror.org/03aj15b39', 'es', 1, 'https://ror.org/03aj15b39 Escola Naval Militar Escuela Naval Militar Spanish Naval Academy'),
(111469, 'https://ror.org/004gzqz66', 'fr', 1, 'https://ror.org/004gzqz66 Institut de physique du globe de Paris Paris Institute of Earth Physics'),
(111470, 'https://ror.org/01e536d88', 'en', 1, 'https://ror.org/01e536d88 National Higher School of Technology and Engineering Annaba Ɖcole Nationale SupĆ©rieure de Technologie et d''IngĆ©nierie - Annaba المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ł‡Ł†ŲÆŲ³Ų© –عنابة'),
(111471, 'https://ror.org/00r2ye360', 'en', 1, 'https://ror.org/00r2ye360 Vitalant Research Institute'),
(111472, 'https://ror.org/040g1y854', 'en', 1, 'https://ror.org/040g1y854 Guangdong Laboratory of Artificial Intelligence and Digital Economy (Shenzhen) äŗŗå·„ę™ŗčƒ½äøŽę•°å­—ē»ęµŽå¹æäøœēœå®žéŖŒå®¤ļ¼ˆę·±åœ³)'),
(111473, 'https://ror.org/05b5jha84', 'en', 1, 'https://ror.org/05b5jha84 Toyota Motor North America Research & Development Toyota Motor North America Research & Development (United States)'),
(111474, 'https://ror.org/02bhp7a56', 'fr', 1, 'https://ror.org/02bhp7a56 Ecologie et Dynamique des Systèmes Anthropisés Ecology and Dynamics of Human Influenced Systems'),
(111475, 'https://ror.org/02d0g4295', 'en', 1, 'https://ror.org/02d0g4295 Digital Botanical Gardens Initiative'),
(111476, 'https://ror.org/00nts2374', 'de', 1, 'https://ror.org/00nts2374 Institut für Infektions- und Tropenmedizin Institute of Infectious Diseases and Tropical Medicine'),
(111477, 'https://ror.org/01rt7wc31', 'en', 1, 'https://ror.org/01rt7wc31 Franciscan School of Theology'),
(111478, 'https://ror.org/02rg98h11', 'es', 1, 'https://ror.org/02rg98h11 Centro de Investigaciones Feministas y Estudios de GƩnero'),
(111479, 'https://ror.org/002weee54', 'en', 1, 'https://ror.org/002weee54 CHRR at The Ohio State University'),
(111480, 'https://ror.org/03ze5ke63', 'en', 1, 'https://ror.org/03ze5ke63 Qingdao Municipal Science and Technology Bureau é’å²›åø‚ē§‘å­¦ęŠ€ęœÆå±€_é’å²›ę”æåŠ”ē½‘'),
(111481, 'https://ror.org/03k0jyt11', 'en', 1, 'https://ror.org/03k0jyt11 PurePave Technologies Inc. PurePave Technologies Inc. (Canada)'),
(111482, 'https://ror.org/00egvdg84', 'en', 1, 'https://ror.org/00egvdg84 Nigerian Institute of Leather and Science Technology'),
(111483, 'https://ror.org/00dfd1509', 'fr', 1, 'https://ror.org/00dfd1509 Ministry for Europe and Foreign Affairs Ministère de l''Europe et des Affaires étrangères'),
(111484, 'https://ror.org/00d3pnh21', 'en', 1, 'https://ror.org/00d3pnh21 Horia Hulubei National Institute for R and D in Physics and Nuclear Engineering Institutul National de Cercetare-Dezvoltare pentru Fizica si Inginerie Nucleara Horia Hulubei Horia'),
(111485, 'https://ror.org/059kkev78', 'en', 1, 'https://ror.org/059kkev78 Saint Joseph College'),
(111486, 'https://ror.org/00y2mbn60', 'en', 1, 'https://ror.org/00y2mbn60 Starr King School for the Ministry'),
(111487, 'https://ror.org/04jd9ff79', 'en', 1, 'https://ror.org/04jd9ff79 Acoustics Research Institute Institut für Schallforschung'),
(111488, 'https://ror.org/052bnvt46', 'fr', 1, 'https://ror.org/052bnvt46 Institut National des Postes et TĆ©lĆ©communications المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŲØŲ±ŁŠŲÆ ŁˆŲ§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ'),
(111489, 'https://ror.org/039dabd75', 'en', 1, 'https://ror.org/039dabd75 Huntington Hospital'),
(111490, 'https://ror.org/04sjchr03', 'fr', 1, 'https://ror.org/04sjchr03 Laval University UniversitƩ Laval'),
(111491, 'https://ror.org/020rfvw83', 'pt', 1, 'https://ror.org/020rfvw83 Instituto de CiĆŖncias Sociais da Universidade de Lisboa'),
(111492, 'https://ror.org/007czgh25', 'en', 1, 'https://ror.org/007czgh25 CT University'),
(111493, 'https://ror.org/03keztm33', 'fr', 1, 'https://ror.org/03keztm33 Hématopoïèse et immunologie'),
(111494, 'https://ror.org/05brss208', 'fr', 1, 'https://ror.org/05brss208 Laboratoire de physique de la matière condensée'),
(111495, 'https://ror.org/028njx347', 'de', 1, 'https://ror.org/028njx347 International University Liebenzell Internationale Hochschule Liebenzell'),
(111496, 'https://ror.org/027z2pe53', 'fr', 1, 'https://ror.org/027z2pe53 Centre de recherche sur le travail et le dƩveloppement'),
(111497, 'https://ror.org/01v9vbn43', 'fr', 1, 'https://ror.org/01v9vbn43 Centre de droit privƩ et de sciences criminelles d''Amiens'),
(111498, 'https://ror.org/029nkcm90', 'fr', 1, 'https://ror.org/029nkcm90 Observatoire de Paris Observatori de ParĆ­s Paris Observatory Parisko Behatokia'),
(111499, 'https://ror.org/05h16ba49', 'fr', 0, 'https://ror.org/05h16ba49 Ethique, politique et santĆ© Laboratoire d’éthique mĆ©dicale et de mĆ©decine lĆ©gale Medical Ethics and Legal Medicine Laboratory'),
(111500, 'https://ror.org/01aba3e23', 'fr', 1, 'https://ror.org/01aba3e23 Centre de recherche sur les institutions, l''industrie et les systèmes économiques d''Amiens'),
(111501, 'https://ror.org/00ry58h45', 'fr', 1, 'https://ror.org/00ry58h45 Laboratoire des technologies innovantes'),
(111502, 'https://ror.org/04yb08h36', 'fr', 0, 'https://ror.org/04yb08h36 MƩdecine PersonnalisƩe, PharmacogƩnomique, Optimisation ThƩrapeutique Pharmacogenomics & Therapeutic optimization'),
(111503, 'https://ror.org/01c62av11', 'fr', 1, 'https://ror.org/01c62av11 Groupe de Recherche sur l''Alcool et les PharmacodƩpendances'),
(111504, 'https://ror.org/0572mqn31', 'es', 1, 'https://ror.org/0572mqn31 Instituto CientĆ­fico Michael Owen Dillon'),
(111505, 'https://ror.org/04h0mx776', 'en', 1, 'https://ror.org/04h0mx776 Social Capital Foundation Social Capital Stitching'),
(111506, 'https://ror.org/04pkcw582', 'en', 1, 'https://ror.org/04pkcw582 SS Peter and Paul Major Seminary, Bodija'),
(111507, 'https://ror.org/04x99ab60', 'fr', 0, 'https://ror.org/04x99ab60 Génétique des Virus et Pathogénèse des Maladies Virales'),
(111508, 'https://ror.org/02jw8vr54', 'en', 1, 'https://ror.org/02jw8vr54 Central Marine Fisheries Research Institute ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„ą¤¦ą„ą¤°ą„€ ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®®ą®¤ąÆą®¤ą®æą®Æ ą®•ą®Ÿą®²ąÆą®®ąÆ€ą®©ąÆą®µą®³ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®²ąÆˆą®Æą®®ąÆ'),
(111509, 'https://ror.org/02fa5cb34', 'de', 1, 'https://ror.org/02fa5cb34 Institut für Schlaganfall- und Demenzforschung Institute for Stroke and Dementia Research'),
(111510, 'https://ror.org/03ay2mw04', 'en', 1, 'https://ror.org/03ay2mw04 Kenule Beeson Saro-Wiwa Polytechnic, Bori'),
(111511, 'https://ror.org/02rhp5f96', 'en', 1, 'https://ror.org/02rhp5f96 Mulago Hospital'),
(111512, 'https://ror.org/05kyfde14', 'en', 1, 'https://ror.org/05kyfde14 Akhtar Saeed Medical and Dental College Ų§Ų®ŲŖŲ± سعید Ł…ŪŒŚˆŪŒŚ©Ł„ Ų§ŪŒŁ†Śˆ ŚˆŪŒŁ†Ł¹Ł„ کالج'),
(111513, 'https://ror.org/03r08g441', 'en', 1, 'https://ror.org/03r08g441 Uganda Heart Institute'),
(111514, 'https://ror.org/03twnjp38', 'en', 1, 'https://ror.org/03twnjp38 University of Global Village (UGV) ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦—ą§ą¦²ą§‹ą¦¬ą¦¾ą¦² ą¦­ą¦æą¦²ą§‡ą¦œ (ą¦‡ą¦‰ą¦œą¦æą¦­ą¦æ)'),
(111515, 'https://ror.org/03dftj863', 'de', 1, 'https://ror.org/03dftj863 Anatomische Anstalt Institute of Anatomy'),
(111516, 'https://ror.org/02ht85j57', 'fr', 1, 'https://ror.org/02ht85j57 Textes, reprƩsentations, archƩologie, autoritƩ et mƩmoire de l''antiquitƩ Ơ la renaissance'),
(111517, 'https://ror.org/05ewvzm89', 'fr', 1, 'https://ror.org/05ewvzm89 PƩrinatalitƩ & Risques Toxiques'),
(111518, 'https://ror.org/050vtce60', 'en', 1, 'https://ror.org/050vtce60 Scientific Institution "Research Center for Sustainable Development" ŠŠ°ŃƒŠŗŠ¾Š²Š° ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Центр Дталого Š Š¾Š·Š²ŠøŃ‚ŠŗŃƒ"'),
(111519, 'https://ror.org/00xmkb790', 'ms', 1, 'https://ror.org/00xmkb790 Universiti Malaysia Perlis University of Malaysia, Perlis'),
(111520, 'https://ror.org/02d1qvx24', 'en', 1, 'https://ror.org/02d1qvx24 The Kaavery Pharmacy College'),
(111521, 'https://ror.org/02cgss904', 'en', 1, 'https://ror.org/02cgss904 Kumamoto University ē†Šęœ¬å¤§å­¦'),
(111522, 'https://ror.org/02ff43k45', 'en', 1, 'https://ror.org/02ff43k45 Egyptian Drug Authority Ł‡ŁŠŲ¦Ų© Ų§Ł„ŲÆŁˆŲ§Ų” Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(111523, 'https://ror.org/01m5tsd56', 'fr', 0, 'https://ror.org/01m5tsd56 Infection Ơ VIH, rƩservoirs, diversitƩ gƩnƩtique et rƩsistance aux antirƩtroviraux'),
(111524, 'https://ror.org/02yjyfs84', 'en', 1, 'https://ror.org/02yjyfs84 Max Planck Institute for Neurobiology of Behavior – caesar'),
(111525, 'https://ror.org/0159cmf83', 'en', 1, 'https://ror.org/0159cmf83 St Peter''s Hospital'),
(111526, 'https://ror.org/03gnetz82', 'en', 1, 'https://ror.org/03gnetz82 Nigerian Institute of Food Science and Technology'),
(111527, 'https://ror.org/00jmtdy57', 'en', 0, 'https://ror.org/00jmtdy57 Atomic Energy Council'),
(111528, 'https://ror.org/00dvgvh64', 'en', 1, 'https://ror.org/00dvgvh64 Allergen Research Center Allergen Research Center Ltd. Ośrodek Badania Alergenów Środowiskowych'),
(111529, 'https://ror.org/02jet3w32', 'de', 1, 'https://ror.org/02jet3w32 LMU Klinikum'),
(111530, 'https://ror.org/02drend50', 'en', 0, 'https://ror.org/02drend50 University of Africa Toru-Orua'),
(111531, 'https://ror.org/04eb1yz45', 'de', 1, 'https://ror.org/04eb1yz45 Institut für Medizinische Informationsverarbeitung, Biometrie und Epidemiologie Medical Information Processing, Biometry, and Epidemiology'),
(111532, 'https://ror.org/01fwt7148', 'en', 1, 'https://ror.org/01fwt7148 Gokhale Education Society’s College of Education and Research'),
(111533, 'https://ror.org/02j8tjh47', 'nl', 1, 'https://ror.org/02j8tjh47 Parkinson Platform Noord Nederland Parkinson Platform Northern Netherlands Stichting Parkinson Platform Noord Nederland'),
(111534, 'https://ror.org/03srr8962', 'en', 1, 'https://ror.org/03srr8962 British School of Monteria Colegio BritƔnico de Monterƭa'),
(111535, 'https://ror.org/022hvg611', 'en', 1, 'https://ror.org/022hvg611 RIKEN Center for Interdisciplinary Theoretical and Mathematical Sciences ē†åŒ–å­¦ē ”ē©¶ę‰€ ę•°ē†å‰µé€ ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(111536, 'https://ror.org/05fdjta65', 'en', 0, 'https://ror.org/05fdjta65 Korea Workers'' Compensation and Welfare Service ź·¼ė”œė³µģ§€ź³µė‹Ø'),
(111537, 'https://ror.org/00jpzfk69', 'en', 1, 'https://ror.org/00jpzfk69 Kabul Education University دکابل ŲÆ ŚšŁˆŁˆŁ†Ū او Ų±ŁˆŲ²Ł†Ū Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲŖŲ¹Ł„ŪŒŁ… و ŲŖŲ±ŲØŪŒŁ‡ کابل'),
(111538, 'https://ror.org/00y11b431', 'en', 1, 'https://ror.org/00y11b431 National Atomic Research Institute åœ‹å®¶åŽŸå­čƒ½ē§‘ęŠ€ē ”ē©¶é™¢'),
(111539, 'https://ror.org/009b13t02', 'en', 1, 'https://ror.org/009b13t02 Karpagam College of Pharmacy Coimbatore'),
(111540, 'https://ror.org/03rgkxh67', 'fr', 0, 'https://ror.org/03rgkxh67 HomƩostasie cellulaire et cancer : reprogrammation des rƩponses biologiques et thƩrapies alternatives'),
(111541, 'https://ror.org/00z6maj72', 'en', 1, 'https://ror.org/00z6maj72 Polymer Institute of Nigeria'),
(111542, 'https://ror.org/036nj4x83', 'en', 1, 'https://ror.org/036nj4x83 Central Pulp & Paper Research Institute'),
(111543, 'https://ror.org/00km4z122', 'en', 1, 'https://ror.org/00km4z122 Royal Commission for Jubail and Yanbu Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ł„Ł„Ų¬ŲØŁŠŁ„ ŁˆŁŠŁ†ŲØŲ¹'),
(111544, 'https://ror.org/049ajfa91', 'de', 1, 'https://ror.org/049ajfa91 Institut und Poliklinik für Arbeits-, Sozial- und Umweltmedizin Institute and Clinic for Occupational, Social and Environmental Medicine'),
(111545, 'https://ror.org/041ycrh44', 'en', 1, 'https://ror.org/041ycrh44 SRM University Sikkim Shri Ramasamy Memorial University Sikkim'),
(111546, 'https://ror.org/03tw5w184', 'de', 1, 'https://ror.org/03tw5w184 Institut für Kardiovaskuläre Physiologie und Pathophysiologie Institute of Cardiovascular Physiology and Pathophysiology'),
(111547, 'https://ror.org/05e2vjj36', 'en', 1, 'https://ror.org/05e2vjj36 Pacific School of Religion'),
(111548, 'https://ror.org/02mrd2h55', 'fr', 0, 'https://ror.org/02mrd2h55 Epilepsies de l''enfant et plasticitƩ cƩrƩbrale'),
(111549, 'https://ror.org/020db1e56', 'no_lang_code', 1, 'https://ror.org/020db1e56 Joongbu University ģ¤‘ė¶€ėŒ€ķ•™źµ'),
(111550, 'https://ror.org/01wzvw032', 'fr', 0, 'https://ror.org/01wzvw032 University of Valenciennes and Hainaut-CambrƩsis UniversitƩ de Valenciennes et du Hainaut-CambrƩsis'),
(111551, 'https://ror.org/0391zf918', 'en', 1, 'https://ror.org/0391zf918 1854 Treaty Authority'),
(111552, 'https://ror.org/050268k88', 'fr', 0, 'https://ror.org/050268k88 DiffƩrenciation et progression tumorale des lymphocytes'),
(111553, 'https://ror.org/038e2g226', 'no_lang_code', 1, 'https://ror.org/038e2g226 Fujitsu (Japan) åÆŒå£«é€šę Ŗå¼ä¼šē¤¾'),
(111554, 'https://ror.org/04z7bbz18', 'en', 0, 'https://ror.org/04z7bbz18 State Scientific and Technical Center for Nuclear and Radiation Safety'),
(111555, 'https://ror.org/03gfgbw10', 'de', 1, 'https://ror.org/03gfgbw10 Institut für Prophylaxe und Epidemiologie der Kreislaufkrankheiten Institute of Cardiovascular Prevention'),
(111556, 'https://ror.org/04n1s0q44', 'en', 1, 'https://ror.org/04n1s0q44 Rehabilitation Engineering Research Institute ź·¼ė”œė³µģ§€ź³µė‹Ø ģž¬ķ™œź³µķ•™ģ—°źµ¬ģ†Œ'),
(111557, 'https://ror.org/03vv60b83', 'fr', 1, 'https://ror.org/03vv60b83 Laboratoire de physiologie cellulaire et molƩculaire'),
(111558, 'https://ror.org/0076knn86', 'en', 1, 'https://ror.org/0076knn86 Toyota Motor North America Toyota Motor North America (United States)'),
(111559, 'https://ror.org/054v7qb79', 'fr', 0, 'https://ror.org/054v7qb79 Carcinose AngiogenĆØse et Recherche Translationnelle'),
(111560, 'https://ror.org/002zc3t08', 'fr', 0, 'https://ror.org/002zc3t08 Institut de MĆ©canique CĆ©leste et de Calcul des ƉphĆ©mĆ©rides'),
(111561, 'https://ror.org/03cdjre93', 'en', 1, 'https://ror.org/03cdjre93 Institute of Hydrogeology and Engineering Geology State Establishment ā€œInstitute of Hydrogeology and Engineering Geologyā€ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГрогеологии Šø инженерной геологии» ā€œGidrogeologiya va injenerlik geologiyasi institutiā€ davlat muassasasi'),
(111562, 'https://ror.org/01thpaf59', 'en', 1, 'https://ror.org/01thpaf59 Janajyoti Multiple Campus ą¤œą¤Øą¤œą„ą¤Æą„‹ą¤¤ą¤æ ą¤¬ą¤¹ą„ą¤®ą„ą¤–ą„€ ą¤•ą„ą¤Æą¤¾ą¤®ą„ą¤Ŗą¤ø'),
(111563, 'https://ror.org/01q727t61', 'tr', 1, 'https://ror.org/01q727t61 Ermenek Devlet Hastanesi Ermenek State Hospital'),
(111564, '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'),
(111565, 'https://ror.org/03ybxbt61', 'fr', 1, 'https://ror.org/03ybxbt61 University of Garoua UniversitƩ de Garoua'),
(111566, 'https://ror.org/01nrxwf90', 'en', 1, 'https://ror.org/01nrxwf90 Oilthigh Dhùn Èideann University of Edinburgh'),
(111567, 'https://ror.org/05prvhy73', 'en', 1, 'https://ror.org/05prvhy73 Government Degree College Wari Dir Upper'),
(111568, 'https://ror.org/03j307b25', 'fr', 1, 'https://ror.org/03j307b25 Lyon Observatory Observatoire de Lyon'),
(111569, 'https://ror.org/0589kgd85', 'en', 1, 'https://ror.org/0589kgd85 Yukawa Institute for Theoretical Physics äŗ¬éƒ½å¤§å­¦åŸŗē¤Žē‰©ē†å­¦ē ”ē©¶ę‰€'),
(111570, 'https://ror.org/05gnvg690', 'en', 1, 'https://ror.org/05gnvg690 Deenbandhu Chhotu Ram University of Science and Technology ą¤¦ą„€ą¤Øą¤¬ą¤‚ą¤§ą„ ą¤›ą„‹ą¤Ÿą„‚ राम ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ साइंस ą¤ą¤‚ą¤” ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(111571, 'https://ror.org/04cq7sd97', 'en', 1, 'https://ror.org/04cq7sd97 Wrangell–St. Elias National Park and Preserve'),
(111572, 'https://ror.org/022s3b561', 'no_lang_code', 1, 'https://ror.org/022s3b561 LiveRamp LiveRamp (United States)'),
(111573, 'https://ror.org/057kyc739', 'en', 1, 'https://ror.org/057kyc739 Vitalant'),
(111574, 'https://ror.org/02dnm2t22', 'en', 1, 'https://ror.org/02dnm2t22 Berkeley City College'),
(111575, 'https://ror.org/00kcdvz75', 'fr', 0, 'https://ror.org/00kcdvz75 Troubles du comportement alimentaire de l''adolescent'),
(111576, 'https://ror.org/02nk74404', 'en', 1, 'https://ror.org/02nk74404 Ministry of Employment and Labor ź³ ģš©ė…øė™ė¶€'),
(111577, 'https://ror.org/001yeme89', 'en', 1, 'https://ror.org/001yeme89 Eastern Technical University of Sierra Leone'),
(111578, 'https://ror.org/00twhc437', 'en', 1, 'https://ror.org/00twhc437 An Binh hospital Bệnh viện An BƬnh'),
(111579, 'https://ror.org/01tgmhj36', 'en', 1, 'https://ror.org/01tgmhj36 Coventry University'),
(111580, 'https://ror.org/02tt9pw11', 'hr', 1, 'https://ror.org/02tt9pw11 Ministarstvo zaŔtite okoliŔa i zelene tranzicije Ministry of Environmental Protection and Green Transition'),
(111581, 'https://ror.org/015sct804', 'es', 1, 'https://ror.org/015sct804 Universidad de Ciencias MƩdicas de Sancti Spƭritus'),
(111582, 'https://ror.org/05035yq23', 'fr', 1, 'https://ror.org/05035yq23 Jardin d’altitude du Haut Chitelet'),
(111583, 'https://ror.org/022dbf076', 'en', 1, 'https://ror.org/022dbf076 Springboro High School'),
(111584, 'https://ror.org/00gvwyr85', 'en', 1, 'https://ror.org/00gvwyr85 Alma Ata University Universitas Alma Ata'),
(111585, 'https://ror.org/032g3x293', 'en', 1, 'https://ror.org/032g3x293 Scientific Research Commission Ł‡ŁŠŲ¦Ų© البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(111586, 'https://ror.org/003f4pg83', 'de', 1, 'https://ror.org/003f4pg83 Hochschule Campus Wien'),
(111587, 'https://ror.org/00fc2ss05', 'en', 1, 'https://ror.org/00fc2ss05 Badlands National Park Parque nacional Badlands'),
(111588, 'https://ror.org/03shjds31', 'en', 1, 'https://ror.org/03shjds31 KNCV TB Plus'),
(111589, 'https://ror.org/02gp4g669', 'pt', 1, 'https://ror.org/02gp4g669 Instituto Superior de Ciências da Educação de Benguela'),
(111590, 'https://ror.org/058hjkk82', 'en', 1, 'https://ror.org/058hjkk82 Universidad de Puerto Rico en Bayamón University of Puerto Rico at Bayamón'),
(111591, 'https://ror.org/02fsd1928', 'fr', 1, 'https://ror.org/02fsd1928 Centre Scientifique et Technique du BĆ¢timent Scientific and Technical Center for Building'),
(111592, 'https://ror.org/055chrm30', 'en', 1, 'https://ror.org/055chrm30 South African Society for Agricultural Extension'),
(111593, 'https://ror.org/032v67m28', 'fr', 1, 'https://ror.org/032v67m28 UMR TransfrontaliĆØre BioEcoAgro'),
(111594, 'https://ror.org/01bazpc66', 'en', 1, 'https://ror.org/01bazpc66 North Private College of Nursing'),
(111595, 'https://ror.org/05xf7j173', 'fr', 0, 'https://ror.org/05xf7j173 GƩnƩtique et physiopathologie des maladies cƩrƩbro-vasculaires'),
(111596, 'https://ror.org/001tmq304', 'en', 1, 'https://ror.org/001tmq304 Enzyme and Cell Engineering - Molecular Recognition and Biocatalysis GƩnie Enzymatique et Cellulaire - Reconnaissance MolƩculaire et Catalyse'),
(111597, 'https://ror.org/013cjyk83', 'fr', 1, 'https://ror.org/013cjyk83 UniversitƩ Paris Sciences et Lettres'),
(111598, 'https://ror.org/047t8t227', 'en', 1, 'https://ror.org/047t8t227 United Mine Workers of America'),
(111599, 'https://ror.org/04tb23024', 'fr', 1, 'https://ror.org/04tb23024 Laboratoire MƩdiations'),
(111600, 'https://ror.org/01kg8sb98', 'en', 1, 'https://ror.org/01kg8sb98 Indiana University UniversitƩ de l''Indiana'),
(111601, 'https://ror.org/027pk6j83', 'en', 1, 'https://ror.org/027pk6j83 Madrid Institute for Advanced Studies'),
(111602, 'https://ror.org/042rbzb83', 'en', 1, 'https://ror.org/042rbzb83 Geological Survey of Pakistan'),
(111603, 'https://ror.org/00crteh33', 'fr', 0, 'https://ror.org/00crteh33 UniversitƩ Rennes 1'),
(111604, 'https://ror.org/036dcky53', 'fr', 0, 'https://ror.org/036dcky53 EcosystĆØme intestinal, probiotiques, antibiotiques'),
(111605, 'https://ror.org/04nc8v966', 'fr', 0, 'https://ror.org/04nc8v966 Troubles psychiatriques et dƩveloppement'),
(111606, 'https://ror.org/05rjp4018', 'en', 1, 'https://ror.org/05rjp4018 Cuorips Inc. Cuorips Inc. (Japan) ć‚Æć‚ŖćƒŖćƒ—ć‚¹ę Ŗå¼ä¼šē¤¾'),
(111607, 'https://ror.org/05ckg3w11', 'en', 1, 'https://ror.org/05ckg3w11 Education Department of Hunan Province ę¹–å—ēœę•™č‚²åŽ…'),
(111608, 'https://ror.org/04yvvma51', 'en', 1, 'https://ror.org/04yvvma51 Gichi-Onigaming Grand Portage Band of Lake Superior Chippewa'),
(111609, 'https://ror.org/01qxykv20', 'en', 1, 'https://ror.org/01qxykv20 Lanzhou Institute of Technology å…°å·žå·„äøšå­¦é™¢'),
(111610, 'https://ror.org/02at6c277', 'fr', 1, 'https://ror.org/02at6c277 Simplification des soins chez les patients complexes'),
(111611, 'https://ror.org/03p2d3k93', 'fr', 1, 'https://ror.org/03p2d3k93 Production et analyse de donnƩes en sciences de la vie et en santƩ'),
(111612, 'https://ror.org/0596wkf93', 'es', 1, 'https://ror.org/0596wkf93 Centro Universitario de la Defensa en la Escuela Naval Militar'),
(111613, 'https://ror.org/04z22qz54', 'fr', 1, 'https://ror.org/04z22qz54 Institut des Sciences de l''Information et de leurs Interactions'),
(111614, 'https://ror.org/05phyf558', 'en', 1, 'https://ror.org/05phyf558 Universidad de Puerto Rico en Carolina University of Puerto Rico at Carolina'),
(111615, 'https://ror.org/00ee8az96', 'en', 1, 'https://ror.org/00ee8az96 The Knowledge Hub Universities Ų¬Ų§Ł…Ų¹Ų§ŲŖ المعرفة Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(111616, 'https://ror.org/00b4yme84', 'fr', 0, 'https://ror.org/00b4yme84 Groupe de REcherche en Cardio Oncologie'),
(111617, 'https://ror.org/02pgvzy25', 'en', 1, 'https://ror.org/02pgvzy25 Ming Chuan University éŠ˜å‚³å¤§å­ø'),
(111618, 'https://ror.org/03jt9em80', 'fr', 1, 'https://ror.org/03jt9em80 Centre de recherches en arts et esthƩtique'),
(111619, 'https://ror.org/012mgrb02', 'en', 1, 'https://ror.org/012mgrb02 De La Salle Medical and Health Sciences Institute'),
(111620, 'https://ror.org/028mtfb17', 'en', 1, 'https://ror.org/028mtfb17 Moscow University Ā«SynergyĀ» Non-state private educational institution of higher education Ā«Moscow University Ā«SynergyĀ» Московский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”ŠøŠ½ŠµŃ€Š³ŠøŃĀ» ŠŠµŠ³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ частное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ «Московский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”ŠøŠ½ŠµŃ€Š³ŠøŃĀ»'),
(111621, 'https://ror.org/04fcycp48', 'en', 1, 'https://ror.org/04fcycp48 Institute of Veterinary Medicine of the National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарної меГицини ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(111622, 'https://ror.org/0538aev80', 'fr', 0, 'https://ror.org/0538aev80 Physique des Ondes pour la MƩdecine'),
(111623, 'https://ror.org/05mv8mg96', 'en', 1, 'https://ror.org/05mv8mg96 Manuro Tech Research Pvt. Ltd Manuro Tech Research Pvt. Ltd (India)'),
(111624, 'https://ror.org/024c12b08', 'en', 1, 'https://ror.org/024c12b08 Government College Asghar Mall Rawalpindi ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ گریجوئیٹ کالج Ų§ŲµŲŗŲ± Ł…Ų§Ł„ŲŒ Ų±Ų§ŁˆŁ„Ł¾Ł†ŚˆŪŒ'),
(111625, 'https://ror.org/036nmx356', 'en', 1, 'https://ror.org/036nmx356 CMH Kharian Medical College'),
(111626, 'https://ror.org/01fz5jz41', 'en', 1, 'https://ror.org/01fz5jz41 Clique Clinic'),
(111627, 'https://ror.org/05j07r343', 'en', 1, 'https://ror.org/05j07r343 Ukrainian Academy of Agrarian Sciences Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ¾Ń— акаГемії аграрних наук'),
(111628, 'https://ror.org/05f2bpr74', 'en', 1, 'https://ror.org/05f2bpr74 FƩdƩration Mondiale des Organisations d''IngƩnieurs World Federation of Engineering Organizations'),
(111629, 'https://ror.org/00xzzba89', 'en', 1, 'https://ror.org/00xzzba89 Bordeaux Population Health'),
(111630, 'https://ror.org/015yfqq31', 'en', 1, 'https://ror.org/015yfqq31 Dominican School of Philosophy and Theology'),
(111631, 'https://ror.org/00mv0zs85', 'de', 1, 'https://ror.org/00mv0zs85 Grimme-Institut'),
(111632, 'https://ror.org/01prbq409', 'pt', 1, 'https://ror.org/01prbq409 Egaz Moniz School of Health and Science Escola Superior de SaĆŗde Egas Moniz'),
(111633, 'https://ror.org/0407ex783', 'en', 0, 'https://ror.org/0407ex783 National Organization for Drug Control and Research'),
(111634, 'https://ror.org/03ekdz076', 'fr', 0, 'https://ror.org/03ekdz076 IRIS Physiopathologie de la vision et de la motricitƩ binoculaire Laboratoire de Physiopathologie de la vision et de la motricitƩ binoculaire'),
(111635, 'https://ror.org/05frye867', 'fr', 1, 'https://ror.org/05frye867 Ɖcole des Hautes Ɖtudes Commerciales'),
(111636, 'https://ror.org/004914a33', 'en', 1, 'https://ror.org/004914a33 Federal Scientific Center for Animal Husbandry named after Academician L.K. Ernst Всероссийский ŠŠ˜Š˜ животновоГства имени Š›. К. Эрнста'),
(111637, 'https://ror.org/050gn5214', 'fr', 1, 'https://ror.org/050gn5214 Institut du Cerveau Institut du Cerveau et de la Moelle épinière Paris Brain Institute'),
(111638, 'https://ror.org/05885p792', 'de', 1, 'https://ror.org/05885p792 Institut für Allgemeinmedizin Institute of General Practice and Family Medicine'),
(111639, 'https://ror.org/02kqfwm03', 'es', 1, 'https://ror.org/02kqfwm03 Centro Sismológico Nacional'),
(111640, 'https://ror.org/03cg7cp61', 'en', 1, 'https://ror.org/03cg7cp61 Nile University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„'),
(111641, 'https://ror.org/00wd5a369', 'en', 1, 'https://ror.org/00wd5a369 Guizhou Tuzhi Information Technology Co., Ltd Guizhou Tuzhi Information Technology Co., Ltd (China) č“µå·žå›¾ę™ŗäæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(111642, 'https://ror.org/0287mpm73', 'nl', 1, 'https://ror.org/0287mpm73 Koninklijke Nederlandse Chemische Vereniging'),
(111643, 'https://ror.org/00m87vz37', 'fr', 0, 'https://ror.org/00m87vz37 Pharmacologie de la circulation cƩrƩbrale'),
(111644, 'https://ror.org/02x35ep52', 'en', 1, 'https://ror.org/02x35ep52 NIIT University'),
(111645, 'https://ror.org/01ksk4k18', 'en', 1, 'https://ror.org/01ksk4k18 Department of Education Shandong Province å±±äøœēœę•™č‚²åŽ…ļ¼ˆēœå§”ę•™č‚²å·„å§”ļ¼‰'),
(111646, 'https://ror.org/011tppt04', 'es', 1, 'https://ror.org/011tppt04 Tecnológico de Estudios Superiores de San Felipe del Progreso'),
(111647, 'https://ror.org/00nqz4988', 'es', 1, 'https://ror.org/00nqz4988 Centro Universitario de la Defensa en San Javier'),
(111648, 'https://ror.org/034ee3t09', 'en', 1, 'https://ror.org/034ee3t09 Synergy University Dubai Ų¬Ų§Ł…Ų¹Ų© التآزر'),
(111649, 'https://ror.org/01zpxh127', 'fr', 0, 'https://ror.org/01zpxh127 Clinical Research Group on Inflammatory Amyloidosis (AA) Sorbonne University Groupe de recherche clinique Amylose AA Sorbonne UniversitƩ'),
(111650, 'https://ror.org/029gby321', 'en', 1, 'https://ror.org/029gby321 Nuclear Safety Commission ę øčƒ½å®‰å…Øå§”å“”ęœƒ'),
(111651, 'https://ror.org/02g6avh54', 'en', 1, 'https://ror.org/02g6avh54 Ministero della Difesa Ministry of Defence'),
(111652, 'https://ror.org/019hb9542', 'en', 1, 'https://ror.org/019hb9542 St Helier Hospital'),
(111653, 'https://ror.org/03gtdcg60', 'es', 1, 'https://ror.org/03gtdcg60 Diego Portales University Universidad Diego Portales'),
(111654, 'https://ror.org/04jyxq429', 'en', 1, 'https://ror.org/04jyxq429 FBK CREATE-NET Research Center'),
(111655, 'https://ror.org/0029hqx58', 'de', 1, 'https://ror.org/0029hqx58 Institut für Psychiatrische Phänomik und Genomik Institute of Psychiatric Phenomics and Genomics'),
(111656, 'https://ror.org/02panqy83', 'en', 1, 'https://ror.org/02panqy83 Bệnh viện ChĆ¢m cứu Trung ʰʔng National Hospital of Acupuncture'),
(111657, 'https://ror.org/04py13j66', 'fr', 0, 'https://ror.org/04py13j66 GƩnƩtique, physiopathologie et approches thƩrapeutiques des maladies hƩrƩditaires'),
(111658, 'https://ror.org/05192rv21', 'en', 1, 'https://ror.org/05192rv21 Assam Science and Technology University'),
(111659, 'https://ror.org/022pwce91', 'en', 1, 'https://ror.org/022pwce91 Sai University'),
(111660, 'https://ror.org/04kp61y04', 'en', 1, 'https://ror.org/04kp61y04 Association for Tertiary Education Management'),
(111661, 'https://ror.org/04c4kad22', 'pt', 0, 'https://ror.org/04c4kad22 INTELI - Inteligência em Inovação - Centro de Inovação Inteligência em Inovação Centro de Inovação'),
(111662, 'https://ror.org/02xyazb71', 'en', 1, 'https://ror.org/02xyazb71 Biscayne National Park Parque nacional Biscayne'),
(111663, 'https://ror.org/008n78156', 'fr', 1, 'https://ror.org/008n78156 Laboratoire de neurosciences fonctionnelles et pathologies'),
(111664, 'https://ror.org/01nc39382', 'es', 1, 'https://ror.org/01nc39382 Instituto de Servicios de Salud del Estado de Aguascalientes'),
(111665, 'https://ror.org/043zcz508', 'en', 0, 'https://ror.org/043zcz508 Starfleet Academy'),
(111666, 'https://ror.org/04ge7ee10', 'en', 1, 'https://ror.org/04ge7ee10 Museo de Nosotros Museum of Us'),
(111667, 'https://ror.org/05fdt6816', 'fr', 1, 'https://ror.org/05fdt6816 International Observatory on the Societal Impacts of AI and Digital Technologies Obvia'),
(111668, 'https://ror.org/01fj5k015', 'en', 1, 'https://ror.org/01fj5k015 ASNT Foundation'),
(111669, 'https://ror.org/030q7x253', 'no_lang_code', 0, 'https://ror.org/030q7x253 Acorn Toys & Goods Acorn Toys & Goods (United States)'),
(111670, 'https://ror.org/04yrgt058', 'en', 1, 'https://ror.org/04yrgt058 Bard College'),
(111671, 'https://ror.org/04h6re146', 'en', 1, 'https://ror.org/04h6re146 Obeikan Investment Group'),
(111672, 'https://ror.org/017qs1m21', 'en', 1, 'https://ror.org/017qs1m21 Thai Binh Duong University TrĘ°į»ng ĐẔi hį»c ThĆ”i BƬnh Dʰʔng'),
(111673, 'https://ror.org/03nnxqz81', 'en', 1, 'https://ror.org/03nnxqz81 RISE Research Institutes of Sweden'),
(111674, 'https://ror.org/02d7par23', 'en', 1, 'https://ror.org/02d7par23 African Women in Media'),
(111675, 'https://ror.org/00rs6vg23', 'en', 1, 'https://ror.org/00rs6vg23 The Ohio State University Universidad Estatal de Ohio UniversitĆ© d''Ɖtat de l''Ohio'),
(111676, 'https://ror.org/01stqnn06', 'fr', 0, 'https://ror.org/01stqnn06 UniversitƩ de Clermont I'),
(111677, 'https://ror.org/01d5xph69', 'en', 1, 'https://ror.org/01d5xph69 Dongkuk Steel Mill Co., Ltd. Dongkuk Steel Mill Co., Ltd. (South Korea) ė™źµ­ģ œź°•(주)'),
(111678, 'https://ror.org/02fhhwa39', 'de', 1, 'https://ror.org/02fhhwa39 Institut für Notfallmedizin und Medizinmanagement Institute of Emergency Medicine and Management in Medicine'),
(111679, 'https://ror.org/057y6sk36', 'en', 1, 'https://ror.org/057y6sk36 National Institute of Biomedical Genomics'),
(111680, 'https://ror.org/03d3nc825', 'fr', 0, 'https://ror.org/03d3nc825 Fédération de Recherche en Neurosciences des Saints-Pères'),
(111681, 'https://ror.org/04knth696', 'en', 1, 'https://ror.org/04knth696 Global Centroid-Moment-Tensor (CMT) Project'),
(111682, 'https://ror.org/05na4hm84', 'de', 1, 'https://ror.org/05na4hm84 Max von Pettenkofer Institute of Hygiene and Medical Microbiology Max-von-Pettenkofer-Institut für Hygiene und Medizinische Mikrobiologie'),
(111683, 'https://ror.org/03g9zwv89', 'de', 1, 'https://ror.org/03g9zwv89 Institut für Diagnostische und Interventionelle Neuroradiologie Institute of Neuroradiology'),
(111684, 'https://ror.org/02g7kd627', 'en', 1, 'https://ror.org/02g7kd627 Universidad Villanova Villanova University'),
(111685, 'https://ror.org/02ke5e989', 'en', 1, 'https://ror.org/02ke5e989 Klintaps University College of Health and Allied Sciences'),
(111686, 'https://ror.org/04xqc3e23', 'en', 1, 'https://ror.org/04xqc3e23 Kolehiyong Pampamahalaan sa Agham at Teknolohiya ng Hilaga-Kanluraning Mindanao Northwestern Mindanao State College of Science and Technology'),
(111687, 'https://ror.org/03yprjh44', 'en', 1, 'https://ror.org/03yprjh44 Institute of Agricultural Research and Training'),
(111688, 'https://ror.org/01ahb7328', 'en', 1, 'https://ror.org/01ahb7328 Institute for Healthcare Improvement'),
(111689, 'https://ror.org/029z02k15', 'en', 1, 'https://ror.org/029z02k15 Rutgers Health'),
(111690, 'https://ror.org/01g04ek95', 'en', 1, 'https://ror.org/01g04ek95 Choctaw Nation of Oklahoma'),
(111691, 'https://ror.org/00h33x176', 'en', 1, 'https://ror.org/00h33x176 Bois Forte Band of Chippewa Zagaakwaandagowininiwag'),
(111692, 'https://ror.org/04f8f3864', 'en', 1, 'https://ror.org/04f8f3864 Nigerian Institute of Physics'),
(111693, 'https://ror.org/02mh2ah12', 'nl', 1, 'https://ror.org/02mh2ah12 Ommelander Ziekenhuis Groningen'),
(111694, 'https://ror.org/0270ypx06', 'en', 1, 'https://ror.org/0270ypx06 Schoodic Institute'),
(111695, 'https://ror.org/03sktxb65', 'fr', 0, 'https://ror.org/03sktxb65 Robustesse et ƩvolvabilitƩ de la vie Robustness and evolvability of life'),
(111696, 'https://ror.org/00v8kcx92', 'de', 1, 'https://ror.org/00v8kcx92 Institute of Physiology Physiologisches Institut'),
(111697, 'https://ror.org/02kzqn938', 'fr', 1, 'https://ror.org/02kzqn938 University of Lille UniversitƩ de Lille'),
(111698, 'https://ror.org/0119hgk08', 'fr', 0, 'https://ror.org/0119hgk08 UniversitƩ Blaise Pascal'),
(111699, 'https://ror.org/00pyv1r78', 'en', 1, 'https://ror.org/00pyv1r78 Institute of Disaster Prevention é˜²ē¾ē§‘ęŠ€å­¦é™¢'),
(111700, 'https://ror.org/05bxtha84', 'en', 1, 'https://ror.org/05bxtha84 Health Commission of Guandgong Province å¹æäøœēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(111701, 'https://ror.org/02v1vvb51', 'ca', 1, 'https://ror.org/02v1vvb51 Institut d’Estudis Filològics Dantescs i Digitals AvanƧats Istituto di Studi Filologici Danteschi e Digitali Avanzati'),
(111702, 'https://ror.org/02w653772', 'fr', 0, 'https://ror.org/02w653772 Institut Universitaire d''HƩmatologie'),
(111703, 'https://ror.org/01vy7ep52', 'en', 1, 'https://ror.org/01vy7ep52 Academy of the National Guard of the Republic of Kazakhstan ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ гварГии Республики ŠšŠ°Š·Š°Ń…стан ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ұлттық Ұланның ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(111704, 'https://ror.org/02e2tgs60', 'en', 1, 'https://ror.org/02e2tgs60 Lamont-Doherty Earth Observatory'),
(111705, 'https://ror.org/024enr617', 'en', 1, 'https://ror.org/024enr617 Pirojpur Science and Technology University ą¦Ŗą¦æą¦°ą§‹ą¦œą¦Ŗą§ą¦° ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą§Ÿ'),
(111706, 'https://ror.org/04q2bzq33', 'fr', 1, 'https://ror.org/04q2bzq33 Physiologie et pathologie moléculaires des rétrovirus endogènes et infectieux'),
(111707, 'https://ror.org/05ettq389', 'fr', 1, 'https://ror.org/05ettq389 Jardin botanique Jean-Marie-Pelt'),
(111708, 'https://ror.org/0431ec194', 'de', 1, 'https://ror.org/0431ec194 Institut für Experimentelle Pneumologie Institute of Experimental Pneumology'),
(111709, 'https://ror.org/01s1pqt66', 'de', 1, 'https://ror.org/01s1pqt66 Institut für Rechtsmedizin Institute of Forensic Medicine'),
(111710, 'https://ror.org/02tfp8194', 'en', 0, 'https://ror.org/02tfp8194 Life Extension Advocacy Foundation'),
(111711, 'https://ror.org/026hpqj41', 'en', 1, 'https://ror.org/026hpqj41 Simprints Technology Limited'),
(111712, 'https://ror.org/00hy3gq97', 'en', 1, 'https://ror.org/00hy3gq97 Ministry of Health'),
(111713, 'https://ror.org/0200cc312', 'fr', 1, 'https://ror.org/0200cc312 PersƩe'),
(111714, 'https://ror.org/026vcq606', 'en', 1, 'https://ror.org/026vcq606 KTH Royal Institute of Technology Kungliga Tekniska hƶgskolan Kuninkaallinen teknillinen korkeakoulu'),
(111715, 'https://ror.org/0329apa05', 'fr', 0, 'https://ror.org/0329apa05 Cancer et transplantation : physiopathologie et rƩponse thƩrapeutique'),
(111716, 'https://ror.org/05edayg07', 'fr', 0, 'https://ror.org/05edayg07 FƩdƩration de Physico-Chimie Analytique et Biologique'),
(111717, 'https://ror.org/02wdygz27', 'fr', 1, 'https://ror.org/02wdygz27 Habiter le monde'),
(111718, 'https://ror.org/03x9frp33', 'fr', 0, 'https://ror.org/03x9frp33 Institut du Fer Ć  Moulin'),
(111719, 'https://ror.org/01s6bet72', 'fr', 1, 'https://ror.org/01s6bet72 Laboratoire de physique des systĆØmes complexes'),
(111720, 'https://ror.org/03rbw2w25', 'en', 1, 'https://ror.org/03rbw2w25 Department of Science and Technology of Hainan Province ęµ·å—ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(111721, 'https://ror.org/00cctyp65', 'fr', 1, 'https://ror.org/00cctyp65 Laboratoire d''Economie, Finance, Management et Innovation'),
(111722, 'https://ror.org/01a3zg415', 'en', 1, 'https://ror.org/01a3zg415 Sydney Shoulder Research Institute'),
(111723, 'https://ror.org/02vnghs48', 'en', 1, 'https://ror.org/02vnghs48 Indiana University Columbus'),
(111724, 'https://ror.org/05qj54f29', 'fr', 0, 'https://ror.org/05qj54f29 MolƩcules ThƩrapeutique in silico Therapeutic Molecules in Silico'),
(111725, 'https://ror.org/045nc4t21', 'en', 1, 'https://ror.org/045nc4t21 Chongqing Municipal Bureau of Human Resources and Social Security é‡åŗ†åø‚äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœå±€'),
(111726, 'https://ror.org/02w7x5c08', 'en', 1, 'https://ror.org/02w7x5c08 Royal Surrey County Hospital'),
(111727, 'https://ror.org/0233s3y58', 'en', 1, 'https://ror.org/0233s3y58 Maharaja Agrasen Institute of Management Studies'),
(111728, 'https://ror.org/03a5gn933', 'en', 1, 'https://ror.org/03a5gn933 Nigerian Institute of Science Laboratory Technology'),
(111729, 'https://ror.org/04xvfkh51', 'en', 1, 'https://ror.org/04xvfkh51 IMDEA Software Institute Instituto IMDEA Software'),
(111730, 'https://ror.org/00xs48965', 'en', 1, 'https://ror.org/00xs48965 Graduate Theological Union'),
(111731, 'https://ror.org/04hhrpp03', 'de', 1, 'https://ror.org/04hhrpp03 Institut für Neuropathologie Institute of Neuropathology'),
(111732, 'https://ror.org/04b9vrm74', 'de', 1, 'https://ror.org/04b9vrm74 OTH Regensburg Ostbayerische Technische Hochschule Regensburg'),
(111733, 'https://ror.org/01wnq5g69', 'en', 1, 'https://ror.org/01wnq5g69 Changzhou MICRO-I Co., Ltd. Micro-Intelligence Micro-Intelligence (China) åøøå·žå¾®äŗæę™ŗé€ ē§‘ęŠ€ęœ‰é™å…¬åø 微亿智造'),
(111734, 'https://ror.org/03jhjmf97', 'en', 1, 'https://ror.org/03jhjmf97 Dewey Data Inc. Dewey Data Inc. (United States)'),
(111735, 'https://ror.org/049b5m346', 'fr', 1, 'https://ror.org/049b5m346 Ɖcole FranƧaise de Rome'),
(111736, 'https://ror.org/016g7a124', 'de', 1, 'https://ror.org/016g7a124 Institut für Medizinische Psychologie Institute of Medical Psychology'),
(111737, 'https://ror.org/05y441t49', 'fr', 1, 'https://ror.org/05y441t49 Centre d''Etudes Hispaniques d''Amiens'),
(111738, 'https://ror.org/01fwgs137', 'en', 1, 'https://ror.org/01fwgs137 Schweizerischer Ingenieur- und Architektenverein SocietƠ svizzera degli ingegneri e degli architetti SociƩtƩ suisse des ingƩnieurs et des architectes Swiss Society of Engineers and Architects'),
(111739, 'https://ror.org/03p2edy05', 'en', 1, 'https://ror.org/03p2edy05 American Society for Nondestructive Testing American Society for Nondestructive Testing Inc.'),
(111740, 'https://ror.org/04p8a8y08', 'en', 1, 'https://ror.org/04p8a8y08 Redsea Cultural Foundation'),
(111741, 'https://ror.org/03rth4p18', 'fr', 1, 'https://ror.org/03rth4p18 Lumière University Lyon 2 Université Lumière Lyon 2'),
(111742, 'https://ror.org/008tw4n61', 'en', 0, 'https://ror.org/008tw4n61 Cognition and Action Group'),
(111743, 'https://ror.org/012asnv87', 'fr', 0, 'https://ror.org/012asnv87 Mental Health and Public Health SantƩ mentale et santƩ publique'),
(111744, 'https://ror.org/044133t28', 'en', 1, 'https://ror.org/044133t28 Akademi Teknik Elektromedik Andakara'),
(111745, 'https://ror.org/01aev3d53', 'en', 1, 'https://ror.org/01aev3d53 fƶra forest technologies fƶra forest technologies (Spain)'),
(111746, 'https://ror.org/02z2r2t61', 'no_lang_code', 1, 'https://ror.org/02z2r2t61 Rockland Immunochemicals (United States)'),
(111747, 'https://ror.org/05tyqjm34', 'en', 1, 'https://ror.org/05tyqjm34 Saint Meinrad Seminary and School of Theology'),
(111748, 'https://ror.org/03m5ehy13', 'en', 1, 'https://ror.org/03m5ehy13 Ministry of Higher Education and Scientific Research وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(111749, 'https://ror.org/054qv7y42', 'fr', 1, 'https://ror.org/054qv7y42 Institut Polytechnique de Bordeaux'),
(111750, 'https://ror.org/03ven1671', 'es', 1, 'https://ror.org/03ven1671 Corporación universitaria Antonio José de Sucre'),
(111751, 'https://ror.org/05xmrvj69', 'nl', 1, 'https://ror.org/05xmrvj69 HuisartsenOrganisatie Oost-Gelderland'),
(111752, 'https://ror.org/02ztymy03', 'en', 1, 'https://ror.org/02ztymy03 Digital Futures'),
(111753, 'https://ror.org/01eem7c55', 'en', 1, 'https://ror.org/01eem7c55 Imagerie, Cerveau et Neuropsychiatrie Imaging, Brain, and Neuropsychiatry'),
(111754, 'https://ror.org/03w6mvs43', 'en', 0, 'https://ror.org/03w6mvs43 Western International University'),
(111755, 'https://ror.org/04kvjaa48', 'fr', 1, 'https://ror.org/04kvjaa48 Organisation pour la Protection des Manuscrits MƩdiƩvaux'),
(111756, 'https://ror.org/00r20e176', 'en', 1, 'https://ror.org/00r20e176 Cumann na nInnealtóirí Engineers Ireland'),
(111757, 'https://ror.org/01875pg84', 'fr', 1, 'https://ror.org/01875pg84 HƓpital Saint-Antoine Saint Antoine Hospital'),
(111758, 'https://ror.org/01vxwy461', 'pt', 1, 'https://ror.org/01vxwy461 Universidade Estadual do Rio Grande do Sul'),
(111759, 'https://ror.org/00bgnvd66', 'fr', 1, 'https://ror.org/00bgnvd66 MƩcanismes physiopathologiques et consƩquences des calcifications cardiovasculaires'),
(111760, 'https://ror.org/05761st14', 'no_lang_code', 1, 'https://ror.org/05761st14 China National Knowledge Infrastructure China National Knowledge Infrastructure (China) äø­å›½ēŸ„čÆ†åŸŗē”€č®¾ę–½å·„ēØ‹'),
(111761, 'https://ror.org/02zy6dj62', 'no_lang_code', 1, 'https://ror.org/02zy6dj62 Njala University'),
(111762, 'https://ror.org/01zfn7550', 'en', 1, 'https://ror.org/01zfn7550 Amalgamated Transit Union Syndicat uni du transport'),
(111763, 'https://ror.org/02na6tz09', 'pt', 1, 'https://ror.org/02na6tz09 Universidade Estadual do PiauĆ­'),
(111764, 'https://ror.org/035zj9n88', 'en', 1, 'https://ror.org/035zj9n88 Earth Metabolome Initiative'),
(111765, 'https://ror.org/03tb37539', 'en', 1, 'https://ror.org/03tb37539 Moorfields Eye Hospital'),
(111766, 'https://ror.org/04hh72v06', 'en', 1, 'https://ror.org/04hh72v06 Big Bend National Park Parque nacional Big Bend'),
(111767, 'https://ror.org/049acv814', 'fr', 0, 'https://ror.org/049acv814 Génétique des Diabètes'),
(111768, 'https://ror.org/01xpt7p88', 'en', 1, 'https://ror.org/01xpt7p88 Menninger Clinic'),
(111769, 'https://ror.org/003zypy88', 'fr', 0, 'https://ror.org/003zypy88 EpidƩmiologie environnementale : impact sanitaire des pollutions'),
(111770, 'https://ror.org/054maaz15', 'en', 1, 'https://ror.org/054maaz15 Jawzjan University ŲÆ Ų¬ŁˆŲ²Ų¬Ų§Ł† Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų¬ŁˆŲ²Ų¬Ų§Ł†'),
(111771, 'https://ror.org/02v8yp068', 'no_lang_code', 1, 'https://ror.org/02v8yp068 Konyang University ź±“ģ–‘ėŒ€ķ•™źµ'),
(111772, 'https://ror.org/00mh9zx15', 'en', 1, 'https://ror.org/00mh9zx15 Field Museum of Natural History Museo Field de Historia Natural MusƩum field'),
(111773, 'https://ror.org/03sscge16', 'en', 1, 'https://ror.org/03sscge16 American Federation of School Administrators'),
(111774, 'https://ror.org/01rvmqa17', 'id', 1, 'https://ror.org/01rvmqa17 Universitas Islam Tribakti Lirboyo Kediri'),
(111775, 'https://ror.org/03a1ym388', 'en', 1, 'https://ror.org/03a1ym388 Dutch Initiative on Crohn and Colitis'),
(111776, 'https://ror.org/03d3nyr92', 'en', 1, 'https://ror.org/03d3nyr92 National Bureau of Animal Genetic Resources ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą¤¶ą„ ą¤†ą¤Øą„ą¤µą¤‚ą¤¶ą¤æą¤• संसाधन ą¤¬ą„ą¤Æą„‚ą¤°ą„‹'),
(111777, 'https://ror.org/05m1yqp60', 'it', 0, 'https://ror.org/05m1yqp60 Istituto di Biometeorologia'),
(111778, 'https://ror.org/04xxayh10', 'ca', 1, 'https://ror.org/04xxayh10 Catalan Institute for Cultural Heritage Research Institut CatalĆ  de Recerca En Patrimoni Cultural'),
(111779, 'https://ror.org/0128dte27', 'en', 1, 'https://ror.org/0128dte27 Korea Workers'' Compensation and Welfare Service ź·¼ė”œė³µģ§€ź³µė‹Ø'),
(111780, 'https://ror.org/01xaxtt28', 'en', 1, 'https://ror.org/01xaxtt28 Varna University of Management'),
(111781, 'https://ror.org/059424541', 'fr', 1, 'https://ror.org/059424541 Bassins - RƩservoirs - Ressources'),
(111782, 'https://ror.org/02sy8ft18', 'en', 1, 'https://ror.org/02sy8ft18 National Records of Scotland'),
(111783, 'https://ror.org/01x8c0495', 'de', 1, 'https://ror.org/01x8c0495 Institut für Immunologie Institute of Immunology'),
(111784, 'https://ror.org/017b69w10', 'nl', 1, 'https://ror.org/017b69w10 Martini Ziekenhuis'),
(111785, 'https://ror.org/059qe0395', 'de', 1, 'https://ror.org/059qe0395 Institut für Didaktik und Ausbildungsforschung in der Medizin Institute of Medical Education'),
(111786, 'https://ror.org/00xws5c14', 'es', 1, 'https://ror.org/00xws5c14 Centro Cultural de España en El Salvador Cooperación Española Cultura'),
(111787, 'https://ror.org/05mjgqe69', 'no_lang_code', 1, 'https://ror.org/05mjgqe69 Toyota Central Research and Development Laboratories (Japan) 中央研究所'),
(111788, 'https://ror.org/0240qt703', 'fr', 0, 'https://ror.org/0240qt703 Biologie, physiologie et pathologies respiratoires Cystic Fibrosis and Bronchial Diseases Mucoviscidose et bronchopathies chroniques : biopathologie et phƩnotype cliniques Physiopathologie de la mucoviscidose'),
(111789, 'https://ror.org/03nw31086', 'en', 1, 'https://ror.org/03nw31086 Australian Astronomical Optics'),
(111790, 'https://ror.org/04vwsc311', 'fr', 1, 'https://ror.org/04vwsc311 Centre de Recherche sur l’ExtrĆŖme Orient de Paris – Sorbonne Research Centre for Far Eastern Studies of the Paris-Sorbonne University'),
(111791, 'https://ror.org/02yg0nm07', 'en', 1, 'https://ror.org/02yg0nm07 Universidad de Puerto Rico University of Puerto Rico System'),
(111792, 'https://ror.org/01shwkq60', 'en', 1, 'https://ror.org/01shwkq60 Kryachkov Novosibirsk State University of Architecture, Design and Arts ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹, Гизайна Šø ŠøŃŠŗŃƒŃŃŃ‚Š² имени А.Š”. ŠšŃ€ŃŃ‡ŠŗŠ¾Š²Š°'),
(111793, 'https://ror.org/02cqe8q68', 'de', 1, 'https://ror.org/02cqe8q68 Institute of Pathology Pathologisches Institut'),
(111794, 'https://ror.org/00kzn1s88', 'fr', 1, 'https://ror.org/00kzn1s88 Security and Defense Research Team - Intelligence, Criminality, Crisis, Cyberthreats Ɖquipe SĆ©curitĆ© & DĆ©fense - Renseignement, Criminologie, Crises, Cybermenaces');
INSERT INTO `rors` VALUES
(111795, 'https://ror.org/0471kz689', 'fr', 1, 'https://ror.org/0471kz689 Agence Nationale de SĆ©curitĆ© Sanitaire de l’Alimentation, de l’Environnement et du Travail French Agency for Food, Environmental and Occupational Health & Safety'),
(111796, 'https://ror.org/047gc3g35', 'en', 1, 'https://ror.org/047gc3g35 Universidad de Chile University of Chile'),
(111797, 'https://ror.org/02sps6z09', 'fr', 0, 'https://ror.org/02sps6z09 Neurosciences Paris-Seine'),
(111798, 'https://ror.org/01gyxrk03', 'fr', 1, 'https://ror.org/01gyxrk03 Universitat de Picardia University of Picardie Jules Verne UniversitƩ de Picardie Jules Verne'),
(111799, 'https://ror.org/05tq1gt96', 'en', 1, 'https://ror.org/05tq1gt96 GiMaRIS Research, Inventory & Strategy Solutions GiMaRIS Research, Inventory & Strategy Solutions (Netherlands)'),
(111800, 'https://ror.org/001dv4j44', 'en', 1, 'https://ror.org/001dv4j44 Tatta Bio'),
(111801, 'https://ror.org/05a550a57', 'en', 1, 'https://ror.org/05a550a57 DSW University of Lower Silesia DolnoslezskĆ” Univerzita DSW Uniwersytet Dolnośląski DSW Университет ŠŠøŠ¶Š½ŠµŠ¹ Дилезии ДДВ Університет ŠŠøŠ¶Š½ŃŒŠ¾Ń— Ділезії ДДВ'),
(111802, 'https://ror.org/03k3t2d52', 'es', 1, 'https://ror.org/03k3t2d52 Tecnológico Nacional de México Campus San Martín Texmelucan'),
(111803, 'https://ror.org/022tacd25', 'en', 1, 'https://ror.org/022tacd25 Engineers Europe'),
(111804, 'https://ror.org/029bre548', 'en', 1, 'https://ror.org/029bre548 United Nations Educational, Scientific and Cultural Organization Switzerland'),
(111805, 'https://ror.org/00839we02', 'en', 1, 'https://ror.org/00839we02 Acadia University'),
(111806, 'https://ror.org/03q7fjn30', 'fr', 0, 'https://ror.org/03q7fjn30 PrƩvention et Traitement de la Perte ProtƩique Musculaire en Situation de RƩsistance Stress cellulaire: physiopathologie, stratƩgies nutritionnelles et thƩrapeutiques innovantes'),
(111807, 'https://ror.org/039p35x89', 'en', 1, 'https://ror.org/039p35x89 Academy of American Franciscan History'),
(111808, 'https://ror.org/00a6vph10', 'en', 1, 'https://ror.org/00a6vph10 Research and Production Center of Microbiology and Virology ŠœŠøŠŗŃ€Š¾Š±ŠøŠ¾Š»Š¾Š³ŠøŃ және Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŃ ғылыми-өнГірістік орталығы ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный центр микробиологии Šø Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø'),
(111809, 'https://ror.org/03cmqx484', 'de', 1, 'https://ror.org/03cmqx484 Institut für Muskuloskelettale Medizin Institute of Musculoskeletal Medicine'),
(111810, 'https://ror.org/043w1y866', 'en', 1, 'https://ror.org/043w1y866 National Research Centre on Mithun'),
(111811, 'https://ror.org/023azs158', 'en', 1, 'https://ror.org/023azs158 ICAR Research Complex for NEH Region'),
(111812, 'https://ror.org/02j3zbr06', 'en', 1, 'https://ror.org/02j3zbr06 Wessex Archaeology'),
(111813, 'https://ror.org/0480tmh03', 'de', 1, 'https://ror.org/0480tmh03 Adolf Butenandt Institute of Physiological Chemistry, Physical Biochemistry and Cell Biology Adolf-Butenandt-Institut für Physiologische Chemie, Physikalische Biochemie und Zellbiologie'),
(111814, 'https://ror.org/00z7xz780', 'en', 1, 'https://ror.org/00z7xz780 Ministry of Internal Affairs of the Republic of Kazakhstan ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Республики ŠšŠ°Š·Š°Ń…стан ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Š†ŃˆŠŗŃ– істер министрлігі'),
(111815, 'https://ror.org/00k0pfp21', 'en', 1, 'https://ror.org/00k0pfp21 Maharaja Agrasen Himalayan Garhwal University'),
(111816, 'https://ror.org/04ttadj76', 'en', 1, 'https://ror.org/04ttadj76 Collaborative Innovation Center of Advanced Microstructures äŗŗå·„å¾®ē»“ęž„ē§‘å­¦äøŽęŠ€ęœÆååŒåˆ›ę–°äø­åæƒ'),
(111817, 'https://ror.org/01x4whx42', 'en', 1, 'https://ror.org/01x4whx42 Sangmyung University ģƒėŖ…ėŒ€ķ•™źµ'),
(111818, 'https://ror.org/04jvgth94', 'fr', 1, 'https://ror.org/04jvgth94 Adaptation physiologiques Ơ l''exercice et rƩadaptation Ơ l''effort'),
(111819, 'https://ror.org/04xy2mq71', 'it', 0, 'https://ror.org/04xy2mq71 Istituto per la Valorizzazione del Legno e delle Specie Arboree Trees and Timber Institute'),
(111820, 'https://ror.org/05f0yaq80', 'en', 1, 'https://ror.org/05f0yaq80 Stockholm University Stockholms universitet Tukholman yliopisto'),
(111821, 'https://ror.org/05w1d5z06', 'en', 1, 'https://ror.org/05w1d5z06 Gakiiwe''onaning Keweenaw Bay Indian Community'),
(111822, 'https://ror.org/053peb945', 'en', 1, 'https://ror.org/053peb945 Nigerian Institute of Animal Science'),
(111823, 'https://ror.org/05s9s1q23', 'en', 1, 'https://ror.org/05s9s1q23 Rhode Island Geological Survey'),
(111824, 'https://ror.org/00yphsh03', 'fr', 0, 'https://ror.org/00yphsh03 Espaces, Nature et Culture'),
(111825, 'https://ror.org/04qst6c17', 'en', 1, 'https://ror.org/04qst6c17 Peralta Community College District'),
(111826, 'https://ror.org/01jrmfs07', 'fr', 1, 'https://ror.org/01jrmfs07 Centre d''histoire des sociƩtƩs, des sciences et des conflits'),
(111827, 'https://ror.org/05b9w4n89', 'fr', 0, 'https://ror.org/05b9w4n89 Laboratoire d''hƩmatologie'),
(111828, 'https://ror.org/02gs2e959', 'en', 1, 'https://ror.org/02gs2e959 Royal North Shore Hospital'),
(111829, 'https://ror.org/01kw5gs17', 'en', 1, 'https://ror.org/01kw5gs17 South Central Ambulance Service NHS Foundation Trust'),
(111830, 'https://ror.org/027s68j25', 'en', 1, 'https://ror.org/027s68j25 Ministry of Science and Technology of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½ē§‘å­¦ęŠ€ęœÆéƒØ'),
(111831, 'https://ror.org/03cs09e53', 'fr', 1, 'https://ror.org/03cs09e53 Conflits, reprƩsentations et dialogues dans l''univers anglo-saxon'),
(111832, 'https://ror.org/03bz5pb92', 'fr', 1, 'https://ror.org/03bz5pb92 OQEI - Observatoires de la qualitƩ des environnements intƩrieurs Observatory of Indoor Air Quality'),
(111833, 'https://ror.org/0249qtc86', 'en', 1, 'https://ror.org/0249qtc86 Tanzania Institute of Accountancy'),
(111834, 'https://ror.org/021jtqj22', 'en', 1, 'https://ror.org/021jtqj22 Weimar University'),
(111835, 'https://ror.org/0060x3y55', 'en', 1, 'https://ror.org/0060x3y55 Rutgers Cancer Institute'),
(111836, 'https://ror.org/016zre027', 'en', 1, 'https://ror.org/016zre027 Ontario Tech University'),
(111837, 'https://ror.org/005506478', 'de', 1, 'https://ror.org/005506478 Institut für Chirurgische Forschung Institute of Surgical Research'),
(111838, 'https://ror.org/05g1y0660', 'de', 1, 'https://ror.org/05g1y0660 Institut für Laboratoriumsmedizin Institute of Laboratory Medicine'),
(111839, 'https://ror.org/05ncw0t52', 'fr', 1, 'https://ror.org/05ncw0t52 MƩtropole du Grand Nancy'),
(111840, 'https://ror.org/03wq67h32', 'en', 1, 'https://ror.org/03wq67h32 Fraunhofer Institute for Nondestructive Testing Fraunhofer-Institut für Zerstörungsfreie Prüfverfahren'),
(111841, 'https://ror.org/024fg8t29', 'nl', 1, 'https://ror.org/024fg8t29 Interreg Flanders-Netherlands Interreg Vlaanderen-Nederland'),
(111842, 'https://ror.org/02n25sf77', 'en', 0, 'https://ror.org/02n25sf77 Callaghan Innovation'),
(111843, 'https://ror.org/04teye511', 'es', 1, 'https://ror.org/04teye511 Pontifical Catholic University of Chile Pontificia Universidad Católica de Chile'),
(111844, 'https://ror.org/002get527', 'en', 1, 'https://ror.org/002get527 Erasmus Student Network AISBL'),
(111845, 'https://ror.org/02qz16y57', 'en', 1, 'https://ror.org/02qz16y57 Korea Transport Institute ķ•œźµ­źµķ†µģ—°źµ¬ģ›'),
(111846, 'https://ror.org/00jc3hw63', 'en', 1, 'https://ror.org/00jc3hw63 CHA Future Medicine Research Institute ģ°Ø ėÆøėž˜ģ˜ķ•™ģ—°źµ¬ģ›'),
(111847, 'https://ror.org/05y04vm71', 'en', 1, 'https://ror.org/05y04vm71 Information Physics Institute'),
(111848, 'https://ror.org/03rccdb17', 'en', 1, 'https://ror.org/03rccdb17 Institute of Philosophy'),
(111849, 'https://ror.org/054zhq066', 'en', 1, 'https://ror.org/054zhq066 Bonn Aachen International Center for Information Technology'),
(111850, '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'),
(111851, 'https://ror.org/02ny82a28', 'fr', 1, 'https://ror.org/02ny82a28 Institut de Recherche MƩdias, Cultures, Communication et NumƩrique'),
(111852, 'https://ror.org/03g3sf029', 'en', 1, 'https://ror.org/03g3sf029 Rashtrasant Janardhan Swami College of Pharmacy'),
(111853, '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'),
(111854, 'https://ror.org/00r1wdc11', 'en', 1, 'https://ror.org/00r1wdc11 Fraunhofer Institute for Experimental Software Engineering Fraunhofer-Institut für Experimentelles Software Engineering'),
(111855, 'https://ror.org/04gp0yb49', 'en', 1, 'https://ror.org/04gp0yb49 Fraunhofer Institute for Digital Media Technology Fraunhofer-Institut für Digitale Medientechnologie'),
(111856, 'https://ror.org/03wg7b808', 'en', 1, 'https://ror.org/03wg7b808 Soonchunhyang University Hospital Bucheon ģˆœģ²œķ–„ėŒ€ķ•™źµ ė¶€ģ† ė¶€ģ²œė³‘ģ› ģˆœģ²œķ–„ėŒ€ķ•™źµ ė¶€ģ²œė³‘ģ›'),
(111857, 'https://ror.org/02k0mfd93', 'en', 1, 'https://ror.org/02k0mfd93 Rungta College'),
(111858, 'https://ror.org/0208mha05', 'no_lang_code', 1, 'https://ror.org/0208mha05 Merantix Momentum Merantix Momentum (Germany)'),
(111859, 'https://ror.org/017w5sv42', 'en', 1, 'https://ror.org/017w5sv42 British Columbia Centre on Substance Use'),
(111860, 'https://ror.org/042c8nz45', 'en', 1, 'https://ror.org/042c8nz45 South Metropolitan Health Service'),
(111861, 'https://ror.org/021vffd66', 'en', 1, 'https://ror.org/021vffd66 Blood Transfusion Institute of Serbia, Belgrade Institut za transfuziju krvi Srbije Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Ń‚Ń€Š°Š½ŃŃ„ŃƒŠ·ŠøŃ˜Ńƒ крви Š”Ń€Š±ŠøŃ˜Šµ'),
(111862, 'https://ror.org/03j13xx78', 'en', 1, 'https://ror.org/03j13xx78 Bioeconomy Science Institute'),
(111863, 'https://ror.org/04ajwkn20', 'en', 1, 'https://ror.org/04ajwkn20 Gangnam Severance Hospital ź°•ė‚Øģ„øėøŒėž€ģŠ¤ė³‘ģ›'),
(111864, 'https://ror.org/056th3f83', 'fr', 1, 'https://ror.org/056th3f83 POLARIS: Performance analysis and Optimization of LARge Infrastructures and Systems POLARIS: Ɖvaluation et optimisation des performances des grandes infrastructures'),
(111865, 'https://ror.org/01pgzvb06', 'fr', 1, 'https://ror.org/01pgzvb06 KRAKOS: Conception de couches systèmes performantes, robustes, sécurisées, flexibles, et moins énergivores KRAKOS: Design of performance, robust, secure, flexible, and energy-efficient system software'),
(111866, 'https://ror.org/04hwx2j70', 'no_lang_code', 1, 'https://ror.org/04hwx2j70 BRI Research Institute BRI Research Institute (Indonesia)'),
(111867, 'https://ror.org/00671me87', 'en', 1, 'https://ror.org/00671me87 Max Planck Institute for Psycholinguistics Max Planck Instituut voor Psycholinguïstiek Max-Planck-Institut für Psycholinguistik'),
(111868, 'https://ror.org/03kwkgg19', 'en', 1, 'https://ror.org/03kwkgg19 Butaro Hospital Ibitaro bya Butaro'),
(111869, 'https://ror.org/03qk89x33', 'en', 1, 'https://ror.org/03qk89x33 Centre for Latin American and Caribbean Studies'),
(111870, 'https://ror.org/02yhs7m71', 'en', 1, 'https://ror.org/02yhs7m71 Fraunhofer Institute for Applied Polymer Research Fraunhofer-Institut für Angewandte Polymerforschung'),
(111871, 'https://ror.org/0338ycj54', 'en', 1, 'https://ror.org/0338ycj54 Ludwig Boltzmann Institut für Nanovesikuläre Präzisionsmedizin Ludwig Boltzmann Institute for Nanovesicular Precision Medicine'),
(111872, 'https://ror.org/02mwyc682', 'en', 1, 'https://ror.org/02mwyc682 Korea Labor Institute ķ•œźµ­ė…øė™ģ—°źµ¬ģ›'),
(111873, 'https://ror.org/05fcm5569', 'en', 1, 'https://ror.org/05fcm5569 Chittagong Independent University ą¦šą¦æą¦Ÿą¦¾ą¦—ą¦‚ ą¦‡ą¦Øą¦”ą¦æą¦Ŗą§‡ą¦Øą§ą¦”ą§‡ą¦Øą§ą¦Ÿ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(111874, 'https://ror.org/0083ncs46', 'en', 1, 'https://ror.org/0083ncs46 Fraunhofer Institute for Applied Solid State Physics Fraunhofer-Institut für Angewandte Festkörperphysik'),
(111875, 'https://ror.org/05yccdq79', 'en', 1, 'https://ror.org/05yccdq79 Shri Yashwantrao Patil Science College, Solankur'),
(111876, 'https://ror.org/052dv5p45', 'en', 1, 'https://ror.org/052dv5p45 Proyecto de Justicia Mundial World Justice Project'),
(111877, 'https://ror.org/05vwwd317', 'id', 1, 'https://ror.org/05vwwd317 Sekolah Tinggi Ilmu Hukum Adhyaksa'),
(111878, 'https://ror.org/00dcv1b83', 'en', 1, 'https://ror.org/00dcv1b83 Architecture, Culture, and Spirituality Forum'),
(111879, 'https://ror.org/039594g80', 'en', 1, 'https://ror.org/039594g80 School of Advanced Study'),
(111880, 'https://ror.org/05h8wjh50', 'en', 1, 'https://ror.org/05h8wjh50 Fraunhofer Institute for Material and Beam Technology Fraunhofer-Institut für Werkstoff- und Strahltechnik'),
(111881, 'https://ror.org/059x9n677', 'en', 1, 'https://ror.org/059x9n677 Eulji Medical Center ģ„ģ§€ėŒ€ķ•™źµģ˜ė£Œģ›'),
(111882, 'https://ror.org/02j0x3x48', 'en', 1, 'https://ror.org/02j0x3x48 The Shakespeare Association of Korea ķ•œźµ­ģ…°ģµģŠ¤ķ”¼ģ–“ķ•™ķšŒ'),
(111883, 'https://ror.org/048r72142', 'en', 1, 'https://ror.org/048r72142 Scion'),
(111884, 'https://ror.org/004nttc42', 'en', 1, 'https://ror.org/004nttc42 Fraunhofer Institute for Mechatronic Systems Design Fraunhofer-Institut für Entwurfstechnik Mechatronik'),
(111885, 'https://ror.org/00gg0jt32', 'en', 1, 'https://ror.org/00gg0jt32 Ludwig Boltzmann Institute for Digital History'),
(111886, 'https://ror.org/05p2jc137', 'en', 1, 'https://ror.org/05p2jc137 New Giza University'),
(111887, 'https://ror.org/04839sh14', 'de', 1, 'https://ror.org/04839sh14 Medizinische Hochschule Brandenburg Theodor Fontane'),
(111888, 'https://ror.org/03f6d5009', 'en', 0, 'https://ror.org/03f6d5009 Ludwig Boltzmann Institut Health Promotion Research'),
(111889, 'https://ror.org/002nav185', 'en', 1, 'https://ror.org/002nav185 Seoul Medical Center ģ„œģšøģ˜ė£Œģ›'),
(111890, 'https://ror.org/017zx0e16', 'es', 1, 'https://ror.org/017zx0e16 Instituto Iberoamericano de Derecho Constitucional'),
(111891, 'https://ror.org/013c4e161', 'fr', 1, 'https://ror.org/013c4e161 KOPERNIC: Adapter le raisonnement pire cas Ơ diffƩrentes criticitƩs KOPERNIC: Keeping worst case reasoning for different criticalities'),
(111892, 'https://ror.org/04pqpfz42', 'en', 1, 'https://ror.org/04pqpfz42 National Medical Center źµ­ė¦½ģ¤‘ģ•™ģ˜ė£Œģ›'),
(111893, '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'),
(111894, 'https://ror.org/03qjsrb10', 'en', 1, 'https://ror.org/03qjsrb10 Soonchunhyang University ģˆœģ²œķ–„ėŒ€ķ•™źµ'),
(111895, 'https://ror.org/01s1h3j07', 'en', 1, 'https://ror.org/01s1h3j07 Fraunhofer Institute for Translational Medicine and Pharmacology Fraunhofer-Institut für Translationale Medizin und Pharmakologie'),
(111896, 'https://ror.org/013e76m06', 'en', 1, 'https://ror.org/013e76m06 Kangbuk Samsung Hospital 강북삼성병원 삼성강북병원'),
(111897, 'https://ror.org/04nbqb988', 'en', 1, 'https://ror.org/04nbqb988 CHA University Bundang Medical Center 분당차병원'),
(111898, 'https://ror.org/02j7awn61', 'fr', 1, 'https://ror.org/02j7awn61 MAVERICK: Models and Algorithms for Visualization and Rendering MAVERICK: ModĆØles et Algorithmes pour la Visualisation et le Rendu'),
(111899, 'https://ror.org/031w4pe69', 'id', 1, 'https://ror.org/031w4pe69 Center for Volcanology and Geological Hazard Mitigation Pusat Vulkanologi dan Mitigasi Bencana Geologi'),
(111900, 'https://ror.org/03z0cqe20', 'en', 1, 'https://ror.org/03z0cqe20 Binyaminu Usman Polytechnic'),
(111901, 'https://ror.org/01fnfmw26', 'en', 1, 'https://ror.org/01fnfmw26 Pacific Edge Limited Pacific Edge Limited (New Zealand)'),
(111902, 'https://ror.org/033f87p02', 'fr', 1, 'https://ror.org/033f87p02 PICUBE: Les assistants Ć  la dĆ©monstration au cœur du raisonnement mathĆ©matique PICUBE: Proof assistants at the heart of mathematical reasoning'),
(111903, 'https://ror.org/05hkcxq28', 'en', 1, 'https://ror.org/05hkcxq28 Southern Coastal Research Vessel Fleet'),
(111904, 'https://ror.org/015hz7767', 'en', 1, 'https://ror.org/015hz7767 Fraunhofer Italia Research'),
(111905, 'https://ror.org/03qga1z18', 'id', 1, 'https://ror.org/03qga1z18 STMIK Borneo Internasional Sekolah Tinggi Manajemen Informatika & Komputer Borneo Internasional'),
(111906, 'https://ror.org/03s9nma38', 'en', 1, 'https://ror.org/03s9nma38 iSea'),
(111907, 'https://ror.org/04kgg1090', 'en', 1, 'https://ror.org/04kgg1090 Pusan National University Yangsan Hospital ģ–‘ģ‚°ė¶€ģ‚°ėŒ€ķ•™źµė³‘ģ›'),
(111908, 'https://ror.org/05wcstg80', 'en', 1, 'https://ror.org/05wcstg80 National Institutes of Applied Research č²”åœ˜ę³•äŗŗåœ‹å®¶åÆ¦é©—ē ”ē©¶é™¢'),
(111909, 'https://ror.org/0183m5185', 'en', 1, 'https://ror.org/0183m5185 Wonkwang University Hospital ģ›ź“‘ėŒ€ķ•™źµė³‘ģ›'),
(111910, 'https://ror.org/01512ky61', 'de', 1, 'https://ror.org/01512ky61 Karl von Vogelsang Institute Karl von Vogelsang-Institut Karl von Vogelsang-Institut zur Erforschung der Geschichte der christlichen Demokratie in Ɩsterreich Karl von Vogelsang-Institute for Research of the History of Christian-Democracy in Austria'),
(111911, 'https://ror.org/01q4tpx91', 'id', 1, 'https://ror.org/01q4tpx91 Earth Sciences Research Organization Organisasi Riset Kebumian dan Maritim'),
(111912, 'https://ror.org/05y64qg15', 'en', 1, 'https://ror.org/05y64qg15 Sitabai Thite College of Pharmacy, Shirur'),
(111913, 'https://ror.org/01r5v9718', 'es', 1, 'https://ror.org/01r5v9718 Instituto Superior Tecnológico Riobamba'),
(111914, 'https://ror.org/02vkypq11', 'en', 1, 'https://ror.org/02vkypq11 Cachar College'),
(111915, 'https://ror.org/03fds3g42', 'en', 1, 'https://ror.org/03fds3g42 VIB Center for AI & Computational Biology VIB.AI'),
(111916, 'https://ror.org/04gmsar03', 'en', 1, 'https://ror.org/04gmsar03 Fraunhofer Institute for Computer Graphics Research Fraunhofer-Institut für Graphische Datenverarbeitung'),
(111917, 'https://ror.org/01bj9w612', 'en', 1, 'https://ror.org/01bj9w612 Eulji University Gangnam Eulji Medical Center ź°•ė‚Øģ„ģ§€ėŒ€ķ•™źµė³‘ģ›'),
(111918, 'https://ror.org/014wrcz97', 'fr', 1, 'https://ror.org/014wrcz97 Fondation du Barreau du QuƩbec'),
(111919, 'https://ror.org/027a3v841', 'id', 1, 'https://ror.org/027a3v841 Nanotechnology and Material Research Organization Organisasi Riset Nanoteknologi dan Material'),
(111920, 'https://ror.org/04db35b65', 'id', 1, 'https://ror.org/04db35b65 Government Administration, Economy, and Public Welfare Research Organization Organisasi Riset Tata Kelola Pemerintahan, Ekonomi, dan Kesejahteraan Masyarakat'),
(111921, 'https://ror.org/04smcrv12', 'no_lang_code', 1, 'https://ror.org/04smcrv12 EconCore EconCore (Belgium) EconCore N.V.'),
(111922, 'https://ror.org/02xcmp898', 'en', 1, 'https://ror.org/02xcmp898 Health-RI Stichting Health-RI'),
(111923, 'https://ror.org/00nr90x53', 'en', 1, 'https://ror.org/00nr90x53 Academy of Applied Studies Southern Serbia Akademija strukovnih studija Južna Srbija АкаГемија ŃŃ‚Ń€ŃƒŠŗŠ¾Š²Š½ŠøŃ… ŃŃ‚ŃƒŠ“ŠøŃ˜Š° Јужна Š”Ń€Š±ŠøŃ˜Š°'),
(111924, 'https://ror.org/05fw9zk80', 'no_lang_code', 1, 'https://ror.org/05fw9zk80 Brooks Sports, Inc. Brooks Sports, Inc. (United States)'),
(111925, 'https://ror.org/00pnt8b91', 'en', 1, 'https://ror.org/00pnt8b91 The Seoul Institute ģ„œģšøģ—°źµ¬ģ›'),
(111926, 'https://ror.org/04af5e344', 'en', 1, 'https://ror.org/04af5e344 Higher Institute of Medical Sciences and Technologies المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖ Ų§Ł„Ų·ŲØŁŠŲ©'),
(111927, 'https://ror.org/01dt7qh15', 'en', 1, 'https://ror.org/01dt7qh15 AREA Science Park'),
(111928, 'https://ror.org/03tgywz49', 'en', 1, 'https://ror.org/03tgywz49 Korea Institute of Public Finance ķ•œźµ­ģ”°ģ„øģž¬ģ •ģ—°źµ¬ģ›'),
(111929, 'https://ror.org/02sar2p31', 'en', 1, 'https://ror.org/02sar2p31 Banda University of Agriculture and Technology, Banda बांदा ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(111930, 'https://ror.org/039fwba89', 'en', 0, 'https://ror.org/039fwba89 Korea Research Council for Industrial Science and Technology ģ‚°ģ—…źø°ģˆ ģ—°źµ¬ķšŒ'),
(111931, 'https://ror.org/02rc83v19', 'en', 0, 'https://ror.org/02rc83v19 BlueHalo BlueHalo (United States)'),
(111932, 'https://ror.org/0229zxf81', 'es', 1, 'https://ror.org/0229zxf81 AM&C Colombia SAS AM&C Colombia SAS (Colombia)'),
(111933, 'https://ror.org/03ctacd45', 'en', 1, 'https://ror.org/03ctacd45 Korea Electrotechnology Research Institute ķ•œźµ­ģ „źø°ģ—°źµ¬ģ›'),
(111934, 'https://ror.org/05tpsgh61', 'en', 1, 'https://ror.org/05tpsgh61 Fraunhofer Institute for Biomedical Engineering Fraunhofer-Institut für Biomedizinische Technik'),
(111935, 'https://ror.org/04ge47c10', 'no_lang_code', 1, 'https://ror.org/04ge47c10 Arc-Team Arc-Team (Italy) Arc-Team Ltd. Arc-Team s.r.l.'),
(111936, 'https://ror.org/01jg4aw19', 'en', 1, 'https://ror.org/01jg4aw19 African Union Commission'),
(111937, 'https://ror.org/056cn0e37', 'en', 1, 'https://ror.org/056cn0e37 The Catholic University of Korea Seoul St. Mary''s Hospital ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ„œģšøģ„±ėŖØė³‘ģ› ģ„œģšøģ„±ėŖØė³‘ģ›'),
(111938, 'https://ror.org/031wbcc95', 'no_lang_code', 1, 'https://ror.org/031wbcc95 Digital Umuganda Digital Umuganda (Rwanda)'),
(111939, 'https://ror.org/00ajg8t71', 'en', 1, 'https://ror.org/00ajg8t71 Korean Educational Development Institute ķ•œźµ­źµģœ”ź°œė°œģ›'),
(111940, 'https://ror.org/03ypz6a83', 'no_lang_code', 1, 'https://ror.org/03ypz6a83 Quantia Consulting Quantia Consulting (Italy)'),
(111941, 'https://ror.org/02dwcqs71', 'en', 1, 'https://ror.org/02dwcqs71 All India Institute of Medical Sciences'),
(111942, 'https://ror.org/03z835e49', 'en', 1, 'https://ror.org/03z835e49 Mansoura National University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŲµŁˆŲ±Ų© Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(111943, 'https://ror.org/01nc10f70', 'fr', 1, 'https://ror.org/01nc10f70 STATIFY: Bayesian and extreme value statistical models for structured and high dimensional data STATIFY: Modèles statistiques bayésiens et des valeurs extrêmes pour données structurées et de grande dimension'),
(111944, 'https://ror.org/00bkxry42', 'en', 1, 'https://ror.org/00bkxry42 Fraunhofer Institut für Mikrotechnik und Mikrosysteme Fraunhofer Institute for Microengineering and Microsystems'),
(111945, 'https://ror.org/04yqm9y25', 'en', 1, 'https://ror.org/04yqm9y25 Child and Family Research Institute'),
(111946, 'https://ror.org/01vepzj85', 'no_lang_code', 1, 'https://ror.org/01vepzj85 Roche (Japan) 中外製薬'),
(111947, 'https://ror.org/04nc32781', 'en', 1, 'https://ror.org/04nc32781 Fraunhofer Institute for Intelligent Analysis and Information Systems Fraunhofer-Institut für Intelligente Analyse- und Informationssysteme'),
(111948, 'https://ror.org/01nryz461', 'en', 1, 'https://ror.org/01nryz461 PROSECCO: Programming securely with cryptography'),
(111949, 'https://ror.org/005tgre63', 'en', 1, 'https://ror.org/005tgre63 MongoDB MongoDB (United States)'),
(111950, 'https://ror.org/05hwzrf74', 'en', 1, 'https://ror.org/05hwzrf74 Hallym University Chuncheon Sacred Heart Hospital ķ•œė¦¼ėŒ€ķ•™źµ ģ¶˜ģ²œģ„±ģ‹¬ė³‘ģ›'),
(111951, 'https://ror.org/010gah044', 'en', 1, 'https://ror.org/010gah044 Rungta College of Engineering and Technology'),
(111952, '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'),
(111953, '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 Uluslararası Saraybosna Üniversitesi'),
(111954, 'https://ror.org/011eg3c60', 'en', 1, 'https://ror.org/011eg3c60 Mermaid Beach Radiology'),
(111955, 'https://ror.org/01nh64743', 'en', 1, 'https://ror.org/01nh64743 Fraunhofer Institute for Industrial Engineering Fraunhofer-Institut für Arbeitswirtschaft und Organisation IAO'),
(111956, 'https://ror.org/02sgvxq87', 'en', 1, 'https://ror.org/02sgvxq87 Admas University'),
(111957, 'https://ror.org/01zqcg218', 'en', 1, 'https://ror.org/01zqcg218 Kyung Hee University ź²½ķ¬ėŒ€ķ•™źµ'),
(111958, 'https://ror.org/05dnc1a25', 'en', 1, 'https://ror.org/05dnc1a25 Actors'' Equity Association'),
(111959, 'https://ror.org/0294a3487', 'en', 1, 'https://ror.org/0294a3487 National Centre for Foreign Animal Disease'),
(111960, 'https://ror.org/01ak24c12', 'en', 1, 'https://ror.org/01ak24c12 Fraunhofer Institute for Applied Information Technology Fraunhofer-Institut für Angewandte Informationstechnik'),
(111961, 'https://ror.org/01p262204', 'en', 1, 'https://ror.org/01p262204 Ministry of Education ėŒ€ķ•œėÆ¼źµ­ źµģœ”ė¶€'),
(111962, 'https://ror.org/01tqxav86', 'es', 1, 'https://ror.org/01tqxav86 Instituto Paraguayo de Derecho Constitucional Paraguayan Institute of Constitutional Law'),
(111963, 'https://ror.org/03wgaeq62', 'en', 1, 'https://ror.org/03wgaeq62 Al-Shamal Private University Ų¬Ų§Ł…Ų¹Ų© الؓمال الخاصة'),
(111964, 'https://ror.org/00r1edq15', 'de', 1, 'https://ror.org/00r1edq15 University of Greifswald UniversitƤt Greifswald'),
(111965, 'https://ror.org/02f34aa13', 'en', 1, 'https://ror.org/02f34aa13 National Deuteration Facility'),
(111966, 'https://ror.org/01sbq1a82', 'en', 1, 'https://ror.org/01sbq1a82 Universidad de Delaware University of Delaware UniversitƩ du Delaware'),
(111967, 'https://ror.org/05q3bvy68', 'en', 1, 'https://ror.org/05q3bvy68 Institute of Nuclear Medicine and Oncology Lahore'),
(111968, 'https://ror.org/05tb49488', 'en', 1, 'https://ror.org/05tb49488 Korea Institute of Finance ķ•œźµ­źøˆģœµģ—°źµ¬ģ› ķ•œźµ­źøˆģœµģ—°źµ¬ģ›ģ€ ģ§€ė‚œ'),
(111969, 'https://ror.org/00qw25974', 'en', 1, 'https://ror.org/00qw25974 Institute of Languages, Cultures and Societies'),
(111970, 'https://ror.org/039c0bt50', 'en', 1, 'https://ror.org/039c0bt50 Fraunhofer Research Institution for Individualized and Cell-Based Medical Engineering Fraunhofer-Einrichtung für Individualisierte und Zellbasierte Medizintechnik Fraunhofer-Einrichtung für Marine Biotechnologie und Zelltechnik'),
(111971, 'https://ror.org/02q6edw09', 'pt', 1, 'https://ror.org/02q6edw09 Agrupamento de Escolas de Briteiros'),
(111972, 'https://ror.org/028kpgg15', 'no_lang_code', 1, 'https://ror.org/028kpgg15 Primient Primient (United States)'),
(111973, 'https://ror.org/01dhqf181', 'id', 1, 'https://ror.org/01dhqf181 STIT Insan Kamil Bogor Sekolah Tinggi Ilmu Tarbiyah Insan Kamil'),
(111974, 'https://ror.org/035gy0a74', 'id', 1, 'https://ror.org/035gy0a74 Politeknik Kesehatan Permata Indonesia Yogyakarta'),
(111975, 'https://ror.org/0109bv193', 'en', 1, 'https://ror.org/0109bv193 International Federation of Digital Seismograph Networks'),
(111976, 'https://ror.org/05m9np560', 'en', 1, 'https://ror.org/05m9np560 Al Yarmouk University College ŁƒŁ„ŁŠŲ© Ų§Ł„ŁŠŲ±Ł…ŁˆŁƒ الجامعة'),
(111977, 'https://ror.org/020sst346', 'en', 1, 'https://ror.org/020sst346 Ludwig Boltzmann Institute for Rehabilitation Research'),
(111978, 'https://ror.org/03ryywt80', 'en', 1, 'https://ror.org/03ryywt80 Gachon University ź°€ģ²œėŒ€ķ•™źµ'),
(111979, 'https://ror.org/00zp0pb38', 'en', 1, 'https://ror.org/00zp0pb38 Virginia Energy'),
(111980, 'https://ror.org/046wpj017', 'en', 1, 'https://ror.org/046wpj017 National Center for Meteorology Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ للارصاد'),
(111981, 'https://ror.org/01rg5mm74', 'en', 1, 'https://ror.org/01rg5mm74 National Security Research Institute źµ­ź°€ė³“ģ•ˆźø°ģˆ ģ—°źµ¬ģ†Œ'),
(111982, 'https://ror.org/051rtfe77', 'de', 1, 'https://ror.org/051rtfe77 Hochschule für Logopädie Ostschweiz'),
(111983, 'https://ror.org/044k0pw44', 'en', 1, 'https://ror.org/044k0pw44 Korea Institute of Geoscience and Mineral Resources ķ•œźµ­ģ§€ģ§ˆģžģ›ģ—°źµ¬ģ›'),
(111984, 'https://ror.org/04w3jy968', 'no_lang_code', 1, 'https://ror.org/04w3jy968 Samsung (South Korea) 삼성'),
(111985, 'https://ror.org/01qcq9d74', 'en', 1, 'https://ror.org/01qcq9d74 Korea Institute of Machinery & Materials ķ•œźµ­źø°ź³„ģ—°źµ¬ģ›'),
(111986, 'https://ror.org/02c2kyt77', 'en', 1, 'https://ror.org/02c2kyt77 Eindhoven University of Technology Technische Universiteit Eindhoven'),
(111987, 'https://ror.org/05j7fep28', 'en', 1, 'https://ror.org/05j7fep28 Australian Nuclear Science and Technology Organisation'),
(111988, 'https://ror.org/01atz5j40', 'en', 1, 'https://ror.org/01atz5j40 Australian University of Theology'),
(111989, 'https://ror.org/02hvzx537', 'en', 1, 'https://ror.org/02hvzx537 Bloomgarden, Ostroff & Associates'),
(111990, 'https://ror.org/04022gq47', 'en', 1, 'https://ror.org/04022gq47 Measurement Standards Laboratory of New Zealand'),
(111991, 'https://ror.org/01b56z302', 'no_lang_code', 1, 'https://ror.org/01b56z302 Shandong Shanke Intelligent Technology Co., Ltd'),
(111992, 'https://ror.org/04y865p48', 'en', 1, 'https://ror.org/04y865p48 Korea Society of Computer Information ķ•œźµ­ģ»“ķ“Øķ„°ģ •ė³“ķ•™ķšŒ'),
(111993, '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'),
(111994, 'https://ror.org/04kn6vt85', 'en', 1, 'https://ror.org/04kn6vt85 Korea Maritime Institute ķ•œźµ­ķ•“ģ–‘ģˆ˜ģ‚°ź°œė°œģ›'),
(111995, 'https://ror.org/038bzrc91', 'en', 1, 'https://ror.org/038bzrc91 Fraunhofer Austria'),
(111996, 'https://ror.org/01f37hg92', 'es', 1, 'https://ror.org/01f37hg92 Centro de Investigaciones y Servicios Ambientales Ecovida'),
(111997, 'https://ror.org/04b2d5d26', 'en', 1, 'https://ror.org/04b2d5d26 Providence Health Care Research Institute'),
(111998, 'https://ror.org/04e8nyq62', 'en', 1, 'https://ror.org/04e8nyq62 Institute of Historical Research'),
(111999, 'https://ror.org/02cc18e55', 'en', 1, 'https://ror.org/02cc18e55 Maharaja Jitendra Narayan Medical College & Hospital'),
(112000, 'https://ror.org/046tzsh56', 'en', 1, 'https://ror.org/046tzsh56 Channel Islands National Park Parque nacional Islas del Canal'),
(112001, 'https://ror.org/017xhef20', 'en', 1, 'https://ror.org/017xhef20 Institute for Social Sciences and Humanities - ISSH (Iran Academia)'),
(112002, 'https://ror.org/00gxyk415', 'en', 1, 'https://ror.org/00gxyk415 Center for Language Studies'),
(112003, 'https://ror.org/01easw929', 'en', 1, 'https://ror.org/01easw929 Inha University ģøķ•˜ėŒ€ķ•™źµ'),
(112004, 'https://ror.org/00nj8ry09', 'en', 1, 'https://ror.org/00nj8ry09 Fraunhofer Institute for Environmental, Safety and Energy Technology UMSICHT Fraunhofer-Institut für Umwelt-, Sicherheits- und Energietechnik UMSICHT'),
(112005, 'https://ror.org/000bmd763', 'en', 0, 'https://ror.org/000bmd763 CHA Medical Center ģ°Ø ģ˜ė£Œģ›'),
(112006, 'https://ror.org/04z40f862', 'id', 1, 'https://ror.org/04z40f862 Pusat Penelitian Karet Indonesia'),
(112007, 'https://ror.org/00wvtes77', 'fr', 1, 'https://ror.org/00wvtes77 MORPHEO: Capture and Analysis of Shapes in Motion MORPHEO: Capture et Analyses de Formes en Mouvement'),
(112008, 'https://ror.org/04xfvq521', 'en', 1, 'https://ror.org/04xfvq521 Death Valley National Park Parque nacional del Valle de la Muerte'),
(112009, 'https://ror.org/03zqjy339', 'tr', 1, 'https://ror.org/03zqjy339 PTT Posta ve Telgraf Teşkilatı Posta ve Telgraf Teşkilatı A.Ş.'),
(112010, 'https://ror.org/03a62bv60', 'en', 1, 'https://ror.org/03a62bv60 University of Malta'),
(112011, 'https://ror.org/05gzcfc34', 'en', 1, 'https://ror.org/05gzcfc34 Maharana Pratap Horticultural University, Karnal महाराणा ą¤Ŗą„ą¤°ą¤¤ą¤¾ą¤Ŗ ą¤‰ą¤¦ą„ą¤Æą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, करनाल'),
(112012, 'https://ror.org/03s7h1x17', 'en', 1, 'https://ror.org/03s7h1x17 Bank of Korea ķ•œźµ­ģ€ķ–‰'),
(112013, 'https://ror.org/014xqzt56', 'en', 1, 'https://ror.org/014xqzt56 SNUH SMG-SNU Boramae Medical Center ė³“ė¼ė§¤ė³‘ģ› ģ„œģšøėŒ€ķ•™źµė³‘ģ›ģš“ģ˜ ģ„œģšøķŠ¹ė³„ģ‹œė³“ė¼ė§¤ė³‘ģ› ģ„œģšøė³“ė¼ė§¤ė³‘ģ› ģ„œģšøķŠ¹ė³„ģ‹œ ė³“ė¼ė§¤ė³‘ģ› ģ„œģšøķŠ¹ė³„ģ‹œė³“ė¼ė§¤ė³‘ģ›'),
(112014, 'https://ror.org/005bty106', 'en', 1, 'https://ror.org/005bty106 Eulji University ģ„ģ§€ėŒ€ķ•™źµ'),
(112015, 'https://ror.org/04pmgnb45', 'en', 1, 'https://ror.org/04pmgnb45 Canterbury Institute of Management'),
(112016, 'https://ror.org/02wakmj41', 'fr', 1, 'https://ror.org/02wakmj41 ANTIQUE: Analyse Statique par InterprƩtation Abstraite ANTIQUE: Static Analysis by Abstract Interpretation'),
(112017, 'https://ror.org/02vgg2808', 'de', 1, 'https://ror.org/02vgg2808 Bundesministerium für Wirtschaft und Energie Federal Ministry for Economic Affairs and Energy'),
(112018, 'https://ror.org/00h8nar58', 'pl', 1, 'https://ror.org/00h8nar58 Uniwersytet Pomorski w Słupsku'),
(112019, 'https://ror.org/007b74r43', 'en', 0, 'https://ror.org/007b74r43 Ludwig Boltzmann Institute for Retinology and Biomicroscopic Laser Surgery'),
(112020, 'https://ror.org/010n3fj34', 'no_lang_code', 1, 'https://ror.org/010n3fj34 SciFormat Publishing Inc. SciFormat Publishing Inc. (Canada)'),
(112021, 'https://ror.org/02phevt59', 'en', 1, 'https://ror.org/02phevt59 Fraunhofer Institute for Wind Energy Systems Fraunhofer-Institut für Windenergiesysteme'),
(112022, 'https://ror.org/024mb6n55', 'de', 1, 'https://ror.org/024mb6n55 Wiener Forum für Demokratie und Menschenrechte'),
(112023, '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'),
(112024, 'https://ror.org/0312jvg82', 'en', 1, 'https://ror.org/0312jvg82 NOAA Office of Space Weather Observations'),
(112025, 'https://ror.org/004n2nr09', 'en', 1, 'https://ror.org/004n2nr09 Fraunhofer Institute for Physical Measurement Techniques Fraunhofer-Institut für Physikalische Messtechnik'),
(112026, 'https://ror.org/03tqh5n18', 'en', 1, 'https://ror.org/03tqh5n18 Fraunhofer Chalmers Centrum fƶr Industrimatematik Fraunhofer Chalmers Research Centre for Industrial Mathematics'),
(112027, 'https://ror.org/03tnqgz83', 'no_lang_code', 1, 'https://ror.org/03tnqgz83 Telesto Energy Telesto Energy (Singapore) Telesto Energy Pte. Ltd'),
(112028, 'https://ror.org/00j3ccw54', 'en', 1, 'https://ror.org/00j3ccw54 Scientific Research International Institute of Postgraduate Education ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ послеГипломного Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ғылыми Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ Єалықаралық Гипломнан кейінгі білім Š±ŠµŃ€Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(112029, 'https://ror.org/05kf6ye97', 'en', 1, 'https://ror.org/05kf6ye97 Korea Research Institute for Human Settlements 국토연구원'),
(112030, 'https://ror.org/036qche57', 'pt', 1, 'https://ror.org/036qche57 Centro de Investigação em Saúde de Angola Health Research Centre of Angola'),
(112031, 'https://ror.org/00yqed873', 'no_lang_code', 1, 'https://ror.org/00yqed873 Fraunhofer Singapore'),
(112032, 'https://ror.org/02fz07e24', 'en', 1, 'https://ror.org/02fz07e24 Aier Eye Hospital Group Aier Eye Hospital Group (China) Aier Eye Hospital Group Co., Ltd. ēˆ±å°”ēœ¼ē§‘åŒ»é™¢é›†å›¢ ēˆ±å°”ēœ¼ē§‘åŒ»é™¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(112033, 'https://ror.org/05azpw996', 'es', 1, 'https://ror.org/05azpw996 Universidad Privada del Este'),
(112034, 'https://ror.org/00x1eba59', 'pt', 1, 'https://ror.org/00x1eba59 Brazilian Society of Bone Marrow Transplantation Sociedade Brasileira de Terapia Celular e Transplante de Medula Ɠssea'),
(112035, 'https://ror.org/016tr2327', 'en', 1, 'https://ror.org/016tr2327 Boyce Thompson Institute'),
(112036, 'https://ror.org/03bk4a791', 'en', 1, 'https://ror.org/03bk4a791 AntlerA Therapeutics, Inc. AntlerA Therapeutics, Inc. (United States)'),
(112037, 'https://ror.org/05eqk2j25', 'en', 1, 'https://ror.org/05eqk2j25 Fraunhofer Portugal Research'),
(112038, 'https://ror.org/04gqrt415', 'en', 1, 'https://ror.org/04gqrt415 NSW Ambulance'),
(112039, 'https://ror.org/00zmn9v56', 'de', 0, 'https://ror.org/00zmn9v56 Ludwig Boltzmann Institut für Epilepsie und Neuromuskuläre Erkrankungen'),
(112040, 'https://ror.org/04t1xhf26', 'fr', 1, 'https://ror.org/04t1xhf26 COMMEDIA: Computational mathematics for bio-medical applications COMMEDIA: MathƩmatiques et calcul scientifique pour les applications bio-mƩdicales'),
(112041, 'https://ror.org/05yn5jn61', 'id', 1, 'https://ror.org/05yn5jn61 Universitas Al Washliyah Darussalam Banda Aceh'),
(112042, 'https://ror.org/03akq3731', 'en', 1, 'https://ror.org/03akq3731 Ludwig Boltzmann Institut für Netzwerkmedizin an der Universität Wien Ludwig Boltzmann Institute for Network Medicine at the University of Vienna'),
(112043, 'https://ror.org/002r3r896', 'en', 1, 'https://ror.org/002r3r896 Institute of English Studies'),
(112044, 'https://ror.org/036ge9k11', 'fr', 1, 'https://ror.org/036ge9k11 Institut de Recherche sur les Systèmes Nucléaires pour la production d''Energie bas carbone'),
(112045, 'https://ror.org/00rzkah64', 'fr', 1, 'https://ror.org/00rzkah64 MUSCLEES: Compréhension mathématique multi-échelles d''écosystèmes vivants complexes avec structures émergentes MUSCLEES: Mathematical Understanding across Scales of Complex Living Ecosystems with Emerging Structures'),
(112046, 'https://ror.org/05rnwy495', 'fr', 1, 'https://ror.org/05rnwy495 ALMANACH: Automatic Language Modelling and Analysis & Computational Humanities ALMANACH: ModƩlisation et analyse linguistique automatique et humanitƩs computationnelles'),
(112047, 'https://ror.org/00msb1w96', 'en', 1, 'https://ror.org/00msb1w96 The Catholic University of Korea St. Vincent''s Hospital ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ„±ė¹ˆģ„¼ķŠøė³‘ģ› ģ„±ė¹ˆģ„¼ķŠøė³‘ģ›'),
(112048, 'https://ror.org/0045r5e57', 'en', 1, 'https://ror.org/0045r5e57 Society for Southeast Asian Herpetology'),
(112049, 'https://ror.org/05cy2r844', 'en', 1, 'https://ror.org/05cy2r844 Institute Academy for Precision Measurment Science and Technology, CAS äø­å›½ē§‘å­¦é™¢ē²¾åÆ†ęµ‹é‡ē§‘å­¦äøŽęŠ€ęœÆåˆ›ę–°ē ”ē©¶é™¢'),
(112050, 'https://ror.org/01g3c3365', 'id', 1, 'https://ror.org/01g3c3365 Hamzanwadi University Universitas Hamzanwadi'),
(112051, 'https://ror.org/04e835403', 'fr', 1, 'https://ror.org/04e835403 MIMESIS: Computational Anatomy and Simulation for Medicine MIMESIS: Simulation mƩdicale guidƩe par les donnƩes'),
(112052, 'https://ror.org/02t6zvp46', 'fr', 1, 'https://ror.org/02t6zvp46 CONVECS: Construction de systèmes concurrents vérifiés CONVECS: Construction of verified concurrent systems'),
(112053, 'https://ror.org/00zky9d41', 'en', 0, 'https://ror.org/00zky9d41 Wuhan Institute of Physics and Mathematics äø­å›½ē§‘å­¦é™¢ę­¦ę±‰ē‰©ē†äøŽę•°å­¦ē ”ē©¶ę‰€'),
(112054, 'https://ror.org/04and7w57', 'en', 1, 'https://ror.org/04and7w57 Pearl River Fisheries Research Institute ē ę±Ÿę°“äŗ§ē ”ē©¶ę‰€'),
(112055, 'https://ror.org/05j19c061', 'pt', 1, 'https://ror.org/05j19c061 Escola Nacional de Administração Pública'),
(112056, 'https://ror.org/0546zz821', 'en', 1, 'https://ror.org/0546zz821 Donders Centre for Neuroscience'),
(112057, 'https://ror.org/02qt1y483', 'id', 1, 'https://ror.org/02qt1y483 Organisasi Riset Ilmu Pengetahuan Sosial dan Humaniora Social Sciences and Humanities Research Organization'),
(112058, 'https://ror.org/00rny2m53', 'en', 1, 'https://ror.org/00rny2m53 Yangtze River Fisheries Research Institute äø­å›½ę°“äŗ§ē§‘å­¦ē ”ē©¶é™¢é•æę±Ÿę°“äŗ§ē ”ē©¶ę‰€'),
(112059, 'https://ror.org/04tz7b884', 'en', 1, 'https://ror.org/04tz7b884 Eulji University Nowon Eulji Medical Center ė…øģ›ģ„ģ§€ėŒ€ķ•™źµė³‘ģ›'),
(112060, 'https://ror.org/050mbz718', 'en', 1, 'https://ror.org/050mbz718 Fraunhofer Institute for Microstructure of Materials and Systems Fraunhofer-Institut für Mikrostruktur von Werkstoffen und Systemen IMWS'),
(112061, 'https://ror.org/053d97e59', 'en', 0, 'https://ror.org/053d97e59 Kyung Hee University East-West Neo Medical Center ź²½ķ¬ėŒ€ķ•™źµ ė™ģ„œģ‹ ģ˜ķ•™ė³‘ģ› ź²½ķ¬ėŒ€ķ•™źµ ė™ģ„œģ‹ ģ˜ķ•™ė³‘ģ› - ķ˜‘ģ§„ģ§„ė£Œģ„¼ķ„° ė™ģ„œģ‹ ģ˜ķ•™ė³‘ģ›'),
(112062, 'https://ror.org/04h8jph19', 'en', 1, 'https://ror.org/04h8jph19 Soonchunhyang University Hospital Cheonan ģˆœģ²œķ–„ėŒ€ķ•™źµ ģ²œģ•ˆė³‘ģ›'),
(112063, 'https://ror.org/020x39229', 'en', 1, 'https://ror.org/020x39229 Michael Smith Health Research BC'),
(112064, 'https://ror.org/04gs7j941', 'en', 1, 'https://ror.org/04gs7j941 Morling College'),
(112065, 'https://ror.org/012kqgs25', 'id', 1, 'https://ror.org/012kqgs25 Poltekkes Kemenkes Bandung'),
(112066, 'https://ror.org/00a8zdv13', 'en', 1, 'https://ror.org/00a8zdv13 Ludwig Boltzmann Institut für Traumatologie – Das Forschungszentrum in Kooperation mit der AUVA Ludwig Boltzmann Institute for Traumatology, The Research Center in Cooperation with AUVA'),
(112067, 'https://ror.org/03ebbfh95', 'en', 1, 'https://ror.org/03ebbfh95 Fraunhofer Institute for Laser Technology Fraunhofer-Institut für Lasertechnik'),
(112068, 'https://ror.org/05w7ta844', 'en', 0, 'https://ror.org/05w7ta844 Dnepropetrovsk State Institute of Physical Culture and Sport ŠŸŃ€ŠøŠ“Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø і ŃŠæŠ¾Ń€Ń‚Ńƒ'),
(112069, 'https://ror.org/051yfbn24', 'en', 1, 'https://ror.org/051yfbn24 State Key Laboratory of Geodesy and Earth''s Dynamics å¤§åœ°ęµ‹é‡äøŽåœ°ēƒåŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112070, 'https://ror.org/021k10z87', 'en', 1, 'https://ror.org/021k10z87 Leibniz-Institut für Friedens- und Konfliktforschung Peace Research Institute Frankfurt'),
(112071, 'https://ror.org/05q78p661', 'en', 1, 'https://ror.org/05q78p661 Khwaja Moinuddin Chishti Language University, Lucknow, U.P. ą¤–ą¤¼ą„ą¤µą¤¾ą¤œą¤¾ ą¤®ą„ą¤ˆą¤Øą„ą¤¦ą„ą¤¦ą„€ą¤Ø ą¤šą¤æą¤¶ą„ą¤¤ą„€ भाषा ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤²ą¤–ą¤Øą¤Š, ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶'),
(112072, 'https://ror.org/001rdaz60', 'en', 1, 'https://ror.org/001rdaz60 Bavarian Academy of Sciences and Humanities Bayerische Akademie der Wissenschaften'),
(112073, 'https://ror.org/02hbjae69', 'en', 1, 'https://ror.org/02hbjae69 Gyeonggi Research Institute 경기연구원'),
(112074, 'https://ror.org/02pq7w335', 'no_lang_code', 1, 'https://ror.org/02pq7w335 Berkshire Hathaway (United States)'),
(112075, 'https://ror.org/01bg62x04', 'ca', 1, 'https://ror.org/01bg62x04 Generalidad de CataluƱa Generalitat de Catalunya Government of Catalonia Kataluniako Generalitatea'),
(112076, 'https://ror.org/017z8h955', 'en', 1, 'https://ror.org/017z8h955 NOAA Office of Low Earth Orbit Observations'),
(112077, 'https://ror.org/016d4xa49', 'de', 1, 'https://ror.org/016d4xa49 Plattform zeithistorischer politischer Archive'),
(112078, 'https://ror.org/04p9jqf87', 'en', 1, 'https://ror.org/04p9jqf87 New Horizon College of Engineering'),
(112079, 'https://ror.org/03gh4w223', 'id', 1, 'https://ror.org/03gh4w223 Aeronautics and Space Research Organization Organisasi Riset Penerbangan dan Antariksa'),
(112080, 'https://ror.org/04rks4647', 'en', 1, 'https://ror.org/04rks4647 Sasurie College of Arts and Science'),
(112081, 'https://ror.org/00xn8xq53', 'fr', 1, 'https://ror.org/00xn8xq53 VALDA: Valeur Ơ partir des donnƩes VALDA: Value from Data'),
(112082, 'https://ror.org/00a2syk23', 'en', 1, 'https://ror.org/00a2syk23 Ludwig Boltzmann Institut für digitale Gesundheit und Prävention Ludwig Boltzmann Institute for Digital Health and Prevention'),
(112083, 'https://ror.org/0229xaa13', 'en', 1, 'https://ror.org/0229xaa13 The Catholic University of Korea Yeouido St. Mary''s Hospital ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ—¬ģ˜ė„ģ„±ėŖØė³‘ģ› ģ—¬ģ˜ė„ģ„±ėŖØė³‘ģ›'),
(112084, 'https://ror.org/01ghq5e75', 'en', 1, 'https://ror.org/01ghq5e75 Eulji University Uijeongbu Eulji Medical Center ģ˜ģ •ė¶€ģ„ģ§€ėŒ€ķ•™źµė³‘ģ›'),
(112085, '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'),
(112086, 'https://ror.org/05eqxpf83', 'en', 1, 'https://ror.org/05eqxpf83 Soonchunhyang University Hospital Seoul ģˆœģ²œķ–„ėŒ€ķ•™źµ ģ„œģšøė³‘ģ›'),
(112087, 'https://ror.org/02vzaga52', 'en', 1, 'https://ror.org/02vzaga52 St. Mother Theresa Engineering College'),
(112088, 'https://ror.org/00pqz5a68', 'de', 1, 'https://ror.org/00pqz5a68 Kreisky-Archiv Verein Bruno Kreisky Archiv'),
(112089, 'https://ror.org/00zmy1708', 'en', 1, 'https://ror.org/00zmy1708 Maryhill School of Theology'),
(112090, 'https://ror.org/05yc6p159', 'en', 1, 'https://ror.org/05yc6p159 Yeungnam University ģ˜ė‚ØėŒ€ķ•™źµ'),
(112091, 'https://ror.org/04aj4c181', 'de', 1, 'https://ror.org/04aj4c181 TIB – Leibniz Information Centre for Science and Technology and University Library Technische Informationsbibliothek Technische Informationsbibliothek (TIB)'),
(112092, 'https://ror.org/03x57gn41', 'en', 1, 'https://ror.org/03x57gn41 Australian Institute of Marine Science'),
(112093, 'https://ror.org/04c96ng72', 'fr', 1, 'https://ror.org/04c96ng72 WILLOW: Embodied computer vision WILLOW: Vision par ordinateur incarnƩe'),
(112094, 'https://ror.org/04jdcxn74', 'en', 1, 'https://ror.org/04jdcxn74 Guru Nanak Institute of Technology'),
(112095, 'https://ror.org/02njc8q57', 'en', 1, 'https://ror.org/02njc8q57 DYOGENE: Dynamics of Geometric Networks'),
(112096, 'https://ror.org/028xwpw38', 'en', 1, 'https://ror.org/028xwpw38 Premium Serums & Vaccines Pvt. Ltd. Premium Serums & Vaccines Pvt. Ltd. (India)'),
(112097, 'https://ror.org/01z3tfx80', 'en', 1, 'https://ror.org/01z3tfx80 NOAA Office of Geostationary Earth Orbit Observations'),
(112098, 'https://ror.org/03qehyx72', 'en', 1, 'https://ror.org/03qehyx72 Ministry of Patriots and Veterans Affairs źµ­ź°€ė³“ķ›ˆė¶€'),
(112099, 'https://ror.org/01mbzp479', 'en', 1, 'https://ror.org/01mbzp479 Korea Institute for Curriculum and Evaluation ķ•œźµ­źµģœ”ź³¼ģ •ķ‰ź°€ģ›'),
(112100, 'https://ror.org/0124gwh94', 'en', 1, 'https://ror.org/0124gwh94 AgResearch'),
(112101, 'https://ror.org/02jkb9r34', 'fr', 1, 'https://ror.org/02jkb9r34 ARGO: Apprentissage, graphes et optimisation distribuƩe ARGO: Learning, graphs and distributed optimization'),
(112102, 'https://ror.org/011e9bt93', 'en', 1, 'https://ror.org/011e9bt93 United States Air Force Office of Scientific Research'),
(112103, 'https://ror.org/0469ncz24', 'en', 1, 'https://ror.org/0469ncz24 Dnipro State Medical University Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(112104, 'https://ror.org/01yrp7892', 'en', 1, 'https://ror.org/01yrp7892 Fraunhofer Information Center for Planning and Building Fraunhofer-Informationszentrum Raum und Bau'),
(112105, 'https://ror.org/05a15z872', 'en', 1, 'https://ror.org/05a15z872 Samsung Medical Center ģ‚¼ģ„±ģ˜ė£Œģ›'),
(112106, 'https://ror.org/020n3fw10', 'en', 1, 'https://ror.org/020n3fw10 Fraunhofer Institute for Photonic Microsystems Fraunhofer-Institut für Photonische Mikrosysteme'),
(112107, 'https://ror.org/04fa47g91', 'en', 1, 'https://ror.org/04fa47g91 International Center for Bamboo and Rattan å›½é™…ē«¹č—¤äø­åæƒ'),
(112108, 'https://ror.org/04zpj8n12', 'fr', 1, 'https://ror.org/04zpj8n12 CASCADE: Conception et Analyse de Systèmes pour la Confidentialité et l''Authentification de Données et d''Entitées CASCADE: Construction and Analysis of Systems for Confidentiality and Authenticity of Data and Entities'),
(112109, 'https://ror.org/03v4jvx71', 'fr', 1, 'https://ror.org/03v4jvx71 TRIPOP: Modeling, Simulation and Control of Nonsmooth Dynamical Systems TRIPOP: Modélisation, simulation et commande des systèmes dynamiques non lisses'),
(112110, 'https://ror.org/02wexny57', 'en', 1, 'https://ror.org/02wexny57 Ludwig Boltzmann Institut für Kriegsfolgenforschung Ludwig Boltzmann Institute for Research on Consequences of War'),
(112111, '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'),
(112112, 'https://ror.org/03dfbba55', 'id', 1, 'https://ror.org/03dfbba55 Universitas Al-Azhar Indonesia University Al-Azhar Indonesia'),
(112113, 'https://ror.org/051269613', 'en', 1, 'https://ror.org/051269613 National Forensic Institute źµ­ė¦½ź³¼ķ•™ģˆ˜ģ‚¬ģ—°źµ¬ģ›'),
(112114, 'https://ror.org/00nhast32', 'en', 1, 'https://ror.org/00nhast32 Global Reef'),
(112115, 'https://ror.org/02rcakp17', 'en', 1, 'https://ror.org/02rcakp17 NOAA Geostationary Operational Environmental Satellites'),
(112116, 'https://ror.org/01jdz5g73', 'en', 1, 'https://ror.org/01jdz5g73 Donders Centre for Cognitive Neuroimaging'),
(112117, 'https://ror.org/045qevj46', 'en', 1, 'https://ror.org/045qevj46 African Institute for Research in Infectious Diseases'),
(112118, 'https://ror.org/010gtx568', 'en', 1, 'https://ror.org/010gtx568 Ministry of the Interior and Safety ķ–‰ģ •ģ•ˆģ „ė¶€'),
(112119, 'https://ror.org/02h2xja52', 'en', 1, 'https://ror.org/02h2xja52 Freshwater Fisheries Research Center äø­å›½ę°“äŗ§ē§‘å­¦ē ”ē©¶é™¢ę·”ę°“ęø”äøšē ”ē©¶äø­åæƒ'),
(112120, 'https://ror.org/03ryjaa17', 'id', 1, 'https://ror.org/03ryjaa17 Universitas Dinamika'),
(112121, 'https://ror.org/00e5h1370', 'en', 1, 'https://ror.org/00e5h1370 SERENA: Simulation for the Environment: Reliable and Efficient Numerical Algorithms'),
(112122, 'https://ror.org/0333j0897', 'en', 1, 'https://ror.org/0333j0897 Canada''s Michael Smith Genome Sciences Centre'),
(112123, 'https://ror.org/04999hq03', 'de', 1, 'https://ror.org/04999hq03 UniversitƤtsklinikum Brandenburg an der Havel'),
(112124, 'https://ror.org/059ne2r23', 'en', 1, 'https://ror.org/059ne2r23 Fraunhofer Research Institution for Additive Manufacturing Technologies IAPT Fraunhofer-Einrichtung für Additive Produktionstechnologien IAPT'),
(112125, 'https://ror.org/030syve83', 'fr', 1, 'https://ror.org/030syve83 Observatoire Midi-PyrƩnƩes'),
(112126, 'https://ror.org/02vygm709', 'en', 1, 'https://ror.org/02vygm709 Incheon Medical Center ģøģ²œģ˜ė£Œģ›'),
(112127, 'https://ror.org/052xhqf46', 'no_lang_code', 0, 'https://ror.org/052xhqf46 A. E. Staley Manufacturing Company A. E. Staley Manufacturing Company (United States)');
INSERT INTO `rors` VALUES
(112128, 'https://ror.org/055gkws08', 'fr', 1, 'https://ror.org/055gkws08 ASTRA: Automated and Safe TRAnsportation systems ASTRA: Systèmes de transport automatisés et sécurisés'),
(112129, 'https://ror.org/04h6t4j49', 'en', 1, 'https://ror.org/04h6t4j49 Donders Community for Medical Neuroscience'),
(112130, 'https://ror.org/00qxr8t08', 'en', 1, 'https://ror.org/00qxr8t08 Agence Canadienne d''Inspection des Aliments Canadian Food Inspection Agency'),
(112131, 'https://ror.org/00emz0366', 'no_lang_code', 1, 'https://ror.org/00emz0366 Woosuk University ģš°ģ„ėŒ€ķ•™źµ'),
(112132, 'https://ror.org/03vyq6t71', 'en', 1, 'https://ror.org/03vyq6t71 Fraunhofer Institut für System- und Innovationsforschung Fraunhofer Institute for Systems and Innovation Research'),
(112133, 'https://ror.org/016tawm39', 'en', 1, 'https://ror.org/016tawm39 Bangalore Baptist Hospital'),
(112134, 'https://ror.org/05aah2q92', 'en', 1, 'https://ror.org/05aah2q92 Fraunhofer USA'),
(112135, 'https://ror.org/05n894m26', 'en', 1, 'https://ror.org/05n894m26 CUNY Graduate School of Public Health and Health Policy'),
(112136, 'https://ror.org/053sba816', 'en', 1, 'https://ror.org/053sba816 Donders Institute for Brain, Cognition and Behaviour'),
(112137, 'https://ror.org/0201z3b59', 'en', 1, 'https://ror.org/0201z3b59 The Center for Nutritional Psychology'),
(112138, 'https://ror.org/05kzfa883', 'en', 1, 'https://ror.org/05kzfa883 Korea Institute of Science and Technology ķ•œźµ­ź³¼ķ•™źø°ģˆ ģ—°źµ¬ģ›'),
(112139, 'https://ror.org/047dqcg40', 'en', 1, 'https://ror.org/047dqcg40 Korea University ź³ ė ¤ėŒ€ķ•™źµ'),
(112140, 'https://ror.org/02bchch95', 'en', 1, 'https://ror.org/02bchch95 Plant & Food Research'),
(112141, 'https://ror.org/005rpmt10', 'en', 1, 'https://ror.org/005rpmt10 Korea Institute of Oriental Medicine ķ•œźµ­ķ•œģ˜ķ•™ģ—°źµ¬ģ›'),
(112142, 'https://ror.org/027608s47', 'no_lang_code', 1, 'https://ror.org/027608s47 GE Healthcare (Hungary) GE Healthcare MagyarorszƔg Kft'),
(112143, 'https://ror.org/04q78tk20', 'en', 1, 'https://ror.org/04q78tk20 Sungkyunkwan University ģ„±ź· ź“€ėŒ€ķ•™źµ'),
(112144, 'https://ror.org/04hm8eb66', 'en', 1, 'https://ror.org/04hm8eb66 Fraunhofer Institute for Mechanics of Materials Fraunhofer-Institut für Werkstoffmechanik'),
(112145, 'https://ror.org/013aysd81', 'en', 1, 'https://ror.org/013aysd81 National Research Foundation of Korea ķ•œźµ­ģ—°źµ¬ģž¬ė‹Ø'),
(112146, 'https://ror.org/02s30v625', 'en', 1, 'https://ror.org/02s30v625 Bajkul Milani Mahavidyalaya'),
(112147, 'https://ror.org/03amy1q65', 'fr', 1, 'https://ror.org/03amy1q65 Plateformes rƩgionales de transferts technologiques'),
(112148, 'https://ror.org/04r9gvy43', 'en', 1, 'https://ror.org/04r9gvy43 Pan-African University'),
(112149, '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'),
(112150, 'https://ror.org/03ta21y66', 'en', 1, 'https://ror.org/03ta21y66 Korea Institute for National Unification ķ†µģ¼ģ—°źµ¬ģ›'),
(112151, 'https://ror.org/02t6p0w04', 'en', 1, 'https://ror.org/02t6p0w04 National Association for Sikolohiyang Pilipino Pambansang Samahan sa Sikolohiyang Pilipino'),
(112152, 'https://ror.org/01gysn705', 'en', 1, 'https://ror.org/01gysn705 CHA Health Systems ģ°Øė³‘ģ›ė°”ģ“ģ˜¤ź·øė£¹'),
(112153, 'https://ror.org/04nnwna19', 'en', 1, 'https://ror.org/04nnwna19 OWASP Foundation Open Worldwide Application Security Project'),
(112154, 'https://ror.org/02tsanh21', 'en', 1, 'https://ror.org/02tsanh21 National Cancer Center 국립암센터'),
(112155, 'https://ror.org/00faswz36', 'fr', 1, 'https://ror.org/00faswz36 Cairn.info'),
(112156, 'https://ror.org/02zfnv673', 'id', 1, 'https://ror.org/02zfnv673 Universitas Islam Negeri Sjech M. Djamil Djambek Bukittinggi'),
(112157, 'https://ror.org/04x45f476', 'en', 1, 'https://ror.org/04x45f476 Fraunhofer Institute for Cell Therapy and Immunology Fraunhofer-Institut für Zelltherapie und Immunologie'),
(112158, 'https://ror.org/04zvy0z46', 'no_lang_code', 1, 'https://ror.org/04zvy0z46 Aicura Medical Aicura Medical (Germany)'),
(112159, 'https://ror.org/04y8p0f91', 'en', 1, 'https://ror.org/04y8p0f91 Fraunhofer Institute for Building Physics Fraunhofer-Institut für Bauphysik'),
(112160, 'https://ror.org/01h7vn964', 'en', 1, 'https://ror.org/01h7vn964 Internet Interdisciplinary Institute'),
(112161, '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'),
(112162, 'https://ror.org/05gnv4a66', 'en', 1, 'https://ror.org/05gnv4a66 Fraunhofer Institute for Silicate Research Fraunhofer-Institut für Silicatforschung'),
(112163, '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'),
(112164, 'https://ror.org/01bxda055', 'en', 1, 'https://ror.org/01bxda055 Alamo Navajo School Board Alamo Navajo School Board, Inc.'),
(112165, 'https://ror.org/00gmryg88', 'en', 1, 'https://ror.org/00gmryg88 National Radio Research Agency źµ­ė¦½ģ „ķŒŒģ—°źµ¬ģ›'),
(112166, 'https://ror.org/051dcvw72', 'fr', 1, 'https://ror.org/051dcvw72 ANGE: Analyse NumƩrique, GƩophysique et Environnement ANGE: Numerical Analysis, Geophysics and Environment'),
(112167, 'https://ror.org/04ssq1e68', 'en', 1, 'https://ror.org/04ssq1e68 Cox''s Bazar International University ą¦•ą¦•ą§ą¦øą¦¬ą¦¾ą¦œą¦¾ą¦° ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(112168, 'https://ror.org/04xs57h96', 'en', 1, 'https://ror.org/04xs57h96 Prifysgol Lerpwl University of Liverpool'),
(112169, 'https://ror.org/02ztq4x57', 'en', 1, 'https://ror.org/02ztq4x57 Ludwig Boltzmann Institut für Wissenschaftsvermittlung und Pandemievorsorge Ludwig Boltzmann Institute for Science Outreach and Pandemic Preparedness'),
(112170, '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'),
(112171, 'https://ror.org/045ctcx79', 'id', 1, 'https://ror.org/045ctcx79 Universitas PTIQ Jakarta'),
(112172, 'https://ror.org/022xspg86', 'en', 1, 'https://ror.org/022xspg86 Nepal Paediatric Society'),
(112173, 'https://ror.org/0433s0254', 'es', 1, 'https://ror.org/0433s0254 Instituto Tecnológico de Morelia Morelia Institute of Technology'),
(112174, 'https://ror.org/03sjz4j28', 'en', 1, 'https://ror.org/03sjz4j28 Naypyitaw State Polytechnic University į€”į€±į€•į€¼į€Šį€ŗį€į€±į€¬į€ŗį€•į€­į€Æį€œį€®į€į€€į€¹į€€į€”į€…į€ŗį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(112175, 'https://ror.org/0381pta47', 'fr', 1, 'https://ror.org/0381pta47 MOEX: Evolution de la connaissance MOEX: Evolving Knowledge'),
(112176, 'https://ror.org/03sc9sf97', 'no_lang_code', 1, 'https://ror.org/03sc9sf97 eversyn GmbH eversyn GmbH (Germany)'),
(112177, 'https://ror.org/04gwjz789', 'en', 1, 'https://ror.org/04gwjz789 Tay Do University TrĘ°į»ng ĐẔi Hį»c TĆ¢y ĐƓ'),
(112178, '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'),
(112179, 'https://ror.org/01gkn6j11', 'en', 0, 'https://ror.org/01gkn6j11 Institute of Geodesy and Geophysics äø­å›½ē§‘å­¦é™¢ęµ‹é‡äøŽåœ°ēƒē‰©ē†ē ”ē©¶ę‰€'),
(112180, 'https://ror.org/03m2f9j08', 'en', 1, 'https://ror.org/03m2f9j08 NOAA Office of Satellite Ground Services'),
(112181, 'https://ror.org/024cwyh09', 'fr', 1, 'https://ror.org/024cwyh09 DATAMOVE: Data Aware Large Scale Computing DATAMOVE: Mouvements de donnƩes pour le calcul haute performance'),
(112182, 'https://ror.org/00whe2089', 'en', 1, 'https://ror.org/00whe2089 Donetsk National Technical University Doniecki Narodowy Uniwersytet Techniczny Донецкий Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(112183, 'https://ror.org/013f2p073', 'fr', 1, 'https://ror.org/013f2p073 STEEP: SoutenabilitƩ, Territoires, Environnement, Economie et Politique STEEP: Sustainability transition, environment, economy and local policy'),
(112184, 'https://ror.org/02nr41m30', 'en', 1, 'https://ror.org/02nr41m30 OceanEarth Foundation'),
(112185, 'https://ror.org/047aa1566', 'en', 1, 'https://ror.org/047aa1566 Multanimal Modi College Multanimal Modi College, Modinagar'),
(112186, 'https://ror.org/030tcae29', 'en', 1, 'https://ror.org/030tcae29 Maulana Abul Kalam Azad University of Technology, West Bengal'),
(112187, 'https://ror.org/03ctyg534', 'fr', 1, 'https://ror.org/03ctyg534 ELAN: modELing the Appearance of Nonlinear phenomena ELAN: modELisation de l''Apparence des phénomènes Non-linéaires'),
(112188, 'https://ror.org/01na2qs84', 'en', 1, 'https://ror.org/01na2qs84 S. Tentishev Asian Medical Institute Азиатский меГицинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”Š°Ń‚ŠŗŃ‹Š½Š±Š°Ń Š¢ŠµŠ½Ń‚Ń‹ŃˆŠµŠ²Š°'),
(112189, 'https://ror.org/03edbj839', 'en', 1, 'https://ror.org/03edbj839 Maharashtra Institute of Mental Health ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° मानसिक ą¤†ą¤°ą„‹ą¤—ą„ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° मानसिक ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(112190, 'https://ror.org/04gj5px28', 'en', 1, 'https://ror.org/04gj5px28 Inha University Hospital ģøķ•˜ėŒ€ė³‘ģ›'),
(112191, 'https://ror.org/00pr69w48', 'en', 1, 'https://ror.org/00pr69w48 Digital Humanities Research Hub'),
(112192, 'https://ror.org/043256924', 'en', 0, 'https://ror.org/043256924 Ludwig Boltzmann Institute for Translational Heart Failure Research'),
(112193, 'https://ror.org/02q0kba91', 'en', 1, 'https://ror.org/02q0kba91 Port City International University ą¦Ŗą§‹ą¦°ą§ą¦Ÿ সিটি ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(112194, 'https://ror.org/02wv2bt91', 'id', 1, 'https://ror.org/02wv2bt91 Badan Pengawas Obat dan Makanan Indonesian Food and Drug Authority'),
(112195, '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'),
(112196, 'https://ror.org/02sm4kj57', 'en', 1, 'https://ror.org/02sm4kj57 Fraunhofer Institute for Technological Trend Analysis Fraunhofer-Institut für Naturwissenschaftlich-Technische Trendanalysen'),
(112197, 'https://ror.org/02cksep19', 'en', 1, 'https://ror.org/02cksep19 TYREX: Types and Reasoning for the Web'),
(112198, 'https://ror.org/017gxrm85', 'en', 1, 'https://ror.org/017gxrm85 The Catholic University of Korea Incheon St. Mary''s Hospital ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģøģ²œģ„±ėŖØė³‘ģ› ģøģ²œģ„±ėŖØė³‘ģ›'),
(112199, 'https://ror.org/03q4c3e69', 'en', 1, 'https://ror.org/03q4c3e69 Andalusian Health Service Servicio Andaluz de Salud'),
(112200, 'https://ror.org/03344ty51', 'en', 1, 'https://ror.org/03344ty51 Miyagi National Hospital'),
(112201, 'https://ror.org/04farme71', 'en', 1, 'https://ror.org/04farme71 Fraunhofer Institute for Digital Medicine Fraunhofer-Institut für Digitale Medizin'),
(112202, 'https://ror.org/00gsyt497', 'en', 1, 'https://ror.org/00gsyt497 Ludwig Boltzmann Institut für Grund- und Menschenrechte Ludwig Boltzmann Institute of Fundamental and Human Rights'),
(112203, 'https://ror.org/03529by52', 'no_lang_code', 1, 'https://ror.org/03529by52 Willingsford Ltd. Willingsford Ltd. (United Kingdom)'),
(112204, 'https://ror.org/0053xaw54', 'en', 1, 'https://ror.org/0053xaw54 Ludwig Boltzmann Institut für Kardiovaskuläre Forschung Ludwig Boltzmann Institute for Cardiovascular Research'),
(112205, 'https://ror.org/02yrs2n53', 'en', 1, 'https://ror.org/02yrs2n53 Constructor University'),
(112206, 'https://ror.org/005sm0w71', 'en', 1, 'https://ror.org/005sm0w71 NOAA Geostationary Extended Observations'),
(112207, 'https://ror.org/01k4yrm29', 'en', 1, 'https://ror.org/01k4yrm29 Korea Institute of Science & Technology Information ķ•œźµ­ź³¼ķ•™źø°ģˆ ģ •ė³“ģ—°źµ¬ģ›'),
(112208, 'https://ror.org/04xrm3t06', 'ca', 1, 'https://ror.org/04xrm3t06 Institut Nacional d''Educació Física de Catalunya National Institute of Physical Education of Catalonia'),
(112209, 'https://ror.org/013msgt25', 'no_lang_code', 1, 'https://ror.org/013msgt25 General Electric (United States)'),
(112210, 'https://ror.org/01rwkhb30', 'en', 1, 'https://ror.org/01rwkhb30 Korea Institute of Materials Science ķ•œźµ­ģž¬ė£Œģ—°źµ¬ģ›'),
(112211, 'https://ror.org/05mz63w98', 'es', 1, 'https://ror.org/05mz63w98 Instituto de Educación Superior Pedagógico Público "Sagrado Corazón de Jesús"'),
(112212, 'https://ror.org/016qzbe65', 'en', 1, 'https://ror.org/016qzbe65 Institute of Advanced Legal Studies'),
(112213, 'https://ror.org/01jpzd518', 'en', 1, 'https://ror.org/01jpzd518 National Center for High-Performance Computing åœ‹å®¶é«˜é€Ÿē¶²č·Æčˆ‡čØˆē®—äø­åæƒ'),
(112214, 'https://ror.org/02295tc31', 'en', 1, 'https://ror.org/02295tc31 NOAA Geostationary Operation Environmental Satellite-R Series'),
(112215, 'https://ror.org/02bwk9n38', 'en', 1, 'https://ror.org/02bwk9n38 Chinese Academy of Fishery Sciences äø­å›½ę°“äŗ§ē§‘å­¦ē ”ē©¶é™¢äøœęµ·ę°“äŗ§ē ”ē©¶ę‰€'),
(112216, 'https://ror.org/02keexa98', 'en', 1, 'https://ror.org/02keexa98 CHA University Bundang Women''s Medical Center 분당차여성병원'),
(112217, 'https://ror.org/01jt9jx45', 'en', 1, 'https://ror.org/01jt9jx45 Seshadripuram Institute of Management Studies'),
(112218, 'https://ror.org/02m1mxe43', 'es', 1, 'https://ror.org/02m1mxe43 Instituto de la Visión'),
(112219, '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'),
(112220, 'https://ror.org/03sbhge02', 'en', 1, 'https://ror.org/03sbhge02 Hallym University ķ•œė¦¼ėŒ€ķ•™źµ'),
(112221, 'https://ror.org/04ypd8a97', 'en', 1, 'https://ror.org/04ypd8a97 NOAA Office of System Architecture and Advanced Planning'),
(112222, 'https://ror.org/01ks0bt75', 'en', 1, 'https://ror.org/01ks0bt75 Seoul National University Children''s Hospital ģ„œģšøėŒ€ģ–“ė¦°ģ“ė³‘ģ› ģ„œģšøėŒ€ķ•™źµ ģ–“ė¦°ģ“ė³‘ģ› ģ„œģšøėŒ€ķ•™źµģ–“ė¦°ģ“ė³‘ģ›'),
(112223, 'https://ror.org/005gh7453', 'en', 1, 'https://ror.org/005gh7453 Virginia Division of Mineral Mining'),
(112224, 'https://ror.org/029ycp228', 'en', 1, 'https://ror.org/029ycp228 Austral University of Chile Universidad Austral de Chile'),
(112225, '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'),
(112226, 'https://ror.org/04wdz4v71', 'en', 1, 'https://ror.org/04wdz4v71 Samsung Changwon Hospital 삼성창원병원 ģ„±ź· ź“€ėŒ€ķ•™źµ 삼성창원병원'),
(112227, 'https://ror.org/02xdkwd14', 'ms', 1, 'https://ror.org/02xdkwd14 Sultan Azlan Shah University Universiti Sultan Azlan Shah'),
(112228, 'https://ror.org/01cxn9s23', 'en', 1, 'https://ror.org/01cxn9s23 State Key Laboratory of Spectroscopy and Atomic and Molecular Physics ę³¢č°±äøŽåŽŸå­åˆ†å­ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112229, 'https://ror.org/05y7bx056', 'en', 1, 'https://ror.org/05y7bx056 Housing and Building Research Institute ą¦¹ą¦¾ą¦‰ą¦œą¦æą¦‚ ą¦ą¦Øą§ą¦” ą¦¬ą¦æą¦²ą§ą¦”ą¦æą¦‚ ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(112230, 'https://ror.org/05431kn12', 'en', 1, 'https://ror.org/05431kn12 Institute of Marine and Environmental Technology'),
(112231, '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'),
(112232, 'https://ror.org/01f5wp925', 'ca', 1, 'https://ror.org/01f5wp925 Open University of Catalonia Universidad Abierta de CataluƱa Universitat Oberta de Catalunya'),
(112233, 'https://ror.org/040em2e23', 'en', 1, 'https://ror.org/040em2e23 Academy of Sciences of the Republic of Tajikistan ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŠø миллии илмҳои Тоҷикистон'),
(112234, 'https://ror.org/05vm7ws26', 'en', 1, 'https://ror.org/05vm7ws26 ICAR-National Bureau of Soil Survey and Land Use Planning भा.ą¤•ą„ƒ.अ.प.- ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą„ƒą¤¦ą¤¾ ą¤øą¤°ą„ą¤µą„‡ą¤•ą„ą¤·ą¤£ ą¤ą¤µą¤‚ ą¤­ą„‚ą¤®ą¤æ ą¤‰ą¤Ŗą¤Æą„‹ą¤— ą¤Øą¤æą¤Æą„‹ą¤œą¤Ø ą¤¬ą„ą¤Æą„‚ą¤°ą„‹'),
(112235, 'https://ror.org/00kty1b51', 'en', 1, 'https://ror.org/00kty1b51 Tidetron Bioworks Technology Co., Ltd. Tidetron Bioworks Technology Co., Ltd. (China) ę€åˆ›ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(112236, 'https://ror.org/00v16df20', 'en', 1, 'https://ror.org/00v16df20 Austrian Institute for Health Technology Assessment GmbH'),
(112237, 'https://ror.org/019641589', 'en', 1, 'https://ror.org/019641589 Inje University Haeundae Paik Hospital ģøģ œ ėŒ€ķ•™źµ ķ•“ģš“ėŒ€ 백병원 ģøģ œėŒ€ķ•™źµ ķ•“ģš“ėŒ€ė°±ė³‘ģ›'),
(112238, 'https://ror.org/05hz3qz67', 'en', 1, 'https://ror.org/05hz3qz67 New Model Institute for Technology & Engineering'),
(112239, 'https://ror.org/03gw7aq50', 'de', 1, 'https://ror.org/03gw7aq50 Landesamt für Natur, Umwelt und Klima Nordrhein-Westfalen'),
(112240, 'https://ror.org/0455vfz21', 'en', 1, 'https://ror.org/0455vfz21 Women''s Health Research Institute'),
(112241, 'https://ror.org/00mt1j222', 'id', 1, 'https://ror.org/00mt1j222 Health and Nutrition Research Organization Organisasi Riset Kesehatan'),
(112242, 'https://ror.org/02fez3815', 'en', 1, 'https://ror.org/02fez3815 Fraunhofer Institute for Cognitive Systems Fraunhofer-Institut für Kognitive Systeme IKS'),
(112243, 'https://ror.org/0417sdw47', 'en', 1, 'https://ror.org/0417sdw47 Korea Basic Science Institute ķ•œźµ­źø°ģ“ˆź³¼ķ•™ģ§€ģ›ģ—°źµ¬ģ›'),
(112244, 'https://ror.org/05pp95825', 'fr', 1, 'https://ror.org/05pp95825 MOKAPLAN: Advances in Numerical Calculus of Variations MOKAPLAN: AvancƩes en calcul numƩrique des variations'),
(112245, 'https://ror.org/03tzb2h73', 'en', 1, 'https://ror.org/03tzb2h73 Ajou University ģ•„ģ£¼ėŒ€ķ•™źµ'),
(112246, 'https://ror.org/006p4kh13', 'en', 1, 'https://ror.org/006p4kh13 NOAA Joint Polar Satellite System Program Office'),
(112247, 'https://ror.org/0128qg670', 'en', 1, 'https://ror.org/0128qg670 Fraunhofer Group for Microelectronics Fraunhofer-Verbund Mikroelektronik'),
(112248, 'https://ror.org/05hkkdn48', 'de', 1, 'https://ror.org/05hkkdn48 Fraunhofer Society Fraunhofer-Gesellschaft Fraunhofer-Gesellschaft zur Fƶrderung der angewandten Forschung e. V.'),
(112249, 'https://ror.org/05089qr23', 'en', 1, 'https://ror.org/05089qr23 WHISPER: Well Honed Infrastructure Software for Programming Environments and Runtimes'),
(112250, 'https://ror.org/02dfg5n73', 'en', 1, 'https://ror.org/02dfg5n73 Fraunhofer UK Research'),
(112251, 'https://ror.org/043jfav91', 'en', 1, 'https://ror.org/043jfav91 North Eastern Mindanao State University'),
(112252, 'https://ror.org/00ck0kh03', 'en', 1, 'https://ror.org/00ck0kh03 NSW Environment and Heritage'),
(112253, 'https://ror.org/01vy73689', 'id', 1, 'https://ror.org/01vy73689 Organisasi Riset Hayati dan Lingkungan Research Organization for Life Sciences and Environment'),
(112254, 'https://ror.org/03s5q0090', 'en', 1, 'https://ror.org/03s5q0090 Asan Medical Center ģ„œģšøģ•„ģ‚°ė³‘ģ›'),
(112255, 'https://ror.org/0118xsm53', 'en', 1, 'https://ror.org/0118xsm53 Fraunhofer Research Institution for Battery Cell Production Fraunhofer-Einrichtung Forschungsfertigung Batteriezelle'),
(112256, 'https://ror.org/01cfzwy76', 'no_lang_code', 1, 'https://ror.org/01cfzwy76 The Floow The Floow (United Kingdom)'),
(112257, 'https://ror.org/04m1ydt32', 'en', 1, 'https://ror.org/04m1ydt32 Delaware Biotechnology Institute'),
(112258, 'https://ror.org/00edcak12', 'es', 1, 'https://ror.org/00edcak12 Instituto Tecnológico Superior de Purísima del Rincón'),
(112259, 'https://ror.org/00y718461', 'en', 1, 'https://ror.org/00y718461 Fraunhofer Research Institution for Energy Infrastructures and Geotechnologies IEG Fraunhofer-Einrichtung für Energieinfrastrukturen und Geotechnologien IEG'),
(112260, 'https://ror.org/000fpja48', 'en', 1, 'https://ror.org/000fpja48 PƤdagogische Hochschule Tirol University College of Teacher Education Tyrol'),
(112261, 'https://ror.org/03ykdv657', 'id', 1, 'https://ror.org/03ykdv657 Sekolah Tinggi Agama Islam (STAI) Baturaja Sekolah Tinggi Agama Islam Baturaja'),
(112262, 'https://ror.org/02b6c0m75', 'fr', 0, 'https://ror.org/02b6c0m75 UnitƩ d''Appui et de Recherche OSUPS'),
(112263, 'https://ror.org/01nqmht92', 'en', 1, 'https://ror.org/01nqmht92 Fraunhofer Institute for Transportation and Infrastructure Systems Fraunhofer-Institut für Verkehrs- und Infrastruktursysteme'),
(112264, 'https://ror.org/02pkedj80', 'en', 1, 'https://ror.org/02pkedj80 NOAA Office of Projects, Planning, and Analysis'),
(112265, 'https://ror.org/02w0trx84', 'en', 1, 'https://ror.org/02w0trx84 Montana State University'),
(112266, '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'),
(112267, 'https://ror.org/058kjq542', 'en', 1, 'https://ror.org/058kjq542 Fraunhofer Institute for Software and Systems Engineering Fraunhofer-Institut für Software- und Systemtechnik'),
(112268, 'https://ror.org/02w97cy44', 'en', 1, 'https://ror.org/02w97cy44 Refugee Law Initiative'),
(112269, 'https://ror.org/02y08yn84', 'en', 1, 'https://ror.org/02y08yn84 The Center for Global Health and Health Policy, Global Health and Education Projects, Inc'),
(112270, 'https://ror.org/04e2h0037', 'en', 1, 'https://ror.org/04e2h0037 QUANTIC: QUANTum Information Circuits'),
(112271, 'https://ror.org/02e9szc72', 'en', 1, 'https://ror.org/02e9szc72 Shahab Danesh University دانؓگاه ؓهاب دانؓ'),
(112272, 'https://ror.org/01tf5aq62', 'en', 1, 'https://ror.org/01tf5aq62 Ludwig Boltzmann Institut für Lungengesundheit Ludwig Boltzmann Institute for Lung Health'),
(112273, 'https://ror.org/02j37v490', 'en', 1, 'https://ror.org/02j37v490 NaphCare Charitable Foundation NaphCare Charitable Foundation, Inc.'),
(112274, 'https://ror.org/027p0bm56', 'en', 1, 'https://ror.org/027p0bm56 Fiona Stanley Hospital'),
(112275, 'https://ror.org/045ff8v85', 'fr', 1, 'https://ror.org/045ff8v85 CTRL-A: Commande pour systĆØmes informatiques autonomiques CTRL-A: Control for safe Autonomic computing systems'),
(112276, 'https://ror.org/054gh2b75', 'en', 1, 'https://ror.org/054gh2b75 Chonnam National University Hwasun Hospital ķ™”ģˆœģ „ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(112277, 'https://ror.org/005nteb15', 'en', 1, 'https://ror.org/005nteb15 Gachon University Gil Medical Center ź°€ģ²œėŒ€ 길병원 ź°€ģ²œėŒ€ķ•™źµ 길병원 길병원'),
(112278, 'https://ror.org/03mmsx307', 'en', 1, 'https://ror.org/03mmsx307 Centre of Excellence for Long-acting Therapeutics'),
(112279, 'https://ror.org/00nq2dx79', 'en', 1, 'https://ror.org/00nq2dx79 National Sea Simulator'),
(112280, 'https://ror.org/012bxv356', 'en', 1, 'https://ror.org/012bxv356 University of Mysore UniversitĆ© de mysore ą®®ąÆˆą®šąÆ‚ą®°ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°®ą±ˆą°øą±‚ą°°ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²®ą³ˆą²øą³‚ą²°ą³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą“®ąµˆą“øąµ‚ąµ¼ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(112281, 'https://ror.org/031bs2a09', 'en', 0, 'https://ror.org/031bs2a09 Ukrainian State University of Chemical Technology Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний хіміко-технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(112282, 'https://ror.org/04p8ta418', 'en', 1, 'https://ror.org/04p8ta418 Adama Hospital Medical College įŠ į‹³įˆ› įˆ†įˆµį’į‰³įˆ įˆœį‹²įŠ«įˆ įŠ®įˆŒįŒ…'),
(112283, 'https://ror.org/00njt2653', 'en', 1, 'https://ror.org/00njt2653 Hallym University Kangnam Sacred Heart Hospital ķ•œė¦¼ėŒ€ķ•™źµ 강남성심병원'),
(112284, 'https://ror.org/04s7axt30', 'id', 1, 'https://ror.org/04s7axt30 Electronics and Informatics Research Organization Organisasi Riset Elektronika dan Informatika'),
(112285, 'https://ror.org/00q4j0f43', 'en', 1, 'https://ror.org/00q4j0f43 All India Institute of Medical Sciences, Madurai अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤®ą¤¦ą„ą¤°ą„ˆ அகில ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ, மதுரை'),
(112286, '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'),
(112287, 'https://ror.org/00vxgjw72', 'en', 1, 'https://ror.org/00vxgjw72 Ministry of Health and Welfare ėŒ€ķ•œėÆ¼źµ­ 볓걓복지부'),
(112288, 'https://ror.org/05fmd7q31', 'en', 1, 'https://ror.org/05fmd7q31 Institute of Classical Studies'),
(112289, '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'),
(112290, 'https://ror.org/03ep23f07', 'en', 1, 'https://ror.org/03ep23f07 Korea Research Institute of Bioscience and Biotechnology ķ•œźµ­ģƒėŖ…ź³µķ•™ģ—°źµ¬ģ›'),
(112291, 'https://ror.org/0485z7y90', 'fr', 1, 'https://ror.org/0485z7y90 SIERRA: Apprentissage Statistique et optimisation SIERRA: Machine Learning and Optimisation'),
(112292, 'https://ror.org/024p6aq98', 'en', 1, 'https://ror.org/024p6aq98 Fraunhofer Institute for Silicon Technology Fraunhofer-Institut für Siliziumtechnologie'),
(112293, 'https://ror.org/04bz1tk47', 'en', 1, 'https://ror.org/04bz1tk47 The Strategy Unit'),
(112294, 'https://ror.org/00yzavr52', 'en', 1, 'https://ror.org/00yzavr52 Joint Preservation Centre of BC'),
(112295, 'https://ror.org/02p9cyn66', 'en', 1, 'https://ror.org/02p9cyn66 Manaaki Whenua – Landcare Research'),
(112296, 'https://ror.org/02fvyy542', 'en', 1, 'https://ror.org/02fvyy542 Global Health and Education Projects'),
(112297, 'https://ror.org/00q3jak84', 'pt', 1, 'https://ror.org/00q3jak84 Heart Institute Instituto do Coração Instituto do Coração - HCFMUSP'),
(112298, 'https://ror.org/02xzjn598', 'en', 1, 'https://ror.org/02xzjn598 Regent College'),
(112299, 'https://ror.org/04wwwem40', 'no_lang_code', 1, 'https://ror.org/04wwwem40 T-Tudok T-Tudok (Hungary) T-Tudok Zrt.'),
(112300, 'https://ror.org/02zxe8216', 'en', 1, 'https://ror.org/02zxe8216 International Association of Seismology and Physics of the Earth''s Interior'),
(112301, 'https://ror.org/040e6k507', 'ro', 1, 'https://ror.org/040e6k507 Research and Development Station for Fruit Tree Growing Băneasa Stațiunea de Cercetare - Dezvoltare pentru Pomicultură Băneasa - București'),
(112302, 'https://ror.org/04881ht90', 'en', 1, 'https://ror.org/04881ht90 MIMOVE: Middleware on the Move'),
(112303, 'https://ror.org/00avq9860', 'en', 1, 'https://ror.org/00avq9860 Korea Rural Economic Institute ķ•œźµ­ė†ģ“Œź²½ģ œģ—°źµ¬ģ›'),
(112304, 'https://ror.org/02n1ntd57', 'en', 1, 'https://ror.org/02n1ntd57 Institute of Commonwealth Studies'),
(112305, 'https://ror.org/031aqk326', 'en', 1, 'https://ror.org/031aqk326 Fraunhofer Institute for Reliability and Microintegration Fraunhofer-Institut für Zuverlässigkeit und Mikrointegration'),
(112306, 'https://ror.org/04yka3j04', 'en', 1, 'https://ror.org/04yka3j04 CHA University ģ°Øģ˜ź³¼ķ•™ėŒ€ķ•™źµ'),
(112307, 'https://ror.org/01447fv18', 'es', 1, 'https://ror.org/01447fv18 Universidad Tecnológica de Calvillo'),
(112308, 'https://ror.org/01vtz5r07', 'en', 1, 'https://ror.org/01vtz5r07 Marriott International Marriott International (United States)'),
(112309, 'https://ror.org/01bj3z035', 'en', 1, 'https://ror.org/01bj3z035 Soonchunhyang University Medical Center ģˆœģ²œķ–„ėŒ€ķ•™źµ ģ¤‘ģ•™ģ˜ė£Œģ›'),
(112310, 'https://ror.org/02jb34965', 'en', 1, 'https://ror.org/02jb34965 NOAA Systems Architecture and Engineering'),
(112311, 'https://ror.org/002wfgr58', 'en', 1, 'https://ror.org/002wfgr58 Seoul Metropolitan Government'),
(112312, 'https://ror.org/04wd10e19', 'en', 1, 'https://ror.org/04wd10e19 Gyeongguk National University ź²½źµ­ėŒ€ķ•™źµ źµ­ė¦½ź²½źµ­ėŒ€ķ•™źµ'),
(112313, 'https://ror.org/015t55b95', 'en', 1, 'https://ror.org/015t55b95 Small Business Administration'),
(112314, 'https://ror.org/01eksj726', 'en', 1, 'https://ror.org/01eksj726 Konyang University Hospital ź±“ģ–‘ėŒ€ķ•™źµė³‘ģ›'),
(112315, 'https://ror.org/012a0nd08', 'en', 1, 'https://ror.org/012a0nd08 Heavy Ion Accelerators'),
(112316, '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'),
(112317, 'https://ror.org/02hmjzt55', 'en', 1, 'https://ror.org/02hmjzt55 Badan Riset dan Inovasi Nasional National Research and Innovation Agency'),
(112318, 'https://ror.org/01rvqha10', 'en', 1, 'https://ror.org/01rvqha10 Fraunhofer Institute for Manufacturing Engineering and Automation Fraunhofer-Institut für Produktionstechnik und Automatisierung'),
(112319, 'https://ror.org/051kb4j80', 'en', 1, 'https://ror.org/051kb4j80 Ludwig Boltzmann Institute of Osteology'),
(112320, 'https://ror.org/004raaa70', 'fr', 0, 'https://ror.org/004raaa70 Federal University of Toulouse Midi-PyrƩnƩes UniversitƩ FƩdƩrale de Toulouse Midi-PyrƩnƩes'),
(112321, 'https://ror.org/03rd4h240', 'en', 0, 'https://ror.org/03rd4h240 Office of Electricity Delivery and Energy Reliability'),
(112322, 'https://ror.org/02kfzvh91', 'en', 1, 'https://ror.org/02kfzvh91 Fraunhofer Institute for Solar Energy Systems Fraunhofer-Institut für Solare Energiesysteme'),
(112323, 'https://ror.org/006fs1j92', 'en', 0, 'https://ror.org/006fs1j92 Gangwon Provincial University'),
(112324, 'https://ror.org/05hnb4n85', 'en', 1, 'https://ror.org/05hnb4n85 Jeju National University ģ œģ£¼ėŒ€ķ•™źµ'),
(112325, 'https://ror.org/027j9rp38', 'en', 1, 'https://ror.org/027j9rp38 Inje University Sanggye Paik Hospital ģøģ œėŒ€ķ•™źµ ģƒź³„ė°±ė³‘ģ›'),
(112326, 'https://ror.org/04ntyjt11', 'en', 1, 'https://ror.org/04ntyjt11 Yeungnam University Medical Center ģ˜ė‚ØėŒ€ķ•™źµė³‘ģ› ģ˜ė‚ØėŒ€ķ•™źµģ˜ė£Œģ›'),
(112327, 'https://ror.org/04qfaak15', 'en', 1, 'https://ror.org/04qfaak15 Fraunhofer Institute for Factory Operation and Automation Fraunhofer-Institut für Fabrikbetrieb und -automatisierung'),
(112328, 'https://ror.org/035vjkd03', 'en', 1, 'https://ror.org/035vjkd03 Heritage Christian University'),
(112329, 'https://ror.org/009r5p347', 'en', 0, 'https://ror.org/009r5p347 Ludwig Boltzmann Institute for Lung Vascular Research'),
(112330, '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'),
(112331, 'https://ror.org/04dp7n448', 'en', 1, 'https://ror.org/04dp7n448 Chattogram BGMEA University of Fashion and Technology ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦¬ą¦æą¦œą¦æą¦ą¦®ą¦‡ą¦ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦«ą§ą¦Æą¦¾ą¦¶ą¦Ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(112332, 'https://ror.org/03tevfg71', 'en', 1, 'https://ror.org/03tevfg71 Fraunhofer Institute for Large Structures in Production Engineering IGP Fraunhofer-Institut für Großstrukturen in der Produktionstechnik IGP'),
(112333, 'https://ror.org/01qemch77', 'fr', 1, 'https://ror.org/01qemch77 CAMBIUM: Langages de programmation : systĆØmes de types, concurrence, preuve de programme CAMBIUM: Programming languages: type systems, concurrency, proofs of programs'),
(112334, 'https://ror.org/003hq2245', 'en', 1, 'https://ror.org/003hq2245 Jiulongpo Center for Disease Control and Prevention é‡åŗ†åø‚ä¹é¾™å”åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(112335, 'https://ror.org/02c5qvj97', 'en', 1, 'https://ror.org/02c5qvj97 Australian Centre for Neutron Scattering'),
(112336, 'https://ror.org/03fbww491', 'en', 1, 'https://ror.org/03fbww491 Conservación Osa Osa Conservation'),
(112337, 'https://ror.org/006776986', 'no_lang_code', 1, 'https://ror.org/006776986 Wonkwang University ģ›ź“‘ėŒ€ķ•™źµ'),
(112338, 'https://ror.org/00g1br919', 'en', 1, 'https://ror.org/00g1br919 Jeonbuk State Institute 전북연구원'),
(112339, 'https://ror.org/024ape423', 'en', 1, 'https://ror.org/024ape423 Fraunhofer Institute for Integrated Circuits Fraunhofer-Institut für Integrierte Schaltungen'),
(112340, 'https://ror.org/03ss88z23', 'en', 1, 'https://ror.org/03ss88z23 Kagoshima University 鹿児島大学'),
(112341, 'https://ror.org/05ft09q38', 'en', 1, 'https://ror.org/05ft09q38 Donders Centre for Cognition'),
(112342, 'https://ror.org/05hq7wc19', 'fr', 1, 'https://ror.org/05hq7wc19 MICROCOSME: Analyse, ingƩnierie et contrƓle des micro-organismes MICROCOSME: Analysis, engineering, and control of microorganisms'),
(112343, 'https://ror.org/0189xsk81', 'en', 1, 'https://ror.org/0189xsk81 Marchand Institute for Minimally Invasive Surgery'),
(112344, 'https://ror.org/03pqe2b21', 'en', 1, 'https://ror.org/03pqe2b21 The University of Larkano جامعہ لاڑکانہ Ł„Ų§Ś™ŚŖŲ§Ś»Łˆ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(112345, 'https://ror.org/0053t8w53', 'no_lang_code', 1, 'https://ror.org/0053t8w53 Added Value Solutions Added Value Solutions (Spain)'),
(112346, 'https://ror.org/043k4kk20', 'en', 1, 'https://ror.org/043k4kk20 Korea Research Institute of Chemical Technology'),
(112347, 'https://ror.org/03nb1x490', 'en', 1, 'https://ror.org/03nb1x490 Fraunhofer Institute for Chemical Technology Fraunhofer-Institut für Chemische Technologie'),
(112348, 'https://ror.org/0452w1e25', 'id', 1, 'https://ror.org/0452w1e25 Akademi Ilmu Pengetahuan Indonesia Indonesian Academy of Sciences'),
(112349, 'https://ror.org/01h04ms65', 'en', 1, 'https://ror.org/01h04ms65 U.S. Energy Information Administration'),
(112350, 'https://ror.org/003nj8h62', 'en', 0, 'https://ror.org/003nj8h62 L-Isptar San Luqa St. Luke''s Hospital'),
(112351, 'https://ror.org/05xp9bk66', 'en', 1, 'https://ror.org/05xp9bk66 Fraunhofer Institute for Casting, Composite and Processing Technology IGCV Fraunhofer-Institut für Gießerei-, Composite- und Verarbeitungstechnik IGCV'),
(112352, 'https://ror.org/028y9zc26', 'fr', 1, 'https://ror.org/028y9zc26 Centre d''Intelligence Artificielle et de Robotique du Mali Centre for Artificial Intelligence and Robotics of Mali'),
(112353, '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'),
(112354, 'https://ror.org/01gb44154', 'id', 1, 'https://ror.org/01gb44154 Energy and Manufacture Research Organization Organisasi Riset Energi dan Manufaktur'),
(112355, 'https://ror.org/01bzpky79', 'en', 1, 'https://ror.org/01bzpky79 Ajou University Hospital ģ•„ģ£¼ėŒ€ķ•™źµė³‘ģ›'),
(112356, 'https://ror.org/02a2awp29', 'fr', 1, 'https://ror.org/02a2awp29 THOTH: Apprentissage de modèles visuels à partir de données massives THOTH: Learning visual models from large-scale data'),
(112357, 'https://ror.org/056mykw55', 'en', 1, 'https://ror.org/056mykw55 ELIXIR Germany'),
(112358, 'https://ror.org/02zws8w42', 'fr', 1, 'https://ror.org/02zws8w42 AIRSEA: Mathematics and computing applied to oceanic and atmospheric flows AIRSEA: MathƩmatiques et calcul scientifique appliquƩs aux Ʃcoulements ocƩaniques et atmosphƩriques'),
(112359, 'https://ror.org/020rj4143', 'en', 1, 'https://ror.org/020rj4143 Poornaprajna Institute of Management'),
(112360, 'https://ror.org/02yjf0052', 'es', 1, 'https://ror.org/02yjf0052 Universidad Privada del Este filial Ciudad del Este'),
(112361, 'https://ror.org/01d5zhz86', 'en', 0, 'https://ror.org/01d5zhz86 Cordoba University'),
(112362, 'https://ror.org/04qg2qn14', 'en', 1, 'https://ror.org/04qg2qn14 The Australian Sociological Association'),
(112363, 'https://ror.org/017faj253', 'en', 0, 'https://ror.org/017faj253 Instituts für Altersforschung Ludwig Boltzmann Institute for Age Research'),
(112364, 'https://ror.org/05fg1yv24', 'fr', 1, 'https://ror.org/05fg1yv24 CAGE: Control and Geometry CAGE: ContrƓle et gƩomƩtrie'),
(112365, 'https://ror.org/01g0b4075', 'no_lang_code', 1, 'https://ror.org/01g0b4075 DatologyAI DatologyAI (United States)'),
(112366, 'https://ror.org/027pp3z40', 'no_lang_code', 1, 'https://ror.org/027pp3z40 ImmunoBiome, Inc. ImmunoBiome, Inc. (Korea) ģ“ė®¤ė…øė°”ģ“ģ˜“ ģ£¼ģ‹ķšŒģ‚¬'),
(112367, 'https://ror.org/03b1n2r89', 'id', 1, 'https://ror.org/03b1n2r89 Institute for Islamic and Social Studies Lembaga Kajian Islam dan Sosial'),
(112368, 'https://ror.org/0158f8t80', 'en', 1, 'https://ror.org/0158f8t80 American Bar Association'),
(112369, 'https://ror.org/01x80wa12', 'en', 1, 'https://ror.org/01x80wa12 OAZIS Health'),
(112370, 'https://ror.org/02ekkcr74', 'de', 0, 'https://ror.org/02ekkcr74 Ludwig Boltzmann für Klinische Neurobiologie'),
(112371, 'https://ror.org/013ckk937', 'en', 1, 'https://ror.org/013ckk937 Universidad de Rhode Island University of Rhode Island UniversitƩ de rhode island'),
(112372, 'https://ror.org/03737pq38', 'en', 1, 'https://ror.org/03737pq38 Korea Institute for Health and Social Affairs ķ•œźµ­ė³“ź±“ģ‚¬ķšŒģ—°źµ¬ģ›'),
(112373, 'https://ror.org/01ctj1b90', 'en', 1, 'https://ror.org/01ctj1b90 Kharkiv National University of Radio Electronics Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ раГіоелектроніки'),
(112374, 'https://ror.org/03jgt3n70', 'en', 1, 'https://ror.org/03jgt3n70 Fraunhofer Project Centre Wolfsburg Fraunhofer-Projektzentrum Wolfsburg'),
(112375, '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'),
(112376, 'https://ror.org/00xhz2q61', 'en', 1, 'https://ror.org/00xhz2q61 Veterans Health Service Medical Center ģ¤‘ģ•™ė³“ķ›ˆė³‘ģ› ķ•œźµ­ė³“ķ›ˆė³µģ§€ģ˜ė£Œź³µė‹Ø ė³“ķ›ˆė³‘ģ›'),
(112377, 'https://ror.org/04gzcxt97', 'en', 1, 'https://ror.org/04gzcxt97 Korea Railroad Research Institute ķ•œźµ­ģ² ė„źø°ģˆ ģ—°źµ¬ģ›'),
(112378, 'https://ror.org/0597d0j27', 'en', 1, 'https://ror.org/0597d0j27 Children Hospital, Faisalabad'),
(112379, 'https://ror.org/00cg22c97', 'en', 1, 'https://ror.org/00cg22c97 NOAA Office of Satellite and Product Operations'),
(112380, 'https://ror.org/013x1r993', 'en', 1, 'https://ror.org/013x1r993 CHA University Fertility Center ģ°Ø ģ—¬ģ„±ģ˜ķ•™ģ—°źµ¬ģ†Œ'),
(112381, 'https://ror.org/02cbxrw95', 'en', 1, 'https://ror.org/02cbxrw95 Bansal Institute of Engineering And Technology, Lucknow'),
(112382, 'https://ror.org/00jcx1769', 'en', 1, 'https://ror.org/00jcx1769 Konkuk University Medical Center ź±“źµ­ėŒ€ķ•™źµ ģ˜ė£Œģ› ź±“źµ­ėŒ€ķ•™źµė³‘ģ›'),
(112383, 'https://ror.org/03gs7jc26', 'en', 1, 'https://ror.org/03gs7jc26 CHA University Healthcare Center 차병원 ź±“ź°•ģ¦ģ§„ģ„¼ķ„°'),
(112384, 'https://ror.org/03f2n3n81', 'en', 1, 'https://ror.org/03f2n3n81 State Forestry and Grassland Administration å›½å®¶ęž—äøšå’Œč‰åŽŸå±€'),
(112385, 'https://ror.org/02cs2sd33', 'en', 1, 'https://ror.org/02cs2sd33 Korea University Medical Center ź³ ė ¤ėŒ€ķ•™źµ ģ˜ė£Œģ› ź³ ė ¤ėŒ€ķ•™źµģ˜ė£Œģ›'),
(112386, 'https://ror.org/05a6hqa33', 'fr', 1, 'https://ror.org/05a6hqa33 EPIMETHEE: Approches expƩrimentales et numƩriques pour explorer le cerveau des insectes EPIMETHEE: Experimental and computational approaches to probe the mind of insects'),
(112387, 'https://ror.org/02gvm1k21', 'en', 1, 'https://ror.org/02gvm1k21 Institute of Vegetable and Melon Growing NAAS Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ овочівництва і Š±Š°ŃˆŃ‚Š°Š½Š½ŠøŃ†Ń‚Š²Š° ŠŠŠŠ'),
(112388, 'https://ror.org/05fxczt15', 'no_lang_code', 1, 'https://ror.org/05fxczt15 Marriott International (Canada)'),
(112389, 'https://ror.org/0159w2913', 'en', 1, 'https://ror.org/0159w2913 Korea Institute of Toxicology ģ•ˆģ „ģ„±ķ‰ź°€ģ—°źµ¬ģ†Œ'),
(112390, 'https://ror.org/01ejvk640', 'en', 1, 'https://ror.org/01ejvk640 Ludwig Boltzmann Institute Digital Health and Patient Safety'),
(112391, 'https://ror.org/03hgkg910', 'en', 0, 'https://ror.org/03hgkg910 Ludwig Boltzmann Institute for Rare and Undiagnosed Diseases'),
(112392, 'https://ror.org/00tspj053', 'en', 0, 'https://ror.org/00tspj053 Prydniprovs’ka State Academy of Civil Engineering and Architecture ŠŸŃ€ŠøŠ“Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° та Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(112393, 'https://ror.org/03qt2gs44', 'en', 1, 'https://ror.org/03qt2gs44 Fraunhofer Institute for Secure Information Technology Fraunhofer-Institut für Sichere Informationstechnologie'),
(112394, 'https://ror.org/02jpms184', 'fr', 1, 'https://ror.org/02jpms184 NERV: Neuroingénierie des systèmes pour modéliser et interfacer les réseaux cérébraux NERV: Systems neuroengineering to model and interface brain networks'),
(112395, 'https://ror.org/05r3f7h03', 'de', 1, 'https://ror.org/05r3f7h03 German National Metrology Institute Physikalisch-Technische Bundesanstalt'),
(112396, 'https://ror.org/00jj4ng71', 'en', 1, 'https://ror.org/00jj4ng71 Azerbaijan Academy of Labor and Social Relations Azərbaycan ʏmək və Sosial Münasibətlər Akademiyası ŠŠ·ŠµŃ€Š±Š°Š¹Š“Š¶Š°Š½ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¢Ń€ŃƒŠ“Š° Šø Š”Š¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… ŠžŃ‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(112397, 'https://ror.org/03ysstz10', 'en', 1, 'https://ror.org/03ysstz10 Electronics and Telecommunications Research Institute ķ•œźµ­ģ „ģžķ†µģ‹ ģ—°źµ¬ģ›'),
(112398, 'https://ror.org/010typt84', 'en', 1, 'https://ror.org/010typt84 Seshadripuram First Grade College'),
(112399, 'https://ror.org/0367gm239', 'en', 1, 'https://ror.org/0367gm239 Daejeon Eulji Medical Center, Eulji University Eulji University Hospital ģ„ģ§€ėŒ€ķ•™źµė³‘ģ›'),
(112400, 'https://ror.org/05v6gdb70', 'en', 1, 'https://ror.org/05v6gdb70 National Assembly ėŒ€ķ•œėÆ¼źµ­ 국회'),
(112401, 'https://ror.org/01dex6p39', 'en', 1, 'https://ror.org/01dex6p39 Walther Meissner Institute Walther-Meißner-Institut'),
(112402, 'https://ror.org/055794q57', 'fr', 1, 'https://ror.org/055794q57 Higher Institute of Technological Studies of Tozeur Institut SupĆ©rieur des Etudes Technologiques de Tozeur المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© بتوزر'),
(112403, 'https://ror.org/01370dt72', 'id', 1, 'https://ror.org/01370dt72 Direktorat Jenderal Imigrasi Indonesian Directorate General of Immigration'),
(112404, 'https://ror.org/03g03dn68', 'en', 1, 'https://ror.org/03g03dn68 Green Technology Center źµ­ź°€ė…¹ģƒ‰źø°ģˆ ģ—°źµ¬ģ†Œ'),
(112405, 'https://ror.org/05p64mb74', 'en', 1, 'https://ror.org/05p64mb74 Jeju National University Hospital 제주 ėŒ€ķ•™źµ 병원 ģ œģ£¼ėŒ€ķ•™źµė³‘ģ›'),
(112406, 'https://ror.org/03r0k4b69', 'en', 1, 'https://ror.org/03r0k4b69 University of Barishal বরিশাল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(112407, 'https://ror.org/032j1fw45', 'fr', 1, 'https://ror.org/032j1fw45 DANCE: Dynamics and Control of Networks DANCE: Dynamique et contrƓle des rƩseaux'),
(112408, 'https://ror.org/00rg6e542', 'en', 1, 'https://ror.org/00rg6e542 CHA University Gangnam Women''s Medical Center 강남차여성병원'),
(112409, 'https://ror.org/01bwa4v12', 'no_lang_code', 1, 'https://ror.org/01bwa4v12 GE Healthcare GE Healthcare (United States)'),
(112410, 'https://ror.org/0432dh318', 'en', 1, 'https://ror.org/0432dh318 NOAA Office of Common Services'),
(112411, 'https://ror.org/01zz42w05', 'en', 1, 'https://ror.org/01zz42w05 Afghanistan Science Academy Ų§Ś©Ų§ŲÆŁ…ŪŒ Ų¹Ł„ŁˆŁ… افغانستان ŲÆ افغانستان Ų¹Ł„ŁˆŁ…Łˆ Ų§Ś©Ų§Ś‰Ł…ŁŠ'),
(112412, 'https://ror.org/00z7dje19', 'en', 1, 'https://ror.org/00z7dje19 Fraunhofer Institute for Material Flow and Logistics Fraunhofer-Institut für Materialfluss und Logistik'),
(112413, 'https://ror.org/04pkg4a74', 'en', 1, 'https://ror.org/04pkg4a74 Ludwig Boltzmann Institut für Arthritis und Rehabilitation Ludwig Boltzmann Institute for Arthritis and Rehabilitation'),
(112414, 'https://ror.org/00f66ec31', 'en', 1, 'https://ror.org/00f66ec31 National Center for Wildlife Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų­ŁŠŲ§Ų© Ų§Ł„ŁŲ·Ų±ŁŠŲ©'),
(112415, 'https://ror.org/055ttrf22', 'en', 1, 'https://ror.org/055ttrf22 Warburg Institute'),
(112416, 'https://ror.org/02j5d9n30', 'en', 1, 'https://ror.org/02j5d9n30 North Bangkok University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø­ąø£ą¹Œąø—ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(112417, 'https://ror.org/03yrm5c26', 'en', 1, 'https://ror.org/03yrm5c26 California Digital Library'),
(112418, 'https://ror.org/05j636y43', 'en', 0, 'https://ror.org/05j636y43 University of Maryland Biotechnology Institute'),
(112419, 'https://ror.org/03kzxw561', 'id', 1, 'https://ror.org/03kzxw561 Archaeology, Language, and Letters Research Organization Organisasi Riset Arkeologi, Bahasa, dan Sastra'),
(112420, 'https://ror.org/02ewqte53', 'no_lang_code', 1, 'https://ror.org/02ewqte53 KineticAI, Inc. KineticAI, Inc. (United States)'),
(112421, 'https://ror.org/05370es03', 'en', 1, 'https://ror.org/05370es03 British Columbia Academic Health Science Network'),
(112422, 'https://ror.org/013zjdj28', 'no_lang_code', 1, 'https://ror.org/013zjdj28 Berger-Levrault Berger-Levrault (France)'),
(112423, 'https://ror.org/03441jy26', 'en', 1, 'https://ror.org/03441jy26 Yukhnovskii Institute for Condensed Matter Physics of the National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізики конГенсованих систем імені І.Š . Š®Ń…Š½Š¾Š²ŃŃŒŠŗŠ¾Š³Š¾ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(112424, 'https://ror.org/0298wh711', 'fr', 1, 'https://ror.org/0298wh711 Institut des Sciences et technologies pour une Economie Circulaire des Ʃnergies bas carbone'),
(112425, 'https://ror.org/01zydeq72', 'es', 1, 'https://ror.org/01zydeq72 Museo Nacional de Historia Natural ā€œProf. Eugenio de JesĆŗs Marcanoā€ National Museum of Natural History ā€œProf. Eugenio de JesĆŗs Marcanoā€'),
(112426, 'https://ror.org/03mjasc67', 'en', 1, 'https://ror.org/03mjasc67 Polish Pharmacological Society Polskie Towarzystwo Farmakologiczne'),
(112427, 'https://ror.org/055vkyj43', 'fr', 1, 'https://ror.org/055vkyj43 Bureau international des poids et mesures International Bureau of Weights and Measures'),
(112428, 'https://ror.org/04pzgj087', 'en', 1, 'https://ror.org/04pzgj087 Dystrophic Epidermolysis Bullosa Research Association of America'),
(112429, 'https://ror.org/00yt2gw85', 'es', 1, 'https://ror.org/00yt2gw85 Instituto Tecnológico de Cuautla'),
(112430, 'https://ror.org/02j5s7g39', 'en', 1, 'https://ror.org/02j5s7g39 Australian Defence Force Academy'),
(112431, 'https://ror.org/00x3p4252', 'pt', 1, 'https://ror.org/00x3p4252 Instituto Nacional de Investigação em Saúde National Health Research Institute'),
(112432, 'https://ror.org/02h12bg79', 'en', 1, 'https://ror.org/02h12bg79 Fraunhofer Institute for Electronic Nano Systems Fraunhofer-Institut für Elektronische Nanosysteme'),
(112433, 'https://ror.org/04353mq94', 'en', 1, 'https://ror.org/04353mq94 Chungnam National University Hospital ģ¶©ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(112434, 'https://ror.org/052pe2w94', 'en', 1, 'https://ror.org/052pe2w94 Ukrainian State University of Science and Technologies Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ науки і технологій'),
(112435, 'https://ror.org/01kjych06', 'en', 1, 'https://ror.org/01kjych06 Fraunhofer ICT Group Fraunhofer-Verbund IUK-Technologie'),
(112436, 'https://ror.org/00rg18f40', 'en', 1, 'https://ror.org/00rg18f40 BC Studies'),
(112437, 'https://ror.org/03xs9yg50', 'en', 1, 'https://ror.org/03xs9yg50 Rural Development Administration ė†ģ“Œģ§„ķ„ģ²­'),
(112438, 'https://ror.org/01w108f05', 'en', 0, 'https://ror.org/01w108f05 Building Blocks for Future Electronics Laboratory'),
(112439, 'https://ror.org/0405trq15', 'en', 1, 'https://ror.org/0405trq15 New Zealand Institute for Public Health and Forensic Science'),
(112440, 'https://ror.org/05n29k456', 'id', 1, 'https://ror.org/05n29k456 Politeknik Negeri Malang State Polytechnic of Malang'),
(112441, 'https://ror.org/021p32893', 'id', 1, 'https://ror.org/021p32893 Universitas Muhammadiyah Jember'),
(112442, 'https://ror.org/02s3b7375', 'fr', 1, 'https://ror.org/02s3b7375 ANIMA: Authoring and directing animated story worlds ANIMA: Création et mise en scène des univers narratifs animés'),
(112443, 'https://ror.org/01ctee687', 'en', 1, 'https://ror.org/01ctee687 Ludwig Boltzmann Gesellschaft Open Innovation in Science Center'),
(112444, 'https://ror.org/02kxqx159', 'en', 1, 'https://ror.org/02kxqx159 Ministry of Natural Resources äø­åŽäŗŗę°‘å…±å’Œå›½č‡Ŗē„¶čµ„ęŗéƒØ'),
(112445, 'https://ror.org/01p78w079', 'en', 1, 'https://ror.org/01p78w079 Chosun University Dental Hospital ģ”°ģ„ ėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(112446, 'https://ror.org/023sgdn25', 'en', 1, 'https://ror.org/023sgdn25 NOAA Near Earth Orbit Network'),
(112447, 'https://ror.org/00px80p03', 'en', 1, 'https://ror.org/00px80p03 Fraunhofer Institute for Open Communication Systems Fraunhofer-Institut für Offene Kommunikationssysteme'),
(112448, 'https://ror.org/006n0mg29', 'en', 1, 'https://ror.org/006n0mg29 The Tiffany & Co. Foundation'),
(112449, 'https://ror.org/02t7d8g08', 'en', 1, 'https://ror.org/02t7d8g08 International Sturgeon Research Institute Ų§Ł†Ų³ŲŖŪŒŲŖŁˆ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁ† Ų§Ł„Ł…Ł„Ł„ŪŒ Ł…Ų§Ł‡ŪŒŲ§Ł† خاویاری'),
(112450, 'https://ror.org/05dyx6314', 'en', 1, 'https://ror.org/05dyx6314 National Center for Research on Earthquake Engineering åœ‹å®¶åœ°éœ‡å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(112451, 'https://ror.org/02vj4rn06', 'en', 1, 'https://ror.org/02vj4rn06 Zhejiang A & F University ęµ™ę±Ÿå†œęž—å¤§å­¦'),
(112452, 'https://ror.org/040c17130', 'en', 1, 'https://ror.org/040c17130 Kyungpook National University ź²½ė¶ėŒ€ķ•™źµ'),
(112453, 'https://ror.org/02grx1t29', 'no_lang_code', 1, 'https://ror.org/02grx1t29 3D Medicines, Inc. 3D Medicines, Inc. (China) ę€č·ÆčæŖåŒ»čÆ ę€č·ÆčæŖé†«č—„'),
(112454, 'https://ror.org/00fz54b81', 'en', 1, 'https://ror.org/00fz54b81 Bolashaq Academy Bolashaq Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹ АкаГемии Bolashaq ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š‘Š¾Š»Š°ŃˆŠ°Šŗ');
INSERT INTO `rors` VALUES
(112455, 'https://ror.org/008d63v91', 'id', 1, 'https://ror.org/008d63v91 Food and Agriculture Research Organization Organisasi Riset Pertanian dan Pangan'),
(112456, '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'),
(112457, 'https://ror.org/02ewfsf84', 'no_lang_code', 1, 'https://ror.org/02ewfsf84 Dr. Lal PathLabs Pvt Ltd Dr. Lal PathLabs Pvt Ltd (India)'),
(112458, 'https://ror.org/02snf8m58', 'fr', 1, 'https://ror.org/02snf8m58 Laboratoire des Sciences du NumƩrique de Nantes'),
(112459, 'https://ror.org/02csf4f34', 'en', 1, 'https://ror.org/02csf4f34 Busan Medical Center ė¶€ģ‚°ģ˜ė£Œģ›'),
(112460, 'https://ror.org/03dcxwy38', 'en', 1, 'https://ror.org/03dcxwy38 Taiwan Space Agency åœ‹å®¶å¤Ŗē©ŗäø­åæƒ'),
(112461, 'https://ror.org/039j5vj89', 'en', 1, 'https://ror.org/039j5vj89 Prevention of Organ Failure'),
(112462, 'https://ror.org/04r8mnq35', 'en', 1, 'https://ror.org/04r8mnq35 Foundation for Environmental Medicine'),
(112463, 'https://ror.org/01vmpm840', 'en', 1, 'https://ror.org/01vmpm840 German Network for Bioinformatics Infrastructure – de.NBI'),
(112464, 'https://ror.org/01kzjzn40', 'en', 1, 'https://ror.org/01kzjzn40 University of Gafsa UniversitĆ© de gafsa Ų¬Ų§Ł…Ų¹Ų© قفصة'),
(112465, 'https://ror.org/03vtv7935', 'en', 1, 'https://ror.org/03vtv7935 Virginia Division of Geology and Mineral Resources'),
(112466, 'https://ror.org/02p9mw189', 'en', 1, 'https://ror.org/02p9mw189 Z. H. Sikder University of Science and Technology ą¦œą§‡ą¦” ą¦ą¦‡ą¦š সিকদার ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(112467, 'https://ror.org/05rtdxx03', 'en', 1, 'https://ror.org/05rtdxx03 CHA University Gangnam Medical Center 강남차병원'),
(112468, 'https://ror.org/00t0rcy29', 'en', 1, 'https://ror.org/00t0rcy29 Fraunhofer Institute for Production Technology IPT Fraunhofer-Institut für Produktionstechnologie IPT'),
(112469, 'https://ror.org/024tnzs33', 'fr', 1, 'https://ror.org/024tnzs33 COSMIQ: Code-based Cryptology, Symmetric Cryptology and Quantum Information COSMIQ: Cryptologie symƩtrique, cryptologie fondƩe sur les codes et information quantique'),
(112470, 'https://ror.org/03sfybe47', 'en', 1, 'https://ror.org/03sfybe47 BC Cancer Agency'),
(112471, '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'),
(112472, 'https://ror.org/04n76mm80', 'en', 1, 'https://ror.org/04n76mm80 Hanyang University Seoul Hospital ķ•œģ–‘ėŒ€ķ•™źµė³‘ģ› ķ•œģ–‘ėŒ€ķ•™źµģ„œģšøė³‘ģ›'),
(112473, 'https://ror.org/00w6b9958', 'en', 1, 'https://ror.org/00w6b9958 Third Institute of Oceanography 简称海擋三所'),
(112474, 'https://ror.org/00bxeqa64', 'en', 1, 'https://ror.org/00bxeqa64 Korea Environment Institute ķ•œźµ­ķ™˜ź²½ģ—°źµ¬ģ›'),
(112475, 'https://ror.org/05bea0b03', 'en', 1, 'https://ror.org/05bea0b03 Centre for Accelerator Science'),
(112476, 'https://ror.org/048mas627', 'ms', 1, 'https://ror.org/048mas627 Kolej Matrikulasi Pahang'),
(112477, 'https://ror.org/038rwe723', 'en', 1, 'https://ror.org/038rwe723 NanoMedicines Innovation Network'),
(112478, 'https://ror.org/01zn4dj88', 'fr', 1, 'https://ror.org/01zn4dj88 SPADES: Programmation de systèmes embarqués sûrs et adaptatifs SPADES: Sound Programming of Adaptive Dependable Embedded Systems'),
(112479, 'https://ror.org/02x6rcb77', 'nl', 1, 'https://ror.org/02x6rcb77 Maxima Medical Centre MƔxima Medisch Centrum'),
(112480, 'https://ror.org/04n278m24', 'en', 1, 'https://ror.org/04n278m24 Hallym University Dongtan Sacred Heart Hospital ķ•œė¦¼ėŒ€ķ•™źµ ė™ķƒ„ģ„±ģ‹¬ė³‘ģ›'),
(112481, 'https://ror.org/01jachm79', 'en', 1, 'https://ror.org/01jachm79 International Union of Geodesy and Geophysics Union GƩodƩsique et GƩophysique Internationale'),
(112482, 'https://ror.org/00v2fq029', 'en', 1, 'https://ror.org/00v2fq029 Gangwon State University ź°•ģ›ė„ė¦½ėŒ€ķ•™źµ'),
(112483, 'https://ror.org/054r0wx32', 'en', 1, 'https://ror.org/054r0wx32 The Hospital Research Foundation Group'),
(112484, 'https://ror.org/03m1q7941', 'en', 1, 'https://ror.org/03m1q7941 Goswami Tulsidas Government Postgraduate College Karvi, Chitrakoot ą¤—ą„‹ą¤øą„ą¤µą¤¾ą¤®ą„€ ą¤¤ą„ą¤²ą¤øą„€ą¤¦ą¤¾ą¤ø ą¤°ą¤¾ą¤œą¤•ą„€ą¤Æ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤•ą¤°ą„ą¤µą„€ ą¤šą¤æą¤¤ą„ą¤°ą„‚ą¤•ą¤Ÿ'),
(112485, 'https://ror.org/015cbgt79', 'no_lang_code', 1, 'https://ror.org/015cbgt79 Fraunhofer Institute for Wood Research Wilhelm-Klauditz-Institut Fraunhofer-Institut für Holzforschung Wilhelm-Klauditz-Institut'),
(112486, 'https://ror.org/03n2c1134', 'de', 1, 'https://ror.org/03n2c1134 Center of Ukrainian Researchers in Austria Zentrum Ukrainische Forscher:innen in Ɩsterreich'),
(112487, 'https://ror.org/04qn0xg47', 'en', 1, 'https://ror.org/04qn0xg47 Kyungpook National University Hospital ź²½ė¶ėŒ€ķ•™źµė³‘ģ›'),
(112488, 'https://ror.org/02wpx0e31', 'fr', 1, 'https://ror.org/02wpx0e31 ARAMIS: Algorithmes, modèles et méthodes pour les images et les signaux du cerveau humain sain et pathologique ARAMIS: Algorithms, models and methods for images and signals of the human brain'),
(112489, 'https://ror.org/00h0my365', 'en', 1, 'https://ror.org/00h0my365 Fraunhofer Chile Research Foundation'),
(112490, 'https://ror.org/051k70002', 'fr', 0, 'https://ror.org/051k70002 Biologie Ʃvolutive et Ʃcologie des algues Evolutionary Biology and Ecology of Algae'),
(112491, 'https://ror.org/003hq9931', 'en', 1, 'https://ror.org/003hq9931 Centre for Tropical Biodiversity Conservation'),
(112492, 'https://ror.org/00agj6782', 'hi', 1, 'https://ror.org/00agj6782 Annasaheb Magar Mahavidyalaya, Hadapsar, Pune'),
(112493, 'https://ror.org/04x550321', 'fr', 1, 'https://ror.org/04x550321 ROBOTLEARN: Apprentissage, perception et commande pour des robots sociaux ROBOTLEARN: Learning, perception and control for social robots'),
(112494, 'https://ror.org/007qd1t98', 'pt', 1, 'https://ror.org/007qd1t98 Instituto Federal do Rio de Janeiro'),
(112495, 'https://ror.org/0474mqm39', 'en', 1, 'https://ror.org/0474mqm39 Department of Fisheries of the Government of the People''s Republic of Bangladesh ą¦®ą§Žą¦øą§ą¦Æ ą¦…ą¦§ą¦æą¦¦ą¦Ŗą§ą¦¤ą¦° ą¦—ą¦£ą¦Ŗą§ą¦°ą¦œą¦¾ą¦¤ą¦Øą§ą¦¤ą§ą¦°ą§€ বাংলাদেশ সরকার'),
(112496, 'https://ror.org/04ynacn15', 'en', 1, 'https://ror.org/04ynacn15 Philippine Science High School SOCCSKSARGEN Region Campus'),
(112497, 'https://ror.org/01s3bfe44', 'fr', 1, 'https://ror.org/01s3bfe44 Centre de Recherche Scientifique et Technique en Analyses Physico-Chimiques Scientific and Technical Research Centre in Physico-Chemical Analyses Ł…Ų±ŁƒŲ² البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠ في Ų§Ł„ŲŖŲ­Ł„ŁŠŁ„ Ų§Ł„ŁŁŠŲ²ŁŠŲ§Ų¦ŁŠ ŁˆŲ§Ł„ŁƒŁŠŁ…ŁŠŲ§Ų¦ŁŠ'),
(112498, 'https://ror.org/056hxch81', 'en', 1, 'https://ror.org/056hxch81 CORSE: Compiler Optimization and Run-time SystEms'),
(112499, 'https://ror.org/01r3dwg36', 'en', 1, 'https://ror.org/01r3dwg36 Mataas na Paaralang Pang-agham ng Pilipinas Philippine Science High School System'),
(112500, 'https://ror.org/025h1m602', 'no_lang_code', 1, 'https://ror.org/025h1m602 Konkuk University ź±“źµ­ėŒ€ķ•™źµ'),
(112501, 'https://ror.org/04vke2c09', 'en', 1, 'https://ror.org/04vke2c09 Akademija strukovnih studija Zapadna Srbija Western Serbia Academy of Applied Studies'),
(112502, 'https://ror.org/0462rh519', 'id', 1, 'https://ror.org/0462rh519 Universitas Sains Cut Nyak Dhien'),
(112503, 'https://ror.org/03ppjg142', 'fr', 1, 'https://ror.org/03ppjg142 AIO: Dependable Networking, Low-Power Wireless and Micro-Robotics AIO: Mise en rƩseau fiable, sans fil Ơ faible consommation et micro-robotique'),
(112504, 'https://ror.org/0227as991', 'en', 1, 'https://ror.org/0227as991 Chungnam National University ģ¶©ė‚ØėŒ€ķ•™źµ'),
(112505, 'https://ror.org/00mtp8108', 'es', 1, 'https://ror.org/00mtp8108 Chilean Gastroenterology Society Sociedad Chilena de GastroenterologĆ­a'),
(112506, 'https://ror.org/04q927w84', 'no_lang_code', 1, 'https://ror.org/04q927w84 Bio Bureau Biotecnologia Bio Bureau Biotecnologia (Brazil)'),
(112507, 'https://ror.org/04kt7rq05', 'en', 1, 'https://ror.org/04kt7rq05 HMU Erfurt - Health and Medical University Erfurt HMU Health and Medical University Erfurt'),
(112508, 'https://ror.org/0578w5a44', 'en', 1, 'https://ror.org/0578w5a44 Yellow Sea Fisheries Research Institute 黄海氓产研究所'),
(112509, 'https://ror.org/05gg0gh87', 'no_lang_code', 1, 'https://ror.org/05gg0gh87 Canon (Japan) ć‚­ćƒ¤ćƒŽćƒ³ę Ŗå¼ä¼šē¤¾'),
(112510, 'https://ror.org/03tnjrr49', 'fr', 1, 'https://ror.org/03tnjrr49 Astroparticle and Cosmology Laboratory Laboratoire AstroParticule et Cosmologie'),
(112511, 'https://ror.org/00srqmh97', 'en', 1, 'https://ror.org/00srqmh97 Kyung Hee University Medical Hospital at Gangdong ź°•ė™ź²½ķ¬ėŒ€ķ•™źµģ˜ėŒ€ė³‘ģ›'),
(112512, 'https://ror.org/00m43ek07', 'fr', 1, 'https://ror.org/00m43ek07 Laboratoire Interdisciplinaire des Ɖnergies de Demain'),
(112513, 'https://ror.org/0098sx518', 'fr', 0, 'https://ror.org/0098sx518 Laboratoire de Cristallographie et RMN Biologiques'),
(112514, 'https://ror.org/02xgged66', 'en', 1, 'https://ror.org/02xgged66 Al-Farooque Unani Medical College, Indore'),
(112515, 'https://ror.org/022a2kb82', 'en', 1, 'https://ror.org/022a2kb82 Korea Institute of Science & Technology Evaluation and Planning éŸ“åœ‹ē§‘å­øęŠ€č”“ä¼åŠƒč©•åƒ¹é™¢ ķ•œźµ­ź³¼ķ•™źø°ģˆ źø°ķšķ‰ź°€ģ›'),
(112516, 'https://ror.org/02844qe97', 'fr', 1, 'https://ror.org/02844qe97 Unite de recherche migrations et sociƩtƩs'),
(112517, 'https://ror.org/00zm8bs36', 'fr', 0, 'https://ror.org/00zm8bs36 Laboratoire de Physique Statistique'),
(112518, 'https://ror.org/0546jt497', 'fr', 1, 'https://ror.org/0546jt497 Histoire des ThƩories Linguistiques'),
(112519, 'https://ror.org/00tanpe46', 'en', 1, 'https://ror.org/00tanpe46 Professional Football Researchers Association'),
(112520, 'https://ror.org/01bzdp563', 'fr', 1, 'https://ror.org/01bzdp563 Enveloppes fluides : de la ville Ć  l''exobiologie Fluid envelopes: from cities to exobiology Universe Sciences Observatory EFLUVE'),
(112521, 'https://ror.org/008e1sp22', 'fr', 1, 'https://ror.org/008e1sp22 HIPI -  Immunologie humaine, physiopathologie et immunithƩrapie HIPI - Human Immunology, Pathophysiology and Immunotherapy'),
(112522, 'https://ror.org/032582s48', 'fr', 1, 'https://ror.org/032582s48 Observatoire des Sciences de l’Univers Terre Homme Environnement Temps Astronomie Universe Sciences Observatory THETA'),
(112523, 'https://ror.org/04yrrdj53', 'fr', 1, 'https://ror.org/04yrrdj53 MathƩmatiques AppliquƩes Ơ Paris 5'),
(112524, 'https://ror.org/03edms940', 'fr', 1, 'https://ror.org/03edms940 Interfaces Traitements Organisation et Dynamique des SystĆØmes'),
(112525, 'https://ror.org/01vrww868', 'fr', 1, 'https://ror.org/01vrww868 Registre de Dialyse PƩritonƩale de Langue FranƧaise'),
(112526, 'https://ror.org/05tejcz38', 'en', 1, 'https://ror.org/05tejcz38 European Association of Science Editors'),
(112527, 'https://ror.org/03z4c6358', 'en', 0, 'https://ror.org/03z4c6358 Institut de Physique Nucleaire de Lyon Institute of Nuclear Physics of Lyon'),
(112528, 'https://ror.org/02e85d463', 'fr', 1, 'https://ror.org/02e85d463 Physiopathologie et pharmacotoxicologie placentaire humaine : Microbiote prƩ & post natal'),
(112529, 'https://ror.org/012zp9903', 'en', 1, 'https://ror.org/012zp9903 National Research Council for Economics Humanities and Social Science ź²½ģ œĀ·ģøė¬øģ‚¬ķšŒģ—°źµ¬ķšŒ ź²½ģ œģøė¬øģ‚¬ķšŒģ—°źµ¬ķšŒ'),
(112530, 'https://ror.org/01y85ge33', 'fr', 1, 'https://ror.org/01y85ge33 Approches Linguistiques ThƩoriques, AppliquƩes et ExpƩrimentales : langues et cultures connectƩes'),
(112531, 'https://ror.org/028brk668', 'es', 1, 'https://ror.org/028brk668 Hospital Infantil Universitario Niño Jesús'),
(112532, 'https://ror.org/02nmctw71', 'fr', 1, 'https://ror.org/02nmctw71 Pharmacologie et thƩrapie des addictions'),
(112533, 'https://ror.org/05d1q3s30', 'en', 1, 'https://ror.org/05d1q3s30 IK Foundation'),
(112534, 'https://ror.org/05cbrk226', 'fr', 1, 'https://ror.org/05cbrk226 Cibles ThƩrapeutiques et conception de mƩdicaments'),
(112535, 'https://ror.org/014pyyf31', 'en', 1, 'https://ror.org/014pyyf31 First City Providential College'),
(112536, 'https://ror.org/01gdjt538', 'en', 1, 'https://ror.org/01gdjt538 CUNY Advanced Science Research Center'),
(112537, 'https://ror.org/010f1sq29', 'en', 1, 'https://ror.org/010f1sq29 Noordwes-Universiteit North-West University Yunivesithi ya Leboya Bophirima'),
(112538, 'https://ror.org/04xbn6x09', 'pt', 1, 'https://ror.org/04xbn6x09 Instituto Nacional de Pesquisas Espaciais National Institute for Space Research'),
(112539, 'https://ror.org/04fhvf194', 'fr', 0, 'https://ror.org/04fhvf194 Centre de Recherche en ƉpistĆ©mologie AppliquĆ©e'),
(112540, 'https://ror.org/03gjxds17', 'en', 0, 'https://ror.org/03gjxds17 Ludwig Boltzmann Institute Applied Diagnostics'),
(112541, 'https://ror.org/045r56524', 'fr', 1, 'https://ror.org/045r56524 Laboratoire Dynamiques Sociales et Recomposition des Espaces'),
(112542, 'https://ror.org/02mg6n827', 'fr', 1, 'https://ror.org/02mg6n827 CEA Grenoble'),
(112543, 'https://ror.org/02vt68k07', 'en', 1, 'https://ror.org/02vt68k07 Dongguk University Medical Center ė™źµ­ėŒ€ķ•™źµģ˜ė£Œģ›'),
(112544, 'https://ror.org/04wzvk041', 'en', 1, 'https://ror.org/04wzvk041 Institute of Astronomy Space and Earth Science'),
(112545, 'https://ror.org/04xmt0833', 'en', 1, 'https://ror.org/04xmt0833 Ministry of Environment ėŒ€ķ•œėÆ¼źµ­ ķ™˜ź²½ė¶€'),
(112546, 'https://ror.org/003y0kg83', 'fr', 1, 'https://ror.org/003y0kg83 Centre de Gestion Scientifique Mines Paris, PSL University, Centre for management science (CGS) Mines Paris, UniversitƩ PSL, Centre de Gestion Scientifique (CGS)'),
(112547, 'https://ror.org/02qa1x782', 'en', 1, 'https://ror.org/02qa1x782 Fisheries and Oceans Canada Pêches et Océans Canada'),
(112548, 'https://ror.org/00ph8tk69', 'fr', 1, 'https://ror.org/00ph8tk69 HƓpital Cochin'),
(112549, 'https://ror.org/01fyxcz70', 'en', 1, 'https://ror.org/01fyxcz70 DOI Foundation'),
(112550, 'https://ror.org/04ej53908', 'fr', 1, 'https://ror.org/04ej53908 Typologie et Universaux Linguistiques'),
(112551, 'https://ror.org/02cypx016', 'fr', 1, 'https://ror.org/02cypx016 Hématopoïèse normale et pathologique : Emergence, environnement et recherche translationnelle Normal and pathological hematopoiesis: Emergence, Environment and translational research'),
(112552, 'https://ror.org/00gnnx384', 'en', 1, 'https://ror.org/00gnnx384 kassel university press kassel university press GmbH'),
(112553, 'https://ror.org/055s8hs34', 'fr', 0, 'https://ror.org/055s8hs34 Genetic Stability and Oncogenesis Stabilité génétique et oncogenèse'),
(112554, 'https://ror.org/01bcqbv56', 'fr', 1, 'https://ror.org/01bcqbv56 HÓpital Adélaïde-Hautval'),
(112555, 'https://ror.org/059n54003', 'fr', 1, 'https://ror.org/059n54003 Ɖcole nationale supĆ©rieure de techniques avancĆ©es Bretagne'),
(112556, 'https://ror.org/0443jbw36', 'en', 1, 'https://ror.org/0443jbw36 The Catholic University of Korea Bucheon St. Mary''s Hospital ź°€ķ†Øė¦­ėŒ€ķ•™źµ ė¶€ģ²œģ„±ėŖØė³‘ģ› ė¶€ģ²œģ„±ėŖØė³‘ģ›'),
(112557, 'https://ror.org/01c1p7750', 'fr', 1, 'https://ror.org/01c1p7750 Centre d''Investigation Clinique de Vaccinologie Cochin-Pasteur'),
(112558, 'https://ror.org/03yc0ew57', 'fr', 0, 'https://ror.org/03yc0ew57 GƩnomique Fonctionnelle des Tumeurs Solides'),
(112559, 'https://ror.org/05wzw4r89', 'fr', 1, 'https://ror.org/05wzw4r89 Laboratoire MƩmoire, Cerveau et Cognition'),
(112560, 'https://ror.org/0015h8611', 'fr', 1, 'https://ror.org/0015h8611 Astrophysique, Instrumentation et ModƩlisation'),
(112561, 'https://ror.org/030vphv80', 'en', 1, 'https://ror.org/030vphv80 Shanxi Academy of Ancient Building and Painted Sculpture & Fresco Preservation å±±č„æēœå¤å»ŗē­‘äøŽå½©å”‘å£ē”»äæęŠ¤ē ”ē©¶é™¢'),
(112562, 'https://ror.org/049yaph28', 'fr', 1, 'https://ror.org/049yaph28 Laboratoire d''Hydraulique Saint-Venant'),
(112563, 'https://ror.org/006626m33', 'fr', 0, 'https://ror.org/006626m33 Neurophysiologie et nouvelles microscopies Neurophysiology & New Microscopies Laboratory'),
(112564, 'https://ror.org/05j9kq242', 'de', 1, 'https://ror.org/05j9kq242 Wasserstraßen- und Schifffahrtsamt Spree-Havel'),
(112565, 'https://ror.org/03cv9h790', 'en', 1, 'https://ror.org/03cv9h790 United University'),
(112566, 'https://ror.org/01e6x5f94', 'en', 1, 'https://ror.org/01e6x5f94 KCMC University'),
(112567, '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'),
(112568, 'https://ror.org/058pdbn81', 'no_lang_code', 1, 'https://ror.org/058pdbn81 Dankook University ė‹Øźµ­ėŒ€ķ•™źµ'),
(112569, 'https://ror.org/01wjejq96', 'en', 1, 'https://ror.org/01wjejq96 Yonsei University ģ—°ģ„øėŒ€ķ•™źµ'),
(112570, 'https://ror.org/04f7ht509', 'en', 1, 'https://ror.org/04f7ht509 Springer Nature (Singapore)'),
(112571, 'https://ror.org/02qmmxm27', 'es', 1, 'https://ror.org/02qmmxm27 Universidad CuauhtƩmoc San Luis Potosƭ'),
(112572, 'https://ror.org/009g8rq41', 'en', 1, 'https://ror.org/009g8rq41 Ministry of Agriculture, Food and Rural Affairs ė†ė¦¼ģ¶•ģ‚°ģ‹ķ’ˆė¶€'),
(112573, 'https://ror.org/02cc2hs63', 'en', 1, 'https://ror.org/02cc2hs63 Institute and Observatory of Geophysics of Antananarivo'),
(112574, 'https://ror.org/04q1vy171', 'fr', 1, 'https://ror.org/04q1vy171 Cardiovascular Markers in Stressed Conditions Marqueurs cardiovasculaires en situation de stress'),
(112575, 'https://ror.org/05q92br09', 'en', 1, 'https://ror.org/05q92br09 Jeonbuk National University ģ „ė¶ėŒ€ķ•™źµ'),
(112576, 'https://ror.org/03r83qv57', 'fr', 1, 'https://ror.org/03r83qv57 France Cohortes'),
(112577, 'https://ror.org/05gcxpk23', 'en', 1, 'https://ror.org/05gcxpk23 Dong-A University Hospital ė™ģ•„ėŒ€ķ•™źµė³‘ģ›'),
(112578, 'https://ror.org/00kjer521', 'fr', 1, 'https://ror.org/00kjer521 Evolution et ingénierie de systèmes dynamiques'),
(112579, 'https://ror.org/05hfet039', 'en', 1, 'https://ror.org/05hfet039 Ministry of National Defense ėŒ€ķ•œėÆ¼źµ­ źµ­ė°©ė¶€'),
(112580, 'https://ror.org/03fd77x13', 'fr', 1, 'https://ror.org/03fd77x13 Institut National de Physique NuclƩaire et de Physique des Particules'),
(112581, 'https://ror.org/01hg8p552', 'fr', 1, 'https://ror.org/01hg8p552 Laboratoire de Physique NuclĆ©aire et de Hautes Ɖnergies'),
(112582, 'https://ror.org/00nxp6056', 'en', 1, 'https://ror.org/00nxp6056 Hakuhodo DY Holdings Hakuhodo DY Holdings (Japan)'),
(112583, 'https://ror.org/01bchmt70', 'fr', 1, 'https://ror.org/01bchmt70 Centre Hospitalier d''Orsay'),
(112584, 'https://ror.org/0223bz716', 'fr', 1, 'https://ror.org/0223bz716 Formal Linguistics Laboratory Laboratoire de Linguistique Formelle'),
(112585, 'https://ror.org/02nqy7n35', 'fr', 1, 'https://ror.org/02nqy7n35 Laboratoire Eau, Environnement et SystĆØmes Urbains'),
(112586, 'https://ror.org/001br4864', 'en', 1, 'https://ror.org/001br4864 Biomedtech Facilities'),
(112587, 'https://ror.org/02wnxgj78', 'en', 1, 'https://ror.org/02wnxgj78 Chungbuk National University ģ¶©ė¶ėŒ€ķ•™źµ'),
(112588, 'https://ror.org/05q183h73', 'es', 1, 'https://ror.org/05q183h73 Instituto Superior de Educación "Divina Esperanza"'),
(112589, 'https://ror.org/00saywf64', 'en', 1, 'https://ror.org/00saywf64 Gyeongsang National University ź²½ģƒėŒ€ķ•™źµ'),
(112590, 'https://ror.org/01y4y6h16', 'en', 1, 'https://ror.org/01y4y6h16 APNIC Foundation APNIC Foundation Limited'),
(112591, 'https://ror.org/054pv6659', 'de', 1, 'https://ror.org/054pv6659 SveučiliÅ”te u Innsbrucku University of Innsbruck UniversitƤt Innsbruck Univerza v Innsbrucku'),
(112592, 'https://ror.org/00mznnx78', 'de', 1, 'https://ror.org/00mznnx78 Auguste-Viktoria-Klinik'),
(112593, 'https://ror.org/04bjg9m96', 'en', 1, 'https://ror.org/04bjg9m96 Defense Acquisition Program Administration ė°©ģœ„ģ‚¬ģ—…ģ²­'),
(112594, 'https://ror.org/02c3psf61', 'en', 1, 'https://ror.org/02c3psf61 Sonargaon University সোনারগাঁও ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®šąÆ‹ą®©ą®¾ą®°ąÆą®•ą®¾ą®®ąÆ‹ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(112595, 'https://ror.org/00k9nmv77', 'en', 1, 'https://ror.org/00k9nmv77 BioControl Jena BioControl Jena (Germany) BioControl Jena GmbH'),
(112596, 'https://ror.org/04nrmrg07', 'en', 1, 'https://ror.org/04nrmrg07 Korea Meteorological Administration 기상청'),
(112597, 'https://ror.org/00bbtde36', 'fr', 1, 'https://ror.org/00bbtde36 Laboratoire Univers et ThƩories Laboratory Universe and Theories'),
(112598, 'https://ror.org/00njwz164', 'en', 1, 'https://ror.org/00njwz164 Jyoban Hospital of Tokiwa Foundation å…¬ē›Šč²”å›£ę³•äŗŗćØćć‚ä¼šåøøē£ē—…é™¢'),
(112599, 'https://ror.org/041baww89', 'en', 1, 'https://ror.org/041baww89 Pusan National University Dental Hospital ė¶€ģ‚°ėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(112600, 'https://ror.org/0442eeq66', 'en', 1, 'https://ror.org/0442eeq66 United Institute of Medical Sciences'),
(112601, 'https://ror.org/02vhgqt29', 'en', 1, 'https://ror.org/02vhgqt29 LabSD, Inc. LabSD, Inc. (South Korea)'),
(112602, 'https://ror.org/04xt5aa77', 'en', 1, 'https://ror.org/04xt5aa77 Ministry of Land, Infrastructure and Transport ėŒ€ķ•œėÆ¼źµ­ 국토교통부'),
(112603, 'https://ror.org/02kxjxy06', 'fr', 1, 'https://ror.org/02kxjxy06 Centre Hospitalier Sainte-Anne'),
(112604, 'https://ror.org/03zn16x61', 'no_lang_code', 1, 'https://ror.org/03zn16x61 Myongji Hospital 명지병원 ģ˜ė£Œė²•ģøėŖ…ģ§€ģ˜ė£Œģž¬ė‹ØėŖ…ģ§€ė³‘ģ›'),
(112605, 'https://ror.org/01z4nnt86', 'en', 1, 'https://ror.org/01z4nnt86 Seoul National University Hospital ģ„œģšøėŒ€ė³‘ģ› ģ„œģšøėŒ€ķ•™źµė³‘ģ›'),
(112606, 'https://ror.org/00a8p0m24', 'fr', 1, 'https://ror.org/00a8p0m24 Center for the Sociology of Innovation Centre de sociologie de l''innovation Mines Paris - PSL, Centre for the sociology of innovation (CSI), i3 UMR9217 CNRS Mines Paris, UniversitĆ© PSL, Centre de Sociologie de l’Innovation (CSI), i3 UMR9217 CNRS'),
(112607, 'https://ror.org/05sd8tv96', 'en', 1, 'https://ror.org/05sd8tv96 Barcelona Supercomputing Center Centro Nacional de Supercomputación'),
(112608, 'https://ror.org/00fh58138', 'fr', 1, 'https://ror.org/00fh58138 Institut National de la Transfusion Sanguine National Institute of Blood Transfusion'),
(112609, 'https://ror.org/04fxknd68', 'en', 1, 'https://ror.org/04fxknd68 Daegu Catholic University ėŒ€źµ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(112610, 'https://ror.org/01wcaw014', 'fr', 1, 'https://ror.org/01wcaw014 Centre de Recherche sur les Liens Sociaux'),
(112611, 'https://ror.org/01r47w237', 'en', 1, 'https://ror.org/01r47w237 Center for Artificial Intelligence Research Nepal'),
(112612, 'https://ror.org/02e9m1r40', 'fr', 1, 'https://ror.org/02e9m1r40 HƓpital Corentin-Celton'),
(112613, 'https://ror.org/014ndnr76', 'fr', 1, 'https://ror.org/014ndnr76 NeuroDiderot'),
(112614, 'https://ror.org/02htmqw41', 'en', 1, 'https://ror.org/02htmqw41 FightMND'),
(112615, 'https://ror.org/01qdqrj31', 'fr', 1, 'https://ror.org/01qdqrj31 Biologie de l''os et du cartilage Bioscar'),
(112616, 'https://ror.org/01k6h2m87', 'en', 1, 'https://ror.org/01k6h2m87 National University of General Sarmiento Universidad Nacional de General Sarmiento UniversitƠ Nazionale di General Sarmiento UniversitƩ nationale de general sarmiento'),
(112617, 'https://ror.org/004nnf780', 'fr', 1, 'https://ror.org/004nnf780 HƓpital Louis-Mourier'),
(112618, 'https://ror.org/05nswdr94', 'de', 1, 'https://ror.org/05nswdr94 Wasserstraßen-Neubauamt Magdeburg'),
(112619, 'https://ror.org/03qvtpc38', 'en', 1, 'https://ror.org/03qvtpc38 Dong-A University ė™ģ•„ėŒ€ķ•™źµ'),
(112620, 'https://ror.org/03dbsav41', 'fr', 1, 'https://ror.org/03dbsav41 Epigenetics and Cell Fate EpigƩnƩtique et Destin Cellulaire'),
(112621, 'https://ror.org/059mkmv41', 'es', 1, 'https://ror.org/059mkmv41 Museo de Ciencias Naturales de Tenerife'),
(112622, 'https://ror.org/02z0jq636', 'en', 1, 'https://ror.org/02z0jq636 Unit of Functional and Adaptive Biology'),
(112623, 'https://ror.org/036w0tz95', 'fr', 1, 'https://ror.org/036w0tz95 RIATE - Centre pour l''analyse spatiale et la gƩovisualisation'),
(112624, 'https://ror.org/0366b1491', 'en', 1, 'https://ror.org/0366b1491 Metabolism and Renal Physiology MƩtabolisme et Physiologie RƩnale'),
(112625, 'https://ror.org/03d0hna29', 'en', 1, 'https://ror.org/03d0hna29 Igdir State Hospital Iğdır Devlet Hastanesi'),
(112626, 'https://ror.org/00wvn7664', 'en', 1, 'https://ror.org/00wvn7664 Abterra Biosciences Abterra Biosciences (United States)'),
(112627, 'https://ror.org/05c9ks061', 'fr', 1, 'https://ror.org/05c9ks061 Sciences, Philosophie, Histoire'),
(112628, 'https://ror.org/00e5sp938', 'en', 1, 'https://ror.org/00e5sp938 Construction Engineering Research Institute Foundation äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­å·„å­¦ē ”ē©¶ę‰€'),
(112629, 'https://ror.org/05pa68763', 'en', 1, 'https://ror.org/05pa68763 Asan Foundation ģ•„ģ‚°ģ‚¬ķšŒė³µģ§€ģž¬ė‹Ø'),
(112630, 'https://ror.org/03xsf9s97', 'de', 1, 'https://ror.org/03xsf9s97 Zoo Hannover gGmbH'),
(112631, 'https://ror.org/03k37h274', 'fr', 1, 'https://ror.org/03k37h274 Cellular and Chemical Biology Chimie et Biologie de la Cellule'),
(112632, 'https://ror.org/01at23619', 'de', 1, 'https://ror.org/01at23619 E.C.O. Institut für Ɩkologie E.C.O. Institut für Ɩkologie GmbH E.C.O. Institut für Ɩkologie GmbH (Austria) E.C.O. Institute of Ecology'),
(112633, 'https://ror.org/0515hsf31', 'en', 1, 'https://ror.org/0515hsf31 La FƩdƩration maritime du Canada Shipping Federation of Canada'),
(112634, 'https://ror.org/01ymejj86', 'id', 1, 'https://ror.org/01ymejj86 Indonesian Adventist University Universitas Advent Indonesia'),
(112635, 'https://ror.org/03c241w53', 'de', 1, 'https://ror.org/03c241w53 University and State Library of Saxony-Anhalt UniversitƤts- und Landesbibliothek Sachsen-Anhalt'),
(112636, 'https://ror.org/03kcgdd35', 'es', 1, 'https://ror.org/03kcgdd35 Centre d''Ʃtudes mexicaines et centramericaines Centro FrancƩs de Estudios Mexicanos y Centroamericanos'),
(112637, 'https://ror.org/02rmk5x23', 'fr', 1, 'https://ror.org/02rmk5x23 FƩdƩration de recherche PLAS@PAR'),
(112638, 'https://ror.org/02617e391', 'fr', 1, 'https://ror.org/02617e391 Evaluation et recherche en services et politiques en santƩ pour les populations vulnƩrables'),
(112639, 'https://ror.org/00rd22143', 'fr', 1, 'https://ror.org/00rd22143 Mère et enfant en milieu tropical : pathogènes, système de santé et transition épidémiologique'),
(112640, 'https://ror.org/03v2d2j05', 'en', 1, 'https://ror.org/03v2d2j05 Soddo Christian General Hospital'),
(112641, 'https://ror.org/05yqfzf35', 'fr', 1, 'https://ror.org/05yqfzf35 UMR GƩographie-citƩs'),
(112642, 'https://ror.org/01an57a31', 'en', 1, 'https://ror.org/01an57a31 Pusan National University ė¶€ģ‚°ėŒ€ķ•™źµ'),
(112643, 'https://ror.org/03czns913', 'fr', 1, 'https://ror.org/03czns913 Laboratoire d''Optique AppliquƩe'),
(112644, 'https://ror.org/03exgrk66', 'en', 1, 'https://ror.org/03exgrk66 Ewha Womans University Medical Center ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµģ˜ė£Œģ›'),
(112645, 'https://ror.org/03fyk4w54', 'en', 1, 'https://ror.org/03fyk4w54 Khwaja Yunus Ali University ą¦–ą¦¾ą¦œą¦¾ ইউনুস আলী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(112646, 'https://ror.org/051sk4035', 'fr', 1, 'https://ror.org/051sk4035 Institut Cochin'),
(112647, 'https://ror.org/038faz260', 'pl', 1, 'https://ror.org/038faz260 Warsaw Medical Academy of Applied Sciences Warszawska Akademia Medyczna Nauk Stosowanych'),
(112648, 'https://ror.org/02cf97417', 'fr', 0, 'https://ror.org/02cf97417 Laboratoire HƩtƩroƩlƩments et Coordination'),
(112649, 'https://ror.org/01n29xb21', 'fr', 0, 'https://ror.org/01n29xb21 International center for Zetta-Exawtt Science and Technology'),
(112650, 'https://ror.org/05s6rc685', 'en', 1, 'https://ror.org/05s6rc685 The Korea Institute of Public Administration ķ•œźµ­ķ–‰ģ •ģ—°źµ¬ģ›'),
(112651, 'https://ror.org/05k9wmt43', 'fr', 1, 'https://ror.org/05k9wmt43 Formation et apprentissages professionnels'),
(112652, 'https://ror.org/044kjp413', 'en', 1, 'https://ror.org/044kjp413 Severance Hospital ģ„øėøŒėž€ģŠ¤ė³‘ģ›'),
(112653, 'https://ror.org/00jwytm78', 'en', 1, 'https://ror.org/00jwytm78 Department of Natural Resources and Environment Tasmania'),
(112654, 'https://ror.org/00a8cnz80', 'fr', 1, 'https://ror.org/00a8cnz80 Laboratoire Innovations Technologiques pour la DƩtection et le Diagnostic Laboratory Technological Innovations for the Detection and Diagnosis'),
(112655, 'https://ror.org/00dmms154', 'fr', 1, 'https://ror.org/00dmms154 Centre de Recherche des Cordeliers Cordeliers Research Centre'),
(112656, 'https://ror.org/02jp0cd74', 'fr', 1, 'https://ror.org/02jp0cd74 Innovations ThƩrapeutiques en HƩmostase'),
(112657, 'https://ror.org/01v676463', 'fr', 1, 'https://ror.org/01v676463 HƓpitaux Universitaires Paris-Ouest'),
(112658, 'https://ror.org/057er4c39', 'fr', 1, 'https://ror.org/057er4c39 Laboratoire Traitement et Communication de l’Information'),
(112659, 'https://ror.org/01abd0t80', 'fr', 1, 'https://ror.org/01abd0t80 Laboratoire de MƩcanique et ses Interfaces'),
(112660, 'https://ror.org/00s147322', 'en', 1, 'https://ror.org/00s147322 Science and Technology Policy Institute ź³¼ķ•™źø°ģˆ ģ •ģ±…ģ—°źµ¬ģ›'),
(112661, 'https://ror.org/0106ccb15', 'fr', 1, 'https://ror.org/0106ccb15 Ɖcole Nationale SupĆ©rieure de Techniques AvancĆ©es Paris'),
(112662, 'https://ror.org/00nvjgv40', 'fr', 1, 'https://ror.org/00nvjgv40 Laboratoire de Biochimie ThƩorique Laboratory of Theoretical Biochemistry'),
(112663, 'https://ror.org/04r478t60', 'de', 1, 'https://ror.org/04r478t60 Reha Zentrum Münster Betriebs GmbH'),
(112664, 'https://ror.org/05rq3rb55', 'fr', 1, 'https://ror.org/05rq3rb55 Imagine Institute for Genetic Diseases Institut des Maladies GƩnƩtiques Imagine'),
(112665, 'https://ror.org/03t4gr691', 'en', 1, 'https://ror.org/03t4gr691 Amsterdam UMC Location University of Amsterdam'),
(112666, 'https://ror.org/04a5szx83', 'en', 1, 'https://ror.org/04a5szx83 University of North Dakota UniversitƩ du dakota du nord'),
(112667, 'https://ror.org/04m5b7294', 'en', 1, 'https://ror.org/04m5b7294 Jaseng Hospital of Korean Medicine ģžģƒķ•œė°©ė³‘ģ›'),
(112668, 'https://ror.org/01tfpm103', 'en', 1, 'https://ror.org/01tfpm103 Altamash Institute of Dental Medicine'),
(112669, 'https://ror.org/04gd6vy83', 'en', 1, 'https://ror.org/04gd6vy83 Levy Mwanawasa Medical University'),
(112670, 'https://ror.org/03s3bgc63', 'en', 1, 'https://ror.org/03s3bgc63 Friends of Snakes Society'),
(112671, 'https://ror.org/049am9t04', 'fr', 1, 'https://ror.org/049am9t04 HƓpital Saint-Louis'),
(112672, 'https://ror.org/05e7p5n27', 'fr', 1, 'https://ror.org/05e7p5n27 Institut thƩmatique Neurosciences, sciences cognitives, neurologie, psychiatrie'),
(112673, 'https://ror.org/02haar591', 'fr', 1, 'https://ror.org/02haar591 Institut Pierre-Simon Laplace'),
(112674, 'https://ror.org/00hdncs36', 'en', 0, 'https://ror.org/00hdncs36 Brain Physiology Lab Laboratoire Physiologie CƩrƩbrale'),
(112675, 'https://ror.org/01df9hd73', 'en', 1, 'https://ror.org/01df9hd73 Institute for Social Research'),
(112676, 'https://ror.org/00pbqgm18', 'fr', 0, 'https://ror.org/00pbqgm18 Laboratoire d''Informatique Algorithmique: Fondements et Applications'),
(112677, 'https://ror.org/02t220m45', 'fr', 1, 'https://ror.org/02t220m45 DƩlƩgation Bretagne et Pays de la Loire'),
(112678, 'https://ror.org/00gbcc509', 'en', 1, 'https://ror.org/00gbcc509 Gyeongsang National University Hospital ź²½ģƒźµ­ė¦½ėŒ€ķ•™źµė³‘ģ›'),
(112679, 'https://ror.org/010w12y08', 'en', 1, 'https://ror.org/010w12y08 Goa College of Architecture'),
(112680, 'https://ror.org/00bw5n526', 'fr', 1, 'https://ror.org/00bw5n526 DƩlƩgation Paris 7'),
(112681, 'https://ror.org/04g2pxh42', 'en', 1, 'https://ror.org/04g2pxh42 Korea Astronomy and Space Science Institute ķ•œźµ­ģ²œė¬øģ—°źµ¬ģ›'),
(112682, 'https://ror.org/02zx68e15', 'es', 1, 'https://ror.org/02zx68e15 Health Research Institute of the Princess University Hospital Instituto de Investigación Sanitaria del Hospital Universitario de La Princesa'),
(112683, 'https://ror.org/02w4gwv87', 'en', 1, 'https://ror.org/02w4gwv87 Oniversiten''Antananarivo University of Antananarivo UniversitƩ d''Antananarivo'),
(112684, 'https://ror.org/05t1vfs33', 'en', 1, 'https://ror.org/05t1vfs33 Fort Lauderdale Fire-Rescue'),
(112685, 'https://ror.org/04yavcg77', 'fr', 1, 'https://ror.org/04yavcg77 Anthropologie et Histoire des Mondes Antiques Anthropology and History of the Ancient World'),
(112686, 'https://ror.org/05pgrqz33', 'en', 1, 'https://ror.org/05pgrqz33 Nepal College of Information Technology ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą¤²ą„‡ą¤œ अफ ą¤‡ą¤Øą„ą¤«ą¤°ą„ą¤®ą„‡ą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‹ą¤œą„€'),
(112687, 'https://ror.org/02f9avj37', 'en', 1, 'https://ror.org/02f9avj37 Hanyang University Guri Hospital ķ•œģ–‘ėŒ€ķ•™źµźµ¬ė¦¬ė³‘ģ›'),
(112688, 'https://ror.org/046p9e825', 'fr', 1, 'https://ror.org/046p9e825 Laboratory Preuves, Programmes et SystĆØmes'),
(112689, 'https://ror.org/006gzge74', 'fr', 1, 'https://ror.org/006gzge74 Centre de recherche sur les civilisations de l''Asie orientale'),
(112690, 'https://ror.org/01v9phm86', 'no_lang_code', 1, 'https://ror.org/01v9phm86 J. S. Ayurveda Mahavidyalaya and P.D. Patel Ayurveda Hospital'),
(112691, 'https://ror.org/023b3v773', 'en', 1, 'https://ror.org/023b3v773 Busan Development Institute 부산연구원'),
(112692, 'https://ror.org/02zs8a198', 'en', 1, 'https://ror.org/02zs8a198 National Institute for Sports, Nigeria'),
(112693, 'https://ror.org/05cd7jh29', 'en', 1, 'https://ror.org/05cd7jh29 Silvaco Group, Inc. Silvaco Group, Inc. (United States)'),
(112694, 'https://ror.org/0232qd816', 'en', 1, 'https://ror.org/0232qd816 Yerkes Observatory'),
(112695, 'https://ror.org/001qhzb21', 'pt', 1, 'https://ror.org/001qhzb21 Faculdade Luterana de Teologia'),
(112696, 'https://ror.org/040pxfk62', 'de', 1, 'https://ror.org/040pxfk62 Soziologisches Forschungsinstitut Gƶttingen'),
(112697, 'https://ror.org/02w7k5y22', 'en', 1, 'https://ror.org/02w7k5y22 Datta Meghe Institute of Higher Education and Research'),
(112698, 'https://ror.org/05v469c23', 'en', 1, 'https://ror.org/05v469c23 Oran Graduate School of Economics'),
(112699, 'https://ror.org/0343q4c37', 'fr', 1, 'https://ror.org/0343q4c37 Institut des Sciences du Sport-SantƩ de Paris'),
(112700, 'https://ror.org/04j5k3k40', 'en', 1, 'https://ror.org/04j5k3k40 National Oil Corporation of Kenya'),
(112701, 'https://ror.org/00vs8d940', 'en', 1, 'https://ror.org/00vs8d940 University of Bradford'),
(112702, 'https://ror.org/04amdcz96', 'en', 1, 'https://ror.org/04amdcz96 Jinfeng Laboratory é‡‘å‡¤å®žéŖŒå®¤'),
(112703, 'https://ror.org/02fjdfm19', 'fr', 1, 'https://ror.org/02fjdfm19 SystĆØme de Production d’Ions Radioactifs AccĆ©lĆ©rĆ©s en Ligne SystĆØme de Production d’Ions Radioactifs AccĆ©lĆ©rĆ©s en Ligne – ĆŗÄast ČR'),
(112704, 'https://ror.org/01yppp702', 'en', 1, 'https://ror.org/01yppp702 The Unjournal'),
(112705, 'https://ror.org/05ye64x65', 'fr', 1, 'https://ror.org/05ye64x65 Imagerie X en ostƩo-articulaire pour la recherche'),
(112706, 'https://ror.org/00wrn8115', 'en', 1, 'https://ror.org/00wrn8115 Tochigi Prefectural Agricultural Experiment Station ę ƒęœØēœŒč¾²ę„­č©¦éØ“å “'),
(112707, 'https://ror.org/005ypkf75', 'en', 1, 'https://ror.org/005ypkf75 University of Reunion Island UniversitƩ de La RƩunion'),
(112708, 'https://ror.org/04ht56804', 'en', 1, 'https://ror.org/04ht56804 Future of Research Communication and e-Scholarship (FORCE11)'),
(112709, 'https://ror.org/02g40zn06', 'fr', 1, 'https://ror.org/02g40zn06 Institut de Psychiatrie et Neurosciences de Paris Institute of Psychiatry and Neuroscience of Paris'),
(112710, 'https://ror.org/03pnk9016', 'en', 1, 'https://ror.org/03pnk9016 Center for Social Studies on African, American and Asian Worlds Centre d’études en Sciences Sociales sur les Mondes Africains, AmĆ©ricains et Asiatiques'),
(112711, 'https://ror.org/055wjj883', 'fr', 0, 'https://ror.org/055wjj883 Institut de Biosciences et Biotechnologies'),
(112712, 'https://ror.org/04114az09', 'hu', 1, 'https://ror.org/04114az09 Erdélyi Múzeum-Egyesület'),
(112713, 'https://ror.org/01fpnj063', 'en', 1, 'https://ror.org/01fpnj063 Catholic University of Korea ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(112714, 'https://ror.org/05cxnr816', 'en', 1, 'https://ror.org/05cxnr816 Chung-Ang University Healthcare System ģ¤‘ģ•™ėŒ€ķ•™źµģ˜ė£Œģ›'),
(112715, 'https://ror.org/00f200z37', 'en', 1, 'https://ror.org/00f200z37 Chonnam National University Hospital ģ „ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(112716, 'https://ror.org/04khhej38', 'en', 1, 'https://ror.org/04khhej38 Multiplanet University'),
(112717, 'https://ror.org/025kb2624', 'en', 1, 'https://ror.org/025kb2624 University of Medicine and Pharmacy at Ho Chi Minh City ĐẔi hį»c Y Dược ThĆ nh phố Hồ ChĆ­ Minh'),
(112718, 'https://ror.org/03t1j6e48', 'de', 1, 'https://ror.org/03t1j6e48 Schader-Stiftung'),
(112719, 'https://ror.org/00cwne819', 'es', 1, 'https://ror.org/00cwne819 Sabbag Radiólogos'),
(112720, 'https://ror.org/058s4kb90', 'en', 1, 'https://ror.org/058s4kb90 The Leprosy Mission Hospital, Naini'),
(112721, 'https://ror.org/00y1ckk55', 'pt', 1, 'https://ror.org/00y1ckk55 Sociedade Brasileira de ResiliĆŖncia Sociedade Brasileira de ResiliĆŖncia (Brazil)'),
(112722, 'https://ror.org/05xya7b65', 'en', 0, 'https://ror.org/05xya7b65 Jyoban Hospital of Tokiwa Foundation å…¬ē›Šč²”å›£ę³•äŗŗćØćć‚ä¼šåøøē£ē—…é™¢'),
(112723, 'https://ror.org/026pjf520', 'fr', 0, 'https://ror.org/026pjf520 Centre de Neurophysique Physiologie et Pathologie'),
(112724, 'https://ror.org/01dcefd69', 'en', 1, 'https://ror.org/01dcefd69 World Institute of Kimchi ģ„øź³„ź¹€ģ¹˜ģ—°źµ¬ģ†Œ'),
(112725, 'https://ror.org/015dy5p63', 'pt', 1, 'https://ror.org/015dy5p63 Centro Cardiovascular da Universidade de Lisboa'),
(112726, 'https://ror.org/039k65f65', 'en', 1, 'https://ror.org/039k65f65 Korea Legislation Research Institute ķ•œźµ­ė²•ģ œģ—°źµ¬ģ›'),
(112727, 'https://ror.org/05739xz97', 'en', 1, 'https://ror.org/05739xz97 Korea Information Society Development Institute 정볓통신정책연구원'),
(112728, 'https://ror.org/05wzabs02', 'fr', 1, 'https://ror.org/05wzabs02 Optimisation ThƩrapeutique en Neuropsychopharmacologie'),
(112729, 'https://ror.org/01m11mf96', 'fr', 1, 'https://ror.org/01m11mf96 HƓpital Broca'),
(112730, 'https://ror.org/03hvr8395', 'es', 1, 'https://ror.org/03hvr8395 Universidad CuauhtƩmoc Guadalajara'),
(112731, 'https://ror.org/02fp10z94', 'es', 1, 'https://ror.org/02fp10z94 Universidad Autónoma de Encarnación'),
(112732, 'https://ror.org/019xm3p48', 'en', 1, 'https://ror.org/019xm3p48 Government of the Republic of Korea å¤§éŸ“ę°‘åœ‹ę”æåŗœ ėŒ€ķ•œėÆ¼źµ­ ģ •ė¶€'),
(112733, 'https://ror.org/00ezvft90', 'en', 1, 'https://ror.org/00ezvft90 Laboratory of Excellence GR-Ex'),
(112734, 'https://ror.org/00e8f1a50', 'de', 1, 'https://ror.org/00e8f1a50 Theologische FakultƤt Paderborn'),
(112735, 'https://ror.org/0160gc229', 'en', 1, 'https://ror.org/0160gc229 Yonsei University Mirae Campus ģ—°ģ„øėŒ€ķ•™źµ ėÆøėž˜ģŗ ķ¼ģŠ¤'),
(112736, 'https://ror.org/01az7b475', 'en', 1, 'https://ror.org/01az7b475 Korea Research Institute of Standards and Science ķ•œźµ­ķ‘œģ¤€ź³¼ķ•™ģ—°źµ¬ģ›'),
(112737, 'https://ror.org/046as0q24', 'fr', 1, 'https://ror.org/046as0q24 Laboratoire de Psychopathologie et Processus de SantƩ Laboratory of Psychopathology and Health Processes'),
(112738, 'https://ror.org/04ex24z53', 'fr', 1, 'https://ror.org/04ex24z53 CollĆØge de France'),
(112739, 'https://ror.org/01xb4fs50', 'en', 1, 'https://ror.org/01xb4fs50 Korea Atomic Energy Research Institute ķ•œźµ­ģ›ģžė „ģ—°źµ¬ģ›'),
(112740, 'https://ror.org/055ggwx94', 'en', 1, 'https://ror.org/055ggwx94 JAMSTECęØŖęµœē ”ē©¶ę‰€ Yokohama Institute for Earth Sciences'),
(112741, 'https://ror.org/01sdmps70', 'en', 1, 'https://ror.org/01sdmps70 University of North Dakota Computational Research Center'),
(112742, 'https://ror.org/01p6yxw64', 'fr', 1, 'https://ror.org/01p6yxw64 Groupe des Ɖcoles Nationales d''Ɖconomie et Statistique'),
(112743, 'https://ror.org/03fp59e94', 'en', 1, 'https://ror.org/03fp59e94 Institut für Grundwasserökologie Institute of Groundwater Ecology'),
(112744, 'https://ror.org/02krdtz55', 'fr', 1, 'https://ror.org/02krdtz55 Institut de Recherche en Informatique Fondamentale Research Institute on the Foundations of Computer Science'),
(112745, 'https://ror.org/03fdnmv92', 'fr', 1, 'https://ror.org/03fdnmv92 HƓpital Bichat-Claude-Bernard'),
(112746, 'https://ror.org/02q7mkh03', 'en', 1, 'https://ror.org/02q7mkh03 Inter-university Consortium for Political and Social Research'),
(112747, 'https://ror.org/0013zwa68', 'en', 1, 'https://ror.org/0013zwa68 Estuarine and Coastal Studies Foundation'),
(112748, 'https://ror.org/04mf0wv34', 'fr', 1, 'https://ror.org/04mf0wv34 Laboratoire d''Ɖlectronique des Technologies de l''Information'),
(112749, 'https://ror.org/033pfj584', 'en', 1, 'https://ror.org/033pfj584 Dr. Babasaheb Ambedkar Marathwada University ą¤”ą„‰. ą¤¬ą¤¾ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤†ą¤‚ą¤¬ą„‡ą¤”ą¤•ą¤° मराठवाऔा ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(112750, 'https://ror.org/05n486907', 'en', 1, 'https://ror.org/05n486907 Catholic Kwandong University ź°€ķ†Øė¦­ź“€ė™ėŒ€ķ•™źµ'),
(112751, 'https://ror.org/05tr67282', 'fr', 1, 'https://ror.org/05tr67282 HƓpital Necker-Enfants Malades'),
(112752, 'https://ror.org/03x0yny97', 'fr', 1, 'https://ror.org/03x0yny97 Ɖco-Anthropologie'),
(112753, 'https://ror.org/049jtt335', 'fr', 1, 'https://ror.org/049jtt335 UniversitƩ du QuƩbec Ơ Rimouski'),
(112754, 'https://ror.org/02h13ga37', 'en', 1, 'https://ror.org/02h13ga37 National Community Reinvestment Coalition'),
(112755, 'https://ror.org/04vxjth07', 'de', 1, 'https://ror.org/04vxjth07 Museum für Naturkunde Magdeburg Museum of Natural History Magdeburg'),
(112756, 'https://ror.org/05v0qpv28', 'en', 1, 'https://ror.org/05v0qpv28 Dankook University Hospital ė‹Øźµ­ėŒ€ķ•™źµė³‘ģ›'),
(112757, 'https://ror.org/00fd9sj13', 'en', 1, 'https://ror.org/00fd9sj13 Daegu Catholic University Medical Center ėŒ€źµ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµė³‘ģ› ėŒ€źµ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµģ˜ė£Œģ›'),
(112758, 'https://ror.org/03m488f94', 'no_lang_code', 1, 'https://ror.org/03m488f94 ECOFYT ECOFYT (Netherlands)'),
(112759, 'https://ror.org/01ncvjw08', 'fr', 1, 'https://ror.org/01ncvjw08 Technopole Maritime du QuƩbec'),
(112760, 'https://ror.org/05tnkew71', 'en', 1, 'https://ror.org/05tnkew71 JSS Ayurveda Medical College and Hospital'),
(112761, 'https://ror.org/02r4wr814', 'en', 1, 'https://ror.org/02r4wr814 King Ceasor University'),
(112762, 'https://ror.org/01wnx6213', 'en', 1, 'https://ror.org/01wnx6213 Down Syndrome Education International'),
(112763, 'https://ror.org/040c1wx64', 'es', 1, 'https://ror.org/040c1wx64 Fundación Nuestros Hijos'),
(112764, 'https://ror.org/02kn1p956', 'en', 1, 'https://ror.org/02kn1p956 Korea Institute for Industrial Economics and Trade 산업연구원'),
(112765, 'https://ror.org/03fk87k11', 'fr', 1, 'https://ror.org/03fk87k11 Institut de MathƩmatiques de Jussieu-Paris Rive Gauche'),
(112766, 'https://ror.org/00ge4g807', 'es', 1, 'https://ror.org/00ge4g807 Corporación AkarÔ'),
(112767, 'https://ror.org/046bx1082', 'fr', 1, 'https://ror.org/046bx1082 HƓpital Paris Saint-Joseph'),
(112768, 'https://ror.org/02jwwk370', 'fr', 1, 'https://ror.org/02jwwk370 FƩdƩration de recherche en sciences mathƩmatiques de Paris centre'),
(112769, 'https://ror.org/05hqep952', 'fr', 1, 'https://ror.org/05hqep952 Infection, Anti-microbiens, ModƩlisation, Evolution Infection, Antimicrobials, Modelling, Evolution'),
(112770, 'https://ror.org/01bbf9m56', 'fr', 1, 'https://ror.org/01bbf9m56 FƩdƩration Francilienne de MƩcanique - MatƩriaux, Structures, ProcƩdƩs'),
(112771, 'https://ror.org/00kr24y60', 'fr', 1, 'https://ror.org/00kr24y60 Institut Langevin Langevin Institute'),
(112772, 'https://ror.org/02w9nxc78', 'en', 1, 'https://ror.org/02w9nxc78 St. Agnes College (Autonomous), Mangaluru'),
(112773, 'https://ror.org/03656je58', 'en', 0, 'https://ror.org/03656je58 St. Augustine International University'),
(112774, 'https://ror.org/045p3tc45', 'en', 1, 'https://ror.org/045p3tc45 PoultryHub Australia'),
(112775, 'https://ror.org/053ec7n91', 'en', 1, 'https://ror.org/053ec7n91 Law Officers'' Department'),
(112776, 'https://ror.org/04haebc03', 'en', 1, 'https://ror.org/04haebc03 Memorial University of Newfoundland'),
(112777, 'https://ror.org/03wkrdj07', 'no_lang_code', 1, 'https://ror.org/03wkrdj07 Anandaban Hospital'),
(112778, 'https://ror.org/03ewzsb32', 'en', 0, 'https://ror.org/03ewzsb32 Biological Society of Finland Vanamo Suomen Biologian Seura Vanamo'),
(112779, 'https://ror.org/013yz9b19', 'en', 1, 'https://ror.org/013yz9b19 Korea Institute of Fusion Energy ķ•œźµ­ķ•µģœµķ•©ģ—ė„ˆģ§€ģ—°źµ¬ģ›'),
(112780, 'https://ror.org/02w69g525', 'de', 1, 'https://ror.org/02w69g525 Bundesanstalt Technisches Hilfswerk'),
(112781, 'https://ror.org/024g34t51', 'fr', 1, 'https://ror.org/024g34t51 Ecole Nationale d''Administration National School of Administration'),
(112782, 'https://ror.org/01a4enz31', 'en', 1, 'https://ror.org/01a4enz31 SPPIN - Saints-PĆØres Paris Institute for Neurosciences'),
(112783, 'https://ror.org/004qegc47', 'en', 1, 'https://ror.org/004qegc47 Government Medical College Jalaun'),
(112784, 'https://ror.org/05prqcv46', 'en', 1, 'https://ror.org/05prqcv46 Korea Women''s Development Institute ķ•œźµ­ģ—¬ģ„±ģ •ģ±…ģ—°źµ¬ģ›'),
(112785, 'https://ror.org/054h6cy21', 'en', 1, 'https://ror.org/054h6cy21 College of Technical Science, Bani Walid ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŲØŁ†ŁŠ ŁˆŁ„ŁŠŲÆ'),
(112786, 'https://ror.org/0570qwq18', 'en', 1, 'https://ror.org/0570qwq18 Philip R. Lee Institute for Health Policy Studies'),
(112787, 'https://ror.org/02c5gc203', 'fr', 1, 'https://ror.org/02c5gc203 Institut Jacques Monod'),
(112788, 'https://ror.org/04xjkmz40', 'es', 1, 'https://ror.org/04xjkmz40 Universidad CuauhtƩmoc'),
(112789, 'https://ror.org/04cxjpx43', 'no_lang_code', 1, 'https://ror.org/04cxjpx43 Vijaya College'),
(112790, 'https://ror.org/01s0je147', 'de', 1, 'https://ror.org/01s0je147 University and State Library Tyrol UniversitƤts- und Landesbibliothek Tirol'),
(112791, 'https://ror.org/0446hjy70', 'de', 1, 'https://ror.org/0446hjy70 Hochschule für Kirchenmusik der Evangelischen Kirche von Westfalen University of Church Music of the Evangelical Church of Westphalia'),
(112792, 'https://ror.org/04sq8xk75', 'en', 0, 'https://ror.org/04sq8xk75 Centre for Psychiatry and Neuroscience'),
(112793, 'https://ror.org/03cg5md32', 'es', 1, 'https://ror.org/03cg5md32 Hospital Universitario de La Princesa'),
(112794, 'https://ror.org/039pa0a74', 'en', 1, 'https://ror.org/039pa0a74 DES Pune University'),
(112795, 'https://ror.org/04yn0zk11', 'en', 1, 'https://ror.org/04yn0zk11 Ehime Research Institute of Agriculture, Forestry and Fisheries ę„›åŖ›ēœŒč¾²ęž—ę°“ē”£ē ”ē©¶ę‰€'),
(112796, 'https://ror.org/03n15ch10', 'fr', 1, 'https://ror.org/03n15ch10 CEA Paris-Saclay'),
(112797, 'https://ror.org/023kqz006', 'fr', 1, 'https://ror.org/023kqz006 Laboratoire de Psychologie du DĆ©veloppement et de L’Education de l’enfant Laboratory for the Psychology of Child Development and Education'),
(112798, 'https://ror.org/046jqp289', 'en', 1, 'https://ror.org/046jqp289 Yichang Hubo Medical Research Institute å®œę˜ŒęŠ¤åšåŒ»å­¦ē ”ē©¶é™¢'),
(112799, 'https://ror.org/04jvdr241', 'en', 1, 'https://ror.org/04jvdr241 Al Hussein Technical University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­Ų³ŁŠŁ† Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(112800, 'https://ror.org/027zf7h57', 'en', 1, 'https://ror.org/027zf7h57 Pusan National University Hospital ė¶€ģ‚°ėŒ€ķ•™źµė³‘ģ›'),
(112801, 'https://ror.org/02v2jyq75', 'fr', 1, 'https://ror.org/02v2jyq75 Center for Research in Medicine, Science, Health, Mental Health and Society Centre de Recherche MƩdecine, Sciences, SantƩ, SantƩ Mentale, SociƩtƩ'),
(112802, 'https://ror.org/02xrw9r68', 'fr', 1, 'https://ror.org/02xrw9r68 University of Quebec at Trois-Rivieres Université du Québec à Trois-Rivières'),
(112803, 'https://ror.org/02gn50d10', 'fr', 1, 'https://ror.org/02gn50d10 Center for Research on Inflammation Centre de Recherche sur l''Inflammation'),
(112804, 'https://ror.org/02wc0kq10', 'en', 1, 'https://ror.org/02wc0kq10 Space Research Organisation Netherlands Stichting Ruimteonderzoek Nederland'),
(112805, 'https://ror.org/02mqtne57', 'fr', 1, 'https://ror.org/02mqtne57 HÓpital Lariboisière Lariboisière Hospital'),
(112806, 'https://ror.org/02fgakj19', 'fr', 1, 'https://ror.org/02fgakj19 Centre Neurosciences intƩgratives et Cognition Integrative Neuroscience and Cognition Center'),
(112807, 'https://ror.org/009e3jw43', 'en', 1, 'https://ror.org/009e3jw43 Canon Medical Research Europe Canon Medical Research Europe (United Kingdom) Canon Medical Research Europe Ltd.'),
(112808, 'https://ror.org/05wqg4606', 'fr', 0, 'https://ror.org/05wqg4606 Laboratoire Pierre Aigrain Pierre Aigrain Laboratory'),
(112809, 'https://ror.org/05nv9j059', 'en', 1, 'https://ror.org/05nv9j059 Sharklab ADRIA: Centar za marinsku i slatkovodnu biologiju Sharklab ADRIA: Center for Marine and Freshwater Biology'),
(112810, 'https://ror.org/00cb3km46', 'en', 1, 'https://ror.org/00cb3km46 Seoul National University Bundang Hospital 분당 ģ„œģšøėŒ€ė³‘ģ› 분당 ģ„œģšøėŒ€ķ•™źµė³‘ģ› ė¶„ė‹¹ģ„œģšøėŒ€ķ•™źµė³‘ģ›'),
(112811, 'https://ror.org/03ep77119', 'en', 1, 'https://ror.org/03ep77119 Istanbul Provincial Health Directorate İstanbul İl Sağlik Müdürlüğü'),
(112812, 'https://ror.org/05d34fg54', 'en', 1, 'https://ror.org/05d34fg54 Malla Reddy Institute Of Medical Sciences'),
(112813, 'https://ror.org/00tj21473', 'fr', 1, 'https://ror.org/00tj21473 CArcinose PƩritoine Paris-Technologies Carcinomatosis Peritoneum Paris Technology'),
(112814, 'https://ror.org/04a2rz655', 'en', 1, 'https://ror.org/04a2rz655 Rajamangala University of Technology Isan ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø­ąøµąøŖąø²ąø™'),
(112815, 'https://ror.org/04qfph657', 'en', 1, 'https://ror.org/04qfph657 Korea Institute of Industrial Technology ķ•œźµ­ģƒģ‚°źø°ģˆ ģ—°źµ¬ģ›');
INSERT INTO `rors` VALUES
(112816, 'https://ror.org/02vnd0e65', 'fr', 1, 'https://ror.org/02vnd0e65 Laboratoire de ProbabilitƩs, Statistique et ModƩlisation'),
(112817, 'https://ror.org/03gvnh520', 'en', 1, 'https://ror.org/03gvnh520 Paris Cardiovascular Research Center Paris Centre de Recherche Cardiovasculaire'),
(112818, 'https://ror.org/01kbyzq17', 'en', 1, 'https://ror.org/01kbyzq17 Al-Shifa Trust Eye Hospital'),
(112819, 'https://ror.org/01y8j9r24', 'fr', 1, 'https://ror.org/01y8j9r24 DƩlƩgation Ile-de-France Sud'),
(112820, 'https://ror.org/020tdv696', 'en', 1, 'https://ror.org/020tdv696 World Wildlife Fund Canada'),
(112821, 'https://ror.org/043n69j88', 'en', 1, 'https://ror.org/043n69j88 UBC Properties Trust'),
(112822, 'https://ror.org/00pkvys92', 'en', 1, 'https://ror.org/00pkvys92 Ministry of Health'),
(112823, 'https://ror.org/05txczf44', 'en', 1, 'https://ror.org/05txczf44 LIAG Institute for Applied Geophysics LIAG-Institut für Angewandte Geophysik'),
(112824, 'https://ror.org/04hjc7403', 'fr', 0, 'https://ror.org/04hjc7403 Laboratoire de Probabilités et Modèles Aléatoires'),
(112825, 'https://ror.org/04fbd1w03', 'fr', 1, 'https://ror.org/04fbd1w03 Hydrologie MƩtƩorologie et ComplexitƩ'),
(112826, 'https://ror.org/04xmteb38', 'fr', 1, 'https://ror.org/04xmteb38 Laboratoire Jacques-Louis Lions'),
(112827, 'https://ror.org/05s5aag36', 'en', 1, 'https://ror.org/05s5aag36 Department of Primary Industries'),
(112828, 'https://ror.org/0085x3f43', 'en', 1, 'https://ror.org/0085x3f43 Ningbo University of Finance & Economics å®ę³¢č“¢ē»å­¦é™¢'),
(112829, 'https://ror.org/01y2dkd68', 'en', 1, 'https://ror.org/01y2dkd68 Hospital for Advanced Medicine and Surgery (HAMS)'),
(112830, 'https://ror.org/03jmjy508', 'fr', 1, 'https://ror.org/03jmjy508 HƓtel-Dieu de Paris'),
(112831, 'https://ror.org/01xe86309', 'pt', 1, 'https://ror.org/01xe86309 Instituto Nacional de Pesquisas da AmazƓnia National Institute of Amazonian Research'),
(112832, 'https://ror.org/04apk3g44', 'en', 1, 'https://ror.org/04apk3g44 Catholic Kwandong University International St. Mary''s Hospital ź°€ķ†Øė¦­ź“€ė™ėŒ€ķ•™źµ źµ­ģ œģ„±ėŖØė³‘ģ› źµ­ģ œģ„±ėŖØė³‘ģ›'),
(112833, 'https://ror.org/03ct7hs15', 'en', 1, 'https://ror.org/03ct7hs15 Extreme Light Infrastructure ERIC Extreme Light Infrastructure ERIC (Czech Republic)'),
(112834, 'https://ror.org/013095052', 'en', 1, 'https://ror.org/013095052 Everglades National Park Parque nacional de los Everglades'),
(112835, 'https://ror.org/051qqcg15', 'en', 1, 'https://ror.org/051qqcg15 Rajamangala University of Technology ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„'),
(112836, 'https://ror.org/0131gn249', 'en', 1, 'https://ror.org/0131gn249 Chosun University Hospital ģ”°ģ„ ėŒ€ķ•™źµė³‘ģ›'),
(112837, 'https://ror.org/04gh2v067', 'fr', 1, 'https://ror.org/04gh2v067 Physiologie De L''Axe Gonadotrope'),
(112838, 'https://ror.org/03by16w37', 'en', 1, 'https://ror.org/03by16w37 Jeonbuk National University Hospital ģ „ė¶ėŒ€ķ•™źµė³‘ģ›'),
(112839, 'https://ror.org/04vyfjp39', 'en', 1, 'https://ror.org/04vyfjp39 National Defence College Nigeria'),
(112840, 'https://ror.org/00mz87608', 'fr', 1, 'https://ror.org/00mz87608 Institut Interdisciplinaire de l''Innovation'),
(112841, 'https://ror.org/01zx5ww52', 'en', 1, 'https://ror.org/01zx5ww52 Inje University Ilsan Paik Hospital ģøģ œėŒ€ķ•™źµ ģ¼ģ‚°ė°±ė³‘ģ›'),
(112842, 'https://ror.org/03atapr58', 'fr', 1, 'https://ror.org/03atapr58 Laboratoire d''Electrochimie MolƩculaire'),
(112843, 'https://ror.org/02eg1qz05', 'en', 1, 'https://ror.org/02eg1qz05 Malla Reddy University'),
(112844, 'https://ror.org/002yg6s88', 'fr', 1, 'https://ror.org/002yg6s88 Centre Population et DƩveloppement Population and Development Center'),
(112845, 'https://ror.org/015471y74', 'en', 1, 'https://ror.org/015471y74 Inje University Paik Hospital ģøģ œėŒ€ķ•™źµ ė°±ģ¤‘ģ•™ģ˜ė£Œģ›'),
(112846, 'https://ror.org/00t9egj41', 'fr', 1, 'https://ror.org/00t9egj41 Centre de Recherche ƉpidĆ©miologie et Statistique Centre of Research in Epidemiology and Statistics'),
(112847, 'https://ror.org/028qedy27', 'fr', 1, 'https://ror.org/028qedy27 Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques'),
(112848, 'https://ror.org/0450hrw31', 'en', 1, 'https://ror.org/0450hrw31 State Public Health Laboratory, Assam'),
(112849, 'https://ror.org/02djzje70', 'fr', 1, 'https://ror.org/02djzje70 Chine, CorƩe, Japon The Centre for Studies on China, Korea and Japan'),
(112850, 'https://ror.org/01fz7mn40', 'fr', 1, 'https://ror.org/01fz7mn40 ENSAE Paris'),
(112851, 'https://ror.org/05kt43w73', 'fr', 0, 'https://ror.org/05kt43w73 Chimie Organique, MƩdicinale et Extractive et Toxicologie ExpƩrimentale'),
(112852, 'https://ror.org/04k5bcn60', 'fr', 1, 'https://ror.org/04k5bcn60 FƩdƩration de recherche en imagerie multi-modalitƩ'),
(112853, 'https://ror.org/00pft3n23', 'en', 1, 'https://ror.org/00pft3n23 City of Scientific Research and Technological Applications'),
(112854, 'https://ror.org/01zt9a375', 'en', 1, 'https://ror.org/01zt9a375 Chosun University ģ”°ģ„ ėŒ€ķ•™źµ'),
(112855, 'https://ror.org/04sze3c15', 'en', 1, 'https://ror.org/04sze3c15 Yonsei University Health System ģ—°ģ„øėŒ€ķ•™źµ ģ˜ė£Œģ›'),
(112856, 'https://ror.org/05pda3078', 'id', 1, 'https://ror.org/05pda3078 Universitas Media Nusantara Citra'),
(112857, 'https://ror.org/01j9f6752', 'en', 0, 'https://ror.org/01j9f6752 University of Koblenz and Landau UniversitƤt Koblenz-Landau'),
(112858, 'https://ror.org/01ttd2w16', 'en', 1, 'https://ror.org/01ttd2w16 Prasad V. Potluri Siddhartha Institute of Technology'),
(112859, 'https://ror.org/03szcgb58', 'fr', 0, 'https://ror.org/03szcgb58 Imagerie et ModƩlisation en Neurobiologie et CancƩrologie'),
(112860, 'https://ror.org/01pzf6r50', 'en', 1, 'https://ror.org/01pzf6r50 Inje University Busan Paik Hospital ģøģ œėŒ€ķ•™źµ 부산백병원'),
(112861, 'https://ror.org/04rs3t968', 'pt', 1, 'https://ror.org/04rs3t968 Institute of Education, University of Lisbon Instituto de Educação da Universidade de Lisboa'),
(112862, 'https://ror.org/03k1e4r14', 'fr', 1, 'https://ror.org/03k1e4r14 UnitƩ de Technologies Chimiques et Biologiques pour la SantƩ'),
(112863, 'https://ror.org/03yr1er70', 'fr', 1, 'https://ror.org/03yr1er70 Laboratoire de Psychologie sociale : contextes et rƩgulation Laboratory of Social Psychology : threats and society'),
(112864, 'https://ror.org/01nwsar36', 'en', 1, 'https://ror.org/01nwsar36 Dongguk University Ilsan Hospital ė™źµ­ėŒ€ķ•™źµ ģ¼ģ‚°ė³‘ģ›'),
(112865, 'https://ror.org/02e2ab976', 'es', 1, 'https://ror.org/02e2ab976 Universidad Tecnológica AtlĆ”ntico MediterrĆ”neo – UTAMED'),
(112866, 'https://ror.org/02fmy9v62', 'en', 1, 'https://ror.org/02fmy9v62 Institute of Fruit Tree and Tea Science ęžœęØ¹čŒ¶ę„­ē ”ē©¶éƒØé–€'),
(112867, 'https://ror.org/056vbnz12', 'fr', 1, 'https://ror.org/056vbnz12 Laboratoire Ville MobilitƩ Transport'),
(112868, 'https://ror.org/03jbhek14', 'hr', 1, 'https://ror.org/03jbhek14 Tehničko VeleučiliŔte u Zagrebu Zagreb University of Applied Sciences'),
(112869, 'https://ror.org/059fa3x42', 'en', 1, 'https://ror.org/059fa3x42 Korean Institute of Criminology and Justice ķ•œźµ­ķ˜•ģ‚¬ė²•ė¬“ģ •ģ±…ģ—°źµ¬ģ›'),
(112870, 'https://ror.org/05xqpda80', 'en', 1, 'https://ror.org/05xqpda80 NOAA Ocean Exploration Office of Ocean Exploration and Research'),
(112871, 'https://ror.org/05v8fqs17', 'en', 1, 'https://ror.org/05v8fqs17 IOL Chemicals and Pharmaceuticals Ltd. IOL Chemicals and Pharmaceuticals Ltd. (India)'),
(112872, 'https://ror.org/012j2vh13', 'en', 1, 'https://ror.org/012j2vh13 Denali National Park and Preserve Parque nacional y reserva Denali'),
(112873, 'https://ror.org/05t5n2z26', 'fr', 1, 'https://ror.org/05t5n2z26 Expression GƩnƩtique Microbienne'),
(112874, 'https://ror.org/02d3t3485', 'en', 1, 'https://ror.org/02d3t3485 Vasantidevi Patil Institute of Pharmacy'),
(112875, 'https://ror.org/02akhpg19', 'en', 1, 'https://ror.org/02akhpg19 Bharati Vidyapeeth''s College of Engineering, Delhi'),
(112876, 'https://ror.org/046865y68', 'no_lang_code', 1, 'https://ror.org/046865y68 Hanyang University ķ•œģ–‘ėŒ€ķ•™źµ'),
(112877, 'https://ror.org/01kk9d604', 'de', 1, 'https://ror.org/01kk9d604 German Association of Professors of Universities of Applied Sciences Hochschullehrerbund'),
(112878, 'https://ror.org/0213qq237', 'fr', 0, 'https://ror.org/0213qq237 Laboratoire Adaptations Travail-Individu'),
(112879, 'https://ror.org/05jwkgv16', 'de', 1, 'https://ror.org/05jwkgv16 Hector Stiftung II Hector Stiftung II gemeinnützige GmbH'),
(112880, 'https://ror.org/01bvq3f21', 'pt', 1, 'https://ror.org/01bvq3f21 Brazilian Society of Nephrology Sociedade Brasileira de Nefrologia'),
(112881, 'https://ror.org/058rymf81', 'en', 1, 'https://ror.org/058rymf81 National Research Council of Science and Technology źµ­ź°€ź³¼ķ•™źø°ģˆ ģ—°źµ¬ķšŒ'),
(112882, 'https://ror.org/01aa78f69', 'fr', 1, 'https://ror.org/01aa78f69 Centre de Recherche sur les Biotechnologies Marines'),
(112883, 'https://ror.org/01ddqfh11', 'fr', 1, 'https://ror.org/01ddqfh11 Institut Droit et SantƩ'),
(112884, 'https://ror.org/00t89kj24', 'en', 1, 'https://ror.org/00t89kj24 Mackay Medical University 馬偕醫學大學'),
(112885, 'https://ror.org/02eptjh02', 'fr', 0, 'https://ror.org/02eptjh02 Laboratoire d’études spatiales et d’instrumentation en astrophysique'),
(112886, 'https://ror.org/00ggjh491', 'en', 1, 'https://ror.org/00ggjh491 National Youth Policy Institute ķ•œźµ­ģ²­ģ†Œė…„ģ •ģ±…ģ—°źµ¬ģ›'),
(112887, 'https://ror.org/03011gg73', 'fr', 1, 'https://ror.org/03011gg73 Institut de Recherche Dupuy de LƓme'),
(112888, 'https://ror.org/03sdbz072', 'en', 1, 'https://ror.org/03sdbz072 Bangladesh Oceanographic Research Institute Bangladesh Oceanographic Research Institute (BORI) বাংলাদেশ ą¦“ą¦¶ą¦¾ą¦Øą§‹ą¦—ą§ą¦°ą¦¾ą¦«ą¦æą¦• ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(112889, 'https://ror.org/02bz9f046', 'en', 1, 'https://ror.org/02bz9f046 Paragon International University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž“įŸ’įžįžšįž‡įž¶įžįž·įž•įž¶įžšįŸ‰įž¶įž įŸ’įž‚įž“'),
(112890, 'https://ror.org/048cbmc89', 'fr', 1, 'https://ror.org/048cbmc89 Biologie intégrée du globule rouge et de l''Erythropoïèse'),
(112891, 'https://ror.org/056jxaa57', 'de', 1, 'https://ror.org/056jxaa57 Theologische FakultƤt Trier'),
(112892, 'https://ror.org/04n8sc212', 'fr', 1, 'https://ror.org/04n8sc212 Physiopathologie et EpidƩmiologie des Maladies Respiratoires'),
(112893, 'https://ror.org/01hfx7864', 'en', 1, 'https://ror.org/01hfx7864 Chongqing Dental Hospital (Yuzhong District Stomatological Hospital) é‡åŗ†ē‰™ē§‘åŒ»é™¢ļ¼ˆé‡åŗ†åø‚ęøäø­åŒŗå£č…”åŒ»é™¢)'),
(112894, 'https://ror.org/049xt3t52', 'de', 1, 'https://ror.org/049xt3t52 Archiv der Deutschen Frauenbewegung'),
(112895, 'https://ror.org/04n0rvp85', 'no_lang_code', 0, 'https://ror.org/04n0rvp85 Tech-X Corporation (United States)'),
(112896, 'https://ror.org/05w87rc74', 'fr', 1, 'https://ror.org/05w87rc74 UMS Saint-Louis'),
(112897, 'https://ror.org/01wbvvd76', 'en', 1, 'https://ror.org/01wbvvd76 Higher Institute of Science and Technology Tajoura المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ© تاجوراؔ'),
(112898, 'https://ror.org/02m9zjj28', 'en', 1, 'https://ror.org/02m9zjj28 Indian Institute of Information Technology Kalyani ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ सचना ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ą„€'),
(112899, 'https://ror.org/04t9v8r67', 'fr', 1, 'https://ror.org/04t9v8r67 Ecotaxie, Microenvironnement et dƩveloppement lymphocytaire Microenvironment, lymphocyte development and homing'),
(112900, 'https://ror.org/016vx5156', 'fr', 1, 'https://ror.org/016vx5156 HƓpital EuropƩen Georges-Pompidou'),
(112901, 'https://ror.org/000v4bn80', 'en', 0, 'https://ror.org/000v4bn80 Crossroads College'),
(112902, 'https://ror.org/01tgswh16', 'en', 0, 'https://ror.org/01tgswh16 Poultry CRC'),
(112903, 'https://ror.org/05kzjxq56', 'en', 1, 'https://ror.org/05kzjxq56 Chonnam National University ģ „ė‚ØėŒ€ķ•™źµ'),
(112904, 'https://ror.org/04sxex454', 'pt', 1, 'https://ror.org/04sxex454 Atitus Educação'),
(112905, 'https://ror.org/000nhq538', 'fr', 1, 'https://ror.org/000nhq538 Institut Necker Enfants Malades'),
(112906, 'https://ror.org/05hy3tk52', 'fr', 1, 'https://ror.org/05hy3tk52 Ɖcole Polytechnique'),
(112907, 'https://ror.org/04gr4mh63', 'en', 1, 'https://ror.org/04gr4mh63 Chung-Ang University Hospital ģ¤‘ģ•™ėŒ€ķ•™źµģ˜ė£Œģ›'),
(112908, 'https://ror.org/05w482q29', 'fr', 0, 'https://ror.org/05w482q29 AMIS - Laboratoire d''anthropologie moléculaire et imagerie de synthèse'),
(112909, 'https://ror.org/00adasd53', 'en', 1, 'https://ror.org/00adasd53 Paris Centre for Quantum Technologies'),
(112910, 'https://ror.org/03kr50w79', 'fr', 1, 'https://ror.org/03kr50w79 Physique et Mécanique des Milieux Hétérogènes'),
(112911, 'https://ror.org/016bv0j42', 'fr', 1, 'https://ror.org/016bv0j42 UnitĆ© d''Ɖconomie AppliquĆ©e'),
(112912, 'https://ror.org/02s56xp85', 'fr', 1, 'https://ror.org/02s56xp85 Institut d''Ʃcologie et des sciences de l''environnement de Paris Institute of Ecology and Environmental Sciences Paris'),
(112913, 'https://ror.org/01wa61d03', 'fr', 1, 'https://ror.org/01wa61d03 Institut de recherche Saint-Louis'),
(112914, 'https://ror.org/007tfm130', 'en', 1, 'https://ror.org/007tfm130 Research Software Alliance'),
(112915, 'https://ror.org/02fzwdc59', 'en', 1, 'https://ror.org/02fzwdc59 Yonsei University Dental Hospital ģ—°ģ„øėŒ€ķ•™źµ ģ¹˜ź³¼ėŒ€ķ•™ė³‘ģ›'),
(112916, 'https://ror.org/03tgsfw79', 'en', 1, 'https://ror.org/03tgsfw79 Kobe University ē„žęˆøå¤§å­¦'),
(112917, 'https://ror.org/04h9pn542', 'en', 1, 'https://ror.org/04h9pn542 Seoul National University ģ„œģšøėŒ€ķ•™źµ'),
(112918, 'https://ror.org/01b4w2923', 'es', 1, 'https://ror.org/01b4w2923 Universidad de San Carlos de Guatemala University of San Carlos of Guatemala'),
(112919, 'https://ror.org/03q7r5x87', 'fr', 1, 'https://ror.org/03q7r5x87 Laboratoire de Biologie, BioingƩniƩrie et Bioimagerie ostƩoarticulaire'),
(112920, 'https://ror.org/020z28a80', 'en', 1, 'https://ror.org/020z28a80 Institut für Elektrische Energieversorgung und Hochspannungstechnik Institute of Electrical Power Systems and High Voltage Engineering'),
(112921, 'https://ror.org/0309cs235', 'fr', 1, 'https://ror.org/0309cs235 Ɖcole Nationale SupĆ©rieure de Techniques AvancĆ©es'),
(112922, 'https://ror.org/00ajjta07', 'fr', 1, 'https://ror.org/00ajjta07 Institut des Sciences des Plantes de Paris Saclay'),
(112923, 'https://ror.org/04k1akk19', 'fr', 1, 'https://ror.org/04k1akk19 Institut des SystĆØmes Complexes Paris Ǝle-de-France'),
(112924, 'https://ror.org/03kvhnf06', 'en', 1, 'https://ror.org/03kvhnf06 Korea SMEs and Startups Agency ģ¤‘ģ†Œė²¤ģ²˜źø°ģ—…ģ§„ķ„ź³µė‹Ø'),
(112925, 'https://ror.org/02wg74v35', 'en', 1, 'https://ror.org/02wg74v35 Korea District Heating Corporation ķ•œźµ­ģ§€ģ—­ė‚œė°©ź³µģ‚¬'),
(112926, 'https://ror.org/03tyznx60', 'en', 0, 'https://ror.org/03tyznx60 Neuroimaging and Psychiatry'),
(112927, 'https://ror.org/059qg2m13', 'en', 1, 'https://ror.org/059qg2m13 Japan Agency for Marine-Earth Science and Technology ęµ·ę“‹ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(112928, 'https://ror.org/0191e1h06', 'en', 1, 'https://ror.org/0191e1h06 Shubham Biotech Nepal Pvt. Ltd. Shubham Biotech Nepal Pvt. Ltd. (Nepal)'),
(112929, 'https://ror.org/0117jxy09', 'no_lang_code', 1, 'https://ror.org/0117jxy09 Springer Nature (Germany)'),
(112930, 'https://ror.org/034bxst58', 'en', 1, 'https://ror.org/034bxst58 Jeonbuk National University Dental Hospital ģ „ė¶ėŒ€ķ•™źµ ģ¹˜ź³¼ė³‘ģ›'),
(112931, 'https://ror.org/01cby8j38', 'es', 1, 'https://ror.org/01cby8j38 Autonomous University of Madrid Madrilgo Unibertsitate Autonomoa Universidad Autónoma de Madrid Universidade Autónoma de Madrid Universitat Autònoma de Madrid'),
(112932, 'https://ror.org/04abv6630', 'en', 1, 'https://ror.org/04abv6630 Ludwig Boltzmann Institut für Krebsforschung Ludwig Boltzmann Institute for Cancer Research'),
(112933, 'https://ror.org/02p3et738', 'fr', 1, 'https://ror.org/02p3et738 Laboratoire Matériaux et Phénomènes Quantiques Laboratory Materials and Quantum Phenomena'),
(112934, 'https://ror.org/04bnnrk48', 'fr', 1, 'https://ror.org/04bnnrk48 Clinical Psychology, Psychopathology, Psychanalysis Laboratoire de psychologie clinique, psychopathologie, psychanalyse'),
(112935, 'https://ror.org/00ngq1v76', 'fr', 1, 'https://ror.org/00ngq1v76 French Research Institute on East Asia Institut FranƧais de Recherche sur l''Asie de l''Est'),
(112936, 'https://ror.org/00zay3w86', 'fr', 1, 'https://ror.org/00zay3w86 Centre de Nanosciences et de Nanotechnologies Centre for Nanoscience and Nanotechnology'),
(112937, 'https://ror.org/02ss0kx69', 'en', 1, 'https://ror.org/02ss0kx69 Kyung Hee University Dental Hospital ź²½ķ¬ėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(112938, 'https://ror.org/035enhp47', 'en', 1, 'https://ror.org/035enhp47 Korea Institute of Civil Engineering and Building Technology ķ•œźµ­ź±“ģ„¤źø°ģˆ ģ—°źµ¬ģ›'),
(112939, 'https://ror.org/0218kns11', 'fr', 1, 'https://ror.org/0218kns11 Centre Maurice Hauriou pour la Recherche en Droit Public'),
(112940, 'https://ror.org/01b346b72', 'en', 1, 'https://ror.org/01b346b72 Wonju Severance Christian Hospital ģ—°ģ„øėŒ€ķ•™źµ ģ›ģ£¼ģ„øėøŒėž€ģŠ¤źø°ė…ė³‘ģ›'),
(112941, 'https://ror.org/021ryxk89', 'fr', 1, 'https://ror.org/021ryxk89 Toxicologie, Pharmacologie et Signalisation Cellulaire Toxicology, Pharmacology and Cellular Signaling'),
(112942, 'https://ror.org/00atkzy28', 'en', 1, 'https://ror.org/00atkzy28 Vivekanand Arts Sardar Dalipsingh Commerce and Science College'),
(112943, 'https://ror.org/032q95r88', 'fr', 1, 'https://ror.org/032q95r88 Laboratoire de Recherche Vasculaire Translationnelle Laboratory for Vascular Translational Science'),
(112944, 'https://ror.org/03hkqjb05', 'fr', 1, 'https://ror.org/03hkqjb05 FƩdƩration de Recherche Interactions Fondamentales'),
(112945, 'https://ror.org/023yhem40', 'de', 1, 'https://ror.org/023yhem40 Materialprüfungsamt Nordrhein-Westfalen'),
(112946, 'https://ror.org/01bp6g914', 'en', 1, 'https://ror.org/01bp6g914 Suwon Research Institute ģˆ˜ģ›ģ‹œģ •ģ—°źµ¬ģ›'),
(112947, 'https://ror.org/02yv0b554', 'fr', 1, 'https://ror.org/02yv0b554 Centre d’Economie Industrielle - CERNA Centre for industrial economics - CERNA Mines Paris, PSL University, Centre for industrial economics (CERNA), i3 UMR9217 CNRS Mines Paris, UniversitĆ© PSL, Centre d’Economie Industrielle (CERNA), i3 UMR9217 CNRS'),
(112948, 'https://ror.org/00qrce505', 'en', 1, 'https://ror.org/00qrce505 Manila Doctors Hospital'),
(112949, 'https://ror.org/02dcqy320', 'fr', 1, 'https://ror.org/02dcqy320 HƓpital Robert-DebrƩ'),
(112950, 'https://ror.org/00ghmzn75', 'fr', 1, 'https://ror.org/00ghmzn75 Pharmacologie et Ʃvaluation thƩrapeutiques chez l''enfant et la femme enceinte'),
(112951, 'https://ror.org/03b0w5c07', 'fr', 1, 'https://ror.org/03b0w5c07 UnitƩ de Chimie et ProcƩdƩs'),
(112952, 'https://ror.org/04s80ef73', 'fr', 1, 'https://ror.org/04s80ef73 Laboratoire Informatique Paris Descartes'),
(112953, 'https://ror.org/023km2z79', 'fr', 1, 'https://ror.org/023km2z79 HƓpital de Vaugirard-Gabriel Pallez'),
(112954, 'https://ror.org/043mz5j54', 'en', 1, 'https://ror.org/043mz5j54 Universidad de California en San Francisco University of California, San Francisco UniversitƩ de Californie Ơ San Francisco'),
(112955, 'https://ror.org/05tn05n57', 'en', 1, 'https://ror.org/05tn05n57 Hanyang University Medical Center ķ•œģ–‘ėŒ€ķ•™źµģ˜ė£Œģ›'),
(112956, 'https://ror.org/008nkqk13', 'en', 1, 'https://ror.org/008nkqk13 Ministry of Trade, Industry and Energy ėŒ€ķ•œėÆ¼źµ­ ģ‚°ģ—…ķ†µģƒģžģ›ė¶€'),
(112957, 'https://ror.org/05x9xyq11', 'en', 1, 'https://ror.org/05x9xyq11 Kyung Hee University Hospital at Gangdong ź°•ė™ź²½ķ¬ėŒ€ķ•™źµė³‘ģ›'),
(112958, 'https://ror.org/022h0kb08', 'de', 1, 'https://ror.org/022h0kb08 Ozeaneum Stralsund'),
(112959, 'https://ror.org/03qgfy688', 'fr', 1, 'https://ror.org/03qgfy688 FƩdƩration Ile de France de recherche sur l''environnement'),
(112960, 'https://ror.org/026hc8342', 'en', 1, 'https://ror.org/026hc8342 North Lakhimpur University ą¦Øą§°ą§ą¦„ লখিমপুৰ ą¦•ą¦²ą§‡ą¦œ'),
(112961, 'https://ror.org/044dv9p07', 'fr', 1, 'https://ror.org/044dv9p07 Sommeil, vigilance, fatigue et santƩ publique'),
(112962, 'https://ror.org/00nbx9b54', 'fr', 1, 'https://ror.org/00nbx9b54 Institut des Sciences de la MƩcanique et Applications Industrielles'),
(112963, 'https://ror.org/01jem5q45', 'fr', 1, 'https://ror.org/01jem5q45 Alzheimer''s disease: markers & risk factors, interventions Maladie d''Alzheimer : marqueurs gƩnƩtiques et vasculaires, neuropsychologie'),
(112964, 'https://ror.org/05x6qqf62', 'es', 1, 'https://ror.org/05x6qqf62 Hospital Valle del Nalón'),
(112965, 'https://ror.org/04yk69421', 'fr', 1, 'https://ror.org/04yk69421 Fondation des pompiers du QuƩbec pour les grands brƻlƩs Quebec Firefighters Foundation for Burn Victims'),
(112966, 'https://ror.org/01v48vz24', 'fr', 1, 'https://ror.org/01v48vz24 Unité d''Informatique et d''Ingénierie des Systèmes'),
(112967, 'https://ror.org/03jyzk483', 'fr', 1, 'https://ror.org/03jyzk483 Beaujon Hospital HƓpital Beaujon'),
(112968, 'https://ror.org/036q0g587', 'en', 1, 'https://ror.org/036q0g587 Ocean Rosy ą¶•ą·‚ą¶±ą·Š ą¶»ą·ą·ƒą·’'),
(112969, 'https://ror.org/00z54nq84', 'fr', 1, 'https://ror.org/00z54nq84 Institut de Physique'),
(112970, 'https://ror.org/03yw66316', 'es', 1, 'https://ror.org/03yw66316 Hospital Universitario De CabueƱes'),
(112971, 'https://ror.org/03acp3c91', 'pt', 1, 'https://ror.org/03acp3c91 Unidade de Investigação e Desenvolvimento em Educação e Formação'),
(112972, 'https://ror.org/05grdyy37', 'en', 1, 'https://ror.org/05grdyy37 Amsterdam Universitair Medische Centra Amsterdam University Medical Centers'),
(112973, 'https://ror.org/03saykv37', 'fr', 1, 'https://ror.org/03saykv37 Laboratoire Vision Action Cognition'),
(112974, 'https://ror.org/03nr8xh07', 'fr', 1, 'https://ror.org/03nr8xh07 Laboratoire de Biologie Physico-Chimique des ProtƩines Membranaires Laboratory of Physical and Chemical Biology of Membrane Proteins'),
(112975, 'https://ror.org/0057kwj95', 'fr', 1, 'https://ror.org/0057kwj95 Laboratoire de Recherche sur les Cultures Anglophones'),
(112976, 'https://ror.org/05q65zh81', 'fr', 1, 'https://ror.org/05q65zh81 Chimie ParisTech Ɖcole nationale supĆ©rieure de chimie de Paris'),
(112977, 'https://ror.org/0113xme87', 'en', 1, 'https://ror.org/0113xme87 Korea Energy Economics Institute ģ—ė„ˆģ§€ź²½ģ œģ—°źµ¬ģ›'),
(112978, 'https://ror.org/05k0nvr25', 'fr', 1, 'https://ror.org/05k0nvr25 Centre d''Ɖtudes et d''Expertise sur les Risques, l''Environnement, la MobilitĆ© et l''AmĆ©nagement'),
(112979, 'https://ror.org/0572pak88', 'fr', 1, 'https://ror.org/0572pak88 Laboratoire de Psychologie et d’Ergonomie AppliquĆ©es'),
(112980, 'https://ror.org/0427ycx88', 'de', 1, 'https://ror.org/0427ycx88 H.W. & J. Hector Stiftung Hector-Stiftung'),
(112981, 'https://ror.org/01qbwqw52', 'en', 1, 'https://ror.org/01qbwqw52 Volyn Orthodox Theological Academy Š’Š¾Š»ŠøŠ½ŃŃŒŠŗŠ° ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Š° Š‘Š¾Š³Š¾ŃŠ»Š¾Š²ŃŃŒŠŗŠ° ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(112982, 'https://ror.org/03a84yw54', 'fr', 1, 'https://ror.org/03a84yw54 Centre d''Enseignement et de Recherche en Environnement AtmosphƩrique'),
(112983, 'https://ror.org/030reqw53', 'en', 1, 'https://ror.org/030reqw53 Goa University'),
(112984, 'https://ror.org/03wfagk22', 'fr', 1, 'https://ror.org/03wfagk22 Observatoire global du Saint-Laurent Observatoire global du Saint-Laurent (OGSL) St. Lawrence Global Observatory St. Lawrence Global Observatory (SLGO)'),
(112985, 'https://ror.org/015cqax60', 'fr', 1, 'https://ror.org/015cqax60 Biologie, Anthropologie, BiomƩtrie, EpigƩnƩtique, LignƩes : De la diversitƩ des populations Ơ l''individu, de l''identification Ơ l''identitƩ'),
(112986, 'https://ror.org/03qg6r976', 'en', 1, 'https://ror.org/03qg6r976 The Catholic University of Korea Catholic Medical Center ź°€ķ†Øė¦­ėŒ€ķ•™źµ ź°€ķ†Øė¦­ģ¤‘ģ•™ģ˜ė£Œģ› ź°€ķ†Øė¦­ģ¤‘ģ•™ģ˜ė£Œģ›'),
(112987, 'https://ror.org/053fp5c05', 'en', 1, 'https://ror.org/053fp5c05 Ewha Womans University ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ'),
(112988, 'https://ror.org/05wkw4386', 'nl', 1, 'https://ror.org/05wkw4386 Bryologische en Lichenologische Werkgroep Dutch Bryological and Lichenological Society'),
(112989, 'https://ror.org/046ak2485', 'de', 1, 'https://ror.org/046ak2485 Freie UniversitƤt Berlin'),
(112990, 'https://ror.org/057v1ah93', 'en', 1, 'https://ror.org/057v1ah93 MegaWatt Lasers MegaWatt Lasers (United States)'),
(112991, 'https://ror.org/02ezaf703', 'en', 1, 'https://ror.org/02ezaf703 The Catholic University of Korea Uijeongbu St. Mary''s Hospital ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ˜ģ •ė¶€ģ„±ėŖØė³‘ģ› ģ˜ģ •ė¶€ģ„±ėŖØė³‘ģ›'),
(112992, 'https://ror.org/01zhcy684', 'en', 1, 'https://ror.org/01zhcy684 Dr. Rajendra Gode Medical College and Hospital ą¤”ą„‰. ą¤°ą¤¾ą¤œą„‡ą¤‚ą¤¦ą„ą¤° ą¤—ą„‹ą¤”ą„‡ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ आणि ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²ą¤®ą¤§ą„ą¤Æą„‡'),
(112993, 'https://ror.org/05hvqzx20', 'fr', 1, 'https://ror.org/05hvqzx20 Microfluidique Physique et Bio-ingƩnierie Physical Microfluidics and Bioengineering'),
(112994, 'https://ror.org/01qtp1053', 'en', 1, 'https://ror.org/01qtp1053 Paris School of Economics Ɖcole d''Ɖconomie de Paris'),
(112995, 'https://ror.org/01g0hqq23', 'en', 1, 'https://ror.org/01g0hqq23 Institute of Information & Communications Technology Planning & Evaluation ģ •ė³“ķ†µģ‹ źø°ķšķ‰ź°€ģ›'),
(112996, 'https://ror.org/002v3cy83', 'fr', 1, 'https://ror.org/002v3cy83 PƓle de Recherche pour l''Organisation et la Diffusion de l''Information GƩographique'),
(112997, 'https://ror.org/01vbmek33', 'en', 1, 'https://ror.org/01vbmek33 Kyung Hee University Medical Center ź²½ķ¬ģ˜ė£Œģ›'),
(112998, 'https://ror.org/031fvk530', 'es', 1, 'https://ror.org/031fvk530 Secretaria de Educación del departamento del AtlÔntico'),
(112999, 'https://ror.org/02g4eyf83', 'fr', 1, 'https://ror.org/02g4eyf83 Plateformes mutualisƩes de l''Institut du mƩdicament'),
(113000, 'https://ror.org/001a78b43', 'en', 1, 'https://ror.org/001a78b43 Libyan Centre for Dental Research Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł„ŁŠŲØŁŠ لأبحاث Ų·ŲØ الأسنان'),
(113001, 'https://ror.org/03gc1p724', 'fr', 1, 'https://ror.org/03gc1p724 Laboratoire de Physique des 2 Infinis IrĆØne Joliot-Curie Laboratory of the Physics of the Two Infinities IrĆØne Joliot-Curie'),
(113002, 'https://ror.org/002fxfq97', 'fr', 1, 'https://ror.org/002fxfq97 Genomes and Cell Biology Diseases GƩnomes, biologie cellulaire et thƩrapeutiques'),
(113003, 'https://ror.org/01zkyzz15', 'fr', 1, 'https://ror.org/01zkyzz15 HƓpital Fernand-Widal'),
(113004, 'https://ror.org/02v5bgz72', 'fr', 1, 'https://ror.org/02v5bgz72 Groupe Hospitalier Cochin - Port-Royal, HƓtel-Dieu, Broca - La CollƩgiale'),
(113005, 'https://ror.org/032w6q449', 'fr', 1, 'https://ror.org/032w6q449 Laboratoire MatiĆØre et SystĆØmes Complexes'),
(113006, 'https://ror.org/05pf27s53', 'tr', 1, 'https://ror.org/05pf27s53 Alata BahƧe Kültürleri̇ Araştirma Ensti̇tüsü Müdürlüğü'),
(113007, 'https://ror.org/0146pps37', 'fr', 1, 'https://ror.org/0146pps37 Bretonneau Hospital HƓpital Bretonneau'),
(113008, 'https://ror.org/0298pes53', 'en', 1, 'https://ror.org/0298pes53 Korea Institute of Energy Research ķ•œźµ­ģ—ė„ˆģ§€źø°ģˆ ģ—°źµ¬ģ›'),
(113009, 'https://ror.org/0494zgc81', 'en', 1, 'https://ror.org/0494zgc81 Seoul National University Dental Hospital ģ„œģšøėŒ€ģ¹˜ź³¼ė³‘ģ› ģ„œģšøėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(113010, 'https://ror.org/0211bs523', 'en', 1, 'https://ror.org/0211bs523 Haldia Institute of Technology'),
(113011, 'https://ror.org/03cfem402', 'fr', 1, 'https://ror.org/03cfem402 Laboratoire des MultimatƩriaux et Interfaces'),
(113012, 'https://ror.org/04mg3nk07', 'en', 1, 'https://ror.org/04mg3nk07 San Diego Supercomputer Center'),
(113013, 'https://ror.org/00hby5j36', 'pt', 1, 'https://ror.org/00hby5j36 Hospital FelĆ­cio Rocho'),
(113014, 'https://ror.org/015meej47', 'es', 1, 'https://ror.org/015meej47 Centro Interdisciplinario de Investigaciones en TecnologĆ­as y Desarrollo Social para el NOA'),
(113015, 'https://ror.org/04ks5c429', 'no_lang_code', 1, 'https://ror.org/04ks5c429 Analytical Services & Materials (United States)'),
(113016, 'https://ror.org/05bz47575', 'fr', 1, 'https://ror.org/05bz47575 Lille Ɖconomie Management'),
(113017, 'https://ror.org/00cf0s038', 'en', 1, 'https://ror.org/00cf0s038 Loknete Vyankatrao Hiray Arts, Science and Commerce College'),
(113018, 'https://ror.org/02zvxtj67', 'id', 1, 'https://ror.org/02zvxtj67 Institut Teknologi Sains & Kesehatan dr. Soepraon'),
(113019, 'https://ror.org/019df2r84', 'fr', 1, 'https://ror.org/019df2r84 Structure et Dynamique des Langues'),
(113020, 'https://ror.org/02fv78a45', 'en', 1, 'https://ror.org/02fv78a45 Mother Teresa Women''s University ą®…ą®©ąÆą®©ąÆˆ ą®¤ąÆ†ą®°ą®šą®¾ ą®®ą®•ą®³ą®æą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(113021, 'https://ror.org/00vb8fc53', 'fr', 1, 'https://ror.org/00vb8fc53 Centre d''Analyse et de MathƩmatique Sociales'),
(113022, 'https://ror.org/02qmrb876', 'pt', 1, 'https://ror.org/02qmrb876 Centro Nacional de Competências dos Frutos Secos Associação'),
(113023, 'https://ror.org/0112cfy18', 'en', 1, 'https://ror.org/0112cfy18 Belarusian Trade-Economic University of Consumer Cooperation Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– ганГлёва-ŃŠŗŠ°Š½Š°Š¼Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ спажывецкай кааперацыі'),
(113024, 'https://ror.org/03bnma344', 'fr', 1, 'https://ror.org/03bnma344 Institut de Biologie Valrose Institute of Biology Valrose'),
(113025, 'https://ror.org/01ryrwk91', 'en', 1, 'https://ror.org/01ryrwk91 Autonomous University of Lisbon Universidade Autónoma de Lisboa'),
(113026, 'https://ror.org/01ja6ps71', 'en', 1, 'https://ror.org/01ja6ps71 Lifelines'),
(113027, 'https://ror.org/037ydha73', 'en', 1, 'https://ror.org/037ydha73 Hamburg Institute of International Economics Hamburgisches WeltWirtschafts Institut'),
(113028, 'https://ror.org/02q6fa122', 'fr', 1, 'https://ror.org/02q6fa122 Dynamics of Genetic Information: fundamental bases and cancer Dynamique de l''information gƩnƩtique : bases fondamentales et cancer'),
(113029, 'https://ror.org/00kcctq66', 'no_lang_code', 1, 'https://ror.org/00kcctq66 Saint Petersburg Pasteur Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии им. ŠŸŠ°ŃŃ‚ŠµŃ€Š°'),
(113030, 'https://ror.org/04r0rbk24', 'en', 1, 'https://ror.org/04r0rbk24 Tarumanagara University'),
(113031, 'https://ror.org/02bwcre44', 'pt', 1, 'https://ror.org/02bwcre44 Centro de Investigação em Educação'),
(113032, 'https://ror.org/00bvnqh62', 'pt', 1, 'https://ror.org/00bvnqh62 Camara Municipal Oeiras'),
(113033, 'https://ror.org/04c6fdf96', 'en', 1, 'https://ror.org/04c6fdf96 Luxembourg Centre for Socio-Environmental Systems'),
(113034, 'https://ror.org/00nthx533', 'en', 1, 'https://ror.org/00nthx533 Geological Survey of India ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤­ą„‚ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤øą¤°ą„ą¤µą„‡ą¤•ą„ą¤·ą¤£'),
(113035, 'https://ror.org/009kyk389', 'pt', 1, 'https://ror.org/009kyk389 Cooperativa de Ensino PolitƩcnico'),
(113036, 'https://ror.org/0442zbe52', 'pt', 1, 'https://ror.org/0442zbe52 Universidade da Madeira University of Madeira'),
(113037, 'https://ror.org/05f0cz467', 'de', 1, 'https://ror.org/05f0cz467 Garmisch-Partenkirchen Medical Center Klinikum Garmisch-Partenkirchen'),
(113038, 'https://ror.org/04xxs0n60', 'es', 1, 'https://ror.org/04xxs0n60 Universidad Bicentenaria de Aragua'),
(113039, 'https://ror.org/027790w81', 'en', 1, 'https://ror.org/027790w81 Open Data Commons for Spinal Cord Injury'),
(113040, 'https://ror.org/00j54wy13', 'en', 1, 'https://ror.org/00j54wy13 Instituut voor Natuur- en Bosonderzoek Research Institute for Nature and Forest'),
(113041, 'https://ror.org/03t1ztz45', 'no_lang_code', 1, 'https://ror.org/03t1ztz45 Shibuya (Japan)'),
(113042, 'https://ror.org/05axyfr89', 'it', 1, 'https://ror.org/05axyfr89 Terre Biologiche Veronesi'),
(113043, 'https://ror.org/03s0gj002', 'fr', 1, 'https://ror.org/03s0gj002 Centre de Recherche en MathƩmatiques de la DƩcision Research Centre in Mathematics of Decision'),
(113044, 'https://ror.org/02y0gk295', 'fr', 1, 'https://ror.org/02y0gk295 Centre de Recherche sur les Ions, les MatƩriaux et la Photonique'),
(113045, 'https://ror.org/0534xv275', 'fr', 1, 'https://ror.org/0534xv275 Institut LƩon Duguit'),
(113046, 'https://ror.org/042cmhf85', 'no_lang_code', 1, 'https://ror.org/042cmhf85 Susteon Inc. Susteon Inc. (United States)'),
(113047, 'https://ror.org/01j10y640', 'pt', 1, 'https://ror.org/01j10y640 Quadrantes Clínica Médica e Diagnóstico (Portugal) Quadrantes Medical Clinic and Diagnostics Sole Proprietorship'),
(113048, 'https://ror.org/017epgn33', 'no_lang_code', 1, 'https://ror.org/017epgn33 Ambiente Italia (Italy)'),
(113049, 'https://ror.org/042ga5208', 'es', 1, 'https://ror.org/042ga5208 Las Campanas Observatory'),
(113050, 'https://ror.org/04nzv4p86', 'it', 1, 'https://ror.org/04nzv4p86 Ospedale San Luigi Gonzaga'),
(113051, 'https://ror.org/03jdg7625', 'fr', 1, 'https://ror.org/03jdg7625 Institut des Sciences Sociales du Politique'),
(113052, 'https://ror.org/03rrfzx46', 'de', 1, 'https://ror.org/03rrfzx46 Allgemeine Unfallversicherungsanstalt'),
(113053, 'https://ror.org/00q4sx826', 'en', 1, 'https://ror.org/00q4sx826 Office of the Secretary of Defense'),
(113054, 'https://ror.org/03x8fem72', 'fr', 1, 'https://ror.org/03x8fem72 Laboratoire Image, Ville, Environnement Laboratory Image, City, Environment'),
(113055, 'https://ror.org/04bagh120', 'en', 1, 'https://ror.org/04bagh120 Saint George Hospital'),
(113056, 'https://ror.org/025cgtr67', 'pt', 1, 'https://ror.org/025cgtr67 Direcção-Geral dos Assuntos Europeus'),
(113057, 'https://ror.org/0233m9s16', 'en', 1, 'https://ror.org/0233m9s16 Moscow Regional Scientific Research Clinical Institute. MF Vladimirsky'),
(113058, 'https://ror.org/0537w4188', 'en', 1, 'https://ror.org/0537w4188 Community Health Systems - Eastern New Mexico Medical Center'),
(113059, 'https://ror.org/0220mac09', 'es', 1, 'https://ror.org/0220mac09 Instituto Superior Tecnologico Ciudad de Valencia'),
(113060, 'https://ror.org/01w423a47', 'en', 1, 'https://ror.org/01w423a47 Tomsk State University of Architecture and Building Томский Š³Š¾ŃŃƒŠ“арственный Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(113061, 'https://ror.org/04m0y5921', 'en', 1, 'https://ror.org/04m0y5921 Candid'),
(113062, 'https://ror.org/04jmcwc90', 'en', 1, 'https://ror.org/04jmcwc90 Newcastle College'),
(113063, 'https://ror.org/04q2jes40', 'en', 1, 'https://ror.org/04q2jes40 University of Petroleum and Energy Studies ą¤Ŗą„‡ą¤Ÿą„ą¤°ą„‹ą¤²ą¤æą¤Æą¤® और ą¤Šą¤°ą„ą¤œą¤¾ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(113064, 'https://ror.org/059ycz158', 'id', 1, 'https://ror.org/059ycz158 Universitas Islam Balitar'),
(113065, 'https://ror.org/02d19mr69', 'fr', 1, 'https://ror.org/02d19mr69 Centre de recherches sur la pensƩe antique Centre for the Study of Ancient Thought Centro di ricerca sul pensiero antico'),
(113066, 'https://ror.org/05vd6h165', 'fr', 0, 'https://ror.org/05vd6h165 Laboratoire des BiomolƩcules'),
(113067, 'https://ror.org/053sj8m08', 'en', 1, 'https://ror.org/053sj8m08 Kenyatta National Hospital'),
(113068, 'https://ror.org/041ctrc20', 'fr', 1, 'https://ror.org/041ctrc20 Centre de droit comparƩ du travail et de la sƩcuritƩ sociale'),
(113069, 'https://ror.org/05kqjh845', 'en', 1, 'https://ror.org/05kqjh845 Smt. Kashibai Navale Medical College and General hospital'),
(113070, 'https://ror.org/01t3zke88', 'en', 1, 'https://ror.org/01t3zke88 German Institute of Development and Sustainability'),
(113071, 'https://ror.org/015cafh73', 'no_lang_code', 1, 'https://ror.org/015cafh73 Taisei (Japan) å¤§ęˆå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(113072, 'https://ror.org/058z3vf87', 'fr', 1, 'https://ror.org/058z3vf87 Gulliver'),
(113073, 'https://ror.org/03fh6pa75', 'en', 1, 'https://ror.org/03fh6pa75 ERATOSTHENES Centre of Excellence'),
(113074, 'https://ror.org/036j0y719', 'fr', 1, 'https://ror.org/036j0y719 Laboratoire Angevin de Recherche en MathƩmatiques'),
(113075, 'https://ror.org/04qx1zg28', 'en', 1, 'https://ror.org/04qx1zg28 Redeemer University'),
(113076, 'https://ror.org/041r66s68', 'en', 1, 'https://ror.org/041r66s68 Moscow State Academy of Veterinary Medicine and Biotechnology named after Skryabin ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ветеринарной меГицины Šø биотехнологии имени К. И. Š”ŠŗŃ€ŃŠ±ŠøŠ½Š°'),
(113077, 'https://ror.org/032dee662', 'en', 0, 'https://ror.org/032dee662 Southern District Health Board'),
(113078, 'https://ror.org/02nmynt66', 'en', 1, 'https://ror.org/02nmynt66 Colombian Air Force Fuerza AƩrea Colombiana'),
(113079, 'https://ror.org/020ww2871', 'es', 1, 'https://ror.org/020ww2871 Fundación El Caño'),
(113080, 'https://ror.org/02h65ph65', 'id', 1, 'https://ror.org/02h65ph65 Institut Bisnis dan Informatika Kesatuan'),
(113081, 'https://ror.org/03p74y353', 'fr', 1, 'https://ror.org/03p74y353 Center of business law and management Centre de Droit des Affaires et de Gestion'),
(113082, 'https://ror.org/00gj2kk32', 'en', 1, 'https://ror.org/00gj2kk32 Russian New University'),
(113083, 'https://ror.org/02x8nxk82', 'en', 1, 'https://ror.org/02x8nxk82 St. Joseph College of Teacher Education for Women, Ernakulam'),
(113084, 'https://ror.org/02vcext89', 'fr', 1, 'https://ror.org/02vcext89 Institut de Recherche en Droit des Affaires et du Patrimoine'),
(113085, 'https://ror.org/01abtgj51', 'en', 1, 'https://ror.org/01abtgj51 Gandhigram Rural Institute ą¤—ą„ą¤°ą¤¾ą¤ą¤§ą„€ą¤—ą„ą¤°ą¤¾ą¤® ą¤—ą„ą¤°ą¤¾ą¤®ą„€ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®•ą®¾ą®ØąÆą®¤ą®æ ą®•ą®æą®°ą®¾ą®®ą®®ąÆ ą®•ą®æą®°ą®¾ą®®ą®æą®Æą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“—ą“¾ą“Øąµą“§ą“æą“—ąµą“°ą“¾ą“‚ ą“•ą“²ąµą“Ŗą“æą“¤ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(113086, 'https://ror.org/03yvmd717', 'en', 1, 'https://ror.org/03yvmd717 Beijing Aier Eye Hospital åŒ—äŗ¬ēˆ±å°”ēœ¼ē§‘åŒ»é™¢'),
(113087, 'https://ror.org/04bthcb08', 'en', 1, 'https://ror.org/04bthcb08 La Roche College'),
(113088, 'https://ror.org/04916qv51', 'fr', 1, 'https://ror.org/04916qv51 Immuno-RƩgulation des Maladies Auto- immunes Inflammatoires et Cancer'),
(113089, 'https://ror.org/020kg7297', 'no_lang_code', 1, 'https://ror.org/020kg7297 Kolej Poly-Tech MARA'),
(113090, 'https://ror.org/02xrayj16', 'fr', 1, 'https://ror.org/02xrayj16 Institut Pluridisciplinaire de Recherche AppliquƩe Multidisciplinary Institute for Applied Research'),
(113091, 'https://ror.org/04p7gsa29', 'fr', 1, 'https://ror.org/04p7gsa29 Laboratoire ICT'),
(113092, 'https://ror.org/00ywn4q28', 'en', 1, 'https://ror.org/00ywn4q28 University of Technology and Applied Sciences, Muscat Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(113093, 'https://ror.org/030zqsq57', 'id', 1, 'https://ror.org/030zqsq57 Universitas Duta Bangsa'),
(113094, 'https://ror.org/04ahza989', 'fr', 1, 'https://ror.org/04ahza989 CItƩs, Territoires, Environnement et SociƩtƩs'),
(113095, 'https://ror.org/04hcp2x16', 'en', 1, 'https://ror.org/04hcp2x16 Casa de Thomas Mann Thomas Mann House Thomas-Mann-Haus'),
(113096, 'https://ror.org/03dx11k66', 'en', 1, 'https://ror.org/03dx11k66 Deutsches Zentrum für Lungenforschung German Center for Lung Research'),
(113097, 'https://ror.org/04s1kgp90', 'es', 1, 'https://ror.org/04s1kgp90 Clinica Santa Maria'),
(113098, 'https://ror.org/02m0hy518', 'fr', 1, 'https://ror.org/02m0hy518 Laboratoire d''Ʃtudes sur les monothƩismes'),
(113099, 'https://ror.org/033d95m27', 'fr', 1, 'https://ror.org/033d95m27 Centre d''Ʃtudes sur la sƩcuritƩ internationale et les coopƩrations europƩennes'),
(113100, 'https://ror.org/05a795p68', 'fr', 1, 'https://ror.org/05a795p68 Langues, textes, arts et cultures du monde anglophone PRISMES - Langues, Textes, Arts et Cultures du Monde Anglophone'),
(113101, 'https://ror.org/03cv38k47', 'en', 1, 'https://ror.org/03cv38k47 Universitair Medisch Centrum Groningen University Medical Center Groningen'),
(113102, 'https://ror.org/055a87x75', 'fr', 1, 'https://ror.org/055a87x75 Ministerium für Forschung und Hochschulwesen Ministry of Research and Higher Education Ministère de l''Enseignement Supérieur et de la Recherche Ministère fir Fuerschung an Héichschoul'),
(113103, 'https://ror.org/03f1ndh49', 'es', 1, 'https://ror.org/03f1ndh49 ECORFAN ECORFAN-MƩxico, S.C.'),
(113104, 'https://ror.org/03fcd2w52', 'pt', 1, 'https://ror.org/03fcd2w52 Sociedade Nacional de Belas-Artes'),
(113105, 'https://ror.org/02h67zw08', 'en', 1, 'https://ror.org/02h67zw08 Breast Center'),
(113106, 'https://ror.org/01vrxpt40', 'fr', 1, 'https://ror.org/01vrxpt40 Laboratoire de MƩcanique, ModƩlisation & ProcƩdƩs Propres'),
(113107, 'https://ror.org/02ck5yd04', 'en', 1, 'https://ror.org/02ck5yd04 University of Ghardaia Ų¬Ų§Ł…Ų¹Ų© غرداية'),
(113108, 'https://ror.org/02xq0x374', 'fr', 1, 'https://ror.org/02xq0x374 Institut de Recherche en Horticulture et Semences Institute of Research in Horticulture and Seeds'),
(113109, 'https://ror.org/002b35466', 'pt', 1, 'https://ror.org/002b35466 Hospital CĆ¢ndido de Figueiredo Tondela'),
(113110, 'https://ror.org/04hke8425', 'fr', 1, 'https://ror.org/04hke8425 Laboratoire de Biologie du DƩveloppement de Villefranche-sur-Mer Villefranche-sur-mer Developmental Biology Laboratory'),
(113111, 'https://ror.org/04hbf9s48', 'es', 1, 'https://ror.org/04hbf9s48 Instituto Cardiovascular de Puebla'),
(113112, 'https://ror.org/05je3gn27', 'pt', 1, 'https://ror.org/05je3gn27 Centro UniversitƔrio do Rio Grande do Norte'),
(113113, 'https://ror.org/0316yyd15', 'fr', 1, 'https://ror.org/0316yyd15 Centre de Recherche en AmĆ©nagement du Territoire Territory Planning Research Center Ł…Ų±ŁƒŲ² البحث في ŲŖŁ‡ŁŠŲ¦Ų© Ų§Ł„Ų„Ł‚Ł„ŁŠŁ…'),
(113114, 'https://ror.org/032d3jq51', 'en', 0, 'https://ror.org/032d3jq51 Waikato District Health Board'),
(113115, 'https://ror.org/00p574j49', 'hr', 1, 'https://ror.org/00p574j49 Institut za filozofiju Institute of Philosophy'),
(113116, 'https://ror.org/01cpasf18', 'en', 1, 'https://ror.org/01cpasf18 Centre for Professional and Advanced Studies'),
(113117, 'https://ror.org/01tck1990', 'en', 1, 'https://ror.org/01tck1990 The Catholic University of Korea Daejeon St. Mary''s Hospital ź°€ķ†Øė¦­ėŒ€ķ•™źµ ėŒ€ģ „ģ„±ėŖØė³‘ģ› ėŒ€ģ „ģ„±ėŖØė³‘ģ›'),
(113118, 'https://ror.org/041hj9n89', 'en', 1, 'https://ror.org/041hj9n89 Community Health Systems - Northwest Medical Center'),
(113119, 'https://ror.org/05qjp8n74', 'id', 1, 'https://ror.org/05qjp8n74 Universitas Islam Majapahit'),
(113120, 'https://ror.org/03kqdja62', 'en', 1, 'https://ror.org/03kqdja62 Institut de Vector Vector Institute'),
(113121, 'https://ror.org/059tg9x58', 'pt', 1, 'https://ror.org/059tg9x58 PolĆ­cia Militar do Distrito Federal'),
(113122, 'https://ror.org/022mtcz62', 'en', 1, 'https://ror.org/022mtcz62 Melbourne Centre for Nanofabrication'),
(113123, 'https://ror.org/02m9cs548', 'fr', 1, 'https://ror.org/02m9cs548 Laboratoire de RƩactivitƩ et Chimie des Solides'),
(113124, 'https://ror.org/01mhzrb93', 'it', 1, 'https://ror.org/01mhzrb93 Fondazione Ricerca Molinette'),
(113125, 'https://ror.org/05fcmfe52', 'nl', 1, 'https://ror.org/05fcmfe52 Frisian Academy Fryske Akademy'),
(113126, 'https://ror.org/05hqp1023', 'pt', 1, 'https://ror.org/05hqp1023 Centro de QuĆ­mica Estrutural'),
(113127, 'https://ror.org/025bzyx94', 'fr', 1, 'https://ror.org/025bzyx94 Centre de Recherches sur les Arts et le Langage'),
(113128, 'https://ror.org/01pck1v11', 'en', 1, 'https://ror.org/01pck1v11 Community Health Systems - Physicians Regional Healthcare System - North'),
(113129, 'https://ror.org/03e835785', 'fr', 1, 'https://ror.org/03e835785 Centre de Recherches et d''Etudes Administratives de Montpellier'),
(113130, 'https://ror.org/0583jne22', 'en', 1, 'https://ror.org/0583jne22 Northwest Research Associates'),
(113131, 'https://ror.org/015g99884', 'es', 1, 'https://ror.org/015g99884 Instituto Tecnológico y de Energías Renovables'),
(113132, 'https://ror.org/04dw1bf40', 'en', 1, 'https://ror.org/04dw1bf40 Mount Desert Island Biological Laboratory'),
(113133, 'https://ror.org/05svbdb13', 'en', 1, 'https://ror.org/05svbdb13 Community Health Systems - Willow Creek Women''s Hospital'),
(113134, 'https://ror.org/045vgz384', 'en', 1, 'https://ror.org/045vgz384 Government of Netherlands Nederlandse Regering'),
(113135, 'https://ror.org/02wp0qa11', 'fr', 1, 'https://ror.org/02wp0qa11 Institut de Droit ComparƩs'),
(113136, 'https://ror.org/045f8jj92', 'en', 1, 'https://ror.org/045f8jj92 Oxford Archaeology'),
(113137, 'https://ror.org/04k20kq32', 'en', 1, 'https://ror.org/04k20kq32 University of Manara Ų¬Ų§Ł…Ų¹Ų© المنارة'),
(113138, 'https://ror.org/01qm1tk92', 'fr', 1, 'https://ror.org/01qm1tk92 Centre de Recherches Sociologiques sur le Droit et les Institutions PƩnales'),
(113139, 'https://ror.org/0530svb92', 'fr', 1, 'https://ror.org/0530svb92 Centre de Recherche sur l’Entreprise, les Organisations et le Patrimoine'),
(113140, 'https://ror.org/01e5mc968', 'is', 1, 'https://ror.org/01e5mc968 TƦknisetur IceTec'),
(113141, 'https://ror.org/02s544062', 'pt', 1, 'https://ror.org/02s544062 Centro UniversitÔrio Dr. Leão Sampaio - Unileão'),
(113142, 'https://ror.org/02gezhp66', 'en', 1, 'https://ror.org/02gezhp66 BoRdeaux Institute of onCology'),
(113143, 'https://ror.org/024en4403', 'en', 1, 'https://ror.org/024en4403 London Women''s Clinic'),
(113144, 'https://ror.org/0117ya949', 'en', 1, 'https://ror.org/0117ya949 AATC (Poland)'),
(113145, 'https://ror.org/012c5zp65', 'en', 1, 'https://ror.org/012c5zp65 Marine Fisheries Academy'),
(113146, 'https://ror.org/04dbzz632', 'fr', 1, 'https://ror.org/04dbzz632 Institut NƩel'),
(113147, 'https://ror.org/00jb20a14', 'fr', 1, 'https://ror.org/00jb20a14 Laboratoire Interfaces et SystĆØmes Ɖlectrochimiques'),
(113148, 'https://ror.org/0248ps908', 'pt', 1, 'https://ror.org/0248ps908 Centro Hospitalar PsiquiƔtrico de Coimbra'),
(113149, 'https://ror.org/05rqwc876', 'en', 1, 'https://ror.org/05rqwc876 Cognitive & Affective Sciences Laboratory Sciences Cognitives et Sciences Affectives'),
(113150, 'https://ror.org/00jbh1622', 'en', 1, 'https://ror.org/00jbh1622 Pemerintah Kabupaten Trenggalek Regional Government of Trenggalek'),
(113151, 'https://ror.org/00sad8321', 'fr', 1, 'https://ror.org/00sad8321 Centre d''Ɖcologie et des Sciences de la Conservation'),
(113152, 'https://ror.org/030mz2444', 'pl', 1, 'https://ror.org/030mz2444 University of the National Education Commission, Krakow Uniwersytet Komisji Edukacji Narodowej w Krakowie'),
(113153, 'https://ror.org/01qj7t912', 'en', 1, 'https://ror.org/01qj7t912 Polymer Research Institute ŠŠ˜Š˜ полимеров'),
(113154, 'https://ror.org/01hmrqc81', 'de', 1, 'https://ror.org/01hmrqc81 CiS Forschungsinstitut für Mikrosensorik GmbH'),
(113155, 'https://ror.org/022fhzr29', 'en', 1, 'https://ror.org/022fhzr29 Arizona Research Center'),
(113156, 'https://ror.org/03g66yt05', 'en', 1, 'https://ror.org/03g66yt05 Albany Medical College'),
(113157, 'https://ror.org/01ja5aj48', 'fr', 1, 'https://ror.org/01ja5aj48 Histoire, ArchƩologie et LittƩrature des Mondes Anciens'),
(113158, 'https://ror.org/01nre9703', 'fr', 1, 'https://ror.org/01nre9703 Naval Hydrographic and Oceanographic Service Service Hydrographique et OcƩanographique de la Marine'),
(113159, 'https://ror.org/032j53342', 'fr', 1, 'https://ror.org/032j53342 Institut Interdisciplinaire de Neuroscience Interdisciplinary Institute for NeuroScience'),
(113160, 'https://ror.org/04nvpdc40', 'es', 1, 'https://ror.org/04nvpdc40 Fundación Chile'),
(113161, 'https://ror.org/04nfxh820', 'en', 1, 'https://ror.org/04nfxh820 Bannu Medical College ŲØŁ†ŁˆŚŗ طبی کالج ŲÆ ŲØŁ†Łˆ Ų·ŲØ Ł¾ŁˆŁ‡Ł†ŚŪŒ'),
(113162, 'https://ror.org/01gsxb553', 'en', 1, 'https://ror.org/01gsxb553 Kaimosi Friends University'),
(113163, 'https://ror.org/05vb5nm66', 'fr', 1, 'https://ror.org/05vb5nm66 PhysioPathologie des Adaptations Nutritionnelles'),
(113164, 'https://ror.org/01nv2xf68', 'ca', 1, 'https://ror.org/01nv2xf68 Ajuntament de L’Hospitalet Hospitalet de Llobregat City Council'),
(113165, 'https://ror.org/049dv9r08', 'pt', 1, 'https://ror.org/049dv9r08 Centro de Estudos Jurídicos Económicos e Ambientais'),
(113166, 'https://ror.org/009a00p22', 'fr', 1, 'https://ror.org/009a00p22 Laboratoire de psychologie'),
(113167, 'https://ror.org/04yz7zm93', 'en', 1, 'https://ror.org/04yz7zm93 Egyptian Meteorological Authority'),
(113168, 'https://ror.org/04ydm6b24', 'en', 1, 'https://ror.org/04ydm6b24 Carmel College of Arts, Science and Commerce for Women'),
(113169, 'https://ror.org/04wa91k02', 'en', 1, 'https://ror.org/04wa91k02 Kuban State Medical University Кубанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(113170, 'https://ror.org/00yzwgc71', 'en', 1, 'https://ror.org/00yzwgc71 Southern California Coastal Water Research Project'),
(113171, 'https://ror.org/05pcvkk42', 'de', 1, 'https://ror.org/05pcvkk42 Fachverband für Stahlenschutz'),
(113172, 'https://ror.org/026p10446', 'fr', 1, 'https://ror.org/026p10446 Droit, religion, entreprise et sociƩtƩ'),
(113173, 'https://ror.org/04wacmk20', 'no_lang_code', 1, 'https://ror.org/04wacmk20 Kuwait Petroleum Corporation (Kuwait) Ł…Ų¤Ų³Ų³Ų© Ų§Ł„ŲØŲŖŲ±ŁˆŁ„ Ų§Ł„ŁƒŁˆŁŠŲŖŁŠŲ©'),
(113174, 'https://ror.org/029tse032', 'en', 1, 'https://ror.org/029tse032 Community Health Systems - Northwest Women''s Center'),
(113175, 'https://ror.org/05v0e5774', 'en', 1, 'https://ror.org/05v0e5774 Piedmont Reference Center for Epidemiology and Cancer Prevention'),
(113176, 'https://ror.org/041kv7j07', 'en', 1, 'https://ror.org/041kv7j07 TechYourFuture'),
(113177, 'https://ror.org/0402nwp88', 'en', 1, 'https://ror.org/0402nwp88 Community Health Systems - Tennova LaFollette'),
(113178, 'https://ror.org/030n6z794', 'en', 1, 'https://ror.org/030n6z794 Aerospace Technology Institute'),
(113179, 'https://ror.org/03eg72e39', 'en', 1, 'https://ror.org/03eg72e39 Tochigi Cancer Center ę ƒęœØēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼');
INSERT INTO `rors` VALUES
(113180, 'https://ror.org/01sp9jb48', 'fr', 1, 'https://ror.org/01sp9jb48 Laboratoire d''Etude et de Recherche sur le MatƩriau Bois'),
(113181, 'https://ror.org/03xg8m734', 'fr', 1, 'https://ror.org/03xg8m734 Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux'),
(113182, 'https://ror.org/03kyen796', 'en', 1, 'https://ror.org/03kyen796 Academia Forțelor Terestre Nicolae Bălcescu Nicolae Bălcescu Land Forces Academy'),
(113183, 'https://ror.org/01nk1fd81', 'en', 1, 'https://ror.org/01nk1fd81 Metrovet Metrovet Consultants Ltd'),
(113184, 'https://ror.org/05mq65528', 'en', 1, 'https://ror.org/05mq65528 Fundación MD Anderson Cancer Center España MD Anderson Cancer Center Madrid'),
(113185, 'https://ror.org/04pfr1b11', 'fr', 1, 'https://ror.org/04pfr1b11 European Institute for Marine Studies Institut Universitaire EuropƩen de la Mer'),
(113186, 'https://ror.org/02dvs1389', 'en', 1, 'https://ror.org/02dvs1389 Laiko General Hospital of Athens'),
(113187, 'https://ror.org/02gtrqv93', 'de', 1, 'https://ror.org/02gtrqv93 Physikalisch-Meteorologisches Observatorium Davos'),
(113188, 'https://ror.org/000ehr937', 'fr', 1, 'https://ror.org/000ehr937 Laboratoire de MƩtƩorologie Dynamique'),
(113189, 'https://ror.org/04y8met08', 'nl', 1, 'https://ror.org/04y8met08 Dutch Brain Foundation Hersenstichting'),
(113190, 'https://ror.org/011zjcv36', 'de', 1, 'https://ror.org/011zjcv36 Unfallkrankenhaus Berlin'),
(113191, 'https://ror.org/02zctvr17', 'en', 1, 'https://ror.org/02zctvr17 Nalut University'),
(113192, 'https://ror.org/006dmc180', 'en', 1, 'https://ror.org/006dmc180 Joint Institute for VLBI ERIC'),
(113193, 'https://ror.org/0538xdp23', 'nl', 0, 'https://ror.org/0538xdp23 Departement Werk en Sociale Economie Department of Work and Social Economy'),
(113194, 'https://ror.org/05tb4mb78', 'fr', 1, 'https://ror.org/05tb4mb78 Laboratoire d''ArchƩologie MƩdiƩvale et Moderne en MƩditerranƩe'),
(113195, 'https://ror.org/01g3mb532', 'fr', 1, 'https://ror.org/01g3mb532 Hubert Curien Pluridisciplinary Institute Institut Pluridisciplinaire Hubert Curien'),
(113196, 'https://ror.org/04rrzfd14', 'fr', 1, 'https://ror.org/04rrzfd14 Laboratoire ModƩlisation et Simulation Multi-Echelle'),
(113197, 'https://ror.org/0538k6829', 'fr', 1, 'https://ror.org/0538k6829 Laboratoire Culture, Sport, SantƩ, SociƩtƩ'),
(113198, 'https://ror.org/03jhs6a31', 'en', 1, 'https://ror.org/03jhs6a31 Institute for Community Living'),
(113199, 'https://ror.org/04h670p07', 'de', 1, 'https://ror.org/04h670p07 UniversitƤre Psychiatrische Dienste Bern'),
(113200, 'https://ror.org/03w0a9c02', 'fr', 0, 'https://ror.org/03w0a9c02 Laboratoire Bio-peroxIL'),
(113201, 'https://ror.org/011tj4033', 'pt', 1, 'https://ror.org/011tj4033 Universidade Candido Mendes'),
(113202, 'https://ror.org/05eqpgf47', 'pt', 1, 'https://ror.org/05eqpgf47 Unidade Local de Saúde do Médio Tejo'),
(113203, 'https://ror.org/00zq17821', 'en', 1, 'https://ror.org/00zq17821 General Hospital of Athens G. Genimatas'),
(113204, 'https://ror.org/04mmwtv34', 'de', 1, 'https://ror.org/04mmwtv34 Gesellschaft für Politikdidaktik und politische Jugend- und Erwachsenenbildung'),
(113205, 'https://ror.org/00n8yb347', 'en', 1, 'https://ror.org/00n8yb347 Bệnh viện Chợ Rįŗ«y Cho Ray Hospital'),
(113206, 'https://ror.org/00z0af360', 'fr', 1, 'https://ror.org/00z0af360 Laboratoire de MƩdiƩvistique Occidentale de Paris'),
(113207, 'https://ror.org/006hw0e16', 'pt', 1, 'https://ror.org/006hw0e16 Trivalor SGPS (Portugal)'),
(113208, 'https://ror.org/024yfzm72', 'en', 1, 'https://ror.org/024yfzm72 National University of Jujuy Universidad Nacional de Jujuy'),
(113209, 'https://ror.org/00ae7xs76', 'fr', 1, 'https://ror.org/00ae7xs76 LEME : Laboratoire EnergƩtique MƩcanique ElectromagnƩtisme Laboratoire ƩnergƩtique mƩcanique ƩlectromagnƩtisme'),
(113210, 'https://ror.org/05a6c8567', 'es', 1, 'https://ror.org/05a6c8567 Instituto de GeografĆ­a Romualdo Ardissone'),
(113211, 'https://ror.org/04nhm0g90', 'fr', 1, 'https://ror.org/04nhm0g90 Centre Muraz'),
(113212, 'https://ror.org/03nhjhr13', 'id', 1, 'https://ror.org/03nhjhr13 Universitas Ekasakti'),
(113213, 'https://ror.org/031xg0236', 'fr', 1, 'https://ror.org/031xg0236 Virologie et Pathologies Humaines Virology and Human Pathology'),
(113214, 'https://ror.org/01020cw43', 'en', 1, 'https://ror.org/01020cw43 ASTRA - Anti-Trafficking Action АДТРА - ŠŠŗŃ†ŠøŃ˜Š° против трговине Ń™ŃƒŠ“ŠøŠ¼Š°'),
(113215, 'https://ror.org/031xy6s33', 'pl', 1, 'https://ror.org/031xy6s33 Institute of Rural Health Instytut Medycyny Wsi im. Witolda ChodÅŗki'),
(113216, 'https://ror.org/035fsmk47', 'fr', 1, 'https://ror.org/035fsmk47 ISG Business School Institut Superieur de Gestion'),
(113217, 'https://ror.org/05s259e10', 'en', 1, 'https://ror.org/05s259e10 Tashkent Pediatric Medical Institute'),
(113218, 'https://ror.org/02fv52296', 'no_lang_code', 1, 'https://ror.org/02fv52296 Micron (United States)'),
(113219, 'https://ror.org/01e0stw12', 'en', 1, 'https://ror.org/01e0stw12 Universitatea de Vest Vasile Goldiș din Arad Vasile Goldis Western University of Arad'),
(113220, 'https://ror.org/042k2q423', 'pt', 1, 'https://ror.org/042k2q423 Catholic University of Salvador Universidade Católica de Salvador Universidade Católica do Salvador'),
(113221, 'https://ror.org/036h9st94', 'en', 1, 'https://ror.org/036h9st94 St Savas Hospital'),
(113222, 'https://ror.org/05jvg6713', 'no_lang_code', 1, 'https://ror.org/05jvg6713 Hollister (United States)'),
(113223, 'https://ror.org/0511qfq70', 'fr', 1, 'https://ror.org/0511qfq70 Centre de Recherches Interdisciplinaires et Transculturelles'),
(113224, 'https://ror.org/033eqsk67', 'fr', 1, 'https://ror.org/033eqsk67 Sciences, Normes, DƩmocratie'),
(113225, 'https://ror.org/02t1cke57', 'fr', 1, 'https://ror.org/02t1cke57 Laboratoire de Photochimie et d''IngƩnierie MacromolƩculaire'),
(113226, 'https://ror.org/03g5gja16', 'id', 1, 'https://ror.org/03g5gja16 Universitas Jayabaya'),
(113227, 'https://ror.org/04k3bmm60', 'en', 1, 'https://ror.org/04k3bmm60 Thanh Hoa University of Culture, Sports and Tourism TrĘ°į»ng ĐẔi hį»c Văn hóa, Thể thao vĆ  Du lịch Thanh Hóa'),
(113228, 'https://ror.org/04k41b912', 'en', 0, 'https://ror.org/04k41b912 SENS Research Foundation'),
(113229, 'https://ror.org/00tystp70', 'en', 1, 'https://ror.org/00tystp70 Narodowy Bank Polski National Bank of Poland'),
(113230, 'https://ror.org/04gabpx79', 'en', 1, 'https://ror.org/04gabpx79 PowerChina Kunming Engineering Corporation Limited PowerChina Kunming Engineering Corporation Limited (China) äø­å›½ē”µå»ŗé›†å›¢ę˜†ę˜Žå‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(113231, 'https://ror.org/05pm2xt51', 'fr', 1, 'https://ror.org/05pm2xt51 UMS PhƩnotypage du petit animal'),
(113232, 'https://ror.org/0491zfs73', 'nl', 1, 'https://ror.org/0491zfs73 Arkin'),
(113233, 'https://ror.org/01k9kg969', 'fr', 1, 'https://ror.org/01k9kg969 Arts: pratiques et poƩtiques'),
(113234, 'https://ror.org/05q4veh78', 'no_lang_code', 1, 'https://ror.org/05q4veh78 Evangelismos Hospital'),
(113235, 'https://ror.org/01absdg22', 'en', 1, 'https://ror.org/01absdg22 Saidu Teaching Hospital'),
(113236, 'https://ror.org/004ze6w33', 'en', 1, 'https://ror.org/004ze6w33 Chechen State University Чеченский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(113237, 'https://ror.org/00y499f26', 'pt', 1, 'https://ror.org/00y499f26 LC Technologies (Portugal)'),
(113238, 'https://ror.org/02zptxe07', 'hi', 1, 'https://ror.org/02zptxe07 Sri Padmavati Mahila Visvavidyalayam ą°Ŗą°¦ą±ą°®ą°¾ą°µą°¤ą°æ మహిళా ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(113239, 'https://ror.org/05h2tq494', 'id', 1, 'https://ror.org/05h2tq494 Universitas Pgri Banyuwangi'),
(113240, 'https://ror.org/01dta2x54', 'fr', 1, 'https://ror.org/01dta2x54 Etudes romanes'),
(113241, 'https://ror.org/054v0s666', 'fr', 1, 'https://ror.org/054v0s666 Laboratoire de GƩographie Physique'),
(113242, 'https://ror.org/01v81ky11', 'en', 1, 'https://ror.org/01v81ky11 Association of Flight Attendants'),
(113243, 'https://ror.org/02m698855', 'en', 1, 'https://ror.org/02m698855 Albany Med Health System'),
(113244, 'https://ror.org/03eqef987', 'es', 1, 'https://ror.org/03eqef987 Sociedad Andaluza de Medicina Familiar y Comunitaria'),
(113245, 'https://ror.org/049ba1e57', 'no_lang_code', 1, 'https://ror.org/049ba1e57 Rho (United States)'),
(113246, 'https://ror.org/044se5010', 'de', 1, 'https://ror.org/044se5010 Association faĆ®tiĆØre de l’économie des Ć©nergies renouvelables et de l’efficacitĆ© Ć©nergĆ©tique Dachverband der Wirtschaft für erneuerbare Energien und Energieeffizienz'),
(113247, 'https://ror.org/01gd9k243', 'en', 1, 'https://ror.org/01gd9k243 Navotas Polytechnic College'),
(113248, 'https://ror.org/01gdhzm63', 'pt', 1, 'https://ror.org/01gdhzm63 MinistƩrio da Cultura, Juventude e Desporto'),
(113249, 'https://ror.org/05bc1rm89', 'en', 1, 'https://ror.org/05bc1rm89 Wellesley Centers for Women'),
(113250, 'https://ror.org/05dt4bt98', 'en', 1, 'https://ror.org/05dt4bt98 The Faraday Institution'),
(113251, 'https://ror.org/05mh3a113', 'no_lang_code', 1, 'https://ror.org/05mh3a113 BioElectronics (United States)'),
(113252, 'https://ror.org/01mbz8562', 'fr', 1, 'https://ror.org/01mbz8562 Laboratoire d’Innovation pour les Technologies des Ɖnergies Nouvelles et les nanomatĆ©riaux'),
(113253, 'https://ror.org/035j0vf10', 'en', 1, 'https://ror.org/035j0vf10 Notre Dame University Bangladesh'),
(113254, 'https://ror.org/024g0n729', 'ms', 1, 'https://ror.org/024g0n729 Hospital Pulau Pinang'),
(113255, 'https://ror.org/04054nn90', 'no_lang_code', 1, 'https://ror.org/04054nn90 SolarWinds SolarWinds (United States) SolarWinds Corporation'),
(113256, 'https://ror.org/01k94e681', 'no_lang_code', 1, 'https://ror.org/01k94e681 MIMOS (Malaysia)'),
(113257, 'https://ror.org/01p8ehb87', 'en', 1, 'https://ror.org/01p8ehb87 Ministry of Health of the Russian Federation ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(113258, 'https://ror.org/03ppr9618', 'pt', 1, 'https://ror.org/03ppr9618 Centro de Estudos em Direito da União Europeia'),
(113259, 'https://ror.org/04b23x642', 'en', 1, 'https://ror.org/04b23x642 Peak Health Center'),
(113260, 'https://ror.org/04rdgrr80', 'en', 1, 'https://ror.org/04rdgrr80 Kaluga State University named after K.E.Tsiolkovski Калужский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. Š­. Циолковского'),
(113261, 'https://ror.org/00vtya531', 'pl', 1, 'https://ror.org/00vtya531 Akademia Bialska im. Jana Pawła II'),
(113262, 'https://ror.org/04cmez398', 'en', 1, 'https://ror.org/04cmez398 UGC-DAE Consortium for Scientific Research, Mumbai Centre'),
(113263, 'https://ror.org/0402h6198', 'en', 1, 'https://ror.org/0402h6198 Community Health Systems - Lutheran Downtown Hospital'),
(113264, 'https://ror.org/01chde460', 'pt', 1, 'https://ror.org/01chde460 US Air Forces Europe Libraries Lajes Library'),
(113265, 'https://ror.org/05g6ben79', 'en', 1, 'https://ror.org/05g6ben79 Suzhou University of Technology č‹å·žå·„å­¦é™¢'),
(113266, 'https://ror.org/007a90f76', 'fr', 1, 'https://ror.org/007a90f76 Centre de recherche en psychologie : cognition, psychisme et organisations'),
(113267, 'https://ror.org/02wy3s959', 'fr', 1, 'https://ror.org/02wy3s959 Laboratoire d''ƉnergĆ©tique MolĆ©culaire et Macroscopique, Combustion'),
(113268, 'https://ror.org/04fw54a43', 'en', 1, 'https://ror.org/04fw54a43 Indian Council of Agricultural Research ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø परिषद ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µąÆ‡ą®³ą®¾ą®£ąÆ ą®†ą®ÆąÆą®µąÆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(113269, 'https://ror.org/010rs2a38', 'fr', 1, 'https://ror.org/010rs2a38 DƩpartement de Chimie MolƩculaire'),
(113270, 'https://ror.org/05gba0366', 'en', 1, 'https://ror.org/05gba0366 Russian University of Transport Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ транспорта'),
(113271, 'https://ror.org/0476zq753', 'fr', 1, 'https://ror.org/0476zq753 Conception de l''Action en Situation'),
(113272, 'https://ror.org/0389fzc60', 'fr', 1, 'https://ror.org/0389fzc60 Centre interdisciplinaire de recherche "Culture, Ʃducation, formation, travail"'),
(113273, 'https://ror.org/02ggzyd20', 'fr', 1, 'https://ror.org/02ggzyd20 Direction de la Recherche Technologique'),
(113274, 'https://ror.org/01hajqb31', 'fr', 0, 'https://ror.org/01hajqb31 Laboratoire ActivitƩ Physique, Performance et SantƩ'),
(113275, 'https://ror.org/00k0bfm63', 'en', 1, 'https://ror.org/00k0bfm63 Russian Academy of Architecture and Construction Sciences Š Š¾ŃŃŠøĢŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµĢŠ¼ŠøŃ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒĢŃ€Ń‹ Šø ŃŃ‚Ń€Š¾ŠøĢŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… нау́к'),
(113276, 'https://ror.org/02ktbzt22', 'no_lang_code', 1, 'https://ror.org/02ktbzt22 JSTOR'),
(113277, 'https://ror.org/00se7bf12', 'fr', 1, 'https://ror.org/00se7bf12 Institut de Chimie de Strasbourg'),
(113278, 'https://ror.org/01thp7c65', 'en', 1, 'https://ror.org/01thp7c65 Cure CMD'),
(113279, 'https://ror.org/04qxsrb28', 'en', 1, 'https://ror.org/04qxsrb28 Flemish Government FlƤmische Regierung Gouvernement flamand Vlaamse Overheid'),
(113280, 'https://ror.org/01gy4cq52', 'fr', 1, 'https://ror.org/01gy4cq52 Laboratoire de Psychologie'),
(113281, 'https://ror.org/00afwwp34', 'en', 1, 'https://ror.org/00afwwp34 Statistics Botswana'),
(113282, 'https://ror.org/02km70587', 'no_lang_code', 1, 'https://ror.org/02km70587 Centre d''Ʃtudes Alexandrines'),
(113283, 'https://ror.org/05tfp1c72', 'fr', 1, 'https://ror.org/05tfp1c72 Center for Historical Studies Centre de Recherches Historiques'),
(113284, 'https://ror.org/05601z471', 'fr', 1, 'https://ror.org/05601z471 Institut Des Substances et Organismes de la Mer'),
(113285, 'https://ror.org/051t2jr69', 'id', 1, 'https://ror.org/051t2jr69 Universitas Pembangunan Panca Budi Medan'),
(113286, 'https://ror.org/04vjs1b18', 'en', 1, 'https://ror.org/04vjs1b18 Houghton University'),
(113287, 'https://ror.org/03xay8k75', 'en', 1, 'https://ror.org/03xay8k75 Constanta Maritime University Universitatea Maritimă din Constanța'),
(113288, 'https://ror.org/03sn3te07', 'it', 1, 'https://ror.org/03sn3te07 SocietĆ  Italiana di Medicina Generale'),
(113289, 'https://ror.org/04rgfzt17', 'no_lang_code', 1, 'https://ror.org/04rgfzt17 Advanced Semiconductor Engineering (Taiwan) ę—„ęœˆå…‰é›†å›¢'),
(113290, 'https://ror.org/05j6xkp39', 'en', 1, 'https://ror.org/05j6xkp39 Perinatal HIV Research Unit'),
(113291, 'https://ror.org/05md7ag74', 'fr', 1, 'https://ror.org/05md7ag74 Ɖcole SupĆ©rieure de Commerce'),
(113292, 'https://ror.org/04tvhje80', 'pt', 1, 'https://ror.org/04tvhje80 Centro de Respostas Integradas Porto Oriental (Portugal) Eastern Porto Integrated Response Team'),
(113293, 'https://ror.org/027b58k10', 'en', 1, 'https://ror.org/027b58k10 Hiroshima University of Economics 広島経済大学'),
(113294, 'https://ror.org/04ycf0k71', 'pt', 1, 'https://ror.org/04ycf0k71 Centro de Ciências MatemÔticas'),
(113295, 'https://ror.org/0017kmw32', 'no_lang_code', 1, 'https://ror.org/0017kmw32 Centrais ElƩtricas Brasileiras S.A. Eletrobras (Brazil)'),
(113296, 'https://ror.org/01xytvd82', 'en', 1, 'https://ror.org/01xytvd82 Liaquat National Hospital'),
(113297, 'https://ror.org/04cv7dg98', 'en', 1, 'https://ror.org/04cv7dg98 Mahaveer University'),
(113298, 'https://ror.org/0219xsk19', 'fr', 1, 'https://ror.org/0219xsk19 HƓpital Saint Joseph'),
(113299, 'https://ror.org/05hwvf758', 'fr', 1, 'https://ror.org/05hwvf758 Computer Science Research Laboratory of the University of Pau & Adour Countries Laboratoire Informatique de l''UniversitƩ de Pau et des Pays de l''Adour'),
(113300, 'https://ror.org/00zrn3e14', 'es', 1, 'https://ror.org/00zrn3e14 Hospital del Salvador'),
(113301, 'https://ror.org/00p4dhj06', 'pt', 1, 'https://ror.org/00p4dhj06 Centro de Investigação em Património Educação e Cultura'),
(113302, 'https://ror.org/042hz0056', 'no_lang_code', 1, 'https://ror.org/042hz0056 Instacart Instacart (United States)'),
(113303, 'https://ror.org/04qwk9b58', 'en', 1, 'https://ror.org/04qwk9b58 Central Bank of the Russian Federation Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ банк Российской ФеГерации'),
(113304, 'https://ror.org/049cvkb03', 'en', 1, 'https://ror.org/049cvkb03 Reserve Bank of Australia'),
(113305, 'https://ror.org/018tkb431', 'no_lang_code', 1, 'https://ror.org/018tkb431 ABS Research Academy ABS Research Academy (Bangladesh)'),
(113306, 'https://ror.org/0110em457', 'pl', 1, 'https://ror.org/0110em457 Górnośląskie Centrum Medyczne'),
(113307, 'https://ror.org/03jwrz939', 'en', 1, 'https://ror.org/03jwrz939 Biomathematics and Statistics Scotland'),
(113308, 'https://ror.org/02m2znm35', 'en', 1, 'https://ror.org/02m2znm35 Soliman Fakeeh Hospital Ų§Ł„ŲÆŁƒŲŖŁˆŲ± Ų³Ł„ŁŠŁ…Ų§Ł† ŁŁ‚ŁŠŲ©'),
(113309, 'https://ror.org/01xzw8e81', 'pt', 1, 'https://ror.org/01xzw8e81 Francisco José Farias Investigação (Portugal) Francisco José Farias Research'),
(113310, 'https://ror.org/01zgcd031', 'fr', 1, 'https://ror.org/01zgcd031 TƩSA'),
(113311, 'https://ror.org/02d4qpq05', 'no_lang_code', 1, 'https://ror.org/02d4qpq05 Transgene (France)'),
(113312, 'https://ror.org/05y912z15', 'en', 1, 'https://ror.org/05y912z15 Government College Sirohi'),
(113313, 'https://ror.org/03gwvad41', 'pt', 1, 'https://ror.org/03gwvad41 Instituto Superior de ServiƧo Social'),
(113314, 'https://ror.org/01v2h2d39', 'en', 1, 'https://ror.org/01v2h2d39 National Medical and Surgical Center named after N.I. Pirogov ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГико-Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Центр имени Š.И. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(113315, 'https://ror.org/02t5s2617', 'en', 1, 'https://ror.org/02t5s2617 Singlera Genomics Inc. Singlera Genomics Inc. (United States)'),
(113316, 'https://ror.org/0259bcz98', 'en', 1, 'https://ror.org/0259bcz98 Brisbane School of Theology Crossway College'),
(113317, 'https://ror.org/01gjqcd42', 'fr', 1, 'https://ror.org/01gjqcd42 Centre europƩen de recherches en droit des familles, des assurances, des personnes et de la santƩ'),
(113318, 'https://ror.org/04z80e107', 'es', 1, 'https://ror.org/04z80e107 Universidad Blas Pascal'),
(113319, 'https://ror.org/03xqe1d82', 'id', 1, 'https://ror.org/03xqe1d82 Pembuluh Darah Harapan Kita'),
(113320, 'https://ror.org/05vqw4d96', 'en', 1, 'https://ror.org/05vqw4d96 Community Health Systems - Bluffton Regional Medical Center'),
(113321, 'https://ror.org/04dvqcr82', 'id', 1, 'https://ror.org/04dvqcr82 Institut Ilmu Al-Quran (IIQ) Jakarta'),
(113322, 'https://ror.org/00wx08c65', 'pt', 1, 'https://ror.org/00wx08c65 Associação para a Formação Profissional e Investigação'),
(113323, 'https://ror.org/01925vb10', 'en', 1, 'https://ror.org/01925vb10 Norwegian Cancer Society'),
(113324, 'https://ror.org/02csrd473', 'pt', 1, 'https://ror.org/02csrd473 Vinha e Vinhos Portugueses Competitividade e Sustentabilidade'),
(113325, 'https://ror.org/002v40q27', 'fr', 1, 'https://ror.org/002v40q27 Institut des Neurosciences Paris Saclay Institut des Neurosciences Paris-Saclay Paris-Saclay Institute of Neuroscience'),
(113326, 'https://ror.org/0121yvq70', 'fr', 1, 'https://ror.org/0121yvq70 Centre EuropƩen de Sociologie et de Science Politique European Centre for Sociology and Political Science'),
(113327, 'https://ror.org/01ev5nj79', 'es', 1, 'https://ror.org/01ev5nj79 Hospital MƩdica Sur'),
(113328, 'https://ror.org/049513r96', 'fr', 1, 'https://ror.org/049513r96 Arts, civilisation et histoire de l''Europe'),
(113329, 'https://ror.org/04v2brz27', 'en', 1, 'https://ror.org/04v2brz27 MODUL University Vienna'),
(113330, 'https://ror.org/007fxh757', 'pt', 1, 'https://ror.org/007fxh757 Centro UniversitÔrio Salesiano de São Paulo'),
(113331, 'https://ror.org/02tn0tm63', 'fr', 1, 'https://ror.org/02tn0tm63 Institut de Chimie et ProcƩdƩs pour l''Energie, l''Environnement et la SantƩ Institute of Chemistry and Processes for Energy, Environment and Health'),
(113332, 'https://ror.org/03xez1567', 'en', 1, 'https://ror.org/03xez1567 Salk Institute for Biological Studies'),
(113333, 'https://ror.org/02w6m7e50', 'de', 1, 'https://ror.org/02w6m7e50 University Heart Center Freiburg UniversitƤts-Herzzentrum Freiburg-Bad Krozingen'),
(113334, 'https://ror.org/01rzj1953', 'en', 1, 'https://ror.org/01rzj1953 Institute of Service and Entrepreneurship of DGTU Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сферы Š¾Š±ŃŠ»ŃƒŠ¶ŠøŠ²Š°Š½ŠøŃ Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° ДГТУ в г. Шахты'),
(113335, 'https://ror.org/039jbf905', 'fr', 1, 'https://ror.org/039jbf905 Observatoire de la Faune Sauvage de Nouvelle Aquitaine'),
(113336, 'https://ror.org/04m83yd87', 'en', 1, 'https://ror.org/04m83yd87 Sports Science Institute of South Africa'),
(113337, 'https://ror.org/0059k0c96', 'de', 1, 'https://ror.org/0059k0c96 Krankenhaus Düren'),
(113338, 'https://ror.org/042fmc481', 'fr', 1, 'https://ror.org/042fmc481 Groupe d''Analyse et de ThƩorie Economique Lyon St Etienne'),
(113339, 'https://ror.org/00wbjtg63', 'pt', 1, 'https://ror.org/00wbjtg63 Curia Tecnopark Curia Tecnoparque (Portugal)'),
(113340, 'https://ror.org/05ejbda19', 'en', 1, 'https://ror.org/05ejbda19 Kyoto Women''s University 京都儳子大学'),
(113341, 'https://ror.org/04fehsp44', 'en', 1, 'https://ror.org/04fehsp44 Liv Hospital'),
(113342, 'https://ror.org/02t1x9x61', 'id', 1, 'https://ror.org/02t1x9x61 Universitas 17 Agustus 1945 Cirebon'),
(113343, 'https://ror.org/03a78xy24', 'pt', 1, 'https://ror.org/03a78xy24 Universidade de Coimbra Museu da CiĆŖncia'),
(113344, 'https://ror.org/05v1v4z83', 'en', 1, 'https://ror.org/05v1v4z83 Defeat Duchenne Canada Vaincre Duchenne Canada'),
(113345, 'https://ror.org/00pt8r998', 'es', 1, 'https://ror.org/00pt8r998 Universidad Nacional del Litoral'),
(113346, 'https://ror.org/02m5srn05', 'en', 1, 'https://ror.org/02m5srn05 Japan Research Institute ę—„ęœ¬ē·ē ”'),
(113347, 'https://ror.org/02tphfq59', 'en', 1, 'https://ror.org/02tphfq59 National University of Rosario Universidad Nacional de Rosario'),
(113348, 'https://ror.org/043106b95', 'en', 1, 'https://ror.org/043106b95 Community Health Systems - Medical Center Enterprise'),
(113349, 'https://ror.org/01gshyb58', 'en', 1, 'https://ror.org/01gshyb58 Qatar Science and Technology Park واحة Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ في قطر'),
(113350, 'https://ror.org/04vpa6h32', 'en', 1, 'https://ror.org/04vpa6h32 Edinburgh College'),
(113351, 'https://ror.org/021n2yg11', 'pt', 1, 'https://ror.org/021n2yg11 Animal and Veterinary Research Centre Centro de Ciência Animal e VeterinÔria'),
(113352, 'https://ror.org/02hjc7j46', 'en', 1, 'https://ror.org/02hjc7j46 Oogziekenhuis Rotterdam Rotterdam Eye Hospital'),
(113353, 'https://ror.org/013cc5h66', 'en', 1, 'https://ror.org/013cc5h66 Tver State Medical University Š¢Š²ŠµŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(113354, 'https://ror.org/02zc84r97', 'no_lang_code', 1, 'https://ror.org/02zc84r97 Neusoft (China) äøœč½Æå…¬åø'),
(113355, 'https://ror.org/05qjm2261', 'es', 1, 'https://ror.org/05qjm2261 Instituto Nacional de Psiquiatría Ramón de la Fuente Muñiz National Institute of Psychiatry Ramón de la Fuente Muñiz'),
(113356, 'https://ror.org/05twbtq26', 'en', 1, 'https://ror.org/05twbtq26 SiriusXT Ltd SiriusXT Ltd (Ireland)'),
(113357, 'https://ror.org/05ybd2c79', 'fr', 1, 'https://ror.org/05ybd2c79 Laboratoire d''Ʃtudes et de recherche en sociologie'),
(113358, 'https://ror.org/03kk4nz80', 'no_lang_code', 1, 'https://ror.org/03kk4nz80 Cyclotron (Netherlands)'),
(113359, 'https://ror.org/01nph4h53', 'no_lang_code', 1, 'https://ror.org/01nph4h53 Aerodyne Research'),
(113360, 'https://ror.org/021sy4w91', 'en', 1, 'https://ror.org/021sy4w91 Jackson Laboratory'),
(113361, 'https://ror.org/03fgbah51', 'en', 1, 'https://ror.org/03fgbah51 Kohnan Hospital äø€čˆ¬č²”å›£ę³•äŗŗåŗƒå—ä¼šåŗƒå—ē—…é™¢'),
(113362, 'https://ror.org/05dedze85', 'fr', 0, 'https://ror.org/05dedze85 Laboratoire Stress Oxydant et Pathologies MƩtaboliques'),
(113363, 'https://ror.org/00skw9v43', 'fr', 1, 'https://ror.org/00skw9v43 Laboratoire des signaux et systĆØmes'),
(113364, 'https://ror.org/00np6vq88', 'en', 1, 'https://ror.org/00np6vq88 Welch Foundation'),
(113365, 'https://ror.org/007sfrj26', 'en', 1, 'https://ror.org/007sfrj26 Tver State Technical University Тверской Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(113366, 'https://ror.org/00721wn77', 'fr', 1, 'https://ror.org/00721wn77 Les Afriques dans le Monde'),
(113367, 'https://ror.org/001cr3q72', 'en', 1, 'https://ror.org/001cr3q72 Experiential Higher Institute of Science and Technology (EXHIST)'),
(113368, 'https://ror.org/01zemh668', 'en', 1, 'https://ror.org/01zemh668 Sri Siddhartha Medical College'),
(113369, 'https://ror.org/02j96nm37', 'en', 1, 'https://ror.org/02j96nm37 Premier University ą¦Ŗą§ą¦°ą¦æą¦®ą¦æą§Ÿą¦¾ą¦° ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(113370, 'https://ror.org/052k52s41', 'fr', 1, 'https://ror.org/052k52s41 Interdisciplinarity in English Studies InterdisciplinaritƩ dans les Etudes Anglophones'),
(113371, 'https://ror.org/000qr7b45', 'en', 1, 'https://ror.org/000qr7b45 Directorate of Health'),
(113372, 'https://ror.org/05nsvn336', 'fr', 1, 'https://ror.org/05nsvn336 ArchĆ©ologie et Philologie d’Orient et d’Occident'),
(113373, 'https://ror.org/0328djp07', 'pt', 1, 'https://ror.org/0328djp07 Unidade Local de SaĆŗde do Oeste'),
(113374, 'https://ror.org/03618vx64', 'pt', 1, 'https://ror.org/03618vx64 Centro UniversitĆ”rio Serra dos ƓrgĆ£os'),
(113375, 'https://ror.org/026ma2c10', 'fr', 1, 'https://ror.org/026ma2c10 CEA CESTA'),
(113376, 'https://ror.org/02qgq9x54', 'en', 1, 'https://ror.org/02qgq9x54 Sardar Patel Post Graduate Institute of Dental and Medical Sciences'),
(113377, 'https://ror.org/02kpyrm37', 'no_lang_code', 1, 'https://ror.org/02kpyrm37 Ippokrateio General Hospital of Thessaloniki Ī™Ī Ī ĪŸĪšĪ”Ī‘Ī¤Ī•Ī™ĪŸ Ī Ī•Ī”Ī™Ī¦Ī•Ī”Ī•Ī™Ī‘ĪšĪŸ Ī“Ī•ĪĪ™ĪšĪŸ ĪĪŸĪ£ĪŸĪšĪŸĪœĪ•Ī™ĪŸ Ī˜Ī•Ī£Ī£Ī‘Ī›ĪŸĪĪ™ĪšĪ—Ī£'),
(113378, 'https://ror.org/04yy24g58', 'fr', 1, 'https://ror.org/04yy24g58 EPLEFPA Le Valentin - Bourg-lĆØs-Valence EPLEFPA Le Valentin – Valence'),
(113379, 'https://ror.org/02tznxc41', 'fr', 1, 'https://ror.org/02tznxc41 Groupe d''Etudes et de Recherche Interdisciplinaire en Information et Communication'),
(113380, 'https://ror.org/053k5y417', 'en', 1, 'https://ror.org/053k5y417 Institute for Molecular Medicine'),
(113381, 'https://ror.org/03yvabt26', 'es', 1, 'https://ror.org/03yvabt26 Institute of Ecology, A.C. Instituto de EcologĆ­a Instituto de EcologĆ­a, A.C.'),
(113382, 'https://ror.org/029enjm73', 'ro', 1, 'https://ror.org/029enjm73 Institutul de Pneumoftiziologie "Marius Nasta"'),
(113383, 'https://ror.org/03m6sha91', 'en', 1, 'https://ror.org/03m6sha91 Institut National de la MƩtƩorologie National Institute of Meteorology'),
(113384, 'https://ror.org/038aqt498', 'en', 1, 'https://ror.org/038aqt498 Kuala Lumpur University of Science & Technology'),
(113385, 'https://ror.org/03ndabk35', 'de', 1, 'https://ror.org/03ndabk35 Krankenhaus Bethanien'),
(113386, 'https://ror.org/00fq5ev96', 'en', 1, 'https://ror.org/00fq5ev96 John B. Pierce Laboratory'),
(113387, 'https://ror.org/00cr0q231', 'pt', 1, 'https://ror.org/00cr0q231 Museu Nacional do Teatro e da DanƧa'),
(113388, 'https://ror.org/020atbp69', 'en', 1, 'https://ror.org/020atbp69 Children''s Memorial Health Institute'),
(113389, 'https://ror.org/036j3hh72', 'de', 1, 'https://ror.org/036j3hh72 Evangelisches Krankenhaus Düsseldorf'),
(113390, 'https://ror.org/03gwskq53', 'pt', 1, 'https://ror.org/03gwskq53 Clƭnica UniversitƔria de Pneumologia University Clinic of Pulmonolog'),
(113391, 'https://ror.org/03rnz7p05', 'fr', 1, 'https://ror.org/03rnz7p05 Centre Michel de Boüard'),
(113392, 'https://ror.org/037kpn189', 'pt', 1, 'https://ror.org/037kpn189 Centro de Investigação e de Estudos em Belas-Artes'),
(113393, 'https://ror.org/05c132b31', 'id', 1, 'https://ror.org/05c132b31 Universitas Satya Negara Indonesia'),
(113394, 'https://ror.org/04y1zat75', 'en', 1, 'https://ror.org/04y1zat75 Hungarian Natural History Museum Magyar TermészettudomÔnyi Múzeum'),
(113395, 'https://ror.org/05ed8xr15', 'fr', 1, 'https://ror.org/05ed8xr15 Centre Hospitalier Saint-Denis'),
(113396, 'https://ror.org/00g32ep81', 'fr', 1, 'https://ror.org/00g32ep81 Centre d''Histoire Judiciaire'),
(113397, 'https://ror.org/009rwsd77', 'fr', 1, 'https://ror.org/009rwsd77 Laboratoire de MathƩmatiques de l''INSA de Rouen'),
(113398, 'https://ror.org/00p6sn362', 'fr', 1, 'https://ror.org/00p6sn362 Laboratoire RƩactions et GƩnie des ProcƩdƩs Reactions and Chemical Engineering Laboratory'),
(113399, 'https://ror.org/003ckn545', 'fr', 1, 'https://ror.org/003ckn545 Laboratoire d''Ɖconomie MathĆ©matique et de MicroĆ©conomie AppliquĆ©e'),
(113400, 'https://ror.org/03j33f065', 'en', 1, 'https://ror.org/03j33f065 European Securities and Markets Authority'),
(113401, 'https://ror.org/04kgf6p94', 'fr', 1, 'https://ror.org/04kgf6p94 Physics of Ionic and Molecular Interactions Physique des interactions ioniques et molƩculaires'),
(113402, 'https://ror.org/01vw69t89', 'en', 1, 'https://ror.org/01vw69t89 Dagestan State University Дагестанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(113403, 'https://ror.org/03m8ekn10', 'en', 0, 'https://ror.org/03m8ekn10 Center for South Asian Studies Centre d''Ɖtudes de l''Inde et de l''Asie du Sud'),
(113404, 'https://ror.org/059aht397', 'en', 1, 'https://ror.org/059aht397 Institute of Oil and Gas Problems of the Siberian Branch of the RAS Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем нефти Šø газа Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(113405, 'https://ror.org/03y9yrp10', 'pt', 1, 'https://ror.org/03y9yrp10 Centro de Estudos e Pesquisas em Educação, Cultura e Ação ComunitÔria'),
(113406, 'https://ror.org/03f8xts90', 'no_lang_code', 1, 'https://ror.org/03f8xts90 Yalong Hydro (China) é›…ē »ę±ŸęµåŸŸę°“ē”µå¼€å‘'),
(113407, 'https://ror.org/04n9eyw42', 'fr', 1, 'https://ror.org/04n9eyw42 ArchƩologie des SociƩtƩs MƩditerranƩennes'),
(113408, 'https://ror.org/012b7c704', 'fr', 1, 'https://ror.org/012b7c704 Institut des Sciences Criminelles et de la Justice'),
(113409, 'https://ror.org/01tv2ca73', 'fr', 1, 'https://ror.org/01tv2ca73 Laboratoire de Spectroscopie pour les Interactions, la RƩactivitƩ et l''Environnement'),
(113410, 'https://ror.org/04v0zrf25', 'en', 1, 'https://ror.org/04v0zrf25 New York College of Health Professions'),
(113411, 'https://ror.org/03j82q602', 'fr', 1, 'https://ror.org/03j82q602 ArchƩozoologie et ArchƩobotanique'),
(113412, 'https://ror.org/01d30w739', 'en', 1, 'https://ror.org/01d30w739 Deutsche Universität für Verwaltungswissenschaften Speyer German University of Administrative Sciences'),
(113413, 'https://ror.org/0158gpt29', 'en', 1, 'https://ror.org/0158gpt29 Ukrainian Library Association Š£ŠŗŃ€Š°Ń—ĢŠ½ŃŃŒŠŗŠ° бібліоте́чна Š°ŃŠ¾Ń†Ń–Š°ĢŃ†Ń–Ń'),
(113414, 'https://ror.org/04db9cw19', 'no_lang_code', 1, 'https://ror.org/04db9cw19 Egnosis SRL Egnosis SRL (Romania)'),
(113415, 'https://ror.org/02za18p66', 'fr', 1, 'https://ror.org/02za18p66 Institut de Physique et Chimie des MatƩriaux de Strasbourg'),
(113416, 'https://ror.org/02j4j8p35', 'fr', 1, 'https://ror.org/02j4j8p35 EconomiX'),
(113417, 'https://ror.org/048f5b183', 'en', 1, 'https://ror.org/048f5b183 The King''s University'),
(113418, 'https://ror.org/03k0aef63', 'pt', 1, 'https://ror.org/03k0aef63 Centro de Estudos Globais'),
(113419, 'https://ror.org/012bp0978', 'en', 1, 'https://ror.org/012bp0978 Comprehensive Health Research Centre'),
(113420, 'https://ror.org/00rd81916', 'fr', 1, 'https://ror.org/00rd81916 Laboratoire Interdisciplinaire des Sciences du NumƩrique'),
(113421, 'https://ror.org/0186z1m53', 'fr', 1, 'https://ror.org/0186z1m53 Laboratoire d''Ɖlectrotechnique et d''Ɖlectronique de Puissance de Lille Lille Laboratory of Electrical Engineering and Power Electronics'),
(113422, 'https://ror.org/048w9r832', 'en', 1, 'https://ror.org/048w9r832 Albany Law School FacultƩ de droit d''albany'),
(113423, 'https://ror.org/05ddg7v64', 'nl', 1, 'https://ror.org/05ddg7v64 Nederlands Instituut Voor Zuivel Oonderzoek'),
(113424, 'https://ror.org/051tk8772', 'en', 1, 'https://ror.org/051tk8772 Community Health Systems - Grandview Medical Center'),
(113425, 'https://ror.org/041tgdz97', 'fr', 1, 'https://ror.org/041tgdz97 Adaptative Mechanisms & Evolution MƩcanismes Adaptatifs et Evolution'),
(113426, 'https://ror.org/04team556', 'fr', 1, 'https://ror.org/04team556 Dynamique du noyau Nuclear Dynamics'),
(113427, 'https://ror.org/040evg982', 'en', 1, 'https://ror.org/040evg982 Santobono Children''s Hospital'),
(113428, 'https://ror.org/03e4tg734', 'fr', 1, 'https://ror.org/03e4tg734 Laboratoire de Microbiologie Fondamentale et PathogƩnicitƩ'),
(113429, 'https://ror.org/01z5d0q66', 'fr', 1, 'https://ror.org/01z5d0q66 Laboratoire de Physique de la Matière Condensée'),
(113430, 'https://ror.org/044j5mm75', 'fr', 1, 'https://ror.org/044j5mm75 Centre d''Etudes et De Recherche en Informatique et Communications'),
(113431, 'https://ror.org/03x6a1n79', 'fr', 1, 'https://ror.org/03x6a1n79 ModĆØles Dynamiques Corpus'),
(113432, 'https://ror.org/037qt0706', 'no_lang_code', 1, 'https://ror.org/037qt0706 Taisei Rotec Corporation Taisei Rotec Corporation (Japan) å¤§ęˆćƒ­ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(113433, 'https://ror.org/0021ckm71', 'no_lang_code', 1, 'https://ror.org/0021ckm71 Publishing House "Helvetica" Publishing House "Helvetica" (Ukraine)'),
(113434, 'https://ror.org/01tgdcv71', 'pt', 1, 'https://ror.org/01tgdcv71 Centro de QuĆ­mica da Madeira Madeira Chemistry Research Centre'),
(113435, 'https://ror.org/059cdnm21', 'it', 1, 'https://ror.org/059cdnm21 Regione Autonoma Valle d''Aosta'),
(113436, 'https://ror.org/03753r186', 'en', 1, 'https://ror.org/03753r186 Community Health Systems - Dupont Hospital'),
(113437, 'https://ror.org/00zam0e96', 'en', 1, 'https://ror.org/00zam0e96 Institut de Pathologie et de GƩnƩtique Institute of Pathology and Genetics'),
(113438, 'https://ror.org/003pxap67', 'en', 1, 'https://ror.org/003pxap67 Physiological Society'),
(113439, 'https://ror.org/03xmsh521', 'en', 1, 'https://ror.org/03xmsh521 Bombay Hospital'),
(113440, 'https://ror.org/00h4pdn80', 'pt', 1, 'https://ror.org/00h4pdn80 Teoria e História do Direito'),
(113441, 'https://ror.org/05c9b8370', 'id', 1, 'https://ror.org/05c9b8370 Universitas Tunas Pembangunan'),
(113442, 'https://ror.org/02tcf7a68', 'fr', 1, 'https://ror.org/02tcf7a68 Centre Hospitalier Universitaire de Clermont-Ferrand'),
(113443, 'https://ror.org/009hbbn87', 'de', 1, 'https://ror.org/009hbbn87 Hessisches Landesamt für Gesundheit und Pflege'),
(113444, 'https://ror.org/01ap27310', 'fr', 1, 'https://ror.org/01ap27310 Institut supérieur d''étude des religions et de la laïcité'),
(113445, 'https://ror.org/05gnea559', 'id', 1, 'https://ror.org/05gnea559 Universitas Riau Kepulauan'),
(113446, 'https://ror.org/02nxezb95', 'fr', 1, 'https://ror.org/02nxezb95 Handicap neuromusculaire : Physiopathologie, BiothƩrapie et Pharmacologie appliquƩes'),
(113447, 'https://ror.org/01gan4k05', 'fr', 1, 'https://ror.org/01gan4k05 Catalysis and Spectrochemistry Laboratory Laboratoire Catalyse et Spectrochimie'),
(113448, 'https://ror.org/04ayrfe72', 'en', 1, 'https://ror.org/04ayrfe72 Tamil Nadu Dr. J Jayalalitha Fisheries University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®®ąÆ€ą®©ąÆą®µą®³ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(113449, 'https://ror.org/04egvzv93', 'en', 1, 'https://ror.org/04egvzv93 National Institute of Research and Development for Electrochemistry and Condensed'),
(113450, 'https://ror.org/04410kq54', 'en', 1, 'https://ror.org/04410kq54 Society for Neuroscience'),
(113451, 'https://ror.org/03m3xkg41', 'en', 1, 'https://ror.org/03m3xkg41 Berhampur University'),
(113452, 'https://ror.org/05gbdc474', 'no_lang_code', 1, 'https://ror.org/05gbdc474 Sotiria General Hospital'),
(113453, 'https://ror.org/02enn9f76', 'es', 1, 'https://ror.org/02enn9f76 Universidad PolitƩcnica Territorial de los Valles del Tuy'),
(113454, 'https://ror.org/03d99pa66', 'pt', 1, 'https://ror.org/03d99pa66 Museu Nacional do Traje'),
(113455, 'https://ror.org/042gckq23', 'es', 1, 'https://ror.org/042gckq23 Peruvian Union University Universidad Peruana Unión'),
(113456, 'https://ror.org/04vr07e24', 'fr', 1, 'https://ror.org/04vr07e24 Centre de droit pƩnal et de criminologie'),
(113457, 'https://ror.org/03b9snr86', 'pt', 1, 'https://ror.org/03b9snr86 Universidade Católica Portuguesa'),
(113458, 'https://ror.org/05n7t4h40', 'en', 1, 'https://ror.org/05n7t4h40 Henry Dunant Hospital'),
(113459, 'https://ror.org/008qsjm14', 'fr', 1, 'https://ror.org/008qsjm14 Centre de Droit Maritime et OcƩanique Maritime And Oceanic Law Centre'),
(113460, 'https://ror.org/02qdg4b08', 'en', 1, 'https://ror.org/02qdg4b08 Agricultural Institute Osijek'),
(113461, 'https://ror.org/045f0ws19', 'en', 1, 'https://ror.org/045f0ws19 Universities of Giessen and Marburg Lung Center'),
(113462, 'https://ror.org/02sjqwx48', 'en', 1, 'https://ror.org/02sjqwx48 One Percent Research Initiative'),
(113463, 'https://ror.org/01z0xsq42', 'en', 1, 'https://ror.org/01z0xsq42 Genomics and Biotechnology of the Fruits Laboratory Genomique et Biotechnologie des Fruits'),
(113464, 'https://ror.org/00yx04352', 'en', 1, 'https://ror.org/00yx04352 Buda Health Center Budai EgƩszsƩgkƶzpont'),
(113465, 'https://ror.org/02wzg8t73', 'fr', 1, 'https://ror.org/02wzg8t73 Centre d''Etudes Politiques de l''Europe Latine Centre d’Etudes Politiques Et sociaLes'),
(113466, 'https://ror.org/05afnvy09', 'pt', 1, 'https://ror.org/05afnvy09 Centro de LinguĆ­stica'),
(113467, 'https://ror.org/0472a5v57', 'en', 1, 'https://ror.org/0472a5v57 Umkhuseli Innovation and Research Management'),
(113468, 'https://ror.org/05kga7j50', 'en', 1, 'https://ror.org/05kga7j50 Community Health Systems - Merit Health Women''s Hospital'),
(113469, 'https://ror.org/01qva9798', 'en', 1, 'https://ror.org/01qva9798 Mewar University ą¤®ą„‡ą¤µą¤¾ą¤”ą¤¼ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(113470, 'https://ror.org/00h55v928', 'en', 1, 'https://ror.org/00h55v928 Helwan University Ų¬Ų§Ł…Ų¹Ų© Ų­Ł„ŁˆŲ§Ł†'),
(113471, 'https://ror.org/03zww1h73', 'en', 1, 'https://ror.org/03zww1h73 University Hospital of Ioannina'),
(113472, 'https://ror.org/00pspca89', 'en', 1, 'https://ror.org/00pspca89 University Hospital Bratislava'),
(113473, 'https://ror.org/03tma2759', 'pt', 1, 'https://ror.org/03tma2759 Associação Paulista de Medicina'),
(113474, 'https://ror.org/013rm3825', 'en', 1, 'https://ror.org/013rm3825 Hussaini Adamu Federal Polytechnic'),
(113475, 'https://ror.org/00pnhtk88', 'en', 1, 'https://ror.org/00pnhtk88 Indiana Geological and Water Survey'),
(113476, 'https://ror.org/003nvpm64', 'en', 1, 'https://ror.org/003nvpm64 Christchurch Hospital'),
(113477, 'https://ror.org/04eht1y76', 'en', 1, 'https://ror.org/04eht1y76 Komaki City Hospital å°ē‰§åø‚ę°‘ē—…é™¢'),
(113478, 'https://ror.org/04744v755', 'pt', 1, 'https://ror.org/04744v755 NaturaFish (Portugal)'),
(113479, 'https://ror.org/013wmj183', 'en', 1, 'https://ror.org/013wmj183 National Insurance Academy, Pune'),
(113480, 'https://ror.org/014p73186', 'pt', 1, 'https://ror.org/014p73186 Ensino Superior Empresarial (Portugal)'),
(113481, 'https://ror.org/00vcj2z66', 'en', 1, 'https://ror.org/00vcj2z66 MusƩe royal de l''Ontario Royal Ontario Museum'),
(113482, 'https://ror.org/03rj79307', 'ro', 1, 'https://ror.org/03rj79307 Universitatea Nicolae Titulescu din București'),
(113483, 'https://ror.org/05a3efx98', 'no_lang_code', 1, 'https://ror.org/05a3efx98 Metropolitan Hospital'),
(113484, 'https://ror.org/050jqep38', 'nl', 1, 'https://ror.org/050jqep38 Altrecht GGZ'),
(113485, 'https://ror.org/0495mzm65', 'fr', 1, 'https://ror.org/0495mzm65 InterPsy Laboratory Interpsy Laboratoire InterPsy'),
(113486, 'https://ror.org/03bj0v820', 'fr', 1, 'https://ror.org/03bj0v820 Centre de Recherche sur la Langue et les Textes Basques Research Center on the Basque Language And Texts'),
(113487, 'https://ror.org/053p6zp61', 'en', 1, 'https://ror.org/053p6zp61 Indian Institute of Information Technology Surat'),
(113488, 'https://ror.org/00190j002', 'fr', 1, 'https://ror.org/00190j002 Research Network on Electrochemical Energy Storage RƩseau sur le Stockage Electrochimique de l''Ʃnergie'),
(113489, 'https://ror.org/021924r89', 'de', 1, 'https://ror.org/021924r89 Kinderkrebs-Zentrum Hamburg Research Institute Children’s Cancer Center'),
(113490, 'https://ror.org/05bfzg972', 'en', 1, 'https://ror.org/05bfzg972 Community Health Systems - Northwest Health Physician''s Specialty Hospital'),
(113491, 'https://ror.org/006f4zn23', 'en', 1, 'https://ror.org/006f4zn23 Institute for Physics and Power Engineering Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской ФеГерации Физико-ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚, Š“ŠŠ¦ РФ-ФЭИ'),
(113492, 'https://ror.org/02kwzrk08', 'pt', 1, 'https://ror.org/02kwzrk08 Centro de Medicina de Reabilitação do Sul'),
(113493, 'https://ror.org/05n4nmn13', 'fr', 1, 'https://ror.org/05n4nmn13 GƩnƩtique MolƩculaire GƩnomique Microbiologie'),
(113494, 'https://ror.org/03gre7t46', 'en', 1, 'https://ror.org/03gre7t46 Providence Women''s College (Autonomous)'),
(113495, 'https://ror.org/019336t31', 'pt', 1, 'https://ror.org/019336t31 Innovnano Advanced Materials Innovnano Materiais AvanƧados (Portugal)'),
(113496, 'https://ror.org/02cx93t24', 'en', 1, 'https://ror.org/02cx93t24 Leicester College'),
(113497, 'https://ror.org/05xr3b330', 'fr', 1, 'https://ror.org/05xr3b330 Institut des Sciences MolƩculaires de Marseille'),
(113498, 'https://ror.org/054b6pr16', 'en', 1, 'https://ror.org/054b6pr16 Luxembourg Centre for Contemporary and Digital History'),
(113499, 'https://ror.org/01h7r2364', 'pt', 1, 'https://ror.org/01h7r2364 Centro de Investigação em Território Arquitectura e Design'),
(113500, 'https://ror.org/00rgv0036', 'en', 1, 'https://ror.org/00rgv0036 Cameron University'),
(113501, 'https://ror.org/00fd4q681', 'en', 1, 'https://ror.org/00fd4q681 Krishna Institute of Medical Sciences'),
(113502, 'https://ror.org/03szevt88', 'pt', 1, 'https://ror.org/03szevt88 Unidade Local de Saúde de Viseu Dão-Lafões'),
(113503, 'https://ror.org/032vwca88', 'en', 1, 'https://ror.org/032vwca88 University of Vocational Technology ą·€ą·˜ą¶­ą·Šą¶­ą·“ą¶ŗ ą¶­ą·ą¶šą·Šą·‚ą¶« ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šą¶ŗą·ą¶½ą¶ŗ'),
(113504, 'https://ror.org/02bv3c993', 'en', 1, 'https://ror.org/02bv3c993 Academy of Military Medical Sciences äø­å›½äŗŗę°‘č§£ę”¾å†›å†›äŗ‹åŒ»å­¦ē§‘å­¦é™¢'),
(113505, 'https://ror.org/00b7djk73', 'fr', 1, 'https://ror.org/00b7djk73 Centre de MathƩmatiques Laurent Schwartz'),
(113506, 'https://ror.org/013yean28', 'fr', 1, 'https://ror.org/013yean28 Laboratoire d''Informatique, de Robotique et de MicroƩlectronique de Montpellier Laboratory of Computer Science, Robotics and Microelectronics of Montpellier Montpellier Laboratory of Informatics, Robotics and Microelectronics'),
(113507, 'https://ror.org/03gf10a58', 'no_lang_code', 1, 'https://ror.org/03gf10a58 Applied Physical Sciences (United States)'),
(113508, 'https://ror.org/04jqdyp62', 'fr', 1, 'https://ror.org/04jqdyp62 Ɖquipe de droit international, europĆ©en et comparĆ©'),
(113509, 'https://ror.org/03ne2zw20', 'en', 1, 'https://ror.org/03ne2zw20 International Union of Pure and Applied Chemistry'),
(113510, 'https://ror.org/02nmqyx36', 'pt', 1, 'https://ror.org/02nmqyx36 Edições UniversitÔrias Lusófonas'),
(113511, 'https://ror.org/03rqm8n56', 'en', 1, 'https://ror.org/03rqm8n56 Ivanovo State University Ивановский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(113512, 'https://ror.org/00b3d7291', 'es', 1, 'https://ror.org/00b3d7291 ClĆ­nica RementerĆ­a'),
(113513, 'https://ror.org/010fems46', 'en', 1, 'https://ror.org/010fems46 Guangzhou Design Institute å¹æå·žåø‚č®¾č®”é™¢'),
(113514, 'https://ror.org/05yd14d93', 'no_lang_code', 1, 'https://ror.org/05yd14d93 Centre for Computational and Biological Sciences Centre for Computational and Biological Sciences (India)'),
(113515, 'https://ror.org/00p2fdn46', 'fr', 1, 'https://ror.org/00p2fdn46 MƩsocentre de Calcul Intensif en Aquitaine'),
(113516, 'https://ror.org/05y4eg947', 'es', 1, 'https://ror.org/05y4eg947 Escuela Militar de Aviación'),
(113517, 'https://ror.org/059fn5f50', 'fr', 1, 'https://ror.org/059fn5f50 Fédération de Recherche PhotoVoltaïque'),
(113518, 'https://ror.org/01k1wbn78', 'de', 1, 'https://ror.org/01k1wbn78 Stiftung Deutsche Schlaganfall-Hilfe'),
(113519, 'https://ror.org/035gfy236', 'en', 1, 'https://ror.org/035gfy236 Lietuvos mokslų akademija Litewska Akademia Nauk Lithuanian Academy of Sciences ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Литвы'),
(113520, 'https://ror.org/05f8we715', 'en', 1, 'https://ror.org/05f8we715 Francke Foundations Franckesche Stiftungen'),
(113521, 'https://ror.org/01rtzw447', 'fr', 1, 'https://ror.org/01rtzw447 Laboratoire de Chimie de Coordination'),
(113522, 'https://ror.org/050fekj90', 'en', 1, 'https://ror.org/050fekj90 Federal Polytechnic Damaturu Kwalejin Kimiyyar ta Tarayya, Damaturu'),
(113523, 'https://ror.org/02st4q439', 'fr', 1, 'https://ror.org/02st4q439 Institut de Chimie des Substances Naturelles Institute for the chemistry of natural substances'),
(113524, 'https://ror.org/05w626e73', 'es', 1, 'https://ror.org/05w626e73 Universidad de Montevideo University of Montevideo'),
(113525, 'https://ror.org/032bre195', 'pt', 1, 'https://ror.org/032bre195 Matera (Portugal)'),
(113526, 'https://ror.org/02gyps716', 'en', 1, 'https://ror.org/02gyps716 Universidade de Ɖvora University of Ɖvora'),
(113527, 'https://ror.org/00dbcz291', 'en', 1, 'https://ror.org/00dbcz291 St. Vincent Charity Hospital'),
(113528, 'https://ror.org/00c8gax70', 'en', 1, 'https://ror.org/00c8gax70 Queen Elizabeth II Jubilee Hospital'),
(113529, 'https://ror.org/04wtw4176', 'pt', 1, 'https://ror.org/04wtw4176 Interpropo International Advertisement of Portuguese Products Sole Trader Company Interpropo Sociedade de Propaganda Internacional de Produtos Portugueses (Portugal)'),
(113530, 'https://ror.org/05bmj6719', 'en', 1, 'https://ror.org/05bmj6719 ICMA Centre'),
(113531, 'https://ror.org/033wnbm63', 'no_lang_code', 1, 'https://ror.org/033wnbm63 Jensen Hughes (United States)'),
(113532, 'https://ror.org/02xkmx604', 'en', 1, 'https://ror.org/02xkmx604 Kosin University Gospel Hospital ź³ ģ‹ ėŒ€ķ•™źµ ė³µģŒė³‘ģ›'),
(113533, 'https://ror.org/03t2f0a12', 'fr', 1, 'https://ror.org/03t2f0a12 Institut des NanoSciences de Paris Institute of NanoSciences of Paris'),
(113534, 'https://ror.org/00a19vs18', 'fr', 1, 'https://ror.org/00a19vs18 Culture et histoire dans l''espace roman'),
(113535, 'https://ror.org/02vnf0c38', 'fr', 1, 'https://ror.org/02vnf0c38 Laboratoire Lorrain de Recherche en Informatique et ses Applications Lorraine Research Laboratory in Computer Science and its Applications'),
(113536, 'https://ror.org/03z0mke78', 'en', 1, 'https://ror.org/03z0mke78 Royal Victoria Eye and Ear Hospital'),
(113537, 'https://ror.org/03jc88607', 'fr', 1, 'https://ror.org/03jc88607 Conception de Systèmes Mécaniques et Robotiques'),
(113538, 'https://ror.org/03tdef037', 'fr', 0, 'https://ror.org/03tdef037 Systèmes de Référence Temps-Espace'),
(113539, 'https://ror.org/0371bqv47', 'en', 1, 'https://ror.org/0371bqv47 Institute of Glass Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стекла'),
(113540, 'https://ror.org/04nmj9827', 'fr', 1, 'https://ror.org/04nmj9827 European Institute for Membranes Institut EuropƩen des Membranes'),
(113541, 'https://ror.org/0072qdx63', 'en', 1, 'https://ror.org/0072qdx63 Sigma2 Sigma2 AS'),
(113542, 'https://ror.org/03ze07515', 'fr', 1, 'https://ror.org/03ze07515 CEA Valduc'),
(113543, 'https://ror.org/01jbjy689', 'en', 1, 'https://ror.org/01jbjy689 Wihuri Research Institute'),
(113544, 'https://ror.org/03rd8mf35', 'en', 1, 'https://ror.org/03rd8mf35 Health Sciences University'),
(113545, 'https://ror.org/011hdpx94', 'fr', 1, 'https://ror.org/011hdpx94 ArchƩologie, Terre, Histoire, SociƩtƩs'),
(113546, 'https://ror.org/053p8kg34', 'fr', 1, 'https://ror.org/053p8kg34 AndrƩ Revuz Didactics Laboratory Laboratoire de Didactique AndrƩ Revuz'),
(113547, 'https://ror.org/04abvbp84', 'en', 1, 'https://ror.org/04abvbp84 San Francisco AIDS Foundation'),
(113548, 'https://ror.org/01ks4c961', 'fr', 1, 'https://ror.org/01ks4c961 Laboratoire Angevin de MƩcanique, ProcƩdƩs et InnovAtion'),
(113549, 'https://ror.org/0104wr755', 'en', 1, 'https://ror.org/0104wr755 EMC Electromagnetic BCN, S.L. EMC Electromagnetic BCN, S.L. (Spain)'),
(113550, 'https://ror.org/02f7s4h98', 'en', 1, 'https://ror.org/02f7s4h98 Pushpagiri Medical College'),
(113551, 'https://ror.org/029rmm934', 'fr', 1, 'https://ror.org/029rmm934 Laboratoire LƩon Brillouin'),
(113552, 'https://ror.org/015j0wa14', 'pt', 1, 'https://ror.org/015j0wa14 Centro Hospitalar do MƩdio Tejo EPE'),
(113553, 'https://ror.org/0116zdb24', 'no_lang_code', 1, 'https://ror.org/0116zdb24 State Street (United States)'),
(113554, 'https://ror.org/01cwd3655', 'fr', 1, 'https://ror.org/01cwd3655 ICEE - IntƩgration et CoopƩration dans l''Espace EuropƩen IntƩgration et CoopƩration dans l''Espace EuropƩen - Etudes EuropƩennes'),
(113555, 'https://ror.org/029cj5595', 'fr', 1, 'https://ror.org/029cj5595 Laboratoire Cognition, Langues, Langage, Ergonomie'),
(113556, 'https://ror.org/03bh3j659', 'tr', 1, 'https://ror.org/03bh3j659 Enerji Piyasası Düzenleme Kurumu T.C. Enerji Piyasası Düzenleme Kurumu'),
(113557, 'https://ror.org/02sy6k521', 'en', 1, 'https://ror.org/02sy6k521 Industrial Systems Institute'),
(113558, 'https://ror.org/022dgjm82', 'pt', 1, 'https://ror.org/022dgjm82 Cardi9 Health Services Provision Cardi9 Prestação de Serviços de Saúde (Portugal)'),
(113559, 'https://ror.org/011gea244', 'fr', 1, 'https://ror.org/011gea244 Laboratoire MƩditerranƩen de PrƩhistoire Europe Afrique'),
(113560, 'https://ror.org/039xbga15', 'es', 1, 'https://ror.org/039xbga15 Asociación Española de Urología'),
(113561, 'https://ror.org/04gh6x779', 'de', 1, 'https://ror.org/04gh6x779 Caritas-Krankenhaus Bad Mergentheim'),
(113562, 'https://ror.org/01ssxvy26', 'en', 1, 'https://ror.org/01ssxvy26 CIMEOS - Communications, MƩdiations, Organisations, Savoirs');
INSERT INTO `rors` VALUES
(113563, 'https://ror.org/027w7k187', 'pt', 1, 'https://ror.org/027w7k187 Unidade Hospitalar de Famalicão'),
(113564, 'https://ror.org/05fnq6x95', 'pt', 1, 'https://ror.org/05fnq6x95 Arquivo Historico Ultramarino'),
(113565, 'https://ror.org/03ywn7d79', 'fr', 1, 'https://ror.org/03ywn7d79 Institut de Chimie Organique et Analytique Institute of Organic and Analytical Chemistry'),
(113566, 'https://ror.org/00je63m83', 'en', 1, 'https://ror.org/00je63m83 Community Health Systems - Regional Hospital of Scranton'),
(113567, 'https://ror.org/059v8sw69', 'fr', 1, 'https://ror.org/059v8sw69 Centre d’étude de la langue et des littĆ©ratures franƧaises'),
(113568, 'https://ror.org/049ztct72', 'en', 1, 'https://ror.org/049ztct72 Medical University Pleven ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Плевен'),
(113569, 'https://ror.org/01cw28e72', 'fr', 1, 'https://ror.org/01cw28e72 Institut de Recherche sur les ArchƩoMATƩriaux'),
(113570, 'https://ror.org/04ydqc741', 'en', 1, 'https://ror.org/04ydqc741 Soil Resource Development Institute ą¦®ą§ƒą¦¤ą§ą¦¤ą¦æą¦•ą¦¾ ą¦øą¦®ą§ą¦Ŗą¦¦ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(113571, 'https://ror.org/02skbsp27', 'de', 1, 'https://ror.org/02skbsp27 Leibniz Institute of Plant Genetics and Crop Plant Research Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Leibniz-Institut für Pflanzengenetik und Kulturpflanzenforschung Leibniz-Institut für Pflanzengenetik und Kulturpflanzenforschung (IPK)'),
(113572, 'https://ror.org/04h8e7606', 'en', 1, 'https://ror.org/04h8e7606 Fernando Pessoa University Universidade Fernando Pessoa'),
(113573, 'https://ror.org/05q6p8h20', 'en', 1, 'https://ror.org/05q6p8h20 Community Health Systems - Wilkes-Barre General Hospital'),
(113574, 'https://ror.org/04k80k910', 'en', 1, 'https://ror.org/04k80k910 Consorzio Interuniversitario Nazionale per la Scienza e Tecnologia dei Materiali National Interuniversity Consortium of Materials Science and Technology'),
(113575, 'https://ror.org/01yjy8p80', 'en', 1, 'https://ror.org/01yjy8p80 National University of LujƔn Universidad Nacional de LujƔn'),
(113576, 'https://ror.org/025zd8760', 'pt', 1, 'https://ror.org/025zd8760 Universidade do Vale do SapucaĆ­'),
(113577, 'https://ror.org/042765079', 'es', 1, 'https://ror.org/042765079 Instituto Nacional de LimnologĆ­a'),
(113578, 'https://ror.org/04ep19q60', 'de', 1, 'https://ror.org/04ep19q60 Hessisches Ministerium für Familie, Senioren, Sport, Gesundheit und Pflege'),
(113579, 'https://ror.org/05xtktk35', 'fr', 1, 'https://ror.org/05xtktk35 GƩoazur'),
(113580, 'https://ror.org/05xv2md42', 'en', 1, 'https://ror.org/05xv2md42 Humber Polytechnic'),
(113581, 'https://ror.org/0394w2w14', 'en', 1, 'https://ror.org/0394w2w14 Chettinad Academy of Research and Education ą®šąÆ†ą®ŸąÆą®Ÿą®æą®Øą®¾ą®ŸąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(113582, 'https://ror.org/02kpprd93', 'de', 1, 'https://ror.org/02kpprd93 Gesellschaft zur Fƶrderung von Medizin-, Bio- und Umwelttechnologien'),
(113583, 'https://ror.org/02pdrss67', 'pt', 1, 'https://ror.org/02pdrss67 UPTEC Associação de Transferência de Tecnologia da Asprela'),
(113584, 'https://ror.org/04my2jj52', 'en', 1, 'https://ror.org/04my2jj52 Center for Strategic and International Studies'),
(113585, 'https://ror.org/055d6gv91', 'en', 1, 'https://ror.org/055d6gv91 Middlemore Hospital'),
(113586, 'https://ror.org/00pcqj134', 'fr', 1, 'https://ror.org/00pcqj134 Biologie Computationnelle, Quantitative et SynthƩtique Computational, Quantitative and Synthetic Biology'),
(113587, 'https://ror.org/00d2ka202', 'pt', 1, 'https://ror.org/00d2ka202 Unidade Local de SaĆŗde de Entre Douro e Vouga'),
(113588, 'https://ror.org/01yc7td35', 'fr', 1, 'https://ror.org/01yc7td35 Centre de recherche Inter-langues sur la Signification en contexte'),
(113589, 'https://ror.org/00qpxe165', 'no_lang_code', 1, 'https://ror.org/00qpxe165 Faculty (United Kingdom)'),
(113590, 'https://ror.org/04wymav61', 'en', 1, 'https://ror.org/04wymav61 College of Law and Business'),
(113591, 'https://ror.org/04n6j6456', 'en', 1, 'https://ror.org/04n6j6456 Izmir Biomedicine and Genome Center İzmir Biyotıp ve Genom Merkezi'),
(113592, 'https://ror.org/04bh77w19', 'pt', 1, 'https://ror.org/04bh77w19 MBA Consultores Interdisciplinares de Gestão Lda (Portugal) MBA Interdisciplinary Management Consultants'),
(113593, 'https://ror.org/01cgac405', 'fr', 1, 'https://ror.org/01cgac405 Chimie de la MatiĆØre Complexe'),
(113594, 'https://ror.org/02bhhaf78', 'fr', 1, 'https://ror.org/02bhhaf78 Chimie, Ʃlectrochimie molƩculaires et chimie analytique Laboratoire Chimie Electrochimie MolƩculaires et Chimie Analytique'),
(113595, 'https://ror.org/03vzbgh69', 'en', 1, 'https://ror.org/03vzbgh69 University Medical Center Freiburg UniversitƤtsklinikum Freiburg'),
(113596, 'https://ror.org/05g7gad22', 'fr', 1, 'https://ror.org/05g7gad22 Laboratoire BioingƩnierie et Nanosciences'),
(113597, 'https://ror.org/029j2x431', 'en', 1, 'https://ror.org/029j2x431 Center for Social and Economic Research'),
(113598, 'https://ror.org/05dfgh554', 'en', 1, 'https://ror.org/05dfgh554 Koninklijk Nederlands Meteorologisch Instituut Royal Netherlands Meteorological Institute'),
(113599, 'https://ror.org/0115n5160', 'en', 1, 'https://ror.org/0115n5160 California Natural Resources Agency'),
(113600, 'https://ror.org/02r4hg260', 'ms', 1, 'https://ror.org/02r4hg260 Universiti Poly-Tech Malaysia University Poly-Tech Malaysia'),
(113601, 'https://ror.org/02spp2390', 'en', 1, 'https://ror.org/02spp2390 Club Of Vienna'),
(113602, 'https://ror.org/02c4ps936', 'pt', 1, 'https://ror.org/02c4ps936 ISOPlexis Banco de Germoplasma'),
(113603, 'https://ror.org/05sktda64', 'en', 1, 'https://ror.org/05sktda64 Dongguan EnlifeStem Cell Biotechnology Research Institute ę©č”å¹²ē»†čƒžē”Ÿē‰©ē§‘ęŠ€ē ”ē©¶é™¢'),
(113604, 'https://ror.org/005hw9085', 'fr', 1, 'https://ror.org/005hw9085 Centre d''Ʃtudes supƩrieures de civilisation mƩdiƩvale'),
(113605, 'https://ror.org/04vcan916', 'en', 1, 'https://ror.org/04vcan916 Lev Hasharon Hospital ×ž×Ø×›×– רפואי ×œ×‘×Ø×™××•×Ŗ הנפש לב ×”×©×Ø×•×Ÿ'),
(113606, 'https://ror.org/0198g6d77', 'pt', 1, 'https://ror.org/0198g6d77 Laboratório de Métodos MatemÔticos'),
(113607, 'https://ror.org/049pzty39', 'en', 1, 'https://ror.org/049pzty39 Bayero University Kano YunifÔsítì BÔyéró'),
(113608, 'https://ror.org/048rh7f34', 'en', 1, 'https://ror.org/048rh7f34 Jubilo Co., Ltd. ę Ŗå¼ä¼šē¤¾ć‚øćƒ„ćƒ“ćƒ­'),
(113609, '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'),
(113610, 'https://ror.org/032qr8837', 'en', 1, 'https://ror.org/032qr8837 ActualSales (Portugal)'),
(113611, 'https://ror.org/01tme4g53', 'fr', 1, 'https://ror.org/01tme4g53 Performance SantƩ, MƩtrologie, SociƩtƩ'),
(113612, 'https://ror.org/00cs0m088', 'pt', 1, 'https://ror.org/00cs0m088 Universidade de Coimbra Unidade de Investigação e Desenvolvimento Química-Física Molecular'),
(113613, 'https://ror.org/04pyb7y63', 'en', 1, 'https://ror.org/04pyb7y63 Fondazione Internazionale per la Ricerca Sulla Combustione International Flame Research Foundation'),
(113614, 'https://ror.org/03jca6281', 'fr', 1, 'https://ror.org/03jca6281 Laboratoire de MathĆ©matiques et ModĆ©lisation d''Ɖvry'),
(113615, 'https://ror.org/044tay155', 'en', 1, 'https://ror.org/044tay155 Polissia National University ŠŸŠ¾Š»Ń–ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(113616, 'https://ror.org/01qc87q47', 'pt', 1, 'https://ror.org/01qc87q47 Cooperativa de Viveiristas da Ria Formosa'),
(113617, 'https://ror.org/051f3f740', 'fr', 1, 'https://ror.org/051f3f740 Ɖcologie et Biologie des Interactions'),
(113618, 'https://ror.org/0184qbg02', 'en', 1, 'https://ror.org/0184qbg02 Parker Institute for Cancer Immunotherapy'),
(113619, 'https://ror.org/045f3jn20', 'pt', 1, 'https://ror.org/045f3jn20 Comprehensive Health Research Centre Escola Nacional SaĆŗde PĆŗblica'),
(113620, 'https://ror.org/02h7vzs32', 'en', 1, 'https://ror.org/02h7vzs32 Korea Development Institute ķ•œźµ­ź°œė°œģ—°źµ¬ģ›'),
(113621, 'https://ror.org/044q54x11', 'en', 0, 'https://ror.org/044q54x11 Globe University'),
(113622, 'https://ror.org/05wzh1m37', 'fr', 1, 'https://ror.org/05wzh1m37 Institut de Chimie MolƩculaire et des MatƩriaux d''Orsay'),
(113623, 'https://ror.org/05pchb838', 'fr', 1, 'https://ror.org/05pchb838 Structure et InstabilitƩ des GƩnomes'),
(113624, 'https://ror.org/0266kfd37', 'fr', 1, 'https://ror.org/0266kfd37 Laboratoire des Sciences et Techniques de l’Information de la Communication et de la Connaissance'),
(113625, 'https://ror.org/01vw8fh89', 'en', 1, 'https://ror.org/01vw8fh89 DoƱa Ana Community College'),
(113626, 'https://ror.org/04r5fv176', 'id', 1, 'https://ror.org/04r5fv176 Universitas Putera Batam'),
(113627, 'https://ror.org/03re1b483', 'pt', 1, 'https://ror.org/03re1b483 Unidade Local de Saúde do Médio Ave'),
(113628, 'https://ror.org/04phvyw96', 'en', 1, 'https://ror.org/04phvyw96 Advanced Space, LLC Advanced Space, LLC (United States)'),
(113629, 'https://ror.org/02akmdw70', 'en', 1, 'https://ror.org/02akmdw70 Deccan College of Medical Sciences'),
(113630, 'https://ror.org/0572v5y16', 'en', 1, 'https://ror.org/0572v5y16 University College Lahore'),
(113631, 'https://ror.org/04r006569', 'en', 1, 'https://ror.org/04r006569 Mandeville Regional Hospital'),
(113632, 'https://ror.org/04ffrtr26', 'pt', 1, 'https://ror.org/04ffrtr26 Equipa de Tratamento de Gondomar (Portugal) Gondomar Treatment Team'),
(113633, 'https://ror.org/038a20b58', 'fr', 1, 'https://ror.org/038a20b58 Institut de MathƩmatiques de Toulon'),
(113634, 'https://ror.org/01gb5wb80', 'en', 1, 'https://ror.org/01gb5wb80 Chongqing Institute for Brain and Intelligence é‡åŗ†č„‘äøŽē§‘å­¦äø­åæƒ'),
(113635, 'https://ror.org/057et8d07', 'pt', 1, 'https://ror.org/057et8d07 Centro de Estudos sobre Ɓfrica e do Desenvolvimento'),
(113636, 'https://ror.org/04140y156', 'fr', 1, 'https://ror.org/04140y156 CEA Marcoule'),
(113637, 'https://ror.org/03n4d6s10', 'id', 1, 'https://ror.org/03n4d6s10 Yayasan Aliansi Cendekiawan Indonesia Thailand'),
(113638, 'https://ror.org/01w9cfb64', 'en', 1, 'https://ror.org/01w9cfb64 Kenya Wildlife Service Shirika la Huduma kwa Wanyama Pori ya Kenya'),
(113639, 'https://ror.org/01yr0r787', 'fr', 1, 'https://ror.org/01yr0r787 Laboratoire des Sciences des ProcƩdƩs et des MatƩriaux'),
(113640, 'https://ror.org/03qv5tx95', 'no_lang_code', 1, 'https://ror.org/03qv5tx95 Hygeia Hospital ΄γεία'),
(113641, 'https://ror.org/025k44790', 'no_lang_code', 1, 'https://ror.org/025k44790 Human Factors (Norway)'),
(113642, 'https://ror.org/01hhczc28', 'en', 1, 'https://ror.org/01hhczc28 University of Benin Teaching Hospital'),
(113643, 'https://ror.org/00zk5w269', 'id', 1, 'https://ror.org/00zk5w269 Universitas Sari Mutiara Indonesia'),
(113644, 'https://ror.org/056wg8a82', 'en', 1, 'https://ror.org/056wg8a82 Le Bonheur Children''s Hospital'),
(113645, 'https://ror.org/01aqxgr98', 'fr', 1, 'https://ror.org/01aqxgr98 Informatique, BioInformatique, SystĆØmes Complexes'),
(113646, 'https://ror.org/00bmw1713', 'en', 1, 'https://ror.org/00bmw1713 Ministry of Defence, Sri Lanka ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®…ą®®ąÆˆą®šąÆą®šąÆ ą¶†ą¶»ą¶šą·Šą·‚ą¶š ą¶…ą¶øą·ą¶­ą·Šą¶ŗą·ą¶‚ą·ą¶ŗ'),
(113647, 'https://ror.org/01m7pan94', 'en', 1, 'https://ror.org/01m7pan94 Guru Gobind Singh Medical College and Hospital'),
(113648, 'https://ror.org/05xtnfk88', 'en', 1, 'https://ror.org/05xtnfk88 Venice International University'),
(113649, 'https://ror.org/045n0ms44', 'en', 1, 'https://ror.org/045n0ms44 Universitas Palangka Raya University of Palangka Raya'),
(113650, 'https://ror.org/04xy18872', 'en', 1, 'https://ror.org/04xy18872 Royal College of Psychiatrists'),
(113651, 'https://ror.org/04bs0e027', 'no_lang_code', 1, 'https://ror.org/04bs0e027 EDF Energy (United Kingdom)'),
(113652, 'https://ror.org/02wrme198', 'fr', 1, 'https://ror.org/02wrme198 GIPSA-Lab'),
(113653, 'https://ror.org/04s4wx134', 'en', 1, 'https://ror.org/04s4wx134 Community Health Systems - Siloam Springs Regional Hospital'),
(113654, 'https://ror.org/03116sx88', 'pt', 1, 'https://ror.org/03116sx88 Centro IDEA'),
(113655, 'https://ror.org/01nqeyn25', 'en', 1, 'https://ror.org/01nqeyn25 Northern Care Alliance NHS Foundation Trust'),
(113656, 'https://ror.org/01jfptw72', 'pt', 1, 'https://ror.org/01jfptw72 Centro UniversitÔrio do Triângulo'),
(113657, 'https://ror.org/05vrs3189', 'fr', 1, 'https://ror.org/05vrs3189 Centre de Recherche en Informatique, Signal et Automatique de Lille'),
(113658, 'https://ror.org/012wxdw12', 'fr', 1, 'https://ror.org/012wxdw12 Institut de Sciences des MatƩriaux de Mulhouse'),
(113659, 'https://ror.org/04qq88z54', 'en', 1, 'https://ror.org/04qq88z54 Deutsche Zentrum für Diabetesforschung German Center for Diabetes Research'),
(113660, 'https://ror.org/00rfccx09', 'fr', 1, 'https://ror.org/00rfccx09 Groupe de Recherche en Droit, Ɖconomie, Gestion'),
(113661, 'https://ror.org/02ctqqq48', 'fr', 1, 'https://ror.org/02ctqqq48 Laboratoire d’ArchĆ©ologie MolĆ©culaire et Structurale'),
(113662, 'https://ror.org/039aqbp11', 'fr', 1, 'https://ror.org/039aqbp11 Laboratoire GƩnie de Production'),
(113663, 'https://ror.org/02dm87055', 'en', 1, 'https://ror.org/02dm87055 Centre d’Estudis DemogrĆ fics Centre for Demographic Studies'),
(113664, 'https://ror.org/04450pb18', 'pt', 1, 'https://ror.org/04450pb18 Biblioteca Municipal Afonso Lopes Vieira'),
(113665, 'https://ror.org/0433haa75', 'no_lang_code', 1, 'https://ror.org/0433haa75 Hyundai Heavy Industries (South Korea)'),
(113666, 'https://ror.org/00mmgvh45', 'fr', 1, 'https://ror.org/00mmgvh45 Institut de Droit EuropƩen des Droits de l''Homme'),
(113667, 'https://ror.org/02aredd96', 'en', 1, 'https://ror.org/02aredd96 HIV Netherlands Australia Thailand Research Collaboration'),
(113668, 'https://ror.org/02gxxae53', 'id', 1, 'https://ror.org/02gxxae53 Universitas Panji Sakti'),
(113669, 'https://ror.org/04eexme77', 'es', 1, 'https://ror.org/04eexme77 Autonomous University of Chiapas Universidad Autónoma de Chiapas'),
(113670, 'https://ror.org/0113yba25', 'en', 0, 'https://ror.org/0113yba25 Waitemata District Health Board'),
(113671, 'https://ror.org/04w9m8m13', 'en', 1, 'https://ror.org/04w9m8m13 California Department of Water Resources'),
(113672, 'https://ror.org/04509n826', 'en', 1, 'https://ror.org/04509n826 Uganda Virus Research Institute'),
(113673, 'https://ror.org/01yqkfx81', 'en', 1, 'https://ror.org/01yqkfx81 Translational Research in Oncology'),
(113674, 'https://ror.org/0578b1302', 'pt', 1, 'https://ror.org/0578b1302 Brito Machado e Lima Lda (Portugal)'),
(113675, 'https://ror.org/04d41yh18', 'pt', 1, 'https://ror.org/04d41yh18 Cybereducation Language School of Moita Cyberensino Escola de LĆ­nguas da Moita (Portugal)'),
(113676, 'https://ror.org/03068yz51', 'en', 1, 'https://ror.org/03068yz51 EUNCET Business School'),
(113677, 'https://ror.org/02baj6743', 'fr', 1, 'https://ror.org/02baj6743 CIC Rennes Centre d''Investigation Clinique de Rennes'),
(113678, 'https://ror.org/023k5b089', 'en', 1, 'https://ror.org/023k5b089 Textile Research Institute'),
(113679, 'https://ror.org/039jjxy83', 'es', 1, 'https://ror.org/039jjxy83 Instituto Especializado Hospital El Salvador'),
(113680, 'https://ror.org/02y6fxd73', 'fr', 1, 'https://ror.org/02y6fxd73 Mondes AmƩricains'),
(113681, 'https://ror.org/0470n4p24', 'en', 1, 'https://ror.org/0470n4p24 Peninsula College'),
(113682, 'https://ror.org/05kmjt886', 'pt', 1, 'https://ror.org/05kmjt886 Faculdade Vale dos CarajƔs'),
(113683, 'https://ror.org/00yg5k213', 'en', 1, 'https://ror.org/00yg5k213 Community Health Systems - Baldwin Health'),
(113684, 'https://ror.org/04zjg3g33', 'no_lang_code', 1, 'https://ror.org/04zjg3g33 Labdeers Labdeers s.r.o. Labdeers s.r.o. (Czech Republic)'),
(113685, 'https://ror.org/03dg47v24', 'fr', 1, 'https://ror.org/03dg47v24 Laboratoire des Fluides Complexes et leurs RƩservoirs Laboratory of Complex Fluids and their Reservoirs'),
(113686, 'https://ror.org/0238k3s54', 'es', 1, 'https://ror.org/0238k3s54 Centro de Estudios Sociales Interdisciplinarios del Litoral'),
(113687, 'https://ror.org/04m3r0304', 'pt', 1, 'https://ror.org/04m3r0304 Odebrecht (Portugal)'),
(113688, 'https://ror.org/040m1gm26', 'id', 1, 'https://ror.org/040m1gm26 Universitas Surakarta'),
(113689, 'https://ror.org/0003ege03', 'fr', 1, 'https://ror.org/0003ege03 Centre de Recherches sur les MacromolƩcules VƩgƩtales'),
(113690, 'https://ror.org/0288j6s32', 'en', 1, 'https://ror.org/0288j6s32 Simposium Digital HealthCare (Portugal)'),
(113691, 'https://ror.org/01663qy58', 'en', 1, 'https://ror.org/01663qy58 Papageorgiou General Hospital'),
(113692, 'https://ror.org/03c6k9p96', 'no_lang_code', 1, 'https://ror.org/03c6k9p96 Haldor Topsoe (Denmark)'),
(113693, 'https://ror.org/04j8tay12', 'no_lang_code', 1, 'https://ror.org/04j8tay12 E4 Computer Engineering SpA E4 Computer Engineering SpA (Italy)'),
(113694, 'https://ror.org/016z31q49', 'pt', 1, 'https://ror.org/016z31q49 Center for Ethics in Business and Economics Centro de Investigação Interdisciplinar em Saúde Centro Regional de Viseu'),
(113695, 'https://ror.org/05ck8hg96', 'en', 1, 'https://ror.org/05ck8hg96 University of Technology and Applied Sciences-Salalah الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© صلالة'),
(113696, 'https://ror.org/0564r0810', 'no_lang_code', 1, 'https://ror.org/0564r0810 AU Optronics (Taiwan)'),
(113697, 'https://ror.org/04f5zf256', 'pt', 1, 'https://ror.org/04f5zf256 Clarke Modet (Portugal)'),
(113698, 'https://ror.org/05x9hft88', 'id', 1, 'https://ror.org/05x9hft88 Universitas Sahid Jakarta'),
(113699, 'https://ror.org/05w30hn31', 'en', 1, 'https://ror.org/05w30hn31 University of Computer Studies (Pakokku)'),
(113700, 'https://ror.org/048nbgd83', 'pt', 1, 'https://ror.org/048nbgd83 Rede de Bibliotecas Municipais de Oeiras'),
(113701, 'https://ror.org/02sz8cn84', 'fr', 1, 'https://ror.org/02sz8cn84 Institut de Recherche sur la Renaissance l''Age Classique et les LumiĆØres'),
(113702, 'https://ror.org/018d4rr63', 'fr', 1, 'https://ror.org/018d4rr63 Psychologie Ergonomique et Sociale pour l''ExpƩrience Utilisateurs'),
(113703, 'https://ror.org/05weeqx85', 'pt', 1, 'https://ror.org/05weeqx85 Governo da RepĆŗblica Portuguesa Gabinete de Estrategia e Planeamento'),
(113704, 'https://ror.org/020gwz349', 'no_lang_code', 1, 'https://ror.org/020gwz349 Herzog Hospital בית חולים הרצוג'),
(113705, 'https://ror.org/04z6kfz30', 'en', 1, 'https://ror.org/04z6kfz30 Lviv State University of Physical Culture Lwowski Państwowy Uniwersytet Kultury Fizycznej Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø імені Івана Š‘Š¾Š±ŠµŃ€ŃŃŒŠŗŠ¾Š³Š¾'),
(113706, 'https://ror.org/020yw9113', 'fr', 1, 'https://ror.org/020yw9113 Centre de documentation et de recherches europƩennes European Documentation and Research Centre'),
(113707, 'https://ror.org/02ek9wp67', 'fr', 1, 'https://ror.org/02ek9wp67 Groupement de Recherche en Ɖconomie Quantitative d’Aix-Marseille'),
(113708, 'https://ror.org/02xvk2686', 'en', 1, 'https://ror.org/02xvk2686 Muhimbili National Hospital'),
(113709, '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'),
(113710, 'https://ror.org/050svx916', 'en', 1, 'https://ror.org/050svx916 Dünyagöz Hospital'),
(113711, 'https://ror.org/00dc7yt09', 'es', 1, 'https://ror.org/00dc7yt09 Universidad Tecnológica del Sur del Estado de México'),
(113712, 'https://ror.org/03txr3336', 'fr', 1, 'https://ror.org/03txr3336 Institut de Combustion AƩrothermique RƩactivitƩ et Environnement'),
(113713, 'https://ror.org/00rxdng69', 'fr', 1, 'https://ror.org/00rxdng69 Centre universitaire de recherches sur l''Action Publique et le Politique ƉpistĆ©mologie & Sciences Sociales'),
(113714, 'https://ror.org/02xrtm572', 'en', 1, 'https://ror.org/02xrtm572 Garden City University ą²—ą²¾ą²°ą³ą²”ą²Øą³ ಸಿಟಿ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(113715, 'https://ror.org/04fz79c74', 'en', 1, 'https://ror.org/04fz79c74 Universidad de Palermo University of Palermo'),
(113716, 'https://ror.org/02fdv8735', 'en', 1, 'https://ror.org/02fdv8735 Lagrange Laboratory'),
(113717, 'https://ror.org/05cx7ek10', 'fr', 1, 'https://ror.org/05cx7ek10 Structure FƩdƩrative de Recherche en Biologie et SantƩ de Rennes'),
(113718, 'https://ror.org/010kha811', 'fr', 1, 'https://ror.org/010kha811 Laboratoire ActivitƩ Connaissance Transmission Education'),
(113719, 'https://ror.org/05wfw4946', 'fr', 1, 'https://ror.org/05wfw4946 Escuela Nacional Superior de ElectrotĆ©cnica, Electrónica, InformĆ”tica, HidrĆ”ulica y Telecomunicaciones de Toulouse National Institute of Electrical Engineering, Electronics, Computer Science,Fluid Mechanics & Telecommunications and Networks Ɖcole Nationale SupĆ©rieure d''Ɖlectrotechnique, d''Ɖlectronique, d''Informatique, d''Hydraulique et des TĆ©lĆ©communications'),
(113720, 'https://ror.org/030vbff53', 'id', 1, 'https://ror.org/030vbff53 Universitas Muhammadiyah Sumatera Barat'),
(113721, 'https://ror.org/0296dfd82', 'en', 1, 'https://ror.org/0296dfd82 Salusplanet (Portugal)'),
(113722, 'https://ror.org/019bz1656', 'en', 1, 'https://ror.org/019bz1656 Clinical Center University of Sarajevo'),
(113723, 'https://ror.org/037n2rm85', 'en', 1, 'https://ror.org/037n2rm85 Amsterdam Institute for Global Health and Development'),
(113724, 'https://ror.org/01agk4b09', 'en', 1, 'https://ror.org/01agk4b09 Konrad Lorenz Institute for Evolution and Cognition Research'),
(113725, 'https://ror.org/03r06fs10', 'en', 1, 'https://ror.org/03r06fs10 Nordic Institute for Theoretical Physics'),
(113726, 'https://ror.org/0393cer54', 'fr', 1, 'https://ror.org/0393cer54 Centre de Recherches sur le Droit Public'),
(113727, 'https://ror.org/02r6xw279', 'pt', 1, 'https://ror.org/02r6xw279 Clƭnica UniversitƔria de Obstetrƭcia e Ginecologia'),
(113728, 'https://ror.org/02xz4xc25', 'it', 1, 'https://ror.org/02xz4xc25 Istituto per le Tecnologie Didattiche'),
(113729, 'https://ror.org/01k1p1v52', 'de', 1, 'https://ror.org/01k1p1v52 Klinikum Braunschweig'),
(113730, 'https://ror.org/03xmje391', 'en', 1, 'https://ror.org/03xmje391 Rajiv Gandhi Technical University ą¤°ą¤¾ą¤œą„€ą¤µ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Ær'),
(113731, 'https://ror.org/05d9dsr70', 'en', 1, 'https://ror.org/05d9dsr70 Impact'),
(113732, 'https://ror.org/05k2sd416', 'fr', 1, 'https://ror.org/05k2sd416 Centre de Recherche en Economie et Droit Paris Center for Law and Economics'),
(113733, 'https://ror.org/03x05ds80', 'en', 1, 'https://ror.org/03x05ds80 Community Health Systems - Moberly Regional Medical Center'),
(113734, 'https://ror.org/01240pn49', 'en', 1, 'https://ror.org/01240pn49 Menlo School'),
(113735, 'https://ror.org/04pfm5x27', 'fr', 1, 'https://ror.org/04pfm5x27 Travaux et Recherches ArchƩologiques sur les Cultures, les Espaces et les SociƩtƩs'),
(113736, 'https://ror.org/001xj8m36', 'en', 1, 'https://ror.org/001xj8m36 Institut za antropologiju Institute for Anthropological Research'),
(113737, 'https://ror.org/01ceg4t15', 'fr', 0, 'https://ror.org/01ceg4t15 Biologie VƩgƩtale et de Microbiologie Environnementales'),
(113738, 'https://ror.org/0586n4j57', 'en', 1, 'https://ror.org/0586n4j57 Institute of Health Service and Transfusion Medicine å«ē”ŸęœåŠ”å’Œč¾“č”€åŒ»å­¦ē ”ē©¶ę‰€'),
(113739, 'https://ror.org/05asf4e91', 'fr', 1, 'https://ror.org/05asf4e91 L''Alliance Boviteq'),
(113740, 'https://ror.org/05ecdew94', 'en', 1, 'https://ror.org/05ecdew94 Institut Ontarien Ontario Brain Institute'),
(113741, 'https://ror.org/00w6r1881', 'en', 1, 'https://ror.org/00w6r1881 Institute of Nanostructured Materials Istituto per lo Studio dei Materiali Nanostrutturati'),
(113742, 'https://ror.org/02nrv4053', 'en', 1, 'https://ror.org/02nrv4053 The Football Association'),
(113743, 'https://ror.org/00aa7ab77', 'en', 1, 'https://ror.org/00aa7ab77 Scientific Research Institute of Organic Intermediates and Dyes Š¤Š“Š£ŠŸ Ā«Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр ā€žŠŠ˜ŠžŠŸŠ˜Ššā€œ'),
(113744, 'https://ror.org/009afhj46', 'en', 1, 'https://ror.org/009afhj46 Fucape Business School'),
(113745, 'https://ror.org/05fzc8c45', 'en', 1, 'https://ror.org/05fzc8c45 Tambov State University Тамбовский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(113746, 'https://ror.org/02mtpz628', 'fr', 1, 'https://ror.org/02mtpz628 Hypoxie et Poumon'),
(113747, 'https://ror.org/01xh8h870', 'en', 1, 'https://ror.org/01xh8h870 Community Health Systems - Northwest Medical Center - Sahuarita'),
(113748, 'https://ror.org/00nkcmy90', 'en', 1, 'https://ror.org/00nkcmy90 National Bank of Austria Ɩsterreichische Nationalbank'),
(113749, 'https://ror.org/049913966', 'en', 1, 'https://ror.org/049913966 Kuma Hospital åŒ»ē™‚ę³•äŗŗē„žē”²ä¼šéšˆē—…é™¢'),
(113750, 'https://ror.org/028zzeg76', 'en', 1, 'https://ror.org/028zzeg76 Faculty of Industrial Engineering Novo Mesto Fakulteta za industrijski inženiring Novo mesto'),
(113751, 'https://ror.org/05w9qrp28', 'fr', 1, 'https://ror.org/05w9qrp28 Modélisation, information et systèmes'),
(113752, 'https://ror.org/05gsdmj20', 'pt', 1, 'https://ror.org/05gsdmj20 Centre for Studies Languages and Training of Funchal Centro de Estudos Línguas e Formação do Funchal (Portugal)'),
(113753, 'https://ror.org/04kcjtk03', 'fr', 1, 'https://ror.org/04kcjtk03 IdentitƩs et DiffƩrenciation de l''Environnement des Espaces et des SociƩtƩs'),
(113754, 'https://ror.org/02snf5j61', 'en', 1, 'https://ror.org/02snf5j61 University Hospital, Newark'),
(113755, 'https://ror.org/05rwrfh97', 'fr', 1, 'https://ror.org/05rwrfh97 Institut Fourier'),
(113756, 'https://ror.org/01x18vk56', 'no_lang_code', 1, 'https://ror.org/01x18vk56 Sir Ganga Ram Hospital'),
(113757, 'https://ror.org/01b436806', 'fr', 1, 'https://ror.org/01b436806 CIRED Centre international de recherche sur l’environnement et le dĆ©veloppement'),
(113758, 'https://ror.org/025gc2882', 'en', 1, 'https://ror.org/025gc2882 Community Health Systems - Tennova - Newport Medical'),
(113759, 'https://ror.org/04k0drf78', 'fr', 1, 'https://ror.org/04k0drf78 Institut photonique d''analyse non-destructive europƩen des matƩriaux anciens'),
(113760, 'https://ror.org/04kkb3773', 'en', 1, 'https://ror.org/04kkb3773 National Fisheries University å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę°“ē”£ē ”ē©¶ćƒ»ę•™č‚²ę©Ÿę§‹ę°“ē”£å¤§å­¦ę ”'),
(113761, 'https://ror.org/059ty5v23', 'en', 1, 'https://ror.org/059ty5v23 Central Philippines State University'),
(113762, 'https://ror.org/051xgzg37', 'en', 1, 'https://ror.org/051xgzg37 Stockholm Environment Institute'),
(113763, 'https://ror.org/029hkd614', 'fr', 1, 'https://ror.org/029hkd614 Laboratoire Navier'),
(113764, 'https://ror.org/02ct4pf45', 'pt', 0, 'https://ror.org/02ct4pf45 Empresa Portuguesa de Defesa SGPS (Portugal) Portuguese Defense Company'),
(113765, 'https://ror.org/05reesp83', 'en', 1, 'https://ror.org/05reesp83 University Psychiatric Hospital Univerzitetna psihiatrična klinika Ljubljana'),
(113766, 'https://ror.org/01sgmr115', 'en', 1, 'https://ror.org/01sgmr115 Community Health Systems - DeTar Healthcare System - North'),
(113767, 'https://ror.org/00t01w369', 'no_lang_code', 1, 'https://ror.org/00t01w369 Simcere Pharmaceutical (China) å…ˆå£°čÆäøš'),
(113768, 'https://ror.org/03e4a0h58', 'en', 1, 'https://ror.org/03e4a0h58 St. John''s School'),
(113769, 'https://ror.org/04yknsj87', 'fr', 1, 'https://ror.org/04yknsj87 Laboratoire Cultures et Diffusion des Savoirs'),
(113770, 'https://ror.org/05v1frz10', 'no_lang_code', 1, 'https://ror.org/05v1frz10 United Aircraft (Russia) ŠžŠ±ŃŠŠµŠ“ŠøŠ½Ń‘Š½Š½Š°Ń Š°Š²ŠøŠ°ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń ŠŗŠ¾Ń€ŠæŠ¾Ń€Š°Ń†ŠøŃ'),
(113771, 'https://ror.org/02t2hg116', 'fr', 1, 'https://ror.org/02t2hg116 Institut des Sciences de la Terre d''OrlƩans'),
(113772, 'https://ror.org/00pc6ac31', 'no_lang_code', 1, 'https://ror.org/00pc6ac31 Analytical Mechanics Associates (United States)'),
(113773, 'https://ror.org/057bjmy35', 'es', 1, 'https://ror.org/057bjmy35 Centro de Investigación HÔbitat y Municipio'),
(113774, 'https://ror.org/018z38380', 'fr', 1, 'https://ror.org/018z38380 COMETE - MobilitƩs : Vieillissement, pathologie, santƩ'),
(113775, 'https://ror.org/05x4pgd18', 'en', 1, 'https://ror.org/05x4pgd18 Alaska Heart and Vascular Institute'),
(113776, 'https://ror.org/04dc9g452', 'de', 1, 'https://ror.org/04dc9g452 Klinikum Osnabrück'),
(113777, 'https://ror.org/02zwjz895', 'cs', 1, 'https://ror.org/02zwjz895 Nemocnice ČeskĆ© Budějovice'),
(113778, 'https://ror.org/05874db82', 'en', 1, 'https://ror.org/05874db82 Excellence Cluster Universe Exzellenzcluster Universe'),
(113779, 'https://ror.org/04szabx38', 'fr', 1, 'https://ror.org/04szabx38 Institut de Biologie Structurale'),
(113780, 'https://ror.org/04mj3zw98', 'de', 1, 'https://ror.org/04mj3zw98 Klinikum Fürth'),
(113781, 'https://ror.org/00stdgd87', 'en', 1, 'https://ror.org/00stdgd87 Ferraz Pharma (Portugal)'),
(113782, 'https://ror.org/04apdjp43', 'id', 1, 'https://ror.org/04apdjp43 Universitas Labuhanbatu'),
(113783, 'https://ror.org/04b57z061', 'en', 1, 'https://ror.org/04b57z061 Center for Wireless Communications'),
(113784, 'https://ror.org/01rzzcx32', 'fr', 1, 'https://ror.org/01rzzcx32 Centre de Recherches Critiques sur le Droit'),
(113785, 'https://ror.org/0293jn610', 'fr', 1, 'https://ror.org/0293jn610 Adaptation and Diversity in the Marine Environment Adaptation et DiversitƩ en Milieu Marin'),
(113786, 'https://ror.org/05r01rq71', 'en', 1, 'https://ror.org/05r01rq71 Govt. Tibbi College & Hospital ą¤°ą¤¾ą¤œą¤•ą„€ą¤Æ ą¤¤ą¤æą¤¬ą„ą¤¬ą„€ ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤ą¤µą¤‚ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(113787, 'https://ror.org/04qhq0392', 'no_lang_code', 1, 'https://ror.org/04qhq0392 D.V.Efremov Institute of Electrophysical Apparatus (Russia)'),
(113788, 'https://ror.org/02485re30', 'fr', 0, 'https://ror.org/02485re30 Centre de Recherche Public de la SantƩ'),
(113789, 'https://ror.org/00j8epd55', 'fr', 1, 'https://ror.org/00j8epd55 CEA Gramat'),
(113790, 'https://ror.org/03m5fme96', 'en', 1, 'https://ror.org/03m5fme96 Nagahama Institute of Bio-Science and Technology é•·ęµœćƒć‚¤ć‚Ŗå¤§å­¦'),
(113791, 'https://ror.org/00ssy9q55', 'fr', 1, 'https://ror.org/00ssy9q55 Laboratoire d’Astrophysique de Marseille'),
(113792, 'https://ror.org/02zhyrb63', 'en', 1, 'https://ror.org/02zhyrb63 Institute of Immunology'),
(113793, 'https://ror.org/05wwwfn44', 'id', 1, 'https://ror.org/05wwwfn44 Rumah Sakit Umum Pusat Dr. Sardjito'),
(113794, 'https://ror.org/01kysxr05', 'fr', 1, 'https://ror.org/01kysxr05 Centre d’études en sciences sociales du religieux'),
(113795, 'https://ror.org/01tynvf67', 'en', 1, 'https://ror.org/01tynvf67 Fakeeh College for Medical Sciences ŁƒŁ„ŁŠŲ© ŁŁ‚ŁŠŁ‡ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ©'),
(113796, 'https://ror.org/053e7we70', 'en', 1, 'https://ror.org/053e7we70 International Zinc Association'),
(113797, 'https://ror.org/05abgg682', 'fr', 1, 'https://ror.org/05abgg682 Institut de minƩralogie, de physique des matƩriaux et de cosmochimie'),
(113798, 'https://ror.org/006wm7015', 'en', 1, 'https://ror.org/006wm7015 Federal Research Center ā€œComputer Science and Controlā€ of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр "Š˜Š½Ń„Š¾Ń€Š¼Š°Ń‚ŠøŠŗŠ° Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŠµ" Российской АкаГемии ŠŠ°ŃƒŠŗ'),
(113799, 'https://ror.org/04shvqs44', 'pt', 1, 'https://ror.org/04shvqs44 Centro Interdisciplinar de Desenvolvimento e Investigação em Ambiente Gestão Aplicada e Espaço'),
(113800, 'https://ror.org/005xkwy83', 'en', 1, 'https://ror.org/005xkwy83 Tokyo Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ę±äŗ¬åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(113801, 'https://ror.org/005d8s603', 'en', 1, 'https://ror.org/005d8s603 University of Finance and Economics Данхүү ЭГийн Засгийн Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(113802, 'https://ror.org/0546daj73', 'fr', 1, 'https://ror.org/0546daj73 Institut de Recherche en Gestion'),
(113803, 'https://ror.org/038ymyw44', 'en', 1, 'https://ror.org/038ymyw44 Institute of Medicine ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(113804, 'https://ror.org/007bpwb04', 'es', 1, 'https://ror.org/007bpwb04 Fundacion Agencia Aragonesa para la Investigacion y el Desarrollo'),
(113805, 'https://ror.org/02qv6pw23', 'en', 1, 'https://ror.org/02qv6pw23 JMI Laboratories'),
(113806, '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'),
(113807, 'https://ror.org/00d2w9g53', 'en', 1, 'https://ror.org/00d2w9g53 Shenzhen Polytechnic University ę·±åœ³čŒäøšęŠ€ęœÆå¤§å­¦'),
(113808, 'https://ror.org/02cq7de70', 'en', 0, 'https://ror.org/02cq7de70 Counties Manukau District Health Board'),
(113809, 'https://ror.org/056a6x975', 'en', 1, 'https://ror.org/056a6x975 Ministerie van Infrastructuur en Waterstaat Ministry of Infrastructure and Water Management'),
(113810, 'https://ror.org/00dgdgj39', 'fr', 1, 'https://ror.org/00dgdgj39 Institut de Recherche bio-MƩdicale et d''EpidƩmiologie du Sport'),
(113811, 'https://ror.org/00vc1fz20', 'en', 1, 'https://ror.org/00vc1fz20 Universitas Singaperbangsa Karawang University of Singaperbangsa Karawang'),
(113812, 'https://ror.org/0445pp755', 'en', 1, 'https://ror.org/0445pp755 Community Health Systems - Western Arizona Regional Medical Center'),
(113813, 'https://ror.org/010jktr86', 'en', 1, 'https://ror.org/010jktr86 Norwegian Metrology Service'),
(113814, 'https://ror.org/01mvyk241', 'pt', 1, 'https://ror.org/01mvyk241 Centro de Estudos de Medicina Baseada na EvidĆŖncia'),
(113815, 'https://ror.org/057zxgz05', 'pt', 1, 'https://ror.org/057zxgz05 Sociedade Portuguesa para o Estudo da CrianƧa Abusada e Negligenciada'),
(113816, 'https://ror.org/05nc04d72', 'en', 1, 'https://ror.org/05nc04d72 Varzim Sport Club (Portugal)'),
(113817, 'https://ror.org/04c1dx793', 'en', 1, 'https://ror.org/04c1dx793 PSG Institute of Medical Sciences & Research'),
(113818, 'https://ror.org/02yqx2d54', 'pt', 1, 'https://ror.org/02yqx2d54 Centro de Estudos HumanĆ­sticos'),
(113819, 'https://ror.org/05n8p6v35', 'pt', 1, 'https://ror.org/05n8p6v35 Inproplant Investigação e Propagação de Plantas Lda (Portugal) Inproplant Research and Plant Propagation'),
(113820, 'https://ror.org/0010jkx06', 'en', 1, 'https://ror.org/0010jkx06 Indira Gandhi Institute of Technology ą¬‡ą¬Øą­ą¬¦ą¬æą¬°ą¬¾ ą¬—ą¬¾ą¬Øą­ą¬§ą­€ ą¬¬ą­ˆą¬·ą­Ÿą¬æą¬• ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ)'),
(113821, 'https://ror.org/00wx1mx58', 'fr', 1, 'https://ror.org/00wx1mx58 Maison ArchƩologie & Ethnologie Maison des Sciences de l''Homme Mondes'),
(113822, 'https://ror.org/03yvcww04', 'en', 1, 'https://ror.org/03yvcww04 North Shore Hospital'),
(113823, 'https://ror.org/04wekvh85', 'no_lang_code', 1, 'https://ror.org/04wekvh85 Berlin Heart (Germany)'),
(113824, 'https://ror.org/02k6n4s14', 'fr', 1, 'https://ror.org/02k6n4s14 Ɖcole Centrale d''Ɖlectronique'),
(113825, 'https://ror.org/02vsk8523', 'en', 1, 'https://ror.org/02vsk8523 Community Health Systems - MountainView Regional Medical Center'),
(113826, 'https://ror.org/05m39ny52', 'it', 1, 'https://ror.org/05m39ny52 Autonome Region Trentino-Südtirol Regione Autonoma Trentino-Alto Adige/Südtirol'),
(113827, 'https://ror.org/046htjf88', 'en', 1, 'https://ror.org/046htjf88 PHENIX laboratory'),
(113828, 'https://ror.org/04esgv207', 'en', 1, 'https://ror.org/04esgv207 Rashtrasant Tukadoji Maharaj Nagpur University راؓٹرسنت ŲŖŚ©Ś‘Łˆ جی مہاراج Ł†Ų§ŚÆŁ¾ŁˆŲ± ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ą¤Øą¤¾ą¤—ą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤øą¤‚ą¤¤ ą¤¤ą„ą¤•ą¤”ą„‹ą¤œą„€ महाराज ą¤Øą¤¾ą¤—ą¤Ŗą„‚ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą®Øą®¾ą®•ąÆą®ŖąÆ‚ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(113829, 'https://ror.org/05836q555', 'en', 1, 'https://ror.org/05836q555 Community Health Systems - Lutheran Kosciusko Hospital'),
(113830, 'https://ror.org/001ydyr37', 'no_lang_code', 1, 'https://ror.org/001ydyr37 TƩcnicas Reunidas (Spain)'),
(113831, 'https://ror.org/0502mw613', 'fr', 1, 'https://ror.org/0502mw613 Centre Franco-Ɖgyptien d’Étude des Temples de Karnak'),
(113832, 'https://ror.org/03w8bdr46', 'fr', 1, 'https://ror.org/03w8bdr46 CERC - Centre d''Ɖtudes et de Recherches Comparatistes Centre d''Ɖtudes et de Recherches Comparatistes'),
(113833, 'https://ror.org/03dvbtn06', 'pt', 1, 'https://ror.org/03dvbtn06 Centro UniversitƔrio Maria Milza University Center Maria Milza'),
(113834, 'https://ror.org/03n19p393', 'pt', 1, 'https://ror.org/03n19p393 Serviço de Intervenção nos Comportamentos Aditivos e nas Dependências IP'),
(113835, 'https://ror.org/05m14rs93', 'fr', 1, 'https://ror.org/05m14rs93 Laboratoire d’OcĆ©anologie et de GĆ©osciences'),
(113836, 'https://ror.org/05d1e6v30', 'fr', 1, 'https://ror.org/05d1e6v30 Institut des BiomolƩcules Max Mousseron'),
(113837, 'https://ror.org/04871v221', 'pt', 1, 'https://ror.org/04871v221 Centro de Estudos de Gestão e Economia Aplicada'),
(113838, 'https://ror.org/04zf11v35', 'pt', 1, 'https://ror.org/04zf11v35 Instituto de Psicologia e Neuropsicologia do Porto (Portugal)'),
(113839, 'https://ror.org/0190rta27', 'en', 1, 'https://ror.org/0190rta27 Ahsania Mission Cancer and General Hospital আহছানিয়া মিশন ą¦•ą§ą¦Æą¦¾ą¦Øą§ą¦øą¦¾ą¦° ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦œą§‡ą¦Øą¦¾ą¦°ą§‡ą¦² হাসপাতাল'),
(113840, 'https://ror.org/052wpc865', 'fr', 1, 'https://ror.org/052wpc865 Centre d’études des Mondes Russe, Caucasien et Centre-EuropĆ©en'),
(113841, 'https://ror.org/02a2sfd38', 'de', 1, 'https://ror.org/02a2sfd38 Klinikum Esslingen'),
(113842, 'https://ror.org/05xxfer42', 'pt', 1, 'https://ror.org/05xxfer42 Lusophone University of Humanities and Technologies Universidade Lusófona'),
(113843, 'https://ror.org/014net767', 'fr', 1, 'https://ror.org/014net767 Laboratoire de Physico-Chimie de l''AtmosphĆØre Laboratoire de Physico-Chimie de l’AtmosphĆØre'),
(113844, 'https://ror.org/05fkhqk36', 'no_lang_code', 1, 'https://ror.org/05fkhqk36 Micron (Taiwan)'),
(113845, 'https://ror.org/02mc6qk71', 'fr', 1, 'https://ror.org/02mc6qk71 Laboratoire de Physique et ModƩlisation des Milieux CondensƩs'),
(113846, 'https://ror.org/0432jqg48', 'pt', 1, 'https://ror.org/0432jqg48 Unidade Hospitalar de Chaves'),
(113847, 'https://ror.org/03q01be91', 'en', 1, 'https://ror.org/03q01be91 Fujieda Municipal General Hospital č—¤ęžåø‚ē«‹ē·åˆē—…é™¢'),
(113848, 'https://ror.org/009e9xr64', 'cs', 1, 'https://ror.org/009e9xr64 Bulovka Hospital FakultnĆ­ nemocnice Bulovka'),
(113849, 'https://ror.org/00ab9fg88', 'en', 1, 'https://ror.org/00ab9fg88 Russian Cancer Research Center NN Blokhin Российский онкологический Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр им. Š. Š. Блохина'),
(113850, 'https://ror.org/051nhwc34', 'pt', 1, 'https://ror.org/051nhwc34 Unidade Local de Saúde da Póvoa de Varzim/Vila do Conde'),
(113851, 'https://ror.org/0019x5d05', 'fr', 1, 'https://ror.org/0019x5d05 Institut de Biologie et de Chimie des ProtƩines'),
(113852, 'https://ror.org/02a9mrq41', 'fr', 1, 'https://ror.org/02a9mrq41 Groupe de Recherches sur l’Analyse Multimodale de la Fonction CĆ©rĆ©brale'),
(113853, 'https://ror.org/02y8hn179', 'de', 1, 'https://ror.org/02y8hn179 Klinikum St. Georg'),
(113854, 'https://ror.org/00rkrv905', 'fr', 1, 'https://ror.org/00rkrv905 La Ligue Contre le Cancer'),
(113855, 'https://ror.org/03vzf8p77', 'pl', 1, 'https://ror.org/03vzf8p77 Centrum Onkologii'),
(113856, 'https://ror.org/03fzyry86', 'es', 1, 'https://ror.org/03fzyry86 Hospital Universitari Sagrat Cor'),
(113857, 'https://ror.org/0065jf269', 'en', 1, 'https://ror.org/0065jf269 Community Health Systems - Laredo Medical Center'),
(113858, 'https://ror.org/03dy4aq19', 'en', 1, 'https://ror.org/03dy4aq19 James S. McDonnell Foundation'),
(113859, 'https://ror.org/02ca5k225', 'en', 1, 'https://ror.org/02ca5k225 Caucasus and Central Asia Research on Social Innovation - Research Center SHARQ Research Center SHARQ'),
(113860, 'https://ror.org/04t50yk91', 'fr', 1, 'https://ror.org/04t50yk91 Laboratoire d''Informatique Gaspard-Monge'),
(113861, 'https://ror.org/030d91z44', 'en', 1, 'https://ror.org/030d91z44 Royal Oldham Hospital'),
(113862, 'https://ror.org/02m26fm05', 'fr', 1, 'https://ror.org/02m26fm05 Voix Anglophones : LittƩrature et EsthƩtique'),
(113863, 'https://ror.org/03msd8560', 'en', 1, 'https://ror.org/03msd8560 Alberta Machine Intelligence Institute'),
(113864, 'https://ror.org/047p95y29', 'es', 1, 'https://ror.org/047p95y29 De Rotos y Descosidos S.C. De Rotos y Descosidos S.C. (Spain)'),
(113865, 'https://ror.org/05j27jv73', 'en', 1, 'https://ror.org/05j27jv73 Northampton Community College'),
(113866, 'https://ror.org/01hcvr073', 'en', 1, 'https://ror.org/01hcvr073 Ranchi University ą¤°ą¤¾ą¤‚ą¤šą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(113867, 'https://ror.org/01ct2fp44', 'en', 1, 'https://ror.org/01ct2fp44 Chartwell Actives LLC Chartwell Actives LLC (Portugal)'),
(113868, 'https://ror.org/03g8d4x11', 'es', 1, 'https://ror.org/03g8d4x11 Centro Tecnológico del Mar'),
(113869, 'https://ror.org/025y6ny17', 'en', 1, 'https://ror.org/025y6ny17 Institute for Cardiovascular Diseases of Vojvodina'),
(113870, 'https://ror.org/004rej139', 'fr', 1, 'https://ror.org/004rej139 Centre National de Recherches MƩtƩorologiques'),
(113871, 'https://ror.org/012yg2g20', 'en', 1, 'https://ror.org/012yg2g20 Columbia College - Missouri'),
(113872, 'https://ror.org/00zjprf31', 'en', 1, 'https://ror.org/00zjprf31 LusĆ­ada University of Lisbon'),
(113873, 'https://ror.org/00rj8cd91', 'fr', 1, 'https://ror.org/00rj8cd91 Laboratoire d''Ʃtudes rurales'),
(113874, 'https://ror.org/0467x3v78', 'de', 1, 'https://ror.org/0467x3v78 OrthopƤdische Praxis'),
(113875, 'https://ror.org/01p3zwg66', 'no_lang_code', 1, 'https://ror.org/01p3zwg66 Richard Wolf (Germany)'),
(113876, 'https://ror.org/05fa8tk41', 'pt', 1, 'https://ror.org/05fa8tk41 Centro de Estudos de Direito do Ordenamento do Urbanismo e do Ambiente'),
(113877, 'https://ror.org/01bhg0q06', 'id', 1, 'https://ror.org/01bhg0q06 Universitas Islam Madura'),
(113878, 'https://ror.org/03f99ad09', 'pt', 1, 'https://ror.org/03f99ad09 Algarve Chemistry Research Centre Centro de Investigacao em Quimica do Algarve'),
(113879, 'https://ror.org/03mx33742', 'es', 1, 'https://ror.org/03mx33742 Universidad de Santander'),
(113880, 'https://ror.org/00t74vp97', 'it', 1, 'https://ror.org/00t74vp97 CoNISMa Consorzio Nazionale Interuniversitario per le Scienze del Mare National Inter-University Consortium for Marine Sciences'),
(113881, 'https://ror.org/01xctgv27', 'tr', 1, 'https://ror.org/01xctgv27 Gƶknur Gƶknur (Türkiye) Gƶknur Gıda A.Ş'),
(113882, 'https://ror.org/0052nmr57', 'en', 1, 'https://ror.org/0052nmr57 National Research Centre on Yak ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ याक ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(113883, 'https://ror.org/04vtz2g46', 'en', 1, 'https://ror.org/04vtz2g46 Korea Institute for International Economic Policy ėŒ€ģ™øź²½ģ œģ •ģ±…ģ—°źµ¬ģ›'),
(113884, 'https://ror.org/001aevc89', 'fr', 1, 'https://ror.org/001aevc89 Laboratoire d''Acoustique de l''UniversitƩ du Mans'),
(113885, 'https://ror.org/034a4bk84', 'fr', 1, 'https://ror.org/034a4bk84 Laboratoire de Physique des deux infinis Bordeaux'),
(113886, 'https://ror.org/00bah2v32', 'en', 1, 'https://ror.org/00bah2v32 Kyrgyz State Medical Academy'),
(113887, 'https://ror.org/048yjd441', 'en', 1, 'https://ror.org/048yjd441 Raya University įˆ«į‹« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(113888, 'https://ror.org/05nk54s89', 'fr', 1, 'https://ror.org/05nk54s89 Laboratoire d''OcƩanographie Microbienne Laboratory of Microbial Oceanography'),
(113889, 'https://ror.org/03ha87a98', 'fr', 1, 'https://ror.org/03ha87a98 Laboratoire interdisciplinaire de recherche sur les transformations des pratiques Ʃducatives et des pratiques sociales'),
(113890, 'https://ror.org/00qa5cz12', 'id', 1, 'https://ror.org/00qa5cz12 Institut Seni Indonesia Padangpanjang'),
(113891, 'https://ror.org/001c8pb03', 'fr', 1, 'https://ror.org/001c8pb03 Laboratoire de Biologie Intégrative des Modèles Marins Laboratory of Integrative Biology of Marine Model'),
(113892, 'https://ror.org/00wvqgd19', 'eu', 1, 'https://ror.org/00wvqgd19 Mondragon Unibertsitatea Mondragon University Universidad de Mondragón Universidade de Mondragón'),
(113893, 'https://ror.org/008aaf926', 'en', 1, 'https://ror.org/008aaf926 Diabetes Australia'),
(113894, 'https://ror.org/00pcacg52', 'pt', 1, 'https://ror.org/00pcacg52 Cooperativa de Estudos e Intervenção em Projectos Socioeconómicos'),
(113895, 'https://ror.org/05xqdbr39', 'pt', 1, 'https://ror.org/05xqdbr39 Unidade Hospitalar de Amarante'),
(113896, 'https://ror.org/05w0yf696', 'pt', 1, 'https://ror.org/05w0yf696 Observatório de Relações Exteriores'),
(113897, 'https://ror.org/05e0vkr08', 'en', 1, 'https://ror.org/05e0vkr08 Bibliothèque Nationale du Luxembourg Lëtzebuerger Nationalbibliothéik National Library of Luxembourg Nationalbibliothek Luxemburg'),
(113898, 'https://ror.org/03w50ns22', 'en', 1, 'https://ror.org/03w50ns22 Beijing Institute of Microbiology and Epidemiology åŒ—äŗ¬å¾®ē”Ÿē‰©ęµč”Œē—…ē ”ē©¶ę‰€'),
(113899, 'https://ror.org/00yt1z637', 'en', 1, 'https://ror.org/00yt1z637 Scientific Services'),
(113900, 'https://ror.org/021qg3d64', 'no_lang_code', 1, 'https://ror.org/021qg3d64 Florence (Netherlands)'),
(113901, 'https://ror.org/04skhpe58', 'en', 1, 'https://ror.org/04skhpe58 Vancouver Prostate Centre'),
(113902, 'https://ror.org/03y52rj74', 'en', 1, 'https://ror.org/03y52rj74 Binod Bihari Mahto Koyalanchal University ą¤¬ą¤æą¤Øą„‹ą¤¦ ą¤¬ą¤æą¤¹ą¤¾ą¤°ą„€ ą¤®ą¤¹ą¤¤ą„‹ ą¤•ą„‹ą¤Æą¤²ą¤¾ą¤‚ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(113903, 'https://ror.org/01wdggh03', 'fr', 1, 'https://ror.org/01wdggh03 ArchƩosciences-Bordeaux : MatƩriaux, temps, Images et SociƩtƩs'),
(113904, 'https://ror.org/04dtfqt68', 'fr', 1, 'https://ror.org/04dtfqt68 Institut SupƩrieur de MƩcanique Institut SupƩrieur de MƩcanique de Paris'),
(113905, 'https://ror.org/05j4pfa30', 'pt', 1, 'https://ror.org/05j4pfa30 Hospital de São Sebastião'),
(113906, 'https://ror.org/02bn7hs48', 'fr', 1, 'https://ror.org/02bn7hs48 Eco-procƩdƩs, optimisation et aide Ơ la dƩcision'),
(113907, 'https://ror.org/022bnxw24', 'fr', 1, 'https://ror.org/022bnxw24 Institut d''Astrophysique de Paris Paris Institute of Astrophysics'),
(113908, 'https://ror.org/02fke9256', 'fr', 1, 'https://ror.org/02fke9256 Laboratoire de MƩcanique et GƩnie Civil'),
(113909, 'https://ror.org/00rrer658', 'sr', 1, 'https://ror.org/00rrer658 Kliničko Bolnički Centar Zvezdara'),
(113910, 'https://ror.org/05ga8m074', 'en', 0, 'https://ror.org/05ga8m074 Pennine Acute Hospitals NHS Trust'),
(113911, 'https://ror.org/024h0z890', 'fr', 1, 'https://ror.org/024h0z890 Institut GƩnƩtique Nantes Atlantique'),
(113912, 'https://ror.org/00v807439', 'en', 1, 'https://ror.org/00v807439 Translational Research Institute'),
(113913, 'https://ror.org/052arry73', 'en', 1, 'https://ror.org/052arry73 Panagiotis & Aglaia Kyriakou Children''s Hospital'),
(113914, 'https://ror.org/04q4z6j92', 'en', 1, 'https://ror.org/04q4z6j92 American Society of Plastic Surgeons'),
(113915, 'https://ror.org/00cvkwk76', 'en', 1, 'https://ror.org/00cvkwk76 Flagler College'),
(113916, 'https://ror.org/029a5bq08', 'pt', 1, 'https://ror.org/029a5bq08 Insparya (Portugal) Viable Health'),
(113917, 'https://ror.org/005zjex51', 'en', 1, 'https://ror.org/005zjex51 Saint-Petersburg State University of Technology and Design'),
(113918, 'https://ror.org/01qb2q565', 'pt', 1, 'https://ror.org/01qb2q565 Clƭnica DentƔria Dr SƩrgio Saavedra Marinho (Portugal) Dr Sergio Saavedra Marinho Dental Clinic'),
(113919, 'https://ror.org/02gkb4040', 'en', 0, 'https://ror.org/02gkb4040 Auckland District Health Board'),
(113920, 'https://ror.org/000s5ez74', 'en', 1, 'https://ror.org/000s5ez74 All Russian Scientific Research Institute of Aviation Materials Все России Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных материалов'),
(113921, 'https://ror.org/05ykjy250', 'en', 1, 'https://ror.org/05ykjy250 Beaudesert Hospital'),
(113922, 'https://ror.org/04508rt40', 'en', 1, 'https://ror.org/04508rt40 Jigawa State College of Education Gumel'),
(113923, 'https://ror.org/00g972x47', 'en', 1, 'https://ror.org/00g972x47 Usmanu Danfodiyo University Teaching Hospital, Sokoto'),
(113924, 'https://ror.org/03x1zq178', 'en', 1, 'https://ror.org/03x1zq178 Biznesa vadības koledža College of Business Administration'),
(113925, 'https://ror.org/03ecpp171', 'en', 1, 'https://ror.org/03ecpp171 University of Da Nang UniversitĆ© de danang ĐẔi hį»c ĐƠ Nįŗµng'),
(113926, 'https://ror.org/01td4p294', 'en', 1, 'https://ror.org/01td4p294 Thailand Center of Excellence in Physics'),
(113927, 'https://ror.org/00n51jg89', 'en', 1, 'https://ror.org/00n51jg89 Sirius University of Science and Technology ŠŠ°ŃƒŃ‡Š½Š¾-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”ŠøŃ€ŠøŃƒŃĀ»'),
(113928, 'https://ror.org/00dd6af44', 'en', 1, 'https://ror.org/00dd6af44 Thang Long University TrĘ°į»ng ĐẔi hį»c Thăng Long'),
(113929, 'https://ror.org/01gzye136', 'en', 1, 'https://ror.org/01gzye136 European Centre for Theoretical Studies in Nuclear Physics and Related Areas'),
(113930, 'https://ror.org/03zgaq086', 'en', 1, 'https://ror.org/03zgaq086 Institute of Peruvian Studies Instituto de Estudios Peruanos'),
(113931, 'https://ror.org/00hrb5s12', 'pt', 1, 'https://ror.org/00hrb5s12 Sociedade Portuguesa de GrupanƔlise e Psicoterapia Analƭtica de Grupo'),
(113932, 'https://ror.org/049kkt456', 'fr', 1, 'https://ror.org/049kkt456 Institut du Thorax'),
(113933, 'https://ror.org/009g2rt34', 'fr', 1, 'https://ror.org/009g2rt34 Identities, Territories, Expressions, Mobilities IdentitƩs, Territoires, Expressions, MobilitƩs');
INSERT INTO `rors` VALUES
(113934, 'https://ror.org/05n7xcf53', 'es', 1, 'https://ror.org/05n7xcf53 Instituto de Investigación Sanitaria de Santiago'),
(113935, 'https://ror.org/02yn1nr06', 'en', 1, 'https://ror.org/02yn1nr06 California Sea Grant'),
(113936, 'https://ror.org/017vm7w59', 'en', 1, 'https://ror.org/017vm7w59 Institute of Forestry ŠØŃƒŠ¼Š°Ń€ŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(113937, 'https://ror.org/01y3yr807', 'es', 1, 'https://ror.org/01y3yr807 Universidad Siglo 21'),
(113938, 'https://ror.org/05jds5x60', 'en', 1, 'https://ror.org/05jds5x60 University of Bahri Ų¬Ų§Ł…Ų¹Ų© بحري'),
(113939, 'https://ror.org/01pqh8144', 'en', 1, 'https://ror.org/01pqh8144 Peel Health Campus'),
(113940, 'https://ror.org/05dwv6530', 'no_lang_code', 1, 'https://ror.org/05dwv6530 Linz Center of Mechatronics (Austria)'),
(113941, 'https://ror.org/04y52eq55', 'en', 1, 'https://ror.org/04y52eq55 Federal Neuro Psychiatric Hospital'),
(113942, 'https://ror.org/02f0psx94', 'en', 1, 'https://ror.org/02f0psx94 The Polytechnic University of Japan č·ę„­čƒ½åŠ›é–‹ē™ŗē·åˆå¤§å­¦ę ”'),
(113943, 'https://ror.org/01pwyb445', 'en', 1, 'https://ror.org/01pwyb445 Vivek University'),
(113944, 'https://ror.org/015xjsg96', 'pt', 1, 'https://ror.org/015xjsg96 Universidade Tiradentes'),
(113945, 'https://ror.org/059ex7y15', 'en', 1, 'https://ror.org/059ex7y15 Instytut Centrum Zdrowia Matki Polki w Łodzi Polish Mother’s Memorial Hospital Research Institute'),
(113946, 'https://ror.org/02k09n368', 'en', 1, 'https://ror.org/02k09n368 Barcelona School of Economics Escuela de EconomĆ­a de Barcelona'),
(113947, 'https://ror.org/0525jbb43', 'pt', 1, 'https://ror.org/0525jbb43 Center for Human Language Technology and Bioinformatics Centro de Tecnologia da Linguagem Humana e BioinformƔtica'),
(113948, 'https://ror.org/012m8gv78', 'en', 1, 'https://ror.org/012m8gv78 Luxembourg Institute of Health'),
(113949, 'https://ror.org/01n285x08', 'de', 1, 'https://ror.org/01n285x08 Bodensee-Stiftung'),
(113950, 'https://ror.org/03mxktp47', 'fr', 1, 'https://ror.org/03mxktp47 Institut de Biologie de l''Ɖcole Normale SupĆ©rieure'),
(113951, 'https://ror.org/05kbvd578', 'fr', 1, 'https://ror.org/05kbvd578 Laboratoire de Thermique, EnergƩtique et ProcƩdƩs Laboratory of Thermal Engineering, Energy and Processes'),
(113952, 'https://ror.org/01e0n5141', 'fr', 1, 'https://ror.org/01e0n5141 Centre lorrain de recherches interdisciplinaires dans les domaines des littƩratures, des cultures et de la thƩologie'),
(113953, 'https://ror.org/00ej51688', 'fr', 1, 'https://ror.org/00ej51688 FƩdƩration des Sciences ArchƩologiques de Bordeaux'),
(113954, 'https://ror.org/003rkce75', 'en', 1, 'https://ror.org/003rkce75 Wilhelm Woort-Stiftung'),
(113955, 'https://ror.org/05w9k9t67', 'en', 1, 'https://ror.org/05w9k9t67 Davangere University ದಾವಣಗೆರೆ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(113956, 'https://ror.org/012qr1y49', 'en', 1, 'https://ror.org/012qr1y49 Ministry of Health وزارة الصحة'),
(113957, 'https://ror.org/00jwvx142', 'en', 1, 'https://ror.org/00jwvx142 State Scientific Center - Research Institute of Atomic Reactors Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр — ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ атомных реакторов'),
(113958, 'https://ror.org/01sxsjd59', 'en', 1, 'https://ror.org/01sxsjd59 Rajiv Gandhi University of Knowledge Technologies'),
(113959, 'https://ror.org/0409c3995', 'fr', 1, 'https://ror.org/0409c3995 Institut MƩditerranƩen de BiodiversitƩ et d''Ecologie Marine et Continentale Mediterranean Institute of Marine and Terrestrial Biodiversity and Ecology'),
(113960, 'https://ror.org/039v11z91', 'en', 1, 'https://ror.org/039v11z91 Biratnagar Eye Hospital'),
(113961, 'https://ror.org/04y91dy23', 'fr', 1, 'https://ror.org/04y91dy23 UnitĆ© Ɖvolution, Ɖcologie et PalĆ©ontologie'),
(113962, 'https://ror.org/049cs4442', 'pt', 1, 'https://ror.org/049cs4442 Unidade Local de Saude do Alto Ave'),
(113963, 'https://ror.org/04s4apw49', 'it', 1, 'https://ror.org/04s4apw49 Regione Marche'),
(113964, 'https://ror.org/028wq3277', 'fr', 1, 'https://ror.org/028wq3277 Institut Charles Gerhardt Montpellier'),
(113965, 'https://ror.org/01h6dtw92', 'en', 1, 'https://ror.org/01h6dtw92 TAV College'),
(113966, 'https://ror.org/02fv42846', 'fr', 1, 'https://ror.org/02fv42846 Laboratoire de chimie des processus biologiques'),
(113967, 'https://ror.org/054dn2d35', 'en', 1, 'https://ror.org/054dn2d35 Institute for Christian Studies'),
(113968, 'https://ror.org/05cka2t18', 'en', 1, 'https://ror.org/05cka2t18 Agricultural Academy Делскостопанска Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(113969, 'https://ror.org/02zbqp516', 'pt', 1, 'https://ror.org/02zbqp516 Group of Mathematical Physics Grupo de Fƭsica MatemƔtica'),
(113970, 'https://ror.org/01a0gpy77', 'fr', 1, 'https://ror.org/01a0gpy77 ThƩoriser et ModƩliser pour AmƩnager'),
(113971, 'https://ror.org/0357ts970', 'en', 1, 'https://ror.org/0357ts970 Spinal Cord Injury BC'),
(113972, 'https://ror.org/019ja9e37', 'no_lang_code', 1, 'https://ror.org/019ja9e37 Atomic Energy (Canada) Ɖnergie atomique du Canada'),
(113973, 'https://ror.org/00p7v1s94', 'fr', 1, 'https://ror.org/00p7v1s94 RƩsistance Induite et Bioprotection des Plantes'),
(113974, 'https://ror.org/02x8c2t37', 'no_lang_code', 1, 'https://ror.org/02x8c2t37 Inform (Germany)'),
(113975, 'https://ror.org/051gvfp41', 'fr', 1, 'https://ror.org/051gvfp41 Orient & MƩditerranƩe'),
(113976, 'https://ror.org/040dxse86', 'en', 1, 'https://ror.org/040dxse86 National Institute of Rheumatic Diseases'),
(113977, 'https://ror.org/04wjje695', 'en', 1, 'https://ror.org/04wjje695 Philippine School Doha المدرسة Ų§Ł„ŁŁ„ŲØŁŠŁ†ŁŠŲ© Ų§Ł„ŲÆŁˆŲ­Ų©'),
(113978, 'https://ror.org/009h9cg39', 'pt', 1, 'https://ror.org/009h9cg39 Alter Stud Farm Coudelaria de Alter (Portugal)'),
(113979, 'https://ror.org/05rmt1x67', 'en', 1, 'https://ror.org/05rmt1x67 National Agricultural Research Organisation'),
(113980, 'https://ror.org/01rx4qw44', 'fr', 1, 'https://ror.org/01rx4qw44 Institut de Recherche en Informatique de Toulouse Toulouse Institute of Computer Science Research'),
(113981, 'https://ror.org/053p5te48', 'fr', 1, 'https://ror.org/053p5te48 Structure fƩdƩrative de recherche Necker'),
(113982, 'https://ror.org/00ap6k638', 'pt', 1, 'https://ror.org/00ap6k638 Technological Unit for Radiosterilization Unidade Tecnológica de Radioesterilização'),
(113983, 'https://ror.org/03vqp1c86', 'fr', 1, 'https://ror.org/03vqp1c86 SociƩtƩ FranƧaise de Cardiologie'),
(113984, 'https://ror.org/05pfe1v37', 'es', 1, 'https://ror.org/05pfe1v37 Centro Interdisciplinario de Estudios sobre Territorio, EconomĆ­a y Sociedad'),
(113985, 'https://ror.org/04jpmg381', 'en', 1, 'https://ror.org/04jpmg381 University of Health Science įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžœįž·įž‘įŸ’įž™įž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšįžŸįž»įžįž¶įž—įž·įž”įž¶įž›'),
(113986, 'https://ror.org/05j7wbb86', 'pl', 1, 'https://ror.org/05j7wbb86 109 Szpital Wojskowy z Przychodnią w Szczecinie'),
(113987, 'https://ror.org/00f5hap04', 'fr', 1, 'https://ror.org/00f5hap04 Acteurs, Ressources et Territoires dans le DƩveloppement'),
(113988, 'https://ror.org/05rm4kj93', 'pt', 1, 'https://ror.org/05rm4kj93 Livros tecnicos (Portugal)'),
(113989, 'https://ror.org/01qfab443', 'fr', 1, 'https://ror.org/01qfab443 Institut Jean Nicod'),
(113990, 'https://ror.org/021sh3243', 'fr', 1, 'https://ror.org/021sh3243 Infection et inflammation'),
(113991, 'https://ror.org/00bzk5h02', 'en', 1, 'https://ror.org/00bzk5h02 Maharajgunj Medical Campus ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤œą¤—ą¤žą„ą¤œ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤•ą„ą¤Æą¤¾ą¤®ą„ą¤Ŗą¤ø'),
(113992, 'https://ror.org/05bz1ns30', 'en', 1, 'https://ror.org/05bz1ns30 The 988th Hospital of the Joint Service Support Force of the Chinese People''s Liberation Army äø­å›½äŗŗę°‘č§£ę”¾å†›č”å‹¤äæéšœéƒØé˜Ÿē¬¬ä¹å…«å…«åŒ»é™¢ē„¦ä½œåŒ»ē–—åŒŗ'),
(113993, 'https://ror.org/04c3cen15', 'fr', 1, 'https://ror.org/04c3cen15 Institut de Chimie et des MatƩriaux Paris-Est'),
(113994, 'https://ror.org/04ys0ah18', 'en', 0, 'https://ror.org/04ys0ah18 Max Planck Institute Luxemburg for International, European and Regulatory Procedural Law'),
(113995, 'https://ror.org/043wmc583', 'fr', 1, 'https://ror.org/043wmc583 Institut de GƩnomique Fonctionnelle Institute of Functional Genomics'),
(113996, 'https://ror.org/00hm77b03', 'en', 1, 'https://ror.org/00hm77b03 Community College of Philadelphia'),
(113997, 'https://ror.org/02y7p0749', 'pt', 1, 'https://ror.org/02y7p0749 Ministry of Health Ministério da Saúde'),
(113998, 'https://ror.org/03787ar02', 'fr', 1, 'https://ror.org/03787ar02 Laboratoire de MĆ©canique et d’Acoustique Laboratory of Mechanics and Acoustics'),
(113999, 'https://ror.org/03jqp6d56', 'en', 1, 'https://ror.org/03jqp6d56 Fachhochschule Oberƶsterreich University of Applied Sciences Upper Austria'),
(114000, 'https://ror.org/01gawx214', 'en', 1, 'https://ror.org/01gawx214 Community Health Systems - Flowers Hospital'),
(114001, 'https://ror.org/02z06eb16', 'en', 1, 'https://ror.org/02z06eb16 Centre for Sustainable Energy'),
(114002, 'https://ror.org/01gejfk39', 'pt', 1, 'https://ror.org/01gejfk39 Hospital de Santa Luzia de Elvas'),
(114003, 'https://ror.org/025esck76', 'fr', 1, 'https://ror.org/025esck76 Langues et Civilisations Ć  Tradition Orale'),
(114004, 'https://ror.org/00kjhnt51', 'id', 1, 'https://ror.org/00kjhnt51 Universitas Bhayangkara Jakarta Raya'),
(114005, 'https://ror.org/00nkks409', 'en', 1, 'https://ror.org/00nkks409 Association of British Dispensing Opticians'),
(114006, 'https://ror.org/00tmb7y09', 'fr', 1, 'https://ror.org/00tmb7y09 Laboratoire de Chimie ThƩorique'),
(114007, 'https://ror.org/02qpgtq92', 'en', 1, 'https://ror.org/02qpgtq92 The Gambia College'),
(114008, 'https://ror.org/00wrnm709', 'fr', 1, 'https://ror.org/00wrnm709 Institut de MƩcanique et d''IngƩnierie de Bordeaux Institute of Mechanics and Engineering'),
(114009, 'https://ror.org/037aak578', 'en', 1, 'https://ror.org/037aak578 SVKM''s Narsee Monjee College of Commerce and Economics'),
(114010, 'https://ror.org/0213f8g15', 'en', 1, 'https://ror.org/0213f8g15 DMEX Centre for X-ray Imaging'),
(114011, 'https://ror.org/03zeb7y98', 'en', 1, 'https://ror.org/03zeb7y98 Institute of Social Work'),
(114012, 'https://ror.org/03f0z1g15', 'fr', 1, 'https://ror.org/03f0z1g15 Sciences et Ingénierie de la Matière Molle Soft Matter Sciences and Engineering Laboratory'),
(114013, 'https://ror.org/00bz9sk84', 'pt', 1, 'https://ror.org/00bz9sk84 Unidade Local de Saúde da ArrÔbida'),
(114014, 'https://ror.org/046f4w107', 'id', 1, 'https://ror.org/046f4w107 Universitas Islam Internasional Darullughah Wadda''wah'),
(114015, 'https://ror.org/02ep7nq58', 'no_lang_code', 1, 'https://ror.org/02ep7nq58 Unilabs Unilabs (Switzerland) Unilabs SA'),
(114016, 'https://ror.org/05ee10k25', 'fr', 1, 'https://ror.org/05ee10k25 Institut de GƩnƩtique Humaine Institute of Human Genetics'),
(114017, 'https://ror.org/00mzz1w90', 'en', 1, 'https://ror.org/00mzz1w90 Alexandria University UniversitĆ© d''Alexandrie Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(114018, 'https://ror.org/004yecm09', 'pt', 1, 'https://ror.org/004yecm09 Centro de Literaturas e Culturas Lusófonas e Europeias'),
(114019, 'https://ror.org/05h68bp56', 'en', 1, 'https://ror.org/05h68bp56 Nippon Institute of Technology ę—„ęœ¬å·„ę„­å¤§å­¦'),
(114020, 'https://ror.org/02phcfx71', 'en', 1, 'https://ror.org/02phcfx71 Lala College, LLC Lala Lajpatrai College of Commerce & Economics'),
(114021, 'https://ror.org/04x94xw62', 'en', 1, 'https://ror.org/04x94xw62 University of Saint Mary'),
(114022, 'https://ror.org/02dqsxz11', 'fr', 1, 'https://ror.org/02dqsxz11 Centre Alexandre KoyrƩ'),
(114023, 'https://ror.org/038fyf011', 'nl', 1, 'https://ror.org/038fyf011 Kennisinstituut voor Mobiliteitsbeleid'),
(114024, 'https://ror.org/01ejp3f31', 'fr', 1, 'https://ror.org/01ejp3f31 Maison mƩditerranƩenne des sciences de l''Homme'),
(114025, 'https://ror.org/032v56e13', 'pt', 1, 'https://ror.org/032v56e13 Laboratório de Microbiologia'),
(114026, 'https://ror.org/05s004555', 'en', 1, 'https://ror.org/05s004555 Favaloro University Universidad Favaloro'),
(114027, 'https://ror.org/02kb5sz66', 'en', 1, 'https://ror.org/02kb5sz66 International University of Monaco UniversitƩ internationale de monaco'),
(114028, 'https://ror.org/03zj3bx65', 'pt', 1, 'https://ror.org/03zj3bx65 Dr Campos Costa (Portugal)'),
(114029, 'https://ror.org/04cvvej54', 'en', 1, 'https://ror.org/04cvvej54 Woodwell Climate Research Center'),
(114030, 'https://ror.org/017vc0d35', 'es', 1, 'https://ror.org/017vc0d35 Instituto de Lingüística'),
(114031, 'https://ror.org/014g71345', 'fr', 1, 'https://ror.org/014g71345 Centre d’Études et de Recherche en Histoire culturelle Laboratoire CERHIC'),
(114032, 'https://ror.org/01xd0ys45', 'fr', 1, 'https://ror.org/01xd0ys45 Laboratoire de Conception Fabrication Commande Laboratory of design, manufacturing and control'),
(114033, 'https://ror.org/05ds5vg25', 'hr', 1, 'https://ror.org/05ds5vg25 Opća Bolnica Zadar'),
(114034, 'https://ror.org/05c2p1f98', 'hi', 1, 'https://ror.org/05c2p1f98 Devi Ahilya Vishwavidyalaya ą¤¦ą„‡ą¤µą¤æ ą¤…ą¤¹ą¤æą¤²ą„ą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(114035, 'https://ror.org/05db0z907', 'es', 1, 'https://ror.org/05db0z907 Instituto de Educación Secundaria Parquesol'),
(114036, 'https://ror.org/05nhcdk38', 'fr', 1, 'https://ror.org/05nhcdk38 Laboratoire de Physique ThƩorique et ModƩlisation'),
(114037, 'https://ror.org/05xkqnm68', 'en', 1, 'https://ror.org/05xkqnm68 Centre of Biomedical Research ą¤œą„ˆą¤µ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(114038, 'https://ror.org/044jdxf64', 'en', 1, 'https://ror.org/044jdxf64 Ahsania Mission University of Science and Technology ą¦†ą¦¹ą§ą¦›ą¦¾ą¦Øą¦æą¦Æą¦¼ą¦¾ মিশন ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(114039, 'https://ror.org/046wj6g23', 'en', 1, 'https://ror.org/046wj6g23 PC TECHNOLOGY CENTER'),
(114040, 'https://ror.org/03wsa4e80', 'no_lang_code', 1, 'https://ror.org/03wsa4e80 BioSurfaces (United States)'),
(114041, 'https://ror.org/00dzfx204', 'tr', 1, 'https://ror.org/00dzfx204 Bilecik Şeyh Edebali University Bilecik Şeyh Edebali Üniversitesi'),
(114042, 'https://ror.org/03cew3973', 'en', 1, 'https://ror.org/03cew3973 The Jackson Laboratory for Genomic Medicine'),
(114043, 'https://ror.org/048kxyc83', 'en', 1, 'https://ror.org/048kxyc83 INVOLV'),
(114044, 'https://ror.org/04zjb4t38', 'fr', 1, 'https://ror.org/04zjb4t38 Centre d’histoire sociale des mondes contemporains'),
(114045, 'https://ror.org/021qvjc46', 'no_lang_code', 1, 'https://ror.org/021qvjc46 Physical Sciences (United States)'),
(114046, 'https://ror.org/017wkmv97', 'fr', 1, 'https://ror.org/017wkmv97 Centre universitaire rouennais d’études juridiques'),
(114047, 'https://ror.org/03pntgn87', 'pt', 1, 'https://ror.org/03pntgn87 Universidade Nova de Lisboa Bibliotecas'),
(114048, 'https://ror.org/04zpjj182', 'de', 1, 'https://ror.org/04zpjj182 Klinikum Ernst von Bergmann'),
(114049, 'https://ror.org/00rm8v059', 'en', 0, 'https://ror.org/00rm8v059 Society for Technical Communication'),
(114050, 'https://ror.org/035d9jb31', 'en', 1, 'https://ror.org/035d9jb31 Busitema University'),
(114051, 'https://ror.org/02g7cbw26', 'es', 1, 'https://ror.org/02g7cbw26 Centro de Altos Estudios Nacionales - Escuela de Posgrado'),
(114052, 'https://ror.org/02hzxx398', 'en', 1, 'https://ror.org/02hzxx398 Central Veterinary Research Laboratory'),
(114053, 'https://ror.org/04es4w891', 'id', 1, 'https://ror.org/04es4w891 Universitas Yapis Papua'),
(114054, 'https://ror.org/05jfh7098', 'en', 1, 'https://ror.org/05jfh7098 Kimyo International University in Tashkent Toshkent Kimyo Xalqaro Universiteti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет ŠšŠøŠ¼Ń‘'),
(114055, 'https://ror.org/03ym2w748', 'en', 1, 'https://ror.org/03ym2w748 Praxiling'),
(114056, 'https://ror.org/05hwzej55', 'en', 1, 'https://ror.org/05hwzej55 DONA Foundation Fondation DONA'),
(114057, 'https://ror.org/0040x4m25', 'en', 1, 'https://ror.org/0040x4m25 Vitreous Retina Macula Consultants of New York'),
(114058, 'https://ror.org/03pjfpa97', 'it', 1, 'https://ror.org/03pjfpa97 Regione Abruzzo'),
(114059, 'https://ror.org/027k3nr85', 'pt', 1, 'https://ror.org/027k3nr85 ENSILIS Education and Training ENSILIS Educação e Formação (Portugal)'),
(114060, 'https://ror.org/04g7dxn12', 'es', 1, 'https://ror.org/04g7dxn12 Universidad de Ciencias Empresariales y Sociales'),
(114061, 'https://ror.org/05etkex69', 'en', 1, 'https://ror.org/05etkex69 Department of Genomes & Genetics'),
(114062, 'https://ror.org/048z3gz22', 'pt', 1, 'https://ror.org/048z3gz22 Coriant (Portugal)'),
(114063, 'https://ror.org/021n1mh63', 'pt', 1, 'https://ror.org/021n1mh63 Rianda Research Centre for Research in Energy Health and Environment Rianda Research Centro de Investigação em Energia Saúde e Ambiente (Portugal)'),
(114064, 'https://ror.org/05g3rxr48', 'en', 1, 'https://ror.org/05g3rxr48 Arizona Science Center'),
(114065, 'https://ror.org/04k7cwk28', 'sl', 1, 'https://ror.org/04k7cwk28 Univerzitetno SrediŔče Novo mesto'),
(114066, 'https://ror.org/05vmyj633', 'en', 1, 'https://ror.org/05vmyj633 Saint Petersburg State University of Veterinary Medicine Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарной меГицины'),
(114067, 'https://ror.org/026exgg05', 'fr', 1, 'https://ror.org/026exgg05 Laboratoire d’Economie de Dauphine'),
(114068, 'https://ror.org/00m813a78', 'en', 1, 'https://ror.org/00m813a78 Sulaiman Al Rajhi Colleges'),
(114069, 'https://ror.org/048kc0s52', 'en', 1, 'https://ror.org/048kc0s52 Prifysgol Wrexham Wrexham University'),
(114070, 'https://ror.org/032e0fv91', 'en', 1, 'https://ror.org/032e0fv91 St. Patrick''s Hospital'),
(114071, 'https://ror.org/00jypd850', 'en', 1, 'https://ror.org/00jypd850 Optica'),
(114072, 'https://ror.org/02190e883', 'en', 1, 'https://ror.org/02190e883 The Collective Intelligence Project'),
(114073, 'https://ror.org/05f4fpj37', 'hr', 1, 'https://ror.org/05f4fpj37 Klinika za psihijatriju Vrapče'),
(114074, 'https://ror.org/02fcch113', 'pt', 1, 'https://ror.org/02fcch113 Associação de Municípios do Vale do Ave'),
(114075, 'https://ror.org/03cv31q28', 'fr', 1, 'https://ror.org/03cv31q28 Centre d''Etudes SupƩrieures de la Renaissance'),
(114076, 'https://ror.org/017jp7t31', 'fr', 1, 'https://ror.org/017jp7t31 Laboratoire ProcƩdƩs et IngƩnierie en MƩcanique et MatƩriaux Processes and Engineering in Mechanics and Materials'),
(114077, 'https://ror.org/00k4e5n71', 'fr', 1, 'https://ror.org/00k4e5n71 Engineering Science, Computer Science and Imaging Laboratory Laboratoire des Sciences de l''IngƩnieur, de l''Informatique et de l''Imagerie'),
(114078, 'https://ror.org/018g8cj68', 'en', 1, 'https://ror.org/018g8cj68 University of Technology and Applied Sciences-Suhar Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© فرع ŲµŲ­Ų§Ų±'),
(114079, 'https://ror.org/02125p091', 'fr', 1, 'https://ror.org/02125p091 Sciences et Technologies des Cultures et SociƩtƩs NumƩriques'),
(114080, 'https://ror.org/03qcqf034', 'fr', 1, 'https://ror.org/03qcqf034 Groupe de Recherche en Electrotechnique et Automatique du Havre'),
(114081, 'https://ror.org/0262qgk29', 'en', 1, 'https://ror.org/0262qgk29 National Research Mordovia State University ŠœŠ¾Ń€Š“Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. П. ŠžŠ³Š°Ń€Ń‘Š²Š°'),
(114082, 'https://ror.org/055ss7a31', 'fr', 1, 'https://ror.org/055ss7a31 Physics of Cells and Cancer Physique des Cellules et Cancers'),
(114083, 'https://ror.org/01w6ghb32', 'pt', 1, 'https://ror.org/01w6ghb32 Unilever FIMA (Portugal)'),
(114084, 'https://ror.org/031tn5142', 'id', 1, 'https://ror.org/031tn5142 Universitas Prof Dr Moestopo'),
(114085, 'https://ror.org/00j6pqx59', 'de', 1, 'https://ror.org/00j6pqx59 Bayerisches Landesamt für Umwelt'),
(114086, 'https://ror.org/03ths8210', 'es', 1, 'https://ror.org/03ths8210 Carlos III University of Madrid Universidad Carlos III de Madrid'),
(114087, 'https://ror.org/01jtavh25', 'en', 1, 'https://ror.org/01jtavh25 Lady Amritbai Daga and Smt. Ratnidevi Purohit College for Women'),
(114088, 'https://ror.org/04a4keh50', 'en', 1, 'https://ror.org/04a4keh50 Nazarbayev Intellectual Schools ŠŠ°Š·Š°Ń€Š±Š°ŠµŠ² Š—ŠøŃŃ‚ŠŗŠµŃ€Š»Ń–Šŗ мектептері ŠŠ°Š·Š°Ń€Š±Š°ŠµŠ² Š˜Š½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Ń‹Šµ ŃˆŠŗŠ¾Š»Ń‹'),
(114089, 'https://ror.org/00sgdxg36', 'en', 1, 'https://ror.org/00sgdxg36 Instituto de Milenio de AstrofĆ­sica Millennium Institute of Astrophysics'),
(114090, 'https://ror.org/017c9f638', 'en', 1, 'https://ror.org/017c9f638 Burwood Hospital'),
(114091, 'https://ror.org/04h0bcx93', 'en', 1, 'https://ror.org/04h0bcx93 Iran University Press مرکز نؓر ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ'),
(114092, 'https://ror.org/047rmr210', 'fr', 1, 'https://ror.org/047rmr210 Centre d''Ʃtudes Turques, Ottomanes, Balkaniques et Centrasiatiques'),
(114093, 'https://ror.org/02pr0xw82', 'fr', 1, 'https://ror.org/02pr0xw82 Laboratoire Chimie de l''Environnement'),
(114094, 'https://ror.org/01gg7gz51', 'en', 1, 'https://ror.org/01gg7gz51 Institute for Community Health'),
(114095, 'https://ror.org/049k66y27', 'fr', 1, 'https://ror.org/049k66y27 Laboratoire de Physique et Chimie de l’Environnement et de l’Espace'),
(114096, 'https://ror.org/027k65916', 'en', 1, 'https://ror.org/027k65916 Jet Propulsion Laboratory Laboratorio de Propulsión a Chorro'),
(114097, 'https://ror.org/018sx6595', 'fr', 1, 'https://ror.org/018sx6595 ArchƩologie des AmƩriques'),
(114098, 'https://ror.org/035mqap40', 'no_lang_code', 1, 'https://ror.org/035mqap40 Membrane Technology & Research (United States)'),
(114099, 'https://ror.org/00ksv6230', 'fr', 1, 'https://ror.org/00ksv6230 Centre des Sciences des LittƩratures en langue FranƧaise'),
(114100, 'https://ror.org/00yak9133', 'no_lang_code', 1, 'https://ror.org/00yak9133 Yangtze Optical Electronic (China)'),
(114101, 'https://ror.org/0343myz07', 'en', 1, 'https://ror.org/0343myz07 Montana State University System'),
(114102, 'https://ror.org/02f52gk36', 'pt', 1, 'https://ror.org/02f52gk36 Laboratório Colaborativo em Conhecimento e Tecnologia para uma Saúde Melhor'),
(114103, 'https://ror.org/0570kre10', 'fr', 1, 'https://ror.org/0570kre10 Institut de recherche Juridique sur l''entreprise et les relations professionnelles'),
(114104, 'https://ror.org/043ts8a19', 'no_lang_code', 1, 'https://ror.org/043ts8a19 Fabas Foods Fabas Foods AG Fabas Foods AG (Switzerland)'),
(114105, 'https://ror.org/04mpn1847', 'en', 1, 'https://ror.org/04mpn1847 Institute of Ethnology and Folklore Research'),
(114106, 'https://ror.org/028wvjd90', 'en', 1, 'https://ror.org/028wvjd90 Joldasbekov Institute of Mechanics and Engineering'),
(114107, 'https://ror.org/014n97s28', 'fr', 1, 'https://ror.org/014n97s28 Laboratoire des MatƩriaux et du GƩnie Physique Materials and Physical Engineering Laboratory'),
(114108, 'https://ror.org/057r09725', 'no_lang_code', 1, 'https://ror.org/057r09725 McKesson (United States)'),
(114109, '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'),
(114110, 'https://ror.org/053j10c72', 'es', 1, 'https://ror.org/053j10c72 Instituto Murciano de Investigación Biosanitaria'),
(114111, 'https://ror.org/05pq0wd90', 'en', 1, 'https://ror.org/05pq0wd90 St. Peter''s Institute of Higher Education and Research'),
(114112, 'https://ror.org/00s40r567', 'fr', 1, 'https://ror.org/00s40r567 Passages'),
(114113, 'https://ror.org/03h4x5z90', 'nl', 1, 'https://ror.org/03h4x5z90 Departement Werk, Economie, Wetenschap, Innovatie en Sociale Economie Department of Work, Economy, Science, Innovation and Social Economy'),
(114114, 'https://ror.org/05afmzm11', 'fr', 1, 'https://ror.org/05afmzm11 Verimag'),
(114115, 'https://ror.org/01f4y0525', 'en', 1, 'https://ror.org/01f4y0525 College of Medical Sciences'),
(114116, 'https://ror.org/006shqv80', 'fr', 1, 'https://ror.org/006shqv80 Centre d''Ɖconomie de la Sorbonne'),
(114117, 'https://ror.org/05kjgf606', 'fr', 1, 'https://ror.org/05kjgf606 FranƧois GƩny Institute Institut FranƧois GƩny'),
(114118, 'https://ror.org/04wpdcq98', 'fr', 1, 'https://ror.org/04wpdcq98 IRCAV - Institut de recherche sur le cinƩma et l''audiovisuel Institut de recherche sur le cinƩma et l''audiovisuel'),
(114119, 'https://ror.org/02hrree94', 'en', 1, 'https://ror.org/02hrree94 Gomel State Medical University Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(114120, 'https://ror.org/02hnvfm11', 'pt', 1, 'https://ror.org/02hnvfm11 Universidade de Sorocaba'),
(114121, 'https://ror.org/03eqwj662', 'en', 1, 'https://ror.org/03eqwj662 Leibniz Fachhochschule Leibniz University of Applied Sciences'),
(114122, 'https://ror.org/011w6k548', 'en', 1, 'https://ror.org/011w6k548 New York Times'),
(114123, 'https://ror.org/04dz3w425', 'en', 1, 'https://ror.org/04dz3w425 Inala Community Health Centre'),
(114124, 'https://ror.org/050gdsq06', 'fr', 1, 'https://ror.org/050gdsq06 Institut d''ethnologie mƩditerranƩenne europƩenne et comparative'),
(114125, 'https://ror.org/04jmqe852', 'de', 1, 'https://ror.org/04jmqe852 Klinikum Fulda'),
(114126, 'https://ror.org/004wefe19', 'fr', 1, 'https://ror.org/004wefe19 Centre de RMN Ć  TrĆØs Hauts Champs de Lyon Very High Field NMR Center of Lyon'),
(114127, 'https://ror.org/008xgra86', 'no_lang_code', 1, 'https://ror.org/008xgra86 Acousort Acousort AB Acousort AB (Sweden)'),
(114128, 'https://ror.org/039gr1229', 'en', 1, 'https://ror.org/039gr1229 Community Health Systems - The Orthopedic Hospital'),
(114129, 'https://ror.org/016xz2m71', 'en', 1, 'https://ror.org/016xz2m71 Asia Eastern University of Science and Technology äŗžę±ē§‘ęŠ€å¤§å­ø'),
(114130, 'https://ror.org/05fy98n62', 'en', 1, 'https://ror.org/05fy98n62 Columbia College'),
(114131, 'https://ror.org/05y26d095', 'pt', 1, 'https://ror.org/05y26d095 Centro de Investigação em Ciências Sociais e do Comportamento'),
(114132, 'https://ror.org/04q2ax456', 'fr', 1, 'https://ror.org/04q2ax456 Laboratoire MotricitƩ, Interactions, Performance'),
(114133, 'https://ror.org/05hkycn11', 'de', 1, 'https://ror.org/05hkycn11 Deutsche Meeresmuseum Ocean Museum Germany'),
(114134, 'https://ror.org/02xrb2850', 'en', 1, 'https://ror.org/02xrb2850 Community Health Systems - Northwest Health - Portage'),
(114135, 'https://ror.org/058rvd314', 'fr', 1, 'https://ror.org/058rvd314 Institut de Physique ThƩorique'),
(114136, 'https://ror.org/021a5w723', 'id', 1, 'https://ror.org/021a5w723 Universitas Patria Artha'),
(114137, 'https://ror.org/005yfhm28', 'fr', 1, 'https://ror.org/005yfhm28 Bioscience and Biotechnology Institute of Aix-Marseille Institut de Biosciences et biotechnologies d''Aix-Marseille'),
(114138, 'https://ror.org/042pgcv68', 'en', 1, 'https://ror.org/042pgcv68 China Academy of Chinese Medical Sciences äø­å›½äø­åŒ»ē§‘å­¦é™¢'),
(114139, 'https://ror.org/01r5xd980', 'en', 1, 'https://ror.org/01r5xd980 Madonna University'),
(114140, 'https://ror.org/00n1yyc49', 'pt', 1, 'https://ror.org/00n1yyc49 Centro de Filosofia das CiĆŖncias'),
(114141, 'https://ror.org/001ws2a36', 'en', 1, 'https://ror.org/001ws2a36 National Institute Of Technology Silchar ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø, শিলচর, অাসাম'),
(114142, 'https://ror.org/04kptf457', 'en', 1, 'https://ror.org/04kptf457 Centre Scientifique de Monaco Scientific Centre of Monaco'),
(114143, 'https://ror.org/011yp0a52', 'en', 1, 'https://ror.org/011yp0a52 New York Law School'),
(114144, 'https://ror.org/0513ed054', 'fr', 1, 'https://ror.org/0513ed054 Institut de Thermique, MƩcanique, MatƩriaux'),
(114145, 'https://ror.org/02n5cwc87', 'en', 1, 'https://ror.org/02n5cwc87 Community Health Systems - Northwest Health - Starke'),
(114146, 'https://ror.org/01a1w0r26', 'en', 1, 'https://ror.org/01a1w0r26 Jiangsu Provincial Academy of Traditional Chinese Medicine ę±Ÿč‹ēœäø­åŒ»čÆē ”ē©¶é™¢'),
(114147, 'https://ror.org/00sg8gh54', 'fr', 1, 'https://ror.org/00sg8gh54 Laboratoire Babel'),
(114148, 'https://ror.org/02whbag62', 'en', 1, 'https://ror.org/02whbag62 Community Health Systems - Lutheran Hospital'),
(114149, 'https://ror.org/01v542j61', 'en', 1, 'https://ror.org/01v542j61 Polish-Japanese Academy of Information Technology Polsko-Japońska Akademia Technik Komputerowych'),
(114150, 'https://ror.org/03j4tqp21', 'pt', 1, 'https://ror.org/03j4tqp21 Unidade Local de SaĆŗde de Almada-Seixal'),
(114151, 'https://ror.org/02nfq1309', 'fr', 1, 'https://ror.org/02nfq1309 Chemistry and Modelling for Biology of Cancer Chimie et ModƩlisation pour la Biologie du Cancer'),
(114152, 'https://ror.org/02he16z20', 'no_lang_code', 1, 'https://ror.org/02he16z20 NGK Insulators (Japan) ę—„ęœ¬ē¢å­ę Ŗå¼ä¼šē¤¾'),
(114153, 'https://ror.org/04fzsfa80', 'pt', 1, 'https://ror.org/04fzsfa80 Acredita Portugal Association Associação Acredita Portugal (Portugal)'),
(114154, 'https://ror.org/01k1ngp50', 'fr', 1, 'https://ror.org/01k1ngp50 Complexe de Recherche Interprofessionnel en AƩrothermochimie'),
(114155, 'https://ror.org/03p76m698', 'fr', 1, 'https://ror.org/03p76m698 Institutions et Dynamiques Historiques de l''Ɖconomie et de la SociĆ©tĆ©'),
(114156, 'https://ror.org/05e8jge82', 'en', 1, 'https://ror.org/05e8jge82 Auckland City Hospital'),
(114157, 'https://ror.org/01dz6bn35', 'en', 1, 'https://ror.org/01dz6bn35 Community Health Systems - AllianceHealth Durant'),
(114158, 'https://ror.org/01g5pq328', 'fr', 0, 'https://ror.org/01g5pq328 Laboratoire d’Etudes du Rayonnement et de la MatiĆØre en Astrophysique et AtmosphĆØres Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres'),
(114159, 'https://ror.org/01xht6a47', 'it', 1, 'https://ror.org/01xht6a47 Centro Clinico Nemo'),
(114160, 'https://ror.org/05079x435', 'fr', 1, 'https://ror.org/05079x435 Maison des Sciences de l''Homme Paris Nord'),
(114161, 'https://ror.org/00awwz417', 'it', 1, 'https://ror.org/00awwz417 Istituto per la Storia del Pensiero Filosofico e Scientifico Moderno'),
(114162, 'https://ror.org/0312k4k82', 'en', 1, 'https://ror.org/0312k4k82 Massachusetts Eye Research and Surgery Institute'),
(114163, 'https://ror.org/02wa2wd05', 'en', 1, 'https://ror.org/02wa2wd05 Lagos State University Teaching Hospital'),
(114164, 'https://ror.org/02cm65z11', 'pt', 1, 'https://ror.org/02cm65z11 State University of ParaĆ­ba Universidade Estadual da ParaĆ­ba'),
(114165, 'https://ror.org/01cyxvw51', 'en', 1, 'https://ror.org/01cyxvw51 Nuclear Institute for Agriculture and Biology'),
(114166, 'https://ror.org/03c25ne50', 'es', 1, 'https://ror.org/03c25ne50 Asociación PsiquiÔtrica Mexicana, A.C.'),
(114167, 'https://ror.org/03tncyc93', 'fr', 1, 'https://ror.org/03tncyc93 Institut des Sciences du Mouvement Etienne-Jules Marey'),
(114168, 'https://ror.org/00tnycw03', 'en', 1, 'https://ror.org/00tnycw03 Cancer Support Community'),
(114169, 'https://ror.org/03cyj6q93', 'pt', 1, 'https://ror.org/03cyj6q93 Laboratorio Colaborativo Sustainable and Smart Aquaculture'),
(114170, 'https://ror.org/04y651b34', 'en', 1, 'https://ror.org/04y651b34 Dongguan Guangdong Hong Kong And Macao Stem Cell Biotechnology ē²¤ęøÆę¾³å¹²ē»†čƒžē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(114171, 'https://ror.org/0501adx40', 'pt', 1, 'https://ror.org/0501adx40 Unidade de Biotecnologia Ambiental'),
(114172, 'https://ror.org/03f6y4g19', 'es', 1, 'https://ror.org/03f6y4g19 Patrimonio Nacional'),
(114173, 'https://ror.org/00ghqgy32', 'en', 1, 'https://ror.org/00ghqgy32 The Ministry of Education and Science of the Russian Federation ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки Российской ФеГерации'),
(114174, 'https://ror.org/04zc7sw86', 'en', 1, 'https://ror.org/04zc7sw86 Serang Raya University Universitas Serang Raya'),
(114175, 'https://ror.org/00xd1ek73', 'fr', 1, 'https://ror.org/00xd1ek73 Laboratoire MƩcanique des Solides Solids Mechanic Laboratory'),
(114176, 'https://ror.org/0103eqz62', 'en', 1, 'https://ror.org/0103eqz62 Recherche Canada Research Canada'),
(114177, 'https://ror.org/050fn2y67', 'tr', 1, 'https://ror.org/050fn2y67 Şarkışla Devlet Hastanesi'),
(114178, 'https://ror.org/051jvbj60', 'en', 1, 'https://ror.org/051jvbj60 Lifespan Research Institute'),
(114179, 'https://ror.org/05y50ps96', 'pt', 1, 'https://ror.org/05y50ps96 Laboratório de Ergonomia'),
(114180, 'https://ror.org/00222yk13', 'fr', 1, 'https://ror.org/00222yk13 Institut des Sciences Analytiques et de Physico-Chimie pour l''Environnement et les MatƩriaux Institute of Analytical Sciences and Physico-Chemistry for Environment and Materials'),
(114181, 'https://ror.org/04wr6tn02', 'en', 1, 'https://ror.org/04wr6tn02 Institute of Contemporary History'),
(114182, 'https://ror.org/01m0gv380', 'nl', 1, 'https://ror.org/01m0gv380 GGz centraal'),
(114183, 'https://ror.org/00bb27p14', 'pt', 1, 'https://ror.org/00bb27p14 Livraria Lello (Portugal)'),
(114184, 'https://ror.org/04a1a4n63', 'en', 1, 'https://ror.org/04a1a4n63 Alfried Krupp Hospital Alfried Krupp Krankenhaus'),
(114185, 'https://ror.org/03cde6p20', 'en', 1, 'https://ror.org/03cde6p20 Phillips Exeter Academy'),
(114186, 'https://ror.org/0302qeq32', 'fr', 1, 'https://ror.org/0302qeq32 Centre de recherche sur le monde iranien'),
(114187, 'https://ror.org/01qqxvf96', 'es', 1, 'https://ror.org/01qqxvf96 Hospital EspaƱol'),
(114188, 'https://ror.org/00p8b0t20', 'en', 1, 'https://ror.org/00p8b0t20 Belarusian State Medical University Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114189, 'https://ror.org/00ex3jm11', 'fr', 1, 'https://ror.org/00ex3jm11 Cohortes ƩpidƩmiologiques en population'),
(114190, 'https://ror.org/00htwgm11', 'en', 1, 'https://ror.org/00htwgm11 National University of Salta Universidad Nacional de Salta'),
(114191, 'https://ror.org/018n13n96', 'fr', 1, 'https://ror.org/018n13n96 Histoire et critique des arts'),
(114192, 'https://ror.org/00qt2x502', 'en', 1, 'https://ror.org/00qt2x502 Danubius International University Universitatea Internațională Danubius'),
(114193, 'https://ror.org/022nbkh73', 'en', 1, 'https://ror.org/022nbkh73 Community Health Systems - Lower Keys Medical Center'),
(114194, 'https://ror.org/00tge7270', 'da', 1, 'https://ror.org/00tge7270 Business Academy Copenhagen Erhvervsakademi KĆøbenhavn'),
(114195, 'https://ror.org/059xs3104', 'fr', 1, 'https://ror.org/059xs3104 ArchƩorient'),
(114196, 'https://ror.org/043pfpy19', 'fr', 1, 'https://ror.org/043pfpy19 Laboratoire des Ɖcoulements GĆ©ophysiques et Industriels Laboratory of Geophysical and Industrial Flows'),
(114197, 'https://ror.org/02p2rk609', 'fr', 1, 'https://ror.org/02p2rk609 Laboratoire de MathƩmatiques et Applications'),
(114198, 'https://ror.org/023g17d47', 'fr', 1, 'https://ror.org/023g17d47 Centre de recherche en reproduction humaine et en dƩmographie'),
(114199, 'https://ror.org/033br4070', 'en', 1, 'https://ror.org/033br4070 Saidu College of Dentistry'),
(114200, 'https://ror.org/05whqt140', 'id', 1, 'https://ror.org/05whqt140 Universitas Fajar'),
(114201, 'https://ror.org/03k6jnj59', 'en', 1, 'https://ror.org/03k6jnj59 CPL Meetings and Events (Portugal)'),
(114202, 'https://ror.org/00dy3ee97', 'fr', 0, 'https://ror.org/00dy3ee97 Diplomatique'),
(114203, 'https://ror.org/00nrbsf87', 'en', 1, 'https://ror.org/00nrbsf87 Institute of Oncology Prof. Dr. Ion Chiricuta'),
(114204, 'https://ror.org/00dn75839', 'id', 1, 'https://ror.org/00dn75839 Universitas Batam'),
(114205, 'https://ror.org/038kjt533', 'en', 1, 'https://ror.org/038kjt533 Dreamo Balanced Work Systems (Portugal)'),
(114206, 'https://ror.org/00zfr6d18', 'fr', 1, 'https://ror.org/00zfr6d18 Cognition, SantƩ, SociƩtƩ'),
(114207, 'https://ror.org/03jpkw355', 'pt', 1, 'https://ror.org/03jpkw355 Instituto de Soldadura e Qualidade'),
(114208, 'https://ror.org/05hxhxh67', 'pt', 1, 'https://ror.org/05hxhxh67 Formalpress Publications and Marketing Odivelas Formalpress PublicaƧƵes e Marketing Odivelas (Portugal)'),
(114209, 'https://ror.org/01gg8cn12', 'en', 1, 'https://ror.org/01gg8cn12 Mihir Bhoj Postgraduate College, Dadri मिहिर ą¤­ą„‹ą¤œ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤•ą„‰ą¤²ą„‡ą¤œ, ą¤¦ą¤¾ą¤¦ą¤°ą„€'),
(114210, 'https://ror.org/03dpvmw27', 'en', 1, 'https://ror.org/03dpvmw27 Research Institute for Fragrance Materials'),
(114211, 'https://ror.org/04xr5we72', 'es', 1, 'https://ror.org/04xr5we72 Universidad CientĆ­fica del Sur'),
(114212, 'https://ror.org/02r4zkd90', 'no_lang_code', 1, 'https://ror.org/02r4zkd90 Metropolitan Expressway Company Metropolitan Expressway Company (Japan) Metropolitan Expressway Company Limited é¦–éƒ½é«˜é€Ÿé“č·Æę Ŗå¼ä¼šē¤¾'),
(114213, 'https://ror.org/0320rar10', 'en', 1, 'https://ror.org/0320rar10 MRIGlobal'),
(114214, 'https://ror.org/03xkvz448', 'pt', 1, 'https://ror.org/03xkvz448 Centro de Investigação de Direito Público Lisbon Public Law Research Centre'),
(114215, 'https://ror.org/026z5dx16', 'no_lang_code', 1, 'https://ror.org/026z5dx16 Editorial Cientƭfico-TƩcnica Ocronos Editorial Cientƭfico-TƩcnica Ocronos (Spain)'),
(114216, 'https://ror.org/003frhn24', 'en', 1, 'https://ror.org/003frhn24 Amarillo College'),
(114217, 'https://ror.org/05xx3wf87', 'en', 1, 'https://ror.org/05xx3wf87 Institute of Mathematics and Mathematical Modeling'),
(114218, 'https://ror.org/05529q263', 'en', 1, 'https://ror.org/05529q263 Chungbuk National University Hospital ģ¶©ė¶ėŒ€ķ•™źµė³‘ģ›'),
(114219, 'https://ror.org/0307mca49', 'en', 1, 'https://ror.org/0307mca49 Institute of Solid Mechanics Institutul de Mecanica Solidelor al Academiei Române'),
(114220, 'https://ror.org/0227md814', 'fr', 1, 'https://ror.org/0227md814 Equipe de droit public de Lyon'),
(114221, 'https://ror.org/02160my55', 'fr', 1, 'https://ror.org/02160my55 Ingenierie des Materiaux polymeres Laboratory of Polymer Materials Engineering'),
(114222, 'https://ror.org/02hre1s19', 'en', 1, 'https://ror.org/02hre1s19 OpenPRA ORG Inc. The OpenPRA Initiative'),
(114223, 'https://ror.org/00sfnf466', 'en', 1, 'https://ror.org/00sfnf466 Franciscan University of Steubenville'),
(114224, 'https://ror.org/04yc2e502', 'fr', 1, 'https://ror.org/04yc2e502 IngƩnierie MolƩculaire et Physiopathologie Articulaire'),
(114225, 'https://ror.org/05pny1q12', 'fr', 1, 'https://ror.org/05pny1q12 Laboratoire d''Ecologie des Hydrosystèmes Naturels et Anthropisés'),
(114226, 'https://ror.org/005fhxd91', 'no_lang_code', 1, 'https://ror.org/005fhxd91 BioReperia BioReperia AB BioReperia AB (Sweden)'),
(114227, 'https://ror.org/04a58kk42', 'en', 1, 'https://ror.org/04a58kk42 ABDO College'),
(114228, 'https://ror.org/04vg26t07', 'fr', 1, 'https://ror.org/04vg26t07 Nanosciences et Innovation pour les MatĆ©riaux, la BiomĆ©decine et l''Ɖnergie'),
(114229, 'https://ror.org/007z4h433', 'fr', 1, 'https://ror.org/007z4h433 Centre lyonnais d''Histoire du droit et de la pensƩe politique'),
(114230, 'https://ror.org/04jdthe46', 'es', 1, 'https://ror.org/04jdthe46 Hospital de ClĆ­nicas'),
(114231, 'https://ror.org/02g4mxc89', 'fr', 1, 'https://ror.org/02g4mxc89 Laboratoire d''Innovation ThƩrapeutique Laboratory for Therapeutic Innovation'),
(114232, 'https://ror.org/02kq60523', 'id', 1, 'https://ror.org/02kq60523 Universitas Muhammadiyah Metro'),
(114233, 'https://ror.org/00rbwjz14', 'no_lang_code', 1, 'https://ror.org/00rbwjz14 Xenopat Xenopat SL Xenopat SL (Spain)'),
(114234, 'https://ror.org/02khtdb43', 'en', 1, 'https://ror.org/02khtdb43 American Academy of Family Physicians'),
(114235, 'https://ror.org/036mwh061', 'en', 1, 'https://ror.org/036mwh061 Advanced Center for Chronic Diseases'),
(114236, 'https://ror.org/025w03e38', 'fr', 1, 'https://ror.org/025w03e38 Centre d''Analyse et de Recherche Interdisciplinaires sur les MƩdias'),
(114237, 'https://ror.org/0134he436', 'es', 1, 'https://ror.org/0134he436 Instituto Tecnológico Superior de San Pedro de las Colonias'),
(114238, 'https://ror.org/040z06056', 'en', 1, 'https://ror.org/040z06056 Manubhai Patel Dental College and Hospital'),
(114239, 'https://ror.org/0056s7g24', 'en', 1, 'https://ror.org/0056s7g24 Kenya Institute of Surveying and Mapping'),
(114240, 'https://ror.org/01hyzhn36', 'pt', 1, 'https://ror.org/01hyzhn36 Medavantis (Portugal)'),
(114241, 'https://ror.org/050zvc738', 'en', 1, 'https://ror.org/050zvc738 Agia Olga Hospital ĪšĪ©ĪĪ£Ī¤Ī‘ĪĪ¤ĪŸĪ ĪŸĪ„Ī›Ī•Ī™ĪŸ Ī“Ī•ĪĪ™ĪšĪŸ ĪĪŸĪ£ĪŸĪšĪŸĪœĪ•Ī™ĪŸ ĪĪ•Ī‘Ī£ Ī™Ī©ĪĪ™Ī‘Ī£'),
(114242, 'https://ror.org/049tmnf40', 'pl', 1, 'https://ror.org/049tmnf40 Mazowiecko-Świętokrzyskie Towarzystwo Ornitologiczne'),
(114243, 'https://ror.org/03xpvwe80', 'en', 1, 'https://ror.org/03xpvwe80 Pandit Bhagwat Dayal Sharma University of Health Sciences'),
(114244, 'https://ror.org/057bht293', 'de', 1, 'https://ror.org/057bht293 Robert Koch Foundation Robert-Koch-Stiftung'),
(114245, 'https://ror.org/04k5h2q42', 'fr', 1, 'https://ror.org/04k5h2q42 (Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées Metabolic Functional (epi)Genomics and Molecular Mechanisms Involved in type 2 Diabetes and Related Diseases'),
(114246, 'https://ror.org/0244zj488', 'en', 1, 'https://ror.org/0244zj488 Community Health Systems - Tennova Turkey Creek Medical Center'),
(114247, 'https://ror.org/04eekkg41', 'en', 1, 'https://ror.org/04eekkg41 Office of the Under Secretary of War for Acquisition & Sustainment'),
(114248, 'https://ror.org/03j3q5a83', 'en', 1, 'https://ror.org/03j3q5a83 Magellan Health'),
(114249, 'https://ror.org/03q99v794', 'fr', 1, 'https://ror.org/03q99v794 UnitƩ MatƩriaux et Transformations'),
(114250, 'https://ror.org/01zxjvf21', 'en', 1, 'https://ror.org/01zxjvf21 Community Health Systems - Dukes Memorial Hospital'),
(114251, 'https://ror.org/004srxn73', 'en', 1, 'https://ror.org/004srxn73 Shanghai Institute for Science of Science äøŠęµ·åø‚ē§‘å­¦å­¦ē ”ē©¶ę‰€'),
(114252, 'https://ror.org/04qq0qp34', 'fr', 1, 'https://ror.org/04qq0qp34 Laboratoire du Futur'),
(114253, 'https://ror.org/04ahnxd67', 'de', 1, 'https://ror.org/04ahnxd67 St. Claraspital'),
(114254, 'https://ror.org/04vrqzz54', 'fr', 1, 'https://ror.org/04vrqzz54 Laboratory of Catalysis and Solid State Chemistry UnitƩ de catalyse et de chimie du solide de Lille'),
(114255, 'https://ror.org/02pbsk254', 'de', 1, 'https://ror.org/02pbsk254 Klinikum Lippe'),
(114256, 'https://ror.org/050p4pc72', 'id', 1, 'https://ror.org/050p4pc72 Universitas 17 Agustus 1945 Samarinda'),
(114257, 'https://ror.org/03zzbzq91', 'fr', 1, 'https://ror.org/03zzbzq91 Laboratoire Communication et SociƩtƩs'),
(114258, 'https://ror.org/01hf1b360', 'pt', 1, 'https://ror.org/01hf1b360 Unidade Hospitalar de Mirandela'),
(114259, 'https://ror.org/02vb7sj25', 'en', 1, 'https://ror.org/02vb7sj25 Geneva College'),
(114260, 'https://ror.org/03949e763', 'en', 1, 'https://ror.org/03949e763 Integrated Structural Biology Grenoble'),
(114261, 'https://ror.org/053j74t32', 'pt', 1, 'https://ror.org/053j74t32 Biblioteca Noronha Feio'),
(114262, 'https://ror.org/04vt1n802', 'es', 1, 'https://ror.org/04vt1n802 Polytechnic University of the Sea and the Sierra Universidad PolitƩcnica del Mar y la Sierra'),
(114263, 'https://ror.org/05fw7yh21', 'pt', 1, 'https://ror.org/05fw7yh21 Museu JosƩ Malhoa'),
(114264, 'https://ror.org/022r5hc56', 'fr', 1, 'https://ror.org/022r5hc56 Centre de Recherche en Automatique de Nancy Research Center for Automatic Control of Nancy'),
(114265, 'https://ror.org/02yf7ck74', 'pt', 1, 'https://ror.org/02yf7ck74 DDailywork Research and Development Dailywork Investigação e Desenvolvimento (Portugal)'),
(114266, 'https://ror.org/00y4qff92', 'en', 1, 'https://ror.org/00y4qff92 Kyoto College of Medical Science äŗ¬éƒ½åŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(114267, 'https://ror.org/05ndpad60', 'en', 1, 'https://ror.org/05ndpad60 University of Sioux Falls'),
(114268, 'https://ror.org/05jnq7w45', 'no_lang_code', 1, 'https://ror.org/05jnq7w45 Heron Therapeutics (United States)'),
(114269, 'https://ror.org/02ght4n58', 'fr', 1, 'https://ror.org/02ght4n58 Laboratoire de MathƩmatiques de Bretagne Atlantique'),
(114270, 'https://ror.org/04795e365', 'fr', 1, 'https://ror.org/04795e365 Institut d''Histoire Moderne et Contemporaine'),
(114271, 'https://ror.org/026m1rk14', 'fr', 1, 'https://ror.org/026m1rk14 Valeurs, Innovations, Politiques, Socialisations et Sports'),
(114272, 'https://ror.org/00ng6qz27', 'en', 1, 'https://ror.org/00ng6qz27 Community Health Systems - AllianceHealth Madill'),
(114273, 'https://ror.org/0570n2773', 'en', 1, 'https://ror.org/0570n2773 Institute for Tourism'),
(114274, 'https://ror.org/01dp1py52', 'en', 1, 'https://ror.org/01dp1py52 National Research & Development Institute for Textiles and Leather'),
(114275, 'https://ror.org/00fadxs59', 'en', 1, 'https://ror.org/00fadxs59 National Institute of Aerospace'),
(114276, 'https://ror.org/01tvqd679', 'en', 1, 'https://ror.org/01tvqd679 Osaka Health Science University å¤§é˜Ŗäæå„åŒ»ē™‚å¤§å­¦'),
(114277, 'https://ror.org/044kxby82', 'fr', 1, 'https://ror.org/044kxby82 Institut MontpelliƩrain Alexander Grothendieck'),
(114278, 'https://ror.org/04765mq43', 'no_lang_code', 1, 'https://ror.org/04765mq43 Editorial Cuadernos de SofĆ­a Editorial Cuadernos de SofĆ­a (Chile) Editorial Cuadernos de SofĆ­a SPA'),
(114279, 'https://ror.org/01zjb7k44', 'no_lang_code', 1, 'https://ror.org/01zjb7k44 PHARMAHUNGARY 2000 KĆ­sĆ©rletes Ć©s Klinikai KutatĆ”sfejlesztĆ©si KorlĆ”tolt FelelőssĆ©gű TĆ”rsasĆ”g Pharmahungary Group Pharmahungary Group (Hungary)'),
(114280, 'https://ror.org/01wp40722', 'en', 1, 'https://ror.org/01wp40722 Government Engineering College, Bhavnagar'),
(114281, 'https://ror.org/00g910h83', 'it', 1, 'https://ror.org/00g910h83 ASL Lanciano Vasto Chieti'),
(114282, 'https://ror.org/000hzy098', 'en', 1, 'https://ror.org/000hzy098 Saint Petersburg State Pediatric Medical University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГиатрический меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114283, 'https://ror.org/00srrcb42', 'fr', 1, 'https://ror.org/00srrcb42 Laboratoire CaribƩen de Sciences Sociales'),
(114284, 'https://ror.org/03rbv1p10', 'pt', 1, 'https://ror.org/03rbv1p10 Administração Regional de Saúde do Algarve IP'),
(114285, 'https://ror.org/002zf4a56', 'en', 1, 'https://ror.org/002zf4a56 Waikato Hospital'),
(114286, 'https://ror.org/02b9znm90', 'fr', 1, 'https://ror.org/02b9znm90 Laboratoire d’Imagerie BiomĆ©dicale'),
(114287, 'https://ror.org/023b14j50', 'en', 1, 'https://ror.org/023b14j50 Shri Sathya Sai Medical College and Research Institute ą®øąÆą®°ąÆ€ ą®šą®¤ąÆą®Æ ą®šą®¾ą®ÆąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(114288, 'https://ror.org/0405nh111', 'de', 1, 'https://ror.org/0405nh111 Bundesamt für Wasserwirtschaft'),
(114289, 'https://ror.org/00k4ab982', 'en', 1, 'https://ror.org/00k4ab982 Dr. Bhim Rao Ambedkar University'),
(114290, 'https://ror.org/011zhpm35', 'id', 1, 'https://ror.org/011zhpm35 Sekolah Tinggi Ilmu Kesehatan Intan Martapura'),
(114291, 'https://ror.org/02k1der83', 'id', 1, 'https://ror.org/02k1der83 Jenderal Achmad Yani University Universitas Jenderal Achmad Yani'),
(114292, 'https://ror.org/03kk9k137', 'en', 1, 'https://ror.org/03kk9k137 Nigerian Institute of Medical Research'),
(114293, 'https://ror.org/00qp9bj50', 'pt', 1, 'https://ror.org/00qp9bj50 Convento Espirito Santo'),
(114294, 'https://ror.org/04rmz8121', 'en', 1, 'https://ror.org/04rmz8121 Isra University'),
(114295, 'https://ror.org/015x8rz21', 'fr', 1, 'https://ror.org/015x8rz21 Laboratoire des Solides IrradiƩs'),
(114296, 'https://ror.org/05qsp5m64', 'fr', 1, 'https://ror.org/05qsp5m64 Laboratoire Ondes et MatiĆØre d''Aquitaine'),
(114297, 'https://ror.org/01797xg87', 'no_lang_code', 1, 'https://ror.org/01797xg87 MEI Research (United States)'),
(114298, 'https://ror.org/052y55j77', 'en', 1, 'https://ror.org/052y55j77 CREW - Center for Research on the English-speaking World Center for Research on the English-speaking World'),
(114299, 'https://ror.org/003fz8y18', 'en', 1, 'https://ror.org/003fz8y18 Saidu Medical College ŲÆ سیدو Ų·ŲØ Ł¾ŁˆŁ‡Ł†ŚŪŒ سیدو طبی کالج'),
(114300, 'https://ror.org/00da5hk39', 'fr', 1, 'https://ror.org/00da5hk39 MATƩriaux et IngƩnierie MƩcanique'),
(114301, 'https://ror.org/01nf6gr90', 'en', 1, 'https://ror.org/01nf6gr90 Ergon Informatik AG Ergon Informatik AG (Switzerland)'),
(114302, 'https://ror.org/05eb0k586', 'fr', 1, 'https://ror.org/05eb0k586 HABITER AmƩnagement et gƩographie politique'),
(114303, 'https://ror.org/0282m7c06', 'no_lang_code', 1, 'https://ror.org/0282m7c06 University of Banja Luka Univerzitet u Banja Luci Универзитет у Š‘Š°ŃšŠ¾Ń˜ Š›ŃƒŃ†Šø'),
(114304, 'https://ror.org/03qzktr95', 'en', 1, 'https://ror.org/03qzktr95 EAE Business School Escuela de Administración de Empresas'),
(114305, 'https://ror.org/04prq1595', 'en', 1, 'https://ror.org/04prq1595 National Scientific Center "Institute of Experimental and Clinical Veterinary Medicine" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠµŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Ń— і клінічної ветеринарної меГицини»'),
(114306, 'https://ror.org/025wndx93', 'fr', 1, 'https://ror.org/025wndx93 University of Parakou UniversitƩ de Parakou'),
(114307, 'https://ror.org/00pwny267', 'en', 1, 'https://ror.org/00pwny267 European Telecommunications Standards Institute'),
(114308, 'https://ror.org/03h7mcc28', 'en', 1, 'https://ror.org/03h7mcc28 Directorate for Social, Behavioral & Economic Sciences'),
(114309, 'https://ror.org/00qpy9f50', 'pt', 1, 'https://ror.org/00qpy9f50 Comissão para a igualdade no Trabalho e no Emprego'),
(114310, 'https://ror.org/043ey0s60', 'pt', 1, 'https://ror.org/043ey0s60 Unidade Local de SaĆŗde do Algarve');
INSERT INTO `rors` VALUES
(114311, 'https://ror.org/02qdgbw61', 'fr', 1, 'https://ror.org/02qdgbw61 Service des Avions FranƧais InstrumentƩs pour la Recherche en Environnement'),
(114312, 'https://ror.org/029frk090', 'pt', 1, 'https://ror.org/029frk090 Centro de Estudos das MigraƧƵes e das RelaƧƵes Interculturais'),
(114313, 'https://ror.org/01frpmv27', 'en', 1, 'https://ror.org/01frpmv27 Alvan Ikoku Federal University of Education, Owerri'),
(114314, 'https://ror.org/04syzjx81', 'en', 1, 'https://ror.org/04syzjx81 Research Institute for Aging'),
(114315, 'https://ror.org/01xntxg74', 'en', 1, 'https://ror.org/01xntxg74 Change Grow Live'),
(114316, 'https://ror.org/01hbpef95', 'pt', 1, 'https://ror.org/01hbpef95 Grupo de Astronomia'),
(114317, 'https://ror.org/01dadvw90', 'fr', 1, 'https://ror.org/01dadvw90 Institut de SystĆ©matique, Ɖvolution, BiodiversitĆ©'),
(114318, 'https://ror.org/03sbftg39', 'fr', 1, 'https://ror.org/03sbftg39 French Pork and Pig Institute Institut du Porc'),
(114319, 'https://ror.org/02k1vq030', 'en', 1, 'https://ror.org/02k1vq030 SBC Tokyo Medical University SBCę±äŗ¬åŒ»ē™‚å¤§å­¦'),
(114320, 'https://ror.org/03h5ahs51', 'fr', 1, 'https://ror.org/03h5ahs51 Institut SupƩrieur de Techniques AppliquƩes'),
(114321, 'https://ror.org/03tsjvt68', 'en', 1, 'https://ror.org/03tsjvt68 Mediterranean University Univerzitet Mediteran'),
(114322, 'https://ror.org/04t3peq77', 'id', 1, 'https://ror.org/04t3peq77 Institut Manajemen Koperasi Indonesia'),
(114323, 'https://ror.org/03ygj8248', 'fr', 1, 'https://ror.org/03ygj8248 Europe orientale, balkanique et mƩdiane'),
(114324, 'https://ror.org/04w01dm88', 'pt', 1, 'https://ror.org/04w01dm88 Laboratório de Paisagens Património e Território andscapes, Heritage and Territory Laboratory'),
(114325, 'https://ror.org/02cpgaz56', 'pt', 1, 'https://ror.org/02cpgaz56 Centro de Investigação em Biociências e Tecnologias da Saúde Research Center for Biosciences & Health Technologies'),
(114326, 'https://ror.org/04bz7jh43', 'fr', 1, 'https://ror.org/04bz7jh43 FIRL - Formes et Idées de la Renaissance aux Lumières Formes et Idées de la Renaissance aux Lumières'),
(114327, 'https://ror.org/0337x0d68', 'pt', 1, 'https://ror.org/0337x0d68 Dariacordar Associação para a Recuperação do Desperdício'),
(114328, 'https://ror.org/033e5bj62', 'fr', 1, 'https://ror.org/033e5bj62 Mouvement, Equilibre, Performance, SantƩ Movement, Balance, Performance, Health'),
(114329, 'https://ror.org/02ngap550', 'en', 1, 'https://ror.org/02ngap550 Guangdong Mechanical & Electrical Polytechnic Guangdong Mechanical and Electrical Polytechnic å¹æäøœęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(114330, 'https://ror.org/04yg3w958', 'es', 1, 'https://ror.org/04yg3w958 Centro MƩdico Docente La Trinidad'),
(114331, 'https://ror.org/01ba0qf36', 'pt', 1, 'https://ror.org/01ba0qf36 Hospital Santa Maria Maior EPE'),
(114332, 'https://ror.org/05h0cmr57', 'tl', 1, 'https://ror.org/05h0cmr57 Pamantasan ng Cabuyao University of Cabuyao'),
(114333, 'https://ror.org/00zcxra43', 'en', 1, 'https://ror.org/00zcxra43 Namal University'),
(114334, 'https://ror.org/040wb2y55', 'no_lang_code', 1, 'https://ror.org/040wb2y55 University of Luhansk Ługański Uniwersytet Narodowy im. Tarasa Szewczenki Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Тараса Шевченко Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Тараса Шевченка'),
(114335, 'https://ror.org/04dxgk724', 'en', 1, 'https://ror.org/04dxgk724 Soban Singh Jeena University ą¤øą„‹ą¤¬ą¤Ø सिंह ą¤œą„€ą¤Øą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(114336, 'https://ror.org/00dfdyh02', 'id', 1, 'https://ror.org/00dfdyh02 Universitas Yatsi Madani'),
(114337, 'https://ror.org/00wzfde70', 'pt', 1, 'https://ror.org/00wzfde70 EdiƧƵes Humus (Portugal) Humus Publishers'),
(114338, 'https://ror.org/020j5zv28', 'pt', 1, 'https://ror.org/020j5zv28 Serviço Nacional de Saúde'),
(114339, 'https://ror.org/02j652854', 'id', 1, 'https://ror.org/02j652854 Universitas Komputer Indonesia'),
(114340, 'https://ror.org/02qprbz18', 'fr', 1, 'https://ror.org/02qprbz18 Institut des Mondes Africains'),
(114341, 'https://ror.org/053mpbz30', 'en', 1, 'https://ror.org/053mpbz30 Association of Research Libraries'),
(114342, 'https://ror.org/01b3n9g22', 'it', 1, 'https://ror.org/01b3n9g22 Fondazione Gimema Onlus'),
(114343, 'https://ror.org/01nyrrx14', 'fr', 1, 'https://ror.org/01nyrrx14 Laboratoire d''Ɖtude des Microstructures et de MĆ©canique des MatĆ©riaux Laboratory of Microstructure Studies and Mechanics of Materials'),
(114344, 'https://ror.org/015s96x19', 'pt', 1, 'https://ror.org/015s96x19 AlcƔcer do Sal Environmental Studies Center Centro de Estudos Ambientais de AlcƔcer do Sal (Portugal)'),
(114345, 'https://ror.org/02xn8bh65', 'en', 1, 'https://ror.org/02xn8bh65 University of Divinity'),
(114346, 'https://ror.org/04rymkk69', 'en', 1, 'https://ror.org/04rymkk69 Muroran Institute of Technology 室蘭巄愭大学'),
(114347, 'https://ror.org/02vtdx988', 'en', 1, 'https://ror.org/02vtdx988 Houston Museum of Natural Science'),
(114348, 'https://ror.org/04zz3m093', 'en', 1, 'https://ror.org/04zz3m093 KIST Medical College'),
(114349, 'https://ror.org/04x31hn39', 'en', 1, 'https://ror.org/04x31hn39 Bangladesh Institute of Development Studies বাংলাদেশ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø গবেষণা ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø'),
(114350, 'https://ror.org/03aw5sn18', 'en', 1, 'https://ror.org/03aw5sn18 University of California San Diego Medical Center'),
(114351, 'https://ror.org/00mc6bw20', 'en', 1, 'https://ror.org/00mc6bw20 Dr. C. V. Raman University ą¤”ą„‰. ą¤øą„€.ą¤µą„€. रमन ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(114352, 'https://ror.org/03pnv4752', 'en', 1, 'https://ror.org/03pnv4752 Queensland University of Technology'),
(114353, 'https://ror.org/0229ynq17', 'de', 1, 'https://ror.org/0229ynq17 Stiftung Block'),
(114354, 'https://ror.org/01e8sd806', 'en', 1, 'https://ror.org/01e8sd806 Himalayan University'),
(114355, 'https://ror.org/05mx55f96', 'fr', 1, 'https://ror.org/05mx55f96 Laboratoire de Biologie MolƩculaire et Cellulaire des Eucaryotes Laboratory of Molecular and Cellular Biology of Eukaryotes'),
(114356, 'https://ror.org/0172s2g64', 'fr', 1, 'https://ror.org/0172s2g64 Institut de Recherche sur le Maghreb Contemporain'),
(114357, 'https://ror.org/05y4mf750', 'it', 1, 'https://ror.org/05y4mf750 Alleanza Contro il Cancro Alliance Against Cancer'),
(114358, 'https://ror.org/0489xrh07', 'nl', 1, 'https://ror.org/0489xrh07 Antonius Ziekenhuis'),
(114359, 'https://ror.org/04zfwta05', 'en', 1, 'https://ror.org/04zfwta05 ChiraTecnics ChiraTecnics (Portugal)'),
(114360, 'https://ror.org/02nthwg11', 'fr', 1, 'https://ror.org/02nthwg11 Laboratoire de BiogenĆØse Membranaire'),
(114361, 'https://ror.org/044tecp05', 'ro', 1, 'https://ror.org/044tecp05 Institute of Atomic Physics Institutul de Fizică Atomică'),
(114362, 'https://ror.org/017rnyz40', 'fr', 1, 'https://ror.org/017rnyz40 Ministry of Culture MinistĆØre de la Culture'),
(114363, 'https://ror.org/000w57b95', 'en', 1, 'https://ror.org/000w57b95 Institute of Public Health Instituti i Shƫndetit Publik'),
(114364, 'https://ror.org/05ap1tw43', 'en', 1, 'https://ror.org/05ap1tw43 Jizzakh State Pedagogical University Jizzax Davlat Pedagogika Universiteti Джизакский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(114365, 'https://ror.org/05q95ps16', 'en', 1, 'https://ror.org/05q95ps16 Kurgan State University ŠšŃƒŃ€Š³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114366, 'https://ror.org/01k7w0p97', 'fr', 1, 'https://ror.org/01k7w0p97 Centre Ɖmile Durkheim'),
(114367, 'https://ror.org/05kf82e36', 'en', 1, 'https://ror.org/05kf82e36 Institute of Basic Theory for Chinese Medicine äø­åŒ»åŸŗē”€ē†č®ŗē ”ē©¶ę‰€'),
(114368, 'https://ror.org/049ysg747', 'en', 1, 'https://ror.org/049ysg747 Rajshahi University of Engineering & Technology Rajshahi University of Engineering and Technology ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(114369, 'https://ror.org/00h0vpf51', 'fr', 1, 'https://ror.org/00h0vpf51 IRET - Institut de Recherche en Etudes Théâtrales Institut de Recherche en Ɖtudes Théâtrales'),
(114370, 'https://ror.org/05ef3nj70', 'es', 1, 'https://ror.org/05ef3nj70 Centro Uruguayo de ImagenologĆ­a Molecular'),
(114371, 'https://ror.org/01gapzp55', 'fr', 1, 'https://ror.org/01gapzp55 Centre Roland Mousnier'),
(114372, 'https://ror.org/04w3v2j10', 'en', 1, 'https://ror.org/04w3v2j10 Croatian Hydrographic Institute Hrvatski Hidrografski Institut'),
(114373, 'https://ror.org/05p7fmf80', 'en', 1, 'https://ror.org/05p7fmf80 Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer'),
(114374, 'https://ror.org/05he0t313', 'pl', 1, 'https://ror.org/05he0t313 University of Kalisz Uniwersytet Kaliski im. Prezydenta Stanisława Wojciechowskiego'),
(114375, 'https://ror.org/00a7wgt63', 'en', 1, 'https://ror.org/00a7wgt63 Winterthur Museum Garden and Library'),
(114376, 'https://ror.org/03sxh6j79', 'pt', 1, 'https://ror.org/03sxh6j79 Vila Gale Hotels Vila GalƩ (Portugal)'),
(114377, 'https://ror.org/05xxb2f26', 'fr', 1, 'https://ror.org/05xxb2f26 Genetics, Functional Genomics and Biotechnology GƩnƩtique, GƩnomique Fonctionnelle et Biotechnologies'),
(114378, 'https://ror.org/006t1nm29', 'id', 1, 'https://ror.org/006t1nm29 Politeknik Enjinering Indorama'),
(114379, 'https://ror.org/01xez3q03', 'en', 1, 'https://ror.org/01xez3q03 Community Health Systems - Tennova Healthcare - Clarksville'),
(114380, 'https://ror.org/02em35360', 'no_lang_code', 1, 'https://ror.org/02em35360 asvin GmbH asvin GmbH (Germany)'),
(114381, 'https://ror.org/0338da144', 'nl', 1, 'https://ror.org/0338da144 Synaeda Psycho Medisch Centrum'),
(114382, 'https://ror.org/002qybp75', 'en', 1, 'https://ror.org/002qybp75 National Institute of Measurement and Testing Technology äø­å›½ęµ‹čÆ•ęŠ€ęœÆē ”ē©¶é™¢'),
(114383, 'https://ror.org/035dgzp41', 'fr', 1, 'https://ror.org/035dgzp41 CRIAL - Centre de Recherche Interuniversitaire sur l''AmƩrique Latine Centre de Recherche Interuniversitaire sur l''AmƩrique Latine'),
(114384, 'https://ror.org/03tt3bb59', 'en', 1, 'https://ror.org/03tt3bb59 British Institute of International and Comparative Law'),
(114385, 'https://ror.org/04zvnhs84', 'en', 1, 'https://ror.org/04zvnhs84 Community Health Systems - Northwest Health - La Porte'),
(114386, 'https://ror.org/0251g2d64', 'en', 1, 'https://ror.org/0251g2d64 European Association of Social Psychology'),
(114387, 'https://ror.org/027rt1g28', 'no_lang_code', 1, 'https://ror.org/027rt1g28 Radiation Monitoring Devices (United States)'),
(114388, 'https://ror.org/02hw9fh16', 'pt', 1, 'https://ror.org/02hw9fh16 Centro de Investigação em Organizações Mercados e Gestão Industrial'),
(114389, 'https://ror.org/052yhxz58', 'no_lang_code', 0, 'https://ror.org/052yhxz58 Innovation Center Iceland Nýskƶpunarmiưstƶư ƍslands'),
(114390, 'https://ror.org/02bq56641', 'fr', 1, 'https://ror.org/02bq56641 ArchƩologie et ArchƩomƩtrie'),
(114391, 'https://ror.org/02rdv7g39', 'pt', 1, 'https://ror.org/02rdv7g39 Sociedade Portuguesa de Ciências em Animais de Laboratório'),
(114392, 'https://ror.org/01qvk6016', 'en', 1, 'https://ror.org/01qvk6016 Zero to Three'),
(114393, 'https://ror.org/03qx44y49', 'pt', 1, 'https://ror.org/03qx44y49 Unidade Hospitalar de Santo Tirso'),
(114394, 'https://ror.org/01yjw7g33', 'pt', 1, 'https://ror.org/01yjw7g33 Laboratório de Águas do Litoral Alentejano (Portugal) Water Laboratory of the Alentejo Coast'),
(114395, 'https://ror.org/01bh91531', 'en', 1, 'https://ror.org/01bh91531 National Institute for Biotechnology and Genetic Engineering'),
(114396, 'https://ror.org/039h3vh71', 'en', 0, 'https://ror.org/039h3vh71 Capital and Coast District Health Board'),
(114397, 'https://ror.org/04yvfxe52', 'en', 1, 'https://ror.org/04yvfxe52 Center for Responsible Travel'),
(114398, 'https://ror.org/01h8mzz32', 'en', 1, 'https://ror.org/01h8mzz32 Institute of Metals and Technology InŔtitut za Kovinske Materiale in Tehnologije'),
(114399, 'https://ror.org/00xgast28', 'en', 1, 'https://ror.org/00xgast28 Thermal Energy Technology Institute of the National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплоенергетичних технологій ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(114400, 'https://ror.org/01m91v580', 'en', 1, 'https://ror.org/01m91v580 Universiti Tun Abdul Razak'),
(114401, 'https://ror.org/029we7x82', 'pt', 1, 'https://ror.org/029we7x82 Unidade Local de Saúde da Região de Aveiro'),
(114402, 'https://ror.org/02xzwgv56', 'pt', 1, 'https://ror.org/02xzwgv56 Hospital Arcebispo João Crisóstomo Cantanhede'),
(114403, 'https://ror.org/05v9vy052', 'en', 1, 'https://ror.org/05v9vy052 Sulaimani Polytechnic University Ų²Ų§Ł†Ś©Ū†ŪŒ Ł¾Ū†Ł„ŪŒŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ Ų³Ł„ŪŽŁ…Ų§Ł†ŪŒ'),
(114404, 'https://ror.org/01fvx3s14', 'fr', 1, 'https://ror.org/01fvx3s14 Laboratoire Dynamique du Langage'),
(114405, 'https://ror.org/03ry2ah66', 'en', 1, 'https://ror.org/03ry2ah66 Sydney Institute of Marine Science'),
(114406, 'https://ror.org/03f0pkh33', 'en', 1, 'https://ror.org/03f0pkh33 Novosibirsk State University of Economics and Management Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ ŠŠ˜ŠŠ„'),
(114407, 'https://ror.org/008j2sh91', 'pt', 1, 'https://ror.org/008j2sh91 NMT Technology Innovation and Consulting NMT Tecnologia Inovação e Consultoria SA (Portugal)'),
(114408, 'https://ror.org/04ett5b41', 'fr', 1, 'https://ror.org/04ett5b41 Laboratoire Jean Kuntzmann'),
(114409, 'https://ror.org/05p9yt040', 'en', 1, 'https://ror.org/05p9yt040 "International business-information academy" Tuzla (IPI Academy) Internacionalna poslovno informaciona akademija Tuzla'),
(114410, 'https://ror.org/036zswm25', 'fr', 1, 'https://ror.org/036zswm25 Laboratoire des Technologies de la MicroƩlectronique'),
(114411, 'https://ror.org/01z6t2510', 'pt', 1, 'https://ror.org/01z6t2510 Millennium bcp (Portugal)'),
(114412, 'https://ror.org/00vp4y570', 'id', 1, 'https://ror.org/00vp4y570 Universitas 17 Agustus 1945 Jakarta'),
(114413, 'https://ror.org/03ejw6j35', 'pt', 1, 'https://ror.org/03ejw6j35 Unidade Local de Saude de Barcelos/Esposende'),
(114414, 'https://ror.org/01h55mk94', 'en', 1, 'https://ror.org/01h55mk94 Aryabhatta Knowledge University ą¤†ą¤°ą„ą¤Æą¤­ą¤Ÿą„ą¤Ÿ ą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(114415, 'https://ror.org/00w67e447', 'fr', 1, 'https://ror.org/00w67e447 Laboratoire de Physique Théorique et Modèles Statistiques Laboratory of Theoretical Physics and Statistical Models'),
(114416, 'https://ror.org/05at6sw30', 'es', 1, 'https://ror.org/05at6sw30 Hospital Universitario Infantil San JosƩ University Children''s Hospital of San JosƩ'),
(114417, 'https://ror.org/02se2k984', 'en', 1, 'https://ror.org/02se2k984 All-Russian Scientific Research Institute of Technical Physics Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технической физики'),
(114418, 'https://ror.org/02nqj9492', 'id', 1, 'https://ror.org/02nqj9492 Politeknik Penerbangan Indonesia Curug'),
(114419, 'https://ror.org/05j3atf73', 'fr', 1, 'https://ror.org/05j3atf73 Laboratoire d''OcƩanographie et du Climat : ExpƩrimentations et Approches NumƩriques'),
(114420, 'https://ror.org/00y7mag53', 'en', 1, 'https://ror.org/00y7mag53 Southern Marine Science and Engineering Guangdong Laboratory (Guangzhou) å—ę–¹ęµ·ę“‹ē§‘å­¦äøŽå·„ēØ‹å¹æäøœēœå®žéŖŒå®¤ (å¹æå·ž)'),
(114421, 'https://ror.org/02280jq67', 'sr', 1, 'https://ror.org/02280jq67 Centar za Promociju Nauke Center for the promotion of science'),
(114422, 'https://ror.org/04gf9wd48', 'fr', 1, 'https://ror.org/04gf9wd48 Institut de Recherche en Musicologie'),
(114423, 'https://ror.org/03xzjnp53', 'en', 1, 'https://ror.org/03xzjnp53 Iziko Museums of South Africa'),
(114424, 'https://ror.org/0546ajs61', 'en', 1, 'https://ror.org/0546ajs61 The London College'),
(114425, 'https://ror.org/035d65343', 'de', 1, 'https://ror.org/035d65343 Klinikum Ingolstadt'),
(114426, 'https://ror.org/01km8f434', 'fr', 1, 'https://ror.org/01km8f434 UnitƩ de Recherche en Chimie Organique et MacromolƩculaire'),
(114427, 'https://ror.org/05xcmte05', 'en', 1, 'https://ror.org/05xcmte05 Instituto Milenio de BiologĆ­a Integrativa Millennium Institute for Integrative Biology'),
(114428, 'https://ror.org/04d9wv909', 'en', 1, 'https://ror.org/04d9wv909 Cognition Behaviour Technology'),
(114429, 'https://ror.org/02bxdh068', 'fr', 1, 'https://ror.org/02bxdh068 Institut des langues et cultures d''Europe, AmƩrique, Afrique, Asie et Australie'),
(114430, 'https://ror.org/02mq91505', 'en', 1, 'https://ror.org/02mq91505 Academy of Social Sciences'),
(114431, 'https://ror.org/00erb9339', 'fr', 1, 'https://ror.org/00erb9339 Centre d''Ʃtudes des relations et des contacts linguistiques et littƩraires'),
(114432, 'https://ror.org/00bbeqy02', 'en', 1, 'https://ror.org/00bbeqy02 Guru Angad Dev Veterinary and Animal Sciences University ਗੁਰੂ ਅੰਗਦ ਦੇਵ ąØµą©ˆąØŸąØØąØ°ą©€ ਅਤੇ ਐਨੀਮਲ ąØøąØ¾ąØ‡ą©°ąØøąØœąØ¼ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(114433, 'https://ror.org/05w3vvc59', 'fr', 1, 'https://ror.org/05w3vvc59 Interactions HƓte-Greffon-Tumeur & IngƩnierie Cellulaire et GƩnique'),
(114434, 'https://ror.org/05y6rqs46', 'fr', 1, 'https://ror.org/05y6rqs46 DƩpartement d''Informatique'),
(114435, 'https://ror.org/01tm0rr86', 'en', 1, 'https://ror.org/01tm0rr86 Fukui University of Technology ē¦äŗ•å·„ę„­å¤§å­¦'),
(114436, 'https://ror.org/010xtqd61', 'en', 1, 'https://ror.org/010xtqd61 Pakistan Kidney and Liver Institute and Research Center پاکستان Ś©ŚˆŁ†ŪŒ Ų§ŪŒŁ†Śˆ Ł„ŪŒŁˆŲ± Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(114437, 'https://ror.org/00y9sdk24', 'en', 1, 'https://ror.org/00y9sdk24 Institute for Environmental Sciences ē’°å¢ƒē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(114438, 'https://ror.org/05m3ysc06', 'en', 1, 'https://ror.org/05m3ysc06 Vinnytsia National Agrarian University Š’Š†ŠŠŠ˜Š¦Š¬ŠšŠ˜Š™ ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠ˜Š™ ŠŠ“Š ŠŠ ŠŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(114439, 'https://ror.org/05xznzw56', 'sv', 1, 'https://ror.org/05xznzw56 FolkhƤlsans Forskningscentrum'),
(114440, 'https://ror.org/0274zdr66', 'fr', 1, 'https://ror.org/0274zdr66 Laboratoire Jean-Alexandre DieudonnƩ'),
(114441, 'https://ror.org/04sv5r538', 'fr', 1, 'https://ror.org/04sv5r538 MƩtaphysique, histoires, transformations, actualitƩs'),
(114442, 'https://ror.org/01yxj7x74', 'en', 1, 'https://ror.org/01yxj7x74 University Clinic of Pulmonary and Allergic Diseases Golnik'),
(114443, 'https://ror.org/034nz8723', 'en', 1, 'https://ror.org/034nz8723 Bayreuth Medical Center Klinikum Bayreuth'),
(114444, 'https://ror.org/03fgcf430', 'en', 1, 'https://ror.org/03fgcf430 Energy Institute'),
(114445, 'https://ror.org/0339jw085', 'fr', 1, 'https://ror.org/0339jw085 Ɖquipe de Recherche Interlangue : MĆ©moires, IdentitĆ©s, Territoires'),
(114446, 'https://ror.org/03dsn0w74', 'en', 1, 'https://ror.org/03dsn0w74 Community Health Systems - Poplar Bluff Regional Medical Center - Westwood'),
(114447, 'https://ror.org/04z1mvq22', 'fr', 1, 'https://ror.org/04z1mvq22 Laboratoire Cultures Education SociƩtƩs'),
(114448, 'https://ror.org/03k4rde50', 'pt', 1, 'https://ror.org/03k4rde50 Fernando Pessoa Energy, Environment and Health Research Unit Unidade de Investigacao UFP em Energia Ambiente e Saude'),
(114449, 'https://ror.org/00mtf6c40', 'en', 1, 'https://ror.org/00mtf6c40 L''Institut de recherche Terry Fox Terry Fox Research Institute'),
(114450, 'https://ror.org/05q8mqd91', 'en', 1, 'https://ror.org/05q8mqd91 Hong Kong Science and Technology Parks Corporation é¦™ęøÆē§‘ęŠ€å›­å…¬åø'),
(114451, 'https://ror.org/04x6jg419', 'fr', 1, 'https://ror.org/04x6jg419 Laboratoire de Conception, Optimisation et Modélisation des Systèmes'),
(114452, 'https://ror.org/03dsd0g48', 'fr', 1, 'https://ror.org/03dsd0g48 Laboratoire des Sciences du Climat et de l''Environnement'),
(114453, 'https://ror.org/03jyr9x65', 'en', 1, 'https://ror.org/03jyr9x65 The Open University of Japan 放送大学'),
(114454, 'https://ror.org/02pdjtm85', 'en', 1, 'https://ror.org/02pdjtm85 Polis, The Jerusalem Institute of Languages and Humanities'),
(114455, 'https://ror.org/00q3tc787', 'en', 1, 'https://ror.org/00q3tc787 Sustainability Institute'),
(114456, 'https://ror.org/04ynvhf97', 'en', 1, 'https://ror.org/04ynvhf97 Het Zuid-Afrikaans Hospitaal en Diakonessenhuis Zuid-Afrikaans Hospital'),
(114457, 'https://ror.org/021dfp132', 'nl', 0, 'https://ror.org/021dfp132 Tjongerschans'),
(114458, 'https://ror.org/02cs5nk10', 'pt', 1, 'https://ror.org/02cs5nk10 Centro UniversitƔrio do Espƭrito Santo'),
(114459, 'https://ror.org/03cccec37', 'fr', 1, 'https://ror.org/03cccec37 Transversales'),
(114460, 'https://ror.org/02dn7x778', 'fr', 1, 'https://ror.org/02dn7x778 UniversitƩ Bourgogne Franche-ComtƩ'),
(114461, 'https://ror.org/013mv8j08', 'id', 1, 'https://ror.org/013mv8j08 Sekolah Tinggi Manajemen Informatika dan Komputer Pesat Nabire'),
(114462, 'https://ror.org/00mqmap12', 'it', 1, 'https://ror.org/00mqmap12 Castel San Giovanni Hospital Ospedale di Castel San Giovanni'),
(114463, 'https://ror.org/053kxkj53', 'fr', 1, 'https://ror.org/053kxkj53 Unité de Modélisation Mathématique et Informatique des Systèmes Complexes'),
(114464, 'https://ror.org/028ta1f94', 'fr', 1, 'https://ror.org/028ta1f94 Chimie de la Matière Condensée de Paris'),
(114465, 'https://ror.org/01g80gk13', 'fr', 1, 'https://ror.org/01g80gk13 Agence Nationale de SƩcuritƩ du MƩdicament et des Produits de SantƩ'),
(114466, 'https://ror.org/02rgyc156', 'fr', 1, 'https://ror.org/02rgyc156 Logiques de l''agir'),
(114467, 'https://ror.org/01vrz7264', 'fr', 1, 'https://ror.org/01vrz7264 Genetics and Developmental Biology GƩnƩtique et biologie du dƩveloppement'),
(114468, 'https://ror.org/028s4q594', 'en', 1, 'https://ror.org/028s4q594 Deutsches Zentrum für Infektionsforschung German Center for Infection Research'),
(114469, 'https://ror.org/01hdkb925', 'en', 1, 'https://ror.org/01hdkb925 Jožef Stefan International Postgraduate School'),
(114470, 'https://ror.org/046xby895', 'fr', 1, 'https://ror.org/046xby895 LIRA - Laboratoire International de Recherches en Arts Laboratoire International de Recherches en Arts'),
(114471, 'https://ror.org/01yvs7t05', 'pt', 1, 'https://ror.org/01yvs7t05 Unidade Local de Saúde de TrÔs-os-Montes e Alto Douro'),
(114472, 'https://ror.org/015qmyq14', 'en', 1, 'https://ror.org/015qmyq14 Catholic University of Health and Allied Sciences'),
(114473, 'https://ror.org/03mmdq014', 'id', 1, 'https://ror.org/03mmdq014 Batanghari University Universitas Batanghari'),
(114474, 'https://ror.org/04tfx6r65', 'en', 1, 'https://ror.org/04tfx6r65 Community Health Systems - Northeast Regional Medical Center'),
(114475, 'https://ror.org/03ebk0c60', 'en', 1, 'https://ror.org/03ebk0c60 Suzhou Research Institute'),
(114476, 'https://ror.org/02p56s395', 'en', 1, 'https://ror.org/02p56s395 Institut za javno zdravlje Vojvodine Institute of Public Health of Vojvodina'),
(114477, 'https://ror.org/00bkgf580', 'pt', 1, 'https://ror.org/00bkgf580 Fundação de Apoio à Universidade Federal de São Paulo'),
(114478, 'https://ror.org/02cd98b83', 'en', 1, 'https://ror.org/02cd98b83 Center for Southeast Asian Studies Centre Asie du Sud-Est'),
(114479, 'https://ror.org/03rny4b03', 'fr', 1, 'https://ror.org/03rny4b03 Center for the History of "Space and Culture" Centre d''Histoire ā€œEspaces et Culturesā€'),
(114480, 'https://ror.org/045jdy577', 'fr', 1, 'https://ror.org/045jdy577 Centre d''Etudes Linguistiques'),
(114481, 'https://ror.org/01d5pah27', 'fr', 1, 'https://ror.org/01d5pah27 Direction des Applications Militaires'),
(114482, 'https://ror.org/05jyz4092', 'de', 1, 'https://ror.org/05jyz4092 Thüringer Landessternwarte Tautenburg'),
(114483, 'https://ror.org/02bm29j41', 'en', 1, 'https://ror.org/02bm29j41 Community Health Systems - Crestwood Medical Center'),
(114484, 'https://ror.org/00jffx511', 'en', 1, 'https://ror.org/00jffx511 PRIST University'),
(114485, 'https://ror.org/022nxqs47', 'nl', 1, 'https://ror.org/022nxqs47 Dialyse Centrum Groningen'),
(114486, 'https://ror.org/05apfhh30', 'en', 1, 'https://ror.org/05apfhh30 Broermann Medical Innovation Award Broermann gemeinnützige Gesellschaft mit beschränkter Haftung'),
(114487, 'https://ror.org/00fq5tf47', 'en', 1, 'https://ror.org/00fq5tf47 Geodetic Institute of Slovenia'),
(114488, 'https://ror.org/04kn0zf27', 'en', 1, 'https://ror.org/04kn0zf27 Silesian Center for Heart Disease'),
(114489, 'https://ror.org/015vtcw98', 'fr', 1, 'https://ror.org/015vtcw98 Laboratoire de Tribologie et Dynamique des SystĆØmes Tribology and Systems Dynamics Laboratory'),
(114490, 'https://ror.org/038xgmf85', 'pt', 1, 'https://ror.org/038xgmf85 Banco Finantia (Portugal)'),
(114491, 'https://ror.org/05x56yr26', 'pt', 1, 'https://ror.org/05x56yr26 Unidade de Cuidados Paliativos de Vila Pouca de Aguiar'),
(114492, 'https://ror.org/026w56128', 'pt', 1, 'https://ror.org/026w56128 Museu da Faculdade de Belas Artes da Universidade do Porto'),
(114493, 'https://ror.org/014pz6m24', 'en', 1, 'https://ror.org/014pz6m24 EIM - European Institute of Management'),
(114494, 'https://ror.org/02sc3r913', 'en', 1, 'https://ror.org/02sc3r913 Griffith University'),
(114495, 'https://ror.org/0034eez47', 'en', 1, 'https://ror.org/0034eez47 Utkal University ą¤‰ą¤¤ą„ą¤•ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(114496, 'https://ror.org/04d9egb29', 'pt', 1, 'https://ror.org/04d9egb29 Centro de Estudos de LinguĆ­stica Geral e Aplicada'),
(114497, 'https://ror.org/02dvf9b44', 'en', 1, 'https://ror.org/02dvf9b44 Heidelberg Academy of Sciences and Humanities Heidelberger Akademie der Wissenschaften'),
(114498, 'https://ror.org/01gje7n16', 'fr', 1, 'https://ror.org/01gje7n16 Laboratoire de Glycochimie, des Antimicrobiens et des Agroressources Laboratory Glycochemistry, of Antimicrobials and Agroressources'),
(114499, 'https://ror.org/012h8gy04', 'fr', 1, 'https://ror.org/012h8gy04 Chirurgie et extrƩmitƩ cƩphalique, caractƩrisation morphologique et fonctionnelle'),
(114500, 'https://ror.org/01s5dt366', 'en', 1, 'https://ror.org/01s5dt366 University Hospital of Larissa'),
(114501, 'https://ror.org/00waz9262', 'fr', 1, 'https://ror.org/00waz9262 UMR DƩveloppement et SociƩtƩs'),
(114502, 'https://ror.org/017vnhv07', 'fr', 1, 'https://ror.org/017vnhv07 Laboratoire de MathƩmatiques AppliquƩes du Havre'),
(114503, 'https://ror.org/00rv5x925', 'fr', 1, 'https://ror.org/00rv5x925 Laboratoire des Sciences pour la Conception, l''Optimisation et la Production Laboratory of Grenoble for Sciences of Conception, Optimisation and Production'),
(114504, 'https://ror.org/012daep68', 'en', 1, 'https://ror.org/012daep68 Japan Anti Tuberculosis Association å…¬ē›Šč²”å›£ę³•äŗŗēµę øäŗˆé˜²ä¼š'),
(114505, 'https://ror.org/03rvwhn52', 'fr', 1, 'https://ror.org/03rvwhn52 Centre d''Ʃtudes et de recherche sur les contentieux'),
(114506, 'https://ror.org/04asa4p95', 'en', 1, 'https://ror.org/04asa4p95 RISE - Health Research Network'),
(114507, 'https://ror.org/05fc1hn07', 'fr', 1, 'https://ror.org/05fc1hn07 Laboratoire Techniques, Territoires et SociƩtƩs'),
(114508, 'https://ror.org/04y50an90', 'en', 1, 'https://ror.org/04y50an90 Karlovac University of Applied Sciences VeleučiliŔte u Karlovcu'),
(114509, 'https://ror.org/01wx5bt95', 'cs', 1, 'https://ror.org/01wx5bt95 Sady SV. Prokopa Sady SV. Prokopa s.r.o. Sady svatƩho Prokopa Sady svatƩho Prokopa s.r.o. Sady svatƩho Prokopa s.r.o. (Czechia)'),
(114510, 'https://ror.org/03vpmpf77', 'de', 1, 'https://ror.org/03vpmpf77 Assoziation ƶkologischer Lebensmittelherstellerinnen und -hersteller Assoziation ƶkologischer Lebensmittelherstellerinnen und -hersteller e.V.'),
(114511, 'https://ror.org/02d6kbk83', 'en', 1, 'https://ror.org/02d6kbk83 Marienhospital Bottrop'),
(114512, 'https://ror.org/038pj4t13', 'en', 1, 'https://ror.org/038pj4t13 CollĆØge universitaire du nord University College of the North'),
(114513, 'https://ror.org/0413jvg45', 'en', 1, 'https://ror.org/0413jvg45 Bottlenose Dolphin Research Institute'),
(114514, 'https://ror.org/0283nw634', 'nl', 0, 'https://ror.org/0283nw634 Medisch Centrum Leeuwarden'),
(114515, 'https://ror.org/03618hv60', 'en', 1, 'https://ror.org/03618hv60 FƩdƩration internationale des archives du film International Federation of Film Archives'),
(114516, 'https://ror.org/037b3he73', 'fr', 1, 'https://ror.org/037b3he73 Biologie, ingƩnierie et imagerie pour l''Ophtalmologie'),
(114517, 'https://ror.org/01s6q2813', 'fr', 1, 'https://ror.org/01s6q2813 Laboratoire Quartz'),
(114518, 'https://ror.org/00yd0qf44', 'en', 1, 'https://ror.org/00yd0qf44 Institutul de Cercetari pentru Instrumentatie Analitica Research Institute for Analytical Instrumentation'),
(114519, 'https://ror.org/0141dj035', 'en', 1, 'https://ror.org/0141dj035 Satou Hospital'),
(114520, 'https://ror.org/05e5m0q38', 'es', 1, 'https://ror.org/05e5m0q38 Instituto de GeofĆ­sica y AstronomĆ­a'),
(114521, 'https://ror.org/01rs1gy10', 'fr', 1, 'https://ror.org/01rs1gy10 CEA Cadarache Centre de Cadarache'),
(114522, 'https://ror.org/049va0671', 'en', 1, 'https://ror.org/049va0671 Institute of Agrarian Resources and Regional Development NAASU Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрних Ń€ŠµŃŃƒŃ€ŃŃ–Š² та Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠŠŠŠ'),
(114523, 'https://ror.org/05fb4e303', 'pt', 1, 'https://ror.org/05fb4e303 LiveMore Occupational Health and Safety Quirónprevención (Portugal)'),
(114524, 'https://ror.org/04c8tz716', 'en', 1, 'https://ror.org/04c8tz716 University of Global Health Equity'),
(114525, 'https://ror.org/04smxbm79', 'fr', 1, 'https://ror.org/04smxbm79 Laboratoire AmiƩnois de MathƩmatique Fondamentale et AppliquƩe'),
(114526, 'https://ror.org/011cdfy08', 'es', 1, 'https://ror.org/011cdfy08 Instituto de Investigaciones en EnergĆ­a no Convencional'),
(114527, 'https://ror.org/03gnehp03', 'en', 1, 'https://ror.org/03gnehp03 National Institute for Health Development Tervise Arengu Instituut'),
(114528, 'https://ror.org/056ahff07', 'no_lang_code', 1, 'https://ror.org/056ahff07 CRSTRA Centre de Recherche Scientifique et Technique sur les RƩgions Arides'),
(114529, 'https://ror.org/004g82f36', 'no_lang_code', 1, 'https://ror.org/004g82f36 Kleijnen Systematic Reviews (United Kingdom)'),
(114530, 'https://ror.org/01b5rtm37', 'fr', 1, 'https://ror.org/01b5rtm37 Genome Integrity, RNA and Cancer IntƩgritƩ du gƩnome, ARN et cancer'),
(114531, 'https://ror.org/00z2bca79', 'fr', 1, 'https://ror.org/00z2bca79 Institut de Recherche en Energie Electrique de Nantes Atlantique'),
(114532, 'https://ror.org/04j9ztm78', 'fr', 1, 'https://ror.org/04j9ztm78 Institut d''Histoire du Droit Jean Gaudemet'),
(114533, 'https://ror.org/03c336h16', 'en', 1, 'https://ror.org/03c336h16 Isabela State University'),
(114534, 'https://ror.org/05brsx115', 'en', 1, 'https://ror.org/05brsx115 Libyan Climate Change Research Center Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł„ŁŠŲØŁŠ لأبحاث تغير المناخ'),
(114535, 'https://ror.org/05w4vzs78', 'fr', 1, 'https://ror.org/05w4vzs78 LAMO - LittƩratures Antiques et Modernes'),
(114536, 'https://ror.org/031y0x195', 'en', 1, 'https://ror.org/031y0x195 Bacterial RNAs & Medicine'),
(114537, 'https://ror.org/00cb76512', 'en', 0, 'https://ror.org/00cb76512 Northland District Health Board'),
(114538, 'https://ror.org/04amrcw69', 'en', 1, 'https://ror.org/04amrcw69 Central Research Institute of Ferrous Metallurgy I P Bardina Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾ā€“ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ черной Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø им. И.П. БарГина'),
(114539, 'https://ror.org/01wwcfa26', 'fr', 1, 'https://ror.org/01wwcfa26 Institut des GƩosciences de l''Environnement Institute of Environmental Geosciences'),
(114540, 'https://ror.org/00r2mmn80', 'en', 1, 'https://ror.org/00r2mmn80 D.A.V. P.G. College, Lucknow ą¤”ą„€ą„¦ą¤ą„¦ą¤µą„€ą„¦ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤²ą¤–ą¤Øą¤Š'),
(114541, 'https://ror.org/00ca65425', 'fr', 1, 'https://ror.org/00ca65425 ThƩorie et Histoire des Arts et des LittƩratures de la ModernitƩ'),
(114542, 'https://ror.org/00kn4eb29', 'fr', 1, 'https://ror.org/00kn4eb29 CEA DAM Ǝle-de-France DAM Ǝle-de-France'),
(114543, 'https://ror.org/05sr29j23', 'en', 1, 'https://ror.org/05sr29j23 Brain Surgery Hospital Rawalpindi'),
(114544, 'https://ror.org/04zaaa143', 'fr', 1, 'https://ror.org/04zaaa143 Laboratoire de Physique Théorique de la Matière Condensée Theoretical physics of condensed matter'),
(114545, 'https://ror.org/0020kf976', 'en', 1, 'https://ror.org/0020kf976 Klabat University Universitas Klabat'),
(114546, 'https://ror.org/05exvy590', 'id', 1, 'https://ror.org/05exvy590 Dwijendra University Universitas Dwijendra'),
(114547, 'https://ror.org/01t8hz352', 'en', 1, 'https://ror.org/01t8hz352 Ivanovo State Power University Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ивановский Š³Š¾ŃŃƒŠ“арственный ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’.И. Ленина'),
(114548, 'https://ror.org/039543c28', 'en', 1, 'https://ror.org/039543c28 St Xavier’s College'),
(114549, 'https://ror.org/03985kf35', 'en', 1, 'https://ror.org/03985kf35 Laboratoire TIMC Recherche Translationnelle et Innovation en MƩdecine et ComplexitƩ Translational Innovation in Medicine and Complexity'),
(114550, 'https://ror.org/039vqpp67', 'en', 1, 'https://ror.org/039vqpp67 China Academy of Engineering Physics 中国巄程物理研究院'),
(114551, 'https://ror.org/04jvfby08', 'de', 1, 'https://ror.org/04jvfby08 Klinik Nette-Gut für Forensische Psychiatrie'),
(114552, 'https://ror.org/02dqsz009', 'pt', 1, 'https://ror.org/02dqsz009 Escola Superior Artística do Porto - Guimarães'),
(114553, 'https://ror.org/04a97mm30', 'no_lang_code', 1, 'https://ror.org/04a97mm30 Kafrelsheikh University Ų¬Ų§Ł…Ų¹Ų© كفر Ų§Ł„Ų“ŁŠŲ®'),
(114554, 'https://ror.org/05n3bgh35', 'no_lang_code', 1, 'https://ror.org/05n3bgh35 Singlera Singlera (China) é¹®čæœē”Ÿē‰©'),
(114555, 'https://ror.org/014arsg56', 'no_lang_code', 1, 'https://ror.org/014arsg56 Kuvempu University ą¤•ą„ą¤µą„‡ą¤‚ą¤Ŗą„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤•ą„ą¤µą„‡ą¤‚ą¤Ŗą„‚ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą®•ąÆą®µąÆ‡ą®®ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ కువెంపు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ಕುವೆಂಪು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(114556, 'https://ror.org/05nhzbw35', 'it', 1, 'https://ror.org/05nhzbw35 Ospedale Valduce'),
(114557, 'https://ror.org/04ed3sm51', 'pt', 1, 'https://ror.org/04ed3sm51 Museu de História Natural do Funchal'),
(114558, 'https://ror.org/02bph6v17', 'no_lang_code', 1, 'https://ror.org/02bph6v17 Deerfield (United States)'),
(114559, 'https://ror.org/02wba0b02', 'no_lang_code', 1, 'https://ror.org/02wba0b02 ADS Biotec Inc. ADS Biotec Inc. (United States)'),
(114560, 'https://ror.org/02vbhze72', 'en', 1, 'https://ror.org/02vbhze72 Community Health Systems - Merit Health Rankin'),
(114561, 'https://ror.org/01409jp78', 'fr', 1, 'https://ror.org/01409jp78 Institut de Recherche en Gestion des Organisations'),
(114562, 'https://ror.org/01qkq7780', 'nl', 1, 'https://ror.org/01qkq7780 ZorgSaam'),
(114563, 'https://ror.org/04wm8ce51', 'en', 1, 'https://ror.org/04wm8ce51 Integrated Biobank of Luxembourg'),
(114564, 'https://ror.org/03mmb0d82', 'fr', 1, 'https://ror.org/03mmb0d82 Bases, Corpus, Langage'),
(114565, 'https://ror.org/03nf36p02', 'en', 1, 'https://ror.org/03nf36p02 Universidade da Beira Interior University of Beira Interior'),
(114566, 'https://ror.org/046581250', 'en', 1, 'https://ror.org/046581250 Medan Area University Universitas Medan Area'),
(114567, 'https://ror.org/055zfvr13', 'en', 1, 'https://ror.org/055zfvr13 Gates of the Arctic National Park and Preserve Parque nacional y reserva Puertas del Ɓrtico'),
(114568, 'https://ror.org/00z51kw68', 'fr', 1, 'https://ror.org/00z51kw68 Arts / Langages : Transitions et Relations Arts/Languages: Transitions and Relationships'),
(114569, 'https://ror.org/04yb7z140', 'fr', 1, 'https://ror.org/04yb7z140 Transformations Intégrées de la Matière Renouvelable'),
(114570, 'https://ror.org/03j6qa959', 'pt', 1, 'https://ror.org/03j6qa959 Centre of Excellence for Appreciation of Mediterranean Resources Centro de Excelência para a Valorização dos Recursos Mediterrânicos (Portugal)'),
(114571, 'https://ror.org/04hwjfc40', 'en', 1, 'https://ror.org/04hwjfc40 Sapir College המכללה ×”××§×“×ž×™×Ŗ הפיר'),
(114572, 'https://ror.org/030w9ga59', 'pt', 1, 'https://ror.org/030w9ga59 Hipocrates Livros Tecnicos (Portugal) Hippocrates Technical Books'),
(114573, 'https://ror.org/027xc7098', 'en', 1, 'https://ror.org/027xc7098 Liverpool College'),
(114574, 'https://ror.org/02kspxs30', 'pt', 1, 'https://ror.org/02kspxs30 Hospital Dr JosƩ Maria Grande'),
(114575, 'https://ror.org/00gn6h668', 'en', 1, 'https://ror.org/00gn6h668 Rajarajeswari Medical College and Hospital'),
(114576, 'https://ror.org/053t9n429', 'fr', 1, 'https://ror.org/053t9n429 Biomolecules: Design, Isolation, Synthesis Biomolécules : Conception, Isolement, Synthèse'),
(114577, 'https://ror.org/04qtr9c10', 'es', 1, 'https://ror.org/04qtr9c10 Hospital Privado'),
(114578, 'https://ror.org/00kne5276', 'no_lang_code', 1, 'https://ror.org/00kne5276 Hektoen Institute'),
(114579, 'https://ror.org/0015ws592', 'fr', 1, 'https://ror.org/0015ws592 Institut de gƩnƩtique et de biologie molƩculaire et cellulaire Institute of Genetics and Molecular and Cellular Biology'),
(114580, 'https://ror.org/00n6mjv39', 'en', 1, 'https://ror.org/00n6mjv39 Mahatma Gandhi Arts, Science & Late Nasaruddhinbhai Panjwani Commerce College'),
(114581, 'https://ror.org/00zxx1774', 'pt', 1, 'https://ror.org/00zxx1774 Laboratory for Instrumentation, Biomedical Engineering and Radiation Physics Laboratório de Instrumentação Engenharia Biomédica e Física da Radiação'),
(114582, 'https://ror.org/00vmdr162', 'en', 1, 'https://ror.org/00vmdr162 Kyoritsu Women''s University 共立儳子大学'),
(114583, 'https://ror.org/02xkrvb18', 'en', 1, 'https://ror.org/02xkrvb18 Institute of Economic and Social Development Instituto de Desarrollo Económico y Social'),
(114584, 'https://ror.org/0355ahf06', 'nl', 1, 'https://ror.org/0355ahf06 Rijkswaterstaat'),
(114585, 'https://ror.org/04znhwb73', 'es', 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'),
(114586, 'https://ror.org/034vsyd62', 'it', 1, 'https://ror.org/034vsyd62 Ospedale del Tigullio Presidio Ospedaliero'),
(114587, 'https://ror.org/01mym5t88', 'en', 1, 'https://ror.org/01mym5t88 West African Institute of Public Health'),
(114588, 'https://ror.org/05acdb150', 'pt', 1, 'https://ror.org/05acdb150 Centro de Investigação Interdisciplinar em Saúde Centro Regional do Porto'),
(114589, 'https://ror.org/04xhqj302', 'pt', 1, 'https://ror.org/04xhqj302 Institute of Science and Inoovation for Bio-Sustainability Instituto de Ciência e Inovação para a Bio-Sustentabilidade'),
(114590, 'https://ror.org/029c7fh08', 'pt', 1, 'https://ror.org/029c7fh08 Laboratory for Instrumentation, Biomedical Engineering and Radiation Physics Laboratório de Instrumentação Engenharia Biomédica e Física da Radiação'),
(114591, 'https://ror.org/04n835f38', 'en', 1, 'https://ror.org/04n835f38 Graduate School USA'),
(114592, 'https://ror.org/00psjbh36', 'pt', 1, 'https://ror.org/00psjbh36 Fundação Friedrich Ebert'),
(114593, 'https://ror.org/051hcjr97', 'pt', 1, 'https://ror.org/051hcjr97 Fundação Carlos Chagas'),
(114594, 'https://ror.org/030dahd49', 'en', 1, 'https://ror.org/030dahd49 Agricultural institute of Slovenia'),
(114595, 'https://ror.org/05m5pc269', 'en', 1, 'https://ror.org/05m5pc269 Nepal Medical College Teaching Hospital ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤²ą„‡ą¤œ'),
(114596, 'https://ror.org/051ctbp80', 'pt', 1, 'https://ror.org/051ctbp80 New Display Promotional Solutions New Display SoluƧƵes Promocionais (Portugal)'),
(114597, 'https://ror.org/007n45g27', 'en', 1, 'https://ror.org/007n45g27 Wellington Hospital'),
(114598, 'https://ror.org/00b1crx81', 'fr', 1, 'https://ror.org/00b1crx81 Centre de Recherche en Ɖducation de Nantes'),
(114599, 'https://ror.org/00mn2bk17', 'en', 1, 'https://ror.org/00mn2bk17 Environmental and Water Resources Engineering'),
(114600, 'https://ror.org/04g11bp59', 'en', 1, 'https://ror.org/04g11bp59 Osaka University of Economics 大阪経済大学'),
(114601, 'https://ror.org/00665bd58', 'en', 1, 'https://ror.org/00665bd58 Community Health Systems - Northwest Medical Center - Bentonville'),
(114602, 'https://ror.org/041w2qd15', 'en', 1, 'https://ror.org/041w2qd15 Sri Rajiv Gandhi College of Dental Sciences and Hospital'),
(114603, 'https://ror.org/01pe78696', 'es', 1, 'https://ror.org/01pe78696 Universidad del AtlƔntico'),
(114604, 'https://ror.org/04knxqr47', 'fr', 1, 'https://ror.org/04knxqr47 CREC - Centre de Recherche sur l''Espagne Contemporaine XVIIIe-XIXe-XXe siĆØcles Centre de Recherche sur l''Espagne Contemporaine XVIIIe-XIXe-XXe siĆØcles'),
(114605, 'https://ror.org/03nt4av35', 'de', 1, 'https://ror.org/03nt4av35 City of Mannheim Stadt Mannheim'),
(114606, 'https://ror.org/01s3w8y48', 'de', 1, 'https://ror.org/01s3w8y48 StƤdtisches Klinikum Solingen'),
(114607, 'https://ror.org/02gg57z81', 'en', 0, 'https://ror.org/02gg57z81 Copenhagen Business Academy'),
(114608, 'https://ror.org/04s5dp671', 'en', 1, 'https://ror.org/04s5dp671 TMC, a Unilabs company TMC, a Unilabs company (Spain)'),
(114609, 'https://ror.org/04nvcbr70', 'en', 1, 'https://ror.org/04nvcbr70 Ryazan State Medical University named after Academician I.P. Pavlov Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика I.P. Павлов'),
(114610, 'https://ror.org/01gwrbq98', 'id', 1, 'https://ror.org/01gwrbq98 Institut Pertanian Stiper'),
(114611, 'https://ror.org/00xytbp33', 'en', 1, 'https://ror.org/00xytbp33 Ethiopian Public Health Institute'),
(114612, 'https://ror.org/02ka93g66', 'fr', 1, 'https://ror.org/02ka93g66 ESSA Higher School of Welding and Welding Application Ɖcole supĆ©rieure du soudage et de ses applications'),
(114613, 'https://ror.org/04jt24b73', 'fr', 1, 'https://ror.org/04jt24b73 CLESTHIA - Langage, systĆØmes, discours'),
(114614, 'https://ror.org/0211r2z47', 'fr', 1, 'https://ror.org/0211r2z47 Institut des Sciences MolƩculaires d''Orsay'),
(114615, 'https://ror.org/00hcmxe97', 'en', 1, 'https://ror.org/00hcmxe97 Volgograd State Pedagogical University ВолгограГский Š³Š¾ŃŃƒŠ“арственный ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114616, 'https://ror.org/03g177w29', 'en', 1, 'https://ror.org/03g177w29 Community Health Systems - Merit Health Central'),
(114617, 'https://ror.org/02sb3b652', 'fr', 1, 'https://ror.org/02sb3b652 Laboratoire Ondes et Milieux Complexes'),
(114618, 'https://ror.org/03tzyrt94', 'es', 1, 'https://ror.org/03tzyrt94 Nebrija University Universidad Nebrija'),
(114619, 'https://ror.org/05504tm35', 'id', 1, 'https://ror.org/05504tm35 Politeknik Negeri Banyuwangi'),
(114620, 'https://ror.org/02f04tm31', 'de', 1, 'https://ror.org/02f04tm31 Göttingen Campus Institut für Dynamic biologischer Netzwerke Göttingen Campus Institute for Dynamics of Biological Networks'),
(114621, 'https://ror.org/03hffat62', 'fr', 1, 'https://ror.org/03hffat62 Institut de Recherche sur la Fusion par confinement MagnƩtique'),
(114622, 'https://ror.org/02dfn9z13', 'pt', 1, 'https://ror.org/02dfn9z13 Centro de Investigação em Sociologia e Antropologia Augusto da Silva'),
(114623, 'https://ror.org/02jf17c17', 'en', 1, 'https://ror.org/02jf17c17 Yangquan Coal Industry (Group) General Hospital é˜³ę³‰ē…¤äøšļ¼ˆé›†å›¢ļ¼‰ęœ‰é™č“£ä»»å…¬åøę€»åŒ»é™¢'),
(114624, 'https://ror.org/05j18y241', 'pt', 1, 'https://ror.org/05j18y241 Ensigaia - Education and Training Ensigaia - Educação e Formação (Portugal)'),
(114625, 'https://ror.org/04dcc3438', 'fr', 1, 'https://ror.org/04dcc3438 Centre de Calcul de l’Institut National de Physique NuclĆ©aire et de Physique des Particules IN2P3’s Computing Centre'),
(114626, 'https://ror.org/04arx1b97', 'fr', 1, 'https://ror.org/04arx1b97 Laboratoire d''ƩpistƩmologie et didactiques des disciplines'),
(114627, 'https://ror.org/04h6axt23', 'en', 1, 'https://ror.org/04h6axt23 National Veterinary Research Institute'),
(114628, 'https://ror.org/026j45x50', 'fr', 1, 'https://ror.org/026j45x50 Laboratoire Pacte Pacte Laboratory'),
(114629, 'https://ror.org/00abqs885', 'fr', 1, 'https://ror.org/00abqs885 Centre d’Etudes et de Recherches de Sciences Administratives et Politiques'),
(114630, 'https://ror.org/04bgjpg77', 'fr', 1, 'https://ror.org/04bgjpg77 Laboratoire de Physique des Gaz et des Plasmas'),
(114631, 'https://ror.org/037vpds53', 'es', 1, 'https://ror.org/037vpds53 Gobierno de Colombia'),
(114632, 'https://ror.org/04cms1b08', 'fr', 1, 'https://ror.org/04cms1b08 Laboratory energy and environmental transitions Transitions EnergƩtiques et Environnementales'),
(114633, 'https://ror.org/007gj5v75', 'en', 1, 'https://ror.org/007gj5v75 Kanagawa Institute of Technology ē„žå„ˆå·å·„ē§‘å¤§å­¦'),
(114634, 'https://ror.org/03vd0cp84', 'fr', 1, 'https://ror.org/03vd0cp84 Laboratoire de sociologie, philosophie et anthropologie politiques'),
(114635, 'https://ror.org/04bdnn252', 'en', 1, 'https://ror.org/04bdnn252 Sussex County Community College'),
(114636, 'https://ror.org/02jmvh098', 'en', 1, 'https://ror.org/02jmvh098 Angarsk State Technical Academy ŠŠ½Š³Š°Ń€ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¢ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(114637, 'https://ror.org/036kn0x67', 'en', 1, 'https://ror.org/036kn0x67 Dean McGee Eye Institute'),
(114638, 'https://ror.org/01nvd0q76', 'en', 1, 'https://ror.org/01nvd0q76 Chettinad Health City'),
(114639, 'https://ror.org/02qav7c04', 'en', 1, 'https://ror.org/02qav7c04 Interdisciplinary Centre for Security, Reliability and Trust'),
(114640, 'https://ror.org/01g08q774', 'no_lang_code', 1, 'https://ror.org/01g08q774 SAIC-GM-Wuling (China) äøŠę±½é€šē”Øäŗ”č±ę±½č½¦č‚”ä»½ęœ‰é™å…¬åø'),
(114641, 'https://ror.org/00vjsmz50', 'en', 1, 'https://ror.org/00vjsmz50 Smith Family'),
(114642, 'https://ror.org/043psk135', 'es', 1, 'https://ror.org/043psk135 Andean Simón Bolívar University, Ecuador Universidad Andina Simón Bolívar, Sede Ecuador'),
(114643, 'https://ror.org/03h0b2y74', 'en', 1, 'https://ror.org/03h0b2y74 Ninghai County First Hospital å®ęµ·åŽæē¬¬äø€åŒ»é™¢'),
(114644, 'https://ror.org/00hpz7z43', 'en', 1, 'https://ror.org/00hpz7z43 New Mexico State University Universidad Estatal de Nuevo MĆ©xico UniversitĆ© d''Ɖtat du nouveau-mexique'),
(114645, 'https://ror.org/043zrmk48', 'pt', 1, 'https://ror.org/043zrmk48 Center for Research in Nursing Centro de Investigação em Enfermagem'),
(114646, 'https://ror.org/00zy16k74', 'en', 1, 'https://ror.org/00zy16k74 Laboratory Dr. Wisplinghoff'),
(114647, 'https://ror.org/05w3ffa57', 'en', 1, 'https://ror.org/05w3ffa57 American College'),
(114648, 'https://ror.org/04vthwx70', 'fr', 1, 'https://ror.org/04vthwx70 Laboratoire de RƩactivitƩ de Surface'),
(114649, 'https://ror.org/03n9qzd79', 'no_lang_code', 1, 'https://ror.org/03n9qzd79 John von Neumann University Neumann JƔnos Egyetem'),
(114650, 'https://ror.org/0371yc337', 'fr', 1, 'https://ror.org/0371yc337 Laboratoire de Chimie-Physique MacromolƩculaire'),
(114651, 'https://ror.org/025ytsr97', 'en', 1, 'https://ror.org/025ytsr97 Kerala University of Fisheries and Ocean Studies'),
(114652, 'https://ror.org/0300gbr82', 'pt', 1, 'https://ror.org/0300gbr82 Unilabs (Portugal)'),
(114653, 'https://ror.org/02785qs39', 'fr', 1, 'https://ror.org/02785qs39 Institut de GƩnƩtique MolƩculaire de Montpellier Institute of Molecular Genetics of Montpellier'),
(114654, 'https://ror.org/00d8qv962', 'en', 1, 'https://ror.org/00d8qv962 St Andrew''s Healthcare'),
(114655, 'https://ror.org/03xh09909', 'sk', 1, 'https://ror.org/03xh09909 Považské múzeum'),
(114656, 'https://ror.org/00746ch50', 'en', 1, 'https://ror.org/00746ch50 Modern University for Information and Technology الجامعة Ų§Ł„Ų­ŲÆŁŠŲ«Ų© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ'),
(114657, 'https://ror.org/0544yj280', 'es', 1, 'https://ror.org/0544yj280 Hospital Universitario Nacional de Colombia'),
(114658, 'https://ror.org/02f4afr28', 'en', 1, 'https://ror.org/02f4afr28 Community Health Systems - North Okaloosa Medical Center'),
(114659, 'https://ror.org/0028q1g19', 'en', 1, 'https://ror.org/0028q1g19 Gunadarma University Universitas Gunadarma'),
(114660, 'https://ror.org/006p6tf90', 'pt', 1, 'https://ror.org/006p6tf90 Laboratório de Medidas Eléctricas'),
(114661, 'https://ror.org/00a72jq18', 'fr', 1, 'https://ror.org/00a72jq18 Laboratoire de Physique et d’Étude des MatĆ©riaux Laboratory of Physics and Material studies'),
(114662, 'https://ror.org/01bqnjh41', 'en', 1, 'https://ror.org/01bqnjh41 North Carolina Museum of Natural Sciences'),
(114663, 'https://ror.org/046ra6g36', 'en', 1, 'https://ror.org/046ra6g36 Japan Automobile Research Institute ę—„ęœ¬č‡Ŗå‹•č»Šē ”ē©¶ę‰€'),
(114664, 'https://ror.org/05gcc7w19', 'pt', 1, 'https://ror.org/05gcc7w19 Universidade Fernando Pessoa Universidade Virtual'),
(114665, 'https://ror.org/03kk0s825', 'pt', 1, 'https://ror.org/03kk0s825 Fundação Carlos Chagas Filho de Amparo à Pesquisa do Estado do Rio de Janeiro'),
(114666, 'https://ror.org/05fj0h750', 'en', 1, 'https://ror.org/05fj0h750 ILMA University علما ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(114667, 'https://ror.org/01fdvj254', 'fr', 1, 'https://ror.org/01fdvj254 Ɖcole Nationale d''IngĆ©nieurs de Tarbes'),
(114668, 'https://ror.org/02nxy1d86', 'en', 1, 'https://ror.org/02nxy1d86 Community Health Systems - Merit Health River Region');
INSERT INTO `rors` VALUES
(114669, 'https://ror.org/03swgqh13', 'en', 1, 'https://ror.org/03swgqh13 Southern Marine Science and Engineering Guangdong Laboratory (Zhuhai) å—ę–¹ęµ·ę“‹ē§‘å­¦äøŽå·„ēØ‹å¹æäøœēœå®žéŖŒå®¤ (ē ęµ·)'),
(114670, 'https://ror.org/03c4kec23', 'en', 1, 'https://ror.org/03c4kec23 Lyon College'),
(114671, 'https://ror.org/02w8awt17', 'fr', 1, 'https://ror.org/02w8awt17 Laboratoire de MƩcanique des Fluides de Lille - KampƩ de FƩriet Lille Fluid Mechanics Laboratory - KampƩ de FƩriet'),
(114672, 'https://ror.org/03ypwqc95', 'en', 1, 'https://ror.org/03ypwqc95 Ministry of Interior of the Republic of Serbia Mинистарство ŃƒŠ½ŃƒŃ‚Ń€Š°ŃˆŃšŠøŃ… послова'),
(114673, 'https://ror.org/05h6av881', 'no_lang_code', 1, 'https://ror.org/05h6av881 Life & Brain (Germany)'),
(114674, 'https://ror.org/00xts7d02', 'fr', 1, 'https://ror.org/00xts7d02 Institut de Science et d''IngƩnierie SupramolƩculaires'),
(114675, 'https://ror.org/03wsemq03', 'fr', 1, 'https://ror.org/03wsemq03 Laboratoire de l''AtmosphĆØre et des Cyclones'),
(114676, 'https://ror.org/0169v5w06', 'en', 1, 'https://ror.org/0169v5w06 University of Technology and Applied Sciences — Ibri'),
(114677, 'https://ror.org/04qwfwm19', 'fr', 1, 'https://ror.org/04qwfwm19 Institut Parisien de Chimie MolƩculaire'),
(114678, 'https://ror.org/04b6chq95', 'en', 1, 'https://ror.org/04b6chq95 Ministry of Water and Irrigation Wizara ya Maji na Umwagiliaji'),
(114679, 'https://ror.org/04n0rde95', 'de', 1, 'https://ror.org/04n0rde95 Segeberger Kliniken'),
(114680, 'https://ror.org/059ewmk29', 'pt', 1, 'https://ror.org/059ewmk29 Unidade Local de Saúde da Região de Leiria'),
(114681, 'https://ror.org/01x4gae84', 'en', 1, 'https://ror.org/01x4gae84 Kovai Medical Center and Hospital'),
(114682, 'https://ror.org/04hrxxd90', 'fr', 1, 'https://ror.org/04hrxxd90 Center for 19th-Century History Centre d''histoire du XIXe siĆØcle Centro de Historia del Siglo XIX'),
(114683, 'https://ror.org/02yt0vw44', 'en', 1, 'https://ror.org/02yt0vw44 Kavli Institute for Theoretical Physics'),
(114684, 'https://ror.org/00p86m346', 'en', 1, 'https://ror.org/00p86m346 Singapore Maritime Institute'),
(114685, 'https://ror.org/002kenh51', 'en', 1, 'https://ror.org/002kenh51 Jerusalem College of Technology ×”×ž×Ø×›×– האקדמי לב'),
(114686, 'https://ror.org/023rbaw78', 'fr', 1, 'https://ror.org/023rbaw78 UniversitƩ des Sciences, des Techniques et des Technologies de Bamako'),
(114687, 'https://ror.org/03yaydt41', 'fr', 1, 'https://ror.org/03yaydt41 BiomƩcanique et BioingƩnierie'),
(114688, 'https://ror.org/049k26g38', 'en', 1, 'https://ror.org/049k26g38 Croatian Forest Research Institute'),
(114689, 'https://ror.org/00sgmwg65', 'en', 1, 'https://ror.org/00sgmwg65 Community Health Systems - Physicians Regional Healthcare System - Pine Ridge'),
(114690, 'https://ror.org/00kzsxx38', 'fr', 1, 'https://ror.org/00kzsxx38 Groupe d''Ɖtude des MĆ©thodes de l''Analyse Sociologique de la Sorbonne'),
(114691, 'https://ror.org/02s7xpw31', 'de', 1, 'https://ror.org/02s7xpw31 St. Josef Krankenhaus'),
(114692, 'https://ror.org/02armrd08', 'en', 1, 'https://ror.org/02armrd08 Community Health Systems - Northwest Medical Center - Springdale'),
(114693, 'https://ror.org/031e64r08', 'en', 1, 'https://ror.org/031e64r08 Community Health Systems - Northwest Medical Center - Houghton'),
(114694, 'https://ror.org/05rdrc984', 'en', 1, 'https://ror.org/05rdrc984 AIDS United'),
(114695, 'https://ror.org/055qj3x26', 'en', 1, 'https://ror.org/055qj3x26 National Agency for Science and Engineering Infrastructure'),
(114696, 'https://ror.org/01vwns954', 'no_lang_code', 1, 'https://ror.org/01vwns954 Lingaya''s Vidyapeeth'),
(114697, 'https://ror.org/028mw1j46', 'pt', 1, 'https://ror.org/028mw1j46 Universidade de Lisboa Instituto do Oriente'),
(114698, 'https://ror.org/03s0pzj56', 'fr', 1, 'https://ror.org/03s0pzj56 Roscoff Marine Station Station Biologique de Roscoff'),
(114699, 'https://ror.org/037ptrs19', 'fr', 1, 'https://ror.org/037ptrs19 Ɖtude et Ɖdition de Textes MĆ©diĆ©vaux'),
(114700, 'https://ror.org/023mtjj89', 'en', 1, 'https://ror.org/023mtjj89 Meo Carbon Solutions GmbH Meo Carbon Solutions GmbH (Germany)'),
(114701, 'https://ror.org/01b7zva12', 'en', 1, 'https://ror.org/01b7zva12 ADSTEC ADSTEC (Japan) ADSTEC Corp. ę Ŗå¼ä¼šē¤¾ć‚Øćƒ¼ćƒ‡ć‚£ćƒ¼ć‚Øć‚¹ćƒ†ćƒƒć‚Æ'),
(114702, 'https://ror.org/03qem8p70', 'pl', 1, 'https://ror.org/03qem8p70 Zachodniopomorskie Centrum Onkologii'),
(114703, 'https://ror.org/011907q25', 'fr', 0, 'https://ror.org/011907q25 Laboratoire de GƩnie des ProcƩdƩs Catalytiques'),
(114704, 'https://ror.org/02me73n88', 'en', 1, 'https://ror.org/02me73n88 Tribhuvan University Teaching Hospital'),
(114705, 'https://ror.org/01c8rcg82', 'fr', 1, 'https://ror.org/01c8rcg82 Grenoble Computer Science Laboratory Laboratoire d''Informatique de Grenoble'),
(114706, 'https://ror.org/02axfqx69', 'no_lang_code', 1, 'https://ror.org/02axfqx69 Vila Natura Vila Natura d.o.o. Vila Natura d.o.o. (Slovenia)'),
(114707, 'https://ror.org/00fpn0e94', 'sr', 1, 'https://ror.org/00fpn0e94 Clinical Center of Vojvodina Klinički centar Vojvodine'),
(114708, 'https://ror.org/00hq75002', 'en', 1, 'https://ror.org/00hq75002 The Research and Education Network for Uganda (RENU)'),
(114709, 'https://ror.org/02jz38b76', 'en', 1, 'https://ror.org/02jz38b76 University of Human Development Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„ŲØŲ“Ų±ŁŠŲ© Ų²Ų§Ł†Ś©Ū†ŪŒ ŚÆŪ•Ų“Ū•Ł¾ŪŽŲÆŲ§Ł†ŪŒ Ł…Ų±Ū†ŪŒŪŒ'),
(114710, 'https://ror.org/03ky0f827', 'en', 1, 'https://ror.org/03ky0f827 Community Health Systems - Merit Health Natchez'),
(114711, 'https://ror.org/05prysf28', 'en', 1, 'https://ror.org/05prysf28 Minisiteri y''Ubuzima Ministry of Health Ministère de la Santé'),
(114712, 'https://ror.org/00b5m4232', 'fr', 1, 'https://ror.org/00b5m4232 Ecole des Neurosciences de Bordeaux'),
(114713, 'https://ror.org/04ewjzr74', 'en', 0, 'https://ror.org/04ewjzr74 Saint Jude Medical Portugal (Portugal)'),
(114714, 'https://ror.org/03gz2j032', 'pt', 1, 'https://ror.org/03gz2j032 Congregação das Irmãs do Instituto de Santa Doroteia'),
(114715, 'https://ror.org/00za53h95', 'en', 1, 'https://ror.org/00za53h95 Johns Hopkins University Universidad Johns Hopkins'),
(114716, 'https://ror.org/01gm5f004', 'en', 1, 'https://ror.org/01gm5f004 Biomedical Research Networking Center in Bioengineering, Biomaterials and Nanomedicine Centro de Investigación Biomédica en Red en Bioingeniería, Biomateriales y Nanomedicina'),
(114717, 'https://ror.org/048ef3e11', 'id', 1, 'https://ror.org/048ef3e11 Universitas Atma Jaya Makassar'),
(114718, 'https://ror.org/04hym7e04', 'en', 1, 'https://ror.org/04hym7e04 Al-Quds University ××•× ×™×‘×Ø×”×™×˜×Ŗ אל-קודה Ų¬Ų§Ł…Ų¹Ų© القدس'),
(114719, 'https://ror.org/04fm0sh33', 'fr', 1, 'https://ror.org/04fm0sh33 Laboratoire de PlanƩtologie et GƩosciences Laboratory of Planetology and Geosciences'),
(114720, 'https://ror.org/0432d2f64', 'fr', 1, 'https://ror.org/0432d2f64 Centre Lucien Febvre'),
(114721, 'https://ror.org/05fam4460', 'id', 1, 'https://ror.org/05fam4460 Universitas Mandiri'),
(114722, 'https://ror.org/008rtte29', 'en', 1, 'https://ror.org/008rtte29 Griffin Hospital'),
(114723, 'https://ror.org/01xkfnd03', 'fr', 1, 'https://ror.org/01xkfnd03 Laboratoire de MathƩmatiques de Reims'),
(114724, 'https://ror.org/04svrs371', 'id', 1, 'https://ror.org/04svrs371 Universitas Bangun Nusantara'),
(114725, 'https://ror.org/05h794977', 'en', 1, 'https://ror.org/05h794977 Bay Atlantic University'),
(114726, 'https://ror.org/03bf2nz41', 'fr', 1, 'https://ror.org/03bf2nz41 Centre Hospitalier du Mans'),
(114727, 'https://ror.org/010bhn875', 'fr', 1, 'https://ror.org/010bhn875 Temps, espaces, langages, Europe mƩridionale, MƩditerranƩe'),
(114728, 'https://ror.org/00ad17k20', 'pt', 1, 'https://ror.org/00ad17k20 CQS Unipessoal (Portugal)'),
(114729, 'https://ror.org/00fxswh37', 'no_lang_code', 1, 'https://ror.org/00fxswh37 Mondragon Corporation (Spain)'),
(114730, 'https://ror.org/02zrq5134', 'en', 1, 'https://ror.org/02zrq5134 Minneapolis Park and Recreation Board'),
(114731, 'https://ror.org/05bf9q469', 'ms', 1, 'https://ror.org/05bf9q469 Jabatan Perkhidmatan Veterinar'),
(114732, 'https://ror.org/04tnanv78', 'pt', 1, 'https://ror.org/04tnanv78 Formalpress Publications and Marketing Formalpress PublicaƧƵes e Marketing (Portugal)'),
(114733, 'https://ror.org/01fkbmk11', 'en', 1, 'https://ror.org/01fkbmk11 Maritime Research Institute Netherlands'),
(114734, 'https://ror.org/05fnf2f71', 'uz', 1, 'https://ror.org/05fnf2f71 Andijan State Institute of Foreign Languages Andijon davlat chet tillari instituti'),
(114735, 'https://ror.org/019d5sd14', 'pt', 1, 'https://ror.org/019d5sd14 Centro de Investigação Interdisciplinar em Justiça'),
(114736, 'https://ror.org/03zee5r16', 'en', 1, 'https://ror.org/03zee5r16 Sikt – Kunnskapssektorens tenesteleverandĆør Sikt – Norwegian Agency for Shared Services in Education and Research'),
(114737, 'https://ror.org/059g9qt93', 'pt', 1, 'https://ror.org/059g9qt93 Inteli Lisboa'),
(114738, 'https://ror.org/03p96ke84', 'fr', 1, 'https://ror.org/03p96ke84 Development, Adaptation and Ageing DƩveloppement Adaptation et Vieillissement'),
(114739, 'https://ror.org/020mkze41', 'pt', 1, 'https://ror.org/020mkze41 Centro de Estudos e Peritagem em Auditoria e Contabilidade'),
(114740, 'https://ror.org/02snehe53', 'en', 1, 'https://ror.org/02snehe53 Kiryu University ę”ē”Ÿå¤§å­¦'),
(114741, 'https://ror.org/02ma6j015', 'fr', 1, 'https://ror.org/02ma6j015 Centre d''Excellence en Technologies de l''Information et de la Communication'),
(114742, 'https://ror.org/05xnnea38', 'en', 1, 'https://ror.org/05xnnea38 Swiss Epilepsy Center'),
(114743, 'https://ror.org/00jxe7243', 'fr', 1, 'https://ror.org/00jxe7243 Laboratoire Physiologie Cellulaire & VƩgƩtale Laboratoire de Physiologie Cellulaire VƩgƩtale'),
(114744, 'https://ror.org/00byxdz40', 'fr', 1, 'https://ror.org/00byxdz40 Institut de Recherche Interdisciplinaire de Grenoble'),
(114745, 'https://ror.org/01cynbx67', 'fr', 1, 'https://ror.org/01cynbx67 Institut de Recherche Montesquieu'),
(114746, 'https://ror.org/021f0sa24', 'fr', 1, 'https://ror.org/021f0sa24 Institut de MathƩmatiques de Bourgogne'),
(114747, 'https://ror.org/01ekw7f87', 'fr', 1, 'https://ror.org/01ekw7f87 Camille Jordan Institute Institut Camille Jordan'),
(114748, 'https://ror.org/0300s5145', 'fr', 1, 'https://ror.org/0300s5145 CREPAL - Centre de recherches sur les pays lusophones Centre de recherches sur les pays lusophones'),
(114749, 'https://ror.org/04nvdxw11', 'pt', 1, 'https://ror.org/04nvdxw11 Centro de Estudos ClƔssicos'),
(114750, 'https://ror.org/03ssekj71', 'en', 1, 'https://ror.org/03ssekj71 Community Health Systems - Oro Valley Hospital'),
(114751, 'https://ror.org/011fkz177', 'en', 1, 'https://ror.org/011fkz177 St. Luke''s Hospital'),
(114752, 'https://ror.org/01177bb84', 'fr', 1, 'https://ror.org/01177bb84 Institut d''Ʃtudes ibƩriques et ibƩrico-amƩricaines Institute of Iberian and Iberian-American Studies'),
(114753, 'https://ror.org/05kftaj26', 'pt', 1, 'https://ror.org/05kftaj26 Unidade Local de SaĆŗde do Alentejo Central'),
(114754, 'https://ror.org/02ar7h206', 'en', 1, 'https://ror.org/02ar7h206 Las Cumbres Observatory Global Telescope Network'),
(114755, 'https://ror.org/005q8d646', 'en', 1, 'https://ror.org/005q8d646 European Faculty of Law Evropska pravna fakulteta'),
(114756, 'https://ror.org/00m2z1b30', 'en', 1, 'https://ror.org/00m2z1b30 University College of Bahrain ŁƒŁ„ŁŠŲ© Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(114757, 'https://ror.org/02p4s1y59', 'id', 1, 'https://ror.org/02p4s1y59 Health Polytechnic of East Borneo Poltekkes Kemenkes Kalimantan Timur'),
(114758, 'https://ror.org/05kcrey59', 'en', 1, 'https://ror.org/05kcrey59 Language Space School'),
(114759, 'https://ror.org/01x994m09', 'en', 1, 'https://ror.org/01x994m09 American Society For Testing and Materials'),
(114760, 'https://ror.org/04rnk9665', 'pt', 1, 'https://ror.org/04rnk9665 Centro de Ɖtica Económica e Empresarial'),
(114761, 'https://ror.org/03bcdsr62', 'fr', 1, 'https://ror.org/03bcdsr62 Soils, Solids, Structures, Risks Sols, Solides, Structures, Risques'),
(114762, 'https://ror.org/051qxpt90', 'en', 1, 'https://ror.org/051qxpt90 School Center Novo mesto Å olski center Novo mesto'),
(114763, 'https://ror.org/01mhd9b84', 'fr', 1, 'https://ror.org/01mhd9b84 Immunologie et NeurogƩnƩtique ExpƩrimentales et MolƩculaires'),
(114764, 'https://ror.org/010gh8f20', 'en', 1, 'https://ror.org/010gh8f20 OpenScienceLab'),
(114765, 'https://ror.org/01nag1a70', 'id', 1, 'https://ror.org/01nag1a70 Institut Teknologi Indonesia'),
(114766, 'https://ror.org/05whq8x35', 'fr', 1, 'https://ror.org/05whq8x35 Laboratoire Parole et Langage'),
(114767, 'https://ror.org/02zjmca79', 'pt', 1, 'https://ror.org/02zjmca79 Seoane Hotel Society Sociedade Hoteleira Seoane (Portugal)'),
(114768, 'https://ror.org/03ey1ct92', 'en', 1, 'https://ror.org/03ey1ct92 Wildfowl & Wetlands Trust'),
(114769, 'https://ror.org/04276xd64', 'pt', 1, 'https://ror.org/04276xd64 Universidade dos AƧores University of the Azores'),
(114770, 'https://ror.org/008yah456', 'no_lang_code', 1, 'https://ror.org/008yah456 TARH (Portugal) Terra, Ambiente e Recursos HĆ­dricos foi constituĆ­da'),
(114771, 'https://ror.org/0259hk390', 'fr', 1, 'https://ror.org/0259hk390 Centre Pasteur du Cameroun'),
(114772, 'https://ror.org/0130vhy65', 'en', 1, 'https://ror.org/0130vhy65 Biomedical Research and Training Institute'),
(114773, 'https://ror.org/00w0b6m86', 'en', 1, 'https://ror.org/00w0b6m86 V. T. Choksi Sarvajanik College of Education'),
(114774, 'https://ror.org/03thhsh17', 'en', 1, 'https://ror.org/03thhsh17 Cambridge Scholars Publishing'),
(114775, 'https://ror.org/01n6r0e97', 'en', 1, 'https://ror.org/01n6r0e97 Leibniz Association Leibniz-Gemeinschaft'),
(114776, 'https://ror.org/0173ksf49', 'no_lang_code', 1, 'https://ror.org/0173ksf49 Health Outcomes Solutions (United States)'),
(114777, 'https://ror.org/02dernx73', 'en', 1, 'https://ror.org/02dernx73 International Institute of Information Technology ą¤…ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤Ŗą„ą¤£ą„‡'),
(114778, 'https://ror.org/05ap1vt50', 'en', 1, 'https://ror.org/05ap1vt50 VSL Dutch Metrology Institute VSL Nationaal Metrologisch Instituut'),
(114779, 'https://ror.org/009kpbt47', 'fr', 1, 'https://ror.org/009kpbt47 Laboratoire GƩomatique et foncier'),
(114780, 'https://ror.org/04v812296', 'pt', 1, 'https://ror.org/04v812296 Observatório Astronómico Prof Manuel de Barros'),
(114781, 'https://ror.org/043we9s22', 'fr', 1, 'https://ror.org/043we9s22 Institut Jean Le Rond d''Alembert'),
(114782, 'https://ror.org/02vt2xa24', 'es', 1, 'https://ror.org/02vt2xa24 Institute of Cognitive and Behavioural Neurology Instituto de NeurologĆ­a Cognitiva'),
(114783, 'https://ror.org/04k5jw363', 'fr', 1, 'https://ror.org/04k5jw363 Laboratoire de MathƩmatiques de Versailles'),
(114784, 'https://ror.org/02jnwtt18', 'en', 1, 'https://ror.org/02jnwtt18 International Institute for Central Asian Studies'),
(114785, 'https://ror.org/04k7dar27', 'en', 1, 'https://ror.org/04k7dar27 Servicio de Pesca y Vida Silvestre de los Estados Unidos United States Fish and Wildlife Service'),
(114786, 'https://ror.org/02mn2kc58', 'pt', 1, 'https://ror.org/02mn2kc58 Capital Douro Associação Industrial Comercial e de Serviços de São João da Pesqueira'),
(114787, 'https://ror.org/014apwk83', 'es', 1, 'https://ror.org/014apwk83 Instituto de Estudios Avanzados'),
(114788, 'https://ror.org/05neq8668', 'fr', 1, 'https://ror.org/05neq8668 Institut SystĆØmes Intelligents et de Robotique Institute of Intelligent Systems and Robotics'),
(114789, 'https://ror.org/05h34sh86', 'pt', 1, 'https://ror.org/05h34sh86 Unidade Local de SaĆŗde Gaia/Espinho'),
(114790, 'https://ror.org/02hwc1z56', 'fr', 1, 'https://ror.org/02hwc1z56 Laboratoire d''Ingénierie des Systèmes Macromoléculaires'),
(114791, 'https://ror.org/034atv473', 'en', 1, 'https://ror.org/034atv473 Jefferson Institute'),
(114792, 'https://ror.org/04w68cb80', 'en', 1, 'https://ror.org/04w68cb80 Intersectoral Research and Technology Complex Eye Microsurgery ŠœŠµŠ¶Š¾Ń‚Ń€Š°ŃŠ»ŠµŠ²Š¾Š¹ Š½Š°ŃƒŃ‡Š½Š¾-технический комплекс Ā«ŠœŠøŠŗŃ€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ глаза»'),
(114793, 'https://ror.org/04z1q2j11', 'no', 1, 'https://ror.org/04z1q2j11 Vestlandsforsking Western Norway Research Institute'),
(114794, 'https://ror.org/04k4h9k07', 'en', 1, 'https://ror.org/04k4h9k07 Scripps Mercy Hospital'),
(114795, 'https://ror.org/020q46z35', 'en', 1, 'https://ror.org/020q46z35 University of Bangui UniversitƩ de Bangui'),
(114796, 'https://ror.org/04v837171', 'fr', 1, 'https://ror.org/04v837171 Centre Nantais de Sociologie'),
(114797, 'https://ror.org/01neevw97', 'fr', 1, 'https://ror.org/01neevw97 Clinique de Genolier'),
(114798, 'https://ror.org/05t5mh490', 'pt', 1, 'https://ror.org/05t5mh490 Miranda & Associados Sociedade de Advogados (Portugal) Miranda & Associates Law Firm'),
(114799, 'https://ror.org/02fgvvg92', 'en', 1, 'https://ror.org/02fgvvg92 National Nutrition and Food Technology Research Institute'),
(114800, 'https://ror.org/044gfhg05', 'en', 1, 'https://ror.org/044gfhg05 Bosque Foods Bosque Foods GmbH Bosque Foods GmbH (Germany)'),
(114801, 'https://ror.org/004fmxv66', 'fr', 1, 'https://ror.org/004fmxv66 Franche-ComtĆ© Ɖlectronique MĆ©canique Thermique et Optique - Sciences et Technologies'),
(114802, 'https://ror.org/003sbhj60', 'en', 1, 'https://ror.org/003sbhj60 Ceres'),
(114803, 'https://ror.org/04nbw4v90', 'fr', 1, 'https://ror.org/04nbw4v90 Federative Institute for Research on Legal Transitions Institut FƩdƩratif de recherche sur les Transitions Juridiques'),
(114804, 'https://ror.org/05gy4kr80', 'en', 1, 'https://ror.org/05gy4kr80 V. G. Khlopin Radium Institute РаГиевый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š’. Š“. Єлопина'),
(114805, 'https://ror.org/00grvd431', 'pt', 1, 'https://ror.org/00grvd431 Livromedica ComƩrcio de Livros TƩcnicos (Portugal) Livromedica Trade of Technical Books'),
(114806, 'https://ror.org/03pr7ft13', 'en', 1, 'https://ror.org/03pr7ft13 State Research Center for Dermatovenereology and Cosmetology'),
(114807, 'https://ror.org/03zn8ck30', 'de', 1, 'https://ror.org/03zn8ck30 Rudolf-Kaiser-Stiftung'),
(114808, 'https://ror.org/031ah7413', 'fr', 1, 'https://ror.org/031ah7413 Astrophysique Relativiste, ThƩories, ExpƩriences, MƩtrologie, Instrumentation, Signaux'),
(114809, 'https://ror.org/002w9k038', 'en', 1, 'https://ror.org/002w9k038 Brooklyn Law School'),
(114810, 'https://ror.org/009gp5h03', 'pt', 1, 'https://ror.org/009gp5h03 Unidade Móvel de Investigação em Estudos do Local'),
(114811, 'https://ror.org/022jz8688', 'en', 1, 'https://ror.org/022jz8688 York University'),
(114812, 'https://ror.org/01z70sb13', 'pt', 1, 'https://ror.org/01z70sb13 Cooperativa de Técnicas Avançadas de Gestão e InformÔtica'),
(114813, 'https://ror.org/057hh0d67', 'pt', 1, 'https://ror.org/057hh0d67 Imoclƭnica Investimentos MƩdicos (Portugal) Imoclƭnica Medical Investments'),
(114814, 'https://ror.org/016s23c19', 'en', 1, 'https://ror.org/016s23c19 Morton Arboretum'),
(114815, 'https://ror.org/023wnz719', 'fr', 1, 'https://ror.org/023wnz719 Centre Hospitalier de Beauvais'),
(114816, 'https://ror.org/037wpkx04', 'en', 1, 'https://ror.org/037wpkx04 Universidade do Minho University of Minho'),
(114817, 'https://ror.org/01q5ge486', 'fr', 1, 'https://ror.org/01q5ge486 Centre des MatƩriaux Centre for material sciences Mines Paris, PSL University, Centre for material sciences (MAT) Mines Paris, UniversitƩ PSL, Centre des MatƩriaux (MAT)'),
(114818, 'https://ror.org/03c8rbe02', 'pt', 1, 'https://ror.org/03c8rbe02 Instituto Nacional para a Reabilitação National Institute for Rehabilitation'),
(114819, 'https://ror.org/0205x2f04', 'de', 1, 'https://ror.org/0205x2f04 Allgemeines Krankenhaus Celle'),
(114820, 'https://ror.org/015cf0x85', 'fr', 1, 'https://ror.org/015cf0x85 Edition, InterprƩtation et traduction des textes anciens'),
(114821, 'https://ror.org/01fak6m55', 'pt', 1, 'https://ror.org/01fak6m55 Consulbiotech Investigação e Desenvolvimento (Portugal) Consulbiotech Research and Development'),
(114822, 'https://ror.org/052w06y65', 'no_lang_code', 1, 'https://ror.org/052w06y65 Jaslok Hospital'),
(114823, 'https://ror.org/04pe0yv43', 'en', 1, 'https://ror.org/04pe0yv43 Dnipro State University of Internal Affairs Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(114824, 'https://ror.org/043bfms20', 'en', 1, 'https://ror.org/043bfms20 Anthony Nolan'),
(114825, 'https://ror.org/02s7sax82', 'es', 1, 'https://ror.org/02s7sax82 Comisión de Investigaciones Científicas'),
(114826, 'https://ror.org/02r2nns16', 'de', 1, 'https://ror.org/02r2nns16 UniversitƤtsklinikum Krems'),
(114827, 'https://ror.org/01mccny28', 'en', 1, 'https://ror.org/01mccny28 Early detection of Colon Cancer using Molecular Markers and Microbiota'),
(114828, 'https://ror.org/02bsd9p69', 'fr', 1, 'https://ror.org/02bsd9p69 Centre de Physique ThƩorique'),
(114829, 'https://ror.org/03q239206', 'en', 1, 'https://ror.org/03q239206 International Phycological Society'),
(114830, 'https://ror.org/03nb95916', 'de', 1, 'https://ror.org/03nb95916 Kompetenzzentrum Wasser Hessen'),
(114831, 'https://ror.org/05r0e4p82', 'en', 1, 'https://ror.org/05r0e4p82 Karl Landsteiner Gesellschaft Karl Landsteiner Society'),
(114832, 'https://ror.org/006z28t09', 'pt', 1, 'https://ror.org/006z28t09 Vicoustic (Portugal) Visound Acoustics'),
(114833, 'https://ror.org/01ph4hz96', 'fr', 1, 'https://ror.org/01ph4hz96 Institut Technique de l''Aviculture'),
(114834, 'https://ror.org/058q3rb52', 'de', 1, 'https://ror.org/058q3rb52 Stadtwerke Soest'),
(114835, 'https://ror.org/02knk1347', 'en', 1, 'https://ror.org/02knk1347 Key Laboratory of Symbolic Computation and Knowledge Engineering of Ministry of Education, Jilin University ē¬¦å·č®”ē®—äøŽēŸ„čÆ†å·„ēØ‹ę•™č‚²éƒØé‡ē‚¹å®žéŖŒå®¤ å‰ęž—å¤§å­¦'),
(114836, 'https://ror.org/04ke3vc41', 'en', 1, 'https://ror.org/04ke3vc41 Qurtuba University of Science and Information Technology قرطبہ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(114837, 'https://ror.org/05ffhwq07', 'en', 1, 'https://ror.org/05ffhwq07 California Space Grant Consortium'),
(114838, 'https://ror.org/04fka2a06', 'id', 1, 'https://ror.org/04fka2a06 Yayasan Aurora Marifatul Syifa'),
(114839, 'https://ror.org/00jj62164', 'fr', 1, 'https://ror.org/00jj62164 Centre de Recherche et de Documentation sur l''OcƩanie (CREDO)'),
(114840, 'https://ror.org/04snvc712', 'en', 1, 'https://ror.org/04snvc712 Beijing Normal-Hong Kong Baptist University åŒ—åøˆé¦™ęøÆęµøä¼šå¤§å­¦'),
(114841, 'https://ror.org/049xh5y45', 'fr', 1, 'https://ror.org/049xh5y45 Benthic Ecogeochemistry Laboratory Laboratoire d''EcogƩochimie des Environnements Benthiques'),
(114842, 'https://ror.org/00bmb8a49', 'en', 1, 'https://ror.org/00bmb8a49 Antioch College'),
(114843, 'https://ror.org/03am10p12', 'no_lang_code', 1, 'https://ror.org/03am10p12 Amrita Vishwa Vidyapeetham ą“…ą“®ąµƒą“¤ ą“µą“æą“¶ąµą“µą“µą“æą“¦ąµą“Æą“¾ą“Ŗąµ€ą“ ą“‚'),
(114844, 'https://ror.org/02w769767', 'en', 1, 'https://ror.org/02w769767 Energy Foundation'),
(114845, 'https://ror.org/05bywcp64', 'en', 1, 'https://ror.org/05bywcp64 Austrian Centre for Electron Microscopy and Nanoanalysis'),
(114846, 'https://ror.org/03ex43f61', 'fr', 1, 'https://ror.org/03ex43f61 Equipe de recherche interdisciplinaire sur les aires culturelles'),
(114847, 'https://ror.org/01f1fwk48', 'fr', 1, 'https://ror.org/01f1fwk48 Centre de Recherches en Histoire des IdƩes'),
(114848, 'https://ror.org/049r1ts75', 'en', 1, 'https://ror.org/049r1ts75 J. Craig Venter Institute'),
(114849, 'https://ror.org/04dxeze48', 'fr', 1, 'https://ror.org/04dxeze48 Fluid Mechanics and Acoustics Laboratory Laboratoire de MƩcanique des Fluides et d''Acoustique'),
(114850, 'https://ror.org/0145fw131', 'en', 1, 'https://ror.org/0145fw131 Hong Kong Baptist University'),
(114851, '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'),
(114852, 'https://ror.org/02fdf4056', 'fr', 1, 'https://ror.org/02fdf4056 Archives Henri-PoincarƩ - Philosophie et Recherches sur les Sciences et les Technologies'),
(114853, 'https://ror.org/035g79n90', 'da', 1, 'https://ror.org/035g79n90 Innovation Centre for Organic Farming Innovationscenter for Ƙkologisk Landbrug'),
(114854, 'https://ror.org/005fgpm31', 'en', 1, 'https://ror.org/005fgpm31 Dayanand Medical College & Hospital'),
(114855, 'https://ror.org/0133h5567', 'en', 1, 'https://ror.org/0133h5567 Yangon University of Economics'),
(114856, 'https://ror.org/040r3xq19', 'es', 1, 'https://ror.org/040r3xq19 Universidad de León'),
(114857, 'https://ror.org/03m1mgc42', 'pt', 1, 'https://ror.org/03m1mgc42 Center of Advanced Studies of Pharmaceutical Industry Centro de Estudos Superiores da IndĆŗstria FarmacĆŖutica Unipessoal (Portugal)'),
(114858, 'https://ror.org/01jbjwx18', 'en', 1, 'https://ror.org/01jbjwx18 Frisius MC'),
(114859, 'https://ror.org/00e7sj460', 'de', 1, 'https://ror.org/00e7sj460 Heinrich-Stockmeyer-Stiftung'),
(114860, 'https://ror.org/020q2cx80', 'en', 1, 'https://ror.org/020q2cx80 Centre for Social Sciences and Humanities'),
(114861, 'https://ror.org/043ze3447', 'pt', 1, 'https://ror.org/043ze3447 Hospital Distrital Torres Vedras'),
(114862, 'https://ror.org/02nad3c73', 'pl', 1, 'https://ror.org/02nad3c73 Kooperatywa Dobrze Stowarzyszenia Kooperatywa Spożywcza Dobrze Stowarzyszenia Kooperatywa Spożywcza Dobrze (Poland)'),
(114863, 'https://ror.org/00yk1ar69', 'pt', 1, 'https://ror.org/00yk1ar69 CliniciĆŖncia (Portugal)'),
(114864, 'https://ror.org/04v0vnr61', 'pt', 1, 'https://ror.org/04v0vnr61 Cordex (Portugal)'),
(114865, 'https://ror.org/012e81q42', 'pt', 1, 'https://ror.org/012e81q42 Observatório Europeu Multidisciplinar do Fundo do Mar e Coluna de Água Portugal'),
(114866, 'https://ror.org/013948m30', 'fr', 1, 'https://ror.org/013948m30 Ɖcole Nationale SupĆ©rieure des IngĆ©nieurs en Arts Chimiques et Technologiques'),
(114867, 'https://ror.org/01na0pb61', 'fr', 1, 'https://ror.org/01na0pb61 Institut de Biologie Physico-Chimique'),
(114868, 'https://ror.org/03ddhrn22', 'no_lang_code', 1, 'https://ror.org/03ddhrn22 Shri Vile Parle Kelavani Mandal'),
(114869, 'https://ror.org/00rsahe50', 'pt', 1, 'https://ror.org/00rsahe50 Direção Regional de Agricultura e Pescas de Lisboa e Vale do Tejo'),
(114870, 'https://ror.org/01c0k9408', 'en', 1, 'https://ror.org/01c0k9408 Life University'),
(114871, 'https://ror.org/04204gr61', 'en', 1, 'https://ror.org/04204gr61 Universidad de La Habana University of Havana'),
(114872, 'https://ror.org/042yv0n82', 'fr', 1, 'https://ror.org/042yv0n82 ExcitabilitƩ Nerveuse et ThƩrapeutique'),
(114873, 'https://ror.org/01e65z464', 'en', 1, 'https://ror.org/01e65z464 University of Technology and Applied Sciences - Ibra Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© Ų„ŲØŲ±Ų§Ų”'),
(114874, 'https://ror.org/01xnbtm64', 'en', 1, 'https://ror.org/01xnbtm64 State Research Institute for Chemistry and Technology of Organoelement Compounds Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Šø технологии ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š¾Š¾Ń€Š³Š°Š½ŠøŃ‡ŠµŃŠŗŠøŃ… соеГинений'),
(114875, 'https://ror.org/03efa8j75', 'en', 1, 'https://ror.org/03efa8j75 IMS Unison University'),
(114876, 'https://ror.org/013a0r905', 'en', 1, 'https://ror.org/013a0r905 Henry Royce Institute'),
(114877, 'https://ror.org/007jzpa85', 'en', 1, 'https://ror.org/007jzpa85 Community Health Systems - Santa Rosa Medical Center'),
(114878, 'https://ror.org/03aypnd11', 'en', 1, 'https://ror.org/03aypnd11 Ayub Medical College'),
(114879, 'https://ror.org/00kfcn389', 'pt', 1, 'https://ror.org/00kfcn389 Douro StartUP'),
(114880, 'https://ror.org/02a26ft70', 'pt', 1, 'https://ror.org/02a26ft70 Laboratório de Aprendizagem e Controlo Motor'),
(114881, 'https://ror.org/000yesh06', 'en', 1, 'https://ror.org/000yesh06 Navodaya Dental College and Hospital'),
(114882, 'https://ror.org/00ypgyy34', 'en', 1, 'https://ror.org/00ypgyy34 State University of Malang Universitas Negeri Malang'),
(114883, 'https://ror.org/01njpm937', 'no_lang_code', 1, 'https://ror.org/01njpm937 Seva Mandir'),
(114884, 'https://ror.org/053x5gs92', 'no_lang_code', 1, 'https://ror.org/053x5gs92 Saudi Electricity Company Saudi Electricity Company (Saudi Arabia) Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© Ł„Ł„ŁƒŁ‡Ų±ŲØŲ§Ų”'),
(114885, 'https://ror.org/04048e026', 'en', 1, 'https://ror.org/04048e026 International Superconductivity Technology Center å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›č¶…é›»å°Žē”£ę„­ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(114886, 'https://ror.org/05f38c676', 'fr', 1, 'https://ror.org/05f38c676 Centre de Recherche en Histoire EuropƩenne ComparƩe, de l''AntiquitƩ Ơ nos jours'),
(114887, 'https://ror.org/0315ea826', 'en', 1, 'https://ror.org/0315ea826 Children''s Hospital Agia Sophia'),
(114888, 'https://ror.org/018xens77', 'en', 1, 'https://ror.org/018xens77 Ithaka Harbors'),
(114889, 'https://ror.org/01yv6t270', 'pt', 1, 'https://ror.org/01yv6t270 Unidade Hospitalar de Portimão'),
(114890, 'https://ror.org/024a76r57', 'en', 1, 'https://ror.org/024a76r57 Community Health Systems - Longview Regional Medical Center'),
(114891, 'https://ror.org/01jyzgn17', 'en', 1, 'https://ror.org/01jyzgn17 Stockholm University College of Music Education Stockholms Musikpedagogiska Institut'),
(114892, 'https://ror.org/020hpmb70', 'en', 0, 'https://ror.org/020hpmb70 Ontario Mental Health Foundation'),
(114893, 'https://ror.org/051g1n833', 'en', 1, 'https://ror.org/051g1n833 National Pedagogical University of Uzbekistan OŹ»zbekiston milliy pedagogika universiteti ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Узбекистана'),
(114894, 'https://ror.org/04n9van71', 'fr', 1, 'https://ror.org/04n9van71 Cultures et Environnements. PrĆ©histoire, AntiquitĆ©, Moyen Ƃge'),
(114895, 'https://ror.org/00dbd8b73', 'en', 1, 'https://ror.org/00dbd8b73 Dokuz Eylül University Dokuz Eylül Üniversitesi'),
(114896, 'https://ror.org/00yesn553', 'en', 1, 'https://ror.org/00yesn553 Iranian Institute for Health Sciences Research'),
(114897, 'https://ror.org/02xbxe736', 'pt', 1, 'https://ror.org/02xbxe736 Unidade Hospitalar de Lamego'),
(114898, 'https://ror.org/04mzqjs78', 'fr', 1, 'https://ror.org/04mzqjs78 BiogƩosciences'),
(114899, 'https://ror.org/053sj3y70', 'fr', 1, 'https://ror.org/053sj3y70 ReprƩsentations et IdentitƩs. Espaces Germanique, Nordique et NƩerlandophone'),
(114900, 'https://ror.org/00t8kk495', 'hr', 1, 'https://ror.org/00t8kk495 Klinička bolnica "Sveti Duh"'),
(114901, 'https://ror.org/03s25n537', 'en', 1, 'https://ror.org/03s25n537 Community Health Systems - Gadsden Regional Medical Center'),
(114902, 'https://ror.org/055eghv78', 'fr', 1, 'https://ror.org/055eghv78 Centre d’études des transformations des activitĆ©s physiques et sportives'),
(114903, 'https://ror.org/01rf1rj96', 'en', 1, 'https://ror.org/01rf1rj96 Kangwon National University Hospital ź°•ģ›ėŒ€ķ•™źµė³‘ģ›'),
(114904, 'https://ror.org/04n1epe32', 'en', 0, 'https://ror.org/04n1epe32 Shire Pharmaceuticals (Portugal)'),
(114905, 'https://ror.org/05ybm7053', 'en', 1, 'https://ror.org/05ybm7053 Food for Biodiversity'),
(114906, 'https://ror.org/01b2epx09', 'fr', 1, 'https://ror.org/01b2epx09 Laboratoire des Sciences de l''IngƩnieur pour l''Environnement'),
(114907, 'https://ror.org/01abkkw91', 'nl', 1, 'https://ror.org/01abkkw91 Ikazia Ziekenhuis'),
(114908, 'https://ror.org/031j52y75', 'en', 1, 'https://ror.org/031j52y75 Methods and Applied Research for Trial'),
(114909, 'https://ror.org/03ng6qj84', 'fr', 1, 'https://ror.org/03ng6qj84 DILTEC - Didactique des langues, des textes et des cultures Didactique des Langues, des Textes et des Cultures'),
(114910, 'https://ror.org/040110q42', 'fr', 1, 'https://ror.org/040110q42 Laboratoire d’études en droits fondamentaux, des Ć©changes internationaux et de la mer'),
(114911, 'https://ror.org/055ysan77', 'no_lang_code', 1, 'https://ror.org/055ysan77 Klein Buendel (United States)'),
(114912, 'https://ror.org/048m16q57', 'no_lang_code', 1, 'https://ror.org/048m16q57 Carestream (United States)'),
(114913, 'https://ror.org/01dthb180', 'fr', 1, 'https://ror.org/01dthb180 EpidƩmiosurveillance et circulation des parasites dans les environnements'),
(114914, 'https://ror.org/00aajq960', 'id', 1, 'https://ror.org/00aajq960 Universitas Nahdlatul Ulama Yogyakarta'),
(114915, 'https://ror.org/04rtjaj74', 'en', 1, 'https://ror.org/04rtjaj74 Health Data Research UK'),
(114916, 'https://ror.org/01yqes018', 'fr', 1, 'https://ror.org/01yqes018 Equipe d’Economie Le Havre Normandie'),
(114917, 'https://ror.org/04q7y8a54', 'en', 1, 'https://ror.org/04q7y8a54 Conway School of Landscape Design'),
(114918, 'https://ror.org/04jg36w98', 'no_lang_code', 1, 'https://ror.org/04jg36w98 Saint-Petersburg Research Institute of Phthisiopulmonology Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠŠ˜Š˜ Ń„Ń‚ŠøŠ·ŠøŠ¾ŠæŃƒŠ»ŃŒŠ¼Š¾Š½Š¾Š»Š¾Š³ŠøŠø'),
(114919, 'https://ror.org/009ay5m23', 'fr', 0, 'https://ror.org/009ay5m23 Institut d''Imagerie BiomƩdicale'),
(114920, 'https://ror.org/02tefzr61', 'en', 1, 'https://ror.org/02tefzr61 University of Tokyo Health Sciences ę±äŗ¬åŒ»ē™‚å­¦é™¢å¤§å­¦'),
(114921, 'https://ror.org/00ta7av32', 'en', 1, 'https://ror.org/00ta7av32 National Center for Communicable Diseases ЄАЛДВАРТ ÓØŠ’Š§Š˜Š Š”Š£Š”Š›ŠŠ›Š«Š Ņ®ŠŠ”Š­Š”ŠŠ˜Š™ Š¢ÓØŠ’'),
(114922, 'https://ror.org/05mb2ak88', 'en', 1, 'https://ror.org/05mb2ak88 Bonneville Power Administration'),
(114923, 'https://ror.org/011n2hy47', 'en', 1, 'https://ror.org/011n2hy47 FƩdƩration Mondiale Des Journalistes Scientifiques World Federation of Science Journalists'),
(114924, 'https://ror.org/04gxn9h90', 'fr', 1, 'https://ror.org/04gxn9h90 Savoirs et Mondes Indiens'),
(114925, 'https://ror.org/00syfc790', 'fr', 1, 'https://ror.org/00syfc790 BioingƩnierie, Tissus et NeuroplasticitƩ'),
(114926, 'https://ror.org/05yb1mg89', 'de', 1, 'https://ror.org/05yb1mg89 Forschungs- und Beratungsstelle Arbeitswelt'),
(114927, 'https://ror.org/00c3ktd57', 'fr', 1, 'https://ror.org/00c3ktd57 Laboratoire de PhysioMƩdecine MolƩculaire'),
(114928, 'https://ror.org/01k6z4z19', 'en', 1, 'https://ror.org/01k6z4z19 Bremen Institute for Applied Beam Technology Bremer Institut für angewandte Strahltechnik'),
(114929, 'https://ror.org/05t9f1n79', 'en', 1, 'https://ror.org/05t9f1n79 National University of Ukraine on Physical Education and Sport ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ фізичного Š²ŠøŃ…Š¾Š²Š°Š½Š½Ń і ŃŠæŠ¾Ń€Ń‚Ńƒ України'),
(114930, 'https://ror.org/02r033j14', 'en', 1, 'https://ror.org/02r033j14 National College of Technology, Wakayama College å’Œę­Œå±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(114931, 'https://ror.org/00z1q5626', 'fr', 1, 'https://ror.org/00z1q5626 UniversitĆ© de la Formation Continue UniversitĆ© de la Formation Continue (UFC) Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁƒŁˆŁŠŁ† Ų§Ł„Ł…ŲŖŁˆŲ§ŲµŁ„'),
(114932, 'https://ror.org/04jm8zw14', 'fr', 1, 'https://ror.org/04jm8zw14 Architecture et Fonction des MacromolƩcules Biologiques'),
(114933, 'https://ror.org/03wr7bx86', 'no_lang_code', 1, 'https://ror.org/03wr7bx86 MARIS B.V. Marine Information Service (Netherlands)'),
(114934, 'https://ror.org/0490dah44', 'no_lang_code', 1, 'https://ror.org/0490dah44 Epigenomics (Germany)'),
(114935, 'https://ror.org/01m32d953', 'en', 1, 'https://ror.org/01m32d953 Copernicus Memorial Hospital'),
(114936, 'https://ror.org/02tp7mm44', 'fr', 1, 'https://ror.org/02tp7mm44 Centre de Recherches Insulaires et Observatoire de l''Environnement'),
(114937, 'https://ror.org/017k05f91', 'fr', 1, 'https://ror.org/017k05f91 Centre de Recherche et d''Etude en Droit et Science Politique'),
(114938, 'https://ror.org/04p9rdr48', 'en', 1, 'https://ror.org/04p9rdr48 Southern Isabela Medical Center'),
(114939, 'https://ror.org/00d8qfg29', 'pt', 1, 'https://ror.org/00d8qfg29 Coletivo Criatura (Portugal) Collective Creature'),
(114940, 'https://ror.org/039gvet66', 'pt', 1, 'https://ror.org/039gvet66 Universidade Nova de Lisboa Biblioteca e Serviços de Documentação'),
(114941, 'https://ror.org/02xj02q08', 'pt', 1, 'https://ror.org/02xj02q08 Centro Empresarial Torres de Lisboa (Portugal) Lisbon Towers Business Centre'),
(114942, 'https://ror.org/04tmzke54', 'no_lang_code', 1, 'https://ror.org/04tmzke54 Innovative Scientific Solutions (United States)'),
(114943, 'https://ror.org/00vp43e16', 'en', 1, 'https://ror.org/00vp43e16 Therapeutics Clinical Research'),
(114944, 'https://ror.org/00gr5cx27', 'en', 1, 'https://ror.org/00gr5cx27 PrJSC "Ukrhydroenergo" ŠŸŃ€ŠŠ¢ «УкргіГроене́рго»'),
(114945, 'https://ror.org/0576by029', 'en', 1, 'https://ror.org/0576by029 Athena Research and Innovation Center In Information Communication & Knowledge Technologies'),
(114946, 'https://ror.org/02ph6p167', 'en', 1, 'https://ror.org/02ph6p167 Institut international de mƩdecine reproductive restauratrice Instituto Internacional de Medicina Reproductiva Restaurativa International Institute for Restorative Reproductive Medicine'),
(114947, 'https://ror.org/049sttw47', 'de', 1, 'https://ror.org/049sttw47 STZ eyetrial'),
(114948, 'https://ror.org/0311gd774', 'en', 1, 'https://ror.org/0311gd774 Research Institute of Industrial Economics'),
(114949, 'https://ror.org/0499b1120', 'fr', 1, 'https://ror.org/0499b1120 Centre de Recherche en Droit Administratif'),
(114950, 'https://ror.org/012b9mf52', 'en', 1, 'https://ror.org/012b9mf52 Kijowski Narodowy Uniwersytet Kultury i Sztuki Kyiv National University of Culture and Arts Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š² ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø і мистецтв'),
(114951, 'https://ror.org/046cjf283', 'fr', 1, 'https://ror.org/046cjf283 Laboratoire Interuniversitaire des Systèmes Atmosphériques'),
(114952, 'https://ror.org/03svdf488', 'de', 1, 'https://ror.org/03svdf488 Reinhard und Barbara Bretzel-Stiftung'),
(114953, 'https://ror.org/02gp6p739', 'no_lang_code', 1, 'https://ror.org/02gp6p739 Mali-Folkecenter'),
(114954, 'https://ror.org/01hjhm267', 'fr', 1, 'https://ror.org/01hjhm267 CEA Le Ripault'),
(114955, 'https://ror.org/01az1jj42', 'fr', 1, 'https://ror.org/01az1jj42 Laboratoire des Sciences de l''IngƩnieur AppliquƩes Ơ la MƩcanique et au gƩnie Electrique Laboratory for applied sciences in mechanics and electrical engineering'),
(114956, 'https://ror.org/044jw3g30', 'no_lang_code', 1, 'https://ror.org/044jw3g30 Karakter'),
(114957, 'https://ror.org/01ntvnd36', 'fr', 1, 'https://ror.org/01ntvnd36 Laboratoire de Recherche en Management Management Research Laboratory'),
(114958, 'https://ror.org/0473nd746', 'en', 1, 'https://ror.org/0473nd746 CMC University TrĘ°į»ng ĐẔi hį»c CMC'),
(114959, 'https://ror.org/051smb947', 'en', 1, 'https://ror.org/051smb947 Nagasaki Institute of Applied Science é•·å“Žē·åˆē§‘å­¦å¤§å­¦'),
(114960, 'https://ror.org/04tcsrf14', 'de', 1, 'https://ror.org/04tcsrf14 Schmerzklinik Kiel'),
(114961, 'https://ror.org/02a8kfj58', 'no_lang_code', 1, 'https://ror.org/02a8kfj58 Epistem (United Kingdom)'),
(114962, 'https://ror.org/04dx32582', 'fr', 1, 'https://ror.org/04dx32582 InterdisciplinaritĆ© en SantĆ© Publique Interventions et Instruments de mesure complexes – RĆ©gion Est'),
(114963, 'https://ror.org/045qszf23', 'fr', 1, 'https://ror.org/045qszf23 Institut de Chimie de Clermont-Ferrand Institute of Chemistry of Clermont-Ferrand'),
(114964, 'https://ror.org/02brsbg31', 'fr', 1, 'https://ror.org/02brsbg31 Behavioral Ecology and Fish Population Biology Ecologie Comportementale et Biologie des Populations de Poissons'),
(114965, 'https://ror.org/03pbgwk21', 'fr', 1, 'https://ror.org/03pbgwk21 UniversitƩ Bordeaux Montaigne'),
(114966, 'https://ror.org/048d5xq24', 'fr', 1, 'https://ror.org/048d5xq24 Laboratoire LumiĆØre, MatiĆØre et Interfaces'),
(114967, 'https://ror.org/055bda088', 'en', 1, 'https://ror.org/055bda088 Tajik Pedagogical Institute in the Rasht District Š”Š¾Š½ŠøŃˆŠŗŠ°Š“Š°Šø омӯзгории Тоҷикистон Гар Š½Š¾Ņ³ŠøŃŠø Š Š°ŃˆŃ‚ ТаГжикский пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ в Š Š°ŃˆŃ‚ском районе'),
(114968, 'https://ror.org/0431hh004', 'fr', 1, 'https://ror.org/0431hh004 Institut d''Ɖlectronique et des SystĆØmes'),
(114969, 'https://ror.org/021b2et07', 'de', 1, 'https://ror.org/021b2et07 Landesamt für Vermessung und Geobasisinformation Rheinland-Pfalz'),
(114970, 'https://ror.org/04aenjr55', 'en', 1, 'https://ror.org/04aenjr55 DAV University'),
(114971, 'https://ror.org/007p4nf03', 'fr', 1, 'https://ror.org/007p4nf03 Laboratoire de PhonƩtique et Phonologie'),
(114972, 'https://ror.org/04yyr1g80', 'en', 1, 'https://ror.org/04yyr1g80 Communications Workers of America'),
(114973, 'https://ror.org/01g94x362', 'nl', 0, 'https://ror.org/01g94x362 Departement Economie, Wetenschap & Innovatie Department of Economy, Sciency & Innovation'),
(114974, 'https://ror.org/028ajhy39', 'no_lang_code', 1, 'https://ror.org/028ajhy39 Hellenic Digital Health Cluster - HDHC Hellenic Digital Health Cluster - HDHC (Greece)'),
(114975, 'https://ror.org/01v3aer42', 'pt', 1, 'https://ror.org/01v3aer42 Hospital de Lagos'),
(114976, 'https://ror.org/01e8hcf19', 'en', 1, 'https://ror.org/01e8hcf19 American Ceramic Society'),
(114977, 'https://ror.org/044zx7719', 'pt', 1, 'https://ror.org/044zx7719 Centro de Quƭmica de Ɖvora'),
(114978, 'https://ror.org/00zh5wn98', 'en', 1, 'https://ror.org/00zh5wn98 Netherlands Metabolomics Centre'),
(114979, 'https://ror.org/02qa92s63', 'en', 1, 'https://ror.org/02qa92s63 Breast Cancer Now'),
(114980, 'https://ror.org/0307crw42', 'en', 1, 'https://ror.org/0307crw42 Albany Medical Center Hospital'),
(114981, 'https://ror.org/05yfnaj56', 'pt', 1, 'https://ror.org/05yfnaj56 Francisco Allen Gomes (Portugal)'),
(114982, 'https://ror.org/058xqms97', 'es', 1, 'https://ror.org/058xqms97 Instituto de FĆ­sica del Litoral'),
(114983, 'https://ror.org/05he8dq02', 'en', 1, 'https://ror.org/05he8dq02 Merowe University of Technology Ų¬Ų§Ł…Ų¹Ų© Ł…Ų±ŁˆŁŠ Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ©'),
(114984, 'https://ror.org/048zgak80', 'en', 1, 'https://ror.org/048zgak80 National University of RĆ­o Negro Universidad Nacional de RĆ­o Negro'),
(114985, 'https://ror.org/00wgn9w85', 'no_lang_code', 1, 'https://ror.org/00wgn9w85 Redondo Optics (United States)'),
(114986, 'https://ror.org/042ds2135', 'fr', 1, 'https://ror.org/042ds2135 Groupe de Recherches sur l''EnergƩtique des Milieux IonisƩs'),
(114987, 'https://ror.org/042dc0x18', 'fr', 1, 'https://ror.org/042dc0x18 GANIL Grand AccƩlƩrateur National d''Ions Lourds'),
(114988, 'https://ror.org/03kzgcv48', 'en', 1, 'https://ror.org/03kzgcv48 Freie Theologische Hochschule Gießen Giessen School of Theology'),
(114989, 'https://ror.org/039z13y21', 'en', 1, 'https://ror.org/039z13y21 Fonds National de la Recherche National Research Fund Luxembourg'),
(114990, 'https://ror.org/05h929866', 'fr', 1, 'https://ror.org/05h929866 Laboratoire des Sciences de l''Environnement Marin'),
(114991, 'https://ror.org/00jsj7d19', 'en', 1, 'https://ror.org/00jsj7d19 The Institute of Legislation and Comparative Law under the Government of the Russian Federation'),
(114992, 'https://ror.org/02faghm73', 'en', 1, 'https://ror.org/02faghm73 Community Health Systems - Tennova North Knoxville Medical Center'),
(114993, 'https://ror.org/01551xr79', 'pt', 1, 'https://ror.org/01551xr79 Laboratório Regional de Engenharia Civil'),
(114994, 'https://ror.org/03rqvr941', 'no_lang_code', 1, 'https://ror.org/03rqvr941 Circadian (United States)'),
(114995, 'https://ror.org/03a02sz29', 'en', 1, 'https://ror.org/03a02sz29 Lublin Oncology Center'),
(114996, 'https://ror.org/03z20vp15', 'fr', 1, 'https://ror.org/03z20vp15 Laboratoire de Chimie Physique - MatiĆØre et Rayonnement'),
(114997, 'https://ror.org/0342y5q78', 'da', 1, 'https://ror.org/0342y5q78 Greenland Institute of Natural Resources GrĆønlands Naturinstitut Pinngortitaleriffik'),
(114998, 'https://ror.org/032bjve71', 'en', 1, 'https://ror.org/032bjve71 Krasnoyarsk Regional Clinical Hospital ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠ°Ń ŠŗŃ€Š°ŠµŠ²Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(114999, 'https://ror.org/032y5zj91', 'en', 1, 'https://ror.org/032y5zj91 Military Medical Academy ВоенномеГицинска Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(115000, 'https://ror.org/05nkffb74', 'en', 1, 'https://ror.org/05nkffb74 Mubarak Al Kabeer Hospital مستؓفى Ł…ŲØŲ§Ų±Łƒ Ų§Ł„ŁƒŲØŁŠŲ±'),
(115001, 'https://ror.org/04g6hwe09', 'pt', 1, 'https://ror.org/04g6hwe09 Voice of Nature Voz da Natureza Lda (Portugal)'),
(115002, 'https://ror.org/03sy36a97', 'en', 1, 'https://ror.org/03sy36a97 Community Health Systems - DeTar Healthcare System'),
(115003, 'https://ror.org/01gf00k84', 'en', 1, 'https://ror.org/01gf00k84 Kameda Medical Center äŗ€ē”°ē·åˆē—…é™¢'),
(115004, 'https://ror.org/02bf26016', 'en', 1, 'https://ror.org/02bf26016 Wise Healthcare Solutions (Portugal)'),
(115005, 'https://ror.org/01rb31945', 'fr', 1, 'https://ror.org/01rb31945 Laboratoire Interdisciplinaire de Recherches "SociƩtƩs, SensibilitƩs, Soin"'),
(115006, 'https://ror.org/00jway472', 'en', 1, 'https://ror.org/00jway472 Chuo cha Maji, Tanzania Water Institute, Tanzania'),
(115007, 'https://ror.org/02491xs25', 'pt', 1, 'https://ror.org/02491xs25 Creartopia (Portugal)'),
(115008, 'https://ror.org/042te9f59', 'en', 1, 'https://ror.org/042te9f59 Sabin Vaccine Institute'),
(115009, 'https://ror.org/01a2z2x66', 'en', 1, 'https://ror.org/01a2z2x66 Cologne Institute for Economic Research Institut der deutschen Wirtschaft Kƶln'),
(115010, 'https://ror.org/002y1bq07', 'en', 1, 'https://ror.org/002y1bq07 Madison Area Technical College'),
(115011, 'https://ror.org/0041am420', 'fr', 1, 'https://ror.org/0041am420 Institut des sciences juridique et philosophique de la Sorbonne'),
(115012, 'https://ror.org/05qg5ht95', 'pt', 1, 'https://ror.org/05qg5ht95 Hospital Nossa Senhora da Conceição de Valongo'),
(115013, 'https://ror.org/01bgnmj50', 'en', 1, 'https://ror.org/01bgnmj50 Bryan College'),
(115014, 'https://ror.org/013fheq88', 'en', 1, 'https://ror.org/013fheq88 Adsen Biotechnology Co. Ltd. Adsen Biotechnology Co. Ltd. (China) å±±äøœč‰¾å¾·ę£®ē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(115015, 'https://ror.org/00wcvf151', 'fr', 1, 'https://ror.org/00wcvf151 Centre Paul Albert-FƩvrier'),
(115016, 'https://ror.org/04t6tw838', 'en', 1, 'https://ror.org/04t6tw838 Siberian State University Geosystems and Technology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ геосистем Šø технологий'),
(115017, 'https://ror.org/03jrrzr69', 'es', 1, 'https://ror.org/03jrrzr69 Universidad Andina Simón Bolívar'),
(115018, 'https://ror.org/03jqyh750', 'no_lang_code', 1, 'https://ror.org/03jqyh750 IDEX Corporation (United States)'),
(115019, 'https://ror.org/034krhd70', 'en', 1, 'https://ror.org/034krhd70 Office of the Assistant Secretary of Defense for Energy, Installations, and Environment'),
(115020, 'https://ror.org/00ph65r66', 'en', 1, 'https://ror.org/00ph65r66 Institute of Geodesy and Cartography'),
(115021, 'https://ror.org/05tnvgk65', 'en', 1, 'https://ror.org/05tnvgk65 Northern State Medical University Деверный Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115022, 'https://ror.org/05snv9327', 'en', 1, 'https://ror.org/05snv9327 Gandhara University گاندھارا ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(115023, 'https://ror.org/04fcaga30', 'en', 1, 'https://ror.org/04fcaga30 Jefferson College'),
(115024, 'https://ror.org/05cz70a34', 'en', 1, 'https://ror.org/05cz70a34 Max Perutz Labs'),
(115025, 'https://ror.org/03kbxr932', 'de', 1, 'https://ror.org/03kbxr932 Schlosspark-Klinik'),
(115026, 'https://ror.org/00kneq391', 'en', 1, 'https://ror.org/00kneq391 Laboratory Orofacial Pathologies, Imaging and Biotherapies Pathologie, Imagerie et BiothƩrapies orofaciales'),
(115027, 'https://ror.org/0449khs19', 'fr', 1, 'https://ror.org/0449khs19 Centre de Recherche en Ɖconomie et Statistique'),
(115028, 'https://ror.org/03hpjw438', 'en', 1, 'https://ror.org/03hpjw438 Praboromarajchanok Institute Ministry of Public Health ąøŖąø–ąø²ąøšąø±ąø™ąøžąø£ąø°ąøšąø£ąø”ąø£ąø²ąøŠąøŠąø™ąø'),
(115029, 'https://ror.org/02d5bc995', 'pt', 1, 'https://ror.org/02d5bc995 Instituto da Visão Vision Institute'),
(115030, 'https://ror.org/01xbp4f63', 'en', 1, 'https://ror.org/01xbp4f63 Botkin Hospital Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° имени Š”. П. Боткина'),
(115031, 'https://ror.org/04av83c71', 'fr', 1, 'https://ror.org/04av83c71 Biologie et Ecologie des EcosystĆØmes Marins Profonds'),
(115032, 'https://ror.org/02zc3d503', 'en', 1, 'https://ror.org/02zc3d503 AJER Publishing'),
(115033, 'https://ror.org/02049v059', 'hr', 1, 'https://ror.org/02049v059 Opća bolnica Karlovac'),
(115034, 'https://ror.org/03s6jbx05', 'pt', 1, 'https://ror.org/03s6jbx05 Medfarma EdiƧƵes MƩdicas (Portugal) Medfarma Medical Editions'),
(115035, 'https://ror.org/04e8pda19', 'fr', 1, 'https://ror.org/04e8pda19 Chimie organique, Bioorganique, RƩactivitƩ et Analyse Laboratoire COBRA'),
(115036, 'https://ror.org/00eq2sn47', 'en', 1, 'https://ror.org/00eq2sn47 Community Health Systems - Woodland Heights Medical Center'),
(115037, 'https://ror.org/006xbp572', 'en', 1, 'https://ror.org/006xbp572 College of Law Juridiskā koledža'),
(115038, 'https://ror.org/03g5d6c96', 'en', 1, 'https://ror.org/03g5d6c96 Cancer Council Queensland'),
(115039, 'https://ror.org/04fhvpc68', 'fr', 1, 'https://ror.org/04fhvpc68 DƩpartement de Pharmacochimie MolƩculaire'),
(115040, 'https://ror.org/03tv0az53', 'en', 1, 'https://ror.org/03tv0az53 Fairfield General Hospital'),
(115041, 'https://ror.org/023spgs14', 'en', 1, 'https://ror.org/023spgs14 Moscow Regional Research Institute of Obstetrics and Gynecology Московский областной ŠŠ˜Š˜ Š°ŠŗŃƒŃˆŠµŃ€ŃŃ‚Š²Š° Šø гинекологии'),
(115042, 'https://ror.org/019yg0716', 'pt', 1, 'https://ror.org/019yg0716 ISPA - Instituto UniversitƔrio');
INSERT INTO `rors` VALUES
(115043, 'https://ror.org/02r946p38', 'en', 1, 'https://ror.org/02r946p38 Kagoshima City Hospital 鹿児島市立病院'),
(115044, 'https://ror.org/02hr3zx73', 'fr', 0, 'https://ror.org/02hr3zx73 Biologie des Plantes et Innovation'),
(115045, 'https://ror.org/01n09qc98', 'en', 1, 'https://ror.org/01n09qc98 Fukui National College of Technology ē¦äŗ•å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(115046, 'https://ror.org/00rh71z37', 'fr', 1, 'https://ror.org/00rh71z37 Laboratoire de ChƩmo-biologie synthƩtique et thƩrapeutique'),
(115047, 'https://ror.org/01ngney22', 'pt', 1, 'https://ror.org/01ngney22 Friday CiĆŖncia e Engenharia do Lazer (Portugal) Friday Leisure Science and Engineering'),
(115048, 'https://ror.org/0411njj18', 'en', 1, 'https://ror.org/0411njj18 Ragas Dental College & Hospital'),
(115049, 'https://ror.org/05jqqyf21', 'en', 1, 'https://ror.org/05jqqyf21 Samen NZ Ltd Samen NZ Ltd (New Zealand)'),
(115050, 'https://ror.org/04dv4he91', 'fr', 1, 'https://ror.org/04dv4he91 Laboratoire d''Informatique en Images et SystĆØmes d''Information'),
(115051, 'https://ror.org/017p6sq53', 'fr', 1, 'https://ror.org/017p6sq53 Matrice Extracellulaire et Dynamique Cellulaire MEDyC'),
(115052, 'https://ror.org/02wedp412', 'en', 1, 'https://ror.org/02wedp412 UK Dementia Research Institute'),
(115053, 'https://ror.org/01x5dfh38', 'en', 1, 'https://ror.org/01x5dfh38 Zhongshan People''s Hospital äø­å±±åø‚äŗŗę°‘åŒ»é™¢'),
(115054, 'https://ror.org/00v89p354', 'en', 1, 'https://ror.org/00v89p354 SveučiliÅ”te u Mostaru University of Mostar Univerzitet u Mostaru Универзитет у ŠœŠ¾ŃŃ‚Š°Ń€Ńƒ'),
(115055, 'https://ror.org/05ax2x637', 'fr', 1, 'https://ror.org/05ax2x637 Center for Research on Palaeontology - Paris Centre de recherche en palƩontologie - Paris'),
(115056, 'https://ror.org/01pfter31', 'fr', 1, 'https://ror.org/01pfter31 Laboratoire Ɖnergies et MĆ©canique ThĆ©orique et AppliquĆ©e Laboratory of Energies Theoretical and Applied Mechanics'),
(115057, 'https://ror.org/00qvkm315', 'en', 1, 'https://ror.org/00qvkm315 Saint Camillus International University of Health and Medical Sciences'),
(115058, 'https://ror.org/05jamyt63', 'en', 1, 'https://ror.org/05jamyt63 Institute for Women''s Policy Research'),
(115059, 'https://ror.org/04ccaah57', 'pt', 1, 'https://ror.org/04ccaah57 Centro Hospitalar Póvoa de Varzim Vila do Conde EPE Unidade de Vila do Conde'),
(115060, 'https://ror.org/0059y1582', 'en', 1, 'https://ror.org/0059y1582 World Wide Web Consortium'),
(115061, 'https://ror.org/03jqm0b89', 'fr', 1, 'https://ror.org/03jqm0b89 Centre AndrƩ-Chastel'),
(115062, 'https://ror.org/04gg0js59', 'fr', 1, 'https://ror.org/04gg0js59 CERAM - Centre d''Ɖtudes et de Recherches Antiques et MĆ©diĆ©vales Centre d''Ɖtudes et de Recherches Antiques et MĆ©diĆ©vales'),
(115063, 'https://ror.org/00bq8vv83', 'fr', 1, 'https://ror.org/00bq8vv83 IMT Mines Albi'),
(115064, 'https://ror.org/00t0ht588', 'en', 1, 'https://ror.org/00t0ht588 All India Institute of Medical Sciences, Deoghar'),
(115065, 'https://ror.org/02dyp7q04', 'ca', 1, 'https://ror.org/02dyp7q04 Catalan Ornithological Institute Institut CatalƠ d''Ornitologia Instituto CatalƔn de Ornitologƭa'),
(115066, 'https://ror.org/04n07f274', 'en', 1, 'https://ror.org/04n07f274 Materials Science in Extreme Environments University Research Alliance'),
(115067, 'https://ror.org/02cf89s21', 'en', 1, 'https://ror.org/02cf89s21 Orthopaedic Hospital Speising OrthopƤdisches Spital Speising'),
(115068, 'https://ror.org/005xwqf23', 'en', 1, 'https://ror.org/005xwqf23 Carma International (Portugal)'),
(115069, 'https://ror.org/022d6m891', 'en', 1, 'https://ror.org/022d6m891 Central Scientific Research Institute of Traumatology and Orthopedics Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Травматологии Šø ŠžŃ€Ń‚Š¾ŠæŠµŠ“ŠøŠø имени Š.Š. ŠŸŃ€ŠøŠ¾Ń€Š¾Š²Š°'),
(115070, 'https://ror.org/0279d5115', 'en', 1, 'https://ror.org/0279d5115 Centre De Recherche Informatique De MontrƩal Computer Research Institute of MontrƩal'),
(115071, 'https://ror.org/04fr7pd94', 'fr', 1, 'https://ror.org/04fr7pd94 Institut de Chimie SƩparative de Marcoule'),
(115072, 'https://ror.org/05hvrsg85', 'en', 1, 'https://ror.org/05hvrsg85 Food and Drug Administration'),
(115073, 'https://ror.org/00pmdbw58', 'fr', 1, 'https://ror.org/00pmdbw58 Equipe de recherche Louis Josserand'),
(115074, 'https://ror.org/05pmkpe42', 'fr', 1, 'https://ror.org/05pmkpe42 Ɖcole SupĆ©rieure de la SĆ©curitĆ© Sociale'),
(115075, 'https://ror.org/00vdhsr35', 'en', 1, 'https://ror.org/00vdhsr35 Marywood University'),
(115076, 'https://ror.org/02vnq7240', 'fr', 1, 'https://ror.org/02vnq7240 Laboratoire Magmas et Volcans'),
(115077, 'https://ror.org/05g8t6n77', 'en', 1, 'https://ror.org/05g8t6n77 Health Cluster Portugal Translational and Clinical Research Infrastructures Specialisation Platform'),
(115078, 'https://ror.org/00jaard37', 'en', 1, 'https://ror.org/00jaard37 Nagaoka National College of Technology é•·å²”å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(115079, 'https://ror.org/01fh23w56', 'en', 1, 'https://ror.org/01fh23w56 Chicago Institute for Psychoanalysis'),
(115080, 'https://ror.org/00twjye57', 'en', 1, 'https://ror.org/00twjye57 Rochdale Infirmary'),
(115081, 'https://ror.org/001r32c80', 'fr', 1, 'https://ror.org/001r32c80 Biologie du chloroplaste et perception de la lumiĆØre chez les micro-algues'),
(115082, 'https://ror.org/01pahbn61', 'en', 1, 'https://ror.org/01pahbn61 Sichuan Animal Science Academy å››å·ēœē•œē‰§ē§‘å­¦ē ”ē©¶é™¢'),
(115083, 'https://ror.org/04ghwjq45', 'en', 1, 'https://ror.org/04ghwjq45 BSIM2 Biomolecular Simulations (Portugal)'),
(115084, 'https://ror.org/02f5g3528', 'en', 1, 'https://ror.org/02f5g3528 Infectious Diseases Research Collaboration'),
(115085, 'https://ror.org/02dm5fj10', 'de', 1, 'https://ror.org/02dm5fj10 Forschungszentrum Neu-Ulrichstein'),
(115086, 'https://ror.org/04s6f1186', 'fr', 1, 'https://ror.org/04s6f1186 Laboratoire LigƩrien de Linguistique'),
(115087, 'https://ror.org/0165fyq28', 'en', 1, 'https://ror.org/0165fyq28 Community Health Systems - Merit Health Wesley'),
(115088, 'https://ror.org/02hhwgd43', 'en', 1, 'https://ror.org/02hhwgd43 SveučiliÅ”te u Sarajevu University of Sarajevo Univerzitet u Sarajevu Универзитет у Š”Š°Ń€Š°Ń˜ŠµŠ²Ńƒ'),
(115089, 'https://ror.org/006jv0w93', 'fr', 1, 'https://ror.org/006jv0w93 Centre de Recherches Interdisciplinaires sur les Mondes IbƩro-amƩricains Contemporains'),
(115090, 'https://ror.org/05r5y6641', 'fr', 1, 'https://ror.org/05r5y6641 Laboratoire d’OcĆ©anographie de Villefranche Villefranche Oceanographic Laboratory'),
(115091, 'https://ror.org/05ntgv723', 'fr', 1, 'https://ror.org/05ntgv723 Ɖquipe LittĆ©rature et Culture italiennes'),
(115092, 'https://ror.org/03ajyhp73', 'es', 1, 'https://ror.org/03ajyhp73 Tecnológico de Estudios Superiores del Oriente del Estado de México'),
(115093, 'https://ror.org/03nr3p279', 'fr', 1, 'https://ror.org/03nr3p279 REGARDS Recherches en Ɖconomie Gestion AgroRessources DurabilitĆ© SantĆ©'),
(115094, 'https://ror.org/008z17697', 'pt', 1, 'https://ror.org/008z17697 Associação para a Inovação e Empreendedorismo de Lisboa'),
(115095, 'https://ror.org/001yqrb02', 'de', 1, 'https://ror.org/001yqrb02 Hochschule Bremerhaven University of Applied Sciences Bremerhaven'),
(115096, 'https://ror.org/03ge1nb22', 'en', 1, 'https://ror.org/03ge1nb22 Danish Ministry of Higher Education and Science Uddannelses- og Forskningsministeriet'),
(115097, 'https://ror.org/00t7axd27', 'en', 1, 'https://ror.org/00t7axd27 UCSD-CNRS Joint Research Chemistry Laboratory'),
(115098, 'https://ror.org/02qcscp23', 'en', 1, 'https://ror.org/02qcscp23 Kensington Health'),
(115099, 'https://ror.org/02y9krv25', 'pt', 1, 'https://ror.org/02y9krv25 Centro de Investigacao e Desenvolvimento sobre Direito e Sociedade'),
(115100, 'https://ror.org/00791c793', 'id', 1, 'https://ror.org/00791c793 Universitas Persada Indonesia Yayasan Administrasi Indonesia'),
(115101, 'https://ror.org/007xqmx73', 'fr', 1, 'https://ror.org/007xqmx73 ArchĆ©ologie et Histoire Ancienne : MĆ©diterranĆ©e – Europe'),
(115102, 'https://ror.org/04nj3w743', 'en', 1, 'https://ror.org/04nj3w743 Deutsch-Kasachische UniversitƤt Kazakh German University Kazakhstansko-Nemetskiy Universitet ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾-ŠŠµŠ¼ŠµŃ†ŠŗŠ¾Š³Š¾ Университета'),
(115103, 'https://ror.org/05cbg5d14', 'id', 1, 'https://ror.org/05cbg5d14 Institut Teknologi Budi Utomo'),
(115104, 'https://ror.org/01fnz6z30', 'id', 1, 'https://ror.org/01fnz6z30 Universitas Islam Jember'),
(115105, 'https://ror.org/0244fmj21', 'en', 1, 'https://ror.org/0244fmj21 ASM International'),
(115106, 'https://ror.org/03thp2a78', 'pt', 1, 'https://ror.org/03thp2a78 Secretaria de Ciência, Tecnologia e Inovação e do Complexo EconÓmico-Industrial da Saúde'),
(115107, 'https://ror.org/016r2hq43', 'fr', 1, 'https://ror.org/016r2hq43 Laboratoire de Chimie Physique'),
(115108, 'https://ror.org/02qmz8r55', 'pt', 1, 'https://ror.org/02qmz8r55 Instituto Pensi'),
(115109, 'https://ror.org/05v3hkt95', 'en', 1, 'https://ror.org/05v3hkt95 Indian Institute of Management Visakhapatnam ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤µą¤æą¤¶ą¤¾ą¤–ą¤Ŗą¤Ÿą„ą¤Øą¤®'),
(115110, 'https://ror.org/02t4dxm49', 'en', 1, 'https://ror.org/02t4dxm49 Davids Samling The David Collection'),
(115111, 'https://ror.org/003a79y48', 'en', 1, 'https://ror.org/003a79y48 Perm State Medical Academy ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115112, 'https://ror.org/0585hkk81', 'fr', 1, 'https://ror.org/0585hkk81 Centre de Recherche et de Documentation sur les AmƩriques'),
(115113, 'https://ror.org/05jv2yg47', 'en', 1, 'https://ror.org/05jv2yg47 Moscow State Technological University Московский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Технологический Университет'),
(115114, 'https://ror.org/05pv30e80', 'no', 1, 'https://ror.org/05pv30e80 NTNU Samfunnsforskning NTNU Social Research'),
(115115, 'https://ror.org/02285qe65', 'id', 1, 'https://ror.org/02285qe65 Institut Teknologi Padang'),
(115116, 'https://ror.org/0514zp273', 'en', 1, 'https://ror.org/0514zp273 Community Health Systems - Tennova - Jefferson Memorial Hospital'),
(115117, 'https://ror.org/01rqa6755', 'en', 1, 'https://ror.org/01rqa6755 American Federation of Teachers'),
(115118, 'https://ror.org/01z4sr004', 'en', 1, 'https://ror.org/01z4sr004 C3B Clinical Research (Portugal)'),
(115119, 'https://ror.org/04f5rw142', 'fr', 1, 'https://ror.org/04f5rw142 Laboratoire de MƩcanique, Multiphysique, MultiƩchelle'),
(115120, 'https://ror.org/01kwwh635', 'es', 1, 'https://ror.org/01kwwh635 Instituto de Desarrollo Tecnológico para la Industria Química'),
(115121, 'https://ror.org/03x0g1010', 'fr', 1, 'https://ror.org/03x0g1010 Laboratoire de gƩnie civil et gƩnie mƩcanique'),
(115122, 'https://ror.org/017vyhs10', 'en', 1, 'https://ror.org/017vyhs10 Moorea Coral Reef Long Term Ecological Research'),
(115123, 'https://ror.org/03cet5v54', 'pt', 1, 'https://ror.org/03cet5v54 Instituto de Investigação e Tecnologia da Agronomia e Meio Ambiente'),
(115124, 'https://ror.org/05mfff588', 'en', 1, 'https://ror.org/05mfff588 Armauer Hansen Research Institute'),
(115125, 'https://ror.org/035x0zb38', 'en', 1, 'https://ror.org/035x0zb38 Federal Scientific Center for Vegetable Growing Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ селекции Šø семеновоГства овощных ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€'),
(115126, 'https://ror.org/021hb4c69', 'fr', 1, 'https://ror.org/021hb4c69 Centre de Recherche et d''Ɖtudes Germaniques'),
(115127, 'https://ror.org/059jx7q58', 'fr', 1, 'https://ror.org/059jx7q58 Fluid Dynamics Laboratory Laboratoire de Dynamique des Fluides'),
(115128, 'https://ror.org/03capj968', 'fr', 1, 'https://ror.org/03capj968 Institut de Recherche en CancƩrologie de Montpellier Institute of Cancer Research of Montpellier'),
(115129, 'https://ror.org/04ceg1205', 'fr', 1, 'https://ror.org/04ceg1205 Center for Magnetic Resonance in Biology and Medicine Centre de RƩsonance MagnƩtique Biologique et MƩdicale'),
(115130, 'https://ror.org/00qxmfv78', 'it', 1, 'https://ror.org/00qxmfv78 Museo delle Scienze'),
(115131, 'https://ror.org/04knhza04', 'en', 1, 'https://ror.org/04knhza04 KCMC Kilimanjaro Christian Medical Centre'),
(115132, 'https://ror.org/04qcpkd70', 'en', 1, 'https://ror.org/04qcpkd70 Institute of Bioinformatics and Applied Biotechnology'),
(115133, 'https://ror.org/05vfhev56', 'en', 1, 'https://ror.org/05vfhev56 Macmillan Cancer Support'),
(115134, 'https://ror.org/00vn23s59', 'es', 1, 'https://ror.org/00vn23s59 Instituto de Estudios de Ciencias de la Salud de Castilla y León'),
(115135, 'https://ror.org/05ftynq40', 'pt', 1, 'https://ror.org/05ftynq40 Hospital Distrital Caldas da Rainha'),
(115136, 'https://ror.org/0271asj38', 'en', 0, 'https://ror.org/0271asj38 FondĆŗireacht EolaĆ­ochta Ɖireann Science Foundation Ireland'),
(115137, 'https://ror.org/03s1ptp93', 'en', 1, 'https://ror.org/03s1ptp93 Willows Veterinary Centre and Referral Service'),
(115138, 'https://ror.org/03tnagf06', 'no', 1, 'https://ror.org/03tnagf06 Great Norwegian Encyclopedia Store norske leksikon'),
(115139, 'https://ror.org/042h2y225', 'fr', 1, 'https://ror.org/042h2y225 Institut de MathƩmatiques de Marseille'),
(115140, 'https://ror.org/02yqqv993', 'en', 1, 'https://ror.org/02yqqv993 Sechenov University ŠŸŠµŃ€Š²Ń‹Š¹ московский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. М. Деченова'),
(115141, 'https://ror.org/0425pdj49', 'en', 1, 'https://ror.org/0425pdj49 National Institute of Cardiovascular Diseases'),
(115142, 'https://ror.org/02s6m8n84', 'fr', 1, 'https://ror.org/02s6m8n84 Institut de Recherche de Chimie Paris'),
(115143, 'https://ror.org/04bg5j190', 'fr', 1, 'https://ror.org/04bg5j190 Centre de ThƩorie et Analyse du Droit'),
(115144, 'https://ror.org/05w67p097', 'no_lang_code', 1, 'https://ror.org/05w67p097 Advanced Engineering (Czechia)'),
(115145, 'https://ror.org/03446fm19', 'en', 1, 'https://ror.org/03446fm19 OrthoCarolina'),
(115146, 'https://ror.org/02rgrnk13', 'en', 1, 'https://ror.org/02rgrnk13 Algarve Biomedical Center'),
(115147, 'https://ror.org/03c5e1619', 'en', 1, 'https://ror.org/03c5e1619 Yasuda Women''s University 安田儳子大学'),
(115148, 'https://ror.org/02gaz5v17', 'pt', 1, 'https://ror.org/02gaz5v17 Toledo Prudente Centro UniversitƔrio'),
(115149, 'https://ror.org/03dhnnd96', 'en', 1, 'https://ror.org/03dhnnd96 Community Health Systems - Mat-Su Regional Medical Center'),
(115150, 'https://ror.org/03n5w2v49', 'id', 1, 'https://ror.org/03n5w2v49 Universitas Nusa Bangsa'),
(115151, 'https://ror.org/02ken4f88', 'en', 1, 'https://ror.org/02ken4f88 Vignana Jyothi Institute of Management'),
(115152, 'https://ror.org/03qc8vh97', 'en', 1, 'https://ror.org/03qc8vh97 Universidade de TrƔs-os-Montes e Alto Douro University of TrƔs-os-Montes and Alto Douro'),
(115153, 'https://ror.org/0510ctm72', 'es', 1, 'https://ror.org/0510ctm72 Centro de Investigación de la Caña de Azúcar de Colombia'),
(115154, 'https://ror.org/051hckb40', 'fr', 1, 'https://ror.org/051hckb40 Ɖcole Nationale d''Agriculture de MeknĆØs المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للفلاحة ŲØŁ…ŁƒŁ†Ų§Ų³'),
(115155, 'https://ror.org/02cggsh80', 'pt', 1, 'https://ror.org/02cggsh80 Centro Interdisciplinar de Estudos Económicos'),
(115156, 'https://ror.org/00znqwq11', 'en', 1, 'https://ror.org/00znqwq11 VA San Diego Healthcare System'),
(115157, 'https://ror.org/04emv5a43', 'en', 1, 'https://ror.org/04emv5a43 Tokyo Metropolitan Geriatric Hospital ę±äŗ¬éƒ½å„åŗ·é•·åÆæåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(115158, 'https://ror.org/0266c5p67', 'fr', 1, 'https://ror.org/0266c5p67 Immunologie intƩgrative des tumeurs et immunothƩrapie du cancer'),
(115159, 'https://ror.org/052cnt662', 'fr', 1, 'https://ror.org/052cnt662 Ɖtude des Structures, des Processus d’Adaptation et des Changements de l’Espace'),
(115160, 'https://ror.org/02w2krx65', 'en', 1, 'https://ror.org/02w2krx65 Logan & Beaudesert Health Service'),
(115161, 'https://ror.org/03k8wwr88', 'en', 1, 'https://ror.org/03k8wwr88 CCN University of Science and Technology ą¦øą¦æą¦øą¦æą¦ą¦Ø ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą§Ÿ'),
(115162, 'https://ror.org/00nrbzg90', 'fr', 1, 'https://ror.org/00nrbzg90 Laboratoire Univers et Particules de Montpellier Montpellier Universe and Particles Laboratory'),
(115163, 'https://ror.org/05fyyyx53', 'pt', 1, 'https://ror.org/05fyyyx53 Centro de Estudos de Teatro'),
(115164, 'https://ror.org/00e4fz088', 'fr', 1, 'https://ror.org/00e4fz088 Institut de recherches philosophiques'),
(115165, 'https://ror.org/05aav2h42', 'en', 1, 'https://ror.org/05aav2h42 Georgian National Academy of Sciences ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Š“Ń€ŃƒŠ·ŠøŠø ÕŽÖ€Õ”Õ½ÕæÕ”Õ¶Õ« Ō³Õ«ÕæÕøÖ‚Õ©ÕµÕøÖ‚Õ¶Õ¶Õ„Ö€Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ”ÕÆÕ”Õ¤Õ„Õ“Õ«Õ” įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒįƒ—įƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(115166, 'https://ror.org/05wwcw481', 'en', 1, 'https://ror.org/05wwcw481 Bournemouth University'),
(115167, 'https://ror.org/002ty1h48', 'fr', 1, 'https://ror.org/002ty1h48 Laboratoire pour l''Utilisation des Lasers Intenses'),
(115168, 'https://ror.org/01y414495', 'en', 1, 'https://ror.org/01y414495 Paris School of Business'),
(115169, 'https://ror.org/02ptn8z56', 'fr', 1, 'https://ror.org/02ptn8z56 National School of Architecture of Versailles Ɖcole Nationale SupĆ©rieure d''Architecture de Versailles'),
(115170, 'https://ror.org/029b7h395', 'en', 1, 'https://ror.org/029b7h395 Directorate for Mathematical & Physical Sciences'),
(115171, 'https://ror.org/04f8gc808', 'no_lang_code', 1, 'https://ror.org/04f8gc808 Ganga Hospital'),
(115172, 'https://ror.org/026ctmx57', 'no_lang_code', 1, 'https://ror.org/026ctmx57 Institut de Soudure'),
(115173, 'https://ror.org/009m1qd62', 'pl', 1, 'https://ror.org/009m1qd62 Stowarzyszenie Demeter Polska'),
(115174, 'https://ror.org/0513dj221', 'fr', 1, 'https://ror.org/0513dj221 Ecole SupĆ©rieure Polytechnique d''Antananarivo, UniversitĆ© d''Antananarivo Ɖcole supĆ©rieure polytechnique d''Antananarivo'),
(115175, 'https://ror.org/013ge8k52', 'pt', 1, 'https://ror.org/013ge8k52 Biotechnology Centre of Azores Centro de Biotecnologia dos AƧores'),
(115176, 'https://ror.org/04bknqa63', 'en', 1, 'https://ror.org/04bknqa63 St. Francis Institute of Technology'),
(115177, 'https://ror.org/04frgwq67', 'en', 1, 'https://ror.org/04frgwq67 Institute of Aviation Medicine'),
(115178, 'https://ror.org/00x9zs206', 'en', 1, 'https://ror.org/00x9zs206 Velammal Medical College Hospital and Research Institute'),
(115179, 'https://ror.org/04q9tew83', 'en', 1, 'https://ror.org/04q9tew83 Henry M. Jackson Foundation'),
(115180, 'https://ror.org/01sqdef20', 'en', 1, 'https://ror.org/01sqdef20 Centre for Eye Research Australia'),
(115181, 'https://ror.org/03mqhy020', 'es', 1, 'https://ror.org/03mqhy020 Fundación FAUTAPO'),
(115182, 'https://ror.org/019aa9n69', 'en', 1, 'https://ror.org/019aa9n69 Scottish Longitudinal Study Development & Support Unit'),
(115183, 'https://ror.org/04w00jq52', 'pt', 1, 'https://ror.org/04w00jq52 Global ISP (Portugal) Global ISP Sole Proprietorship'),
(115184, 'https://ror.org/059bevx75', 'pt', 1, 'https://ror.org/059bevx75 Sonangol Sonangol, EP'),
(115185, 'https://ror.org/038tkkk06', 'en', 1, 'https://ror.org/038tkkk06 University of the Gambia'),
(115186, 'https://ror.org/00tr7ny14', 'en', 1, 'https://ror.org/00tr7ny14 Mental Health Research Canada Recherche en SantƩ Mentale Canada'),
(115187, 'https://ror.org/04qmhg184', 'en', 1, 'https://ror.org/04qmhg184 University College of Professional Education Wyższa Szkoła Kształcenia Zawodowego'),
(115188, 'https://ror.org/055rtmw65', 'id', 1, 'https://ror.org/055rtmw65 Universitas Baiturrahmah'),
(115189, 'https://ror.org/04t32gd51', 'en', 1, 'https://ror.org/04t32gd51 Animal Welfare Institute'),
(115190, 'https://ror.org/005e8fd26', 'en', 0, 'https://ror.org/005e8fd26 Neurophotonics Laboratory'),
(115191, 'https://ror.org/01xz37v17', 'pt', 1, 'https://ror.org/01xz37v17 Centro de SaĆŗde Figueira da Foz Buarcos Centro de SaĆŗde Figueira da Foz Buarcos (Portugal) Figueira da Foz Buarcos Health Centre'),
(115192, 'https://ror.org/01qz8r868', 'es', 1, 'https://ror.org/01qz8r868 Fundación Corazón de Jesús'),
(115193, 'https://ror.org/00anqep87', 'en', 1, 'https://ror.org/00anqep87 Center for Mind and Culture'),
(115194, 'https://ror.org/036eyqz05', 'en', 1, 'https://ror.org/036eyqz05 Islamic Hospital المستؓفى Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(115195, 'https://ror.org/01b05bn14', 'no_lang_code', 1, 'https://ror.org/01b05bn14 Ramsay Health Care (Australia)'),
(115196, 'https://ror.org/03javpk94', 'pt', 1, 'https://ror.org/03javpk94 Jaba Recordati (Portugal)'),
(115197, 'https://ror.org/049wzjz61', 'pt', 1, 'https://ror.org/049wzjz61 CRIVARQUE Estudos de Impacto e Trabalhos Geo-Arqueológicos (Portugal) CRIVARQUE Impact Studies and Geo-Archaeological Works'),
(115198, 'https://ror.org/01wvtht83', 'en', 1, 'https://ror.org/01wvtht83 Russian Children''s Clinical Hospital'),
(115199, 'https://ror.org/05v0fms67', 'fr', 1, 'https://ror.org/05v0fms67 Laboratoire Information GƩnomique et Structurale'),
(115200, 'https://ror.org/00ftahb81', 'pt', 1, 'https://ror.org/00ftahb81 Cooperativa de Ensino Superior ArtĆ­stico do Porto'),
(115201, 'https://ror.org/027rkpb34', 'en', 1, 'https://ror.org/027rkpb34 Salford Royal Hospital'),
(115202, 'https://ror.org/02p1s8a61', 'fr', 1, 'https://ror.org/02p1s8a61 Centre de recherche et de documentation europƩennes et internationales'),
(115203, 'https://ror.org/02x9ch087', 'en', 1, 'https://ror.org/02x9ch087 Lahore University of Biological and Applied Sciences'),
(115204, 'https://ror.org/0497rkw71', 'pt', 0, 'https://ror.org/0497rkw71 Centro de Estudos de ReligiƵes e Culturas Cardeal Hƶffner'),
(115205, 'https://ror.org/009nscf91', 'fr', 1, 'https://ror.org/009nscf91 Centre Hospitalier Universitaire Mohammed VI'),
(115206, 'https://ror.org/03wcn8b34', 'pt', 1, 'https://ror.org/03wcn8b34 CATƓLICA-LISBON Research Unit in Business and Economics Unidade de Investigação em GestĆ£o e Economia'),
(115207, 'https://ror.org/02qqx5a95', 'en', 1, 'https://ror.org/02qqx5a95 Russian Scientific Center of Radiology and Surgical Technologies Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр раГиологии Šø Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŃ… технологий'),
(115208, 'https://ror.org/05x7wz523', 'en', 1, 'https://ror.org/05x7wz523 Statistics Sweden Statistiska CentralbyrƄn'),
(115209, 'https://ror.org/00qm2vr07', 'en', 1, 'https://ror.org/00qm2vr07 Nakamura Gakuen University äø­ę‘å­¦åœ’å¤§å­¦'),
(115210, 'https://ror.org/04wcpjy25', 'en', 1, 'https://ror.org/04wcpjy25 Hokuriku University åŒ—é™øå¤§å­¦'),
(115211, 'https://ror.org/05tqtd486', 'en', 0, 'https://ror.org/05tqtd486 Canterbury District Health Board'),
(115212, 'https://ror.org/02wsvah33', 'de', 1, 'https://ror.org/02wsvah33 Konrad Krieger Stiftung Konrad-Krieger-Stiftung'),
(115213, 'https://ror.org/04v7hvq31', 'en', 1, 'https://ror.org/04v7hvq31 Scripps Institution of Oceanography'),
(115214, 'https://ror.org/02dsvwm21', 'en', 1, 'https://ror.org/02dsvwm21 European Idiopathic Pulmonary Fibrosis and Related Disorders Federation'),
(115215, 'https://ror.org/01jvwvd85', 'en', 1, 'https://ror.org/01jvwvd85 Health New Zealand Te Whatu Ora'),
(115216, 'https://ror.org/04yx2rq03', 'fr', 1, 'https://ror.org/04yx2rq03 Centre Thucydide - Analyse et Recherche en Relations Internationales'),
(115217, 'https://ror.org/01zkhn749', 'en', 1, 'https://ror.org/01zkhn749 St Christopher''s Hospice'),
(115218, 'https://ror.org/03fqv0k52', 'en', 0, 'https://ror.org/03fqv0k52 CPH Pharma (Portugal)'),
(115219, 'https://ror.org/04nrhwg12', 'fr', 1, 'https://ror.org/04nrhwg12 Laboratoire de MathƩmatiques de BesanƧon'),
(115220, 'https://ror.org/05xdgzx85', 'pt', 1, 'https://ror.org/05xdgzx85 Plataforma Portuguesa das Organizações Não-Governamentais para o Desenvolvimento'),
(115221, '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'),
(115222, 'https://ror.org/01cah1n37', 'fr', 1, 'https://ror.org/01cah1n37 Institut des Sciences de l''Evolution de Montpellier'),
(115223, 'https://ror.org/017e99q89', 'it', 1, 'https://ror.org/017e99q89 Provincia Autonoma di Trento'),
(115224, 'https://ror.org/03gc71b86', 'en', 1, 'https://ror.org/03gc71b86 Swedish Collegium for Advanced Study'),
(115225, 'https://ror.org/05q78k270', 'en', 1, 'https://ror.org/05q78k270 Baltic International Centre for Economic Policy Studies Baltijas Starptautiskais Ekonomikas Politikas Studiju Centrs'),
(115226, 'https://ror.org/006xsx833', 'nl', 1, 'https://ror.org/006xsx833 Geneeskundige en Gezondheidsdienst'),
(115227, 'https://ror.org/02erddr56', 'fr', 1, 'https://ror.org/02erddr56 Laboratoire Albert Fert'),
(115228, 'https://ror.org/04gs1am02', 'id', 1, 'https://ror.org/04gs1am02 An Nasher University Universitas An Nasher'),
(115229, 'https://ror.org/00msr1d72', 'no_lang_code', 1, 'https://ror.org/00msr1d72 Swisens AG Swisens AG (Switzerland)'),
(115230, 'https://ror.org/043n4fm24', 'fr', 1, 'https://ror.org/043n4fm24 Laboratoire Paul PainlevƩ'),
(115231, 'https://ror.org/05bxjx840', 'en', 1, 'https://ror.org/05bxjx840 Baylor Genetics'),
(115232, 'https://ror.org/0035nwv60', 'pt', 1, 'https://ror.org/0035nwv60 Centro de SaĆŗde de Rio de Mouro (Portugal) Health Centre of Rio de Mouro'),
(115233, 'https://ror.org/02jheyr43', 'no_lang_code', 1, 'https://ror.org/02jheyr43 Hefei General Machinery Research Institute (China) åˆč‚„é€šē”Øęœŗę¢°ē ”ē©¶é™¢'),
(115234, 'https://ror.org/0531dpd42', 'en', 1, 'https://ror.org/0531dpd42 Bihar Agricultural University बिहार ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(115235, 'https://ror.org/036x5ad56', 'en', 1, 'https://ror.org/036x5ad56 University of Luxembourg UniversitƤt Luxemburg UniversitƩ du Luxembourg'),
(115236, 'https://ror.org/008k2dm27', 'it', 1, 'https://ror.org/008k2dm27 Molise Region Regione Molise'),
(115237, 'https://ror.org/056swcy54', 'fr', 1, 'https://ror.org/056swcy54 Centre for Ethnology and Comparative Sociology Laboratoire d''ethnologie et de sociologie comparative'),
(115238, 'https://ror.org/02mph9k76', 'fr', 1, 'https://ror.org/02mph9k76 Laboratoire de Physique ThƩorique et Hautes Energies'),
(115239, 'https://ror.org/00j1xwp39', 'en', 0, 'https://ror.org/00j1xwp39 Copenhagen School of Design and Technology KĆøbenhavns Erhvervsakademi'),
(115240, 'https://ror.org/04g1bxy82', 'en', 1, 'https://ror.org/04g1bxy82 Oromia State University Yuunivarsiitii Naannoo Oromiyaa į‹ØįŠ¦įˆ®įˆšį‹« įŠ­įˆįˆ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(115241, 'https://ror.org/039ryp971', 'en', 1, 'https://ror.org/039ryp971 Grodno State Medical University ГроГзенскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃƒŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ ГроГненский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115242, 'https://ror.org/01xqg1464', 'en', 1, 'https://ror.org/01xqg1464 Institution of Engineering and Technology'),
(115243, 'https://ror.org/049h8es06', 'it', 1, 'https://ror.org/049h8es06 Regione Basilicata'),
(115244, 'https://ror.org/02910d597', 'fr', 1, 'https://ror.org/02910d597 Centre Lasers Intenses et Applications'),
(115245, 'https://ror.org/00cd1nz59', 'pt', 1, 'https://ror.org/00cd1nz59 Arquitectos Sem Fronteiras Portugal'),
(115246, 'https://ror.org/00gy9rx06', 'fr', 1, 'https://ror.org/00gy9rx06 Institut des Sciences et Techniques de l''AntiquitƩ'),
(115247, 'https://ror.org/05k0kb696', 'en', 1, 'https://ror.org/05k0kb696 Institute of Management Technology'),
(115248, 'https://ror.org/04qgykh45', 'en', 1, 'https://ror.org/04qgykh45 Omsk State Medical University ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115249, 'https://ror.org/0341kh820', 'en', 1, 'https://ror.org/0341kh820 Janta Vedic College'),
(115250, 'https://ror.org/00g669j87', 'fr', 1, 'https://ror.org/00g669j87 Laboratoire de MathƩmatiques et de leurs Applications Laboratory of Mathematics and their Applications'),
(115251, 'https://ror.org/00tnend30', 'en', 1, 'https://ror.org/00tnend30 Canadian College of Integrative Medicine'),
(115252, 'https://ror.org/00psjjr22', 'es', 1, 'https://ror.org/00psjjr22 Instituto de Estudios CrĆ­ticos en Humanidades'),
(115253, 'https://ror.org/03sr9xs40', 'de', 1, 'https://ror.org/03sr9xs40 Dermatopathologie Friedrichshafen'),
(115254, 'https://ror.org/00rqy9422', 'en', 1, 'https://ror.org/00rqy9422 The University of Queensland'),
(115255, 'https://ror.org/03a872012', 'fr', 1, 'https://ror.org/03a872012 Institut de Recherche Agricole pour le DƩveloppement Institute of Agricultural Research for Development'),
(115256, 'https://ror.org/01chj3z31', 'en', 1, 'https://ror.org/01chj3z31 Associação Médica Brasileira Brazilian Medical Association'),
(115257, 'https://ror.org/05ktpad22', 'fr', 1, 'https://ror.org/05ktpad22 Centre Pierre Naville'),
(115258, 'https://ror.org/04bqtg656', 'en', 1, 'https://ror.org/04bqtg656 Public Works'),
(115259, 'https://ror.org/0247p4w70', 'fr', 1, 'https://ror.org/0247p4w70 Service de Physique de l''Ɖtat CondensĆ©'),
(115260, 'https://ror.org/04ejnhv92', 'no_lang_code', 1, 'https://ror.org/04ejnhv92 Hangzhou Adamerck Pharmlabs Inc. Hangzhou Adamerck Pharmlabs Inc. (China) ę­å·žå„„é»˜åŒ»čÆč‚”ä»½ęœ‰é™å…¬åø'),
(115261, 'https://ror.org/00mng9617', 'en', 1, 'https://ror.org/00mng9617 National Dong Hwa University åœ‹ē«‹ę±čÆå¤§å­ø'),
(115262, 'https://ror.org/01xx2ne27', 'en', 1, 'https://ror.org/01xx2ne27 Department of Virology'),
(115263, 'https://ror.org/030przz70', 'fr', 1, 'https://ror.org/030przz70 Insect Models of Innate Immunity Modèles Insectes de l''Immunité Innée'),
(115264, 'https://ror.org/05xps6m85', 'de', 1, 'https://ror.org/05xps6m85 Diligentia - Stiftung für empirische Forschung Diligentia-Stiftung'),
(115265, 'https://ror.org/03gf02c22', 'en', 1, 'https://ror.org/03gf02c22 Folkwang University of the Arts Folkwang Universität der Künste'),
(115266, 'https://ror.org/00tkf5j20', 'en', 1, 'https://ror.org/00tkf5j20 Community Health Systems - Navarro Regional Hospital'),
(115267, 'https://ror.org/03cybp342', 'en', 1, 'https://ror.org/03cybp342 Media Design School'),
(115268, 'https://ror.org/01v4pc162', 'en', 1, 'https://ror.org/01v4pc162 National Board of Health and Welfare'),
(115269, 'https://ror.org/0549xfv46', 'id', 1, 'https://ror.org/0549xfv46 Sekolah Tinggi Ilmu Ekonomi Pancasetia'),
(115270, 'https://ror.org/02r1e4k30', 'pt', 1, 'https://ror.org/02r1e4k30 Via Hominis'),
(115271, 'https://ror.org/01zb5kv44', 'no_lang_code', 1, 'https://ror.org/01zb5kv44 Rajagiri Hospital'),
(115272, 'https://ror.org/03eaaxm14', 'pt', 1, 'https://ror.org/03eaaxm14 Centro de Estudos e Avaliação em Saúde'),
(115273, 'https://ror.org/03vj88s15', 'fr', 1, 'https://ror.org/03vj88s15 Centre d''Etudes Prospectives et d''Informations Internationales'),
(115274, 'https://ror.org/0329y3j20', 'de', 1, 'https://ror.org/0329y3j20 BundesprƤsident'),
(115275, 'https://ror.org/0486dk737', 'en', 1, 'https://ror.org/0486dk737 National Food Chain Safety Office'),
(115276, 'https://ror.org/00sv7ks13', 'no_lang_code', 1, 'https://ror.org/00sv7ks13 Unilabs (Norway)'),
(115277, 'https://ror.org/03qmwet62', 'sl', 1, 'https://ror.org/03qmwet62 Ekonomski InŔtitut'),
(115278, 'https://ror.org/00t3fpp34', 'fr', 1, 'https://ror.org/00t3fpp34 Laboratoire d''Informatique, de Modélisation et d''Optimisation des Systèmes Laboratory of Computing, Modelling and Optimization of the Systems'),
(115279, 'https://ror.org/02fcvz316', 'en', 1, 'https://ror.org/02fcvz316 Alexandria National University'),
(115280, 'https://ror.org/02rv3w387', 'pt', 1, 'https://ror.org/02rv3w387 Open University Universidade Aberta'),
(115281, 'https://ror.org/0189yvq06', 'fr', 1, 'https://ror.org/0189yvq06 Centre de Biologie Structurale'),
(115282, 'https://ror.org/040ydk043', 'pt', 1, 'https://ror.org/040ydk043 Camara dos Tecnicos Oficiais de Contas'),
(115283, 'https://ror.org/04m42eq84', 'en', 1, 'https://ror.org/04m42eq84 University of Shimane å³¶ę ¹ēœŒē«‹å¤§å­¦'),
(115284, 'https://ror.org/00vq1d511', 'en', 1, 'https://ror.org/00vq1d511 Shizuoka Institute of Science and Technology é™å²”ē†å·„ē§‘å¤§å­¦'),
(115285, 'https://ror.org/024mz3949', 'en', 1, 'https://ror.org/024mz3949 Three Rivers Park District'),
(115286, 'https://ror.org/05ch82e76', 'en', 1, 'https://ror.org/05ch82e76 Eternal University'),
(115287, 'https://ror.org/050a1gn71', 'fr', 1, 'https://ror.org/050a1gn71 ModĆØles et simulations pour l''Architecture et le Patrimoine'),
(115288, 'https://ror.org/04aq4ab28', 'fr', 1, 'https://ror.org/04aq4ab28 Centre d''Ʃtudes sociologiques et politiques Raymond-Aron'),
(115289, 'https://ror.org/02bfwyh45', 'en', 1, 'https://ror.org/02bfwyh45 Rahedanesh Institute of Higher Education'),
(115290, 'https://ror.org/04zb8fk81', 'en', 1, 'https://ror.org/04zb8fk81 Maastricht School of Management'),
(115291, 'https://ror.org/030tvx861', 'de', 1, 'https://ror.org/030tvx861 Klinikum Wels-Grieskirchen'),
(115292, 'https://ror.org/04z4j3y75', 'fr', 1, 'https://ror.org/04z4j3y75 Institut SƩnƩgalais de Recherches Agricoles'),
(115293, 'https://ror.org/02xewxa75', 'en', 1, 'https://ror.org/02xewxa75 Berkeley College'),
(115294, 'https://ror.org/02xqrgv78', 'es', 1, 'https://ror.org/02xqrgv78 Ministerio de Ciencia, TecnologĆ­a y Medio Ambiente'),
(115295, 'https://ror.org/0157tcg24', 'en', 1, 'https://ror.org/0157tcg24 University of Technology and Applied Sciences الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(115296, 'https://ror.org/03zjx1c65', 'en', 1, 'https://ror.org/03zjx1c65 Vivekananda Satavarshiki Mahavidyalaya'),
(115297, 'https://ror.org/01t05f005', 'fr', 1, 'https://ror.org/01t05f005 Laboratoire Structures, PropriƩtƩs et ModƩlisation des Solides'),
(115298, 'https://ror.org/00414dg76', 'en', 1, 'https://ror.org/00414dg76 Rady Children''s Hospital-San Diego'),
(115299, 'https://ror.org/0219m1e13', 'fr', 1, 'https://ror.org/0219m1e13 Centre d''Etudes et de Recherches Comparatives sur les Constitutions, les LibertƩs et l''Etat'),
(115300, 'https://ror.org/03zq0xc17', 'fr', 1, 'https://ror.org/03zq0xc17 Institut de Recherche sur les PhĆ©nomĆØnes Hors Ɖquilibre'),
(115301, 'https://ror.org/016nwev19', 'fr', 1, 'https://ror.org/016nwev19 Sciences pour l''Environnement'),
(115302, 'https://ror.org/0582gcw47', 'en', 1, 'https://ror.org/0582gcw47 Medical Research Institute'),
(115303, 'https://ror.org/01racwh88', 'fr', 1, 'https://ror.org/01racwh88 Laboratoire Hydrazines et ComposƩs EnergƩtiques PolyazotƩs'),
(115304, 'https://ror.org/047pm4955', 'en', 1, 'https://ror.org/047pm4955 Croce Rossa Svizzera Croix-Rouge suisse Schweizerisches Rote Kreuz Swiss Red Cross'),
(115305, 'https://ror.org/05ka2rh72', 'en', 1, 'https://ror.org/05ka2rh72 Institute for Sustainable Energy Policies ē’°å¢ƒć‚Øćƒćƒ«ć‚®ćƒ¼ę”æē­–ē ”ē©¶ę‰€'),
(115306, 'https://ror.org/03r7c7356', 'en', 1, 'https://ror.org/03r7c7356 William Carey University'),
(115307, 'https://ror.org/0072dxg89', 'de', 1, 'https://ror.org/0072dxg89 Fachhochschule Salzburg Fachhochschule Salzburg GmbH Salzburg University of Applied Sciences Salzburg University of Applied Sciences GmbH'),
(115308, 'https://ror.org/03spdpm68', 'en', 1, 'https://ror.org/03spdpm68 State Marine Technical University of St. Petersburg Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ морской технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115309, 'https://ror.org/02c39hw83', 'pt', 1, 'https://ror.org/02c39hw83 Centro de Pesquisa e Desenvolvimento da Sonangol, S.A.'),
(115310, 'https://ror.org/02cvar823', 'pt', 1, 'https://ror.org/02cvar823 Mais Sindicato'),
(115311, 'https://ror.org/02a9khs93', 'en', 1, 'https://ror.org/02a9khs93 Diabetes Center Berne'),
(115312, 'https://ror.org/00y05t035', 'pt', 1, 'https://ror.org/00y05t035 Liga para a Protecção da Natureza'),
(115313, 'https://ror.org/03nknpw16', 'fr', 1, 'https://ror.org/03nknpw16 Laboratoire de Chimie Physique et Microbiologie pour l''Environnement Laboratory of Physical Chemistry and Microbiology for Materials and the Environment'),
(115314, 'https://ror.org/04khqse59', 'en', 1, 'https://ror.org/04khqse59 Pediatric Oncology Group'),
(115315, 'https://ror.org/02jkg8m11', 'fr', 1, 'https://ror.org/02jkg8m11 MolƩcule aux Nanos-objets : RƩactivitƩ, Interactions et Spectroscopies'),
(115316, 'https://ror.org/01d3smq07', 'no_lang_code', 1, 'https://ror.org/01d3smq07 Aflac (United States)'),
(115317, 'https://ror.org/00syyzh74', 'id', 1, 'https://ror.org/00syyzh74 Institut Bisnis Nusantara'),
(115318, 'https://ror.org/01r5wky88', 'fr', 1, 'https://ror.org/01r5wky88 Pharmacologie et Pathologies Fragilisantes'),
(115319, 'https://ror.org/052bbtn31', 'fr', 1, 'https://ror.org/052bbtn31 Centre de Physique ThƩorique'),
(115320, 'https://ror.org/0081aw162', 'en', 1, 'https://ror.org/0081aw162 Arq Psychotrauma Expert Groep Arq Psychotrauma Expert Group'),
(115321, 'https://ror.org/01srpnj69', 'en', 1, 'https://ror.org/01srpnj69 Wellesley College'),
(115322, 'https://ror.org/042n1zz26', 'no_lang_code', 1, 'https://ror.org/042n1zz26 Seiko Holdings (Japan) ć‚»ć‚¤ć‚³ćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(115323, 'https://ror.org/03j3q6b81', 'ro', 1, 'https://ror.org/03j3q6b81 Spitalul Clinic Dr. Victor Babes'),
(115324, 'https://ror.org/013vyke20', 'en', 1, 'https://ror.org/013vyke20 Environment Agency Austria Umweltbundesamt'),
(115325, 'https://ror.org/026h43663', 'fr', 1, 'https://ror.org/026h43663 Centre de Recherches Linguistiques sur l''Asie Orientale'),
(115326, 'https://ror.org/00ctbs693', 'en', 1, 'https://ror.org/00ctbs693 Yaroslavl State Medical Academy Ярославский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115327, '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'),
(115328, 'https://ror.org/03kwnqq69', 'fr', 1, 'https://ror.org/03kwnqq69 Centre d’Élaboration de MatĆ©riaux et d’Études Structurales Centre for Materials Elaboration and Structural Studies'),
(115329, 'https://ror.org/046p4xa68', 'fr', 1, 'https://ror.org/046p4xa68 Institut Pasteur de CƓte d''Ivoire'),
(115330, 'https://ror.org/00ppf7x29', 'en', 1, 'https://ror.org/00ppf7x29 Institut sur la Gouvernance Institute on Governance'),
(115331, 'https://ror.org/005e2bj09', 'en', 1, 'https://ror.org/005e2bj09 St.Petersburg V.M.Bekhterev Psychoneurological Research Institute Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ психоневрологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.М. Бехтерева'),
(115332, 'https://ror.org/01mvzn566', 'fr', 1, 'https://ror.org/01mvzn566 Center for Interdisciplinary Research in Biology Centre Interdisciplinaire de Recherche en Biologie'),
(115333, 'https://ror.org/02vw4zn68', 'es', 1, 'https://ror.org/02vw4zn68 Escuela Normal Miguel F. Martƭnez, Centenaria y BenemƩrita'),
(115334, 'https://ror.org/04cq90n15', 'en', 1, 'https://ror.org/04cq90n15 Nazi Boni University UniversitƩ Nazi Boni'),
(115335, 'https://ror.org/01rkhv978', 'en', 1, 'https://ror.org/01rkhv978 Development Fund Utviklingsfondet'),
(115336, 'https://ror.org/04pwzyv45', 'fr', 1, 'https://ror.org/04pwzyv45 Droit International ComparƩ et EuropƩen'),
(115337, 'https://ror.org/0558gww53', 'en', 1, 'https://ror.org/0558gww53 Community Health Systems - Physicians Regional Healthcare System - Collier'),
(115338, 'https://ror.org/0543pw950', 'en', 1, 'https://ror.org/0543pw950 Research Institute of Tsinghua University in Shenzhen ę·±åœ³ęø…čÆå¤§å­øē ”ē©¶é™¢'),
(115339, 'https://ror.org/02jpcpm59', 'en', 1, 'https://ror.org/02jpcpm59 Community Health Systems - Poplar Bluff Regional Medical Center - Oak Grove'),
(115340, 'https://ror.org/039ywxz78', 'es', 1, 'https://ror.org/039ywxz78 Centro de Investigaciones en FitopatologĆ­as'),
(115341, 'https://ror.org/052193f04', 'no_lang_code', 1, 'https://ror.org/052193f04 Biolog (United States)'),
(115342, 'https://ror.org/02dsacc67', 'en', 1, 'https://ror.org/02dsacc67 Immunology from Concept and Experiments to Translation'),
(115343, 'https://ror.org/02jbzd997', 'pt', 1, 'https://ror.org/02jbzd997 ClĆ­nica de Ortopedia Doutor Noronha (Portugal) Doctor Noronha Orthopedics Clinic'),
(115344, 'https://ror.org/02ygkva69', 'pt', 1, 'https://ror.org/02ygkva69 Labbels'),
(115345, 'https://ror.org/02y82bt96', 'pt', 1, 'https://ror.org/02y82bt96 Laboratório de Genética'),
(115346, 'https://ror.org/051hx5h67', 'en', 1, 'https://ror.org/051hx5h67 Kidney Centre'),
(115347, 'https://ror.org/03kh0v816', 'en', 1, 'https://ror.org/03kh0v816 Penza State University of Architecture and Construction Пензенский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ Šø ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(115348, 'https://ror.org/016xdy456', 'en', 1, 'https://ror.org/016xdy456 Croatian Institute of History'),
(115349, 'https://ror.org/01qpg5w50', 'en', 1, 'https://ror.org/01qpg5w50 Tabaran Institute of Higher Education Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ تابران'),
(115350, 'https://ror.org/00envkz24', 'en', 1, 'https://ror.org/00envkz24 Greenlane Clinical Centre'),
(115351, 'https://ror.org/01kcrnc96', 'fr', 1, 'https://ror.org/01kcrnc96 Institut de PlanƩtologie et d''Astrophysique de Grenoble'),
(115352, 'https://ror.org/01frn9647', 'fr', 1, 'https://ror.org/01frn9647 L''UniversitƩ de Pau et des Pays de l''Adour Paueko eta Aturrialdeko Unibertsitatea UniversitƩ de Pau et des Pays de l''Adour'),
(115353, 'https://ror.org/053darw66', 'en', 1, 'https://ror.org/053darw66 Martha-Maria Hospital'),
(115354, 'https://ror.org/019j78370', 'en', 0, 'https://ror.org/019j78370 Salford Royal NHS Foundation Trust'),
(115355, 'https://ror.org/03k9z2963', 'fr', 1, 'https://ror.org/03k9z2963 Department of Mathematics and their Applications DƩpartement de mathƩmatiques et applications'),
(115356, 'https://ror.org/039epey77', 'en', 1, 'https://ror.org/039epey77 D.S. Adegbenro ICT Polytechnic'),
(115357, 'https://ror.org/011abem59', 'fr', 1, 'https://ror.org/011abem59 Ɖvolution, GĆ©nomes, Comportement, Ɖcologie'),
(115358, 'https://ror.org/03ngj3k57', 'en', 1, 'https://ror.org/03ngj3k57 Johns Hopkins Materials Characterization and Processing Facility'),
(115359, 'https://ror.org/0041aya12', 'es', 1, 'https://ror.org/0041aya12 Centro de Investigación de Métodos Computacionales'),
(115360, 'https://ror.org/04n6xkc09', 'en', 1, 'https://ror.org/04n6xkc09 BELLA Labor'),
(115361, 'https://ror.org/028wkbm97', 'en', 1, 'https://ror.org/028wkbm97 National Institute of Research and Development for Biological Sciences'),
(115362, 'https://ror.org/049nhh297', 'fr', 1, 'https://ror.org/049nhh297 Annecy-le-Vieux Particle Physics Laboratory Laboratoire d’Annecy de Physique des Particules'),
(115363, 'https://ror.org/05rcjak97', 'en', 1, 'https://ror.org/05rcjak97 Biblioteka Narodowa National Library of Poland'),
(115364, 'https://ror.org/03n53gr48', 'no_lang_code', 1, 'https://ror.org/03n53gr48 Human Longevity (United States)'),
(115365, 'https://ror.org/0595x5h51', 'fr', 1, 'https://ror.org/0595x5h51 Anglophonie: communautƩs, Ʃcritures'),
(115366, 'https://ror.org/039mhfq69', 'en', 1, 'https://ror.org/039mhfq69 Bangkok Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(115367, 'https://ror.org/054xxne07', 'no_lang_code', 1, 'https://ror.org/054xxne07 CNH Industrial (United Kingdom)'),
(115368, 'https://ror.org/0105syj83', 'en', 1, 'https://ror.org/0105syj83 Calcutta Research Group'),
(115369, 'https://ror.org/00ww2r127', 'pt', 1, 'https://ror.org/00ww2r127 Clƭnica UniversitƔria de Cardiologia University Clinic of Cardiology'),
(115370, 'https://ror.org/047k2at48', 'en', 1, 'https://ror.org/047k2at48 Al-Azhar University – Gaza Ų¬Ų§Ł…Ų¹Ų© الأزهر في ŲŗŲ²Ų©'),
(115371, 'https://ror.org/03gwkgh70', 'pt', 1, 'https://ror.org/03gwkgh70 Sociedade Portuguesa de Medicina DentƔria Digital'),
(115372, 'https://ror.org/033wn8m60', 'en', 1, 'https://ror.org/033wn8m60 Institute for Systems Engineering and Computers Instituto de Engenharia de Sistemas e Computadores'),
(115373, 'https://ror.org/01sdtdd95', 'en', 1, 'https://ror.org/01sdtdd95 Canadian Institute for Advanced Research Institut Canadien de Recherches AvancƩes'),
(115374, 'https://ror.org/05krcen59', 'fr', 1, 'https://ror.org/05krcen59 LIP6 Laboratoire de Recherche en Informatique de Paris 6'),
(115375, 'https://ror.org/02bz74262', 'no_lang_code', 1, 'https://ror.org/02bz74262 Hiram College'),
(115376, 'https://ror.org/03h1fpb42', 'da', 1, 'https://ror.org/03h1fpb42 Økologisk Samsø Økologisk Samsø (Denmark)'),
(115377, 'https://ror.org/01weqhp73', 'de', 1, 'https://ror.org/01weqhp73 Technische UniversitƤt Ilmenau'),
(115378, 'https://ror.org/0075hvk77', 'en', 1, 'https://ror.org/0075hvk77 Heuristics and Diagnostics for Complex Systems Heuristique et Diagnostic des SystĆØmes Complexes'),
(115379, 'https://ror.org/00etaks59', 'en', 1, 'https://ror.org/00etaks59 University of Health Sciences'),
(115380, 'https://ror.org/03qgt2624', 'fr', 1, 'https://ror.org/03qgt2624 Analyse, GƩomƩtrie et ModƩlisation Laboratoire Analyse GƩomƩtrie ModƩlisation'),
(115381, 'https://ror.org/04mvypw81', 'pt', 1, 'https://ror.org/04mvypw81 Livraria Escolar Editora (Portugal) School Bookshop Publisher'),
(115382, 'https://ror.org/057915t59', 'es', 1, 'https://ror.org/057915t59 Instituto de AgrobiotecnologĆ­a del Litoral'),
(115383, 'https://ror.org/0288shp82', 'pt', 1, 'https://ror.org/0288shp82 Rede Municipal de Bibliotecas de Almada'),
(115384, 'https://ror.org/02r247g67', 'en', 1, 'https://ror.org/02r247g67 People''s Hospital of Xinjiang Uygur Autonomous Region ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(115385, 'https://ror.org/0085xyn52', 'en', 1, 'https://ror.org/0085xyn52 Independent Medical Alliance'),
(115386, 'https://ror.org/02g50ac66', 'pt', 0, 'https://ror.org/02g50ac66 Unidade de TransferĆŖncia de Tecnologia'),
(115387, 'https://ror.org/04m219c69', 'en', 1, 'https://ror.org/04m219c69 Medicina Specjalistyczne Centrum Diagnostyczno-Zabiegowe MEDICINA'),
(115388, 'https://ror.org/037f3ga09', 'fr', 1, 'https://ror.org/037f3ga09 Institut de Recherches et d''Etudes sur les Mondes Arabes et Musulmans'),
(115389, 'https://ror.org/00mghmd60', 'fr', 1, 'https://ror.org/00mghmd60 Centre Lillois d''Etudes et de Recherches Sociologiques et Economiques'),
(115390, 'https://ror.org/0249xx705', 'en', 1, 'https://ror.org/0249xx705 Reef Ecologic'),
(115391, 'https://ror.org/050draa26', 'no_lang_code', 1, 'https://ror.org/050draa26 NRG Oncology'),
(115392, 'https://ror.org/04w11tv37', 'fr', 1, 'https://ror.org/04w11tv37 Biologie cellulaire et Cancer Cell Biology and Cancer'),
(115393, 'https://ror.org/03bm2y510', 'pt', 1, 'https://ror.org/03bm2y510 Human Rights Centre Universidade de Coimbra Ius Gentium Conimbrigae Centro de Direitos Humanos'),
(115394, 'https://ror.org/04g525b43', 'en', 1, 'https://ror.org/04g525b43 First Pavlov State Medical University of St. Petersburg ŠŸŠµŃ€Š²Ń‹Š¹ Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика И. П. Павлова'),
(115395, 'https://ror.org/04nhye957', 'pt', 1, 'https://ror.org/04nhye957 Laboratório de Farmacologia Clínica e Terapêutica'),
(115396, 'https://ror.org/018nzqy79', 'fr', 1, 'https://ror.org/018nzqy79 Laboratoire Analyse, GƩomƩtrie et Applications'),
(115397, 'https://ror.org/01kv3wg35', 'en', 1, 'https://ror.org/01kv3wg35 Kavli Institute for Theoretical Sciences 中国科学院理论物理研究所'),
(115398, 'https://ror.org/00d7xd698', 'es', 1, 'https://ror.org/00d7xd698 Centros de Integración Juvenil, A.C.'),
(115399, 'https://ror.org/00pcyc255', 'en', 1, 'https://ror.org/00pcyc255 Saint-Petersburg State University of Telecommunications Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹ имени проф. М. А. Бонч-Š‘Ń€ŃƒŠµŠ²ŠøŃ‡Š°'),
(115400, 'https://ror.org/046q9bd61', 'pt', 1, 'https://ror.org/046q9bd61 DATINFOR DATINFOR (Portugal)'),
(115401, 'https://ror.org/05m3r1b84', 'fr', 1, 'https://ror.org/05m3r1b84 Institut de MathƩmatiques de Bordeaux'),
(115402, 'https://ror.org/03ay27p09', 'en', 1, 'https://ror.org/03ay27p09 European Brain Research Institute'),
(115403, 'https://ror.org/03ts63514', 'en', 1, 'https://ror.org/03ts63514 A. Veeriya Vandayar Memorial Sri Pushpam College ą®…. ą®µąÆ€ą®°ąÆˆą®Æą®¾ ą®µą®¾ą®£ąÆą®ŸąÆˆą®Æą®¾ą®°ąÆ நினைவு ą®øąÆą®°ąÆ€ ą®ŖąÆą®ŸąÆą®Ŗą®®ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(115404, 'https://ror.org/03v83q278', 'fr', 0, 'https://ror.org/03v83q278 Cancers et PrƩventions'),
(115405, 'https://ror.org/02dd25k08', 'fr', 1, 'https://ror.org/02dd25k08 Laboratoire de Chimie et Biologie des MƩtaux'),
(115406, 'https://ror.org/03e6bgb38', 'fr', 1, 'https://ror.org/03e6bgb38 MarchƩs, Institutions, LibertƩs'),
(115407, 'https://ror.org/0157h5t87', 'fr', 1, 'https://ror.org/0157h5t87 Langages, LittĆ©ratures, SociĆ©tĆ©s. Ɖtudes TransfrontaliĆØres et Internationales'),
(115408, 'https://ror.org/00x1d4q78', 'fr', 1, 'https://ror.org/00x1d4q78 Institut des Textes et Manuscrits Modernes'),
(115409, 'https://ror.org/01ag91m47', 'fr', 1, 'https://ror.org/01ag91m47 Centre de recherche droit Dauphine'),
(115410, 'https://ror.org/0581g8849', 'fr', 1, 'https://ror.org/0581g8849 Laboratoire d’Analyse et de MathĆ©matiques AppliquĆ©es'),
(115411, 'https://ror.org/03n6b6g81', 'ca', 1, 'https://ror.org/03n6b6g81 Hospital de Sant Joan DespĆ­ MoisĆØs Broggi'),
(115412, 'https://ror.org/03ynt1573', 'no_lang_code', 1, 'https://ror.org/03ynt1573 Ansaldo (Italy)'),
(115413, 'https://ror.org/04ezpxa16', 'fr', 1, 'https://ror.org/04ezpxa16 Biologie du Chloroplaste et Perception de la LumiĆØre chez les Microalgues Chloroplast Biology and Light-sensing in Microalgae');
INSERT INTO `rors` VALUES
(115414, 'https://ror.org/0427jdz87', 'fr', 1, 'https://ror.org/0427jdz87 Centre d''Anthropologie Culturelle Research Center For Cultural Anthropology'),
(115415, 'https://ror.org/05p29gb14', 'en', 1, 'https://ror.org/05p29gb14 Jakarta Theological Seminary Sekolah Tinggi Filsafat Teologi Jakarta'),
(115416, 'https://ror.org/00m02ap37', 'en', 1, 'https://ror.org/00m02ap37 CT Group Of Institutions'),
(115417, 'https://ror.org/02nn3k690', 'en', 1, 'https://ror.org/02nn3k690 National Research Center for Radiation Medicine, Hematology and Oncology of the National Academy of Medical Sciences of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр раГіаційної меГицини, гематології та онкології ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України'),
(115418, 'https://ror.org/03rmwy138', 'en', 1, 'https://ror.org/03rmwy138 Children''s Hospital Zagreb Klinika za Djecje bolesti Zagreb'),
(115419, 'https://ror.org/03v842g47', 'en', 1, 'https://ror.org/03v842g47 University of Kigali'),
(115420, 'https://ror.org/05h536g49', 'pt', 1, 'https://ror.org/05h536g49 DH Debate History Publication and Research Sole Proprietorship DH Debater a História Publicação e Investigação (Portugal)'),
(115421, 'https://ror.org/019warg04', 'id', 1, 'https://ror.org/019warg04 Universitas Doktor Nugroho Magetan'),
(115422, 'https://ror.org/05ncxkn21', 'es', 1, 'https://ror.org/05ncxkn21 Instituto Superior Tecnológico Carlos Cisneros'),
(115423, 'https://ror.org/00ek1cp74', 'de', 1, 'https://ror.org/00ek1cp74 Nationalpark GesƤuse'),
(115424, 'https://ror.org/01j1w4v71', 'it', 1, 'https://ror.org/01j1w4v71 Azienda UnitĆ  Sanitaria Locale Piacenza'),
(115425, 'https://ror.org/05rwzhy90', 'en', 1, 'https://ror.org/05rwzhy90 Melbourne Genomics Health Alliance'),
(115426, 'https://ror.org/027gvg079', 'en', 1, 'https://ror.org/027gvg079 OHMX.bio OHMX.bio (Belgium)'),
(115427, 'https://ror.org/04wdvc711', 'fr', 1, 'https://ror.org/04wdvc711 Laboratoire d''Ʃconomie appliquƩe au dƩveloppement'),
(115428, 'https://ror.org/04af0r679', 'nl', 1, 'https://ror.org/04af0r679 GGD Zuid Limburg Gemeentelijke gezondheidsdienst Zuid Limburg'),
(115429, 'https://ror.org/0007rbz95', 'pt', 1, 'https://ror.org/0007rbz95 Fundação Frei Pedro'),
(115430, 'https://ror.org/014z5x149', 'en', 1, 'https://ror.org/014z5x149 Institute for Economic Research InŔtitut za Ekonomska Raziskovanja'),
(115431, 'https://ror.org/04cqhc152', 'en', 1, 'https://ror.org/04cqhc152 Luxembourg Centre for European Law'),
(115432, 'https://ror.org/05edmwq13', 'en', 1, 'https://ror.org/05edmwq13 Sundsvall Municipality'),
(115433, 'https://ror.org/051snsd81', 'en', 1, 'https://ror.org/051snsd81 Icelandic Heart Association'),
(115434, 'https://ror.org/03adqg323', 'fr', 1, 'https://ror.org/03adqg323 Laboratoire Bordelais de Recherche en Informatique'),
(115435, 'https://ror.org/04j8jrf09', 'fr', 1, 'https://ror.org/04j8jrf09 Centre Interdisciplinaire de Recherches sur les Langues Et la PensƩe'),
(115436, 'https://ror.org/05x24c339', 'pt', 1, 'https://ror.org/05x24c339 Unidade Local de SaĆŗde do Norte Alentejano EPE'),
(115437, 'https://ror.org/045mkqe52', 'en', 1, 'https://ror.org/045mkqe52 Centro UniversitƔrio de Brasƭlia University Center of Brasƭlia'),
(115438, 'https://ror.org/01yw97595', 'fr', 1, 'https://ror.org/01yw97595 Laboratoire AmĆ©nagement Ɖconomie Transports'),
(115439, 'https://ror.org/01qhmaj40', 'en', 1, 'https://ror.org/01qhmaj40 Sant Baba Bhag Singh University'),
(115440, 'https://ror.org/03actwe44', 'pt', 1, 'https://ror.org/03actwe44 Instituto de Histologia e Biologia do Desenvolvimento'),
(115441, 'https://ror.org/00v3y0a25', 'id', 1, 'https://ror.org/00v3y0a25 Universitas Ichsan Gorontalo'),
(115442, 'https://ror.org/01b5j0073', 'en', 1, 'https://ror.org/01b5j0073 Families USA'),
(115443, 'https://ror.org/01ttgmj63', 'pt', 1, 'https://ror.org/01ttgmj63 Fundação UniversitÔria de Cardiologia Instituto de Cardiologia do Rio Grande do Sul'),
(115444, 'https://ror.org/023e6jq80', 'en', 1, 'https://ror.org/023e6jq80 Güven Hastanesi Güven Hospital'),
(115445, 'https://ror.org/00s24jw12', 'pt', 1, 'https://ror.org/00s24jw12 Unidade Hospitalar da Póvoa de Varzim'),
(115446, 'https://ror.org/00j6r8583', 'en', 1, 'https://ror.org/00j6r8583 Swami Keshwanand Rajasthan Agricultural University'),
(115447, 'https://ror.org/0535cbn94', 'fr', 1, 'https://ror.org/0535cbn94 SystĆØmes MolĆ©culaires et nanoMatĆ©riaux pour l''Ɖnergie et la SantĆ©'),
(115448, 'https://ror.org/01551d523', 'pt', 1, 'https://ror.org/01551d523 Centro de Investigação em Estudos Regionais e Locais'),
(115449, 'https://ror.org/01bbs6821', 'en', 1, 'https://ror.org/01bbs6821 Fisk University Universidad de Fisk'),
(115450, 'https://ror.org/006cvtz77', 'en', 1, 'https://ror.org/006cvtz77 Kebbi State University of Science and Technology'),
(115451, 'https://ror.org/05qfbhd78', 'no_lang_code', 1, 'https://ror.org/05qfbhd78 Piaggio Aerospace (Italy)'),
(115452, 'https://ror.org/0145dtj11', 'en', 1, 'https://ror.org/0145dtj11 University of Santa Monica'),
(115453, 'https://ror.org/03cnttr74', 'fr', 1, 'https://ror.org/03cnttr74 BiomatƩriaux et Inflammation en Site Osseux'),
(115454, 'https://ror.org/04pa5pz64', 'de', 1, 'https://ror.org/04pa5pz64 Sozialstiftung Bamberg'),
(115455, 'https://ror.org/044y7wq10', 'en', 1, 'https://ror.org/044y7wq10 Khulna Khan Bahadur Ahsanullah University'),
(115456, 'https://ror.org/04qhwn476', 'fr', 1, 'https://ror.org/04qhwn476 Centre Georg Simmel'),
(115457, 'https://ror.org/04vs0j422', 'en', 1, 'https://ror.org/04vs0j422 Hospice UK'),
(115458, 'https://ror.org/01b8fjz64', 'en', 1, 'https://ror.org/01b8fjz64 Omeo Kumar Das Institute of Social Change and Development'),
(115459, 'https://ror.org/01qe7ag50', 'no_lang_code', 1, 'https://ror.org/01qe7ag50 Euroimmun Medizinische Labordiagnostika (Germany)'),
(115460, 'https://ror.org/02jeykk09', 'en', 1, 'https://ror.org/02jeykk09 Imam Khomeini International University دانؓگاه ŲØŪŒŁ† Ų§Ł„Ł…Ł„Ł„ŪŒ Ų§Ł…Ų§Ł… Ų®Ł…ŪŒŁ†ŪŒ'),
(115461, 'https://ror.org/0554nwf36', 'en', 1, 'https://ror.org/0554nwf36 Arab Federation for Libraries & Information ال؄تحاد Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ł„Ł…ŁƒŲŖŲØŲ§ŲŖ ŁˆŲ§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ - اعلم'),
(115462, 'https://ror.org/01dak5k93', 'no_lang_code', 1, 'https://ror.org/01dak5k93 Lancet Laboratories'),
(115463, 'https://ror.org/036yvb369', 'en', 1, 'https://ror.org/036yvb369 Centre de Recherche en Managment Toulouse School of Management Research'),
(115464, 'https://ror.org/04sbx8232', 'en', 1, 'https://ror.org/04sbx8232 Shanghai Research Institute of Materials äøŠęµ·ęę–™ē ”ē©¶ę‰€'),
(115465, 'https://ror.org/05np2xn95', 'en', 1, 'https://ror.org/05np2xn95 Kwara State University'),
(115466, 'https://ror.org/00avmbz91', 'en', 1, 'https://ror.org/00avmbz91 Georgia Tech-CNRS Laboratory'),
(115467, 'https://ror.org/05rrm9g41', 'pt', 1, 'https://ror.org/05rrm9g41 Biblioteca da Direção-Geral da Qualificação dos Trabalhadores em Funções Públicas'),
(115468, 'https://ror.org/01cww2r92', 'en', 1, 'https://ror.org/01cww2r92 University of Technology and Applied Sciences-Nizwa Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© Ł†Ų²ŁˆŪŒ'),
(115469, 'https://ror.org/01g4p5d23', 'en', 1, 'https://ror.org/01g4p5d23 Association des joueurs de la Ligue majeure de baseball Major League Baseball Players Association'),
(115470, 'https://ror.org/00h6p6a20', 'en', 1, 'https://ror.org/00h6p6a20 Zoological Survey of India'),
(115471, 'https://ror.org/024pgmp43', 'hu', 1, 'https://ror.org/024pgmp43 St. John''s Hospital Szent JÔnos KórhÔz'),
(115472, 'https://ror.org/00q7hmt63', 'en', 1, 'https://ror.org/00q7hmt63 Community Health Systems - Carlsbad Medical Center'),
(115473, 'https://ror.org/04gmqtx37', 'en', 1, 'https://ror.org/04gmqtx37 Smolensk State University Дмоленский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115474, 'https://ror.org/014p6mg26', 'fr', 1, 'https://ror.org/014p6mg26 Laboratoire de Psychologie et NeuroCognition'),
(115475, 'https://ror.org/01d176154', 'en', 1, 'https://ror.org/01d176154 Jiangsu Institute of Parasitic Diseases ę±Ÿč‹ēœåÆ„ē”Ÿč™«ē—…é˜²ę²»ē ”ē©¶ę‰€'),
(115476, 'https://ror.org/0582p8j71', 'en', 1, 'https://ror.org/0582p8j71 Jagannath University'),
(115477, 'https://ror.org/014g34x36', 'en', 1, 'https://ror.org/014g34x36 Universidade do Algarve University of Algarve'),
(115478, 'https://ror.org/01wj7vt66', 'en', 1, 'https://ror.org/01wj7vt66 Golden Gate University'),
(115479, 'https://ror.org/0554d9k40', 'en', 1, 'https://ror.org/0554d9k40 National University "Yuri Kondratyuk Poltava Polytechnic" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠ° політехніка імені Š®Ń€Ń–Ń ŠšŠ¾Š½Š“Ń€Š°Ń‚ŃŽŠŗŠ°Ā»'),
(115480, 'https://ror.org/03y2k8882', 'en', 1, 'https://ror.org/03y2k8882 Marathwada Agricultural University वसंतराव ą¤Øą¤¾ą¤ˆą¤• मराठवाऔा ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(115481, 'https://ror.org/00z0sw756', 'en', 1, 'https://ror.org/00z0sw756 Community Health Systems - East Georgia Regional Medical Center'),
(115482, 'https://ror.org/01215r597', 'fr', 1, 'https://ror.org/01215r597 Laboratoire d''Informatique, Signaux et SystĆØmes de Sophia Antipolis'),
(115483, 'https://ror.org/023n9q531', 'fr', 1, 'https://ror.org/023n9q531 Interdisciplinary Physics Laboratory Laboratoire Interdisciplinaire de Physique'),
(115484, 'https://ror.org/040y9br29', 'en', 1, 'https://ror.org/040y9br29 Africa Rice Center'),
(115485, 'https://ror.org/050sat078', 'fr', 1, 'https://ror.org/050sat078 Centre Camille Jullian'),
(115486, 'https://ror.org/02qfrj807', 'pt', 1, 'https://ror.org/02qfrj807 Laboratório de Arquitectura Centro de Estudos'),
(115487, 'https://ror.org/02p97w646', 'fr', 1, 'https://ror.org/02p97w646 Ɖcole Nationale Polytechnique d''Oran المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© المتعددة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖ ŲØŁˆŁ‡Ų±Ų§Ł† Ł…ŁˆŲ±ŁŠŲ³ Ų£ŁˆŲÆŲ§Ł†'),
(115488, 'https://ror.org/040r8ry56', 'fr', 1, 'https://ror.org/040r8ry56 STELLA MARE'),
(115489, 'https://ror.org/016s82z56', 'no_lang_code', 1, 'https://ror.org/016s82z56 Photonic Systems (United States)'),
(115490, 'https://ror.org/022k4wk35', 'en', 1, 'https://ror.org/022k4wk35 Beijing Normal University åŒ—äŗ¬åøˆčŒƒå¤§å­¦'),
(115491, 'https://ror.org/05ced3r45', 'en', 1, 'https://ror.org/05ced3r45 Community Health Systems - Lake Granbury Medical Center'),
(115492, 'https://ror.org/003fs1j49', 'fr', 1, 'https://ror.org/003fs1j49 Savoirs, Textes, Langage'),
(115493, 'https://ror.org/03rx0gp36', 'en', 1, 'https://ror.org/03rx0gp36 Royal College of Paediatrics and Child Health'),
(115494, 'https://ror.org/04aqg9s78', 'no_lang_code', 1, 'https://ror.org/04aqg9s78 Beiersdorf (Germany)'),
(115495, 'https://ror.org/0082dha77', 'en', 1, 'https://ror.org/0082dha77 Logan Hospital'),
(115496, 'https://ror.org/050c3pq49', 'fr', 1, 'https://ror.org/050c3pq49 Fondation pour l’innovation en CadiomĆ©tabolisme et Nutrition Foundation for Innovation in Cardiometabolism and Nutrition'),
(115497, 'https://ror.org/05shr3z13', 'en', 1, 'https://ror.org/05shr3z13 Tula State University Тульский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115498, 'https://ror.org/01dqmj897', 'fr', 1, 'https://ror.org/01dqmj897 Laboratoire Architecture Ville Urbanisme Environnement'),
(115499, 'https://ror.org/00rsqg119', 'en', 1, 'https://ror.org/00rsqg119 King Edward VII Hospital'),
(115500, 'https://ror.org/03tbhpd90', 'en', 1, 'https://ror.org/03tbhpd90 Coffee Consulate Coffee Consulate (Germany)'),
(115501, 'https://ror.org/041bz9r75', 'en', 1, 'https://ror.org/041bz9r75 Fulda University of Applied Sciences Hochschule Fulda'),
(115502, 'https://ror.org/0408ywy94', 'pt', 1, 'https://ror.org/0408ywy94 Unidade Local de SaĆŗde do TĆ¢mega e Sousa'),
(115503, 'https://ror.org/03s3hf581', 'en', 1, 'https://ror.org/03s3hf581 Mazandaran University of Science and Technology دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† مازندران'),
(115504, 'https://ror.org/04xmkh626', 'id', 1, 'https://ror.org/04xmkh626 Universitas 45 Surabaya'),
(115505, 'https://ror.org/03z28c516', 'no_lang_code', 1, 'https://ror.org/03z28c516 Rio Tinto (Australia)'),
(115506, 'https://ror.org/04e2ndp15', 'fr', 1, 'https://ror.org/04e2ndp15 Centre de recherches juridiques de Grenoble'),
(115507, 'https://ror.org/01ey0me92', 'pt', 1, 'https://ror.org/01ey0me92 Sociedade Portuguesa de Cardiologia'),
(115508, 'https://ror.org/036b75x65', 'fr', 1, 'https://ror.org/036b75x65 HƓpital Paul-Doumer'),
(115509, 'https://ror.org/04qbxr381', 'en', 1, 'https://ror.org/04qbxr381 Institute of Information Technologies and Systems of the National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ інформаційних технологій та систем ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(115510, 'https://ror.org/03r9r2649', 'fr', 0, 'https://ror.org/03r9r2649 Laboratoire de chimie des substances naturelles'),
(115511, 'https://ror.org/01bfgxw09', 'en', 1, 'https://ror.org/01bfgxw09 Child Mind Institute'),
(115512, 'https://ror.org/0246mbd04', 'fr', 1, 'https://ror.org/0246mbd04 Centre Hospitalier Sud Francilien'),
(115513, 'https://ror.org/05gd28g81', 'pt', 1, 'https://ror.org/05gd28g81 Centro de Investigação em Política Economia e Sociedade Lusofona Centre on GLobal Challenges'),
(115514, 'https://ror.org/033t7vz72', 'fr', 0, 'https://ror.org/033t7vz72 Processus d''Activation SĆ©lective par Transfert d''Ɖnergie Uni-Ć©lectronique ou Radiatif'),
(115515, 'https://ror.org/021wgs783', 'en', 1, 'https://ror.org/021wgs783 Nutrition Metabolism Aquaculture Nutrition, MƩtabolisme, Aquaculture'),
(115516, 'https://ror.org/03gb7n667', 'en', 1, 'https://ror.org/03gb7n667 University General Hospital Attikon Ī Ī‘ĪĪ•Ī Ī™Ī£Ī¤Ī—ĪœĪ™Ī‘ĪšĪŸ Ī“Ī•ĪĪ™ĪšĪŸ ĪĪŸĪ£ĪŸĪšĪŸĪœĪ•Ī™ĪŸ "Ī‘Ī¤Ī¤Ī™ĪšĪŸĪ"'),
(115517, 'https://ror.org/054xxtt73', 'en', 1, 'https://ror.org/054xxtt73 Tinbergen Institute'),
(115518, 'https://ror.org/029s44460', 'en', 1, 'https://ror.org/029s44460 Forschungsinstitut zur Zukunft der Arbeit GmbH (IZA) IZA - Institute of Labor Economics'),
(115519, 'https://ror.org/052x1hs80', 'en', 1, 'https://ror.org/052x1hs80 Netherlands Environmental Assessment Agency Planbureau voor de Leefomgeving'),
(115520, 'https://ror.org/043gg8967', 'en', 1, 'https://ror.org/043gg8967 Federal University of Allied Health Sciences, Enugu'),
(115521, 'https://ror.org/020eh2733', 'en', 1, 'https://ror.org/020eh2733 National Heart Hospital ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° карГиологична болница'),
(115522, 'https://ror.org/05jz8wr41', 'pl', 1, 'https://ror.org/05jz8wr41 Łukasiewicz – ITECH Instytut Innowacji i Technologii'),
(115523, 'https://ror.org/01cht3g41', 'fr', 1, 'https://ror.org/01cht3g41 UnitƩ de Recherche en BiomatƩriaux Innovant et Interfaces'),
(115524, 'https://ror.org/03x1z2w73', 'fr', 1, 'https://ror.org/03x1z2w73 Laboratoire d''Ɖcologie Alpine'),
(115525, 'https://ror.org/013bkjj52', 'en', 1, 'https://ror.org/013bkjj52 Beijing Graphene Institute åŒ—äŗ¬ēŸ³å¢ØēƒÆē ”ē©¶é™¢'),
(115526, 'https://ror.org/04dnsak29', 'pt', 1, 'https://ror.org/04dnsak29 Centro de Estudos Comparatistas'),
(115527, 'https://ror.org/00cydpt19', 'pt', 1, 'https://ror.org/00cydpt19 CTC Consulting CTC Consultoria (Portugal)'),
(115528, 'https://ror.org/01zbcgr80', 'en', 1, 'https://ror.org/01zbcgr80 Israel Meteorological Service השירות ×”×ž×˜××•×Ø×•×œ×•×’×™ ×”×™×©×Ø××œ×™'),
(115529, 'https://ror.org/05b1z1d65', 'en', 1, 'https://ror.org/05b1z1d65 Kameda IVF Clinic Makuhari 亀田IVFć‚ÆćƒŖćƒ‹ćƒƒć‚Æå¹•å¼µ'),
(115530, 'https://ror.org/032d3vy39', 'pt', 1, 'https://ror.org/032d3vy39 Safelab 42 Formação Profissional (Portugal) Safelab 42 Professional Qualification'),
(115531, 'https://ror.org/04ysg2a58', 'fr', 1, 'https://ror.org/04ysg2a58 Chemistry And Interdisciplinarité, Synthesis, Analyze, Modeling Chimie et Interdisciplinarité, Synthèse, Analyse, Modélisation'),
(115532, 'https://ror.org/03p5jz112', 'en', 1, 'https://ror.org/03p5jz112 Federal University Lafia'),
(115533, 'https://ror.org/00cch2r34', 'fr', 1, 'https://ror.org/00cch2r34 Institut Rayonnement-MatiĆØre de Saclay Saclay Institute of Matter and Radiation'),
(115534, 'https://ror.org/05v10js27', 'fr', 1, 'https://ror.org/05v10js27 CEAO - Centre des Etudes Arabes et Orientales Centre des Etudes Arabes et Orientales'),
(115535, 'https://ror.org/03v6t2982', 'en', 1, 'https://ror.org/03v6t2982 Community Health Systems - Moses Taylor Hospital'),
(115536, 'https://ror.org/05ab3fa41', 'en', 1, 'https://ror.org/05ab3fa41 New College'),
(115537, 'https://ror.org/015h41091', 'pt', 1, 'https://ror.org/015h41091 Centro de Investigação em Psicologia Aplicada Capacidades e Inclusão'),
(115538, 'https://ror.org/03fcx9267', 'en', 1, 'https://ror.org/03fcx9267 Idaho Department of Fish and Game'),
(115539, 'https://ror.org/03ht6cj06', 'en', 1, 'https://ror.org/03ht6cj06 Bahrain Center for Strategic International and Energy Studies'),
(115540, 'https://ror.org/05twvab73', 'en', 1, 'https://ror.org/05twvab73 Jehangir Hospital'),
(115541, 'https://ror.org/059hk6n77', 'en', 1, 'https://ror.org/059hk6n77 Bombay Natural History Society'),
(115542, 'https://ror.org/01r742665', 'en', 1, 'https://ror.org/01r742665 Coxa Hospital'),
(115543, 'https://ror.org/035yj9j43', 'id', 1, 'https://ror.org/035yj9j43 Universitas Gresik'),
(115544, 'https://ror.org/032eckg27', 'en', 1, 'https://ror.org/032eckg27 Disney Conservation Fund'),
(115545, 'https://ror.org/01gbt6a54', 'no_lang_code', 1, 'https://ror.org/01gbt6a54 Adaptive Biotechnologies (United States)'),
(115546, 'https://ror.org/05tcdrk12', 'en', 1, 'https://ror.org/05tcdrk12 Indrashil University ąŖ‡ąŖØą«ąŖ¦ą«ąŖ°ąŖ¶ą«€ąŖ² ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(115547, 'https://ror.org/00sse7z02', 'fr', 1, 'https://ror.org/00sse7z02 EURECOM'),
(115548, 'https://ror.org/02j3zn476', 'en', 1, 'https://ror.org/02j3zn476 Grand River Hospital'),
(115549, 'https://ror.org/05w7a1h78', 'en', 1, 'https://ror.org/05w7a1h78 Barcelona Centre for International Affairs Barcelona Centro de Relaciones Internacionales'),
(115550, 'https://ror.org/00n4c8134', 'en', 1, 'https://ror.org/00n4c8134 Lisbon School of Design'),
(115551, 'https://ror.org/02rxc7m23', 'es', 1, 'https://ror.org/02rxc7m23 Nafarroako Unibertsitatea Universidad de Navarra University of Navarra'),
(115552, 'https://ror.org/00xx8vr92', 'en', 1, 'https://ror.org/00xx8vr92 Sarajevo School of Science and Technology Sarajevska Ŕkola za nauku i tehnologiju'),
(115553, 'https://ror.org/02yhj4v17', 'en', 1, 'https://ror.org/02yhj4v17 FZU ‒ Institute of Physics of the Academy of Sciences of the Czech Republic FyzikĆ”lnĆ­ Ćŗstav AV ČR FyzikĆ”lnĆ­ Ćŗstav AV ČR, v. v. i. FyzikĆ”lnĆ­ Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce Institute of Physics of the Academy of Sciences of the Czech Republic'),
(115554, 'https://ror.org/02tfm9x44', 'es', 1, 'https://ror.org/02tfm9x44 Geincor S.A.S. Geincor S.A.S. (Colombia)'),
(115555, 'https://ror.org/02dpnb389', 'fr', 1, 'https://ror.org/02dpnb389 Clinatec'),
(115556, 'https://ror.org/05vdh4r44', 'en', 1, 'https://ror.org/05vdh4r44 North Carolina General Assembly'),
(115557, 'https://ror.org/05vbfxw79', 'de', 1, 'https://ror.org/05vbfxw79 Software AG – Stiftung'),
(115558, 'https://ror.org/03mb6wj31', 'ca', 1, 'https://ror.org/03mb6wj31 Polytechnic University of Catalonia Universidad Politécnica de Cataluña Universidade Politécnica de Cataluña Universitat Politècnica de Catalunya'),
(115559, 'https://ror.org/00fhn5p96', 'no_lang_code', 1, 'https://ror.org/00fhn5p96 Earth Resources Technology (United States)'),
(115560, 'https://ror.org/01027m165', 'en', 1, 'https://ror.org/01027m165 Brain Tech Laboratory'),
(115561, 'https://ror.org/05h4vvj02', 'en', 1, 'https://ror.org/05h4vvj02 Commonwealth of Massachusetts'),
(115562, 'https://ror.org/027hh4w08', 'pt', 1, 'https://ror.org/027hh4w08 Santa Casa de Misericórdia de Passos'),
(115563, 'https://ror.org/020rkbe43', 'no_lang_code', 1, 'https://ror.org/020rkbe43 Brinks (Colombia) Brinks de Colombia Brinks de Colombia S.A.'),
(115564, 'https://ror.org/05by4rq81', 'es', 1, 'https://ror.org/05by4rq81 Instituto de Investigación Nutricional'),
(115565, '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'),
(115566, 'https://ror.org/005zh0d53', 'ro', 1, 'https://ror.org/005zh0d53 "Constantin Rădulescu-Motru" Institute of Philosophy and Psychology of the Romanian Academy Institutul de Filosofie și Psihologie "Constantin Rădulescu-Motru" al Academiei RomĆ¢ne'),
(115567, 'https://ror.org/059y7xr21', 'id', 1, 'https://ror.org/059y7xr21 Universitas Tompotika Luwuk'),
(115568, 'https://ror.org/04sy7j661', 'fr', 1, 'https://ror.org/04sy7j661 UniversitƩ Amadou Mahtar Mbow'),
(115569, 'https://ror.org/047acnh17', 'en', 1, 'https://ror.org/047acnh17 CReATe Fertility Centre'),
(115570, 'https://ror.org/0316hvk63', 'en', 1, 'https://ror.org/0316hvk63 New York Academy of Sciences'),
(115571, 'https://ror.org/0312t3r96', 'en', 1, 'https://ror.org/0312t3r96 Newbold College of Higher Education'),
(115572, 'https://ror.org/03r6d1b04', 'en', 1, 'https://ror.org/03r6d1b04 National Institute of Public Finance and Policy'),
(115573, 'https://ror.org/04bfwec56', 'en', 1, 'https://ror.org/04bfwec56 East Asia Institute ģž¬ė‹Øė²•ģø ė™ģ•„ģ‹œģ•„ģ—°źµ¬ģ›'),
(115574, 'https://ror.org/02yk7ya44', 'en', 1, 'https://ror.org/02yk7ya44 Zhejiang University Medical College Affiliated Stomatological Hospital ęµ™ę±Ÿå¤§å­¦åŒ»å­¦é™¢é™„å±žå£č…”åŒ»é™¢'),
(115575, 'https://ror.org/05y6c7y19', 'en', 1, 'https://ror.org/05y6c7y19 St. Mary''s University'),
(115576, 'https://ror.org/05nvqhd79', 'en', 1, 'https://ror.org/05nvqhd79 Art Fund'),
(115577, 'https://ror.org/03tj80n37', 'en', 1, 'https://ror.org/03tj80n37 Goshen College'),
(115578, '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'),
(115579, 'https://ror.org/04c6pgy84', 'no_lang_code', 1, 'https://ror.org/04c6pgy84 Mercer (Czechia)'),
(115580, 'https://ror.org/03jhpv180', 'en', 1, 'https://ror.org/03jhpv180 Department of Cinnamon Development கறுவா ą®…ą®Ŗą®æą®µą®æą®°ąÆą®¤ąÆą®¤ą®æ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ ą¶šą·”ą¶»ą·”ą¶³ą·” ą·ƒą¶‚ą·€ą¶»ą·Šą¶°ą¶± ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(115581, 'https://ror.org/01vjps349', 'en', 1, 'https://ror.org/01vjps349 Research Institute of Medical Problems of the North ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинских проблем Девера'),
(115582, 'https://ror.org/02npm8404', 'en', 1, 'https://ror.org/02npm8404 Eidgenƶssisches Nuklearsicherheitsinspektorat Swiss Federal Nuclear Safety Inspectorate'),
(115583, 'https://ror.org/05qx80v97', 'en', 1, 'https://ror.org/05qx80v97 Scope Australia'),
(115584, 'https://ror.org/001gw2c60', 'id', 1, 'https://ror.org/001gw2c60 Universitas Muhammadiyah Luwuk Banggai'),
(115585, 'https://ror.org/041c6tx10', 'en', 1, 'https://ror.org/041c6tx10 Southwest General Health Center'),
(115586, 'https://ror.org/01r9cjg27', 'en', 1, 'https://ror.org/01r9cjg27 Beijing Federation of Social Science Circles åŒ—äŗ¬åø‚ē¤¾ä¼šē§‘å­¦ē•Œč”åˆä¼š'),
(115587, 'https://ror.org/014xxfg68', 'en', 1, 'https://ror.org/014xxfg68 Hackensack Meridian School of Medicine'),
(115588, 'https://ror.org/05vheqh10', 'no_lang_code', 1, 'https://ror.org/05vheqh10 Genomic (Brazil)'),
(115589, 'https://ror.org/034tqw466', 'en', 1, 'https://ror.org/034tqw466 Grozny State Oil Technical University named after Academician MD Millionshtchikov Грозненский Š³Š¾ŃŃƒŠ“арственный Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика М. Š”. ŠœŠøŠ»Š»ŠøŠ¾Š½Ń‰ŠøŠŗŠ¾Š²Š°'),
(115590, 'https://ror.org/02xfp8v59', 'pt', 1, 'https://ror.org/02xfp8v59 Universidade de BrasĆ­lia University of BrasĆ­lia'),
(115591, 'https://ror.org/019wt1929', 'en', 1, 'https://ror.org/019wt1929 Sheffield Hallam University'),
(115592, 'https://ror.org/02j530k95', 'fr', 1, 'https://ror.org/02j530k95 Ɖcole SupĆ©rieure de Chimie Organique et MinĆ©rale'),
(115593, 'https://ror.org/04arzfe69', 'no_lang_code', 1, 'https://ror.org/04arzfe69 Centro Agricoltura Ambiente (Italy)'),
(115594, 'https://ror.org/04hbhf775', 'en', 1, 'https://ror.org/04hbhf775 Frontier Science & Technology Research Foundation'),
(115595, 'https://ror.org/03kn92f86', 'id', 1, 'https://ror.org/03kn92f86 Politeknik APP Jakarta'),
(115596, 'https://ror.org/00337p258', 'no_lang_code', 1, 'https://ror.org/00337p258 Koshien University ē”²å­åœ’å¤§å­¦'),
(115597, 'https://ror.org/056yadh79', 'en', 1, 'https://ror.org/056yadh79 Institut National de Recherche en Education National Institute for Research in Education المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ للبحث في Ų§Ł„ŲŖŲ±ŲØŁŠŲ©'),
(115598, 'https://ror.org/00kaycc68', 'en', 1, 'https://ror.org/00kaycc68 Hefei Cement Research Design Institute åˆč‚„ę°“ę³„ē ”ē©¶č®¾č®”é™¢'),
(115599, 'https://ror.org/03qe1mf77', 'en', 1, 'https://ror.org/03qe1mf77 Scientific and Production Association. S.A. Lavochkin'),
(115600, 'https://ror.org/03pek4v37', 'pt', 1, 'https://ror.org/03pek4v37 Instituto de Olhos de Goiânia'),
(115601, 'https://ror.org/03hz7e558', 'en', 1, 'https://ror.org/03hz7e558 Institute of Economic Affairs'),
(115602, 'https://ror.org/021y4b202', 'pt', 1, 'https://ror.org/021y4b202 Fundação de Apoio à Pesquisa do Estado da Paraíba'),
(115603, 'https://ror.org/01e6qks80', 'en', 1, 'https://ror.org/01e6qks80 Dalhousie University'),
(115604, 'https://ror.org/0495w3f17', 'en', 1, 'https://ror.org/0495w3f17 Dabas aizsardzības pārvalde Nature Conservation Agency'),
(115605, 'https://ror.org/02f8a6404', 'en', 1, 'https://ror.org/02f8a6404 Albanian University'),
(115606, 'https://ror.org/005wzfh51', 'en', 1, 'https://ror.org/005wzfh51 SKiN Health'),
(115607, 'https://ror.org/05jn4y223', 'en', 1, 'https://ror.org/05jn4y223 NewSchool of Architecture and Design'),
(115608, 'https://ror.org/00rg88503', 'fr', 1, 'https://ror.org/00rg88503 Centre de Recherche MƩdicales de LambarƩnƩ'),
(115609, 'https://ror.org/050ayhm33', 'en', 1, 'https://ror.org/050ayhm33 The Stables'),
(115610, 'https://ror.org/04jq4fp50', 'de', 1, 'https://ror.org/04jq4fp50 TECHNOSEUM TECHNOSEUM Landesmuseum für Technik und Arbeit in Mannheim'),
(115611, 'https://ror.org/00rq9ec10', 'en', 1, 'https://ror.org/00rq9ec10 Mardan Medical Complex, Mardan'),
(115612, 'https://ror.org/00g1aet23', 'en', 1, 'https://ror.org/00g1aet23 Ocean Risk and Resilience Action Alliance'),
(115613, '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 Российский Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ центр суГебной ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ при ŠœŠøŠ½ŠøŃŃ‚ерстве ŃŽŃŃ‚ŠøŃ†ŠøŠø Российской ФеГерации'),
(115614, 'https://ror.org/03054hf98', 'en', 1, 'https://ror.org/03054hf98 Ider University Š˜Š“ŃŃ€ Š“ŃŃŠ“ ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(115615, 'https://ror.org/056xr2125', 'en', 1, 'https://ror.org/056xr2125 Finnish Medical Society Duodecim Suomalainen LƤƤkƤriseura Duodecim'),
(115616, 'https://ror.org/01cfwn742', 'en', 1, 'https://ror.org/01cfwn742 Center of Military History U.S. Army Center of Military History'),
(115617, 'https://ror.org/04vx9dd09', 'no_lang_code', 1, 'https://ror.org/04vx9dd09 Lego (Denmark)'),
(115618, 'https://ror.org/04qchsx62', 'de', 1, 'https://ror.org/04qchsx62 IGES Institut Institut für Gesundheits- und Sozialforschung'),
(115619, 'https://ror.org/059ffxx34', 'en', 1, 'https://ror.org/059ffxx34 TissuPath'),
(115620, 'https://ror.org/01eem7e49', 'en', 1, 'https://ror.org/01eem7e49 Benha National University Ų¬Ų§Ł…Ų¹Ų© بنها Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(115621, 'https://ror.org/01w9z6890', 'en', 1, 'https://ror.org/01w9z6890 State Key Laboratory of Explosion Science and Safety Protection ēˆ†ē‚øē§‘å­¦äøŽå®‰å…Øé˜²ęŠ¤å…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(115622, 'https://ror.org/00awd9g61', 'en', 1, 'https://ror.org/00awd9g61 The Graduate Center, CUNY'),
(115623, 'https://ror.org/04dk1kp26', 'en', 1, 'https://ror.org/04dk1kp26 Auburn Hospital'),
(115624, 'https://ror.org/019vbp610', 'en', 1, 'https://ror.org/019vbp610 Siberian State University of Telecommunications and Information Science Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹ Šø информатики'),
(115625, 'https://ror.org/02thnee40', 'no_lang_code', 1, 'https://ror.org/02thnee40 Keiyukai Sapporo Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęµä½‘ä¼šęœ­å¹Œē—…é™¢'),
(115626, 'https://ror.org/02f4g9771', 'en', 1, 'https://ror.org/02f4g9771 Blagoveschensk State Pedagogical University Благовещенский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115627, 'https://ror.org/00bsxeq86', 'no_lang_code', 1, 'https://ror.org/00bsxeq86 Syreon Research Institute Syreon Research Institute (Hungary)'),
(115628, 'https://ror.org/001zf8v27', 'en', 0, 'https://ror.org/001zf8v27 Institute for Interdisciplinary Studies of Austrian Universities'),
(115629, 'https://ror.org/04636qj46', 'en', 1, 'https://ror.org/04636qj46 Manmohan Memorial Institute of Health Sciences'),
(115630, 'https://ror.org/03ws81249', 'en', 1, 'https://ror.org/03ws81249 Karary University Ų¬Ų§Ł…Ų¹Ų© كرري'),
(115631, 'https://ror.org/03rs37749', 'en', 1, 'https://ror.org/03rs37749 MƩtis-Lab'),
(115632, 'https://ror.org/01rrz9s51', 'en', 1, 'https://ror.org/01rrz9s51 Victoria University'),
(115633, 'https://ror.org/05s409k40', 'en', 1, 'https://ror.org/05s409k40 University School of Nashville'),
(115634, 'https://ror.org/01naq7912', 'fr', 1, 'https://ror.org/01naq7912 TƩlƩcom Paris'),
(115635, 'https://ror.org/05xv66680', 'en', 1, 'https://ror.org/05xv66680 Royal Rehabilitation Centre'),
(115636, 'https://ror.org/02crnef85', 'en', 1, 'https://ror.org/02crnef85 IIHMR University'),
(115637, 'https://ror.org/01ev8n617', 'en', 1, 'https://ror.org/01ev8n617 American Association of Variable Star Observers'),
(115638, 'https://ror.org/0287xzx52', 'en', 1, 'https://ror.org/0287xzx52 Republican Research Center for Radiation Medicine and Human Ecology'),
(115639, 'https://ror.org/006fc7318', 'no_lang_code', 1, 'https://ror.org/006fc7318 Cemka-Eval (France)'),
(115640, 'https://ror.org/04ds5nc25', 'en', 1, 'https://ror.org/04ds5nc25 Arthritis Research Centre of Canada'),
(115641, 'https://ror.org/02xey9634', 'no_lang_code', 1, 'https://ror.org/02xey9634 Amazon (United Kingdom)'),
(115642, 'https://ror.org/05ecd4168', 'no_lang_code', 1, 'https://ror.org/05ecd4168 Chongqing Electromechanical Holdings (China) é‡åŗ†ęœŗē”µęŽ§č‚”'),
(115643, 'https://ror.org/0542g3d58', 'en', 1, 'https://ror.org/0542g3d58 Royal Historical Society'),
(115644, 'https://ror.org/01c6fkf84', 'en', 1, 'https://ror.org/01c6fkf84 National Gallery of Denmark Statens Museum for Kunst'),
(115645, 'https://ror.org/01nry9c15', 'en', 1, 'https://ror.org/01nry9c15 Fundació Pasqual Maragall Pasqual Maragall Foundation'),
(115646, 'https://ror.org/05gsxqf59', 'en', 1, 'https://ror.org/05gsxqf59 European Society for Organ Transplantation SocietĆ  europea per il trapianto di organi'),
(115647, 'https://ror.org/02w3h2896', 'es', 1, 'https://ror.org/02w3h2896 Civil Guard Guardia Civil'),
(115648, 'https://ror.org/01gjnjy30', 'no_lang_code', 1, 'https://ror.org/01gjnjy30 Medical Diagnostic Laboratories (United States)'),
(115649, 'https://ror.org/01101ex45', 'en', 1, 'https://ror.org/01101ex45 Institut za uporedno pravo Institute of Comparative Law'),
(115650, 'https://ror.org/0434dtp78', 'uz', 0, 'https://ror.org/0434dtp78 Bukhara Engineering and Technological Institute Buxoro muhandislik-texnologiya instituti'),
(115651, 'https://ror.org/03y9hjd03', 'no_lang_code', 1, 'https://ror.org/03y9hjd03 Structural Integrity Associates (United States)'),
(115652, 'https://ror.org/03ac3bx22', 'en', 1, 'https://ror.org/03ac3bx22 South African Reserve Bank Suid-Afrikaanse Reserwebank'),
(115653, 'https://ror.org/04jh85880', 'en', 1, 'https://ror.org/04jh85880 National League for Nursing'),
(115654, 'https://ror.org/006wv0v54', 'en', 1, 'https://ror.org/006wv0v54 Walbrook Institute London'),
(115655, 'https://ror.org/00x20bn20', 'en', 1, 'https://ror.org/00x20bn20 Basavatarakam Indo American Cancer Hospital and Research Institute'),
(115656, 'https://ror.org/012gxwa15', 'no_lang_code', 1, 'https://ror.org/012gxwa15 Tokai Rika (Japan) ę±ęµ·ē†åŒ– ę Ŗå¼ä¼šē¤¾ę±ęµ·ē†åŒ– ę Ŗå¼ä¼šē¤¾ę±ęµ·ē†åŒ–é›»ę©Ÿč£½ä½œę‰€'),
(115657, 'https://ror.org/03cz13y64', 'no_lang_code', 1, 'https://ror.org/03cz13y64 British Steel (United Kingdom)'),
(115658, 'https://ror.org/050kcr883', 'en', 1, 'https://ror.org/050kcr883 Illinois State University Universidad del Estado de Illinois UniversitĆ© d''Ɖtat de l''illinois'),
(115659, 'https://ror.org/03v6yxf25', 'fr', 1, 'https://ror.org/03v6yxf25 Institut National de la Statistique et des Etudes Economiques National Institute of Statistics and Economic Studies'),
(115660, 'https://ror.org/03m2f4c21', 'en', 1, 'https://ror.org/03m2f4c21 Frontier Science Foundation-Hellas'),
(115661, 'https://ror.org/05v86fk30', 'no_lang_code', 1, 'https://ror.org/05v86fk30 Ironwood Pharmaceuticals Ironwood Pharmaceuticals (United States)'),
(115662, 'https://ror.org/01mc23556', 'cs', 1, 'https://ror.org/01mc23556 KrajskĆ” Nemocnice Liberec'),
(115663, 'https://ror.org/05mf3wf75', 'nl', 1, 'https://ror.org/05mf3wf75 ''s Heeren Loo'),
(115664, 'https://ror.org/03092z988', 'en', 1, 'https://ror.org/03092z988 Saint Petersburg State University of Civil Aviation Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ гражГанской авиации'),
(115665, 'https://ror.org/04039yq48', 'en', 1, 'https://ror.org/04039yq48 Dharmais Cancer Hospital RS Kanker Dharmais'),
(115666, 'https://ror.org/02wxe0t87', 'es', 1, 'https://ror.org/02wxe0t87 Centro Español de Investigación Farmacoepidemiológica Spanish Centre for Pharmacoepidemiologic Research'),
(115667, 'https://ror.org/0148zjm56', 'en', 1, 'https://ror.org/0148zjm56 Nova Institute Nova Institute NPC'),
(115668, 'https://ror.org/00aqt9352', 'en', 1, 'https://ror.org/00aqt9352 Turkish Academy of Sciences'),
(115669, 'https://ror.org/04hbame29', 'en', 1, 'https://ror.org/04hbame29 Gheskio Centers'),
(115670, 'https://ror.org/04c04g438', 'en', 1, 'https://ror.org/04c04g438 LifeWatch ERIC'),
(115671, 'https://ror.org/05507e858', 'id', 1, 'https://ror.org/05507e858 Universitas Bondowoso'),
(115672, 'https://ror.org/00ges3302', 'en', 1, 'https://ror.org/00ges3302 Western Reserve Hospital'),
(115673, 'https://ror.org/05qx0rc07', 'it', 1, 'https://ror.org/05qx0rc07 Istituto di Ricerche Chimiche e Biochimiche G. Ronzoni'),
(115674, 'https://ror.org/01fkkqt55', 'it', 1, 'https://ror.org/01fkkqt55 Biblioteca Leonardiana di Vinci'),
(115675, 'https://ror.org/0085d9t86', 'en', 1, 'https://ror.org/0085d9t86 Xavier University of Louisiana'),
(115676, 'https://ror.org/050n1g146', 'en', 1, 'https://ror.org/050n1g146 Innovations for Ocean Action Foundation'),
(115677, 'https://ror.org/036ymcv65', 'en', 1, 'https://ror.org/036ymcv65 Payampersa Language Institute Ł…ŁˆŲ³Ų³Ł‡ ŁŲ±Ł‡Ł†ŚÆŪŒ Ł‡Ł†Ų±ŪŒ Ł¾ŪŒŲ§Ł… پرسا'),
(115678, 'https://ror.org/05jtnhy61', 'en', 1, 'https://ror.org/05jtnhy61 Bệnh viện Nhi đồng 1 Children''s Hospital 1'),
(115679, 'https://ror.org/04ykrg907', 'en', 1, 'https://ror.org/04ykrg907 Atlantic University'),
(115680, 'https://ror.org/03p4sac31', 'en', 1, 'https://ror.org/03p4sac31 Shatsk National Natural Park'),
(115681, 'https://ror.org/04n8xnv74', 'pt', 1, 'https://ror.org/04n8xnv74 Sociedade Brasileira de Oncologia ClĆ­nica'),
(115682, 'https://ror.org/00b7ckn36', 'en', 1, 'https://ror.org/00b7ckn36 Bellevue University'),
(115683, 'https://ror.org/006kxhp52', 'en', 1, 'https://ror.org/006kxhp52 Organisation des Nations Unies Organización de las Naciones Unidas United Nations'),
(115684, 'https://ror.org/00heh5r55', 'en', 1, 'https://ror.org/00heh5r55 EvolúciótudomÔnyi Intézet Institute of Evolution'),
(115685, 'https://ror.org/05w8xh322', 'en', 1, 'https://ror.org/05w8xh322 Academic University الجامعة Ų§Ł„Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(115686, 'https://ror.org/02hs8rd37', 'no_lang_code', 1, 'https://ror.org/02hs8rd37 Agrico (Netherlands)'),
(115687, 'https://ror.org/008s23110', 'no_lang_code', 1, 'https://ror.org/008s23110 Metso (Finland)'),
(115688, 'https://ror.org/02b4rb907', 'ro', 1, 'https://ror.org/02b4rb907 Institutul Național de Endocrinologie C.I. Parhon'),
(115689, 'https://ror.org/05m2fqn25', 'no_lang_code', 1, 'https://ror.org/05m2fqn25 Chiang Mai University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(115690, 'https://ror.org/00sgv1989', 'en', 1, 'https://ror.org/00sgv1989 Concurrent Technologies Corporation'),
(115691, 'https://ror.org/02k3grx88', 'no_lang_code', 1, 'https://ror.org/02k3grx88 KazMunayGas (Kazakhstan) ŅšŠ°Š·ŠœŅ±Š½Š°Š¹Š“Š°Š·'),
(115692, 'https://ror.org/032t2sn55', 'id', 1, 'https://ror.org/032t2sn55 Universitas Wisnuwardhana Malang'),
(115693, 'https://ror.org/004v5tb85', 'en', 1, 'https://ror.org/004v5tb85 Ministry of Science, Research and Technology وزارت Ų¹Ł„ŁˆŁ…ŲŒ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ و ŁŁ†Ų§ŁˆŲ±ŪŒ'),
(115694, 'https://ror.org/03qcxsn76', 'en', 1, 'https://ror.org/03qcxsn76 Mental Health Commission'),
(115695, 'https://ror.org/01bsyz889', 'nl', 1, 'https://ror.org/01bsyz889 Nederlandse Vereniging voor Kindergeneeskunde'),
(115696, 'https://ror.org/03eecf728', 'en', 1, 'https://ror.org/03eecf728 Loras College'),
(115697, 'https://ror.org/02pxntn72', 'en', 1, 'https://ror.org/02pxntn72 Hebei Food Inspection and Research Institute ę²³åŒ—ēœé£Ÿå“ę£€éŖŒē ”ē©¶é™¢'),
(115698, 'https://ror.org/034nqjm29', 'en', 1, 'https://ror.org/034nqjm29 Houston Community College System'),
(115699, 'https://ror.org/02vw8cm83', 'no', 1, 'https://ror.org/02vw8cm83 Norsar'),
(115700, 'https://ror.org/03ytm9f32', 'de', 1, 'https://ror.org/03ytm9f32 Klinik Bad Reichenhall'),
(115701, 'https://ror.org/04tprjr04', 'en', 1, 'https://ror.org/04tprjr04 Nippon Steel Yawata Memorial Hospital č£½é‰„čØ˜åæµå…«å¹”ē—…é™¢'),
(115702, 'https://ror.org/01dpkyq75', 'en', 1, 'https://ror.org/01dpkyq75 Cancer Trials Ireland'),
(115703, 'https://ror.org/017bedv79', 'en', 1, 'https://ror.org/017bedv79 Ruby Hall Clinic'),
(115704, 'https://ror.org/04t35nt16', 'en', 1, 'https://ror.org/04t35nt16 Durrell Wildlife Conservation Trust'),
(115705, 'https://ror.org/028x4en59', 'en', 1, 'https://ror.org/028x4en59 Climate Centre'),
(115706, 'https://ror.org/0366k5v88', 'pt', 1, 'https://ror.org/0366k5v88 Instituto de Tecnologia de Pernambuco'),
(115707, 'https://ror.org/026x8jh45', 'en', 1, 'https://ror.org/026x8jh45 Dutch Centre for Field Ornithology Niederländisches Zentrum für Feldornithologie'),
(115708, 'https://ror.org/03s1ada23', 'no_lang_code', 1, 'https://ror.org/03s1ada23 punctum books punctum books (United Sates)'),
(115709, 'https://ror.org/051wtqx62', 'en', 1, 'https://ror.org/051wtqx62 Molecular Concepts Research'),
(115710, 'https://ror.org/034zy7551', 'en', 1, 'https://ror.org/034zy7551 Copenhagen Prospective Studies on Asthma in Childhood'),
(115711, 'https://ror.org/03bke4038', 'es', 1, 'https://ror.org/03bke4038 Hospital general de San Fernando San Fernando General Hospital'),
(115712, 'https://ror.org/004af2v94', 'en', 1, 'https://ror.org/004af2v94 Braude College of Engineering Karmiel המכללה ×”××§×“×ž×™×Ŗ להנדהה בראודה ×‘×›×Ø×ž×™××œ'),
(115713, 'https://ror.org/02qd0cv38', 'en', 1, 'https://ror.org/02qd0cv38 Danish Institute for Human Rights Institut for Menneskerettigheder'),
(115714, 'https://ror.org/01rt6qg79', 'no_lang_code', 1, 'https://ror.org/01rt6qg79 Suzano (Brazil)'),
(115715, 'https://ror.org/00d43qx15', 'en', 1, 'https://ror.org/00d43qx15 Roztoczański Park Narodowy Roztocze National Park'),
(115716, 'https://ror.org/02aqrmp51', 'en', 1, 'https://ror.org/02aqrmp51 Austrian Red Cross Ɩsterreichisches Rotes Kreuz'),
(115717, 'https://ror.org/02wvjw989', 'en', 1, 'https://ror.org/02wvjw989 Dr. K.N.Modi University ą¤”ą„‰. ą¤•ą„‡.ą¤ą¤Ø.ą¤®ą„‹ą¤¦ą„€ ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(115718, 'https://ror.org/01e949s12', 'en', 1, 'https://ror.org/01e949s12 SAGE University Bhopal'),
(115719, 'https://ror.org/02td4ph55', 'no_lang_code', 1, 'https://ror.org/02td4ph55 Hologic (United States)'),
(115720, 'https://ror.org/03jdskm89', 'en', 1, 'https://ror.org/03jdskm89 Walmart Foundation'),
(115721, 'https://ror.org/00qwj7906', 'no_lang_code', 1, 'https://ror.org/00qwj7906 EA Technology'),
(115722, 'https://ror.org/04bxcqt73', 'en', 1, 'https://ror.org/04bxcqt73 United Nations Global Compact'),
(115723, 'https://ror.org/03rv23z49', 'id', 1, 'https://ror.org/03rv23z49 Pat Petulai University Universitas Pat Petulai'),
(115724, 'https://ror.org/00zpwa373', 'it', 1, 'https://ror.org/00zpwa373 Fondazione Italiana Fegato Italian Liver Foundation'),
(115725, 'https://ror.org/03w2z6524', 'en', 1, 'https://ror.org/03w2z6524 Gansu Education Department ē”˜č‚ƒēœę•™č‚²åŽ…'),
(115726, 'https://ror.org/01hx6v225', 'en', 1, 'https://ror.org/01hx6v225 Champlain College'),
(115727, 'https://ror.org/01kq09n77', 'no_lang_code', 1, 'https://ror.org/01kq09n77 Altarum Institute'),
(115728, 'https://ror.org/04k9e4w52', 'en', 1, 'https://ror.org/04k9e4w52 Waterford Institute'),
(115729, 'https://ror.org/01ka4j351', 'en', 0, 'https://ror.org/01ka4j351 Northwest Regional Development Agency'),
(115730, 'https://ror.org/02fapb125', 'sv', 1, 'https://ror.org/02fapb125 Majblommans Riksfƶrbund'),
(115731, 'https://ror.org/05wdzq856', 'en', 1, 'https://ror.org/05wdzq856 Institute for Atherosclerosis Research'),
(115732, 'https://ror.org/04g3z9997', 'en', 1, 'https://ror.org/04g3z9997 Kanchi Kamakoti CHILDS Trust Hospital'),
(115733, 'https://ror.org/01exgks31', 'en', 1, 'https://ror.org/01exgks31 Nigerian Institute for Oceanography and Marine Research'),
(115734, 'https://ror.org/00zn8rh30', 'en', 1, 'https://ror.org/00zn8rh30 National Association for the Self-Employed'),
(115735, 'https://ror.org/0229a6d71', 'en', 1, 'https://ror.org/0229a6d71 Institut za javne financije Institute of Public Finance'),
(115736, 'https://ror.org/0460jpj73', 'en', 1, 'https://ror.org/0460jpj73 Universidad de Concepción University of Concepción'),
(115737, 'https://ror.org/03vt4hz19', 'en', 1, 'https://ror.org/03vt4hz19 Belarusian State University of Transport Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń‚Ń€Š°Š½ŃŠæŠ°Ń€Ń‚Ńƒ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ транспорта'),
(115738, 'https://ror.org/05dpzfc16', 'nl', 0, 'https://ror.org/05dpzfc16 Ziekenhuisnetwerk Antwerpen Stuivenberg'),
(115739, 'https://ror.org/04fp8ns78', 'en', 1, 'https://ror.org/04fp8ns78 Bijwerkingen Centrum Lareb Netherlands Pharmacovigilance Centre Lareb'),
(115740, 'https://ror.org/014rxe718', 'en', 1, 'https://ror.org/014rxe718 Russian Scientific Research Institute of Traumatology and Orthopedics named after R.R. Vreden ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии им. Š .Š .ВреГена'),
(115741, 'https://ror.org/04yhntq62', 'en', 1, 'https://ror.org/04yhntq62 Krishna University'),
(115742, 'https://ror.org/02nkg1w23', 'es', 1, 'https://ror.org/02nkg1w23 Consejería de Universidad, Investigación e Innovación'),
(115743, 'https://ror.org/05a1dws80', 'fr', 1, 'https://ror.org/05a1dws80 Mines Saint-Ɖtienne Ɖcole Nationale SupĆ©rieure des Mines de Saint-Ɖtienne'),
(115744, 'https://ror.org/004bh1g50', 'en', 1, 'https://ror.org/004bh1g50 National Horticultural Research Institute'),
(115745, 'https://ror.org/0034k2773', 'en', 1, 'https://ror.org/0034k2773 Louisiana Cancer Research Consortium'),
(115746, 'https://ror.org/00sbaqa70', 'en', 1, 'https://ror.org/00sbaqa70 American Urological Association'),
(115747, 'https://ror.org/00k1qja49', 'ca', 1, 'https://ror.org/00k1qja49 Catalan Institute of Nanoscience and Nanotechnology Institut Català de Nanociència i Nanotecnologia Instituto CatalÔn de Nanociencia y Nanotecnología'),
(115748, 'https://ror.org/03jayhg97', 'no_lang_code', 1, 'https://ror.org/03jayhg97 Milad Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł…ŪŒŁ„Ų§ŲÆ'),
(115749, 'https://ror.org/00kk89y84', 'fr', 1, 'https://ror.org/00kk89y84 Ecologie, SociƩtƩ, Evolution'),
(115750, 'https://ror.org/02gq3ch54', 'en', 1, 'https://ror.org/02gq3ch54 Observational & Pragmatic Research Institute'),
(115751, 'https://ror.org/03q0dfp67', 'en', 1, 'https://ror.org/03q0dfp67 Catholic University of Central Africa UniversitƩ catholique d''afrique centrale'),
(115752, 'https://ror.org/02hcmqg97', 'fr', 1, 'https://ror.org/02hcmqg97 Fonds SpƩciaux de Recherche'),
(115753, 'https://ror.org/00f7n4397', 'pt', 1, 'https://ror.org/00f7n4397 Tribunal de JustiƧa de Pernambuco'),
(115754, 'https://ror.org/028yn3418', 'en', 1, 'https://ror.org/028yn3418 Institute of Architecture and Urban & Spatial Planning of Serbia Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ńƒ Šø ŃƒŃ€Š±Š°Š½ŠøŠ·Š°Š¼ Š”Ń€Š±ŠøŃ˜Šµ'),
(115755, 'https://ror.org/044nhav08', 'id', 1, 'https://ror.org/044nhav08 Institut Sains dan Teknologi Al-Kamal'),
(115756, 'https://ror.org/00khy9f46', 'no_lang_code', 1, 'https://ror.org/00khy9f46 Sonoma Technology (United States)'),
(115757, 'https://ror.org/04w6pnc49', 'en', 1, 'https://ror.org/04w6pnc49 Hungarian Research Network Magyar KutatÔsi HÔlózat'),
(115758, 'https://ror.org/00gktjq65', 'en', 1, 'https://ror.org/00gktjq65 National Institute of Cardiovascular Diseases'),
(115759, 'https://ror.org/0526r9902', 'en', 1, 'https://ror.org/0526r9902 Kenya Forest Service'),
(115760, 'https://ror.org/050xscb48', 'en', 1, 'https://ror.org/050xscb48 TropIQ Health Sciences'),
(115761, 'https://ror.org/03n9hr695', 'no_lang_code', 1, 'https://ror.org/03n9hr695 China National GeneBank å›½å®¶åŸŗå› åŗ“'),
(115762, 'https://ror.org/04mdfaw94', 'no_lang_code', 1, 'https://ror.org/04mdfaw94 US Biologic (United States)'),
(115763, 'https://ror.org/003js3p07', 'en', 1, 'https://ror.org/003js3p07 University of Valley Forge'),
(115764, 'https://ror.org/01be0e870', 'no_lang_code', 1, 'https://ror.org/01be0e870 Nutrition 21 (United States)'),
(115765, 'https://ror.org/05djtcm98', 'id', 1, 'https://ror.org/05djtcm98 Universitas Islam Jakarta'),
(115766, 'https://ror.org/05sjznd72', 'en', 1, 'https://ror.org/05sjznd72 Morinomiya University of Medical Sciences ę£®ćƒŽå®®åŒ»ē™‚å¤§å­¦'),
(115767, 'https://ror.org/05w603h94', 'pl', 1, 'https://ror.org/05w603h94 Instytut Badań Rynku, Konsumpcji i Koniunktur'),
(115768, 'https://ror.org/00c0xnc19', 'en', 1, 'https://ror.org/00c0xnc19 MEDICA Research Investigation'),
(115769, 'https://ror.org/04dz7pm02', 'sv', 1, 'https://ror.org/04dz7pm02 Djurkliniken Roslagstull'),
(115770, 'https://ror.org/023vyrd34', 'pt', 1, 'https://ror.org/023vyrd34 Centro de Referência em Informação Ambiental Reference Center on Environmental Information'),
(115771, 'https://ror.org/0560e8961', 'en', 1, 'https://ror.org/0560e8961 Hamburg School of Business Administration'),
(115772, 'https://ror.org/04625e684', 'es', 1, 'https://ror.org/04625e684 Centro Peruano de Estudios Sociales'),
(115773, 'https://ror.org/01m3kj726', 'en', 1, 'https://ror.org/01m3kj726 American Council on Education'),
(115774, 'https://ror.org/034cagk98', 'en', 1, 'https://ror.org/034cagk98 Copenhagen Institute for Futures Studies Instituttet for Fremtidsforskning'),
(115775, 'https://ror.org/044pgyv50', 'no_lang_code', 1, 'https://ror.org/044pgyv50 Research!America (United States)'),
(115776, 'https://ror.org/00wxjqb77', 'de', 1, 'https://ror.org/00wxjqb77 Klinikum Mittelbaden'),
(115777, 'https://ror.org/00pkt4594', 'no_lang_code', 1, 'https://ror.org/00pkt4594 Autodesk (United States)'),
(115778, 'https://ror.org/01ygp7b39', 'en', 1, 'https://ror.org/01ygp7b39 National Law University Jodhpur'),
(115779, 'https://ror.org/05n31vd29', 'en', 1, 'https://ror.org/05n31vd29 Czech National Bank ČeskÔ nÔrodní banka'),
(115780, 'https://ror.org/0446n1b44', 'de', 1, 'https://ror.org/0446n1b44 Schwarzwald-Baar Klinikum'),
(115781, 'https://ror.org/011wpwt21', 'en', 1, 'https://ror.org/011wpwt21 Southwestern Law School'),
(115782, 'https://ror.org/01v4kb744', 'no_lang_code', 1, 'https://ror.org/01v4kb744 Larsen & Toubro (India)'),
(115783, 'https://ror.org/05n8fe870', 'en', 1, 'https://ror.org/05n8fe870 American University in Bulgaria Американски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(115784, 'https://ror.org/010aat311', 'en', 1, 'https://ror.org/010aat311 Dyson Institute of Engineering and Technology'),
(115785, 'https://ror.org/03knfbb08', 'sv', 1, 'https://ror.org/03knfbb08 IQ SamhƤllsbyggnad'),
(115786, 'https://ror.org/00x6wnm78', 'en', 1, 'https://ror.org/00x6wnm78 Central Asian University'),
(115787, 'https://ror.org/050fh0z31', 'en', 1, 'https://ror.org/050fh0z31 Queen Giovanna Hospital болница Царица Йоанна'),
(115788, 'https://ror.org/0406m4x33', 'fr', 1, 'https://ror.org/0406m4x33 Sciences Po Aix'),
(115789, 'https://ror.org/04wnc7270', 'en', 1, 'https://ror.org/04wnc7270 Complex Engineering System Institute Instituto Sistemas Complejos de IngenierĆ­a'),
(115790, 'https://ror.org/04brn7x66', 'en', 1, 'https://ror.org/04brn7x66 Technological Educational Institute of Epirus Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ηπείρου'),
(115791, 'https://ror.org/03b8ydc26', 'no_lang_code', 1, 'https://ror.org/03b8ydc26 Ciro'),
(115792, 'https://ror.org/04nm1xm49', 'en', 1, 'https://ror.org/04nm1xm49 Hainan Provincial Health Commission ęµ·å—ēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(115793, 'https://ror.org/03n0q0765', 'de', 1, 'https://ror.org/03n0q0765 Landesklinikum Korneuburg'),
(115794, 'https://ror.org/02xztm077', 'en', 1, 'https://ror.org/02xztm077 Educational Research Institute'),
(115795, 'https://ror.org/04wk53b95', 'en', 1, 'https://ror.org/04wk53b95 University of Djibouti UniversitƩ de djibouti'),
(115796, 'https://ror.org/01rrc6194', 'en', 1, 'https://ror.org/01rrc6194 VƤsterƄs Municipality'),
(115797, 'https://ror.org/002f2sy95', 'en', 1, 'https://ror.org/002f2sy95 Avila University');
INSERT INTO `rors` VALUES
(115798, 'https://ror.org/04jrjqp75', 'en', 1, 'https://ror.org/04jrjqp75 National Institute of Grape and Wine "Magarach" Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ винограГарства Šø Š²ŠøŠ½Š¾Š“ŠµŠ»ŠøŃ Ā«ŠœŠ°Š³Š°Ń€Š°Ń‡Ā»'),
(115799, 'https://ror.org/01kxjy285', 'en', 1, 'https://ror.org/01kxjy285 Buidheann DƬon ƀrainneachd na h-Alba Scottish Environment Protection Agency'),
(115800, 'https://ror.org/015rsn094', 'ro', 1, 'https://ror.org/015rsn094 Academia Romana Filiala Cluj-Napoca'),
(115801, 'https://ror.org/02nxwxd50', 'en', 1, 'https://ror.org/02nxwxd50 Brihan Maharashtra College of Commerce (Autonomous)'),
(115802, 'https://ror.org/04ntc3565', 'no_lang_code', 1, 'https://ror.org/04ntc3565 Advanced Materials and Devices (United States)'),
(115803, 'https://ror.org/027ynca27', 'no_lang_code', 1, 'https://ror.org/027ynca27 Formosa Plastics (Taiwan) Formosa Plastics Group å°ē£å”‘č† å…¬åø å°ē£å”‘č† å·„ę„­č‚”ä»½ęœ‰é™å…¬åø'),
(115804, 'https://ror.org/05qn5hd16', 'en', 1, 'https://ror.org/05qn5hd16 Hass Avocado Board'),
(115805, 'https://ror.org/04aaa2n62', 'en', 1, 'https://ror.org/04aaa2n62 Andrews University Universidad Andrews'),
(115806, 'https://ror.org/01b33j376', 'en', 1, 'https://ror.org/01b33j376 Academy of Fine Arts in Katowice Akademia Sztuk Pięknych w Katowicach'),
(115807, 'https://ror.org/0309m1r07', 'en', 1, 'https://ror.org/0309m1r07 Institut für Vogelforschung "Vogelwarte Helgolandā€œ Institute of Avian Research'),
(115808, 'https://ror.org/05x5km989', 'fr', 1, 'https://ror.org/05x5km989 Fondation Pour la Recherche Sur la BiodiversitƩ French Foundation for Biodiversity Research'),
(115809, 'https://ror.org/05dzhka64', 'en', 1, 'https://ror.org/05dzhka64 Dr. Agarwal''s Eye Hospital'),
(115810, 'https://ror.org/00pkwdr13', 'en', 1, 'https://ror.org/00pkwdr13 Cecil College'),
(115811, 'https://ror.org/03tkv5n25', 'en', 1, 'https://ror.org/03tkv5n25 Państwowe Muzeum Archeologiczne State Archaeological Museum'),
(115812, 'https://ror.org/009p8zv69', 'en', 1, 'https://ror.org/009p8zv69 King Abdullah International Medical Research Center Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ الله Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠ للأبحاث Ų§Ł„Ų·ŲØŁŠŲ©'),
(115813, 'https://ror.org/007j02p07', 'en', 1, 'https://ror.org/007j02p07 Maulana Abul Kalam Azad Institute of Asian Studies মৌলানা আবুল কালাম ą¦†ą¦œą¦¾ą¦¦ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦øą§ą¦Ÿą¦¾ą¦”ą¦æą¦œ'),
(115814, 'https://ror.org/035hn3t86', 'en', 1, 'https://ror.org/035hn3t86 Staatliches Museum für Naturkunde Karlsruhe State Museum of Natural History Karlsruhe'),
(115815, 'https://ror.org/051pzmv95', 'en', 1, 'https://ror.org/051pzmv95 Yamaguchi Prefecture Central Hospital å±±å£ēœŒē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(115816, 'https://ror.org/03yme6x53', 'en', 1, 'https://ror.org/03yme6x53 International Business School'),
(115817, 'https://ror.org/02m2as397', 'en', 1, 'https://ror.org/02m2as397 Centenary College of Louisiana'),
(115818, 'https://ror.org/03yyjfh87', 'ro', 1, 'https://ror.org/03yyjfh87 Institute of Educational Sciences Institutul de Științe ale Educației'),
(115819, 'https://ror.org/0120amd78', 'de', 1, 'https://ror.org/0120amd78 Institut für Sozialwissenschaftliche Forschung'),
(115820, 'https://ror.org/00003g016', 'en', 1, 'https://ror.org/00003g016 World Water Watch'),
(115821, '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'),
(115822, 'https://ror.org/008869j48', 'en', 1, 'https://ror.org/008869j48 Identity'),
(115823, 'https://ror.org/03exg0778', 'en', 1, 'https://ror.org/03exg0778 National Socio-Environmental Synthesis Center'),
(115824, 'https://ror.org/0351zfv36', 'en', 1, 'https://ror.org/0351zfv36 Surya University'),
(115825, 'https://ror.org/05d854h51', 'en', 1, 'https://ror.org/05d854h51 Institut für Diabetes "Gerhardt Katsch" Karlsburg Institute for Diabetes Gerhardt Katsch'),
(115826, 'https://ror.org/01ah9ym33', 'de', 1, 'https://ror.org/01ah9ym33 Krankenhaus St. Elisabeth und St. Barbara'),
(115827, 'https://ror.org/049fn9772', 'it', 1, 'https://ror.org/049fn9772 Agenzia Regionale Emergenza Urgenza'),
(115828, 'https://ror.org/01z83jn29', 'en', 1, 'https://ror.org/01z83jn29 GSO/URI Marine Geological Samples Laboratory'),
(115829, 'https://ror.org/047hk9367', 'en', 1, 'https://ror.org/047hk9367 Royal Australasian College of Physicians'),
(115830, 'https://ror.org/04xe2fg96', 'pt', 1, 'https://ror.org/04xe2fg96 Laboratório de AnÔlises LAQV-REQUIMTE'),
(115831, 'https://ror.org/05e08sj06', 'en', 1, 'https://ror.org/05e08sj06 Guangdong Planning Office of Philosophy and Social Science å¹æäøœēœå“²å­¦ē¤¾ä¼šē§‘å­¦č§„åˆ’'),
(115832, 'https://ror.org/04p7gfb16', 'uz', 0, 'https://ror.org/04p7gfb16 Bukhara Institute of Natural Resources Management Buxoro tabiiy resurslarni boshqarish instituti'),
(115833, 'https://ror.org/02n96xt70', 'en', 1, 'https://ror.org/02n96xt70 Misophonia Research Fund'),
(115834, 'https://ror.org/032p73z44', 'en', 1, 'https://ror.org/032p73z44 Sea Turtle Conservancy'),
(115835, 'https://ror.org/03gf7z214', 'fr', 1, 'https://ror.org/03gf7z214 Institut universitaire de cardiologie et de pneumologie de QuƩbec'),
(115836, 'https://ror.org/05nddf786', 'fr', 1, 'https://ror.org/05nddf786 Institut national des sciences et techniques nuclƩaires National Institute for Nuclear Science and Technology'),
(115837, 'https://ror.org/00g218c19', 'fr', 1, 'https://ror.org/00g218c19 Institut National de la Recherche Agronomique d''AlgƩrie'),
(115838, 'https://ror.org/02s87b036', 'fr', 1, 'https://ror.org/02s87b036 Fondation pour la Recherche StratƩgique Foundation for Strategic Research'),
(115839, 'https://ror.org/00mrq0n58', 'fr', 1, 'https://ror.org/00mrq0n58 Centre FranƧois Baclesse'),
(115840, 'https://ror.org/01kam1p04', 'en', 1, 'https://ror.org/01kam1p04 All-Russian Research Institute for Fire Protection Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Всероссийский орГена ā€žŠ—Š½Š°Šŗ ŠŸŠ¾Ń‡Ń‘Ń‚Š°ā€œ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ противопожарной обороны»'),
(115841, 'https://ror.org/04ygg1h35', 'en', 1, 'https://ror.org/04ygg1h35 Public Citizen'),
(115842, 'https://ror.org/023w7hq91', 'en', 1, 'https://ror.org/023w7hq91 General Commission for Scientific Agricultural Research Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų¹Ł„Ł…ŁŠŲ© Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(115843, 'https://ror.org/0361bwx64', 'en', 1, 'https://ror.org/0361bwx64 United Kingdom Atomic Energy Authority'),
(115844, 'https://ror.org/04cexk154', 'en', 1, 'https://ror.org/04cexk154 Workers Compensation Board of Manitoba'),
(115845, 'https://ror.org/03rkach21', 'es', 1, 'https://ror.org/03rkach21 Instituto de Estudios Universitarios'),
(115846, 'https://ror.org/02kzs4y22', 'en', 1, 'https://ror.org/02kzs4y22 UConn Health'),
(115847, 'https://ror.org/03pejb093', 'en', 1, 'https://ror.org/03pejb093 National Research Development Institute for Animal Biology and Nutrition'),
(115848, 'https://ror.org/05f16n416', 'en', 1, 'https://ror.org/05f16n416 Republican Scientific and Practical Center of Cardiology Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр Ā«ŠšŠ°Ń€Š“ŠøŠ¾Š»Š¾Š³ŠøŃĀ»'),
(115849, 'https://ror.org/02v5jxh60', 'es', 1, 'https://ror.org/02v5jxh60 Centro de Ciencias Ambientales EULA-Chile de la Universidad de Concepción'),
(115850, 'https://ror.org/05p4bxh84', 'en', 1, 'https://ror.org/05p4bxh84 Stockholm Gerontology Research Center Foundation'),
(115851, 'https://ror.org/035qf0p33', 'pl', 1, 'https://ror.org/035qf0p33 Akademia Łomżyńska University of Lomza'),
(115852, 'https://ror.org/04a46sy91', 'de', 1, 'https://ror.org/04a46sy91 Institut für Automation und Kommunikation'),
(115853, '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 АкаГемија наука Šø ŃƒŠ¼Ń˜ŠµŃ‚Š½Š¾ŃŃ‚Šø Босне Šø Єерцеговине'),
(115854, 'https://ror.org/03awxm844', 'en', 1, 'https://ror.org/03awxm844 Saint-Petersburg I. I. Dzhanelidze Research Institute of Emergency Medicine Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ И. И. ДжанелиГзе ŠŠ˜Š˜ ŃŠŗŃŃ‚Ń€ŠµŠ½Š½Š¾Š¹ меГицины'),
(115855, 'https://ror.org/044wjb306', 'fr', 1, 'https://ror.org/044wjb306 Centre international de recherche-dƩveloppement sur l''elevage en zone subhumide'),
(115856, 'https://ror.org/03tns0030', 'en', 1, 'https://ror.org/03tns0030 Environmental Protection Agency'),
(115857, 'https://ror.org/056cbez68', 'en', 1, 'https://ror.org/056cbez68 Henan Zhongyuan Medical Science and Technology Innovation and Development Foundation ę²³å—ēœäø­åŽŸåŒ»å­¦ē§‘ęŠ€åˆ›ę–°å‘å±•åŸŗé‡‘ä¼š'),
(115858, 'https://ror.org/031gwf224', 'en', 1, 'https://ror.org/031gwf224 Center For Biomarker Research In Medicine'),
(115859, 'https://ror.org/014224111', 'en', 1, 'https://ror.org/014224111 European Molecular Biology Network (EMBnet)'),
(115860, 'https://ror.org/002gr9f09', 'pt', 1, 'https://ror.org/002gr9f09 Instituto AgronƓmico de Pernambuco'),
(115861, 'https://ror.org/017n8df75', 'en', 1, 'https://ror.org/017n8df75 Shenzhen Science and Technology Innovation Commission ę·±åœ³åø‚ē§‘ęŠ€åˆ›ę–°å±€'),
(115862, 'https://ror.org/046crbt05', 'nl', 1, 'https://ror.org/046crbt05 Wikimedia Nederland'),
(115863, 'https://ror.org/050755v08', 'en', 1, 'https://ror.org/050755v08 Faculdade JesuĆ­ta de Filosofia e Teologia Jesuit School of Philosophy and Theology'),
(115864, 'https://ror.org/0390mzx53', 'en', 1, 'https://ror.org/0390mzx53 London Institute for Mathematical Sciences'),
(115865, 'https://ror.org/01c3s4w91', 'en', 1, 'https://ror.org/01c3s4w91 University of Fredericton'),
(115866, 'https://ror.org/0119jd094', 'de', 1, 'https://ror.org/0119jd094 Deutsche Gesellschaft für Allgemeine und Vergleichende Literaturwissenschaft'),
(115867, 'https://ror.org/02ae50943', 'pt', 1, 'https://ror.org/02ae50943 Secretaria da SaĆŗde do Estado da Bahia'),
(115868, 'https://ror.org/00r151p09', 'en', 1, 'https://ror.org/00r151p09 Hungarian National Museum'),
(115869, 'https://ror.org/02pcb5m77', 'en', 1, 'https://ror.org/02pcb5m77 Guangdong Polytechnic Normal University å¹æäøœęŠ€ęœÆåøˆčŒƒå¤§å­¦'),
(115870, 'https://ror.org/01zjc6908', 'en', 1, 'https://ror.org/01zjc6908 European Molecular Biology Laboratory Laboratoire EuropƩen de Biologie MolƩculaire'),
(115871, 'https://ror.org/01yn28w07', 'no_lang_code', 1, 'https://ror.org/01yn28w07 General Hospital of Ioannina G. Hatzikosta Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ιωαννίνων "Ī“. Ī§Ī±Ļ„Ī¶Ī·ĪŗĻŽĻƒĻ„Ī±"'),
(115872, 'https://ror.org/00h90tt32', 'en', 1, 'https://ror.org/00h90tt32 Institut za mjeriteljstvo Bosne i Hercegovine Institute of Metrology of Bosnia and Herzegovina Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¼ŠµŃ‚Ń€Š¾Š»Š¾Š³ŠøŃ˜Ńƒ Босне Šø Єерцеговине'),
(115873, 'https://ror.org/044qpwz88', 'fr', 1, 'https://ror.org/044qpwz88 Institut de Recherche sur les CƩramiques'),
(115874, 'https://ror.org/04q6az286', 'en', 1, 'https://ror.org/04q6az286 Carbon180'),
(115875, 'https://ror.org/021zg3m87', 'ro', 1, 'https://ror.org/021zg3m87 Institutul Oncologic Bucuresti'),
(115876, 'https://ror.org/044bb5p62', 'en', 1, 'https://ror.org/044bb5p62 Hangzhou Municipal Health Commission ę­å·žåø‚å«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(115877, 'https://ror.org/04t67vr60', 'en', 1, 'https://ror.org/04t67vr60 National Institute of Pharmaceutical Education and Research'),
(115878, 'https://ror.org/03378gm70', 'en', 1, 'https://ror.org/03378gm70 Dimitrie Cantemir Christian University Universitatea Creștină Dimitrie Cantemir'),
(115879, 'https://ror.org/02e2p8n33', 'es', 1, 'https://ror.org/02e2p8n33 Empresa de Transportes Rurales SpA Turbus Turbus (Chile)'),
(115880, 'https://ror.org/057k9q466', 'en', 1, 'https://ror.org/057k9q466 AgrÔrtudomÔnyi Kutatóközpont Centre for Agricultural Research'),
(115881, 'https://ror.org/02697d919', 'en', 1, 'https://ror.org/02697d919 Gaia Fund'),
(115882, 'https://ror.org/010gvqg61', 'pt', 1, 'https://ror.org/010gvqg61 Museu Paraense EmĆ­lio Goeldi'),
(115883, 'https://ror.org/0330myb20', 'id', 1, 'https://ror.org/0330myb20 Institut Seni Budaya Indonesia Aceh'),
(115884, 'https://ror.org/03sswts20', 'en', 1, 'https://ror.org/03sswts20 University of Mobile UniversitƩ de mobile'),
(115885, 'https://ror.org/01tkc7083', 'en', 1, 'https://ror.org/01tkc7083 Royal Dental Hospital of Melbourne'),
(115886, 'https://ror.org/05pz9kz68', 'en', 1, 'https://ror.org/05pz9kz68 All-Russian Scientific Research Institute of Horticulture named after IV Michurin Всероссийский ŠŠ˜Š˜ саГовоГства имени И. Š’. ŠœŠøŃ‡ŃƒŃ€ŠøŠ½Š°'),
(115887, 'https://ror.org/01xmgrn68', 'es', 1, 'https://ror.org/01xmgrn68 Sociedad EspaƱola de Cirugƭa OrtopƩdica y Traumatologƭa'),
(115888, 'https://ror.org/00yq55g44', 'en', 1, 'https://ror.org/00yq55g44 UniversitƤt Witten/Herdecke Witten/Herdecke University'),
(115889, 'https://ror.org/04tkt0z61', 'no_lang_code', 1, 'https://ror.org/04tkt0z61 Toyooka Hospital č±Šå²”ē—…é™¢'),
(115890, 'https://ror.org/04z43eq15', 'no_lang_code', 1, 'https://ror.org/04z43eq15 Calabazas Creek Research (United States)'),
(115891, 'https://ror.org/051ea1411', 'en', 1, 'https://ror.org/051ea1411 ELTE Centre for Economic and Regional Studies ELTE KözgazdasÔg- és RegionÔlis TudomÔnyi Kutatóközpont'),
(115892, 'https://ror.org/01tjs6929', 'es', 1, 'https://ror.org/01tjs6929 National University of La Plata Universidad Nacional de La Plata UniversitƩ nationale de la plata'),
(115893, 'https://ror.org/053fq8t95', 'en', 1, 'https://ror.org/053fq8t95 Prifysgol Abertawe Swansea University'),
(115894, 'https://ror.org/03jb5sg38', 'en', 1, 'https://ror.org/03jb5sg38 Community & Oral Health Service - MSH'),
(115895, 'https://ror.org/00j5mtz35', 'en', 1, 'https://ror.org/00j5mtz35 Ratio'),
(115896, 'https://ror.org/0209mnq24', 'en', 1, 'https://ror.org/0209mnq24 Technological and Higher Education Institute of Hong Kong é¦™ęøÆé«˜ē­‰ę•™č‚²ē§‘ęŠ€å­øé™¢'),
(115897, '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 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ'),
(115898, 'https://ror.org/04f49a463', 'en', 1, 'https://ror.org/04f49a463 American Society of Plant Biologists'),
(115899, 'https://ror.org/00gjz3j74', 'es', 1, 'https://ror.org/00gjz3j74 Controles Empresariales Controles Empresariales (Colombia) Controles Empresariales S.A.S.'),
(115900, 'https://ror.org/00hay9j83', 'en', 1, 'https://ror.org/00hay9j83 Sakhalin State University Дахалинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115901, 'https://ror.org/04kymnq52', 'fr', 1, 'https://ror.org/04kymnq52 Centre de Recherche en Technologie des Semi-conducteurs pour l’EnergĆ©tique'),
(115902, 'https://ror.org/00vsmb158', 'sl', 1, 'https://ror.org/00vsmb158 University Rehabilitation Institute Univerzitetni Rehabilitacijski InŔtitut'),
(115903, 'https://ror.org/01jptvt03', 'no_lang_code', 1, 'https://ror.org/01jptvt03 Moravian Museum MoravskƩ ZemskƩ Muzeum'),
(115904, 'https://ror.org/044npx850', 'en', 1, 'https://ror.org/044npx850 University of Gastronomic Sciences UniversitĆ  degli Studi di Scienze Gastronomiche'),
(115905, 'https://ror.org/05gapbz32', 'de', 1, 'https://ror.org/05gapbz32 Klinik Bad Oexen'),
(115906, 'https://ror.org/02s3fnw45', 'no_lang_code', 1, 'https://ror.org/02s3fnw45 Advanced Technology & Materials (China)'),
(115907, 'https://ror.org/0340nty70', 'en', 1, 'https://ror.org/0340nty70 Winston-Salem/Forsyth County Schools'),
(115908, 'https://ror.org/03q658t19', 'it', 1, 'https://ror.org/03q658t19 Azienda Ospedaliero Universitario Mater Domini'),
(115909, 'https://ror.org/030tdpg67', 'en', 1, 'https://ror.org/030tdpg67 Department for Business and Trade'),
(115910, 'https://ror.org/03at7w331', 'en', 1, 'https://ror.org/03at7w331 Shanghai Municipal Commission of Health and Family Planning äøŠęµ·åø‚å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(115911, 'https://ror.org/04wxnsj81', 'no_lang_code', 1, 'https://ror.org/04wxnsj81 DataCite'),
(115912, 'https://ror.org/03eqe9f63', 'es', 1, 'https://ror.org/03eqe9f63 Hospital Universitario de la Samaritana University Hospital of the Samaritan'),
(115913, 'https://ror.org/00t0n9020', 'en', 1, 'https://ror.org/00t0n9020 Kaplan Medical Center ×ž×Ø×›×– רפואי קפלן'),
(115914, 'https://ror.org/02p2msn36', 'en', 1, 'https://ror.org/02p2msn36 Siena Heights University'),
(115915, 'https://ror.org/00vcrhv91', 'en', 1, 'https://ror.org/00vcrhv91 Potato Research Institute'),
(115916, 'https://ror.org/00ztyx381', 'en', 1, 'https://ror.org/00ztyx381 Latrobe Regional Hospital'),
(115917, 'https://ror.org/03n1zbr44', 'en', 1, 'https://ror.org/03n1zbr44 Infectious Clinical Hospital No. 1 ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń ŠøŠ½Ń„ŠµŠŗŃ†ŠøŠ¾Š½Š½Š°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 1'),
(115918, 'https://ror.org/05dt3h538', 'en', 1, 'https://ror.org/05dt3h538 Hollins University'),
(115919, 'https://ror.org/00w109h91', 'it', 1, 'https://ror.org/00w109h91 Istituto S.Anna Crotone'),
(115920, 'https://ror.org/02pttbw34', 'en', 1, 'https://ror.org/02pttbw34 Baylor College of Medicine Escuela de Medicina de Baylor'),
(115921, 'https://ror.org/023g5ws63', 'en', 1, 'https://ror.org/023g5ws63 01.AI 01.AI (China) 零一万物'),
(115922, 'https://ror.org/0027te316', 'es', 1, 'https://ror.org/0027te316 Tecnomix Tecnomix (Spain) Tecnomix S.A.'),
(115923, 'https://ror.org/016b3st51', 'es', 1, 'https://ror.org/016b3st51 Optimo Optimo (Chile)'),
(115924, 'https://ror.org/0011qv509', 'en', 1, 'https://ror.org/0011qv509 University of Tennessee Health Science Center'),
(115925, 'https://ror.org/05m4zpg77', 'no_lang_code', 1, 'https://ror.org/05m4zpg77 Materials Development (United States)'),
(115926, 'https://ror.org/046dtqb83', 'no_lang_code', 1, 'https://ror.org/046dtqb83 Kayser (Italy)'),
(115927, 'https://ror.org/05gdhxj91', 'fr', 1, 'https://ror.org/05gdhxj91 Société Francophone du Diabète'),
(115928, 'https://ror.org/016nn4m97', 'en', 1, 'https://ror.org/016nn4m97 National Root Crops Research Institute'),
(115929, 'https://ror.org/0492gsr48', 'en', 1, 'https://ror.org/0492gsr48 Brain Research Foundation'),
(115930, 'https://ror.org/020yc1y85', 'en', 1, 'https://ror.org/020yc1y85 The LEGO Foundation'),
(115931, 'https://ror.org/04eq5c702', 'en', 1, 'https://ror.org/04eq5c702 Tea Research Association'),
(115932, 'https://ror.org/01e92na05', 'en', 1, 'https://ror.org/01e92na05 Frontier Science Foundation'),
(115933, 'https://ror.org/01vva4430', 'en', 1, 'https://ror.org/01vva4430 Roland Institute of Pharmaceutical Sciences'),
(115934, 'https://ror.org/05xdwy846', 'fr', 1, 'https://ror.org/05xdwy846 Centre de Recherche en Ɖconomie AppliquĆ©e pour le DĆ©veloppement'),
(115935, 'https://ror.org/007e71662', 'en', 1, 'https://ror.org/007e71662 Miyagi Children''s Hospital å®®åŸŽēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(115936, 'https://ror.org/04th5gf24', 'no_lang_code', 1, 'https://ror.org/04th5gf24 China Nerin Engineering (China)'),
(115937, 'https://ror.org/05demsd15', 'en', 1, 'https://ror.org/05demsd15 Kakaraparti Bhavanarayana College ą°•ą°¾ą°•ą°°ą°Ŗą°°ą±ą°¤ą°æ భావనారాయణ కళాశాల'),
(115938, 'https://ror.org/04p87a392', 'en', 1, 'https://ror.org/04p87a392 Center for Outcomes Research and Clinical Epidemiology'),
(115939, 'https://ror.org/00012xz55', 'de', 1, 'https://ror.org/00012xz55 Hamburgische Investitions- und Fƶrderbank'),
(115940, 'https://ror.org/04zsgrk35', 'en', 1, 'https://ror.org/04zsgrk35 Luther Seminary'),
(115941, 'https://ror.org/01132my48', 'en', 1, 'https://ror.org/01132my48 Mengo Hospital'),
(115942, 'https://ror.org/047885v26', 'en', 1, 'https://ror.org/047885v26 Fulbright Ireland'),
(115943, 'https://ror.org/02y7mzf89', 'en', 1, 'https://ror.org/02y7mzf89 Museum of Decorative Arts in Prague UměleckoprÅÆmyslovĆ© Muzeum v Praze'),
(115944, 'https://ror.org/0592q0v50', 'en', 1, 'https://ror.org/0592q0v50 Giustino Fortunato University UniversitĆ  degli Studi Giustino Fortunato'),
(115945, 'https://ror.org/04r45q768', 'en', 1, 'https://ror.org/04r45q768 Universities Austria Ɩsterreichische UniversitƤtenkonferenz'),
(115946, 'https://ror.org/03thbf157', 'en', 1, 'https://ror.org/03thbf157 Bolivarian University of Venezuela Universidad Bolivariana de Venezuela'),
(115947, 'https://ror.org/02k8pys83', 'de', 1, 'https://ror.org/02k8pys83 Christophorus Kliniken'),
(115948, 'https://ror.org/02e7b5302', 'en', 1, 'https://ror.org/02e7b5302 Nanyang Technological University Universiti Teknologi Nanyang ą®Øą®©ąÆą®Æą®¾ą®™ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ å—ę“‹ē†å·„å¤§å­¦'),
(115949, 'https://ror.org/01vexk157', 'no_lang_code', 1, 'https://ror.org/01vexk157 Centralny Ośrodek Badawczo Rozwojowy Aparatury Badawczej i Dydaktycznej (Poland)'),
(115950, 'https://ror.org/02gsh9561', 'es', 1, 'https://ror.org/02gsh9561 Universidad Metropolitana de Honduras'),
(115951, 'https://ror.org/03et85d35', 'en', 1, 'https://ror.org/03et85d35 Ningbo University 宁波大学'),
(115952, 'https://ror.org/0348bpk17', 'es', 1, 'https://ror.org/0348bpk17 Federación Española de Enfermedades Raras Spanish Federation for Rare Diseases'),
(115953, 'https://ror.org/04a6tv155', 'en', 1, 'https://ror.org/04a6tv155 Bethany College - West Virginia'),
(115954, 'https://ror.org/010hs8e42', 'en', 1, 'https://ror.org/010hs8e42 Croatian Academic and Research Network Hrvatska akademska i istraživačka mreža'),
(115955, 'https://ror.org/01ckbhd80', 'en', 1, 'https://ror.org/01ckbhd80 National Australia Bank'),
(115956, 'https://ror.org/006b2g567', 'en', 1, 'https://ror.org/006b2g567 Government of Alberta'),
(115957, 'https://ror.org/0207yh398', 'en', 1, 'https://ror.org/0207yh398 Shandong University 山东大学'),
(115958, 'https://ror.org/04wynx969', 'en', 1, 'https://ror.org/04wynx969 Paul Ramsay Foundation'),
(115959, 'https://ror.org/00r348449', 'en', 1, 'https://ror.org/00r348449 Office of the Assistant Secretary for Health'),
(115960, 'https://ror.org/0565rzc83', 'id', 1, 'https://ror.org/0565rzc83 Universitas Annuqayah'),
(115961, 'https://ror.org/028z36n30', 'en', 1, 'https://ror.org/028z36n30 Department for Science, Innovation and Technology'),
(115962, 'https://ror.org/052emna24', 'no_lang_code', 1, 'https://ror.org/052emna24 Hepatitis B Foundation'),
(115963, 'https://ror.org/0405gx254', 'en', 1, 'https://ror.org/0405gx254 Cumberland Hospital'),
(115964, 'https://ror.org/037vec356', 'es', 1, 'https://ror.org/037vec356 Helios Salud'),
(115965, 'https://ror.org/058zr4t24', 'en', 1, 'https://ror.org/058zr4t24 Center for Migration Studies of New York'),
(115966, 'https://ror.org/01kq6ye20', 'en', 1, 'https://ror.org/01kq6ye20 Sansum Diabetes Research Institute'),
(115967, 'https://ror.org/01r9x4p54', 'en', 1, 'https://ror.org/01r9x4p54 Bashkir Scientific Research Institute of Petroleum Refining ŠŠž "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефтехимпереработки"'),
(115968, 'https://ror.org/05d5yjx85', 'es', 1, 'https://ror.org/05d5yjx85 Hospital Militar de Santiago'),
(115969, 'https://ror.org/01dk36s50', 'pt', 1, 'https://ror.org/01dk36s50 Instituto Lauro de Souza Lima'),
(115970, 'https://ror.org/02z384071', 'en', 1, 'https://ror.org/02z384071 American Political Science Association'),
(115971, 'https://ror.org/05et9cg77', 'en', 1, 'https://ror.org/05et9cg77 Sexual Violence Research Initiative'),
(115972, 'https://ror.org/01jsgmp44', 'en', 1, 'https://ror.org/01jsgmp44 HUN-REN Institute of Experimental Medicine Kísérleti OrvostudomÔnyi Kutatóintézet MTA'),
(115973, 'https://ror.org/025cvfz96', 'en', 1, 'https://ror.org/025cvfz96 MetaMind Innovations MetaMind Innovations (Greece)'),
(115974, 'https://ror.org/01x24z140', 'en', 1, 'https://ror.org/01x24z140 Annamalai University ą¤…ą¤Øą„ą¤Øą¤¾ą¤®ą¤²ą¤¾ą¤ˆ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ąØ…ą©°ąØØąØ¾ąØ®ąØ²ąØ¾ąØˆ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®…ą®£ąÆą®£ą®¾ą®®ą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“…ą“£ąµą“£ą“¾ą“®ą“²ąµˆ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(115975, 'https://ror.org/00p8msr48', 'en', 1, 'https://ror.org/00p8msr48 Chuo Kikuu cha Mtakatifu Agostino Tanzania St. Augustine University of Tanzania'),
(115976, 'https://ror.org/00kcehz97', 'en', 1, 'https://ror.org/00kcehz97 French Corrosion Institute'),
(115977, 'https://ror.org/04tdptw32', 'en', 1, 'https://ror.org/04tdptw32 Asser Institute'),
(115978, 'https://ror.org/03tte1d07', 'no_lang_code', 1, 'https://ror.org/03tte1d07 Chania General Hospital ā€St. Georgeā€ Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Χανίων "Ο Άγιος Ī“ĪµĻŽĻĪ³Ī¹ĪæĻ‚"'),
(115979, 'https://ror.org/01a4ygj92', 'en', 1, 'https://ror.org/01a4ygj92 Central Research and Design Institute Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(115980, 'https://ror.org/01d6wrk87', 'en', 1, 'https://ror.org/01d6wrk87 Education Department of Fujian Province ē¦å»ŗēœę•™č‚²åŽ…'),
(115981, 'https://ror.org/002s77n28', 'en', 1, 'https://ror.org/002s77n28 National University of Architecture and Construction of Armenia ÕƒÕ”Ö€ÕæÕ”Ö€Õ”ÕŗÕ„ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ և Õ·Õ«Õ¶Õ”Ö€Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(115982, 'https://ror.org/01nfdxd69', 'en', 1, 'https://ror.org/01nfdxd69 Institutet fƶr HƤlso- och SjukvƄrdsekonomi Swedish Institute for Health Economics'),
(115983, 'https://ror.org/04vvwwg30', 'id', 1, 'https://ror.org/04vvwwg30 Sekolah Tinggi Agama Islam Negeri Teungku Dirundeng Meulaboh'),
(115984, 'https://ror.org/040w7d028', 'en', 1, 'https://ror.org/040w7d028 The Micheli Center for Sports Injury Prevention'),
(115985, 'https://ror.org/05th81a29', 'no_lang_code', 1, 'https://ror.org/05th81a29 TE Laboratories (Ireland)'),
(115986, 'https://ror.org/0409dgb37', 'pt', 1, 'https://ror.org/0409dgb37 Federal University of ViƧosa Universidade Federal de ViƧosa'),
(115987, 'https://ror.org/02cmd6814', 'en', 1, 'https://ror.org/02cmd6814 Stroud Water Research Center'),
(115988, 'https://ror.org/01f6dz702', 'en', 1, 'https://ror.org/01f6dz702 Overdeck Family Foundation'),
(115989, 'https://ror.org/00swmft88', 'es', 1, 'https://ror.org/00swmft88 Centro Oncológico de Galicia'),
(115990, 'https://ror.org/00r9cjb36', 'en', 1, 'https://ror.org/00r9cjb36 Science Solutions International Laboratory, Inc. Science Solutions International Laboratory, Inc. (Japan)'),
(115991, 'https://ror.org/05jv9bv25', 'no_lang_code', 1, 'https://ror.org/05jv9bv25 iNGR, Inc. iNGR, Inc. (South Korea) ģ•„ģ“ģ—”ģ§€ģ•Œ'),
(115992, 'https://ror.org/05a1an246', 'en', 1, 'https://ror.org/05a1an246 Government College of Engineering, Tirunelveli'),
(115993, 'https://ror.org/050589e39', 'en', 1, 'https://ror.org/050589e39 European Molecular Biology Laboratory Europäisches Laboratorium für Molekularbiologie'),
(115994, 'https://ror.org/01s5rx042', 'no_lang_code', 1, 'https://ror.org/01s5rx042 Surrey Satellite Technology (United Kingdom)'),
(115995, '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'),
(115996, 'https://ror.org/05s8x6c38', 'en', 1, 'https://ror.org/05s8x6c38 Novena University'),
(115997, 'https://ror.org/01tegtn91', 'no_lang_code', 1, 'https://ror.org/01tegtn91 Pulp and Paper Research Institute'),
(115998, 'https://ror.org/03qtzhe36', 'en', 1, 'https://ror.org/03qtzhe36 Nutrasource'),
(115999, 'https://ror.org/03vp7ry06', 'es', 1, 'https://ror.org/03vp7ry06 Instituto de Neurociencia BiomƩdica'),
(116000, 'https://ror.org/03a23ph14', 'no_lang_code', 1, 'https://ror.org/03a23ph14 Kureha (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ćƒ'),
(116001, 'https://ror.org/05hv0ec94', 'no_lang_code', 1, 'https://ror.org/05hv0ec94 Integral Consulting (United States)'),
(116002, 'https://ror.org/00n1h4322', 'pl', 1, 'https://ror.org/00n1h4322 Wojewódzki Szpital Specjalistyczny we Wrocławiu'),
(116003, 'https://ror.org/00wrsjp90', 'en', 1, 'https://ror.org/00wrsjp90 Cephas Health Research Initiative Cephas Health Research Initiative Inc'),
(116004, 'https://ror.org/047eqb917', 'es', 1, 'https://ror.org/047eqb917 CBB CBB (Chile) Cementos BƍO BƍO S.A.'),
(116005, 'https://ror.org/052dytr59', 'pt', 1, 'https://ror.org/052dytr59 Centro de Pesquisas Oncológicas'),
(116006, 'https://ror.org/018mb0616', 'en', 1, 'https://ror.org/018mb0616 Corona College of Education'),
(116007, 'https://ror.org/00kpeqx67', 'en', 1, 'https://ror.org/00kpeqx67 AccessLex Institute'),
(116008, 'https://ror.org/03tfgky26', 'en', 1, 'https://ror.org/03tfgky26 Rajkiya Engineering College Mainpuri'),
(116009, 'https://ror.org/01smd1r12', 'en', 1, 'https://ror.org/01smd1r12 Institute of Labour and Social Studies Instytut Pracy i Spraw Socjalnych'),
(116010, 'https://ror.org/02kz4tk84', 'en', 1, 'https://ror.org/02kz4tk84 Vorarlberg Institute for Vascular Investigation and Treatment'),
(116011, 'https://ror.org/027n25314', 'en', 1, 'https://ror.org/027n25314 AIDS Prevention Initiative in Nigeria'),
(116012, 'https://ror.org/03bqa4029', 'en', 1, 'https://ror.org/03bqa4029 Centre For Cold Ocean Resources Engineering'),
(116013, 'https://ror.org/006m5mj32', 'it', 1, 'https://ror.org/006m5mj32 Istituto di Sociologia Internazionale di Gorizia'),
(116014, 'https://ror.org/03hye4039', 'en', 1, 'https://ror.org/03hye4039 Federal Scientific Center of Physical Culture and Sports Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Физической ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ И Дпорта'),
(116015, 'https://ror.org/01bv2n867', 'fr', 1, 'https://ror.org/01bv2n867 Institut SupĆ©rieur d’Informatique, de ModĆ©lisation et de leurs Applications'),
(116016, 'https://ror.org/04y8cs423', 'fr', 1, 'https://ror.org/04y8cs423 Mines Paris, PSL University Ɖcole Nationale SupĆ©rieure des Mines de Paris'),
(116017, 'https://ror.org/05qfsg079', 'en', 1, 'https://ror.org/05qfsg079 DNA Labs-CRIS (Centre for Research and Innovative Studies)'),
(116018, 'https://ror.org/029h2vx94', 'en', 1, 'https://ror.org/029h2vx94 National Tropical Botanical Garden'),
(116019, 'https://ror.org/01yv6h358', 'pt', 1, 'https://ror.org/01yv6h358 Instituto de Tecnologia do ParanĆ”'),
(116020, 'https://ror.org/04v2xzv40', 'en', 1, 'https://ror.org/04v2xzv40 Building Research Association of New Zealand'),
(116021, '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'),
(116022, 'https://ror.org/02gqf9e56', 'en', 1, 'https://ror.org/02gqf9e56 Technology Centre for Offshore and Marine, Singapore'),
(116023, 'https://ror.org/047hsck20', 'en', 1, 'https://ror.org/047hsck20 Hesperia Hospital'),
(116024, 'https://ror.org/03jjt8440', 'en', 1, 'https://ror.org/03jjt8440 Government of Shandong Province å±±äøœēœäŗŗę°‘ę”æåŗœ'),
(116025, 'https://ror.org/0135ffj82', 'en', 1, 'https://ror.org/0135ffj82 The Gordon Life Science Institute'),
(116026, 'https://ror.org/00m1bsz76', 'en', 1, 'https://ror.org/00m1bsz76 Federal Polytechnic Oko'),
(116027, 'https://ror.org/04a20na41', 'fr', 1, 'https://ror.org/04a20na41 Centre de GƩomatique du QuƩbec'),
(116028, 'https://ror.org/034rqbg02', 'en', 1, 'https://ror.org/034rqbg02 Electronics Testing Center'),
(116029, 'https://ror.org/0468zt688', 'es', 1, 'https://ror.org/0468zt688 Unidad de CirugĆ­a Cardiovascular de Guatemala'),
(116030, 'https://ror.org/018zc6p18', 'id', 0, 'https://ror.org/018zc6p18 Institut Teknologi Telkom Purwokerto Purwokerto Telkom Institute of Technology'),
(116031, 'https://ror.org/0548x8e24', 'en', 1, 'https://ror.org/0548x8e24 Waypoint Centre de Soins de SantƩ Mentale Waypoint Centre for Mental Health Care'),
(116032, 'https://ror.org/01hxc5h53', 'en', 1, 'https://ror.org/01hxc5h53 Far Eastern State Agrarian University Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116033, 'https://ror.org/035ghve61', 'hr', 1, 'https://ror.org/035ghve61 VeleučiliŔte Velika Gorica'),
(116034, 'https://ror.org/00kr9ba60', 'en', 1, 'https://ror.org/00kr9ba60 Al-Idrisi University College ŁƒŁ„ŁŠŲ© Ų£Ł„Ų„ŲÆŲ±ŁŠŲ³ŁŠ الجامعة'),
(116035, 'https://ror.org/032whjy27', 'en', 1, 'https://ror.org/032whjy27 Respiratory Programmatic Implementation and Research Institute Yayasan Riset dan Pelatihan Respirasi Indonesia'),
(116036, 'https://ror.org/04e1a9m96', 'no_lang_code', 1, 'https://ror.org/04e1a9m96 Japan Weather Association (Japan) ę—„ęœ¬ę°—č±”å”ä¼š'),
(116037, 'https://ror.org/0413bc824', 'fr', 1, 'https://ror.org/0413bc824 Azrieli Centre for Autism Research Centre Azrieli de recherche sur l''autisme'),
(116038, 'https://ror.org/02v391n12', 'id', 1, 'https://ror.org/02v391n12 Sekolah Tinggi Agama Islam Darussalam Nganjuk'),
(116039, 'https://ror.org/04baade76', 'en', 1, 'https://ror.org/04baade76 Massachusetts Gaming Commission'),
(116040, 'https://ror.org/01yr73893', 'en', 1, 'https://ror.org/01yr73893 European Molecular Biology Laboratory'),
(116041, 'https://ror.org/015xbps36', 'en', 1, 'https://ror.org/015xbps36 Nordic Institute of Dental Materials'),
(116042, 'https://ror.org/00g700j37', 'fr', 1, 'https://ror.org/00g700j37 UniversitƩ Bourgogne Europe'),
(116043, 'https://ror.org/04f6dw135', 'en', 1, 'https://ror.org/04f6dw135 Louisiana Cancer Research Center'),
(116044, 'https://ror.org/03fc14d06', 'it', 1, 'https://ror.org/03fc14d06 Fondazione Centro Marino Internazionale'),
(116045, 'https://ror.org/028bsh698', 'en', 1, 'https://ror.org/028bsh698 Austrian Centre for Digital Humanities'),
(116046, 'https://ror.org/0336rcx12', 'no_lang_code', 1, 'https://ror.org/0336rcx12 Korkyt Ata Kyzylorda State University ŅšŠ¾Ń€Ņ›Ń‹Ń‚ Ата атынГағы ŅšŃ‹Š·Ń‹Š»Š¾Ń€Š“Š° мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(116047, 'https://ror.org/03mpekj96', 'en', 1, 'https://ror.org/03mpekj96 MSPCA-Angell'),
(116048, 'https://ror.org/03hab3x36', 'en', 1, 'https://ror.org/03hab3x36 Ulster University, Derry-Londonderry Campus'),
(116049, 'https://ror.org/027kj5136', 'en', 1, 'https://ror.org/027kj5136 Bird Conservancy of the Rockies'),
(116050, 'https://ror.org/017zz7s54', 'fr', 1, 'https://ror.org/017zz7s54 LIRA - Laboratoire d''instrumentation et de recherche en astrophysique LIRA - Laboratory for Instrumentation and Research in Astrophysics'),
(116051, 'https://ror.org/04x14e475', 'en', 1, 'https://ror.org/04x14e475 Institute for Ethnic Studies'),
(116052, 'https://ror.org/00dr4nw61', 'en', 1, 'https://ror.org/00dr4nw61 BC Research (Canada)'),
(116053, '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'),
(116054, 'https://ror.org/04kdf7678', 'en', 1, 'https://ror.org/04kdf7678 The Geneva Foundation'),
(116055, 'https://ror.org/04qdvmd91', 'en', 1, 'https://ror.org/04qdvmd91 IASO General Hospital'),
(116056, 'https://ror.org/04rhqkc66', 'de', 1, 'https://ror.org/04rhqkc66 Ministerium für Landwirtschaft, Umwelt und Klimaschutz des Landes Brandenburg'),
(116057, 'https://ror.org/05gm41t98', 'en', 1, 'https://ror.org/05gm41t98 Joint Clinical Research Centre'),
(116058, 'https://ror.org/02fx0ag10', 'en', 1, 'https://ror.org/02fx0ag10 St. Philomena College, Puttur ಸಂತ ಫಿಲೋಮಿನಾ ą²•ą²¾ą²²ą³‡ą²œą³, ą²Ŗą³ą²¤ą³ą²¤ą³‚ą²°ą³'),
(116059, 'https://ror.org/01bgmsb44', 'en', 0, 'https://ror.org/01bgmsb44 Department for International Trade'),
(116060, 'https://ror.org/00pz7qc35', 'de', 1, 'https://ror.org/00pz7qc35 Ortenau Klinikum'),
(116061, 'https://ror.org/02f09cx53', 'en', 1, 'https://ror.org/02f09cx53 Department of Science and Technology of Liaoning Province č¾½å®ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(116062, 'https://ror.org/0008bt423', 'en', 1, 'https://ror.org/0008bt423 University of Fiji'),
(116063, 'https://ror.org/03bxja712', 'en', 1, 'https://ror.org/03bxja712 University Of Information Technology į€žį€į€„į€ŗį€øį€”į€į€»į€€į€ŗį€”į€œį€€į€ŗį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(116064, 'https://ror.org/04k25m262', 'en', 1, 'https://ror.org/04k25m262 108 Military Central Hospital Bệnh viện Trung ʰʔng QuĆ¢n đội 108'),
(116065, 'https://ror.org/00rwzgx62', 'en', 1, 'https://ror.org/00rwzgx62 Fort Hays State University'),
(116066, 'https://ror.org/03gyzpb04', 'no_lang_code', 1, 'https://ror.org/03gyzpb04 ALK-Abelló (Denmark)'),
(116067, 'https://ror.org/02efj9m29', 'en', 1, 'https://ror.org/02efj9m29 DAIR Institute åˆ†ę•£åž‹äŗŗå·„ēŸ„čƒ½ē ”ē©¶ę‰€'),
(116068, 'https://ror.org/05c7h4935', 'en', 1, 'https://ror.org/05c7h4935 Ministry of Health'),
(116069, 'https://ror.org/04ep2t954', 'en', 1, 'https://ror.org/04ep2t954 Fridtjof Nansen Institute'),
(116070, 'https://ror.org/0305v8773', 'en', 1, 'https://ror.org/0305v8773 Stephens College'),
(116071, 'https://ror.org/03c62dg59', 'en', 1, 'https://ror.org/03c62dg59 L''HƓpital d''Ottawa Ottawa Hospital'),
(116072, 'https://ror.org/050zs3956', 'en', 1, 'https://ror.org/050zs3956 Herat University دانؓگاه هرات'),
(116073, 'https://ror.org/04k3kqt10', 'en', 1, 'https://ror.org/04k3kqt10 Battersea Arts Centre'),
(116074, 'https://ror.org/04b27tr16', 'ca', 1, 'https://ror.org/04b27tr16 Institut d''Estudis Catalans Institute for Catalan Studies Instituto de Estudios Catalanes'),
(116075, 'https://ror.org/01jxef645', 'es', 1, 'https://ror.org/01jxef645 Hospital Privado de Comunidad'),
(116076, 'https://ror.org/02zf60s91', 'en', 1, 'https://ror.org/02zf60s91 ANT Foundation Italy Onlus Fondazione ANT Italia ONLUS'),
(116077, 'https://ror.org/03r6neh61', 'en', 1, 'https://ror.org/03r6neh61 Institute e-Austria Timisoara'),
(116078, 'https://ror.org/0112eam10', 'en', 1, 'https://ror.org/0112eam10 Canadian Institute for Health Information'),
(116079, 'https://ror.org/027rrs715', 'en', 1, 'https://ror.org/027rrs715 Rhema University'),
(116080, 'https://ror.org/01tgyzw49', 'en', 1, 'https://ror.org/01tgyzw49 National University of Singapore ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®¤ąÆ‡ą®šą®æą®Æą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ę–°åŠ å”å›½ē«‹å¤§å­¦'),
(116081, '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'),
(116082, 'https://ror.org/01mwa8226', 'en', 1, 'https://ror.org/01mwa8226 SEAMEO Regional Center for Food and Nutrition'),
(116083, 'https://ror.org/04apt4x36', 'en', 1, 'https://ror.org/04apt4x36 Regional Municipality of Waterloo'),
(116084, 'https://ror.org/04d59va55', 'nl', 1, 'https://ror.org/04d59va55 De Hoogstraat Revalidatie'),
(116085, 'https://ror.org/00stqsy74', 'en', 1, 'https://ror.org/00stqsy74 Samara State Agrarian University Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(116086, 'https://ror.org/03cf6vz60', 'en', 1, 'https://ror.org/03cf6vz60 Glacier Bay National Park and Preserve Parque nacional y reserva de la BahĆ­a de los Glaciares'),
(116087, 'https://ror.org/00nsej663', 'pt', 1, 'https://ror.org/00nsej663 Laboratório Bacchi'),
(116088, 'https://ror.org/030pj1w51', 'en', 1, 'https://ror.org/030pj1w51 Uzsoki Hospital Uzsoki Utcai KórhÔz'),
(116089, 'https://ror.org/05qwgg493', 'en', 1, 'https://ror.org/05qwgg493 Boston University Universidad de Boston UniversitƩ de Boston'),
(116090, 'https://ror.org/03ytd3n75', 'en', 1, 'https://ror.org/03ytd3n75 All-Russian Research Institute of Oil Crops by V.S. Pustovoit Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ масличных ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ имени Š’. Š”. ŠŸŃƒŃŃ‚Š¾Š²Š¾Š¹Ń‚Š°'),
(116091, 'https://ror.org/01k9bj230', 'en', 1, 'https://ror.org/01k9bj230 Jissen Women''s University 実践儳子大学'),
(116092, 'https://ror.org/027cn8148', 'es', 1, 'https://ror.org/027cn8148 CƔmara de Comercio de Santiago CƔmara de Comercio de Santiago A.G.'),
(116093, 'https://ror.org/0136mc929', 'en', 1, 'https://ror.org/0136mc929 Health Commission of Fujian Province ē¦å»ŗēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(116094, 'https://ror.org/02dk5kk54', 'en', 1, 'https://ror.org/02dk5kk54 Museum of Fine Arts'),
(116095, 'https://ror.org/05v8yha51', 'en', 1, 'https://ror.org/05v8yha51 Institute for Urban Indigenous Health'),
(116096, 'https://ror.org/02ek1bx64', 'en', 1, 'https://ror.org/02ek1bx64 Burgas Free University Š‘ŃƒŃ€Š³Š°ŃŠŗŠø свобоГен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116097, 'https://ror.org/01vxfm326', 'en', 1, 'https://ror.org/01vxfm326 Budapesti Corvinus Egyetem Corvinus University of Budapest'),
(116098, 'https://ror.org/00erg1394', 'en', 1, 'https://ror.org/00erg1394 National Audit Office'),
(116099, 'https://ror.org/00xfea068', 'en', 1, 'https://ror.org/00xfea068 Chengdu Science and Technology Bureau ęˆéƒ½åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(116100, 'https://ror.org/00fpwd955', 'de', 1, 'https://ror.org/00fpwd955 Bundesministerium des Innern Federal Ministry of the Interior'),
(116101, 'https://ror.org/01rpq5x59', 'no_lang_code', 1, 'https://ror.org/01rpq5x59 Syntek Technologies (United States)'),
(116102, 'https://ror.org/01dhvqg75', 'no_lang_code', 1, 'https://ror.org/01dhvqg75 Rostov-on-Don Anti-plague Institute Rospotrebnadzor Ростовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠæŃ€Š¾Ń‚ŠøŠ²Š¾Ń‡ŃƒŠ¼Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(116103, 'https://ror.org/03eas6919', 'en', 1, 'https://ror.org/03eas6919 Kamaraj College ą®•ą®¾ą®®ą®°ą®¾ą®œąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(116104, 'https://ror.org/01j9yjt02', 'sl', 1, 'https://ror.org/01j9yjt02 Zdravstveni dom dr. Adolfa Drolca Maribor'),
(116105, 'https://ror.org/02mme4d79', 'en', 1, 'https://ror.org/02mme4d79 Research and Production Association Typhoon'),
(116106, 'https://ror.org/019ya6433', 'en', 0, 'https://ror.org/019ya6433 Department for Business, Energy and Industrial Strategy'),
(116107, 'https://ror.org/00m96vp86', 'en', 1, 'https://ror.org/00m96vp86 Queensland Eye Institute'),
(116108, 'https://ror.org/05x7rrj43', 'es', 1, 'https://ror.org/05x7rrj43 Agencia de Regulación y Control Fito y Zoosanitario'),
(116109, 'https://ror.org/02yjcxz86', 'en', 1, 'https://ror.org/02yjcxz86 American Institute of Chemical Engineers'),
(116110, 'https://ror.org/05kd5e468', 'en', 1, 'https://ror.org/05kd5e468 United States Economic Development Administration'),
(116111, 'https://ror.org/029yh7e40', 'en', 1, 'https://ror.org/029yh7e40 District of Columbia Water and Sewer Authority'),
(116112, 'https://ror.org/002gsek34', 'en', 1, 'https://ror.org/002gsek34 Institute for Employment Studies'),
(116113, 'https://ror.org/01t12bz60', 'en', 1, 'https://ror.org/01t12bz60 Development Research and Projects Centre'),
(116114, 'https://ror.org/02xp8v962', 'en', 1, 'https://ror.org/02xp8v962 Vineland Research and Innovation Centre'),
(116115, 'https://ror.org/04ywg4h07', 'en', 1, 'https://ror.org/04ywg4h07 Seoul Media Institute of Technology ģ„œģšøėÆøė””ģ–“ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(116116, 'https://ror.org/05aar4096', 'de', 1, 'https://ror.org/05aar4096 Krankenhaus Porz am Rhein'),
(116117, 'https://ror.org/04dtjxm91', 'en', 1, 'https://ror.org/04dtjxm91 Crown Family Philanthropies'),
(116118, 'https://ror.org/049ncjx51', 'en', 1, 'https://ror.org/049ncjx51 Sage Bionetworks'),
(116119, 'https://ror.org/02yc19841', 'en', 1, 'https://ror.org/02yc19841 UCD Foundation'),
(116120, 'https://ror.org/04a80wt33', 'en', 1, 'https://ror.org/04a80wt33 Canadian Frailty Network'),
(116121, 'https://ror.org/05rd1nw76', 'en', 1, 'https://ror.org/05rd1nw76 Canadian Open Neuroscience Platform'),
(116122, 'https://ror.org/043tp3821', 'en', 1, 'https://ror.org/043tp3821 Crawford University'),
(116123, 'https://ror.org/01725xw94', 'en', 1, 'https://ror.org/01725xw94 Saint-Petersburg State Agrarian University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116124, 'https://ror.org/0449kf092', 'en', 1, 'https://ror.org/0449kf092 Prairie View A&M University'),
(116125, 'https://ror.org/03tmyej96', 'en', 1, 'https://ror.org/03tmyej96 Centro de Investigación en Ecosistemas de la Patagonia Patagonian Ecosystems Investigation Research Center'),
(116126, 'https://ror.org/04wzatk29', 'tr', 1, 'https://ror.org/04wzatk29 Türkiye İş Kurumu'),
(116127, 'https://ror.org/052a22698', 'en', 1, 'https://ror.org/052a22698 National Institute of Science and Technology'),
(116128, 'https://ror.org/059d8kr95', 'en', 1, 'https://ror.org/059d8kr95 Centre for Family Medicine'),
(116129, 'https://ror.org/01rqa5h24', 'es', 1, 'https://ror.org/01rqa5h24 Instituto de Diagnóstico e Investigaciones Metabólicas'),
(116130, 'https://ror.org/011npsm46', 'en', 1, 'https://ror.org/011npsm46 National Institute of Pharmaceutical Education and Research'),
(116131, 'https://ror.org/040eetd52', 'en', 1, 'https://ror.org/040eetd52 College of Agriculture Science and Technology'),
(116132, 'https://ror.org/016kak391', 'pt', 1, 'https://ror.org/016kak391 Centro UniversitƔrio FIEO'),
(116133, 'https://ror.org/025e41s54', 'no_lang_code', 1, 'https://ror.org/025e41s54 Spectral Energies (United States)'),
(116134, 'https://ror.org/006be7t88', 'pl', 1, 'https://ror.org/006be7t88 Centrum Kopernika Badań Interdyscyplinarnych'),
(116135, 'https://ror.org/00tk46k54', 'en', 1, 'https://ror.org/00tk46k54 Sanjay Ghodawat University'),
(116136, 'https://ror.org/05r7vy677', 'no_lang_code', 1, 'https://ror.org/05r7vy677 Hokuto Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ—ę–—åŒ—ę–—ē—…é™¢'),
(116137, 'https://ror.org/01yjqh416', 'en', 1, 'https://ror.org/01yjqh416 Angkor Hospital for Children'),
(116138, 'https://ror.org/04397y226', 'en', 1, 'https://ror.org/04397y226 Canterbury Museum'),
(116139, 'https://ror.org/00w0fba55', 'en', 1, 'https://ror.org/00w0fba55 ACTRIS Italia'),
(116140, 'https://ror.org/009w2dq98', 'en', 1, 'https://ror.org/009w2dq98 Urology of Virginia'),
(116141, 'https://ror.org/04szgb608', 'id', 1, 'https://ror.org/04szgb608 Politeknik Kesejahteraan Sosial'),
(116142, 'https://ror.org/03r30hs79', 'de', 1, 'https://ror.org/03r30hs79 Israelitisches Krankenhaus'),
(116143, 'https://ror.org/035e8e276', 'no_lang_code', 1, 'https://ror.org/035e8e276 Thriasio General Hospital of Elefsina Θριάσιο ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(116144, 'https://ror.org/05rw53r38', 'en', 1, 'https://ror.org/05rw53r38 Royal Zoological Society of Scotland'),
(116145, 'https://ror.org/005rnvh12', 'es', 1, 'https://ror.org/005rnvh12 CSL Behring (Colombia)'),
(116146, 'https://ror.org/03ky7jj30', 'no_lang_code', 1, 'https://ror.org/03ky7jj30 Ensco (United States)'),
(116147, 'https://ror.org/046xvb515', 'pl', 1, 'https://ror.org/046xvb515 Białowieski Park Narodowy Białowieża National Park'),
(116148, 'https://ror.org/00q6g3329', 'en', 1, 'https://ror.org/00q6g3329 Virginia Aquarium & Marine Science Center'),
(116149, 'https://ror.org/03k6zcv51', 'fr', 1, 'https://ror.org/03k6zcv51 Cegep de Saint Hyacinthe CƩgep de saint-hyacinthe'),
(116150, 'https://ror.org/000hkd473', 'en', 1, 'https://ror.org/000hkd473 Dystrophie musculaire Canada Muscular Dystrophy Canada'),
(116151, 'https://ror.org/01k15w004', 'en', 1, 'https://ror.org/01k15w004 Sarcoma Oncology Center'),
(116152, 'https://ror.org/03ebghh63', 'en', 1, 'https://ror.org/03ebghh63 Vignana Bharathi Institute of Technology'),
(116153, 'https://ror.org/02b7a2y37', 'fr', 1, 'https://ror.org/02b7a2y37 MusĆ©e du Quai Branly – Jacques Chirac'),
(116154, 'https://ror.org/05amsz404', 'no_lang_code', 1, 'https://ror.org/05amsz404 Baichuan Baichuan (China) ē™¾å·ę™ŗčƒ½'),
(116155, 'https://ror.org/05bpgb671', 'en', 1, 'https://ror.org/05bpgb671 Emil Racovita Institute of Speleology Institutul De Speologie Emil Racoviţă'),
(116156, 'https://ror.org/05rsv9s98', 'en', 1, 'https://ror.org/05rsv9s98 Departamento de Asuntos de los Veteranos de los Estados Unidos DĆ©partement des anciens combattants des Ɖtats-unis United States Department of Veterans Affairs'),
(116157, 'https://ror.org/02cdcg608', 'en', 1, 'https://ror.org/02cdcg608 University of Sudbury UniversitƩ de Sudbury'),
(116158, '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Ć« Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за јавно Š·Š“Ń€Š°Š²Ń˜Šµ на Република МакеГонија'),
(116159, 'https://ror.org/0591e2567', 'de', 1, 'https://ror.org/0591e2567 Spital Limmattal'),
(116160, 'https://ror.org/01vaajc72', 'en', 1, 'https://ror.org/01vaajc72 City Hospital No. 40 Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 40'),
(116161, 'https://ror.org/04601vy80', 'en', 1, 'https://ror.org/04601vy80 Al-Ameen College of Pharmacy'),
(116162, 'https://ror.org/04s8gft68', 'en', 1, 'https://ror.org/04s8gft68 National Institute for Bioprocessing Research and Training'),
(116163, 'https://ror.org/0248gc218', 'en', 1, 'https://ror.org/0248gc218 Adler Planetarium'),
(116164, 'https://ror.org/0213d4b59', 'de', 1, 'https://ror.org/0213d4b59 Stiftung Institut für Herzinfarktforschung'),
(116165, 'https://ror.org/03mxy1b19', 'en', 1, 'https://ror.org/03mxy1b19 Fonds Peregrin The Peregrine Fund'),
(116166, 'https://ror.org/012bgdr48', 'en', 1, 'https://ror.org/012bgdr48 Software Policy and Research Institute ģ†Œķ”„ķŠøģ›Øģ–“ģ •ģ±…ģ—°źµ¬ģ†Œ'),
(116167, 'https://ror.org/02b0zvv74', 'en', 1, 'https://ror.org/02b0zvv74 Instituto Alexander Fleming'),
(116168, 'https://ror.org/027hgk366', 'en', 1, 'https://ror.org/027hgk366 Flu Lab'),
(116169, 'https://ror.org/051sgbe98', 'en', 1, 'https://ror.org/051sgbe98 United Kingdom Space Agency'),
(116170, 'https://ror.org/03nx8tr59', 'no_lang_code', 1, 'https://ror.org/03nx8tr59 Fortum (Finland)'),
(116171, 'https://ror.org/05qbxf960', 'en', 1, 'https://ror.org/05qbxf960 Shenzhen Institute for Drug Control'),
(116172, 'https://ror.org/04ac0qk71', 'en', 1, 'https://ror.org/04ac0qk71 Department of Finance of Jiangsu Province ę±Ÿč‹ēœč“¢ę”æåŽ…'),
(116173, 'https://ror.org/01e6msy72', 'fr', 1, 'https://ror.org/01e6msy72 Centre Hospitalier De Pau'),
(116174, 'https://ror.org/01mv9t934', 'en', 1, 'https://ror.org/01mv9t934 Ministry of Education of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½ę•™č‚²éƒØ');
INSERT INTO `rors` VALUES
(116175, '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'),
(116176, 'https://ror.org/04j0gge90', 'no_lang_code', 1, 'https://ror.org/04j0gge90 Walmart (United States)'),
(116177, 'https://ror.org/02h1b8b88', 'no_lang_code', 1, 'https://ror.org/02h1b8b88 Astor Enerji Astor Enerji (Türkiye)'),
(116178, 'https://ror.org/05dcrp459', 'en', 1, 'https://ror.org/05dcrp459 Rainbow Children''s Hospital'),
(116179, 'https://ror.org/04e9avw37', 'en', 1, 'https://ror.org/04e9avw37 Shri Vaishnav Vidyapeeth Vishwavidyalaya, Indore'),
(116180, 'https://ror.org/05bk57929', 'en', 1, 'https://ror.org/05bk57929 Stellenbosch University Universiteit Stellenbosch'),
(116181, 'https://ror.org/04vj14y69', 'no_lang_code', 1, 'https://ror.org/04vj14y69 NeoGenomics (United States)'),
(116182, 'https://ror.org/00mnsjn75', 'en', 1, 'https://ror.org/00mnsjn75 Institute of Forensic Sciences Instituto de Ciencias Forenses de Puerto Rico'),
(116183, 'https://ror.org/03wgsrq67', 'en', 1, 'https://ror.org/03wgsrq67 Vestre Viken Hospital Trust'),
(116184, 'https://ror.org/03g2am276', 'en', 1, 'https://ror.org/03g2am276 National Research, Development and Innovation Office'),
(116185, 'https://ror.org/02f0jdn75', 'en', 1, 'https://ror.org/02f0jdn75 Cabinet Office'),
(116186, 'https://ror.org/04s5k9k17', 'nl', 1, 'https://ror.org/04s5k9k17 Nederlands Instituut Veiligheid Zwemlocaties'),
(116187, 'https://ror.org/01bxvfc84', 'en', 0, 'https://ror.org/01bxvfc84 Small and Medium Business Administration ėŒ€ķ•œėÆ¼źµ­ģ¤‘ģ†Œźø°ģ—…ģ²­'),
(116188, 'https://ror.org/03xp8p672', 'no_lang_code', 1, 'https://ror.org/03xp8p672 Jahrom University دانؓگاه جهرم'),
(116189, 'https://ror.org/04a9s7v87', 'en', 1, 'https://ror.org/04a9s7v87 Association internationale de gƩodƩsie International Association of Geodesy'),
(116190, 'https://ror.org/020er8s15', 'en', 1, 'https://ror.org/020er8s15 Vaccine Confidence Fund'),
(116191, 'https://ror.org/03p4pbx79', 'es', 1, 'https://ror.org/03p4pbx79 Centro de Estudios de Conflicto y Cohesión Social'),
(116192, 'https://ror.org/032y8tg91', 'en', 1, 'https://ror.org/032y8tg91 Mediciti Institute of Medical Sciences ą°®ą±†ą°”ą°æą°øą°æą°Ÿą°æ ą°µą±ˆą°¦ą±ą°Æ ą°µą°æą°œą±ą°žą°¾ą°Ø ą°øą°‚ą°øą±ą°„'),
(116193, 'https://ror.org/04vshys30', 'es', 1, 'https://ror.org/04vshys30 MƔntum MƔntum S.A.S. MƔntum S.A.S. (Colombia)'),
(116194, 'https://ror.org/00vqxjy61', 'en', 1, 'https://ror.org/00vqxjy61 Breakthrough T1D'),
(116195, 'https://ror.org/02am94a11', 'en', 1, 'https://ror.org/02am94a11 Anagram Therapeutics Inc. Anagram Therapeutics Inc. (United States of America)'),
(116196, 'https://ror.org/02qgw5c67', 'no_lang_code', 1, 'https://ror.org/02qgw5c67 Manonmaniam Sundaranar University ą®®ą®©ąÆ‹ą®©ąÆą®®ą®£ą®æą®Æą®®ąÆ ą®šąÆą®ØąÆą®¤ą®°ą®©ą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(116197, 'https://ror.org/059538728', 'es', 1, 'https://ror.org/059538728 Centro UniversitƔrio Academia'),
(116198, 'https://ror.org/008jrea29', 'id', 1, 'https://ror.org/008jrea29 Sekolah TInggi Ilmu Ekonomi YPUP Makassar'),
(116199, 'https://ror.org/05r2k0m61', 'no_lang_code', 1, 'https://ror.org/05r2k0m61 Osaka Jogakuin University å¤§é˜Ŗå„³å­¦é™¢å¤§å­¦'),
(116200, 'https://ror.org/05kvypp26', 'de', 1, 'https://ror.org/05kvypp26 Medias Klinikum'),
(116201, 'https://ror.org/03cyjvc50', 'en', 1, 'https://ror.org/03cyjvc50 Curry College'),
(116202, 'https://ror.org/03t8jp775', 'en', 1, 'https://ror.org/03t8jp775 Examinations Council of Zambia'),
(116203, 'https://ror.org/00bwfj843', 'en', 1, 'https://ror.org/00bwfj843 Private Fachhochschule Wedel University of Applied Sciences Wedel'),
(116204, 'https://ror.org/01ge84v72', 'en', 1, 'https://ror.org/01ge84v72 Climate Central'),
(116205, 'https://ror.org/03577hm03', 'en', 1, 'https://ror.org/03577hm03 Ministry of Agriculture of the Republic of Kazakhstan'),
(116206, 'https://ror.org/02nrc4737', 'nl', 1, 'https://ror.org/02nrc4737 Stichting A.F. Deutman Oogheelkunde Researchfonds'),
(116207, 'https://ror.org/05vhxx644', 'no_lang_code', 1, 'https://ror.org/05vhxx644 Athens Euroclinic'),
(116208, 'https://ror.org/03ej19f56', 'en', 1, 'https://ror.org/03ej19f56 Moonshot AI Moonshot AI (China) ęœˆä¹‹ęš—é¢'),
(116209, 'https://ror.org/037qnwq20', 'en', 1, 'https://ror.org/037qnwq20 Canadian Paediatric Society SociƩtƩ Canadienne de PƩdiatrie'),
(116210, 'https://ror.org/0061x0487', 'en', 1, 'https://ror.org/0061x0487 University System of New Hampshire'),
(116211, 'https://ror.org/04npwsp41', 'en', 1, 'https://ror.org/04npwsp41 Coriell Institute For Medical Research'),
(116212, 'https://ror.org/04c14rw28', 'en', 1, 'https://ror.org/04c14rw28 Leibniz Institute for Educational Trajectories Leibniz-Institut für Bildungsverläufe e.V.'),
(116213, 'https://ror.org/045e9rc94', 'pt', 1, 'https://ror.org/045e9rc94 Hospital do Rim e Hipertensão'),
(116214, 'https://ror.org/04hztxs45', 'en', 1, 'https://ror.org/04hztxs45 National Education and Research Network Rede Nacional de Ensino e Pesquisa'),
(116215, 'https://ror.org/04x3wvr31', 'pt', 1, 'https://ror.org/04x3wvr31 Federal University of Uberlândia Universidade Federal de Uberlândia'),
(116216, 'https://ror.org/02ztgqr61', 'en', 1, 'https://ror.org/02ztgqr61 Bhailalbhai and Bhikhabhai Institute of Technology ભાઈલાલભાઈ ąŖąŖØą«ąŖ” ąŖ­ą«€ąŖ–ąŖ¾ąŖ­ąŖ¾ąŖˆ ąŖ‡ąŖØą«ąŖøą«ąŖŸąŖæąŖŸą«ąŖÆą«‚ąŖŸ ąŖ“ąŖ« ąŖŸą«‡ąŖ•ą«ąŖØą«‹ąŖ²ą«‹ąŖœą«€'),
(116217, 'https://ror.org/05ch0aw77', 'en', 1, 'https://ror.org/05ch0aw77 Texas Southern University'),
(116218, 'https://ror.org/03acb7p04', 'no_lang_code', 1, 'https://ror.org/03acb7p04 Delta Electronics (Taiwan) 达电子'),
(116219, 'https://ror.org/00vzw9736', 'no_lang_code', 1, 'https://ror.org/00vzw9736 Kariya Toyota General Hospital åˆˆč°·č±Šē”°ē·åˆē—…é™¢'),
(116220, 'https://ror.org/04f6s9e70', 'en', 1, 'https://ror.org/04f6s9e70 The National Center for Special Education Research'),
(116221, 'https://ror.org/014cxe167', 'fr', 1, 'https://ror.org/014cxe167 Fonds de Dotation Clinatec'),
(116222, 'https://ror.org/03gds6c39', 'en', 1, 'https://ror.org/03gds6c39 The University of Texas Health Science Center at Houston'),
(116223, 'https://ror.org/00wjy0847', 'en', 1, 'https://ror.org/00wjy0847 Ministry of Public Health وزارة الصحة العامة'),
(116224, 'https://ror.org/01q5m4507', 'en', 1, 'https://ror.org/01q5m4507 Endometriosis'),
(116225, 'https://ror.org/01s2jen95', 'en', 1, 'https://ror.org/01s2jen95 Center for Practical Bioethics'),
(116226, 'https://ror.org/00nv6q035', 'en', 1, 'https://ror.org/00nv6q035 Khyber Medical University جامعہ طبی Ų®ŪŒŲØŲ±ā€¬ā€Ž'),
(116227, 'https://ror.org/03a6wcb68', 'de', 1, 'https://ror.org/03a6wcb68 Bundesministerium für Wohnen, Kunst, Kultur, Medien und Sport Federal Ministry of Housing, Arts, Culture, Media and Sport'),
(116228, 'https://ror.org/00kc94n51', 'en', 1, 'https://ror.org/00kc94n51 Kazakh National Women''s Teacher Training University ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ женский пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŅšŠ°Š·Š°Ņ› ұлттық қызГар пеГагогикалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(116229, 'https://ror.org/02yr91f43', 'no_lang_code', 1, 'https://ror.org/02yr91f43 Hainan Center for Disease Control & Prevention ęµ·å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(116230, 'https://ror.org/00qnxjg67', 'en', 0, 'https://ror.org/00qnxjg67 East Midlands Development Agency'),
(116231, 'https://ror.org/02ved8513', 'en', 1, 'https://ror.org/02ved8513 Project HOPE'),
(116232, 'https://ror.org/02xm2e940', 'pl', 1, 'https://ror.org/02xm2e940 Collegium Mazovia Innowacyjna Szkoła Wyższa'),
(116233, 'https://ror.org/00n1s6s20', 'en', 1, 'https://ror.org/00n1s6s20 United States Holocaust Memorial Museum'),
(116234, 'https://ror.org/00j6adv59', 'en', 1, 'https://ror.org/00j6adv59 Guangdong Federation of Social Sciences å¹æäøœēœē¤¾ä¼šē§‘å­¦ē•Œč”åˆä¼š'),
(116235, 'https://ror.org/023avht41', 'de', 1, 'https://ror.org/023avht41 Deutsche Gesellschaft für Hämatologie und Medizinische Onkologie'),
(116236, 'https://ror.org/046qmva50', 'no_lang_code', 1, 'https://ror.org/046qmva50 SA Technologies (United States)'),
(116237, 'https://ror.org/00aywxq66', 'ro', 1, 'https://ror.org/00aywxq66 Spitalul Clinic Judeţean de Urgenţă "Pius Brînzeu" Timişoara'),
(116238, 'https://ror.org/00s4cve39', 'fr', 1, 'https://ror.org/00s4cve39 Catholic University of Toulouse Institut catholique de toulouse'),
(116239, 'https://ror.org/015g9sa94', 'en', 1, 'https://ror.org/015g9sa94 Agricultural Bank of China'),
(116240, 'https://ror.org/02xqwa087', 'en', 1, 'https://ror.org/02xqwa087 Institute of Applied Geophysics of the Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ УчрежГение ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной геофизики АкаГемии наук'),
(116241, 'https://ror.org/05fe2ew26', 'en', 1, 'https://ror.org/05fe2ew26 National Sports Academy Vassil Levski ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Дпортна ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ "Васил Левски"'),
(116242, 'https://ror.org/014gyb994', 'en', 1, 'https://ror.org/014gyb994 Wine Australia'),
(116243, 'https://ror.org/038c3w259', 'en', 1, 'https://ror.org/038c3w259 Kunming Medical University ę˜†ę˜ŽåŒ»ē§‘å¤§å­¦'),
(116244, 'https://ror.org/04jmr7c65', 'en', 1, 'https://ror.org/04jmr7c65 Chestnut Health Systems'),
(116245, 'https://ror.org/043v0a663', 'no_lang_code', 1, 'https://ror.org/043v0a663 Shijiazhuang Yiling Pharmaceutical (China) ēŸ³å®¶åŗ„ä»„å²­čÆäøšč‚”ä»½ęœ‰é™å…¬åø 萄业'),
(116246, 'https://ror.org/04vwvy878', 'fr', 1, 'https://ror.org/04vwvy878 Institut Facultaire des sciences Agronomiques de Yangambi'),
(116247, 'https://ror.org/03gk11k54', 'en', 1, 'https://ror.org/03gk11k54 American Water Works Association'),
(116248, 'https://ror.org/02nee2y72', 'en', 1, 'https://ror.org/02nee2y72 Buein Zahra Technical University'),
(116249, 'https://ror.org/02pn7t710', 'no_lang_code', 1, 'https://ror.org/02pn7t710 McDermott Will & Emery (United States)'),
(116250, 'https://ror.org/05ba5vb42', 'en', 1, 'https://ror.org/05ba5vb42 Comisión Internacional de Nomenclatura Zoológica Comissió Internacional de Nomenclatura Zoològica ComissĆ£o Internacional de Nomenclatura Zoológica Commission internationale de nomenclature zoologique International Commission on Zoological Nomenclature Międzynarodowa Komisja Nomenklatury Zoologicznej Nemzetkƶzi Zoológiai NómenklatĆŗrabizottsĆ”g ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń ŠŗŠ¾Š¼ŠøŃŃŠøŃ по зоологической Š½Š¾Š¼ŠµŠ½ŠŗŠ»Š°Ń‚ŃƒŃ€Šµ Ś©Ł…ŪŒŲ³ŪŒŁˆŁ† ŲØŪŒŁ†Ų§Ł„Ł…Ł„Ł„ŪŒ Ł†Ų§Ł…ŚÆŲ°Ų§Ų±ŪŒ Ų¬Ų§Ł†ŁˆŲ±Ų§Ł† å‹•ē‰©å‘½åę³•å›½éš›åÆ©č­°ä¼š åœ‹éš›å‹•ē‰©å‘½åę³•å§”å“”ęœƒ źµ­ģ œė™ė¬¼ėŖ…ėŖ…ź·œģ•½ģœ„ģ›ķšŒ'),
(116251, 'https://ror.org/04twxam07', 'en', 1, 'https://ror.org/04twxam07 The University of Texas MD Anderson Cancer Center'),
(116252, 'https://ror.org/04jb7yj10', 'en', 1, 'https://ror.org/04jb7yj10 Hannan University é˜Ŗå—å¤§å­¦'),
(116253, 'https://ror.org/05gmsjx02', 'en', 1, 'https://ror.org/05gmsjx02 Shorter College'),
(116254, 'https://ror.org/01kdbsa35', 'en', 1, 'https://ror.org/01kdbsa35 National Imaging Facility'),
(116255, 'https://ror.org/03s5jv345', 'en', 1, 'https://ror.org/03s5jv345 Humanitas University in Sosnowiec Wyższa Szkoła Humanitas w Sosnowcu'),
(116256, 'https://ror.org/01d16dr57', 'de', 1, 'https://ror.org/01d16dr57 PHV Dialysezentrum Patienten-Heimversorgung'),
(116257, 'https://ror.org/0526xz308', 'de', 1, 'https://ror.org/0526xz308 Siloah St. Trudpert Klinikum'),
(116258, 'https://ror.org/03phg1t06', 'en', 1, 'https://ror.org/03phg1t06 National University of Lomas de Zamora Universidad Nacional de Lomas de Zamora'),
(116259, 'https://ror.org/03zs6xb29', 'en', 1, 'https://ror.org/03zs6xb29 Manitoba Innovates'),
(116260, 'https://ror.org/022485d27', 'en', 1, 'https://ror.org/022485d27 College of Agriculture at Križevci'),
(116261, 'https://ror.org/01n6mms53', 'en', 1, 'https://ror.org/01n6mms53 State Library of Württemberg Württembergische Landesbibliothek'),
(116262, 'https://ror.org/04v7xgm25', 'en', 1, 'https://ror.org/04v7xgm25 Dalian Science and Technology Bureau å¤§čæžåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(116263, 'https://ror.org/037wv7h91', 'en', 1, 'https://ror.org/037wv7h91 Ohta Nishinouchi Hospital å¤Ŗē”°č„æćƒŽå†…ē—…é™¢'),
(116264, 'https://ror.org/02svp4q11', 'en', 1, 'https://ror.org/02svp4q11 Dementia UK'),
(116265, 'https://ror.org/011803230', 'es', 1, 'https://ror.org/011803230 Fundación Española de la Nutrición Spanish Nutrition Foundation'),
(116266, 'https://ror.org/05q9m0937', 'en', 1, 'https://ror.org/05q9m0937 University of Klagenfurt UniversitƤt Klagenfurt Univerza v Celovcu'),
(116267, 'https://ror.org/02ckm0r33', 'pt', 1, 'https://ror.org/02ckm0r33 Governo do Distrito Federal'),
(116268, 'https://ror.org/02nthw835', 'en', 1, 'https://ror.org/02nthw835 Indian Institute of Management Amritsar'),
(116269, 'https://ror.org/02z54mf22', 'en', 1, 'https://ror.org/02z54mf22 Research Network for the Study of Esoteric Practices'),
(116270, 'https://ror.org/050rnbb37', 'en', 1, 'https://ror.org/050rnbb37 Shomal University دانؓگاه Ų“Ł…Ų§Ł„'),
(116271, 'https://ror.org/04sxsgm54', 'en', 1, 'https://ror.org/04sxsgm54 Comisión Interamericana del Atún Tropical Inter-American Tropical Tuna Commission'),
(116272, 'https://ror.org/03vews725', 'en', 1, 'https://ror.org/03vews725 Rajkiya Engineering College Azamgarh'),
(116273, 'https://ror.org/029m5wr77', 'en', 1, 'https://ror.org/029m5wr77 Grande International Hospital'),
(116274, 'https://ror.org/05h6f5h95', 'en', 1, 'https://ror.org/05h6f5h95 Institute of Biomedical and Genetic Engineering'),
(116275, 'https://ror.org/03d5y7k92', 'en', 1, 'https://ror.org/03d5y7k92 Rajkiya Engineering College Banda'),
(116276, 'https://ror.org/02nc8vp15', 'es', 1, 'https://ror.org/02nc8vp15 Departamento Nacional de Planeación'),
(116277, 'https://ror.org/032jvkt14', 'en', 1, 'https://ror.org/032jvkt14 Office on Violence Against Women'),
(116278, 'https://ror.org/058ndjg49', 'en', 1, 'https://ror.org/058ndjg49 Logan University'),
(116279, 'https://ror.org/03znw6w55', 'es', 1, 'https://ror.org/03znw6w55 Centro de Investigación Científica de YucatÔn, A.C Scientific Research Center of Yucatan'),
(116280, '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"'),
(116281, 'https://ror.org/009w8mm15', 'fr', 1, 'https://ror.org/009w8mm15 Clinique Saint Pierre'),
(116282, 'https://ror.org/034fcx588', 'en', 1, 'https://ror.org/034fcx588 Central Council for Research in Unani Medicine'),
(116283, 'https://ror.org/02ndvz068', 'en', 1, 'https://ror.org/02ndvz068 Kabul Medical University دانؓگاه Ų·ŲØ کابل'),
(116284, 'https://ror.org/002td9r73', 'no_lang_code', 1, 'https://ror.org/002td9r73 Laboklin (Germany)'),
(116285, 'https://ror.org/039zjm090', 'en', 1, 'https://ror.org/039zjm090 The Center for Artificial Intelligence and Environmental Sustainability (CAIES) Foundation'),
(116286, 'https://ror.org/03k6zec98', 'en', 1, 'https://ror.org/03k6zec98 Durgadevi Saraf Institute of Management Studies'),
(116287, 'https://ror.org/005xs3e07', 'en', 1, 'https://ror.org/005xs3e07 CO2CRC'),
(116288, 'https://ror.org/058p78w59', 'es', 1, 'https://ror.org/058p78w59 Alfred H. Knight (Chile)'),
(116289, 'https://ror.org/04whsde46', 'de', 1, 'https://ror.org/04whsde46 Dermatologikum Hamburg'),
(116290, 'https://ror.org/01r0c1p88', 'en', 1, 'https://ror.org/01r0c1p88 University System of Maryland'),
(116291, 'https://ror.org/027frky36', 'en', 1, 'https://ror.org/027frky36 North-Caucasian Mining and Metallurgical Institute Деверо-Кавказский горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(116292, 'https://ror.org/0199hy323', 'en', 1, 'https://ror.org/0199hy323 St. Philomena''s College, Mysuru'),
(116293, 'https://ror.org/02wt6gj97', 'en', 1, 'https://ror.org/02wt6gj97 Dollezhal Research and Development Institute of Power Engineering ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³Š¾Ń‚ŠµŃ…Š½ŠøŠŗŠø имени Š. А. Š”Š¾Š»Š»ŠµŠ¶Š°Š»Ń'),
(116294, 'https://ror.org/03nkkb025', 'en', 1, 'https://ror.org/03nkkb025 Rwanda Agriculture Board'),
(116295, 'https://ror.org/02vc1v137', 'en', 1, 'https://ror.org/02vc1v137 Indian Spinal Injuries Centre'),
(116296, 'https://ror.org/014f6m860', 'en', 1, 'https://ror.org/014f6m860 Yelets State University named after Ivan Bunin Елецкий Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им.И.А. Š‘ŃƒŠ½ŠøŠ½Š°'),
(116297, 'https://ror.org/05ntqn068', 'pt', 1, 'https://ror.org/05ntqn068 PolĆ­cia Civil do Distrito Federal'),
(116298, 'https://ror.org/05n7t1e46', 'no_lang_code', 1, 'https://ror.org/05n7t1e46 Wako University 和光大学'),
(116299, 'https://ror.org/006w57p51', 'ro', 1, 'https://ror.org/006w57p51 Institutul Regional de Oncologie'),
(116300, 'https://ror.org/03jv3zx29', 'en', 1, 'https://ror.org/03jv3zx29 Foundation of Cardiac Surgery Development'),
(116301, 'https://ror.org/042hqe202', 'en', 1, 'https://ror.org/042hqe202 Breakthrough T1D UK'),
(116302, 'https://ror.org/01hb96w20', 'en', 1, 'https://ror.org/01hb96w20 TuBerculosis Vaccine Initiative'),
(116303, 'https://ror.org/055tjvf60', 'no_lang_code', 1, 'https://ror.org/055tjvf60 Med-Storm Innovation (Norway)'),
(116304, 'https://ror.org/0263npa52', 'en', 1, 'https://ror.org/0263npa52 Higher School of Social Studies and Security Wyższa Szkoła Nauk Społecznych i Bezpieczeństwa Вища Школа Š”Š¾Ń†Ń–Š°Š»ŃŒŠ½ŠøŃ… ŠŠ°ŃƒŠŗ та Безпеки'),
(116305, 'https://ror.org/03mam0k06', 'en', 1, 'https://ror.org/03mam0k06 National Collaborative on Gun Violence Research'),
(116306, 'https://ror.org/03xagjf37', 'en', 1, 'https://ror.org/03xagjf37 Kaye Academic College of Education המכללה ×”××§×“×ž×™×Ŗ לחינוך ×¢"ש קיי ŁƒŁ„ŁŠŲ© كي Ł„Ł„ŲŖŲ±ŲØŁŠŲ©'),
(116307, 'https://ror.org/01dqb0q37', 'en', 1, 'https://ror.org/01dqb0q37 LifeArc'),
(116308, 'https://ror.org/00f1wmk62', 'es', 1, 'https://ror.org/00f1wmk62 Universidad Iberoamericana León'),
(116309, 'https://ror.org/02bxtrk46', 'en', 0, 'https://ror.org/02bxtrk46 Institute of Precision Mechanics'),
(116310, 'https://ror.org/05fx6hz85', 'pt', 1, 'https://ror.org/05fx6hz85 Sport Lisboa e Benfica'),
(116311, 'https://ror.org/01wng0g34', 'es', 1, 'https://ror.org/01wng0g34 Centro de Estudios de Física del Cosmos de Aragón'),
(116312, 'https://ror.org/04gaaqn72', 'no_lang_code', 1, 'https://ror.org/04gaaqn72 National Cooperative for the Disposal of Radioactive Waste (Switzerland)'),
(116313, 'https://ror.org/049j15k39', 'no_lang_code', 1, 'https://ror.org/049j15k39 Dongfeng Motor (China)'),
(116314, 'https://ror.org/01wzqhm27', 'en', 1, 'https://ror.org/01wzqhm27 Academy of Agricultural and Forestry Sciences'),
(116315, 'https://ror.org/00pqt1c92', 'no_lang_code', 1, 'https://ror.org/00pqt1c92 Synergy Microwave (United States)'),
(116316, 'https://ror.org/0004wsx81', 'en', 1, 'https://ror.org/0004wsx81 Telkom University'),
(116317, 'https://ror.org/012j4s611', 'de', 1, 'https://ror.org/012j4s611 UniversitƤtsklinikum Tulln'),
(116318, 'https://ror.org/04eejsy70', 'de', 1, 'https://ror.org/04eejsy70 Faculty of Theology Fulda Theologische FakultƤt Fulda'),
(116319, 'https://ror.org/02d71t021', 'it', 1, 'https://ror.org/02d71t021 Consorzio Milano Ricerche'),
(116320, 'https://ror.org/02t7gyd38', 'en', 1, 'https://ror.org/02t7gyd38 Paragon Testing Enterprises Paragon Testing Enterprises (Canada)'),
(116321, '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'),
(116322, 'https://ror.org/01x80kz37', 'es', 1, 'https://ror.org/01x80kz37 Consejo Veracruzano de Investigación Científica y Desarrollo Tecnológico'),
(116323, 'https://ror.org/008ry7r11', 'en', 1, 'https://ror.org/008ry7r11 Alternative Research Initiative'),
(116324, 'https://ror.org/0511zqc76', 'en', 1, 'https://ror.org/0511zqc76 Chuo Kikuu cha Tumaini Tumaini University'),
(116325, '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ý'),
(116326, 'https://ror.org/04702m080', 'en', 1, 'https://ror.org/04702m080 Mahatma Gandhi University'),
(116327, 'https://ror.org/048yqnw40', 'en', 1, 'https://ror.org/048yqnw40 Historic Deerfield'),
(116328, 'https://ror.org/01zs6bp63', 'nl', 1, 'https://ror.org/01zs6bp63 Stichting Kinderoncologie Nederland'),
(116329, 'https://ror.org/02sg1hf43', 'en', 1, 'https://ror.org/02sg1hf43 Victoria Park'),
(116330, 'https://ror.org/01cakqh38', 'no_lang_code', 1, 'https://ror.org/01cakqh38 LMC Diabetes & Endocrinology (Canada)'),
(116331, 'https://ror.org/0086b8v72', 'en', 1, 'https://ror.org/0086b8v72 International Neuroscience Institute'),
(116332, 'https://ror.org/01pemhh03', 'en', 1, 'https://ror.org/01pemhh03 Association of Women''s Health Obstetric and Neonatal Nurses'),
(116333, 'https://ror.org/044tv3769', 'id', 1, 'https://ror.org/044tv3769 Universitas Kapuas Sintang'),
(116334, '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'),
(116335, 'https://ror.org/058zzep76', 'it', 1, 'https://ror.org/058zzep76 Museo Egizio'),
(116336, 'https://ror.org/03vmrxk92', 'en', 1, 'https://ror.org/03vmrxk92 State Research Center for Applied Microbiology and Biotechnology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр приклаГной микробиологии Šø биотехнологии'),
(116337, 'https://ror.org/01s3wfa18', 'de', 1, 'https://ror.org/01s3wfa18 Schüchtermann-Klinik'),
(116338, 'https://ror.org/01ng0hs47', 'en', 1, 'https://ror.org/01ng0hs47 American Institute of Bisexuality'),
(116339, 'https://ror.org/0420bch11', 'id', 1, 'https://ror.org/0420bch11 Universitas PGRI Mahadewa Indonesia'),
(116340, 'https://ror.org/028gajb68', 'en', 1, 'https://ror.org/028gajb68 Nile Valley University Ų¬Ų§Ł…Ų¹Ų© وادي Ų§Ł„Ł†ŁŠŁ„'),
(116341, 'https://ror.org/01f3z1j62', 'en', 1, 'https://ror.org/01f3z1j62 Primate Conservation'),
(116342, 'https://ror.org/0440cy367', 'no_lang_code', 1, 'https://ror.org/0440cy367 University of Liberia'),
(116343, 'https://ror.org/024465936', 'en', 1, 'https://ror.org/024465936 Diabetes Zentrum Mergentheim German Diabetes Center Mergentheim'),
(116344, 'https://ror.org/05p556071', 'en', 1, 'https://ror.org/05p556071 Morningside College'),
(116345, 'https://ror.org/01419bf49', 'en', 1, 'https://ror.org/01419bf49 Pacific International Center for High Technology Research'),
(116346, 'https://ror.org/04aw6vq52', 'en', 1, 'https://ror.org/04aw6vq52 Texas Back Institute'),
(116347, 'https://ror.org/05w35s747', 'en', 1, 'https://ror.org/05w35s747 Franklin College'),
(116348, 'https://ror.org/03ve4rt72', 'en', 1, 'https://ror.org/03ve4rt72 RACP Foundation'),
(116349, 'https://ror.org/00h3ybn86', 'en', 1, 'https://ror.org/00h3ybn86 Lagos State Ministry of Health'),
(116350, 'https://ror.org/03mq2kf66', 'en', 1, 'https://ror.org/03mq2kf66 HSU Dr. Suat Seren Chest Diseases and Chest Surgery Training and Research Hospital SBÜ Dr. Suat Seren Göğüs Hastaliklari ve Cerrahi̇si̇ Eği̇ti̇m ve Araştirma Hastanesi̇'),
(116351, 'https://ror.org/05kay3028', 'en', 1, 'https://ror.org/05kay3028 ElSewedy University of Technology ElSewedy University of Technology - POLYTECHNIC OF EGYPT Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŁŠŲÆŁŠ Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(116352, 'https://ror.org/02xesw687', 'en', 1, 'https://ror.org/02xesw687 North Manchester General Hospital'),
(116353, 'https://ror.org/0187t3494', 'en', 1, 'https://ror.org/0187t3494 Landesmuseum Swiss National Museum'),
(116354, 'https://ror.org/05kff3e67', 'pl', 1, 'https://ror.org/05kff3e67 Central Mine Rescue Station Centralna Stacja Ratownictwa Górniczego'),
(116355, 'https://ror.org/016tmz810', 'de', 1, 'https://ror.org/016tmz810 Innovent'),
(116356, 'https://ror.org/00xectf18', 'no_lang_code', 1, 'https://ror.org/00xectf18 Weston Solutions (United States)'),
(116357, 'https://ror.org/00kss4e25', 'nl', 0, 'https://ror.org/00kss4e25 GZA Ziekenhuizen Campus Sint-Augustinus'),
(116358, 'https://ror.org/00m9mc973', 'en', 1, 'https://ror.org/00m9mc973 European Association of Urology'),
(116359, 'https://ror.org/02dsehb09', 'en', 1, 'https://ror.org/02dsehb09 Center for Solar Energy Research and Studies Ł…Ų±ŁƒŲ² بحوث ودراسات الطاقة Ų§Ł„Ų“Ł…Ų³ŁŠŲ©'),
(116360, 'https://ror.org/01fxc3526', 'en', 1, 'https://ror.org/01fxc3526 Northwestern Agusan Colleges'),
(116361, 'https://ror.org/0131ca207', 'en', 1, 'https://ror.org/0131ca207 Sergipe Technological Park'),
(116362, 'https://ror.org/03gat5t60', 'es', 1, 'https://ror.org/03gat5t60 Secretaría Nacional de Ciencia, Tecnología e Innovación'),
(116363, 'https://ror.org/00cztjn15', 'en', 1, 'https://ror.org/00cztjn15 Hinge Health'),
(116364, 'https://ror.org/03ga5xc36', 'no_lang_code', 1, 'https://ror.org/03ga5xc36 Wockhardt Hospitals'),
(116365, 'https://ror.org/03t5n9b81', 'en', 1, 'https://ror.org/03t5n9b81 Pancreatic Cancer Action Network'),
(116366, 'https://ror.org/002x06r10', 'no_lang_code', 1, 'https://ror.org/002x06r10 Agios Pharmaceuticals (United States)'),
(116367, 'https://ror.org/05krxy197', 'en', 1, 'https://ror.org/05krxy197 Profil Institut für Stoffwechselforschung Profil Institute for Metabolic Research'),
(116368, 'https://ror.org/052xwpe12', 'en', 1, 'https://ror.org/052xwpe12 EM Normandie Business School'),
(116369, 'https://ror.org/01pe22k85', 'pt', 1, 'https://ror.org/01pe22k85 Instituto PortuguĆŖs Da Qualidade'),
(116370, 'https://ror.org/057q4rt57', 'en', 1, 'https://ror.org/057q4rt57 Hospital for Sick Children'),
(116371, 'https://ror.org/02twcfp32', 'en', 1, 'https://ror.org/02twcfp32 Crossref'),
(116372, 'https://ror.org/00eftnx64', 'pt', 1, 'https://ror.org/00eftnx64 Federal University of Campina Grande Universidade Federal de Campina Grande'),
(116373, 'https://ror.org/0243h2p98', 'en', 1, 'https://ror.org/0243h2p98 St.Tikhon''s Orthodox University ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Ń‹Š¹ Š”Š²ŃŃ‚Š¾-Тихоновский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116374, 'https://ror.org/0132a5580', 'id', 1, 'https://ror.org/0132a5580 Sekolah Tinggi Ilmu Tarbiyah Nusantara Bekasi'),
(116375, 'https://ror.org/050351d24', 'en', 1, 'https://ror.org/050351d24 Borneo Orangutan Survival Foundation'),
(116376, 'https://ror.org/012p63287', 'en', 1, 'https://ror.org/012p63287 Rijksuniversiteit Groningen University of Groningen'),
(116377, 'https://ror.org/030qptj94', 'en', 1, 'https://ror.org/030qptj94 Lahore Leads University Ł„Ų§ŪŁˆŲ± Ł„ŪŒŚˆŲ² ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(116378, 'https://ror.org/016k9d838', 'es', 1, 'https://ror.org/016k9d838 Automotive Technology Centre of Galicia Centro Tecnológico de Automoción de Galicia'),
(116379, 'https://ror.org/0169gd037', 'en', 1, 'https://ror.org/0169gd037 Ruralis - Institute for Rural and Regional Research'),
(116380, 'https://ror.org/016knsn07', 'en', 1, 'https://ror.org/016knsn07 National Confidential Enquiry into Patient Outcome and Death'),
(116381, 'https://ror.org/01edayx41', 'en', 1, 'https://ror.org/01edayx41 OŹ»zbekiston davlat jismoniy tarbiya va sport universiteti Uzbek State University of Physical Culture and Sport Узбекский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(116382, 'https://ror.org/01vkf8q93', 'it', 1, 'https://ror.org/01vkf8q93 Altamedica Artemisia'),
(116383, 'https://ror.org/03b42q221', 'no_lang_code', 1, 'https://ror.org/03b42q221 United Orthopedic United Orthopedic (Taiwan) United Orthopedic Corporation'),
(116384, 'https://ror.org/013q1e562', 'en', 1, 'https://ror.org/013q1e562 Arthur B. McDonald-Canadian Astroparticle Physics Research Institute'),
(116385, 'https://ror.org/03kzn3e44', 'fr', 1, 'https://ror.org/03kzn3e44 College of general and vocational education Collège d''enseignement général et professionnel Cégep de Chicoutimi'),
(116386, 'https://ror.org/00thqng93', 'no_lang_code', 1, 'https://ror.org/00thqng93 Open Knowledge (United Kingdom)'),
(116387, 'https://ror.org/0519ax945', 'en', 1, 'https://ror.org/0519ax945 Argentine Naval Hydrographic Service Servicio de Hidrografia Naval'),
(116388, 'https://ror.org/00bbqy387', 'en', 1, 'https://ror.org/00bbqy387 American Academy of Dermatology'),
(116389, 'https://ror.org/023cq2569', 'en', 1, 'https://ror.org/023cq2569 Government Homoeopathic Medical College and Hospital Bengaluru'),
(116390, 'https://ror.org/02h8xd110', 'id', 1, 'https://ror.org/02h8xd110 Universitas Quality'),
(116391, 'https://ror.org/0451qtk15', 'en', 1, 'https://ror.org/0451qtk15 Royal College of Physicians of Edinburgh'),
(116392, 'https://ror.org/02p0yhm49', 'no_lang_code', 1, 'https://ror.org/02p0yhm49 Simulations Plus (United States)'),
(116393, 'https://ror.org/05rvzq326', 'no_lang_code', 1, 'https://ror.org/05rvzq326 Ethiopian Biodiversity Institute'),
(116394, 'https://ror.org/00vr94b03', 'de', 1, 'https://ror.org/00vr94b03 Katholisches Klinikum Lünen/Werne , St.-Marien-Hospital Lünen'),
(116395, 'https://ror.org/05bnce492', 'es', 1, 'https://ror.org/05bnce492 Fundación Humanismo y Ciencia'),
(116396, 'https://ror.org/04gdrc249', 'pt', 1, 'https://ror.org/04gdrc249 Centro UniversitƔrio de ItajubƔ'),
(116397, 'https://ror.org/047nxs434', 'en', 1, 'https://ror.org/047nxs434 Office of Population Affairs'),
(116398, 'https://ror.org/0448gbh81', 'en', 1, 'https://ror.org/0448gbh81 International Epidemiology Institute'),
(116399, 'https://ror.org/05smj8469', 'en', 1, 'https://ror.org/05smj8469 Beijing Daozhen Health Technology Development Co., Ltd. Beijing Daozhen Health Technology Development Co., Ltd. (China)'),
(116400, 'https://ror.org/01byf4846', 'es', 1, 'https://ror.org/01byf4846 Fundación Hospital de Jove'),
(116401, 'https://ror.org/000mrza07', 'no_lang_code', 1, 'https://ror.org/000mrza07 AVEO Oncology (United States)'),
(116402, 'https://ror.org/035jyty51', 'en', 1, 'https://ror.org/035jyty51 Moscow State University of Geodesy and Cartography Моско́вский Š³Š¾ŃŃƒŠ“а́рственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ геоГе́зии Šø картогра́фии'),
(116403, 'https://ror.org/028jp5z02', 'en', 1, 'https://ror.org/028jp5z02 Korea Food Research Institute ķ•œźµ­ģ‹ķ’ˆģ—°źµ¬ģ›'),
(116404, 'https://ror.org/03pw3x387', 'no_lang_code', 1, 'https://ror.org/03pw3x387 Gangneung Asan Hospital 강릉아산병원'),
(116405, 'https://ror.org/00nxqj779', 'en', 1, 'https://ror.org/00nxqj779 Cincinnati Health Department'),
(116406, 'https://ror.org/01jpkw634', 'en', 1, 'https://ror.org/01jpkw634 Centro de Estudios Ambientales del MediterrƔneo Mediterranean Center for Environmental Studies'),
(116407, 'https://ror.org/05ydfbx15', 'de', 1, 'https://ror.org/05ydfbx15 Klinikum St. Marien Amberg'),
(116408, 'https://ror.org/004s7v560', 'es', 1, 'https://ror.org/004s7v560 Sociedad Quimica y Minera de Chile Sociedad Quimica y Minera de Chile S.A. Sociedad Quimica y Minera de Chile S.A. (Chile)'),
(116409, 'https://ror.org/04st9j994', 'fr', 1, 'https://ror.org/04st9j994 UniversitƩ de Maradi'),
(116410, 'https://ror.org/026nedj88', 'pl', 1, 'https://ror.org/026nedj88 Agencja Badań Medycznych'),
(116411, 'https://ror.org/01ye8vh67', 'en', 1, 'https://ror.org/01ye8vh67 Hassania School of Public Works Ɖcole Hassania des travaux publics المدرسة Ų§Ł„Ų­Ų³Ł†ŁŠŲ© للأؓغال Ų§Ł„Ų¹Ł…ŁˆŁ…ŁŠŲ©'),
(116412, 'https://ror.org/01kc9gs57', 'en', 1, 'https://ror.org/01kc9gs57 Northampton College'),
(116413, 'https://ror.org/025yaka09', 'en', 1, 'https://ror.org/025yaka09 Lietuvos Socialinių Tyrimų Centras Lithuanian Social Research Centre'),
(116414, 'https://ror.org/01spg6m39', 'en', 1, 'https://ror.org/01spg6m39 East Asia School of Theology äøœäŗžē„žå­¦é™¢'),
(116415, 'https://ror.org/02fmnes76', 'en', 1, 'https://ror.org/02fmnes76 ACLEDA University of Business'),
(116416, 'https://ror.org/00b63k339', 'en', 1, 'https://ror.org/00b63k339 Age Labs AS Age Labs AS (Norway)'),
(116417, 'https://ror.org/00p7wry37', 'fr', 1, 'https://ror.org/00p7wry37 Centre Hospitalier de BƩziers'),
(116418, 'https://ror.org/03c6kd554', 'en', 1, 'https://ror.org/03c6kd554 Royal Australian College of General Practitioners'),
(116419, 'https://ror.org/03gq89z78', 'en', 1, 'https://ror.org/03gq89z78 Rani Channamma University, Belagavi ರಾಣಿ ą²šą³†ą²Øą³ą²Øą²®ą³ą²® ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ಬೆಳಗಾವಿ'),
(116420, 'https://ror.org/04ewbdy08', 'en', 1, 'https://ror.org/04ewbdy08 University of Agribusiness and Rural Development'),
(116421, 'https://ror.org/03d6pk735', 'en', 1, 'https://ror.org/03d6pk735 World Rugby'),
(116422, 'https://ror.org/01yp7yc97', 'no_lang_code', 1, 'https://ror.org/01yp7yc97 Urban Planning & Design Institute of Shenzhen (China) ę·±åœ³åø‚åŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(116423, 'https://ror.org/03t2k2g27', 'en', 1, 'https://ror.org/03t2k2g27 International Executive School'),
(116424, 'https://ror.org/028tpe536', 'en', 1, 'https://ror.org/028tpe536 Institute of Public Health Zadar Zavod za javno zdravstvo Zadar'),
(116425, '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'),
(116426, 'https://ror.org/04krc7206', 'en', 1, 'https://ror.org/04krc7206 Lemann Center for Brazilian Studies'),
(116427, 'https://ror.org/0383bt318', 'es', 1, 'https://ror.org/0383bt318 Instituto Universitario PolitƩcnico "Santiago MariƱo"'),
(116428, 'https://ror.org/00h9jb865', 'fr', 1, 'https://ror.org/00h9jb865 Centre Hospitalier de Saint-Quentin'),
(116429, 'https://ror.org/0065gjh60', 'no_lang_code', 1, 'https://ror.org/0065gjh60 Institut für Umwelttechnologien und Strahlenschutz (Germany)'),
(116430, 'https://ror.org/02vraa571', 'id', 1, 'https://ror.org/02vraa571 Universitas Muhammadiyah Sampit'),
(116431, 'https://ror.org/01mx3rc36', 'es', 1, 'https://ror.org/01mx3rc36 CMPC (Chile)'),
(116432, 'https://ror.org/04wga4j73', 'en', 1, 'https://ror.org/04wga4j73 Gold Skin Care Center'),
(116433, 'https://ror.org/0036wzx44', 'en', 1, 'https://ror.org/0036wzx44 Junshin Gakuen University ē“”ēœŸå­¦åœ’å¤§å­¦'),
(116434, 'https://ror.org/03hw14970', 'no_lang_code', 1, 'https://ror.org/03hw14970 Synlab (Germany)'),
(116435, 'https://ror.org/05qhdx204', 'en', 1, 'https://ror.org/05qhdx204 Manhattanville College'),
(116436, 'https://ror.org/05bv0r345', 'es', 1, 'https://ror.org/05bv0r345 IUTIRLA Instituto Universitario de TecnologĆ­a Industrial "Rodolfo Loero Arismendi"'),
(116437, 'https://ror.org/05gepz749', 'en', 1, 'https://ror.org/05gepz749 Institute for the Advancement of Food and Nutrition Sciences'),
(116438, 'https://ror.org/05fsa3j22', 'nl', 1, 'https://ror.org/05fsa3j22 Kom op tegen Kanker'),
(116439, 'https://ror.org/04nat8y64', 'en', 1, 'https://ror.org/04nat8y64 Guangdong Polytechnic of Environmental Protection Engineering å¹æäøœēŽÆå¢ƒäæęŠ¤å·„ēØ‹čŒäøšå­¦é™¢'),
(116440, 'https://ror.org/03hjbt093', 'en', 1, 'https://ror.org/03hjbt093 The Polytechnic Ibadan'),
(116441, 'https://ror.org/022715v20', 'en', 1, 'https://ror.org/022715v20 I-Form Advanced Manufacturing Research Centre'),
(116442, 'https://ror.org/047xrr705', 'en', 1, 'https://ror.org/047xrr705 Peruvian University of Applied Sciences Universidad Peruana de Ciencias Aplicadas'),
(116443, '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)'),
(116444, 'https://ror.org/02c1jcc15', 'en', 1, 'https://ror.org/02c1jcc15 CK-CARE Centre de Recherche Christine Kühne sur l''Allergie et l’Education'),
(116445, 'https://ror.org/05s1yqk76', 'es', 1, 'https://ror.org/05s1yqk76 El Colegio de Veracruz The College of Veracruz'),
(116446, 'https://ror.org/00f60z765', 'en', 1, 'https://ror.org/00f60z765 Los Angeles County Museum of Art'),
(116447, 'https://ror.org/037k29e77', 'en', 1, 'https://ror.org/037k29e77 Iranian National Institute for Oceanography and Atmospheric Science Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł…Ł„ŪŒ Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų“Ł†Ų§Ų³ŪŒ و Ų¹Ł„ŁˆŁ… جوی'),
(116448, 'https://ror.org/05xkpwf58', 'en', 1, 'https://ror.org/05xkpwf58 Sierra Leone Agricultural Research Institute'),
(116449, 'https://ror.org/03sd2pz70', 'no_lang_code', 1, 'https://ror.org/03sd2pz70 Waterborne Environmental (United States)'),
(116450, 'https://ror.org/04jnmn720', 'fr', 1, 'https://ror.org/04jnmn720 Centre d’études et de Recherches sur l’espace Germanophone'),
(116451, 'https://ror.org/00qr60202', 'en', 1, 'https://ror.org/00qr60202 New England Aquarium'),
(116452, 'https://ror.org/01agg0039', 'en', 1, 'https://ror.org/01agg0039 Zurich Heart House'),
(116453, 'https://ror.org/02ke2dd77', 'en', 1, 'https://ror.org/02ke2dd77 Foundation for Chiropractic Education'),
(116454, 'https://ror.org/03ncber98', 'en', 1, 'https://ror.org/03ncber98 Garrett–Evangelical Theological Seminary'),
(116455, 'https://ror.org/02y72wh86', 'en', 1, 'https://ror.org/02y72wh86 Queen''s University'),
(116456, 'https://ror.org/01hcd4187', 'no_lang_code', 1, 'https://ror.org/01hcd4187 MacroGenics (United States)'),
(116457, 'https://ror.org/05nv34q75', 'en', 1, 'https://ror.org/05nv34q75 Royal Statistical Society'),
(116458, 'https://ror.org/00ev71s96', 'en', 1, 'https://ror.org/00ev71s96 Alzheimer Scotland'),
(116459, 'https://ror.org/024rsp410', 'pt', 1, 'https://ror.org/024rsp410 Centro UniversitƔrio de Lavras'),
(116460, 'https://ror.org/03ppnws78', 'en', 1, 'https://ror.org/03ppnws78 Centro de Investigación en Nanomateriales y Nanotecnología Nanomaterials and Nanotechnology Research Center'),
(116461, 'https://ror.org/04bxc4617', 'en', 1, 'https://ror.org/04bxc4617 FrƩdƩric Joliot-Curie National Research Institute for Radiobiology and Radiohygiene'),
(116462, 'https://ror.org/009r6as98', 'no_lang_code', 1, 'https://ror.org/009r6as98 Technology Applications (United States)'),
(116463, 'https://ror.org/054fev274', 'de', 1, 'https://ror.org/054fev274 Evangelisches Diakoniekrankenhaus'),
(116464, 'https://ror.org/00nk9hm21', 'en', 1, 'https://ror.org/00nk9hm21 Ingush State University Ингушский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(116465, 'https://ror.org/00cqrch10', 'en', 1, 'https://ror.org/00cqrch10 Center For Children With Special Needs'),
(116466, 'https://ror.org/05th36r26', 'en', 1, 'https://ror.org/05th36r26 Majlis Kanser Nasional National Cancer Council Malaysia'),
(116467, 'https://ror.org/038rpgw61', 'de', 1, 'https://ror.org/038rpgw61 Bayerische Landesanstalt für Wald und Forstwirtschaft'),
(116468, 'https://ror.org/00971b260', 'en', 1, 'https://ror.org/00971b260 Google DeepMind Google DeepMind (United Kingdom)'),
(116469, 'https://ror.org/02zc6h894', 'en', 1, 'https://ror.org/02zc6h894 Institute of Physico-Technical Problems of the North named VP Larionov Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физико-технических проблем Девера Š’.П. Ларионов'),
(116470, 'https://ror.org/05ghs6f64', 'en', 1, 'https://ror.org/05ghs6f64 Institut et hƓpital neurologiques de montrƩal Montreal Neurological Institute and Hospital'),
(116471, 'https://ror.org/04qgr7x96', 'en', 1, 'https://ror.org/04qgr7x96 Department of Science and Technology of Hunan Province ę¹–å—ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(116472, 'https://ror.org/05j8qnr48', 'en', 1, 'https://ror.org/05j8qnr48 Bundesamt für Naturschutz Federal Agency for Nature Conservation'),
(116473, 'https://ror.org/04t27vc74', 'id', 1, 'https://ror.org/04t27vc74 Universitas Widya Kartika'),
(116474, 'https://ror.org/01d7dww26', 'pt', 1, 'https://ror.org/01d7dww26 Fundação Municipal do Meio Ambiente, Pesquisa, Ciência, Tecnologia, Esporte e Lazer de Arraial do Cabo'),
(116475, 'https://ror.org/04deknx22', 'fr', 1, 'https://ror.org/04deknx22 Centre Hospitalier Intercommunal de Villeneuve-Saint-Georges'),
(116476, 'https://ror.org/05tb15k40', 'en', 1, 'https://ror.org/05tb15k40 Centro ClĆ­nico AcadĆ©mico – Braga Clinical Academic Center of Braga'),
(116477, 'https://ror.org/00wy6bt78', 'en', 1, 'https://ror.org/00wy6bt78 LETO Maternity Hospital ΛΗΤΩ ĪœĪ±Ī¹ĪµĻ…Ļ„Ī¹ĪŗĻŒ, Ī“Ļ…Ī½Ī±Ī¹ĪŗĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ & Ī§ĪµĪ¹ĻĪæĻ…ĻĪ³Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ'),
(116478, 'https://ror.org/04chq2495', 'en', 1, 'https://ror.org/04chq2495 Departamento de Comercio de Estados Unidos DĆ©partement du Commerce des Ɖtats-Unis United States Department of Commerce'),
(116479, 'https://ror.org/01teshw58', 'hr', 1, 'https://ror.org/01teshw58 Klinički Centar Crne Gore'),
(116480, 'https://ror.org/0066mva78', 'en', 1, 'https://ror.org/0066mva78 Natural History Museum of Bern Naturhistorisches Museum Bern'),
(116481, 'https://ror.org/00jmv3y79', 'no_lang_code', 1, 'https://ror.org/00jmv3y79 Institute for Studies and Power Engineering (Romania)'),
(116482, 'https://ror.org/01vqqp163', 'en', 1, 'https://ror.org/01vqqp163 Western Sydney Local Health District'),
(116483, 'https://ror.org/01zwphm70', 'no_lang_code', 1, 'https://ror.org/01zwphm70 Yokohama Rubber (Japan) ęØŖęµœć‚“ćƒ ę Ŗå¼ä¼šē¤¾'),
(116484, 'https://ror.org/04nwq2r79', 'en', 1, 'https://ror.org/04nwq2r79 SAGE University Indore'),
(116485, 'https://ror.org/01b9fvd84', 'en', 1, 'https://ror.org/01b9fvd84 Department of Science and Technology of Shandong Province å±±äøœēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(116486, 'https://ror.org/03zgwe847', 'en', 1, 'https://ror.org/03zgwe847 Kaiser Family Foundation'),
(116487, 'https://ror.org/04qgh9k98', 'en', 1, 'https://ror.org/04qgh9k98 Seneca Polytechnic'),
(116488, 'https://ror.org/05fvxrd95', 'en', 1, 'https://ror.org/05fvxrd95 Institute of Southern Punjab'),
(116489, 'https://ror.org/02s06n261', 'no_lang_code', 1, 'https://ror.org/02s06n261 Chugoku Central Hospital 中国中央病院'),
(116490, 'https://ror.org/01114f477', 'pt', 1, 'https://ror.org/01114f477 Escola UniversitƔria Vasco da Gama'),
(116491, 'https://ror.org/05cwdqs42', 'en', 1, 'https://ror.org/05cwdqs42 Human Rights Watch'),
(116492, 'https://ror.org/01nbf4j71', 'en', 1, 'https://ror.org/01nbf4j71 Resuscitation Council'),
(116493, 'https://ror.org/037vhb936', 'en', 1, 'https://ror.org/037vhb936 Educons University Educons Univerzitet'),
(116494, 'https://ror.org/01wzc4m50', 'no_lang_code', 1, 'https://ror.org/01wzc4m50 Aurobindo Pharma (India)'),
(116495, 'https://ror.org/04v1j8c44', 'no_lang_code', 1, 'https://ror.org/04v1j8c44 Advanced Bioscience Laboratories (United States)'),
(116496, 'https://ror.org/04d636x33', 'en', 1, 'https://ror.org/04d636x33 P.G.D.A.V. College (Evening)'),
(116497, 'https://ror.org/006e48x19', 'en', 1, 'https://ror.org/006e48x19 Five Colleges'),
(116498, 'https://ror.org/00xwqff48', 'en', 1, 'https://ror.org/00xwqff48 Ave Maria University'),
(116499, 'https://ror.org/03n51vw80', 'en', 1, 'https://ror.org/03n51vw80 Croatian Science Foundation'),
(116500, 'https://ror.org/04946nn35', 'nl', 1, 'https://ror.org/04946nn35 Koninklijk Nederlands Genootschap voor Fysiotherapie'),
(116501, 'https://ror.org/02raka351', 'no_lang_code', 1, 'https://ror.org/02raka351 Imperial Metals (Canada)'),
(116502, 'https://ror.org/05xaz0w84', 'en', 1, 'https://ror.org/05xaz0w84 Odessa National Polytechnic University ŠžŠ“ŠµŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ політехнічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116503, 'https://ror.org/04d9k7p50', 'en', 1, 'https://ror.org/04d9k7p50 Genesis HealthCare'),
(116504, 'https://ror.org/025zzm087', 'es', 1, 'https://ror.org/025zzm087 Collahuasi Collahuasi (Chile)'),
(116505, 'https://ror.org/022xz9e77', 'en', 1, 'https://ror.org/022xz9e77 Bangladesh Bank বাংলাদেশ ą¦¬ą§ą¦Æą¦¾ą¦‚ą¦•'),
(116506, 'https://ror.org/04x9ra670', 'en', 1, 'https://ror.org/04x9ra670 Digital Communication Methods Lab'),
(116507, 'https://ror.org/040y74d88', 'pt', 1, 'https://ror.org/040y74d88 Associação Fundo de Incentivo à Pesquisa'),
(116508, 'https://ror.org/0326f0a78', 'en', 1, 'https://ror.org/0326f0a78 Indepth Network'),
(116509, 'https://ror.org/05kxxr655', 'en', 1, 'https://ror.org/05kxxr655 Cotton Research and Development Corporation'),
(116510, 'https://ror.org/00xzb4g06', 'en', 1, 'https://ror.org/00xzb4g06 Center for Strategic Research Центр стратегических разработок'),
(116511, 'https://ror.org/00a8ds888', 'no_lang_code', 1, 'https://ror.org/00a8ds888 Metso Metso (Chile)'),
(116512, 'https://ror.org/0417z1990', 'de', 1, 'https://ror.org/0417z1990 Klinikum Bremerhaven-Reinkenheide'),
(116513, 'https://ror.org/00005jn19', 'no_lang_code', 1, 'https://ror.org/00005jn19 Global Unichip (Taiwan)'),
(116514, 'https://ror.org/00he80998', 'en', 1, 'https://ror.org/00he80998 Manchester University NHS Foundation Trust'),
(116515, 'https://ror.org/00kx6j950', 'en', 1, 'https://ror.org/00kx6j950 Health and Family Planning Commission of Sichuan Province å››å·ēœå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(116516, 'https://ror.org/05jrq1t13', 'en', 1, 'https://ror.org/05jrq1t13 Kliniken Valens Valens Clinics'),
(116517, 'https://ror.org/059vhx348', 'fr', 1, 'https://ror.org/059vhx348 Centre de Recherche en SantƩ de Nouna'),
(116518, 'https://ror.org/05tm31061', 'en', 1, 'https://ror.org/05tm31061 Australian Football League'),
(116519, 'https://ror.org/01t884y44', 'en', 1, 'https://ror.org/01t884y44 University of Greater Manchester'),
(116520, 'https://ror.org/02sh4zm95', 'es', 1, 'https://ror.org/02sh4zm95 Centro de Estudios Populares'),
(116521, 'https://ror.org/00q846h05', 'en', 1, 'https://ror.org/00q846h05 Rajkiya Engineering College Kannauj'),
(116522, 'https://ror.org/038724806', 'en', 1, 'https://ror.org/038724806 University of Yangon į€›į€”į€ŗį€€į€Æį€”į€ŗį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(116523, 'https://ror.org/04et59085', 'en', 1, 'https://ror.org/04et59085 Institute of Education Sciences'),
(116524, 'https://ror.org/04730q569', 'en', 1, 'https://ror.org/04730q569 International University of Kyrgyzstan'),
(116525, 'https://ror.org/02as1sh25', 'no_lang_code', 1, 'https://ror.org/02as1sh25 Dassault Aviation (France)'),
(116526, 'https://ror.org/017bddy38', 'en', 1, 'https://ror.org/017bddy38 Blacktown & Mount Druitt Hospital'),
(116527, 'https://ror.org/0307tfa50', 'no_lang_code', 1, 'https://ror.org/0307tfa50 Cambia'),
(116528, 'https://ror.org/010jaxs89', 'en', 1, 'https://ror.org/010jaxs89 European Molecular Biology Laboratory'),
(116529, 'https://ror.org/00032t641', 'en', 1, 'https://ror.org/00032t641 Surya Hospitals ą¤øą„‚ą¤°ą„ą¤Æą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²ą„ą¤ø'),
(116530, 'https://ror.org/00bnaq407', 'en', 1, 'https://ror.org/00bnaq407 North Sydney Orthopaedic and Sports Medicine Centre'),
(116531, 'https://ror.org/03g0fjg84', 'en', 1, 'https://ror.org/03g0fjg84 Saint Louis Zoo'),
(116532, 'https://ror.org/00cs91c30', 'pt', 1, 'https://ror.org/00cs91c30 Federal University of JataĆ­ Universidade Federal de JataĆ­'),
(116533, 'https://ror.org/001zq7k15', 'en', 1, 'https://ror.org/001zq7k15 Nigerian Meteorological Agency'),
(116534, 'https://ror.org/04wqvjr21', 'fr', 1, 'https://ror.org/04wqvjr21 Centre Hospitalier Intercommunal Toulon-La Seyne-sur-Mer'),
(116535, 'https://ror.org/04c235406', 'no_lang_code', 1, 'https://ror.org/04c235406 DNV (Norway)'),
(116536, 'https://ror.org/02dngnr16', 'pt', 1, 'https://ror.org/02dngnr16 Hospital Amaral Carvalho'),
(116537, 'https://ror.org/03x8kxy88', 'en', 1, 'https://ror.org/03x8kxy88 Sochi State University Дочинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116538, 'https://ror.org/05jjnzh70', 'en', 1, 'https://ror.org/05jjnzh70 Children''s Defense Fund'),
(116539, 'https://ror.org/05nwvcw17', 'id', 1, 'https://ror.org/05nwvcw17 Universitas Merangin'),
(116540, 'https://ror.org/05p56yz34', 'en', 1, 'https://ror.org/05p56yz34 Society of Chemical Industry'),
(116541, 'https://ror.org/04cymm537', 'es', 1, 'https://ror.org/04cymm537 Instituto Tecnológico de Ciudad Madero'),
(116542, 'https://ror.org/00tjzgn92', 'en', 1, 'https://ror.org/00tjzgn92 Department of Science and Technology of Guangdong Province å¹æäøœēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(116543, 'https://ror.org/01c5g1b56', 'en', 1, 'https://ror.org/01c5g1b56 UK Aid Direct'),
(116544, 'https://ror.org/01arh7995', 'en', 1, 'https://ror.org/01arh7995 Global Development Network'),
(116545, 'https://ror.org/00pykpg61', 'es', 1, 'https://ror.org/00pykpg61 Instituto Interamericano de Derechos Humanos'),
(116546, 'https://ror.org/00y0cnq88', 'id', 1, 'https://ror.org/00y0cnq88 Universitas Bung Karno'),
(116547, 'https://ror.org/003g6b432', 'en', 1, 'https://ror.org/003g6b432 Bernstein Center for Computational Neuroscience Gƶttingen'),
(116548, 'https://ror.org/042m9e886', 'es', 1, 'https://ror.org/042m9e886 MEDI XXI Gabinet Solucions Ambiental, S.L. MEDI XXI Gabinet Solucions Ambientals MEDI XXI Gabinet Solucions Ambientals (EspaƱa)'),
(116549, 'https://ror.org/04dfrdm61', 'en', 1, 'https://ror.org/04dfrdm61 Unitelma Sapienza University UniversitĆ  telematica UNITELMA Sapienza'),
(116550, 'https://ror.org/005ag3869', 'uz', 1, 'https://ror.org/005ag3869 Bukhara State Technical University Buxoro davlat texnika universiteti'),
(116551, 'https://ror.org/00qm7b611', 'en', 1, 'https://ror.org/00qm7b611 Alexandria Higher Institute of Engineering and Technology معهد Ų§Ł„Ų§Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ© العالى للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(116552, 'https://ror.org/00zgv2r34', 'en', 1, 'https://ror.org/00zgv2r34 AKFA Medline University Hospital'),
(116553, 'https://ror.org/04mz0gg46', 'en', 1, 'https://ror.org/04mz0gg46 Washington Tree Fruit Research Commission'),
(116554, 'https://ror.org/049zx1n75', 'en', 1, 'https://ror.org/049zx1n75 Koo Foundation Sun Yat-Sen Cancer Center'),
(116555, 'https://ror.org/0133h2564', 'en', 1, 'https://ror.org/0133h2564 Dead Sea and Arava Science Center מו"פ ×ž×“×‘×Ø וים המלח'),
(116556, 'https://ror.org/040qff210', 'en', 1, 'https://ror.org/040qff210 Chuo Kikuu Kishiriki cha Jordan Jordan University College');
INSERT INTO `rors` VALUES
(116557, 'https://ror.org/03vyspr60', 'en', 1, 'https://ror.org/03vyspr60 Johannelund School of Theology Johannelunds teologiska hƶgskola'),
(116558, 'https://ror.org/04zfq3f98', 'en', 1, 'https://ror.org/04zfq3f98 University of Kordofan Ų¬Ų§Ł…Ų¹Ų© ŁƒŲ±ŲÆŁŲ§Ł†'),
(116559, 'https://ror.org/038rzwt76', 'en', 1, 'https://ror.org/038rzwt76 The Jones Center at Ichauway'),
(116560, 'https://ror.org/051j7cj03', 'en', 1, 'https://ror.org/051j7cj03 Minot State University UniversitĆ© d''Ɖtat de minot'),
(116561, 'https://ror.org/0404f9j94', 'en', 1, 'https://ror.org/0404f9j94 Gulistan State University Guliston universiteti'),
(116562, 'https://ror.org/01carsf12', 'en', 1, 'https://ror.org/01carsf12 Helen Keller Eye Research Foundation'),
(116563, 'https://ror.org/03nt0pm37', 'en', 1, 'https://ror.org/03nt0pm37 Roketsan'),
(116564, 'https://ror.org/00bw3sa48', 'en', 1, 'https://ror.org/00bw3sa48 Sands'),
(116565, 'https://ror.org/05hpj3k77', 'en', 1, 'https://ror.org/05hpj3k77 Institute of Pesticides and Environmental Protection'),
(116566, 'https://ror.org/00g5hfp88', 'en', 1, 'https://ror.org/00g5hfp88 Columbia Theological Seminary'),
(116567, 'https://ror.org/04pmz9934', 'en', 1, 'https://ror.org/04pmz9934 Siberian State Automobile and Highway University Š”ŠøŠ±ŠøŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾-Š“Š¾Ń€Š¾Š¶Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(116568, 'https://ror.org/02crmer26', 'en', 1, 'https://ror.org/02crmer26 Obong University'),
(116569, 'https://ror.org/04g46sd34', 'no_lang_code', 1, 'https://ror.org/04g46sd34 Shanghai Municipal Engineering Design Institute (Group) Co., Ltd Shanghai Municipal Engineering Design Institute (Group) Co., Ltd (China) äøŠęµ·åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶ę€»é™¢(集团)ęœ‰é™å…¬åø'),
(116570, 'https://ror.org/05jqw2r29', 'en', 1, 'https://ror.org/05jqw2r29 Rossdales Veterinary Surgeons'),
(116571, 'https://ror.org/056d3gw71', 'en', 1, 'https://ror.org/056d3gw71 Dominican University of California'),
(116572, 'https://ror.org/01pefzg54', 'es', 1, 'https://ror.org/01pefzg54 Zigurat Global Institute of Technology Zigurat Global Institute of Technology (Spain)'),
(116573, 'https://ror.org/021vwwp80', 'en', 1, 'https://ror.org/021vwwp80 Russian Foreign Trade Academy Š’ŃŠµŃ€Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ внешней торговли'),
(116574, 'https://ror.org/05qkm5r52', 'no_lang_code', 1, 'https://ror.org/05qkm5r52 21c Consultancy (United Kingdom)'),
(116575, 'https://ror.org/00vnste75', 'en', 1, 'https://ror.org/00vnste75 Galen University Universidad de Galen'),
(116576, 'https://ror.org/04gp5yv64', 'en', 1, 'https://ror.org/04gp5yv64 Westmead Hospital'),
(116577, 'https://ror.org/00vbzs544', 'en', 1, 'https://ror.org/00vbzs544 TrĘ°į»ng ĐẔi hį»c Văn Hiįŗæn Văn Hiįŗæn University'),
(116578, 'https://ror.org/00k6njn28', 'ca', 1, 'https://ror.org/00k6njn28 Institut d''Estudis Espacials de Catalunya Institute of Space Studies of Catalonia'),
(116579, 'https://ror.org/020ps3a34', 'en', 1, 'https://ror.org/020ps3a34 University of Central Lancashire Cyprus'),
(116580, 'https://ror.org/03y122s09', 'en', 1, 'https://ror.org/03y122s09 Tropical Diseases Research Centre'),
(116581, 'https://ror.org/0292p9y97', 'en', 1, 'https://ror.org/0292p9y97 Pakistan Atomic Energy Commission ادارہ جوہری ŲŖŁˆŲ§Ł†Ų§Ų¦ŪŒ پاکستان'),
(116582, 'https://ror.org/01msx8j36', 'en', 1, 'https://ror.org/01msx8j36 Respons'),
(116583, 'https://ror.org/026743317', 'en', 1, 'https://ror.org/026743317 Water and Land Resource Centre'),
(116584, 'https://ror.org/02errzw26', 'en', 1, 'https://ror.org/02errzw26 Cosmetics Europe'),
(116585, 'https://ror.org/0188hvh39', 'tr', 1, 'https://ror.org/0188hvh39 Istanbul Gelisim University İstanbul Gelişim Üniversitesi'),
(116586, 'https://ror.org/019tkx431', 'no_lang_code', 1, 'https://ror.org/019tkx431 Kraftanlagen (Germany)'),
(116587, 'https://ror.org/04a3zwe15', 'en', 1, 'https://ror.org/04a3zwe15 Chung-Hua Institution for Economic Research äø­čÆē¶“ęæŸē ”ē©¶é™¢'),
(116588, 'https://ror.org/045ady436', 'no', 1, 'https://ror.org/045ady436 Norwegian Air Ambulance Foundation Stiftelsen Norsk Luftambulanse'),
(116589, 'https://ror.org/03hbv3b74', 'en', 1, 'https://ror.org/03hbv3b74 Blantyre Institute for Community Ophthalmology'),
(116590, 'https://ror.org/02cyjbt83', 'en', 1, 'https://ror.org/02cyjbt83 Law & Justice Commission of Pakistan Law and Justice Commission of Pakistan'),
(116591, 'https://ror.org/025m2a107', 'en', 1, 'https://ror.org/025m2a107 HUN-REN Veterinary Medical Research Institute HUN-REN ÁllatorvostudomÔnyi Kutatóintézet'),
(116592, 'https://ror.org/03e0v4s75', 'en', 1, 'https://ror.org/03e0v4s75 Shanghai Biozeron Biotechnology Co., Ltd Shanghai Biozeron Biotechnology Co., Ltd (China) äøŠęµ·å‡Œę©ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(116593, 'https://ror.org/01w7vj569', 'es', 1, 'https://ror.org/01w7vj569 Universidad PolitƩcnica de Victoria'),
(116594, 'https://ror.org/04a8rag37', 'en', 1, 'https://ror.org/04a8rag37 Drug Safety Research Unit'),
(116595, 'https://ror.org/04dkt5d63', 'en', 1, 'https://ror.org/04dkt5d63 Greek Atomic Energy Commission'),
(116596, 'https://ror.org/048jkwt53', 'en', 1, 'https://ror.org/048jkwt53 American Health Information Management Association'),
(116597, 'https://ror.org/008p7xh83', 'en', 1, 'https://ror.org/008p7xh83 Chinese Preventive Medicine Association'),
(116598, 'https://ror.org/00dtqsj35', 'en', 1, 'https://ror.org/00dtqsj35 Office Of Health Economics'),
(116599, 'https://ror.org/00gwcs664', 'no_lang_code', 1, 'https://ror.org/00gwcs664 TƩcnicas y Servicios de Ingenierƭa (Spain)'),
(116600, 'https://ror.org/00jw3g525', 'en', 1, 'https://ror.org/00jw3g525 Munich Business School'),
(116601, 'https://ror.org/05kn9f350', 'en', 1, 'https://ror.org/05kn9f350 National Research Institute for Science Policy المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„ŲØŲ­ŁˆŲ« سياسة Ų§Ł„Ų¹Ł„ŁˆŁ…'),
(116602, '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 المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ų¹Ł„ŁˆŁ… ŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ البحار'),
(116603, 'https://ror.org/05egfhe31', 'en', 1, 'https://ror.org/05egfhe31 M-Five M-Five GmbH Mobility, Futures, Innovation, Economics M-Five GmbH Mobility, Futures, Innovation, Economics (Germany)'),
(116604, 'https://ror.org/02r785h72', 'en', 1, 'https://ror.org/02r785h72 Marine Research Centre'),
(116605, 'https://ror.org/028jcy673', 'en', 1, 'https://ror.org/028jcy673 Romanian-American University Universitatea Româno-Americană'),
(116606, 'https://ror.org/03e8rf594', 'fr', 1, 'https://ror.org/03e8rf594 IMT Mines AlĆØs'),
(116607, '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'),
(116608, 'https://ror.org/01p0ze617', 'de', 1, 'https://ror.org/01p0ze617 Sankt Gertrauden Krankenhaus'),
(116609, 'https://ror.org/01vv00d67', 'en', 1, 'https://ror.org/01vv00d67 Taiwan Foundation for Democracy'),
(116610, 'https://ror.org/00bx52076', 'en', 1, 'https://ror.org/00bx52076 Australian National Botanic Gardens'),
(116611, 'https://ror.org/02wp4vw89', 'no_lang_code', 1, 'https://ror.org/02wp4vw89 Nippon Bunri University ę—„ęœ¬ę–‡ē†å¤§å­¦'),
(116612, 'https://ror.org/02d01az19', 'en', 1, 'https://ror.org/02d01az19 Caring Futures Institute'),
(116613, 'https://ror.org/05jy6f079', 'no_lang_code', 1, 'https://ror.org/05jy6f079 PepsiCo Alimentos, SCA PepsiCo Alimentos, SCA (Venezuela)'),
(116614, 'https://ror.org/01rpb1437', 'en', 1, 'https://ror.org/01rpb1437 Paul Hastings'),
(116615, 'https://ror.org/003jq9j58', 'pl', 1, 'https://ror.org/003jq9j58 Papieski Wydział Teologiczny we Wrocławiu'),
(116616, 'https://ror.org/000kxhc93', 'en', 1, 'https://ror.org/000kxhc93 All India Institute of Medical Sciences Guwahati अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€'),
(116617, 'https://ror.org/04944pj78', 'en', 1, 'https://ror.org/04944pj78 Easterseals of Greater Waterbury'),
(116618, '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'),
(116619, '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'),
(116620, 'https://ror.org/04cvxnb49', 'en', 1, 'https://ror.org/04cvxnb49 Goethe University Frankfurt Goethe-UniversitƤt Frankfurt am Main'),
(116621, 'https://ror.org/00805ky43', 'no_lang_code', 1, 'https://ror.org/00805ky43 The Centre for Health (New Zealand)'),
(116622, 'https://ror.org/0576vga12', 'en', 1, 'https://ror.org/0576vga12 Karpacki Narodowy Uniwersytet imienia Wasyla Stefanyka Vasyl Stefanyk Carpathian National University ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’Š°ŃŠøŠ»Ń Дтефаника'),
(116623, 'https://ror.org/05fdmhs75', 'fr', 1, 'https://ror.org/05fdmhs75 Institut National des Sciences de l''ArchĆ©ologie et du Patrimoine المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ų¹Ł„ŁˆŁ… الآثار ŁˆŲ§Ł„ŲŖŲ±Ų§Ų«'),
(116624, 'https://ror.org/054bthw57', 'en', 1, 'https://ror.org/054bthw57 Cypress College'),
(116625, 'https://ror.org/020yyjw05', 'en', 1, 'https://ror.org/020yyjw05 Fullbright Germany'),
(116626, 'https://ror.org/02s04h872', 'no_lang_code', 1, 'https://ror.org/02s04h872 D. E. Shaw Research'),
(116627, 'https://ror.org/01s5a4v70', 'en', 1, 'https://ror.org/01s5a4v70 Department for Energy Security and Net Zero'),
(116628, 'https://ror.org/0185yec04', 'no_lang_code', 1, 'https://ror.org/0185yec04 Benchmark Research (United States)'),
(116629, 'https://ror.org/01s8f2180', 'en', 1, 'https://ror.org/01s8f2180 Natural History Museum Rotterdam Natuurhistorisch Museum Rotterdam'),
(116630, 'https://ror.org/05v9n8905', 'en', 1, 'https://ror.org/05v9n8905 Indian Centre for Space Physics'),
(116631, 'https://ror.org/0174y3381', 'en', 1, 'https://ror.org/0174y3381 Medical Laboratory Science Council of Nigeria'),
(116632, 'https://ror.org/04r60ve96', 'en', 1, 'https://ror.org/04r60ve96 Gottsegen Gyƶrgy OrszƔgos KardiovaszkulƔris IntƩzet Gottsegen National Cardiovascular Center'),
(116633, 'https://ror.org/05keh7220', 'en', 1, 'https://ror.org/05keh7220 Olivia Fund'),
(116634, 'https://ror.org/05b5x0e19', 'nl', 1, 'https://ror.org/05b5x0e19 Ziekenhuis Bernhoven'),
(116635, 'https://ror.org/0124s1j61', 'de', 1, 'https://ror.org/0124s1j61 Evangelisches Krankenhaus Kalk'),
(116636, 'https://ror.org/05tt05r27', 'no_lang_code', 1, 'https://ror.org/05tt05r27 Oulu Deaconess Institute Oulun diakonissalaitos'),
(116637, 'https://ror.org/00hqkan37', 'en', 1, 'https://ror.org/00hqkan37 Lebanese American University الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ©'),
(116638, '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'),
(116639, 'https://ror.org/04bqwt245', 'en', 1, 'https://ror.org/04bqwt245 Geriatric Education and Research Institute'),
(116640, 'https://ror.org/035hd8d68', 'en', 1, 'https://ror.org/035hd8d68 Shepherd Center'),
(116641, 'https://ror.org/04vccma76', 'en', 1, 'https://ror.org/04vccma76 Korea Advanced Nano Fab Center ķ•œźµ­ ź³ źø‰ ė‚˜ė…ø 팹 센터'),
(116642, 'https://ror.org/00m8m2q64', 'en', 1, 'https://ror.org/00m8m2q64 Carbon to Sea Initiative'),
(116643, 'https://ror.org/04n9w1739', 'en', 1, 'https://ror.org/04n9w1739 Alcohol and Drug Foundation'),
(116644, 'https://ror.org/055y1ne20', 'de', 1, 'https://ror.org/055y1ne20 Helmholtz-Fonds e.V.'),
(116645, 'https://ror.org/035v3tr79', 'en', 1, 'https://ror.org/035v3tr79 New Uzbekistan University Yangi O''zbekiston Universiteti'),
(116646, 'https://ror.org/04mv4n011', 'no_lang_code', 1, 'https://ror.org/04mv4n011 Amazon (United States)'),
(116647, 'https://ror.org/0599t2n59', 'en', 1, 'https://ror.org/0599t2n59 Cooch Behar Panchanan Barma University ą¤•ą„‚ą¤š बिहार ą¤Ŗą¤‚ą¤šą¤¾ą¤Øą¤Ø ą¤¬ą¤°ą„ą¤®ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦•ą§‹ą¦šą¦¬ą¦æą¦¹ą¦¾ą¦° ą¦Ŗą¦žą§ą¦šą¦¾ą¦Øą¦Ø ą¦¬ą¦°ą§ą¦®ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(116648, 'https://ror.org/05n7sxn21', 'en', 1, 'https://ror.org/05n7sxn21 Central Statistical Office'),
(116649, 'https://ror.org/01dfpjy51', 'en', 1, 'https://ror.org/01dfpjy51 Gulf University ŁƒŁ„ŁŠŲ© Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(116650, 'https://ror.org/02g2x7380', 'en', 1, 'https://ror.org/02g2x7380 Associazione Italiana per la Ricerca sul Cancro Italian Association for Cancer Research'),
(116651, 'https://ror.org/007rxxd52', 'en', 1, 'https://ror.org/007rxxd52 Brest State Technical University Брестский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š‘Ń€ŃŃŃ†ŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(116652, 'https://ror.org/00k6r3f30', 'pt', 1, 'https://ror.org/00k6r3f30 Unidade Local de Saúde de São José'),
(116653, 'https://ror.org/049faq822', 'en', 1, 'https://ror.org/049faq822 Institute of Natural Resources'),
(116654, 'https://ror.org/021hvy449', 'en', 1, 'https://ror.org/021hvy449 Newgate University Minna'),
(116655, 'https://ror.org/03sgp5m15', 'it', 1, 'https://ror.org/03sgp5m15 Italian Society of Rheumatology SocietĆ  Italiana di Reumatologia'),
(116656, 'https://ror.org/00aqz1698', 'en', 1, 'https://ror.org/00aqz1698 Milwaukee Public Museum'),
(116657, 'https://ror.org/04w1c8b31', 'en', 1, 'https://ror.org/04w1c8b31 Academy for Eating Disorders'),
(116658, 'https://ror.org/028023c94', 'en', 1, 'https://ror.org/028023c94 Russian State University of Cinematography named after SA Gerasimov Всероссийский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ кинематографии имени Š”.А.Герасимова'),
(116659, 'https://ror.org/059ap3j92', 'en', 1, 'https://ror.org/059ap3j92 St. Augustine College'),
(116660, 'https://ror.org/02dv2bn85', 'de', 1, 'https://ror.org/02dv2bn85 Sanatorium Kilchberg'),
(116661, 'https://ror.org/02f009v59', 'en', 1, 'https://ror.org/02f009v59 University of Haifa ××•× ×™×‘×Ø×”×™×˜×Ŗ חיפה Ų¬Ų§Ł…Ų¹Ų© حيفا'),
(116662, 'https://ror.org/04z45pv75', 'fr', 1, 'https://ror.org/04z45pv75 Institut du Savoir Montfort'),
(116663, 'https://ror.org/03yy33w47', 'en', 1, 'https://ror.org/03yy33w47 Taipei American School č‡ŗåŒ—ē¾Žåœ‹å­øę ”'),
(116664, 'https://ror.org/01h9c4672', 'en', 1, 'https://ror.org/01h9c4672 American Society for Gastrointestinal Endoscopy'),
(116665, 'https://ror.org/030mq9680', 'no_lang_code', 1, 'https://ror.org/030mq9680 State Development & Investment Corporation (China) å›½å®¶å¼€å‘ęŠ•čµ„å…¬åø'),
(116666, 'https://ror.org/04dkp9463', 'en', 1, 'https://ror.org/04dkp9463 Universiteit van Amsterdam University of Amsterdam'),
(116667, 'https://ror.org/03xpnp312', 'no_lang_code', 1, 'https://ror.org/03xpnp312 Hua Medicine (China)'),
(116668, 'https://ror.org/02ak8fm03', 'de', 1, 'https://ror.org/02ak8fm03 Friedrich-Ebert-Stiftung e.V.'),
(116669, 'https://ror.org/04b9hej41', 'en', 1, 'https://ror.org/04b9hej41 Sadjad University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų³Ų¬Ų§ŲÆ'),
(116670, 'https://ror.org/02fvybm75', 'en', 1, 'https://ror.org/02fvybm75 Office for Product Safety and Standards'),
(116671, 'https://ror.org/02p0gd045', 'es', 1, 'https://ror.org/02p0gd045 Complutense University of Madrid Madrilgo Complutense Unibertsitatea Universidad Complutense de Madrid Universidade Complutense de Madrid'),
(116672, 'https://ror.org/05sfcd303', 'it', 1, 'https://ror.org/05sfcd303 Istituto Euro Mediterraneo di Scienza e Tecnologia'),
(116673, 'https://ror.org/00ph3nz62', 'en', 1, 'https://ror.org/00ph3nz62 Eurotransplant'),
(116674, 'https://ror.org/050mwrs16', 'es', 1, 'https://ror.org/050mwrs16 ESE Business School'),
(116675, 'https://ror.org/04bkje958', 'de', 1, 'https://ror.org/04bkje958 Kliniken Schmieder'),
(116676, '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'),
(116677, 'https://ror.org/00retz024', 'en', 1, 'https://ror.org/00retz024 Cerebral Palsy Alliance'),
(116678, 'https://ror.org/01rc2ge67', 'en', 1, 'https://ror.org/01rc2ge67 Pacific Institute'),
(116679, 'https://ror.org/04kxx2q73', 'en', 1, 'https://ror.org/04kxx2q73 Luzhou Science and Technology Bureau ę³øå·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(116680, 'https://ror.org/01a84bt29', 'en', 1, 'https://ror.org/01a84bt29 Centre International De Reference Chantal Biya'),
(116681, 'https://ror.org/045t9n387', 'en', 1, 'https://ror.org/045t9n387 Mohtarma Benazir Bhutto Shaheed Medical College محترمہ ŲØŪ’ Ł†ŲøŪŒŲ± بھٹو ؓہید طبی Ś©Ų§Ł„Ų¬ŲŒ Ł…ŪŒŲ± پور Ų¢Ų²Ų§ŲÆ Ś©Ų“Ł…ŪŒŲ±'),
(116682, 'https://ror.org/00v97ad02', 'en', 1, 'https://ror.org/00v97ad02 Universidad del Norte de Texas University of North Texas'),
(116683, 'https://ror.org/036wvs663', 'en', 1, 'https://ror.org/036wvs663 HUN-REN CsillagÔszati és FöldtudomÔnyi Kutatóközpont HUN-REN Research Centre for Astronomy and Earth Sciences'),
(116684, 'https://ror.org/04psvb108', 'de', 1, 'https://ror.org/04psvb108 Elbe Kliniken Stade-Buxtehude'),
(116685, 'https://ror.org/02h6h5y05', 'nl', 1, 'https://ror.org/02h6h5y05 Vincent Van Gogh Voor Geestelijke Gezondheidszorg'),
(116686, 'https://ror.org/01bv0ma93', 'no_lang_code', 1, 'https://ror.org/01bv0ma93 Artemis (United States)'),
(116687, 'https://ror.org/00rb2rb24', 'en', 1, 'https://ror.org/00rb2rb24 National University of Science and Technology الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(116688, 'https://ror.org/04ypb4059', 'en', 1, 'https://ror.org/04ypb4059 National Forest Foundation'),
(116689, 'https://ror.org/01asgtt85', 'en', 1, 'https://ror.org/01asgtt85 Malankara Orthodox Syrian Church Medical College Hospital'),
(116690, 'https://ror.org/01rq3ht76', 'en', 1, 'https://ror.org/01rq3ht76 Institute of International Studies'),
(116691, 'https://ror.org/05dsmqn98', 'no_lang_code', 1, 'https://ror.org/05dsmqn98 Medtronic (Canada)'),
(116692, 'https://ror.org/024ye7w89', 'en', 1, 'https://ror.org/024ye7w89 Consiglio Nazionale delle Ricerche - Istituto di Metodologie per l’Analisi Ambientale National Research Council - Institute of Methodologies for Environmental Analysis'),
(116693, 'https://ror.org/003s3dn82', 'en', 1, 'https://ror.org/003s3dn82 Shenkar College of Engineering and Design שנקר - הנדהה, עיצוב ×•××ž× ×•×Ŗ'),
(116694, 'https://ror.org/04323m874', 'en', 1, 'https://ror.org/04323m874 Science and Technology Department of Sichuan Province å››å·ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(116695, 'https://ror.org/01gy51q73', 'en', 1, 'https://ror.org/01gy51q73 Philippine Association of Institutions for Research, Inc.'),
(116696, 'https://ror.org/02a1v0072', 'id', 1, 'https://ror.org/02a1v0072 Universitas Mitra Indonesia'),
(116697, 'https://ror.org/03x2x0e06', 'en', 1, 'https://ror.org/03x2x0e06 Elgin Community College'),
(116698, 'https://ror.org/04bnbsh26', 'no_lang_code', 1, 'https://ror.org/04bnbsh26 Pingtung Christian Hospital å±ę±åŸŗē£ę•™é†«é™¢'),
(116699, 'https://ror.org/006z1y950', 'it', 1, 'https://ror.org/006z1y950 Associazione Italiana Sclerosi Multipla'),
(116700, 'https://ror.org/04vmrp051', 'en', 1, 'https://ror.org/04vmrp051 Submarine Scientific LLC Submarine Scientific LLC (United States)'),
(116701, 'https://ror.org/008tcyj69', 'it', 1, 'https://ror.org/008tcyj69 Ospedale di Sanremo'),
(116702, 'https://ror.org/03bd9pq85', 'es', 1, 'https://ror.org/03bd9pq85 Multitiendas Corona S.A. (Chile)'),
(116703, 'https://ror.org/05maa9n89', 'no_lang_code', 1, 'https://ror.org/05maa9n89 Virbac (France)'),
(116704, 'https://ror.org/02ct12k14', 'no_lang_code', 1, 'https://ror.org/02ct12k14 Network Rail'),
(116705, 'https://ror.org/00a9n4r38', 'en', 1, 'https://ror.org/00a9n4r38 All-Union Scientific Research Institute of Plant Quarantine Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карантина растений'),
(116706, 'https://ror.org/02wnaj108', 'en', 1, 'https://ror.org/02wnaj108 Ufa University of Science and Technology Уфимский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ науки Šø технологий'),
(116707, 'https://ror.org/04bhfmv97', 'en', 1, 'https://ror.org/04bhfmv97 HUN-REN Centre for Ecological Research HUN-REN Ɩkológiai Kutatókƶzpont'),
(116708, 'https://ror.org/03xbfbm37', 'pt', 1, 'https://ror.org/03xbfbm37 Centro UniversitƔrio do Cerrado Patrocƭnio'),
(116709, 'https://ror.org/05mkt9r11', 'en', 1, 'https://ror.org/05mkt9r11 European Research Executive Agency'),
(116710, 'https://ror.org/045pp4b52', 'en', 1, 'https://ror.org/045pp4b52 Iraqi Board for Medical Specializations المجلس Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠ للاختصاصات Ų§Ł„Ų·ŲØŁŠŲ©'),
(116711, 'https://ror.org/0044ybt68', 'en', 1, 'https://ror.org/0044ybt68 Future House, Inc.'),
(116712, 'https://ror.org/0534xfc33', 'en', 1, 'https://ror.org/0534xfc33 Khanty-Mansiysk State Medical Academy Єанты-ŠœŠ°Š½ŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(116713, 'https://ror.org/01tc53f14', 'ro', 1, 'https://ror.org/01tc53f14 Institutul National pentru Sanatatea Mamei si Copilului "Alessandrescu-Rusescu"'),
(116714, 'https://ror.org/048zd9m77', 'en', 1, 'https://ror.org/048zd9m77 Foundation for Polish Science'),
(116715, 'https://ror.org/01fq24p11', 'en', 1, 'https://ror.org/01fq24p11 Elisava Barcelona School of Design and Engineering Elisava, Facultat de Disseny i Enginyeria de Barcelona'),
(116716, 'https://ror.org/02phgvp38', 'en', 1, 'https://ror.org/02phgvp38 Dřevařský Ćŗstav Timber Institute'),
(116717, 'https://ror.org/02rvd6d64', 'en', 1, 'https://ror.org/02rvd6d64 Psychological Institute of the Russian Academy of Education'),
(116718, 'https://ror.org/01zd45k33', 'en', 1, 'https://ror.org/01zd45k33 Centre for Aging + Brain Health Innovation'),
(116719, 'https://ror.org/04eqgej32', 'es', 1, 'https://ror.org/04eqgej32 Aragon Institute for Engineering Research Instituto de Investigación en Ingeniería de Aragón'),
(116720, 'https://ror.org/0028etb62', 'en', 1, 'https://ror.org/0028etb62 Calar Alto Observatory'),
(116721, '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'),
(116722, 'https://ror.org/053zwpg96', 'es', 1, 'https://ror.org/053zwpg96 Fundacion Centro De Investigacion De Enfermedades Neurologicas'),
(116723, 'https://ror.org/05tebhj52', 'es', 1, 'https://ror.org/05tebhj52 Aldeas Infantiles S.O.S. Chile Aldeas Infantiles S.O.S. Chile (Chile)'),
(116724, 'https://ror.org/01s5g3b18', 'de', 1, 'https://ror.org/01s5g3b18 Nova Institut'),
(116725, 'https://ror.org/01kdv5654', 'en', 1, 'https://ror.org/01kdv5654 Ducks Unlimited'),
(116726, 'https://ror.org/041s47w50', 'en', 1, 'https://ror.org/041s47w50 Shanghai Pudong New Area Health Commission äøŠęµ·åø‚ęµ¦äøœę–°åŒŗå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(116727, 'https://ror.org/04f5g2442', 'en', 1, 'https://ror.org/04f5g2442 Rajasthan University of Health Sciences ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(116728, 'https://ror.org/00nf0v751', 'es', 1, 'https://ror.org/00nf0v751 Corpesca Corpesca (Chile) Corpesca S.A.'),
(116729, 'https://ror.org/041g86f21', 'en', 1, 'https://ror.org/041g86f21 Ziauddin Hospital'),
(116730, 'https://ror.org/012jp3q29', 'en', 1, 'https://ror.org/012jp3q29 Department of Higher Education and Training'),
(116731, 'https://ror.org/010s72f83', 'en', 1, 'https://ror.org/010s72f83 South Infirmary Victoria University Hospital'),
(116732, 'https://ror.org/03pan3838', 'en', 1, 'https://ror.org/03pan3838 MINT Memory Clinic'),
(116733, 'https://ror.org/04830hf15', 'de', 1, 'https://ror.org/04830hf15 Evangelisches Krankenhaus Oldenburg'),
(116734, 'https://ror.org/02sak2w47', 'en', 1, 'https://ror.org/02sak2w47 Neumann University'),
(116735, 'https://ror.org/01a8ma036', 'en', 1, 'https://ror.org/01a8ma036 Don Bosco College, Itanagar'),
(116736, 'https://ror.org/01b15w051', 'en', 0, 'https://ror.org/01b15w051 Institut Manajemen Telkom Telkom Institute of Management'),
(116737, 'https://ror.org/02knxrg60', 'en', 1, 'https://ror.org/02knxrg60 German Marine Research Consortium Konsortium Deutsche Meeresforschung'),
(116738, 'https://ror.org/00d7z6755', 'es', 1, 'https://ror.org/00d7z6755 Fundación Biodiversidad'),
(116739, 'https://ror.org/022c4zk48', 'en', 1, 'https://ror.org/022c4zk48 Ministry of SMEs and Startups ģ¤‘ģ†Œė²¤ģ²˜źø°ģ—…ė¶€'),
(116740, 'https://ror.org/00fas7593', 'es', 1, 'https://ror.org/00fas7593 PIC LatinoamƩrica PIC LatinoamƩrica (Chile)'),
(116741, 'https://ror.org/03hv95d67', 'es', 1, 'https://ror.org/03hv95d67 Chilean Nuclear Energy Commission Comisión Chilena de Energía Nuclear'),
(116742, 'https://ror.org/03cn8n632', 'de', 1, 'https://ror.org/03cn8n632 Klinikum Mutterhaus der BorromƤerinnen'),
(116743, 'https://ror.org/04xmnv894', 'no_lang_code', 1, 'https://ror.org/04xmnv894 Brewer Science (United States)'),
(116744, 'https://ror.org/02zhj3b46', 'en', 1, 'https://ror.org/02zhj3b46 American Society for Clinical Pathology'),
(116745, 'https://ror.org/03ht5xf97', 'en', 1, 'https://ror.org/03ht5xf97 Anaheim University'),
(116746, 'https://ror.org/03p47p764', 'ca', 1, 'https://ror.org/03p47p764 Grups de Recerca d''AmĆØrica i ƀfrica Llatines - GRAAL'),
(116747, 'https://ror.org/00a2gj556', 'en', 1, 'https://ror.org/00a2gj556 Martina Hansens Hospital'),
(116748, 'https://ror.org/036epwb08', 'es', 1, 'https://ror.org/036epwb08 Instituto Tecnológico de Ciudad Altamirano'),
(116749, 'https://ror.org/02bxpm650', 'en', 1, 'https://ror.org/02bxpm650 South African Institute of International Affairs'),
(116750, 'https://ror.org/03rs0fg31', 'en', 1, 'https://ror.org/03rs0fg31 Division of Materials Science and Engineering'),
(116751, 'https://ror.org/02rn72456', 'no_lang_code', 1, 'https://ror.org/02rn72456 Biozeron Shenzhen, Inc. Biozeron Shenzhen, Inc. (China) ę·±åœ³åø‚å‡Œę©ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(116752, 'https://ror.org/00c68jz96', 'en', 1, 'https://ror.org/00c68jz96 Ontario Genomics'),
(116753, 'https://ror.org/044weyr28', 'en', 1, 'https://ror.org/044weyr28 Saudi Arabian Cultural Bureau'),
(116754, 'https://ror.org/05xyjr468', 'de', 1, 'https://ror.org/05xyjr468 Klinikum Wilhelmshaven'),
(116755, 'https://ror.org/03d2ezn18', 'ca', 1, 'https://ror.org/03d2ezn18 Institut Cartogràfic i Geològic de Catalunya'),
(116756, 'https://ror.org/04r1x2k35', 'en', 1, 'https://ror.org/04r1x2k35 FH Kufstein University of Applied Sciences Kufstein'),
(116757, 'https://ror.org/01n08tj51', 'pt', 1, 'https://ror.org/01n08tj51 Instituto da Conservação da Natureza e das Florestas'),
(116758, 'https://ror.org/05j6vfd95', 'id', 1, 'https://ror.org/05j6vfd95 STKIP PGRI Bangkalan'),
(116759, 'https://ror.org/02eb31840', 'en', 1, 'https://ror.org/02eb31840 Greensboro College'),
(116760, 'https://ror.org/00ynafe15', 'en', 1, 'https://ror.org/00ynafe15 Alberta Innovates'),
(116761, 'https://ror.org/019w4mg02', 'en', 1, 'https://ror.org/019w4mg02 European Organisation for Rare Diseases'),
(116762, 'https://ror.org/03bj1fs86', 'es', 1, 'https://ror.org/03bj1fs86 Institución Universitaria Colombo Americana'),
(116763, 'https://ror.org/01szgg304', 'en', 1, 'https://ror.org/01szgg304 Toyama City Hospital åÆŒå±±åø‚ē«‹åÆŒå±±åø‚ę°‘ē—…é™¢'),
(116764, 'https://ror.org/00qzn0672', 'no_lang_code', 1, 'https://ror.org/00qzn0672 Egis Pharmaceuticals (Hungary)'),
(116765, 'https://ror.org/02gky3n02', 'en', 1, 'https://ror.org/02gky3n02 Vermont Law and Graduate School'),
(116766, 'https://ror.org/055yhzz06', 'en', 1, 'https://ror.org/055yhzz06 Transport Research Institute'),
(116767, 'https://ror.org/04mjvc058', 'id', 1, 'https://ror.org/04mjvc058 Institut Bisnis dan Ekonomi Indonesia'),
(116768, 'https://ror.org/01qanyf14', 'en', 1, 'https://ror.org/01qanyf14 Directorate-General for Employment, Social Affairs and Inclusion'),
(116769, 'https://ror.org/04zq9ab04', 'es', 1, 'https://ror.org/04zq9ab04 Fundación Soy Conservación'),
(116770, 'https://ror.org/022rntb95', 'en', 1, 'https://ror.org/022rntb95 Vaccine Impact Modelling Consortium'),
(116771, 'https://ror.org/043nvs927', 'en', 1, 'https://ror.org/043nvs927 Gateway ICT Polytechnic Saapade'),
(116772, 'https://ror.org/02zhqgq86', 'en', 1, 'https://ror.org/02zhqgq86 University of Hong Kong'),
(116773, 'https://ror.org/01j543957', 'es', 1, 'https://ror.org/01j543957 Fundación Instituto de Inmunología de Colombia'),
(116774, 'https://ror.org/027mm1153', 'en', 1, 'https://ror.org/027mm1153 Interreg North-West Europe'),
(116775, 'https://ror.org/03w387231', 'nl', 1, 'https://ror.org/03w387231 Gemeente Den Haag'),
(116776, 'https://ror.org/01gpaz870', 'en', 1, 'https://ror.org/01gpaz870 Justis- og beredskapsdepartementet Ministry of Justice and Public Security'),
(116777, 'https://ror.org/018v9ga43', 'no_lang_code', 1, 'https://ror.org/018v9ga43 CMPC (United States) Computer Multimedia Productions Corporation'),
(116778, 'https://ror.org/04x52gy54', 'en', 1, 'https://ror.org/04x52gy54 Lourdes College, Inc.'),
(116779, 'https://ror.org/03a3j6h47', 'en', 1, 'https://ror.org/03a3j6h47 Państwowa Akademia Nauk Stosowanych im. ks. Bronisława Markiewicza w Jarosławiu State University of Applied Sciences in Jaroslaw'),
(116780, 'https://ror.org/02zgjrf98', 'fr', 1, 'https://ror.org/02zgjrf98 Fondation Sciences mathƩmatiques de Paris'),
(116781, 'https://ror.org/00jmfr291', 'en', 1, 'https://ror.org/00jmfr291 University of Michigan University of Michigan–Ann Arbor UniversitĆ© du Michigan'),
(116782, 'https://ror.org/047wwd089', 'en', 1, 'https://ror.org/047wwd089 Fairmont State University UniversitĆ© d''Ɖtat de fairmont'),
(116783, 'https://ror.org/03wxv1976', 'no_lang_code', 1, 'https://ror.org/03wxv1976 Timken (United States)'),
(116784, 'https://ror.org/04xsxqp89', 'en', 1, 'https://ror.org/04xsxqp89 Alliance Bioversity International - CIAT'),
(116785, 'https://ror.org/02mrcx295', 'no_lang_code', 1, 'https://ror.org/02mrcx295 Creare (United States)'),
(116786, 'https://ror.org/05n4f1v75', 'id', 1, 'https://ror.org/05n4f1v75 Universitas Katolik Darma Cendika'),
(116787, 'https://ror.org/049rk3218', 'de', 1, 'https://ror.org/049rk3218 Institut für angewandte Photonik'),
(116788, 'https://ror.org/052b58660', 'no_lang_code', 1, 'https://ror.org/052b58660 Shandong Electric Power Engineering Consulting Institute Corp å±±äøœē”µåŠ›å·„ēØ‹å’ØčÆ¢é™¢ęœ‰é™å…¬åø'),
(116789, 'https://ror.org/04btch759', 'en', 1, 'https://ror.org/04btch759 Institutul Național de Cercetare-Dezvoltare pentru Mașini și Instalații Destinate Agriculturii și Industriei Alimentare The National Institute of Research – Development for Machines and Installations Designed for Agriculture and Food Industry'),
(116790, 'https://ror.org/00tct5242', 'no_lang_code', 1, 'https://ror.org/00tct5242 Polaris (United States)'),
(116791, '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'),
(116792, 'https://ror.org/04z5xnd65', 'en', 1, 'https://ror.org/04z5xnd65 Ion Mincu University of Architecture and Urbanism Universitatea de Arhitectură și Urbanism Ion Mincu'),
(116793, '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'),
(116794, 'https://ror.org/039x8pg04', 'en', 1, 'https://ror.org/039x8pg04 Mykolaiv Polytechnic Professional College'),
(116795, 'https://ror.org/00bz3ax41', 'en', 1, 'https://ror.org/00bz3ax41 University of Dubuque UniversitƩ de dubuque'),
(116796, 'https://ror.org/01d14z762', 'de', 1, 'https://ror.org/01d14z762 Forschungsinstitut der Diabetes Akademie Mergentheim'),
(116797, 'https://ror.org/04sr9ds30', 'no_lang_code', 1, 'https://ror.org/04sr9ds30 Luxfer Group (United Kingdom)'),
(116798, 'https://ror.org/02qchbs48', 'de', 1, 'https://ror.org/02qchbs48 Psychologische Hochschule Berlin'),
(116799, 'https://ror.org/0434pxk87', 'en', 1, 'https://ror.org/0434pxk87 Eskilstuna Municipality'),
(116800, 'https://ror.org/036g5z675', 'it', 1, 'https://ror.org/036g5z675 Azienda Sanitaria Locale CN2'),
(116801, 'https://ror.org/042z7qa37', 'en', 1, 'https://ror.org/042z7qa37 McKendree University'),
(116802, 'https://ror.org/04cma1r71', 'en', 1, 'https://ror.org/04cma1r71 Group for the Analysis of Development Grupo de AnƔlisis para el Desarrollo'),
(116803, 'https://ror.org/01fztcv40', 'en', 1, 'https://ror.org/01fztcv40 Kenya School of Government'),
(116804, 'https://ror.org/056y2f070', 'no_lang_code', 1, 'https://ror.org/056y2f070 Agios Andreas Hospital Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī Ī±Ļ„ĻĻŽĪ½'),
(116805, 'https://ror.org/03hcakg70', 'en', 1, 'https://ror.org/03hcakg70 Pushkin State Russian language Institute Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŃƒŃŃŠŗŠ¾Š³Š¾ ŃŠ·Ń‹ŠŗŠ° им. А.Š”. Пушкина'),
(116806, 'https://ror.org/03rfk3a08', 'de', 1, 'https://ror.org/03rfk3a08 St. Vincenz-Krankenhaus Limburg'),
(116807, 'https://ror.org/014qf4206', 'no_lang_code', 1, 'https://ror.org/014qf4206 Gradient (United States)'),
(116808, 'https://ror.org/04qjbkj27', 'ca', 1, 'https://ror.org/04qjbkj27 Gobierno de las Islas Baleares Govern de les Illes Balears'),
(116809, 'https://ror.org/05s18kz11', 'de', 1, 'https://ror.org/05s18kz11 Fachklinik Hornheide'),
(116810, 'https://ror.org/0532s5p48', 'en', 1, 'https://ror.org/0532s5p48 Spanish Society of Hematology and Hemotherapy'),
(116811, 'https://ror.org/04qypp211', 'es', 1, 'https://ror.org/04qypp211 Estudios Clƭnicos LatinoamƩrica'),
(116812, 'https://ror.org/01ayw7119', 'en', 1, 'https://ror.org/01ayw7119 Institute of the Ukrainian Language of the National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ¾Ń— мови ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(116813, 'https://ror.org/04skrt813', 'en', 1, 'https://ror.org/04skrt813 Gwynedd Council'),
(116814, 'https://ror.org/02vhyd254', 'en', 1, 'https://ror.org/02vhyd254 Rama University'),
(116815, 'https://ror.org/02fm22986', 'pt', 1, 'https://ror.org/02fm22986 Instituto Sócioambiental'),
(116816, 'https://ror.org/02qpcpw42', 'en', 1, 'https://ror.org/02qpcpw42 Finnish Institute of International Affairs Ulkopoliittinen instituutti Utrikespolitiska institutet'),
(116817, 'https://ror.org/04vmvtb21', 'en', 1, 'https://ror.org/04vmvtb21 Tulane University'),
(116818, 'https://ror.org/05ez4ar64', 'en', 1, 'https://ror.org/05ez4ar64 Artemis Hospitals'),
(116819, 'https://ror.org/01tnfvr41', 'es', 1, 'https://ror.org/01tnfvr41 Universidad de Congreso'),
(116820, 'https://ror.org/00y0vtx70', 'es', 1, 'https://ror.org/00y0vtx70 Academia Aragonesa d''a Luenga Academia Aragonesa de la Lengua AcadĆØmia Aragonesa de la Llengua'),
(116821, 'https://ror.org/05f87be95', 'en', 1, 'https://ror.org/05f87be95 Tucson Medical Center'),
(116822, 'https://ror.org/0228drn10', 'en', 1, 'https://ror.org/0228drn10 Boston Collaborative Drug Surveillance Program'),
(116823, 'https://ror.org/02hjy9d57', 'en', 1, 'https://ror.org/02hjy9d57 Palestine Exploration Fund ×”×§×Ø×Ÿ ×œ×—×§×Ø ארׄ ×™×©×Ø××œ ŲµŁ†ŲÆŁˆŁ‚ استكؓاف ŁŁ„Ų³Ų·ŁŠŁ†'),
(116824, 'https://ror.org/05cga6x45', 'en', 1, 'https://ror.org/05cga6x45 Sports Surgery Clinic'),
(116825, 'https://ror.org/05dseer82', 'en', 1, 'https://ror.org/05dseer82 Centre for Transforming Access and Student Outcomes in Higher Education Transforming Access and Student Outcomes in Higher Education'),
(116826, 'https://ror.org/051ev5v05', 'en', 1, 'https://ror.org/051ev5v05 American Institute of Certified Public Accountants'),
(116827, 'https://ror.org/04s361q55', 'no_lang_code', 1, 'https://ror.org/04s361q55 Cognitive Research (United States)'),
(116828, 'https://ror.org/05y09dk26', 'en', 1, 'https://ror.org/05y09dk26 Samara Regional Clinical Oncology Center Дамарский областной клинический онкологический Гиспансер'),
(116829, 'https://ror.org/02369cb65', 'en', 1, 'https://ror.org/02369cb65 Presbyterian University, Ghana'),
(116830, 'https://ror.org/000hew328', 'no_lang_code', 1, 'https://ror.org/000hew328 Knowles (United States)'),
(116831, 'https://ror.org/01ek0ym72', 'pl', 1, 'https://ror.org/01ek0ym72 4. Wojskowy Szpital Kliniczny z Polikliniką'),
(116832, 'https://ror.org/01r3ztp10', 'en', 1, 'https://ror.org/01r3ztp10 Karachi Institute of Radiotherapy and Nuclear Medicine'),
(116833, 'https://ror.org/030vvqf88', 'en', 1, 'https://ror.org/030vvqf88 Children’s Village'),
(116834, 'https://ror.org/0511nn663', 'en', 1, 'https://ror.org/0511nn663 Croix Bleue Medavie Medavie Blue Cross'),
(116835, 'https://ror.org/006rga838', 'nl', 1, 'https://ror.org/006rga838 Koninklijke Nederlandse Maatschappij voor Diergeneeskunde'),
(116836, 'https://ror.org/03vvynj75', 'en', 1, 'https://ror.org/03vvynj75 Departamento de Estado de los Estados Unidos DĆ©partement d''Ɖtat des Ɖtats-unis United States Department of State'),
(116837, 'https://ror.org/030p2g996', 'en', 1, 'https://ror.org/030p2g996 Habib University حبيب ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(116838, 'https://ror.org/04r6eem28', 'en', 1, 'https://ror.org/04r6eem28 National Library of Serbia ŠŠ°Ń€Š¾Š“Š½Š° библиотека Š”Ń€Š±ŠøŃ˜Šµ'),
(116839, 'https://ror.org/01jsr8a33', 'en', 1, 'https://ror.org/01jsr8a33 Altai State Agricultural University Алтайский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116840, 'https://ror.org/02xhnzg94', 'en', 1, 'https://ror.org/02xhnzg94 Manhattan University'),
(116841, 'https://ror.org/043tv4788', 'en', 1, 'https://ror.org/043tv4788 PSG College of Arts & Science'),
(116842, 'https://ror.org/01t4pxk43', 'de', 1, 'https://ror.org/01t4pxk43 St. Bernward Krankenhaus'),
(116843, 'https://ror.org/026dr4n55', 'en', 1, 'https://ror.org/026dr4n55 Federal Medical Centre'),
(116844, 'https://ror.org/00txvrc11', 'en', 1, 'https://ror.org/00txvrc11 Leyden Academy on Vitality and Ageing'),
(116845, 'https://ror.org/02dmj8v04', 'en', 1, 'https://ror.org/02dmj8v04 Modern Academy for Engineering and Technology Ų§Ł„Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų­ŲÆŁŠŲ«Ų© للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(116846, 'https://ror.org/002jdvv38', 'fr', 1, 'https://ror.org/002jdvv38 Centre Hospitalier de Douai'),
(116847, 'https://ror.org/02mgwph26', 'no_lang_code', 1, 'https://ror.org/02mgwph26 Mitera Hospital'),
(116848, 'https://ror.org/037vpsd04', 'en', 1, 'https://ror.org/037vpsd04 Berlin University Alliance'),
(116849, 'https://ror.org/03rt9jf88', 'no_lang_code', 1, 'https://ror.org/03rt9jf88 Austrian Competence Centre of Food Safety Lebensmittelversuchsanstalt'),
(116850, 'https://ror.org/014vawd53', 'en', 1, 'https://ror.org/014vawd53 Genesis Laboratories'),
(116851, 'https://ror.org/01wc8dm69', 'en', 1, 'https://ror.org/01wc8dm69 Central Clinical Hospital and Polyclinic Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° c поликлиникой Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Гелами ŠŸŃ€ŠµŠ·ŠøŠ“ента Российской ФеГерации'),
(116852, 'https://ror.org/040w4gz36', 'en', 1, 'https://ror.org/040w4gz36 Yukon University'),
(116853, 'https://ror.org/05ac42c11', 'en', 1, 'https://ror.org/05ac42c11 Soroptimist Foundation of Canada'),
(116854, 'https://ror.org/04jf50h38', 'es', 1, 'https://ror.org/04jf50h38 Empresa Constructora Socovesa S.A. Socovesa Socovesa (Chile)'),
(116855, 'https://ror.org/02g9y9404', 'en', 1, 'https://ror.org/02g9y9404 Institute of Radiotherapy and Nuclear Medicine جوہری طبی اور ؓعاعي علاج کا ادارہ'),
(116856, 'https://ror.org/03s6myg30', 'en', 1, 'https://ror.org/03s6myg30 Eye Foundation Hospital'),
(116857, 'https://ror.org/01e0qt032', 'en', 1, 'https://ror.org/01e0qt032 Polish Institute of International Affairs'),
(116858, 'https://ror.org/01mkt8h07', 'en', 1, 'https://ror.org/01mkt8h07 National Museum of Slovenia'),
(116859, 'https://ror.org/00m7h8m26', 'en', 1, 'https://ror.org/00m7h8m26 Dehong Vocational College å¾·å®čŒäøšå­¦é™¢'),
(116860, 'https://ror.org/032rn0w24', 'en', 1, 'https://ror.org/032rn0w24 Gower College Swansea'),
(116861, 'https://ror.org/057zm3f43', 'no_lang_code', 1, 'https://ror.org/057zm3f43 HELP Therapeutics HELP Therapeutics (China) č‰¾å°”ę™®å†ē”ŸåŒ»å­¦'),
(116862, 'https://ror.org/044geq124', 'en', 1, 'https://ror.org/044geq124 Ministry of Water Resources and Irrigation وزارة Ų§Ł„Ł…ŁˆŲ§Ų±ŲÆ Ų§Ł„Ł…Ų§Ų¦ŁŠŲ© ŁˆŲ§Ł„Ų±ŁŠ'),
(116863, 'https://ror.org/016a9kk10', 'en', 1, 'https://ror.org/016a9kk10 Institute of Economics Zagreb'),
(116864, 'https://ror.org/055qws746', 'es', 1, 'https://ror.org/055qws746 Essbio'),
(116865, 'https://ror.org/020wajj63', 'en', 1, 'https://ror.org/020wajj63 Karen Hospital'),
(116866, 'https://ror.org/01kv8e326', 'en', 1, 'https://ror.org/01kv8e326 Kurashiki Medical Center å€‰ę•·ęˆäŗŗē—…ć‚»ćƒ³ć‚æćƒ¼'),
(116867, 'https://ror.org/00ffgq494', 'en', 1, 'https://ror.org/00ffgq494 Southeast Asian Fisheries Development Center'),
(116868, 'https://ror.org/052m6j024', 'en', 1, 'https://ror.org/052m6j024 Icelandic Cancer Society KrabbameinsfƩlagiư'),
(116869, 'https://ror.org/00sk5b360', 'en', 1, 'https://ror.org/00sk5b360 Jami University دانؓگاه Ų¬Ų§Ł…ŪŒ'),
(116870, 'https://ror.org/00ta0g865', 'en', 1, 'https://ror.org/00ta0g865 Institute for Development and Research in Banking Technology'),
(116871, 'https://ror.org/0182em051', 'en', 1, 'https://ror.org/0182em051 Menlo College'),
(116872, 'https://ror.org/03y00b460', 'es', 1, 'https://ror.org/03y00b460 Fundación Universitaria Antonio Gargallo'),
(116873, 'https://ror.org/03fzdmt35', 'pl', 1, 'https://ror.org/03fzdmt35 Państwowa Akademia Nauk Stosowanych w Przemyślu State University of Applied Sciences in Przemyśl'),
(116874, 'https://ror.org/05pgqgb54', 'en', 1, 'https://ror.org/05pgqgb54 Pak-Austria Fachhochschule: Institute of Applied Sciences and Technology'),
(116875, 'https://ror.org/02jxxbt79', 'id', 1, 'https://ror.org/02jxxbt79 Universitas Mulia'),
(116876, 'https://ror.org/02dnv4714', 'en', 1, 'https://ror.org/02dnv4714 The Ark'),
(116877, 'https://ror.org/03cebjr81', 'en', 1, 'https://ror.org/03cebjr81 Anderson University - Indiana'),
(116878, 'https://ror.org/04ggjpc96', 'nl', 1, 'https://ror.org/04ggjpc96 Reinier van Arkel'),
(116879, 'https://ror.org/02e5r8n65', 'de', 1, 'https://ror.org/02e5r8n65 Sankt-Antonius-Hospital Eschweiler'),
(116880, 'https://ror.org/034x5a519', 'en', 1, 'https://ror.org/034x5a519 KuntoutussƤƤtiƶ Rehabilitation Foundation'),
(116881, 'https://ror.org/05m5t2b63', 'en', 1, 'https://ror.org/05m5t2b63 Office of the Higher Education Commission สำนักงานคณะกรรดการการอุดดศึกษา'),
(116882, 'https://ror.org/04bqs3e84', 'en', 1, 'https://ror.org/04bqs3e84 Health and Environmental Sciences Institute'),
(116883, 'https://ror.org/05kw00716', 'de', 1, 'https://ror.org/05kw00716 Institut für Mikroelektronik Stuttgart'),
(116884, 'https://ror.org/051j1ed22', 'en', 1, 'https://ror.org/051j1ed22 ACTRIS ERIC - Aerosol, Cloud and Trace Gases Research Infrastructure'),
(116885, 'https://ror.org/01p9amb16', 'en', 1, 'https://ror.org/01p9amb16 Edison Scientific Edison Scientific Inc. Edison Scientific Inc. (United States)'),
(116886, 'https://ror.org/0292bh813', 'en', 1, 'https://ror.org/0292bh813 Mahaveer Academy of Technology and Science University ą¤®ą„ˆą¤Ÿą„ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(116887, 'https://ror.org/05cdyhf91', 'en', 1, 'https://ror.org/05cdyhf91 Universiteit van Aruba University of Aruba'),
(116888, 'https://ror.org/02kxx1z36', 'en', 1, 'https://ror.org/02kxx1z36 Korea Technology and Information Promotion Agency for SMEs ģ¤‘ģ†Œźø°ģ—…źø°ģˆ ģ •ė³“ģ§„ķ„ģ›'),
(116889, 'https://ror.org/022k0py62', 'fr', 1, 'https://ror.org/022k0py62 Ɖditions universitaires de Dijon'),
(116890, 'https://ror.org/01de7ab51', 'en', 1, 'https://ror.org/01de7ab51 Gono University ą¦—ą¦£ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(116891, 'https://ror.org/028ypwr15', 'en', 1, 'https://ror.org/028ypwr15 Albury Wodonga Health'),
(116892, 'https://ror.org/01extmz43', 'fr', 1, 'https://ror.org/01extmz43 Centre hospitalier de Rouffach'),
(116893, 'https://ror.org/019tz0c71', 'en', 1, 'https://ror.org/019tz0c71 State Scientific and Technical Library of Ukraine Державна науково-технічна бібліотека України'),
(116894, 'https://ror.org/04wex6338', 'en', 1, 'https://ror.org/04wex6338 Sickkids Research Institute'),
(116895, 'https://ror.org/04np9tf37', 'en', 1, 'https://ror.org/04np9tf37 M.V. Šžstrohradskyi Poltava Academy of Continuous Education ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń неперервної освіти ім. М. Š’. ŠžŃŃ‚Ń€Š¾Š³Ń€Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(116896, 'https://ror.org/003bxzv61', 'en', 1, 'https://ror.org/003bxzv61 Data Science Research Center'),
(116897, 'https://ror.org/006cnep94', 'no_lang_code', 1, 'https://ror.org/006cnep94 Inorca Seating Inorca Seating (Colombia)'),
(116898, 'https://ror.org/054b4h407', 'de', 1, 'https://ror.org/054b4h407 Gesellschaft für Forschungsförderung Niederösterreich Gesellschaft für Forschungsförderung Niederösterreich m.b.H.'),
(116899, 'https://ror.org/0433h3c62', 'en', 1, 'https://ror.org/0433h3c62 Agencija za ZaŔtitu Osobnih Podataka Croatian Personal Data Protection Agency'),
(116900, 'https://ror.org/00x38nf67', 'no_lang_code', 1, 'https://ror.org/00x38nf67 Nalux Co., Ltd. Nalux Co., Ltd. (Japan) ćƒŠćƒ«ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(116901, 'https://ror.org/00t28mr39', 'en', 0, 'https://ror.org/00t28mr39 Crown Research Institutes'),
(116902, 'https://ror.org/0272kpg92', 'no_lang_code', 1, 'https://ror.org/0272kpg92 Meituan Meituan (China) ē¾Žå›¢'),
(116903, 'https://ror.org/038nzs086', 'en', 1, 'https://ror.org/038nzs086 Orenburg State Pedagogical University ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116904, 'https://ror.org/03ph49z03', 'en', 1, 'https://ror.org/03ph49z03 Islamic University in Uganda'),
(116905, 'https://ror.org/01c127k53', 'en', 1, 'https://ror.org/01c127k53 Clinical Research Services'),
(116906, 'https://ror.org/023f4f524', 'fr', 1, 'https://ror.org/023f4f524 Fondation Congolaise Pour La Recherche MƩdicale'),
(116907, 'https://ror.org/03mgprp21', 'en', 1, 'https://ror.org/03mgprp21 "National Medical Research Center for Rehabilitation and Balneology" of the Ministry of Health of the Russian Federation ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр реабилитации Šø ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠøĀ» ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(116908, 'https://ror.org/05km40z28', 'en', 1, 'https://ror.org/05km40z28 Start Treatment & Recovery Centers'),
(116909, 'https://ror.org/00vrgpy91', 'en', 1, 'https://ror.org/00vrgpy91 St. Petersburg College'),
(116910, 'https://ror.org/054w8cm30', 'en', 1, 'https://ror.org/054w8cm30 Institutul de Calcul Tiberiu Popoviciu Tiberiu Popoviciu Institute of Numerical Analysis'),
(116911, 'https://ror.org/055fn0a35', 'de', 1, 'https://ror.org/055fn0a35 Spital Zollikerberg'),
(116912, 'https://ror.org/01wajxa36', 'en', 1, 'https://ror.org/01wajxa36 Bangladesh University of Health Sciences'),
(116913, 'https://ror.org/05abmv045', 'en', 1, 'https://ror.org/05abmv045 Sieć Badawcza Łukasiewicz - Warszawski Instytut Technologiczny Łukasiewicz Research Network – Warsaw Institute of Technology'),
(116914, 'https://ror.org/01ykfnp55', 'en', 1, 'https://ror.org/01ykfnp55 Gates Family Foundation'),
(116915, 'https://ror.org/02sejv728', 'en', 1, 'https://ror.org/02sejv728 Chuo Kikuu cha Zanzibar Zanzibar University Ų¬Ų§Ł…Ų¹Ų© زنجبار'),
(116916, 'https://ror.org/03vv3x922', 'en', 1, 'https://ror.org/03vv3x922 Foundation for Opioid Response Efforts'),
(116917, 'https://ror.org/00s894y88', 'en', 1, 'https://ror.org/00s894y88 Addiction and Mental Health Services - MSH'),
(116918, 'https://ror.org/057banx74', 'en', 1, 'https://ror.org/057banx74 Federal Medical Centre Nguru'),
(116919, 'https://ror.org/00n2qrv22', 'de', 1, 'https://ror.org/00n2qrv22 Magistrat der Stadt Wien'),
(116920, 'https://ror.org/05bamms85', 'it', 1, 'https://ror.org/05bamms85 Parco Tecnologico Padano'),
(116921, 'https://ror.org/01banz567', 'en', 1, 'https://ror.org/01banz567 Kyushu University of Health and Welfare ä¹å·žäæå„ē¦ē„‰å¤§å­¦'),
(116922, 'https://ror.org/03nxnp058', 'pt', 1, 'https://ror.org/03nxnp058 Museu da Amazonia'),
(116923, 'https://ror.org/03hwmxn85', 'en', 1, 'https://ror.org/03hwmxn85 Harvard Vanguard Medical Associates'),
(116924, 'https://ror.org/02gq5c945', 'en', 1, 'https://ror.org/02gq5c945 Compute Ontario'),
(116925, 'https://ror.org/02dxpep57', 'en', 1, 'https://ror.org/02dxpep57 Swedish National Board of Forensic Medicine'),
(116926, 'https://ror.org/04anxv382', 'en', 1, 'https://ror.org/04anxv382 National Center for Sports Medicine of the Federal Medical and Biological Agency of Russia ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр спортивной меГицины Š¤ŠœŠ‘Š России'),
(116927, 'https://ror.org/03xw9zx77', 'en', 1, 'https://ror.org/03xw9zx77 Institute of Technical Education'),
(116928, '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'),
(116929, 'https://ror.org/027txbv15', 'en', 1, 'https://ror.org/027txbv15 Graduate University of Mongolia Монгол Улсын ЭрГмийн Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(116930, 'https://ror.org/03yfqhm12', 'en', 1, 'https://ror.org/03yfqhm12 Nagoya Municipal Industrial Research Institute åå¤å±‹åø‚å·„ę„­ē ”ē©¶ę‰€'),
(116931, 'https://ror.org/0086w0z14', 'de', 1, 'https://ror.org/0086w0z14 Forschungsinstitut für Edelmetalle und Metallchemie Research Institute for Precious Metals and Metal Chemistry'),
(116932, 'https://ror.org/0020pnp42', 'en', 1, 'https://ror.org/0020pnp42 Center of Plant Systems Biology and Biotechnology');
INSERT INTO `rors` VALUES
(116933, 'https://ror.org/05p38tr07', 'en', 1, 'https://ror.org/05p38tr07 Mie Prefectural College Of Nursing äø‰é‡ēœŒē«‹ēœ‹č­·å¤§å­¦'),
(116934, 'https://ror.org/03jzgvn02', 'en', 1, 'https://ror.org/03jzgvn02 Wellcome Leap'),
(116935, 'https://ror.org/01jsq2704', 'en', 1, 'https://ror.org/01jsq2704 Eƶtvƶs LorƔnd TudomƔnyegyetem Eƶtvƶs LorƔnd University'),
(116936, 'https://ror.org/05xpx5s03', 'en', 1, 'https://ror.org/05xpx5s03 Martin University Hospital UniverzitnĆ” Nemocnica Martin'),
(116937, 'https://ror.org/02pnhwp93', 'en', 1, 'https://ror.org/02pnhwp93 HUN-REN Balaton Limnological Research Institute HUN-REN Balatoni Limnológiai Kutatóintézet'),
(116938, 'https://ror.org/014stvx20', 'en', 1, 'https://ror.org/014stvx20 Dutch Institute for Clinical Auditing'),
(116939, 'https://ror.org/0110wcq52', 'es', 1, 'https://ror.org/0110wcq52 Instituto Universitario de Ciencias Biomédicas de Córdoba'),
(116940, 'https://ror.org/02gw4vz38', 'en', 1, 'https://ror.org/02gw4vz38 Missouri Institute of Mental Health'),
(116941, 'https://ror.org/05rqcqp18', 'id', 1, 'https://ror.org/05rqcqp18 Politeknik STIA LAN Jakarta'),
(116942, 'https://ror.org/00zqa9n78', 'nl', 1, 'https://ror.org/00zqa9n78 Rode Kruis-Vlaanderen'),
(116943, 'https://ror.org/02mbz1h25', 'no_lang_code', 1, 'https://ror.org/02mbz1h25 Laboratory of Data Discovery for Health é†«č”žå¤§ę•øę“šę·±ęžåÆ¦é©—å®¤ęœ‰é™å…¬åø'),
(116944, 'https://ror.org/0259vv330', 'en', 1, 'https://ror.org/0259vv330 International Centre for Diffraction Data'),
(116945, 'https://ror.org/032v46217', 'en', 1, 'https://ror.org/032v46217 Self Family Foundation'),
(116946, 'https://ror.org/04hs54263', 'en', 1, 'https://ror.org/04hs54263 Clinical and Translational Science Institute'),
(116947, 'https://ror.org/034cj1z12', 'en', 1, 'https://ror.org/034cj1z12 Forestry and Game Management Research Institute'),
(116948, 'https://ror.org/02707gg79', 'en', 1, 'https://ror.org/02707gg79 IŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізичної оптики iменi Šž. Š“. Влоха Vlokh Institute of Physical Optics'),
(116949, 'https://ror.org/01xf5pq20', 'fr', 1, 'https://ror.org/01xf5pq20 UniversitĆ© Tunis Carthage Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³ قرطاج'),
(116950, 'https://ror.org/011jgwj89', 'en', 1, 'https://ror.org/011jgwj89 Iranian Academy of Medical Sciences فرهنگستان Ų¹Ł„ŁˆŁ… پزؓکی Ų¬Ł…Ł‡ŁˆŲ±ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(116951, 'https://ror.org/00pqhg146', 'en', 1, 'https://ror.org/00pqhg146 Casimir Pulaski Foundation Fundacja im. Kazimierza Pułaskiego'),
(116952, 'https://ror.org/02p1wqy15', 'de', 1, 'https://ror.org/02p1wqy15 Nephrologisches Zentrum Goettingen'),
(116953, 'https://ror.org/012a4r663', 'en', 1, 'https://ror.org/012a4r663 Autoridad del Canal de PanamĆ” Panama Canal Authority'),
(116954, 'https://ror.org/047y5ne09', 'en', 1, 'https://ror.org/047y5ne09 Economic Research Forum منتدى Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŁŠŲ©'),
(116955, 'https://ror.org/037zdfv74', 'en', 1, 'https://ror.org/037zdfv74 Lyceum College'),
(116956, 'https://ror.org/03yyfkv62', 'en', 1, 'https://ror.org/03yyfkv62 Sancheti Institute For Orthopaedics & Rehabilitation'),
(116957, 'https://ror.org/00vcqer65', 'id', 1, 'https://ror.org/00vcqer65 Universitas Mahendradatta'),
(116958, 'https://ror.org/04fkf6297', 'en', 1, 'https://ror.org/04fkf6297 Autism CRC'),
(116959, 'https://ror.org/00sf10j48', 'en', 1, 'https://ror.org/00sf10j48 KeJingBio'),
(116960, 'https://ror.org/01ytw4e80', 'en', 1, 'https://ror.org/01ytw4e80 Corporación Federal de Seguro de Depósitos Federal Deposit Insurance Corporation'),
(116961, 'https://ror.org/02dq7z403', 'en', 1, 'https://ror.org/02dq7z403 European Centre for Training and Research in Earthquake Engineering'),
(116962, 'https://ror.org/00geck193', 'no_lang_code', 1, 'https://ror.org/00geck193 Kirinyaga University'),
(116963, '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'),
(116964, 'https://ror.org/00qffz908', 'de', 1, 'https://ror.org/00qffz908 Landeszentrum Gesundheit Nordrhein-Westfalen'),
(116965, 'https://ror.org/03dq5g621', 'no', 1, 'https://ror.org/03dq5g621 Nasjonalforeningen for Folkehelsen'),
(116966, 'https://ror.org/05h37g806', 'en', 1, 'https://ror.org/05h37g806 Alberta Student Aid'),
(116967, 'https://ror.org/05tq5rp50', 'no_lang_code', 1, 'https://ror.org/05tq5rp50 Focus (Germany)'),
(116968, 'https://ror.org/012ane130', 'en', 1, 'https://ror.org/012ane130 Centre For Sustainable Urban Development Centro de Desarrollo Urbano Sustentable'),
(116969, 'https://ror.org/05gvg0p95', 'en', 1, 'https://ror.org/05gvg0p95 Centre for Water Resources Development and Management'),
(116970, 'https://ror.org/03yzavx55', 'fr', 1, 'https://ror.org/03yzavx55 Centre Hospitalier VƩtƩrinaire FrƩgis'),
(116971, 'https://ror.org/03fwjkz17', 'no_lang_code', 1, 'https://ror.org/03fwjkz17 StepFun AI StepFun AI (China) 阶跃AI'),
(116972, 'https://ror.org/007vkej58', 'en', 1, 'https://ror.org/007vkej58 Isaac Newton Institute for Mathematical Sciences'),
(116973, 'https://ror.org/02v7nqx28', 'en', 1, 'https://ror.org/02v7nqx28 Sultan Abdul Halim Mu''adzam Shah International Islamic University Universiti Islam Antarabangsa Sultan Abdul Halim Mu''adzam Shah'),
(116974, 'https://ror.org/00s3fdw25', 'no_lang_code', 1, 'https://ror.org/00s3fdw25 Telekom Malaysia Berhad (Malaysia)'),
(116975, 'https://ror.org/00eckk830', 'en', 0, 'https://ror.org/00eckk830 Oman Medical College ŁƒŁ„ŁŠŲ© Ų¹ŁŁ…Ų§Ł† Ų§Ł„Ų·ŲØŁŠŲ©'),
(116976, 'https://ror.org/050d0xx93', 'nl', 1, 'https://ror.org/050d0xx93 Ziekenhuis aan de Stroom Ziekenhuis aan de Stroom vzw'),
(116977, 'https://ror.org/03kb7hq55', 'en', 1, 'https://ror.org/03kb7hq55 Kurume Institute of Technology 久留米巄愭大学'),
(116978, 'https://ror.org/03mstc592', 'en', 1, 'https://ror.org/03mstc592 European Molecular Biology Laboratory Europäisches Laboratorium für Molekularbiologie'),
(116979, 'https://ror.org/04hsw8w46', 'en', 1, 'https://ror.org/04hsw8w46 Unfunded List'),
(116980, 'https://ror.org/00dfbfw84', 'en', 1, 'https://ror.org/00dfbfw84 Kherson State Maritime Academy Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠ° Гержавна Š¼Š¾Ń€ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(116981, 'https://ror.org/01s6y4r94', 'en', 1, 'https://ror.org/01s6y4r94 Horizons Foundation'),
(116982, 'https://ror.org/02jkw2g13', 'en', 1, 'https://ror.org/02jkw2g13 Yamashina Institute for Ornithology å±±éšŽé³„é”žē ”ē©¶ę‰€'),
(116983, 'https://ror.org/04vtvrr13', 'nl', 1, 'https://ror.org/04vtvrr13 Codarts Rotterdam'),
(116984, 'https://ror.org/03f9vhh95', 'en', 1, 'https://ror.org/03f9vhh95 Durham College'),
(116985, 'https://ror.org/009djdq91', 'en', 1, 'https://ror.org/009djdq91 Universities Research Association'),
(116986, 'https://ror.org/052vnbj45', 'no_lang_code', 1, 'https://ror.org/052vnbj45 Apache (Canada)'),
(116987, 'https://ror.org/032pgsv75', 'en', 1, 'https://ror.org/032pgsv75 Artifex University Universitatea Artifex'),
(116988, 'https://ror.org/00yxvjx76', 'es', 1, 'https://ror.org/00yxvjx76 Universidad Tecnológica de La Laguna Durango'),
(116989, 'https://ror.org/026a3nk20', 'en', 1, 'https://ror.org/026a3nk20 Sitaram Bhartia Institute of Science and Research'),
(116990, 'https://ror.org/007s7nj58', 'de', 1, 'https://ror.org/007s7nj58 Land Nordrhein-Westfalen'),
(116991, 'https://ror.org/005dwrj24', 'en', 1, 'https://ror.org/005dwrj24 Institutul de Cercetare-Dezvoltare pentru Ecologie Acvatică, Pescuit și Acvacultură Research and Development Institute for Aquatic Ecology, Fisheries and Aquaculture'),
(116992, 'https://ror.org/02b08tk40', 'no_lang_code', 1, 'https://ror.org/02b08tk40 Fahrenheit (Germany)'),
(116993, 'https://ror.org/04d68yh59', 'en', 1, 'https://ror.org/04d68yh59 IILM Institute for Higher Education'),
(116994, 'https://ror.org/015mptv94', 'hu', 1, 'https://ror.org/015mptv94 Somogy Megyei Kaposi Mór Oktató KórhÔz'),
(116995, 'https://ror.org/04tcj6w24', 'en', 1, 'https://ror.org/04tcj6w24 Gifu University of Medical Science å²é˜œåŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(116996, 'https://ror.org/03kpps236', 'en', 1, 'https://ror.org/03kpps236 Barcelona Institute of Science and Technology Instituto Barcelona de Ciencia y TecnologĆ­a'),
(116997, 'https://ror.org/03qtd7e32', 'es', 1, 'https://ror.org/03qtd7e32 Asociación Psicoanalítica de Buenos Aires'),
(116998, 'https://ror.org/00q0v3357', 'en', 1, 'https://ror.org/00q0v3357 Quzhou College of Technology'),
(116999, 'https://ror.org/015thzh02', 'de', 1, 'https://ror.org/015thzh02 Genetikum'),
(117000, 'https://ror.org/03rab9n37', 'en', 1, 'https://ror.org/03rab9n37 Indonesia International Institute for Life Sciences'),
(117001, 'https://ror.org/01nzrqm94', 'en', 1, 'https://ror.org/01nzrqm94 Breach Candy Hospital'),
(117002, 'https://ror.org/044d2hn91', 'fr', 1, 'https://ror.org/044d2hn91 Centre Hospitalier Guillaume RƩgnier'),
(117003, 'https://ror.org/033qhvk72', 'no_lang_code', 1, 'https://ror.org/033qhvk72 Metabolon (United States)'),
(117004, 'https://ror.org/04edeq073', 'en', 1, 'https://ror.org/04edeq073 Institut für Lasertechnologien in der Medizin und Meßtechnik an der Universität Ulm Institute for Laser Technology in Medicine and Measurement Technique'),
(117005, 'https://ror.org/04x6tqs25', 'no_lang_code', 1, 'https://ror.org/04x6tqs25 Nova Chemicals (Canada)'),
(117006, 'https://ror.org/059s6j071', 'en', 1, 'https://ror.org/059s6j071 China Classification Society äø­åœ‹čˆ¹ē“šē¤¾'),
(117007, 'https://ror.org/00fk7s812', 'en', 1, 'https://ror.org/00fk7s812 Wilton Park'),
(117008, 'https://ror.org/00zave958', 'no', 1, 'https://ror.org/00zave958 Norsk Teknisk Museum'),
(117009, 'https://ror.org/04jcfwb48', 'en', 1, 'https://ror.org/04jcfwb48 Berman Center for Outcomes and Clinical Research'),
(117010, 'https://ror.org/00hv7q333', 'en', 1, 'https://ror.org/00hv7q333 Zettawatt-Equivalent Ultrashort pulse laser System'),
(117011, 'https://ror.org/0107rkg57', 'nl', 1, 'https://ror.org/0107rkg57 GGZ Drenthe'),
(117012, 'https://ror.org/046aa8x19', 'pt', 1, 'https://ror.org/046aa8x19 Centro UniversitÔrio de União da Vitória'),
(117013, 'https://ror.org/01j49yd81', 'en', 1, 'https://ror.org/01j49yd81 Korean Academy of Science and Technology ķ•œźµ­ź³¼ķ•™źø°ģˆ ķ•œė¦¼ģ›'),
(117014, 'https://ror.org/0053hg536', 'en', 1, 'https://ror.org/0053hg536 Arkana Laboratories'),
(117015, 'https://ror.org/05ck1h211', 'en', 1, 'https://ror.org/05ck1h211 Roosevelt Institute for American Studies'),
(117016, 'https://ror.org/03m732v54', 'id', 1, 'https://ror.org/03m732v54 STKIP Al Islam Tunas Bangsa Sekolah Tinggi Keguruan dan Ilmu Pendidikan Al Islam Tunas Bangsa'),
(117017, 'https://ror.org/05vx7wd63', 'en', 1, 'https://ror.org/05vx7wd63 University of Perpetual Help System DALTA'),
(117018, 'https://ror.org/04b4w6n09', 'es', 1, 'https://ror.org/04b4w6n09 Universidad de las Naciones'),
(117019, 'https://ror.org/059h1d250', 'en', 1, 'https://ror.org/059h1d250 Muljibhai Patel Urological Hospital'),
(117020, 'https://ror.org/05trey949', 'en', 1, 'https://ror.org/05trey949 Scottish Graduate School of Social Science'),
(117021, 'https://ror.org/00tzc5v60', 'en', 1, 'https://ror.org/00tzc5v60 Maikop State Technological University Майкопский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(117022, 'https://ror.org/01sng4k83', 'id', 1, 'https://ror.org/01sng4k83 Yayasan Ekosistem Lestari'),
(117023, 'https://ror.org/02sck9v68', 'en', 1, 'https://ror.org/02sck9v68 ISEAS - Yusof Ishak Institute Institute of Southeast Asian Studies ę±å—äŗžē ”ē©¶ę‰€'),
(117024, 'https://ror.org/01xv1wj76', 'en', 1, 'https://ror.org/01xv1wj76 Nuclear Waste Management Organization'),
(117025, 'https://ror.org/014rks409', 'en', 0, 'https://ror.org/014rks409 Finland University'),
(117026, 'https://ror.org/03tm4wz15', 'en', 1, 'https://ror.org/03tm4wz15 Yiyang Transportation Planning, Survey, and Design Institute Co., Ltd. Yiyang Transportation Planning, Survey, and Design Institute Co., Ltd. (China) ē›Šé˜³åø‚äŗ¤é€šč§„åˆ’å‹˜ęµ‹č®¾č®”é™¢ęœ‰é™å…¬åø'),
(117027, 'https://ror.org/01vqvef44', 'en', 1, 'https://ror.org/01vqvef44 Achievers University'),
(117028, 'https://ror.org/01dm99568', 'ro', 1, 'https://ror.org/01dm99568 Institutul Geologic al României'),
(117029, 'https://ror.org/01kk81m15', 'en', 1, 'https://ror.org/01kk81m15 Ministry of Health and Population ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ तऄा ą¤œą¤Øą¤øą¤‚ą¤–ą„ą¤Æą¤¾ ą¤®ą¤Øą„ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(117030, 'https://ror.org/00ecchs44', 'de', 1, 'https://ror.org/00ecchs44 Institut für Nanophotonik'),
(117031, 'https://ror.org/034jx4s30', 'en', 1, 'https://ror.org/034jx4s30 Fundación INFANT Infant Foundation'),
(117032, 'https://ror.org/04382kq29', 'es', 1, 'https://ror.org/04382kq29 Universidad Nacional Experimental de los Llanos Occidentales Ezequiel Zamora'),
(117033, 'https://ror.org/00c1h4g48', 'en', 1, 'https://ror.org/00c1h4g48 Rockwool Fonden Rockwool Foundation'),
(117034, 'https://ror.org/014pqsx51', 'es', 1, 'https://ror.org/014pqsx51 Universidad Privada de Tacna'),
(117035, 'https://ror.org/03ydjzz16', 'en', 1, 'https://ror.org/03ydjzz16 Office of Rural Health'),
(117036, 'https://ror.org/02tx34m84', 'en', 1, 'https://ror.org/02tx34m84 Nantong Science and Technology Bureau å—é€šåø‚ē§‘ęŠ€å±€'),
(117037, 'https://ror.org/01e154458', 'en', 1, 'https://ror.org/01e154458 Croatian National Bank Hrvatska Narodna Banka'),
(117038, 'https://ror.org/03sws5s65', 'en', 0, 'https://ror.org/03sws5s65 Ministry of SMEs and Startups ģ¤‘ģ†Œė²¤ģ²˜źø°ģ—…ė¶€'),
(117039, 'https://ror.org/03rv43109', 'en', 1, 'https://ror.org/03rv43109 mBrainTrain LLC mBrainTrain LLC (Serbia)'),
(117040, 'https://ror.org/01aetvt06', 'en', 1, 'https://ror.org/01aetvt06 Woolworths Group (Australia)'),
(117041, 'https://ror.org/02291hh73', 'en', 1, 'https://ror.org/02291hh73 National Supercomputing Center in Shenzhen å›½å®¶č¶…ēŗ§č®”ē®—ę·±åœ³äø­åæƒ'),
(117042, 'https://ror.org/01e3jga91', 'no_lang_code', 1, 'https://ror.org/01e3jga91 Exelixis (United States)'),
(117043, 'https://ror.org/05a2hgt53', 'no_lang_code', 1, 'https://ror.org/05a2hgt53 Materia Nova'),
(117044, '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'),
(117045, 'https://ror.org/01fva0642', 'en', 1, 'https://ror.org/01fva0642 University of Frontier Technology, Bangladesh ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦«ą§ą¦°ą¦Øą§ą¦Ÿą¦æą¦Æą¦¼ą¦¾ą¦° ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ, বাংলাদেশ'),
(117046, 'https://ror.org/04xgxnd16', 'en', 0, 'https://ror.org/04xgxnd16 International Maritime College Oman ŁƒŁ„ŁŠŲ© عمان Ų§Ł„ŲØŲ­Ų±ŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(117047, 'https://ror.org/05pqgjz53', 'es', 1, 'https://ror.org/05pqgjz53 Asocaicón de Astrónomos Aficionados de la Universidad Complutense de Madrid'),
(117048, 'https://ror.org/04p66x465', 'en', 1, 'https://ror.org/04p66x465 Surman College of Science and Technology ŁƒŁ„ŁŠŲ© صرمان Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(117049, 'https://ror.org/05fnn5020', 'en', 1, 'https://ror.org/05fnn5020 Shreemati Nathibai Damodar Thackersey Women''s University ą¤¶ą„ą¤°ą„€ą¤®ą¤¤ą„€ ą¤Øą¤¾ą¤„ą„€ą¤¬ą¤¾ą¤ˆ ą¤¦ą¤¾ą¤®ą„‹ą¤¦ą¤° ą¤ ą¤¾ą¤•ą¤°ą¤øą„€ महिला ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(117050, 'https://ror.org/028s4pj54', 'es', 1, 'https://ror.org/028s4pj54 Facultad de TeologĆ­a San Isidoro de Sevilla San Isidoro School of Theology of Seville'),
(117051, 'https://ror.org/04d5ccb36', 'no_lang_code', 1, 'https://ror.org/04d5ccb36 INA INA (Croatia) INA d.d. Industrija nafte d.d.'),
(117052, 'https://ror.org/03j8kgx82', 'id', 1, 'https://ror.org/03j8kgx82 Prof. Dr. Margono Soekarjo Regional Public Hospital RSUD Prof. Dr. Margono Soekarjo'),
(117053, 'https://ror.org/04g4wrc61', 'en', 1, 'https://ror.org/04g4wrc61 The Justice Management Institute'),
(117054, 'https://ror.org/04tj63d06', 'en', 1, 'https://ror.org/04tj63d06 North Carolina State University Universidad Estatal de Carolina del Norte UniversitĆ© d''Ɖtat de caroline du nord'),
(117055, 'https://ror.org/03ynjgs63', 'no_lang_code', 1, 'https://ror.org/03ynjgs63 Elecnor Elecnor (Spain)'),
(117056, 'https://ror.org/02vyf1d37', 'en', 1, 'https://ror.org/02vyf1d37 Tri-Chandra Multiple Campus ą¤¤ą„ą¤°ą¤æ-ą¤šą¤Øą„ą¤¦ą„ą¤° ą¤¬ą¤¹ą„ą¤®ą„ą¤–ą„€ ą¤•ą„ą¤Æą¤¾ą¤®ą„ą¤Ŗą¤ø'),
(117057, 'https://ror.org/02qmesy92', 'id', 1, 'https://ror.org/02qmesy92 STAI Walisembilan Semarang'),
(117058, 'https://ror.org/02cwpj576', 'no_lang_code', 1, 'https://ror.org/02cwpj576 FIMAC S.p.A. FIMAC S.p.A. (Italy)'),
(117059, 'https://ror.org/05tcsqz68', 'en', 1, 'https://ror.org/05tcsqz68 FIND'),
(117060, 'https://ror.org/0052svj16', 'no_lang_code', 1, 'https://ror.org/0052svj16 Abbott (United States) Laboratoires Abbott'),
(117061, 'https://ror.org/020rmtx45', 'no_lang_code', 1, 'https://ror.org/020rmtx45 Envirogen Envirogen (United States) Envirogen Technologies'),
(117062, 'https://ror.org/03dez2856', 'en', 1, 'https://ror.org/03dez2856 General Energy Institute of National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š·Š°Š³Š°Š»ŃŒŠ½Š¾Ń— енергетики ŠŠŠ України Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠžŠ±Ń‰ŠµŠ¹ Энергетики ŠŠŠ Украины'),
(117063, 'https://ror.org/01d5jce07', 'en', 1, 'https://ror.org/01d5jce07 University of Maribor Univerza v Mariboru'),
(117064, 'https://ror.org/03c1c5b19', 'en', 1, 'https://ror.org/03c1c5b19 Geodetic Facility for the Advancement of Geoscience'),
(117065, 'https://ror.org/02vymnc26', 'no_lang_code', 1, 'https://ror.org/02vymnc26 Sanitas Sanitas (Spain) Sanitas Sociedad Anonima de Seguros'),
(117066, 'https://ror.org/03dgwx119', 'en', 1, 'https://ror.org/03dgwx119 Azerbaijan National Academy of Sciences Ganja Branch Azərbaycan Milli Elmlər Akademiyası Gəncə Bƶlməsi ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°ŃƒŠŗ АзербайГжана Š“ŃŠ½Š“Š¶ŠøŠ½ŃŠŗŠ¾Šµ ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ'),
(117067, 'https://ror.org/03y5ndk86', 'no_lang_code', 1, 'https://ror.org/03y5ndk86 Western EcoSystems Technology (United States)'),
(117068, 'https://ror.org/048xmw175', 'no_lang_code', 1, 'https://ror.org/048xmw175 Qiaqia Food (China) Qiaqia Food'),
(117069, 'https://ror.org/02h1b1x27', 'en', 1, 'https://ror.org/02h1b1x27 Universidad de Los Andes University of the Andes'),
(117070, 'https://ror.org/04m1bn868', 'de', 1, 'https://ror.org/04m1bn868 Conseil suisse de la science Consiglio svizzero della scienza Schweizerischer Wissenschaftsrat Swiss Science Council'),
(117071, 'https://ror.org/03jsmws86', 'en', 1, 'https://ror.org/03jsmws86 College of Education, Akwanga'),
(117072, 'https://ror.org/0498zzm94', 'en', 1, 'https://ror.org/0498zzm94 Islamic University Babylon Campus الجامعة Ų§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠŲ© في ŲØŲ§ŲØŁ„'),
(117073, 'https://ror.org/02s553c57', 'fr', 1, 'https://ror.org/02s553c57 Institut Protestant de ThƩologie'),
(117074, 'https://ror.org/03zzszc87', 'no_lang_code', 1, 'https://ror.org/03zzszc87 EduHeart Knowledge Network and Publishing EduHeart Knowledge Network and Publishing (Philippines)'),
(117075, 'https://ror.org/058qbkc09', 'eu', 1, 'https://ror.org/058qbkc09 Basque Parliament Eusko Legebiltzarra Parlament Basc Parlamento Vasco'),
(117076, 'https://ror.org/035dkdb55', 'en', 1, 'https://ror.org/035dkdb55 The Alan Turing Institute'),
(117077, 'https://ror.org/055rz8d64', 'en', 1, 'https://ror.org/055rz8d64 Universite Mohamed Boudiaf - M''sila University Mohamed Boudiaf of M''sila Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ بوضياف Ł…Ų³ŁŠŁ„Ų©'),
(117078, 'https://ror.org/00hpqmv06', 'en', 1, 'https://ror.org/00hpqmv06 Ministry of Health'),
(117079, 'https://ror.org/05bnh6r87', 'en', 1, 'https://ror.org/05bnh6r87 Cornell University Universidad Cornell'),
(117080, 'https://ror.org/01hz4v948', 'en', 1, 'https://ror.org/01hz4v948 National Institute of Technology Karnataka ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®°ąÆą®Øą®¾ą®Ÿą®•ą®®ąÆ ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²•ą²°ą³ą²Øą²¾ą²Ÿą²•'),
(117081, 'https://ror.org/0084bwk08', 'en', 1, 'https://ror.org/0084bwk08 CureScience'),
(117082, 'https://ror.org/05grahd76', 'de', 1, 'https://ror.org/05grahd76 Charlotte Fresenius Hochschule Charlotte Fresenius University University of Psychology'),
(117083, 'https://ror.org/04dyeh227', 'en', 1, 'https://ror.org/04dyeh227 Bordeaux Imaging Center'),
(117084, 'https://ror.org/04qh1cn25', 'en', 1, 'https://ror.org/04qh1cn25 Naples Botanical Garden'),
(117085, 'https://ror.org/02kr42612', 'no_lang_code', 1, 'https://ror.org/02kr42612 Nvidia (United Kingdom)'),
(117086, 'https://ror.org/02nfy5246', 'en', 0, 'https://ror.org/02nfy5246 Ministry of Science and Technology Thailand ąøąø£ąø°ąø—ąø£ąø§ąø‡ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œą¹ąø„ąø°ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµ'),
(117087, 'https://ror.org/02kgve346', 'en', 1, 'https://ror.org/02kgve346 NOAA Oceanic and Atmospheric Research'),
(117088, 'https://ror.org/05satf871', 'es', 1, 'https://ror.org/05satf871 Hospital San Juan de Dios del Aljarafe'),
(117089, 'https://ror.org/04883df86', 'no_lang_code', 1, 'https://ror.org/04883df86 Global University Systems'),
(117090, 'https://ror.org/02nwvxz07', 'fr', 1, 'https://ror.org/02nwvxz07 Ɖcole nationale des ponts et chaussĆ©es'),
(117091, 'https://ror.org/02263ky35', 'pt', 1, 'https://ror.org/02263ky35 Federal University of Amazonas Universidade Federal do Amazonas'),
(117092, 'https://ror.org/00n893e13', 'no_lang_code', 1, 'https://ror.org/00n893e13 Environmental Institute Environmental Institute, s.r.o.'),
(117093, 'https://ror.org/00cvwzf88', 'es', 1, 'https://ror.org/00cvwzf88 Tecsup Tecsup Institute'),
(117094, 'https://ror.org/0444ywk33', 'en', 1, 'https://ror.org/0444ywk33 Noida Institute of Engineering and Technology Pharmacy Institute'),
(117095, 'https://ror.org/01dktcn28', 'en', 1, 'https://ror.org/01dktcn28 Scholarly Publishing and Academic Resources Coalition'),
(117096, 'https://ror.org/02yq4ac41', 'en', 1, 'https://ror.org/02yq4ac41 Wuxi University 无锔学院'),
(117097, 'https://ror.org/02ha38c24', 'en', 1, 'https://ror.org/02ha38c24 San Joaquin General Hospital'),
(117098, 'https://ror.org/04r659a56', 'en', 1, 'https://ror.org/04r659a56 University of New England'),
(117099, 'https://ror.org/05twhbr06', 'en', 1, 'https://ror.org/05twhbr06 Neurinfo'),
(117100, 'https://ror.org/00w7bw158', 'tr', 1, 'https://ror.org/00w7bw158 Gülhane Eğitim ve Araştırma Hastanesi Gülhane Training and Research Hospital'),
(117101, 'https://ror.org/00ndxem43', 'en', 1, 'https://ror.org/00ndxem43 California Department of General Services'),
(117102, 'https://ror.org/01dng5s88', 'en', 1, 'https://ror.org/01dng5s88 Creek General Hospital'),
(117103, 'https://ror.org/045828r76', 'en', 1, 'https://ror.org/045828r76 East Bay Municipal Utility District'),
(117104, 'https://ror.org/03ve82t81', 'en', 1, 'https://ror.org/03ve82t81 Gharjistan University دانؓگاه غرجستان'),
(117105, 'https://ror.org/00r6fph53', 'en', 1, 'https://ror.org/00r6fph53 Liwa University Ų¬Ų§Ł…Ų¹Ų© Ł„ŁŠŁˆŲ§'),
(117106, 'https://ror.org/05jvev282', 'en', 1, 'https://ror.org/05jvev282 Ethiopian Wildlife Conservation Authority'),
(117107, 'https://ror.org/002n09z45', 'en', 1, 'https://ror.org/002n09z45 SIB Swiss Institute of Bioinformatics'),
(117108, 'https://ror.org/00xt72h88', 'es', 1, 'https://ror.org/00xt72h88 Centre for Agricultural Research and Training Centro de Investigación y Formación Agrarias'),
(117109, 'https://ror.org/01tc2d264', 'fr', 1, 'https://ror.org/01tc2d264 CHU de Limoges Centre Hospitalier Universitaire de Limoges'),
(117110, 'https://ror.org/0281jqk77', 'en', 1, 'https://ror.org/0281jqk77 Nuffield Foundation'),
(117111, 'https://ror.org/0054avq17', 'en', 1, 'https://ror.org/0054avq17 Dayananda Sagar Business Academy'),
(117112, 'https://ror.org/02jk7rz94', 'hr', 1, 'https://ror.org/02jk7rz94 Centar za politoloŔka istraživanja d.o.o Center for Political Research LLC'),
(117113, 'https://ror.org/05mpz8404', 'no_lang_code', 1, 'https://ror.org/05mpz8404 Baden-Württemberg: Connected Bwcon (Germany)'),
(117114, 'https://ror.org/04nwdb131', 'en', 1, 'https://ror.org/04nwdb131 Association of Anesthesiologists of Uganda'),
(117115, 'https://ror.org/00vss8315', 'id', 1, 'https://ror.org/00vss8315 WISE Indonesian Education WISE Pendidikan Indonesia'),
(117116, 'https://ror.org/003zecf96', 'es', 1, 'https://ror.org/003zecf96 Hospital Universitario San AgustĆ­n'),
(117117, 'https://ror.org/0205hma41', 'no_lang_code', 1, 'https://ror.org/0205hma41 Datactivist Datactivist (France)'),
(117118, 'https://ror.org/03v85ar63', 'es', 1, 'https://ror.org/03v85ar63 Central University Hospital of Asturias Hospital Universitario Central de Asturias'),
(117119, 'https://ror.org/03a79pm79', 'en', 1, 'https://ror.org/03a79pm79 OpenAQ'),
(117120, 'https://ror.org/02d814r78', 'no_lang_code', 1, 'https://ror.org/02d814r78 Huntsman (United States)'),
(117121, 'https://ror.org/03nc87k10', 'no_lang_code', 1, 'https://ror.org/03nc87k10 Dataciders InMediasP Dataciders InMediasP (Germany) Dataciders InMediasP GmbH'),
(117122, 'https://ror.org/04ydk3604', 'hr', 1, 'https://ror.org/04ydk3604 Academy of Arts and Culture in Osijek Akademija za umjetnost i kulturu u Osijeku'),
(117123, 'https://ror.org/01qv3r395', 'es', 1, 'https://ror.org/01qv3r395 Eastern Malaga-Axarquia Health Management Area Área de Gestión Sanitaria Este de MÔlaga-Axarquía'),
(117124, 'https://ror.org/013h6a491', 'fr', 1, 'https://ror.org/013h6a491 UnitƩ Transdisciplinaire d''Orientation et de Prospective des Impacts environnementaux de la recherche en IngƩnierie'),
(117125, 'https://ror.org/04sssf964', 'en', 1, 'https://ror.org/04sssf964 Swiss International University'),
(117126, 'https://ror.org/05r70jw08', 'uk', 1, 'https://ror.org/05r70jw08 State Enterprise "State Research Institute of Building Constructions"'),
(117127, 'https://ror.org/05maffv43', 'es', 1, 'https://ror.org/05maffv43 Fundación Sueño Vigilia Colombiana'),
(117128, 'https://ror.org/00hn9tz80', 'en', 1, 'https://ror.org/00hn9tz80 Android Health Clinic'),
(117129, 'https://ror.org/01hy5r632', 'en', 1, 'https://ror.org/01hy5r632 The Higher School of Management and Digital Economy Ɖcole SupĆ©rieure de Gestion et d’Économie NumĆ©rique'),
(117130, 'https://ror.org/05ty9g711', 'tr', 1, 'https://ror.org/05ty9g711 Ministry of Environment, Urbanization and Climate Change Turkey Türkiye Cumhuriyeti Ƈevre, Şehircilik ve İklim Değişikliği Bakanlığı Ƈevre, Şehircilik ve İklim Değişikliği Bakanlığı'),
(117131, 'https://ror.org/058kytx66', 'no_lang_code', 1, 'https://ror.org/058kytx66 Antigen Scientific and Production Enterprise LLP Antigen Scientific and Production Enterprise LLP (Kazakhstan)'),
(117132, 'https://ror.org/04z3hfm31', 'en', 1, 'https://ror.org/04z3hfm31 NPCG National Post Graduate College'),
(117133, 'https://ror.org/04qqcs583', 'en', 1, 'https://ror.org/04qqcs583 Bệnh viện nhi Trung ʰʔng Vietnam National Children''s Hospital'),
(117134, 'https://ror.org/058xt8y69', 'en', 1, 'https://ror.org/058xt8y69 Trivenidevi Bhalotia College'),
(117135, 'https://ror.org/04zh31w10', 'en', 1, 'https://ror.org/04zh31w10 Fondation internationale de l''ostƩoporose International Osteoporosis Foundation'),
(117136, 'https://ror.org/02wk2vx54', 'en', 1, 'https://ror.org/02wk2vx54 Ss. Cyril and Methodius University in Skopje Универзитет ā€žŠ”Š². ŠšŠøŃ€ŠøŠ» Šø ŠœŠµŃ‚Š¾Š“ŠøŃ˜ā€œ во Дкопје'),
(117137, 'https://ror.org/00865g357', 'en', 1, 'https://ror.org/00865g357 Islamic Azad University Gonabad دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گناباد'),
(117138, 'https://ror.org/033f7da12', 'en', 1, 'https://ror.org/033f7da12 Dayananda Sagar University'),
(117139, 'https://ror.org/00er01949', 'es', 1, 'https://ror.org/00er01949 Fundación Universitaria San Mateo'),
(117140, 'https://ror.org/04mc82d47', 'en', 1, 'https://ror.org/04mc82d47 Scientific Committee On Oceanic Research'),
(117141, 'https://ror.org/00hjz7x27', 'en', 1, 'https://ror.org/00hjz7x27 Georgetown University Medical Center'),
(117142, 'https://ror.org/03xdrbh54', 'no_lang_code', 1, 'https://ror.org/03xdrbh54 Harmonic Harmonic (United States)'),
(117143, 'https://ror.org/0381mtn47', 'en', 1, 'https://ror.org/0381mtn47 The Ada Lovelace Institute'),
(117144, 'https://ror.org/00f3b3k94', 'hr', 1, 'https://ror.org/00f3b3k94 Institut za istraživanje i razvoj održivih eko sustava Institute for Research and Development of Sustainable Ecosystems'),
(117145, 'https://ror.org/00phcce04', 'vi', 1, 'https://ror.org/00phcce04 Benh Vien Phuc Hoi Chuic Nung Ha Noi Rehabilitation Hospital'),
(117146, 'https://ror.org/01q7qpe08', 'en', 1, 'https://ror.org/01q7qpe08 New Zealand Clinical Research'),
(117147, 'https://ror.org/048rczr65', 'en', 1, 'https://ror.org/048rczr65 Noida Institute of Engineering and Technology'),
(117148, 'https://ror.org/02db0kh50', 'en', 1, 'https://ror.org/02db0kh50 Istituto di Ricerca sulle Acque Water Research Institute'),
(117149, 'https://ror.org/016dvap51', 'en', 1, 'https://ror.org/016dvap51 Sri Ramakrishna College of Arts and Science ą¦¶ą§ą¦°ą§€ ą¦°ą¦¾ą¦®ą¦•ą§ƒą¦·ą§ą¦£ কলা ও ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦•ą¦²ą§‡ą¦œ ą°¶ą±ą°°ą±€ ą°°ą°¾ą°®ą°•ą±ƒą°·ą±ą°£ ą°•ą°¾ą°²ą±‡ą°œą± ą°†ą°«ą± ą°†ą°°ą±ą°Ÿą±ą°øą± ą°…ą°‚ą°”ą± ą°øą±ˆą°Øą±ą°øą±'),
(117150, 'https://ror.org/05mz3xc76', 'en', 1, 'https://ror.org/05mz3xc76 KIRND Institute of Research and Development Pvt Ltd'),
(117151, 'https://ror.org/00vdhyk55', 'fr', 1, 'https://ror.org/00vdhyk55 Institut de sciences exactes et appliquƩes Institute of Pure and Applied Sciences'),
(117152, 'https://ror.org/0274qx383', 'fr', 1, 'https://ror.org/0274qx383 FacultƩs Loyola Paris'),
(117153, 'https://ror.org/03x5g5f45', 'en', 1, 'https://ror.org/03x5g5f45 National School of Public Policy Ł‚ŁˆŁ…ŪŒ Ų³Ś©ŁˆŁ„ ŲØŲ±Ų§Ų¦Ū’Ų¹ŁˆŲ§Ł…ŪŒ Ł¾Ų§Ł„ŪŒŲ³ŪŒ'),
(117154, 'https://ror.org/03v802937', 'pt', 1, 'https://ror.org/03v802937 VIVA Instituto Verde Azul VIVA Verde Azul Institute'),
(117155, 'https://ror.org/01g0wme11', 'hr', 1, 'https://ror.org/01g0wme11 Ekonomski fakultet - Zagreb Faculty of Economics & Business, University of Zagreb'),
(117156, 'https://ror.org/01fxgzs25', 'id', 1, 'https://ror.org/01fxgzs25 Indonesian Railway Polytechnic Politeknik Perkeretaapian Indonesia'),
(117157, 'https://ror.org/0397gqg43', 'en', 1, 'https://ror.org/0397gqg43 Alef Trust'),
(117158, 'https://ror.org/0598drt81', 'hr', 1, 'https://ror.org/0598drt81 Academy of Medical Sciences of Croatia Akademija medicinskih znanosti Hrvatske'),
(117159, 'https://ror.org/05qec5a53', 'fr', 1, 'https://ror.org/05qec5a53 Centre Hospitalier Universitaire de Rennes Rennes University Hospital'),
(117160, 'https://ror.org/01wvg5605', 'fr', 1, 'https://ror.org/01wvg5605 Maladies Rares: GƩnƩtique et MƩtabolisme Rare Diseases: Genetics and Metabolism'),
(117161, 'https://ror.org/03cpw2v62', 'fr', 1, 'https://ror.org/03cpw2v62 GRHAPES – Groupe de recherche sur le handicap, l''accessibilitĆ©, les pratiques Ć©ducatives et scolaires (UR 7287)'),
(117162, 'https://ror.org/05sqaff46', 'es', 1, 'https://ror.org/05sqaff46 Hospital San AgustĆ­n'),
(117163, 'https://ror.org/04qscbg47', 'en', 1, 'https://ror.org/04qscbg47 Cornell Tech'),
(117164, 'https://ror.org/00nt41z93', 'en', 1, 'https://ror.org/00nt41z93 Universidade de Aveiro University of Aveiro'),
(117165, 'https://ror.org/045jdd948', 'en', 1, 'https://ror.org/045jdd948 Fertility & Lifespan Medical Institute'),
(117166, 'https://ror.org/045yq1w74', 'en', 1, 'https://ror.org/045yq1w74 Banco do Brasil Bank of Brazil'),
(117167, 'https://ror.org/01xmrwb67', 'en', 1, 'https://ror.org/01xmrwb67 Lagos State University of Science and Technology'),
(117168, 'https://ror.org/05sw4wc49', 'en', 1, 'https://ror.org/05sw4wc49 SveučiliŔte Josipa Jurja Strossmayera u Osijeku University of Osijek'),
(117169, 'https://ror.org/00ctmea67', 'no_lang_code', 1, 'https://ror.org/00ctmea67 Progress (Ireland)'),
(117170, 'https://ror.org/05t3h0r03', 'pt', 1, 'https://ror.org/05t3h0r03 Centro UniversitƔrio FUNORTE'),
(117171, 'https://ror.org/00dnave42', 'en', 1, 'https://ror.org/00dnave42 Iowa State University Digital Press'),
(117172, 'https://ror.org/011jf1v03', 'id', 1, 'https://ror.org/011jf1v03 Saint James Catholic College of Merauke Sekolah Tinggi Katolik Santo Yakobus Merauke'),
(117173, 'https://ror.org/02jygec53', 'no_lang_code', 1, 'https://ror.org/02jygec53 Deimos Deimos (Spain)'),
(117174, 'https://ror.org/03qbg0c93', 'en', 1, 'https://ror.org/03qbg0c93 Animal Genetics and Breeding Unit'),
(117175, 'https://ror.org/0507hag42', 'fr', 1, 'https://ror.org/0507hag42 Higher School of Computer Science of Sidi Bel Abbes Ɖcole SupĆ©rieure en Informatique de Sidi Bel Abbes المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ لل؄علام Ų§Ł„Ų¢Ł„ŁŠ بسيدي بلعباس'),
(117176, 'https://ror.org/05528ey35', 'en', 1, 'https://ror.org/05528ey35 Instruct-ERIC'),
(117177, 'https://ror.org/00xkn8g70', 'en', 1, 'https://ror.org/00xkn8g70 Maniben Nanavati Women''s College'),
(117178, 'https://ror.org/01nmh5h43', 'en', 1, 'https://ror.org/01nmh5h43 Federal Polytechnic, Ile-Oluji, Ondo State'),
(117179, 'https://ror.org/0139wb764', 'hr', 1, 'https://ror.org/0139wb764 Akademija tehničkih znanosti Hrvatske Croatian Academy of Engineering'),
(117180, 'https://ror.org/0428rfx50', 'en', 1, 'https://ror.org/0428rfx50 Bridgetown International University Bridgetown International University School of Medicine'),
(117181, 'https://ror.org/05x6psc41', 'en', 1, 'https://ror.org/05x6psc41 American University of Beirut – Mediterraneo'),
(117182, 'https://ror.org/01r062739', 'en', 1, 'https://ror.org/01r062739 Blua Sanitas Valdebebas Hospital Hospital Blua Sanitas Valdebebas'),
(117183, 'https://ror.org/00sbxjy31', 'en', 1, 'https://ror.org/00sbxjy31 Textile Engineering College, Zorargonj, Chittagong ą¦Ÿą§‡ą¦•ą§ą¦øą¦Ÿą¦¾ą¦‡ą¦² ą¦‡ą¦žą§ą¦œą¦æą¦Øą¦æą¦Æą¦¼ą¦¾ą¦°ą¦æą¦‚ ą¦•ą¦²ą§‡ą¦œ, ą¦œą§‹ą¦°ą¦¾ą¦°ą¦—ą¦žą§ą¦œ, ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦®'),
(117184, 'https://ror.org/042pbz202', 'en', 1, 'https://ror.org/042pbz202 Thailand Institute of Scientific and Technological Research'),
(117185, 'https://ror.org/01jk10450', 'en', 1, 'https://ror.org/01jk10450 Phoenicia University'),
(117186, 'https://ror.org/04xbndy13', 'no_lang_code', 1, 'https://ror.org/04xbndy13 Beijing Kanova Biopharmaceutical, Co. Ltd Beijing Kanova Biopharmaceutical, Co. Ltd (China) ęµ™ę±Ÿé‘«åŗ·åˆē”Ÿē‰©åŒ»čÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(117187, 'https://ror.org/00a9jq809', 'en', 1, 'https://ror.org/00a9jq809 Marine Biology Research Centre'),
(117188, 'https://ror.org/030847t23', 'ms', 0, 'https://ror.org/030847t23 Universiti Teknologi MARA System'),
(117189, 'https://ror.org/045yn2z02', 'en', 1, 'https://ror.org/045yn2z02 Bhaktapur Multiple Campus'),
(117190, 'https://ror.org/01qh4r857', 'es', 1, 'https://ror.org/01qh4r857 Sociedad de CirugĆ­a del Uruguay Uruguayan Surgery Society'),
(117191, 'https://ror.org/03rm2tv94', 'en', 1, 'https://ror.org/03rm2tv94 Prasad Netralaya Superspecialty Eye Hospital'),
(117192, 'https://ror.org/05c4k4158', 'sv', 1, 'https://ror.org/05c4k4158 Svensk sjukskƶterskefƶrening Swedish Society of Nursing'),
(117193, 'https://ror.org/05msy9z54', 'pt', 1, 'https://ror.org/05msy9z54 Federal University of Pelotas Universidade Federal de Pelotas'),
(117194, 'https://ror.org/017yq1n41', 'en', 1, 'https://ror.org/017yq1n41 The Uniprot Consortium'),
(117195, 'https://ror.org/01sh68675', 'no_lang_code', 1, 'https://ror.org/01sh68675 Exail Exail (France)'),
(117196, 'https://ror.org/03wz5pw26', 'en', 1, 'https://ror.org/03wz5pw26 Libertas International University Libertas međunarodno sveučiliÅ”te'),
(117197, 'https://ror.org/05k4nys47', 'pt', 1, 'https://ror.org/05k4nys47 BASA Banco da AmazƓnia'),
(117198, 'https://ror.org/00t354q81', 'en', 1, 'https://ror.org/00t354q81 Association of Zoos and Aquariums'),
(117199, 'https://ror.org/01bstve36', 'en', 1, 'https://ror.org/01bstve36 Bangladesh Space Research and Remote Sensing Organization Bangladesh mohakash gobeshona o door onudhabon protishthan'),
(117200, 'https://ror.org/04qbvap43', 'en', 1, 'https://ror.org/04qbvap43 Future Earth'),
(117201, 'https://ror.org/04mjtdf79', 'id', 1, 'https://ror.org/04mjtdf79 Universitas Riau Indonesia'),
(117202, 'https://ror.org/00xhkbc10', 'no_lang_code', 1, 'https://ror.org/00xhkbc10 Frontiers Media SA Frontiers Media SA (Switzerland)'),
(117203, 'https://ror.org/01n14yn69', 'en', 1, 'https://ror.org/01n14yn69 Shanghai Qu Zhi Institute äøŠęµ·ęœŸę™ŗē ”ē©¶é™¢'),
(117204, 'https://ror.org/02qnpz304', 'en', 1, 'https://ror.org/02qnpz304 Aanischaaukamikw Cree Cultural Institute Institut culturel cri d''Aanischaaukamikw'),
(117205, 'https://ror.org/03z0qyb97', 'es', 1, 'https://ror.org/03z0qyb97 Sociedad Venezolana de OncologĆ­a'),
(117206, 'https://ror.org/03fw0nn55', 'id', 1, 'https://ror.org/03fw0nn55 Universitas Persatuan Islam'),
(117207, 'https://ror.org/0525bj441', 'no_lang_code', 1, 'https://ror.org/0525bj441 Abbott (Brazil) Abbott Abbott Laboratorios do Brasil Ltda'),
(117208, 'https://ror.org/01mdmjq65', 'fr', 1, 'https://ror.org/01mdmjq65 Agence Nationale de la MƩtƩorologie du Mali'),
(117209, 'https://ror.org/046rm7j60', 'en', 1, 'https://ror.org/046rm7j60 Universidad de California en Los Ɓngeles University of California, Los Angeles UniversitƩ de Californie Ơ Los Angeles'),
(117210, 'https://ror.org/01mcm8749', 'en', 1, 'https://ror.org/01mcm8749 International Bureau of Legal Metrology'),
(117211, 'https://ror.org/00tc4yk88', 'sq', 1, 'https://ror.org/00tc4yk88 Spitali Rajonal Memorial, Fier'),
(117212, 'https://ror.org/04qt95144', 'en', 1, 'https://ror.org/04qt95144 Rathinam College of Arts & Science'),
(117213, 'https://ror.org/00d0r9b26', 'hu', 1, 'https://ror.org/00d0r9b26 Heim PÔl National Pediatric Institute Heim PÔl OrszÔgos GyermekgyógyÔszati Intézet'),
(117214, 'https://ror.org/01vpeym60', 'no_lang_code', 1, 'https://ror.org/01vpeym60 Apple (United Kingdom)'),
(117215, 'https://ror.org/020ye1821', 'no_lang_code', 1, 'https://ror.org/020ye1821 Meta (United Kingdom)'),
(117216, 'https://ror.org/020tvxc43', 'en', 1, 'https://ror.org/020tvxc43 Citizens in Power'),
(117217, 'https://ror.org/02wccra50', 'en', 0, 'https://ror.org/02wccra50 Christchurch Clinical Studies Trust'),
(117218, 'https://ror.org/02zw9dz11', 'en', 1, 'https://ror.org/02zw9dz11 Ernest Cook University'),
(117219, 'https://ror.org/05gttbr75', 'de', 1, 'https://ror.org/05gttbr75 Institut für Hochschulforschung'),
(117220, 'https://ror.org/03gck1z22', 'tr', 1, 'https://ror.org/03gck1z22 Kastamonu Measurement and Evaluation Center Kastamonu ƖlƧme Değerlendirme Merkezi'),
(117221, 'https://ror.org/05w4mb976', 'en', 1, 'https://ror.org/05w4mb976 Rathinam College of Physiotherapy'),
(117222, 'https://ror.org/012vbss82', 'no_lang_code', 1, 'https://ror.org/012vbss82 Prime Intellect Prime Intellect (United States) Prime Intellect, Inc.'),
(117223, 'https://ror.org/00jga9g46', 'tr', 1, 'https://ror.org/00jga9g46 Mi̇lli̇ Eği̇ti̇m Bakanliği'),
(117224, 'https://ror.org/03b5xy079', 'hr', 1, 'https://ror.org/03b5xy079 Croatian State Archives Hrvatski državni arhiv'),
(117225, 'https://ror.org/046ffzj20', 'es', 1, 'https://ror.org/046ffzj20 Universidad de Cantabria University of Cantabria'),
(117226, 'https://ror.org/04awze035', 'en', 0, 'https://ror.org/04awze035 Ronin Institute'),
(117227, 'https://ror.org/03qjge715', 'no_lang_code', 1, 'https://ror.org/03qjge715 Graphwise Graphwise (Bulgaria)'),
(117228, 'https://ror.org/00k642b80', 'no_lang_code', 1, 'https://ror.org/00k642b80 Alibaba Group Alibaba Group (China) é˜æé‡Œå·“å·“é›†å›¢ęŽ§č‚”ęœ‰é™å…¬åø'),
(117229, 'https://ror.org/03698ym41', 'es', 1, 'https://ror.org/03698ym41 Universidad Americana de Europa'),
(117230, 'https://ror.org/02c45x008', 'en', 1, 'https://ror.org/02c45x008 Xinjiang Institute of Technology 新疆理巄学院'),
(117231, 'https://ror.org/02w42ss30', 'en', 1, 'https://ror.org/02w42ss30 Budapest University of Technology and Economics Budapesti Műszaki és GazdasÔgtudomÔnyi Egyetem'),
(117232, 'https://ror.org/00mm6gw69', 'pt', 1, 'https://ror.org/00mm6gw69 Faculdade de SaĆŗde de Paulista'),
(117233, 'https://ror.org/040gr8e71', 'es', 1, 'https://ror.org/040gr8e71 Painfree Painfree SAS'),
(117234, 'https://ror.org/02y384f44', 'es', 1, 'https://ror.org/02y384f44 IHCantabria - Instituto de HidrƔulica Ambiental de la Universidad de Cantabria'),
(117235, 'https://ror.org/03pptx217', 'hr', 1, 'https://ror.org/03pptx217 Academy of Fine Arts in Zagreb Akademija likovnih umjetnosti u Zagrebu'),
(117236, 'https://ror.org/022jf5r04', 'hr', 0, 'https://ror.org/022jf5r04 Duhanski institut Zagreb Tobacco Institute Zagreb Inc.'),
(117237, 'https://ror.org/04kmyv004', 'en', 1, 'https://ror.org/04kmyv004 Dangote Cement'),
(117238, 'https://ror.org/059j85x45', 'en', 1, 'https://ror.org/059j85x45 Irish Defence Forces Ɠglaigh na hƉireann'),
(117239, 'https://ror.org/00h3e6k60', 'en', 1, 'https://ror.org/00h3e6k60 Sudanese Consortium for Surgical Development'),
(117240, 'https://ror.org/03rcf8m81', 'tr', 1, 'https://ror.org/03rcf8m81 Izmir Sehir Hastanesi İzmir City Hospital İzmir Şehir Hastanesi'),
(117241, 'https://ror.org/01nnpkx41', 'en', 1, 'https://ror.org/01nnpkx41 Integrative Centers for Science and Medicine'),
(117242, 'https://ror.org/04pwa0879', 'fr', 1, 'https://ror.org/04pwa0879 UniversitƩ Officielle de Ruwenzori'),
(117243, 'https://ror.org/01ye9d912', 'en', 1, 'https://ror.org/01ye9d912 Asian Growth Research Institute å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚øć‚¢ęˆé•·ē ”ē©¶ę‰€'),
(117244, 'https://ror.org/05c6hwg81', 'pt', 1, 'https://ror.org/05c6hwg81 Getúlio Vargas Teaching Hospital Hospital UniversitÔrio Getúlio Vargas'),
(117245, 'https://ror.org/01jr9qt48', 'id', 1, 'https://ror.org/01jr9qt48 Health Polytechnic Jakarta I Poltekkes Kemenkes Jakarta I'),
(117246, 'https://ror.org/0436skn81', 'id', 1, 'https://ror.org/0436skn81 Universitas Adiwangsa Jambi'),
(117247, 'https://ror.org/02rh2p682', 'en', 1, 'https://ror.org/02rh2p682 Mary Matha Arts and Science College'),
(117248, 'https://ror.org/01pc8e529', 'en', 1, 'https://ror.org/01pc8e529 Universidad Estatal mĆ©dico-farmacĆ©utica de Zaporizhia Universite mĆ©dico-pharmaceutique d''Ɖtat de Zaporijia Zaporizhzhia State Medical and Pharmaceutical University Запорожки Š“ŃŠŃ€Š¶Š°Š²ŠµŠ½ меГицински Šø фармацевтичен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Гержавний меГико-фармацевтичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ų¬Ų§Ł…Ų¹Ų© زابوروجيا Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų­ŁƒŁˆŁ…ŁŠŲ© ą¤œą¤¼ą¤¾ą¤Ŗą„‹ą¤°ą„€ą¤œą„ą¤œą„ą¤Æą¤¾ ą¤øą„ą¤Ÿą„‡ą¤Ÿ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(117249, 'https://ror.org/01gggpc14', 'de', 1, 'https://ror.org/01gggpc14 Deutsches Zentrum für Schienenverkehrsforschung German Centre for Rail Traffic Research'),
(117250, 'https://ror.org/00ccpdp17', 'fr', 1, 'https://ror.org/00ccpdp17 Biologie du Fruit et Pathologie'),
(117251, 'https://ror.org/046qksq74', 'en', 1, 'https://ror.org/046qksq74 Dayananda Sagar College of Engineering'),
(117252, 'https://ror.org/02z5nhe81', 'en', 1, 'https://ror.org/02z5nhe81 Administración Nacional OceÔnica y Atmosférica National Oceanic and Atmospheric Administration'),
(117253, 'https://ror.org/029f8s748', 'en', 1, 'https://ror.org/029f8s748 Canadian Science Centre for Human and Animal Health'),
(117254, 'https://ror.org/03v7hjb52', 'no_lang_code', 1, 'https://ror.org/03v7hjb52 Advanced Scientific Research Projects (Kazakhstan) Advanced Scientific Research Projects'),
(117255, 'https://ror.org/00wevv562', 'id', 1, 'https://ror.org/00wevv562 Coal and Geothermal Mineral Resources Center Pusat Sumber Daya Mineral Batubara dan Panas Bumi'),
(117256, 'https://ror.org/01450d509', 'no_lang_code', 1, 'https://ror.org/01450d509 Semantic Web Company (Austria)'),
(117257, 'https://ror.org/01yezas83', 'fr', 1, 'https://ror.org/01yezas83 Centre EugĆØne Marquis'),
(117258, 'https://ror.org/05ngv5513', 'en', 1, 'https://ror.org/05ngv5513 Magsaysay College'),
(117259, 'https://ror.org/01wytk422', 'en', 1, 'https://ror.org/01wytk422 State Institution "Marzieiev Institute for Public Health of the National Academy of Medical Sciences of Ukraine" Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ¾Š³Š¾ зГоров''я ім. Šž. М. ŠœŠ°Ń€Š·Ń”Ń”Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України"'),
(117260, 'https://ror.org/05q8kyc69', 'en', 1, 'https://ror.org/05q8kyc69 UC Davis Health'),
(117261, 'https://ror.org/04d2k0j65', 'en', 1, 'https://ror.org/04d2k0j65 SPARC Europe Stichting SPARC Europe'),
(117262, 'https://ror.org/00f5m0b26', 'no_lang_code', 1, 'https://ror.org/00f5m0b26 Extreme Scale Solutions (United States) Extreme Scale Solutions'),
(117263, 'https://ror.org/01jg3a168', 'en', 1, 'https://ror.org/01jg3a168 Gosford Hospital'),
(117264, 'https://ror.org/047td8p12', 'es', 1, 'https://ror.org/047td8p12 Associated Laboratory for Green Chemistry - LAQV LAQV Requimte Laboratório Associado para a Química Verde'),
(117265, 'https://ror.org/03qmbfg34', 'en', 1, 'https://ror.org/03qmbfg34 Kiev Institute of Business and Technology Kiev Institute of Business and Technology LLC ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š±Ń–Š·Š½ŠµŃŃƒ та технологій'),
(117266, 'https://ror.org/010q5cr88', 'en', 1, 'https://ror.org/010q5cr88 Bornholm Hospital Bornholms Hospital Bornholms ziekenhuis'),
(117267, 'https://ror.org/04s1yrz35', 'en', 1, 'https://ror.org/04s1yrz35 Phnom Penh Teacher Education College įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‚įžšįž»įž€įŸ„įžŸįž›įŸ’įž™įžšįž¶įž‡įž’įž¶įž“įžøįž—įŸ’įž“įŸ†įž–įŸįž‰'),
(117268, 'https://ror.org/03v8fs179', 'en', 1, 'https://ror.org/03v8fs179 AWH Engineering College'),
(117269, 'https://ror.org/04g2dap11', 'fr', 1, 'https://ror.org/04g2dap11 Bogodogo University Hospital Center CHU de Bogodogo'),
(117270, 'https://ror.org/044wq1q96', 'de', 1, 'https://ror.org/044wq1q96 Deutsche Zentren der Gesundheitsforschung German Centers for Health Research'),
(117271, 'https://ror.org/03hj50651', 'de', 1, 'https://ror.org/03hj50651 Hochschule Fresenius'),
(117272, 'https://ror.org/00s2rk252', 'en', 1, 'https://ror.org/00s2rk252 Shaheed Benazir Bhutto Women University Peshawar ؓہید ŲØŪ’Ł†ŲøŪŒŲ± بھٹو ŁˆŪŒŁ…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ پؓاور'),
(117273, 'https://ror.org/048zn2n32', 'no_lang_code', 1, 'https://ror.org/048zn2n32 Ontotext (Bulgaria)'),
(117274, 'https://ror.org/0425xqc10', 'hr', 1, 'https://ror.org/0425xqc10 Academy of Applied Arts in Rijeka Akademija primijenjenih umjetnosti u Rijeci'),
(117275, 'https://ror.org/057py8t43', 'en', 1, 'https://ror.org/057py8t43 Seismological Facility for the Advancement of Geoscience'),
(117276, 'https://ror.org/029sr0q57', 'es', 1, 'https://ror.org/029sr0q57 Instituto Regional de Investigación y Desarrollo Agroalimentario y Forestal de Castilla-La Mancha'),
(117277, 'https://ror.org/013dngs07', 'en', 1, 'https://ror.org/013dngs07 Pharmacologie & Transplantation Pharmacologie et Transplantation'),
(117278, 'https://ror.org/01h4r5690', 'hr', 1, 'https://ror.org/01h4r5690 EFFECTUS University of Applied Sciences EFFECTUS veleučiliŔte'),
(117279, 'https://ror.org/01y26ms03', 'fr', 1, 'https://ror.org/01y26ms03 France Ciment'),
(117280, 'https://ror.org/05v01mk25', 'en', 1, 'https://ror.org/05v01mk25 Division of Earth Sciences'),
(117281, 'https://ror.org/031evmb56', 'en', 1, 'https://ror.org/031evmb56 Bangladesh University of Textiles বাংলাদেশ ą¦Ÿą§‡ą¦•ą§ą¦øą¦Ÿą¦¾ą¦‡ą¦² ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(117282, 'https://ror.org/03vjnqy43', 'en', 1, 'https://ror.org/03vjnqy43 Geological Survey of Finland'),
(117283, 'https://ror.org/05cdp3s82', 'en', 1, 'https://ror.org/05cdp3s82 Sarat Centenary College'),
(117284, 'https://ror.org/02c834j81', 'en', 1, 'https://ror.org/02c834j81 Maibang Degree College'),
(117285, 'https://ror.org/02388em19', 'no_lang_code', 1, 'https://ror.org/02388em19 Meta (Israel)'),
(117286, 'https://ror.org/03kwy8e78', 'en', 1, 'https://ror.org/03kwy8e78 Jiblah University for Medical and Health Sciences'),
(117287, 'https://ror.org/05chxh126', 'en', 1, 'https://ror.org/05chxh126 Responsible Offshore Science Alliance'),
(117288, 'https://ror.org/017cjz748', 'en', 1, 'https://ror.org/017cjz748 Ulsan National Institute of Science and Technology ģšøģ‚°ź³¼ķ•™źø°ģˆ ģ›'),
(117289, 'https://ror.org/03bjmhn29', 'id', 1, 'https://ror.org/03bjmhn29 Universitas Mandiri Bina Prestasi'),
(117290, 'https://ror.org/014vz2d20', 'fr', 1, 'https://ror.org/014vz2d20 Bordeaux Sciences Ɖconomiques'),
(117291, '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 وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(117292, 'https://ror.org/006npcd55', 'hr', 1, 'https://ror.org/006npcd55 Institut prometa i veza Institute of Transportation and Communications, Zagreb'),
(117293, 'https://ror.org/020xth197', 'en', 1, 'https://ror.org/020xth197 Kundiiev Institute of Occupational Health of the National Academy of Medical Sciences of Ukraine Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицини праці імені Š®. І. ŠšŃƒŠ½Š“Ń–Ń”Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України»'),
(117294, 'https://ror.org/02x3e4q36', 'en', 1, 'https://ror.org/02x3e4q36 Vilniaus Gedimino technikos universitetas Vilnius Gediminas Technical University Wileński Uniwersytet Techniczny im. Giedymina Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ГеГимина'),
(117295, 'https://ror.org/02c23kc81', 'en', 1, 'https://ror.org/02c23kc81 NOAA Library'),
(117296, 'https://ror.org/03vdcy552', 'en', 1, 'https://ror.org/03vdcy552 International Organization of Legal Metrology'),
(117297, 'https://ror.org/057x6za15', 'en', 1, 'https://ror.org/057x6za15 University of Carthage UniversitĆ© de carthage Ų¬Ų§Ł…Ų¹Ų© قرطاج'),
(117298, 'https://ror.org/01t7gbg04', 'it', 1, 'https://ror.org/01t7gbg04 Conservatorio di Musica Santa Cecilia');
INSERT INTO `rors` VALUES
(117299, 'https://ror.org/033gfj842', 'es', 1, 'https://ror.org/033gfj842 Agrifood Research and Technology Centre of Aragon Centro de Investigación y Tecnología Agroalimentaria de Aragón'),
(117300, 'https://ror.org/02qxqsg35', 'en', 1, 'https://ror.org/02qxqsg35 O''simliklar genetik resurslari ilmiy-tadqiqot instituti Research Institute of Plant Genetic Resources ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетических Ń€ŠµŃŃƒŃ€ŃŠ¾Š² растений'),
(117301, 'https://ror.org/00nsf1h45', 'fr', 1, 'https://ror.org/00nsf1h45 Institut Mines-TƩlƩcom Business School'),
(117302, 'https://ror.org/05qrwjj27', 'es', 1, 'https://ror.org/05qrwjj27 Universidad TƩcnica Estatal de Quevedo'),
(117303, 'https://ror.org/02pds6c22', 'en', 1, 'https://ror.org/02pds6c22 The Royal Institute of Philosophy'),
(117304, 'https://ror.org/02jpxve44', 'es', 1, 'https://ror.org/02jpxve44 Hospital San AgustĆ­n'),
(117305, 'https://ror.org/04vkn5g30', 'en', 1, 'https://ror.org/04vkn5g30 Bozorgmehr University of Qaenat'),
(117306, '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'),
(117307, 'https://ror.org/04884sy85', 'en', 1, 'https://ror.org/04884sy85 Ramathibodi Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø£ąø²ąø”ąø²ąø˜ąø“ąøšąø”ąøµ'),
(117308, 'https://ror.org/05n8tts92', 'ms', 1, 'https://ror.org/05n8tts92 MARA University of Technology Universiti Teknologi MARA'),
(117309, 'https://ror.org/016sx5n82', 'en', 1, 'https://ror.org/016sx5n82 Shandong Vocational University of Foreign Affairs'),
(117310, 'https://ror.org/02z9skc45', 'it', 1, 'https://ror.org/02z9skc45 Azienda Sanitaria Provinciale di Cosenza'),
(117311, 'https://ror.org/052zr0n46', 'en', 1, 'https://ror.org/052zr0n46 Institute for Medical Research and Occupational Health'),
(117312, 'https://ror.org/03ac4tk02', 'no_lang_code', 1, 'https://ror.org/03ac4tk02 KIOXIA Corporation (Japan) KIOXIA Corporation ć‚­ć‚Ŗć‚Æć‚·ć‚¢ę Ŗå¼ä¼šē¤¾'),
(117313, 'https://ror.org/05r8dqr10', 'no_lang_code', 1, 'https://ror.org/05r8dqr10 SveučiliŔte u Rijeci University of Rijeka'),
(117314, 'https://ror.org/022s5nv69', 'es', 1, 'https://ror.org/022s5nv69 Instituto Forestal Latinoamericano'),
(117315, 'https://ror.org/004b0ex62', 'es', 1, 'https://ror.org/004b0ex62 Grupo de Investigación en Gobierno, Administración y Políticas Públicas'),
(117316, 'https://ror.org/05cyd8v32', 'en', 1, 'https://ror.org/05cyd8v32 University of Burdwan ą¦¬ą¦°ą§ą¦§ą¦®ą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(117317, 'https://ror.org/02c7f6t98', 'en', 1, 'https://ror.org/02c7f6t98 East Bay Regional Park District'),
(117318, 'https://ror.org/00xh22n12', 'en', 1, 'https://ror.org/00xh22n12 Czech Environmental Information Agency'),
(117319, 'https://ror.org/021nszj63', 'en', 1, 'https://ror.org/021nszj63 Computer Technology Institute and Press ā€œDIOPHANTUSā€ Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Τεχνολογίας Ī„Ļ€ĪæĪ»ĪæĪ³Ī¹ĻƒĻ„ĻŽĪ½ και Ī•ĪŗĪ“ĻŒĻƒĪµĻ‰Ī½ ā€œĪ”Ī™ĪŸĪ¦Ī‘ĪĪ¤ĪŸĪ£ā€'),
(117320, 'https://ror.org/00jpq0w62', 'fr', 1, 'https://ror.org/00jpq0w62 Centre Hospitalier Universitaire de Tours'),
(117321, 'https://ror.org/05c53qb74', 'en', 1, 'https://ror.org/05c53qb74 National Center for Technological Progress Viện ứng dỄng cĆ“ng nghệ'),
(117322, 'https://ror.org/049an7s37', 'en', 1, 'https://ror.org/049an7s37 NSF National Geophysical Facility'),
(117323, 'https://ror.org/01gh9tr06', 'vi', 1, 'https://ror.org/01gh9tr06 Bệnh viện Đa khoa Xanh PĆ“n Saint Paul Hospital'),
(117324, 'https://ror.org/027rw9342', 'en', 1, 'https://ror.org/027rw9342 National Astronomical Research Institute of Thailand'),
(117325, 'https://ror.org/03rzqdn07', 'no_lang_code', 1, 'https://ror.org/03rzqdn07 New Frontier Advisors LLC New Frontier Advisors LLC (United States)'),
(117326, 'https://ror.org/049761w59', 'tr', 1, 'https://ror.org/049761w59 General Directorate of Combating Desertification and Erosion Ƈƶlleşme ve Erozyonla Mücadele Genel Müdürlüğü'),
(117327, 'https://ror.org/00wxcfk47', 'no_lang_code', 1, 'https://ror.org/00wxcfk47 WeLOOP WeLOOP (France)'),
(117328, 'https://ror.org/019hjw009', 'en', 1, 'https://ror.org/019hjw009 Fraunhofer Institute for Industrial Mathematics Fraunhofer-Institut für Techno- und Wirtschaftsmathematik'),
(117329, 'https://ror.org/047djf998', 'no_lang_code', 1, 'https://ror.org/047djf998 Rheem Manufacturing Rheem Manufacturing (United States)'),
(117330, 'https://ror.org/01qrts582', 'de', 1, 'https://ror.org/01qrts582 Rheinland-PfƤlzische Technische UniversitƤt Kaiserslautern-Landau'),
(117331, 'https://ror.org/02qzt2d31', 'hr', 1, 'https://ror.org/02qzt2d31 Croatian Memorial Documentation Centre of the Homeland War Hrvatski memorijalno-dokumentacijski centar Domovinskog rata'),
(117332, 'https://ror.org/00zk46w34', 'de', 1, 'https://ror.org/00zk46w34 Fresenius University of Applied Sciences Heidelberg Hochschule Fresenius Heidelberg'),
(117333, 'https://ror.org/02g84nk55', 'id', 1, 'https://ror.org/02g84nk55 Institut Agama Islam Negeri Kerinci Kerinci State Islamic Institute'),
(117334, 'https://ror.org/04y7bzk92', 'en', 1, 'https://ror.org/04y7bzk92 Sakhalin Botanical Garden Дахалинский филиал Ботанического саГа-ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° Š”Š’Šž Š ŠŠ'),
(117335, 'https://ror.org/0566btb10', 'en', 1, 'https://ror.org/0566btb10 Central University of Andhra Pradesh'),
(117336, 'https://ror.org/02depad46', 'en', 1, 'https://ror.org/02depad46 Belgian Health Care Knowledge Centre (KCE) Centre fédéral d''expertise des soins de santé (KCE) Federaal Kenniscentrum voor de Gezondheidszorg (KCE) Föderale Fachzentrum für Gesundheitspflege (KCE)'),
(117337, 'https://ror.org/04t6v2p02', 'en', 1, 'https://ror.org/04t6v2p02 Perkumpulan PRAKARSA The PRAKARSA'),
(117338, 'https://ror.org/00jkcvh93', 'en', 1, 'https://ror.org/00jkcvh93 Berlin School of Business and Innovation GmbH'),
(117339, 'https://ror.org/042nb2s44', 'en', 1, 'https://ror.org/042nb2s44 Instituto Tecnológico de Massachusetts Massachusetts Institute of Technology'),
(117340, 'https://ror.org/029d51a05', 'es', 1, 'https://ror.org/029d51a05 Hospital Quirónsalud MÔlaga'),
(117341, 'https://ror.org/02ex7j405', 'en', 1, 'https://ror.org/02ex7j405 Ministry of Social Development Te Manatū Whakahiato Ora'),
(117342, 'https://ror.org/03b7n5g52', 'en', 1, 'https://ror.org/03b7n5g52 Brain Health Alliance'),
(117343, 'https://ror.org/02qy8xv65', 'en', 1, 'https://ror.org/02qy8xv65 Kazi Nazrul University ą¦•ą¦¾ą¦œą§€ নজরুল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(117344, 'https://ror.org/05dwg9278', 'en', 1, 'https://ror.org/05dwg9278 Tampa Veterans Research and Education Foundation Tampa Veterans Research and Education Foundation, Inc.'),
(117345, 'https://ror.org/05m4fx008', 'es', 1, 'https://ror.org/05m4fx008 Fundacion Canguro Kangaroo Foundation'),
(117346, 'https://ror.org/037neha07', 'en', 1, 'https://ror.org/037neha07 Research Bridge Publisher'),
(117347, 'https://ror.org/04vssaz54', 'no_lang_code', 1, 'https://ror.org/04vssaz54 Google (Australia)'),
(117348, 'https://ror.org/0216zqy80', 'es', 1, 'https://ror.org/0216zqy80 Hospital de Especialidades Carlos Andrade MarĆ­n'),
(117349, 'https://ror.org/024pz1v04', 'pt', 1, 'https://ror.org/024pz1v04 Federal University of Catalao Universidade Federal de Catalão'),
(117350, 'https://ror.org/00esaxq21', 'en', 1, 'https://ror.org/00esaxq21 Earth and Life University Universidad Tierra y Aire'),
(117351, 'https://ror.org/02zc6c986', 'en', 1, 'https://ror.org/02zc6c986 Bethlem Royal Hospital'),
(117352, 'https://ror.org/007szyf68', 'fr', 1, 'https://ror.org/007szyf68 Higher Institute of Information and Communication Technologies Institut SupƩrieur des Technologies de l''Information et de la Communication'),
(117353, 'https://ror.org/055326464', 'en', 1, 'https://ror.org/055326464 Chuo Kikuu cha Sayansi na Teknolojia Mbeya Mbeya University of Science and Technology'),
(117354, 'https://ror.org/018c72e16', 'no_lang_code', 1, 'https://ror.org/018c72e16 RIFCON GmbH (Germany) RIFCON GmbH'),
(117355, 'https://ror.org/01d9ywx93', 'sr', 1, 'https://ror.org/01d9ywx93 Academy of Applied Studies Polytechnic Akademija strukovnih studija Politehnika'),
(117356, 'https://ror.org/050yjfb75', 'en', 1, 'https://ror.org/050yjfb75 Ahli Hospital'),
(117357, 'https://ror.org/04fht8c22', 'en', 1, 'https://ror.org/04fht8c22 Bharathiar University भरतिआर ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą„ą¤Æą¤¾ą¤²ą¤Æ ą®Ŗą®¾ą®°ą®¤ą®æą®Æą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“­ą“¾ą“°ą“¤ą“æą“Æą“¾ąµ¼ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(117358, 'https://ror.org/0060cvv29', 'no_lang_code', 1, 'https://ror.org/0060cvv29 AcademyGate AcademyGate (Azerbaijan) AcademyGate (United States)'),
(117359, 'https://ror.org/055q8rh54', 'en', 1, 'https://ror.org/055q8rh54 Institute of Information Science InŔtitut za informacijske znanosti'),
(117360, 'https://ror.org/02gwxvs80', 'es', 1, 'https://ror.org/02gwxvs80 Agroforestry Research Institute Instituto de Investigaciones Agro-Forestales'),
(117361, 'https://ror.org/00p56p671', 'en', 1, 'https://ror.org/00p56p671 International Institute of Justice and Police Sciences'),
(117362, 'https://ror.org/0535c1v66', 'en', 1, 'https://ror.org/0535c1v66 Assam University असम ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ আসাম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(117363, 'https://ror.org/00zgb6374', 'en', 1, 'https://ror.org/00zgb6374 Woodland Park Zoo'),
(117364, 'https://ror.org/00mm29v34', 'en', 1, 'https://ror.org/00mm29v34 P P Savani University'),
(117365, 'https://ror.org/0542qcy46', 'en', 1, 'https://ror.org/0542qcy46 Mobility Ion Technologies, S.L Mobility Ion Technologies, S.L (Spain)'),
(117366, 'https://ror.org/0001j6c19', 'fr', 1, 'https://ror.org/0001j6c19 Biogéochimie des écosystèmes forestiers'),
(117367, 'https://ror.org/041erdp23', 'en', 1, 'https://ror.org/041erdp23 Monarch University'),
(117368, 'https://ror.org/03cqd2v24', 'en', 1, 'https://ror.org/03cqd2v24 Ministry of Higher Education, Science, Research and Innovation กระทรวงการอุดดศึกษา ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œ ąø§ąø“ąøˆąø±ąø¢ą¹ąø„ąø°ąø™ąø§ąø±ąø•ąøąø£ąø£ąø”'),
(117369, 'https://ror.org/00kc1e353', 'es', 1, 'https://ror.org/00kc1e353 Parque Nacional de la Sierra de Guadarrama Sierra de Guadarrama National Park'),
(117370, 'https://ror.org/05hg0rk71', 'en', 1, 'https://ror.org/05hg0rk71 Donetsk State University of Internal Affairs Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(117371, 'https://ror.org/01rwn3f68', 'es', 1, 'https://ror.org/01rwn3f68 Universidad del Alba'),
(117372, 'https://ror.org/02tgz8d12', 'no_lang_code', 1, 'https://ror.org/02tgz8d12 Ecraid Foundation Ecraid Foundation (Netherlands)'),
(117373, 'https://ror.org/047rk3g12', 'es', 1, 'https://ror.org/047rk3g12 Dr. Enrique Tornu General Hospital Hospital General de Agudos Dr. Enrique TornĆŗ'),
(117374, 'https://ror.org/03wvvht30', 'en', 1, 'https://ror.org/03wvvht30 Institute of Accounting and Finance Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Š±Š»Ń–ŠŗŃƒ і фінансів'),
(117375, 'https://ror.org/03mfyme49', 'es', 1, 'https://ror.org/03mfyme49 Institute for Research in Biomedicine of Lleida Instituto de Investigación Biomédica de Lleida'),
(117376, 'https://ror.org/053xpwt63', 'nl', 1, 'https://ror.org/053xpwt63 NMi Certin B.V.'),
(117377, 'https://ror.org/00hqwyj63', 'en', 1, 'https://ror.org/00hqwyj63 Heilongjiang Academy of Sciences é»‘é¾™ę±Ÿēœē§‘å­¦é™¢'),
(117378, 'https://ror.org/04w94d148', 'id', 1, 'https://ror.org/04w94d148 Hanoi School of Business and Management TrĘ°į»ng Quįŗ£n trị vĆ  Kinh doanh, ĐẔi hį»c Quốc gia HĆ  Nį»™i'),
(117379, 'https://ror.org/03csrq586', 'en', 1, 'https://ror.org/03csrq586 EURAMET - European Association of National Metrology Institutes'),
(117380, 'https://ror.org/00xc1d948', 'en', 1, 'https://ror.org/00xc1d948 Industrial University of Santander Universidad Industrial de Santander'),
(117381, 'https://ror.org/02j6bmx07', 'pt', 1, 'https://ror.org/02j6bmx07 Centro UniversitƔrio Salesiano'),
(117382, 'https://ror.org/03v7q6847', 'en', 1, 'https://ror.org/03v7q6847 SaferAI'),
(117383, 'https://ror.org/00h4spn88', 'en', 1, 'https://ror.org/00h4spn88 Mahatma Gandhi University ਮਹਾਤਮਾ ਗਾਂਧੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®®ą®•ą®¾ą®¤ąÆą®®ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“®ą“¹ą“¾ą“¤ąµą“®ą“¾ą“—ą“¾ą“Øąµą“§ą“æ ą“øą“°ąµā€ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(117384, 'https://ror.org/040k7wk82', 'id', 1, 'https://ror.org/040k7wk82 Universitas Islam Negeri K.H. Abdurrahman Wahid Pekalongan'),
(117385, 'https://ror.org/0227kwk61', 'en', 1, 'https://ror.org/0227kwk61 Hai Phong University TrĘ°į»ng ĐẔi hį»c Hįŗ£i Phòng'),
(117386, 'https://ror.org/02catss52', 'en', 1, 'https://ror.org/02catss52 European Bioinformatics Institute'),
(117387, 'https://ror.org/00wgz3m35', 'no_lang_code', 1, 'https://ror.org/00wgz3m35 Croatian Telecom Inc. Hrvatski Telekom d.d. Hrvatski Telekom d.d. (Croatia)'),
(117388, 'https://ror.org/00w1baj53', 'id', 1, 'https://ror.org/00w1baj53 Kementerian Energi dan Sumber Daya Mineral Ministry of Energy and Mineral Resources'),
(117389, 'https://ror.org/04h52f456', 'sl', 1, 'https://ror.org/04h52f456 Diagnostic Center Bled Group Diagnostični center Bled'),
(117390, 'https://ror.org/04zhrg102', 'fr', 0, 'https://ror.org/04zhrg102 Interdisciplinary Laboratory for Research in Education Laboratoire interdisciplinaire de recherche en Ʃducation'),
(117391, 'https://ror.org/05r4ev872', 'en', 1, 'https://ror.org/05r4ev872 St. Paul''s College, Kalamassery'),
(117392, 'https://ror.org/03ps0b790', 'no_lang_code', 1, 'https://ror.org/03ps0b790 Math2Market GmbH Math2Market GmbH (Germany)'),
(117393, 'https://ror.org/02g544j73', 'en', 1, 'https://ror.org/02g544j73 Zhejiang Provincial Federation for Science Popularization ęµ™ę±Ÿēœē§‘ę™®č”åˆä¼š'),
(117394, 'https://ror.org/000ymgt65', 'en', 1, 'https://ror.org/000ymgt65 University of Music and Performing Arts Vienna Universität für Musik und darstellende Kunst Wien'),
(117395, 'https://ror.org/049t65d67', 'fr', 1, 'https://ror.org/049t65d67 Analyse des SystĆØmes Biologiques'),
(117396, 'https://ror.org/05rrcem69', 'en', 1, 'https://ror.org/05rrcem69 Universidad de California en Davis University of California, Davis UniversitƩ de Californie Ơ Davis'),
(117397, 'https://ror.org/02qp60v25', 'en', 1, 'https://ror.org/02qp60v25 Union of Law Scientists'),
(117398, 'https://ror.org/02admym78', 'en', 1, 'https://ror.org/02admym78 Integrated Marine Biosphere Research'),
(117399, 'https://ror.org/01h8xh496', 'en', 1, 'https://ror.org/01h8xh496 University of Sustainability'),
(117400, 'https://ror.org/01we77r30', 'en', 1, 'https://ror.org/01we77r30 Comptroller and Auditor General of India'),
(117401, 'https://ror.org/052pywd95', 'en', 1, 'https://ror.org/052pywd95 NOAA Office of Science Support'),
(117402, 'https://ror.org/0255nn983', 'en', 1, 'https://ror.org/0255nn983 Thiruvalluvar University ą®¤ą®æą®°ąÆą®µą®³ąÆą®³ąÆą®µą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(117403, 'https://ror.org/01x9a3s25', 'es', 1, 'https://ror.org/01x9a3s25 Francisco Grande CoviƔn Hospital of Eastern Asturias Hospital del Oriente de Asturias Francisco Grande CoviƔn'),
(117404, 'https://ror.org/01nzphv03', 'en', 1, 'https://ror.org/01nzphv03 Pacific Centre for Isotopic and Geochemical Research'),
(117405, 'https://ror.org/04084bq42', 'en', 1, 'https://ror.org/04084bq42 United Medical and Dental College'),
(117406, 'https://ror.org/01z9sze45', 'en', 1, 'https://ror.org/01z9sze45 ESOFT Uni'),
(117407, 'https://ror.org/02b207r52', 'en', 1, 'https://ror.org/02b207r52 Ministry of Science and Technology'),
(117408, 'https://ror.org/02b73sx33', 'es', 1, 'https://ror.org/02b73sx33 Universidad de la Costa University of the Coast'),
(117409, 'https://ror.org/042k5q325', 'en', 0, 'https://ror.org/042k5q325 European Metrology Programme for Innovation and Research'),
(117410, 'https://ror.org/030sa3819', 'en', 1, 'https://ror.org/030sa3819 State of California'),
(117411, 'https://ror.org/0507etz14', 'hr', 1, 'https://ror.org/0507etz14 Ministarstvo znanosti, obrazovanja i mladih Ministry of Science, Education and Youth'),
(117412, 'https://ror.org/00tkfw097', 'de', 1, 'https://ror.org/00tkfw097 Deutsches Zentrum für Psychische Gesundheit German Center for Mental Health'),
(117413, 'https://ror.org/00vpq6g39', 'no_lang_code', 1, 'https://ror.org/00vpq6g39 Indra (Spain)'),
(117414, 'https://ror.org/03ff1hk66', 'no_lang_code', 1, 'https://ror.org/03ff1hk66 CTC & Associates LLC CTC & Associates LLC (United States)'),
(117415, 'https://ror.org/00cjejy66', 'no_lang_code', 0, 'https://ror.org/00cjejy66 iXBlue (France)'),
(117416, 'https://ror.org/02jv91m18', 'en', 1, 'https://ror.org/02jv91m18 Junta de Comunidades de Castilla-La Mancha Regional Government of Castile-La Mancha'),
(117417, 'https://ror.org/00c2b8r84', 'en', 1, 'https://ror.org/00c2b8r84 Great Basin National Park Parque nacional de la Gran Cuenca'),
(117418, 'https://ror.org/03b7pyx70', 'en', 1, 'https://ror.org/03b7pyx70 Nepal Pain Care & Research Center'),
(117419, 'https://ror.org/026ksq202', 'en', 1, 'https://ror.org/026ksq202 Presidency of the Republic of Türkiye, Directorate of State Archives T.C. Cumhurbaşkanlığı, Devlet Arşivleri Başkanlığı Türkiye Cumhuriyeti Cumhurbaşkanlığı Devlet Arşivleri Başkanlığı'),
(117420, 'https://ror.org/0135tv209', 'hr', 1, 'https://ror.org/0135tv209 BICRO BIOCENTAR d.o.o. BICRO BIOCentre Ltd.'),
(117421, 'https://ror.org/02hkb3118', 'en', 1, 'https://ror.org/02hkb3118 Catalight'),
(117422, 'https://ror.org/05t7nr346', 'tr', 1, 'https://ror.org/05t7nr346 Milli Saraylar Idaresi Başkanlıgı'),
(117423, 'https://ror.org/02xar8d89', 'es', 1, 'https://ror.org/02xar8d89 Institute of Environmental Biotechnology and Health Instituto de BiotecnologĆ­a Ambiental y Salud'),
(117424, 'https://ror.org/00k42s837', 'en', 1, 'https://ror.org/00k42s837 Tribhuvan University Sanothimi Campus'),
(117425, 'https://ror.org/051vakf19', 'no_lang_code', 1, 'https://ror.org/051vakf19 Hangzhou Yushu Technology Co., Ltd. Unitree Unitree (China) Yushu Technology Co., Ltd. ę­å·žå®‡ę ‘ē§‘ęŠ€ęœ‰é™å…¬åø'),
(117426, 'https://ror.org/00frst980', 'en', 1, 'https://ror.org/00frst980 University of British Columbia Hospital'),
(117427, 'https://ror.org/042q4h794', 'en', 1, 'https://ror.org/042q4h794 Ferenc Rakoczi II Transcarpathian Hungarian University II. RĆ”kóczi Ferenc KĆ”rpĆ”taljai Magyar Egyetem Š—Š°ŠŗŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ ŃƒŠ³Š¾Ń€ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Ференца Ракоці ІІ'),
(117428, 'https://ror.org/05fp08r12', 'en', 1, 'https://ror.org/05fp08r12 Government of Thailand'),
(117429, 'https://ror.org/0002pcv65', 'en', 1, 'https://ror.org/0002pcv65 National University of RĆ­o Cuarto Universidad Nacional de RĆ­o Cuarto'),
(117430, 'https://ror.org/05g47k202', 'hr', 1, 'https://ror.org/05g47k202 Academy of Dramatic Art in Zagreb Akademija dramske umjetnosti'),
(117431, 'https://ror.org/02eswgk26', 'en', 1, 'https://ror.org/02eswgk26 Southeast College'),
(117432, 'https://ror.org/02c89h825', 'en', 1, 'https://ror.org/02c89h825 Odisee dƩ co-hogeschool Odisee, University of Applied Sciences'),
(117433, 'https://ror.org/006tw6m05', 'no_lang_code', 1, 'https://ror.org/006tw6m05 AG Editor (Uruguay) AG Editor'),
(117434, 'https://ror.org/05c22rx21', 'en', 1, 'https://ror.org/05c22rx21 Mila - Institut quĆ©bĆ©cois d’intelligence artificielle Mila - Quebec Artificial Intelligence Institute'),
(117435, 'https://ror.org/0022rgk24', 'en', 1, 'https://ror.org/0022rgk24 Saic College of Medical Science and Technology'),
(117436, 'https://ror.org/010f97530', 'en', 1, 'https://ror.org/010f97530 Leicestershire County Council'),
(117437, 'https://ror.org/04pznsd21', 'en', 1, 'https://ror.org/04pznsd21 American University of Beirut UniversitĆ© amĆ©ricaine de beyrouth Ō²Õ„ÕµÖ€ÕøÖ‚Õ©Õ« Õ”Õ“Õ„Ö€Õ«ÕÆÕµÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ الجامعة Ų§Ł„Ų£Ł…ŁŠŲ±ŁƒŁŠŲ© في بيروت'),
(117438, 'https://ror.org/014vys050', 'en', 1, 'https://ror.org/014vys050 National Defence University of Ukraine'),
(117439, 'https://ror.org/04f6cgz95', 'en', 1, 'https://ror.org/04f6cgz95 American Diabetes Association'),
(117440, 'https://ror.org/01e85r662', 'en', 1, 'https://ror.org/01e85r662 MIT Computer Science and Artificial Intelligence Laboratory'),
(117441, 'https://ror.org/01cbgsf04', 'fr', 1, 'https://ror.org/01cbgsf04 Acides nuclƩiques: RƩgulations naturelles et artificielles'),
(117442, 'https://ror.org/05pkr3e32', 'en', 1, 'https://ror.org/05pkr3e32 Rathinam Technical Campus'),
(117443, 'https://ror.org/030annm28', 'pt', 1, 'https://ror.org/030annm28 Faculdade de Direito de SĆ£o Bernardo do Campo SĆ£o Bernardo do Campo School of Law'),
(117444, 'https://ror.org/04ybvje46', 'en', 1, 'https://ror.org/04ybvje46 Nasarawa State University'),
(117445, 'https://ror.org/02nhaz128', 'en', 1, 'https://ror.org/02nhaz128 Sacred Heart College (Autonomous) தூய ą®ØąÆ†ą®žąÆą®šą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ (ą®¤ą®æą®°ąÆą®ŖąÆą®Ŗą®¤ąÆą®¤ąÆ‚ą®°ąÆ)'),
(117446, 'https://ror.org/02hqwnx33', 'no_lang_code', 1, 'https://ror.org/02hqwnx33 Western Digital Western Digital (United States)'),
(117447, 'https://ror.org/03ckrg061', 'en', 1, 'https://ror.org/03ckrg061 International Collaboration On Repair Discoveries'),
(117448, 'https://ror.org/02ddag914', 'en', 1, 'https://ror.org/02ddag914 Children''s City Clinical Hospital No. 9 Š”ŠµŃ‚ŃŠŗŠ°Ń Š³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 9'),
(117449, 'https://ror.org/04dqx5p57', 'en', 1, 'https://ror.org/04dqx5p57 Rathinam Group of Institutions'),
(117450, 'https://ror.org/003vcnv80', 'es', 1, 'https://ror.org/003vcnv80 Instituto de Investigación en Producción Animal'),
(117451, 'https://ror.org/04570b518', 'en', 1, 'https://ror.org/04570b518 UN Environment Programme World Conservation Monitoring Centre'),
(117452, 'https://ror.org/00kqcs728', 'en', 1, 'https://ror.org/00kqcs728 Robotics and AI Institute'),
(117453, 'https://ror.org/03vs3wt56', 'no_lang_code', 1, 'https://ror.org/03vs3wt56 Baidu Baidu (China) 百度'),
(117454, 'https://ror.org/05ehe8t08', 'en', 1, 'https://ror.org/05ehe8t08 UC Davis Children''s Hospital'),
(117455, 'https://ror.org/035r63g14', 'es', 1, 'https://ror.org/035r63g14 Instituto Peruano de Estudios Arqueológicos Peruvian Institute of Archaeological Studies'),
(117456, 'https://ror.org/02vxqc968', 'en', 1, 'https://ror.org/02vxqc968 Hunan Institute of Metrology and Test ę¹–å—ēœč®”é‡ę£€ęµ‹ē ”ē©¶é™¢'),
(117457, 'https://ror.org/0492x0026', 'hr', 1, 'https://ror.org/0492x0026 Filozofsko-teoloŔki institut Družbe Isusove Philosophical Theological Institute of the Society of Jesus'),
(117458, 'https://ror.org/04d5x5x34', 'fr', 1, 'https://ror.org/04d5x5x34 Laboratoire en Innovation, Technologies, Economie et Management'),
(117459, 'https://ror.org/059hsda18', 'no_lang_code', 1, 'https://ror.org/059hsda18 Apple Apple (United States)'),
(117460, 'https://ror.org/024rm9722', 'en', 1, 'https://ror.org/024rm9722 Northern University Деверный Университет Õ€ÕµÕøÖ‚Õ½Õ«Õ½Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(117461, 'https://ror.org/02caa1k19', 'en', 1, 'https://ror.org/02caa1k19 Beijing Polytechnic University'),
(117462, 'https://ror.org/007n87981', 'en', 1, 'https://ror.org/007n87981 ISURA'),
(117463, 'https://ror.org/00c8t7d47', 'tr', 0, 'https://ror.org/00c8t7d47 Gülhane Askerî Tıp Akademisi'),
(117464, 'https://ror.org/01cxtyq16', 'es', 1, 'https://ror.org/01cxtyq16 ISAE Universidad ISAE University'),
(117465, 'https://ror.org/00ahn8061', 'en', 1, 'https://ror.org/00ahn8061 Economic Innovation Group'),
(117466, 'https://ror.org/05t6gpm70', 'en', 1, 'https://ror.org/05t6gpm70 University of California Davis Medical Center'),
(117467, 'https://ror.org/021v2ka51', 'fr', 1, 'https://ror.org/021v2ka51 Institut national supƩrieur de formation et de recherche pour l''Ʃducation inclusive'),
(117468, 'https://ror.org/01evjjx71', 'fr', 0, 'https://ror.org/01evjjx71 Gene-Environnement Interactions in Cardio-Vascular Physiopathology Interactions GĆØne-Environnement en Physiopathologie Cardio-Vasculaire'),
(117469, 'https://ror.org/026sr7a60', 'hr', 1, 'https://ror.org/026sr7a60 Bc Institut za oplemenjivanje i proizvodnju bilja d.d. Bc Institute for breeding and seed production of field crops Zagreb'),
(117470, 'https://ror.org/05510z802', 'fr', 1, 'https://ror.org/05510z802 Conseil rƩgional de Bretagne Regional Council of Brittany'),
(117471, 'https://ror.org/04k7cvz88', 'en', 1, 'https://ror.org/04k7cvz88 North Carolina Institute for Climate Studies'),
(117472, 'https://ror.org/02r2ymp21', 'en', 1, 'https://ror.org/02r2ymp21 Bihar University of Health Sciences'),
(117473, 'https://ror.org/00a0js907', 'en', 1, 'https://ror.org/00a0js907 Institute of Archaeology and Heritage Studies'),
(117474, 'https://ror.org/05e9f5362', 'en', 1, 'https://ror.org/05e9f5362 Shanxi Agricultural University å±±č„æå†œäøšå¤§å­¦'),
(117475, 'https://ror.org/01cs7yz41', 'id', 1, 'https://ror.org/01cs7yz41 Ebenezer Theological College Sekolah Tinggi Theologi Ebenhaezer'),
(117476, 'https://ror.org/01rtf5e64', 'no_lang_code', 1, 'https://ror.org/01rtf5e64 InfoDom LLC InfoDom d.o.o. InfoDom d.o.o. (Croatia)'),
(117477, 'https://ror.org/01nwr1552', 'en', 1, 'https://ror.org/01nwr1552 Vinh University of Technology Education'),
(117478, 'https://ror.org/035qa0k76', 'en', 1, 'https://ror.org/035qa0k76 A.O. Hospital'),
(117479, 'https://ror.org/046c1g807', 'fr', 1, 'https://ror.org/046c1g807 FLOWERS: FLOW in Exploration, leaRning, and diScovery FLOWERS: Flow: exploration, apprentissage et dƩcouverte dirigƩs par la curiositƩ'),
(117480, 'https://ror.org/03e0fmc37', 'fr', 1, 'https://ror.org/03e0fmc37 Service de Recherche en MatƩriaux et procƩdƩs AvancƩs'),
(117481, 'https://ror.org/03bv29q22', 'en', 1, 'https://ror.org/03bv29q22 Bitergia (Spain)'),
(117482, 'https://ror.org/03kd28f18', 'en', 1, 'https://ror.org/03kd28f18 Prifysgol Buckingham University of Buckingham'),
(117483, 'https://ror.org/00p991c53', 'en', 1, 'https://ror.org/00p991c53 Huazhong University of Science and Technology åŽäø­ē§‘ęŠ€å¤§å­¦'),
(117484, 'https://ror.org/04rppyr85', 'es', 1, 'https://ror.org/04rppyr85 Hospital Dr. Exequiel GonzƔlez CortƩs'),
(117485, 'https://ror.org/02a53x034', 'es', 1, 'https://ror.org/02a53x034 Centro de Estudios Parasitológicos y de Vectores'),
(117486, 'https://ror.org/01vds7060', 'id', 1, 'https://ror.org/01vds7060 STIT Darul Hijrah Martapura'),
(117487, 'https://ror.org/03h7g7t47', 'en', 1, 'https://ror.org/03h7g7t47 Massachusetts Academy of Math and Science at WPI'),
(117488, 'https://ror.org/04wgfew19', 'fr', 1, 'https://ror.org/04wgfew19 PLATON: Quantification des Incertitudes en calcul scientifique pour l’ingĆ©nierie PLATON: Uncertainty Quantification in Scientific Computing and Engineering'),
(117489, 'https://ror.org/035fwjk44', 'fr', 1, 'https://ror.org/035fwjk44 STARS: Reconnaissance d''ActivitƩs Spatio-Temporelles pour les interactions Sociales STARS: Spatio-Temporal Activity Recognition of Social interactions'),
(117490, 'https://ror.org/0144fat78', 'en', 1, 'https://ror.org/0144fat78 National Drug and Alcohol Research Centre'),
(117491, 'https://ror.org/05tdz6m39', 'en', 1, 'https://ror.org/05tdz6m39 King Abdulaziz City for Science and Technology Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ² Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(117492, 'https://ror.org/026839t73', 'fr', 1, 'https://ror.org/026839t73 Centre Inria de l''Institut Polytechnique de Paris Inria Saclay Centre at Institut Polytechnique de Paris'),
(117493, 'https://ror.org/05sk9zb20', 'en', 1, 'https://ror.org/05sk9zb20 MODAL: MOdel for Data Analysis and Learning'),
(117494, 'https://ror.org/04g6bbq64', 'en', 1, 'https://ror.org/04g6bbq64 Adam Mickiewicz University in Poznań Uniwersytet im. Adama Mickiewicza w Poznaniu'),
(117495, 'https://ror.org/05naveh50', 'fr', 1, 'https://ror.org/05naveh50 Niche, Nutrition, Cancer et mƩtabolisme oxydatif UMR 1069'),
(117496, 'https://ror.org/03v2df654', 'en', 1, 'https://ror.org/03v2df654 Luxembourg Health & Sport Sciences Research Institute'),
(117497, 'https://ror.org/02a1eyd35', 'en', 1, 'https://ror.org/02a1eyd35 The Pearl International Hospital مستؓفى اللؤلؤة Ų§Ł„ŲÆŁˆŁ„ŁŠ'),
(117498, 'https://ror.org/034kszc22', 'en', 1, 'https://ror.org/034kszc22 CARAMBA: Cryptology, arithmetic : algebraic methods for better algorithms'),
(117499, 'https://ror.org/04zja0e38', 'fr', 1, 'https://ror.org/04zja0e38 BONUS: Big Optimization aNd Ultra-Scale Computing BONUS: Optimisation de grande taille et calcul large Ʃchelle'),
(117500, 'https://ror.org/04cmc9894', 'es', 1, 'https://ror.org/04cmc9894 National Pedagogic University Universidad Pedagógica Nacional'),
(117501, 'https://ror.org/019txxw85', 'fr', 1, 'https://ror.org/019txxw85 MALICE: Apprentissage automatique avec intƩgration des connaissances en ingƩnierie de surface : thƩorie et algorithmes MALICE: MAchine Learning with Integration of surfaCe Engineering knowledge: Theory and Algorithms'),
(117502, 'https://ror.org/03wxsga24', 'en', 1, 'https://ror.org/03wxsga24 Koitaleel Samoei University College'),
(117503, 'https://ror.org/02f8n0g23', 'id', 1, 'https://ror.org/02f8n0g23 Politeknik Banjarnegara'),
(117504, 'https://ror.org/00e768d94', 'en', 1, 'https://ror.org/00e768d94 Nowocert'),
(117505, 'https://ror.org/00cwrns71', 'en', 1, 'https://ror.org/00cwrns71 Indian Space Research Organisation ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ अंतराळ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤…ą¤‚ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø संगठन ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤…ą¤Øą„ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø संगठन ভারতীয় মহাকাশ গবেষণা ą¦øą¦‚ą¦øą§ą¦„ą¦¾ ਇਸਰੋ ઇસરો ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µą®æą®£ąÆą®µąÆ†ą®³ą®æ ą®†ą®ÆąÆą®µąÆ ą®®ąÆˆą®Æą®®ąÆ భారతీయ ą°…ą°‚ą°¤ą°°ą°æą°•ą±ą°· పరిశోధనా ą°øą°‚ą°øą±ą°„ ಭಾರತೀಯ ą²¬ą²¾ą²¹ą³ą²Æą²¾ą²•ą²¾ą²¶ ಸಂಶೋಧನೆ ą²øą²‚ą²øą³ą²„ą³† ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“øąµą“Ŗąµ‡ą“øąµ ą“±ą“æą“øąµ¼ą“šąµą“šąµ ą““ąµ¼ą“—ą“Øąµˆą“øąµ‡ą“·ąµ»'),
(117506, 'https://ror.org/046yhec22', 'no_lang_code', 1, 'https://ror.org/046yhec22 Hashir International Specialist Clinics & Research Institute for Misophonia, Tinnitus and Hyperacusis Hashir International Specialist Clinics & Research Institute for Misophonia, Tinnitus and Hyperacusis (United Kingdom)'),
(117507, 'https://ror.org/03pkgmp48', 'en', 1, 'https://ror.org/03pkgmp48 Intact Financial Corporation'),
(117508, 'https://ror.org/027rtv005', 'en', 1, 'https://ror.org/027rtv005 Kızılcahamam State Hospital'),
(117509, 'https://ror.org/055k5m177', 'en', 1, 'https://ror.org/055k5m177 Bangladesh Institute of Research and Training on Applied Nutrition বাংলাদেশ ফলিত ą¦Ŗą§ą¦·ą§ą¦Ÿą¦æ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(117510, 'https://ror.org/00vk6my81', 'fr', 1, 'https://ror.org/00vk6my81 RESIST: Resilience and elasticity for security and scalability of dynamic networked systems RESIST: Résilience et élasticité pour la mise à l''échelle et la sécurité des systèmes en réseaux dynamiques'),
(117511, 'https://ror.org/00evapg46', 'id', 1, 'https://ror.org/00evapg46 Politeknik Sinarmas Berau Coal'),
(117512, 'https://ror.org/057s2cn07', 'en', 1, 'https://ror.org/057s2cn07 Minneapolis Public Schools'),
(117513, 'https://ror.org/05kdf0483', 'ro', 1, 'https://ror.org/05kdf0483 Asociatia Biologic Non-Governmental Research Organization Biologic'),
(117514, 'https://ror.org/05kxt4539', 'fr', 1, 'https://ror.org/05kxt4539 Ɖcologie Marine Tropicale des OcĆ©ans Pacifique et Indien'),
(117515, 'https://ror.org/02fw3g688', 'fr', 1, 'https://ror.org/02fw3g688 OLAS: Fondements opérationnels, logiques et algébriques des systèmes logiciels OLAS: Operational, Logical, and Algebraic foundations for Software systems'),
(117516, 'https://ror.org/050vhfh57', 'fr', 1, 'https://ror.org/050vhfh57 Laboratoire d''Etudes Interdisciplinaires sur le RƩel et les Imaginaires Sociaux'),
(117517, 'https://ror.org/04d9ye378', 'en', 1, 'https://ror.org/04d9ye378 Open Door Veterinary Collective'),
(117518, 'https://ror.org/005wyj849', 'en', 1, 'https://ror.org/005wyj849 Institute of Musicology SASA MuzikoloÅ”ki institut Srpske akademije nauka i umetnosti Музиколошки ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”ŠŠŠ£'),
(117519, 'https://ror.org/02we4cq45', 'en', 1, 'https://ror.org/02we4cq45 Hensard University'),
(117520, 'https://ror.org/059213d70', 'fr', 1, 'https://ror.org/059213d70 DATASHAPE: Comprendre la forme des donnƩes DATASHAPE: Understanding the shape of data'),
(117521, 'https://ror.org/044zr5266', 'en', 1, 'https://ror.org/044zr5266 Chicago Academy of Sciences'),
(117522, 'https://ror.org/022ccnc24', 'en', 1, 'https://ror.org/022ccnc24 Sudanese Medical Research Association (SMRA) Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų³ŁˆŲÆŲ§Ł†ŁŠŲ© للبحث Ų§Ł„Ų·ŲØŁŠ'),
(117523, 'https://ror.org/042f4ww95', 'fr', 1, 'https://ror.org/042f4ww95 MCTAO: Mathematics for Control, Transport and Applications MCTAO: MathƩmatiques pour le ContrƓle, le Transport et leurs Applications'),
(117524, 'https://ror.org/044843a98', 'fr', 1, 'https://ror.org/044843a98 Service d''Ɖtude des RĆ©acteurs et de MathĆ©matiques AppliquĆ©es'),
(117525, 'https://ror.org/00e7ec781', 'en', 1, 'https://ror.org/00e7ec781 United States Department of Agriculture Climate Hubs'),
(117526, 'https://ror.org/0193rx222', 'en', 1, 'https://ror.org/0193rx222 Asia Water Council'),
(117527, 'https://ror.org/03edafd86', 'en', 1, 'https://ror.org/03edafd86 Bogomolets National Medical University Narodowy Medyczny Uniwersytet im. O.Bohomolca ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. А. Š‘Š¾Š³Š¾Š¼Š¾Š»ŃŒŃ†Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠžŠ»ŠµŠŗŃŠ°Š½Š“Ń€Š° Š‘Š¾Š³Š¾Š¼Š¾Š»ŃŒŃ†Ń'),
(117528, 'https://ror.org/02dg7ky20', 'fr', 1, 'https://ror.org/02dg7ky20 Etudes montpelliƩraines du monde anglophone'),
(117529, 'https://ror.org/00a6ctc34', 'en', 0, 'https://ror.org/00a6ctc34 EIILM University ई.आइ.आइ.ą¤ą¤².ą¤ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(117530, 'https://ror.org/036f4sz05', 'en', 1, 'https://ror.org/036f4sz05 Sieć Badawcza Łukasiewicz Łukasiewicz Research Network'),
(117531, 'https://ror.org/00bneyt76', 'en', 1, 'https://ror.org/00bneyt76 Raiganj University'),
(117532, 'https://ror.org/05tdbce05', 'en', 1, 'https://ror.org/05tdbce05 BSCS Science Learning'),
(117533, 'https://ror.org/04jw21793', 'de', 1, 'https://ror.org/04jw21793 Bundesministerium für Landwirtschaft, Ernährung und Heimat Federal Ministry of Agriculture, Food and Regional Identity'),
(117534, 'https://ror.org/03ghpfq38', 'fr', 1, 'https://ror.org/03ghpfq38 Ecole de Commerce et de Management Ć  Paris'),
(117535, 'https://ror.org/05mx1gf76', 'en', 1, 'https://ror.org/05mx1gf76 Kangdong Sacred Heart Hospital ź°•ė™ģ„±ģ‹¬ė³‘ģ›'),
(117536, 'https://ror.org/00xkg0532', 'en', 1, 'https://ror.org/00xkg0532 LINKMEDIA: Creating and exploiting explicit links between multimedia fragments'),
(117537, 'https://ror.org/00esssx91', 'en', 1, 'https://ror.org/00esssx91 Dakshin Foundation'),
(117538, 'https://ror.org/03tfk6587', 'en', 1, 'https://ror.org/03tfk6587 Eastern Institute For Integrated Learning In Management - Kolkata'),
(117539, 'https://ror.org/016vzeb02', 'fr', 1, 'https://ror.org/016vzeb02 Maison des sciences humaines'),
(117540, 'https://ror.org/00j0x4512', 'en', 1, 'https://ror.org/00j0x4512 T.K.M Institute of Technology'),
(117541, 'https://ror.org/02jhq7089', 'en', 1, 'https://ror.org/02jhq7089 Mathari National Teaching and Referral Hospital'),
(117542, 'https://ror.org/00zzgef46', 'fr', 1, 'https://ror.org/00zzgef46 STORM: Optimisation statique, mƩthodes d''exƩcution STORM: STatic Optimizations, Runtime Methods'),
(117543, 'https://ror.org/04rk1zv19', 'en', 1, 'https://ror.org/04rk1zv19 Gandaki University ą¤—ą¤£ą„ą¤”ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(117544, 'https://ror.org/02xqz5k24', 'fr', 1, 'https://ror.org/02xqz5k24 Morphogénèse et antigénicité du VIH et des virus des hépatites et émergents'),
(117545, 'https://ror.org/04jegeh59', 'en', 1, 'https://ror.org/04jegeh59 Tajik National Conservatory ŠšŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃŠø миллии Тоҷикистон ба номи Талабхӯҷа Датторов'),
(117546, 'https://ror.org/03m3czb09', 'fr', 1, 'https://ror.org/03m3czb09 BOOST: Bio-informed mOnitoring & Optimization for enhanced Sport & healTh BOOST: Surveillance et Optimisation bio-informƩes pour amƩliorer le Sport et la SantƩ'),
(117547, 'https://ror.org/00dd4fz34', 'en', 1, 'https://ror.org/00dd4fz34 Digital Research Infrastructure for Language Technologies, Arts and Humanities DigitĆ”lnĆ­ výzkumnĆ” infrastruktura pro jazykovĆ© technologie, uměnĆ­ a humanitnĆ­ vědy'),
(117548, 'https://ror.org/0483s2h18', 'fr', 1, 'https://ror.org/0483s2h18 GAMMAO: Adaptive Mesh Generation and Advanced Numerical Methods GAMMAO: GƩnƩration Adaptative de Maillage et MƩthodes numƩriques AvancƩes'),
(117549, 'https://ror.org/04z4sqq49', 'fr', 1, 'https://ror.org/04z4sqq49 CHROMA: Cooperative and Human-aware Robot Navigation in Dynamic Environments CHROMA: Robots coopƩratifs et adaptƩs Ơ la prƩsence humaine en environnements'),
(117550, 'https://ror.org/02hg7rg92', 'en', 1, 'https://ror.org/02hg7rg92 MetaMeta Research'),
(117551, 'https://ror.org/018m9h666', 'fr', 1, 'https://ror.org/018m9h666 Laboratoire de Recherches Juridique & Ɖconomique'),
(117552, 'https://ror.org/001kxme72', 'en', 1, 'https://ror.org/001kxme72 Avantyx LLC Avantyx LLC (United States)'),
(117553, 'https://ror.org/01e7v7w47', 'en', 1, 'https://ror.org/01e7v7w47 University of Calcutta UniversitĆ© de calcutta ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ কলকাতা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ਕੋਲਕਾਤਾ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®•ąÆŠą®²ąÆą®•ą®¤ąÆą®¤ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą²•ą²²ą³ą²•ą²¤ą³ą²¤ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą“•ąµŠąµ½ą“•ąµą“•ą“¤ąµą“¤ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(117554, 'https://ror.org/03f7m6v13', 'id', 1, 'https://ror.org/03f7m6v13 STT Internasional Harvest Tangerang'),
(117555, 'https://ror.org/052d1cv78', 'fr', 1, 'https://ror.org/052d1cv78 Institut GƩnƩtique, Reproduction et DƩveloppement'),
(117556, 'https://ror.org/01502ca60', 'fr', 1, 'https://ror.org/01502ca60 Hospices Civils de Lyon'),
(117557, 'https://ror.org/03qenzx07', 'en', 1, 'https://ror.org/03qenzx07 Accelerated Muscle Biotechnologies Accelerated Muscle Biotechnologies (United States)'),
(117558, 'https://ror.org/040snv716', 'en', 1, 'https://ror.org/040snv716 Digital Surf'),
(117559, 'https://ror.org/04ef91678', 'fr', 1, 'https://ror.org/04ef91678 Institut de Radiobiologie Cellulaire et MolƩculaire'),
(117560, 'https://ror.org/014q27p18', 'en', 1, 'https://ror.org/014q27p18 Belgrade Center for Digital Humanities Centar za digitalne humanističke nauke'),
(117561, 'https://ror.org/03v581z64', 'fr', 1, 'https://ror.org/03v581z64 Service d''Etude des Prions et des Infections Atypiques'),
(117562, 'https://ror.org/0315e5x55', 'fr', 1, 'https://ror.org/0315e5x55 Centre Inria de Saclay Inria Saclay Centre'),
(117563, 'https://ror.org/04cw6st05', 'en', 1, 'https://ror.org/04cw6st05 Prifysgol Llundain University of London'),
(117564, 'https://ror.org/035rgqg63', 'fr', 1, 'https://ror.org/035rgqg63 Institut National SupƩrieur des Sciences et Techniques d''AbƩchƩ'),
(117565, 'https://ror.org/02j6qbz85', 'id', 1, 'https://ror.org/02j6qbz85 Sekolah Tinggi Agama Islam Muhammadiyah Tulungagung'),
(117566, 'https://ror.org/01rdjjz02', 'en', 1, 'https://ror.org/01rdjjz02 Institut za pedagoÅ”ka istraživanja Institute for Educational Research Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за пеГагошка ŠøŃŃ‚Ń€Š°Š¶ŠøŠ²Š°ŃšŠ°'),
(117567, 'https://ror.org/04ddwnb19', 'en', 1, 'https://ror.org/04ddwnb19 LIO'),
(117568, 'https://ror.org/00fx27x20', 'es', 1, 'https://ror.org/00fx27x20 Hospital ClĆ­nica San AgustĆ­n'),
(117569, 'https://ror.org/05eyd5d35', 'fr', 1, 'https://ror.org/05eyd5d35 Centre Inria de Paris Inria Paris Centre'),
(117570, 'https://ror.org/01txpb462', 'ro', 1, 'https://ror.org/01txpb462 Centrul Național de Expertize Judiciare'),
(117571, 'https://ror.org/01fftxe08', 'fr', 1, 'https://ror.org/01fftxe08 Institut de Biologie IntƩgrative de la Cellule Institute of Integrative Biology of the Cell'),
(117572, 'https://ror.org/027fxah32', 'id', 1, 'https://ror.org/027fxah32 Politeknik Perkapalan Negeri Surabaya Surabaya Shipbuilding State Polytechnic'),
(117573, 'https://ror.org/039a2re55', 'en', 1, 'https://ror.org/039a2re55 Hochschule für angewandte Wissenschaft St. Pölten University of Applied Sciences St Pölten'),
(117574, 'https://ror.org/04y0qz640', 'fr', 1, 'https://ror.org/04y0qz640 Psychologie des âges de la vie et adaptation Psychology of the Various Stages of Life and Adaptation'),
(117575, 'https://ror.org/040ps4t96', 'de', 1, 'https://ror.org/040ps4t96 Kompetenzzentrum Obstbau Bodensee'),
(117576, 'https://ror.org/010w4rs44', 'es', 1, 'https://ror.org/010w4rs44 Universidad TƩcnica "Luis Vargas Torres"'),
(117577, 'https://ror.org/03n2qjy25', 'fr', 1, 'https://ror.org/03n2qjy25 CALISTO: Approches stochastiques pour les Ʃcoulements complexes et l''environnement CALISTO: Stochastic Approaches for Complex Flows and Environment'),
(117578, 'https://ror.org/03856b930', 'fr', 1, 'https://ror.org/03856b930 MINGUS: MultI-scale Numerical Geometric Schemes MINGUS: SchƩmas numƩriques gƩomƩtriques multi-Ʃchelles'),
(117579, 'https://ror.org/018t9wj74', 'en', 1, 'https://ror.org/018t9wj74 Institute of Horticulture (LatHort)'),
(117580, 'https://ror.org/04akdr244', 'fr', 1, 'https://ror.org/04akdr244 Translational and Applicative Neuroimaging Research Unit UnitƩ de recherche en neuroimagerie applicative clinique et translationnelle'),
(117581, 'https://ror.org/02xvc5r05', 'en', 1, 'https://ror.org/02xvc5r05 Government of Victoria'),
(117582, 'https://ror.org/05cfv5621', 'id', 1, 'https://ror.org/05cfv5621 Institut Teknologi dan Bisnis Muhammadiyah Polewali Mandar Muhammadiyah Polewali Mandar Institute of Technology and Business'),
(117583, 'https://ror.org/04nmjep87', 'en', 1, 'https://ror.org/04nmjep87 University of California Natural Reserve System'),
(117584, 'https://ror.org/00fdrg150', 'de', 1, 'https://ror.org/00fdrg150 Bundesprogramm Ɩkologischer Landbau'),
(117585, 'https://ror.org/0169jeb69', 'id', 1, 'https://ror.org/0169jeb69 Universitas Teknologi Digital Indonesia'),
(117586, 'https://ror.org/03gz4y884', 'fr', 1, 'https://ror.org/03gz4y884 Laboratoire de MƩtƩorologie Physique'),
(117587, 'https://ror.org/02kxjkv05', 'fr', 1, 'https://ror.org/02kxjkv05 MONC: Mathematical modeling for Oncology MONC: ModƩlisation MathƩmatique pour l''Oncologie'),
(117588, 'https://ror.org/02hyqz930', 'en', 1, 'https://ror.org/02hyqz930 Measurement Incorporated (United States)'),
(117589, 'https://ror.org/00yjpxn36', 'en', 1, 'https://ror.org/00yjpxn36 Maharashtra National Law University Mumbai'),
(117590, 'https://ror.org/05qjm4845', 'en', 1, 'https://ror.org/05qjm4845 Botswana University of Agriculture and Natural Resources'),
(117591, 'https://ror.org/05qacnn14', 'fr', 1, 'https://ror.org/05qacnn14 EDGE: Extended formulations and Decomposition for Generic optimization problems EDGE: Formulations étendues et méthodes de décomposition pour des problèmes génériques d''optimisation'),
(117592, 'https://ror.org/0503ejf32', 'en', 1, 'https://ror.org/0503ejf32 Manouba University UniversitĆ© de la manouba Ų¬Ų§Ł…Ų¹Ų© Ł…Ł†ŁˆŲØŲ©'),
(117593, 'https://ror.org/040t43x18', 'en', 1, 'https://ror.org/040t43x18 University of West Bohemia in Pilsen ZĆ”padočeskĆ” univerzita v Plzni'),
(117594, 'https://ror.org/04fvec703', 'fr', 1, 'https://ror.org/04fvec703 TROPICAL: MƩthodes tropicales: structures, algorithmes et interactions TROPICAL: Tropical methods: structures, algorithms and interactions'),
(117595, 'https://ror.org/037y7xs42', 'en', 1, 'https://ror.org/037y7xs42 Sankalchand Patel University'),
(117596, 'https://ror.org/043a79453', 'en', 1, 'https://ror.org/043a79453 East West Medical College Hospital'),
(117597, 'https://ror.org/05c6e6w24', 'fr', 1, 'https://ror.org/05c6e6w24 PASTA: Processus AlƩatoires Spatio-Temporels et Applications PASTA: Space-time random processes and applications'),
(117598, 'https://ror.org/01def1p71', 'en', 1, 'https://ror.org/01def1p71 Institute of History Belgrade Istorijski institut Beograd Š˜ŃŃ‚Š¾Ń€ŠøŃ˜ŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ БеограГ'),
(117599, 'https://ror.org/00xc55v17', 'fr', 1, 'https://ror.org/00xc55v17 GƩnomique MƩtabolique du Genoscope'),
(117600, 'https://ror.org/00w25wb51', 'fr', 1, 'https://ror.org/00w25wb51 ODYSSEY: Ocean DYnamicS obSErvation analYsis ODYSSEY: OcƩan Dynamique Observations Analyse'),
(117601, 'https://ror.org/03b7zcy46', 'de', 1, 'https://ror.org/03b7zcy46 FiGD Akademie GmbH'),
(117602, 'https://ror.org/018g4r976', 'en', 1, 'https://ror.org/018g4r976 British University'),
(117603, 'https://ror.org/03gs0q910', 'en', 1, 'https://ror.org/03gs0q910 Shri Jagdishprasad Jhabarmal Tibrewala University ą¤¶ą„ą¤°ą„€ ą¤œą¤—ą¤¦ą„€ą¤¶ą¤Ŗą„ą¤°ą¤øą¤¾ą¤¦ ą¤ą¤¾ą¤¬ą¤°ą¤®ą¤² ą¤Ÿą¤æą¤¬ą„œą„‡ą¤µą¤¾ą¤²ą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(117604, 'https://ror.org/04y9vv765', 'fr', 1, 'https://ror.org/04y9vv765 HEPHAISTOS: HExapode, PHysiologie, AssISTance et Objets de Service HEPHAISTOS: HExapode, PHysiology, AssISTance and RobOtics'),
(117605, 'https://ror.org/0331z0d02', 'fr', 1, 'https://ror.org/0331z0d02 AYANA: AI and Remote Sensing on board for the New Space AYANA: TƩlƩdƩtection et IA embarquƩs pour le "New Space"'),
(117606, 'https://ror.org/01n9yr226', 'fr', 1, 'https://ror.org/01n9yr226 Centre Tourangeau d’Histoire et d’Études des Sources'),
(117607, 'https://ror.org/04z8k9a98', 'en', 1, 'https://ror.org/04z8k9a98 Universidade de Coimbra University of Coimbra'),
(117608, 'https://ror.org/05x0rq785', 'id', 1, 'https://ror.org/05x0rq785 College of Economics Business Management Indonesia Sekolah Tinggi Ilmu Ekonomi Manajemen Bisnis Indonesia'),
(117609, 'https://ror.org/02m9pkf41', 'en', 1, 'https://ror.org/02m9pkf41 CAPSID: Computational Algorithms for Protein Structures and Interactions'),
(117610, 'https://ror.org/019w82839', 'fr', 1, 'https://ror.org/019w82839 Service Cellules Souches et Radiation'),
(117611, 'https://ror.org/05nyav747', 'fr', 1, 'https://ror.org/05nyav747 IDEFIX: Inversion of Differential Equations For Imaging and physiX IDEFIX: Solution d''Equations Differentielles pour l''Imagerie et la physique'),
(117612, 'https://ror.org/01zvb6k44', 'en', 1, 'https://ror.org/01zvb6k44 Nigerian University of Technology and Management'),
(117613, 'https://ror.org/02exfhg30', 'id', 1, 'https://ror.org/02exfhg30 Akademi Maritim Suaka Bahari'),
(117614, 'https://ror.org/03jqma326', 'fr', 1, 'https://ror.org/03jqma326 FAIRPLAY: Coopetitive AI: Fairness, Privacy, Incentives FAIRPLAY: IA coopƩrative : ƩquitƩ, vie privƩe, incitations'),
(117615, 'https://ror.org/04r9x1a08', 'no_lang_code', 1, 'https://ror.org/04r9x1a08 AstraZeneca (United Kingdom)'),
(117616, 'https://ror.org/03rmrcq20', 'en', 1, 'https://ror.org/03rmrcq20 University of British Columbia UniversitƩ de la colombie-britannique'),
(117617, 'https://ror.org/0305gxg06', 'fr', 1, 'https://ror.org/0305gxg06 DEDUCTEAM: Deduction modulo, interopƩrabilitƩ et dƩmonstration automatique'),
(117618, 'https://ror.org/04t8n5m24', 'en', 1, 'https://ror.org/04t8n5m24 Mother Theresa Institute Of Engineering And Technology'),
(117619, 'https://ror.org/0133xxx15', 'fr', 1, 'https://ror.org/0133xxx15 Recherches sur les Suds et les Orients'),
(117620, 'https://ror.org/04jrn1n55', 'es', 1, 'https://ror.org/04jrn1n55 Technological University of Nuevo Laredo Universidad Tecnológica de Nuevo Laredo'),
(117621, 'https://ror.org/00nf46858', 'fr', 1, 'https://ror.org/00nf46858 Clermont Recherche Management Clermont Research Management'),
(117622, 'https://ror.org/0159yvt51', 'fr', 1, 'https://ror.org/0159yvt51 LACODAM: Fouille de donnƩes collaborative Ơ grande Ʃchelle LACODAM: Large scale Collaborative Data Mining'),
(117623, 'https://ror.org/02mv3qy73', 'fr', 1, 'https://ror.org/02mv3qy73 MULTISPEECH: La parole multimodale en interaction MULTISPEECH: Multimodal Speech in Interaction'),
(117624, 'https://ror.org/04thx6m88', 'en', 1, 'https://ror.org/04thx6m88 Private Scientific Institution "Scientific and Research University of Medical and Pharmaceutical Law" ŠŸŃ€ŠøŠ²Š°Ń‚Š½Š° наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ меГичного та фармацевтичного права»'),
(117625, 'https://ror.org/029f9qw15', 'no', 1, 'https://ror.org/029f9qw15 ViGOR Rehabilitation Hospital ViGƘR Rehabiliteringssykehus'),
(117626, 'https://ror.org/05hn46120', 'en', 1, 'https://ror.org/05hn46120 Gender Equity Policy Institute'),
(117627, 'https://ror.org/05rky1t53', 'en', 1, 'https://ror.org/05rky1t53 ISM University of Management and Economics ISM Vadybos ir ekonomikos universitetas'),
(117628, 'https://ror.org/035xy2s54', 'fr', 1, 'https://ror.org/035xy2s54 Département d''Ingénierie des Systèmes The Systems Engineering Division'),
(117629, 'https://ror.org/02rrh1r89', 'en', 1, 'https://ror.org/02rrh1r89 LifeLong Medical Care'),
(117630, 'https://ror.org/03w9t3v76', 'fr', 1, 'https://ror.org/03w9t3v76 MOCQUA: Designing the Future of Computational Models MOCQUA: Modèles de calcul émergents'),
(117631, 'https://ror.org/01q2py144', 'en', 1, 'https://ror.org/01q2py144 Augustine University, Ilara'),
(117632, 'https://ror.org/01h3s9v09', 'fr', 1, 'https://ror.org/01h3s9v09 Centre de Recherches Interdisciplinaires en Sciences humaines et Sociales de Montpellier'),
(117633, 'https://ror.org/04gjma874', 'en', 1, 'https://ror.org/04gjma874 Geological Institute of Ethiopia'),
(117634, 'https://ror.org/00kzz1s20', 'en', 1, 'https://ror.org/00kzz1s20 Mariners Polytechnic Colleges Inc');
INSERT INTO `rors` VALUES
(117635, 'https://ror.org/04cd4zm28', 'id', 1, 'https://ror.org/04cd4zm28 Universitas Islam Negeri Jurai Siwo Lampung'),
(117636, 'https://ror.org/03gwakv46', 'fr', 1, 'https://ror.org/03gwakv46 LEMON: Littoral Environment: M0dels and Numerics LEMON: Littoral, Environnement, Modèles et Outils Numériques'),
(117637, 'https://ror.org/04zpfdd42', 'en', 1, 'https://ror.org/04zpfdd42 Lentera Anak Foundation Yayasan Lentera Anak'),
(117638, 'https://ror.org/038mncb54', 'en', 1, 'https://ror.org/038mncb54 MIMETIC: Analysis-Synthesis Approach for Virtual Human Simulation'),
(117639, 'https://ror.org/01tvrq624', 'en', 1, 'https://ror.org/01tvrq624 Kavli Institute for Systems Neuroscience'),
(117640, 'https://ror.org/0394www40', 'fr', 1, 'https://ror.org/0394www40 UMR Ressources'),
(117641, 'https://ror.org/051g1wn98', 'no_lang_code', 1, 'https://ror.org/051g1wn98 OFR Consultants (United Kingdom)'),
(117642, 'https://ror.org/04t7c7a05', 'en', 1, 'https://ror.org/04t7c7a05 Dr. D. Y. Patil B-School'),
(117643, 'https://ror.org/03j3k7d45', 'en', 1, 'https://ror.org/03j3k7d45 Chongqing Jianzhu College'),
(117644, 'https://ror.org/010h8d806', 'fr', 1, 'https://ror.org/010h8d806 SEMIS: Sciences, Environments, Information, Societies SEMIS: Sciences, Milieux, Information, SociƩtƩs'),
(117645, 'https://ror.org/01q4qyd51', 'en', 1, 'https://ror.org/01q4qyd51 Khwopa Engineering College'),
(117646, 'https://ror.org/0286qer95', 'en', 1, 'https://ror.org/0286qer95 Czech National Infrastructure for Biological Data ČeskÔ nÔrodní infrastruktura pro biologickÔ data'),
(117647, 'https://ror.org/01bkj6835', 'en', 1, 'https://ror.org/01bkj6835 Sieć Badawcza Łukasiewicz – Instytut Tele- i Radiotechniczny Łukasiewicz Research Network - Tele and Radio Research Institute'),
(117648, 'https://ror.org/059wd2y60', 'fr', 1, 'https://ror.org/059wd2y60 Adaptations MƩtaboliques Ơ l''Exercice en conditions Physiologiques et Pathologiques'),
(117649, 'https://ror.org/017e7nq37', 'fr', 1, 'https://ror.org/017e7nq37 Conservatoire d''espaces naturels des Hauts-de-France'),
(117650, 'https://ror.org/02ygx5k49', 'fr', 1, 'https://ror.org/02ygx5k49 Institut de Recherche Intersite Ɖtudes Culturelles'),
(117651, 'https://ror.org/0574q9381', 'fr', 1, 'https://ror.org/0574q9381 Calcul QuƩbec'),
(117652, 'https://ror.org/05d35hp70', 'fr', 1, 'https://ror.org/05d35hp70 PARMA: Méthodes particulaires utilisant Monge-Ampère PARMA: Particle methods using Monge-Ampère'),
(117653, 'https://ror.org/0406xq039', 'fr', 1, 'https://ror.org/0406xq039 SIMBIOTX: SImulations en Médecine, BIOtechnologie et ToXicologie de systèmes multicellulaires SIMBIOTX: SImulations in Medicine, BIOtechnology and ToXicology of multicellular systems'),
(117654, 'https://ror.org/04k1f6611', 'en', 1, 'https://ror.org/04k1f6611 Maccabi Healthcare Services'),
(117655, 'https://ror.org/040jf9322', 'en', 1, 'https://ror.org/040jf9322 Luxembourg Institute of Socio-Economic Research'),
(117656, 'https://ror.org/05waa9105', 'en', 1, 'https://ror.org/05waa9105 Kite Pharma Kite Pharma (United States)'),
(117657, 'https://ror.org/00077hj81', 'fr', 1, 'https://ror.org/00077hj81 DEVINE: DEpendable distributed systems: formal VerificatIoN made Efficient DEVINE: Vérification efficace pour des systèmes distribués fiables'),
(117658, 'https://ror.org/0119axx58', 'fr', 1, 'https://ror.org/0119axx58 QualitƩ de vie et SantƩ psychologique'),
(117659, 'https://ror.org/03wewq802', 'tr', 1, 'https://ror.org/03wewq802 Arnavutkƶy Devlet Hastanesi'),
(117660, 'https://ror.org/02jnv7t64', 'es', 1, 'https://ror.org/02jnv7t64 Tecnológico Nacional de México Campus Valladolid'),
(117661, 'https://ror.org/05v519z54', 'fr', 1, 'https://ror.org/05v519z54 POTIOC: Nouvelles Interactions Multimodales pour une ExpƩrience Utilisateur Stimulante POTIOC: Novel Multimodal Interactions for a Stimulating User Experience'),
(117662, 'https://ror.org/046s64z12', 'fr', 1, 'https://ror.org/046s64z12 Medicines and Healthcare Technologies MƩdicaments et Technologies pour la SantƩ'),
(117663, 'https://ror.org/00az7j379', 'fr', 1, 'https://ror.org/00az7j379 Laboratoire des Maladies NeurodƩgƩnƩratives'),
(117664, 'https://ror.org/02whst089', 'en', 1, 'https://ror.org/02whst089 CloudBank'),
(117665, 'https://ror.org/039yn6r46', 'en', 1, 'https://ror.org/039yn6r46 Linguistic Society of America'),
(117666, 'https://ror.org/02pg8gw87', 'no_lang_code', 0, 'https://ror.org/02pg8gw87 SPTS Technologies (United Kingdom)'),
(117667, 'https://ror.org/007w39b04', 'en', 1, 'https://ror.org/007w39b04 ICAR – National Research Centre on Litchi भा.ą¤•ą„ƒ.ą¤…ą¤Øą„.प. – ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤²ą„€ą¤šą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(117668, 'https://ror.org/04czapd40', 'fr', 1, 'https://ror.org/04czapd40 Communication, Ressources Humaines et Intervention Sociale'),
(117669, 'https://ror.org/0576vz251', 'fr', 1, 'https://ror.org/0576vz251 Institut de Recherche Juridique Interdisciplinaire'),
(117670, 'https://ror.org/0148qj345', 'nl', 1, 'https://ror.org/0148qj345 Rivas Zorggroep, Beatrixziekenhuis'),
(117671, 'https://ror.org/007k1sp19', 'en', 1, 'https://ror.org/007k1sp19 HYBRID: 3D interaction with virtual environments using body and mind'),
(117672, 'https://ror.org/01gamk045', 'fr', 1, 'https://ror.org/01gamk045 GALLINETTE: Gallinette : vers une nouvelle gƩnƩration d''assistant Ơ la preuve GALLINETTE: Gallinette: developing a new generation of proof assistants'),
(117673, 'https://ror.org/0124m4y62', 'en', 1, 'https://ror.org/0124m4y62 EthosLab (Italy)'),
(117674, 'https://ror.org/049zrd669', 'en', 1, 'https://ror.org/049zrd669 Khawarizmi University Technical College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų®ŁˆŲ§Ų±Ų²Ł…ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(117675, 'https://ror.org/0044v6530', 'en', 1, 'https://ror.org/0044v6530 Ahlul Bayt International University دانؓگاه ŲØŪŒŁ† Ų§Ł„Ł…Ł„Ł„ŪŒ اهل بیت Ų¹Ł„ŪŒŁ‡Ł… السلام'),
(117676, 'https://ror.org/04nqts970', 'en', 1, 'https://ror.org/04nqts970 Latakia University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł„Ų§Ų°Ł‚ŁŠŲ©'),
(117677, 'https://ror.org/05d6s6h03', 'en', 1, 'https://ror.org/05d6s6h03 Russian Research Institute of Economics, Politics and Law in Science and Technology'),
(117678, 'https://ror.org/02fh9d380', 'en', 1, 'https://ror.org/02fh9d380 Dayanand Ayurvedic College'),
(117679, 'https://ror.org/05xfe3w07', 'en', 1, 'https://ror.org/05xfe3w07 Ludwig Boltzmann Institut für Hämatologie und Onkologie Ludwig Boltzmann Institute for Hematology and Oncology'),
(117680, 'https://ror.org/047hbb113', 'en', 1, 'https://ror.org/047hbb113 Jinhua University of Vocational Technology é‡‘åŽčŒäøšęŠ€ęœÆå¤§å­¦'),
(117681, 'https://ror.org/04abbt041', 'fr', 1, 'https://ror.org/04abbt041 PIRAT: Protection de l''information et rƩsistances aux attaques PIRAT: Protection of Information and Resistance to ATtacks'),
(117682, 'https://ror.org/00xcapc45', 'fr', 1, 'https://ror.org/00xcapc45 Computational Morphometry and Morphodynamics of Cellular and Supracellular Structures MORPHEME: Morphologie et Images'),
(117683, 'https://ror.org/00kztt736', 'en', 1, 'https://ror.org/00kztt736 The Kavli Foundation'),
(117684, 'https://ror.org/02sk9xe88', 'en', 1, 'https://ror.org/02sk9xe88 Jain hospital'),
(117685, 'https://ror.org/04xmrga76', 'en', 1, 'https://ror.org/04xmrga76 Huai''an Hospital of Huai''an City Huaian Hospital of Huaian City'),
(117686, 'https://ror.org/01ckt2a69', 'es', 1, 'https://ror.org/01ckt2a69 Universidad de Chalcatongo'),
(117687, 'https://ror.org/00z7gtd29', 'en', 1, 'https://ror.org/00z7gtd29 Institut Teknologi Lombok Lombok Institute of Technology'),
(117688, 'https://ror.org/02141gz69', 'en', 1, 'https://ror.org/02141gz69 ESC Clermont Business School'),
(117689, 'https://ror.org/02ewzwr87', 'no_lang_code', 1, 'https://ror.org/02ewzwr87 University of Al-Qadisiyah Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ų§ŲÆŲ³ŁŠŲ©'),
(117690, 'https://ror.org/03ny8xv10', 'en', 1, 'https://ror.org/03ny8xv10 Al-Diwaniyah Teaching Hospital مستؓفى Ų§Ł„ŲÆŁŠŁˆŲ§Ł†ŁŠŲ© Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ…ŁŠ'),
(117691, 'https://ror.org/0069cx113', 'no_lang_code', 1, 'https://ror.org/0069cx113 Terradue (Italy)'),
(117692, 'https://ror.org/017wmdt28', 'en', 1, 'https://ror.org/017wmdt28 Toraighyrov University Торайгыров ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(117693, 'https://ror.org/03gwg9503', 'en', 1, 'https://ror.org/03gwg9503 Konya Meram State Hospital'),
(117694, 'https://ror.org/01y7y4033', 'en', 1, 'https://ror.org/01y7y4033 Royal Academy of Dramatic Art'),
(117695, 'https://ror.org/03d5w9863', 'fr', 1, 'https://ror.org/03d5w9863 National Institute of Agronomy of Toulouse Ɖcole Nationale SupĆ©rieure Agronomique de Toulouse'),
(117696, 'https://ror.org/02vbhxm52', 'fr', 1, 'https://ror.org/02vbhxm52 Service DƩveloppement Radiation et RƩparation'),
(117697, 'https://ror.org/01g4zf651', 'fr', 1, 'https://ror.org/01g4zf651 Plateforme Aquitaine de CaractƩrisation des MatƩriaux'),
(117698, 'https://ror.org/05kpxxt10', 'en', 1, 'https://ror.org/05kpxxt10 General Hospital Dr. Josip Benčević Slavonski Brod Opća Bolnica Dr. Josip Benčević Slavonski Brod'),
(117699, 'https://ror.org/01svd5660', 'en', 1, 'https://ror.org/01svd5660 Jan IngenHousz Institute'),
(117700, 'https://ror.org/01b1zcy98', 'en', 1, 'https://ror.org/01b1zcy98 Ministry of Technical and Vocational Education وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„ŲŖŁ‚Ł†ŁŠ ŁˆŲ§Ł„ŁŁ†ŁŠ ŲØŲ§Ł„Ų­ŁƒŁˆŁ…Ų© Ų§Ł„Ł„ŁŠŲØŁŠŲ©'),
(117701, 'https://ror.org/0016fer50', 'en', 1, 'https://ror.org/0016fer50 AxiomaVox'),
(117702, 'https://ror.org/0114vxt50', 'en', 1, 'https://ror.org/0114vxt50 Wavefunction (United States)'),
(117703, 'https://ror.org/00c9pnr51', 'fr', 1, 'https://ror.org/00c9pnr51 I4S: Inference for Intelligent Instrumented InfraStructures I4S: InfƩrence pour les InfraStructures Intelligentes et InstrumentƩes'),
(117704, 'https://ror.org/01an7q238', 'en', 1, 'https://ror.org/01an7q238 Universidad de California en Berkeley University of California, Berkeley UniversitƩ de Californie Ơ Berkeley'),
(117705, 'https://ror.org/02ya78342', 'en', 1, 'https://ror.org/02ya78342 Ragnar Frisch Centre for Economic Research Stiftelsen Frischsenteret for samfunnsĆøkonomisk forskning'),
(117706, 'https://ror.org/0260bxf47', 'en', 1, 'https://ror.org/0260bxf47 Open Christian University'),
(117707, 'https://ror.org/04v8e7p69', 'en', 1, 'https://ror.org/04v8e7p69 Public Relations Society of America'),
(117708, 'https://ror.org/04dp43p74', 'en', 1, 'https://ror.org/04dp43p74 Hallym University Hangang Sacred Heart Hospital ķ•œė¦¼ėŒ€ķ•™źµ ķ•œź°•ģ„±ģ‹¬ė³‘ģ›'),
(117709, 'https://ror.org/03m2x1q45', 'en', 1, 'https://ror.org/03m2x1q45 Universidad de Arizona University of Arizona'),
(117710, 'https://ror.org/01s29vd38', 'fr', 1, 'https://ror.org/01s29vd38 FranƧois Jacob Institute of biology Institut de biologie FranƧois Jacob'),
(117711, 'https://ror.org/00rttk466', 'fr', 1, 'https://ror.org/00rttk466 GENSCALE: Algorithmes pour les donnƩes gƩnomiques : passage Ơ l''Ʃchelle, prƩcision, frugalitƩ GENSCALE: Algorithms for Genomic Data: Scalability, Precision and Sustainability'),
(117712, 'https://ror.org/03gvm2667', 'fr', 1, 'https://ror.org/03gvm2667 POEMS: Propagation des Ondes : Etude MathƩmatique et Simulationan'),
(117713, 'https://ror.org/00m83qy05', 'nl', 1, 'https://ror.org/00m83qy05 Groninger Archieven'),
(117714, 'https://ror.org/015b80x98', 'fr', 1, 'https://ror.org/015b80x98 SIMSMART: SIMulating Stochastic Models with pARTicles SIMSMART: SIMulation pARTiculaire de ModĆØles Stochastiques'),
(117715, 'https://ror.org/00nvd7q77', 'en', 1, 'https://ror.org/00nvd7q77 Sanskriti University, Mathura'),
(117716, 'https://ror.org/022gakr41', 'fr', 1, 'https://ror.org/022gakr41 Centre Inria de Lyon Inria Lyon Centre'),
(117717, 'https://ror.org/0421ngv68', 'fr', 1, 'https://ror.org/0421ngv68 SUSHI: SecUrity at the Software-Hardware Interface SUSHI: SƩcuritƩ Ơ l''interface logiciel/matƩriel'),
(117718, 'https://ror.org/011pjwf87', 'en', 1, 'https://ror.org/011pjwf87 Organisation météorologique mondiale Organización Meteorológica Mundial World Meteorological Organization'),
(117719, 'https://ror.org/035y2ya61', 'en', 1, 'https://ror.org/035y2ya61 Krishna Mohan University'),
(117720, 'https://ror.org/02ztfnz06', 'en', 1, 'https://ror.org/02ztfnz06 Gori State University įƒ’įƒįƒ įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(117721, 'https://ror.org/01atqpz53', 'fr', 1, 'https://ror.org/01atqpz53 Laboratoire commun de mƩtrologie'),
(117722, 'https://ror.org/003cnsp62', 'fr', 1, 'https://ror.org/003cnsp62 Service de Thermo-hydraulique et de MƩcanique des Fluides'),
(117723, 'https://ror.org/01me4zv93', 'fr', 1, 'https://ror.org/01me4zv93 Ɖducation Ɖthique SantĆ©'),
(117724, 'https://ror.org/01zhs7w23', 'en', 1, 'https://ror.org/01zhs7w23 Indian Institute of Information Technology Bhopal'),
(117725, 'https://ror.org/01dq60k83', 'en', 1, 'https://ror.org/01dq60k83 Tohoku University ę±åŒ—å¤§å­¦'),
(117726, 'https://ror.org/043mq6y54', 'en', 1, 'https://ror.org/043mq6y54 Zhejiang Provincial Innovation Center of Laser Intelligent Equipment Technology ęµ™ę±Ÿēœęæ€å…‰ę™ŗčƒ½č£…å¤‡ęŠ€ęœÆåˆ›ę–°äø­åæƒ'),
(117727, 'https://ror.org/04p1tkq77', 'en', 1, 'https://ror.org/04p1tkq77 Podillia State University ŠŸŠ¾Š“Ń–Š»ŃŒŃŃŒŠŗŠøŠ¹ Державний Університет'),
(117728, 'https://ror.org/016mq8947', 'no_lang_code', 1, 'https://ror.org/016mq8947 CSPC Pharmaceutical Group ēŸ³č—„é›†åœ˜'),
(117729, 'https://ror.org/02f5j5k52', 'es', 1, 'https://ror.org/02f5j5k52 Centro de Salud Laviada'),
(117730, 'https://ror.org/00hxn0m30', 'fr', 1, 'https://ror.org/00hxn0m30 INOCS: INtegrated Optimization with Complex Structure INOCS: Optimisation intégrée pour problèmes à structure complexe'),
(117731, 'https://ror.org/02ey66512', 'fr', 0, 'https://ror.org/02ey66512 Trajectoires d''OcƩanie'),
(117732, 'https://ror.org/02b1r3q86', 'en', 1, 'https://ror.org/02b1r3q86 Centre International de Hautes Etudes Agronomiques MƩditerranƩennes Centre International de Hautes Ʃtudes agronomiques mƩditerranƩennes International Centre for Advanced Mediterranean Agronomic Studies'),
(117733, 'https://ror.org/01526pb12', 'en', 1, 'https://ror.org/01526pb12 Bundesanstalt für Landwirtschaft und Ernährung Federal Office for Food and Agriculture'),
(117734, 'https://ror.org/0109gxs86', 'fr', 1, 'https://ror.org/0109gxs86 Interactions Culturelles et Discursives'),
(117735, 'https://ror.org/01v1jam04', 'de', 1, 'https://ror.org/01v1jam04 Ludwig Boltzmann Gesellschaft'),
(117736, 'https://ror.org/02s27py21', 'es', 1, 'https://ror.org/02s27py21 Centro de Estudios y Experimentación de Obras Públicas'),
(117737, 'https://ror.org/03rh5w887', 'en', 1, 'https://ror.org/03rh5w887 Every Cure'),
(117738, 'https://ror.org/052h22979', 'en', 1, 'https://ror.org/052h22979 Starex University'),
(117739, 'https://ror.org/041hae580', 'en', 1, 'https://ror.org/041hae580 Countess of Chester Hospital'),
(117740, 'https://ror.org/056z2b508', 'fr', 1, 'https://ror.org/056z2b508 Laboratoire Interdisciplinaire Formes Architectures Milieux'),
(117741, 'https://ror.org/012bkhy33', 'en', 1, 'https://ror.org/012bkhy33 Molecular Imaging Research Center'),
(117742, 'https://ror.org/005ksrc76', 'fr', 1, 'https://ror.org/005ksrc76 UAR POREA UnitĆ© d’Appui et de Recherche 2567 Ā« Pluridisciplinarité au service de l’Observation et de la Recherche en Environnement et Astronomie Ā»'),
(117743, 'https://ror.org/0081d5r66', 'en', 1, 'https://ror.org/0081d5r66 Membrane Signalling and Inflammation in reperfusion Injuries'),
(117744, 'https://ror.org/00h39nr94', 'fr', 1, 'https://ror.org/00h39nr94 Teacher Education College of Setif Ɖcole Normale SupĆ©rieure de SĆ©tif'),
(117745, 'https://ror.org/03r8z3t63', 'en', 1, 'https://ror.org/03r8z3t63 UNSW Sydney'),
(117746, 'https://ror.org/04v9cqp75', 'en', 1, 'https://ror.org/04v9cqp75 Gujarat Natural Farming Science University, Halol'),
(117747, 'https://ror.org/02va04a41', 'vi', 1, 'https://ror.org/02va04a41 Vinacomin – Institute of Mining Science and Technology Viện Khoa hį»c CĆ“ng nghệ Mį» - Vinacomin'),
(117748, 'https://ror.org/051npad76', 'it', 1, 'https://ror.org/051npad76 Istituto di Ricerca sulla Crescita Economica Sostenibile Research Institute on Sustainable Economic Growth'),
(117749, 'https://ror.org/00mmyvx69', 'no_lang_code', 1, 'https://ror.org/00mmyvx69 Moving Magnet Technologies Moving Magnet Technologies (France)'),
(117750, 'https://ror.org/01avwtb40', 'en', 1, 'https://ror.org/01avwtb40 Imo State Polytechnic Omuma'),
(117751, 'https://ror.org/05jsjeq26', 'en', 1, 'https://ror.org/05jsjeq26 Yongjiang Laboratory'),
(117752, 'https://ror.org/01mf47c71', 'en', 1, 'https://ror.org/01mf47c71 Optics Valley Laboratory'),
(117753, 'https://ror.org/002dyaa55', 'en', 1, 'https://ror.org/002dyaa55 U. R. Rao Satellite Centre'),
(117754, 'https://ror.org/00my0j309', 'fr', 1, 'https://ror.org/00my0j309 Health data-and model-driven approaches for Knowledge Acquisition Heka : Méthodes basées sur les données et modèles en santé pour l''acquisition de connaissances'),
(117755, 'https://ror.org/03ctraj88', 'es', 1, 'https://ror.org/03ctraj88 Neurocenter Santa Cruz (Bolivia)'),
(117756, 'https://ror.org/03wjr3p28', 'en', 1, 'https://ror.org/03wjr3p28 Netcompany SEE & EUI (Luxembourg)'),
(117757, 'https://ror.org/040cxgs87', 'no_lang_code', 1, 'https://ror.org/040cxgs87 Starlab Barcelona SLU Starlab Barcelona SLU (Spain)'),
(117758, 'https://ror.org/01skj4p30', 'en', 1, 'https://ror.org/01skj4p30 South African Population Research Infrastructure Network'),
(117759, 'https://ror.org/0126bwd54', 'pl', 1, 'https://ror.org/0126bwd54 Akademia Wojsk Lądowych imienia generała Tadeusza Kościuszki'),
(117760, 'https://ror.org/01bcn3f20', 'fr', 1, 'https://ror.org/01bcn3f20 Pathobiologie et thƩrapie des maladies du foie Pathobiology and therapy of liver diseases'),
(117761, 'https://ror.org/01bch8q67', 'fr', 1, 'https://ror.org/01bch8q67 Observatoire de Physique du Globe de Clermont-Ferrand'),
(117762, 'https://ror.org/05yhhtx19', 'en', 1, 'https://ror.org/05yhhtx19 The Central Research Institute of the Armed Forces of Ukraine'),
(117763, 'https://ror.org/02za3pt35', 'en', 1, 'https://ror.org/02za3pt35 National Institute of Natural Hazards å›½å®¶č‡Ŗē„¶ē¾å®³é˜²ę²»ē ”ē©¶é™¢'),
(117764, 'https://ror.org/01m10e879', 'en', 1, 'https://ror.org/01m10e879 OpenTopography'),
(117765, 'https://ror.org/053f91n43', 'en', 1, 'https://ror.org/053f91n43 D.B.S. Degree (PG) College'),
(117766, 'https://ror.org/03tjcj052', 'fr', 1, 'https://ror.org/03tjcj052 Centre Inria de l''universitƩ de Bordeaux Inria Centre at the University of Bordeaux'),
(117767, 'https://ror.org/00ggdkg91', 'en', 1, 'https://ror.org/00ggdkg91 Tashkent University of Social Innovation Toshkent ijtimoiy innovatsiya universiteti'),
(117768, 'https://ror.org/02chw6z69', 'en', 1, 'https://ror.org/02chw6z69 Kavli Institute for the Physics and Mathematics of the Universe ć‚«ćƒ–ćƒŖę•°ē‰©é€£ęŗå®‡å®™ē ”ē©¶ę©Ÿę§‹'),
(117769, 'https://ror.org/00wf3sn74', 'en', 1, 'https://ror.org/00wf3sn74 Bundesamt für Verbraucherschutz und Lebensmittelsicherheit Federal Office of Consumer Protection and Food Safety'),
(117770, 'https://ror.org/03prz6j20', 'en', 1, 'https://ror.org/03prz6j20 Forum for Agricultural Research in Africa'),
(117771, 'https://ror.org/03ydkyb10', 'en', 1, 'https://ror.org/03ydkyb10 Sistema Universitario de Wisconsin University of Wisconsin System UniversitƩ du Wisconsin'),
(117772, 'https://ror.org/051bx6086', 'es', 1, 'https://ror.org/051bx6086 Universidad Internacional de Investigación México'),
(117773, 'https://ror.org/05mw4gk09', 'en', 1, 'https://ror.org/05mw4gk09 Rebecca Sieff Hospital בית החולים רבקה זיו'),
(117774, 'https://ror.org/024q3f615', 'en', 1, 'https://ror.org/024q3f615 USDA California Climate Hub'),
(117775, 'https://ror.org/01bgeev84', 'en', 1, 'https://ror.org/01bgeev84 Mahavir Medical Research Centre'),
(117776, 'https://ror.org/03qeca755', 'es', 1, 'https://ror.org/03qeca755 Instituto Tecnológico Superior de Ɖbano S.L.P.'),
(117777, 'https://ror.org/017hhs980', 'en', 1, 'https://ror.org/017hhs980 Centre for Population Ageing Research'),
(117778, 'https://ror.org/001jb9152', 'es', 1, 'https://ror.org/001jb9152 Instituto Superior Universitario Cotopaxi'),
(117779, 'https://ror.org/02akzv132', 'fr', 1, 'https://ror.org/02akzv132 MUSCA: Dynamiques de populations multi-échelles pour des systèmes physiologiques MUSCA: MUltiSCAle population dynamics for physiological systems'),
(117780, 'https://ror.org/05a0dhs15', 'fr', 1, 'https://ror.org/05a0dhs15 Ɖcole Normale SupĆ©rieure - PSL'),
(117781, 'https://ror.org/00h1xm212', 'en', 1, 'https://ror.org/00h1xm212 Tasmanian Emergency Medicine Research Institute'),
(117782, 'https://ror.org/05w1kdn42', 'de', 1, 'https://ror.org/05w1kdn42 LWL-UniversitƤtsklinik Hamm'),
(117783, 'https://ror.org/05n97pt16', 'en', 1, 'https://ror.org/05n97pt16 Nagaland University'),
(117784, 'https://ror.org/02xc7ww16', 'fr', 1, 'https://ror.org/02xc7ww16 SEMAGRAMME: Analyse SƩmantique de la Langue SEMAGRAMME: Semantic Analysis of Natural Language'),
(117785, 'https://ror.org/01r5fjh98', 'en', 1, 'https://ror.org/01r5fjh98 Central Baptist Theological Seminary of Minneapolis'),
(117786, 'https://ror.org/05ejpqr48', 'en', 1, 'https://ror.org/05ejpqr48 Worcester Polytechnic Institute'),
(117787, 'https://ror.org/0486zdp77', 'no_lang_code', 1, 'https://ror.org/0486zdp77 AVL (Turkey)'),
(117788, 'https://ror.org/00y7vs922', 'fr', 1, 'https://ror.org/00y7vs922 ACUMES: Algorithmes et Biologie Structurale ACUMES: Analysis and Control of Unsteady Models for Engineering Sciences Analysis and Control of Unsteady Models for Engineering Sciences'),
(117789, 'https://ror.org/01xtthb56', 'en', 1, 'https://ror.org/01xtthb56 Oslon Yliopisto Universitetet i Oslo University of Oslo'),
(117790, 'https://ror.org/02xhv8r45', 'en', 1, 'https://ror.org/02xhv8r45 University of Kochi Health Sciences'),
(117791, 'https://ror.org/04z5j4a93', 'fr', 1, 'https://ror.org/04z5j4a93 LOKI: Technologie et connaissance pour l''Interaction LOKI: Technology & Knowledge for Interaction'),
(117792, 'https://ror.org/0005fxe59', 'fr', 1, 'https://ror.org/0005fxe59 TANGRAM: Recalage visuel avec des modèles physiquement réalistes TANGRAM: Visual Registration with Physically Coherent Models'),
(117793, 'https://ror.org/00n8d6z93', 'fr', 1, 'https://ror.org/00n8d6z93 Centre Inria de l''UniversitƩ Grenoble Alpes'),
(117794, 'https://ror.org/05b8hjk91', 'en', 1, 'https://ror.org/05b8hjk91 21 September University for Medical and Applied Sciences Ų¬Ų§Ł…Ų¹Ų© 21 Ų³ŲØŲŖŁ…ŲØŲ± Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(117795, 'https://ror.org/016pnwd02', 'fr', 1, 'https://ror.org/016pnwd02 FrƩdƩric Joliot Institute for Life Sciences Institut des Sciences du Vivant FrƩdƩric Joliot'),
(117796, 'https://ror.org/02a7zs937', 'en', 1, 'https://ror.org/02a7zs937 Lemery Colleges Mga Kolehiyo ng Lemery'),
(117797, 'https://ror.org/03g8e5x44', 'fr', 1, 'https://ror.org/03g8e5x44 Laboratoire sur les VulnĆ©rabilitĆ©s et l’Innovation dans le Sport Laboratory of Vulnerabilities and Innovation in Sport'),
(117798, 'https://ror.org/00pazvf52', 'tr', 1, 'https://ror.org/00pazvf52 Corlu Belediyesi'),
(117799, 'https://ror.org/03xb04968', 'en', 1, 'https://ror.org/03xb04968 Anhui Medical University å®‰å¾½åŒ»ē§‘å¤§å­¦'),
(117800, 'https://ror.org/02h7ap815', 'tr', 1, 'https://ror.org/02h7ap815 DSI Genel Mudurlugu General Directorate Of State Hydraulic Works'),
(117801, 'https://ror.org/04gd9nv85', 'en', 1, 'https://ror.org/04gd9nv85 National Agricultural Research Center'),
(117802, 'https://ror.org/02w3ga484', 'en', 1, 'https://ror.org/02w3ga484 Institute of Lutheran Theology'),
(117803, 'https://ror.org/047xkjw67', 'pl', 1, 'https://ror.org/047xkjw67 Instytut Ogrodnictwa – Państwowy Instytut Badawczy National Institute of Horticultural Research'),
(117804, 'https://ror.org/02xdzy536', 'en', 1, 'https://ror.org/02xdzy536 Baden-Wuerttemberg Cooperative State University Duale Hochschule Baden-Württemberg'),
(117805, 'https://ror.org/00xj2r442', 'no_lang_code', 1, 'https://ror.org/00xj2r442 Graphit Innovation Factory Graphit Innovation Factory (Romania)'),
(117806, 'https://ror.org/00z75hn32', 'fr', 1, 'https://ror.org/00z75hn32 Service de GƩnie Logiciel pour la Simulation'),
(117807, 'https://ror.org/024rz0d56', 'en', 1, 'https://ror.org/024rz0d56 Marine Technology'),
(117808, 'https://ror.org/03x4tmk23', 'en', 1, 'https://ror.org/03x4tmk23 Fundación Ethnobotanical Futures International Center for Ethnobotanical Education, Research, and Service'),
(117809, 'https://ror.org/02nadbe75', 'en', 1, 'https://ror.org/02nadbe75 Susan G. Komen Breast Cancer Foundation'),
(117810, 'https://ror.org/01bws0s09', 'en', 1, 'https://ror.org/01bws0s09 Daradia: The Pain Clinic'),
(117811, 'https://ror.org/01azk9663', 'en', 1, 'https://ror.org/01azk9663 Knowledge Systems Research'),
(117812, 'https://ror.org/03j90c872', 'uz', 1, 'https://ror.org/03j90c872 Namangan State Technical University Namangan davlat texnika universiteti'),
(117813, 'https://ror.org/025fw7a54', 'de', 1, 'https://ror.org/025fw7a54 Friedrich-Loeffler-Institut'),
(117814, 'https://ror.org/04xzpxc31', 'en', 1, 'https://ror.org/04xzpxc31 Hong Kong Centre for Logistics Robotics é¦™ęøÆē‰©ęµę©Ÿę¢°äŗŗē ”ē©¶äø­åæƒ'),
(117815, 'https://ror.org/020n56g04', 'en', 1, 'https://ror.org/020n56g04 Dhaka Residential Model College'),
(117816, 'https://ror.org/04y9y5354', 'fr', 1, 'https://ror.org/04y9y5354 Service d''Etudes MƩcaniques et Thermiques'),
(117817, 'https://ror.org/045gmmg53', 'de', 1, 'https://ror.org/045gmmg53 Max Rubner Institut'),
(117818, 'https://ror.org/0440j7g03', 'en', 1, 'https://ror.org/0440j7g03 VERIDIS: Modeling and Verification of Distributed Algorithms and Systems'),
(117819, 'https://ror.org/02744fy59', 'fr', 1, 'https://ror.org/02744fy59 Actuarial and Financial Sciences Laboratory Laboratoire de Sciences Actuarielle et FinanciĆØre'),
(117820, 'https://ror.org/05k705z76', 'fr', 1, 'https://ror.org/05k705z76 Institut de Recherche sur les Lois Fondamentales de l''Univers'),
(117821, 'https://ror.org/04ge2hn26', 'fr', 1, 'https://ror.org/04ge2hn26 Immunologie des Maladies Virales, Auto-immunes, HƩmatologiques et BactƩriennes Infectious Disease Models and Innovative Therapie'),
(117822, 'https://ror.org/04vvwcn96', 'en', 1, 'https://ror.org/04vvwcn96 Farg''ona davlat texnika universiteti Fergana State Technical University Ферганский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(117823, 'https://ror.org/04xnkqg56', 'fr', 1, 'https://ror.org/04xnkqg56 TARAN: Architectures matérielles spécialisées pour l''ère post loi-de-Moore TARAN: Domain-Specific Computers in the Post Moore''s Law Era'),
(117824, 'https://ror.org/04h6jac11', 'fr', 1, 'https://ror.org/04h6jac11 Centre pour l''innovation en cancƩrologie de Lyon'),
(117825, 'https://ror.org/05eg5vx64', 'en', 1, 'https://ror.org/05eg5vx64 Standards Association of Zimbabwe'),
(117826, 'https://ror.org/01mg48a35', 'en', 1, 'https://ror.org/01mg48a35 Nootan College of Physiotherapy'),
(117827, 'https://ror.org/05mdm7050', 'en', 0, 'https://ror.org/05mdm7050 University of Wisconsin–Extension'),
(117828, 'https://ror.org/01yvm5309', 'fr', 1, 'https://ror.org/01yvm5309 MACBES: Modelling And Control of Biological and Ecological Systems MACBES: Modélisation et commande de systèmes biologiques et écologiques'),
(117829, 'https://ror.org/023kews28', 'en', 1, 'https://ror.org/023kews28 Siva Sivani Degree College ą°¶ą°æą°µ శివాని ą°”ą°æą°—ą±ą°°ą±€ ą°•ą°¾ą°²ą±‡ą°œą±'),
(117830, 'https://ror.org/035vnpg93', 'fr', 1, 'https://ror.org/035vnpg93 KERDATA: Enabling the Edge-Cloud-HPC Data Continuum KERDATA: Stockage et traitement de donnƩes sur le continuum Edge-Cloud-HPC'),
(117831, 'https://ror.org/05sd5r855', 'fr', 1, 'https://ror.org/05sd5r855 Laboratoire de MathƩmatiques Blaise Pascal'),
(117832, 'https://ror.org/01n51g238', 'fr', 0, 'https://ror.org/01n51g238 POEMS: Propagation des Ondes : Etude MathƩmatique et Simulation POEMS: Wave propagation: mathematical analysis and simulation'),
(117833, 'https://ror.org/0152dat82', 'fr', 1, 'https://ror.org/0152dat82 Service de Radiobiologie ExpƩrimentale et Innovation Technologiques'),
(117834, 'https://ror.org/03wkgh488', 'en', 1, 'https://ror.org/03wkgh488 EUROKD Egitm Danismanlik Group'),
(117835, 'https://ror.org/05bjjq434', 'fr', 1, 'https://ror.org/05bjjq434 Service de Recherche en Corrosion et Comportement des MatƩriaux'),
(117836, 'https://ror.org/022d5qt08', 'de', 1, 'https://ror.org/022d5qt08 Bundesforschungsinstitut für Kulturpflanzen Federal Research Centre for Cultivated Plants Julius Kühn-Institut'),
(117837, 'https://ror.org/01d1tq488', 'en', 1, 'https://ror.org/01d1tq488 Adani University'),
(117838, 'https://ror.org/0075kby92', 'en', 1, 'https://ror.org/0075kby92 Babu Banarasi Das Northern India Institute of Technology'),
(117839, 'https://ror.org/03d07zf92', 'fr', 1, 'https://ror.org/03d07zf92 Service InstabilitƩ GƩnƩtique, RƩparation, Recombinaison'),
(117840, 'https://ror.org/05v3j0m29', 'fr', 1, 'https://ror.org/05v3j0m29 Presses universitaires de la MƩditerranƩe'),
(117841, 'https://ror.org/02ntewc24', 'id', 1, 'https://ror.org/02ntewc24 Sekolah Tinggi Ilmu Ekonomi Widya Wiwaha'),
(117842, 'https://ror.org/00k1pqk92', 'en', 1, 'https://ror.org/00k1pqk92 Muhammad Abdullahi Wase Teaching Hospital'),
(117843, 'https://ror.org/011wymc20', 'en', 1, 'https://ror.org/011wymc20 Maitama Sule University Kano'),
(117844, 'https://ror.org/05tyd0241', 'en', 1, 'https://ror.org/05tyd0241 Metropolitan Council'),
(117845, 'https://ror.org/018vsg973', 'no_lang_code', 1, 'https://ror.org/018vsg973 Gen Digital Inc. Gen Digital Inc. (United States)'),
(117846, 'https://ror.org/03d0rdy88', 'fr', 1, 'https://ror.org/03d0rdy88 Microbiologie Environnement Digestif SantƩ'),
(117847, 'https://ror.org/02drhvq25', 'en', 1, 'https://ror.org/02drhvq25 University of Arizona College of Medicine- Phoenix'),
(117848, 'https://ror.org/04cxm4j25', 'en', 1, 'https://ror.org/04cxm4j25 Australian Catholic University'),
(117849, 'https://ror.org/019yhsq25', 'fr', 1, 'https://ror.org/019yhsq25 PESTO: Proof techniques for security protocols PESTO: Techniques de Preuves pour les Protocoles de SƩcuritƩ'),
(117850, 'https://ror.org/04reqzt68', 'en', 1, 'https://ror.org/04reqzt68 DBT/Wellcome Trust India Alliance'),
(117851, 'https://ror.org/00c174c31', 'fr', 1, 'https://ror.org/00c174c31 CANARI: Analyse cryptographique et arithmƩtique CANARI: Cryptography ANalysis and ARIthmetic'),
(117852, 'https://ror.org/01kyezx28', 'id', 1, 'https://ror.org/01kyezx28 Sekolah Tinggi Pariwisata Mataram'),
(117853, 'https://ror.org/03gq8fr08', 'en', 1, 'https://ror.org/03gq8fr08 Rutherford Appleton Laboratory'),
(117854, 'https://ror.org/03bnmw459', 'en', 1, 'https://ror.org/03bnmw459 University of Potsdam UniversitƤt Potsdam'),
(117855, 'https://ror.org/02pkbtk91', 'fr', 1, 'https://ror.org/02pkbtk91 ASTRAL: Advanced StatisTical infeRence And controL ASTRAL: MƩthodes avancƩes d''apprentissage statistique et de contrƓle'),
(117856, 'https://ror.org/01vjqgk24', 'de', 1, 'https://ror.org/01vjqgk24 CID GmbH'),
(117857, 'https://ror.org/05v2cwj11', 'fr', 1, 'https://ror.org/05v2cwj11 COMPACT: COMPression of mAssively produCed visual daTa COMPACT: Compression de donn''ees visuelles massives'),
(117858, 'https://ror.org/044fk9x32', 'en', 1, 'https://ror.org/044fk9x32 Robotics & AI Law Society'),
(117859, 'https://ror.org/04sgy3p75', 'fr', 1, 'https://ror.org/04sgy3p75 Ecole SupƩrieure d''IngƩnieurs LƩonard de Vinci Leonardo da Vinci Engineering School'),
(117860, 'https://ror.org/03pfm1t26', 'fr', 1, 'https://ror.org/03pfm1t26 AUCTUS: Des robots au service de l''humain au travail AUCTUS: Robots for Humans at work'),
(117861, 'https://ror.org/0233qcv12', 'fr', 1, 'https://ror.org/0233qcv12 AISTROSIGHT: La pharmacologie des neurones et des astrocytes Ć  l’aide des sciences du numĆ©rique AISTROSIGHT: Viewing neuron-astrocyte pharmacology through digital sciences'),
(117862, 'https://ror.org/028jaxr51', 'fr', 1, 'https://ror.org/028jaxr51 Fédération de Recherche sur l''Hydrogène The French National Research Network on Hydrogen Energy'),
(117863, 'https://ror.org/03n4whq22', 'en', 1, 'https://ror.org/03n4whq22 GRAPHDECO: GRAPHics and DEsign with hEterogeneous COntent'),
(117864, 'https://ror.org/0041rde43', 'en', 1, 'https://ror.org/0041rde43 IntechOpen'),
(117865, 'https://ror.org/03bj6gc92', 'en', 1, 'https://ror.org/03bj6gc92 SPHINX: Heterogeneous Systems: Inverse Problems, Control and Stabilization, Simulation'),
(117866, 'https://ror.org/03dkzb165', 'en', 1, 'https://ror.org/03dkzb165 Centre for Healthy Brain Ageing'),
(117867, 'https://ror.org/048tfwf02', 'en', 1, 'https://ror.org/048tfwf02 Jain College of Engineering and Research'),
(117868, 'https://ror.org/05p51cz50', 'en', 1, 'https://ror.org/05p51cz50 Asthma Australia'),
(117869, 'https://ror.org/05bjvdf85', 'fr', 1, 'https://ror.org/05bjvdf85 FACTAS: Analyse fonctionnelle pour la conception et l''analyse de systĆØmes FACTAS: Functional Analysis for ConcepTion and Assessment of Systems'),
(117870, 'https://ror.org/04241wz75', 'en', 1, 'https://ror.org/04241wz75 University of British Columbia, Okanagan Campus'),
(117871, 'https://ror.org/005g6em48', 'en', 1, 'https://ror.org/005g6em48 The Confederated Tribes of Grand Ronde'),
(117872, 'https://ror.org/0449t3a80', 'no_lang_code', 0, 'https://ror.org/0449t3a80 NortonLifeLock (United States)'),
(117873, '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'),
(117874, 'https://ror.org/0530j9m17', 'fr', 1, 'https://ror.org/0530j9m17 DƩlƩgation RƩgionale Auvergne-RhƓne-Alpes'),
(117875, 'https://ror.org/001kjn539', 'en', 1, 'https://ror.org/001kjn539 St Vincent''s Hospital Melbourne'),
(117876, 'https://ror.org/0105ejf19', 'fr', 1, 'https://ror.org/0105ejf19 Centre d''Etudes MƩdiƩvales de Montpellier'),
(117877, 'https://ror.org/040753f36', 'fr', 1, 'https://ror.org/040753f36 Centre Inria de l''UniversitƩ Paris-Saclay Inria Saclay Centre at UniversitƩ Paris-Saclay'),
(117878, 'https://ror.org/025n6m978', 'fr', 1, 'https://ror.org/025n6m978 MERGE: Mathematics for Evolution, Reproduction, Growth and Emergence MERGE: MathĆ©matiques pour l’évolution, la reproduction, la croissance et l’émergence'),
(117879, 'https://ror.org/04nabyp18', 'es', 1, 'https://ror.org/04nabyp18 Hospital de la Sociedad de Lucha Contra el CÔncer SOLCA Núcleo de Loja'),
(117880, 'https://ror.org/045g2qm50', 'es', 1, 'https://ror.org/045g2qm50 Instituto de Filologƭa y Literaturas HispƔnicas "Dr. Amado Alonso"'),
(117881, 'https://ror.org/048c8c312', 'fr', 1, 'https://ror.org/048c8c312 MFX: Informatique graphique pour la fabrication numƩrique MFX: Matter from Graphics'),
(117882, 'https://ror.org/05y7vpk19', 'fr', 0, 'https://ror.org/05y7vpk19 MobilitƉs, cRĆ©ations, lAngues et idĆ©oLogies en OcĆ©anie'),
(117883, 'https://ror.org/04357k290', 'en', 1, 'https://ror.org/04357k290 St. Mary’s College'),
(117884, 'https://ror.org/00jy6y646', 'en', 1, 'https://ror.org/00jy6y646 ILDA: Interacting with Large Data'),
(117885, 'https://ror.org/05j1f8t74', 'ro', 1, 'https://ror.org/05j1f8t74 Francisc Rainer Institute of Anthropology Institutul de Antropologie "Francisc I. Rainer"'),
(117886, 'https://ror.org/02c9cqe66', 'fr', 1, 'https://ror.org/02c9cqe66 TITANE: Geometric Modeling of 3D Environments TITANE: ModƩlisation gƩomƩtrique d''environnements 3D'),
(117887, 'https://ror.org/040f08y74', 'en', 0, 'https://ror.org/040f08y74 St George''s, University of London'),
(117888, 'https://ror.org/0095c0g57', 'en', 1, 'https://ror.org/0095c0g57 Rare Disease Ghana Initiative'),
(117889, 'https://ror.org/03mrmrh16', 'en', 1, 'https://ror.org/03mrmrh16 Central Baptist Theological Seminary'),
(117890, 'https://ror.org/012152x03', 'en', 1, 'https://ror.org/012152x03 Diabalkaniko Kentro Periballontos interBalkan Environment Center'),
(117891, 'https://ror.org/00mgd1d10', 'fr', 1, 'https://ror.org/00mgd1d10 Laboratoire Paragraphe'),
(117892, 'https://ror.org/02mfjm186', 'en', 1, 'https://ror.org/02mfjm186 Association of Rheumatologists of Russia ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ ревматологов России'),
(117893, 'https://ror.org/02zjdav93', 'en', 1, 'https://ror.org/02zjdav93 International Science and Technology University'),
(117894, 'https://ror.org/05xtj5718', 'en', 1, 'https://ror.org/05xtj5718 M3DISIM: Mathematical and Mechanical Modeling with Data Interaction in Simulations for Medicine'),
(117895, 'https://ror.org/03fcjvn64', 'fr', 1, 'https://ror.org/03fcjvn64 Centre Inria de l''UniversitƩ de Lorraine Inria Centre at UniversitƩ de Lorraine'),
(117896, 'https://ror.org/02wa31w62', 'en', 1, 'https://ror.org/02wa31w62 Govind Ballabh Pant Social Science Institute'),
(117897, 'https://ror.org/04bfbht55', 'en', 1, 'https://ror.org/04bfbht55 University of Defence in Belgrade, Strategic Research Institute Univerzitet odbrane u Beogradu, Institut za strategijska istraživanja Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŃŃ‚Ń€Š°Ń‚ŠµŠ³ŠøŃ˜ŃŠŗŠ° ŠøŃŃ‚Ń€Š°Š¶ŠøŠ²Š°ŃšŠ° - Универзитет оГбране у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ'),
(117898, 'https://ror.org/02bpvfg88', 'en', 1, 'https://ror.org/02bpvfg88 Center for International Knowledge on Development'),
(117899, 'https://ror.org/03kp8gv86', 'en', 1, 'https://ror.org/03kp8gv86 VNS Health'),
(117900, 'https://ror.org/00cfy0294', 'en', 1, 'https://ror.org/00cfy0294 LUNEX'),
(117901, 'https://ror.org/0473r3056', 'en', 1, 'https://ror.org/0473r3056 Mahamana Pandit Madan Mohan Malaviya Cancer Centre'),
(117902, 'https://ror.org/02chhkx27', 'en', 1, 'https://ror.org/02chhkx27 American Hospital Kosovo Spitali Amerikan Kosovo'),
(117903, 'https://ror.org/030627c87', 'fr', 1, 'https://ror.org/030627c87 DISCO: Dynamical Interconnected Systems: Control and Optimization DISCO: Systèmes dynamiques interconnectés dans des environnements complexes'),
(117904, 'https://ror.org/04gv9vj98', 'en', 0, 'https://ror.org/04gv9vj98 Barnet and Chase Farm NHS Hospitals Trust'),
(117905, 'https://ror.org/05jt8x620', 'en', 1, 'https://ror.org/05jt8x620 Applied Biotechnology Institute Viện CĆ“ng nghệ Sinh hį»c Ứng dỄng'),
(117906, 'https://ror.org/026t7px13', 'en', 1, 'https://ror.org/026t7px13 SISTM: Statistics In System biology and Translational Medicine'),
(117907, 'https://ror.org/00e4pqm50', 'fr', 1, 'https://ror.org/00e4pqm50 Laboratoire de GƩographie Physique et Environnementale'),
(117908, 'https://ror.org/05h4ccq74', 'fr', 1, 'https://ror.org/05h4ccq74 KAIROS: Multiform Logical Time for Formal Cyber-Physical System Design KAIROS: Temps Logique Multiforme pour Conception de SystĆØmes Cyber-Physiques'),
(117909, 'https://ror.org/04mte1k06', 'en', 1, 'https://ror.org/04mte1k06 Conseil National de Recherches Canada Conseil national de recherches du Canada National Research Council Canada National Research Council of Canada'),
(117910, 'https://ror.org/05drxt592', 'en', 1, 'https://ror.org/05drxt592 Centre for Ecology Development and Research'),
(117911, 'https://ror.org/01vxs7536', 'en', 1, 'https://ror.org/01vxs7536 GRACE: Geometry, arithmetic, algorithms, codes and encryption'),
(117912, 'https://ror.org/01y0ezr68', 'id', 1, 'https://ror.org/01y0ezr68 Institut Agama Islam Negeri Langsa State Institute of Islamic Studies Langsa'),
(117913, 'https://ror.org/005cqsz63', 'en', 1, 'https://ror.org/005cqsz63 ELTE Hungarian Research Centre for Linguistics ELTE NyelvtudomÔnyi Kutatóközpont'),
(117914, 'https://ror.org/01pajwc40', 'fr', 1, 'https://ror.org/01pajwc40 FƩdƩration mathƩmatique de recherche en rƩgion Aquitaine'),
(117915, 'https://ror.org/03pveep22', 'bs', 1, 'https://ror.org/03pveep22 University "Economics Academy" Brcko District of Bosnia and Herzegovina UniversitƤt "Wirtschaftsakademie" Brcko distrikt BuH Univerzitet "Privredna Akademija" Brčko distrikt Bosne i Hercegovine'),
(117916, 'https://ror.org/00b0e5r87', 'en', 1, 'https://ror.org/00b0e5r87 Perley Health'),
(117917, 'https://ror.org/05m1y4204', 'en', 1, 'https://ror.org/05m1y4204 Serbian Academy of Sciences and Arts'),
(117918, 'https://ror.org/04af4y522', 'en', 1, 'https://ror.org/04af4y522 CAGIRE: Computational AGility for internal flows sImulations and compaRisons with Experiments'),
(117919, 'https://ror.org/056ntzw90', 'fr', 1, 'https://ror.org/056ntzw90 CRONOS: Computational modelling of brain dynamical networks CRONOS: ModƩlisation des rƩsaux dynamiques cƩrƩbraux'),
(117920, 'https://ror.org/003fz4104', 'id', 1, 'https://ror.org/003fz4104 Sekolah Tinggi Teologi Transformasi Indonesia'),
(117921, 'https://ror.org/02wvp9t50', 'fr', 1, 'https://ror.org/02wvp9t50 GéoHydrosystèmes COntinentaux'),
(117922, 'https://ror.org/00ttfz090', 'en', 1, 'https://ror.org/00ttfz090 Animal Health Institute'),
(117923, 'https://ror.org/012wk3x67', 'en', 1, 'https://ror.org/012wk3x67 Metro Transit'),
(117924, 'https://ror.org/05j95bh22', 'fr', 1, 'https://ror.org/05j95bh22 DIANA: Conception, Mise en oeuvre et Analyse d''Architectures RƩseau DIANA: Design, Implementation and Analysis of Networking Architectures'),
(117925, 'https://ror.org/04pp1he48', 'en', 1, 'https://ror.org/04pp1he48 Maharashtra National Law University'),
(117926, 'https://ror.org/05rheg981', 'nl', 1, 'https://ror.org/05rheg981 Provincie Noord-Holland'),
(117927, 'https://ror.org/03f1dt633', 'en', 1, 'https://ror.org/03f1dt633 Dr. Daulatrao Aher College of Engineering'),
(117928, 'https://ror.org/05cbsh159', 'en', 1, 'https://ror.org/05cbsh159 CSMSS Chh. Shahu College of Engineering'),
(117929, 'https://ror.org/009bc7242', 'fr', 1, 'https://ror.org/009bc7242 NEO: IngƩnierie et OpƩrations des RƩseaux NEO: Network Engineering and Operations'),
(117930, 'https://ror.org/02sspdz82', 'es', 1, 'https://ror.org/02sspdz82 Instituto Nacional de Investigación Agropecuaria'),
(117931, 'https://ror.org/04a11tk94', 'fr', 1, 'https://ror.org/04a11tk94 AROMATH: AlgebRa, geOmetry, Modeling and AlgoriTHms AROMATH: Algebre geometrie Modelisation et Algorithmes'),
(117932, 'https://ror.org/043jarn60', 'en', 1, 'https://ror.org/043jarn60 Laude Institute'),
(117933, 'https://ror.org/043qxn998', 'fr', 1, 'https://ror.org/043qxn998 GROUPEMENT NATIONAL MULTIDISCIPLINAIRE DE SANTE AU TRAVAIL DU BATIMENT ET DES TRAVAUX PUBLICS'),
(117934, 'https://ror.org/027h8y606', 'hr', 1, 'https://ror.org/027h8y606 MUP Centar za forenzična ispitivanja, istraživanja i vjeÅ”tačenja "Ivan Vučetić" Ministry of the Interior, Forensic Science Centre "Ivan Vučetić"'),
(117935, 'https://ror.org/056wdpc91', 'en', 1, 'https://ror.org/056wdpc91 Cognitive Neuroimaging Lab'),
(117936, 'https://ror.org/04hwbg047', 'de', 1, 'https://ror.org/04hwbg047 Sigmund Freud Private University Vienna Sigmund Freud PrivatuniversitƤt Wien'),
(117937, 'https://ror.org/02fw9q305', 'en', 1, 'https://ror.org/02fw9q305 Norwich University of the Arts'),
(117938, 'https://ror.org/05spbxe41', 'no_lang_code', 1, 'https://ror.org/05spbxe41 Gamma Remote Sensing (Switzerland)'),
(117939, 'https://ror.org/00kj4ev13', 'es', 1, 'https://ror.org/00kj4ev13 Servicio de Salud del Principado de Asturias'),
(117940, 'https://ror.org/020eh9934', 'tr', 1, 'https://ror.org/020eh9934 Koyunculuk Araştırma Enstitüsü Müdürlüğü Sheep Breeding and Research Institute'),
(117941, 'https://ror.org/03p379n52', 'en', 1, 'https://ror.org/03p379n52 Tam Anh Research Institute Viện NghiĆŖn cứu TĆ¢m Anh'),
(117942, 'https://ror.org/05vaf4569', 'fr', 1, 'https://ror.org/05vaf4569 EMERAUDE: EMbEdded pRogrammable AUDio systEms EMERAUDE: Systèmes Embarqués audio programmables'),
(117943, 'https://ror.org/05ta8jq17', 'en', 1, 'https://ror.org/05ta8jq17 Kashmir Advanced Scientific Research Centre'),
(117944, 'https://ror.org/00q8gze35', 'fr', 1, 'https://ror.org/00q8gze35 RAINBOW: Sensor-based Robotics and Human Interaction RAINBOW: robotique interactive et rƩfƩrencƩe capteurs'),
(117945, 'https://ror.org/04nkkrh90', 'de', 1, 'https://ror.org/04nkkrh90 LWL-UniversitƤtsklinikum Bochum'),
(117946, 'https://ror.org/040k08962', 'en', 1, 'https://ror.org/040k08962 National Library of Armenia'),
(117947, 'https://ror.org/040ek4035', 'no_lang_code', 1, 'https://ror.org/040ek4035 Pemex (Mexico)'),
(117948, 'https://ror.org/053wq2p27', 'fr', 1, 'https://ror.org/053wq2p27 ARTISHAU: ARTificial Intelligence: Security, trutHfulness, and AUdit ARTISHAU: Intelligence artificielle : sƩcuritƩ, traƧabilitƩ et audit'),
(117949, 'https://ror.org/0296s8h59', 'en', 1, 'https://ror.org/0296s8h59 Geografski institut ā€žJovan CvijiÄ‡ā€œ Srpske akademije nauka i umetnosti Geographical Institute ā€œJovan CvijiÄ‡ā€ SASA Географски ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ā€žŠˆŠ¾Š²Š°Š½ Š¦Š²ŠøŃ˜ŠøŃ›ā€œ Š”ŠŠŠ£'),
(117950, 'https://ror.org/02dv8gx64', 'it', 1, 'https://ror.org/02dv8gx64 Azienda Regionale Emergenza Sanitaria - ARES 118 Lazio'),
(117951, 'https://ror.org/02yyddy74', 'fr', 1, 'https://ror.org/02yyddy74 PETRUS: Cloud personnel sƩcurisƩ PETRUS: PErsonal & TRUSted cloud'),
(117952, 'https://ror.org/031rekg67', 'en', 1, 'https://ror.org/031rekg67 Swinburne University of Technology'),
(117953, 'https://ror.org/04nmbd607', 'en', 1, 'https://ror.org/04nmbd607 Universidad de Córdoba University of Córdoba'),
(117954, 'https://ror.org/034cc8114', 'fr', 1, 'https://ror.org/034cc8114 Conseil National de Lutte contre le sida du SƩnƩgal'),
(117955, 'https://ror.org/03k192506', 'fr', 1, 'https://ror.org/03k192506 CASH: Compilation and Analyses for Software and Hardware CASH: Compilation et Analyse, Logiciel et MatƩriel'),
(117956, 'https://ror.org/058fw2b10', 'no_lang_code', 1, 'https://ror.org/058fw2b10 Bartenbach - The Lighting Innovators (Austria)'),
(117957, 'https://ror.org/00kq40z63', 'en', 1, 'https://ror.org/00kq40z63 Al-Huda University College ŁƒŁ„ŁŠŲ© الهدى الجامعة'),
(117958, 'https://ror.org/022jb9a19', 'fr', 1, 'https://ror.org/022jb9a19 SEAMLESS: Interaction et collaboration fluides Ơ travers le continuum rƩalitƩ-virtualitƩ SEAMLESS: Seamless interaction and collaboration through the reality-virtuality continuum'),
(117959, 'https://ror.org/01jc9hv70', 'en', 1, 'https://ror.org/01jc9hv70 MAGNET: Machine Learning in Information Networks'),
(117960, 'https://ror.org/0266cgx57', 'fr', 1, 'https://ror.org/0266cgx57 Division of Electronics, Detectors and Computing for Physics DƩpartement d''Electronique des DƩtecteurs et d''Informatique pour la Physique'),
(117961, 'https://ror.org/02b3vs478', 'fr', 1, 'https://ror.org/02b3vs478 PRIVATICS: Modèles, architectures et outils pour la protection de la vie privée dans la société de l''information PRIVATICS: Privacy Models, Architectures and Tools for the Information Society'),
(117962, 'https://ror.org/01nzkaw91', 'fr', 1, 'https://ror.org/01nzkaw91 Centre Inria d''UniversitƩ CƓte d''Azur Inria Centre at UniversitƩ CƓte d''Azur'),
(117963, 'https://ror.org/043ja9593', 'en', 1, 'https://ror.org/043ja9593 DYLISS: Dynamics, Logics and Inference for biological Systems and Sequences'),
(117964, 'https://ror.org/003qhrc72', 'fr', 1, 'https://ror.org/003qhrc72 UnitƩ de Nutrition Humaine'),
(117965, 'https://ror.org/03c8szq27', 'en', 1, 'https://ror.org/03c8szq27 Ontario Federation of Indigenous Friendship Centres'),
(117966, 'https://ror.org/047g7f905', 'en', 1, 'https://ror.org/047g7f905 UGC DAE Consortium for Scientific Research ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤…ą¤Øą„ą¤¦ą¤¾ą¤Ø ą¤†ą¤Æą„‹ą¤— - ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤Šą¤°ą„ą¤œą¤¾ विभाग ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤•ą„ą¤²'),
(117967, 'https://ror.org/044qb8j46', 'no_lang_code', 1, 'https://ror.org/044qb8j46 Ansys (France)'),
(117968, 'https://ror.org/02g5env92', 'de', 1, 'https://ror.org/02g5env92 Kulturpool'),
(117969, 'https://ror.org/03rh4zb49', 'fr', 1, 'https://ror.org/03rh4zb49 CASTOR: Control for plAsma inSTability, Optimization and model Reduction CASTOR: ContrÓle du plAsma et de ses inSTabilités, Optimisation et Réduction de modèle'),
(117970, 'https://ror.org/00dfknt61', 'fr', 1, 'https://ror.org/00dfknt61 MIND: Models and Inference for Neuroimaging Data MIND: modèles et inférence pour les données de Neuroimagerie'),
(117971, 'https://ror.org/012dcgh52', 'pt', 1, 'https://ror.org/012dcgh52 Associação Portuguesa para o Desenvolvimento da Carreira'),
(117972, 'https://ror.org/03d5jvw89', 'en', 1, 'https://ror.org/03d5jvw89 La Kretz Research Center at Sedgwick Reserve'),
(117973, 'https://ror.org/016bx3357', 'en', 1, 'https://ror.org/016bx3357 Sparsh Himalaya University'),
(117974, 'https://ror.org/02603xz34', 'en', 1, 'https://ror.org/02603xz34 Climate Change Research Centre'),
(117975, 'https://ror.org/03fedwt95', 'fr', 1, 'https://ror.org/03fedwt95 SAIRPICO: Imagerie Spatio-Temporelle, Intelligence Artificielle et Calcul NumƩrique pour la Biologie Cellulaire et Chemobiologie SAIRPICO: Space-time imaging, artificial intelligence and computing for cellular and chemical biology'),
(117976, 'https://ror.org/03wzcyy58', 'id', 1, 'https://ror.org/03wzcyy58 Institut Agama Islam Negeri Ternate'),
(117977, 'https://ror.org/04489at23', 'en', 0, 'https://ror.org/04489at23 City, University of London'),
(117978, 'https://ror.org/034j91g93', 'fr', 1, 'https://ror.org/034j91g93 CONCACE: COmposabilité Numerique and parallèle pour le CAlcul haute performanCE CONCACE: Numerical and Parallel Composability for High Performance Computing'),
(117979, 'https://ror.org/02tnfe688', 'fr', 1, 'https://ror.org/02tnfe688 PARKAS: ParallƩlisme de Kahn Synchrone Synchronous Kahn parallelism'),
(117980, 'https://ror.org/01svbzm77', 'fr', 1, 'https://ror.org/01svbzm77 MATHNEURO: Mathematics for Neuroscience MATHNEURO: MathƩmatiques pour les Neurosciences'),
(117981, 'https://ror.org/02fh7gz32', 'fr', 1, 'https://ror.org/02fh7gz32 MATHEXP: Calcul formel, mathƩmatiques expƩrimentales et interactions MATHEXP: Computer algebra, experimental mathematics, and interactions'),
(117982, 'https://ror.org/03cqkav30', 'en', 1, 'https://ror.org/03cqkav30 Genesis Analytics (South Africa)'),
(117983, 'https://ror.org/0040r9v43', 'en', 1, 'https://ror.org/0040r9v43 ARC Centre of Excellence for Carbon Science and Innovation');
INSERT INTO `rors` VALUES
(117984, 'https://ror.org/03de2ht59', 'fr', 1, 'https://ror.org/03de2ht59 MACARON: Apprentissage automatique pour des mƩthodes numƩriques optimisƩes MACARON: MAChine leARning for Optimized Numerical methods'),
(117985, 'https://ror.org/01jv71z12', 'en', 1, 'https://ror.org/01jv71z12 International Society for Computational Biology'),
(117986, 'https://ror.org/04dpcfm57', 'fr', 1, 'https://ror.org/04dpcfm57 ALPINES: Algorithmes et outils parallèles pour des simulations numériques intégrées ALPINES: Algorithms and parallel tools for integrated numerical simulations'),
(117987, 'https://ror.org/02g7qcb42', 'eu', 1, 'https://ror.org/02g7qcb42 Osakidetza'),
(117988, 'https://ror.org/01tnxwc41', 'fr', 1, 'https://ror.org/01tnxwc41 Experimental and Computational Methods for Modeling Cellular Processes INBIO : MƩthodes expƩrimentales et computationnelles pour la modƩlisation des processus cellulaires'),
(117989, 'https://ror.org/05c4ttx26', 'fr', 1, 'https://ror.org/05c4ttx26 Service d''Ɖtude des MatĆ©riaux IrradiĆ©s'),
(117990, 'https://ror.org/00pjdza24', 'en', 1, 'https://ror.org/00pjdza24 Universidad de California University of California System UniversitƩ de Californie'),
(117991, 'https://ror.org/01spbvh06', 'mi', 1, 'https://ror.org/01spbvh06 Te Niwha'),
(117992, 'https://ror.org/04gzj2340', 'en', 1, 'https://ror.org/04gzj2340 Institut de Recherche contre les Cancers de l’Appareil Digestif Africa'),
(117993, 'https://ror.org/050jcm728', 'fr', 1, 'https://ror.org/050jcm728 Institut National des Sciences MathƩmatiques et de leurs Interactions'),
(117994, 'https://ror.org/04jtw9y77', 'fr', 1, 'https://ror.org/04jtw9y77 Centre d''Ʃtudes de l''emploi'),
(117995, 'https://ror.org/03cjm2544', 'fr', 1, 'https://ror.org/03cjm2544 Centre Inria de Sorbonne UniversitƩ Inria Paris Centre at Sorbonne University'),
(117996, 'https://ror.org/04hwnke37', 'en', 1, 'https://ror.org/04hwnke37 Centre for Social Impact'),
(117997, 'https://ror.org/017rjh121', 'es', 1, 'https://ror.org/017rjh121 Centro de Investigación en Ciencias de Información Geoespacial'),
(117998, 'https://ror.org/059g04a28', 'es', 1, 'https://ror.org/059g04a28 Sociedad espaƱola de medicina psicodƩlica'),
(117999, 'https://ror.org/007h9pt55', 'fr', 1, 'https://ror.org/007h9pt55 COMETE: Privacy, Fairness and Robustness in Information Management COMETE: Vie privƩe, ƩquitƩ et robustesse dans la gestion de l''information'),
(118000, 'https://ror.org/02c7vb662', 'fr', 1, 'https://ror.org/02c7vb662 COMPO: COMPutational pharmacology and clinical Oncology COMPO: MƩthodes computationnelles pour la prise en charge thƩrapeutique en oncologie'),
(118001, 'https://ror.org/00f45ja95', 'es', 1, 'https://ror.org/00f45ja95 Universidad Tecnológica de Izúcar de Matamoros'),
(118002, 'https://ror.org/008r6cv15', 'en', 1, 'https://ror.org/008r6cv15 The Salvation Army Toronto Grace Health Centre'),
(118003, 'https://ror.org/03fm6kj16', 'fr', 1, 'https://ror.org/03fm6kj16 MARACAS: Models and Algorithms for Reliable Communication Systems MARACAS: ModĆØle et algorithmes pour des systĆØmes de communication fiables'),
(118004, 'https://ror.org/01t1kv810', 'en', 1, 'https://ror.org/01t1kv810 Ukraine Sigmund Freud University'),
(118005, 'https://ror.org/03e0qa028', 'en', 0, 'https://ror.org/03e0qa028 Department of Economic Development Jobs Transport and Resources'),
(118006, 'https://ror.org/0325tbk69', 'fr', 1, 'https://ror.org/0325tbk69 CAMUS: Compilation for multi-processor and multi-core architectures CAMUS: Compilation pour les Architectures MUlti-processeurs et multi-coeurS'),
(118007, 'https://ror.org/046fmsw47', 'fr', 1, 'https://ror.org/046fmsw47 TOPAL: Outils et Optimisations pour le Calcul Haute Performance et l''Apprentissage TOPAL: Tools and Optimization for high Performance Applications and Learning'),
(118008, 'https://ror.org/02v0g3b09', 'fr', 1, 'https://ror.org/02v0g3b09 CAPSULE: Applied Cryptography and Implementation Security CAPSULE: Cryptographie AppliquƩe et SƩcuritƩ des ImplƩmentations'),
(118009, 'https://ror.org/007wvrh90', 'en', 1, 'https://ror.org/007wvrh90 H. Lavity Stoutt Community College'),
(118010, 'https://ror.org/02dq6vw89', 'es', 1, 'https://ror.org/02dq6vw89 Instituto Superior Tecnólogico Centro Tecnólogico Naval'),
(118011, 'https://ror.org/01fn0b882', 'en', 1, 'https://ror.org/01fn0b882 National Specialized Research and Practical Medical Center for Nephrology of Uzbekistan'),
(118012, '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'),
(118013, 'https://ror.org/01yb7w119', 'sv', 1, 'https://ror.org/01yb7w119 Lars Erik Lundberg Foundation for Research and Education Lundbergsstiftelserna'),
(118014, 'https://ror.org/0571jty83', 'en', 1, 'https://ror.org/0571jty83 ROMA: Optimisation des ressources : modĆØles, algorithmes et ordonnancement'),
(118015, 'https://ror.org/05nmhtv58', 'en', 1, 'https://ror.org/05nmhtv58 Khalel Dosmukhamedov Atyrau University ŠŃ‚Ń‹Ń€Š°ŃƒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š„. Š”Š¾ŃŠ¼ŃƒŃ…Š°Š¼ŠµŠ“Š¾Š²Š° Єалел ДосмұхамеГов атынГағы ŠŃ‚Ń‹Ń€Š°Ńƒ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(118016, 'https://ror.org/04rq2jb11', 'en', 1, 'https://ror.org/04rq2jb11 Carl Ritter von Ghega Institut für integrierte Mobilitätsforschung Carl Ritter von Ghega Institute for Integrated Mobility Research'),
(118017, 'https://ror.org/03r7nqk21', 'en', 1, 'https://ror.org/03r7nqk21 Banas Medical College and Research Institute'),
(118018, 'https://ror.org/00nx8zq49', 'es', 1, 'https://ror.org/00nx8zq49 Conservatorio Superior de Música de Córdoba'),
(118019, 'https://ror.org/003m5dy43', 'fr', 1, 'https://ror.org/003m5dy43 ASCII: Analyse d’interactions stochastiques intelligentes et coopĆ©ratives ASCII: Analysis of Stochastic Cooperative Intelligent Interactions'),
(118020, 'https://ror.org/01v2jpb97', 'es', 1, 'https://ror.org/01v2jpb97 Ministerio para la Transición Ecológica y el Reto DemogrÔfico Ministry for the Ecological Transition and the Demographic Challenge'),
(118021, 'https://ror.org/01zpdyq44', 'fr', 1, 'https://ror.org/01zpdyq44 BIVWAC: Building Immersive Visualizations for Welfare, Awareness, and Comprehension BIVWAC: Construire des visualisations immersives pour favoriser la compréhension, la prise de conscience, et le bien-être'),
(118022, 'https://ror.org/031y5kf09', 'fr', 1, 'https://ror.org/031y5kf09 TAU: IA : vers des problèmes mieux posés TAU: TAckling the Underspecified'),
(118023, 'https://ror.org/039bszh67', 'fr', 1, 'https://ror.org/039bszh67 EVERGREEN: Earth obserVation and machine lEarning foR aGRo-Environmental challENges EVERGREEN: Observation de la terre et apprentissage machine pour les dƩfis agro-environnementaux'),
(118024, 'https://ror.org/05rhak080', 'en', 1, 'https://ror.org/05rhak080 Neuroelectrics Neuroelectrics Barcelona SLU Neuroelectrics Barcelona SLU (Spain)'),
(118025, 'https://ror.org/05q5cyp41', 'fr', 1, 'https://ror.org/05q5cyp41 DƩpartement de Physique des Particules Particle Physics Division'),
(118026, 'https://ror.org/01h67hk15', 'fr', 1, 'https://ror.org/01h67hk15 Groupe de Recherches Sociologiques sur les sociƩtƩs Contemporaines Sociological Research Group on Contemporary Societies'),
(118027, 'https://ror.org/00ee0y632', 'pt', 1, 'https://ror.org/00ee0y632 Rede Eco-Diversa para Conservação da Biodiversidade'),
(118028, 'https://ror.org/05b2jnz57', 'fr', 1, 'https://ror.org/05b2jnz57 BENAGIL: Efficient and safe distributed systems BENAGIL: Systèmes répartis performants et sûrs'),
(118029, 'https://ror.org/03p28de55', 'fr', 1, 'https://ror.org/03p28de55 VIRTUS: Nous, virtuels VIRTUS: The VIrtual Us'),
(118030, 'https://ror.org/01138xk88', 'fr', 1, 'https://ror.org/01138xk88 Mechanisms in Integrated Life Sciences MƩcanismes en sciences intƩgratives du vivant'),
(118031, 'https://ror.org/039zcz976', 'en', 1, 'https://ror.org/039zcz976 MNEMOSYNE: Mnemonic Synergy'),
(118032, 'https://ror.org/00xaax174', 'en', 1, 'https://ror.org/00xaax174 BEAGLE: Artificial Evolution and Computational Biology'),
(118033, 'https://ror.org/04f7aqa58', 'de', 1, 'https://ror.org/04f7aqa58 Bundessortenamt Federal Plant Variety Office'),
(118034, 'https://ror.org/03b38ry76', 'en', 1, 'https://ror.org/03b38ry76 Bineswar Brahma Engineering College'),
(118035, 'https://ror.org/02mab7455', 'fr', 1, 'https://ror.org/02mab7455 COATI: Combinatoire, Optimisation et Algorithmes pour les TƩlƩcommunications COATI: Combinatorics, Optimization and Algorithms for Telecommunications'),
(118036, 'https://ror.org/042s1r231', 'fr', 1, 'https://ror.org/042s1r231 QUACS: Quantum Computation Structures QUACS: Structures de calcul quantique'),
(118037, 'https://ror.org/02agj4404', 'en', 1, 'https://ror.org/02agj4404 Giannini Foundation of Agricultural Economics'),
(118038, 'https://ror.org/058ttvb80', 'no_lang_code', 1, 'https://ror.org/058ttvb80 Goodbaby (China) å„½å­©å­å›½é™…ęŽ§č‚”ęœ‰é™å…¬åø'),
(118039, 'https://ror.org/0282csf50', 'fr', 1, 'https://ror.org/0282csf50 ARIC: Arithmetic and Computing ARIC: ArithmƩtiques des ordinateurs, mƩthodes formelles, gƩnƩration de code'),
(118040, 'https://ror.org/01femje42', 'de', 1, 'https://ror.org/01femje42 Potsdam University Press UniversitƤtsverlag Potsdam'),
(118041, 'https://ror.org/01q2cdv17', 'en', 1, 'https://ror.org/01q2cdv17 Naipunnya Institute of Management and Information Technology'),
(118042, 'https://ror.org/03v4gsj38', 'fr', 1, 'https://ror.org/03v4gsj38 Maison des Sciences sociales et des HumanitƩs Val de Loire'),
(118043, 'https://ror.org/02d292n17', 'en', 1, 'https://ror.org/02d292n17 Stem Cell Institute'),
(118044, 'https://ror.org/040mc9528', 'en', 1, 'https://ror.org/040mc9528 Floral Industry Innovation Center č¾²ę„­éƒØčŠ±å‰å‰µę–°åœ’å€ē ”ē©¶ē™¼å±•äø­åæƒ'),
(118045, 'https://ror.org/04b33kk47', 'id', 1, 'https://ror.org/04b33kk47 Institut Agama Islam Negeri Manado'),
(118046, 'https://ror.org/04nmj5x57', 'en', 1, 'https://ror.org/04nmj5x57 Sigma Xi'),
(118047, 'https://ror.org/04hsaft65', 'en', 1, 'https://ror.org/04hsaft65 WIMMICS: Web-Instrumented huMan-Machine Interactions, Communities and Semantics'),
(118048, 'https://ror.org/01z2f0n71', 'fr', 1, 'https://ror.org/01z2f0n71 AVIZ: Analyse et visualisation AVIZ: Analysis and VIsualiZation'),
(118049, 'https://ror.org/02svrd444', 'fr', 1, 'https://ror.org/02svrd444 Private University of Fez UniversitĆ© PrivĆ©e de FĆØs الجامعة الخاصة لقاس'),
(118050, 'https://ror.org/01t74p940', 'en', 1, 'https://ror.org/01t74p940 Binaytara'),
(118051, 'https://ror.org/02gqj2v09', 'fr', 1, 'https://ror.org/02gqj2v09 ERABLE: Equipe de recherche europƩenne en algorithmique et biologie formelle et expƩrimentale ERABLE: European Research team in Algorithms and Biology, formaL and Experimental'),
(118052, 'https://ror.org/01t0a1151', 'en', 1, 'https://ror.org/01t0a1151 Research Infrastructure for Experiments at CERN VýzkumnÔ infrastruktura pro experimenty v CERN'),
(118053, 'https://ror.org/00xvd0z96', 'fr', 1, 'https://ror.org/00xvd0z96 AgrosystĆØmes territoires ressources Mirecourt'),
(118054, 'https://ror.org/01mf0gg37', 'en', 1, 'https://ror.org/01mf0gg37 LSPR Institute of Communication and Business'),
(118055, 'https://ror.org/00932a269', 'id', 1, 'https://ror.org/00932a269 Universitas Bhakti Kencana'),
(118056, 'https://ror.org/05x7zk316', 'en', 1, 'https://ror.org/05x7zk316 Public Health Institute of Canton Sarajevo Zavod za javno zdravstvo Kantona Sarajevo'),
(118057, 'https://ror.org/04mmq3h75', 'en', 1, 'https://ror.org/04mmq3h75 University of Defence Универзитет оГбране'),
(118058, 'https://ror.org/00zm0ea22', 'fr', 1, 'https://ror.org/00zm0ea22 EVREF: Reflective Evolution of Ever-running Software Systems EVREF: Ɖvolution rĆ©flexive des systĆØmes logiciels Ć©ternels'),
(118059, 'https://ror.org/00cv9y106', 'en', 1, 'https://ror.org/00cv9y106 Ghent University Universiteit Gent UniversitƩ de Gand'),
(118060, 'https://ror.org/01rrvyp50', 'fr', 1, 'https://ror.org/01rrvyp50 OURAGAN: Outils de RƩsolution AlgƩbriques pour la GƩomƩtrie et ses Applications Tools for resolutions in algebra, geometry and their applications'),
(118061, 'https://ror.org/01477py81', 'es', 1, 'https://ror.org/01477py81 Fundación TriÔngulo'),
(118062, 'https://ror.org/05e5ch838', 'fr', 1, 'https://ror.org/05e5ch838 Accelerators, Cryogenics and Magnetism Division DƩpartement des AccƩlƩrateurs, de CryogƩnie et de MagnƩtisme'),
(118063, 'https://ror.org/005eb4f08', 'en', 1, 'https://ror.org/005eb4f08 Arab East Colleges ŁƒŁ„ŁŠŲ§ŲŖ الؓرق Ų§Ł„Ų¹Ų±ŲØŁŠ'),
(118064, 'https://ror.org/04397qy32', 'fr', 1, 'https://ror.org/04397qy32 Genetics, Diversity and Ecophysiology of Cereals GĆ©nĆ©tique, DiversitĆ©, Ɖcophysiologie des CĆ©rĆ©ales'),
(118065, 'https://ror.org/02b1cd072', 'en', 1, 'https://ror.org/02b1cd072 Jina AI Jina AI (Germany) Jina AI GmbH'),
(118066, 'https://ror.org/025wa0q37', 'fr', 1, 'https://ror.org/025wa0q37 SCOOL: Prise de dƩcision sƩquentielle dans l''incertain SCOOL: Sequential decision making under uncertainty problem'),
(118067, 'https://ror.org/000dbcc61', 'fr', 1, 'https://ror.org/000dbcc61 Laboratoire d''Intégration des Systèmes et des Technologies'),
(118068, 'https://ror.org/024weye46', 'en', 1, 'https://ror.org/024weye46 Conservation International'),
(118069, 'https://ror.org/0240qp408', 'fr', 1, 'https://ror.org/0240qp408 RAPSODI: Approximations numériques fiables pour les systèmes dissipatifs RAPSODI: Reliable numerical approximations of dissipative systems'),
(118070, 'https://ror.org/03p3amd86', 'fr', 1, 'https://ror.org/03p3amd86 COMBO: Biomécanique et Méthodes Numériques pour l''analyse de l''interaction humain-systèmes hors du laboratoire COMBO: Computer and Biomechanics ?> Out-of-the-Lab'),
(118071, 'https://ror.org/04w7djn76', 'id', 1, 'https://ror.org/04w7djn76 Sekolah Tinggi Teologi Bethel The Way'),
(118072, 'https://ror.org/02gap9590', 'fr', 1, 'https://ror.org/02gap9590 BIOVISION: Biologically plausible Integrative mOdels of the Visual system : towards synergIstic Solutions for visually-Impaired people and artificial visiON BIOVISION: Vision biologique : modèles intégratifs et systèmes d''aide à la vision pour les déficients visuels'),
(118073, 'https://ror.org/02mdnkg28', 'fr', 1, 'https://ror.org/02mdnkg28 Laboratoire d''Optique AtmosphƩrique'),
(118074, 'https://ror.org/017vwpy33', 'fr', 0, 'https://ror.org/017vwpy33 Méthodes basées sur les données et modèles en santé pour l''acquisition de connaissances'),
(118075, 'https://ror.org/0015z3084', 'en', 1, 'https://ror.org/0015z3084 McKenzie Health'),
(118076, 'https://ror.org/047272k79', 'en', 1, 'https://ror.org/047272k79 The University of Western Australia'),
(118077, 'https://ror.org/03wt8n129', 'fr', 1, 'https://ror.org/03wt8n129 STACK: Pile logicielle pour les infrastructures massivement gƩo distribuƩes STACK: Software Stack for Massively Geo-Distributed Infrastructures'),
(118078, 'https://ror.org/02eyff421', 'en', 1, 'https://ror.org/02eyff421 Ministry of Health'),
(118079, 'https://ror.org/01z7m4762', 'en', 1, 'https://ror.org/01z7m4762 VicRoads'),
(118080, 'https://ror.org/010842375', 'en', 1, 'https://ror.org/010842375 Tata Memorial Hospital टाटा ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤øą„‡ą¤‚ą¤Ÿą¤° ą®Ÿą®¾ą®ŸąÆą®Ÿą®¾ நினைவு ą®®ąÆˆą®Æą®®ąÆ'),
(118081, 'https://ror.org/02fv8d015', 'en', 1, 'https://ror.org/02fv8d015 Sister Nivedita University'),
(118082, 'https://ror.org/02zxbg516', 'en', 1, 'https://ror.org/02zxbg516 National Forest Centre'),
(118083, 'https://ror.org/02e6ym289', 'fr', 1, 'https://ror.org/02e6ym289 RANDOPT: Optimisation par algorithmes stochastiques RANDOPT: Randomized Optimization'),
(118084, 'https://ror.org/021kpzg59', 'fr', 1, 'https://ror.org/021kpzg59 ChiralitƩ en Nouvelle Aquitaine'),
(118085, 'https://ror.org/04bct7p84', 'en', 1, 'https://ror.org/04bct7p84 Duke University Hospital'),
(118086, 'https://ror.org/05k49tq53', 'fr', 1, 'https://ror.org/05k49tq53 MAKUTU: Experimental-based modeling and simulation of wave propagation to characterize geophysical and heliophysical media and to design complex objects MAKUTU: ModƩlisation et simulation de la propagation des ondes fondƩes sur des mesures expƩrimentales pour caractƩriser des milieux gƩophysiques et hƩliophysiques et concevoir des objets complexes'),
(118087, 'https://ror.org/00ern2s92', 'fr', 1, 'https://ror.org/00ern2s92 DƩpartement de Physique NuclƩaire Nuclear Physics Division'),
(118088, 'https://ror.org/05tqdsh31', 'en', 1, 'https://ror.org/05tqdsh31 Houston Neuroscience Brain Center'),
(118089, 'https://ror.org/05nqng710', 'en', 1, 'https://ror.org/05nqng710 FUN: self-organizing Future Ubiquitous Network'),
(118090, 'https://ror.org/00r6mze37', 'en', 1, 'https://ror.org/00r6mze37 Tam Anh General Hospital, Ho Chi Minh City'),
(118091, 'https://ror.org/02fysgn79', 'en', 1, 'https://ror.org/02fysgn79 Nishibeppu National Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹č„æåˆ„åŗœē—…é™¢'),
(118092, 'https://ror.org/03zhqpp04', 'en', 1, 'https://ror.org/03zhqpp04 City College of Huizhou'),
(118093, 'https://ror.org/02tawe219', 'en', 1, 'https://ror.org/02tawe219 Ministry of Environment and Water ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на околната среГа Šø воГите'),
(118094, 'https://ror.org/05tjdxm47', 'en', 1, 'https://ror.org/05tjdxm47 Dnyaan Prasad Global University'),
(118095, 'https://ror.org/02whmzy38', 'no_lang_code', 1, 'https://ror.org/02whmzy38 Equine Reproductive Services Equine Reproductive Services (United Kingdom)'),
(118096, 'https://ror.org/045efrm68', 'en', 1, 'https://ror.org/045efrm68 Universidade de Gurupi University of Gurupi'),
(118097, 'https://ror.org/0096p2190', 'en', 1, 'https://ror.org/0096p2190 ENN Fusion Energy Research Institute ę–°å„„ē§‘ęŠ€å‘å±•ęœ‰é™å…¬åø'),
(118098, 'https://ror.org/029g70m06', 'en', 1, 'https://ror.org/029g70m06 Centre for Big Data Research in Health'),
(118099, 'https://ror.org/02setav13', 'fr', 1, 'https://ror.org/02setav13 De Vinci Higher Education PƓle LƩonard de Vinci'),
(118100, 'https://ror.org/0539wg405', 'no_lang_code', 1, 'https://ror.org/0539wg405 Reprex B.V. Reprex B.V. (Netherlands)'),
(118101, 'https://ror.org/05rv46r52', 'fr', 1, 'https://ror.org/05rv46r52 LARSEN: Autonomie et interaction au long cours pour des robots en environnements potentiellement sensorisƩs LARSEN: Lifelong Autonomy and interaction skills for Robots in a Sensing ENvironment'),
(118102, 'https://ror.org/01te88z78', 'fr', 1, 'https://ror.org/01te88z78 Langages HUmanitƩs MƩdiations Apprentissages Interactions NumƩrique'),
(118103, 'https://ror.org/057ch1y38', 'en', 1, 'https://ror.org/057ch1y38 ENCell Co., Ltd. ENCell Co., Ltd. (South Korea)'),
(118104, 'https://ror.org/04qw24q55', 'en', 1, 'https://ror.org/04qw24q55 Wageningen University & Research Wageningen University & Research centre'),
(118105, 'https://ror.org/004yvsb77', 'fr', 1, 'https://ror.org/004yvsb77 Centre National de Recherche en GƩnomique Humaine National Center of Human Genomics Research'),
(118106, 'https://ror.org/02fe6t135', 'en', 1, 'https://ror.org/02fe6t135 Ukrainian Institute for Social Research after Olexander Yaremenko'),
(118107, 'https://ror.org/00psvvh49', 'fr', 1, 'https://ror.org/00psvvh49 Laboratoire en Informatique Haute Performance pour le Calcul et la simulation Laboratory for High Performance Computing and Simulation'),
(118108, 'https://ror.org/04sqfaq74', 'en', 1, 'https://ror.org/04sqfaq74 Office for Victims of Crime'),
(118109, 'https://ror.org/0287f8832', 'de', 1, 'https://ror.org/0287f8832 LWL Natuurhistorisch Museum LWL-Museum für Naturkunde mit Planetarium LWL-Museum of Natural History and Planetarium'),
(118110, 'https://ror.org/02wvt3j02', 'no_lang_code', 1, 'https://ror.org/02wvt3j02 Eduplanet SAS (Ecuador)'),
(118111, 'https://ror.org/046p84880', 'fr', 1, 'https://ror.org/046p84880 Centre international de musiques mƩdiƩvales'),
(118112, 'https://ror.org/050y2w676', 'fr', 1, 'https://ror.org/050y2w676 PREMEDICAL: MƩdecine de prƩcision par intƩgration de donnƩes et infƩrence causale PREMEDICAL: Precision Medicine by Data Integration and Causal Learning'),
(118113, 'https://ror.org/04g1met76', 'en', 1, 'https://ror.org/04g1met76 National School of Computer Science Ɖcole nationale des sciences de l''informatique المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŁ‘Ų© Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ©'),
(118114, 'https://ror.org/00b029w83', 'de', 1, 'https://ror.org/00b029w83 STUDIA-Schlierbach Studienzentrum für internationale Analysen'),
(118115, 'https://ror.org/00s5chq56', 'en', 1, 'https://ror.org/00s5chq56 Captain Elechi Amadi Polytechnic, Rumuola'),
(118116, 'https://ror.org/040dpfz92', 'fr', 1, 'https://ror.org/040dpfz92 PARADYSE: PARticles And DYnamical SystEms PARADYSE: SystĆØmes de particules et systĆØmes dynamiques'),
(118117, 'https://ror.org/02ejmm326', 'fr', 1, 'https://ror.org/02ejmm326 OCKHAM: Optimisation, Connaissances pHysiques, Algorithmes et ModĆØles OCKHAM: Optimization, pHysical Knowledge, Algorithms and Models'),
(118118, 'https://ror.org/037zfay27', 'fr', 1, 'https://ror.org/037zfay27 EX-SITU: Extreme Situated Interaction EX-SITU: Interaction Située Extrême'),
(118119, 'https://ror.org/05qgc7m36', 'fr', 1, 'https://ror.org/05qgc7m36 WIDE: le monde est distribuƩ - Vers une exploration des tensions entre grande Ʃchelle et coordination WIDE: the World Is Distributed Exploring the tension between scale and coordination'),
(118120, 'https://ror.org/00nvvw130', 'fr', 1, 'https://ror.org/00nvvw130 StabilitƩ GƩnƩtique, Cellules Souches et Radiations'),
(118121, 'https://ror.org/02n848x19', 'fr', 1, 'https://ror.org/02n848x19 PIXEL: Structure geometrical shapes PIXEL: Structurer des formes gƩomƩtriques'),
(118122, 'https://ror.org/02adpzw22', 'en', 1, 'https://ror.org/02adpzw22 Modern Institute of Teacher Education'),
(118123, 'https://ror.org/04jrf5w40', 'en', 1, 'https://ror.org/04jrf5w40 Institute of Fisheries of the National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рибного госпоГарства ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(118124, 'https://ror.org/05t5px081', 'en', 1, 'https://ror.org/05t5px081 Center for Applied Energy Research'),
(118125, 'https://ror.org/030zn8d06', 'fr', 1, 'https://ror.org/030zn8d06 SODA: Computational and mathematical methods to understand health and society with data SODA: MƩthodes computationnelles et mathƩmatiques pour comprendre la sociƩtƩ et la santƩ Ơ partir de donnƩes'),
(118126, 'https://ror.org/05ydxj072', 'en', 1, 'https://ror.org/05ydxj072 Hallym University Medical Center ķ•œė¦¼ėŒ€ķ•™źµģ˜ė£Œģ›'),
(118127, 'https://ror.org/00s19x989', 'fr', 1, 'https://ror.org/00s19x989 CNRS IngƩnierie'),
(118128, 'https://ror.org/02jgwy703', 'fr', 1, 'https://ror.org/02jgwy703 Représenter, Inventer la Réalité, du Romantisme au XXIe siècle'),
(118129, 'https://ror.org/033414q51', 'de', 1, 'https://ror.org/033414q51 Freiburger Forschungsstelle für Arbeitswissenschaften GmbH Freiburger Forschungsstelle für Arbeitswissenschaften GmbH (Germany)'),
(118130, 'https://ror.org/032gdk894', 'fr', 1, 'https://ror.org/032gdk894 Pathophysiology of injury-induced immunosuppression Physiopathologie de l''immunodƩpression associƩe aux rƩponses inflammatoires systƩmiques'),
(118131, 'https://ror.org/0469c1x22', 'id', 1, 'https://ror.org/0469c1x22 Universitas Mitra Bangsa University of Mitra Bangsa'),
(118132, 'https://ror.org/01trzbr20', 'en', 1, 'https://ror.org/01trzbr20 Mark Wainwright Analytical Centre'),
(118133, 'https://ror.org/017vk0a74', 'de', 1, 'https://ror.org/017vk0a74 LWL-Klinikum Gütersloh'),
(118134, 'https://ror.org/02tpkcv11', 'fr', 1, 'https://ror.org/02tpkcv11 ANGUS: Adaptive modelling and numerical simulations for governing equations with underlying structures ANGUS: ModƩlisation et simulation numƩrique adaptatives pour des Ʃquations ayant des structures sous-jacentes'),
(118135, 'https://ror.org/016w2y923', 'fr', 1, 'https://ror.org/016w2y923 AGORA: AlGorithmes et Optimisation pour RƩseaux Autonomes AGORA: Wireless Networks for Digital Cities'),
(118136, 'https://ror.org/01ek6z616', 'es', 1, 'https://ror.org/01ek6z616 Escuela de Negocios Zegel Zegel Business School'),
(118137, 'https://ror.org/019m5m426', 'it', 1, 'https://ror.org/019m5m426 Consorzio Re-Cord Renewable Energy Consortium for Research and Demonstration'),
(118138, 'https://ror.org/04xcf6t74', 'en', 1, 'https://ror.org/04xcf6t74 Isa Kaita College of Education'),
(118139, 'https://ror.org/018a8yy17', 'no_lang_code', 1, 'https://ror.org/018a8yy17 ENN (China) 新億集团'),
(118140, 'https://ror.org/038tm0s98', 'fr', 1, 'https://ror.org/038tm0s98 QURIOSITY: Communication et Traitement Quantiques de l''Information QURIOSITY: Quantum Information Processing and Communication'),
(118141, 'https://ror.org/04qgdxq75', 'fr', 1, 'https://ror.org/04qgdxq75 ERMINE: Gestion et mesures des opƩrations et de l''Ʃconomie des rƩseaux ERMINE: Measuring and Managing Network operation and economics'),
(118142, 'https://ror.org/03xjqy265', 'en', 1, 'https://ror.org/03xjqy265 Maragheh University of Medical Sciences'),
(118143, 'https://ror.org/05pj0t051', 'fr', 1, 'https://ror.org/05pj0t051 MAGELLAN: Infrastructures Informatiques Fiables, Responsables, et DƩcentralisƩes MAGELLAN: Reliable and Responsible Decentralized Computing Infrastructures'),
(118144, 'https://ror.org/05vjwz959', 'fr', 1, 'https://ror.org/05vjwz959 Center for Interdisciplinary Research in History, Art History and Musicology Centre de Recherches Interdisciplinaires en Histoire, Histoire de l''Art et Musicologie'),
(118145, 'https://ror.org/004npaj74', 'en', 1, 'https://ror.org/004npaj74 Society for the Protection of Biodiversity of Thrace'),
(118146, 'https://ror.org/04r3prj41', 'en', 1, 'https://ror.org/04r3prj41 Traditional Medicine Institute Viện Y dược hį»c dĆ¢n tį»™c'),
(118147, 'https://ror.org/00f8qsf06', 'id', 1, 'https://ror.org/00f8qsf06 Akademi Farmasi Yarsi Pontianak'),
(118148, 'https://ror.org/041x2jt25', 'en', 1, 'https://ror.org/041x2jt25 Maxillofacial Surgery, Implantology, and Biomaterial Research Foundation Maxillogram'),
(118149, 'https://ror.org/05ghgkk68', 'fr', 1, 'https://ror.org/05ghgkk68 LINKS: Linking Dynamic Data LINKS: Requêtes pour données dynamiques liées'),
(118150, 'https://ror.org/031e44z20', 'en', 1, 'https://ror.org/031e44z20 Center for Sci-Tech Research in EArth sysTem and Energy'),
(118151, 'https://ror.org/04hbds366', 'en', 1, 'https://ror.org/04hbds366 ViridisChem'),
(118152, 'https://ror.org/058fpjm98', 'en', 1, 'https://ror.org/058fpjm98 Anglican University College of Technology'),
(118153, 'https://ror.org/04881e359', 'fr', 1, 'https://ror.org/04881e359 TADAAM: Gestion des données à l''échelle du système en fonction de la topologie pour le calcul haute performance TADAAM: Topology-aware system-scale data management for high-performance computing'),
(118154, 'https://ror.org/046v7pr94', 'fr', 1, 'https://ror.org/046v7pr94 STAMP: Safety Techniques based on Formalized Mathematical Proofs STAMP: SƻretƩ du logiciel et Preuves MathƩmatiques FormalisƩes'),
(118155, 'https://ror.org/0137dsz97', 'de', 1, 'https://ror.org/0137dsz97 Fachagentur Nachwachsende Rohstoffe'),
(118156, 'https://ror.org/043cxyw38', 'en', 1, 'https://ror.org/043cxyw38 Cohab Initiative'),
(118157, 'https://ror.org/03kjqzb25', 'en', 1, 'https://ror.org/03kjqzb25 Sahiwal Medical College'),
(118158, 'https://ror.org/00fmavj37', 'fr', 1, 'https://ror.org/00fmavj37 ModƩlisation, ƩpidƩmiologie et surveillance des risques sanitaires'),
(118159, 'https://ror.org/028m9sy08', 'fr', 1, 'https://ror.org/028m9sy08 Physiopathologie et pharmacologie de la douleur et de la migraine'),
(118160, 'https://ror.org/00njr5010', 'fr', 1, 'https://ror.org/00njr5010 University of Diffa UniversitƩ de Diffa'),
(118161, 'https://ror.org/01cka1x81', 'fr', 1, 'https://ror.org/01cka1x81 MUSICS: MUltiScale Interacting Cell Systems MUSICS: Systèmes de cellules avec interactions multi-échelles'),
(118162, 'https://ror.org/05qbk4x57', 'en', 1, 'https://ror.org/05qbk4x57 University of Chinese Academy of Sciences 中国科学院大学'),
(118163, 'https://ror.org/02smsax08', 'pt', 1, 'https://ror.org/02smsax08 Hospital Nossa Senhora da Conceição'),
(118164, 'https://ror.org/02v324824', 'pt', 1, 'https://ror.org/02v324824 Centro UniversitƔrio FAMESC'),
(118165, 'https://ror.org/02vvp2k82', 'en', 1, 'https://ror.org/02vvp2k82 National Institute of Technology (KOSEN), Sasebo College National Institute of Technology, Sasebo College ä½äø–äæå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(118166, 'https://ror.org/0313xya24', 'de', 1, 'https://ror.org/0313xya24 Blasenzentrum der Frau AG'),
(118167, 'https://ror.org/03e9yxc42', 'en', 1, 'https://ror.org/03e9yxc42 CARDAMOM: Certified Adaptive discRete moDels for robust simulAtions of CoMplex flOws with Moving fronts'),
(118168, 'https://ror.org/010yn8j22', 'fr', 1, 'https://ror.org/010yn8j22 ATLANTIS: Modélisation et méthodes numériques pour le calcul d''interactions onde-matière nanostructurée ATLANTIS: modeling and numerical methods for computATionaL wave-mAtter iNteracTIons at the nanoScale'),
(118169, 'https://ror.org/04bqw6g80', 'pt', 1, 'https://ror.org/04bqw6g80 Fatec GarƧa'),
(118170, 'https://ror.org/05ehyd021', 'cs', 1, 'https://ror.org/05ehyd021 Prague School of Creative Communication VysokÔ Ŕkola kreativní komunikace'),
(118171, 'https://ror.org/054nv0q45', 'en', 1, 'https://ror.org/054nv0q45 Scheer IMC'),
(118172, 'https://ror.org/01y3nsv51', 'fr', 1, 'https://ror.org/01y3nsv51 Calcul, Cognition et Neurophysiologie Computation, Cognition and Neurophysiology'),
(118173, 'https://ror.org/038h2eb62', 'en', 1, 'https://ror.org/038h2eb62 SzƔzadvƩg AlapƭtvƔny SzƔzadvƩg Foundation'),
(118174, 'https://ror.org/00xk87z93', 'fr', 1, 'https://ror.org/00xk87z93 GREENOWL: Generating RENewable resources by Optimisation of Water Living microorganisms GREENOWL: Valorisation des micro-organismes aquatiques pour les ressources renouvelables'),
(118175, 'https://ror.org/0027txx50', 'en', 1, 'https://ror.org/0027txx50 Ghent University Centre for X-ray Tomography'),
(118176, 'https://ror.org/02jrgcx64', 'en', 1, 'https://ror.org/02jrgcx64 University of New Caledonia UniversitƩ de la Nouvelle-CalƩdonie'),
(118177, 'https://ror.org/03kdymn35', 'en', 1, 'https://ror.org/03kdymn35 COAST: Web Scale Trustworthy Collaborative Service Systems'),
(118178, 'https://ror.org/04wa4se75', 'fr', 1, 'https://ror.org/04wa4se75 Dynamiques et Ʃcologie des paysages agriforestiers'),
(118179, 'https://ror.org/00mr84n67', 'de', 1, 'https://ror.org/00mr84n67 Johann Heinrich von Thünen Institute Federal Research Institute for Rural Areas, Forestry and Fisheries Johann Heinrich von Thünen-Institut'),
(118180, 'https://ror.org/02x92j738', 'de', 1, 'https://ror.org/02x92j738 German Academic Association for Information Science Hochschulverband Informationswissenschaft'),
(118181, 'https://ror.org/044g0p936', 'pt', 1, 'https://ror.org/044g0p936 Ceuma University Universidade Ceuma'),
(118182, 'https://ror.org/021vn9c61', 'en', 1, 'https://ror.org/021vn9c61 National Institute of Meteorology and Hydrology ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¼ŠµŃ‚ŠµŠ¾Ń€Š¾Š»Š¾Š³ŠøŃ Šø Ń…ŠøŠ“Ń€Š¾Š»Š¾Š³ŠøŃ'),
(118183, 'https://ror.org/00gdtta79', 'fr', 1, 'https://ror.org/00gdtta79 Formal Method Laboratory Laboratoire MƩthodes Formelles'),
(118184, 'https://ror.org/04ta01y08', 'en', 1, 'https://ror.org/04ta01y08 Aquarium of Niagara'),
(118185, 'https://ror.org/01kpzv902', 'en', 1, 'https://ror.org/01kpzv902 Flinders University'),
(118186, 'https://ror.org/02gqcww34', 'en', 1, 'https://ror.org/02gqcww34 Bulgarian Air Force Academy'),
(118187, 'https://ror.org/01tv5y993', 'en', 1, 'https://ror.org/01tv5y993 Natural History Museum Vienna Naturhistorisches Museum Wien'),
(118188, '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'),
(118189, 'https://ror.org/03ad2mf95', 'fr', 1, 'https://ror.org/03ad2mf95 ABS: Algorithmes et Biologie Structurale ABS: Algorithms - Biology - Structure'),
(118190, 'https://ror.org/05sj18h57', 'en', 1, 'https://ror.org/05sj18h57 Vishwakarma Institute of Technology ą¤µą¤æą¤¶ą„ą¤µą¤•ą¤°ą„ą¤®ą¤¾ ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(118191, 'https://ror.org/0013zga56', 'no_lang_code', 1, 'https://ror.org/0013zga56 FAIR Data Systems FAIR Data Systems (Spain) FAIR Data Systems S.L.'),
(118192, 'https://ror.org/01yvj5k91', 'fr', 1, 'https://ror.org/01yvj5k91 Direction de la Recherche Fondamentale'),
(118193, 'https://ror.org/023d00661', 'en', 1, 'https://ror.org/023d00661 Engineering Science Lyon Tohoku, Materials under eXtreme conditions'),
(118194, 'https://ror.org/03yz9dq27', 'fr', 1, 'https://ror.org/03yz9dq27 Laboratoire de Recherche sur les Sciences de la MatiĆØre'),
(118195, 'https://ror.org/02q0p6x28', 'en', 1, 'https://ror.org/02q0p6x28 Institute of Literary Research of the Polish Academy of Sciences Instytut Badań Literackich Polskiej Akademii Nauk'),
(118196, 'https://ror.org/046gd5814', 'fr', 1, 'https://ror.org/046gd5814 UnitƩ de MathƩmatiques AppliquƩes'),
(118197, 'https://ror.org/01t4k8953', 'fr', 1, 'https://ror.org/01t4k8953 Laboratoire de Psychologie Sociale et Cognitive'),
(118198, 'https://ror.org/0546gbe85', 'en', 1, 'https://ror.org/0546gbe85 Jigawa State College of Nursing Sciences'),
(118199, 'https://ror.org/04pkmtd21', 'fr', 1, 'https://ror.org/04pkmtd21 GEOMERIX: Geometry-driven Numerics GEOMERIX: La GƩometrie au Service du NumƩrique'),
(118200, 'https://ror.org/00h83s054', 'en', 1, 'https://ror.org/00h83s054 Shri Neelkantheshwar Government Post-Graduate College'),
(118201, 'https://ror.org/03xrhmk39', 'nl', 1, 'https://ror.org/03xrhmk39 Flanders Institute for Biotechnology Vlaams Instituut voor Biotechnologie'),
(118202, 'https://ror.org/03w1jz467', 'pt', 1, 'https://ror.org/03w1jz467 Instituto de Economia AgrĆ­cola'),
(118203, 'https://ror.org/00gawvx22', 'fr', 1, 'https://ror.org/00gawvx22 Ecole des MƩtiers de l''Accompagnement Ơ la personne'),
(118204, 'https://ror.org/02hmy5588', 'en', 1, 'https://ror.org/02hmy5588 Center for Regional- og Turismeforskning Centre for Regional & Tourism Research'),
(118205, 'https://ror.org/00ynfac79', 'fr', 1, 'https://ror.org/00ynfac79 MARIANNE: Models and data for computational argumentatIon in natural language MARIANNE: Modèles et données pour l''argumentation computationnelle en langage naturel'),
(118206, 'https://ror.org/014atn455', 'fr', 1, 'https://ror.org/014atn455 CELESTE: mathematical statistics and learning CELESTE: statistique mathƩmatique et apprentissage'),
(118207, 'https://ror.org/03vgfxd91', 'fr', 1, 'https://ror.org/03vgfxd91 Institut Pascal'),
(118208, 'https://ror.org/0114r0003', 'no_lang_code', 0, 'https://ror.org/0114r0003 NortonLifeLock (Ireland)'),
(118209, 'https://ror.org/00hhjss72', 'no_lang_code', 1, 'https://ror.org/00hhjss72 Tencent (China) č…¾č®ÆęŽ§č‚”ęœ‰é™å…¬åø'),
(118210, 'https://ror.org/04dw8vw47', 'fr', 1, 'https://ror.org/04dw8vw47 Ɖcole Nationale SupĆ©rieure d''Architecture de Clermont-Ferrand'),
(118211, 'https://ror.org/02bn0ev09', 'en', 1, 'https://ror.org/02bn0ev09 Community Health Systems - Merit Health River Oaks'),
(118212, 'https://ror.org/05tn1ej10', 'fr', 1, 'https://ror.org/05tn1ej10 DYNAmiques et enjeux de la DIVersitƩ linguistique et culturelle'),
(118213, 'https://ror.org/0001h5y29', 'en', 1, 'https://ror.org/0001h5y29 Beulah Heights University'),
(118214, 'https://ror.org/032s08f35', 'en', 1, 'https://ror.org/032s08f35 Aarogyam (UK) CIC'),
(118215, 'https://ror.org/04sgyk254', 'en', 1, 'https://ror.org/04sgyk254 Rochester Christian University'),
(118216, 'https://ror.org/019xah196', 'en', 1, 'https://ror.org/019xah196 Institut za srpski jezik Srpske akademije nauka i umetnosti Institute for the Serbian Language of SASA Institute for the Serbian Language of the Serbian Academy of Sciences and Arts Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за српски језик Š”ŠŠŠ£'),
(118217, 'https://ror.org/03j638s48', 'en', 1, 'https://ror.org/03j638s48 Pangang Group General Hospital'),
(118218, 'https://ror.org/0110mcx69', 'fr', 1, 'https://ror.org/0110mcx69 SYCOMORES: Analyse symbolique et conception orientée composants pour des systèmes embarqués temps-réel modulaires SYCOMORES: Symbolic analysis and Component-based design for Modular Real-Time Embedded Systems'),
(118219, 'https://ror.org/02mqbpb72', 'en', 1, 'https://ror.org/02mqbpb72 Kaushalya the Skill University'),
(118220, 'https://ror.org/04wrcmd18', 'de', 1, 'https://ror.org/04wrcmd18 Baden-Wuerttemberg Cooperative State University Mannheim Duale Hochschule Baden Württemberg Mannheim'),
(118221, 'https://ror.org/03racvd14', 'en', 1, 'https://ror.org/03racvd14 Modern Institute of Pharmaceutical Sciences'),
(118222, 'https://ror.org/03ns8gk42', 'fr', 1, 'https://ror.org/03ns8gk42 Laboratoire MatiĆØre en Conditions ExtrĆŖmes'),
(118223, 'https://ror.org/03hgmj265', 'en', 1, 'https://ror.org/03hgmj265 Cloudphysician Healthcare Pvt Ltd Cloudphysician Healthcare Pvt Ltd (India)'),
(118224, 'https://ror.org/00xv6bg25', 'fr', 1, 'https://ror.org/00xv6bg25 PETSCRAFT: Concevoir des technologies d''amƩlioration de la vie privƩe explicables et efficaces PETSCRAFT: Crafting Explicable and Efficient Privacy-Enhancing Technologies'),
(118225, 'https://ror.org/01z0e7y08', 'fr', 1, 'https://ror.org/01z0e7y08 TRIBE: Pour un Internet non-conventionnel TRIBE: inTeRnet BEyond the usual'),
(118226, 'https://ror.org/02m8aq428', 'fr', 1, 'https://ror.org/02m8aq428 VALSE: ContrÓle en temps fini et estimation pour des systèmes distribués VALSE: Finite-time control and estimation for distributed systems'),
(118227, 'https://ror.org/002mdby24', 'id', 1, 'https://ror.org/002mdby24 Sekolah Tinggi Agama Islam Nurul Iman'),
(118228, 'https://ror.org/00f7srh09', 'fr', 1, 'https://ror.org/00f7srh09 XLIM'),
(118229, 'https://ror.org/05twx8556', 'en', 1, 'https://ror.org/05twx8556 Institute of Tax Administration'),
(118230, 'https://ror.org/0219kc713', 'fr', 1, 'https://ror.org/0219kc713 Euronovia'),
(118231, 'https://ror.org/031m3bw37', 'id', 1, 'https://ror.org/031m3bw37 Kupang State Polytechnic Politeknik Negeri Kupang'),
(118232, 'https://ror.org/039ws1812', 'en', 1, 'https://ror.org/039ws1812 Research Culture Society'),
(118233, 'https://ror.org/02s3zbq77', 'fr', 1, 'https://ror.org/02s3zbq77 QINFO: Optimal Information Processing with Quantum Devices QINFO: Traitement optimal de l''information avec des dispositifs quantiques'),
(118234, 'https://ror.org/00s8zfe75', 'tr', 1, 'https://ror.org/00s8zfe75 Afet Ve Aci̇l Durum Yƶneti̇mi̇ Başkanliği'),
(118235, 'https://ror.org/050qxn185', 'en', 1, 'https://ror.org/050qxn185 Anand Agricultural University'),
(118236, 'https://ror.org/00nty7f09', 'en', 1, 'https://ror.org/00nty7f09 Hį»™i Y Tįŗæ CĆ“ng Cį»™ng Việt Nam Vietnam Public Health Association'),
(118237, 'https://ror.org/001vjcf44', 'fr', 1, 'https://ror.org/001vjcf44 PLEIADE: Patterns de diversitƩ et rƩseaux de fonctions PLEIADE: Patterns of diversity and networks of function'),
(118238, 'https://ror.org/02v4kgk19', 'en', 1, 'https://ror.org/02v4kgk19 Ministry of Defense, Belgium'),
(118239, 'https://ror.org/0327z0p26', 'en', 1, 'https://ror.org/0327z0p26 Building large instruments for neuroimaging: from population imaging to ultra-high magnetic fields'),
(118240, 'https://ror.org/02f7fd905', 'en', 1, 'https://ror.org/02f7fd905 Kapalong College of Agriculture, Sciences and Technology'),
(118241, 'https://ror.org/01sv01k86', 'en', 1, 'https://ror.org/01sv01k86 iFACE Academy'),
(118242, 'https://ror.org/05n15pq14', 'en', 1, 'https://ror.org/05n15pq14 Centre for Plant Medicine Research'),
(118243, 'https://ror.org/01nz1ed49', 'en', 1, 'https://ror.org/01nz1ed49 K2 Toxicology and Integrated Risk Assessment, LLC'),
(118244, 'https://ror.org/03m5vq622', 'fr', 1, 'https://ror.org/03m5vq622 Centre de RƉfĆ©rence, d''Innovation, d''eXpertise et de transfert'),
(118245, 'https://ror.org/01vcx5m72', 'en', 1, 'https://ror.org/01vcx5m72 Nursing Research Institute'),
(118246, 'https://ror.org/02qqpde61', 'id', 1, 'https://ror.org/02qqpde61 Universitas Jenderal Achmad Yani Yogyakarta'),
(118247, 'https://ror.org/01ee25k38', 'en', 1, 'https://ror.org/01ee25k38 MiniMax MiniMax (People''s Republic of China)'),
(118248, 'https://ror.org/01tdw5x85', 'fr', 1, 'https://ror.org/01tdw5x85 HƩmostase & Thrombose'),
(118249, 'https://ror.org/01ja0g918', 'en', 1, 'https://ror.org/01ja0g918 Community Health Systems Professional Services Corporation (DBA Community Health Systems)'),
(118250, 'https://ror.org/01bf9eh94', 'en', 1, 'https://ror.org/01bf9eh94 Kirby Institute'),
(118251, 'https://ror.org/01a04kj17', 'es', 1, 'https://ror.org/01a04kj17 Universidad Hispanoamerica'),
(118252, 'https://ror.org/011j9ed60', 'en', 1, 'https://ror.org/011j9ed60 Institute of Ecology of the Carpathians'),
(118253, 'https://ror.org/03a3qmd39', 'fr', 1, 'https://ror.org/03a3qmd39 Laboratoire de sociolinguistique, d’anthropologie des pratiques langagiĆØres et de didactique des langues-cultures'),
(118254, 'https://ror.org/03jv6w209', 'fr', 1, 'https://ror.org/03jv6w209 Maison de la Simulation'),
(118255, 'https://ror.org/05qph7t17', 'en', 1, 'https://ror.org/05qph7t17 Bayit Balev Rehabilitation Hospital'),
(118256, 'https://ror.org/039v8sa14', 'fr', 1, 'https://ror.org/039v8sa14 LIFEWARE: Computational systems biology and optimization'),
(118257, 'https://ror.org/05m3f1s45', 'en', 1, 'https://ror.org/05m3f1s45 Netaji Nagar Day College ą¦Øą§‡ą¦¤ą¦¾ą¦œą§€ নগর ঔে ą¦•ą¦²ą§‡ą¦œ ą²Øą³‡ą²¤ą²¾ą²œą²æ ನಗರ ಔೇ ą²•ą²¾ą²²ą³‡ą²œą³'),
(118258, 'https://ror.org/00fds2k14', 'en', 0, 'https://ror.org/00fds2k14 FargŹ»ona politexnika instituti Ferghana Polytechnical Institute Ферганский ŠŸŠ¾Š»ŠøŃ‚ехнический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(118259, 'https://ror.org/05av3zn15', 'es', 1, 'https://ror.org/05av3zn15 Fundación Instituto Zuliano de Investigaciones Tecnológicas (INZIT) Zulian Institute of Technological Research'),
(118260, 'https://ror.org/03nzegx43', 'es', 1, 'https://ror.org/03nzegx43 Cruces University Hospital Hospital de Cruces'),
(118261, 'https://ror.org/00r8qyj34', 'en', 1, 'https://ror.org/00r8qyj34 Sendai University 仙台大学'),
(118262, 'https://ror.org/01ph39d13', 'fr', 1, 'https://ror.org/01ph39d13 Laboratoire National de MƩtrologie et d''Essais National Laboratory of Metrology and Testing'),
(118263, 'https://ror.org/04fqa0d17', 'fr', 1, 'https://ror.org/04fqa0d17 MAASAI: Models and Algorithms for Artificial Intelligence MAASAI: ModĆØles et algorithmes pour l''intelligence artificielle'),
(118264, 'https://ror.org/03wq36r11', 'en', 1, 'https://ror.org/03wq36r11 Government College of Art & Craft ą¦—ą¦­ą¦°ą§ą¦Øą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦•ą¦²ą§‡ą¦œ অব ą¦†ą¦°ą§ą¦Ÿ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦•ą§ą¦°ą§ą¦Æą¦¾ą¦«ą¦Ÿ, কলকাতা'),
(118265, 'https://ror.org/05ttvc873', 'en', 1, 'https://ror.org/05ttvc873 Health Research Center ال؄دارة العامة للخدمات Ų§Ł„Ų·ŲØŁŠŲ©'),
(118266, 'https://ror.org/00fk7fp57', 'fr', 1, 'https://ror.org/00fk7fp57 PASCALINE: ArithmƩtique des ordinateurs, calcul formel et vƩrification formelle PASCALINE: Computer Arithmetic, Computer Algebra and Formal Verification'),
(118267, 'https://ror.org/047aw1y82', 'en', 1, 'https://ror.org/047aw1y82 Second Affiliated Hospital of Anhui Medical University'),
(118268, 'https://ror.org/03jsxvr85', 'en', 0, 'https://ror.org/03jsxvr85 CEPS/INSTEAD'),
(118269, 'https://ror.org/04p4fte18', 'en', 1, 'https://ror.org/04p4fte18 Digital Health and Care Wales'),
(118270, 'https://ror.org/00njsd438', 'no_lang_code', 1, 'https://ror.org/00njsd438 Google (United States)'),
(118271, 'https://ror.org/002sjzb46', 'fr', 1, 'https://ror.org/002sjzb46 HYCOMES: Modélisation hybride & conception par contrats pour les systèmes embarqués multi-physiques'),
(118272, 'https://ror.org/01mxn9q79', 'fr', 1, 'https://ror.org/01mxn9q79 Laboratoire d''Imagerie BiomƩdicale Multimodale Paris-Saclay'),
(118273, 'https://ror.org/01srwvs52', 'fr', 1, 'https://ror.org/01srwvs52 Laboratoire des matƩriaux composites pour la construction Laboratory of Composite Materials for Construction'),
(118274, 'https://ror.org/04a496k07', 'en', 1, 'https://ror.org/04a496k07 GIG Cymru National Health Service Wales'),
(118275, 'https://ror.org/013ftb442', 'de', 1, 'https://ror.org/013ftb442 German Network for Tax Justice Netzwerk Steuergerechtigkeit Tax Justice Germany Tax Justice Network'),
(118276, 'https://ror.org/02k1p8j92', 'en', 1, 'https://ror.org/02k1p8j92 Torbat Jam Faculty of Medical Sciences دانؓکده Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ ŲŖŲ±ŲØŲŖ Ų¬Ų§Ł…'),
(118277, 'https://ror.org/054a4nn03', 'fr', 1, 'https://ror.org/054a4nn03 CEDAR: Analyse et traitement de donnƩes complexes Ơ grande Ʃchelle CEDAR: Rich Data Exploration at Cloud Scale'),
(118278, 'https://ror.org/0225snd59', 'en', 1, 'https://ror.org/0225snd59 Finis Terrae University Universidad Finis Terrae'),
(118279, 'https://ror.org/05rt4ed39', 'id', 1, 'https://ror.org/05rt4ed39 Sekolah Tinggi Ilmu Kesehatan Nasional'),
(118280, 'https://ror.org/03jsqye23', 'en', 1, 'https://ror.org/03jsqye23 Barishal Engineering College বরিশাল ą¦‡ą¦žą§ą¦œą¦æą¦Øą¦æą¦Æą¦¼ą¦¾ą¦°ą¦æą¦‚ ą¦•ą¦²ą§‡ą¦œ'),
(118281, 'https://ror.org/02tnenk24', 'fr', 1, 'https://ror.org/02tnenk24 BOREAL: Knowledge Representation and Rule-Based Languages for Reasoning on Data BOREAL: Représentation de Connaissances et Langages à Base de Règles pour Raisonner sur les Données'),
(118282, 'https://ror.org/016q1fy31', 'en', 1, 'https://ror.org/016q1fy31 Light Bridges (Spain)'),
(118283, 'https://ror.org/008k72z46', 'es', 1, 'https://ror.org/008k72z46 Servicio Nacional de Calidad y Sanidad Vegetal y de Semillas'),
(118284, 'https://ror.org/053y1z981', 'it', 1, 'https://ror.org/053y1z981 ETT S.p.A.'),
(118285, 'https://ror.org/04x0xky69', 'en', 1, 'https://ror.org/04x0xky69 Gyeonggi Institute of Education'),
(118286, 'https://ror.org/047ybhc09', 'en', 1, 'https://ror.org/047ybhc09 City St George''s, University of London'),
(118287, 'https://ror.org/01351mb48', 'en', 1, 'https://ror.org/01351mb48 Hanoi University of Civil Engineering TrĘ°į»ng ĐẔi hį»c XĆ¢y dį»±ng HĆ  Nį»™i'),
(118288, 'https://ror.org/037a7q098', 'fr', 1, 'https://ror.org/037a7q098 ACENTAURI: Artificial intelligence and efficient algorithms for autonomus robotics ACENTAURI: Intelligence artificielle et algorithmes efficaces pour la robotique autonome'),
(118289, 'https://ror.org/01vyjqw07', 'pt', 1, 'https://ror.org/01vyjqw07 Centre for Astrophysics of the University of Porto Centro de AstrofĆ­sica da Universidade do Porto'),
(118290, 'https://ror.org/00mdpj580', 'en', 1, 'https://ror.org/00mdpj580 Atatürk Teacher Training Academy Atatürk Ɩğretmen Akademisi'),
(118291, 'https://ror.org/04hwwj593', 'sr', 1, 'https://ror.org/04hwwj593 Preschool Teacher Training College "Mihailo Palov" Preschool Teacher Training and Medical College in Vrsac Uči strukovno vinajipasko thaj e medicinsko Å”kola ande VrÅ”co Verseci ƓvókĆ©pző Ć©s EgĆ©szsĆ©gügyi Szakfőiskola Visoka strukovna vaspitačka i medicinska Å”kola u VrÅ”cu Școala de Ǝnalte Studii de pentru Educatori și Asistenți Medicali din VĆ¢rșeț'),
(118292, 'https://ror.org/052gr0y82', 'en', 1, 'https://ror.org/052gr0y82 AIMS Research and Innovation Centre'),
(118293, 'https://ror.org/04gjfdj81', 'en', 1, 'https://ror.org/04gjfdj81 MacDiarmid Institute for Advanced Materials and Nanotechnology'),
(118294, 'https://ror.org/01qzcyx42', 'en', 1, 'https://ror.org/01qzcyx42 Nehemiah Center for Urban Leadership Development'),
(118295, 'https://ror.org/059z1ye11', 'en', 1, 'https://ror.org/059z1ye11 PACAP: Pushing Architecture and Compilation for Application Performance'),
(118296, 'https://ror.org/051fhw716', 'id', 1, 'https://ror.org/051fhw716 Sekolah Tinggi Agama Islam (STAI) Kuala Kapuas'),
(118297, 'https://ror.org/04nkty468', 'en', 1, 'https://ror.org/04nkty468 European Association for Architectural Education'),
(118298, 'https://ror.org/00dn4t376', 'en', 1, 'https://ror.org/00dn4t376 Brunel University of London'),
(118299, 'https://ror.org/02cp04407', 'fr', 1, 'https://ror.org/02cp04407 University of Limoges UniversitƩ de Limoges'),
(118300, 'https://ror.org/008axfh28', 'fr', 1, 'https://ror.org/008axfh28 National School of Architecture of Montpellier Ɖcole Nationale SupĆ©rieure d''Architecture Montpellier'),
(118301, 'https://ror.org/03g7tsb60', 'fr', 1, 'https://ror.org/03g7tsb60 EPICURE: Analyse sƩmantique et compilation pour la sƩcuritƩ des environnements d''exƩcution EPICURE: Semantic analysis and compilation for secure execution environments'),
(118302, 'https://ror.org/02agdqs91', 'en', 1, 'https://ror.org/02agdqs91 The V. M. Remeslo Myronivka Institute of Wheat ŠœŠøŃ€Š¾Š½Ń–Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃˆŠµŠ½ŠøŃ†Ń– імені Š’. М. Ремесла ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(118303, 'https://ror.org/02c3vyb44', 'en', 1, 'https://ror.org/02c3vyb44 Al-Qalam University Ų¬Ų§Ł…Ų¹Ų© القلم'),
(118304, 'https://ror.org/03eyty988', 'en', 1, 'https://ror.org/03eyty988 SPIRALS: Self-adaptation for distributed services and large software systems'),
(118305, 'https://ror.org/0165kg211', 'fr', 1, 'https://ror.org/0165kg211 CAMIN: Control of Artificial Movement & Intuitive Neuroprosthesis CAMIN: ContrÓle Artificiel de Mouvements et de Neuroprothèses Intuitives'),
(118306, 'https://ror.org/020ahr442', 'fr', 1, 'https://ror.org/020ahr442 Laboratoire Microorganismes GƩnome et Environnement'),
(118307, 'https://ror.org/027dm8e31', 'id', 1, 'https://ror.org/027dm8e31 Konservasi Indonesia'),
(118308, 'https://ror.org/000cx3x38', 'es', 1, 'https://ror.org/000cx3x38 Centro de Labio y Paladar Hendido ā€œDra. Leonorilda Ɓlvarez Noriegaā€'),
(118309, 'https://ror.org/0410qm569', 'id', 1, 'https://ror.org/0410qm569 Universitas Bani Saleh'),
(118310, 'https://ror.org/00ftv3450', 'en', 1, 'https://ror.org/00ftv3450 Department of Transport and Planning');
INSERT INTO `rors` VALUES
(118311, 'https://ror.org/00n7ba848', 'fr', 1, 'https://ror.org/00n7ba848 DEFROST: DEFormable Robotics SofTware DEFROST: Logiciels pour robots dƩformables'),
(118312, 'https://ror.org/024wx0b20', 'fr', 1, 'https://ror.org/024wx0b20 SPLITS: Languages de Programmation SƩcures et Outils pour la SƩcuritƩ SPLITS: Secure Programming Languages & Tools for Security'),
(118313, 'https://ror.org/04eej9726', 'fr', 1, 'https://ror.org/04eej9726 Centre Inria de l''UniversitƩ de Lille Inria Centre at the University of Lille'),
(118314, 'https://ror.org/00j4q0z51', 'no', 1, 'https://ror.org/00j4q0z51 Tannhelsetjenestens kompetansesenter Ƙst'),
(118315, 'https://ror.org/000ed3w25', 'en', 1, 'https://ror.org/000ed3w25 St Vincent''s Hospital Sydney'),
(118316, 'https://ror.org/04gy3ks39', 'fr', 1, 'https://ror.org/04gy3ks39 MEMPHIS: Modeling Enablers for Multi-PHysics and InteractionS MEMPHIS: Modèles et méthodes pour les problèmes multiphysiques et interactions'),
(118317, 'https://ror.org/03aamct80', 'en', 1, 'https://ror.org/03aamct80 Alderney Wildlife Trust'),
(118318, 'https://ror.org/00zq1dy58', 'en', 1, 'https://ror.org/00zq1dy58 Forecasting Research Institute'),
(118319, 'https://ror.org/05sxdf220', 'fr', 1, 'https://ror.org/05sxdf220 EPIONE: E-Patient : Images, données & mOdèles pour la médeciNe numériquE EPIONE: E-Patient: Images, Data & MOdels for e-MediciNE'),
(118320, 'https://ror.org/024v8zg86', 'hr', 1, 'https://ror.org/024v8zg86 Srednja Å”kola Andrije Ljudevita Adamića'),
(118321, 'https://ror.org/010wkqn50', 'en', 1, 'https://ror.org/010wkqn50 Microsoft Research New England Microsoft Research New England (United States)'),
(118322, 'https://ror.org/04xgmty70', 'en', 1, 'https://ror.org/04xgmty70 Bogor Agricultural Development Polytechnic'),
(118323, 'https://ror.org/035k61372', 'fr', 1, 'https://ror.org/035k61372 MOSAIC: MOrphogenesis Simulation and Analysis In siliCo Simulation et Analyse de la morphogenèse in siliCo'),
(118324, 'https://ror.org/005g9fg60', 'fr', 1, 'https://ror.org/005g9fg60 MALT: Apprentissage Automatique avec Contraintes Temporelles MALT: MAchine Learning with Temporal Constraints'),
(118325, 'https://ror.org/05kbz9h69', 'en', 1, 'https://ror.org/05kbz9h69 Tartus universiteti University of Tartus Ų¬Ų§Ł…Ų¹Ų© طرطوس'),
(118326, 'https://ror.org/028v8mq79', 'id', 1, 'https://ror.org/028v8mq79 Politeknik Pelayaran Surabaya Surabaya Maritime Polytechnic'),
(118327, 'https://ror.org/043pcqd72', 'es', 1, 'https://ror.org/043pcqd72 Universidad de Desarrollo Sustentable'),
(118328, 'https://ror.org/00kv63439', 'fr', 1, 'https://ror.org/00kv63439 Institut National de SantƩ Publique du QuƩbec'),
(118329, 'https://ror.org/037zfpn66', 'en', 1, 'https://ror.org/037zfpn66 Great Sand Dunes National Park and Preserve Parque nacional y reserva Grandes Dunas de Arena'),
(118330, 'https://ror.org/03hahne97', 'en', 1, 'https://ror.org/03hahne97 Namangan Institute of Engineering and Technology Namangan muhandislik-texnologiya instituti'),
(118331, 'https://ror.org/05ra54594', 'es', 1, 'https://ror.org/05ra54594 Hospital Central Sur de Alta Especialidad PEMEX'),
(118332, 'https://ror.org/0194hft57', 'en', 1, 'https://ror.org/0194hft57 DIVERSE: Diversity-centric Software Engineering'),
(118333, 'https://ror.org/02fw5vr12', 'en', 1, 'https://ror.org/02fw5vr12 Tam Anh General Hospital, Ha Noi'),
(118334, 'https://ror.org/00gwm8q58', 'fr', 1, 'https://ror.org/00gwm8q58 IROKO: Data Driven Environmental Sciences IROKO: Sciences environnementales guidƩes par les donnƩes'),
(118335, 'https://ror.org/04m5zyp18', 'fr', 1, 'https://ror.org/04m5zyp18 CARMEN: ModƩlisation et calculs pour l''Ʃlectrophysiologie cardiaque'),
(118336, 'https://ror.org/035qh5653', 'en', 1, 'https://ror.org/035qh5653 M.G. Kholodny Institute of Botany'),
(118337, 'https://ror.org/0358yps07', 'en', 1, 'https://ror.org/0358yps07 Council of Agriculture'),
(118338, 'https://ror.org/02mzvf848', 'en', 1, 'https://ror.org/02mzvf848 Department of Jobs, Precincts and Regions'),
(118339, 'https://ror.org/034zjpe43', 'fr', 1, 'https://ror.org/034zjpe43 GAMBLE: Geometric Algorithms & Models Beyond the Linear & Euclidean realm GAMBLE: Géométrie, Algorithmes et Modèles Bien au-delà du Linéaire et de l''Euclidien'),
(118340, 'https://ror.org/02kj3rm24', 'en', 1, 'https://ror.org/02kj3rm24 Wisconsin Geological and Natural History Survey'),
(118341, 'https://ror.org/02p7qvj25', 'en', 1, 'https://ror.org/02p7qvj25 Ilocos Sur Polytechnic State College'),
(118342, 'https://ror.org/02r805m55', 'id', 1, 'https://ror.org/02r805m55 Sekolah Tinggi Agama Islam Al-Hikmah'),
(118343, 'https://ror.org/04mr3tx26', 'en', 1, 'https://ror.org/04mr3tx26 Institute for Byzantine Studies SASA VizantoloÅ”ki institut SANU Š’ŠøŠ·Š°Š½Ń‚Š¾Š»Š¾ŃˆŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”ŠŠŠ£'),
(118344, 'https://ror.org/04e2fhx97', 'fr', 1, 'https://ror.org/04e2fhx97 Synthèse et Isolement de Molécules BioActives'),
(118345, 'https://ror.org/03f0t8b71', 'es', 1, 'https://ror.org/03f0t8b71 Universidad TƩcnica del Norte'),
(118346, 'https://ror.org/00tpxnv37', 'fr', 1, 'https://ror.org/00tpxnv37 OPIS: OPtImization for large Scale biomedical data OPIS: OPtimisation Imagerie et SantƩ'),
(118347, 'https://ror.org/016sv6m22', 'fr', 1, 'https://ror.org/016sv6m22 PARTOUT: Automatisation et ReprƩsenTation: fOndation du calcUl et de la dƩducTion PARTOUT: Proof Automation and RepresenTation: a fOundation of compUtation and deducTion'),
(118348, 'https://ror.org/04tb95541', 'en', 1, 'https://ror.org/04tb95541 MANAO: Melting the frontiers between Light, Shape and Matter'),
(118349, 'https://ror.org/0241sry50', 'fr', 1, 'https://ror.org/0241sry50 CASTING: Cancer dynAmicS, adapTation and modelING CASTING: Dynamiques du Cancer, adaptation et modƩlisation'),
(118350, 'https://ror.org/04bw0hg47', 'en', 1, 'https://ror.org/04bw0hg47 Faculty of Design'),
(118351, 'https://ror.org/022pm4x73', 'en', 1, 'https://ror.org/022pm4x73 AVALON: Algorithms and Software Architectures for Distributed and HPC Platforms'),
(118352, 'https://ror.org/05pv6tc14', 'en', 1, 'https://ror.org/05pv6tc14 MATHERIALS: MATHematics for MatERIALS'),
(118353, 'https://ror.org/028m5h544', 'en', 1, 'https://ror.org/028m5h544 TOCCATA: Certified Programs, Certified Tools, Certified Floating-Point Computations'),
(118354, 'https://ror.org/03k3ky186', 'en', 1, 'https://ror.org/03k3ky186 Bundesinstitut für Risikobewertung Federal Institute for Risk Assessment'),
(118355, 'https://ror.org/01v6d0b34', 'en', 1, 'https://ror.org/01v6d0b34 Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support'),
(118356, 'https://ror.org/05b017y73', 'es', 1, 'https://ror.org/05b017y73 Centro de Investigaciones Científicas y Tecnológicas de Extremadura'),
(118357, 'https://ror.org/01m0z6m03', 'fr', 0, 'https://ror.org/01m0z6m03 Ɖcole normale supĆ©rieure de Fontenay-Saint-Cloud'),
(118358, 'https://ror.org/05k6zka24', 'en', 1, 'https://ror.org/05k6zka24 EVIHDAF Evidence for Sustainable Human Development Systems in Africa (Cameroon)'),
(118359, 'https://ror.org/00fdbgx35', 'en', 1, 'https://ror.org/00fdbgx35 Hospital for Tropical Diseases'),
(118360, 'https://ror.org/03c0kvc14', 'en', 1, 'https://ror.org/03c0kvc14 Kavli Energy NanoScience Institute'),
(118361, 'https://ror.org/016d28b58', 'en', 1, 'https://ror.org/016d28b58 Japan Ostomy Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Ŗć‚¹ćƒˆćƒŸćƒ¼å”ä¼š'),
(118362, 'https://ror.org/057gm9c24', 'en', 1, 'https://ror.org/057gm9c24 Japan Security Research Association Corporation å…¬ē›Šē¤¾å›£ę³•äŗŗå®‰å…Øäæéšœę‡‡č©±ä¼š'),
(118363, 'https://ror.org/03babyr89', 'ro', 1, 'https://ror.org/03babyr89 Institutul National de Cercetare-Dezvoltare pentru Pedologie Agrochimie si Protectia Mediului National Research and Development Institute for Soil Science Agrochemistry and Environment'),
(118364, 'https://ror.org/01vz0r831', 'en', 1, 'https://ror.org/01vz0r831 Japan Livestock Industry Associaciton å…¬ē›Šē¤¾å›£ę³•äŗŗäø­å¤®ē•œē”£ä¼š'),
(118365, 'https://ror.org/018mnnr12', 'en', 1, 'https://ror.org/018mnnr12 Muroran Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗå®¤č˜­åø‚åŒ»åø«ä¼š'),
(118366, 'https://ror.org/0482ksk80', 'en', 1, 'https://ror.org/0482ksk80 Purdue University in Indianapolis'),
(118367, 'https://ror.org/00e3qbp10', 'en', 1, 'https://ror.org/00e3qbp10 Japan Consumers'' Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę¶ˆč²»č€…å”ä¼š'),
(118368, 'https://ror.org/04k33s063', 'en', 1, 'https://ror.org/04k33s063 Ecological Life and Culture Organization å…¬ē›Šē¤¾å›£ę³•äŗŗē’°å¢ƒē”Ÿę“»ę–‡åŒ–ę©Ÿę§‹'),
(118369, 'https://ror.org/00t6sz979', 'no_lang_code', 1, 'https://ror.org/00t6sz979 MedSIR (Spain)'),
(118370, 'https://ror.org/00vd0rf02', 'en', 1, 'https://ror.org/00vd0rf02 Baycrest Centre for Geriatric Care'),
(118371, 'https://ror.org/02v042q73', 'en', 1, 'https://ror.org/02v042q73 Conservatorio del Tolima Conservatory of Tolima'),
(118372, 'https://ror.org/05t0bww53', 'en', 1, 'https://ror.org/05t0bww53 New Jersey Geological and Water Survey'),
(118373, 'https://ror.org/0458dx230', 'hr', 1, 'https://ror.org/0458dx230 Centar za kliničku primjenu neuroznanosti Center for Clinical Research in Neuroscience'),
(118374, 'https://ror.org/04n13w407', 'fr', 1, 'https://ror.org/04n13w407 ESTA Ecole SupƩrieure des Technologies et des Affaires ESTA School of Business and Technology'),
(118375, 'https://ror.org/05w54q336', 'en', 1, 'https://ror.org/05w54q336 Parks & Open Space Association of JAPAN äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…¬åœ’ē·‘åœ°å”ä¼š'),
(118376, 'https://ror.org/05y4ptb16', 'fr', 1, 'https://ror.org/05y4ptb16 Institut de recherche agronomique et zootechnique Institute for Agronomic and Zootechnical Research'),
(118377, 'https://ror.org/02zynam48', 'no_lang_code', 1, 'https://ror.org/02zynam48 MBF Bioscience (United States)'),
(118378, 'https://ror.org/03gnnzc77', 'en', 1, 'https://ror.org/03gnnzc77 Institut für Bioprozess- und Analysenmesstechnik Institute for Bioprocessing and Analytical Measurement Techniques'),
(118379, 'https://ror.org/05rtn3a96', 'en', 1, 'https://ror.org/05rtn3a96 Employment Research Corporation äø€čˆ¬ē¤¾å›£ę³•äŗŗé›‡ē”Øå•é”Œē ”ē©¶ä¼š'),
(118380, 'https://ror.org/01hbrn211', 'en', 1, 'https://ror.org/01hbrn211 The Japan Design Space Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē©ŗé–“ćƒ‡ć‚¶ć‚¤ćƒ³å”ä¼š'),
(118381, 'https://ror.org/003ms1470', 'no_lang_code', 1, 'https://ror.org/003ms1470 InflowControl (Norway)'),
(118382, 'https://ror.org/04p7dd727', 'en', 1, 'https://ror.org/04p7dd727 Sretensky Theological Academy Š”Ń€ŠµŃ‚ŠµŠ½ŃŠŗŠ°Ń Š“ŃƒŃ…Š¾Š²Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(118383, 'https://ror.org/00h533452', 'en', 1, 'https://ror.org/00h533452 Institut de cardiologie de l''UniversitƩ d''Ottawa Ottawa Heart Institute'),
(118384, 'https://ror.org/045kr5p19', 'en', 1, 'https://ror.org/045kr5p19 Life Groenkloof Hospital'),
(118385, 'https://ror.org/05cndr128', 'no_lang_code', 1, 'https://ror.org/05cndr128 Research Center for Non Destructive Testing (Austria)'),
(118386, 'https://ror.org/03db92766', 'en', 1, 'https://ror.org/03db92766 Centre for Development of Telematics ą¤Ÿą„‡ą¤²ą„€ą¤®ą„ˆą¤Ÿą¤æą¤•ą„ą¤ø विकास ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(118387, 'https://ror.org/058kdrc56', 'en', 1, 'https://ror.org/058kdrc56 National Center of Radiobiology and Radiation Protection ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ Ń†ŠµŠ½Ń‚ŃŠŃ€ по Ń€Š°Š“ŠøŠ¾Š±ŠøŠ¾Š»Š¾Š³ŠøŃ Šø раГиационна защита'),
(118388, 'https://ror.org/0228dbh09', 'en', 1, 'https://ror.org/0228dbh09 Observer Research Foundation'),
(118389, 'https://ror.org/01yy5mw19', 'en', 1, 'https://ror.org/01yy5mw19 THE Japan WRITERS'' Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę–‡č—å®¶å”ä¼š'),
(118390, 'https://ror.org/00186jw56', 'en', 1, 'https://ror.org/00186jw56 Northwestern Health Sciences University'),
(118391, 'https://ror.org/02fqsc924', 'en', 1, 'https://ror.org/02fqsc924 University of Livingstonia'),
(118392, 'https://ror.org/00f8e4s55', 'en', 1, 'https://ror.org/00f8e4s55 Japan Fruit Tree Seedling & Clonal Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęžœęØ¹ēØ®č‹—å”ä¼š'),
(118393, 'https://ror.org/00mgzw555', 'en', 1, 'https://ror.org/00mgzw555 Kitakyushu International Techno-Cooperative Association å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ä¹å·žå›½éš›ęŠ€č”“å”åŠ›å”ä¼š'),
(118394, 'https://ror.org/04vyz7f76', 'pt', 1, 'https://ror.org/04vyz7f76 Agostinho Neto Hospital Hospital Agostinho Neto HƓpital Agostinho Neto'),
(118395, 'https://ror.org/00htcsr78', 'en', 1, 'https://ror.org/00htcsr78 The Japan Opera Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚Ŗćƒšćƒ©ęŒÆčˆˆä¼š'),
(118396, 'https://ror.org/007aah170', 'en', 1, 'https://ror.org/007aah170 Highline College'),
(118397, 'https://ror.org/02x579h40', 'hr', 1, 'https://ror.org/02x579h40 ARCA University of Applied Sciences VeleučiliŔte ARCA'),
(118398, 'https://ror.org/05w0tfe41', 'en', 1, 'https://ror.org/05w0tfe41 Japan Institute of Logistics Systems å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ­ć‚øć‚¹ćƒ†ć‚£ć‚Æć‚¹ć‚·ć‚¹ćƒ†ćƒ å”ä¼š'),
(118399, 'https://ror.org/05pxxpb81', 'en', 1, 'https://ror.org/05pxxpb81 Japan Corporate Auditors Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē›£ęŸ»å½¹å”ä¼š'),
(118400, 'https://ror.org/05eagjn10', 'en', 1, 'https://ror.org/05eagjn10 Moriya Foundation å…¬ē›Šč²”å›£ę³•äŗŗå®ˆå±‹ē•™å­¦ē”Ÿäŗ¤ęµå”ä¼š'),
(118401, 'https://ror.org/02cj8qz82', 'en', 1, 'https://ror.org/02cj8qz82 Nebraska Methodist College'),
(118402, 'https://ror.org/02r7t0d73', 'es', 1, 'https://ror.org/02r7t0d73 Universidad Autónoma Juan Misael Saracho'),
(118403, 'https://ror.org/00meyfe69', 'es', 1, 'https://ror.org/00meyfe69 German Peruvian Private University Universidad Privada Peruano Alemana'),
(118404, 'https://ror.org/039krqp56', 'en', 1, 'https://ror.org/039krqp56 Iligan Medical Center College'),
(118405, 'https://ror.org/05d8xgj52', 'no_lang_code', 1, 'https://ror.org/05d8xgj52 Payap University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø²ąø¢ąø±ąøž'),
(118406, 'https://ror.org/04z1z0f80', 'en', 1, 'https://ror.org/04z1z0f80 Nansei Shoto Industrial Advancement Center äø€čˆ¬č²”å›£ę³•äŗŗå—č„æåœ°åŸŸē”£ę„­ę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(118407, 'https://ror.org/03cbvt511', 'es', 1, 'https://ror.org/03cbvt511 Universidad de Guanajuato Campus Celaya-Salvatierra University of Guanajuato, Celaya-Salvatierra Campus'),
(118408, 'https://ror.org/03g88xj06', 'en', 1, 'https://ror.org/03g88xj06 Construction Industry Information Center äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ę„­ęƒ…å ±ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(118409, 'https://ror.org/05bbbm605', 'en', 1, 'https://ror.org/05bbbm605 Military Institute of Engineer Technology'),
(118410, 'https://ror.org/0523srp42', 'en', 1, 'https://ror.org/0523srp42 Astellas Foundation for Research on Metabolic Disorders å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚¹ćƒ†ćƒ©ć‚¹ē—…ę…‹ä»£č¬ē ”ē©¶ä¼š'),
(118411, 'https://ror.org/00m007a06', 'no_lang_code', 1, 'https://ror.org/00m007a06 Shitennoji University å››å¤©ēŽ‹åÆŗå¤§å­¦'),
(118412, 'https://ror.org/04z13yw48', 'hr', 1, 'https://ror.org/04z13yw48 General Hospital Pula Opća bolnica Pula Ospedale Generale di Pola'),
(118413, 'https://ror.org/0430j8555', 'no_lang_code', 1, 'https://ror.org/0430j8555 TechConcepts B.V. TechConcepts B.V. (Netherlands)'),
(118414, 'https://ror.org/05yjwhg67', 'en', 1, 'https://ror.org/05yjwhg67 Institute for Nuclear Research Pitesti'),
(118415, 'https://ror.org/04xrprn09', 'en', 1, 'https://ror.org/04xrprn09 Children and Families Agency こども家庭庁'),
(118416, 'https://ror.org/004qxjv96', 'en', 1, 'https://ror.org/004qxjv96 Concern Worldwide'),
(118417, 'https://ror.org/02g49pk97', 'en', 1, 'https://ror.org/02g49pk97 Nagoya Port Foundation å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹ćæćŖćØęŒÆčˆˆč²”å›£'),
(118418, 'https://ror.org/019683t59', 'en', 1, 'https://ror.org/019683t59 Japan Leprosy Mission äø€čˆ¬ē¤¾å›£ę³•äŗŗJAPAN LEPROSY MISSION'),
(118419, 'https://ror.org/0515qyg31', 'en', 1, 'https://ror.org/0515qyg31 Deva Nagri College ą¤¦ą„‡ą¤µą¤Øą¤—ą¤°ą„€ ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤®ą„‡ą¤°ą¤ '),
(118420, 'https://ror.org/04ekj8510', 'en', 1, 'https://ror.org/04ekj8510 Sri Dharmasthala Manjunatheshwara College of Ayurveda & Hospital Udupi ą²Žą²øą³ą²”ą²æą²Žą²‚ ą²†ą²Æą³ą²°ą³ą²µą³†ą³•ą²¦ ą²•ą²¾ą²²ą³†ą³•ą²œą³'),
(118421, 'https://ror.org/01h7j5k21', 'en', 1, 'https://ror.org/01h7j5k21 Health, Labour and Welfare Statistics Association äø€čˆ¬č²”å›£ę³•äŗŗåŽšē”ŸåŠ“åƒēµ±čØˆå”ä¼š'),
(118422, 'https://ror.org/02k3smh20', 'en', 1, 'https://ror.org/02k3smh20 Universidad de Kentucky University of Kentucky UniversitƩ du kentucky'),
(118423, 'https://ror.org/03127q162', 'en', 1, 'https://ror.org/03127q162 Aditya University ą°†ą°¦ą°æą°¤ą±ą°Æ ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(118424, 'https://ror.org/0468m5s46', 'es', 1, 'https://ror.org/0468m5s46 Instituto de Historia Antigua Oriental "Dr. Abraham Rosenvasser"'),
(118425, 'https://ror.org/04qq62n14', 'en', 1, 'https://ror.org/04qq62n14 Setouchi Vocational College of Career and Professional Studies ć›ćØć†ć”č¦³å…‰å°‚é–€č·ēŸ­ęœŸå¤§å­¦'),
(118426, 'https://ror.org/022gw9k40', 'en', 1, 'https://ror.org/022gw9k40 Japan Municipal Development Corporation äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½åø‚ē”ŗę‘ęŒÆčˆˆå”ä¼š'),
(118427, 'https://ror.org/001ryn223', 'pt', 1, 'https://ror.org/001ryn223 Secretaria de Estado da Educação de GoiÔs Secretary of State for Education of GoiÔs'),
(118428, 'https://ror.org/05aqxqy14', 'en', 1, 'https://ror.org/05aqxqy14 The Japan-Vietnam Association å…¬ē›Šē¤¾å›£ę³•äŗŗćƒ™ćƒˆćƒŠćƒ å”ä¼š'),
(118429, 'https://ror.org/02k5qmq46', 'en', 1, 'https://ror.org/02k5qmq46 Blue Sea and Green Land Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒ–ćƒ«ćƒ¼ć‚·ćƒ¼ćƒ»ć‚¢ćƒ³ćƒ‰ćƒ»ć‚°ćƒŖćƒ¼ćƒ³ćƒ©ćƒ³ćƒ‰č²”å›£'),
(118430, 'https://ror.org/02hyahm52', 'en', 1, 'https://ror.org/02hyahm52 University of Judicial Sciences and Administrative Services دانؓگاه Ų¹Ł„ŁˆŁ… Ł‚Ų¶Ų§ŪŒŪŒ و Ų®ŲÆŁ…Ų§ŲŖ اداری'),
(118431, 'https://ror.org/04vpsen23', 'de', 1, 'https://ror.org/04vpsen23 HSD Hochschule Dƶpfer'),
(118432, 'https://ror.org/05x8vxp89', 'en', 1, 'https://ror.org/05x8vxp89 The Shipbuilders'' Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é€ čˆ¹å·„ę„­ä¼š'),
(118433, 'https://ror.org/04tsjk726', 'nl', 1, 'https://ror.org/04tsjk726 Rijndam Revalidatiecentrum'),
(118434, 'https://ror.org/03tj9dz52', 'en', 1, 'https://ror.org/03tj9dz52 Stillman College'),
(118435, 'https://ror.org/03s2mhd04', 'en', 1, 'https://ror.org/03s2mhd04 Hanoi Law University TrĘ°į»ng ĐẔi hį»c Luįŗ­t HĆ  Nį»™i'),
(118436, 'https://ror.org/04s4r2c40', 'en', 1, 'https://ror.org/04s4r2c40 Foundation of Social Development for Senior Citizens äø€čˆ¬č²”å›£ę³•äŗŗé•·åÆæē¤¾ä¼šé–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(118437, 'https://ror.org/00z1njc54', 'en', 1, 'https://ror.org/00z1njc54 Mitsui Life Social Welfare Foundation å…¬ē›Šč²”å›£ę³•äŗŗäø‰äŗ•ē”Ÿå‘½åŽšē”Ÿč²”å›£'),
(118438, 'https://ror.org/02tce8t86', 'en', 1, 'https://ror.org/02tce8t86 Global Climate Forum'),
(118439, 'https://ror.org/02g8zgp32', 'en', 1, 'https://ror.org/02g8zgp32 Adirondack Ecological Center'),
(118440, 'https://ror.org/04cx6ae80', 'en', 1, 'https://ror.org/04cx6ae80 Japan Forming Machinery Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›åœ§ę©Ÿę¢°å·„ę„­ä¼š'),
(118441, 'https://ror.org/04ncff402', 'en', 1, 'https://ror.org/04ncff402 Foreign Correspondents'' Club of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å¤–å›½ē‰¹ę“¾å“”å”ä¼š'),
(118442, 'https://ror.org/03r2yny04', 'en', 1, 'https://ror.org/03r2yny04 Kalinga Institute of Social Sciences ą¬•ą¬³ą¬æą¬™ą­ą¬— ą¬‡ą¬Øą¬·ą­ą¬Ÿą¬æą¬šą­ą­Ÿą­ą¬Ÿ ଅଫ ସୋସିଆଲ ą¬øą¬¾ą¬‡ą¬Øą­ą¬ø'),
(118443, 'https://ror.org/04stpnd16', 'ro', 1, 'https://ror.org/04stpnd16 Institutul de Cercetari Biologice Cluj-Napoca'),
(118444, 'https://ror.org/008sqe405', 'en', 1, 'https://ror.org/008sqe405 Children''s Hospital Srebrnjak Dječja Bolnica Srebrnjak'),
(118445, 'https://ror.org/00as6e892', 'en', 1, 'https://ror.org/00as6e892 Qatar Museums Ł‡ŁŠŲ¦Ų© متاحف قطر'),
(118446, 'https://ror.org/01eg6e534', 'en', 1, 'https://ror.org/01eg6e534 Raj Rishi Bhartrihari Matsya University राज ऋषि ą¤­ą¤°ą„ą¤¤ą„ƒą¤¹ą¤°ą¤æ ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, अलवर'),
(118447, 'https://ror.org/003mvv560', 'pt', 1, 'https://ror.org/003mvv560 Hemorio Instituto Estadual de Hematologia Arthur de Siqueira Cavalcanti'),
(118448, 'https://ror.org/01ankh713', 'no_lang_code', 1, 'https://ror.org/01ankh713 First Welding Company (Slovakia)'),
(118449, 'https://ror.org/04d52p729', 'en', 1, 'https://ror.org/04d52p729 Indiana Biosciences Research Institute'),
(118450, 'https://ror.org/05xevhk22', 'en', 1, 'https://ror.org/05xevhk22 Tiffin University'),
(118451, 'https://ror.org/05xcwqq37', 'en', 1, 'https://ror.org/05xcwqq37 Okinawa Prefectual Center Of Constructional Technology äø€čˆ¬č²”å›£ę³•äŗŗę²–ēø„ēœŒå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(118452, 'https://ror.org/01f3b0g09', 'en', 1, 'https://ror.org/01f3b0g09 Technological Institute of Castilla y León'),
(118453, 'https://ror.org/02gfzzy13', 'en', 1, 'https://ror.org/02gfzzy13 Japan Association for Educational Broadcasting äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę”¾é€ę•™č‚²å”ä¼š'),
(118454, 'https://ror.org/04vthfe05', 'en', 1, 'https://ror.org/04vthfe05 Rishi Bankim Chandra College ऋषि बंकिम ą¤šą¤‚ą¤¦ą„ą¤° ą¤•ą„‰ą¤²ą„‡ą¤œ ঋষি ą¦¬ą¦™ą§ą¦•ą¦æą¦® ą¦šą¦Øą§ą¦¦ą§ą¦° ą¦•ą¦²ą§‡ą¦œ ರಿಷಿ ą²¬ą²‚ą²•ą²æą²®ą³ ą²šą²‚ą²¦ą³ą²° ą²•ą²¾ą²²ą³‡ą²œą³ą²—ą²³ą³'),
(118455, 'https://ror.org/01gcdtm70', 'fr', 1, 'https://ror.org/01gcdtm70 Institut Scientifique de Service Public'),
(118456, 'https://ror.org/04s2jm085', 'en', 1, 'https://ror.org/04s2jm085 Georgian College'),
(118457, 'https://ror.org/04ehvsb92', 'en', 1, 'https://ror.org/04ehvsb92 Tohoku Economic Federation äø€čˆ¬ē¤¾å›£ę³•äŗŗę±åŒ—ēµŒęøˆé€£åˆä¼š'),
(118458, 'https://ror.org/039avsx35', 'en', 1, 'https://ror.org/039avsx35 Georgian Institute of Public Affairs įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒ–įƒįƒ’įƒįƒ“įƒįƒ”įƒ‘įƒ įƒ˜įƒ• įƒ”įƒįƒ„įƒ›įƒ”įƒ—įƒ ინეტიტუტი'),
(118459, 'https://ror.org/016jjeg55', 'no_lang_code', 1, 'https://ror.org/016jjeg55 LanzaTech (New Zealand)'),
(118460, 'https://ror.org/02e2g9z06', 'en', 1, 'https://ror.org/02e2g9z06 Elsahel Teaching Hospital Cairo Egypt'),
(118461, 'https://ror.org/05k8hke60', 'pt', 1, 'https://ror.org/05k8hke60 Museu EtnogrƔfico da Praia Praia Ethnographic Museum'),
(118462, 'https://ror.org/04jhxpq45', 'es', 1, 'https://ror.org/04jhxpq45 Universidad Iberoamericana'),
(118463, 'https://ror.org/05cggb038', 'no_lang_code', 1, 'https://ror.org/05cggb038 Teck (Canada)'),
(118464, 'https://ror.org/01fyk0v41', 'en', 1, 'https://ror.org/01fyk0v41 Shimonoseki City University 下関市立大学'),
(118465, 'https://ror.org/01yw8dm24', 'en', 1, 'https://ror.org/01yw8dm24 The Maritime Human Resource Institute, Japan äø€čˆ¬č²”å›£ę³•äŗŗęµ·ęŠ€ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(118466, 'https://ror.org/00rq4er08', 'en', 1, 'https://ror.org/00rq4er08 Japanese Association for Social Work Education ę—„ęœ¬ć‚½ćƒ¼ć‚·ćƒ£ćƒ«ćƒÆćƒ¼ć‚Æę•™č‚²å­¦ę ”é€£ē›Ÿ'),
(118467, 'https://ror.org/03161d176', 'es', 1, 'https://ror.org/03161d176 Instituto de GeografĆ­a Tropical'),
(118468, 'https://ror.org/057bq1s94', 'en', 1, 'https://ror.org/057bq1s94 Fullerton College'),
(118469, 'https://ror.org/02h1p7v03', 'en', 1, 'https://ror.org/02h1p7v03 The Japanese Society of Microscopy å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é”•å¾®é”å­¦ä¼š'),
(118470, 'https://ror.org/02tbfvr89', 'fr', 1, 'https://ror.org/02tbfvr89 Chadian Institute of Agronomic Research for Development Institut Tchadien de Recherche Agronomique pour le DƩveloppement'),
(118471, 'https://ror.org/0425rjj21', 'en', 1, 'https://ror.org/0425rjj21 Academia Fortelor Aeriene "Henri Coandă" Henri Coanda Air Force Academy'),
(118472, 'https://ror.org/0000cg692', 'en', 1, 'https://ror.org/0000cg692 Japan Association of Kidney Disease Patients äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½č…Žč‡“ē—…å”č­°ä¼š'),
(118473, 'https://ror.org/048d4j826', 'en', 1, 'https://ror.org/048d4j826 Tamansiswa Palembang University Universitas Tamansiswa Palembang'),
(118474, 'https://ror.org/005c60751', 'en', 1, 'https://ror.org/005c60751 Raritan Valley Community College'),
(118475, 'https://ror.org/04jh7h472', 'en', 1, 'https://ror.org/04jh7h472 Chigasaki Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗčŒ…ćƒ¶å“ŽåŒ»åø«ä¼š'),
(118476, 'https://ror.org/04p457x22', 'en', 1, 'https://ror.org/04p457x22 Brevard College'),
(118477, 'https://ror.org/02ay1ht66', 'en', 1, 'https://ror.org/02ay1ht66 Biophics'),
(118478, 'https://ror.org/04max2941', 'en', 1, 'https://ror.org/04max2941 Fukui International Association å…¬ē›Šč²”å›£ę³•äŗŗē¦äŗ•ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(118479, 'https://ror.org/02y92d036', 'fr', 1, 'https://ror.org/02y92d036 Centre Hospitalier du Rouvray'),
(118480, 'https://ror.org/02h97hh92', 'en', 1, 'https://ror.org/02h97hh92 Cavendish University Uganda'),
(118481, 'https://ror.org/01effx298', 'en', 1, 'https://ror.org/01effx298 Jadec äø€čˆ¬č²”å›£ę³•äŗŗčƒ½åŠ›é–‹ē™ŗå·„å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(118482, 'https://ror.org/050pcd452', 'en', 1, 'https://ror.org/050pcd452 KCA University'),
(118483, 'https://ror.org/0487yh266', 'en', 1, 'https://ror.org/0487yh266 Japan Hospice Palliative Care Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ›ć‚¹ćƒ”ć‚¹ćƒ»ē·©å’Œć‚±ć‚¢ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(118484, 'https://ror.org/05sttyy11', 'en', 1, 'https://ror.org/05sttyy11 Jaypee Institute of Information Technology ą¤œą„‡ą¤Ŗą„€ ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤‡ą¤Øą„ą¤«ą„‰ą¤°ą„ą¤®ą„‡ą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(118485, 'https://ror.org/05fmr5p93', 'no_lang_code', 1, 'https://ror.org/05fmr5p93 MemBrain (Czechia)'),
(118486, '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'),
(118487, 'https://ror.org/0337f8v71', 'en', 1, 'https://ror.org/0337f8v71 Condominium Management Center å…¬ē›Šč²”å›£ę³•äŗŗćƒžćƒ³ć‚·ćƒ§ćƒ³ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(118488, 'https://ror.org/05jnv7j09', 'no_lang_code', 1, 'https://ror.org/05jnv7j09 Michael Baker International (United States)'),
(118489, 'https://ror.org/058cjye32', 'es', 1, 'https://ror.org/058cjye32 Universidad de Guanajuato University of Guanajuato'),
(118490, 'https://ror.org/01pnctq19', 'en', 1, 'https://ror.org/01pnctq19 Indian Institute of Teacher Education'),
(118491, 'https://ror.org/049g6h063', 'en', 1, 'https://ror.org/049g6h063 Egale Canada'),
(118492, 'https://ror.org/008syg534', 'es', 1, 'https://ror.org/008syg534 Universidad del Caribe (UNICARIBE)'),
(118493, 'https://ror.org/03h800j91', 'es', 1, 'https://ror.org/03h800j91 Universidad Adventista Dominicana'),
(118494, 'https://ror.org/04ej5wa30', 'en', 1, 'https://ror.org/04ej5wa30 The Japan Society for Technology of Plasticity äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å”‘ę€§åŠ å·„å­¦ä¼š'),
(118495, 'https://ror.org/038c55s31', 'en', 1, 'https://ror.org/038c55s31 Dar es Salaam Institute of Technology'),
(118496, 'https://ror.org/00h5j0347', 'en', 1, 'https://ror.org/00h5j0347 The Society of Rheology, Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ¬ć‚Ŗćƒ­ć‚øćƒ¼å­¦ä¼š'),
(118497, 'https://ror.org/02ny1dx49', 'en', 1, 'https://ror.org/02ny1dx49 Japan Choral Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬åˆå”±é€£ē›Ÿ'),
(118498, 'https://ror.org/059pxp552', 'en', 1, 'https://ror.org/059pxp552 Rabindra Bharati University ą¤°ą¤µą„€ą¤Øą„ą¤¦ą„ą¤° ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦°ą¦¬ą§€ą¦Øą§ą¦¦ą§ą¦°ą¦­ą¦¾ą¦°ą¦¤ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(118499, 'https://ror.org/03a3kr148', 'en', 1, 'https://ror.org/03a3kr148 Travancore medicity medical College hospital'),
(118500, 'https://ror.org/02es2jq57', 'fr', 1, 'https://ror.org/02es2jq57 Cegep Edouard Montpetit CollĆØge Ɖdouard-Montpetit'),
(118501, 'https://ror.org/014v0sb27', 'en', 1, 'https://ror.org/014v0sb27 The Society of Fiber Science and Technology, Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗē¹Šē¶­å­¦ä¼š'),
(118502, 'https://ror.org/03vr3gq96', 'en', 1, 'https://ror.org/03vr3gq96 Institute of Chartered Financial Analysts of India University, Jaipur'),
(118503, 'https://ror.org/03js7ty41', 'en', 1, 'https://ror.org/03js7ty41 Kyushu Industrial Advancement Center äø€čˆ¬č²”å›£ę³•äŗŗä¹å·žåœ°åŸŸē”£ę„­ę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(118504, 'https://ror.org/00qnfqk03', 'en', 1, 'https://ror.org/00qnfqk03 Japan 2x4 Home Builders Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ„ćƒ¼ćƒć‚¤ćƒ•ć‚©ćƒ¼å»ŗēÆ‰å”ä¼š'),
(118505, 'https://ror.org/03g68pb09', 'no_lang_code', 1, 'https://ror.org/03g68pb09 Blinn College'),
(118506, 'https://ror.org/05m77s783', 'en', 1, 'https://ror.org/05m77s783 THE Tokai Foundation For Gender Studies å…¬ē›Šč²”å›£ę³•äŗŗę±ęµ·ć‚øć‚§ćƒ³ćƒ€ćƒ¼ē ”ē©¶ę‰€'),
(118507, 'https://ror.org/0034aq409', 'en', 1, 'https://ror.org/0034aq409 The Telecommunications Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—é€šäæ”å”ä¼š'),
(118508, 'https://ror.org/00svs2744', 'en', 1, 'https://ror.org/00svs2744 Al-Khwarizmi University'),
(118509, 'https://ror.org/02tb9w649', 'en', 1, 'https://ror.org/02tb9w649 THE Society Of Rubber Science And TECHNOLOGY, Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚“ćƒ å”ä¼š'),
(118510, 'https://ror.org/02js2n445', 'no_lang_code', 1, 'https://ror.org/02js2n445 Aptima (United States)'),
(118511, 'https://ror.org/01qv7e222', 'en', 1, 'https://ror.org/01qv7e222 Pontifical Athenaeum Regina Apostolorum Pontificio Ateneo Regina Apostolorum'),
(118512, 'https://ror.org/04a6j1k10', 'en', 1, 'https://ror.org/04a6j1k10 Meguro Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗē›®é»’åŒŗåŒ»åø«ä¼š'),
(118513, 'https://ror.org/056nqp360', 'de', 1, 'https://ror.org/056nqp360 MedAustron'),
(118514, 'https://ror.org/03ghy5256', 'en', 1, 'https://ror.org/03ghy5256 Institute of Health Information and Statistics Ústav zdravotnických informací a statistiky ČR'),
(118515, 'https://ror.org/03ff06b47', 'en', 1, 'https://ror.org/03ff06b47 Hardin–Simmons University'),
(118516, 'https://ror.org/04pw98b46', 'en', 1, 'https://ror.org/04pw98b46 Osaka Dental Hygienists'' Association å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗåŗœę­Æē§‘č”›ē”Ÿå£«ä¼š'),
(118517, 'https://ror.org/03n6dw312', 'no_lang_code', 1, 'https://ror.org/03n6dw312 German Plastics Center Süddeutsches Kunststoff-Zentrum (Germany)'),
(118518, 'https://ror.org/049zqw361', 'en', 1, 'https://ror.org/049zqw361 Gurugram University ą¤—ą„ą¤°ą„ą¤—ą„ą¤°ą¤¾ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(118519, 'https://ror.org/043pjwk57', 'no_lang_code', 1, 'https://ror.org/043pjwk57 DNAnexus (United States)'),
(118520, 'https://ror.org/05pzy5y50', 'en', 1, 'https://ror.org/05pzy5y50 Heat Pump and Thermal Storage Technology Center of Japan äø€čˆ¬č²”å›£ę³•äŗŗćƒ’ćƒ¼ćƒˆćƒćƒ³ćƒ—ćƒ»č“„ē†±ć‚»ćƒ³ć‚æćƒ¼'),
(118521, 'https://ror.org/055hzkr52', 'en', 1, 'https://ror.org/055hzkr52 Galen College of Nursing'),
(118522, 'https://ror.org/04rh68a02', 'en', 1, 'https://ror.org/04rh68a02 Japan Anchor Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ³ć‚«ćƒ¼å”ä¼š'),
(118523, 'https://ror.org/04q421571', 'no_lang_code', 1, 'https://ror.org/04q421571 PT Bio Farma (Indonesia)'),
(118524, 'https://ror.org/019jk0p98', 'en', 1, 'https://ror.org/019jk0p98 YMCA Nagasaki äø€čˆ¬č²”å›£ę³•äŗŗé•·å“ŽYMCA'),
(118525, 'https://ror.org/00g6vqe09', 'no_lang_code', 1, 'https://ror.org/00g6vqe09 Asuragen (United States)'),
(118526, 'https://ror.org/03nj2kd75', 'en', 1, 'https://ror.org/03nj2kd75 Houston Health and Human Services Department'),
(118527, 'https://ror.org/05d9pjk75', 'fr', 1, 'https://ror.org/05d9pjk75 Dauphine Recherches Juridiques'),
(118528, 'https://ror.org/00h1att17', 'en', 1, 'https://ror.org/00h1att17 Japan Machine Tool Builders'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·„ä½œę©Ÿę¢°å·„ę„­ä¼š'),
(118529, 'https://ror.org/00m31ft63', 'en', 1, 'https://ror.org/00m31ft63 SveučiliÅ”te u Splitu University of Split Š”Š²ŠµŃƒŃ‡ŠøŠ»ŠøŃˆŃ‚Šµ у Š”ŠæŠ»ŠøŃ‚Ńƒ'),
(118530, 'https://ror.org/02evem426', 'pt', 1, 'https://ror.org/02evem426 Escola Superior de Enfermagem de Santa Maria'),
(118531, 'https://ror.org/05sjrb944', 'en', 1, 'https://ror.org/05sjrb944 Menoufia University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŁˆŁŁŠŲ©ā€Ž'),
(118532, 'https://ror.org/01ztenz65', 'fr', 1, 'https://ror.org/01ztenz65 Centre Hospitalier de Mouscron'),
(118533, 'https://ror.org/033a3s432', 'en', 1, 'https://ror.org/033a3s432 University of Occupational Safety Management in Katowice'),
(118534, 'https://ror.org/00swp5c87', 'en', 1, 'https://ror.org/00swp5c87 Gynuity Health Projects'),
(118535, 'https://ror.org/00pnx7d83', 'en', 1, 'https://ror.org/00pnx7d83 Ehime Prefectural Nuclear Safety Center ę„›åŖ›ēœŒåŽŸå­åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(118536, 'https://ror.org/00170vz04', 'en', 1, 'https://ror.org/00170vz04 Wood Technological Association of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęœØęåŠ å·„ęŠ€č”“å”ä¼š'),
(118537, 'https://ror.org/04ykpca33', 'fr', 1, 'https://ror.org/04ykpca33 Institut des Sciences AppliquƩes et de la Simulation pour les Ʃnergies bas carbone'),
(118538, 'https://ror.org/02tm1xq35', 'en', 1, 'https://ror.org/02tm1xq35 FATA University فاٹا ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ فاټا Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(118539, 'https://ror.org/03f2kwz12', 'no_lang_code', 1, 'https://ror.org/03f2kwz12 BIA Separations (Slovenia)'),
(118540, 'https://ror.org/01amgsn23', 'en', 1, 'https://ror.org/01amgsn23 Premedix'),
(118541, 'https://ror.org/01gt7r886', 'en', 1, 'https://ror.org/01gt7r886 Scaffolding and Construction Equipment Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗä»®čØ­å·„ę„­ä¼š'),
(118542, 'https://ror.org/04bv2e296', 'es', 1, 'https://ror.org/04bv2e296 Instituto Valenciano de la Edificación'),
(118543, 'https://ror.org/05xs68x02', 'en', 1, 'https://ror.org/05xs68x02 Anticancer Fund Antikankerfonds Fonds Anticancer'),
(118544, 'https://ror.org/051xkjd32', 'en', 1, 'https://ror.org/051xkjd32 Hokkaido Agricultural Public corporation å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“č¾²ę„­å…¬ē¤¾'),
(118545, 'https://ror.org/031my5009', 'en', 1, 'https://ror.org/031my5009 Asia e University'),
(118546, 'https://ror.org/02sz0wz08', 'en', 1, 'https://ror.org/02sz0wz08 Health Systems Trust'),
(118547, 'https://ror.org/02g0x5e34', 'hr', 1, 'https://ror.org/02g0x5e34 Opća bolnica Šibenik Scientific Unit-General Hospital Šibenik'),
(118548, 'https://ror.org/019xk8h36', 'no_lang_code', 1, 'https://ror.org/019xk8h36 Axxam (Italy)'),
(118549, 'https://ror.org/003bd9j39', 'en', 1, 'https://ror.org/003bd9j39 Middle East Health Economics and Social Policy Center Ł…Ų±ŁƒŲ² الؓرق Ų§Ł„Ų£ŁˆŲ³Ų· للاقتصاد الصحى ŁˆŲ§Ł„Ų³ŁŠŲ§Ų³Ų© Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(118550, 'https://ror.org/01g454487', 'en', 1, 'https://ror.org/01g454487 National Institute of Transport'),
(118551, 'https://ror.org/048zea267', 'en', 1, 'https://ror.org/048zea267 Jagran Lakecity University'),
(118552, 'https://ror.org/03wtrat67', 'en', 1, 'https://ror.org/03wtrat67 Centre for Integrated Health Programs'),
(118553, 'https://ror.org/018pt6q74', 'hr', 1, 'https://ror.org/018pt6q74 Institut za informatičke inovacije Institute for Informatical Innovation'),
(118554, 'https://ror.org/01n6d5s08', 'en', 1, 'https://ror.org/01n6d5s08 Ghana Space Science and Technology Institute'),
(118555, 'https://ror.org/01xsjnd35', 'en', 1, 'https://ror.org/01xsjnd35 Tilak Maharashtra Vidyapeeth ą¤Ÿą¤æą¤³ą¤• ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(118556, 'https://ror.org/04461z340', 'en', 1, 'https://ror.org/04461z340 Japan Electric Power Civil Engineering Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»åŠ›åœŸęœØęŠ€č”“å”ä¼š'),
(118557, 'https://ror.org/05aghjq44', 'en', 1, 'https://ror.org/05aghjq44 Cincinnati Zoo and Botanical Garden'),
(118558, 'https://ror.org/011bh3d24', 'en', 1, 'https://ror.org/011bh3d24 Colombian Family Welfare Institute'),
(118559, 'https://ror.org/02w0kg036', 'en', 1, 'https://ror.org/02w0kg036 National Centre for the Replacement Refinement and Reduction of Animals in Research'),
(118560, 'https://ror.org/05x4e9473', 'pt', 1, 'https://ror.org/05x4e9473 Liga Portuguesa Contra a SIDA'),
(118561, 'https://ror.org/023n0vr78', 'en', 1, 'https://ror.org/023n0vr78 Japan Railway Engineers'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é“ęŠ€č”“å”ä¼š'),
(118562, 'https://ror.org/028ahgk39', 'en', 1, 'https://ror.org/028ahgk39 SƔmi University of Applied Sciences SƔmi allaskuvla'),
(118563, 'https://ror.org/019t3zw31', 'en', 1, 'https://ror.org/019t3zw31 Arkansas Geological Survey'),
(118564, 'https://ror.org/02asxp484', 'en', 1, 'https://ror.org/02asxp484 Japan Small and Medium Enterprise Management Consultant Association äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å°ä¼ę„­čØŗę–­å”ä¼š'),
(118565, 'https://ror.org/03meb8t18', 'en', 1, 'https://ror.org/03meb8t18 Center for Advanced Aerospace Technologies Centro Avanzado de TecnologĆ­as Aeroespaciales'),
(118566, 'https://ror.org/02z5vm027', 'en', 1, 'https://ror.org/02z5vm027 Nakano Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­é‡ŽåŒŗåŒ»åø«ä¼š'),
(118567, 'https://ror.org/03y8n3k44', 'en', 1, 'https://ror.org/03y8n3k44 Edogawa University ę±Ÿęˆøå·å¤§å­¦'),
(118568, 'https://ror.org/03mcw5r69', 'en', 1, 'https://ror.org/03mcw5r69 Southeastern Baptist Theological Seminary'),
(118569, 'https://ror.org/05m866204', 'no_lang_code', 1, 'https://ror.org/05m866204 Iquadrat (Spain)'),
(118570, 'https://ror.org/03cmvza02', 'no_lang_code', 1, 'https://ror.org/03cmvza02 CRM Group (Belgium)'),
(118571, 'https://ror.org/04fpkm116', 'no_lang_code', 1, 'https://ror.org/04fpkm116 Enanta Pharmaceuticals (United States)'),
(118572, 'https://ror.org/01emyp653', 'en', 1, 'https://ror.org/01emyp653 Patent Application Processing Center äø€čˆ¬č²”å›£ę³•äŗŗå·„ę„­ę‰€ęœ‰ęØ©é›»å­ęƒ…å ±åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(118573, 'https://ror.org/05dhkgd39', 'en', 1, 'https://ror.org/05dhkgd39 All Japan Real Estate Federation å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬äøå‹•ē”£å”ä¼š'),
(118574, 'https://ror.org/04mps6107', 'en', 1, 'https://ror.org/04mps6107 Association of Air Transport Engineering and Research å…¬ē›Šč²”å›£ę³•äŗŗčˆŖē©ŗč¼øé€ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(118575, 'https://ror.org/043nwx769', 'nl', 1, 'https://ror.org/043nwx769 Visio'),
(118576, 'https://ror.org/00qgyk751', 'en', 1, 'https://ror.org/00qgyk751 National Council for Curriculum and Assessment'),
(118577, 'https://ror.org/038q7d966', 'en', 1, 'https://ror.org/038q7d966 Kochi International Association å…¬ē›Šč²”å›£ę³•äŗŗé«˜ēŸ„ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(118578, 'https://ror.org/02yee0095', 'en', 1, 'https://ror.org/02yee0095 Japan Park Facilities Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…¬åœ’ę–½čØ­ę„­å”ä¼š'),
(118579, 'https://ror.org/0556an218', 'no_lang_code', 1, 'https://ror.org/0556an218 Tescan (Czechia)'),
(118580, 'https://ror.org/02ea5wd62', 'en', 1, 'https://ror.org/02ea5wd62 KE''KEN Textile Testing & Certification Center äø€čˆ¬č²”å›£ę³•äŗŗć‚±ć‚±ćƒ³č©¦éØ“čŖčØ¼ć‚»ćƒ³ć‚æćƒ¼'),
(118581, 'https://ror.org/05qktk524', 'hr', 1, 'https://ror.org/05qktk524 Aspira University of Applied Sciences VeleučiliŔte Aspira'),
(118582, 'https://ror.org/02tvj3806', 'en', 1, 'https://ror.org/02tvj3806 Hakodate City Institute Of Public Health å‡½é¤Øåø‚č”›ē”Ÿč©¦éØ“ę‰€'),
(118583, 'https://ror.org/038c31135', 'en', 1, 'https://ror.org/038c31135 IMS Ohta Central General Hospital åŒ»ē™‚ę³•äŗŗč²”å›£ę˜Žē†ä¼šć‚¤ćƒ ć‚¹å¤Ŗē”°äø­å¤®ē·åˆē—…é™¢'),
(118584, 'https://ror.org/036tdmc66', 'en', 1, 'https://ror.org/036tdmc66 Fukkoukai å…¬ē›Šč²”å›£ę³•äŗŗå¾©å…‰ä¼š'),
(118585, 'https://ror.org/013pbge12', 'en', 1, 'https://ror.org/013pbge12 Poltegor Institute'),
(118586, 'https://ror.org/04qs5en05', 'en', 1, 'https://ror.org/04qs5en05 West Bengal State University ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(118587, 'https://ror.org/02aqsxs83', 'en', 1, 'https://ror.org/02aqsxs83 Universidad de Oklahoma University of Oklahoma'),
(118588, 'https://ror.org/04nsfpy51', 'en', 1, 'https://ror.org/04nsfpy51 Historical Archive of the City of Cologne Historisches Archiv der Stadt Kƶln'),
(118589, 'https://ror.org/038xkrp67', 'en', 1, 'https://ror.org/038xkrp67 Hattori Foundation å…¬ē›Šč²”å›£ę³•äŗŗęœéƒØå…¬ē›Šč²”å›£'),
(118590, 'https://ror.org/02ewgxk11', 'id', 1, 'https://ror.org/02ewgxk11 Indonesian Baptist Theological College Sekolah Tinggi Teologi Baptis Indonesia'),
(118591, 'https://ror.org/03v2jew50', 'no_lang_code', 1, 'https://ror.org/03v2jew50 Xencor (United States)'),
(118592, 'https://ror.org/02rcm3a66', 'en', 1, 'https://ror.org/02rcm3a66 National Aquatic Resources Research and Development Agency'),
(118593, 'https://ror.org/050y5ck20', 'en', 1, 'https://ror.org/050y5ck20 Japan Science Promotion Inc. Foundation äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(118594, 'https://ror.org/01x1xh678', 'en', 1, 'https://ror.org/01x1xh678 East Bohemian Museum Muzeum východních Čech'),
(118595, 'https://ror.org/03tbncn87', 'fr', 1, 'https://ror.org/03tbncn87 Institut RƩgional de SantƩ Publique Regional Institute of Public Health'),
(118596, 'https://ror.org/04701b233', 'de', 1, 'https://ror.org/04701b233 Institut für Energie- und Umweltforschung Heidelberg Institute for Energy and Environmental Research'),
(118597, 'https://ror.org/02k8x6k10', 'en', 1, 'https://ror.org/02k8x6k10 The ITU Association of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ITU協会'),
(118598, 'https://ror.org/035914451', 'es', 1, 'https://ror.org/035914451 Centro Tecnológico Agroalimentario de Extremadura Extremadura Agricultural and Food Technological Centre'),
(118599, 'https://ror.org/035gtax93', 'en', 1, 'https://ror.org/035gtax93 Gifu Industrial Economic Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗå²é˜œēœŒē”£ę„­ēµŒęøˆęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(118600, 'https://ror.org/0069psd02', 'en', 1, 'https://ror.org/0069psd02 European School of Law and Administration Europejska Wyższa Szkoła Prawa i Administracji'),
(118601, 'https://ror.org/05nvdpy04', 'en', 1, 'https://ror.org/05nvdpy04 Ishikari Superconducting DC Power Transmission System ēŸ³ē‹©č¶…é›»å°Žćƒ»ē›“ęµé€é›»ć‚·ć‚¹ćƒ†ćƒ ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(118602, 'https://ror.org/052fbwe76', 'en', 1, 'https://ror.org/052fbwe76 Center for Study of Science Technology and Policy'),
(118603, 'https://ror.org/013m58231', 'en', 1, 'https://ror.org/013m58231 Agricultural and Rural Development Information Center äø€čˆ¬ē¤¾å›£ę³•äŗŗč¾²ę„­č¾²ę‘ę•“å‚™ęƒ…å ±ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(118604, 'https://ror.org/00jp0cf56', 'en', 1, 'https://ror.org/00jp0cf56 Osaka Association Of Medical Technologist å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗåŗœč‡ØåŗŠę¤œęŸ»ęŠ€åø«ä¼š'),
(118605, 'https://ror.org/022dhrf38', 'en', 1, 'https://ror.org/022dhrf38 Japan Pyrotechnics Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē…™ē«å”ä¼š'),
(118606, 'https://ror.org/035vje231', 'en', 1, 'https://ror.org/035vje231 The Japan Architectural Education and Information Center å…¬ē›Šč²”å›£ę³•äŗŗå»ŗēÆ‰ęŠ€č”“ę•™č‚²ę™®åŠć‚»ćƒ³ć‚æćƒ¼'),
(118607, 'https://ror.org/04mw1hy69', 'en', 1, 'https://ror.org/04mw1hy69 Al Wataniya Private University الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© الخاصة'),
(118608, 'https://ror.org/02kwn3a82', 'en', 1, 'https://ror.org/02kwn3a82 Chiyoda Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗåƒä»£ē”°åŒŗåŒ»åø«ä¼š'),
(118609, 'https://ror.org/02r724415', 'de', 1, 'https://ror.org/02r724415 Evangelische Hochschule Dresden'),
(118610, 'https://ror.org/030tm6614', 'no_lang_code', 1, 'https://ror.org/030tm6614 INES-Ruhengeri Institut d''Enseignement supƩrieur de Ruhengeri'),
(118611, 'https://ror.org/0084dr610', 'en', 1, 'https://ror.org/0084dr610 QuantCAD QuantCAD, LLC'),
(118612, 'https://ror.org/00hhkje33', 'en', 1, 'https://ror.org/00hhkje33 Royal Horticultural Society'),
(118613, 'https://ror.org/03qngxd77', 'es', 1, 'https://ror.org/03qngxd77 Corporación Escuela Tecnológica del Oriente'),
(118614, 'https://ror.org/033cwg652', 'en', 1, 'https://ror.org/033cwg652 The Recording Industry Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ¬ć‚³ćƒ¼ćƒ‰å”ä¼š'),
(118615, 'https://ror.org/002rb8q97', 'en', 1, 'https://ror.org/002rb8q97 Kumamoto Industry Support Foundation å…¬ē›Šč²”å›£ę³•äŗŗćć¾ć‚‚ćØē”£ę„­ę”Æę“č²”å›£'),
(118616, 'https://ror.org/01ef53534', 'en', 1, 'https://ror.org/01ef53534 The Volcanological Society of Japan ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ē«å±±å­¦ä¼š'),
(118617, 'https://ror.org/04shrgb80', 'en', 1, 'https://ror.org/04shrgb80 Allen College'),
(118618, 'https://ror.org/0139s2465', 'no_lang_code', 1, 'https://ror.org/0139s2465 Enterome (France)'),
(118619, 'https://ror.org/03xg8pv73', 'en', 1, 'https://ror.org/03xg8pv73 Covenant College'),
(118620, 'https://ror.org/0538nf417', 'en', 1, 'https://ror.org/0538nf417 InnoRenew CoE'),
(118621, 'https://ror.org/046xg8y70', 'fr', 1, 'https://ror.org/046xg8y70 Ɖcole Polytechnique de ThiĆØs'),
(118622, 'https://ror.org/00znwxq75', 'no_lang_code', 1, 'https://ror.org/00znwxq75 NeuroPace (United States)'),
(118623, 'https://ror.org/00fdzyk40', 'en', 1, 'https://ror.org/00fdzyk40 Korea Health Industry Development Institute'),
(118624, 'https://ror.org/03h82yz49', 'de', 1, 'https://ror.org/03h82yz49 KHM-Museumsverband Museum of Art History'),
(118625, 'https://ror.org/051wenh03', 'no_lang_code', 1, 'https://ror.org/051wenh03 Akademia'),
(118626, 'https://ror.org/0088kkx53', 'en', 1, 'https://ror.org/0088kkx53 The university of Lakki Marwat'),
(118627, 'https://ror.org/03tx62s72', 'en', 1, 'https://ror.org/03tx62s72 Nichols College'),
(118628, 'https://ror.org/02vtk3a57', 'nl', 1, 'https://ror.org/02vtk3a57 Lygature'),
(118629, 'https://ror.org/00mn8c655', 'en', 1, 'https://ror.org/00mn8c655 Open University of Mauritius'),
(118630, 'https://ror.org/038dhnb42', 'no_lang_code', 1, 'https://ror.org/038dhnb42 Lero'),
(118631, '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'),
(118632, 'https://ror.org/0574he388', 'en', 1, 'https://ror.org/0574he388 Jumeira University Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł…ŁŠŲ±Ų§'),
(118633, 'https://ror.org/04m8g8w48', 'no_lang_code', 1, 'https://ror.org/04m8g8w48 Certe'),
(118634, 'https://ror.org/01a0das81', 'en', 1, 'https://ror.org/01a0das81 Shennon Biotechnologies'),
(118635, 'https://ror.org/00dgyys91', 'en', 1, 'https://ror.org/00dgyys91 Qatar Mobility Innovations Center'),
(118636, 'https://ror.org/01v29qb04', 'en', 1, 'https://ror.org/01v29qb04 Durham University'),
(118637, 'https://ror.org/02pd9vm89', 'en', 1, 'https://ror.org/02pd9vm89 International Center For Environmental Technology Transfer å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē’°å¢ƒęŠ€č”“ē§»č»¢ć‚»ćƒ³ć‚æćƒ¼'),
(118638, 'https://ror.org/03a0kcr96', 'no_lang_code', 1, 'https://ror.org/03a0kcr96 Silverchair Information Systems (United States)'),
(118639, 'https://ror.org/00vd2h880', 'en', 1, 'https://ror.org/00vd2h880 Catholic University of Applied Sciences Freiburg Katholische Hochschule Freiburg'),
(118640, 'https://ror.org/01jbzz330', 'en', 1, 'https://ror.org/01jbzz330 Center for International Forestry Research'),
(118641, 'https://ror.org/05wgr0j38', 'en', 1, 'https://ror.org/05wgr0j38 Japan Mining Industry Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é‰±ę„­ęŒÆčˆˆä¼š'),
(118642, 'https://ror.org/036gvh298', 'en', 1, 'https://ror.org/036gvh298 Japan Canoe Federation å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚«ćƒŒćƒ¼é€£ē›Ÿ'),
(118643, 'https://ror.org/03q1hz719', 'en', 1, 'https://ror.org/03q1hz719 Japan National Press Club å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čØ˜č€…ć‚Æćƒ©ćƒ–'),
(118644, 'https://ror.org/03m07m097', 'en', 1, 'https://ror.org/03m07m097 AFS Intercultural Programs å…¬ē›Šč²”å›£ę³•äŗŗAFSę—„ęœ¬å”ä¼š'),
(118645, 'https://ror.org/018qqx512', 'en', 1, 'https://ror.org/018qqx512 Kanagawa Construction Technology Center å…¬ē›Šč²”å›£ę³•äŗŗē„žå„ˆå·ēœŒéƒ½åø‚ę•“å‚™ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(118646, 'https://ror.org/02cxadc11', 'no_lang_code', 1, 'https://ror.org/02cxadc11 Winrock International (United States)'),
(118647, 'https://ror.org/02pn9ep17', 'it', 1, 'https://ror.org/02pn9ep17 Pontifical Atheneum of St. Anselm Pontificio Ateneo Sant''Anselmo'),
(118648, 'https://ror.org/05rjvjy05', 'en', 1, 'https://ror.org/05rjvjy05 Study Center for National Reconciliation Å tudijski center za narodno spravo'),
(118649, 'https://ror.org/04nm4bw06', 'no_lang_code', 1, 'https://ror.org/04nm4bw06 Lumentum (United States)'),
(118650, 'https://ror.org/015hqbh76', 'en', 1, 'https://ror.org/015hqbh76 Japan Psychiatric Hospitals Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē²¾ē„žē§‘ē—…é™¢å”ä¼š'),
(118651, 'https://ror.org/01n7gsv75', 'en', 1, 'https://ror.org/01n7gsv75 Japan Trucking Association å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬ćƒˆćƒ©ćƒƒć‚Æå”ä¼š'),
(118652, 'https://ror.org/03sj5jg89', 'en', 1, 'https://ror.org/03sj5jg89 Japan Valve Manufacturers'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒćƒ«ćƒ–å·„ę„­ä¼š'),
(118653, 'https://ror.org/03406rs88', 'en', 1, 'https://ror.org/03406rs88 Biodiversity Conservation Foundation'),
(118654, 'https://ror.org/0097jy435', 'en', 1, 'https://ror.org/0097jy435 Japan Co-operative Alliance äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…±åŒēµ„åˆé€£ęŗę©Ÿę§‹'),
(118655, 'https://ror.org/00zdd1465', 'en', 1, 'https://ror.org/00zdd1465 Nines Photovoltaics (Ireland)'),
(118656, 'https://ror.org/01w00gh50', 'no_lang_code', 1, 'https://ror.org/01w00gh50 Immunome (United States)'),
(118657, 'https://ror.org/0290gkj37', 'en', 1, 'https://ror.org/0290gkj37 Idaho Geological Survey'),
(118658, 'https://ror.org/038hbfs18', 'no_lang_code', 1, 'https://ror.org/038hbfs18 Deciphera Pharmaceuticals (United States)'),
(118659, 'https://ror.org/02mbc1535', 'en', 1, 'https://ror.org/02mbc1535 International Pacific Halibut Commission'),
(118660, 'https://ror.org/04hnbx943', 'en', 1, 'https://ror.org/04hnbx943 Environment for Development Kenya'),
(118661, 'https://ror.org/002mn1c33', 'en', 1, 'https://ror.org/002mn1c33 Rajiv Gandhi Medical College ą“°ą“¾ą“œąµ€ą“µąµ ą“—ą“¾ą“Øąµą“§ą“æ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(118662, 'https://ror.org/03c06gm48', 'no_lang_code', 1, 'https://ror.org/03c06gm48 CytomX Therapeutics (United States)'),
(118663, 'https://ror.org/00gfv6v51', 'sk', 1, 'https://ror.org/00gfv6v51 NÔrodný Onkologický Ústav'),
(118664, 'https://ror.org/05bkcw107', 'en', 1, 'https://ror.org/05bkcw107 Marine Acoustics Society of Japan ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗęµ·ę“‹éŸ³éŸæå­¦ä¼š'),
(118665, 'https://ror.org/009ramd78', 'en', 1, 'https://ror.org/009ramd78 Pacific Adventist University'),
(118666, 'https://ror.org/0511xx539', 'fr', 1, 'https://ror.org/0511xx539 IUT of Rodez Institut Universitaire de Technologie de Rodez'),
(118667, 'https://ror.org/028493376', 'no_lang_code', 1, 'https://ror.org/028493376 Selvita Selvita (Poland)'),
(118668, 'https://ror.org/017ce4302', 'en', 1, 'https://ror.org/017ce4302 Japan Fire Retardant Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é˜²ē‚Žå”ä¼š'),
(118669, 'https://ror.org/04hvzrd20', 'en', 1, 'https://ror.org/04hvzrd20 Sangam Netralaya'),
(118670, 'https://ror.org/019hezp12', 'no_lang_code', 1, 'https://ror.org/019hezp12 Synlogic (United States)');
INSERT INTO `rors` VALUES
(118671, 'https://ror.org/02batjz45', 'en', 1, 'https://ror.org/02batjz45 Japan Dredging and Reclamation Engineering Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŸ‹ē«‹ęµšęø«å”ä¼š'),
(118672, 'https://ror.org/04jx7z940', 'sr', 1, 'https://ror.org/04jx7z940 Fruit Research Institute Institut za voćarstvo, Čačak'),
(118673, 'https://ror.org/042s6y882', 'no_lang_code', 1, 'https://ror.org/042s6y882 Inovio Pharmaceuticals (United States)'),
(118674, 'https://ror.org/000w5zc19', 'uz', 1, 'https://ror.org/000w5zc19 Axborot Texnologiyalari va Menejment Universiteti University of Information Technologies and Management'),
(118675, 'https://ror.org/01vp3ms71', 'en', 1, 'https://ror.org/01vp3ms71 Automobile Business Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»Šä¼šč­°ę‰€'),
(118676, 'https://ror.org/00kt9hm47', 'no_lang_code', 1, 'https://ror.org/00kt9hm47 Hensoldt (Germany)'),
(118677, 'https://ror.org/02fdfcp95', 'en', 1, 'https://ror.org/02fdfcp95 National Centre of Geodesy and Spatial Information'),
(118678, 'https://ror.org/02d9tbb08', 'en', 1, 'https://ror.org/02d9tbb08 Henry Ford College'),
(118679, 'https://ror.org/02jgbpg06', 'fr', 1, 'https://ror.org/02jgbpg06 Railenium'),
(118680, 'https://ror.org/02ydw9k53', 'en', 1, 'https://ror.org/02ydw9k53 Tohoku Regional Advancement Center å…¬ē›Šč²”å›£ę³•äŗŗę±åŒ—ę“»ę€§åŒ–ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(118681, 'https://ror.org/01fsqt491', 'no_lang_code', 1, 'https://ror.org/01fsqt491 Da Vinci Institute'),
(118682, 'https://ror.org/00x5wnx94', 'en', 1, 'https://ror.org/00x5wnx94 International Centre for Migration Policy Development'),
(118683, 'https://ror.org/057k6gq03', 'no_lang_code', 1, 'https://ror.org/057k6gq03 Cesefor'),
(118684, 'https://ror.org/02b9h9j24', 'nl', 1, 'https://ror.org/02b9h9j24 GGz Breburg'),
(118685, 'https://ror.org/00q67ww79', 'en', 1, 'https://ror.org/00q67ww79 Katsushika Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗč‘›é£¾åŒŗåŒ»åø«ä¼š'),
(118686, 'https://ror.org/0339t7k69', 'en', 1, 'https://ror.org/0339t7k69 Jaypee University Anoopshahr ą¤œą„‡ą¤Ŗą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤…ą¤Øą„ą¤Ŗą¤¶ą¤¹ą¤°'),
(118687, 'https://ror.org/00kh41v43', 'es', 1, 'https://ror.org/00kh41v43 Universidad Tecnológica de Nogales'),
(118688, 'https://ror.org/02cqthz49', 'no_lang_code', 1, 'https://ror.org/02cqthz49 Blueprint Genetics (Finland)'),
(118689, 'https://ror.org/037mxx572', 'no_lang_code', 1, 'https://ror.org/037mxx572 Aridhia (United Kingdom)'),
(118690, 'https://ror.org/05sm1a994', 'en', 1, 'https://ror.org/05sm1a994 The UBE Foundation å…¬ē›Šč²”å›£ę³•äŗŗå®‡éƒØčˆˆē”£å­¦č”“ęŒÆčˆˆč²”å›£'),
(118691, 'https://ror.org/0242qw425', 'en', 1, 'https://ror.org/0242qw425 Folger Shakespeare Library'),
(118692, 'https://ror.org/00eh27a29', 'en', 1, 'https://ror.org/00eh27a29 Okayama Prefectural Lifelong Learning Center å²”å±±ēœŒē”Ÿę¶Æå­¦ēæ’ć‚»ćƒ³ć‚æćƒ¼'),
(118693, 'https://ror.org/03ms7cf36', 'en', 1, 'https://ror.org/03ms7cf36 TB Alliance'),
(118694, 'https://ror.org/043dtk166', 'en', 1, 'https://ror.org/043dtk166 Jahon Iqtisodiyoti va Diplomatiya Universiteti University of World Economy and Diplomacy'),
(118695, 'https://ror.org/05wfkgx98', 'en', 1, 'https://ror.org/05wfkgx98 All-Russian Scientific Research Institute of Canned Food Technology Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ консервной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(118696, 'https://ror.org/03dy9v459', 'en', 1, 'https://ror.org/03dy9v459 Fan Noli University Universiteti "Fan S. Noli"'),
(118697, 'https://ror.org/05r1zgk22', 'es', 1, 'https://ror.org/05r1zgk22 Sociedad EspaƱola de Oncologƭa MƩdica'),
(118698, 'https://ror.org/05cv9ex33', 'en', 1, 'https://ror.org/05cv9ex33 University Sinergija Univerzitetska sinergija'),
(118699, 'https://ror.org/0173n3c03', 'en', 1, 'https://ror.org/0173n3c03 Japan Overseas Christian Medical Cooperative Service å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚­ćƒŖć‚¹ćƒˆę•™ęµ·å¤–åŒ»ē™‚å”åŠ›ä¼š'),
(118700, 'https://ror.org/04vwnq582', 'en', 1, 'https://ror.org/04vwnq582 Admiral Nevelskoy Maritime State University ŠœŠ¾Ń€ŃŠŗŠ¾Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(118701, 'https://ror.org/04c93h408', 'en', 1, 'https://ror.org/04c93h408 Minami-Shinsyu Iida Industry Center å…¬ē›Šč²”å›£ę³•äŗŗå—äæ”å·žćƒ»é£Æē”°ē”£ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(118702, 'https://ror.org/01xh8ee49', 'hr', 1, 'https://ror.org/01xh8ee49 Special Hospital for Orthopedics and General Surgery "Dr. Nemec" Specijalna bolnica za ortopediju i opću kirurgiju "Dr. Nemec"'),
(118703, 'https://ror.org/041narv46', 'en', 1, 'https://ror.org/041narv46 Japan Mountaineering and Sport Climbing Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å±±å²³ćƒ»ć‚¹ćƒćƒ¼ćƒ„ć‚Æćƒ©ć‚¤ćƒŸćƒ³ć‚°å”ä¼š'),
(118704, 'https://ror.org/0141nnt22', 'en', 1, 'https://ror.org/0141nnt22 Television & Radio Writers'' Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę”¾é€ä½œå®¶å”ä¼š'),
(118705, 'https://ror.org/0530gr416', 'no_lang_code', 1, 'https://ror.org/0530gr416 Helsana Group (Switzerland)'),
(118706, 'https://ror.org/03wzc0b85', 'en', 1, 'https://ror.org/03wzc0b85 National Commission for Science, Technology, and Innovation'),
(118707, 'https://ror.org/02hqk8013', 'en', 1, 'https://ror.org/02hqk8013 Japan Association for International Racing and Stud Book å…¬ē›Šč²”å›£ę³•äŗŗć‚øćƒ£ćƒ‘ćƒ³ćƒ»ć‚¹ć‚æćƒƒćƒ‰ćƒ–ćƒƒć‚Æćƒ»ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«'),
(118708, 'https://ror.org/00e8cky09', 'no_lang_code', 1, 'https://ror.org/00e8cky09 AC Immune (Switzerland)'),
(118709, 'https://ror.org/05x5fe079', 'en', 1, 'https://ror.org/05x5fe079 Japan Association of Clinical Reagents Industries äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡ØåŗŠę¤œęŸ»č–¬å”ä¼š'),
(118710, 'https://ror.org/01ra13635', 'en', 1, 'https://ror.org/01ra13635 Digital Humanities Center'),
(118711, 'https://ror.org/00240q980', 'en', 1, 'https://ror.org/00240q980 Universitat de PƠdua University of Padua UniversitƠ degli Studi di Padova UniversitƤt Padua UniversitƩ de padoue Univerza v Padovi'),
(118712, 'https://ror.org/0296xn154', 'en', 1, 'https://ror.org/0296xn154 Ibaraki Physical Therapy Association å…¬ē›Šē¤¾å›£ę³•äŗŗčŒØåŸŽēœŒē†å­¦ē™‚ę³•å£«ä¼š'),
(118713, 'https://ror.org/024nzed05', 'en', 1, 'https://ror.org/024nzed05 Kyushu Economic Federation äø€čˆ¬ē¤¾å›£ę³•äŗŗä¹å·žēµŒęøˆé€£åˆä¼š'),
(118714, 'https://ror.org/02p3xvt74', 'en', 1, 'https://ror.org/02p3xvt74 Osaka PhysioTherapist Association å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗåŗœē†å­¦ē™‚ę³•å£«ä¼š'),
(118715, 'https://ror.org/03thr4j23', 'en', 1, 'https://ror.org/03thr4j23 Japan Fashion Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³å”ä¼š'),
(118716, 'https://ror.org/01fhkqy32', 'en', 1, 'https://ror.org/01fhkqy32 Nippon Music Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éŸ³ę„½č²”å›£'),
(118717, 'https://ror.org/036ve1r97', 'en', 1, 'https://ror.org/036ve1r97 Japanese Association of Social Workers in Health Services å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»ē™‚ē¤¾ä¼šē¦ē„‰å”ä¼š'),
(118718, 'https://ror.org/04rwzz867', 'en', 1, 'https://ror.org/04rwzz867 Samara Regional Clinical Hospital named after V.D. Seredavina Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° Š’.Š”.ДереГавин'),
(118719, 'https://ror.org/037267588', 'en', 1, 'https://ror.org/037267588 Advanced Hydrogen Energy chain Association for technology Development ę¬”äø–ä»£ę°“ē“ ć‚Øćƒćƒ«ć‚®ćƒ¼ćƒć‚§ćƒ¼ćƒ³ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(118720, 'https://ror.org/02e33r722', 'en', 1, 'https://ror.org/02e33r722 International Center for the Environmental Management of Enclosed Coastal Seas å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ć‚Øćƒ”ćƒƒć‚Æć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(118721, 'https://ror.org/01zy6vk67', 'en', 1, 'https://ror.org/01zy6vk67 Bishop Stuart University'),
(118722, 'https://ror.org/01xbeq647', 'en', 1, 'https://ror.org/01xbeq647 Foundation for International Development/Relief å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›é–‹ē™ŗę•‘ę“č²”å›£'),
(118723, 'https://ror.org/002xeeh02', 'no_lang_code', 1, 'https://ror.org/002xeeh02 Ingeteam (Spain)'),
(118724, 'https://ror.org/04pw11t29', 'en', 1, 'https://ror.org/04pw11t29 New Zealand Leather & Shoe Research Association Inc.'),
(118725, 'https://ror.org/05x358x43', 'en', 1, 'https://ror.org/05x358x43 Sofia University'),
(118726, 'https://ror.org/0304t8e63', 'pt', 1, 'https://ror.org/0304t8e63 Instituto Superior de ServiƧo Social do Porto'),
(118727, 'https://ror.org/03ktywr57', 'en', 1, 'https://ror.org/03ktywr57 Keifukai Takaoka Hospital åŒ»ē™‚ę³•äŗŗęµé¢Øä¼šé«˜å²”ē—…é™¢'),
(118728, 'https://ror.org/033h8mf47', 'en', 1, 'https://ror.org/033h8mf47 Hokkaido Heart Association äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“åæƒč‡“å”ä¼š'),
(118729, 'https://ror.org/04tegn361', 'en', 1, 'https://ror.org/04tegn361 Independent University Banja Luka Nezavisni univerzitet Banja Luka'),
(118730, 'https://ror.org/015mnhr62', 'en', 1, 'https://ror.org/015mnhr62 Machine Tool Engineering Foundation å…¬ē›Šč²”å›£ę³•äŗŗå·„ä½œę©Ÿę¢°ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(118731, 'https://ror.org/04nte7633', 'en', 1, 'https://ror.org/04nte7633 Japan Golf Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚“ćƒ«ćƒ•å”ä¼š'),
(118732, 'https://ror.org/04tsk2644', 'en', 1, 'https://ror.org/04tsk2644 Ruhr University Bochum Ruhr-UniversitƤt Bochum'),
(118733, 'https://ror.org/04nwg1t42', 'fr', 1, 'https://ror.org/04nwg1t42 Ɖcole SpĆ©ciale des Travaux Publics'),
(118734, 'https://ror.org/05yfwg049', 'en', 1, 'https://ror.org/05yfwg049 College of African Wildlife Management'),
(118735, 'https://ror.org/03phj0x60', 'en', 1, 'https://ror.org/03phj0x60 Japan Sewage Works Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äø‹ę°“é“å”ä¼š'),
(118736, 'https://ror.org/01xfm7b36', 'en', 1, 'https://ror.org/01xfm7b36 Japan Sports Club Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„ć‚Æćƒ©ćƒ–å”ä¼š'),
(118737, 'https://ror.org/004wqrz71', 'en', 1, 'https://ror.org/004wqrz71 The Kamata Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗč’²ē”°åŒ»åø«ä¼š'),
(118738, 'https://ror.org/04ed7fw48', 'fr', 1, 'https://ror.org/04ed7fw48 University of Southern Brittany UniversitƩ de Bretagne Sud'),
(118739, 'https://ror.org/00a8v8w71', 'de', 1, 'https://ror.org/00a8v8w71 Institut für deutsche Kultur und Geschichte Südosteuropas'),
(118740, 'https://ror.org/057ek6208', 'en', 1, 'https://ror.org/057ek6208 Organization for Housing Warranty äø€čˆ¬č²”å›£ę³•äŗŗä½å®…äæčØ¼ę”Æę“ę©Ÿę§‹'),
(118741, 'https://ror.org/03sg03b15', 'pt', 1, 'https://ror.org/03sg03b15 Centro de Inovação e Investigação em Ciências Empresariais e Sistemas de Informação'),
(118742, 'https://ror.org/035j3m047', 'en', 1, 'https://ror.org/035j3m047 New York Hall of Science'),
(118743, 'https://ror.org/05hvsnq92', 'en', 1, 'https://ror.org/05hvsnq92 Naropa University'),
(118744, 'https://ror.org/03sdxsz64', 'en', 1, 'https://ror.org/03sdxsz64 Jahmec å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰č”›ē”Ÿē®”ē†ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(118745, 'https://ror.org/02h1s0270', 'en', 1, 'https://ror.org/02h1s0270 Japan Economic Foundation äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›ēµŒęøˆäŗ¤ęµč²”å›£'),
(118746, 'https://ror.org/042g0n486', 'en', 1, 'https://ror.org/042g0n486 Instituto Internacional para Sustentabilidade International Institute for Sustainability'),
(118747, 'https://ror.org/03c58zh18', 'en', 1, 'https://ror.org/03c58zh18 AM Publications, India'),
(118748, 'https://ror.org/01xgt0m54', 'de', 1, 'https://ror.org/01xgt0m54 Regionalspital Emmental'),
(118749, 'https://ror.org/02sjhcw37', 'no_lang_code', 1, 'https://ror.org/02sjhcw37 Accent Therapeutics (United States)'),
(118750, 'https://ror.org/05s43gd64', 'en', 1, 'https://ror.org/05s43gd64 Bio Base Europe'),
(118751, 'https://ror.org/018nybw41', 'en', 1, 'https://ror.org/018nybw41 Kaiseikai Foundation å…¬ē›Šč²”å›£ę³•äŗŗä½å‰å•ęˆä¼š'),
(118752, 'https://ror.org/02260en58', 'tr', 1, 'https://ror.org/02260en58 Antalya Belek University Antalya Belek Üni̇versi̇tesi̇'),
(118753, 'https://ror.org/05hfyep85', 'en', 1, 'https://ror.org/05hfyep85 Japan Statistical Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ēµ±čØˆå”ä¼š'),
(118754, 'https://ror.org/03vwykn21', 'af', 1, 'https://ror.org/03vwykn21 Akademie Reformatoriese Opleiding en Studies'),
(118755, 'https://ror.org/01ab8hq43', 'en', 1, 'https://ror.org/01ab8hq43 Open Evidence'),
(118756, 'https://ror.org/04bbmzr50', 'en', 1, 'https://ror.org/04bbmzr50 International Development Enterprises'),
(118757, 'https://ror.org/0163r0829', 'en', 1, 'https://ror.org/0163r0829 Polytechnic Marko Marulic VeleučiliÅ”te "Marko Marulić"'),
(118758, 'https://ror.org/01q1z8k08', 'en', 1, 'https://ror.org/01q1z8k08 State University of New York Universidad Estatal de Nueva York UniversitĆ© d''Ɖtat de New York'),
(118759, 'https://ror.org/04bb4ex88', 'en', 1, 'https://ror.org/04bb4ex88 Sakai Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå ŗåø‚åŒ»åø«ä¼š'),
(118760, 'https://ror.org/02v03bx32', 'en', 1, 'https://ror.org/02v03bx32 Japan International Science and Technology Exchange Center å…¬ē›Šē¤¾å›£ę³•äŗŗē§‘å­¦ęŠ€č”“å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(118761, 'https://ror.org/03sr5hk15', 'en', 1, 'https://ror.org/03sr5hk15 Japan Translation Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēæ»čØ³å”ä¼š'),
(118762, 'https://ror.org/055mcfk05', 'en', 1, 'https://ror.org/055mcfk05 Toray Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗę±ćƒ¬ē§‘å­¦ęŒÆčˆˆä¼š'),
(118763, 'https://ror.org/03cdaaf14', 'en', 1, 'https://ror.org/03cdaaf14 Tochigi Industrial Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗę ƒęœØēœŒē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(118764, 'https://ror.org/01n32nv86', 'en', 1, 'https://ror.org/01n32nv86 Lake Chad Research Institute'),
(118765, 'https://ror.org/05bzky302', 'en', 1, 'https://ror.org/05bzky302 Matsuo Foundation å…¬ē›Šč²”å›£ę³•äŗŗę¾å°¾å­¦č”“ęŒÆčˆˆč²”å›£'),
(118766, 'https://ror.org/01qdk5035', 'en', 1, 'https://ror.org/01qdk5035 Whiteley Clinic'),
(118767, 'https://ror.org/02g570e80', 'no_lang_code', 1, 'https://ror.org/02g570e80 CycloLab (Hungary)'),
(118768, 'https://ror.org/038cxpb82', 'en', 1, 'https://ror.org/038cxpb82 Japan Personal Research Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŠ“å‹™ē ”ē©¶ä¼š'),
(118769, 'https://ror.org/04gxxbh57', 'en', 1, 'https://ror.org/04gxxbh57 Chhatrapati Shivaji Maharaj Institute of Technology'),
(118770, 'https://ror.org/05e43h690', 'pt', 1, 'https://ror.org/05e43h690 Agência Nacional de Telecomunicações National Telecommunications Agency (Brazil)'),
(118771, 'https://ror.org/05hkpfm52', 'en', 1, 'https://ror.org/05hkpfm52 Dharma Drum Institute of Liberal Arts 法鼓文理學院'),
(118772, 'https://ror.org/00j4as432', 'en', 1, 'https://ror.org/00j4as432 Ministry of Education and Higher Education وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ'),
(118773, 'https://ror.org/01nm6em79', 'no_lang_code', 1, 'https://ror.org/01nm6em79 Philogen (Italy)'),
(118774, 'https://ror.org/05jnwy894', 'en', 1, 'https://ror.org/05jnwy894 Sambalpur University Institute of Information Technology'),
(118775, 'https://ror.org/03p98pb63', 'no_lang_code', 1, 'https://ror.org/03p98pb63 Anthem Biosciences (India)'),
(118776, 'https://ror.org/037p24858', 'en', 1, 'https://ror.org/037p24858 The First Affiliated Hospital, Sun Yat-sen University äø­å±±å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(118777, 'https://ror.org/001f58767', 'en', 1, 'https://ror.org/001f58767 Rishi Bankim Chandra College for Women আর বি সি মহিলা ą¦•ą¦²ą§‡ą¦œ'),
(118778, 'https://ror.org/023b5a626', 'es', 1, 'https://ror.org/023b5a626 Ɠrgano Judicial de la RepĆŗblica de PanamĆ”'),
(118779, 'https://ror.org/02jcn9048', 'en', 1, 'https://ror.org/02jcn9048 The Mechanical Social Systems Foundation äø€čˆ¬č²”å›£ę³•äŗŗę©Ÿę¢°ć‚·ć‚¹ćƒ†ćƒ ęŒÆčˆˆå”ä¼š'),
(118780, 'https://ror.org/00t77cq78', 'fr', 1, 'https://ror.org/00t77cq78 French Institute in Djibouti Institut franƧais de Djibouti'),
(118781, 'https://ror.org/01yw95a78', 'en', 1, 'https://ror.org/01yw95a78 Universidad del Centro Educativo Latinoamericano University of the Latin American Educational Center'),
(118782, 'https://ror.org/0127tex41', 'en', 1, 'https://ror.org/0127tex41 Cluster University Srinagar'),
(118783, 'https://ror.org/03rj9e182', 'fr', 1, 'https://ror.org/03rj9e182 Centre de recherche, d''information et de Production de l''Ʃducation nationale National Education Research, Information and Production Centre'),
(118784, 'https://ror.org/01e0ens52', 'en', 1, 'https://ror.org/01e0ens52 Vimal Jyothi Engineering College ą“µą“æą“®ąµ½ ą“œąµą“Æąµ‹ą“¤ą“æ ą“Žą“žąµą“šą“æą“Øąµ€ą“Æą“±ą“æą“‚ą“—ąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(118785, 'https://ror.org/03ea21663', 'en', 1, 'https://ror.org/03ea21663 Integrative Centre for Research & Innovation in Biology'),
(118786, 'https://ror.org/05pvs7q85', 'fr', 1, 'https://ror.org/05pvs7q85 Epicura'),
(118787, 'https://ror.org/03zz4xj74', 'en', 1, 'https://ror.org/03zz4xj74 The Mother and Child Health Foundation å…¬ē›Šč²”å›£ę³•äŗŗęÆå­å„åŗ·å”ä¼š'),
(118788, 'https://ror.org/02sdafq46', 'en', 1, 'https://ror.org/02sdafq46 Centre of Excellence for Advanced Materials äøœčŽžęę–™åŸŗå› é«˜ē­‰ē†å·„ē ”ē©¶é™¢'),
(118789, 'https://ror.org/00nbsc253', 'fr', 1, 'https://ror.org/00nbsc253 Association PƓle Environnement Sud Aquitaine'),
(118790, 'https://ror.org/020z2rb93', 'en', 1, 'https://ror.org/020z2rb93 Japan Industrial Water Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·„ę„­ē”Øę°“å”ä¼š'),
(118791, 'https://ror.org/0499qn039', 'en', 1, 'https://ror.org/0499qn039 Lebanese Agricultural Research Institute'),
(118792, 'https://ror.org/00c9gh315', 'no_lang_code', 1, 'https://ror.org/00c9gh315 Solusi University'),
(118793, 'https://ror.org/02n5m2450', 'en', 1, 'https://ror.org/02n5m2450 Institute of Horticulture Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ саГівництва ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(118794, 'https://ror.org/00nk5cf97', 'en', 1, 'https://ror.org/00nk5cf97 The Association for Promotion of International Cooperation äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›å”åŠ›ęŽØé€²å”ä¼š'),
(118795, 'https://ror.org/03qeas415', 'en', 1, 'https://ror.org/03qeas415 Japan Fire and Disaster Prevention Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é˜²ē«ćƒ»é˜²ē½å”ä¼š'),
(118796, 'https://ror.org/01e5tcw09', 'en', 1, 'https://ror.org/01e5tcw09 The Japanese Association for Cerebro-cardiovascular Disease Control äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å¾Ŗē’°å™Øē—…äŗˆé˜²å­¦ä¼š'),
(118797, 'https://ror.org/04s6fbg51', 'en', 1, 'https://ror.org/04s6fbg51 Osaka Metropolitan University College of Technology å¤§é˜Ŗå…¬ē«‹å¤§å­¦å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(118798, 'https://ror.org/02n352k96', 'en', 1, 'https://ror.org/02n352k96 Regional Universities Forum for Capacity Building in Agriculture'),
(118799, 'https://ror.org/03z1ygw19', 'en', 1, 'https://ror.org/03z1ygw19 Walter Eucken Institut'),
(118800, 'https://ror.org/03nv5gj57', 'en', 1, 'https://ror.org/03nv5gj57 Bethany College - Kansas'),
(118801, 'https://ror.org/038amjy13', 'en', 1, 'https://ror.org/038amjy13 Japan Animal Welfare Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©ē¦ē„‰å”ä¼š'),
(118802, 'https://ror.org/043mer456', 'en', 1, 'https://ror.org/043mer456 Universidad de Nebraska-Lincoln University of Nebraska–Lincoln UniversitĆ© du nebraska Ć  lincoln'),
(118803, 'https://ror.org/05jwrvn11', 'en', 1, 'https://ror.org/05jwrvn11 The Japan Society for Heat Treatment äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē†±å‡¦ē†ęŠ€č”“å”ä¼š'),
(118804, 'https://ror.org/00wydxq38', 'pt', 1, 'https://ror.org/00wydxq38 Associacao Protectora dos Diabeticos de Portugal'),
(118805, 'https://ror.org/04tqfhv51', 'en', 1, 'https://ror.org/04tqfhv51 Japan Law Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„å¼é€£ę³•å‹™ē ”ē©¶č²”å›£'),
(118806, 'https://ror.org/019ze4c92', 'es', 1, 'https://ror.org/019ze4c92 Universidad PolitƩcnica de Zacatecas'),
(118807, 'https://ror.org/0070t1y36', 'en', 1, 'https://ror.org/0070t1y36 Christ College of Engineering and Technology'),
(118808, 'https://ror.org/005jys510', 'en', 1, 'https://ror.org/005jys510 Centro Nacional de Investigação Cientifica National Centre for Scientific Research'),
(118809, 'https://ror.org/00pkfs166', 'en', 1, 'https://ror.org/00pkfs166 Fair Trade Institute å…¬ē›Šč²”å›£ę³•äŗŗå…¬ę­£å–å¼•å”ä¼š'),
(118810, 'https://ror.org/02mfpez21', 'pt', 1, 'https://ror.org/02mfpez21 Projecto Desenvolvimento Manutenção Formação e Consultadoria'),
(118811, 'https://ror.org/00qh6jg85', 'en', 1, 'https://ror.org/00qh6jg85 Al-Ahli Hospital'),
(118812, 'https://ror.org/00ded8656', 'en', 1, 'https://ror.org/00ded8656 Pine Rest Christian Mental Health Services'),
(118813, 'https://ror.org/02wn17b67', 'no_lang_code', 1, 'https://ror.org/02wn17b67 Arkray (Japan) ć‚¢ćƒ¼ć‚Æćƒ¬ć‚¤ę Ŗå¼ä¼šē¤¾'),
(118814, 'https://ror.org/050j2px32', 'en', 1, 'https://ror.org/050j2px32 National Archives of Sweden Riksarkivet'),
(118815, 'https://ror.org/020bm8k34', 'en', 1, 'https://ror.org/020bm8k34 Reformed Church University'),
(118816, 'https://ror.org/0408mbg90', 'en', 1, 'https://ror.org/0408mbg90 Electrochemical Society'),
(118817, 'https://ror.org/054gqc795', 'no_lang_code', 1, 'https://ror.org/054gqc795 Cybernetica (Estonia)'),
(118818, 'https://ror.org/03gtr6m06', 'en', 1, 'https://ror.org/03gtr6m06 University of Telecommunications and Post Š’ŠøŃŃˆŠµ ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ по Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠø Šø пощи'),
(118819, 'https://ror.org/02tpvs361', 'hr', 1, 'https://ror.org/02tpvs361 VeleučiliŔte u Virovitici Virovitica University of Applied Sciences'),
(118820, 'https://ror.org/03f543q81', 'en', 1, 'https://ror.org/03f543q81 The Research association of Automotive Internal Combustion Engines č‡Ŗå‹•č»Šē”Øå†…ē‡ƒę©Ÿé–¢ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(118821, 'https://ror.org/00sfdxy37', 'en', 1, 'https://ror.org/00sfdxy37 Daiichi Junior College of Infant Education ē¬¬äø€å¹¼å…ę•™č‚²ēŸ­ęœŸå¤§å­¦'),
(118822, 'https://ror.org/00mv6sv71', 'en', 1, 'https://ror.org/00mv6sv71 SveučiliŔte u Zagrebu University of Zagreb'),
(118823, 'https://ror.org/03xq7wt40', 'en', 1, 'https://ror.org/03xq7wt40 The Heat Transfer Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ä¼ē†±å­¦ä¼š'),
(118824, 'https://ror.org/04m5wpy84', 'no_lang_code', 1, 'https://ror.org/04m5wpy84 Maxar Technologies (United States)'),
(118825, 'https://ror.org/044n8q784', 'en', 1, 'https://ror.org/044n8q784 Community College of Allegheny County'),
(118826, 'https://ror.org/056rx8m58', 'en', 1, 'https://ror.org/056rx8m58 The Association for the Environmental Conservation of The Seto Inland Sea å…¬ē›Šē¤¾å›£ę³•äŗŗē€¬ęˆøå†…ęµ·ē’°å¢ƒäæå…Øå”ä¼š'),
(118827, 'https://ror.org/041shns04', 'hr', 1, 'https://ror.org/041shns04 Thalassoterapia Opatija'),
(118828, '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.Ş.'),
(118829, 'https://ror.org/03jq05c33', 'no_lang_code', 1, 'https://ror.org/03jq05c33 Deep Blue (Italy)'),
(118830, 'https://ror.org/00dpsr712', 'en', 1, 'https://ror.org/00dpsr712 Regional Business Development Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗåœ°åŸŸēµŒęøˆē·åˆē ”ē©¶ę‰€'),
(118831, 'https://ror.org/028s91538', 'es', 1, 'https://ror.org/028s91538 Instituto Nacional de MetrologĆ­a de Colombia'),
(118832, 'https://ror.org/04r0c8j28', 'no_lang_code', 1, 'https://ror.org/04r0c8j28 EL-Piast Sp. z o. o. EL-Piast Sp. z o. o. (Poland)'),
(118833, 'https://ror.org/049nt6y96', 'en', 1, 'https://ror.org/049nt6y96 Benazir Bhutto Shaheed University of Technology and Skill Development'),
(118834, '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'),
(118835, 'https://ror.org/01kz0sp37', 'en', 1, 'https://ror.org/01kz0sp37 THE Economic Research Center Of Niigata äø€čˆ¬č²”å›£ę³•äŗŗę–°ę½ŸēµŒęøˆē¤¾ä¼šćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(118836, 'https://ror.org/041vyfv31', 'id', 1, 'https://ror.org/041vyfv31 Muhammadiyah University of Kendal Batang Universitas Muhammadiyah Kendal Batang'),
(118837, 'https://ror.org/02jkgvx03', 'no_lang_code', 1, 'https://ror.org/02jkgvx03 Edutus Egyetem Edutus University'),
(118838, 'https://ror.org/04a88ne27', 'en', 1, 'https://ror.org/04a88ne27 Yokohama Arts Foundation å…¬ē›Šč²”å›£ę³•äŗŗęØŖęµœåø‚čŠøč”“ę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(118839, 'https://ror.org/04qwprc69', 'en', 1, 'https://ror.org/04qwprc69 Japanese Para-Sports Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éšœćŒć„č€…ć‚¹ćƒćƒ¼ćƒ„å”ä¼š'),
(118840, 'https://ror.org/02ynj2p52', 'en', 1, 'https://ror.org/02ynj2p52 The Public Foundation of Chubu Science and Technology Center å…¬ē›Šč²”å›£ę³•äŗŗäø­éƒØē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(118841, 'https://ror.org/03paye555', 'en', 1, 'https://ror.org/03paye555 Avalon University School of Medicine'),
(118842, 'https://ror.org/049ctcj40', 'id', 1, 'https://ror.org/049ctcj40 Politeknik STMI Jakarta'),
(118843, 'https://ror.org/02dgbcj80', 'en', 1, 'https://ror.org/02dgbcj80 Southwest Baptist University'),
(118844, 'https://ror.org/0435yxw79', 'en', 1, 'https://ror.org/0435yxw79 Japanese Coronary Association ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å† ē–¾ę‚£å­¦ä¼š'),
(118845, 'https://ror.org/02sd53h86', 'en', 1, 'https://ror.org/02sd53h86 Japan Ship-Machinery Quality Control Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čˆ¹čˆ¶å“č³Ŗē®”ē†å”ä¼š'),
(118846, 'https://ror.org/03rwdkf34', 'en', 1, 'https://ror.org/03rwdkf34 The Hokuriku Industrial Advancement Center äø€čˆ¬č²”å›£ę³•äŗŗåŒ—é™øē”£ę„­ę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(118847, 'https://ror.org/04q2w0g82', 'en', 1, 'https://ror.org/04q2w0g82 Glenville State College'),
(118848, 'https://ror.org/03738h910', 'en', 1, 'https://ror.org/03738h910 Zangador Research Institute'),
(118849, 'https://ror.org/02b9s4r63', 'en', 1, 'https://ror.org/02b9s4r63 Japan Federation of Pilots'' Associations ę—„ęœ¬ę°“å…ˆäŗŗä¼šé€£åˆä¼š'),
(118850, 'https://ror.org/026nfkh32', 'no', 1, 'https://ror.org/026nfkh32 Modum Bad – Gordon Johnsens stiftelse'),
(118851, 'https://ror.org/01wm6dg61', 'no_lang_code', 1, 'https://ror.org/01wm6dg61 Pivot Bio (United States)'),
(118852, 'https://ror.org/05w4yhe96', 'de', 1, 'https://ror.org/05w4yhe96 Auschwitz Birkenau Państwowe Muzeum Auschwitz-Birkenau w Oświęcimiu'),
(118853, 'https://ror.org/03m7rw736', 'en', 1, 'https://ror.org/03m7rw736 Nacionalni laboratorij za zdravje, okolje in hrano National Laboratory of Health, Environment and Food'),
(118854, 'https://ror.org/04yzxbx71', 'en', 1, 'https://ror.org/04yzxbx71 The Japanese Electric Wire & Cable Makers'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ē·šå·„ę„­ä¼š'),
(118855, 'https://ror.org/014pcm848', 'en', 1, 'https://ror.org/014pcm848 American Society of Nephrology'),
(118856, 'https://ror.org/047b7k736', 'nl', 1, 'https://ror.org/047b7k736 BartimƩus'),
(118857, 'https://ror.org/00nmq2g35', 'no_lang_code', 1, 'https://ror.org/00nmq2g35 Integrative Research Laboratories'),
(118858, 'https://ror.org/04bj0y344', 'en', 1, 'https://ror.org/04bj0y344 Dr. S.R. Chandrasekhar Institute of Speech and Hearing'),
(118859, 'https://ror.org/0289e7d92', 'en', 1, 'https://ror.org/0289e7d92 Belgian Road Research Centre'),
(118860, 'https://ror.org/01zkndt15', 'en', 1, 'https://ror.org/01zkndt15 Maine Geological Survey'),
(118861, 'https://ror.org/04sxpzn67', 'en', 1, 'https://ror.org/04sxpzn67 Society For Development Alternatives'),
(118862, 'https://ror.org/05821y639', 'en', 1, 'https://ror.org/05821y639 The Japan Singapore Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚·ćƒ³ć‚¬ćƒćƒ¼ćƒ«å”ä¼š'),
(118863, 'https://ror.org/05grd6s28', 'en', 1, 'https://ror.org/05grd6s28 South East European Research Centre'),
(118864, 'https://ror.org/04tw83h16', 'en', 1, 'https://ror.org/04tw83h16 Zao dairy center äø€čˆ¬č²”å›£ę³•äŗŗč”µēŽ‹é…Ŗč¾²ć‚»ćƒ³ć‚æćƒ¼'),
(118865, 'https://ror.org/02v4ay190', 'en', 1, 'https://ror.org/02v4ay190 Radio Engineering & Electronics Association äø€čˆ¬č²”å›£ę³•äŗŗé›»ę³¢ęŠ€č”“å”ä¼š'),
(118866, 'https://ror.org/02wgnr390', 'en', 1, 'https://ror.org/02wgnr390 Italian University Line UniversitĆ  telematica'),
(118867, 'https://ror.org/045z98644', 'en', 1, 'https://ror.org/045z98644 Research Association for Technological Innovation of Organic Photovoltaics ęœ‰ę©Ÿē³»å¤Ŗé™½é›»ę± ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(118868, 'https://ror.org/03we9z687', 'de', 1, 'https://ror.org/03we9z687 Danube Floodplain National Park Donau-Auen National Park Nationalpark Donau-Auen'),
(118869, 'https://ror.org/021ft0n22', 'de', 1, 'https://ror.org/021ft0n22 University Medical Center Gƶttingen UniversitƤtsmedizin Gƶttingen'),
(118870, 'https://ror.org/04606qq63', 'es', 1, 'https://ror.org/04606qq63 Universidad Nacional Evangelica'),
(118871, 'https://ror.org/04ejsck45', 'en', 1, 'https://ror.org/04ejsck45 The Mazda Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒžćƒ„ćƒ€č²”å›£'),
(118872, 'https://ror.org/03sd43014', 'en', 1, 'https://ror.org/03sd43014 QCIF Ltd.'),
(118873, 'https://ror.org/01x84xc38', 'en', 1, 'https://ror.org/01x84xc38 Philosophisch-Theologische Hochschule Sankt Georgen Sankt Georgen Graduate School of Philosophy and Theology'),
(118874, 'https://ror.org/00gnfza67', 'en', 1, 'https://ror.org/00gnfza67 Bicycling Popularization Association of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬č‡Ŗč»¢č»Šę™®åŠå”ä¼š'),
(118875, 'https://ror.org/02rb4hh75', 'hr', 1, 'https://ror.org/02rb4hh75 PODRAVKA Food Processing Industry, Inc. PODRAVKA prehrambena industrija d.d. FC "Istraživanje i razvoj"'),
(118876, 'https://ror.org/0539xgm86', 'pt', 1, 'https://ror.org/0539xgm86 Instituto Estadual de Diabetes e Endocrinologia Luiz Capriglione'),
(118877, 'https://ror.org/02z9hh502', 'en', 1, 'https://ror.org/02z9hh502 Nippon Omni-Management Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒå–¶å”ä¼š'),
(118878, 'https://ror.org/05et06025', 'fr', 1, 'https://ror.org/05et06025 Centre MƩdico-Chirurgical de Kinindo Kinindo Medical-Surgical Center'),
(118879, 'https://ror.org/02s7bv320', 'es', 1, 'https://ror.org/02s7bv320 Instituto Navarro de TecnologĆ­a e Infraestructuras Agroalimentarias'),
(118880, 'https://ror.org/03m993048', 'en', 1, 'https://ror.org/03m993048 Osaka Prefecture Veterinary Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗåŗœē£åŒ»åø«ä¼š'),
(118881, 'https://ror.org/02cb2sd53', 'en', 1, 'https://ror.org/02cb2sd53 THE Japanese Alpine Club å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å±±å²³ä¼š'),
(118882, 'https://ror.org/00ft4te83', 'en', 1, 'https://ror.org/00ft4te83 Naučni institut za veterinarstvo Srbije Scientific Institute for Veterinary Medicine of Serbia ŠŠ°ŃƒŃ‡Š½Šø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ветеринарство Š”Ń€Š±ŠøŃ˜Šµ'),
(118883, 'https://ror.org/03kdvqy12', 'es', 1, 'https://ror.org/03kdvqy12 Centro Nacional de Referencia de Control Biológico'),
(118884, '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 Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ Šø приклаГной паразитологии животных Šø растений имени К. И. Š”ŠŗŃ€ŃŠ±ŠøŠ½Š°'),
(118885, 'https://ror.org/05mm8r061', 'nl', 1, 'https://ror.org/05mm8r061 Heliomare'),
(118886, 'https://ror.org/00ettmm05', 'hr', 1, 'https://ror.org/00ettmm05 Arts Academy in Split Umjetnička akademija u Splitu'),
(118887, 'https://ror.org/02w5dy710', 'en', 1, 'https://ror.org/02w5dy710 Japan Apparel Fashion Industry Council äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ‘ćƒ¬ćƒ«ćƒ»ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³ē”£ę„­å”ä¼š'),
(118888, 'https://ror.org/047eaw227', 'en', 1, 'https://ror.org/047eaw227 African Centre for Technology Studies'),
(118889, 'https://ror.org/016jp5513', 'cs', 1, 'https://ror.org/016jp5513 ZĆ”padočeskĆ© Muzeum v Plzni'),
(118890, 'https://ror.org/05cf1d185', 'en', 1, 'https://ror.org/05cf1d185 Minami Takai Hospital åŒ»ē™‚ę³•äŗŗå¤©ēœŸä¼šå—é«˜äŗ•ē—…é™¢'),
(118891, 'https://ror.org/00b8p9q06', 'en', 1, 'https://ror.org/00b8p9q06 American University of Bahrain الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© ŲØŲ§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(118892, 'https://ror.org/0129z0867', 'en', 1, 'https://ror.org/0129z0867 Jean Piaget University of Angola Universidade Jean Piaget de Angola'),
(118893, 'https://ror.org/0020xyt69', 'en', 1, 'https://ror.org/0020xyt69 Central Electric Club äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å¤®é›»ę°—å€¶ę„½éƒØ'),
(118894, 'https://ror.org/010fzp376', 'no_lang_code', 1, 'https://ror.org/010fzp376 Nanion (Germany)'),
(118895, 'https://ror.org/0226k0909', 'en', 1, 'https://ror.org/0226k0909 Joint Institute for Power and Nuclear Research Аб''ŃŠ“Š½Š°Š½Ń‹ Ń–Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚Ń‹Ń‡Š½Ń‹Ń… і ŃŠ“Š·ŠµŃ€Š½Ń‹Ń… Š“Š°ŃŠ»ŠµŠ“Š°Š²Š°Š½Š½ŃŃž'),
(118896, 'https://ror.org/02xh1tf34', 'en', 1, 'https://ror.org/02xh1tf34 Global Earthquake Model'),
(118897, 'https://ror.org/05ds5y270', 'en', 1, 'https://ror.org/05ds5y270 IDinsight'),
(118898, 'https://ror.org/026hkgb56', 'de', 1, 'https://ror.org/026hkgb56 HBLFA Raumberg-Gumpenstein Hƶhere Bundeslehr- und Forschungsanstalt Raumberg-Gumpenstein'),
(118899, 'https://ror.org/0049am755', 'en', 1, 'https://ror.org/0049am755 Hellenic Endocrine Network Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Δίκτυο Ī•Ī½Ī“ĪæĪŗĻĪ¹Ī½ĪæĪ»ĻŒĪ³Ļ‰Ī½'),
(118900, 'https://ror.org/055rtre14', 'hr', 1, 'https://ror.org/055rtre14 Medical Centre Aviva Poliklinika Aviva'),
(118901, 'https://ror.org/051qnm298', 'fr', 1, 'https://ror.org/051qnm298 GREMAN, MatƩriaux, MicroƩlectronique, Acoustique, Nanotechnologies'),
(118902, 'https://ror.org/03kbe9m86', 'en', 1, 'https://ror.org/03kbe9m86 Shri Vishwakarma Skill University'),
(118903, 'https://ror.org/0025ry063', 'en', 1, 'https://ror.org/0025ry063 The Japan Research Association for Textile End-Uses äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē¹Šē¶­č£½å“ę¶ˆč²»ē§‘å­¦ä¼š'),
(118904, 'https://ror.org/0173r0e90', 'en', 1, 'https://ror.org/0173r0e90 Arellano University'),
(118905, 'https://ror.org/04a3fxw44', 'en', 1, 'https://ror.org/04a3fxw44 Panasonic Education Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒ‘ćƒŠć‚½ćƒ‹ćƒƒć‚Æę•™č‚²č²”å›£'),
(118906, 'https://ror.org/03pqrrt27', 'en', 1, 'https://ror.org/03pqrrt27 G H Raisoni University'),
(118907, 'https://ror.org/02c1g0c36', 'no_lang_code', 1, 'https://ror.org/02c1g0c36 Sinopec Tech Middle East LLC Sinopec Tech Middle East LLC (Saudi Arabia)'),
(118908, 'https://ror.org/04cmmy395', 'en', 1, 'https://ror.org/04cmmy395 Regional Centre for Mapping of Resources for Development'),
(118909, 'https://ror.org/02rrg2c94', 'en', 1, 'https://ror.org/02rrg2c94 Japan Restaurant Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›č¦³å…‰ę—„ęœ¬ćƒ¬ć‚¹ćƒˆćƒ©ćƒ³å”ä¼š'),
(118910, 'https://ror.org/00mc3j403', 'en', 1, 'https://ror.org/00mc3j403 Home Electric Appliances Fair Trade Conference å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½å®¶åŗ­é›»ę°—č£½å“å…¬ę­£å–å¼•å”č­°ä¼š'),
(118911, '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'),
(118912, 'https://ror.org/03pt9x374', 'en', 1, 'https://ror.org/03pt9x374 The Japan Commercial Arbitration Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å•†äŗ‹ä»²č£å”ä¼š'),
(118913, 'https://ror.org/005sbaa41', 'no_lang_code', 1, 'https://ror.org/005sbaa41 Align Technology (United States)'),
(118914, 'https://ror.org/00w803q57', 'en', 1, 'https://ror.org/00w803q57 The Center for Eco-Mining å…¬ē›Šč²”å›£ę³•äŗŗč³‡ęŗē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(118915, 'https://ror.org/0428k0n93', 'en', 1, 'https://ror.org/0428k0n93 Hartwig Medical Foundation'),
(118916, 'https://ror.org/000kd7771', 'en', 1, 'https://ror.org/000kd7771 Japan Society on Water Environment å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“ē’°å¢ƒå­¦ä¼š'),
(118917, 'https://ror.org/02f086s27', 'es', 1, 'https://ror.org/02f086s27 Instituto Bernabeu'),
(118918, 'https://ror.org/03xg2a920', 'en', 1, 'https://ror.org/03xg2a920 National Folklore Board'),
(118919, 'https://ror.org/05b6z1n20', 'en', 1, 'https://ror.org/05b6z1n20 Keizai Doyukai å…¬ē›Šē¤¾å›£ę³•äŗŗēµŒęøˆåŒå‹ä¼š'),
(118920, 'https://ror.org/04x6axz83', 'en', 1, 'https://ror.org/04x6axz83 The Japan Society Of Industrial Machinery Manufacturers äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£ę„­ę©Ÿę¢°å·„ę„­ä¼š'),
(118921, 'https://ror.org/02g76dk57', 'en', 1, 'https://ror.org/02g76dk57 EC-Council University'),
(118922, 'https://ror.org/00d22xe23', 'en', 1, 'https://ror.org/00d22xe23 Center For Housing Renovation and Dispute Settlement Support å…¬ē›Šč²”å›£ę³•äŗŗä½å®…ćƒŖćƒ•ć‚©ćƒ¼ćƒ ćƒ»ē“›äŗ‰å‡¦ē†ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(118923, 'https://ror.org/023dmz362', 'en', 1, 'https://ror.org/023dmz362 Finnish Literature Society'),
(118924, 'https://ror.org/03w8m4g58', 'en', 1, 'https://ror.org/03w8m4g58 Katori Omigawa Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗé¦™å–ćŠćæćŒć‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(118925, 'https://ror.org/04zqvzn86', 'en', 1, 'https://ror.org/04zqvzn86 Kyoto Comparative Law Center äø€čˆ¬č²”å›£ę³•äŗŗęÆ”č¼ƒę³•ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(118926, 'https://ror.org/02d746h46', 'en', 1, 'https://ror.org/02d746h46 Aurangabad Pharmacy College'),
(118927, 'https://ror.org/04jtjk342', 'no_lang_code', 1, 'https://ror.org/04jtjk342 General Fusion (Canada)'),
(118928, 'https://ror.org/01vtndz62', 'en', 1, 'https://ror.org/01vtndz62 British University Vietnam'),
(118929, 'https://ror.org/017hmby02', 'en', 1, 'https://ror.org/017hmby02 Verwey Jonker Institute'),
(118930, 'https://ror.org/01he0tp29', 'en', 1, 'https://ror.org/01he0tp29 Bow Valley College'),
(118931, 'https://ror.org/041d6tc18', 'en', 1, 'https://ror.org/041d6tc18 Japanese Society of Psychosomatic Internal Medicine ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬åæƒē™‚å†…ē§‘å­¦ä¼š'),
(118932, 'https://ror.org/05s57gd52', 'pt', 1, 'https://ror.org/05s57gd52 Cultural Heritage Institute Instituto do Património Cultural'),
(118933, 'https://ror.org/02ksr0n77', 'en', 1, 'https://ror.org/02ksr0n77 Research Association for Infrastructure Monitoring System ćƒ¢ćƒ‹ć‚æćƒŖćƒ³ć‚°ć‚·ć‚¹ćƒ†ćƒ ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(118934, 'https://ror.org/036vgbd10', 'en', 1, 'https://ror.org/036vgbd10 David Yellin College of Education המכללה לחינוך ע"ש דוד ילין'),
(118935, 'https://ror.org/04qp20960', 'en', 1, 'https://ror.org/04qp20960 Botswana Digital & Innovation Hub'),
(118936, 'https://ror.org/03jnda964', 'en', 1, 'https://ror.org/03jnda964 Public Foundation of Kansai Research Institute å…¬ē›Šč²”å›£ę³•äŗŗé–¢č„æę–‡åŒ–å­¦č”“ē ”ē©¶éƒ½åø‚ęŽØé€²ę©Ÿę§‹'),
(118937, 'https://ror.org/05srjnn53', 'en', 1, 'https://ror.org/05srjnn53 Rishi Bankim Chandra Evening College'),
(118938, 'https://ror.org/03ehz1f81', 'en', 1, 'https://ror.org/03ehz1f81 Public Relations Society Of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ‘ćƒ–ćƒŖćƒƒć‚ÆćƒŖćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗå”ä¼š'),
(118939, 'https://ror.org/02bvada24', 'en', 1, 'https://ror.org/02bvada24 SEAMEN''S Employment Center Of Japan å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬čˆ¹å“”é›‡ē”Øäæƒé€²ć‚»ćƒ³ć‚æćƒ¼'),
(118940, 'https://ror.org/02grxeb87', 'no', 1, 'https://ror.org/02grxeb87 Grid-Arendal'),
(118941, 'https://ror.org/004a3vj53', 'en', 1, 'https://ror.org/004a3vj53 Ota City Industrial Promotion Organization å…¬ē›Šč²”å›£ę³•äŗŗå¤§ē”°åŒŗē”£ę„­ęŒÆčˆˆå”ä¼š'),
(118942, 'https://ror.org/01fp19k36', 'en', 1, 'https://ror.org/01fp19k36 Japan Tennis Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ†ćƒ‹ć‚¹å”ä¼š'),
(118943, 'https://ror.org/00bvzcv50', 'en', 1, 'https://ror.org/00bvzcv50 Harford Community College'),
(118944, 'https://ror.org/04cjnrr47', 'en', 1, 'https://ror.org/04cjnrr47 Japan Workvessel Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½œę„­čˆ¹å”ä¼š'),
(118945, 'https://ror.org/025zbpk71', 'en', 1, 'https://ror.org/025zbpk71 Jaamacada Muqdisho Mogadishu University Ų¬Ų§Ł…Ų¹Ų© Ł…Ł‚ŲÆŁŠŲ“Łˆ'),
(118946, 'https://ror.org/00zn4hy50', 'en', 1, 'https://ror.org/00zn4hy50 Nippon Uniform Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ¦ćƒ‹ćƒ•ć‚©ćƒ¼ćƒ ć‚»ćƒ³ć‚æćƒ¼'),
(118947, 'https://ror.org/05cdcvx65', 'en', 1, 'https://ror.org/05cdcvx65 Metropolitan Hospital College of Nursing'),
(118948, 'https://ror.org/00c027w63', 'fr', 1, 'https://ror.org/00c027w63 Ecole Nationale SupƩrieure des Technologies de l''Information et de la Communication National Higher School of Information and Communication Technologies'),
(118949, 'https://ror.org/04gsnvb07', 'no_lang_code', 1, 'https://ror.org/04gsnvb07 Thorlabs (United States)'),
(118950, 'https://ror.org/00vf17b40', 'no_lang_code', 1, 'https://ror.org/00vf17b40 Ethnographic Museum'),
(118951, 'https://ror.org/03mzyx188', 'en', 1, 'https://ror.org/03mzyx188 Japan Shogi Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°†ę£‹é€£ē›Ÿ'),
(118952, 'https://ror.org/03y0tb128', 'it', 1, 'https://ror.org/03y0tb128 Azienda USL della Valle d’Aosta'),
(118953, 'https://ror.org/00ngcqn55', 'es', 1, 'https://ror.org/00ngcqn55 Uninavarra'),
(118954, 'https://ror.org/004gtsb65', 'en', 1, 'https://ror.org/004gtsb65 Kanagawa Welfare Service Association å…¬ē›Šē¤¾å›£ę³•äŗŗć‹ćŖćŒć‚ē¦ē„‰ć‚µćƒ¼ćƒ“ć‚¹ęŒÆčˆˆä¼š'),
(118955, 'https://ror.org/05bh7ap46', 'en', 1, 'https://ror.org/05bh7ap46 Management College of Southern Africa'),
(118956, 'https://ror.org/01g6xse81', 'no_lang_code', 1, 'https://ror.org/01g6xse81 Altasciences (Canada)'),
(118957, 'https://ror.org/03qf00w40', 'en', 1, 'https://ror.org/03qf00w40 Drug Abuse Prevention Center å…¬ē›Šč²”å›£ę³•äŗŗéŗ»č–¬ćƒ»č¦šć›ć„å‰¤ä¹±ē”Øé˜²ę­¢ć‚»ćƒ³ć‚æćƒ¼'),
(118958, 'https://ror.org/02zws9h76', 'no_lang_code', 1, 'https://ror.org/02zws9h76 Biopticka Laborator (Czechia)'),
(118959, 'https://ror.org/01z71je29', 'no_lang_code', 1, 'https://ror.org/01z71je29 Ampel BioSolutions (United States)'),
(118960, 'https://ror.org/05wygq130', 'es', 1, 'https://ror.org/05wygq130 Gabriela Mistral University Universidad Gabriela Mistral'),
(118961, 'https://ror.org/05x5psy30', 'en', 1, 'https://ror.org/05x5psy30 Research Institute of Molecular Electronics ŠŠ˜Š˜ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(118962, 'https://ror.org/05y0xxk03', 'no_lang_code', 1, 'https://ror.org/05y0xxk03 Douglas Instruments Douglas Instruments (United Kingdom) Douglas Instruments Ltd.'),
(118963, 'https://ror.org/00wk0sx73', 'en', 1, 'https://ror.org/00wk0sx73 The Japan Association of National Universities äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½ē«‹å¤§å­¦å”ä¼š'),
(118964, 'https://ror.org/01ks10077', 'en', 1, 'https://ror.org/01ks10077 THE Fujihara Foundation Of Science å…¬ē›Šč²”å›£ę³•äŗŗč—¤åŽŸē§‘å­¦č²”å›£'),
(118965, 'https://ror.org/02j1ekg65', 'en', 1, 'https://ror.org/02j1ekg65 Metanoia Institute'),
(118966, 'https://ror.org/000e39j32', 'pt', 1, 'https://ror.org/000e39j32 Centro para a Excelência e Inovação na Indústria Automóvel'),
(118967, 'https://ror.org/02dhyyn72', 'en', 1, 'https://ror.org/02dhyyn72 Japan Audio Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Ŗćƒ¼ćƒ‡ć‚£ć‚Ŗå”ä¼š'),
(118968, 'https://ror.org/011gb2z47', 'fr', 1, 'https://ror.org/011gb2z47 Centre Hospitalier Agen - NƩrac'),
(118969, 'https://ror.org/00wk6k443', 'en', 1, 'https://ror.org/00wk6k443 Yamanashi Livestock and Dairy Farming Technology Center å±±ę¢ØēœŒē•œē”£é…Ŗč¾²ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(118970, 'https://ror.org/054zyxm40', 'en', 1, 'https://ror.org/054zyxm40 Urban planning Institute of the Republic of Slovenia Urbanistični inŔtitut Republike Slovenije'),
(118971, 'https://ror.org/043c66817', 'en', 1, 'https://ror.org/043c66817 International Fund for Animal Welfare'),
(118972, 'https://ror.org/05ver4491', 'en', 1, 'https://ror.org/05ver4491 European Centre for Minority Issues Europäisches Zentrum für Minderheitenfragen'),
(118973, 'https://ror.org/01bxpq356', 'en', 1, 'https://ror.org/01bxpq356 Okinawa Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗę²–ēø„ēœŒēœ‹č­·å”ä¼š'),
(118974, 'https://ror.org/04kekqx13', 'en', 1, 'https://ror.org/04kekqx13 The Society of Synthetic Organic Chemistry, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗęœ‰ę©ŸåˆęˆåŒ–å­¦å”ä¼š'),
(118975, 'https://ror.org/046t14n33', 'en', 1, 'https://ror.org/046t14n33 Foundation for the Arts, Nagoya å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹å›½éš›čŠøč”“ę–‡åŒ–äŗ¤ęµč²”å›£'),
(118976, 'https://ror.org/04eb71689', 'no_lang_code', 1, 'https://ror.org/04eb71689 PathAI (United States)'),
(118977, 'https://ror.org/03ya5bx06', 'en', 1, 'https://ror.org/03ya5bx06 Ministry of Arts & Culture Cameroun MinistĆØre des Arts et de la Culture'),
(118978, 'https://ror.org/03fm4pf61', 'en', 1, 'https://ror.org/03fm4pf61 Milan Vidmar Electric Power Research Institute'),
(118979, 'https://ror.org/05cmcjx46', 'en', 1, 'https://ror.org/05cmcjx46 Africa Oral Health Network'),
(118980, 'https://ror.org/04b5h5d25', 'en', 1, 'https://ror.org/04b5h5d25 MƩtis Nation of Ontario'),
(118981, 'https://ror.org/05hfcbw70', 'en', 1, 'https://ror.org/05hfcbw70 Yu-cho Foundation äø€čˆ¬č²”å›£ę³•äŗŗć‚†ć†ć”ć‚‡č²”å›£'),
(118982, 'https://ror.org/00hh20n32', 'en', 1, 'https://ror.org/00hh20n32 Talent Education Research Institute å…¬ē›Šē¤¾å›£ę³•äŗŗę‰čƒ½ę•™č‚²ē ”ē©¶ä¼š'),
(118983, 'https://ror.org/039ys1d08', 'en', 1, 'https://ror.org/039ys1d08 Japan Bekko Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć¹ć£ē”²å”ä¼š'),
(118984, 'https://ror.org/02k0vv465', 'en', 1, 'https://ror.org/02k0vv465 JA Niigata Kouseiren Ojiya General Hospital JAę–°ę½ŸåŽšē”Ÿé€£å°åƒč°·ē·åˆē—…é™¢'),
(118985, 'https://ror.org/03dr5vm44', 'en', 1, 'https://ror.org/03dr5vm44 Aconcagua University Universidad del Aconcagua'),
(118986, 'https://ror.org/027svba45', 'es', 1, 'https://ror.org/027svba45 CONSORCIO DE INVESTIGACIƓN SOBRE VIH SIDA TB CISIDAT, A.C. Health Research Consortium'),
(118987, 'https://ror.org/03vq35391', 'en', 1, 'https://ror.org/03vq35391 The Japan Amateur Radio League äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒžćƒćƒ„ć‚¢ē„”ē·šé€£ē›Ÿ'),
(118988, 'https://ror.org/027hyfg83', 'en', 1, 'https://ror.org/027hyfg83 Yasuki Daiichi Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę˜Œęž—ä¼šå®‰ę„ē¬¬äø€ē—…é™¢'),
(118989, 'https://ror.org/03jz5v392', 'no_lang_code', 1, 'https://ror.org/03jz5v392 Agritec (Czechia)'),
(118990, 'https://ror.org/0156zyn36', 'en', 1, 'https://ror.org/0156zyn36 California Medical Innovations Institute'),
(118991, 'https://ror.org/00h5tjt58', 'en', 1, 'https://ror.org/00h5tjt58 Japan Advertising Photographers'' Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŗƒå‘Šå†™ēœŸå®¶å”ä¼š'),
(118992, 'https://ror.org/042dnf796', 'en', 1, 'https://ror.org/042dnf796 National Academy of Medical Sciences of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń меГичних наук України'),
(118993, 'https://ror.org/00pffe521', 'en', 1, 'https://ror.org/00pffe521 Arrupe Jesuit University'),
(118994, 'https://ror.org/04myy5r44', 'tr', 1, 'https://ror.org/04myy5r44 Batı Karadeniz Akademisyenler Derneği'),
(118995, 'https://ror.org/05kvxgx64', 'en', 1, 'https://ror.org/05kvxgx64 The AIDS Support Organization'),
(118996, 'https://ror.org/01yvjzz81', 'en', 1, 'https://ror.org/01yvjzz81 National Federation of Real Estate Transaction Associations å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½å®…åœ°å»ŗē‰©å–å¼•ę„­å”ä¼šé€£åˆä¼š'),
(118997, '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'),
(118998, 'https://ror.org/0403byw97', 'en', 1, 'https://ror.org/0403byw97 Hungarian Demographic Research Institute'),
(118999, 'https://ror.org/025jtyf63', 'en', 1, 'https://ror.org/025jtyf63 International Energy Research Centre'),
(119000, 'https://ror.org/03ebec821', 'en', 1, 'https://ror.org/03ebec821 Foundation for Promotion of Medical Training å…¬ē›Šč²”å›£ę³•äŗŗåŒ»ē™‚ē ”äæ®ęŽØé€²č²”å›£'),
(119001, 'https://ror.org/05ape3326', 'en', 1, 'https://ror.org/05ape3326 Japan Asphalt Mixture Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ć‚¹ćƒ•ć‚”ćƒ«ćƒˆåˆęå”ä¼š'),
(119002, 'https://ror.org/040h8wz67', 'en', 1, 'https://ror.org/040h8wz67 Sri Sairam Ayurveda Medical College and Research Centre'),
(119003, 'https://ror.org/04ykvv917', 'fr', 1, 'https://ror.org/04ykvv917 ESCA Ecole de Management'),
(119004, 'https://ror.org/03nhjjj32', 'en', 1, 'https://ror.org/03nhjjj32 Webster Vienna Private University'),
(119005, 'https://ror.org/00gnby550', 'en', 1, 'https://ror.org/00gnby550 The Association For Promoting Fair Elections å…¬ē›Šč²”å›£ę³•äŗŗę˜Žć‚‹ć„éøęŒ™ęŽØé€²å”ä¼š'),
(119006, 'https://ror.org/044gsb949', 'en', 1, 'https://ror.org/044gsb949 North Dakota Geological Survey'),
(119007, 'https://ror.org/015py4711', 'es', 1, 'https://ror.org/015py4711 ANFACO-CECOPESCA'),
(119008, 'https://ror.org/01ez2y359', 'en', 1, 'https://ror.org/01ez2y359 Akashi Tsuchiyama Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę­£ä»ä¼šę˜ŽēŸ³åœŸå±±ē—…é™¢'),
(119009, 'https://ror.org/02mqbt594', 'no_lang_code', 1, 'https://ror.org/02mqbt594 Hokusei Gakuen University åŒ—ę˜Ÿå­¦åœ’å¤§å­¦'),
(119010, 'https://ror.org/02wdhf285', 'en', 1, 'https://ror.org/02wdhf285 Research Association of Automotive Components and Technology č‡Ŗå‹•č»Šę©Ÿå™ØęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(119011, 'https://ror.org/02thjp576', 'no_lang_code', 1, 'https://ror.org/02thjp576 eScire'),
(119012, 'https://ror.org/04agsgy77', 'en', 1, 'https://ror.org/04agsgy77 All Japan Fishing Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬é‡£ć‚Šå›£ä½“å”č­°ä¼š'),
(119013, 'https://ror.org/04tp3cz81', 'en', 1, 'https://ror.org/04tp3cz81 Infectious Diseases Data Observatory'),
(119014, 'https://ror.org/04mxfzz97', 'en', 1, 'https://ror.org/04mxfzz97 The Conservation Fund'),
(119015, 'https://ror.org/03cr9qq80', 'es', 1, 'https://ror.org/03cr9qq80 Instituto Superior de Educación Rural'),
(119016, 'https://ror.org/03txpx007', 'no_lang_code', 1, 'https://ror.org/03txpx007 Agendia (Netherlands)'),
(119017, 'https://ror.org/0302q4d52', 'en', 1, 'https://ror.org/0302q4d52 Manila Observatory'),
(119018, 'https://ror.org/05jhv5427', 'en', 1, 'https://ror.org/05jhv5427 The Building-Energy Manager''s Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ“ćƒ«ć‚Øćƒćƒ«ć‚®ćƒ¼ē·åˆē®”ē†ęŠ€č”“å”ä¼š'),
(119019, 'https://ror.org/026g0f008', 'es', 1, 'https://ror.org/026g0f008 Dirección General de Educación Normal'),
(119020, 'https://ror.org/04srpvh96', 'en', 1, 'https://ror.org/04srpvh96 Cabrillo College'),
(119021, 'https://ror.org/03efmqc40', 'en', 1, 'https://ror.org/03efmqc40 Arizona State University Universidad Estatal de Arizona UniversitĆ© d''Ɖtat de l''Arizona'),
(119022, 'https://ror.org/01a6ame61', 'en', 1, 'https://ror.org/01a6ame61 R A Podar College of Commerce and Economics'),
(119023, 'https://ror.org/01zqypb88', 'en', 1, 'https://ror.org/01zqypb88 Institut für Informationsmanagement Bremen Institute for Information Management Bremen'),
(119024, 'https://ror.org/048jjcz87', 'fr', 1, 'https://ror.org/048jjcz87 Interactions, transferts, ruptures artistiques et culturelless'),
(119025, 'https://ror.org/02hgxnr90', 'en', 1, 'https://ror.org/02hgxnr90 Japan Ice Cream Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ć‚¤ć‚¹ć‚ÆćƒŖćƒ¼ćƒ å”ä¼š'),
(119026, 'https://ror.org/02apyj447', 'en', 1, 'https://ror.org/02apyj447 The Resona Foundation For Small And Medium Enterprise Promotion å…¬ē›Šč²”å›£ę³•äŗŗć‚ŠććŖäø­å°ä¼ę„­ęŒÆčˆˆč²”å›£'),
(119027, 'https://ror.org/01xr0jq51', 'en', 1, 'https://ror.org/01xr0jq51 Council for Nuclear Fuel Cycle äø€čˆ¬ē¤¾å›£ę³•äŗŗåŽŸå­ē‡ƒę–™ę”æē­–ē ”ē©¶ä¼š');
INSERT INTO `rors` VALUES
(119028, 'https://ror.org/0296esg18', 'en', 1, 'https://ror.org/0296esg18 Valencia College'),
(119029, 'https://ror.org/00kfene23', 'en', 1, 'https://ror.org/00kfene23 Hyogo Construction Technology Center for Regional Development å…¬ē›Šč²”å›£ę³•äŗŗå…µåŗ«ēœŒć¾ć”ć„ćć‚ŠęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(119030, 'https://ror.org/051n06p20', 'no_lang_code', 1, 'https://ror.org/051n06p20 Esprit (Slovakia)'),
(119031, 'https://ror.org/04vts6h49', 'no_lang_code', 1, 'https://ror.org/04vts6h49 Kardan University دانؓگاه کاردان دکاردان Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(119032, 'https://ror.org/03khqdg35', 'es', 1, 'https://ror.org/03khqdg35 Universidad de Zamboanga'),
(119033, 'https://ror.org/05k57rv29', 'en', 1, 'https://ror.org/05k57rv29 Japan Poultry Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é¤Šé¶å”ä¼š'),
(119034, 'https://ror.org/007wag365', 'pt', 1, 'https://ror.org/007wag365 Instituto Nacional de SaĆŗde PĆŗblica National Institute of Public Health'),
(119035, 'https://ror.org/029ggr184', 'en', 1, 'https://ror.org/029ggr184 Japan Association of Environment Assessment äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒć‚¢ć‚»ć‚¹ćƒ”ćƒ³ćƒˆå”ä¼š'),
(119036, 'https://ror.org/00ce5f813', 'en', 1, 'https://ror.org/00ce5f813 Ternopil State Agricultural Experimental Station of Institute of Agriculture of Carpathion Region of National Academy of Agrarian Sciences of Ukraine Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠ° Державна Š”Ń–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ŃŠæŠ¾Š“Š°Ń€ŃŃŒŠŗŠ° ДосліГна Š”Ń‚Š°Š½Ń†Ń–Ń Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ Ń€ŠµŠ³Ń–Š¾Š½Ńƒ ŠŠŠŠ України'),
(119037, 'https://ror.org/03whj2817', 'en', 1, 'https://ror.org/03whj2817 The Japanese Biochemical Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”ŸåŒ–å­¦ä¼š'),
(119038, 'https://ror.org/01fcbp662', 'en', 1, 'https://ror.org/01fcbp662 Institute for Cultural Inquiry'),
(119039, 'https://ror.org/02vdtnf67', 'en', 1, 'https://ror.org/02vdtnf67 The Forest Culture Association å…¬ē›Šč²”å›£ę³•äŗŗę£®ęž—ę–‡åŒ–å”ä¼š'),
(119040, 'https://ror.org/00ep9v282', 'en', 1, 'https://ror.org/00ep9v282 Schreiner University'),
(119041, 'https://ror.org/042wesx44', 'en', 1, 'https://ror.org/042wesx44 IBARAKI Construction Technology Center äø€čˆ¬č²”å›£ę³•äŗŗčŒØåŸŽēœŒå»ŗčØ­ęŠ€č”“ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(119042, 'https://ror.org/05cjxt577', 'en', 1, 'https://ror.org/05cjxt577 Herzog College'),
(119043, 'https://ror.org/00avfvp71', 'en', 1, 'https://ror.org/00avfvp71 National Liver Institute معهد Ų§Ł„ŁƒŲØŲÆ Ų§Ł„Ł‚ŁˆŁ…ŁŠ'),
(119044, 'https://ror.org/05tg4dc47', 'en', 1, 'https://ror.org/05tg4dc47 Wyss Center for Bio and Neuroengineering'),
(119045, 'https://ror.org/00pvwxq76', 'no_lang_code', 1, 'https://ror.org/00pvwxq76 Damodaram Sanjivayya National Law University దామోదరం ą°øą°‚ą°œą±€ą°µą°Æą±ą°Æ ą°œą°¾ą°¤ą±€ą°Æ లా ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(119046, 'https://ror.org/0530a6n46', 'fr', 1, 'https://ror.org/0530a6n46 Ecole supƩrieure en science et technologies de l''informatique et du numƩrique'),
(119047, 'https://ror.org/013qt8483', 'en', 1, 'https://ror.org/013qt8483 University of the Ozarks'),
(119048, 'https://ror.org/00x6k0023', 'es', 1, 'https://ror.org/00x6k0023 Corporación Educativa del Litoral'),
(119049, 'https://ror.org/00n1ygd32', 'en', 1, 'https://ror.org/00n1ygd32 Belarusian State Agrarian Technical University Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ аграрны Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(119050, 'https://ror.org/011j3n884', 'en', 1, 'https://ror.org/011j3n884 Keiaikai Yanai Hospital åŒ»ē™‚ę³•äŗŗęµę„›ä¼šęŸ³äŗ•ē—…é™¢'),
(119051, 'https://ror.org/013nrf512', 'en', 1, 'https://ror.org/013nrf512 SECOM Science and Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚»ć‚³ćƒ ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(119052, 'https://ror.org/00xk3cg80', 'hr', 1, 'https://ror.org/00xk3cg80 Hospital Dubrovnik Opća bolnica Dubrovnik'),
(119053, 'https://ror.org/04j198w64', 'en', 1, 'https://ror.org/04j198w64 UniversitƩ de western michigan Western Michigan University'),
(119054, 'https://ror.org/029rd6696', 'en', 1, 'https://ror.org/029rd6696 Kenya Association of Pharmaceutical Industry'),
(119055, 'https://ror.org/051479f29', 'en', 1, 'https://ror.org/051479f29 NOGUCHI-, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗé‡Žå£åŒ»å­¦ē ”ē©¶ę‰€'),
(119056, 'https://ror.org/041dz4347', 'en', 1, 'https://ror.org/041dz4347 Japan Weightlifting Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¦ć‚Øć‚¤ćƒˆćƒŖćƒ•ćƒ†ć‚£ćƒ³ć‚°å”ä¼š'),
(119057, 'https://ror.org/04jmbwk37', 'en', 1, 'https://ror.org/04jmbwk37 Sagamihara Industrial Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗē›øęØ”åŽŸåø‚ē”£ę„­ęŒÆčˆˆč²”å›£'),
(119058, 'https://ror.org/0583svv19', 'en', 1, 'https://ror.org/0583svv19 Food Marketing Research and Information Center äø€čˆ¬ē¤¾å›£ę³•äŗŗé£Ÿå“éœ€ēµ¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(119059, 'https://ror.org/02v636k90', 'en', 1, 'https://ror.org/02v636k90 NSK Foundation for the Advancement of Mechatronics å…¬ē›Šč²”å›£ę³•äŗŗNSKćƒ”ć‚«ćƒˆćƒ­ćƒ‹ć‚Æć‚¹ęŠ€č”“é«˜åŗ¦åŒ–č²”å›£'),
(119060, 'https://ror.org/02jxmv467', 'en', 1, 'https://ror.org/02jxmv467 Japan Engineering Association of Survey&Design for Rural Development å…¬ē›Šē¤¾å›£ę³•äŗŗåœŸåœ°ę”¹č‰Æęø¬é‡čØ­čØˆęŠ€č”“å”ä¼š'),
(119061, 'https://ror.org/03cb4jc22', 'en', 1, 'https://ror.org/03cb4jc22 SCIVP of Veterinary Medicinal Products and Feed Additives Державний науково-ГосліГний ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŒŠ½ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарних препаратів та кормових Гобавок.'),
(119062, 'https://ror.org/05mq5yf88', 'en', 1, 'https://ror.org/05mq5yf88 Hidayatullah National Law University ą¤¹ą¤æą¤¦ą¤¾ą¤Æą¤¤ą„ą¤²ą„ą¤²ą¤¾ą¤¹ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(119063, 'https://ror.org/03ztdzc15', 'en', 1, 'https://ror.org/03ztdzc15 Japan-Korea Industrial Technology Co-Operation Foundation äø€čˆ¬č²”å›£ę³•äŗŗę—„éŸ“ē”£ę„­ęŠ€č”“å”åŠ›č²”å›£'),
(119064, 'https://ror.org/033cwfa39', 'en', 1, 'https://ror.org/033cwfa39 Japan Foundry Society, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‹³é€ å”ä¼š'),
(119065, 'https://ror.org/0564fn834', 'en', 1, 'https://ror.org/0564fn834 PERSEI Space'),
(119066, 'https://ror.org/019xr6x61', 'hr', 1, 'https://ror.org/019xr6x61 University of Applied Sciences Ivanić-Grad VeleučiliÅ”te Ivanić-Grad'),
(119067, 'https://ror.org/01whfz932', 'en', 1, 'https://ror.org/01whfz932 Belarusian State Academy of Telecommunications Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ĢŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń ŃŃƒĢŠ²ŃŠ·Ń– Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠ²ŃŠ·Šø'),
(119068, 'https://ror.org/03kcqne70', 'es', 1, 'https://ror.org/03kcqne70 Instituto Departamental de Bellas Artes'),
(119069, 'https://ror.org/005914433', 'en', 1, 'https://ror.org/005914433 Tokushima Prefectural Public Health, Pharmaceutical and Environmental Sciences Center å¾³å³¶ēœŒē«‹äæå„č£½č–¬ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(119070, 'https://ror.org/05e5t4x22', 'en', 1, 'https://ror.org/05e5t4x22 Hokkaido Acupuncture Moxibustion Association å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“é¼ēøåø«ä¼š'),
(119071, 'https://ror.org/02wf15744', 'no_lang_code', 1, 'https://ror.org/02wf15744 Foster and Partners (United Kingdom)'),
(119072, 'https://ror.org/021gpgt46', 'no_lang_code', 1, 'https://ror.org/021gpgt46 Menlo Systems (Germany)'),
(119073, 'https://ror.org/01r72g809', 'en', 1, 'https://ror.org/01r72g809 National Bank of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ банк України'),
(119074, 'https://ror.org/05bb9k540', 'en', 1, 'https://ror.org/05bb9k540 Kyiv University of Aviation and Information Technologies ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ авіаційних та інформаційних технологій'),
(119075, 'https://ror.org/01xnwh659', 'en', 1, 'https://ror.org/01xnwh659 Ottawa Heart Institute Research Corporation'),
(119076, 'https://ror.org/05jgqjp95', 'en', 1, 'https://ror.org/05jgqjp95 Japan Society of Plastics Technology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åˆęˆęØ¹č„‚ęŠ€č”“å”ä¼š'),
(119077, 'https://ror.org/038gwk587', 'en', 1, 'https://ror.org/038gwk587 Centerstone'),
(119078, 'https://ror.org/01d1z0b10', 'en', 1, 'https://ror.org/01d1z0b10 Togane-Kujukuri Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę±é‡‘ä¹åä¹é‡Œåœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(119079, 'https://ror.org/01ew37w25', 'en', 1, 'https://ror.org/01ew37w25 Fuchu City Hospital Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŗœäø­åø‚ē—…é™¢ę©Ÿę§‹'),
(119080, 'https://ror.org/04mmf1y69', 'en', 1, 'https://ror.org/04mmf1y69 Chandragupt Institute of Management'),
(119081, 'https://ror.org/049294b36', 'en', 1, 'https://ror.org/049294b36 Association Djibouti Nature Djibouti Nature'),
(119082, 'https://ror.org/048s34f25', 'no_lang_code', 1, 'https://ror.org/048s34f25 Umgeni Water Amanzi'),
(119083, 'https://ror.org/021s07j37', 'en', 1, 'https://ror.org/021s07j37 Asakusa medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗęµ…č‰åŒ»åø«ä¼š'),
(119084, 'https://ror.org/02r64v254', 'en', 1, 'https://ror.org/02r64v254 Forest Chemicals Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗęž—ę„­č–¬å‰¤å”ä¼š'),
(119085, 'https://ror.org/04255rd16', 'en', 1, 'https://ror.org/04255rd16 Central Remedial Clinic'),
(119086, 'https://ror.org/04a3w7c98', 'en', 1, 'https://ror.org/04a3w7c98 Japan Agricultural Corporations Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č¾²ę„­ę³•äŗŗå”ä¼š'),
(119087, 'https://ror.org/05kp6mq50', 'en', 1, 'https://ror.org/05kp6mq50 KSCSTE-Srinivasa Ramanujan Institute for Basic Sciences'),
(119088, 'https://ror.org/01t9de358', 'en', 1, 'https://ror.org/01t9de358 Rocky Mountain College'),
(119089, 'https://ror.org/038tt3b44', 'fr', 1, 'https://ror.org/038tt3b44 Institut National de la Statistique de Djibouti Institute of Statistics of Djibouti'),
(119090, 'https://ror.org/000vqk177', 'en', 1, 'https://ror.org/000vqk177 The Hyogo Industrial Association å…¬ē›Šē¤¾å›£ę³•äŗŗå…µåŗ«å·„ę„­ä¼š'),
(119091, 'https://ror.org/05jh7v391', 'en', 1, 'https://ror.org/05jh7v391 Sri Sri Institute for Advanced Research'),
(119092, 'https://ror.org/04xv3xn53', 'en', 1, 'https://ror.org/04xv3xn53 Motion Picture And Television Engineering Society Of Japan, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę˜ ē”»ćƒ†ćƒ¬ćƒ“ęŠ€č”“å”ä¼š'),
(119093, 'https://ror.org/00nc92k19', 'en', 1, 'https://ror.org/00nc92k19 Acharya Institute of Technology'),
(119094, 'https://ror.org/00xsnzk20', 'en', 1, 'https://ror.org/00xsnzk20 Slovak Hydrometeorological Institute'),
(119095, 'https://ror.org/0001w1758', 'nl', 1, 'https://ror.org/0001w1758 Alliade'),
(119096, 'https://ror.org/0325s8d52', 'en', 1, 'https://ror.org/0325s8d52 Mulier Institute'),
(119097, 'https://ror.org/007xgfy35', 'no_lang_code', 1, 'https://ror.org/007xgfy35 TrinaSolar Co., Ltd. (China) å¤©åˆå…‰čƒ½č‚”ä»½ęœ‰é™å…¬åø'),
(119098, 'https://ror.org/01axw0s80', 'en', 0, 'https://ror.org/01axw0s80 Research Institute of Agricultural Engineering Výzkumný Ústav ZemědělskĆ© Techniky'),
(119099, 'https://ror.org/038st2x32', 'en', 1, 'https://ror.org/038st2x32 Lifenet Health'),
(119100, 'https://ror.org/03mzeqe16', 'en', 1, 'https://ror.org/03mzeqe16 Sewerage Business Management Centre äø€čˆ¬č²”å›£ę³•äŗŗäø‹ę°“é“äŗ‹ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(119101, 'https://ror.org/05vpk9z93', 'en', 1, 'https://ror.org/05vpk9z93 Japan Intractable Diseases Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗé›£ē—…åŒ»å­¦ē ”ē©¶č²”å›£'),
(119102, 'https://ror.org/059v8t736', 'en', 1, 'https://ror.org/059v8t736 Sustainable Development Policy Institute'),
(119103, 'https://ror.org/04bkad313', 'en', 1, 'https://ror.org/04bkad313 Autism Speaks'),
(119104, 'https://ror.org/01m84wm78', 'fr', 1, 'https://ror.org/01m84wm78 University of Rennes 2 UniversitƩ Rennes 2'),
(119105, 'https://ror.org/05dhjwx68', 'en', 1, 'https://ror.org/05dhjwx68 Japan Israel Friendship Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¤ć‚¹ćƒ©ć‚Øćƒ«č¦Ŗå–„å”ä¼š'),
(119106, 'https://ror.org/03801kf75', 'en', 1, 'https://ror.org/03801kf75 Japan Kanji Aptitude Testing Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę¼¢å­—čƒ½åŠ›ę¤œå®šå”ä¼š'),
(119107, 'https://ror.org/056pf8y54', 'hr', 1, 'https://ror.org/056pf8y54 PAR University of Applied Sciences VeleučiliŔte PAR'),
(119108, 'https://ror.org/032ad4x80', 'en', 1, 'https://ror.org/032ad4x80 Internet Association Japan äø€čˆ¬č²”å›£ę³•äŗŗć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆå”ä¼š'),
(119109, 'https://ror.org/032y1jj47', 'en', 1, 'https://ror.org/032y1jj47 Japan Security Systems Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é˜²ēŠÆčØ­å‚™å”ä¼š'),
(119110, 'https://ror.org/01x7j0342', 'en', 1, 'https://ror.org/01x7j0342 Local Government Training Institute'),
(119111, 'https://ror.org/03bm5es30', 'en', 1, 'https://ror.org/03bm5es30 University of Dongola Ų¬Ų§Ł…Ų¹Ų© دنقلا'),
(119112, 'https://ror.org/01t6yfc26', 'en', 1, 'https://ror.org/01t6yfc26 Toshiba International Foundation å…¬ē›Šč²”å›£ę³•äŗŗę±čŠå›½éš›äŗ¤ęµč²”å›£'),
(119113, 'https://ror.org/02d84sx83', 'no_lang_code', 1, 'https://ror.org/02d84sx83 Oroboros Instruments (Austria)'),
(119114, 'https://ror.org/04k26n974', 'pt', 1, 'https://ror.org/04k26n974 Instituto Superior PolitƩcnico Gaya'),
(119115, 'https://ror.org/01mpv3829', 'en', 1, 'https://ror.org/01mpv3829 Takarazuka Golf Club äø€čˆ¬ē¤¾å›£ę³•äŗŗå®å”šć‚“ćƒ«ćƒ•å€¶ę„½éƒØ'),
(119116, 'https://ror.org/046bpyp15', 'en', 1, 'https://ror.org/046bpyp15 Institute for Peace and Security Studies'),
(119117, 'https://ror.org/03kas5n86', 'en', 1, 'https://ror.org/03kas5n86 The Japanese Society of Sericultural Science äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čš•ē³øå­¦ä¼š'),
(119118, 'https://ror.org/01wctk517', 'en', 1, 'https://ror.org/01wctk517 State Institution Ā«Academician O.F.Vozianov Institute of Urology of the National Academy of Medical Sciences of UkraineĀ» Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŃ€Š¾Š»Š¾Š³Ń–Ń— імені акаГ. Šž.Ф. Возіанова ŠŠŠœŠ України»'),
(119119, 'https://ror.org/03deyt557', 'en', 1, 'https://ror.org/03deyt557 Nature Conservation Society of Osaka å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗč‡Ŗē„¶ē’°å¢ƒäæå…Øå”ä¼š'),
(119120, 'https://ror.org/05cw2qj02', 'en', 1, 'https://ror.org/05cw2qj02 Cambrian College'),
(119121, 'https://ror.org/02qapk571', 'en', 1, 'https://ror.org/02qapk571 Pontifical Oriental Institute Pontificio Istituto Orientale'),
(119122, 'https://ror.org/03f4sf198', 'en', 1, 'https://ror.org/03f4sf198 Sitamarhi Institute of Technology'),
(119123, 'https://ror.org/059bmex60', 'en', 1, 'https://ror.org/059bmex60 Japan Epilepsy Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć¦ć‚“ć‹ć‚“å”ä¼š'),
(119124, 'https://ror.org/01s8vy398', 'en', 1, 'https://ror.org/01s8vy398 Parker University'),
(119125, 'https://ror.org/01n93gn67', 'en', 1, 'https://ror.org/01n93gn67 Center for Quantum Nanoscience ģ–‘ģžė‚˜ė…øź³¼ķ•™ģ—°źµ¬ė‹Ø'),
(119126, 'https://ror.org/04cj2h183', 'en', 1, 'https://ror.org/04cj2h183 Japan Triathlon Union å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒˆćƒ©ć‚¤ć‚¢ć‚¹ćƒ­ćƒ³é€£åˆ'),
(119127, 'https://ror.org/01791bq50', 'en', 1, 'https://ror.org/01791bq50 Ethiopian Food and Drug Authority į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆįŒį‰„įŠ“ įˆ˜į‹µįŠƒįŠ’į‰µ į‰£įˆˆįˆµįˆįŒ£įŠ•'),
(119128, 'https://ror.org/007vd9g61', 'en', 1, 'https://ror.org/007vd9g61 Toyonaka Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗč±Šäø­åø‚åŒ»åø«ä¼š'),
(119129, 'https://ror.org/02m129w84', 'en', 1, 'https://ror.org/02m129w84 Goethe-Gesellschaft in Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚²ćƒ¼ćƒ†å”ä¼š'),
(119130, 'https://ror.org/057g7ax43', 'en', 1, 'https://ror.org/057g7ax43 RV College of Nursing'),
(119131, 'https://ror.org/0202stx84', 'en', 1, 'https://ror.org/0202stx84 Holy Family University'),
(119132, 'https://ror.org/0093rkw25', 'en', 1, 'https://ror.org/0093rkw25 Bhartiya Skill Development University ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„ą¤•ą¤æą¤² ą¤”ą¤µą¤²ą¤Ŗą¤®ą„‡ą¤Øą„ą¤Ÿ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(119133, 'https://ror.org/04ry38w69', 'en', 1, 'https://ror.org/04ry38w69 Research Studios Austria'),
(119134, 'https://ror.org/00mgtnh46', 'en', 1, 'https://ror.org/00mgtnh46 Machida City Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗē”ŗē”°åø‚åŒ»åø«ä¼š'),
(119135, 'https://ror.org/05vbdat02', 'fr', 1, 'https://ror.org/05vbdat02 Ministry of the Environment, Protection of Nature and Sustainable Development MinistĆØre de l’Environnement, de la Protection de la Nature et du DĆ©veloppement durable'),
(119136, 'https://ror.org/05xybd718', 'no_lang_code', 1, 'https://ror.org/05xybd718 Sutro Biopharma (United States)'),
(119137, 'https://ror.org/021z3p720', 'no_lang_code', 1, 'https://ror.org/021z3p720 Aiju Instituto Tecnológico de Producto Infantil y Ocio'),
(119138, 'https://ror.org/00q9ad212', 'en', 1, 'https://ror.org/00q9ad212 Japan Botanical Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©å‹ć®ä¼š'),
(119139, 'https://ror.org/049be2c95', 'no_lang_code', 1, 'https://ror.org/049be2c95 Zanasi & Partners (Italy)'),
(119140, 'https://ror.org/038cnrz59', 'en', 1, 'https://ror.org/038cnrz59 The Independent Institute of Education'),
(119141, 'https://ror.org/04wdffz43', 'en', 1, 'https://ror.org/04wdffz43 Louisiana Geological Survey'),
(119142, 'https://ror.org/00yt5p853', 'de', 1, 'https://ror.org/00yt5p853 Psychiatric University Hospital Zurich Psychiatrische Universitätsklinik Zürich'),
(119143, 'https://ror.org/01jhmwy15', 'es', 1, 'https://ror.org/01jhmwy15 Attorney General of El Salvador FiscalĆ­a General de la RepĆŗblica de El Salvador'),
(119144, 'https://ror.org/0286jxt41', 'en', 1, 'https://ror.org/0286jxt41 Kyukamura äø€čˆ¬č²”å›£ę³•äŗŗä¼‘ęš‡ę‘å”ä¼š'),
(119145, 'https://ror.org/01chrg620', 'fr', 1, 'https://ror.org/01chrg620 Ɖcole RĆ©gionale SupĆ©rieure de la Magistrature (ERSUMA) de l’OHADA'),
(119146, 'https://ror.org/03e5s1f17', 'en', 1, 'https://ror.org/03e5s1f17 The Environment Institute of Kenya'),
(119147, 'https://ror.org/04x2jkn46', 'en', 1, 'https://ror.org/04x2jkn46 Kyoto Industrial Waste Association å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½åŗœē”£ę„­å»ƒę£„ē‰©å”ä¼š'),
(119148, 'https://ror.org/012p9gs30', 'en', 1, 'https://ror.org/012p9gs30 Santa Fe College'),
(119149, 'https://ror.org/05m3b2090', 'en', 1, 'https://ror.org/05m3b2090 Tennessee Geological Survey'),
(119150, 'https://ror.org/02bkgy413', 'no_lang_code', 1, 'https://ror.org/02bkgy413 Relay Therapeutics (United States)'),
(119151, 'https://ror.org/037hqgd69', 'en', 1, 'https://ror.org/037hqgd69 Asia School of Business'),
(119152, 'https://ror.org/0105a3z22', 'en', 1, 'https://ror.org/0105a3z22 The Textile Mechinery Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē¹Šē¶­ę©Ÿę¢°å­¦ä¼š'),
(119153, 'https://ror.org/05y2g7215', 'no_lang_code', 1, 'https://ror.org/05y2g7215 Zeon (Japan) ę—„ęœ¬ć‚¼ć‚Ŗćƒ³ę Ŗå¼ä¼šē¤¾'),
(119154, 'https://ror.org/05a8hw855', 'en', 1, 'https://ror.org/05a8hw855 Saitama Acupuncture&Moxibustion Association å…¬ē›Šē¤¾å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒé¼ēøåø«ä¼š'),
(119155, 'https://ror.org/04danrt76', 'en', 1, 'https://ror.org/04danrt76 EarthScope Consortium'),
(119156, 'https://ror.org/03416ap40', 'tr', 1, 'https://ror.org/03416ap40 Nurol Makina Nurol Makina Sanayi A.Ş.'),
(119157, 'https://ror.org/03crwvj28', 'en', 1, 'https://ror.org/03crwvj28 The Watanabe Foundation å…¬ē›Šč²”å›£ę³•äŗŗęø”é‚‰č²”å›£'),
(119158, 'https://ror.org/03s8h4161', 'no_lang_code', 1, 'https://ror.org/03s8h4161 Trasporti e Territorio'),
(119159, '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'),
(119160, 'https://ror.org/055923009', 'no_lang_code', 1, 'https://ror.org/055923009 Celldex Therapeutics (United States)'),
(119161, 'https://ror.org/0468t7w37', 'en', 1, 'https://ror.org/0468t7w37 Palestine Technical College'),
(119162, 'https://ror.org/02ypdcz26', 'en', 1, 'https://ror.org/02ypdcz26 Utsunomiya City Institute of Public Health and Environmental Science å®‡éƒ½å®®åø‚č”›ē”Ÿē’°å¢ƒč©¦éØ“ę‰€'),
(119163, 'https://ror.org/03w1cw951', 'en', 1, 'https://ror.org/03w1cw951 Juan AgustĆ­n Maza University Universidad Juan AgustĆ­n Maza'),
(119164, 'https://ror.org/00kt3xb88', 'en', 1, 'https://ror.org/00kt3xb88 Japanisch-Deutsches Kulturinstitut å…¬ē›Šč²”å›£ę³•äŗŗę—„ē‹¬ę–‡åŒ–ē ”ē©¶ę‰€'),
(119165, 'https://ror.org/017pj1g46', 'id', 1, 'https://ror.org/017pj1g46 Universitas Putra Bangsa'),
(119166, 'https://ror.org/01ysrp540', 'en', 1, 'https://ror.org/01ysrp540 Chester Zoo'),
(119167, 'https://ror.org/05bs32x30', 'no_lang_code', 1, 'https://ror.org/05bs32x30 Silvaco (United Kingdom)'),
(119168, 'https://ror.org/001gex257', 'en', 1, 'https://ror.org/001gex257 Kenya Institute of Curriculum Development'),
(119169, 'https://ror.org/04rftj768', 'en', 1, 'https://ror.org/04rftj768 Jaihind College of Engineering'),
(119170, 'https://ror.org/0094yxj20', 'en', 1, 'https://ror.org/0094yxj20 National Association of School Nurses'),
(119171, 'https://ror.org/03hhshb57', 'hr', 1, 'https://ror.org/03hhshb57 Croatian Institute for Brain Research Hrvatski institut za istraživanje mozga'),
(119172, 'https://ror.org/04td97651', 'en', 1, 'https://ror.org/04td97651 FUKUOKA Association of Independent Entrepreneurs äø€čˆ¬ē¤¾å›£ę³•äŗŗē¦å²”ēœŒäø­å°ä¼ę„­ēµŒå–¶č€…å”ä¼šé€£åˆä¼š'),
(119173, 'https://ror.org/04dabz326', 'en', 1, 'https://ror.org/04dabz326 Japanese Association of Certified Orthoptists å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č¦–čƒ½čØ“ē·“å£«å”ä¼š'),
(119174, 'https://ror.org/01are4896', 'no_lang_code', 1, 'https://ror.org/01are4896 Van Leer Jerusalem Institute'),
(119175, 'https://ror.org/008p13e68', 'no_lang_code', 1, 'https://ror.org/008p13e68 Farvet (Peru)'),
(119176, 'https://ror.org/04j6k3054', 'en', 1, 'https://ror.org/04j6k3054 Vitebsk State University named after P.M. Masherov Витебский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П. М. ŠœŠ°ŃˆŠµŃ€Š¾Š²Š° Віцебскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń П. М. ŠœŠ°ŃˆŃŃ€Š°Š²Š°'),
(119177, 'https://ror.org/022jvp574', 'en', 1, 'https://ror.org/022jvp574 Radiation Protection Institute'),
(119178, 'https://ror.org/02a1k8r43', 'en', 1, 'https://ror.org/02a1k8r43 The Akita Association of Radiological Technologists å…¬ē›Šē¤¾å›£ę³•äŗŗē§‹ē”°ēœŒčØŗē™‚ę”¾å°„ē·šęŠ€åø«ä¼š'),
(119179, 'https://ror.org/03630mg45', 'en', 1, 'https://ror.org/03630mg45 Japan Aeronautic Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬čˆŖē©ŗå”ä¼š'),
(119180, 'https://ror.org/059jkdx17', 'nl', 1, 'https://ror.org/059jkdx17 Helen Dowling Instituut'),
(119181, 'https://ror.org/0266tsk59', 'en', 1, 'https://ror.org/0266tsk59 Oze Preservation Foundation å…¬ē›Šč²”å›£ę³•äŗŗå°¾ē€¬äæč­·č²”å›£'),
(119182, 'https://ror.org/02c1mt808', 'en', 1, 'https://ror.org/02c1mt808 Mapping Technology Association äø€čˆ¬ē¤¾å›£ę³•äŗŗåœ°å›³čŖæč£½ęŠ€č”“å”ä¼š'),
(119183, 'https://ror.org/00x6sm138', 'en', 1, 'https://ror.org/00x6sm138 Neural Stem Cell Institute'),
(119184, 'https://ror.org/0511q2902', 'en', 1, 'https://ror.org/0511q2902 Japan Society for the Prevention of Cruelty to Animals å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©ę„›č­·å”ä¼š'),
(119185, 'https://ror.org/04p54bb05', 'no_lang_code', 1, 'https://ror.org/04p54bb05 Zambart'),
(119186, 'https://ror.org/03sfvke56', 'en', 1, 'https://ror.org/03sfvke56 KodolĆ”nyi JĆ”nos Főiskola KodolĆ”nyi JĆ”nos University of Applied Sciences'),
(119187, 'https://ror.org/02gkqyc26', 'en', 1, 'https://ror.org/02gkqyc26 Toho Junior College of Music ę±é‚¦éŸ³ę„½ēŸ­ęœŸå¤§å­¦'),
(119188, 'https://ror.org/04da21y15', 'en', 1, 'https://ror.org/04da21y15 Japan Society of Mathematical Education å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę•°å­¦ę•™č‚²å­¦ä¼š'),
(119189, 'https://ror.org/020p12e29', 'en', 1, 'https://ror.org/020p12e29 Japan Federation of Architects & Building Engineers Associations å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰å£«ä¼šé€£åˆä¼š'),
(119190, 'https://ror.org/025349c89', 'en', 1, 'https://ror.org/025349c89 Japan Cooperative Insurance Association Incorporated äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…±ęøˆå”ä¼š'),
(119191, 'https://ror.org/00vqwjw35', 'en', 1, 'https://ror.org/00vqwjw35 European Research and Project Office'),
(119192, 'https://ror.org/036d1w285', 'en', 1, 'https://ror.org/036d1w285 Academy of Fine Arts in Warsaw Akademia Sztuk Pięknych w Warszawie'),
(119193, 'https://ror.org/03fvzd757', 'en', 1, 'https://ror.org/03fvzd757 Blackpool and The Fylde College'),
(119194, 'https://ror.org/05habh343', 'es', 1, 'https://ror.org/05habh343 Hospital de Palamós'),
(119195, 'https://ror.org/04j2hh758', 'no_lang_code', 1, 'https://ror.org/04j2hh758 Metrum Research Group (United States)'),
(119196, 'https://ror.org/00xmn9a46', 'en', 1, 'https://ror.org/00xmn9a46 Alaska SeaLife Center'),
(119197, 'https://ror.org/038b8e254', 'en', 1, 'https://ror.org/038b8e254 Addis Ababa University'),
(119198, 'https://ror.org/04r5d9m34', 'de', 1, 'https://ror.org/04r5d9m34 Klinik Dr. Hancken'),
(119199, 'https://ror.org/03zh00e46', 'en', 1, 'https://ror.org/03zh00e46 Normalization Housing Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒŽćƒ¼ćƒžćƒ©ć‚¤ć‚¼ćƒ¼ć‚·ćƒ§ćƒ³ä½å®…č²”å›£'),
(119200, 'https://ror.org/023mqbd98', 'en', 1, 'https://ror.org/023mqbd98 Sendai City Industrial Promotion Organization å…¬ē›Šč²”å›£ę³•äŗŗä»™å°åø‚ē”£ę„­ęŒÆčˆˆäŗ‹ę„­å›£'),
(119201, 'https://ror.org/01dax5b49', 'en', 1, 'https://ror.org/01dax5b49 Narodowy Instytut Dziedzictwa National Heritage Board of Poland'),
(119202, 'https://ror.org/03s917w10', 'fr', 1, 'https://ror.org/03s917w10 Clinical Research Institute of Benin Institut de Recherche Clinique du BƩnin'),
(119203, 'https://ror.org/03m3g5338', 'en', 1, 'https://ror.org/03m3g5338 Institute for Structural Research'),
(119204, 'https://ror.org/05cmvgr54', 'en', 1, 'https://ror.org/05cmvgr54 Burman University'),
(119205, 'https://ror.org/004xmd305', 'no_lang_code', 1, 'https://ror.org/004xmd305 Dongwon Industries Dongwon Industries (South Korea) Dongwon Industries, Co., Ltd. ė™ģ›ģ‚°ģ—… ė™ģ›ģ‚°ģ—…ģ£¼ģ‹ķšŒģ‚¬'),
(119206, 'https://ror.org/01fh9nm31', 'en', 1, 'https://ror.org/01fh9nm31 Center for Ecological Noosphere Studies'),
(119207, 'https://ror.org/042d4p550', 'en', 1, 'https://ror.org/042d4p550 Philippine Electronics and Communication Institute of Technology'),
(119208, 'https://ror.org/011n0hq04', 'no_lang_code', 1, 'https://ror.org/011n0hq04 Emulate (United States)'),
(119209, 'https://ror.org/00k5ek978', 'no_lang_code', 1, 'https://ror.org/00k5ek978 SmartFactory (Germany) Technologie-Initiative SmartFactory KL'),
(119210, 'https://ror.org/047a24r47', 'es', 1, 'https://ror.org/047a24r47 Universidad Mariano Galvez Universidad Mariano GƔlvez de Guatemala'),
(119211, 'https://ror.org/013zsdz19', 'en', 1, 'https://ror.org/013zsdz19 Kyoto Youth Hostel Association äø€čˆ¬č²”å›£ę³•äŗŗäŗ¬éƒ½ćƒ¦ćƒ¼ć‚¹ćƒ›ć‚¹ćƒ†ćƒ«å”ä¼š'),
(119212, 'https://ror.org/041sq6k05', 'en', 1, 'https://ror.org/041sq6k05 The Akita Center To Implement Vigorous Enterprises å…¬ē›Šč²”å›£ę³•äŗŗć‚ććŸä¼ę„­ę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(119213, 'https://ror.org/04h4zez72', 'pt', 1, 'https://ror.org/04h4zez72 Geological Institute of Angola Instituto Geológico de Angola'),
(119214, 'https://ror.org/037xkdv59', 'en', 1, 'https://ror.org/037xkdv59 Kawagoe Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå·č¶Šåø‚åŒ»åø«ä¼š'),
(119215, 'https://ror.org/02qsf1r97', 'en', 1, 'https://ror.org/02qsf1r97 Academy of Science of South Africa'),
(119216, 'https://ror.org/03mg65n75', 'nl', 1, 'https://ror.org/03mg65n75 GGzE'),
(119217, 'https://ror.org/03s24wa94', 'en', 1, 'https://ror.org/03s24wa94 Missouri Department of Natural Resources'),
(119218, 'https://ror.org/05p3qfv79', 'en', 1, 'https://ror.org/05p3qfv79 Association of Copyright for Computer Software äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢č‘—ä½œęØ©å”ä¼š'),
(119219, 'https://ror.org/03ys7ky12', 'en', 1, 'https://ror.org/03ys7ky12 Remote Sensing Applications Centre, Uttar Pradesh Remote Sensing Applications Centre-U.P'),
(119220, 'https://ror.org/00jw56w10', 'nl', 1, 'https://ror.org/00jw56w10 Slingeland Ziekenhuis'),
(119221, 'https://ror.org/00pwncn89', 'en', 1, 'https://ror.org/00pwncn89 Biobanking and Biomolecular Resources Research Infrastructure Consortium'),
(119222, 'https://ror.org/04szngz98', 'en', 1, 'https://ror.org/04szngz98 Donated Blood Distribution Foundation å…¬ē›Šč²”å›£ę³•äŗŗēŒ®č”€ä¾›ēµ¦äŗ‹ę„­å›£'),
(119223, 'https://ror.org/0062q1w72', 'fr', 1, 'https://ror.org/0062q1w72 National Advanced School of Engineering of Yaounde Ɖcole Nationale SupĆ©rieure Polytechnique de YaoundĆ©'),
(119224, 'https://ror.org/05dfgqr03', 'en', 1, 'https://ror.org/05dfgqr03 AltaMed'),
(119225, 'https://ror.org/00d67eh84', 'en', 1, 'https://ror.org/00d67eh84 Central Laboratory for Radiological Protection Centralnego Laboratorium Ochrony Radiologicznej'),
(119226, 'https://ror.org/020wmv155', 'no_lang_code', 1, 'https://ror.org/020wmv155 Sinocelltech Group (China) äø­å›½ē»†čƒžęŠ€ęœÆé›†å›¢ęœ‰é™å…¬åø'),
(119227, 'https://ror.org/02fhkne84', 'en', 1, 'https://ror.org/02fhkne84 Institute for International Monetary Affairs å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›é€šč²Øē ”ē©¶ę‰€'),
(119228, 'https://ror.org/00q1ekz15', 'en', 1, 'https://ror.org/00q1ekz15 The Korea Foundation for Education å…¬ē›Šč²”å›£ę³•äŗŗéŸ“å›½ę•™č‚²č²”å›£'),
(119229, 'https://ror.org/003mte806', 'pt', 1, 'https://ror.org/003mte806 Instituto Superior de Administração e Línguas'),
(119230, 'https://ror.org/04w2eb864', 'en', 1, 'https://ror.org/04w2eb864 Shanghai Development Center of Computer Software Technology'),
(119231, 'https://ror.org/04dmckt32', 'es', 1, 'https://ror.org/04dmckt32 Instituto Amazónico de Investigaciones Científicas Instituto Sinchi'),
(119232, 'https://ror.org/044rwnt51', 'en', 1, 'https://ror.org/044rwnt51 ELIXIR'),
(119233, 'https://ror.org/03fnwsq86', 'en', 1, 'https://ror.org/03fnwsq86 National Accreditation and Quality Assurance Authority'),
(119234, 'https://ror.org/012q11j28', 'no_lang_code', 1, 'https://ror.org/012q11j28 ProQR Therapeutics (Netherlands)'),
(119235, 'https://ror.org/05c9a0p70', 'en', 1, 'https://ror.org/05c9a0p70 Sanitary and Environmental Research Institute of Kochi Prefecture é«˜ēŸ„ēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(119236, 'https://ror.org/04gk6ks26', 'nl', 1, 'https://ror.org/04gk6ks26 Mondriaan GGZ'),
(119237, 'https://ror.org/05422qg09', 'tn', 1, 'https://ror.org/05422qg09 Ditirelo tsa motlobo wa dibuka tsa Botswana National Library Service of Botswana'),
(119238, 'https://ror.org/045ms0x79', 'en', 1, 'https://ror.org/045ms0x79 Egyptian e-Learning University الجامعة Ų§Ł„Ł…ŲµŲ±ŁŠŲ© للتعلم Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†Ł‰'),
(119239, 'https://ror.org/050p04v75', 'en', 1, 'https://ror.org/050p04v75 Japan Pet Care Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę„›ēŽ©å‹•ē‰©å”ä¼š'),
(119240, 'https://ror.org/02w842p05', 'en', 1, 'https://ror.org/02w842p05 Japan Foodservice Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ•ćƒ¼ćƒ‰ć‚µćƒ¼ćƒ“ć‚¹å”ä¼š'),
(119241, 'https://ror.org/0115vcm08', 'en', 1, 'https://ror.org/0115vcm08 THE Watanabe Memorial Foundation For The Advancement Of Technology äø€čˆ¬č²”å›£ę³•äŗŗę–°ęŠ€č”“ęŒÆčˆˆęø”č¾ŗčØ˜åæµä¼š'),
(119242, 'https://ror.org/01cg6kh39', 'en', 1, 'https://ror.org/01cg6kh39 Far Eastern University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŸąø²ąø£ą¹Œąø­ąøµąøŖą¹€ąø—ąø­ąø£ą¹Œąø™'),
(119243, 'https://ror.org/03p0akt78', 'en', 1, 'https://ror.org/03p0akt78 Mitaka International Society for Hospitality å…¬ē›Šč²”å›£ę³•äŗŗäø‰é·¹å›½éš›äŗ¤ęµå”ä¼š'),
(119244, 'https://ror.org/05fqva713', 'en', 1, 'https://ror.org/05fqva713 South African National Blood Service'),
(119245, 'https://ror.org/0011jwx69', 'en', 1, 'https://ror.org/0011jwx69 The Aomori Institute of Regional Studies äø€čˆ¬č²”å›£ę³•äŗŗé’ę£®åœ°åŸŸē¤¾ä¼šē ”ē©¶ę‰€'),
(119246, 'https://ror.org/03tzscr25', 'en', 1, 'https://ror.org/03tzscr25 Bureau of Ocean Energy Management'),
(119247, 'https://ror.org/027184q35', 'no_lang_code', 1, 'https://ror.org/027184q35 Sotio (Czechia)'),
(119248, 'https://ror.org/05pbn2r55', 'en', 1, 'https://ror.org/05pbn2r55 SVP College of Pharmacy ą¤ą¤ø.व.ą¤Ŗą„€. ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ ą¤«ą¤¾ą¤°ą„ą¤®ą¤øą„€ ą¤¹ą¤Ÿą„ą¤Ÿą¤¾'),
(119249, 'https://ror.org/02dkzp073', 'en', 1, 'https://ror.org/02dkzp073 THE Honda Memorial Foundation å…¬ē›Šč²”å›£ę³•äŗŗęœ¬å¤ščØ˜åæµä¼š'),
(119250, 'https://ror.org/03g8y8161', 'no_lang_code', 1, 'https://ror.org/03g8y8161 Galois (United States)'),
(119251, 'https://ror.org/027rx0171', 'de', 1, 'https://ror.org/027rx0171 Aquazoo Lƶbbecke Museum'),
(119252, 'https://ror.org/01t3f4t10', 'en', 1, 'https://ror.org/01t3f4t10 ActionAid'),
(119253, 'https://ror.org/00nmq1179', 'en', 1, 'https://ror.org/00nmq1179 Ndejje University'),
(119254, 'https://ror.org/0552mgr51', 'en', 1, 'https://ror.org/0552mgr51 National Petroleum Dealers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ēŸ³ę²¹å”ä¼š'),
(119255, 'https://ror.org/04hkn0641', 'en', 1, 'https://ror.org/04hkn0641 Center for Academic Publications Japan äø€čˆ¬č²”å›£ę³•äŗŗå­¦ä¼ščŖŒåˆŠč”Œć‚»ćƒ³ć‚æćƒ¼'),
(119256, 'https://ror.org/05jhhxe89', 'en', 1, 'https://ror.org/05jhhxe89 Bureau of Ghana Languages'),
(119257, 'https://ror.org/03bf4az94', 'en', 1, 'https://ror.org/03bf4az94 American Society for the Prevention of Cruelty to Animals'),
(119258, 'https://ror.org/0431zrt90', 'en', 1, 'https://ror.org/0431zrt90 Scientific Electronic Library Online'),
(119259, 'https://ror.org/033krd317', 'en', 1, 'https://ror.org/033krd317 Association of International Politics and Security Studies Uluslararası Politika ve Güvenlik çalışmaları Derneği'),
(119260, 'https://ror.org/03k65c658', 'en', 1, 'https://ror.org/03k65c658 Kitakyushu City Institute of Health and Environmental Sciences åŒ—ä¹å·žåø‚äæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(119261, 'https://ror.org/035dq5k54', 'en', 1, 'https://ror.org/035dq5k54 Institut für sozial-ökologische Forschung Institute for Social-Ecological Research'),
(119262, 'https://ror.org/05nfbnp91', 'en', 1, 'https://ror.org/05nfbnp91 Academy of Cryptography Techniques Hį»c viện Kỹ thuįŗ­t Mįŗ­t mĆ£'),
(119263, 'https://ror.org/02yhfd205', 'en', 1, 'https://ror.org/02yhfd205 Kakogawa General Health Care Center å…¬ē›Šč²”å›£ę³•äŗŗåŠ å¤å·ē·åˆäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(119264, 'https://ror.org/013t64292', 'en', 1, 'https://ror.org/013t64292 Association of Japan Sporting Goods Industries äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„ē”Øå“å·„ę„­å”ä¼š'),
(119265, 'https://ror.org/054ea1q94', 'en', 1, 'https://ror.org/054ea1q94 Wuxi Taihu University'),
(119266, 'https://ror.org/03mkzcg89', 'en', 1, 'https://ror.org/03mkzcg89 Hamdard University Bangladesh ą¦¹ą¦¾ą¦®ą¦¦ą¦°ą§ą¦¦ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ বাংলাদেশ'),
(119267, 'https://ror.org/02m9pdn17', 'en', 1, 'https://ror.org/02m9pdn17 Tokyo Geotechnical Consultants Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½åœ°č³ŖčŖæęŸ»ę„­å”ä¼š'),
(119268, 'https://ror.org/00g4nz923', 'en', 1, 'https://ror.org/00g4nz923 All-Russian Scientific Research Institute of the Dairy Industry Всеросийский ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ¾Š»Š¾Ń‡Š½Š¾Š¹ ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(119269, 'https://ror.org/02rnyzs79', 'en', 1, 'https://ror.org/02rnyzs79 NatureServe'),
(119270, 'https://ror.org/05kgk2b63', 'en', 1, 'https://ror.org/05kgk2b63 The Gambia Standards Bureau'),
(119271, 'https://ror.org/0567hb468', 'en', 1, 'https://ror.org/0567hb468 Synchrotron-Light for Experimental Science and Applications in the Middle East'),
(119272, 'https://ror.org/0279hm646', 'en', 1, 'https://ror.org/0279hm646 Bruyere Health Research Institute'),
(119273, 'https://ror.org/00p6ghq98', 'en', 1, 'https://ror.org/00p6ghq98 Hong Kong Productivity Council é¦™ęøÆē”Ÿē”¢åŠ›äæƒé€²å±€'),
(119274, 'https://ror.org/00vbq3r97', 'en', 1, 'https://ror.org/00vbq3r97 Ethiopian Academy of Sciences'),
(119275, 'https://ror.org/02zr8yr92', 'en', 1, 'https://ror.org/02zr8yr92 Japan Auto Parts Industries Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»ŠéƒØå“å·„ę„­ä¼š'),
(119276, 'https://ror.org/0173bhk64', 'no_lang_code', 1, 'https://ror.org/0173bhk64 Elsheikh Abdallah Elbadri University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų“ŁŠŲ® عبدالله Ų§Ł„ŲØŲÆŲ±ŁŠ'),
(119277, 'https://ror.org/027bfgw20', 'en', 1, 'https://ror.org/027bfgw20 Tokushima Prefectural International Exchange Association å…¬ē›Šč²”å›£ę³•äŗŗå¾³å³¶ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(119278, 'https://ror.org/020mpkg22', 'en', 1, 'https://ror.org/020mpkg22 Kriminalomsorgens hĆøgskole og utdanningssenter KRUS University College of Norwegian Correctional Service'),
(119279, 'https://ror.org/03p706b71', 'es', 1, 'https://ror.org/03p706b71 Universidad Mesoamericana Oaxaca'),
(119280, 'https://ror.org/01ec1ev77', 'en', 1, 'https://ror.org/01ec1ev77 Construction Industry Engineers Center äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ę„­ęŠ€č”“č€…ć‚»ćƒ³ć‚æćƒ¼'),
(119281, 'https://ror.org/048jnwk41', 'nl', 1, 'https://ror.org/048jnwk41 De Viersprong'),
(119282, 'https://ror.org/01hvpn235', 'en', 1, 'https://ror.org/01hvpn235 Institute for the Equality of Women and Men'),
(119283, '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'),
(119284, 'https://ror.org/041g5fr04', 'nl', 1, 'https://ror.org/041g5fr04 GGNet'),
(119285, 'https://ror.org/00jdd5q52', 'en', 1, 'https://ror.org/00jdd5q52 The Japan Society for Aeronautical and Space Sciences äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čˆŖē©ŗå®‡å®™å­¦ä¼š'),
(119286, 'https://ror.org/04nj3ht72', 'en', 1, 'https://ror.org/04nj3ht72 Commonwealth Fusion Systems Commonwealth Fusion Systems (United States)'),
(119287, 'https://ror.org/04ezx2w62', 'en', 1, 'https://ror.org/04ezx2w62 Naka Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé‚£ē‚åŒ»åø«ä¼š'),
(119288, 'https://ror.org/04tydb537', 'en', 1, 'https://ror.org/04tydb537 New Hampshire Department of Environmental Services'),
(119289, 'https://ror.org/059w5gg54', 'en', 1, 'https://ror.org/059w5gg54 Ghana Wildlife Division'),
(119290, 'https://ror.org/03ebwae61', 'hr', 1, 'https://ror.org/03ebwae61 Polytechnic Hrvatsko Zagorje Krapina VeleučiliŔte Hrvatsko zagorje Krapina'),
(119291, 'https://ror.org/015kg8q36', 'en', 1, 'https://ror.org/015kg8q36 National University of Study and Research in Law'),
(119292, 'https://ror.org/0013grp33', 'en', 1, 'https://ror.org/0013grp33 Artificial Intelligence Research Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗäŗŗå·„ēŸ„čƒ½ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(119293, 'https://ror.org/050tm0329', 'en', 1, 'https://ror.org/050tm0329 Colorado Department of Education'),
(119294, 'https://ror.org/03nxed310', 'en', 1, 'https://ror.org/03nxed310 China Anti-Doping Agency'),
(119295, 'https://ror.org/035hs1q27', 'en', 1, 'https://ror.org/035hs1q27 Association of Electricity and Telecommunication Engineering for Land and Infrastructure äø€čˆ¬ē¤¾å›£ę³•äŗŗå»ŗčØ­é›»ę°—ęŠ€č”“å”ä¼š'),
(119296, 'https://ror.org/05cjs4m76', 'en', 1, 'https://ror.org/05cjs4m76 Japanese Research Institute on Social Welfare, Inc. äø€čˆ¬č²”å›£ę³•äŗŗē¤¾ä¼šē¦ē„‰ē ”ē©¶ę‰€'),
(119297, 'https://ror.org/0367eqd42', 'es', 1, 'https://ror.org/0367eqd42 Instituto Centroamericano de Administración Pública'),
(119298, 'https://ror.org/04r0k9g65', 'no_lang_code', 1, 'https://ror.org/04r0k9g65 Brockmann Consult (Germany)'),
(119299, 'https://ror.org/05qrp4k12', 'en', 1, 'https://ror.org/05qrp4k12 Institute for the Fashion Industries äø€čˆ¬č²”å›£ę³•äŗŗćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³ē”£ę„­äŗŗęč‚²ęˆę©Ÿę§‹'),
(119300, 'https://ror.org/00qdbnb47', 'en', 1, 'https://ror.org/00qdbnb47 National Federation of Medium Trawlers äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½åŗ•ę›³ē¶²ę¼ę„­é€£åˆä¼š'),
(119301, 'https://ror.org/057mqf960', 'en', 1, 'https://ror.org/057mqf960 Nkumba University'),
(119302, 'https://ror.org/05w8sb964', 'en', 1, 'https://ror.org/05w8sb964 Radiological and Medical Sciences Research Institute'),
(119303, 'https://ror.org/0492y4q90', 'en', 1, 'https://ror.org/0492y4q90 The Yuumi Memorial Foundation for Home Health Care å…¬ē›Šč²”å›£ę³•äŗŗåœØå®…åŒ»ē™‚åŠ©ęˆå‹‡ē¾ŽčØ˜åæµč²”å›£'),
(119304, 'https://ror.org/03jdefz88', 'en', 1, 'https://ror.org/03jdefz88 Mirwais Khan Nika Zabul University Ł…ŪŒŲ±ŁˆŪŒŲ³ خان Ł†ŪŒŚ©Ł‡ Ų²Ų§ŲØŁ„ Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(119305, 'https://ror.org/041k27e92', 'en', 1, 'https://ror.org/041k27e92 Restorative Justice for All International Institute'),
(119306, 'https://ror.org/02jep5960', 'no_lang_code', 1, 'https://ror.org/02jep5960 CanSino (China)'),
(119307, 'https://ror.org/010rsn281', 'en', 1, 'https://ror.org/010rsn281 Plan International Japan å…¬ē›Šč²”å›£ę³•äŗŗćƒ—ćƒ©ćƒ³ćƒ»ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(119308, 'https://ror.org/00q1z9n94', 'en', 1, 'https://ror.org/00q1z9n94 Japan Marketing Research Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒžćƒ¼ć‚±ćƒ†ć‚£ćƒ³ć‚°ćƒ»ćƒŖć‚µćƒ¼ćƒå”ä¼š'),
(119309, 'https://ror.org/00aq42n63', 'en', 1, 'https://ror.org/00aq42n63 Salem College'),
(119310, 'https://ror.org/00n8j9g10', 'en', 1, 'https://ror.org/00n8j9g10 Corban University'),
(119311, 'https://ror.org/04c4fb031', 'es', 1, 'https://ror.org/04c4fb031 Hospital Cuenca Alta NƩstor Kirchner'),
(119312, 'https://ror.org/04a7vn235', 'tr', 1, 'https://ror.org/04a7vn235 İzmir Tınaztepe University İzmir Tınaztepe Üniversitesi'),
(119313, 'https://ror.org/019hph417', 'de', 1, 'https://ror.org/019hph417 Zentrum für Mechatronik und Automatisierungstechnik'),
(119314, 'https://ror.org/04070t623', 'en', 1, 'https://ror.org/04070t623 Academic Newtown Community Cable Service äø€čˆ¬č²”å›£ę³•äŗŗē ”ē©¶å­¦åœ’éƒ½åø‚ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£ć‚±ćƒ¼ćƒ–ćƒ«ć‚µćƒ¼ćƒ“ć‚¹'),
(119315, 'https://ror.org/02kct7770', 'en', 1, 'https://ror.org/02kct7770 Tokyo Association Of Real Estate Appraisers å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½äøå‹•ē”£é‘‘å®šå£«å”ä¼š'),
(119316, 'https://ror.org/027bkk623', 'en', 1, 'https://ror.org/027bkk623 St John New Zealand'),
(119317, 'https://ror.org/04yjyvy93', 'en', 1, 'https://ror.org/04yjyvy93 Japan Curling Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚«ćƒ¼ćƒŖćƒ³ć‚°å”ä¼š'),
(119318, 'https://ror.org/00kyhtv22', 'en', 1, 'https://ror.org/00kyhtv22 New Supermarket Assosiation of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę–°ę—„ęœ¬ć‚¹ćƒ¼ćƒ‘ćƒ¼ćƒžćƒ¼ć‚±ćƒƒćƒˆå”ä¼š'),
(119319, 'https://ror.org/05sv6xe54', 'no_lang_code', 1, 'https://ror.org/05sv6xe54 VisMederi (Italy)'),
(119320, 'https://ror.org/03vagve85', 'no_lang_code', 1, 'https://ror.org/03vagve85 Alector (United States)'),
(119321, 'https://ror.org/02s5cdn70', 'en', 1, 'https://ror.org/02s5cdn70 Gwanda State University'),
(119322, 'https://ror.org/0514qvg71', 'en', 1, 'https://ror.org/0514qvg71 FA Foundation äø€čˆ¬č²”å›£ę³•äŗŗFA貔団'),
(119323, 'https://ror.org/01chqkb73', 'en', 1, 'https://ror.org/01chqkb73 Japan Building Owners and Managers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ“ćƒ«ćƒ‚ćƒ³ć‚°å”ä¼šé€£åˆä¼š'),
(119324, 'https://ror.org/05dbvt214', 'en', 1, 'https://ror.org/05dbvt214 Kuwait Specialized Eye Center'),
(119325, 'https://ror.org/027fdd835', 'en', 1, 'https://ror.org/027fdd835 Vanier College'),
(119326, 'https://ror.org/04yfe8169', 'no_lang_code', 1, 'https://ror.org/04yfe8169 Mindray (China) ę·±åœ³čæˆē‘žē”Ÿē‰©åŒ»ē–—ē”µå­č‚”ä»½ęœ‰é™å…¬åø ē‰ˆęƒę‰€ęœ‰'),
(119327, 'https://ror.org/01psb9158', 'en', 1, 'https://ror.org/01psb9158 Community College of Qatar ŁƒŁ„ŁŠŲ© المجتمع في قطر'),
(119328, 'https://ror.org/016q5kc23', 'en', 1, 'https://ror.org/016q5kc23 Japan Tariff Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é–¢ēØŽå”ä¼š'),
(119329, 'https://ror.org/00jg28v47', 'en', 1, 'https://ror.org/00jg28v47 Chiba Ymca äø€čˆ¬č²”å›£ę³•äŗŗåƒč‘‰YMCA'),
(119330, 'https://ror.org/03bw10f59', 'en', 1, 'https://ror.org/03bw10f59 Japanese Society for Laboratory Animal Resources å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å®ŸéØ“å‹•ē‰©å”ä¼š'),
(119331, 'https://ror.org/058c0xb46', 'en', 1, 'https://ror.org/058c0xb46 Crohn''s and Colitis UK'),
(119332, 'https://ror.org/059qbxf89', 'en', 1, 'https://ror.org/059qbxf89 Greater Noida Institute of Technology (MBA Institute)'),
(119333, 'https://ror.org/04r0k8112', 'nl', 1, 'https://ror.org/04r0k8112 Admiraal De Ruyter Ziekenhuis'),
(119334, 'https://ror.org/054vvj456', 'en', 1, 'https://ror.org/054vvj456 Saint Augustine''s University'),
(119335, 'https://ror.org/02fzn1g05', 'no_lang_code', 1, 'https://ror.org/02fzn1g05 Contipro (Czechia)'),
(119336, 'https://ror.org/05q0y0j38', 'en', 1, 'https://ror.org/05q0y0j38 Administración Federal de Aviación Federal Aviation Administration'),
(119337, 'https://ror.org/02yyszw94', 'en', 1, 'https://ror.org/02yyszw94 Satellite Broadcasting Authorization and Research Center äø€čˆ¬č²”å›£ę³•äŗŗę”¾é€ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£ć‚»ćƒ³ć‚æćƒ¼'),
(119338, 'https://ror.org/01mema083', 'en', 1, 'https://ror.org/01mema083 Emirates Aviation University Ų¬Ų§Ł…Ų¹Ų© Ų·ŁŠŲ±Ų§Ł† الامارات'),
(119339, 'https://ror.org/022wmtv37', 'en', 1, 'https://ror.org/022wmtv37 Crandall University'),
(119340, 'https://ror.org/01y07bp24', 'de', 1, 'https://ror.org/01y07bp24 VDEh-Betriebsforschungsinstitut'),
(119341, 'https://ror.org/05jr9m050', 'en', 1, 'https://ror.org/05jr9m050 Boston Health Care for the Homeless Program'),
(119342, 'https://ror.org/03hg53255', 'en', 1, 'https://ror.org/03hg53255 Conseil International de l''Exploration de la Mer International Council for the Exploration of the Sea'),
(119343, 'https://ror.org/0322vsx20', 'en', 1, 'https://ror.org/0322vsx20 Foundation for High Energy Accelerator Science å…¬ē›Šč²”å›£ę³•äŗŗćƒ»é«˜ć‚Øćƒćƒ«ć‚®ćƒ¼åŠ é€Ÿå™Øē§‘å­¦ē ”ē©¶å„ØåŠ±ä¼š'),
(119344, 'https://ror.org/00en39794', 'en', 1, 'https://ror.org/00en39794 KOBE Student Youth Center å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøå­¦ē”Ÿé’å¹“ć‚»ćƒ³ć‚æćƒ¼'),
(119345, 'https://ror.org/03z0jrc25', 'no_lang_code', 1, 'https://ror.org/03z0jrc25 Kracie (Japan) ć‚Æćƒ©ć‚·ć‚Øćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(119346, 'https://ror.org/04jsebv71', 'en', 1, 'https://ror.org/04jsebv71 Institute of Finance Management'),
(119347, 'https://ror.org/01bhz3v89', 'no', 1, 'https://ror.org/01bhz3v89 Biofokus'),
(119348, 'https://ror.org/05d5aq410', 'en', 1, 'https://ror.org/05d5aq410 JAPAN ENVIRONMENTAL MEASUREMENT and CHEMICAL ANALYSIS ASSOCIATION äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒęø¬å®šåˆ†ęžå”ä¼š'),
(119349, 'https://ror.org/042yy9v72', 'es', 1, 'https://ror.org/042yy9v72 Fundación Tecnológica Antonio de Arévalo'),
(119350, 'https://ror.org/01n54f818', 'en', 1, 'https://ror.org/01n54f818 Japan Book Publishers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę›øē±å‡ŗē‰ˆå”ä¼š'),
(119351, 'https://ror.org/04wtrzv91', 'en', 1, 'https://ror.org/04wtrzv91 Institute of Community Association Network äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æå”ä¼š'),
(119352, 'https://ror.org/0215n2163', 'no_lang_code', 1, 'https://ror.org/0215n2163 RadiaBeam Technologies (United States)'),
(119353, 'https://ror.org/00962x353', 'no_lang_code', 1, 'https://ror.org/00962x353 Luossavaara-Kiirunavaara Aktiebolag (Sweden)'),
(119354, 'https://ror.org/003rage82', 'en', 1, 'https://ror.org/003rage82 National-Louis University'),
(119355, 'https://ror.org/02myn8n47', 'en', 1, 'https://ror.org/02myn8n47 Todor Kableshkov University of Transport'),
(119356, 'https://ror.org/054v15h45', 'en', 1, 'https://ror.org/054v15h45 Japan Safe Driving Center ē‰¹åˆ„ę°‘é–“ę³•äŗŗč‡Ŗå‹•č»Šå®‰å…Øé‹č»¢ć‚»ćƒ³ć‚æćƒ¼'),
(119357, 'https://ror.org/00bm1k740', 'no_lang_code', 1, 'https://ror.org/00bm1k740 Dechra Pharmaceuticals (United Kingdom)'),
(119358, 'https://ror.org/02ecg3h97', 'en', 1, 'https://ror.org/02ecg3h97 ICFAI University, Dehradun'),
(119359, 'https://ror.org/057zeth62', 'en', 1, 'https://ror.org/057zeth62 Association of Musical Electronics Industry äø€čˆ¬ē¤¾å›£ę³•äŗŗéŸ³ę„½é›»å­äŗ‹ę„­å”ä¼š'),
(119360, 'https://ror.org/00f76ab84', 'no_lang_code', 1, 'https://ror.org/00f76ab84 Codexis (United States)'),
(119361, 'https://ror.org/02rh70c08', 'en', 1, 'https://ror.org/02rh70c08 Tokyo Federation of Deaf å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½č“č¦šéšœå®³č€…é€£ē›Ÿ'),
(119362, 'https://ror.org/04s68af23', 'en', 1, 'https://ror.org/04s68af23 Green River Community College'),
(119363, 'https://ror.org/003mejv54', 'en', 1, 'https://ror.org/003mejv54 The Japan Association of Chinese Cuisine å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äø­å›½ę–™ē†å”ä¼š'),
(119364, 'https://ror.org/02ve95t13', 'en', 1, 'https://ror.org/02ve95t13 Japan Research Industries and Industrial Technology Association äø€čˆ¬ē¤¾å›£ę³•äŗŗē ”ē©¶ē”£ę„­ćƒ»ē”£ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(119365, 'https://ror.org/04wggr048', 'en', 1, 'https://ror.org/04wggr048 National Centre for Integrative Oncology'),
(119366, 'https://ror.org/05ddbab52', 'en', 1, 'https://ror.org/05ddbab52 Poznan School of Logistics Wyższa Szkoła Logistyki'),
(119367, 'https://ror.org/03z1dtq82', 'en', 1, 'https://ror.org/03z1dtq82 Japan Auto-Body Industries Association, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»Šč»Šä½“å·„ę„­ä¼š'),
(119368, 'https://ror.org/00hfwa053', 'no_lang_code', 1, 'https://ror.org/00hfwa053 C4X Discovery (United Kingdom)'),
(119369, 'https://ror.org/03pzf1r57', 'es', 1, 'https://ror.org/03pzf1r57 Centro Universitario de TecnologĆ­a y Arte Digital University of Technology, Arts and Design'),
(119370, 'https://ror.org/015mg4834', 'no_lang_code', 1, 'https://ror.org/015mg4834 Dimagi (United States)'),
(119371, 'https://ror.org/052bz7812', 'fr', 1, 'https://ror.org/052bz7812 UniversitƩ Paris Dauphine-PSL'),
(119372, 'https://ror.org/03svrhp97', 'en', 1, 'https://ror.org/03svrhp97 National Rice Wheat and Barley Improvement Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ē±³éŗ¦ę”¹č‰Æå”ä¼š'),
(119373, 'https://ror.org/00t8zw306', 'en', 1, 'https://ror.org/00t8zw306 Japan Educational Exchanges and Services å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å›½éš›ę•™č‚²ę”Æę“å”ä¼š'),
(119374, 'https://ror.org/03qzmxn42', 'es', 1, 'https://ror.org/03qzmxn42 Sociedad EspaƱola de Cirugƭa PlƔstica Reparadora y EstƩtica'),
(119375, 'https://ror.org/0536tvg45', 'en', 1, 'https://ror.org/0536tvg45 Asahikawa Construction Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—­å·å»ŗčØ­ę„­å”ä¼š'),
(119376, 'https://ror.org/00w21x248', 'en', 1, 'https://ror.org/00w21x248 Administrative Agency for Osaka City Museums åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§é˜Ŗåø‚åšē‰©é¤Øę©Ÿę§‹'),
(119377, 'https://ror.org/01esz8d29', 'en', 1, 'https://ror.org/01esz8d29 San Beda College Alabang'),
(119378, 'https://ror.org/05q3g7p38', 'de', 1, 'https://ror.org/05q3g7p38 PƤdagogische Hochschule Salzburg University of Education Salzburg'),
(119379, 'https://ror.org/033qfx261', 'en', 1, 'https://ror.org/033qfx261 EADA Business School Escuela de Alta Dirección y Administración'),
(119380, 'https://ror.org/040823y46', 'no_lang_code', 1, 'https://ror.org/040823y46 Guger Technologies (Austria)'),
(119381, 'https://ror.org/032k6a629', 'en', 1, 'https://ror.org/032k6a629 FacultƩ d''art et design du massachusetts Massachusetts College of Art and Design'),
(119382, 'https://ror.org/0031x3y66', 'en', 1, 'https://ror.org/0031x3y66 Dai Nam University'),
(119383, 'https://ror.org/03cjabw52', 'es', 1, 'https://ror.org/03cjabw52 Institución Universitaria Bellas Artes y Ciencias de Bolívar'),
(119384, 'https://ror.org/00k4w9295', 'en', 1, 'https://ror.org/00k4w9295 Ghana Investment Fund for Electronic Communications');
INSERT INTO `rors` VALUES
(119385, 'https://ror.org/03wf8zj73', 'id', 1, 'https://ror.org/03wf8zj73 LIA University Universitas LIA'),
(119386, 'https://ror.org/00tmwya54', 'en', 1, 'https://ror.org/00tmwya54 L’Institut International de l’Eau de Stockholm Stockholm International Water Institute'),
(119387, 'https://ror.org/055r13e66', 'en', 1, 'https://ror.org/055r13e66 Association Of Precise SURVEY&APPLIED Technology å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęø¬é‡čŖæęŸ»ęŠ€č”“å”ä¼š'),
(119388, 'https://ror.org/011ryw527', 'en', 1, 'https://ror.org/011ryw527 Karl Kumm University'),
(119389, 'https://ror.org/05d9bwx91', 'no_lang_code', 1, 'https://ror.org/05d9bwx91 Rhodium Group (United States)'),
(119390, 'https://ror.org/024ew1n76', 'en', 1, 'https://ror.org/024ew1n76 Richmond, The American International University in London'),
(119391, 'https://ror.org/051dks184', 'en', 1, 'https://ror.org/051dks184 IMAGINE Studios'),
(119392, 'https://ror.org/03m67qp67', 'en', 1, 'https://ror.org/03m67qp67 Japanese Association of Dialysis Physicians å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é€ęžåŒ»ä¼š'),
(119393, 'https://ror.org/01v8yyz74', 'en', 1, 'https://ror.org/01v8yyz74 East African Health Research Commission'),
(119394, 'https://ror.org/04grkj883', 'en', 1, 'https://ror.org/04grkj883 Maharashtra University of Health Sciences'),
(119395, 'https://ror.org/041mjh419', 'en', 1, 'https://ror.org/041mjh419 The Univers Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒ¦ćƒ‹ćƒ™ćƒ¼ćƒ«č²”å›£'),
(119396, 'https://ror.org/0259fwx54', 'en', 1, 'https://ror.org/0259fwx54 ZB MED - Information Centre for Life Sciences ZBMED - Informationszentrum Lebenswissenschaften'),
(119397, 'https://ror.org/0038zh709', 'it', 1, 'https://ror.org/0038zh709 Consorzio per Valutazioni Biologiche e Farmacologiche'),
(119398, 'https://ror.org/04xkhhw36', 'en', 1, 'https://ror.org/04xkhhw36 University of Nebraska Conservation and Survey Division'),
(119399, 'https://ror.org/01t21ag29', 'no_lang_code', 1, 'https://ror.org/01t21ag29 Zintan University Ų¬Ų§Ł…Ų¹Ų© الزنتان'),
(119400, 'https://ror.org/02grspc61', 'no_lang_code', 1, 'https://ror.org/02grspc61 Hugging Face'),
(119401, 'https://ror.org/02hdqcv09', 'en', 1, 'https://ror.org/02hdqcv09 Jagannath Barooah University ą¦œą¦—ą¦Øą§ą¦Øą¦¾ą¦„ বৰুৱা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą§Ÿ'),
(119402, 'https://ror.org/02vvmw586', 'en', 1, 'https://ror.org/02vvmw586 State University of Economics and Technology Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ економіки і технологій'),
(119403, 'https://ror.org/02x402970', 'no_lang_code', 1, 'https://ror.org/02x402970 iPronics Programmable Photonics (Spain)'),
(119404, 'https://ror.org/00qghd717', 'en', 1, 'https://ror.org/00qghd717 Norwegian Labour and Welfare Administration'),
(119405, 'https://ror.org/01j8xkf47', 'en', 1, 'https://ror.org/01j8xkf47 Battery Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę± å·„ę„­ä¼š'),
(119406, 'https://ror.org/03dax8y07', 'en', 1, 'https://ror.org/03dax8y07 Japan Pork Producers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é¤Šč±šå”ä¼š'),
(119407, 'https://ror.org/02c64hn09', 'en', 1, 'https://ror.org/02c64hn09 Japan Mining Engineering & Training Cente äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›č³‡ęŗé–‹ē™ŗē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(119408, 'https://ror.org/02mbmc608', 'no_lang_code', 1, 'https://ror.org/02mbmc608 Eisermann & AvendaƱo Bird Studies Guatemala Eisermann & AvendaƱo Bird Studies Guatemala (Guatemala)'),
(119409, 'https://ror.org/050wn8m29', 'en', 1, 'https://ror.org/050wn8m29 Swedish Center Foundation äø€čˆ¬č²”å›£ę³•äŗŗć‚¹ć‚¦ć‚§ćƒ¼ćƒ‡ćƒ³äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(119410, 'https://ror.org/0436er088', 'en', 1, 'https://ror.org/0436er088 Aichi Construction Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę„›ēŸ„ēœŒå»ŗčØ­ę„­å”ä¼š'),
(119411, 'https://ror.org/0023q4k34', 'en', 1, 'https://ror.org/0023q4k34 Trilateral Research & Consulting'),
(119412, 'https://ror.org/05e818p88', 'en', 1, 'https://ror.org/05e818p88 Building Maintenance & Management Center äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰äæå…Øć‚»ćƒ³ć‚æćƒ¼'),
(119413, 'https://ror.org/00tkw8w21', 'en', 1, 'https://ror.org/00tkw8w21 Yamaguchi Prefectural Mental Health Welfare Center å±±å£ēœŒē²¾ē„žäæå„ē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼'),
(119414, 'https://ror.org/0568jvs10', 'en', 1, 'https://ror.org/0568jvs10 Sphinx University'),
(119415, 'https://ror.org/03ppkyp25', 'en', 1, 'https://ror.org/03ppkyp25 Center for Studies of Holocaust and Religious Minorities'),
(119416, 'https://ror.org/01gpt0r18', 'no_lang_code', 1, 'https://ror.org/01gpt0r18 Dongwon F&B Co., Ltd. Dongwon F&B Co., Ltd. (South Korea) Dongwon ė™ģ›F&B'),
(119417, 'https://ror.org/05hsp8041', 'no_lang_code', 1, 'https://ror.org/05hsp8041 PatientsLikeMe (United States)'),
(119418, 'https://ror.org/02pwvf650', 'en', 1, 'https://ror.org/02pwvf650 FEU-Dr. Nicanor Reyes Medical Foundation'),
(119419, 'https://ror.org/037nzbf45', 'en', 1, 'https://ror.org/037nzbf45 Joaan Bin Jassim Academy for Defence Studies'),
(119420, 'https://ror.org/018r4ve11', 'en', 1, 'https://ror.org/018r4ve11 Miyake Medical Institute Group äø€čˆ¬č²”å›£ę³•äŗŗäø‰å®…åŒ»å­¦ē ”ē©¶ę‰€'),
(119421, 'https://ror.org/0115e6y41', 'en', 1, 'https://ror.org/0115e6y41 Japan Society Of Aesthetic Surgery äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē¾Žå®¹å¤–ē§‘å­¦ä¼š'),
(119422, 'https://ror.org/053ttjx10', 'en', 1, 'https://ror.org/053ttjx10 Institute of Development Studies Kolkata'),
(119423, 'https://ror.org/054hbkf39', 'pt', 1, 'https://ror.org/054hbkf39 Centro UniversitƔrio Carioca'),
(119424, 'https://ror.org/01hkcwc36', 'fr', 1, 'https://ror.org/01hkcwc36 Institut Technique de l''Arboriculture FruitiĆØre et de la Vigne Technical Institute of Fruit Arboriculture and Vine المعهد Ų§Ł„ŲŖŁ‚Ł†ŁŠ لزراعة Ų£Ų“Ų¬Ų§Ų± Ų§Ł„ŁŁˆŲ§ŁƒŁ‡ و Ų§Ł„ŁƒŲ±ŁˆŁ…'),
(119425, 'https://ror.org/03gkdzy47', 'en', 1, 'https://ror.org/03gkdzy47 Commission communautaire franƧaise French Community Commission'),
(119426, 'https://ror.org/01gxtsk48', 'en', 1, 'https://ror.org/01gxtsk48 Japan Society of Photogrammetry and Remote Sensing äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†™ēœŸęø¬é‡å­¦ä¼š'),
(119427, 'https://ror.org/03psq8n05', 'en', 1, 'https://ror.org/03psq8n05 The Ethiopian Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Øćƒć‚Ŗćƒ”ć‚¢å”ä¼š'),
(119428, 'https://ror.org/00kxvc646', 'en', 1, 'https://ror.org/00kxvc646 Bishop Heber College ą®Ŗą®æą®·ą®ŖąÆ ą®¹ąÆ€ą®Ŗą®°ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(119429, 'https://ror.org/008ej6p62', 'en', 1, 'https://ror.org/008ej6p62 Japan Society of Refrigerating and Air Conditioning Engineers å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡ē©ŗčŖæå­¦ä¼š'),
(119430, 'https://ror.org/03sd6kg46', 'no_lang_code', 1, 'https://ror.org/03sd6kg46 Supernus Pharmaceuticals (United States)'),
(119431, 'https://ror.org/01tjrd904', 'it', 1, 'https://ror.org/01tjrd904 Autonomous Region of Friuli Venezia Giulia Regione Autonoma Friuli Venezia Giulia'),
(119432, 'https://ror.org/0515xy368', 'pt', 1, 'https://ror.org/0515xy368 Instituto Nacional de Gestão do Território National Institute of Territorial Management'),
(119433, 'https://ror.org/03krj9j49', 'en', 1, 'https://ror.org/03krj9j49 Suginami Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę‰äø¦åŒŗåŒ»åø«ä¼š'),
(119434, 'https://ror.org/04rtbhg57', 'en', 1, 'https://ror.org/04rtbhg57 Japan Industrial Training Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£ę„­čØ“ē·“å”ä¼š'),
(119435, 'https://ror.org/01y8d6z34', 'en', 1, 'https://ror.org/01y8d6z34 MVN University'),
(119436, 'https://ror.org/042qjbt91', 'en', 1, 'https://ror.org/042qjbt91 Japan Contractors Association of Traffic Signs and Lane Markings äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½é“č·ÆęØ™č­˜ćƒ»ęØ™ē¤ŗę„­å”ä¼š'),
(119437, 'https://ror.org/01ksved11', 'en', 1, 'https://ror.org/01ksved11 The Japan Association of Certified Care Workers å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ä»‹č­·ē¦ē„‰å£«ä¼š'),
(119438, 'https://ror.org/05q186127', 'en', 1, 'https://ror.org/05q186127 Japan Johkasou System Association äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ„åŒ–ę§½ć‚·ć‚¹ćƒ†ćƒ å”ä¼š'),
(119439, 'https://ror.org/017w8ey21', 'en', 1, 'https://ror.org/017w8ey21 Shimane Prefectural Nuclear Power Environmental Center å³¶ę ¹ēœŒåŽŸå­åŠ›ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(119440, 'https://ror.org/05w3cd862', 'en', 1, 'https://ror.org/05w3cd862 Cottey College'),
(119441, 'https://ror.org/025syxp62', 'en', 1, 'https://ror.org/025syxp62 Geographic Institute Agustƭn Codazzi Instituto GeogrƔfico Agustƭn Codazzi'),
(119442, 'https://ror.org/04843y708', 'pt', 1, 'https://ror.org/04843y708 Agronomic Research Institute Instituto de Investigação Agronómica'),
(119443, 'https://ror.org/00nanf268', 'no_lang_code', 1, 'https://ror.org/00nanf268 Natural Remedies (India)'),
(119444, 'https://ror.org/01tt06d37', 'en', 1, 'https://ror.org/01tt06d37 The People''s Hospital Medical Group of Xiangzhou Zhuhai ē ęµ·åø‚é¦™ę“²åŒŗäŗŗę°‘åŒ»é™¢åŒ»ē–—é›†å›¢'),
(119445, 'https://ror.org/02fwtv659', 'en', 1, 'https://ror.org/02fwtv659 Herzing University'),
(119446, 'https://ror.org/02ffnqv03', 'en', 1, 'https://ror.org/02ffnqv03 Asociația Profesională a Kinetoterapeuților și Terapeuților Manuali ā€Medkineticaā€ din Republica Moldova Professional Association of Kinetotherapists and Manual Therapists "MEDKINETICA" from the Republic of Moldova'),
(119447, 'https://ror.org/03y0qc033', 'fr', 1, 'https://ror.org/03y0qc033 Institut National des Sciences AppliquƩes Centre Val de Loire'),
(119448, 'https://ror.org/04g5vmc79', 'en', 1, 'https://ror.org/04g5vmc79 Proessional University of Beauty & Wellness ćƒ“ćƒ„ćƒ¼ćƒ†ć‚£&ć‚¦ć‚§ćƒ«ćƒć‚¹å°‚é–€č·å¤§å­¦'),
(119449, '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'),
(119450, 'https://ror.org/00z2vfv58', 'en', 1, 'https://ror.org/00z2vfv58 HÔskóli Vestfjarða University Centre of the Westfjords'),
(119451, 'https://ror.org/03yhc6593', 'en', 1, 'https://ror.org/03yhc6593 Ateneo de Zamboanga University Pamantasang Ateneo de Zamboanga'),
(119452, 'https://ror.org/05mpek259', 'en', 1, 'https://ror.org/05mpek259 Welfare And Medical Service Agency ē‹¬ē«‹č”Œę”æę³•äŗŗē¦ē„‰åŒ»ē™‚ę©Ÿę§‹'),
(119453, 'https://ror.org/02kgjkj09', 'no_lang_code', 1, 'https://ror.org/02kgjkj09 Vividion Therapeutics (United States)'),
(119454, 'https://ror.org/01p9aw348', 'no_lang_code', 1, 'https://ror.org/01p9aw348 Suven Life Sciences (India)'),
(119455, 'https://ror.org/0533vxh11', 'no_lang_code', 1, 'https://ror.org/0533vxh11 RISC Software (Austria)'),
(119456, 'https://ror.org/05x132d10', 'en', 1, 'https://ror.org/05x132d10 Japan Overseas Cooperative Association å…¬ē›Šē¤¾å›£ę³•äŗŗé’å¹“ęµ·å¤–å”åŠ›å”ä¼š'),
(119457, 'https://ror.org/04cte7x29', 'no_lang_code', 1, 'https://ror.org/04cte7x29 Randox (United Kingdom)'),
(119458, 'https://ror.org/00n178f58', 'en', 1, 'https://ror.org/00n178f58 South Plains College'),
(119459, 'https://ror.org/04d2nkq36', 'en', 1, 'https://ror.org/04d2nkq36 Kazakhstan Institute of Standardization and Metrology ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ станГартизации Šø метрологии ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ ŃŃ‚Š°Š½Š“Š°Ń€Ń‚Ń‚Š°Ńƒ және Š¼ŠµŃ‚Ń€Š¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(119460, 'https://ror.org/01sfc5174', 'en', 1, 'https://ror.org/01sfc5174 Research Foundation for the State University of New York'),
(119461, 'https://ror.org/01esm2098', 'en', 1, 'https://ror.org/01esm2098 Vaccine Safety Initiative'),
(119462, 'https://ror.org/01z3jep38', 'en', 1, 'https://ror.org/01z3jep38 German Cement Works Association Verein Deutscher Zementwerke'),
(119463, 'https://ror.org/042rxfh43', 'no_lang_code', 1, 'https://ror.org/042rxfh43 Seeqc (United States)'),
(119464, 'https://ror.org/02bvdvz71', 'en', 1, 'https://ror.org/02bvdvz71 Stamford International University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ą¹ąøŖąø•ąø”ąøŸąø­ąø£ą¹Œąø”'),
(119465, 'https://ror.org/0022yfe36', 'en', 1, 'https://ror.org/0022yfe36 Lviv National Musical Academy named after Mykola Lysenko Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŃƒŠ·ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń імені М. Š’. Лисенка'),
(119466, 'https://ror.org/003x31543', 'es', 1, 'https://ror.org/003x31543 Instituto Dominicano de Evaluación e Investigación de la Calidad Educativa'),
(119467, 'https://ror.org/03gbh6z06', 'en', 1, 'https://ror.org/03gbh6z06 Kyiv Scientific Research Institute of Forensic Expertise of the Ministry of Justice of Ukraine ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃƒŠ“Š¾Š²ŠøŃ… експертиз ŠœŃ–ністерства ŃŽŃŃ‚ŠøŃ†Ń–Ń— України'),
(119468, 'https://ror.org/03vn45h70', 'en', 1, 'https://ror.org/03vn45h70 Japan Electric Cable Technology Centre äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ē·šē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(119469, 'https://ror.org/01etc5190', 'en', 1, 'https://ror.org/01etc5190 Medium and Small Business Research Institute å…¬ē›Šē¤¾å›£ę³•äŗŗäø­å°ä¼ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(119470, 'https://ror.org/04g1gys64', 'en', 1, 'https://ror.org/04g1gys64 Japan Association For Metrology Promotion äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čØˆé‡ęŒÆčˆˆå”ä¼š'),
(119471, 'https://ror.org/00m6fsq13', 'en', 1, 'https://ror.org/00m6fsq13 Vaagdevi College of Engineering'),
(119472, 'https://ror.org/03djmvy73', 'en', 1, 'https://ror.org/03djmvy73 Mwanza Intervention Trials Unit'),
(119473, 'https://ror.org/00q4tes89', 'en', 1, 'https://ror.org/00q4tes89 Boston Architectural College'),
(119474, 'https://ror.org/04jhcmb20', 'en', 1, 'https://ror.org/04jhcmb20 Kumamoto Gakuen University ē†Šęœ¬å­¦åœ’å¤§å­¦'),
(119475, 'https://ror.org/026tem613', 'en', 1, 'https://ror.org/026tem613 Lyrasis'),
(119476, 'https://ror.org/02cyz2665', 'en', 1, 'https://ror.org/02cyz2665 Advanced Cogeneration and Energy Utilization Center JAPAN äø€čˆ¬č²”å›£ę³•äŗŗć‚³ćƒ¼ć‚øć‚§ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ćƒ»ć‚Øćƒćƒ«ć‚®ćƒ¼é«˜åŗ¦åˆ©ē”Øć‚»ćƒ³ć‚æćƒ¼'),
(119477, 'https://ror.org/024mpsc65', 'en', 1, 'https://ror.org/024mpsc65 Nomura Foundation å…¬ē›Šč²”å›£ę³•äŗŗé‡Žę‘č²”å›£'),
(119478, 'https://ror.org/04k1zvt96', 'en', 1, 'https://ror.org/04k1zvt96 Research Association of Refinery Integration for Group-Operation ēŸ³ę²¹ć‚³ćƒ³ćƒ“ćƒŠćƒ¼ćƒˆé«˜åŗ¦ēµ±åˆé‹å–¶ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(119479, 'https://ror.org/007pdwz56', 'en', 1, 'https://ror.org/007pdwz56 The Institute for Public Policy in KANAGAWA Prefecture å…¬ē›Šē¤¾å›£ę³•äŗŗē„žå„ˆå·ēœŒåœ°ę–¹č‡Ŗę²»ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(119480, 'https://ror.org/027pjy323', 'en', 1, 'https://ror.org/027pjy323 Guangxi Hospital Division of The First Affiliated Hospital, Sun Yat-sen University äø­å±±å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢å¹æč„æåŒ»é™¢'),
(119481, 'https://ror.org/008xs7w12', 'en', 1, 'https://ror.org/008xs7w12 Shafagh Institute of Higher Education'),
(119482, 'https://ror.org/02axgft05', 'en', 1, 'https://ror.org/02axgft05 Global Water Recycling and Reuse Solution Technology Research & Association ęµ·å¤–ę°“å¾Ŗē’°ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(119483, 'https://ror.org/04ytb1d39', 'en', 1, 'https://ror.org/04ytb1d39 Autism Society Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗé–‰ē—‡å”ä¼š'),
(119484, 'https://ror.org/020bcb226', 'en', 1, 'https://ror.org/020bcb226 Oakton Community College'),
(119485, 'https://ror.org/05r2zbj74', 'en', 1, 'https://ror.org/05r2zbj74 Professional University of Electric Mobility Systems é›»å‹•ćƒ¢ćƒ“ćƒŖćƒ†ć‚£ć‚·ć‚¹ćƒ†ćƒ å°‚é–€č·å¤§å­¦'),
(119486, 'https://ror.org/01k79ja28', 'pt', 1, 'https://ror.org/01k79ja28 Instituto Estadual do CƩrebro Paulo Niemeyer'),
(119487, 'https://ror.org/04r377374', 'en', 1, 'https://ror.org/04r377374 Society for Basic Urologic Research, Inc.'),
(119488, 'https://ror.org/00zpffn93', 'en', 1, 'https://ror.org/00zpffn93 Kyushu Island Alliance of ICT äø€čˆ¬ē¤¾å›£ę³•äŗŗä¹å·žćƒ†ćƒ¬ć‚³ćƒ ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(119489, 'https://ror.org/00jcw6451', 'es', 1, 'https://ror.org/00jcw6451 Universidad Madero'),
(119490, 'https://ror.org/05cff1n73', 'es', 1, 'https://ror.org/05cff1n73 Escuela Superior Tecnológica de Artes Débora Arango'),
(119491, 'https://ror.org/04587re88', 'en', 1, 'https://ror.org/04587re88 Japan Chemical Industry Ecology-Toxicology & Information Center äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ–å­¦ē‰©č³Ŗå®‰å…Øćƒ»ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(119492, 'https://ror.org/05xptf671', 'de', 1, 'https://ror.org/05xptf671 Kurt-Schwabe-Institut für Mess- und Sensortechnik Meinsberg'),
(119493, 'https://ror.org/03d4ztk89', 'no_lang_code', 1, 'https://ror.org/03d4ztk89 Corbion (Netherlands)'),
(119494, 'https://ror.org/04zd2q353', 'en', 1, 'https://ror.org/04zd2q353 Muzeum uměnƭ Olomouc Museum of Art'),
(119495, 'https://ror.org/00x817z51', 'en', 1, 'https://ror.org/00x817z51 Society for Applied Studies'),
(119496, 'https://ror.org/029tgyg03', 'en', 1, 'https://ror.org/029tgyg03 Sunkokai Medical Corp.Koga Community Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé§æē”²ä¼šć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£ćƒ¼ćƒ›ć‚¹ćƒ”ć‚æćƒ«ē”²č³€ē—…é™¢'),
(119497, 'https://ror.org/012c94717', 'en', 1, 'https://ror.org/012c94717 Shikoku Industry & Technology Promotion Center äø€čˆ¬č²”å›£ę³•äŗŗå››å›½ē”£ę„­ćƒ»ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(119498, 'https://ror.org/02e0cj066', 'no_lang_code', 1, 'https://ror.org/02e0cj066 Adeka (Japan) ę Ŗå¼ä¼šē¤¾ADEKA'),
(119499, 'https://ror.org/044qbza93', 'en', 1, 'https://ror.org/044qbza93 Care Work Foundation å…¬ē›Šč²”å›£ę³•äŗŗä»‹č­·åŠ“åƒå®‰å®šć‚»ćƒ³ć‚æćƒ¼'),
(119500, 'https://ror.org/02c191v59', 'en', 1, 'https://ror.org/02c191v59 Orpheus Institute Orpheus Instituut'),
(119501, 'https://ror.org/01nq34e56', 'pt', 1, 'https://ror.org/01nq34e56 Instituto Nacional de Investigação Pesqueira National Institute for Fisheries and Marine Research'),
(119502, 'https://ror.org/05f9mkq61', 'en', 1, 'https://ror.org/05f9mkq61 Wonderful Aging Club å…¬ē›Šē¤¾å›£ę³•äŗŗé•·åÆæē¤¾ä¼šę–‡åŒ–å”ä¼š'),
(119503, 'https://ror.org/01d9xyz57', 'en', 1, 'https://ror.org/01d9xyz57 Paul Smith''s College'),
(119504, 'https://ror.org/01ehgvm85', 'en', 1, 'https://ror.org/01ehgvm85 ECAM School of Engineering'),
(119505, 'https://ror.org/00xas1432', 'en', 1, 'https://ror.org/00xas1432 Mildmay Uganda'),
(119506, 'https://ror.org/02kz5f065', 'en', 1, 'https://ror.org/02kz5f065 Medicine Hat College'),
(119507, 'https://ror.org/02pj7we23', 'pt', 1, 'https://ror.org/02pj7we23 Centro UniversitÔrio Fundação Santo André'),
(119508, 'https://ror.org/03eewsq17', 'no_lang_code', 1, 'https://ror.org/03eewsq17 DNEG (United Kingdom)'),
(119509, 'https://ror.org/039cf7410', 'en', 1, 'https://ror.org/039cf7410 Japanese Society for Food Hygiene and Safety å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“č”›ē”Ÿå­¦ä¼š'),
(119510, 'https://ror.org/00g9kgt66', 'en', 1, 'https://ror.org/00g9kgt66 Greater-Kanto Industrial Advancement Center č²”å›£ę³•äŗŗåŗƒåŸŸé–¢ę±åœē”£ę„­ę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(119511, 'https://ror.org/04w574v35', 'en', 1, 'https://ror.org/04w574v35 Japan Plasterers'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·¦å®˜ę„­ēµ„åˆé€£åˆä¼š'),
(119512, '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'),
(119513, 'https://ror.org/017yczc37', 'en', 1, 'https://ror.org/017yczc37 Society for Family Health Nigeria'),
(119514, 'https://ror.org/03n0d3a30', 'en', 1, 'https://ror.org/03n0d3a30 Dallas County'),
(119515, 'https://ror.org/04bz0e642', 'no_lang_code', 1, 'https://ror.org/04bz0e642 Sheikh Bahaei University دانؓگاه ؓیخ ŲØŁ‡Ų§ŪŒŪŒ'),
(119516, 'https://ror.org/0596kf428', 'pt', 1, 'https://ror.org/0596kf428 Instituto Nacional de Meteorologia e GeofĆ­sica National Institute of Meteorology and Geophysics'),
(119517, 'https://ror.org/00p3g3670', 'no_lang_code', 1, 'https://ror.org/00p3g3670 OSE Immunotherapeutics (France)'),
(119518, 'https://ror.org/00rm8g048', 'no_lang_code', 1, 'https://ror.org/00rm8g048 Bharat Biotech (India)'),
(119519, 'https://ror.org/043s7kq40', 'no_lang_code', 1, 'https://ror.org/043s7kq40 Kingfa (China)'),
(119520, 'https://ror.org/037g26051', 'en', 1, 'https://ror.org/037g26051 Advanced Visual Communication Center äø€čˆ¬č²”å›£ę³•äŗŗé«˜åŗ¦ę˜ åƒęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(119521, 'https://ror.org/05gx96t70', 'en', 1, 'https://ror.org/05gx96t70 Japan Society of Electrical Machining Engineers äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—åŠ å·„å­¦ä¼š'),
(119522, 'https://ror.org/01fhg5j51', 'es', 1, 'https://ror.org/01fhg5j51 Fundación Docente SECPRE'),
(119523, 'https://ror.org/03v76x132', 'en', 1, 'https://ror.org/03v76x132 Universidad Yale Yale University'),
(119524, 'https://ror.org/04dhst662', 'en', 1, 'https://ror.org/04dhst662 Kanto Electrical Safety Inspection Association äø€čˆ¬č²”å›£ę³•äŗŗé–¢ę±é›»ę°—äæå®‰å”ä¼š'),
(119525, 'https://ror.org/014paee57', 'en', 1, 'https://ror.org/014paee57 THE Japan Thailand Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚æć‚¤å”ä¼š'),
(119526, 'https://ror.org/03gzq6595', 'no_lang_code', 1, 'https://ror.org/03gzq6595 Nextworks (Italy)'),
(119527, 'https://ror.org/055mtzj84', 'en', 1, 'https://ror.org/055mtzj84 Abdul Ahad Azad Memorial Degree College'),
(119528, 'https://ror.org/01702tp02', 'en', 1, 'https://ror.org/01702tp02 Chugoku Industrial Innovation Center å…¬ē›Šč²”å›£ę³•äŗŗć”ć‚…ć†ć”ćē”£ę„­å‰µé€ ć‚»ćƒ³ć‚æćƒ¼'),
(119529, 'https://ror.org/01vaj9161', 'no_lang_code', 1, 'https://ror.org/01vaj9161 Church & Dwight (United States)'),
(119530, 'https://ror.org/0091xv072', 'no_lang_code', 1, 'https://ror.org/0091xv072 Eramet (France)'),
(119531, 'https://ror.org/0438t2p07', 'en', 1, 'https://ror.org/0438t2p07 Illinois State Geological Survey'),
(119532, 'https://ror.org/010w37e28', 'en', 1, 'https://ror.org/010w37e28 Ghana Atomic Energy Commission'),
(119533, 'https://ror.org/045hyh860', 'en', 1, 'https://ror.org/045hyh860 Laguna College of Business and Arts'),
(119534, 'https://ror.org/02sbj8547', 'en', 1, 'https://ror.org/02sbj8547 Waynesburg University'),
(119535, 'https://ror.org/03s0qp812', 'en', 1, 'https://ror.org/03s0qp812 Okinawa Shimatate Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę²–ēø„ć—ć¾ćŸć¦å”ä¼š'),
(119536, 'https://ror.org/03wq3ma67', 'en', 1, 'https://ror.org/03wq3ma67 Magdi Yacoub Heart Foundation Ł…Ų¤Ų³Ų³Ų© مجدى ŁŠŲ¹Ł‚ŁˆŲØ للقلب'),
(119537, 'https://ror.org/01rjygp02', 'en', 1, 'https://ror.org/01rjygp02 Japan Structural Consultants Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ę§‹é€ ęŠ€č”“č€…å”ä¼š'),
(119538, 'https://ror.org/019ae2j05', 'en', 1, 'https://ror.org/019ae2j05 Save the Elephants'),
(119539, 'https://ror.org/05mhhk279', 'en', 1, 'https://ror.org/05mhhk279 Information and Library Network'),
(119540, 'https://ror.org/02xmd8q53', 'en', 1, 'https://ror.org/02xmd8q53 North Carolina Department of Transportation'),
(119541, 'https://ror.org/00r9wsd64', 'en', 1, 'https://ror.org/00r9wsd64 Florida State College at Jacksonville'),
(119542, 'https://ror.org/03y3v2a89', 'en', 1, 'https://ror.org/03y3v2a89 Oklahoma Geological Survey'),
(119543, 'https://ror.org/02p8rkx70', 'en', 1, 'https://ror.org/02p8rkx70 Foundation for Orthopaedic Research and Education'),
(119544, 'https://ror.org/014dtj905', 'es', 1, 'https://ror.org/014dtj905 Universidad Pedagógica de El Salvador'),
(119545, 'https://ror.org/005cz3t21', 'en', 1, 'https://ror.org/005cz3t21 Research and Development Partnership for Next Generation Technology of Marine Resources Survey ę¬”äø–ä»£ęµ·ę“‹č³‡ęŗčŖæęŸ»ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(119546, 'https://ror.org/0231n7e68', 'no_lang_code', 1, 'https://ror.org/0231n7e68 Apellis Pharmaceuticals (United States)'),
(119547, 'https://ror.org/04z5c1995', 'it', 1, 'https://ror.org/04z5c1995 Istituto di Montecatone, Ospedale di Riabilitazione'),
(119548, 'https://ror.org/053p7mr76', 'no_lang_code', 1, 'https://ror.org/053p7mr76 Animalia (Norway)'),
(119549, 'https://ror.org/012cymk87', 'en', 1, 'https://ror.org/012cymk87 Kitakyushu International Association å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ä¹å·žå›½éš›äŗ¤ęµå”ä¼š'),
(119550, 'https://ror.org/02e4yj858', 'en', 1, 'https://ror.org/02e4yj858 Japan Technology Research Association of Artifical Photosynthetic Chemical Process äŗŗå·„å…‰åˆęˆåŒ–å­¦ćƒ—ćƒ­ć‚»ć‚¹ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(119551, 'https://ror.org/02bfxj795', 'no_lang_code', 1, 'https://ror.org/02bfxj795 Halla Visteon Climate Control (Czechia)'),
(119552, 'https://ror.org/02t7d0y55', 'en', 1, 'https://ror.org/02t7d0y55 Japan Transport Cooperation Association äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–é‹č¼øå”åŠ›å”ä¼š'),
(119553, 'https://ror.org/03bqhc746', 'en', 1, 'https://ror.org/03bqhc746 Keystone College'),
(119554, 'https://ror.org/01y0jpb32', 'en', 1, 'https://ror.org/01y0jpb32 Tallinn Health Care College Tallinna Tervishoiu Korgkool'),
(119555, 'https://ror.org/05tyg7441', 'en', 1, 'https://ror.org/05tyg7441 Japan Cotton Promotion Institute äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē¶æę„­ęŒÆčˆˆä¼š'),
(119556, 'https://ror.org/046bfkz44', 'it', 1, 'https://ror.org/046bfkz44 Cefriel'),
(119557, 'https://ror.org/05kefp559', 'en', 1, 'https://ror.org/05kefp559 Niagara Health System'),
(119558, 'https://ror.org/007vdx129', 'hr', 1, 'https://ror.org/007vdx129 University of Applied Sciences RRiF VeleučiliŔte RRiF'),
(119559, 'https://ror.org/0033z1132', 'en', 1, 'https://ror.org/0033z1132 Company of Biologists'),
(119560, 'https://ror.org/00zda8x95', 'en', 1, 'https://ror.org/00zda8x95 Unity College'),
(119561, 'https://ror.org/02jgqwc20', 'en', 1, 'https://ror.org/02jgqwc20 Imperial College London Diabetes Centre'),
(119562, 'https://ror.org/02spway15', 'en', 1, 'https://ror.org/02spway15 Francisco Gavidia University Universidad Francisco Gavidia'),
(119563, 'https://ror.org/01zcmnc43', 'no_lang_code', 1, 'https://ror.org/01zcmnc43 MeMed (Israel)'),
(119564, 'https://ror.org/00mzdcr22', 'no_lang_code', 1, 'https://ror.org/00mzdcr22 Giner (United States)'),
(119565, 'https://ror.org/027n5mm74', 'en', 1, 'https://ror.org/027n5mm74 Dr Emilio B Espinosa Sr Memorial State College of Agriculture and Technology'),
(119566, 'https://ror.org/02fstjp34', 'en', 1, 'https://ror.org/02fstjp34 Hochschule für Künste Bremen University of the Arts Bremen'),
(119567, 'https://ror.org/05bznkw77', 'fr', 1, 'https://ror.org/05bznkw77 BruyĆØre'),
(119568, 'https://ror.org/04ajm8b74', 'en', 1, 'https://ror.org/04ajm8b74 Japan Institute for Promoting Invention and Innovation å…¬ē›Šē¤¾å›£ę³•äŗŗē™ŗę˜ŽęŽØé€²å”ä¼š'),
(119569, 'https://ror.org/02k5d5750', 'en', 1, 'https://ror.org/02k5d5750 Forest Management Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęž—ę„­ēµŒå–¶č€…å”ä¼š'),
(119570, 'https://ror.org/05ry1ds25', 'id', 1, 'https://ror.org/05ry1ds25 Universitas Prof Dr Hafiz MPH'),
(119571, 'https://ror.org/041pfpb15', 'en', 1, 'https://ror.org/041pfpb15 RiksantikvarieƤmbetet Swedish National Heritage Board Valtion antikviteettivirasto'),
(119572, 'https://ror.org/04hv4eh07', 'en', 1, 'https://ror.org/04hv4eh07 Royal Society for the Prevention of Cruelty to Animals'),
(119573, 'https://ror.org/00a4nhr72', 'en', 1, 'https://ror.org/00a4nhr72 TrĘ°į»ng ĐẔi hį»c KhĆ”nh Hòa University of Khanh Hoa'),
(119574, 'https://ror.org/05cwtbp67', 'en', 1, 'https://ror.org/05cwtbp67 ITO Foundation for International Education Exchange å…¬ē›Šč²”å›£ę³•äŗŗä¼Šč—¤å›½éš›ę•™č‚²äŗ¤ęµč²”å›£'),
(119575, 'https://ror.org/02r28hc23', 'en', 1, 'https://ror.org/02r28hc23 Egyptian Space Agency ŁˆŁƒŲ§Ł„Ų© الفضاؔ Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(119576, 'https://ror.org/03vcp9d79', 'en', 1, 'https://ror.org/03vcp9d79 Botswana Institute for Development Policy Analysis'),
(119577, 'https://ror.org/03y95vf10', 'en', 1, 'https://ror.org/03y95vf10 National Library of Russia Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń библиотека'),
(119578, 'https://ror.org/04fyzqj08', 'en', 1, 'https://ror.org/04fyzqj08 The Visualization Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗåÆč¦–åŒ–ęƒ…å ±å­¦ä¼š'),
(119579, 'https://ror.org/00x6bxz91', 'no_lang_code', 1, 'https://ror.org/00x6bxz91 Companhia SiderĆŗrgica Nacional (Brazil)'),
(119580, 'https://ror.org/04k1wen02', 'id', 1, 'https://ror.org/04k1wen02 Universitas Muslim Buton'),
(119581, 'https://ror.org/016q5ye28', 'en', 1, 'https://ror.org/016q5ye28 Japan Flying Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é£›č”Œé€£ē›Ÿ'),
(119582, 'https://ror.org/02pvebn16', 'en', 1, 'https://ror.org/02pvebn16 Mutare Polytechnic'),
(119583, 'https://ror.org/042xmab38', 'en', 1, 'https://ror.org/042xmab38 Institute for Educational Planning and Administration'),
(119584, 'https://ror.org/01kzbqm05', 'ca', 1, 'https://ror.org/01kzbqm05 Centre d''Esclerosi MĆŗltiple de Catalunya'),
(119585, 'https://ror.org/03dscga50', 'en', 1, 'https://ror.org/03dscga50 Austrian National Library Ɩsterreichische Nationalbibliothek'),
(119586, 'https://ror.org/05y5qmm69', 'en', 1, 'https://ror.org/05y5qmm69 Heritage University'),
(119587, 'https://ror.org/041hzs681', 'en', 1, 'https://ror.org/041hzs681 Chuncheon National University of Education ģ¶˜ģ²œźµģœ”ėŒ€ķ•™źµ'),
(119588, 'https://ror.org/00nxhsa79', 'pt', 1, 'https://ror.org/00nxhsa79 Centro UniversitÔrio da Fundação de Ensino OctÔvio Bastos'),
(119589, 'https://ror.org/02197kx55', 'en', 1, 'https://ror.org/02197kx55 Japan Gas Appliances Inspection Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¬ć‚¹ę©Ÿå™Øę¤œęŸ»å”ä¼š'),
(119590, 'https://ror.org/03a5tyh47', 'no_lang_code', 1, 'https://ror.org/03a5tyh47 PersonGen (China)'),
(119591, 'https://ror.org/02qv02186', 'en', 1, 'https://ror.org/02qv02186 Water Research Commission'),
(119592, 'https://ror.org/04s04em45', 'en', 1, 'https://ror.org/04s04em45 Defiance College'),
(119593, 'https://ror.org/052ndvg69', 'en', 1, 'https://ror.org/052ndvg69 Indian Institute of Information Technology Senapati, Manipur'),
(119594, 'https://ror.org/04ms6ba24', 'en', 1, 'https://ror.org/04ms6ba24 Sea Turtle Asociation of Japan ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ć‚¦ćƒŸć‚¬ćƒ”å”č­°ä¼š'),
(119595, 'https://ror.org/007nkhk25', 'es', 1, 'https://ror.org/007nkhk25 Polytechnic University Taiwan - Paraguay Universidad PolitƩcnica TaiwƔn Paraguay'),
(119596, 'https://ror.org/01vecej39', 'en', 1, 'https://ror.org/01vecej39 Japan Blood Products Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č”€ę¶²č£½å‰¤å”ä¼š'),
(119597, 'https://ror.org/03xvmxn09', 'en', 1, 'https://ror.org/03xvmxn09 Mills Memorial Hospital'),
(119598, 'https://ror.org/04r34tf58', 'en', 1, 'https://ror.org/04r34tf58 The Japan Society of Fluid Mechanics äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęµä½“åŠ›å­¦ä¼š'),
(119599, 'https://ror.org/04jd4jp95', 'en', 1, 'https://ror.org/04jd4jp95 Japan Crushed Stone Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē •ēŸ³å”ä¼š'),
(119600, 'https://ror.org/0505c0p37', 'no_lang_code', 1, 'https://ror.org/0505c0p37 Icometrix (Belgium)'),
(119601, 'https://ror.org/0178spj14', 'en', 1, 'https://ror.org/0178spj14 Japan Pharmaceutical Traders'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬ę„­č²æę˜“å”ä¼š'),
(119602, 'https://ror.org/02kkzc246', 'en', 1, 'https://ror.org/02kkzc246 Shri Dharmasthala Manjunatheshwara University'),
(119603, 'https://ror.org/0413d6v25', 'en', 1, 'https://ror.org/0413d6v25 The Historical Society of Japan å…¬ē›Šč²”å›£ę³•äŗŗå²å­¦ä¼š'),
(119604, 'https://ror.org/03gzr6j88', 'fr', 1, 'https://ror.org/03gzr6j88 University of Abomey-Calavi UniversitƩ d''Abomey-Calavi'),
(119605, 'https://ror.org/059w8f876', 'en', 1, 'https://ror.org/059w8f876 University of Kisubi'),
(119606, 'https://ror.org/01fg4d936', 'en', 1, 'https://ror.org/01fg4d936 Japan Association For Mathematical Sciences äø€čˆ¬č²”å›£ę³•äŗŗę•°ē†ē§‘å­¦ęŒÆčˆˆä¼š'),
(119607, 'https://ror.org/01zbg3a43', 'en', 1, 'https://ror.org/01zbg3a43 WIP - Renewable Energies'),
(119608, 'https://ror.org/03eftgw80', 'en', 1, 'https://ror.org/03eftgw80 Indiana University Indianapolis'),
(119609, 'https://ror.org/02rpqwp12', 'pt', 1, 'https://ror.org/02rpqwp12 Instituto Vita'),
(119610, 'https://ror.org/01sx6jc36', 'no_lang_code', 1, 'https://ror.org/01sx6jc36 Intercept Pharmaceuticals (United States)'),
(119611, 'https://ror.org/02mjsj764', 'en', 1, 'https://ror.org/02mjsj764 International Engineering and Technological University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ инженерно-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Єалықаралық инженерлік-Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃŠ»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(119612, 'https://ror.org/01pmm8272', 'en', 1, 'https://ror.org/01pmm8272 PrivatuniversitƤt Schloss Seeburg Seeburg Castle University'),
(119613, 'https://ror.org/047xfhk62', 'id', 1, 'https://ror.org/047xfhk62 Universitas Nurul Jadid University of Nurul Jadid'),
(119614, 'https://ror.org/05dna8580', 'de', 1, 'https://ror.org/05dna8580 VDI/VDE Innovation + Technik'),
(119615, 'https://ror.org/028crwz56', 'es', 1, 'https://ror.org/028crwz56 Universidad Nacional del Sur'),
(119616, 'https://ror.org/017sgna85', 'en', 1, 'https://ror.org/017sgna85 University Medical Center of Southern Nevada'),
(119617, 'https://ror.org/05k879m03', 'no_lang_code', 1, 'https://ror.org/05k879m03 Nurix (United States)'),
(119618, 'https://ror.org/011ydgp35', 'en', 1, 'https://ror.org/011ydgp35 Otgontenger University ŠžŃ‚Š³Š¾Š½Ń‚ŃŠ½Š³ŃŃ€ ŠøŃ… ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(119619, 'https://ror.org/00zkg1t31', 'en', 1, 'https://ror.org/00zkg1t31 Siddhartha Academy of Higher Education'),
(119620, 'https://ror.org/00pw7tr34', 'en', 1, 'https://ror.org/00pw7tr34 The Ocean Foundation'),
(119621, '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'),
(119622, 'https://ror.org/04ypwve02', 'en', 1, 'https://ror.org/04ypwve02 All Japan Coffee Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬ć‚³ćƒ¼ćƒ’ćƒ¼å”ä¼š'),
(119623, 'https://ror.org/02ff5re16', 'fr', 1, 'https://ror.org/02ff5re16 Chad National Museum MusƩe National du Tchad'),
(119624, 'https://ror.org/02s56s535', 'en', 1, 'https://ror.org/02s56s535 Okinawa Nanbu Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå—éƒØåœ°åŒŗåŒ»åø«ä¼š'),
(119625, 'https://ror.org/029t2gr02', 'no_lang_code', 1, 'https://ror.org/029t2gr02 Xenon Pharmaceuticals (Canada)'),
(119626, 'https://ror.org/047cmjs63', 'en', 1, 'https://ror.org/047cmjs63 Campbellsville University UniversitƩ de campbellsville'),
(119627, 'https://ror.org/02ad32n85', 'de', 1, 'https://ror.org/02ad32n85 Klassik Stiftung Weimar'),
(119628, 'https://ror.org/00xznz207', 'en', 1, 'https://ror.org/00xznz207 Nippon Turtle Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚æćƒ¼ćƒˆćƒ«å”ä¼š'),
(119629, 'https://ror.org/04txtaz29', 'en', 1, 'https://ror.org/04txtaz29 Tokyo Building Maintenance Association å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬ćƒ“ćƒ«ćƒ”ćƒ³ćƒ†ćƒŠćƒ³ć‚¹å”ä¼š'),
(119630, 'https://ror.org/02nj01511', 'pt', 1, 'https://ror.org/02nj01511 Núcleo Operacional da Sociedade de Informação Operational Center of the Information Society'),
(119631, 'https://ror.org/01bzgy570', 'en', 1, 'https://ror.org/01bzgy570 Roberts Wesleyan College'),
(119632, 'https://ror.org/04sdd2113', 'en', 1, 'https://ror.org/04sdd2113 Old Church Slavonic Institute'),
(119633, 'https://ror.org/05s7evh92', 'en', 1, 'https://ror.org/05s7evh92 Japan Association of Consumer Affairs Specialists å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½ę¶ˆč²»ē”Ÿę“»ē›øč«‡å“”å”ä¼š'),
(119634, 'https://ror.org/01ysgck23', 'en', 1, 'https://ror.org/01ysgck23 Maternal Infant Child and Youth Research Network'),
(119635, 'https://ror.org/00tebjn14', 'no_lang_code', 1, 'https://ror.org/00tebjn14 Molecular Partners (Switzerland)'),
(119636, 'https://ror.org/05nw2da48', 'en', 1, 'https://ror.org/05nw2da48 International House of Japan, Inc. å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ę–‡åŒ–ä¼šé¤Ø'),
(119637, 'https://ror.org/004s94c80', 'pt', 1, 'https://ror.org/004s94c80 Biocant'),
(119638, 'https://ror.org/040eafj92', 'en', 1, 'https://ror.org/040eafj92 HCA Florida Orange Park Hospital'),
(119639, 'https://ror.org/05adbwj06', 'en', 1, 'https://ror.org/05adbwj06 The Japan Toy Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēŽ©å…·å”ä¼š'),
(119640, 'https://ror.org/00jx5gc25', 'es', 1, 'https://ror.org/00jx5gc25 Instituto Experimental de BiologĆ­a'),
(119641, 'https://ror.org/00an7pj80', 'no_lang_code', 1, 'https://ror.org/00an7pj80 William Demant Holding (Denmark)'),
(119642, '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'),
(119643, 'https://ror.org/05bkwxs60', 'en', 1, 'https://ror.org/05bkwxs60 Colorado Mountain College'),
(119644, 'https://ror.org/058n0ks92', 'ro', 1, 'https://ror.org/058n0ks92 Institutul Naţional de Cercetare-Dezvoltare pentru Mecatronică si Tehnica Masurării'),
(119645, 'https://ror.org/02r5r1038', 'en', 1, 'https://ror.org/02r5r1038 Japan Sign Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚µć‚¤ćƒ³å”ä¼š'),
(119646, 'https://ror.org/03hfq2n34', 'en', 1, 'https://ror.org/03hfq2n34 The Overseas Construction Association of Japan, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–å»ŗčØ­å”ä¼š'),
(119647, 'https://ror.org/03d0yjb51', 'de', 1, 'https://ror.org/03d0yjb51 IST-Hochschule für Management'),
(119648, 'https://ror.org/039d42y17', 'no_lang_code', 1, 'https://ror.org/039d42y17 BioTalentum (Hungary)'),
(119649, 'https://ror.org/04150hy10', 'en', 1, 'https://ror.org/04150hy10 Hillside Teachers'' College'),
(119650, 'https://ror.org/03p41j374', 'en', 1, 'https://ror.org/03p41j374 Bomet University College'),
(119651, 'https://ror.org/01zjd0643', 'en', 1, 'https://ror.org/01zjd0643 Sugar Industry Association å…¬ē›Šē¤¾å›£ę³•äŗŗē³–ę„­å”ä¼š'),
(119652, 'https://ror.org/049y2df60', 'en', 1, 'https://ror.org/049y2df60 Japan Livestock By-product Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē•œē”£å‰Æē”£ē‰©å”ä¼š'),
(119653, 'https://ror.org/05jext738', 'en', 1, 'https://ror.org/05jext738 Driestar Christian University'),
(119654, 'https://ror.org/013aqa754', 'en', 1, 'https://ror.org/013aqa754 Tamil Nadu Open University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®¤ą®æą®±ą®ØąÆą®¤ą®Øą®æą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(119655, 'https://ror.org/027xvbw13', 'en', 1, 'https://ror.org/027xvbw13 Orthopaedic Hospital Valdoltra'),
(119656, 'https://ror.org/05fjyn938', 'en', 1, 'https://ror.org/05fjyn938 Global Biodiversity Information Facility'),
(119657, 'https://ror.org/02rh6b217', 'en', 1, 'https://ror.org/02rh6b217 The Society of Exploration Geophysicists of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗē‰©ē†ęŽ¢ęŸ»å­¦ä¼š'),
(119658, 'https://ror.org/020hwg097', 'en', 1, 'https://ror.org/020hwg097 Institute for the Protection of Cultural Heritage of Slovenia'),
(119659, 'https://ror.org/006yyzx89', 'en', 1, 'https://ror.org/006yyzx89 Japan Galvanizers Association, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęŗ¶čžäŗœé‰›éé‡‘å”ä¼š'),
(119660, 'https://ror.org/01xyj2034', 'en', 1, 'https://ror.org/01xyj2034 Akita Prefectural Organization for Rehabilitation and Development åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē§‹ē”°ēœŒē«‹ē™‚č‚²ę©Ÿę§‹'),
(119661, 'https://ror.org/05h6np937', 'nl', 1, 'https://ror.org/05h6np937 OCON Orthopedische kliniek'),
(119662, 'https://ror.org/046f6ab23', 'en', 1, 'https://ror.org/046f6ab23 ActionAid The Gambia'),
(119663, 'https://ror.org/02y5m7j45', 'en', 1, 'https://ror.org/02y5m7j45 Laikipia University'),
(119664, 'https://ror.org/02qynyz82', 'en', 1, 'https://ror.org/02qynyz82 Asia Pacific College'),
(119665, 'https://ror.org/02wc6ha45', 'en', 1, 'https://ror.org/02wc6ha45 Kawakita Memorial Film Institute å…¬ē›Šč²”å›£ę³•äŗŗå·å–œå¤ščØ˜åæµę˜ ē”»ę–‡åŒ–č²”å›£'),
(119666, 'https://ror.org/02s7adp14', 'en', 1, 'https://ror.org/02s7adp14 Osaka Institute of Local Governments äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗč‡Ŗę²»ä½“å•é”Œē ”ē©¶ę‰€'),
(119667, 'https://ror.org/04pzt5t25', 'en', 1, 'https://ror.org/04pzt5t25 Japan Heating Appliances Inspection Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē‡ƒē„¼ę©Ÿå™Øę¤œęŸ»å”ä¼š'),
(119668, 'https://ror.org/03fn4k739', 'en', 1, 'https://ror.org/03fn4k739 Itochu Foundation å…¬ē›Šč²”å›£ę³•äŗŗä¼Šč—¤åæ čØ˜åæµč²”å›£'),
(119669, 'https://ror.org/003ahkh29', 'en', 1, 'https://ror.org/003ahkh29 CITY Planning Association Of JAPAN. å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚čØˆē”»å”ä¼š'),
(119670, 'https://ror.org/05q2d1724', 'en', 1, 'https://ror.org/05q2d1724 Computer Software Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢å”ä¼š'),
(119671, 'https://ror.org/0029q6w42', 'en', 1, 'https://ror.org/0029q6w42 Green Ferrite Technology Research Association é…øåŒ–é‰„å¤Ŗé™½é›»ę± ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(119672, 'https://ror.org/02aqtvv10', 'en', 1, 'https://ror.org/02aqtvv10 European Biomedical Research Institute of Salerno'),
(119673, 'https://ror.org/03kd1v147', 'no_lang_code', 1, 'https://ror.org/03kd1v147 TVS Motor Company (India)'),
(119674, 'https://ror.org/049b8gt69', 'en', 1, 'https://ror.org/049b8gt69 Japan Federation of Construction Contractors äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗčØ­ę„­é€£åˆä¼š'),
(119675, 'https://ror.org/00tet8b29', 'en', 1, 'https://ror.org/00tet8b29 The Botswana Society'),
(119676, 'https://ror.org/01mn1zm08', 'en', 1, 'https://ror.org/01mn1zm08 Tamiya Hospital åŒ»ē™‚ę³•äŗŗå“‡å¾³ä¼šē”°å®®ē—…é™¢'),
(119677, 'https://ror.org/02hkdyy22', 'no_lang_code', 1, 'https://ror.org/02hkdyy22 OneSource (Portugal)'),
(119678, 'https://ror.org/04h5w0x22', 'hr', 1, 'https://ror.org/04h5w0x22 Academy of Music in Zagreb Muzička akademija'),
(119679, 'https://ror.org/04wm4pe30', 'en', 1, 'https://ror.org/04wm4pe30 Canadian Centre on Substance Use and Addiction Centre canadien sur les dĆ©pendances et l’usage de substances'),
(119680, 'https://ror.org/0010qfz59', 'pt', 1, 'https://ror.org/0010qfz59 Fundo de Defesa da Citricultura'),
(119681, 'https://ror.org/0448gwv68', 'en', 1, 'https://ror.org/0448gwv68 Fukuoka City International Foundation å…¬ē›Šč²”å›£ę³•äŗŗē¦å²”ć‚ˆć‹ćƒˆćƒ”ć‚¢å›½éš›äŗ¤ęµč²”å›£'),
(119682, 'https://ror.org/030jdch10', 'hr', 1, 'https://ror.org/030jdch10 Specijalna bolnica za oftalmologiju Svjetlost University Eye Hospital Svjetlost'),
(119683, 'https://ror.org/04cw8gk81', 'en', 1, 'https://ror.org/04cw8gk81 National Banking College'),
(119684, 'https://ror.org/04hnqrf16', 'en', 1, 'https://ror.org/04hnqrf16 National Center of Public Health and Analyses ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ Ń†ŠµŠ½Ń‚ŃŠŃ€ по обществено зГраве Šø анализи'),
(119685, 'https://ror.org/02fpz8088', 'en', 1, 'https://ror.org/02fpz8088 The Japan Research and development Center for Metals äø€čˆ¬č²”å›£ę³•äŗŗé‡‘å±žē³»ęę–™ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(119686, 'https://ror.org/05r42kg44', 'en', 1, 'https://ror.org/05r42kg44 Vilniaus dailės akademija Vilnius Academy of Arts Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠ°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(119687, 'https://ror.org/026422q21', 'en', 1, 'https://ror.org/026422q21 Japan Cable Television Engineering Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬CATVęŠ€č”“å”ä¼š'),
(119688, 'https://ror.org/057w2sx61', 'en', 1, 'https://ror.org/057w2sx61 Geological Society of London'),
(119689, 'https://ror.org/00rqdn375', 'en', 1, 'https://ror.org/00rqdn375 PƤdagogische Hochschule Schwyz Schwyz University of Teacher Education'),
(119690, 'https://ror.org/03yjyed28', 'en', 1, 'https://ror.org/03yjyed28 Karlshochschule International University'),
(119691, 'https://ror.org/05gxnyn08', 'en', 0, 'https://ror.org/05gxnyn08 Indiana University – Purdue University Indianapolis'),
(119692, 'https://ror.org/034dtfn75', 'en', 1, 'https://ror.org/034dtfn75 The National Gardens Association äø€čˆ¬č²”å›£ę³•äŗŗå›½ę°‘å…¬åœ’å”ä¼š'),
(119693, 'https://ror.org/04qrmed67', 'en', 1, 'https://ror.org/04qrmed67 Japan Registered Clinical Laboratories Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č”›ē”Ÿę¤œęŸ»ę‰€å”ä¼š'),
(119694, 'https://ror.org/00mesrk97', 'en', 1, 'https://ror.org/00mesrk97 Barton College'),
(119695, 'https://ror.org/03xwv0k70', 'es', 1, 'https://ror.org/03xwv0k70 Institute of Ocular Microsurgery Instituto de MicrocirugĆ­a Ocular'),
(119696, 'https://ror.org/02p0xr181', 'es', 1, 'https://ror.org/02p0xr181 Corporación Universitaria Cenda'),
(119697, 'https://ror.org/01w3ec513', 'en', 1, 'https://ror.org/01w3ec513 Arnot Ogden Medical Center'),
(119698, 'https://ror.org/052vggk81', 'en', 1, 'https://ror.org/052vggk81 Central Scientific Research Automobile and Engine Institute Š¦ŠµŠ½Ń‚Ń€Š°ĢŠ»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒĢŃ‡Š½Š¾-ŠøŃŃŠ»ŠµĢŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøĢŠ»ŃŒŠ½Ń‹Š¹ Šø автомото́рный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒĢŃ‚'),
(119699, 'https://ror.org/01ttv9s92', 'en', 1, 'https://ror.org/01ttv9s92 Supreme Council of Culture المجلس الأعلى للثقافة'),
(119700, 'https://ror.org/02b028e39', 'en', 1, 'https://ror.org/02b028e39 National Historical Museums Statens Historiska Museer'),
(119701, 'https://ror.org/01x8fkj71', 'no_lang_code', 1, 'https://ror.org/01x8fkj71 NGM Biopharmaceuticals (United States)'),
(119702, 'https://ror.org/02z5ggc23', 'en', 1, 'https://ror.org/02z5ggc23 Tokyo Philharmonic Orchestra å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬ćƒ•ć‚£ćƒ«ćƒćƒ¼ćƒ¢ćƒ‹ćƒ¼äŗ¤éŸæę„½å›£'),
(119703, 'https://ror.org/05m5qba76', 'en', 1, 'https://ror.org/05m5qba76 Hokkaido Town Planning Association äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ć¾ć”ć„ćć‚Šå”č­°ä¼š'),
(119704, 'https://ror.org/001g7ce71', 'no_lang_code', 1, 'https://ror.org/001g7ce71 Biomass Technology Group (Netherlands)'),
(119705, 'https://ror.org/022rydv31', 'en', 1, 'https://ror.org/022rydv31 Iascach Intƭre Ɖireann Inland Fisheries Ireland'),
(119706, 'https://ror.org/03wcj2062', 'no_lang_code', 1, 'https://ror.org/03wcj2062 Ardelyx (United States)'),
(119707, 'https://ror.org/00m5rzv47', 'en', 1, 'https://ror.org/00m5rzv47 Austrian Center for Medical Innovation and Technology'),
(119708, 'https://ror.org/04hhyvs94', 'no_lang_code', 1, 'https://ror.org/04hhyvs94 TyrƩns (Sweden)'),
(119709, 'https://ror.org/03ttqt747', 'en', 1, 'https://ror.org/03ttqt747 Montana Technological University'),
(119710, 'https://ror.org/01r7nqj12', 'en', 1, 'https://ror.org/01r7nqj12 Japan Concrete Pumping Assotiation äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ć‚³ćƒ³ć‚ÆćƒŖćƒ¼ćƒˆåœ§é€äŗ‹ę„­å›£ä½“é€£åˆä¼š'),
(119711, 'https://ror.org/04rdvc783', 'en', 1, 'https://ror.org/04rdvc783 Our Lady of Grace Trust''s St. Gonsalo Garcia College of Arts and Commerce'),
(119712, 'https://ror.org/030rrcn92', 'no_lang_code', 1, 'https://ror.org/030rrcn92 TCG Lifesciences (India)'),
(119713, 'https://ror.org/01pknfa33', 'en', 1, 'https://ror.org/01pknfa33 SENAI Innovation Institute for Embedded Systems'),
(119714, 'https://ror.org/01rcxda67', 'en', 1, 'https://ror.org/01rcxda67 Japan Explosives Society äø€čˆ¬ē¤¾å›£ę³•äŗŗē«č–¬å­¦ä¼š'),
(119715, 'https://ror.org/03tecy818', 'no_lang_code', 1, 'https://ror.org/03tecy818 AchƩ (Brazil)'),
(119716, 'https://ror.org/05tas6715', 'en', 1, 'https://ror.org/05tas6715 Nasjonalt utviklingssenter for barn og unge The Norwegian Center for Child Behavioral Development'),
(119717, 'https://ror.org/059mq0909', 'no_lang_code', 1, 'https://ror.org/059mq0909 Siemens (Germany)'),
(119718, 'https://ror.org/019cb0c33', 'en', 1, 'https://ror.org/019cb0c33 Jinan Third People''s Hospital'),
(119719, 'https://ror.org/03jrbfe55', 'en', 1, 'https://ror.org/03jrbfe55 Vivekanand Education Society''s College of Arts, Science and Commerce (Autonomous) ą¤µą¤æą¤µą„‡ą¤•ą¤¾ą¤Øą¤‚ą¤¦ ą¤ą¤œą„ą¤Æą„ą¤•ą„‡ą¤¶ą¤Ø ą¤øą„‹ą¤øą¤¾ą¤Æą¤Ÿą„€ą¤ø ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ ą¤†ą¤°ą„ą¤Ÿą„ą¤ø, ą¤øą¤¾ą¤Æą¤Øą„ą¤ø & ą¤•ą„‰ą¤®ą¤°ą„ą¤ø'),
(119720, 'https://ror.org/00qfydg61', 'en', 1, 'https://ror.org/00qfydg61 Centre for Policy Dialogue'),
(119721, 'https://ror.org/01fqtzc60', 'en', 1, 'https://ror.org/01fqtzc60 Makkah Colleges'),
(119722, 'https://ror.org/00976pa13', 'hr', 1, 'https://ror.org/00976pa13 Nacionalni centar za vanjsko vrednovanje obrazovanja National Centre for External Valuation of Education'),
(119723, 'https://ror.org/04ekbqs32', 'en', 1, 'https://ror.org/04ekbqs32 Verma Hospital Verma Hospital and Research Centre'),
(119724, 'https://ror.org/052g9db60', 'en', 1, 'https://ror.org/052g9db60 All Japan Archery Federation å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬ć‚¢ćƒ¼ćƒć‚§ćƒŖćƒ¼é€£ē›Ÿ'),
(119725, 'https://ror.org/0190jz161', 'en', 1, 'https://ror.org/0190jz161 Koto City Health and Sports Foundation å…¬ē›Šč²”å›£ę³•äŗŗę±Ÿę±åŒŗå„åŗ·ć‚¹ćƒćƒ¼ćƒ„å…¬ē¤¾'),
(119726, 'https://ror.org/022y8n225', 'en', 1, 'https://ror.org/022y8n225 The Murata Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗę‘ē”°å­¦č”“ęŒÆčˆˆč²”å›£'),
(119727, 'https://ror.org/02w7vnb60', 'no_lang_code', 1, 'https://ror.org/02w7vnb60 Bharathidasan University ą®Ŗą®¾ą®°ą®¤ą®æą®¤ą®¾ą®šą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(119728, 'https://ror.org/00e1zaf81', 'en', 1, 'https://ror.org/00e1zaf81 Electronic Commerce Security Technology Research Association é›»å­å•†å–å¼•å®‰å…ØęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(119729, 'https://ror.org/01hp71z51', 'no_lang_code', 1, 'https://ror.org/01hp71z51 Philochem (Switzerland)'),
(119730, 'https://ror.org/04h4zn851', 'en', 1, 'https://ror.org/04h4zn851 Bio and Emerging Technology Institute'),
(119731, 'https://ror.org/0552tvm72', 'de', 1, 'https://ror.org/0552tvm72 Austrian Parliament Parlament Ɩsterreich'),
(119732, 'https://ror.org/006vvv981', 'no_lang_code', 1, 'https://ror.org/006vvv981 BioLegend (United States)'),
(119733, 'https://ror.org/0328hp884', 'en', 1, 'https://ror.org/0328hp884 Japan-Malaysia Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒžćƒ¬ćƒ¼ć‚·ć‚¢å”ä¼š'),
(119734, 'https://ror.org/05a4p4j42', 'en', 1, 'https://ror.org/05a4p4j42 Peace Institute- Institute for Contemporary Social and Political Studies'),
(119735, 'https://ror.org/00zgbzw24', 'en', 1, 'https://ror.org/00zgbzw24 Organization for the Promotion of Responsible Tuna Fisheries äø€čˆ¬ē¤¾å›£ę³•äŗŗč²¬ä»»ć‚ć‚‹ć¾ćć‚ę¼ę„­ęŽØé€²ę©Ÿę§‹'),
(119736, 'https://ror.org/053z9p797', 'en', 1, 'https://ror.org/053z9p797 Tri-Institutional Therapeutics Discovery Institute'),
(119737, 'https://ror.org/0570bna54', 'no_lang_code', 1, 'https://ror.org/0570bna54 Synelixis (Greece)'),
(119738, 'https://ror.org/036xsg644', 'en', 1, 'https://ror.org/036xsg644 Hung Vuong University TrĘ°į»ng ĐẔi hį»c Hùng Vʰʔng'),
(119739, 'https://ror.org/00q545m27', 'no_lang_code', 1, 'https://ror.org/00q545m27 Campden BRI (United Kingdom)'),
(119740, 'https://ror.org/03305fr68', 'pt', 1, 'https://ror.org/03305fr68 Museu Nacional de Antropologia de Angola'),
(119741, 'https://ror.org/033xcsh46', 'en', 1, 'https://ror.org/033xcsh46 Japan Textile Finisher''s Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęŸ“č‰²å”ä¼š'),
(119742, 'https://ror.org/011bhgb43', 'en', 1, 'https://ror.org/011bhgb43 Pacifica Graduate Institute'),
(119743, 'https://ror.org/020xs5r81', 'en', 1, 'https://ror.org/020xs5r81 Belgian Nuclear Research Centre Centre d''Etude de l''Energie Nucléaire Studiecentrum voor Kernenergie Studienzentrum für Kernenergie'),
(119744, 'https://ror.org/05s379t92', 'en', 1, 'https://ror.org/05s379t92 Aichi Association of Medical Techinolotists å…¬ē›Šē¤¾å›£ę³•äŗŗę„›ēŸ„ēœŒč‡ØåŗŠę¤œęŸ»ęŠ€åø«ä¼š'),
(119745, 'https://ror.org/01jv4mt47', 'en', 1, 'https://ror.org/01jv4mt47 Botswana Qualifications Authority'),
(119746, 'https://ror.org/004tg2586', 'en', 1, 'https://ror.org/004tg2586 The Fasteners Institute of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć­ć˜å·„ę„­å”ä¼š');
INSERT INTO `rors` VALUES
(119747, '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'),
(119748, 'https://ror.org/03qhfrv73', 'en', 1, 'https://ror.org/03qhfrv73 Federal College of Education, Iwo'),
(119749, 'https://ror.org/0505vtn61', 'no_lang_code', 1, 'https://ror.org/0505vtn61 Albaydha University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁŠŲ¶Ų§Ų”'),
(119750, 'https://ror.org/019am8f18', 'en', 1, 'https://ror.org/019am8f18 Azerbaijan Scientific Research Institute of Construction and Architecture Azərbaycan İnşaat və Memarlıq Elmi-Tədqiqat İnstitutu'),
(119751, 'https://ror.org/02sbh2p55', 'no_lang_code', 1, 'https://ror.org/02sbh2p55 Nordex (Germany)'),
(119752, 'https://ror.org/008nk3d11', 'en', 1, 'https://ror.org/008nk3d11 Zetech University'),
(119753, 'https://ror.org/017z1f632', 'en', 1, 'https://ror.org/017z1f632 Korea Institute of Hydrological Survey'),
(119754, 'https://ror.org/01vd34q60', 'es', 1, 'https://ror.org/01vd34q60 Universidad de Margarita'),
(119755, 'https://ror.org/0079hnn87', 'en', 1, 'https://ror.org/0079hnn87 Virtus Global Center for Corporate Governance ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ центр Š½Š°ŃƒŠŗŠ¾Š²ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ "Š’Ń–Ń€Ń‚ŃƒŃ"'),
(119756, 'https://ror.org/050skmv85', 'en', 1, 'https://ror.org/050skmv85 Ural research Institute of Phthisiopulmonology Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„Ń‚ŠøŠ·ŠøŠ¾ŠæŃƒŠ»ŃŒŠ¼Š¾Š½Š¾Š»Š¾Š³ŠøŠø'),
(119757, 'https://ror.org/03gyd9q58', 'no_lang_code', 1, 'https://ror.org/03gyd9q58 Annoroad Gene Technology (China)'),
(119758, 'https://ror.org/01h9pj715', 'en', 1, 'https://ror.org/01h9pj715 Hyogo Association of Medical Technologists å…¬ē›Šē¤¾å›£ę³•äŗŗå…µåŗ«ēœŒč‡ØåŗŠę¤œęŸ»ęŠ€åø«ä¼š'),
(119759, 'https://ror.org/00tfgxj54', 'en', 1, 'https://ror.org/00tfgxj54 Japan Overseas Plantation Promotion Center äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–ē”£ę„­ę¤ęž—ć‚»ćƒ³ć‚æćƒ¼'),
(119760, 'https://ror.org/00jyb5v21', 'en', 1, 'https://ror.org/00jyb5v21 Clinical Trial and Consulting'),
(119761, 'https://ror.org/05x31d492', 'en', 1, 'https://ror.org/05x31d492 Northwestern College - Iowa'),
(119762, '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'),
(119763, 'https://ror.org/00k02k227', 'en', 1, 'https://ror.org/00k02k227 General Incorporated Foundation For International Education äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›ę•™č‚²å”ä¼š'),
(119764, 'https://ror.org/054s94437', 'es', 1, 'https://ror.org/054s94437 Escuela de Administración y Mercadotecnia del Quindío'),
(119765, 'https://ror.org/05wpcry63', 'en', 1, 'https://ror.org/05wpcry63 Environment and Rural Development Foundation'),
(119766, 'https://ror.org/00seqzr32', 'fr', 1, 'https://ror.org/00seqzr32 Service de Physico-Chimie'),
(119767, 'https://ror.org/00pmgap74', 'no_lang_code', 1, 'https://ror.org/00pmgap74 Dabur (India) औाबर'),
(119768, 'https://ror.org/04s2ntr18', 'en', 1, 'https://ror.org/04s2ntr18 Society for the Advancement of Musical Appreciation å…¬ē›Šč²”å›£ę³•äŗŗéŸ³ę„½é‘‘č³žęŒÆčˆˆč²”å›£'),
(119769, 'https://ror.org/03rxv4m21', 'en', 1, 'https://ror.org/03rxv4m21 Comfort Index Lab äø€čˆ¬č²”å›£ę³•äŗŗē§‘å­¦ęŠ€č”“ęŒÆčˆˆä¼š'),
(119770, 'https://ror.org/05914mm11', 'en', 1, 'https://ror.org/05914mm11 Al-Ihya Islamic University of Kuningan Universitas Islam Al-Ihya Kuningan'),
(119771, 'https://ror.org/01sc83v92', 'fr', 1, 'https://ror.org/01sc83v92 Ɖcole des Hautes Ɖtudes en SantĆ© Publique Ɖcole des hautes Ć©tudes en santĆ© publique'),
(119772, 'https://ror.org/0320vkk33', 'en', 1, 'https://ror.org/0320vkk33 South Carolina Geological Survey'),
(119773, 'https://ror.org/03zc3ah67', 'en', 1, 'https://ror.org/03zc3ah67 Japan Overseas Medical Fund äø€čˆ¬č²”å›£ę³•äŗŗęµ·å¤–é‚¦äŗŗåŒ»ē™‚åŸŗé‡‘'),
(119774, 'https://ror.org/05rgj9466', 'en', 1, 'https://ror.org/05rgj9466 Japanese Society for Engineering Education å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å·„å­¦ę•™č‚²å”ä¼š'),
(119775, 'https://ror.org/014a87f14', 'en', 1, 'https://ror.org/014a87f14 AIRI - Artificial Intelligence Research Institute AIRI - Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ интеллекта'),
(119776, 'https://ror.org/00jvxk918', 'no_lang_code', 1, 'https://ror.org/00jvxk918 Quantum Motion Technologies (United Kingdom)'),
(119777, 'https://ror.org/043zhyz89', 'en', 1, 'https://ror.org/043zhyz89 Tokushima Economic Research Institute å…¬ē›Šč²”å›£ę³•äŗŗå¾³å³¶ēµŒęøˆē ”ē©¶ę‰€'),
(119778, 'https://ror.org/006fd9255', 'no_lang_code', 1, 'https://ror.org/006fd9255 Gambia Horticultural Enterprises Gambia Horticultural Enterprises (The Gambia)'),
(119779, 'https://ror.org/044ghw904', 'en', 1, 'https://ror.org/044ghw904 Japan Institute for Overseas Investment äø€čˆ¬č²”å›£ę³•äŗŗęµ·å¤–ęŠ•čžč³‡ęƒ…å ±č²”å›£'),
(119780, 'https://ror.org/034ee8p26', 'no_lang_code', 1, 'https://ror.org/034ee8p26 ZeClinics (Spain)'),
(119781, 'https://ror.org/042dk0329', 'no_lang_code', 1, 'https://ror.org/042dk0329 Nouscom (Italy)'),
(119782, 'https://ror.org/00ht4dp10', 'en', 1, 'https://ror.org/00ht4dp10 Havs- och Vattenmyndigheten Swedish Agency for Marine and Water Management'),
(119783, 'https://ror.org/01t5a0b96', 'en', 1, 'https://ror.org/01t5a0b96 Saint Elizabeth Health Care'),
(119784, 'https://ror.org/02y7qqd86', 'no_lang_code', 1, 'https://ror.org/02y7qqd86 A123 Systems (United States)'),
(119785, 'https://ror.org/002q7jf46', 'en', 1, 'https://ror.org/002q7jf46 Jagannath University Jaipur'),
(119786, 'https://ror.org/017n1k193', 'en', 1, 'https://ror.org/017n1k193 French University of Egypt UniversitĆ© franƧaise d''Ɖgypte الجامعة Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ© في Ł…ŲµŲ±'),
(119787, 'https://ror.org/01brm2x11', 'de', 1, 'https://ror.org/01brm2x11 Diakovere'),
(119788, 'https://ror.org/01npb8j56', 'no_lang_code', 1, 'https://ror.org/01npb8j56 Norconsult (Norway)'),
(119789, 'https://ror.org/00j63xt48', 'en', 1, 'https://ror.org/00j63xt48 Kyushu Productivity Center å…¬ē›Šč²”å›£ę³•äŗŗä¹å·žē”Ÿē”£ę€§ęœ¬éƒØ'),
(119790, 'https://ror.org/03q1tx520', 'en', 1, 'https://ror.org/03q1tx520 Battery4Life GmbH'),
(119791, 'https://ror.org/022a1fs04', 'en', 1, 'https://ror.org/022a1fs04 Prime University ą¦Ŗą§ą¦°ą¦¾ą¦‡ą¦® ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(119792, 'https://ror.org/045rbn925', 'en', 1, 'https://ror.org/045rbn925 Ichinomiya Fashion Design Center å…¬ē›Šč²”å›£ę³•äŗŗäø€å®®åœ°å “ē”£ę„­ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³ćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(119793, 'https://ror.org/05h00pe93', 'en', 1, 'https://ror.org/05h00pe93 Japan Association of Real Estate Appraisers å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äøå‹•ē”£é‘‘å®šå£«å”ä¼šé€£åˆä¼š'),
(119794, 'https://ror.org/05nz57427', 'en', 1, 'https://ror.org/05nz57427 Cardinal Stritch University'),
(119795, 'https://ror.org/02yrmma41', 'en', 1, 'https://ror.org/02yrmma41 Neomatrix Biotech (Italy)'),
(119796, 'https://ror.org/03xnkeb56', 'en', 1, 'https://ror.org/03xnkeb56 Bihar Engineering University बिहार ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą¤æą¤‚ą¤— ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ą®ŖąÆ€ą®•ą®¾ą®°ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(119797, 'https://ror.org/05jy9jt03', 'en', 1, 'https://ror.org/05jy9jt03 Sierra College'),
(119798, 'https://ror.org/056v48353', 'en', 1, 'https://ror.org/056v48353 Northern Alberta Institute of Technology'),
(119799, 'https://ror.org/00gesa309', 'fr', 1, 'https://ror.org/00gesa309 Centre EuropĆ©en d’Etudes de SĆ©curitĆ© et d’Analyse des Risques'),
(119800, 'https://ror.org/04n5aqd27', 'en', 1, 'https://ror.org/04n5aqd27 Union College - Kentucky'),
(119801, 'https://ror.org/02fnywa89', 'en', 1, 'https://ror.org/02fnywa89 Ministerio de Salud y de Protección Social Ministry of Health and Social Protection'),
(119802, 'https://ror.org/04pnpc024', 'pt', 1, 'https://ror.org/04pnpc024 Governo do Estado do Rio de Janeiro'),
(119803, 'https://ror.org/00ra63c74', 'fr', 1, 'https://ror.org/00ra63c74 Centre Hospitalier Territorial de Nouvelle-CalƩdonie'),
(119804, 'https://ror.org/00ykhbh21', 'en', 1, 'https://ror.org/00ykhbh21 Japan Iron And Steel Recycling Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„ćƒŖć‚µć‚¤ć‚Æćƒ«å·„ę„­ä¼š'),
(119805, 'https://ror.org/04ftcn206', 'no_lang_code', 1, 'https://ror.org/04ftcn206 First Light Fusion'),
(119806, 'https://ror.org/03xzzt249', 'en', 1, 'https://ror.org/03xzzt249 The Foundation for Prevention of Dementia å…¬ē›Šč²”å›£ę³•äŗŗčŖēŸ„ē—‡äŗˆé˜²č²”å›£'),
(119807, 'https://ror.org/05r61jg22', 'no_lang_code', 1, 'https://ror.org/05r61jg22 Oikon (Croatia)'),
(119808, 'https://ror.org/05m77an26', 'en', 1, 'https://ror.org/05m77an26 Japan Spring Manufacturers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć°ć­å·„ę„­ä¼š'),
(119809, 'https://ror.org/04q51rp65', 'en', 1, 'https://ror.org/04q51rp65 Umayabashi Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗå‰ę©‹ē©å–„ä¼šåŽ©ę©‹ē—…é™¢'),
(119810, 'https://ror.org/05cph0j38', 'en', 1, 'https://ror.org/05cph0j38 THE Maeda Engineering Foundation å…¬ē›Šč²”å›£ę³•äŗŗå‰ē”°čØ˜åæµå·„å­¦ęŒÆčˆˆč²”å›£'),
(119811, 'https://ror.org/020d63z41', 'en', 1, 'https://ror.org/020d63z41 Boiler & Crane Safety Association å…¬ē›Šē¤¾å›£ę³•äŗŗćƒœć‚¤ćƒ©ćƒ»ć‚Æćƒ¬ćƒ¼ćƒ³å®‰å…Øå”ä¼š'),
(119812, 'https://ror.org/053p3yv46', 'en', 1, 'https://ror.org/053p3yv46 Salman Farsi University of Kazerun دانؓگاه سلمان فارسی Ś©Ų§Ų²Ų±ŁˆŁ†'),
(119813, 'https://ror.org/03w8k6t95', 'no_lang_code', 1, 'https://ror.org/03w8k6t95 Hanover institute of integrated production Institut fuer Integrierte Produktion Hannover (Germany)'),
(119814, 'https://ror.org/04hawx602', 'en', 1, 'https://ror.org/04hawx602 ITOH Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗä¼Šč—¤ē§‘å­¦ęŒÆčˆˆä¼š'),
(119815, 'https://ror.org/00gj80262', 'fr', 1, 'https://ror.org/00gj80262 Institut Nordique de Recherche en Environnement et SantƩ au Travail Northern Institute for Research in Environment and Occupational Health and Safety'),
(119816, 'https://ror.org/01wmqvz89', 'en', 1, 'https://ror.org/01wmqvz89 Danish National Metrology Institute Dansk Fundamental Metrologi'),
(119817, 'https://ror.org/00mea5h89', 'en', 1, 'https://ror.org/00mea5h89 Fukushima National College of Technology ē¦å³¶å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(119818, 'https://ror.org/03efzvv60', 'es', 1, 'https://ror.org/03efzvv60 Centro Científico Tecnológico - Bahía Blanca'),
(119819, 'https://ror.org/04mnc5f76', 'en', 1, 'https://ror.org/04mnc5f76 American Samoa Community College'),
(119820, 'https://ror.org/01bx6mz39', 'no_lang_code', 1, 'https://ror.org/01bx6mz39 Dekonta (Czechia)'),
(119821, 'https://ror.org/029nath19', 'en', 1, 'https://ror.org/029nath19 Royal Scientific Society'),
(119822, 'https://ror.org/055r1v423', 'en', 1, 'https://ror.org/055r1v423 Toyohashi International Association å…¬ē›Šč²”å›£ę³•äŗŗč±Šę©‹åø‚å›½éš›äŗ¤ęµå”ä¼š'),
(119823, 'https://ror.org/02qjn6j31', 'id', 1, 'https://ror.org/02qjn6j31 Institut Agama Kristen Negeri Ambon State Institute For Christian Studies Ambon'),
(119824, 'https://ror.org/0532vdr17', 'no_lang_code', 1, 'https://ror.org/0532vdr17 Signify (Netherlands)'),
(119825, 'https://ror.org/03zjtz035', 'en', 1, 'https://ror.org/03zjtz035 The Organization for Urban-Rural Interchange Revitalization äø€čˆ¬č²”å›£ę³•äŗŗéƒ½åø‚č¾²å±±ę¼ę‘äŗ¤ęµę“»ę€§åŒ–ę©Ÿę§‹'),
(119826, 'https://ror.org/04hxjrb09', 'es', 1, 'https://ror.org/04hxjrb09 Guasave Higher Technological Institute Instituto Tecnológico Superior de Guasave'),
(119827, 'https://ror.org/02rk1v957', 'en', 1, 'https://ror.org/02rk1v957 Japan Alcohol Association äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚¢ćƒ«ć‚³ćƒ¼ćƒ«å”ä¼š'),
(119828, 'https://ror.org/03jftj094', 'nl', 1, 'https://ror.org/03jftj094 Yulius'),
(119829, 'https://ror.org/03kdq7b22', 'en', 1, 'https://ror.org/03kdq7b22 The Mining and Materials Processing Institute of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗč³‡ęŗćƒ»ē“ ęå­¦ä¼š'),
(119830, 'https://ror.org/041nm8c07', 'de', 1, 'https://ror.org/041nm8c07 ForWind Zentrum für Windenergieforschung'),
(119831, 'https://ror.org/00nthvx56', 'en', 1, 'https://ror.org/00nthvx56 Kansai University of International Studies é–¢č„æå›½éš›å¤§å­¦'),
(119832, 'https://ror.org/04qw0nt96', 'no_lang_code', 1, 'https://ror.org/04qw0nt96 Immatics Biotechnologies (Germany)'),
(119833, 'https://ror.org/05jqhfh02', 'no_lang_code', 1, 'https://ror.org/05jqhfh02 Beam Therapeutics (United States)'),
(119834, 'https://ror.org/01t0j6w37', 'en', 1, 'https://ror.org/01t0j6w37 The Spectroscopical Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åˆ†å…‰å­¦ä¼š'),
(119835, 'https://ror.org/047394f17', 'fr', 1, 'https://ror.org/047394f17 Institut National de SantƩ Publique du Burkina Faso'),
(119836, 'https://ror.org/03hfrkg98', 'en', 1, 'https://ror.org/03hfrkg98 Social Medical Corporation Yuuaikai Yuuai Medical Center ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå‹ę„›ä¼šå‹ę„›åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(119837, 'https://ror.org/00w0nv972', 'en', 1, 'https://ror.org/00w0nv972 Tallinn University of Applied Sciences Tallinna TehnikakƵrgkool'),
(119838, 'https://ror.org/0322dgg87', 'en', 1, 'https://ror.org/0322dgg87 American University of Culture and Education الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© للثقافة ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ…'),
(119839, 'https://ror.org/05mk46e13', 'de', 1, 'https://ror.org/05mk46e13 Institute for Fermentation and Biotechnology, Berlin Versuchs- und Lehranstalt für Brauerei in Berlin'),
(119840, 'https://ror.org/02j5ney70', 'no_lang_code', 1, 'https://ror.org/02j5ney70 Royal GD (Netherlands)'),
(119841, 'https://ror.org/04a6sax19', 'en', 1, 'https://ror.org/04a6sax19 American Farm School Αμερικανική Γεωργική Σχολή'),
(119842, 'https://ror.org/05f0azc76', 'it', 1, 'https://ror.org/05f0azc76 Azienda Regionale per la protezione dell''ambiente Lombardia Regional environmental protection for Lombardia'),
(119843, 'https://ror.org/01yswes03', 'en', 1, 'https://ror.org/01yswes03 Kishiwada Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå²øå’Œē”°åø‚åŒ»åø«ä¼š'),
(119844, 'https://ror.org/05qmxat05', 'en', 1, 'https://ror.org/05qmxat05 Consorcio de Salud y Social de CataluƱa Consortium for Health and Social Catalonia'),
(119845, 'https://ror.org/02tkjx303', 'es', 1, 'https://ror.org/02tkjx303 Centro Nacional de Alta TecnologĆ­a National Center for High Technology'),
(119846, 'https://ror.org/014xjce10', 'es', 1, 'https://ror.org/014xjce10 Universidad Tecnológica del Sur'),
(119847, 'https://ror.org/05sj5yq92', 'en', 1, 'https://ror.org/05sj5yq92 Ideas42'),
(119848, 'https://ror.org/00q2m9q81', 'en', 1, 'https://ror.org/00q2m9q81 ShigaHachiman Hospital å…¬ē›Šč²”å›£ę³•äŗŗé’ęØ¹ä¼šę»‹č³€å…«å¹”ē—…é™¢'),
(119849, 'https://ror.org/00f7h4g27', 'en', 1, 'https://ror.org/00f7h4g27 Oguz Han Engineering and Technology University of Turkmenistan Türkmenistanyň Oguz han adyndaky Inžener-tehnologiýalar uniwersiteti'),
(119850, 'https://ror.org/02qr05d85', 'en', 1, 'https://ror.org/02qr05d85 Mount Mary University'),
(119851, 'https://ror.org/01gqphq61', 'en', 1, 'https://ror.org/01gqphq61 Institute for Advanced Composites and Robotics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за современи композити Šø роботика'),
(119852, 'https://ror.org/041mxqs23', 'no_lang_code', 1, 'https://ror.org/041mxqs23 Figshare (United Kingdom)'),
(119853, 'https://ror.org/05bbvky56', 'en', 1, 'https://ror.org/05bbvky56 West Africa Centre for Crop Improvement'),
(119854, 'https://ror.org/030vkcn94', 'en', 1, 'https://ror.org/030vkcn94 Korean Red Cross'),
(119855, 'https://ror.org/03t40cz74', 'no_lang_code', 1, 'https://ror.org/03t40cz74 Hypres (United States)'),
(119856, 'https://ror.org/017yqqp60', 'en', 1, 'https://ror.org/017yqqp60 Intersect'),
(119857, 'https://ror.org/031r0z067', 'en', 1, 'https://ror.org/031r0z067 The Japan Education Centre for the Hotel Industry äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ›ćƒ†ćƒ«ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(119858, 'https://ror.org/03pmvs525', 'en', 1, 'https://ror.org/03pmvs525 Realize'),
(119859, 'https://ror.org/01vv1bg04', 'en', 1, 'https://ror.org/01vv1bg04 Sri Sairam College of Engineering'),
(119860, 'https://ror.org/044pxj632', 'en', 1, 'https://ror.org/044pxj632 Japan Reinforcing Bar Joints Institute å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„ē­‹ē¶™ę‰‹å”ä¼š'),
(119861, 'https://ror.org/02jn8gs50', 'en', 1, 'https://ror.org/02jn8gs50 Associação Brasileira de Psiquiatria Brazilian Association of Psychiatry'),
(119862, 'https://ror.org/01yj99h06', 'en', 1, 'https://ror.org/01yj99h06 Community Health Systems - Northwest Health - Porter'),
(119863, 'https://ror.org/05cr3a926', 'en', 1, 'https://ror.org/05cr3a926 The Kinki Chemical Society, Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗčæ‘ē•æåŒ–å­¦å”ä¼š'),
(119864, 'https://ror.org/03693e022', 'es', 1, 'https://ror.org/03693e022 Universidad Iberoamericana del Ecuador'),
(119865, 'https://ror.org/01t7cnb95', 'en', 1, 'https://ror.org/01t7cnb95 Institute of Water Modelling'),
(119866, 'https://ror.org/02ja3st78', 'en', 1, 'https://ror.org/02ja3st78 Bina Bangsa Getsempena University'),
(119867, 'https://ror.org/02tpmfk70', 'fr', 1, 'https://ror.org/02tpmfk70 Higher Institute of Veterinary Sciences and Medicine Institut SupƩrieur des Sciences et de MƩdecine VƩtƩrinaire'),
(119868, 'https://ror.org/00g80dh10', 'en', 1, 'https://ror.org/00g80dh10 The Japan Association of Radiological Technologists. å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čØŗē™‚ę”¾å°„ē·šęŠ€åø«ä¼š'),
(119869, 'https://ror.org/03pbjs721', 'pt', 1, 'https://ror.org/03pbjs721 All for Health Institute Instituto Todos pela SaĆŗde'),
(119870, 'https://ror.org/05awkxa30', 'en', 1, 'https://ror.org/05awkxa30 The Society of Heating, Air-Conditioning and Sanitary Engineers of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗē©ŗę°—čŖæå’Œćƒ»č”›ē”Ÿå·„å­¦ä¼š'),
(119871, 'https://ror.org/04fbwb286', 'en', 1, 'https://ror.org/04fbwb286 Japan Bearing Inspection Institute äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬č»øå—ę¤œęŸ»å”ä¼š'),
(119872, 'https://ror.org/05sze1z59', 'en', 1, 'https://ror.org/05sze1z59 American Thrombosis and Hemostasis Network'),
(119873, 'https://ror.org/013sxy806', 'en', 1, 'https://ror.org/013sxy806 Japan Jewellery Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚øćƒ„ć‚ØćƒŖćƒ¼å”ä¼š'),
(119874, 'https://ror.org/03d2mp652', 'en', 1, 'https://ror.org/03d2mp652 Taganrog Institute of Management and Economics Частное Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Таганрогский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(119875, 'https://ror.org/02ksj6x61', 'en', 1, 'https://ror.org/02ksj6x61 Global Industrial and Social Progress Research Institute äø€čˆ¬č²”å›£ę³•äŗŗåœ°ēƒē”£ę„­ę–‡åŒ–ē ”ē©¶ę‰€'),
(119876, 'https://ror.org/042130q70', 'en', 1, 'https://ror.org/042130q70 Japan Golf Goods Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚“ćƒ«ćƒ•ē”Øå“å”ä¼š'),
(119877, 'https://ror.org/05p90yn88', 'no_lang_code', 1, 'https://ror.org/05p90yn88 Continuum Blue Limited Continuum Blue Limited (United Kingdom)'),
(119878, 'https://ror.org/051a9ap09', 'no_lang_code', 1, 'https://ror.org/051a9ap09 Bibliotheca Alexandrina Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(119879, 'https://ror.org/00zz2cd87', 'en', 1, 'https://ror.org/00zz2cd87 Kannur University ą“•ą“£ąµą“£ąµ‚ąµ¼ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(119880, 'https://ror.org/03n4wh382', 'en', 1, 'https://ror.org/03n4wh382 Al-Imam Al-Adham University College Ł„ŁƒŁ„ŁŠŲ© الامام الاعظم الجامع'),
(119881, 'https://ror.org/04w23p232', 'de', 1, 'https://ror.org/04w23p232 Evangelische Hochschule Darmstadt'),
(119882, 'https://ror.org/03wx3r522', 'de', 1, 'https://ror.org/03wx3r522 Cochrane Deutschland Stiftung'),
(119883, 'https://ror.org/00887ww69', 'en', 1, 'https://ror.org/00887ww69 Shiga Prefecture Industrial Support Center å…¬ē›Šč²”å›£ę³•äŗŗę»‹č³€ēœŒē”£ę„­ę”Æę“ćƒ—ćƒ©ć‚¶'),
(119884, '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'),
(119885, 'https://ror.org/034gkfh25', 'no_lang_code', 1, 'https://ror.org/034gkfh25 Intas Pharmaceuticals (India)'),
(119886, 'https://ror.org/02y9nww90', 'en', 1, 'https://ror.org/02y9nww90 Chuo Kikuu cha Nairobi University of Nairobi'),
(119887, 'https://ror.org/04p6jwd33', 'no_lang_code', 1, 'https://ror.org/04p6jwd33 Fate Therapeutics (United States)'),
(119888, 'https://ror.org/05ha4qq56', 'fr', 1, 'https://ror.org/05ha4qq56 Centre National de Gestion des RƩserves de Faune National Center for Wildlife Reserve Management'),
(119889, 'https://ror.org/03vg6va04', 'en', 1, 'https://ror.org/03vg6va04 Health Strategy and Delivery Foundation'),
(119890, 'https://ror.org/003sw5840', 'pt', 1, 'https://ror.org/003sw5840 Geographic and Cadastral Institute of Angola Instituto GeogrƔfico e Cadastral de Angola'),
(119891, 'https://ror.org/040ejvh72', 'en', 1, 'https://ror.org/040ejvh72 General Organization For Teaching Hospitals and Institutes Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„Ł…Ų³ŲŖŲ“ŁŁŠŲ§ŲŖ ŁˆŲ§Ł„Ł…Ų¹Ų§Ł‡ŲÆ Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ…ŁŠŲ©'),
(119892, 'https://ror.org/0372th171', 'fr', 1, 'https://ror.org/0372th171 UniversitƩ de Brest UniversitƩ de Bretagne Occidentale'),
(119893, 'https://ror.org/02wwpj676', 'en', 1, 'https://ror.org/02wwpj676 The State Institution Ā«Public Health Center of the Ministry of Health of UkraineĀ» Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° «Центр Š³Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ¾Š³Š¾ Š·Š“Š¾Ń€Š¾Š²ā€™Ń ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š° охорони Š·Š“Š¾Ń€Š¾Š²ā€™Ń України»'),
(119894, 'https://ror.org/05bpd1c44', 'es', 1, 'https://ror.org/05bpd1c44 Universidad de AysƩn'),
(119895, 'https://ror.org/00af1mn38', 'no_lang_code', 1, 'https://ror.org/00af1mn38 ERA Arqueologia'),
(119896, 'https://ror.org/03k8q6b42', 'en', 1, 'https://ror.org/03k8q6b42 Shibli National College Ų“ŲØŁ„ŪŒ Ł†ŪŒŲ“Ł†Ł„ Ś©Ų§Ł„Ų¬ŲŒ Ų§Ų¹ŲøŁ… گڑھ শিবলী ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦•ą¦²ą§‡ą¦œ'),
(119897, 'https://ror.org/04my0r533', 'en', 1, 'https://ror.org/04my0r533 Sardar Patel University of Police, Security and Criminal Justice, Jodhpur'),
(119898, 'https://ror.org/03v1d1974', 'en', 1, 'https://ror.org/03v1d1974 The Institute for International Business Communication äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›ćƒ“ć‚øćƒć‚¹ć‚³ćƒŸćƒ„ćƒ‹ć‚±ćƒ¼ć‚·ćƒ§ćƒ³å”ä¼š'),
(119899, 'https://ror.org/0249bce70', 'en', 1, 'https://ror.org/0249bce70 Gulf Coast State College'),
(119900, 'https://ror.org/056vnsb08', 'en', 1, 'https://ror.org/056vnsb08 Royal Ottawa Mental Health Centre'),
(119901, 'https://ror.org/00fpvte21', 'en', 1, 'https://ror.org/00fpvte21 Arts University Plymouth'),
(119902, 'https://ror.org/02r3wcw82', 'en', 1, 'https://ror.org/02r3wcw82 Columbia Southern University'),
(119903, 'https://ror.org/028rev379', 'en', 1, 'https://ror.org/028rev379 Policy Research Associates'),
(119904, 'https://ror.org/007a35n65', 'en', 1, 'https://ror.org/007a35n65 Te Whare Wānanga o Awanuiārangi'),
(119905, 'https://ror.org/002swqh49', 'en', 1, 'https://ror.org/002swqh49 Mar Gregorios College of Arts and Science'),
(119906, 'https://ror.org/01a77ce11', 'en', 1, 'https://ror.org/01a77ce11 Japan Institute of Business Law å…¬ē›Šē¤¾å›£ę³•äŗŗå•†äŗ‹ę³•å‹™ē ”ē©¶ä¼š'),
(119907, 'https://ror.org/00tsmxy07', 'en', 1, 'https://ror.org/00tsmxy07 Open Brain Institute'),
(119908, 'https://ror.org/0459wqp13', 'en', 1, 'https://ror.org/0459wqp13 Justice Institute of British Columbia'),
(119909, 'https://ror.org/029xngd29', 'en', 1, 'https://ror.org/029xngd29 Fryderyk Chopin University of Music Uniwersytet Muzyczny Fryderyka Chopina'),
(119910, 'https://ror.org/00qgjv472', 'en', 1, 'https://ror.org/00qgjv472 Japan Steel Tower Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„å””å”ä¼š'),
(119911, 'https://ror.org/048ejdx72', 'en', 1, 'https://ror.org/048ejdx72 Hokkaido Health Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“å„åŗ·ć„ćć‚Šč²”å›£'),
(119912, 'https://ror.org/02631q704', 'fr', 1, 'https://ror.org/02631q704 Ɖcole SupĆ©rieure des Industries du Textile et de l''Habillement'),
(119913, 'https://ror.org/04wpbw410', 'pt', 1, 'https://ror.org/04wpbw410 Secretaria de Estado de SaĆŗde do Rio de Janeiro'),
(119914, 'https://ror.org/04cmsqj09', 'en', 1, 'https://ror.org/04cmsqj09 Hitachi Ctizens'' Science and Culture Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ē«‹åø‚ę°‘ē§‘å­¦ę–‡åŒ–č²”å›£'),
(119915, 'https://ror.org/05hca2307', 'fr', 1, 'https://ror.org/05hca2307 Ɖcole Nationale SupĆ©rieure d’Architecture Paris-Malaquais'),
(119916, 'https://ror.org/019h4er57', 'en', 1, 'https://ror.org/019h4er57 The Society of Japanese Aerospace Companies äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čˆŖē©ŗå®‡å®™å·„ę„­ä¼š'),
(119917, 'https://ror.org/05t3s2h88', 'en', 1, 'https://ror.org/05t3s2h88 Institute of Applied Artificial Intelligence and Robotics'),
(119918, 'https://ror.org/04988re48', 'en', 1, 'https://ror.org/04988re48 Instituto PolitƩcnico do Porto Polytechnic Institute of Porto'),
(119919, 'https://ror.org/031zhc582', 'id', 1, 'https://ror.org/031zhc582 Institut Teknologi dan Bisnis Palcomtech'),
(119920, 'https://ror.org/04y494090', 'en', 1, 'https://ror.org/04y494090 Autism Alliance of Canada'),
(119921, 'https://ror.org/01hvx5h04', 'no_lang_code', 1, 'https://ror.org/01hvx5h04 Osaka Metropolitan University å¤§é˜Ŗå…¬ē«‹å¤§å­¦'),
(119922, 'https://ror.org/04wx6rh88', 'en', 1, 'https://ror.org/04wx6rh88 Japan Seed Trade Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēØ®č‹—å”ä¼š'),
(119923, 'https://ror.org/01e0hcx30', 'no_lang_code', 1, 'https://ror.org/01e0hcx30 ABL Bio (South Korea)'),
(119924, 'https://ror.org/05xca6483', 'en', 1, 'https://ror.org/05xca6483 Bay Path University'),
(119925, 'https://ror.org/01t51rc23', 'en', 1, 'https://ror.org/01t51rc23 Volunteer State Community College'),
(119926, 'https://ror.org/04mjvsy78', 'en', 1, 'https://ror.org/04mjvsy78 Igenomix'),
(119927, 'https://ror.org/055qs7f05', 'en', 1, 'https://ror.org/055qs7f05 Tokyo Industry Federation äø€čˆ¬ē¤¾å›£ę³•äŗŗę±äŗ¬å·„ę„­å›£ä½“é€£åˆä¼š'),
(119928, 'https://ror.org/00abbgv23', 'en', 1, 'https://ror.org/00abbgv23 Japan Industrial Association of Gas and Kerosene Appliances äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¬ć‚¹ēŸ³ę²¹ę©Ÿå™Øå·„ę„­ä¼š'),
(119929, 'https://ror.org/020d1gt06', 'en', 1, 'https://ror.org/020d1gt06 Annai Violet Arts and Science College'),
(119930, 'https://ror.org/02hem7625', 'en', 1, 'https://ror.org/02hem7625 Vermont Geological Survey'),
(119931, 'https://ror.org/03vdjbj89', 'fr', 1, 'https://ror.org/03vdjbj89 Ɖcole Nationale SupĆ©rieure d''Architecture Paris-Val de Seine'),
(119932, 'https://ror.org/043zbt471', 'en', 1, 'https://ror.org/043zbt471 Dusit Thani College ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø”ąøøąøŖąø“ąø•ąø˜ąø²ąø™ąøµ ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(119933, 'https://ror.org/031jv9v19', 'en', 1, 'https://ror.org/031jv9v19 European & Developing Countries Clinical Trials Partnership'),
(119934, 'https://ror.org/00932nr14', 'en', 1, 'https://ror.org/00932nr14 Center for Research and Promotion of Japanese Islands å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é›¢å³¶ć‚»ćƒ³ć‚æćƒ¼'),
(119935, 'https://ror.org/01jgbmq74', 'no_lang_code', 1, 'https://ror.org/01jgbmq74 AskBio (United States)'),
(119936, 'https://ror.org/022r3pj76', 'es', 1, 'https://ror.org/022r3pj76 Instituto Universitario Asociación Cristiana de Jóvenes'),
(119937, 'https://ror.org/01353h433', 'en', 1, 'https://ror.org/01353h433 Japan Association of Corrosion Control äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é˜²éŒ†ęŠ€č”“å”ä¼š'),
(119938, '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'),
(119939, 'https://ror.org/047tgv290', 'en', 1, 'https://ror.org/047tgv290 Chuo Kikuu cha Kikristo cha Pan Africa Pan Africa Christian University'),
(119940, 'https://ror.org/05pvaka44', 'en', 1, 'https://ror.org/05pvaka44 Laramie County Community College'),
(119941, 'https://ror.org/03nan1z82', 'en', 1, 'https://ror.org/03nan1z82 National Camping Association of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚­ćƒ£ćƒ³ćƒ—å”ä¼š'),
(119942, 'https://ror.org/0560ksp05', 'en', 1, 'https://ror.org/0560ksp05 CollĆØge john abbott John Abbott College'),
(119943, 'https://ror.org/02x4mx473', 'en', 1, 'https://ror.org/02x4mx473 Belgian Ceramic Research Centre'),
(119944, 'https://ror.org/04bdan579', 'en', 1, 'https://ror.org/04bdan579 National Rehabilitation Hospital Ospidéal NÔisiúnta AthshlÔnúchÔin'),
(119945, 'https://ror.org/042815a40', 'en', 1, 'https://ror.org/042815a40 Japan Sailing Federation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚»ćƒ¼ćƒŖćƒ³ć‚°é€£ē›Ÿ'),
(119946, 'https://ror.org/031h71w90', 'en', 1, 'https://ror.org/031h71w90 Bavarian State Library Bayerische Staatsbibliothek'),
(119947, 'https://ror.org/0237c2m81', 'en', 1, 'https://ror.org/0237c2m81 HCA Healthcare'),
(119948, 'https://ror.org/044y3gk76', 'en', 1, 'https://ror.org/044y3gk76 Japan Radio Air Navigation Systems Association äø€čˆ¬č²”å›£ę³•äŗŗčˆŖē©ŗäæå®‰ē„”ē·šć‚·ć‚¹ćƒ†ćƒ å”ä¼š'),
(119949, 'https://ror.org/052q8e925', 'fr', 1, 'https://ror.org/052q8e925 Ɖcole Normale SupĆ©rieure de Bouzareah Alger المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ببوزريعة'),
(119950, 'https://ror.org/05xknxa42', 'en', 1, 'https://ror.org/05xknxa42 Bedƫr University Universiteti Hƫna e Plotƫ'),
(119951, 'https://ror.org/003dejx58', 'en', 1, 'https://ror.org/003dejx58 Greater Tokyo Initiative äø€čˆ¬ē¤¾å›£ę³•äŗŗé¦–éƒ½åœē”£ę„­ę“»ę€§åŒ–å”ä¼š'),
(119952, 'https://ror.org/02dxvwm43', 'en', 1, 'https://ror.org/02dxvwm43 Rural Finance Research Institute äø€čˆ¬č²”å›£ę³•äŗŗč¾²ę‘é‡‘čžē ”ē©¶ä¼š'),
(119953, 'https://ror.org/059jt8614', 'en', 1, 'https://ror.org/059jt8614 Fukushima Shichoson Kensetsu Shien Kikou äø€čˆ¬č²”å›£ę³•äŗŗćµćć—ć¾åø‚ē”ŗę‘ę”Æę“ę©Ÿę§‹'),
(119954, 'https://ror.org/01w47zv87', 'en', 1, 'https://ror.org/01w47zv87 The Japanese Society of Conservative Dentistry ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ę­Æē§‘äæå­˜å­¦ä¼š'),
(119955, 'https://ror.org/02g27zb55', 'en', 1, 'https://ror.org/02g27zb55 International Cartographic Information Center äø€čˆ¬č²”å›£ę³•äŗŗåœ°å›³ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(119956, 'https://ror.org/01s7h5w12', 'en', 1, 'https://ror.org/01s7h5w12 Kyoto Industrial Support Organization 21 å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½ē”£ę„­21'),
(119957, 'https://ror.org/05j5rbv93', 'no_lang_code', 1, 'https://ror.org/05j5rbv93 Foghorn Therapeutics (United States)'),
(119958, 'https://ror.org/02hq3jg45', 'en', 1, 'https://ror.org/02hq3jg45 Nomura School of Advanced Management å…¬ē›Šč²”å›£ę³•äŗŗé‡Žę‘ćƒžćƒć‚øćƒ”ćƒ³ćƒˆćƒ»ć‚¹ć‚Æćƒ¼ćƒ«'),
(119959, 'https://ror.org/00dyta386', 'en', 1, 'https://ror.org/00dyta386 Morinaga Angel Foundation äø€čˆ¬č²”å›£ę³•äŗŗę£®ę°øć‚Øćƒ³ć‚¼ćƒ«č²”å›£'),
(119960, 'https://ror.org/00tnk6k60', 'en', 1, 'https://ror.org/00tnk6k60 Ibaraki Western Medical Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗčŒØåŸŽēœŒč„æéƒØåŒ»ē™‚ę©Ÿę§‹'),
(119961, 'https://ror.org/0514bm407', 'en', 1, 'https://ror.org/0514bm407 European Centre for Social Welfare Policy and Research'),
(119962, 'https://ror.org/03whng054', 'en', 1, 'https://ror.org/03whng054 TCM Hospital Xinyang äæ”é˜³åø‚äø­åŒ»é™¢'),
(119963, 'https://ror.org/01fva3742', 'en', 1, 'https://ror.org/01fva3742 THE Baseball Hall Of Fame And Museum å…¬ē›Šč²”å›£ę³•äŗŗé‡Žēƒę®æå ‚åšē‰©é¤Ø'),
(119964, 'https://ror.org/0385et328', 'no_lang_code', 1, 'https://ror.org/0385et328 R2M Solution (Italy)'),
(119965, 'https://ror.org/049zt2w56', 'de', 1, 'https://ror.org/049zt2w56 Gesellschaft fuer Wirtschaftliche Strukturforschung Institute of Economic Structures Research'),
(119966, 'https://ror.org/053d21744', 'en', 1, 'https://ror.org/053d21744 Catalonia College of Music Escola Superior de Música de Catalunya Escuela Superior de Música de Cataluña'),
(119967, 'https://ror.org/03mc4n068', 'en', 1, 'https://ror.org/03mc4n068 Japan Automobile Transport Technology Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»Šč¼øé€ęŠ€č”“å”ä¼š'),
(119968, 'https://ror.org/011h3r445', 'en', 1, 'https://ror.org/011h3r445 ElƤketurvakeskus Finnish Centre for Pensions'),
(119969, 'https://ror.org/02m6g7c72', 'en', 1, 'https://ror.org/02m6g7c72 Latvian Institute of Aquatic Ecology Latvijas Hidroekoloģijas institūts'),
(119970, 'https://ror.org/03rtj3891', 'hr', 1, 'https://ror.org/03rtj3891 Istarsko veleučiliŔte Istrian University of Applied Sciences'),
(119971, 'https://ror.org/0284j4180', 'en', 1, 'https://ror.org/0284j4180 Global Antibiotic Research & Development Partnership'),
(119972, 'https://ror.org/05swdaw77', 'en', 1, 'https://ror.org/05swdaw77 Urals Research Center for Radiation Medicine'),
(119973, 'https://ror.org/008754496', 'no_lang_code', 1, 'https://ror.org/008754496 Ryutsu Keizai University ęµé€šēµŒęøˆå¤§å­¦'),
(119974, 'https://ror.org/04wkx5d83', 'en', 1, 'https://ror.org/04wkx5d83 Caribbean Public Health Agency'),
(119975, 'https://ror.org/02w8zx671', 'en', 1, 'https://ror.org/02w8zx671 Jagdish Sheth School of Management'),
(119976, 'https://ror.org/02z936431', 'en', 1, 'https://ror.org/02z936431 Japanese Federation of the Deaf äø€čˆ¬č²”å›£ę³•äŗŗå…Øę—„ęœ¬ć‚ć†ć‚é€£ē›Ÿ'),
(119977, 'https://ror.org/01s9kwm37', 'en', 1, 'https://ror.org/01s9kwm37 Japanese Aero Engines Corporation äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬čˆŖē©ŗę©Ÿć‚Øćƒ³ć‚øćƒ³å”ä¼š'),
(119978, 'https://ror.org/03jp6hb89', 'en', 1, 'https://ror.org/03jp6hb89 International Aircraft Development Fund å…¬ē›Šč²”å›£ę³•äŗŗčˆŖē©ŗę©Ÿå›½éš›å…±åŒé–‹ē™ŗäæƒé€²åŸŗé‡‘'),
(119979, 'https://ror.org/04msbx814', 'en', 1, 'https://ror.org/04msbx814 Hochschule für Musik und Theater Felix Mendelssohn Bartholdy Leipzig University of Music and Theatre Leipzig'),
(119980, 'https://ror.org/00jwt4h34', 'en', 1, 'https://ror.org/00jwt4h34 RV College of Physiotherapy'),
(119981, 'https://ror.org/044snnt75', 'no_lang_code', 1, 'https://ror.org/044snnt75 Grandomics (China)'),
(119982, 'https://ror.org/040zkp777', 'en', 1, 'https://ror.org/040zkp777 Manhyia Palace'),
(119983, 'https://ror.org/03pprwf10', 'en', 1, 'https://ror.org/03pprwf10 Education for All Campaign Network'),
(119984, 'https://ror.org/03vw5xy77', 'en', 1, 'https://ror.org/03vw5xy77 Northwest Portland Area Indian Health Board'),
(119985, 'https://ror.org/03w43f812', 'no_lang_code', 1, 'https://ror.org/03w43f812 Olea Medical (France)'),
(119986, 'https://ror.org/001bhsv95', 'en', 1, 'https://ror.org/001bhsv95 Japan-Finland Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ•ć‚£ćƒ³ćƒ©ćƒ³ćƒ‰å”ä¼š'),
(119987, 'https://ror.org/04tw5da48', 'en', 1, 'https://ror.org/04tw5da48 Eastern Florida State College'),
(119988, 'https://ror.org/02zn7mc21', 'en', 1, 'https://ror.org/02zn7mc21 Medical Care Development'),
(119989, 'https://ror.org/03z26a547', 'en', 1, 'https://ror.org/03z26a547 Whitman-Walker Health'),
(119990, 'https://ror.org/0301tkm88', 'no_lang_code', 1, 'https://ror.org/0301tkm88 HeartFlow (United States)'),
(119991, 'https://ror.org/00gv0np59', 'en', 1, 'https://ror.org/00gv0np59 Tokyo Association of Radiological Technologists å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½čØŗē™‚ę”¾å°„ē·šęŠ€åø«ä¼š'),
(119992, 'https://ror.org/042v2q176', 'en', 1, 'https://ror.org/042v2q176 Florida Department of Environmental Protection'),
(119993, 'https://ror.org/05jnwhe63', 'en', 1, 'https://ror.org/05jnwhe63 Japan Investment Advisers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęŠ•č³‡é”§å•ę„­å”ä¼š'),
(119994, 'https://ror.org/02sm0eb42', 'en', 1, 'https://ror.org/02sm0eb42 MƩtis Nation of Alberta'),
(119995, 'https://ror.org/03yk4dt83', 'es', 1, 'https://ror.org/03yk4dt83 Hospital Universitario LluĆ­s AlcanyĆ­s'),
(119996, 'https://ror.org/0027dz305', 'en', 1, 'https://ror.org/0027dz305 Japan Safety Appliances Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äæå®‰ē”Øå“å”ä¼š'),
(119997, 'https://ror.org/01tj2g979', 'en', 1, 'https://ror.org/01tj2g979 Akita Midorigaoka Hospital åŒ»ē™‚ę³•äŗŗä¹…ē››ä¼šē§‹ē”°ē·‘ćƒ¶äø˜ē—…é™¢'),
(119998, 'https://ror.org/000jh7748', 'en', 1, 'https://ror.org/000jh7748 Oceanic Wellness Foundation äø€čˆ¬č²”å›£ę³•äŗŗå„åŗ·ē§‘å­¦č²”å›£'),
(119999, 'https://ror.org/03fb89b90', 'en', 1, 'https://ror.org/03fb89b90 Mazak Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒžć‚¶ćƒƒć‚Æč²”å›£'),
(120000, 'https://ror.org/05tt0as29', 'en', 1, 'https://ror.org/05tt0as29 Tohto College of Health Sciences ę±éƒ½åŒ»ē™‚å¤§å­¦'),
(120001, 'https://ror.org/04s55st49', 'en', 1, 'https://ror.org/04s55st49 Tate'),
(120002, 'https://ror.org/021088259', 'en', 1, 'https://ror.org/021088259 SEO Amsterdam Economics SEO Economisch Onderzoek'),
(120003, 'https://ror.org/03jt2mp50', 'en', 1, 'https://ror.org/03jt2mp50 Institut za krmno bilje Institute for Forage Crops'),
(120004, 'https://ror.org/036wya453', 'en', 1, 'https://ror.org/036wya453 THE Yukawa Memorial Foundation å…¬ē›Šč²”å›£ę³•äŗŗę¹Æå·čØ˜åæµč²”å›£'),
(120005, 'https://ror.org/05sk8m495', 'en', 1, 'https://ror.org/05sk8m495 Japan Air Cleaning Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē©ŗę°—ęø…ęµ„å”ä¼š'),
(120006, 'https://ror.org/007bp1495', 'en', 1, 'https://ror.org/007bp1495 Nagoya Urban Development Public Corporation å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹ć¾ć”ć„ćć‚Šå…¬ē¤¾'),
(120007, 'https://ror.org/00g6a4p04', 'en', 1, 'https://ror.org/00g6a4p04 Nevada Department of Conservation and Natural Resources'),
(120008, 'https://ror.org/05j2c6r36', 'en', 1, 'https://ror.org/05j2c6r36 Virginia Theological Seminary'),
(120009, 'https://ror.org/04phycn98', 'en', 1, 'https://ror.org/04phycn98 San Beda University'),
(120010, 'https://ror.org/007jy0643', 'en', 1, 'https://ror.org/007jy0643 PharmAccess Group'),
(120011, 'https://ror.org/01yscvc28', 'en', 1, 'https://ror.org/01yscvc28 Davis & Elkins College'),
(120012, 'https://ror.org/036f1as09', 'es', 1, 'https://ror.org/036f1as09 Universidad EvangƩlica Boliviana'),
(120013, 'https://ror.org/014e1qv83', 'en', 1, 'https://ror.org/014e1qv83 University of Saravan'),
(120014, 'https://ror.org/02b1vt080', 'en', 1, 'https://ror.org/02b1vt080 Government College of Engineering, Keonjhar'),
(120015, 'https://ror.org/0492nfe34', 'en', 1, 'https://ror.org/0492nfe34 University of Cape Coast'),
(120016, 'https://ror.org/02y0ssa74', 'en', 1, 'https://ror.org/02y0ssa74 The Japan Cotton & Staple Fiber Fabric Inspecting Institute Foundation äø€čˆ¬č²”å›£ę³•äŗŗćƒ”ćƒ³ć‚±ćƒ³å“č³Ŗę¤œęŸ»å”ä¼š'),
(120017, 'https://ror.org/026z1v086', 'en', 1, 'https://ror.org/026z1v086 Lasell College'),
(120018, 'https://ror.org/038189970', 'en', 1, 'https://ror.org/038189970 Buraku Liberation and Human Rights Research Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗéƒØč½č§£ę”¾ćƒ»äŗŗęØ©ē ”ē©¶ę‰€'),
(120019, 'https://ror.org/02k736151', 'en', 1, 'https://ror.org/02k736151 Tamano Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗēŽ‰é‡ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(120020, 'https://ror.org/04qct7s53', 'en', 1, 'https://ror.org/04qct7s53 Excelsia College Wesley Institute'),
(120021, 'https://ror.org/03e4nj576', 'en', 1, 'https://ror.org/03e4nj576 Japan Telecommunications Engineering and Consulting Service äø€čˆ¬č²”å›£ę³•äŗŗęµ·å¤–é€šäæ”ćƒ»ę”¾é€ć‚³ćƒ³ć‚µćƒ«ćƒ†ć‚£ćƒ³ć‚°å”åŠ›'),
(120022, 'https://ror.org/04d0f7957', 'en', 1, 'https://ror.org/04d0f7957 Association of Public Health Laboratories'),
(120023, 'https://ror.org/04e634x13', 'en', 1, 'https://ror.org/04e634x13 Institute for Future Urban Development äø€čˆ¬č²”å›£ę³•äŗŗéƒ½åø‚ćæć‚‰ć„ęŽØé€²ę©Ÿę§‹'),
(120024, 'https://ror.org/058emmq70', 'en', 1, 'https://ror.org/058emmq70 Kenya Bureau of Standards'),
(120025, 'https://ror.org/02vtemz45', 'en', 1, 'https://ror.org/02vtemz45 Discovery Programme'),
(120026, 'https://ror.org/024s63t50', 'en', 1, 'https://ror.org/024s63t50 Hokkaido Concrete Technical Center äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“ć‚³ćƒ³ć‚ÆćƒŖćƒ¼ćƒˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(120027, 'https://ror.org/001sgj505', 'en', 1, 'https://ror.org/001sgj505 Japan Ophthalmologists Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēœ¼ē§‘åŒ»ä¼š'),
(120028, 'https://ror.org/01fpz6759', 'no_lang_code', 1, 'https://ror.org/01fpz6759 IRIS Technology Solutions (Spain)'),
(120029, 'https://ror.org/00a08ma67', 'en', 1, 'https://ror.org/00a08ma67 J-DeEPęŠ€č”“ē ”ē©¶ēµ„åˆ Japan Offshore Design & Engineering Platform Technology & Engineering Research Association'),
(120030, 'https://ror.org/04ys6zh37', 'en', 1, 'https://ror.org/04ys6zh37 Snolab'),
(120031, 'https://ror.org/02gpf0617', 'en', 1, 'https://ror.org/02gpf0617 Ashiya Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗčŠ¦å±‹åø‚åŒ»åø«ä¼š'),
(120032, 'https://ror.org/00992vx38', 'id', 1, 'https://ror.org/00992vx38 Institut Agama Islam Imam Syafii Indonesia'),
(120033, 'https://ror.org/01nsshk90', 'en', 1, 'https://ror.org/01nsshk90 Coimbatore Institute of Technology ą®•ąÆ‹ą®µąÆˆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(120034, 'https://ror.org/02engc643', 'en', 1, 'https://ror.org/02engc643 Japan Federation of Wood Industry Associations äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ęœØęēµ„åˆé€£åˆä¼š'),
(120035, 'https://ror.org/020mgne32', 'no_lang_code', 1, 'https://ror.org/020mgne32 NCC (Sweden)'),
(120036, 'https://ror.org/039efr729', 'pt', 1, 'https://ror.org/039efr729 Instituto Português de Administração de Marketing'),
(120037, 'https://ror.org/04ag58v20', 'en', 1, 'https://ror.org/04ag58v20 Antwerp Maritime Academy Hogere Zeevaartschool Antwerpen'),
(120038, 'https://ror.org/03cfeg204', 'en', 1, 'https://ror.org/03cfeg204 Flight Academy of the National Aviation University Š›Ń‘Ń‚Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ авиационного ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š°'),
(120039, 'https://ror.org/05304jy33', 'en', 1, 'https://ror.org/05304jy33 Ibaraki Prefectural Development Public Corporation å…¬ē›Šč²”å›£ę³•äŗŗčŒØåŸŽēœŒé–‹ē™ŗå…¬ē¤¾'),
(120040, 'https://ror.org/04g1c5a53', 'fr', 1, 'https://ror.org/04g1c5a53 Ecole Centrale Casablanca المدرسة Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠŲ© للدار Ų§Ł„ŲØŁŠŲ¶Ų§Ų”'),
(120041, 'https://ror.org/049raxa23', 'en', 1, 'https://ror.org/049raxa23 Palestinian Clinical Research Center'),
(120042, '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'),
(120043, 'https://ror.org/04581yq69', 'en', 1, 'https://ror.org/04581yq69 Special Olympics'),
(120044, 'https://ror.org/04j1jjs80', 'en', 1, 'https://ror.org/04j1jjs80 University of Information Technology and Sciences ą¦‡ą¦‰ą¦Øą¦æą¦°ą§ą¦­ą¦¾ą¦øą¦æą¦Ÿą¦æ অব ইনফরমেশন ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą¦ą¦Øą§ą¦” ą¦øą¦¾ą¦‡ą¦Øą§ą¦øą§‡ą¦ø'),
(120045, 'https://ror.org/00n82zt72', 'en', 1, 'https://ror.org/00n82zt72 The Setagaya Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗäø–ē”°č°·åŒŗåŒ»åø«ä¼š'),
(120046, 'https://ror.org/00e6smn54', 'en', 1, 'https://ror.org/00e6smn54 Nagano Forestry Consultant äø€čˆ¬ē¤¾å›£ę³•äŗŗé•·é‡ŽēœŒęž—ę„­ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆå”ä¼š'),
(120047, 'https://ror.org/01eewth24', 'en', 1, 'https://ror.org/01eewth24 Michigan Geological Survey'),
(120048, 'https://ror.org/05gj5ka88', 'en', 1, 'https://ror.org/05gj5ka88 National Diet Library å›½ē«‹å›½ä¼šå›³ę›øé¤Ø'),
(120049, 'https://ror.org/00zayq578', 'de', 1, 'https://ror.org/00zayq578 Staatliche Akademie der Bildenden Künste Stuttgart State Academy of Fine Arts in Stuttgart'),
(120050, '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ň'),
(120051, 'https://ror.org/04w49p241', 'en', 1, 'https://ror.org/04w49p241 The Forestry Commission of Ghana'),
(120052, 'https://ror.org/00m8k1p34', 'en', 1, 'https://ror.org/00m8k1p34 Centre for International Forestry Research'),
(120053, 'https://ror.org/05v5qfp15', 'en', 1, 'https://ror.org/05v5qfp15 Rehasport Clinic'),
(120054, 'https://ror.org/04kzeme37', 'en', 1, 'https://ror.org/04kzeme37 Hartebeesthoek Radio Astronomy Observatory'),
(120055, 'https://ror.org/03vwt8p73', 'en', 1, 'https://ror.org/03vwt8p73 Else Kröner Fresenius Center for Optogenetic Therapies Else Kröner Fresenius Zentrum für Optogenetische Therapien'),
(120056, 'https://ror.org/01b1gtf65', 'en', 1, 'https://ror.org/01b1gtf65 Japan Newspaper Publishers and Editors Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę–°čžå”ä¼š'),
(120057, 'https://ror.org/03x53pw92', 'hr', 1, 'https://ror.org/03x53pw92 County General Hospital Požega Opća županijska bolnica Požega'),
(120058, 'https://ror.org/035epx642', 'es', 1, 'https://ror.org/035epx642 San Damaso Ecclesiastical University Universidad EclesiƔstica San DƔmaso'),
(120059, 'https://ror.org/030sq7c39', 'no_lang_code', 1, 'https://ror.org/030sq7c39 IMA (Italy)'),
(120060, 'https://ror.org/05hdq6q33', 'en', 1, 'https://ror.org/05hdq6q33 Women''s University in Africa'),
(120061, 'https://ror.org/04cz55j42', 'en', 1, 'https://ror.org/04cz55j42 Japan Solar System Development Association äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚½ćƒ¼ćƒ©ćƒ¼ć‚·ć‚¹ćƒ†ćƒ ęŒÆčˆˆå”ä¼š'),
(120062, 'https://ror.org/00bcmnq73', 'en', 1, 'https://ror.org/00bcmnq73 Washington State Department of Agriculture'),
(120063, 'https://ror.org/05mwsq745', 'no_lang_code', 1, 'https://ror.org/05mwsq745 Oticon (Denmark)'),
(120064, 'https://ror.org/01zs74r82', 'en', 1, 'https://ror.org/01zs74r82 Gas Turbine Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¬ć‚¹ć‚æćƒ¼ćƒ“ćƒ³å­¦ä¼š'),
(120065, 'https://ror.org/0274adk88', 'en', 1, 'https://ror.org/0274adk88 Shizuoka Prefectural Industrial Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗé™å²”ēœŒē”£ę„­ęŒÆčˆˆč²”å›£'),
(120066, 'https://ror.org/0072zz521', 'en', 1, 'https://ror.org/0072zz521 Universidad de Massachusetts Amherst University of Massachusetts Amherst UniversitƩ du massachusetts Ơ amherst'),
(120067, 'https://ror.org/03q5f0t83', 'en', 1, 'https://ror.org/03q5f0t83 Datalys Center for Sports Injury Research and Prevention'),
(120068, 'https://ror.org/03kerd729', 'id', 1, 'https://ror.org/03kerd729 Sekolah Tinggi Teologi Tabgha Batam'),
(120069, 'https://ror.org/04xa5qt51', 'no_lang_code', 1, 'https://ror.org/04xa5qt51 XLAB (Slovenia)'),
(120070, 'https://ror.org/03wezdz19', 'es', 1, 'https://ror.org/03wezdz19 Universidad Nacional Experimental de los Llanos Centrales Rómulo Gallegos'),
(120071, 'https://ror.org/000d3nc08', 'es', 1, 'https://ror.org/000d3nc08 Instituto de Educación Media Superior de la Ciudad de México'),
(120072, 'https://ror.org/050gfgn67', 'en', 1, 'https://ror.org/050gfgn67 Institute of Lithuanian Literature and Folklore Lietuvių Literatūros ir Tautosakos Institutas'),
(120073, 'https://ror.org/02dngzb65', 'en', 1, 'https://ror.org/02dngzb65 Japan Prefabricated Construction Suppliers and Manufacturers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ—ćƒ¬ćƒćƒ–å»ŗēÆ‰å”ä¼š'),
(120074, 'https://ror.org/01jwwzm25', 'fr', 1, 'https://ror.org/01jwwzm25 Human Sciences Institute in Brittany Instituto de Ciencias Humanas en BretaƱa Maison des sciences humaines et sociales en Bretagne'),
(120075, 'https://ror.org/039bc5x74', 'en', 1, 'https://ror.org/039bc5x74 Belhaven University'),
(120076, 'https://ror.org/01pjahc11', 'id', 1, 'https://ror.org/01pjahc11 Universitas Islam Al-Aziziyah Indonesia'),
(120077, 'https://ror.org/016x6tw47', 'en', 1, 'https://ror.org/016x6tw47 Japanese Ophthalmological Society å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ēœ¼ē§‘å­¦ä¼š'),
(120078, 'https://ror.org/01v2b7f40', 'en', 1, 'https://ror.org/01v2b7f40 Kentucky Geological Survey'),
(120079, 'https://ror.org/05wzvde96', 'es', 1, 'https://ror.org/05wzvde96 Real Academia Galega de Ciencias Reial AcadĆØmia Gallega de CiĆØncies'),
(120080, 'https://ror.org/030v2hs28', 'en', 1, 'https://ror.org/030v2hs28 Global Guardian Trust äø€čˆ¬ē¤¾å›£ę³•äŗŗč‡Ŗē„¶č³‡ęŗäæå…Øå”ä¼š'),
(120081, 'https://ror.org/0412v5t33', 'en', 1, 'https://ror.org/0412v5t33 Kanazawa Education Plaza é‡‘ę²¢åø‚ę•™č‚²ćƒ—ćƒ©ć‚¶'),
(120082, 'https://ror.org/04ggv2982', 'en', 1, 'https://ror.org/04ggv2982 Piedmont College'),
(120083, 'https://ror.org/03pnmsd25', 'en', 1, 'https://ror.org/03pnmsd25 National Information Technology Agency'),
(120084, 'https://ror.org/04wdrdw47', 'en', 1, 'https://ror.org/04wdrdw47 Massachusetts Geological Survey'),
(120085, 'https://ror.org/037hryt76', 'no_lang_code', 1, 'https://ror.org/037hryt76 iCons'),
(120086, 'https://ror.org/05yhpvt92', 'en', 1, 'https://ror.org/05yhpvt92 IHA Hematology Oncology Consultants'),
(120087, 'https://ror.org/00gdtey07', 'fr', 1, 'https://ror.org/00gdtey07 Geographical Institute of Burundi Institut GƩographique du Burundi'),
(120088, 'https://ror.org/055aqw663', 'hr', 1, 'https://ror.org/055aqw663 MUP-VeleučiliŔte kriminalistike i javne sigurnosti University of Applied Sciences in Criminal Investigation and Public Security'),
(120089, 'https://ror.org/01nw0n580', 'en', 1, 'https://ror.org/01nw0n580 International Hospitality and Conference Service Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›äŗ¤ęµć‚µćƒ¼ćƒ“ć‚¹å”ä¼š'),
(120090, 'https://ror.org/02ev5wr74', 'no_lang_code', 1, 'https://ror.org/02ev5wr74 Hatyai University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø«ąø²ąø”ą¹ƒąø«ąøą¹ˆ'),
(120091, 'https://ror.org/05pczjj75', 'pt', 1, 'https://ror.org/05pczjj75 Infarmed'),
(120092, 'https://ror.org/01v93tw45', 'en', 1, 'https://ror.org/01v93tw45 Association of national social insurance society äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ē¤¾ä¼šäæé™ŗå”ä¼šé€£åˆä¼š'),
(120093, 'https://ror.org/013tya969', 'en', 1, 'https://ror.org/013tya969 Tokyo Biomarker Innovation Research Association ę±äŗ¬ćƒć‚¤ć‚Ŗćƒžćƒ¼ć‚«ćƒ¼ćƒ»ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(120094, 'https://ror.org/03c4d4730', 'en', 1, 'https://ror.org/03c4d4730 Kyoto YMCA å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½YMCA'),
(120095, 'https://ror.org/03b98ms23', 'en', 1, 'https://ror.org/03b98ms23 International Crane Foundation'),
(120096, 'https://ror.org/023t3yx44', 'en', 1, 'https://ror.org/023t3yx44 Siemens (Türkiye)'),
(120097, 'https://ror.org/02r86kg79', 'en', 1, 'https://ror.org/02r86kg79 Japanese Psychiatric Nurses Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē²¾ē„žē§‘ēœ‹č­·å”ä¼š'),
(120098, 'https://ror.org/018f17m70', 'no_lang_code', 1, 'https://ror.org/018f17m70 SveučiliŔte Vitez Univerzitet Vitez'),
(120099, 'https://ror.org/03mg9wg15', 'en', 1, 'https://ror.org/03mg9wg15 JDSG College ą¦œą§‡. ঔি. ą¦ą¦š. জি. ą¦•ą¦²ą§‡ą¦œ ą¦¶ą§ą§°ą§€ ą¦¶ą§ą§°ą§€ ą¦Æą§‹ą¦—ą¦¾ą¦Øą¦Øą§ą¦¦ দেৱ ą¦øą¦¤ą§ą§°ą¦¾ą¦§ą¦æą¦•ą¦¾ą§° ą¦—ą§‹ą¦øą§ą§±ą¦¾ą¦®ą§€ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(120100, 'https://ror.org/00ey6f218', 'en', 1, 'https://ror.org/00ey6f218 Nara Junior College of Fine Arts å„ˆč‰ÆčŠøč”“ēŸ­ęœŸå¤§å­¦'),
(120101, 'https://ror.org/03azy6w67', 'en', 1, 'https://ror.org/03azy6w67 Energy Institute Hrvoje Požar'),
(120102, 'https://ror.org/01s3mmd49', 'en', 1, 'https://ror.org/01s3mmd49 Japan Magazine Publishers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›‘čŖŒå”ä¼š'),
(120103, 'https://ror.org/03dk6td20', 'en', 1, 'https://ror.org/03dk6td20 Tennessee Department of Environment and Conservation'),
(120104, 'https://ror.org/026h67h98', 'en', 1, 'https://ror.org/026h67h98 Water Integrity Network'),
(120105, 'https://ror.org/0170kjy29', 'en', 1, 'https://ror.org/0170kjy29 Mississippi Office of Geology'),
(120106, 'https://ror.org/01j15gd68', 'en', 1, 'https://ror.org/01j15gd68 Erie Family Health Center');
INSERT INTO `rors` VALUES
(120107, 'https://ror.org/043hpy847', 'en', 1, 'https://ror.org/043hpy847 Royal University for Women الجامعة Ų§Ł„Ł…Ł„ŁƒŁŠŲ© للبنات'),
(120108, 'https://ror.org/02pk2er67', 'en', 1, 'https://ror.org/02pk2er67 Oceana'),
(120109, 'https://ror.org/04qya2777', 'en', 1, 'https://ror.org/04qya2777 Missouri Geological Survey'),
(120110, 'https://ror.org/00chh5g40', 'en', 1, 'https://ror.org/00chh5g40 Sendai Tourism, Convention and International Association å…¬ē›Šč²”å›£ę³•äŗŗä»™å°č¦³å…‰å›½éš›å”ä¼š'),
(120111, 'https://ror.org/03r3pbs98', 'en', 1, 'https://ror.org/03r3pbs98 Amnesty International Japan å…¬ē›Šē¤¾å›£ę³•äŗŗć‚¢ćƒ ćƒć‚¹ćƒ†ć‚£ćƒ»ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«ę—„ęœ¬'),
(120112, 'https://ror.org/011db8566', 'en', 1, 'https://ror.org/011db8566 JAL Foundation å…¬ē›Šč²”å›£ę³•äŗŗJAL貔団'),
(120113, 'https://ror.org/04paggk58', 'so', 1, 'https://ror.org/04paggk58 Ministry of Health Wasaaradda Caafimaadka وزارة الصحة'),
(120114, 'https://ror.org/02vwh7h84', 'en', 1, 'https://ror.org/02vwh7h84 Military Communication Institute'),
(120115, 'https://ror.org/054836590', 'en', 1, 'https://ror.org/054836590 Kibuye Hope Hospital'),
(120116, 'https://ror.org/05w3mdt70', 'en', 1, 'https://ror.org/05w3mdt70 Kansai Golf Union - Green Section Research Center äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æć‚°ćƒŖćƒ¼ćƒ³ē ”ē©¶ę‰€'),
(120117, 'https://ror.org/02p574y25', 'en', 1, 'https://ror.org/02p574y25 Japan Fashion Color Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęµč”Œč‰²å”ä¼š'),
(120118, 'https://ror.org/04zhbv473', 'en', 1, 'https://ror.org/04zhbv473 World Society of Sustainable Energy Technologies'),
(120119, 'https://ror.org/027qpvt36', 'en', 1, 'https://ror.org/027qpvt36 Japan Users Association of Information Systems äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęƒ…å ±ć‚·ć‚¹ćƒ†ćƒ ćƒ»ćƒ¦ćƒ¼ć‚¶ćƒ¼å”ä¼š'),
(120120, 'https://ror.org/00fgkb535', 'en', 1, 'https://ror.org/00fgkb535 Charleston School of Law'),
(120121, 'https://ror.org/02egbj510', 'en', 1, 'https://ror.org/02egbj510 Nakasone Peacce Institute å…¬ē›Šč²”å›£ę³•äŗŗäø­ę›½ę ¹åŗ·å¼˜äø–ē•Œå¹³å’Œē ”ē©¶ę‰€'),
(120122, 'https://ror.org/03jj6gw15', 'en', 1, 'https://ror.org/03jj6gw15 Japan Marine Recreation Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęµ·ę“‹ćƒ¬ć‚øćƒ£ćƒ¼å®‰å…Øćƒ»ęŒÆčˆˆå”ä¼š'),
(120123, 'https://ror.org/053zbv090', 'es', 1, 'https://ror.org/053zbv090 Facultad de TeologĆ­a Pontificia y Civil de Lima'),
(120124, 'https://ror.org/05f3efm35', 'en', 1, 'https://ror.org/05f3efm35 Tulsa Community College'),
(120125, 'https://ror.org/049e4tb61', 'en', 1, 'https://ror.org/049e4tb61 Osaka Association of Radiological Technologists å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜ŖåŗœčØŗē™‚ę”¾å°„ē·šęŠ€åø«ä¼š'),
(120126, 'https://ror.org/04tht4t69', 'en', 1, 'https://ror.org/04tht4t69 Japan Foundation of Dental Promotion äø€čˆ¬č²”å›£ę³•äŗŗę­Æē§‘åŒ»ē™‚ęŒÆčˆˆč²”å›£'),
(120127, 'https://ror.org/041fs4c33', 'en', 1, 'https://ror.org/041fs4c33 Far-western University ą¤øą„ą¤¦ą„‚ą¤°ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(120128, 'https://ror.org/05tffhs19', 'en', 1, 'https://ror.org/05tffhs19 Chubu Electrical Safety Services Foundation äø€čˆ¬č²”å›£ę³•äŗŗäø­éƒØé›»ę°—äæå®‰å”ä¼š'),
(120129, 'https://ror.org/02ra47g14', 'en', 1, 'https://ror.org/02ra47g14 MACHINAMI Foundation äø€čˆ¬č²”å›£ę³•äŗŗä½å®…ē”Ÿē”£ęŒÆčˆˆč²”å›£'),
(120130, 'https://ror.org/05dkg9665', 'en', 1, 'https://ror.org/05dkg9665 Higashikurume Medical Association Higashikurume Medical Assosiation äø€čˆ¬ē¤¾å›£ę³•äŗŗę±ä¹…ē•™ē±³åø‚åŒ»åø«ä¼š'),
(120131, 'https://ror.org/02gb7bb36', 'en', 1, 'https://ror.org/02gb7bb36 Saint Joseph''s College of Maine'),
(120132, 'https://ror.org/03sy3av50', 'en', 1, 'https://ror.org/03sy3av50 Michigan Department of Environment, Great Lakes, and Energy'),
(120133, 'https://ror.org/0155df715', 'el', 1, 'https://ror.org/0155df715 Sygklisi Astiki mi Kerdoskopiki Etaireia'),
(120134, 'https://ror.org/00cnme797', 'no_lang_code', 1, 'https://ror.org/00cnme797 Kanazawa Gakuin University 金沢学院大学'),
(120135, 'https://ror.org/03x874836', 'en', 1, 'https://ror.org/03x874836 Tsuru University éƒ½ē•™ę–‡ē§‘å¤§å­¦'),
(120136, 'https://ror.org/018ka0e03', 'en', 1, 'https://ror.org/018ka0e03 Hokkaido Sports Culture Association äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“ä½“č‚²ę–‡åŒ–å”ä¼š'),
(120137, 'https://ror.org/030ajjm26', 'no_lang_code', 1, 'https://ror.org/030ajjm26 Absa Bank (South Africa)'),
(120138, 'https://ror.org/03mry3754', 'id', 1, 'https://ror.org/03mry3754 Universitas Kristen Immanuel'),
(120139, 'https://ror.org/02wpfgw42', 'en', 1, 'https://ror.org/02wpfgw42 Ecdysis Foundation'),
(120140, 'https://ror.org/031vecd37', 'pt', 1, 'https://ror.org/031vecd37 Instituto Superior de CiĆŖncias Empresariais e do Turismo'),
(120141, 'https://ror.org/017b91861', 'it', 1, 'https://ror.org/017b91861 Fondazione Golgi Cenci'),
(120142, 'https://ror.org/00vv71t53', 'en', 1, 'https://ror.org/00vv71t53 IGAD Centre for Pastoral Areas and Livestock Development'),
(120143, 'https://ror.org/02q2ye002', 'en', 1, 'https://ror.org/02q2ye002 Japan Dust Control Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ€ć‚¹ćƒˆć‚³ćƒ³ćƒˆćƒ­ćƒ¼ćƒ«å”ä¼š'),
(120144, 'https://ror.org/04zdr7750', 'en', 1, 'https://ror.org/04zdr7750 Japan Biscuit Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ćƒ“ć‚¹ć‚±ćƒƒćƒˆå”ä¼š'),
(120145, 'https://ror.org/04tfyjh33', 'en', 1, 'https://ror.org/04tfyjh33 Japan Spina Bifida & Hydrocephalus Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äŗŒåˆ†č„Šę¤Žćƒ»ę°“é ­ē—‡ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(120146, 'https://ror.org/029sqvy31', 'es', 1, 'https://ror.org/029sqvy31 Laboratorio de GeotecnologĆ­as'),
(120147, 'https://ror.org/01sybbs10', 'en', 1, 'https://ror.org/01sybbs10 Aikikai Foundation å…¬ē›Šč²”å›£ę³•äŗŗåˆę°—ä¼š'),
(120148, 'https://ror.org/051t33546', 'en', 1, 'https://ror.org/051t33546 Asian Disaster Preparedness Center'),
(120149, 'https://ror.org/00x7xj027', 'en', 1, 'https://ror.org/00x7xj027 Village Health Works'),
(120150, 'https://ror.org/00s0vmr72', 'en', 1, 'https://ror.org/00s0vmr72 Japan Greenhouse Horticulture Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę–½čØ­åœ’čŠøå”ä¼š'),
(120151, 'https://ror.org/01d6ka036', 'tr', 1, 'https://ror.org/01d6ka036 Türkiye Sağlık Enstitüleri Başkanlığı'),
(120152, 'https://ror.org/05mk27574', 'no_lang_code', 1, 'https://ror.org/05mk27574 Adimab (United States)'),
(120153, 'https://ror.org/04sy3cj85', 'en', 1, 'https://ror.org/04sy3cj85 Slovak National Museum'),
(120154, 'https://ror.org/04zr1vg95', 'en', 1, 'https://ror.org/04zr1vg95 Thermoplastic Composites Research Center'),
(120155, 'https://ror.org/05ggwvw88', 'en', 1, 'https://ror.org/05ggwvw88 Japan Hair Science Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęÆ›é«Ŗē§‘å­¦å”ä¼š'),
(120156, 'https://ror.org/05qq5b157', 'vi', 1, 'https://ror.org/05qq5b157 Tran Dai Nghia University TrĘ°į»ng ĐẔi hį»c Trįŗ§n ĐẔi NghÄ©a'),
(120157, 'https://ror.org/02e9yx751', 'no_lang_code', 1, 'https://ror.org/02e9yx751 Alphabet (United States)'),
(120158, 'https://ror.org/01mmx3p40', 'no_lang_code', 1, 'https://ror.org/01mmx3p40 Intravacc (Netherlands)'),
(120159, 'https://ror.org/05dz27378', 'en', 1, 'https://ror.org/05dz27378 Norwegian Mapping Authority'),
(120160, 'https://ror.org/028d12s45', 'en', 1, 'https://ror.org/028d12s45 University Canada West'),
(120161, 'https://ror.org/03hsaqw61', 'en', 1, 'https://ror.org/03hsaqw61 Wellspring University'),
(120162, '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'),
(120163, 'https://ror.org/01kz4v718', 'en', 1, 'https://ror.org/01kz4v718 Ishikawa Foundation For International Exchange å…¬ē›Šč²”å›£ę³•äŗŗēŸ³å·ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(120164, 'https://ror.org/04z3fgm65', 'en', 1, 'https://ror.org/04z3fgm65 Kampo Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‹ć‚“ć½č²”å›£'),
(120165, 'https://ror.org/01xzaty57', 'en', 1, 'https://ror.org/01xzaty57 Chiyoda Mutual Life Foundation äø€čˆ¬č²”å›£ę³•äŗŗåƒä»£ē”°å„åŗ·é–‹ē™ŗäŗ‹ę„­å›£'),
(120166, 'https://ror.org/008w8py05', 'en', 1, 'https://ror.org/008w8py05 University of the People'),
(120167, 'https://ror.org/016r5vm61', 'en', 1, 'https://ror.org/016r5vm61 Academician Stepan Demianchuk International University Of Economics and Humanities ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ економіко-Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Дтепана Š”ŠµŠ¼ā€™ŃŠ½Ń‡ŃƒŠŗŠ°'),
(120168, 'https://ror.org/03s0yqk10', 'en', 1, 'https://ror.org/03s0yqk10 Japan Electric Measuring Instruments Manufacturers'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę°—čØˆęø¬å™Øå·„ę„­ä¼š'),
(120169, 'https://ror.org/02z480994', 'no_lang_code', 1, 'https://ror.org/02z480994 BenevolentAI (United Kingdom)'),
(120170, 'https://ror.org/02jdjw316', 'en', 1, 'https://ror.org/02jdjw316 JAPAN Association of Botanical Gardens å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©åœ’å”ä¼š'),
(120171, 'https://ror.org/05ect4e57', 'en', 1, 'https://ror.org/05ect4e57 Louisiana State University Universidad Estatal de Luisiana UniversitĆ© d''Ɖtat de Louisiane'),
(120172, 'https://ror.org/04qd57q23', 'es', 1, 'https://ror.org/04qd57q23 Instituto Tecnológico de la Energía'),
(120173, 'https://ror.org/02mtnqb70', 'en', 1, 'https://ror.org/02mtnqb70 Association of Building Engineering and Equipment äø€čˆ¬ē¤¾å›£ę³•äŗŗå»ŗēÆ‰čØ­å‚™ē¶œåˆå”ä¼š'),
(120174, 'https://ror.org/04vb9qy63', 'en', 1, 'https://ror.org/04vb9qy63 Ishikawa Prefectural Nursing University ēŸ³å·ēœŒē«‹ēœ‹č­·å¤§å­¦'),
(120175, 'https://ror.org/01vmqaq17', 'en', 1, 'https://ror.org/01vmqaq17 Norsk institutt for bƦrekraftsforskning AS Norwegian Institute for Sustainability Research'),
(120176, 'https://ror.org/0433hvq53', 'en', 1, 'https://ror.org/0433hvq53 Gnessin Russian Academy of Music Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø имени Гнесиных'),
(120177, 'https://ror.org/023esdc37', 'en', 1, 'https://ror.org/023esdc37 African Wildlife Foundation'),
(120178, 'https://ror.org/05dj22k02', 'en', 1, 'https://ror.org/05dj22k02 Lukenya University'),
(120179, 'https://ror.org/02kw1ws04', 'en', 1, 'https://ror.org/02kw1ws04 Beijing Institute for General Artificial Intelligence åŒ—äŗ¬é€šē”Øäŗŗå·„ę™ŗčƒ½ē ”ē©¶é™¢'),
(120180, 'https://ror.org/025zwvh44', 'no_lang_code', 1, 'https://ror.org/025zwvh44 AbCellera (Canada)'),
(120181, 'https://ror.org/040sbec56', 'en', 1, 'https://ror.org/040sbec56 Foundation for Transport and Energy Research and Development'),
(120182, 'https://ror.org/0056bae70', 'en', 1, 'https://ror.org/0056bae70 Ponce Health Sciences University, St. Louis'),
(120183, 'https://ror.org/04gd0dj10', 'en', 1, 'https://ror.org/04gd0dj10 Vietnam Institute of Research and Development Clinical Microbiology Viện NghiĆŖn Cứu VĆ  PhĆ”t Triển Vi Sinh LĆ¢m SĆ ng Việt Nam'),
(120184, 'https://ror.org/00p61c264', 'en', 1, 'https://ror.org/00p61c264 S.S. Research Foundation'),
(120185, 'https://ror.org/03d5pp684', 'pt', 1, 'https://ror.org/03d5pp684 Escola Superior de Enfermagem de São José de Cluny'),
(120186, 'https://ror.org/00eere705', 'en', 1, 'https://ror.org/00eere705 Open Access Scholarly Publishing Association'),
(120187, 'https://ror.org/03yvwk494', 'en', 1, 'https://ror.org/03yvwk494 Japan federation of landscape contractors äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é€ åœ’ēµ„åˆé€£åˆä¼š'),
(120188, 'https://ror.org/00bv4hb15', 'fr', 1, 'https://ror.org/00bv4hb15 Centre Hospitalier de Wallonie Picarde'),
(120189, 'https://ror.org/04p7nt802', 'en', 1, 'https://ror.org/04p7nt802 The Association of Physical Fitness Promotion & Guidance å…¬ē›Šč²”å›£ę³•äŗŗä½“åŠ›ć¤ćć‚ŠęŒ‡å°Žå”ä¼š'),
(120190, 'https://ror.org/03msc2c98', 'en', 1, 'https://ror.org/03msc2c98 Institute of Labor Education and Culture å…¬ē›Šē¤¾å›£ę³•äŗŗę•™č‚²ę–‡åŒ–å”ä¼š'),
(120191, 'https://ror.org/05ekd6257', 'en', 1, 'https://ror.org/05ekd6257 THE Japan Automobile Tyre Manufacturers Association, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»Šć‚æć‚¤ćƒ¤å”ä¼š'),
(120192, 'https://ror.org/02d5ey042', 'en', 1, 'https://ror.org/02d5ey042 Kanagawa Arts Foundation å…¬ē›Šč²”å›£ę³•äŗŗē„žå„ˆå·čŠøč”“ę–‡åŒ–č²”å›£'),
(120193, 'https://ror.org/04erbyb60', 'en', 1, 'https://ror.org/04erbyb60 National Library Service Malawi'),
(120194, 'https://ror.org/01p4enw18', 'en', 1, 'https://ror.org/01p4enw18 Kenya Institute of Special Education'),
(120195, 'https://ror.org/03n0gvg35', 'en', 1, 'https://ror.org/03n0gvg35 Batchelor Institute of Indigenous Tertiary Education'),
(120196, 'https://ror.org/00m4n3q75', 'en', 1, 'https://ror.org/00m4n3q75 Labor Management Education Center å…¬ē›Šē¤¾å›£ę³•äŗŗåŠ“å‹™ē®”ē†ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(120197, 'https://ror.org/01c8z0k91', 'lv', 1, 'https://ror.org/01c8z0k91 Agroresursu un ekonomikas institūts'),
(120198, 'https://ror.org/04xgb0s62', 'en', 1, 'https://ror.org/04xgb0s62 Elms College'),
(120199, 'https://ror.org/01gjzex58', 'en', 1, 'https://ror.org/01gjzex58 British Association for Counselling and Psychotherapy'),
(120200, 'https://ror.org/04r36gx70', 'en', 1, 'https://ror.org/04r36gx70 Nagano Association of Medical Technologists äø€čˆ¬ē¤¾å›£ę³•äŗŗé•·é‡ŽēœŒč‡ØåŗŠę¤œęŸ»ęŠ€åø«ä¼š'),
(120201, 'https://ror.org/05nqb8479', 'no_lang_code', 1, 'https://ror.org/05nqb8479 Quantify Research (Sweden)'),
(120202, 'https://ror.org/02meh8z92', 'no', 1, 'https://ror.org/02meh8z92 Stavanger Kommune'),
(120203, 'https://ror.org/050asrz41', 'de', 1, 'https://ror.org/050asrz41 Bundesgesellschaft für Endlagerung'),
(120204, 'https://ror.org/046q6xz26', 'en', 1, 'https://ror.org/046q6xz26 Paul Mellon Centre'),
(120205, 'https://ror.org/04pwevm04', 'en', 1, 'https://ror.org/04pwevm04 Food and Drugs Authority'),
(120206, 'https://ror.org/03cv0r897', 'en', 1, 'https://ror.org/03cv0r897 Dallas Theological Seminary'),
(120207, 'https://ror.org/01q103038', 'it', 1, 'https://ror.org/01q103038 Ospedale di Stato della Repubblica di San Marino'),
(120208, 'https://ror.org/00bqc1z76', 'en', 1, 'https://ror.org/00bqc1z76 Central-Asian Institute for Applied Geosciences Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Азиатский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГных ИсслеГований Земли'),
(120209, 'https://ror.org/03x4xvr14', 'en', 1, 'https://ror.org/03x4xvr14 Japan Eye Bank Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¢ć‚¤ćƒćƒ³ć‚Æå”ä¼š'),
(120210, 'https://ror.org/0501kt719', 'pt', 1, 'https://ror.org/0501kt719 Centro Nacional de Artesanato National Centre for Art, Crafts and Design'),
(120211, 'https://ror.org/02y6wn132', 'fr', 1, 'https://ror.org/02y6wn132 Bureau National d’Études pour le DĆ©veloppement Rural National Bureau of Studies for Rural Development'),
(120212, 'https://ror.org/02qvsy238', 'en', 1, 'https://ror.org/02qvsy238 Japan Interior Industry Association å…¬ē›Šē¤¾å›£ę³•äŗŗć‚¤ćƒ³ćƒ†ćƒŖć‚¢ē”£ę„­å”ä¼š'),
(120213, 'https://ror.org/03w3a0h43', 'en', 1, 'https://ror.org/03w3a0h43 Evangelische Hochschule Freiburg Protestant University of Applied Sciences Freiburg'),
(120214, 'https://ror.org/058aw2d25', 'en', 1, 'https://ror.org/058aw2d25 Mississippi Department of Environmental Quality'),
(120215, 'https://ror.org/04ekebw10', 'en', 1, 'https://ror.org/04ekebw10 Akre University for Applied Sciences'),
(120216, 'https://ror.org/01cxsc908', 'en', 1, 'https://ror.org/01cxsc908 Japan Meat Grading Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿč‚‰ę ¼ä»˜å”ä¼š'),
(120217, 'https://ror.org/00k3pxy76', 'en', 1, 'https://ror.org/00k3pxy76 Japanese Society for Medical and Biological Engineering å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”Ÿä½“åŒ»å·„å­¦ä¼š'),
(120218, 'https://ror.org/05gky6m26', 'en', 1, 'https://ror.org/05gky6m26 Shanghai Key Laboratory of Computer Software Testing and Evaluating äøŠęµ·åø‚č®”ē®—ęœŗč½Æä»¶čÆ„ęµ‹é‡ē‚¹å®žéŖŒå®¤'),
(120219, 'https://ror.org/05qzrbt52', 'en', 1, 'https://ror.org/05qzrbt52 Archaeological Museum in Poznań Muzeum Archeologiczne w Poznaniu'),
(120220, 'https://ror.org/01nfeyj87', 'en', 1, 'https://ror.org/01nfeyj87 Cornerstone University'),
(120221, 'https://ror.org/03wvtj562', 'en', 1, 'https://ror.org/03wvtj562 University of Education and Entrepreneurship'),
(120222, 'https://ror.org/03r1ch818', 'en', 1, 'https://ror.org/03r1ch818 Indiana Institute of Technology'),
(120223, 'https://ror.org/03jxpjf95', 'no_lang_code', 1, 'https://ror.org/03jxpjf95 DECTRIS (Switzerland)'),
(120224, 'https://ror.org/03s957998', 'en', 1, 'https://ror.org/03s957998 Japan SOHO Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬SOHO協会'),
(120225, 'https://ror.org/02amxp214', 'no_lang_code', 1, 'https://ror.org/02amxp214 Mahachulalongkornrajavidyalaya University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø”ąø«ąø²ąøˆąøøąø¬ąø²ąø„ąø‡ąøąø£ąø“ąø£ąø²ąøŠąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(120226, 'https://ror.org/02v95pf53', 'en', 1, 'https://ror.org/02v95pf53 Rural Culture Association Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗč¾²å±±ę¼ę‘ę–‡åŒ–å”ä¼š'),
(120227, 'https://ror.org/01c3z9v97', 'en', 1, 'https://ror.org/01c3z9v97 Global Health Drug Discovery Institute å…Øēƒå„åŗ·čÆē‰©ē ”å‘äø­åæƒ'),
(120228, 'https://ror.org/03j5p4b58', 'en', 1, 'https://ror.org/03j5p4b58 Center for Digital Antiquity'),
(120229, 'https://ror.org/05fn2nj53', 'no_lang_code', 1, 'https://ror.org/05fn2nj53 Xilio Therapeutics (United States)'),
(120230, 'https://ror.org/01bz1nc45', 'en', 1, 'https://ror.org/01bz1nc45 Japan Foundation for Regional Vitalization äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸē·åˆę•“å‚™č²”å›£'),
(120231, 'https://ror.org/01652xx78', 'no_lang_code', 1, 'https://ror.org/01652xx78 Stam (Italy)'),
(120232, 'https://ror.org/01rqcwn02', 'en', 1, 'https://ror.org/01rqcwn02 LCC International University LCC tarptautinis universitetas'),
(120233, 'https://ror.org/00w8v1794', 'fr', 1, 'https://ror.org/00w8v1794 Ecole SupƩrieure d''Agronomie Mostaganem'),
(120234, 'https://ror.org/00y35qw13', 'no_lang_code', 1, 'https://ror.org/00y35qw13 Celon Pharma (Poland)'),
(120235, 'https://ror.org/03274r707', 'en', 1, 'https://ror.org/03274r707 Japan Fertilizer and Feed Inspection Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č‚„ē³§ę¤œå®šå”ä¼š'),
(120236, 'https://ror.org/006hf6230', 'en', 1, 'https://ror.org/006hf6230 Universiteit Twente University of Twente'),
(120237, 'https://ror.org/018t8yw14', 'nl', 1, 'https://ror.org/018t8yw14 Hotelschool Den Haag Hotelschool The Hague'),
(120238, 'https://ror.org/04fwtam12', 'en', 1, 'https://ror.org/04fwtam12 National Environment Management Authority'),
(120239, 'https://ror.org/024msj675', 'es', 1, 'https://ror.org/024msj675 Universidad YacambĆŗ'),
(120240, 'https://ror.org/02sv6sx84', 'en', 1, 'https://ror.org/02sv6sx84 Association for Toyonaka Multicultural Symbiosis å…¬ē›Šč²”å›£ę³•äŗŗćØć‚ˆćŖć‹å›½éš›äŗ¤ęµå”ä¼š'),
(120241, 'https://ror.org/033ynyj02', 'de', 1, 'https://ror.org/033ynyj02 Forschungsinstitut für Leder und Kunststoffbahnen'),
(120242, 'https://ror.org/011t2v902', 'en', 1, 'https://ror.org/011t2v902 Carlow University'),
(120243, 'https://ror.org/001fjcz27', 'en', 1, 'https://ror.org/001fjcz27 The Real Estate Transaction Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗäøå‹•ē”£ęµé€šęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(120244, 'https://ror.org/02cfbgz09', 'en', 1, 'https://ror.org/02cfbgz09 Japan Dental Technologists Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę­Æē§‘ęŠ€å·„å£«ä¼š'),
(120245, 'https://ror.org/011zwgr78', 'en', 1, 'https://ror.org/011zwgr78 Japan Die&Mold Industry Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‡‘åž‹å·„ę„­ä¼š'),
(120246, 'https://ror.org/03e51bc44', 'en', 1, 'https://ror.org/03e51bc44 Japan Kennel Club äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚øćƒ£ćƒ‘ćƒ³ć‚±ćƒćƒ«ć‚Æćƒ©ćƒ–'),
(120247, 'https://ror.org/03zsp0254', 'en', 1, 'https://ror.org/03zsp0254 American University of Phnom Penh įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž¶įž˜įŸįžšįž·įž€įž¶įŸ†įž„įž—įŸ’įž“įŸ†įž–įŸįž‰'),
(120248, 'https://ror.org/02394tn51', 'en', 1, 'https://ror.org/02394tn51 Columbia Basin College'),
(120249, 'https://ror.org/022n30916', 'en', 1, 'https://ror.org/022n30916 Economic Policy Research Centre'),
(120250, 'https://ror.org/030gj2p37', 'nl', 1, 'https://ror.org/030gj2p37 Ziekenhuis Nij Smellinghe'),
(120251, 'https://ror.org/00nss6615', 'pt', 0, 'https://ror.org/00nss6615 Angolan Institute of Standardization and Quality Instituto Angolano de Normalização e Qualidade'),
(120252, 'https://ror.org/011d6dm60', 'en', 1, 'https://ror.org/011d6dm60 International University of Management'),
(120253, 'https://ror.org/05tqt7092', 'en', 1, 'https://ror.org/05tqt7092 Jefferson State Community College'),
(120254, 'https://ror.org/019g1wb57', 'no_lang_code', 1, 'https://ror.org/019g1wb57 Aerogen (Ireland)'),
(120255, 'https://ror.org/015g9rt45', 'en', 1, 'https://ror.org/015g9rt45 Kagoshima Tokusyukai Hospital åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šé¹æå…å³¶å¾³ę“²ä¼šē—…é™¢'),
(120256, 'https://ror.org/04rvb4d10', 'tr', 1, 'https://ror.org/04rvb4d10 Turkish Medical Association Türk Tabipleri Birliği'),
(120257, 'https://ror.org/053c1ry09', 'en', 1, 'https://ror.org/053c1ry09 Njawara Agricultural Training Centre, Gambia'),
(120258, 'https://ror.org/03feyt230', 'en', 1, 'https://ror.org/03feyt230 Tougaloo College'),
(120259, 'https://ror.org/007fp9y47', 'no_lang_code', 1, 'https://ror.org/007fp9y47 Rapt Therapeutics (United States)'),
(120260, 'https://ror.org/05bmnqf11', 'es', 1, 'https://ror.org/05bmnqf11 Universidad Da Vinci'),
(120261, 'https://ror.org/05qrj6z44', 'en', 1, 'https://ror.org/05qrj6z44 Family Problems Information Center å…¬ē›Šē¤¾å›£ę³•äŗŗå®¶åŗ­å•é”Œęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(120262, 'https://ror.org/04f1srs73', 'en', 1, 'https://ror.org/04f1srs73 Oxford Institute for Energy Studies'),
(120263, 'https://ror.org/02bw2pq83', 'en', 1, 'https://ror.org/02bw2pq83 Russian National Public Library for Science and Technology Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŃƒŠ±Š»ŠøŃ‡Š½Š°Ń Š½Š°ŃƒŃ‡Š½Š¾-Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń библиотека'),
(120264, 'https://ror.org/034dp0092', 'es', 1, 'https://ror.org/034dp0092 Centro Tecnológico Nacional de la Conserva y Alimentación'),
(120265, 'https://ror.org/031ydja85', 'en', 1, 'https://ror.org/031ydja85 Establishment of Tropical Marine Ecological Research äø€čˆ¬č²”å›£ę³•äŗŗē†±åøÆęµ·ę“‹ē”Ÿę…‹ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(120266, 'https://ror.org/03n2dpf45', 'en', 1, 'https://ror.org/03n2dpf45 Japan Veterinary Products Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©ē”ØåŒ»č–¬å“å”ä¼š'),
(120267, 'https://ror.org/05xkxz718', 'en', 1, 'https://ror.org/05xkxz718 Soroti University'),
(120268, 'https://ror.org/03ngp7731', 'no_lang_code', 1, 'https://ror.org/03ngp7731 Advanced Cooling Technologies (United States)'),
(120269, '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'),
(120270, 'https://ror.org/02x62qd57', 'es', 1, 'https://ror.org/02x62qd57 Universidad Católica Santa María La Antigua'),
(120271, 'https://ror.org/02aa8kj12', 'en', 1, 'https://ror.org/02aa8kj12 The People''s Hospital of Guangxi Zhuang Autonomous Region å¹æč„æå£®ę—č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(120272, 'https://ror.org/0415n4468', 'en', 1, 'https://ror.org/0415n4468 Institut für Ressourceneffizienz und Energiestrategien Institute for Resource Efficiency and Energy Strategies'),
(120273, 'https://ror.org/03nbkdz84', 'en', 1, 'https://ror.org/03nbkdz84 Sapporo Construction Association äø€čˆ¬ē¤¾å›£ę³•äŗŗęœ­å¹Œå»ŗčØ­ę„­å”ä¼š'),
(120274, 'https://ror.org/01r6rc776', 'en', 1, 'https://ror.org/01r6rc776 Geothermal Development Company'),
(120275, 'https://ror.org/05r89fw56', 'es', 1, 'https://ror.org/05r89fw56 Universidad del Valle de Puebla'),
(120276, 'https://ror.org/00qv0tw17', 'en', 1, 'https://ror.org/00qv0tw17 SUNY College of Environmental Science and Forestry'),
(120277, 'https://ror.org/031chmq77', 'en', 1, 'https://ror.org/031chmq77 Somaiya Vidyavihar University'),
(120278, 'https://ror.org/03rn4td60', 'en', 1, 'https://ror.org/03rn4td60 San Diego Public Library'),
(120279, 'https://ror.org/01eq4qj27', 'pt', 1, 'https://ror.org/01eq4qj27 Instituto do Emprego e Formação Profissional'),
(120280, 'https://ror.org/032y7r881', 'en', 1, 'https://ror.org/032y7r881 IntraHealth International'),
(120281, 'https://ror.org/03xjqft75', 'en', 1, 'https://ror.org/03xjqft75 The Shinjuku Foundation for Creation of Future å…¬ē›Šč²”å›£ę³•äŗŗę–°å®æęœŖę„å‰µé€ č²”å›£'),
(120282, 'https://ror.org/00v09dh56', 'en', 1, 'https://ror.org/00v09dh56 Japan Construction Engineers'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬å»ŗčØ­ęŠ€č”“å”ä¼š'),
(120283, 'https://ror.org/02kqvht67', 'hu', 1, 'https://ror.org/02kqvht67 Regional Centre for Energy Policy Research RegionÔlis EnergiagazdasÔgi Kutatóközpont (Hungary)'),
(120284, 'https://ror.org/03v036s45', 'en', 1, 'https://ror.org/03v036s45 Global Urgent and Advanced Research and Development'),
(120285, 'https://ror.org/000a9gh18', 'en', 1, 'https://ror.org/000a9gh18 The Japan Society of Plasma Science and Nuclear Fusion Research äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ—ćƒ©ć‚ŗćƒžćƒ»ę øčžåˆå­¦ä¼š'),
(120286, 'https://ror.org/052kwn289', 'no_lang_code', 1, 'https://ror.org/052kwn289 Avantium (Netherlands)'),
(120287, 'https://ror.org/003taff89', 'en', 1, 'https://ror.org/003taff89 Japan Society of Erosion Control Engineering å…¬ē›Šē¤¾å›£ę³•äŗŗē ‚é˜²å­¦ä¼š'),
(120288, 'https://ror.org/05nx14188', 'pt', 1, 'https://ror.org/05nx14188 Escola Superior de Tecnologia e Gestão'),
(120289, 'https://ror.org/051wtbz44', 'en', 1, 'https://ror.org/051wtbz44 Hamanasu Foundation å…¬ē›Šč²”å›£ę³•äŗŗćÆć¾ćŖć™č²”å›£'),
(120290, 'https://ror.org/04fjwpp27', 'en', 1, 'https://ror.org/04fjwpp27 ArtCenter College of Design'),
(120291, 'https://ror.org/049yd2834', 'en', 1, 'https://ror.org/049yd2834 Bank of Cyprus Oncology Center Ογκολογικό ĪšĪ­Ī½Ļ„ĻĪæ Τράπεζας ĪšĻĻ€ĻĪæĻ…'),
(120292, 'https://ror.org/04h7gk919', 'no_lang_code', 1, 'https://ror.org/04h7gk919 Alverno College'),
(120293, 'https://ror.org/02h4pw461', 'nl', 1, 'https://ror.org/02h4pw461 Accare'),
(120294, 'https://ror.org/0317e8f14', 'en', 1, 'https://ror.org/0317e8f14 The Association for Promotion of Public Local Information and Communication äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½åœ°åŸŸęƒ…å ±åŒ–ęŽØé€²å”ä¼š'),
(120295, 'https://ror.org/02y8r3w10', 'no_lang_code', 1, 'https://ror.org/02y8r3w10 Terra Quantum (Switzerland)'),
(120296, 'https://ror.org/013gj1r61', 'en', 1, 'https://ror.org/013gj1r61 Gulf Organisation for Research & Development'),
(120297, 'https://ror.org/02ccjvv94', 'en', 1, 'https://ror.org/02ccjvv94 Kyoto Victim Support Center å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½ēŠÆē½Ŗč¢«å®³č€…ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(120298, 'https://ror.org/03wj5m279', 'no_lang_code', 1, 'https://ror.org/03wj5m279 NXAI GmbH NXAI GmbH (Austria)'),
(120299, 'https://ror.org/03arq3225', 'en', 1, 'https://ror.org/03arq3225 Michael J. Fox Foundation'),
(120300, 'https://ror.org/00vhgwv19', 'ga', 1, 'https://ror.org/00vhgwv19 Met Ɖireann'),
(120301, 'https://ror.org/038zsab95', 'en', 1, 'https://ror.org/038zsab95 The Japan-Pakistan Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ»ćƒ‘ć‚­ć‚¹ć‚æćƒ³å”ä¼š'),
(120302, 'https://ror.org/006zhcc50', 'en', 1, 'https://ror.org/006zhcc50 The Fertilization Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗč‚„ę–™ē§‘å­¦ē ”ē©¶ę‰€'),
(120303, 'https://ror.org/04qd56q22', 'en', 1, 'https://ror.org/04qd56q22 Track2Training'),
(120304, 'https://ror.org/00pbs7327', 'en', 1, 'https://ror.org/00pbs7327 Japan Wood-Products Information and Research Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęœØęē·åˆęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(120305, 'https://ror.org/05awn1872', 'en', 1, 'https://ror.org/05awn1872 William J. Hughes Technical Center for Advanced Aerospace'),
(120306, 'https://ror.org/05tegpz81', 'fr', 1, 'https://ror.org/05tegpz81 ISTOM - Ɖcole supĆ©rieure d''agro-dĆ©veloppement international'),
(120307, 'https://ror.org/05ymt3c12', 'no_lang_code', 1, 'https://ror.org/05ymt3c12 AVEVA (Sweden)'),
(120308, 'https://ror.org/03cgz8503', 'no_lang_code', 1, 'https://ror.org/03cgz8503 Wardell Armstrong (United Kingdom)'),
(120309, 'https://ror.org/05a5v7410', 'en', 1, 'https://ror.org/05a5v7410 Tanzania Bureau of Standards'),
(120310, 'https://ror.org/01ndry741', 'en', 1, 'https://ror.org/01ndry741 Ishigami Memorial Institute of Medicine äø€čˆ¬č²”å›£ę³•äŗŗēŸ³ē„žē“€åæµåŒ»å­¦ē ”ē©¶ę‰€'),
(120311, 'https://ror.org/02ag0aq56', 'es', 1, 'https://ror.org/02ag0aq56 Centro Tecnológico del Mueble y la Madera de la Región de Murcia Technological Centre of Furniture and Wood of the Region of Murcia'),
(120312, 'https://ror.org/05ddevr29', 'es', 1, 'https://ror.org/05ddevr29 Universidad TƩcnica Privada Cosmos'),
(120313, 'https://ror.org/017kzqj25', 'en', 1, 'https://ror.org/017kzqj25 Ginreikai å…¬ē›Šē¤¾å›£ę³•äŗŗéŠ€éˆ“ä¼š'),
(120314, 'https://ror.org/00kewyc44', 'no_lang_code', 1, 'https://ror.org/00kewyc44 Praj (India)'),
(120315, 'https://ror.org/03pvq4r03', 'fr', 1, 'https://ror.org/03pvq4r03 Higher Institute of Health Sciences of Djibouti Institut SupƩrieur des Sciences de la SantƩ'),
(120316, 'https://ror.org/047426m28', 'en', 1, 'https://ror.org/047426m28 Universidad de Illinois en Urbana-Champaign University of Illinois Urbana-Champaign UniversitƩ de l''Illinois Ơ Urbana-Champaign'),
(120317, 'https://ror.org/05qvvrd81', 'en', 1, 'https://ror.org/05qvvrd81 Ocean Alliance'),
(120318, 'https://ror.org/01f38w959', 'en', 1, 'https://ror.org/01f38w959 Center for Documentation of Cultural and Natural Heritage Ł…Ų±ŁƒŲ² ŲŖŁˆŲ«ŁŠŁ‚ التراث Ų§Ł„Ų­Ų¶Ų§Ų±ŁŠ ŁˆŲ§Ł„Ų·ŲØŁŠŲ¹ŁŠ'),
(120319, 'https://ror.org/022mctk52', 'en', 1, 'https://ror.org/022mctk52 Japan Industrial Counselors Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£ę„­ć‚«ć‚¦ćƒ³ć‚»ćƒ©ćƒ¼å”ä¼š'),
(120320, 'https://ror.org/00pp7q070', 'en', 1, 'https://ror.org/00pp7q070 Japan Electrical Construction Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»čØ­å·„ę„­å”ä¼š'),
(120321, 'https://ror.org/03pptns37', 'en', 1, 'https://ror.org/03pptns37 Maine Department of Agriculture Conservation and Forestry'),
(120322, 'https://ror.org/016ayvn05', 'en', 1, 'https://ror.org/016ayvn05 Japan Telephone Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬é›»č©±å–å¼•ę„­å”ä¼š'),
(120323, 'https://ror.org/01g7ypx22', 'en', 1, 'https://ror.org/01g7ypx22 Washington Department of Social and Health Services'),
(120324, 'https://ror.org/02hr2bm48', 'en', 1, 'https://ror.org/02hr2bm48 Florida Geological Survey'),
(120325, 'https://ror.org/009qnrs53', 'es', 1, 'https://ror.org/009qnrs53 Asepeyo Hospital Sant Cugat'),
(120326, 'https://ror.org/04s8g8527', 'en', 1, 'https://ror.org/04s8g8527 The Japan Society of Seismic Isolation äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…éœ‡ę§‹é€ å”ä¼š'),
(120327, 'https://ror.org/05kx0wb86', 'en', 1, 'https://ror.org/05kx0wb86 York Central Hospital'),
(120328, 'https://ror.org/0131kfw61', 'en', 1, 'https://ror.org/0131kfw61 Khesar Gyalpo University of Medical Sciences of Bhutan གེ་སར་རྒྱལ་པོ་གསོ་རིག་གཙནག་ལག་སློབ་སྔེའི'),
(120329, 'https://ror.org/012jaev32', 'en', 1, 'https://ror.org/012jaev32 Ujioubaku Hospital åŒ»ē™‚ę³•äŗŗę „ä»ä¼šå®‡ę²»ćŠć†ć°ćē—…é™¢'),
(120330, 'https://ror.org/0581b6d66', 'en', 1, 'https://ror.org/0581b6d66 Fleming College'),
(120331, 'https://ror.org/009nnap37', 'en', 1, 'https://ror.org/009nnap37 Institute of Accountancy Arusha'),
(120332, 'https://ror.org/00xq3k060', 'en', 1, 'https://ror.org/00xq3k060 Catholic University of Cameroon UniversitƩ catholique du Cameroun'),
(120333, 'https://ror.org/00n1ard79', 'en', 1, 'https://ror.org/00n1ard79 The Overseas Human Resources and Industry Development Association äø€čˆ¬č²”å›£ę³•äŗŗęµ·å¤–ē”£ę„­äŗŗęč‚²ęˆå”ä¼š'),
(120334, 'https://ror.org/01fn1gp77', 'en', 1, 'https://ror.org/01fn1gp77 Okochi Memorial Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¤§ę²³å†…čØ˜åæµä¼š'),
(120335, 'https://ror.org/054yged29', 'en', 1, 'https://ror.org/054yged29 West African Centre for Cell Biology of Infectious Pathogens'),
(120336, 'https://ror.org/017dsbm73', 'en', 1, 'https://ror.org/017dsbm73 Kagoshima Industry Support Center å…¬ē›Šč²”å›£ę³•äŗŗć‹ć”ć—ć¾ē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(120337, 'https://ror.org/001we8w24', 'en', 1, 'https://ror.org/001we8w24 The Virtual Reality Society of Japan ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ćƒćƒ¼ćƒćƒ£ćƒ«ćƒŖć‚¢ćƒŖćƒ†ć‚£å­¦ä¼š'),
(120338, 'https://ror.org/00y6kw130', 'en', 1, 'https://ror.org/00y6kw130 Foodservice Industry Research Institute å…¬ē›Šč²”å›£ę³•äŗŗé£Ÿć®å®‰å…Øćƒ»å®‰åæƒč²”å›£'),
(120339, 'https://ror.org/00kb5s826', 'en', 1, 'https://ror.org/00kb5s826 GlobalNxt University'),
(120340, 'https://ror.org/0330w1668', 'en', 1, 'https://ror.org/0330w1668 Montreat College'),
(120341, 'https://ror.org/029e5ny19', 'no_lang_code', 1, 'https://ror.org/029e5ny19 Levvel'),
(120342, 'https://ror.org/04vs2x012', 'en', 1, 'https://ror.org/04vs2x012 Suzuken Memorial Foundation å…¬ē›Šč²”å›£ę³•äŗŗéˆ“ęœØč¬™äø‰čØ˜åæµåŒ»ē§‘å­¦åæœē”Øē ”ē©¶č²”å›£'),
(120343, 'https://ror.org/058xxg166', 'en', 1, 'https://ror.org/058xxg166 The Japan Bridge Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę©‹ę¢å»ŗčØ­å”ä¼š'),
(120344, 'https://ror.org/023kmsj44', 'no_lang_code', 1, 'https://ror.org/023kmsj44 WINGS ICT Solutions (Greece)'),
(120345, 'https://ror.org/04d96k197', 'en', 1, 'https://ror.org/04d96k197 Mitsubishi Yowakai Foundation å…¬ē›Šč²”å›£ę³•äŗŗäø‰č±é¤Šå’Œä¼š'),
(120346, 'https://ror.org/02gtj3932', 'es', 1, 'https://ror.org/02gtj3932 Universidad de Diseño, Innovación y Tecnología'),
(120347, 'https://ror.org/05tep8d22', 'en', 1, 'https://ror.org/05tep8d22 Anna Maria College'),
(120348, 'https://ror.org/01n37vr67', 'en', 1, 'https://ror.org/01n37vr67 Centro Nacional de TecnologĆ­a y Seguridad Alimentaria National Centre for Technology and Food Safety'),
(120349, 'https://ror.org/00ky8w108', 'en', 1, 'https://ror.org/00ky8w108 Japan Dam Foundation äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ€ćƒ å”ä¼š'),
(120350, 'https://ror.org/014x7mf51', 'en', 1, 'https://ror.org/014x7mf51 Botanic Gardens Conservation International'),
(120351, 'https://ror.org/000cxp047', 'en', 1, 'https://ror.org/000cxp047 THE Flower Association Of Japan å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬čŠ±ć®ä¼š'),
(120352, 'https://ror.org/015b38518', 'en', 1, 'https://ror.org/015b38518 National Land Afforestation Promotion Organization å…¬ē›Šē¤¾å›£ę³•äŗŗå›½åœŸē·‘åŒ–ęŽØé€²ę©Ÿę§‹'),
(120353, 'https://ror.org/05scx8x11', 'id', 1, 'https://ror.org/05scx8x11 Universitas Aki'),
(120354, 'https://ror.org/00eehvf61', 'no_lang_code', 1, 'https://ror.org/00eehvf61 HKV (Netherlands)'),
(120355, 'https://ror.org/00kayjk53', 'en', 1, 'https://ror.org/00kayjk53 Kamakura City Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗéŽŒå€‰åø‚åŒ»åø«ä¼š'),
(120356, 'https://ror.org/024jrkp82', 'en', 1, 'https://ror.org/024jrkp82 The HDF Group'),
(120357, 'https://ror.org/0227xss69', 'en', 1, 'https://ror.org/0227xss69 Japan Council of Performers Rights&Performing Arts Organizations å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čŠøčƒ½å®Ÿę¼”å®¶å›£ä½“å”č­°ä¼š'),
(120358, 'https://ror.org/01herdm14', 'en', 1, 'https://ror.org/01herdm14 Marian University - Wisconsin'),
(120359, 'https://ror.org/04spfxf63', 'no_lang_code', 1, 'https://ror.org/04spfxf63 Argenx (Belgium)'),
(120360, 'https://ror.org/034pvk369', 'en', 1, 'https://ror.org/034pvk369 Okaya International Center å…¬ē›Šč²”å›£ę³•äŗŗćŠć‹ć‚„ę–‡åŒ–ęŒÆčˆˆäŗ‹ę„­å›£å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(120361, 'https://ror.org/0516c1z47', 'en', 1, 'https://ror.org/0516c1z47 Nihonbashi Medical Association Nihonbashi medical association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę©‹åŒ»åø«ä¼š'),
(120362, 'https://ror.org/03nkpbf76', 'en', 1, 'https://ror.org/03nkpbf76 Nepal Telecom ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤Ÿą„‡ą¤²ą¤æą¤•ą¤®'),
(120363, 'https://ror.org/035nwxe06', 'en', 1, 'https://ror.org/035nwxe06 Japan Cooperation Center for the Middle East äø€čˆ¬č²”å›£ę³•äŗŗäø­ę±å”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(120364, 'https://ror.org/0404wkz93', 'en', 1, 'https://ror.org/0404wkz93 Silesian Museum SlezskƩ zemskƩ muzeum'),
(120365, 'https://ror.org/034j59894', 'es', 1, 'https://ror.org/034j59894 Higher Technological Institute of EscÔrcega Instituto Tecnológico Superior de EscÔrcega'),
(120366, 'https://ror.org/00zwsrq61', 'en', 1, 'https://ror.org/00zwsrq61 Continuous Science Foundation'),
(120367, 'https://ror.org/02w0qvf33', 'pt', 1, 'https://ror.org/02w0qvf33 Archives nationales du Cap-Vert Arquivo Histórico Nacional (Cape Verde) Arquivo Nacional de Cabo Verde'),
(120368, 'https://ror.org/020091108', 'en', 1, 'https://ror.org/020091108 Efferon'),
(120369, 'https://ror.org/045r73682', 'en', 1, 'https://ror.org/045r73682 Center for Development of Power Supply Regions äø€čˆ¬č²”å›£ę³•äŗŗé›»ęŗåœ°åŸŸęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(120370, 'https://ror.org/059bgad73', 'en', 1, 'https://ror.org/059bgad73 Middle East University Ų¬Ų§Ł…Ų¹Ų© الؓرق Ų§Ł„Ų£ŁˆŲ³Ų·'),
(120371, 'https://ror.org/02py6hx98', 'en', 1, 'https://ror.org/02py6hx98 New Hampshire Geological Survey'),
(120372, 'https://ror.org/02yqt1d54', 'ro', 1, 'https://ror.org/02yqt1d54 Institutul Naţional de Cercetare-Dezvoltare pentru Securitate Minieră şi Protecţie Antiexplozivă - INSEMEX'),
(120373, 'https://ror.org/04vdey719', 'en', 1, 'https://ror.org/04vdey719 NHK International, Inc. äø€čˆ¬č²”å›£ę³•äŗŗNHKć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«'),
(120374, 'https://ror.org/04bmd5e25', 'en', 1, 'https://ror.org/04bmd5e25 Japan Analytical Instruments Manufacturers'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åˆ†ęžę©Ÿå™Øå·„ę„­ä¼š'),
(120375, 'https://ror.org/042cm9p56', 'en', 1, 'https://ror.org/042cm9p56 Institute of Mental Health Research'),
(120376, 'https://ror.org/0352aer08', 'it', 1, 'https://ror.org/0352aer08 Arma dei Carabinieri Carabinieri Army'),
(120377, 'https://ror.org/031adnq36', 'en', 1, 'https://ror.org/031adnq36 Itami Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗä¼Šäø¹åø‚åŒ»åø«ä¼š'),
(120378, 'https://ror.org/00gxcnr60', 'en', 1, 'https://ror.org/00gxcnr60 Saitama Prefectural Fisheries Research Institute åŸ¼ēŽ‰ēœŒę°“ē”£ē ”ē©¶ę‰€'),
(120379, 'https://ror.org/04bangx95', 'en', 1, 'https://ror.org/04bangx95 Pennsylvania Department of Conservation and Natural Resources'),
(120380, 'https://ror.org/02ymr0w73', 'en', 1, 'https://ror.org/02ymr0w73 University of Rizal System'),
(120381, 'https://ror.org/05fp2qr91', 'en', 1, 'https://ror.org/05fp2qr91 Association of Agriculture and Forestry Statistics äø€čˆ¬č²”å›£ę³•äŗŗč¾²ęž—ēµ±čØˆå”ä¼š'),
(120382, 'https://ror.org/04tnjwq62', 'en', 1, 'https://ror.org/04tnjwq62 THE PORTS&HARBOURS Association Of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęøÆę¹¾å”ä¼š'),
(120383, 'https://ror.org/01ytcra85', 'en', 1, 'https://ror.org/01ytcra85 Azərbaycan Respublikasının Təhsil Institutu Institute of Education of the Republic of Azerbaijan'),
(120384, 'https://ror.org/05mm0yq33', 'en', 1, 'https://ror.org/05mm0yq33 Silent Spring Institute'),
(120385, 'https://ror.org/01daaa255', 'en', 1, 'https://ror.org/01daaa255 Tiger Tech Solutions'),
(120386, 'https://ror.org/01cgrd369', 'no_lang_code', 1, 'https://ror.org/01cgrd369 Kodiak Sciences'),
(120387, 'https://ror.org/009erme80', 'en', 1, 'https://ror.org/009erme80 Tbilisi State Academy of Arts įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒįƒ›įƒ®įƒįƒ¢įƒ•įƒ įƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(120388, 'https://ror.org/05gcxx960', 'en', 1, 'https://ror.org/05gcxx960 St. Paul University Iloilo'),
(120389, 'https://ror.org/05ng0t640', 'en', 1, 'https://ror.org/05ng0t640 De La Salle Catholic University'),
(120390, 'https://ror.org/04dsq8e97', 'en', 1, 'https://ror.org/04dsq8e97 The Japan Reinforced Plastics Society äø€čˆ¬ē¤¾å›£ę³•äŗŗå¼·åŒ–ćƒ—ćƒ©ć‚¹ćƒćƒƒć‚Æå”ä¼š'),
(120391, 'https://ror.org/012a9r338', 'no_lang_code', 1, 'https://ror.org/012a9r338 Bodeker Scientific (New Zealand)'),
(120392, 'https://ror.org/05t0f9x62', 'en', 1, 'https://ror.org/05t0f9x62 Balkanistic Forum – International University Seminar for Research and Specializations Балканистичен Ń„Š¾Ń€ŃƒŠ¼ – Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“ŠµŠ½ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ŃŠŗŠø семинар за ŠæŃ€Š¾ŃƒŃ‡Š²Š°Š½ŠøŃ Šø специализации'),
(120393, 'https://ror.org/05pft2x28', 'en', 1, 'https://ror.org/05pft2x28 UmeƄ Municipality'),
(120394, 'https://ror.org/00z3zzh92', 'en', 1, 'https://ror.org/00z3zzh92 Iliff School of Theology'),
(120395, 'https://ror.org/02523c915', 'en', 1, 'https://ror.org/02523c915 Veterinary Laboratories'),
(120396, 'https://ror.org/033jd5r25', 'de', 1, 'https://ror.org/033jd5r25 Technische Hochschule Georg Agricola'),
(120397, 'https://ror.org/031bv6e65', 'en', 1, 'https://ror.org/031bv6e65 Leprosy Mission in Japan å…¬ē›Šē¤¾å›£ę³•äŗŗå„½å–„ē¤¾'),
(120398, 'https://ror.org/02fqy5689', 'id', 1, 'https://ror.org/02fqy5689 Institut Agama Islam Negeri Fattahul Muluk Papua'),
(120399, 'https://ror.org/04cw9ke34', 'en', 1, 'https://ror.org/04cw9ke34 Japan National Tourism Organization ē‹¬ē«‹č”Œę”æę³•äŗŗå›½éš›č¦³å…‰ęŒÆčˆˆę©Ÿę§‹'),
(120400, 'https://ror.org/051tdqs35', 'en', 1, 'https://ror.org/051tdqs35 Japan Local Government Employee Safety and Health Association äø€čˆ¬č²”å›£ę³•äŗŗåœ°ę–¹å…¬å‹™å“”å®‰å…Øč”›ē”ŸęŽØé€²å”ä¼š'),
(120401, 'https://ror.org/02ktw5e91', 'en', 1, 'https://ror.org/02ktw5e91 The Experiment in International Living å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›½éš›ē”Ÿę“»ä½“éØ“å”ä¼š'),
(120402, 'https://ror.org/01r63fg59', 'en', 1, 'https://ror.org/01r63fg59 Sir Syed College ą“øąµ¼ ą“øą“Æąµą“Æą“æą“¦ąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“¤ą“³ą“æą“Ŗąµą“Ŗą“±ą“®ąµą“Ŗąµ'),
(120403, 'https://ror.org/01c1f3813', 'en', 1, 'https://ror.org/01c1f3813 AlgEn, algal technology centre (Slovenia) Algen, algal technology center Algen, center za algne tehnologije'),
(120404, 'https://ror.org/01x9sys47', 'en', 1, 'https://ror.org/01x9sys47 Health Commission of Guangxi Zhuang Autonomous Region å¹æč„æå£®ę—č‡Ŗę²»åŒŗå«ē”Ÿå„åŗ·å§”å‘˜ä¼š 简称广脿CDC'),
(120405, 'https://ror.org/04q5kzb02', 'en', 1, 'https://ror.org/04q5kzb02 Unijapan å…¬ē›Šč²”å›£ę³•äŗŗćƒ¦ćƒ‹ć‚øćƒ£ćƒ‘ćƒ³'),
(120406, 'https://ror.org/03e45pn05', 'en', 1, 'https://ror.org/03e45pn05 Kanazawa Professional University of Food Management ć‹ćŖć–ć‚é£Ÿćƒžćƒć‚øćƒ”ćƒ³ćƒˆå°‚é–€č·å¤§å­¦'),
(120407, 'https://ror.org/0502qft36', 'en', 1, 'https://ror.org/0502qft36 Okayama Prefectural Ancient Kibi Cultural Properties Center å²”å±±ēœŒå¤ä»£å‰å‚™ę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(120408, 'https://ror.org/04q4xmb63', 'en', 1, 'https://ror.org/04q4xmb63 WIDE Project'),
(120409, 'https://ror.org/03db6jy14', 'en', 1, 'https://ror.org/03db6jy14 Montana Bureau of Mines and Geology'),
(120410, 'https://ror.org/024v9sr88', 'hr', 1, 'https://ror.org/024v9sr88 Klinika za ortopediju Lovran Orthopedic Clinic Lovran'),
(120411, 'https://ror.org/000asyx23', 'no_lang_code', 1, 'https://ror.org/000asyx23 DIESSE Diagnostica Senese S.p.A. SocietĆ  Benefit (Italy)'),
(120412, 'https://ror.org/05612v456', 'en', 1, 'https://ror.org/05612v456 IndiScale'),
(120413, 'https://ror.org/01nm14c30', 'en', 1, 'https://ror.org/01nm14c30 Northwest Arkansas Community College'),
(120414, 'https://ror.org/03s2fjy85', 'en', 1, 'https://ror.org/03s2fjy85 Theological University of Apeldoorn Theologische Universiteit Apeldoorn'),
(120415, 'https://ror.org/04cmh4c43', 'en', 1, 'https://ror.org/04cmh4c43 DAS Designers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗē·åˆćƒ‡ć‚¶ć‚¤ćƒŠćƒ¼å”ä¼š'),
(120416, 'https://ror.org/044b27k76', 'en', 1, 'https://ror.org/044b27k76 NHK Communications Training Institute äø€čˆ¬č²”å›£ę³•äŗŗNHKę”¾é€ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(120417, 'https://ror.org/045jkfr03', 'no_lang_code', 1, 'https://ror.org/045jkfr03 Arvinas (United States)'),
(120418, 'https://ror.org/02my1p648', 'en', 1, 'https://ror.org/02my1p648 THE JAPAN-INDIA Association å…¬ē›Šč²”å›£ę³•äŗŗę—„å°å”ä¼š'),
(120419, 'https://ror.org/05chkt494', 'en', 1, 'https://ror.org/05chkt494 Japan Natural Gas Association ę°“ęŗ¶ę€§å¤©ē„¶ć‚¬ć‚¹ē’°å¢ƒęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(120420, 'https://ror.org/014wx0y54', 'en', 1, 'https://ror.org/014wx0y54 Institute for International Trade and Investment äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›č²æę˜“ęŠ•č³‡ē ”ē©¶ę‰€'),
(120421, 'https://ror.org/023z0r493', 'en', 1, 'https://ror.org/023z0r493 Pennsylvania Geological Survey'),
(120422, 'https://ror.org/05p06r142', 'en', 1, 'https://ror.org/05p06r142 Ontario Health'),
(120423, 'https://ror.org/02h0xzn21', 'en', 1, 'https://ror.org/02h0xzn21 Hiroshima Peace Culture Foundation å…¬ē›Šč²”å›£ę³•äŗŗåŗƒå³¶å¹³å’Œę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(120424, 'https://ror.org/024zt8a97', 'en', 1, 'https://ror.org/024zt8a97 Tokyo Traffic Safety Association äø€čˆ¬č²”å›£ę³•äŗŗę±äŗ¬éƒ½äŗ¤é€šå®‰å…Øå”ä¼š'),
(120425, 'https://ror.org/03gp5b411', 'en', 1, 'https://ror.org/03gp5b411 Baycrest Hospital'),
(120426, 'https://ror.org/01kjssp38', 'en', 1, 'https://ror.org/01kjssp38 Osaka Equipment Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜ŖåŗœčØ­å‚™čØ­čØˆäŗ‹å‹™ę‰€å”ä¼š'),
(120427, 'https://ror.org/03c4mmv16', 'en', 1, 'https://ror.org/03c4mmv16 University of Ottawa UniversitƩ d''Ottawa'),
(120428, 'https://ror.org/0124x7055', 'en', 1, 'https://ror.org/0124x7055 Centre for Industrial Technological Development Centro para el Desarrollo Tecnologico Industrial'),
(120429, 'https://ror.org/00mrxhs61', 'en', 1, 'https://ror.org/00mrxhs61 Calico Life Sciences'),
(120430, 'https://ror.org/05fb8h434', 'pt', 1, 'https://ror.org/05fb8h434 Instituto Superior de Administração e Gestão'),
(120431, 'https://ror.org/04cj0ys57', 'en', 1, 'https://ror.org/04cj0ys57 East Japan Railway Culture Foundation å…¬ē›Šč²”å›£ę³•äŗŗę±ę—„ęœ¬é‰„é“ę–‡åŒ–č²”å›£'),
(120432, 'https://ror.org/05mkkj353', 'en', 1, 'https://ror.org/05mkkj353 Japan Federation of Survey Planning And Associations äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ęø¬é‡čØ­čØˆę„­å”ä¼šé€£åˆä¼š'),
(120433, 'https://ror.org/0308qj720', 'es', 1, 'https://ror.org/0308qj720 Universidad Pedagógica del Estado de Sinaloa'),
(120434, 'https://ror.org/05j5jkn24', 'no_lang_code', 1, 'https://ror.org/05j5jkn24 Knology'),
(120435, 'https://ror.org/02grenn69', 'en', 1, 'https://ror.org/02grenn69 Shinseikai Special Nursing Home Ikurien Naka ē¤¾ä¼šē¦ē„‰ę³•äŗŗę–°äø–ä¼šē‰¹åˆ„é¤Šč­·č€äŗŗćƒ›ćƒ¼ćƒ ć„ćć‚Šč‹‘é‚£ē‚'),
(120436, 'https://ror.org/055663266', 'sl', 1, 'https://ror.org/055663266 InŔtitut za Celulozo in Papir Ljubljana'),
(120437, 'https://ror.org/046dwx283', 'no_lang_code', 1, 'https://ror.org/046dwx283 Sangamo BioSciences (United States)'),
(120438, 'https://ror.org/02x6pkt72', 'en', 1, 'https://ror.org/02x6pkt72 Japan Fluid Power Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ•ćƒ«ćƒ¼ćƒ‰ćƒ‘ćƒÆćƒ¼å·„ę„­ä¼š'),
(120439, 'https://ror.org/01960yv21', 'en', 1, 'https://ror.org/01960yv21 Columbia River Inter-Tribal Fish Commission'),
(120440, 'https://ror.org/04kxkhn65', 'en', 1, 'https://ror.org/04kxkhn65 Association of Media in Digital äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ‡ć‚øć‚æćƒ«ćƒ”ćƒ‡ć‚£ć‚¢å”ä¼š'),
(120441, 'https://ror.org/01vdc4k69', 'no_lang_code', 1, 'https://ror.org/01vdc4k69 Cyprotex (United States)'),
(120442, 'https://ror.org/00h52rc17', 'en', 1, 'https://ror.org/00h52rc17 Shimane Industrial Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗć—ć¾ć­ē”£ę„­ęŒÆčˆˆč²”å›£'),
(120443, 'https://ror.org/03wghsd36', 'no_lang_code', 1, 'https://ror.org/03wghsd36 Norsvin (Norway)'),
(120444, 'https://ror.org/034thfr92', 'no_lang_code', 1, 'https://ror.org/034thfr92 Havstovan'),
(120445, 'https://ror.org/045kpyv62', 'en', 1, 'https://ror.org/045kpyv62 The Society For Practical Technology Education äø€čˆ¬ē¤¾å›£ę³•äŗŗå®Ÿč·µę•™č‚²čØ“ē·“ē ”ē©¶å”ä¼š'),
(120446, 'https://ror.org/00tyja381', 'en', 1, 'https://ror.org/00tyja381 Delaware Valley College'),
(120447, 'https://ror.org/016rp7f18', 'en', 1, 'https://ror.org/016rp7f18 Japan Sumo Federation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē›øę’²é€£ē›Ÿ'),
(120448, 'https://ror.org/04vgq9s06', 'en', 1, 'https://ror.org/04vgq9s06 Norsk senter for Ćøkologisk landbruk Norwegian Centre for Organic Agriculture'),
(120449, 'https://ror.org/043cdzb63', 'en', 1, 'https://ror.org/043cdzb63 South Carolina Department of Natural Resources'),
(120450, 'https://ror.org/01teb2a37', 'en', 1, 'https://ror.org/01teb2a37 Malabar Dental College and Research Centre'),
(120451, 'https://ror.org/0201vdf26', 'en', 1, 'https://ror.org/0201vdf26 Japan Forging Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›é€ å”ä¼š'),
(120452, 'https://ror.org/04kzfg204', 'en', 1, 'https://ror.org/04kzfg204 Apollon Hochschule der Gesundheitswirtschaft University of Applied Sciences Appollon'),
(120453, 'https://ror.org/02tvxad59', 'en', 1, 'https://ror.org/02tvxad59 Peter Lang Peter Lang Verlag'),
(120454, 'https://ror.org/056f75089', 'en', 1, 'https://ror.org/056f75089 Plant Protection Central Research Institute Zirai Mücadele Merkez Araştırma Enstitüsü Müdürlüğü'),
(120455, 'https://ror.org/037k3aw68', 'es', 1, 'https://ror.org/037k3aw68 Universidad Internacional de las AmƩricas'),
(120456, 'https://ror.org/0121f8g77', 'pt', 1, 'https://ror.org/0121f8g77 Gabinete de Gestão do Programa Espacial Nacional National Space Program Management Office'),
(120457, 'https://ror.org/04yzbx182', 'en', 1, 'https://ror.org/04yzbx182 Kansai Electrical Safety Inspection Association äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æé›»ę°—äæå®‰å”ä¼š'),
(120458, 'https://ror.org/00wzhk182', 'en', 1, 'https://ror.org/00wzhk182 American University of Health Sciences'),
(120459, 'https://ror.org/01k89ak47', 'en', 1, 'https://ror.org/01k89ak47 Agriaquaculture Nutritional Genomic Center'),
(120460, 'https://ror.org/03vwty161', 'en', 1, 'https://ror.org/03vwty161 Effective Basic Services for Africa'),
(120461, 'https://ror.org/03dx1n240', 'en', 1, 'https://ror.org/03dx1n240 Synthesis Clinic'),
(120462, 'https://ror.org/03y0sm881', 'no_lang_code', 1, 'https://ror.org/03y0sm881 Haigazian University UniversitĆ© haigazian Õ€Õ”ÕµÕÆÕ”Õ¦ÕµÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ Ų¬Ų§Ł…Ų¹Ų© Ł‡Ų§ŁŠŁƒŲ§Ų²ŁŠŲ§Ł†'),
(120463, 'https://ror.org/00tcc4r12', 'en', 1, 'https://ror.org/00tcc4r12 Planning Consultants Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗéƒ½åø‚čØˆē”»ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆå”ä¼š'),
(120464, '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'),
(120465, 'https://ror.org/023yg3m94', 'en', 1, 'https://ror.org/023yg3m94 Wangari Maathai Institute for Peace and Environmental Studies'),
(120466, 'https://ror.org/04netx779', 'en', 1, 'https://ror.org/04netx779 Children''s Cancer Therapy Development Institute'),
(120467, 'https://ror.org/04zc9x335', 'en', 1, 'https://ror.org/04zc9x335 Japanese Association of Retirement Housing å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½ęœ‰ę–™č€äŗŗćƒ›ćƒ¼ćƒ å”ä¼š'),
(120468, 'https://ror.org/01x81ey67', 'es', 1, 'https://ror.org/01x81ey67 Instituto OceanogrƔfico de la Armada del Ecuador'),
(120469, 'https://ror.org/04kkwhs92', 'en', 1, 'https://ror.org/04kkwhs92 Foundation for Asian Management Development č²”å›£ę³•äŗŗć‚¢ć‚øć‚¢ēµŒå–¶é–‹ē™ŗå”åŠ›č²”å›£'),
(120470, 'https://ror.org/00h974d79', 'pt', 1, 'https://ror.org/00h974d79 Instituto de Estudos Superiores Financeiros e Fiscais'),
(120471, 'https://ror.org/01643wd06', 'en', 1, 'https://ror.org/01643wd06 Institute for Globally Distributed Open Research and Education');
INSERT INTO `rors` VALUES
(120472, 'https://ror.org/012dzmn70', 'en', 1, 'https://ror.org/012dzmn70 Lumbini Technological University ą¤²ą„ą¤®ą„ą¤¬ą¤æą¤Øą„€ ą¤Ŗą„ą¤°ą¤¾ą¤µą¤æą¤§ą¤æą¤• ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(120473, 'https://ror.org/02qbept03', 'en', 1, 'https://ror.org/02qbept03 Japan Dairy Counci äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å¤®é…Ŗč¾²ä¼šč­°'),
(120474, 'https://ror.org/01fmn8042', 'en', 1, 'https://ror.org/01fmn8042 THE Japan Commercial Broadcasters Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę°‘é–“ę”¾é€é€£ē›Ÿ'),
(120475, 'https://ror.org/025ye0d12', 'en', 1, 'https://ror.org/025ye0d12 Karkonoska Państwowa Szkoła Wyższa Karkonosze College in Jelenia Góra'),
(120476, 'https://ror.org/055rfe179', 'en', 1, 'https://ror.org/055rfe179 Independent Insurance Agents Of Japan, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęå®³äæé™ŗä»£ē†ę„­å”ä¼š'),
(120477, 'https://ror.org/0366mhr44', 'en', 1, 'https://ror.org/0366mhr44 Gnanamani College of Technology'),
(120478, 'https://ror.org/01jgmvf05', 'en', 1, 'https://ror.org/01jgmvf05 North London NHS Foundation Trust'),
(120479, 'https://ror.org/05angq744', 'en', 1, 'https://ror.org/05angq744 National Association of Labour Banks äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½åŠ“åƒé‡‘åŗ«å”ä¼š'),
(120480, 'https://ror.org/01dmf6h27', 'en', 1, 'https://ror.org/01dmf6h27 The Japanese Society for Non-destructive Inspection äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬éžē “å£Šę¤œęŸ»å”ä¼š'),
(120481, 'https://ror.org/04svhf137', 'fr', 1, 'https://ror.org/04svhf137 Unité Expérimentale sur les Systèmes Maraîchers Agroécologiques'),
(120482, 'https://ror.org/01hqp1g48', 'en', 1, 'https://ror.org/01hqp1g48 Hochschule Kehl University of Applied Sciences Kehl'),
(120483, 'https://ror.org/01zs84n26', 'en', 1, 'https://ror.org/01zs84n26 Institute of Management Business and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ, бизнеса Šø права'),
(120484, 'https://ror.org/01a5z1x33', 'en', 1, 'https://ror.org/01a5z1x33 Intellect Books'),
(120485, 'https://ror.org/0141yg674', 'en', 1, 'https://ror.org/0141yg674 Gavi'),
(120486, 'https://ror.org/036f7qt17', 'de', 1, 'https://ror.org/036f7qt17 Fliedner Fachhochschule Düsseldorf University of Applied Sciences Fliedner Fachhochschule'),
(120487, 'https://ror.org/000bvba82', 'no_lang_code', 1, 'https://ror.org/000bvba82 Biomarker Technologies (China) ē™¾čæˆå®¢ē”Ÿē‰©ē§‘ęŠ€'),
(120488, 'https://ror.org/04ywky568', 'en', 1, 'https://ror.org/04ywky568 Japan Environmental Facilities Manufacturers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒč”›ē”Ÿę–½čØ­å·„ę„­ä¼š'),
(120489, 'https://ror.org/028y4g372', 'en', 1, 'https://ror.org/028y4g372 Advanced Research + Invention Agency'),
(120490, 'https://ror.org/04ptep242', 'en', 1, 'https://ror.org/04ptep242 Higashi Mikawa Regional Research Center å…¬ē›Šē¤¾å›£ę³•äŗŗę±äø‰ę²³åœ°åŸŸē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(120491, 'https://ror.org/03dhbrs34', 'en', 1, 'https://ror.org/03dhbrs34 Japan health and culture promotion center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·ę–‡åŒ–ęŒÆčˆˆä¼š'),
(120492, 'https://ror.org/0440ajd58', 'pl', 1, 'https://ror.org/0440ajd58 Ośrodek Badawczo-Rozwojowy Centrum Techniki Morskiej'),
(120493, 'https://ror.org/01ha10g31', 'no_lang_code', 1, 'https://ror.org/01ha10g31 Cyprus Research and Innovation Center (Cyprus)'),
(120494, 'https://ror.org/01t67f005', 'en', 1, 'https://ror.org/01t67f005 Tanaka Institute For Educational Research äø€čˆ¬č²”å›£ę³•äŗŗē”°äø­ę•™č‚²ē ”ē©¶ę‰€'),
(120495, 'https://ror.org/02qrav466', 'en', 1, 'https://ror.org/02qrav466 Moscow Clinical Science and Research Center 52'),
(120496, 'https://ror.org/00vss0n50', 'en', 1, 'https://ror.org/00vss0n50 Reinhardt University'),
(120497, 'https://ror.org/03r79dj18', 'pt', 1, 'https://ror.org/03r79dj18 Anis'),
(120498, 'https://ror.org/050xxna91', 'en', 1, 'https://ror.org/050xxna91 K.J. Somaiya Institute of Dharma Studies'),
(120499, 'https://ror.org/042h5qy30', 'en', 1, 'https://ror.org/042h5qy30 International Women University'),
(120500, 'https://ror.org/05983b311', 'en', 1, 'https://ror.org/05983b311 National Institute of Technology, Oita College å¤§åˆ†å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(120501, 'https://ror.org/03yxnpp24', 'es', 1, 'https://ror.org/03yxnpp24 Universidad de Sevilla University of Seville'),
(120502, 'https://ror.org/00cm89a33', 'en', 0, 'https://ror.org/00cm89a33 University of Belgrade – Faculty of Veterinary Medicine Univerzitet u Beogradu – Fakultet veterinarske medicine Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ ветеринарске меГицине'),
(120503, 'https://ror.org/021d7pd31', 'en', 1, 'https://ror.org/021d7pd31 Primary Care Collaborative Clinical Trials Group'),
(120504, 'https://ror.org/02ks8qq67', 'en', 1, 'https://ror.org/02ks8qq67 Hungarian Academy of Sciences Magyar TudomƔnyos AkadƩmia'),
(120505, 'https://ror.org/018apx651', 'en', 1, 'https://ror.org/018apx651 North Central Catchment Management Authority'),
(120506, 'https://ror.org/017m93x98', 'en', 1, 'https://ror.org/017m93x98 Global College International'),
(120507, 'https://ror.org/00j50jx72', 'fr', 1, 'https://ror.org/00j50jx72 Laboratoire des 2 Infinis Toulouse'),
(120508, 'https://ror.org/01eff5662', 'en', 1, 'https://ror.org/01eff5662 Beijing Chao-Yang Hospital, Capital Medical University é¦–éƒ½åŒ»ē§‘å¤§å­¦é™„å±žåŒ—äŗ¬ęœé˜³åŒ»é™¢'),
(120509, 'https://ror.org/03saz3d95', 'en', 1, 'https://ror.org/03saz3d95 BeOne Medicines BeOne Medicines (Switzerland)'),
(120510, 'https://ror.org/004ezwb23', 'en', 1, 'https://ror.org/004ezwb23 State Tax University Державний поГатковий ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(120511, 'https://ror.org/01bfg2v82', 'id', 1, 'https://ror.org/01bfg2v82 Universitas Islam Negeri Palopo'),
(120512, 'https://ror.org/02swp8817', 'de', 1, 'https://ror.org/02swp8817 S.P.O.R.T Institut (priv.) GmbH'),
(120513, 'https://ror.org/04hw9c755', 'en', 1, 'https://ror.org/04hw9c755 NutriNeuro'),
(120514, 'https://ror.org/04qekdn52', 'fr', 1, 'https://ror.org/04qekdn52 Centre intƩgrƩ de santƩ et de services sociaux de la MontƩrƩgie-Centre'),
(120515, 'https://ror.org/01sgwka45', 'fr', 1, 'https://ror.org/01sgwka45 Microscopie Fonctionnelle du Vivant'),
(120516, 'https://ror.org/04kkd5257', 'en', 1, 'https://ror.org/04kkd5257 Scio Research'),
(120517, 'https://ror.org/050p9zb50', 'en', 1, 'https://ror.org/050p9zb50 Ministry of Social Affairs and Health Social- och hƤlsovƄrdsministeriet sosiaali- ja terveysministeriƶ'),
(120518, 'https://ror.org/01h0r4279', 'ro', 1, 'https://ror.org/01h0r4279 Institutul Național de Management al Serviciilor de Sănătate National Institute for Health Services Management'),
(120519, 'https://ror.org/03rrwzw77', 'en', 1, 'https://ror.org/03rrwzw77 Cambridge Advanced Imaging Centre'),
(120520, 'https://ror.org/05x6rt433', 'id', 1, 'https://ror.org/05x6rt433 Universitas Pamulang'),
(120521, 'https://ror.org/00k8kkh85', 'en', 1, 'https://ror.org/00k8kkh85 Amity University Gurugram ą¦ą¦®ą¦æą¦Ÿą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼, গুৰুগাঁও'),
(120522, 'https://ror.org/04gvfac97', 'en', 1, 'https://ror.org/04gvfac97 State Scientific Institution "Center for Problems of Marine Geology, Geoecology and Sedimentary Ore Formation of the National Academy of Sciences of Ukraine" Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠ¦ŠµŠ½Ń‚Ń€ проблем Š¼Š¾Ń€ŃŃŒŠŗŠ¾Ń— геології, геоекології та осаГового Ń€ŃƒŠ“Š¾ŃƒŃ‚Š²Š¾Ń€ŠµŠ½Š½Ń ŠŠŠ Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(120523, 'https://ror.org/019w4f821', 'en', 1, 'https://ror.org/019w4f821 European Union'),
(120524, 'https://ror.org/04c3cgg32', 'en', 1, 'https://ror.org/04c3cgg32 Liaoning Normal University 辽宁师范大学'),
(120525, 'https://ror.org/05epaxp86', 'de', 1, 'https://ror.org/05epaxp86 uni software plus GmbH uni software plus GmbH (Austria)'),
(120526, 'https://ror.org/048c68826', 'en', 1, 'https://ror.org/048c68826 Nevada Bureau of Mines and Geology'),
(120527, 'https://ror.org/02tx9ak91', 'en', 1, 'https://ror.org/02tx9ak91 Epilepsy Society of Australia'),
(120528, 'https://ror.org/00n8bqs64', 'en', 1, 'https://ror.org/00n8bqs64 Institute of Informatics Problems Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½Ń„Š¾Ń€Š¼Š°Ń‚ŠøŠŗŠ° Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŠµ'),
(120529, 'https://ror.org/05m4pnd88', 'en', 1, 'https://ror.org/05m4pnd88 Vilya Vilya, Inc.'),
(120530, 'https://ror.org/02eynbb91', 'en', 1, 'https://ror.org/02eynbb91 James Hope University'),
(120531, 'https://ror.org/052rvyy58', 'en', 1, 'https://ror.org/052rvyy58 Heidelberg Institute of Global Health Heidelberger Institut für Global Health'),
(120532, 'https://ror.org/051bxj583', 'en', 1, 'https://ror.org/051bxj583 Teach Democracy'),
(120533, 'https://ror.org/057621003', 'de', 1, 'https://ror.org/057621003 UniversitƤtsverlag Gƶttingen'),
(120534, 'https://ror.org/02nkxy067', 'en', 1, 'https://ror.org/02nkxy067 Ishikawa Hospital'),
(120535, 'https://ror.org/00t6d2469', 'en', 0, 'https://ror.org/00t6d2469 University of Belgrade - Faculty of Architecture Univerzitet u Beogradu - Arhitektonski fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Архитектонски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(120536, 'https://ror.org/05vrwzn56', 'en', 1, 'https://ror.org/05vrwzn56 Kimia Kimia Therapeutics Kimia Therapeutics, Inc.'),
(120537, 'https://ror.org/02qbpch82', 'en', 1, 'https://ror.org/02qbpch82 Gobinda Prasad Mahavidyalaya ą¦—ą§‹ą¦¬ą¦æą¦Øą§ą¦¦ ą¦Ŗą§ą¦°ą¦øą¦¾ą¦¦ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(120538, 'https://ror.org/036b3b709', 'en', 1, 'https://ror.org/036b3b709 National Observation and Research Station of Coastal Ecological Environments in Macao'),
(120539, 'https://ror.org/02qz79g03', 'no_lang_code', 1, 'https://ror.org/02qz79g03 Advanced Atomization Technologies, LLC Advanced Atomization Technologies, LLC (United States)'),
(120540, 'https://ror.org/02yw0nw49', 'en', 1, 'https://ror.org/02yw0nw49 PsiQuantum (United States)'),
(120541, 'https://ror.org/03prrhh04', 'en', 1, 'https://ror.org/03prrhh04 Institute for Catastrophic Loss Reduction'),
(120542, 'https://ror.org/0071fq917', 'en', 1, 'https://ror.org/0071fq917 KurrawongAI KurrawongAI (Australia)'),
(120543, 'https://ror.org/00wb5fq03', 'en', 0, 'https://ror.org/00wb5fq03 University of Belgrade – Faculty of Biology Univerzitet u Beogradu – BioloÅ”ki fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š‘ŠøŠ¾Š»Š¾ŃˆŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(120544, 'https://ror.org/02d494190', 'en', 1, 'https://ror.org/02d494190 The Africa Institute'),
(120545, 'https://ror.org/04g0eda71', 'en', 0, 'https://ror.org/04g0eda71 University of Belgrade – Faculty of Political Sciences Univerzitet u Beogradu – Fakultet političkih nauka Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ политичких наука'),
(120546, 'https://ror.org/038rjvd86', 'en', 1, 'https://ror.org/038rjvd86 Department of Biological Sciences'),
(120547, 'https://ror.org/03ma1hk94', 'it', 1, 'https://ror.org/03ma1hk94 Digital Transformation Institute La Fondazione per la SostenibilitĆ  Digitale'),
(120548, 'https://ror.org/040scgh75', 'es', 1, 'https://ror.org/040scgh75 Community of Madrid Comunidad de Madrid'),
(120549, 'https://ror.org/00tmg5839', 'en', 1, 'https://ror.org/00tmg5839 Ministry of Agriculture and Forestry T.C. Tarım ve Orman Bakanlığı Türkiye Cumhuriyeti Tarım ve Orman Bakanlığı'),
(120550, 'https://ror.org/0109mtm32', 'en', 1, 'https://ror.org/0109mtm32 Ukrainian Research Institute of Oils and Fats of the National Academy of Agrarian Sciences of Ukraine Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ олій та жирів ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(120551, 'https://ror.org/049p34y91', 'sk', 1, 'https://ror.org/049p34y91 Slovenský Metrologický Ústav'),
(120552, 'https://ror.org/028p3se69', 'pt', 1, 'https://ror.org/028p3se69 Eldorado Research Institute Instituto de Pesquisas Eldorado'),
(120553, 'https://ror.org/052bp4r61', 'en', 1, 'https://ror.org/052bp4r61 Medical Center Hospital of the President’s affairs Administration of the Republic of Kazakhstan ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Ń–Š½Ń–Ņ£ Іс басқармасы ŠœŠµŠ“ŠøŃ†ŠøŠ½Š°Š»Ń‹Ņ› орталығы ŠŃƒŃ€ŃƒŃ…Š°Š½Š°ŃŃ‹'),
(120554, 'https://ror.org/004hzzk67', 'en', 1, 'https://ror.org/004hzzk67 Knut and Alice Wallenberg Foundation'),
(120555, 'https://ror.org/05mm0yv21', 'en', 1, 'https://ror.org/05mm0yv21 Nizhny Novgorod State Pedagogical University Мининский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ŠšŠ¾Š·ŃŒŠ¼Ń‹ Минина'),
(120556, 'https://ror.org/0285t0292', 'en', 0, 'https://ror.org/0285t0292 University of Belgrade – Faculty of Medicine Univerzitet u Beogradu – Medicinski fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(120557, 'https://ror.org/02gwt2810', 'fr', 1, 'https://ror.org/02gwt2810 Laboratoire des Interactions Plantes Micro-Organismes Laboratory of Plant-Microbe Interactions'),
(120558, 'https://ror.org/03hj2gd47', 'en', 1, 'https://ror.org/03hj2gd47 City University of Hong Kong (Dongguan) é¦™ęøÆåŸŽåø‚å¤§å­¦ (äøœčŽž)'),
(120559, 'https://ror.org/03shq8p98', 'es', 1, 'https://ror.org/03shq8p98 Corporación Discimus'),
(120560, 'https://ror.org/00mn36586', 'en', 1, 'https://ror.org/00mn36586 Alberta University of the Arts'),
(120561, 'https://ror.org/030fy4q75', 'en', 1, 'https://ror.org/030fy4q75 Kerala State Council for Science, Technology and Environment'),
(120562, 'https://ror.org/00k637j32', 'en', 1, 'https://ror.org/00k637j32 LandScient LandScient (Colombia)'),
(120563, 'https://ror.org/02g3h9440', 'it', 1, 'https://ror.org/02g3h9440 Centro Alti Studi per la Difesa (CASD)'),
(120564, 'https://ror.org/023zg8w32', 'fr', 1, 'https://ror.org/023zg8w32 Institut National des Langues et Civilisations Orientales National Institute for Oriental Languages and Civilizations'),
(120565, 'https://ror.org/00ctshp97', 'fr', 1, 'https://ror.org/00ctshp97 Laboratoire du froid et des systèmes énergétiques et thermique'),
(120566, 'https://ror.org/014ybqb54', 'en', 1, 'https://ror.org/014ybqb54 Hessian Center for Artificial Intelligence Hessische Zentrum für Künstliche Intelligenz hessian.AI'),
(120567, 'https://ror.org/001q9w183', 'fr', 1, 'https://ror.org/001q9w183 Conservatoire botanique national de Bailleul'),
(120568, 'https://ror.org/01h2rps39', 'en', 1, 'https://ror.org/01h2rps39 Health Services Research Center Health Services Research Center (Cyprus)'),
(120569, 'https://ror.org/01zjanb50', 'en', 0, 'https://ror.org/01zjanb50 Japan International Science and Technology Exchange Center ē¤¾å›£ę³•äŗŗē§‘å­¦ęŠ€č”“å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(120570, 'https://ror.org/04n1xa154', 'nl', 1, 'https://ror.org/04n1xa154 Meander Medisch Centrum'),
(120571, 'https://ror.org/01ks6fw71', 'en', 1, 'https://ror.org/01ks6fw71 Pampamahalaang Pamantasan ng Pampanga Pampanga State University'),
(120572, 'https://ror.org/043pwc612', 'pt', 1, 'https://ror.org/043pwc612 Universidade do Porto University of Porto'),
(120573, 'https://ror.org/0449c4c15', 'no_lang_code', 1, 'https://ror.org/0449c4c15 Siemens Healthineers Siemens Healthineers (Germany) Siemens Healthineers AG'),
(120574, 'https://ror.org/02wq1s711', 'fr', 1, 'https://ror.org/02wq1s711 Fédération de recherche Matière et Interactions'),
(120575, 'https://ror.org/00whkrf32', 'en', 1, 'https://ror.org/00whkrf32 Division of Graduate Education'),
(120576, 'https://ror.org/05dgmz168', 'en', 1, 'https://ror.org/05dgmz168 Institute of Statistics'),
(120577, 'https://ror.org/059mp4e63', 'en', 1, 'https://ror.org/059mp4e63 Donbas State Pedagogical University Š”Š¾Š½Š±Š°ŃŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(120578, 'https://ror.org/03124pm05', 'en', 1, 'https://ror.org/03124pm05 Nederlands Studiecentrum Criminaliteit en Rechtshandhaving Netherlands Institute for the Study of Crime and Law Enforcement'),
(120579, 'https://ror.org/02gdezb97', 'en', 1, 'https://ror.org/02gdezb97 Association for the Prevention and Study of HIV/AIDS'),
(120580, 'https://ror.org/01qrny815', 'en', 1, 'https://ror.org/01qrny815 International Chemical Workers Union Council'),
(120581, 'https://ror.org/006fqes20', 'de', 1, 'https://ror.org/006fqes20 Basel Historical Museum Historisches Museum Basel Musée historique de Bâle'),
(120582, 'https://ror.org/01gwm7a05', 'en', 1, 'https://ror.org/01gwm7a05 Government of South Africa'),
(120583, 'https://ror.org/01gywnk65', 'en', 1, 'https://ror.org/01gywnk65 Taraba State College of Health Technology Takum'),
(120584, 'https://ror.org/04wez5e68', 'fr', 1, 'https://ror.org/04wez5e68 Paris 8 University UniversitƩ Paris 8'),
(120585, 'https://ror.org/003sav189', 'de', 1, 'https://ror.org/003sav189 Institute for Information Technology Oldenburger Institut für Informatik'),
(120586, 'https://ror.org/0223apb60', 'en', 1, 'https://ror.org/0223apb60 Mahatma Gandhi Memorial Medical College'),
(120587, 'https://ror.org/03skt0t88', 'fr', 1, 'https://ror.org/03skt0t88 Biometry and Evolutionary Biology Laboratory Laboratoire de BiomƩtrie et Biologie Evolutive'),
(120588, 'https://ror.org/03w04rv71', 'en', 1, 'https://ror.org/03w04rv71 Iran University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§ŪŒŲ±Ų§Ł†'),
(120589, 'https://ror.org/002a29y03', 'en', 1, 'https://ror.org/002a29y03 Libya Open University الجامعة Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų© - Ł„ŁŠŲØŁŠŲ§'),
(120590, 'https://ror.org/014weej12', 'en', 1, 'https://ror.org/014weej12 Middle East Technical University Orta Doğu Teknik Üniversitesi'),
(120591, 'https://ror.org/00qhm9960', 'en', 1, 'https://ror.org/00qhm9960 RESTORE'),
(120592, 'https://ror.org/00byekp78', 'es', 1, 'https://ror.org/00byekp78 CHAM - Centro de Humanidades'),
(120593, 'https://ror.org/04yqxxq63', 'en', 1, 'https://ror.org/04yqxxq63 Zhongnan University of Economics and Law äø­å—č“¢ē»ę”æę³•å¤§å­¦'),
(120594, 'https://ror.org/003cma469', 'sv', 1, 'https://ror.org/003cma469 Region Sƶrmland'),
(120595, 'https://ror.org/018da3y22', 'en', 0, 'https://ror.org/018da3y22 Fred Hutchinson/University of Washington/Seattle Children’s Cancer Consortium'),
(120596, 'https://ror.org/05486d596', 'en', 1, 'https://ror.org/05486d596 Norwegian Police University College PolitihĆøgskolen'),
(120597, 'https://ror.org/00tgr2h49', 'en', 0, 'https://ror.org/00tgr2h49 Computer Equipment and Technologies'),
(120598, 'https://ror.org/012dtws03', 'en', 1, 'https://ror.org/012dtws03 K.T.N College of Pharmacy ą“•ąµ†.ą“Ÿą“æ.ą“Žąµ» ą“•ąµ‹ą“³ą“œąµ ą““ą“«ąµ ą“«ą“¾ąµ¼ą“®ą“øą“æ'),
(120599, 'https://ror.org/02v92t976', 'fi', 1, 'https://ror.org/02v92t976 PƤijƤt-HƤmeen Keskussairaala'),
(120600, 'https://ror.org/05x4z7p76', 'fr', 1, 'https://ror.org/05x4z7p76 Conservatoire Botanique National MƩditerranƩen de Porquerolles National Mediterranean Botanical Conservatory of Porquerolles'),
(120601, 'https://ror.org/04923x581', 'id', 1, 'https://ror.org/04923x581 Politeknik Assalaam Surakarta'),
(120602, 'https://ror.org/04c3t5x42', 'en', 1, 'https://ror.org/04c3t5x42 The Wildlife Project The Wildlife Project (United States)'),
(120603, 'https://ror.org/05n3x4p02', 'en', 1, 'https://ror.org/05n3x4p02 Medical University of Vienna Medizinische UniversitƤt Wien'),
(120604, 'https://ror.org/02n4r4429', 'en', 1, 'https://ror.org/02n4r4429 MNGI Digestive Health'),
(120605, 'https://ror.org/0581esp57', 'fr', 1, 'https://ror.org/0581esp57 Fondation Maison des Sciences de l''Homme'),
(120606, 'https://ror.org/013meh722', 'en', 1, 'https://ror.org/013meh722 Prifysgol Caergrawnt University of Cambridge'),
(120607, 'https://ror.org/053ep7m26', 'en', 1, 'https://ror.org/053ep7m26 Network of Networks (N2)'),
(120608, 'https://ror.org/01bkbaq61', 'en', 1, 'https://ror.org/01bkbaq61 CERCA Institution Fundació Institució dels Centres de Recerca de Catalunya Institució CERCA - Centres de Recerca de Catalunya'),
(120609, 'https://ror.org/01ccb9w37', 'en', 1, 'https://ror.org/01ccb9w37 St. Petersburg Institute for Informatics and Automation Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информатики Šø автоматизации'),
(120610, 'https://ror.org/0006e6p34', 'de', 1, 'https://ror.org/0006e6p34 ECOLOG Institute for Social-Ecological Research and Education ECOLOG-Institut für sozial-ökologische Forschung und Bildung'),
(120611, 'https://ror.org/013bkhk48', 'fr', 1, 'https://ror.org/013bkhk48 Paris Nanterre University UniversitƩ Paris Nanterre'),
(120612, 'https://ror.org/04gj6tm91', 'en', 1, 'https://ror.org/04gj6tm91 Japan Doll Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬äŗŗå½¢å”ä¼š'),
(120613, 'https://ror.org/05pp4j969', 'fr', 1, 'https://ror.org/05pp4j969 Themis - UniversitƩ du Mans'),
(120614, 'https://ror.org/05sax3c46', 'en', 1, 'https://ror.org/05sax3c46 Kerala University of Digital Sciences, Innovation and Technology கேரள ą®‡ą®²ą®•ąÆą®•ą®®ąÆą®±ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“•ąµ‡ą“°ą“³ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą““ą“«ąµ ą“”ą“æą“œą“æą“±ąµą“±ąµ½ ą“øą“Æąµ»ą“øą“øąµ, ą“‡ą“Øąµą“ØąµŠą“µąµ‡ą“·ąµ» ą“†ąµ»ą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(120615, 'https://ror.org/049mjq378', 'fr', 1, 'https://ror.org/049mjq378 Sous-direction des systèmes d''information et des études statistiques'),
(120616, 'https://ror.org/00qpv3w06', 'en', 1, 'https://ror.org/00qpv3w06 Amref Health Africa'),
(120617, 'https://ror.org/0038zss60', 'en', 1, 'https://ror.org/0038zss60 European Marine Biological Resource Centre'),
(120618, 'https://ror.org/019950a73', 'en', 1, 'https://ror.org/019950a73 Copenhagen Zoo KĆøbenhavn Zoo'),
(120619, 'https://ror.org/05wa94747', 'en', 1, 'https://ror.org/05wa94747 AppliedAI Institute for Europe'),
(120620, 'https://ror.org/020wtkd09', 'en', 1, 'https://ror.org/020wtkd09 South African Council for Natural Scientific Professions Suid-Afrikaanse Raad vir Natuur Wetenskaplike Professies'),
(120621, 'https://ror.org/00x0vxx91', 'en', 1, 'https://ror.org/00x0vxx91 Institute of Physics and Technology Физико-технологического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š°'),
(120622, 'https://ror.org/0171vyp84', 'en', 1, 'https://ror.org/0171vyp84 Delhi Metropolitan Education'),
(120623, 'https://ror.org/04g2vs152', 'id', 1, 'https://ror.org/04g2vs152 Institut Agama Hindu Negeri Tampung Penyang Palangka Raya'),
(120624, 'https://ror.org/01vxknj13', 'no_lang_code', 1, 'https://ror.org/01vxknj13 ASML (Netherlands)'),
(120625, 'https://ror.org/04ngzd740', 'en', 1, 'https://ror.org/04ngzd740 Australian Association of Gerontology'),
(120626, 'https://ror.org/05m35m789', 'es', 1, 'https://ror.org/05m35m789 Universidad Europea de Valencia'),
(120627, 'https://ror.org/01x6z5t49', 'fr', 1, 'https://ror.org/01x6z5t49 FƩdƩration de Recherche Spectroscopies de PhotoƩmission'),
(120628, 'https://ror.org/04hazks31', 'en', 1, 'https://ror.org/04hazks31 International Max Planck Research School for Advanced Methods in Process and Systems Engineering'),
(120629, 'https://ror.org/014x7qf54', 'en', 1, 'https://ror.org/014x7qf54 Micronclean Micronclean (United Kingdom)'),
(120630, 'https://ror.org/00w035z87', 'en', 1, 'https://ror.org/00w035z87 State Library of Oregon'),
(120631, 'https://ror.org/016zzgq87', 'pl', 1, 'https://ror.org/016zzgq87 Pracownia E. Weatherwax Pracownia E. Weatherwax (Poland)'),
(120632, 'https://ror.org/02ykqf474', 'es', 1, 'https://ror.org/02ykqf474 Hospital Escuela de Agudos Dr. Ramón Madariaga'),
(120633, 'https://ror.org/013w2d378', 'en', 1, 'https://ror.org/013w2d378 Institute for Information Transmission Problems Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем переГачи информации им. А.А. Єаркевича Российской акаГемии наук'),
(120634, 'https://ror.org/04jnrse34', 'en', 1, 'https://ror.org/04jnrse34 Shaheed Benazir Bhutto University, Sheringal جامعہ ؓہید ŲØŪŒŁ†ŲøŪŒŲ± بھٹو'),
(120635, 'https://ror.org/037d0rg86', 'es', 1, 'https://ror.org/037d0rg86 Consejo de Formación en Educación'),
(120636, 'https://ror.org/0294q5y39', 'id', 1, 'https://ror.org/0294q5y39 Politeknik Muhammadiyah Makassar'),
(120637, 'https://ror.org/01rxxm828', 'fr', 1, 'https://ror.org/01rxxm828 Conservatoire botanique national du Massif central'),
(120638, 'https://ror.org/04ms06f06', 'de', 1, 'https://ror.org/04ms06f06 Zentrum verantwortungsbewusste Digitalisierung'),
(120639, 'https://ror.org/056qz1b88', 'en', 1, 'https://ror.org/056qz1b88 Bird Research SaeZiP Bird Research SaeZiP (South Korea)'),
(120640, 'https://ror.org/038ajz246', 'en', 1, 'https://ror.org/038ajz246 LAMDA London Academy of Music and Dramatic Art'),
(120641, 'https://ror.org/02xx07v13', 'fr', 1, 'https://ror.org/02xx07v13 Neurocentre Magendie'),
(120642, 'https://ror.org/037v07e55', 'de', 1, 'https://ror.org/037v07e55 Elternhilfe für krebskranke Kinder Leipzig e.V.'),
(120643, 'https://ror.org/04xe7ws48', 'no_lang_code', 1, 'https://ror.org/04xe7ws48 Advanced Research Center for Nanolithography (Netherlands)'),
(120644, 'https://ror.org/0539z1h47', 'en', 1, 'https://ror.org/0539z1h47 RGCC International GmbH'),
(120645, 'https://ror.org/04ak60v12', 'tr', 1, 'https://ror.org/04ak60v12 Gaziantep City Hospital Gaziantep Şehir Hastanesi'),
(120646, 'https://ror.org/05fqdmq12', 'en', 1, 'https://ror.org/05fqdmq12 Institute of Automation and Electrometry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š¼ŠµŃ‚Ń€ŠøŠø Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(120647, 'https://ror.org/00t60zh31', 'en', 1, 'https://ror.org/00t60zh31 Kaiser Permanente'),
(120648, 'https://ror.org/00myn0z94', 'fr', 1, 'https://ror.org/00myn0z94 Institut de Recherche en Informatique et Systèmes Aléatoires Institute for Research in IT and Random Systems'),
(120649, 'https://ror.org/00d7xrm67', 'en', 1, 'https://ror.org/00d7xrm67 Graz University of Technology Technische UniversitƤt Graz'),
(120650, 'https://ror.org/01tezat55', 'fr', 1, 'https://ror.org/01tezat55 Mohamed VI University of Sciences and Health UniversitƩ Mohammed VI des Sciences et de la SantƩ'),
(120651, 'https://ror.org/04525s131', 'en', 1, 'https://ror.org/04525s131 Treeline Biosciences Treeline Biosciences, Inc.'),
(120652, 'https://ror.org/03vamsh08', 'en', 1, 'https://ror.org/03vamsh08 County Durham and Darlington NHS Foundation Trust'),
(120653, 'https://ror.org/03np7fg50', 'en', 1, 'https://ror.org/03np7fg50 Pyatigorsk State Scientific Research Institute of Balneology ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠø'),
(120654, 'https://ror.org/04tnq6g27', 'en', 1, 'https://ror.org/04tnq6g27 The Institute of Problems on Education of the National Academy of Educational Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š²ŠøŃ…Š¾Š²Š°Š½Š½Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії пеГагогічних наук України'),
(120655, 'https://ror.org/04j6nz437', 'en', 1, 'https://ror.org/04j6nz437 Narendra Modi Medical College ą¦Øą¦°ą§‡ą¦Øą§ą¦¦ą§ą¦° মোদি মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ਨਰਿੰਦਰ ਮੋਦੀ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ąØ•ąØ¾ąØ²ąØœ ą°Øą°°ą±‡ą°‚ą°¦ą±ą°° మోదీ ą°®ą±†ą°”ą°æą°•ą°²ą± ą°•ą°¾ą°²ą±‡ą°œą±'),
(120656, 'https://ror.org/03js46403', 'tr', 1, 'https://ror.org/03js46403 Ortopediatri Ƨocuk Ortopedi Akademisi'),
(120657, 'https://ror.org/03yr42517', 'en', 1, 'https://ror.org/03yr42517 National Academy for Planning and Development'),
(120658, 'https://ror.org/02rzr3z90', 'fr', 1, 'https://ror.org/02rzr3z90 Haute Ʃcole d''ingƩnierie et de gestion du canton de Vaud, HES-SO Haute Ecole SpƩcialisƩe de Suisse Occidentale'),
(120659, 'https://ror.org/00tyyrw16', 'es', 1, 'https://ror.org/00tyyrw16 Ministerio de Agricultura, GanaderĆ­a y Pesca Ministry of Agriculture'),
(120660, 'https://ror.org/01j3nb043', 'en', 1, 'https://ror.org/01j3nb043 Berufsakademie Nord University of Cooperative Education'),
(120661, 'https://ror.org/00p7m6v63', 'en', 1, 'https://ror.org/00p7m6v63 Al Nas Hospital'),
(120662, 'https://ror.org/04v7g1721', 'en', 0, 'https://ror.org/04v7g1721 University of Belgrade – Faculty of Physics Univerzitet u Beogradu – Fizički fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Физички Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(120663, 'https://ror.org/02t1r6179', 'en', 1, 'https://ror.org/02t1r6179 Payeshgar Tadbir Afzar Payeshgar Tadbir Afzar (Iran)'),
(120664, 'https://ror.org/02ccwte64', 'en', 1, 'https://ror.org/02ccwte64 Center of Advanced Consultants in Healthcare Education and Training'),
(120665, 'https://ror.org/02jract75', 'en', 1, 'https://ror.org/02jract75 Institute on Laser and Information Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем лазерных Šø информационных технологий'),
(120666, 'https://ror.org/02zmh8h66', 'es', 1, 'https://ror.org/02zmh8h66 Instituto Tecnológico de León'),
(120667, 'https://ror.org/005nxh826', 'en', 1, 'https://ror.org/005nxh826 Glorious Vision University'),
(120668, 'https://ror.org/045sc8e83', 'en', 1, 'https://ror.org/045sc8e83 Federal Research Centre Ā«Fundamentals of BiotechnologyĀ» of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Ā«Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Šµ основы биотехнологии»'),
(120669, 'https://ror.org/01bynmm24', 'es', 1, 'https://ror.org/01bynmm24 Hospital Universitario Santa Cristina'),
(120670, 'https://ror.org/04whb3988', 'en', 1, 'https://ror.org/04whb3988 Institute of Physics'),
(120671, 'https://ror.org/05p6hp428', 'en', 1, 'https://ror.org/05p6hp428 Arab Board Of Health Specializations المجلس Ų§Ł„Ų¹Ų±ŲØŁŠ للاختصاصات Ų§Ł„ŲµŲ­ŁŠŲ©'),
(120672, 'https://ror.org/03z6jp965', 'fr', 1, 'https://ror.org/03z6jp965 Sorbonne Nouvelle University UniversitƩ Sorbonne Nouvelle'),
(120673, 'https://ror.org/04ybnj478', 'ro', 1, 'https://ror.org/04ybnj478 Academia Oamenilor de Știință din RomĆ¢nia Academy of Romanian Scientists'),
(120674, 'https://ror.org/01gcyq186', 'en', 1, 'https://ror.org/01gcyq186 Center for International Policy Research'),
(120675, 'https://ror.org/00bap2564', 'en', 1, 'https://ror.org/00bap2564 Vikramajit Singh Sanatan Dharma College ą¤µą¤æą¤•ą„ą¤°ą¤®ą¤¾ą¤œą„€ą¤¤ सिंह सनातन ą¤§ą¤°ą„ą¤® ą¤•ą„‰ą¤²ą„‡ą¤œ ą¦¬ą¦æą¦•ą§ą¦°ą¦®ą¦œą¦æą§Ž সিং সনাতন ą¦§ą¦°ą§ą¦® ą¦•ą¦²ą§‡ą¦œ'),
(120676, 'https://ror.org/024yb0264', 'en', 0, 'https://ror.org/024yb0264 University of Belgrade – Faculty of Dental Medicine Univerzitet u Beogradu – StomatoloÅ”ki fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š”Ń‚Š¾Š¼Š°Ń‚Š¾Š»Š¾ŃˆŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(120677, 'https://ror.org/01jqy7825', 'id', 1, 'https://ror.org/01jqy7825 College of Health Sciences Widya Dharma Husada Tangerang STIKes Widya Dharma Husada Tangerang'),
(120678, 'https://ror.org/01dqr2815', 'tr', 1, 'https://ror.org/01dqr2815 LƖSANTE Hastanesi LƖSANTE Hospital'),
(120679, 'https://ror.org/053bd6n57', 'tr', 1, 'https://ror.org/053bd6n57 Bilgi Teknolojileri ve İletişim Kurumu Information Technologies and Communications Authority'),
(120680, 'https://ror.org/03qbtqz88', 'fr', 1, 'https://ror.org/03qbtqz88 CIUSSS du Centre-Ouest-de-l''Ǝle-de-MontrĆ©al'),
(120681, 'https://ror.org/02dpqcy73', 'fr', 1, 'https://ror.org/02dpqcy73 Center for Molecular Biophysics Centre de Biophysique MolƩculaire'),
(120682, 'https://ror.org/0385sfg39', 'en', 1, 'https://ror.org/0385sfg39 Dalian Art College å¤§čæžč‰ŗęœÆå­¦é™¢'),
(120683, 'https://ror.org/010e01376', 'nl', 1, 'https://ror.org/010e01376 Foundation for Dutch Scientific Research Institutes NWO-I Stichting Nederlandse Wetenschappelijk Onderzoek Instituten'),
(120684, 'https://ror.org/00pg5jh14', 'fr', 1, 'https://ror.org/00pg5jh14 Assistance Publique – HĆ“pitaux de Paris'),
(120685, 'https://ror.org/01h4vc987', 'en', 1, 'https://ror.org/01h4vc987 Welfare Footprint Institute'),
(120686, 'https://ror.org/0011vmg97', 'en', 1, 'https://ror.org/0011vmg97 Information and Communications University'),
(120687, 'https://ror.org/047146281', 'en', 1, 'https://ror.org/047146281 Far Western Anthropological Research Group, Inc. Far Western Anthropological Research Group, Inc. (United States)'),
(120688, 'https://ror.org/04d96be50', 'no_lang_code', 1, 'https://ror.org/04d96be50 Parker Hannifin (United States)'),
(120689, 'https://ror.org/0012bxd45', 'it', 1, 'https://ror.org/0012bxd45 Conservatorio di Musica ā€œG. Nicoliniā€ di Piacenza'),
(120690, 'https://ror.org/04e91rn58', 'en', 1, 'https://ror.org/04e91rn58 MARDIVE - Association Science and Education for the Conservation of Marine Biodiversity'),
(120691, 'https://ror.org/00hypk195', 'en', 1, 'https://ror.org/00hypk195 Texas Military Department'),
(120692, 'https://ror.org/01nrtdp55', 'fr', 1, 'https://ror.org/01nrtdp55 GDR NBODY : ProblĆØme quantique Ć  N corps en chimie et physique GDR NBODY: Quantum n-body problem in chemistry and physics'),
(120693, 'https://ror.org/02t3qn464', 'en', 1, 'https://ror.org/02t3qn464 NETES Institute of Pharmaceutical Science'),
(120694, 'https://ror.org/00sfd8n43', 'ca', 1, 'https://ror.org/00sfd8n43 Consorci d’Atenció PrimĆ ria de Salut Barcelona Esquerra'),
(120695, 'https://ror.org/05p2fa039', 'en', 1, 'https://ror.org/05p2fa039 Center for Academic & Professional Career Development and Research (CAPCDR)'),
(120696, 'https://ror.org/00qecg646', 'en', 1, 'https://ror.org/00qecg646 Institute of Water Problems and Hydro-Engineering Named After I.V. Yeghiazarov Ō±ÕÆÕ”Õ¤Õ„Õ“Õ«ÕÆÕøÕ½ Ō»ā€¤ÕŽā€¤ ŌµÕ²Õ«Õ”Õ¦Õ”Ö€ÕøÕ¾Õ« Õ”Õ¶Õ¾Õ”Õ¶ Õ»Ö€Õ”ÕµÕ«Õ¶ հիՓնՔհՔրՄցՄրի և Õ°Õ«Õ¤Ö€ÕøÕæÕ„Õ­Õ¶Õ«ÕÆÕ”ÕµÕ« Õ«Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(120697, 'https://ror.org/03bwjzn34', 'en', 1, 'https://ror.org/03bwjzn34 Loyola College of Social Sciences'),
(120698, 'https://ror.org/02nkd6y23', 'pl', 1, 'https://ror.org/02nkd6y23 Institute of Archeology and Ethnology Instytut Archeologii i Etnologii'),
(120699, 'https://ror.org/048tkam97', 'en', 1, 'https://ror.org/048tkam97 American Association of Colleges of Osteopathic Medicine'),
(120700, 'https://ror.org/015sha269', 'de', 1, 'https://ror.org/015sha269 Institut für vergleichende Städtegeschichte'),
(120701, 'https://ror.org/02916qm60', 'en', 1, 'https://ror.org/02916qm60 Departamento de Justicia de los Estados Unidos DĆ©partement de la justice des Ɖtats-unis United States Department of Justice'),
(120702, 'https://ror.org/03dmtvy82', 'en', 1, 'https://ror.org/03dmtvy82 Department of Commerce'),
(120703, 'https://ror.org/01kc5th60', 'nl', 1, 'https://ror.org/01kc5th60 Stichting Politieke Academie'),
(120704, 'https://ror.org/04c78hz76', 'en', 1, 'https://ror.org/04c78hz76 Sitadevi Ratanchand Nahar Adarsh College'),
(120705, 'https://ror.org/04eg47h42', 'no_lang_code', 1, 'https://ror.org/04eg47h42 Walt Disney (United States)'),
(120706, 'https://ror.org/04djeb931', 'en', 1, 'https://ror.org/04djeb931 Tuwaiq Academy'),
(120707, 'https://ror.org/02wfhk785', 'en', 1, 'https://ror.org/02wfhk785 International Institute for Applied Systems Analysis'),
(120708, 'https://ror.org/03awsb125', 'en', 1, 'https://ror.org/03awsb125 Betsi Cadwaladr University Health Board Bwrdd Iechyd Prifysgol Betsi Cadwaladr'),
(120709, 'https://ror.org/05xvk4r52', 'fr', 1, 'https://ror.org/05xvk4r52 TƩlƩcom SudParis'),
(120710, 'https://ror.org/011ywze69', 'it', 1, 'https://ror.org/011ywze69 SocietĆ  Romana di Scienze Naturali ETS'),
(120711, 'https://ror.org/02gxw6y66', 'id', 1, 'https://ror.org/02gxw6y66 Bali Tourism Polytechnic Politeknik Pariwisata Bali'),
(120712, 'https://ror.org/02xh23b55', 'fr', 0, 'https://ror.org/02xh23b55 Laboratoire Evolution et Diversite Biologique Laboratory Evolution and Biological Diversity'),
(120713, 'https://ror.org/03yg7hz06', 'en', 1, 'https://ror.org/03yg7hz06 Centre for Cancer Biology'),
(120714, 'https://ror.org/03wa9cd25', 'fr', 1, 'https://ror.org/03wa9cd25 TƩlescope Bernard Lyot'),
(120715, 'https://ror.org/03s3dhf22', 'en', 1, 'https://ror.org/03s3dhf22 Centre IntĆ©grĆ© Universitaire en SantĆ© et Services Sociaux de l''Ouest-de-l''Ǝle-de-MontrĆ©al-St. Mary St Mary''s Hospital Centre'),
(120716, 'https://ror.org/01q8zws97', 'en', 1, 'https://ror.org/01q8zws97 College of Dental Sciences & Research Centre'),
(120717, 'https://ror.org/034nb0f30', 'en', 1, 'https://ror.org/034nb0f30 Digestive Health Research Institute Institut de Recherche en SantƩ Digestive'),
(120718, 'https://ror.org/000ksaf46', 'de', 1, 'https://ror.org/000ksaf46 Stiftung für Kunst, Kultur und Geschichte'),
(120719, 'https://ror.org/03j65n394', 'fr', 1, 'https://ror.org/03j65n394 Laboratoire d''Excellence TULIP'),
(120720, 'https://ror.org/0014d7y47', 'tr', 1, 'https://ror.org/0014d7y47 Ƈalışma ve Sosyal Güvenlik Eğitim ve Araştırma Merkezi'),
(120721, 'https://ror.org/05rw1n097', 'en', 1, 'https://ror.org/05rw1n097 National Brain Center'),
(120722, 'https://ror.org/04eq2dj68', 'en', 1, 'https://ror.org/04eq2dj68 Latin America Bioimaging'),
(120723, 'https://ror.org/05745n787', 'de', 1, 'https://ror.org/05745n787 Gƶttingen State and University Library NiedersƤchsische Staats-und UniversitƤtsbibliothek Gƶttingen'),
(120724, 'https://ror.org/00yywf731', 'en', 1, 'https://ror.org/00yywf731 Inner Mongolia Electric Power Research Institute å†…č’™å¤ē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢'),
(120725, 'https://ror.org/038m76n55', 'en', 1, 'https://ror.org/038m76n55 ALS Therapy Development Institute'),
(120726, 'https://ror.org/0391j1294', 'en', 1, 'https://ror.org/0391j1294 Huįŗæ University of Medicine and Pharmacy TrĘ°į»ng ĐẔi hį»c Y Dược, ĐẔi hį»c Huįŗæ'),
(120727, 'https://ror.org/020cm6143', 'fr', 1, 'https://ror.org/020cm6143 Laboratoire de recherches IntƩgratives en Neurosciences et psychologie Cognitive'),
(120728, 'https://ror.org/0070z0z95', 'de', 1, 'https://ror.org/0070z0z95 Thuringian State Office for Heritage Management and Archaeology Thüringer Landesamt für Denkmalpflege und Archäologie'),
(120729, 'https://ror.org/05fep3933', 'en', 1, 'https://ror.org/05fep3933 Mangalore University ą¤®ą¤‚ą¤—ą¤²ą„Œą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤®ą¤‚ą¤—ą¤³ą„‚ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ಮಂಗಳೂರು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(120730, 'https://ror.org/00e51vd39', 'de', 1, 'https://ror.org/00e51vd39 Bern Historical Museum Bernisches Historisches Museum MusƩe d''Histoire Bern'),
(120731, 'https://ror.org/03rzn9q30', 'en', 1, 'https://ror.org/03rzn9q30 PUR'),
(120732, 'https://ror.org/017art439', 'en', 1, 'https://ror.org/017art439 Amentum Amentum (United States)'),
(120733, 'https://ror.org/03gef1f50', 'sr', 1, 'https://ror.org/03gef1f50 Institut za zemljiŔte Institute of Soil Science'),
(120734, 'https://ror.org/03r7ras86', 'en', 1, 'https://ror.org/03r7ras86 Pakuan University Universitas Pakuan'),
(120735, 'https://ror.org/05pbb8783', 'fr', 1, 'https://ror.org/05pbb8783 UniversitƩ de Montpellier Paul-ValƩry'),
(120736, 'https://ror.org/05phx6q60', 'pt', 1, 'https://ror.org/05phx6q60 Central University of Mineiros Centro UniversitƔrio de Mineiros'),
(120737, 'https://ror.org/015q23935', 'fr', 1, 'https://ror.org/015q23935 French Research Institute for Development Institut de Recherche pour le DƩveloppement'),
(120738, 'https://ror.org/023c9tc12', 'en', 0, 'https://ror.org/023c9tc12 University of Belgrade – Faculty of Philosophy Univerzitet u Beogradu – Filozofski fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Филозофски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(120739, 'https://ror.org/022kthw22', 'en', 1, 'https://ror.org/022kthw22 Universidad de Rochester University of Rochester UniversitƩ de Rochester'),
(120740, 'https://ror.org/01nh3gm17', 'id', 1, 'https://ror.org/01nh3gm17 Universitas Sebelas April'),
(120741, 'https://ror.org/00dqsbj20', 'en', 1, 'https://ror.org/00dqsbj20 Texas Medical Center'),
(120742, 'https://ror.org/00m54xw81', 'en', 1, 'https://ror.org/00m54xw81 Espanola Animal Hospital'),
(120743, 'https://ror.org/0275zsc71', 'en', 1, 'https://ror.org/0275zsc71 Arizona Department of Transportation'),
(120744, 'https://ror.org/0253f4y91', 'pt', 1, 'https://ror.org/0253f4y91 Centro Regional de CiĆŖncias Nucleares do Nordeste'),
(120745, 'https://ror.org/00f9tz983', 'en', 1, 'https://ror.org/00f9tz983 Nationaal instituut voor Subatomaire Fysica National Institute for Subatomic Physics'),
(120746, 'https://ror.org/01tyv8576', 'en', 1, 'https://ror.org/01tyv8576 Institute of Biophysics äø­å›½ē§‘å­¦é™¢ē”Ÿē‰©ē‰©ē†ē ”ē©¶ę‰€'),
(120747, 'https://ror.org/03jn2p430', 'en', 1, 'https://ror.org/03jn2p430 Ministry of Science and Technology وزارت سائنس و Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(120748, 'https://ror.org/04r7qk823', 'tr', 1, 'https://ror.org/04r7qk823 Manisa Mental Health and Diseases Hospital Mani̇sa Ruh Sağliği Ve Hastaliklari Hastanesi̇'),
(120749, 'https://ror.org/01st4fj80', 'en', 1, 'https://ror.org/01st4fj80 Arthur Jarvis University'),
(120750, 'https://ror.org/017pq2p92', 'ro', 1, 'https://ror.org/017pq2p92 Institutul National de Sanatate Publica National Institute of Public Health'),
(120751, 'https://ror.org/03qs9h678', 'id', 1, 'https://ror.org/03qs9h678 Politeknik Keuangan Negara STAN Polytechnic of State Finance STAN'),
(120752, 'https://ror.org/03jzk4720', 'en', 1, 'https://ror.org/03jzk4720 Interdisciplinary Transformation University Austria'),
(120753, 'https://ror.org/047mpwv78', 'pt', 1, 'https://ror.org/047mpwv78 Institute of Physics for Advanced Materials, Nanotechnology and Photonics Instituto de Física de Materiais Avançados, Nanotecnologia e Fotónica'),
(120754, 'https://ror.org/01zthd343', 'fr', 1, 'https://ror.org/01zthd343 REGALIA: RƩgulation de l''Intelligence Artificielle'),
(120755, 'https://ror.org/05hzn5427', 'en', 1, 'https://ror.org/05hzn5427 Ho Chi Minh City University of Technology and Engineering TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ Kỹ thuįŗ­t ThĆ nh phố Hồ ChĆ­ Minh'),
(120756, 'https://ror.org/03ftejk10', 'en', 1, 'https://ror.org/03ftejk10 V. N. Karazin Kharkiv National University Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’. Š. ŠšŠ°Ń€Š°Š·Ń–Š½Š° Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. Š. ŠšŠ°Ń€Š°Š·ŠøŠ½Š°'),
(120757, 'https://ror.org/029e8gb70', 'en', 1, 'https://ror.org/029e8gb70 Connecticut General Assembly'),
(120758, 'https://ror.org/02ga3dt05', 'en', 1, 'https://ror.org/02ga3dt05 Hungarian Academy of Arts Research Institute of Art Theory and Methodology'),
(120759, 'https://ror.org/02v6kpv12', 'fr', 0, 'https://ror.org/02v6kpv12 UniversitƩ Paul-Sabatier UniversitƩ Toulouse III - Paul Sabatier'),
(120760, 'https://ror.org/01qb5qa49', 'en', 1, 'https://ror.org/01qb5qa49 Amref International University'),
(120761, 'https://ror.org/035shw784', 'en', 1, 'https://ror.org/035shw784 International University of Tourism and Hospitality ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŃƒŃ€ŠøŠ·Š¼Š° Šø гостеприимства'),
(120762, 'https://ror.org/04900st04', 'ro', 1, 'https://ror.org/04900st04 Spitalul Clinic de Urgență pentru Copii "SfĆ¢nta Maria" - Iași'),
(120763, 'https://ror.org/02p2bgp27', 'no_lang_code', 1, 'https://ror.org/02p2bgp27 Koninklijke Philips Philips (Netherlands)'),
(120764, 'https://ror.org/05tqa9940', 'en', 1, 'https://ror.org/05tqa9940 University of Kerala UniversitĆ© du kerala কেরল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ கேரளா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“•ąµ‡ą“°ą“³ ą“øąµ¼ ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(120765, 'https://ror.org/0581em797', 'de', 1, 'https://ror.org/0581em797 Generaldirektion Wasserstraßen und Schifffahrt'),
(120766, 'https://ror.org/03ypdje89', 'fr', 0, 'https://ror.org/03ypdje89 Centre de SantƩ et de Services Sociaux Cavendish'),
(120767, 'https://ror.org/0373ksf61', 'en', 1, 'https://ror.org/0373ksf61 SPA Risk (United States)'),
(120768, 'https://ror.org/03hh81985', 'fr', 1, 'https://ror.org/03hh81985 Institut de pharmacologie de Sherbrooke'),
(120769, 'https://ror.org/00j75pt62', 'sk', 1, 'https://ror.org/00j75pt62 Technical University of Zvolen TechnickĆ” univerzita vo Zvolene'),
(120770, 'https://ror.org/057f25d66', 'no_lang_code', 1, 'https://ror.org/057f25d66 Sinovac Biotech åŒ—äŗ¬ē§‘å…“ē”Ÿē‰©åˆ¶å“ęœ‰é™å…¬åø'),
(120771, 'https://ror.org/0173s3a40', 'en', 1, 'https://ror.org/0173s3a40 Health and Resilience Institute (H+RI)'),
(120772, 'https://ror.org/057ne8428', 'en', 1, 'https://ror.org/057ne8428 AIMOKA: Advanced and Innovative MOdeling for percutaneous Cancer tumor Ablation'),
(120773, 'https://ror.org/012crs830', 'en', 1, 'https://ror.org/012crs830 Al Salam University'),
(120774, 'https://ror.org/03g60bf21', 'en', 1, 'https://ror.org/03g60bf21 Children''s Hospital Foundation'),
(120775, 'https://ror.org/03ncs3316', 'no_lang_code', 1, 'https://ror.org/03ncs3316 Red Hat (United States)'),
(120776, 'https://ror.org/02grkyz14', 'en', 1, 'https://ror.org/02grkyz14 UniversitƩ de Western Ontario Western University'),
(120777, 'https://ror.org/00npm2d56', 'en', 1, 'https://ror.org/00npm2d56 ENKO Chem ENKO Chem, Inc.'),
(120778, 'https://ror.org/05pjsgx75', 'en', 1, 'https://ror.org/05pjsgx75 Indian Institute of Technology Kanpur Institut indien de technologie de kanpur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾, ą¤•ą¤¾ą¤Øą¤Ŗą„‚ą¤° ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤¾ą¤Øą¤Ŗą„ą¤° ą¦†ą¦‡ą¦†ą¦‡ą¦Ÿą¦æ কানপুর ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®¾ą®©ąÆą®ŖąÆ‚ą®°ąÆ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“•ą“¾ąµŗą“Ŗąµ‚ąµ¼'),
(120779, 'https://ror.org/0168r3w48', 'en', 1, 'https://ror.org/0168r3w48 University of California San Diego'),
(120780, 'https://ror.org/01njes783', 'en', 1, 'https://ror.org/01njes783 Seattle Children''s Hospital'),
(120781, 'https://ror.org/04s5mat29', 'en', 1, 'https://ror.org/04s5mat29 University of Victoria UniversitƩ de victoria'),
(120782, 'https://ror.org/011408310', 'en', 1, 'https://ror.org/011408310 State Scientific Institution ā€œInstitute for Single Crystalsā€ of National Academy of Sciences of Ukraine ŠŠ°ŃƒŠŗŠ¾Š²Š¾-технологічний комплекс ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š½Š¾ŠŗŃ€ŠøŃŃ‚Š°Š»Ń–Š²ā€ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(120783, 'https://ror.org/04cpxjv19', 'en', 1, 'https://ror.org/04cpxjv19 Centre universitaire de santƩ McGill McGill University Health Centre'),
(120784, 'https://ror.org/0006s4z66', 'en', 1, 'https://ror.org/0006s4z66 Bureau of Justice Statistics'),
(120785, 'https://ror.org/02hp31992', 'fr', 1, 'https://ror.org/02hp31992 Empenn'),
(120786, 'https://ror.org/059wtn003', 'en', 1, 'https://ror.org/059wtn003 Bavarian Center for Applied Energy Research Bayerisches Zentrum für Angewandte Energieforschung'),
(120787, 'https://ror.org/04fm87419', 'en', 1, 'https://ror.org/04fm87419 Carol Davila University of Medicine and Pharmacy Universitatea de Medicină și Farmacie Carol Davila'),
(120788, 'https://ror.org/03p7xrr08', 'fr', 1, 'https://ror.org/03p7xrr08 Pharmacochimie et Pharmacologie pour le DƩveloppement'),
(120789, 'https://ror.org/020rk5q10', 'id', 1, 'https://ror.org/020rk5q10 Institut Teknologi Kesehatan Malang Widya Cipta Husada'),
(120790, 'https://ror.org/00tr9az64', 'en', 1, 'https://ror.org/00tr9az64 Contemporary Amperex Technology Co., Limited.'),
(120791, 'https://ror.org/056ja1h98', 'en', 1, 'https://ror.org/056ja1h98 Bundesministerium für Familie, Senioren, Frauen und Jugend Federal Ministry for Family Affairs, Senior Citizens, Women and Youth'),
(120792, 'https://ror.org/02ce69366', 'en', 1, 'https://ror.org/02ce69366 State Museum of Nature of V. N. Karazin Kharkiv National University Державний музей прироГи Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ¾Š³Š¾ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ імені Š’. Š. ŠšŠ°Ń€Š°Š·Ń–Š½Š°'),
(120793, 'https://ror.org/00g1dnz14', 'en', 0, 'https://ror.org/00g1dnz14 University of Belgrade – Faculty of Economics and Business Univerzitet u Beogradu – Ekonomski fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Економски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(120794, 'https://ror.org/02h1e8605', 'en', 1, 'https://ror.org/02h1e8605 Erzincan Binali Yıldırım University Erzincan Binali Yıldırım Üniversitesi'),
(120795, 'https://ror.org/05wm6p530', 'pt', 1, 'https://ror.org/05wm6p530 Universidade Portucalense'),
(120796, 'https://ror.org/020r51985', 'fr', 1, 'https://ror.org/020r51985 Centre Hospitalier Universitaire de Sherbrooke'),
(120797, 'https://ror.org/01xxc5a52', 'en', 1, 'https://ror.org/01xxc5a52 Nigerian Institute of Social and Economic Research'),
(120798, 'https://ror.org/059xepj08', 'en', 1, 'https://ror.org/059xepj08 Cleveland Clinic Akron General'),
(120799, 'https://ror.org/02twt6343', 'fr', 1, 'https://ror.org/02twt6343 Institut universitaire en santƩ mentale de MontrƩal'),
(120800, 'https://ror.org/02x3mf211', 'en', 1, 'https://ror.org/02x3mf211 Federal Research Center for Information and Computational Technologies Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр информационных Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… технологий'),
(120801, 'https://ror.org/00s8v9953', 'en', 1, 'https://ror.org/00s8v9953 Institute of Plant Protection of the National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š·Š°Ń…ŠøŃŃ‚Ńƒ рослин ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(120802, 'https://ror.org/03zydm450', 'en', 1, 'https://ror.org/03zydm450 Great Ormond Street Hospital for Children NHS Foundation Trust'),
(120803, 'https://ror.org/05rc6zz86', 'en', 1, 'https://ror.org/05rc6zz86 AIIDE Publishing & Digital AIIDE Publishing & Digital Limited Partnership ąø«ą¹‰ąø²ąø‡ąø«ąøøą¹‰ąø™ąøŖą¹ˆąø§ąø™ąøˆąø³ąøąø±ąø” เอไอไอดีอี ąøžąø±ąøšąø„ąø“ąøŠąøŠąø“ąø‡ ą¹ąø­ąø™ąø”ą¹Œ ąø”ąø“ąøˆąø“ąø—ąø±ąø„ เอไอไอดีอี ąøžąø±ąøšąø„ąø“ąøŠąøŠąø“ąø‡ ą¹ąø­ąø™ąø”ą¹Œ ąø”ąø“ąøˆąø“ąø—ąø±ąø„'),
(120804, 'https://ror.org/04qt8pd90', 'en', 1, 'https://ror.org/04qt8pd90 Shariaty Technical College');
INSERT INTO `rors` VALUES
(120805, 'https://ror.org/04cmtj866', 'es', 1, 'https://ror.org/04cmtj866 Agencia de Investigación e Innovación de Castilla-La-Mancha'),
(120806, 'https://ror.org/014yt7f21', 'en', 1, 'https://ror.org/014yt7f21 Great Lakes Crystal Technologies Great Lakes Crystal Technologies, Inc'),
(120807, 'https://ror.org/02c1xt223', 'en', 1, 'https://ror.org/02c1xt223 Institute of Marine and Limnic Studies'),
(120808, 'https://ror.org/02r2k1c68', 'en', 1, 'https://ror.org/02r2k1c68 National Institute of Science Education and Research ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¬œą¬¾ą¬¤ą­€ą­Ÿ ą¬¬ą¬æą¬œą­ą¬žą¬¾ą¬Ø ą¬¶ą¬æą¬•ą­ą¬·ą¬¾ ą¬ą¬¬ą¬‚ ଗବେଷଣା ą¬Ŗą­ą¬°ą¬¤ą¬æą¬·ą­ą¬ ą¬¾ą¬Ø ą“Øąµˆą“øąµ¼'),
(120809, 'https://ror.org/04p9k2z50', 'ca', 1, 'https://ror.org/04p9k2z50 Ramon Llull University Universidad Ramon Llull Universitat Ramon Llull'),
(120810, 'https://ror.org/01egbmk61', 'fr', 0, 'https://ror.org/01egbmk61 Clinique de l''Acte et PSychosexualitƩ'),
(120811, 'https://ror.org/00q919b81', 'en', 1, 'https://ror.org/00q919b81 Ministry of Education وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ł…Ł…Ł„ŁƒŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ©'),
(120812, 'https://ror.org/01ftsd693', 'id', 1, 'https://ror.org/01ftsd693 Universitas PGRI Sumatera Barat'),
(120813, 'https://ror.org/03y02pg02', 'en', 1, 'https://ror.org/03y02pg02 Hochschule für Musik Detmold University of Music Detmold'),
(120814, 'https://ror.org/02707mq62', 'en', 1, 'https://ror.org/02707mq62 HD Hyundai Europe Research and Development Center HD Hyundai Europe Research and Development Center (Germany)'),
(120815, 'https://ror.org/05t2njg22', 'en', 1, 'https://ror.org/05t2njg22 Institute of Ethnology MTA BTK NƩprajztudomƔnyi IntƩzet'),
(120816, 'https://ror.org/03gyg7512', 'en', 1, 'https://ror.org/03gyg7512 NanoMedTrix NanoMedTrix, LLC'),
(120817, 'https://ror.org/03v0xgy96', 'pt', 1, 'https://ror.org/03v0xgy96 Federal Highway Police of Brazil Polƭcia RodoviƔria Federal'),
(120818, 'https://ror.org/04aeydz26', 'en', 1, 'https://ror.org/04aeydz26 Patan Multiple Campus'),
(120819, 'https://ror.org/00zncbw15', 'en', 1, 'https://ror.org/00zncbw15 IIMT University'),
(120820, 'https://ror.org/03kh8rv18', 'pt', 1, 'https://ror.org/03kh8rv18 Instituto de QuĆ­mica de SĆ£o Carlos SĆ£o Carlos Institute of Chemistry'),
(120821, 'https://ror.org/01khwek78', 'en', 1, 'https://ror.org/01khwek78 Texas A&M University-Victoria'),
(120822, 'https://ror.org/00s8gdh69', 'en', 1, 'https://ror.org/00s8gdh69 Quantum AetherDynamics Institute'),
(120823, 'https://ror.org/03gkf0p07', 'fr', 1, 'https://ror.org/03gkf0p07 Montpellier-Ecologie, Evolution, BiodiversitƩ'),
(120824, 'https://ror.org/03jt0v447', 'en', 1, 'https://ror.org/03jt0v447 High Tech High Graduate School of Education'),
(120825, 'https://ror.org/03renyq06', 'en', 1, 'https://ror.org/03renyq06 Institute of History Magyar TudomƔnyos AkadƩmia TƶrtƩnettudomƔnyi IntƩzete'),
(120826, 'https://ror.org/04gv4cm14', 'ca', 1, 'https://ror.org/04gv4cm14 Escola d''Administració PĆŗblica de Catalunya Escuela de Administración PĆŗblica de CataluƱa Public Administration School of Catalonia Ɖcole d''Administration Publique de Catalogne'),
(120827, 'https://ror.org/002t25c44', 'fr', 1, 'https://ror.org/002t25c44 Paris 1 PanthƩon-Sorbonne University UniversitƩ Paris 1 PanthƩon-Sorbonne'),
(120828, 'https://ror.org/053d4n634', 'ca', 1, 'https://ror.org/053d4n634 Banc de Sang i Teixits Banco de Sangre y Tejidos Blood and Tissue Bank'),
(120829, 'https://ror.org/02pdyf227', 'de', 1, 'https://ror.org/02pdyf227 MBI - Marietta Blau Institute for Particle Physics MBI - Marietta-Blau-Institut für Teilchenphysik'),
(120830, 'https://ror.org/04y5y0036', 'en', 1, 'https://ror.org/04y5y0036 Tanzania Agriculture Research Institute'),
(120831, 'https://ror.org/03mjbnq62', 'it', 1, 'https://ror.org/03mjbnq62 Museo Casa Don Bosco'),
(120832, 'https://ror.org/00qaa6j11', 'en', 1, 'https://ror.org/00qaa6j11 Hue University ĐẔi hį»c Huįŗæ'),
(120833, 'https://ror.org/0158xba94', 'en', 1, 'https://ror.org/0158xba94 Academic Scientific Research Group'),
(120834, 'https://ror.org/018zaej71', 'it', 1, 'https://ror.org/018zaej71 Ospedale di San DonĆ  di Piave'),
(120835, 'https://ror.org/03cve4549', 'en', 1, 'https://ror.org/03cve4549 Tsinghua University ęø…åŽå¤§å­¦'),
(120836, 'https://ror.org/0374drm04', 'it', 1, 'https://ror.org/0374drm04 Accademia di Belle Arti dell''Aquila'),
(120837, 'https://ror.org/058nbms57', 'en', 1, 'https://ror.org/058nbms57 Florida Department of Agriculture and Consumer Services'),
(120838, 'https://ror.org/02a2kzf50', 'ca', 1, 'https://ror.org/02a2kzf50 Hospital ClĆ­nic de Barcelona'),
(120839, 'https://ror.org/03n8r7751', 'en', 1, 'https://ror.org/03n8r7751 Mars Wrigley Confectionery Mars Wrigley Confectionery US, LLC'),
(120840, 'https://ror.org/0216ymg87', 'en', 1, 'https://ror.org/0216ymg87 The Green Institute of Chemical Biomedical and Environmental Sciences'),
(120841, 'https://ror.org/05vjq3b59', 'es', 1, 'https://ror.org/05vjq3b59 Red de Investigadores Educativos Chihuahua'),
(120842, 'https://ror.org/025nmxp11', 'fr', 1, 'https://ror.org/025nmxp11 Institut de MƩcanique des Fluides de Toulouse Institute of Fluid Mechanics of Toulouse'),
(120843, 'https://ror.org/002tchr49', 'en', 1, 'https://ror.org/002tchr49 Jawaharlal Nehru Technological University, Hyderabad जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą¤æą¤•ą¤² ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€, ą¤¹ą„ˆą¤¦ą¤°ą¤¾ą¤¬ą¤¾ą¤¦ ą®œą®µą®•ą®°ąÆą®²ą®¾ą®²ąÆ நேரு ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®µą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ సాంకేతిక ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(120844, 'https://ror.org/027mnq498', 'fr', 1, 'https://ror.org/027mnq498 De la PrƩhistoire Ơ l''Actuel : Culture, Environnement et Anthropologie'),
(120845, 'https://ror.org/0420bzz85', 'id', 1, 'https://ror.org/0420bzz85 Universitas Pembangunan Nasional Veteran Yogyakarta'),
(120846, 'https://ror.org/03smk3872', 'fr', 1, 'https://ror.org/03smk3872 Centre de Recherche en Acquisition et Traitement de l''Image pour la SantƩ'),
(120847, 'https://ror.org/01keh0577', 'en', 1, 'https://ror.org/01keh0577 University of Nevada, Reno'),
(120848, 'https://ror.org/01e3kxx79', 'en', 1, 'https://ror.org/01e3kxx79 Brain Foundation'),
(120849, 'https://ror.org/01mts2g59', 'fr', 1, 'https://ror.org/01mts2g59 Centre de Résonance Magnétique des Systèmes Biologiques'),
(120850, 'https://ror.org/05snx2m33', 'en', 0, 'https://ror.org/05snx2m33 University of Belgrade – Faculty of Sports and Physical Education Univerzitet u Beogradu – Fakultet sporta i fizičkog vaspitanja Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ спорта Šø физичког Š²Š°ŃŠæŠøŃ‚Š°ŃšŠ°'),
(120851, 'https://ror.org/00g5sqv46', 'ca', 1, 'https://ror.org/00g5sqv46 Universidad Rovira i Virgili Universitat Rovira i Virgili'),
(120852, 'https://ror.org/041rf3s62', 'id', 1, 'https://ror.org/041rf3s62 Universitas Islam Syarifuddin Lumajang'),
(120853, 'https://ror.org/01psm3828', 'no_lang_code', 1, 'https://ror.org/01psm3828 Novartis (Israel)'),
(120854, 'https://ror.org/0132xxe06', 'en', 1, 'https://ror.org/0132xxe06 Melbourne Institute of Technology'),
(120855, 'https://ror.org/00gygcg63', 'en', 1, 'https://ror.org/00gygcg63 East Bay Community Recovery Project'),
(120856, 'https://ror.org/00013q465', 'es', 1, 'https://ror.org/00013q465 Pontifical Catholic University of Peru Pontificia Universidad Católica del Perú'),
(120857, 'https://ror.org/01av3a615', 'ca', 1, 'https://ror.org/01av3a615 Institut de Recerca BiomĆØdica Catalunya Sud'),
(120858, 'https://ror.org/02acpdc95', 'en', 1, 'https://ror.org/02acpdc95 CuraƧao Medical Center'),
(120859, 'https://ror.org/0421msg78', 'id', 1, 'https://ror.org/0421msg78 Universitas Cahaya Prima'),
(120860, 'https://ror.org/000025p04', 'en', 1, 'https://ror.org/000025p04 Thailand Science Research and Innovation ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø„ąø“ąø°ąøąø£ąø£ąø”ąøąø²ąø£ąøŖą¹ˆąø‡ą¹€ąøŖąø£ąø“ąø”ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œ ąø§ąø“ąøˆąø±ąø¢ą¹ąø„ąø°ąø™ąø§ąø±ąø•ąøąø£ąø£ąø”'),
(120861, 'https://ror.org/05qt8jw47', 'pt', 1, 'https://ror.org/05qt8jw47 FATEC São José dos Campos'),
(120862, 'https://ror.org/05d29yv45', 'fr', 1, 'https://ror.org/05d29yv45 Services rƩpartis, Architectures, MOdƩlisation, Validation, Administration des RƩseaux'),
(120863, 'https://ror.org/05ryt1597', 'en', 1, 'https://ror.org/05ryt1597 Centre d''Estudis de Temes Contemporanis Centre for Contemporary Studies'),
(120864, 'https://ror.org/017jj3e32', 'en', 1, 'https://ror.org/017jj3e32 Al-Zahrawi University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ł‡Ų±Ų§ŁˆŁŠ'),
(120865, 'https://ror.org/02n9z0v62', 'en', 1, 'https://ror.org/02n9z0v62 Amity University ą¤ą¤®ą¤æą¤Ÿą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(120866, 'https://ror.org/03g26ah87', 'fr', 1, 'https://ror.org/03g26ah87 HĆ“pital Universitaire International Cheikh Khalifa المستؓفى Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠ Ų§Ł„Ų“ŁŠŲ® زايد'),
(120867, 'https://ror.org/0561n6946', 'en', 1, 'https://ror.org/0561n6946 Romanian Academy'),
(120868, 'https://ror.org/047f8bv22', 'en', 1, 'https://ror.org/047f8bv22 Institute of Computational Modeling Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š³Š¾ Š¼Š¾Š“ŠµŠ»ŠøŃ€Š¾Š²Š°Š½ŠøŃ Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(120869, 'https://ror.org/01bqt7532', 'en', 0, 'https://ror.org/01bqt7532 University of Belgrade – Technical Faculty in Bor Univerzitet u Beogradu – Tehnički fakultet u Boru'),
(120870, 'https://ror.org/011109p83', 'en', 1, 'https://ror.org/011109p83 TrĘ°į»ng ĐẔi hį»c Khoa hį»c XĆ£ hį»™i vĆ  NhĆ¢n văn VNU University of Social Sciences and Humanities'),
(120871, 'https://ror.org/04g069229', 'en', 1, 'https://ror.org/04g069229 Sankara Eye Hospital, Guntur'),
(120872, 'https://ror.org/01trdns33', 'de', 1, 'https://ror.org/01trdns33 Klinikum Magdeburg'),
(120873, 'https://ror.org/05n911h24', 'de', 1, 'https://ror.org/05n911h24 Technical University of Darmstadt Technische UniversitƤt Darmstadt'),
(120874, 'https://ror.org/034h2va53', 'en', 1, 'https://ror.org/034h2va53 Maharashtra Animal and Fishery Sciences University ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤Ŗą¤¶ą„ व ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ , ą¤Øą¤¾ą¤—ą¤Ŗą„‚ą¤°'),
(120875, 'https://ror.org/009tqys91', 'en', 1, 'https://ror.org/009tqys91 Cancer Consortium'),
(120876, 'https://ror.org/0111s2360', 'fr', 1, 'https://ror.org/0111s2360 Centre de Recherches sur la Cognition Animale Research Centre on Animal Cognition'),
(120877, 'https://ror.org/03fn1w943', 'en', 1, 'https://ror.org/03fn1w943 International Science and Technology Center'),
(120878, 'https://ror.org/053zfjn49', 'fr', 1, 'https://ror.org/053zfjn49 Centre rĆ©gional d’exploration fonctionnelle et ressources expĆ©rimentales Regional Center for Functional Exploration and Experimental Resources'),
(120879, 'https://ror.org/005d4vt11', 'en', 1, 'https://ror.org/005d4vt11 CCCC Road & Bridge South China Engineering Co., Ltd CCCC Road & Bridge South China Engineering Co., Ltd (China)'),
(120880, 'https://ror.org/0103mpa25', 'en', 1, 'https://ror.org/0103mpa25 MGM Institute of Physiotherapy'),
(120881, 'https://ror.org/03vaqfv64', 'en', 0, 'https://ror.org/03vaqfv64 GNS Science'),
(120882, 'https://ror.org/05xe9s578', 'en', 1, 'https://ror.org/05xe9s578 Sankara Eye Hospital, Shimoga'),
(120883, 'https://ror.org/0440p1d37', 'no_lang_code', 1, 'https://ror.org/0440p1d37 GITAM University ą¤—ą¤¾ą¤ą¤§ą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤Øą„ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ਗਾਂਧੀ ąØ‡ą©°ąØøąØŸą©€ąØšąØæąØŠąØŸ ਔਫ਼ ąØŸą©ˆąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ਐਂਔ ąØ®ą©ˆąØØą©‡ąØœąØ®ą©ˆąØ‚ąØŸ గీతం ą°”ą±€ą°®ą±ą°”ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(120884, 'https://ror.org/0486rp510', 'fr', 1, 'https://ror.org/0486rp510 Centre de ressources, d''expertise et de performance sportive de Toulouse'),
(120885, 'https://ror.org/01nw6qk38', 'fr', 1, 'https://ror.org/01nw6qk38 Institut de Chimie de la Matière Condensée de Bordeaux'),
(120886, 'https://ror.org/00x7ekv49', 'nl', 1, 'https://ror.org/00x7ekv49 Centrum Wiskunde & Informatica National Research Institute for Mathematics and Computer Science'),
(120887, 'https://ror.org/04hsdam77', 'en', 1, 'https://ror.org/04hsdam77 Taiwan Centers for Disease Control č”›ē”Ÿē¦åˆ©éƒØē–¾ē—…ē®”åˆ¶ē½²'),
(120888, 'https://ror.org/019jywm96', 'en', 1, 'https://ror.org/019jywm96 rOpenSci'),
(120889, 'https://ror.org/04hp1ky92', 'it', 1, 'https://ror.org/04hp1ky92 NODES S.c.a.r.l'),
(120890, 'https://ror.org/014kd0k59', 'en', 1, 'https://ror.org/014kd0k59 Benazir Bhutto Shaheed University Lyari ŲØŪŒŁ†ŲøŪŒŲ± بھٹو ؓہید ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ Ł„ŪŒŲ§Ų±ŪŒ Ś©Ų±Ų§Ś†ŪŒ'),
(120891, 'https://ror.org/0575yy874', 'en', 1, 'https://ror.org/0575yy874 Universitair Medisch Centrum Utrecht University Medical Center Utrecht'),
(120892, 'https://ror.org/041jxfy86', 'en', 1, 'https://ror.org/041jxfy86 Vallurupalli Nageswara Rao Vignana Jyothi Institute of Engineering and Technology'),
(120893, 'https://ror.org/0290eg024', 'cs', 1, 'https://ror.org/0290eg024 Hradec KrÔlové Region KrÔlovéhradecký kraj'),
(120894, 'https://ror.org/0378f3x42', 'ca', 1, 'https://ror.org/0378f3x42 Fundació Blanquerna'),
(120895, 'https://ror.org/03c1jjs85', 'en', 1, 'https://ror.org/03c1jjs85 Federal Scientific and Clinical Center of Medical Rehabilitation and Balneology of the Federal Medical and Biological Agency of Russia'),
(120896, 'https://ror.org/0105rz203', 'de', 1, 'https://ror.org/0105rz203 PƤdagogische Hochschule Wien University College of Teacher Education Vienna'),
(120897, 'https://ror.org/04knbh022', 'en', 1, 'https://ror.org/04knbh022 Austrian Institute of Technology'),
(120898, 'https://ror.org/05rdwta29', 'es', 1, 'https://ror.org/05rdwta29 Instituto de Investigaciones en Ciencias de la Educación'),
(120899, 'https://ror.org/01eaec076', 'es', 1, 'https://ror.org/01eaec076 Universidad de La CiƩnega del estado de MichoacƔn Ocampo'),
(120900, 'https://ror.org/016xsfp80', 'en', 1, 'https://ror.org/016xsfp80 Radboud Universiteit Nijmegen Radboud University Nijmegen Université Radboud de Nimègue'),
(120901, 'https://ror.org/031603425', 'no_lang_code', 1, 'https://ror.org/031603425 Home Depot (United States)'),
(120902, 'https://ror.org/055fx5r60', 'en', 1, 'https://ror.org/055fx5r60 IFIM Institutions'),
(120903, 'https://ror.org/03qh0mb25', 'en', 1, 'https://ror.org/03qh0mb25 Envision Energy (China)'),
(120904, 'https://ror.org/00105n843', 'pt', 1, 'https://ror.org/00105n843 CIAUD-UPT'),
(120905, 'https://ror.org/003jnac13', 'fr', 1, 'https://ror.org/003jnac13 Chemical Engineering Lab of Toulouse Laboratoire de GƩnie Chimique'),
(120906, 'https://ror.org/04nabhy78', 'fr', 1, 'https://ror.org/04nabhy78 Laboratoire de l''Intégration du Matériau au Système'),
(120907, 'https://ror.org/01n3s4692', 'en', 1, 'https://ror.org/01n3s4692 Shiraz University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ؓیراز'),
(120908, 'https://ror.org/00r8amq78', 'fr', 1, 'https://ror.org/00r8amq78 LIttoral ENvironnement et SociƩtƩs'),
(120909, 'https://ror.org/0171mae58', 'fr', 1, 'https://ror.org/0171mae58 Softmat - Chimie des colloĆÆdes, polymĆØres & assemblages complexes'),
(120910, 'https://ror.org/04md71v26', 'en', 1, 'https://ror.org/04md71v26 Kerala University of Health Sciences ą“•ąµ‡ą“°ą“³ ą“†ą“°ąµ‹ą“—ąµą“Æ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(120911, 'https://ror.org/04c42gq36', 'en', 1, 'https://ror.org/04c42gq36 Center for Tobacco Products'),
(120912, 'https://ror.org/05be9p317', 'fr', 1, 'https://ror.org/05be9p317 Micropesanteur Fondamentale et AppliquƩe'),
(120913, 'https://ror.org/02nh3r188', 'en', 1, 'https://ror.org/02nh3r188 Branner Global University'),
(120914, 'https://ror.org/02hcn4061', 'fr', 1, 'https://ror.org/02hcn4061 Centre Borelli'),
(120915, 'https://ror.org/01gntjh03', 'en', 1, 'https://ror.org/01gntjh03 Het Koninklijk Nederlands Instituut voor Onderzoek der Zee Royal Netherlands Institute for Sea Research'),
(120916, 'https://ror.org/01sxpmm41', 'en', 1, 'https://ror.org/01sxpmm41 Yanbu Industrial College ŁƒŁ„ŁŠŲ© ŁŠŁ†ŲØŲ¹ Ų§Ł„ŲµŁ†Ų§Ų¹ŁŠŲ©'),
(120917, 'https://ror.org/01s4arm57', 'pt', 1, 'https://ror.org/01s4arm57 GuaƭracƔ Faculty UniGuairacƔ Centro UniversitƔrio'),
(120918, 'https://ror.org/03c3tz828', 'en', 1, 'https://ror.org/03c3tz828 KeChow Pharma KeChow Pharma (China) äøŠęµ·ē§‘å·žčÆē‰©č‚”ä»½ęœ‰é™å…¬åø'),
(120919, 'https://ror.org/02pvvpt40', 'en', 1, 'https://ror.org/02pvvpt40 St. Kabir Institute of Professional Studies'),
(120920, 'https://ror.org/047z5as19', 'fr', 1, 'https://ror.org/047z5as19 Laboratoire de Recherche en Sciences VƩgƩtales'),
(120921, 'https://ror.org/000k1q888', 'en', 1, 'https://ror.org/000k1q888 Nederlands Instituut voor Radioastronomie Netherlands Institute for Radio Astronomy'),
(120922, 'https://ror.org/051hr2x62', 'en', 1, 'https://ror.org/051hr2x62 Indian Social Institute'),
(120923, 'https://ror.org/00j8ram51', 'en', 0, 'https://ror.org/00j8ram51 Cambridge Military Hospital'),
(120924, 'https://ror.org/00r9xw041', 'sv', 1, 'https://ror.org/00r9xw041 Stiftelsen Olle Engkvist ByggmƤstare'),
(120925, 'https://ror.org/04xeap310', 'id', 1, 'https://ror.org/04xeap310 Universitas Islam Negeri Sayyid Ali Rahmatullah Tulungagung Universitas Islam Negeri UIN Sayyid Ali Rahmatullah Tulungagung'),
(120926, 'https://ror.org/0596m7f19', 'en', 1, 'https://ror.org/0596m7f19 West Pomeranian University of Technology in Szczecin Zachodniopomorski Uniwersytet Technologiczny w Szczecinie'),
(120927, 'https://ror.org/00bgk9508', 'it', 1, 'https://ror.org/00bgk9508 Politecnico di Torino Polytechnic University of Turin Ɖcole Polytechnique de Turin'),
(120928, 'https://ror.org/04e4jbv10', 'fr', 1, 'https://ror.org/04e4jbv10 Institut de recherche Robert-SauvƩ en santƩ et en sƩcuritƩ du travail'),
(120929, 'https://ror.org/041gvmd67', 'ca', 1, 'https://ror.org/041gvmd67 Fundació de Recerca ClĆ­nic Barcelona-Institut d’Investigacions BiomĆØdiques August Pi i Sunyer'),
(120930, 'https://ror.org/03p8rs557', 'en', 1, 'https://ror.org/03p8rs557 Marbella Design Academy'),
(120931, 'https://ror.org/05k07f122', 'es', 1, 'https://ror.org/05k07f122 Instituto Franco-Argentino sobre Estudios de Clima y sus Impactos'),
(120932, 'https://ror.org/054kj8g66', 'en', 1, 'https://ror.org/054kj8g66 Health Education Research Foundation'),
(120933, 'https://ror.org/04encyw73', 'pt', 1, 'https://ror.org/04encyw73 Instituto de Desenvolvimento SustentƔvel MamirauƔ'),
(120934, 'https://ror.org/02m4p8096', 'en', 1, 'https://ror.org/02m4p8096 Hochschule Kempten Kempten University of Applied Sciences'),
(120935, 'https://ror.org/03aw6s792', 'nl', 1, 'https://ror.org/03aw6s792 GGD Twente'),
(120936, 'https://ror.org/03q0ab227', 'de', 1, 'https://ror.org/03q0ab227 Hochschule für Angewandte Wissenschaften Kiel'),
(120937, 'https://ror.org/009va3165', 'en', 1, 'https://ror.org/009va3165 Gambia National Library Service Authority'),
(120938, 'https://ror.org/02r7z4c46', 'id', 1, 'https://ror.org/02r7z4c46 Del Institute of Technology Institut Teknologi Del'),
(120939, 'https://ror.org/00ydhz544', 'en', 1, 'https://ror.org/00ydhz544 Swedish Ethical Review Authority'),
(120940, 'https://ror.org/05k89ew48', 'en', 1, 'https://ror.org/05k89ew48 University of Jordan الجامعة Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(120941, 'https://ror.org/00yqy0q42', 'en', 1, 'https://ror.org/00yqy0q42 Shared Health Soins communs'),
(120942, 'https://ror.org/05natnv92', 'en', 1, 'https://ror.org/05natnv92 Netrokona Medical College'),
(120943, 'https://ror.org/03tkwyq76', 'en', 1, 'https://ror.org/03tkwyq76 HFML-FELIX'),
(120944, 'https://ror.org/05kqqn912', 'en', 1, 'https://ror.org/05kqqn912 P.S.V College of Pharmaceutical Science and Research'),
(120945, 'https://ror.org/02tcnxb85', 'id', 1, 'https://ror.org/02tcnxb85 Politeknik Bentara Citra Bangsa'),
(120946, 'https://ror.org/0174skq71', 'tr', 1, 'https://ror.org/0174skq71 General Directorate of Agricultural Research and Policies Tarımsal Araştırmalar ve Politikalar Genel Müdürlüğü'),
(120947, 'https://ror.org/04z64b609', 'en', 1, 'https://ror.org/04z64b609 Faculdades de Tecnologia do Estado de SĆ£o Paulo SĆ£o Paulo State Technological College'),
(120948, 'https://ror.org/02nn67a65', 'es', 1, 'https://ror.org/02nn67a65 Universidad IndoamƩrica'),
(120949, 'https://ror.org/04skveq52', 'pt', 1, 'https://ror.org/04skveq52 GeoBioTec - GeobiociĆŖncias Geotecnologias e Geo-engenharias'),
(120950, 'https://ror.org/005vjg312', 'pl', 1, 'https://ror.org/005vjg312 Akademia Techniczno-Artystyczna Nauk Stosowanych w Warszawie'),
(120951, 'https://ror.org/05rcgef49', 'en', 1, 'https://ror.org/05rcgef49 Institute for Complex Systems Istituto dei Sistemi Complessi'),
(120952, 'https://ror.org/02zwhz281', 'en', 1, 'https://ror.org/02zwhz281 Shaheed Benazir Bhutto University Ų“Ł‡ŁŠŲÆ ŲØŁŠŁ†ŲøŁŠŲ± Ś€Ł½Łˆ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠŲŒ Ų“Ł‡ŁŠŲÆ ŲØŁŠŁ†ŲøŁŠŲ±Ų¢ŲØŲ§ŲÆ'),
(120953, 'https://ror.org/05h1fqt10', 'en', 1, 'https://ror.org/05h1fqt10 Fujairah University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŲ¬ŁŠŲ±Ų©'),
(120954, 'https://ror.org/02cnsac56', 'fr', 1, 'https://ror.org/02cnsac56 Institut national d''Ʃtudes dƩmographiques National Institute for Demographic Studies'),
(120955, 'https://ror.org/027defw95', 'fr', 1, 'https://ror.org/027defw95 Centre de CompƩtences NanoSciences Ile-de-France'),
(120956, 'https://ror.org/05k0qmv73', 'fr', 1, 'https://ror.org/05k0qmv73 GƩosciences Environnement Toulouse'),
(120957, 'https://ror.org/041kmwe10', 'en', 1, 'https://ror.org/041kmwe10 Coleg Imperial Llundain Imperial College London'),
(120958, 'https://ror.org/00fw8bp86', 'fr', 1, 'https://ror.org/00fw8bp86 Center for Particle Physics of Marseille Centre de physique des particules de Marseille'),
(120959, 'https://ror.org/04nnh6458', 'en', 1, 'https://ror.org/04nnh6458 Kaiser Permanente Fremont Medical Center'),
(120960, 'https://ror.org/004hhdm83', 'en', 1, 'https://ror.org/004hhdm83 Digital Health Research Center'),
(120961, 'https://ror.org/024mt9310', 'fr', 1, 'https://ror.org/024mt9310 Langage, langues et cultures d''Afrique Languages and Cultures of Sub-Saharan Africa'),
(120962, 'https://ror.org/03zmd3y94', 'fr', 1, 'https://ror.org/03zmd3y94 ESPI Marseille'),
(120963, 'https://ror.org/0495efn48', 'en', 1, 'https://ror.org/0495efn48 Guangxi University for Nationalities å¹æč„æę°‘ę—å¤§å­¦'),
(120964, 'https://ror.org/00cd48p72', 'fr', 1, 'https://ror.org/00cd48p72 Ɖtablissement public Campus Condorcet'),
(120965, 'https://ror.org/03xjacd83', 'en', 1, 'https://ror.org/03xjacd83 Cleveland Clinic'),
(120966, 'https://ror.org/01dphnv87', 'en', 1, 'https://ror.org/01dphnv87 National Institute of Pharmaceutical Education and Research (NIPER) - Ahmedabad'),
(120967, 'https://ror.org/01ycxmm33', 'en', 1, 'https://ror.org/01ycxmm33 General Hospital of Kyparissia ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ĪšĻ…Ļ€Ī±ĻĪ¹ĻƒĻƒĪÆĪ±Ļ‚'),
(120968, 'https://ror.org/057q4c608', 'en', 1, 'https://ror.org/057q4c608 Nexus Analytica Nexus Analytica (Egypt)'),
(120969, 'https://ror.org/02yy8x990', 'en', 1, 'https://ror.org/02yy8x990 Ruotsin maatalousyliopisto Sveriges lantbruksuniversitet Swedish University of Agricultural Sciences'),
(120970, 'https://ror.org/05rkj0r62', 'en', 1, 'https://ror.org/05rkj0r62 Nexus Analytica Nexus Analytica (The Netherlands)'),
(120971, 'https://ror.org/02tf13a69', 'fr', 1, 'https://ror.org/02tf13a69 Support and research unit OSUR UnitƩ d''Appui et de Recherche OSUR'),
(120972, 'https://ror.org/010pmpe69', 'en', 1, 'https://ror.org/010pmpe69 Lomonosov Moscow State University Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М.Š’. Ломоносова'),
(120973, 'https://ror.org/01f0prq08', 'sv', 1, 'https://ror.org/01f0prq08 Rƶda Korsets Hƶgskola Swedish Red Cross University'),
(120974, 'https://ror.org/00854zy02', 'en', 1, 'https://ror.org/00854zy02 Technical and Vocational University دانؓگاه Ł…Ł„ŪŒ مهارت'),
(120975, 'https://ror.org/054xx3904', 'en', 1, 'https://ror.org/054xx3904 Vall d''Hebron Institute of Oncology Vall d’Hebron Institut d’Oncologia'),
(120976, 'https://ror.org/00zde0787', 'es', 1, 'https://ror.org/00zde0787 ClĆ­nica Synaptica'),
(120977, 'https://ror.org/03yefst80', 'es', 1, 'https://ror.org/03yefst80 Instituto de ArqueologĆ­a'),
(120978, 'https://ror.org/05y8bnc66', 'pt', 1, 'https://ror.org/05y8bnc66 CINTESIS.UPT Centro de Investigação em Tecnologias e Serviços de Saúde, Universidade Portucalense'),
(120979, 'https://ror.org/00zrgcv18', 'en', 1, 'https://ror.org/00zrgcv18 Animal Production Research Center'),
(120980, 'https://ror.org/02w0z9h71', 'no_lang_code', 1, 'https://ror.org/02w0z9h71 SHIHARR PUBLISHING LIMITED SHIHARR PUBLISHING LIMITED (Hong Kong) ę‹¾čÆå‡ŗē‰ˆęœ‰é™å…¬åø'),
(120981, 'https://ror.org/05m7pjf47', 'en', 1, 'https://ror.org/05m7pjf47 An ColƔiste Ollscoile Baile Ɓtha Cliath University College Dublin'),
(120982, 'https://ror.org/021qs0d58', 'en', 1, 'https://ror.org/021qs0d58 Prague Business School Prazska podnikatelska skola'),
(120983, 'https://ror.org/040bzgy82', 'fr', 1, 'https://ror.org/040bzgy82 UnitƩ d''Appui et de Recherche OSUPS'),
(120984, 'https://ror.org/04dvezj25', 'en', 1, 'https://ror.org/04dvezj25 RAND School of Public Policy'),
(120985, 'https://ror.org/01kj2bm70', 'en', 1, 'https://ror.org/01kj2bm70 Newcastle University'),
(120986, 'https://ror.org/00wdr9f58', 'en', 1, 'https://ror.org/00wdr9f58 Saifee Hospital Tanzania'),
(120987, 'https://ror.org/00txhpa83', 'de', 1, 'https://ror.org/00txhpa83 Rheinische Hochschule Kƶln'),
(120988, 'https://ror.org/016gb9e15', 'en', 1, 'https://ror.org/016gb9e15 University of the Sunshine Coast'),
(120989, 'https://ror.org/03csg5f73', 'fr', 1, 'https://ror.org/03csg5f73 Institut SupƩrieur des Techniques MƩdicales de Bukavu'),
(120990, 'https://ror.org/03ms1y683', 'fr', 1, 'https://ror.org/03ms1y683 LaTTiCe - Langues, Textes, Traitements informatiques, Cognition Langues, Textes, Traitements Informatiques, Cognition'),
(120991, 'https://ror.org/04k2pbc82', 'en', 1, 'https://ror.org/04k2pbc82 Wildlife Science and Conservation Center of Mongolia'),
(120992, 'https://ror.org/05ajrw164', 'en', 1, 'https://ror.org/05ajrw164 Opera Network'),
(120993, 'https://ror.org/04zbact24', 'en', 1, 'https://ror.org/04zbact24 CapeNature Western Cape Nature Conservation Board'),
(120994, 'https://ror.org/010xv5017', 'en', 0, 'https://ror.org/010xv5017 University of Belgrade – Faculty of Organizational Sciences Univerzitet u Beogradu – Fakultet organizacionih nauka Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ организационих наука'),
(120995, 'https://ror.org/03wxxbs05', 'en', 1, 'https://ror.org/03wxxbs05 ELTE Research Centre for the Humanities'),
(120996, 'https://ror.org/024qc2211', 'fr', 1, 'https://ror.org/024qc2211 Laboratoire de recherche en Ɖconomie'),
(120997, 'https://ror.org/04qvdf239', 'tr', 1, 'https://ror.org/04qvdf239 Yozgat Bozok University Yozgat Bozok Üniversitesi'),
(120998, 'https://ror.org/04v70vg90', 'it', 1, 'https://ror.org/04v70vg90 Pontificia FacoltĆ  Teologica di Sicilia'),
(120999, 'https://ror.org/01n8d2d52', 'en', 1, 'https://ror.org/01n8d2d52 Office of Justice Programs'),
(121000, 'https://ror.org/03ta4se08', 'en', 1, 'https://ror.org/03ta4se08 Bệnh viện Tai MÅ©i Hį»ng TP.HCM Ho Chi Minh City Otorhinolaryngology Hospital'),
(121001, 'https://ror.org/04ces3204', 'fr', 1, 'https://ror.org/04ces3204 Huma-Num'),
(121002, 'https://ror.org/045p92n89', 'id', 1, 'https://ror.org/045p92n89 Tjut Nyak Dhien University Universitas Tjut Nyak Dhien'),
(121003, 'https://ror.org/04h26d614', 'fr', 1, 'https://ror.org/04h26d614 DIASCOPE - Domaine ExpƩrimental de Melgueil'),
(121004, 'https://ror.org/021kdsb71', 'fr', 1, 'https://ror.org/021kdsb71 Ɖcole Nationale SupĆ©rieure d''Architecture de Saint-Ɖtienne'),
(121005, 'https://ror.org/01h4rra97', 'fr', 0, 'https://ror.org/01h4rra97 Gouvernance, Risque, Environnement, DƩveloppement'),
(121006, 'https://ror.org/03k23hp26', 'en', 1, 'https://ror.org/03k23hp26 Scientific and Research Institute of Providing Legal Framework for the Innovative Development of National Academy of Legal Sciences of Ukraine ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ правового Š·Š°Š±ŠµŠ·ŠæŠµŃ‡ŠµŠ½Š½Ń інноваційного Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії правових наук України'),
(121007, 'https://ror.org/015k77689', 'en', 1, 'https://ror.org/015k77689 National Center for Sustainable Agriculture Research and Development Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ لأبحاث وتطوير الزراعة المستدامة'),
(121008, 'https://ror.org/00k65bx67', 'en', 1, 'https://ror.org/00k65bx67 Amity University Mumbai ą¤…ą„…ą¤®ą¤æą¤Ÿą„€ ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€, ą¤®ą„ą¤‚ą¤¬ą¤ˆ'),
(121009, 'https://ror.org/04wkdwp52', 'ca', 1, 'https://ror.org/04wkdwp52 Institut CatalĆ  de la Salut'),
(121010, 'https://ror.org/00qt47544', 'en', 1, 'https://ror.org/00qt47544 Global University'),
(121011, 'https://ror.org/030px0y08', 'de', 1, 'https://ror.org/030px0y08 Kirchliche PƤdagogische Hochschule Wien/Niederƶsterreich Private University College of Teacher Education of Christian Churches Austria'),
(121012, 'https://ror.org/045pcec30', 'en', 1, 'https://ror.org/045pcec30 Bhumi Byabasthapan Prashikshan Kendra Land Management Training Center'),
(121013, 'https://ror.org/04vy5s568', 'es', 1, 'https://ror.org/04vy5s568 Universidad del Zulia University of Zulia'),
(121014, 'https://ror.org/00kxpat18', 'en', 1, 'https://ror.org/00kxpat18 Institut Royal SupƩrieur de DƩfense Koninklijk Hoger Instituut voor Defensie Royal Higher Institute for Defence'),
(121015, 'https://ror.org/05wpm2y06', 'en', 1, 'https://ror.org/05wpm2y06 Quantitative Engineering Design'),
(121016, 'https://ror.org/00145s190', 'es', 1, 'https://ror.org/00145s190 Instituto Tecnológico Superior de Tamazunchale TecNM Campus Tamazunchale'),
(121017, 'https://ror.org/00qf07q44', 'en', 1, 'https://ror.org/00qf07q44 Nanjing University of Industry Technology å—äŗ¬å·„äøščŒäøšęŠ€ęœÆå¤§å­¦'),
(121018, 'https://ror.org/020n29b23', 'en', 1, 'https://ror.org/020n29b23 M.H. Saboo Siddik College Of Engineering'),
(121019, 'https://ror.org/02xznz413', 'en', 1, 'https://ror.org/02xznz413 Office of Energy Efficiency and Renewable Energy'),
(121020, 'https://ror.org/023p80x55', 'id', 1, 'https://ror.org/023p80x55 Lhokseumawe State Polytechnic Politeknik Negeri Lhokseumawe'),
(121021, 'https://ror.org/02zqpg059', 'en', 1, 'https://ror.org/02zqpg059 MES Mampad College (Autonomous)'),
(121022, 'https://ror.org/012wmz893', 'en', 0, 'https://ror.org/012wmz893 University of Belgrade - Faculty of Special Education and Rehabilitation Univerzitet u Beogradu – Fakultet za specijalnu edukaciju i rehabilitaciju Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ за ŃŠæŠµŃ†ŠøŃ˜Š°Š»Š½Ńƒ ŠµŠ“ŃƒŠŗŠ°Ń†ŠøŃ˜Ńƒ Šø Ń€ŠµŃ…Š°Š±ŠøŠ»ŠøŃ‚Š°Ń†ŠøŃ˜Ńƒ'),
(121023, 'https://ror.org/05pxgks08', 'id', 1, 'https://ror.org/05pxgks08 Triatma Mulya University Universitas Triatma Mulya'),
(121024, 'https://ror.org/05f82e368', 'fr', 1, 'https://ror.org/05f82e368 UniversitƩ Paris CitƩ'),
(121025, 'https://ror.org/03ecrty52', 'en', 1, 'https://ror.org/03ecrty52 Gaborone Public Library'),
(121026, 'https://ror.org/0161xgx34', 'fr', 1, 'https://ror.org/0161xgx34 University of Montreal UniversitƩ de MontrƩal'),
(121027, 'https://ror.org/04m0h8e78', 'sr', 1, 'https://ror.org/04m0h8e78 Kriminalističko-policijski univerzitet University of Criminal Investigation and Police Studies'),
(121028, 'https://ror.org/019m6wk21', 'en', 1, 'https://ror.org/019m6wk21 Algebra Bernays University SveučiliŔte Algebra'),
(121029, 'https://ror.org/001ydh096', 'en', 1, 'https://ror.org/001ydh096 TrĘ°į»ng ĐẔi hį»c BĆ”ch khoa, ĐẔi hį»c ĐƠ Nįŗµng University of Science and Technology - The University of Da Nang'),
(121030, 'https://ror.org/051ykjw41', 'fr', 1, 'https://ror.org/051ykjw41 Institut de Recherche pour le DƩveloppement'),
(121031, 'https://ror.org/02b20wd09', 'fr', 1, 'https://ror.org/02b20wd09 Pratiques et ressources de l’information et des mĆ©diations'),
(121032, 'https://ror.org/034e19a35', 'tr', 1, 'https://ror.org/034e19a35 Türk Gastroenteroloji Vakfı'),
(121033, 'https://ror.org/023ag6d08', 'en', 1, 'https://ror.org/023ag6d08 Lakeland Community College'),
(121034, 'https://ror.org/054eytx62', 'en', 0, 'https://ror.org/054eytx62 University of Belgrade - Faculty of Mechanical Engineering Univerzitet u Beogradu - MaÅ”inski fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Машински Š¤Š°ŠŗŃƒŠ»Ń‚ет'),
(121035, 'https://ror.org/0324c7v24', 'en', 1, 'https://ror.org/0324c7v24 Sri Sharda Group of Institutions'),
(121036, 'https://ror.org/0135fch82', 'en', 1, 'https://ror.org/0135fch82 Kitt Peak National Observatory Observatoire de Kitt Peak'),
(121037, 'https://ror.org/02v51f717', 'en', 1, 'https://ror.org/02v51f717 Peking University åŒ—äŗ¬å¤§å­¦'),
(121038, 'https://ror.org/02pe71j59', 'en', 1, 'https://ror.org/02pe71j59 Ecole Nationale SupƩrieure d''Intelligence Artificielle National School of Artificial Intelligence'),
(121039, 'https://ror.org/056n05x05', 'fr', 1, 'https://ror.org/056n05x05 Laboratoire de Chimie des PolymĆØres Organiques'),
(121040, 'https://ror.org/02kvxyf05', 'fr', 1, 'https://ror.org/02kvxyf05 Institut national de recherche en sciences et technologies du numƩrique National Institute for Research in Digital Science and Technology'),
(121041, 'https://ror.org/0084te143', 'fr', 1, 'https://ror.org/0084te143 Centre Hospitalier Universitaire de BesanƧon'),
(121042, 'https://ror.org/035gpvf24', 'fr', 1, 'https://ror.org/035gpvf24 Ɖcole Normale SupĆ©rieure de FĆØs المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة بفاس'),
(121043, 'https://ror.org/005r0vm10', 'en', 1, 'https://ror.org/005r0vm10 Concord Stem Cell Limited Concord Stem Cell Limited (Bangladesh)'),
(121044, 'https://ror.org/05frf9c55', 'en', 1, 'https://ror.org/05frf9c55 Merri Creek Management Committee'),
(121045, 'https://ror.org/05d6wfd23', 'fr', 1, 'https://ror.org/05d6wfd23 Station d’Écologie ThĆ©orique et ExpĆ©rimentale Theoretical and Experimental Ecology Station'),
(121046, 'https://ror.org/008a2q193', 'en', 1, 'https://ror.org/008a2q193 Tyra Biosciences Tyra Biosciences, Inc.'),
(121047, 'https://ror.org/00bnagp43', 'es', 1, 'https://ror.org/00bnagp43 Dairy Institute of Asturias Instituto de Productos LƔcteos de Asturias'),
(121048, 'https://ror.org/036266993', 'en', 1, 'https://ror.org/036266993 National Laboratory of the Rockies'),
(121049, 'https://ror.org/04wp8v119', 'en', 1, 'https://ror.org/04wp8v119 Central Plains Water Science Center'),
(121050, 'https://ror.org/03fbv3w59', 'en', 1, 'https://ror.org/03fbv3w59 National Forensic Sciences University ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Øą„ą¤Æą¤¾ą¤Æą¤¾ą¤²ą¤Æą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121051, 'https://ror.org/02f9det96', 'en', 1, 'https://ror.org/02f9det96 University of Hildesheim UniversitƤt Hildesheim'),
(121052, 'https://ror.org/026msb729', 'en', 1, 'https://ror.org/026msb729 Deprem Teknolojileri Enstitüsü Institute of Earthquake Technologies'),
(121053, 'https://ror.org/04cbgjz64', 'en', 1, 'https://ror.org/04cbgjz64 Biomeitez Research and Development Pvt Ltd Biomeitez Research and Development Pvt Ltd (India)'),
(121054, 'https://ror.org/04q0nd296', 'en', 1, 'https://ror.org/04q0nd296 EM Strasbourg Business School'),
(121055, 'https://ror.org/01pj69396', 'en', 1, 'https://ror.org/01pj69396 Canada''s National Ballet School'),
(121056, 'https://ror.org/043a21x04', 'fr', 1, 'https://ror.org/043a21x04 Centre de recherche Paul Pascal Paul Pascal Research Center'),
(121057, 'https://ror.org/03p3yxa65', 'zh', 1, 'https://ror.org/03p3yxa65 Maoming City Dianbai District People''s Hospital ē”µē™½åŒŗäŗŗę°‘åŒ»é™¢'),
(121058, 'https://ror.org/05bkdg127', 'en', 1, 'https://ror.org/05bkdg127 Den Danske Filmskole Den Danske Filmskole - National Filmschool of Denmark National Filmschool of Denmark'),
(121059, 'https://ror.org/017h5q109', 'fr', 1, 'https://ror.org/017h5q109 Centre Hospitalier Universitaire de Toulouse'),
(121060, 'https://ror.org/05h6hv911', 'es', 1, 'https://ror.org/05h6hv911 Instituto Nacional de MusicologĆ­a "Carlos Vega"'),
(121061, 'https://ror.org/020nbej04', 'fr', 1, 'https://ror.org/020nbej04 Laboratoire National de RƩfƩrence'),
(121062, 'https://ror.org/05nj7zs29', 'en', 1, 'https://ror.org/05nj7zs29 Center for Microscopy and Image Analysis'),
(121063, 'https://ror.org/01q5d1g38', 'en', 1, 'https://ror.org/01q5d1g38 Thurrock Community Hospital'),
(121064, 'https://ror.org/02yb8ad03', 'en', 1, 'https://ror.org/02yb8ad03 Dr G. U. Pope College of Engineering'),
(121065, 'https://ror.org/01thtwt75', 'en', 1, 'https://ror.org/01thtwt75 Panam Biotech Panam Biotech (Sri Lanka)'),
(121066, 'https://ror.org/030s71c06', 'en', 1, 'https://ror.org/030s71c06 C. Louis Meyer Family Foundation'),
(121067, 'https://ror.org/00a2xv884', 'en', 1, 'https://ror.org/00a2xv884 Zhejiang University ęµ™ę±Ÿå¤§å­¦'),
(121068, 'https://ror.org/05pjahb38', 'en', 1, 'https://ror.org/05pjahb38 Pledge Therapeutics Pledge Therapeutics LLC'),
(121069, 'https://ror.org/02k6dnd05', 'en', 1, 'https://ror.org/02k6dnd05 Institute of Animal Breeding and Genetics named after M. V. Zubets, National Academy of Agrarian Sciences of Ukraine'),
(121070, 'https://ror.org/016gd3115', 'en', 1, 'https://ror.org/016gd3115 Metro South Health'),
(121071, 'https://ror.org/01dtyv127', 'en', 1, 'https://ror.org/01dtyv127 Region SjƦlland Region Zealand'),
(121072, 'https://ror.org/0343qb565', 'fr', 1, 'https://ror.org/0343qb565 Reunion Island Marine Nature Reserve RƩserve Naturelle Marine de La RƩunion'),
(121073, 'https://ror.org/0085r3413', 'en', 1, 'https://ror.org/0085r3413 Ecole SupĆ©rieure de l’Agriculture Saharienne El Oued Ecole SupĆ©rieure d’Agriculture Saharienne d’El Oued Higher School of Saharan Agriculture - El Oued المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للفلاحة Ų§Ł„ŲµŲ­Ų±Ų§ŁˆŁŠŲ© ŲØŲ§Ł„ŁˆŲ§ŲÆŁŠ'),
(121074, 'https://ror.org/00pyh2y32', 'en', 1, 'https://ror.org/00pyh2y32 University of Gour Banga ą¦—ą§Œą¦”ą¦¼ą¦¬ą¦™ą§ą¦— ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(121075, 'https://ror.org/052c1s797', 'en', 1, 'https://ror.org/052c1s797 DigiM Solution DigiM Solution LLC'),
(121076, 'https://ror.org/048kh7197', 'en', 1, 'https://ror.org/048kh7197 Department of Science,Technology and Innovation'),
(121077, 'https://ror.org/01y6yqt17', 'en', 1, 'https://ror.org/01y6yqt17 National Institute of Technology ناؓناڵ ŲØŪ† ŲŖŪ•Ś©Ł†Ū•Ł„Ū†Ų¬ŪŒŲ§'),
(121078, 'https://ror.org/0367men07', 'en', 1, 'https://ror.org/0367men07 RJ Sankara Eye Hospital, Varanasi'),
(121079, 'https://ror.org/014gw0e04', 'de', 1, 'https://ror.org/014gw0e04 Kunsthaus Zürich'),
(121080, 'https://ror.org/03ycms792', 'en', 1, 'https://ror.org/03ycms792 Comissão Nacional de Energia Nuclear National Nuclear Energy Commission'),
(121081, 'https://ror.org/05jhkzk43', 'fr', 1, 'https://ror.org/05jhkzk43 Sport, ActivitƩ Physique, RƩƩducation et MotricitƩ pour la performance et la santƩ'),
(121082, 'https://ror.org/05abrn361', 'no_lang_code', 1, 'https://ror.org/05abrn361 info fauna'),
(121083, 'https://ror.org/049zjk386', 'en', 1, 'https://ror.org/049zjk386 Bulgarian Geophysical Society Š”Ń€ŃƒŠ¶ŠµŃŃ‚Š²Š¾Ń‚Š¾ на геофизиците в Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(121084, 'https://ror.org/01yjn6341', 'en', 1, 'https://ror.org/01yjn6341 Nordic Summer University Nordiskt Sommaruniversitet'),
(121085, 'https://ror.org/044skvp29', 'en', 1, 'https://ror.org/044skvp29 Impact College of Engineering and Applied Sciences'),
(121086, 'https://ror.org/036z3g533', 'en', 1, 'https://ror.org/036z3g533 ELLIS Institute Tübingen'),
(121087, 'https://ror.org/042tz5g14', 'en', 1, 'https://ror.org/042tz5g14 Devs Homoeopathic Medical College and Hospital ą°¦ą±‡ą°µą±ą°øą± ą°¹ą±‹ą°®ą°æą°Æą±‹ą°Ŗą°¤ą°æą°•ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°•ą°¾ą°²ą±‡ą°œą±€ & ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(121088, 'https://ror.org/038x9td67', 'en', 1, 'https://ror.org/038x9td67 Institute for Atomic and Molecular Physics'),
(121089, 'https://ror.org/023qavy03', 'en', 1, 'https://ror.org/023qavy03 Baruch College Baruch College, CUNY'),
(121090, 'https://ror.org/02jkpm469', 'en', 1, 'https://ror.org/02jkpm469 Arthritis UK'),
(121091, 'https://ror.org/05nn7qm04', 'en', 1, 'https://ror.org/05nn7qm04 Ganpat University ગણપત ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(121092, 'https://ror.org/0508kew31', 'en', 1, 'https://ror.org/0508kew31 Department of Water and Environmental Regulation'),
(121093, 'https://ror.org/014tr1k14', 'en', 1, 'https://ror.org/014tr1k14 Bayside Health Service'),
(121094, 'https://ror.org/03wg5vy88', 'fr', 1, 'https://ror.org/03wg5vy88 University of Bertoua UniversitƩ de Bertoua'),
(121095, 'https://ror.org/01ph0t361', 'fr', 1, 'https://ror.org/01ph0t361 Fondation Voir & Entendre'),
(121096, 'https://ror.org/030sjb889', 'en', 1, 'https://ror.org/030sjb889 Osmania University UniversitĆ© osmania جامعہ Ų¹Ų«Ł…Ų§Ł†ŪŒŪ ą¤‰ą¤øą„ą¤®ą¤¾ą¤Øą¤æą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®‰ą®šąÆą®®ą®¾ą®©ą®æą®Æą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°‰ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą± ą“’ą“øąµą“®ą“¾ą“Øą“æą“Æ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(121097, 'https://ror.org/044s2fj67', 'en', 1, 'https://ror.org/044s2fj67 Yaroslavl State University Ярославский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. П. Š“. ДемиГова'),
(121098, 'https://ror.org/044jxhp58', 'fr', 1, 'https://ror.org/044jxhp58 French Research Institute for Exploitation of the Sea Ifremer Institut FranƧais de Recherche pour l''Exploitation de la Mer'),
(121099, 'https://ror.org/030xj3f82', 'en', 1, 'https://ror.org/030xj3f82 Minzu Normal University of Xingyi å…“ä¹‰ę°‘ę—åøˆčŒƒå­¦é™¢'),
(121100, 'https://ror.org/02yj35p92', 'en', 1, 'https://ror.org/02yj35p92 Red Hat (Canada) Red Hat Canada Limited Red Hat Canada LimitƩe'),
(121101, 'https://ror.org/017yk1e31', 'en', 1, 'https://ror.org/017yk1e31 Federal Ministry of Health'),
(121102, 'https://ror.org/04416dp49', 'en', 1, 'https://ror.org/04416dp49 National Metrology Institute of Pakistan'),
(121103, 'https://ror.org/02smvmz76', 'en', 1, 'https://ror.org/02smvmz76 Research Institute for System Studies Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ системных исслеГований Российской акаГемии наук'),
(121104, 'https://ror.org/03y8hzv17', 'en', 1, 'https://ror.org/03y8hzv17 Southeast Healthcare'),
(121105, 'https://ror.org/016z46x68', 'en', 1, 'https://ror.org/016z46x68 Federal College of Agrioculture Ishiagu'),
(121106, 'https://ror.org/05rdrwb94', 'en', 1, 'https://ror.org/05rdrwb94 Government Graduate College Township Lahore'),
(121107, 'https://ror.org/0322sf130', 'fr', 0, 'https://ror.org/0322sf130 Institut NeuroMyoGĆØne'),
(121108, 'https://ror.org/029djt864', 'de', 1, 'https://ror.org/029djt864 Academy of Fine Arts Vienna Akademie der bildenden Künste Wien'),
(121109, 'https://ror.org/00hbmcg20', 'fr', 1, 'https://ror.org/00hbmcg20 Université Franco-haïtienne du Cap-Haïtien'),
(121110, 'https://ror.org/03a470182', 'en', 0, 'https://ror.org/03a470182 Nebraska Water Science Center'),
(121111, 'https://ror.org/00vz8a291', 'en', 1, 'https://ror.org/00vz8a291 Canadian Integrated Ocean Observing System, Pacific Region'),
(121112, 'https://ror.org/00t7t9a43', 'en', 1, 'https://ror.org/00t7t9a43 Institute for Design Problems in Microelectronics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃ в Š¼ŠøŠŗŃ€Š¾ŃŠ»ŠµŠŗŃ‚ронике'),
(121113, 'https://ror.org/01p93h210', 'en', 0, 'https://ror.org/01p93h210 University of South Australia'),
(121114, 'https://ror.org/02n0bts35', 'en', 1, 'https://ror.org/02n0bts35 Medical University of Graz Medizinische UniversitƤt Graz'),
(121115, 'https://ror.org/05thdk431', 'fr', 1, 'https://ror.org/05thdk431 Laboratoire ProcƩdƩs, MatƩriaux et Energie Solaire'),
(121116, 'https://ror.org/03fpftn22', 'en', 0, 'https://ror.org/03fpftn22 University of Belgrade - School of Electrical Engineering Univerzitet u Beogradu - Elektrotehnički fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Електротехнички Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(121117, 'https://ror.org/03anc3s24', 'en', 1, 'https://ror.org/03anc3s24 Austrian Academy of Sciences Avstrijska Akademija Znanosti OsztrĆ”k TudomĆ”nyos AkadĆ©mia Ɩsterreichische Akademie der Wissenschaften'),
(121118, 'https://ror.org/03ba28x55', 'ca', 1, 'https://ror.org/03ba28x55 Vall d''Hebron Hospital Universitari'),
(121119, 'https://ror.org/047wbzv64', 'en', 1, 'https://ror.org/047wbzv64 All Russian Institute for Scientific and Technical Information Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°ŃƒŃ‡Š½Š¾Š¹ Šø технической информации'),
(121120, 'https://ror.org/02d03ve54', 'en', 1, 'https://ror.org/02d03ve54 VIT Bhopal University'),
(121121, 'https://ror.org/05g59tn70', 'tr', 1, 'https://ror.org/05g59tn70 İzmir Kavram Meslek Yüksekokulu'),
(121122, 'https://ror.org/01xvm8h85', 'en', 1, 'https://ror.org/01xvm8h85 Sandip University Sijoul Madhubani Bihar'),
(121123, 'https://ror.org/05wnh3t63', 'en', 1, 'https://ror.org/05wnh3t63 Government of the United Kingdom'),
(121124, 'https://ror.org/036xbhj46', 'en', 1, 'https://ror.org/036xbhj46 Xiangshan Hospital of Traditional Chinese Medicine'),
(121125, 'https://ror.org/03hf69k85', 'no_lang_code', 1, 'https://ror.org/03hf69k85 bioMƩrieux (France)'),
(121126, 'https://ror.org/01rf1sn88', 'en', 0, 'https://ror.org/01rf1sn88 University of Belgrade - Faculty of Mining and Geology Univerzitet u Beogradu - Rudarsko-geoloÅ”ki fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Š ŃƒŠ“Š°Ń€ŃŠŗŠ¾-геолошки Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(121127, 'https://ror.org/05py0bh51', 'en', 1, 'https://ror.org/05py0bh51 Ar-Rasheed Smart University'),
(121128, 'https://ror.org/04ny0kg74', 'en', 1, 'https://ror.org/04ny0kg74 Khongnangthaba University'),
(121129, 'https://ror.org/01f74x078', 'en', 1, 'https://ror.org/01f74x078 State University "Kyiv Aviation Institute" Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ "ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ авіаційний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚"'),
(121130, 'https://ror.org/03vaaek59', 'fr', 1, 'https://ror.org/03vaaek59 ESPI Nantes'),
(121131, 'https://ror.org/027jsza11', 'en', 1, 'https://ror.org/027jsza11 Vidyasagar University ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦øą¦¾ą¦—ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(121132, 'https://ror.org/009pxn909', 'en', 1, 'https://ror.org/009pxn909 Marwari College, Darbhanga'),
(121133, 'https://ror.org/03vcm6439', 'fr', 1, 'https://ror.org/03vcm6439 Laboratoire d''Analyse et d''Architecture des SystĆØmes Laboratory for Analysis and Architecture of Systems'),
(121134, 'https://ror.org/034zn5b34', 'fr', 1, 'https://ror.org/034zn5b34 HƓpital Rangueil'),
(121135, 'https://ror.org/05y4mmt95', 'fr', 1, 'https://ror.org/05y4mmt95 ESPI Montpellier'),
(121136, 'https://ror.org/04mkb3r04', 'en', 1, 'https://ror.org/04mkb3r04 Boston International College'),
(121137, 'https://ror.org/008ds1h48', 'en', 1, 'https://ror.org/008ds1h48 Rudolfovo – Science and Technology Centre Novo mesto'),
(121138, 'https://ror.org/028vrr082', 'no_lang_code', 1, 'https://ror.org/028vrr082 Mars (United States)'),
(121139, 'https://ror.org/03jjdcp59', 'en', 0, 'https://ror.org/03jjdcp59 University of Belgrade – Faculty of Chemistry Univerzitet u Beogradu – Hemijski fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Ń…ŠµŠ¼ŠøŃ˜ŃŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(121140, 'https://ror.org/04r7nj855', 'en', 1, 'https://ror.org/04r7nj855 Acoustic Technologies Acoustic Technologies (Finland)'),
(121141, 'https://ror.org/047hbnr51', 'no_lang_code', 1, 'https://ror.org/047hbnr51 DigsFish Services DigsFish Services (Australia) DigsFish Services Pty Ltd'),
(121142, 'https://ror.org/008d2qg16', 'en', 1, 'https://ror.org/008d2qg16 International Leadership CollĆØge'),
(121143, 'https://ror.org/03wtjmk03', 'pl', 1, 'https://ror.org/03wtjmk03 Wyższej Szkoły Kadr Menedżerskich w Koninie'),
(121144, 'https://ror.org/05v823t63', 'en', 1, 'https://ror.org/05v823t63 South Essex Partnership University Foundation NHS Trust'),
(121145, 'https://ror.org/032saz229', 'en', 1, 'https://ror.org/032saz229 Nasjonalbiblioteket The National Library of Norway'),
(121146, 'https://ror.org/01bxfc994', 'fr', 1, 'https://ror.org/01bxfc994 Laboratoire d''Ɖtudes et de Recherches AppliquĆ©es en Sciences Sociales'),
(121147, 'https://ror.org/04e2n3265', 'de', 1, 'https://ror.org/04e2n3265 Fachstelle kommunales Bildungsmonitoring'),
(121148, 'https://ror.org/05ep8g269', 'en', 1, 'https://ror.org/05ep8g269 Scuola Universitaria Professionale della Svizzera Italiana University of Applied Sciences and Arts of Southern Switzerland'),
(121149, 'https://ror.org/01qx47e88', 'en', 1, 'https://ror.org/01qx47e88 Beijing Institute of Control Engineering åŒ—äŗ¬ęŽ§åˆ¶å·„ēØ‹ē ”ē©¶ę‰€'),
(121150, 'https://ror.org/04efg9a07', 'en', 1, 'https://ror.org/04efg9a07 Sidi Mohamed Ben Abdellah University UniversitĆ© Sidi Mohamed Ben Abdellah Ų¬Ų§Ł…Ų¹Ų© سيدي Ł…Ų­Ł…ŲÆ بن Ų¹ŲØŲÆ الله'),
(121151, 'https://ror.org/045p8nc06', 'fr', 1, 'https://ror.org/045p8nc06 Centre d''Anthropobiologie et de GƩnomique de Toulouse'),
(121152, 'https://ror.org/014anrn41', 'pl', 1, 'https://ror.org/014anrn41 Akademia Ateneum w Gdańsku Ateneum University'),
(121153, 'https://ror.org/04cbh4w91', 'en', 1, 'https://ror.org/04cbh4w91 Aegean Agricultural Research Institute Ege Tarımsal Araştırma Enstitüsü Müdürlüğü'),
(121154, 'https://ror.org/05a87zb20', 'it', 1, 'https://ror.org/05a87zb20 Azienda Usl Toscana Centro'),
(121155, 'https://ror.org/00r8jkk54', 'fr', 1, 'https://ror.org/00r8jkk54 Institut des Sciences MolƩculaires Institute of Molecular Sciences'),
(121156, 'https://ror.org/04rx3tw33', 'en', 0, 'https://ror.org/04rx3tw33 GeoBioTec'),
(121157, 'https://ror.org/01pyqzs80', 'pt', 1, 'https://ror.org/01pyqzs80 Escola Superior de Advocacia da OAB');
INSERT INTO `rors` VALUES
(121158, 'https://ror.org/033ebya06', 'fr', 1, 'https://ror.org/033ebya06 BIOdiversité, GÊnes & Communautés UMR BIOdiversity, GEnes & Communities'),
(121159, 'https://ror.org/05wpb1k41', 'en', 1, 'https://ror.org/05wpb1k41 R-Ladies Global'),
(121160, 'https://ror.org/023dz9m50', 'en', 1, 'https://ror.org/023dz9m50 Complexity Science Hub'),
(121161, 'https://ror.org/02nsv5p42', 'en', 1, 'https://ror.org/02nsv5p42 Pandit Deendayal Energy University'),
(121162, 'https://ror.org/02rsbbb97', 'en', 1, 'https://ror.org/02rsbbb97 Al-Nasser University Ų¬Ų§Ł…Ų¹Ų© الناصر'),
(121163, 'https://ror.org/012zmcc30', 'en', 1, 'https://ror.org/012zmcc30 Laboratory for the Bioengineering of Tissues'),
(121164, 'https://ror.org/00308ht45', 'es', 1, 'https://ror.org/00308ht45 Instituto Tecnológico de Iguala'),
(121165, 'https://ror.org/02v2svk17', 'fr', 1, 'https://ror.org/02v2svk17 Laboratoire HƩtƩrochimie Fondamentale et AppliquƩe'),
(121166, 'https://ror.org/059yth883', 'en', 1, 'https://ror.org/059yth883 Jawaharlal Nehru New College of Engineering ą²œą³†.ą²Žą²Øą³.ą²Žą²Øą³. ą²Žą²‚ą²œą²æą²Øą²æą²Æą²°ą²æą²‚ą²—ą³ ą²•ą²¾ą²²ą³‡ą²œą³'),
(121167, 'https://ror.org/04gv3mr75', 'en', 1, 'https://ror.org/04gv3mr75 Thai Nguyen University of Information and Communication Technology'),
(121168, 'https://ror.org/02r3j9j80', 'no_lang_code', 1, 'https://ror.org/02r3j9j80 J Ints Bio J Ints Bio (South Korea)'),
(121169, 'https://ror.org/014vp6c30', 'fr', 1, 'https://ror.org/014vp6c30 Institut de MathƩmatiques de Toulouse Toulouse Mathematics Institute'),
(121170, 'https://ror.org/04gfks598', 'en', 1, 'https://ror.org/04gfks598 KSCSTE-National Transportation Planning And Research Centre'),
(121171, 'https://ror.org/05af1fm66', 'en', 1, 'https://ror.org/05af1fm66 National Centre for Polar and Ocean Research ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤§ą„ą¤°ą„ą¤µą„€ą¤Æ ą¤ą¤µą¤‚ ą¤øą¤®ą„ą¤¦ą„ą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(121172, 'https://ror.org/02q931085', 'no_lang_code', 1, 'https://ror.org/02q931085 AMPAC Fine Chemicals (United States)'),
(121173, 'https://ror.org/0398zhb04', 'en', 1, 'https://ror.org/0398zhb04 Sevinç-Erdal İnönü Foundation Sevinç-Erdal İnönü Vakfı'),
(121174, 'https://ror.org/03cvwf620', 'fr', 0, 'https://ror.org/03cvwf620 Niche LeucƩmique et MƩtabolisme Oxydatif Niche leucƩmique et mƩtabolisme oxydatif'),
(121175, 'https://ror.org/03vt2s541', 'en', 1, 'https://ror.org/03vt2s541 Ministry of Health and Social Welfare'),
(121176, 'https://ror.org/00ggpsq73', 'de', 1, 'https://ror.org/00ggpsq73 Otto von Guericke University Magdeburg Otto-von-Guericke-UniversitƤt Magdeburg'),
(121177, 'https://ror.org/01sz1js42', 'pt', 1, 'https://ror.org/01sz1js42 Universidade Estadual da Região Tocantina do Maranhão'),
(121178, 'https://ror.org/02at7qq57', 'en', 0, 'https://ror.org/02at7qq57 University of Belgrade - Faculty of Transport and Traffic Engineering Univerzitet u Beogradu - Saobraćajni fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Š”Š°Š¾Š±Ń€Š°Ń›Š°Ń˜Š½Šø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(121179, 'https://ror.org/00r4bgx66', 'en', 1, 'https://ror.org/00r4bgx66 Falz-Fein Biosphere Reserve "Askania Nova" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń аграрних наук України Š‘Š†ŠžŠ”Š¤Š•Š ŠŠ˜Š™ Š—ŠŠŸŠžŠ’Š†Š”ŠŠ˜Šš Ā«ŠŠ”ŠšŠŠŠ†ŠÆ-ŠŠžŠ’ŠĀ» імені Ф.Š•. Š¤Š°Š»ŃŒŃ†-Фейна'),
(121180, 'https://ror.org/018c91412', 'en', 1, 'https://ror.org/018c91412 Bacha Khan Medical College باچا خان طبی کالج ŲÆ باچا خان Ų·ŲØ Ł¾ŁˆŁ‡Ł†ŚŪŒ'),
(121181, 'https://ror.org/02hmmse52', 'en', 1, 'https://ror.org/02hmmse52 The Loke Centre for Trophoblast Research'),
(121182, 'https://ror.org/013cf5k59', 'en', 1, 'https://ror.org/013cf5k59 Ministry of Earth Sciences'),
(121183, 'https://ror.org/025397a59', 'en', 1, 'https://ror.org/025397a59 China Academy of Space Technology äø­å›½ē©ŗé—“ęŠ€ęœÆē ”ē©¶é™¢'),
(121184, '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'),
(121185, 'https://ror.org/05416zy49', 'en', 1, 'https://ror.org/05416zy49 Termez State University Termiz Davlat Universiteti'),
(121186, 'https://ror.org/028cef883', 'fr', 1, 'https://ror.org/028cef883 Chrono-Environment Laboratory Chrono-Environnement Laboratoire Chrono-Environnement'),
(121187, 'https://ror.org/05tma9m39', 'de', 1, 'https://ror.org/05tma9m39 An-Institut für Qualitätssicherung in der operativen Medizin'),
(121188, 'https://ror.org/01bt2qm76', 'en', 1, 'https://ror.org/01bt2qm76 Swartz Center for Computational Neuroscience'),
(121189, 'https://ror.org/017gjh659', 'no', 1, 'https://ror.org/017gjh659 Direktoratet for medisinske produkter Norwegian Medical Products Agency'),
(121190, 'https://ror.org/0147fw627', 'en', 1, 'https://ror.org/0147fw627 American Society for Indexing'),
(121191, 'https://ror.org/01vf11073', 'en', 1, 'https://ror.org/01vf11073 Bengaluru North University ಬೆಂಗಳೂರು ą²‰ą²¤ą³ą²¤ą²° ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(121192, 'https://ror.org/05ng87198', 'fr', 1, 'https://ror.org/05ng87198 Institut Saint-Pierre'),
(121193, 'https://ror.org/023e5m798', 'en', 1, 'https://ror.org/023e5m798 North East London NHS Foundation Trust'),
(121194, 'https://ror.org/03ppz6m03', 'hu', 1, 'https://ror.org/03ppz6m03 TiszÔninneni ReformÔtus EgyhÔzkerület TudomÔnyos Gyűjteményei'),
(121195, 'https://ror.org/03ec9a810', 'en', 1, 'https://ror.org/03ec9a810 Mahatma Gandhi Mission''s Dental College and Hospital ą¤®ą¤œą„€ą¤ą¤® ą¤”ą„‡ą¤‚ą¤Ÿą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ अँऔ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(121196, 'https://ror.org/012shwn84', 'en', 1, 'https://ror.org/012shwn84 Jordan Media Institute معهد ال؄علام Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ'),
(121197, 'https://ror.org/00cvxb145', 'en', 1, 'https://ror.org/00cvxb145 Universidad de Washington University of Washington UniversitƩ de Washington'),
(121198, 'https://ror.org/056zmrb94', 'en', 1, 'https://ror.org/056zmrb94 Ministry of Population and Family Planning'),
(121199, 'https://ror.org/04vgc9p51', 'fr', 1, 'https://ror.org/04vgc9p51 Centre de Recherche Cardio-Thoracique de Bordeaux'),
(121200, 'https://ror.org/016w23120', 'en', 1, 'https://ror.org/016w23120 Protestant Theological University Protestantse Theologische Universiteit'),
(121201, 'https://ror.org/04vk7n713', 'fi', 1, 'https://ror.org/04vk7n713 Kanta-HƤmeen hyvinvointialue'),
(121202, 'https://ror.org/057ff4y42', 'en', 1, 'https://ror.org/057ff4y42 BOKU University'),
(121203, 'https://ror.org/05sv8jh98', 'es', 1, 'https://ror.org/05sv8jh98 Editorial Universidad de Sevilla'),
(121204, 'https://ror.org/00232we80', 'en', 1, 'https://ror.org/00232we80 Focused Energy Focused Energy GmbH Focused Energy Inc.'),
(121205, 'https://ror.org/03rchg407', 'en', 0, 'https://ror.org/03rchg407 University of Belgrade – Faculty of Education Univerzitet u Beogradu – Fakultet za obrazovanje učitelja i vaspitača Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ за Š¾Š±Ń€Š°Š·Š¾Š²Š°ŃšŠµ ŃƒŃ‡ŠøŃ‚ŠµŃ™Š° Šø васпитача'),
(121206, 'https://ror.org/04agqs597', 'fr', 1, 'https://ror.org/04agqs597 Institut EuropƩen de Chimie et Biologie'),
(121207, 'https://ror.org/034xvzb47', 'en', 1, 'https://ror.org/034xvzb47 United States Food and Drug Administration'),
(121208, 'https://ror.org/001695n52', 'fr', 1, 'https://ror.org/001695n52 Institut des Maladies NeurodƩgƩnƩratives Neurodegeneratives Diseases Institute'),
(121209, 'https://ror.org/04v76ef78', 'de', 1, 'https://ror.org/04v76ef78 Christian-Albrechts-UniversitƤt zu Kiel Kiel University'),
(121210, 'https://ror.org/05pmj3x43', 'no_lang_code', 1, 'https://ror.org/05pmj3x43 Jacobs (United States)'),
(121211, 'https://ror.org/00m57t258', 'en', 1, 'https://ror.org/00m57t258 Monash University, Indonesia'),
(121212, 'https://ror.org/00mpvse27', 'es', 1, 'https://ror.org/00mpvse27 Instituto EspaƱol de Estudios EstratƩgicos'),
(121213, 'https://ror.org/058zz0t50', 'en', 1, 'https://ror.org/058zz0t50 California Southern University'),
(121214, 'https://ror.org/057qpr032', 'fr', 1, 'https://ror.org/057qpr032 Bordeleko Unibertsitatea University of Bordeaux UniversitƩ de Bordeaux'),
(121215, 'https://ror.org/0459fdx51', 'fr', 1, 'https://ror.org/0459fdx51 FƩdƩration de Recherche sur l''Energie Solaire'),
(121216, 'https://ror.org/03x42jk29', 'fr', 1, 'https://ror.org/03x42jk29 Gustave Eiffel University UniversitƩ Gustave Eiffel'),
(121217, 'https://ror.org/04ty1vy79', 'fr', 1, 'https://ror.org/04ty1vy79 Hospital of Mali HƓpital du Mali'),
(121218, 'https://ror.org/01pxwe438', 'en', 1, 'https://ror.org/01pxwe438 McGill University UniversitƩ McGill'),
(121219, 'https://ror.org/03nh7d505', 'fr', 1, 'https://ror.org/03nh7d505 Ɖcole Centrale de Nantes'),
(121220, 'https://ror.org/00gs0b589', 'en', 1, 'https://ror.org/00gs0b589 Instituto Madrileño de Investigación y Desarrollo Rural, Agrario y Alimentario Madrid Institute for Rural, Agrarian and Food Research and Development'),
(121221, 'https://ror.org/0041szh84', 'no_lang_code', 1, 'https://ror.org/0041szh84 Inner Mongolia Electric Power (China) å†…č’™å¤ē”µåŠ›'),
(121222, 'https://ror.org/04fhrs205', 'fr', 1, 'https://ror.org/04fhrs205 Brain and Cognition Research Center Centre de recherche cerveau et cognition'),
(121223, 'https://ror.org/039t32v17', 'en', 1, 'https://ror.org/039t32v17 SR University ą°Žą°øą±ą°†ą°°ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚, తెలంగాణ'),
(121224, 'https://ror.org/05fg5ca88', 'no', 0, 'https://ror.org/05fg5ca88 Vest-Agder fylkeskommune'),
(121225, 'https://ror.org/01h8bj988', 'pt', 1, 'https://ror.org/01h8bj988 Faculdade SENAI TaubatƩ'),
(121226, 'https://ror.org/02haktn42', 'en', 1, 'https://ror.org/02haktn42 Sveriges lantbruksuniversitet Alnarp Swedish University of Agricultural Sciences, Alnarp'),
(121227, 'https://ror.org/00h0sty43', 'es', 1, 'https://ror.org/00h0sty43 Instituto de Historia Antigua, Medieval y Moderna "Prof. JosƩ Luis Romero"'),
(121228, 'https://ror.org/043zbev87', 'id', 1, 'https://ror.org/043zbev87 Indraprasta Pgri University Universitas Indraprasta PGRI'),
(121229, 'https://ror.org/03xnamj44', 'id', 1, 'https://ror.org/03xnamj44 Politeknik Negeri Media Kreatif'),
(121230, 'https://ror.org/037hnxh06', 'en', 1, 'https://ror.org/037hnxh06 Texas Medical Center Library'),
(121231, 'https://ror.org/00eb9kv84', 'id', 1, 'https://ror.org/00eb9kv84 Politeknik Negeri Bali'),
(121232, 'https://ror.org/05xf6v732', 'en', 1, 'https://ror.org/05xf6v732 Zihi Institute'),
(121233, 'https://ror.org/05gknh003', 'en', 1, 'https://ror.org/05gknh003 Ocean Networks Canada Society'),
(121234, 'https://ror.org/02s376052', 'fr', 1, 'https://ror.org/02s376052 Swiss Federal Institute of Technology in Lausanne Ɖcole Polytechnique FĆ©dĆ©rale de Lausanne'),
(121235, 'https://ror.org/00aq7wc18', 'en', 1, 'https://ror.org/00aq7wc18 Talpiot College of Education'),
(121236, 'https://ror.org/04rrj3a80', 'fr', 1, 'https://ror.org/04rrj3a80 Laboratoire de Microbiologie et GƩnƩtique MolƩculaires'),
(121237, 'https://ror.org/016zvc994', 'fr', 1, 'https://ror.org/016zvc994 Institut de Pharmacologie et de Biologie Structurale Institute of Pharmacology and Structural Biology'),
(121238, 'https://ror.org/01eccwj82', 'en', 1, 'https://ror.org/01eccwj82 Siemens Energy'),
(121239, 'https://ror.org/0370bpp07', 'ca', 1, 'https://ror.org/0370bpp07 Institut Universitari d''Investigació en Atenció Primària Jordi Gol'),
(121240, 'https://ror.org/058jrcm27', 'en', 0, 'https://ror.org/058jrcm27 Aust-Agder County Municipality'),
(121241, 'https://ror.org/02cjf2d48', 'es', 1, 'https://ror.org/02cjf2d48 Instituto de Filologƭa ClƔsica "Dra. Alicia Schniebs"'),
(121242, 'https://ror.org/053sc9v87', 'en', 1, 'https://ror.org/053sc9v87 Jagadamba Mahavidyalaya'),
(121243, 'https://ror.org/01xjq1e85', 'en', 1, 'https://ror.org/01xjq1e85 Sony Semiconductor Solutions Corporation Sony Semiconductor Solutions Corporation (Japan) ć‚½ćƒ‹ćƒ¼ć‚»ćƒŸć‚³ćƒ³ćƒ€ć‚Æć‚æć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗ'),
(121244, 'https://ror.org/008cerz11', 'fr', 1, 'https://ror.org/008cerz11 ESPI Bordeaux'),
(121245, 'https://ror.org/002b6dg37', 'en', 1, 'https://ror.org/002b6dg37 Qubit Pharmaceuticals'),
(121246, 'https://ror.org/03rrr5t26', 'en', 1, 'https://ror.org/03rrr5t26 Metabolomics Association of North America'),
(121247, 'https://ror.org/048hftt63', 'en', 1, 'https://ror.org/048hftt63 Ginkgo Foundation'),
(121248, 'https://ror.org/03j3tdj66', 'en', 1, 'https://ror.org/03j3tdj66 Muwekma Ohlone Tribe'),
(121249, 'https://ror.org/04dp46240', 'es', 1, 'https://ror.org/04dp46240 Universidad Europea Universidad Europea de Madrid Universidad Europea de Madrid S.A.U.'),
(121250, 'https://ror.org/01r19bq53', 'fr', 1, 'https://ror.org/01r19bq53 Replication des chromosomes eucaryotes et ses points de contrƓle'),
(121251, 'https://ror.org/05884rv02', 'pl', 1, 'https://ror.org/05884rv02 Gdańskie Seminarium Duchowne'),
(121252, 'https://ror.org/05h39qc65', 'en', 1, 'https://ror.org/05h39qc65 African Library and Information Associations and Institutions'),
(121253, 'https://ror.org/01dw5f393', 'no_lang_code', 1, 'https://ror.org/01dw5f393 Rogue Detection Teams Rogue Detection Teams (United States)'),
(121254, 'https://ror.org/02e95cm68', 'es', 1, 'https://ror.org/02e95cm68 Instituto Mortaji'),
(121255, 'https://ror.org/04fwt9f26', 'en', 1, 'https://ror.org/04fwt9f26 Ministry of Education'),
(121256, 'https://ror.org/02qwadn23', 'es', 1, 'https://ror.org/02qwadn23 Buenos Aires Institute of Technology Instituto Tecnológico de Buenos Aires (ITBA)'),
(121257, 'https://ror.org/03fq7p073', 'en', 1, 'https://ror.org/03fq7p073 Gazole Mahavidyalaya ą¦—ą¦¾ą¦œą§‹ą¦² ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(121258, 'https://ror.org/04scp9x73', 'en', 1, 'https://ror.org/04scp9x73 Unibersidad nin San Antonio University of Saint Anthony'),
(121259, 'https://ror.org/03jqs2n27', 'en', 1, 'https://ror.org/03jqs2n27 Macau University of Science and Technology Universidade de CiĆŖncia e Tecnologia de Macau'),
(121260, 'https://ror.org/035c3nf67', 'pt', 1, 'https://ror.org/035c3nf67 National Service for Industrial Training ServiƧo Nacional de Aprendizagem Industrial'),
(121261, 'https://ror.org/02dayf324', 'en', 1, 'https://ror.org/02dayf324 Pokhara University'),
(121262, 'https://ror.org/055rn0g18', 'es', 1, 'https://ror.org/055rn0g18 Fundación Cerezales Antonino y Cinia'),
(121263, 'https://ror.org/04wcn4e27', 'en', 1, 'https://ror.org/04wcn4e27 LEAPS'),
(121264, 'https://ror.org/017f2w007', 'en', 1, 'https://ror.org/017f2w007 Gujarat University ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€ ą®•ąÆą®œą®°ą®¾ą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°—ą±ą°œą°°ą°¾ą°¤ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(121265, 'https://ror.org/043dj2c51', 'en', 1, 'https://ror.org/043dj2c51 South Australian Rock Lobster Advisory Council'),
(121266, 'https://ror.org/00qbk5j61', 'en', 1, 'https://ror.org/00qbk5j61 Guangxi Vocational & Technical Institute of Industry å¹æč„æå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(121267, 'https://ror.org/03ny67e60', 'en', 1, 'https://ror.org/03ny67e60 Institute of Engineering ą¤ˆą¤Øą„ą¤œą¤æą¤Øą¤æą¤Æą¤°ą¤æą¤™ ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(121268, 'https://ror.org/046h96256', 'tr', 1, 'https://ror.org/046h96256 İstanbul Pendik Veteriner Kontrol Enstitüsü'),
(121269, 'https://ror.org/021018s57', 'ca', 1, 'https://ror.org/021018s57 Bartzelonako Unibertsitatea Universidad de Barcelona Universitat de Barcelona University of Barcelona'),
(121270, 'https://ror.org/02cte4b68', 'fr', 1, 'https://ror.org/02cte4b68 Institut de Chimie'),
(121271, 'https://ror.org/01p07y544', 'no_lang_code', 1, 'https://ror.org/01p07y544 Hryhorii Skovoroda University in Pereiaslav Університет Š“Ń€ŠøŠ³Š¾Ń€Ń–Ń ДковороГи в ŠŸŠµŃ€ŠµŃŃŠ»Š°Š²Ń–'),
(121272, 'https://ror.org/01dyc9913', 'en', 1, 'https://ror.org/01dyc9913 European Cytogeneticists Association'),
(121273, 'https://ror.org/02pqvpt18', 'no_lang_code', 0, 'https://ror.org/02pqvpt18 Cambridge Intellectual Property (United Kingdom)'),
(121274, 'https://ror.org/02sbfag17', 'en', 1, 'https://ror.org/02sbfag17 Centre for Ultrastructural Imaging'),
(121275, 'https://ror.org/013czdx64', 'en', 1, 'https://ror.org/013czdx64 University Hospital Heidelberg UniversitƤtsklinikum Heidelberg'),
(121276, 'https://ror.org/03t0hxv43', 'en', 1, 'https://ror.org/03t0hxv43 Atlanta Botanical Garden'),
(121277, 'https://ror.org/028dn8475', 'en', 1, 'https://ror.org/028dn8475 Federal Circuit and Family Court of Australia'),
(121278, 'https://ror.org/00hr9sq71', 'fr', 0, 'https://ror.org/00hr9sq71 EMPENN: Neuroimagerie: mƩthodes et applications EMPENN: Neuroimaging: methods and applications'),
(121279, 'https://ror.org/048xwe611', 'fr', 1, 'https://ror.org/048xwe611 Institut de Biochimie et GƩnƩtique Cellulaires'),
(121280, 'https://ror.org/03qraer96', 'en', 1, 'https://ror.org/03qraer96 Council of Prairie and Pacific University Libraries'),
(121281, 'https://ror.org/01gcd8s37', 'pt', 1, 'https://ror.org/01gcd8s37 Laboratório de Ecologia e Limnologia'),
(121282, 'https://ror.org/01cf2sz15', 'fr', 1, 'https://ror.org/01cf2sz15 Institut des Sciences de la Terre Institute of Earth Science'),
(121283, 'https://ror.org/00stg1k53', 'en', 1, 'https://ror.org/00stg1k53 Institute of Philosophy MTA BTK Filozófiai Intézet'),
(121284, 'https://ror.org/0184p1881', 'en', 1, 'https://ror.org/0184p1881 Nevada Department of Health and Human Services'),
(121285, 'https://ror.org/004db2985', 'en', 1, 'https://ror.org/004db2985 LƖSEV – The Foundation for Children with Leukemia Lƶsemili Ƈocuklar Sağlık ve Eğitim Vakfı'),
(121286, 'https://ror.org/03xhggy77', 'fr', 1, 'https://ror.org/03xhggy77 Centre Interuniversitaire de Recherche et d’IngĆ©nierie des MatĆ©riaux Interuniversity Center of Materials Research and Engineering'),
(121287, 'https://ror.org/01x0h1806', 'en', 1, 'https://ror.org/01x0h1806 Australian National Maritime Museum'),
(121288, 'https://ror.org/010cbts85', 'en', 1, 'https://ror.org/010cbts85 Science for Africa Foundation'),
(121289, 'https://ror.org/03kmn9a50', 'en', 1, 'https://ror.org/03kmn9a50 Hefei Orthopedics Hospital åˆč‚„åø‚éŖØē§‘åŒ»é™¢'),
(121290, 'https://ror.org/00ce2by41', 'id', 1, 'https://ror.org/00ce2by41 Badan Pendidikan dan Pelatihan Kementerian Pertahanan'),
(121291, 'https://ror.org/02rpjjj48', 'es', 1, 'https://ror.org/02rpjjj48 Centro Superior de Estudios de la Defensa Nacional'),
(121292, 'https://ror.org/00pcnn364', 'en', 1, 'https://ror.org/00pcnn364 Research Center for Built Environment and Design'),
(121293, 'https://ror.org/0008bth81', 'no_lang_code', 1, 'https://ror.org/0008bth81 Mezo Research (Australia)'),
(121294, 'https://ror.org/04d836q62', 'de', 1, 'https://ror.org/04d836q62 TU Wien'),
(121295, 'https://ror.org/03w4dcm02', 'no_lang_code', 1, 'https://ror.org/03w4dcm02 Clinical Biotec Clinical Biotec (Spain)'),
(121296, 'https://ror.org/01shj3957', 'en', 1, 'https://ror.org/01shj3957 Red Deer Polytechnic'),
(121297, 'https://ror.org/00ptrgc11', 'fr', 1, 'https://ror.org/00ptrgc11 Conservatoire botanique national Sud-Atlantique'),
(121298, 'https://ror.org/01yfn9570', 'it', 1, 'https://ror.org/01yfn9570 Azienda ULSS 9 Scaligera'),
(121299, 'https://ror.org/02wg15j65', 'en', 1, 'https://ror.org/02wg15j65 Institute of Archaeology Magyar TudomƔnyos AkadƩmia RƩgƩszeti IntƩzet'),
(121300, 'https://ror.org/03wfca816', 'en', 1, 'https://ror.org/03wfca816 National University of Kyiv-Mohyla Academy ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠšŠøŃ”Š²Š¾-ŠœŠ¾Š³ŠøŠ»ŃŠ½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ»'),
(121301, 'https://ror.org/011avak85', 'es', 1, 'https://ror.org/011avak85 Instituto de las Culturas'),
(121302, 'https://ror.org/0468e4316', 'en', 1, 'https://ror.org/0468e4316 Kokand State University Qoʻqon Davlat Universiteti'),
(121303, 'https://ror.org/01fj67v51', 'en', 1, 'https://ror.org/01fj67v51 MRC Centre of Research Excellence in Restorative Neural Dynamics'),
(121304, 'https://ror.org/05754mh78', 'en', 1, 'https://ror.org/05754mh78 Hawela Tula General Hospital į‹Øįˆ€į‹Œįˆ‹ į‰±įˆ‹ įŠ įŒ į‰ƒįˆ‹į‹­ įˆ†įˆµį’į‰³įˆ'),
(121305, 'https://ror.org/01kv0ya56', 'es', 1, 'https://ror.org/01kv0ya56 Instituto Tecnológico de Chetumal'),
(121306, 'https://ror.org/02jfvys57', 'en', 1, 'https://ror.org/02jfvys57 Siemens Gamesa Renewable Energy Siemens Gamesa Renewable Energy (Spain)'),
(121307, 'https://ror.org/04jwmyw53', 'en', 1, 'https://ror.org/04jwmyw53 International Association of Machinists and Aerospace Workers'),
(121308, 'https://ror.org/05pt83522', 'en', 0, 'https://ror.org/05pt83522 University of Belgrade – Faculty of Forestry Univerzitet u Beogradu – Å umarski fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠØŃƒŠ¼Š°Ń€ŃŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(121309, 'https://ror.org/009j9tr83', 'en', 1, 'https://ror.org/009j9tr83 Uromedica Polyclinic'),
(121310, 'https://ror.org/057yw0190', 'en', 1, 'https://ror.org/057yw0190 Social Insurance Institution'),
(121311, 'https://ror.org/05sdyjv16', 'en', 1, 'https://ror.org/05sdyjv16 Cardinal Stefan Wyszynski University in Warsaw Uniwersytet Kardynała Stefana Wyszyńskiego w Warszawie'),
(121312, 'https://ror.org/027cvs066', 'en', 1, 'https://ror.org/027cvs066 D4Science'),
(121313, 'https://ror.org/02jyxgb86', 'en', 0, 'https://ror.org/02jyxgb86 University of Belgrade – Faculty of Technology and Metallurgy Univerzitet u Beogradu – TehnoloÅ”ko-metalurÅ”ki fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¢ŠµŃ…Š½Š¾Š»Š¾ŃˆŠŗŠ¾-Š¼ŠµŃ‚Š°Š»ŃƒŃ€ŃˆŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(121314, 'https://ror.org/05c5ac029', 'en', 1, 'https://ror.org/05c5ac029 New South Wales Nurses and Midwives Association'),
(121315, 'https://ror.org/05fs80s31', 'en', 1, 'https://ror.org/05fs80s31 Ditsong Nasionale Natuurhistoriese Museum Ditsong National Museum of Natural History'),
(121316, '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'),
(121317, 'https://ror.org/01e5j4411', 'en', 1, 'https://ror.org/01e5j4411 Southern Sudan Healthcare Organization'),
(121318, 'https://ror.org/0390v9245', 'en', 1, 'https://ror.org/0390v9245 Canadian Integrated Ocean Observing System Système intégré d''observation des océans du Canada'),
(121319, 'https://ror.org/05a18pg38', 'en', 1, 'https://ror.org/05a18pg38 Government College of Engineering, Erode'),
(121320, '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'),
(121321, 'https://ror.org/01q8hgd61', 'pt', 1, 'https://ror.org/01q8hgd61 Fundação para o Vestibular da Universidade Estadual Paulista ā€œJĆŗlio de Mesquita Filhoā€ (VUNESP)'),
(121322, 'https://ror.org/018avam53', 'en', 1, 'https://ror.org/018avam53 Momentum Institute'),
(121323, 'https://ror.org/01104nk81', 'en', 1, 'https://ror.org/01104nk81 Kulturdepartementet Ministry of Culture'),
(121324, 'https://ror.org/03m6hnx73', 'en', 1, 'https://ror.org/03m6hnx73 Sarawak Development Institute'),
(121325, 'https://ror.org/007ps6h72', 'en', 1, 'https://ror.org/007ps6h72 Fred Hutch Cancer Center'),
(121326, 'https://ror.org/0199hds37', 'fr', 1, 'https://ror.org/0199hds37 UniversitƩ Sorbonne Paris Nord'),
(121327, 'https://ror.org/02rg1r889', 'en', 1, 'https://ror.org/02rg1r889 Tribhuvan University'),
(121328, 'https://ror.org/02vbc6t45', 'en', 1, 'https://ror.org/02vbc6t45 Korolov Zhytomyr Military Institute Š–ŠøŃ‚Š¾Š¼ŠøŃ€ŃŃŒŠŗŠøŠ¹ Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імені Š”. П. ŠšŠ¾Ń€Š¾Š»ŃŒŠ¾Š²Š°'),
(121329, 'https://ror.org/040smqw14', 'fr', 1, 'https://ror.org/040smqw14 ClƩment Ader Institute Institut ClƩment Ader'),
(121330, 'https://ror.org/058m86v81', 'en', 1, 'https://ror.org/058m86v81 Global Studies University'),
(121331, 'https://ror.org/034t1zf11', 'fr', 1, 'https://ror.org/034t1zf11 Plan Bleu'),
(121332, 'https://ror.org/02trb6b02', 'pt', 1, 'https://ror.org/02trb6b02 Instituto de Ciências Biomédicas Abel Salazar (ICBAS) Instituto de Ciências Biomédicas Albel Salazar'),
(121333, 'https://ror.org/01xdxns91', 'ca', 1, 'https://ror.org/01xdxns91 Universitat de Girona'),
(121334, 'https://ror.org/04cdzx077', 'en', 0, 'https://ror.org/04cdzx077 Ministry of Food Agriculture and Livestock Türkiye Cumhuriyeti Gıda, Tarım ve Hayvancılık Bakanlığı'),
(121335, 'https://ror.org/05drqc289', 'fr', 1, 'https://ror.org/05drqc289 Physico-Chimie des MatĆ©riaux et des Ɖlectrolytes pour l’Énergie'),
(121336, 'https://ror.org/00qxty754', 'it', 1, 'https://ror.org/00qxty754 Azienda USL Toscana Nord Ovest'),
(121337, 'https://ror.org/03dgkrs42', 'en', 1, 'https://ror.org/03dgkrs42 MIX-X SRL MIX-X SRL (Italy)'),
(121338, 'https://ror.org/04wq34j33', 'fr', 1, 'https://ror.org/04wq34j33 Fondation OPEN-C Foundation OPEN-C'),
(121339, 'https://ror.org/03vcx3f97', 'fr', 1, 'https://ror.org/03vcx3f97 HƓpital Purpan'),
(121340, 'https://ror.org/04fhkx437', 'en', 1, 'https://ror.org/04fhkx437 Sankara Eye Hospital, Coimbatore'),
(121341, 'https://ror.org/01pg7ze09', 'en', 1, 'https://ror.org/01pg7ze09 CEVRO University CEVRO Univerzita CEVRO Univerzita, z.Ćŗ.'),
(121342, 'https://ror.org/03f6bd050', 'en', 1, 'https://ror.org/03f6bd050 Shri Govind Guru University ąŖ¶ą«ąŖ°ą«€ ગોવિંદ ગુરુ ąŖÆą«‚ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, ąŖ—ą«‹ąŖ§ąŖ°ąŖ¾'),
(121343, 'https://ror.org/03134gf68', 'en', 1, 'https://ror.org/03134gf68 Image Processing Systems Institute ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систем обработки изображений'),
(121344, 'https://ror.org/02gj7m650', 'fr', 1, 'https://ror.org/02gj7m650 Etisense Etisense (France)'),
(121345, 'https://ror.org/02bnf4x85', 'fr', 1, 'https://ror.org/02bnf4x85 UniversitƩ Simon Kimbangu'),
(121346, 'https://ror.org/039c2j878', 'fr', 1, 'https://ror.org/039c2j878 HƓpital d''instruction des ArmƩes Percy Percy Training Hospital of the Armies'),
(121347, 'https://ror.org/05w6a9m23', 'en', 1, 'https://ror.org/05w6a9m23 National Forensic Sciences University Dharwad Campus'),
(121348, 'https://ror.org/036rp1748', 'pt', 1, 'https://ror.org/036rp1748 Universidade de SĆ£o Paulo University of SĆ£o Paulo'),
(121349, 'https://ror.org/041qajd93', 'id', 1, 'https://ror.org/041qajd93 Sekolah Tinggi Ilmu Kesehatan Bataraguru'),
(121350, 'https://ror.org/01225hq90', 'fr', 1, 'https://ror.org/01225hq90 Center for the Study of the Biosphere from Space Centre d''Ɖtudes Spatiales de la BiosphĆØre'),
(121351, 'https://ror.org/02k7ask46', 'fr', 1, 'https://ror.org/02k7ask46 CALMIP'),
(121352, 'https://ror.org/00yee3n23', 'fr', 1, 'https://ror.org/00yee3n23 Laboratoire d''Astrophysique de Bordeaux Laboratory of Astrophysics of Bordeaux'),
(121353, 'https://ror.org/04qst5w65', 'en', 1, 'https://ror.org/04qst5w65 Zaporizhzhia National University Запорожский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(121354, 'https://ror.org/000xkb537', 'en', 1, 'https://ror.org/000xkb537 Ronin Institute for Independent Scholarship 2.0'),
(121355, 'https://ror.org/03d17t865', 'en', 1, 'https://ror.org/03d17t865 Zoos Victoria'),
(121356, 'https://ror.org/00gjv5s24', 'en', 1, 'https://ror.org/00gjv5s24 H.S. Skovoroda Kharkiv National Pedagogical University Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š“.Š”. ДковороГи'),
(121357, 'https://ror.org/05eev2q71', 'en', 1, 'https://ror.org/05eev2q71 Centre for Epidemiology Versus Arthritis'),
(121358, 'https://ror.org/00f30ft24', 'no_lang_code', 1, 'https://ror.org/00f30ft24 ALS (Czechia)'),
(121359, 'https://ror.org/002aj6f72', 'en', 1, 'https://ror.org/002aj6f72 Kakatiya Medical College కాకతీయ ą°µą±ˆą°¦ą±ą°Æ కళాశాల ą“•ą“¾ą“•ą“¤ąµ€ą“Æ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(121360, 'https://ror.org/05n3rrk65', 'en', 1, 'https://ror.org/05n3rrk65 State of Nevada'),
(121361, 'https://ror.org/023maxb94', 'en', 1, 'https://ror.org/023maxb94 Federal College of Education Gidan Madi'),
(121362, 'https://ror.org/04f2bnr67', 'de', 1, 'https://ror.org/04f2bnr67 Olympiastützpunkt Sachsen e.V.'),
(121363, 'https://ror.org/01dvj3d25', 'en', 1, 'https://ror.org/01dvj3d25 Atmospheric Radiation Measurement User Facility'),
(121364, 'https://ror.org/01d5vx451', 'ca', 1, 'https://ror.org/01d5vx451 Vall d''Hebron Institut de Recerca'),
(121365, 'https://ror.org/05rgttv76', 'en', 1, 'https://ror.org/05rgttv76 One School of Business'),
(121366, 'https://ror.org/0191tgr93', 'en', 1, 'https://ror.org/0191tgr93 Simmons College of Kentucky'),
(121367, 'https://ror.org/04jc43x05', 'de', 1, 'https://ror.org/04jc43x05 Klinikum der Technischen Universität München (TUM Klinikum) TUM Klinikum'),
(121368, 'https://ror.org/04hbs5924', 'en', 1, 'https://ror.org/04hbs5924 Kardigan Kardigan, Inc.'),
(121369, 'https://ror.org/04vgqjj36', 'en', 1, 'https://ror.org/04vgqjj36 Sahlgrenska Universitetssjukhuset Sahlgrenska University Hospital'),
(121370, 'https://ror.org/05tcnbj64', 'fr', 1, 'https://ror.org/05tcnbj64 Laboratoire d’Étude et de Recherche sur l’Économie, les Politiques et les SystĆØmes Sociaux'),
(121371, 'https://ror.org/01m3qaz74', 'en', 1, 'https://ror.org/01m3qaz74 PLGrid Infrastructure'),
(121372, 'https://ror.org/003412r28', 'fr', 1, 'https://ror.org/003412r28 Cancer Research Center of Toulouse Centre de Recherche en CancƩrologie de Toulouse'),
(121373, 'https://ror.org/03yn8s215', 'en', 1, 'https://ror.org/03yn8s215 Vienna University of Economics and Business WirtschaftsuniversitƤt Wien'),
(121374, 'https://ror.org/02rv28335', 'en', 1, 'https://ror.org/02rv28335 Ukrainian Military Medical Academy Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾-меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(121375, 'https://ror.org/02xv2bn88', 'en', 1, 'https://ror.org/02xv2bn88 Ecole Nationale SupĆ©rieure de MathĆ©matiques National Higher School of Mathematics المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų±ŁŠŲ§Ų¶ŁŠŲ§ŲŖ'),
(121376, 'https://ror.org/00k302405', 'en', 1, 'https://ror.org/00k302405 Type One Energy Type One Energy Group, Inc.'),
(121377, 'https://ror.org/03x873059', 'en', 1, 'https://ror.org/03x873059 Wenzhou Business College ęø©å·žå•†å­¦é™¢'),
(121378, 'https://ror.org/00hx6zz33', 'fr', 1, 'https://ror.org/00hx6zz33 Ɖcole Normale SupĆ©rieure Paris-Saclay'),
(121379, 'https://ror.org/01y343k91', 'en', 0, 'https://ror.org/01y343k91 University of Belgrade - Faculty of Agriculture Univerzitet u Beogradu - Poljoprivredni fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - ŠŸŠ¾Ń™Š¾ŠæŃ€ŠøŠ²Ń€ŠµŠ“Š½Šø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(121380, 'https://ror.org/01hh59206', 'uz', 1, 'https://ror.org/01hh59206 Bukhara State Pedagogical Institute Buxoro davlat pedagogika instituti Š‘ŃƒŃ…Š°Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(121381, 'https://ror.org/006y3gs95', 'en', 1, 'https://ror.org/006y3gs95 CanChild Centre for Childhood-onset Disability Research'),
(121382, 'https://ror.org/04512vn17', 'en', 1, 'https://ror.org/04512vn17 Mbeya Zonal Refferal Hospital'),
(121383, 'https://ror.org/0443cwa12', 'en', 1, 'https://ror.org/0443cwa12 Tallinn University of Technology Tallinna Tehnikaülikool Таллинский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(121384, 'https://ror.org/04wx5ag45', 'es', 1, 'https://ror.org/04wx5ag45 INCOT'),
(121385, 'https://ror.org/02qds7b08', 'fr', 1, 'https://ror.org/02qds7b08 ESPI Paris'),
(121386, 'https://ror.org/014ct6p94', 'sl', 1, 'https://ror.org/014ct6p94 Pokrajinski arhiv Maribor'),
(121387, 'https://ror.org/04t3en479', 'en', 1, 'https://ror.org/04t3en479 Karlsruhe Institute of Technology Karlsruher Institut für Technologie'),
(121388, 'https://ror.org/04040yw90', 'fr', 1, 'https://ror.org/04040yw90 Centre Inria de l''UniversitƩ de Rennes Inria Centre at Rennes University'),
(121389, 'https://ror.org/027xymc69', 'fr', 1, 'https://ror.org/027xymc69 Agence Bibliographique de l''Enseignement SupƩrieur'),
(121390, 'https://ror.org/03n8d2685', 'en', 1, 'https://ror.org/03n8d2685 Tanium Tanium (United States)'),
(121391, 'https://ror.org/019qb4279', 'en', 1, 'https://ror.org/019qb4279 Bangladesh Maritime University বাংলাদেশ ą¦®ą§‡ą¦°ą¦æą¦Ÿą¦¾ą¦‡ą¦® ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(121392, 'https://ror.org/028yd4c30', 'en', 1, 'https://ror.org/028yd4c30 Division of Civil, Mechanical & Manufacturing Innovation'),
(121393, 'https://ror.org/04rdvr310', 'en', 1, 'https://ror.org/04rdvr310 Soil Health Institute'),
(121394, 'https://ror.org/026qfdk31', 'pl', 1, 'https://ror.org/026qfdk31 Centrum Doradztwa Zawodowego dla Młodzieży w Poznaniu'),
(121395, 'https://ror.org/04pemf943', 'en', 1, 'https://ror.org/04pemf943 Institut de recherche du Centre universitaire de santƩ McGill Research Institute of the McGill University Health Centre'),
(121396, 'https://ror.org/04avgn672', 'en', 1, 'https://ror.org/04avgn672 RevBio (United States)'),
(121397, 'https://ror.org/021r2cx19', 'fr', 1, 'https://ror.org/021r2cx19 Ɖcole SupĆ©rieure des Professions ImmobiliĆØres'),
(121398, 'https://ror.org/01f0gvj28', 'sr', 1, 'https://ror.org/01f0gvj28 Istraživačko-razvojni institut TamiŔ Pančevo'),
(121399, 'https://ror.org/05335sh79', 'en', 1, 'https://ror.org/05335sh79 Office of Juvenile Justice and Delinquency Prevention'),
(121400, 'https://ror.org/03fbmsm75', 'en', 1, 'https://ror.org/03fbmsm75 ASR Technologies'),
(121401, 'https://ror.org/0175hh227', 'fr', 1, 'https://ror.org/0175hh227 Conservatoire National des Arts et MƩtiers National Conservatory of Arts and Crafts'),
(121402, 'https://ror.org/00w5bze11', 'en', 1, 'https://ror.org/00w5bze11 Rwanda Polytechnic'),
(121403, 'https://ror.org/05qrk8753', 'en', 1, 'https://ror.org/05qrk8753 European Virus Archive European Virus Archive AISBL'),
(121404, 'https://ror.org/006rjbv46', 'en', 1, 'https://ror.org/006rjbv46 Laboratory for Laser Energetics'),
(121405, 'https://ror.org/045ktmd28', 'fr', 1, 'https://ror.org/045ktmd28 Laboratoire National des Champs MagnƩtiques Intenses'),
(121406, 'https://ror.org/02128gy91', 'en', 1, 'https://ror.org/02128gy91 Thai Nguyen University ĐẔi hį»c ThĆ”i NguyĆŖn'),
(121407, 'https://ror.org/05qrfxd25', 'en', 1, 'https://ror.org/05qrfxd25 Russian Academy of Sciences Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук'),
(121408, 'https://ror.org/0122mh736', 'ro', 1, 'https://ror.org/0122mh736 IMAR - Institutul de Matematică ā€žSimion Stoilowā€ al Academiei RomĆ¢ne IMAR - Simion Stoilow Institute of Mathematics of the Romanian Academy'),
(121409, 'https://ror.org/02zx40v98', 'en', 1, 'https://ror.org/02zx40v98 Central European University'),
(121410, 'https://ror.org/05pnr3x95', 'en', 1, 'https://ror.org/05pnr3x95 Catholic Institute Faculty of Law and Economics Katoliski institut Izredni Ŕtudij prava in ekonomije na Fakulteti za pravo in ekonomijo'),
(121411, 'https://ror.org/03kpnfe55', 'fr', 1, 'https://ror.org/03kpnfe55 ESPI Lyon'),
(121412, 'https://ror.org/02tg4ba33', 'en', 1, 'https://ror.org/02tg4ba33 Aarno Labs'),
(121413, 'https://ror.org/0042bdc75', 'en', 1, 'https://ror.org/0042bdc75 Alphacrucis University College'),
(121414, 'https://ror.org/038hqgh39', 'en', 0, 'https://ror.org/038hqgh39 University of Belgrade – Faculty of Philology Univerzitet u Beogradu – FiloloÅ”ki fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Филолошки Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(121415, 'https://ror.org/037n1zn57', 'en', 1, 'https://ror.org/037n1zn57 Conservation Science Partners'),
(121416, 'https://ror.org/027rbaq21', 'fr', 0, 'https://ror.org/027rbaq21 Laboratoire Ɖcologie Fonctionnelle et Environnement'),
(121417, 'https://ror.org/02ny9gx17', 'en', 1, 'https://ror.org/02ny9gx17 Innovative University College'),
(121418, 'https://ror.org/0140vpn79', 'id', 1, 'https://ror.org/0140vpn79 STKIP PGRI Bandar Lampung Sekolah Tinggi Keguruan dan Ilmu Pendidikan PGRI Bandar Lampung'),
(121419, 'https://ror.org/0446f0x88', 'en', 1, 'https://ror.org/0446f0x88 Termez Davlat Pedagogika Instituti Termez State Pedagogical Institute Термезский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(121420, 'https://ror.org/03w5dn804', 'en', 1, 'https://ror.org/03w5dn804 Dutch Institute for Fundamental Energy Research'),
(121421, 'https://ror.org/03tvs6n06', 'fr', 1, 'https://ror.org/03tvs6n06 Centre de microcaractƩrisation Raimond Castaing'),
(121422, 'https://ror.org/03z942k20', 'en', 1, 'https://ror.org/03z942k20 Department of Education'),
(121423, 'https://ror.org/02fa3aq29', 'en', 1, 'https://ror.org/02fa3aq29 McMaster University'),
(121424, 'https://ror.org/05hf7ba61', 'en', 1, 'https://ror.org/05hf7ba61 Mid Western University ą¤®ą¤§ą„ą¤Æą¤Ŗą¤¶ą„ą¤šą¤æą¤®ą¤¾ą¤žą„ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121425, 'https://ror.org/00q7d9z06', 'no', 1, 'https://ror.org/00q7d9z06 NILU Stiftelsen NILU'),
(121426, 'https://ror.org/05wq5t373', 'en', 1, 'https://ror.org/05wq5t373 Australian Association of Social Workers'),
(121427, 'https://ror.org/00rq40n03', 'pl', 1, 'https://ror.org/00rq40n03 Korczak University – Academy of Applied Sciences Uczelnia Korczaka – Akademia Nauk Stosowanych'),
(121428, 'https://ror.org/027sha433', 'en', 1, 'https://ror.org/027sha433 Amity University Jaipur'),
(121429, 'https://ror.org/008mx9f83', 'en', 1, 'https://ror.org/008mx9f83 Institute for Particle and Nuclear Physics Részecske és Magfizikai Kutatóintézet'),
(121430, 'https://ror.org/0564xsr50', 'en', 1, 'https://ror.org/0564xsr50 King Hussein Cancer Center Ł…Ų±ŁƒŲ² Ų§Ł„Ų­Ų³ŁŠŁ† للسرطان'),
(121431, 'https://ror.org/040qxz868', 'no_lang_code', 1, 'https://ror.org/040qxz868 Chhatrapati Shahu Ji Maharaj University ą¤›ą¤¤ą„ą¤°ą¤Ŗą¤¤ą¤æ ą¤¶ą¤¾ą¤¹ą„‚ą¤œą„€ महाराज ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®šą®¤ąÆą®°ą®Ŗą®¤ą®æ ą®·ą®¾ą®•ąÆą®œą®æ ą®®ą®•ą®°ą®¾ą®œąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(121432, 'https://ror.org/05ncg6e98', 'en', 1, 'https://ror.org/05ncg6e98 The Canadian Partnership for Women and Children’s Health'),
(121433, 'https://ror.org/037h7zx09', 'fr', 1, 'https://ror.org/037h7zx09 Laboratoire Manceau de MathƩmatiques'),
(121434, 'https://ror.org/0392kk689', 'en', 1, 'https://ror.org/0392kk689 Eisenbahn-Bundesamt Federal Railway Authority'),
(121435, 'https://ror.org/00jmm1v56', 'en', 1, 'https://ror.org/00jmm1v56 Council for Technical Education and Vocational Training ą¤Ŗą„ą¤°ą¤¾ą¤µą¤æą¤§ą¤æą¤• ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ तऄा ą¤µą„ą¤Æą¤¾ą¤µą¤øą¤¾ą¤Æą¤æą¤• तालिम ą¤Ŗą¤°ą¤æą¤·ą¤¦ą„'),
(121436, 'https://ror.org/00rydyx93', 'fr', 1, 'https://ror.org/00rydyx93 Institut des Sciences Biologiques Institute of Biological Sciences'),
(121437, 'https://ror.org/0522a6g90', 'en', 1, 'https://ror.org/0522a6g90 Sankara Eye Hospital, Kanpur'),
(121438, 'https://ror.org/02kdcgj40', 'en', 1, 'https://ror.org/02kdcgj40 Center for AI and Digital Policy'),
(121439, 'https://ror.org/013s3zh21', 'en', 1, 'https://ror.org/013s3zh21 Necmettin Erbakan University Necmettin Erbakan Üniversitesi'),
(121440, 'https://ror.org/01x628269', 'es', 1, 'https://ror.org/01x628269 Saint Thomas Aquinas University Universidad Santo TomƔs'),
(121441, 'https://ror.org/05r1kq672', 'en', 1, 'https://ror.org/05r1kq672 Guangxi Eco-Engineering Vocational and Technical College å¹æč„æē”Ÿę€å·„ēØ‹čŒäøšęŠ€ęœÆå­¦é™¢'),
(121442, 'https://ror.org/01a5y6f48', 'de', 1, 'https://ror.org/01a5y6f48 BBF | Bibliothek für Bildungsgeschichtliche Forschung des DIPF BBF | Research Library for the History of Education at DIPF'),
(121443, 'https://ror.org/05fqfbj82', 'ja', 1, 'https://ror.org/05fqfbj82 Toyo Bunko Tōyō Bunko ę±ę“‹ę–‡åŗ«'),
(121444, 'https://ror.org/05rfg0242', 'en', 1, 'https://ror.org/05rfg0242 Marmara Environmental Monitoring Project'),
(121445, 'https://ror.org/05m61as59', 'id', 1, 'https://ror.org/05m61as59 Sekolah Tinggi Ilmu Tarbiyah Nahdlatul Ulama AL Farabi Pangandaran'),
(121446, 'https://ror.org/02nx8n605', 'no_lang_code', 1, 'https://ror.org/02nx8n605 TU9'),
(121447, 'https://ror.org/02mg3ab08', 'en', 1, 'https://ror.org/02mg3ab08 Sapience Therapeutics Sapience Therapeutics, Inc.'),
(121448, 'https://ror.org/02010jg37', 'en', 1, 'https://ror.org/02010jg37 Research Ireland Centre for Applied Geosciences'),
(121449, 'https://ror.org/02kyckx55', 'en', 1, 'https://ror.org/02kyckx55 University of Akron'),
(121450, 'https://ror.org/01k9v9b21', 'en', 1, 'https://ror.org/01k9v9b21 Indianapolis Zoo Indianapolis Zoological Society, Inc.'),
(121451, 'https://ror.org/0476qkr33', 'en', 1, 'https://ror.org/0476qkr33 Hong Kong Children''s Hospital'),
(121452, 'https://ror.org/018f0rm55', 'en', 1, 'https://ror.org/018f0rm55 Vladimir Regional Oncology Center Š“Š‘Š£Š—Š’Šž Ā«ŠžŠ±Š»Š°ŃŃ‚Š½Š¾Š¹ клинический онкологический Гиспансер»'),
(121453, 'https://ror.org/01yp9g959', 'en', 1, 'https://ror.org/01yp9g959 Prifysgol Ulster University of Ulster'),
(121454, 'https://ror.org/05jr4a171', 'es', 1, 'https://ror.org/05jr4a171 Ministerio de Defensa Ministry of Defence'),
(121455, 'https://ror.org/00bky6e07', 'en', 1, 'https://ror.org/00bky6e07 Kohnodai Hospital, National Center for Global Health and Medicine å›½ē«‹å›½éš›åŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼å›½åŗœå°ē—…é™¢'),
(121456, 'https://ror.org/03snf8k67', 'en', 1, 'https://ror.org/03snf8k67 Chamran Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† چمران'),
(121457, 'https://ror.org/02qztda51', 'es', 1, 'https://ror.org/02qztda51 Pontifical Catholic University of Ecuador Pontificia Universidad Católica del Ecuador'),
(121458, 'https://ror.org/053zh1547', 'en', 1, 'https://ror.org/053zh1547 Ibn Sina University for Medical Sciences'),
(121459, 'https://ror.org/03pfsnq21', 'en', 1, 'https://ror.org/03pfsnq21 University of Rzeszów Uniwersytet Rzeszowski'),
(121460, 'https://ror.org/05hm2ja81', 'fr', 1, 'https://ror.org/05hm2ja81 Institut de Recherche en Astrophysique et PlanƩtologie Research Institute in Astrophysics and Planetology'),
(121461, 'https://ror.org/04dsw5s27', 'pt', 1, 'https://ror.org/04dsw5s27 SENAI SĆ£o Paulo'),
(121462, 'https://ror.org/00gy54m79', 'en', 1, 'https://ror.org/00gy54m79 Tomsk Scientific Research Institute of Balneology and Physiotherapy Томский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠø Šø физиотерапии'),
(121463, 'https://ror.org/02w0r2764', 'en', 1, 'https://ror.org/02w0r2764 MAGIC Telescopes'),
(121464, 'https://ror.org/00v8p7w89', 'en', 1, 'https://ror.org/00v8p7w89 National Institute of Justice'),
(121465, 'https://ror.org/017d9yp59', 'fr', 1, 'https://ror.org/017d9yp59 Laboratoire d''AƩrologie'),
(121466, 'https://ror.org/04wzv3n59', 'no_lang_code', 1, 'https://ror.org/04wzv3n59 Sony (Japan) ć‚½ćƒ‹ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(121467, 'https://ror.org/03ef4a036', 'de', 1, 'https://ror.org/03ef4a036 University for Continuing Education Krems Universität für Weiterbildung Krems'),
(121468, 'https://ror.org/04ypy5v05', 'en', 1, 'https://ror.org/04ypy5v05 Ministry of Higher Education and Scientific Research وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(121469, 'https://ror.org/02vbn8n59', 'en', 1, 'https://ror.org/02vbn8n59 Leonid Yuzkov Khmelnytskyi University of Management and Law Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠøŠ¹ Університет Š£ŠæŃ€Š°Š²Š»Ń–Š½Š½Ń та ŠŸŃ€Š°Š²Š° імені ЛеоніГа Юзькова'),
(121470, 'https://ror.org/02wamc992', 'en', 1, 'https://ror.org/02wamc992 Sidama Regional Health Bureau'),
(121471, 'https://ror.org/05dzdqr92', 'de', 1, 'https://ror.org/05dzdqr92 Kiel University Publishing UniversitƤtsverlag Kiel'),
(121472, 'https://ror.org/01ehe5s81', 'es', 1, 'https://ror.org/01ehe5s81 Hospital Universitario de Getafe'),
(121473, 'https://ror.org/02rnep118', 'en', 1, 'https://ror.org/02rnep118 Queen''s Hospital'),
(121474, 'https://ror.org/04byv8g40', 'fr', 1, 'https://ror.org/04byv8g40 BiodiversitƩ, AgroƩcologie et AmƩnagement du Paysage'),
(121475, 'https://ror.org/00pqvmk25', 'en', 1, 'https://ror.org/00pqvmk25 Lalit Narayan Mithila University ललित नारायण मिऄिला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121476, 'https://ror.org/03pbqqc67', 'en', 1, 'https://ror.org/03pbqqc67 Health Innovation North West Coast'),
(121477, 'https://ror.org/02w9cdh50', 'en', 1, 'https://ror.org/02w9cdh50 Indian Institute of Information Technology and Management, Kerala ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‡ą¤°ą¤²'),
(121478, 'https://ror.org/01py1sz31', 'en', 1, 'https://ror.org/01py1sz31 Bangladesh Shishu Hospital & Institute বাংলাদেশ শিশু হাসপাতাল ও ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(121479, 'https://ror.org/03a26mh11', 'fr', 1, 'https://ror.org/03a26mh11 Laboratoire de Physique de l''Ecole Normale SupƩrieure'),
(121480, 'https://ror.org/04dhcem77', 'en', 1, 'https://ror.org/04dhcem77 Alameda County Resource Conservation District'),
(121481, 'https://ror.org/01ae3dk53', 'en', 1, 'https://ror.org/01ae3dk53 National Parks and Wildlife Service'),
(121482, 'https://ror.org/039ce0m20', 'en', 1, 'https://ror.org/039ce0m20 Hellenic Mediterranean University Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Μεσογειακό Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(121483, 'https://ror.org/01qed5e49', 'id', 1, 'https://ror.org/01qed5e49 Akademi Maritim Nusantara Cilacap'),
(121484, 'https://ror.org/02vz1de40', 'no_lang_code', 1, 'https://ror.org/02vz1de40 Canegrowers (Australia)'),
(121485, 'https://ror.org/00prgcp98', 'pt', 1, 'https://ror.org/00prgcp98 Hospital do CĆ¢ncer III'),
(121486, 'https://ror.org/03jgj8t95', 'es', 1, 'https://ror.org/03jgj8t95 Universidad Pedagógica Nacional del Estado de Chihuahua'),
(121487, 'https://ror.org/03cdgfs84', 'de', 1, 'https://ror.org/03cdgfs84 Landschaftsverband Westfalen-Lippe'),
(121488, 'https://ror.org/03wzk9351', 'es', 1, 'https://ror.org/03wzk9351 Great Asunción University Universidad Gran Asunción'),
(121489, 'https://ror.org/0518tra10', 'fr', 1, 'https://ror.org/0518tra10 UAR Data Terra'),
(121490, 'https://ror.org/00n90tt57', 'fr', 1, 'https://ror.org/00n90tt57 Institut Toulousain des Maladies Infectieuses et Inflammatoires'),
(121491, 'https://ror.org/033z83z59', 'fr', 1, 'https://ror.org/033z83z59 Centre d’Investigation Clinique 1436'),
(121492, 'https://ror.org/0383mzb93', 'fr', 1, 'https://ror.org/0383mzb93 Institut National de SantĆ© Publique, d''ƉpidĆ©miologie Clinique et de Toxicologie-Liban National Institute of Public Health, Clinical Epidemiology, and Toxicology-Lebanon'),
(121493, 'https://ror.org/046aajp50', 'id', 1, 'https://ror.org/046aajp50 Madura State Polytechnic Politeknik Negeri Madura'),
(121494, 'https://ror.org/00h7pd014', 'es', 1, 'https://ror.org/00h7pd014 Secretría Ejecutiva del Sistema Local Anticorrupción de Nayarit'),
(121495, 'https://ror.org/02av6b136', 'en', 1, 'https://ror.org/02av6b136 Terasaki Innovation Center'),
(121496, 'https://ror.org/04vnmj555', 'es', 1, 'https://ror.org/04vnmj555 National University of Music Universidad Nacional de MĆŗsica'),
(121497, 'https://ror.org/05jz51y94', 'en', 1, 'https://ror.org/05jz51y94 MEF University MEF Üniversitesi'),
(121498, 'https://ror.org/00pt67k84', 'fr', 1, 'https://ror.org/00pt67k84 University of Nouakchott UniversitĆ© de Nouakchott Ų¬Ų§Ł…Ų¹Ų© Ł†ŁˆŲ§ŁƒŲ“ŁˆŲ·'),
(121499, 'https://ror.org/00v2a6g95', 'en', 1, 'https://ror.org/00v2a6g95 Center for Plant Conservation'),
(121500, 'https://ror.org/04m2syz25', 'fr', 1, 'https://ror.org/04m2syz25 Institut de recherche sur le cancer de l''UniversitƩ de Sherbrooke'),
(121501, 'https://ror.org/04emprs51', 'no_lang_code', 1, 'https://ror.org/04emprs51 bioMƩrieux bioMƩrieux (United Kingdom) bioMƩrieux UK Limited'),
(121502, 'https://ror.org/0500yaj74', 'en', 1, 'https://ror.org/0500yaj74 Victoria Police'),
(121503, 'https://ror.org/05mm8cb16', 'en', 1, 'https://ror.org/05mm8cb16 We-be Lab Inc. We-be Lab Inc. (Japan)'),
(121504, 'https://ror.org/018tcc014', 'en', 1, 'https://ror.org/018tcc014 Rwanda Cultural Heritage Academy'),
(121505, 'https://ror.org/05mskc574', 'en', 1, 'https://ror.org/05mskc574 Ankara Hacı Bayram Veli University Ankara Hacı Bayram Veli Üniversitesi'),
(121506, 'https://ror.org/03se25782', 'en', 1, 'https://ror.org/03se25782 Zhejiang University Robotics Institute'),
(121507, 'https://ror.org/02bfwt286', 'en', 1, 'https://ror.org/02bfwt286 Monash University'),
(121508, 'https://ror.org/02d9dg697', 'fr', 1, 'https://ror.org/02d9dg697 School for Advanced Studies in the Social Sciences Ɖcole des hautes Ć©tudes en sciences sociales'),
(121509, 'https://ror.org/0181mwv19', 'id', 1, 'https://ror.org/0181mwv19 Universitas Widya Dharma Pontianak'),
(121510, 'https://ror.org/00mq5xd63', 'en', 1, 'https://ror.org/00mq5xd63 Microsurgeonbot Microsurgeonbot Inc.'),
(121511, 'https://ror.org/034bmrt60', 'en', 1, 'https://ror.org/034bmrt60 Pulchowk Campus'),
(121512, 'https://ror.org/02chvqy57', 'fr', 1, 'https://ror.org/02chvqy57 Laboratoire d’Études en GĆ©ophysique et OcĆ©anographie Spatiales Laboratory of Space Geophysical and Oceanographic Studies'),
(121513, 'https://ror.org/00pd74e08', 'en', 1, 'https://ror.org/00pd74e08 University of Münster Universität Münster'),
(121514, 'https://ror.org/0421zqv07', 'es', 1, 'https://ror.org/0421zqv07 Sociedad Ibérica para la Conservación y Estudio de los Mamíferos'),
(121515, 'https://ror.org/05fr27x71', 'en', 1, 'https://ror.org/05fr27x71 Jordan University Hospital مستؓفى الجامعة Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(121516, 'https://ror.org/02n2h9t24', 'fr', 1, 'https://ror.org/02n2h9t24 Laboratoire des Composites Thermo Structuraux'),
(121517, 'https://ror.org/04mqb0968', 'en', 1, 'https://ror.org/04mqb0968 Princess Alexandra Hospital'),
(121518, 'https://ror.org/05s41xv68', 'en', 1, 'https://ror.org/05s41xv68 Dolishniy Institute of Regional Research of NAS of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ім. М. І. Š”Š¾Š»Ń–ŃˆŠ½ŃŒŠ¾Š³Š¾ ŠŠŠ України'),
(121519, 'https://ror.org/00qhdy563', 'fr', 0, 'https://ror.org/00qhdy563 UniversitƩ Paul-ValƩry Montpellier UniversitƩ Paul-ValƩry Montpellier III');
INSERT INTO `rors` VALUES
(121520, 'https://ror.org/00k72sy36', 'es', 1, 'https://ror.org/00k72sy36 Instituto Superior Tecnológico de Investigación Científica e Innovación Instituto Superior Tecnológico de Investigación Científica e Innovación (ISTICI)'),
(121521, 'https://ror.org/016qd7r37', 'es', 1, 'https://ror.org/016qd7r37 Hospital Universitario de Maracaibo'),
(121522, 'https://ror.org/00ez5eh91', 'en', 1, 'https://ror.org/00ez5eh91 Center for Advanced Biomaterials for Healthcare'),
(121523, 'https://ror.org/040vwpm13', 'en', 1, 'https://ror.org/040vwpm13 University of Houston System'),
(121524, 'https://ror.org/04c82p618', 'en', 1, 'https://ror.org/04c82p618 Research Center for Culture, Art and Communication'),
(121525, 'https://ror.org/0327sr118', 'en', 1, 'https://ror.org/0327sr118 DIPF | Leibniz Institute for Research and Information in Education Deutsches Institut für Internationale Pädagogische Forschung Leibniz-Institut für Bildungsforschung und Bildungsinformation'),
(121526, 'https://ror.org/014a41w35', 'en', 1, 'https://ror.org/014a41w35 Institut für Designforschung Wien Institute of Design Research Vienna'),
(121527, 'https://ror.org/04kdfz702', 'fr', 1, 'https://ror.org/04kdfz702 Institut National des Sciences de l''Univers'),
(121528, 'https://ror.org/00bj04t22', 'fr', 1, 'https://ror.org/00bj04t22 Sciences, Philosophie, HumanitƩs'),
(121529, 'https://ror.org/04zjsmv14', 'ca', 1, 'https://ror.org/04zjsmv14 Fundació Privada Joan Bosch-Escola Universitària de les Arts ERAM'),
(121530, 'https://ror.org/03sjk9a61', 'fr', 1, 'https://ror.org/03sjk9a61 Ministry of Higher Education, Research and Space Ministère de l''Enseignement Supérieur, de la Recherche et de l''Espace'),
(121531, 'https://ror.org/03jspcw28', 'en', 0, 'https://ror.org/03jspcw28 University of Belgrade – Faculty of Mathematics Univerzitet u Beogradu – Matematički fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠœŠ°Ń‚ŠµŠ¼Š°Ń‚ŠøŃ‡ŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(121532, 'https://ror.org/03xabhe73', 'fr', 1, 'https://ror.org/03xabhe73 CommunautƩ d''universitƩs et Ʃtablissements de Toulouse Community of Universities and Institutions of Toulouse'),
(121533, 'https://ror.org/048yd2f31', 'en', 1, 'https://ror.org/048yd2f31 Debra Thana Sahid Kshudiram Smriti Mahavidyalaya ঔেবরা ঄ানা শহীদ ą¦•ą§ą¦·ą§ą¦¦ą¦æą¦°ą¦¾ą¦® ą¦øą§ą¦®ą§ƒą¦¤ą¦æ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(121534, 'https://ror.org/044pewz69', 'en', 1, 'https://ror.org/044pewz69 Hellenic Mediterranean University Research and Innovation Center Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼Ī¹Ī±ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και ĪšĪ±Ī¹Ī½ĪæĻ„ĪæĪ¼ĪÆĪ±Ļ‚'),
(121535, 'https://ror.org/02h6vef88', 'en', 1, 'https://ror.org/02h6vef88 Institute for Analytical Instrumentation Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аналитического ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(121536, 'https://ror.org/02yhhh758', 'en', 1, 'https://ror.org/02yhhh758 ALS (Australia)'),
(121537, 'https://ror.org/05a2mmm74', 'en', 1, 'https://ror.org/05a2mmm74 The Affiliated High School of Peking University'),
(121538, 'https://ror.org/03ew42730', 'en', 1, 'https://ror.org/03ew42730 Society of Indexers'),
(121539, 'https://ror.org/00re53k43', 'en', 1, 'https://ror.org/00re53k43 Australian and New Zealand Society of Indexers'),
(121540, 'https://ror.org/01z833950', 'en', 1, 'https://ror.org/01z833950 R Consortium'),
(121541, 'https://ror.org/032837421', 'en', 1, 'https://ror.org/032837421 Kaloji Narayana Rao University of Health Sciences ą°•ą°¾ą°³ą±‹ą°œą°æ నారాయణ రావు ą°†ą°°ą±‹ą°—ą±ą°Æ ą°µą°æą°œą±ą°žą°¾ą°Ø ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(121542, 'https://ror.org/02ras5d14', 'no_lang_code', 1, 'https://ror.org/02ras5d14 Amcor (Australia)'),
(121543, 'https://ror.org/019q0z051', 'en', 1, 'https://ror.org/019q0z051 Rocky Mountain Advanced Computing Consortium'),
(121544, 'https://ror.org/053xha254', 'en', 1, 'https://ror.org/053xha254 G. Pulla Reddy College of Pharmacy జి ą°Ŗą±ą°²ą±ą°²ą°¾ą°°ą±†ą°”ą±ą°”ą°æ ą°«ą°¾ą°°ą±ą°®ą°øą°æ కళాశాల'),
(121545, 'https://ror.org/03z6hnk02', 'de', 1, 'https://ror.org/03z6hnk02 Bundesanstalt für Wasserbau Federal Waterways Engineering and Research Institute'),
(121546, 'https://ror.org/0374a5s68', 'en', 1, 'https://ror.org/0374a5s68 Beijing Municipal Health Commission åŒ—äŗ¬åø‚å«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(121547, 'https://ror.org/04y024k78', 'en', 1, 'https://ror.org/04y024k78 Sankara Eye Hospital, Bangalore'),
(121548, 'https://ror.org/03y4ynm34', 'en', 1, 'https://ror.org/03y4ynm34 TAFE Directors Australian'),
(121549, 'https://ror.org/0165zav23', 'en', 1, 'https://ror.org/0165zav23 United Food and Commercial Workers'),
(121550, 'https://ror.org/02y4pff72', 'en', 1, 'https://ror.org/02y4pff72 Institute of Business'),
(121551, 'https://ror.org/00hsky907', 'en', 1, 'https://ror.org/00hsky907 Republikcan Scientific and Practical Medical Center of Endocrinology Named After Academician Y.H. Turakulov Y.X.To''raqulov nomidagi Respublika ixtisoslashtirilgan endokrinologiya ilmiy-amaliy tibbiyot markazi АкаГемик Ё.Š„. Š¢ŃžŃ€Š°Ņ›ŃƒŠ»Š¾Š² ŠŠ¾Š¼ŠøŠ“Š°Š³Šø Республика Š˜Ń…Ń‚ŠøŃŠ¾ŃŠ»Š°ŃˆŃ‚ŠøŃ€ŠøŠ»Š³Š°Š½ Š­Š½Š“Š¾ŠŗŃ€ŠøŠ½Š¾Š»Š¾Š³ŠøŃ Илмий-Амалий Тиббиёт ŠœŠ°Ń€ŠŗŠ°Š·Šø Республиканский Дпециализированный ŠŠ°ŃƒŃ‡Š½Š¾-ŠŸŃ€Š°ŠŗŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Центр ЭнГокринологии Имени АкаГемика Ё.Š„. Š¢ŃƒŃ€Š°ŠŗŃƒŠ»Š¾Š²Š°'),
(121552, 'https://ror.org/05s8p6g93', 'en', 1, 'https://ror.org/05s8p6g93 Sant Gadge Baba Amravati University ą¤…ą¤®ą¤°ą¤¾ą¤µą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121553, 'https://ror.org/03h1dmy16', 'fr', 1, 'https://ror.org/03h1dmy16 Laboratoire de recherche en Gestion'),
(121554, 'https://ror.org/01kc65v41', 'it', 1, 'https://ror.org/01kc65v41 Fondazione "Ugo Bordoni" Ugo Bordoni Foundation'),
(121555, 'https://ror.org/02980qc76', 'en', 1, 'https://ror.org/02980qc76 Arusha Lutheran Medical Centre'),
(121556, 'https://ror.org/00wxx1v68', 'en', 1, 'https://ror.org/00wxx1v68 Cameroon Field Epidemiology Training Programme'),
(121557, 'https://ror.org/00b9ktm87', 'no_lang_code', 1, 'https://ror.org/00b9ktm87 Amazon (Germany)'),
(121558, 'https://ror.org/02f8nh185', 'id', 1, 'https://ror.org/02f8nh185 Universitas Muhammadiyah Lamongan University of Muhammadiyah Lamongan'),
(121559, 'https://ror.org/046b3cj80', 'fr', 1, 'https://ror.org/046b3cj80 Ɖcole Pratique des Hautes Ɖtudes'),
(121560, 'https://ror.org/006q88a11', 'en', 1, 'https://ror.org/006q88a11 Nusa Putra University Universitas Nusa Putra'),
(121561, 'https://ror.org/007g5gk82', 'en', 0, 'https://ror.org/007g5gk82 University of Belgrade – Faculty of Orthodox Theology Univerzitet u Beogradu – Pravoslavni bogoslovski fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Šø богословски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(121562, 'https://ror.org/04rswrd78', 'en', 1, 'https://ror.org/04rswrd78 Iowa State University Iowa State University of Science and Technology Universidad Estatal de Iowa UniversitĆ© d''Ɖtat de l''Iowa'),
(121563, 'https://ror.org/01tkg4p45', 'fr', 1, 'https://ror.org/01tkg4p45 ESPI Lille'),
(121564, 'https://ror.org/05w1a7q33', 'en', 1, 'https://ror.org/05w1a7q33 Regional Institute of Printing Technology ą¦†ą¦žą§ą¦šą¦²ą¦æą¦• ą¦®ą§ą¦¦ą§ą¦°ą¦£ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø'),
(121565, 'https://ror.org/055n68305', 'pt', 1, 'https://ror.org/055n68305 Brazilian National Cancer Institute Instituto Nacional de CĆ¢ncer - INCA'),
(121566, 'https://ror.org/022jp2f58', 'en', 1, 'https://ror.org/022jp2f58 Academic Analytics Research Center'),
(121567, 'https://ror.org/01vceef04', 'en', 1, 'https://ror.org/01vceef04 Tsinghua Shenzhen International Graduate School ęø…åŽå¤§å­¦ę·±åœ³å›½é™…ē ”ē©¶ē”Ÿé™¢'),
(121568, 'https://ror.org/00aqmzg37', 'en', 1, 'https://ror.org/00aqmzg37 Mariammal Educational Trust ą®®ą®¾ą®°ą®æą®Æą®®ąÆą®®ą®¾ą®³ąÆ ą®•ą®²ąÆą®µą®æ ą®…ą®±ą®•ąÆą®•ą®ŸąÆą®Ÿą®³ąÆˆ'),
(121569, 'https://ror.org/05myqy214', 'en', 1, 'https://ror.org/05myqy214 Baku Choreography Academy Bakı Xoreoqrafiya Akademiyası Бакинское хореографическое ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ'),
(121570, 'https://ror.org/035a68863', 'en', 1, 'https://ror.org/035a68863 Servicio Geológico de los Estados Unidos United States Geological Survey'),
(121571, 'https://ror.org/01cejvr11', 'en', 1, 'https://ror.org/01cejvr11 Gajju Khan Medical College'),
(121572, 'https://ror.org/02xankh89', 'pt', 1, 'https://ror.org/02xankh89 Universidade Nova de Lisboa'),
(121573, 'https://ror.org/02eepyw03', 'en', 1, 'https://ror.org/02eepyw03 Kisan Post Graduate College کسان ڈگری کالج ठा. ą¤¹ą„ą¤•ą„ą¤® सिंह किसान ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121574, 'https://ror.org/03wzjfj77', 'ms', 1, 'https://ror.org/03wzjfj77 Universiti Geomatika Malaysia'),
(121575, 'https://ror.org/01ctbye80', 'en', 1, 'https://ror.org/01ctbye80 National Herbarium and Plant Laboratories'),
(121576, 'https://ror.org/05fsyf340', 'en', 0, 'https://ror.org/05fsyf340 University of Belgrade – Faculty of Law Univerzitet u Beogradu – Pravni fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠŸŃ€Š°Š²Š½Šø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(121577, 'https://ror.org/04yg0vm25', 'en', 1, 'https://ror.org/04yg0vm25 National Institute of Education'),
(121578, 'https://ror.org/057vd3p67', 'uz', 1, 'https://ror.org/057vd3p67 International Innovation University Xalqaro Innovatsion Universiteti'),
(121579, 'https://ror.org/02k2mqt73', 'en', 0, 'https://ror.org/02k2mqt73 Family Court of Australia'),
(121580, 'https://ror.org/04kwr9r57', 'pt', 1, 'https://ror.org/04kwr9r57 REMIT – Research on Economics, Management and Information Technologies Research on Economics, Management and Information Technologies'),
(121581, 'https://ror.org/01wmq0x68', 'tr', 1, 'https://ror.org/01wmq0x68 Beykoz University Beykoz Üniversitesi'),
(121582, 'https://ror.org/05kacka20', 'it', 1, 'https://ror.org/05kacka20 Institute of Information Science and Technologies "Alessandro Faedo" Istituto di Scienza e Tecnologie dell''Informazione "Alessandro Faedo"'),
(121583, 'https://ror.org/02ct9mp85', 'fr', 1, 'https://ror.org/02ct9mp85 Brussels Faculty for Protestant Theology Faculteit voor Protestantse Godgeleerdheid FacultƩ universitaire de ThƩologie protestante de Bruxelles'),
(121584, 'https://ror.org/00h4fkb86', 'hr', 1, 'https://ror.org/00h4fkb86 Croatian Institute of Public Health Hrvatski zavod za javno zdravstvo'),
(121585, 'https://ror.org/003sscq03', 'fr', 1, 'https://ror.org/003sscq03 Physiologie et MƩdecine ExpƩrimentale du Coeur et des Muscles Physiology & Experimental Medicine of the Heart and Muscles'),
(121586, 'https://ror.org/05exy9t05', 'da', 1, 'https://ror.org/05exy9t05 Central and West Zealand Hospital Midt- og VestsjƦllands Hospital'),
(121587, 'https://ror.org/04tkkr536', 'de', 1, 'https://ror.org/04tkkr536 FernUniversitƤt in Hagen'),
(121588, 'https://ror.org/04d1q5683', 'en', 1, 'https://ror.org/04d1q5683 QWorld Association'),
(121589, 'https://ror.org/03j67tx85', 'en', 1, 'https://ror.org/03j67tx85 Earthmover PBC Earthmover PBC (United States)'),
(121590, 'https://ror.org/04mxxkb11', 'es', 1, 'https://ror.org/04mxxkb11 Universidad de CƔdiz Universitat de Cadis University of CƔdiz'),
(121591, 'https://ror.org/02f82w364', 'en', 1, 'https://ror.org/02f82w364 Amity University Madhya Pradesh'),
(121592, 'https://ror.org/01w6qp003', 'en', 1, 'https://ror.org/01w6qp003 University of Veterinary Medicine Vienna VeterinƤrmedizinische UniversitƤt Wien'),
(121593, 'https://ror.org/03z27es23', 'es', 1, 'https://ror.org/03z27es23 Universidad Mayor de San Simón University of San Simón'),
(121594, 'https://ror.org/032035z88', 'en', 1, 'https://ror.org/032035z88 American Musical and Dramatic Academy'),
(121595, 'https://ror.org/013xs5b60', 'en', 1, 'https://ror.org/013xs5b60 Capital Medical University é¦–éƒ½åŒ»ē§‘å¤§å­¦'),
(121596, 'https://ror.org/00hgq1a05', 'en', 1, 'https://ror.org/00hgq1a05 Arctic Monitoring And Assessment Programme'),
(121597, 'https://ror.org/00mjv6b92', 'en', 1, 'https://ror.org/00mjv6b92 Research Institute for Earth Sciences'),
(121598, 'https://ror.org/047hbdw31', 'de', 1, 'https://ror.org/047hbdw31 GEOPARC Bletterbach'),
(121599, 'https://ror.org/03v2c3v44', 'fr', 1, 'https://ror.org/03v2c3v44 Centre de Recherche sur la BiodiversitƩ et l''Environnement'),
(121600, 'https://ror.org/02mw21745', 'en', 1, 'https://ror.org/02mw21745 Institut Ruđer BoÅ”ković Ruđer BoÅ”ković Institute'),
(121601, 'https://ror.org/03d1zwe41', 'en', 1, 'https://ror.org/03d1zwe41 Center for Behavioral Brain Sciences'),
(121602, 'https://ror.org/00rw7g836', 'no_lang_code', 1, 'https://ror.org/00rw7g836 Suez (Australia)'),
(121603, 'https://ror.org/04zaypm56', 'en', 1, 'https://ror.org/04zaypm56 Consiglio Nazionale delle Ricerche National Research Council'),
(121604, 'https://ror.org/00cyydd11', 'en', 1, 'https://ror.org/00cyydd11 ItƤ-Suomen yliopisto University of Eastern Finland Ɩstra Finlands universitet'),
(121605, 'https://ror.org/057xgqr91', 'es', 1, 'https://ror.org/057xgqr91 Institute of Physicochemistry of Materials, Environment and Energy Instituto de QuĆ­mica-FĆ­sica de los Materiales, Medio Ambiente y EnergĆ­a'),
(121606, 'https://ror.org/029gxzx35', 'fr', 0, 'https://ror.org/029gxzx35 Centre Chirurgical Marie Lannelongue'),
(121607, 'https://ror.org/045f7pv37', 'fr', 1, 'https://ror.org/045f7pv37 Institut FranƧais de Bioinformatique'),
(121608, 'https://ror.org/03jp3w522', 'en', 0, 'https://ror.org/03jp3w522 Institute of Electronic Materials Technology'),
(121609, 'https://ror.org/056jjra10', 'en', 1, 'https://ror.org/056jjra10 HƓpital gƩnƩral juif Jewish General Hospital'),
(121610, 'https://ror.org/055vdfb51', 'en', 1, 'https://ror.org/055vdfb51 Mongolian National Defense University Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Батлан Єамгаалах Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(121611, 'https://ror.org/05sn8t512', 'en', 1, 'https://ror.org/05sn8t512 Hospital Authority 醫院箔理局'),
(121612, 'https://ror.org/04140qr77', 'fr', 1, 'https://ror.org/04140qr77 Institut quantique'),
(121613, 'https://ror.org/04yxtdp84', 'pt', 1, 'https://ror.org/04yxtdp84 Hilab Hilab (Brazil)'),
(121614, 'https://ror.org/041ypg504', 'de', 1, 'https://ror.org/041ypg504 UniversitƤts- und Landesbibliothek Darmstadt'),
(121615, 'https://ror.org/045cbmk25', 'en', 1, 'https://ror.org/045cbmk25 Office Khibrat Tibah for Research and Studies (Saudi Arabia) Ł…ŁƒŲŖŲØ Ų®ŲØŲ±Ų§ŲŖ طيبة Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ'),
(121616, 'https://ror.org/034fqtg16', 'en', 1, 'https://ror.org/034fqtg16 Institute of Microelectronics Technology and High Purity Materials Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем технологии Š¼ŠøŠŗŃ€Š¾ŃŠ»ŠµŠŗŃ‚роники Šø особо чистых материалов'),
(121617, 'https://ror.org/056g7f250', 'fr', 1, 'https://ror.org/056g7f250 Laboratoire de Chimie et Physique Quantiques'),
(121618, 'https://ror.org/03kk7td41', 'en', 1, 'https://ror.org/03kk7td41 Cardiff University Prifysgol Caerdydd'),
(121619, 'https://ror.org/02tg2vb79', 'en', 1, 'https://ror.org/02tg2vb79 IBP-Sinovac Joint Laboratory of Cutting-edge Technologies and Vaccine & Drug Development å‰ę²æęŠ€ęœÆäøŽę–°åž‹ē–«č‹—čÆē‰©č”åˆå®žéŖŒå®¤'),
(121620, 'https://ror.org/04qf3sq85', 'en', 1, 'https://ror.org/04qf3sq85 Srushti Conservation Foundation'),
(121621, 'https://ror.org/009an6378', 'id', 1, 'https://ror.org/009an6378 Universitas Islam Negeri Siber Syekh Nurjati Cirebon'),
(121622, 'https://ror.org/00c6v5d66', 'id', 1, 'https://ror.org/00c6v5d66 Politeknik Wilmar Bisnis Indonesia Wilmar Business Indonesia Polytechnic'),
(121623, 'https://ror.org/04d4wjw61', 'en', 1, 'https://ror.org/04d4wjw61 IMU University Universiti Perubatan Antarabangsa'),
(121624, 'https://ror.org/02w5mvk98', 'fr', 1, 'https://ror.org/02w5mvk98 Laboratoire Plasma et Conversion d''Energie Laboratory on Plasma and Conversion of Energy'),
(121625, 'https://ror.org/01keb5n36', 'en', 1, 'https://ror.org/01keb5n36 Association for Community Development ąŗŖąŗ°ąŗ”ąŗ²ąŗ„ąŗ»ąŗ”ąŗžąŗ±ąŗ”ąŗ—ąŗ°ąŗ™ąŗ²ąŗŠąŗøąŗ”ąŗŠąŗ»ąŗ™ąŗšą»‰ąŗ²ąŗ™ą»€ąŗ®ąŗ»ąŗ²'),
(121626, 'https://ror.org/04njrqh98', 'en', 1, 'https://ror.org/04njrqh98 Chicago Queer Latine Collaborative'),
(121627, 'https://ror.org/00e3ns026', 'de', 1, 'https://ror.org/00e3ns026 Bundesministerium für Verkehr Federal Ministry of Transport'),
(121628, 'https://ror.org/02vsz1415', 'ro', 1, 'https://ror.org/02vsz1415 Ministerul Sanatatii Ministry of Health of Romania'),
(121629, 'https://ror.org/035x96431', 'fr', 1, 'https://ror.org/035x96431 BƩgin Military Teaching Hospital HƓpital Militaire de Vincennes HƓpital d''Instruction des ArmƩes BƩgin'),
(121630, 'https://ror.org/04gmtj115', 'id', 1, 'https://ror.org/04gmtj115 Institut Pendidikan Indonesia Garut'),
(121631, 'https://ror.org/04fdat027', 'en', 1, 'https://ror.org/04fdat027 IU International University of Applied Sciences IU Internationale Hochschule'),
(121632, 'https://ror.org/045924877', 'es', 1, 'https://ror.org/045924877 Centro de Estudios del Campo de Montiel'),
(121633, 'https://ror.org/01rn1eg28', 'no_lang_code', 1, 'https://ror.org/01rn1eg28 Bankura University বাঁকুঔ়া ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(121634, 'https://ror.org/013xvg556', 'fr', 1, 'https://ror.org/013xvg556 Ɖcole Nationale des Chartes'),
(121635, 'https://ror.org/01rde0531', 'en', 1, 'https://ror.org/01rde0531 Therapeutic Innovation Australia'),
(121636, 'https://ror.org/02ejcvx87', 'en', 1, 'https://ror.org/02ejcvx87 Ipswich City Council'),
(121637, 'https://ror.org/03x7rhv94', 'en', 1, 'https://ror.org/03x7rhv94 National Center for Diabetes, Endocrinology and Genetic Diseases'),
(121638, 'https://ror.org/00dgnn742', 'en', 0, 'https://ror.org/00dgnn742 University of Science and Technology of Fujairah Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ© في Ų§Ł„ŁŲ¬ŁŠŲ±Ų©'),
(121639, 'https://ror.org/01tsa0x55', 'fr', 1, 'https://ror.org/01tsa0x55 Environnements et PalƩoenvironnements OcƩaniques et Continentaux'),
(121640, 'https://ror.org/0137p4457', 'en', 1, 'https://ror.org/0137p4457 Nashotah House Theological Seminary'),
(121641, 'https://ror.org/05a26ag16', 'fr', 1, 'https://ror.org/05a26ag16 Centre d''analyse des rhƩtoriques religieuses de l''AntiquitƩ'),
(121642, 'https://ror.org/02pawj877', 'en', 1, 'https://ror.org/02pawj877 Directorate General of Family Planning'),
(121643, 'https://ror.org/02dwb1w08', 'id', 1, 'https://ror.org/02dwb1w08 Politeknik Negeri Pontianak'),
(121644, 'https://ror.org/00y4nm951', 'en', 1, 'https://ror.org/00y4nm951 Metro College of Health Sciences and Research'),
(121645, 'https://ror.org/00b3mhg89', 'en', 1, 'https://ror.org/00b3mhg89 Tamil Nadu Dr. M.G.R. Medical University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®Ÿą®¾ą®•ąÆą®Ÿą®°ąÆ ą®Žą®®ąÆ.ஜி.ą®†ą®°ąÆ. ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(121646, 'https://ror.org/04a0ybx50', 'fr', 1, 'https://ror.org/04a0ybx50 ANI-SCAN'),
(121647, 'https://ror.org/05t5tmr31', 'es', 1, 'https://ror.org/05t5tmr31 Instituto de Investigaciones Bibliotecológicas'),
(121648, 'https://ror.org/01v6wmk25', 'fr', 1, 'https://ror.org/01v6wmk25 Centre Bretagne-Normandie'),
(121649, 'https://ror.org/04mtaqb21', 'es', 1, 'https://ror.org/04mtaqb21 Universidad Libre de Colombia'),
(121650, 'https://ror.org/02ktpzh13', 'en', 1, 'https://ror.org/02ktpzh13 Sandip Institute of Technology & Research Centre'),
(121651, 'https://ror.org/01sjmsj73', 'en', 1, 'https://ror.org/01sjmsj73 AGroecologies, Innovations & Ruralities'),
(121652, 'https://ror.org/04w8r1528', 'en', 1, 'https://ror.org/04w8r1528 Davao de Oro State College'),
(121653, 'https://ror.org/00carf720', 'en', 1, 'https://ror.org/00carf720 Royal Adelaide Hospital'),
(121654, 'https://ror.org/030d6wr93', 'fr', 1, 'https://ror.org/030d6wr93 Laboratoire d''innovation molƩculaire et applications'),
(121655, 'https://ror.org/047kx5j58', 'en', 1, 'https://ror.org/047kx5j58 Hanson Institute'),
(121656, 'https://ror.org/05h7q1840', 'fr', 1, 'https://ror.org/05h7q1840 Centre de Traitement de l''Information GƩnƩtique'),
(121657, 'https://ror.org/05609b125', 'en', 1, 'https://ror.org/05609b125 Arkansas Children''s Research Institute'),
(121658, 'https://ror.org/0081fs513', 'es', 1, 'https://ror.org/0081fs513 Universidad de Buenos Aires University of Buenos Aires UniversitƠ di Buenos Aires UniversitƩ de Buenos Aires'),
(121659, 'https://ror.org/05q3vnk25', 'fr', 1, 'https://ror.org/05q3vnk25 Institut de Recherche pour le DƩveloppement Institute of Research for Development'),
(121660, 'https://ror.org/03n9awd48', 'fr', 1, 'https://ror.org/03n9awd48 PƓle de phƩnotypage des petits ruminants'),
(121661, 'https://ror.org/02efr0078', 'fr', 1, 'https://ror.org/02efr0078 AgroĆ©cologie, gĆ©nĆ©tique et systĆØmes d’élevage tropicaux'),
(121662, 'https://ror.org/02p06sa95', 'fr', 1, 'https://ror.org/02p06sa95 Centre de recherches en philosophie allemande et contemporaine'),
(121663, 'https://ror.org/044hdcm75', 'en', 1, 'https://ror.org/044hdcm75 Bestlink College of the Philippines'),
(121664, 'https://ror.org/054ja1t10', 'en', 1, 'https://ror.org/054ja1t10 Helix Biogen Institute'),
(121665, 'https://ror.org/05n69nc56', 'en', 1, 'https://ror.org/05n69nc56 Vivekananda Institute of Professional Studies'),
(121666, 'https://ror.org/05e2rg574', 'fr', 1, 'https://ror.org/05e2rg574 Services dƩconcentrƩs d''appui Ơ la recherche Bretagne-Normandie'),
(121667, 'https://ror.org/03nevd013', 'en', 1, 'https://ror.org/03nevd013 Swami Ramanand Teerth Marathwada University ą¤øą„ą¤µą¤¾ą¤®ą„€ रामानंद ą¤¤ą„€ą¤°ą„ą¤„ मराठवाऔ़ा ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121668, 'https://ror.org/00ga02e19', 'en', 1, 'https://ror.org/00ga02e19 Qinghai Institute of Salt Lakes é’ęµ·ē›ę¹–ē ”ē©¶ę‰€'),
(121669, 'https://ror.org/008t1c044', 'en', 1, 'https://ror.org/008t1c044 Gujarat Cancer Society ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤•ą„ˆą¤‚ą¤øą¤° ą¤øą„‹ą¤øą¤¾ą¤‡ą¤Ÿą„€'),
(121670, 'https://ror.org/03c363p94', 'fr', 1, 'https://ror.org/03c363p94 Mondes germaniques et nord-europƩens'),
(121671, 'https://ror.org/00t906316', 'id', 1, 'https://ror.org/00t906316 STIKES Dian Husada'),
(121672, 'https://ror.org/037eda396', 'fr', 1, 'https://ror.org/037eda396 PatriNat'),
(121673, 'https://ror.org/05rcpqf56', 'en', 1, 'https://ror.org/05rcpqf56 Happy Valley Business School'),
(121674, 'https://ror.org/03xsd4h52', 'id', 1, 'https://ror.org/03xsd4h52 Politeknik Pariwisata Palembang'),
(121675, 'https://ror.org/01c7wz417', 'fr', 1, 'https://ror.org/01c7wz417 Institut d''Enseignement SupƩrieur et de Recherche en Alimentation, SantƩ Animale, Sciences Agronomiques et de l''Environnement VetAgro Sup'),
(121676, 'https://ror.org/048w0yb32', 'en', 1, 'https://ror.org/048w0yb32 African Plant Nutrition Institute'),
(121677, 'https://ror.org/05jha0v88', 'fr', 1, 'https://ror.org/05jha0v88 Environnement, territoires en transition, infrastructures, sociƩtƩs'),
(121678, 'https://ror.org/058r67z28', 'es', 1, 'https://ror.org/058r67z28 Instituto interdisciplinario Tilcara'),
(121679, 'https://ror.org/023ewea43', 'en', 1, 'https://ror.org/023ewea43 Academician A. Kuatbekov People’s Friendship University АкаГемик Ә.ŅšŃƒŠ°Ń‚Š±ŠµŠŗŠ¾Š² атынГағы Єалықтар Гостығы ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– Университет Š”Ń€ŃƒŠ¶Š±Ń‹ нароГов имени акаГемика А.ŠšŃƒŠ°Ń‚Š±ŠµŠŗŠ¾Š²Š°'),
(121680, 'https://ror.org/00zg31r41', 'fr', 1, 'https://ror.org/00zg31r41 Centre INRAE Grand-Est - Colmar'),
(121681, 'https://ror.org/03tmzec49', 'en', 1, 'https://ror.org/03tmzec49 Korea Research Institute for Vocational Education and Training ķ•œźµ­ģ§ģ—…ėŠ„ė „ģ—°źµ¬ģ›'),
(121682, 'https://ror.org/022a22d59', 'en', 1, 'https://ror.org/022a22d59 New Georgian University ახალი įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(121683, 'https://ror.org/041v2hk34', 'fr', 1, 'https://ror.org/041v2hk34 Immunologie, Immunopathologie et Chimie ThƩrapeutique'),
(121684, 'https://ror.org/01shz5j60', 'fr', 1, 'https://ror.org/01shz5j60 Innovations ThƩrapeutiques et RƩsistances'),
(121685, 'https://ror.org/01yrqr844', 'fr', 1, 'https://ror.org/01yrqr844 Unité Expérimentale du Maïs'),
(121686, 'https://ror.org/00j4knb04', 'fr', 1, 'https://ror.org/00j4knb04 MetaGenoPolis'),
(121687, 'https://ror.org/01wrd9933', 'no_lang_code', 1, 'https://ror.org/01wrd9933 Werewolf Therapeutics Werewolf Therapeutics (United States) Werewolf Therapeutics Inc'),
(121688, 'https://ror.org/05whrjc31', 'fr', 1, 'https://ror.org/05whrjc31 Institut Charles Sadron Institut charles-sadron'),
(121689, 'https://ror.org/03yvemy54', 'fr', 1, 'https://ror.org/03yvemy54 UnitƩ Mixte de Recherche sur les Herbivores'),
(121690, 'https://ror.org/03sdnqb60', 'fr', 1, 'https://ror.org/03sdnqb60 Agriculture et alimentation durables, forêts et ressources naturelles associées'),
(121691, 'https://ror.org/05x8x2289', 'es', 1, 'https://ror.org/05x8x2289 Instituto Español de Investigación Enfermera'),
(121692, 'https://ror.org/038ajzz56', 'no_lang_code', 1, 'https://ror.org/038ajzz56 Research and Education Promotion Association (REPA) Research and Education Promotion Association (REPA) (United States)'),
(121693, 'https://ror.org/02n66bv81', 'fr', 1, 'https://ror.org/02n66bv81 UnitƩ ExpƩrimentale PHƩnotypage Au Champ des CƩrƩales'),
(121694, 'https://ror.org/01es8es39', 'fr', 1, 'https://ror.org/01es8es39 Rongeurs sauvages, risques sanitaires et gestion des populations'),
(121695, 'https://ror.org/050h0vm43', 'en', 1, 'https://ror.org/050h0vm43 The Hong Kong University of Science and Technology (Guangzhou) é¦™ęøÆē§‘ęŠ€å¤§å­¦ļ¼ˆå¹æå·žļ¼‰'),
(121696, 'https://ror.org/03k4s1p46', 'fr', 1, 'https://ror.org/03k4s1p46 Soil Agro and Hydrosystems Spatialization Sol Agro et hydrosystĆØme Spatialisation'),
(121697, 'https://ror.org/03pa4y709', 'en', 1, 'https://ror.org/03pa4y709 Modbury Hospital'),
(121698, 'https://ror.org/0230za379', 'fr', 1, 'https://ror.org/0230za379 Services dƩconcentrƩs d''appui Ơ la recherche Provence-Alpes-CƓte d''Azur'),
(121699, 'https://ror.org/04fy90t33', 'fr', 1, 'https://ror.org/04fy90t33 DSI-Service Informatique MutualisƩ Montpellier'),
(121700, 'https://ror.org/005pdb362', 'fr', 1, 'https://ror.org/005pdb362 Direction Enseignement SupƩrieur, Sites et Europe'),
(121701, 'https://ror.org/02w6r0892', 'fr', 1, 'https://ror.org/02w6r0892 Institut national de psychiatrie lƩgale Philippe-Pinel Philippe Pinel Institute'),
(121702, 'https://ror.org/003gebh55', 'fr', 1, 'https://ror.org/003gebh55 UnitƩ ExpƩrimentale Horticole'),
(121703, 'https://ror.org/059mabc80', 'en', 1, 'https://ror.org/059mabc80 Australian National Wildlife Collection'),
(121704, 'https://ror.org/02zww1c82', 'en', 1, 'https://ror.org/02zww1c82 Earth Sciences New Zealand'),
(121705, 'https://ror.org/03whgj090', 'fr', 1, 'https://ror.org/03whgj090 Science and Technology of Milk and Eggs Science et Technologie du Lait et de l''Oeuf'),
(121706, 'https://ror.org/030sabv67', 'es', 1, 'https://ror.org/030sabv67 ONG Amaranta'),
(121707, 'https://ror.org/00f3qdz64', 'fr', 1, 'https://ror.org/00f3qdz64 GƩomƩcanique, MatƩriaux, Structures'),
(121708, 'https://ror.org/000865k88', 'en', 1, 'https://ror.org/000865k88 Lake Macquarie City Council'),
(121709, 'https://ror.org/03a0jtb20', 'fr', 1, 'https://ror.org/03a0jtb20 Domaine ExpƩrimental de Vassal'),
(121710, 'https://ror.org/050ra0n32', 'fr', 1, 'https://ror.org/050ra0n32 UniversitƩ de Corse Pascal Paoli'),
(121711, 'https://ror.org/01eptzr85', 'en', 1, 'https://ror.org/01eptzr85 National Higher School of Autonomous Systems Technology'),
(121712, 'https://ror.org/03cp8z405', 'fr', 1, 'https://ror.org/03cp8z405 Comportement et Ɖcologie de la Faune Sauvage'),
(121713, 'https://ror.org/03d3w4k14', 'en', 1, 'https://ror.org/03d3w4k14 Azərbaycan Respublikasının Səhiyyə Nazirliyi Ministry of Healthcare'),
(121714, 'https://ror.org/02e0p8r13', 'en', 1, 'https://ror.org/02e0p8r13 Ghalib University دانؓگاه غالب'),
(121715, 'https://ror.org/009n4ec12', 'en', 1, 'https://ror.org/009n4ec12 International Center for Environmental Research'),
(121716, 'https://ror.org/04dz4p063', 'fr', 1, 'https://ror.org/04dz4p063 Services dƩconcentrƩs d''appui Ơ la recherche Nouvelle-Aquitaine-Poitiers'),
(121717, 'https://ror.org/04r2bgz73', 'en', 1, 'https://ror.org/04r2bgz73 Indian Council of Forestry Research and Education'),
(121718, 'https://ror.org/00tebkv94', 'fr', 1, 'https://ror.org/00tebkv94 Centre Nouvelle Aquitaine-Bordeaux'),
(121719, 'https://ror.org/028g18b61', 'en', 1, 'https://ror.org/028g18b61 Adelaide University'),
(121720, 'https://ror.org/002jby155', 'fr', 1, 'https://ror.org/002jby155 Centre Bourgogne-Franche-ComtƩ'),
(121721, 'https://ror.org/00cyxga88', 'es', 1, 'https://ror.org/00cyxga88 Instituto Superior Tecnológico Daniel Álvarez Burneo'),
(121722, 'https://ror.org/000tth217', 'fr', 1, 'https://ror.org/000tth217 Services dƩconcentrƩs d''appui Ơ la recherche Bourgogne-Franche-ComtƩ'),
(121723, 'https://ror.org/00ftatp57', 'fr', 1, 'https://ror.org/00ftatp57 Technologies & mƩthodes pour les agricultures de demain'),
(121724, 'https://ror.org/00har9915', 'fr', 1, 'https://ror.org/00har9915 Ɖcole Nationale SupĆ©rieure des Sciences Agronomiques de Bordeaux-Aquitaine'),
(121725, 'https://ror.org/00ryw5s75', 'en', 1, 'https://ror.org/00ryw5s75 Howard County Public School System'),
(121726, 'https://ror.org/019en2y21', 'en', 1, 'https://ror.org/019en2y21 Batangas State University Pambansang Pamantasan ng Batangas'),
(121727, 'https://ror.org/0487vq079', 'en', 1, 'https://ror.org/0487vq079 SveučiliŔte u Slavonskom Brodu University of Slavonski Brod'),
(121728, 'https://ror.org/00qtb0q13', 'en', 1, 'https://ror.org/00qtb0q13 Thackeray Wildlife Foundation'),
(121729, 'https://ror.org/038yp4g21', 'fr', 1, 'https://ror.org/038yp4g21 Centre de gestion en recherche'),
(121730, 'https://ror.org/03s7gtk40', 'en', 1, 'https://ror.org/03s7gtk40 Leipzig University UniversitƤt Leipzig'),
(121731, 'https://ror.org/00c8nx045', 'en', 1, 'https://ror.org/00c8nx045 Australian National Insect Collection'),
(121732, 'https://ror.org/056sktz68', 'en', 1, 'https://ror.org/056sktz68 Da Nang University of Economics TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ ĐƠ Nįŗµng'),
(121733, 'https://ror.org/059dxh255', 'en', 1, 'https://ror.org/059dxh255 Alterbridge University į²£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ įƒįƒšįƒ¢įƒ”įƒ įƒ‘įƒ įƒ˜įƒÆįƒ˜'),
(121734, 'https://ror.org/01tmp8f25', 'es', 1, 'https://ror.org/01tmp8f25 National Autonomous University of Mexico Universidad Nacional Autónoma de México'),
(121735, 'https://ror.org/041t8an62', 'pt', 1, 'https://ror.org/041t8an62 PolĆ­cia Militar do ParanĆ”'),
(121736, 'https://ror.org/03h4mwk55', 'fr', 1, 'https://ror.org/03h4mwk55 Direction Affaires Juridiques'),
(121737, 'https://ror.org/05gnvrv35', 'fr', 1, 'https://ror.org/05gnvrv35 Clinique La LigniĆØre'),
(121738, 'https://ror.org/018n7ed32', 'de', 1, 'https://ror.org/018n7ed32 Stiftung Kulturlandschaft Günztal'),
(121739, 'https://ror.org/03xrrn515', 'fr', 1, 'https://ror.org/03xrrn515 Linguistique, langues, parole'),
(121740, 'https://ror.org/01qvd7w32', 'en', 1, 'https://ror.org/01qvd7w32 Corthorn Health'),
(121741, 'https://ror.org/0153n1j19', 'no_lang_code', 1, 'https://ror.org/0153n1j19 Good Molecules Good Molecules (United States) Good Molecules LLC'),
(121742, 'https://ror.org/032bpk621', 'pl', 1, 'https://ror.org/032bpk621 Fundacja Centrum Logopedyczne'),
(121743, 'https://ror.org/00hj3wt34', 'fr', 1, 'https://ror.org/00hj3wt34 Antenne Services dƩconcentrƩs d''appui Ơ la recherche Grand Est-Nancy/Colmar'),
(121744, 'https://ror.org/01y9arx16', 'en', 1, 'https://ror.org/01y9arx16 Max Planck Institut für Chemische Energiekonversion Max Planck Institute for Chemical Energy Conversion'),
(121745, 'https://ror.org/05bkmv847', 'id', 1, 'https://ror.org/05bkmv847 Universitas Islam Negeri Sultan Aji Muhammad Idris Samarinda'),
(121746, 'https://ror.org/031x3py43', 'fr', 1, 'https://ror.org/031x3py43 Direction Financement et Achats'),
(121747, 'https://ror.org/0462dsc42', 'hr', 1, 'https://ror.org/0462dsc42 Klinički Bolnički Centar Split University Hospital of Split'),
(121748, 'https://ror.org/0583fqn04', 'en', 1, 'https://ror.org/0583fqn04 Crow Canyon Archaeological Center'),
(121749, 'https://ror.org/04751w132', 'fr', 1, 'https://ror.org/04751w132 Administration du siĆØge'),
(121750, 'https://ror.org/01945pn83', 'fr', 1, 'https://ror.org/01945pn83 Direction Coordination des Services DƩconcentrƩs d''Appui Ơ la Recherche'),
(121751, 'https://ror.org/03vqjtg68', 'en', 1, 'https://ror.org/03vqjtg68 Biju Patnaik University of Technology ବିଜୁ ą¬Ŗą¬Ÿą­ą¬Ÿą¬Øą¬¾ą­Ÿą¬• ą¬¬ą­ˆą¬·ą­Ÿą¬æą¬• ą¬¬ą¬æą¬¶ą­ą¬µą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(121752, 'https://ror.org/03frn6947', 'en', 1, 'https://ror.org/03frn6947 Romanian InSpace Engineering Romanian InSpace Engineering SRL (Romania)'),
(121753, 'https://ror.org/026xh5h29', 'fr', 1, 'https://ror.org/026xh5h29 Services dƩconcentrƩs d''appui Ơ la recherche Lyon-Grenoble-Auvergne-RhƓne-Alpes'),
(121754, 'https://ror.org/055s7a943', 'en', 1, 'https://ror.org/055s7a943 ERN GUARD-Heart'),
(121755, 'https://ror.org/00r8ypd71', 'en', 1, 'https://ror.org/00r8ypd71 Maa Manikeshwari University ମା ą¬®ą¬¾ą¬£ą¬æą¬•ą­‡ą¬¶ą­ą­±ą¬°ą­€ ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(121756, 'https://ror.org/04ddpcj88', 'fr', 1, 'https://ror.org/04ddpcj88 QualitƩ des Produits Animaux'),
(121757, 'https://ror.org/00rf4ez40', 'en', 1, 'https://ror.org/00rf4ez40 Coalition for Aligning Science'),
(121758, 'https://ror.org/03mvgn680', 'fr', 1, 'https://ror.org/03mvgn680 UnitƩ ExpƩrimentale Elevages Porcins Innovants'),
(121759, 'https://ror.org/028vsev23', 'en', 1, 'https://ror.org/028vsev23 Asian Law College'),
(121760, 'https://ror.org/04b82qh04', 'en', 1, 'https://ror.org/04b82qh04 Institute of Philosophy, Political Science and Religious Studies Š¤ŠøŠ»Š¾ŃŠ¾Ń„ŠøŃ, ŃŠ°ŃŃŠ°Ń‚Ń‚Š°Š½Ńƒ және Š“Ń–Š½Ń‚Š°Š½Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(121761, 'https://ror.org/03gvw0533', 'fr', 1, 'https://ror.org/03gvw0533 GƩnie des procƩdƩs FRIgorifiques pour la SƩcuritƩ alimentaire et l''Environnement'),
(121762, 'https://ror.org/053avzc18', 'en', 1, 'https://ror.org/053avzc18 Akademie věd ČeskĆ© republiky Czech Academy of Sciences'),
(121763, 'https://ror.org/04q4ppz72', 'es', 1, 'https://ror.org/04q4ppz72 Complejo Hospitalario Universitario de Toledo'),
(121764, 'https://ror.org/00jvqbw52', 'en', 1, 'https://ror.org/00jvqbw52 Institut de recherche en mƩdecine translationnelle et maladies hƩpatiques Institute for Translational Medicine and Liver Disease'),
(121765, 'https://ror.org/04wvhdh30', 'en', 1, 'https://ror.org/04wvhdh30 Future University Ų¬Ų§Ł…Ų¹Ų© المستقبل'),
(121766, 'https://ror.org/03am2jy38', 'fr', 1, 'https://ror.org/03am2jy38 Universitat de PerpinyƠ Via Domƭcia University of Perpignan UniversitƩ de Perpignan'),
(121767, 'https://ror.org/01m2sr579', 'fr', 1, 'https://ror.org/01m2sr579 Ministère de la Santé'),
(121768, 'https://ror.org/04wc3fj32', 'en', 1, 'https://ror.org/04wc3fj32 Salidat Kairbekova National Scientific Center for Healthcare Development'),
(121769, 'https://ror.org/02zj0f830', 'en', 1, 'https://ror.org/02zj0f830 Zcash Foundation'),
(121770, 'https://ror.org/053d1mc16', 'en', 1, 'https://ror.org/053d1mc16 International Association of Fire Fighters'),
(121771, 'https://ror.org/05szyf872', 'en', 1, 'https://ror.org/05szyf872 Yemen University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŁ…Ł†'),
(121772, 'https://ror.org/051qwvk84', 'fr', 1, 'https://ror.org/051qwvk84 PRocƩdƩs biOtechnologiques au Service de l''Environnement'),
(121773, 'https://ror.org/0061msm67', 'en', 0, 'https://ror.org/0061msm67 Max Planck Digital Library'),
(121774, 'https://ror.org/00vtkv002', 'en', 1, 'https://ror.org/00vtkv002 Sichuan Bureau of Geology & Mineral Resources å››å·ēœåœ°č“ØēŸæäŗ§å‹˜ęŸ„å¼€å‘å±€'),
(121775, 'https://ror.org/05b1pny37', 'en', 1, 'https://ror.org/05b1pny37 Veterinary Cancer Care'),
(121776, 'https://ror.org/02nzb0q40', 'fr', 1, 'https://ror.org/02nzb0q40 SECuritƩ des ALIments et Microbiologie'),
(121777, 'https://ror.org/045ph6p55', 'fr', 1, 'https://ror.org/045ph6p55 Département sciences des écosystèmes aquatiques, des ressources en eau et des risques associés'),
(121778, 'https://ror.org/015yekt83', 'fr', 1, 'https://ror.org/015yekt83 Direction Appui au Pilotage'),
(121779, 'https://ror.org/015m7wh34', 'fr', 1, 'https://ror.org/015m7wh34 University of Rennes UniversitƩ de Rennes'),
(121780, 'https://ror.org/01vhvkg13', 'en', 1, 'https://ror.org/01vhvkg13 Soban Singh Jeena Government Institute of Medical Sciences and Research, Almora'),
(121781, 'https://ror.org/036g8gs02', 'en', 1, 'https://ror.org/036g8gs02 Pearl River Hydraulic Research Institute ē ę±Ÿę°“åˆ©å§”å‘˜ä¼šē ę±Ÿę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(121782, 'https://ror.org/04xtaw673', 'fr', 1, 'https://ror.org/04xtaw673 Fish Physiology and Genomics Institute Laboratoire de Physiologie et GƩnomique des Poissons'),
(121783, 'https://ror.org/01c9tsg19', 'en', 1, 'https://ror.org/01c9tsg19 Agrarian Science State Publishing House of the National Academy of Agrarian Sciences of Ukraine Державне виГавництво «Аграрна наука» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(121784, 'https://ror.org/00av5yz18', 'en', 1, 'https://ror.org/00av5yz18 Health and Safety Executive'),
(121785, 'https://ror.org/01zpyds80', 'tr', 1, 'https://ror.org/01zpyds80 Alevi-Bektaşi Kültür ve Cemevi Başkanlığı'),
(121786, 'https://ror.org/02hw7a871', 'en', 1, 'https://ror.org/02hw7a871 Superhumans War Trauma Center'),
(121787, 'https://ror.org/0583dp681', 'en', 1, 'https://ror.org/0583dp681 Black Sea Research Institute of Economy and Innovation'),
(121788, 'https://ror.org/01m68w837', 'fr', 1, 'https://ror.org/01m68w837 Abeilles et environnement'),
(121789, 'https://ror.org/02scvt034', 'en', 1, 'https://ror.org/02scvt034 Quanzhou Women and Children''s Hospital'),
(121790, 'https://ror.org/05p5qhn13', 'en', 1, 'https://ror.org/05p5qhn13 TAmiRNA TAmiRNA (Austria)'),
(121791, 'https://ror.org/02aswf736', 'fr', 1, 'https://ror.org/02aswf736 Atmosphere Plant Soil Interactions Interaction Sol Plante AtmosphĆØre'),
(121792, 'https://ror.org/05vex5m10', 'fr', 1, 'https://ror.org/05vex5m10 Physiopathologie Animale et bioThérapie du muscle et du système nerveux'),
(121793, 'https://ror.org/03qn8fb07', 'en', 1, 'https://ror.org/03qn8fb07 Commonwealth Scientific and Industrial Research Organisation'),
(121794, 'https://ror.org/05a0ya142', 'en', 1, 'https://ror.org/05a0ya142 Broad Institute El Instituto Broad'),
(121795, 'https://ror.org/00c3ta789', 'fr', 1, 'https://ror.org/00c3ta789 Histoire Naturelle des HumanitƩs PrƩhistoriques'),
(121796, 'https://ror.org/00w0bpf20', 'fr', 1, 'https://ror.org/00w0bpf20 ThƩologie catholique et sciences religieuses'),
(121797, 'https://ror.org/043cwtk29', 'fr', 1, 'https://ror.org/043cwtk29 DSI-Service Informatique InterRƩgional Sud Ouest'),
(121798, 'https://ror.org/02f0kwz92', 'fr', 1, 'https://ror.org/02f0kwz92 Genotoul coordination'),
(121799, 'https://ror.org/01xbqg152', 'fr', 1, 'https://ror.org/01xbqg152 Info&Sols'),
(121800, 'https://ror.org/055vkj473', 'no_lang_code', 1, 'https://ror.org/055vkj473 Cox Enterprises (United States)'),
(121801, 'https://ror.org/04gpknv18', 'en', 1, 'https://ror.org/04gpknv18 Nuclear Waste Management Organization of Japan'),
(121802, 'https://ror.org/0454zjr22', 'fr', 1, 'https://ror.org/0454zjr22 Infectiologie et santƩ publique'),
(121803, 'https://ror.org/04908fk77', 'fr', 1, 'https://ror.org/04908fk77 Cellule d''appui pour les PEPR'),
(121804, 'https://ror.org/01t3qpe29', 'fr', 1, 'https://ror.org/01t3qpe29 IERP : Infectiologie ExpƩrimentale des Rongeurs et Poissons'),
(121805, 'https://ror.org/053kv8p63', 'en', 1, 'https://ror.org/053kv8p63 Institute of Genetics and Plant Experimental Biology of the Academy Sciences of Uzbekistan Oā€˜zbekiston Respublikasi Fanlar akademiyasi Genetika va oŹ»simliklar eksperimental biologiyasi instituti Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Генетики Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ биологии растений АкаГемии наук Республики Узбекистан'),
(121806, 'https://ror.org/05sc3hd12', 'fr', 1, 'https://ror.org/05sc3hd12 Mitochondrie, stress oxydant et protection musculaire'),
(121807, 'https://ror.org/00xp71n53', 'es', 1, 'https://ror.org/00xp71n53 Instituto de Literatura Argentina "Ricardo Rojas"'),
(121808, 'https://ror.org/04amwj384', 'es', 1, 'https://ror.org/04amwj384 Fundación Renal del Nordeste Argentino'),
(121809, 'https://ror.org/05s9t8c95', 'en', 1, 'https://ror.org/05s9t8c95 Jawaharlal Nehru Technological University, Kakinada ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ సాంకేతిక ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(121810, 'https://ror.org/05kb92670', 'en', 1, 'https://ror.org/05kb92670 Northwest School of Medicine'),
(121811, 'https://ror.org/05c95bg36', 'fr', 1, 'https://ror.org/05c95bg36 Laboratoire de Physique des Plasmas'),
(121812, 'https://ror.org/01xkakk17', 'en', 1, 'https://ror.org/01xkakk17 HES-SO Haute Ʃcole spƩcialisƩe de Suisse occidentale HES-SO University of Applied Sciences and Arts Western Switzerland'),
(121813, 'https://ror.org/013vjwn12', 'fr', 1, 'https://ror.org/013vjwn12 BiopolymĆØres Interactions Assemblages'),
(121814, 'https://ror.org/040jmyh64', 'en', 1, 'https://ror.org/040jmyh64 Jaypee University of Engineering and Technology, Guna'),
(121815, 'https://ror.org/009r0wm36', 'en', 1, 'https://ror.org/009r0wm36 Max Planck Information and Technology'),
(121816, 'https://ror.org/05a81sk89', 'en', 1, 'https://ror.org/05a81sk89 Institute of Agroecology and Environmental Management of the National Academy of Agrarian Sciences of Ukraine (NAAS) Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ агроекології і ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— АкаГемії аграрниї наук України'),
(121817, 'https://ror.org/02kcqac59', 'fr', 1, 'https://ror.org/02kcqac59 UnitƩ ExpƩrimentale d''Ecologie et d''Ecotoxicologie Aquatique'),
(121818, 'https://ror.org/00r7apq26', 'en', 1, 'https://ror.org/00r7apq26 ERN Board of Member States'),
(121819, 'https://ror.org/03ar2j538', 'no_lang_code', 1, 'https://ror.org/03ar2j538 Innospec (United Kingdom)'),
(121820, 'https://ror.org/05gqh1a45', 'en', 1, 'https://ror.org/05gqh1a45 Hodan Hospital'),
(121821, 'https://ror.org/01w84kg34', 'de', 1, 'https://ror.org/01w84kg34 Austrian Patent Office Ɩsterreichisches Patentamt'),
(121822, 'https://ror.org/0098tvn97', 'fr', 1, 'https://ror.org/0098tvn97 Direction ResponsabilitƩ SociƩtale et Environnementale'),
(121823, 'https://ror.org/01kvpec59', 'en', 1, 'https://ror.org/01kvpec59 Rotman Research Institute'),
(121824, 'https://ror.org/05mafap53', 'fr', 1, 'https://ror.org/05mafap53 Unité Expérimentale Systèmes d''Elevage Avicoles Alternatifs'),
(121825, 'https://ror.org/02nr0ka47', 'en', 1, 'https://ror.org/02nr0ka47 OpenAlex'),
(121826, 'https://ror.org/05prctx90', 'en', 1, 'https://ror.org/05prctx90 ParticipACTION'),
(121827, 'https://ror.org/04pwapm65', 'fr', 1, 'https://ror.org/04pwapm65 SubjectivitƩ, lien social et modernitƩ'),
(121828, 'https://ror.org/03rkgeb39', 'fr', 1, 'https://ror.org/03rkgeb39 Animal Genetics and Integrative Biology unit GƩnƩtique Animale et Biologie IntƩgrative'),
(121829, 'https://ror.org/01mxt9696', 'en', 1, 'https://ror.org/01mxt9696 Calvert County Public Schools'),
(121830, 'https://ror.org/04m4fy391', 'en', 1, 'https://ror.org/04m4fy391 Centro UniversitƔrio Senac Senac University Center'),
(121831, 'https://ror.org/01krsgj74', 'fr', 1, 'https://ror.org/01krsgj74 Centre National de Ressources GƩnomiques VƩgƩtales'),
(121832, 'https://ror.org/01455vv20', 'fr', 1, 'https://ror.org/01455vv20 UnitƩ ExpƩrimentale Vigne & Vin Bordeaux Grande Ferrade'),
(121833, 'https://ror.org/01tqvhm50', 'en', 1, 'https://ror.org/01tqvhm50 National Podoconiosis Action Network National Podoconiosis Action Network (NaPAN)'),
(121834, 'https://ror.org/00pg6eq24', 'fr', 1, 'https://ror.org/00pg6eq24 Universitat d''Estrasburg University of Strasbourg Universität Straßburg Université de Strasbourg'),
(121835, 'https://ror.org/012n7y874', 'en', 1, 'https://ror.org/012n7y874 University of the Holy Qur''an and Islamic Sciences Ų¬Ų§Ł…Ų¹Ų© القرآن Ų§Ł„ŁƒŲ±ŁŠŁ… ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(121836, 'https://ror.org/05x7qvh17', 'en', 1, 'https://ror.org/05x7qvh17 G.L. Bajaj Institute of Technology and Management Greater Noida'),
(121837, 'https://ror.org/019615g61', 'en', 1, 'https://ror.org/019615g61 Govt.W.W. Patankar Girls’ PG College, Durg'),
(121838, 'https://ror.org/03k7yrw82', 'fr', 1, 'https://ror.org/03k7yrw82 Immuno-Rhumathologie molƩculaire Molecular Immuno-Rhumatology'),
(121839, 'https://ror.org/04qgfge56', 'fr', 1, 'https://ror.org/04qgfge56 Laboratoire de SynthĆØse Organique Laboratory of Organic Synthesis'),
(121840, 'https://ror.org/04c4yys67', 'en', 1, 'https://ror.org/04c4yys67 Directorate-General for Regional and Urban Policy'),
(121841, 'https://ror.org/012jppq48', 'tr', 1, 'https://ror.org/012jppq48 Turkish Higher Education Quality Council Yükseköğretim Kalite Kurulu'),
(121842, 'https://ror.org/03ftvhg46', 'es', 1, 'https://ror.org/03ftvhg46 Universidad ContemporƔnea de las AmƩricas'),
(121843, 'https://ror.org/032x22645', 'en', 1, 'https://ror.org/032x22645 Zhongshan Hospital äø­å±±åŒ»é™¢ å¤ę—¦å¤§å­¦é™„å±žäø­å±±åŒ»é™¢'),
(121844, 'https://ror.org/00vxck708', 'fr', 1, 'https://ror.org/00vxck708 AgrosystĆØmes tropicaux'),
(121845, 'https://ror.org/00yv4p972', 'fr', 1, 'https://ror.org/00yv4p972 DƩpartement Ʃcologie et biodiversitƩ des milieux forestiers, prairiaux et aquatiques'),
(121846, 'https://ror.org/042tfbd02', 'fr', 1, 'https://ror.org/042tfbd02 Institut Polytechnique de Paris'),
(121847, 'https://ror.org/03zek0r74', 'fr', 1, 'https://ror.org/03zek0r74 Institut Agro Dijon'),
(121848, 'https://ror.org/02wec2942', 'fr', 1, 'https://ror.org/02wec2942 Direction Expertise scientifique collective, Prospective et Etudes'),
(121849, 'https://ror.org/010x8gc63', 'en', 1, 'https://ror.org/010x8gc63 University of Saskatchewan UniversitƩ de la saskatchewan'),
(121850, 'https://ror.org/03bra4w96', 'en', 1, 'https://ror.org/03bra4w96 Ministry of Education and Science ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки, молоГёжи Šø спорта Украины ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ освіти і науки України'),
(121851, 'https://ror.org/03tpcfk14', 'fr', 1, 'https://ror.org/03tpcfk14 Animal physiology and livestock systems DĆ©partement Physiologie Animale et SystĆØmes d’Élevage'),
(121852, 'https://ror.org/02fd0t277', 'en', 1, 'https://ror.org/02fd0t277 Institute of Thermoelectricity of National Academy of Sciences of Ukraine and Ministry of Education and Science of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ термоелектрики ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України та ŠœŃ–ністерства освіти і науки України'),
(121853, 'https://ror.org/02cafbr77', 'es', 1, 'https://ror.org/02cafbr77 Pontifical Catholic University of Valparaíso Pontificia Universidad Católica de Valparaíso'),
(121854, 'https://ror.org/04qyfdb42', 'en', 1, 'https://ror.org/04qyfdb42 Burauen Community College'),
(121855, 'https://ror.org/03zj4c476', 'en', 1, 'https://ror.org/03zj4c476 Aligning Science Across Parkinson''s'),
(121856, 'https://ror.org/00f7vya03', 'no_lang_code', 1, 'https://ror.org/00f7vya03 Thales (Australia)'),
(121857, 'https://ror.org/01mbkbh33', 'fr', 1, 'https://ror.org/01mbkbh33 Organisation de Micro-Electronique GƩnƩrale AvancƩe'),
(121858, 'https://ror.org/01y9bpm73', 'en', 1, 'https://ror.org/01y9bpm73 Georg-August-UniversitƤt Gƶttingen University of Gƶttingen'),
(121859, 'https://ror.org/03g2he494', 'en', 1, 'https://ror.org/03g2he494 Azerbaijan State Advanced Training Institute for Doctors named after A. Aliyev ʏziz ʏliyev adına Azərbaycan Dƶvlət Həkimləri Təkmilləşdirmə İnstitutu'),
(121860, 'https://ror.org/02aj17w81', 'es', 1, 'https://ror.org/02aj17w81 Faunagua'),
(121861, 'https://ror.org/02ehvmb75', 'en', 1, 'https://ror.org/02ehvmb75 Federal Polytechnic Kabo'),
(121862, 'https://ror.org/05te7m660', 'pt', 1, 'https://ror.org/05te7m660 ServiƧo Nacional de Aprendizagem Comercial'),
(121863, 'https://ror.org/013c5y403', 'es', 1, 'https://ror.org/013c5y403 Instituto de Literatura Hispanoamericana'),
(121864, 'https://ror.org/04zhpq530', 'pt', 1, 'https://ror.org/04zhpq530 Casa dos Raros'),
(121865, 'https://ror.org/02zbepj77', 'es', 1, 'https://ror.org/02zbepj77 Universidad TƩcnica Federico Santa Marƭa'),
(121866, 'https://ror.org/036czkg67', 'fr', 1, 'https://ror.org/036czkg67 Laboratoire interdisciplinaire de l''X'),
(121867, 'https://ror.org/052ay8m85', 'en', 1, 'https://ror.org/052ay8m85 Federal Medical-Biological Agency Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ меГико-биологическое агентство'),
(121868, 'https://ror.org/03k8mct04', 'en', 1, 'https://ror.org/03k8mct04 Krupanidhi Degree College'),
(121869, 'https://ror.org/04hxcaz34', 'en', 0, 'https://ror.org/04hxcaz34 National Institute of Water and Atmospheric Research'),
(121870, 'https://ror.org/02qvmvj21', 'ca', 1, 'https://ror.org/02qvmvj21 Conservatori Superior de MĆŗsica del Liceu'),
(121871, 'https://ror.org/054b0mb55', 'en', 1, 'https://ror.org/054b0mb55 Dr. Ambedkar Institute of Hotel Management, Catering, and Nutrition'),
(121872, 'https://ror.org/000ghw467', 'en', 1, 'https://ror.org/000ghw467 Sir Mark Mitchell Research Foundation'),
(121873, 'https://ror.org/05f71q776', 'en', 1, 'https://ror.org/05f71q776 K J Somaiya Medical College'),
(121874, 'https://ror.org/02gkh1e90', 'en', 1, 'https://ror.org/02gkh1e90 Australian National Herbarium'),
(121875, 'https://ror.org/04xsj2p07', 'fr', 1, 'https://ror.org/04xsj2p07 Observatoire astronomique de Strasbourg'),
(121876, 'https://ror.org/02y3mfk39', 'fr', 1, 'https://ror.org/02y3mfk39 Biologie des oiseaux et aviculture'),
(121877, 'https://ror.org/01dfzdy43', 'fr', 1, 'https://ror.org/01dfzdy43 Laboratoire d''Ingénierie des Systèmes Complexes');
INSERT INTO `rors` VALUES
(121878, 'https://ror.org/02zbsy782', 'fr', 1, 'https://ror.org/02zbsy782 Zoologie forestiĆØre'),
(121879, 'https://ror.org/01t60dp04', 'fr', 1, 'https://ror.org/01t60dp04 Services dƩconcentrƩs d''appui Ơ la recherche Occitanie-Toulouse'),
(121880, 'https://ror.org/039bjqg32', 'en', 1, 'https://ror.org/039bjqg32 University of Warsaw Uniwersytet Warszawski'),
(121881, 'https://ror.org/03bpsvx03', 'en', 1, 'https://ror.org/03bpsvx03 Institute of Forest Genetics and Tree Breeding'),
(121882, 'https://ror.org/026fpwg41', 'fr', 1, 'https://ror.org/026fpwg41 Chronobiotron'),
(121883, 'https://ror.org/02vb4k656', 'fr', 1, 'https://ror.org/02vb4k656 Ɖcole supĆ©rieure des agricultures'),
(121884, 'https://ror.org/03820wq39', 'fr', 1, 'https://ror.org/03820wq39 Laboratoire interdisciplinaire en Ʃtudes culturelles'),
(121885, 'https://ror.org/05dd6kb95', 'fr', 1, 'https://ror.org/05dd6kb95 Neuroscience et Psychiatrie Translationnelle de Strasbourg Strasbourg Translational Neuroscience and Psychiatry'),
(121886, 'https://ror.org/044xw2q20', 'fr', 1, 'https://ror.org/044xw2q20 Federal Public Service Economy, SMEs, Self-employed and Energy Federale Overheidsdienst Economie, K.M.O., Middenstand en Energie Service Public FĆ©dĆ©ral Ɖconomie Service Public FĆ©dĆ©ral Ɖconomie, PME, Classes Moyennes et Ɖnergie'),
(121887, 'https://ror.org/02xssje65', 'fr', 1, 'https://ror.org/02xssje65 Commissions nationales des unitƩs expƩrimentales et des outils collectifs'),
(121888, 'https://ror.org/003kv9x13', 'en', 1, 'https://ror.org/003kv9x13 HSE Science and Research Centre'),
(121889, 'https://ror.org/055pd2p26', 'fr', 1, 'https://ror.org/055pd2p26 Institut FranƧais d''ArchĆ©ologie Orientale Institut franƧais d''archĆ©ologie orientale المعهد Ų§Ł„ŁŲ±Ł†Ų³ŁŠ للآثار Ų§Ł„Ų“Ų±Ł‚ŁŠŲ©'),
(121890, 'https://ror.org/004fqke94', 'en', 1, 'https://ror.org/004fqke94 Government Kamla Raja Girls Post Graduate Autonomous College ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤•ą¤®ą¤²ą¤¾ą¤°ą¤¾ą¤œą¤¾ ą¤•ą¤Øą„ą¤Æą¤¾ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤øą„ą¤µą¤¶ą¤¾ą¤øą„€ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121891, 'https://ror.org/02d9zm307', 'en', 1, 'https://ror.org/02d9zm307 Charles P. Taft Research Center'),
(121892, 'https://ror.org/04g7tnd56', 'en', 1, 'https://ror.org/04g7tnd56 Kavayitri Bahinabai Chaudhari North Maharashtra University ą¤•ą¤µą¤Æą¤æą¤¤ą„ą¤°ą„€ बहिणाबाई ą¤šą„Œą¤§ą¤°ą„€ ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(121893, 'https://ror.org/02kv83127', 'es', 1, 'https://ror.org/02kv83127 Universidad del RĆ­o'),
(121894, 'https://ror.org/024gze744', 'pt', 1, 'https://ror.org/024gze744 Lepidus (Brazil)'),
(121895, 'https://ror.org/02xz2v383', 'en', 1, 'https://ror.org/02xz2v383 National Council of Teachers of Mathematics'),
(121896, 'https://ror.org/02k1z0232', 'fr', 1, 'https://ror.org/02k1z0232 Services dƩconcentrƩs d''appui Ơ la recherche Corse'),
(121897, 'https://ror.org/02kbmgc12', 'fr', 1, 'https://ror.org/02kbmgc12 AgroParisTech Paris Institute of Technology for Life, Food and Environmental Sciences'),
(121898, 'https://ror.org/01ntfcg22', 'en', 1, 'https://ror.org/01ntfcg22 JEC Eye Hospitals and Clinics'),
(121899, 'https://ror.org/03s9sdb59', 'en', 1, 'https://ror.org/03s9sdb59 Nanda Nath Saikia College Nanda Nath Saikia College, Titabar'),
(121900, 'https://ror.org/04580xm45', 'fr', 1, 'https://ror.org/04580xm45 Unité Expérimentale Entomologie et Forêt Méditerranéenne'),
(121901, 'https://ror.org/01rt8sg48', 'my', 1, 'https://ror.org/01rt8sg48 Politeknik Mersing Johor'),
(121902, 'https://ror.org/0479ya967', 'en', 1, 'https://ror.org/0479ya967 Can Tho Central General Hospital'),
(121903, 'https://ror.org/01t33qq42', 'en', 1, 'https://ror.org/01t33qq42 Arkansas Children''s Hospital'),
(121904, 'https://ror.org/02rnpdm14', 'fr', 1, 'https://ror.org/02rnpdm14 Configurations littƩraires'),
(121905, 'https://ror.org/01s3fs709', 'fr', 1, 'https://ror.org/01s3fs709 French Higher Education Institution in Agriculture, Food, Horticultural and Landscape Sciences Institut Agro Rennes-Angers'),
(121906, 'https://ror.org/04jsz6e67', 'en', 1, 'https://ror.org/04jsz6e67 Dutch Research Council Nederlandse Organisatie voor Wetenschappelijk Onderzoek'),
(121907, 'https://ror.org/041yk0b68', 'fr', 1, 'https://ror.org/041yk0b68 Interactions hÓtes-agents pathogènes'),
(121908, 'https://ror.org/03cjf4s20', 'en', 1, 'https://ror.org/03cjf4s20 Informatics Europe'),
(121909, 'https://ror.org/01m71e459', 'fr', 1, 'https://ror.org/01m71e459 Laboratoire de Neurosciences Cognitives et Adaptatives'),
(121910, 'https://ror.org/02ykdz073', 'en', 1, 'https://ror.org/02ykdz073 Kwame Nkrumah University'),
(121911, 'https://ror.org/000gv2s07', 'en', 1, 'https://ror.org/000gv2s07 Chocolate Cloud ApS (Denmark)'),
(121912, 'https://ror.org/04mczx267', 'en', 1, 'https://ror.org/04mczx267 National Academy of Sciences of Armenia Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ£Õ«ÕæÕøÖ‚Õ©ÕµÕøÖ‚Õ¶Õ¶Õ„Ö€Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ”ÕÆÕ”Õ¤Õ„Õ“Õ«Õ”'),
(121913, 'https://ror.org/04aqtsh50', 'fr', 1, 'https://ror.org/04aqtsh50 Centre Clermont-Auvergne-RhƓne-Alpes'),
(121914, 'https://ror.org/034q1za58', 'en', 1, 'https://ror.org/034q1za58 Guru Gobind Singh Indraprastha University اندارپراسٹہ Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ ą¤—ą„ą¤°ą„ ą¤—ą„‹ą¤¬ą¤æą¤Øą„ą¤¦ सिंह ą¤‡ą¤Øą„ą¤¦ą„ą¤°ą¤Ŗą„ą¤°ą¤øą„ą¤„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121915, 'https://ror.org/04a9tmd77', 'en', 1, 'https://ror.org/04a9tmd77 Icahn School of Medicine at Mount Sinai'),
(121916, 'https://ror.org/006fhby04', 'fr', 1, 'https://ror.org/006fhby04 Animal, Santé, Territoires, Risques et Ecosystèmes'),
(121917, 'https://ror.org/00fkqwx76', 'de', 1, 'https://ror.org/00fkqwx76 HAW Hamburg Hochschule für Angewandte Wissenschaften Hamburg Hochschule für Angewandte Wissenschaften Hamburg (HAW Hamburg)'),
(121918, 'https://ror.org/0288g4p72', 'fr', 1, 'https://ror.org/0288g4p72 Maison des Sciences Humaines et Sociales de Poitiers'),
(121919, 'https://ror.org/001symg34', 'en', 1, 'https://ror.org/001symg34 Staffordshire Police'),
(121920, 'https://ror.org/043t7b640', 'en', 1, 'https://ror.org/043t7b640 Freemasons Foundation Centre for Men''s Health'),
(121921, 'https://ror.org/05kpkpg04', 'fr', 1, 'https://ror.org/05kpkpg04 Centre de CoopƩration Internationale en Recherche Agronomique pour le DƩveloppement French Agricultural Research Centre for International Development'),
(121922, 'https://ror.org/02x9aqt48', 'en', 1, 'https://ror.org/02x9aqt48 Regional Wildlife Science Collaborative'),
(121923, 'https://ror.org/01mmdyx19', 'en', 1, 'https://ror.org/01mmdyx19 Institute of Sociology of National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ соціології ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(121924, 'https://ror.org/01xn54007', 'en', 1, 'https://ror.org/01xn54007 World Health Organization - Sierra Leone'),
(121925, 'https://ror.org/05yeh3g67', 'en', 1, 'https://ror.org/05yeh3g67 University of Calicut UniversitĆ© de calicut ą®•ąÆ‹ą®“ą®æą®•ąÆą®•ąÆ‹ą®ŸąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“•ą“¾ą“²ą“æą“•ąµą“•ą“±ąµą“±ąµ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(121926, 'https://ror.org/0322z4214', 'en', 1, 'https://ror.org/0322z4214 Bacha Khan College of Dentistry'),
(121927, 'https://ror.org/04hrbdg71', 'fr', 1, 'https://ror.org/04hrbdg71 Centre de Corse'),
(121928, 'https://ror.org/011qaqy29', 'fr', 1, 'https://ror.org/011qaqy29 UnitƩ d''Appui MutualisƩ de Nouzilly'),
(121929, 'https://ror.org/04qkde388', 'en', 1, 'https://ror.org/04qkde388 Guangdong South China High-tech Co å¹æäøœåŽå—ę°“ē”µé«˜ę–°ęŠ€ęœÆå¼€å‘ęœ‰é™å…¬åø'),
(121930, 'https://ror.org/04p5dqz51', 'bs', 1, 'https://ror.org/04p5dqz51 Kantonalni zavod za zaÅ”titu kulturno-historijskog i prirodnog naslijeđa Sarajevo'),
(121931, 'https://ror.org/001040111', 'en', 1, 'https://ror.org/001040111 National Academy of Agrarian Sciences of Ukraine ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠ ŠŠšŠŠ”Š•ŠœŠ†ŠÆ ŠŠ“Š ŠŠ ŠŠ˜Š„ ŠŠŠ£Šš Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(121932, 'https://ror.org/026qww519', 'es', 1, 'https://ror.org/026qww519 Centro de Estudios Filosóficos y Teológicos'),
(121933, 'https://ror.org/04b19wh49', 'no_lang_code', 1, 'https://ror.org/04b19wh49 IMT Srl IMT Srl (Italy) Ingegneria Marketing Tecnologia'),
(121934, 'https://ror.org/0560r7z23', 'en', 1, 'https://ror.org/0560r7z23 Ukrainian Research Institute of Archival Affairs and Records Keeping Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ архівної справи та Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚Š¾Š·Š½Š°Š²ŃŃ‚Š²Š°'),
(121935, 'https://ror.org/03xmjtz19', 'fr', 1, 'https://ror.org/03xmjtz19 Architecture et RƩactivitƩ de l''arN'),
(121936, 'https://ror.org/025mhd687', 'fr', 1, 'https://ror.org/025mhd687 Institut des Neurosciences Cellulaires et IntƩgratives Institute of Cellular and Integrative Neurosciences'),
(121937, 'https://ror.org/00y7p5s85', 'fr', 1, 'https://ror.org/00y7p5s85 Centre de recherche sur les stratƩgies Ʃconomiques'),
(121938, 'https://ror.org/00s2q3495', 'en', 1, 'https://ror.org/00s2q3495 Great Smoky Mountains National Park Parque nacional de las Grandes MontaƱas Humeantes'),
(121939, 'https://ror.org/0358k0g48', 'en', 1, 'https://ror.org/0358k0g48 Akademia Muzyczna im. Krzysztofa Pendereckiego w Krakowie The Krzysztof Penderecki Academy of Music in Krakow'),
(121940, 'https://ror.org/03vvhya80', 'en', 1, 'https://ror.org/03vvhya80 Arkansas Children''s Nutrition Center'),
(121941, 'https://ror.org/00nn2f254', 'en', 1, 'https://ror.org/00nn2f254 Injibara University'),
(121942, 'https://ror.org/0580cnp32', 'fr', 1, 'https://ror.org/0580cnp32 UnitƩ ExpƩrimentale du Pin'),
(121943, 'https://ror.org/00g229b55', 'pt', 1, 'https://ror.org/00g229b55 TelessaĆŗdeRS'),
(121944, 'https://ror.org/00ctkr560', 'fr', 1, 'https://ror.org/00ctkr560 UnitƩ ExpƩrimentale Avicole'),
(121945, 'https://ror.org/01aprym07', 'fr', 1, 'https://ror.org/01aprym07 UnitƩ ExpƩrimentale Fourrages, Ruminants, Environnement'),
(121946, 'https://ror.org/016z8nq35', 'en', 1, 'https://ror.org/016z8nq35 MATHRISK: Mathematical Risk handling'),
(121947, 'https://ror.org/03nj8sb85', 'es', 1, 'https://ror.org/03nj8sb85 Instituto de Geociencias'),
(121948, 'https://ror.org/055yg0521', 'en', 0, 'https://ror.org/055yg0521 University of Maryland School of Medicine'),
(121949, 'https://ror.org/01tvv6z28', 'en', 1, 'https://ror.org/01tvv6z28 Kancelaria Patentowa Łukaszyk Łukaszyk Patent Attorneys'),
(121950, 'https://ror.org/01jny7426', 'en', 1, 'https://ror.org/01jny7426 Indian Institute of Petroleum and Energy ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„‡ą¤Ÿą„ą¤°ą„‹ą¤²ą¤æą¤Æą¤® ą¤ą¤µą¤‚ ą¤Šą¤°ą„ą¤œą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(121951, 'https://ror.org/04n2vwk08', 'fr', 1, 'https://ror.org/04n2vwk08 Laboratoire Interuniversitaire des Sciences de l''Education et de la Communication'),
(121952, 'https://ror.org/03atqv648', 'fr', 1, 'https://ror.org/03atqv648 Physique et Physiologie IntƩgratives de l''Arbre en Environnement Fluctuant'),
(121953, 'https://ror.org/00djqrp75', 'fr', 1, 'https://ror.org/00djqrp75 DSI-Solutions d''Infrastructures Informatiques et Services'),
(121954, 'https://ror.org/05gkf7m32', 'fr', 1, 'https://ror.org/05gkf7m32 PÓle de gestion en appui auprès des unités Grand Est-Nancy'),
(121955, 'https://ror.org/05fm1bt30', 'en', 1, 'https://ror.org/05fm1bt30 S.P. Timoshenko Institute of Mechanics'),
(121956, 'https://ror.org/05p1yvy04', 'fr', 1, 'https://ror.org/05p1yvy04 AquapƓle'),
(121957, 'https://ror.org/03hy7gn55', 'es', 1, 'https://ror.org/03hy7gn55 Instituto de MontaƱas The Mountain Institute'),
(121958, 'https://ror.org/05dbe0v79', 'pt', 1, 'https://ror.org/05dbe0v79 Comissão Executiva do Plano da Lavoura Cacaueira Comissão Executiva do Plano da Lavoura Cacaueira - Ceplac'),
(121959, 'https://ror.org/054rmqn12', 'id', 1, 'https://ror.org/054rmqn12 Sekolah Tinggi Agama Islam Sangatta'),
(121960, 'https://ror.org/046sqxa62', 'ca', 1, 'https://ror.org/046sqxa62 Hospital Universitari de Tortosa Verge de la Cinta'),
(121961, 'https://ror.org/01wcdkp35', 'fr', 1, 'https://ror.org/01wcdkp35 Higher Institute of Nursing and Health Professions, Casablanca Institut Supérieur des Professions Infirmières et Techniques de Santé de Casablanca'),
(121962, 'https://ror.org/0265yxm37', 'en', 1, 'https://ror.org/0265yxm37 Association for Socially Applicable Research'),
(121963, 'https://ror.org/017jzt222', 'es', 1, 'https://ror.org/017jzt222 Hospital El Carmen Dr. Luis ValentĆ­n Ferrada'),
(121964, 'https://ror.org/00h25hq08', 'ca', 1, 'https://ror.org/00h25hq08 Universitat Carlemany'),
(121965, 'https://ror.org/01yf19s49', 'en', 1, 'https://ror.org/01yf19s49 Korea Electrical Safety Corporation ķ•œźµ­ģ „źø°ģ•ˆģ „ź³µģ‚¬'),
(121966, 'https://ror.org/033p9g875', 'fr', 1, 'https://ror.org/033p9g875 Institut National Polytechnique de Toulouse National Polytechnic Institute of Toulouse'),
(121967, 'https://ror.org/0334tmt82', 'fr', 1, 'https://ror.org/0334tmt82 Centre d''Ʃconomie et de sociologie appliquƩes Ơ l''agriculture et aux espaces ruraux'),
(121968, 'https://ror.org/04jkjgd19', 'en', 1, 'https://ror.org/04jkjgd19 Helpman Development Institute'),
(121969, 'https://ror.org/05p3fde54', 'en', 1, 'https://ror.org/05p3fde54 Australian Tree Seed Centre'),
(121970, 'https://ror.org/00mg8nf58', 'fr', 1, 'https://ror.org/00mg8nf58 Physiologie, Environnement et Génétique pour l''Animal et les Systèmes d''Elevage Physiology, Environment, and Genetics for the Animal and Livestock Systems'),
(121971, 'https://ror.org/04kh7mx79', 'en', 0, 'https://ror.org/04kh7mx79 Polytecnic in Požega VeleučiliŔte u Požegi'),
(121972, 'https://ror.org/056qkkx56', 'en', 1, 'https://ror.org/056qkkx56 Huanghe Jiaotong University'),
(121973, 'https://ror.org/0566a1e41', 'en', 1, 'https://ror.org/0566a1e41 Government College of Engineering, Kalahandi ସରକାରୀ ą¬¬ą­ˆą¬·ą­Ÿą¬æą¬• ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ, ą¬•ą¬³ą¬¾ą¬¹ą¬¾ą¬£ą­ą¬”ą¬æ'),
(121974, 'https://ror.org/01g1ay705', 'fr', 1, 'https://ror.org/01g1ay705 Abeilles, Paysages, Interactions et SystĆØmes de culture'),
(121975, 'https://ror.org/0549hdw45', 'en', 1, 'https://ror.org/0549hdw45 Abbottabad University of Science and Technology'),
(121976, 'https://ror.org/02pc3jd49', 'en', 1, 'https://ror.org/02pc3jd49 Łukasiewicz Research Network - Institute of Microelectronics and Photonics'),
(121977, 'https://ror.org/04pp8hn57', 'en', 1, 'https://ror.org/04pp8hn57 Universiteit Utrecht Utrecht University'),
(121978, 'https://ror.org/05bn3m307', 'fr', 1, 'https://ror.org/05bn3m307 University of Technology of Belfort-MontbƩliard UniversitƩ de technologie de belfort-montbƩliard'),
(121979, 'https://ror.org/01h8pf755', 'fr', 1, 'https://ror.org/01h8pf755 Institut National des Sciences AppliquƩes de Toulouse Toulouse National Institute for Applied Sciences'),
(121980, 'https://ror.org/05t3vnt47', 'en', 1, 'https://ror.org/05t3vnt47 Kenya Marine and Fisheries Research Institute'),
(121981, 'https://ror.org/04cnktn59', 'en', 1, 'https://ror.org/04cnktn59 InLife Institute of Animal Reproduction and Food Research, Polish Academy of Sciences InLife Instytut Rozrodu Zwierząt i Badań Żywności Polskiej Akademii Nauk'),
(121982, 'https://ror.org/03e4g9892', 'en', 1, 'https://ror.org/03e4g9892 Makawanpur Multiple Campus'),
(121983, 'https://ror.org/00b4q1853', 'fr', 1, 'https://ror.org/00b4q1853 Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes'),
(121984, 'https://ror.org/0530qwm02', 'fr', 1, 'https://ror.org/0530qwm02 Institut Terre & Environnement de Strasbourg'),
(121985, 'https://ror.org/009wryk55', 'en', 1, 'https://ror.org/009wryk55 Czech Academy of Sciences, Institute of Hydrology Hydrologický Ćŗstav AV ČR Hydrologický Ćŗstav AV ČR, v. v. i. Hydrologický Ćŗstav AV ČR, v. v. i., veřejnĆ” výzkumnĆ” instituce Institute of Hydrology of the Czech Academy of Sciences'),
(121986, 'https://ror.org/01f7nea92', 'de', 1, 'https://ror.org/01f7nea92 Institut für Angewandte Informatik (InfAI) e. V.'),
(121987, 'https://ror.org/00ndgn179', 'fr', 1, 'https://ror.org/00ndgn179 Hydrosystèmes continentaux anthropisés : ressources, risques, restauration'),
(121988, 'https://ror.org/04k8k6n84', 'fr', 1, 'https://ror.org/04k8k6n84 University of Upper Alsace UniversitƩ de Haute-Alsace'),
(121989, 'https://ror.org/00wb8n271', 'de', 1, 'https://ror.org/00wb8n271 Private PƤdagogische Hochschule der Diƶzese Lin Private PƤdagogische Hochschule der Diƶzese Linz Private University of Education, Diocese Linz'),
(121990, 'https://ror.org/03vxmn596', 'fr', 1, 'https://ror.org/03vxmn596 DƩpartement sciences pour l''action, les transitions, les territoires'),
(121991, 'https://ror.org/00v7te739', 'id', 1, 'https://ror.org/00v7te739 IAI Al-Muhammad Cepu Institut Agama Islam Al Muhammad Cepu'),
(121992, 'https://ror.org/05fd23b12', 'en', 1, 'https://ror.org/05fd23b12 Duchess International Hospital'),
(121993, 'https://ror.org/05mn98c95', 'de', 1, 'https://ror.org/05mn98c95 GridSAT Foundation GridSAT Stiftung'),
(121994, 'https://ror.org/04v9ayq15', 'fr', 1, 'https://ror.org/04v9ayq15 UnitƩ associƩe au dƩpartement biologie et amƩlioration des plantes'),
(121995, 'https://ror.org/035gnqw46', 'fr', 1, 'https://ror.org/035gnqw46 Services dƩconcentrƩs d''appui Ơ la recherche Ile-de-France-Versailles-Saclay'),
(121996, 'https://ror.org/03fkrcm40', 'fr', 1, 'https://ror.org/03fkrcm40 Centre Occitanie-Montpellier'),
(121997, '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Ć© المعاهد Ų§Ł„Ų¹Ł„ŁŠŲ§ للمهن Ų§Ł„ŲŖŁ…Ų±ŁŠŲ¶ŁŠŲ© ŁˆŲŖŁ‚Ł†ŁŠŲ§ŲŖ الصحة'),
(121998, 'https://ror.org/019qyxa09', 'fr', 1, 'https://ror.org/019qyxa09 Toulouse White Biotechnology'),
(121999, 'https://ror.org/03nb7az85', 'fr', 1, 'https://ror.org/03nb7az85 Institut de recherches CarrƩ de Malberg'),
(122000, 'https://ror.org/05kaaxy03', 'en', 1, 'https://ror.org/05kaaxy03 The Higher Institute of Engineering Technologies Benghazi'),
(122001, 'https://ror.org/01kjvnx77', 'fr', 1, 'https://ror.org/01kjvnx77 PlantAlliance'),
(122002, 'https://ror.org/04yww6g08', 'en', 1, 'https://ror.org/04yww6g08 Changsha Meteorological Radar Calibration Center é•æę²™ę°”č±”é›·č¾¾ę ‡ę ”äø­åæƒ'),
(122003, 'https://ror.org/03gmkya61', 'en', 1, 'https://ror.org/03gmkya61 Paris-Saclay Food and Bioproduct Engineering Research Unit'),
(122004, 'https://ror.org/001fxzj49', 'en', 1, 'https://ror.org/001fxzj49 Baycrest Academy for Research and Education'),
(122005, 'https://ror.org/00ahd2963', 'en', 1, 'https://ror.org/00ahd2963 Mohamed Sathak AJ College of Physiotherapy ą®®ąÆŠą®¹ą®®ą®ŸąÆ ą®šą®¤ą®•ąÆ ą®…ą®œąÆ ą®•ą®¾ą®²ąÆ‡ą®œąÆ ą®†ą®ŖąÆ ą®Ŗą®æą®šą®æą®ÆąÆ‹ą®¤ąÆ†ą®°ą®Ŗą®æ'),
(122006, 'https://ror.org/01z4rhy69', 'en', 1, 'https://ror.org/01z4rhy69 7th Geological Brigade of Sichuan å››å·ēœē¬¬äøƒåœ°č“Øå¤§é˜Ÿ'),
(122007, 'https://ror.org/03z2w1e36', 'nl', 1, 'https://ror.org/03z2w1e36 Liantis'),
(122008, 'https://ror.org/01y7pzx08', 'en', 1, 'https://ror.org/01y7pzx08 Blizard Institute'),
(122009, 'https://ror.org/04f6qd925', 'fr', 1, 'https://ror.org/04f6qd925 Biologie intégrée pour la valorisation de la diversité des arbres et de la forêt'),
(122010, 'https://ror.org/02x1q2477', 'en', 1, 'https://ror.org/02x1q2477 Max Planck Institute for Behavioral Economics Max-Planck-Institut für Verhaltensökonomik'),
(122011, 'https://ror.org/010e21634', 'fr', 1, 'https://ror.org/010e21634 MƩdecine Cardiovasculaire Translationnelle'),
(122012, 'https://ror.org/01hdvkj68', 'en', 1, 'https://ror.org/01hdvkj68 Saint Paul''s School of Nursing'),
(122013, 'https://ror.org/011q0wp29', 'es', 1, 'https://ror.org/011q0wp29 Instituto de Historia del Arte Argentino y Latinoamericano ā€œLuis Ordazā€'),
(122014, 'https://ror.org/04etk8241', 'fr', 1, 'https://ror.org/04etk8241 Ressources gƩnomique-info'),
(122015, 'https://ror.org/057hv3t60', 'en', 1, 'https://ror.org/057hv3t60 Arkansas Children’s Foundation'),
(122016, 'https://ror.org/02cbapb21', 'fr', 1, 'https://ror.org/02cbapb21 Centre Ǝle-de-France - Versailles-Grignon'),
(122017, 'https://ror.org/04zsc3j83', 'en', 1, 'https://ror.org/04zsc3j83 Ministry of Culture and Tourism T.C. Kültür ve Turizm Bakanlığı Türkiye Cumhuriyeti Kültür ve Turizm Bakanlığı'),
(122018, 'https://ror.org/026jydx17', 'fr', 1, 'https://ror.org/026jydx17 Observatoire des Programmes Communautaires de DƩveloppement Rural'),
(122019, 'https://ror.org/04w8f9k94', 'fr', 1, 'https://ror.org/04w8f9k94 Maison des sciences humaines et environnementales Claude Nicolas Ledoux'),
(122020, 'https://ror.org/05gsk4b23', 'es', 1, 'https://ror.org/05gsk4b23 Instituto de Investigaciones de Estudios de GƩnero'),
(122021, 'https://ror.org/02c7t1426', 'en', 1, 'https://ror.org/02c7t1426 Odisha Biodiversity Board'),
(122022, 'https://ror.org/05y02w068', 'id', 1, 'https://ror.org/05y02w068 Politeknik Pariwisata Lombok'),
(122023, 'https://ror.org/00xyf5s54', 'fr', 1, 'https://ror.org/00xyf5s54 Services dƩconcentrƩs d''appui Ơ la recherche Nouvelle-Aquitaine-Bordeaux'),
(122024, 'https://ror.org/037vdeb02', 'fr', 1, 'https://ror.org/037vdeb02 Centre Alpin de Recherche sur les Réseaux Trophiques et les Ecosystèmes Limniques'),
(122025, 'https://ror.org/01f3jhd65', 'en', 1, 'https://ror.org/01f3jhd65 Omico'),
(122026, 'https://ror.org/03vwtk926', 'fr', 1, 'https://ror.org/03vwtk926 Plateforme Expérimentale sur le végétal et les agrosYstèmes Innovants en milieu tropical'),
(122027, 'https://ror.org/05pan6b44', 'fr', 1, 'https://ror.org/05pan6b44 Services dƩconcentrƩs d''appui Ơ la recherche Pays de la Loire'),
(122028, 'https://ror.org/03kwrfk72', 'en', 1, 'https://ror.org/03kwrfk72 Women''s and Children''s Hospital'),
(122029, 'https://ror.org/02z3zn824', 'en', 1, 'https://ror.org/02z3zn824 Netherlands Proteomics Centre'),
(122030, 'https://ror.org/00qnmxq60', 'es', 1, 'https://ror.org/00qnmxq60 Hospital de La Ribera'),
(122031, 'https://ror.org/012a91z28', 'es', 1, 'https://ror.org/012a91z28 Universidad de Zaragoza Universitat de Saragossa University of Zaragoza Zaragozako Unibertsitatea'),
(122032, 'https://ror.org/05tyne317', 'en', 1, 'https://ror.org/05tyne317 Ministry of Science and Higher Education of the Republic of Kazakhstan ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ науки Šø Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Республики ŠšŠ°Š·Š°Ń…стан ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ғылым және жоғары білім министрлігі'),
(122033, 'https://ror.org/03r616628', 'en', 1, 'https://ror.org/03r616628 Majuli University of Culture'),
(122034, 'https://ror.org/059yv9j77', 'en', 1, 'https://ror.org/059yv9j77 Federal State Budgetary Institution "Centre for Strategic Planning and Management of Biomedical Health Risks" of the Federal Medical and Biological Agency Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Центр стратегического ŠæŠ»Š°Š½ŠøŃ€Š¾Š²Š°Š½ŠøŃ Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ меГико-биологическими рисками Š·Š“Š¾Ń€Š¾Š²ŃŒŃŽĀ» Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(122035, 'https://ror.org/04kph4f16', 'fr', 1, 'https://ror.org/04kph4f16 GƩnome et Transcriptome - Plateforme GƩnomique'),
(122036, 'https://ror.org/03m06rq97', 'fr', 1, 'https://ror.org/03m06rq97 UnitƩ ExpƩrimentale d''AgroEcologie et de PhƩnotypage des Cultures'),
(122037, 'https://ror.org/03qxqqy94', 'en', 1, 'https://ror.org/03qxqqy94 Kazakh National University of Water Management and Irrigation'),
(122038, 'https://ror.org/02jm89840', 'fr', 1, 'https://ror.org/02jm89840 Maison Interuniversitaire des Sciences de l''Homme'),
(122039, 'https://ror.org/03qge6j93', 'fr', 1, 'https://ror.org/03qge6j93 Biologie et pharmacologie des plaquettes sanguines : hƩmostase, thrombose, transfusion'),
(122040, 'https://ror.org/005t9n460', 'no_lang_code', 1, 'https://ror.org/005t9n460 Saxion'),
(122041, 'https://ror.org/04v5da817', 'de', 1, 'https://ror.org/04v5da817 Bethanien Krankenhaus Moers'),
(122042, 'https://ror.org/05kn58215', 'fr', 1, 'https://ror.org/05kn58215 Services dƩconcentrƩs d''appui Ơ la recherche Val de Loire'),
(122043, 'https://ror.org/00n3g8q42', 'en', 1, 'https://ror.org/00n3g8q42 The University of Newcastle Research Associates The University of Newcastle Research Associates Limited'),
(122044, 'https://ror.org/00067hx91', 'en', 1, 'https://ror.org/00067hx91 Health Sciences Research Foundation ФонГ Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ наук про Š·Š“Š¾Ń€Š¾Š²Ź¼Ń'),
(122045, 'https://ror.org/00vfxg105', 'fr', 1, 'https://ror.org/00vfxg105 SantƩ et AgroƩcologie du Vignoble'),
(122046, 'https://ror.org/04vhxp922', 'en', 1, 'https://ror.org/04vhxp922 Sandip Foundation'),
(122047, 'https://ror.org/0022qva30', 'en', 1, 'https://ror.org/0022qva30 Escuela de Medicina de Ponce Ponce Health Sciences University'),
(122048, 'https://ror.org/00ecsta29', 'tr', 1, 'https://ror.org/00ecsta29 Balıkesir Atatürk City Hospital'),
(122049, 'https://ror.org/054v4yq51', 'es', 1, 'https://ror.org/054v4yq51 Universidad de Londres'),
(122050, 'https://ror.org/02axh6w22', 'fr', 1, 'https://ror.org/02axh6w22 Direction pour la Science Ouverte'),
(122051, 'https://ror.org/044sxzm68', 'de', 1, 'https://ror.org/044sxzm68 Campus Institute Data Science (CIDAS) Campus-Institut Data Science (CIDAS)'),
(122052, 'https://ror.org/04ztc2y03', 'fr', 1, 'https://ror.org/04ztc2y03 Sciences de l''animal de Jouy'),
(122053, 'https://ror.org/042ts9068', 'en', 1, 'https://ror.org/042ts9068 Eastern European Institute of Theology Š”Ń…Ń–Š“Š½Š¾Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теології Š”Ń…Ń–Š“Š½Š¾Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теології (ДІТ)'),
(122054, 'https://ror.org/011hcqy60', 'en', 1, 'https://ror.org/011hcqy60 Fundamental Scientific Library Õ€Ō³Ō³'),
(122055, 'https://ror.org/05vtbcw65', 'no_lang_code', 1, 'https://ror.org/05vtbcw65 Pacific Fusion Pacific Fusion (United States)'),
(122056, 'https://ror.org/028p57v76', 'en', 1, 'https://ror.org/028p57v76 Sana''a Community College ŁƒŁ„ŁŠŲ© المجتمع صنعاؔ'),
(122057, 'https://ror.org/01j422d23', 'en', 1, 'https://ror.org/01j422d23 Search for Truth and Return to Science'),
(122058, 'https://ror.org/00nq1dk77', 'fr', 1, 'https://ror.org/00nq1dk77 UnitƩ ExpƩrimentale de Pech Rouge'),
(122059, 'https://ror.org/00qpgta22', 'fr', 1, 'https://ror.org/00qpgta22 UnitƩ ExpƩrimentale Arboricole'),
(122060, 'https://ror.org/00eae9z71', 'en', 1, 'https://ror.org/00eae9z71 University of Newcastle Australia'),
(122061, 'https://ror.org/00332tv21', 'fr', 1, 'https://ror.org/00332tv21 Unité Expérimentale Systèmes d''Elevage de Ruminants de Moyenne Montagne'),
(122062, 'https://ror.org/025z0t847', 'fr', 1, 'https://ror.org/025z0t847 UnitƩ ExpƩrimentale Physiologie et PhƩnotypage des Porcs'),
(122063, 'https://ror.org/051c2h645', 'fr', 1, 'https://ror.org/051c2h645 Optimisation des procƩdƩs en agriculture, agroalimentaire et environnement'),
(122064, 'https://ror.org/03p371w23', 'fr', 1, 'https://ror.org/03p371w23 Systèmes d''Elevage Méditerranéens et Tropicaux - Laboratoire de Recherche sur le Développement de l''Elevage'),
(122065, 'https://ror.org/00sy8z779', 'en', 1, 'https://ror.org/00sy8z779 Paras HMRI Hospital, Patna'),
(122066, 'https://ror.org/01f526e35', 'id', 1, 'https://ror.org/01f526e35 Universitas Siber Muhammadiyah'),
(122067, 'https://ror.org/04247y265', 'fr', 1, 'https://ror.org/04247y265 Unité de Recherche Pluridisciplinaire Prairies et Plantes Fourragères'),
(122068, 'https://ror.org/04bzpg960', 'en', 1, 'https://ror.org/04bzpg960 Canine Cancer Alliance'),
(122069, 'https://ror.org/016cx2z26', 'fr', 1, 'https://ror.org/016cx2z26 Centre de recherches juridiques de l''UniversitƩ de Franche-ComtƩ'),
(122070, 'https://ror.org/03arban76', 'fr', 1, 'https://ror.org/03arban76 UnitƩ ExpƩrimentale de La Fage'),
(122071, 'https://ror.org/01jm8fn98', 'fr', 1, 'https://ror.org/01jm8fn98 Institut de Biologie MolƩculaire des Plantes'),
(122072, 'https://ror.org/029m96t80', 'fr', 1, 'https://ror.org/029m96t80 Ministère de l''Agriculture et de la Souveraineté alimentaire Ministère de l''Agriculture, de l''Agroalimentaire et de la Forêt'),
(122073, 'https://ror.org/02w4exq36', 'fr', 1, 'https://ror.org/02w4exq36 AmƩlioration GƩnƩtique et Adaptation des Plantes mƩditerranƩennes et tropicales Genetic Improvement and Adaptation of Mediterranean and Tropical Plants'),
(122074, 'https://ror.org/01x3qz996', 'fr', 1, 'https://ror.org/01x3qz996 Approches contemporaines de la crƩation et de la rƩflexion artistiques'),
(122075, 'https://ror.org/03kkchz41', 'en', 1, 'https://ror.org/03kkchz41 Enforcement, Leadership, and Management University'),
(122076, 'https://ror.org/007kmey10', 'fr', 1, 'https://ror.org/007kmey10 Génétique et Biomasse Forestières ORléans'),
(122077, 'https://ror.org/03phbpb09', 'fr', 1, 'https://ror.org/03phbpb09 ThƩologie protestante'),
(122078, 'https://ror.org/058t6p923', 'fr', 1, 'https://ror.org/058t6p923 Laboratoire Leprince-Ringuet'),
(122079, 'https://ror.org/020bd5z62', 'fr', 1, 'https://ror.org/020bd5z62 Groupe de recherche en agroalimentaire sur les produits et les procƩdƩs'),
(122080, 'https://ror.org/03sqwbf24', 'en', 1, 'https://ror.org/03sqwbf24 Al Jazeera University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬Ų²ŁŠŲ±Ų©'),
(122081, 'https://ror.org/01vxptj17', 'fr', 1, 'https://ror.org/01vxptj17 Centre d''Ɖtude des Pathologies Respiratoires'),
(122082, 'https://ror.org/00gjgmd14', 'fr', 1, 'https://ror.org/00gjgmd14 Arboriculture et maraƮchage mƩditerranƩens'),
(122083, 'https://ror.org/05q0ncs32', 'fr', 1, 'https://ror.org/05q0ncs32 Oniris Ɖcole nationale vĆ©tĆ©rinaire, agroalimentaire et de l''alimentation, Nantes-Atlantique'),
(122084, 'https://ror.org/00c9bwp03', 'pt', 1, 'https://ror.org/00c9bwp03 Laboratório de Bioarqueologia Translacional'),
(122085, 'https://ror.org/00pw91824', 'fr', 1, 'https://ror.org/00pw91824 Direction Communication'),
(122086, 'https://ror.org/01e7wth34', 'fr', 1, 'https://ror.org/01e7wth34 Département agronomie et sciences de l''environnement pour les agroécosystèmes'),
(122087, 'https://ror.org/025vp2923', 'fr', 1, 'https://ror.org/025vp2923 Institut Mines-TƩlƩcom Institut TƩlƩcom'),
(122088, 'https://ror.org/024409k12', 'fr', 1, 'https://ror.org/024409k12 Animal Health DƩpartement SantƩ Animale'),
(122089, 'https://ror.org/00pw7mk43', 'de', 1, 'https://ror.org/00pw7mk43 Armasuisse Bundesamt für Rüstung armasuisse Office fédéral de l''armement armasuisse Ufficio federale dell''armamento armasuisse'),
(122090, 'https://ror.org/041yk2d64', 'pt', 1, 'https://ror.org/041yk2d64 Federal University of Rio Grande do Sul Universidade Federal do Rio Grande do Sul'),
(122091, 'https://ror.org/0001h1y25', 'en', 1, 'https://ror.org/0001h1y25 Mary Lyon Centre at MRC Harwell'),
(122092, 'https://ror.org/004qcer42', 'en', 1, 'https://ror.org/004qcer42 Klarman Family Foundation'),
(122093, 'https://ror.org/02qf59x06', 'fr', 1, 'https://ror.org/02qf59x06 Direction de l''Evaluation'),
(122094, 'https://ror.org/04e7j6h03', 'en', 1, 'https://ror.org/04e7j6h03 MARKS Medical College Hospital & Dental Unit'),
(122095, 'https://ror.org/05mhfra93', 'es', 1, 'https://ror.org/05mhfra93 Universidad Tecnológica de la Zona Metropolitana del Valle de México'),
(122096, 'https://ror.org/00brzfd30', 'fr', 1, 'https://ror.org/00brzfd30 UnitƩ ExpƩrimentale Grandes Cultures Innovation Environnement - Picardie'),
(122097, 'https://ror.org/00tqkc910', 'en', 1, 'https://ror.org/00tqkc910 Green Hope University Jaamacadda Green Hope'),
(122098, 'https://ror.org/05h7ddb14', 'fr', 1, 'https://ror.org/05h7ddb14 Centre de Biologie pour la Gestion des Populations'),
(122099, 'https://ror.org/00648r680', 'fr', 1, 'https://ror.org/00648r680 Agroclim'),
(122100, 'https://ror.org/0495fxg12', 'fr', 1, 'https://ror.org/0495fxg12 Institut Pasteur Pasteur Institute'),
(122101, 'https://ror.org/00bhwwh42', 'fr', 1, 'https://ror.org/00bhwwh42 Societies, Actors and Governement in Europe SociƩtƩs, Acteurs, Gouvernement en Europe'),
(122102, 'https://ror.org/041j5k091', 'en', 1, 'https://ror.org/041j5k091 Center for Research in Islamic Sciences and Civilization Ł…Ų±ŁƒŲ² البحث في Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠŲ© ŁˆŲ§Ł„Ų­Ų¶Ų§Ų±Ų©'),
(122103, 'https://ror.org/0219pnb09', 'en', 1, 'https://ror.org/0219pnb09 New Cairo Academy'),
(122104, 'https://ror.org/05deqk823', 'fr', 1, 'https://ror.org/05deqk823 Laboratoire d''étude des Interactions Sol - Agrosystème - Hydrosystème'),
(122105, 'https://ror.org/03wkt5x30', 'fr', 1, 'https://ror.org/03wkt5x30 MusƩum national d''Histoire naturelle National Museum of Natural History'),
(122106, 'https://ror.org/04vt1b016', 'fr', 1, 'https://ror.org/04vt1b016 Unité Expérimentale Forêt Pierroton'),
(122107, 'https://ror.org/05em8ne27', 'fr', 1, 'https://ror.org/05em8ne27 Bureau d''Economie ThƩorique et AppliquƩe Bureau for Economic Theory and Applications'),
(122108, 'https://ror.org/05hdbs804', 'en', 1, 'https://ror.org/05hdbs804 Australian National Fish Collection'),
(122109, 'https://ror.org/057ed9a86', 'en', 1, 'https://ror.org/057ed9a86 Institute of Geology and Geochemistry of Combustible Minerals of National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геології і геохімії Š³Š¾Ń€ŃŽŃ‡ŠøŃ… копалин ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— АкаГемії ŠŠŠ£Šš України'),
(122110, 'https://ror.org/00zfnyv98', 'fr', 1, 'https://ror.org/00zfnyv98 DSI-Service Informatique InterRƩgional Ile et Hauts-de-France'),
(122111, 'https://ror.org/0457prt90', 'en', 1, 'https://ror.org/0457prt90 Institut za istraživanje migracija Institute for Migration Research'),
(122112, 'https://ror.org/02pthsx48', 'fr', 1, 'https://ror.org/02pthsx48 Ecologie et émergence des pathogènes transmis par les arthropodes'),
(122113, 'https://ror.org/044g6d731', 'en', 1, 'https://ror.org/044g6d731 Savitribai Phule Pune University UniversitĆ© de pune ą¤Ŗą„ą¤£ą„‡ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  புனே ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ಪುಣೆ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(122114, 'https://ror.org/02yx7zx43', 'de', 1, 'https://ror.org/02yx7zx43 Agentur für Innovation in der Cybersicherheit'),
(122115, 'https://ror.org/03597ek14', 'fr', 1, 'https://ror.org/03597ek14 Centre de droit privƩ fondamental'),
(122116, 'https://ror.org/04w1hbh79', 'en', 1, 'https://ror.org/04w1hbh79 Macedonian Heraldic Society'),
(122117, 'https://ror.org/01c6vgf77', 'fr', 1, 'https://ror.org/01c6vgf77 Laboratoire de Biologie Structurale de la Cellule'),
(122118, 'https://ror.org/02d898a89', 'fr', 1, 'https://ror.org/02d898a89 Biostatistique et processus spatiaux'),
(122119, 'https://ror.org/02zbcw461', 'fr', 1, 'https://ror.org/02zbcw461 DSI-Service Informatique InterRƩgional Nord Est'),
(122120, 'https://ror.org/03tjmef65', 'fr', 1, 'https://ror.org/03tjmef65 Direction Patrimoine et Immobilier'),
(122121, 'https://ror.org/01pwrek05', 'en', 1, 'https://ror.org/01pwrek05 European Hip Center Heuppraktijk'),
(122122, 'https://ror.org/0269vrw31', 'fr', 1, 'https://ror.org/0269vrw31 UnitƩ ExpƩrimentale Physiologie Animale'),
(122123, 'https://ror.org/044vf2k90', 'fr', 1, 'https://ror.org/044vf2k90 UnitƩ Mixte d''Appui aux Relations Internationales'),
(122124, 'https://ror.org/02jzrnr43', 'fr', 1, 'https://ror.org/02jzrnr43 Agence comptable'),
(122125, 'https://ror.org/02jg2r641', 'fr', 1, 'https://ror.org/02jg2r641 Mission Agrobiosciences'),
(122126, 'https://ror.org/02hwgty18', 'fr', 1, 'https://ror.org/02hwgty18 Institut de Recherche MathƩmatique AvancƩe'),
(122127, 'https://ror.org/04vctjx77', 'en', 1, 'https://ror.org/04vctjx77 MRC National Mouse Genetics Network'),
(122128, 'https://ror.org/03mek7157', 'pt', 1, 'https://ror.org/03mek7157 Centro de Formação, Treinamento e Aperfeiçoamento da Câmara dos Deputados'),
(122129, 'https://ror.org/04yn30r61', 'en', 1, 'https://ror.org/04yn30r61 APJ Abdul Kalam Technological University'),
(122130, 'https://ror.org/05nmn4b18', 'es', 1, 'https://ror.org/05nmn4b18 Museo EtnogrƔfico "Juan B. Ambrosetti"'),
(122131, 'https://ror.org/02prm7t27', 'fr', 1, 'https://ror.org/02prm7t27 Pathologie vƩgƩtale'),
(122132, 'https://ror.org/0268a2853', 'es', 1, 'https://ror.org/0268a2853 Instituto Nacional de Recursos HidrƔulicos'),
(122133, 'https://ror.org/04kx4jm74', 'fr', 1, 'https://ror.org/04kx4jm74 Services dƩconcentrƩs d''appui Ơ la recherche Grand Est-Nancy/Colmar'),
(122134, 'https://ror.org/016wpzq40', 'fr', 1, 'https://ror.org/016wpzq40 Laboratoire de GƩnƩtique MƩdicale Laboratory of Medical Genetics'),
(122135, 'https://ror.org/05q2v0y14', 'en', 1, 'https://ror.org/05q2v0y14 Western Australian Veterinary Emergency and Specialty'),
(122136, 'https://ror.org/05qdnns64', 'fr', 1, 'https://ror.org/05qdnns64 Applied Mathematics and Computer Science, from Genomes to the Environment MathƩmatiques et Informatique AppliquƩes du GƩnome Ơ l''Environnement'),
(122137, 'https://ror.org/03sfsak65', 'en', 1, 'https://ror.org/03sfsak65 Macau Millennium College 中脿創新學院'),
(122138, 'https://ror.org/01f80g185', 'en', 1, 'https://ror.org/01f80g185 Organisation Mondiale de la SantƩ Organizzazione Mondiale della SanitƠ Weltgesundheitsorganisation World Health Organization'),
(122139, 'https://ror.org/00fx7tj38', 'fr', 1, 'https://ror.org/00fx7tj38 UnitƩ ExpƩrimentale d''Epoisses'),
(122140, 'https://ror.org/01a0ez112', 'fr', 1, 'https://ror.org/01a0ez112 Laboratoire des écosystèmes et sociétés en montagne'),
(122141, 'https://ror.org/0111a5077', 'fr', 1, 'https://ror.org/0111a5077 Toxicologie Alimentaire'),
(122142, 'https://ror.org/05987a729', 'en', 1, 'https://ror.org/05987a729 Tashkent University of Information Technology Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Университет Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Ń‹Ń… Технологий'),
(122143, 'https://ror.org/01pz84n27', 'fr', 1, 'https://ror.org/01pz84n27 Plateforme tropicale Elevage pour l’agroĆ©cologie'),
(122144, 'https://ror.org/01ht9xm04', 'fr', 1, 'https://ror.org/01ht9xm04 Unité Expérimentale sur les Systèmes d''Elevage Aquacoles'),
(122145, 'https://ror.org/04wjt0v80', 'tr', 1, 'https://ror.org/04wjt0v80 TROAS Uluslararası Turizm Araştırmaları Derneği'),
(122146, 'https://ror.org/02khfkr46', 'en', 0, 'https://ror.org/02khfkr46 Institute of Electron Technology'),
(122147, 'https://ror.org/04s38rg66', 'no_lang_code', 1, 'https://ror.org/04s38rg66 Sygnature Discovery Sygnature Discovery (Canada)'),
(122148, 'https://ror.org/03srtnf24', 'pt', 1, 'https://ror.org/03srtnf24 Federal University of CearĆ” Universidade Federal do CearĆ”'),
(122149, 'https://ror.org/02w2x8s90', 'fr', 1, 'https://ror.org/02w2x8s90 Laboratoire de Chimie MolƩculaire'),
(122150, 'https://ror.org/02wjggp70', 'en', 1, 'https://ror.org/02wjggp70 Institute of Parasitic Diseases Parasitology Center'),
(122151, 'https://ror.org/018b0x874', 'fr', 1, 'https://ror.org/018b0x874 Laboratoire d''Hydrodynamique de l''Ɖcole polytechnique'),
(122152, 'https://ror.org/02wj62e51', 'fr', 1, 'https://ror.org/02wj62e51 Diabète et thérapie cellulaire'),
(122153, 'https://ror.org/04rq5mt64', 'en', 1, 'https://ror.org/04rq5mt64 University of Maryland, Baltimore'),
(122154, 'https://ror.org/01bghzb51', 'en', 1, 'https://ror.org/01bghzb51 New York Institute of Technology'),
(122155, 'https://ror.org/03n4vkw74', 'fr', 1, 'https://ror.org/03n4vkw74 DƩpartement Microbiologie et ChaƮne Alimentaire Microbiology and the food chain'),
(122156, 'https://ror.org/012sx4e77', 'fr', 1, 'https://ror.org/012sx4e77 Direction Ressources Humaines'),
(122157, 'https://ror.org/01cb32d56', 'en', 1, 'https://ror.org/01cb32d56 Livestock Farming Institute of the National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ тваринництва Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ тваринництва ŠŠŠŠ України'),
(122158, 'https://ror.org/01xp8dp03', 'en', 1, 'https://ror.org/01xp8dp03 Seiyun University Ų¬Ų§Ł…Ų¹Ų© Ų³ŁŠŲ¦ŁˆŁ†'),
(122159, 'https://ror.org/00pnmg910', 'en', 1, 'https://ror.org/00pnmg910 Shangqiu Polytechnic'),
(122160, 'https://ror.org/04rv1cp59', 'no_lang_code', 1, 'https://ror.org/04rv1cp59 Zap Energy Inc. Zap Energy Inc. (United States)'),
(122161, 'https://ror.org/00m9qza88', 'en', 1, 'https://ror.org/00m9qza88 Pathogens Host Arthropod Vectors Interfaces'),
(122162, 'https://ror.org/00sde4n60', 'en', 1, 'https://ror.org/00sde4n60 University of Maryland Medical Center'),
(122163, 'https://ror.org/059h64789', 'fr', 1, 'https://ror.org/059h64789 Biologie, EpidƩmiologie et Analyse de Risque en SantƩ Animale'),
(122164, 'https://ror.org/05fmqg429', 'en', 1, 'https://ror.org/05fmqg429 American Federation of State, County and Municipal Employees'),
(122165, 'https://ror.org/048qpr105', 'en', 1, 'https://ror.org/048qpr105 Tengeru Institute of Community Development'),
(122166, 'https://ror.org/055e01504', 'en', 1, 'https://ror.org/055e01504 International Image Interoperability Framework Consortium'),
(122167, 'https://ror.org/02p6hxb93', 'no_lang_code', 1, 'https://ror.org/02p6hxb93 IPTalons, Inc. IPTalons, Inc. (United States)'),
(122168, 'https://ror.org/01s15g854', 'fr', 1, 'https://ror.org/01s15g854 RƩduire, valoriser, rƩutiliser les ressources des eaux rƩsiduaires'),
(122169, 'https://ror.org/02aja8v82', 'en', 1, 'https://ror.org/02aja8v82 OpenEdition Center'),
(122170, 'https://ror.org/02r5j1137', 'fr', 1, 'https://ror.org/02r5j1137 Antenne Services dƩconcentrƩs d''appui Ơ la recherche Ile-de-France-Versailles-Saclay/Hauts-de-France'),
(122171, 'https://ror.org/05f1tbc40', 'it', 1, 'https://ror.org/05f1tbc40 Accademia di Belle Arti di Verona'),
(122172, 'https://ror.org/04411w164', 'fr', 1, 'https://ror.org/04411w164 Cellule de coordination et d''appui de l''Alliance Agreenium'),
(122173, 'https://ror.org/02a7bwg58', 'id', 1, 'https://ror.org/02a7bwg58 Politeknik Enjiniring Pertanian Indonesia'),
(122174, 'https://ror.org/030qxve40', 'fr', 1, 'https://ror.org/030qxve40 Ɖcole & Observatoire des Sciences de la Terre'),
(122175, 'https://ror.org/01ryfga12', 'en', 1, 'https://ror.org/01ryfga12 MES Ponnani College ą“Žą“‚.ą“‡.ą“Žą“øąµ. ą“ŖąµŠą“Øąµą“Øą“¾ą“Øą“æ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“ŖąµŠą“Øąµą“Øą“¾ą“Øą“æ'),
(122176, 'https://ror.org/00q4vv597', 'en', 1, 'https://ror.org/00q4vv597 Hong Kong University of Science and Technology'),
(122177, 'https://ror.org/01z6yh944', 'fr', 1, 'https://ror.org/01z6yh944 Functional Ecology and Ecotoxicology of AgroEcosystems Ɖcologie Fonctionnelle et Ɖcotoxicologie des AgroĆ©cosystĆØmes'),
(122178, 'https://ror.org/038142d20', 'no_lang_code', 1, 'https://ror.org/038142d20 Mammoth Biosciences Mammoth Biosciences (United States)'),
(122179, 'https://ror.org/02cvwzy55', 'fr', 1, 'https://ror.org/02cvwzy55 Services dƩconcentrƩs d''appui Ơ la recherche Clermont-Auvergne-RhƓne-Alpes'),
(122180, 'https://ror.org/04bp3vv87', 'fr', 1, 'https://ror.org/04bp3vv87 DSI-Service Informatique InterRƩgional Grand Ouest'),
(122181, 'https://ror.org/04acjm313', 'en', 1, 'https://ror.org/04acjm313 TACS-Alliance Research Center'),
(122182, 'https://ror.org/03sfyb283', 'es', 1, 'https://ror.org/03sfyb283 Fundación Centro Internacional de Educación y Desarrollo Humano International Center of Education and Human Development (CINDE)'),
(122183, 'https://ror.org/000p29f53', 'fr', 1, 'https://ror.org/000p29f53 Laboratoire d''Optique et Biosciences Laboratory for Optics and Biosciences'),
(122184, 'https://ror.org/02741hd16', 'en', 1, 'https://ror.org/02741hd16 Pearson Coal Petrography'),
(122185, 'https://ror.org/05msxaq47', 'en', 1, 'https://ror.org/05msxaq47 Centre des Sciences de SantƩ de l''UniversitƩ du Texas du Nord University of North Texas Health Science Center'),
(122186, 'https://ror.org/00h2mxm24', 'en', 1, 'https://ror.org/00h2mxm24 Paras Hospitals'),
(122187, 'https://ror.org/039gscz82', 'fr', 1, 'https://ror.org/039gscz82 MetaboHUB MetaboHUB-Core'),
(122188, 'https://ror.org/04b5d6z38', 'es', 1, 'https://ror.org/04b5d6z38 Universidad Europea de AndalucĆ­a'),
(122189, 'https://ror.org/05mfwtg94', 'fr', 1, 'https://ror.org/05mfwtg94 Biologie de la Reproduction, Environnement, EpigƩnƩtique & DƩveloppement Biologie de la Reproduction, Environnement, EpigƩnƩtique et DƩveloppement Biology of Reproduction, Environment, Epigenetics and Development'),
(122190, 'https://ror.org/01r6q9v78', 'fr', 1, 'https://ror.org/01r6q9v78 UnitƩ d''ExpƩrimentation Agronomique et Viticole de Colmar'),
(122191, 'https://ror.org/010hz2d37', 'fr', 1, 'https://ror.org/010hz2d37 Laboratoire d''Annecy de Physique ThƩorique'),
(122192, 'https://ror.org/01dkyve95', 'fr', 1, 'https://ror.org/01dkyve95 L''Institut Agro'),
(122193, 'https://ror.org/052jxdr90', 'fr', 1, 'https://ror.org/052jxdr90 Institut PhotovoltaĆÆque dā€™ĆŽle-de-France'),
(122194, 'https://ror.org/04wc1vw47', 'pt', 1, 'https://ror.org/04wc1vw47 Instituto Nacional de Pesquisa do Pantanal'),
(122195, 'https://ror.org/045m74n16', 'no_lang_code', 1, 'https://ror.org/045m74n16 Katheco Consultancy Company Limited Katheco Consultancy Company Limited (Tanzania)'),
(122196, 'https://ror.org/05vgncm63', 'en', 1, 'https://ror.org/05vgncm63 Monark University'),
(122197, 'https://ror.org/04rm7h526', 'en', 0, 'https://ror.org/04rm7h526 Global Water Futures'),
(122198, 'https://ror.org/00gm7ct78', 'fr', 1, 'https://ror.org/00gm7ct78 Centre d''Ʃtudes internationales et europƩennes'),
(122199, 'https://ror.org/02dmgnj77', 'fr', 1, 'https://ror.org/02dmgnj77 EcosystĆØmes forestiers'),
(122200, 'https://ror.org/041efwm47', 'en', 1, 'https://ror.org/041efwm47 American Wild Horse Conservation'),
(122201, 'https://ror.org/004q3z910', 'fr', 1, 'https://ror.org/004q3z910 Ecophysiologie et GƩnomique Fonctionnelle de la Vigne Ecophysiology and Grape Functional Genomics'),
(122202, 'https://ror.org/02y6x4632', 'fr', 1, 'https://ror.org/02y6x4632 Direction Relations Internationales'),
(122203, 'https://ror.org/02yxx9y43', 'uz', 1, 'https://ror.org/02yxx9y43 Muhammad al-Xorazmiy nomidagi Toshkent Axborot Texnologiyalari Universiteti Samarqand filiali Samarkand branch of Tashkent University of Information Technologies named after Muhammad al-Khwarizmi ДамарканГский филиал Š¢Š°ŃˆŠŗŠµŠ½Ń‚ского Университета Š˜Š½Ń„ормационных Технологий имени ŠœŃƒŃ…аммаГа ал-Єоразмий'),
(122204, 'https://ror.org/04fa3ke77', 'fr', 1, 'https://ror.org/04fa3ke77 Structures et marchƩs agricoles, ressources et territoires'),
(122205, 'https://ror.org/05eedav07', 'fr', 1, 'https://ror.org/05eedav07 Laboratoire de Finance des MarchĆ©s de l''Ɖnergie'),
(122206, 'https://ror.org/01e3m7079', 'en', 1, 'https://ror.org/01e3m7079 Universidad de Cincinnati University of Cincinnati UniversitƩ de cincinnati'),
(122207, 'https://ror.org/05wv2vq37', 'en', 1, 'https://ror.org/05wv2vq37 University of Dhaka ঢাকা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(122208, 'https://ror.org/0586tfd49', 'fr', 1, 'https://ror.org/0586tfd49 Services dƩconcentrƩs d''appui Ơ la recherche Antilles-Guyane'),
(122209, 'https://ror.org/052sda025', 'en', 1, 'https://ror.org/052sda025 African Export-Import Bank (Egypt)'),
(122210, 'https://ror.org/03xp91198', 'en', 1, 'https://ror.org/03xp91198 Hemwati Nandan Bahuguna Uttarakhand Medical Education University'),
(122211, 'https://ror.org/042xfwx36', 'en', 1, 'https://ror.org/042xfwx36 Toshniwal Arts, Commerce, and Science College'),
(122212, 'https://ror.org/003d0er09', 'en', 1, 'https://ror.org/003d0er09 Kokand University Andijan branch Qoā€˜qon Universiteti Andijon Filiali'),
(122213, 'https://ror.org/03n4s8180', 'fr', 1, 'https://ror.org/03n4s8180 Savoirs dans l''espace anglophone : reprƩsentations, culture, histoire'),
(122214, 'https://ror.org/0281n9c83', 'en', 1, 'https://ror.org/0281n9c83 Nigerian Society of Engineers'),
(122215, 'https://ror.org/05gk2b650', 'en', 1, 'https://ror.org/05gk2b650 Faryab University'),
(122216, 'https://ror.org/01s34g445', 'en', 1, 'https://ror.org/01s34g445 Holland High Tech'),
(122217, 'https://ror.org/05pw0an27', 'en', 1, 'https://ror.org/05pw0an27 Gayatri Vidya Parishad College of Engineering for Women'),
(122218, 'https://ror.org/010we4y38', 'pt', 1, 'https://ror.org/010we4y38 Hospital de ClĆ­nicas de Porto Alegre'),
(122219, 'https://ror.org/01kajk897', 'fr', 1, 'https://ror.org/01kajk897 CollĆØge de Direction'),
(122220, 'https://ror.org/03qd0ry47', 'es', 1, 'https://ror.org/03qd0ry47 Universidad Libre de Barranquilla'),
(122221, 'https://ror.org/02n0g0g02', 'pt', 1, 'https://ror.org/02n0g0g02 Museu Arqueológico do Rio Grande do Sul'),
(122222, 'https://ror.org/01gbec191', 'ca', 1, 'https://ror.org/01gbec191 EUIT Centre Universitari Escola UniversitĆ ria d''Infermeria i TerĆ pia Ocupacional'),
(122223, 'https://ror.org/012e1xn46', 'fr', 1, 'https://ror.org/012e1xn46 Centre de MathĆ©matiques AppliquĆ©es de l''Ɖcole polytechnique'),
(122224, 'https://ror.org/056d3xj17', 'fr', 1, 'https://ror.org/056d3xj17 Sport et sciences sociales'),
(122225, 'https://ror.org/05m0gf780', 'fr', 1, 'https://ror.org/05m0gf780 Technologies et systĆØmes d''information pour les agrosystĆØmes'),
(122226, 'https://ror.org/01hhn8329', 'en', 1, 'https://ror.org/01hhn8329 Max Planck Society Max-Planck-Gesellschaft zur Fƶrderung der Wissenschaften'),
(122227, 'https://ror.org/00abgjp06', 'en', 1, 'https://ror.org/00abgjp06 Real Christian Institute Batam STT Real Batam Sekolah Tinggi Teologi Real Sekolah Tinggi Teologi Real Batam'),
(122228, 'https://ror.org/04582r067', 'es', 1, 'https://ror.org/04582r067 Instituto de Teoría e Historia del Arte "Julio E. Payró"'),
(122229, 'https://ror.org/02f3ymk52', 'en', 1, 'https://ror.org/02f3ymk52 ICN Business School'),
(122230, 'https://ror.org/028c6kd10', 'fr', 1, 'https://ror.org/028c6kd10 Laboratoire de pharmacologie et de toxicologie neurocardiovasculaire'),
(122231, 'https://ror.org/02y37b355', 'fr', 1, 'https://ror.org/02y37b355 DƩmonstrateur prƩindustriel Ferments du Futur'),
(122232, 'https://ror.org/05xrrkv56', 'en', 1, 'https://ror.org/05xrrkv56 Hong Kong Microelectronics Research and Development Institute'),
(122233, 'https://ror.org/0475btk05', 'en', 1, 'https://ror.org/0475btk05 Chengdu Seventh People''s Hospital ęˆéƒ½åø‚ē¬¬äøƒäŗŗę°‘åŒ»é™¢');
INSERT INTO `rors` VALUES
(122234, 'https://ror.org/01849qq30', 'fr', 1, 'https://ror.org/01849qq30 Antenne DRH Pays de la Loire'),
(122235, 'https://ror.org/00naae982', 'en', 1, 'https://ror.org/00naae982 Green International University'),
(122236, 'https://ror.org/03pyva468', 'en', 1, 'https://ror.org/03pyva468 Taipei Zoo č‡ŗåŒ—åø‚ē«‹å‹•ē‰©åœ’'),
(122237, 'https://ror.org/05n8bdc26', 'fr', 1, 'https://ror.org/05n8bdc26 Risques, écosystèmes, vulnérabilité, environnement, résilience'),
(122238, 'https://ror.org/029xmsm82', 'fr', 1, 'https://ror.org/029xmsm82 DƩpartement GƩnƩtique Animale'),
(122239, 'https://ror.org/026j52t88', 'ms', 1, 'https://ror.org/026j52t88 Politeknik Kuching Sarawak'),
(122240, 'https://ror.org/047fwb937', 'fr', 1, 'https://ror.org/047fwb937 Biotechnologie et Signalisation Cellulaire'),
(122241, 'https://ror.org/05rvbfe24', 'fr', 1, 'https://ror.org/05rvbfe24 UnitƩ de Service Analyses VƩgƩtales et Environnementales'),
(122242, 'https://ror.org/01k12qb64', 'fr', 1, 'https://ror.org/01k12qb64 Laboratoire d''Analyses des Sols'),
(122243, 'https://ror.org/0544e8m86', 'fr', 1, 'https://ror.org/0544e8m86 Direction Systèmes d''Information-Unité d''Appui'),
(122244, 'https://ror.org/029p6cy86', 'id', 1, 'https://ror.org/029p6cy86 Institut Agama Kristen Negeri Toraja'),
(122245, 'https://ror.org/04x97hf88', 'en', 1, 'https://ror.org/04x97hf88 Hommes et management en sociƩtƩ Humans and management in society'),
(122246, 'https://ror.org/05xph3080', 'fr', 1, 'https://ror.org/05xph3080 EcosystĆØmes aquatiques et changements globaux'),
(122247, 'https://ror.org/03k3jkz50', 'no_lang_code', 1, 'https://ror.org/03k3jkz50 MIA Cellavie Inc. MIA Cellavie Inc. (Canada)'),
(122248, 'https://ror.org/05xhbcj58', 'en', 1, 'https://ror.org/05xhbcj58 Illinois Council of Teachers of Mathematics'),
(122249, 'https://ror.org/01az7g189', 'en', 1, 'https://ror.org/01az7g189 Stawell Underground Physics Laboratory'),
(122250, 'https://ror.org/041tepq66', 'fr', 1, 'https://ror.org/041tepq66 EcodƩveloppement'),
(122251, 'https://ror.org/02p827605', 'en', 1, 'https://ror.org/02p827605 Klarman Cell Observatory'),
(122252, 'https://ror.org/00zmw2160', 'en', 1, 'https://ror.org/00zmw2160 ICN Business School - Berlin'),
(122253, 'https://ror.org/01kev6z34', 'en', 1, 'https://ror.org/01kev6z34 Impuls Medical Institute Impuls tibbiyot instituti'),
(122254, 'https://ror.org/0445d9h15', 'de', 1, 'https://ror.org/0445d9h15 IMMS Institut für Mikroelektronik- und Mechatronik-Systeme gemeinnützige GmbH (IMMS GmbH)'),
(122255, 'https://ror.org/0106fnq84', 'en', 1, 'https://ror.org/0106fnq84 AUM BioTech AUM BioTech, LLC.'),
(122256, 'https://ror.org/0403vx886', 'en', 1, 'https://ror.org/0403vx886 International Foundation Against Infectious Disease in Nigeria'),
(122257, 'https://ror.org/02q3y8p81', 'en', 1, 'https://ror.org/02q3y8p81 Dipartimento Federale della Difesa, della Protezione della Popolazione e dello Sport Département Fédéral de la Défense, de la Protection de la Population et des Sports Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport Federal Department of Defence, Civil Protection and Sports'),
(122258, 'https://ror.org/02yr4wk92', 'en', 1, 'https://ror.org/02yr4wk92 La Source School of Nursing, HES-SO University of Applied Sciences and Arts Western Switzerland'),
(122259, 'https://ror.org/059g0vd42', 'fr', 1, 'https://ror.org/059g0vd42 Laboratoire de bioimagerie et pathologies'),
(122260, 'https://ror.org/01p9mtd45', 'en', 1, 'https://ror.org/01p9mtd45 Paris-Saclay Applied Economics'),
(122261, 'https://ror.org/03f9c2v55', 'en', 1, 'https://ror.org/03f9c2v55 Indiana Soybean Alliance'),
(122262, 'https://ror.org/039cbw303', 'en', 1, 'https://ror.org/039cbw303 Bangladesh Shishu (Children) Hospital & Institute'),
(122263, 'https://ror.org/05rnb6a91', 'fr', 1, 'https://ror.org/05rnb6a91 DSI-Service Informatique InterRƩgional Auvergne-RhƓne-Alpes'),
(122264, 'https://ror.org/032s10s29', 'en', 1, 'https://ror.org/032s10s29 European University Private Higher Education Establishment ā€œEuropean Universityā€ Š„Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(122265, 'https://ror.org/01pd2sz18', 'fr', 1, 'https://ror.org/01pd2sz18 MathƩmatiques, Informatique et Statistique pour l''Environnement et l''Agronomie'),
(122266, 'https://ror.org/02nz3we33', 'en', 1, 'https://ror.org/02nz3we33 Cox Communications Cox Communications (United States) Cox Communications, Inc.'),
(122267, 'https://ror.org/03kk92g72', 'fr', 1, 'https://ror.org/03kk92g72 GƩnƩtique et amƩlioration des fruits et lƩgumes'),
(122268, 'https://ror.org/02sxjwh33', 'fr', 1, 'https://ror.org/02sxjwh33 Centre Occitanie-Toulouse'),
(122269, 'https://ror.org/03te95s40', 'fr', 1, 'https://ror.org/03te95s40 Groupe d''Ʃtudes orientales, slaves et nƩo-hellƩniques'),
(122270, 'https://ror.org/0251b4k82', 'fr', 1, 'https://ror.org/0251b4k82 DSI–Solutions applicatives, intĆ©grations et rĆ©fĆ©rentiels'),
(122271, 'https://ror.org/04nkhwh30', 'en', 1, 'https://ror.org/04nkhwh30 University of Hull'),
(122272, 'https://ror.org/01dr6c206', 'en', 1, 'https://ror.org/01dr6c206 Polish Academy of Sciences Polska Akademia Nauk'),
(122273, 'https://ror.org/05jwhyp78', 'en', 1, 'https://ror.org/05jwhyp78 Good Samaritan University Hospital'),
(122274, 'https://ror.org/04xnmy337', 'en', 1, 'https://ror.org/04xnmy337 Te Rito Maioha Early Childhood New Zealand Te Tari Puna Ora o Aotearoa New Zealand'),
(122275, 'https://ror.org/02y8eey83', 'fr', 1, 'https://ror.org/02y8eey83 UnitƩ ExpƩrimentale Versailles Saclay'),
(122276, 'https://ror.org/03evx7511', 'fr', 1, 'https://ror.org/03evx7511 Plateforme d''Infectiologie ExpƩrimentale'),
(122277, 'https://ror.org/05jr56v21', 'fr', 1, 'https://ror.org/05jr56v21 Unité Expérimentale de Recherches Intégrées en arboriculture fruitière - Gotheron'),
(122278, 'https://ror.org/04gdp0658', 'fr', 1, 'https://ror.org/04gdp0658 Biologie des Organismes, Stress, SantƩ, Environnement'),
(122279, 'https://ror.org/0549nje26', 'en', 1, 'https://ror.org/0549nje26 Arts, Commerce and Science College, Dharangaon कला ą¤µą¤¾ą¤£ą¤æą¤œą„ą¤Æ आणि ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ धरणगाव'),
(122280, 'https://ror.org/032f0mk77', 'no_lang_code', 1, 'https://ror.org/032f0mk77 Spraying Systems Co. Spraying Systems Co. (United States)'),
(122281, 'https://ror.org/04asdee31', 'fr', 1, 'https://ror.org/04asdee31 Marie and Louis Pasteur University UniversitƩ Marie et Louis Pasteur'),
(122282, 'https://ror.org/04bfnba29', 'es', 1, 'https://ror.org/04bfnba29 Instituto de Historia de EspaƱa "Dr. Claudio SƔnchez Albornoz"'),
(122283, 'https://ror.org/00pjm1054', 'en', 1, 'https://ror.org/00pjm1054 Lyell McEwin Hospital'),
(122284, 'https://ror.org/028nd8457', 'fr', 1, 'https://ror.org/028nd8457 Laboratoire de recherche en gestion et Ʃconomie'),
(122285, 'https://ror.org/00amagn10', 'en', 1, 'https://ror.org/00amagn10 Smart Innovation Norway'),
(122286, 'https://ror.org/03e04sg66', 'fr', 1, 'https://ror.org/03e04sg66 ƉpidĆ©miologie des maladies Animales et zoonotiques'),
(122287, 'https://ror.org/003vg9w96', 'fr', 1, 'https://ror.org/003vg9w96 Institut National de Recherche pour l''Agriculture, l''Alimentation et l''Environnement National Research Institute for Agriculture, Food and Environment'),
(122288, 'https://ror.org/00pgyqh43', 'fr', 1, 'https://ror.org/00pgyqh43 DƩpartement Alimentation Humaine'),
(122289, 'https://ror.org/00gyb4719', 'fr', 1, 'https://ror.org/00gyb4719 Recherches Avancées sur la Biologie de l''Arbre et les Ecosystèmes Forestiers'),
(122290, 'https://ror.org/00r0j5m90', 'es', 1, 'https://ror.org/00r0j5m90 Universidad PolitƩcnica de YucatƔn'),
(122291, 'https://ror.org/023f9y602', 'fr', 1, 'https://ror.org/023f9y602 Laboratoire de Physique des Interfaces et des Couches Minces'),
(122292, 'https://ror.org/01q76b368', 'fr', 1, 'https://ror.org/01q76b368 Institut Ɖcologie et Environnement'),
(122293, 'https://ror.org/0491a1z48', 'pt', 1, 'https://ror.org/0491a1z48 Centro UniversitƔrio UniSenac Senac University Center'),
(122294, 'https://ror.org/0024c1w94', 'fr', 1, 'https://ror.org/0024c1w94 Plantes et systĆØmes de culture horticoles Plants and Cropping Systems in Horticulture'),
(122295, 'https://ror.org/04e145057', 'es', 1, 'https://ror.org/04e145057 Instituto de Artes del EspectÔculo "Dr. Raúl H. Castagnino"'),
(122296, 'https://ror.org/009t5dc22', 'fr', 1, 'https://ror.org/009t5dc22 Centre d''Ɖtudes Internationales de la PropriĆ©tĆ© Intellectuelle'),
(122297, 'https://ror.org/028n22487', 'en', 1, 'https://ror.org/028n22487 Global Water Futures Observatories'),
(122298, 'https://ror.org/00wxgxz56', 'es', 1, 'https://ror.org/00wxgxz56 Hospital Universitario de Toledo'),
(122299, 'https://ror.org/049q30t56', 'fr', 1, 'https://ror.org/049q30t56 Biologie et gestion des champignons phytopathogĆØnes'),
(122300, 'https://ror.org/04z0jxs94', 'fr', 1, 'https://ror.org/04z0jxs94 Fonctionnement des hydrosystĆØmes'),
(122301, 'https://ror.org/03tthb443', 'en', 1, 'https://ror.org/03tthb443 Defense Research Institute of Mongolia Батлан хамгаалахын ŃŃ€Š“ŃŠ¼ ŃˆŠøŠ½Š¶ŠøŠ»Š³ŃŃŠ½ŠøŠ¹ Ń…ŅÆŃ€ŃŃŠ»ŃŠ½'),
(122302, 'https://ror.org/05bm5fm58', 'fr', 1, 'https://ror.org/05bm5fm58 DSI-Service Informatique InterRƩgional Corse Antilles Sud'),
(122303, 'https://ror.org/03w7cz890', 'en', 1, 'https://ror.org/03w7cz890 East View Information Services, Inc. East View Information Services, Inc. (United States)'),
(122304, 'https://ror.org/02rgsvs33', 'tr', 1, 'https://ror.org/02rgsvs33 Ɩnder İmam Hatipliler Derneği'),
(122305, 'https://ror.org/01cmdgj85', 'fr', 1, 'https://ror.org/01cmdgj85 Sciences pour l''Action et le DƩveloppement : ActivitƩs, Produits, Territoires'),
(122306, 'https://ror.org/01qhf1r47', 'en', 1, 'https://ror.org/01qhf1r47 Anna University, Chennai ą¤…ą¤£ą„ą¤£ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą¤¾ą¤²ą¤Æ ą®…ą®£ąÆą®£ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°…ą°Øą±ą°Øą°¾ ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(122307, 'https://ror.org/04afed728', 'fr', 1, 'https://ror.org/04afed728 Laboratoire d''Informatique de l''Ɖcole Polytechnique'),
(122308, 'https://ror.org/04fc13q78', 'en', 1, 'https://ror.org/04fc13q78 National Institute for Legislative and Democratic Studies'),
(122309, 'https://ror.org/00gtg0p11', 'fr', 1, 'https://ror.org/00gtg0p11 Centre Ǝle-de-France - Jouy-en-Josas - Antony'),
(122310, 'https://ror.org/02gg8z294', 'fr', 1, 'https://ror.org/02gg8z294 Ɖcologie des ForĆŖts MĆ©diterranĆ©ennes'),
(122311, 'https://ror.org/047w45g41', 'fr', 1, 'https://ror.org/047w45g41 Services dƩconcentrƩs d''appui Ơ la recherche Occitanie-Montpellier'),
(122312, 'https://ror.org/05xvpdr60', 'fr', 1, 'https://ror.org/05xvpdr60 Direction Partenariat et Transfert pour l''Innovation'),
(122313, 'https://ror.org/04gg6ne93', 'fr', 1, 'https://ror.org/04gg6ne93 Génétique Physiologie et Systèmes d''Elevage'),
(122314, 'https://ror.org/012221e05', 'fr', 1, 'https://ror.org/012221e05 DƩpartement Ʃconomie et sciences sociales pour l''agriculture, l''alimentation, l''environnement'),
(122315, 'https://ror.org/025z4wz11', 'en', 1, 'https://ror.org/025z4wz11 Northwest General Hospital and Research Center'),
(122316, 'https://ror.org/05b333288', 'en', 1, 'https://ror.org/05b333288 Centre for Law and Genetics'),
(122317, 'https://ror.org/05r11v294', 'en', 1, 'https://ror.org/05r11v294 Arizona Game and Fish Department'),
(122318, 'https://ror.org/02vbe7285', 'en', 1, 'https://ror.org/02vbe7285 IILM University Gurugram Institute of Integrated Learning in Management University'),
(122319, 'https://ror.org/020jynt45', 'fr', 1, 'https://ror.org/020jynt45 Centre Pays de la Loire'),
(122320, 'https://ror.org/01jvz7e61', 'fr', 1, 'https://ror.org/01jvz7e61 Virologie et Immunologie MolƩculaires'),
(122321, 'https://ror.org/0291jbz11', 'fr', 1, 'https://ror.org/0291jbz11 Grapevine Health and Wine Quality SantƩ de la Vigne et QualitƩ du Vin'),
(122322, 'https://ror.org/03qbdej90', 'fr', 1, 'https://ror.org/03qbdej90 Centre Provence-Alpes-CƓte d''Azur'),
(122323, 'https://ror.org/033yaqx95', 'es', 1, 'https://ror.org/033yaqx95 Instituto Universitario de MatemƔticas y Aplicaciones'),
(122324, 'https://ror.org/03dbr7087', 'en', 1, 'https://ror.org/03dbr7087 University of Toronto UniversitƩ de Toronto'),
(122325, 'https://ror.org/022mqmm07', 'en', 1, 'https://ror.org/022mqmm07 Dr DY Patil School of Management'),
(122326, 'https://ror.org/0529hw956', 'fr', 1, 'https://ror.org/0529hw956 MathƩmatiques et Informatique AppliquƩes Toulouse'),
(122327, 'https://ror.org/0075gym45', 'fr', 1, 'https://ror.org/0075gym45 Immuno-Endocrinologie Cellulaire et MolƩculaire'),
(122328, 'https://ror.org/006v9bm38', 'en', 1, 'https://ror.org/006v9bm38 State Institution State Scientific Research and Design Institute of Basic Chemistry Š”Š•Š Š–ŠŠ’ŠŠ Š£Š”Š¢ŠŠŠžŠ’Š Ā«Š”Š•Š Š–ŠŠ’ŠŠ˜Š™ ŠŠŠ£ŠšŠžŠ’Šž-Š”ŠžŠ”Š›Š†Š”ŠŠ˜Š™ І ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠ˜Š™ Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠžŠ”ŠŠžŠ’ŠŠžŠ‡ Š„Š†ŠœŠ†Š‡Ā»'),
(122329, 'https://ror.org/041thxh90', 'en', 1, 'https://ror.org/041thxh90 Cellis AG'),
(122330, 'https://ror.org/03dpyf590', 'en', 1, 'https://ror.org/03dpyf590 Institute of Forest Biodiversity Van Jaiv-vividhta Sansthan वन ą¤œą„ˆą¤µą¤µą¤æą¤µą¤æą¤§ą¤¤ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(122331, 'https://ror.org/04b0z7q78', 'fr', 1, 'https://ror.org/04b0z7q78 Institut des Sciences Humaines et Sociales'),
(122332, 'https://ror.org/04st5gd49', 'fr', 1, 'https://ror.org/04st5gd49 Villa Thuret'),
(122333, 'https://ror.org/05nx3qr05', 'en', 1, 'https://ror.org/05nx3qr05 Government Engineering College Wayanad ą“—ą“µą“£ąµą“®ąµ†ą“Øąµą“±ąµ ą“Žą“žąµą“šą“æą“Øąµ€ą“Æą“±ą“æą“‚ą“—ąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“µą“Æą“Øą“¾ą“Ÿąµ'),
(122334, 'https://ror.org/02c3c9255', 'fr', 1, 'https://ror.org/02c3c9255 Unité Mixte de Recherche sur l''Ecosystème Prairial'),
(122335, 'https://ror.org/00cz0md82', 'en', 1, 'https://ror.org/00cz0md82 Seattle Children''s Research Institute'),
(122336, 'https://ror.org/01x1wsp06', 'en', 1, 'https://ror.org/01x1wsp06 Acwa (Saudi Arabia)'),
(122337, 'https://ror.org/00892tw58', 'en', 0, 'https://ror.org/00892tw58 The University of Adelaide'),
(122338, 'https://ror.org/05pajk285', 'es', 1, 'https://ror.org/05pajk285 Centro Universitario CIFE'),
(122339, 'https://ror.org/02v87rg62', 'fr', 1, 'https://ror.org/02v87rg62 Mycologie et SƩcuritƩ des Aliments Mycology and Food Safety'),
(122340, 'https://ror.org/01nfmeh72', 'en', 1, 'https://ror.org/01nfmeh72 University of Tasmania'),
(122341, 'https://ror.org/033av2692', 'en', 1, 'https://ror.org/033av2692 Chamber of Deputies Chamber of Deputies - Brazil'),
(122342, 'https://ror.org/01vghsg33', 'sq', 1, 'https://ror.org/01vghsg33 Kolegji Universitar Qiriazi Qiriazi University College'),
(122343, 'https://ror.org/02vehmp05', 'fr', 1, 'https://ror.org/02vehmp05 UnitƩ ExpƩrimentale de la Motte'),
(122344, 'https://ror.org/02phbwg91', 'fr', 1, 'https://ror.org/02phbwg91 Laboratoire de psychologie des cognitions'),
(122345, 'https://ror.org/053my8279', 'en', 1, 'https://ror.org/053my8279 Council on Library and Information Resources'),
(122346, 'https://ror.org/02j861411', 'es', 1, 'https://ror.org/02j861411 Instituto Interdisciplinario de Estudios e Investigaciones de AmƩrica Latina'),
(122347, 'https://ror.org/0455v8x20', 'fr', 1, 'https://ror.org/0455v8x20 DƩpartement SantƩ des Plantes et Environnement Plant Health and the Environment'),
(122348, 'https://ror.org/05vcax154', 'fr', 1, 'https://ror.org/05vcax154 BiomatƩriaux et BioingƩnierie'),
(122349, 'https://ror.org/04543bw77', 'en', 1, 'https://ror.org/04543bw77 Wireless World Research Forum'),
(122350, 'https://ror.org/00sxj6k90', 'fr', 1, 'https://ror.org/00sxj6k90 DƩpartement sciences pour l''ingƩnierie des aliments, des produits biosourcƩs et des rƩsidus de l''activitƩ humaine'),
(122351, 'https://ror.org/043f5vc59', 'fr', 1, 'https://ror.org/043f5vc59 Physiologie de la Nutrition et du Comportement Alimentaire'),
(122352, 'https://ror.org/0032jvj22', 'en', 1, 'https://ror.org/0032jvj22 NanomƩdecine rƩgƩnƩrative Regenerative NanoMedicine'),
(122353, 'https://ror.org/030s3br46', 'en', 1, 'https://ror.org/030s3br46 Zenith Super Specialist Hospital'),
(122354, 'https://ror.org/01t1xyw79', 'es', 1, 'https://ror.org/01t1xyw79 Escuela Superior de Diseño de Aragón'),
(122355, 'https://ror.org/05r63mf91', 'fr', 1, 'https://ror.org/05r63mf91 DƩpartement Biologie et AmƩlioration des Plantes'),
(122356, 'https://ror.org/02ev2rd07', 'en', 1, 'https://ror.org/02ev2rd07 F.D. Ovcharenko Institute of Biocolloidal Chemistry of the National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біоколоїГної хімії імені Ф.Š”.ŠžŠ²Ń‡Š°Ń€ŠµŠ½ŠŗŠ° ŠŠŠ України'),
(122357, 'https://ror.org/00w9a2z18', 'no_lang_code', 1, 'https://ror.org/00w9a2z18 Jiwaji University ą¤œą„€ą¤µą¤¾ą¤œą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤—ą„ą¤µą¤¾ą¤²ą¤æą¤Æą¤°'),
(122358, 'https://ror.org/048dnaz08', 'fr', 1, 'https://ror.org/048dnaz08 Etude du Polymorphisme des GƩnomes VƩgƩtaux'),
(122359, 'https://ror.org/03rnk6m14', 'fr', 1, 'https://ror.org/03rnk6m14 Centre international d''Ʃtudes supƩrieures en sciences agronomiques Institut Agro Montpellier'),
(122360, 'https://ror.org/03d4ga814', 'fr', 1, 'https://ror.org/03d4ga814 Services dƩconcentrƩs d''appui Ơ la recherche Ile-de-France-Jouy-en-Josas-Antony'),
(122361, 'https://ror.org/05b7wvg19', 'en', 1, 'https://ror.org/05b7wvg19 Australian Age of Dinosaurs'),
(122362, 'https://ror.org/036b2ns30', 'es', 1, 'https://ror.org/036b2ns30 Catholic University of Bolivia San Pablo Universidad Católica Boliviana San Pablo'),
(122363, 'https://ror.org/04aevb021', 'fr', 1, 'https://ror.org/04aevb021 AvipƓle'),
(122364, 'https://ror.org/049s68q83', 'en', 1, 'https://ror.org/049s68q83 GCS Medical College'),
(122365, 'https://ror.org/0459hg787', 'en', 1, 'https://ror.org/0459hg787 Research Data Scotland'),
(122366, 'https://ror.org/01c273y36', 'fr', 1, 'https://ror.org/01c273y36 UnitƩ ExpƩrimentale sur les Ressources GƩnƩtiques VƩgƩtales en Conditions OcƩaniques'),
(122367, 'https://ror.org/00warhn80', 'en', 1, 'https://ror.org/00warhn80 Endometriosis Society India'),
(122368, 'https://ror.org/04avp4m11', 'en', 1, 'https://ror.org/04avp4m11 Precision Hydration (United Kingdom)'),
(122369, 'https://ror.org/011emb038', 'fr', 1, 'https://ror.org/011emb038 DƩpartement mathƩmatiques, informatique, sciences de la donnƩe et technologies du numƩrique'),
(122370, 'https://ror.org/01sdp1y98', 'fr', 1, 'https://ror.org/01sdp1y98 Centre de Recherches sur la Cognition et l''Apprentissage Research Centre on Cognition and Learning'),
(122371, 'https://ror.org/03h56sg55', 'en', 1, 'https://ror.org/03h56sg55 Dr. A.P.J. Abdul Kalam Technical University'),
(122372, 'https://ror.org/01mbh5s36', 'fr', 1, 'https://ror.org/01mbh5s36 Domaine expƩrimental de Saint-Laurent-de-la-PrƩe'),
(122373, 'https://ror.org/00eq8hh49', 'en', 1, 'https://ror.org/00eq8hh49 Buketov Karaganda National Research University Karaganda Buketov University АкаГемик Š•.А. Бөкетов атынГағы ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– АкаГемик Š•.А. Бөкетов атынГағы ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ Ұлттық Š—ŠµŃ€Ń‚Ń‚ŠµŃƒ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(122374, 'https://ror.org/04hwprk59', 'fr', 1, 'https://ror.org/04hwprk59 Direction Appui aux Politiques Publiques'),
(122375, 'https://ror.org/008kj1d63', 'fr', 1, 'https://ror.org/008kj1d63 SIMBA: InfƩrence Statistique et ModƩlisation pour les Applications Biologiques SIMBA: Statistical Inference and Modeling for Biological Applications'),
(122376, 'https://ror.org/00j1q0b46', 'en', 1, 'https://ror.org/00j1q0b46 Council of Higher Education Yükseköğretim Kurulu'),
(122377, 'https://ror.org/03fte3n86', 'fr', 1, 'https://ror.org/03fte3n86 Laboratoire d''Ecophysiologie des Plantes sous Stress environnementaux'),
(122378, 'https://ror.org/05emy3e34', 'en', 1, 'https://ror.org/05emy3e34 Max Planck School of Photonics'),
(122379, 'https://ror.org/022m8c549', 'fr', 1, 'https://ror.org/022m8c549 Laboratoire de Biotechnologie de l''Environnement Laboratory of Environmental Biotechnology'),
(122380, 'https://ror.org/05256fm24', 'en', 1, 'https://ror.org/05256fm24 Ministry of Health and Family Welfare ą¦øą§ą¦¬ą¦¾ą¦øą§ą¦„ą§ą¦Æ ও পরিবার ą¦•ą¦²ą§ą¦Æą¦¾ą¦£ ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(122381, 'https://ror.org/008qhvr46', 'en', 1, 'https://ror.org/008qhvr46 The Higher Institute of Applied Arts Fifth settlement'),
(122382, 'https://ror.org/04rg8xw76', 'en', 1, 'https://ror.org/04rg8xw76 Alliance for Data Science and AI'),
(122383, 'https://ror.org/01y49xn34', 'no_lang_code', 1, 'https://ror.org/01y49xn34 Tokusen Kogyo Co., Ltd. Tokusen Kogyo Co., Ltd. (Japan) ćƒˆć‚Æć‚»ćƒ³å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122384, 'https://ror.org/04whg0p12', 'no_lang_code', 1, 'https://ror.org/04whg0p12 DEN-EN Shuzo Co., Ltd. DEN-EN Shuzo Co., Ltd. (Japan) ē”°č‹‘é…’é€ ę Ŗå¼ä¼šē¤¾'),
(122385, 'https://ror.org/05w9qv485', 'no_lang_code', 1, 'https://ror.org/05w9qv485 Crystage Incorporation Crystage Incorporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚ÆćƒŖć‚¹ć‚æćƒ¼ć‚øćƒ„'),
(122386, 'https://ror.org/04rz98c72', 'id', 1, 'https://ror.org/04rz98c72 Politeknik AKA Bogor'),
(122387, 'https://ror.org/02hv58m12', 'no_lang_code', 1, 'https://ror.org/02hv58m12 PREC Institute Inc. PREC Institute Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ¬ćƒƒć‚Æē ”ē©¶ę‰€'),
(122388, 'https://ror.org/05xamrn68', 'no_lang_code', 1, 'https://ror.org/05xamrn68 Renown Apparel Institute Incorporated Renown Apparel Institute Incorporated (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¬ćƒŠć‚¦ćƒ³ć‚¢ćƒ‘ćƒ¬ćƒ«ē§‘å­¦ē ”ē©¶ę‰€'),
(122389, 'https://ror.org/01k3ptk15', 'en', 1, 'https://ror.org/01k3ptk15 Cooperative Institute for Meteorological Satellite Studies'),
(122390, 'https://ror.org/03jpdsb30', 'no_lang_code', 1, 'https://ror.org/03jpdsb30 NEIS Co., Ltd. NEIS Co., Ltd. (Japan) ćƒŠć‚¤ć‚¹ę Ŗå¼ä¼šē¤¾'),
(122391, 'https://ror.org/0470tb839', 'no_lang_code', 1, 'https://ror.org/0470tb839 SYSKEN Corporation SYSKEN Corporation (Japan) ę Ŗå¼ä¼šē¤¾SYSKEN'),
(122392, 'https://ror.org/03nqjyg83', 'en', 1, 'https://ror.org/03nqjyg83 Novo Nordisk Foundation Center for Stem Cell Medicine'),
(122393, 'https://ror.org/03078mv10', 'fr', 1, 'https://ror.org/03078mv10 Centre Universitaire Jean-FranƧois-Champollion National University Institute Jean-Francois Champollion'),
(122394, 'https://ror.org/024vzst10', 'no_lang_code', 1, 'https://ror.org/024vzst10 TKC Corporation TKC Corporation (Japan) ę Ŗå¼ä¼šē¤¾TKC'),
(122395, 'https://ror.org/02qp0j514', 'no_lang_code', 1, 'https://ror.org/02qp0j514 Soiken Holdings Inc. Soiken Holdings Inc. (Japan) ę Ŗå¼ä¼šē¤¾ē·åŒ»ē ”ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(122396, 'https://ror.org/05cg58556', 'no_lang_code', 1, 'https://ror.org/05cg58556 ZEON Kasei Co., Ltd. ZEON Kasei Co., Ltd. (Japan) ć‚¼ć‚Ŗćƒ³åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(122397, 'https://ror.org/01fj13y72', 'no_lang_code', 1, 'https://ror.org/01fj13y72 Advangen, Inc. Advangen, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒćƒ³ć‚øć‚§ćƒ³'),
(122398, 'https://ror.org/03zc4cf10', 'en', 1, 'https://ror.org/03zc4cf10 First On-Call Initiative'),
(122399, 'https://ror.org/01rgdxd69', 'no_lang_code', 1, 'https://ror.org/01rgdxd69 Mizutani Paint MFG. Co., Ltd. Mizutani Paint MFG. Co., Ltd. (Japan) ę°“č°·ćƒšć‚¤ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(122400, 'https://ror.org/04s8ff890', 'no_lang_code', 1, 'https://ror.org/04s8ff890 AFC-HD AMS Life Science Co., Ltd. AFC-HD AMS Life Science Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾AFC-HDć‚¢ćƒ ć‚¹ćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(122401, 'https://ror.org/02nv4he32', 'en', 1, 'https://ror.org/02nv4he32 NIHR Academy'),
(122402, 'https://ror.org/024yc3q36', 'en', 1, 'https://ror.org/024yc3q36 Tottori University 鳄取大学'),
(122403, 'https://ror.org/050z59128', 'no_lang_code', 1, 'https://ror.org/050z59128 Chiroro-NET Co., Ltd. Chiroro-NET Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒ­ćƒ­ćƒćƒƒćƒˆ'),
(122404, 'https://ror.org/01a6zh966', 'fr', 1, 'https://ror.org/01a6zh966 Institut de Neurosciences Cognitives et IntĆ©gratives d’Aquitaine'),
(122405, 'https://ror.org/02vwfma54', 'en', 1, 'https://ror.org/02vwfma54 Nam Can Tho University TrĘ°į»ng ĐẔi hį»c Nam Cįŗ§n ThĘ”'),
(122406, 'https://ror.org/033kdcr86', 'no_lang_code', 1, 'https://ror.org/033kdcr86 DKK-TOA Corporation DKK-TOA Corporation (Japan) ę±äŗœćƒ‡ć‚£ćƒ¼ć‚±ćƒ¼ć‚±ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(122407, 'https://ror.org/04x7ypp21', 'no_lang_code', 1, 'https://ror.org/04x7ypp21 Seikoh Giken Co., Ltd. Seikoh Giken Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē²¾å·„ęŠ€ē ”'),
(122408, 'https://ror.org/028484t73', 'no_lang_code', 1, 'https://ror.org/028484t73 Plasma ION Assist Co., Ltd. Plasma ION Assist Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ©ć‚ŗćƒžć‚¤ć‚Ŗćƒ³ć‚¢ć‚·ć‚¹ćƒˆ'),
(122409, 'https://ror.org/03a4z4n18', 'no_lang_code', 1, 'https://ror.org/03a4z4n18 Photon Production Laboratory, Ltd. Photon Production Laboratory, Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å…‰å­ē™ŗē”ŸęŠ€č”“ē ”ē©¶ę‰€'),
(122410, 'https://ror.org/05pkwt516', 'no_lang_code', 1, 'https://ror.org/05pkwt516 Solution CREW, Inc. Solution CREW, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ćƒ»ć‚Æćƒ«ćƒ¼'),
(122411, 'https://ror.org/04gxwdw91', 'no_lang_code', 1, 'https://ror.org/04gxwdw91 Taiatsu Techno Corporation Taiatsu Techno Corporation (Japan) č€åœ§ē”å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122412, 'https://ror.org/039z39d45', 'no_lang_code', 1, 'https://ror.org/039z39d45 Jemco Inc. Jemco Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚øć‚§ćƒ ć‚³'),
(122413, 'https://ror.org/02y7x2v21', 'no_lang_code', 1, 'https://ror.org/02y7x2v21 C.I. Takiron Corporation C.I. Takiron Corporation (Japan) ć‚æć‚­ćƒ­ćƒ³ć‚·ćƒ¼ć‚¢ć‚¤ę Ŗå¼ä¼šē¤¾'),
(122414, 'https://ror.org/04b8exa27', 'no_lang_code', 1, 'https://ror.org/04b8exa27 Shinkeisei Electric Railway Corporation Shinkeisei Electric Railway Corporation (Japan) ę–°äŗ¬ęˆé›»é‰„ę Ŗå¼ä¼šē¤¾'),
(122415, 'https://ror.org/04dhy0408', 'no_lang_code', 1, 'https://ror.org/04dhy0408 Tsugami Corporation Tsugami Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ„ć‚¬ćƒŸ'),
(122416, 'https://ror.org/02vy55b18', 'no_lang_code', 1, 'https://ror.org/02vy55b18 Repertoire Genesis Incorporated Repertoire Genesis Incorporated (Japan) Repertoire Genesisę Ŗå¼ä¼šē¤¾'),
(122417, 'https://ror.org/0249yjw60', 'no_lang_code', 1, 'https://ror.org/0249yjw60 Toabo Corporation Toabo Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ć‚¢ē“”ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(122418, 'https://ror.org/046x9xf09', 'no_lang_code', 1, 'https://ror.org/046x9xf09 S.E.S. Co., Ltd. S.E.S. Co., Ltd. (Japan) ć‚Øć‚¹ćƒ»ć‚¤ćƒ¼ćƒ»ć‚Øć‚¹ę Ŗå¼ä¼šē¤¾'),
(122419, 'https://ror.org/01g1pe685', 'en', 1, 'https://ror.org/01g1pe685 NEOMA Business School Ɖcole supĆ©rieure de commerce de rouen'),
(122420, 'https://ror.org/04e6x9b31', 'no_lang_code', 1, 'https://ror.org/04e6x9b31 Heisei Polymer Co., Ltd. Heisei Polymer Co., Ltd. (Japan) å¹³ęˆćƒćƒŖćƒžćƒ¼ę Ŗå¼ä¼šē¤¾'),
(122421, 'https://ror.org/05f11y362', 'no_lang_code', 1, 'https://ror.org/05f11y362 Horii Pharmaceutical IND., Ltd. Horii Pharmaceutical IND., Ltd. (Japan) å €äŗ•č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122422, 'https://ror.org/04f391x22', 'fr', 0, 'https://ror.org/04f391x22 Centre de recherche public Gabriel-Lippmann'),
(122423, 'https://ror.org/00180fj85', 'no_lang_code', 1, 'https://ror.org/00180fj85 Technoface Corporation Technoface Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚ÆćƒŽćƒ•ć‚§ć‚¤ć‚¹'),
(122424, 'https://ror.org/05szhvd41', 'no_lang_code', 1, 'https://ror.org/05szhvd41 Trend Micro Inc. Trend Micro Inc. (Japan) ćƒˆćƒ¬ćƒ³ćƒ‰ćƒžć‚¤ć‚Æćƒ­ę Ŗå¼ä¼šē¤¾'),
(122425, 'https://ror.org/00yj3j838', 'no_lang_code', 1, 'https://ror.org/00yj3j838 Build Co., Ltd. Build Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ“ćƒ«ćƒ‰'),
(122426, 'https://ror.org/04rn6hj09', 'en', 1, 'https://ror.org/04rn6hj09 Hydrometeorological Research Institute Ilmiy-tadqiqot gidrometeorologiya instituti ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ гиГрометеорологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(122427, 'https://ror.org/0298hp073', 'en', 1, 'https://ror.org/0298hp073 NIHR Liverpool Pancreatic Biomedical Research Unit'),
(122428, 'https://ror.org/00vq4x429', 'no_lang_code', 1, 'https://ror.org/00vq4x429 E-Associates Inc. E-Associates Inc. (Japan) ć‚¤ćƒ¼ćƒ»ć‚¢ć‚½ć‚·ć‚Øć‚¤ćƒ„ę Ŗå¼ä¼šē¤¾'),
(122429, 'https://ror.org/01jgdf008', 'en', 0, 'https://ror.org/01jgdf008 Scottish Agricultural College'),
(122430, 'https://ror.org/04ys9bc31', 'no_lang_code', 1, 'https://ror.org/04ys9bc31 Kiriu Corporation Kiriu Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒŖć‚¦'),
(122431, 'https://ror.org/01mt46z25', 'en', 1, 'https://ror.org/01mt46z25 Leuven Stem Cell Institute Stamcelinstituut Leuven'),
(122432, 'https://ror.org/00fnphk74', 'en', 1, 'https://ror.org/00fnphk74 Al-Manar College for Science and Technology ŁƒŁ„ŁŠŲ© المنار Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(122433, 'https://ror.org/03pssnk88', 'es', 1, 'https://ror.org/03pssnk88 Fundación MenteClara'),
(122434, 'https://ror.org/0445x0472', 'en', 1, 'https://ror.org/0445x0472 Centre de recherches pour le dƩveloppement international International Development Research Centre'),
(122435, 'https://ror.org/00w4b0q93', 'no_lang_code', 1, 'https://ror.org/00w4b0q93 Ahjikan Co., Ltd. Ahjikan Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚ć˜ć‹ć‚“'),
(122436, 'https://ror.org/04jx2g280', 'no_lang_code', 1, 'https://ror.org/04jx2g280 Thermal Co., Ltd. Thermal Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒ¼ćƒžćƒ«'),
(122437, 'https://ror.org/02gswkg02', 'no_lang_code', 1, 'https://ror.org/02gswkg02 Akebono Brake Industry Co., Ltd. Akebono Brake Industry Co., Ltd. (Japan) ę›™ćƒ–ćƒ¬ćƒ¼ć‚­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122438, 'https://ror.org/0096s3190', 'no_lang_code', 1, 'https://ror.org/0096s3190 Spiber Incorporated Spiber Incorporated (Japan) Spiberę Ŗå¼ä¼šē¤¾'),
(122439, 'https://ror.org/00c16rb22', 'no_lang_code', 1, 'https://ror.org/00c16rb22 Konoike Construction Co., Ltd. Konoike Construction Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é“»ę± ēµ„'),
(122440, 'https://ror.org/04b058p26', 'no_lang_code', 1, 'https://ror.org/04b058p26 NU-Systems Corporation NU-Systems Corporation (Japan) NUć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(122441, 'https://ror.org/01afrmj13', 'no_lang_code', 1, 'https://ror.org/01afrmj13 Hosiden Corporation Hosiden Corporation (Japan) ćƒ›ć‚·ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(122442, 'https://ror.org/0280k9j44', 'no_lang_code', 1, 'https://ror.org/0280k9j44 Analysis Center Co., Ltd. Analysis Center Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾åˆ†ęžć‚»ćƒ³ć‚æćƒ¼'),
(122443, 'https://ror.org/039ek5s84', 'no_lang_code', 1, 'https://ror.org/039ek5s84 Spring-8 Service Co., Ltd. Spring-8 Service Co., Ltd. (Japan) ć‚¹ćƒ—ćƒŖćƒ³ć‚°ć‚Øć‚¤ćƒˆć‚µćƒ¼ćƒ“ć‚¹ę Ŗå¼ä¼šē¤¾'),
(122444, 'https://ror.org/02q889781', 'no_lang_code', 1, 'https://ror.org/02q889781 Tietech Co., Ltd. Tietech Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚¤ćƒ†ćƒƒć‚Æ'),
(122445, 'https://ror.org/04wnay617', 'en', 1, 'https://ror.org/04wnay617 Center for Southeast Asian Studies, Kyoto University äŗ¬éƒ½å¤§å­¦ę±å—ć‚¢ć‚øć‚¢åœ°åŸŸē ”ē©¶ē ”ē©¶ę‰€'),
(122446, 'https://ror.org/03abf2m79', 'no_lang_code', 1, 'https://ror.org/03abf2m79 Kumahira SAFE Co., Inc. Kumahira SAFE Co., Inc. (Japan) ę Ŗå¼ä¼šē¤¾ē†Šå¹³č£½ä½œę‰€'),
(122447, 'https://ror.org/01hczme58', 'en', 1, 'https://ror.org/01hczme58 Wildlife Research Center, Kyoto University äŗ¬éƒ½å¤§å­¦é‡Žē”Ÿå‹•ē‰©ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(122448, 'https://ror.org/03r04t614', 'no_lang_code', 1, 'https://ror.org/03r04t614 Geosphere Environmental Technology Corp. Geosphere Environmental Technology Corp. (Japan) ę Ŗå¼ä¼šē¤¾åœ°åœē’°å¢ƒćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼'),
(122449, 'https://ror.org/00ngd1t50', 'fr', 1, 'https://ror.org/00ngd1t50 Ɖcole Normale SupĆ©rieure de Mostaganem المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة مستغانم'),
(122450, 'https://ror.org/02a8bt934', 'en', 1, 'https://ror.org/02a8bt934 Peter MacCallum Cancer Centre'),
(122451, 'https://ror.org/034t30j35', 'en', 1, 'https://ror.org/034t30j35 Chinese Academy of Sciences 中国科学院'),
(122452, 'https://ror.org/02bh93r79', 'no_lang_code', 1, 'https://ror.org/02bh93r79 Ryobi Ltd. Ryobi Ltd. (Japan) ćƒŖćƒ§ćƒ¼ćƒ“ę Ŗå¼ä¼šē¤¾'),
(122453, 'https://ror.org/05pqx0e17', 'no_lang_code', 1, 'https://ror.org/05pqx0e17 Ultrafabrics Holdings Co., Ltd. Ultrafabrics Holdings Co., Ltd. (Japan) ć‚¦ćƒ«ćƒˆćƒ©ćƒ•ć‚”ćƒ–ćƒŖćƒƒć‚Æć‚¹ćƒ»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(122454, 'https://ror.org/046qk9b94', 'no_lang_code', 1, 'https://ror.org/046qk9b94 WOOD ONE Co., Ltd. WOOD ONE Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¦ćƒƒćƒ‰ćƒÆćƒ³'),
(122455, 'https://ror.org/01g0aa243', 'no_lang_code', 1, 'https://ror.org/01g0aa243 T&D Holdings, Inc. T&D Holdings, Inc. (Japan) ę Ŗå¼ä¼šē¤¾T&Dćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(122456, 'https://ror.org/013sh5r34', 'no_lang_code', 1, 'https://ror.org/013sh5r34 Sugino Machine Limited Sugino Machine Limited (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ć‚®ćƒŽćƒžć‚·ćƒ³'),
(122457, 'https://ror.org/00pf9ke98', 'no_lang_code', 1, 'https://ror.org/00pf9ke98 Actcell Corporation Actcell Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚Æć‚»ćƒ«'),
(122458, 'https://ror.org/01zwa1v37', 'no_lang_code', 1, 'https://ror.org/01zwa1v37 J-Power Systems Corporation J-Power Systems Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ»ćƒ‘ćƒÆćƒ¼ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(122459, 'https://ror.org/014d2v825', 'no_lang_code', 1, 'https://ror.org/014d2v825 Geostr Corporation Geostr Corporation (Japan) ć‚øć‚Ŗć‚¹ć‚æćƒ¼ę Ŗå¼ä¼šē¤¾'),
(122460, 'https://ror.org/02dfwh629', 'fr', 1, 'https://ror.org/02dfwh629 Conseil de l''industrie forestière du Québec Quebec Forest Industry Council'),
(122461, 'https://ror.org/00y0sjb52', 'no_lang_code', 1, 'https://ror.org/00y0sjb52 Takanashi MILK Products Co., Ltd. Takanashi MILK Products Co., Ltd. (Japan) é«˜ę¢Øä¹³ę„­ę Ŗå¼ä¼šē¤¾'),
(122462, 'https://ror.org/05tm4b103', 'no_lang_code', 1, 'https://ror.org/05tm4b103 TBR Co., Ltd. TBR Co., Ltd. (Japan) ćƒ†ć‚£ćƒ“ćƒ¼ć‚¢ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(122463, 'https://ror.org/02tmzza66', 'no_lang_code', 1, 'https://ror.org/02tmzza66 Uhero Corp. Uhero Corp. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ’ćƒ¼ćƒ­'),
(122464, 'https://ror.org/008a88758', 'en', 1, 'https://ror.org/008a88758 The Institute of Environmental Geochemistry of National Academy of Sciences of Ukraine Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геохімії навколишнього сереГовища ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України»'),
(122465, 'https://ror.org/05831rr33', 'tr', 1, 'https://ror.org/05831rr33 Eğitim Programları ve Ɩğretim Derneği Turkish Association of Curriculum and Instruction'),
(122466, 'https://ror.org/05jger170', 'no_lang_code', 1, 'https://ror.org/05jger170 Satsuma Shuzo Co., Ltd. Satsuma Shuzo Co., Ltd. (Japan) č–©ę‘©é…’é€ ę Ŗå¼ä¼šē¤¾'),
(122467, 'https://ror.org/01apskb55', 'no_lang_code', 1, 'https://ror.org/01apskb55 Funken Powtechs, Inc. Funken Powtechs, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ē²‰ē ”ćƒ‘ć‚¦ćƒ†ćƒƒć‚Æć‚¹'),
(122468, 'https://ror.org/02ywmqv15', 'fr', 0, 'https://ror.org/02ywmqv15 Laboratoire EpidƩmiologie et Analyses en SantƩ Publique : Risques, Maladies Chroniques et Handicaps'),
(122469, 'https://ror.org/00tr5g423', 'no_lang_code', 1, 'https://ror.org/00tr5g423 Sugiyo Co., Ltd. Sugiyo Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ć‚®ćƒØ'),
(122470, 'https://ror.org/03b86r663', 'no_lang_code', 1, 'https://ror.org/03b86r663 Ohishi Sangyo Co., Ltd. Ohishi Sangyo Co., Ltd. (Japan) å¤§ēŸ³ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(122471, 'https://ror.org/03j3j8h02', 'no_lang_code', 1, 'https://ror.org/03j3j8h02 Takamatsu Machinery Co., Ltd. Takamatsu Machinery Co., Ltd. (Japan) é«˜ę¾ę©Ÿę¢°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122472, 'https://ror.org/05k7kcs30', 'no_lang_code', 1, 'https://ror.org/05k7kcs30 Gohsyu Corporation Gohsyu Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚“ćƒ¼ć‚·ćƒ„ćƒ¼'),
(122473, 'https://ror.org/0461ea526', 'no_lang_code', 1, 'https://ror.org/0461ea526 COMS Engineering Corporation COMS Engineering Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚³ćƒ ć‚¹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(122474, 'https://ror.org/00k4n6c32', 'en', 1, 'https://ror.org/00k4n6c32 Commission europƩenne European Commission Europese Commissie EuropƤische Kommission'),
(122475, 'https://ror.org/01x1rgw45', 'no_lang_code', 1, 'https://ror.org/01x1rgw45 Hayashikane Sangyo Co., Ltd. Hayashikane Sangyo Co., Ltd. (Japan) ęž—å…¼ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(122476, 'https://ror.org/05mj21m66', 'no_lang_code', 1, 'https://ror.org/05mj21m66 Ecomas Co., Ltd. Ecomas Co., Ltd. (Japan) ć‚Øć‚³ćƒžć‚¹ę Ŗå¼ä¼šē¤¾'),
(122477, 'https://ror.org/009bgs970', 'no_lang_code', 1, 'https://ror.org/009bgs970 Shoden Corporation Shoden Corporation (Japan) ę Ŗå¼ä¼šē¤¾ę˜­é›»'),
(122478, 'https://ror.org/00gxr8f70', 'no_lang_code', 1, 'https://ror.org/00gxr8f70 Precision System Science Co., Ltd. Precision System Science Co., Ltd. (Japan) ćƒ—ćƒ¬ć‚·ć‚øćƒ§ćƒ³ćƒ»ć‚·ć‚¹ćƒ†ćƒ ćƒ»ć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(122479, 'https://ror.org/04b2sf459', 'no_lang_code', 1, 'https://ror.org/04b2sf459 Nishimura MFG. Co., Ltd. Nishimura MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾č„æę‘č£½ä½œę‰€'),
(122480, 'https://ror.org/005xbr495', 'no_lang_code', 1, 'https://ror.org/005xbr495 Naiki Co., Ltd. Naiki Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŠć‚¤ć‚­'),
(122481, 'https://ror.org/029xvrz78', 'no_lang_code', 1, 'https://ror.org/029xvrz78 Aiphone Co., Ltd. Aiphone Co., Ltd. (Japan) ć‚¢ć‚¤ćƒ›ćƒ³ę Ŗå¼ä¼šē¤¾'),
(122482, 'https://ror.org/01v5dkk72', 'no_lang_code', 1, 'https://ror.org/01v5dkk72 Tansei Institute Co., Ltd. Tansei Institute Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾äø¹é’ē ”ē©¶ę‰€'),
(122483, 'https://ror.org/00z0mr204', 'no_lang_code', 1, 'https://ror.org/00z0mr204 AWA Paper MFG. Co., Ltd. AWA Paper MFG. Co., Ltd. (Japan) é˜æę³¢č£½ē“™ę Ŗå¼ä¼šē¤¾'),
(122484, 'https://ror.org/05s5vax56', 'no_lang_code', 1, 'https://ror.org/05s5vax56 TBK Co., Ltd. TBK Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾TBK'),
(122485, 'https://ror.org/04mmwc586', 'no_lang_code', 1, 'https://ror.org/04mmwc586 T.RAD Co., Ltd. T.RAD Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚£ćƒ©ćƒ‰'),
(122486, 'https://ror.org/03x8c0e77', 'no_lang_code', 1, 'https://ror.org/03x8c0e77 Izumi FOOD Machinery Co., Ltd. Izumi FOOD Machinery Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ć‚ŗćƒŸćƒ•ćƒ¼ćƒ‰ćƒžć‚·ćƒŠćƒŖ'),
(122487, 'https://ror.org/01z440278', 'no_lang_code', 1, 'https://ror.org/01z440278 Yanagiya Machinery Co., Ltd. Yanagiya Machinery Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¤ćƒŠć‚®ćƒ¤'),
(122488, 'https://ror.org/009ghd096', 'no_lang_code', 1, 'https://ror.org/009ghd096 Tokio Marine Holdings, Inc. Tokio Marine Holdings, Inc. (Japan) ę±äŗ¬ęµ·äøŠćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(122489, 'https://ror.org/010zemh61', 'no_lang_code', 1, 'https://ror.org/010zemh61 A-R-TEC Corp. A-R-TEC Corp. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ć‚¢ćƒ¼ćƒ«ćƒ†ćƒƒć‚Æ'),
(122490, 'https://ror.org/03g1qp931', 'en', 1, 'https://ror.org/03g1qp931 Bangabasi Evening College'),
(122491, 'https://ror.org/02x30sm06', 'no_lang_code', 1, 'https://ror.org/02x30sm06 Nanoteco Corporation Nanoteco Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒŠćƒŽćƒ†ć‚³'),
(122492, 'https://ror.org/01qqg0765', 'no_lang_code', 1, 'https://ror.org/01qqg0765 Pilot Corporation Pilot Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‘ć‚¤ćƒ­ćƒƒćƒˆć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(122493, 'https://ror.org/05m4z7r38', 'no_lang_code', 1, 'https://ror.org/05m4z7r38 Fluoro COAT Corporation Fluoro COAT Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ­ćƒ­ć‚³ćƒ¼ćƒˆ'),
(122494, 'https://ror.org/036vba955', 'no_lang_code', 1, 'https://ror.org/036vba955 Tungaloy Corporation Tungaloy Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚æćƒ³ć‚¬ćƒ­ć‚¤'),
(122495, 'https://ror.org/01gpk0448', 'en', 1, 'https://ror.org/01gpk0448 Sikkim Alpine University'),
(122496, 'https://ror.org/04ybdar45', 'no_lang_code', 1, 'https://ror.org/04ybdar45 Hirotsuku Co., Ltd. Hirotsuku Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ’ćƒ­ćƒ„ć‚Æ'),
(122497, 'https://ror.org/00cxgz148', 'no_lang_code', 1, 'https://ror.org/00cxgz148 Asunaroaoki Construction Co., Ltd. Asunaroaoki Construction Co., Ltd. (Japan) é’ęœØć‚ć™ćŖć‚å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(122498, 'https://ror.org/031hy7140', 'no_lang_code', 1, 'https://ror.org/031hy7140 Daihen Corporation Daihen Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ćƒ˜ćƒ³'),
(122499, 'https://ror.org/05w56qj55', 'no_lang_code', 1, 'https://ror.org/05w56qj55 GK Kyoto Inc. GK Kyoto Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚øć‚¤ć‚±ć‚¤äŗ¬éƒ½'),
(122500, 'https://ror.org/01jg7g981', 'no_lang_code', 1, 'https://ror.org/01jg7g981 Totalmedia Development Institute Co., Ltd. Totalmedia Development Institute Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ć‚æćƒ«ćƒ”ćƒ‡ć‚£ć‚¢é–‹ē™ŗē ”ē©¶ę‰€'),
(122501, 'https://ror.org/02hvyee60', 'fr', 1, 'https://ror.org/02hvyee60 Laboratoire de recherche ENAC'),
(122502, 'https://ror.org/038jz4194', 'en', 1, 'https://ror.org/038jz4194 Open Institute of Technology Open Institute of Technology Limited'),
(122503, 'https://ror.org/03rbsph79', 'no_lang_code', 1, 'https://ror.org/03rbsph79 WEB Intelligence Laboratory WEB Intelligence Laboratory (Japan) ęœ‰é™ä¼šē¤¾ć‚¦ć‚§ćƒ–ćƒ»ć‚¤ćƒ³ćƒ†ćƒŖć‚øć‚§ćƒ³ć‚¹ćƒ»ćƒ©ćƒœ'),
(122504, 'https://ror.org/02hcvjv89', 'no_lang_code', 1, 'https://ror.org/02hcvjv89 Ouchi Shinko Chemical Industrial Co., Ltd. Ouchi Shinko Chemical Industrial Co., Ltd. (Japan) å¤§å†…ę–°čˆˆåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122505, 'https://ror.org/047nd6f52', 'no_lang_code', 1, 'https://ror.org/047nd6f52 Isolite Insulating Products Co., Ltd. Isolite Insulating Products Co., Ltd. (Japan) ć‚¤ć‚½ćƒ©ć‚¤ćƒˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122506, 'https://ror.org/02z0ffd08', 'no_lang_code', 1, 'https://ror.org/02z0ffd08 Ergoseating Co., Ltd. Ergoseating Co., Ltd. (Japan) ć‚Øćƒ«ć‚“ć‚·ćƒ¼ćƒ†ć‚£ćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(122507, 'https://ror.org/01v85d902', 'no_lang_code', 1, 'https://ror.org/01v85d902 Canbas Co., Ltd. Canbas Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒ£ćƒ³ćƒć‚¹'),
(122508, 'https://ror.org/01y4kmz24', 'en', 1, 'https://ror.org/01y4kmz24 NIHR Royal Brompton Cardiovascular Biomedical Research Unit'),
(122509, 'https://ror.org/01bj4ch94', 'no_lang_code', 1, 'https://ror.org/01bj4ch94 Sanki Engineering Co., Ltd. Sanki Engineering Co., Ltd. (Japan) äø‰ę©Ÿå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122510, 'https://ror.org/00tzwes05', 'no_lang_code', 1, 'https://ror.org/00tzwes05 SMK Corporation SMK Corporation (Japan) SMKę Ŗå¼ä¼šē¤¾'),
(122511, 'https://ror.org/04dmsj816', 'de', 1, 'https://ror.org/04dmsj816 Fischereiforschungsstelle Baden-Württemberg (LAZBW) Fisheries Research Station Baden-Württemberg'),
(122512, 'https://ror.org/01h0zpd94', 'en', 1, 'https://ror.org/01h0zpd94 National Natural Science Foundation of China å›½å®¶č‡Ŗē„¶ē§‘å­¦åŸŗé‡‘å§”å‘˜ä¼š'),
(122513, 'https://ror.org/04x93ht24', 'no_lang_code', 1, 'https://ror.org/04x93ht24 Shinnippon Wheel Industries Co., Ltd. Shinnippon Wheel Industries Co., Ltd. (Japan) ę–°ę—„ęœ¬ćƒ›ć‚¤ćƒ¼ćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122514, 'https://ror.org/0502wjj29', 'no_lang_code', 1, 'https://ror.org/0502wjj29 Alpine Electronics, Inc. Alpine Electronics, Inc. (Japan) ć‚¢ćƒ«ćƒ‘ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(122515, 'https://ror.org/05tbykf24', 'fr', 1, 'https://ror.org/05tbykf24 Lettres, Langages et Arts - CrĆ©ation, Recherche, Ɖmergence en Arts, Textes, Images, Spectacles'),
(122516, 'https://ror.org/02e2bb523', 'no_lang_code', 1, 'https://ror.org/02e2bb523 Kawaden Corporation Kawaden Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‹ć‚ć§ć‚“'),
(122517, 'https://ror.org/05mmzdp41', 'no_lang_code', 1, 'https://ror.org/05mmzdp41 Usugidenkaikougyou Co., Ltd. Usugidenkaikougyou Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾č–„č”£é›»č§£å·„ę„­'),
(122518, 'https://ror.org/00ardzg61', 'no_lang_code', 1, 'https://ror.org/00ardzg61 Creative Design Corp. Creative Design Corp. (Japan) ć‚ÆćƒŖć‚Øćƒ¼ćƒˆćƒ»ćƒ‡ć‚¶ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(122519, 'https://ror.org/04gj4y479', 'es', 1, 'https://ror.org/04gj4y479 Gizarte Ikerketa Aurreraturako Institutua Institute for Advanced Social Research Instituto de Investigación Social Avanzada'),
(122520, 'https://ror.org/037c76t14', 'no_lang_code', 1, 'https://ror.org/037c76t14 Wisdomtex, Inc. Wisdomtex, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¦ć‚£ć‚ŗćƒ€ćƒ ćƒ†ćƒƒć‚Æ'),
(122521, 'https://ror.org/022zdgq74', 'fr', 1, 'https://ror.org/022zdgq74 Ɖcole Nationale de l’Aviation Civile'),
(122522, 'https://ror.org/01kmhx639', 'en', 1, 'https://ror.org/01kmhx639 NIHR Imperial Biomedical Research Centre'),
(122523, 'https://ror.org/04mkd6r71', 'en', 1, 'https://ror.org/04mkd6r71 Frost Institute for Data Science & Computing'),
(122524, 'https://ror.org/03gay0164', 'es', 1, 'https://ror.org/03gay0164 Polytechnic University of Huatusco Universidad PolitƩcnica de Huatusco'),
(122525, 'https://ror.org/04nqgdy63', 'fr', 1, 'https://ror.org/04nqgdy63 Biochemistry and Toxicology of Bioactive Molecules Biochemistry and Toxicology of Bioactive Substances Biochimie et Toxicologie des Substances Bioactives'),
(122526, 'https://ror.org/05bayjd51', 'no_lang_code', 1, 'https://ror.org/05bayjd51 Chiome Bioscience Inc. Chiome Bioscience Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ć‚¤ć‚Ŗćƒ ćƒ»ćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(122527, 'https://ror.org/04pfp9r13', 'no_lang_code', 1, 'https://ror.org/04pfp9r13 Nishinihon Institute OF Technology Nishinihon Institute OF Technology (Japan) ę Ŗå¼ä¼šē¤¾č„æę—„ęœ¬ē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(122528, 'https://ror.org/01rxyns10', 'no_lang_code', 1, 'https://ror.org/01rxyns10 Kimura Chemical Plants Co., Ltd. Kimura Chemical Plants Co., Ltd. (Japan) ęœØę‘åŒ–å·„ę©Ÿę Ŗå¼ä¼šē¤¾'),
(122529, 'https://ror.org/00w05b929', 'no_lang_code', 1, 'https://ror.org/00w05b929 Itrek Corporation Itrek Corporation (Japan) ęœ‰é™ä¼šē¤¾ć‚¢ć‚¤ćƒˆćƒ¬ćƒƒć‚Æ'),
(122530, 'https://ror.org/044zrwg47', 'no_lang_code', 1, 'https://ror.org/044zrwg47 Meiko Construction Co., Ltd. Meiko Construction Co., Ltd. (Japan) åå·„å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(122531, 'https://ror.org/02czvyn71', 'no_lang_code', 1, 'https://ror.org/02czvyn71 Semba Tohka Industries Co., Ltd. Semba Tohka Industries Co., Ltd. (Japan) ä»™ę³¢ē³–åŒ–å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122532, 'https://ror.org/00znhqf32', 'no_lang_code', 1, 'https://ror.org/00znhqf32 Mitos Co. Ltd. Mitos Co. Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒžć‚¤ćƒˆć‚¹'),
(122533, 'https://ror.org/00wh5bn38', 'no_lang_code', 1, 'https://ror.org/00wh5bn38 GOH IRON Works Co., Ltd. GOH IRON Works Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾éƒ·é‰„å·„ę‰€'),
(122534, 'https://ror.org/01qawtc49', 'en', 1, 'https://ror.org/01qawtc49 Indraprastha College for Women'),
(122535, 'https://ror.org/01aek7325', 'no_lang_code', 1, 'https://ror.org/01aek7325 NTK Ceratec Co., Ltd. NTK Ceratec Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾NTKć‚»ćƒ©ćƒ†ćƒƒć‚Æ'),
(122536, 'https://ror.org/03ytab147', 'en', 1, 'https://ror.org/03ytab147 EUNEIZ La Universidad de Nuevas TecnologĆ­as, Deporte y Salud'),
(122537, 'https://ror.org/01sxnfp95', 'no', 0, 'https://ror.org/01sxnfp95 Haraldsplass Deaconess University College Haraldsplass diakonale hĆøgskole'),
(122538, 'https://ror.org/05x4z8p77', 'no_lang_code', 1, 'https://ror.org/05x4z8p77 Onamba Co., Ltd. Onamba Co., Ltd. (Japan) ć‚Ŗćƒ¼ćƒŠćƒ³ćƒę Ŗå¼ä¼šē¤¾'),
(122539, 'https://ror.org/03d2anr65', 'no_lang_code', 1, 'https://ror.org/03d2anr65 Capty Co., Ltd. Capty Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒ£ćƒ—ćƒ†ć‚£'),
(122540, 'https://ror.org/01jjh5e95', 'no_lang_code', 1, 'https://ror.org/01jjh5e95 Nacalai Tesque, Inc. Nacalai Tesque, Inc. (Japan) ćƒŠć‚«ćƒ©ć‚¤ćƒ†ć‚¹ć‚Æę Ŗå¼ä¼šē¤¾'),
(122541, 'https://ror.org/00yc03j58', 'no_lang_code', 1, 'https://ror.org/00yc03j58 Kodama Chemical Industry Co., Ltd. Kodama Chemical Industry Co., Ltd. (Japan) å…ēŽ‰åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122542, 'https://ror.org/05mcs2t73', 'en', 1, 'https://ror.org/05mcs2t73 Kementerian Pengajian Tinggi Ministry of Higher Education'),
(122543, 'https://ror.org/04m70py72', 'no_lang_code', 1, 'https://ror.org/04m70py72 Starlite Co., Ltd. Starlite Co., Ltd. (Japan) ć‚¹ć‚æćƒ¼ćƒ©ć‚¤ćƒˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122544, 'https://ror.org/02455z596', 'no_lang_code', 1, 'https://ror.org/02455z596 Tempearl Industrial Co., Ltd. Tempearl Industrial Co., Ltd. (Japan) ćƒ†ćƒ³ćƒ‘ćƒ¼ćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122545, 'https://ror.org/054kayq05', 'no_lang_code', 1, 'https://ror.org/054kayq05 SPD Laboratory, Inc. SPD Laboratory, Inc. (Japan) ę Ŗå¼ä¼šē¤¾SPD研究所'),
(122546, 'https://ror.org/0219h8t82', 'no_lang_code', 1, 'https://ror.org/0219h8t82 Otani Paint MFG. Co., Ltd. Otani Paint MFG. Co., Ltd. (Japan) å¤§č°·å”—ę–™ę Ŗå¼ä¼šē¤¾'),
(122547, 'https://ror.org/02ytajg03', 'pt', 1, 'https://ror.org/02ytajg03 Faculdade de Educação da Ibiapaba'),
(122548, 'https://ror.org/04vjyfb95', 'no_lang_code', 1, 'https://ror.org/04vjyfb95 Macoho Co., Ltd. Macoho Co., Ltd. (Japan) ćƒžć‚³ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(122549, 'https://ror.org/02kv4zf79', 'en', 1, 'https://ror.org/02kv4zf79 National Science and Technology Council åœ‹å®¶ē§‘å­øåŠęŠ€č”“å§”å“”ęœƒ åœ‹ē§‘ęœƒ'),
(122550, 'https://ror.org/009qdna33', 'no_lang_code', 1, 'https://ror.org/009qdna33 Yamahachi Dental MFG., Co. Yamahachi Dental MFG., Co. (Japan) å±±å…«ę­Æęå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122551, 'https://ror.org/02wwzvj46', 'fr', 1, 'https://ror.org/02wwzvj46 University of Tours UniversitƩ de Tours'),
(122552, 'https://ror.org/01pv73b02', 'en', 1, 'https://ror.org/01pv73b02 Czech Science Foundation'),
(122553, 'https://ror.org/01h6gm266', 'no_lang_code', 1, 'https://ror.org/01h6gm266 Moriya Corporation Moriya Corporation (Japan) ę Ŗå¼ä¼šē¤¾å®ˆč°·å•†ä¼š'),
(122554, 'https://ror.org/00yfap710', 'no_lang_code', 1, 'https://ror.org/00yfap710 Seirei Industry Co., Ltd. Seirei Industry Co., Ltd. (Japan) ć‚»ć‚¤ćƒ¬ć‚¤å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122555, 'https://ror.org/00c1dt378', 'en', 1, 'https://ror.org/00c1dt378 Queensland Health'),
(122556, 'https://ror.org/04d83rc16', 'no_lang_code', 1, 'https://ror.org/04d83rc16 Tamagawa Seiki Co., Ltd. Tamagawa Seiki Co., Ltd. (Japan) å¤šę‘©å·ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(122557, 'https://ror.org/04cxk0625', 'no_lang_code', 1, 'https://ror.org/04cxk0625 Kasai Kogyo Co., Ltd. Kasai Kogyo Co., Ltd. (Japan) ę²³č„æå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122558, 'https://ror.org/05wnn3v91', 'no_lang_code', 1, 'https://ror.org/05wnn3v91 Minami Nippon MEAT Packers Inc. Minami Nippon MEAT Packers Inc. (Japan) å—ę—„ęœ¬ćƒćƒ ę Ŗå¼ä¼šē¤¾'),
(122559, 'https://ror.org/03bs18y54', 'no_lang_code', 1, 'https://ror.org/03bs18y54 Infosys Infosys (India)'),
(122560, 'https://ror.org/03jeq5x38', 'no_lang_code', 1, 'https://ror.org/03jeq5x38 Tsubota Laboratory Incorporated Tsubota Laboratory Incorporated (Japan) ę Ŗå¼ä¼šē¤¾åŖē”°ćƒ©ćƒœ'),
(122561, 'https://ror.org/05k73zm37', 'en', 1, 'https://ror.org/05k73zm37 Finlands Akademi Research Council of Finland Suomen Akatemia'),
(122562, 'https://ror.org/039cpsd31', 'no_lang_code', 1, 'https://ror.org/039cpsd31 KGK Company Limited KGK Company Limited (Japan) å›½éš›ęŠ€č”“é–‹ē™ŗę Ŗå¼ä¼šē¤¾');
INSERT INTO `rors` VALUES
(122563, 'https://ror.org/0204qhq40', 'no_lang_code', 1, 'https://ror.org/0204qhq40 Hosokawa-Tex, Inc. Hosokawa-Tex, Inc. (Japan) ē“°å·ę©Ÿę„­ę Ŗå¼ä¼šē¤¾'),
(122564, 'https://ror.org/01pvwv052', 'no_lang_code', 1, 'https://ror.org/01pvwv052 Yamaguchi Technology Licensing Organization, Ltd. Yamaguchi Technology Licensing Organization, Ltd. (Japan) ęœ‰é™ä¼šē¤¾å±±å£ćƒ†ć‚£ćƒ¼ćƒ»ć‚Øćƒ«ćƒ»ć‚Ŗćƒ¼'),
(122565, 'https://ror.org/00t2hwt38', 'no_lang_code', 1, 'https://ror.org/00t2hwt38 JCU Corporation JCU Corporation (Japan) ę Ŗå¼ä¼šē¤¾JCU'),
(122566, 'https://ror.org/04v7ftc96', 'en', 1, 'https://ror.org/04v7ftc96 Prelude Therapeutics Incorporated Prelude Therapeutics Incorporated (United States)'),
(122567, 'https://ror.org/00wds2f83', 'no_lang_code', 1, 'https://ror.org/00wds2f83 TOPY Industries, Ltd. TOPY Industries, Ltd. (Japan) ćƒˆćƒ”ćƒ¼å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122568, 'https://ror.org/04564s218', 'no_lang_code', 1, 'https://ror.org/04564s218 Misawa Homes Institute OF Research And Development Co., Ltd. Misawa Homes Institute OF Research And Development Co., Ltd. (Japan) Misawa Homes Institute of Research and Development Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŸć‚µćƒÆćƒ›ćƒ¼ćƒ ē·åˆē ”ē©¶ę‰€'),
(122569, 'https://ror.org/0160d1x35', 'pt', 1, 'https://ror.org/0160d1x35 Centro UniversitƔrio EvangƩlico de GoianƩsia'),
(122570, 'https://ror.org/01214gr97', 'en', 1, 'https://ror.org/01214gr97 University of Jhang Ų¬Ś¾Ł†Ł˜ŚÆ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(122571, 'https://ror.org/040kzh605', 'no_lang_code', 1, 'https://ror.org/040kzh605 Hakutsuru SAKE Brewing Co., Ltd. Hakutsuru SAKE Brewing Co., Ltd. (Japan) ē™½é¶“é…’é€ ę Ŗå¼ä¼šē¤¾'),
(122572, 'https://ror.org/04tv5a118', 'no_lang_code', 1, 'https://ror.org/04tv5a118 Yotai Refractories Co., Ltd. Yotai Refractories Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒØćƒ¼ć‚æć‚¤'),
(122573, 'https://ror.org/04y53rg21', 'no_lang_code', 1, 'https://ror.org/04y53rg21 Parking Solutions Co., Ltd. Parking Solutions Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‘ćƒ¼ć‚­ćƒ³ć‚°ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗ'),
(122574, 'https://ror.org/025xed883', 'en', 0, 'https://ror.org/025xed883 Paris-Sorbonne University University of Paris IV - Paris-Sorbonne UniversitƩ Paris-Sorbonne, Paris IV'),
(122575, 'https://ror.org/049ja8k39', 'no_lang_code', 1, 'https://ror.org/049ja8k39 Commuture Corp. Commuture Corp. (Japan) ę Ŗå¼ä¼šē¤¾ć‚³ćƒŸćƒ„ćƒ¼ćƒćƒ„ć‚¢'),
(122576, 'https://ror.org/01b5g6d73', 'no_lang_code', 1, 'https://ror.org/01b5g6d73 Mizushima Ferroalloy Co., Ltd. Mizushima Ferroalloy Co., Ltd. (Japan) ę°“å³¶åˆé‡‘é‰„ę Ŗå¼ä¼šē¤¾'),
(122577, 'https://ror.org/031ray483', 'no_lang_code', 1, 'https://ror.org/031ray483 Jalco Co., Ltd. Jalco Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ£ćƒ«ć‚³'),
(122578, 'https://ror.org/05dvnrq39', 'no_lang_code', 1, 'https://ror.org/05dvnrq39 Unipulse Corporation Unipulse Corporation (Japan) ćƒ¦ćƒ‹ćƒ‘ćƒ«ć‚¹ę Ŗå¼ä¼šē¤¾'),
(122579, 'https://ror.org/03xssrp53', 'fr', 1, 'https://ror.org/03xssrp53 DƩlƩgation RƩgionale Occitanie PyrƩnƩes'),
(122580, 'https://ror.org/0241zx725', 'no_lang_code', 1, 'https://ror.org/0241zx725 Wireless Communication Laboratory Wireless Communication Laboratory (Japan) ę Ŗå¼ä¼šē¤¾ćƒÆć‚¤ćƒ¤ćƒ¬ć‚¹ć‚³ćƒŸćƒ„ćƒ‹ć‚±ćƒ¼ć‚·ćƒ§ćƒ³ē ”ē©¶ę‰€'),
(122581, 'https://ror.org/056zq0q33', 'no_lang_code', 1, 'https://ror.org/056zq0q33 GEL-Design Inc. GEL-Design Inc. (Japan) ę Ŗå¼ä¼šē¤¾GEL-Design'),
(122582, 'https://ror.org/021d59769', 'no_lang_code', 1, 'https://ror.org/021d59769 ISA Co., Ltd. ISA Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ć‚Øć‚¹ć‚Øć‚¤'),
(122583, 'https://ror.org/04jaecs44', 'no_lang_code', 1, 'https://ror.org/04jaecs44 Fancl Corporation Fancl Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚”ćƒ³ć‚±ćƒ«'),
(122584, 'https://ror.org/04hg48w53', 'no_lang_code', 1, 'https://ror.org/04hg48w53 A-Marine Kindai Co., Ltd. A-Marine Kindai Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ćƒžćƒŖćƒ³čæ‘å¤§'),
(122585, 'https://ror.org/021fsya53', 'no_lang_code', 1, 'https://ror.org/021fsya53 Echigo Seika Co., Ltd. Echigo Seika Co., Ltd. (Japan) č¶Šå¾Œč£½č“ę Ŗå¼ä¼šē¤¾'),
(122586, 'https://ror.org/03fsn7s54', 'no_lang_code', 1, 'https://ror.org/03fsn7s54 Dynapac Co., Ltd. Dynapac Co., Ltd. (Japan) ćƒ€ć‚¤ćƒŠćƒ‘ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(122587, 'https://ror.org/00znxn265', 'en', 1, 'https://ror.org/00znxn265 Research Institute for the Digital Transformation of Science ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š· цифрової трансформації науки'),
(122588, 'https://ror.org/00scbd467', 'en', 1, 'https://ror.org/00scbd467 National Bureau of Plant Genetic Resources'),
(122589, 'https://ror.org/05svhj534', 'da', 1, 'https://ror.org/05svhj534 Danmarks Frie Forskningsfond Independent Research Fund Denmark'),
(122590, 'https://ror.org/011hn1c89', 'en', 1, 'https://ror.org/011hn1c89 National Hospital of Sri Lanka ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®¤ąÆ‡ą®šą®æą®Æ ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆ ą·ą·Šą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶¢ą·ą¶­ą·’ą¶š ą¶»ą·ą·„ą¶½'),
(122591, 'https://ror.org/02ysge476', 'no_lang_code', 1, 'https://ror.org/02ysge476 Tsuno FOOD Industrial Co., Ltd. Tsuno FOOD Industrial Co., Ltd. (Japan) ēÆ‰é‡Žé£Ÿå“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122592, 'https://ror.org/00vqdb505', 'no_lang_code', 1, 'https://ror.org/00vqdb505 Y''S Therapeutics Co., Ltd. Y''S Therapeutics Co., Ltd. (Japan) ćƒÆć‚¤ć‚ŗć‚»ćƒ©ćƒ”ćƒ„ćƒ¼ćƒ†ć‚£ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(122593, 'https://ror.org/03kn85975', 'no_lang_code', 1, 'https://ror.org/03kn85975 Asaka Industrial Co., Ltd. Asaka Industrial Co., Ltd. (Japan) ęµ…é¦™å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122594, 'https://ror.org/045e4t748', 'no_lang_code', 1, 'https://ror.org/045e4t748 Chudenko Corporation Chudenko Corporation (Japan) ę Ŗå¼ä¼šē¤¾äø­é›»å·„'),
(122595, 'https://ror.org/02ddkpn78', 'pt', 1, 'https://ror.org/02ddkpn78 Fundação de Amparo à Pesquisa do Estado de São Paulo São Paulo Research Foundation'),
(122596, 'https://ror.org/005y2ap84', 'fr', 1, 'https://ror.org/005y2ap84 Office National d''Ɖtudes et de Recherches AĆ©rospatiales Office National d’Études et de Recherches AĆ©ronautiques'),
(122597, 'https://ror.org/055dx1g69', 'no_lang_code', 1, 'https://ror.org/055dx1g69 Greening Laboratory Ltd. Greening Laboratory Ltd. (Japan) ęœ‰é™ä¼šē¤¾ć‚°ćƒŖćƒ¼ćƒ‹ćƒ³ć‚°ćƒ©ćƒœćƒ©ćƒˆćƒŖ'),
(122598, 'https://ror.org/03enrvz51', 'cs', 1, 'https://ror.org/03enrvz51 NĆ”rodnĆ­ Ústav pro VzdělĆ”vĆ”nĆ­'),
(122599, 'https://ror.org/053z78428', 'no_lang_code', 1, 'https://ror.org/053z78428 Oshikiri Machinery Ltd. Oshikiri Machinery Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗć‚·ć‚­ćƒŖ'),
(122600, 'https://ror.org/04fg7wk38', 'en', 1, 'https://ror.org/04fg7wk38 Wadie Helmand University وادي هلمند Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(122601, 'https://ror.org/02yknsn66', 'no_lang_code', 1, 'https://ror.org/02yknsn66 HI-Mecha Corporation HI-Mecha Corporation (Japan) ćƒć‚¤ćƒ”ć‚«ę Ŗå¼ä¼šē¤¾'),
(122602, 'https://ror.org/04amkzs34', 'no_lang_code', 1, 'https://ror.org/04amkzs34 SHIN-Nakamura Chemical Co., Ltd. SHIN-Nakamura Chemical Co., Ltd. (Japan) ę–°äø­ę‘åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122603, 'https://ror.org/05x250a38', 'en', 1, 'https://ror.org/05x250a38 GrandEdu Research School'),
(122604, 'https://ror.org/01gek1696', 'en', 1, 'https://ror.org/01gek1696 Sistema Universitario de Texas The University of Texas System UniversitƩ du Texas'),
(122605, 'https://ror.org/03e4ea829', 'no_lang_code', 1, 'https://ror.org/03e4ea829 Aimedic MMT Co., Ltd. Aimedic MMT Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾Aimedic MMT'),
(122606, 'https://ror.org/053fn8c73', 'no_lang_code', 0, 'https://ror.org/053fn8c73 Paperworld Co., Ltd. Paperworld Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒšćƒ¼ćƒ‘ćƒ¼ćƒÆćƒ¼ćƒ«ćƒ‰'),
(122607, 'https://ror.org/05ws8re48', 'no_lang_code', 1, 'https://ror.org/05ws8re48 Livegraphy Laboratories Limited Livegraphy Laboratories Limited (Japan) ę Ŗå¼ä¼šē¤¾ćƒ©ć‚¤ćƒ–ć‚°ćƒ©ćƒ•ć‚£ē ”ē©¶ę‰€'),
(122608, 'https://ror.org/01q7qt733', 'no_lang_code', 1, 'https://ror.org/01q7qt733 RASA Industries Ltd. RASA Industries Ltd. (Japan) ćƒ©ć‚µå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122609, 'https://ror.org/02vqcxq46', 'en', 1, 'https://ror.org/02vqcxq46 IUVAS Institute for Urban Variations and Architectural Systems Istituto per le Variazioni Urbane e i Sistemi Architettonici'),
(122610, 'https://ror.org/01es80a70', 'no_lang_code', 1, 'https://ror.org/01es80a70 Shibata Industrial, Co., Ltd. Shibata Industrial, Co., Ltd. (Japan) ć‚·ćƒć‚æå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122611, 'https://ror.org/04npc0z59', 'no_lang_code', 1, 'https://ror.org/04npc0z59 Irumagawa Rubber Co., Ltd. Irumagawa Rubber Co., Ltd. (Japan) å…„é–“å·ć‚“ćƒ ę Ŗå¼ä¼šē¤¾'),
(122612, 'https://ror.org/04nasg809', 'no_lang_code', 1, 'https://ror.org/04nasg809 Nakashima Propeller Co., Ltd. Nakashima Propeller Co., Ltd. (Japan) ćƒŠć‚«ć‚·ćƒžćƒ—ćƒ­ćƒšćƒ©ę Ŗå¼ä¼šē¤¾'),
(122613, 'https://ror.org/03xrz2914', 'no_lang_code', 1, 'https://ror.org/03xrz2914 Tivoli Co., Ltd. Tivoli Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć”ć¼ć‚Š'),
(122614, 'https://ror.org/05920nc59', 'no_lang_code', 1, 'https://ror.org/05920nc59 NLI Research Institute NLI Research Institute (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒƒć‚»ć‚¤åŸŗē¤Žē ”ē©¶ę‰€'),
(122615, 'https://ror.org/05fj7ar22', 'en', 1, 'https://ror.org/05fj7ar22 NIHR Research Delivery Network'),
(122616, 'https://ror.org/03te8jq27', 'no_lang_code', 1, 'https://ror.org/03te8jq27 Nidek Co., Ltd. Nidek Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ‡ćƒƒć‚Æ'),
(122617, 'https://ror.org/05041v694', 'en', 0, 'https://ror.org/05041v694 ProfessionshĆøjskolen UCC University College Capital'),
(122618, 'https://ror.org/04pa7ac76', 'no_lang_code', 1, 'https://ror.org/04pa7ac76 Washin Paint Co., Ltd. Washin Paint Co., Ltd. (Japan) å’Œäæ”ćƒšć‚¤ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(122619, 'https://ror.org/03p0y8785', 'no_lang_code', 1, 'https://ror.org/03p0y8785 Haseko Corporation Haseko Corporation (Japan) ę Ŗå¼ä¼šē¤¾é•·č°·å·„ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(122620, 'https://ror.org/00397f963', 'en', 1, 'https://ror.org/00397f963 School of Interdisciplinary Sciences and Arts TrĘ°į»ng Khoa hį»c liĆŖn ngĆ nh vĆ  Nghệ thuįŗ­t'),
(122621, 'https://ror.org/03ja4b568', 'no_lang_code', 1, 'https://ror.org/03ja4b568 Kurabo Industries Ltd. Kurabo Industries Ltd. (Japan) å€‰ę•·ē“”ēø¾ę Ŗå¼ä¼šē¤¾'),
(122622, 'https://ror.org/05946fm38', 'no_lang_code', 1, 'https://ror.org/05946fm38 Spancrete Corporation Spancrete Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ćƒ‘ćƒ³ć‚ÆćƒŖćƒ¼ćƒˆć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(122623, 'https://ror.org/00xhn7688', 'no_lang_code', 1, 'https://ror.org/00xhn7688 Jokoh Co., Ltd. Jokoh Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾åøøå…‰'),
(122624, 'https://ror.org/04m9xvq67', 'no_lang_code', 1, 'https://ror.org/04m9xvq67 Sukegawa Electric Co., Ltd. Sukegawa Electric Co., Ltd. (Japan) åŠ©å·é›»ę°—å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122625, 'https://ror.org/04pbznh21', 'no_lang_code', 1, 'https://ror.org/04pbznh21 I-O DATA Device, Inc. I-O DATA Device, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ»ć‚Ŗćƒ¼ćƒ»ćƒ‡ćƒ¼ć‚æę©Ÿå™Ø'),
(122626, 'https://ror.org/005af3e19', 'id', 1, 'https://ror.org/005af3e19 Universitas Nias Raya'),
(122627, 'https://ror.org/04avm1t23', 'no_lang_code', 1, 'https://ror.org/04avm1t23 Diabetym Co., Ltd. Diabetym Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ć‚¢ćƒ™ćƒ†ć‚£ćƒ '),
(122628, 'https://ror.org/01kvd5e47', 'en', 1, 'https://ror.org/01kvd5e47 HiberCell HiberCell, Inc. HiberCell, Inc. (United States)'),
(122629, 'https://ror.org/05fcw6535', 'en', 1, 'https://ror.org/05fcw6535 Lasker Foundation'),
(122630, 'https://ror.org/01a3mef16', 'en', 1, 'https://ror.org/01a3mef16 Pondicherry University ą¤Ŗą„‰ą¤Øą„ą¤”ą¤æą¤šą„‡ą¤°ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®ŖąÆą®¤ąÆą®µąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°Ŗą°¾ą°‚ą°”ą°æą°šą±ą°šą±‡ą°°ą°æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą“Ŗąµ‹ą“£ąµą“Ÿą“æą“šąµą“šąµ‡ą“°ą“æ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(122631, 'https://ror.org/019afqe70', 'no_lang_code', 1, 'https://ror.org/019afqe70 O-M Ltd. O-M Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ć‚Øćƒ č£½ä½œę‰€'),
(122632, 'https://ror.org/00t9hxg59', 'no_lang_code', 1, 'https://ror.org/00t9hxg59 TAMA-TLO Ltd. TAMA-TLO Ltd. (Japan) ć‚æćƒžćƒ†ć‚£ćƒ¼ć‚Øćƒ«ć‚Ŗćƒ¼ę Ŗå¼ä¼šē¤¾'),
(122633, 'https://ror.org/04tph8a06', 'no_lang_code', 1, 'https://ror.org/04tph8a06 UMG ABS, Ltd. UMG ABS, Ltd. (Japan) ćƒ¦ćƒ¼ć‚Øćƒ ć‚øćƒ¼ćƒ»ć‚Øćƒ¼ćƒ“ćƒ¼ć‚Øć‚¹ę Ŗå¼ä¼šē¤¾'),
(122634, 'https://ror.org/00zbf9h87', 'no_lang_code', 1, 'https://ror.org/00zbf9h87 Xyence Corporation Xyence Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¶ć‚¤ć‚Øćƒ³ć‚¹'),
(122635, 'https://ror.org/03bzxdq39', 'no_lang_code', 1, 'https://ror.org/03bzxdq39 Milliman, Incorporated Milliman, Incorporated (Japan) ćƒŸćƒŖćƒžćƒ³ćƒ»ć‚¤ćƒ³ć‚Æ'),
(122636, 'https://ror.org/04zc2j197', 'no_lang_code', 1, 'https://ror.org/04zc2j197 Prime Polymer Co., Ltd. Prime Polymer Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ©ć‚¤ćƒ ćƒćƒŖćƒžćƒ¼'),
(122637, 'https://ror.org/03hyjk182', 'no_lang_code', 1, 'https://ror.org/03hyjk182 Tomey Corporation Tomey Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ćƒ”ćƒ¼ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(122638, 'https://ror.org/041pxny17', 'no_lang_code', 1, 'https://ror.org/041pxny17 Lofty Co., Ltd. Lofty Co., Ltd. (Japan) ćƒ­ćƒ•ćƒ†ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(122639, 'https://ror.org/0443f8y28', 'no_lang_code', 1, 'https://ror.org/0443f8y28 Uchiyama Manufacturing Corp. Uchiyama Manufacturing Corp. (Japan) å†…å±±å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122640, 'https://ror.org/03ep9aj35', 'no_lang_code', 1, 'https://ror.org/03ep9aj35 TFK Co., Ltd. TFK Co., Ltd. (Japan) ćƒ†ć‚£ćƒ¼ć‚Øćƒ•ć‚±ć‚¤ę Ŗå¼ä¼šē¤¾'),
(122641, 'https://ror.org/0349y2q65', 'en', 1, 'https://ror.org/0349y2q65 TBS Education'),
(122642, 'https://ror.org/02vj1vm13', 'en', 1, 'https://ror.org/02vj1vm13 Minnan Normal University é—½å—åøˆčŒƒå¤§å­¦'),
(122643, 'https://ror.org/03g292s54', 'no_lang_code', 1, 'https://ror.org/03g292s54 Kithit Co., Ltd. Kithit Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒƒćƒˆćƒ’ćƒƒćƒˆ'),
(122644, 'https://ror.org/00nx09v50', 'no_lang_code', 1, 'https://ror.org/00nx09v50 Sanbishi Co., Ltd. Sanbishi Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ćƒ“ć‚·'),
(122645, 'https://ror.org/03e7pqd57', 'no_lang_code', 1, 'https://ror.org/03e7pqd57 K1-MET GmbH K1-MET GmbH (Austria)'),
(122646, 'https://ror.org/05vtkma92', 'no_lang_code', 1, 'https://ror.org/05vtkma92 CELL Signals Inc. CELL Signals Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ćƒ«ć‚·ć‚°ćƒŠćƒ«ć‚ŗ'),
(122647, 'https://ror.org/01gzvss73', 'nl', 1, 'https://ror.org/01gzvss73 ModeMuseum Antwerpen'),
(122648, 'https://ror.org/028a66r50', 'no_lang_code', 1, 'https://ror.org/028a66r50 KIKU-Masamune SAKE Brewing Co., Ltd. KIKU-Masamune SAKE Brewing Co., Ltd. (Japan) čŠę­£å®—é…’é€ ę Ŗå¼ä¼šē¤¾'),
(122649, 'https://ror.org/03m2qc709', 'no_lang_code', 1, 'https://ror.org/03m2qc709 Enbio Holdings, Inc. Enbio Holdings, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ³ćƒć‚¤ć‚Ŗćƒ»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(122650, 'https://ror.org/02de1wf65', 'no_lang_code', 1, 'https://ror.org/02de1wf65 Kinkei System Corporation Kinkei System Corporation (Japan) ę Ŗå¼ä¼šē¤¾čæ‘čØˆć‚·ć‚¹ćƒ†ćƒ '),
(122651, 'https://ror.org/02htxk797', 'no_lang_code', 1, 'https://ror.org/02htxk797 Medical-I Co., Ltd. Medical-I Co., Ltd. (Japan) ęœ‰é™ä¼šē¤¾ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ę„›'),
(122652, 'https://ror.org/04hhgdm35', 'no_lang_code', 1, 'https://ror.org/04hhgdm35 Topacs, Inc. Topacs, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ‘ćƒƒć‚Æć‚¹'),
(122653, 'https://ror.org/05ghbkv78', 'fr', 1, 'https://ror.org/05ghbkv78 Diagnostic des Plasmas Hors Equilibre Diagnostics of Cold Plasmas'),
(122654, 'https://ror.org/03wcgzq55', 'no_lang_code', 1, 'https://ror.org/03wcgzq55 ISE Chemicals Corporation ISE Chemicals Corporation (Japan) ä¼Šå‹¢åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122655, 'https://ror.org/01re37x56', 'no_lang_code', 1, 'https://ror.org/01re37x56 Sakagami Seisakusho Ltd. Sakagami Seisakusho Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é˜ŖäøŠč£½ä½œę‰€'),
(122656, 'https://ror.org/02h6c6s55', 'no_lang_code', 1, 'https://ror.org/02h6c6s55 Sensor Information Laboratory Corp. Sensor Information Laboratory Corp. (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ćƒ³ć‚µęƒ…å ±ē ”ē©¶ę‰€'),
(122657, 'https://ror.org/00rjja836', 'no_lang_code', 1, 'https://ror.org/00rjja836 Pickles Corporation Pickles Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ”ćƒƒć‚Æćƒ«ć‚¹ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(122658, 'https://ror.org/04p8gvn52', 'no_lang_code', 1, 'https://ror.org/04p8gvn52 Technol. Seven Co., Ltd. Technol. Seven Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚ÆćƒŽćƒ»ć‚»ćƒ–ćƒ³'),
(122659, 'https://ror.org/0118dr764', 'no_lang_code', 1, 'https://ror.org/0118dr764 Tatsumi Kagaku Co., Ltd. Tatsumi Kagaku Co., Ltd. (Japan) č¾°å·³åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(122660, 'https://ror.org/034jxed76', 'no_lang_code', 1, 'https://ror.org/034jxed76 Tesco Co., Ltd. Tesco Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚¹ć‚³'),
(122661, 'https://ror.org/03mante79', 'no_lang_code', 0, 'https://ror.org/03mante79 Advantagene (United States)'),
(122662, 'https://ror.org/01f6q2j66', 'no_lang_code', 1, 'https://ror.org/01f6q2j66 Philtech Inc. Philtech Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚£ćƒ«ćƒ†ćƒƒć‚Æ'),
(122663, 'https://ror.org/01bsnpd68', 'no_lang_code', 1, 'https://ror.org/01bsnpd68 Haken Co., Ltd. Haken Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾åˆƒē ”'),
(122664, 'https://ror.org/01ad27212', 'no_lang_code', 1, 'https://ror.org/01ad27212 Kamitsu Seisakusho Ltd. Kamitsu Seisakusho Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē„žę“„č£½ä½œę‰€'),
(122665, 'https://ror.org/02mdj3c25', 'en', 0, 'https://ror.org/02mdj3c25 Austrian Council for Research and Technology Development Rat für Forschung und Technologieentwicklung'),
(122666, 'https://ror.org/007qsya74', 'pt', 0, 'https://ror.org/007qsya74 Instituto de Investigação Científica Tropical'),
(122667, 'https://ror.org/04n7wdr86', 'en', 1, 'https://ror.org/04n7wdr86 MiNK Therapeutics MiNK Therapeutics (United States)'),
(122668, 'https://ror.org/023f2sa52', 'no_lang_code', 1, 'https://ror.org/023f2sa52 ICOM Incorporated ICOM Incorporated (Japan) ć‚¢ć‚¤ć‚³ćƒ ę Ŗå¼ä¼šē¤¾'),
(122669, 'https://ror.org/04aj76b44', 'no_lang_code', 1, 'https://ror.org/04aj76b44 Gakunan Construction Co., Ltd. Gakunan Construction Co., Ltd. (Japan) å²³å—å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(122670, 'https://ror.org/040gthy96', 'no_lang_code', 1, 'https://ror.org/040gthy96 Iwata & Co., Ltd. Iwata & Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒÆć‚æ'),
(122671, 'https://ror.org/02avf8f85', 'fr', 1, 'https://ror.org/02avf8f85 Institut de Physique des 2 Infinis de Lyon Institute of Physics of 2 Infinities of Lyon'),
(122672, 'https://ror.org/027ankh97', 'fr', 1, 'https://ror.org/027ankh97 UniversitƩ Toulouse Capitole'),
(122673, 'https://ror.org/02xp4d141', 'no_lang_code', 1, 'https://ror.org/02xp4d141 Mizuno Corporation Mizuno Corporation (Japan) ē¾Žę“„ęæƒę Ŗå¼ä¼šē¤¾'),
(122674, 'https://ror.org/007nskp16', 'no_lang_code', 1, 'https://ror.org/007nskp16 Matsumura-GUMI Corporation Matsumura-GUMI Corporation (Japan) ę Ŗå¼ä¼šē¤¾ę¾ę‘ēµ„'),
(122675, 'https://ror.org/006ae4r37', 'no_lang_code', 1, 'https://ror.org/006ae4r37 Infratec Co., Ltd. Infratec Co., Ltd. (Japan) ć‚¤ćƒ³ćƒ•ćƒ©ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(122676, 'https://ror.org/03m3gzv89', 'fr', 1, 'https://ror.org/03m3gzv89 Ɖcole Nationale VĆ©tĆ©rinaire de Toulouse'),
(122677, 'https://ror.org/05kk7gg34', 'en', 1, 'https://ror.org/05kk7gg34 Alzprotect Alzprotect (France) Alzprotect SAS'),
(122678, 'https://ror.org/05n0yk632', 'no_lang_code', 1, 'https://ror.org/05n0yk632 Tozai Denko Co., Ltd. Tozai Denko Co., Ltd. (Japan) ę±č„æé›»å·„ę Ŗå¼ä¼šē¤¾'),
(122679, 'https://ror.org/03cxje698', 'en', 1, 'https://ror.org/03cxje698 Stephens Group of Institutions'),
(122680, 'https://ror.org/053a9ma19', 'no_lang_code', 1, 'https://ror.org/053a9ma19 SEKI Electronics Co., Ltd. SEKI Electronics Co., Ltd. (Japan) ć‚»ć‚­ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(122681, 'https://ror.org/056y8pj21', 'no_lang_code', 1, 'https://ror.org/056y8pj21 ASMO Co., Ltd. ASMO Co., Ltd. (Japan) ć‚¢ć‚¹ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(122682, 'https://ror.org/05t7kep12', 'no_lang_code', 1, 'https://ror.org/05t7kep12 Yasuhara Chemical Co., Ltd. Yasuhara Chemical Co., Ltd. (Japan) ćƒ¤ć‚¹ćƒćƒ©ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(122683, 'https://ror.org/04e3rrs70', 'no_lang_code', 1, 'https://ror.org/04e3rrs70 Nichidai Corporation Nichidai Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒćƒ€ć‚¤'),
(122684, 'https://ror.org/04ft9zh69', 'no_lang_code', 1, 'https://ror.org/04ft9zh69 Sumico Lubricant Co., Ltd. Sumico Lubricant Co., Ltd. (Japan) ä½é‰±ę½¤ę»‘å‰¤ę Ŗå¼ä¼šē¤¾'),
(122685, 'https://ror.org/03z6jc082', 'en', 1, 'https://ror.org/03z6jc082 Non-governmental organization ā€œInternational Association of Scientistsā€ Š“Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ° Š¾Ń€Š³Š°Š½Ń–Š·Š°Ń†Ń–Ń Ā«ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½Š° Š°ŃŠ¾Ń†Ń–Š°Ń†Ń–Ń Š½Š°ŃƒŠŗŠ¾Š²Ń†Ń–Š²Ā»'),
(122686, 'https://ror.org/01vc3c277', 'en', 1, 'https://ror.org/01vc3c277 PMV Pharmaceuticals, Inc. PMV Pharmaceuticals, Inc. (United States)'),
(122687, 'https://ror.org/037m5k958', 'fr', 1, 'https://ror.org/037m5k958 Centre Hospitalier Eure Seine'),
(122688, 'https://ror.org/04c8e9019', 'no_lang_code', 1, 'https://ror.org/04c8e9019 Madurai Kamaraj University மதுரை ą®•ą®¾ą®®ą®°ą®¾ą®šą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“®ą“¦ąµą“°ąµˆ ą“•ą“¾ą“®ą“°ą“¾ą“œąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(122689, 'https://ror.org/05vxdj769', 'no_lang_code', 1, 'https://ror.org/05vxdj769 Fukutokucho Co., Ltd. Fukutokucho Co., Ltd. (Japan) ē¦å¾³é•·é…’é”žę Ŗå¼ä¼šē¤¾'),
(122690, 'https://ror.org/0349qsk70', 'no_lang_code', 1, 'https://ror.org/0349qsk70 DAN Environmental Design Institute DAN Environmental Design Institute (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ćƒ³čØˆē”»ē ”ē©¶ę‰€'),
(122691, 'https://ror.org/02j0pnr51', 'no_lang_code', 1, 'https://ror.org/02j0pnr51 Kuramoto Seisakusho Co., Ltd. Kuramoto Seisakusho Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å€‰å…ƒč£½ä½œę‰€'),
(122692, 'https://ror.org/0318way85', 'en', 1, 'https://ror.org/0318way85 Lugansk State Pedagogical University Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(122693, 'https://ror.org/02mg9k533', 'no_lang_code', 1, 'https://ror.org/02mg9k533 Cynet Cynet (Japan) ęœ‰é™ä¼šē¤¾ć‚µć‚¤ćƒćƒƒćƒˆ'),
(122694, 'https://ror.org/004rtk039', 'en', 1, 'https://ror.org/004rtk039 Japan Agency for Medical Research and Development ę—„ęœ¬åŒ»ē™‚ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(122695, 'https://ror.org/007qwym43', 'en', 1, 'https://ror.org/007qwym43 NOAA National Environmental Satellite Data and Information Service'),
(122696, 'https://ror.org/00byj8z71', 'no_lang_code', 1, 'https://ror.org/00byj8z71 Kioritz Corporation Kioritz Corporation (Japan) ę Ŗå¼ä¼šē¤¾å…±ē«‹'),
(122697, 'https://ror.org/0520msa48', 'en', 1, 'https://ror.org/0520msa48 University of Science and Technology, Sana’a Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§-صنعاؔ'),
(122698, 'https://ror.org/05br1b008', 'no_lang_code', 1, 'https://ror.org/05br1b008 Asanuma Corporation Asanuma Corporation (Japan) ę Ŗå¼ä¼šē¤¾ę·ŗę²¼ēµ„'),
(122699, 'https://ror.org/001jwxm74', 'no_lang_code', 1, 'https://ror.org/001jwxm74 Sandoz Sandoz (Japan) ć‚µćƒ³ćƒ‰ę Ŗå¼ä¼šē¤¾'),
(122700, 'https://ror.org/057nr5v82', 'no_lang_code', 1, 'https://ror.org/057nr5v82 Ohkura Electric Co., Ltd. Ohkura Electric Co., Ltd. (Japan) å¤§å€‰é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(122701, 'https://ror.org/03nzdtm48', 'no_lang_code', 1, 'https://ror.org/03nzdtm48 AMR, Inc. AMR, Inc. (Japan) ć‚Øćƒ¼ć‚Øćƒ ć‚¢ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(122702, 'https://ror.org/009wkcd89', 'no_lang_code', 1, 'https://ror.org/009wkcd89 Shinmaywa Industries, Ltd. Shinmaywa Industries, Ltd. (Japan) ę–°ę˜Žå’Œå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122703, 'https://ror.org/04qvdk728', 'no_lang_code', 1, 'https://ror.org/04qvdk728 Kagata Corporation Kagata Corporation (Japan) ę Ŗå¼ä¼šē¤¾åŠ č³€ē”°ēµ„'),
(122704, 'https://ror.org/016p3g423', 'fr', 0, 'https://ror.org/016p3g423 TƩlƩcom Bretagne'),
(122705, 'https://ror.org/03fcq5v87', 'no_lang_code', 1, 'https://ror.org/03fcq5v87 Marsima AQUA System Corp. Marsima AQUA System Corp. (Japan) ę Ŗå¼ä¼šē¤¾äøøå³¶ć‚¢ć‚Æć‚¢ć‚·ć‚¹ćƒ†ćƒ '),
(122706, 'https://ror.org/05jt2w815', 'no_lang_code', 1, 'https://ror.org/05jt2w815 Azden Corporation Azden Corporation (Japan) ć‚¢ćƒ„ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(122707, 'https://ror.org/04y552z18', 'no_lang_code', 1, 'https://ror.org/04y552z18 Hioki E.E. Corporation Hioki E.E. Corporation (Japan) ę—„ē½®é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(122708, 'https://ror.org/02kmy9t90', 'no_lang_code', 1, 'https://ror.org/02kmy9t90 River Eletec Corporation River Eletec Corporation (Japan) ćƒŖćƒćƒ¼ć‚Øćƒ¬ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(122709, 'https://ror.org/0343nmw38', 'en', 1, 'https://ror.org/0343nmw38 Nobel Foundation Nobelin sƤƤtiƶ Nobelstiftelsen'),
(122710, 'https://ror.org/00604k137', 'fr', 1, 'https://ror.org/00604k137 National School of Fine Arts at the Villa Arson Ɖcole nationale supĆ©rieure d''art Villa Arson'),
(122711, 'https://ror.org/006221939', 'no_lang_code', 1, 'https://ror.org/006221939 Senmi Ekisu Co., Ltd. Senmi Ekisu Co., Ltd. (Japan) ä»™å‘³ć‚Øć‚­ć‚¹ę Ŗå¼ä¼šē¤¾'),
(122712, 'https://ror.org/05bdec607', 'no_lang_code', 1, 'https://ror.org/05bdec607 Cemedine Co., Ltd. Cemedine Co., Ltd. (Japan) ć‚»ćƒ”ćƒ€ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(122713, 'https://ror.org/03py1rn72', 'no_lang_code', 1, 'https://ror.org/03py1rn72 Sumidagawa Shipyard Co., Ltd. Sumidagawa Shipyard Co., Ltd. (Japan) å¢Øē”°å·é€ čˆ¹ę Ŗå¼ä¼šē¤¾'),
(122714, 'https://ror.org/02vvrz717', 'no_lang_code', 1, 'https://ror.org/02vvrz717 Arkema K.K. Arkema K.K. (Japan) ć‚¢ćƒ«ć‚±ćƒžę Ŗå¼ä¼šē¤¾'),
(122715, 'https://ror.org/030dkc662', 'no_lang_code', 1, 'https://ror.org/030dkc662 OHYO Koken Kogyo Co., Ltd. OHYO Koken Kogyo Co., Ltd. (Japan) åæœē”Øå…‰ē ”å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122716, 'https://ror.org/02erzes48', 'en', 1, 'https://ror.org/02erzes48 NIHR MindTech MedTech Co-operative'),
(122717, 'https://ror.org/01z4fnf24', 'en', 1, 'https://ror.org/01z4fnf24 TBS Education Research Centre'),
(122718, 'https://ror.org/012q9m066', 'no_lang_code', 1, 'https://ror.org/012q9m066 Itfor Inc. Itfor Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ†ć‚£ćƒ•ć‚©ćƒ¼'),
(122719, 'https://ror.org/007xawn77', 'no_lang_code', 1, 'https://ror.org/007xawn77 FP Corporation FP Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ•ćƒ”ć‚³'),
(122720, 'https://ror.org/0008m5k51', 'en', 1, 'https://ror.org/0008m5k51 LEPL G.Tsulukizde Mining Institute įƒ”įƒ”įƒ˜įƒž įƒ’įƒ įƒ˜įƒ’įƒįƒš įƒ¬įƒ£įƒšįƒ£įƒ™įƒ˜įƒ«įƒ˜įƒ” įƒ”įƒįƒ›įƒ—įƒ ინეტიტუტი'),
(122721, 'https://ror.org/01xavfn65', 'no_lang_code', 1, 'https://ror.org/01xavfn65 MORESCO Corporation MORESCO Corporation (Japan) ę Ŗå¼ä¼šē¤¾MORESCO'),
(122722, 'https://ror.org/01qe02p91', 'no_lang_code', 1, 'https://ror.org/01qe02p91 Biomarker Science Co., Ltd. Biomarker Science Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚Ŗćƒžćƒ¼ć‚«ćƒ¼ć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(122723, 'https://ror.org/03teb1j24', 'fr', 0, 'https://ror.org/03teb1j24 UniversitƩ de Provence Aix-Marseille I'),
(122724, 'https://ror.org/01wwtzx45', 'no_lang_code', 1, 'https://ror.org/01wwtzx45 Kiyota Manufacturing Co. Kiyota Manufacturing Co. (Japan) ęœ‰é™ä¼šē¤¾ęø…ē”°č£½ä½œę‰€'),
(122725, 'https://ror.org/03wwgk879', 'no_lang_code', 1, 'https://ror.org/03wwgk879 Chikuho MFG. Co., Ltd. Chikuho MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē­‘č±Šč£½ä½œę‰€'),
(122726, 'https://ror.org/04h9f1b71', 'no_lang_code', 1, 'https://ror.org/04h9f1b71 Kawase Computer Supplies Co., Ltd. Kawase Computer Supplies Co., Ltd. (Japan) ć‚«ćƒÆć‚»ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æć‚µćƒ—ćƒ©ć‚¤ę Ŗå¼ä¼šē¤¾'),
(122727, 'https://ror.org/05gafz018', 'en', 1, 'https://ror.org/05gafz018 One Arrow First Nation'),
(122728, 'https://ror.org/04gzb2213', 'en', 1, 'https://ror.org/04gzb2213 University of Delhi UniversitĆ© de delhi ŲÆŪŁ„ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¦ą¦æą¦²ą§ą¦²ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ਦਿੱਲੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®¤ą®æą®²ąÆą®²ą®æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“”ąµ†ąµ½ą“¹ą“æ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(122729, 'https://ror.org/05fy4y666', 'no_lang_code', 1, 'https://ror.org/05fy4y666 Yokohama OIL & FATS Industry Co., Ltd. Yokohama OIL & FATS Industry Co., Ltd. (Japan) ęØŖęµœę²¹č„‚å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122730, 'https://ror.org/04cpjmz45', 'no_lang_code', 1, 'https://ror.org/04cpjmz45 Onecell Inc. Onecell Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒÆćƒ³ć‚»ćƒ«'),
(122731, 'https://ror.org/02jamfp42', 'no_lang_code', 1, 'https://ror.org/02jamfp42 AGIC Corporation AGIC Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ¼ć‚øćƒƒć‚Æ'),
(122732, 'https://ror.org/05me8gz24', 'fr', 1, 'https://ror.org/05me8gz24 Centre d’Etudes et de Recherches en Psychopathologie et Psychologie de la SantĆ©'),
(122733, 'https://ror.org/0517pdh87', 'no_lang_code', 1, 'https://ror.org/0517pdh87 Mandom Corp. Mandom Corp. (Japan) ę Ŗå¼ä¼šē¤¾ćƒžćƒ³ćƒ€ćƒ '),
(122734, 'https://ror.org/0315vq285', 'no_lang_code', 1, 'https://ror.org/0315vq285 Ayaha Co., Ltd. Ayaha Co., Ltd. (Japan) ē¶¾ē¾½ę Ŗå¼ä¼šē¤¾'),
(122735, 'https://ror.org/0160q1p85', 'no_lang_code', 1, 'https://ror.org/0160q1p85 Samson Co., Ltd. Samson Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒ ć‚½ćƒ³'),
(122736, 'https://ror.org/01f7ff610', 'no_lang_code', 1, 'https://ror.org/01f7ff610 EX Corporation EX Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒƒć‚Æć‚¹éƒ½åø‚ē ”ē©¶ę‰€'),
(122737, 'https://ror.org/000ezg795', 'no_lang_code', 1, 'https://ror.org/000ezg795 Chino Corporation Chino Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒŽćƒ¼'),
(122738, 'https://ror.org/00qwnc037', 'no_lang_code', 1, 'https://ror.org/00qwnc037 Qualtec Co., Ltd. Qualtec Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æć‚Ŗćƒ«ćƒ†ćƒƒć‚Æ'),
(122739, 'https://ror.org/0399fmt86', 'no_lang_code', 1, 'https://ror.org/0399fmt86 Yamaki Co., Ltd. Yamaki Co., Ltd. (Japan) ćƒ¤ćƒžć‚­ę Ŗå¼ä¼šē¤¾'),
(122740, 'https://ror.org/02htkj088', 'no_lang_code', 1, 'https://ror.org/02htkj088 Nichiha Corporation Nichiha Corporation (Japan) ćƒ‹ćƒćƒę Ŗå¼ä¼šē¤¾'),
(122741, 'https://ror.org/026f50t21', 'no_lang_code', 1, 'https://ror.org/026f50t21 Softether Corporation Softether Corporation (Japan) ć‚½ćƒ•ćƒˆć‚¤ćƒ¼ć‚µę Ŗå¼ä¼šē¤¾'),
(122742, 'https://ror.org/0486qgd45', 'no_lang_code', 1, 'https://ror.org/0486qgd45 Marutai Co., Ltd. Marutai Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒžćƒ«ć‚æć‚¤'),
(122743, 'https://ror.org/04rmbb842', 'en', 1, 'https://ror.org/04rmbb842 Bangladesh Academy of Dentistry International'),
(122744, 'https://ror.org/027vt0237', 'no_lang_code', 1, 'https://ror.org/027vt0237 ZAIKEN ZAIKEN (Japan) ę Ŗå¼ä¼šē¤¾ZAIKEN'),
(122745, 'https://ror.org/04rx6q792', 'no_lang_code', 1, 'https://ror.org/04rx6q792 Yondenko Corporation Yondenko Corporation (Japan) ę Ŗå¼ä¼šē¤¾å››é›»å·„'),
(122746, 'https://ror.org/0426zh255', 'en', 1, 'https://ror.org/0426zh255 China Postdoctoral Science Foundation äø­å›½åšå£«åŽē§‘å­¦åŸŗé‡‘ä¼š'),
(122747, 'https://ror.org/042xvzy32', 'no_lang_code', 1, 'https://ror.org/042xvzy32 Mamiya-OP Co., Ltd. Mamiya-OP Co., Ltd. (Japan) ćƒžćƒŸćƒ¤ćƒ»ć‚Ŗćƒ¼ćƒ”ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(122748, 'https://ror.org/05p3pmf88', 'no_lang_code', 1, 'https://ror.org/05p3pmf88 Maruichi Steel TUBE Ltd. Maruichi Steel TUBE Ltd. (Japan) äøøäø€é‹¼ē®”ę Ŗå¼ä¼šē¤¾'),
(122749, 'https://ror.org/00nb39k71', 'en', 1, 'https://ror.org/00nb39k71 University of French Guiana UniversitƩ de Guyane'),
(122750, 'https://ror.org/02nw97m24', 'no_lang_code', 1, 'https://ror.org/02nw97m24 Kanro Co., Ltd. Kanro Co., Ltd. (Japan) ć‚«ćƒ³ćƒ­ę Ŗå¼ä¼šē¤¾'),
(122751, 'https://ror.org/059h9bj62', 'no_lang_code', 1, 'https://ror.org/059h9bj62 T-PEC K. K. T-PEC K. K. (Japan) ćƒ†ć‚£ćƒ¼ćƒšćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(122752, 'https://ror.org/00etdy823', 'no_lang_code', 1, 'https://ror.org/00etdy823 Kashima-KITA Electric Power Corporation Kashima-KITA Electric Power Corporation (Japan) é¹æå³¶åŒ—å…±åŒē™ŗé›»ę Ŗå¼ä¼šē¤¾'),
(122753, 'https://ror.org/05844w647', 'no_lang_code', 1, 'https://ror.org/05844w647 CORE Corporation CORE Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚³ć‚¢'),
(122754, 'https://ror.org/016zsrf24', 'no_lang_code', 1, 'https://ror.org/016zsrf24 KOSƉ Corporation KOSƉ Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚³ćƒ¼ć‚»ćƒ¼'),
(122755, 'https://ror.org/05nczr056', 'no_lang_code', 1, 'https://ror.org/05nczr056 KOZO Keikaku Engineering Inc. KOZO Keikaku Engineering Inc. (Japan) ę Ŗå¼ä¼šē¤¾ę§‹é€ čØˆē”»ē ”ē©¶ę‰€'),
(122756, 'https://ror.org/05bf4ge66', 'no_lang_code', 1, 'https://ror.org/05bf4ge66 Taishi Foods Co., Ltd. Taishi Foods Co., Ltd. (Japan) å¤Ŗå­é£Ÿå“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122757, 'https://ror.org/004r9h172', 'en', 1, 'https://ror.org/004r9h172 KĆøbenhavns ProfessionshĆøjskole University College Copenhagen'),
(122758, 'https://ror.org/04h77t347', 'no_lang_code', 1, 'https://ror.org/04h77t347 Mirai Construction Co., Ltd. Mirai Construction Co., Ltd. (Japan) ćæć‚‰ć„å»ŗčØ­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122759, 'https://ror.org/05w09gj68', 'no_lang_code', 1, 'https://ror.org/05w09gj68 Marktec Corporation Marktec Corporation (Japan) ćƒžćƒ¼ć‚Æćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(122760, 'https://ror.org/043en4p76', 'en', 1, 'https://ror.org/043en4p76 V. Mamutov Institute of Economic and Legal Research of the National Academy of Sciences of Ukraine ДУ ā€œŠ†Š•ŠŸŠ” імені Š’.К. ŠœŠ°Š¼ŃƒŃ‚Š¾Š²Š° ŠŠŠ Š£ŠŗŃ€Š°Ń—Š½Šøā€ Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіко-правових Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ імені Š’.К. ŠœŠ°Š¼ŃƒŃ‚Š¾Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(122761, 'https://ror.org/010j5jm30', 'no_lang_code', 1, 'https://ror.org/010j5jm30 KM Aluminium Co., Ltd. KM Aluminium Co., Ltd. (Japan) KMć‚¢ćƒ«ćƒŸćƒ‹ć‚¦ćƒ ę Ŗå¼ä¼šē¤¾'),
(122762, 'https://ror.org/04jdmzh53', 'no_lang_code', 1, 'https://ror.org/04jdmzh53 Yagishita Electric Co., Ltd. Yagishita Electric Co., Ltd. (Japan) ćƒ¤ć‚®ć‚·ć‚æé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(122763, 'https://ror.org/01fxzrn25', 'no_lang_code', 1, 'https://ror.org/01fxzrn25 H-One Co., Ltd. H-One Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ćƒćƒÆćƒ³'),
(122764, 'https://ror.org/05095qt40', 'en', 1, 'https://ror.org/05095qt40 ICAR - National Bureau of Plant Genetic Resources Regional Station, Akola'),
(122765, 'https://ror.org/05t6e7s73', 'no_lang_code', 1, 'https://ror.org/05t6e7s73 Propgene Inc. Propgene Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ­ćƒƒćƒ—ć‚øćƒ¼ćƒ³'),
(122766, 'https://ror.org/023ynsm82', 'en', 1, 'https://ror.org/023ynsm82 American Health Foundation'),
(122767, 'https://ror.org/0492y2y67', 'no_lang_code', 1, 'https://ror.org/0492y2y67 Alumite Catalyst Laboratory Co., Ltd. Alumite Catalyst Laboratory Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ćƒžć‚¤ćƒˆč§¦åŖ’ē ”ē©¶ę‰€'),
(122768, 'https://ror.org/01ry4vk32', 'no_lang_code', 1, 'https://ror.org/01ry4vk32 Noritz Corporation Noritz Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒŽćƒ¼ćƒŖćƒ„'),
(122769, 'https://ror.org/046f6cx68', 'en', 1, 'https://ror.org/046f6cx68 Fujita Health University č—¤ē”°äæå„č”›ē”Ÿå¤§å­¦'),
(122770, 'https://ror.org/00dsfqa38', 'no_lang_code', 1, 'https://ror.org/00dsfqa38 SYNCPLUS, Inc. SYNCPLUS, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ćƒ³ć‚Æćƒ—ćƒ©ć‚¹'),
(122771, 'https://ror.org/019tgvf94', 'fr', 1, 'https://ror.org/019tgvf94 UniversitƩ CƓte d''Azur'),
(122772, 'https://ror.org/03sb4qt42', 'no_lang_code', 1, 'https://ror.org/03sb4qt42 Nuvoton Technology Corporation Japan Nuvoton Technology Corporation Japan (Japan) ćƒŒćƒ“ć‚©ćƒˆćƒ³ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(122773, 'https://ror.org/02z37qb25', 'en', 1, 'https://ror.org/02z37qb25 NIHR Exeter Clinical Research Facility'),
(122774, 'https://ror.org/009zshx12', 'no_lang_code', 1, 'https://ror.org/009zshx12 Izu Shaboten Resort Co., Ltd. Izu Shaboten Resort Co., Ltd. (Japan) ä¼Šč±†ć‚·ćƒ£ćƒœćƒ†ćƒ³ćƒŖć‚¾ćƒ¼ćƒˆę Ŗå¼ä¼šē¤¾'),
(122775, 'https://ror.org/055xvpq93', 'no_lang_code', 1, 'https://ror.org/055xvpq93 OK FOOD Industry Co., Ltd. OK FOOD Industry Co., Ltd. (Japan) ć‚Ŗćƒ¼ć‚±ćƒ¼é£Ÿå“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122776, 'https://ror.org/02wwcqa40', 'no_lang_code', 1, 'https://ror.org/02wwcqa40 Kinden Corporation Kinden Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćć‚“ć§ć‚“'),
(122777, 'https://ror.org/01f3xy372', 'no_lang_code', 1, 'https://ror.org/01f3xy372 Nanophoton Corporation Nanophoton Corporation (Japan) ćƒŠćƒŽćƒ•ć‚©ćƒˆćƒ³ę Ŗå¼ä¼šē¤¾'),
(122778, 'https://ror.org/04a04as05', 'no', 0, 'https://ror.org/04a04as05 MisjonshĆøgskolen School of Mission and Theology'),
(122779, 'https://ror.org/021xqx483', 'no_lang_code', 1, 'https://ror.org/021xqx483 Okawa & Co., Ltd. Okawa & Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ć‚«ćƒÆ'),
(122780, 'https://ror.org/05phns765', 'en', 1, 'https://ror.org/05phns765 Høgskulen pÄ Vestlandet Western Norway University of Applied Sciences'),
(122781, 'https://ror.org/01tvkw178', 'no_lang_code', 1, 'https://ror.org/01tvkw178 Jasco Corporation Jasco Corporation (Japan) ę—„ęœ¬åˆ†å…‰ę Ŗå¼ä¼šē¤¾'),
(122782, 'https://ror.org/00dxacs38', 'en', 1, 'https://ror.org/00dxacs38 Government Medical College and Hospital, Thiruvallur'),
(122783, 'https://ror.org/02ysgg478', 'de', 1, 'https://ror.org/02ysgg478 Staatsbibliothek zu Berlin'),
(122784, 'https://ror.org/027534h12', 'no_lang_code', 1, 'https://ror.org/027534h12 ANA Holdings Inc. ANA Holdings Inc. (Japan) ANAćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(122785, 'https://ror.org/042zqwf54', 'no_lang_code', 1, 'https://ror.org/042zqwf54 Sorun Corporation Sorun Corporation (Japan) ć‚½ćƒ©ćƒ³ę Ŗå¼ä¼šē¤¾'),
(122786, 'https://ror.org/0517gsw68', 'no_lang_code', 1, 'https://ror.org/0517gsw68 MondelĆ©z Japan Ltd. MondelĆ©z Japan Ltd. (Japan) ćƒ¢ćƒ³ćƒ‡ćƒŖćƒ¼ć‚ŗćƒ»ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(122787, 'https://ror.org/01kxmrf07', 'no_lang_code', 1, 'https://ror.org/01kxmrf07 Kaijo Corporation Kaijo Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ć‚¤ć‚øćƒ§ćƒ¼'),
(122788, 'https://ror.org/02hx4p162', 'en', 1, 'https://ror.org/02hx4p162 ORIC Pharmaceuticals ORIC Pharmaceuticals, Inc. ORIC Pharmaceuticals, Inc. (United States)'),
(122789, 'https://ror.org/03q7vwk42', 'en', 1, 'https://ror.org/03q7vwk42 NIHR School for Social Care Research'),
(122790, 'https://ror.org/0415e0n80', 'no_lang_code', 1, 'https://ror.org/0415e0n80 Conflex Corporation Conflex Corporation (Japan) ć‚³ćƒ³ćƒ•ćƒ¬ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(122791, 'https://ror.org/0128jkq56', 'no_lang_code', 1, 'https://ror.org/0128jkq56 Momentive Performance Materials Japan Llc Momentive Performance Materials Japan Llc (Japan) ćƒ¢ćƒ”ćƒ³ćƒ†ć‚£ćƒ–ćƒ»ćƒ‘ćƒ•ć‚©ćƒ¼ćƒžćƒ³ć‚¹ćƒ»ćƒžćƒ†ćƒŖć‚¢ćƒ«ć‚ŗćƒ»ć‚øćƒ£ćƒ‘ćƒ³åˆåŒä¼šē¤¾'),
(122792, 'https://ror.org/00m2xhf67', 'no_lang_code', 1, 'https://ror.org/00m2xhf67 Molex, LLC Molex, LLC (Japan) ę—„ęœ¬ćƒ¢ćƒ¬ćƒƒć‚Æć‚¹åˆåŒä¼šē¤¾'),
(122793, 'https://ror.org/03jtzcc30', 'fr', 1, 'https://ror.org/03jtzcc30 Chimie et Biologie des Membranes et des Nanoobjects'),
(122794, 'https://ror.org/041pz9q90', 'no_lang_code', 1, 'https://ror.org/041pz9q90 Aozora Bank, Ltd. Aozora Bank, Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚ćŠćžć‚‰éŠ€č”Œ'),
(122795, 'https://ror.org/02ryfmr77', 'fr', 1, 'https://ror.org/02ryfmr77 University of the French Antilles UniversitƩ des Antilles'),
(122796, 'https://ror.org/004jcx635', 'no_lang_code', 1, 'https://ror.org/004jcx635 Opcell Co., Ltd. Opcell Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ—ć‚»ćƒ«'),
(122797, 'https://ror.org/04s5qaj52', 'no_lang_code', 1, 'https://ror.org/04s5qaj52 Stemcell Institute Stemcell Institute (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ćƒ†ćƒ ć‚»ćƒ«ē ”ē©¶ę‰€'),
(122798, 'https://ror.org/04y6ym692', 'fi', 1, 'https://ror.org/04y6ym692 Bildkonstakademin Kuvataideakatemia'),
(122799, 'https://ror.org/01s7msz22', 'de', 1, 'https://ror.org/01s7msz22 Landesamt für Bergbau, Geologie und Rohstoffe State office for mining, geology and raw material'),
(122800, 'https://ror.org/02z0cah89', 'es', 1, 'https://ror.org/02z0cah89 Nafarroako Unibertsitate Publikoa Public University of Navarre Universidad Publica de Navarra'),
(122801, 'https://ror.org/00r481q70', 'en', 1, 'https://ror.org/00r481q70 Chordia Therapeutics Inc. (Japan)'),
(122802, 'https://ror.org/01xzjvs38', 'en', 0, 'https://ror.org/01xzjvs38 Euromed Management'),
(122803, 'https://ror.org/0564tm215', 'no_lang_code', 1, 'https://ror.org/0564tm215 Honma Corporation Honma Corporation (Japan) ę Ŗå¼ä¼šē¤¾ęœ¬é–“ēµ„'),
(122804, 'https://ror.org/00twbd828', 'en', 1, 'https://ror.org/00twbd828 The World Academy of Sciences'),
(122805, 'https://ror.org/006ng4573', 'no_lang_code', 1, 'https://ror.org/006ng4573 Waseda Educational Engineering Co. Ltd. Waseda Educational Engineering Co. Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę—©ēØ²ē”°ć‚Øćƒ‡ćƒ„ć‚±ć‚¤ć‚·ćƒ§ćƒŠćƒ«ćƒ»ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(122806, 'https://ror.org/03jczwn39', 'no_lang_code', 1, 'https://ror.org/03jczwn39 Iwabuchi Corporation Iwabuchi Corporation (Japan) ć‚¤ćƒÆćƒ–ćƒę Ŗå¼ä¼šē¤¾'),
(122807, 'https://ror.org/04t6b4f95', 'en', 1, 'https://ror.org/04t6b4f95 Nalikule College of Education'),
(122808, 'https://ror.org/039q0yc26', 'no_lang_code', 1, 'https://ror.org/039q0yc26 Aubex Corporation Aubex Corporation (Japan) ć‚Ŗćƒ¼ćƒ™ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(122809, 'https://ror.org/04e61t155', 'no_lang_code', 1, 'https://ror.org/04e61t155 3D Geoscience, Inc. 3D Geoscience, Inc. (Japan) ę Ŗå¼ä¼šē¤¾3Dåœ°ē§‘å­¦ē ”ē©¶ę‰€'),
(122810, 'https://ror.org/05bs6ge88', 'fr', 1, 'https://ror.org/05bs6ge88 Physiologie Pathologie et GƩnƩtique VƩgƩtales'),
(122811, 'https://ror.org/027065c48', 'pt', 1, 'https://ror.org/027065c48 Escola Superior de Enfermagem da Universidade de Lisboa'),
(122812, 'https://ror.org/04zrf9x98', 'en', 1, 'https://ror.org/04zrf9x98 Planet Labs PBC Planet Labs PBC (United States)'),
(122813, 'https://ror.org/01c27hj86', 'en', 1, 'https://ror.org/01c27hj86 Universidade de Lisboa University of Lisbon'),
(122814, 'https://ror.org/04dwb2s30', 'en', 1, 'https://ror.org/04dwb2s30 Father Muller Charitable Institutions ą²«ą²¾ą²¦ą²°ą³ ą²®ą³ą²²ą³ą²²ą²°ą³ ą²šą²¾ą²°ą²æą²Ÿą²¬ą²²ą³ ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²·ą²Øą³ą²øą³'),
(122815, 'https://ror.org/003x0zc53', 'es', 1, 'https://ror.org/003x0zc53 Agencia Estatal de Investigación'),
(122816, 'https://ror.org/00dtr7z10', 'en', 1, 'https://ror.org/00dtr7z10 Institute of Advanced Energy, Kyoto University äŗ¬éƒ½å¤§å­¦ć‚Øćƒćƒ«ć‚®ćƒ¼ē†å·„å­¦ē ”ē©¶ę‰€'),
(122817, 'https://ror.org/00j0kqj60', 'en', 1, 'https://ror.org/00j0kqj60 CMKL University'),
(122818, 'https://ror.org/0101xrq71', 'en', 1, 'https://ror.org/0101xrq71 Department of Science and Technology ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ विभाग ą“¶ą“¾ą“øąµą“¤ąµą“° ą“øą“¾ą“™ąµą“•ąµ‡ą“¤ą“æą“• ą“µą“•ąµą“Ŗąµą“Ŗąµ'),
(122819, 'https://ror.org/00nex4632', 'no_lang_code', 1, 'https://ror.org/00nex4632 Neturen Co., Ltd. Neturen Co., Ltd. (Japan) é«˜å‘Øę³¢ē†±éŒ¬ę Ŗå¼ä¼šē¤¾'),
(122820, 'https://ror.org/01cfv2r37', 'no_lang_code', 1, 'https://ror.org/01cfv2r37 RION Co., Ltd. RION Co., Ltd. (Japan) ćƒŖć‚Ŗćƒ³ę Ŗå¼ä¼šē¤¾'),
(122821, 'https://ror.org/011meza63', 'fr', 1, 'https://ror.org/011meza63 FĆ©dĆ©ration de recherche ONERA – ENAC – ISAE-SUPAERO ONERA/ENAC/ISAE-SUPAERO Research Federation'),
(122822, 'https://ror.org/028t2hz97', 'en', 1, 'https://ror.org/028t2hz97 Mishima Central Hospital 三島中央病院は'),
(122823, 'https://ror.org/05wmvjv50', 'en', 1, 'https://ror.org/05wmvjv50 Centro de Investigação, Inovação e Desenvolvimento em Enfermagem de Lisboa Nursing Research, Innovation and Development Centre of Lisbon'),
(122824, 'https://ror.org/03wr3xy70', 'no_lang_code', 1, 'https://ror.org/03wr3xy70 JSOL Corporation JSOL Corporation (Japan) ę Ŗå¼ä¼šē¤¾JSOL'),
(122825, 'https://ror.org/05cqez372', 'no_lang_code', 1, 'https://ror.org/05cqez372 Nichimo Co., Ltd. Nichimo Co., Ltd. (Japan) ćƒ‹ćƒćƒ¢ć‚¦ę Ŗå¼ä¼šē¤¾'),
(122826, 'https://ror.org/058wvmm89', 'no_lang_code', 1, 'https://ror.org/058wvmm89 Isamu Paint Co., Ltd. Isamu Paint Co., Ltd. (Japan) ć‚¤ć‚µćƒ å”—ę–™ę Ŗå¼ä¼šē¤¾'),
(122827, 'https://ror.org/00wrscw66', 'no_lang_code', 1, 'https://ror.org/00wrscw66 Potters-Ballotini Co., Ltd. Potters-Ballotini Co., Ltd. (Japan) ćƒćƒƒć‚æćƒ¼ć‚ŗćƒ»ćƒćƒ­ćƒ†ć‚£ćƒ¼ćƒ‹ę Ŗå¼ä¼šē¤¾'),
(122828, 'https://ror.org/018033d20', 'no_lang_code', 1, 'https://ror.org/018033d20 Silver Seiko Ltd. Silver Seiko Ltd. (Japan) ć‚·ćƒ«ćƒćƒ¼ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(122829, 'https://ror.org/03jdmr188', 'en', 1, 'https://ror.org/03jdmr188 Father Muller College of Nursing ą²«ą²¾ą²¦ą²°ą³ ą²®ą³ą²²ą³ą²²ą²°ą³ ą²•ą²¾ą²²ą³‡ą²œą³ ą²†ą²«ą³ ą²Øą²°ą³ą²øą²æą²‚ą²—ą³'),
(122830, 'https://ror.org/0323bey33', 'fr', 1, 'https://ror.org/0323bey33 Institut LumiĆØre MatiĆØre'),
(122831, 'https://ror.org/021ge3h95', 'no_lang_code', 1, 'https://ror.org/021ge3h95 Cosmos Technical Center Co., Ltd. Cosmos Technical Center Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚³ć‚¹ćƒ¢ć‚¹ćƒ†ć‚Æćƒ‹ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(122832, 'https://ror.org/03mxqak71', 'no_lang_code', 1, 'https://ror.org/03mxqak71 Ikuyo Co., Ltd. Ikuyo Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ć‚ÆćƒØ'),
(122833, 'https://ror.org/02h576f65', 'no_lang_code', 1, 'https://ror.org/02h576f65 GKN Driveline Japan Ltd GKN Driveline Japan Ltd (Japan) GKNćƒ‰ćƒ©ć‚¤ćƒ–ćƒ©ć‚¤ćƒ³ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(122834, 'https://ror.org/05rd2yw20', 'no_lang_code', 1, 'https://ror.org/05rd2yw20 Atsugi Co., Ltd. Atsugi Co., Ltd. (Japan) ć‚¢ćƒ„ć‚®ę Ŗå¼ä¼šē¤¾'),
(122835, 'https://ror.org/0456r8d26', 'en', 1, 'https://ror.org/0456r8d26 Gates Foundation'),
(122836, 'https://ror.org/039xs4h42', 'es', 1, 'https://ror.org/039xs4h42 Biologia Aplikatuko Diziplina Anitzeko Ikerketa Institutua Institute for Multidisciplinary Research in Applied Biology Instituto de Investigación Multidisciplinar en Biología Aplicada'),
(122837, 'https://ror.org/03wdk6249', 'en', 1, 'https://ror.org/03wdk6249 Youcef El Khatib University of Health Sciences'),
(122838, 'https://ror.org/04rxr2p20', 'en', 1, 'https://ror.org/04rxr2p20 Reformed Theological Seminary'),
(122839, 'https://ror.org/00e0qdc74', 'no_lang_code', 1, 'https://ror.org/00e0qdc74 Fujiyama Co., Ltd. Fujiyama Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚øćƒ¤ćƒž'),
(122840, 'https://ror.org/00m1mwc36', 'en', 1, 'https://ror.org/00m1mwc36 Brooke Army Medical Center'),
(122841, 'https://ror.org/00ekx6060', 'no_lang_code', 1, 'https://ror.org/00ekx6060 IRM, Inc. IRM, Inc. (Japan) ć‚¢ć‚¤ćƒ»ć‚¢ćƒ¼ćƒ«ćƒ»ć‚Øćƒ ę Ŗå¼ä¼šē¤¾'),
(122842, 'https://ror.org/00wbwde85', 'id', 1, 'https://ror.org/00wbwde85 Universitas Nahdlatul Ulama Surabaya University of Nahdlatul Ulama Surabaya'),
(122843, 'https://ror.org/04ef94584', 'fr', 1, 'https://ror.org/04ef94584 Institut Libre d''Education Physique SupƩrieur'),
(122844, 'https://ror.org/01nap0d58', 'no_lang_code', 1, 'https://ror.org/01nap0d58 MVP Inc. MVP Inc. (Japan) MVPę Ŗå¼ä¼šē¤¾'),
(122845, 'https://ror.org/05ewteq31', 'no_lang_code', 1, 'https://ror.org/05ewteq31 Seiritsu Co., Ltd. Seiritsu Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ęˆē«‹'),
(122846, 'https://ror.org/03f8k6a86', 'pt', 1, 'https://ror.org/03f8k6a86 Instituto Brasileiro de Ensino, Desenvolvimento e Pesquisa'),
(122847, 'https://ror.org/02qxbps09', 'no_lang_code', 1, 'https://ror.org/02qxbps09 J-OIL Mills. Inc. J-OIL Mills. Inc. (Japan) ę Ŗå¼ä¼šē¤¾J-ć‚Ŗć‚¤ćƒ«ćƒŸćƒ«ć‚ŗ'),
(122848, 'https://ror.org/02bwmjq73', 'no_lang_code', 1, 'https://ror.org/02bwmjq73 KOYU Shokucho Co., Ltd. KOYU Shokucho Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å…ę¹Æé£Ÿé³„'),
(122849, 'https://ror.org/00jjqkc10', 'no_lang_code', 1, 'https://ror.org/00jjqkc10 Consol Corporation Consol Corporation (Japan) ć‚³ćƒ³ć‚½ćƒ«ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(122850, 'https://ror.org/05bfg0961', 'en', 1, 'https://ror.org/05bfg0961 NIHR CRUK Experimental Cancer Medicine Centre'),
(122851, 'https://ror.org/035bjtc22', 'es', 1, 'https://ror.org/035bjtc22 Sociedad Cientifica de BibliometrĆ­a y CienciometrĆ­a'),
(122852, 'https://ror.org/03gvgnv89', 'fr', 1, 'https://ror.org/03gvgnv89 Laboratoire d’Informatique de l’UniversitĆ© du Mans'),
(122853, 'https://ror.org/018hst540', 'no_lang_code', 1, 'https://ror.org/018hst540 Ankhs, Inc. Ankhs, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ³ć‚Æć‚¹'),
(122854, 'https://ror.org/046132g21', 'no_lang_code', 1, 'https://ror.org/046132g21 Enegate Co., Ltd. Enegate Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒć‚²ćƒ¼ćƒˆ'),
(122855, 'https://ror.org/05yj62k18', 'es', 1, 'https://ror.org/05yj62k18 Escuela Argentina de Tantra'),
(122856, 'https://ror.org/03ww1e006', 'no_lang_code', 1, 'https://ror.org/03ww1e006 Bioserentach Inc. Bioserentach Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚Ŗć‚»ćƒ¬ćƒ³ć‚æćƒƒć‚Æ'),
(122857, 'https://ror.org/05ehqv878', 'no_lang_code', 1, 'https://ror.org/05ehqv878 Kinpodo Matsumoto Industry Co., Ltd. Kinpodo Matsumoto Industry Co., Ltd. (Japan) é‡‘ę–¹å ‚ę¾ęœ¬å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122858, 'https://ror.org/051hxwa14', 'no_lang_code', 1, 'https://ror.org/051hxwa14 Kyoyu Agri Co., Ltd. Kyoyu Agri Co., Ltd. (Japan) å”å‹ć‚¢ć‚°ćƒŖę Ŗå¼ä¼šē¤¾'),
(122859, 'https://ror.org/03r2cgy05', 'en', 1, 'https://ror.org/03r2cgy05 Medhavi Skills University'),
(122860, 'https://ror.org/00xc0sq83', 'no_lang_code', 1, 'https://ror.org/00xc0sq83 Sepa-Sigma Inc. Sepa-Sigma Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ćƒ‘ć‚·ć‚°ćƒž'),
(122861, 'https://ror.org/02fwjk492', 'no_lang_code', 1, 'https://ror.org/02fwjk492 Hainet Co., Ltd. Hainet Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚¤ćƒćƒƒćƒˆ'),
(122862, 'https://ror.org/005yahm62', 'no_lang_code', 1, 'https://ror.org/005yahm62 Nakamura Electric MFG. Co., Ltd. Nakamura Electric MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾äø­ę‘é›»ę©Ÿč£½ä½œę‰€'),
(122863, 'https://ror.org/059f2en15', 'no_lang_code', 1, 'https://ror.org/059f2en15 Chemitech Inc. Chemitech Inc. (Japan) ć‚±ćƒŸćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(122864, 'https://ror.org/039sqnm61', 'es', 1, 'https://ror.org/039sqnm61 Hospital del NiƱo Francisco Icaza Bustamante'),
(122865, 'https://ror.org/000fcd432', 'no_lang_code', 1, 'https://ror.org/000fcd432 Kaihatsukouken Co., Ltd. Kaihatsukouken Co., Ltd. (Japan) é–‹ē™ŗå·„å»ŗę Ŗå¼ä¼šē¤¾'),
(122866, 'https://ror.org/05raecv33', 'no_lang_code', 1, 'https://ror.org/05raecv33 Dengyo Incorporated Dengyo Incorporated (Japan) ę Ŗå¼ä¼šē¤¾é›»ę„­'),
(122867, 'https://ror.org/02v2vjp63', 'no_lang_code', 1, 'https://ror.org/02v2vjp63 I-HIVE Inc. I-HIVE Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ćƒć‚¤ćƒ–'),
(122868, 'https://ror.org/01bre7n42', 'no_lang_code', 1, 'https://ror.org/01bre7n42 Ivy.cosmetics Co., Ltd. Ivy.cosmetics Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ“ćƒ¼åŒ–ē²§å“'),
(122869, 'https://ror.org/04t7cvq83', 'no_lang_code', 1, 'https://ror.org/04t7cvq83 Nakabohtec Corrosion Protecting Co., Ltd. Nakabohtec Corrosion Protecting Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŠć‚«ćƒœćƒ¼ćƒ†ćƒƒć‚Æ'),
(122870, 'https://ror.org/031smgv83', 'no_lang_code', 1, 'https://ror.org/031smgv83 Windnavi Co., Ltd. Windnavi Co., Ltd. (Japan) ć‚¦ć‚¤ćƒ³ćƒ‰ćƒŠćƒ“ę Ŗå¼ä¼šē¤¾'),
(122871, 'https://ror.org/034y5t104', 'no_lang_code', 1, 'https://ror.org/034y5t104 Arenabio Co., Ltd. Arenabio Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¬ćƒŠćƒ“ć‚Ŗ'),
(122872, 'https://ror.org/04atq1a16', 'no_lang_code', 1, 'https://ror.org/04atq1a16 Krosaki Harima Corporation Krosaki Harima Corporation (Japan) é»’å“Žę’­ē£Øę Ŗå¼ä¼šē¤¾');
INSERT INTO `rors` VALUES
(122873, 'https://ror.org/026ed4596', 'no_lang_code', 1, 'https://ror.org/026ed4596 UD Trucks Corporation UD Trucks Corporation (Japan) UDćƒˆćƒ©ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(122874, 'https://ror.org/05s6r7486', 'en', 1, 'https://ror.org/05s6r7486 European Resuscitation Council'),
(122875, 'https://ror.org/01wpjm123', 'en', 1, 'https://ror.org/01wpjm123 Ministry of Science and ICT ź³¼ķ•™źø°ģˆ ģ •ė³“ķ†µģ‹ ė¶€'),
(122876, 'https://ror.org/046mx8f45', 'en', 1, 'https://ror.org/046mx8f45 Kastamonu Education and Research Hospital'),
(122877, 'https://ror.org/039y7kd32', 'en', 1, 'https://ror.org/039y7kd32 de''Montmorency College of Dentistry'),
(122878, 'https://ror.org/00f5vzj66', 'no_lang_code', 1, 'https://ror.org/00f5vzj66 Muraki Ltd. Muraki Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ ćƒ©ć‚­'),
(122879, 'https://ror.org/01q2zc414', 'en', 1, 'https://ror.org/01q2zc414 Institutul Național de Cercetare-Dezvoltare pentru Bioresurse Alimentare‒ IBA București National Research & Development Institute for Food Bioresources ‒ IBA Bucharest'),
(122880, 'https://ror.org/02xen4y57', 'no_lang_code', 1, 'https://ror.org/02xen4y57 Flowserve Japan Co., Ltd. Flowserve Japan Co., Ltd. (Japan) ę—„ęœ¬ćƒ•ćƒ­ćƒ¼ć‚µćƒ¼ćƒ–ę Ŗå¼ä¼šē¤¾'),
(122881, 'https://ror.org/05re20710', 'no_lang_code', 1, 'https://ror.org/05re20710 Almetax Manufacturing Co., Ltd. Almetax Manufacturing Co., Ltd. (Japan) ć‚¢ćƒ«ćƒ”ć‚æćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(122882, 'https://ror.org/004d5qr63', 'en', 1, 'https://ror.org/004d5qr63 Molecular Immunity Unit'),
(122883, 'https://ror.org/03917y941', 'no_lang_code', 1, 'https://ror.org/03917y941 Okaya Electric Industries Co., Ltd. Okaya Electric Industries Co., Ltd. (Japan) å²”č°·é›»ę©Ÿē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(122884, 'https://ror.org/000a9mh22', 'no_lang_code', 1, 'https://ror.org/000a9mh22 Chemipro Kasei Kaisha, Ltd. Chemipro Kasei Kaisha, Ltd. (Japan) ć‚±ćƒŸćƒ—ćƒ­åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(122885, 'https://ror.org/014pbms62', 'no_lang_code', 1, 'https://ror.org/014pbms62 KRI, Inc. KRI, Inc. (Japan) ę Ŗå¼ä¼šē¤¾KRI'),
(122886, 'https://ror.org/040mhfp46', 'no_lang_code', 1, 'https://ror.org/040mhfp46 Oyatsu Company Oyatsu Company (Japan) ę Ŗå¼ä¼šē¤¾ćŠć‚„ć¤ć‚«ćƒ³ćƒ‘ćƒ‹ćƒ¼'),
(122887, 'https://ror.org/01fmccx59', 'no_lang_code', 1, 'https://ror.org/01fmccx59 Dojindo Laboratories Dojindo Laboratories (Japan) ę Ŗå¼ä¼šē¤¾åŒä»åŒ–å­¦ē ”ē©¶ę‰€'),
(122888, 'https://ror.org/051z6e826', 'en', 1, 'https://ror.org/051z6e826 Arcadia Fund'),
(122889, 'https://ror.org/00pwzm189', 'no_lang_code', 1, 'https://ror.org/00pwzm189 Inoac Corporation Inoac Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒŽć‚¢ćƒƒć‚Æć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(122890, 'https://ror.org/04fab7v88', 'no_lang_code', 1, 'https://ror.org/04fab7v88 Sakurai Kogyo Co., Ltd. Sakurai Kogyo Co., Ltd. (Japan) ę«»äŗ•å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122891, 'https://ror.org/05kft0f25', 'no_lang_code', 1, 'https://ror.org/05kft0f25 Ambition Photonics Incorporated Ambition Photonics Incorporated (Japan) ć‚¢ćƒ³ćƒ“ć‚·ćƒ§ćƒ³ćƒ»ćƒ•ć‚©ćƒˆćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(122892, 'https://ror.org/03rwq7j42', 'no_lang_code', 1, 'https://ror.org/03rwq7j42 TYK Corporation TYK Corporation (Japan) ę±äŗ¬ēŖÆę„­ę Ŗå¼ä¼šē¤¾'),
(122893, 'https://ror.org/05etehc60', 'no_lang_code', 1, 'https://ror.org/05etehc60 Toukei Computer Co., Ltd. Toukei Computer Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę±čØˆé›»ē®—'),
(122894, 'https://ror.org/02f28hq55', 'no_lang_code', 1, 'https://ror.org/02f28hq55 Micado Co., Ltd. Micado Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŸć‚«ćƒ‰'),
(122895, 'https://ror.org/05dvsnx49', 'en', 1, 'https://ror.org/05dvsnx49 Al-Neelain University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„ŁŠŁ†'),
(122896, 'https://ror.org/03hnftc56', 'no_lang_code', 1, 'https://ror.org/03hnftc56 YUPO Corporation YUPO Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒćƒ»ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(122897, 'https://ror.org/056hrt762', 'no_lang_code', 1, 'https://ror.org/056hrt762 Justsystems Corporation Justsystems Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ£ć‚¹ćƒˆć‚·ć‚¹ćƒ†ćƒ '),
(122898, 'https://ror.org/02ck23017', 'no_lang_code', 1, 'https://ror.org/02ck23017 Sanensya Co., Ltd. Sanensya Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē®—å††čˆŽ'),
(122899, 'https://ror.org/01j6m8n10', 'no_lang_code', 1, 'https://ror.org/01j6m8n10 Hirakawa Hewtech Corp. Hirakawa Hewtech Corp. (Japan) å¹³ę²³ćƒ’ćƒ„ćƒ¼ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(122900, 'https://ror.org/01kd5m353', 'sv', 1, 'https://ror.org/01kd5m353 Vinnova'),
(122901, 'https://ror.org/05vc4kr74', 'no_lang_code', 1, 'https://ror.org/05vc4kr74 Architects Regional Planners & Associates, Kyoto Architects Regional Planners & Associates, Kyoto (Japan) ę Ŗå¼ä¼šē¤¾åœ°åŸŸčØˆē”»å»ŗēÆ‰ē ”ē©¶ę‰€'),
(122902, 'https://ror.org/03nca7325', 'no_lang_code', 1, 'https://ror.org/03nca7325 Geothermal Energy Research And Development Co., Ltd. Geothermal Energy Research And Development Co., Ltd. (Japan) åœ°ē†±ęŠ€č”“é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(122903, 'https://ror.org/04xhy8q59', 'fr', 1, 'https://ror.org/04xhy8q59 University of Poitiers UniversitƩ de Poitiers'),
(122904, 'https://ror.org/02143gg81', 'no_lang_code', 1, 'https://ror.org/02143gg81 Ai-Phase Co., Ltd. Ai-Phase Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ•ć‚§ć‚¤ć‚ŗ'),
(122905, 'https://ror.org/02qymxw58', 'no_lang_code', 1, 'https://ror.org/02qymxw58 A&A Material Corporation A&A Material Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ¼ć‚¢ćƒ³ćƒ‰ć‚Øćƒ¼ćƒžćƒ†ćƒŖć‚¢ćƒ«'),
(122906, 'https://ror.org/04wbca218', 'fr', 1, 'https://ror.org/04wbca218 Patrimoine, LittƩrature, Histoire'),
(122907, 'https://ror.org/0523bqk87', 'no_lang_code', 1, 'https://ror.org/0523bqk87 Contec Co., Ltd. Contec Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚³ćƒ³ćƒ†ćƒƒć‚Æ'),
(122908, 'https://ror.org/059nwns02', 'no_lang_code', 1, 'https://ror.org/059nwns02 ATOX Co., Ltd. ATOX Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒˆćƒƒć‚Æć‚¹'),
(122909, 'https://ror.org/032hdk172', 'en', 1, 'https://ror.org/032hdk172 University of Mumbai UniversitĆ© de mumbai ą¤®ą„ą¤‚ą¤¬ą¤ˆ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®®ąÆą®®ąÆą®ŖąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ముంబయి ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(122910, 'https://ror.org/05bs6ak67', 'it', 1, 'https://ror.org/05bs6ak67 Ente Ospedaliero Ospedali Galliera'),
(122911, 'https://ror.org/01myteh25', 'en', 1, 'https://ror.org/01myteh25 AlJafara University'),
(122912, 'https://ror.org/028km2955', 'no_lang_code', 1, 'https://ror.org/028km2955 Chevron Japan Ltd. Chevron Japan Ltd. (Japan) ć‚·ć‚§ćƒ–ćƒ­ćƒ³ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(122913, 'https://ror.org/00dbjbp09', 'no_lang_code', 1, 'https://ror.org/00dbjbp09 Takahashi Curtain WALL Corporation Takahashi Curtain WALL Corporation (Japan) é«˜ę©‹ć‚«ćƒ¼ćƒ†ćƒ³ć‚¦ć‚©ćƒ¼ćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122914, 'https://ror.org/0181vgx31', 'no_lang_code', 1, 'https://ror.org/0181vgx31 Nitaka Co., Ltd. Nitaka Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ć‚¤ć‚æć‚«'),
(122915, 'https://ror.org/048q1y603', 'no_lang_code', 1, 'https://ror.org/048q1y603 Seiken Co., Ltd. Seiken Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē²¾ē ”'),
(122916, 'https://ror.org/046ccgf47', 'no_lang_code', 1, 'https://ror.org/046ccgf47 Microarts Corporation Microarts Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒžć‚¤ć‚Æćƒ­ć‚¢ćƒ¼ćƒ„'),
(122917, 'https://ror.org/04zx31742', 'no_lang_code', 1, 'https://ror.org/04zx31742 Cleanup Corporation Cleanup Corporation (Japan) ć‚ÆćƒŖćƒŠćƒƒćƒ—ę Ŗå¼ä¼šē¤¾'),
(122918, 'https://ror.org/05dge2d05', 'no_lang_code', 1, 'https://ror.org/05dge2d05 Hosoda Corporation Hosoda Corporation (Japan) ę Ŗå¼ä¼šē¤¾ē“°ē”°å·„å‹™åŗ—'),
(122919, 'https://ror.org/03e5tvf75', 'no_lang_code', 1, 'https://ror.org/03e5tvf75 Shinkawa Ltd. Shinkawa Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę–°å·'),
(122920, 'https://ror.org/00zvr4r49', 'no_lang_code', 1, 'https://ror.org/00zvr4r49 TWO Cells Co., Ltd. TWO Cells Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ„ćƒ¼ć‚»ćƒ«'),
(122921, 'https://ror.org/00qh5hj46', 'no_lang_code', 1, 'https://ror.org/00qh5hj46 Oliver Corporation Oliver Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚ŖćƒŖćƒćƒ¼'),
(122922, 'https://ror.org/02nxg3q95', 'no_lang_code', 1, 'https://ror.org/02nxg3q95 KAJI Technology Corporation KAJI Technology Corporation (Japan) ę Ŗå¼ä¼šē¤¾åŠ åœ°ćƒ†ćƒƒć‚Æ'),
(122923, 'https://ror.org/00gdbp207', 'en', 0, 'https://ror.org/00gdbp207 The University of Wales, Newport'),
(122924, 'https://ror.org/03b6k6k23', 'no_lang_code', 1, 'https://ror.org/03b6k6k23 Koike Sanso Kogyo Co., Ltd. Koike Sanso Kogyo Co., Ltd. (Japan) å°ę± é…øē“ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122925, 'https://ror.org/041ytkn87', 'no_lang_code', 1, 'https://ror.org/041ytkn87 A-Hitbio Inc. A-Hitbio Inc. (Japan) ęœ‰é™ä¼šē¤¾A-HITBio'),
(122926, 'https://ror.org/00p324w42', 'en', 1, 'https://ror.org/00p324w42 Heritage Poly Heritage Polytechnic'),
(122927, 'https://ror.org/01mtcc283', 'fr', 1, 'https://ror.org/01mtcc283 Le Mans University Le Mans UniversitƩ'),
(122928, 'https://ror.org/05x2bcf33', 'en', 1, 'https://ror.org/05x2bcf33 Carnegie Mellon University'),
(122929, 'https://ror.org/02489yd70', 'no_lang_code', 1, 'https://ror.org/02489yd70 Biomaster, Inc. Biomaster, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚Ŗćƒžć‚¹ć‚æćƒ¼'),
(122930, 'https://ror.org/05btf3g23', 'it', 1, 'https://ror.org/05btf3g23 SocietĆ  Cooperativa Culture'),
(122931, 'https://ror.org/022h3vn82', 'no_lang_code', 1, 'https://ror.org/022h3vn82 Kumagai GUMI Co., Ltd. Kumagai GUMI Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē†Šč°·ēµ„'),
(122932, 'https://ror.org/05sk76643', 'no_lang_code', 1, 'https://ror.org/05sk76643 Tetra Co., Ltd. Tetra Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ćƒˆćƒ©'),
(122933, 'https://ror.org/05fgmrk68', 'no_lang_code', 1, 'https://ror.org/05fgmrk68 Mediastic, Inc. Mediastic, Inc. (Japan) ćƒ”ćƒ‡ć‚£ć‚¢ć‚¹ćƒ†ć‚£ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(122934, 'https://ror.org/051gtkc43', 'no_lang_code', 1, 'https://ror.org/051gtkc43 Inspec Inc. Inspec Inc. (Japan) ć‚¤ćƒ³ć‚¹ćƒšćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(122935, 'https://ror.org/03hz16t86', 'en', 1, 'https://ror.org/03hz16t86 Day One Biopharmaceuticals Day One Biopharmaceuticals (United States) Day One Biopharmaceuticals, Inc.'),
(122936, 'https://ror.org/02f21tp37', 'no_lang_code', 1, 'https://ror.org/02f21tp37 UG Toshi-Kenchiku Co., Ltd. UG Toshi-Kenchiku Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾UGéƒ½åø‚å»ŗēÆ‰'),
(122937, 'https://ror.org/05w2pyr06', 'no_lang_code', 1, 'https://ror.org/05w2pyr06 Chemical Grouting Company Chemical Grouting Company (Japan) ć‚±ćƒŸć‚«ćƒ«ć‚°ćƒ©ć‚¦ćƒˆę Ŗå¼ä¼šē¤¾'),
(122938, 'https://ror.org/044w1h350', 'no_lang_code', 1, 'https://ror.org/044w1h350 Sinanen Holdings Co., Ltd. Sinanen Holdings Co., Ltd. (Japan) ć‚·ćƒŠćƒćƒ³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(122939, 'https://ror.org/039tnn984', 'en', 1, 'https://ror.org/039tnn984 Strata Oncology Strata Oncology (United States)'),
(122940, 'https://ror.org/003ex4g35', 'en', 1, 'https://ror.org/003ex4g35 Gairdner Foundation'),
(122941, 'https://ror.org/032y3v174', 'id', 1, 'https://ror.org/032y3v174 Universitas Graha Nusantara'),
(122942, 'https://ror.org/05wge4067', 'no_lang_code', 1, 'https://ror.org/05wge4067 Sciocs Company Limited Sciocs Company Limited (Japan) ę Ŗå¼ä¼šē¤¾ć‚µć‚¤ć‚Ŗć‚Æć‚¹'),
(122943, 'https://ror.org/00314zp94', 'en', 1, 'https://ror.org/00314zp94 Canadian Rheumatology Association SociƩtƩ Canadienne Rheumatologie'),
(122944, 'https://ror.org/00bzwjq91', 'no_lang_code', 1, 'https://ror.org/00bzwjq91 A&T Corporation A&T Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ć‚¢ćƒ³ćƒ‰ćƒ†ć‚£ćƒ¼'),
(122945, 'https://ror.org/05xa4j098', 'en', 1, 'https://ror.org/05xa4j098 The Shaw Prize Foundation é‚µé€øå¤«å„–åŸŗé‡‘ä¼š'),
(122946, 'https://ror.org/000g0xp52', 'no_lang_code', 1, 'https://ror.org/000g0xp52 C-TECH Corporation C-TECH Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ćƒ¼ćƒ†ćƒƒć‚Æ'),
(122947, 'https://ror.org/05mj6kx88', 'no_lang_code', 1, 'https://ror.org/05mj6kx88 Nohmi Bosai Ltd. Nohmi Bosai Ltd. (Japan) čƒ½ē¾Žé˜²ē½ę Ŗå¼ä¼šē¤¾'),
(122948, 'https://ror.org/009aqkt86', 'no_lang_code', 1, 'https://ror.org/009aqkt86 SAN-ETSU Metals Co., Ltd. SAN-ETSU Metals Co., Ltd. (Japan) ć‚µćƒ³ć‚Øćƒ„é‡‘å±žę Ŗå¼ä¼šē¤¾'),
(122949, 'https://ror.org/05bm8pn61', 'no_lang_code', 1, 'https://ror.org/05bm8pn61 Tohrin Co., Ltd. Tohrin Co., Ltd. (Japan) ę±ē³å•†äŗ‹ę Ŗå¼ä¼šē¤¾'),
(122950, 'https://ror.org/02a71dp93', 'en', 1, 'https://ror.org/02a71dp93 Murder Accountability Project'),
(122951, 'https://ror.org/02t3yrk52', 'es', 1, 'https://ror.org/02t3yrk52 Institute for Advanced Research in Business and Economics Instituto de Investigación Avanzada en Empresa y Economía Negozioei eta Ekonomiari buruzko Ikerketa Aurreratuko Institutoa'),
(122952, 'https://ror.org/00h9yan21', 'no_lang_code', 1, 'https://ror.org/00h9yan21 Kinsei Matec Co., Ltd. Kinsei Matec Co., Ltd. (Japan) ć‚­ćƒ³ć‚»ć‚¤ćƒžćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(122953, 'https://ror.org/05hfq2f64', 'no_lang_code', 1, 'https://ror.org/05hfq2f64 Tohto Kasei Co., Ltd. Tohto Kasei Co., Ltd. (Japan) ę±éƒ½åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(122954, 'https://ror.org/05a4cm665', 'en', 1, 'https://ror.org/05a4cm665 Government of Norway Norges regjering'),
(122955, 'https://ror.org/03pyc4a49', 'no_lang_code', 1, 'https://ror.org/03pyc4a49 Okayama Paper Industries Co., Ltd. Okayama Paper Industries Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å²”å±±č£½ē“™'),
(122956, 'https://ror.org/018qe7008', 'no_lang_code', 1, 'https://ror.org/018qe7008 Fujisash Co., Ltd. Fujisash Co., Ltd. (Japan) äøäŗŒć‚µćƒƒć‚·ę Ŗå¼ä¼šē¤¾'),
(122957, 'https://ror.org/00be8fx64', 'no', 0, 'https://ror.org/00be8fx64 HĆøgskulen i Sogn og Fjordane Sogn og Fjordane University College'),
(122958, 'https://ror.org/057sa8n65', 'no_lang_code', 1, 'https://ror.org/057sa8n65 Airex Inc. Airex Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ¬ćƒƒć‚Æć‚¹'),
(122959, 'https://ror.org/04g0bs696', 'no_lang_code', 1, 'https://ror.org/04g0bs696 Fujicco Co., Ltd. Fujicco Co., Ltd. (Japan) ćƒ•ć‚øćƒƒć‚³ę Ŗå¼ä¼šē¤¾'),
(122960, 'https://ror.org/02ggykc77', 'no_lang_code', 1, 'https://ror.org/02ggykc77 Techno-Tsukihoshi Corporation Techno-Tsukihoshi Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚ÆćƒŽęœˆę˜Ÿ'),
(122961, 'https://ror.org/059kwsq98', 'no_lang_code', 1, 'https://ror.org/059kwsq98 Ambis Corporation. Ambis Corporation. (Japan) ę Ŗå¼ä¼šē¤¾AMBiS'),
(122962, 'https://ror.org/04rveer83', 'en', 1, 'https://ror.org/04rveer83 Fulbright Poland Fulbright Polska'),
(122963, 'https://ror.org/05vaczf67', 'no_lang_code', 1, 'https://ror.org/05vaczf67 AOI Electronics Co., Ltd. AOI Electronics Co., Ltd. (Japan) ć‚¢ć‚Ŗć‚¤é›»å­ę Ŗå¼ä¼šē¤¾'),
(122964, 'https://ror.org/055fge986', 'no_lang_code', 1, 'https://ror.org/055fge986 Nishimatsu Construction Co., Ltd. Nishimatsu Construction Co., Ltd. (Japan) č„æę¾å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(122965, 'https://ror.org/00cwhnf71', 'no_lang_code', 1, 'https://ror.org/00cwhnf71 Aihara Electrical Engineering Co., Ltd. Aihara Electrical Engineering Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚ć„ćÆć‚‰'),
(122966, 'https://ror.org/00cdstq80', 'no_lang_code', 1, 'https://ror.org/00cdstq80 OI Electric Co., Ltd. OI Electric Co., Ltd. (Japan) å¤§äŗ•é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(122967, 'https://ror.org/00gmbby96', 'en', 1, 'https://ror.org/00gmbby96 Centre for Anglophone Studies'),
(122968, 'https://ror.org/01g75gq10', 'no_lang_code', 1, 'https://ror.org/01g75gq10 Eiraku Electric Co., Ltd. Eiraku Electric Co., Ltd. (Japan) ę°øę„½é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(122969, 'https://ror.org/01yaj9a77', 'en', 1, 'https://ror.org/01yaj9a77 ZonMw, The Dutch Organisation for knowledge and innovation in health, healthcare and well-being'),
(122970, 'https://ror.org/00f02wy24', 'no_lang_code', 1, 'https://ror.org/00f02wy24 Nakayo, Inc. Nakayo, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŠć‚«ćƒØ'),
(122971, 'https://ror.org/04k75jj88', 'no_lang_code', 1, 'https://ror.org/04k75jj88 LSI Medience Corporation LSI Medience Corporation (Japan) ę Ŗå¼ä¼šē¤¾LSIćƒ”ćƒ‡ć‚£ć‚Øćƒ³ć‚¹'),
(122972, 'https://ror.org/01mhad122', 'no_lang_code', 1, 'https://ror.org/01mhad122 Algorithmica Inc. Algorithmica Inc. (Japan) ęœ‰é™ä¼šē¤¾ć‚¢ćƒ«ć‚“ćƒŖć‚ŗćƒŸć‚«'),
(122973, 'https://ror.org/03dbt0z51', 'no_lang_code', 1, 'https://ror.org/03dbt0z51 Kyuden Technosystems Corporation Kyuden Technosystems Corporation (Japan) ä¹é›»ćƒ†ć‚ÆćƒŽć‚·ć‚¹ćƒ†ćƒ ć‚ŗę Ŗå¼ä¼šē¤¾'),
(122974, 'https://ror.org/00epcxn26', 'no_lang_code', 1, 'https://ror.org/00epcxn26 Eletakuma Co., Ltd. Eletakuma Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ¬ć‚æć‚Æćƒž'),
(122975, 'https://ror.org/00kjpdj33', 'no_lang_code', 1, 'https://ror.org/00kjpdj33 Optim Co., Ltd. Optim Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ—ćƒ†ć‚£ćƒ '),
(122976, 'https://ror.org/009h4xc05', 'en', 1, 'https://ror.org/009h4xc05 Liberia Broadcasting System'),
(122977, 'https://ror.org/014ktry78', 'en', 1, 'https://ror.org/014ktry78 NIHR Biomedical Research Centre at The Royal Marsden and the ICR'),
(122978, 'https://ror.org/00mqnm217', 'no_lang_code', 1, 'https://ror.org/00mqnm217 Bioimmulance Co., Ltd. Bioimmulance Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚Ŗć‚¤ćƒŸćƒ„ćƒ©ćƒ³ć‚¹'),
(122979, 'https://ror.org/04fa9m797', 'no_lang_code', 1, 'https://ror.org/04fa9m797 Exawizards Inc. Exawizards Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚Æć‚µć‚¦ć‚£ć‚¶ćƒ¼ć‚ŗ'),
(122980, 'https://ror.org/036vwej91', 'no_lang_code', 1, 'https://ror.org/036vwej91 Okawara MFG. Co., Ltd. Okawara MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å¤§å·åŽŸč£½ä½œę‰€'),
(122981, 'https://ror.org/05efjaw24', 'no_lang_code', 1, 'https://ror.org/05efjaw24 Fudow Co., Ltd. Fudow Co., Ltd. (Japan) ćƒ•ćƒ‰ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(122982, 'https://ror.org/04gqg1a07', 'fr', 1, 'https://ror.org/04gqg1a07 UniversitƩ Savoie Mont Blanc'),
(122983, 'https://ror.org/01b4kdj10', 'no_lang_code', 1, 'https://ror.org/01b4kdj10 Spirulina BIO-LAB. Co., Ltd. Spirulina BIO-LAB. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ćƒ”ćƒ«ćƒŖćƒŠē ”ē©¶ę‰€'),
(122984, 'https://ror.org/006yf8061', 'no_lang_code', 1, 'https://ror.org/006yf8061 F.C.C. F.C.C. Co., Ltd. (Japan) F.C.C., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ•ćƒ»ć‚·ćƒ¼ćƒ»ć‚·ćƒ¼'),
(122985, 'https://ror.org/03zyxxj44', 'fr', 1, 'https://ror.org/03zyxxj44 Centre intĆ©grĆ© universitaire de santĆ© et de services sociaux de l''Est-de-l''Ǝle-de-MontrĆ©al'),
(122986, 'https://ror.org/010naa016', 'fr', 1, 'https://ror.org/010naa016 Molecular, Cellular and Developmental Biology Unit UnitƩ de biologie MolƩculaire, Cellulaire et du DƩveloppement'),
(122987, 'https://ror.org/044m9mw93', 'en', 1, 'https://ror.org/044m9mw93 NIHR Newcastle Biomedical Research Centre'),
(122988, 'https://ror.org/02f6dcw23', 'en', 1, 'https://ror.org/02f6dcw23 The University of Texas at San Antonio Health Science Center'),
(122989, 'https://ror.org/01qmv5v06', 'no_lang_code', 1, 'https://ror.org/01qmv5v06 Wetmaster Co., Ltd. Wetmaster Co., Ltd. (Japan) ć‚¦ć‚Øćƒƒćƒˆćƒžć‚¹ć‚æćƒ¼ę Ŗå¼ä¼šē¤¾'),
(122990, 'https://ror.org/02kfaqn82', 'no_lang_code', 1, 'https://ror.org/02kfaqn82 Tokuhon Corporation Tokuhon Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆć‚Æćƒ›ćƒ³'),
(122991, 'https://ror.org/0098rhs11', 'no_lang_code', 1, 'https://ror.org/0098rhs11 Hinode Kagaku Kogyo Kaisha Ltd. Hinode Kagaku Kogyo Kaisha Ltd. (Japan) ę—„ä¹‹å‡ŗåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122992, 'https://ror.org/00w0n7273', 'no_lang_code', 1, 'https://ror.org/00w0n7273 Tonets Corporation Tonets Corporation (Japan) ę±ę“‹ē†±å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(122993, 'https://ror.org/033warh24', 'no_lang_code', 1, 'https://ror.org/033warh24 Dyden Corporation Dyden Corporation (Japan) å¤§é›»ę Ŗå¼ä¼šē¤¾'),
(122994, 'https://ror.org/00mwx7p82', 'no_lang_code', 1, 'https://ror.org/00mwx7p82 Taiyu Kensetu Co., Ltd. Taiyu Kensetu Co., Ltd. (Japan) å¤§ęœ‰å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(122995, 'https://ror.org/036z0bt63', 'en', 1, 'https://ror.org/036z0bt63 Akwa Ibom State College Of Education'),
(122996, 'https://ror.org/042xhn762', 'no_lang_code', 1, 'https://ror.org/042xhn762 Cybernet SYSTEMS Co., Ltd. Cybernet SYSTEMS Co., Ltd. (Japan) ć‚µć‚¤ćƒćƒćƒƒćƒˆć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(122997, 'https://ror.org/01s1ykg57', 'no_lang_code', 1, 'https://ror.org/01s1ykg57 TI Asahi Co., Ltd. TI Asahi Co., Ltd. (Japan) TIć‚¢ć‚µćƒ’ę Ŗå¼ä¼šē¤¾'),
(122998, 'https://ror.org/01hwe8n54', 'no_lang_code', 1, 'https://ror.org/01hwe8n54 Kilony Industry Co., Ltd. Kilony Industry Co., Ltd. (Japan) ć‚­ćƒ­ćƒ‹ćƒ¼ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(122999, 'https://ror.org/03ha2q922', 'en', 1, 'https://ror.org/03ha2q922 Narodowe Centrum Nauki National Science Centre'),
(123000, 'https://ror.org/038g9b068', 'en', 1, 'https://ror.org/038g9b068 Kebbi State Polytechnic'),
(123001, 'https://ror.org/05j81n580', 'no_lang_code', 1, 'https://ror.org/05j81n580 Residential Construction Agency Residential Construction Agency (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ćƒ«ć‚·ćƒ¼ć‚Øćƒ¼'),
(123002, 'https://ror.org/00054rx45', 'no_lang_code', 1, 'https://ror.org/00054rx45 ECI, Inc. ECI, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ECI'),
(123003, 'https://ror.org/022hxdd51', 'no_lang_code', 1, 'https://ror.org/022hxdd51 Nippi Corporation Nippi Corporation (Japan) ę—„ęœ¬é£›č”Œę©Ÿę Ŗå¼ä¼šē¤¾'),
(123004, 'https://ror.org/04qjsfs62', 'no_lang_code', 1, 'https://ror.org/04qjsfs62 Incomjapan, Inc. Incomjapan, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ć‚³ćƒ ć‚øćƒ£ćƒ‘ćƒ³'),
(123005, 'https://ror.org/0300g2m85', 'en', 1, 'https://ror.org/0300g2m85 NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber'),
(123006, 'https://ror.org/03d3sg084', 'no_lang_code', 1, 'https://ror.org/03d3sg084 Chikusui Canycom Inc. Chikusui Canycom Inc. (Japan) ę Ŗå¼ä¼šē¤¾ē­‘ę°“ć‚­ćƒ£ćƒ‹ć‚³ćƒ '),
(123007, 'https://ror.org/0035da546', 'en', 1, 'https://ror.org/0035da546 Academic Center for Computing and Media Studies, Kyoto University äŗ¬éƒ½å¤§å­¦å­¦č”“ęƒ…å ±ćƒ”ćƒ‡ć‚£ć‚¢ć‚»ćƒ³ć‚æćƒ¼'),
(123008, 'https://ror.org/05rg3k287', 'en', 1, 'https://ror.org/05rg3k287 International Mathematical Union'),
(123009, 'https://ror.org/04c691616', 'en', 0, 'https://ror.org/04c691616 Technological Educational Institute of Peloponnese ΤΕΙ Ī ĪµĪ»ĪæĻ€ĪæĪ½Ī½Ī®ĻƒĪæĻ…'),
(123010, 'https://ror.org/02vjkv261', 'fr', 1, 'https://ror.org/02vjkv261 French Institute of Health and Medical Research Inserm Institut National de la SantƩ et de la Recherche MƩdicale'),
(123011, 'https://ror.org/05v5afz57', 'no_lang_code', 1, 'https://ror.org/05v5afz57 EIKI Industrial Co., Ltd. EIKI Industrial Co., Ltd. (Japan) ę˜ ę©Ÿå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123012, 'https://ror.org/05ew15w80', 'no_lang_code', 1, 'https://ror.org/05ew15w80 Tocalo Co., Ltd. Tocalo Co., Ltd. (Japan) ćƒˆćƒ¼ć‚«ćƒ­ę Ŗå¼ä¼šē¤¾'),
(123013, 'https://ror.org/0053wg403', 'no_lang_code', 1, 'https://ror.org/0053wg403 Nuflare Technology, Inc. Nuflare Technology, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ„ćƒ¼ćƒ•ćƒ¬ć‚¢ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼'),
(123014, 'https://ror.org/01w3rm550', 'id', 1, 'https://ror.org/01w3rm550 Institut Teknologi Nasional Bandung'),
(123015, 'https://ror.org/05bkrqm38', 'no_lang_code', 1, 'https://ror.org/05bkrqm38 KIRA Corporation KIRA Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒ©ćƒ»ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(123016, 'https://ror.org/01ctcea11', 'no_lang_code', 1, 'https://ror.org/01ctcea11 Iwatsu Electric Co., Ltd. Iwatsu Electric Co., Ltd. (Japan) å²©å“Žé€šäæ”ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123017, 'https://ror.org/04nb2z821', 'no_lang_code', 1, 'https://ror.org/04nb2z821 Yasunaga Corporation Yasunaga Corporation (Japan) ę Ŗå¼ä¼šē¤¾å®‰ę°ø'),
(123018, 'https://ror.org/02bbcad85', 'fr', 1, 'https://ror.org/02bbcad85 FƩdƩration de Recherche en MathƩmatiques Auvergne-RhƓne-Alpes'),
(123019, 'https://ror.org/034f5xx83', 'es', 1, 'https://ror.org/034f5xx83 Instituto Superior Tecnologico Compu Sur'),
(123020, 'https://ror.org/0277d4w19', 'no_lang_code', 1, 'https://ror.org/0277d4w19 INES Corporation INES Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒć‚¹'),
(123021, 'https://ror.org/035tvtx02', 'no_lang_code', 1, 'https://ror.org/035tvtx02 Mayekawa MFG. Co., Ltd. Mayekawa MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å‰å·č£½ä½œę‰€'),
(123022, 'https://ror.org/04aysmc18', 'en', 1, 'https://ror.org/04aysmc18 Mays Cancer Center at UT Health San Antonio'),
(123023, 'https://ror.org/034fwhs43', 'no_lang_code', 1, 'https://ror.org/034fwhs43 Future Vision Inc. Future Vision Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ„ćƒ¼ćƒćƒ£ćƒ¼ćƒ“ć‚øćƒ§ćƒ³'),
(123024, 'https://ror.org/0553xp762', 'fr', 1, 'https://ror.org/0553xp762 Institut de Droit PrivƩ Institute of Private Law'),
(123025, 'https://ror.org/051v6mv50', 'en', 1, 'https://ror.org/051v6mv50 OceanX'),
(123026, 'https://ror.org/04gg9q912', 'no_lang_code', 1, 'https://ror.org/04gg9q912 Pronexus Inc. Pronexus Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ­ćƒć‚Æć‚µć‚¹'),
(123027, 'https://ror.org/00netxe34', 'no_lang_code', 1, 'https://ror.org/00netxe34 Hakuto Co., Ltd. Hakuto Co., Ltd. (Japan) ä¼Æę±ę Ŗå¼ä¼šē¤¾'),
(123028, 'https://ror.org/04j42z303', 'no_lang_code', 1, 'https://ror.org/04j42z303 NDS Co., Ltd. NDS Co., Ltd. (Japan) NDSę Ŗå¼ä¼šē¤¾'),
(123029, 'https://ror.org/01e3pjh06', 'en', 1, 'https://ror.org/01e3pjh06 Venite University'),
(123030, 'https://ror.org/02fwg4025', 'no_lang_code', 1, 'https://ror.org/02fwg4025 Higashio MECH Co., Ltd. Higashio MECH Co., Ltd. (Japan) ę±å°¾ćƒ”ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(123031, 'https://ror.org/04zgjsw72', 'en', 1, 'https://ror.org/04zgjsw72 Shenzhen Bao''an District Songgang People''s Hospital ę·±åœ³åø‚å®å®‰åŒŗę¾å²—äŗŗę°‘åŒ»é™¢'),
(123032, 'https://ror.org/03357pp27', 'no_lang_code', 1, 'https://ror.org/03357pp27 TOIN Corporation TOIN Corporation (Japan) ćƒˆćƒ¼ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123033, 'https://ror.org/03epdsg87', 'no_lang_code', 1, 'https://ror.org/03epdsg87 SCI Co., Ltd. SCI Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ć‚·ćƒ¼ć‚¢ć‚¤'),
(123034, 'https://ror.org/00wk3s644', 'en', 1, 'https://ror.org/00wk3s644 Kedge Business School'),
(123035, 'https://ror.org/05ewk6e20', 'no_lang_code', 1, 'https://ror.org/05ewk6e20 MK Seiko Co., Ltd. MK Seiko Co., Ltd. (Japan) ć‚Øćƒ ć‚±ćƒ¼ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(123036, 'https://ror.org/04ctphw07', 'no_lang_code', 1, 'https://ror.org/04ctphw07 Flexion Inc. Flexion Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ¬ć‚Æć‚·ćƒ§ćƒ³ć‚³ćƒ³ć‚µćƒ«ćƒ†ć‚£ćƒ³ć‚°'),
(123037, 'https://ror.org/04zfaws65', 'no_lang_code', 1, 'https://ror.org/04zfaws65 Nippi, Incorporated Nippi, Incorporated (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒƒćƒ”'),
(123038, 'https://ror.org/01524r080', 'es', 1, 'https://ror.org/01524r080 Centro de Tratamiento e investigación sobre cÔncer Luis Carlos Sarmiento Angulo Luis Carlos Sarmiento Angulo Cancer Treatment and Research Center (CTIC)'),
(123039, 'https://ror.org/04hnkj024', 'no_lang_code', 1, 'https://ror.org/04hnkj024 FC Development Co., Ltd. FC Development Co., Ltd. (Japan) ć‚Øćƒ•ć‚·ćƒ¼é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(123040, 'https://ror.org/0424ky746', 'no_lang_code', 1, 'https://ror.org/0424ky746 Speedia Co., Ltd. Speedia Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ćƒ”ćƒ¼ćƒ‡ć‚£ć‚¢'),
(123041, 'https://ror.org/03sx1t902', 'no_lang_code', 1, 'https://ror.org/03sx1t902 Sansho Co., Ltd. Sansho Co., Ltd. (Japan) äø‰ę™¶ę Ŗå¼ä¼šē¤¾'),
(123042, 'https://ror.org/03zn3xb08', 'no_lang_code', 1, 'https://ror.org/03zn3xb08 Polymer Processing Research Institute, Ltd. Polymer Processing Research Institute, Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é«˜åˆ†å­åŠ å·„ē ”ē©¶ę‰€'),
(123043, 'https://ror.org/0403f2j33', 'no_lang_code', 1, 'https://ror.org/0403f2j33 AOBA Genetics, Inc. AOBA Genetics, Inc. (Japan) ę Ŗå¼ä¼šē¤¾é’č‘‰ć‚øć‚§ćƒćƒ†ć‚£ć‚Æć‚¹'),
(123044, 'https://ror.org/05s6rge65', 'fr', 1, 'https://ror.org/05s6rge65 Ɖcole Centrale de Lyon'),
(123045, 'https://ror.org/00376kv67', 'en', 1, 'https://ror.org/00376kv67 Ikon Institute of Australia'),
(123046, 'https://ror.org/038xjm776', 'no_lang_code', 1, 'https://ror.org/038xjm776 ORC Manufacturing Co., Ltd. ORC Manufacturing Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ć‚Æč£½ä½œę‰€'),
(123047, 'https://ror.org/04fgmzs51', 'no_lang_code', 1, 'https://ror.org/04fgmzs51 Chibagin Research Institute Chibagin Research Institute (Japan) ę Ŗå¼ä¼šē¤¾ć”ć°ćŽć‚“ē·åˆē ”ē©¶ę‰€'),
(123048, 'https://ror.org/00a4xxf76', 'pt', 1, 'https://ror.org/00a4xxf76 Universidade Federal do Cariri'),
(123049, 'https://ror.org/04fsjgv64', 'no_lang_code', 1, 'https://ror.org/04fsjgv64 OBARA Corporation OBARA Corporation (Japan) OBARAę Ŗå¼ä¼šē¤¾'),
(123050, 'https://ror.org/03rsk0t12', 'no_lang_code', 1, 'https://ror.org/03rsk0t12 Manac Incorporated Manac Incorporated (Japan) ćƒžćƒŠćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(123051, 'https://ror.org/0350s1c15', 'en', 1, 'https://ror.org/0350s1c15 Haleakalā National Park Parque nacional Haleakalā'),
(123052, 'https://ror.org/03hgtq171', 'no_lang_code', 1, 'https://ror.org/03hgtq171 Kunimine Industries Co., Ltd. Kunimine Industries Co., Ltd. (Japan) ć‚Æćƒ‹ćƒŸćƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123053, 'https://ror.org/01bjwbq67', 'id', 1, 'https://ror.org/01bjwbq67 Akademi Akuntansi Boekittinggi'),
(123054, 'https://ror.org/055k2ws14', 'no_lang_code', 1, 'https://ror.org/055k2ws14 Keyware Solutions Inc. Keyware Solutions Inc. (Japan) ć‚­ćƒ¼ć‚¦ć‚§ć‚¢ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗę Ŗå¼ä¼šē¤¾'),
(123055, 'https://ror.org/05jpfwr70', 'no_lang_code', 1, 'https://ror.org/05jpfwr70 IKEN Engineering Co., Ltd. IKEN Engineering Co., Ltd. (Japan) åŒ»å»ŗć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(123056, 'https://ror.org/02r3tht29', 'no_lang_code', 1, 'https://ror.org/02r3tht29 TEN Architect & Design Co., Ltd. TEN Architect & Design Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å±•å»ŗēÆ‰čØ­čØˆäŗ‹å‹™ę‰€'),
(123057, 'https://ror.org/0597dp879', 'no_lang_code', 1, 'https://ror.org/0597dp879 Tokimec Inc. Tokimec Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆć‚­ćƒ”ćƒƒć‚Æ'),
(123058, 'https://ror.org/05xd3cy35', 'no_lang_code', 1, 'https://ror.org/05xd3cy35 Yotsuba MILK Products Co., Ltd. Yotsuba MILK Products Co., Ltd. (Japan) ć‚ˆć¤č‘‰ä¹³ę„­ę Ŗå¼ä¼šē¤¾'),
(123059, 'https://ror.org/011tgak15', 'no_lang_code', 1, 'https://ror.org/011tgak15 Marujun Co., Ltd. Marujun Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾äøøé †'),
(123060, 'https://ror.org/037sz3n41', 'no_lang_code', 1, 'https://ror.org/037sz3n41 MORI-GUMI Co., Ltd. MORI-GUMI Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę£®ēµ„'),
(123061, 'https://ror.org/04ajrha20', 'no_lang_code', 1, 'https://ror.org/04ajrha20 Momoya Co., Ltd. Momoya Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę”ƒå±‹'),
(123062, 'https://ror.org/0183x0t02', 'no_lang_code', 1, 'https://ror.org/0183x0t02 Sodick Co., Ltd. Sodick Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚½ćƒ‡ć‚£ćƒƒć‚Æ'),
(123063, 'https://ror.org/02fd5cr60', 'no_lang_code', 1, 'https://ror.org/02fd5cr60 Bratech Co., Ltd. Bratech Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ–ćƒ©ćƒ†ćƒƒć‚Æ'),
(123064, 'https://ror.org/00452b662', 'no_lang_code', 1, 'https://ror.org/00452b662 Imabari Shipbuilding Co., Ltd. Imabari Shipbuilding Co., Ltd. (Japan) ä»Šę²»é€ čˆ¹ę Ŗå¼ä¼šē¤¾'),
(123065, 'https://ror.org/05gaanh88', 'no_lang_code', 1, 'https://ror.org/05gaanh88 Keiyo Blanking Kogyo Co., Ltd. Keiyo Blanking Kogyo Co., Ltd. (Japan) äŗ¬č‘‰ćƒ–ćƒ©ćƒ³ć‚­ćƒ³ć‚°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123066, 'https://ror.org/03ppn0319', 'no_lang_code', 1, 'https://ror.org/03ppn0319 WIT Corporation WIT Corporation (Japan) ę Ŗå¼ä¼šē¤¾ę—©ēØ²ē”°ęƒ…å ±ęŠ€č”“ē ”ē©¶ę‰€'),
(123067, 'https://ror.org/029brtt94', 'fr', 1, 'https://ror.org/029brtt94 Claude Bernard University Lyon 1 UniversitƩ Claude Bernard Lyon 1'),
(123068, 'https://ror.org/02f1h7y64', 'no_lang_code', 1, 'https://ror.org/02f1h7y64 TDF Corporation TDF Corporation (Japan) TDFę Ŗå¼ä¼šē¤¾'),
(123069, 'https://ror.org/00r6qxt95', 'no_lang_code', 1, 'https://ror.org/00r6qxt95 Kyodoken Institute, Co., Ltd. Kyodoken Institute, Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾äŗ¬éƒ½å‹•ē‰©ę¤œęŸ»ć‚»ćƒ³ć‚æćƒ¼'),
(123070, 'https://ror.org/011xbqv06', 'no_lang_code', 1, 'https://ror.org/011xbqv06 CMK Corporation CMK Corporation (Japan) ę—„ęœ¬ć‚·ć‚¤ć‚Øćƒ ć‚±ć‚¤ę Ŗå¼ä¼šē¤¾'),
(123071, 'https://ror.org/05wta3381', 'no_lang_code', 1, 'https://ror.org/05wta3381 Toudai TLO, Ltd. Toudai TLO, Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę±äŗ¬å¤§å­¦TLO'),
(123072, 'https://ror.org/01ev6gy70', 'pt', 1, 'https://ror.org/01ev6gy70 Escola Naval'),
(123073, 'https://ror.org/001aqnf71', 'en', 1, 'https://ror.org/001aqnf71 UK Research and Innovation'),
(123074, 'https://ror.org/053tx7e43', 'no_lang_code', 1, 'https://ror.org/053tx7e43 MIWA LOCK Co., Ltd. MIWA LOCK Co., Ltd. (Japan) ē¾Žå’Œćƒ­ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(123075, 'https://ror.org/00t08q103', 'en', 1, 'https://ror.org/00t08q103 Nuvalent Nuvalent, Inc. Nuvalent, Inc. (United States)'),
(123076, 'https://ror.org/01a041m90', 'no_lang_code', 1, 'https://ror.org/01a041m90 Dnaform Dnaform (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ćƒŠćƒ•ć‚©ćƒ¼ćƒ '),
(123077, 'https://ror.org/02n7kwv83', 'no_lang_code', 1, 'https://ror.org/02n7kwv83 Ishizuka Glass Co., Ltd. Ishizuka Glass Co., Ltd. (Japan) ēŸ³å”šē”å­ę Ŗå¼ä¼šē¤¾'),
(123078, 'https://ror.org/0416z8846', 'no_lang_code', 1, 'https://ror.org/0416z8846 SAGA Tekkohsho Co., Ltd. SAGA Tekkohsho Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ä½č³€é‰„å·„ę‰€'),
(123079, 'https://ror.org/01qvvnv12', 'no_lang_code', 1, 'https://ror.org/01qvvnv12 Nisshoku Corporation Nisshoku Corporation (Japan) ę—„ęœ¬ę¤ē”Ÿę Ŗå¼ä¼šē¤¾'),
(123080, 'https://ror.org/02feahw73', 'fr', 1, 'https://ror.org/02feahw73 Centre National de la Recherche Scientifique French National Centre for Scientific Research'),
(123081, 'https://ror.org/053ey8h98', 'no_lang_code', 1, 'https://ror.org/053ey8h98 Litho Tech Japan Corporation Litho Tech Japan Corporation (Japan) ćƒŖć‚½ćƒ†ćƒƒć‚Æć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123082, 'https://ror.org/021nxhr62', 'en', 1, 'https://ror.org/021nxhr62 U.S. National Science Foundation'),
(123083, 'https://ror.org/01w3r9442', 'no_lang_code', 1, 'https://ror.org/01w3r9442 Houtoku Co., Ltd. Houtoku Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ›ć‚¦ćƒˆć‚Æ'),
(123084, 'https://ror.org/051escj72', 'fr', 1, 'https://ror.org/051escj72 University of Montpellier UniversitƩ de Montpellier'),
(123085, 'https://ror.org/05767db45', 'en', 1, 'https://ror.org/05767db45 Suryodaya College of Engineering and Technology'),
(123086, 'https://ror.org/00avka345', 'no_lang_code', 1, 'https://ror.org/00avka345 Techno-UMG Co., Ltd. Techno-UMG Co., Ltd. (Japan) ćƒ†ć‚ÆćƒŽUMGę Ŗå¼ä¼šē¤¾'),
(123087, 'https://ror.org/00gts4y85', 'no_lang_code', 1, 'https://ror.org/00gts4y85 Yamax Corp. Yamax Corp. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¤ćƒžćƒƒć‚Æć‚¹'),
(123088, 'https://ror.org/05frp6w34', 'no_lang_code', 1, 'https://ror.org/05frp6w34 Plagenom Co., Ltd. Plagenom Co., Ltd. (Japan) ćƒ—ćƒ©ć‚²ćƒŽćƒ ę Ŗå¼ä¼šē¤¾'),
(123089, 'https://ror.org/00qbpyp73', 'en', 1, 'https://ror.org/00qbpyp73 Fondation des Maladies du Cœur et de l''AVC Heart and Stroke Foundation'),
(123090, 'https://ror.org/001jyph43', 'no_lang_code', 1, 'https://ror.org/001jyph43 Nozawa Corporation Nozawa Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒŽć‚¶ćƒÆ'),
(123091, 'https://ror.org/01h376869', 'no_lang_code', 1, 'https://ror.org/01h376869 THF Co., Ltd. THF Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾THF'),
(123092, 'https://ror.org/0406gkd65', 'no_lang_code', 1, 'https://ror.org/0406gkd65 Creact Corporation Creact Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ć‚¢ć‚Æćƒˆ'),
(123093, 'https://ror.org/053v3sh50', 'en', 1, 'https://ror.org/053v3sh50 Jorhat Institute of Science and Technology ą¦Æą§‹ą§°ą¦¹ą¦¾ą¦Ÿ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø আৰু ą¦Ŗą§ą§°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ ą¦Ŗą§ą§°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø'),
(123094, 'https://ror.org/005dqxx30', 'no_lang_code', 1, 'https://ror.org/005dqxx30 Kokando Co., Ltd. Kokando Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å»£č²«å ‚'),
(123095, 'https://ror.org/02kph0n79', 'no_lang_code', 1, 'https://ror.org/02kph0n79 OPTO-Hightech Co., Ltd. OPTO-Hightech Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ—ćƒˆćƒć‚¤ćƒ†ćƒƒć‚Æ'),
(123096, 'https://ror.org/03ewtwj48', 'en', 1, 'https://ror.org/03ewtwj48 Manalapan High School'),
(123097, 'https://ror.org/032wz3x75', 'fr', 1, 'https://ror.org/032wz3x75 Institut de Chimie de Toulouse Institute of Chemistry, Toulouse'),
(123098, 'https://ror.org/02hbzmb19', 'fr', 1, 'https://ror.org/02hbzmb19 Centre d''Ɖtude et de Recherche Travail Organisation Pouvoir'),
(123099, 'https://ror.org/05rbhzz93', 'no_lang_code', 1, 'https://ror.org/05rbhzz93 Noveltech, Inc. Noveltech, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŽćƒ™ćƒ«ćƒ†ćƒƒć‚Æ'),
(123100, 'https://ror.org/01y7rpz57', 'no_lang_code', 1, 'https://ror.org/01y7rpz57 URYU Seisaku, Ltd. URYU Seisaku, Ltd. (Japan) ē“œē”Ÿč£½ä½œę Ŗå¼ä¼šē¤¾'),
(123101, 'https://ror.org/006w34k90', 'en', 1, 'https://ror.org/006w34k90 Howard Hughes Medical Institute Instituto MƩdico Howard Hughes'),
(123102, 'https://ror.org/03b7qnd44', 'no_lang_code', 1, 'https://ror.org/03b7qnd44 Bloodissue, Inc. Bloodissue, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ–ćƒ©ćƒ‡ć‚£ćƒƒć‚·ćƒ„'),
(123103, 'https://ror.org/05dbwv732', 'no_lang_code', 1, 'https://ror.org/05dbwv732 Haneron Corporation Ltd. Haneron Corporation Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒćƒ­ćƒ³'),
(123104, 'https://ror.org/04khk1822', 'no_lang_code', 1, 'https://ror.org/04khk1822 Mimasu Semiconductor Industry Co., Ltd. Mimasu Semiconductor Industry Co., Ltd. (Japan) äø‰ē›ŠåŠå°Žä½“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123105, 'https://ror.org/055ba8g39', 'no_lang_code', 1, 'https://ror.org/055ba8g39 Yamauchi Corporation Yamauchi Corporation (Japan) ćƒ¤ćƒžć‚¦ćƒę Ŗå¼ä¼šē¤¾'),
(123106, 'https://ror.org/03pefff53', 'no_lang_code', 1, 'https://ror.org/03pefff53 ATEX Co., Ltd. ATEX Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ†ćƒƒć‚Æć‚¹'),
(123107, 'https://ror.org/00h233h45', 'no_lang_code', 1, 'https://ror.org/00h233h45 Hirai Co., Ltd. Hirai Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ’ćƒ©ć‚¤'),
(123108, 'https://ror.org/05hzyqh03', 'no_lang_code', 1, 'https://ror.org/05hzyqh03 Chofu Seisakusho Co., Ltd. Chofu Seisakusho Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é•·åŗœč£½ä½œę‰€'),
(123109, 'https://ror.org/022exwf92', 'no_lang_code', 1, 'https://ror.org/022exwf92 Inazuma Inc. Inazuma Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒŠć‚ŗćƒž'),
(123110, 'https://ror.org/04b5qjv91', 'no_lang_code', 1, 'https://ror.org/04b5qjv91 BEENOS Inc. BEENOS Inc. (Japan) BEENOSę Ŗå¼ä¼šē¤¾'),
(123111, 'https://ror.org/02d0kdk52', 'no_lang_code', 1, 'https://ror.org/02d0kdk52 Rengo Co., Ltd. Rengo Co., Ltd. (Japan) ćƒ¬ćƒ³ć‚“ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123112, 'https://ror.org/055r8rd23', 'no_lang_code', 1, 'https://ror.org/055r8rd23 Daisen HAM Co., Ltd. Daisen HAM Co., Ltd. (Japan) å¤§å±±ćƒćƒ ę Ŗå¼ä¼šē¤¾'),
(123113, 'https://ror.org/038ac9v48', 'no_lang_code', 1, 'https://ror.org/038ac9v48 Agrex Inc. Agrex Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚°ćƒ¬ćƒƒć‚Æć‚¹'),
(123114, 'https://ror.org/01r75d805', 'no_lang_code', 1, 'https://ror.org/01r75d805 CO2 Techno Limited Company CO2 Techno Limited Company (Japan) ęœ‰é™ä¼šē¤¾ć‚·ćƒ¼ć‚Ŗćƒ¼ćƒ„ćƒ¼ćƒ†ć‚ÆćƒŽ'),
(123115, 'https://ror.org/05czx3e50', 'no_lang_code', 1, 'https://ror.org/05czx3e50 Sakai-Nagoya Co., Ltd. Sakai-Nagoya Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚µć‚«ć‚¤ćƒŠć‚“ćƒ¤'),
(123116, 'https://ror.org/03e692y97', 'no_lang_code', 1, 'https://ror.org/03e692y97 Ambic. Co., Ltd. Ambic. Co., Ltd. (Japan) ć‚¢ćƒ³ćƒ“ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(123117, 'https://ror.org/01qyr7048', 'no_lang_code', 1, 'https://ror.org/01qyr7048 Eight Consultants Co., Ltd. Eight Consultants Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ćƒˆć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆ'),
(123118, 'https://ror.org/014zrew76', 'fr', 1, 'https://ror.org/014zrew76 University of OrlƩans UniversitƩ d''OrlƩans'),
(123119, 'https://ror.org/02try3c22', 'no_lang_code', 1, 'https://ror.org/02try3c22 France BED Co., Ltd. France BED Co., Ltd. (Japan) ćƒ•ćƒ©ćƒ³ć‚¹ćƒ™ćƒƒćƒ‰ę Ŗå¼ä¼šē¤¾'),
(123120, 'https://ror.org/01p34ac69', 'fr', 1, 'https://ror.org/01p34ac69 Toulouse School of Economics Research'),
(123121, 'https://ror.org/01n4knz90', 'no_lang_code', 1, 'https://ror.org/01n4knz90 Crecon Medical Assessment Inc. Crecon Medical Assessment Inc. (Japan) ć‚Æćƒ¬ć‚³ćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚¢ć‚»ć‚¹ćƒ”ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(123122, 'https://ror.org/0265jex96', 'en', 1, 'https://ror.org/0265jex96 The Asia Pacific School of Business äŗšå¤Ŗå•†å­¦é™¢'),
(123123, 'https://ror.org/032phvk36', 'no_lang_code', 1, 'https://ror.org/032phvk36 Tilement Corporation Tilement Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚¤ćƒ«ćƒ”ćƒ³ćƒˆ'),
(123124, 'https://ror.org/05gwbwn20', 'en', 1, 'https://ror.org/05gwbwn20 The Kyoto University Museum The Kyoto University Museum, Kyoto University äŗ¬éƒ½å¤§å­¦ē·åˆåšē‰©é¤Ø'),
(123125, 'https://ror.org/03dnxy907', 'no_lang_code', 1, 'https://ror.org/03dnxy907 SAN-ESU Gypsum Co., Ltd. SAN-ESU Gypsum Co., Ltd. (Japan) ć‚µćƒ³ć‚Øć‚¹ēŸ³č†ę Ŗå¼ä¼šē¤¾'),
(123126, 'https://ror.org/01b973t56', 'no_lang_code', 1, 'https://ror.org/01b973t56 Tohpe Corporation Tohpe Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆć‚¦ćƒš'),
(123127, 'https://ror.org/02yabs584', 'no_lang_code', 1, 'https://ror.org/02yabs584 NF Corporation NF Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚ØćƒŒć‚Øćƒ•å›žč·ÆčØ­čØˆćƒ–ćƒ­ćƒƒć‚Æ'),
(123128, 'https://ror.org/00406yh03', 'no_lang_code', 1, 'https://ror.org/00406yh03 Genesia Corporation Genesia Corporation (Japan) ę Ŗå¼ä¼šē¤¾ ć‚øć‚§ćƒć‚·ć‚¢'),
(123129, 'https://ror.org/04hwd3m38', 'no_lang_code', 1, 'https://ror.org/04hwd3m38 Katsuragawa Electric Co., Ltd. Katsuragawa Electric Co., Ltd. (Japan) ę”‚å·é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123130, 'https://ror.org/03jby7286', 'no_lang_code', 1, 'https://ror.org/03jby7286 Raytech Corporation Raytech Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¬ć‚¤ćƒ†ćƒƒć‚Æ'),
(123131, 'https://ror.org/02976wa31', 'no_lang_code', 1, 'https://ror.org/02976wa31 Sankosha Corporation Sankosha Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ć‚³ćƒ¼ć‚·ćƒ¤'),
(123132, 'https://ror.org/03zttf063', 'en', 1, 'https://ror.org/03zttf063 Swedish Research Council'),
(123133, 'https://ror.org/0353fsq42', 'en', 1, 'https://ror.org/0353fsq42 Purbanchal University ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤žą„ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(123134, 'https://ror.org/007zwp430', 'no_lang_code', 1, 'https://ror.org/007zwp430 Tendo Co., Ltd. Tendo Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å¤©ē«„ęœØå·„'),
(123135, 'https://ror.org/05qgza222', 'no_lang_code', 1, 'https://ror.org/05qgza222 Nakakita Seisakusho Co., Ltd. Nakakita Seisakusho Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾äø­åŒ—č£½ä½œę‰€'),
(123136, 'https://ror.org/0228sr651', 'no', 0, 'https://ror.org/0228sr651 HĆøgskolen Stord/Haugesund Stord/Haugesund University College'),
(123137, 'https://ror.org/00a5xws02', 'no_lang_code', 1, 'https://ror.org/00a5xws02 Deodor Japan Co., Ltd. Deodor Japan Co., Ltd. (Japan) ę—„ęœ¬ćƒ‡ć‚Ŗćƒ‰ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(123138, 'https://ror.org/050zvsm12', 'no_lang_code', 1, 'https://ror.org/050zvsm12 DDK Ltd. DDK Ltd. (Japan) ē¬¬äø€é›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123139, 'https://ror.org/05wdah275', 'no_lang_code', 1, 'https://ror.org/05wdah275 Imasen Electric Industrial Co., Ltd. Imasen Electric Industrial Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ä»Šä»™é›»ę©Ÿč£½ä½œę‰€'),
(123140, 'https://ror.org/00qz80b29', 'no_lang_code', 1, 'https://ror.org/00qz80b29 Beyondlsi, Inc. Beyondlsi, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ“ćƒØćƒ³ćƒ‰ćƒ»ć‚Øćƒ«ć‚Øć‚¹ć‚¢ć‚¤'),
(123141, 'https://ror.org/019sv9n65', 'no_lang_code', 1, 'https://ror.org/019sv9n65 Kurimoto Construction Industry Co., Ltd. Kurimoto Construction Industry Co., Ltd. (Japan) ę —ęœ¬å»ŗčØ­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123142, 'https://ror.org/01ah4yq58', 'no_lang_code', 1, 'https://ror.org/01ah4yq58 Harima Chemicals, Inc. Harima Chemicals, Inc. (Japan) ćƒćƒŖćƒžåŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(123143, 'https://ror.org/05rek7p31', 'no_lang_code', 1, 'https://ror.org/05rek7p31 NTP Inc. NTP Inc. (Japan) ę Ŗå¼ä¼šē¤¾NTP'),
(123144, 'https://ror.org/05dvzp814', 'en', 1, 'https://ror.org/05dvzp814 Islamic Azad University Harand branch ŁƒŁ„ŁŠŲ© Ų§Ł„Ų®ŁˆŲ§Ų±Ų²Ł…ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(123145, 'https://ror.org/04jb79237', 'no_lang_code', 1, 'https://ror.org/04jb79237 Sunallomer Ltd. Sunallomer Ltd. (Japan) ć‚µćƒ³ć‚¢ćƒ­ćƒžćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123146, 'https://ror.org/03zsp6357', 'no_lang_code', 1, 'https://ror.org/03zsp6357 Kyusyu Nyugyo Co., Ltd. Kyusyu Nyugyo Co., Ltd. (Japan) ä¹å·žä¹³ę„­ę Ŗå¼ä¼šē¤¾'),
(123147, 'https://ror.org/01zstab56', 'no_lang_code', 1, 'https://ror.org/01zstab56 Queen Light Electronic Industries Ltd. Queen Light Electronic Industries Ltd. (Japan) ć‚Æć‚¤ćƒ³ćƒ©ć‚¤ćƒˆé›»å­ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(123148, 'https://ror.org/00v36h177', 'no_lang_code', 1, 'https://ror.org/00v36h177 Milbon Co., Ltd. Milbon Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŸćƒ«ćƒœćƒ³'),
(123149, 'https://ror.org/04pm66810', 'no_lang_code', 1, 'https://ror.org/04pm66810 Mirise Technologies Corporation Mirise Technologies Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒŸćƒ©ć‚¤ć‚ŗćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(123150, 'https://ror.org/05hrgj969', 'no_lang_code', 1, 'https://ror.org/05hrgj969 Saiden Chemical Industry Co., Ltd. Saiden Chemical Industry Co., Ltd. (Japan) ć‚µć‚¤ćƒ‡ćƒ³åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(123151, 'https://ror.org/000bwv063', 'en', 1, 'https://ror.org/000bwv063 Siam Technology University สยาดเทค'),
(123152, 'https://ror.org/04a4sww29', 'en', 1, 'https://ror.org/04a4sww29 National University of Civil Protection of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń†ŠøŠ²Ń–Š»ŃŒŠ½Š¾Š³Š¾ Š·Š°Ń…ŠøŃŃ‚Ńƒ України'),
(123153, 'https://ror.org/030pz7q03', 'no_lang_code', 1, 'https://ror.org/030pz7q03 Kaneko Seeds Co., Ltd. Kaneko Seeds Co., Ltd. (Japan) ć‚«ćƒć‚³ēØ®č‹—ę Ŗå¼ä¼šē¤¾'),
(123154, 'https://ror.org/03qhf0712', 'no_lang_code', 1, 'https://ror.org/03qhf0712 Evolving Nano-Process Infrastructure Development Center Evolving Nano-Process Infrastructure Development Center (Japan) ę Ŗå¼ä¼šē¤¾å…ˆē«ÆćƒŠćƒŽćƒ—ćƒ­ć‚»ć‚¹åŸŗē›¤é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(123155, 'https://ror.org/02md1t413', 'no_lang_code', 1, 'https://ror.org/02md1t413 Gigaflops Japan Inc. Gigaflops Japan Inc. (Japan) ć‚®ć‚¬ćƒ•ćƒ­ćƒƒćƒ—ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123156, 'https://ror.org/00cae6b67', 'no_lang_code', 1, 'https://ror.org/00cae6b67 MTC Co., Ltd. MTC Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ ćƒ»ćƒ†ć‚£ćƒ»ć‚·ćƒ¼'),
(123157, 'https://ror.org/02ec8dv15', 'en', 1, 'https://ror.org/02ec8dv15 Vanadzor State University ÕŽÕ”Õ¶Õ”Õ±ÕøÖ€Õ« Õ€ÕøÕ¾Õ°Õ”Õ¶Õ¶Õ„Õ½ Ō¹ÕøÖ‚Õ“Õ”Õ¶ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ՊՄտՔկՔն Õ€Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(123158, 'https://ror.org/04ezk3x31', 'fr', 1, 'https://ror.org/04ezk3x31 Université Toulouse - Jean Jaurès'),
(123159, 'https://ror.org/045brcn82', 'no_lang_code', 1, 'https://ror.org/045brcn82 Alinco Incorporated Alinco Incorporated (Japan) ć‚¢ćƒ«ć‚¤ćƒ³ć‚³ę Ŗå¼ä¼šē¤¾'),
(123160, 'https://ror.org/01skjm209', 'no_lang_code', 1, 'https://ror.org/01skjm209 Takatori Corporation Takatori Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚«ćƒˆćƒŖ'),
(123161, 'https://ror.org/04gvvkd02', 'no_lang_code', 1, 'https://ror.org/04gvvkd02 FACT. Inc. FACT. Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚”ć‚Æćƒˆ'),
(123162, 'https://ror.org/03d0mqv76', 'no_lang_code', 1, 'https://ror.org/03d0mqv76 Tamron Co., Ltd. Tamron Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚æćƒ ćƒ­ćƒ³'),
(123163, 'https://ror.org/026t3tx83', 'no_lang_code', 1, 'https://ror.org/026t3tx83 Total Information Development Co., Ltd. Total Information Development Co., Ltd. (Japan) ē·åˆęƒ…å ±é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(123164, 'https://ror.org/01a08w596', 'no_lang_code', 1, 'https://ror.org/01a08w596 JDC Corporation JDC Corporation (Japan) ę—„ęœ¬å›½åœŸé–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(123165, 'https://ror.org/00rbzpz17', 'fr', 1, 'https://ror.org/00rbzpz17 Agence Nationale de la Recherche National Agency for Research'),
(123166, 'https://ror.org/007jr7p04', 'no_lang_code', 1, 'https://ror.org/007jr7p04 LEAD Co., Inc. LEAD Co., Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŖćƒ¼ćƒ‰'),
(123167, 'https://ror.org/00w5jka41', 'no_lang_code', 1, 'https://ror.org/00w5jka41 Canopus Co., Ltd. Canopus Co., Ltd. (Japan) ć‚«ćƒŽćƒ¼ćƒ—ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123168, 'https://ror.org/005wrqb47', 'no_lang_code', 1, 'https://ror.org/005wrqb47 Ichinen Chemicals Co., Ltd. Ichinen Chemicals Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒćƒćƒ³ć‚±ćƒŸć‚«ćƒ«ć‚ŗ'),
(123169, 'https://ror.org/03mrp7211', 'no_lang_code', 1, 'https://ror.org/03mrp7211 Mizusawa Industrial Chemicals, Ltd. Mizusawa Industrial Chemicals, Ltd. (Japan) ę°“ę¾¤åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123170, 'https://ror.org/05we2cz72', 'no_lang_code', 1, 'https://ror.org/05we2cz72 Kosaka Laboratory Ltd. Kosaka Laboratory Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å°å‚ē ”ē©¶ę‰€'),
(123171, 'https://ror.org/05s616428', 'no_lang_code', 1, 'https://ror.org/05s616428 IJTT Co., Ltd. IJTT Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾IJTT'),
(123172, 'https://ror.org/03qjdnr69', 'no_lang_code', 1, 'https://ror.org/03qjdnr69 NASU Denki-Tekko Co., Ltd. NASU Denki-Tekko Co., Ltd. (Japan) é‚£é ˆé›»ę©Ÿé‰„å·„ę Ŗå¼ä¼šē¤¾'),
(123173, 'https://ror.org/05f4qya34', 'no_lang_code', 1, 'https://ror.org/05f4qya34 Dwango Co., Ltd. Dwango Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‰ćƒÆćƒ³ć‚“'),
(123174, 'https://ror.org/02wx41040', 'fr', 0, 'https://ror.org/02wx41040 Ɖcole supĆ©rieure d’ingĆ©nieurs et de techniciens pour l’agriculture'),
(123175, 'https://ror.org/05367c343', 'en', 1, 'https://ror.org/05367c343 Azerbaijan Sports Academy Azərbaycan İdman Akademiyası ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ спорта АзербайГжана'),
(123176, 'https://ror.org/02qeng655', 'no_lang_code', 1, 'https://ror.org/02qeng655 Nikkato Corporation Nikkato Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒƒć‚«ćƒˆćƒ¼'),
(123177, 'https://ror.org/050py5h96', 'no_lang_code', 1, 'https://ror.org/050py5h96 Sonic Fellow Co., Ltd. Sonic Fellow Co., Ltd. (Japan) ć‚½ćƒ‹ćƒƒć‚Æćƒ»ćƒ•ć‚§ćƒ­ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123178, 'https://ror.org/05nb85q51', 'no_lang_code', 1, 'https://ror.org/05nb85q51 Inter Action Corporation Inter Action Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ć‚æćƒ¼ć‚¢ć‚Æć‚·ćƒ§ćƒ³'),
(123179, 'https://ror.org/043n53y14', 'es', 1, 'https://ror.org/043n53y14 Hospital Universitario General de Villalba'),
(123180, 'https://ror.org/054tdt156', 'no_lang_code', 1, 'https://ror.org/054tdt156 Kyudenko Corporation Kyudenko Corporation (Japan) ę Ŗå¼ä¼šē¤¾ä¹é›»å·„'),
(123181, 'https://ror.org/04vk8a637', 'no_lang_code', 1, 'https://ror.org/04vk8a637 Glyence Co., Ltd. Glyence Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚°ćƒ©ć‚¤ć‚Øćƒ³ć‚¹'),
(123182, 'https://ror.org/0499tpa09', 'en', 1, 'https://ror.org/0499tpa09 Saiva Bhanu Kshatriya College சைவ பானு ą®šą®¤ąÆą®°ą®æą®Æ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(123183, 'https://ror.org/04m9afb65', 'en', 1, 'https://ror.org/04m9afb65 MEASI Institute of Management மியாசி ą®‡ą®©ąÆą®øąÆą®Ÿą®æą®Ÿą®æą®ÆąÆ‚ą®ŸąÆ ą®†ą®ŖąÆ ą®®ąÆ‡ą®©ąÆ‡ą®œąÆą®®ąÆ†ą®©ąÆą®ŸąÆ'),
(123184, 'https://ror.org/02d2g0205', 'en', 1, 'https://ror.org/02d2g0205 NIHR Cambridge Dementia Biomedical Research Unit'),
(123185, 'https://ror.org/02kzsfv42', 'en', 1, 'https://ror.org/02kzsfv42 Canada Council for the Arts Conseil des Arts du Canada'),
(123186, 'https://ror.org/03stxzb56', 'es', 1, 'https://ror.org/03stxzb56 Agencia I+D+i Agencia Nacional de Promoción de la Investigación, el Desarrollo Tecnológico y la Innovación'),
(123187, 'https://ror.org/02ya8kf49', 'en', 1, 'https://ror.org/02ya8kf49 Shyampur Siddheswari Mahavidyalaya'),
(123188, 'https://ror.org/0569j9897', 'no_lang_code', 1, 'https://ror.org/0569j9897 SAXA, Inc. SAXA, Inc. (Japan) ć‚µć‚Æć‚µę Ŗå¼ä¼šē¤¾'),
(123189, 'https://ror.org/03swmb762', 'no_lang_code', 1, 'https://ror.org/03swmb762 Shikibo, Ltd. Shikibo, Ltd. (Japan) ć‚·ć‚­ćƒœć‚¦ę Ŗå¼ä¼šē¤¾');
INSERT INTO `rors` VALUES
(123190, 'https://ror.org/03x7p8r30', 'no_lang_code', 1, 'https://ror.org/03x7p8r30 Sumtec, Inc. Sumtec, Inc. (Japan) ęœ‰é™ä¼šē¤¾ć‚µćƒ ćƒ†ćƒƒć‚Æ'),
(123191, 'https://ror.org/058685763', 'no_lang_code', 1, 'https://ror.org/058685763 ETO Manufacturing Co., Ltd. ETO Manufacturing Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę±Ÿč—¤č£½ä½œę‰€'),
(123192, 'https://ror.org/00e8fks23', 'no_lang_code', 1, 'https://ror.org/00e8fks23 Kanbo PRAS Corporation Kanbo PRAS Corporation (Japan) ć‚«ćƒ³ćƒœć‚¦ćƒ—ćƒ©ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123193, 'https://ror.org/00kybxq39', 'fr', 1, 'https://ror.org/00kybxq39 UniversitƩ de Sherbrooke'),
(123194, 'https://ror.org/02ta0at17', 'no_lang_code', 1, 'https://ror.org/02ta0at17 Ecodevice Corporation Ecodevice Corporation (Japan) ć‚Øć‚³ćƒ‡ćƒć‚¤ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123195, 'https://ror.org/04zjebc86', 'en', 1, 'https://ror.org/04zjebc86 Bangabasi Morning College'),
(123196, 'https://ror.org/032rem971', 'en', 0, 'https://ror.org/032rem971 Metropolitan University College'),
(123197, 'https://ror.org/00jdrs881', 'no_lang_code', 1, 'https://ror.org/00jdrs881 Nissen Chemitec Corporation Nissen Chemitec Corporation (Japan) ę—„ę³‰åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(123198, 'https://ror.org/018w2fy06', 'en', 1, 'https://ror.org/018w2fy06 Saint Claret College, Ziro'),
(123199, 'https://ror.org/05ryt6796', 'no_lang_code', 1, 'https://ror.org/05ryt6796 Tayca Corporation Tayca Corporation (Japan) ćƒ†ć‚¤ć‚«ę Ŗå¼ä¼šē¤¾'),
(123200, 'https://ror.org/03jw8f702', 'no_lang_code', 1, 'https://ror.org/03jw8f702 Yoshino Gypsum Co., Ltd. Yoshino Gypsum Co., Ltd. (Japan) å‰é‡ŽēŸ³č†ę Ŗå¼ä¼šē¤¾'),
(123201, 'https://ror.org/01h9qqp07', 'no', 0, 'https://ror.org/01h9qqp07 Diakonova University College HĆøyskolen Diakonova'),
(123202, 'https://ror.org/00p6b1k31', 'en', 1, 'https://ror.org/00p6b1k31 Canadian Spine Society'),
(123203, 'https://ror.org/01bsn4x02', 'en', 1, 'https://ror.org/01bsn4x02 Shivaji University சிவாஜி ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(123204, 'https://ror.org/0442m3025', 'no_lang_code', 1, 'https://ror.org/0442m3025 Komyo Rikagaku Kogyo K.K. Komyo Rikagaku Kogyo K.K. (Japan) å…‰ę˜Žē†åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123205, 'https://ror.org/03wa31d16', 'no_lang_code', 1, 'https://ror.org/03wa31d16 Nishibe Keiki MFG. Co., Ltd. Nishibe Keiki MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ć‚·ćƒ™čØˆå™Øč£½é€ ę‰€'),
(123206, 'https://ror.org/04vf9fz74', 'no_lang_code', 1, 'https://ror.org/04vf9fz74 Tekken Corporation Tekken Corporation (Japan) é‰„å»ŗå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(123207, 'https://ror.org/04mq8ne75', 'no_lang_code', 1, 'https://ror.org/04mq8ne75 J-Witex Corporation J-Witex Corporation (Japan) ジェイ-ćƒÆć‚¤ćƒ†ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(123208, 'https://ror.org/04emyqb57', 'no_lang_code', 1, 'https://ror.org/04emyqb57 K and W Co., Ltd. K and W Co., Ltd. (Japan) ęœ‰é™ä¼šē¤¾ć‚±ćƒ¼ćƒ»ć‚¢ćƒ³ćƒ‰ćƒ»ćƒ€ćƒ–ćƒ«'),
(123209, 'https://ror.org/02c98qp11', 'no_lang_code', 1, 'https://ror.org/02c98qp11 OHJI Rubber & Chemicals Co., Ltd. OHJI Rubber & Chemicals Co., Ltd. (Japan) ēŽ‹å­ć‚“ćƒ åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(123210, 'https://ror.org/01xxfcx98', 'no_lang_code', 1, 'https://ror.org/01xxfcx98 Yokoi Vinegar Co. Ltd. Yokoi Vinegar Co. Ltd. (Japan) ęØŖäŗ•é†øé€ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123211, 'https://ror.org/03bw6s095', 'en', 1, 'https://ror.org/03bw6s095 SSRS Institute Indonesia'),
(123212, 'https://ror.org/045dgg680', 'no_lang_code', 1, 'https://ror.org/045dgg680 AZE, Ltd. AZE, Ltd. (Japan) ę Ŗå¼ä¼šē¤¾AZE'),
(123213, 'https://ror.org/031e2yk18', 'no_lang_code', 1, 'https://ror.org/031e2yk18 Co-OP Chemical Co., Ltd. Co-OP Chemical Co., Ltd. (Japan) ć‚³ćƒ¼ćƒ—ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(123214, 'https://ror.org/03ye60j82', 'no_lang_code', 1, 'https://ror.org/03ye60j82 Kawata MFG. Co., Ltd. Kawata MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ćƒÆć‚æ'),
(123215, 'https://ror.org/03vs4m934', 'no_lang_code', 1, 'https://ror.org/03vs4m934 Organo Corporation Organo Corporation (Japan) ć‚Ŗćƒ«ć‚¬ćƒŽę Ŗå¼ä¼šē¤¾'),
(123216, 'https://ror.org/02ggn2487', 'no_lang_code', 1, 'https://ror.org/02ggn2487 Miyata Industry Co., Ltd. Miyata Industry Co., Ltd. (Japan) å®®ē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123217, 'https://ror.org/00dmfq477', 'en', 1, 'https://ror.org/00dmfq477 University of California Office of the President'),
(123218, 'https://ror.org/00n4ff431', 'no_lang_code', 1, 'https://ror.org/00n4ff431 Yoshizawa LIME Industry Co., Ltd. Yoshizawa LIME Industry Co., Ltd. (Japan) å‰ę¾¤ēŸ³ē°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123219, 'https://ror.org/005pdtr14', 'en', 1, 'https://ror.org/005pdtr14 Japan International Research Center for Agricultural Sciences å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½éš›č¾²ęž—ę°“ē”£ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(123220, 'https://ror.org/01zxtjz26', 'en', 1, 'https://ror.org/01zxtjz26 Lagos State Government'),
(123221, 'https://ror.org/02j6hy684', 'no_lang_code', 1, 'https://ror.org/02j6hy684 OSCILLATED RECALL TECHNOLOGY Inc. OSCILLATED RECALL TECHNOLOGY Inc. (Japan) ę Ŗå¼ä¼šē¤¾OSCILLATED RECALL TECHNOLOGY'),
(123222, 'https://ror.org/00sywd431', 'no_lang_code', 1, 'https://ror.org/00sywd431 Harmonic Drive SYSTEMS Inc. Harmonic Drive SYSTEMS Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒ¼ćƒ¢ćƒ‹ćƒƒć‚Æćƒ»ćƒ‰ćƒ©ć‚¤ćƒ–ćƒ»ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(123223, 'https://ror.org/05qb55z89', 'no_lang_code', 1, 'https://ror.org/05qb55z89 Infogenes Co., Ltd. Infogenes Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ćƒ•ć‚©ć‚øćƒ¼ćƒ³ć‚ŗ'),
(123224, 'https://ror.org/051gtyj36', 'no_lang_code', 1, 'https://ror.org/051gtyj36 Create Medic Co., Ltd. Create Medic Co., Ltd. (Japan) ć‚ÆćƒŖć‚Øćƒ¼ćƒˆćƒ”ćƒ‡ć‚£ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(123225, 'https://ror.org/046vb6d45', 'no_lang_code', 1, 'https://ror.org/046vb6d45 Takano Co., Ltd. Takano Co., Ltd. (Japan) ć‚æć‚«ćƒŽę Ŗå¼ä¼šē¤¾'),
(123226, 'https://ror.org/059hmpb58', 'no_lang_code', 1, 'https://ror.org/059hmpb58 YMC Co., Ltd. YMC Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒÆć‚¤ć‚Øćƒ ć‚·ć‚£'),
(123227, 'https://ror.org/05sjgam45', 'no_lang_code', 1, 'https://ror.org/05sjgam45 Teika Pharmaceutical Co., Ltd. Teika Pharmaceutical Co., Ltd. (Japan) ćƒ†ć‚¤ć‚«č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(123228, 'https://ror.org/055scj626', 'no_lang_code', 1, 'https://ror.org/055scj626 Kuroda Precision Industries, Ltd. Kuroda Precision Industries, Ltd. (Japan) é»’ē”°ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(123229, 'https://ror.org/03e1fps54', 'no_lang_code', 1, 'https://ror.org/03e1fps54 Fujiya Co., Ltd. Fujiya Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾äøäŗŒå®¶'),
(123230, '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'),
(123231, 'https://ror.org/005v7q937', 'no_lang_code', 1, 'https://ror.org/005v7q937 HARU And Partners Inc. HARU And Partners Inc. (Japan) ćƒćƒ«ć‚¢ćƒ³ćƒ‰ćƒ‘ćƒ¼ćƒˆćƒŠćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(123232, 'https://ror.org/01xf75524', 'en', 1, 'https://ror.org/01xf75524 Moffitt Cancer Center'),
(123233, 'https://ror.org/03m51nf34', 'en', 1, 'https://ror.org/03m51nf34 NIHR Barts Cardiovascular Biomedical Research Unit'),
(123234, 'https://ror.org/04sbqt640', 'no_lang_code', 1, 'https://ror.org/04sbqt640 Kawakami Paint Mfg.Co., Ltd. Kawakami Paint Mfg.Co., Ltd. (Japan) å·äøŠå”—ę–™ę Ŗå¼ä¼šē¤¾'),
(123235, 'https://ror.org/04vddxs29', 'no_lang_code', 1, 'https://ror.org/04vddxs29 Raito Kogyo Co., Ltd. Raito Kogyo Co., Ltd. (Japan) ćƒ©ć‚¤ćƒˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123236, 'https://ror.org/02t274463', 'en', 1, 'https://ror.org/02t274463 Universidad de California en Santa BƔrbara University of California, Santa Barbara UniversitƩ de Californie Ơ Santa Barbara'),
(123237, 'https://ror.org/00aps1a34', 'en', 1, 'https://ror.org/00aps1a34 NIHR Oxford Musculoskeletal Biomedical Research Centre'),
(123238, 'https://ror.org/052gg0110', 'en', 1, 'https://ror.org/052gg0110 Prifysgol Rhydychen University of Oxford'),
(123239, 'https://ror.org/02b0xqa57', 'no_lang_code', 1, 'https://ror.org/02b0xqa57 Kajiwara Inc. Kajiwara Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ć‚øćƒÆćƒ©'),
(123240, 'https://ror.org/01vcmpe13', 'no_lang_code', 1, 'https://ror.org/01vcmpe13 Kleentek Corporation Kleentek Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚ÆćƒŖćƒ¼ćƒ³ćƒ†ćƒƒć‚Æ'),
(123241, 'https://ror.org/039sc4w56', 'no_lang_code', 1, 'https://ror.org/039sc4w56 Ingredion Japan Ingredion Japan (Japan) ć‚¤ćƒ³ć‚°ćƒ¬ćƒ‡ć‚£ć‚Ŗćƒ³ćƒ»ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123242, 'https://ror.org/00hzwap75', 'no_lang_code', 1, 'https://ror.org/00hzwap75 Tacmina Corporation Tacmina Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚ÆćƒŸćƒŠ'),
(123243, 'https://ror.org/02wq2ma29', 'no_lang_code', 1, 'https://ror.org/02wq2ma29 Ohara Inc. Ohara Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒćƒ©'),
(123244, 'https://ror.org/002nesw33', 'no_lang_code', 1, 'https://ror.org/002nesw33 Technol Eight Co., Ltd. Technol Eight Co., Ltd. (Japan) ćƒ†ć‚ÆćƒŽć‚Øć‚¤ćƒˆę Ŗå¼ä¼šē¤¾'),
(123245, 'https://ror.org/046e8s081', 'no_lang_code', 1, 'https://ror.org/046e8s081 ARAI Seisakusho Co., Ltd. ARAI Seisakusho Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾č’äŗ•č£½ä½œę‰€'),
(123246, 'https://ror.org/00be8mn93', 'en', 1, 'https://ror.org/00be8mn93 Children’s Health Queensland Hospital and Health Service'),
(123247, 'https://ror.org/0191rzs41', 'en', 1, 'https://ror.org/0191rzs41 Namangan State Institute of Foreign Languages Namangan davlat chet tillari instituti'),
(123248, 'https://ror.org/01vg5m371', 'id', 1, 'https://ror.org/01vg5m371 STAI At-Tahdzib Rejoagung Ngoro Jombang'),
(123249, 'https://ror.org/002qgvh46', 'en', 1, 'https://ror.org/002qgvh46 Islamic Institute of DDI Sidnreng Rappang'),
(123250, 'https://ror.org/01q1nds63', 'fr', 0, 'https://ror.org/01q1nds63 UniversitƩ de la MƩditerranƩe Aix-Marseille II'),
(123251, 'https://ror.org/057dcfp67', 'no_lang_code', 1, 'https://ror.org/057dcfp67 Taiken Co., Ltd. Taiken Co., Ltd. (Japan) å¤Ŗå¹³ę“‹å»ŗčØ­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123252, 'https://ror.org/00c1s7v80', 'no_lang_code', 1, 'https://ror.org/00c1s7v80 Hakubaku Co., Ltd. Hakubaku Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćÆćć°ć'),
(123253, 'https://ror.org/00cp1sj06', 'no_lang_code', 1, 'https://ror.org/00cp1sj06 Comany Inc. Comany Inc. (Japan) ć‚³ćƒžćƒ‹ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123254, 'https://ror.org/025pkh378', 'en', 1, 'https://ror.org/025pkh378 Dr. Momtaz Begum University of Science and Technology'),
(123255, 'https://ror.org/03gc0yr46', 'no_lang_code', 1, 'https://ror.org/03gc0yr46 Polyplastics Co., Ltd. Polyplastics Co., Ltd. (Japan) ćƒćƒŖćƒ—ćƒ©ć‚¹ćƒćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(123256, 'https://ror.org/03t1apr69', 'no_lang_code', 1, 'https://ror.org/03t1apr69 Claro, Inc. Claro, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒ©ćƒ¼ćƒ­'),
(123257, 'https://ror.org/02kpeqv85', 'en', 1, 'https://ror.org/02kpeqv85 Kyoto University 京都大学'),
(123258, 'https://ror.org/04vjy4117', 'no_lang_code', 1, 'https://ror.org/04vjy4117 NET ONE SYSTEMS Co., Ltd. NET ONE SYSTEMS Co., Ltd. (Japan) ćƒćƒƒćƒˆćƒÆćƒ³ć‚·ć‚¹ćƒ†ćƒ ć‚ŗę Ŗå¼ä¼šē¤¾'),
(123259, 'https://ror.org/00s0dye52', 'no_lang_code', 1, 'https://ror.org/00s0dye52 B.E.MARUBISHI Co., Ltd. B.E.MARUBISHI Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾äøøč±ćƒć‚¤ć‚Ŗć‚Øćƒ³ć‚ø'),
(123260, 'https://ror.org/05w4a8m11', 'no_lang_code', 1, 'https://ror.org/05w4a8m11 Bodysonic Co., Ltd. Bodysonic Co., Ltd. (Japan) ć‚Ŗćƒ”ć‚¬ćƒ»ćƒ—ćƒ­ć‚øć‚§ć‚Æćƒˆę Ŗå¼ä¼šē¤¾'),
(123261, 'https://ror.org/03fxhzm84', 'no_lang_code', 1, 'https://ror.org/03fxhzm84 Thermo Co., Ltd. Thermo Co., Ltd. (Japan) ć‚µćƒ¼ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(123262, 'https://ror.org/011kx6106', 'en', 1, 'https://ror.org/011kx6106 SIVIO Institute'),
(123263, 'https://ror.org/056zpx390', 'no_lang_code', 1, 'https://ror.org/056zpx390 AQUA Science Corporation AQUA Science Corporation (Japan) ć‚¢ć‚Æć‚¢ć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123264, 'https://ror.org/00e348047', 'no_lang_code', 1, 'https://ror.org/00e348047 ID Pharma Co., Ltd. ID Pharma Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾IDćƒ•ć‚”ćƒ¼ćƒž'),
(123265, 'https://ror.org/0270r4v93', 'no_lang_code', 1, 'https://ror.org/0270r4v93 Parker Netsushori Kogyo K. K. Parker Netsushori Kogyo K. K. (Japan) ćƒ‘ćƒ¼ć‚«ćƒ¼ē†±å‡¦ē†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123266, 'https://ror.org/05mthvt16', 'no_lang_code', 1, 'https://ror.org/05mthvt16 MA-MA-Macaroni Co., Ltd. MA-MA-Macaroni Co., Ltd. (Japan) ćƒžćƒ»ćƒžćƒ¼ćƒžć‚«ćƒ­ćƒ‹ę Ŗå¼ä¼šē¤¾'),
(123267, 'https://ror.org/043ynyt81', 'en', 1, 'https://ror.org/043ynyt81 Calaveras County'),
(123268, 'https://ror.org/02pabx538', 'no_lang_code', 1, 'https://ror.org/02pabx538 C.UYEMURA Co., Ltd. C.UYEMURA Co., Ltd. (Japan) äøŠę‘å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123269, 'https://ror.org/03e3n8706', 'en', 1, 'https://ror.org/03e3n8706 Clinical Hospital "D-r Trifun Panovski"'),
(123270, 'https://ror.org/03h3way12', 'no_lang_code', 1, 'https://ror.org/03h3way12 Sawafuji Electric Co., Ltd. Sawafuji Electric Co., Ltd. (Japan) ę¾¤č—¤é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123271, 'https://ror.org/02np93c11', 'no_lang_code', 1, 'https://ror.org/02np93c11 SCSK Corporation SCSK Corporation (Japan) SCSKę Ŗå¼ä¼šē¤¾'),
(123272, 'https://ror.org/03x858g49', 'no_lang_code', 1, 'https://ror.org/03x858g49 Hokushin Co., Ltd. Hokushin Co., Ltd. (Japan) ćƒ›ć‚Æć‚·ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123273, 'https://ror.org/03j1bmt43', 'no_lang_code', 1, 'https://ror.org/03j1bmt43 Neochemir Inc. Neochemir Inc. (Japan) ćƒć‚Ŗć‚±ćƒŸć‚¢ę Ŗå¼ä¼šē¤¾'),
(123274, 'https://ror.org/00k994631', 'no_lang_code', 1, 'https://ror.org/00k994631 Tsubaki Nakashima Co., Ltd. Tsubaki Nakashima Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ„ćƒć‚­ćƒ»ćƒŠć‚«ć‚·ćƒž'),
(123275, 'https://ror.org/00emjhm04', 'fr', 1, 'https://ror.org/00emjhm04 Centre d''Etudes IbƩriques et IbƩro-AmƩricaines'),
(123276, 'https://ror.org/056pezv54', 'no_lang_code', 1, 'https://ror.org/056pezv54 Eidia Co., Ltd. Eidia Co., Ltd. (Japan) ć‚Øćƒ¼ćƒ‡ć‚£ć‚¢ę Ŗå¼ä¼šē¤¾'),
(123277, 'https://ror.org/02vwf9g25', 'no_lang_code', 1, 'https://ror.org/02vwf9g25 Initium, Inc. Initium, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ‹ć‚·ć‚¢ćƒ '),
(123278, 'https://ror.org/02tk4qc07', 'no_lang_code', 1, 'https://ror.org/02tk4qc07 Enshu Ltd. Enshu Ltd. (Japan) ć‚Øćƒ³ć‚·ćƒ„ć‚¦ę Ŗå¼ä¼šē¤¾'),
(123279, 'https://ror.org/02j988f06', 'no_lang_code', 1, 'https://ror.org/02j988f06 Metalart Corporation Metalart Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ”ć‚æćƒ«ć‚¢ćƒ¼ćƒˆ'),
(123280, 'https://ror.org/03vkzdt31', 'fr', 1, 'https://ror.org/03vkzdt31 Institut interdisciplinaire d''innovation technologique'),
(123281, 'https://ror.org/02afjs274', 'no_lang_code', 1, 'https://ror.org/02afjs274 Trafficsim Co., Ltd. Trafficsim Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ©ćƒ•ć‚£ćƒƒć‚Æćƒ»ć‚·ćƒ '),
(123282, 'https://ror.org/024j7m381', 'no_lang_code', 1, 'https://ror.org/024j7m381 Generis, Inc. Generis, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒŠćƒŖć‚¹'),
(123283, 'https://ror.org/01vccm961', 'no_lang_code', 1, 'https://ror.org/01vccm961 Harada Manufacturing Co., Ltd. Harada Manufacturing Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾åŽŸē”°č£½ä½œę‰€'),
(123284, 'https://ror.org/01g0ane18', 'no_lang_code', 1, 'https://ror.org/01g0ane18 Sonocom Co., Ltd. Sonocom Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚½ćƒŽć‚³ćƒ '),
(123285, 'https://ror.org/02kkj4m53', 'no_lang_code', 1, 'https://ror.org/02kkj4m53 Inc Engineering Co., Ltd. Inc Engineering Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ»ć‚ØćƒŒćƒ»ć‚·ćƒ¼ćƒ»ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(123286, 'https://ror.org/03dd07y16', 'no_lang_code', 1, 'https://ror.org/03dd07y16 Pionics Co., Ltd. Pionics Co., Ltd. (Japan) ćƒ‘ć‚¤ć‚Ŗćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(123287, 'https://ror.org/02qtxtt36', 'no_lang_code', 1, 'https://ror.org/02qtxtt36 EMD Corporation EMD Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ćƒ»ć‚Øćƒ ćƒ»ćƒ‡ć‚£ćƒ¼'),
(123288, 'https://ror.org/0599kfg57', 'no_lang_code', 1, 'https://ror.org/0599kfg57 Narita International Airport Corporation Narita International Airport Corporation (Japan) ęˆē”°å›½éš›ē©ŗęøÆę Ŗå¼ä¼šē¤¾'),
(123289, 'https://ror.org/037mfwg75', 'en', 1, 'https://ror.org/037mfwg75 CSIR-Savanna Agricultural Research Institute'),
(123290, 'https://ror.org/044tf1965', 'no_lang_code', 1, 'https://ror.org/044tf1965 Ichihara Seito Co., Ltd. Ichihara Seito Co., Ltd. (Japan) åø‚åŽŸč£½é™¶ę Ŗå¼ä¼šē¤¾'),
(123291, 'https://ror.org/00sp8b424', 'no_lang_code', 1, 'https://ror.org/00sp8b424 Nichireki Co., Ltd. Nichireki Co., Ltd. (Japan) ćƒ‹ćƒćƒ¬ć‚­ę Ŗå¼ä¼šē¤¾'),
(123292, 'https://ror.org/02wdwpg14', 'en', 1, 'https://ror.org/02wdwpg14 Noorda College of Osteopathic Medicine'),
(123293, 'https://ror.org/052zhra73', 'no_lang_code', 1, 'https://ror.org/052zhra73 Dimagic Co., Ltd. Dimagic Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ćƒžć‚øćƒƒć‚Æ'),
(123294, 'https://ror.org/03qsrbh34', 'no_lang_code', 1, 'https://ror.org/03qsrbh34 Miyairi Valve MFG. Co., Ltd. Miyairi Valve MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å®®å…„ćƒćƒ«ćƒ–č£½ä½œę‰€'),
(123295, 'https://ror.org/04yd1mn79', 'no_lang_code', 1, 'https://ror.org/04yd1mn79 MAG X Co., Ltd. MAG X Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒžć‚°ć‚Øćƒƒć‚Æć‚¹'),
(123296, 'https://ror.org/00qhfeq57', 'no_lang_code', 1, 'https://ror.org/00qhfeq57 Light Metal Extrusion Development Co., Ltd. Light Metal Extrusion Development Co., Ltd. (Japan) č»½é‡‘å±žęŠ¼å‡ŗé–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(123297, 'https://ror.org/02aafe867', 'en', 1, 'https://ror.org/02aafe867 SJR College for Women ą²Žą²øą³ ą²œą³† ą²…ą²°ą³ ಮಹಿಳಾ ą²•ą²¾ą²²ą³‡ą²œą³'),
(123298, 'https://ror.org/02dngty03', 'no_lang_code', 1, 'https://ror.org/02dngty03 IWAO JIKI Kogyo Co., Ltd. IWAO JIKI Kogyo Co., Ltd. (Japan) å²©å°¾ē£å™Øå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123299, 'https://ror.org/01vspcm72', 'en', 0, 'https://ror.org/01vspcm72 Barony College'),
(123300, 'https://ror.org/05xn4js35', 'en', 0, 'https://ror.org/05xn4js35 University of Belgrade - Faculty of Geography Univerzitet u Beogradu - Geografski fakultet Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Географски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(123301, 'https://ror.org/01yq4fp10', 'no_lang_code', 1, 'https://ror.org/01yq4fp10 Yonex Co., Ltd. Yonex Co., Ltd. (Japan) ćƒØćƒćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(123302, 'https://ror.org/03bmsv758', 'no_lang_code', 1, 'https://ror.org/03bmsv758 Sotoh Co., Ltd. Sotoh Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚½ćƒˆćƒ¼'),
(123303, 'https://ror.org/007fthm19', 'en', 1, 'https://ror.org/007fthm19 Sharq Universiteti Sharq University'),
(123304, 'https://ror.org/046c8ay62', 'no_lang_code', 1, 'https://ror.org/046c8ay62 Komaihaltec Inc. Komaihaltec Inc. (Japan) ę Ŗå¼ä¼šē¤¾é§’äŗ•ćƒćƒ«ćƒ†ćƒƒć‚Æ'),
(123305, 'https://ror.org/04tv73k21', 'no_lang_code', 1, 'https://ror.org/04tv73k21 Kokuyo Co., Ltd. Kokuyo Co., Ltd. (Japan) ć‚³ć‚ÆćƒØę Ŗå¼ä¼šē¤¾'),
(123306, 'https://ror.org/052svpa67', 'no_lang_code', 1, 'https://ror.org/052svpa67 Nabco Ltd. Nabco Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŠćƒ–ć‚³'),
(123307, 'https://ror.org/03ms37t64', 'no_lang_code', 1, 'https://ror.org/03ms37t64 Sanvic Inc. Sanvic Inc. (Japan) ć‚µćƒ³ćƒ“ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(123308, 'https://ror.org/026anqy80', 'no_lang_code', 1, 'https://ror.org/026anqy80 Astrazeneca K.K. Astrazeneca K.K. (Japan) ć‚¢ć‚¹ćƒˆćƒ©ć‚¼ćƒć‚«ę Ŗå¼ä¼šē¤¾'),
(123309, 'https://ror.org/01xgfaw76', 'en', 1, 'https://ror.org/01xgfaw76 Academy of Sciences Republic of Uzbekistan OŹ»zbekiston Respublikasi Fanlar Akademiyasi ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Узбекистана ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŠø илмҳои Ӯзбакистон'),
(123310, 'https://ror.org/0195mb669', 'no_lang_code', 1, 'https://ror.org/0195mb669 Nanocarbon Research Institute Ltd. Nanocarbon Research Institute Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŠćƒŽē‚­ē“ ē ”ē©¶ę‰€'),
(123311, 'https://ror.org/05f0e8w36', 'no_lang_code', 1, 'https://ror.org/05f0e8w36 Fluidware Technologies Inc. Fluidware Technologies Inc. (Japan) ćƒ•ćƒ«ć‚¤ćƒ‰ć‚¦ć‚§ć‚¢ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(123312, 'https://ror.org/05ccra174', 'no_lang_code', 1, 'https://ror.org/05ccra174 C&A Corporation C&A Corporation (Japan) ę Ŗå¼ä¼šē¤¾C&A'),
(123313, 'https://ror.org/05e215d79', 'fr', 1, 'https://ror.org/05e215d79 Architectural Research Laboratory Laboratoire de recherche en architecture'),
(123314, 'https://ror.org/00300j256', 'en', 1, 'https://ror.org/00300j256 Fulbright Association'),
(123315, 'https://ror.org/0250xdm28', 'no_lang_code', 1, 'https://ror.org/0250xdm28 Takadakiko Co., Ltd. Takadakiko Co., Ltd. (Japan) é«˜ē”°ę©Ÿå·„ę Ŗå¼ä¼šē¤¾'),
(123316, 'https://ror.org/01q9wxh80', 'no_lang_code', 1, 'https://ror.org/01q9wxh80 IMD Inc. IMD Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ»ć‚Øćƒ ćƒ»ćƒ‡ć‚£'),
(123317, 'https://ror.org/021trya33', 'no_lang_code', 1, 'https://ror.org/021trya33 Feedone Co., Ltd. Feedone Co., Ltd. (Japan) ćƒ•ć‚£ćƒ¼ćƒ‰ćƒ»ćƒÆćƒ³ę Ŗå¼ä¼šē¤¾'),
(123318, 'https://ror.org/02j3q7j55', 'en', 1, 'https://ror.org/02j3q7j55 NIHR Royal Brompton Respiratory Biomedical Research Unit'),
(123319, 'https://ror.org/038eqvt55', 'no_lang_code', 1, 'https://ror.org/038eqvt55 Litanial Bio Science Co., Ltd. Litanial Bio Science Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŖć‚æćƒ‹ć‚¢ćƒ«ćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(123320, 'https://ror.org/004kfkh45', 'en', 1, 'https://ror.org/004kfkh45 Jorhat Kendriya Mahavidyalaya ą¦Æą§‹ą§°ą¦¹ą¦¾ą¦Ÿ ą¦•ą§‡ą¦Øą§ą¦¦ą§ą§°ą§€ą¦Æą¦¼ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(123321, 'https://ror.org/004gq9180', 'no_lang_code', 1, 'https://ror.org/004gq9180 Agriculture, Forestry and Fisheries Fund Corporation for Innovation, Value-Chain and Expansion Japan Agriculture, Forestry and Fisheries Fund Corporation for Innovation, Value-Chain and Expansion Japan (Japan) ę Ŗå¼ä¼šē¤¾č¾²ęž—ę¼ę„­ęˆé•·ē”£ę„­åŒ–ę”Æę“ę©Ÿę§‹'),
(123322, 'https://ror.org/00hzxfq12', 'no_lang_code', 1, 'https://ror.org/00hzxfq12 Topura Co., Ltd. Topura Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ćƒ—ćƒ©'),
(123323, 'https://ror.org/04b2y5p58', 'no_lang_code', 1, 'https://ror.org/04b2y5p58 Hachinohe Mining Co., Ltd. Hachinohe Mining Co., Ltd. (Japan) å…«ęˆøé‰±å±±ę Ŗå¼ä¼šē¤¾'),
(123324, 'https://ror.org/042rh9p26', 'fr', 1, 'https://ror.org/042rh9p26 IMT Nord Europe'),
(123325, 'https://ror.org/02hkndf15', 'no_lang_code', 1, 'https://ror.org/02hkndf15 Tsphoton Corporation Tsphoton Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚£ć‚Øć‚¹ćƒ•ć‚©ćƒˆćƒ³'),
(123326, 'https://ror.org/01cvgt623', 'en', 1, 'https://ror.org/01cvgt623 Don Bosco Institute of Technology ą¤”ą„‰ą¤Ø ą¤¬ą„‹ą¤øą„ą¤•ą„‹ ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤Ÿą„‡ą¤•ą„ą¤Øą„‰ą¤²ą„‰ą¤œą„€ ą°”ą°¾ą°Øą± ą°¬ą°¾ą°øą±ą°•ą±‹ ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€, ą°®ą±ą°‚ą°¬ą±ˆ'),
(123327, 'https://ror.org/04ybce962', 'no_lang_code', 1, 'https://ror.org/04ybce962 Densan Co., Ltd. Densan Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é›»ē”£'),
(123328, 'https://ror.org/02tj8x220', 'no_lang_code', 1, 'https://ror.org/02tj8x220 FES Co., Ltd. FES Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ•ćƒ»ć‚¤ćƒ¼ćƒ»ć‚Øć‚¹'),
(123329, 'https://ror.org/04e2f5g27', 'de', 1, 'https://ror.org/04e2f5g27 Hochschule für Politik München'),
(123330, 'https://ror.org/02n81xy38', 'no_lang_code', 1, 'https://ror.org/02n81xy38 Clealink Technology Co., Ltd. Clealink Technology Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ć‚¢ćƒŖćƒ³ć‚Æćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼'),
(123331, 'https://ror.org/02ykhzc68', 'no_lang_code', 1, 'https://ror.org/02ykhzc68 Fukushima Steel Casting Co., Ltd. Fukushima Steel Casting Co., Ltd. (Japan) ē¦å³¶č£½é‹¼ę Ŗå¼ä¼šē¤¾'),
(123332, 'https://ror.org/05ypc8g53', 'no_lang_code', 1, 'https://ror.org/05ypc8g53 Biophenix Co., Ltd. Biophenix Co., Ltd. (Japan) ęœ‰é™ä¼šē¤¾ćƒć‚¤ć‚Ŗćƒ•ć‚§ćƒ‹ćƒƒć‚Æć‚¹'),
(123333, 'https://ror.org/047m0x135', 'no_lang_code', 1, 'https://ror.org/047m0x135 Yoshikawa Construction Co., Ltd. Yoshikawa Construction Co., Ltd. (Japan) å‰å·å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(123334, 'https://ror.org/044m46d61', 'en', 0, 'https://ror.org/044m46d61 Technological Educational Institute of Athens Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Αθήνας'),
(123335, 'https://ror.org/02zpkjt27', 'pt', 1, 'https://ror.org/02zpkjt27 Universidade Evangelica de GoiƔs'),
(123336, 'https://ror.org/0012fbh46', 'no_lang_code', 1, 'https://ror.org/0012fbh46 Phoenix Electric Co., Ltd. Phoenix Electric Co., Ltd. (Japan) ćƒ•ć‚§ćƒ‹ćƒƒć‚Æć‚¹é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123337, 'https://ror.org/03sx1ma90', 'no_lang_code', 1, 'https://ror.org/03sx1ma90 Iriso Electronics Co., Ltd. Iriso Electronics Co., Ltd. (Japan) ć‚¤ćƒŖć‚½é›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123338, 'https://ror.org/05ttz1z24', 'no_lang_code', 1, 'https://ror.org/05ttz1z24 DYDO Drinco Inc. DYDO Drinco Inc. (Japan) ćƒ€ć‚¤ćƒ‰ćƒ¼ćƒ‰ćƒŖćƒ³ć‚³ę Ŗå¼ä¼šē¤¾'),
(123339, 'https://ror.org/04b2gta55', 'en', 1, 'https://ror.org/04b2gta55 Projects Development Institute'),
(123340, 'https://ror.org/02y3ad647', 'en', 1, 'https://ror.org/02y3ad647 Universidad de la Florida University of Florida UniversitƩ de floride'),
(123341, 'https://ror.org/02q1q6395', 'no_lang_code', 1, 'https://ror.org/02q1q6395 Onkyo Corporation Onkyo Corporation (Japan) ć‚Ŗćƒ³ć‚­ćƒØćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123342, 'https://ror.org/025wads44', 'no_lang_code', 1, 'https://ror.org/025wads44 CAC Corporation CAC Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ćƒ¼ć‚Øćƒ¼ć‚·ćƒ¼'),
(123343, 'https://ror.org/004yr7j39', 'en', 1, 'https://ror.org/004yr7j39 Quetzal Education and Research Center'),
(123344, 'https://ror.org/00qe7f485', 'fr', 0, 'https://ror.org/00qe7f485 TƩlƩcom Lille'),
(123345, 'https://ror.org/05nbpfr21', 'no_lang_code', 1, 'https://ror.org/05nbpfr21 Ichikoh Industries, Ltd. Ichikoh Industries, Ltd. (Japan) åø‚å…‰å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123346, 'https://ror.org/034f4rf88', 'no_lang_code', 1, 'https://ror.org/034f4rf88 Fujipress Co., Ltd. Fujipress Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾åÆŒå£«ćƒ—ćƒ¬ć‚¹'),
(123347, 'https://ror.org/02fvjvv74', 'en', 1, 'https://ror.org/02fvjvv74 Chernivtsi Institute of Trade and Economics of State University of Trade and Economics Š§ŠµŃ€Š½Ń–Š²ŠµŃ†ŃŒŠŗŠøŠ¹ Ń‚Š¾Ń€Š³Š¾Š²ŠµŠ»ŃŒŠ½Š¾-економічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Державного Ń‚Š¾Ń€Š³Š¾Š²ŠµŠ»ŃŒŠ½Š¾-економічного ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(123348, 'https://ror.org/055w1jj91', 'no_lang_code', 1, 'https://ror.org/055w1jj91 Arcreate Arcreate (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ć‚ÆćƒŖć‚Øć‚¤ćƒˆ'),
(123349, 'https://ror.org/049y1zf46', 'no_lang_code', 1, 'https://ror.org/049y1zf46 KMF Co., Ltd. KMF Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚±ćƒ¼ć‚Øćƒ ć‚Øćƒ•'),
(123350, 'https://ror.org/04y5r3m78', 'fr', 1, 'https://ror.org/04y5r3m78 Ecole Normale SupĆ©rieure d''Oran المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ŲØŁˆŁ‡Ų±Ų§Ł†'),
(123351, 'https://ror.org/05te6vc17', 'no_lang_code', 1, 'https://ror.org/05te6vc17 Hrein Energy Inc. Hrein Energy Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ¬ć‚¤ćƒ³ćƒ»ć‚ØćƒŠć‚øćƒ¼'),
(123352, 'https://ror.org/02n5j9684', 'no_lang_code', 1, 'https://ror.org/02n5j9684 Nastoa Co., Ltd. Nastoa Co., Ltd. (Japan) ćƒŠć‚¹ćƒˆćƒ¼ć‚¢ę Ŗå¼ä¼šē¤¾'),
(123353, 'https://ror.org/00sc4fm88', 'no_lang_code', 1, 'https://ror.org/00sc4fm88 Hibiya Engineering, Ltd. Hibiya Engineering, Ltd. (Japan) ę—„ęÆ”č°·ē·åˆčØ­å‚™ę Ŗå¼ä¼šē¤¾'),
(123354, 'https://ror.org/013hyfg52', 'no_lang_code', 1, 'https://ror.org/013hyfg52 Nakabayashi Co., Ltd. Nakabayashi Co., Ltd. (Japan) ćƒŠć‚«ćƒćƒ¤ć‚·ę Ŗå¼ä¼šē¤¾'),
(123355, 'https://ror.org/01t1a0689', 'no_lang_code', 1, 'https://ror.org/01t1a0689 Sumiken Mitsui ROAD Co., Ltd. Sumiken Mitsui ROAD Co., Ltd. (Japan) äø‰äŗ•ä½å»ŗé“č·Æę Ŗå¼ä¼šē¤¾'),
(123356, 'https://ror.org/043qbz820', 'no_lang_code', 1, 'https://ror.org/043qbz820 YM SYSTEMS Inc. YM SYSTEMS Inc. (Japan) ćƒÆć‚¤ć‚Øćƒ ć‚·ć‚¹ćƒ†ćƒ ć‚ŗę Ŗå¼ä¼šē¤¾'),
(123357, 'https://ror.org/01vysa011', 'no_lang_code', 1, 'https://ror.org/01vysa011 Fujirebio, Inc. Fujirebio, Inc. (Japan) åÆŒå£«ćƒ¬ćƒ“ć‚Ŗę Ŗå¼ä¼šē¤¾'),
(123358, 'https://ror.org/02bhpvh55', 'no_lang_code', 1, 'https://ror.org/02bhpvh55 Ashimori Industry Co., Ltd. Ashimori Industry Co., Ltd. (Japan) čŠ¦ę£®å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123359, 'https://ror.org/055mae288', 'no_lang_code', 1, 'https://ror.org/055mae288 Boron Japan Co., Ltd. Boron Japan Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę—„ęœ¬ćƒœćƒ­ćƒ³'),
(123360, 'https://ror.org/03mbmmk80', 'no_lang_code', 1, 'https://ror.org/03mbmmk80 Crop Intellect Crop Intellect (United Kingdom)'),
(123361, 'https://ror.org/006rs8r82', 'no_lang_code', 1, 'https://ror.org/006rs8r82 Kinugawa Rubber Industrial Co., Ltd. Kinugawa Rubber Industrial Co., Ltd. (Japan) é¬¼ę€’å·ć‚“ćƒ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123362, 'https://ror.org/01bx4yp12', 'no_lang_code', 1, 'https://ror.org/01bx4yp12 Unytite Corporation Unytite Corporation (Japan) ćƒ¦ćƒ‹ć‚æć‚¤ćƒˆę Ŗå¼ä¼šē¤¾'),
(123363, 'https://ror.org/01a7w7720', 'no_lang_code', 1, 'https://ror.org/01a7w7720 CMC Technology Development Co., Ltd. CMC Technology Development Co., Ltd. (Japan) ć‚·ćƒ¼ć‚Øćƒ ć‚·ćƒ¼ęŠ€č”“é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(123364, 'https://ror.org/05v7qw105', 'no_lang_code', 1, 'https://ror.org/05v7qw105 Morioh Co., Ltd. Morioh Co., Ltd. (Japan) ćƒ¢ćƒŖćƒ¼ć‚Ŗę Ŗå¼ä¼šē¤¾'),
(123365, 'https://ror.org/01qc02b16', 'pt', 0, 'https://ror.org/01qc02b16 Technical University of Lisbon Universidade TƩcnica de Lisboa'),
(123366, 'https://ror.org/0164hj580', 'no_lang_code', 1, 'https://ror.org/0164hj580 Diamond Electric MFG. Co., Ltd. Diamond Electric MFG. Co., Ltd. (Japan) ćƒ€ć‚¤ćƒ¤ćƒ¢ćƒ³ćƒ‰é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123367, 'https://ror.org/05sj6xc59', 'no_lang_code', 1, 'https://ror.org/05sj6xc59 Marusan-AI Co., Ltd. Marusan-AI Co., Ltd. (Japan) ćƒžćƒ«ć‚µćƒ³ć‚¢ć‚¤ę Ŗå¼ä¼šē¤¾'),
(123368, 'https://ror.org/02en5vm52', 'fr', 1, 'https://ror.org/02en5vm52 Sorbonne University Sorbonne UniversitƩ'),
(123369, 'https://ror.org/03rmh7j97', 'no_lang_code', 1, 'https://ror.org/03rmh7j97 Kurashiki Textile MFG. Co., Ltd. Kurashiki Textile MFG. Co., Ltd. (Japan) å€‰ę•·ē¹Šē¶­åŠ å·„ę Ŗå¼ä¼šē¤¾'),
(123370, 'https://ror.org/01hqgmh66', 'no_lang_code', 1, 'https://ror.org/01hqgmh66 Kirishima Shuzou Co., Ltd. Kirishima Shuzou Co., Ltd. (Japan) éœ§å³¶é…’é€ ę Ŗå¼ä¼šē¤¾'),
(123371, 'https://ror.org/05h04dc24', 'no_lang_code', 1, 'https://ror.org/05h04dc24 Placo Co., Ltd. Placo Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ©ć‚³ćƒ¼'),
(123372, 'https://ror.org/02f408452', 'no_lang_code', 1, 'https://ror.org/02f408452 Gantan Beauty Industry Co., Ltd. Gantan Beauty Industry Co., Ltd. (Japan) å…ƒę—¦ćƒ“ćƒ„ćƒ¼ćƒ†ć‚£å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123373, 'https://ror.org/003h62q20', 'no_lang_code', 1, 'https://ror.org/003h62q20 Fujibo Holdings, Inc. Fujibo Holdings, Inc. (Japan) åÆŒå£«ē“”ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123374, 'https://ror.org/02090d609', 'no_lang_code', 1, 'https://ror.org/02090d609 Daishinku Corp. Daishinku Corp. (Japan) ę Ŗå¼ä¼šē¤¾å¤§ēœŸē©ŗ'),
(123375, 'https://ror.org/00mph8j66', 'no_lang_code', 1, 'https://ror.org/00mph8j66 Pabco Co., Ltd. Pabco Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‘ćƒ–ć‚³'),
(123376, 'https://ror.org/00a9d5922', 'no_lang_code', 1, 'https://ror.org/00a9d5922 Calpis Co., Ltd. Calpis Co., Ltd. (Japan) ć‚«ćƒ«ćƒ”ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123377, 'https://ror.org/03t6qw930', 'no_lang_code', 1, 'https://ror.org/03t6qw930 Itoho OIL Chemicals Co., Ltd. Itoho OIL Chemicals Co., Ltd. (Japan) ä¼Šč—¤č£½ę²¹ę Ŗå¼ä¼šē¤¾'),
(123378, 'https://ror.org/02kawe830', 'en', 1, 'https://ror.org/02kawe830 Forestry Research Institute O''RMON XO''JALIGI ILMIY-TADQIQOT INSTITUTI'),
(123379, 'https://ror.org/012qfkf18', 'no_lang_code', 1, 'https://ror.org/012qfkf18 Nextware Ltd. Nextware Ltd. (Japan) ćƒć‚Æć‚¹ćƒˆć‚¦ć‚§ć‚¢ę Ŗå¼ä¼šē¤¾'),
(123380, 'https://ror.org/03b5fcs23', 'no_lang_code', 1, 'https://ror.org/03b5fcs23 Nishina Industrial Co., Ltd. Nishina Industrial Co., Ltd. (Japan) ä»ē§‘å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123381, 'https://ror.org/03fqf8r49', 'no_lang_code', 1, 'https://ror.org/03fqf8r49 GENO DIVE Pharma Inc. GENO DIVE Pharma Inc. (Japan) ć‚øć‚§ćƒŽćƒ€ć‚¤ćƒ–ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(123382, 'https://ror.org/05wfaeg41', 'no_lang_code', 1, 'https://ror.org/05wfaeg41 IDEX Health & Science KK IDEX Health & Science KK (Japan) IDEX Health & Scienceę Ŗå¼ä¼šē¤¾'),
(123383, 'https://ror.org/04h9yzf84', 'no_lang_code', 1, 'https://ror.org/04h9yzf84 Werfen (Spain)'),
(123384, 'https://ror.org/009vfy352', 'no_lang_code', 1, 'https://ror.org/009vfy352 Nepon Inc. Nepon Inc. (Japan) ćƒćƒćƒ³ę Ŗå¼ä¼šē¤¾'),
(123385, 'https://ror.org/02t3p7e85', 'en', 1, 'https://ror.org/02t3p7e85 Children''s Health Queensland Hospital and Health Service'),
(123386, 'https://ror.org/01n58hw88', 'no_lang_code', 1, 'https://ror.org/01n58hw88 Sunus Co., Ltd. Sunus Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒŠć‚¹'),
(123387, 'https://ror.org/03jqz2y95', 'en', 1, 'https://ror.org/03jqz2y95 Beijing Institute for Stem Cell and Regenerative Medicine'),
(123388, 'https://ror.org/00kbtg228', 'en', 1, 'https://ror.org/00kbtg228 Beopolis University Univerzitet Beopolis Универзитет Беополис'),
(123389, 'https://ror.org/00kg2yq63', 'en', 1, 'https://ror.org/00kg2yq63 Institute of Computational Biology'),
(123390, 'https://ror.org/050jn9y42', 'fr', 1, 'https://ror.org/050jn9y42 Institut National des Sciences AppliquƩes de Lyon'),
(123391, 'https://ror.org/05ssr8p89', 'no_lang_code', 1, 'https://ror.org/05ssr8p89 Mebiol Inc. Mebiol Inc. (Japan) ćƒ”ćƒ“ć‚Ŗćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(123392, 'https://ror.org/03snqg388', 'no_lang_code', 1, 'https://ror.org/03snqg388 Electro LAB Company Electro LAB Company (Japan) ęœ‰é™ä¼šē¤¾ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ©ćƒœ'),
(123393, 'https://ror.org/00bznz046', 'es', 1, 'https://ror.org/00bznz046 Ministerio PĆŗblico de Paraguay'),
(123394, 'https://ror.org/01e15c272', 'fr', 0, 'https://ror.org/01e15c272 Laboratoire des Sciences Sociales du Politique'),
(123395, 'https://ror.org/02sg01s62', 'no_lang_code', 1, 'https://ror.org/02sg01s62 TMS Co., Ltd. TMS Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚£ćƒ ć‚¹'),
(123396, 'https://ror.org/05srcm408', 'no_lang_code', 1, 'https://ror.org/05srcm408 Fasmac Co., Ltd. Fasmac Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚”ć‚¹ćƒžćƒƒć‚Æ'),
(123397, 'https://ror.org/05pd6be13', 'en', 1, 'https://ror.org/05pd6be13 Saint Jude College'),
(123398, 'https://ror.org/05avvat68', 'no_lang_code', 1, 'https://ror.org/05avvat68 Takii & Co., Ltd. Takii & Co., Ltd. (Japan) ć‚æć‚­ć‚¤ēØ®č‹—ę Ŗå¼ä¼šē¤¾'),
(123399, 'https://ror.org/03fq7nc36', 'no_lang_code', 1, 'https://ror.org/03fq7nc36 Monsanto Japan Ltd. Monsanto Japan Ltd. (Japan) ę—„ęœ¬ćƒ¢ćƒ³ć‚µćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(123400, 'https://ror.org/01xebr811', 'no_lang_code', 1, 'https://ror.org/01xebr811 Janis Ltd. Janis Ltd. (Japan) ć‚øćƒ£ćƒ‹ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123401, 'https://ror.org/022e1hy13', 'no_lang_code', 1, 'https://ror.org/022e1hy13 Polatechno Co., Ltd. Polatechno Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒ©ćƒ†ć‚ÆćƒŽ'),
(123402, 'https://ror.org/04w5v0h22', 'en', 1, 'https://ror.org/04w5v0h22 Bharati Vidyapeeth College of Pharmacy, Kolhapur'),
(123403, 'https://ror.org/04xgnns15', 'no_lang_code', 1, 'https://ror.org/04xgnns15 Eniwa Research Business PARK Co., Ltd. Eniwa Research Business PARK Co., Ltd. (Japan) ęµåŗ­ćƒŖć‚µćƒ¼ćƒćƒ»ćƒ“ć‚øćƒć‚¹ćƒ‘ćƒ¼ć‚Æę Ŗå¼ä¼šē¤¾'),
(123404, 'https://ror.org/0028p8r67', 'fr', 1, 'https://ror.org/0028p8r67 Hubert Curien laboratory Laboratoire Hubert Curien'),
(123405, 'https://ror.org/04cnkaj52', 'no_lang_code', 1, 'https://ror.org/04cnkaj52 MAKI Manufacturing Co., Ltd. MAKI Manufacturing Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒžć‚­č£½ä½œę‰€'),
(123406, 'https://ror.org/043ex8j57', 'no_lang_code', 1, 'https://ror.org/043ex8j57 KCM Corporation. KCM Corporation. (Japan) å…±ē«‹ćƒžćƒ†ćƒŖć‚¢ćƒ«ę Ŗå¼ä¼šē¤¾'),
(123407, 'https://ror.org/02znhzp31', 'no_lang_code', 1, 'https://ror.org/02znhzp31 Foster Electric Co., Ltd. Foster Electric Co., Ltd. (Japan) ćƒ•ć‚©ć‚¹ć‚æćƒ¼é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123408, 'https://ror.org/039r8hh17', 'no_lang_code', 1, 'https://ror.org/039r8hh17 Grass Valley K.K. Grass Valley K.K. (Japan) ć‚°ćƒ©ć‚¹ćƒćƒ¬ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123409, 'https://ror.org/0178xnn35', 'no_lang_code', 1, 'https://ror.org/0178xnn35 Nihonsakari Co., Ltd. Nihonsakari Co., Ltd. (Japan) ę—„ęœ¬ē››ę Ŗå¼ä¼šē¤¾'),
(123410, 'https://ror.org/02gqg2511', 'en', 1, 'https://ror.org/02gqg2511 NIHR Collaboration for Leadership in Applied Health Research and Care South London'),
(123411, 'https://ror.org/059y7m666', 'no_lang_code', 1, 'https://ror.org/059y7m666 Akechi Ceramics Co., Ltd. Akechi Ceramics Co., Ltd. (Japan) ę˜Žę™ŗć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(123412, 'https://ror.org/00gt97927', 'no_lang_code', 1, 'https://ror.org/00gt97927 Arcadia, Inc. Arcadia, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ć‚«ćƒ‡ć‚£ć‚¢'),
(123413, 'https://ror.org/00f13ky04', 'no_lang_code', 1, 'https://ror.org/00f13ky04 Wakodo Co., Ltd. Wakodo Co., Ltd. (Japan) å’Œå…‰å ‚ę Ŗå¼ä¼šē¤¾'),
(123414, 'https://ror.org/0510vy131', 'no_lang_code', 1, 'https://ror.org/0510vy131 NRL Pharma, Inc. NRL Pharma, Inc. (Japan) ę Ŗå¼ä¼šē¤¾NRLćƒ•ć‚”ćƒ¼ćƒž'),
(123415, 'https://ror.org/04ff8ah04', 'no_lang_code', 1, 'https://ror.org/04ff8ah04 Via Mechanics, Ltd. Via Mechanics, Ltd. (Japan) ćƒ“ć‚¢ćƒ”ć‚«ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(123416, 'https://ror.org/04gxm2h51', 'no_lang_code', 1, 'https://ror.org/04gxm2h51 Wadoh Co., Ltd. Wadoh Co., Ltd. (Japan) å’ŒåŒē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(123417, 'https://ror.org/058kz7t88', 'en', 1, 'https://ror.org/058kz7t88 Hillside College of Engineering'),
(123418, 'https://ror.org/018jng747', 'no_lang_code', 1, 'https://ror.org/018jng747 Tachikawa Corporation Tachikawa Corporation (Japan) ē«‹å·ćƒ–ćƒ©ć‚¤ćƒ³ćƒ‰å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123419, 'https://ror.org/016dhtn41', 'no_lang_code', 1, 'https://ror.org/016dhtn41 Kuwayama Corporation Kuwayama Corporation (Japan) ę Ŗå¼ä¼šē¤¾ę”‘å±±'),
(123420, 'https://ror.org/02tw9mr32', 'no_lang_code', 1, 'https://ror.org/02tw9mr32 KCON Co., Ltd. KCON Co., Ltd. (Japan) ć‚±ć‚¤ć‚³ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123421, 'https://ror.org/0538ztq97', 'no_lang_code', 1, 'https://ror.org/0538ztq97 Tipton Corp. Tipton Corp. (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒƒćƒ—ćƒˆćƒ³'),
(123422, 'https://ror.org/00p3qrh88', 'no_lang_code', 1, 'https://ror.org/00p3qrh88 Narumi China Corp. Narumi China Corp. (Japan) é³“ęµ·č£½é™¶ę Ŗå¼ä¼šē¤¾'),
(123423, 'https://ror.org/02nmrdq69', 'no_lang_code', 1, 'https://ror.org/02nmrdq69 Lobtex Co., Ltd. Lobtex Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ­ćƒ–ćƒ†ćƒƒć‚Æć‚¹'),
(123424, 'https://ror.org/01c4my580', 'fr', 1, 'https://ror.org/01c4my580 Laboratory of Synthesis and Physico-Chemistry of Molecules of Biological Interest Synthèse et Physicochimie de Molécules d''Intérêt Biologique'),
(123425, 'https://ror.org/00xwm0n16', 'no_lang_code', 1, 'https://ror.org/00xwm0n16 S.E. Chemical Co., Ltd. S.E. Chemical Co., Ltd. (Japan) ć‚Øć‚¹ćƒ»ć‚¤ćƒ¼ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(123426, 'https://ror.org/0163rjz75', 'no_lang_code', 1, 'https://ror.org/0163rjz75 Ariake Japan Co., Ltd. Ariake Japan Co., Ltd. (Japan) ć‚¢ćƒŖć‚¢ć‚±ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123427, 'https://ror.org/0436r2580', 'no_lang_code', 1, 'https://ror.org/0436r2580 ANBAS Corp. ANBAS Corp. (Japan) ę Ŗå¼ä¼šē¤¾ANBAS'),
(123428, 'https://ror.org/01qm1vn87', 'no_lang_code', 1, 'https://ror.org/01qm1vn87 Messenger Scape Co., Ltd. Messenger Scape Co., Ltd. (Japan) ćƒ”ćƒƒć‚»ćƒ³ć‚øćƒ£ćƒ¼ćƒ»ć‚¹ć‚±ćƒ¼ćƒ—ę Ŗå¼ä¼šē¤¾'),
(123429, 'https://ror.org/03vypfd87', 'no_lang_code', 1, 'https://ror.org/03vypfd87 ART Metal MFG. Co., Ltd. ART Metal MFG. Co., Ltd. (Japan) ć‚¢ćƒ¼ćƒˆé‡‘å±žå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123430, 'https://ror.org/02aftdg82', 'no_lang_code', 1, 'https://ror.org/02aftdg82 Moritex Corporation Moritex Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¢ćƒŖćƒ†ćƒƒć‚Æć‚¹'),
(123431, 'https://ror.org/009vypj91', 'no_lang_code', 1, 'https://ror.org/009vypj91 Euglena Co., Ltd. Euglena Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ¼ć‚°ćƒ¬ćƒŠ'),
(123432, 'https://ror.org/05yb9ch43', 'no_lang_code', 1, 'https://ror.org/05yb9ch43 Threebond Co., Ltd. Threebond Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ćƒŖćƒ¼ćƒœćƒ³ćƒ‰'),
(123433, 'https://ror.org/023924804', 'no_lang_code', 1, 'https://ror.org/023924804 Univance Corporation Univance Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ‹ćƒćƒ³ć‚¹'),
(123434, 'https://ror.org/03hnxrn87', 'no_lang_code', 1, 'https://ror.org/03hnxrn87 Alfresa Pharma Corporation Alfresa Pharma Corporation (Japan) ć‚¢ćƒ«ćƒ•ćƒ¬ćƒƒć‚µćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(123435, 'https://ror.org/031y6zx11', 'no_lang_code', 1, 'https://ror.org/031y6zx11 Amiyon Co., Ltd. Amiyon Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒŸćƒØćƒ³'),
(123436, 'https://ror.org/02k100q44', 'en', 1, 'https://ror.org/02k100q44 West Kazakhstan University of Innovation and Technology Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ ŠøŠ½Š½Š¾Š²Š°Ń†ŠøŃŠ»Ń‹Ņ› және Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃŠ»Ń‹Ņ› цниверситеті'),
(123437, 'https://ror.org/04td37d32', 'fr', 1, 'https://ror.org/04td37d32 Institut National de la Recherche Scientifique National Institute of Scientific Research'),
(123438, 'https://ror.org/04rmbyt07', 'no_lang_code', 1, 'https://ror.org/04rmbyt07 Coaken Techno Co., Ltd. Coaken Techno Co., Ltd. (Japan) ć‚³ćƒ¼ć‚±ćƒ³ćƒ»ćƒ†ć‚ÆćƒŽę Ŗå¼ä¼šē¤¾'),
(123439, 'https://ror.org/05fnafy73', 'no_lang_code', 1, 'https://ror.org/05fnafy73 KCS Co., Ltd. KCS Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚±ćƒ¼ćƒ»ć‚·ćƒ¼ćƒ»ć‚Øć‚¹'),
(123440, 'https://ror.org/02v9bc862', 'no_lang_code', 1, 'https://ror.org/02v9bc862 Kurimoto, Ltd. Kurimoto, Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę —ęœ¬éµå·„ę‰€'),
(123441, 'https://ror.org/03gc34v10', 'no_lang_code', 1, 'https://ror.org/03gc34v10 KEY Coffee Inc. KEY Coffee Inc. (Japan) ć‚­ćƒ¼ć‚³ćƒ¼ćƒ’ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123442, 'https://ror.org/02kzpes48', 'no_lang_code', 1, 'https://ror.org/02kzpes48 Yokkaichi Chemical Co., Ltd. Yokkaichi Chemical Co., Ltd. (Japan) å››ę—„åø‚åˆęˆę Ŗå¼ä¼šē¤¾'),
(123443, 'https://ror.org/022hv1693', 'en', 1, 'https://ror.org/022hv1693 Clinical Data Interchange Standards Consortium'),
(123444, 'https://ror.org/057stbs83', 'en', 1, 'https://ror.org/057stbs83 Rizhao Marine Engineering Vocational College ę—„ē…§čˆŖęµ·å·„ēØ‹čŒäøšå­¦é™¢'),
(123445, 'https://ror.org/01c7dc306', 'no_lang_code', 1, 'https://ror.org/01c7dc306 Kurita Water Industries, Ltd. Kurita Water Industries, Ltd. (Japan) ę —ē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123446, 'https://ror.org/00tktea17', 'no_lang_code', 1, 'https://ror.org/00tktea17 Togawa Rubber Co., Ltd. Togawa Rubber Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾åå·ć‚“ćƒ '),
(123447, 'https://ror.org/05fd9ct06', 'en', 1, 'https://ror.org/05fd9ct06 NIHR Maudsley Biomedical Research Centre'),
(123448, 'https://ror.org/04kw8et29', 'en', 1, 'https://ror.org/04kw8et29 Bishop Grosseteste University'),
(123449, 'https://ror.org/02gqdes61', 'no_lang_code', 1, 'https://ror.org/02gqdes61 Ubigraph Inc. Ubigraph Inc. (Japan) ęœ‰é™ä¼šē¤¾ćƒ¦ćƒ“ć‚°ćƒ©ćƒ•'),
(123450, 'https://ror.org/006haex88', 'no_lang_code', 1, 'https://ror.org/006haex88 Arabian OIL Company, Ltd. Arabian OIL Company, Ltd. (Japan) ć‚¢ćƒ©ćƒ“ć‚¢ēŸ³ę²¹ę Ŗå¼ä¼šē¤¾'),
(123451, 'https://ror.org/017tkgw79', 'no_lang_code', 1, 'https://ror.org/017tkgw79 Sasakura Engineering Co., Ltd. Sasakura Engineering Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚µć‚µć‚Æćƒ©'),
(123452, 'https://ror.org/04eayc606', 'no_lang_code', 1, 'https://ror.org/04eayc606 Kaisei Engineer Co., Ltd. Kaisei Engineer Co., Ltd. (Japan) å•ęˆć‚Øćƒ³ć‚øćƒ‹ć‚¢ę Ŗå¼ä¼šē¤¾'),
(123453, 'https://ror.org/04mm87038', 'en', 1, 'https://ror.org/04mm87038 Institute of Food and Agricultural Sciences'),
(123454, 'https://ror.org/03avnww70', 'no_lang_code', 1, 'https://ror.org/03avnww70 Miyoshi OIL FAT Co., Ltd. Miyoshi OIL FAT Co., Ltd. (Japan) ćƒŸćƒØć‚·ę²¹č„‚ę Ŗå¼ä¼šē¤¾'),
(123455, 'https://ror.org/027kwb947', 'no_lang_code', 1, 'https://ror.org/027kwb947 Mitsumura Printing Co., Ltd. Mitsumura Printing Co., Ltd. (Japan) å…‰ę‘å°åˆ·ę Ŗå¼ä¼šē¤¾'),
(123456, 'https://ror.org/01f6d3s17', 'no_lang_code', 1, 'https://ror.org/01f6d3s17 Galpharma Co., Ltd. Galpharma Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¬ćƒ«ćƒ•ć‚”ćƒ¼ćƒž'),
(123457, 'https://ror.org/00jbh0w52', 'no_lang_code', 1, 'https://ror.org/00jbh0w52 KOHA Co., Ltd. KOHA Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å…‰ę³¢'),
(123458, 'https://ror.org/00n7ry993', 'no_lang_code', 1, 'https://ror.org/00n7ry993 MURO Corporation MURO Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ ćƒ­ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(123459, 'https://ror.org/035tnyy05', 'en', 1, 'https://ror.org/035tnyy05 John Templeton Foundation'),
(123460, 'https://ror.org/02bkv2b25', 'no_lang_code', 1, 'https://ror.org/02bkv2b25 Tepco SYSTEMS Corporation Tepco SYSTEMS Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ćƒ—ć‚³ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(123461, 'https://ror.org/01sgrz056', 'no_lang_code', 1, 'https://ror.org/01sgrz056 Marin FOOD Co., Ltd. Marin FOOD Co., Ltd. (Japan) ćƒžćƒŖćƒ³ćƒ•ćƒ¼ćƒ‰ę Ŗå¼ä¼šē¤¾'),
(123462, 'https://ror.org/05enp2x77', 'no_lang_code', 1, 'https://ror.org/05enp2x77 De Nora Permelec Ltd De Nora Permelec Ltd (Japan) ćƒ‡ćƒŽćƒ©ćƒ»ćƒšćƒ«ćƒ”ćƒ¬ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(123463, 'https://ror.org/001nvcp84', 'no_lang_code', 1, 'https://ror.org/001nvcp84 N. E. Chemcat Corp. N. E. Chemcat Corp. (Japan) ć‚ØćƒŒćƒ»ć‚¤ćƒ¼ć‚±ćƒ ć‚­ćƒ£ćƒƒćƒˆę Ŗå¼ä¼šē¤¾'),
(123464, 'https://ror.org/00h45ss21', 'en', 1, 'https://ror.org/00h45ss21 Central Asian University of Environmental and Climate Change Studies (Green University) Markaziy Osiyo atrof-muhit va iqlim oā€˜zgarishini oā€˜rganish universiteti Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Азиатский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃ Š¾ŠŗŃ€ŃƒŠ¶Š°ŃŽŃ‰ŠµŠ¹ среГы Šø ŠøŠ·Š¼ŠµŠ½ŠµŠ½ŠøŃ климата'),
(123465, 'https://ror.org/01xb55050', 'no_lang_code', 1, 'https://ror.org/01xb55050 TIS Inc. TIS Inc. (Japan) TISę Ŗå¼ä¼šē¤¾'),
(123466, 'https://ror.org/04cjsxp89', 'no_lang_code', 1, 'https://ror.org/04cjsxp89 Ikeda Construction Ikeda Construction (Japan) ę± ē”°å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(123467, 'https://ror.org/02dt36r49', 'no_lang_code', 1, 'https://ror.org/02dt36r49 Tokushima Science Center Tokushima Science Center (Japan) ę Ŗå¼ä¼šē¤¾å¾³å³¶å„åŗ·ē§‘å­¦ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(123468, 'https://ror.org/023vkeb66', 'fr', 1, 'https://ror.org/023vkeb66 DƩlƩgation Centre Limousin Poitou-Charentes'),
(123469, 'https://ror.org/03hp1z770', 'no_lang_code', 1, 'https://ror.org/03hp1z770 ENDO Lighting Corporation ENDO Lighting Corporation (Japan) ę Ŗå¼ä¼šē¤¾é č—¤ē…§ę˜Ž'),
(123470, 'https://ror.org/029f97665', 'no_lang_code', 1, 'https://ror.org/029f97665 Netplus Co., Ltd. Netplus Co., Ltd. (Japan) ćƒćƒ—ćƒ©ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123471, 'https://ror.org/01py5eb14', 'en', 1, 'https://ror.org/01py5eb14 East West Institute of Technology ą²ˆą²øą³ą²Ÿą³ ą²µą³†ą²øą³ą²Ÿą³ ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²«ą³ ą²Ÿą³†ą²•ą³ą²Øą²¾ą²²ą²œą²æ'),
(123472, 'https://ror.org/052csg198', 'en', 1, 'https://ror.org/052csg198 Alfred P. Sloan Foundation'),
(123473, 'https://ror.org/02qwxth74', 'no_lang_code', 1, 'https://ror.org/02qwxth74 Arthur D. Little, Inc. Arthur D. Little, Inc. (Japan) ć‚¢ćƒ¼ć‚µćƒ¼ćƒ»ćƒ‡ć‚£ćƒ»ćƒŖćƒˆćƒ«ćƒ»ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123474, 'https://ror.org/01xhjz234', 'no_lang_code', 1, 'https://ror.org/01xhjz234 Elastomix Co., Ltd. Elastomix Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ©ć‚¹ćƒˆćƒŸćƒƒć‚Æć‚¹'),
(123475, 'https://ror.org/01gat0a91', 'no_lang_code', 1, 'https://ror.org/01gat0a91 Owari Precise Products Co., Ltd. Owari Precise Products Co., Ltd. (Japan) å°¾å¼µē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123476, 'https://ror.org/013y26091', 'no_lang_code', 1, 'https://ror.org/013y26091 OPT Corporation OPT Corporation (Japan) ć‚Ŗćƒ—ćƒˆę Ŗå¼ä¼šē¤¾'),
(123477, 'https://ror.org/03tjsyq23', 'en', 1, 'https://ror.org/03tjsyq23 Department of Biotechnology'),
(123478, 'https://ror.org/05fv3dd28', 'no_lang_code', 1, 'https://ror.org/05fv3dd28 Arnis Sound Tecnologies Co., Ltd. Arnis Sound Tecnologies Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ćƒ‹ć‚¹ćƒ»ć‚µć‚¦ćƒ³ćƒ‰ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(123479, 'https://ror.org/04ksb3515', 'en', 1, 'https://ror.org/04ksb3515 NIHR Queen Square Dementia Biomedical Research Unit'),
(123480, 'https://ror.org/01rnwnt93', 'fr', 1, 'https://ror.org/01rnwnt93 Biomolecule and Plant Biotechnology BiomolƩcules et Biotechnologies VƩgƩtales'),
(123481, 'https://ror.org/0309s2z50', 'no_lang_code', 1, 'https://ror.org/0309s2z50 Suzukura Industry Inc. Suzukura Industry Inc. (Japan) éˆ“å€‰ć‚¤ćƒ³ćƒ€ć‚¹ćƒˆćƒŖćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123482, 'https://ror.org/04tjm4979', 'en', 1, 'https://ror.org/04tjm4979 Academician Stachis Scientific Research Institute for the Study of Crime Problems, National Academy of Legal Sciences of Ukraine ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²ŠøŠ²Ń‡ŠµŠ½Š½Ń проблем злочинності імені акаГеміка Š’.Š’. Š”Ń‚Š°ŃˆŠøŃŠ° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії правових наук України'),
(123483, 'https://ror.org/00a2aqk21', 'en', 1, 'https://ror.org/00a2aqk21 ICON College of Technology and Management'),
(123484, 'https://ror.org/00z0jyb16', 'no_lang_code', 1, 'https://ror.org/00z0jyb16 TOKO, Inc. TOKO, Inc. (Japan) ę±å…‰ę Ŗå¼ä¼šē¤¾'),
(123485, 'https://ror.org/02rnnpz55', 'no_lang_code', 1, 'https://ror.org/02rnnpz55 Tombow.Co., Ltd. Tombow.Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ³ćƒœ'),
(123486, 'https://ror.org/04zn1f551', 'no_lang_code', 1, 'https://ror.org/04zn1f551 Tohkaithermo Co., Ltd. Tohkaithermo Co., Ltd. (Japan) ę±ęµ·ć‚µćƒ¼ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(123487, 'https://ror.org/05cn5j254', 'no_lang_code', 1, 'https://ror.org/05cn5j254 OHI Seisakusho Co., Ltd. OHI Seisakusho Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å¤§äŗ•č£½ä½œę‰€'),
(123488, 'https://ror.org/02mtt1z51', 'en', 1, 'https://ror.org/02mtt1z51 NIHR Bristol Biomedical Research Centre'),
(123489, 'https://ror.org/0148f3753', 'no_lang_code', 1, 'https://ror.org/0148f3753 T. Hasegawa Co., Ltd. T. Hasegawa Co., Ltd. (Japan) é•·č°·å·é¦™ę–™ę Ŗå¼ä¼šē¤¾'),
(123490, 'https://ror.org/00097mb19', 'en', 1, 'https://ror.org/00097mb19 Japan Science and Technology Agency ē§‘å­¦ęŠ€č”“ęŒÆčˆˆę©Ÿę§‹'),
(123491, 'https://ror.org/05tdame78', 'en', 1, 'https://ror.org/05tdame78 Laborers'' International Union of North America'),
(123492, 'https://ror.org/05g82ff15', 'no_lang_code', 1, 'https://ror.org/05g82ff15 Sanso Electric Co., Ltd. Sanso Electric Co., Ltd. (Japan) äø‰ē›øé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123493, 'https://ror.org/01j9qf435', 'no_lang_code', 1, 'https://ror.org/01j9qf435 Adtec Engineering. Co., Ltd. Adtec Engineering. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒ†ćƒƒć‚Æć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(123494, 'https://ror.org/02z656t61', 'no_lang_code', 1, 'https://ror.org/02z656t61 Dystar Japan Ltd. Dystar Japan Ltd. (Japan) ćƒ€ć‚¤ć‚¹ć‚æćƒ¼ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123495, 'https://ror.org/01epd8s31', 'no_lang_code', 1, 'https://ror.org/01epd8s31 Peccell Technologies, Inc. Peccell Technologies, Inc. (Japan) ćƒšć‚Æć‚»ćƒ«ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(123496, 'https://ror.org/02xfpc920', 'en', 1, 'https://ror.org/02xfpc920 Disaster Prevention Research Institute, Kyoto University äŗ¬éƒ½å¤§å­¦é˜²ē½ē ”ē©¶ę‰€'),
(123497, 'https://ror.org/047mb3v89', 'no_lang_code', 1, 'https://ror.org/047mb3v89 TAKI Chemical Co., Ltd. TAKI Chemical Co., Ltd. (Japan) å¤šęœØåŒ–å­¦ę Ŗå¼ä¼šē¤¾');
INSERT INTO `rors` VALUES
(123498, 'https://ror.org/021wm7p51', 'en', 1, 'https://ror.org/021wm7p51 Council of Scientific and Industrial Research ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤ą¤µą¤‚ ą¤”ą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø परिषद ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ą®• ą®†ą®ÆąÆą®µąÆ ą®®ą®©ąÆą®±ą®®ąÆ ą°¶ą°¾ą°øą±ą°¤ą±ą°°ą±€ą°Æ మరియు ą°Ŗą°¾ą°°ą°æą°¶ą±ą°°ą°¾ą°®ą°æą°• పరిశోధనా ą°Ŗą°°ą°æą°·ą°¤ą±ą°¤ą± ą“•ąµ—ąµŗą“øą“æąµ½ ą““ą“«ąµ ą“øą“Æą“Øąµą“±ą“æą“«ą“æą“•ąµ ą“†ąµ»ą“”ąµ ą“‡ąµ»ą“”ą“øąµą“Ÿąµą“°ą“æą“Æąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ'),
(123499, 'https://ror.org/029k4ja23', 'no_lang_code', 1, 'https://ror.org/029k4ja23 Ryoko LIME Industry Co., Ltd. Ryoko LIME Industry Co., Ltd. (Japan) č±å…‰ēŸ³ē°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123500, 'https://ror.org/05c9p6d02', 'en', 1, 'https://ror.org/05c9p6d02 NIHR School for Public Health Research'),
(123501, 'https://ror.org/05gzmxp80', 'fr', 0, 'https://ror.org/05gzmxp80 Ɖcole nationale supĆ©rieure des Mines de Nantes'),
(123502, 'https://ror.org/02cwhsc96', 'no_lang_code', 1, 'https://ror.org/02cwhsc96 Graphtec Corporation Graphtec Corporation (Japan) ć‚°ćƒ©ćƒ•ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(123503, 'https://ror.org/0328vyr73', 'no_lang_code', 1, 'https://ror.org/0328vyr73 Ahresty Corporation Ahresty Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ćƒ¬ć‚¹ćƒ†ć‚£'),
(123504, 'https://ror.org/01ezvfc41', 'no_lang_code', 1, 'https://ror.org/01ezvfc41 Mutoh Industries Ltd. Mutoh Industries Ltd. (Japan) ę­¦č—¤å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123505, 'https://ror.org/00w176w85', 'de', 1, 'https://ror.org/00w176w85 Institut für Museumsforschung'),
(123506, 'https://ror.org/018mejw64', 'de', 1, 'https://ror.org/018mejw64 Deutsche Forschungsgemeinschaft German Research Foundation'),
(123507, 'https://ror.org/05kyy0717', 'no_lang_code', 1, 'https://ror.org/05kyy0717 DEPT Corporation DEPT Corporation (Japan) ćƒ‡ćƒ—ćƒˆę Ŗå¼ä¼šē¤¾'),
(123508, 'https://ror.org/03n9gk658', 'no_lang_code', 1, 'https://ror.org/03n9gk658 Nichirei Corporation Nichirei Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒćƒ¬ć‚¤'),
(123509, 'https://ror.org/043htjv09', 'fr', 1, 'https://ror.org/043htjv09 CY Cergy Paris University CY Cergy Paris UniversitƩ'),
(123510, 'https://ror.org/00ff5f522', 'en', 1, 'https://ror.org/00ff5f522 Toulouse School of Economics'),
(123511, 'https://ror.org/029m2ek79', 'no_lang_code', 1, 'https://ror.org/029m2ek79 Confectionary Kotobuki Co., Ltd. Confectionary Kotobuki Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚³ćƒ³ćƒ•ć‚§ć‚Æć‚·ćƒ§ćƒŠćƒŖćƒ¼ć‚³ćƒˆćƒ–ć‚­'),
(123512, 'https://ror.org/0397qnt41', 'no_lang_code', 1, 'https://ror.org/0397qnt41 Jatco Ltd. Jatco Ltd. (Japan) ć‚øćƒ¤ćƒˆć‚³ę Ŗå¼ä¼šē¤¾'),
(123513, 'https://ror.org/04j3wkw15', 'no_lang_code', 1, 'https://ror.org/04j3wkw15 Nishishiba Electric Co., Ltd. Nishishiba Electric Co., Ltd. (Japan) č„æčŠé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123514, 'https://ror.org/03538zy94', 'no_lang_code', 1, 'https://ror.org/03538zy94 Nisen X Co., Ltd. Nisen X Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ć‚»ćƒ³ć‚Øćƒƒć‚Æć‚¹'),
(123515, 'https://ror.org/03z7jdz44', 'no_lang_code', 1, 'https://ror.org/03z7jdz44 Gastar Co., Ltd. Gastar Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¬ć‚¹ć‚æćƒ¼'),
(123516, 'https://ror.org/01zxje635', 'no_lang_code', 1, 'https://ror.org/01zxje635 Tianma Japan, Ltd Tianma Japan, Ltd (Japan) Tianma Japanę Ŗå¼ä¼šē¤¾'),
(123517, 'https://ror.org/041g6s506', 'no_lang_code', 1, 'https://ror.org/041g6s506 Hokukon Co., Ltd. Hokukon Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ›ć‚Æć‚³ćƒ³'),
(123518, 'https://ror.org/0338ynx30', 'no_lang_code', 1, 'https://ror.org/0338ynx30 MOLDINO Tool Engineering,ltd. MOLDINO Tool Engineering,ltd. (Japan) ę Ŗå¼ä¼šē¤¾MOLDINO'),
(123519, 'https://ror.org/04kn8n124', 'no_lang_code', 1, 'https://ror.org/04kn8n124 Closure Systems International Japan Closure Systems International Japan (Japan) ę Ŗå¼ä¼šē¤¾CSIć‚øćƒ£ćƒ‘ćƒ³'),
(123520, 'https://ror.org/05dtb1875', 'en', 1, 'https://ror.org/05dtb1875 Indian Institute of Information Technology Kota ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‹ą¤Ÿą¤¾'),
(123521, 'https://ror.org/03vdg7e33', 'fr', 1, 'https://ror.org/03vdg7e33 Laboratoire Photonique, NumƩrique et Nanosciences'),
(123522, 'https://ror.org/03tsj9225', 'no_lang_code', 1, 'https://ror.org/03tsj9225 Chromosome Science Labo Inc. Chromosome Science Labo Inc. (Japan) ęœ‰é™ä¼šē¤¾ć‚Æćƒ­ćƒ¢ć‚½ćƒ¼ćƒ ć‚µć‚¤ć‚Øćƒ³ć‚¹ćƒ©ćƒœ'),
(123523, 'https://ror.org/02jmfj006', 'en', 1, 'https://ror.org/02jmfj006 UniversitĆ© nationale du ViĆŖt-nam de HanoĆÆ Vietnam National University, Hanoi ĐẔi hį»c Quốc gia HĆ  Nį»™i 河内国家大学'),
(123524, 'https://ror.org/048z1ss82', 'no_lang_code', 1, 'https://ror.org/048z1ss82 Proteo Genesys, Inc. Proteo Genesys, Inc. (Japan) ćƒ—ćƒ­ćƒ†ć‚Ŗć‚øć‚§ćƒć‚·ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123525, 'https://ror.org/04ks1wb90', 'no_lang_code', 1, 'https://ror.org/04ks1wb90 Yurtec Corporation Yurtec Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¦ć‚¢ćƒ†ćƒƒć‚Æ'),
(123526, 'https://ror.org/02k484r75', 'no_lang_code', 1, 'https://ror.org/02k484r75 Takesho Co., Ltd. Takesho Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å²³å°†'),
(123527, 'https://ror.org/050z57902', 'no_lang_code', 1, 'https://ror.org/050z57902 KAAZ Corporation KAAZ Corporation (Japan) ć‚«ćƒ¼ćƒ„ę Ŗå¼ä¼šē¤¾'),
(123528, 'https://ror.org/01d35cw23', 'en', 1, 'https://ror.org/01d35cw23 Burroughs Wellcome Fund'),
(123529, 'https://ror.org/021nfjw88', 'en', 1, 'https://ror.org/021nfjw88 Global Wealth University International University of Technology and Management'),
(123530, 'https://ror.org/033rx1153', 'en', 1, 'https://ror.org/033rx1153 NIHR Great Ormond Street Hospital Biomedical Research Centre'),
(123531, 'https://ror.org/0460adm93', 'no_lang_code', 1, 'https://ror.org/0460adm93 Astom R&D Astom R&D (Japan) ę Ŗå¼ä¼šē¤¾å…ˆē«ÆåŠ›å­¦ć‚·ćƒŸćƒ„ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ē ”ē©¶ę‰€'),
(123532, 'https://ror.org/00yd80d89', 'no_lang_code', 1, 'https://ror.org/00yd80d89 Ogaki FUSO Spinning Co., Ltd. Ogaki FUSO Spinning Co., Ltd. (Japan) å¤§åž£ę‰¶ę”‘ē“”ēø¾ę Ŗå¼ä¼šē¤¾'),
(123533, 'https://ror.org/03ezt5k87', 'no_lang_code', 1, 'https://ror.org/03ezt5k87 Natoco Co., Ltd. Natoco Co., Ltd. (Japan) ćƒŠćƒˆć‚³ę Ŗå¼ä¼šē¤¾'),
(123534, 'https://ror.org/05ekkb842', 'en', 1, 'https://ror.org/05ekkb842 Institute of Functional Epigenetics'),
(123535, 'https://ror.org/03ahgjq54', 'no_lang_code', 1, 'https://ror.org/03ahgjq54 Initiative & Integrity For Sustainable Structures Initiative & Integrity For Sustainable Structures (Japan) ę Ŗå¼ä¼šē¤¾i2S2'),
(123536, 'https://ror.org/05a28rw58', 'en', 1, 'https://ror.org/05a28rw58 ETH Zurich ETH Zürich ETH di Zurigo'),
(123537, 'https://ror.org/0467y3g46', 'fr', 1, 'https://ror.org/0467y3g46 Centre de Recherche Sciences Sociales Sports et Corps'),
(123538, 'https://ror.org/003m9jr97', 'no_lang_code', 1, 'https://ror.org/003m9jr97 Medinet Co., Ltd. Medinet Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ”ćƒ‡ć‚£ćƒćƒƒćƒˆ'),
(123539, 'https://ror.org/00gax1s40', 'no_lang_code', 1, 'https://ror.org/00gax1s40 Axiom Company,ltd. Axiom Company,ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚Æć‚·ćƒ '),
(123540, 'https://ror.org/03vzawv19', 'no_lang_code', 1, 'https://ror.org/03vzawv19 Maruo Calcium Co., Ltd. Maruo Calcium Co., Ltd. (Japan) äøøå°¾ć‚«ćƒ«ć‚·ć‚¦ćƒ ę Ŗå¼ä¼šē¤¾'),
(123541, 'https://ror.org/0476qqn46', 'no_lang_code', 1, 'https://ror.org/0476qqn46 Kobashi Kogyo Co., Ltd. Kobashi Kogyo Co., Ltd. (Japan) å°ę©‹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123542, 'https://ror.org/004js0z56', 'no_lang_code', 1, 'https://ror.org/004js0z56 Hoden Seimitsu Kako Kenkyusho Co., Ltd. Hoden Seimitsu Kako Kenkyusho Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę”¾é›»ē²¾åÆ†åŠ å·„ē ”ē©¶ę‰€'),
(123543, 'https://ror.org/002936z72', 'no_lang_code', 1, 'https://ror.org/002936z72 Signpost Corporation Signpost Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚µć‚¤ćƒ³ćƒć‚¹ćƒˆ'),
(123544, 'https://ror.org/035xhk118', 'en', 1, 'https://ror.org/035xhk118 Audie L. Murphy Memorial VA Hospital'),
(123545, 'https://ror.org/00c3acr13', 'fr', 1, 'https://ror.org/00c3acr13 New Horizons University UniversitƩ Nouveaux Horizons'),
(123546, 'https://ror.org/02nmvch85', 'no_lang_code', 1, 'https://ror.org/02nmvch85 Yomeishu Seizo Co., Ltd. Yomeishu Seizo Co., Ltd. (Japan) é¤Šå‘½é…’č£½é€ ę Ŗå¼ä¼šē¤¾'),
(123547, 'https://ror.org/03swz6y49', 'pt', 1, 'https://ror.org/03swz6y49 Conselho Nacional de Desenvolvimento Científico e Tecnológico National Council for Scientific and Technological Development'),
(123548, 'https://ror.org/05fj65154', 'no_lang_code', 1, 'https://ror.org/05fj65154 BULL-DOG Sause Co., Ltd. BULL-DOG Sause Co., Ltd. (Japan) ćƒ–ćƒ«ćƒ‰ćƒƒć‚Æć‚½ćƒ¼ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123549, 'https://ror.org/02wqnqt10', 'en', 1, 'https://ror.org/02wqnqt10 University of Science and Technology – Hodeidah Branch Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ – فرع Ų§Ł„Ų­ŲÆŁŠŲÆŲ©'),
(123550, 'https://ror.org/054xtz351', 'no_lang_code', 1, 'https://ror.org/054xtz351 SEA AG Japan Co., Ltd. SEA AG Japan Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ćƒ¼ć‚¢ć‚°ć‚øćƒ£ćƒ‘ćƒ³'),
(123551, 'https://ror.org/00fwyq383', 'no_lang_code', 1, 'https://ror.org/00fwyq383 Tokura Corporation Tokura Corporation (Japan) å¾³å€‰å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(123552, 'https://ror.org/04cs74126', 'no_lang_code', 1, 'https://ror.org/04cs74126 Sankio Chemical Co., Ltd. Sankio Chemical Co., Ltd. (Japan) äø‰å”åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(123553, 'https://ror.org/004f1n986', 'en', 1, 'https://ror.org/004f1n986 European College of Veterinary Surgeons'),
(123554, 'https://ror.org/02qsmb048', 'en', 1, 'https://ror.org/02qsmb048 University of Belgrade Univerzitet u Beogradu Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ'),
(123555, 'https://ror.org/0470vst31', 'no_lang_code', 1, 'https://ror.org/0470vst31 Sankei Chemical Co., Ltd. Sankei Chemical Co., Ltd. (Japan) ć‚µćƒ³ć‚±ć‚¤åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(123556, 'https://ror.org/01t1x3s61', 'en', 1, 'https://ror.org/01t1x3s61 Toulouse NeuroImaging Center'),
(123557, 'https://ror.org/02689jc25', 'fr', 0, 'https://ror.org/02689jc25 Centre de recherche public Henri-Tudor'),
(123558, 'https://ror.org/02rcpnq12', 'no_lang_code', 1, 'https://ror.org/02rcpnq12 Metocean Environment Inc. Metocean Environment Inc. (Japan) å›½åœŸē’°å¢ƒę Ŗå¼ä¼šē¤¾'),
(123559, 'https://ror.org/02fnxdk15', 'no_lang_code', 1, 'https://ror.org/02fnxdk15 Mynac Co., Ltd. Mynac Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒžć‚¤ćƒŠćƒƒć‚Æ'),
(123560, 'https://ror.org/00yjd3n13', 'en', 1, 'https://ror.org/00yjd3n13 Fondo Nazionale Svizzero per la Ricerca Scientifica Fonds national suisse de la recherche scientifique Schweizerische Nationalfonds zur Fƶrderung der wissenschaftlichen Forschung Swiss National Science Foundation'),
(123561, 'https://ror.org/04w0bb563', 'en', 1, 'https://ror.org/04w0bb563 Ministry of Cultural Heritage, Tourism and Handicrafts'),
(123562, 'https://ror.org/02zc8hx95', 'no_lang_code', 1, 'https://ror.org/02zc8hx95 Nichiden Kogyo Co., Ltd. Nichiden Kogyo Co., Ltd. (Japan) ę—„é›»å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123563, 'https://ror.org/042sjcz88', 'en', 1, 'https://ror.org/042sjcz88 NIHR Surgical Reconstruction and Microbiology Research Centre'),
(123564, 'https://ror.org/00j4ngr24', 'en', 1, 'https://ror.org/00j4ngr24 Casualty Actuarial Society'),
(123565, 'https://ror.org/01e2rf355', 'en', 1, 'https://ror.org/01e2rf355 Field Science Education and Research Center, Kyoto University äŗ¬éƒ½å¤§å­¦ćƒ•ć‚£ćƒ¼ćƒ«ćƒ‰ē§‘å­¦ę•™č‚²ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(123566, 'https://ror.org/05jp4cx75', 'no_lang_code', 1, 'https://ror.org/05jp4cx75 Megaopto Co., Ltd. Megaopto Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ”ć‚¬ć‚Ŗćƒ—ćƒˆ'),
(123567, 'https://ror.org/02yd09184', 'es', 1, 'https://ror.org/02yd09184 Institute of Smart Cities Instituto de Smart Cities Smart Cities Institutua'),
(123568, 'https://ror.org/001jhrf23', 'en', 1, 'https://ror.org/001jhrf23 BAU International University, Batumi'),
(123569, 'https://ror.org/02s7aa368', 'no_lang_code', 1, 'https://ror.org/02s7aa368 Keyence Corporation Keyence Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒ¼ć‚Øćƒ³ć‚¹'),
(123570, 'https://ror.org/0169eap98', 'en', 1, 'https://ror.org/0169eap98 Flogen Technologies (Canada)'),
(123571, 'https://ror.org/009wabn67', 'no_lang_code', 1, 'https://ror.org/009wabn67 Masuda Flour Milling Co., Ltd. Masuda Flour Milling Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å¢—ē”°č£½ē²‰ę‰€'),
(123572, 'https://ror.org/00j8vs319', 'no_lang_code', 1, 'https://ror.org/00j8vs319 Holon Co., Ltd. Holon Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ›ćƒ­ćƒ³'),
(123573, 'https://ror.org/00bzn3e73', 'no_lang_code', 1, 'https://ror.org/00bzn3e73 Tagawa Sangyo Co., Ltd. Tagawa Sangyo Co., Ltd. (Japan) ē”°å·ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(123574, 'https://ror.org/05kzbe759', 'no_lang_code', 1, 'https://ror.org/05kzbe759 Denroku Denroku (Japan) ę Ŗå¼ä¼šē¤¾ć§ć‚“å…­'),
(123575, 'https://ror.org/059ztgj09', 'no_lang_code', 1, 'https://ror.org/059ztgj09 Meiritsu Seiki Co., Ltd. Meiritsu Seiki Co., Ltd. (Japan) ę˜Žē«‹ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123576, 'https://ror.org/01rgj4f04', 'en', 1, 'https://ror.org/01rgj4f04 Raghunath Girls'' Post Graduate College ą¤°ą¤˜ą„ą¤Øą¤¾ą¤„ ą¤—ą¤°ą„ą¤²ą„ą¤ø ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤—ą„ą¤°ą„‡ą¤œą„ą¤ą¤Ÿ ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(123577, 'https://ror.org/03ke6rf22', 'en', 1, 'https://ror.org/03ke6rf22 NIHR Leicester Cardiovascular Biomedical Research Unit'),
(123578, 'https://ror.org/00dcbak41', 'no_lang_code', 1, 'https://ror.org/00dcbak41 Kyukyu Pharmaceutical Co., Ltd. Kyukyu Pharmaceutical Co., Ltd. (Japan) ę•‘ę€„č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123579, 'https://ror.org/0201ey351', 'no_lang_code', 1, 'https://ror.org/0201ey351 TMT Kamitsu. Inc. TMT Kamitsu. Inc. (Japan) TMTē„žę“„ę Ŗå¼ä¼šē¤¾'),
(123580, 'https://ror.org/02yan9z19', 'no_lang_code', 1, 'https://ror.org/02yan9z19 U-PASS Corporation U-PASS Corporation (Japan) ęœ‰é™ä¼šē¤¾ćƒ¦ćƒ¼ćƒ‘ć‚¹'),
(123581, 'https://ror.org/019rf7x86', 'en', 1, 'https://ror.org/019rf7x86 NIHR Bristol Nutrition Biomedical Research Unit'),
(123582, 'https://ror.org/02a7bsh52', 'es', 1, 'https://ror.org/02a7bsh52 El Colegio de Puebla, A.C.'),
(123583, 'https://ror.org/01k2xrc10', 'no_lang_code', 1, 'https://ror.org/01k2xrc10 NFK Holdings Co., Ltd. NFK Holdings Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾NFKćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(123584, 'https://ror.org/01c88wg71', 'en', 1, 'https://ror.org/01c88wg71 Stephens College of Nursing'),
(123585, 'https://ror.org/03snac744', 'no_lang_code', 1, 'https://ror.org/03snac744 E&E Co., Ltd. E&E Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ć‚¢ćƒ³ćƒ‰ć‚¤ćƒ¼'),
(123586, 'https://ror.org/02kkvpp62', 'en', 1, 'https://ror.org/02kkvpp62 Technical University of Munich Technische Universität München'),
(123587, 'https://ror.org/045094p64', 'no_lang_code', 1, 'https://ror.org/045094p64 AIDA Engineering, Ltd. AIDA Engineering, Ltd. (Japan) ć‚¢ć‚¤ćƒ€ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(123588, 'https://ror.org/012d70t43', 'no_lang_code', 1, 'https://ror.org/012d70t43 Eight-Japan Engineering Consultants Inc. Eight-Japan Engineering Consultants Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ćƒˆę—„ęœ¬ęŠ€č”“é–‹ē™ŗ'),
(123589, 'https://ror.org/04sazxf24', 'en', 1, 'https://ror.org/04sazxf24 Israel Science Foundation ×”×§×Ø×Ÿ ×”×œ××•×ž×™×Ŗ למדע'),
(123590, 'https://ror.org/03sn6zz57', 'no_lang_code', 1, 'https://ror.org/03sn6zz57 Nanox Co., Ltd. Nanox Co., Ltd. (Japan) ćƒŠćƒŽćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(123591, 'https://ror.org/008bwpw24', 'fr', 1, 'https://ror.org/008bwpw24 Ecole d''IngƩnieurs de PURPAN Purpan Engineering School'),
(123592, 'https://ror.org/01agnk121', 'no_lang_code', 1, 'https://ror.org/01agnk121 Gekkeikan SAKE Co., Ltd. Gekkeikan SAKE Co., Ltd. (Japan) ęœˆę”‚å† ę Ŗå¼ä¼šē¤¾'),
(123593, 'https://ror.org/04yb23c13', 'no_lang_code', 1, 'https://ror.org/04yb23c13 Finesinter Co., Ltd. Finesinter Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚”ć‚¤ćƒ³ć‚·ćƒ³ć‚æćƒ¼'),
(123594, 'https://ror.org/049tvtm60', 'no_lang_code', 1, 'https://ror.org/049tvtm60 Kouiken Co., Ltd. Kouiken Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾č”ŒåŒ»ē ”'),
(123595, 'https://ror.org/05f4cj185', 'no_lang_code', 1, 'https://ror.org/05f4cj185 School ON Internet Research Institute School ON Internet Research Institute (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ć‚Æćƒ¼ćƒ«ć‚Ŗćƒ³ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆē ”ē©¶ę‰€'),
(123596, 'https://ror.org/05gx0f354', 'no_lang_code', 1, 'https://ror.org/05gx0f354 NIIC Co., Ltd. NIIC Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ¼ć‚Æ'),
(123597, 'https://ror.org/038mh4k88', 'no_lang_code', 1, 'https://ror.org/038mh4k88 Macromill, Inc. Macromill, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒžć‚Æćƒ­ćƒŸćƒ«'),
(123598, 'https://ror.org/04d7es448', 'it', 1, 'https://ror.org/04d7es448 Azienda Ospedaliera Universitaria "San Martino" Ospedale Policlinico San Martino'),
(123599, 'https://ror.org/013kjyp64', 'en', 1, 'https://ror.org/013kjyp64 American Heart Association'),
(123600, 'https://ror.org/05h8ev729', 'no_lang_code', 1, 'https://ror.org/05h8ev729 Ciba-Geigy Japan Limited Ciba-Geigy Japan Limited (Japan) ę—„ęœ¬ćƒćƒć‚¬ć‚¤ć‚®ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123601, 'https://ror.org/03pzxq793', 'en', 1, 'https://ror.org/03pzxq793 NIHR Applied Research Collaboration West'),
(123602, 'https://ror.org/04md98n18', 'no_lang_code', 1, 'https://ror.org/04md98n18 Sitech Co., Ltd. Sitech Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ć‚¢ć‚¤ćƒ†ćƒƒć‚Æ'),
(123603, 'https://ror.org/058hj4z31', 'en', 1, 'https://ror.org/058hj4z31 Mien Dong Innovative Technology University TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ Miền ĐƓng'),
(123604, 'https://ror.org/01bjtz868', 'no_lang_code', 1, 'https://ror.org/01bjtz868 Azwell Inc. Azwell Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚ŗć‚¦ć‚§ćƒ«'),
(123605, 'https://ror.org/05wt29c95', 'no_lang_code', 1, 'https://ror.org/05wt29c95 Fukagawa Porcelain Manufacturing Co., Ltd. Fukagawa Porcelain Manufacturing Co., Ltd. (Japan) ę·±å·č£½ē£ę Ŗå¼ä¼šē¤¾'),
(123606, 'https://ror.org/01geht560', 'no_lang_code', 1, 'https://ror.org/01geht560 Amatsuji Steel BALL MFG. Co., Ltd. Amatsuji Steel BALL MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å¤©č¾»é‹¼ēƒč£½ä½œę‰€'),
(123607, 'https://ror.org/02cqs5e56', 'no_lang_code', 1, 'https://ror.org/02cqs5e56 Kadoya Sesame Mills Inc. Kadoya Sesame Mills Inc. (Japan) ć‹ć©ć‚„č£½ę²¹ę Ŗå¼ä¼šē¤¾'),
(123608, 'https://ror.org/01ahsqc77', 'en', 1, 'https://ror.org/01ahsqc77 Kennedy Institute of Rheumatology'),
(123609, 'https://ror.org/00jz67x08', 'en', 1, 'https://ror.org/00jz67x08 Federal Institute of Science and Technology Federal Institute of Science and Technology (FISAT)'),
(123610, 'https://ror.org/05h0jcf74', 'no_lang_code', 1, 'https://ror.org/05h0jcf74 Croda Japan K.K. Croda Japan K.K. (Japan) ć‚Æćƒ­ćƒ¼ćƒ€ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123611, 'https://ror.org/014e85952', 'no_lang_code', 1, 'https://ror.org/014e85952 Double Research & Development Co., Ltd. Double Research & Development Co., Ltd. (Japan) ćƒ€ćƒ–ćƒ«ęŠ€ē ”ę Ŗå¼ä¼šē¤¾'),
(123612, 'https://ror.org/0555rt229', 'no_lang_code', 1, 'https://ror.org/0555rt229 Canare Electric Co., Ltd. Canare Electric Co., Ltd. (Japan) ć‚«ćƒŠćƒ¬é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(123613, 'https://ror.org/04m4qkt73', 'no_lang_code', 1, 'https://ror.org/04m4qkt73 HYO-ON Laboratories Incorporated HYO-ON Laboratories Incorporated (Japan) ę Ŗå¼ä¼šē¤¾ę°·ęø©ē ”ē©¶ę‰€'),
(123614, 'https://ror.org/011w05d12', 'no_lang_code', 1, 'https://ror.org/011w05d12 Murakami Corporation Murakami Corporation (Japan) ę Ŗå¼ä¼šē¤¾ę‘äøŠé–‹ę˜Žå ‚'),
(123615, 'https://ror.org/05anqtc62', 'en', 1, 'https://ror.org/05anqtc62 Konstuniversitetet Taideyliopisto University of the Arts Helsinki'),
(123616, 'https://ror.org/045ydbe97', 'pt', 1, 'https://ror.org/045ydbe97 Institutos Nacionais de CiĆŖncia e Tecnologia'),
(123617, 'https://ror.org/0326kac16', 'no_lang_code', 1, 'https://ror.org/0326kac16 Kinyosha Co., Ltd. Kinyosha Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é‡‘é™½ē¤¾'),
(123618, 'https://ror.org/05mbdrk66', 'no_lang_code', 1, 'https://ror.org/05mbdrk66 Somar Corporation Somar Corporation (Japan) ć‚½ćƒžćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(123619, 'https://ror.org/00cb72t42', 'no_lang_code', 1, 'https://ror.org/00cb72t42 Nikon Corporation Nikon Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ć‚³ćƒ³'),
(123620, 'https://ror.org/03cqe8w59', 'es', 1, 'https://ror.org/03cqe8w59 Consejo Nacional de Investigaciones Cientƭficas y TƩcnicas National Scientific and Technical Research Council'),
(123621, 'https://ror.org/050na4a04', 'no_lang_code', 1, 'https://ror.org/050na4a04 Iwaki Seiyaku Co., Ltd. Iwaki Seiyaku Co., Ltd. (Japan) å²©åŸŽč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(123622, 'https://ror.org/05rqkdy14', 'no_lang_code', 1, 'https://ror.org/05rqkdy14 Irago Institute Irago Institute (Japan) ę Ŗå¼ä¼šē¤¾ć„ć‚‰ć”ē ”ē©¶ę‰€'),
(123623, 'https://ror.org/049cnnt59', 'no_lang_code', 1, 'https://ror.org/049cnnt59 Kameda Seika Co., Ltd. Kameda Seika Co., Ltd. (Japan) äŗ€ē”°č£½č“ę Ŗå¼ä¼šē¤¾'),
(123624, 'https://ror.org/03t0jrf09', 'no_lang_code', 1, 'https://ror.org/03t0jrf09 Sankin Corporation Sankin Corporation (Japan) ć‚µćƒ³ć‚­ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123625, 'https://ror.org/05a50q435', 'fr', 1, 'https://ror.org/05a50q435 Evolution and Oral Health Ɖvolution et SantĆ© Orale'),
(123626, 'https://ror.org/05ama5r20', 'no_lang_code', 1, 'https://ror.org/05ama5r20 Ryowa Setsubi Co., Ltd. Ryowa Setsubi Co., Ltd. (Japan) č±å’ŒčØ­å‚™ę Ŗå¼ä¼šē¤¾'),
(123627, 'https://ror.org/009wv0b48', 'no_lang_code', 1, 'https://ror.org/009wv0b48 E-Lambda NET Corporation E-Lambda NET Corporation (Japan) ć‚¤ćƒ¼ćƒ©ćƒ ćƒ€ćƒćƒƒćƒˆę Ŗå¼ä¼šē¤¾'),
(123628, 'https://ror.org/01p1n0337', 'en', 1, 'https://ror.org/01p1n0337 World Biodiversity Association'),
(123629, 'https://ror.org/03b2b2671', 'no_lang_code', 1, 'https://ror.org/03b2b2671 Suidou KIKO Kaisha Ltd. Suidou KIKO Kaisha Ltd. (Japan) ę°“é“ę©Ÿå·„ę Ŗå¼ä¼šē¤¾'),
(123630, 'https://ror.org/03ynz6s81', 'no_lang_code', 1, 'https://ror.org/03ynz6s81 Tostem Corporation Tostem Corporation (Japan) ćƒˆć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(123631, 'https://ror.org/00qq1x890', 'en', 1, 'https://ror.org/00qq1x890 Wolf Foundation'),
(123632, 'https://ror.org/05pwhmm02', 'en', 1, 'https://ror.org/05pwhmm02 National Research Fund Kenya'),
(123633, 'https://ror.org/05069ds96', 'no_lang_code', 1, 'https://ror.org/05069ds96 Togami Electric MFG. Co., Ltd. Togami Electric MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ęˆøäøŠé›»ę©Ÿč£½ä½œę‰€'),
(123634, 'https://ror.org/0376b7f46', 'en', 1, 'https://ror.org/0376b7f46 Center for Ecological Research, Kyoto University äŗ¬éƒ½å¤§å­¦ē”Ÿę…‹å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(123635, 'https://ror.org/05dw08g08', 'no_lang_code', 1, 'https://ror.org/05dw08g08 Novel Crystal Technology, Inc. Novel Crystal Technology, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŽćƒ™ćƒ«ć‚ÆćƒŖć‚¹ć‚æćƒ«ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼'),
(123636, 'https://ror.org/00cqw3r11', 'no_lang_code', 1, 'https://ror.org/00cqw3r11 Kabuki Construction Co., Ltd. Kabuki Construction Co., Ltd. (Japan) ę ŖęœØå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(123637, 'https://ror.org/02ap3w078', 'es', 1, 'https://ror.org/02ap3w078 Agencia Nacional de Investigación y Desarrollo National Agency for Research and Development'),
(123638, 'https://ror.org/00aggvm97', 'no_lang_code', 1, 'https://ror.org/00aggvm97 Onahama Smelting Refining Co., Ltd. Onahama Smelting Refining Co., Ltd. (Japan) å°åęµœč£½éŒ¬ę Ŗå¼ä¼šē¤¾'),
(123639, 'https://ror.org/03dbttn10', 'no_lang_code', 1, 'https://ror.org/03dbttn10 Taoka Chemical Co., Ltd. Taoka Chemical Co., Ltd. (Japan) ē”°å²”åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123640, 'https://ror.org/00wsca562', 'no_lang_code', 1, 'https://ror.org/00wsca562 Premed Japan Premed Japan (Japan) ę Ŗå¼ä¼šē¤¾ćƒ—ćƒŖćƒ”ćƒ‰ć‚øćƒ£ćƒ‘ćƒ³'),
(123641, 'https://ror.org/03yyk7n02', 'de', 1, 'https://ror.org/03yyk7n02 Museum für Kommunikation Bern'),
(123642, 'https://ror.org/037pstq92', 'pt', 1, 'https://ror.org/037pstq92 Instituto Nacional de CiĆŖncia e Tecnologia da Criosfera National Institute of Science and Technology of the Cryosphere'),
(123643, 'https://ror.org/05q45ky19', 'no_lang_code', 1, 'https://ror.org/05q45ky19 DAIA Corporation DAIA Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ć‚¢'),
(123644, 'https://ror.org/027g4ww47', 'no_lang_code', 1, 'https://ror.org/027g4ww47 Koatsu GAS Kogyo Co., Ltd. Koatsu GAS Kogyo Co., Ltd. (Japan) é«˜åœ§ć‚¬ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123645, 'https://ror.org/0280t6q56', 'no_lang_code', 1, 'https://ror.org/0280t6q56 Unicolloid, Inc. Unicolloid, Inc. (Japan) ćƒ¦ćƒ‹ć‚³ćƒ­ć‚¤ćƒ‰ę Ŗå¼ä¼šē¤¾'),
(123646, 'https://ror.org/02nsd9k92', 'no_lang_code', 1, 'https://ror.org/02nsd9k92 CRIE Inc. CRIE Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚ÆćƒŖć‚Ø'),
(123647, 'https://ror.org/03w71cr59', 'no_lang_code', 1, 'https://ror.org/03w71cr59 SUN-WA Tescom Corporation SUN-WA Tescom Corporation (Japan) ć‚µćƒ³ćƒÆćƒ†ć‚¹ć‚³ćƒ ę Ŗå¼ä¼šē¤¾'),
(123648, 'https://ror.org/04c87ab54', 'no_lang_code', 1, 'https://ror.org/04c87ab54 Biosums KK Biosums KK (Japan) ęœ‰é™ä¼šē¤¾ćƒć‚¤ć‚Ŗć‚µćƒ '),
(123649, 'https://ror.org/04qqq9628', 'en', 1, 'https://ror.org/04qqq9628 V. Sukhomlynskyi State Scientific and Educational Library of Ukraine Š”ŠŠŸŠ‘ України ім. Š’. Šž. Š”ŃƒŃ…Š¾Š¼Š»ŠøŠ½ŃŃŒŠŗŠ¾Š³Š¾'),
(123650, 'https://ror.org/00kf84g02', 'no_lang_code', 1, 'https://ror.org/00kf84g02 APEX. Co., Ltd. APEX. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ćƒšćƒƒć‚Æć‚¹'),
(123651, 'https://ror.org/04140zw73', 'no_lang_code', 1, 'https://ror.org/04140zw73 Nicca Chemical Co., Ltd. Nicca Chemical Co., Ltd. (Japan) ę—„čÆåŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(123652, 'https://ror.org/05c84rs33', 'no_lang_code', 1, 'https://ror.org/05c84rs33 OVAL Corporation OVAL Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ćƒćƒ«'),
(123653, 'https://ror.org/04k2hjz66', 'no_lang_code', 1, 'https://ror.org/04k2hjz66 Kyoho Machine Works Ltd. Kyoho Machine Works Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å”č±Šč£½ä½œę‰€'),
(123654, 'https://ror.org/01wbsct55', 'no_lang_code', 1, 'https://ror.org/01wbsct55 Wakachiku Construction Co., Ltd. Wakachiku Construction Co., Ltd. (Japan) č‹„ēÆ‰å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(123655, 'https://ror.org/04jdwaf03', 'no_lang_code', 1, 'https://ror.org/04jdwaf03 Yorozu Corporation Yorozu Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒØćƒ­ć‚ŗ'),
(123656, 'https://ror.org/00mrerz55', 'no_lang_code', 1, 'https://ror.org/00mrerz55 Soken Chemical & Engineering Co., Ltd. Soken Chemical & Engineering Co., Ltd. (Japan) ē¶œē ”åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(123657, 'https://ror.org/053cye920', 'no_lang_code', 1, 'https://ror.org/053cye920 DMW Corporation DMW Corporation (Japan) ę Ŗå¼ä¼šē¤¾é›»ę„­ē¤¾ę©Ÿę¢°č£½ä½œę‰€'),
(123658, 'https://ror.org/05qb7k551', 'no_lang_code', 1, 'https://ror.org/05qb7k551 Tadano Ltd. Tadano Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚æćƒ€ćƒŽ'),
(123659, 'https://ror.org/00c51rz18', 'no_lang_code', 1, 'https://ror.org/00c51rz18 Saikyu Kogyo Co., Ltd. Saikyu Kogyo Co., Ltd. (Japan) ę–Žä¹…å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123660, 'https://ror.org/00sdhpw56', 'no_lang_code', 1, 'https://ror.org/00sdhpw56 Lecip Corporation Lecip Corporation (Japan) ćƒ¬ć‚·ćƒƒćƒ—ę Ŗå¼ä¼šē¤¾'),
(123661, 'https://ror.org/04kzs5f80', 'no_lang_code', 1, 'https://ror.org/04kzs5f80 Icat Corporation Icat Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ć‚­ćƒ£ćƒƒćƒˆ'),
(123662, 'https://ror.org/01ev5bj69', 'en', 1, 'https://ror.org/01ev5bj69 Finden (United Kingdom)'),
(123663, 'https://ror.org/04aw5bc37', 'no_lang_code', 1, 'https://ror.org/04aw5bc37 KITZ Corporation KITZ Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒƒćƒ„'),
(123664, 'https://ror.org/01gs3w805', 'no_lang_code', 1, 'https://ror.org/01gs3w805 Senoh Corporation Senoh Corporation (Japan) ć‚»ćƒŽćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123665, 'https://ror.org/00c9fzk46', 'no_lang_code', 1, 'https://ror.org/00c9fzk46 Conextivo Inc. Conextivo Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚³ćƒć‚Æćƒ†ć‚£ćƒœ'),
(123666, 'https://ror.org/00q5qvn72', 'en', 0, 'https://ror.org/00q5qvn72 Betanien University College'),
(123667, 'https://ror.org/00ynzmk95', 'en', 1, 'https://ror.org/00ynzmk95 Preservation Chicago'),
(123668, 'https://ror.org/04reyjg18', 'no_lang_code', 1, 'https://ror.org/04reyjg18 AG Ajikawa Corporation AG Ajikawa Corporation (Japan) å®‰ę²»å·é‰„å·„ę Ŗå¼ä¼šē¤¾'),
(123669, 'https://ror.org/02n0y3e71', 'es', 1, 'https://ror.org/02n0y3e71 Sociedad de Estudios Genealógicos y HerÔldicos de Canarias'),
(123670, 'https://ror.org/046bqaz97', 'no_lang_code', 1, 'https://ror.org/046bqaz97 Tsubosaka Electric Co., Ltd. Tsubosaka Electric Co., Ltd. (Japan) å£·å‚é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123671, 'https://ror.org/023zete28', 'en', 1, 'https://ror.org/023zete28 National Hospital and Medical Center'),
(123672, 'https://ror.org/04xm73r59', 'no_lang_code', 1, 'https://ror.org/04xm73r59 Suzunaka Kogyo Inc. Suzunaka Kogyo Inc. (Japan) éˆ“äø­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123673, 'https://ror.org/04gyj6s21', 'fr', 1, 'https://ror.org/04gyj6s21 Institut Superieur de l''Aeronautique et de l''Espace (ISAE-SUPAERO) Ɖcole Nationale SupĆ©rieure de l''AĆ©ronautique et de l''Espace'),
(123674, 'https://ror.org/00davry38', 'es', 1, 'https://ror.org/00davry38 National Technological Institute of Mexico Tecnológico Nacional de México'),
(123675, 'https://ror.org/04dmgak75', 'en', 1, 'https://ror.org/04dmgak75 NIHR BioResource'),
(123676, 'https://ror.org/04keqwp70', 'en', 1, 'https://ror.org/04keqwp70 AMCOM Engineering s.r.o. AMCOM Group LLC'),
(123677, 'https://ror.org/015ka4x16', 'no_lang_code', 1, 'https://ror.org/015ka4x16 Okabe Co., Ltd. Okabe Co., Ltd. (Japan) å²”éƒØę Ŗå¼ä¼šē¤¾'),
(123678, 'https://ror.org/033g9ch11', 'no_lang_code', 1, 'https://ror.org/033g9ch11 Takamisawa Cybernetics Co., Ltd. Takamisawa Cybernetics Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é«˜č¦‹ę²¢ć‚µć‚¤ćƒćƒćƒ†ć‚£ćƒƒć‚Æć‚¹'),
(123679, 'https://ror.org/0492wrx28', 'en', 1, 'https://ror.org/0492wrx28 Indian Council of Medical Research'),
(123680, 'https://ror.org/04avkkz91', 'no_lang_code', 1, 'https://ror.org/04avkkz91 Nanoda Corporation Nanoda Corporation (Japan) ę Ŗå¼ä¼šē¤¾nanoda'),
(123681, 'https://ror.org/04ggdpz73', 'no_lang_code', 1, 'https://ror.org/04ggdpz73 Koasa Trading Co., Ltd. Koasa Trading Co., Ltd. (Japan) å°ęµ…å•†äŗ‹ę Ŗå¼ä¼šē¤¾'),
(123682, 'https://ror.org/03mxf8258', 'no_lang_code', 1, 'https://ror.org/03mxf8258 Mintech Japan K.K. Mintech Japan K.K. (Japan) ćƒŸćƒ³ćƒ†ćƒƒć‚Æć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123683, 'https://ror.org/03ay6rf78', 'no_lang_code', 1, 'https://ror.org/03ay6rf78 Synergy Marketing, Inc. Synergy Marketing, Inc. (Japan) ć‚·ćƒŠć‚øćƒ¼ćƒžćƒ¼ć‚±ćƒ†ć‚£ćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(123684, 'https://ror.org/021bhhq14', 'no_lang_code', 1, 'https://ror.org/021bhhq14 ASTI Corporation ASTI Corporation (Japan) ASTIę Ŗå¼ä¼šē¤¾'),
(123685, 'https://ror.org/01svaqq28', 'en', 1, 'https://ror.org/01svaqq28 Qatar National Research Fund Ų§Ł„ŲµŁ†ŲÆŁˆŁ‚ Ų§Ł„Ł‚Ų·Ų±ŁŠ Ł„Ų±Ų¹Ų§ŁŠŲ© البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(123686, 'https://ror.org/05nsqhr35', 'en', 1, 'https://ror.org/05nsqhr35 Institute of Medical Sciences, Mongolia Š¢.ŠØŠ°Š³Š“Š°Ń€ŃŅÆŃ€ŃŠ½Š³ŠøŠ¹Š½ Š½ŃŃ€ŃŠ¼Š¶ŠøŃ‚ Анагаах Ухааны Š„ŅÆŃ€ŃŃŠ»ŃŠ½'),
(123687, 'https://ror.org/04mqtta86', 'en', 0, 'https://ror.org/04mqtta86 University of Belgrade - Faculty of Physical Chemistry Univerzitet u Beogradu - Fakultet za fizičku hemiju Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ за Ń„ŠøŠ·ŠøŃ‡ŠŗŃƒ Ń…ŠµŠ¼ŠøŃ˜Ńƒ'),
(123688, 'https://ror.org/04nb5et46', 'no_lang_code', 1, 'https://ror.org/04nb5et46 Yonden Engineering Co., Inc. Yonden Engineering Co., Inc. (Japan) å››é›»ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(123689, 'https://ror.org/034fhfz59', 'no_lang_code', 1, 'https://ror.org/034fhfz59 ELM DATA Co., Ltd. ELM DATA Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ«ćƒ ćƒ‡ćƒ¼ć‚æ'),
(123690, 'https://ror.org/008ffzm51', 'no_lang_code', 1, 'https://ror.org/008ffzm51 HOWA Machinery, Ltd. HOWA Machinery, Ltd. (Japan) č±Šå’Œå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123691, 'https://ror.org/04bpk8q10', 'no_lang_code', 1, 'https://ror.org/04bpk8q10 Campas Create Co., Ltd. Campas Create Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒ£ćƒ³ćƒ‘ć‚¹ć‚ÆćƒŖć‚Øć‚¤ćƒˆ'),
(123692, 'https://ror.org/050zdnc69', 'en', 1, 'https://ror.org/050zdnc69 Ministry of Science, Technology and Innovation Ministério da Ciência, Tecnologia e Inovações'),
(123693, 'https://ror.org/02hdw9a23', 'en', 1, 'https://ror.org/02hdw9a23 Mauritius Oceanography Institute'),
(123694, 'https://ror.org/02pb0jm72', 'en', 1, 'https://ror.org/02pb0jm72 FORWIT (Austrian Council for Sciences, Technology, and Innovation) Rat für Forschung, Wissenschaft, Innovation und Technologieentwicklung'),
(123695, 'https://ror.org/01ew3xj77', 'en', 1, 'https://ror.org/01ew3xj77 Al-Ameen University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŁ†'),
(123696, 'https://ror.org/052d7k067', 'no_lang_code', 1, 'https://ror.org/052d7k067 Ryoyu Co., Ltd. Ryoyu Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾č±å‹ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(123697, 'https://ror.org/02qg2g155', 'no_lang_code', 1, 'https://ror.org/02qg2g155 Topre Corporation Topre Corporation (Japan) ę±ćƒ—ćƒ¬ę Ŗå¼ä¼šē¤¾'),
(123698, 'https://ror.org/02wj7sn85', 'no_lang_code', 1, 'https://ror.org/02wj7sn85 Informatek, Inc. Informatek, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ćƒ•ć‚©ćƒ¼ćƒžćƒ†ćƒƒć‚Æ'),
(123699, 'https://ror.org/04dzfqx38', 'en', 1, 'https://ror.org/04dzfqx38 Internet Society'),
(123700, 'https://ror.org/05pn55n95', 'no_lang_code', 1, 'https://ror.org/05pn55n95 Metal Technology Co. Ltd. Metal Technology Co. Ltd. (Japan) é‡‘å±žęŠ€ē ”ę Ŗå¼ä¼šē¤¾'),
(123701, 'https://ror.org/03ycwbt83', 'en', 1, 'https://ror.org/03ycwbt83 ZC Institute ZC Institute (United States of America)'),
(123702, 'https://ror.org/05qkva159', 'no_lang_code', 1, 'https://ror.org/05qkva159 Asahimatsu Foods Co., Ltd. Asahimatsu Foods Co., Ltd. (Japan) ę—­ę¾é£Ÿå“ę Ŗå¼ä¼šē¤¾'),
(123703, 'https://ror.org/04cpe8e53', 'en', 1, 'https://ror.org/04cpe8e53 Bengaluru City University ą®ŖąÆ†ą®™ąÆą®•ą®³ąÆ‚ą®°ąÆ ą®Øą®•ą®°ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(123704, 'https://ror.org/01mkfj686', 'no_lang_code', 1, 'https://ror.org/01mkfj686 Sumikasekisui FILM Co., Ltd. Sumikasekisui FILM Co., Ltd. (Japan) ä½åŒ–ē©ę°“ćƒ•ć‚£ćƒ«ćƒ ę Ŗå¼ä¼šē¤¾'),
(123705, 'https://ror.org/01r3fx537', 'no_lang_code', 1, 'https://ror.org/01r3fx537 Nosan Corporation Nosan Corporation (Japan) ę—„ęœ¬č¾²ē”£å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123706, 'https://ror.org/053z3h212', 'no_lang_code', 1, 'https://ror.org/053z3h212 Hirano Tecseed Co., Ltd. Hirano Tecseed Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ’ćƒ©ćƒŽćƒ†ć‚Æć‚·ćƒ¼ćƒ‰'),
(123707, 'https://ror.org/05njkjr15', 'en', 1, 'https://ror.org/05njkjr15 NIHR Manchester Biomedical Research Centre'),
(123708, 'https://ror.org/01x5ebc81', 'no_lang_code', 1, 'https://ror.org/01x5ebc81 Medixtec Japan Corporation Medixtec Japan Corporation (Japan) ćƒ”ćƒ‡ć‚£ć‚Øćƒƒć‚Æć‚¹ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(123709, 'https://ror.org/0157vkf66', 'en', 1, 'https://ror.org/0157vkf66 Rajiv Gandhi University of Health Sciences ą¤°ą¤¾ą¤œą„€ą¤µ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(123710, 'https://ror.org/026a6v179', 'no_lang_code', 1, 'https://ror.org/026a6v179 Sekisou Kanagata Co., Ltd. Sekisou Kanagata Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē©å±¤é‡‘åž‹'),
(123711, 'https://ror.org/03dxpdb95', 'no_lang_code', 1, 'https://ror.org/03dxpdb95 CK SAN-ETSU Metals Co., Ltd. CK SAN-ETSU Metals Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾CKć‚µćƒ³ć‚Øćƒ„'),
(123712, 'https://ror.org/03ydsvz42', 'no_lang_code', 1, 'https://ror.org/03ydsvz42 EIWA Chemical Ind.Co., Ltd. EIWA Chemical Ind.Co., Ltd. (Japan) ę°øå’ŒåŒ–ęˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123713, 'https://ror.org/006j5k559', 'no_lang_code', 1, 'https://ror.org/006j5k559 I.P. Co., Ltd. I.P. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ”ćƒ¼'),
(123714, 'https://ror.org/00h58dp71', 'no_lang_code', 1, 'https://ror.org/00h58dp71 GF Corporation GF Corporation (Japan) ę Ŗå¼ä¼šē¤¾GF'),
(123715, 'https://ror.org/00j9bjx58', 'en', 1, 'https://ror.org/00j9bjx58 Clinical Research Network Thames Valley and South Midlands'),
(123716, 'https://ror.org/016z05n60', 'no_lang_code', 1, 'https://ror.org/016z05n60 Nanosystem Solutions, Inc. Nanosystem Solutions, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŠćƒŽć‚·ć‚¹ćƒ†ćƒ ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗ'),
(123717, 'https://ror.org/05v430245', 'no_lang_code', 1, 'https://ror.org/05v430245 Sanix Incorporated Sanix Incorporated (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒ‹ćƒƒć‚Æć‚¹'),
(123718, 'https://ror.org/020b0y443', 'no_lang_code', 1, 'https://ror.org/020b0y443 JIMRO Co., Ltd. JIMRO Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾JIMRO'),
(123719, 'https://ror.org/007yvrr80', 'no_lang_code', 1, 'https://ror.org/007yvrr80 Earnet Co., Ltd. Earnet Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ćƒćƒƒćƒˆ'),
(123720, 'https://ror.org/01pwpy693', 'no_lang_code', 1, 'https://ror.org/01pwpy693 Kintetsu Group Holdings Co., Ltd. Kintetsu Group Holdings Co., Ltd. (Japan) čæ‘é‰„ć‚°ćƒ«ćƒ¼ćƒ—ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123721, 'https://ror.org/03pxqq881', 'no_lang_code', 1, 'https://ror.org/03pxqq881 F-TECH Inc. F-TECH Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ•ćƒ†ćƒƒć‚Æ'),
(123722, 'https://ror.org/05x9mrv93', 'fr', 1, 'https://ror.org/05x9mrv93 Laboratoire de Recherche en Audiovisuel - Savoirs, Praxis et Poïétiques en Art'),
(123723, 'https://ror.org/03mg7yx11', 'no_lang_code', 1, 'https://ror.org/03mg7yx11 Kyuki Corporation Kyuki Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒ„ćƒ¼ć‚­'),
(123724, 'https://ror.org/00ha7nt14', 'no_lang_code', 1, 'https://ror.org/00ha7nt14 Gisen Co., Ltd. Gisen Co., Ltd. (Japan) å²ć‚»ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123725, 'https://ror.org/03x94j517', 'en', 1, 'https://ror.org/03x94j517 Medical Research Council'),
(123726, 'https://ror.org/03dxr7380', 'no_lang_code', 1, 'https://ror.org/03dxr7380 MPO, Inc. MPO, Inc. (Japan) MPOę Ŗå¼ä¼šē¤¾'),
(123727, 'https://ror.org/04fdjex87', 'no_lang_code', 1, 'https://ror.org/04fdjex87 Zuken Incorporated Zuken Incorporated (Japan) ę Ŗå¼ä¼šē¤¾å›³ē ”'),
(123728, 'https://ror.org/001p3qb93', 'en', 1, 'https://ror.org/001p3qb93 Space Science and Engineering Center'),
(123729, 'https://ror.org/013harm88', 'no_lang_code', 1, 'https://ror.org/013harm88 Araya Inc. Araya Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ©ćƒ¤'),
(123730, 'https://ror.org/05986w230', 'no_lang_code', 1, 'https://ror.org/05986w230 Elab Experience Elab Experience (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ćƒ©ćƒœćƒ»ć‚Øć‚Æć‚¹ćƒšćƒŖć‚Øćƒ³ć‚¹'),
(123731, 'https://ror.org/05bqrry31', 'no_lang_code', 1, 'https://ror.org/05bqrry31 KOA Corporation KOA Corporation (Japan) KOAę Ŗå¼ä¼šē¤¾'),
(123732, 'https://ror.org/04epzrm74', 'no_lang_code', 1, 'https://ror.org/04epzrm74 KSP Inc KSP Inc (Japan) ę Ŗå¼ä¼šē¤¾ć‚±ć‚¤ć‚Øć‚¹ćƒ”ćƒ¼'),
(123733, 'https://ror.org/02fvj8330', 'en', 1, 'https://ror.org/02fvj8330 Toyohashi SOZO University č±Šę©‹å‰µé€ å¤§å­¦'),
(123734, 'https://ror.org/0510dfh05', 'no_lang_code', 1, 'https://ror.org/0510dfh05 Igene Therapeutics, Inc. Igene Therapeutics, Inc. (Japan) ę Ŗå¼ä¼šē¤¾iGENE'),
(123735, 'https://ror.org/02n78n484', 'fr', 1, 'https://ror.org/02n78n484 Institut du Droit de l''Espace, des Territoires, de la Culture et de la Communication Institute of Space, Territorial, Cultural and Communication Law'),
(123736, 'https://ror.org/00w5ay796', 'fr', 1, 'https://ror.org/00w5ay796 Laboratoire de Physique de l''ENS de Lyon'),
(123737, 'https://ror.org/034cpvv81', 'no_lang_code', 1, 'https://ror.org/034cpvv81 Hanamaruki Foods Inc. Hanamaruki Foods Inc. (Japan) ćƒćƒŠćƒžćƒ«ć‚­ę Ŗå¼ä¼šē¤¾'),
(123738, 'https://ror.org/02fae9q89', 'no_lang_code', 1, 'https://ror.org/02fae9q89 Gunei Chemical Industry Co., Ltd. Gunei Chemical Industry Co., Ltd. (Japan) ē¾¤ę „åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123739, 'https://ror.org/05pngbm68', 'no_lang_code', 1, 'https://ror.org/05pngbm68 Franz Ziel GmbH Franz Ziel GmbH (Germany)'),
(123740, 'https://ror.org/028f4pa23', 'no_lang_code', 1, 'https://ror.org/028f4pa23 Miraikikai Inc. Miraikikai Inc. (Japan) ę Ŗå¼ä¼šē¤¾ęœŖę„ę©Ÿę¢°'),
(123741, 'https://ror.org/04nqd6e08', 'no_lang_code', 1, 'https://ror.org/04nqd6e08 GODO Shusei Co., Ltd. GODO Shusei Co., Ltd. (Japan) åˆåŒé…’ē²¾ę Ŗå¼ä¼šē¤¾'),
(123742, 'https://ror.org/02v9san81', 'no_lang_code', 1, 'https://ror.org/02v9san81 Kamiuchi Electric Works, Ltd. Kamiuchi Electric Works, Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē„žå†…é›»ę©Ÿč£½ä½œę‰€'),
(123743, 'https://ror.org/00jzwb706', 'no_lang_code', 1, 'https://ror.org/00jzwb706 Tytemn Corporation Tytemn Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚¤ćƒ†ćƒ '),
(123744, 'https://ror.org/05jh2ar45', 'no_lang_code', 1, 'https://ror.org/05jh2ar45 Comsys Holdings Corp. Comsys Holdings Corp. (Japan) ć‚³ćƒ ć‚·ć‚¹ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123745, 'https://ror.org/05h1pdj54', 'en', 1, 'https://ror.org/05h1pdj54 National Academy of Educational Sciences of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń пеГагогічних наук України'),
(123746, 'https://ror.org/0156k9b49', 'no_lang_code', 1, 'https://ror.org/0156k9b49 NARA Machinery Co., Ltd. NARA Machinery Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å„ˆč‰Æę©Ÿę¢°č£½ä½œę‰€'),
(123747, 'https://ror.org/05neykr55', 'no_lang_code', 1, 'https://ror.org/05neykr55 Ryomo SYSTEMS Co., Ltd. Ryomo SYSTEMS Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾äø”ęÆ›ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(123748, 'https://ror.org/006c77f48', 'en', 1, 'https://ror.org/006c77f48 Institute of Applied Mathematics and Mechanics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГної математики і механіки ŠŠŠ України'),
(123749, 'https://ror.org/04f9qf507', 'no_lang_code', 1, 'https://ror.org/04f9qf507 Press Kogyo Co., Ltd. Press Kogyo Co., Ltd. (Japan) ćƒ—ćƒ¬ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123750, 'https://ror.org/0401d9213', 'no_lang_code', 1, 'https://ror.org/0401d9213 Fast Retailing Co., Ltd. Fast Retailing Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚”ćƒ¼ć‚¹ćƒˆćƒŖćƒ†ć‚¤ćƒŖćƒ³ć‚°'),
(123751, 'https://ror.org/01x9j4q94', 'no_lang_code', 1, 'https://ror.org/01x9j4q94 Torishima PUMP MFG. Co., Ltd. Torishima PUMP MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é…‰å³¶č£½ä½œę‰€'),
(123752, 'https://ror.org/03syzw657', 'no_lang_code', 1, 'https://ror.org/03syzw657 ACCESS Co., Ltd. ACCESS Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ACCESS'),
(123753, 'https://ror.org/03wct8w46', 'fr', 1, 'https://ror.org/03wct8w46 CERMICS Centre d’Enseignement et de Recherche en MathĆ©matIques et Calcul Scientifique'),
(123754, 'https://ror.org/0462tdj40', 'no_lang_code', 1, 'https://ror.org/0462tdj40 SKK Corporation SKK Corporation (Japan) ę Ŗå¼ä¼šē¤¾SKK'),
(123755, 'https://ror.org/025b19c37', 'no_lang_code', 1, 'https://ror.org/025b19c37 Nagara Science Co., Ltd. Nagara Science Co., Ltd. (Japan) é•·č‰Æć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123756, 'https://ror.org/00m4j9f09', 'no_lang_code', 1, 'https://ror.org/00m4j9f09 RCT SYSTEMS Japan Inc. RCT SYSTEMS Japan Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ćƒ«ćƒ»ć‚·ć‚¤ćƒ¼ćƒ†ć‚¤ćƒ¼ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(123757, 'https://ror.org/01xmjwg54', 'no_lang_code', 1, 'https://ror.org/01xmjwg54 Namitei Co., Ltd. Namitei Co., Ltd. (Japan) ćƒŠćƒŸćƒ†ć‚¤ę Ŗå¼ä¼šē¤¾'),
(123758, 'https://ror.org/03na6kx14', 'no_lang_code', 1, 'https://ror.org/03na6kx14 Molitec Steel Co., Ltd. Molitec Steel Co., Ltd. (Japan) ćƒ¢ćƒŖćƒ†ćƒƒć‚Æć‚¹ćƒćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(123759, 'https://ror.org/04t4rvp17', 'no_lang_code', 1, 'https://ror.org/04t4rvp17 Human Metabolome Technologies, Inc. Human Metabolome Technologies, Inc. (Japan) ćƒ’ćƒ„ćƒ¼ćƒžćƒ³ćƒ»ćƒ”ć‚æćƒœćƒ­ćƒ¼ćƒ ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(123760, 'https://ror.org/0108sf866', 'no_lang_code', 1, 'https://ror.org/0108sf866 KIWA Chemical Medicinal Co., Ltd. KIWA Chemical Medicinal Co., Ltd. (Japan) č²“å’ŒåŒ–å­¦č–¬å“ę Ŗå¼ä¼šē¤¾'),
(123761, 'https://ror.org/0391a8v61', 'en', 0, 'https://ror.org/0391a8v61 University of Belgrade - Faculty of Civil Engineering'),
(123762, 'https://ror.org/03knr0h73', 'fr', 1, 'https://ror.org/03knr0h73 Ɖcole pratique de service social'),
(123763, 'https://ror.org/04xfcyb15', 'en', 0, 'https://ror.org/04xfcyb15 Elmwood College'),
(123764, 'https://ror.org/00qtf5797', 'no_lang_code', 1, 'https://ror.org/00qtf5797 ATTO Corporation ATTO Corporation (Japan) ć‚¢ćƒˆćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123765, 'https://ror.org/04w9kkr77', 'tr', 1, 'https://ror.org/04w9kkr77 The Scientific and Technological Research Council of Türkiye Türkiye Bilimsel ve Teknolojik Araştırma Kurumu'),
(123766, 'https://ror.org/059tw8916', 'no_lang_code', 1, 'https://ror.org/059tw8916 SEGA Corporation SEGA Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ć‚¬'),
(123767, 'https://ror.org/04mjs1p14', 'no_lang_code', 1, 'https://ror.org/04mjs1p14 ROKI Co., Ltd. ROKI Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ROKI'),
(123768, 'https://ror.org/03vgv4780', 'no_lang_code', 1, 'https://ror.org/03vgv4780 Geotech Co., Ltd. Geotech Co., Ltd. (Japan) ć‚øć‚Ŗćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(123769, 'https://ror.org/012bdj611', 'no_lang_code', 1, 'https://ror.org/012bdj611 Image ONE Co., Ltd. Image ONE Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ”ćƒ¼ć‚øćƒÆćƒ³'),
(123770, 'https://ror.org/01qktm695', 'no_lang_code', 1, 'https://ror.org/01qktm695 Topcon Corporation Topcon Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ—ć‚³ćƒ³'),
(123771, 'https://ror.org/01vpgr469', 'en', 1, 'https://ror.org/01vpgr469 Kutir Post Graduate College'),
(123772, 'https://ror.org/01yry8d43', 'no_lang_code', 1, 'https://ror.org/01yry8d43 Marketing Excellence Marketing Excellence (Japan) ę Ŗå¼ä¼šē¤¾ćƒžćƒ¼ć‚±ćƒ†ć‚£ćƒ³ć‚°ćƒ»ć‚Øć‚Æć‚»ćƒ¬ćƒ³ć‚¹'),
(123773, 'https://ror.org/05yncf830', 'en', 1, 'https://ror.org/05yncf830 Olivia Newton-John Cancer Research Institute'),
(123774, 'https://ror.org/043ha9w67', 'no_lang_code', 1, 'https://ror.org/043ha9w67 EVEC Incorporated EVEC Incorporated (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ćƒ™ćƒƒć‚Æ'),
(123775, 'https://ror.org/01pszek67', 'fr', 1, 'https://ror.org/01pszek67 Equipe de Recherche sur les RationalitƩs Philosophiques et les Savoirs'),
(123776, 'https://ror.org/01h21zx76', 'no_lang_code', 1, 'https://ror.org/01h21zx76 MOON STAR Company MOON STAR Company (Japan) ę Ŗå¼ä¼šē¤¾ćƒ ćƒ¼ćƒ³ć‚¹ć‚æćƒ¼'),
(123777, 'https://ror.org/02awn8279', 'no_lang_code', 1, 'https://ror.org/02awn8279 Towser Corporation Towser Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚¦ć‚¶ćƒ¼'),
(123778, 'https://ror.org/03jqtjg90', 'no_lang_code', 1, 'https://ror.org/03jqtjg90 Advance SOFT Corporation Advance SOFT Corporation (Japan) ć‚¢ćƒ‰ćƒćƒ³ć‚¹ć‚½ćƒ•ćƒˆę Ŗå¼ä¼šē¤¾'),
(123779, 'https://ror.org/02zfv5e25', 'no_lang_code', 1, 'https://ror.org/02zfv5e25 Daioh Construction Co., Ltd. Daioh Construction Co., Ltd. (Japan) å¤§ę—ŗå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(123780, 'https://ror.org/04x0t0k84', 'no_lang_code', 1, 'https://ror.org/04x0t0k84 Nigk Corporation Nigk Corporation (Japan) ę—„ę²¹ęŠ€ē ”å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123781, 'https://ror.org/00r00h847', 'no_lang_code', 1, 'https://ror.org/00r00h847 SPC Electronics Corporation SPC Electronics Corporation (Japan) å³¶ē”°ē†åŒ–å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123782, 'https://ror.org/010p5d495', 'no_lang_code', 1, 'https://ror.org/010p5d495 Data Spirit Corporation Data Spirit Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‡ćƒ¼ć‚æć‚¹ćƒ”ćƒŖćƒƒćƒˆ'),
(123783, 'https://ror.org/0554aam39', 'en', 1, 'https://ror.org/0554aam39 Werfen Immunoassay Technology Center'),
(123784, 'https://ror.org/02qenvm24', 'no_lang_code', 1, 'https://ror.org/02qenvm24 Chan Zuckerberg Initiative Chan Zuckerberg Initiative (United States)'),
(123785, 'https://ror.org/05axcyv04', 'no_lang_code', 1, 'https://ror.org/05axcyv04 AOKI Corporation AOKI Corporation (Japan) ę Ŗå¼ä¼šē¤¾é’ęœØå»ŗčØ­'),
(123786, 'https://ror.org/034763q63', 'en', 1, 'https://ror.org/034763q63 Space Generation Advisory Council'),
(123787, 'https://ror.org/00z39za88', 'en', 1, 'https://ror.org/00z39za88 American Federation of Labor and Congress of Industrial Organizations'),
(123788, 'https://ror.org/00se8r296', 'en', 1, 'https://ror.org/00se8r296 STIK Bina Husada'),
(123789, 'https://ror.org/044zz2h48', 'no_lang_code', 1, 'https://ror.org/044zz2h48 BOSO OIL & FAT Co., Ltd. BOSO OIL & FAT Co., Ltd. (Japan) ćƒœćƒ¼ć‚½ćƒ¼ę²¹č„‚ę Ŗå¼ä¼šē¤¾'),
(123790, 'https://ror.org/012scv568', 'no_lang_code', 1, 'https://ror.org/012scv568 Samco Inc. Samco Inc. (Japan) ć‚µćƒ ć‚³ę Ŗå¼ä¼šē¤¾'),
(123791, 'https://ror.org/05n2zqd58', 'no_lang_code', 1, 'https://ror.org/05n2zqd58 Daiho Corporation Daiho Corporation (Japan) å¤§č±Šå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(123792, 'https://ror.org/04r6xdc46', 'id', 1, 'https://ror.org/04r6xdc46 Institut Sains dan Bisnis Atma Luhur'),
(123793, 'https://ror.org/04j4x7k19', 'fr', 1, 'https://ror.org/04j4x7k19 Laboratoire de gestion et des transitions organisationnelles Organisational Management and Transitions Laboratory'),
(123794, 'https://ror.org/03x0wt031', 'no_lang_code', 1, 'https://ror.org/03x0wt031 Honshu-Shikoku Bridge Expressway Company Limited Honshu-Shikoku Bridge Expressway Company Limited (Japan) ęœ¬å·žå››å›½é€£ēµ”é«˜é€Ÿé“č·Æę Ŗå¼ä¼šē¤¾'),
(123795, 'https://ror.org/00je4t102', 'en', 1, 'https://ror.org/00je4t102 Narodowa Akademia Nauk Ukrainy National Academy of Sciences of Ukraine ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Украины ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń наук України'),
(123796, 'https://ror.org/03j09x497', 'no_lang_code', 1, 'https://ror.org/03j09x497 Kanehisa Inc. Kanehisa Inc. (Japan) ę Ŗå¼ä¼šē¤¾é‡‘ä¹…'),
(123797, 'https://ror.org/03b19n572', 'no_lang_code', 1, 'https://ror.org/03b19n572 Interprotein Corporation Interprotein Corporation (Japan) ć‚¤ćƒ³ć‚æćƒ¼ćƒ—ćƒ­ćƒ†ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123798, 'https://ror.org/00nhnfw77', 'no_lang_code', 1, 'https://ror.org/00nhnfw77 Tajima Roofing Co., Ltd. Tajima Roofing Co., Ltd. (Japan) ē”°å³¶ćƒ«ćƒ¼ćƒ•ć‚£ćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(123799, 'https://ror.org/05y4nvh64', 'no_lang_code', 1, 'https://ror.org/05y4nvh64 Nishi Nippon Electric WIRE & Cable Co., Ltd. Nishi Nippon Electric WIRE & Cable Co., Ltd. (Japan) č„æę—„ęœ¬é›»ē·šę Ŗå¼ä¼šē¤¾'),
(123800, 'https://ror.org/00dp11h64', 'no_lang_code', 1, 'https://ror.org/00dp11h64 Rnai Inc. Rnai Inc. (Japan) ę Ŗå¼ä¼šē¤¾RNAi'),
(123801, 'https://ror.org/0218sj760', 'no_lang_code', 1, 'https://ror.org/0218sj760 JCS Inc. JCS Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ć‚·ćƒ¼ć‚Øć‚¹'),
(123802, 'https://ror.org/00epttw62', 'no_lang_code', 1, 'https://ror.org/00epttw62 Royal Electric Co., Ltd. Royal Electric Co., Ltd. (Japan) ćƒ­ćƒ¼ćƒ¤ćƒ«é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123803, 'https://ror.org/05372x060', 'en', 1, 'https://ror.org/05372x060 Institute of Pharmacy & Technology, Salipur'),
(123804, 'https://ror.org/00ejxsh71', 'no_lang_code', 1, 'https://ror.org/00ejxsh71 Sekonic Corporation Sekonic Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ć‚³ćƒ‹ćƒƒć‚Æ'),
(123805, 'https://ror.org/057585f03', 'no_lang_code', 1, 'https://ror.org/057585f03 Achilles Corporation Achilles Corporation (Japan) ć‚¢ć‚­ćƒ¬ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123806, 'https://ror.org/05dzgjm98', 'fr', 1, 'https://ror.org/05dzgjm98 UnitƩ propre NƩonatalogie des carnivores, reproduction et Ʃlevage'),
(123807, 'https://ror.org/03xm10m64', 'no_lang_code', 1, 'https://ror.org/03xm10m64 Sumita Optical Glass Inc. Sumita Optical Glass Inc. (Japan) ę Ŗå¼ä¼šē¤¾ä½ē”°å…‰å­¦ć‚¬ćƒ©ć‚¹'),
(123808, 'https://ror.org/03g60jd34', 'no_lang_code', 1, 'https://ror.org/03g60jd34 Nature Technology Inc. Nature Technology Inc. (Japan) ćƒć‚¤ćƒćƒ£ćƒ¼ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾');
INSERT INTO `rors` VALUES
(123809, 'https://ror.org/01makjx47', 'no_lang_code', 1, 'https://ror.org/01makjx47 Koshuha Foundry Co., Ltd. Koshuha Foundry Co., Ltd. (Japan) é«˜å‘Øę³¢é‹³é€ ę Ŗå¼ä¼šē¤¾'),
(123810, 'https://ror.org/04k6er770', 'no_lang_code', 1, 'https://ror.org/04k6er770 Fund Corporation For The Overseas Development Of Japan''s ICT And Postal Services Inc. Fund Corporation For The Overseas Development Of Japan''s ICT And Postal Services Inc. (Japan) Fund Corporation for the Overseas Development of Japan''s ICT and Postal Services Inc. (Japan) ę Ŗå¼ä¼šē¤¾ęµ·å¤–é€šäæ”ćƒ»ę”¾é€ćƒ»éƒµä¾æäŗ‹ę„­ę”Æę“ę©Ÿę§‹'),
(123811, 'https://ror.org/0437mtn79', 'no_lang_code', 1, 'https://ror.org/0437mtn79 Henkel Japan Ltd. Henkel Japan Ltd. (Japan) ćƒ˜ćƒ³ć‚±ćƒ«ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123812, 'https://ror.org/01zm2wm76', 'no_lang_code', 1, 'https://ror.org/01zm2wm76 Asahipen Corporation Asahipen Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚µćƒ’ćƒšćƒ³'),
(123813, 'https://ror.org/03m8phq64', 'no_lang_code', 1, 'https://ror.org/03m8phq64 KITO Corporation KITO Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒˆćƒ¼'),
(123814, 'https://ror.org/02d32h313', 'fr', 1, 'https://ror.org/02d32h313 Centre de Droit des Affaires Centre for Business Law'),
(123815, 'https://ror.org/055vbmb89', 'no_lang_code', 1, 'https://ror.org/055vbmb89 I Metal Technology Co., Ltd. I Metal Technology Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ”ć‚æćƒ«ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼'),
(123816, 'https://ror.org/02h37sc82', 'no_lang_code', 1, 'https://ror.org/02h37sc82 Sakurada Co., Ltd. Sakurada Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚µć‚Æćƒ©ćƒ€'),
(123817, 'https://ror.org/0489n3v88', 'fr', 1, 'https://ror.org/0489n3v88 Laboratoire de Psychologie de la Socialisation – DĆ©veloppement et Travail'),
(123818, 'https://ror.org/02bcv7p07', 'no_lang_code', 1, 'https://ror.org/02bcv7p07 TDK-Lambda Corporation TDK-Lambda Corporation (Japan) TDKćƒ©ćƒ ćƒ€ę Ŗå¼ä¼šē¤¾'),
(123819, 'https://ror.org/017nssj40', 'en', 0, 'https://ror.org/017nssj40 University of the French West Indies and Guiana'),
(123820, 'https://ror.org/04fdp8c66', 'no_lang_code', 1, 'https://ror.org/04fdp8c66 UEKI Corporation UEKI Corporation (Japan) ę Ŗå¼ä¼šē¤¾ę¤ęœØēµ„'),
(123821, 'https://ror.org/0470qx761', 'no_lang_code', 1, 'https://ror.org/0470qx761 Intage Inc. Intage Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ćƒ†ćƒ¼ć‚ø'),
(123822, 'https://ror.org/01cpx3z71', 'no_lang_code', 1, 'https://ror.org/01cpx3z71 Accelerator Engineering Corporation Accelerator Engineering Corporation (Japan) åŠ é€Ÿå™Øć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(123823, 'https://ror.org/05m8dr349', 'en', 1, 'https://ror.org/05m8dr349 NIHR Cambridge Biomedical Research Centre'),
(123824, 'https://ror.org/00v0g7y41', 'no_lang_code', 1, 'https://ror.org/00v0g7y41 KAMO Seiko Corp. KAMO Seiko Corp. (Japan) åŠ čŒ‚ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(123825, 'https://ror.org/0413fm378', 'no_lang_code', 1, 'https://ror.org/0413fm378 Tohken Co., Ltd. Tohken Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę±ē ”'),
(123826, 'https://ror.org/02y2d0x07', 'no_lang_code', 1, 'https://ror.org/02y2d0x07 KI Holdings Co., Ltd. KI Holdings Co., Ltd. (Japan) KIćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123827, 'https://ror.org/0142y5z42', 'no_lang_code', 1, 'https://ror.org/0142y5z42 Toclas Corporation Toclas Corporation (Japan) ćƒˆć‚Æćƒ©ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123828, 'https://ror.org/00w68kh45', 'no_lang_code', 1, 'https://ror.org/00w68kh45 Mediastyle, Inc. Mediastyle, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ”ćƒ‡ć‚£ć‚¢ć‚¹ć‚æć‚¤ćƒ«'),
(123829, 'https://ror.org/00q64jg09', 'no_lang_code', 1, 'https://ror.org/00q64jg09 PHC Corporation PHC Corporation (Japan) PHCę Ŗå¼ä¼šē¤¾'),
(123830, 'https://ror.org/014mw9271', 'en', 1, 'https://ror.org/014mw9271 Candel Therapeutics Candel Therapeutics (United States)'),
(123831, 'https://ror.org/04jsk0b74', 'fr', 1, 'https://ror.org/04jsk0b74 Institut des Nanotechnologies de Lyon Lyon Institute of Nanotechnology'),
(123832, 'https://ror.org/01s183355', 'no_lang_code', 1, 'https://ror.org/01s183355 FU''S LAB Co., Ltd. FU''S LAB Co., Ltd. (Japan) ęœ‰é™ä¼šē¤¾ćƒ•ć‚¦ć‚ŗćƒ©ćƒœ'),
(123833, 'https://ror.org/03pdemc78', 'en', 1, 'https://ror.org/03pdemc78 The Korean Association of International Studies ķ•œźµ­źµ­ģ œģ •ģ¹˜ķ•™ķšŒ'),
(123834, 'https://ror.org/03k074y09', 'fr', 1, 'https://ror.org/03k074y09 Institut de Technico-Ɖconomie des systĆØmes ƉnergĆ©tiques Institute for Techno-Economics of Energy Systems'),
(123835, 'https://ror.org/03be12t48', 'en', 1, 'https://ror.org/03be12t48 Aniq va ijtimoiy fanlar universiteti University of Exact and Social Sciences'),
(123836, 'https://ror.org/0108va828', 'no_lang_code', 1, 'https://ror.org/0108va828 Jamco Corporation Jamco Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ£ćƒ ć‚³'),
(123837, 'https://ror.org/011dkvt84', 'no_lang_code', 1, 'https://ror.org/011dkvt84 IN-Silico Sciences, Inc. IN-Silico Sciences, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ć‚·ćƒŖć‚³ć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(123838, 'https://ror.org/03sqhwp56', 'no_lang_code', 1, 'https://ror.org/03sqhwp56 SSP Co., Ltd. SSP Co., Ltd. (Japan) ć‚Øć‚¹ć‚Øć‚¹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(123839, 'https://ror.org/02jf1b930', 'no_lang_code', 1, 'https://ror.org/02jf1b930 Internationalpolysaccharide Engineering Inc. Internationalpolysaccharide Engineering Inc. (Japan) ęœ‰é™ä¼šē¤¾IPE'),
(123840, 'https://ror.org/038bmqx75', 'en', 1, 'https://ror.org/038bmqx75 Sur180 Therapeutics Sur180 Therapeutics (United States) Sur180 Therapeutics, Inc.'),
(123841, 'https://ror.org/04sn77e25', 'fr', 1, 'https://ror.org/04sn77e25 IngƩnierie, CaractƩrisation et Services'),
(123842, 'https://ror.org/01azjk350', 'no_lang_code', 1, 'https://ror.org/01azjk350 Mercian Corporation Mercian Corporation (Japan) ćƒ”ćƒ«ć‚·ćƒ£ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123843, 'https://ror.org/055nxh856', 'no_lang_code', 1, 'https://ror.org/055nxh856 Kainos Laboratories, Inc. Kainos Laboratories, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ć‚¤ćƒŽć‚¹'),
(123844, 'https://ror.org/044zqqy65', 'en', 1, 'https://ror.org/044zqqy65 National Park Service Servicio de Parques Nacionales'),
(123845, 'https://ror.org/04p9f8409', 'es', 1, 'https://ror.org/04p9f8409 Universidad PolitƩcnica de Atlautla'),
(123846, 'https://ror.org/02g658a90', 'no_lang_code', 1, 'https://ror.org/02g658a90 Photocatalytic Materials Incorporated Photocatalytic Materials Incorporated (Japan) ę Ŗå¼ä¼šē¤¾å…‰č§¦åŖ’ē ”ē©¶ę‰€'),
(123847, 'https://ror.org/05ryy9n88', 'en', 0, 'https://ror.org/05ryy9n88 University of Belgrade – Faculty of Security Studies Univerzitet u Beogradu – Fakultet bezbednosti Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ безбеГности'),
(123848, 'https://ror.org/003575p89', 'no_lang_code', 1, 'https://ror.org/003575p89 Tofuku Flour Mills Co., Ltd. Tofuku Flour Mills Co., Ltd. (Japan) ę±ē¦č£½ē²‰ę Ŗå¼ä¼šē¤¾'),
(123849, 'https://ror.org/059zgr430', 'no_lang_code', 1, 'https://ror.org/059zgr430 Celagix Res. Ltd. (Japan) Celagix Res. Ltd..ltd. ęœ‰é™ä¼šē¤¾ć‚»ćƒ©ć‚øćƒƒć‚Æć‚¹'),
(123850, 'https://ror.org/05mwvsw48', 'id', 1, 'https://ror.org/05mwvsw48 Merchant Marine Polytechnic of Sulawesi Utara Politeknik Pelayaran Sulawesi Utara'),
(123851, 'https://ror.org/028886b45', 'no_lang_code', 1, 'https://ror.org/028886b45 Nabeya BI-TECH Kaisha Nabeya BI-TECH Kaisha (Japan) é‹å±‹ćƒć‚¤ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(123852, 'https://ror.org/03481v826', 'en', 1, 'https://ror.org/03481v826 The Forensic Panel The Forensic Panel (United States)'),
(123853, 'https://ror.org/02z40e461', 'no_lang_code', 1, 'https://ror.org/02z40e461 KYEC Japan K.K. KYEC Japan K.K. (Japan) KYECć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123854, 'https://ror.org/030hj3061', 'fr', 1, 'https://ror.org/030hj3061 IMT Atlantique'),
(123855, 'https://ror.org/03sh4ty66', 'no_lang_code', 1, 'https://ror.org/03sh4ty66 NCS&A Co., Ltd. NCS&A Co., Ltd. (Japan) NCS&Aę Ŗå¼ä¼šē¤¾'),
(123856, 'https://ror.org/03yxxb529', 'no_lang_code', 1, 'https://ror.org/03yxxb529 Kanae Co., Ltd. Kanae Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ćƒŠć‚Ø'),
(123857, 'https://ror.org/01fjqsd73', 'no_lang_code', 1, 'https://ror.org/01fjqsd73 Sakamoto Yakuhin Kogyo Co., Ltd. Sakamoto Yakuhin Kogyo Co., Ltd. (Japan) é˜Ŗęœ¬č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123858, 'https://ror.org/024t8ay66', 'no_lang_code', 1, 'https://ror.org/024t8ay66 Yahoo Japan Corp. Yahoo Japan Corp. (Japan) ćƒ¤ćƒ•ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123859, 'https://ror.org/00hkrnb22', 'no_lang_code', 1, 'https://ror.org/00hkrnb22 Synthesis Corporation Synthesis Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ćƒ³ć‚»ć‚·ć‚¹'),
(123860, 'https://ror.org/005zah758', 'en', 1, 'https://ror.org/005zah758 Southern Nazarene University'),
(123861, 'https://ror.org/022scmy89', 'fr', 1, 'https://ror.org/022scmy89 Sciences Po Toulouse'),
(123862, 'https://ror.org/05f5ra324', 'no_lang_code', 1, 'https://ror.org/05f5ra324 Planning Institute For Urban Environment Co., Ltd. Planning Institute For Urban Environment Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾éƒ½åø‚ē’°å¢ƒčØˆē”»'),
(123863, 'https://ror.org/046yd4405', 'en', 1, 'https://ror.org/046yd4405 SFPE Foundation'),
(123864, 'https://ror.org/004ccae56', 'no_lang_code', 1, 'https://ror.org/004ccae56 Fujimic, Inc. Fujimic, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚øćƒŸćƒƒć‚Æ'),
(123865, 'https://ror.org/02jr4mx76', 'no_lang_code', 1, 'https://ror.org/02jr4mx76 Cardio, Inc. Cardio, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ćƒ«ćƒ‡ć‚£ć‚Ŗ'),
(123866, 'https://ror.org/00zx7zt22', 'fr', 1, 'https://ror.org/00zx7zt22 Centre Toulousain d''Histoire du Droit et des IdƩes Politiques Toulouse Centre for the History of Law and Political Ideas'),
(123867, 'https://ror.org/01st54446', 'no_lang_code', 1, 'https://ror.org/01st54446 PLUS Electric Co., Ltd. PLUS Electric Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ©ć‚¹é›»ę©Ÿ'),
(123868, 'https://ror.org/04t908e09', 'en', 1, 'https://ror.org/04t908e09 Olivia Newton-John Cancer Wellness & Research Centre'),
(123869, 'https://ror.org/04avssz95', 'no_lang_code', 1, 'https://ror.org/04avssz95 Nireco Corporation Nireco Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ¬ć‚³'),
(123870, 'https://ror.org/05wvz6b10', 'no_lang_code', 1, 'https://ror.org/05wvz6b10 Ikegami Tsushinki Co., Ltd. Ikegami Tsushinki Co., Ltd. (Japan) ę± äøŠé€šäæ”ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123871, 'https://ror.org/03q6q6w05', 'no_lang_code', 1, 'https://ror.org/03q6q6w05 Nittoku Engineering Co., Ltd. Nittoku Engineering Co., Ltd. (Japan) ę—„ē‰¹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(123872, 'https://ror.org/04txyc737', 'en', 1, 'https://ror.org/04txyc737 Novo Nordisk Fonden Novo Nordisk Foundation'),
(123873, 'https://ror.org/02506n136', 'no_lang_code', 1, 'https://ror.org/02506n136 Tsubakimoto Chain Co., Ltd. Tsubakimoto Chain Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę¤æęœ¬ćƒć‚Øć‚¤ćƒ³'),
(123874, 'https://ror.org/03xrr9m55', 'no_lang_code', 1, 'https://ror.org/03xrr9m55 HOAN Kogyo Co., Ltd. HOAN Kogyo Co., Ltd. (Japan) äæå®‰å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123875, 'https://ror.org/016he0489', 'no_lang_code', 1, 'https://ror.org/016he0489 Pyramid Co., Ltd. Pyramid Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ”ćƒ©ćƒŸćƒƒćƒ‰'),
(123876, 'https://ror.org/013x6k275', 'no_lang_code', 1, 'https://ror.org/013x6k275 Shiraimatsu Shinyaku Co., Ltd. Shiraimatsu Shinyaku Co., Ltd. (Japan) ē™½äŗ•ę¾ę–°č–¬ę Ŗå¼ä¼šē¤¾'),
(123877, 'https://ror.org/040ar0d33', 'no_lang_code', 1, 'https://ror.org/040ar0d33 Nagatanien Co., Ltd. Nagatanien Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę°øč°·åœ’'),
(123878, 'https://ror.org/02rma5c77', 'en', 0, 'https://ror.org/02rma5c77 Reims Management School'),
(123879, 'https://ror.org/005bx8e41', 'no_lang_code', 1, 'https://ror.org/005bx8e41 KOGI Corporation KOGI Corporation (Japan) č™¹ęŠ€ę Ŗå¼ä¼šē¤¾'),
(123880, 'https://ror.org/0596zec96', 'en', 1, 'https://ror.org/0596zec96 Geochemical Society'),
(123881, 'https://ror.org/01ahyrz84', 'fr', 1, 'https://ror.org/01ahyrz84 UniversitƩ de Toulouse'),
(123882, 'https://ror.org/02d6w1q58', 'no_lang_code', 1, 'https://ror.org/02d6w1q58 Spandnix Inc. Spandnix Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ćƒ‘ćƒ³ćƒ‰ćƒ‹ć‚Æć‚¹'),
(123883, 'https://ror.org/03hka2964', 'no_lang_code', 1, 'https://ror.org/03hka2964 WYCKOFF Co., Ltd. WYCKOFF Co., Ltd. (Japan) ćƒÆć‚¤ć‚³ćƒ•ē§‘å­¦ę Ŗå¼ä¼šē¤¾'),
(123884, 'https://ror.org/03gna4510', 'en', 1, 'https://ror.org/03gna4510 NIHR Bristol Cardiovascular Biomedical Research Unit'),
(123885, 'https://ror.org/055t4vq73', 'no_lang_code', 1, 'https://ror.org/055t4vq73 LIXIL Corporation LIXIL Corporation (Japan) ę Ŗå¼ä¼šē¤¾LIXIL'),
(123886, 'https://ror.org/01cwqze88', 'en', 1, 'https://ror.org/01cwqze88 National Institutes of Health'),
(123887, 'https://ror.org/04d3rpm04', 'no_lang_code', 1, 'https://ror.org/04d3rpm04 SK Kaken Co., Ltd. SK Kaken Co., Ltd. (Japan) ć‚Øć‚¹ć‚±ćƒ¼åŒ–ē ”ę Ŗå¼ä¼šē¤¾'),
(123888, 'https://ror.org/00dn6fj84', 'fr', 0, 'https://ror.org/00dn6fj84 Institut polytechnique LaSalle Beauvais'),
(123889, 'https://ror.org/04zmssz18', 'fr', 1, 'https://ror.org/04zmssz18 Ɖcole Normale SupĆ©rieure de Lyon'),
(123890, 'https://ror.org/0191b3351', 'en', 1, 'https://ror.org/0191b3351 VID Specialized University VID Vitenskapelige HĆøgskole'),
(123891, 'https://ror.org/045hg4108', 'en', 1, 'https://ror.org/045hg4108 Academia da ForƧa AƩrea Portuguese Air Force Academy'),
(123892, 'https://ror.org/00zd3ey68', 'no_lang_code', 1, 'https://ror.org/00zd3ey68 Namics Corporation Namics Corporation (Japan) ćƒŠćƒŸćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(123893, 'https://ror.org/039sx3489', 'no_lang_code', 1, 'https://ror.org/039sx3489 Ebrand21 Corporation Ebrand21 Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ćƒ»ćƒ–ćƒ©ćƒ³ćƒ‰21'),
(123894, 'https://ror.org/04gab1921', 'no_lang_code', 1, 'https://ror.org/04gab1921 Nichirin Co., Ltd. Nichirin Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒćƒŖćƒ³'),
(123895, 'https://ror.org/04awxm753', 'no_lang_code', 1, 'https://ror.org/04awxm753 Ichibiki Co., Ltd. Ichibiki Co., Ltd. (Japan) ć‚¤ćƒćƒ“ć‚­ę Ŗå¼ä¼šē¤¾'),
(123896, 'https://ror.org/05j1rwp06', 'no_lang_code', 1, 'https://ror.org/05j1rwp06 Ikeuchi Seiko Co., Ltd. Ikeuchi Seiko Co., Ltd. (Japan) ę± å†…ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(123897, 'https://ror.org/04v963p57', 'no_lang_code', 1, 'https://ror.org/04v963p57 Koyosha Inc. Koyosha Inc. (Japan) ę Ŗå¼ä¼šē¤¾å…‰é™½ē¤¾'),
(123898, 'https://ror.org/04jcd9t17', 'no_lang_code', 1, 'https://ror.org/04jcd9t17 Sanritz Corporation Sanritz Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ćƒŖćƒƒćƒ„'),
(123899, 'https://ror.org/00ffthz36', 'fr', 1, 'https://ror.org/00ffthz36 Fédération de recherche André-Marie Ampère'),
(123900, 'https://ror.org/03ej5kc09', 'no_lang_code', 1, 'https://ror.org/03ej5kc09 Hikawa Mining Co., Ltd. Hikawa Mining Co., Ltd. (Japan) ę–å·ē¤¦ę„­ę Ŗå¼ä¼šē¤¾'),
(123901, 'https://ror.org/05cgwcr60', 'en', 1, 'https://ror.org/05cgwcr60 Don Bosco Institute of Technology ą²”ą²¾ą²Øą³ ą²¬ą²¾ą²øą³ą²•ą³‹ ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²«ą³ ą²Ÿą³†ą²•ą³ą²Øą²¾ą²²ą²œą²æ'),
(123902, 'https://ror.org/0383t1q25', 'no_lang_code', 1, 'https://ror.org/0383t1q25 Kurodaruma Kurodaruma (Japan) ć‚Æćƒ­ćƒ€ćƒ«ćƒžę Ŗå¼ä¼šē¤¾'),
(123903, 'https://ror.org/03tr1sj74', 'no_lang_code', 1, 'https://ror.org/03tr1sj74 DOME Co., Ltd. DOME Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē«„å¤¢'),
(123904, 'https://ror.org/05bh7vg81', 'id', 1, 'https://ror.org/05bh7vg81 Institut Kesehatan Helvetia Pekanbaru'),
(123905, 'https://ror.org/057k2pe05', 'en', 1, 'https://ror.org/057k2pe05 Malawi School of Government'),
(123906, 'https://ror.org/048v5kx73', 'no_lang_code', 1, 'https://ror.org/048v5kx73 Aikei-Denshi Corporation Aikei-Denshi Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ»ć‚±ć‚¤é›»å­'),
(123907, 'https://ror.org/0495zk756', 'fr', 1, 'https://ror.org/0495zk756 Conseil DĆ©partemental de l’HĆ©rault Departmental Council of HĆ©rault'),
(123908, 'https://ror.org/00vn93v83', 'no_lang_code', 1, 'https://ror.org/00vn93v83 Todoroki Industry Co., Ltd. Todoroki Industry Co., Ltd. (Japan) č½Ÿē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(123909, 'https://ror.org/035f5f914', 'en', 1, 'https://ror.org/035f5f914 NIHR Leeds Musculoskeletal Biomedical Research Unit'),
(123910, 'https://ror.org/05j4h8q18', 'no_lang_code', 1, 'https://ror.org/05j4h8q18 HAW International Inc. HAW International Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚¦ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«'),
(123911, 'https://ror.org/021h9nj04', 'no_lang_code', 1, 'https://ror.org/021h9nj04 Takada Corporation Takada Corporation (Japan) ę Ŗå¼ä¼šē¤¾é«˜ē”°å·„ę„­ę‰€'),
(123912, 'https://ror.org/00fzsqj40', 'no_lang_code', 1, 'https://ror.org/00fzsqj40 Jemix Co., Ltd. Jemix Co., Ltd. (Japan) ć‚øć‚§ćƒŸćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(123913, 'https://ror.org/04edp5v36', 'no_lang_code', 1, 'https://ror.org/04edp5v36 Yusoki Kogyo K. K. Yusoki Kogyo K. K. (Japan) č¼øé€ę©Ÿå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123914, 'https://ror.org/03hprtb13', 'no_lang_code', 1, 'https://ror.org/03hprtb13 Systemneeds Inc. Systemneeds Inc. (Japan) ć‚·ć‚¹ćƒ†ćƒ ćƒ‹ćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(123915, 'https://ror.org/05p138d45', 'no_lang_code', 1, 'https://ror.org/05p138d45 Morio Denki Co., Ltd. Morio Denki Co., Ltd. (Japan) ę£®å°¾é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(123916, 'https://ror.org/01w15np60', 'no_lang_code', 1, 'https://ror.org/01w15np60 Sansha Electric MFG., Co., Ltd. Sansha Electric MFG., Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾äø‰ē¤¾é›»ę©Ÿč£½ä½œę‰€'),
(123917, 'https://ror.org/05m464m23', 'no_lang_code', 1, 'https://ror.org/05m464m23 Siemens Healthcare K.K. Siemens Healthcare K.K. (Japan) ć‚·ćƒ¼ćƒ”ćƒ³ć‚¹ćƒ˜ćƒ«ć‚¹ć‚±ć‚¢ę Ŗå¼ä¼šē¤¾'),
(123918, 'https://ror.org/01awk9t35', 'no_lang_code', 1, 'https://ror.org/01awk9t35 Shizuki Electric Company Inc. Shizuki Electric Company Inc. (Japan) ę Ŗå¼ä¼šē¤¾ęŒ‡ęœˆé›»ę©Ÿč£½ä½œę‰€'),
(123919, 'https://ror.org/01gpfg142', 'no_lang_code', 1, 'https://ror.org/01gpfg142 Xenesys Co., Ltd. Xenesys Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¼ćƒć‚·ć‚¹'),
(123920, 'https://ror.org/02retg991', 'en', 1, 'https://ror.org/02retg991 University of Jammu ą¤œą¤®ą„ą¤®ą„‚ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(123921, 'https://ror.org/04gsg8b22', 'en', 1, 'https://ror.org/04gsg8b22 Chromosome Engineering Research Center'),
(123922, 'https://ror.org/036tx8b84', 'es', 1, 'https://ror.org/036tx8b84 Environmental Management of Navarre Nafarroako Ingurumen Kudeaketa Nurseries and Reforestation of Navarre Orekan - Gestión Ambiental de Navarra'),
(123923, 'https://ror.org/00dhfyy38', 'no_lang_code', 1, 'https://ror.org/00dhfyy38 Jastec Co., Ltd. Jastec Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ£ć‚¹ćƒ†ćƒƒć‚Æ'),
(123924, 'https://ror.org/03s210c61', 'en', 1, 'https://ror.org/03s210c61 Pain BC'),
(123925, 'https://ror.org/037xpcd02', 'no_lang_code', 1, 'https://ror.org/037xpcd02 Pasco Corporation Pasco Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‘ć‚¹ć‚³'),
(123926, 'https://ror.org/03tr3xg51', 'no_lang_code', 1, 'https://ror.org/03tr3xg51 Shikishima Baking Co., Ltd. Shikishima Baking Co., Ltd. (Japan) ę•·å³¶č£½ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(123927, 'https://ror.org/01ckp9e33', 'no_lang_code', 1, 'https://ror.org/01ckp9e33 Matsunami Glass IND., Ltd. Matsunami Glass IND., Ltd. (Japan) ę¾ęµŖē”å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123928, 'https://ror.org/046yr3w90', 'no_lang_code', 1, 'https://ror.org/046yr3w90 Seisa Gear,ltd. Seisa Gear,ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ć‚¤ć‚µ'),
(123929, 'https://ror.org/00eva3s97', 'no_lang_code', 1, 'https://ror.org/00eva3s97 Katsura Co., Ltd. Katsura Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę”‚ē²¾ę©Ÿč£½ä½œę‰€'),
(123930, 'https://ror.org/02am2vc95', 'no_lang_code', 1, 'https://ror.org/02am2vc95 APIC Yamada Corporation APIC Yamada Corporation (Japan) ć‚¢ćƒ”ćƒƒć‚Æćƒ¤ćƒžćƒ€ę Ŗå¼ä¼šē¤¾'),
(123931, 'https://ror.org/056kg3g58', 'no_lang_code', 1, 'https://ror.org/056kg3g58 Tokin Corporation Tokin Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ć‚­ćƒ³'),
(123932, 'https://ror.org/01y5bqd73', 'es', 1, 'https://ror.org/01y5bqd73 Instituto Tecnológico de Rocas Ornamentales y Materiales de Construcción (INTROMAC) Technological Institute of Ornamental Rocks and Construction Materials'),
(123933, 'https://ror.org/032t6hj87', 'no_lang_code', 1, 'https://ror.org/032t6hj87 Tsuji Heavy Industries Co., Ltd. Tsuji Heavy Industries Co., Ltd. (Japan) č¾»ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(123934, 'https://ror.org/05f950310', 'nl', 1, 'https://ror.org/05f950310 KU Leuven Katholieke Universiteit Leuven'),
(123935, 'https://ror.org/03xgqeb11', 'no_lang_code', 1, 'https://ror.org/03xgqeb11 Aeon Co., Ltd. Aeon Co., Ltd. (Japan) ć‚¤ć‚Ŗćƒ³ę Ŗå¼ä¼šē¤¾'),
(123936, 'https://ror.org/03t981z07', 'no_lang_code', 1, 'https://ror.org/03t981z07 Globe Environmental Protector Co., Ltd. Globe Environmental Protector Co., Ltd. (Japan) ć‚°ćƒ­ćƒ¼ćƒ–ć‚¤ćƒ¼ćƒ”ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123937, 'https://ror.org/03cxqk184', 'no_lang_code', 1, 'https://ror.org/03cxqk184 Organization To Support Revitalization Of Business After The Great East Japan Earthquake Co., Ltd. Organization To Support Revitalization Of Business After The Great East Japan Earthquake Co., Ltd. (Japan) Organization to Support Revitalization of Business after the Great East Japan Earthquake Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę±ę—„ęœ¬å¤§éœ‡ē½äŗ‹ę„­č€…å†ē”Ÿę”Æę“ę©Ÿę§‹'),
(123938, 'https://ror.org/00e3m0q94', 'en', 1, 'https://ror.org/00e3m0q94 BridgeBio Oncology Therapeutics BridgeBio Oncology Therapeutics (United States) BridgeBio Oncology Therapeutics, Inc.'),
(123939, 'https://ror.org/01hdgn839', 'fr', 0, 'https://ror.org/01hdgn839 UniversitƩ Nancy-II'),
(123940, 'https://ror.org/04fd19h59', 'no_lang_code', 1, 'https://ror.org/04fd19h59 Shirai Electronics Industrial Co., Ltd. Shirai Electronics Industrial Co., Ltd. (Japan) ć‚·ćƒ©ć‚¤é›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123941, 'https://ror.org/02baym171', 'no_lang_code', 1, 'https://ror.org/02baym171 Leader Electronics Corp. Leader Electronics Corp. (Japan) ćƒŖćƒ¼ćƒ€ćƒ¼é›»å­ę Ŗå¼ä¼šē¤¾'),
(123942, 'https://ror.org/00x23k769', 'no_lang_code', 1, 'https://ror.org/00x23k769 Geneworld Ltd. Geneworld Ltd. (Japan) ć‚øćƒ¼ćƒ³ćƒÆćƒ¼ćƒ«ćƒ‰ę Ŗå¼ä¼šē¤¾'),
(123943, 'https://ror.org/03dbpvz47', 'no_lang_code', 1, 'https://ror.org/03dbpvz47 JSK Co., Ltd. JSK Co., Ltd. (Japan) ę—„ęœ¬åˆ¶ē¦¦ę©Ÿå™Øę Ŗå¼ä¼šē¤¾'),
(123944, 'https://ror.org/05t6bxt93', 'no_lang_code', 1, 'https://ror.org/05t6bxt93 Kawaken FINE Chemicals Co., Ltd. Kawaken FINE Chemicals Co., Ltd. (Japan) å·ē ”ćƒ•ć‚”ć‚¤ćƒ³ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(123945, 'https://ror.org/03gy83155', 'no_lang_code', 1, 'https://ror.org/03gy83155 Sugai Chemical Industry Co., Ltd. Sugai Chemical Industry Co., Ltd. (Japan) ć‚¹ć‚¬ć‚¤åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123946, 'https://ror.org/05qmsg058', 'no_lang_code', 1, 'https://ror.org/05qmsg058 Nachi-Fujikoshi Corp. Nachi-Fujikoshi Corp. (Japan) ę Ŗå¼ä¼šē¤¾äøäŗŒč¶Š'),
(123947, 'https://ror.org/04bs9ps54', 'no_lang_code', 1, 'https://ror.org/04bs9ps54 Rinnai Corporation Rinnai Corporation (Japan) ćƒŖćƒ³ćƒŠć‚¤ę Ŗå¼ä¼šē¤¾'),
(123948, 'https://ror.org/04vr4bz08', 'no_lang_code', 1, 'https://ror.org/04vr4bz08 Tanoi MFG. Co., Ltd. Tanoi MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē”°é‡Žäŗ•č£½ä½œę‰€'),
(123949, 'https://ror.org/01bstca33', 'no_lang_code', 1, 'https://ror.org/01bstca33 Musashi Seimitsu Industry Co., Ltd. Musashi Seimitsu Industry Co., Ltd. (Japan) ę­¦č”µē²¾åÆ†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123950, 'https://ror.org/040m46366', 'en', 1, 'https://ror.org/040m46366 COER University'),
(123951, 'https://ror.org/0195te088', 'no_lang_code', 1, 'https://ror.org/0195te088 Chukyo Yushi Co., Ltd. Chukyo Yushi Co., Ltd. (Japan) äø­äŗ¬ę²¹č„‚ę Ŗå¼ä¼šē¤¾'),
(123952, 'https://ror.org/05b2z2644', 'no_lang_code', 1, 'https://ror.org/05b2z2644 J-Pharma Co., Ltd. J-Pharma Co., Ltd. (Japan) ć‚øć‚§ć‚¤ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(123953, 'https://ror.org/04y2hqy70', 'no_lang_code', 1, 'https://ror.org/04y2hqy70 Amine Pharma Research Institute Amine Pharma Research Institute (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒŸćƒ³ćƒ•ć‚”ćƒ¼ćƒžē ”ē©¶ę‰€'),
(123954, 'https://ror.org/01vv3xd95', 'no_lang_code', 1, 'https://ror.org/01vv3xd95 Crestec Corporation Crestec Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ć‚¹ćƒ†ćƒƒć‚Æ'),
(123955, 'https://ror.org/02dm5tx85', 'no_lang_code', 1, 'https://ror.org/02dm5tx85 Akita ZINC Co., Ltd. Akita ZINC Co., Ltd. (Japan) ē§‹ē”°č£½éŒ¬ę Ŗå¼ä¼šē¤¾'),
(123956, 'https://ror.org/0472cxd90', 'en', 1, 'https://ror.org/0472cxd90 Conseil europƩen de la recherche European Research Council EuropƤischer Forschungsrat'),
(123957, 'https://ror.org/009w6sr41', 'no_lang_code', 1, 'https://ror.org/009w6sr41 Prima MEAT Packers, Ltd. Prima MEAT Packers, Ltd. (Japan) ćƒ—ćƒŖćƒžćƒćƒ ę Ŗå¼ä¼šē¤¾'),
(123958, 'https://ror.org/01y6swy44', 'en', 1, 'https://ror.org/01y6swy44 Prussian Cultural Heritage Foundation Stiftung Preußischer Kulturbesitz'),
(123959, 'https://ror.org/035649778', 'no_lang_code', 1, 'https://ror.org/035649778 Nipro Corporation Nipro Corporation (Japan) ćƒ‹ćƒ—ćƒ­ę Ŗå¼ä¼šē¤¾'),
(123960, 'https://ror.org/019xp4858', 'fr', 1, 'https://ror.org/019xp4858 Ɖcole Nationale SupĆ©rieure d''Architecture de Toulouse'),
(123961, 'https://ror.org/00kq13m03', 'no_lang_code', 1, 'https://ror.org/00kq13m03 Dr.Ci:Labo Co., Ltd. Dr.Ci:Labo Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‰ć‚Æć‚æćƒ¼ć‚·ćƒ¼ćƒ©ćƒœ'),
(123962, 'https://ror.org/05hgtp764', 'en', 1, 'https://ror.org/05hgtp764 Joseph Sarwuan Tarka University Makurdi'),
(123963, 'https://ror.org/00e0bf989', 'en', 1, 'https://ror.org/00e0bf989 Professor Jayashankar Telangana Agricultural University ą°†ą°šą°¾ą°°ą±ą°Æ ą°œą°Æą°¶ą°‚ą°•ą°°ą± ą°µą±ą°Æą°µą°øą°¾ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(123964, 'https://ror.org/01qxncp31', 'no_lang_code', 1, 'https://ror.org/01qxncp31 Ourstex Corporation Ourstex Corporation (Japan) ć‚¢ćƒÆćƒ¼ć‚ŗćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(123965, 'https://ror.org/0256tjn64', 'en', 1, 'https://ror.org/0256tjn64 Institute of Mechanics and Seismic Stability of Structures named after M.T. Urazbaev Mexanika va inshootlarning seysmik mustahkamligi instituti Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики Šø сейсмостойкости ŃŠ¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠ¹ им. М. Š¢. Уразбаева ŠŠ РУз'),
(123966, 'https://ror.org/03v30pe63', 'en', 1, 'https://ror.org/03v30pe63 CAAN Communities, Alliances & Network'),
(123967, 'https://ror.org/03r9qc142', 'en', 1, 'https://ror.org/03r9qc142 UCL Biomedical Research Centre'),
(123968, 'https://ror.org/001jhm646', 'no_lang_code', 1, 'https://ror.org/001jhm646 Kimuratan Corporation Kimuratan Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒ ćƒ©ć‚æćƒ³'),
(123969, 'https://ror.org/05rdf8595', 'gl', 1, 'https://ror.org/05rdf8595 Universidad de Vigo Universidade de Vigo Universitat de Vigo University of Vigo'),
(123970, 'https://ror.org/03ffdsr55', 'en', 1, 'https://ror.org/03ffdsr55 Science and Engineering Research Board'),
(123971, 'https://ror.org/01a8ajp46', 'fr', 1, 'https://ror.org/01a8ajp46 University of Clermont Auvergne UniversitƩ Clermont Auvergne'),
(123972, 'https://ror.org/018epzy03', 'en', 1, 'https://ror.org/018epzy03 Zentalis Pharmaceuticals Zentalis Pharmaceuticals (United States) Zentalis Pharmaceuticals, Inc.'),
(123973, 'https://ror.org/02d6z8k76', 'no_lang_code', 1, 'https://ror.org/02d6z8k76 United, Inc. United, Inc. (Japan) ćƒ¦ćƒŠć‚¤ćƒ†ćƒƒćƒ‰ę Ŗå¼ä¼šē¤¾'),
(123974, 'https://ror.org/05q4aw666', 'no_lang_code', 1, 'https://ror.org/05q4aw666 TDY Inc. TDY Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚£ćƒ¼ćƒ‡ć‚£ćƒ¼ćƒÆć‚¤'),
(123975, 'https://ror.org/03xveyy82', 'no_lang_code', 1, 'https://ror.org/03xveyy82 Hanex Co., Ltd. Hanex Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒćƒƒć‚Æć‚¹'),
(123976, 'https://ror.org/0365m9151', 'no_lang_code', 1, 'https://ror.org/0365m9151 Fatware Inc. Fatware Inc. (Japan) ćƒ•ć‚”ćƒƒćƒˆć‚¦ć‚§ć‚¢ę Ŗå¼ä¼šē¤¾'),
(123977, 'https://ror.org/05f9rtm11', 'no_lang_code', 1, 'https://ror.org/05f9rtm11 Noevir Co., Ltd. Noevir Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŽć‚Øćƒ“ć‚¢'),
(123978, 'https://ror.org/03exqs251', 'no_lang_code', 1, 'https://ror.org/03exqs251 Kurokawa Industrial Company, Ltd. Kurokawa Industrial Company, Ltd. (Japan) é»’å·å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(123979, 'https://ror.org/02skabv63', 'it', 1, 'https://ror.org/02skabv63 IRCCS Azienda Ospedaliera Metropolitana'),
(123980, 'https://ror.org/05rz0y915', 'no_lang_code', 1, 'https://ror.org/05rz0y915 JECO Co., Ltd. JECO Co., Ltd. (Japan) ć‚øć‚§ć‚³ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(123981, 'https://ror.org/04b7bgg40', 'no_lang_code', 1, 'https://ror.org/04b7bgg40 T.D.I. Co., Ltd. T.D.I. Co., Ltd. (Japan) ęƒ…å ±ęŠ€č”“é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(123982, 'https://ror.org/01mtr0q04', 'no_lang_code', 1, 'https://ror.org/01mtr0q04 Mastermind Co., Ltd. Mastermind Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒžć‚¹ć‚æćƒ¼ćƒžć‚¤ćƒ³ćƒ‰'),
(123983, 'https://ror.org/05enrmz56', 'en', 1, 'https://ror.org/05enrmz56 Enric Corbera Institute'),
(123984, 'https://ror.org/02wv5v378', 'no_lang_code', 1, 'https://ror.org/02wv5v378 Hamagin Research Institute, Ltd. Hamagin Research Institute, Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ęµœéŠ€ē·åˆē ”ē©¶ę‰€'),
(123985, 'https://ror.org/02j57pr36', 'no_lang_code', 1, 'https://ror.org/02j57pr36 FDK Corporation FDK Corporation (Japan) FDKę Ŗå¼ä¼šē¤¾'),
(123986, 'https://ror.org/0150pdc16', 'no_lang_code', 1, 'https://ror.org/0150pdc16 Accelia, Inc Accelia, Inc (Japan) ć‚¢ć‚Æć‚»ćƒŖć‚¢ę Ŗå¼ä¼šē¤¾'),
(123987, 'https://ror.org/019wrwh65', 'fr', 0, 'https://ror.org/019wrwh65 UniversitƩ Henri PoincarƩ'),
(123988, 'https://ror.org/051x5yp54', 'en', 1, 'https://ror.org/051x5yp54 Federal School of Surveying, Oyo'),
(123989, 'https://ror.org/04ey33g86', 'no_lang_code', 1, 'https://ror.org/04ey33g86 Mutsubishi Rubber Co., Ltd. Mutsubishi Rubber Co., Ltd. (Japan) å…­č±ć‚“ćƒ ę Ŗå¼ä¼šē¤¾'),
(123990, 'https://ror.org/056z3n065', 'no_lang_code', 1, 'https://ror.org/056z3n065 Bosch Rexroth, Japan Bosch Rexroth, Japan (Japan) ćƒœćƒƒć‚·ćƒ„ćƒ»ćƒ¬ćƒƒć‚Æć‚¹ćƒ­ć‚¹ę Ŗå¼ä¼šē¤¾'),
(123991, 'https://ror.org/03xjwb503', 'fr', 1, 'https://ror.org/03xjwb503 Paris-Saclayko Unibertsitatea Universitat Parƭs-Saclay University of Paris-Saclay UniversitƩ Paris-Saclay'),
(123992, 'https://ror.org/004hydx84', 'en', 1, 'https://ror.org/004hydx84 NIHR Moorfields Biomedical Research Centre'),
(123993, 'https://ror.org/048rxce38', 'no_lang_code', 1, 'https://ror.org/048rxce38 Geneact, Inc. Geneact, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ćƒ³ć‚¢ć‚Æćƒˆ'),
(123994, 'https://ror.org/02wfvah75', 'en', 1, 'https://ror.org/02wfvah75 Shri Shankaracharya Professional University'),
(123995, 'https://ror.org/000az4664', 'en', 1, 'https://ror.org/000az4664 Canada Foundation for Innovation Fondation canadienne pour l''innovation'),
(123996, 'https://ror.org/044jr0f96', 'en', 1, 'https://ror.org/044jr0f96 Government of West Bengal ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— সরকার'),
(123997, 'https://ror.org/035jrqt62', 'no_lang_code', 1, 'https://ror.org/035jrqt62 Aronkasei Co., Ltd. Aronkasei Co., Ltd. (Japan) ć‚¢ćƒ­ćƒ³åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(123998, 'https://ror.org/01g155n69', 'en', 1, 'https://ror.org/01g155n69 Ogun State Institute of Technology Igbesa'),
(123999, 'https://ror.org/02kqqcr37', 'no_lang_code', 1, 'https://ror.org/02kqqcr37 Satohide Corporation Satohide Corporation (Japan) ę Ŗå¼ä¼šē¤¾ä½č—¤ē§€'),
(124000, 'https://ror.org/05bkn5x91', 'no_lang_code', 1, 'https://ror.org/05bkn5x91 GL Sciences Inc. GL Sciences Inc. (Japan) ć‚øćƒ¼ć‚Øćƒ«ć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(124001, 'https://ror.org/01tg4md27', 'fr', 1, 'https://ror.org/01tg4md27 Oxydation, Conservation, CaractƩrisation & Innovation des Aliments'),
(124002, 'https://ror.org/04nhrpb61', 'fr', 1, 'https://ror.org/04nhrpb61 Cognition Sciences, Technology, and Ergonomics Cognitive sciences, Technology, and Ergonomics Sciences de la Cognition, Technologie, Ergonomie'),
(124003, 'https://ror.org/017ahry26', 'no_lang_code', 1, 'https://ror.org/017ahry26 YAMAKIN Co., Ltd. YAMAKIN Co., Ltd. (Japan) YAMAKINę Ŗå¼ä¼šē¤¾'),
(124004, 'https://ror.org/046bxhv17', 'no_lang_code', 1, 'https://ror.org/046bxhv17 Lazoc Incorporated Lazoc Incorporated (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¬ćƒ¼ć‚¶ćƒƒć‚Æ'),
(124005, 'https://ror.org/013cftt59', 'no_lang_code', 1, 'https://ror.org/013cftt59 SCI Research Institute Co., Ltd. SCI Research Institute Co., Ltd. (Japan) SCIē·åˆē ”ē©¶ę‰€ę Ŗå¼ä¼šē¤¾'),
(124006, 'https://ror.org/02zmxpe85', 'en', 1, 'https://ror.org/02zmxpe85 Medical Institute of Bioregulation, Kyushu University 九州大学 ē”Ÿä½“é˜²å¾”åŒ»å­¦ē ”ē©¶ę‰€'),
(124007, 'https://ror.org/04efnn791', 'no_lang_code', 1, 'https://ror.org/04efnn791 For-A Eletex Co., Ltd. For-A Eletex Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ęœ‹ę „ć‚Øćƒ¬ćƒ†ćƒƒć‚Æć‚¹'),
(124008, 'https://ror.org/052s4yk88', 'no_lang_code', 1, 'https://ror.org/052s4yk88 Tomita Pharmaceutical Co., Ltd. Tomita Pharmaceutical Co., Ltd. (Japan) åÆŒē”°č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(124009, 'https://ror.org/000ag1h33', 'no_lang_code', 1, 'https://ror.org/000ag1h33 Tenma Corporation Tenma Corporation (Japan) å¤©é¦¬ę Ŗå¼ä¼šē¤¾'),
(124010, 'https://ror.org/016hnsf14', 'es', 1, 'https://ror.org/016hnsf14 Institute for Innovation & Sustainable Development in Food Chain Instituto de Innovación y Sostenibilidad en la Cadena Agroalimentaria'),
(124011, 'https://ror.org/03f5eqm42', 'en', 1, 'https://ror.org/03f5eqm42 NIHR Nottingham Hearing Biomedical Research Unit'),
(124012, 'https://ror.org/01v4g2w70', 'no_lang_code', 1, 'https://ror.org/01v4g2w70 Ranco Japan Limited Ranco Japan Limited (Japan) ę—„ęœ¬ćƒ©ćƒ³ć‚³ę Ŗå¼ä¼šē¤¾'),
(124013, 'https://ror.org/01rxfrp27', 'en', 1, 'https://ror.org/01rxfrp27 La Trobe University'),
(124014, 'https://ror.org/02q6etk49', 'no_lang_code', 1, 'https://ror.org/02q6etk49 Primix Corporation Primix Corporation (Japan) ćƒ—ćƒ©ć‚¤ćƒŸć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(124015, 'https://ror.org/000mtpv11', 'no_lang_code', 1, 'https://ror.org/000mtpv11 Takuma Co., Ltd. Takuma Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚Æćƒž'),
(124016, 'https://ror.org/027xsr240', 'no_lang_code', 1, 'https://ror.org/027xsr240 Risho Kogyo Co., Ltd. Risho Kogyo Co., Ltd. (Japan) åˆ©ę˜Œå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124017, 'https://ror.org/00s32dt03', 'no_lang_code', 1, 'https://ror.org/00s32dt03 Fukuvi Chemical Industry Co., Ltd. Fukuvi Chemical Industry Co., Ltd. (Japan) ćƒ•ć‚Æćƒ“åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124018, 'https://ror.org/030q65m40', 'en', 1, 'https://ror.org/030q65m40 Ballari Institute of Technology & Management'),
(124019, 'https://ror.org/021ndnd72', 'no', 0, 'https://ror.org/021ndnd72 Bergen University College HĆøgskolen i Bergen'),
(124020, 'https://ror.org/024pwr206', 'no_lang_code', 1, 'https://ror.org/024pwr206 Fujikasui Engineering Co., Ltd. Fujikasui Engineering Co., Ltd. (Japan) åÆŒå£«åŒ–ę°“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124021, 'https://ror.org/042qtkj88', 'no_lang_code', 1, 'https://ror.org/042qtkj88 Yanaihara Institute Inc. Yanaihara Institute Inc. (Japan) ę Ŗå¼ä¼šē¤¾ēŸ¢å†…åŽŸē ”ē©¶ę‰€'),
(124022, 'https://ror.org/03bah2228', 'no_lang_code', 1, 'https://ror.org/03bah2228 Daiso Co., Ltd. Daiso Co., Ltd. (Japan) ćƒ€ć‚¤ć‚½ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124023, 'https://ror.org/042fp6c18', 'no_lang_code', 1, 'https://ror.org/042fp6c18 Biomatics, Inc. Biomatics, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚Ŗćƒžćƒ†ć‚£ć‚Æć‚¹'),
(124024, 'https://ror.org/02gzagc50', 'no_lang_code', 1, 'https://ror.org/02gzagc50 Sosho Inc. Sosho Inc. (Japan) ę Ŗå¼ä¼šē¤¾å‰µę™¶'),
(124025, 'https://ror.org/02ds44a67', 'no_lang_code', 1, 'https://ror.org/02ds44a67 Yutoku Pharmaceutical IND. Co., Ltd. Yutoku Pharmaceutical IND. Co., Ltd. (Japan) ē„å¾³č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124026, 'https://ror.org/006gxy745', 'no_lang_code', 1, 'https://ror.org/006gxy745 Saibu GAS Co., Ltd. Saibu GAS Co., Ltd. (Japan) č„æéƒØć‚¬ć‚¹ę Ŗå¼ä¼šē¤¾'),
(124027, 'https://ror.org/05fng2j94', 'no_lang_code', 1, 'https://ror.org/05fng2j94 MOLZA Corporation MOLZA Corporation (Japan) MOLZAę Ŗå¼ä¼šē¤¾'),
(124028, 'https://ror.org/01ar6bb32', 'no_lang_code', 1, 'https://ror.org/01ar6bb32 GOO Chemical Co., Ltd. GOO Chemical Co., Ltd. (Japan) äŗ’åæœåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124029, 'https://ror.org/00dwadf15', 'no_lang_code', 1, 'https://ror.org/00dwadf15 Rexxam Co., Ltd. Rexxam Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¬ć‚Æć‚¶ćƒ '),
(124030, 'https://ror.org/022qa1279', 'no_lang_code', 1, 'https://ror.org/022qa1279 Webalance Co., Ltd. Webalance Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¦ć‚§ćƒćƒ©ćƒ³ć‚¹'),
(124031, 'https://ror.org/02dtrtw50', 'no_lang_code', 1, 'https://ror.org/02dtrtw50 Yokowo Co., Ltd. Yokowo Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒØć‚³ć‚Ŗ'),
(124032, 'https://ror.org/04n6dmy26', 'fr', 0, 'https://ror.org/04n6dmy26 Bordeaux Management School Bordeaux Ɖcole de Management'),
(124033, 'https://ror.org/05evdpq54', 'no_lang_code', 1, 'https://ror.org/05evdpq54 Japan.e.m Co., Ltd. Japan.e.m Co., Ltd. (Japan) ć‚øćƒ£ćƒ‘ćƒ³ćƒ»ć‚¤ćƒ¼ćƒ»ć‚Øćƒ ę Ŗå¼ä¼šē¤¾'),
(124034, 'https://ror.org/03bgq6748', 'no_lang_code', 1, 'https://ror.org/03bgq6748 Cheminfonavi Inc. Cheminfonavi Inc. (Japan) ęœ‰é™ä¼šē¤¾ć‚±ćƒ ć‚¤ćƒ³ćƒ•ć‚©ćƒŠćƒ“'),
(124035, 'https://ror.org/05r8e9b67', 'no_lang_code', 1, 'https://ror.org/05r8e9b67 HABA Laboratories, Inc. HABA Laboratories, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒ¼ćƒćƒ¼ē ”ē©¶ę‰€'),
(124036, 'https://ror.org/00m6y4250', 'no_lang_code', 1, 'https://ror.org/00m6y4250 Chuetsu PULP & Paper Co., Ltd. Chuetsu PULP & Paper Co., Ltd. (Japan) äø­č¶Šćƒ‘ćƒ«ćƒ—å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124037, 'https://ror.org/0188aj730', 'no_lang_code', 1, 'https://ror.org/0188aj730 V-CUBE, Inc. V-CUBE, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ–ć‚¤ć‚­ćƒ„ćƒ¼ćƒ–'),
(124038, 'https://ror.org/03bhwa869', 'en', 1, 'https://ror.org/03bhwa869 Freehold Regional High School District'),
(124039, 'https://ror.org/040at4140', 'en', 1, 'https://ror.org/040at4140 International Federation of Red Cross and Red Crescent Societies'),
(124040, 'https://ror.org/05dhmje70', 'no_lang_code', 1, 'https://ror.org/05dhmje70 Zycube Co., Ltd. Zycube Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¶ć‚¤ć‚­ćƒ„ćƒ¼ćƒ–'),
(124041, 'https://ror.org/00m2h8d68', 'no_lang_code', 1, 'https://ror.org/00m2h8d68 Geomatec Co., Ltd. Geomatec Co., Ltd. (Japan) ć‚øć‚Ŗćƒžćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124042, 'https://ror.org/00xzqnc31', 'no_lang_code', 1, 'https://ror.org/00xzqnc31 IMEX Co., Ltd. IMEX Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ”ćƒƒć‚Æć‚¹'),
(124043, 'https://ror.org/05q43qm86', 'no_lang_code', 1, 'https://ror.org/05q43qm86 UHT Corporation UHT Corporation (Japan) UHTę Ŗå¼ä¼šē¤¾'),
(124044, 'https://ror.org/0152awj28', 'no_lang_code', 1, 'https://ror.org/0152awj28 AUTO Chemical Industry Co., Ltd. AUTO Chemical Industry Co., Ltd. (Japan) ć‚Ŗćƒ¼ćƒˆåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124045, 'https://ror.org/00t8qmx52', 'fr', 0, 'https://ror.org/00t8qmx52 UniversitƩ Paul Verlaine - Metz'),
(124046, 'https://ror.org/0578mxe91', 'no_lang_code', 1, 'https://ror.org/0578mxe91 Atago Co., Ltd. Atago Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚æć‚“'),
(124047, 'https://ror.org/04pw1wd95', 'it', 1, 'https://ror.org/04pw1wd95 Fondazione Giuseppe Di Vittorio'),
(124048, 'https://ror.org/03srytc69', 'no_lang_code', 1, 'https://ror.org/03srytc69 Innotech Corporation Innotech Corporation (Japan) ć‚¤ćƒŽćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124049, 'https://ror.org/02rx3b187', 'fr', 1, 'https://ror.org/02rx3b187 Grenoble Alpes University UniversitƩ Grenoble Alpes'),
(124050, 'https://ror.org/02ftws031', 'no_lang_code', 1, 'https://ror.org/02ftws031 Credit Saison Co., Ltd. Credit Saison Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ćƒ‡ć‚£ć‚»ć‚¾ćƒ³'),
(124051, 'https://ror.org/0472ajt73', 'en', 1, 'https://ror.org/0472ajt73 Warnborough College'),
(124052, 'https://ror.org/02w7jg188', 'no_lang_code', 1, 'https://ror.org/02w7jg188 Seiwa Electric MFG. Co., Ltd. Seiwa Electric MFG. Co., Ltd. (Japan) ę˜Ÿå’Œé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124053, 'https://ror.org/01rgnxv89', 'no_lang_code', 1, 'https://ror.org/01rgnxv89 Intersolution Marketing Inc. Intersolution Marketing Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ć‚æćƒ¼ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ćƒžćƒ¼ć‚±ćƒ†ć‚£ćƒ³ć‚°'),
(124054, 'https://ror.org/01bcwn986', 'no_lang_code', 1, 'https://ror.org/01bcwn986 A&D Co., Ltd. A&D Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ¼ćƒ»ć‚¢ćƒ³ćƒ‰ćƒ»ćƒ‡ć‚¤'),
(124055, 'https://ror.org/017wgkd42', 'en', 1, 'https://ror.org/017wgkd42 Rajiv Gandhi University ą¤°ą¤¾ą¤œą„€ą¤µ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą§°ą¦¾ą¦œą§€ą§± ą¦—ą¦¾ą¦Øą§ą¦§ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(124056, 'https://ror.org/01eb8v632', 'no_lang_code', 1, 'https://ror.org/01eb8v632 Musashino Chemical Laboratory, Ltd. Musashino Chemical Laboratory, Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę­¦č”µé‡ŽåŒ–å­¦ē ”ē©¶ę‰€'),
(124057, 'https://ror.org/04jmt9361', 'en', 1, 'https://ror.org/04jmt9361 University of Madras UniversitĆ© de madras ą¤®ą¤¦ą„ą¤°ą¤¾ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦®ą¦¾ą¦¦ą§ą¦°ą¦¾ą¦œ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®šąÆ†ą®©ąÆą®©ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°®ą°¦ą±ą°°ą°¾ą°øą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²®ą²¦ą³ą²°ą²¾ą²øą³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ ą“®ą“¦ąµą“°ą“¾ą“øąµ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(124058, 'https://ror.org/02xtz3a17', 'no_lang_code', 1, 'https://ror.org/02xtz3a17 Pioneer Corporation Pioneer Corporation (Japan) ćƒ‘ć‚¤ć‚Ŗćƒ‹ć‚¢ę Ŗå¼ä¼šē¤¾'),
(124059, 'https://ror.org/04vfs2w97', 'fr', 1, 'https://ror.org/04vfs2w97 University of Lorraine UniversitƩ de Lorraine'),
(124060, 'https://ror.org/00x2xrq82', 'no_lang_code', 1, 'https://ror.org/00x2xrq82 Lonseal Corporation Lonseal Corporation (Japan) ćƒ­ćƒ³ć‚·ćƒ¼ćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124061, 'https://ror.org/036hgjd59', 'no_lang_code', 1, 'https://ror.org/036hgjd59 Zerotechno Co., Ltd. Zerotechno Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¼ćƒ­ćƒ†ć‚ÆćƒŽ'),
(124062, 'https://ror.org/04j51xd90', 'no_lang_code', 1, 'https://ror.org/04j51xd90 Sanada KOA Corporation Sanada KOA Corporation (Japan) ēœŸē”°KOAę Ŗå¼ä¼šē¤¾'),
(124063, 'https://ror.org/05nfs2y11', 'fr', 1, 'https://ror.org/05nfs2y11 Fondation de l''INRS'),
(124064, 'https://ror.org/03cwzta72', 'fr', 1, 'https://ror.org/03cwzta72 Direction des Energies'),
(124065, 'https://ror.org/03pj07796', 'no_lang_code', 1, 'https://ror.org/03pj07796 Fukoku Co., Ltd. Fukoku Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚³ć‚Æ'),
(124066, 'https://ror.org/04hqxh742', 'en', 1, 'https://ror.org/04hqxh742 Arnold Ventures'),
(124067, 'https://ror.org/0385rk641', 'no_lang_code', 1, 'https://ror.org/0385rk641 Fujimoto Chemicals Co., Ltd. Fujimoto Chemicals Co., Ltd. (Japan) č—¤ęœ¬åŒ–å­¦č£½å“ę Ŗå¼ä¼šē¤¾'),
(124068, 'https://ror.org/00w0pc989', 'no_lang_code', 1, 'https://ror.org/00w0pc989 Leger Leger (Japan) ćƒ¬ć‚øć‚Øę Ŗå¼ä¼šē¤¾'),
(124069, 'https://ror.org/026qn7f35', 'no_lang_code', 1, 'https://ror.org/026qn7f35 3M Japan Limited 3M Japan Limited (Japan) ć‚¹ćƒŖćƒ¼ć‚Øćƒ ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124070, 'https://ror.org/04c1fwa50', 'no_lang_code', 1, 'https://ror.org/04c1fwa50 Nikkei Information System Co., Ltd. Nikkei Information System Co., Ltd. (Japan) ę—„č»½ęƒ…å ±ć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(124071, 'https://ror.org/02zvs5a39', 'en', 1, 'https://ror.org/02zvs5a39 Rajeev Institute of Technology'),
(124072, 'https://ror.org/01mcnhb78', 'en', 1, 'https://ror.org/01mcnhb78 MRC Centre for Neurodevelopmental Disorders'),
(124073, 'https://ror.org/04mv19x10', 'no_lang_code', 1, 'https://ror.org/04mv19x10 Fujitec Co., Ltd. Fujitec Co., Ltd. (Japan) ćƒ•ć‚øćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124074, 'https://ror.org/03x6mz783', 'no_lang_code', 1, 'https://ror.org/03x6mz783 Drico Ltd. Drico Ltd. (Japan) ćƒ‰ćƒŖć‚³ę Ŗå¼ä¼šē¤¾'),
(124075, 'https://ror.org/058aw1839', 'no_lang_code', 1, 'https://ror.org/058aw1839 Transparent Inc. Transparent Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ©ćƒ³ć‚¹ćƒ‘ćƒ¬ćƒ³ćƒˆ'),
(124076, 'https://ror.org/00rg6nn98', 'no_lang_code', 1, 'https://ror.org/00rg6nn98 Chuden Engineering Consultants Co., Ltd. Chuden Engineering Consultants Co., Ltd. (Japan) äø­é›»ęŠ€č”“ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(124077, 'https://ror.org/044dp1584', 'fr', 1, 'https://ror.org/044dp1584 Centre d''Investigation Clinique - EpidƩmiologie Clinique Saint-Etienne'),
(124078, 'https://ror.org/056xezc89', 'en', 1, 'https://ror.org/056xezc89 Akademi Laut Malaysia Malaysian Maritime Academy é©¬ę„č„æäŗšęµ·äŗ‹å­¦é™¢'),
(124079, 'https://ror.org/04qqc5b45', 'no_lang_code', 1, 'https://ror.org/04qqc5b45 FUSIC Co., Ltd. FUSIC Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾FUSIC'),
(124080, 'https://ror.org/03w9r5s20', 'no_lang_code', 1, 'https://ror.org/03w9r5s20 Crono Works Crono Works (Japan) ęœ‰é™ä¼šē¤¾ć‚Æćƒ­ćƒŽćƒÆćƒ¼ć‚Æć‚¹'),
(124081, 'https://ror.org/02ng77245', 'no_lang_code', 1, 'https://ror.org/02ng77245 Sugatec Corporation Sugatec Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ć‚¬ćƒ†ćƒƒć‚Æ'),
(124082, 'https://ror.org/01ddktq70', 'no_lang_code', 1, 'https://ror.org/01ddktq70 Asahi-Seiki MFG. Co., Ltd. Asahi-Seiki MFG. Co., Ltd. (Japan) ę—­ē²¾ę©Ÿå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124083, 'https://ror.org/02p73cw19', 'no_lang_code', 1, 'https://ror.org/02p73cw19 Mebiopharm Co., Ltd. Mebiopharm Co., Ltd. (Japan) ćƒ”ćƒ“ć‚Ŗćƒ•ć‚”ćƒ¼ćƒ ę Ŗå¼ä¼šē¤¾'),
(124084, 'https://ror.org/046veqg52', 'no_lang_code', 1, 'https://ror.org/046veqg52 Kakui Co., Ltd. Kakui Co., Ltd. (Japan) ć‚«ć‚Æć‚¤ę Ŗå¼ä¼šē¤¾'),
(124085, 'https://ror.org/027mcvp51', 'no_lang_code', 1, 'https://ror.org/027mcvp51 Panahome Corporation Panahome Corporation (Japan) ćƒ‘ćƒŠćƒ›ćƒ¼ćƒ ę Ŗå¼ä¼šē¤¾'),
(124086, 'https://ror.org/038r88d38', 'no_lang_code', 1, 'https://ror.org/038r88d38 Namura Shipbuilding Co., Ltd. Namura Shipbuilding Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾åę‘é€ čˆ¹ę‰€'),
(124087, 'https://ror.org/02p20e127', 'no_lang_code', 1, 'https://ror.org/02p20e127 CREO Co., Ltd. CREO Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ć‚Ŗ'),
(124088, 'https://ror.org/0458jrv13', 'id', 1, 'https://ror.org/0458jrv13 Politeknik Sukabumi'),
(124089, 'https://ror.org/00wx9ye78', 'no_lang_code', 1, 'https://ror.org/00wx9ye78 Kitano Construction Corp. Kitano Construction Corp. (Japan) åŒ—é‡Žå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(124090, 'https://ror.org/015mj5026', 'no_lang_code', 1, 'https://ror.org/015mj5026 NKSJ Holdings, Inc. NKSJ Holdings, Inc. (Japan) NKSJćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(124091, 'https://ror.org/00esz3k97', 'en', 1, 'https://ror.org/00esz3k97 Opna Bio Opna Bio (United States) Opna Bio, Inc.'),
(124092, 'https://ror.org/016zba674', 'no_lang_code', 1, 'https://ror.org/016zba674 Chitose Laboratory Corp. Chitose Laboratory Corp. (Japan) ę Ŗå¼ä¼šē¤¾ć”ćØć›ē ”ē©¶ę‰€'),
(124093, 'https://ror.org/05qx05606', 'no_lang_code', 1, 'https://ror.org/05qx05606 Nakano Refrigerators Co., Ltd. Nakano Refrigerators Co., Ltd. (Japan) äø­é‡Žå†·ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124094, 'https://ror.org/009c8k568', 'en', 1, 'https://ror.org/009c8k568 Rauf Ablyazov East European University Š”Ń…Ń–Š“Š½Š¾Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š Š°ŃƒŃ„Š° ŠŠ±Š»ŃŠ·Š¾Š²Š°'),
(124095, 'https://ror.org/03czx1c42', 'en', 1, 'https://ror.org/03czx1c42 Borana University'),
(124096, 'https://ror.org/02rjndw87', 'no_lang_code', 1, 'https://ror.org/02rjndw87 Comota Co., Ltd. Comota Co., Ltd. (Japan) ć‚³ćƒ¢ć‚æę Ŗå¼ä¼šē¤¾'),
(124097, 'https://ror.org/01yj45475', 'no_lang_code', 1, 'https://ror.org/01yj45475 Tazmo Co., Ltd. Tazmo Co., Ltd. (Japan) ć‚æćƒ„ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(124098, 'https://ror.org/05s3csk95', 'no_lang_code', 1, 'https://ror.org/05s3csk95 Technomics Inc. Technomics Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚ÆćƒŽćƒŸćƒƒć‚Æ'),
(124099, 'https://ror.org/03m75yp64', 'no_lang_code', 1, 'https://ror.org/03m75yp64 Seiryo Electric Engineering Corp. Seiryo Electric Engineering Corp. (Japan) č„æč±é›»ę©Ÿć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(124100, 'https://ror.org/00cfam450', 'de', 1, 'https://ror.org/00cfam450 Helmholtz Zentrum München Helmholtz Zentrum München - Deutsches Forschungszentrum für Gesundheit und Umwelt'),
(124101, 'https://ror.org/0513x6e97', 'no_lang_code', 1, 'https://ror.org/0513x6e97 Pico-Device Co Pico-Device Co (Japan) ęœ‰é™ä¼šē¤¾ćƒ”ć‚³ćƒ‡ćƒć‚¤ć‚¹'),
(124102, 'https://ror.org/02fvtx219', 'en', 1, 'https://ror.org/02fvtx219 Ford Foundation'),
(124103, 'https://ror.org/00k5pte35', 'en', 1, 'https://ror.org/00k5pte35 NIHR Birmingham Liver Biomedical Research Unit'),
(124104, 'https://ror.org/009ns5r57', 'en', 1, 'https://ror.org/009ns5r57 MORAI MORAI (South Korea) MORAI Inc.'),
(124105, 'https://ror.org/035xkbk20', 'fr', 1, 'https://ror.org/035xkbk20 Aix-Marseille University Aix-Marseille UniversitƩ'),
(124106, 'https://ror.org/01q0tc728', 'no_lang_code', 1, 'https://ror.org/01q0tc728 Opis Co., Ltd. Opis Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ćƒ”ć‚¹'),
(124107, 'https://ror.org/01ftkry34', 'no_lang_code', 1, 'https://ror.org/01ftkry34 Shoda Shoyu Co., Ltd. Shoda Shoyu Co., Ltd. (Japan) ę­£ē”°é†¤ę²¹ę Ŗå¼ä¼šē¤¾'),
(124108, 'https://ror.org/05e4ves22', 'no_lang_code', 1, 'https://ror.org/05e4ves22 Horai Co., Ltd. Horai Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ›ćƒ¼ćƒ©ć‚¤'),
(124109, 'https://ror.org/03yewvc55', 'no_lang_code', 1, 'https://ror.org/03yewvc55 Bourbon Corporation Bourbon Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ–ćƒ«ćƒœćƒ³'),
(124110, 'https://ror.org/03xj1mr61', 'no_lang_code', 1, 'https://ror.org/03xj1mr61 Daisue Construction Co., Ltd. Daisue Construction Co., Ltd. (Japan) å¤§ęœ«å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(124111, 'https://ror.org/00v1gf193', 'es', 1, 'https://ror.org/00v1gf193 Centro de Investigación en Ciencia Aplicada y Tecnología Avanzada, Unidad Altamira'),
(124112, 'https://ror.org/048gwee61', 'no_lang_code', 1, 'https://ror.org/048gwee61 Mushpia Co. Ltd Mushpia Co. Ltd (Japan) ę Ŗå¼ä¼šē¤¾ćƒžćƒƒć‚·ćƒ„ćƒ”ć‚¢'),
(124113, 'https://ror.org/04k7ghc69', 'en', 1, 'https://ror.org/04k7ghc69 Sustainable Seas Trust'),
(124114, 'https://ror.org/01hzdv945', 'en', 1, 'https://ror.org/01hzdv945 Chaudhary Charan Singh University ą¤šą„Œą¤§ą¤°ą„€ चरण सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ சௌதரி ą®šą®°ą®£ąÆ ą®šą®æą®™ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(124115, 'https://ror.org/05bhpgf68', 'no_lang_code', 1, 'https://ror.org/05bhpgf68 Majima Company Limited Majima Company Limited (Japan) ę Ŗå¼ä¼šē¤¾ćƒžć‚øćƒž'),
(124116, 'https://ror.org/00th04v83', 'no_lang_code', 1, 'https://ror.org/00th04v83 Kimoto Co., Ltd. Kimoto Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćć‚‚ćØ'),
(124117, 'https://ror.org/01k8v0088', 'no_lang_code', 1, 'https://ror.org/01k8v0088 Sanpo Electrical And Mechanical Engineering Corporation Sanpo Electrical And Mechanical Engineering Corporation (Japan) äø‰å®é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124118, 'https://ror.org/03zt70q50', 'no_lang_code', 1, 'https://ror.org/03zt70q50 Hisaka Works, Ltd. Hisaka Works, Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę—„é˜Ŗč£½ä½œę‰€'),
(124119, 'https://ror.org/01rnctn86', 'no_lang_code', 1, 'https://ror.org/01rnctn86 Atmark Techno, Inc. Atmark Techno, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒƒćƒˆćƒžćƒ¼ć‚Æćƒ†ć‚ÆćƒŽ'),
(124120, 'https://ror.org/02vx0h625', 'no_lang_code', 1, 'https://ror.org/02vx0h625 Morimoto Corporation Morimoto Corporation (Japan) ę Ŗå¼ä¼šē¤¾ę£®ęœ¬ēµ„'),
(124121, 'https://ror.org/02e9wrz07', 'no_lang_code', 1, 'https://ror.org/02e9wrz07 Richell Corporation Richell Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒŖćƒƒćƒć‚§ćƒ«'),
(124122, 'https://ror.org/03kwyqj81', 'no_lang_code', 1, 'https://ror.org/03kwyqj81 Kanai JUYO Kogyo Co., Ltd. Kanai JUYO Kogyo Co., Ltd. (Japan) é‡‘äŗ•é‡č¦å·„ę„­ę Ŗå¼ä¼šē¤¾');
INSERT INTO `rors` VALUES
(124123, 'https://ror.org/02dfjrv41', 'fr', 1, 'https://ror.org/02dfjrv41 HƓpital Santa Cabrini'),
(124124, 'https://ror.org/037522k75', 'no_lang_code', 1, 'https://ror.org/037522k75 Yamatake Corporation Yamatake Corporation (Japan) ę Ŗå¼ä¼šē¤¾å±±ę­¦'),
(124125, 'https://ror.org/00p4k0j84', 'en', 1, 'https://ror.org/00p4k0j84 Kyushu University 九州大学'),
(124126, 'https://ror.org/03qddw557', 'no_lang_code', 1, 'https://ror.org/03qddw557 Daiseki Co., Ltd. Daiseki Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ć‚»ć‚­'),
(124127, 'https://ror.org/03em23p72', 'no_lang_code', 1, 'https://ror.org/03em23p72 Tsuken Electric IND. Co., Ltd. Tsuken Electric IND. Co., Ltd. (Japan) é€šē ”é›»ę°—å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124128, 'https://ror.org/01zyc3p32', 'no_lang_code', 1, 'https://ror.org/01zyc3p32 Nikkeikakou Co., Ltd. Nikkeikakou Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒƒć‚±ć‚¤åŠ å·„'),
(124129, 'https://ror.org/04dxmgj19', 'no_lang_code', 1, 'https://ror.org/04dxmgj19 Inoue Kinzoku Kogyo Co., Ltd. Inoue Kinzoku Kogyo Co., Ltd. (Japan) äŗ•äøŠé‡‘å±žå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124130, 'https://ror.org/02cbwfm78', 'no_lang_code', 1, 'https://ror.org/02cbwfm78 Kistem Co., Ltd. Kistem Co., Ltd. (Japan) ć‚­ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(124131, 'https://ror.org/05ps86e41', 'no_lang_code', 1, 'https://ror.org/05ps86e41 Ohashi Chemical Industries Ltd. Ohashi Chemical Industries Ltd. (Japan) å¤§ę©‹åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124132, 'https://ror.org/037j4dz40', 'no_lang_code', 1, 'https://ror.org/037j4dz40 Inter-Valve Technology Corporation Inter-Valve Technology Corporation (Japan) ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒ«ćƒ–ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124133, 'https://ror.org/05dsj3368', 'no_lang_code', 1, 'https://ror.org/05dsj3368 Stagen Co., Ltd. Stagen Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ć‚æćƒ¼ć‚øć‚§ćƒ³'),
(124134, 'https://ror.org/01jdrx212', 'no_lang_code', 1, 'https://ror.org/01jdrx212 Nippoh Chemicals Co., Ltd. Nippoh Chemicals Co., Ltd. (Japan) ę—„å®åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(124135, 'https://ror.org/012e0pe28', 'no_lang_code', 1, 'https://ror.org/012e0pe28 TOLI Corporation TOLI Corporation (Japan) ę±ćƒŖę Ŗå¼ä¼šē¤¾'),
(124136, 'https://ror.org/05mstzh87', 'no_lang_code', 1, 'https://ror.org/05mstzh87 Rockwave Co., Ltd. Rockwave Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ­ćƒƒć‚Æć‚¦ć‚§ćƒ¼ćƒ–'),
(124137, 'https://ror.org/00t6qtq65', 'no_lang_code', 1, 'https://ror.org/00t6qtq65 JMA Research Institute JMA Research Institute (Japan) ę Ŗå¼ä¼šē¤¾ę—„ęœ¬čƒ½ēŽ‡å”ä¼šē·åˆē ”ē©¶ę‰€'),
(124138, 'https://ror.org/05v1ap911', 'no_lang_code', 1, 'https://ror.org/05v1ap911 Ysystems Ltd. Ysystems Ltd. (Japan) ęœ‰é™ä¼šē¤¾ćƒÆć‚¤ćƒ»ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(124139, 'https://ror.org/02g99an58', 'en', 1, 'https://ror.org/02g99an58 TÜBİTAK Marmara Araştırma Merkezi TÜBİTAK Marmara Research Center'),
(124140, 'https://ror.org/045kfbt16', 'no_lang_code', 1, 'https://ror.org/045kfbt16 Dibrugarh University ą¦”ą¦æą¦¬ą§ą¦°ą§ą¦—ą¦”ą¦¼ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(124141, 'https://ror.org/03wa10c51', 'no_lang_code', 1, 'https://ror.org/03wa10c51 HOGY Medical Co., Ltd. HOGY Medical Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ›ć‚®ćƒ”ćƒ‡ć‚£ć‚«ćƒ«'),
(124142, 'https://ror.org/01z2gze58', 'no_lang_code', 1, 'https://ror.org/01z2gze58 CKD Corporation CKD Corporation (Japan) CKDę Ŗå¼ä¼šē¤¾'),
(124143, 'https://ror.org/0008ahc55', 'no_lang_code', 1, 'https://ror.org/0008ahc55 Emerging Technologies Corporation Emerging Technologies Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒžćƒ¼ć‚øćƒ³ć‚°ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(124144, 'https://ror.org/0436znn81', 'en', 1, 'https://ror.org/0436znn81 NIHR Greater Manchester Patient Safety Translational Research Centre'),
(124145, 'https://ror.org/02anp2j67', 'no_lang_code', 1, 'https://ror.org/02anp2j67 Hochiki Corp. Hochiki Corp. (Japan) ćƒ›ćƒ¼ćƒć‚­ę Ŗå¼ä¼šē¤¾'),
(124146, 'https://ror.org/032yh9v38', 'no_lang_code', 1, 'https://ror.org/032yh9v38 ECO-TRI, Inc. ECO-TRI, Inc. (Japan) ć‚Øć‚³ćƒˆćƒ©ć‚¤ę Ŗå¼ä¼šē¤¾'),
(124147, 'https://ror.org/01v527c20', 'en', 1, 'https://ror.org/01v527c20 Egyptian Chinese University الجامعه Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ų§Ł„ŲµŁŠŁ†ŁŠŲ©'),
(124148, 'https://ror.org/0153hta37', 'no_lang_code', 1, 'https://ror.org/0153hta37 SUN-EH Electric Co., Ltd. SUN-EH Electric Co., Ltd. (Japan) ć‚µćƒ³ć‚Øćƒ¼é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124149, 'https://ror.org/00jaypn69', 'no_lang_code', 1, 'https://ror.org/00jaypn69 OHBA Co., Ltd. OHBA Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗć‚Ŗćƒ'),
(124150, 'https://ror.org/0256h8f75', 'no_lang_code', 1, 'https://ror.org/0256h8f75 Hanwa Electronic IND. Co., Ltd. Hanwa Electronic IND. Co., Ltd. (Japan) é˜Ŗå’Œé›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124151, 'https://ror.org/05xpgcy64', 'no_lang_code', 1, 'https://ror.org/05xpgcy64 Oiles Corporation Oiles Corporation (Japan) ć‚Ŗć‚¤ćƒ¬ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124152, 'https://ror.org/04hjnf602', 'no_lang_code', 1, 'https://ror.org/04hjnf602 Shimomura IND. Co., Ltd. Shimomura IND. Co., Ltd. (Japan) äø‹ę‘å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124153, 'https://ror.org/04y4day37', 'no_lang_code', 1, 'https://ror.org/04y4day37 Yudensha Co., Ltd. Yudensha Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é›„é›»ē¤¾'),
(124154, 'https://ror.org/00mxdb470', 'no_lang_code', 1, 'https://ror.org/00mxdb470 Yamashina Corporation Yamashina Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¤ćƒžć‚·ćƒŠ'),
(124155, 'https://ror.org/02v4jtv70', 'no_lang_code', 1, 'https://ror.org/02v4jtv70 Kikusui Electronics Corp. Kikusui Electronics Corp. (Japan) čŠę°“é›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124156, 'https://ror.org/05n8vzb74', 'no_lang_code', 1, 'https://ror.org/05n8vzb74 OTAX Co., Ltd. OTAX Co., Ltd. (Japan) ć‚Ŗćƒ¼ć‚æćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(124157, 'https://ror.org/0052mmx10', 'en', 1, 'https://ror.org/0052mmx10 Bharati Vidyapeeth Deemed University ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(124158, 'https://ror.org/02ymmdj85', 'en', 1, 'https://ror.org/02ymmdj85 Robert Wood Johnson Foundation'),
(124159, 'https://ror.org/014w0bx13', 'no_lang_code', 1, 'https://ror.org/014w0bx13 UEDA Japan Radio Co., Ltd. UEDA Japan Radio Co., Ltd. (Japan) äøŠē”°ę—„ęœ¬ē„”ē·šę Ŗå¼ä¼šē¤¾'),
(124160, 'https://ror.org/039f1zz55', 'no_lang_code', 1, 'https://ror.org/039f1zz55 Aquas Corporation Aquas Corporation (Japan) ć‚¢ć‚Æć‚¢ć‚¹ę Ŗå¼ä¼šē¤¾'),
(124161, 'https://ror.org/04ejdtr48', 'en', 1, 'https://ror.org/04ejdtr48 Institute of Bioorganic Chemistry, Polish Academy of Sciences Instytut Chemii Bioorganicznej Polskiej Akademii Nauk'),
(124162, 'https://ror.org/05pdhf702', 'no_lang_code', 1, 'https://ror.org/05pdhf702 GH Craft Co., Ltd. GH Craft Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ć‚Øć‚¤ćƒć‚Æćƒ©ćƒ•ćƒˆ'),
(124163, 'https://ror.org/05h1tag88', 'no_lang_code', 1, 'https://ror.org/05h1tag88 Pharma Foods International Co., Ltd. Pharma Foods International Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚”ćƒ¼ćƒžćƒ•ćƒ¼ć‚ŗ'),
(124164, 'https://ror.org/04bxkx575', 'en', 1, 'https://ror.org/04bxkx575 Plant and Environmental Research Institute (PERI)'),
(124165, 'https://ror.org/054m6my94', 'en', 1, 'https://ror.org/054m6my94 Northern University of Business and Technology Khulna'),
(124166, 'https://ror.org/05nq3sz50', 'en', 1, 'https://ror.org/05nq3sz50 Victorian Centre for Functional Genomics'),
(124167, 'https://ror.org/03f1rr013', 'en', 1, 'https://ror.org/03f1rr013 UC Santa Barbara Microscopy and Microanalysis Facility University of California Santa Barbara Microscopy and Microanalysis Facility'),
(124168, 'https://ror.org/02degdm30', 'no_lang_code', 1, 'https://ror.org/02degdm30 Yamabiko Corporation Yamabiko Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚„ć¾ć³ć“'),
(124169, 'https://ror.org/00gmg7z55', 'fr', 1, 'https://ror.org/00gmg7z55 FƩdƩration de Recherche Agrobiosciences, Interactions et BiodiversitƩ'),
(124170, 'https://ror.org/011qrwa57', 'no_lang_code', 1, 'https://ror.org/011qrwa57 UDK Construction Inc. UDK Construction Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ¼ćƒ‡ć‚£ć‚±ćƒ¼'),
(124171, 'https://ror.org/054xzs214', 'no_lang_code', 1, 'https://ror.org/054xzs214 Chuoh PACK Industry Co., Ltd. Chuoh PACK Industry Co., Ltd. (Japan) äø­å¤®ē“™å™Øå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124172, 'https://ror.org/02h3vq174', 'no_lang_code', 1, 'https://ror.org/02h3vq174 Wakayama Precision Company Wakayama Precision Company (Japan) č‹„å±±ē²¾åÆ†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124173, 'https://ror.org/02mzn7s88', 'en', 1, 'https://ror.org/02mzn7s88 Prifysgol De Cymru University of South Wales'),
(124174, 'https://ror.org/04pv0yy57', 'no_lang_code', 1, 'https://ror.org/04pv0yy57 Igunoss, Inc. Igunoss, Inc. (Japan) ęœ‰é™ä¼šē¤¾ć‚¤ć‚°ćƒŽć‚¹'),
(124175, 'https://ror.org/055mf0v62', 'en', 1, 'https://ror.org/055mf0v62 King Mongkut''s Institute of Technology Ladkrabang ąøŖąø–ąø²ąøšąø±ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ą¹€ąøˆą¹‰ąø²ąø„ąøøąø“ąø—ąø«ąø²ąø£ąø„ąø²ąø”ąøąø£ąø°ąøšąø±ąø‡'),
(124176, 'https://ror.org/01j9spw34', 'no_lang_code', 1, 'https://ror.org/01j9spw34 SCRIPPS Laboratories, Inc. SCRIPPS Laboratories, Inc. (Japan) ć‚¹ć‚ÆćƒŖćƒƒćƒ—ć‚¹ćƒ»ćƒ©ćƒœćƒ©ćƒˆćƒŖćƒ¼ć‚ŗćƒ»ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124177, 'https://ror.org/056gyvr53', 'no_lang_code', 1, 'https://ror.org/056gyvr53 Lubrizol Japan Limited Lubrizol Japan Limited (Japan) ę—„ęœ¬ćƒ«ćƒ¼ćƒ–ćƒŖć‚¾ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(124178, 'https://ror.org/01t178j62', 'en', 1, 'https://ror.org/01t178j62 Luxembourg Institute of Science and Technology'),
(124179, 'https://ror.org/02wnejx52', 'en', 1, 'https://ror.org/02wnejx52 National Academy of Legal Sciences of Ukraine ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ правовых наук Украины ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń правових наук України ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń правових наук України'),
(124180, 'https://ror.org/0225af582', 'no_lang_code', 1, 'https://ror.org/0225af582 Vinyframe Industry Co., Ltd. Vinyframe Industry Co., Ltd. (Japan) ćƒ“ćƒ‹ćƒ•ćƒ¬ćƒ¼ćƒ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124181, 'https://ror.org/03hmsry72', 'no_lang_code', 1, 'https://ror.org/03hmsry72 Ibiko Corporation Ibiko Corporation (Japan) ę–ę–å·å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124182, 'https://ror.org/02fw7km80', 'fr', 1, 'https://ror.org/02fw7km80 Institut de Recherche en Droit EuropƩen, International et ComparƩ (fr) Institute for Research in European, International and Comparative Law (en)'),
(124183, 'https://ror.org/0157wcd97', 'no_lang_code', 1, 'https://ror.org/0157wcd97 HUMANIX Co., Ltd. HUMANIX Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾HUMANIX'),
(124184, 'https://ror.org/03ekyc213', 'no_lang_code', 1, 'https://ror.org/03ekyc213 World Chemical Co., Ltd. World Chemical Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒÆćƒ¼ćƒ«ćƒ‰ć‚±ćƒŸć‚«ćƒ«'),
(124185, 'https://ror.org/05m5pm762', 'no_lang_code', 1, 'https://ror.org/05m5pm762 Matsuura Yakugyo Co., Ltd. Matsuura Yakugyo Co., Ltd. (Japan) ę¾ęµ¦č–¬ę„­ę Ŗå¼ä¼šē¤¾'),
(124186, 'https://ror.org/00ks0ea23', 'en', 0, 'https://ror.org/00ks0ea23 Technological Educational Institute of Piraeus Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Πειραιά'),
(124187, 'https://ror.org/050v6z451', 'no_lang_code', 1, 'https://ror.org/050v6z451 MUSH-TEC Co., Ltd. MUSH-TEC Co., Ltd. (Japan) ćƒžćƒƒć‚·ćƒ„ćƒ»ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124188, 'https://ror.org/02dmqt748', 'no_lang_code', 1, 'https://ror.org/02dmqt748 Micro-Technica Co., Ltd. Micro-Technica Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒžć‚¤ć‚Æćƒ­ćƒ»ćƒ†ć‚Æćƒ‹ć‚«'),
(124189, 'https://ror.org/05ahkhf88', 'en', 1, 'https://ror.org/05ahkhf88 G.S. Kostiuk Institute of Psychology of the National Academy of Educational Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психології імені Š“.Š”. ŠšŠ¾ŃŃ‚ŃŽŠŗŠ° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії пеГагогічних наук України'),
(124190, 'https://ror.org/010czc398', 'no_lang_code', 1, 'https://ror.org/010czc398 Nitchitsu Co., Ltd. Nitchitsu Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒƒćƒćƒ„'),
(124191, 'https://ror.org/04kpeq469', 'no_lang_code', 1, 'https://ror.org/04kpeq469 Arakawa Chemical Industries, Ltd. Arakawa Chemical Industries, Ltd. (Japan) č’å·åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124192, 'https://ror.org/01cvw6a84', 'no_lang_code', 1, 'https://ror.org/01cvw6a84 Logisnext Co., Ltd. Logisnext Co., Ltd. (Japan) ćƒ­ć‚øć‚¹ćƒć‚Æć‚¹ćƒˆćƒ¦ćƒ‹ć‚­ćƒ£ćƒŖć‚¢ę Ŗå¼ä¼šē¤¾'),
(124193, 'https://ror.org/00qm8qx83', 'no_lang_code', 1, 'https://ror.org/00qm8qx83 Wesco Inc. Wesco Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¦ć‚Øć‚¹ć‚³'),
(124194, 'https://ror.org/055q3z340', 'no_lang_code', 1, 'https://ror.org/055q3z340 Telnite Co., Ltd. Telnite Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ćƒ«ćƒŠć‚¤ćƒˆ'),
(124195, 'https://ror.org/03k93wc57', 'en', 1, 'https://ror.org/03k93wc57 Department of Science and Technology and Biotechnology'),
(124196, 'https://ror.org/01ktkha15', 'no_lang_code', 1, 'https://ror.org/01ktkha15 Kentech Corporation Kentech Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚±ćƒ³ćƒ†ćƒƒć‚Æ'),
(124197, 'https://ror.org/03hea7j63', 'en', 1, 'https://ror.org/03hea7j63 Nandha Siddha Medical College and Hospital'),
(124198, 'https://ror.org/03vh6e075', 'cs', 1, 'https://ror.org/03vh6e075 National Pedagogical Institute of the Czech Republic NÔrodní pedagogický institut České republiky'),
(124199, 'https://ror.org/03wt3br81', 'en', 1, 'https://ror.org/03wt3br81 Klimat- och nƤringslivsdepartementet Ministry of Climate and Enterprise'),
(124200, 'https://ror.org/05st8r877', 'no_lang_code', 1, 'https://ror.org/05st8r877 Anaeropharma Science Anaeropharma Science (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒćƒ­ćƒ•ć‚”ćƒ¼ćƒžćƒ»ć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(124201, 'https://ror.org/042xmz674', 'fr', 1, 'https://ror.org/042xmz674 Laboratoire de Physique et Chimie des Nano-Objets'),
(124202, 'https://ror.org/05eqqvk78', 'no_lang_code', 1, 'https://ror.org/05eqqvk78 Janssen Pharmaceutical K.K. Janssen Pharmaceutical K.K. (Japan) ćƒ¤ćƒ³ć‚»ćƒ³ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(124203, 'https://ror.org/051cdv813', 'no_lang_code', 1, 'https://ror.org/051cdv813 Hosei Brake Industry Co., Ltd. Hosei Brake Industry Co., Ltd. (Japan) č±Šē”Ÿćƒ–ćƒ¬ćƒ¼ć‚­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124204, 'https://ror.org/03hf5a790', 'no_lang_code', 1, 'https://ror.org/03hf5a790 Siliconit Co., Ltd. Siliconit Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ćƒŖć‚³ćƒ‹ćƒƒćƒˆ'),
(124205, 'https://ror.org/057c9m085', 'no_lang_code', 1, 'https://ror.org/057c9m085 Kagome Co., Ltd. Kagome Co., Ltd. (Japan) ć‚«ć‚“ćƒ”ę Ŗå¼ä¼šē¤¾'),
(124206, 'https://ror.org/016ckbf54', 'no_lang_code', 1, 'https://ror.org/016ckbf54 Toyoko Elmes Co., Ltd. Toyoko Elmes Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę±ęØŖć‚Øćƒ«ćƒ”ć‚¹'),
(124207, 'https://ror.org/0024jbz93', 'no_lang_code', 1, 'https://ror.org/0024jbz93 Kaiyo Engineering Co., Ltd. Kaiyo Engineering Co., Ltd. (Japan) ęµ·ę“‹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(124208, 'https://ror.org/05rxaam77', 'no_lang_code', 1, 'https://ror.org/05rxaam77 Shinnihon Corporation Shinnihon Corporation (Japan) ę–°ę—„ęœ¬å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(124209, 'https://ror.org/02dn9h927', 'en', 1, 'https://ror.org/02dn9h927 Peoples'' Friendship University of Russia Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š“Ń€ŃƒŠ¶Š±Ń‹ нароГов'),
(124210, 'https://ror.org/01nrz1948', 'no_lang_code', 1, 'https://ror.org/01nrz1948 Statcom Co., Ltd. Statcom Co., Ltd. (Japan) ć‚¹ć‚æćƒƒćƒˆć‚³ćƒ ę Ŗå¼ä¼šē¤¾'),
(124211, 'https://ror.org/05t7t3b64', 'no_lang_code', 1, 'https://ror.org/05t7t3b64 Technical Electron Co., Ltd. Technical Electron Co., Ltd. (Japan) ćƒ†ć‚Æćƒ‹ć‚«ćƒ«é›»å­ę Ŗå¼ä¼šē¤¾'),
(124212, 'https://ror.org/00x23qc58', 'no_lang_code', 1, 'https://ror.org/00x23qc58 Hagoromofoods Corporation Hagoromofoods Corporation (Japan) ćÆć”ć‚ć‚‚ćƒ•ćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(124213, 'https://ror.org/02hq66e38', 'no_lang_code', 1, 'https://ror.org/02hq66e38 TSS LINK, Inc. TSS LINK, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚£ć‚Øć‚¹ć‚Øć‚¹ćƒŖćƒ³ć‚Æ'),
(124214, 'https://ror.org/01h7ngc52', 'no_lang_code', 1, 'https://ror.org/01h7ngc52 Solar Frontier K.K. Solar Frontier K.K. (Japan) ć‚½ćƒ¼ćƒ©ćƒ¼ćƒ•ćƒ­ćƒ³ćƒ†ć‚£ć‚¢ę Ŗå¼ä¼šē¤¾'),
(124215, 'https://ror.org/03pp5yt50', 'no_lang_code', 1, 'https://ror.org/03pp5yt50 Tahara Manufacturing Co., Ltd. Tahara Manufacturing Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē”°åŽŸč£½ä½œę‰€'),
(124216, 'https://ror.org/04rj78312', 'no_lang_code', 1, 'https://ror.org/04rj78312 Sankyu Inc. Sankyu Inc. (Japan) å±±ä¹ę Ŗå¼ä¼šē¤¾'),
(124217, 'https://ror.org/016m0br45', 'no_lang_code', 1, 'https://ror.org/016m0br45 BIO-MAKE Company Ltd. BIO-MAKE Company Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚Ŗćƒ”ć‚¤ć‚Æ'),
(124218, 'https://ror.org/01kd65564', 'en', 1, 'https://ror.org/01kd65564 The University of Texas at San Antonio UniversitƩ du texas Ơ san antonio'),
(124219, 'https://ror.org/04e68yn29', 'no_lang_code', 1, 'https://ror.org/04e68yn29 Senshu Scientific Co., Ltd. Senshu Scientific Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ćƒ³ć‚·ćƒ„ćƒ¼ē§‘å­¦'),
(124220, 'https://ror.org/02mpwke65', 'en', 1, 'https://ror.org/02mpwke65 University of Al-Ameed Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł…ŁŠŲÆ'),
(124221, 'https://ror.org/059ex5q34', 'es', 1, 'https://ror.org/059ex5q34 Ministry of Sciences, Humanities, Technology and Innovation Secretaría de Ciencia, Humanidades, Tecnología e Innovación'),
(124222, 'https://ror.org/05amjk847', 'no_lang_code', 1, 'https://ror.org/05amjk847 Cluster Technology Co., Ltd. Cluster Technology Co., Ltd. (Japan) ć‚Æćƒ©ć‚¹ć‚æćƒ¼ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124223, 'https://ror.org/01hy8jd04', 'no', 0, 'https://ror.org/01hy8jd04 Diakonhjemmet University College Diakonhjemmet hĆøgskole'),
(124224, 'https://ror.org/05rhe8003', 'pt', 1, 'https://ror.org/05rhe8003 Faculdade de CiĆŖncias da SaĆŗde de Barretos Dr. Paulo Prata'),
(124225, 'https://ror.org/05mekas97', 'no_lang_code', 1, 'https://ror.org/05mekas97 Interrobot Inc. Interrobot Inc. (Japan) ć‚¤ćƒ³ć‚æćƒ­ćƒœćƒƒćƒˆę Ŗå¼ä¼šē¤¾'),
(124226, 'https://ror.org/05kq0e363', 'no_lang_code', 1, 'https://ror.org/05kq0e363 Katsumura Construction Co., Ltd. Katsumura Construction Co., Ltd. (Japan) å‹ę‘å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(124227, 'https://ror.org/03zytpv11', 'no_lang_code', 1, 'https://ror.org/03zytpv11 Gyosei System Kyushu Gyosei System Kyushu (Japan) č”Œę”æć‚·ć‚¹ćƒ†ćƒ ä¹å·žę Ŗå¼ä¼šē¤¾'),
(124228, 'https://ror.org/049kz4527', 'no_lang_code', 1, 'https://ror.org/049kz4527 Tsumiki House Co., Ltd. Tsumiki House Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć¤ćæććƒć‚¦ć‚¹'),
(124229, 'https://ror.org/00ddq6823', 'no_lang_code', 1, 'https://ror.org/00ddq6823 Bellzsystem, Inc Bellzsystem, Inc (Japan) ćƒ™ćƒ«ć‚ŗć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(124230, 'https://ror.org/02mesdb25', 'id', 1, 'https://ror.org/02mesdb25 Sekolah Tinggi Teologi Pelita Kebenaran'),
(124231, 'https://ror.org/03egaj678', 'es', 1, 'https://ror.org/03egaj678 Agencia Nacional de Investigación e Innovación'),
(124232, 'https://ror.org/04qvmaa40', 'no_lang_code', 1, 'https://ror.org/04qvmaa40 Soshin Electric Co., Ltd. Soshin Electric Co., Ltd. (Japan) åŒäæ”é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124233, 'https://ror.org/028aze833', 'no_lang_code', 1, 'https://ror.org/028aze833 Ryonetsu Co., Ltd. Ryonetsu Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾č±ē†±'),
(124234, 'https://ror.org/01h0x8w68', 'no_lang_code', 1, 'https://ror.org/01h0x8w68 Tohcello Co., Ltd. Tohcello Co., Ltd. (Japan) ę±ć‚»ćƒ­ę Ŗå¼ä¼šē¤¾'),
(124235, 'https://ror.org/02d290r06', 'en', 1, 'https://ror.org/02d290r06 Swedish Research Council for Health Working Life and Welfare'),
(124236, 'https://ror.org/0304xfx24', 'en', 1, 'https://ror.org/0304xfx24 Crescendo Biologics Crescendo Biologics Ltd. Crescendo Biologics Ltd. (United Kingdom)'),
(124237, 'https://ror.org/00wk6yx76', 'no_lang_code', 1, 'https://ror.org/00wk6yx76 Bestsystems Inc. Bestsystems Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ™ć‚¹ćƒˆć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(124238, 'https://ror.org/026dzej07', 'no_lang_code', 1, 'https://ror.org/026dzej07 Venture Vision Co., Ltd. Venture Vision Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ™ćƒ³ćƒćƒ£ćƒ¼ćƒ“ć‚øćƒ§ćƒ³'),
(124239, 'https://ror.org/05d0w7e76', 'no_lang_code', 1, 'https://ror.org/05d0w7e76 NON-Destructive Inspection Co., Ltd. NON-Destructive Inspection Co., Ltd. (Japan) éžē “å£Šę¤œęŸ»ę Ŗå¼ä¼šē¤¾'),
(124240, 'https://ror.org/017k52s24', 'en', 1, 'https://ror.org/017k52s24 Turkish Academic Network and Information Center Ulusal Akademik Ağ ve Bilgi Merkezi'),
(124241, 'https://ror.org/01pdnwh89', 'no_lang_code', 1, 'https://ror.org/01pdnwh89 Wacker Asahikasei Silicone Co., Ltd. Wacker Asahikasei Silicone Co., Ltd. (Japan) ę—­åŒ–ęˆćƒÆćƒƒć‚«ćƒ¼ć‚·ćƒŖć‚³ćƒ¼ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124242, 'https://ror.org/02q45qa65', 'no_lang_code', 1, 'https://ror.org/02q45qa65 Sunlit Japan Corp. Sunlit Japan Corp. (Japan) ć‚µćƒ³ćƒŖćƒƒćƒˆć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124243, 'https://ror.org/01j90kz95', 'no_lang_code', 1, 'https://ror.org/01j90kz95 Toenec Corporation Toenec Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ć‚Øćƒćƒƒć‚Æ'),
(124244, 'https://ror.org/002zbcq91', 'hr', 1, 'https://ror.org/002zbcq91 KONČAR - Electrical Engineering Institute KONČAR - Institut za elektrotehniku'),
(124245, 'https://ror.org/049nvyb15', 'es', 1, 'https://ror.org/049nvyb15 Hospital Universitario Fundación Jiménez Díaz'),
(124246, 'https://ror.org/02jy98g05', 'no_lang_code', 1, 'https://ror.org/02jy98g05 Miraial Co., Ltd. Miraial Co., Ltd. (Japan) ćƒŸćƒ©ć‚¤ć‚¢ćƒ«ę Ŗå¼ä¼šē¤¾'),
(124247, 'https://ror.org/04tj4wx16', 'no_lang_code', 1, 'https://ror.org/04tj4wx16 Shinsampei Construction Co., Ltd. Shinsampei Construction Co., Ltd. (Japan) ę–°äø‰å¹³å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(124248, 'https://ror.org/02nbj3t51', 'no_lang_code', 1, 'https://ror.org/02nbj3t51 Myojo Foods Co., Ltd. Myojo Foods Co., Ltd. (Japan) ę˜Žę˜Ÿé£Ÿå“ę Ŗå¼ä¼šē¤¾'),
(124249, 'https://ror.org/05y0xw350', 'no_lang_code', 1, 'https://ror.org/05y0xw350 TAANE Co. Ltd. TAANE Co. Ltd. (Japan) ę Ŗå¼ä¼šē¤¾TAANE'),
(124250, 'https://ror.org/05kchnq57', 'no_lang_code', 1, 'https://ror.org/05kchnq57 Susumu Co., Ltd. Susumu Co., Ltd. (Japan) é€²å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124251, 'https://ror.org/0149ma780', 'no_lang_code', 1, 'https://ror.org/0149ma780 Harunire BIO Laboratory Harunire BIO Laboratory (Japan) ę Ŗå¼ä¼šē¤¾ćÆć‚‹ć«ć‚Œćƒć‚¤ć‚Ŗē ”ē©¶ę‰€'),
(124252, 'https://ror.org/00j55cm59', 'no_lang_code', 1, 'https://ror.org/00j55cm59 Funai Electric Co., Ltd. Funai Electric Co., Ltd. (Japan) čˆ¹äŗ•é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124253, 'https://ror.org/01qsvvx98', 'no_lang_code', 1, 'https://ror.org/01qsvvx98 Dipsol Chemicals Co., Ltd. Dipsol Chemicals Co., Ltd. (Japan) ćƒ‡ć‚£ćƒƒćƒ—ć‚½ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(124254, 'https://ror.org/03kwryr72', 'no_lang_code', 1, 'https://ror.org/03kwryr72 Tesac Wirerope Co., Ltd. Tesac Wirerope Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚¶ćƒƒć‚ÆćƒÆć‚¤ćƒ¤ćƒ­ćƒ¼ćƒ—'),
(124255, 'https://ror.org/007vjpa58', 'no_lang_code', 1, 'https://ror.org/007vjpa58 J-Brain, Inc. J-Brain, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ–ćƒ¬ć‚¤ćƒ³'),
(124256, 'https://ror.org/00ws5a823', 'no_lang_code', 1, 'https://ror.org/00ws5a823 Kanehatsu Co. Kanehatsu Co. (Japan) ć‚«ćƒćƒćƒ„é£Ÿå“ę Ŗå¼ä¼šē¤¾'),
(124257, 'https://ror.org/04amnxx84', 'en', 1, 'https://ror.org/04amnxx84 University of Technology الجامعة Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ©'),
(124258, 'https://ror.org/02h6eeb72', 'no_lang_code', 1, 'https://ror.org/02h6eeb72 Kandenko Co., Ltd. Kandenko Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é–¢é›»å·„'),
(124259, 'https://ror.org/050be9403', 'no_lang_code', 1, 'https://ror.org/050be9403 Sanzin Corporation Sanzin Corporation (Japan) ęœ‰é™ä¼šē¤¾ć‚µćƒ³ć‚øćƒ³'),
(124260, 'https://ror.org/05wvagp91', 'en', 1, 'https://ror.org/05wvagp91 State institution "South Ukrainian National Pedagogical University named after K. D. Ushynsky" Державний заклаГ Ā«ŠŸŃ–Š²Š“ŠµŠ½Š½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені К. Š”. Ушинського»'),
(124261, 'https://ror.org/059he5v92', 'es', 1, 'https://ror.org/059he5v92 Universidad Centro MƩdico Bautista'),
(124262, 'https://ror.org/05qknva51', 'no_lang_code', 1, 'https://ror.org/05qknva51 Kurihara Kogyo Co., Ltd. Kurihara Kogyo Co., Ltd. (Japan) ę —åŽŸå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124263, 'https://ror.org/05ere1b36', 'no_lang_code', 1, 'https://ror.org/05ere1b36 Yamaichi Electronics Co., Ltd. Yamaichi Electronics Co., Ltd. (Japan) å±±äø€é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124264, 'https://ror.org/02y8f5s24', 'no_lang_code', 1, 'https://ror.org/02y8f5s24 Tomei Kasei Co., Ltd. Tomei Kasei Co., Ltd. (Japan) ę±ååŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(124265, 'https://ror.org/02qycfy73', 'no_lang_code', 1, 'https://ror.org/02qycfy73 Anest Iwata Corporation Anest Iwata Corporation (Japan) ć‚¢ćƒć‚¹ćƒˆå²©ē”°ę Ŗå¼ä¼šē¤¾'),
(124266, 'https://ror.org/054gh3109', 'no_lang_code', 1, 'https://ror.org/054gh3109 Bunka Shutter Co., Ltd. Bunka Shutter Co., Ltd. (Japan) ę–‡åŒ–ć‚·ćƒ¤ćƒƒć‚æćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124267, 'https://ror.org/05s8qbb48', 'no_lang_code', 1, 'https://ror.org/05s8qbb48 Junsei Chemical Co., Ltd. Junsei Chemical Co., Ltd. (Japan) ē“”ę­£åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(124268, 'https://ror.org/03kftev88', 'no_lang_code', 1, 'https://ror.org/03kftev88 M-Tec Co., Ltd. M-Tec Co., Ltd. (Japan) ć‚Øćƒ ćƒ»ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124269, 'https://ror.org/05sbyvs20', 'no_lang_code', 1, 'https://ror.org/05sbyvs20 Yamajirushi Jyozo Co., Ltd. Yamajirushi Jyozo Co., Ltd. (Japan) å±±å°é†øé€ ę Ŗå¼ä¼šē¤¾'),
(124270, 'https://ror.org/003x73b58', 'en', 1, 'https://ror.org/003x73b58 Cluster of Excellence Cross-Cultural Philology Exzellenzcluster Cross-Cultural Philology'),
(124271, 'https://ror.org/05f79jb24', 'no_lang_code', 1, 'https://ror.org/05f79jb24 Rheon Automatic Machinery Co., Ltd. Rheon Automatic Machinery Co., Ltd. (Japan) ćƒ¬ć‚Ŗćƒ³č‡Ŗå‹•ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124272, 'https://ror.org/0541w4719', 'no_lang_code', 1, 'https://ror.org/0541w4719 Chodai Co., Ltd. Chodai Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é•·å¤§'),
(124273, 'https://ror.org/02qv35v10', 'no_lang_code', 1, 'https://ror.org/02qv35v10 Meiwapax Co., Ltd. Meiwapax Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ”ć‚¤ćƒÆćƒ‘ćƒƒć‚Æć‚¹'),
(124274, 'https://ror.org/048pvka79', 'no_lang_code', 1, 'https://ror.org/048pvka79 Iwatsuka Confectionery Co., Ltd. Iwatsuka Confectionery Co., Ltd. (Japan) å²©å”šč£½č“ę Ŗå¼ä¼šē¤¾'),
(124275, 'https://ror.org/04qkyeg11', 'no_lang_code', 1, 'https://ror.org/04qkyeg11 Johnson Company Ltd. Johnson Company Ltd. (Japan) ć‚øćƒ§ćƒ³ć‚½ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124276, 'https://ror.org/04rjjac48', 'no_lang_code', 1, 'https://ror.org/04rjjac48 Denyo Co., Ltd. Denyo Co., Ltd. (Japan) ćƒ‡ćƒ³ćƒØćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124277, 'https://ror.org/05n5wgz63', 'no_lang_code', 1, 'https://ror.org/05n5wgz63 AOMI Construction Co., Ltd. AOMI Construction Co., Ltd. (Japan) ć‚ćŠćæå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(124278, 'https://ror.org/052kmq132', 'es', 1, 'https://ror.org/052kmq132 Fundación Biodiverso Choco'),
(124279, 'https://ror.org/003q2j980', 'no_lang_code', 1, 'https://ror.org/003q2j980 Biofermin Pharmaceutical Co., Ltd. Biofermin Pharmaceutical Co., Ltd. (Japan) ćƒ“ć‚Ŗćƒ•ć‚§ćƒ«ćƒŸćƒ³č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(124280, 'https://ror.org/011qk3k39', 'no_lang_code', 1, 'https://ror.org/011qk3k39 MM Bridge Co., Ltd. MM Bridge Co., Ltd. (Japan) ć‚Øćƒ ćƒ»ć‚Øćƒ ćƒ–ćƒŖćƒƒć‚øę Ŗå¼ä¼šē¤¾'),
(124281, 'https://ror.org/02dgjyy92', 'en', 1, 'https://ror.org/02dgjyy92 Universidad de Miami University of Miami UniversitƩ de miami'),
(124282, 'https://ror.org/04j5jqy92', 'en', 1, 'https://ror.org/04j5jqy92 Conseil de Recherches en Sciences Humaines Social Sciences and Humanities Research Council'),
(124283, 'https://ror.org/01h531d29', 'en', 1, 'https://ror.org/01h531d29 Conseil de Recherches en Sciences Naturelles et en GƩnie du Canada Natural Sciences and Engineering Research Council Natural Sciences and Engineering Research Council of Canada'),
(124284, 'https://ror.org/00pqz0q24', 'en', 1, 'https://ror.org/00pqz0q24 Institute for Life and Medical Sciences, Kyoto University äŗ¬éƒ½å¤§å­¦åŒ»ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(124285, 'https://ror.org/03h8jbn87', 'no_lang_code', 1, 'https://ror.org/03h8jbn87 Allied Lasers, Inc. Allied Lasers, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ©ć‚¤ćƒ‰ćƒ¬ćƒ¼ć‚¶ćƒ¼'),
(124286, 'https://ror.org/04q594367', 'no_lang_code', 1, 'https://ror.org/04q594367 Kowabo Company Ltd. Kowabo Company Ltd. (Japan) čˆˆå’Œē“”ę Ŗå¼ä¼šē¤¾'),
(124287, 'https://ror.org/026b4y463', 'no_lang_code', 1, 'https://ror.org/026b4y463 Bando Chemical Industries, Ltd. Bando Chemical Industries, Ltd. (Japan) ćƒćƒ³ćƒ‰ćƒ¼åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(124288, 'https://ror.org/018y56097', 'no_lang_code', 1, 'https://ror.org/018y56097 Tachibana Metal MFG. Co., Ltd. Tachibana Metal MFG. Co., Ltd. (Japan) ē«‹čŠ±é‡‘å±žå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124289, 'https://ror.org/0084x3h80', 'fr', 1, 'https://ror.org/0084x3h80 Centre de Recherche Astrophysique de Lyon Centre for Astronomical Reseach of Lyon'),
(124290, 'https://ror.org/01v3fsc55', 'en', 1, 'https://ror.org/01v3fsc55 Office of the Director of National Intelligence'),
(124291, 'https://ror.org/047431r43', 'no_lang_code', 1, 'https://ror.org/047431r43 KING Industrial Co., Ltd. KING Industrial Co., Ltd. (Japan) ć‚­ćƒ³ć‚°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124292, 'https://ror.org/04pc8nz73', 'no_lang_code', 1, 'https://ror.org/04pc8nz73 Daikyo Nishikawa Co., Ltd. Daikyo Nishikawa Co., Ltd. (Japan) ćƒ€ć‚¤ć‚­ćƒ§ćƒ¼ćƒ‹ć‚·ć‚«ćƒÆę Ŗå¼ä¼šē¤¾'),
(124293, 'https://ror.org/040c8fa41', 'no_lang_code', 1, 'https://ror.org/040c8fa41 OYO Corporation OYO Corporation (Japan) åæœē”Øåœ°č³Ŗę Ŗå¼ä¼šē¤¾'),
(124294, 'https://ror.org/01m7hsj55', 'no_lang_code', 1, 'https://ror.org/01m7hsj55 SHO-BOND Corporation SHO-BOND Corporation (Japan) ć‚·ćƒ§ćƒ¼ćƒœćƒ³ćƒ‰å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(124295, 'https://ror.org/027swwp58', 'no_lang_code', 1, 'https://ror.org/027swwp58 Tokuju Corporation Tokuju Corporation (Japan) ę Ŗå¼ä¼šē¤¾å¾³åÆæå·„ä½œę‰€'),
(124296, 'https://ror.org/04npenj86', 'no_lang_code', 1, 'https://ror.org/04npenj86 Natsume Optical Corporation Natsume Optical Corporation (Japan) å¤ē›®å…‰å­¦ę Ŗå¼ä¼šē¤¾'),
(124297, 'https://ror.org/05sgjbz66', 'no_lang_code', 1, 'https://ror.org/05sgjbz66 Atomix Co., Ltd. Atomix Co., Ltd. (Japan) ć‚¢ćƒˆćƒŸć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(124298, 'https://ror.org/02xpnf105', 'no_lang_code', 1, 'https://ror.org/02xpnf105 Teito Rubber Ltd. Teito Rubber Ltd. (Japan) åøéƒ½ć‚“ćƒ ę Ŗå¼ä¼šē¤¾'),
(124299, 'https://ror.org/04dnz8q13', 'es', 1, 'https://ror.org/04dnz8q13 Sociedad CientĆ­fica de Estudiantes de Medicina Agustinos (SOCIEMA)'),
(124300, 'https://ror.org/02ygf8049', 'no_lang_code', 1, 'https://ror.org/02ygf8049 Kasuga Electric Works, Ltd. Kasuga Electric Works, Ltd. (Japan) ę˜„ę—„é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124301, 'https://ror.org/05jsvx592', 'en', 0, 'https://ror.org/05jsvx592 University of Glamorgan'),
(124302, 'https://ror.org/0515k5w36', 'en', 1, 'https://ror.org/0515k5w36 Rita Allen Foundation'),
(124303, 'https://ror.org/00fat6236', 'no_lang_code', 1, 'https://ror.org/00fat6236 Okitsumo Inc. Okitsumo Inc. (Japan) ć‚Ŗć‚­ćƒ„ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(124304, 'https://ror.org/00q5ep424', 'es', 1, 'https://ror.org/00q5ep424 Campus El Llano Aguascalientes Instituto Tecnológico El Llano Aguascalientes'),
(124305, 'https://ror.org/04yxbfd21', 'no_lang_code', 1, 'https://ror.org/04yxbfd21 Tobu Railway Co., Ltd. Tobu Railway Co., Ltd. (Japan) ę±ę­¦é‰„é“ę Ŗå¼ä¼šē¤¾'),
(124306, 'https://ror.org/048xj8s16', 'en', 1, 'https://ror.org/048xj8s16 Bradford Institute for Health Research'),
(124307, 'https://ror.org/004xtaq37', 'es', 1, 'https://ror.org/004xtaq37 Universidad UNIDOS'),
(124308, 'https://ror.org/02cmdtw71', 'no_lang_code', 1, 'https://ror.org/02cmdtw71 Luciola Inc. Luciola Inc. (Japan) ęœ‰é™ä¼šē¤¾ćƒ«ć‚·ć‚Ŗćƒ©'),
(124309, 'https://ror.org/02qsms644', 'no_lang_code', 1, 'https://ror.org/02qsms644 Sinko Industries Ltd. Sinko Industries Ltd. (Japan) ę–°ę™ƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124310, 'https://ror.org/0595g6948', 'en', 1, 'https://ror.org/0595g6948 Society of Fire Protection Engineers'),
(124311, 'https://ror.org/0496an043', 'no_lang_code', 1, 'https://ror.org/0496an043 Apollo Electric Co., Ltd. Apollo Electric Co., Ltd. (Japan) ć‚¢ćƒćƒ­é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(124312, 'https://ror.org/043sevc14', 'no_lang_code', 1, 'https://ror.org/043sevc14 SOKEN, Inc SOKEN, Inc (Japan) ę Ŗå¼ä¼šē¤¾SOKEN'),
(124313, 'https://ror.org/03jvmpk12', 'no_lang_code', 1, 'https://ror.org/03jvmpk12 Ikari Sauce Co., Ltd. Ikari Sauce Co., Ltd. (Japan) ć‚¤ć‚«ćƒŖć‚½ćƒ¼ć‚¹ę Ŗå¼ä¼šē¤¾'),
(124314, 'https://ror.org/007d3bf57', 'no_lang_code', 1, 'https://ror.org/007d3bf57 TJM Design Corp. TJM Design Corp. (Japan) ę Ŗå¼ä¼šē¤¾TJMćƒ‡ć‚¶ć‚¤ćƒ³'),
(124315, 'https://ror.org/03emtce97', 'no_lang_code', 1, 'https://ror.org/03emtce97 Kanazawa University Technology Licensing Organization, Ltd. Kanazawa University Technology Licensing Organization, Ltd. (Japan) ęœ‰é™ä¼šē¤¾é‡‘ę²¢å¤§å­¦ćƒ†ć‚£ćƒ»ć‚Øćƒ«ćƒ»ć‚Ŗćƒ¼'),
(124316, 'https://ror.org/01hxchc80', 'no_lang_code', 1, 'https://ror.org/01hxchc80 Ecompute Corporation Ecompute Corporation (Japan) ć‚¤ćƒ¼ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ćƒˆę Ŗå¼ä¼šē¤¾'),
(124317, 'https://ror.org/010wm6d89', 'no_lang_code', 1, 'https://ror.org/010wm6d89 Kushiro Seisakusho Co., Ltd. Kushiro Seisakusho Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é‡§č·Æč£½ä½œę‰€'),
(124318, 'https://ror.org/05kgyr955', 'en', 1, 'https://ror.org/05kgyr955 Directorate of Knowledge Management in Agriculture'),
(124319, 'https://ror.org/0055k7a87', 'en', 1, 'https://ror.org/0055k7a87 New Energy and Industrial Technology Development Organization å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę–°ć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»ē”£ę„­ęŠ€č”“ē·åˆé–‹ē™ŗę©Ÿę§‹ ę–°ć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»ē”£ę„­ęŠ€č”“ē·åˆé–‹ē™ŗę©Ÿę§‹'),
(124320, 'https://ror.org/03d48rr15', 'en', 1, 'https://ror.org/03d48rr15 Afghan International Islamic University افغان Ł†Ś“ŪŒŁˆŲ§Ł„ Ų§Ų³Ł„Ų§Ł…ŁŠ Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų§Ų³Ł„Ų§Ł…ŪŒ ŲØŪŒŁ† Ų§Ł„Ł…Ł„Ł„ŪŒ افغان'),
(124321, 'https://ror.org/020sh2y73', 'no_lang_code', 1, 'https://ror.org/020sh2y73 ie-Solution Corporation ie-Solution Corporation (Japan) ie-Solution Corporationn (Japan) ć‚¢ć‚¤ćƒ»ć‚¤ćƒ¼ćƒ»ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124322, 'https://ror.org/052zjhb95', 'en', 1, 'https://ror.org/052zjhb95 Institute for Research in Humanities, Kyoto University äŗ¬éƒ½å¤§å­¦äŗŗę–‡ē§‘å­¦ē ”ē©¶ę‰€'),
(124323, 'https://ror.org/00jjsc103', 'no_lang_code', 1, 'https://ror.org/00jjsc103 Fenwal Controls OF Japan Ltd. Fenwal Controls OF Japan Ltd. (Japan) ę—„ęœ¬ćƒ•ć‚§ćƒ³ć‚Ŗćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(124324, 'https://ror.org/03j30yc45', 'en', 1, 'https://ror.org/03j30yc45 Research Institute for Mathematical Sciences, Kyoto University äŗ¬éƒ½å¤§å­¦ę•°ē†č§£ęžē ”ē©¶ę‰€'),
(124325, 'https://ror.org/05arsb503', 'no_lang_code', 1, 'https://ror.org/05arsb503 Ethylene Chemical Co., Ltd. Ethylene Chemical Co., Ltd. (Japan) ć‚Øćƒćƒ¬ćƒ³ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(124326, 'https://ror.org/010ra1654', 'no_lang_code', 1, 'https://ror.org/010ra1654 Yaegaki BIO-Industry Inc. Yaegaki BIO-Industry Inc. (Japan) ćƒ¤ćƒ±ć‚¬ć‚­é†—é…µęŠ€ē ”ę Ŗå¼ä¼šē¤¾'),
(124327, 'https://ror.org/01p1f8250', 'en', 1, 'https://ror.org/01p1f8250 Toyohashi SOZO Junior College č±Šę©‹å‰µé€ å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(124328, 'https://ror.org/059a13q84', 'no_lang_code', 1, 'https://ror.org/059a13q84 Starlet Corporation Starlet Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ć‚æćƒ¼ćƒ¬ćƒƒćƒˆ'),
(124329, 'https://ror.org/00zfn8q88', 'no_lang_code', 1, 'https://ror.org/00zfn8q88 Taiheiyo Cement Corporation Taiheiyo Cement Corporation (Japan) å¤Ŗå¹³ę“‹ć‚»ćƒ”ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(124330, 'https://ror.org/034fw2588', 'pt', 1, 'https://ror.org/034fw2588 CPAH - Centro de Pesquisa e AnƔlises HerƔclito'),
(124331, 'https://ror.org/042tvkm82', 'no_lang_code', 1, 'https://ror.org/042tvkm82 IMRA Material R&D Co., Ltd. IMRA Material R&D Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ ćƒ©ęę–™é–‹ē™ŗē ”ē©¶ę‰€'),
(124332, 'https://ror.org/04fg4fd44', 'no_lang_code', 1, 'https://ror.org/04fg4fd44 TOEI Electric Co., Ltd. TOEI Electric Co., Ltd. (Japan) ę±ę „é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124333, 'https://ror.org/0345qa866', 'no_lang_code', 1, 'https://ror.org/0345qa866 Kyokuyo Co., Ltd. Kyokuyo Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę„µę“‹'),
(124334, 'https://ror.org/03kec1b09', 'no_lang_code', 1, 'https://ror.org/03kec1b09 Tosho Printing Co., Ltd. Tosho Printing Co., Ltd. (Japan) å›³ę›øå°åˆ·ę Ŗå¼ä¼šē¤¾'),
(124335, 'https://ror.org/02g5mj653', 'no_lang_code', 1, 'https://ror.org/02g5mj653 Asics Corporation Asics Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚·ćƒƒć‚Æć‚¹'),
(124336, 'https://ror.org/01veyhm30', 'no_lang_code', 1, 'https://ror.org/01veyhm30 Shiono Koryo Kaisha, Ltd. Shiono Koryo Kaisha, Ltd. (Japan) å”©é‡Žé¦™ę–™ę Ŗå¼ä¼šē¤¾'),
(124337, 'https://ror.org/045ybb560', 'no_lang_code', 1, 'https://ror.org/045ybb560 Robust Engineering Inc. Robust Engineering Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ­ćƒć‚¹ćƒˆć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(124338, 'https://ror.org/05dry3213', 'en', 1, 'https://ror.org/05dry3213 Pidstryhach Institute for Applied Problems of Mechanics and Mathematics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГних проблем механіки і математики ім. ŠÆ. Š”. ŠŸŃ–Š“ŃŃ‚Ń€ŠøŠ³Š°Ń‡Š°'),
(124339, 'https://ror.org/02rbz2e60', 'no_lang_code', 1, 'https://ror.org/02rbz2e60 Anelva Corporation Anelva Corporation (Japan) ć‚¢ćƒćƒ«ćƒę Ŗå¼ä¼šē¤¾'),
(124340, 'https://ror.org/03bdt1p29', 'de', 1, 'https://ror.org/03bdt1p29 City of Basel Music Academy Musik Akademie Basel'),
(124341, 'https://ror.org/059sp8j34', 'es', 1, 'https://ror.org/059sp8j34 Instituto PolitƩcnico Nacional National Polytechnic Institute'),
(124342, 'https://ror.org/01degd278', 'en', 1, 'https://ror.org/01degd278 Paul G. Allen Family Foundation'),
(124343, 'https://ror.org/05gprh649', 'no_lang_code', 1, 'https://ror.org/05gprh649 Kamacho Scale Co., Ltd. Kamacho Scale Co., Ltd. (Japan) éŽŒé•·č£½č””ę Ŗå¼ä¼šē¤¾'),
(124344, 'https://ror.org/00dzxvt87', 'no_lang_code', 1, 'https://ror.org/00dzxvt87 TLO-Kyoto Co., Ltd. TLO-Kyoto Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾TLO京都'),
(124345, 'https://ror.org/05wrr8j90', 'no_lang_code', 1, 'https://ror.org/05wrr8j90 Sumihatsu Co., Ltd. Sumihatsu Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ćƒŸćƒćƒ„'),
(124346, 'https://ror.org/00n6czj17', 'pt', 1, 'https://ror.org/00n6czj17 Faculdade Gennari e Peartree - FGP'),
(124347, 'https://ror.org/03tb53y24', 'en', 1, 'https://ror.org/03tb53y24 Safe Sport International'),
(124348, 'https://ror.org/03d7d0579', 'en', 1, 'https://ror.org/03d7d0579 NIHR Evaluation Trials and Studies Coordinating Centre'),
(124349, 'https://ror.org/02yfj0568', 'no_lang_code', 1, 'https://ror.org/02yfj0568 I-Transport LAB. Co., Ltd. I-Transport LAB. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ»ćƒˆćƒ©ćƒ³ć‚¹ćƒćƒ¼ćƒˆćƒ»ćƒ©ćƒœ'),
(124350, 'https://ror.org/01bqm2p75', 'no_lang_code', 1, 'https://ror.org/01bqm2p75 Suntechnos Corporation Suntechnos Corporation (Japan) ć‚µćƒ³ćƒ†ć‚ÆćƒŽć‚¹ę Ŗå¼ä¼šē¤¾'),
(124351, 'https://ror.org/00nwtda10', 'no_lang_code', 1, 'https://ror.org/00nwtda10 Hayakawa Rubber Co., Ltd. Hayakawa Rubber Co., Ltd. (Japan) ę—©å·ć‚“ćƒ ę Ŗå¼ä¼šē¤¾'),
(124352, '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'),
(124353, 'https://ror.org/01m7t7t10', 'no_lang_code', 1, 'https://ror.org/01m7t7t10 Jyukankyo Research Institute Inc. Jyukankyo Research Institute Inc. (Japan) ę Ŗå¼ä¼šē¤¾ä½ē’°å¢ƒčØˆē”»ē ”ē©¶ę‰€'),
(124354, 'https://ror.org/02yvwft18', 'no_lang_code', 1, 'https://ror.org/02yvwft18 Totoku Electric Co., Ltd. Totoku Electric Co., Ltd. (Japan) ę±äŗ¬ē‰¹ę®Šé›»ē·šę Ŗå¼ä¼šē¤¾'),
(124355, 'https://ror.org/01czce990', 'no_lang_code', 1, 'https://ror.org/01czce990 Genome Pharmaceuticals Institute Genome Pharmaceuticals Institute (Japan) ę Ŗå¼ä¼šē¤¾ć‚²ćƒŽćƒ å‰µč–¬ē ”ē©¶ę‰€'),
(124356, 'https://ror.org/0314jjx45', 'no_lang_code', 1, 'https://ror.org/0314jjx45 Taitsu Corporation Taitsu Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚¤ćƒ„ć‚¦'),
(124357, 'https://ror.org/04vfep237', 'no_lang_code', 1, 'https://ror.org/04vfep237 Brother Industries, Ltd. Brother Industries, Ltd. (Japan) ćƒ–ćƒ©ć‚¶ćƒ¼å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124358, 'https://ror.org/043k0ca09', 'no_lang_code', 1, 'https://ror.org/043k0ca09 Kensoh Co., Ltd. Kensoh Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē ”å‰µ'),
(124359, 'https://ror.org/057rtj596', 'no_lang_code', 1, 'https://ror.org/057rtj596 Ozaki MFG. Co., Ltd. Ozaki MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å°¾å“Žč£½ä½œę‰€'),
(124360, 'https://ror.org/026f5t610', 'no_lang_code', 1, 'https://ror.org/026f5t610 Pulstec Industrial Co., Ltd. Pulstec Industrial Co., Ltd. (Japan) ćƒ‘ćƒ«ć‚¹ćƒ†ćƒƒć‚Æå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124361, 'https://ror.org/00pdd0432', 'fr', 1, 'https://ror.org/00pdd0432 Centre de Recherche en Neurosciences de Lyon Lyon Neuroscience Research Center'),
(124362, 'https://ror.org/00y8hdp93', 'fr', 1, 'https://ror.org/00y8hdp93 UnitƩ de recherches Transitions Organisations Politiques InƩgalitƩs'),
(124363, 'https://ror.org/05sr7s253', 'en', 1, 'https://ror.org/05sr7s253 Ukrainian Order "Sign of Honour" Research Institute of Forestry and Forest Melioration Named after G. M. Vysotsky Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ ŠžŃ€Š“ŠµŠ½Š° "Знак Пошани" ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ДосліГний Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Лісового ГоспоГарства та Агролісомеліорації ім. Š“. М. Š’ŠøŃŠ¾Ń†ŃŒŠŗŠ¾Š³Š¾'),
(124364, 'https://ror.org/02hqv2m09', 'no_lang_code', 1, 'https://ror.org/02hqv2m09 Ohtsuka Sangyo Creates Co., Ltd. Ohtsuka Sangyo Creates Co., Ltd. (Japan) å¤§å”šē”£ę„­ć‚ÆćƒŖć‚Øć‚¤ćƒ„ę Ŗå¼ä¼šē¤¾'),
(124365, 'https://ror.org/007y6th13', 'en', 1, 'https://ror.org/007y6th13 National Dendrological Park "Sofiyivka" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ГенГрологічний парк "Дофіївка" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(124366, 'https://ror.org/020p3ce06', 'no_lang_code', 1, 'https://ror.org/020p3ce06 Private Finance Initiative Promotion Corporation of Japan Private Finance Initiative Promotion Corporation of Japan (Japan) ę Ŗå¼ä¼šē¤¾ę°‘é–“č³‡é‡‘ē­‰ę“»ē”Øäŗ‹ę„­ęŽØé€²ę©Ÿę§‹'),
(124367, 'https://ror.org/03q0j8383', 'no_lang_code', 1, 'https://ror.org/03q0j8383 SICS Inc. SICS Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ćƒƒć‚Æć‚¹'),
(124368, 'https://ror.org/05t2ezn87', 'no_lang_code', 1, 'https://ror.org/05t2ezn87 Advanex Inc. Advanex Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒćƒć‚Æć‚¹'),
(124369, 'https://ror.org/022q1yv36', 'no_lang_code', 1, 'https://ror.org/022q1yv36 Appirits Appirits (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ”ćƒŖćƒƒćƒ„'),
(124370, 'https://ror.org/04rgbza34', 'no_lang_code', 1, 'https://ror.org/04rgbza34 Surugaya Co., Ltd. Surugaya Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é§æę²³å±‹'),
(124371, 'https://ror.org/017qhzr74', 'no_lang_code', 1, 'https://ror.org/017qhzr74 Kanefusa Corporation Kanefusa Corporation (Japan) å…¼ęˆæę Ŗå¼ä¼šē¤¾'),
(124372, 'https://ror.org/021e5j056', 'en', 1, 'https://ror.org/021e5j056 Kuwait University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁˆŁŠŲŖ'),
(124373, 'https://ror.org/03234qj48', 'no_lang_code', 1, 'https://ror.org/03234qj48 Marutaka Industry Inc. Marutaka Industry Inc. (Japan) äøøé«˜å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124374, 'https://ror.org/01rvfkb44', 'no_lang_code', 1, 'https://ror.org/01rvfkb44 Yoshitake Inc. Yoshitake Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒØć‚·ć‚æć‚±'),
(124375, 'https://ror.org/00jtdfa27', 'no_lang_code', 1, 'https://ror.org/00jtdfa27 Enomoto Co., Ltd. Enomoto Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚ØćƒŽćƒ¢ćƒˆ'),
(124376, 'https://ror.org/05x240v52', 'no_lang_code', 1, 'https://ror.org/05x240v52 Paint House Co., Ltd. Paint House Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒšć‚¤ćƒ³ćƒˆćƒć‚¦ć‚¹'),
(124377, 'https://ror.org/04q6vss70', 'no_lang_code', 1, 'https://ror.org/04q6vss70 Fujipream Corporation Fujipream Corporation (Japan) ćƒ•ć‚øćƒ—ćƒ¬ć‚¢ćƒ ę Ŗå¼ä¼šē¤¾'),
(124378, 'https://ror.org/03vn21w66', 'no_lang_code', 1, 'https://ror.org/03vn21w66 Bandai Namco Entertainment Inc. Bandai Namco Entertainment Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒ³ćƒ€ć‚¤ćƒŠćƒ ć‚³ć‚Øćƒ³ć‚æćƒ¼ćƒ†ć‚¤ćƒ³ćƒ”ćƒ³ćƒˆ'),
(124379, 'https://ror.org/03tnxz577', 'no_lang_code', 1, 'https://ror.org/03tnxz577 SUNX Limited SUNX Limited (Japan) SUNXę Ŗå¼ä¼šē¤¾'),
(124380, 'https://ror.org/00fshrd58', 'no_lang_code', 1, 'https://ror.org/00fshrd58 Micronix Co., Ltd. Micronix Co., Ltd. (Japan) ćƒžć‚¤ć‚Æćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(124381, 'https://ror.org/042snzn39', 'no_lang_code', 1, 'https://ror.org/042snzn39 Yukiguni Maitake Co., Ltd. Yukiguni Maitake Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é›Ŗå›½ć¾ć„ćŸć‘'),
(124382, 'https://ror.org/05qjdv353', 'no_lang_code', 1, 'https://ror.org/05qjdv353 JNC Engineering Co.ltd. JNC Engineering Co.ltd. (Japan) JNCć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(124383, 'https://ror.org/011mhmr09', 'no_lang_code', 1, 'https://ror.org/011mhmr09 Microphase Co., Ltd. Microphase Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒžć‚¤ć‚Æćƒ­ćƒ•ć‚§ćƒ¼ć‚ŗ'),
(124384, 'https://ror.org/02hhnp155', 'no_lang_code', 1, 'https://ror.org/02hhnp155 ERC Inc. ERC Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ć‚¢ćƒ¼ćƒ«ć‚·ćƒ¼'),
(124385, 'https://ror.org/02a493f04', 'no_lang_code', 1, 'https://ror.org/02a493f04 Oxide Corporation Oxide Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗć‚­ć‚µć‚¤ćƒ‰'),
(124386, 'https://ror.org/04172d268', 'en', 1, 'https://ror.org/04172d268 Indigenous Diabetes Health Circle'),
(124387, 'https://ror.org/0417eg073', 'no_lang_code', 1, 'https://ror.org/0417eg073 Dalton Corporation Dalton Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ćƒ«ćƒˆćƒ³'),
(124388, 'https://ror.org/02d3jmt71', 'no_lang_code', 1, 'https://ror.org/02d3jmt71 Kurogane Kosakusho Ltd. Kurogane Kosakusho Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćć‚ćŒć­å·„ä½œę‰€'),
(124389, 'https://ror.org/03eh3y714', 'en', 1, 'https://ror.org/03eh3y714 Institut Paul Scherrer Paul Scherrer Institute'),
(124390, 'https://ror.org/01xfvbd64', 'no_lang_code', 1, 'https://ror.org/01xfvbd64 Apt. Co. Ltd. Apt. Co. Ltd. (Japan) ć‚¢ćƒ—ćƒˆę Ŗå¼ä¼šē¤¾'),
(124391, 'https://ror.org/005ev8y91', 'no_lang_code', 1, 'https://ror.org/005ev8y91 Kitakyushu Technology Center Co., Ltd. Kitakyushu Technology Center Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾åŒ—ä¹å·žćƒ†ć‚ÆćƒŽć‚»ćƒ³ć‚æćƒ¼'),
(124392, 'https://ror.org/01a1r0164', 'no_lang_code', 1, 'https://ror.org/01a1r0164 Buckman Laboratories, K.K. Buckman Laboratories, K.K. (Japan) ćƒćƒƒć‚Æćƒžćƒ³ćƒ©ćƒœćƒ©ćƒˆćƒŖćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(124393, 'https://ror.org/05hkhew61', 'no_lang_code', 1, 'https://ror.org/05hkhew61 Fukada Salvage & Marine Works Co., Ltd. Fukada Salvage & Marine Works Co., Ltd. (Japan) ę·±ē”°ć‚µćƒ«ćƒ™ćƒ¼ć‚øå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(124394, 'https://ror.org/04dtq6t16', 'no_lang_code', 1, 'https://ror.org/04dtq6t16 GMJ, Inc. GMJ, Inc. (Japan) ę Ŗå¼ä¼šē¤¾GMJ'),
(124395, 'https://ror.org/00a3qhe15', 'no_lang_code', 1, 'https://ror.org/00a3qhe15 Gansui, Inc. Gansui, Inc. (Japan) å²©ę°“é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(124396, 'https://ror.org/03dyhwa07', 'no_lang_code', 1, 'https://ror.org/03dyhwa07 Titan Kogyo K.K. Titan Kogyo K.K. (Japan) ćƒć‚æćƒ³å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124397, 'https://ror.org/03ryhbe71', 'no_lang_code', 1, 'https://ror.org/03ryhbe71 Miyano Machinery Japan Co., Ltd. Miyano Machinery Japan Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŸćƒ¤ćƒŽ'),
(124398, 'https://ror.org/055q2mx16', 'no_lang_code', 1, 'https://ror.org/055q2mx16 Fab-Tec Japan Corporation Fab-Tec Japan Corporation (Japan) ę—„ęœ¬ćƒ•ć‚”ćƒ–ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124399, 'https://ror.org/04vyd5a95', 'no_lang_code', 1, 'https://ror.org/04vyd5a95 TXP Medical Co. Ltd TXP Medical Co. Ltd (Japan) TXP Medicalę Ŗå¼ä¼šē¤¾'),
(124400, 'https://ror.org/00dc55483', 'no_lang_code', 1, 'https://ror.org/00dc55483 Akiyama Seiko Co., Ltd. Akiyama Seiko Co., Ltd. (Japan) ē§‹å±±ē²¾é‹¼ę Ŗå¼ä¼šē¤¾'),
(124401, 'https://ror.org/01h4kpz66', 'en', 1, 'https://ror.org/01h4kpz66 Feza Gürsey Enstitüsü Feza Gürsey Institute'),
(124402, 'https://ror.org/03tg64p60', 'no_lang_code', 1, 'https://ror.org/03tg64p60 Daiko Electric Co., Ltd. Daiko Electric Co., Ltd. (Japan) å¤§å…‰é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124403, 'https://ror.org/005506090', 'en', 1, 'https://ror.org/005506090 Innores International'),
(124404, 'https://ror.org/04s545d36', 'no_lang_code', 1, 'https://ror.org/04s545d36 CAR MATE MFG. Co., Ltd. CAR MATE MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ćƒ¼ćƒ”ć‚¤ćƒˆ'),
(124405, 'https://ror.org/04n0yds60', 'no_lang_code', 1, 'https://ror.org/04n0yds60 Zojirushi Corporation Zojirushi Corporation (Japan) č±”å°ćƒžćƒ›ćƒ¼ćƒ“ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124406, 'https://ror.org/03hqxs162', 'de', 1, 'https://ror.org/03hqxs162 KUNSTHALLE GIESSEN'),
(124407, 'https://ror.org/04g2hrr50', 'no_lang_code', 1, 'https://ror.org/04g2hrr50 Nichicon Corporation Nichicon Corporation (Japan) ćƒ‹ćƒć‚³ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124408, 'https://ror.org/05ccjmp23', 'en', 1, 'https://ror.org/05ccjmp23 NIHR Birmingham Biomedical Research Centre'),
(124409, 'https://ror.org/00xfw7s50', 'no_lang_code', 1, 'https://ror.org/00xfw7s50 Hanshin Expressway Company Limited Hanshin Expressway Company Limited (Japan) é˜Ŗē„žé«˜é€Ÿé“č·Æę Ŗå¼ä¼šē¤¾'),
(124410, 'https://ror.org/00pj4ak76', 'en', 1, 'https://ror.org/00pj4ak76 Bhattadev University [ą¦­ą¦Ÿą§ą¦Ÿą¦¦ą§‡ą§± ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼]'),
(124411, 'https://ror.org/03q4hyy14', 'no_lang_code', 1, 'https://ror.org/03q4hyy14 Higeta Shoyu Co., Ltd. Higeta Shoyu Co., Ltd. (Japan) ćƒ’ć‚²ć‚æé†¤ę²¹ę Ŗå¼ä¼šē¤¾'),
(124412, 'https://ror.org/04ftj7e51', 'en', 1, 'https://ror.org/04ftj7e51 National Institute of Public Health StÔtní zdravotní ústav'),
(124413, 'https://ror.org/02bqpgs53', 'en', 1, 'https://ror.org/02bqpgs53 Fukui Institute for Fundamental Chemistry, Kyoto University äŗ¬éƒ½å¤§å­¦ē¦äŗ•č¬™äø€čØ˜åæµē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(124414, 'https://ror.org/02avzpp08', 'fr', 1, 'https://ror.org/02avzpp08 Institut des Etudes Juridiques de l''Urbanisme, de la Construction et de l''Environnement Institute for Legal Studies in Urban Planning, Construction and the Environment'),
(124415, 'https://ror.org/026hj5d07', 'no_lang_code', 1, 'https://ror.org/026hj5d07 Quantum 14 Co., Ltd. Quantum 14 Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ćƒ³ć‚æćƒ 14'),
(124416, 'https://ror.org/00xfw4704', 'no_lang_code', 1, 'https://ror.org/00xfw4704 Yaesu Musen Co., Ltd. Yaesu Musen Co., Ltd. (Japan) å…«é‡ę“²ē„”ē·šę Ŗå¼ä¼šē¤¾'),
(124417, 'https://ror.org/03kvcew91', 'no_lang_code', 1, 'https://ror.org/03kvcew91 Sunpot Co., Ltd. Sunpot Co., Ltd. (Japan) ć‚µćƒ³ćƒćƒƒćƒˆę Ŗå¼ä¼šē¤¾'),
(124418, 'https://ror.org/01mg2ny21', 'en', 1, 'https://ror.org/01mg2ny21 College of Electrical and Electronics Technology'),
(124419, 'https://ror.org/008c74b21', 'no_lang_code', 1, 'https://ror.org/008c74b21 TOSO Co., Ltd. TOSO Co., Ltd. (Japan) ćƒˆćƒ¼ć‚½ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124420, 'https://ror.org/048ngwe58', 'no_lang_code', 1, 'https://ror.org/048ngwe58 Keisei Electric Railway Co., Ltd. Keisei Electric Railway Co., Ltd. (Japan) äŗ¬ęˆé›»é‰„ę Ŗå¼ä¼šē¤¾'),
(124421, 'https://ror.org/023ag7630', 'no_lang_code', 1, 'https://ror.org/023ag7630 Business Science & Technology Co., Ltd. Business Science & Technology Co., Ltd. (Japan) ćƒ“ć‚øćƒć‚¹ć‚µć‚¤ć‚Øćƒ³ć‚¹&ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾');
INSERT INTO `rors` VALUES
(124422, 'https://ror.org/03dthcf51', 'no_lang_code', 1, 'https://ror.org/03dthcf51 Nichiwa Sangyo Co., Ltd. Nichiwa Sangyo Co., Ltd. (Japan) ę—„å’Œē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(124423, 'https://ror.org/04qb32w25', 'no_lang_code', 1, 'https://ror.org/04qb32w25 Todentsu Corporation Todentsu Corporation (Japan) ę Ŗå¼ä¼šē¤¾ę±é›»é€š'),
(124424, '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'),
(124425, 'https://ror.org/0333a7d27', 'no_lang_code', 1, 'https://ror.org/0333a7d27 Engineering System Co., Ltd. Engineering System Co., Ltd. (Japan) ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(124426, 'https://ror.org/03ww8zv69', 'no_lang_code', 1, 'https://ror.org/03ww8zv69 Asahi-Kasei EMD Corporation Asahi-Kasei EMD Corporation (Japan) ę—­åŒ–ęˆć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(124427, 'https://ror.org/01k55bb73', 'no_lang_code', 1, 'https://ror.org/01k55bb73 Takeuchi Vacuum Deposition Co., Ltd. Takeuchi Vacuum Deposition Co., Ltd. (Japan) ē«¹å†…ēœŸē©ŗč¢«č†œę Ŗå¼ä¼šē¤¾'),
(124428, 'https://ror.org/02nsjxj81', 'en', 1, 'https://ror.org/02nsjxj81 Yuriev Plant Production Institute of NAAS of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рослинництва ім. Š’.ŠÆ. Юр''єва ŠŠŠŠ України'),
(124429, 'https://ror.org/01knz8635', 'no_lang_code', 1, 'https://ror.org/01knz8635 Optex Co., Ltd. Optex Co., Ltd. (Japan) ć‚Ŗćƒ—ćƒ†ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(124430, 'https://ror.org/0407gz073', 'fr', 0, 'https://ror.org/0407gz073 Ecole SupƩrieure de Commerce de Rouen Rouen business school'),
(124431, 'https://ror.org/033qya043', 'no_lang_code', 1, 'https://ror.org/033qya043 KH Neochem Co., Ltd. KH Neochem Co., Ltd. (Japan) KHćƒć‚Ŗć‚±ćƒ ę Ŗå¼ä¼šē¤¾'),
(124432, 'https://ror.org/0266wrt04', 'en', 1, 'https://ror.org/0266wrt04 Barts Cancer Institute'),
(124433, 'https://ror.org/01qckj285', 'es', 1, 'https://ror.org/01qckj285 Universidade da CoruƱa Universitat de la Corunya'),
(124434, 'https://ror.org/03wsadn68', 'en', 1, 'https://ror.org/03wsadn68 Association for Computing Machinery'),
(124435, 'https://ror.org/02t2jr932', 'no_lang_code', 1, 'https://ror.org/02t2jr932 Shihen Technical Corporation Shihen Technical Corporation (Japan) å››å¤‰ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124436, 'https://ror.org/02ytvy219', 'no_lang_code', 1, 'https://ror.org/02ytvy219 Yonekyu Corporation Yonekyu Corporation (Japan) ē±³ä¹…ę Ŗå¼ä¼šē¤¾'),
(124437, 'https://ror.org/00phj0n66', 'no_lang_code', 1, 'https://ror.org/00phj0n66 ELNA Co., Ltd. ELNA Co., Ltd. (Japan) ć‚Øćƒ«ćƒŠćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124438, 'https://ror.org/03bw8dy57', 'no_lang_code', 1, 'https://ror.org/03bw8dy57 TCM Corporation TCM Corporation (Japan) TCMę Ŗå¼ä¼šē¤¾'),
(124439, 'https://ror.org/04rw64z44', 'en', 1, 'https://ror.org/04rw64z44 National Foundation for Science and Technology Development Quỹ PhĆ”t triển khoa hį»c vĆ  cĆ“ng nghệ Quốc gia'),
(124440, 'https://ror.org/04p535e55', 'no_lang_code', 1, 'https://ror.org/04p535e55 Hino Motors, Ltd. Hino Motors, Ltd. (Japan) ę—„é‡Žč‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(124441, 'https://ror.org/00zccqv29', 'en', 1, 'https://ror.org/00zccqv29 Samar Colleges, Inc.'),
(124442, 'https://ror.org/0226amb26', 'no_lang_code', 1, 'https://ror.org/0226amb26 Syvec Corporation Syvec Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚µć‚¤ćƒ™ćƒƒć‚Æć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(124443, 'https://ror.org/04xz58m24', 'no_lang_code', 1, 'https://ror.org/04xz58m24 Itogumi Construction Co., Ltd. Itogumi Construction Co., Ltd. (Japan) ä¼Šč—¤ēµ„åœŸå»ŗę Ŗå¼ä¼šē¤¾'),
(124444, 'https://ror.org/02ywf5c76', 'no_lang_code', 1, 'https://ror.org/02ywf5c76 Meinan Machinery Works, Inc. Meinan Machinery Works, Inc. (Japan) ę Ŗå¼ä¼šē¤¾åå—č£½ä½œę‰€'),
(124445, 'https://ror.org/048p06a75', 'es', 1, 'https://ror.org/048p06a75 Centro Experimental de la Vivienda Económica'),
(124446, 'https://ror.org/026qs1r33', 'no_lang_code', 1, 'https://ror.org/026qs1r33 Toshin Electric Co., Ltd. Toshin Electric Co., Ltd. (Japan) ę±ē„žé›»ę°—ę Ŗå¼ä¼šē¤¾'),
(124447, 'https://ror.org/00nb8rz16', 'no_lang_code', 1, 'https://ror.org/00nb8rz16 Ishifuku Metal Industry Co., Ltd. Ishifuku Metal Industry Co., Ltd. (Japan) ēŸ³ē¦é‡‘å±žčˆˆę„­ę Ŗå¼ä¼šē¤¾'),
(124448, 'https://ror.org/01yfs0107', 'no_lang_code', 1, 'https://ror.org/01yfs0107 Araigumi Co., Ltd. Araigumi Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę–°äŗ•ēµ„'),
(124449, 'https://ror.org/020phze85', 'no_lang_code', 1, 'https://ror.org/020phze85 JUJU Cosmetics Co., Ltd. JUJU Cosmetics Co., Ltd. (Japan) ć‚øćƒ„ć‚øćƒ„åŒ–ē²§å“ę Ŗå¼ä¼šē¤¾'),
(124450, 'https://ror.org/03rr54c41', 'no_lang_code', 1, 'https://ror.org/03rr54c41 Kewpie Corporation Kewpie Corporation (Japan) ć‚­ćƒ¦ćƒ¼ćƒ”ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124451, 'https://ror.org/04ewasd39', 'no_lang_code', 1, 'https://ror.org/04ewasd39 Omikenshi Co., Ltd. Omikenshi Co., Ltd. (Japan) ć‚Ŗćƒ¼ćƒŸć‚±ćƒ³ć‚·ę Ŗå¼ä¼šē¤¾'),
(124452, 'https://ror.org/012a1z186', 'no_lang_code', 1, 'https://ror.org/012a1z186 Technosuruga Laboratory Co., Ltd. Technosuruga Laboratory Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚ÆćƒŽć‚¹ćƒ«ć‚¬ćƒ»ćƒ©ćƒœ'),
(124453, 'https://ror.org/01vgcrc78', 'no_lang_code', 1, 'https://ror.org/01vgcrc78 Attain Corporation Attain Corporation (Japan) ć‚¢ćƒ†ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124454, 'https://ror.org/00gcxwh05', 'no_lang_code', 1, 'https://ror.org/00gcxwh05 A.L.M.T. Corp. A.L.M.T. Corp. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ©ć‚¤ćƒ‰ćƒžćƒ†ćƒŖć‚¢ćƒ«'),
(124455, 'https://ror.org/02g0cdr50', 'no_lang_code', 1, 'https://ror.org/02g0cdr50 Overseas Uranium Resources Development Co., Ltd. Overseas Uranium Resources Development Co., Ltd. (Japan) ęµ·å¤–ć‚¦ćƒ©ćƒ³č³‡ęŗé–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(124456, 'https://ror.org/01pe6g187', 'no_lang_code', 1, 'https://ror.org/01pe6g187 NHN Japan Corporation NHN Japan Corporation (Japan) NHN Japanę Ŗå¼ä¼šē¤¾'),
(124457, 'https://ror.org/041x6n622', 'no_lang_code', 1, 'https://ror.org/041x6n622 PLAS-TECH Corporation PLAS-TECH Corporation (Japan) ćƒ—ćƒ©ć‚¹ćƒ»ćƒ†ć‚Æę Ŗå¼ä¼šē¤¾'),
(124458, 'https://ror.org/01gbpf838', 'no_lang_code', 1, 'https://ror.org/01gbpf838 Kotobiken Medical Laboratories Kotobiken Medical Laboratories (Japan) ę Ŗå¼ä¼šē¤¾ę±Ÿę±å¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(124459, 'https://ror.org/00w9shc85', 'no_lang_code', 1, 'https://ror.org/00w9shc85 Educa Inc. Educa Inc. (Japan) ć‚Øćƒ‡ćƒ„ć‚«ę Ŗå¼ä¼šē¤¾'),
(124460, 'https://ror.org/028p2c260', 'no_lang_code', 1, 'https://ror.org/028p2c260 Marudai FOOD Co., Ltd. Marudai FOOD Co., Ltd. (Japan) äøøå¤§é£Ÿå“ę Ŗå¼ä¼šē¤¾'),
(124461, 'https://ror.org/019z56k76', 'gl', 1, 'https://ror.org/019z56k76 Consorcio Interuniversitario do Sistema Universitario de Galicia (CISUG)'),
(124462, 'https://ror.org/01sssay75', 'no_lang_code', 1, 'https://ror.org/01sssay75 Arbot, Inc. Arbot, Inc. (Japan) ć‚¢ćƒ«ćƒœćƒƒćƒˆę Ŗå¼ä¼šē¤¾'),
(124463, 'https://ror.org/05a3vbx25', 'no_lang_code', 1, 'https://ror.org/05a3vbx25 Koeisha & Co., Ltd. Koeisha & Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾åŗƒę „ē¤¾'),
(124464, 'https://ror.org/05a8ndk38', 'no_lang_code', 1, 'https://ror.org/05a8ndk38 Azmax Co., Ltd. Azmax Co., Ltd. (Japan) ć‚¢ćƒ…ćƒžćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(124465, 'https://ror.org/016atdh69', 'no_lang_code', 1, 'https://ror.org/016atdh69 Chemours-Mitsui Fluoroproducts Co., Ltd. Chemours-Mitsui Fluoroproducts Co., Ltd. (Japan) äø‰äŗ•ćƒ»ć‚±ćƒžćƒ¼ć‚ŗćƒ•ćƒ­ćƒ­ćƒ—ćƒ­ćƒ€ć‚Æćƒ„ę Ŗå¼ä¼šē¤¾'),
(124466, 'https://ror.org/05qmn3p45', 'no_lang_code', 1, 'https://ror.org/05qmn3p45 OTEC Electronics Co., Ltd. OTEC Electronics Co., Ltd. (Japan) ć‚Ŗćƒ¼ćƒ†ćƒƒć‚Æé›»å­ę Ŗå¼ä¼šē¤¾'),
(124467, 'https://ror.org/02kn6m338', 'no_lang_code', 1, 'https://ror.org/02kn6m338 Peaplemedia, Inc. Peaplemedia, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ”ćƒ¼ćƒ—ćƒ«ćƒ”ćƒ‡ć‚£ć‚¢'),
(124468, 'https://ror.org/03r8ks070', 'no_lang_code', 1, 'https://ror.org/03r8ks070 (주)ģ½”ģ•„ģ•„ģ“ķ‹° CoreIT CoreIT (South Korea) CoreIT, Inc. ģ½”ģ•„ģ•„ģ“ķ‹°'),
(124469, 'https://ror.org/008sn3f91', 'no_lang_code', 1, 'https://ror.org/008sn3f91 Watanabegumi Co., Ltd. Watanabegumi Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ęø”č¾ŗēµ„'),
(124470, 'https://ror.org/00bx7x652', 'no_lang_code', 1, 'https://ror.org/00bx7x652 Forest Engineering & Economics LAB. Forest Engineering & Economics LAB. (Japan) ę Ŗå¼ä¼šē¤¾ę£®ęž—ēµŒęøˆå·„å­¦ē ”ē©¶ę‰€'),
(124471, 'https://ror.org/03jd0as41', 'no_lang_code', 1, 'https://ror.org/03jd0as41 Kuroi Electric Co., Ltd. Kuroi Electric Co., Ltd. (Japan) ć‚Æćƒ­ć‚¤é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124472, 'https://ror.org/022zk2s52', 'no_lang_code', 1, 'https://ror.org/022zk2s52 Chromocenter Inc. Chromocenter Inc. (Japan) ę Ŗå¼ä¼šē¤¾chromocenter'),
(124473, 'https://ror.org/01j3d0v83', 'pt', 1, 'https://ror.org/01j3d0v83 Faculdade UnĆ­ntese UnĆ­ntese'),
(124474, 'https://ror.org/017ttxs34', 'no_lang_code', 1, 'https://ror.org/017ttxs34 Shofu Inc. Shofu Inc. (Japan) ę Ŗå¼ä¼šē¤¾ę¾é¢Ø'),
(124475, 'https://ror.org/04gd75086', 'no_lang_code', 1, 'https://ror.org/04gd75086 Resona Holdings, Inc. Resona Holdings, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚ŠććŖćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(124476, 'https://ror.org/05sdjcn32', 'no_lang_code', 1, 'https://ror.org/05sdjcn32 Miyuki Keori Co., Ltd. Miyuki Keori Co., Ltd. (Japan) å¾”å¹øęÆ›ē¹”ę Ŗå¼ä¼šē¤¾'),
(124477, 'https://ror.org/029yjab84', 'no_lang_code', 1, 'https://ror.org/029yjab84 Rhesca Co., Ltd. Rhesca Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¬ć‚¹ć‚«'),
(124478, 'https://ror.org/02rxehg12', 'no_lang_code', 1, 'https://ror.org/02rxehg12 Daimei Telecom Engineering Corp. Daimei Telecom Engineering Corp. (Japan) å¤§ę˜Žę Ŗå¼ä¼šē¤¾'),
(124479, 'https://ror.org/045xyk055', 'en', 1, 'https://ror.org/045xyk055 National Academy of Statistics, Accounting and Audit ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń статистики, Š¾Š±Š»Ń–ŠŗŃƒ та Š°ŃƒŠ“ŠøŃ‚Ńƒ'),
(124480, 'https://ror.org/02yv8ck75', 'no_lang_code', 1, 'https://ror.org/02yv8ck75 Cresco, Ltd. Cresco, Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ć‚¹ć‚³'),
(124481, 'https://ror.org/05xqxa525', 'en', 1, 'https://ror.org/05xqxa525 NIHR Leicester Biomedical Research Centre'),
(124482, 'https://ror.org/01ffqc713', 'no_lang_code', 1, 'https://ror.org/01ffqc713 Inbiotex, Inc. Inbiotex, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ćƒć‚¤ć‚Ŗćƒ†ćƒƒć‚Æć‚¹'),
(124483, 'https://ror.org/0201hm243', 'en', 1, 'https://ror.org/0201hm243 Phenomics Australia'),
(124484, 'https://ror.org/0187vy456', 'no_lang_code', 1, 'https://ror.org/0187vy456 SAWA Corporation SAWA Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒÆćƒ¼ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(124485, 'https://ror.org/01yvrd251', 'fr', 0, 'https://ror.org/01yvrd251 Pierre and Marie Curie University UniversitƩ Pierre-et-Marie-Curie'),
(124486, 'https://ror.org/00pfhb388', 'no_lang_code', 1, 'https://ror.org/00pfhb388 Qript Inc. Qript Inc. (Japan) ę Ŗå¼ä¼šē¤¾Qript'),
(124487, 'https://ror.org/040a0dz97', 'no_lang_code', 1, 'https://ror.org/040a0dz97 DNP Fine Chemicals Co., Ltd. DNP Fine Chemicals Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾DNPćƒ•ć‚”ć‚¤ćƒ³ć‚±ćƒŸć‚«ćƒ«'),
(124488, 'https://ror.org/040qxvj34', 'no_lang_code', 1, 'https://ror.org/040qxvj34 YE DATA Inc. YE DATA Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒÆć‚¤ćƒ»ć‚¤ćƒ¼ćƒ»ćƒ‡ćƒ¼ć‚æ'),
(124489, 'https://ror.org/03z288y34', 'no_lang_code', 1, 'https://ror.org/03z288y34 Seven & I Holdings Co., Ltd. Seven & I Holdings Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ćƒ–ćƒ³&ć‚¢ć‚¤ćƒ»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(124490, 'https://ror.org/0187kwz08', 'en', 1, 'https://ror.org/0187kwz08 National Institute for Health Research National Institute for Health and Care Research'),
(124491, 'https://ror.org/00tw3jy02', 'en', 1, 'https://ror.org/00tw3jy02 MRC Laboratory of Molecular Biology'),
(124492, 'https://ror.org/05n7h5q26', 'no_lang_code', 1, 'https://ror.org/05n7h5q26 Senka Corporation Senka Corporation (Japan) ć‚»ćƒ³ć‚«ę Ŗå¼ä¼šē¤¾'),
(124493, 'https://ror.org/0173bc116', 'en', 1, 'https://ror.org/0173bc116 N. L. Dobretsov Institute of Geology Геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š. Š›. Добрецова Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук (Š“Š˜Š Š”Šž Š ŠŠ)'),
(124494, 'https://ror.org/00kabgs07', 'no_lang_code', 1, 'https://ror.org/00kabgs07 Shusei Construction Consultants Co., Ltd. Shusei Construction Consultants Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾äæ®ęˆå»ŗčØ­ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆ'),
(124495, 'https://ror.org/03nznt849', 'no_lang_code', 1, 'https://ror.org/03nznt849 Biomatrix Research Inc. Biomatrix Research Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚ŖćƒžćƒˆćƒŖćƒƒć‚Æć‚¹ē ”ē©¶ę‰€'),
(124496, 'https://ror.org/0278v2r46', 'no_lang_code', 1, 'https://ror.org/0278v2r46 Summit AGRI-Business Corporation Summit AGRI-Business Corporation (Japan) ä½å•†ć‚¢ć‚°ćƒŖćƒ“ć‚øćƒć‚¹ę Ŗå¼ä¼šē¤¾'),
(124497, 'https://ror.org/025qq4838', 'es', 1, 'https://ror.org/025qq4838 Gobierno de Navarra'),
(124498, 'https://ror.org/05jbw1519', 'fr', 1, 'https://ror.org/05jbw1519 ISAE-SUPAERO Recherche'),
(124499, 'https://ror.org/01jjvzw11', 'no_lang_code', 1, 'https://ror.org/01jjvzw11 Tohnichi Mfg. Co., Ltd. Tohnichi Mfg. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę±ę—„č£½ä½œę‰€'),
(124500, 'https://ror.org/05m2edq74', 'no_lang_code', 1, 'https://ror.org/05m2edq74 Airtech Japan, Ltd. Airtech Japan, Ltd. (Japan) ę—„ęœ¬ć‚Øć‚¢ćƒ¼ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124501, 'https://ror.org/03wz10q85', 'en', 1, 'https://ror.org/03wz10q85 NIHR School for Primary Care Research'),
(124502, 'https://ror.org/03tmzq288', 'en', 1, 'https://ror.org/03tmzq288 NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast'),
(124503, 'https://ror.org/050yn5k40', 'en', 1, 'https://ror.org/050yn5k40 International Liaison Committee on Resuscitation'),
(124504, 'https://ror.org/05gzvb546', 'no_lang_code', 1, 'https://ror.org/05gzvb546 Novo Nordisk Pharma Ltd. Novo Nordisk Pharma Ltd. (Japan) ćƒŽćƒœćƒŽćƒ«ćƒ‡ć‚£ć‚¹ć‚Æćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(124505, 'https://ror.org/013tf3c58', 'en', 1, 'https://ror.org/013tf3c58 FWF Austrian Science Fund Fonds zur Fƶrderung der wissenschaftlichen Forschung'),
(124506, 'https://ror.org/015x13p94', 'no_lang_code', 1, 'https://ror.org/015x13p94 Keio Corp. Keio Corp. (Japan) äŗ¬ēŽ‹é›»é‰„ę Ŗå¼ä¼šē¤¾'),
(124507, 'https://ror.org/03cvvf297', 'no_lang_code', 1, 'https://ror.org/03cvvf297 P&G Prestage P&G Prestage (Japan) P&Gćƒ—ćƒ¬ć‚¹ćƒ†ćƒ¼ć‚øåˆåŒä¼šē¤¾'),
(124508, 'https://ror.org/034kz2q55', 'no_lang_code', 1, 'https://ror.org/034kz2q55 Nissin-HIGH Voltage Co., Ltd. Nissin-HIGH Voltage Co., Ltd. (Japan) ę—„ę–°ćƒć‚¤ćƒœćƒ«ćƒ†ćƒ¼ć‚øę Ŗå¼ä¼šē¤¾'),
(124509, 'https://ror.org/04t9mh118', 'no_lang_code', 1, 'https://ror.org/04t9mh118 Touyoukakou Co., Ltd. Touyoukakou Co., Ltd. (Japan) ę±ę“‹åŒ–å·„ę Ŗå¼ä¼šē¤¾'),
(124510, 'https://ror.org/02qnxh029', 'no_lang_code', 1, 'https://ror.org/02qnxh029 Shinreki Industry Co., Ltd. Shinreki Industry Co., Ltd. (Japan) ć‚·ćƒ³ćƒ¬ć‚­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124511, 'https://ror.org/00jjx8s55', 'fr', 1, 'https://ror.org/00jjx8s55 Commissariat Ơ l''Ɖnergie Atomique et aux Ɖnergies Alternatives'),
(124512, 'https://ror.org/04xgb7f02', 'no_lang_code', 1, 'https://ror.org/04xgb7f02 KRYPTON Polska Sp. z o.o. KRYPTON Polska Sp. z o.o. (Poland)'),
(124513, 'https://ror.org/00nya9w33', 'no_lang_code', 1, 'https://ror.org/00nya9w33 Friendcell Laboratory Friendcell Laboratory (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ¬ćƒ³ćƒ‰ć‚»ćƒ«ē ”ē©¶ę‰€'),
(124514, 'https://ror.org/05g5e9f37', 'no_lang_code', 1, 'https://ror.org/05g5e9f37 Preferred Networks, Inc. Preferred Networks, Inc. (Japan) ę Ŗå¼ä¼šē¤¾Preferred Networks'),
(124515, 'https://ror.org/039b92j08', 'no_lang_code', 1, 'https://ror.org/039b92j08 SHIN-Nippon Nondestructive Inspection Co., Ltd. SHIN-Nippon Nondestructive Inspection Co., Ltd. (Japan) ę–°ę—„ęœ¬éžē “å£Šę¤œęŸ»ę Ŗå¼ä¼šē¤¾'),
(124516, 'https://ror.org/00ha14p11', 'en', 1, 'https://ror.org/00ha14p11 Visvesvaraya Technological University ą¤µą¤æą¤¶ą„ą¤µą„‡ą¤¶ą„ą¤µą¤°ą¤Æą„ą¤Æą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¬ą¦æą¦¶ą§ą¦¬ą§‡ą¦¶ą§ą¦¬ą¦°ą¦¾ą¦Æą¦¼ą¦¾ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®µą®æą®øąÆą®µąÆ‡ą®øąÆą®µą®°ą®ÆąÆą®Æą®¾ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą²µą²æą²¶ą³ą²µą³‡ą²¶ą³ą²µą²°ą²Æą³ą²Æ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(124517, 'https://ror.org/04v570c94', 'no_lang_code', 1, 'https://ror.org/04v570c94 Koki Holdings Co., Ltd. Koki Holdings Co., Ltd. (Japan) å·„ę©Ÿćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(124518, 'https://ror.org/03r1fak74', 'no_lang_code', 1, 'https://ror.org/03r1fak74 Tensho Electric Industries Co., Ltd. Tensho Electric Industries Co., Ltd. (Japan) å¤©ę˜‡é›»ę°—å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124519, 'https://ror.org/03xcscc48', 'en', 1, 'https://ror.org/03xcscc48 Inter American University of Puerto Rico, Arecibo Campus'),
(124520, 'https://ror.org/04ycva134', 'no_lang_code', 1, 'https://ror.org/04ycva134 HYMO Corporation HYMO Corporation (Japan) ćƒć‚¤ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(124521, 'https://ror.org/02jycar79', 'no_lang_code', 1, 'https://ror.org/02jycar79 Soliton Systems K.K. Soliton Systems K.K. (Japan) ę Ŗå¼ä¼šē¤¾ć‚½ćƒŖćƒˆćƒ³ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(124522, 'https://ror.org/01m4qrc05', 'no_lang_code', 1, 'https://ror.org/01m4qrc05 Meiho Co., Ltd. Meiho Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ”ć‚¤ćƒ›ćƒ¼'),
(124523, 'https://ror.org/05ev8tv80', 'no_lang_code', 1, 'https://ror.org/05ev8tv80 Lattice Technology Co., Ltd. Lattice Technology Co., Ltd. (Japan) ćƒ©ćƒ†ć‚£ć‚¹ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124524, 'https://ror.org/02wvjxr45', 'no_lang_code', 1, 'https://ror.org/02wvjxr45 Chunichi Denshi Co., Ltd. Chunichi Denshi Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾äø­ę—„é›»å­'),
(124525, 'https://ror.org/04fza7q38', 'no_lang_code', 1, 'https://ror.org/04fza7q38 KEN Research Institute Inc. KEN Research Institute Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚±ćƒ³ćƒ»ćƒŖć‚µćƒ¼ćƒ'),
(124526, 'https://ror.org/0258s1g41', 'no_lang_code', 1, 'https://ror.org/0258s1g41 Kokubun Ltd. Kokubun Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚³ć‚Æćƒ–ćƒ³ćƒŖćƒŸćƒ†ćƒƒćƒ‰'),
(124527, 'https://ror.org/001fv3205', 'no_lang_code', 1, 'https://ror.org/001fv3205 Iwasaki Electric Co., Ltd. Iwasaki Electric Co., Ltd. (Japan) å²©å“Žé›»ę°—ę Ŗå¼ä¼šē¤¾'),
(124528, 'https://ror.org/00yq7bk08', 'no_lang_code', 1, 'https://ror.org/00yq7bk08 Odelic Co., Ltd. Odelic Co., Ltd. (Japan) ć‚Ŗćƒ¼ćƒ‡ćƒŖćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124529, 'https://ror.org/01wbsf815', 'no_lang_code', 1, 'https://ror.org/01wbsf815 Suncoh Consultants Co., Ltd. Suncoh Consultants Co., Ltd. (Japan) ć‚µćƒ³ć‚³ćƒ¼ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(124530, 'https://ror.org/054k36w33', 'fr', 1, 'https://ror.org/054k36w33 Laboratoire de Biotechnologies Agroalimentaire et Environnementale'),
(124531, 'https://ror.org/0061sda51', 'no_lang_code', 1, 'https://ror.org/0061sda51 Shigematsu Works Co., Ltd. Shigematsu Works Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é‡ę¾č£½ä½œę‰€'),
(124532, 'https://ror.org/032tnpk84', 'no_lang_code', 1, 'https://ror.org/032tnpk84 Pharmacogene Tiptop Inc. Pharmacogene Tiptop Inc. (Japan) č–¬åŠ¹ć‚²ćƒŽćƒ ęƒ…å ±ę Ŗå¼ä¼šē¤¾'),
(124533, 'https://ror.org/028ypvs11', 'no_lang_code', 1, 'https://ror.org/028ypvs11 Furubayashi Shiko Co., Ltd. Furubayashi Shiko Co., Ltd. (Japan) å¤ęž—ē“™å·„ę Ŗå¼ä¼šē¤¾'),
(124534, 'https://ror.org/00mxnes72', 'no_lang_code', 1, 'https://ror.org/00mxnes72 Andersen Service Co., Ltd. Andersen Service Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ³ćƒ‡ćƒ«ć‚»ćƒ³ć‚µćƒ¼ćƒ“ć‚¹'),
(124535, 'https://ror.org/05hfj8q80', 'no_lang_code', 1, 'https://ror.org/05hfj8q80 Toyotama Koryo Co., Ltd. Toyotama Koryo Co., Ltd. (Japan) č±ŠēŽ‰é¦™ę–™ę Ŗå¼ä¼šē¤¾'),
(124536, 'https://ror.org/05qy8pm97', 'en', 1, 'https://ror.org/05qy8pm97 Quetta Institute of Medical Sciences'),
(124537, 'https://ror.org/02whsjy88', 'es', 1, 'https://ror.org/02whsjy88 Instituto de Investigación Sanitaria Fundación Jiménez Díaz'),
(124538, 'https://ror.org/00cr37t39', 'no_lang_code', 1, 'https://ror.org/00cr37t39 Domoto Foods Co., Ltd. Domoto Foods Co., Ltd. (Japan) å ‚ęœ¬é£Ÿå“ę Ŗå¼ä¼šē¤¾'),
(124539, 'https://ror.org/02pwyvv95', 'no_lang_code', 1, 'https://ror.org/02pwyvv95 Meiki Co., Ltd. Meiki Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾åę©Ÿč£½ä½œę‰€'),
(124540, 'https://ror.org/01tdk2h24', 'en', 1, 'https://ror.org/01tdk2h24 NovaVive Inc. NovaVive Inc. (Canada)'),
(124541, 'https://ror.org/018wfhg78', 'en', 1, 'https://ror.org/018wfhg78 National Research Council of Thailand ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąøąø²ąø£ąø§ąø“ąøˆąø±ąø¢ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(124542, 'https://ror.org/02e918x06', 'no_lang_code', 1, 'https://ror.org/02e918x06 Energy Driven Technologies (United States)'),
(124543, 'https://ror.org/053aacy80', 'no_lang_code', 1, 'https://ror.org/053aacy80 Fujimak Corporation Fujimak Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚øćƒžćƒƒć‚Æ'),
(124544, 'https://ror.org/0039rg150', 'fr', 1, 'https://ror.org/0039rg150 Institut Maurice Hauriou Maurice Hauriou Institute'),
(124545, 'https://ror.org/04q8y1713', 'no_lang_code', 1, 'https://ror.org/04q8y1713 Gotoh Hatchery, Inc. Gotoh Hatchery, Inc. (Japan) ę Ŗå¼ä¼šē¤¾å¾Œč—¤å­µåµå “'),
(124546, 'https://ror.org/05kxhrj23', 'no_lang_code', 1, 'https://ror.org/05kxhrj23 FLEX Japan Co., Ltd. FLEX Japan Co., Ltd. (Japan) ćƒ•ćƒ¬ćƒƒć‚Æć‚¹ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124547, 'https://ror.org/02kdey075', 'no_lang_code', 1, 'https://ror.org/02kdey075 Chlorella Industry Co., Ltd. Chlorella Industry Co., Ltd. (Japan) ć‚Æćƒ­ćƒ¬ćƒ©å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124548, 'https://ror.org/02qxbem16', 'no_lang_code', 1, 'https://ror.org/02qxbem16 Fujii Gokin Seisakusho Co., Ltd. Fujii Gokin Seisakusho Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾č—¤äŗ•åˆé‡‘č£½ä½œę‰€'),
(124549, 'https://ror.org/040xywa27', 'no_lang_code', 1, 'https://ror.org/040xywa27 Cosel Co., Ltd. Cosel Co., Ltd. (Japan) ć‚³ćƒ¼ć‚»ćƒ«ę Ŗå¼ä¼šē¤¾'),
(124550, 'https://ror.org/05wy89733', 'fr', 1, 'https://ror.org/05wy89733 UniLaSalle'),
(124551, 'https://ror.org/0546ckg56', 'no_lang_code', 1, 'https://ror.org/0546ckg56 Dainen Co., Ltd. Dainen Co., Ltd. (Japan) ćƒ€ć‚¤ćƒćƒ³ę Ŗå¼ä¼šē¤¾'),
(124552, 'https://ror.org/04zf7wt63', 'no_lang_code', 1, 'https://ror.org/04zf7wt63 ASO Corporation ASO Corporation (Japan) ę Ŗå¼ä¼šē¤¾éŗ»ē”Ÿ'),
(124553, 'https://ror.org/00190yn48', 'en', 1, 'https://ror.org/00190yn48 Reglagene Reglagene, Inc. Reglagene, Inc. (United States)'),
(124554, 'https://ror.org/00svzd462', 'no_lang_code', 1, 'https://ror.org/00svzd462 Tamapoly Co., Ltd. Tamapoly Co., Ltd. (Japan) ć‚æćƒžćƒćƒŖę Ŗå¼ä¼šē¤¾'),
(124555, 'https://ror.org/02s8k0k61', 'it', 1, 'https://ror.org/02s8k0k61 Istituto Nazionale di Fisica Nucleare, Laboratori Nazionali del Gran Sasso National Institute for Nuclear Physics, Gran Sasso National Laboratories'),
(124556, 'https://ror.org/05tb13r23', 'en', 1, 'https://ror.org/05tb13r23 Abiola Ajimobi Technical University Ibadan'),
(124557, 'https://ror.org/0572x6v90', 'en', 1, 'https://ror.org/0572x6v90 Research Institute of Environment and Nature Conservation Technologies'),
(124558, 'https://ror.org/04yafm816', 'no_lang_code', 1, 'https://ror.org/04yafm816 Daishowa Paper Products Co., Ltd. Daishowa Paper Products Co., Ltd. (Japan) å¤§ę˜­å’Œē“™å·„ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(124559, 'https://ror.org/00qpayx68', 'no_lang_code', 1, 'https://ror.org/00qpayx68 Tomoku Co., Ltd. Tomoku Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ćƒ¢ć‚Æ'),
(124560, 'https://ror.org/003ed9546', 'en', 1, 'https://ror.org/003ed9546 The Institute of Technical Mechanics of the National Academy of Sciences of Ukraine and the State Space Agency of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технічної механіки ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України і Державного космічного агентства України'),
(124561, 'https://ror.org/04gdady03', 'no_lang_code', 1, 'https://ror.org/04gdady03 IIDA Densi Sekkei Co., Ltd. IIDA Densi Sekkei Co., Ltd. (Japan) é£Æē”°é›»å­čØ­čØˆę Ŗå¼ä¼šē¤¾'),
(124562, 'https://ror.org/015z57109', 'no_lang_code', 1, 'https://ror.org/015z57109 Sakamura Machine Co., Ltd. Sakamura Machine Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é˜Ŗę‘ę©Ÿę¢°č£½ä½œę‰€'),
(124563, 'https://ror.org/05kx4z541', 'no_lang_code', 1, 'https://ror.org/05kx4z541 DAI-Nippon Meiji Sugar Co., Ltd. DAI-Nippon Meiji Sugar Co., Ltd. (Japan) å¤§ę—„ęœ¬ę˜Žę²»č£½ē³–ę Ŗå¼ä¼šē¤¾'),
(124564, 'https://ror.org/00fqmtc51', 'en', 1, 'https://ror.org/00fqmtc51 Center for the Evolutionary Origins of Human Behavior, Kyoto University äŗ¬éƒ½å¤§å­¦ćƒ’ćƒˆč”Œå‹•é€²åŒ–ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(124565, 'https://ror.org/03h1vgq93', 'no_lang_code', 1, 'https://ror.org/03h1vgq93 Shelter Co., Ltd. Shelter Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ć‚§ćƒ«ć‚æćƒ¼'),
(124566, 'https://ror.org/05m75d319', 'no_lang_code', 1, 'https://ror.org/05m75d319 Hanatoyo-Landscape Co., Ltd. Hanatoyo-Landscape Co., Ltd. (Japan) čŠ±č±Šé€ åœ’ę Ŗå¼ä¼šē¤¾'),
(124567, 'https://ror.org/02wahrp66', 'en', 1, 'https://ror.org/02wahrp66 Medinirai Medical College and Hospital, Palamu'),
(124568, 'https://ror.org/00hb3zt47', 'no_lang_code', 1, 'https://ror.org/00hb3zt47 ARAX Co., Ltd. ARAX Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ©ć‚Æć‚¹'),
(124569, 'https://ror.org/00cmnhy09', 'no_lang_code', 1, 'https://ror.org/00cmnhy09 Periodock Co., Ltd. Periodock Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ”ćƒŖć‚Ŗćƒ‰ćƒƒć‚Æ'),
(124570, 'https://ror.org/03ykbbh41', 'no_lang_code', 1, 'https://ror.org/03ykbbh41 Location Analysis & Appraisal Institute Location Analysis & Appraisal Institute (Japan) ę Ŗå¼ä¼šē¤¾ē«‹åœ°č©•ä¾”ē ”ē©¶ę‰€'),
(124571, 'https://ror.org/00fj4d941', 'no_lang_code', 1, 'https://ror.org/00fj4d941 Aloka Co., Ltd. Aloka Co., Ltd. (Japan) ć‚¢ćƒ­ć‚«ę Ŗå¼ä¼šē¤¾'),
(124572, 'https://ror.org/0535xgf79', 'no_lang_code', 1, 'https://ror.org/0535xgf79 CTK Corporation CTK Corporation (Japan) ę Ŗå¼ä¼šē¤¾CTK'),
(124573, 'https://ror.org/00160wq72', 'no_lang_code', 1, 'https://ror.org/00160wq72 Zenyaku Kogyo Co., Ltd. Zenyaku Kogyo Co., Ltd. (Japan) å…Øč–¬å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124574, 'https://ror.org/02wja3x38', 'en', 1, 'https://ror.org/02wja3x38 Center for iPS Cell Research and Application, Kyoto University 京都大学iPSē“°čƒžē ”ē©¶ę‰€'),
(124575, 'https://ror.org/052pq3p13', 'no_lang_code', 1, 'https://ror.org/052pq3p13 SPEC Corporation SPEC Corporation (Japan) ć‚¹ćƒšćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124576, 'https://ror.org/0451ykq26', 'no_lang_code', 1, 'https://ror.org/0451ykq26 Shashin Kagaku Co., Ltd. Shashin Kagaku Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å†™ēœŸåŒ–å­¦'),
(124577, 'https://ror.org/01t8cbh24', 'no_lang_code', 1, 'https://ror.org/01t8cbh24 IBM Japan, Ltd. IBM Japan, Ltd. (Japan) ę—„ęœ¬ć‚¢ć‚¤ćƒ»ćƒ“ćƒ¼ćƒ»ć‚Øćƒ ę Ŗå¼ä¼šē¤¾'),
(124578, 'https://ror.org/01hfhnb73', 'no_lang_code', 1, 'https://ror.org/01hfhnb73 TEI Co., Ltd. TEI Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾TEI'),
(124579, 'https://ror.org/059c2s024', 'no_lang_code', 1, 'https://ror.org/059c2s024 NANO-TEM NANO-TEM (Japan) ę Ŗå¼ä¼šē¤¾ćƒŠćƒŽćƒ†ćƒ '),
(124580, 'https://ror.org/03jgr6c36', 'no_lang_code', 1, 'https://ror.org/03jgr6c36 Nichiban Co., Ltd. Nichiban Co., Ltd. (Japan) ćƒ‹ćƒćƒćƒ³ę Ŗå¼ä¼šē¤¾'),
(124581, 'https://ror.org/012wjvf04', 'no_lang_code', 1, 'https://ror.org/012wjvf04 Skinos Co., Ltd. Skinos Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ć‚­ćƒŽć‚¹'),
(124582, 'https://ror.org/05g87kx40', 'id', 1, 'https://ror.org/05g87kx40 Universitas Nahdlatul Ulama Al Ghazali Cilacap'),
(124583, 'https://ror.org/058d7hs76', 'no_lang_code', 1, 'https://ror.org/058d7hs76 Alumi-Surface Technologies Co., Ltd. Alumi-Surface Technologies Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ćƒŸč”Øé¢ęŠ€č”“ē ”ē©¶ę‰€'),
(124584, 'https://ror.org/01cmst727', 'en', 1, 'https://ror.org/01cmst727 Simons Foundation'),
(124585, 'https://ror.org/00y8rfx07', 'en', 1, 'https://ror.org/00y8rfx07 Kien Giang University TrĘ°į»ng ĐẔi hį»c KiĆŖn Giang ĐẔi hį»c KiĆŖn Giang'),
(124586, 'https://ror.org/04wpweg19', 'no_lang_code', 1, 'https://ror.org/04wpweg19 Ostrand Corp. Ostrand Corp. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗć‚¹ćƒˆćƒ©ćƒ³ćƒ‰'),
(124587, 'https://ror.org/027777h57', 'no_lang_code', 1, 'https://ror.org/027777h57 Original Engineering Consultants Co., Ltd. Original Engineering Consultants Co., Ltd. (Japan) ć‚ŖćƒŖć‚øćƒŠćƒ«čØ­čØˆę Ŗå¼ä¼šē¤¾'),
(124588, 'https://ror.org/01cnmjw44', 'no_lang_code', 1, 'https://ror.org/01cnmjw44 Exai Bio Exai Bio (United States)'),
(124589, 'https://ror.org/02my4wm11', 'no_lang_code', 1, 'https://ror.org/02my4wm11 SHIN-Hokoku Steel Corporation SHIN-Hokoku Steel Corporation (Japan) ę–°å ±å›½č£½é‰„ę Ŗå¼ä¼šē¤¾'),
(124590, 'https://ror.org/04rn5aq52', 'no_lang_code', 1, 'https://ror.org/04rn5aq52 MARUWA Co., Ltd. MARUWA Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾MARUWA'),
(124591, 'https://ror.org/01qgn1839', 'en', 1, 'https://ror.org/01qgn1839 NIHR Applied Research Collaboration South West Peninsula'),
(124592, 'https://ror.org/00msm3b49', 'no_lang_code', 1, 'https://ror.org/00msm3b49 Descente Ltd. Descente Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‡ć‚µćƒ³ćƒˆ'),
(124593, 'https://ror.org/053ygvs24', 'no_lang_code', 1, 'https://ror.org/053ygvs24 SWING Ltd. SWING Ltd. (Japan) ę Ŗå¼ä¼šē¤¾SWING'),
(124594, 'https://ror.org/04angdr74', 'no_lang_code', 1, 'https://ror.org/04angdr74 Ohta''s ISAN Co., Ltd. Ohta''s ISAN Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å¤Ŗē”°čƒƒę•£'),
(124595, 'https://ror.org/05w14b884', 'no_lang_code', 1, 'https://ror.org/05w14b884 Nihonkaisui Co., Ltd. Nihonkaisui Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę—„ęœ¬ęµ·ę°“'),
(124596, 'https://ror.org/016adt978', 'no_lang_code', 1, 'https://ror.org/016adt978 Meira Corporation Meira Corporation (Japan) ćƒ”ć‚¤ćƒ©ę Ŗå¼ä¼šē¤¾'),
(124597, 'https://ror.org/02hqpp220', 'no_lang_code', 1, 'https://ror.org/02hqpp220 Rehabilitation Reserch Laboratory Co., Ltd. Rehabilitation Reserch Laboratory Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŖćƒćƒ“ćƒŖćƒ»ćƒŖć‚µćƒ¼ćƒćƒ»ćƒ©ćƒœćƒ©ćƒˆćƒŖćƒ¼'),
(124598, 'https://ror.org/01n0sdq82', 'fr', 0, 'https://ror.org/01n0sdq82 UniversitƩ Aix-Marseille-III'),
(124599, 'https://ror.org/0107kew50', 'no_lang_code', 1, 'https://ror.org/0107kew50 Bycen Co., Ltd. Bycen Co., Ltd. (Japan) ćƒć‚¤ć‚»ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124600, 'https://ror.org/00dpz4884', 'no_lang_code', 1, 'https://ror.org/00dpz4884 Minoru Industrial Co., Ltd. Minoru Industrial Co., Ltd. (Japan) ćæć®ć‚‹ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(124601, 'https://ror.org/05c3f7p10', 'no_lang_code', 1, 'https://ror.org/05c3f7p10 KISO-Jiban Consultants Co., Ltd. KISO-Jiban Consultants Co., Ltd. (Japan) åŸŗē¤Žåœ°ē›¤ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒ„ę Ŗå¼ä¼šē¤¾'),
(124602, 'https://ror.org/03x359216', 'no_lang_code', 1, 'https://ror.org/03x359216 Sansei Foods Co., Ltd. Sansei Foods Co., Ltd. (Japan) äø‰ę˜Ÿé£Ÿå“ę Ŗå¼ä¼šē¤¾'),
(124603, 'https://ror.org/03qsjxn42', 'no_lang_code', 1, 'https://ror.org/03qsjxn42 AVIX, Inc. AVIX, Inc. (Japan) ć‚¢ćƒ“ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(124604, 'https://ror.org/004y88t86', 'no_lang_code', 1, 'https://ror.org/004y88t86 Danax Corporation Danax Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ćƒŠćƒƒć‚Æć‚¹'),
(124605, 'https://ror.org/008wz0712', 'no_lang_code', 1, 'https://ror.org/008wz0712 Cataler Corporation Cataler Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒ£ć‚æćƒ©ćƒ¼'),
(124606, 'https://ror.org/01vpqyc81', 'no_lang_code', 1, 'https://ror.org/01vpqyc81 Redox Bioscience Inc. Redox Bioscience Inc. (Japan) ćƒ¬ćƒ‰ćƒƒć‚Æć‚¹ćƒ»ćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(124607, 'https://ror.org/01ykn4490', 'en', 1, 'https://ror.org/01ykn4490 NIHR Leeds In Vitro Diagnostics Co-operative'),
(124608, 'https://ror.org/05q31wr58', 'no_lang_code', 1, 'https://ror.org/05q31wr58 Sintokogio, Ltd. Sintokogio, Ltd. (Japan) ę–°ę±å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124609, 'https://ror.org/04cs5qn18', 'en', 1, 'https://ror.org/04cs5qn18 Council on Children and Families'),
(124610, 'https://ror.org/05bhtvt77', 'fr', 1, 'https://ror.org/05bhtvt77 Ɖcole Nationale d''IngĆ©nieurs de Metz'),
(124611, 'https://ror.org/00ksccw60', 'no_lang_code', 1, 'https://ror.org/00ksccw60 Dynic Corporation Dynic Corporation (Japan) ćƒ€ć‚¤ćƒ‹ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124612, 'https://ror.org/04jqhqb22', 'en', 1, 'https://ror.org/04jqhqb22 Canadian Skin Patient Alliance'),
(124613, 'https://ror.org/042e30e23', 'no_lang_code', 1, 'https://ror.org/042e30e23 Fukusuke Corporation Fukusuke Corporation (Japan) ē¦åŠ©ę Ŗå¼ä¼šē¤¾'),
(124614, 'https://ror.org/035hc7h23', 'no_lang_code', 1, 'https://ror.org/035hc7h23 Amiteq Co., Ltd. Amiteq Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒŸćƒ†ćƒƒć‚Æ'),
(124615, 'https://ror.org/01wj2yw97', 'en', 1, 'https://ror.org/01wj2yw97 Technical Centre of the National Academy of Sciences of Ukraine (Ukraine) Технічний центр ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(124616, 'https://ror.org/01r9xae84', 'no_lang_code', 1, 'https://ror.org/01r9xae84 Shirako Co., Ltd. Shirako Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē™½å­'),
(124617, 'https://ror.org/02np2sr64', 'no_lang_code', 1, 'https://ror.org/02np2sr64 Sanyu REC Co., Ltd. Sanyu REC Co., Ltd. (Japan) ć‚µćƒ³ćƒ¦ćƒ¬ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124618, 'https://ror.org/040a3e481', 'no_lang_code', 1, 'https://ror.org/040a3e481 DC Co., Ltd. DC Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‡ć‚¤ćƒ»ć‚·ć‚¤'),
(124619, 'https://ror.org/00ymnc837', 'es', 1, 'https://ror.org/00ymnc837 Universidad Superior de Guadalajara'),
(124620, 'https://ror.org/0427wyf84', 'no_lang_code', 1, 'https://ror.org/0427wyf84 Haltec Corporation Haltec Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒ«ćƒ†ćƒƒć‚Æ'),
(124621, 'https://ror.org/03mk3yt54', 'no_lang_code', 1, 'https://ror.org/03mk3yt54 Orthomedico Inc. Orthomedico Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ«ćƒˆćƒ”ćƒ‡ć‚£ć‚³'),
(124622, 'https://ror.org/058gaa887', 'no_lang_code', 1, 'https://ror.org/058gaa887 NUC Corporation NUC Corporation (Japan) ę Ŗå¼ä¼šē¤¾NUC'),
(124623, 'https://ror.org/01jjad503', 'fr', 1, 'https://ror.org/01jjad503 Laboratoire Cliniques Psychopathologique et Interculturelle'),
(124624, 'https://ror.org/05qt9g161', 'no_lang_code', 1, 'https://ror.org/05qt9g161 Sawanotsuru Co., Ltd. Sawanotsuru Co., Ltd. (Japan) ę²¢ć®é¶“ę Ŗå¼ä¼šē¤¾'),
(124625, 'https://ror.org/02mserw33', 'no_lang_code', 1, 'https://ror.org/02mserw33 Heian Corporation Heian Corporation (Japan) ę Ŗå¼ä¼šē¤¾å¹³å®‰ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(124626, 'https://ror.org/05vbgk961', 'no_lang_code', 1, 'https://ror.org/05vbgk961 Ideal STAR Inc. Ideal STAR Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ‡ć‚¢ćƒ«ć‚¹ć‚æćƒ¼'),
(124627, 'https://ror.org/01cd0q904', 'no_lang_code', 1, 'https://ror.org/01cd0q904 Isehan Co., Ltd. Isehan Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ä¼Šå‹¢åŠ'),
(124628, 'https://ror.org/05mg1xd72', 'en', 1, 'https://ror.org/05mg1xd72 Women''s Christian College'),
(124629, 'https://ror.org/01esrq247', 'no_lang_code', 1, 'https://ror.org/01esrq247 Hisamitsu Pharmaceutical Co., Ltd. Hisamitsu Pharmaceutical Co., Ltd. (Japan) ä¹…å…‰č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(124630, 'https://ror.org/0188y0e49', 'no_lang_code', 1, 'https://ror.org/0188y0e49 Sunrec Co., Ltd. Sunrec Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ćƒ¬ćƒƒć‚Æ'),
(124631, 'https://ror.org/02skere49', 'no_lang_code', 1, 'https://ror.org/02skere49 Modec, Inc. Modec, Inc. (Japan) äø‰äŗ•ęµ·ę“‹é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(124632, 'https://ror.org/021954z67', 'en', 1, 'https://ror.org/021954z67 NIHR Applied Research Collaboration Greater Manchester'),
(124633, 'https://ror.org/00r2r5k05', 'en', 1, 'https://ror.org/00r2r5k05 University of West Attica Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Δυτικής Αττικής'),
(124634, 'https://ror.org/05h7wd624', 'en', 1, 'https://ror.org/05h7wd624 Methodist Hospital'),
(124635, 'https://ror.org/02qqfqc47', 'no_lang_code', 1, 'https://ror.org/02qqfqc47 BIO''C Co., Ltd. BIO''C Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ“ć‚Ŗćƒƒć‚Æ'),
(124636, 'https://ror.org/04fayjg61', 'en', 0, 'https://ror.org/04fayjg61 Oatridge College'),
(124637, 'https://ror.org/02va8y256', 'no_lang_code', 1, 'https://ror.org/02va8y256 Shoko Co., Ltd. Shoko Co., Ltd. (Japan) ę˜­å…‰é€šå•†ę Ŗå¼ä¼šē¤¾'),
(124638, 'https://ror.org/022cn6p73', 'no_lang_code', 1, 'https://ror.org/022cn6p73 Special Nano Coating & Thin Films Special Nano Coating & Thin Films (Japan) ę Ŗå¼ä¼šē¤¾SNT'),
(124639, 'https://ror.org/03yqf2f91', 'en', 1, 'https://ror.org/03yqf2f91 IDEAS Science Nonprofit Ltd'),
(124640, 'https://ror.org/0474nkr55', 'no_lang_code', 1, 'https://ror.org/0474nkr55 SAN-AI OIL Co., Ltd. SAN-AI OIL Co., Ltd. (Japan) äø‰ę„›ēŸ³ę²¹ę Ŗå¼ä¼šē¤¾'),
(124641, 'https://ror.org/0161pxm44', 'no_lang_code', 1, 'https://ror.org/0161pxm44 Hirobe Kouki Co., Ltd. Hirobe Kouki Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å»£éƒØē”¬å™Ø'),
(124642, 'https://ror.org/02s36jp63', 'no_lang_code', 1, 'https://ror.org/02s36jp63 MCBI Inc. MCBI Inc. (Japan) ę Ŗå¼ä¼šē¤¾MCBI'),
(124643, 'https://ror.org/03cb56k21', 'en', 1, 'https://ror.org/03cb56k21 Araris Biotech AG Araris Biotech AG (Switzerland)'),
(124644, 'https://ror.org/00yj6d929', 'no_lang_code', 1, 'https://ror.org/00yj6d929 Ohmoto GUMI Co., Ltd. Ohmoto GUMI Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å¤§ęœ¬ēµ„'),
(124645, 'https://ror.org/0188v8488', 'no_lang_code', 1, 'https://ror.org/0188v8488 Sojitz Corp. Sojitz Corp. (Japan) åŒę—„ę Ŗå¼ä¼šē¤¾'),
(124646, 'https://ror.org/056jpd933', 'no_lang_code', 1, 'https://ror.org/056jpd933 Kojundo Chemical Laboratory Co., Ltd. Kojundo Chemical Laboratory Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾é«˜ē“”åŗ¦åŒ–å­¦ē ”ē©¶ę‰€'),
(124647, 'https://ror.org/04r4h7360', 'no_lang_code', 1, 'https://ror.org/04r4h7360 Technogroup Japan Co., Ltd. Technogroup Japan Co., Ltd. (Japan) ęœ‰é™ä¼šē¤¾ćƒ†ć‚ÆćƒŽć‚°ćƒ«ćƒ¼ćƒ—ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(124648, 'https://ror.org/04acsrj02', 'no_lang_code', 1, 'https://ror.org/04acsrj02 Senku Co., Ltd. Senku Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å…ˆé§†'),
(124649, 'https://ror.org/01gy5eb25', 'no_lang_code', 1, 'https://ror.org/01gy5eb25 Axcelead Drug Discovery Partners Inc. Axcelead Drug Discovery Partners Inc. (Japan) Axcelead Drug Discovery Partnersę Ŗå¼ä¼šē¤¾'),
(124650, 'https://ror.org/008ew8644', 'no_lang_code', 1, 'https://ror.org/008ew8644 Ichiken Co., Ltd. Ichiken Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒć‚±ćƒ³'),
(124651, 'https://ror.org/04ksp8t18', 'no_lang_code', 1, 'https://ror.org/04ksp8t18 All Nippon Airways Co., Ltd. All Nippon Airways Co., Ltd. (Japan) å…Øę—„ęœ¬ē©ŗč¼øę Ŗå¼ä¼šē¤¾'),
(124652, 'https://ror.org/025zw5655', 'no_lang_code', 1, 'https://ror.org/025zw5655 KETT Electric Laboratory KETT Electric Laboratory (Japan) ę Ŗå¼ä¼šē¤¾ć‚±ćƒ„ćƒˆē§‘å­¦ē ”ē©¶ę‰€'),
(124653, 'https://ror.org/00d806y18', 'no_lang_code', 1, 'https://ror.org/00d806y18 Jex Co., Ltd. Jex Co., Ltd. (Japan) ć‚øć‚§ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(124654, 'https://ror.org/05fr1cw47', 'en', 1, 'https://ror.org/05fr1cw47 Sugiyama Clinic Marunouchi ę‰å±±ē”£å©¦äŗŗē§‘ 丸の内'),
(124655, 'https://ror.org/007k1d073', 'no_lang_code', 1, 'https://ror.org/007k1d073 Technoflora Co. Technoflora Co. (Japan) ęœ‰é™ä¼šē¤¾ćƒ†ć‚ÆćƒŽćƒ•ćƒ­ćƒ¼ćƒ©'),
(124656, 'https://ror.org/02kvc7t84', 'no_lang_code', 1, 'https://ror.org/02kvc7t84 Nikkoku Flour Milling Co., Ltd. Nikkoku Flour Milling Co., Ltd. (Japan) ę—„ē©€č£½ē²‰ę Ŗå¼ä¼šē¤¾'),
(124657, 'https://ror.org/02m04g185', 'no_lang_code', 1, 'https://ror.org/02m04g185 Technova Inc. Technova Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ć‚ÆćƒŽćƒ'),
(124658, 'https://ror.org/05b5a1s58', 'no_lang_code', 1, 'https://ror.org/05b5a1s58 Daikokuya Holdings Co., Ltd. Daikokuya Holdings Co., Ltd. (Japan) å¤§é»’å±‹ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(124659, 'https://ror.org/00pm4rv77', 'no_lang_code', 1, 'https://ror.org/00pm4rv77 WADA Precision Dental Laboratories Co., Ltd. WADA Precision Dental Laboratories Co., Ltd. (Japan) å’Œē”°ē²¾åÆ†ę­Æē ”ę Ŗå¼ä¼šē¤¾'),
(124660, 'https://ror.org/00k195394', 'en', 1, 'https://ror.org/00k195394 Institute of Epigenetics and Stem Cells'),
(124661, 'https://ror.org/02tyc8m42', 'no_lang_code', 1, 'https://ror.org/02tyc8m42 LANG Co., Ltd. LANG Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ©ćƒ³ć‚°'),
(124662, 'https://ror.org/02a81kn59', 'fr', 1, 'https://ror.org/02a81kn59 Laboratoire Interdisciplinaire pour l’Innovation et la Recherche en SantĆ© d’OrlĆ©ans'),
(124663, 'https://ror.org/04kzzgf89', 'no_lang_code', 1, 'https://ror.org/04kzzgf89 Konoshima Chemical Co., Ltd. Konoshima Chemical Co., Ltd. (Japan) ē„žå³¶åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124664, 'https://ror.org/01eq3fd02', 'en', 1, 'https://ror.org/01eq3fd02 William Carey University विलियम ą¤•ą„ˆą¤°ą„‡ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤®ą„‡ą¤˜ą¤¾ą¤²ą¤Æ'),
(124665, 'https://ror.org/017f0zg92', 'no_lang_code', 1, 'https://ror.org/017f0zg92 SE Corporation SE Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ć‚¤ćƒ¼'),
(124666, 'https://ror.org/01yg3ff09', 'en', 1, 'https://ror.org/01yg3ff09 NIHR Southampton Respiratory Biomedical Research Unit'),
(124667, 'https://ror.org/059jved31', 'fr', 1, 'https://ror.org/059jved31 Centre d''EpidƩmiologie et de Recherche en santƩ des POPulations de Toulouse Centre for Epidemiology and Research in POPulation Health'),
(124668, 'https://ror.org/03df36x28', 'no_lang_code', 1, 'https://ror.org/03df36x28 Anabuki Construction Inc. Anabuki Construction Inc. (Japan) ę Ŗå¼ä¼šē¤¾ē©“å¹å·„å‹™åŗ—'),
(124669, 'https://ror.org/00a123621', 'no_lang_code', 1, 'https://ror.org/00a123621 Hinomaru Yogyo Co., Ltd. Hinomaru Yogyo Co., Ltd. (Japan) ę—„ćƒŽäøøēŖÆę„­ę Ŗå¼ä¼šē¤¾'),
(124670, 'https://ror.org/032hs1k93', 'no_lang_code', 1, 'https://ror.org/032hs1k93 Shimaya Corporation Shimaya Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ćƒžćƒ¤'),
(124671, 'https://ror.org/03bkh1034', 'no_lang_code', 1, 'https://ror.org/03bkh1034 Up Well Co.ltd. Up Well Co.ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒƒćƒ—ć‚¦ć‚§ćƒ«'),
(124672, 'https://ror.org/013cr3984', 'no_lang_code', 1, 'https://ror.org/013cr3984 NEOMAX Co., Ltd. NEOMAX Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾NEOMAX'),
(124673, 'https://ror.org/048hdp461', 'no_lang_code', 1, 'https://ror.org/048hdp461 Nisca Corporation Nisca Corporation (Japan) ćƒ‹ć‚¹ć‚«ę Ŗå¼ä¼šē¤¾'),
(124674, 'https://ror.org/027ka1x80', 'en', 1, 'https://ror.org/027ka1x80 National Aeronautics and Space Administration'),
(124675, 'https://ror.org/03epce286', 'no_lang_code', 1, 'https://ror.org/03epce286 Tefco Co., Ltd. Tefco Co., Ltd. (Japan) ćƒ†ćƒ•ć‚³ę Ŗå¼ä¼šē¤¾'),
(124676, 'https://ror.org/00f32k170', 'no_lang_code', 1, 'https://ror.org/00f32k170 Elastec Corporation Elastec Corporation (Japan) ć‚Øćƒ©ć‚¹ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124677, 'https://ror.org/02kgdnt21', 'no_lang_code', 1, 'https://ror.org/02kgdnt21 Cashew Co., Ltd. Cashew Co., Ltd. (Japan) ć‚«ć‚·ćƒ„ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124678, 'https://ror.org/020cr8c43', 'en', 1, 'https://ror.org/020cr8c43 National Institute of Technology Arunachal Pradesh ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤…ą¤°ą„ą¤£ą¤¾ą¤šą¤² ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶)'),
(124679, 'https://ror.org/01gavpb45', 'en', 1, 'https://ror.org/01gavpb45 Canadian Institutes of Health Research Instituts de recherche en santƩ du Canada'),
(124680, 'https://ror.org/01zgm6377', 'no_lang_code', 1, 'https://ror.org/01zgm6377 Gates Unitta ASIA Company Gates Unitta ASIA Company (Japan) ć‚²ć‚¤ćƒ„ćƒ»ćƒ¦ćƒ‹ćƒƒć‚æćƒ»ć‚¢ć‚øć‚¢ę Ŗå¼ä¼šē¤¾'),
(124681, 'https://ror.org/044e2ja82', 'en', 1, 'https://ror.org/044e2ja82 Scotland''s Rural College'),
(124682, 'https://ror.org/009prbb27', 'no_lang_code', 1, 'https://ror.org/009prbb27 Maspro Denkoh Corp. Maspro Denkoh Corp. (Japan) ćƒžć‚¹ćƒ—ćƒ­é›»å·„ę Ŗå¼ä¼šē¤¾'),
(124683, 'https://ror.org/03c1etk80', 'en', 1, 'https://ror.org/03c1etk80 NIHR Central Commissioning Facility'),
(124684, 'https://ror.org/02qrn5r45', 'en', 1, 'https://ror.org/02qrn5r45 Dessie Health Science College'),
(124685, 'https://ror.org/05g7pmj15', 'no_lang_code', 1, 'https://ror.org/05g7pmj15 UT Research Institute UT Research Institute (Japan) ę Ŗå¼ä¼šē¤¾ę±å¤§ē·ē ”'),
(124686, 'https://ror.org/01j9bw452', 'en', 1, 'https://ror.org/01j9bw452 Jorhat Engineering College ą¦Æą§‹ą§°ą¦¹ą¦¾ą¦Ÿ ą¦…ą¦­ą¦æą¦Æą¦¾ą¦Øą§ą¦¤ą§ą§°ą¦æą¦• ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą°œą±‹ą°°ą±ą°¹ą°¾ą°Ÿą± ą°‡ą°‚ą°œą°Øą±€ą°°ą°æą°‚ą°—ą± ą°•ą°¾ą°²ą±‡ą°œą°æ'),
(124687, 'https://ror.org/0563m9x65', 'no_lang_code', 1, 'https://ror.org/0563m9x65 Hishinuma Machinery Co., Ltd. Hishinuma Machinery Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ’ć‚·ćƒŒćƒžćƒžć‚·ćƒŠćƒŖćƒ¼'),
(124688, 'https://ror.org/02xng2h21', 'fi', 1, 'https://ror.org/02xng2h21 Teaterhƶgskolan Teatterikorkeakoulu'),
(124689, 'https://ror.org/02c8a2j12', 'no_lang_code', 1, 'https://ror.org/02c8a2j12 Nitride Semiconductors Co., Ltd. Nitride Semiconductors Co., Ltd. (Japan) ćƒŠć‚¤ćƒˆćƒ©ć‚¤ćƒ‰ćƒ»ć‚»ćƒŸć‚³ćƒ³ćƒ€ć‚Æć‚æćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124690, 'https://ror.org/0584j0n34', 'no_lang_code', 1, 'https://ror.org/0584j0n34 Docon Co., Ltd. Docon Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‰ćƒ¼ć‚³ćƒ³'),
(124691, 'https://ror.org/01q8aet87', 'no_lang_code', 1, 'https://ror.org/01q8aet87 Keisoku Engineering System Co., Ltd. Keisoku Engineering System Co., Ltd. (Japan) čØˆęø¬ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(124692, 'https://ror.org/018crbk69', 'no_lang_code', 1, 'https://ror.org/018crbk69 HOB Co., Ltd. HOB Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ›ćƒ¼ćƒ–'),
(124693, 'https://ror.org/015nges47', 'no_lang_code', 1, 'https://ror.org/015nges47 Superbag Co., Ltd. Superbag Co., Ltd. (Japan) ć‚¹ćƒ¼ćƒ‘ćƒ¼ćƒćƒƒć‚°ę Ŗå¼ä¼šē¤¾'),
(124694, 'https://ror.org/03h93vs53', 'no_lang_code', 1, 'https://ror.org/03h93vs53 Ecological CITY Organizer Ecological CITY Organizer (Japan) ę Ŗå¼ä¼šē¤¾éƒ½åø‚ē’°å¢ƒčØˆē”»ē ”ē©¶ę‰€'),
(124695, 'https://ror.org/030bahv93', 'fr', 1, 'https://ror.org/030bahv93 UniversitƩ Jean Monnet'),
(124696, 'https://ror.org/05qybb921', 'no_lang_code', 1, 'https://ror.org/05qybb921 MORY Industries Inc. MORY Industries Inc. (Japan) ćƒ¢ćƒŖå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124697, 'https://ror.org/01hfwpq02', 'no_lang_code', 1, 'https://ror.org/01hfwpq02 MR Technology, Inc. MR Technology, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ ćƒ»ć‚¢ćƒ¼ćƒ«ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼'),
(124698, 'https://ror.org/029me2p54', 'pt', 1, 'https://ror.org/029me2p54 Instituto UniversitƔrio Militar Military University Institute'),
(124699, 'https://ror.org/05ra0am89', 'it', 1, 'https://ror.org/05ra0am89 Il Laboratorio'),
(124700, 'https://ror.org/03nkvkg47', 'no_lang_code', 1, 'https://ror.org/03nkvkg47 Mycom, Inc. Mycom, Inc. (Japan) ćƒžć‚¤ć‚³ćƒ ę Ŗå¼ä¼šē¤¾'),
(124701, 'https://ror.org/04kzpar59', 'no_lang_code', 1, 'https://ror.org/04kzpar59 CCS Inc. CCS Inc. (Japan) ć‚·ćƒ¼ć‚·ćƒ¼ć‚Øć‚¹ę Ŗå¼ä¼šē¤¾'),
(124702, 'https://ror.org/005j74n78', 'no_lang_code', 1, 'https://ror.org/005j74n78 Accuthera Inc. Accuthera Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚­ćƒ„ć‚»ćƒ©'),
(124703, 'https://ror.org/016nafs32', 'es', 1, 'https://ror.org/016nafs32 Fondo Nacional de Desarrollo Científico y Tecnológico'),
(124704, 'https://ror.org/05v2z0257', 'no_lang_code', 1, 'https://ror.org/05v2z0257 IMV Corporation IMV Corporation (Japan) IMVę Ŗå¼ä¼šē¤¾'),
(124705, 'https://ror.org/01fr85k73', 'en', 1, 'https://ror.org/01fr85k73 State Forest Resources Agency of Ukraine Державне агентство лісових Ń€ŠµŃŃƒŃ€ŃŃ–Š² України'),
(124706, 'https://ror.org/05pap9b79', 'no_lang_code', 1, 'https://ror.org/05pap9b79 PROCIENCIA Programa Nacional de Investigación Científica y Estudios Avanzados'),
(124707, 'https://ror.org/05c7j7r25', 'es', 1, 'https://ror.org/05c7j7r25 Consejo Nacional de Ciencia, Tecnología e Innovación Tecnológica'),
(124708, 'https://ror.org/03w2qj959', 'en', 1, 'https://ror.org/03w2qj959 Mahatma Gandhi Government Arts College, Mahe, Puducherry'),
(124709, 'https://ror.org/04ent7y07', 'en', 1, 'https://ror.org/04ent7y07 International Anal Neoplasia Society'),
(124710, 'https://ror.org/03h1bp626', 'no_lang_code', 1, 'https://ror.org/03h1bp626 NHV Corporation NHV Corporation (Japan) ę Ŗå¼ä¼šē¤¾NHVć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(124711, 'https://ror.org/04nmg1m16', 'de', 1, 'https://ror.org/04nmg1m16 Landeskriminalamt Nordrhein-Westfalen'),
(124712, 'https://ror.org/014hzpr49', 'no_lang_code', 1, 'https://ror.org/014hzpr49 Sanritsu Zelkova Veterinary Laboratory Sanritsu Zelkova Veterinary Laboratory (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ćƒŖćƒ„ć‚»ćƒ«ć‚³ćƒę¤œęŸ»ć‚»ćƒ³ć‚æćƒ¼'),
(124713, 'https://ror.org/05sbz5590', 'no_lang_code', 1, 'https://ror.org/05sbz5590 Bicom Corporation Bicom Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚³ćƒ '),
(124714, 'https://ror.org/01bypt413', 'en', 1, 'https://ror.org/01bypt413 Kyoto Institute of Economic Research, Kyoto University äŗ¬éƒ½å¤§å­¦ēµŒęøˆē ”ē©¶ę‰€'),
(124715, 'https://ror.org/00r8yzb86', 'no_lang_code', 1, 'https://ror.org/00r8yzb86 Trinity Industrial Corporation Trinity Industrial Corporation (Japan) ćƒˆćƒŖćƒ‹ćƒ†ć‚£å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124716, 'https://ror.org/041pv4511', 'no_lang_code', 1, 'https://ror.org/041pv4511 Suncall Corporation Suncall Corporation (Japan) ć‚µćƒ³ć‚³ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(124717, 'https://ror.org/04x7m7d04', 'no_lang_code', 1, 'https://ror.org/04x7m7d04 Adtex Inc. Adtex Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒ†ćƒƒć‚Æć‚¹'),
(124718, 'https://ror.org/003qq9h40', 'no_lang_code', 1, 'https://ror.org/003qq9h40 TOA-TONE Boring Co., Ltd. TOA-TONE Boring Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę±äŗœåˆ©ę ¹ćƒœćƒ¼ćƒŖćƒ³ć‚°'),
(124719, 'https://ror.org/0525ysz90', 'no_lang_code', 1, 'https://ror.org/0525ysz90 Gigaphoton Inc Gigaphoton Inc (Japan) ć‚®ć‚¬ćƒ•ć‚©ćƒˆćƒ³ę Ŗå¼ä¼šē¤¾'),
(124720, 'https://ror.org/01qxh4c22', 'no_lang_code', 1, 'https://ror.org/01qxh4c22 Tatsuta Electric WIRE Cable Co., Ltd. Tatsuta Electric WIRE Cable Co., Ltd. (Japan) ć‚æćƒ„ć‚æé›»ē·šę Ŗå¼ä¼šē¤¾'),
(124721, 'https://ror.org/04a9frc23', 'no_lang_code', 1, 'https://ror.org/04a9frc23 Newjec Inc. Newjec Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ„ćƒ¼ć‚øć‚§ćƒƒć‚Æ'),
(124722, 'https://ror.org/025qcyp58', 'no_lang_code', 1, 'https://ror.org/025qcyp58 Ebata Corporation Ebata Corporation (Japan) ć‚Øćƒć‚æę Ŗå¼ä¼šē¤¾'),
(124723, 'https://ror.org/04jjqsg28', 'no_lang_code', 1, 'https://ror.org/04jjqsg28 Torii Pharmaceutical Co., Ltd. Torii Pharmaceutical Co., Ltd. (Japan) é³„å±…č–¬å“ę Ŗå¼ä¼šē¤¾'),
(124724, 'https://ror.org/05xazy780', 'es', 1, 'https://ror.org/05xazy780 Universidad PolitƩcnica de Altamira'),
(124725, 'https://ror.org/030eybx10', 'es', 1, 'https://ror.org/030eybx10 Santiago de Compostelako Unibertsitatea Universidad de Santiago de Compostela Universidade de Santiago de Compostela Universitat de Santiago de Compostela University of Santiago de Compostela'),
(124726, 'https://ror.org/029jm2y17', 'no_lang_code', 1, 'https://ror.org/029jm2y17 Cueβs Co., Ltd. Cueβs Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒ„ćƒ¼ćƒ–ć‚¹'),
(124727, 'https://ror.org/03x9ssd90', 'no_lang_code', 1, 'https://ror.org/03x9ssd90 Isetan Mitsukoshi Holdings Ltd. Isetan Mitsukoshi Holdings Ltd. (Japan) ę Ŗå¼ä¼šē¤¾äø‰č¶Šä¼Šå‹¢äø¹ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(124728, 'https://ror.org/02xat1v07', 'no_lang_code', 1, 'https://ror.org/02xat1v07 NAU DATA Institute Inc. NAU DATA Institute Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćŖć†ćƒ‡ćƒ¼ć‚æē ”ē©¶ę‰€');
INSERT INTO `rors` VALUES
(124729, 'https://ror.org/01xj9p767', 'no_lang_code', 1, 'https://ror.org/01xj9p767 Rightechs Co., Ltd. Rightechs Co., Ltd. (Japan) ęœ‰é™ä¼šē¤¾ćƒ©ć‚¤ćƒ†ćƒƒć‚Æć‚¹'),
(124730, 'https://ror.org/00drv3378', 'en', 1, 'https://ror.org/00drv3378 Bį»™ GiĆ”o DỄc vĆ  ĐƠo tįŗ”o Ministry of Education and Training'),
(124731, 'https://ror.org/004ys8611', 'no_lang_code', 1, 'https://ror.org/004ys8611 Wacoal Corp. Wacoal Corp. (Japan) ę Ŗå¼ä¼šē¤¾ćƒÆć‚³ćƒ¼ćƒ«'),
(124732, 'https://ror.org/0425vcr93', 'no_lang_code', 1, 'https://ror.org/0425vcr93 Daikure Co., Ltd. Daikure Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ć‚Æćƒ¬'),
(124733, 'https://ror.org/00g3ans44', 'no_lang_code', 1, 'https://ror.org/00g3ans44 Nittoc Construction Co., Ltd. Nittoc Construction Co., Ltd. (Japan) ę—„ē‰¹å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(124734, 'https://ror.org/037feb580', 'no_lang_code', 1, 'https://ror.org/037feb580 Shinmei Electric Co., Ltd. Shinmei Electric Co., Ltd. (Japan) ē„žę˜Žé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124735, 'https://ror.org/0347tyq51', 'no_lang_code', 1, 'https://ror.org/0347tyq51 Kyowakogyosyo Co., Ltd. Kyowakogyosyo Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å…±å’Œå·„ę„­ę‰€'),
(124736, 'https://ror.org/03kcjjw59', 'no_lang_code', 1, 'https://ror.org/03kcjjw59 Robotmation Co., Ltd. Robotmation Co., Ltd. (Japan) ćƒ­ćƒœćƒƒćƒˆćƒ”ćƒ¼ć‚·ćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124737, 'https://ror.org/030wmwk08', 'no_lang_code', 1, 'https://ror.org/030wmwk08 Advantage Risk Management Co., Ltd. Advantage Risk Management Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒćƒ³ćƒ†ćƒƒć‚øćƒŖć‚¹ć‚Æćƒžćƒć‚øćƒ”ćƒ³ćƒˆ'),
(124738, 'https://ror.org/04xbczw40', 'fr', 1, 'https://ror.org/04xbczw40 Ampere Laboratory Laboratoire AmpĆØre'),
(124739, 'https://ror.org/03x42rv11', 'no_lang_code', 1, 'https://ror.org/03x42rv11 Tigers Polymer Corporation Tigers Polymer Corporation (Japan) ć‚æć‚¤ć‚¬ćƒ¼ć‚¹ćƒćƒŖćƒžćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124740, 'https://ror.org/054apec17', 'no_lang_code', 1, 'https://ror.org/054apec17 Alpha Corporation Alpha Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ćƒ•ć‚”'),
(124741, 'https://ror.org/01mgyjy41', 'no_lang_code', 1, 'https://ror.org/01mgyjy41 Kuriensu Industry Co., Ltd. Kuriensu Industry Co., Ltd. (Japan) ć‚ÆćƒŖć‚Øćƒ³ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124742, 'https://ror.org/03ykt1x87', 'no_lang_code', 1, 'https://ror.org/03ykt1x87 Arisawa Manufacturing Co., Ltd. Arisawa Manufacturing Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ęœ‰ę²¢č£½ä½œę‰€'),
(124743, 'https://ror.org/05qr2eq49', 'en', 1, 'https://ror.org/05qr2eq49 Sibelius Academy Sibelius-Akademin vid Konstuniversitetet Taideyliopiston Sibelius-Akatemia'),
(124744, 'https://ror.org/033e4mp27', 'no_lang_code', 1, 'https://ror.org/033e4mp27 Asahico Asahico (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ć‚µćƒ’ć‚³'),
(124745, 'https://ror.org/01e8bdz71', 'en', 1, 'https://ror.org/01e8bdz71 Vasyl Stefanyk National Scientific Library of Ukraine in Lviv Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° наукова бібліотека України імені Š’.Дтефаника'),
(124746, 'https://ror.org/04hm2xn53', 'en', 1, 'https://ror.org/04hm2xn53 Intelligence Advanced Research Projects Activity'),
(124747, 'https://ror.org/04tmx5z22', 'no_lang_code', 1, 'https://ror.org/04tmx5z22 S-Vance Ltd. S-Vance Ltd. (Japan) ć‚Øć‚¹ćƒćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(124748, 'https://ror.org/041rj4040', 'en', 1, 'https://ror.org/041rj4040 Haneda Clinic'),
(124749, 'https://ror.org/029twp718', 'no_lang_code', 1, 'https://ror.org/029twp718 Magara Construction Co., Ltd. Magara Construction Co., Ltd. (Japan) ēœŸęŸ„å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(124750, 'https://ror.org/00rtdr443', 'no_lang_code', 1, 'https://ror.org/00rtdr443 Astro Design, Inc. Astro Design, Inc. (Japan) ć‚¢ć‚¹ćƒˆćƒ­ćƒ‡ć‚¶ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124751, 'https://ror.org/00f66yp17', 'no_lang_code', 1, 'https://ror.org/00f66yp17 Cygnus Corp Inc. Cygnus Corp Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ć‚°ćƒŠć‚¹ć‚Øćƒ³ć‚æćƒ¼ćƒ—ćƒ©ć‚¤ć‚ŗ'),
(124752, 'https://ror.org/0435sem25', 'en', 1, 'https://ror.org/0435sem25 Oman College of Health Sciences'),
(124753, 'https://ror.org/039084a87', 'no_lang_code', 1, 'https://ror.org/039084a87 Beacle Inc. Beacle Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ“ćƒ¼ć‚Æćƒ«'),
(124754, 'https://ror.org/04mq2g308', 'en', 1, 'https://ror.org/04mq2g308 FHNW University of Applied Sciences and Arts Northwestern Switzerland Fachhochschule Nordwestschweiz FHNW'),
(124755, 'https://ror.org/033ja4t19', 'no_lang_code', 1, 'https://ror.org/033ja4t19 Fuji-Sangyo Co., Ltd. Fuji-Sangyo Co., Ltd. (Japan) åÆŒå£«ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(124756, 'https://ror.org/00f7e8p14', 'en', 1, 'https://ror.org/00f7e8p14 International Niemann-Pick Disease Registry'),
(124757, 'https://ror.org/04r5zzq41', 'en', 1, 'https://ror.org/04r5zzq41 Scarborough Centre for Healthy Communities'),
(124758, 'https://ror.org/05g7tmb67', 'no_lang_code', 1, 'https://ror.org/05g7tmb67 DAI-DAN Co., Ltd. DAI-DAN Co., Ltd. (Japan) ćƒ€ć‚¤ćƒ€ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124759, 'https://ror.org/05tejdt54', 'no_lang_code', 1, 'https://ror.org/05tejdt54 JSP Corporation JSP Corporation (Japan) ę Ŗå¼ä¼šē¤¾JSP'),
(124760, 'https://ror.org/03h10bc33', 'no_lang_code', 1, 'https://ror.org/03h10bc33 Brainvision Inc. Brainvision Inc. (Japan) ćƒ–ćƒ¬ć‚¤ćƒ³ćƒ“ć‚øćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124761, 'https://ror.org/054y56096', 'no_lang_code', 1, 'https://ror.org/054y56096 Magneo Giken Co., Ltd. Magneo Giken Co., Ltd. (Japan) ęœ‰é™ä¼šē¤¾ćƒžć‚°ćƒć‚ŖęŠ€ē ”'),
(124762, 'https://ror.org/03mk4cd10', 'no_lang_code', 1, 'https://ror.org/03mk4cd10 C.I.KASEI Company, Ltd. C.I.KASEI Company, Ltd. (Japan) ć‚·ćƒ¼ć‚¢ć‚¤åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(124763, 'https://ror.org/03mp00c35', 'no_lang_code', 1, 'https://ror.org/03mp00c35 Okuno Chemical Industries Co., Ltd. Okuno Chemical Industries Co., Ltd. (Japan) å„„é‡Žč£½č–¬å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124764, 'https://ror.org/05cqrgp29', 'no_lang_code', 1, 'https://ror.org/05cqrgp29 Totetsu Kogyo Co., Ltd. Totetsu Kogyo Co., Ltd. (Japan) ę±é‰„å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124765, 'https://ror.org/02r50g837', 'no_lang_code', 1, 'https://ror.org/02r50g837 G-TEKT Corporation G-TEKT Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ćƒ†ć‚Æćƒˆ'),
(124766, 'https://ror.org/04815td82', 'en', 1, 'https://ror.org/04815td82 CEMAG Care (France)'),
(124767, 'https://ror.org/05v9yfw49', 'no_lang_code', 1, 'https://ror.org/05v9yfw49 Kaneso Co., Ltd. Kaneso Co., Ltd. (Japan) ć‚«ćƒć‚½ć‚¦ę Ŗå¼ä¼šē¤¾'),
(124768, 'https://ror.org/015nttt85', 'no_lang_code', 1, 'https://ror.org/015nttt85 KGS Corporation KGS Corporation (Japan) ć‚±ćƒ¼ć‚øćƒ¼ć‚Øć‚¹ę Ŗå¼ä¼šē¤¾'),
(124769, 'https://ror.org/042prj702', 'no_lang_code', 1, 'https://ror.org/042prj702 Tateho Chemical Industries Co., Ltd. Tateho Chemical Industries Co., Ltd. (Japan) ć‚æćƒ†ćƒ›åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124770, 'https://ror.org/02aqrs704', 'no_lang_code', 1, 'https://ror.org/02aqrs704 Suruga Seiki Co., Ltd. Suruga Seiki Co., Ltd. (Japan) é§æę²³ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124771, 'https://ror.org/04fawj142', 'de', 1, 'https://ror.org/04fawj142 PƤdagogische Hochschule FHNW'),
(124772, 'https://ror.org/04t35q872', 'no_lang_code', 1, 'https://ror.org/04t35q872 Leave A NEST Co., Ltd. Leave A NEST Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒŖćƒćƒć‚¹'),
(124773, 'https://ror.org/036f6kk02', 'no_lang_code', 1, 'https://ror.org/036f6kk02 Piolax, Inc. Piolax, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‘ć‚¤ć‚Ŗćƒ©ćƒƒć‚Æć‚¹'),
(124774, 'https://ror.org/02b5vq778', 'fr', 1, 'https://ror.org/02b5vq778 Laboratoire d''Informatique et d''Automatique pour les SystĆØmes Laboratory of Computer Science and Automatic Control for Systems'),
(124775, 'https://ror.org/009666g22', 'no_lang_code', 1, 'https://ror.org/009666g22 Sanoh Industrial Co., Ltd. Sanoh Industrial Co., Ltd. (Japan) äø‰ę«»å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124776, 'https://ror.org/02hcgka80', 'no_lang_code', 1, 'https://ror.org/02hcgka80 Kubotek Corporation Kubotek Corporation (Japan) ć‚Æćƒœćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124777, 'https://ror.org/02e463172', 'en', 1, 'https://ror.org/02e463172 American Cancer Society'),
(124778, 'https://ror.org/009q5rm41', 'no_lang_code', 1, 'https://ror.org/009q5rm41 CCI Corporation CCI Corporation (Japan) ć‚·ćƒ¼ć‚·ćƒ¼ć‚¢ć‚¤ę Ŗå¼ä¼šē¤¾'),
(124779, 'https://ror.org/03nmvte17', 'no_lang_code', 1, 'https://ror.org/03nmvte17 Fukutome MEAT Packers, Ltd. Fukutome MEAT Packers, Ltd. (Japan) ē¦ē•™ćƒćƒ ę Ŗå¼ä¼šē¤¾'),
(124780, 'https://ror.org/029zkba77', 'no_lang_code', 1, 'https://ror.org/029zkba77 Sunagro Co., Ltd. Sunagro Co., Ltd. (Japan) ć‚µćƒ³ć‚¢ć‚°ćƒ­ę Ŗå¼ä¼šē¤¾'),
(124781, 'https://ror.org/0245c5212', 'en', 1, 'https://ror.org/0245c5212 Academia Militar Portuguese Military Academy'),
(124782, 'https://ror.org/02ytwaa07', 'no_lang_code', 1, 'https://ror.org/02ytwaa07 K.I Chemical Industry Co., Ltd. K.I Chemical Industry Co., Ltd. (Japan) ć‚±ć‚¤ćƒ»ć‚¢ć‚¤åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(124783, 'https://ror.org/05591te55', 'de', 1, 'https://ror.org/05591te55 Ludwig-Maximilians-Universität München'),
(124784, 'https://ror.org/034eyr523', 'no_lang_code', 1, 'https://ror.org/034eyr523 YUKI Gosei Kogyo Co., Ltd. YUKI Gosei Kogyo Co., Ltd. (Japan) ęœ‰ę©Ÿåˆęˆč–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124785, 'https://ror.org/010xdxe36', 'en', 1, 'https://ror.org/010xdxe36 Shri Ratanlal Kanwarlal Patni Girls'' College'),
(124786, 'https://ror.org/045wxkb33', 'no_lang_code', 1, 'https://ror.org/045wxkb33 Serendip Institute Inc. Serendip Institute Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ćƒ¬ćƒ³ćƒ‡ć‚£ćƒƒćƒ—ē ”ē©¶ę‰€'),
(124787, 'https://ror.org/02hzddm04', 'no_lang_code', 1, 'https://ror.org/02hzddm04 Kojima IRON Works Co., Ltd. Kojima IRON Works Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å°å³¶éµå·„ę‰€'),
(124788, 'https://ror.org/0147j4w33', 'en', 1, 'https://ror.org/0147j4w33 cTRL Therapeutics cTRL Therapeutics (United States)'),
(124789, 'https://ror.org/02zatbz66', 'no_lang_code', 1, 'https://ror.org/02zatbz66 Maruyama MFG. Co., Inc. Maruyama MFG. Co., Inc. (Japan) ę Ŗå¼ä¼šē¤¾äøøå±±č£½ä½œę‰€'),
(124790, 'https://ror.org/01fncq696', 'no_lang_code', 1, 'https://ror.org/01fncq696 Sekiaoi Techno Co., Ltd. Sekiaoi Techno Co., Ltd. (Japan) ć‚»ć‚­ć‚¢ć‚Ŗć‚¤ćƒ†ć‚ÆćƒŽę Ŗå¼ä¼šē¤¾'),
(124791, 'https://ror.org/042cv7538', 'no_lang_code', 1, 'https://ror.org/042cv7538 KUME Sekkei KUME Sekkei (Japan) ę Ŗå¼ä¼šē¤¾ä¹…ē±³čØ­čØˆ'),
(124792, 'https://ror.org/01tr5ad93', 'en', 1, 'https://ror.org/01tr5ad93 ARON Research Foundation ETS'),
(124793, 'https://ror.org/029stjg63', 'no_lang_code', 1, 'https://ror.org/029stjg63 EXA Corporation EXA Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚Æć‚µ'),
(124794, 'https://ror.org/01ydfh569', 'en', 1, 'https://ror.org/01ydfh569 Arts, Commerce and Science College, Palus ą¤†ą¤°ą„ą¤Ÿą„ą¤ø, ą¤•ą„‰ą¤®ą¤°ą„ą¤ø & ą¤øą¤¾ą¤Æą¤Øą„ą¤ø ą¤•ą„‰ą¤²ą„‡ą¤œ, ą¤Ŗą¤²ą„ą¤ø'),
(124795, 'https://ror.org/00xmta819', 'no_lang_code', 1, 'https://ror.org/00xmta819 Seiki Tokyu Kogyo Co., Ltd. Seiki Tokyu Kogyo Co., Ltd. (Japan) äø–ē“€ę±ę€„å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124796, 'https://ror.org/0390frp04', 'no_lang_code', 1, 'https://ror.org/0390frp04 Koiwai FARM, Ltd. Koiwai FARM, Ltd. (Japan) å°å²©äŗ•č¾²ē‰§ę Ŗå¼ä¼šē¤¾'),
(124797, 'https://ror.org/02gzyqy61', 'no_lang_code', 1, 'https://ror.org/02gzyqy61 ABLE Corporation ABLE Corporation (Japan) ć‚Øć‚¤ćƒ–ćƒ«ę Ŗå¼ä¼šē¤¾'),
(124798, 'https://ror.org/00r9wbc53', 'no_lang_code', 1, 'https://ror.org/00r9wbc53 Kinrei Corporation Kinrei Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚­ćƒ³ćƒ¬ć‚¤'),
(124799, 'https://ror.org/025124239', 'no_lang_code', 1, 'https://ror.org/025124239 IG Kogyo Co., Ltd. IG Kogyo Co., Ltd. (Japan) ć‚¢ć‚¤ć‚øćƒ¼å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124800, 'https://ror.org/009ara090', 'en', 1, 'https://ror.org/009ara090 Rhodium Scientific Rhodium Scientific (United States)'),
(124801, 'https://ror.org/020x9b423', 'no_lang_code', 1, 'https://ror.org/020x9b423 G&G Science Co., Ltd. G&G Science Co., Ltd. (Japan) G&Gć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(124802, 'https://ror.org/05fyf3p52', 'no_lang_code', 1, 'https://ror.org/05fyf3p52 Netprice, Ltd. Netprice, Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒƒćƒˆćƒ—ćƒ©ć‚¤ć‚¹'),
(124803, 'https://ror.org/032b4yg08', 'no_lang_code', 1, 'https://ror.org/032b4yg08 Uetax Corporation Uetax Corporation (Japan) ć‚¦ć‚Øć‚æćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(124804, 'https://ror.org/03z99f347', 'no_lang_code', 1, 'https://ror.org/03z99f347 Youworks Corporation Youworks Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ¼ćƒÆćƒ¼ć‚Æć‚¹'),
(124805, 'https://ror.org/04k9wp214', 'en', 1, 'https://ror.org/04k9wp214 NIHR Trauma Management MedTech Co-operative'),
(124806, 'https://ror.org/01ret1f52', 'no_lang_code', 1, 'https://ror.org/01ret1f52 Oshika Co., Ltd. Oshika Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ć‚·ć‚«'),
(124807, 'https://ror.org/01xjq7424', 'fr', 0, 'https://ror.org/01xjq7424 Institut National Polytechnique de Lorraine'),
(124808, 'https://ror.org/01rnhv795', 'no_lang_code', 1, 'https://ror.org/01rnhv795 Chizaki DORO Co., Ltd. Chizaki DORO Co., Ltd. (Japan) åœ°å“Žé“č·Æę Ŗå¼ä¼šē¤¾'),
(124809, 'https://ror.org/057y4vg80', 'fr', 1, 'https://ror.org/057y4vg80 Inter-University Laboratory for Research in Didactics of Lansad LAboratoire Inter-universitaire de Recherche en DIdactique Lansad'),
(124810, 'https://ror.org/038wtn688', 'no_lang_code', 1, 'https://ror.org/038wtn688 Kyushin Pharmaceutical Co., Ltd. Kyushin Pharmaceutical Co., Ltd. (Japan) ę•‘åæƒč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(124811, 'https://ror.org/0229m6042', 'no_lang_code', 1, 'https://ror.org/0229m6042 Silex Technology, Inc. Silex Technology, Inc. (Japan) ć‚µć‚¤ćƒ¬ćƒƒć‚Æć‚¹ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(124812, 'https://ror.org/05nhmfe20', 'no_lang_code', 1, 'https://ror.org/05nhmfe20 TOKU Pneumatic TOOL MFG. Co., Ltd. TOKU Pneumatic TOOL MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę±ę“‹ē©ŗę©Ÿč£½ä½œę‰€'),
(124813, 'https://ror.org/01cgxj243', 'no_lang_code', 1, 'https://ror.org/01cgxj243 Shiken Shiken (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ć‚±ćƒ³'),
(124814, 'https://ror.org/0091s7m58', 'no_lang_code', 1, 'https://ror.org/0091s7m58 X-RAY Precision, Inc. X-RAY Precision, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒƒć‚Æć‚¹ćƒ¬ć‚¤ćƒ—ćƒ¬ć‚·ć‚øćƒ§ćƒ³'),
(124815, 'https://ror.org/00c03hy02', 'no_lang_code', 1, 'https://ror.org/00c03hy02 IMS Techno IMS Techno (Japan) IMSćƒ†ć‚ÆćƒŽę Ŗå¼ä¼šē¤¾'),
(124816, 'https://ror.org/01panz854', 'no_lang_code', 1, 'https://ror.org/01panz854 SHIN-KOBE Electric Machinery Co., Ltd. SHIN-KOBE Electric Machinery Co., Ltd. (Japan) ę–°ē„žęˆøé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124817, 'https://ror.org/02cbj7392', 'no_lang_code', 1, 'https://ror.org/02cbj7392 Yamamori Inc. Yamamori Inc. (Japan) ćƒ¤ćƒžćƒ¢ćƒŖę Ŗå¼ä¼šē¤¾'),
(124818, 'https://ror.org/055nggq79', 'no_lang_code', 1, 'https://ror.org/055nggq79 Aisawa Construction Co., Ltd. Aisawa Construction Co., Ltd. (Japan) ć‚¢ć‚¤ć‚µćƒÆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124819, 'https://ror.org/034chen23', 'en', 1, 'https://ror.org/034chen23 Metropolitan Water District of Southern California'),
(124820, 'https://ror.org/04y74f588', 'no_lang_code', 1, 'https://ror.org/04y74f588 Dainichi Co., Ltd. Dainichi Co., Ltd. (Japan) ćƒ€ć‚¤ćƒ‹ćƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124821, 'https://ror.org/02ppy9c89', 'en', 1, 'https://ror.org/02ppy9c89 NIHR Nottingham Digestive Diseases Biomedical Research Unit'),
(124822, 'https://ror.org/04y5mzx48', 'no_lang_code', 1, 'https://ror.org/04y5mzx48 Taimei Chemicals Co., Ltd. Taimei Chemicals Co., Ltd. (Japan) å¤§ę˜ŽåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124823, 'https://ror.org/018pp1107', 'fr', 1, 'https://ror.org/018pp1107 Arts et MƩtiers'),
(124824, 'https://ror.org/044xxhs61', 'en', 1, 'https://ror.org/044xxhs61 NIHR WoundTec Healthcare Technology Co-operative'),
(124825, 'https://ror.org/03cfaj272', 'en', 1, 'https://ror.org/03cfaj272 Australian Drosophila Transgenic Facility'),
(124826, 'https://ror.org/03afg5j45', 'no_lang_code', 1, 'https://ror.org/03afg5j45 Kalinga University कलिंगा ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ কলিংগ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(124827, 'https://ror.org/03cn8tx65', 'no_lang_code', 1, 'https://ror.org/03cn8tx65 Primedelta Primedelta (Japan) ćƒ—ćƒ©ć‚¤ćƒ ćƒ»ćƒ‡ćƒ«ć‚æę Ŗå¼ä¼šē¤¾'),
(124828, 'https://ror.org/02h3fck13', 'no_lang_code', 1, 'https://ror.org/02h3fck13 Shinshu Technology Licensing Organization Shinshu Technology Licensing Organization (Japan) ę Ŗå¼ä¼šē¤¾äæ”å·žTLO'),
(124829, 'https://ror.org/00yx33h08', 'no_lang_code', 1, 'https://ror.org/00yx33h08 SAIL-Technologies.ltd. SAIL-Technologies.ltd. (Japan) SAILćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(124830, 'https://ror.org/02rhvhd80', 'no_lang_code', 1, 'https://ror.org/02rhvhd80 JMACS Japan Co., Ltd. JMACS Japan Co., Ltd. (Japan) JMACSę Ŗå¼ä¼šē¤¾'),
(124831, 'https://ror.org/03eekr767', 'no_lang_code', 1, 'https://ror.org/03eekr767 Sharp Corporation Sharp Corporation (Japan) ć‚·ćƒ£ćƒ¼ćƒ—ę Ŗå¼ä¼šē¤¾'),
(124832, 'https://ror.org/00xpje287', 'no_lang_code', 1, 'https://ror.org/00xpje287 Makino Milling Machine Co., Ltd. Makino Milling Machine Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ē‰§é‡Žćƒ•ćƒ©ć‚¤ć‚¹č£½ä½œę‰€'),
(124833, 'https://ror.org/028v6t769', 'no_lang_code', 1, 'https://ror.org/028v6t769 Fujicopian Co., Ltd. Fujicopian Co., Ltd. (Japan) ćƒ•ć‚øć‚³ćƒ”ć‚¢ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124834, 'https://ror.org/03kw9dd93', 'no_lang_code', 1, 'https://ror.org/03kw9dd93 Kusumoto Chemicals, Ltd. Kusumoto Chemicals, Ltd. (Japan) ę„ ęœ¬åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(124835, 'https://ror.org/00ahymj16', 'no_lang_code', 1, 'https://ror.org/00ahymj16 Hasshu Co., Ltd. Hasshu Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾å…«å·ž'),
(124836, 'https://ror.org/05mmh0f86', 'en', 1, 'https://ror.org/05mmh0f86 Australian Research Council'),
(124837, 'https://ror.org/04agc0y33', 'no_lang_code', 1, 'https://ror.org/04agc0y33 N.A.Gene Corporation (Japan) N.A.Gene Corporationn N.A.Geneę Ŗå¼ä¼šē¤¾'),
(124838, 'https://ror.org/015v1p362', 'no_lang_code', 1, 'https://ror.org/015v1p362 Fukusen Co., Ltd. Fukusen Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚Æć‚»ćƒ³'),
(124839, 'https://ror.org/00jzprq70', 'no_lang_code', 1, 'https://ror.org/00jzprq70 Ritecs, Inc. Ritecs, Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ©ć‚¤ćƒ†ćƒƒć‚Æć‚¹'),
(124840, 'https://ror.org/00x0ma614', 'pt', 1, 'https://ror.org/00x0ma614 Coordenação de Aperfeicoamento de Pessoal de Nível Superior'),
(124841, 'https://ror.org/00g8k7g33', 'en', 1, 'https://ror.org/00g8k7g33 Det Norske Videnskaps-Akademi Norwegian Academy of Science and Letters'),
(124842, 'https://ror.org/03nz17f48', 'en', 1, 'https://ror.org/03nz17f48 Japan Cable and Telecommunications Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚±ćƒ¼ćƒ–ćƒ«ćƒ†ćƒ¬ćƒ“é€£ē›Ÿ'),
(124843, 'https://ror.org/055j4q288', 'no_lang_code', 1, 'https://ror.org/055j4q288 Shabondama SOAP Corporation Shabondama SOAP Corporation (Japan) ć‚·ćƒ£ćƒœćƒ³ēŽ‰ēŸ³ć‘ć‚“ę Ŗå¼ä¼šē¤¾'),
(124844, 'https://ror.org/021sh9c19', 'no_lang_code', 1, 'https://ror.org/021sh9c19 FUJI-Silysia Chemical Ltd. FUJI-Silysia Chemical Ltd. (Japan) åÆŒå£«ć‚·ćƒŖć‚·ć‚¢åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(124845, 'https://ror.org/00j2zd402', 'no_lang_code', 1, 'https://ror.org/00j2zd402 COCO Research Inc. COCO Research Inc. (Japan) ć‚³ć‚³ćƒŖć‚µćƒ¼ćƒę Ŗå¼ä¼šē¤¾'),
(124846, 'https://ror.org/026zzn846', 'en', 1, 'https://ror.org/026zzn846 Queen Mary University of London Queen Mary, Prifysgol Llundain'),
(124847, 'https://ror.org/03qzrx039', 'no_lang_code', 1, 'https://ror.org/03qzrx039 Lasertec Corporation Lasertec Corporation (Japan) ćƒ¬ćƒ¼ć‚¶ćƒ¼ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124848, 'https://ror.org/03yr99j48', 'en', 1, 'https://ror.org/03yr99j48 NIHR Maudsley Dementia Biomedical Research Unit'),
(124849, 'https://ror.org/03b9xfg38', 'no_lang_code', 1, 'https://ror.org/03b9xfg38 Takakita Co., Ltd. Takakita Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚«ć‚­ć‚æ'),
(124850, 'https://ror.org/003g8cr37', 'no_lang_code', 1, 'https://ror.org/003g8cr37 H.U. Group Holdings, Inc. H.U. Group Holdings, Inc. (Japan) H.U.ć‚°ćƒ«ćƒ¼ćƒ—ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(124851, 'https://ror.org/01vzmdx15', 'en', 1, 'https://ror.org/01vzmdx15 France Life Imaging'),
(124852, 'https://ror.org/03r30tx76', 'no_lang_code', 1, 'https://ror.org/03r30tx76 Cabot Japan K.K. Cabot Japan K.K. (Japan) ć‚­ćƒ£ćƒœćƒƒćƒˆć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124853, 'https://ror.org/04sz9zg65', 'no_lang_code', 1, 'https://ror.org/04sz9zg65 NJS Co., Ltd. NJS Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾NJS'),
(124854, 'https://ror.org/015bveq59', 'no_lang_code', 1, 'https://ror.org/015bveq59 SODA Aromatic Co., Ltd. SODA Aromatic Co., Ltd. (Japan) ę›½ē”°é¦™ę–™ę Ŗå¼ä¼šē¤¾'),
(124855, 'https://ror.org/01y2jtd41', 'en', 1, 'https://ror.org/01y2jtd41 Universidad de Wisconsin-Madison University of Wisconsin–Madison UniversitĆ© du Wisconsin Ć  Madison'),
(124856, 'https://ror.org/001mkgv54', 'no_lang_code', 1, 'https://ror.org/001mkgv54 Digital Stream Corporation Digital Stream Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‡ć‚øć‚æćƒ«ć‚¹ćƒˆćƒŖćƒ¼ćƒ '),
(124857, 'https://ror.org/05cm6cw45', 'no_lang_code', 1, 'https://ror.org/05cm6cw45 SYNZTEC Co., Ltd. SYNZTEC Co., Ltd. (Japan) ć‚·ćƒ³ć‚øćƒ¼ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124858, 'https://ror.org/0181xnw06', 'gl', 1, 'https://ror.org/0181xnw06 Xunta de Galicia'),
(124859, 'https://ror.org/0107yx695', 'no_lang_code', 1, 'https://ror.org/0107yx695 OCC Corporation OCC Corporation (Japan) ę Ŗå¼ä¼šē¤¾OCC'),
(124860, 'https://ror.org/05bht3p65', 'en', 1, 'https://ror.org/05bht3p65 Brain Research Africa Initiative'),
(124861, 'https://ror.org/01gwp4678', 'no_lang_code', 1, 'https://ror.org/01gwp4678 Carabiner SYSTEMS, Inc. Carabiner SYSTEMS, Inc. (Japan) ęœ‰é™ä¼šē¤¾ć‚«ćƒ©ćƒ“ćƒŠć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(124862, 'https://ror.org/01mtja279', 'no_lang_code', 1, 'https://ror.org/01mtja279 U-SHIN Ltd. U-SHIN Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ¼ć‚·ćƒ³'),
(124863, 'https://ror.org/009hsm219', 'no_lang_code', 1, 'https://ror.org/009hsm219 Sawai Pharmaceutical Co., Ltd. Sawai Pharmaceutical Co., Ltd. (Japan) ę²¢äŗ•č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(124864, 'https://ror.org/04brv5149', 'no_lang_code', 1, 'https://ror.org/04brv5149 Inplanta Innovations Inc. Inplanta Innovations Inc. (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ćƒ—ćƒ©ćƒ³ć‚æć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗ'),
(124865, 'https://ror.org/005e5a449', 'no_lang_code', 1, 'https://ror.org/005e5a449 Kuboko Paint Co., Ltd. Kuboko Paint Co., Ltd. (Japan) ä¹…äæå­ćƒšć‚¤ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(124866, 'https://ror.org/04v0pm942', 'no_lang_code', 1, 'https://ror.org/04v0pm942 Youth Engineering Co., Ltd. Youth Engineering Co., Ltd. (Japan) ćƒ¦ćƒ¼ć‚¹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(124867, 'https://ror.org/047rfch84', 'no_lang_code', 1, 'https://ror.org/047rfch84 NEOS Co., Ltd. NEOS Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚Ŗć‚¹'),
(124868, 'https://ror.org/037m4z744', 'fr', 1, 'https://ror.org/037m4z744 John Libbey Eurotext John Libbey Eurotext (France)'),
(124869, 'https://ror.org/00pfbm787', 'no_lang_code', 1, 'https://ror.org/00pfbm787 KANZACC Co., Ltd. KANZACC Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾KANZACC'),
(124870, 'https://ror.org/007kqa289', 'no_lang_code', 1, 'https://ror.org/007kqa289 Pharmaco-Cell Company Ltd. Pharmaco-Cell Company Ltd. (Japan) ćƒ•ć‚”ćƒ¼ćƒžć‚³ć‚»ćƒ«ę Ŗå¼ä¼šē¤¾'),
(124871, 'https://ror.org/04d3w3270', 'no_lang_code', 1, 'https://ror.org/04d3w3270 Kawai Musical Instruments MFG. Co., Ltd. Kawai Musical Instruments MFG. Co., Ltd. (Japan) ę Ŗå¼ä¼šē¤¾ę²³åˆę„½å™Øč£½ä½œę‰€'),
(124872, 'https://ror.org/0572g1s63', 'no_lang_code', 1, 'https://ror.org/0572g1s63 Kanac Corporation Kanac Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ćƒŠćƒƒć‚Æ'),
(124873, 'https://ror.org/02davtb12', 'it', 1, 'https://ror.org/02davtb12 Centro San Giovanni di Dio Fatebenefratelli'),
(124874, 'https://ror.org/01fphh031', 'en', 1, 'https://ror.org/01fphh031 NIHR Leicester-Loughborough Diet, Lifestyle and Physical Activity Biomedical Research Unit'),
(124875, 'https://ror.org/01kbjb264', 'no_lang_code', 1, 'https://ror.org/01kbjb264 Sasebo Heavy Industries, Co., Ltd. Sasebo Heavy Industries, Co., Ltd. (Japan) ä½äø–äæé‡å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124876, 'https://ror.org/05ajfad13', 'no_lang_code', 1, 'https://ror.org/05ajfad13 Machida Corporation Machida Corporation (Japan) ćƒžćƒćƒ€ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(124877, 'https://ror.org/03yn1rq18', 'no_lang_code', 1, 'https://ror.org/03yn1rq18 Genomidea Inc. Genomidea Inc. (Japan) ć‚øć‚§ćƒŽćƒŸćƒ‡ć‚£ć‚¢ę Ŗå¼ä¼šē¤¾'),
(124878, 'https://ror.org/01m1rez02', 'no_lang_code', 1, 'https://ror.org/01m1rez02 Asubio Pharma Co., Ltd. Asubio Pharma Co., Ltd. (Japan) ć‚¢ć‚¹ćƒ“ć‚Ŗćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(124879, 'https://ror.org/00055wn08', 'no_lang_code', 1, 'https://ror.org/00055wn08 MEC Company Ltd. MEC Company Ltd. (Japan) ćƒ”ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(124880, 'https://ror.org/0220mzb33', 'en', 1, 'https://ror.org/0220mzb33 Coleg y Brenin, Llundain King''s College London'),
(124881, 'https://ror.org/03vq9qa86', 'no_lang_code', 1, 'https://ror.org/03vq9qa86 Hagihara Industries Inc. Hagihara Industries Inc. (Japan) č©åŽŸå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(124882, 'https://ror.org/013j1vq42', 'en', 1, 'https://ror.org/013j1vq42 A. Krymskyi Institute of Oriental Studies Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ схоГознавства ім. А. Š®. ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠ¾Š³Š¾ ŠŠŠ України');

-- --------------------------------------------------------

--
-- Table structure for table `ror_settings`
--

CREATE TABLE `ror_settings` (
  `ror_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ror_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`ror_setting_id`),
  UNIQUE KEY `ror_settings_unique` (`ror_id`,`locale`,`setting_name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='More data about Ror registry dataset cache' AUTO_INCREMENT=162788 ;

--
-- Dumping data for table `ror_settings`
--

INSERT INTO `ror_settings` VALUES
(1, 1, 'en', 'name', 'RMIT University'),
(2, 2, 'en', 'name', 'Central Queensland University'),
(3, 3, 'en', 'name', 'Bond University'),
(4, 4, 'en', 'name', 'Charles Sturt University'),
(5, 5, 'en', 'name', 'Mater Research'),
(6, 6, 'en', 'name', 'The Heart Research Institute'),
(7, 7, 'en', 'name', 'University Mental Health Research Institute'),
(8, 8, 'no_lang_code', 'name', 'Rio Tinto (United Kingdom)'),
(9, 9, 'no_lang_code', 'name', 'Arup Group (United States)'),
(10, 10, 'no_lang_code', 'name', 'BT Group (United Kingdom)'),
(11, 11, 'en', 'name', 'Mater Health Services'),
(12, 12, 'no_lang_code', 'name', 'Pilkington (United Kingdom)'),
(13, 13, 'no_lang_code', 'name', 'Trojan Technologies (Canada)'),
(14, 14, 'en', 'name', 'The Alfred Hospital'),
(15, 15, 'no_lang_code', 'name', 'Xstrata (United Kingdom)'),
(16, 16, 'en', 'name', 'Hunter New England Local Health District'),
(17, 17, 'no_lang_code', 'name', 'BASF (Germany)'),
(18, 18, 'en', 'name', 'Boys Town'),
(19, 19, 'no_lang_code', 'name', 'Olympus (Australia)'),
(20, 20, 'no_lang_code', 'name', 'UK Coal'),
(21, 21, 'en', 'name', 'Potsdam Institute for Climate Impact Research'),
(22, 21, 'de', 'name', 'Potsdam-Institut für Klimafolgenforschung'),
(23, 22, 'en', 'name', 'Institute of Fundamental Technological Research'),
(24, 22, 'pl', 'name', 'Instytut Podstawowych Problemów Techniki'),
(25, 23, 'no_lang_code', 'name', 'PSA Peugeot Citroƫn (France)'),
(26, 24, 'en', 'name', 'London South Bank University'),
(27, 25, 'de', 'name', 'Papiertechnische Stiftung'),
(28, 26, 'en', 'name', 'Institute for Computer Science and Control'),
(29, 26, 'hu', 'name', 'Magyar TudomÔnyos Akadémia SzÔmítÔstechnikai és AutomatizÔlÔsi Kutatóintézete'),
(30, 27, 'no_lang_code', 'name', 'Pera (United Kingdom)'),
(31, 28, 'no_lang_code', 'name', 'Renault (France)'),
(32, 29, 'no_lang_code', 'name', 'Robosoft (France)'),
(33, 30, 'tr', 'name', 'Ulusal ve Uluslararası Ekonomi Üniversitesi'),
(34, 30, 'en', 'name', 'University of National and World Economy'),
(35, 30, 'bg', 'name', 'Университет за национално Šø световно стопанство'),
(36, 31, 'no_lang_code', 'name', 'Ecofys (Netherlands)'),
(37, 32, 'nl', 'name', 'Universiteit Antwerpen'),
(38, 32, 'en', 'name', 'University of Antwerp'),
(39, 32, 'de', 'name', 'UniversitƤt Antwerpen'),
(40, 32, 'fr', 'name', 'UniversitƩ d''Anvers'),
(41, 33, 'en', 'name', 'European Synchrotron Radiation Facility'),
(42, 34, 'no_lang_code', 'name', 'STMicroelectronics (Italy)'),
(43, 35, 'en', 'name', 'Institute of Accelerating Systems and Applications'),
(44, 35, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ€Ī¹Ļ„Ī±Ļ‡Ļ…Ī½Ļ„Ī¹ĪŗĻŽĪ½ Ī£Ļ…ĻƒĻ„Ī·Ī¼Ī¬Ļ„Ļ‰Ī½ και Ī•Ļ†Ī±ĻĪ¼ĪæĪ³ĻŽĪ½'),
(45, 36, 'en', 'name', 'Wise & Munro Learning Research'),
(46, 37, 'en', 'name', 'University of Mannheim'),
(47, 37, 'de', 'name', 'UniversitƤt Mannheim'),
(48, 38, 'it', 'name', 'Consorzio Pisa Ricerche'),
(49, 39, 'de', 'name', 'Empirica. Gesellschaft für Kommunikations- und Technologieforschung'),
(50, 39, 'en', 'name', 'empirica - Communication and Technology Research'),
(51, 40, 'no_lang_code', 'name', 'Volvo (Sweden)'),
(52, 40, 'sv', 'name', 'Volvokoncernen'),
(53, 41, 'fr', 'name', 'SociƩtƩ de MathƩmatiques AppliquƩes et de Sciences Humaines'),
(54, 42, 'en', 'name', 'National Society of French Railways'),
(55, 42, 'no_lang_code', 'name', 'SociƩtƩ Nationale des Chemins de Fer FranƧais (France)'),
(56, 43, 'en', 'name', 'European Road Transport Telematics Implementation Co-Ordination'),
(57, 44, 'no_lang_code', 'name', 'Arttic (France)'),
(58, 45, 'no_lang_code', 'name', 'Tecnatom (Spain)'),
(59, 46, 'no_lang_code', 'name', 'Teer Coatings (United Kingdom)'),
(60, 47, 'es', 'name', 'Tekniker'),
(61, 48, 'fr', 'name', 'Multitel'),
(62, 49, 'no_lang_code', 'name', 'ThyssenKrupp (Germany)'),
(63, 50, 'no_lang_code', 'name', 'STMicroelectronics (France)'),
(64, 51, 'fr', 'name', 'Institut Technologique ForĆŖt Cellulose Bois-Construction Ameublement'),
(65, 52, 'en', 'name', 'Finnish Institute of Occupational Health'),
(66, 53, 'en', 'name', 'Enterprise Ireland'),
(67, 54, 'en', 'name', 'Chaudhary Charan Singh Haryana Agricultural University'),
(68, 54, 'hi', 'name', 'ą¤šą„Œą¤§ą¤°ą„€ चरण सिंह हरियाणा ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(69, 54, 'ta', 'name', 'சௌதரி ą®šą®°ą®£ąÆ ą®šą®æą®™ąÆ அரியானா ą®µąÆ‡ą®³ą®¾ą®£ąÆą®®ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(70, 55, 'en', 'name', 'Metropolitan Autonomous University'),
(71, 55, 'es', 'name', 'Universidad Autónoma Metropolitana'),
(72, 56, 'en', 'name', 'Ain Shams University'),
(73, 56, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¹ŁŠŁ† Ų“Ł…Ų³'),
(74, 57, 'no_lang_code', 'name', 'TuTech Innovation (Germany)'),
(75, 58, 'no_lang_code', 'name', 'FORCE Technology (Denmark)'),
(76, 59, 'no_lang_code', 'name', 'MTU Aero Engines (Germany)'),
(77, 60, 'en', 'name', 'Association of European Renewable Energy Research Centres'),
(78, 61, 'no_lang_code', 'name', 'Airbus (United Kingdom)'),
(79, 62, 'fr', 'name', 'Institut von karman de dynamique des fluides'),
(80, 62, 'de', 'name', 'Von Karman Institut für Strömungsmechanik'),
(81, 62, 'en', 'name', 'Von Karman Institute for Fluid Dynamics'),
(82, 63, 'en', 'name', 'University of Burundi'),
(83, 63, 'fr', 'name', 'UniversitƩ du Burundi'),
(84, 64, 'en', 'name', 'Cairo University'),
(85, 64, 'fr', 'name', 'UniversitƩ du Caire'),
(86, 64, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القاهرة'),
(87, 65, 'en', 'name', 'Promotion of Operational Links With Integrated Services'),
(88, 66, 'en', 'name', 'Cheikh Anta Diop University'),
(89, 66, 'fr', 'name', 'UniversitƩ Cheikh Anta Diop'),
(90, 67, 'en', 'name', 'Eduardo Mondlane University'),
(91, 67, 'pt', 'name', 'Universidade Eduardo Mondlane'),
(92, 68, 'en', 'name', 'John Radcliffe Hospital'),
(93, 69, 'en', 'name', 'Federal University of Minas Gerais'),
(94, 69, 'pt', 'name', 'Universidade Federal de Minas Gerais'),
(95, 69, 'fr', 'name', 'UniversitƩ fƩdƩrale du minas gerais'),
(96, 70, 'en', 'name', 'Joanneum Research'),
(97, 70, 'de', 'name', 'Joanneum Research Forschungsgesellschaft mbH'),
(98, 71, 'no_lang_code', 'name', 'National Institute of Technology'),
(99, 72, 'no_lang_code', 'name', 'D''Appolonia (Italy)'),
(100, 73, 'no_lang_code', 'name', 'Labor (Italy)'),
(101, 74, 'en', 'name', 'London School of Hygiene & Tropical Medicine'),
(102, 75, 'no_lang_code', 'name', 'Inovamais'),
(103, 76, 'pt', 'name', 'Instituto Nacional de Engenharia, Tecnologia e Inovação'),
(104, 76, 'en', 'name', 'National Institute of Engineering, Technology and Innovation'),
(105, 77, 'en', 'name', 'Campus Bio-Medico University'),
(106, 77, 'it', 'name', 'UniversitĆ  Campus Bio-Medico'),
(107, 78, 'en', 'name', 'Saint Petersburg State Electrotechnical University'),
(108, 78, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109, 79, 'en', 'name', 'Lviv Polytechnic National University'),
(110, 79, 'pl', 'name', 'Politechnika Lwowska'),
(111, 79, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š›ŃŒŠ²Š¾Š²ŃŠŗŠ°Ń политехника»'),
(112, 79, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° політехніка»'),
(113, 80, 'no_lang_code', 'name', 'GABO:mi'),
(114, 81, 'no_lang_code', 'name', 'Enel (Italy)'),
(115, 82, 'no_lang_code', 'name', 'Israel Aerospace Industries (Israel)'),
(116, 83, 'en', 'name', 'University of Malawi'),
(117, 84, 'no_lang_code', 'name', 'Unilever (Netherlands)'),
(118, 85, 'en', 'name', 'Omar Bongo University'),
(119, 85, 'fr', 'name', 'UniversitƩ Omar Bongo'),
(120, 86, 'en', 'name', 'University of the Philippines Diliman'),
(121, 87, 'en', 'name', 'University of the Philippines Los BaƱos'),
(122, 88, 'en', 'name', 'Biomedical Primate Research Centre'),
(123, 89, 'en', 'name', 'Shanghai Institute of Hypertension'),
(124, 90, 'en', 'name', 'IBM Research - Haifa'),
(125, 91, 'it', 'name', 'Fondazione Telethon'),
(126, 91, 'en', 'name', 'Telethon Foundation'),
(127, 92, 'en', 'name', 'An-Najah National University'),
(128, 92, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© النجاح Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(129, 93, 'en', 'name', 'Institute of Studies for the Integration of Systems'),
(130, 93, 'it', 'name', 'l’Istituto di Studi per l’Integrazione dei Sistemi'),
(131, 94, 'en', 'name', 'University of Eswatini'),
(132, 95, 'en', 'name', 'Institute for Energy Technology'),
(133, 96, 'no_lang_code', 'name', 'Sirehna'),
(134, 97, 'en', 'name', 'University of LomƩ'),
(135, 97, 'fr', 'name', 'UniversitƩ de LomƩ'),
(136, 98, 'en', 'name', 'National University of Trujillo'),
(137, 98, 'es', 'name', 'Universidad Nacional de Trujillo'),
(138, 99, 'en', 'name', 'HR Wallingford'),
(139, 100, 'cy', 'name', 'Prifysgol Westminster'),
(140, 100, 'en', 'name', 'University of Westminster'),
(141, 101, 'en', 'name', 'University of the West Indies'),
(142, 102, 'en', 'name', 'Centre for European Economic Research'),
(143, 102, 'de', 'name', 'Zentrum für Europäische Wirtschaftsforschung'),
(144, 103, 'en', 'name', 'Centre for Solar Energy and Hydrogen Research Baden-Württemberg'),
(145, 103, 'de', 'name', 'Zentrum für Sonnenenergie- und Wasserstoff-Forschung Baden-Württemberg'),
(146, 104, 'fr', 'name', 'Hydro-QuƩbec'),
(147, 105, 'es', 'name', 'Empresarios Agrupados'),
(148, 106, 'no_lang_code', 'name', 'ArcelorMittal (France)'),
(149, 107, 'cy', 'name', 'Adran yr Amgylchedd, Bwyd a Materion Gwledig'),
(150, 107, 'en', 'name', 'Department for Environment Food and Rural Affairs'),
(151, 108, 'fr', 'name', 'Centre Technique Industriel De La Construction Metallique'),
(152, 109, 'es', 'name', 'Tecnalia'),
(153, 110, 'en', 'name', 'Steel Construction Institute'),
(154, 111, 'no_lang_code', 'name', 'Voestalpine (Austria)'),
(155, 112, 'no_lang_code', 'name', 'Svenskt StƄl (Finland)'),
(156, 112, 'en', 'name', 'Swedish Steel'),
(157, 113, 'no_lang_code', 'name', 'Tata Steel (United Kingdom)'),
(158, 114, 'en', 'name', 'Centre for Technical Research and Studies'),
(159, 114, 'es', 'name', 'Centro de Estudios e Investigaciones TƩcnicas de Gipuzkoa'),
(160, 115, 'no_lang_code', 'name', 'MATIMOP'),
(161, 116, 'no_lang_code', 'name', 'BMT Group (United Kingdom)'),
(162, 117, 'en', 'name', 'Astrakhan State Technical University'),
(163, 117, 'ru', 'name', 'Астраханский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(164, 118, 'en', 'name', 'Silsoe Research Institute'),
(165, 119, 'no_lang_code', 'name', 'Siemens (United Kingdom)'),
(166, 120, 'en', 'name', 'Association of Science-Technology Centers'),
(167, 121, 'pt', 'name', 'Instituto de Engenharia de Sistemas e Computadores Investigação e Desenvolvimento'),
(168, 122, 'en', 'name', 'Düsseldorf University Hospital'),
(169, 122, 'de', 'name', 'Universitätsklinikum Düsseldorf'),
(170, 123, 'en', 'name', 'John Innes Centre'),
(171, 124, 'en', 'name', 'Leibniz Institute for Solid State and Materials Research'),
(172, 124, 'de', 'name', 'Leibniz-Institut für Festkörper- und Werkstoffforschung Dresden'),
(173, 125, 'ga', 'name', 'Cumann Ollscoileanna Ɖireann'),
(174, 125, 'en', 'name', 'Irish Universities Association'),
(175, 126, 'en', 'name', 'Archimedes Foundation'),
(176, 127, 'en', 'name', 'University Hospital Bonn'),
(177, 127, 'de', 'name', 'UniversitƤtsklinikum Bonn'),
(178, 128, 'no_lang_code', 'name', 'Profactor (Austria)'),
(179, 129, 'no_lang_code', 'name', 'Alstom (United Kingdom)'),
(180, 130, 'en', 'name', 'St Petersburg University'),
(181, 130, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(182, 131, 'en', 'name', 'Helsinki University Hospital'),
(183, 132, 'en', 'name', 'University of Bamako'),
(184, 132, 'fr', 'name', 'UniversitƩ de Bamako'),
(185, 133, 'no_lang_code', 'name', 'TXT e-solutions (Italy)'),
(186, 134, 'en', 'name', 'Euresearch Association'),
(187, 135, 'es', 'name', 'Instituto Tecnológico de Aragón'),
(188, 136, 'nl', 'name', 'De Duve Instituut'),
(189, 136, 'fr', 'name', 'L''Institut de Duve'),
(190, 136, 'en', 'name', 'de Duve Institute'),
(191, 137, 'fr', 'name', 'CitƩ Internationale Universitaire de Paris'),
(192, 138, 'en', 'name', 'European Science Foundation'),
(193, 139, 'no_lang_code', 'name', 'INRA Transfert (France)'),
(194, 140, 'it', 'name', 'Fondazione Eni Enrico Mattei'),
(195, 141, 'en', 'name', 'Institute For European Environmental Policy'),
(196, 142, 'no_lang_code', 'name', 'CAS Software (Germany)'),
(197, 143, 'en', 'name', 'UK Health and Environment Research Institute'),
(198, 144, 'it', 'name', 'Centro Italiano Ricerche Aerospaziali'),
(199, 144, 'en', 'name', 'Italian Aerospace Research Centre'),
(200, 145, 'no_lang_code', 'name', 'Ingenieria Y Economia Del Transporte'),
(201, 146, 'no_lang_code', 'name', 'Doosan (United Kingdom)'),
(202, 147, 'no_lang_code', 'name', 'Rolls-Royce (Germany)'),
(203, 148, 'en', 'name', 'National Institute of Agricultural Botany'),
(204, 149, 'en', 'name', 'Hadassah Medical Center'),
(205, 149, 'ar', 'name', 'Ł…Ų±ŁƒŲ² هداسا Ų§Ł„Ų·ŲØŁŠ'),
(206, 150, 'fr', 'name', 'ComitƩ EuropƩen de Normalisation'),
(207, 150, 'en', 'name', 'European Committee for Standardization'),
(208, 151, 'en', 'name', 'Indian Institute of Technology Roorkee'),
(209, 151, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą„ą¤”ą¤¼ą¤•ą„€'),
(210, 151, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®°ąÆ‚ą®°ąÆą®•ąÆą®•ą®æ'),
(211, 151, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°°ą±‚ą°°ą±ą°•ą±€'),
(212, 151, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“±ąµ‚ąµ¼ą“•ąµą“•ą“æ'),
(213, 152, 'no_lang_code', 'name', 'Systems, Applications & Products in Data Processing (Germany)'),
(214, 153, 'es', 'name', 'Instituto Tecnologico Del Embalaje, Transporte Y Logistica'),
(215, 154, 'en', 'name', 'Transport for London'),
(216, 155, 'en', 'name', 'Applied Research and Communications Fund'),
(217, 156, 'en', 'name', 'Estonian Interuniversity Population Research Centre'),
(218, 157, 'en', 'name', 'UK Intelligent Systems Research Institute'),
(219, 158, 'no_lang_code', 'name', 'Eesti Innovatsiooni Instituut'),
(220, 159, 'en', 'name', 'Agency for the Promotion of European Research'),
(221, 159, 'it', 'name', 'Agenzia per la Promozione della Ricerca Europea'),
(222, 160, 'it', 'name', 'Polo Universitario CittĆ  di Prato'),
(223, 161, 'no_lang_code', 'name', 'Keskuslaboratorio'),
(224, 162, 'en', 'name', 'University of the Arts London'),
(225, 163, 'en', 'name', 'Zoological Society of London'),
(226, 164, 'en', 'name', 'Royal University of Phnom Penh'),
(227, 164, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įž—įŸ’įž“įŸ†įž–įŸįž‰'),
(228, 165, 'en', 'name', 'Public Health Institute'),
(229, 166, 'it', 'name', 'Consorzio Interuniversitario Risonanze Magnetiche di Metallo Proteine'),
(230, 166, 'en', 'name', 'Interuniversity Consortium for Magnetic Resonance'),
(231, 167, 'en', 'name', 'Furtwangen University'),
(232, 167, 'de', 'name', 'Hochschule Furtwangen'),
(233, 168, 'en', 'name', 'Ascamm Technologic Center'),
(234, 168, 'es', 'name', 'Centro Tecnológico Ascamm'),
(235, 169, 'en', 'name', 'University of Forestry'),
(236, 169, 'bg', 'name', 'Лесотехнически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(237, 170, 'en', 'name', 'Technical University of Varna'),
(238, 170, 'bg', 'name', 'Технически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Варна'),
(239, 171, 'fr', 'name', 'Centre Technique des Industries MƩcaniques'),
(240, 171, 'en', 'name', 'Technical Centre for Mechanical Industry'),
(241, 172, 'en', 'name', 'Institute for Theoretical and Experimental Physics'),
(242, 172, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ физики'),
(243, 173, 'no_lang_code', 'name', 'Applus+ IDIADA (Spain)'),
(244, 173, 'es', 'name', 'Institut d''Investigació Aplicada de l''Automòbil'),
(245, 174, 'ro', 'name', 'Unitatea Executiva Pentru Finantarea Invatamantului Superior Si A Cercetarii Stiintifice Universitare'),
(246, 175, 'en', 'name', 'UK Material Technology Research Institute'),
(247, 176, 'no_lang_code', 'name', 'MBN Nanomaterialia (Italy)'),
(248, 177, 'it', 'name', 'Consorzio Nazionale Interuniversitario per i Trasporti e la Logistica'),
(249, 178, 'no_lang_code', 'name', 'PTV Group (Germany)'),
(250, 179, 'en', 'name', 'The Association of the European Rail Industry,'),
(251, 179, 'fr', 'name', 'Union des Industries Ferroviaires EuropƩennes'),
(252, 180, 'en', 'name', 'Centre for European Policy Studies'),
(253, 181, 'en', 'name', 'Ecologic Institute'),
(254, 182, 'no_lang_code', 'name', 'National Grid (United Kingdom)'),
(255, 183, 'en', 'name', 'London Metropolitan University'),
(256, 184, 'no_lang_code', 'name', 'Ford (Germany)'),
(257, 185, 'no_lang_code', 'name', 'Lucideon (United Kingdom)'),
(258, 186, 'en', 'name', 'Timescape Surveys'),
(259, 187, 'no_lang_code', 'name', 'Microsoft Research (United Kingdom)'),
(260, 188, 'es', 'name', 'Centro Agronomico Tropical de Investigacion y Ensenanza Catie'),
(261, 189, 'en', 'name', 'Universeum'),
(262, 190, 'no_lang_code', 'name', 'Hewlett-Packard (United Kingdom)'),
(263, 191, 'en', 'name', 'National Interuniversity Consortium for the Physical Sciences of Matter'),
(264, 192, 'es', 'name', 'Instituto Tecnológico del Calzado y Conexas'),
(265, 193, 'no_lang_code', 'name', 'National Nuclear Corporation (United Kingdom)'),
(266, 194, 'en', 'name', 'Kuban State University'),
(267, 194, 'ru', 'name', 'Кубанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(268, 195, 'en', 'name', 'Regional Environmental Center for Central and Eastern Europe'),
(269, 196, 'pt', 'name', 'Universidade de Pernambuco'),
(270, 196, 'en', 'name', 'University of Pernambuco'),
(271, 197, 'en', 'name', 'National Polytechnic University of Armenia'),
(272, 197, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ ÕŗÕøÕ¬Õ«ÕæÕ„Õ­Õ¶Õ«ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(273, 198, 'no_lang_code', 'name', 'Kema International (Netherlands)'),
(274, 199, 'no_lang_code', 'name', 'Balance Technology Consulting'),
(275, 200, 'no_lang_code', 'name', 'Messerschmitt-Bƶlkow-Blohm (Germany)'),
(276, 201, 'en', 'name', 'American Association For The Advancement of Science'),
(277, 201, 'es', 'name', 'Asociación Estadounidense para el Avance de la Ciencia'),
(278, 201, 'fr', 'name', 'Association amƩricaine pour l''avancement de la science'),
(279, 202, 'no_lang_code', 'name', 'Numerical Mechanics Applications International (Belgium)'),
(280, 203, 'da', 'name', 'Aalborg Universitetshospital'),
(281, 203, 'en', 'name', 'Aalborg University Hospital'),
(282, 204, 'no_lang_code', 'name', 'Smithers Pira'),
(283, 205, 'en', 'name', 'Hamburg Ship Model Basin'),
(284, 205, 'no_lang_code', 'name', 'Hamburgische Schiffbau-Versuchsanstalt (Germany)'),
(285, 206, 'en', 'name', 'Nicolae Testemițanu State University of Medicine and Pharmacy'),
(286, 206, 'ro', 'name', 'Universitatea de Medicină și Farmacie Nicolae Testemițanu din Chișinău'),
(287, 206, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ меГицины Šø фармакологии имени ŠŠøŠŗŠ¾Š»Š°Ń Š¢ŠµŃŃ‚ŠµŠ¼ŠøŃ†ŃŠ½Ńƒ'),
(288, 207, 'no_lang_code', 'name', 'NEC (United Kingdom)'),
(289, 208, 'de', 'name', 'Institut für Rundfunktechnik'),
(290, 209, 'no_lang_code', 'name', 'European Institute For Research and Strategic Studies In Telecommunications'),
(291, 210, 'no_lang_code', 'name', 'Deutsche Telekom (Germany)'),
(292, 210, 'en', 'name', 'German Telecom'),
(293, 211, 'no_lang_code', 'name', 'Exodus (Greece)'),
(294, 212, 'it', 'name', 'Consorzio Interuniversitario Nazionale per l''Informatica'),
(295, 212, 'en', 'name', 'National Interuniversity Consortium for Informatics'),
(296, 213, 'no_lang_code', 'name', 'Academia Sinica'),
(297, 213, 'zh', 'name', '中央研究院'),
(298, 214, 'en', 'name', 'British Museum'),
(299, 214, 'cy', 'name', 'Yr Amgueddfa Brydeinig'),
(300, 215, 'en', 'name', 'Ljubljana University Medical Centre'),
(301, 216, 'en', 'name', 'International Union of Railways'),
(302, 216, 'fr', 'name', 'Union internationale des chemins de fer'),
(303, 217, 'en', 'name', 'Building Research Establishment'),
(304, 218, 'no_lang_code', 'name', 'SOLINET'),
(305, 219, 'en', 'name', 'International Vaccine Institute'),
(306, 220, 'en', 'name', 'Academy of Georgofili'),
(307, 220, 'it', 'name', 'Accademia dei Georgofili'),
(308, 221, 'no_lang_code', 'name', 'Inspiralia'),
(309, 222, 'en', 'name', 'Autonomous Operator of Parisian Transports'),
(310, 222, 'no_lang_code', 'name', 'RƩgie Autonome des Transports Parisiens (France)'),
(311, 223, 'de', 'name', 'Bundesamt für Strahlenschutz'),
(312, 223, 'en', 'name', 'Federal Office for Radiation Protection'),
(313, 224, 'it', 'name', 'Consorzio Interuniversitario Per L''Ottimizzazione E La Ricerca Operativa'),
(314, 225, 'en', 'name', 'Peter the Great St. Petersburg Polytechnic University'),
(315, 225, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŸŠµŃ‚Ń€Š° Великого'),
(316, 226, 'en', 'name', 'Association of Commonwealth Universities'),
(317, 227, 'no_lang_code', 'name', 'Suez Canal University'),
(318, 227, 'fr', 'name', 'UniversitƩ du Canal de Suez'),
(319, 227, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© قناة Ų§Ł„Ų³ŁˆŁŠŲ³'),
(320, 228, 'en', 'name', 'International Space University'),
(321, 229, 'en', 'name', 'European Institute for Energy Research'),
(322, 229, 'de', 'name', 'Europäisches Institut für Energieforschung'),
(323, 230, 'en', 'name', 'Bristol City Council'),
(324, 231, 'en', 'name', 'RAND Corporation'),
(325, 232, 'en', 'name', 'Saint Petersburg Academic University'),
(326, 232, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ акаГемический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ — Š½Š°ŃƒŃ‡Š½Š¾-Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ центр нанотехнологий'),
(327, 233, 'it', 'name', 'Consorzio Nazionale Interuniversitario per la Nanoelettronica'),
(328, 233, 'en', 'name', 'Interuniversity Consortium for Nanoelectronics'),
(329, 234, 'en', 'name', 'University of Roehampton'),
(330, 235, 'en', 'name', 'Medical University Plovdiv'),
(331, 235, 'de', 'name', 'Medizinischen UniversitƤt Plovdiv'),
(332, 235, 'bg', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - ПловГив'),
(333, 236, 'no_lang_code', 'name', 'General Electric (Denmark)'),
(334, 237, 'no_lang_code', 'name', 'Stemcell Technologies'),
(335, 238, 'en', 'name', 'National Central University'),
(336, 239, 'en', 'name', 'South London and Maudsley NHS Foundation Trust'),
(337, 240, 'en', 'name', 'National University of Life and Environmental Sciences of Ukraine'),
(338, 240, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±ŠøŠ¾Ń€ŠµŃŃƒŃ€ŃŠ¾Š² Šø ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ'),
(339, 240, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±Ń–Š¾Ń€ŠµŃŃƒŃ€ŃŃ–Š² і ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń України'),
(340, 241, 'no_lang_code', 'name', 'Swedish Nuclear Fuel and Waste Management (Sweden)'),
(341, 242, 'en', 'name', 'Bangalore University'),
(342, 242, 'fr', 'name', 'UniversitƩ de bangalore'),
(343, 242, 'hi', 'name', 'ą¤¬ą¤‚ą¤—ą¤²ą„Œą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(344, 242, 'mr', 'name', 'ą¤¬ą¤‚ą¤—ą¤³ą„ą¤°ą„‚ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(345, 242, 'ta', 'name', 'ą®ŖąÆ†ą®™ąÆą®•ą®³ąÆ‚ą®°ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(346, 242, 'te', 'name', 'బెంగుళూరు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(347, 242, 'kn', 'name', 'ಬೆಂಗಳೂರು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(348, 243, 'en', 'name', 'National Tsing Hua University'),
(349, 244, 'en', 'name', 'Hokkaido University'),
(350, 244, 'ja', 'name', 'åŒ—ęµ·é“å¤§å­¦'),
(351, 245, 'en', 'name', 'Massachusetts Eye and Ear Infirmary'),
(352, 246, 'no_lang_code', 'name', 'Blackberry (Canada)'),
(353, 247, 'en', 'name', 'Catholic University of America'),
(354, 247, 'es', 'name', 'Universidad Católica de América'),
(355, 247, 'fr', 'name', 'UniversitƩ catholique d''amƩrique'),
(356, 248, 'nl', 'name', 'Stichting Technasium'),
(357, 249, 'en', 'name', 'Malta Council for Science and Technology'),
(358, 250, 'en', 'name', 'University Library in Bratislava'),
(359, 250, 'sk', 'name', 'UniverzitnÔ knižnica v Bratislave'),
(360, 251, 'de', 'name', 'UMIT - Private Universität für Gesundheitswissenschaften, Medizinische Informatik und Technik'),
(361, 252, 'de', 'name', 'Hochschule Kaiserslautern'),
(362, 252, 'en', 'name', 'University of Applied Sciences Kaiserslautern'),
(363, 253, 'lt', 'name', 'Lietuvos Bioetikos Komitetas'),
(364, 253, 'en', 'name', 'Lithuanian Bioethics Committee'),
(365, 254, 'no_lang_code', 'name', 'Dornier Flugzeugwerke (Germany)'),
(366, 255, 'no_lang_code', 'name', 'FEV (Germany)'),
(367, 256, 'no_lang_code', 'name', 'Senvion SE (Germany)'),
(368, 257, 'en', 'name', 'National Taiwan University of Science and Technology'),
(369, 258, 'en', 'name', 'University of Tehran'),
(370, 258, 'fa', 'name', 'دانؓگاه تهران'),
(371, 259, 'en', 'name', 'Museum of Science'),
(372, 260, 'en', 'name', 'Slovak National Library'),
(373, 260, 'sk', 'name', 'Slovenska Narodna Kniznica'),
(374, 261, 'no_lang_code', 'name', 'Microsoft (Netherlands)'),
(375, 262, 'no_lang_code', 'name', 'Maichin Dom'),
(376, 262, 'bg', 'name', 'Университетска Š°ŠŗŃƒŃˆŠµŃ€Š¾-гинекологична болница ā€œŠœŠ°Š¹Ń‡ŠøŠ½ Š“Š¾Š¼ā€'),
(377, 263, 'en', 'name', 'Hospital of Lithuanian University of Health Sciences Kaunas Clinics'),
(378, 263, 'lt', 'name', 'Lietuvos sveikatos mokslų universiteto ligoninė Kauno klinikos'),
(379, 264, 'en', 'name', 'Helmut Schmidt University'),
(380, 264, 'de', 'name', 'Helmut-Schmidt-UniversitƤt'),
(381, 265, 'no_lang_code', 'name', 'Eurofins (France)'),
(382, 266, 'it', 'name', 'Istituto Universitario di Studi Europei'),
(383, 266, 'en', 'name', 'University Institute of European Studies'),
(384, 267, 'no_lang_code', 'name', 'Saipem (Italy)'),
(385, 267, 'it', 'name', 'SocietĆ  Anonima Italiana Perforazioni E Montaggi'),
(386, 268, 'en', 'name', 'BRAC University'),
(387, 268, 'bn', 'name', 'ą¦¬ą§ą¦°ą§ą¦Æą¦¾ą¦• ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(388, 269, 'en', 'name', 'Radiolabs'),
(389, 270, 'en', 'name', 'Infectious Disease Research Institute'),
(390, 271, 'en', 'name', 'Center for Infectious Disease Research'),
(391, 272, 'en', 'name', 'Japan Society for the Promotion of Science'),
(392, 272, 'ja', 'name', 'ę—„ęœ¬å­¦č”“ęŒÆčˆˆä¼š'),
(393, 273, 'no_lang_code', 'name', 'Beta Technology Limited'),
(394, 274, 'en', 'name', 'National Centre for Research and Development'),
(395, 275, 'en', 'name', 'Oslo University Hospital'),
(396, 276, 'en', 'name', 'Natural Resources Institute'),
(397, 277, 'en', 'name', 'Urban Institute'),
(398, 278, 'no_lang_code', 'name', 'Immunomedics (United States)'),
(399, 279, 'en', 'name', 'Shanghai Center For Bioinformation Technology'),
(400, 279, 'zh', 'name', 'äøŠęµ·ē”Ÿē‰©äæ”ęÆęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(401, 280, 'en', 'name', 'Niabi Zoological Society'),
(402, 281, 'en', 'name', 'Bibra International'),
(403, 282, 'no_lang_code', 'name', 'Miltenyi Biotec (Germany)'),
(404, 283, 'en', 'name', 'University of Gondar'),
(405, 284, 'en', 'name', 'English Heritage'),
(406, 285, 'de', 'name', 'Gesellschaft für Chemische Technik und Biotechnologie'),
(407, 285, 'en', 'name', 'Society for Chemical Engineering and Biotechnology'),
(408, 286, 'no_lang_code', 'name', 'Scimar Engineering Ltd'),
(409, 287, 'en', 'name', 'Bauman Moscow State Technical University'),
(410, 287, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š­. Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(411, 288, 'no_lang_code', 'name', 'CRE Group (United States)'),
(412, 289, 'en', 'name', 'The Pirbright Institute'),
(413, 290, 'en', 'name', 'Institute for Systems Biology'),
(414, 291, 'en', 'name', 'National Cheng Kung University'),
(415, 292, 'no_lang_code', 'name', 'Profilarbed (Luxembourg)'),
(416, 293, 'fr', 'name', 'Adi Valor'),
(417, 294, 'en', 'name', 'Tufts Medical Center'),
(418, 295, 'en', 'name', 'Harvard Pilgrim Health Care'),
(419, 296, 'vi', 'name', 'Bį»™ Y tįŗæ (Việt Nam)'),
(420, 296, 'en', 'name', 'Ministry of Health'),
(421, 297, 'de', 'name', 'Gesellschaft Fur Mathematik Und Datenverarbeitung'),
(422, 298, 'no_lang_code', 'name', 'Sierra Wireless (Canada)'),
(423, 299, 'en', 'name', 'Karpov Institute of Physical Chemistry'),
(424, 299, 'ru', 'name', 'Акционерное общество ŠžŃ€Š“ена Š¢Ń€ŃƒŠ“ового ŠšŃ€Š°ŃŠ½Š¾Š³Š¾ Знамени Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ физико-химический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š›.ŠÆ. ŠšŠ°Ń€ŠæŠ¾Š²Š°'),
(425, 300, 'sv', 'name', 'Flygtekniska fƶrsƶksanstalten'),
(426, 300, 'en', 'name', 'National Aeronautical Research Institute'),
(427, 301, 'de', 'name', 'Bundesanstalt für Materialforschung und -prüfung'),
(428, 301, 'en', 'name', 'Federal Institute For Materials Research and Testing'),
(429, 302, 'fr', 'name', 'Centre Technique Des Industries De La Fonderie'),
(430, 303, 'lb', 'name', 'AciƩries RƩunies de Burbach-Eich-Dudelange'),
(431, 303, 'no_lang_code', 'name', 'Arbed (Luxembourg)'),
(432, 303, 'de', 'name', 'Vereinigte Stahlhütten Burbach-Eich-Düdelingen'),
(433, 304, 'no_lang_code', 'name', 'HEF Groupe (France)'),
(434, 305, 'it', 'name', 'Centro Studi Sui Sistemi Di Trasporto Spa'),
(435, 306, 'en', 'name', 'Danish Maritime Institute'),
(436, 307, 'no_lang_code', 'name', 'Fujitsu (United Kingdom)'),
(437, 308, 'de', 'name', 'Battelle-Institut ev'),
(438, 309, 'no_lang_code', 'name', 'Italtel (Italy)'),
(439, 310, 'hu', 'name', 'Ivan Franko Nemzeti Egyetem Lviv'),
(440, 310, 'en', 'name', 'Lviv University'),
(441, 310, 'pl', 'name', 'Uniwersytet Lwowski'),
(442, 310, 'ru', 'name', 'Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ивана Франко'),
(443, 310, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана Франка'),
(444, 311, 'en', 'name', 'Omsk State University'),
(445, 311, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ф. М. Достоевского'),
(446, 312, 'en', 'name', 'Uzhhorod National University'),
(447, 312, 'pl', 'name', 'Użhorodzki Uniwersytet Narodowy'),
(448, 312, 'ru', 'name', 'УжгороГский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(449, 312, 'uk', 'name', 'Š£Š¶Š³Š¾Ń€Š¾Š“ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(450, 313, 'en', 'name', 'National Research Tomsk State University'),
(451, 313, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°ĢŠ»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµĢŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ То́мский Š³Š¾ŃŃƒŠ“а́рственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚'),
(452, 314, 'en', 'name', 'Perm State University'),
(453, 314, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(454, 315, 'en', 'name', 'Independent University of Moscow'),
(455, 315, 'ru', 'name', 'ŠŠµŠ·Š°Š²ŠøŃŠøŠ¼Ń‹Š¹ Московский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(456, 316, 'en', 'name', 'Chelyabinsk State University'),
(457, 316, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(458, 317, 'en', 'name', 'Udmurt State University'),
(459, 317, 'ru', 'name', 'Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(460, 318, 'en', 'name', 'Kazan State Technological University'),
(461, 318, 'ru', 'name', 'Казанский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(462, 319, 'en', 'name', 'Kazan State Medical University'),
(463, 319, 'ru', 'name', 'Казанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(464, 320, 'en', 'name', 'Belarusian State University of Informatics and Radioelectronics'),
(465, 320, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ інфарматыкі і Ń€Š°Š“Ń‹Ń‘ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Ń–ŠŗŃ–'),
(466, 320, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ информатики Šø Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(467, 321, 'en', 'name', 'American University of Armenia'),
(468, 321, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ“Õ„Ö€Õ«ÕÆÕµÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(469, 322, 'en', 'name', 'Moscow State University of Civil Engineering'),
(470, 322, 'ru', 'name', 'Московский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š”Ń‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Университет'),
(471, 323, 'en', 'name', 'Karakalpak State University'),
(472, 324, 'en', 'name', 'Yuri Gagarin State Technical University of Saratov'),
(473, 324, 'ru', 'name', 'Даратовский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š®. А. Гагарина'),
(474, 325, 'en', 'name', 'Moscow State Aviation Technological University'),
(475, 325, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. Š­. Циолковского'),
(476, 326, 'en', 'name', 'Kemerovo State University'),
(477, 326, 'ru', 'name', 'ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(478, 327, 'no_lang_code', 'name', 'Ricerca sul Sistema Energetico (Italy)'),
(479, 328, 'en', 'name', 'Yunnan University of Traditional Chinese Medicine'),
(480, 328, 'zh', 'name', 'äŗ‘å—äø­åŒ»čÆå¤§å­¦'),
(481, 329, 'en', 'name', 'University Teaching Hospital'),
(482, 330, 'no_lang_code', 'name', 'ArcelorMittal (Spain)'),
(483, 331, 'en', 'name', 'Hannah Research Foundation'),
(484, 332, 'no_lang_code', 'name', 'Creusot-Loire Entreprises (France)'),
(485, 333, 'en', 'name', 'Warren Spring Laboratory'),
(486, 334, 'no_lang_code', 'name', 'GIUNTI Intenational Division (Italy)'),
(487, 335, 'no_lang_code', 'name', 'Orange (France)'),
(488, 336, 'en', 'name', 'Kookmin University'),
(489, 336, 'ko', 'name', 'źµ­ėÆ¼ėŒ€ķ•™źµ'),
(490, 337, 'en', 'name', 'Institute of Development Studies'),
(491, 338, 'it', 'name', 'Consorzio Universitario In Ingegneria Della Qualita'),
(492, 339, 'no_lang_code', 'name', 'TECO'),
(493, 340, 'no_lang_code', 'name', 'BG Group (United Kingdom)'),
(494, 341, 'es', 'name', 'Hospital General Universitario De Valencia'),
(495, 342, 'en', 'name', 'Ivanovo State University of Chemistry and Technology'),
(496, 342, 'ru', 'name', 'Ивановский Š³Š¾ŃŃƒŠ“арственный химико-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(497, 343, 'no_lang_code', 'name', 'Alexandrovska Hospital'),
(498, 343, 'bg', 'name', 'ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ŃŠŗŠ° болница ā€žŠŠ»ŠµŠŗŃŠ°Š½Š“Ń€Š¾Š²ŃŠŗŠ°'),
(499, 344, 'en', 'name', 'National Satellite Ocean Application Service'),
(500, 344, 'zh', 'name', 'å›½å®¶å«ę˜Ÿęµ·ę“‹åŗ”ē”Øäø­åæƒ'),
(501, 345, 'en', 'name', 'Tomsk State Pedagogical University'),
(502, 345, 'ru', 'name', 'Томский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(503, 346, 'en', 'name', 'Altai State Technical University'),
(504, 346, 'ru', 'name', 'Алтайский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. И. Ползунова'),
(505, 347, 'en', 'name', 'Agricultural University of Tirana'),
(506, 347, 'sq', 'name', 'Universiteti Bujqƫsor i Tiranƫs'),
(507, 347, 'el', 'name', 'Ī“ĪµĻ‰Ļ€ĪæĪ½Ī¹ĪŗĻŒ Ļ€Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Τιράνων'),
(508, 348, 'en', 'name', 'Addenbrooke''s Hospital'),
(509, 349, 'pt', 'name', 'Instituto Superior de CiĆŖncias Educativas'),
(510, 350, 'de', 'name', 'Institut für Mobil- und Satellitenfunktechnik'),
(511, 350, 'en', 'name', 'Institute for Mobile and Satellite Communication Technology'),
(512, 351, 'fr', 'name', 'Centre Hospitalier Universitaire Amiens-Picardie'),
(513, 352, 'no_lang_code', 'name', 'Ontario Power Generation'),
(514, 353, 'en', 'name', 'University of Prince Edward Island'),
(515, 353, 'fr', 'name', 'UniversitĆ© de l''Ǝle-du-prince-Ɖdouard'),
(516, 354, 'en', 'name', 'National Institute for Environmental Studies'),
(517, 354, 'ja', 'name', 'å›½ē«‹ē’°å¢ƒē ”ē©¶ę‰€'),
(518, 355, 'no_lang_code', 'name', 'Pouliadis Associates Corporation'),
(519, 356, 'en', 'name', 'Luigi Sacco Hospital'),
(520, 356, 'it', 'name', 'Ospedale Luigi Sacco'),
(521, 357, 'en', 'name', 'Chang Gung University'),
(522, 358, 'en', 'name', 'Municipality of Amaroussion'),
(523, 359, 'fr', 'name', 'HÓpitaux universitaires de Genève'),
(524, 359, 'en', 'name', 'University Hospital of Geneva'),
(525, 360, 'no_lang_code', 'name', 'Glencore (Switzerland)'),
(526, 361, 'no_lang_code', 'name', 'Airbus (Spain)'),
(527, 362, 'bs', 'name', 'Federalni Zavod za geologiju'),
(528, 362, 'en', 'name', 'The Federal Institute for Geology'),
(529, 363, 'en', 'name', 'Torrey Pines Institute For Molecular Studies'),
(530, 364, 'en', 'name', 'Steinbeis Foundation'),
(531, 364, 'de', 'name', 'Steinbeis-Stiftung'),
(532, 365, 'en', 'name', 'Aarhus University Hospital'),
(533, 365, 'da', 'name', 'Skejby Sygehus'),
(534, 366, 'en', 'name', 'California State Polytechnic University'),
(535, 366, 'es', 'name', 'Universidad Estatal PolitƩcnica de California, Pomona'),
(536, 366, 'fr', 'name', 'UniversitĆ© d''Ɖtat polytechnique de californie Ć  pomona'),
(537, 367, 'fr', 'name', 'Institut Laue-Langevin'),
(538, 368, 'it', 'name', 'Istituto Nazionale per la Fisica della Materia'),
(539, 369, 'en', 'name', 'Ulyanovsk State University'),
(540, 369, 'ru', 'name', 'Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(541, 370, 'no_lang_code', 'name', 'Sidenor (Greece)'),
(542, 370, 'el', 'name', 'Ī£Ī™Ī”Ī•ĪĪŸĪ”'),
(543, 371, 'no_lang_code', 'name', 'Ballard Power Systems (Canada)'),
(544, 372, 'no_lang_code', 'name', 'Motorola (France)'),
(545, 373, 'en', 'name', 'Smolensk University for Humanities'),
(546, 373, 'ru', 'name', 'Дмоленский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(547, 374, 'en', 'name', 'Vladimir State University'),
(548, 374, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ВлаГимирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени АлексанГра Š“Ń€ŠøŠ³Š¾Ń€ŃŒŠµŠ²ŠøŃ‡Š° Šø ŠŠøŠŗŠ¾Š»Š°Ń Š“Ń€ŠøŠ³Š¾Ń€ŃŒŠµŠ²ŠøŃ‡Š° Дтолетовых'),
(549, 375, 'ga', 'name', 'Forbairt'),
(550, 376, 'en', 'name', 'MRC Human Immunology Unit'),
(551, 377, 'en', 'name', 'Nara Women''s University'),
(552, 377, 'ja', 'name', 'å„ˆč‰Æå„³å­å¤§å­¦'),
(553, 378, 'en', 'name', 'University of Bahr El-Ghazal'),
(554, 379, 'en', 'name', 'Communications and Information Technology Ontario'),
(555, 380, 'en', 'name', 'Centre of Advanced Studies'),
(556, 381, 'no_lang_code', 'name', 'Talisman Energy'),
(557, 382, 'no_lang_code', 'name', 'Vaexjoe Energi Ab'),
(558, 383, 'en', 'name', 'Penza State University'),
(559, 383, 'ru', 'name', 'Пензенский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(560, 384, 'en', 'name', 'Brooklyn College'),
(561, 384, 'es', 'name', 'College de Brooklyn de la Universidad de la Ciudad de Nueva York'),
(562, 385, 'en', 'name', 'German University in Cairo'),
(563, 385, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ© بالقاهرة'),
(564, 386, 'en', 'name', 'University of Worcester'),
(565, 387, 'en', 'name', 'Missouri Botanical Garden'),
(566, 388, 'en', 'name', 'UK Water Industry Research'),
(567, 389, 'en', 'name', 'Austrian Research Promotion Agency'),
(568, 389, 'de', 'name', 'Ɩsterreichische Forschungsfƶrderungsgesellschaft'),
(569, 390, 'en', 'name', 'Rajendra Memorial Research Institute of Medical Sciences'),
(570, 391, 'en', 'name', 'Orel State University named after I.S. Turgenev'),
(571, 391, 'ru', 'name', 'ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. Š”. Š¢ŃƒŃ€Š³ŠµŠ½ŠµŠ²Š°'),
(572, 392, 'no_lang_code', 'name', 'Applica Sprl'),
(573, 393, 'es', 'name', 'Red Universitaria Nacional'),
(574, 394, 'en', 'name', 'National Institute of Advanced Industrial Science and Technology'),
(575, 394, 'ja', 'name', 'ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(576, 395, 'en', 'name', 'MCNC Research and Development Institute'),
(577, 396, 'no_lang_code', 'name', 'S&N (Germany)'),
(578, 397, 'en', 'name', 'Have Dreams'),
(579, 398, 'no_lang_code', 'name', 'Suncor Energy (Canada)'),
(580, 399, 'en', 'name', 'National Institute on Deafness and Other Communication Disorders'),
(581, 400, 'en', 'name', 'Jadavpur University'),
(582, 400, 'fr', 'name', 'UniversitƩ jadavpur'),
(583, 400, 'hi', 'name', 'ą¤Æą¤¾ą¤¦ą¤µą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(584, 400, 'bn', 'name', 'যাদবপুর ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(585, 400, 'pa', 'name', 'ਜਾਦਵਪੁਰ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(586, 400, 'gu', 'name', 'જાદવપુર ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(587, 400, 'te', 'name', 'ą°œą°¾ą°¦ą°µą± ą°Ŗą±‚ą°°ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(588, 400, 'kn', 'name', 'ą²œą²¾ą²¦ą²µą³ ಪುರ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(589, 401, 'es', 'name', 'Universidad de Carolina del Norte en Wilmington'),
(590, 401, 'en', 'name', 'University of North Carolina Wilmington'),
(591, 401, 'fr', 'name', 'UniversitƩ de wilmington'),
(592, 402, 'no_lang_code', 'name', 'Artann Laboratories, Inc.'),
(593, 403, 'en', 'name', 'Kunming University of Science and Technology'),
(594, 403, 'zh', 'name', 'ę˜†ę˜Žē†å·„å¤§å­¦'),
(595, 404, 'en', 'name', 'Resources For The Future'),
(596, 405, 'en', 'name', 'Scottish Universities Environmental Research Centre'),
(597, 406, 'es', 'name', 'Universidad de Massachusetts Lowell'),
(598, 406, 'en', 'name', 'University of Massachusetts Lowell'),
(599, 407, 'no_lang_code', 'name', 'Ericsson (Canada)'),
(600, 408, 'no_lang_code', 'name', 'Athens Technology Center (Greece)'),
(601, 409, 'no_lang_code', 'name', 'Vattenfall (Sweden)'),
(602, 410, 'en', 'name', 'Alabama Department of Public Health'),
(603, 411, 'en', 'name', 'Boston Public Health Commission'),
(604, 412, 'fr', 'name', 'Agence spatiale canadienne'),
(605, 412, 'en', 'name', 'Canadian Space Agency'),
(606, 413, 'en', 'name', 'Department of Defence'),
(607, 414, 'en', 'name', 'Earthquake Engineering Research Institute'),
(608, 415, 'en', 'name', 'Natural England'),
(609, 416, 'es', 'name', 'Departamento de Salud y Servicios para las Personas Mayores del Estado de Nueva Jersey'),
(610, 416, 'en', 'name', 'New Jersey Department of Health'),
(611, 417, 'en', 'name', 'New Mexico Department of Health'),
(612, 418, 'en', 'name', 'New York City Department of Health and Mental Hygiene'),
(613, 419, 'en', 'name', 'Oklahoma Department of Mental Health and Substance Abuse Services'),
(614, 420, 'en', 'name', 'Oregon Department of Human Services'),
(615, 421, 'en', 'name', 'Pennsylvania Department of Human Services'),
(616, 422, 'en', 'name', 'Public Health – Seattle & King County'),
(617, 423, 'en', 'name', 'United States Office of Personnel Management'),
(618, 424, 'en', 'name', 'Veterans Health Administration'),
(619, 425, 'en', 'name', 'Einstein Medical Center Philadelphia'),
(620, 426, 'en', 'name', 'Alfred I. duPont Hospital for Children'),
(621, 427, 'en', 'name', 'Beth Israel Deaconess Medical Center'),
(622, 428, 'en', 'name', 'Cambridge Health Alliance'),
(623, 429, 'en', 'name', 'Carolinas Medical Center'),
(624, 430, 'en', 'name', 'Children''s Hospital of Pittsburgh'),
(625, 431, 'en', 'name', 'Children''s Mercy Hospital'),
(626, 432, 'en', 'name', 'Cincinnati Children''s Hospital Medical Center'),
(627, 433, 'en', 'name', 'Denver Health Medical Center'),
(628, 434, 'en', 'name', 'Guy''s Hospital'),
(629, 435, 'en', 'name', 'Hackensack University Medical Center'),
(630, 436, 'en', 'name', 'Hahnemann University Hospital'),
(631, 437, 'en', 'name', 'Harbor–UCLA Medical Center'),
(632, 438, 'en', 'name', 'Kennedy Krieger Institute'),
(633, 439, 'en', 'name', 'Legacy Emanuel Medical Center'),
(634, 440, 'en', 'name', 'Legacy Good Samaritan Medical Center'),
(635, 441, 'en', 'name', 'Maine Medical Center'),
(636, 442, 'en', 'name', 'McLean Hospital'),
(637, 443, 'en', 'name', 'Memorial Hospital of Rhode Island'),
(638, 444, 'en', 'name', 'Miriam Hospital'),
(639, 445, 'en', 'name', 'North Shore University Hospital'),
(640, 446, 'en', 'name', 'Penn State Milton S. Hershey Medical Center'),
(641, 447, 'en', 'name', 'Providence Portland Medical Center'),
(642, 448, 'en', 'name', 'Roger Williams Medical Center'),
(643, 449, 'en', 'name', 'Royal Darwin Hospital'),
(644, 450, 'en', 'name', 'Sanford USD Medical Center'),
(645, 451, 'en', 'name', 'Scott & White Memorial Hospital'),
(646, 452, 'en', 'name', 'St. Elizabeth''s Medical Center'),
(647, 453, 'en', 'name', 'St. Joseph''s Hospital and Medical Center'),
(648, 454, 'en', 'name', 'St. Luke''s-Roosevelt Hospital Center'),
(649, 455, 'ms', 'name', 'Hospital Tan Tock Seng'),
(650, 455, 'en', 'name', 'Tan Tock Seng Hospital'),
(651, 455, 'ta', 'name', 'ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆą®Æą®æą®²ąÆą®²ąÆ'),
(652, 455, 'zh', 'name', 'é™ˆē¬ƒē”ŸåŒ»é™¢'),
(653, 456, 'en', 'name', 'University of Alberta Hospital'),
(654, 457, 'en', 'name', 'University of Tennessee Medical Center'),
(655, 458, 'en', 'name', 'Women & Infants Hospital of Rhode Island'),
(656, 459, 'es', 'name', 'Biblioteca del Congreso de Estados Unidos'),
(657, 459, 'fr', 'name', 'BibliothĆØque du CongrĆØs'),
(658, 459, 'en', 'name', 'Library of Congress'),
(659, 460, 'en', 'name', 'Beijing Museum of Natural History'),
(660, 460, 'zh', 'name', 'åŒ—äŗ¬č‡Ŗē„¶åšē‰©é¦†'),
(661, 461, 'en', 'name', 'Exploratorium'),
(662, 462, 'en', 'name', 'Franklin Institute'),
(663, 463, 'en', 'name', 'Illinois State Museum'),
(664, 464, 'en', 'name', 'Museum of the Earth'),
(665, 465, 'en', 'name', 'Natural History Museum of Los Angeles County'),
(666, 466, 'en', 'name', 'Oregon Museum of Science and Industry'),
(667, 467, 'en', 'name', 'Science Museum of Minnesota'),
(668, 468, 'en', 'name', 'American Society for Cell Biology'),
(669, 469, 'en', 'name', 'Fenway Health'),
(670, 470, 'en', 'name', 'Point Blue Conservation Science'),
(671, 471, 'en', 'name', 'Rockefeller Foundation'),
(672, 472, 'en', 'name', 'Central Connecticut State University'),
(673, 472, 'es', 'name', 'Universidad Estatal de Connecticut Central'),
(674, 473, 'en', 'name', 'Lowell Observatory'),
(675, 474, 'es', 'name', 'Observatorio AstrofĆ­sico Smithsonian'),
(676, 474, 'en', 'name', 'Smithsonian Astrophysical Observatory'),
(677, 475, 'de', 'name', 'Stuttgart Observatory'),
(678, 476, 'en', 'name', 'Archbold Biological Station'),
(679, 477, 'en', 'name', 'East–West Center'),
(680, 478, 'en', 'name', 'Fields Institute for Research in Mathematical Sciences'),
(681, 479, 'en', 'name', 'Haskins Laboratories'),
(682, 480, 'en', 'name', 'Hauptman-Woodward Medical Research Institute'),
(683, 481, 'en', 'name', 'Gladstone Institutes'),
(684, 482, 'en', 'name', 'Mathematical Sciences Research Institute'),
(685, 483, 'en', 'name', 'Nathan Kline Institute for Psychiatric Research'),
(686, 484, 'en', 'name', 'National Brain Research Centre'),
(687, 484, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą¤øą„ą¤¤ą¤æą¤·ą„ą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°, ą¤®ą¤¾ą¤Øą„‡ą¤øą¤°, हरियाणा'),
(688, 485, 'en', 'name', 'New York Blood Center'),
(689, 486, 'en', 'name', 'Pennington Biomedical Research Center'),
(690, 487, 'en', 'name', 'Polytechnic University of the Philippines'),
(691, 488, 'en', 'name', 'Population Council'),
(692, 489, 'en', 'name', 'Raja Ramanna Centre for Advanced Technology'),
(693, 489, 'mr', 'name', 'राजा ą¤°ą¤¾ą¤®ą¤£ą„ą¤£ą¤¾ ą¤…ą¤¤ą„ą¤Æą¤¾ą¤§ą„ą¤Øą¤æą¤• ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(694, 489, 'hi', 'name', 'राजा ą¤°ą¤¾ą¤®ą¤Øą„ą¤Øą¤¾ ą¤Ŗą„ą¤°ą¤—ą¤¤ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(695, 489, 'ml', 'name', 'ą“°ą“¾ą“œą“¾ ą“°ą“¾ą“®ą“£ąµą“£ ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“…ą“”ąµą“µą“¾ąµ»ą“øąµą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(696, 490, 'en', 'name', 'Lunenfeld-Tanenbaum Research Institute'),
(697, 491, 'en', 'name', 'Smith-Kettlewell Eye Research Institute'),
(698, 492, 'en', 'name', 'Social Science Research Council'),
(699, 493, 'en', 'name', 'Stowers Institute for Medical Research'),
(700, 494, 'en', 'name', 'Van Andel Institute'),
(701, 495, 'en', 'name', 'Abilene Christian University'),
(702, 495, 'es', 'name', 'Universidad Cristiana de Abilene'),
(703, 496, 'en', 'name', 'Adelphi University'),
(704, 497, 'en', 'name', 'Alabama State University'),
(705, 498, 'en', 'name', 'Alcorn State University'),
(706, 499, 'en', 'name', 'Allen University'),
(707, 500, 'en', 'name', 'Alliant International University'),
(708, 501, 'en', 'name', 'Antioch University'),
(709, 502, 'en', 'name', 'Antioch University New England'),
(710, 503, 'no_lang_code', 'name', 'Aoyama Gakuin University'),
(711, 503, 'ja', 'name', '青山学院大学'),
(712, 504, 'en', 'name', 'Arcadia University'),
(713, 505, 'en', 'name', 'Arkansas Tech University'),
(714, 506, 'en', 'name', 'Armstrong Atlantic State University'),
(715, 507, 'en', 'name', 'Ashland University'),
(716, 508, 'en', 'name', 'Ashworth College'),
(717, 509, 'en', 'name', 'Athens State University'),
(718, 509, 'fr', 'name', 'UniversitĆ© d''Ɖtat d''athens'),
(719, 510, 'en', 'name', 'Atlanta University Center'),
(720, 511, 'en', 'name', 'Auckland University of Technology'),
(721, 512, 'en', 'name', 'Augustana University'),
(722, 513, 'en', 'name', 'Aurora University'),
(723, 514, 'en', 'name', 'Baker University'),
(724, 515, 'no_lang_code', 'name', 'Bastyr University'),
(725, 516, 'en', 'name', 'Belmont University'),
(726, 517, 'en', 'name', 'Bemidji State University'),
(727, 518, 'en', 'name', 'Benedictine University'),
(728, 519, 'en', 'name', 'Bentley University'),
(729, 520, 'en', 'name', 'Bethune-Cookman University'),
(730, 521, 'en', 'name', 'Birmingham–Southern College'),
(731, 522, 'en', 'name', 'Black Hills State University'),
(732, 523, 'en', 'name', 'Blackburn College'),
(733, 524, 'en', 'name', 'Bloomsburg University'),
(734, 525, 'en', 'name', 'Borough of Manhattan Community College'),
(735, 526, 'en', 'name', 'Bowie State University'),
(736, 527, 'en', 'name', 'Brenau University'),
(737, 528, 'en', 'name', 'Bridgewater State University'),
(738, 528, 'fr', 'name', 'UniversitĆ© d''Ɖtat de bridgewater'),
(739, 529, 'en', 'name', 'Buena Vista University'),
(740, 530, 'en', 'name', 'Government Medical College'),
(741, 530, 'ta', 'name', 'ą®•ąÆ‹ą®“ą®æą®•ąÆą®•ąÆ‹ą®ŸąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ');
INSERT INTO `ror_settings` VALUES
(742, 530, 'ml', 'name', 'ą“—ą“µąµŗą“®ąµ†ą“Øąµą“±ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“•ąµ‹ą““ą“æą“•ąµą“•ąµ‹ą“Ÿąµ'),
(743, 531, 'en', 'name', 'California Pacific University'),
(744, 532, 'en', 'name', 'California State University, Fresno'),
(745, 532, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Californie Ć  Fresno'),
(746, 533, 'en', 'name', 'Canisius College'),
(747, 534, 'en', 'name', 'Capital University'),
(748, 535, 'en', 'name', 'Carroll College'),
(749, 536, 'en', 'name', 'Carroll University'),
(750, 537, 'en', 'name', 'Central College'),
(751, 538, 'en', 'name', 'Central State University'),
(752, 539, 'en', 'name', 'Changzhi Medical College'),
(753, 539, 'zh', 'name', 'é•æę²»åŒ»å­¦é™¢'),
(754, 540, 'en', 'name', 'Charles R. Drew University of Medicine and Science'),
(755, 541, 'en', 'name', 'Charleston Southern University'),
(756, 542, 'en', 'name', 'Cheyney University of Pennsylvania'),
(757, 542, 'es', 'name', 'Universidad de Cheyney de Pensilvania'),
(758, 542, 'fr', 'name', 'UniversitƩ cheyney de pennsylvanie'),
(759, 543, 'en', 'name', 'Chiba Institute of Technology'),
(760, 543, 'ja', 'name', 'åƒč‘‰å·„ę„­å¤§å­¦'),
(761, 544, 'en', 'name', 'Chicago State University'),
(762, 544, 'fr', 'name', 'UniversitĆ© d''Ɖtat de chicago'),
(763, 545, 'en', 'name', 'China Three Gorges University'),
(764, 545, 'zh', 'name', '三峔大学'),
(765, 546, 'en', 'name', 'Chowan University'),
(766, 547, 'en', 'name', 'Christian Brothers University'),
(767, 548, 'en', 'name', 'Christopher Newport University'),
(768, 549, 'en', 'name', 'City College of San Francisco'),
(769, 550, 'en', 'name', 'Clark Atlanta University'),
(770, 551, 'en', 'name', 'Clarke University'),
(771, 552, 'en', 'name', 'Clayton State University'),
(772, 553, 'en', 'name', 'Coe College'),
(773, 554, 'en', 'name', 'Colby College'),
(774, 555, 'en', 'name', 'College of Idaho'),
(775, 556, 'en', 'name', 'College of Saint Benedict and Saint John''s University'),
(776, 556, 'fr', 'name', 'Collège de saint benedict et université de saint jean'),
(777, 557, 'es', 'name', 'Universidad del PacĆ­fico'),
(778, 557, 'en', 'name', 'University of the Pacific'),
(779, 557, 'fr', 'name', 'UniversitƩ du pacifique'),
(780, 558, 'en', 'name', 'Coppin State University'),
(781, 559, 'en', 'name', 'Dakota State University'),
(782, 560, 'en', 'name', 'Dakota Wesleyan University'),
(783, 561, 'en', 'name', 'Delaware State University'),
(784, 562, 'en', 'name', 'Des Moines University'),
(785, 562, 'fr', 'name', 'UniversitƩ de des moines'),
(786, 563, 'en', 'name', 'Dickinson State University'),
(787, 564, 'en', 'name', 'Dillard University'),
(788, 565, 'en', 'name', 'Donetsk State University of Management'),
(789, 565, 'ru', 'name', 'Донецкий Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(790, 565, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(791, 566, 'en', 'name', 'Doshisha University'),
(792, 566, 'ja', 'name', 'åŒåæ—ē¤¾å¤§å­¦'),
(793, 567, 'en', 'name', 'Dowling College'),
(794, 568, 'en', 'name', 'East Central University'),
(795, 569, 'en', 'name', 'East Georgia State College'),
(796, 570, 'en', 'name', 'East Stroudsburg University'),
(797, 570, 'fr', 'name', 'UniversitƩ de pennsylvanie d''east stroudsburg'),
(798, 571, 'en', 'name', 'Eastern Illinois University'),
(799, 571, 'fr', 'name', 'UniversitƩ de l''illinois de l''est'),
(800, 572, 'en', 'name', 'Eastern Mennonite University'),
(801, 573, 'en', 'name', 'Eastern Nazarene College'),
(802, 574, 'en', 'name', 'Eastern New Mexico University'),
(803, 575, 'en', 'name', 'Eastern Oregon University'),
(804, 576, 'en', 'name', 'Ehime University'),
(805, 576, 'ja', 'name', '愛媛大学'),
(806, 577, 'en', 'name', 'Elizabeth City State University'),
(807, 578, 'en', 'name', 'Embry–Riddle Aeronautical University'),
(808, 579, 'en', 'name', 'Evangel University'),
(809, 580, 'en', 'name', 'Five Branches University'),
(810, 581, 'en', 'name', 'Florida Memorial University'),
(811, 582, 'en', 'name', 'Francis Marion University'),
(812, 583, 'en', 'name', 'Franklin W. Olin College of Engineering'),
(813, 584, 'en', 'name', 'Friends University'),
(814, 585, 'en', 'name', 'Frostburg State University'),
(815, 585, 'fr', 'name', 'UniversitĆ© d''Ɖtat de frostburg'),
(816, 586, 'en', 'name', 'Gannon University'),
(817, 587, 'en', 'name', 'General de Jesus College'),
(818, 588, 'en', 'name', 'Georgia Southwestern State University'),
(819, 589, 'en', 'name', 'Georgian Court University'),
(820, 590, 'en', 'name', 'Governors State University'),
(821, 591, 'en', 'name', 'Grambling State University'),
(822, 591, 'fr', 'name', 'UniversitĆ© d''Ɖtat de grambling'),
(823, 592, 'en', 'name', 'Gunma University'),
(824, 592, 'ja', 'name', '群馬大学'),
(825, 593, 'en', 'name', 'Hampden–Sydney College'),
(826, 594, 'en', 'name', 'Hampton University'),
(827, 594, 'fr', 'name', 'UniversitƩ de hampton'),
(828, 595, 'en', 'name', 'Haskell Indian Nations University'),
(829, 596, 'en', 'name', 'Henderson State University'),
(830, 596, 'fr', 'name', 'UniversitĆ© d''Ɖtat henderson'),
(831, 597, 'en', 'name', 'Hendrix College'),
(832, 598, 'en', 'name', 'Hirosaki University'),
(833, 598, 'ja', 'name', '弘前大学'),
(834, 599, 'en', 'name', 'Hope College'),
(835, 600, 'en', 'name', 'Hosei University'),
(836, 600, 'ja', 'name', '法政大学'),
(837, 601, 'en', 'name', 'Howard Payne University'),
(838, 602, 'en', 'name', 'Hubei University of Chinese Medicine'),
(839, 602, 'zh', 'name', 'ę¹–åŒ—äø­åŒ»čÆå¤§å­¦'),
(840, 603, 'en', 'name', 'Huston–Tillotson University'),
(841, 604, 'en', 'name', 'Immaculata University'),
(842, 605, 'en', 'name', 'Indiana University South Bend'),
(843, 606, 'pt', 'name', 'Instituto Superior Autónomo de Estudos Politécnicos'),
(844, 607, 'en', 'name', 'Jackson State University'),
(845, 607, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Jackson'),
(846, 608, 'en', 'name', 'Jacksonville State University'),
(847, 608, 'fr', 'name', 'UniversitĆ© d''Ɖtat de jacksonville'),
(848, 609, 'en', 'name', 'Jacksonville University'),
(849, 609, 'es', 'name', 'Universidad de Jacksonville'),
(850, 609, 'fr', 'name', 'UniversitƩ de jacksonville'),
(851, 610, 'en', 'name', 'John Brown University'),
(852, 611, 'no_lang_code', 'name', 'Juniata College'),
(853, 612, 'no_lang_code', 'name', 'Juntendo University'),
(854, 612, 'ja', 'name', '順天堂大学'),
(855, 613, 'en', 'name', 'Kansas Wesleyan University'),
(856, 614, 'en', 'name', 'Kent State University'),
(857, 614, 'fr', 'name', 'UniversitĆ© d''Ɖtat de kent'),
(858, 615, 'en', 'name', 'Kentucky Community and Technical College System'),
(859, 616, 'en', 'name', 'King University'),
(860, 617, 'en', 'name', 'Knoxville College'),
(861, 618, 'en', 'name', 'Korea Maritime and Ocean University'),
(862, 618, 'ko', 'name', 'ķ•œźµ­ķ•“ģ–‘ėŒ€ķ•™źµ'),
(863, 619, 'en', 'name', 'Kyoto Prefectural University'),
(864, 619, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹å¤§å­¦'),
(865, 620, 'en', 'name', 'Kyoto Sangyo University'),
(866, 620, 'ja', 'name', 'äŗ¬éƒ½ē”£ę„­å¤§å­¦'),
(867, 621, 'en', 'name', 'La Salle University'),
(868, 621, 'es', 'name', 'Universidad de la Salle'),
(869, 621, 'fr', 'name', 'UniversitƩ la Salle'),
(870, 622, 'en', 'name', 'Lake Superior State University'),
(871, 622, 'fr', 'name', 'UniversitĆ© d''Ɖtat du lac supĆ©rieur'),
(872, 623, 'en', 'name', 'Lamar University'),
(873, 624, 'en', 'name', 'Lander University'),
(874, 625, 'en', 'name', 'Lawrence Technological University'),
(875, 625, 'fr', 'name', 'UniversitƩ technologique lawrence'),
(876, 626, 'en', 'name', 'Lawrence University'),
(877, 626, 'es', 'name', 'Universidad Lawrence'),
(878, 627, 'en', 'name', 'LeMoyne–Owen College'),
(879, 628, 'en', 'name', 'LeTourneau University'),
(880, 629, 'en', 'name', 'Lebanon Valley College'),
(881, 630, 'en', 'name', 'Lee University'),
(882, 631, 'en', 'name', 'Lehman College'),
(883, 632, 'en', 'name', 'Lesley University'),
(884, 633, 'en', 'name', 'Lewis & Clark College'),
(885, 634, 'en', 'name', 'Lewis University'),
(886, 635, 'en', 'name', 'Lock Haven University'),
(887, 636, 'en', 'name', 'Long Beach City College'),
(888, 637, 'en', 'name', 'Madonna University'),
(889, 637, 'fr', 'name', 'UniversitƩ madonna'),
(890, 638, 'en', 'name', 'Mansfield University'),
(891, 639, 'en', 'name', 'Maryville University'),
(892, 640, 'en', 'name', 'Mayville State University'),
(893, 641, 'en', 'name', 'McMurry University'),
(894, 642, 'en', 'name', 'McNeese State University'),
(895, 643, 'en', 'name', 'Mercer University Health Sciences Center'),
(896, 644, 'en', 'name', 'Methodist University'),
(897, 645, 'en', 'name', 'Metropolitan State University of Denver'),
(898, 646, 'en', 'name', 'Middlebury College'),
(899, 647, 'en', 'name', 'Midwestern State University'),
(900, 647, 'fr', 'name', 'UniversitĆ© d''Ɖtat du midwest'),
(901, 648, 'en', 'name', 'Millersville University'),
(902, 649, 'en', 'name', 'Millsaps College'),
(903, 650, 'en', 'name', 'Minnesota State University Moorhead'),
(904, 650, 'fr', 'name', 'UniversitĆ© d''Ɖtat du minnesota'),
(905, 651, 'en', 'name', 'Mississippi College'),
(906, 652, 'en', 'name', 'Mississippi University for Women'),
(907, 653, 'en', 'name', 'Mississippi Valley State University'),
(908, 654, 'en', 'name', 'Missouri Western State University'),
(909, 655, 'en', 'name', 'Monmouth College'),
(910, 656, 'en', 'name', 'Montana State University Billings'),
(911, 657, 'en', 'name', 'Morehouse College'),
(912, 658, 'en', 'name', 'Muhlenberg College'),
(913, 659, 'en', 'name', 'Muskingum University'),
(914, 660, 'en', 'name', 'Nagaoka University of Technology'),
(915, 660, 'ja', 'name', 'é•·å²”ęŠ€č”“ē§‘å­¦å¤§å­¦'),
(916, 661, 'en', 'name', 'National Chung Hsing University'),
(917, 662, 'en', 'name', 'National Defense Academy of Japan'),
(918, 662, 'ja', 'name', 'é˜²č”›å¤§å­¦ę ”'),
(919, 663, 'en', 'name', 'National Defense Medical Center'),
(920, 664, 'en', 'name', 'National Hispanic University'),
(921, 665, 'en', 'name', 'National Taiwan Ocean University'),
(922, 666, 'en', 'name', 'National University of Health Sciences'),
(923, 667, 'en', 'name', 'Nebraska Wesleyan University'),
(924, 668, 'en', 'name', 'New Jersey City University'),
(925, 669, 'en', 'name', 'New Mexico Highlands University'),
(926, 670, 'en', 'name', 'New York City College of Technology'),
(927, 671, 'en', 'name', 'Newman University'),
(928, 672, 'en', 'name', 'Nihon University'),
(929, 672, 'ja', 'name', 'ę—„ęœ¬å¤§å­¦'),
(930, 673, 'en', 'name', 'Norfolk State University'),
(931, 673, 'fr', 'name', 'UniversitĆ© d''Ɖtat de norfolk'),
(932, 674, 'en', 'name', 'North Park University'),
(933, 675, 'en', 'name', 'Northeastern Illinois University'),
(934, 676, 'en', 'name', 'Northwest Missouri State University'),
(935, 677, 'en', 'name', 'Northwest Nazarene University'),
(936, 678, 'en', 'name', 'Northwestern State University'),
(937, 678, 'fr', 'name', 'UniversitĆ© d''Ɖtat northwestern'),
(938, 679, 'en', 'name', 'Nova Southeastern University'),
(939, 679, 'es', 'name', 'Universidad de Nova Southeastern'),
(940, 680, 'en', 'name', 'Oglethorpe University'),
(941, 681, 'en', 'name', 'Ohio Northern University'),
(942, 682, 'en', 'name', 'Oklahoma Baptist University'),
(943, 683, 'en', 'name', 'Oklahoma City University'),
(944, 684, 'en', 'name', 'Oklahoma Panhandle State University'),
(945, 685, 'en', 'name', 'Olivet Nazarene University'),
(946, 686, 'en', 'name', 'Oral Roberts University'),
(947, 687, 'en', 'name', 'Ouachita Baptist University'),
(948, 688, 'en', 'name', 'Our Lady of the Lake University'),
(949, 689, 'en', 'name', 'Palo Alto University'),
(950, 690, 'en', 'name', 'Park University'),
(951, 691, 'en', 'name', 'Pfeiffer University'),
(952, 692, 'en', 'name', 'Point Loma Nazarene University'),
(953, 693, 'en', 'name', 'Portland Community College'),
(954, 694, 'en', 'name', 'Prince George''s Community College'),
(955, 695, 'en', 'name', 'Queensborough Community College, CUNY'),
(956, 696, 'en', 'name', 'Randolph–Macon College'),
(957, 697, 'en', 'name', 'Rider University'),
(958, 697, 'es', 'name', 'Universidad Rider'),
(959, 697, 'fr', 'name', 'UniversitƩ de rider'),
(960, 698, 'en', 'name', 'Ripon College'),
(961, 699, 'en', 'name', 'Robert Morris University'),
(962, 699, 'es', 'name', 'Universidad Robert Morris'),
(963, 700, 'en', 'name', 'Roosevelt University'),
(964, 701, 'en', 'name', 'Saint Ambrose University'),
(965, 701, 'fr', 'name', 'UniversitƩ saint ambroise'),
(966, 702, 'en', 'name', 'Saint Joseph''s University'),
(967, 702, 'es', 'name', 'Universidad de San JosƩ'),
(968, 702, 'fr', 'name', 'UniversitƩ saint-joseph de philadelphie'),
(969, 703, 'en', 'name', 'Saint Mary''s University of Minnesota'),
(970, 704, 'en', 'name', 'Saint Michael''s College'),
(971, 705, 'en', 'name', 'Saint Xavier University'),
(972, 706, 'en', 'name', 'Salem University'),
(973, 707, 'en', 'name', 'Sarah Lawrence College'),
(974, 708, 'en', 'name', 'Savannah State University'),
(975, 708, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Savannah'),
(976, 709, 'en', 'name', 'Savannah Technical College'),
(977, 710, 'en', 'name', 'Seattle Pacific University'),
(978, 711, 'en', 'name', 'Sejong University'),
(979, 711, 'ko', 'name', 'ģ„øģ¢…ėŒ€ķ•™źµ'),
(980, 712, 'en', 'name', 'Selma University'),
(981, 713, 'en', 'name', 'Seton Hall University'),
(982, 714, 'en', 'name', 'Shaw University'),
(983, 715, 'en', 'name', 'Shizuoka University'),
(984, 715, 'ja', 'name', '静岔大学'),
(985, 716, 'en', 'name', 'Shumei University'),
(986, 716, 'ja', 'name', 'ē§€ę˜Žå¤§å­¦'),
(987, 717, 'en', 'name', 'Siena College'),
(988, 718, 'en', 'name', 'Simpson College'),
(989, 719, 'en', 'name', 'Sinclair Community College'),
(990, 720, 'no_lang_code', 'name', 'Sinte Gleska University'),
(991, 721, 'en', 'name', 'Slippery Rock University'),
(992, 722, 'en', 'name', 'Soongsil University'),
(993, 722, 'ko', 'name', 'ģˆ­ģ‹¤ėŒ€ķ•™źµ'),
(994, 723, 'en', 'name', 'South-West State University'),
(995, 723, 'ru', 'name', 'Юго-ЗапаГный Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(996, 724, 'en', 'name', 'South Carolina State University'),
(997, 725, 'en', 'name', 'Southeast Missouri State University'),
(998, 726, 'en', 'name', 'Southeastern Louisiana University'),
(999, 726, 'es', 'name', 'Universidad del Sudeste de Luisiana'),
(1000, 727, 'en', 'name', 'Southeastern Oklahoma State University'),
(1001, 728, 'en', 'name', 'Southern Arkansas University'),
(1002, 729, 'en', 'name', 'Southern California University of Health Sciences'),
(1003, 730, 'en', 'name', 'Southern Illinois University Edwardsville'),
(1004, 731, 'en', 'name', 'Southern Polytechnic State University'),
(1005, 732, 'en', 'name', 'Southern University at New Orleans'),
(1006, 733, 'en', 'name', 'Southern University at Shreveport'),
(1007, 734, 'en', 'name', 'Southern Utah University'),
(1008, 735, 'en', 'name', 'Southwestern Oklahoma State University'),
(1009, 736, 'en', 'name', 'Southwestern Oregon Community College'),
(1010, 737, 'en', 'name', 'Springfield Technical Community College'),
(1011, 738, 'en', 'name', 'St. Jerome''s University'),
(1012, 739, 'es', 'name', 'Sistema universitario estatal de Florida'),
(1013, 739, 'en', 'name', 'State University System of Florida'),
(1014, 740, 'en', 'name', 'Stetson University'),
(1015, 741, 'en', 'name', 'Suffolk University'),
(1016, 741, 'es', 'name', 'Universidad de Suffolk'),
(1017, 742, 'en', 'name', 'Sweet Briar College'),
(1018, 743, 'en', 'name', 'College of New Jersey'),
(1019, 744, 'no_lang_code', 'name', 'Tamkang University'),
(1020, 744, 'zh', 'name', '淔江大學'),
(1021, 745, 'en', 'name', 'Technical University of Nova Scotia'),
(1022, 746, 'en', 'name', 'The Evergreen State College'),
(1023, 747, 'es', 'name', 'La Nueva Escuela'),
(1024, 747, 'en', 'name', 'New School'),
(1025, 748, 'en', 'name', 'Thiel College'),
(1026, 749, 'en', 'name', 'Tilka Manjhi Bhagalpur University'),
(1027, 749, 'hi', 'name', 'तिलका ą¤®ą¤¾ą¤‚ą¤ą„€ ą¤­ą¤¾ą¤—ą¤²ą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1028, 750, 'en', 'name', 'Toyota Technological Institute'),
(1029, 750, 'ja', 'name', 'č±Šē”°å·„ę„­å¤§å­¦'),
(1030, 751, 'en', 'name', 'Transylvania University'),
(1031, 752, 'en', 'name', 'Troy University'),
(1032, 753, 'en', 'name', 'Tunghai University'),
(1033, 753, 'zh', 'name', 'ę±ęµ·å¤§å­ø'),
(1034, 754, 'es', 'name', 'Academia de la Fuerza AƩrea de los Estados Unidos'),
(1035, 754, 'en', 'name', 'United States Air Force Academy'),
(1036, 755, 'en', 'name', 'University of Aizu'),
(1037, 755, 'ja', 'name', '会擄大学'),
(1038, 756, 'en', 'name', 'University of Arkansas – Fort Smith'),
(1039, 757, 'en', 'name', 'University of Arkansas at Monticello'),
(1040, 758, 'en', 'name', 'University of Arkansas at Pine Bluff'),
(1041, 758, 'fr', 'name', 'UniversitƩ de l''arkansas Ơ pine bluff'),
(1042, 759, 'en', 'name', 'University of Central Arkansas'),
(1043, 760, 'es', 'name', 'Universidad de Dallas'),
(1044, 760, 'en', 'name', 'University of Dallas'),
(1045, 760, 'fr', 'name', 'UniversitƩ de Dallas'),
(1046, 761, 'en', 'name', 'University of Electro-Communications'),
(1047, 761, 'ja', 'name', 'é›»ę°—é€šäæ”å¤§å­¦'),
(1048, 762, 'en', 'name', 'University of Findlay'),
(1049, 763, 'es', 'name', 'Universidad de HawƔi en Hilo'),
(1050, 763, 'en', 'name', 'University of Hawaii at Hilo'),
(1051, 763, 'fr', 'name', 'Université d''hawaï à hilo'),
(1052, 764, 'es', 'name', 'Universidad de La Verne'),
(1053, 764, 'en', 'name', 'University of La Verne'),
(1054, 765, 'en', 'name', 'University of Louisiana at Monroe'),
(1055, 765, 'fr', 'name', 'UniversitƩ de Louisiane Ơ Monroe'),
(1056, 766, 'en', 'name', 'University of Maine at Farmington'),
(1057, 767, 'en', 'name', 'University of Maine at Machias'),
(1058, 768, 'en', 'name', 'University of Maine at Presque Isle'),
(1059, 769, 'en', 'name', 'University of Mary Washington'),
(1060, 769, 'fr', 'name', 'UniversitƩ de mary washington'),
(1061, 770, 'en', 'name', 'University of Minnesota, Duluth'),
(1062, 771, 'en', 'name', 'University of Minnesota Morris'),
(1063, 771, 'fr', 'name', 'UniversitƩ du minnesota Ơ morris'),
(1064, 772, 'en', 'name', 'University of Missouri–Kansas City'),
(1065, 773, 'en', 'name', 'University of Montevallo'),
(1066, 774, 'en', 'name', 'University of New England'),
(1067, 775, 'en', 'name', 'University of North Alabama'),
(1068, 776, 'en', 'name', 'University of North Carolina at Asheville'),
(1069, 777, 'en', 'name', 'University of Oklahoma Health Sciences Center'),
(1070, 778, 'en', 'name', 'University of San Carlos'),
(1071, 779, 'en', 'name', 'University of Science and Arts of Oklahoma'),
(1072, 780, 'en', 'name', 'University of Seoul'),
(1073, 780, 'ko', 'name', 'ģ„œģšøģ‹œė¦½ėŒ€ķ•™źµ'),
(1074, 781, 'en', 'name', 'University of South Carolina Aiken'),
(1075, 782, 'en', 'name', 'University of South Carolina Beaufort'),
(1076, 783, 'en', 'name', 'University of South Carolina Upstate'),
(1077, 784, 'en', 'name', 'University of Southern Maine'),
(1078, 785, 'en', 'name', 'University of Suwon'),
(1079, 785, 'ko', 'name', 'ģˆ˜ģ›ėŒ€ķ•™źµ'),
(1080, 786, 'es', 'name', 'Universidad de Tampa'),
(1081, 786, 'en', 'name', 'University of Tampa'),
(1082, 787, 'en', 'name', 'University of Tennessee at Martin'),
(1083, 788, 'en', 'name', 'The University of Texas Health Science Center at Tyler'),
(1084, 789, 'en', 'name', 'The University of Texas at Arlington'),
(1085, 789, 'fr', 'name', 'UniversitƩ du Texas Ơ Arlington'),
(1086, 790, 'en', 'name', 'The University of Texas of the Permian Basin'),
(1087, 791, 'en', 'name', 'Tokushima University'),
(1088, 791, 'ja', 'name', '徳島大学'),
(1089, 792, 'es', 'name', 'Universidad de Trinidad y Tobago'),
(1090, 792, 'en', 'name', 'University of Trinidad and Tobago'),
(1091, 793, 'en', 'name', 'University of Tulsa'),
(1092, 793, 'fr', 'name', 'UniversitƩ de tulsa'),
(1093, 794, 'en', 'name', 'Alfred Health'),
(1094, 795, 'en', 'name', 'University of Ulsan'),
(1095, 795, 'ko', 'name', 'ģšøģ‚°ėŒ€ķ•™źµ'),
(1096, 796, 'en', 'name', 'University of West Alabama'),
(1097, 797, 'en', 'name', 'University of West Georgia'),
(1098, 798, 'en', 'name', 'University of Western States'),
(1099, 799, 'en', 'name', 'University of Wisconsin–Eau Claire'),
(1100, 799, 'fr', 'name', 'UniversitƩ du Wisconsin Ơ Eau Claire'),
(1101, 800, 'en', 'name', 'University of Wisconsin–La Crosse'),
(1102, 800, 'fr', 'name', 'UniversitĆ© du Wisconsin–La Crosse'),
(1103, 801, 'en', 'name', 'University of Wisconsin–Parkside'),
(1104, 801, 'fr', 'name', 'UniversitĆ© du Wisconsin–Parkside'),
(1105, 802, 'en', 'name', 'University of Wisconsin–Stevens Point'),
(1106, 802, 'fr', 'name', 'UniversitĆ© du Wisconsin–Stevens Point'),
(1107, 803, 'en', 'name', 'University of Wisconsin–Superior'),
(1108, 803, 'fr', 'name', 'UniversitĆ© du Wisconsin–Superior'),
(1109, 804, 'en', 'name', 'University of Yamanashi'),
(1110, 804, 'ja', 'name', '山梨大学'),
(1111, 805, 'en', 'name', 'University of the District of Columbia'),
(1112, 805, 'fr', 'name', 'UniversitƩ du district de columbia'),
(1113, 806, 'es', 'name', 'Universidad del Verbo Encarnado'),
(1114, 806, 'en', 'name', 'University of the Incarnate Word'),
(1115, 806, 'fr', 'name', 'UniversitƩ du verbe incarnƩ'),
(1116, 807, 'en', 'name', 'Sewanee: The University of the South'),
(1117, 808, 'en', 'name', 'Ursinus College'),
(1118, 809, 'en', 'name', 'Utsunomiya University'),
(1119, 809, 'ja', 'name', '宇都宮大学'),
(1120, 810, 'fr', 'name', 'UniversitĆ© d''Ɖtat de virginie'),
(1121, 810, 'en', 'name', 'Virginia State University'),
(1122, 811, 'en', 'name', 'Virginia Union University'),
(1123, 812, 'en', 'name', 'West Virginia University at Parkersburg'),
(1124, 813, 'en', 'name', 'West Virginia Wesleyan College'),
(1125, 814, 'en', 'name', 'Western Kentucky University'),
(1126, 815, 'en', 'name', 'Western New Mexico University'),
(1127, 816, 'en', 'name', 'Western Oklahoma State College'),
(1128, 817, 'en', 'name', 'Wheeling Jesuit University'),
(1129, 818, 'fr', 'name', 'UniversitƩ de wilberforce'),
(1130, 818, 'en', 'name', 'Wilberforce University'),
(1131, 819, 'en', 'name', 'William Woods University'),
(1132, 820, 'en', 'name', 'Wilson College'),
(1133, 821, 'en', 'name', 'Winston-Salem State University'),
(1134, 822, 'en', 'name', 'Winthrop University'),
(1135, 823, 'en', 'name', 'York College, City University of New York'),
(1136, 824, 'en', 'name', 'Youngstown State University'),
(1137, 825, 'en', 'name', 'Zhejiang Chinese Medical University'),
(1138, 825, 'zh', 'name', 'ęµ™ę±Ÿäø­åŒ»čÆå¤§å­¦'),
(1139, 826, 'en', 'name', 'MRC Unit for Lifelong Health and Ageing'),
(1140, 827, 'en', 'name', 'Royal Liverpool and Broadgreen University Hospital NHS Trust'),
(1141, 828, 'no_lang_code', 'name', 'Nexeon (United Kingdom)'),
(1142, 829, 'en', 'name', 'East Kent Hospitals University NHS Foundation Trust'),
(1143, 830, 'no_lang_code', 'name', 'Saiseikai Central Hospital'),
(1144, 830, 'ja', 'name', 'ę±äŗ¬éƒ½ęøˆē”Ÿä¼šäø­å¤®ē—…é™¢'),
(1145, 831, 'no_lang_code', 'name', 'Xerox (Canada)'),
(1146, 832, 'en', 'name', 'Earth and Space Research'),
(1147, 833, 'en', 'name', 'Kyoto Prefectural University of Medicine'),
(1148, 833, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹åŒ»ē§‘å¤§å­¦'),
(1149, 834, 'en', 'name', 'Singapore Eye Research Institute'),
(1150, 835, 'en', 'name', 'Berkeley Geochronology Center'),
(1151, 836, 'en', 'name', 'Cardiff and Vale University Health Board'),
(1152, 837, 'en', 'name', 'Long Island Jewish Medical Center'),
(1153, 838, 'en', 'name', 'Butler Hospital'),
(1154, 839, 'no_lang_code', 'name', 'Taylor Wimpey (United Kingdom)'),
(1155, 840, 'no_lang_code', 'name', 'New England Biolabs (United States)'),
(1156, 841, 'en', 'name', 'Delaware Division of Public Health'),
(1157, 842, 'en', 'name', 'Oklahoma Medical Research Foundation'),
(1158, 843, 'en', 'name', 'James J. Peters VA Medical Center'),
(1159, 844, 'en', 'name', 'The Graduate University for Advanced Studies, SOKENDAI'),
(1160, 844, 'ja', 'name', 'ē·åˆē ”ē©¶å¤§å­¦é™¢å¤§å­¦'),
(1161, 845, 'en', 'name', 'American Society of Civil Engineers'),
(1162, 846, 'en', 'name', 'National Academy of Sciences'),
(1163, 847, 'no_lang_code', 'name', 'Format International Ltd'),
(1164, 848, 'no_lang_code', 'name', 'Altera (United States)'),
(1165, 849, 'no_lang_code', 'name', 'Intracom Telecom (Greece)'),
(1166, 850, 'en', 'name', 'National Development and Research Institutes'),
(1167, 851, 'en', 'name', 'National Neuroscience Institute'),
(1168, 852, 'en', 'name', 'Iwate Biotechnology Research Center'),
(1169, 852, 'ja', 'name', '貔団法人 å²©ę‰‹ē”Ÿē‰©å·„å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(1170, 853, 'en', 'name', 'Atmospheric and Environmental Research'),
(1171, 854, 'en', 'name', 'The Aerospace Corporation'),
(1172, 855, 'en', 'name', 'Creative England'),
(1173, 856, 'en', 'name', 'National Eye Institute'),
(1174, 857, 'en', 'name', 'Gordon Research Conferences'),
(1175, 858, 'en', 'name', 'Northern California Institute for Research and Education'),
(1176, 859, 'en', 'name', 'National Human Genome Research Institute'),
(1177, 860, 'en', 'name', 'Pacific Institute For Research and Evaluation'),
(1178, 861, 'en', 'name', 'Minnesota Department of Health'),
(1179, 862, 'en', 'name', 'Keystone Symposia On Molecular and Cellular Biology'),
(1180, 863, 'es', 'name', 'Biblioteca Nacional de Medicina'),
(1181, 863, 'en', 'name', 'United States National Library of Medicine'),
(1182, 864, 'es', 'name', 'Departamento de Salud y Servicios Sociales de los Estados Unidos'),
(1183, 864, 'fr', 'name', 'DĆ©partement de la santĆ© et des services sociaux des Ɖtats-unis'),
(1184, 864, 'en', 'name', 'State of Maine Department of Health and Human Services'),
(1185, 865, 'en', 'name', 'Iowa Department of Public Health'),
(1186, 866, 'en', 'name', 'Connecticut Department of Public Health'),
(1187, 867, 'en', 'name', 'Virginia Department of Health'),
(1188, 868, 'en', 'name', 'Utah Department of Health'),
(1189, 869, 'en', 'name', 'Oregon Research Institute'),
(1190, 870, 'en', 'name', 'Federation of American Societies for Experimental Biology'),
(1191, 871, 'en', 'name', 'Hawaii Department of Health'),
(1192, 872, 'en', 'name', 'Tennessee Department of Mental Health and Substance Abuse Services'),
(1193, 873, 'en', 'name', 'National Institute of Biomedical Imaging and Bioengineering'),
(1194, 874, 'en', 'name', 'West Virginia State Department of Health and Human Resources'),
(1195, 875, 'en', 'name', 'Ohio Department of Mental Health & Addiction Services'),
(1196, 876, 'en', 'name', 'Pennsylvania Department of Health'),
(1197, 877, 'en', 'name', 'Kentucky Cabinet For Health and Family Services'),
(1198, 878, 'en', 'name', 'Idaho Department of Health and Welfare'),
(1199, 879, 'en', 'name', 'Lovelace Respiratory Research Institute'),
(1200, 880, 'en', 'name', 'Indiana State Department of Education'),
(1201, 881, 'en', 'name', 'Wyoming State Department of Health'),
(1202, 882, 'en', 'name', 'Nebraska Department of Health and Human Services'),
(1203, 883, 'en', 'name', 'Versiti Blood Center of Wisconsin'),
(1204, 884, 'en', 'name', 'Kansas Department of Health and Environment'),
(1205, 885, 'en', 'name', 'Boston Biomedical Research Institute'),
(1206, 886, 'no_lang_code', 'name', 'Emmes (United States)'),
(1207, 887, 'en', 'name', 'North Dakota Department of Health'),
(1208, 888, 'en', 'name', 'Brentwood Biomedical Research Institute'),
(1209, 889, 'en', 'name', 'Mind Research Network'),
(1210, 890, 'en', 'name', 'Philadelphia Department of Public Health'),
(1211, 891, 'en', 'name', 'South Dakota Department of Health'),
(1212, 892, 'en', 'name', 'Vermont Department of Mental Health'),
(1213, 893, 'en', 'name', 'Public Health Foundation Enterprises'),
(1214, 894, 'en', 'name', 'Georgia Department of Human Services'),
(1215, 895, 'en', 'name', 'Arkansas State Department of Human Services'),
(1216, 896, 'no_lang_code', 'name', 'Westat (United States)'),
(1217, 897, 'en', 'name', 'Aaron Diamond AIDS Research Center'),
(1218, 898, 'no_lang_code', 'name', 'Oregon Center For Applied Science (United States)'),
(1219, 899, 'en', 'name', 'Connecticut Department of Mental Health and Addiction Services'),
(1220, 900, 'en', 'name', 'Missouri Department of Mental Health'),
(1221, 901, 'en', 'name', 'HealthPartners'),
(1222, 902, 'en', 'name', 'Treatment Research Institute'),
(1223, 903, 'no_lang_code', 'name', 'Microbiotix (United States)'),
(1224, 904, 'en', 'name', 'Ralph H. Johnson VA Medical Center'),
(1225, 905, 'en', 'name', 'Bloodworks Northwest'),
(1226, 906, 'en', 'name', 'National Center for Complementary and Integrative Health'),
(1227, 907, 'no_lang_code', 'name', 'Lynntech (United States)'),
(1228, 908, 'en', 'name', 'National Institute of Environmental Health Sciences'),
(1229, 909, 'en', 'name', 'Cancer Prevention Institute of California'),
(1230, 910, 'no_lang_code', 'name', 'Advanced Medical Electronics (United States)'),
(1231, 911, 'en', 'name', 'South Texas Veterans Health Care System'),
(1232, 912, 'en', 'name', 'Lankenau Institute for Medical Research'),
(1233, 913, 'en', 'name', 'Baltimore VA Medical Center'),
(1234, 914, 'en', 'name', 'Marshfield Clinic'),
(1235, 915, 'no_lang_code', 'name', 'Inflexxion (United States)'),
(1236, 916, 'no_lang_code', 'name', 'Cleveland Medical Devices'),
(1237, 917, 'en', 'name', 'National Institute of Nursing Research'),
(1238, 918, 'en', 'name', 'Education Development Center'),
(1239, 919, 'en', 'name', 'VA Palo Alto Health Care System'),
(1240, 920, 'en', 'name', 'American Society for Microbiology'),
(1241, 921, 'en', 'name', 'Minnesota Department of Human Services'),
(1242, 922, 'en', 'name', 'National Institute of General Medical Sciences'),
(1243, 923, 'en', 'name', 'McLaughlin Research Institute'),
(1244, 924, 'no_lang_code', 'name', 'Sociometrics Corporation'),
(1245, 925, 'en', 'name', 'VA Salt Lake City Healthcare System'),
(1246, 926, 'en', 'name', 'Birmingham VA Medical Center'),
(1247, 927, 'en', 'name', 'Rhode Island Department of Behavioral Healthcare, Developmental Disabilities and Hospitals'),
(1248, 928, 'en', 'name', 'Pacific Northwest Diabetes Research Institute'),
(1249, 929, 'en', 'name', 'American Association For Cancer Research'),
(1250, 930, 'en', 'name', 'American Dental Association'),
(1251, 931, 'en', 'name', 'Integrated Laboratory Systems, Inc.'),
(1252, 932, 'no_lang_code', 'name', 'Social and Scientific Systems (United States)'),
(1253, 933, 'en', 'name', 'Kansas Department for Children and Families'),
(1254, 934, 'en', 'name', 'New York State Office of Mental Health'),
(1255, 935, 'en', 'name', 'Doheny Eye Institute'),
(1256, 936, 'no_lang_code', 'name', 'Ambergen (United States)'),
(1257, 937, 'en', 'name', 'Blood Systems Research Institute'),
(1258, 938, 'no_lang_code', 'name', 'NovoMedix (United States)'),
(1259, 939, 'no_lang_code', 'name', 'Charles River Laboratories (United States)'),
(1260, 940, 'en', 'name', 'Iowa Department of Human Services'),
(1261, 941, 'en', 'name', 'South Carolina State Department of Mental Health'),
(1262, 942, 'no_lang_code', 'name', 'Information Management Services'),
(1263, 943, 'en', 'name', 'VA Eastern Colorado Health Care System'),
(1264, 944, 'en', 'name', 'Huntington Medical Research Institutes'),
(1265, 945, 'en', 'name', 'Judge Baker Children''s Center'),
(1266, 946, 'en', 'name', 'American Psychological Association'),
(1267, 947, 'no_lang_code', 'name', '3C Institute'),
(1268, 948, 'no_lang_code', 'name', 'Biotex (United States)'),
(1269, 949, 'no_lang_code', 'name', 'Praxis (United States)'),
(1270, 950, 'no_lang_code', 'name', 'Sanaria'),
(1271, 951, 'en', 'name', 'Institute For Community Research'),
(1272, 952, 'en', 'name', 'Center for Molecular Medicine and Immunology'),
(1273, 953, 'no_lang_code', 'name', 'Talaria (United States)'),
(1274, 954, 'no_lang_code', 'name', 'MC3 (United States)'),
(1275, 955, 'no_lang_code', 'name', 'Phylonix (United States)'),
(1276, 956, 'en', 'name', 'Riverside Research Institute'),
(1277, 957, 'en', 'name', 'Salus University'),
(1278, 958, 'no_lang_code', 'name', 'TDA Research (United States)'),
(1279, 959, 'en', 'name', 'IIT Research Institute'),
(1280, 960, 'en', 'name', 'The Hamner Institutes for Health Sciences'),
(1281, 961, 'en', 'name', 'Swedish Medical Center'),
(1282, 962, 'no_lang_code', 'name', 'University Research Co (United States)'),
(1283, 963, 'en', 'name', 'James A. Haley Veterans'' Hospital'),
(1284, 964, 'en', 'name', 'National Institute on Minority Health and Health Disparities'),
(1285, 965, 'no_lang_code', 'name', 'Danya International, Inc.'),
(1286, 966, 'no_lang_code', 'name', 'Luna Innovations (United States)'),
(1287, 967, 'no_lang_code', 'name', 'MatTek Corporation (United States)'),
(1288, 968, 'en', 'name', 'American Academy of Pediatrics'),
(1289, 969, 'no_lang_code', 'name', 'P2D Bioscience (United States)'),
(1290, 970, 'no_lang_code', 'name', 'Lucigen Corporation'),
(1291, 971, 'no_lang_code', 'name', 'Barron Associates (United States)'),
(1292, 972, 'no_lang_code', 'name', 'Physical Optics Corporation'),
(1293, 973, 'no_lang_code', 'name', 'ISA Associate'),
(1294, 974, 'en', 'name', 'Operation PAR'),
(1295, 975, 'no_lang_code', 'name', 'IRIS Educational Media'),
(1296, 976, 'en', 'name', 'Behavioral Tech Research, Inc.'),
(1297, 977, 'no_lang_code', 'name', 'Koronis Biomedical Technologies (United States)'),
(1298, 978, 'en', 'name', 'Baystate Medical Center'),
(1299, 979, 'no_lang_code', 'name', 'Progenra (United States)'),
(1300, 980, 'no_lang_code', 'name', 'Molecular GPS Technologies (United States)'),
(1301, 981, 'en', 'name', 'American Type Culture Collection'),
(1302, 982, 'no_lang_code', 'name', 'Fisher Bioservices (United States)'),
(1303, 983, 'en', 'name', 'VA Connecticut Healthcare System'),
(1304, 984, 'no_lang_code', 'name', 'GenVec'),
(1305, 985, 'en', 'name', 'Institute for Scientific Analysis'),
(1306, 986, 'no_lang_code', 'name', 'Advanced Liquid Logic'),
(1307, 987, 'en', 'name', 'Bassett Medical Center'),
(1308, 988, 'no_lang_code', 'name', 'IQuum (United States)'),
(1309, 989, 'no_lang_code', 'name', 'EIC Laboratories'),
(1310, 990, 'no_lang_code', 'name', 'Infinite Biomedical Technologies (United States)'),
(1311, 991, 'no_lang_code', 'name', 'Biomedware (United States)'),
(1312, 992, 'no_lang_code', 'name', 'Compact Membrane Systems (United States)'),
(1313, 993, 'no_lang_code', 'name', 'Bellbrook Labs (United States)'),
(1314, 994, 'no_lang_code', 'name', 'Ada Technologies (United States)'),
(1315, 995, 'no_lang_code', 'name', 'Clinical Tools, Inc.'),
(1316, 996, 'no_lang_code', 'name', 'Siga Technologies (United States)'),
(1317, 997, 'no_lang_code', 'name', 'Profectus Biosciences (United States)'),
(1318, 998, 'en', 'name', 'Bradley Hospital'),
(1319, 999, 'en', 'name', 'La Jolla Institute For Molecular Medicine'),
(1320, 1000, 'no_lang_code', 'name', 'Glsynthesis'),
(1321, 1001, 'no_lang_code', 'name', 'Nanoprobes (United States)'),
(1322, 1002, 'no_lang_code', 'name', 'Sequella (United States)'),
(1323, 1003, 'no_lang_code', 'name', 'Cell and Tissue Systems (United States)'),
(1324, 1004, 'no_lang_code', 'name', 'Bolder Biotechnology, Inc.'),
(1325, 1005, 'no_lang_code', 'name', 'Vala Sciences (United States)'),
(1326, 1006, 'en', 'name', 'Research Foundation For Mental Hygiene'),
(1327, 1007, 'no_lang_code', 'name', 'Northwest Media (United States)'),
(1328, 1008, 'no_lang_code', 'name', 'Innovation Research and Training'),
(1329, 1009, 'no_lang_code', 'name', 'Virogenomics BioDevelopment (United States)'),
(1330, 1010, 'en', 'name', 'Family and Social Services Administration'),
(1331, 1011, 'no_lang_code', 'name', 'Therapeutics Systems Research Laboratories (United States)'),
(1332, 1012, 'en', 'name', 'Tanglewood Research'),
(1333, 1013, 'no_lang_code', 'name', 'Science and Engineering Services (United States)'),
(1334, 1014, 'no_lang_code', 'name', 'Maxwell Sensors'),
(1335, 1015, 'no_lang_code', 'name', 'Radikal Therapeutics'),
(1336, 1016, 'no_lang_code', 'name', 'Deschutes Research'),
(1337, 1017, 'en', 'name', 'AcademyHealth'),
(1338, 1018, 'en', 'name', 'Social Sciences Innovations'),
(1339, 1019, 'en', 'name', 'San Francicso Brain Research Institute & SAM Technology'),
(1340, 1020, 'no_lang_code', 'name', 'NeuroComp Systems (United States)'),
(1341, 1021, 'no_lang_code', 'name', 'Nova Research Company (United States)'),
(1342, 1022, 'en', 'name', 'Winthrop-University Hospital'),
(1343, 1023, 'no_lang_code', 'name', 'Mirus Bio (United States)'),
(1344, 1024, 'no_lang_code', 'name', 'Invotek'),
(1345, 1025, 'no_lang_code', 'name', 'Pinnacle Technology'),
(1346, 1026, 'no_lang_code', 'name', 'IQ Solutions'),
(1347, 1027, 'no_lang_code', 'name', 'Technical Resources International (United States)'),
(1348, 1028, 'no_lang_code', 'name', 'Biomedical Development Corporation'),
(1349, 1029, 'no_lang_code', 'name', 'SomaGenics (United States)'),
(1350, 1030, 'no_lang_code', 'name', 'STAR Analytical Services'),
(1351, 1031, 'no_lang_code', 'name', 'Sibtech (United States)'),
(1352, 1032, 'no_lang_code', 'name', 'Adenosine Therapeutics (United States)'),
(1353, 1033, 'no_lang_code', 'name', 'Ension'),
(1354, 1034, 'no_lang_code', 'name', 'Academic Edge'),
(1355, 1035, 'no_lang_code', 'name', 'Western Research Company, Inc.'),
(1356, 1036, 'no_lang_code', 'name', 'Kai Research (United States)'),
(1357, 1037, 'no_lang_code', 'name', 'One Cell Systems (United States)'),
(1358, 1038, 'no_lang_code', 'name', 'Virtually Better'),
(1359, 1039, 'no_lang_code', 'name', 'Medical Decision Logic'),
(1360, 1040, 'en', 'name', 'American Red Cross'),
(1361, 1040, 'fr', 'name', 'Croix-rouge amƩricaine'),
(1362, 1040, 'es', 'name', 'Cruz Roja Americana'),
(1363, 1041, 'no_lang_code', 'name', 'Doty Scientific (United States)'),
(1364, 1042, 'no_lang_code', 'name', 'Litron Laboratories (United States)'),
(1365, 1043, 'no_lang_code', 'name', 'Electrosonics Medical'),
(1366, 1044, 'no_lang_code', 'name', 'CFD Research Corporation (United States)'),
(1367, 1045, 'no_lang_code', 'name', 'Sensimetrics Corporation'),
(1368, 1046, 'no_lang_code', 'name', 'Aphios Corporation'),
(1369, 1047, 'no_lang_code', 'name', 'Spire Corporation (United States)'),
(1370, 1048, 'no_lang_code', 'name', 'Personal Improvement Computer Systems'),
(1371, 1049, 'no_lang_code', 'name', 'Proportional Technologies'),
(1372, 1050, 'no_lang_code', 'name', 'Intelligent Hearing Systems (United States)'),
(1373, 1051, 'en', 'name', 'American Academy of Orthopaedic Surgeons'),
(1374, 1052, 'no_lang_code', 'name', 'Taconic (United States)'),
(1375, 1053, 'en', 'name', 'Philadelphia College of Osteopathic Medicine'),
(1376, 1054, 'en', 'name', 'Society For Developmental Biology'),
(1377, 1055, 'en', 'name', 'National Health Promotion Associates'),
(1378, 1056, 'en', 'name', 'Gerontological Society of America'),
(1379, 1057, 'no_lang_code', 'name', 'Trevigen'),
(1380, 1058, 'no_lang_code', 'name', 'Echelon Biosciences'),
(1381, 1059, 'no_lang_code', 'name', 'Bioqual'),
(1382, 1060, 'no_lang_code', 'name', 'State of The Art'),
(1383, 1061, 'no_lang_code', 'name', 'Ichor Medical Systems (United States)'),
(1384, 1062, 'no_lang_code', 'name', 'Bio Chem Analysis Corporation (United States)'),
(1385, 1063, 'no_lang_code', 'name', 'Kestrel Corporation'),
(1386, 1064, 'en', 'name', 'Brookings Institution'),
(1387, 1064, 'es', 'name', 'Institución Brookings'),
(1388, 1065, 'en', 'name', 'Union for International Cancer Control'),
(1389, 1065, 'fr', 'name', 'Union internationale contre le cancer'),
(1390, 1066, 'no_lang_code', 'name', 'Experimental Pathology Laboratories'),
(1391, 1067, 'no_lang_code', 'name', 'Starks Associates'),
(1392, 1068, 'no_lang_code', 'name', 'Microfab Technologies (United States)'),
(1393, 1069, 'no_lang_code', 'name', 'Lickenbrock'),
(1394, 1070, 'en', 'name', 'Eltron Research'),
(1395, 1071, 'no_lang_code', 'name', 'Southwest Sciences (United States)'),
(1396, 1072, 'no_lang_code', 'name', 'Universal Stabilization Technologies'),
(1397, 1073, 'no_lang_code', 'name', 'Intelligent Automation (United States)'),
(1398, 1074, 'pt', 'name', 'Fundacao Universitaria Jose Bonifacio'),
(1399, 1075, 'no_lang_code', 'name', 'Barlow Scientific'),
(1400, 1076, 'no_lang_code', 'name', 'Alpha Universe'),
(1401, 1077, 'no_lang_code', 'name', 'Resodyn Corporation (United States)'),
(1402, 1078, 'no_lang_code', 'name', 'Quality Biological'),
(1403, 1079, 'en', 'name', 'American Sociological Association'),
(1404, 1080, 'en', 'name', 'American Statistical Association'),
(1405, 1081, 'no_lang_code', 'name', 'Inotek Pharmaceuticals (United States)'),
(1406, 1082, 'no_lang_code', 'name', 'TPL (United States)'),
(1407, 1083, 'no_lang_code', 'name', 'Corixa Corporation'),
(1408, 1084, 'no_lang_code', 'name', 'IM Systems (United States)'),
(1409, 1085, 'no_lang_code', 'name', 'HealthMark Multimedia'),
(1410, 1086, 'no_lang_code', 'name', 'Atom Sciences'),
(1411, 1087, 'no_lang_code', 'name', 'Abratech Corporation'),
(1412, 1088, 'en', 'name', 'Maryland Science Center'),
(1413, 1089, 'en', 'name', 'South Carolina State Governor''s Office'),
(1414, 1090, 'no_lang_code', 'name', 'Alion Science and Technology (United States)'),
(1415, 1091, 'no_lang_code', 'name', 'Aastrom Biosciences (United States)'),
(1416, 1092, 'no_lang_code', 'name', 'Whalen Biomedical'),
(1417, 1093, 'en', 'name', 'University Medical Center of El Paso'),
(1418, 1094, 'no_lang_code', 'name', 'Photon Imaging (United States)'),
(1419, 1095, 'no_lang_code', 'name', 'Epoch Biosciences (United States)'),
(1420, 1096, 'no_lang_code', 'name', 'Thermal Technologies (United States)'),
(1421, 1097, 'no_lang_code', 'name', 'Oxford Biomedical Research'),
(1422, 1098, 'en', 'name', 'Educational Testing Service'),
(1423, 1099, 'en', 'name', 'Memorial Health University Medical Center'),
(1424, 1100, 'en', 'name', 'American Chemical Society'),
(1425, 1101, 'no_lang_code', 'name', 'Metabolic Solutions'),
(1426, 1102, 'no_lang_code', 'name', 'Medical Physics Consultants'),
(1427, 1103, 'en', 'name', 'Toyota Technological Institute at Chicago'),
(1428, 1104, 'en', 'name', 'Dauphin Island Sea Lab'),
(1429, 1105, 'en', 'name', 'Colorado Center For Hospice and Palliative Care'),
(1430, 1106, 'no_lang_code', 'name', 'BioTek (United States)'),
(1431, 1107, 'no_lang_code', 'name', 'Mycologics'),
(1432, 1108, 'no_lang_code', 'name', 'Engi-Mat (United States)'),
(1433, 1109, 'en', 'name', 'Scripps Whittier Diabetes Institute'),
(1434, 1110, 'en', 'name', 'Decision Research'),
(1435, 1111, 'en', 'name', 'University of Houston - Clear Lake'),
(1436, 1112, 'en', 'name', 'American Association of Geographers'),
(1437, 1113, 'en', 'name', 'Science Research Laboratory'),
(1438, 1114, 'no_lang_code', 'name', 'Emergent BioSolutions (United States)'),
(1439, 1115, 'en', 'name', 'Institute for Cancer Prevention'),
(1440, 1116, 'en', 'name', 'Center for Biologics Evaluation and Research'),
(1441, 1117, 'no_lang_code', 'name', 'NuvOx Pharma (United States)'),
(1442, 1118, 'no_lang_code', 'name', 'NuroRestore (United States)'),
(1443, 1119, 'no_lang_code', 'name', 'Kingston Process Metallurgy (Canada)'),
(1444, 1120, 'no_lang_code', 'name', 'Kinexus Bioinformatics Corporation (Canada)'),
(1445, 1121, 'no_lang_code', 'name', 'Iogen Corporation'),
(1446, 1122, 'en', 'name', 'TRTech'),
(1447, 1123, 'no_lang_code', 'name', 'Pivotal Labs'),
(1448, 1124, 'no_lang_code', 'name', 'Artron Bioresearch (Canada)'),
(1449, 1125, 'no_lang_code', 'name', 'Applied Biological Materials (Canada)'),
(1450, 1126, 'no_lang_code', 'name', 'Spartan Bioscience (Canada)'),
(1451, 1127, 'no_lang_code', 'name', 'Boehringer Ingelheim (Canada)'),
(1452, 1128, 'no_lang_code', 'name', 'Bombardier (Canada)'),
(1453, 1129, 'fr', 'name', 'HƩma-QuƩbec'),
(1454, 1130, 'no_lang_code', 'name', 'Biorem Technologies (Canada)'),
(1455, 1131, 'no_lang_code', 'name', 'Novelis (Canada)'),
(1456, 1132, 'no_lang_code', 'name', 'PerkinElmer Biosignal'),
(1457, 1133, 'no_lang_code', 'name', 'E-One Moli Energy (Canada)'),
(1458, 1134, 'no_lang_code', 'name', 'Enerkem (Canada)'),
(1459, 1135, 'no_lang_code', 'name', 'Gastops (Canada)'),
(1460, 1136, 'no_lang_code', 'name', 'AUG Signals (Canada)'),
(1461, 1137, 'no_lang_code', 'name', 'Process Research Ortech (Canada)'),
(1462, 1138, 'no_lang_code', 'name', 'Neova Technologies Inc.'),
(1463, 1139, 'no_lang_code', 'name', 'Curtiss-Wright (Canada)'),
(1464, 1140, 'no_lang_code', 'name', 'Teleflex (Canada)'),
(1465, 1141, 'no_lang_code', 'name', 'Automotive Fuel Cell Cooperation (Canada)'),
(1466, 1142, 'no_lang_code', 'name', 'Baylis Medical (Canada)'),
(1467, 1143, 'no_lang_code', 'name', 'Bell Helicopter Textron (Canada)'),
(1468, 1144, 'no_lang_code', 'name', 'Lallemand (Canada)'),
(1469, 1145, 'no_lang_code', 'name', 'Ross Video (Canada)'),
(1470, 1146, 'no_lang_code', 'name', 'General Electric (Canada)'),
(1471, 1147, 'en', 'name', 'Huntsman Marine Science Centre'),
(1472, 1148, 'no_lang_code', 'name', 'Agropur cooperative'),
(1473, 1149, 'no_lang_code', 'name', 'Pyrogenesis (Canada)'),
(1474, 1150, 'no_lang_code', 'name', 'Gemite Group'),
(1475, 1151, 'no_lang_code', 'name', 'Neoleukin Therapeutics (Canada)'),
(1476, 1152, 'no_lang_code', 'name', 'XMG Studio (Canada)'),
(1477, 1153, 'no_lang_code', 'name', 'Lanxess (Canada)'),
(1478, 1154, 'no_lang_code', 'name', 'Prime Focus World'),
(1479, 1155, 'no_lang_code', 'name', 'Olivieri Foods'),
(1480, 1156, 'no_lang_code', 'name', 'DuPont (Canada)'),
(1481, 1157, 'en', 'name', 'St. Lawrence River Institute of Environmental Sciences'),
(1482, 1158, 'no_lang_code', 'name', 'Coanda Research and Development Corporation (Canada)'),
(1483, 1159, 'no_lang_code', 'name', 'Apption'),
(1484, 1160, 'en', 'name', 'PBR Laboratories'),
(1485, 1161, 'en', 'name', 'Canadian Mathematical Society'),
(1486, 1162, 'no_lang_code', 'name', 'Jennerex Biotherapeutics (Canada)'),
(1487, 1163, 'no_lang_code', 'name', 'Tangam Gaming Inc'),
(1488, 1164, 'no_lang_code', 'name', 'Guelph Chemical Labs'),
(1489, 1165, 'no_lang_code', 'name', '123 Certification (Canada)'),
(1490, 1166, 'no_lang_code', 'name', 'Performance Plants (Canada)'),
(1491, 1167, 'no_lang_code', 'name', 'Suez (Canada)'),
(1492, 1168, 'no_lang_code', 'name', 'BASF (Canada)'),
(1493, 1169, 'en', 'name', 'Canadian Foundation For The International Space University'),
(1494, 1170, 'no_lang_code', 'name', 'COM DEV International'),
(1495, 1171, 'no_lang_code', 'name', '3M (Canada)'),
(1496, 1172, 'no_lang_code', 'name', 'Canon (Canada)'),
(1497, 1173, 'no_lang_code', 'name', 'Tembec'),
(1498, 1174, 'fr', 'name', 'Produits forestiers RƩsolu'),
(1499, 1174, 'no_lang_code', 'name', 'Resolute Forest Products (Canada)'),
(1500, 1175, 'no_lang_code', 'name', 'Micronet (United States)'),
(1501, 1176, 'no_lang_code', 'name', 'CAE (Canada)'),
(1502, 1177, 'no_lang_code', 'name', 'Micralyne'),
(1503, 1178, 'no_lang_code', 'name', 'Barrick Gold (Canada)'),
(1504, 1179, 'fr', 'name', 'Institut Universitaire de GƩriatrie de MontrƩal'),
(1505, 1180, 'en', 'name', 'Rocky Mountain Biological Laboratory'),
(1506, 1181, 'en', 'name', 'National Institute of Statistical Sciences'),
(1507, 1182, 'en', 'name', 'Semiconductor Research Corporation'),
(1508, 1183, 'en', 'name', 'American Association of Physics Teachers'),
(1509, 1184, 'en', 'name', 'American Physical Society'),
(1510, 1184, 'fr', 'name', 'SociƩtƩ amƩricaine de physique'),
(1511, 1185, 'en', 'name', 'Organization For Tropical Studies'),
(1512, 1186, 'no_lang_code', 'name', 'SurModics (United States)'),
(1513, 1187, 'no_lang_code', 'name', 'Advanced Fuel Research (United States)'),
(1514, 1188, 'no_lang_code', 'name', 'WNET (United States)'),
(1515, 1189, 'no_lang_code', 'name', 'Materials and Electrochemical Research (United States)'),
(1516, 1190, 'en', 'name', 'Northeast Radio Observatory Corporation'),
(1517, 1191, 'en', 'name', 'American Bar Foundation'),
(1518, 1192, 'en', 'name', 'Wested'),
(1519, 1193, 'no_lang_code', 'name', 'Electrosynthesis Company (United States)'),
(1520, 1194, 'en', 'name', 'Truckee Meadows Community College'),
(1521, 1195, 'en', 'name', 'Aspen Center For Physics'),
(1522, 1195, 'fr', 'name', 'Centre pour la physique d''aspen'),
(1523, 1196, 'en', 'name', 'Chesapeake Research Consortium'),
(1524, 1197, 'en', 'name', 'Ecpi University'),
(1525, 1198, 'no_lang_code', 'name', 'First Point Scientific'),
(1526, 1199, 'no_lang_code', 'name', 'MPC Computers (United States)'),
(1527, 1200, 'en', 'name', 'Institute For Defense Analyses'),
(1528, 1200, 'es', 'name', 'Instituto de AnƔlisis de la Defensa'),
(1529, 1201, 'en', 'name', 'Space Science Institute'),
(1530, 1202, 'no_lang_code', 'name', 'McPhee Research (United States)'),
(1531, 1203, 'en', 'name', 'American Meteorological Society'),
(1532, 1204, 'en', 'name', 'American Geosciences Institute'),
(1533, 1205, 'en', 'name', 'Geological Society of America'),
(1534, 1206, 'no_lang_code', 'name', 'Materials Modification (United States)'),
(1535, 1207, 'en', 'name', 'Research Corporation of The University of Hawaii'),
(1536, 1208, 'en', 'name', 'University System of Georgia'),
(1537, 1209, 'en', 'name', 'Maricopa County Community College District'),
(1538, 1210, 'en', 'name', 'International Cooperative Administrative Support Services'),
(1539, 1211, 'en', 'name', 'Association for the Advancement of Artificial Intelligence'),
(1540, 1212, 'en', 'name', 'American Anthropological Association'),
(1541, 1213, 'en', 'name', 'Applied Technology Council'),
(1542, 1214, 'en', 'name', 'American Mathematical Society'),
(1543, 1214, 'es', 'name', 'Sociedad Estadounidense de MatemƔtica'),
(1544, 1215, 'en', 'name', 'American Geophysical Union'),
(1545, 1216, 'en', 'name', 'National Science Teachers Association'),
(1546, 1217, 'en', 'name', 'Triangle Coalition For Science and Technology Education'),
(1547, 1218, 'no_lang_code', 'name', 'Nanomaterials Research (United States)'),
(1548, 1219, 'en', 'name', 'Computing Research Association'),
(1549, 1220, 'en', 'name', 'American Society For Engineering Education'),
(1550, 1221, 'en', 'name', 'Quality Education for Minorities Network'),
(1551, 1222, 'en', 'name', 'Consortium For Mathematics & Its Applications'),
(1552, 1223, 'no_lang_code', 'name', 'Caisson Laboratories (United States)'),
(1553, 1224, 'en', 'name', 'Twin Cities Public Television'),
(1554, 1225, 'en', 'name', 'World Technology Evaluation Center'),
(1555, 1226, 'en', 'name', 'Conference Board Math Sciences'),
(1556, 1227, 'en', 'name', 'Rancho Santa Ana Botanic Garden'),
(1557, 1228, 'en', 'name', 'American Academy of Arts and Sciences'),
(1558, 1229, 'no_lang_code', 'name', 'Integrated Plant Genetics (United States)'),
(1559, 1230, 'en', 'name', 'Louisiana Board of Regents'),
(1560, 1231, 'en', 'name', 'Institute of Global Environment and Society'),
(1561, 1232, 'en', 'name', 'American Association of University Women'),
(1562, 1233, 'no_lang_code', 'name', 'INRAD (United States)'),
(1563, 1234, 'en', 'name', 'University of Massachusetts Donahue Institute'),
(1564, 1235, 'en', 'name', 'American Institute of Physics'),
(1565, 1236, 'en', 'name', 'Council of Chief State School Officers'),
(1566, 1237, 'en', 'name', 'Purdue Research Foundation'),
(1567, 1238, 'en', 'name', 'MRC University of Glasgow Centre for Virus Research'),
(1568, 1239, 'en', 'name', 'National Academy of Sciences of Belarus');
INSERT INTO `ror_settings` VALUES
(1569, 1239, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(1570, 1239, 'be', 'name', 'ŠŠ°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń навук Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(1571, 1240, 'en', 'name', 'National Institutes of Health Clinical Center'),
(1572, 1241, 'no_lang_code', 'name', 'Airbus (Germany)'),
(1573, 1242, 'en', 'name', 'Alabama Department of Mental Health'),
(1574, 1243, 'no_lang_code', 'name', 'Atos (Spain)'),
(1575, 1244, 'no_lang_code', 'name', 'Dalsa Corporation'),
(1576, 1245, 'en', 'name', 'District of Columbia Department of Health'),
(1577, 1246, 'en', 'name', 'Department of Human Services'),
(1578, 1247, 'en', 'name', 'Durham VA Medical Center'),
(1579, 1248, 'no_lang_code', 'name', 'Electrical Geodesics (United States)'),
(1580, 1249, 'no_lang_code', 'name', 'Honeywell (Canada)'),
(1581, 1250, 'no_lang_code', 'name', 'TIBCO Software (United States)'),
(1582, 1251, 'en', 'name', 'Institute of Occupational Medicine'),
(1583, 1252, 'en', 'name', 'Iowa City VA Health Care System'),
(1584, 1253, 'en', 'name', 'Oregon Social Learning Center'),
(1585, 1254, 'en', 'name', 'Philadelphia VA Medical Center'),
(1586, 1255, 'en', 'name', 'San Francisco Department of Public Health'),
(1587, 1256, 'en', 'name', 'Madrid Health Service'),
(1588, 1256, 'es', 'name', 'Servicio MadrileƱo de Salud'),
(1589, 1257, 'no_lang_code', 'name', 'Stantec (Canada)'),
(1590, 1258, 'en', 'name', 'VA Boston Healthcare System'),
(1591, 1259, 'en', 'name', 'San Francisco VA Medical Center'),
(1592, 1260, 'en', 'name', 'Burke Medical Research Institute'),
(1593, 1261, 'en', 'name', 'Chicago Department of Public Health'),
(1594, 1262, 'en', 'name', 'Colorado Department of Public Health and Environment'),
(1595, 1263, 'en', 'name', 'Delaware Department of Health and Social Services'),
(1596, 1264, 'en', 'name', 'Washington State Board of Education'),
(1597, 1265, 'en', 'name', 'Florida Department of Health'),
(1598, 1266, 'no_lang_code', 'name', 'Golder Associates (Canada)'),
(1599, 1267, 'en', 'name', 'IBM Research - Zurich'),
(1600, 1268, 'en', 'name', 'Mississippi Department of Mental Health'),
(1601, 1269, 'en', 'name', 'NC Department of Health and Human Services'),
(1602, 1270, 'fr', 'name', 'AcadƩmie new-yorkaise de mƩdecine'),
(1603, 1270, 'en', 'name', 'New York Academy of Medicine'),
(1604, 1271, 'en', 'name', 'Portland VA Medical Center'),
(1605, 1272, 'en', 'name', 'Republic of Palau Ministry of Health'),
(1606, 1273, 'en', 'name', 'Athens Information Technology'),
(1607, 1274, 'no_lang_code', 'name', 'Schlumberger (France)'),
(1608, 1275, 'en', 'name', 'Center for Information Technology'),
(1609, 1276, 'en', 'name', 'Dairy Farmers Of Canada'),
(1610, 1277, 'en', 'name', 'Louisiana State University System'),
(1611, 1278, 'en', 'name', 'Ministry of Natural Resources and Wildlife'),
(1612, 1278, 'fr', 'name', 'MinistĆØre de l''Ɖnergie et des Ressources naturelles'),
(1613, 1279, 'no_lang_code', 'name', 'Cameco (Canada)'),
(1614, 1280, 'no_lang_code', 'name', 'Friday Systems (United States)'),
(1615, 1281, 'en', 'name', 'The Keystone Center'),
(1616, 1282, 'en', 'name', 'Oregon National Primate Research Center'),
(1617, 1283, 'en', 'name', 'SRC'),
(1618, 1284, 'en', 'name', 'Honolulu Community College'),
(1619, 1285, 'es', 'name', 'Universidad de Houston-Downtown'),
(1620, 1285, 'en', 'name', 'University of Houston - Downtown'),
(1621, 1286, 'en', 'name', 'Montana Department of Public Health and Human Services'),
(1622, 1287, 'no_lang_code', 'name', 'Dow Chemical (Canada)'),
(1623, 1288, 'no_lang_code', 'name', 'ArcelorMittal (Canada)'),
(1624, 1289, 'nl', 'name', 'Kiwa'),
(1625, 1290, 'no_lang_code', 'name', 'Technical Research Associates (United States)'),
(1626, 1291, 'no_lang_code', 'name', 'INTRASOFT International (Luxembourg)'),
(1627, 1292, 'no_lang_code', 'name', 'Qi2'),
(1628, 1293, 'no_lang_code', 'name', 'SNC-Lavalin (Canada)'),
(1629, 1294, 'no_lang_code', 'name', 'Hydro One (Canada)'),
(1630, 1295, 'en', 'name', 'Agruicultural Research Institute'),
(1631, 1296, 'no_lang_code', 'name', 'Canadian Natural Resources'),
(1632, 1297, 'fr', 'name', 'MinistĆØre des Transports'),
(1633, 1298, 'en', 'name', 'Evanston Hospital'),
(1634, 1299, 'en', 'name', 'Canadian Dairy Network'),
(1635, 1300, 'en', 'name', 'LDS Hospital'),
(1636, 1301, 'en', 'name', 'UPMC Montefiore'),
(1637, 1302, 'fr', 'name', 'Institut d''Ɖconomie Rurale'),
(1638, 1303, 'no_lang_code', 'name', 'Encana (Canada)'),
(1639, 1304, 'no_lang_code', 'name', 'Weyerhauser (Canada)'),
(1640, 1305, 'no_lang_code', 'name', 'Nokia (Belgium)'),
(1641, 1306, 'no_lang_code', 'name', 'IBM (United States)'),
(1642, 1307, 'en', 'name', 'Southeastern Universities Research Association'),
(1643, 1308, 'no_lang_code', 'name', 'Western Forest Products'),
(1644, 1309, 'en', 'name', 'Agricultural Research Organization'),
(1645, 1309, 'he', 'name', 'מנהל ×”×ž×—×§×Ø החקלאי - ×ž×Ø×›×– וולקני'),
(1646, 1310, 'no_lang_code', 'name', 'Nimbus Landscape Materials (United States)'),
(1647, 1311, 'no_lang_code', 'name', 'Arthur D. Little (Czechia)'),
(1648, 1312, 'en', 'name', 'American Society of Mechanical Engineers'),
(1649, 1313, 'no_lang_code', 'name', 'Allied Technology (United States)'),
(1650, 1314, 'no_lang_code', 'name', 'MatƩriaux Blanchet'),
(1651, 1315, 'en', 'name', 'Gembloux Agro-Bio Tech'),
(1652, 1316, 'no_lang_code', 'name', 'PotashCorp (Canada)'),
(1653, 1317, 'en', 'name', 'Louisiana State University at Eunice'),
(1654, 1317, 'fr', 'name', 'UniversitĆ© d''Ɖtat de louisiane Ć  eunice'),
(1655, 1318, 'no_lang_code', 'name', 'Bridgepoint (United Kingdom)'),
(1656, 1319, 'en', 'name', 'Consortium of Universities for Research in Earthquake Engineering'),
(1657, 1320, 'en', 'name', 'Center for Interuniversity Research and Analysis on Organizations'),
(1658, 1321, 'no_lang_code', 'name', 'Agnico Eagle (Canada)'),
(1659, 1322, 'en', 'name', 'Central Institute for the Deaf'),
(1660, 1323, 'it', 'name', 'Fondazione Mario Negri Sud'),
(1661, 1323, 'en', 'name', 'Mario Negri Sud Foundation'),
(1662, 1324, 'en', 'name', 'Manitoba Pork Council'),
(1663, 1325, 'en', 'name', 'Ohio Cancer Research Associates'),
(1664, 1326, 'es', 'name', 'Asociación de Universidades Americanas'),
(1665, 1326, 'fr', 'name', 'Association des universitƩs amƩricaines'),
(1666, 1326, 'en', 'name', 'Association of American Universities'),
(1667, 1327, 'en', 'name', 'Egyptian Universities Network'),
(1668, 1327, 'ar', 'name', 'ؓبكة الجامعات Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(1669, 1328, 'no_lang_code', 'name', 'DELL (United States)'),
(1670, 1329, 'en', 'name', 'Museum Of Northern Arizona'),
(1671, 1330, 'en', 'name', 'Poultry Industry Council'),
(1672, 1331, 'en', 'name', 'University of Maryland Global Campus'),
(1673, 1332, 'no_lang_code', 'name', 'Revolution Analytics (United States)'),
(1674, 1333, 'no_lang_code', 'name', 'Semex'),
(1675, 1334, 'en', 'name', 'Oxford University Hospitals NHS Trust'),
(1676, 1335, 'en', 'name', 'Anyang Academy of Agricultural Sciences'),
(1677, 1335, 'zh', 'name', 'å®‰é˜³åø‚å†œäøšē§‘å­¦é™¢'),
(1678, 1336, 'en', 'name', 'Westmar University'),
(1679, 1337, 'en', 'name', 'Ghent University Hospital'),
(1680, 1337, 'nl', 'name', 'Universitair Ziekenhuis Gent'),
(1681, 1338, 'en', 'name', 'Shanghai Agrobiological Gene Center'),
(1682, 1338, 'zh', 'name', 'äøŠęµ·åø‚å†œäøšē”Ÿē‰©åŸŗå› äø­åæƒ'),
(1683, 1339, 'en', 'name', 'Institute of Dermatology & Venereology of the Yunnan Province'),
(1684, 1340, 'en', 'name', 'Northrop University'),
(1685, 1341, 'de', 'name', 'Institut Universitaire Kurt Bƶsch'),
(1686, 1342, 'en', 'name', 'Maternal and Child Health Care Hospital of Bao''an'),
(1687, 1342, 'zh', 'name', 'å®å®‰åŒŗå¦‡å¹¼äæå„é™¢'),
(1688, 1343, 'en', 'name', 'Institute of Agrobiological Sciences'),
(1689, 1343, 'ja', 'name', 'ē”Ÿē‰©ę©Ÿčƒ½åˆ©ē”Øē ”ē©¶éƒØé–€'),
(1690, 1344, 'en', 'name', 'National Aerospace University – Kharkiv Aviation Institute'),
(1691, 1344, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾'),
(1692, 1344, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аерокосмічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені М. Š„. Š–ŃƒŠŗŠ¾Š²ŃŃŒŠŗŠ¾Š³Š¾ Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ авіаційний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(1693, 1345, 'en', 'name', 'Chongqing Academy of Animal Science'),
(1694, 1345, 'zh', 'name', 'é‡åŗ†åø‚ē•œē‰§ē§‘å­¦é™¢'),
(1695, 1346, 'en', 'name', 'Heilongjiang Center for Tuberculosis Control and Prevention'),
(1696, 1347, 'en', 'name', 'National Center of Biomedical Analysis'),
(1697, 1347, 'zh', 'name', 'å›½å®¶ē”Ÿē‰©åŒ»å­¦åˆ†ęžäø­åæƒ'),
(1698, 1348, 'en', 'name', 'University Park Pathology Associates'),
(1699, 1349, 'en', 'name', 'The Fourth People''s Hospital'),
(1700, 1350, 'en', 'name', 'Fuzhou Dermatosis Prevention Hospital'),
(1701, 1350, 'zh', 'name', 'ē¦å·žåø‚ēš®č‚¤ē—…é˜²ę²»é™¢'),
(1702, 1351, 'en', 'name', 'Shanghai Skin Disease Hospital'),
(1703, 1351, 'zh', 'name', 'äøŠęµ·ēš®č‚¤ē—…åŒ»é™¢é•æå®åŒŗé—ØčÆŠéƒØ'),
(1704, 1352, 'en', 'name', 'Winona Medical Cosmetic Center'),
(1705, 1352, 'zh', 'name', 'č–‡čÆŗåØœēš®č‚¤åŒ»ē–—ē¾Žå®¹äø­åæƒ'),
(1706, 1353, 'en', 'name', 'National Center for Drug Screening'),
(1707, 1353, 'zh', 'name', 'å›½å®¶ę–°čÆē­›é€‰äø­åæƒ'),
(1708, 1354, 'en', 'name', 'Governor''s Institutes of Vermont'),
(1709, 1355, 'en', 'name', 'Golmud People''s Hospital'),
(1710, 1355, 'zh', 'name', 'ę ¼å°”ęœØåø‚äŗŗę°‘åŒ»é™¢'),
(1711, 1356, 'no_lang_code', 'name', 'Univax (United States)'),
(1712, 1357, 'en', 'name', 'Youjiang Medical College for Nationalities'),
(1713, 1357, 'zh', 'name', 'å³ę±Ÿę°‘ę—åŒ»å­¦é™¢'),
(1714, 1358, 'en', 'name', 'Anhui Provincial Center for Disease Control and Prevention'),
(1715, 1358, 'zh', 'name', 'å®‰å¾½ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(1716, 1359, 'en', 'name', 'Blood Center of Zhejiang Province'),
(1717, 1359, 'zh', 'name', 'ęµ™ę±Ÿēœč”€ę¶²äø­åæƒ'),
(1718, 1360, 'en', 'name', 'Hunan Cancer Hospital'),
(1719, 1361, 'en', 'name', 'Vladimir State University for the Humanities'),
(1720, 1361, 'ru', 'name', 'ВлаГимирский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1721, 1362, 'en', 'name', 'Tianjin Central Hospital of Gynecology Obstetrics'),
(1722, 1362, 'zh', 'name', 'å¤©ę“„åø‚äø­åæƒå¦‡äŗ§ē§‘åŒ»é™¢'),
(1723, 1363, 'en', 'name', 'Nizhny Novgorod State Technical University'),
(1724, 1363, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1725, 1364, 'en', 'name', 'Ural State University of Economics'),
(1726, 1364, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1727, 1365, 'en', 'name', 'National Animal Husbandry Service'),
(1728, 1365, 'zh', 'name', 'å…Øå›½ē•œē‰§ę€»ē«™'),
(1729, 1366, 'en', 'name', 'Ya''an Polytechnic College'),
(1730, 1366, 'zh', 'name', 'é›…å®‰čŒäøšęŠ€ęœÆå­¦é™¢'),
(1731, 1367, 'no_lang_code', 'name', 'Shaanxi Yulin Energy Group'),
(1732, 1368, 'en', 'name', 'Taishan Medical University'),
(1733, 1368, 'zh', 'name', 'ę³°å±±åŒ»å­¦é™¢'),
(1734, 1369, 'en', 'name', 'Anqing City Hospital'),
(1735, 1370, 'en', 'name', 'Lu''an First People''s Hospital'),
(1736, 1371, 'no_lang_code', 'name', 'Shanghai GenomePilot Technology (China)'),
(1737, 1371, 'zh', 'name', 'äøŠęµ·ä½°ēœŸē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(1738, 1372, 'en', 'name', 'Shanghai Changning Mental Health Center'),
(1739, 1372, 'zh', 'name', 'é•æå®åŒŗē²¾ē„žå«ē”Ÿäø­åæƒ'),
(1740, 1373, 'en', 'name', 'Guangdong Academy of Medical Sciences'),
(1741, 1374, 'en', 'name', 'Sichuan Academy of Medical Sciences & Sichuan Provincial People''s Hospital'),
(1742, 1374, 'zh', 'name', 'å››å·ēœäø­åŒ»čÆē§‘å­¦é™¢'),
(1743, 1375, 'en', 'name', 'Tianjin University of Traditional Chinese Medicine'),
(1744, 1375, 'zh', 'name', 'å¤©ę“„äø­åŒ»čÆå¤§å­¦'),
(1745, 1376, 'en', 'name', 'Guangxi Maternal and Child Health Hospital'),
(1746, 1376, 'zh', 'name', 'å¹æč„æå¦‡å¹¼äæå„é™¢'),
(1747, 1377, 'en', 'name', 'Hubei Polytechnic University'),
(1748, 1377, 'zh', 'name', 'ę¹–åŒ—ē†å·„å­¦é™¢'),
(1749, 1378, 'en', 'name', 'Wuhan Medical Center for Women and Children'),
(1750, 1379, 'en', 'name', 'Shanghai Institute of Hematology'),
(1751, 1379, 'zh', 'name', 'äøŠęµ·č”€ę¶²å­¦ē ”ē©¶ę‰€'),
(1752, 1380, 'en', 'name', 'University of Minnesota, Waseca'),
(1753, 1381, 'en', 'name', 'World Health Organization - Australia'),
(1754, 1382, 'en', 'name', 'Cooperative Research Centre for Polymers'),
(1755, 1383, 'no_lang_code', 'name', 'SMEC (Australia)'),
(1756, 1384, 'no_lang_code', 'name', 'Universal Hi-Tech Development'),
(1757, 1385, 'no_lang_code', 'name', 'Jordanian Universities Network (Jordan)'),
(1758, 1386, 'en', 'name', 'National Research University Higher School of Economics'),
(1759, 1386, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń школа ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(1760, 1386, 'ba', 'name', 'Юғары иҔтисаГ мәктәбе'),
(1761, 1387, 'en', 'name', 'Northern Health'),
(1762, 1388, 'en', 'name', 'SUNY Korea'),
(1763, 1388, 'ko', 'name', 'ķ•œźµ­ė‰“ģš•ģ£¼ė¦½ėŒ€ķ•™źµ'),
(1764, 1389, 'en', 'name', 'Mogilev State University of Food Technologies'),
(1765, 1389, 'be', 'name', 'ŠœŠ°Š³Ń–Š»Ń‘ŃžŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń…Š°Ń€Ń‡Š°Š²Š°Š½Š½Ń'),
(1766, 1390, 'en', 'name', 'University of Life Sciences in Poznań'),
(1767, 1390, 'pl', 'name', 'Uniwersytet Przyrodniczy w Poznaniu'),
(1768, 1391, 'en', 'name', 'West Australian Sleep Disorders Research Institute'),
(1769, 1392, 'en', 'name', 'Douglass Hanly Moir Pathology'),
(1770, 1393, 'en', 'name', 'University Heights Center'),
(1771, 1394, 'en', 'name', 'South Western Sydney Local Health District'),
(1772, 1395, 'fr', 'name', 'UniversitƩ FƩlix Houphouƫt-Boigny'),
(1773, 1396, 'en', 'name', 'University of Agriculture in Krakow'),
(1774, 1396, 'pl', 'name', 'Uniwersytet Rolniczy im. Hugona Kołłątaja w Krakowie'),
(1775, 1397, 'en', 'name', 'Association Of Atlantic Universities'),
(1776, 1398, 'en', 'name', 'Kuopio University Hospital'),
(1777, 1399, 'en', 'name', 'University Hospital Innsbruck'),
(1778, 1400, 'ro', 'name', 'Universitatea de Științe Agronomice și Medicină Veterinară din București'),
(1779, 1400, 'en', 'name', 'University of Agronomic Sciences and Veterinary Medicine of Bucharest'),
(1780, 1401, 'en', 'name', 'National Institute of Biological Sciences, Beijing'),
(1781, 1401, 'zh', 'name', 'åŒ—äŗ¬ē”Ÿå‘½ē§‘å­¦ē ”ē©¶ę‰€'),
(1782, 1402, 'en', 'name', 'University of Mississippi Medical Center'),
(1783, 1403, 'no_lang_code', 'name', 'Petro-Canada'),
(1784, 1404, 'no_lang_code', 'name', 'Nantong Tumor Hospital'),
(1785, 1404, 'zh', 'name', 'å—é€šåø‚č‚æē˜¤åŒ»é™¢'),
(1786, 1405, 'en', 'name', 'Shandong Pingyi Tianyu Museum of Natural History'),
(1787, 1405, 'zh', 'name', 'å±±äøœēœå¤©å®‡č‡Ŗē„¶åšē‰©é¦†'),
(1788, 1406, 'en', 'name', 'Yunnan Academy of Agricultural Sciences'),
(1789, 1406, 'zh', 'name', 'äŗ‘å—ēœå†œäøšē§‘å­¦é™¢'),
(1790, 1407, 'en', 'name', 'Center for High Pressure Science and Technology Advanced Research'),
(1791, 1407, 'zh', 'name', 'åŒ—äŗ¬é«˜åŽ‹ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(1792, 1408, 'en', 'name', 'Hangzhou Center for Disease Control and Prevention'),
(1793, 1408, 'zh', 'name', 'ę­å·žåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(1794, 1409, 'en', 'name', 'Guangzhou Medical University'),
(1795, 1409, 'zh', 'name', 'å¹æå·žåŒ»ē§‘å¤§å­¦'),
(1796, 1410, 'en', 'name', 'Shenzhen Third People’s Hospital'),
(1797, 1410, 'zh', 'name', 'ę·±åœ³åø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(1798, 1411, 'en', 'name', 'Tianjin Beichen Hospital'),
(1799, 1412, 'en', 'name', 'Beijing Computational Science Research Center'),
(1800, 1412, 'zh', 'name', 'åŒ—äŗ¬č®”ē®—ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(1801, 1413, 'en', 'name', 'Sichuan Provincial Academy of Natural Resource Sciences'),
(1802, 1413, 'zh', 'name', 'å››å·ēœč‡Ŗē„¶čµ„ęŗē§‘å­¦é™¢'),
(1803, 1414, 'en', 'name', 'Center for Tuberculosis Control of Guangdong Province'),
(1804, 1414, 'zh', 'name', 'å¹æäøœēœē»“ę øē—…ęŽ§åˆ¶'),
(1805, 1415, 'no_lang_code', 'name', 'Thermo Fisher Scientific (China)'),
(1806, 1416, 'no_lang_code', 'name', 'Novogene Bioinformatics Institute'),
(1807, 1417, 'en', 'name', 'Xinjiang Academy of Animal Science'),
(1808, 1417, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē•œē‰§ē§‘å­¦é™¢'),
(1809, 1418, 'en', 'name', 'Museum of Heilongjiang Province'),
(1810, 1418, 'zh', 'name', 'é»‘é¾™ę±Ÿēœåšē‰©é¦†'),
(1811, 1419, 'no_lang_code', 'name', 'Novartis (China)'),
(1812, 1419, 'zh', 'name', 'åŒ—äŗ¬čÆŗåŽåˆ¶čÆęœ‰é™å…¬åø'),
(1813, 1420, 'no_lang_code', 'name', 'GlaxoSmithKline (China)'),
(1814, 1421, 'en', 'name', 'Hunan Entry-Exit Inspection and Quarantine Bureau'),
(1815, 1422, 'en', 'name', 'DSO National Laboratories'),
(1816, 1423, 'en', 'name', 'Wayne Memorial Health System'),
(1817, 1424, 'en', 'name', 'National Skin Centre'),
(1818, 1425, 'en', 'name', 'Taipei City Hospital'),
(1819, 1425, 'zh', 'name', 'č‡ŗåŒ—åø‚ę”æåŗœ'),
(1820, 1426, 'en', 'name', 'Tainan Municipal Hospital'),
(1821, 1426, 'zh', 'name', 'å°å—åø‚ē«‹é†«é™¢'),
(1822, 1427, 'no_lang_code', 'name', 'Fountain Biopharma (Taiwan)'),
(1823, 1428, 'en', 'name', 'Tokyo University of Agriculture'),
(1824, 1428, 'ja', 'name', 'ę±äŗ¬č¾²ę„­å¤§å­¦'),
(1825, 1429, 'en', 'name', 'Japanese Red Cross Society, Japan'),
(1826, 1429, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē¤¾'),
(1827, 1430, 'no_lang_code', 'name', 'Rakuten (Japan)'),
(1828, 1430, 'ja', 'name', 'ę„½å¤©ę Ŗå¼ä¼šē¤¾'),
(1829, 1431, 'en', 'name', 'Meiji University of Integrative Medicine'),
(1830, 1431, 'ja', 'name', 'ę˜Žę²»å›½éš›åŒ»ē™‚å¤§å­¦'),
(1831, 1432, 'en', 'name', 'Meijo Hospital'),
(1832, 1432, 'ja', 'name', 'ååŸŽē—…é™¢'),
(1833, 1433, 'no_lang_code', 'name', 'Kitasato University'),
(1834, 1433, 'ja', 'name', '北里大学'),
(1835, 1434, 'en', 'name', 'Shizuoka Red Cross Hospital'),
(1836, 1434, 'ja', 'name', 'é™å²”čµ¤åå­—ē—…é™¢'),
(1837, 1435, 'en', 'name', 'Osaka Bio Headquarters'),
(1838, 1436, 'no_lang_code', 'name', 'Tokyo Metropolitan Ohtsuka Hospital'),
(1839, 1436, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å¤§å”šē—…é™¢'),
(1840, 1437, 'en', 'name', 'Tokushima Breast Care Clinic'),
(1841, 1437, 'ja', 'name', 'ćØćć—ć¾ćƒ–ćƒ¬ć‚¹ćƒˆć‚±ć‚¢ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(1842, 1438, 'en', 'name', 'Fukuoka Children''s Hospital and Medical Center for Infectious Diseases'),
(1843, 1438, 'ja', 'name', 'ē¦å²”åø‚ē«‹ć“ć©ć‚‚ē—…é™¢'),
(1844, 1439, 'no_lang_code', 'name', 'Peptidream (Japan)'),
(1845, 1439, 'ja', 'name', 'ćƒšćƒ—ćƒćƒ‰ćƒŖćƒ¼ćƒ '),
(1846, 1440, 'en', 'name', 'Niigata Prefectural Museum of History'),
(1847, 1440, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(1848, 1441, 'no_lang_code', 'name', 'Toranomon Hospital'),
(1849, 1441, 'ja', 'name', 'č™Žć®é–€ē—…é™¢'),
(1850, 1442, 'en', 'name', 'Chubu Rosai Hospital'),
(1851, 1442, 'ja', 'name', 'äø­éƒØć‚ć†ć•ć„ē—…é™¢'),
(1852, 1443, 'no_lang_code', 'name', 'Yokohama Rosai Hospital'),
(1853, 1443, 'ja', 'name', 'ęØŖęµœåŠ“ē½ē—…é™¢'),
(1854, 1444, 'no_lang_code', 'name', 'Takara (Japan)'),
(1855, 1444, 'ja', 'name', 'å®ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(1856, 1445, 'en', 'name', 'Nippon Medical School'),
(1857, 1445, 'ja', 'name', 'ę—„ęœ¬åŒ»ē§‘å¤§å­¦'),
(1858, 1446, 'en', 'name', 'Gunma Children''s Medical Center'),
(1859, 1446, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹å°å…åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1860, 1447, 'no_lang_code', 'name', 'Kyowa-kako (Japan)'),
(1861, 1448, 'no_lang_code', 'name', 'Tsuchiura Kyodo General Hospital'),
(1862, 1448, 'ja', 'name', 'ē·åˆē—…é™¢ åœŸęµ¦å”åŒē—…é™¢'),
(1863, 1449, 'en', 'name', 'National Institute for Agro-Environmental Sciences'),
(1864, 1449, 'ja', 'name', 'č¾²ę„­ē’°å¢ƒå¤‰å‹•ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(1865, 1450, 'no_lang_code', 'name', 'TagCyx Biotechnologies (Japan)'),
(1866, 1451, 'en', 'name', 'Tohoku Medical Megabank Organization'),
(1867, 1451, 'ja', 'name', 'ę±åŒ—ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ćƒ»ćƒ”ć‚¬ćƒćƒ³ć‚Æę©Ÿę§‹'),
(1868, 1452, 'no_lang_code', 'name', 'Foxconn (Japan)'),
(1869, 1453, 'no_lang_code', 'name', 'Organ Technologies (Japan)'),
(1870, 1453, 'ja', 'name', 'ć‚Ŗćƒ¼ć‚¬ćƒ³ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(1871, 1454, 'no_lang_code', 'name', 'Panasonic (Japan)'),
(1872, 1454, 'ja', 'name', 'ćƒ‘ćƒŠć‚½ćƒ‹ćƒƒć‚Æ'),
(1873, 1455, 'en', 'name', 'Kyoto Medical Center'),
(1874, 1455, 'ja', 'name', 'äŗ¬éƒ½åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1875, 1456, 'no_lang_code', 'name', 'BGI Group (Japan)'),
(1876, 1457, 'no_lang_code', 'name', 'HREM Research (Japan)'),
(1877, 1457, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ HREM'),
(1878, 1458, 'no_lang_code', 'name', 'Ecogenomics (Japan)'),
(1879, 1459, 'en', 'name', 'Wakasa History and Folklore Museum'),
(1880, 1459, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹ č‹„ē‹­ę­“å²åšē‰©é¤Ø'),
(1881, 1460, 'en', 'name', 'National Hospital Organization Mito Medical Center'),
(1882, 1460, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ę°“ęˆøåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1883, 1461, 'en', 'name', 'University of Miyazaki'),
(1884, 1461, 'ja', 'name', '宮哎大学'),
(1885, 1462, 'en', 'name', 'Seirei Social Welfare Community'),
(1886, 1463, 'en', 'name', 'JA Toride Medical Center'),
(1887, 1463, 'ja', 'name', 'JAćØć‚Šć§ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1888, 1464, 'no_lang_code', 'name', 'Tsukuba Memorial Hospital'),
(1889, 1464, 'ja', 'name', 'ē­‘ę³¢čØ˜åæµē—…é™¢'),
(1890, 1465, 'no_lang_code', 'name', 'Kaneka (Japan)'),
(1891, 1465, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ćƒć‚«'),
(1892, 1466, 'no_lang_code', 'name', 'Fujifilm (Japan)'),
(1893, 1466, 'ja', 'name', 'åÆŒå£«ćƒ•ć‚¤ćƒ«ćƒ ę Ŗå¼ä¼šē¤¾'),
(1894, 1467, 'en', 'name', 'Asian Institute of Gastroenterology'),
(1895, 1468, 'en', 'name', 'Dr. Mohan''s Diabetes Specialities Centre'),
(1896, 1469, 'en', 'name', 'Deenanath Mangeshkar Hospital and Research Center'),
(1897, 1469, 'mr', 'name', 'ą¤¦ą„€ą¤Øą¤¾ą¤Øą¤¾ą¤„ ą¤®ą¤‚ą¤—ą„‡ą¤¶ą¤•ą¤° ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(1898, 1470, 'en', 'name', 'Forest Department Sarawak'),
(1899, 1471, 'en', 'name', 'Wildlife Conservation Society Indonesia'),
(1900, 1472, 'no_lang_code', 'name', 'Theragen'),
(1901, 1473, 'en', 'name', 'Genome Research Foundation'),
(1902, 1474, 'en', 'name', 'Mohamed I University'),
(1903, 1474, 'fr', 'name', 'UniversitƩ Mohammed Ier'),
(1904, 1474, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ Ų§Ł„Ų£ŁˆŁ„'),
(1905, 1475, 'no_lang_code', 'name', 'JEOL (Japan)'),
(1906, 1475, 'ja', 'name', 'ę—„ęœ¬é›»å­'),
(1907, 1476, 'no_lang_code', 'name', 'Nongwoo Bio (South Korea)'),
(1908, 1477, 'en', 'name', 'Advanced Institute of Convergence Technology'),
(1909, 1477, 'ko', 'name', 'ģ°Øģ„øėŒ€ģœµķ•©źø°ģˆ ģ—°źµ¬ģ›'),
(1910, 1478, 'en', 'name', 'Myongji University'),
(1911, 1478, 'ko', 'name', 'ėŖ…ģ§€ėŒ€ķ•™źµ'),
(1912, 1479, 'no_lang_code', 'name', 'DNA Link (South Korea)'),
(1913, 1480, 'no_lang_code', 'name', 'Seeders (South Korea)'),
(1914, 1481, 'en', 'name', 'National Science Museum'),
(1915, 1482, 'no_lang_code', 'name', 'AnyGen (South Korea)'),
(1916, 1483, 'ko', 'name', '(주)ģøģ‹¤ė¦¬ģ½”ģ  '),
(1917, 1483, 'no_lang_code', 'name', 'Insilicogen (South Korea)'),
(1918, 1484, 'no_lang_code', 'name', 'Qurient (South Korea)'),
(1919, 1485, 'en', 'name', 'National Academy of Agricultural Science'),
(1920, 1485, 'ko', 'name', 'źµ­ė¦½ė†ģ—…ź³¼ķ•™ģ›'),
(1921, 1486, 'en', 'name', 'Korea Polar Research Institute'),
(1922, 1486, 'ko', 'name', 'ź·¹ģ§€ģ—°źµ¬ģ†Œ'),
(1923, 1487, 'no_lang_code', 'name', 'Adipogen (South Korea)'),
(1924, 1488, 'en', 'name', 'Academia Nacional Superior de Orquestra'),
(1925, 1489, 'pt', 'name', 'Fundação Conservatório Regional de Gaia'),
(1926, 1489, 'en', 'name', 'Gaia Regional Conservatory Foundation'),
(1927, 1490, 'pt', 'name', 'Escola Superior Gallaecia'),
(1928, 1490, 'en', 'name', 'Gallaecia Higher School'),
(1929, 1491, 'pt', 'name', 'Escola Superior de Educadores de Infância Maria Ulrich'),
(1930, 1492, 'pt', 'name', 'Fundação Ricardo do Espírito Santo Silva'),
(1931, 1493, 'pt', 'name', 'Escola Superior de Educação de Almeida Garrett'),
(1932, 1494, 'en', 'name', 'Institute of Higher Studies of Fafe'),
(1933, 1494, 'pt', 'name', 'Instituto de Estudos Superiores de Fafe LDA'),
(1934, 1495, 'pt', 'name', 'Instituto Superior de Ciências da Administração'),
(1935, 1496, 'pt', 'name', 'Instituto Superior de Gestão e Administração de Santarém'),
(1936, 1497, 'pt', 'name', 'Instituto Superior de Comunicação Empresarial'),
(1937, 1498, 'pt', 'name', 'Instituto Superior de Educação e Trabalho'),
(1938, 1499, 'pt', 'name', 'Instituto Superior de Educação e Ciências'),
(1939, 1500, 'pt', 'name', 'Instituto Superior de Espinho'),
(1940, 1501, 'pt', 'name', 'Instituto Superior de Ciências da Informação e da Administração'),
(1941, 1502, 'pt', 'name', 'Instituto Superior de Línguas e Administração'),
(1942, 1503, 'pt', 'name', 'Instituto Superior de Paços de Brandão'),
(1943, 1504, 'en', 'name', 'Higher Institute of Police Sciences and Homeland Security'),
(1944, 1504, 'pt', 'name', 'Instituto Superior de Ciências Policiais e Segurança Interna'),
(1945, 1505, 'pt', 'name', 'Escola Superior de Enfermagem Dr. José Timóteo Montalvão Machado'),
(1946, 1506, 'en', 'name', 'Institute of the Pupils of the Army'),
(1947, 1506, 'pt', 'name', 'Instituto dos Pupilos do ExƩrcito'),
(1948, 1507, 'en', 'name', 'Instituto Superior Bissaya Barreto'),
(1949, 1508, 'pt', 'name', 'Escola Superior de SaĆŗde Ribeiro Sanches'),
(1950, 1509, 'pt', 'name', 'Instituto Superior Manuel Teixeira Gomes'),
(1951, 1510, 'pt', 'name', 'Instituto Superior da Maia'),
(1952, 1511, 'en', 'name', 'Instituto Superior D. Dinis'),
(1953, 1512, 'pt', 'name', 'Escola Superior de Saúde do Alcoitão'),
(1954, 1513, 'pt', 'name', 'Instituto Superior Dom Afonso III'),
(1955, 1514, 'pt', 'name', 'Escola do Serviço de Saúde Militar'),
(1956, 1515, 'pt', 'name', 'Escola Superior de Enfermagem S. Francisco das Misericórdias'),
(1957, 1516, 'pt', 'name', 'Instituto Superior PolitƩcnico do Oeste'),
(1958, 1517, 'en', 'name', 'European University of Lisbon'),
(1959, 1517, 'pt', 'name', 'Universidade Europeia'),
(1960, 1518, 'pt', 'name', 'Instituto Superior de Novas ProfissƵes'),
(1961, 1519, 'pt', 'name', 'Escola Superior de Educação de Torres Novas'),
(1962, 1520, 'pt', 'name', 'IADE Superior de Marketing e Publicidade'),
(1963, 1521, 'en', 'name', 'Auburn University System'),
(1964, 1522, 'es', 'name', 'Universidad de Arkansas'),
(1965, 1522, 'en', 'name', 'University of Arkansas at Fayetteville'),
(1966, 1522, 'fr', 'name', 'UniversitƩ de l''arkansas'),
(1967, 1523, 'en', 'name', 'Washington University Medical Center'),
(1968, 1524, 'en', 'name', 'University of South Carolina System'),
(1969, 1525, 'en', 'name', 'Oregon University System'),
(1970, 1526, 'en', 'name', 'Southern Illinois University System'),
(1971, 1526, 'fr', 'name', 'UniversitƩ de l''illinois du sud'),
(1972, 1527, 'en', 'name', 'Southern University System'),
(1973, 1528, 'en', 'name', 'Central Police University'),
(1974, 1529, 'no_lang_code', 'name', 'Kinjo Gakuin University'),
(1975, 1529, 'ja', 'name', '金城学院大学'),
(1976, 1530, 'en', 'name', 'Central Taiwan University of Science and Technology'),
(1977, 1531, 'hr', 'name', 'Klinička bolnica Merkur'),
(1978, 1532, 'en', 'name', 'KLE University'),
(1979, 1533, 'en', 'name', 'Awadhesh Pratap Singh University'),
(1980, 1533, 'hi', 'name', 'ą¤…ą¤µą¤§ą„‡ą¤¶ ą¤Ŗą„ą¤°ą¤¤ą¤¾ą¤Ŗ सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1981, 1534, 'pt', 'name', 'Hospital de ClĆ­nicas Universidade Federal do ParanĆ”'),
(1982, 1535, 'en', 'name', 'Eye & ENT Hospital of Fudan University'),
(1983, 1536, 'es', 'name', 'Hospital General Universitario de Elche'),
(1984, 1537, 'es', 'name', 'Hospital General Universitario de Albacete'),
(1985, 1538, 'es', 'name', 'Hospital General Universitario de Ciudad Real'),
(1986, 1539, 'es', 'name', 'Hospital General Universitario Morales Meseguer'),
(1987, 1540, 'en', 'name', 'University of Minnesota Medical Center'),
(1988, 1541, 'en', 'name', 'Kohat University of Science and Technology'),
(1989, 1542, 'en', 'name', 'Kokushikan University'),
(1990, 1542, 'ja', 'name', 'å›½å£«čˆ˜å¤§å­¦'),
(1991, 1543, 'en', 'name', 'Acharya Nagarjuna University'),
(1992, 1543, 'te', 'name', 'ą°†ą°šą°¾ą°°ą±ą°Æ ą°Øą°¾ą°—ą°¾ą°°ą±ą°œą±ą°Ø ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(1993, 1544, 'en', 'name', 'Hospital of the University of Pennsylvania'),
(1994, 1545, 'en', 'name', 'Kongju National University'),
(1995, 1545, 'ko', 'name', 'ź³µģ£¼ėŒ€ķ•™źµ'),
(1996, 1546, 'en', 'name', 'Far Eastern State Medical University'),
(1997, 1546, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1998, 1547, 'en', 'name', 'University of Aden'),
(1999, 1547, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عدن'),
(2000, 1548, 'pt', 'name', 'Centro UniversitƔrio FiladƩlfia'),
(2001, 1549, 'es', 'name', 'Hospital Del Mar'),
(2002, 1550, 'en', 'name', 'Kumamoto Health Science University'),
(2003, 1550, 'ja', 'name', 'ē†Šęœ¬äæå„ē§‘å­¦å¤§å­¦'),
(2004, 1551, 'en', 'name', 'Kumamoto University Hospital'),
(2005, 1551, 'ja', 'name', 'ē†Šęœ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(2006, 1552, 'no_lang_code', 'name', 'Kumaun University'),
(2007, 1552, 'hi', 'name', 'ą¤•ą„ą¤®ą¤¾ą¤Šą¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2008, 1552, 'ta', 'name', 'ą®•ąÆą®®ą®¾ą®µąÆą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2009, 1553, 'en', 'name', 'Kun Shan University'),
(2010, 1554, 'en', 'name', 'Kunming University'),
(2011, 1554, 'zh', 'name', 'ę˜†ę˜Žå­¦é™¢'),
(2012, 1555, 'en', 'name', 'Kunsan National University'),
(2013, 1555, 'ko', 'name', 'źµ°ģ‚°ėŒ€ķ•™źµ'),
(2014, 1556, 'es', 'name', 'Hospital Universitario Son Dureta'),
(2015, 1557, 'es', 'name', 'Hospital Universitario HM Madrid'),
(2016, 1558, 'en', 'name', 'Union Hospital'),
(2017, 1559, 'en', 'name', 'Aga Khan University Hospital'),
(2018, 1560, 'en', 'name', 'Kursk State Medical University'),
(2019, 1560, 'ru', 'name', 'ŠšŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2020, 1561, 'en', 'name', 'Aga Khan University Hospital Nairobi'),
(2021, 1562, 'es', 'name', 'Hospital Universitario Austral'),
(2022, 1563, 'en', 'name', 'Kwangwoon University'),
(2023, 1563, 'ko', 'name', 'ź“‘ģš“ėŒ€ķ•™źµ'),
(2024, 1564, 'en', 'name', 'Kyonggi University'),
(2025, 1564, 'ko', 'name', 'ź²½źø°ėŒ€ķ•™źµ'),
(2026, 1565, 'en', 'name', 'Federal University of Mato Grosso'),
(2027, 1565, 'pt', 'name', 'Universidade Federal de Mato Grosso'),
(2028, 1566, 'en', 'name', 'Chang Jung Christian University'),
(2029, 1567, 'en', 'name', 'Changwon National University'),
(2030, 1567, 'ko', 'name', 'ģ°½ģ›ėŒ€ķ•™źµ'),
(2031, 1568, 'en', 'name', 'Kyoto University of Education'),
(2032, 1568, 'ja', 'name', 'äŗ¬éƒ½ę•™č‚²å¤§å­¦'),
(2033, 1569, 'en', 'name', 'AHEPA University Hospital'),
(2034, 1569, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼Ī¹Ī±ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΑΧΕΠΑ'),
(2035, 1570, 'en', 'name', 'Ahvaz Jundishapur University of Medical Sciences'),
(2036, 1570, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų¬Ł†ŲÆŪŒā€ŒŲ“Ų§Ł¾ŁˆŲ± Ų§Ł‡ŁˆŲ§Ų²'),
(2037, 1571, 'en', 'name', 'Kyungsung University'),
(2038, 1571, 'ko', 'name', 'ź²½ģ„±ėŒ€ķ•™źµ'),
(2039, 1572, 'en', 'name', 'Kyushu Dental University'),
(2040, 1572, 'ja', 'name', 'ä¹å·žę­Æē§‘å¤§å­¦'),
(2041, 1573, 'en', 'name', 'Federal University of Santa Maria'),
(2042, 1573, 'es', 'name', 'Universidad Federal de Santa MarĆ­a'),
(2043, 1573, 'pt', 'name', 'Universidade Federal de Santa Maria'),
(2044, 1574, 'en', 'name', 'Kyushu Sangyo University'),
(2045, 1574, 'ja', 'name', 'ä¹å·žē”£ę„­å¤§å­¦'),
(2046, 1575, 'es', 'name', 'Hospital Universitario de Fuenlabrada'),
(2047, 1576, 'en', 'name', 'Aichi University of Education'),
(2048, 1576, 'ja', 'name', 'ę„›ēŸ„ę•™č‚²å¤§å­¦'),
(2049, 1577, 'en', 'name', 'Doctor NegrĆ­n University Hospital'),
(2050, 1577, 'es', 'name', 'Hospital Universitario de Gran Canaria Doctor NegrĆ­n'),
(2051, 1578, 'en', 'name', 'Aintree University Hospital'),
(2052, 1579, 'pt', 'name', 'Hospital de Santa Maria'),
(2053, 1580, 'en', 'name', 'Akdeniz University Hospital'),
(2054, 1580, 'tr', 'name', 'Akdeniz Üniversitesi Hastanesi'),
(2055, 1581, 'en', 'name', 'Ladoke Akintola University of Technology Teaching Hospital'),
(2056, 1582, 'en', 'name', 'King George''s Medical University'),
(2057, 1582, 'hi', 'name', 'ą¤›ą¤¤ą„ą¤°ą¤Ŗą¤¤ą¤æ ą¤¶ą¤¾ą¤¹ą„‚ą¤œą„€ महाराज ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2058, 1583, 'en', 'name', 'Lagos State University'),
(2059, 1583, 'yo', 'name', 'YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ ƈkó'),
(2060, 1584, 'en', 'name', 'Cheng Shiu University'),
(2061, 1585, 'en', 'name', 'Lagos University Teaching Hospital'),
(2062, 1586, 'en', 'name', 'Federal University from Jequitinhonha and Mucuri''s Valleys'),
(2063, 1586, 'pt', 'name', 'Universidade Federal dos Vales do Jequitinhonha e Mucuri'),
(2064, 1587, 'en', 'name', 'Lanzhou University of Technology'),
(2065, 1587, 'zh', 'name', 'å…°å·žē†å·„å¤§å­¦'),
(2066, 1588, 'it', 'name', 'Azienda Ospedaliera Universitaria Federico II'),
(2067, 1588, 'en', 'name', 'Federico II University Hospital'),
(2068, 1589, 'en', 'name', 'Lanzhou University Second Hospital'),
(2069, 1590, 'ca', 'name', 'Hospital Universitari de Girona Doctor Josep Trueta'),
(2070, 1590, 'es', 'name', 'Residencia Sanitaria de la Seguridad Social de Gerona'),
(2071, 1591, 'en', 'name', 'Feng Chia University'),
(2072, 1592, 'en', 'name', 'Al al-Bayt University'),
(2073, 1592, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© آل Ų§Ł„ŲØŁŠŲŖ'),
(2074, 1593, 'en', 'name', 'Ferdowsi University of Mashhad'),
(2075, 1593, 'fa', 'name', 'دانؓگاه فردوسی مؓهد'),
(2076, 1594, 'en', 'name', 'Al-Arab Medical University'),
(2077, 1594, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© العرب Ų§Ł„Ų·ŲØŁŠŲ©'),
(2078, 1595, 'en', 'name', 'Chengdu University of Traditional Chinese Medicine'),
(2079, 1595, 'zh', 'name', 'ęˆéƒ½äø­åŒ»čÆå¤§å­¦'),
(2080, 1596, 'es', 'name', 'Hospital ClĆ­nico Universitario de Valencia'),
(2081, 1597, 'sv', 'name', 'AlbaNova'),
(2082, 1598, 'pt', 'name', 'Hospital UniversitƔrio EvangƩlico de Curitiba'),
(2083, 1599, 'en', 'name', 'Chia Nan University of Pharmacy and Science'),
(2084, 1600, 'es', 'name', 'Hospital Universitario Fundación Alcorcón'),
(2085, 1601, 'es', 'name', 'Hospital Universitario Infanta Cristina'),
(2086, 1602, 'es', 'name', 'Hospital Universitario Insular de Gran Canaria'),
(2087, 1603, 'en', 'name', 'Lebanese University'),
(2088, 1603, 'fr', 'name', 'UniversitƩ Libanaise'),
(2089, 1603, 'ar', 'name', 'الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ©'),
(2090, 1604, 'en', 'name', 'Children''s Hospital of Fudan University'),
(2091, 1605, 'en', 'name', 'Beijing Hua Xin Hospital'),
(2092, 1605, 'zh', 'name', 'åŒ—äŗ¬åŽäæ”åŒ»é™¢'),
(2093, 1606, 'en', 'name', 'University Hospital Leipzig'),
(2094, 1606, 'de', 'name', 'UniversitƤtsklinikum Leipzig'),
(2095, 1607, 'en', 'name', 'Aligarh Muslim University'),
(2096, 1607, 'fr', 'name', 'UniversitƩ musulmane d''aligarh'),
(2097, 1607, 'ur', 'name', 'جامعہ Ų¹Ł„ŪŒ گڑھ'),
(2098, 1607, 'hi', 'name', 'ą¤…ą¤²ą„€ą¤—ą¤¢ą¤¼ ą¤®ą„ą¤øą„ą¤²ą¤æą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2099, 1607, 'bn', 'name', 'আলিগঔ় মুসলিম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(2100, 1607, 'pa', 'name', 'ąØ…ąØ²ą©€ąØ—ą©œ ਮੁਸਲਿਮ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(2101, 1607, 'ta', 'name', 'ą®…ą®²ą®æą®•ą®¾ą®°ąÆ ą®®ąÆą®øąÆą®²ą®æą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2102, 1607, 'te', 'name', 'ą°…ą°²ą±€ą°˜ą°°ą± ą°®ą±ą°øą±ą°²ą°æą°‚ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(2103, 1607, 'kn', 'name', 'ą²…ą²²ą²æą²˜ą²°ą³ ą²®ą³ą²øą³ą²²ą²æą²®ą³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(2104, 1607, 'ml', 'name', 'ą“…ą“²ą“æą“—ą“¢ąµ ą“®ąµą“øąµą“²ą“æą“‚ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(2105, 1608, 'en', 'name', 'Sam Higginbottom Institute of Agriculture'),
(2106, 1608, 'hi', 'name', 'ą¤øą„ˆą¤® ą¤¹ą¤æą¤—ą„ą¤—ą¤æą¤Øą¤¬ą„‰ą¤Ÿą¤® ą¤•ą„ƒą¤·ą¤æ, ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(2107, 1608, 'ml', 'name', 'ą“…ą“²ą“¹ą“¬ą“¾ą“¦ąµ ą“…ą“—ąµą“°ą“æą“•ąµ¾ą“šąµą“šą“±ąµ½ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(2108, 1609, 'es', 'name', 'Hospital Universitario Reina SofĆ­a'),
(2109, 1609, 'en', 'name', 'Reina Sofia Hospital'),
(2110, 1610, 'es', 'name', 'Hospital Universitario de San Vicente Fundación'),
(2111, 1611, 'en', 'name', 'Ambrose Alli University'),
(2112, 1611, 'yo', 'name', 'YunifƔsƭtƬ Ambrose Alli'),
(2113, 1612, 'en', 'name', 'Children''s Hospital of Zhejiang University'),
(2114, 1613, 'es', 'name', 'Hospital Universitario Severo Ochoa'),
(2115, 1614, 'en', 'name', 'Amirkabir University of Technology'),
(2116, 1614, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ł…ŪŒŲ±Ś©ŲØŪŒŲ±'),
(2117, 1615, 'fr', 'name', 'Centre Hospitalier Universitaire Brugmann'),
(2118, 1616, 'pt', 'name', 'Centro UniversitÔrio São Camilo'),
(2119, 1617, 'fr', 'name', 'Centre Hospitalier Universitaire de Treichville'),
(2120, 1617, 'en', 'name', 'University Hospital Medical Center at Treichville'),
(2121, 1618, 'fr', 'name', 'Centre Hospitalier Universitaire Henri-Mondor'),
(2122, 1619, 'en', 'name', 'Anhui Agricultural University'),
(2123, 1619, 'zh', 'name', 'å®‰å¾½å†œäøšå¤§å­¦'),
(2124, 1620, 'fr', 'name', 'Centre mƩdical universitaire de loma linda'),
(2125, 1620, 'en', 'name', 'Loma Linda University Medical Center'),
(2126, 1621, 'en', 'name', 'Loma Linda University Children''s Hospital'),
(2127, 1622, 'en', 'name', 'Anhui Provincial Hospital'),
(2128, 1623, 'en', 'name', 'Fooyin University'),
(2129, 1624, 'en', 'name', 'Foundation University Medical College'),
(2130, 1625, 'en', 'name', 'Central China Normal University'),
(2131, 1625, 'zh', 'name', 'åŽäø­åøˆčŒƒå¤§å­¦'),
(2132, 1626, 'en', 'name', 'LAC+USC Medical Center'),
(2133, 1627, 'en', 'name', 'Huizhou University'),
(2134, 1627, 'zh', 'name', 'ęƒ å·žå­¦é™¢'),
(2135, 1628, 'en', 'name', 'Anqing Normal University'),
(2136, 1628, 'zh', 'name', 'å®‰åŗ†åøˆčŒƒå­¦é™¢'),
(2137, 1629, 'en', 'name', 'Aomori University'),
(2138, 1629, 'ja', 'name', 'é’ę£®å¤§å­¦'),
(2139, 1630, 'en', 'name', 'Aomori University of Health and Welfare'),
(2140, 1630, 'ja', 'name', 'é’ę£®ēœŒē«‹äæå„å¤§å­¦'),
(2141, 1631, 'en', 'name', 'Arabian Gulf University'),
(2142, 1631, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ų§Ł„Ų¹Ų±ŲØŁŠ'),
(2143, 1631, 'fa', 'name', 'دانؓگاه Ų®Ł„ŪŒŲ¬ عربی'),
(2144, 1632, 'en', 'name', 'Arak University'),
(2145, 1632, 'fa', 'name', 'دانؓگاه Ų§Ų±Ų§Ś©'),
(2146, 1633, 'en', 'name', 'Ardabil University of Medical Sciences'),
(2147, 1633, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§Ų±ŲÆŲØŪŒŁ„'),
(2148, 1634, 'en', 'name', 'Hunan University of Technology'),
(2149, 1635, 'no_lang_code', 'name', 'Hungkuang University'),
(2150, 1636, 'en', 'name', 'Assiut University Hospitals'),
(2151, 1637, 'es', 'name', 'Hospital Universitari Arnau de Vilanova'),
(2152, 1638, 'en', 'name', 'I-Shou University'),
(2153, 1639, 'en', 'name', 'Loyola University Medical Center'),
(2154, 1640, 'pt', 'name', 'Centro UniversitƔrio de Belo Horizonte'),
(2155, 1641, 'en', 'name', 'Asahi University'),
(2156, 1641, 'ja', 'name', 'ęœę—„å¤§å­¦'),
(2157, 1642, 'es', 'name', 'Hospital Regional Universitario de MƔlaga'),
(2158, 1643, 'en', 'name', 'Islamic Azad University, Arak'),
(2159, 1643, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ų±Ų§Ś©'),
(2160, 1644, 'en', 'name', 'Azerbaijan Medical University'),
(2161, 1644, 'az', 'name', 'Azərbaycan Tibb Universiteti'),
(2162, 1644, 'ru', 'name', 'АзербайГжанский меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2163, 1645, 'en', 'name', 'Lincoln University - Missouri'),
(2164, 1646, 'it', 'name', 'Azienda Ospedaliera Universitaria Integrata Verona'),
(2165, 1647, 'it', 'name', 'Azienda Ospedaliera Universitaria Senese'),
(2166, 1648, 'en', 'name', 'China Jiliang University'),
(2167, 1649, 'en', 'name', 'Ibaraki Prefectural University of Health Sciences'),
(2168, 1649, 'ja', 'name', 'čŒØåŸŽēœŒē«‹åŒ»ē™‚å¤§å­¦'),
(2169, 1650, 'en', 'name', 'Magee-Womens Hospital'),
(2170, 1651, 'it', 'name', 'Azienda Ospedaliero Universitaria Ospedali Riuniti'),
(2171, 1652, 'en', 'name', 'Fourth Affiliated Hospital of Harbin Medical University'),
(2172, 1652, 'zh', 'name', 'å“ˆå°”ę»ØåŒ»ē§‘å¤§å­¦ē¬¬å››é™„å±žåŒ»é™¢'),
(2173, 1653, 'it', 'name', 'Ospedale Santa Maria della Misericordia di Udine'),
(2174, 1654, 'pt', 'name', 'Universidade Ibirapuera'),
(2175, 1655, 'no_lang_code', 'name', 'Maharaja Sayajirao University of Baroda'),
(2176, 1655, 'gu', 'name', 'મહારાજા ąŖøąŖÆąŖ¾ąŖœą«€ąŖ°ąŖ¾ąŖµ ąŖµąŖæąŖ¶ą«ąŖµąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖ²ąŖÆ'),
(2177, 1655, 'ta', 'name', 'ą®®ą®•ą®¾ą®°ą®¾ą®œą®¾ ą®šą®¾ą®Æą®¾ą®œą®æą®°ą®¾ą®µąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2178, 1656, 'en', 'name', 'Babol University of Medical Sciences'),
(2179, 1656, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŲ§ŲØŁ„'),
(2180, 1657, 'en', 'name', 'Babol Noshirvani University of Technology'),
(2181, 1657, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ł†ŁˆŲ“ŪŒŲ±ŁˆŲ§Ł†ŪŒ ŲØŲ§ŲØŁ„'),
(2182, 1658, 'en', 'name', 'Fukuoka University'),
(2183, 1658, 'ja', 'name', 'ē¦å²”å¤§å­¦'),
(2184, 1659, 'en', 'name', 'University of Baghdad'),
(2185, 1659, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŲŗŲÆŲ§ŲÆ'),
(2186, 1660, 'en', 'name', 'Center for Forensic Mental Health, Chiba University'),
(2187, 1660, 'ja', 'name', 'åƒč‘‰å¤§å­¦ ē¤¾ä¼šē²¾ē„žäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(2188, 1661, 'en', 'name', 'Banaras Hindu University'),
(2189, 1661, 'fr', 'name', 'Université hindoue de bénarès'),
(2190, 1661, 'hi', 'name', 'ą¤•ą¤¾ą¤¶ą„€ ą¤¹ą¤æą¤Øą„ą¤¦ą„‚ ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2191, 1661, 'bn', 'name', 'কাশী ą¦¹ą¦æą¦Øą§ą¦¦ą§ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(2192, 1661, 'gu', 'name', 'બનારસ હિંદુ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(2193, 1661, 'ta', 'name', 'பனாரசு ą®‡ą®ØąÆą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2194, 1661, 'te', 'name', 'ą°¬ą±†ą°Øą°¾ą°°ą°øą± హిందూ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(2195, 1661, 'kn', 'name', 'ą²¬ą²Øą²¾ą²°ą²øą³ ಹಿಂದೂ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(2196, 1661, 'ml', 'name', 'ą“¬ą“Øą“¾ą“±ą“øąµ ą“¹ą“æą“Øąµą“¦ąµ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(2197, 1662, 'en', 'name', 'China Medical University Hospital'),
(2198, 1663, 'en', 'name', 'Lutheran University of Brazil'),
(2199, 1663, 'es', 'name', 'Universidad Luterana de Brasil'),
(2200, 1663, 'pt', 'name', 'Universidade Luterana do Brasil'),
(2201, 1664, 'en', 'name', 'Baoji University of Arts and Sciences'),
(2202, 1664, 'zh', 'name', 'å®éø”ę–‡ē†å­¦é™¢'),
(2203, 1665, 'en', 'name', 'Lynn University'),
(2204, 1666, 'en', 'name', 'Baqiyatallah University of Medical Sciences'),
(2205, 1666, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŁ‚ŪŒŲ©Ų§Ł„Ł„Ł‡'),
(2206, 1667, 'en', 'name', 'China University of Political Science and Law'),
(2207, 1667, 'zh', 'name', '中国政法大学'),
(2208, 1668, 'no_lang_code', 'name', 'Barkatullah University'),
(2209, 1669, 'en', 'name', 'Chinese Culture University'),
(2210, 1669, 'zh', 'name', 'äø­åœ‹ę–‡åŒ–å¤§å­ø'),
(2211, 1670, 'en', 'name', 'Hyogo University of Teacher Education'),
(2212, 1670, 'ja', 'name', '兵庫教育大学'),
(2213, 1671, 'en', 'name', 'Imam Hossein University'),
(2214, 1671, 'fa', 'name', 'دانؓگاه Ų§Ł…Ų§Ł… Ų­Ų³ŪŒŁ†'),
(2215, 1672, 'en', 'name', 'Bashkir State Medical University'),
(2216, 1672, 'ru', 'name', 'Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2217, 1673, 'en', 'name', 'Imo State University Teaching Hospital'),
(2218, 1674, 'en', 'name', 'Mae Fah Luang University'),
(2219, 1674, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąø”ą¹ˆąøŸą¹‰ąø²ąø«ąø„ąø§ąø‡'),
(2220, 1675, 'en', 'name', 'Mahatma Phule Krishi Vidyapeeth'),
(2221, 1676, 'en', 'name', 'University Hospital Magdeburg'),
(2222, 1676, 'de', 'name', 'UniversitƤtsklinikum Magdeburg'),
(2223, 1677, 'en', 'name', 'University of Teacher Education Fukuoka'),
(2224, 1677, 'ja', 'name', 'ē¦å²”ę•™č‚²å¤§å­¦'),
(2225, 1678, 'en', 'name', 'Başkent University Hospital'),
(2226, 1679, 'en', 'name', 'Fukuoka Women''s University'),
(2227, 1679, 'ja', 'name', 'ē¦å²”å„³å­å¤§å­¦'),
(2228, 1680, 'en', 'name', 'Graz University Hospital'),
(2229, 1680, 'de', 'name', 'Univ. Klinikum Graz'),
(2230, 1681, 'en', 'name', 'Beijing Anzhen Hospital'),
(2231, 1681, 'zh', 'name', 'åŒ—äŗ¬åø‚åæƒč‚ŗč”€ē®”ē–¾ē—…ē ”ē©¶ę‰€'),
(2232, 1682, 'en', 'name', 'Matsuyama University'),
(2233, 1682, 'ja', 'name', 'ę¾å±±å¤§å­¦'),
(2234, 1683, 'en', 'name', 'Beijing Sport University'),
(2235, 1683, 'zh', 'name', 'åŒ—äŗ¬ä½“č‚²å¤§å­¦'),
(2236, 1684, 'en', 'name', 'Beijing Technology and Business University'),
(2237, 1684, 'zh', 'name', 'åŒ—äŗ¬å·„å•†å¤§å­¦'),
(2238, 1685, 'en', 'name', 'Shimane University'),
(2239, 1685, 'ja', 'name', '島根大学'),
(2240, 1686, 'en', 'name', 'Mazandaran University of Medical Sciences'),
(2241, 1686, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی مازندران'),
(2242, 1687, 'en', 'name', 'King Chulalongkorn Memorial Hospital'),
(2243, 1687, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøˆąøøąø¬ąø²ąø„ąø‡ąøąø£ąø“ą¹Œ'),
(2244, 1688, 'en', 'name', 'Chung Hwa University of Medical Technology'),
(2245, 1688, 'zh', 'name', 'äø­čÆé†«äŗ‹ē§‘ęŠ€å¤§å­ø'),
(2246, 1689, 'en', 'name', 'McGill University and GƩnome QuƩbec Innovation Centre'),
(2247, 1690, 'en', 'name', 'Gentofte Hospital'),
(2248, 1691, 'en', 'name', 'Inner Mongolia University for Nationalities'),
(2249, 1692, 'en', 'name', 'Chung Yuan Christian University'),
(2250, 1693, 'en', 'name', 'American University of Beirut Medical Center'),
(2251, 1694, 'en', 'name', 'Chung Hua University'),
(2252, 1695, 'en', 'name', 'McMaster University Medical Centre'),
(2253, 1696, 'en', 'name', 'Benha University'),
(2254, 1696, 'fr', 'name', 'UniversitƩ de Banha'),
(2255, 1696, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بنها'),
(2256, 1697, 'en', 'name', 'Korea National University of Transportation'),
(2257, 1697, 'ko', 'name', 'ķ•œźµ­źµķ†µėŒ€ķ•™źµ'),
(2258, 1698, 'en', 'name', 'MedStar Georgetown University Hospital'),
(2259, 1699, 'en', 'name', 'Chuvash State University'),
(2260, 1699, 'ru', 'name', 'Чувашский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. Š. Š£Š»ŃŒŃŠ½Š¾Š²Š°'),
(2261, 1700, 'en', 'name', 'Georgia College & State University'),
(2262, 1701, 'en', 'name', 'Bhavnagar University'),
(2263, 1702, 'en', 'name', 'University Centre of Legal Medicine'),
(2264, 1703, 'en', 'name', 'Gifu Pharmaceutical University'),
(2265, 1703, 'ja', 'name', 'å²é˜œč–¬ē§‘å¤§å­¦'),
(2266, 1704, 'en', 'name', 'University of Birjand'),
(2267, 1704, 'fa', 'name', 'دانؓگاه ŲØŪŒŲ±Ų¬Ł†ŲÆ'),
(2268, 1705, 'en', 'name', 'Birjand University of Medical Sciences'),
(2269, 1705, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŪŒŲ±Ų¬Ł†ŲÆ'),
(2270, 1706, 'en', 'name', 'Glasgow Royal Infirmary'),
(2271, 1707, 'pt', 'name', 'University Gama Filho'),
(2272, 1708, 'en', 'name', 'Glostrup Hospital'),
(2273, 1709, 'en', 'name', 'Integral University'),
(2274, 1709, 'fr', 'name', 'UniversitƩ intƩgrale de lucknow'),
(2275, 1709, 'hi', 'name', 'ą¤‡ą¤‚ą¤Ÿą„€ą¤—ą„ą¤°ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2276, 1710, 'en', 'name', 'University of Toledo Medical Center'),
(2277, 1711, 'en', 'name', 'International University of Health and Welfare'),
(2278, 1711, 'ja', 'name', 'å›½éš›åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(2279, 1712, 'en', 'name', 'Gangneung–Wonju National University'),
(2280, 1712, 'ko', 'name', 'ź°•ė¦‰ģ›ģ£¼ėŒ€ķ•™źµ'),
(2281, 1713, 'en', 'name', 'Gansu Agricultural University'),
(2282, 1713, 'zh', 'name', 'ē”˜č‚ƒå†œäøšå¤§å­¦'),
(2283, 1714, 'en', 'name', 'University of Benghazi'),
(2284, 1714, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŲŗŲ§Ų²ŁŠ'),
(2285, 1715, 'en', 'name', 'Gomal University'),
(2286, 1715, 'ur', 'name', 'جامعہ ŚÆŁˆŁ…Ł„'),
(2287, 1716, 'en', 'name', 'Isfahan University of Technology'),
(2288, 1716, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ اصفهان'),
(2289, 1717, 'no_lang_code', 'name', 'Ishinomaki Senshu University'),
(2290, 1717, 'ja', 'name', 'ēŸ³å·»å°‚äæ®å¤§å­¦'),
(2291, 1718, 'en', 'name', 'Islamic University'),
(2292, 1718, 'bn', 'name', 'ইসলামী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(2293, 1719, 'en', 'name', 'Gorgan University of Agricultural Sciences and Natural Resources'),
(2294, 1719, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… کؓاورزی و منابع طبیعی گرگان'),
(2295, 1720, 'en', 'name', 'Meikai University'),
(2296, 1720, 'ja', 'name', 'ę˜Žęµ·å¤§å­¦'),
(2297, 1721, 'en', 'name', 'Islamic Azad University, Karaj'),
(2298, 1721, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کرج'),
(2299, 1722, 'en', 'name', 'Istanbul Bilim University'),
(2300, 1722, 'tr', 'name', 'İstanbul Bilim Üniversitesi'),
(2301, 1723, 'en', 'name', 'Children''s Hospital Mansoura University'),
(2302, 1724, 'en', 'name', 'Mercy University Hospital'),
(2303, 1725, 'en', 'name', 'Methodist University Hospital'),
(2304, 1726, 'en', 'name', 'Metropolitan State University'),
(2305, 1727, 'en', 'name', 'Iwate University'),
(2306, 1727, 'ja', 'name', '岩手大学'),
(2307, 1728, 'fr', 'name', 'HƓpital Broussais'),
(2308, 1729, 'en', 'name', 'University Hospitals Geneva Medical Center'),
(2309, 1730, 'en', 'name', 'Jaipur National University'),
(2310, 1731, 'en', 'name', 'Misr International University'),
(2311, 1731, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ± Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(2312, 1732, 'en', 'name', 'Miyagi University of Education'),
(2313, 1732, 'ja', 'name', 'å®®åŸŽę•™č‚²å¤§å­¦'),
(2314, 1733, 'en', 'name', 'James Cook University Hospital'),
(2315, 1734, 'en', 'name', 'James Paget University Hospital'),
(2316, 1735, 'en', 'name', 'Mokpo National University'),
(2317, 1735, 'ko', 'name', 'ėŖ©ķ¬ėŒ€ķ•™źµ'),
(2318, 1736, 'no_lang_code', 'name', 'Jamia Hamdard'),
(2319, 1737, 'en', 'name', 'Mokwon University'),
(2320, 1737, 'ko', 'name', 'ėŖ©ģ›ėŒ€ķ•™źµ'),
(2321, 1738, 'en', 'name', 'Buckinghamshire New University'),
(2322, 1738, 'cy', 'name', 'Prifysgol Newydd Swydd Buckingham'),
(2323, 1739, 'no_lang_code', 'name', 'Bundelkhand University'),
(2324, 1740, 'en', 'name', 'Tzu Chi University'),
(2325, 1740, 'zh', 'name', 'ę…ˆęæŸå¤§å­ø'),
(2326, 1741, 'en', 'name', 'Japan Women''s University'),
(2327, 1741, 'ja', 'name', 'ę—„ęœ¬å„³å­å¤§å­¦'),
(2328, 1742, 'en', 'name', 'Buskerud University College'),
(2329, 1743, 'es', 'name', 'Complejo Hospitalario Universitario de Albacete'),
(2330, 1743, 'en', 'name', 'Hospital General Universitario de Albacete'),
(2331, 1744, 'en', 'name', 'George Washington University Hospital'),
(2332, 1745, 'en', 'name', 'Jeonju University'),
(2333, 1745, 'ko', 'name', 'ģ „ģ£¼ėŒ€ķ•™źµ'),
(2334, 1746, 'en', 'name', 'Guangdong University of Technology'),
(2335, 1746, 'zh', 'name', '广东巄业大学'),
(2336, 1747, 'en', 'name', 'California Baptist University'),
(2337, 1748, 'en', 'name', 'University Hospital Complex Of Vigo'),
(2338, 1749, 'en', 'name', 'Nanning Normal University'),
(2339, 1749, 'zh', 'name', 'å—å®åøˆčŒƒå¤§å­¦'),
(2340, 1750, 'en', 'name', 'Jiangsu Normal University'),
(2341, 1750, 'zh', 'name', 'ę±Ÿč‹åøˆčŒƒå¤§å­¦'),
(2342, 1751, 'en', 'name', 'Jiangxi Agricultural University');
INSERT INTO `ror_settings` VALUES
(2343, 1751, 'zh', 'name', 'ę±Ÿč„æå†œäøšå¤§å­¦'),
(2344, 1752, 'pt', 'name', 'Guarulhos University'),
(2345, 1753, 'en', 'name', 'Nagasaki International University'),
(2346, 1753, 'ja', 'name', '長哎国際大学'),
(2347, 1754, 'en', 'name', 'University of Guilan'),
(2348, 1754, 'fa', 'name', 'دانؓگاه ŚÆŪŒŁ„Ų§Ł†'),
(2349, 1755, 'en', 'name', 'Guilan University of Medical Sciences'),
(2350, 1755, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŚÆŪŒŁ„Ų§Ł†'),
(2351, 1756, 'en', 'name', 'Gujarat Ayurved University'),
(2352, 1756, 'hi', 'name', 'ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2353, 1756, 'gu', 'name', 'ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖ†ąŖÆą«ąŖ°ą«ąŖµą«‡ąŖ¦ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(2354, 1757, 'en', 'name', 'Gulbarga University'),
(2355, 1757, 'hi', 'name', 'ą¤—ą„ą¤²ą¤¬ą¤°ą„ą¤—ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2356, 1757, 'ta', 'name', 'ą®•ąÆą®²ąÆą®Ŗą®°ąÆą®•ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2357, 1757, 'te', 'name', 'ą°—ą±ą°²ą±ą°¬ą°°ą±ą°—ą°¾ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(2358, 1757, 'kn', 'name', 'ą²—ą³ą²²ą³ą²¬ą²°ą³ą²—ą²¾ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(2359, 1758, 'en', 'name', 'Nagoya City University Hospital'),
(2360, 1758, 'ja', 'name', 'åå¤å±‹åø‚ē«‹å¤§å­¦ē—…é™¢'),
(2361, 1759, 'en', 'name', 'Coombe Women & Infants University Hospital'),
(2362, 1759, 'ga', 'name', 'Ospidéal Ollscoile Ban agus NaíonÔn an Chúim'),
(2363, 1760, 'en', 'name', 'Cooper University Hospital'),
(2364, 1761, 'en', 'name', 'Cooper Medical School of Rowan University'),
(2365, 1762, 'en', 'name', 'Jikei University School of Medicine'),
(2366, 1762, 'ja', 'name', 'ę±äŗ¬ę…ˆęµä¼šåŒ»ē§‘å¤§å­¦'),
(2367, 1763, 'en', 'name', 'Herlev Hospital'),
(2368, 1764, 'en', 'name', 'Jimma University'),
(2369, 1765, 'en', 'name', 'Tokyo Medical University Hachioji Medical Center'),
(2370, 1765, 'ja', 'name', 'ę±äŗ¬åŒ»ē§‘å¤§å­¦å…«ēŽ‹å­åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2371, 1766, 'en', 'name', 'Jinnah University for Women'),
(2372, 1766, 'ur', 'name', 'جناح ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ†'),
(2373, 1767, 'en', 'name', 'Cancer Hospital of Shantou University Medical College'),
(2374, 1767, 'zh', 'name', 'ę±•å¤“å¤§å­¦åŒ»å­¦é™¢é™„å±žč‚æē˜¤åŒ»é™¢'),
(2375, 1768, 'en', 'name', 'Tianjin Medical University Cancer Institute and Hospital'),
(2376, 1768, 'zh', 'name', 'å¤©ę“„åŒ»ē§‘å¤§å­¦č‚æē˜¤åŒ»é™¢'),
(2377, 1769, 'en', 'name', 'Hacettepe University Hospital'),
(2378, 1770, 'en', 'name', 'Capella University'),
(2379, 1771, 'en', 'name', 'University Clinic of Traumatology'),
(2380, 1772, 'en', 'name', 'Emory University Hospital Midtown'),
(2381, 1773, 'en', 'name', 'MetroHealth Medical Center'),
(2382, 1774, 'pt', 'name', 'Universidade Cruzeiro do Sul'),
(2383, 1775, 'de', 'name', 'UniversitƤtsklinikum des Saarlandes'),
(2384, 1776, 'en', 'name', 'Chaudhary Sarwan Kumar Himachal Pradesh Krishi Vishvavidyalaya'),
(2385, 1777, 'en', 'name', 'Johns Hopkins Bayview Medical Center'),
(2386, 1778, 'no_lang_code', 'name', 'Jordan Hospital'),
(2387, 1778, 'ar', 'name', 'مستؓفى الأردن'),
(2388, 1779, 'en', 'name', 'Jos University Teaching Hospital'),
(2389, 1780, 'en', 'name', 'Daejeon University'),
(2390, 1780, 'ko', 'name', 'ėŒ€ģ „ėŒ€ķ•™źµ'),
(2391, 1781, 'en', 'name', 'Hamamatsu University'),
(2392, 1781, 'ja', 'name', 'ęµœę¾å¤§å­¦'),
(2393, 1782, 'en', 'name', 'Catholic University of the Maule'),
(2394, 1782, 'es', 'name', 'Universidad Católica del Maule'),
(2395, 1783, 'en', 'name', 'Catholic University of Pelotas'),
(2396, 1783, 'pt', 'name', 'Universidade Católica de Pelotas'),
(2397, 1784, 'en', 'name', 'Hankyong National University'),
(2398, 1784, 'ko', 'name', 'ķ•œź²½ėŒ€ķ•™źµ'),
(2399, 1785, 'es', 'name', 'Hospital de León'),
(2400, 1786, 'en', 'name', 'Hannam University'),
(2401, 1786, 'ko', 'name', 'ķ•œė‚ØėŒ€ķ•™źµ'),
(2402, 1787, 'en', 'name', 'Damghan University'),
(2403, 1787, 'fa', 'name', 'دانؓگاه دامغان'),
(2404, 1788, 'en', 'name', 'K.N.Toosi University of Technology'),
(2405, 1788, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų®ŁˆŲ§Ų¬Ł‡ Ł†ŲµŪŒŲ±Ų§Ł„ŲÆŪŒŁ† طوسی'),
(2406, 1789, 'en', 'name', 'Hanseo University'),
(2407, 1790, 'en', 'name', 'Kagawa Nutrition University'),
(2408, 1790, 'ja', 'name', 'å„³å­ę „é¤Šå¤§å­¦'),
(2409, 1791, 'en', 'name', 'Harper University Hospital'),
(2410, 1792, 'en', 'name', 'Kanazawa Medical University'),
(2411, 1792, 'ja', 'name', 'é‡‘ę²¢åŒ»ē§‘å¤§å­¦'),
(2412, 1793, 'en', 'name', 'Nambu University'),
(2413, 1794, 'en', 'name', 'Kanchi Mamunivar Centre for Post Graduate Studies'),
(2414, 1795, 'no_lang_code', 'name', 'Nanchang Hangkong University'),
(2415, 1795, 'zh', 'name', 'å—ę˜ŒčˆŖē©ŗå¤§å­¦'),
(2416, 1796, 'en', 'name', 'Hawler Medical University'),
(2417, 1796, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‡ŁˆŁ„ŁŠŲ± Ų§Ł„Ų·ŲØŁŠŲ©'),
(2418, 1797, 'en', 'name', 'Kansai University'),
(2419, 1797, 'ja', 'name', '関脿大学'),
(2420, 1798, 'en', 'name', 'Detroit Receiving Hospital'),
(2421, 1799, 'no_lang_code', 'name', 'Kanto Gakuin University'),
(2422, 1799, 'ja', 'name', 'é–¢ę±å­¦é™¢å¤§å­¦'),
(2423, 1800, 'en', 'name', 'Kaohsiung Medical University'),
(2424, 1801, 'en', 'name', 'Health Sciences University of Hokkaido'),
(2425, 1801, 'ja', 'name', 'åŒ—ęµ·é“åŒ»ē™‚å¤§å­¦'),
(2426, 1802, 'en', 'name', 'Hebei Normal University of Science and Technology'),
(2427, 1802, 'zh', 'name', 'ę²³åŒ—ē§‘ęŠ€åøˆčŒƒå­¦é™¢'),
(2428, 1803, 'no_lang_code', 'name', 'Naresuan University'),
(2429, 1803, 'th', 'name', 'ดหาวณทยาคัยนเรศวร'),
(2430, 1804, 'en', 'name', 'Naruto University of Education'),
(2431, 1804, 'ja', 'name', '鳓門教育大学'),
(2432, 1805, 'en', 'name', 'Nassau University Medical Center'),
(2433, 1806, 'en', 'name', 'National Sun Yat-sen University'),
(2434, 1807, 'en', 'name', 'National Changhua University of Education'),
(2435, 1807, 'zh', 'name', 'åœ‹ē«‹å½°åŒ–åø«ēÆ„å¤§å­ø'),
(2436, 1808, 'en', 'name', 'National Cheng Kung University Hospital'),
(2437, 1809, 'en', 'name', 'Dominican University'),
(2438, 1810, 'en', 'name', 'National Chiayi University'),
(2439, 1810, 'zh', 'name', 'åœ‹ē«‹å˜‰ē¾©å¤§å­ø'),
(2440, 1811, 'en', 'name', 'Dong-Eui University'),
(2441, 1811, 'ko', 'name', 'ė™ģ˜ėŒ€ķ•™źµ'),
(2442, 1812, 'en', 'name', 'Dongduk Women''s University'),
(2443, 1812, 'ko', 'name', 'ė™ė•ģ—¬ģžėŒ€ķ•™źµ'),
(2444, 1813, 'en', 'name', 'Kassala University'),
(2445, 1813, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁƒŲ³Ł„Ų§'),
(2446, 1814, 'en', 'name', 'National Hsinchu University of Education'),
(2447, 1815, 'en', 'name', 'National Ilan University'),
(2448, 1815, 'zh', 'name', 'åœ‹ē«‹å®œč˜­å¤§å­ø'),
(2449, 1816, 'en', 'name', 'Dongseo University'),
(2450, 1816, 'ko', 'name', 'ė™ģ„œėŒ€ķ•™źµ'),
(2451, 1817, 'en', 'name', 'Joint Institute for Laboratory Astrophysics'),
(2452, 1818, 'en', 'name', 'Dongzhimen Hospital Affiliated to Beijing University of Chinese Medicine'),
(2453, 1818, 'zh', 'name', 'åŒ—äŗ¬äø­åŒ»čÆå¤§å­¦äøœē›“é—ØåŒ»é™¢'),
(2454, 1819, 'en', 'name', 'Mie University Hospital'),
(2455, 1819, 'ja', 'name', 'äø‰é‡å¤§å­¦ē—…é™¢'),
(2456, 1820, 'en', 'name', 'Daegu University'),
(2457, 1820, 'ko', 'name', 'ėŒ€źµ¬ėŒ€ķ•™źµ'),
(2458, 1821, 'en', 'name', 'Kawasaki University of Medical Welfare'),
(2459, 1821, 'ja', 'name', 'å·å“ŽåŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(2460, 1822, 'en', 'name', 'Dr. Ram Manohar Lohia Avadh University'),
(2461, 1822, 'hi', 'name', 'ą¤”ą„‰ राम ą¤®ą¤Øą„‹ą¤¹ą¤° ą¤²ą„‹ą¤¹ą¤æą¤Æą¤¾ अवध ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2462, 1823, 'en', 'name', 'National Taiwan Normal University'),
(2463, 1824, 'en', 'name', 'Keimyung University'),
(2464, 1824, 'ko', 'name', 'ź³„ėŖ…ėŒ€ķ•™źµ'),
(2465, 1825, 'en', 'name', 'National Taiwan Sport University'),
(2466, 1826, 'en', 'name', 'National Taiwan University Hospital'),
(2467, 1827, 'en', 'name', 'Keio University Hospital'),
(2468, 1827, 'ja', 'name', '慶應義唾大学病院'),
(2469, 1828, 'en', 'name', 'Hengyang Normal University'),
(2470, 1829, 'en', 'name', 'National United University'),
(2471, 1830, 'en', 'name', 'National University Hospital'),
(2472, 1831, 'en', 'name', 'National University of Kaohsiung'),
(2473, 1832, 'en', 'name', 'Durban University of Technology'),
(2474, 1832, 'zu', 'name', 'Inyuvesi yasethekwini yezobuchwepheshe'),
(2475, 1833, 'en', 'name', 'National University of San Luis'),
(2476, 1833, 'es', 'name', 'Universidad Nacional de San Luis'),
(2477, 1834, 'en', 'name', 'Kibi International University'),
(2478, 1834, 'ja', 'name', '吉備国際大学'),
(2479, 1835, 'en', 'name', 'King Abdul Aziz University Hospital'),
(2480, 1836, 'en', 'name', 'National Yunlin University of Science and Technology'),
(2481, 1837, 'en', 'name', 'King Edward Medical University'),
(2482, 1837, 'ur', 'name', 'کنگ ایڈورڈ Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(2483, 1838, 'en', 'name', 'King Fahd Hospital of the University'),
(2484, 1838, 'ar', 'name', 'مستؓفى Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„'),
(2485, 1839, 'en', 'name', 'Himachal Pradesh University'),
(2486, 1840, 'en', 'name', 'Himeji Dokkyo University'),
(2487, 1840, 'ja', 'name', 'å§«č·ÆēØå”å¤§å­¦'),
(2488, 1841, 'en', 'name', 'National Taipei University of Nursing and Health Science'),
(2489, 1841, 'zh', 'name', 'åœ‹ē«‹č‡ŗåŒ—č­·ē†å„åŗ·å¤§å­ø'),
(2490, 1842, 'en', 'name', 'Clinical Emergency Hospital Bucharest'),
(2491, 1842, 'ro', 'name', 'Spitalul Clinic de Urgenta Bucuresti'),
(2492, 1843, 'sv', 'name', 'Danderyds sjukhus'),
(2493, 1844, 'en', 'name', 'Prefectural University of Hiroshima'),
(2494, 1844, 'ja', 'name', 'ēœŒē«‹åŗƒå³¶å¤§å­¦'),
(2495, 1845, 'en', 'name', 'Woodruff Health Sciences Center'),
(2496, 1846, 'en', 'name', 'Erasmus Hospital'),
(2497, 1846, 'nl', 'name', 'Erasmus Ziekenhuis'),
(2498, 1846, 'fr', 'name', 'HĆ“pital Ɖrasme'),
(2499, 1847, 'tr', 'name', 'Dicle Üniversitesi Hastaneleri'),
(2500, 1848, 'no_lang_code', 'name', 'Hitotsubashi University'),
(2501, 1848, 'ja', 'name', '一橋大学'),
(2502, 1849, 'en', 'name', 'Hemwati Nandan Bahuguna Garhwal University'),
(2503, 1849, 'hi', 'name', 'गढ़वाल ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2504, 1850, 'en', 'name', 'Emory University Hospital'),
(2505, 1851, 'tr', 'name', 'Dokuz Eylül Üniversitesi Hastanesi'),
(2506, 1852, 'no_lang_code', 'name', 'Hongik University'),
(2507, 1852, 'ko', 'name', 'ķ™ģµėŒ€ķ•™źµ'),
(2508, 1853, 'es', 'name', 'Universidad del Cauca'),
(2509, 1853, 'en', 'name', 'University of Cauca'),
(2510, 1854, 'es', 'name', 'Universidad del Desarrollo'),
(2511, 1855, 'es', 'name', 'Universidad del Norte'),
(2512, 1856, 'tr', 'name', 'Ege Üniversitesi Tıp Fakültesi Hastanesi'),
(2513, 1857, 'en', 'name', 'Ningxia Medical University'),
(2514, 1857, 'zh', 'name', 'å®å¤åŒ»ē§‘å¤§å­¦'),
(2515, 1858, 'en', 'name', 'Nippon Sport Science University'),
(2516, 1858, 'ja', 'name', 'ę—„ęœ¬ä½“č‚²å¤§å­¦'),
(2517, 1859, 'fr', 'name', 'HƓpital d''Hautepierre'),
(2518, 1860, 'en', 'name', 'Metropolitan University of Educational Sciences'),
(2519, 1860, 'es', 'name', 'Universidad Metropolitana de Ciencias de la Educación'),
(2520, 1861, 'fr', 'name', 'HƓpital Universitaire Des Enfants Reine Fabiola'),
(2521, 1861, 'en', 'name', 'Queen Fabiola Children''s University Hospital'),
(2522, 1862, 'hr', 'name', 'Klinički Bolnički Centar Rijeka'),
(2523, 1863, 'fr', 'name', 'HƓpital Universitaire Dupuytren'),
(2524, 1864, 'en', 'name', 'National University of Asuncion'),
(2525, 1864, 'es', 'name', 'Universidad Nacional de Asunción'),
(2526, 1865, 'en', 'name', 'Rivers State University'),
(2527, 1866, 'en', 'name', 'Robert Wood Johnson University Hospital'),
(2528, 1867, 'en', 'name', 'North Eastern Hill University'),
(2529, 1867, 'ur', 'name', 'نارتھ ایسٹ ہل ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(2530, 1868, 'en', 'name', 'Rocky Mountain University of Health Professions'),
(2531, 1869, 'en', 'name', 'National University of Comahue'),
(2532, 1869, 'es', 'name', 'Universidad Nacional del Comahue'),
(2533, 1870, 'en', 'name', 'Hoseo University'),
(2534, 1870, 'ko', 'name', 'ķ˜øģ„œėŒ€ķ•™źµ'),
(2535, 1871, 'es', 'name', 'Universidad Nacional Experimental Francisco de Miranda'),
(2536, 1872, 'en', 'name', 'Ross University School of Veterinary Medicine'),
(2537, 1873, 'es', 'name', 'Hospital ClĆ­nico de la Universidad de Chile'),
(2538, 1874, 'es', 'name', 'Hospital Clínico de la Universidad Católica'),
(2539, 1875, 'pt', 'name', 'Pontifícia Universidade Católica de GoiÔs'),
(2540, 1875, 'fr', 'name', 'UniversitƩ pontificale catholique de goiƔs'),
(2541, 1876, 'en', 'name', 'Catholic University of Santos'),
(2542, 1876, 'pt', 'name', 'Universidade Católica de Santos'),
(2543, 1877, 'pt', 'name', 'Universidade Cidade de SĆ£o Paulo'),
(2544, 1878, 'en', 'name', 'Tatung University'),
(2545, 1878, 'zh', 'name', '大同大學'),
(2546, 1879, 'en', 'name', 'Royal University Hospital'),
(2547, 1880, 'en', 'name', 'NHS Tayside'),
(2548, 1881, 'en', 'name', 'Tbilisi State Medical University'),
(2549, 1881, 'hy', 'name', 'Ō¹Õ¢Õ«Õ¬Õ«Õ½Õ«Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ¢ÕŖÕ·ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(2550, 1881, 'ka', 'name', 'įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(2551, 1882, 'pt', 'name', 'Universidade de Franca'),
(2552, 1883, 'pt', 'name', 'Universidade de Mogi das Cruzes'),
(2553, 1883, 'en', 'name', 'University of Mogi das Cruzes'),
(2554, 1884, 'pt', 'name', 'Universidade de Ribeirão Preto'),
(2555, 1884, 'en', 'name', 'University of Ribeirão Preto'),
(2556, 1885, 'pt', 'name', 'Universidade de Santo Amaro'),
(2557, 1886, 'pt', 'name', 'Universidade de TaubatƩ'),
(2558, 1886, 'en', 'name', 'University of TaubatƩ'),
(2559, 1887, 'en', 'name', 'Notre Dame Seishin University'),
(2560, 1887, 'ja', 'name', 'ćƒŽćƒ¼ćƒˆćƒ«ćƒ€ćƒ ęø…åæƒå„³å­å¤§å­¦'),
(2561, 1888, 'pt', 'name', 'Universidade do Oeste de Santa Catarina'),
(2562, 1889, 'pt', 'name', 'Universidade do Oeste Paulista'),
(2563, 1889, 'en', 'name', 'University of Western SĆ£o Paulo'),
(2564, 1890, 'pt', 'name', 'Universidade Sagrado Coração'),
(2565, 1891, 'pt', 'name', 'Universidade do Sul de Santa Catarina'),
(2566, 1892, 'no_lang_code', 'name', 'EstƔcio (Brazil)'),
(2567, 1893, 'en', 'name', 'Teikyo University Hospital'),
(2568, 1893, 'ja', 'name', 'åøäŗ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(2569, 1894, 'en', 'name', 'Oakwood University'),
(2570, 1895, 'en', 'name', 'Obstetrics and Gynecology Hospital of Fudan University'),
(2571, 1895, 'zh', 'name', 'å¤ę—¦å¤§å­¦é™„å±žå¦‡äŗ§ē§‘åŒ»é™¢'),
(2572, 1896, 'en', 'name', 'Sri Venkateswara University'),
(2573, 1896, 'ur', 'name', 'جامعہ سری ŁˆŪŒŁ†Ś©Ł¹ŪŒŲ“ŁˆŲ±Ų§'),
(2574, 1896, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤µą„‡ą¤‚ą¤•ą¤Ÿą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2575, 1896, 'ta', 'name', 'ą®šą®æą®±ąÆ€ ą®µąÆ†ą®™ąÆą®•ą®ŸąÆ‡ą®šąÆą®µą®°ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2576, 1896, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°µą±‡ą°‚ą°•ą°Ÿą±‡ą°¶ą±ą°µą°° ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(2577, 1897, 'en', 'name', 'University Cancer Center Hamburg'),
(2578, 1897, 'de', 'name', 'UniversitƤres Cancer Center Hamburg'),
(2579, 1898, 'pt', 'name', 'Universidade Estadual de CiĆŖncias da SaĆŗde de Alagoas'),
(2580, 1899, 'en', 'name', 'October 6 University'),
(2581, 1899, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© السادس من أكتوبر'),
(2582, 1900, 'pt', 'name', 'Universidade Estadual do Centro-Oeste'),
(2583, 1901, 'en', 'name', 'The Ohio State University Wexner Medical Center'),
(2584, 1902, 'en', 'name', 'Southwest Bahia State University'),
(2585, 1902, 'es', 'name', 'Universidad Estatal del Sudoeste de BahĆ­a'),
(2586, 1902, 'pt', 'name', 'Universidade Estadual do Sudoeste da Bahia'),
(2587, 1903, 'en', 'name', 'Oita University'),
(2588, 1903, 'ja', 'name', '大分大学'),
(2589, 1904, 'en', 'name', 'Oita University Hospital'),
(2590, 1904, 'ja', 'name', 'å¤§åˆ†å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(2591, 1905, 'en', 'name', 'Okayama Prefectural University'),
(2592, 1905, 'ja', 'name', 'å²”å±±ēœŒē«‹å¤§å­¦'),
(2593, 1906, 'de', 'name', 'Kinderspital Zürich'),
(2594, 1906, 'en', 'name', 'University Children''s Hospital Zurich'),
(2595, 1907, 'en', 'name', 'Olabisi Onabanjo University Teaching Hospital'),
(2596, 1908, 'en', 'name', 'University Children’s Hospital Bern'),
(2597, 1908, 'de', 'name', 'UniversitƤtskinderklinik Bern'),
(2598, 1909, 'sv', 'name', 'Akademiska sjukhuset'),
(2599, 1909, 'en', 'name', 'Uppsala University Hospital'),
(2600, 1910, 'en', 'name', 'University Children''s Hospital, Belgrade'),
(2601, 1910, 'sr', 'name', 'Univerzitetska dečja klinika u Beogradu'),
(2602, 1911, 'fr', 'name', 'HƓpital Sahloul'),
(2603, 1912, 'no_lang_code', 'name', 'Sahmyook University'),
(2604, 1912, 'ko', 'name', 'ģ‚¼ģœ”ėŒ€ķ•™źµ'),
(2605, 1913, 'en', 'name', 'Saint Louis University Hospital'),
(2606, 1914, 'en', 'name', 'Saint Peter''s University Hospital'),
(2607, 1915, 'en', 'name', 'Odisha University of Agriculture and Technology'),
(2608, 1915, 'ne', 'name', 'उऔिसा ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2609, 1916, 'en', 'name', 'Temple University Hospital'),
(2610, 1917, 'en', 'name', 'Saitama International Medical Center'),
(2611, 1917, 'ja', 'name', 'åŸ¼ēŽ‰åŒ»ē§‘å¤§å­¦å›½éš›åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2612, 1918, 'en', 'name', 'Osaka Dental University'),
(2613, 1918, 'ja', 'name', 'å¤§é˜Ŗę­Æē§‘å¤§å­¦'),
(2614, 1919, 'no_lang_code', 'name', 'Osaka Kyoiku University'),
(2615, 1919, 'ja', 'name', 'å¤§é˜Ŗę•™č‚²å¤§å­¦'),
(2616, 1920, 'en', 'name', 'Samuel Merritt University'),
(2617, 1921, 'en', 'name', 'Federal Rural University of Rio de Janeiro'),
(2618, 1921, 'pt', 'name', 'Universidade Federal Rural do Rio de Janeiro'),
(2619, 1922, 'en', 'name', 'Texas A&M University at Qatar'),
(2620, 1922, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© تكساس أي اند Ų„Ł…'),
(2621, 1923, 'no_lang_code', 'name', 'Osaka Ohtani University'),
(2622, 1923, 'ja', 'name', '大阪大谷大学'),
(2623, 1924, 'en', 'name', 'Osaka University of Health and Sport Sciences'),
(2624, 1924, 'ja', 'name', 'å¤§é˜Ŗä½“č‚²å¤§å­¦'),
(2625, 1925, 'en', 'name', 'Positive University'),
(2626, 1925, 'pt', 'name', 'Universidade Positivo'),
(2627, 1926, 'en', 'name', 'Mackenzie Presbyterian University'),
(2628, 1926, 'pt', 'name', 'Universidade Presbiteriana Mackenzie'),
(2629, 1927, 'pt', 'name', 'Universidade Regional do Cariri'),
(2630, 1928, 'en', 'name', 'Teikyo University Chiba Medical Center'),
(2631, 1928, 'ja', 'name', 'åøäŗ¬å¤§å­¦ć”ć°ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2632, 1929, 'pt', 'name', 'Universidade Santa Úrsula'),
(2633, 1930, 'pt', 'name', 'Universidade SĆ£o Francisco'),
(2634, 1930, 'en', 'name', 'University of San Francisco'),
(2635, 1931, 'pt', 'name', 'Universidade Veiga de Almeida'),
(2636, 1932, 'hr', 'name', 'Klinički bolnički centar Osijek'),
(2637, 1933, 'en', 'name', 'University Clinical Center of Kosovo'),
(2638, 1934, 'no_lang_code', 'name', 'Sangji University'),
(2639, 1934, 'ko', 'name', 'ģƒģ§€ėŒ€ķ•™źµ'),
(2640, 1935, 'hr', 'name', 'SveučiliŔna klinička bolnica Mostar'),
(2641, 1935, 'en', 'name', 'University Clinical Hospital Mostar'),
(2642, 1936, 'en', 'name', 'Saratov State Medical University'),
(2643, 1936, 'ru', 'name', 'Даратовский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2644, 1937, 'en', 'name', 'Osun State University'),
(2645, 1938, 'en', 'name', 'Sathyabama Institute of Science and Technology'),
(2646, 1938, 'ta', 'name', 'ą®šą®¤ąÆą®Æą®Ŗą®¾ą®®ą®¾ ą®Ŗā€Œą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2647, 1938, 'te', 'name', 'ą°øą°¤ą±ą°Æą°­ą°¾ą°® ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(2648, 1939, 'en', 'name', 'Saurashtra University'),
(2649, 1940, 'en', 'name', 'Thammasat University Hospital'),
(2650, 1940, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø˜ąø£ąø£ąø”ąøØąø²ąøŖąø•ąø£ą¹Œą¹€ąø‰ąø„ąø“ąø”ąøžąø£ąø°ą¹€ąøąøµąø¢ąø£ąø•ąø“'),
(2651, 1941, 'en', 'name', 'University College Hospital, Ibadan'),
(2652, 1942, 'en', 'name', 'Pai Chai University'),
(2653, 1942, 'ko', 'name', 'ė°°ģž¬ėŒ€ķ•™źµ'),
(2654, 1943, 'tr', 'name', 'Pamukkale Üniversitesi Hastaneleri'),
(2655, 1944, 'en', 'name', 'Federal Teaching Hospital Abakaliki'),
(2656, 1945, 'en', 'name', 'University Dental Hospital of Manchester'),
(2657, 1946, 'en', 'name', 'Second Affiliated Hospital of Nanchang University'),
(2658, 1946, 'zh', 'name', 'å—ę˜Œå¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(2659, 1947, 'en', 'name', 'University Dental Hospital on Cardiff University'),
(2660, 1948, 'en', 'name', 'General University Hospital of Patras'),
(2661, 1949, 'en', 'name', 'Temple Street Children''s University Hospital'),
(2662, 1950, 'en', 'name', 'Second Affiliated Hospital of Chongqing Medical University'),
(2663, 1951, 'en', 'name', 'Payame Noor University'),
(2664, 1951, 'fa', 'name', 'دانؓگاه Ł¾ŪŒŲ§Ł… Ł†ŁˆŲ±'),
(2665, 1952, 'en', 'name', 'Second Affiliated Hospital of Harbin Medical University'),
(2666, 1953, 'en', 'name', 'Second Affiliated Hospital of Zhejiang University'),
(2667, 1954, 'en', 'name', 'Athens Eye Hospital'),
(2668, 1954, 'el', 'name', 'ĪŸĻ†ĪøĪ±Ī»Ī¼ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(2669, 1955, 'en', 'name', 'BG University Hospital Bergmannsheil Bochum'),
(2670, 1955, 'de', 'name', 'BG UniversitƤtsklinikum Bergmannsheil Bochum'),
(2671, 1956, 'de', 'name', 'UniversitƤts-Augenklinik Bonn'),
(2672, 1957, 'tr', 'name', 'Ɩzel Ortadoğu 19 Mayıs Hastanesi'),
(2673, 1958, 'en', 'name', 'Peking University Cancer Hospital'),
(2674, 1958, 'zh', 'name', 'åŒ—äŗ¬å¤§å­¦č‚æē˜¤åŒ»é™¢'),
(2675, 1959, 'en', 'name', 'Semnan University'),
(2676, 1959, 'fa', 'name', 'دانؓگاه سمنان'),
(2677, 1960, 'en', 'name', 'Seokyeong University'),
(2678, 1960, 'ko', 'name', 'ģ„œź²½ėŒ€ķ•™źµ'),
(2679, 1961, 'no_lang_code', 'name', 'Seonam University'),
(2680, 1962, 'en', 'name', 'University Hospital of Heraklion'),
(2681, 1963, 'en', 'name', 'University Hospital of Alexandroupolis'),
(2682, 1964, 'en', 'name', 'Seoul National University of Science and Technology'),
(2683, 1964, 'ko', 'name', 'ģ„œģšøź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(2684, 1965, 'tr', 'name', 'Eskişehir Osmangazi Üniversitesi Tıp Fakültesi Hastanesi'),
(2685, 1966, 'en', 'name', 'Seoul Women''s University'),
(2686, 1966, 'ko', 'name', 'ģ„œģšøģ—¬ģžėŒ€ķ•™źµ'),
(2687, 1967, 'en', 'name', 'University Health System'),
(2688, 1968, 'en', 'name', 'Periyar University'),
(2689, 1968, 'ta', 'name', 'ą®ŖąÆ†ą®°ą®æą®Æą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2690, 1969, 'en', 'name', 'Vidant Health'),
(2691, 1970, 'en', 'name', 'Setsunan University'),
(2692, 1970, 'ja', 'name', 'ę‘‚å—å¤§å­¦'),
(2693, 1971, 'en', 'name', 'Sevastopol National Technical University'),
(2694, 1971, 'ru', 'name', 'Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2695, 1971, 'uk', 'name', 'Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2696, 1972, 'en', 'name', 'Shahid Bahonar University of Kerman'),
(2697, 1972, 'fa', 'name', 'دانؓگاه Ų“Ł‡ŪŒŲÆ باهنر کرمان'),
(2698, 1973, 'en', 'name', 'Shahjalal University of Science and Technology'),
(2699, 1973, 'bn', 'name', 'শাহজালাল ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(2700, 1974, 'it', 'name', 'Azienda Ospedaliera Universitaria Policlinico "G. Martino"'),
(2701, 1975, 'it', 'name', 'Azienda Ospedaliera Universitaria Policlinico "Paolo Giaccone" di Palermo'),
(2702, 1976, 'ms', 'name', 'Hospital Kuala Lumpur'),
(2703, 1977, 'en', 'name', 'Affiliated Hospital of Qingdao University'),
(2704, 1978, 'en', 'name', 'Pontifical Catholic University of ParanĆ”'),
(2705, 1978, 'es', 'name', 'Pontificia Universidad Católica de ParanÔ'),
(2706, 1978, 'pt', 'name', 'Pontifícia Universidade Católica do ParanÔ'),
(2707, 1978, 'fr', 'name', 'UniversitƩ pontificale catholique du paranƔ'),
(2708, 1979, 'en', 'name', 'Shanghai Ninth People''s Hospital'),
(2709, 1979, 'zh', 'name', 'äøŠęµ·ē¬¬ä¹äŗŗę°‘åŒ»é™¢'),
(2710, 1980, 'en', 'name', 'Shanghai Sixth People''s Hospital'),
(2711, 1980, 'zh', 'name', 'äøŠęµ·åø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(2712, 1981, 'en', 'name', 'Prefectural University of Kumamoto'),
(2713, 1981, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹å¤§å­¦'),
(2714, 1982, 'en', 'name', 'Second Affiliated Hospital of Guangzhou Medical University'),
(2715, 1982, 'zh', 'name', 'å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(2716, 1983, 'en', 'name', 'Sun Yat-sen Memorial Hospital'),
(2717, 1984, 'en', 'name', 'Shanghai Tenth People''s Hospital'),
(2718, 1984, 'zh', 'name', 'äøŠęµ·ē¬¬åäŗŗę°‘åŒ»é™¢'),
(2719, 1985, 'en', 'name', 'Vancouver General Hospital'),
(2720, 1986, 'en', 'name', 'Princess Royal University Hospital'),
(2721, 1987, 'en', 'name', 'Shaoguan University'),
(2722, 1987, 'zh', 'name', '韶关学院'),
(2723, 1988, 'en', 'name', 'Providence University'),
(2724, 1988, 'zh', 'name', 'éœå®œå¤§å­ø'),
(2725, 1989, 'en', 'name', 'Sharif University of Technology'),
(2726, 1989, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ ؓریف'),
(2727, 1990, 'en', 'name', 'Shenandoah University'),
(2728, 1991, 'en', 'name', 'Third Affiliated Hospital of Sun Yat-sen University'),
(2729, 1992, 'en', 'name', 'Shih Chien University'),
(2730, 1993, 'en', 'name', 'Shimane University Hospital'),
(2731, 1993, 'ja', 'name', '島根大学病院'),
(2732, 1994, 'en', 'name', 'University Hospital Coventry'),
(2733, 1995, 'en', 'name', 'Pukyong National University'),
(2734, 1995, 'ko', 'name', 'ė¶€ź²½ėŒ€ķ•™źµ'),
(2735, 1996, 'en', 'name', 'Punjabi University'),
(2736, 1996, 'hi', 'name', 'ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2737, 1996, 'pa', 'name', 'ąØŖą©°ąØœąØ¾ąØ¬ą©€ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(2738, 1997, 'en', 'name', 'Showa Women''s University'),
(2739, 1997, 'ja', 'name', 'ę˜­å’Œå„³å­å¤§å­¦'),
(2740, 1998, 'no_lang_code', 'name', 'Shuguang Hospital'),
(2741, 1999, 'en', 'name', 'University of Virginia Health System'),
(2742, 2000, 'en', 'name', 'First Affiliated Hospital of GuangXi Medical University'),
(2743, 2001, 'en', 'name', 'First Affiliated Hospital of Guangzhou University of Chinese Medicine'),
(2744, 2002, 'en', 'name', 'First Affiliated Hospital of Harbin Medical University'),
(2745, 2003, 'en', 'name', 'University of Virginia Medical Center'),
(2746, 2004, 'en', 'name', 'First Affiliated Hospital of Jinan University'),
(2747, 2004, 'zh', 'name', 'ęšØå—å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(2748, 2005, 'en', 'name', 'Qatar University'),
(2749, 2005, 'es', 'name', 'Universidad de Catar'),
(2750, 2005, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© قطر'),
(2751, 2006, 'en', 'name', 'First Affiliated Hospital of Nanchang University'),
(2752, 2006, 'zh', 'name', 'å—ę˜Œå¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(2753, 2007, 'en', 'name', 'Sichuan University of Science and Engineering'),
(2754, 2007, 'zh', 'name', 'å››å·ē†å·„å­¦é™¢'),
(2755, 2008, 'en', 'name', 'Qazvin University of Medical Sciences'),
(2756, 2008, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓكي و Ų®ŲÆŁ…Ų§ŲŖ ŲÆŲ±Ł…Ų§Ł†ŁŠ Ł‚Ų²ŁˆŪŒŁ†'),
(2757, 2009, 'en', 'name', 'Siksha O Anusandhan University'),
(2758, 2010, 'en', 'name', 'Qiqihar Medical University'),
(2759, 2010, 'zh', 'name', '齐齐哈尔医学院'),
(2760, 2011, 'en', 'name', 'First Affiliated Hospital of Shantou University Medical College'),
(2761, 2011, 'zh', 'name', 'ę±•å¤“å¤§å­¦åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(2762, 2012, 'en', 'name', 'Silla University'),
(2763, 2012, 'ko', 'name', 'ģ‹ ė¼ėŒ€ķ•™źµ'),
(2764, 2013, 'en', 'name', 'Harborview Medical Center'),
(2765, 2014, 'en', 'name', 'Silpakorn University'),
(2766, 2014, 'th', 'name', 'ดหาวณทยาคัยศณคปากร'),
(2767, 2015, 'en', 'name', 'Quaid-i-Azam University'),
(2768, 2015, 'ur', 'name', 'جامعہ قائداعظم'),
(2769, 2016, 'en', 'name', 'University HealthSystem Consortium'),
(2770, 2017, 'en', 'name', 'University of Washington Medical Center'),
(2771, 2018, 'en', 'name', 'First Affiliated Hospital of Xiamen University'),
(2772, 2018, 'zh', 'name', 'åŽ¦é—Øå¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(2773, 2019, 'en', 'name', 'Taurida National V.I. Vernadsky University'),
(2774, 2019, 'pl', 'name', 'Tawrijski Uniwersytet Narodowy im. Władimira Wiernadskiego'),
(2775, 2019, 'ru', 'name', 'Таврический Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. И. ВернаГского'),
(2776, 2019, 'uk', 'name', 'Š¢Š°Š²Ń€Ń–Š¹ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’. І. Š’ŠµŃ€Š½Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(2777, 2020, 'en', 'name', 'First Affiliated Hospital of Xinjiang Medical University'),
(2778, 2020, 'zh', 'name', 'ę–°ē–†åŒ»ē§‘å¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(2779, 2021, 'en', 'name', 'First Teaching Hospital of Tianjin University of Traditional Chinese Medicine'),
(2780, 2021, 'zh', 'name', 'äø­å›½ä¼ ē»ŸåŒ»čÆēš„å¤©ę“„å¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(2781, 2022, 'en', 'name', 'Rani Durgavati University'),
(2782, 2023, 'de', 'name', 'Klinikum Südstadt Rostock'),
(2783, 2024, 'en', 'name', 'First Hospital of Lanzhou University'),
(2784, 2024, 'zh', 'name', 'å…°å·žå¤§å­¦ē¬¬äø€åŒ»é™¢: ę¬¢čæŽę‚Ø| 兰大一院'),
(2785, 2025, 'en', 'name', 'Tianjin Medical University General Hospital'),
(2786, 2025, 'zh', 'name', 'å¤©ę“„åŒ»ē§‘å¤§å­¦ę€»åŒ»é™¢'),
(2787, 2026, 'no_lang_code', 'name', 'Rafik Hariri University Hospital'),
(2788, 2026, 'ar', 'name', 'مستؓفى Ų±ŁŁŠŁ‚ Ų§Ł„Ų­Ų±ŁŠŲ±ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠā€Žā€Ž'),
(2789, 2027, 'en', 'name', 'Sƶdertƶrn University'),
(2790, 2027, 'sv', 'name', 'Sƶdertƶrns hƶgskola'),
(2791, 2028, 'en', 'name', 'Ramkhamhaeng University'),
(2792, 2028, 'th', 'name', 'ดหาวณทยาคัยราดคำแหง'),
(2793, 2029, 'en', 'name', 'Sojo University'),
(2794, 2029, 'ja', 'name', '哇城大学'),
(2795, 2030, 'en', 'name', 'Rangsit University'),
(2796, 2030, 'th', 'name', 'ดหาวณทยาคัยรังสณต'),
(2797, 2031, 'en', 'name', 'Solapur University'),
(2798, 2031, 'mr', 'name', 'ą¤øą„‹ą¤²ą¤¾ą¤Ŗą„‚ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(2799, 2032, 'so', 'name', 'Jaamacada Ummada Soomaaliyeed'),
(2800, 2032, 'en', 'name', 'Somali National University'),
(2801, 2032, 'it', 'name', 'UniversitĆ  nazionale somala'),
(2802, 2033, 'en', 'name', 'Razi University'),
(2803, 2033, 'fa', 'name', 'دانؓگاه رازی'),
(2804, 2034, 'en', 'name', 'Sookmyung Women''s University'),
(2805, 2034, 'ko', 'name', 'ģˆ™ėŖ…ģ—¬ģžėŒ€ķ•™źµ'),
(2806, 2035, 'en', 'name', 'Regent University'),
(2807, 2036, 'en', 'name', 'University of Oklahoma Medical Center'),
(2808, 2037, 'en', 'name', 'Jiangsu Province Hospital'),
(2809, 2037, 'zh', 'name', 'ę±Ÿč‹ēœäŗŗę°‘åŒ»é™¢'),
(2810, 2038, 'en', 'name', 'First Affiliated Hospital of Anhui Medical University'),
(2811, 2039, 'en', 'name', 'First Affiliated Hospital of Fujian Medical University'),
(2812, 2039, 'zh', 'name', 'ē¦å»ŗåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(2813, 2040, 'en', 'name', 'Soroka Medical Center'),
(2814, 2041, 'en', 'name', 'Stony Brook University Hospital'),
(2815, 2042, 'pl', 'name', 'Szpital Uniwersytecki w Krakowie'),
(2816, 2043, 'en', 'name', 'University Health Care System'),
(2817, 2044, 'en', 'name', 'Shriners Hospitals for Children - Galveston'),
(2818, 2045, 'es', 'name', 'Universidad de Phoenix'),
(2819, 2045, 'en', 'name', 'University of Phoenix'),
(2820, 2045, 'fr', 'name', 'UniversitƩ de phoenix'),
(2821, 2046, 'en', 'name', 'Clinical Centre of Kragujevac'),
(2822, 2046, 'sr', 'name', 'ŠšŠ»ŠøŠ½ŠøŃ‡ŠŗŠø центар ŠšŃ€Š°Š³ŃƒŃ˜ŠµŠ²Š°Ń†'),
(2823, 2047, 'en', 'name', 'Southend Hospital'),
(2824, 2048, 'en', 'name', 'Penn Presbyterian Medical Center'),
(2825, 2049, 'en', 'name', 'Upstate University Hospital'),
(2826, 2050, 'en', 'name', 'Southern Taiwan University of Science and Technology'),
(2827, 2051, 'en', 'name', 'Third Affiliated Hospital of Zhengzhou University'),
(2828, 2051, 'zh', 'name', 'éƒ‘å·žå¤§å­¦ē¬¬äø‰é™„å±žåŒ»é™¢'),
(2829, 2052, 'en', 'name', 'Spalding University'),
(2830, 2053, 'en', 'name', 'Thomas Jefferson University Hospital'),
(2831, 2054, 'en', 'name', 'Tianjin Medical University Eye Hospital'),
(2832, 2055, 'en', 'name', 'Sri Krishnadevaraya University'),
(2833, 2055, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°•ą±ƒą°·ą±ą°£ą°¦ą±‡ą°µą°°ą°¾ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(2834, 2056, 'en', 'name', 'Saskatchewan Health Authority'),
(2835, 2057, 'en', 'name', 'Sri Ramachandra Institute of Higher Education and Research'),
(2836, 2057, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤°ą¤¾ą¤®ą¤šą¤‚ą¤¦ą„ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤¾ą¤²ą¤æą¤œ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(2837, 2057, 'ta', 'name', 'ą®šą®æą®±ąÆ€ ą®‡ą®°ą®¾ą®®ą®šąÆą®šą®ØąÆą®¤ą®æą®°ą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®ÆąÆą®µąÆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(2838, 2058, 'en', 'name', 'University of Port Harcourt Teaching Hospital'),
(2839, 2059, 'no_lang_code', 'name', 'Srinakharinwirot University'),
(2840, 2059, 'th', 'name', 'ดหาวณทยาคัยศรีนครณนทรวณโรฒ'),
(2841, 2060, 'en', 'name', 'SRM Institute of Science and Technology'),
(2842, 2060, 'ta', 'name', 'திரு. ą®‡ą®°ą®¾ą®®ą®šą®¾ą®®ą®æ ą®Øą®æą®©ąÆˆą®µąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2843, 2061, 'en', 'name', 'St. Vincent''s University Hospital'),
(2844, 2062, 'en', 'name', 'Tohoku Fukushi University'),
(2845, 2062, 'ja', 'name', 'ę±åŒ—ē¦ē„‰å¤§å­¦'),
(2846, 2063, 'en', 'name', 'Tokai University Hachioji Hospital'),
(2847, 2063, 'ja', 'name', 'ę±ęµ·å¤§å­¦åŒ»å­¦éƒØä»˜å±žå…«ēŽ‹å­ē—…é™¢'),
(2848, 2064, 'en', 'name', 'Urmia University'),
(2849, 2064, 'fa', 'name', 'دانؓگاه Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(2850, 2065, 'en', 'name', 'Mother Teresa Hospital'),
(2851, 2065, 'sq', 'name', 'Qendra Spitalore Universitare Nene Tereza'),
(2852, 2066, 'no_lang_code', 'name', 'Tokushima Bunri University'),
(2853, 2066, 'ja', 'name', '徳島文理大学'),
(2854, 2067, 'en', 'name', 'Tokyo Gakugei University'),
(2855, 2067, 'ja', 'name', 'ę±äŗ¬å­¦čŠøå¤§å­¦'),
(2856, 2068, 'en', 'name', 'University of Santo Tomas Hospital'),
(2857, 2069, 'en', 'name', 'University of Sargodha'),
(2858, 2070, 'en', 'name', 'Tokyo Medical University Ibaraki Medical Center'),
(2859, 2070, 'ja', 'name', 'ę±äŗ¬åŒ»ē§‘å¤§å­¦čŒØåŸŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2860, 2071, 'en', 'name', 'Korea University of Science and Technology'),
(2861, 2071, 'ko', 'name', 'ź³¼ķ•™źø°ģˆ ģ—°ķ•©ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(2862, 2072, 'pt', 'name', 'Universidade Vale do Rio Verde'),
(2863, 2073, 'fr', 'name', 'HƓpital Farhat Hached'),
(2864, 2074, 'en', 'name', 'University of Sindh'),
(2865, 2074, 'ur', 'name', 'سندھ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(2866, 2075, 'en', 'name', 'Toyama Prefectural University'),
(2867, 2075, 'ja', 'name', 'åÆŒå±±ēœŒē«‹å¤§å­¦'),
(2868, 2076, 'en', 'name', 'Toyohashi University of Technology'),
(2869, 2076, 'ja', 'name', 'č±Šę©‹ęŠ€č”“ē§‘å­¦å¤§å­¦'),
(2870, 2077, 'en', 'name', 'University of South Alabama Medical Center'),
(2871, 2078, 'de', 'name', 'Klinikum Region Hannover'),
(2872, 2079, 'fr', 'name', 'Centre Hospitalier Universitaire Hassan II'),
(2873, 2080, 'en', 'name', 'Vestfold University College'),
(2874, 2081, 'en', 'name', 'Tulane Medical Center'),
(2875, 2082, 'en', 'name', 'Ubon Ratchathani University'),
(2876, 2082, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(2877, 2083, 'en', 'name', 'University of Tabriz'),
(2878, 2083, 'fa', 'name', 'دانؓگاه تبریز'),
(2879, 2084, 'en', 'name', 'Umm al-Qura University'),
(2880, 2084, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أم القرى'),
(2881, 2085, 'en', 'name', 'Staten Island University Hospital'),
(2882, 2086, 'en', 'name', 'Vikram University'),
(2883, 2086, 'hi', 'name', 'ą¤µą¤æą¤•ą„ą¤°ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2884, 2087, 'en', 'name', 'Virginia Tech - Wake Forest University School of Biomedical Engineering & Sciences'),
(2885, 2088, 'en', 'name', 'Vladivostok State Medical University'),
(2886, 2088, 'ru', 'name', 'Тихоокеанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2887, 2089, 'no_lang_code', 'name', 'Sugiyama Jogakuen University'),
(2888, 2089, 'ja', 'name', 'ę¤™å±±å„³å­¦åœ’å¤§å­¦'),
(2889, 2090, 'it', 'name', 'Policlinico Universitario di Catania'),
(2890, 2091, 'es', 'name', 'Universidad AnƔhuac'),
(2891, 2092, 'en', 'name', 'Austral University'),
(2892, 2092, 'es', 'name', 'Universidad Austral'),
(2893, 2093, 'en', 'name', 'Autonomous University of Campeche'),
(2894, 2093, 'es', 'name', 'Universidad Autónoma de Campeche'),
(2895, 2094, 'en', 'name', 'Sultan Qaboos University Hospital'),
(2896, 2094, 'ar', 'name', 'مستؓفى Ų¬Ų§Ł…Ų¹Ų© السلطان Ł‚Ų§ŲØŁˆŲ³'),
(2897, 2095, 'en', 'name', 'Wakayama Medical University'),
(2898, 2095, 'ja', 'name', 'å’Œę­Œå±±ēœŒē«‹åŒ»ē§‘å¤§å­¦'),
(2899, 2096, 'en', 'name', 'Sun Moon University'),
(2900, 2096, 'ko', 'name', 'ģ„ ė¬øėŒ€ķ•™źµ'),
(2901, 2097, 'en', 'name', 'Autonomous University of Queretaro'),
(2902, 2097, 'es', 'name', 'Universidad Autónoma de Querétaro'),
(2903, 2098, 'en', 'name', 'Autonomous University of San Luis PotosĆ­'),
(2904, 2098, 'es', 'name', 'Universidad Autónoma de San Luis Potosí'),
(2905, 2099, 'en', 'name', 'Autonomous University of Hidalgo State'),
(2906, 2099, 'es', 'name', 'Universidad Autónoma del Estado de Hidalgo'),
(2907, 2100, 'en', 'name', 'Walden University'),
(2908, 2101, 'en', 'name', 'Walsh University'),
(2909, 2102, 'en', 'name', 'Sunchon National University'),
(2910, 2102, 'ko', 'name', 'ģˆœģ²œėŒ€ķ•™źµ'),
(2911, 2103, 'es', 'name', 'Universidad Centroccidental Lisandro Alvarado'),
(2912, 2104, 'en', 'name', 'Suzuka University of Medical Science'),
(2913, 2104, 'ja', 'name', 'éˆ“é¹æåŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(2914, 2105, 'es', 'name', 'Universidad de Carabobo'),
(2915, 2105, 'en', 'name', 'University of Carabobo'),
(2916, 2106, 'es', 'name', 'Universidad de Cartagena'),
(2917, 2106, 'en', 'name', 'University of Cartagena'),
(2918, 2107, 'en', 'name', 'University of the West Indies'),
(2919, 2108, 'en', 'name', 'Taibah University'),
(2920, 2108, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طيبة'),
(2921, 2109, 'sk', 'name', 'UniverzitnĆ” Nemocnica Louisa Pasteura'),
(2922, 2110, 'en', 'name', 'Taipei Medical University'),
(2923, 2111, 'en', 'name', 'West Bengal University of Animal and Fishery Sciences'),
(2924, 2111, 'hi', 'name', 'ą¤Ŗą¤¶ą„ą¤šą¤æą¤® बंगाल ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤ą¤µą¤‚ ą¤Ŗą¤¶ą„ą¤Ŗą¤¾ą¤²ą¤Ø ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2925, 2111, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦Ŗą§ą¦°ą¦¾ą¦£ą§€ ও ą¦®ą§Žą¦øą§ą¦Æą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(2926, 2112, 'en', 'name', 'Tajen University'),
(2927, 2113, 'en', 'name', 'Takasaki University of Health and Welfare'),
(2928, 2113, 'ja', 'name', 'é«˜å“Žå„åŗ·ē¦ē„‰å¤§å­¦'),
(2929, 2114, 'en', 'name', 'Tamil Nadu Veterinary and Animal Sciences University'),
(2930, 2114, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®•ą®¾ą®²ąÆą®Øą®ŸąÆˆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2931, 2115, 'en', 'name', 'Tamil University'),
(2932, 2115, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®¤ą®žąÆą®šą®¾ą®µąÆ‚ą®°ąÆ'),
(2933, 2115, 'ml', 'name', 'ą“¤ą“®ą“æą““ąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(2934, 2116, 'en', 'name', 'University Hospital of North Tees'),
(2935, 2117, 'en', 'name', 'Animal Health Trust'),
(2936, 2118, 'en', 'name', 'Barnsley Hospital NHS Foundation Trust'),
(2937, 2119, 'en', 'name', 'Bedford Hospital NHS Trust'),
(2938, 2120, 'en', 'name', 'Belfast City Hospital'),
(2939, 2121, 'en', 'name', 'Belfast Health and Social Care Trust'),
(2940, 2122, 'en', 'name', 'Birmingham City Hospital'),
(2941, 2123, 'en', 'name', 'Nottingham City Hospital'),
(2942, 2124, 'en', 'name', 'Ealing Hospital NHS Trust'),
(2943, 2125, 'en', 'name', 'George Eliot Hospital NHS Trust'),
(2944, 2126, 'en', 'name', 'Glenfield Hospital'),
(2945, 2127, 'en', 'name', 'Health Research and Educational Trust'),
(2946, 2128, 'en', 'name', 'Kettering General Hospital NHS Trust'),
(2947, 2129, 'en', 'name', 'Kingston Hospital NHS Trust'),
(2948, 2130, 'en', 'name', 'Leicester General Hospital'),
(2949, 2131, 'en', 'name', 'Luton and Dunstable Hospital'),
(2950, 2132, 'en', 'name', 'Medical Trust Hospital'),
(2951, 2133, 'en', 'name', 'Northern General Hospital'),
(2952, 2134, 'en', 'name', 'Papworth Hospital NHS Foundation Trust'),
(2953, 2135, 'en', 'name', 'Queen Victoria Hospital NHS Foundation Trust'),
(2954, 2136, 'en', 'name', 'Raigmore Hospital'),
(2955, 2137, 'en', 'name', 'Robert Jones and Agnes Hunt Orthopaedic Hospital NHS Trust'),
(2956, 2138, 'en', 'name', 'Royal Cornwall Hospital Trust'),
(2957, 2139, 'en', 'name', 'Royal National Orthopaedic Hospital NHS Trust'),
(2958, 2140, 'en', 'name', 'Royal Surrey NHS Foundation Trust'),
(2959, 2141, 'en', 'name', 'Western Infirmary'),
(2960, 2142, 'en', 'name', 'West Virginia University Hospitals'),
(2961, 2143, 'pt', 'name', 'Universidade de Uberaba'),
(2962, 2144, 'en', 'name', 'University of Health Sciences Vientiane'),
(2963, 2144, 'lo', 'name', 'ąŗ”ąŗ°ąŗ«ąŗ²ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ą»„ąŗ„ ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ąŗŖąŗ²ąŗ” ąŗŖąŗøąŗ‚ąŗ°ąŗžąŗ²ąŗš'),
(2964, 2145, 'en', 'name', 'Wingate University'),
(2965, 2146, 'en', 'name', 'University of the Ryukyus University Hospital'),
(2966, 2146, 'ja', 'name', 'ē‰ēƒå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(2967, 2147, 'en', 'name', 'University of Uyo Teaching Hospital'),
(2968, 2148, 'en', 'name', 'University Hospital of the West Indies'),
(2969, 2149, 'de', 'name', 'Stiftung TierƤrztliche Hochschule Hannover'),
(2970, 2149, 'en', 'name', 'University of Veterinary Medicine Hannover, Foundation'),
(2971, 2150, 'no_lang_code', 'name', 'University of Veterinary Medicine in KoŔice'),
(2972, 2150, 'sk', 'name', 'Univerzita veterinÔrskeho lekÔrstva a farmÔcie v KoŔiciach'),
(2973, 2151, 'en', 'name', 'Circolo Hospital and Macchi Foundation'),
(2974, 2151, 'it', 'name', 'Ospedale di Circolo e Fondazione Macchi'),
(2975, 2152, 'en', 'name', 'University of Ilorin Teaching Hospital'),
(2976, 2153, 'en', 'name', 'Incheon National University'),
(2977, 2153, 'ko', 'name', 'ģøģ²œėŒ€ķ•™źµ'),
(2978, 2154, 'en', 'name', 'XinHua Hospital'),
(2979, 2154, 'zh', 'name', 'äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žę–°åŽåŒ»é™¢'),
(2980, 2155, 'en', 'name', 'University of Virginia Children''s Hospital'),
(2981, 2156, 'de', 'name', 'UniversitƤtskliniken Salzburg'),
(2982, 2157, 'en', 'name', 'University of Kentucky HealthCare'),
(2983, 2158, 'it', 'name', 'Azienda Ospedaliero Universitaria San Giovanni Battista'),
(2984, 2159, 'en', 'name', 'Yamagata University Hospital'),
(2985, 2159, 'ja', 'name', 'å±±å½¢å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(2986, 2160, 'en', 'name', 'Yamaguchi Prefectural University'),
(2987, 2160, 'ja', 'name', 'å±±å£ēœŒē«‹å¤§å­¦'),
(2988, 2161, 'en', 'name', 'University of Agricultural Sciences, Bangalore'),
(2989, 2162, 'en', 'name', 'University of Minnesota Children''s Hospital'),
(2990, 2163, 'en', 'name', 'University Malaya Medical Centre'),
(2991, 2164, 'en', 'name', 'University of Alabama at Birmingham Hospital'),
(2992, 2165, 'en', 'name', 'Yeditepe University Hospital'),
(2993, 2165, 'tr', 'name', 'Yeditepe Üniversitesi Hastanesi'),
(2994, 2166, 'en', 'name', 'Royal United Hospital Bath NHS Trust'),
(2995, 2167, 'en', 'name', 'Southport and Ormskirk Hospital NHS Trust'),
(2996, 2168, 'en', 'name', 'Stoke Mandeville Hospital'),
(2997, 2168, 'cy', 'name', 'Ysbyty Stoke Mandeville'),
(2998, 2169, 'no_lang_code', 'name', 'Yibin University'),
(2999, 2170, 'es', 'name', 'Universidad de Matanzas "Camilo Cienfuegos"'),
(3000, 2170, 'en', 'name', 'University of Matanzas'),
(3001, 2171, 'no_lang_code', 'name', 'Yogi Vemana University'),
(3002, 2171, 'ta', 'name', 'யோகி வேமனா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(3003, 2171, 'te', 'name', 'యోగి వేమన ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(3004, 2172, 'no_lang_code', 'name', 'Yuan Ze University'),
(3005, 2173, 'en', 'name', 'Yuanpei University'),
(3006, 2173, 'zh', 'name', 'å…ƒåŸ¹é†«äŗ‹ē§‘ęŠ€å¤§å­ø'),
(3007, 2174, 'es', 'name', 'Hospital de la Universidad de Nuevo MƩxico'),
(3008, 2174, 'en', 'name', 'University of New Mexico Hospital'),
(3009, 2175, 'en', 'name', 'University of Miami Hospital'),
(3010, 2176, 'en', 'name', 'University of Azad Jammu and Kashmir'),
(3011, 2177, 'en', 'name', 'Yunnan Nationalities University'),
(3012, 2177, 'zh', 'name', 'äŗ‘å—ę°‘ę—å¤§å­¦'),
(3013, 2178, 'en', 'name', 'University of Bahrain'),
(3014, 2178, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(3015, 2179, 'en', 'name', 'University Medical Center of Princeton'),
(3016, 2180, 'en', 'name', 'University of Balochistan'),
(3017, 2180, 'ur', 'name', 'جامعہ ŲØŁ„ŁˆŚ†Ų³ŲŖŲ§Ł†'),
(3018, 2181, 'en', 'name', 'University of Wisconsin American Family Children''s Hospital'),
(3019, 2182, 'en', 'name', 'University of California San Francisco Medical Center'),
(3020, 2183, 'en', 'name', 'Ronald Reagan UCLA Medical Center'),
(3021, 2184, 'en', 'name', 'University of Charleston'),
(3022, 2184, 'fr', 'name', 'UniversitƩ de Charleston'),
(3023, 2185, 'es', 'name', 'Hospital de la Universidad de Colorado'),
(3024, 2185, 'en', 'name', 'University of Colorado Hospital'),
(3025, 2186, 'en', 'name', 'Ziauddin University'),
(3026, 2187, 'en', 'name', 'University of Defence'),
(3027, 2187, 'cs', 'name', 'Univerzita Obrany'),
(3028, 2188, 'en', 'name', 'University of Calabar'),
(3029, 2188, 'yo', 'name', 'YunifÔsítì ìlú Calabar'),
(3030, 2189, 'en', 'name', 'Henry Ford Hospital'),
(3031, 2189, 'fr', 'name', 'HƓpital henry ford'),
(3032, 2190, 'en', 'name', 'Peking Union Medical College Hospital'),
(3033, 2190, 'zh', 'name', 'åŒ—äŗ¬åå’ŒåŒ»é™¢'),
(3034, 2191, 'en', 'name', 'Third Affiliated Hospital of Southern Medical University'),
(3035, 2191, 'zh', 'name', 'å—ę–¹åŒ»ē§‘å¤§å­¦ē¬¬äø‰é™„å±žåŒ»é™¢'),
(3036, 2192, 'de', 'name', 'UniversitƤtsmedizin Rostock'),
(3037, 2193, 'en', 'name', 'Kindai University Hospital'),
(3038, 2193, 'ja', 'name', 'čæ‘ē•æå¤§å­¦åŒ»å­¦éƒØ é™„å±žē—…é™¢'),
(3039, 2194, 'en', 'name', 'University of Florida Health Science Center'),
(3040, 2195, 'en', 'name', 'Good Samaritan Hospital'),
(3041, 2196, 'en', 'name', 'Buffalo General Medical Center'),
(3042, 2197, 'en', 'name', 'Buffalo Medical Group'),
(3043, 2198, 'en', 'name', 'Buffalo VA Medical Center'),
(3044, 2199, 'no_lang_code', 'name', 'Bugando Medical Centre'),
(3045, 2200, 'es', 'name', 'Hospital Pablo Tobon Uribe'),
(3046, 2201, 'es', 'name', 'Hospital Padre Hurtado'),
(3047, 2202, 'no_lang_code', 'name', 'Bundang Jesaeng Hospital'),
(3048, 2202, 'ko', 'name', 'ė¶„ė‹¹ģ œģƒė³‘ģ›'),
(3049, 2203, 'el', 'name', '251 Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Αεροπορίας'),
(3050, 2203, 'en', 'name', 'Hellenic Airforce General Hospital'),
(3051, 2204, 'en', 'name', 'University of Nigeria Teaching Hospital'),
(3052, 2205, 'en', 'name', 'Burke Rehabilitation Hospital'),
(3053, 2206, 'en', 'name', '302 Military Hospital of China'),
(3054, 2206, 'zh', 'name', '中国人民解放军第302医院'),
(3055, 2207, 'en', 'name', 'Burnley General Teaching Hospital'),
(3056, 2208, 'en', 'name', '303 Hospital of People''s Liberation Army'),
(3057, 2208, 'zh', 'name', '中国人民解放军303医院'),
(3058, 2209, 'en', 'name', 'Global Medical Imaging'),
(3059, 2210, 'tr', 'name', 'Bursa Yuksek Ihtisas Egitim Ve Arastirma Hastanesi'),
(3060, 2211, 'en', 'name', 'Burdwan Medical College & Hospital'),
(3061, 2212, 'es', 'name', 'Hospital PediƔtrico Moctezuma'),
(3062, 2213, 'en', 'name', 'Gloucestershire Royal Hospital'),
(3063, 2214, 'en', 'name', '175th Hospital of People''s Liberation Army'),
(3064, 2214, 'zh', 'name', '解放军第175医院'),
(3065, 2215, 'en', 'name', 'Goa Dental College and Hospital'),
(3066, 2216, 'pt', 'name', 'Escola Médico-Cirúrgica de Goa'),
(3067, 2216, 'en', 'name', 'Goa Medical College'),
(3068, 2217, 'en', 'name', 'The 309th Hospital of Chinese People''s Liberation Army'),
(3069, 2217, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬äø‰ć€‡ä¹åŒ»é™¢'),
(3070, 2218, 'pt', 'name', 'Hospital Pedro Hispano'),
(3071, 2219, 'en', 'name', 'Gold Coast Hospital'),
(3072, 2220, 'es', 'name', 'Hospital Perpetuo Socorro'),
(3073, 2221, 'en', 'name', 'Rabin Medical Center'),
(3074, 2222, 'en', 'name', 'Golden Jubilee National Hospital'),
(3075, 2223, 'en', 'name', '401 General Military Hospital of Athens'),
(3076, 2223, 'el', 'name', '401 Ī“ĪµĪ½Ī¹ĪŗĻŒ Ī£Ļ„ĻĪ±Ļ„Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(3077, 2224, 'en', 'name', 'Good Moonhwa Hospital'),
(3078, 2224, 'ko', 'name', 'ģ¢‹ģ€ė¬øķ™”ė³‘ģ›'),
(3079, 2225, 'en', 'name', 'Good Samaritan Hospital'),
(3080, 2226, 'en', 'name', 'Topiwala National Medical College & BYL Nair Charitable Hospital'),
(3081, 2227, 'en', 'name', '424 General Military Hospital'),
(3082, 2227, 'el', 'name', '424 Ī“ĪµĪ½Ī¹ĪŗĻŒ Ī£Ļ„ĻĪ±Ļ„Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(3083, 2228, 'en', 'name', 'MedStar Good Samaritan Hospital'),
(3084, 2229, 'en', 'name', '458th Hospital PLA'),
(3085, 2229, 'zh', 'name', '中国人民解放军第四五八'),
(3086, 2230, 'en', 'name', 'Good Samaritan Hospital'),
(3087, 2231, 'en', 'name', 'Good Samaritan Hospital'),
(3088, 2232, 'en', 'name', 'Advocate Good Samaritan Hospital'),
(3089, 2233, 'en', 'name', 'Ningbo No.6 Hospital'),
(3090, 2233, 'zh', 'name', 'å®ę³¢åø‚ē¬¬å…­åŒ»é™¢'),
(3091, 2234, 'hu', 'name', 'BÔcs-Kiskun Megyei KórhÔz'),
(3092, 2235, 'en', 'name', 'Wakayama University'),
(3093, 2235, 'ja', 'name', 'å’Œę­Œå±±å¤§å­¦'),
(3094, 2236, 'en', 'name', 'MultiCare Good Samaritan Hospital'),
(3095, 2237, 'it', 'name', 'Ospedale Antonio Cardarelli'),
(3096, 2238, 'it', 'name', 'Azienda Ospedaliera Carlo Poma'),
(3097, 2239, 'en', 'name', 'Alessandro Manzoni Hospital'),
(3098, 2239, 'it', 'name', 'Ospedale Alessandro Manzoni'),
(3099, 2240, 'es', 'name', 'Hospital Povisa'),
(3100, 2240, 'en', 'name', 'Povisa Hospital'),
(3101, 2241, 'en', 'name', 'C. S. Mott Children''s Hospital'),
(3102, 2242, 'en', 'name', 'Cornwall Regional Hospital'),
(3103, 2243, 'it', 'name', 'Azienda Sanitaria Ospedaliera S.Croce e Carle Cuneo'),
(3104, 2244, 'en', 'name', 'Simanogleio-Amalia Fleming General Hospital'),
(3105, 2244, 'el', 'name', 'Σισμανόγλειο-Αμαλία Φλέμινγκ Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(3106, 2245, 'en', 'name', 'Meyer Children''s Hospital'),
(3107, 2245, 'it', 'name', 'Ospedale Pediatrico Meyer'),
(3108, 2246, 'en', 'name', 'Argerich Hospital'),
(3109, 2247, 'en', 'name', 'Andreas Sygros Hospital'),
(3110, 2247, 'el', 'name', 'ΑνΓρέας Ī£Ļ…Ī³Ī³ĻĻŒĻ‚ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(3111, 2248, 'en', 'name', 'Detroit Medical Center'),
(3112, 2249, 'en', 'name', 'CTO Hospital'),
(3113, 2249, 'it', 'name', 'Ospedale Centro Traumatologico Ortopedico'),
(3114, 2250, 'en', 'name', 'Good Samaritan Regional Medical Center'),
(3115, 2251, 'en', 'name', 'Yehuda Abarbanel Mental Health Center'),
(3116, 2251, 'he', 'name', '××‘×Ø×‘× ××œ - ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש'),
(3117, 2252, 'en', 'name', 'Abbasi Shaheed Hospital');
INSERT INTO `ror_settings` VALUES
(3118, 2252, 'ur', 'name', 'عباسی Ų“Ł‡ŁŠŲÆ ہسپتال'),
(3119, 2253, 'en', 'name', 'Abbott Northwestern Hospital'),
(3120, 2254, 'en', 'name', 'Ca'' Foncello Hospital'),
(3121, 2255, 'da', 'name', 'Medicinsk-historisk Museum i NƦstved'),
(3122, 2256, 'en', 'name', 'Cabrini Medical Center'),
(3123, 2257, 'en', 'name', 'West China Medical Center of Sichuan University'),
(3124, 2257, 'zh', 'name', 'å››å·å¤§å­¦åŽč„æåŒ»å­¦äø­åæƒ'),
(3125, 2258, 'nl', 'name', 'Tergooi'),
(3126, 2259, 'en', 'name', 'Lincoln County Hospital'),
(3127, 2260, 'en', 'name', 'Medical College and Hospital, Kolkata'),
(3128, 2260, 'hi', 'name', 'ą¤•ą¤²ą¤•ą¤¤ą„ą¤¤ą¤¾ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(3129, 2260, 'bn', 'name', 'কলকাতা ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ ও হাসপাতাল'),
(3130, 2261, 'no_lang_code', 'name', 'Goroka Base Hospital'),
(3131, 2262, 'en', 'name', 'Abderrahmane Mami Hospital'),
(3132, 2263, 'en', 'name', 'Aberdeen Maternity Hospital'),
(3133, 2264, 'en', 'name', 'Govt. Dental College & Hospital'),
(3134, 2265, 'en', 'name', 'Cairns Hospital'),
(3135, 2266, 'en', 'name', 'Government General Hospital'),
(3136, 2267, 'en', 'name', 'Abington Memorial Hospital'),
(3137, 2268, 'en', 'name', 'Government Medical College'),
(3138, 2269, 'en', 'name', 'Governador Celso Ramos Hospital'),
(3139, 2270, 'pt', 'name', 'Hospital Pró-Cardíaco'),
(3140, 2271, 'en', 'name', 'Calcutta National Medical College and Hospital'),
(3141, 2271, 'bn', 'name', 'কলিকাতা ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦†ą¦Æą¦¼ą§ą¦°ą§ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦®ą¦Øą§ą¦¦ą¦æą¦°'),
(3142, 2271, 'te', 'name', 'ą°œą°¾ą°¤ą±€ą°Æ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(3143, 2272, 'en', 'name', 'Calderdale Royal Hospital'),
(3144, 2273, 'pt', 'name', 'Hospital Pulido Valente'),
(3145, 2274, 'en', 'name', 'Government Medical College'),
(3146, 2275, 'en', 'name', 'Government Medical College and Hospital'),
(3147, 2276, 'en', 'name', 'Ahmadu Bello University Teaching Hospital'),
(3148, 2277, 'en', 'name', 'Government Medical College, Amritsar'),
(3149, 2277, 'pa', 'name', 'ਸਰਕਾਰੀ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ąØ•ąØ¾ąØ²ąØœ'),
(3150, 2278, 'en', 'name', 'Government Medical College'),
(3151, 2278, 'pa', 'name', 'ਸਰਕਾਰੀ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ąØ•ąØ¾ąØ²ąØœ'),
(3152, 2279, 'en', 'name', 'Government Medical College'),
(3153, 2280, 'de', 'name', 'Klinikum Ludwigshafen'),
(3154, 2281, 'en', 'name', 'Government Medical College'),
(3155, 2281, 'ml', 'name', 'ą“—ą“µąµŗą“®ąµ†ą“Øąµą“±ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“¤ą“æą“°ąµą“µą“Øą“Øąµą“¤ą“Ŗąµą“°ą“‚'),
(3156, 2282, 'en', 'name', 'Government Medical College Bhavnagar'),
(3157, 2283, 'en', 'name', 'Government Medical College'),
(3158, 2283, 'mr', 'name', 'ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ व ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ, औरंगाबाद'),
(3159, 2284, 'en', 'name', 'Government Medical College'),
(3160, 2285, 'en', 'name', 'Government Medical College'),
(3161, 2286, 'en', 'name', 'Government Medical College'),
(3162, 2287, 'en', 'name', 'Mysore Medical College'),
(3163, 2288, 'en', 'name', 'Netaji Subhash Chandra Bose Medical College'),
(3164, 2289, 'en', 'name', 'Calgary General Hospital'),
(3165, 2290, 'en', 'name', 'Government Rajaji Hospital'),
(3166, 2291, 'en', 'name', 'Stanley Medical College'),
(3167, 2291, 'ta', 'name', 'ą®‡ą®šąÆą®Ÿą®¾ą®©ąÆą®²ą®æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(3168, 2292, 'en', 'name', 'California Animal Hospital'),
(3169, 2293, 'en', 'name', 'Govind Ballabh Pant Hospital'),
(3170, 2294, 'en', 'name', 'California Institute for Medical Research'),
(3171, 2295, 'de', 'name', 'Landeskrankenhaus Feldkirch'),
(3172, 2296, 'en', 'name', 'Ryhov Hospital Jƶnkƶping'),
(3173, 2297, 'en', 'name', 'Craig Hospital'),
(3174, 2298, 'en', 'name', 'Calvary Hospital'),
(3175, 2299, 'en', 'name', 'Craigavon Area Hospital'),
(3176, 2300, 'en', 'name', 'Xuan Wu Hospital of the Capital Medical University'),
(3177, 2300, 'zh', 'name', 'åŒ—äŗ¬åø‚č€å¹“ē—…åŒ»ē–—ē ”ē©¶äø­åæƒ'),
(3178, 2301, 'en', 'name', 'Gajara Raja Medical College'),
(3179, 2302, 'en', 'name', 'Sinai Grace Hospital'),
(3180, 2303, 'es', 'name', 'Hospital Ramos MejĆ­a'),
(3181, 2304, 'en', 'name', 'B.C. Women''s Hospital & Health Centre'),
(3182, 2305, 'en', 'name', 'Creative Health Care Management'),
(3183, 2306, 'en', 'name', 'Cama and Albless Hospital'),
(3184, 2307, 'en', 'name', 'Credit Valley Hospital'),
(3185, 2308, 'en', 'name', 'Graduate Hospital'),
(3186, 2309, 'en', 'name', 'Grady Health System'),
(3187, 2310, 'en', 'name', 'Grady Memorial Hospital'),
(3188, 2311, 'en', 'name', 'Accreditation Council for Graduate Medical Education'),
(3189, 2312, 'en', 'name', 'Crichton Royal Hospital'),
(3190, 2313, 'es', 'name', 'Hospital Doctor HernƔn Henrƭquez Aravena'),
(3191, 2314, 'en', 'name', 'Grant Medical Center'),
(3192, 2315, 'en', 'name', 'Zhongshan Hospital of Xiamen University'),
(3193, 2315, 'zh', 'name', 'åŽ¦é—Øå¤§å­¦é™„å±žäø­å±±åŒ»é™¢'),
(3194, 2316, 'en', 'name', 'Grant Medical College and Sir Jamshedjee Jeejeebhoy Group of Hospitals'),
(3195, 2317, 'en', 'name', 'Grantham Hospital'),
(3196, 2317, 'zh', 'name', 'č‘›é‡ę“Ŗé†«é™¢'),
(3197, 2318, 'en', 'name', 'Acıbadem Kadıkƶy Hospital'),
(3198, 2318, 'tr', 'name', 'Kadıkƶy Hastanesi'),
(3199, 2319, 'en', 'name', 'Great Western Hospital'),
(3200, 2320, 'en', 'name', 'Greater Baltimore Medical Center'),
(3201, 2321, 'no_lang_code', 'name', 'Adan Hospital'),
(3202, 2321, 'ar', 'name', 'مستؓفى العدان'),
(3203, 2322, 'en', 'name', 'Canadian Agency for Drugs and Technologies in Health'),
(3204, 2323, 'en', 'name', 'Acıbadem Adana Hospital'),
(3205, 2324, 'it', 'name', 'Ospedale Cristo Re'),
(3206, 2325, 'en', 'name', 'Crittenton Hospital Medical Center'),
(3207, 2326, 'tr', 'name', 'Adana Numune Eğitim ve Araştırma Hastanesi'),
(3208, 2327, 'en', 'name', 'Canadian Foundation for Healthcare Improvement'),
(3209, 2328, 'es', 'name', 'Hospital Ruber Internacional'),
(3210, 2329, 'tr', 'name', 'Medeniyet Üniversitesi Göztepe Eğitim ve Araştırma Hastanesi'),
(3211, 2330, 'en', 'name', 'Addington Hospital'),
(3212, 2331, 'de', 'name', 'Krankenanstalt Rudolfstiftung der Stadt Wien'),
(3213, 2332, 'fr', 'name', 'Association MƩdicale Canadienne'),
(3214, 2332, 'en', 'name', 'Canadian Medical Association'),
(3215, 2333, 'en', 'name', 'University Hospital Crosshouse'),
(3216, 2334, 'en', 'name', 'Crouse Hospital'),
(3217, 2335, 'en', 'name', 'Greenbrier Valley Medical Center'),
(3218, 2336, 'en', 'name', 'Crozer-Keystone Health System'),
(3219, 2337, 'en', 'name', 'Greenslopes Private Hospital'),
(3220, 2338, 'en', 'name', 'Canberra Hospital'),
(3221, 2339, 'en', 'name', 'Administration of Occupational Safety and Health'),
(3222, 2339, 'is', 'name', 'Vinnueftirlitiư'),
(3223, 2340, 'es', 'name', 'Hospital Rio Carrion'),
(3224, 2341, 'en', 'name', 'AC Camargo Hospital'),
(3225, 2342, 'en', 'name', 'Greenwich Hospital'),
(3226, 2343, 'en', 'name', 'Australian Centre for Disease Preparedness'),
(3227, 2344, 'en', 'name', 'Grey Nuns Community Hospital'),
(3228, 2345, 'pt', 'name', 'Hospital of St. Francis Xavier'),
(3229, 2346, 'en', 'name', 'Advocate Health Care'),
(3230, 2347, 'en', 'name', 'Advocate Children''s Hospital'),
(3231, 2348, 'en', 'name', 'University of North Carolina Health Care'),
(3232, 2349, 'en', 'name', 'Grey''s Hospital'),
(3233, 2350, 'en', 'name', 'Advocate Children''s Hospital'),
(3234, 2351, 'en', 'name', 'Groote Schuur Hospital'),
(3235, 2352, 'en', 'name', 'Canniesburn Hospital'),
(3236, 2353, 'it', 'name', 'Ospedale Cannizzaro'),
(3237, 2354, 'no_lang_code', 'name', 'Aetna (United States)'),
(3238, 2355, 'en', 'name', 'Ganesh Shankar Vidyarthi Memorial Medical College'),
(3239, 2355, 'hi', 'name', 'ą¤—ą¤£ą„‡ą¤¶ शंकर ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤°ą„ą¤„ą„€ ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(3240, 2356, 'no_lang_code', 'name', 'Guru Teg Bahadur Hospital'),
(3241, 2357, 'en', 'name', 'Canterbury Health Laboratories'),
(3242, 2358, 'en', 'name', 'Health Sciences and Nutrition'),
(3243, 2359, 'fr', 'name', 'HƓpital Saint-Vincent-de-Paul'),
(3244, 2360, 'en', 'name', 'Guangdong General Hospital'),
(3245, 2360, 'zh', 'name', 'å¹æäøœēœč€å¹“åŒ»å­¦ē ”ē©¶ę‰€'),
(3246, 2361, 'tr', 'name', 'Gƶztepe Şafak Hastanesi'),
(3247, 2362, 'de', 'name', 'Kantonsspital Aarau'),
(3248, 2363, 'es', 'name', 'Hospital San Borja ArriarƔn'),
(3249, 2364, 'es', 'name', 'Hospital San Juan de Dios'),
(3250, 2365, 'pt', 'name', 'Hospital Curry Cabral'),
(3251, 2366, 'es', 'name', 'Hospital San Juan de Dios'),
(3252, 2367, 'en', 'name', 'Affiliated Hospital of Chengde Medical College'),
(3253, 2367, 'zh', 'name', 'ę‰æå¾·åŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(3254, 2368, 'en', 'name', 'Kasumigaura Medical Center'),
(3255, 2368, 'ja', 'name', 'éœžćƒ¶ęµ¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3256, 2369, 'es', 'name', 'Centro de Alta Resolución San MillÔn'),
(3257, 2370, 'en', 'name', 'Affiliated Hospital of Guangdong Medical College Hospital'),
(3258, 2371, 'en', 'name', 'Grochowski Hospital'),
(3259, 2372, 'en', 'name', 'Cape Cod Hospital'),
(3260, 2373, 'en', 'name', 'Inner Mongolia Medical College Hospital'),
(3261, 2373, 'zh', 'name', 'å†…č’™å¤åŒ»ē§‘å¤§å­¦é™„å±žåŒ»é™¢'),
(3262, 2374, 'en', 'name', 'Cantox Health Sciences International'),
(3263, 2375, 'en', 'name', 'Cape Fear Valley Medical Center'),
(3264, 2376, 'en', 'name', 'Victoria General Hospital'),
(3265, 2377, 'en', 'name', 'Capital District Health Authority'),
(3266, 2378, 'en', 'name', 'Affiliated Hospital of Jiangxi College of TCM'),
(3267, 2378, 'zh', 'name', 'ę±Ÿč„æäø­åŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(3268, 2379, 'en', 'name', 'Green Pastures Hospital and Rehabilitation Centre'),
(3269, 2380, 'en', 'name', 'Ningxia Medical University General Hospital'),
(3270, 2380, 'zh', 'name', 'å®å¤åŒ»ē§‘å¤§å­¦ę€»åŒ»é™¢'),
(3271, 2381, 'en', 'name', 'Affiliated Hospital of North Sichuan Medical College'),
(3272, 2381, 'zh', 'name', '川北医学院附属医院'),
(3273, 2382, 'en', 'name', 'Touro University Nevada'),
(3274, 2382, 'fr', 'name', 'UniversitƩ touro du nevada'),
(3275, 2383, 'en', 'name', 'Affiliated Hospital of Xuzhou Medical College'),
(3276, 2384, 'en', 'name', 'Cappagh National Orthopaedic Hospital'),
(3277, 2385, 'en', 'name', 'Guangzhou Medical University Cancer Hospital'),
(3278, 2385, 'zh', 'name', 'å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žč‚æē˜¤åŒ»é™¢'),
(3279, 2386, 'es', 'name', 'Hospital San Pedro de AlcƔntara'),
(3280, 2387, 'en', 'name', 'Dade County Medical Examiner Department'),
(3281, 2388, 'no_lang_code', 'name', 'Daegu Fatima Hospital'),
(3282, 2388, 'ko', 'name', 'ėŒ€źµ¬ķŒŒķ‹°ė§ˆė³‘ģ›'),
(3283, 2389, 'en', 'name', 'Cardinal Glennon Children’s Medical Center'),
(3284, 2390, 'fr', 'name', 'Centre Hospitalier Universitaire de Rabat-SalƩ'),
(3285, 2391, 'no_lang_code', 'name', 'Daehang Hospital'),
(3286, 2391, 'ko', 'name', 'ėŒ€ķ•­ė³‘ģ›'),
(3287, 2392, 'en', 'name', 'Agency for Healthcare Research and Quality'),
(3288, 2393, 'tr', 'name', 'Ɩzel Trakya Hastanesi'),
(3289, 2394, 'en', 'name', 'Guangdong Province Stomatological Hospital'),
(3290, 2394, 'zh', 'name', 'å¹æäøœēœå£č…”åŒ»é™¢'),
(3291, 2395, 'es', 'name', 'Hospital Santa Caterina'),
(3292, 2396, 'en', 'name', 'Daisy Hill Hospital'),
(3293, 2396, 'ga', 'name', 'Otharlann Chnoc na Nóiníní'),
(3294, 2397, 'en', 'name', 'CARE Hospitals'),
(3295, 2398, 'en', 'name', 'Kijabe Hospital'),
(3296, 2399, 'en', 'name', 'Guangzhou Eighth People''s Hospital'),
(3297, 2399, 'zh', 'name', 'å¹æå·žåø‚ē¬¬å…«äŗŗę°‘åŒ»é™¢'),
(3298, 2400, 'pt', 'name', 'Hospital de Santa Cruz'),
(3299, 2401, 'en', 'name', 'Guangzhou Chest Hospital'),
(3300, 2401, 'zh', 'name', 'å¹æå·žåø‚čƒøē§‘åŒ»é™¢'),
(3301, 2402, 'pt', 'name', 'Hospital Santa Izabel'),
(3302, 2403, 'en', 'name', 'Dallas Diabetes Research Center'),
(3303, 2404, 'en', 'name', 'Carilion Roanoke Memorial Hospital'),
(3304, 2405, 'pt', 'name', 'Hospital Santa Marcelina'),
(3305, 2406, 'en', 'name', 'Aichi Prefectural University'),
(3306, 2406, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å¤§å­¦'),
(3307, 2407, 'en', 'name', 'Covenant Health'),
(3308, 2408, 'es', 'name', 'Hospital General Universitario Santa MarĆ­a del Rosell'),
(3309, 2409, 'en', 'name', 'Tumor Hospital of Guangxi Medical University'),
(3310, 2409, 'zh', 'name', 'å¹æč„æåŒ»ē§‘å¤§å­¦č‚æē˜¤åŒ»é™¢'),
(3311, 2410, 'no_lang_code', 'name', 'Caritas Medical Centre'),
(3312, 2410, 'zh', 'name', 'ę˜Žę„›é†«é™¢'),
(3313, 2411, 'en', 'name', 'General Hospital of Guangzhou Military Command'),
(3314, 2411, 'zh', 'name', 'å¹æå·žå†›åŒŗå¹æå·žę€»åŒ»é™¢'),
(3315, 2412, 'es', 'name', 'Hospital Santiago Apostol'),
(3316, 2413, 'pt', 'name', 'Hospital de Santo António'),
(3317, 2414, 'pt', 'name', 'Hospital Santo António dos Capuchos'),
(3318, 2415, 'en', 'name', 'Air Force General Hospital PLA'),
(3319, 2416, 'ms', 'name', 'Hospital Selayang'),
(3320, 2417, 'es', 'name', 'Hospital Sierrallana'),
(3321, 2418, 'no_lang_code', 'name', 'Dammam Central Hospital'),
(3322, 2418, 'ar', 'name', 'مستؓفى الدمام Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(3323, 2419, 'en', 'name', 'Carlo Forlanini Hospital'),
(3324, 2420, 'en', 'name', 'Dallas VA Medical Center'),
(3325, 2421, 'en', 'name', 'Airedale General Hospital'),
(3326, 2422, 'en', 'name', 'Aishin Memorial Hospital'),
(3327, 2422, 'ja', 'name', 'ę„›åæƒćƒ”ćƒ¢ćƒŖć‚¢ćƒ«ē—…é™¢'),
(3328, 2423, 'ms', 'name', 'Hospital Sultanah Aminah'),
(3329, 2423, 'en', 'name', 'Sultanah Aminah Hospital'),
(3330, 2424, 'no_lang_code', 'name', 'Aizawa Hospital'),
(3331, 2424, 'ja', 'name', '相澤病院'),
(3332, 2425, 'en', 'name', 'Akashi Medical Center'),
(3333, 2425, 'ja', 'name', 'ę˜ŽēŸ³åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3334, 2426, 'pt', 'name', 'Hospital SĆ£o Rafael'),
(3335, 2427, 'en', 'name', 'Akashi Municipal City Hospital'),
(3336, 2427, 'ja', 'name', 'ę˜ŽēŸ³åø‚ē«‹åø‚ę°‘ē—…é™¢'),
(3337, 2428, 'pt', 'name', 'Hospital São Teotónio'),
(3338, 2429, 'en', 'name', 'Carmel Medical Center'),
(3339, 2430, 'en', 'name', 'Akita Red Cross Hospital'),
(3340, 2430, 'ja', 'name', 'ē§‹ē”°čµ¤åå­—ē—…é™¢'),
(3341, 2431, 'pt', 'name', 'Hospital SĆ­rio-LibanĆŖs'),
(3342, 2431, 'en', 'name', 'Syrian-Lebanese Hospital'),
(3343, 2432, 'en', 'name', 'Akron Children''s Hospital'),
(3344, 2433, 'en', 'name', 'Carney Hospital'),
(3345, 2434, 'en', 'name', 'Darent Valley Hospital'),
(3346, 2435, 'es', 'name', 'Hospital General de Agudos Dr. TEODORO ALVAREZ'),
(3347, 2436, 'en', 'name', 'Summa Akron City Hospital'),
(3348, 2437, 'ms', 'name', 'Hospital Tengku Ampuan Afzan'),
(3349, 2438, 'en', 'name', 'Caroline Chisholm Centre for Health Ethics'),
(3350, 2439, 'en', 'name', 'Carl T. Hayden Veterans Affairs Medical Center'),
(3351, 2440, 'en', 'name', 'Al Ain Hospital'),
(3352, 2440, 'ar', 'name', 'مستؓفى Ų§Ł„Ų¹ŁŠŁ†'),
(3353, 2441, 'es', 'name', 'Complejo Hospitalario TorrecƔrdenas'),
(3354, 2442, 'en', 'name', 'Al Amal Hospital Jeddah'),
(3355, 2443, 'en', 'name', 'Al-Ameen Medical College'),
(3356, 2444, 'en', 'name', 'Corniche Hospital'),
(3357, 2444, 'ar', 'name', 'مستؓفى Ų§Ł„ŁƒŁˆŲ±Ł†ŁŠŲ“ Ł„Ł„Ų£Ł…ŁˆŁ…Ų©'),
(3358, 2445, 'eu', 'name', 'Hospital Txagorritxu'),
(3359, 2446, 'en', 'name', 'Day General Hospital'),
(3360, 2446, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† دی'),
(3361, 2447, 'en', 'name', 'Armed Forces Hospital'),
(3362, 2448, 'fr', 'name', 'Hopital Universitaire Habib Bourguiba'),
(3363, 2449, 'no_lang_code', 'name', 'Habib hospital Thameur'),
(3364, 2450, 'en', 'name', 'Carraway Methodist Medical Center'),
(3365, 2451, 'en', 'name', 'Casa Colina Centers for Rehabilitation'),
(3366, 2452, 'no_lang_code', 'name', 'Al Nahdha Hospital'),
(3367, 2452, 'ar', 'name', 'مستؓفى النهضة'),
(3368, 2453, 'it', 'name', 'Casa Sollievo della Sofferenza'),
(3369, 2453, 'en', 'name', 'Home for Relief of the Suffering'),
(3370, 2454, 'es', 'name', 'Hospital Vargas'),
(3371, 2455, 'es', 'name', 'Hospital Vega Baja'),
(3372, 2456, 'es', 'name', 'Hospital Virgen de la Concha'),
(3373, 2457, 'es', 'name', 'Hospital Virgen de la Luz'),
(3374, 2458, 'nl', 'name', 'Jeroen Bosch Ziekenhuis'),
(3375, 2459, 'en', 'name', 'Castle Hill Hospital'),
(3376, 2460, 'en', 'name', 'Latifa Hospital'),
(3377, 2461, 'no_lang_code', 'name', 'Amiri Hospital'),
(3378, 2461, 'ar', 'name', 'المستؓفى Ų§Ł„Ų£Ł…ŁŠŲ±ŁŠ'),
(3379, 2462, 'no_lang_code', 'name', 'Jahra Hospital'),
(3380, 2462, 'ar', 'name', 'مستؓفى الجهراؔ'),
(3381, 2463, 'en', 'name', 'Al Noor Hospitals'),
(3382, 2464, 'no_lang_code', 'name', 'Haibara General Hospital'),
(3383, 2464, 'ja', 'name', 'ę¦›åŽŸē·åˆē—…é™¢'),
(3384, 2465, 'es', 'name', 'Hospital Virgen de los Lirios'),
(3385, 2466, 'en', 'name', 'Catalyst Health Economics Consultants Ltd'),
(3386, 2467, 'es', 'name', 'Hospital Virgen del Camino'),
(3387, 2468, 'en', 'name', 'Hairmyres Hospital'),
(3388, 2469, 'es', 'name', 'Hospital Virgen del Puerto'),
(3389, 2470, 'en', 'name', 'Al-Sabah Hospital'),
(3390, 2471, 'en', 'name', 'Catawba Valley Medical Center'),
(3391, 2472, 'en', 'name', 'Alameda Health System'),
(3392, 2473, 'en', 'name', 'Hakodate Central General Hospital'),
(3393, 2473, 'ja', 'name', '函館中央病院'),
(3394, 2474, 'en', 'name', 'Alaska Department of Health and Social Services'),
(3395, 2475, 'es', 'name', 'Hospital Vozandes'),
(3396, 2476, 'en', 'name', 'Cathay General Hospital'),
(3397, 2477, 'sv', 'name', 'Hallands sjukhus Halmstad'),
(3398, 2478, 'en', 'name', 'Halton General Hospital'),
(3399, 2479, 'es', 'name', 'Hospital Xeral Calde'),
(3400, 2480, 'en', 'name', 'Alaska Native Medical Center'),
(3401, 2481, 'no_lang_code', 'name', 'Hamad General Hospital'),
(3402, 2482, 'en', 'name', 'Community Regional Medical Center'),
(3403, 2483, 'en', 'name', 'Deaconess Hospital'),
(3404, 2484, 'en', 'name', 'Deaconess Hospital'),
(3405, 2485, 'en', 'name', 'Deaconess Hospital'),
(3406, 2486, 'en', 'name', 'Hamad Medical Corporation'),
(3407, 2487, 'en', 'name', 'Deaconess Hospital'),
(3408, 2488, 'en', 'name', 'Catholic Health Association of the United States'),
(3409, 2489, 'en', 'name', 'Alaska Native Tribal Health Consortium'),
(3410, 2490, 'fr', 'name', 'HƓtel-Dieu de France'),
(3411, 2491, 'fr', 'name', 'Hotel Dieu Hospital'),
(3412, 2492, 'en', 'name', 'University of Cincinnati Medical Center'),
(3413, 2493, 'en', 'name', 'DeKalb Medical Center'),
(3414, 2494, 'en', 'name', 'Houston Medical Center'),
(3415, 2495, 'en', 'name', 'Albert Schweitzer Hospital'),
(3416, 2495, 'fr', 'name', 'HƓpital albert-schweitzer'),
(3417, 2496, 'en', 'name', 'Halifax Health Medical Center'),
(3418, 2497, 'en', 'name', 'Alberta Health'),
(3419, 2498, 'en', 'name', 'Delaware County Memorial Hospital'),
(3420, 2499, 'en', 'name', 'Center for Devices and Radiological Health'),
(3421, 2500, 'en', 'name', 'New Mexico VA Health Care System'),
(3422, 2501, 'en', 'name', 'Gunma Prefectural Institute of Public Health and Environmental Sciences'),
(3423, 2501, 'ja', 'name', 'ē¾¤é¦¬ēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(3424, 2502, 'en', 'name', 'Alder Hey Children''s Hospital'),
(3425, 2503, 'en', 'name', 'Center for Health Care Law'),
(3426, 2504, 'en', 'name', 'Cook Children''s Medical Center'),
(3427, 2505, 'no_lang_code', 'name', 'Gweru Provincial Hospital'),
(3428, 2506, 'en', 'name', 'Alexandra Hospital'),
(3429, 2507, 'en', 'name', 'Alexandra Hospital'),
(3430, 2507, 'zh', 'name', 'äŗšåŽ†å±±å¤§åŒ»é™¢'),
(3431, 2508, 'en', 'name', 'Alexandra Hospital'),
(3432, 2509, 'en', 'name', 'Haga Hospital'),
(3433, 2509, 'nl', 'name', 'HagaZiekenhuis'),
(3434, 2510, 'en', 'name', 'Inova Alexandria Hospital'),
(3435, 2511, 'en', 'name', 'Mackay Memorial Hospital'),
(3436, 2511, 'zh', 'name', '馬偕瓀念醫院'),
(3437, 2512, 'en', 'name', 'Guthrie Hospice'),
(3438, 2513, 'no_lang_code', 'name', 'Hafez Hospital'),
(3439, 2513, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† حافظ'),
(3440, 2514, 'no_lang_code', 'name', 'Huadong Hospital'),
(3441, 2514, 'zh', 'name', 'å¤ę—¦å¤§å­¦é™„å±žåŽäøœåŒ»é™¢'),
(3442, 2515, 'en', 'name', 'Center for Studying Health System Change'),
(3443, 2516, 'en', 'name', 'Alexian Brothers Medical Center'),
(3444, 2517, 'en', 'name', 'Center for Urban Population Health'),
(3445, 2518, 'en', 'name', 'Haifa Medical Center'),
(3446, 2519, 'no_lang_code', 'name', 'Tianjin Huanhu Hospital'),
(3447, 2519, 'zh', 'name', 'å¤©ę“„åø‚ēŽÆę¹–åŒ»é™¢'),
(3448, 2520, 'en', 'name', 'Hubei Cancer Hospital'),
(3449, 2520, 'zh', 'name', 'ę¹–åŒ—ēœč‚æē˜¤åŒ»é™¢'),
(3450, 2521, 'en', 'name', 'Alice Ho Miu Ling Nethersole Hospital'),
(3451, 2521, 'zh', 'name', 'é›…éŗ—ę°ä½•å¦™é½”é‚£ę‰“ē“ é†«é™¢'),
(3452, 2522, 'en', 'name', 'Alice Springs Hospital'),
(3453, 2523, 'en', 'name', 'Center for Epidemiology and Animal Health'),
(3454, 2524, 'en', 'name', 'Johns Hopkins All Children''s Hospital'),
(3455, 2525, 'en', 'name', 'Hamilton General Hospital'),
(3456, 2526, 'en', 'name', 'Centinela Hospital Medical Center'),
(3457, 2527, 'en', 'name', 'All India Institute of Hygiene and Public Health'),
(3458, 2527, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ जन ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(3459, 2528, 'en', 'name', 'Hamanomachi Hospital'),
(3460, 2528, 'ja', 'name', 'ęµœć®ē”ŗē—…é™¢'),
(3461, 2529, 'en', 'name', 'Royal Derby Hospital'),
(3462, 2530, 'en', 'name', 'Allama Iqbal Medical College'),
(3463, 2530, 'ur', 'name', 'علامہ اقبال Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(3464, 2531, 'en', 'name', 'Allegheny General Hospital'),
(3465, 2532, 'en', 'name', 'Derbyshire Children''s Hospital'),
(3466, 2533, 'en', 'name', 'Allen Hospital'),
(3467, 2534, 'en', 'name', 'Lehigh Valley Hospital'),
(3468, 2535, 'en', 'name', 'Allergy and Asthma Medical Group and Research Center'),
(3469, 2536, 'en', 'name', 'Derriford Hospital'),
(3470, 2537, 'en', 'name', 'Hammersmith Hospital'),
(3471, 2538, 'en', 'name', 'UPMC Hamot'),
(3472, 2539, 'en', 'name', 'Humber River Regional Hospital'),
(3473, 2540, 'en', 'name', 'Banner Desert Medical Center'),
(3474, 2541, 'en', 'name', 'Handa City Hospital'),
(3475, 2541, 'ja', 'name', 'åŠē”°åø‚ē«‹åŠē”°ē—…é™¢'),
(3476, 2542, 'en', 'name', 'Allina Health'),
(3477, 2543, 'en', 'name', 'Central Chest Institute of Thailand'),
(3478, 2544, 'en', 'name', 'Alta Bates Summit Medical Center'),
(3479, 2545, 'en', 'name', 'Altnagelvin Area Hospital'),
(3480, 2546, 'en', 'name', 'Hunter Holmes McGuire VA Medical Center'),
(3481, 2547, 'en', 'name', 'Hangzhou First People''s Hospital'),
(3482, 2547, 'zh', 'name', 'ę­å·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(3483, 2548, 'it', 'name', 'Azienda Ospedaliera di Desio e Vimercate'),
(3484, 2549, 'en', 'name', 'Hangzhou Red Cross Hospital'),
(3485, 2549, 'zh', 'name', 'ę­å·žåø‚ēŗ¢åå­—ä¼šåŒ»é™¢'),
(3486, 2550, 'en', 'name', 'Central DuPage Hospital'),
(3487, 2551, 'en', 'name', 'Hanil General Hospital'),
(3488, 2551, 'ko', 'name', 'ķ•œģ „ė³‘ģ›'),
(3489, 2552, 'en', 'name', 'Hunter Medical Research Institute'),
(3490, 2553, 'en', 'name', 'Hunterdon Medical Center'),
(3491, 2554, 'sv', 'name', 'VƤstmanlands sjukhus VƤsterƄs'),
(3492, 2555, 'en', 'name', 'Karlstad Central Hospital'),
(3493, 2556, 'en', 'name', 'Hanoi School Of Public Health'),
(3494, 2556, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y tįŗæ cĆ“ng cį»™ng'),
(3495, 2557, 'en', 'name', 'Amager Hospital'),
(3496, 2558, 'en', 'name', 'Hanusch Hospital'),
(3497, 2558, 'de', 'name', 'Hanusch-Krankenhaus'),
(3498, 2559, 'en', 'name', 'Hutt Hospital'),
(3499, 2560, 'en', 'name', 'Hanwa Memorial Hospital'),
(3500, 2560, 'ja', 'name', 'é˜Ŗå’ŒčØ˜åæµē—…é™¢'),
(3501, 2561, 'en', 'name', 'Dewsbury and District Hospital'),
(3502, 2562, 'en', 'name', 'Amala Institute of Medical Sciences'),
(3503, 2562, 'ml', 'name', 'ą“…ą“®ą“² ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“Ÿąµą“Ÿąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“øą“Æąµ»ą“øą“øąµ'),
(3504, 2563, 'en', 'name', 'Hutzel Women''s Hospital'),
(3505, 2564, 'en', 'name', 'MedStar Harbor Hospital'),
(3506, 2565, 'it', 'name', 'Ospedale Amedeo di Savoia'),
(3507, 2566, 'en', 'name', 'Dhahran Health Center'),
(3508, 2567, 'en', 'name', 'America''s Health Insurance Plans'),
(3509, 2568, 'en', 'name', 'Dhaka Medical College and Hospital'),
(3510, 2568, 'bn', 'name', 'ঢাকা মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(3511, 2569, 'en', 'name', 'Harefield Hospital'),
(3512, 2570, 'en', 'name', 'ABC Medical Center'),
(3513, 2570, 'es', 'name', 'Centro MƩdico ABC'),
(3514, 2571, 'en', 'name', 'Huzhou Central Hospital'),
(3515, 2571, 'zh', 'name', 'ę¹–å·žåø‚äø­åæƒåŒ»é™¢'),
(3516, 2572, 'en', 'name', 'American Health Care Association'),
(3517, 2573, 'en', 'name', 'Harold Wood Hospital'),
(3518, 2574, 'en', 'name', 'PBMA''s H.V. Desai Eye Hospital'),
(3519, 2575, 'en', 'name', 'Diakonhjemmet Hospital'),
(3520, 2576, 'en', 'name', 'Harris Health System'),
(3521, 2577, 'en', 'name', 'Diana Princess of Wales Hospital'),
(3522, 2578, 'en', 'name', 'Harrisburg Hospital'),
(3523, 2579, 'en', 'name', 'American Hospital'),
(3524, 2579, 'tr', 'name', 'Amerikan Hastanesi'),
(3525, 2580, 'en', 'name', 'American Hospital Association'),
(3526, 2581, 'en', 'name', 'Cattinara Hospital'),
(3527, 2581, 'it', 'name', 'Ospedale di Cattinara'),
(3528, 2582, 'en', 'name', 'Centennial Medical Center'),
(3529, 2583, 'en', 'name', 'Hyogo Prefectural Amagasaki General Medical Center'),
(3530, 2583, 'ja', 'name', 'å…µåŗ«ēœŒē«‹å°¼å“Žē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3531, 2584, 'tr', 'name', 'Dışkapı Yıldırım Beyazıt Eğitim ve Araştırma Hastanesi'),
(3532, 2585, 'en', 'name', 'Hyogo Ion Beam Medical Center'),
(3533, 2585, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ē²’å­ē·šåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3534, 2586, 'en', 'name', 'Inland Hospital'),
(3535, 2586, 'no', 'name', 'Sykehuset Innlandet'),
(3536, 2587, 'en', 'name', 'Rotherham General Hospital'),
(3537, 2588, 'en', 'name', 'American Public Health Association'),
(3538, 2589, 'en', 'name', 'Eastbourne District General Hospital'),
(3539, 2590, 'en', 'name', 'American School Health Association'),
(3540, 2591, 'en', 'name', 'American Society of Health-System Pharmacists'),
(3541, 2592, 'en', 'name', 'Amersham Hospital'),
(3542, 2593, 'en', 'name', 'Hammerfest Hospital'),
(3543, 2593, 'no', 'name', 'Hammerfest Sykehus'),
(3544, 2594, 'en', 'name', 'Aminu Kano Teaching Hospital'),
(3545, 2595, 'en', 'name', 'Hyogo Prefectural Awaji Medical Center'),
(3546, 2595, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ę·”č·ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3547, 2596, 'en', 'name', 'Harrogate District Hospital'),
(3548, 2597, 'en', 'name', 'Harry S. Truman Memorial Veterans'' Hospital'),
(3549, 2598, 'no_lang_code', 'name', 'Hyogo Prefectural Nishinomiya Hospital'),
(3550, 2598, 'ja', 'name', 'å…µåŗ«ēœŒē«‹č„æå®®ē—…é™¢'),
(3551, 2599, 'en', 'name', 'VA Long Beach Healthcare System'),
(3552, 2600, 'en', 'name', 'Washington DC VA Medical Center'),
(3553, 2601, 'en', 'name', 'Hyogo Social Welfare Corporation'),
(3554, 2601, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³äø­å¤®ē—…é™¢'),
(3555, 2602, 'en', 'name', 'Okazaki City Hospital'),
(3556, 2602, 'ja', 'name', 'å²”å“Žåø‚ę°‘ē—…é™¢'),
(3557, 2603, 'en', 'name', 'HyvinkƤƤ Hospital'),
(3558, 2604, 'en', 'name', 'Substance Abuse and Mental Health Services Administration'),
(3559, 2605, 'en', 'name', 'Rambam Health Care Campus'),
(3560, 2605, 'he', 'name', '×Ø×ž×‘"ם - הקריה הרפואית ×œ×‘×Ø×™××•×Ŗ ×”××“×ā€Ž'),
(3561, 2605, 'ar', 'name', 'مؓفى رمبام'),
(3562, 2606, 'en', 'name', 'Harvard–MIT Division of Health Sciences and Technology'),
(3563, 2607, 'fr', 'name', 'HƓpital 20 Aoƻt'),
(3564, 2608, 'en', 'name', 'Malcom Randall VA Medical Center'),
(3565, 2609, 'fi', 'name', 'Kanta-HƤmeen Keskussairaala'),
(3566, 2610, 'en', 'name', 'Andalusian School of Public Health'),
(3567, 2610, 'es', 'name', 'Escuela Andaluza de Salud PĆŗblica'),
(3568, 2611, 'fi', 'name', 'Keski-Pohjanmaan keskussairaala'),
(3569, 2612, 'en', 'name', 'AnMed Health Medical Center'),
(3570, 2613, 'fr', 'name', 'HƓpital Albert Calmette'),
(3571, 2614, 'fr', 'name', 'HƓpital Albert Michallon'),
(3572, 2615, 'en', 'name', 'Manhattan Eye, Ear and Throat Hospital'),
(3573, 2616, 'no', 'name', 'Helse FĆørde'),
(3574, 2617, 'en', 'name', 'University of Louisville Hospital'),
(3575, 2618, 'en', 'name', 'Central India Institute of Medical Sciences'),
(3576, 2619, 'tr', 'name', 'Haseki Eğitim ve Araştırma Hastanesi'),
(3577, 2620, 'fr', 'name', 'HƓpital Albert-Chenevier'),
(3578, 2621, 'fr', 'name', 'HƓpital Ambroise-ParƩ'),
(3579, 2622, 'en', 'name', 'Central Maine Medical Center'),
(3580, 2623, 'nl', 'name', 'Centraal Militair Hospitaal'),
(3581, 2623, 'en', 'name', 'Central Military Hospital'),
(3582, 2624, 'no_lang_code', 'name', 'De Gezondheidsdienst voor Dieren'),
(3583, 2625, 'no_lang_code', 'name', 'Hatyai Hospital'),
(3584, 2625, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø«ąø²ąø”ą¹ƒąø«ąøą¹ˆ'),
(3585, 2626, 'fi', 'name', 'Keski-Satakunnan Terveydenhuollon kuntayhtymƤ'),
(3586, 2627, 'fr', 'name', 'HƓpital l''Archet'),
(3587, 2628, 'fi', 'name', 'Hatanpaan Sairaala'),
(3588, 2628, 'en', 'name', 'HatanpƤƤ Hospital'),
(3589, 2629, 'en', 'name', 'Sydney South West Area Health Service'),
(3590, 2630, 'en', 'name', 'East Orange VA Medical Center'),
(3591, 2631, 'fr', 'name', 'HƓpital Aristide Le Dantec'),
(3592, 2632, 'en', 'name', 'Central Texas Veterans Health Care System'),
(3593, 2633, 'no_lang_code', 'name', 'Anjo Kosei Hospital'),
(3594, 2633, 'ja', 'name', 'å®‰åŸŽę›“ē”Ÿē—…é™¢'),
(3595, 2634, 'fr', 'name', 'HƓpital Avicenne'),
(3596, 2635, 'en', 'name', 'Hawaii Permanente Medical Group'),
(3597, 2636, 'no', 'name', 'Privatsykehuset Haugesund'),
(3598, 2637, 'tr', 'name', 'Ankara Atatürk Eğitim ve Araştırma Hastanesi'),
(3599, 2638, 'en', 'name', 'Omaha VA Medical Center'),
(3600, 2639, 'en', 'name', 'Hayashi Eye Hospital'),
(3601, 2640, 'en', 'name', 'Centre for Research in Medical Entomology'),
(3602, 2641, 'en', 'name', 'Hayatabad Medical Complex'),
(3603, 2642, 'fr', 'name', 'HƓpital Bonnet'),
(3604, 2643, 'tr', 'name', 'Haydarpaşa Numune Eğitim ve Araştırma Hastanesi'),
(3605, 2644, 'tr', 'name', 'Ankara Numune Eğitim ve Araştırma Hastanesi'),
(3606, 2645, 'fr', 'name', 'HƓpital Boucicaut'),
(3607, 2646, 'tr', 'name', 'Ankara Onkoloji Eğitim ve Araştırma Hastanesi'),
(3608, 2647, 'en', 'name', 'Sheba Medical Center'),
(3609, 2648, 'tr', 'name', 'Ankara Fizik Tedavi ve Rehabilitasyon Eğitim ve Araştırma Hastanesi'),
(3610, 2649, 'en', 'name', 'Chandka Medical College'),
(3611, 2650, 'en', 'name', 'Chang Gung Children''s Hospital'),
(3612, 2651, 'sv', 'name', 'LƤnssjukhuset i Kalmar'),
(3613, 2652, 'en', 'name', 'VA Ann Arbor Healthcare System'),
(3614, 2653, 'hu', 'name', 'Baranya Megyei KórhÔz'),
(3615, 2654, 'tr', 'name', 'Ulucanlar Göz Eğitim ve Araştırma Hastanesi'),
(3616, 2655, 'en', 'name', 'Nashville VA Medical Center'),
(3617, 2656, 'en', 'name', 'Haywood Community Hospital'),
(3618, 2657, 'en', 'name', 'Lurie Children''s Hospital'),
(3619, 2658, 'en', 'name', 'Anne Arundel Medical Center'),
(3620, 2659, 'no_lang_code', 'name', 'Shanghai Changzheng Hospital'),
(3621, 2660, 'it', 'name', 'Ospedale Annunziata di Cosenza'),
(3622, 2661, 'en', 'name', 'Wesley Medical Center'),
(3623, 2662, 'en', 'name', 'Changes in Health Care Financing & Organization'),
(3624, 2663, 'en', 'name', 'Changhua Christian Hospital'),
(3625, 2664, 'en', 'name', 'County Hospital'),
(3626, 2665, 'en', 'name', 'Chapel Allerton Hospital'),
(3627, 2666, 'tr', 'name', 'Antalya Eğitim ve Araştırma Hastanesi'),
(3628, 2667, 'en', 'name', 'Charing Cross Hospital'),
(3629, 2668, 'en', 'name', 'Health & Medical Publishing Group'),
(3630, 2669, 'en', 'name', 'Beijing Great Wall Hospital'),
(3631, 2669, 'zh', 'name', 'åŒ—äŗ¬åø‚é•æåŸŽåŒ»é™¢'),
(3632, 2670, 'sv', 'name', 'Helsingborgs lasarett'),
(3633, 2671, 'no_lang_code', 'name', 'Aomori Prefectural Central Hospital'),
(3634, 2671, 'ja', 'name', 'é’ę£®ēœŒē«‹äø­å¤®ē—…é™¢'),
(3635, 2672, 'en', 'name', 'Greenville Memorial Hospital'),
(3636, 2673, 'fr', 'name', 'HƓpital Charles-Nicolle'),
(3637, 2674, 'en', 'name', 'Aomori Rosai Hospital'),
(3638, 2674, 'ja', 'name', 'é’ę£®åŠ“ē½ē—…é™¢'),
(3639, 2675, 'en', 'name', 'Charleston Area Medical Center'),
(3640, 2676, 'en', 'name', 'Charlie Norwood VA Medical Center'),
(3641, 2677, 'en', 'name', 'Charlton Memorial Hospital'),
(3642, 2678, 'no_lang_code', 'name', 'Charoenkrung Pracharak Hospital'),
(3643, 2678, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ą¹€ąøˆąø£ąø“ąøąøąø£ąøøąø‡ąø›ąø£ąø°ąøŠąø²ąø£ąø±ąøąø©ą¹Œ'),
(3644, 2679, 'en', 'name', 'Chase Farm Hospital'),
(3645, 2680, 'en', 'name', 'Katsushika Medical Center'),
(3646, 2680, 'ja', 'name', 'č‘›é£¾åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(3647, 2681, 'en', 'name', 'Apollo Gleneagles Hospitals'),
(3648, 2682, 'en', 'name', 'Lexington VA Health Care System'),
(3649, 2683, 'en', 'name', 'Cheil General Hospital and Women''s Healthcare Center'),
(3650, 2684, 'en', 'name', 'Apollo Hospitals'),
(3651, 2685, 'en', 'name', 'Northport VA Medical Center'),
(3652, 2686, 'en', 'name', 'Cheltenham General Hospital'),
(3653, 2687, 'en', 'name', 'Hawke''s Bay Hospital'),
(3654, 2688, 'en', 'name', 'Cheng Ching Hospital'),
(3655, 2688, 'zh', 'name', 'ę¾„ęø…ę¹–åŒ»é™¢'),
(3656, 2689, 'en', 'name', 'Boise VA Medical Center'),
(3657, 2690, 'en', 'name', 'Cheng Hsin General Hospital'),
(3658, 2691, 'en', 'name', 'Memphis VA Medical Center'),
(3659, 2692, 'en', 'name', 'Cincinnati VA Medical Center'),
(3660, 2693, 'en', 'name', 'Kansas City VA Medical Center'),
(3661, 2694, 'en', 'name', 'Statistics Canada'),
(3662, 2694, 'fr', 'name', 'Statistique Canada'),
(3663, 2695, 'en', 'name', 'Chengde Medical University'),
(3664, 2695, 'zh', 'name', 'ę‰æå¾·åŒ»å­¦é™¢'),
(3665, 2696, 'en', 'name', 'Aquatic Animal Health Research Laboratory'),
(3666, 2697, 'en', 'name', 'Chengdu Military General Hospital'),
(3667, 2697, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęˆéƒ½å†›åŒŗę€»åŒ»é™¢'),
(3668, 2698, 'en', 'name', 'Arbor Research Collaborative for Health'),
(3669, 2699, 'fr', 'name', 'HƓpital Louis Pradel'),
(3670, 2700, 'en', 'name', 'Cheongju St. Mary''s Hospital'),
(3671, 2700, 'ko', 'name', '청주 성모 병원'),
(3672, 2701, 'en', 'name', 'Guglielmo da Saliceto Hospital'),
(3673, 2702, 'no_lang_code', 'name', 'Aretaeio Hospital'),
(3674, 2703, 'en', 'name', 'Chest Diseases Hospital'),
(3675, 2703, 'ar', 'name', 'المستؓفى Ų§Ł„ŲµŲÆŲ±ŁŠ'),
(3676, 2704, 'en', 'name', 'Oklahoma City VA Medical Center'),
(3677, 2705, 'fr', 'name', 'HƓpital Civil, Strasbourg'),
(3678, 2706, 'en', 'name', 'Chesterfield Royal Hospital'),
(3679, 2707, 'en', 'name', 'Argyll and Bute Hospital'),
(3680, 2708, 'fr', 'name', 'HƓpital Civil de Charleroi'),
(3681, 2709, 'en', 'name', 'Arizona Department of Health Services'),
(3682, 2710, 'en', 'name', 'Chestnut Hill Hospital'),
(3683, 2711, 'en', 'name', 'Centers for Medicare and Medicaid Services'),
(3684, 2712, 'en', 'name', 'Chi Mei Medical Center'),
(3685, 2713, 'nl', 'name', 'Gezondheidsraad'),
(3686, 2713, 'en', 'name', 'The Health Council of the Netherlands'),
(3687, 2714, 'en', 'name', 'G.V. (Sonny) Montgomery VA Medical Center'),
(3688, 2715, 'en', 'name', 'Arkansas Department of Health'),
(3689, 2716, 'en', 'name', 'Arkansas Foundation for Medical Care'),
(3690, 2717, 'en', 'name', 'Health Net'),
(3691, 2718, 'en', 'name', 'George E. Wahlen Department of VA Medical Center'),
(3692, 2719, 'en', 'name', 'Health Policy Alternatives, Inc.'),
(3693, 2720, 'en', 'name', 'Chiba Rosai Hospital'),
(3694, 2720, 'ja', 'name', 'åƒč‘‰åŠ“ē½ē—…é™¢'),
(3695, 2721, 'en', 'name', 'Michael E. DeBakey VA Medical Center'),
(3696, 2722, 'en', 'name', 'Chidicon Medical Center'),
(3697, 2723, 'en', 'name', 'Health Promotion Board'),
(3698, 2723, 'zh', 'name', 'ę–°åŠ å”äæå„äæƒčæ›å±€'),
(3699, 2724, 'en', 'name', 'Health Protection Scotland'),
(3700, 2725, 'en', 'name', 'Health Protection Surveillance Centre'),
(3701, 2725, 'ga', 'name', 'LƔrionad Faire um Chosaint SlƔinte'),
(3702, 2726, 'en', 'name', 'Health Resources Unlimited'),
(3703, 2727, 'en', 'name', 'Armed Forces Capital Hospital'),
(3704, 2727, 'zh', 'name', 'åœ‹č»é¦–éƒ½ē—…é™¢'),
(3705, 2727, 'ko', 'name', 'źµ­źµ°ģˆ˜ė„ė³‘ģ›'),
(3706, 2728, 'en', 'name', 'Health Sciences Authority'),
(3707, 2728, 'ms', 'name', 'Penguasa Sains Kesihatan'),
(3708, 2729, 'en', 'name', 'Armed Forces Health Surveillance Center'),
(3709, 2730, 'en', 'name', 'Dandenong Hospital'),
(3710, 2731, 'en', 'name', 'Louisville VA Medical Center'),
(3711, 2732, 'en', 'name', 'Dayton VA Medical Center'),
(3712, 2733, 'en', 'name', 'Providence VA Medical Center'),
(3713, 2734, 'en', 'name', 'Ottawa County Health Department'),
(3714, 2735, 'en', 'name', 'Milwaukee VA Medical Center'),
(3715, 2736, 'fr', 'name', 'HƓpital de Jolimont'),
(3716, 2737, 'en', 'name', 'Armed Forces Medical College'),
(3717, 2737, 'ml', 'name', 'ą“†ą“‚ą“”ąµ ą“«ąµ‹ą““ąµą“øą“øąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(3718, 2738, 'en', 'name', 'Amarillo VA Health Care System'),
(3719, 2739, 'en', 'name', 'Taoyuan Armed Forces General Hospital'),
(3720, 2739, 'zh', 'name', 'ę”ƒå›­ę­¦č£…éƒØé˜Ÿę€»åŒ»é™¢'),
(3721, 2740, 'en', 'name', 'St. Cloud VA Health Care System'),
(3722, 2741, 'fr', 'name', 'Centre hospitalier rƩgional de la Citadelle'),
(3723, 2742, 'en', 'name', 'Central Arkansas Veterans Healthcare System'),
(3724, 2743, 'en', 'name', 'VA Sierra Nevada Health Care System'),
(3725, 2744, 'en', 'name', 'Fukuoka University Tsukushi Hospital'),
(3726, 2744, 'ja', 'name', 'ē¦å²”å¤§å­¦ē­‘ē“«ē—…é™¢'),
(3727, 2745, 'en', 'name', 'VA Puget Sound Health Care System'),
(3728, 2746, 'fr', 'name', 'HƓpital de La Grave'),
(3729, 2747, 'en', 'name', 'Army Medical College'),
(3730, 2748, 'en', 'name', 'St. John’s Health Sciences Centre'),
(3731, 2749, 'en', 'name', 'Southern Arizona VA Health Care System'),
(3732, 2750, 'en', 'name', 'VA NY Harbor Healthcare System'),
(3733, 2751, 'fr', 'name', 'HƓpital de la Providence'),
(3734, 2752, 'en', 'name', 'Bay Pines VA Healthcare System'),
(3735, 2753, 'en', 'name', 'Health Services Academy'),
(3736, 2754, 'en', 'name', 'VA St. Louis Health Care System'),
(3737, 2755, 'en', 'name', 'VA Northern California Health Care System'),
(3738, 2756, 'fr', 'name', 'HƓpital de la Tour'),
(3739, 2757, 'en', 'name', 'Women''s & Children''s Health Research Institute'),
(3740, 2758, 'es', 'name', 'Hospital Arnau de Vilanova'),
(3741, 2759, 'en', 'name', 'Health South Rehabilitation Hospital'),
(3742, 2760, 'en', 'name', 'Arnold Palmer Hospital for Children'),
(3743, 2761, 'en', 'name', 'Children''s & Women''s Health Centre of British Columbia'),
(3744, 2762, 'en', 'name', 'Central Baptist Hospital'),
(3745, 2763, 'fr', 'name', 'HƓtel-Dieu de Lyon'),
(3746, 2764, 'en', 'name', 'Asahikawa City Hospital'),
(3747, 2764, 'ja', 'name', 'åø‚ē«‹ę—­å·ē—…é™¢'),
(3748, 2765, 'en', 'name', 'Miami VA Healthcare System'),
(3749, 2766, 'no_lang_code', 'name', 'Asahikawa Kosei Hospital'),
(3750, 2766, 'ja', 'name', 'ę—­å·åŽšē”Ÿē—…é™¢'),
(3751, 2767, 'en', 'name', 'HealthONE Spalding Rehabilitation Hospital'),
(3752, 2768, 'en', 'name', 'Children''s Hospital Colorado'),
(3753, 2769, 'fr', 'name', 'HƓpital de Sion'),
(3754, 2770, 'fr', 'name', 'HƓpital Debrousse'),
(3755, 2771, 'no_lang_code', 'name', 'Asahikawa University'),
(3756, 2771, 'ja', 'name', 'ę—­å·å¤§å­¦'),
(3757, 2772, 'en', 'name', 'Heartland Regional Medical Center'),
(3758, 2773, 'en', 'name', 'Japanese Red Cross Asahikawa Hospital'),
(3759, 2773, 'ja', 'name', 'ę—­å·čµ¤åå­—ē—…é™¢'),
(3760, 2774, 'en', 'name', 'Asanogawa General Hospital'),
(3761, 2774, 'ja', 'name', 'ęµ…ćƒŽå·ē·åˆē—…é™¢'),
(3762, 2775, 'en', 'name', 'Hebrew Hospital'),
(3763, 2776, 'en', 'name', 'Asir Central Hospital'),
(3764, 2776, 'ar', 'name', 'مستؓفى عسير Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(3765, 2777, 'fr', 'name', 'HƓpital des Diaconesses'),
(3766, 2778, 'en', 'name', 'Heidelberg Repatriation Hospital'),
(3767, 2779, 'en', 'name', 'Ashford Hospital'),
(3768, 2780, 'en', 'name', 'Children''s Hospital of New Orleans'),
(3769, 2781, 'fr', 'name', 'Hopital Universitaire Hedi Chaker'),
(3770, 2781, 'ar', 'name', 'المستؓفى Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ بصفاقس'),
(3771, 2782, 'en', 'name', 'Ashikaga Red Cross Hospital'),
(3772, 2782, 'ja', 'name', 'č¶³åˆ©čµ¤åå­—ē—…é™¢'),
(3773, 2783, 'en', 'name', 'Asklepios Hospital Barmbek'),
(3774, 2783, 'de', 'name', 'Asklepios Klinik Barmbek'),
(3775, 2784, 'en', 'name', 'Children''s Hospital of Winnipeg'),
(3776, 2785, 'en', 'name', 'Heilongjiang Provincial Hospital'),
(3777, 2785, 'zh', 'name', 'é»‘é¾™ę±ŸēœåŒ»é™¢'),
(3778, 2786, 'en', 'name', 'Cambridge Hospital'),
(3779, 2787, 'en', 'name', 'Helen Hayes Hospital'),
(3780, 2788, 'no_lang_code', 'name', 'Assaf Harofeh Medical Center'),
(3781, 2789, 'en', 'name', 'Sheffield Children''s Hospital'),
(3782, 2790, 'en', 'name', 'Assam Medical College'),
(3783, 2790, 'as', 'name', 'অসম ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(3784, 2791, 'en', 'name', 'Women & Children''s Hospital of Buffalo'),
(3785, 2792, 'pl', 'name', 'Okręgowy Szpital Kolejowy'),
(3786, 2793, 'en', 'name', 'General-Maternity District Hospital Helena Venizelou'),
(3787, 2793, 'el', 'name', 'Ī ĪµĻĪ¹Ļ†ĪµĻĪµĪ¹Ī±ĪŗĻŒ Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ - ĪœĪ±Ī¹ĪµĻ…Ļ„Ī®ĻĪ¹Īæ - "Ī•Ī›Ī•ĪĪ‘ Ī’Ī•ĪĪ™Ī–Ī•Ī›ĪŸĪ„"'),
(3788, 2794, 'en', 'name', 'Lok Nayak Jai Prakash Narayan Hospital'),
(3789, 2795, 'pt', 'name', 'Hospital Heliópolis'),
(3790, 2796, 'en', 'name', 'Association of Academic Health Centers'),
(3791, 2797, 'en', 'name', 'Association of Schools of Allied Health Professions'),
(3792, 2798, 'en', 'name', 'Hellenic Red Cross'),
(3793, 2798, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒĻ‚ Ī•ĻĻ…ĪøĻĻŒĻ‚ Ī£Ļ„Ī±Ļ…ĻĻŒĻ‚'),
(3794, 2799, 'no_lang_code', 'name', 'Assuta Medical Center'),
(3795, 2799, 'he', 'name', 'אהותא ×ž×Ø×›×–×™× ×Ø×¤×•××™×™×'),
(3796, 2800, 'en', 'name', 'Astley Ainslie Hospital'),
(3797, 2801, 'fr', 'name', 'HƓpital Laveran'),
(3798, 2802, 'tr', 'name', 'Ankara Atatürk Göğüs Hastalıkları Ve Göğüs Cerrahisi Eğitim Ve Araştırma Hastanesi'),
(3799, 2803, 'en', 'name', 'Henan Cancer Hospital'),
(3800, 2803, 'zh', 'name', 'ę²³å—ēœč‚æē˜¤åŒ»é™¢'),
(3801, 2804, 'en', 'name', 'Sydney Children''s Hospital'),
(3802, 2805, 'en', 'name', 'Doai Memorial Hospital'),
(3803, 2805, 'ja', 'name', 'åŒę„›čØ˜åæµē—…é™¢'),
(3804, 2806, 'fr', 'name', 'HIA du Val-de-Grâce à Paris'),
(3805, 2807, 'en', 'name', 'Piedmont Athens Regional'),
(3806, 2808, 'en', 'name', 'UCSF Benioff Children''s Hospital'),
(3807, 2809, 'en', 'name', 'Henan Provincial Institute of Occupational Health'),
(3808, 2809, 'zh', 'name', 'čŒäøšå„åŗ·ę²³å—ēœē ”ē©¶ę‰€'),
(3809, 2810, 'fr', 'name', 'HƓpital des Enfants'),
(3810, 2811, 'en', 'name', 'Juravinski Hospital'),
(3811, 2812, 'en', 'name', 'Capital Regional District'),
(3812, 2813, 'en', 'name', 'Hennepin County Medical Center'),
(3813, 2814, 'en', 'name', 'Doctors Hospital'),
(3814, 2815, 'en', 'name', 'Doctors Hospital'),
(3815, 2816, 'en', 'name', 'Doctors Medical Center'),
(3816, 2817, 'en', 'name', 'Athens Naval & Veterans Hospital'),
(3817, 2817, 'el', 'name', 'ĪĪ±Ļ…Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(3818, 2818, 'en', 'name', 'Atlanta VA Medical Center'),
(3819, 2819, 'en', 'name', 'Atlanta Medical Center'),
(3820, 2820, 'en', 'name', 'Doernbecher Children''s Hospital'),
(3821, 2821, 'en', 'name', 'AtlantiCare'),
(3822, 2822, 'en', 'name', 'Dominican Hospital'),
(3823, 2823, 'en', 'name', 'Children''s Hospital & Medical Center'),
(3824, 2824, 'pt', 'name', 'Hospital de Dona Estefânia'),
(3825, 2825, 'en', 'name', 'Henrico Doctors'' Hospital'),
(3826, 2826, 'en', 'name', 'Atlantic Health System'),
(3827, 2827, 'fr', 'name', 'HƓpital d''Instruction des ArmƩes Sainte-Anne'),
(3828, 2828, 'nl', 'name', 'Atrium Medisch Centrum Parkstad'),
(3829, 2829, 'en', 'name', 'Henry Mayo Newhall Memorial Hospital'),
(3830, 2830, 'en', 'name', 'Hera General Hospital'),
(3831, 2831, 'fr', 'name', 'Centre Hospitalier Edmond Garcin'),
(3832, 2832, 'en', 'name', 'Daping Hospital'),
(3833, 2832, 'zh', 'name', 'ē¬¬äø‰å†›åŒ»å¤§å­¦å¤§åŖåŒ»é™¢'),
(3834, 2833, 'en', 'name', 'Dartmouth Institute for Health Policy and Clinical Practice'),
(3835, 2834, 'en', 'name', 'Auburn Community Hospital'),
(3836, 2835, 'fr', 'name', 'HƓpital du Hasenrain'),
(3837, 2836, 'en', 'name', 'Hermanos Ameijeiras Hospital'),
(3838, 2836, 'es', 'name', 'Hospital ClĆ­nico QuirĆŗrgico "Hermanos Ameijeiras"'),
(3839, 2837, 'en', 'name', 'Memorial Hermann Institute for Rehabilitation and Research Foundation'),
(3840, 2838, 'en', 'name', 'Starship Children''s Health'),
(3841, 2839, 'en', 'name', 'Herning Regional Hospital'),
(3842, 2839, 'da', 'name', 'Regionshospitalet Herning'),
(3843, 2840, 'sv', 'name', 'Gƶteborgs barnsjukhus'),
(3844, 2841, 'de', 'name', 'Augusta Krankenhaus'),
(3845, 2842, 'nl', 'name', 'De Wever-Ziekenhuis'),
(3846, 2843, 'fr', 'name', 'HƓpital Riviera-Chablais'),
(3847, 2844, 'fr', 'name', 'Polyclinique de Bordeaux-Tondu'),
(3848, 2845, 'en', 'name', 'Children''s Hospital'),
(3849, 2845, 'ar', 'name', 'أطفال مستؓفى ŲŖŁˆŁ†Ų³'),
(3850, 2846, 'tr', 'name', 'Denizli Devlet Hastanesi'),
(3851, 2846, 'en', 'name', 'Denizli State Hospital'),
(3852, 2847, 'en', 'name', 'Riverview Psychiatric Center'),
(3853, 2848, 'en', 'name', 'Aultman Health Foundation'),
(3854, 2849, 'en', 'name', 'Aultman Hospital'),
(3855, 2850, 'en', 'name', 'Dorothea Dix Hospital'),
(3856, 2851, 'en', 'name', 'Highland Hospital'),
(3857, 2852, 'en', 'name', 'Aurelia Hospital'),
(3858, 2853, 'en', 'name', 'Highland Hospital'),
(3859, 2854, 'en', 'name', 'Children''s Hospital in Eastern Switzerland'),
(3860, 2854, 'de', 'name', 'Ostschweizer Kinderspital'),
(3861, 2855, 'en', 'name', 'Aurora Health Care'),
(3862, 2856, 'en', 'name', 'Dorset County Hospital'),
(3863, 2857, 'tr', 'name', 'GATA Haydarpaşa Eğitim Hastanesi'),
(3864, 2858, 'en', 'name', 'Hillel Yaffe Medical Center'),
(3865, 2859, 'fr', 'name', 'Centre Hospitalier de Mulhouse'),
(3866, 2860, 'en', 'name', 'Children''s Hospital of Wisconsin'),
(3867, 2861, 'no_lang_code', 'name', 'Aurum Institute'),
(3868, 2862, 'fr', 'name', 'Centre hospitalier Emile Roux'),
(3869, 2863, 'it', 'name', 'Azienda USL di Bologna'),
(3870, 2864, 'en', 'name', 'Hillingdon Hospital'),
(3871, 2865, 'en', 'name', 'Australian Centre for Sexual Health'),
(3872, 2866, 'no_lang_code', 'name', 'Himchan Hospital'),
(3873, 2866, 'ko', 'name', 'ė¶€ķ‰ ķž˜ģ°¬ė³‘ģ›'),
(3874, 2867, 'en', 'name', 'Himeji Medical Center'),
(3875, 2867, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē—…é™¢ę©Ÿę§‹ å§«č·ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3876, 2868, 'en', 'name', 'Himeji Red Cross Hospital'),
(3877, 2868, 'ja', 'name', 'å§«č·Æčµ¤åå­—ē—…é™¢'),
(3878, 2869, 'fr', 'name', 'HƓpital Foch'),
(3879, 2870, 'en', 'name', 'Austrian Agency for Health and Food Safety'),
(3880, 2870, 'de', 'name', 'Ɩsterreichische Agentur für Gesundheit und ErnƤhrungssicherheit'),
(3881, 2871, 'en', 'name', 'Hinchingbrooke Hospital'),
(3882, 2872, 'no_lang_code', 'name', 'Hindu Rao Hospital'),
(3883, 2873, 'en', 'name', 'Children''s Hospital at Dartmouth Hitchcock'),
(3884, 2874, 'fr', 'name', 'HƓpital Fontmaure'),
(3885, 2875, 'tr', 'name', 'Dr. BehƧet Uz Ƈocuk Hastalıkları Hastanesi'),
(3886, 2876, 'en', 'name', 'Dr Gray''s Hospital'),
(3887, 2877, 'en', 'name', 'Children''s Hospital at Montefiore'),
(3888, 2878, 'tr', 'name', 'Dr Lütfi Kırdar Kartal Eğitim ve Araştırma Hastanesi'),
(3889, 2879, 'en', 'name', 'Avera Health'),
(3890, 2880, 'en', 'name', 'University Hospital Ayr'),
(3891, 2881, 'en', 'name', 'Ayrshire Central Hospital'),
(3892, 2882, 'en', 'name', 'Hippocration General Hospital'),
(3893, 2882, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½ Ιπποκράτειο'),
(3894, 2883, 'it', 'name', 'Azienda Ospedaliera Ospedale San Carlo Borromeo'),
(3895, 2884, 'no_lang_code', 'name', 'Dr. Balabhai Nanavati Hospital'),
(3896, 2885, 'en', 'name', 'B.P. Koirala Institute of Health Sciences'),
(3897, 2885, 'ne', 'name', 'ą¤µą¤æą¤Ŗą„€ ą¤•ą„‹ą¤‡ą¤°ą¤¾ą¤²ą¤¾ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(3898, 2886, 'fr', 'name', 'HƓpital Gui de Chauliac'),
(3899, 2887, 'en', 'name', 'Dr. R. Ahmed Dental College and Hospital'),
(3900, 2887, 'bn', 'name', 'ঔাঃ আর আহমেদ ą¦”ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ ও হাসপাতাল'),
(3901, 2888, 'en', 'name', 'B.J. Medical College'),
(3902, 2889, 'en', 'name', 'Hamilton Medical Center'),
(3903, 2890, 'en', 'name', 'Bai Jerbai Wadia Hospital for Children'),
(3904, 2891, 'tr', 'name', 'Dr Sami Ulus Ƈocuk Sağlığı ve Hastalıkları Eğitim ve Araştırma Hastanesi'),
(3905, 2892, 'en', 'name', 'Bankura Sammilani Medical College'),
(3906, 2892, 'bn', 'name', 'বাঁকুঔ়া ą¦øą¦®ą§ą¦®ą¦æą¦²ą¦Øą§€ ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ'),
(3907, 2893, 'tr', 'name', 'Dr. Siyami Ersek Göğüs Kalp Ve Damar Cerrahisi Eğitim Ve Araştırma Hastanesi'),
(3908, 2894, 'no_lang_code', 'name', 'Hiraka General Hospital'),
(3909, 2894, 'ja', 'name', 'å¹³é¹æē·åˆē—…é™¢'),
(3910, 2895, 'en', 'name', 'Dr. V. M. Government Medical College'),
(3911, 2895, 'mr', 'name', 'ą¤”ą„‰. ą¤µą„ˆą¤¶ą¤‚ą¤Ŗą¤¾ą¤Æą¤Ø ą¤øą„ą¤®ą„ƒą¤¤ą„€ ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(3912, 2896, 'en', 'name', 'Baba Memorial Hospital'),
(3913, 2896, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗćƒšć‚¬ć‚µć‚¹ é¦¬å “čØ˜åæµē—…é™¢'),
(3914, 2897, 'en', 'name', 'Municipal Hirakata City Hospital'),
(3915, 2897, 'ja', 'name', 'åø‚ē«‹ęžšę–¹åø‚ę°‘ē—…é™¢'),
(3916, 2898, 'tr', 'name', 'Zekai Tahir Burak Kadın Sağlığı Eğitim ve Araştırma Hastanesi'),
(3917, 2899, 'en', 'name', 'Hiratsuka City Hospital'),
(3918, 2899, 'ja', 'name', 'å¹³å”šåø‚ę°‘ē—…é™¢'),
(3919, 2900, 'fr', 'name', 'Centre hospitalier pour enfants de l''est de l''Ontario'),
(3920, 2900, 'en', 'name', 'Children''s Hospital of Eastern Ontario'),
(3921, 2901, 'en', 'name', 'Driscoll Children''s Hospital'),
(3922, 2902, 'no_lang_code', 'name', 'Hiratsuka Kyosai Hospital'),
(3923, 2902, 'ja', 'name', 'å¹³å”šå…±ęøˆē—…é™¢'),
(3924, 2903, 'en', 'name', 'Hirosaki National Hospital'),
(3925, 2903, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å¼˜å‰ē—…é™¢'),
(3926, 2904, 'fr', 'name', 'HƓpital Jean-Verdier'),
(3927, 2905, 'fr', 'name', 'Centre Hospitalier Jean-Rostand'),
(3928, 2906, 'da', 'name', 'Dronning Ingrids Hospital'),
(3929, 2906, 'en', 'name', 'Queen Ingrid''s Hospital'),
(3930, 2907, 'en', 'name', 'Hiroshima City Asa Citizens Hospital'),
(3931, 2907, 'ja', 'name', 'åŗƒå³¶åø‚ē«‹å®‰ä½åø‚ę°‘ē—…é™¢'),
(3932, 2908, 'en', 'name', 'University Hospital of North Durham'),
(3933, 2909, 'en', 'name', 'Hiroshima General Hospital'),
(3934, 2909, 'ja', 'name', 'åŗƒå³¶ē·åˆē—…é™¢'),
(3935, 2910, 'en', 'name', 'Baby Memorial Hospital'),
(3936, 2911, 'en', 'name', 'Dubai Hospital'),
(3937, 2911, 'ar', 'name', 'مستؓفى ŲÆŲØŁ€Ł€Ł€ŁŠ'),
(3938, 2912, 'en', 'name', 'Bįŗ”ch Mai Hospital'),
(3939, 2912, 'vi', 'name', 'Bệnh viện Bįŗ”ch Mai'),
(3940, 2913, 'en', 'name', 'Children''s Hospital of Orange County'),
(3941, 2914, 'en', 'name', 'Dubai Health Authority'),
(3942, 2914, 'ar', 'name', 'Ł‡ŁŠŲ¦Ų© الصحة بدبي'),
(3943, 2915, 'no', 'name', 'BƦrum Sykehus'),
(3944, 2916, 'en', 'name', 'Hasbro Children''s Hospital'),
(3945, 2917, 'es', 'name', 'El Hospital General de Agudos Carlos G. Durand');
INSERT INTO `ror_settings` VALUES
(3946, 2918, 'en', 'name', 'Bahian School of Medicine and Public Health'),
(3947, 2918, 'pt', 'name', 'Escola Bahiana de Medicina e SaĆŗde PĆŗblica'),
(3948, 2919, 'en', 'name', 'Dunedin Public Hospital'),
(3949, 2920, 'no_lang_code', 'name', 'Hiroshima Prefectural Hospital'),
(3950, 2920, 'ja', 'name', 'ēœŒē«‹åŗƒå³¶ē—…é™¢'),
(3951, 2921, 'hu', 'name', 'Bajcsy-Zsilinszky KórhĆ”z Ć©s RendelőintĆ©zet'),
(3952, 2922, 'en', 'name', 'Hispanic Health Council'),
(3953, 2923, 'tr', 'name', 'Bakırköy Dr.Sadi Konuk Eğitim ve Araştırma Hastanesi'),
(3954, 2924, 'en', 'name', 'Hitachi General Hospital'),
(3955, 2924, 'ja', 'name', 'ę—„ē«‹ē·åˆē—…é™¢'),
(3956, 2925, 'en', 'name', 'Duke Children''s Hospital & Health Center'),
(3957, 2926, 'en', 'name', 'Hizen Psychiatric Center'),
(3958, 2926, 'ja', 'name', 'č‚„å‰ē²¾ē„žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3959, 2927, 'en', 'name', 'Duchess of Kent Children''s Hospital'),
(3960, 2927, 'zh', 'name', 'å¤§å£ē’°ę ¹å¾·å…¬ēˆµå¤«äŗŗå…’ē«„é†«é™¢'),
(3961, 2928, 'en', 'name', 'Bangalore Medical College and Research Institute'),
(3962, 2928, 'kn', 'name', 'ಬೆಂಗಳೂರು ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(3963, 2929, 'it', 'name', 'Ospedale dei Bambini Vittore Buzzi'),
(3964, 2930, 'no_lang_code', 'name', 'Hlabisa Hospital'),
(3965, 2931, 'fr', 'name', 'HƓpital Ophtalmique Jules-Gonin'),
(3966, 2932, 'fr', 'name', 'HƓpital Kirchberg'),
(3967, 2933, 'en', 'name', 'Children''s Medical Center'),
(3968, 2934, 'fr', 'name', 'HƓpital La Rabta'),
(3969, 2934, 'ar', 'name', 'المستؓفى Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ الرابطة'),
(3970, 2935, 'en', 'name', 'Bangour Village Hospital'),
(3971, 2936, 'fr', 'name', 'HƓpital Laennec'),
(3972, 2937, 'no_lang_code', 'name', 'Hokkaido Central Hospital'),
(3973, 2937, 'ja', 'name', 'åŒ—ęµ·é“äø­å¤®ē—…é™¢'),
(3974, 2938, 'en', 'name', 'Hokkaido Institute of Public Health'),
(3975, 2938, 'ja', 'name', 'åŒ—ęµ·é“ē«‹č”›ē”Ÿē ”ē©¶ę‰€'),
(3976, 2939, 'en', 'name', 'Children''s Medical Center'),
(3977, 2940, 'en', 'name', 'Banner Estrella Medical Center'),
(3978, 2941, 'en', 'name', 'Banner Sun Health Research Institute'),
(3979, 2942, 'en', 'name', 'Saint Thomas Midtown Hospital'),
(3980, 2943, 'en', 'name', 'Montgomery County Department of Health and Human Services'),
(3981, 2944, 'en', 'name', 'Baptist Hospital of Miami'),
(3982, 2945, 'fr', 'name', 'HƓpital LƩon BƩrard'),
(3983, 2946, 'fr', 'name', 'HƓpital Maison Blanche'),
(3984, 2947, 'fr', 'name', 'HƓpital Manchester'),
(3985, 2948, 'en', 'name', 'Herttoniemi Hospital'),
(3986, 2949, 'en', 'name', 'KƤtilƶopisto Maternity Hospital'),
(3987, 2950, 'en', 'name', 'Children''s Hospital of Richmond at VCU'),
(3988, 2951, 'en', 'name', 'Baptist Health Louisville'),
(3989, 2952, 'en', 'name', 'INTEGRIS Baptist Medical Center'),
(3990, 2953, 'fr', 'name', 'HƓpital Max Fourestier'),
(3991, 2954, 'en', 'name', 'Baptist Medical Center Jacksonville'),
(3992, 2955, 'en', 'name', 'Hokushin General Hospital'),
(3993, 2955, 'ja', 'name', 'åŒ—äæ”ē·åˆē—…é™¢'),
(3994, 2956, 'fr', 'name', 'HƓpital Militaire Moulay Ismail'),
(3995, 2957, 'fr', 'name', 'HƓpital Mongi Slim'),
(3996, 2958, 'en', 'name', 'Hokuyukai Neurology Hospital'),
(3997, 2958, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåŒ—ē„ä¼š åŒ—ē„ä¼šē„žēµŒå†…ē§‘ē—…é™¢'),
(3998, 2959, 'en', 'name', 'Baptist Medical Center Beaches'),
(3999, 2960, 'en', 'name', 'Schneider Children''s Medical Center'),
(4000, 2961, 'fr', 'name', 'HÓpital Mère-Enfant'),
(4001, 2962, 'en', 'name', 'Baptist Memorial Hospital'),
(4002, 2963, 'en', 'name', 'Baltimore County Department of Health'),
(4003, 2964, 'fr', 'name', 'HƓpital National de Niamey'),
(4004, 2964, 'en', 'name', 'National Hospital Niamey'),
(4005, 2965, 'no_lang_code', 'name', 'Hospital Bqyhallh'),
(4006, 2965, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ŲØŁ‚ŪŒŲ©Ų§Ł„Ł„Ł‡'),
(4007, 2966, 'en', 'name', 'Chris Hani Baragwanath Hospital'),
(4008, 2967, 'en', 'name', 'Colorado Department of Human Services'),
(4009, 2968, 'en', 'name', 'Children''s Research Hospital'),
(4010, 2968, 'ja', 'name', 'å°å…ē ”ē©¶ē—…é™¢'),
(4011, 2969, 'fr', 'name', 'HƓpital Pierre Wertheimer'),
(4012, 2970, 'en', 'name', 'China Animal Health and Epidemiology Center'),
(4013, 2970, 'zh', 'name', 'äø­å›½åŠØē‰©å«ē”ŸäøŽęµč”Œē—…å­¦äø­åæƒ'),
(4014, 2971, 'fi', 'name', 'Forssan Seudun Terveydenhuollon KuntayhtymƤ'),
(4015, 2972, 'en', 'name', 'Summa Barberton Hospital'),
(4016, 2973, 'fr', 'name', 'HƓpital OrthopƩdique de la Suisse Romande'),
(4017, 2974, 'en', 'name', 'Bhabha Atomic Research Center Hospital'),
(4018, 2975, 'en', 'name', 'Barnet Hospital'),
(4019, 2976, 'en', 'name', 'Health Forecasting'),
(4020, 2977, 'en', 'name', 'Barzilai Medical Center'),
(4021, 2978, 'fr', 'name', 'HƓpital Paule de Viguier'),
(4022, 2979, 'en', 'name', 'Basingstoke and North Hampshire Hospital'),
(4023, 2980, 'fr', 'name', 'HƓpital Pellegrin'),
(4024, 2981, 'en', 'name', 'Ching Kuo Institute of Management and Health'),
(4025, 2981, 'zh', 'name', 'ē¶“åœ‹ē®”ē†ęšØå„åŗ·å­øé™¢'),
(4026, 2982, 'it', 'name', 'Ospedale Bassini'),
(4027, 2983, 'en', 'name', 'Chittagong Medical College'),
(4028, 2983, 'bn', 'name', 'ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(4029, 2984, 'fr', 'name', 'Centre Hospitalier Philippe Pinel'),
(4030, 2985, 'es', 'name', 'Hospital de Basurto'),
(4031, 2986, 'en', 'name', 'Batra Hospital and Medical Research Centre'),
(4032, 2987, 'en', 'name', 'HCI International Medical Centre'),
(4033, 2988, 'no_lang_code', 'name', 'Cardiovascular Center Hokkaido Ohno Hospital'),
(4034, 2988, 'ja', 'name', 'åæƒč‡“č”€ē®”ć‚»ćƒ³ć‚æćƒ¼åŒ—ęµ·é“å¤§é‡Žē—…é™¢'),
(4035, 2989, 'en', 'name', 'Battle Hospital'),
(4036, 2990, 'en', 'name', 'Choithram Hospital and Research Centre'),
(4037, 2991, 'no_lang_code', 'name', 'Hokkaido hospital'),
(4038, 2991, 'ja', 'name', 'åŒ—ęµ·é“ē—…é™¢'),
(4039, 2992, 'fr', 'name', 'HƓpital Principal de Dakar'),
(4040, 2993, 'en', 'name', 'Chonburi Hospital'),
(4041, 2993, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŠąø„ąøšąøøąø£ąøµ'),
(4042, 2994, 'en', 'name', 'Hokko Memorial Hospital'),
(4043, 2994, 'ja', 'name', 'åŒ—å…‰čØ˜åæµē—…é™¢'),
(4044, 2995, 'tr', 'name', 'Diyarbakır Askeri Hastanesi'),
(4045, 2996, 'no_lang_code', 'name', 'Hirosakiaiseikai Hospital'),
(4046, 2996, 'ja', 'name', 'å¼˜å‰ę„›ęˆä¼šē—…é™¢'),
(4047, 2997, 'en', 'name', 'Chongqing Emergency Medical Center'),
(4048, 2997, 'zh', 'name', 'é‡åŗ†åø‚ę€„ę•‘åŒ»ē–—äø­åæƒ'),
(4049, 2998, 'en', 'name', 'Christ Hospital'),
(4050, 2999, 'da', 'name', 'HolbƦk Sygehus'),
(4051, 3000, 'en', 'name', 'CSI Holdsworth Memorial Hospital'),
(4052, 3001, 'en', 'name', 'Christ Hospital'),
(4053, 3002, 'en', 'name', 'Hollywood Private Hospital'),
(4054, 3003, 'en', 'name', 'Bayfront Medical Center'),
(4055, 3004, 'en', 'name', 'Holmes Regional Medical Center'),
(4056, 3005, 'tr', 'name', 'Bayındır Hastanesi'),
(4057, 3006, 'fr', 'name', 'HƓpital Razi de La Manouba'),
(4058, 3006, 'ar', 'name', 'مستؓفئ Ų§Ł„Ų±Ų§Ų²ŁŠ'),
(4059, 3007, 'en', 'name', 'Regional Hospital Holstebro'),
(4060, 3008, 'en', 'name', 'Christian Medical College'),
(4061, 3009, 'fr', 'name', 'Centre hospitalier Robert-Ballanger'),
(4062, 3010, 'en', 'name', 'Holy Cross Hospital'),
(4063, 3011, 'en', 'name', 'Holy Cross Hospital'),
(4064, 3012, 'en', 'name', 'SĆørlandet Hospital Arendal'),
(4065, 3012, 'no', 'name', 'SĆørlandet Sykehus HF'),
(4066, 3013, 'en', 'name', 'Dwight D. Eisenhower VA Medical Center'),
(4067, 3014, 'en', 'name', 'Christiana Hospital'),
(4068, 3015, 'en', 'name', 'Beaumont Hospital'),
(4069, 3016, 'en', 'name', 'Christiana Care Health System'),
(4070, 3017, 'en', 'name', 'Wolfson Medical Center'),
(4071, 3017, 'he', 'name', '×ž×Ø×›×– רפואי וולפהון'),
(4072, 3018, 'en', 'name', 'Holy Family Hospital'),
(4073, 3018, 'ur', 'name', 'ŪŁˆŁ„ŪŒ ŁŪŒŁ…Ł„ŪŒ ہسپتال'),
(4074, 3019, 'en', 'name', 'Beckman Laser Institute and Medical Clinic'),
(4075, 3020, 'en', 'name', 'Holy Family Hospital Nazareth'),
(4076, 3021, 'en', 'name', 'Holy Family Hospital'),
(4077, 3022, 'en', 'name', 'Holy Family Hospital'),
(4078, 3023, 'en', 'name', 'Holy Name Medical Center'),
(4079, 3024, 'fi', 'name', 'Mikkelin keskussairaala'),
(4080, 3025, 'en', 'name', 'Edith Nourse Rogers Memorial Veterans Hospital'),
(4081, 3026, 'en', 'name', 'Holy Spirit Northside Private Hospital'),
(4082, 3027, 'en', 'name', 'Beebe Healthcare'),
(4083, 3028, 'en', 'name', 'Behavioral Health Research Center of the Southwest'),
(4084, 3029, 'en', 'name', 'Earl K. Long Medical Center'),
(4085, 3030, 'fr', 'name', 'Centre Hospitalier et Universitaire de Brazzaville'),
(4086, 3031, 'en', 'name', 'The Military General Hospital of Beijing PLA'),
(4087, 3031, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›ę€»åŒ»é™¢'),
(4088, 3032, 'en', 'name', 'Regional Hospital Horsens'),
(4089, 3032, 'da', 'name', 'Regionshospitalet Horsens'),
(4090, 3033, 'en', 'name', 'Horton General Hospital'),
(4091, 3034, 'fr', 'name', 'HƓpital rƩgional'),
(4092, 3035, 'fr', 'name', 'HƓpital Saint-AndrƩ'),
(4093, 3036, 'en', 'name', 'Star General Hospital'),
(4094, 3036, 'ja', 'name', 'ę˜Ÿē·åˆē—…é™¢'),
(4095, 3037, 'en', 'name', 'Beijing Chest Hospital'),
(4096, 3038, 'no_lang_code', 'name', 'Hoshigaoka Medical Center'),
(4097, 3038, 'ja', 'name', 'ę˜Ÿćƒ¶äø˜åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4098, 3039, 'no_lang_code', 'name', 'Beijing Chuiyangliu Hospital'),
(4099, 3039, 'zh', 'name', 'åŒ—äŗ¬åø‚åž‚ęØęŸ³åŒ»é™¢'),
(4100, 3040, 'fr', 'name', 'HƓpital Saint Charles'),
(4101, 3041, 'fr', 'name', 'Centre Hospitalier Universitaire Ibn Rochd'),
(4102, 3042, 'en', 'name', 'Royal Glamorgan Hospital'),
(4103, 3043, 'en', 'name', 'Beijing Dao Pei Hospital'),
(4104, 3043, 'zh', 'name', 'åŒ—äŗ¬é“åŸ¹åŒ»é™¢'),
(4105, 3044, 'en', 'name', 'East Jefferson General Hospital'),
(4106, 3045, 'en', 'name', 'East Surrey Hospital'),
(4107, 3046, 'en', 'name', 'East Tennessee Children''s Hospital'),
(4108, 3047, 'es', 'name', 'Hospital AlemƔn'),
(4109, 3048, 'pt', 'name', 'Hospital Alemão Oswaldo Cruz'),
(4110, 3049, 'en', 'name', 'East Texas Medical Center'),
(4111, 3050, 'en', 'name', 'Beijing Jishuitan Hospital'),
(4112, 3050, 'zh', 'name', 'åŒ—äŗ¬åø‚åˆ›ä¼¤éŖØē§‘ē ”ē©¶ę‰€'),
(4113, 3051, 'es', 'name', 'Hospital Alto Deba'),
(4114, 3052, 'es', 'name', 'Hospital Angeles Pedregal'),
(4115, 3053, 'en', 'name', 'Eastern Health'),
(4116, 3054, 'fr', 'name', 'HƓpital Saint Lazare'),
(4117, 3055, 'fr', 'name', 'Centre Hospitalier Universitaire de Cocody'),
(4118, 3056, 'fr', 'name', 'Centre Hospitalier National Universitaire de Fann'),
(4119, 3057, 'es', 'name', 'Hospital Barros Luco-Trudeau'),
(4120, 3058, 'en', 'name', 'Eastern Hepatobiliary Surgery Hospital'),
(4121, 3058, 'zh', 'name', 'äøœę–¹č‚čƒ†å¤–ē§‘åŒ»é™¢'),
(4122, 3059, 'en', 'name', 'Eastern Maine Medical Center'),
(4123, 3060, 'en', 'name', 'Eastern State Hospital'),
(4124, 3061, 'no_lang_code', 'name', 'Beijing YouAn Hospital'),
(4125, 3061, 'zh', 'name', 'åŒ—äŗ¬ä½‘å®‰åŒ»é™¢'),
(4126, 3062, 'pt', 'name', 'Dr. Euryclides Hospital de Jesus Zerbini'),
(4127, 3063, 'fr', 'name', 'Centre Hospitalier Universitaire Pointe-Ć -Pitre'),
(4128, 3064, 'en', 'name', 'Buenos Aires British Hospital'),
(4129, 3064, 'es', 'name', 'Hospital BritƔnico de Buenos Aires'),
(4130, 3065, 'fr', 'name', 'HƓpital Saint-Jacques'),
(4131, 3066, 'es', 'name', 'Hospital Can Misses'),
(4132, 3067, 'en', 'name', 'Easton Hospital'),
(4133, 3068, 'no_lang_code', 'name', 'Edendale Hospital'),
(4134, 3069, 'fr', 'name', 'Centre Hospitalier de Saint Jean de Dieu'),
(4135, 3070, 'fr', 'name', 'Centre Hospitalier Universitaire de Yopougon'),
(4136, 3071, 'es', 'name', 'Hospital Carmen y Severo Ochoa'),
(4137, 3072, 'es', 'name', 'Hospital Casa de Salud'),
(4138, 3073, 'es', 'name', 'Hospital Central de la Cruz Roja San JosƩ y Santa Adela'),
(4139, 3074, 'it', 'name', 'Ospedale di Belcolle'),
(4140, 3075, 'en', 'name', 'Alberta Hospital Edmonton'),
(4141, 3076, 'en', 'name', 'Educational Commission for Foreign Medical Graduates'),
(4142, 3077, 'en', 'name', 'Edward Hospital'),
(4143, 3078, 'it', 'name', 'Ospedale Bellaria'),
(4144, 3079, 'en', 'name', 'Eginition Hospital'),
(4145, 3080, 'en', 'name', 'Henrietta Egleston Hospital for Children'),
(4146, 3081, 'es', 'name', 'Hospital Central Dr. Ignacio Morones Prieto'),
(4147, 3082, 'es', 'name', 'Hospital Central Militar'),
(4148, 3083, 'en', 'name', 'Ehime Prefectural Central Hospital'),
(4149, 3083, 'ja', 'name', 'ę„›åŖ›ēœŒē«‹äø­å¤®ē—…é™¢'),
(4150, 3084, 'en', 'name', 'Eiju General Hospital'),
(4151, 3084, 'ja', 'name', 'ę°øåÆæē·åˆē—…é™¢'),
(4152, 3085, 'en', 'name', 'Eisenhower Medical Center'),
(4153, 3086, 'en', 'name', 'Bellin Memorial Hospital'),
(4154, 3087, 'fr', 'name', 'HƓpital El Ayachi'),
(4155, 3088, 'es', 'name', 'Hospital Riotinto'),
(4156, 3089, 'fr', 'name', 'HƓpital Saint-Michel'),
(4157, 3090, 'es', 'name', 'Hospital Costa del Sol'),
(4158, 3091, 'en', 'name', 'Belvidere Hospital'),
(4159, 3092, 'en', 'name', 'Bendigo Health'),
(4160, 3093, 'fr', 'name', 'HƓpital Saint-Philibert'),
(4161, 3094, 'fr', 'name', 'HƓpital Mustapha Pacha'),
(4162, 3095, 'pt', 'name', 'Hospital da Luz'),
(4163, 3096, 'pt', 'name', 'Hospital da Restauração'),
(4164, 3097, 'en', 'name', 'The General Hospital of Heraklion "Venizeleio-Pananio"'),
(4165, 3097, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ηρακλείου "Βενιζέλειο - Πανάνειο"'),
(4166, 3098, 'en', 'name', 'Base Hospital'),
(4167, 3098, 'pt', 'name', 'Hospital de Base'),
(4168, 3099, 'en', 'name', 'Beppu Medical Center'),
(4169, 3099, 'ja', 'name', 'åˆ„åŗœåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4170, 3100, 'en', 'name', 'El Paso County Public Health'),
(4171, 3101, 'fr', 'name', 'Centre Hospitalier Saint-Charles'),
(4172, 3102, 'de', 'name', 'Klinik Donaustauf'),
(4173, 3103, 'en', 'name', 'Bess Kaiser Hospital'),
(4174, 3104, 'en', 'name', 'Baylor Medical Center at Garland'),
(4175, 3105, 'en', 'name', 'Elazig Education and Research Hospital'),
(4176, 3105, 'tr', 'name', 'Elazığ Eğitim ve Araştırma Hastanesi'),
(4177, 3106, 'en', 'name', 'Chubu National Hospital'),
(4178, 3106, 'ja', 'name', 'äø­éƒØå›½ē«‹ē—…é™¢'),
(4179, 3107, 'en', 'name', 'St. Mary''s Hospital'),
(4180, 3108, 'es', 'name', 'Hospital Provincial de Conxo'),
(4181, 3109, 'en', 'name', 'Bethesda North Hospital'),
(4182, 3110, 'nl', 'name', 'Ziekenhuis Bethesda'),
(4183, 3111, 'pt', 'name', 'Hospital de Egas Moniz'),
(4184, 3112, 'en', 'name', 'Clemente Ɓlvarez Emergency Hospital'),
(4185, 3112, 'es', 'name', 'Hospital de Emergencias Dr. Clemente Ɓlvarez'),
(4186, 3113, 'en', 'name', 'Bethesda Hospital East'),
(4187, 3114, 'es', 'name', 'Hospital de Especialidades'),
(4188, 3115, 'no_lang_code', 'name', 'Chugoku Rosai Hospital'),
(4189, 3115, 'ja', 'name', 'äø­å›½åŠ“ē½ē—…é™¢'),
(4190, 3116, 'pt', 'name', 'Hospital de Faro EPE'),
(4191, 3117, 'en', 'name', 'Bexar County Medical Examiner''s Office'),
(4192, 3118, 'pt', 'name', 'Hospital Maria Pia'),
(4193, 3119, 'de', 'name', 'Krankenhaus der Elisabethinen'),
(4194, 3120, 'fr', 'name', 'Centre Hospitalier Victor Dupouy'),
(4195, 3121, 'es', 'name', 'Hospital de Galdakao'),
(4196, 3122, 'fr', 'name', 'HƓpital Xavier Arnozan'),
(4197, 3123, 'es', 'name', 'Hospital de HellĆ­n'),
(4198, 3124, 'nl', 'name', 'Elkerliek Ziekenhuis'),
(4199, 3125, 'en', 'name', 'BGS Global Hospital'),
(4200, 3126, 'en', 'name', 'Elliot Hospital'),
(4201, 3127, 'es', 'name', 'Hospital MuƱiz'),
(4202, 3128, 'en', 'name', 'Ellis Hospital'),
(4203, 3129, 'en', 'name', 'Elmhurst Hospital Center'),
(4204, 3130, 'en', 'name', 'Indira Gandhi Medical College'),
(4205, 3131, 'en', 'name', 'Chu Shang Show Chwan Hospital'),
(4206, 3132, 'en', 'name', 'Ibaraki Prefectural Central Hospital'),
(4207, 3132, 'ja', 'name', 'čŒØåŸŽēœŒē«‹äø­å¤®ē—…é™¢'),
(4208, 3133, 'no_lang_code', 'name', 'Bhatia Hospital'),
(4209, 3134, 'en', 'name', 'Bhopal Memorial Hospital & Research Centre'),
(4210, 3135, 'en', 'name', 'Ibis Reproductive Health'),
(4211, 3136, 'en', 'name', 'Tacoma Community College'),
(4212, 3137, 'it', 'name', 'Ospedale Cisanello'),
(4213, 3138, 'en', 'name', 'Ibis Reproductive Health'),
(4214, 3139, 'en', 'name', 'Emerson Hospital'),
(4215, 3140, 'en', 'name', 'Bhumibol Adulyadej Hospital'),
(4216, 3140, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø ąø¹ąø”ąø“ąøžąø„ąø­ąø”ąøøąø„ąø¢ą¹€ąø”ąøŠ'),
(4217, 3141, 'ca', 'name', 'Hospital Mare de Déu de la Mercè'),
(4218, 3142, 'en', 'name', 'Emma Children’s Hospital'),
(4219, 3142, 'nl', 'name', 'Emma Kinderziekenhuis'),
(4220, 3143, 'it', 'name', 'Azienda ospedaliera "Bianchi-Melacrino-Morelli"'),
(4221, 3144, 'no_lang_code', 'name', 'Bikur Cholim Hospital'),
(4222, 3145, 'no_lang_code', 'name', 'Ibn Sina Hospital'),
(4223, 3145, 'ar', 'name', 'مستؓفى ابن Ų³ŁŠŁ†Ų§'),
(4224, 3146, 'en', 'name', 'Bir Hospital'),
(4225, 3146, 'ne', 'name', 'ą¤¬ą„€ą¤° ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(4226, 3147, 'no_lang_code', 'name', 'En Chu Kong Hospital'),
(4227, 3147, 'zh', 'name', 'č”Œå¤©å®®é†«ē™‚åæ—ę„­é†«ē™‚č²”åœ˜ę³•äŗŗę©äø»å…¬é†«é™¢'),
(4228, 3148, 'en', 'name', 'Englewood Hospital and Medical Center'),
(4229, 3149, 'en', 'name', 'Birmingham Accident Hospital'),
(4230, 3150, 'en', 'name', 'Birmingham and Midland Eye Centre'),
(4231, 3151, 'en', 'name', 'Birmingham Dental Hospital'),
(4232, 3152, 'es', 'name', 'Hospital General de La Rioja'),
(4233, 3153, 'es', 'name', 'Hospital de l''EsperanƧa'),
(4234, 3154, 'en', 'name', 'Bishop Auckland Hospital'),
(4235, 3155, 'es', 'name', 'Hospital de Mataró'),
(4236, 3156, 'en', 'name', 'BJC HealthCare'),
(4237, 3157, 'en', 'name', 'Blackpool Victoria Hospital'),
(4238, 3158, 'de', 'name', 'München Klinik Bogenhausen'),
(4239, 3159, 'de', 'name', 'München Klinik Schwabing'),
(4240, 3160, 'sv', 'name', 'Blekingesjukhuset'),
(4241, 3161, 'en', 'name', 'Bnai Zion Medical Center'),
(4242, 3161, 'he', 'name', '×ž×Ø×›×– רפואי בני ציון'),
(4243, 3162, 'en', 'name', 'Boca Raton Regional Hospital'),
(4244, 3163, 'en', 'name', 'Garrahan Hospital'),
(4245, 3164, 'no_lang_code', 'name', 'Tokyo Metropolitan Bokutoh Hospital'),
(4246, 3164, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å¢Øę±ē—…é™¢'),
(4247, 3165, 'en', 'name', 'Royal Bolton Hospital'),
(4248, 3166, 'no_lang_code', 'name', 'JA Shizuoka Koseiren ENSHU hospital'),
(4249, 3166, 'ja', 'name', '恘悃 恗恚恊恋 恓恛恄悌悓 恈悓恗悅 ć»ļ½“ć“ćŸļ½Œ'),
(4250, 3167, 'en', 'name', 'Ideta Eye Hospital'),
(4251, 3167, 'ja', 'name', 'å‡ŗē”°ēœ¼ē§‘ē—…é™¢'),
(4252, 3168, 'en', 'name', 'Era''s Lucknow Medical College and Hospital'),
(4253, 3169, 'en', 'name', 'Israel Defense Forces Medical Corps'),
(4254, 3170, 'en', 'name', 'Civil Aerospace Medical Institute'),
(4255, 3171, 'en', 'name', 'Ifakara Health Institute'),
(4256, 3172, 'en', 'name', 'Hospital Ludovica'),
(4257, 3172, 'es', 'name', 'Hospital de NiƱos Superiora Sor Marƭa Ludovica'),
(4258, 3173, 'es', 'name', 'Hospital de NiƱos de la Santƭsima Trinidad'),
(4259, 3174, 'en', 'name', 'Ahmedabad Civil Hospital'),
(4260, 3175, 'es', 'name', 'Hospital General de NiƱos Ricardo Gutierrez'),
(4261, 3176, 'en', 'name', 'Ignatius Hospital'),
(4262, 3176, 'nl', 'name', 'Sint Ignatiusziekenhuis'),
(4263, 3177, 'en', 'name', 'BongSeng Memorial Hospital'),
(4264, 3177, 'ko', 'name', 'ė“‰ģƒė³‘ģ›ģž…ė‹ˆė‹¤'),
(4265, 3178, 'pt', 'name', 'Hospital de São José'),
(4266, 3179, 'pt', 'name', 'Hospital Geral de Bonsucesso'),
(4267, 3180, 'en', 'name', 'Clalit Health Services'),
(4268, 3180, 'he', 'name', 'שירותי בריאות ×›×œ×œ×™×Ŗ'),
(4269, 3181, 'en', 'name', 'Ijinkai Takeda General Hospital'),
(4270, 3181, 'ja', 'name', 'ę­¦ē”°ē·åˆē—…é™¢ćÆ'),
(4271, 3182, 'en', 'name', 'Boone Hospital Center'),
(4272, 3183, 'en', 'name', 'Erie County Medical Center'),
(4273, 3184, 'pt', 'name', 'Hospital de SĆ£o Marcos'),
(4274, 3185, 'es', 'name', 'Hospital de Sagunto'),
(4275, 3186, 'en', 'name', 'Civil Hospital Karachi'),
(4276, 3187, 'en', 'name', 'Borders General Hospital'),
(4277, 3188, 'en', 'name', 'Clatterbridge Hospital'),
(4278, 3188, 'cy', 'name', 'Ysbyty Clattebridge'),
(4279, 3189, 'ca', 'name', 'Hospital Sant Pau i Santa Tecla'),
(4280, 3190, 'en', 'name', 'Borgess Medical Center'),
(4281, 3191, 'no_lang_code', 'name', 'Ikeda Municipal Hospital'),
(4282, 3191, 'ja', 'name', '池田市立病院'),
(4283, 3192, 'tr', 'name', 'Erzurum Bölge Eğitim ve Araştırma Hastanesi'),
(4284, 3192, 'en', 'name', 'Erzurum Regional Training and Research Hospital'),
(4285, 3193, 'en', 'name', 'Imakiire General Hospital'),
(4286, 3193, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę˜­å’Œä¼š ä»Šēµ¦é»Žē·åˆē—…é™¢'),
(4287, 3194, 'en', 'name', 'Botsford Hospital'),
(4288, 3195, 'en', 'name', 'Hospital South West Jutland'),
(4289, 3195, 'da', 'name', 'Sydvestjysk Sygehus'),
(4290, 3196, 'en', 'name', 'Coastal Area Health Education Center'),
(4291, 3197, 'en', 'name', 'Imelda Hospital'),
(4292, 3197, 'nl', 'name', 'Imelda ziekenhuis'),
(4293, 3198, 'en', 'name', 'Box Hill Hospital'),
(4294, 3199, 'pt', 'name', 'Hospital de SĆ£o Bernardo'),
(4295, 3200, 'en', 'name', 'Boys Town National Research Hospital'),
(4296, 3201, 'es', 'name', 'Hospital Terrassa'),
(4297, 3202, 'en', 'name', 'Hospital Colentina'),
(4298, 3202, 'ro', 'name', 'Spitalul Clinic Colentina'),
(4299, 3203, 'en', 'name', 'Colchester Hospital'),
(4300, 3204, 'en', 'name', 'Hoag Memorial Hospital Presbyterian'),
(4301, 3205, 'en', 'name', 'Colmery-O''Neil VA Medical Center'),
(4302, 3206, 'en', 'name', 'Brandon Regional Health Authority'),
(4303, 3207, 'en', 'name', 'Colonial War Memorial Hospital'),
(4304, 3208, 'en', 'name', 'Colorado Permanente Medical Group'),
(4305, 3209, 'en', 'name', 'Eugene Applebaum College of Pharmacy and Health Sciences'),
(4306, 3210, 'en', 'name', 'Bridgeport Hospital'),
(4307, 3211, 'en', 'name', 'Brighton and Sussex Medical School'),
(4308, 3212, 'en', 'name', 'Brighton General Hospital'),
(4309, 3213, 'en', 'name', 'Bristol Hospital'),
(4310, 3214, 'en', 'name', 'Indira Gandhi Institute of Child Health'),
(4311, 3215, 'en', 'name', 'Indira Gandhi Government Medical College & Hospital'),
(4312, 3215, 'hi', 'name', 'इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ व ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(4313, 3216, 'en', 'name', 'Indira Gandhi Institute of Medical Sciences'),
(4314, 3217, 'es', 'name', 'Hospital del NiƱo'),
(4315, 3218, 'en', 'name', 'Indira Gandhi Medical College and Research Institute'),
(4316, 3219, 'en', 'name', 'Indraprastha Apollo Hospitals'),
(4317, 3220, 'it', 'name', 'Ospedale Infermi di Rimini'),
(4318, 3221, 'en', 'name', 'Trinitas Regional Medical Center'),
(4319, 3222, 'en', 'name', 'Ingalls Memorial Hospital'),
(4320, 3223, 'es', 'name', 'Hospital del Trabajador'),
(4321, 3224, 'tr', 'name', 'Ergani Devlet Hastanesi'),
(4322, 3225, 'en', 'name', 'Inoue Hospital'),
(4323, 3225, 'ja', 'name', 'äŗ•äøŠē—…é™¢'),
(4324, 3226, 'pt', 'name', 'Hospital do Desterro'),
(4325, 3227, 'en', 'name', 'Bronglais General Hospital'),
(4326, 3228, 'en', 'name', 'Levanger Hospital'),
(4327, 3228, 'no', 'name', 'Sykehuset Levanger'),
(4328, 3229, 'en', 'name', 'Inouye Eye Hospital'),
(4329, 3229, 'ja', 'name', 'äŗ•äøŠēœ¼ē§‘ē—…é™¢'),
(4330, 3230, 'sv', 'name', 'Ersta sjukhus'),
(4331, 3231, 'en', 'name', 'Inova Loudoun Hospital'),
(4332, 3232, 'en', 'name', 'Bronovo Hospital'),
(4333, 3232, 'nl', 'name', 'Bronovo Ziekenhuis'),
(4334, 3233, 'en', 'name', 'Bronson Methodist Hospital'),
(4335, 3234, 'pt', 'name', 'Hospital Federal dos Servidores do Estado'),
(4336, 3235, 'tr', 'name', 'Etimesgut Asker Hastanesi'),
(4337, 3236, 'en', 'name', 'Southern Command Hospital'),
(4338, 3237, 'en', 'name', 'Brooklyn Hospital Center'),
(4339, 3238, 'en', 'name', 'Command Hospital Air Force'),
(4340, 3239, 'tr', 'name', 'Etlik Zübeyde Hanım Kadın Hastalıkları Eğitim ve Araştırma Hastanesi'),
(4341, 3240, 'en', 'name', 'Eastern Command Hospital'),
(4342, 3241, 'en', 'name', 'Doctors Medical Center'),
(4343, 3242, 'pt', 'name', 'Hospital do EspĆ­rito Santo'),
(4344, 3243, 'en', 'name', 'Broomfield Hospital'),
(4345, 3244, 'en', 'name', 'Community Health Network'),
(4346, 3245, 'en', 'name', 'Command Hospital'),
(4347, 3246, 'en', 'name', 'Broward Health Medical Center'),
(4348, 3247, 'en', 'name', 'Evans Army Community Hospital'),
(4349, 3248, 'en', 'name', 'Community Medical Center'),
(4350, 3249, 'en', 'name', 'Froedtert Menomonee Falls Hospital'),
(4351, 3250, 'en', 'name', 'Duran i Reynals Hospital'),
(4352, 3251, 'en', 'name', 'Institute for Clinical Efectiveness and Health Policy'),
(4353, 3251, 'es', 'name', 'Instituto de Efectividad ClĆ­nica y Sanitaria'),
(4354, 3252, 'en', 'name', 'Evergreen Health Medical Center'),
(4355, 3253, 'es', 'name', 'Hospital El Bierzo'),
(4356, 3254, 'en', 'name', 'Coney Island Hospital'),
(4357, 3255, 'en', 'name', 'Bryn Mawr Hospital'),
(4358, 3256, 'en', 'name', 'Bryn Mawr Rehabilitation Hospital'),
(4359, 3257, 'en', 'name', 'Conemaugh Memorial Medical Center'),
(4360, 3258, 'en', 'name', 'Connecticut Mental Health Center'),
(4361, 3259, 'en', 'name', 'Exempla Saint Joseph Hospital'),
(4362, 3260, 'it', 'name', 'Ospedale Buccheri la Ferla Fatebenefratelli'),
(4363, 3261, 'en', 'name', 'Institute for Medical Informatics and Biostatistics'),
(4364, 3262, 'en', 'name', 'Exeter Hospital'),
(4365, 3263, 'en', 'name', 'Institute for Medical Research'),
(4366, 3264, 'en', 'name', 'Eugenides Hospital'),
(4367, 3264, 'el', 'name', 'Ī•Ī„Ī“Ī•ĪĪ™Ī”Ī•Ī™ĪŸ Ī˜Ī•Ī”Ī‘Ī Ī•Ī„Ī¤Ī—Ī”Ī™ĪŸ'),
(4368, 3265, 'it', 'name', 'Ospedale ā€œM. Bufaliniā€ di Cesena'),
(4369, 3266, 'cs', 'name', 'Institut postgraduĆ”lnĆ­ho vzdělĆ”vĆ”nĆ­ ve zdravotnictvĆ­'),
(4370, 3266, 'en', 'name', 'Institute for Postgraduate Medical Education'),
(4371, 3267, 'no_lang_code', 'name', 'E-Da Hospital'),
(4372, 3268, 'en', 'name', 'Concord Hospital'),
(4373, 3269, 'en', 'name', 'Conquest Hospital'),
(4374, 3270, 'pt', 'name', 'Hospital Prof. Dr. Fernando Fonseca'),
(4375, 3271, 'es', 'name', 'Hospital FernƔndez'),
(4376, 3272, 'en', 'name', 'Buddhist Tzu Chi General Hospital'),
(4377, 3273, 'en', 'name', 'Hospital for Special Care'),
(4378, 3274, 'en', 'name', 'Jinnah Medical & Dental College'),
(4379, 3275, 'en', 'name', 'Jinnah Postgraduate Medical Center'),
(4380, 3276, 'en', 'name', 'Maulana Azad Medical College'),
(4381, 3276, 'ta', 'name', 'மௌலானா ą®†ą®šą®¾ą®¤ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(4382, 3277, 'it', 'name', 'A. O. Ordine Mauriziano di Torino'),
(4383, 3278, 'en', 'name', 'Max Planck Institute for Medical Research'),
(4384, 3278, 'de', 'name', 'Max-Planck-Institut für Medizinische Forschung'),
(4385, 3279, 'en', 'name', 'Jawaharlal Nehru Medical College'),
(4386, 3280, 'pt', 'name', 'Hospital Infantil Joana de Gusmão'),
(4387, 3281, 'en', 'name', 'Institute of Child and Mother Health'),
(4388, 3282, 'en', 'name', 'Johannesburg Hospital'),
(4389, 3283, 'pt', 'name', 'Hospital Garcia de Orta'),
(4390, 3284, 'en', 'name', 'Institute of Child Health'),
(4391, 3284, 'el', 'name', 'Ī¹Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ υγείας του Ļ€Ī±Ī¹Ī“Ī¹ĪæĻ'),
(4392, 3285, 'en', 'name', 'Institute of Child Health'),
(4393, 3286, 'en', 'name', 'Mayo General Hospital'),
(4394, 3287, 'en', 'name', 'Mayo Clinic Health System'),
(4395, 3288, 'en', 'name', 'Mayo Hospital'),
(4396, 3289, 'en', 'name', 'McKay Dee Hospital'),
(4397, 3290, 'en', 'name', 'McLaren Regional Medical Center'),
(4398, 3291, 'es', 'name', 'Hospital General Yagüe'),
(4399, 3292, 'pt', 'name', 'Hospital Geral de Fortaleza'),
(4400, 3293, 'en', 'name', 'John D. Dingell VA Medical Center'),
(4401, 3294, 'en', 'name', 'John Hunter Hospital'),
(4402, 3295, 'en', 'name', 'John Muir Medical Center'),
(4403, 3296, 'es', 'name', 'Hospital CƩsar Milstein'),
(4404, 3297, 'en', 'name', 'John Muir Health'),
(4405, 3298, 'en', 'name', 'Summit Oaks Hospital'),
(4406, 3299, 'en', 'name', 'South Australia Pathology'),
(4407, 3300, 'en', 'name', 'John Paul II Hospital'),
(4408, 3300, 'pl', 'name', 'Krakowski Szpital Specjalistyczny im. Jana Pawła II'),
(4409, 3301, 'en', 'name', 'Institute of Medical Biology'),
(4410, 3302, 'es', 'name', 'Hospital General de Elda'),
(4411, 3303, 'en', 'name', 'Fairfield Infectious Diseases Hospital'),
(4412, 3304, 'en', 'name', 'Sher-i-Kashmir Institute of Medical Sciences'),
(4413, 3304, 'ur', 'name', 'ؓیرِ Ś©Ų“Ł…ŪŒŲ± Ų§Ł†Ų³Ł¹ŪŒŚ†ŪŒŁˆŁ¹ آف Ł…ŪŒŚˆŪŒŚ©Ł„ سائنسز'),
(4414, 3305, 'es', 'name', 'Hospital General de Granollers'),
(4415, 3306, 'en', 'name', 'Fairview Southdale Hospital'),
(4416, 3307, 'en', 'name', 'Falun Hospital'),
(4417, 3308, 'en', 'name', 'Far Eastern Memorial Hospital'),
(4418, 3309, 'en', 'name', 'Jorvi Hospital'),
(4419, 3309, 'fi', 'name', 'Jorvin sairaala'),
(4420, 3310, 'en', 'name', 'Joseph Brant Hospital'),
(4421, 3311, 'en', 'name', 'Stavropol State Medical University'),
(4422, 3311, 'ru', 'name', 'Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4423, 3312, 'en', 'name', 'Institute of Mental Health'),
(4424, 3313, 'tr', 'name', 'Farabi Hastanesi'),
(4425, 3314, 'es', 'name', 'Hospital General Dr. Manuel Gea Gonzalez'),
(4426, 3315, 'no_lang_code', 'name', 'Farwaniya Hospital'),
(4427, 3315, 'ar', 'name', 'مستؓفى Ų§Ł„ŁŲ±ŁˆŲ§Ł†ŁŠŲ©'),
(4428, 3316, 'es', 'name', 'Hospital General San Juan de Dios'),
(4429, 3317, 'es', 'name', 'Hospital Universitario Infanta SofĆ­a'),
(4430, 3318, 'it', 'name', 'Azienda Ospedaliera Fatebenefratelli e Oftalmico'),
(4431, 3319, 'en', 'name', 'Joseph Eye Hospital'),
(4432, 3320, 'es', 'name', 'Hospital Universitario Infanta Leonor'),
(4433, 3321, 'en', 'name', 'Institute of Occupational Medicine and Environmental Health'),
(4434, 3321, 'pl', 'name', 'Instytut Medycyny Pracy i Zdrowia Środowiskowego'),
(4435, 3322, 'en', 'name', 'Institute of Post Graduate Medical Education and Research'),
(4436, 3323, 'en', 'name', 'Father Muller Medical College Hospital'),
(4437, 3323, 'hi', 'name', 'फादर ą¤®ą„ą¤Æą„ą¤²ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(4438, 3323, 'ta', 'name', 'ą®Ŗą®¾ą®¤ą®°ąÆ ą®®ąÆą®²ąÆą®²ąÆ†ą®°ąÆ ą®®ąÆ†ą®Ÿą®æą®•ąÆą®•ą®²ąÆ ą®•ą®¾ą®²ąÆ‡ą®œąÆ'),
(4439, 3323, 'te', 'name', 'ą°«ą°¾ą°¦ą°°ą± ą°®ą±ą°²ą±ą°²ą±†ą°°ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°•ą°¾ą°²ą±‡ą°œą±'),
(4440, 3323, 'kn', 'name', 'ą²«ą²¾ą²¦ą³†ą²°ą³ ą²®ą³ą²²ą³ą²²ą²°ą³ ą²®ą³†ą²”ą²æą²•ą²²ą³ ą²•ą²¾ą²³ą²œą³'),
(4441, 3323, 'ml', 'name', 'ą“«ą“¾ą“¦ąµ¼ ą“®ąµą“³ąµą“³ąµ†ąµ¼ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(4442, 3324, 'en', 'name', 'JR Tokyo General Hospital'),
(4443, 3324, 'ja', 'name', 'JRę±äŗ¬ē·åˆē—…é™¢'),
(4444, 3325, 'en', 'name', 'LungenClinic Grosshansdorf'),
(4445, 3326, 'tr', 'name', 'Fatih Sultan Mehmet Eğitim Ve Araştırma Hastanesi'),
(4446, 3327, 'en', 'name', 'Fatima Jinnah Medical University'),
(4447, 3327, 'ur', 'name', 'فاطمہ جناح Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(4448, 3328, 'es', 'name', 'Hospital Italiano de Buenos Aires'),
(4449, 3329, 'sl', 'name', 'Nacionalni InŔtitut za Javno Zdravje'),
(4450, 3329, 'en', 'name', 'National Institute of Public Health'),
(4451, 3330, 'en', 'name', 'JSS Medical College and Hospital'),
(4452, 3331, 'en', 'name', 'Health Research Institute of the Hospital ClĆ­nico San Carlos'),
(4453, 3331, 'es', 'name', 'Instituto de Investigación Sanitaria del Hospital Clínico San Carlos'),
(4454, 3332, 'en', 'name', 'Center for Medical, Agricultural and Veterinary Entomology'),
(4455, 3333, 'en', 'name', 'Interbalkan Medical Center'),
(4456, 3333, 'el', 'name', 'Ī™Ī±Ļ„ĻĪ¹ĪŗĻŒ Ī”Ī¹Ī±Ī²Ī±Ī»ĪŗĪ±Ī½Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ'),
(4457, 3334, 'en', 'name', 'Interfaith Medical Center'),
(4458, 3335, 'en', 'name', 'Intermountain Medical Center'),
(4459, 3336, 'nl', 'name', 'Juliana Kinderziekenhuis'),
(4460, 3337, 'en', 'name', 'International Center for Public Health'),
(4461, 3338, 'es', 'name', 'Hospital JuƔrez de MƩxico'),
(4462, 3339, 'en', 'name', 'Federal Agency for Health and Social Development'),
(4463, 3339, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ агентство по Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃŽ Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¼Ńƒ Ń€Š°Š·Š²ŠøŃ‚ŠøŃŽ'),
(4464, 3340, 'en', 'name', 'International Goodwill Hospital'),
(4465, 3340, 'ja', 'name', 'å›½éš›č¦Ŗå–„ē·åˆē—…é™¢'),
(4466, 3341, 'es', 'name', 'Hospital Universitario Lucus Augusti'),
(4467, 3342, 'es', 'name', 'Hospital Luis Calvo Mackenna'),
(4468, 3343, 'no_lang_code', 'name', 'Sankara Nethralaya'),
(4469, 3344, 'en', 'name', 'International Women''s Health Coalition'),
(4470, 3345, 'no_lang_code', 'name', 'Inuyama Chuo Hospital'),
(4471, 3345, 'ja', 'name', 'ēŠ¬å±±äø­å¤®ē—…é™¢'),
(4472, 3346, 'en', 'name', 'Inverclyde Royal Hospital'),
(4473, 3347, 'en', 'name', 'Iowa Medical Society'),
(4474, 3348, 'en', 'name', 'Iowa Methodist Medical Center'),
(4475, 3349, 'pt', 'name', 'Hospital Madre Teresa'),
(4476, 3350, 'es', 'name', 'Hospital La Luz'),
(4477, 3351, 'en', 'name', 'K S Hegde Medical Academy'),
(4478, 3352, 'en', 'name', 'Ipswich Hospital'),
(4479, 3353, 'en', 'name', 'Heritage Valley Beaver'),
(4480, 3354, 'en', 'name', 'Kaohsiung Municipal Kai-Syuan Psychiatric Hospital'),
(4481, 3355, 'de', 'name', 'Bundesinstitut für gesundheitlichen Verbraucherschutz und Veterinärmedizin'),
(4482, 3355, 'en', 'name', 'Federal Institute for Health Protection of Consumers and Veterinary Medicine'),
(4483, 3356, 'en', 'name', 'Federal Medical Centre'),
(4484, 3357, 'fi', 'name', 'Kainuun keskussairaala'),
(4485, 3358, 'en', 'name', 'Federal Medical Centre'),
(4486, 3359, 'en', 'name', 'Federal Medical Centre'),
(4487, 3360, 'en', 'name', 'Mater Dei Hospital'),
(4488, 3361, 'en', 'name', 'Federal Ministry of Health'),
(4489, 3361, 'ar', 'name', 'وزارة الصحة Ų§Ł„Ų„ŲŖŲ­Ų§ŲÆŁŠŲ©'),
(4490, 3362, 'nl', 'name', 'Medisch Centrum Alkmaar'),
(4491, 3363, 'en', 'name', 'Ireland Army Community Hospital'),
(4492, 3364, 'en', 'name', 'Ishikawa Prefectural Central Hospital'),
(4493, 3364, 'ja', 'name', 'ēŸ³å·ēœŒē«‹äø­å¤®ē—…é™¢'),
(4494, 3365, 'no_lang_code', 'name', 'Ishikiriseiki Hospital'),
(4495, 3365, 'ja', 'name', 'ēŸ³åˆ‡ē”Ÿå–œē—…é™¢'),
(4496, 3366, 'en', 'name', 'Orenburg State Medical Academy'),
(4497, 3366, 'ru', 'name', 'ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4498, 3367, 'es', 'name', 'Hospital Materno-Infantil'),
(4499, 3368, 'es', 'name', 'Hospital Metropolitano'),
(4500, 3369, 'de', 'name', 'Kaiser-Franz-Josef-Spital'),
(4501, 3370, 'es', 'name', 'Hospital Militar Dr. Carlos Arvelo'),
(4502, 3371, 'en', 'name', 'Federal Office of Public Health'),
(4503, 3372, 'en', 'name', 'Kaiser Foundation Hospital'),
(4504, 3373, 'en', 'name', 'Kaiser Foundation Hospital'),
(4505, 3374, 'en', 'name', 'Kaiser Foundation Hospital'),
(4506, 3375, 'tr', 'name', 'İstanbul Eğitim ve Araştırma Hastanesi'),
(4507, 3376, 'pt', 'name', 'Hospital Militar Principal'),
(4508, 3377, 'pl', 'name', 'Centrum Medyczne Kształcenia Podyplomowego'),
(4509, 3378, 'en', 'name', 'Federation of American Hospitals'),
(4510, 3379, 'en', 'name', 'Istanbul Memorial Hospital'),
(4511, 3380, 'en', 'name', 'Los Angeles Medical Center'),
(4512, 3381, 'pt', 'name', 'Hospital Moinhos de Vento'),
(4513, 3382, 'es', 'name', 'Hospital Monte Naranco'),
(4514, 3383, 'no_lang_code', 'name', 'Iwaki Kyoritsu General Hospital'),
(4515, 3383, 'ja', 'name', 'ć„ć‚ćå…±ē«‹ē·åˆē—…é™¢'),
(4516, 3384, 'en', 'name', 'Iwakuni Medical Center'),
(4517, 3384, 'ja', 'name', 'å²©å›½åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4518, 3385, 'en', 'name', 'Iwata City Hospital'),
(4519, 3385, 'ja', 'name', 'ē£ē”°åø‚ē«‹ē·åˆē—…é™¢'),
(4520, 3386, 'es', 'name', 'Hospital Montecelo'),
(4521, 3387, 'es', 'name', 'Hospital Municipal de Badalona'),
(4522, 3388, 'en', 'name', 'Ferrarotto Hospital'),
(4523, 3389, 'pt', 'name', 'Hospital MĆ£e de Deus'),
(4524, 3390, 'en', 'name', 'Baghdad Medical City'),
(4525, 3390, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© الطب'),
(4526, 3391, 'en', 'name', 'Medical City Children''s Hospital'),
(4527, 3392, 'tr', 'name', 'Izmir Atatürk Eğitim ve Araştırma Hastanesi'),
(4528, 3393, 'en', 'name', 'Kaiser Permanente Center for Health Research'),
(4529, 3394, 'en', 'name', 'Na Homolce Hospital'),
(4530, 3394, 'cs', 'name', 'Nemocnice Na Homolce'),
(4531, 3395, 'tr', 'name', 'Fırat Üniversitesi Hastanesi'),
(4532, 3396, 'tr', 'name', 'Izmir Bozyaka Eğitim ve Araştırma Hastanesi'),
(4533, 3397, 'en', 'name', 'First Affiliated Hospital of Chengdu Medical College'),
(4534, 3397, 'zh', 'name', 'ęˆéƒ½åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(4535, 3398, 'tr', 'name', 'Izmir Tepecik Eğitim ve Araştırma Hastanesi'),
(4536, 3399, 'en', 'name', 'Kaiser Permanente Oakland Medical Center'),
(4537, 3400, 'es', 'name', 'Hospital Nacional Dos de Mayo'),
(4538, 3401, 'en', 'name', 'Kaiser Permanente Santa Clara Medical Center'),
(4539, 3402, 'en', 'name', 'First Affiliated Hospital of Chinese PLA General Hospital'),
(4540, 3402, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ę€»åŒ»é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(4541, 3403, 'en', 'name', 'Kaiser Permanente San Francisco Medical Center'),
(4542, 3404, 'en', 'name', 'Almirante Nef Naval Hospital'),
(4543, 3404, 'es', 'name', 'Hospital Naval Almirante Nef'),
(4544, 3405, 'en', 'name', 'Kaiser Permanente Hayward Medical Center'),
(4545, 3406, 'pl', 'name', 'Wojewódzki Szpital Zespolony im. Jędrzeja Śniadeckiego'),
(4546, 3407, 'en', 'name', 'Kaiser Permanente San Diego Medical Center'),
(4547, 3408, 'en', 'name', 'Kaiser Permanente Sacramento Medical Center'),
(4548, 3409, 'en', 'name', 'Kaiser Permanente Walnut Creek Medical Center'),
(4549, 3410, 'en', 'name', 'Kaiser Permanente Fontana Medical Center'),
(4550, 3411, 'en', 'name', 'First Affiliated Hospital of Jiangxi Medical College'),
(4551, 3412, 'en', 'name', 'Kaiser Permanente Vallejo Medical Center'),
(4552, 3413, 'pt', 'name', 'Hospital Nossa Senhora das GraƧas'),
(4553, 3414, 'en', 'name', 'First Affiliated Hospital of Kunming Medical University'),
(4554, 3415, 'en', 'name', 'Kaiser Permanente Anaheim Medical Center'),
(4555, 3416, 'en', 'name', 'Kaiser Permanente South San Francisco Medical Center'),
(4556, 3417, 'en', 'name', 'Jackson Memorial Hospital'),
(4557, 3418, 'en', 'name', 'First Affiliated Hospital of Wenzhou Medical University'),
(4558, 3419, 'en', 'name', 'Kaiser Permanente Redwood City Medical Center'),
(4559, 3420, 'en', 'name', 'Kaiser Permanente Santa Rosa Medical Center'),
(4560, 3421, 'en', 'name', 'Kaiser Permanente San Rafael Medical Center'),
(4561, 3422, 'en', 'name', 'Jacobs Institute of Women''s Health'),
(4562, 3423, 'en', 'name', 'Kaiser Permanente Riverside Medical Center'),
(4563, 3424, 'en', 'name', 'Jaipur Golden Hospital'),
(4564, 3425, 'en', 'name', 'Jamaica Hospital'),
(4565, 3426, 'en', 'name', 'Kaleida Health'),
(4566, 3427, 'es', 'name', 'Centro Sociosanitario Nuestra SeƱora del Pino'),
(4567, 3428, 'en', 'name', 'First People''s Hospital of Yunnan Province'),
(4568, 3428, 'zh', 'name', 'äŗ‘å—ēœē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(4569, 3429, 'en', 'name', 'Connolly Hospital Blanchardstown'),
(4570, 3429, 'ga', 'name', 'OspidƩal Uƭ Chonghaile, Baile BhlainsƩir'),
(4571, 3430, 'en', 'name', 'Iwate Prefectural Kamaishi Hospital'),
(4572, 3431, 'en', 'name', 'Fitzgerald Health Education Associates'),
(4573, 3432, 'en', 'name', 'University of Vermont Medical Center'),
(4574, 3433, 'en', 'name', 'Japanese Red Cross Medical Center'),
(4575, 3433, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē¤¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4576, 3434, 'es', 'name', 'Hospital Nuestra SeƱora de Alarcos'),
(4577, 3435, 'en', 'name', 'Japanese Red Cross Katsushika Maternity Hospital'),
(4578, 3435, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē¤¾č‘›é£¾ćƒžć‚æćƒ‹ćƒ†ć‚£ē—…é™¢'),
(4579, 3436, 'en', 'name', 'Sendai Red Cross Hospital'),
(4580, 3436, 'ja', 'name', 'ä»™å°čµ¤åå­—ē—…é™¢'),
(4581, 3437, 'en', 'name', 'Istanbul Florence Nightingale Hospital'),
(4582, 3437, 'tr', 'name', 'İstanbul Florence Nightingale Hastanesi'),
(4583, 3438, 'en', 'name', 'AdventHealth Orlando'),
(4584, 3439, 'en', 'name', 'Japanese Red Cross Society Wakayama Medical Center'),
(4585, 3439, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē¤¾å’Œę­Œå±±åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4586, 3440, 'en', 'name', 'Florida Hospital Cancer Institute'),
(4587, 3441, 'es', 'name', 'Hospital central de Kamuzu'),
(4588, 3441, 'en', 'name', 'Kamuzu Central Hospital'),
(4589, 3442, 'en', 'name', 'AdventHealth Celebration'),
(4590, 3443, 'en', 'name', 'Adventist University of Health Sciences'),
(4591, 3444, 'en', 'name', 'Kanagawa Children''s Medical Center'),
(4592, 3444, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ć“ć©ć‚‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4593, 3445, 'en', 'name', 'Florida Medical Entomology Laboratory'),
(4594, 3446, 'en', 'name', 'Yokohama Welfare Service Association'),
(4595, 3447, 'en', 'name', 'Flower Hospital'),
(4596, 3448, 'en', 'name', 'Flushing Hospital Medical Center'),
(4597, 3449, 'en', 'name', 'Jaswant Rai Speciality Hospital'),
(4598, 3450, 'en', 'name', 'Kanagawa Rehabilitation Hospital'),
(4599, 3450, 'ja', 'name', 'ē„žå„ˆå·ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(4600, 3451, 'en', 'name', 'Medical Education Institute'),
(4601, 3452, 'en', 'name', 'Jawaharlal Nehru Medical College'),
(4602, 3453, 'en', 'name', 'Kanazawa Medical Center'),
(4603, 3453, 'ja', 'name', 'é‡‘ę²¢åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4604, 3454, 'en', 'name', 'Jefferson College of Health Sciences'),
(4605, 3455, 'en', 'name', 'Forrest General Hospital'),
(4606, 3456, 'it', 'name', 'Azienda Ospedaliera Ospedale Civile di Legnano'),
(4607, 3457, 'en', 'name', 'KK Women''s and Children''s Hospital'),
(4608, 3458, 'en', 'name', 'Novant Health Forsyth Medical Center'),
(4609, 3459, 'en', 'name', 'Jen-Ai Hospital'),
(4610, 3459, 'zh', 'name', 'ä»ę„›é†«ē™‚č²”åœ˜ę³•äŗŗ'),
(4611, 3460, 'en', 'name', 'Physicians for a National Health Program'),
(4612, 3461, 'en', 'name', 'Fort Sanders Regional Medical Center'),
(4613, 3462, 'en', 'name', 'Jerry L. Pettis Memorial VA Medical Center'),
(4614, 3463, 'en', 'name', 'Kansai Electric Power Hospital'),
(4615, 3463, 'ja', 'name', 'é–¢č„æé›»åŠ›ē—…é™¢'),
(4616, 3464, 'es', 'name', 'Hospital Juan Ramón Jiménez'),
(4617, 3465, 'en', 'name', 'Jersey City Medical Center'),
(4618, 3466, 'en', 'name', 'Kansai Rosai Hospital'),
(4619, 3466, 'ja', 'name', 'é–¢č„æć‚ć†ć•ć„ē—…é™¢'),
(4620, 3467, 'en', 'name', 'Jessa Hospital'),
(4621, 3467, 'nl', 'name', 'Jessa Ziekenhuis'),
(4622, 3468, 'en', 'name', 'Jessop Hospital'),
(4623, 3469, 'en', 'name', 'Medical Group Management Association'),
(4624, 3470, 'en', 'name', 'Fortis Escorts Hospital'),
(4625, 3471, 'no_lang_code', 'name', 'Fortis Hospital'),
(4626, 3472, 'en', 'name', 'Kanagawa Prefectural Institute of Public Health'),
(4627, 3472, 'ja', 'name', 'ē„žå„ˆå·ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(4628, 3473, 'en', 'name', 'New Jewish Home'),
(4629, 3474, 'no_lang_code', 'name', 'Fortis Hospital'),
(4630, 3475, 'en', 'name', 'Jewish Hospital'),
(4631, 3476, 'no_lang_code', 'name', 'Kantar Health (United States)'),
(4632, 3477, 'en', 'name', 'Jewish Hospital'),
(4633, 3478, 'no_lang_code', 'name', 'Kanto Central Hospital'),
(4634, 3478, 'ja', 'name', 'å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆé–¢ę±äø­å¤®ē—…é™¢'),
(4635, 3479, 'en', 'name', 'Piedmont Atlanta Hospital'),
(4636, 3480, 'en', 'name', 'NTT Medical Center'),
(4637, 3480, 'ja', 'name', 'NTTę±ę—„ęœ¬é–¢ę±ē—…é™¢'),
(4638, 3481, 'en', 'name', 'Tokyo Teishin Hospital'),
(4639, 3481, 'ja', 'name', 'ę±äŗ¬é€“äæ”ē—…é™¢'),
(4640, 3482, 'en', 'name', 'Foundation for Advancement of International Medical Education and Research'),
(4641, 3483, 'en', 'name', 'John F. Kennedy Medical Center'),
(4642, 3484, 'en', 'name', 'John F. Kennedy Medical Center'),
(4643, 3485, 'en', 'name', 'Foundation for Medical Research'),
(4644, 3486, 'en', 'name', 'Pilgrim Hospital'),
(4645, 3487, 'sv', 'name', 'LƤkemedelsverket'),
(4646, 3487, 'en', 'name', 'Medical Products Agency'),
(4647, 3488, 'en', 'name', 'Jiangxi Provincial People''s Hospital'),
(4648, 3488, 'zh', 'name', 'ę±Ÿč„æēœäŗŗę°‘åŒ»é™¢'),
(4649, 3489, 'en', 'name', 'Pinderfields Hospital'),
(4650, 3490, 'no_lang_code', 'name', 'Medical Protective'),
(4651, 3491, 'en', 'name', 'Framingham Union Hospital'),
(4652, 3492, 'en', 'name', 'Medical Radiological Research Center'),
(4653, 3492, 'ru', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ раГиологический Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(4654, 3493, 'en', 'name', 'Jichi Medical University Hospital'),
(4655, 3493, 'ja', 'name', 'č‡Ŗę²»åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(4656, 3494, 'en', 'name', 'Karachi Medical and Dental College'),
(4657, 3495, 'en', 'name', 'Franciscan Hospital for Children'),
(4658, 3496, 'en', 'name', 'South African Medical Research Council'),
(4659, 3497, 'en', 'name', 'Vidant Medical Center'),
(4660, 3498, 'el', 'name', '''''ΚαραμανΓάνειο'''' Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΠαίΓων Ī Ī±Ļ„ĻĻŽĪ½'),
(4661, 3498, 'en', 'name', 'General Hospital Pediatric Karamandanio'),
(4662, 3499, 'it', 'name', 'Azienda Ospedaliera San Gerardo'),
(4663, 3500, 'en', 'name', 'Baystate Franklin Medical Center'),
(4664, 3501, 'en', 'name', 'Karnataka Institute of Medical Sciences'),
(4665, 3501, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²µą³†ą³–ą²¦ą³ą²Æą²•ą²æą³•ą²Æ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(4666, 3502, 'en', 'name', 'MedStar Franklin Square Medical Center'),
(4667, 3503, 'en', 'name', 'Frankston Hospital'),
(4668, 3504, 'it', 'name', 'Azienda Ospedaliera San Giovanni Addolorata'),
(4669, 3504, 'en', 'name', 'San Giovanni Addolorata Hospital'),
(4670, 3505, 'en', 'name', 'Francis Hospital'),
(4671, 3505, 'de', 'name', 'Franziskus Hospital Bielefeld'),
(4672, 3506, 'it', 'name', 'Ospedale San Giovanni Antica Sede'),
(4673, 3507, 'en', 'name', 'MRC Cognition and Brain Sciences Unit'),
(4674, 3508, 'en', 'name', 'MRC Biostatistics Unit'),
(4675, 3509, 'en', 'name', 'MRC Cancer Unit'),
(4676, 3510, 'it', 'name', 'Ospedale San Giovanni Bosco'),
(4677, 3511, 'en', 'name', 'Plastic Surgery Hospital'),
(4678, 3512, 'en', 'name', 'Frederiksberg Hospital'),
(4679, 3513, 'en', 'name', 'Freeman Hospital'),
(4680, 3514, 'en', 'name', 'Plains Health Centre'),
(4681, 3515, 'en', 'name', 'MRC Human Nutrition Research'),
(4682, 3516, 'en', 'name', 'MRC Epidemiology Unit'),
(4683, 3517, 'no_lang_code', 'name', 'Kashiwa Municipal Hospital'),
(4684, 3517, 'ja', 'name', 'ęŸåø‚ē«‹ęŸē—…é™¢'),
(4685, 3518, 'en', 'name', 'Frenchay Hospital'),
(4686, 3519, 'tr', 'name', 'Kasımpaşa Asker Hastanesi'),
(4687, 3520, 'en', 'name', 'Frere Hospital'),
(4688, 3521, 'en', 'name', 'MRC Unit the Gambia'),
(4689, 3522, 'it', 'name', 'Ospedale di Monfalcone'),
(4690, 3523, 'it', 'name', 'Ospedale San Giovanni Bellinzona'),
(4691, 3524, 'en', 'name', 'MRC Toxicology Unit'),
(4692, 3525, 'it', 'name', 'Azienda Ospedaliera S.Giuseppe Moscati'),
(4693, 3526, 'en', 'name', 'San Jacinto Methodist Hospital'),
(4694, 3527, 'no_lang_code', 'name', 'Katsumata Hospital'),
(4695, 3527, 'ja', 'name', 'å‹åˆē—…é™¢'),
(4696, 3528, 'en', 'name', 'Friarage Hospital'),
(4697, 3529, 'it', 'name', 'Ospedale G.B. Morgagni - L.Pierantoni'),
(4698, 3530, 'en', 'name', 'Polyclinic Medical Center'),
(4699, 3531, 'en', 'name', 'CRUK/MRC Oxford Institute for Radiation Oncology'),
(4700, 3532, 'de', 'name', 'Klinikum im Friedrichshain'),
(4701, 3533, 'en', 'name', 'MRC Centre for Reproductive Health'),
(4702, 3534, 'en', 'name', 'Kathmandu Medical College Teaching Hospital'),
(4703, 3535, 'en', 'name', 'Police General Hospital'),
(4704, 3535, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø•ąø³ąø£ąø§ąøˆ'),
(4705, 3536, 'it', 'name', 'Ospedale San Paolo'),
(4706, 3537, 'it', 'name', 'Ospedale San Paolo'),
(4707, 3538, 'en', 'name', 'Polyclinic General Hospital'),
(4708, 3539, 'no_lang_code', 'name', 'Kawasaki Hospital'),
(4709, 3539, 'ja', 'name', 'å·å“Žē—…é™¢'),
(4710, 3540, 'en', 'name', 'Pondicherry Institute of Medical Sciences'),
(4711, 3541, 'en', 'name', 'Froedtert Hospital'),
(4712, 3542, 'en', 'name', 'Frontier Medical College'),
(4713, 3542, 'ur', 'name', 'ŁŲ±Ł†Ł¹ŪŒŲ¦Ų± Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(4714, 3543, 'it', 'name', 'Presidio Ospedaliero San Salvatore - Pesaro'),
(4715, 3543, 'en', 'name', 'San Salvatore Hospital'),
(4716, 3544, 'no_lang_code', 'name', 'San-ikukai Hospital'),
(4717, 3544, 'ja', 'name', 'č³›č‚²ä¼šē—…é™¢'),
(4718, 3545, 'no_lang_code', 'name', 'Kawasaki Municipal Hospital'),
(4719, 3545, 'ja', 'name', 'å·å“Žåø‚ē«‹å·å“Žē—…é™¢'),
(4720, 3546, 'en', 'name', 'Nagasaki Kawatana Medical Center'),
(4721, 3546, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹é•·å“Žå·ę£šåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4722, 3547, 'en', 'name', 'Fujian Provincial Cancer Hospital'),
(4723, 3547, 'zh', 'name', 'ē¦å»ŗēœč‚æē˜¤åŒ»é™¢'),
(4724, 3548, 'en', 'name', 'Kaweah Delta Health Care District'),
(4725, 3549, 'en', 'name', 'University Children’s Hospital'),
(4726, 3549, 'pl', 'name', 'Uniwersytecki Szpital Dziecięcy'),
(4727, 3550, 'it', 'name', 'Ospedale Sandro Pertini'),
(4728, 3551, 'en', 'name', 'Poriya Medical Center'),
(4729, 3551, 'he', 'name', 'בית חולים ×‘×Ø×•×š פדה'),
(4730, 3552, 'tr', 'name', 'Kayseri Eğitim ve Araştırma Hastanesi'),
(4731, 3553, 'en', 'name', 'Medical Research Institute of New Zealand'),
(4732, 3554, 'en', 'name', 'Port Moresby General Hospital'),
(4733, 3555, 'en', 'name', 'Fujisawa City Hospital'),
(4734, 3555, 'ja', 'name', '藤沢市民病院'),
(4735, 3556, 'tr', 'name', 'S.B. Keçiören Eğitim ve Araştırma Hastanesi'),
(4736, 3557, 'en', 'name', 'Brigham and Women''s Faulkner Hospital'),
(4737, 3558, 'en', 'name', 'Sandviken Hospital'),
(4738, 3558, 'sv', 'name', 'Sandviken sykehus'),
(4739, 3559, 'no_lang_code', 'name', 'Fukui Prefectural Hospital'),
(4740, 3559, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹ē—…é™¢'),
(4741, 3560, 'en', 'name', 'Sandwell General Hospital'),
(4742, 3561, 'fr', 'name', 'HƓpital adventiste porter'),
(4743, 3561, 'en', 'name', 'Porter Adventist Hospital'),
(4744, 3562, 'no_lang_code', 'name', 'Portiuncula Hospital'),
(4745, 3563, 'en', 'name', 'Fukui Red Cross Hospital'),
(4746, 3563, 'ja', 'name', 'ē¦äŗ•čµ¤åå­—ē—…é™¢'),
(4747, 3564, 'en', 'name', 'Keesler Medical Center'),
(4748, 3565, 'no_lang_code', 'name', 'Fukujuji Hospital'),
(4749, 3565, 'ja', 'name', 'č¤‡åå­—ē—…é™¢'),
(4750, 3566, 'en', 'name', 'Post Graduate Medical Institute'),
(4751, 3567, 'en', 'name', 'Keller Army Community Hospital'),
(4752, 3568, 'en', 'name', 'Fukuoka Institute of Health and Environmental Sciences'),
(4753, 3568, 'ja', 'name', 'ē¦å²”ēœŒäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(4754, 3569, 'en', 'name', 'Kelowna General Hospital'),
(4755, 3570, 'en', 'name', 'SangStat Medical Corporation'),
(4756, 3571, 'en', 'name', 'Kemerovo State Medical Academy'),
(4757, 3571, 'ru', 'name', 'ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(4758, 3572, 'en', 'name', 'Kempegowda Institute of Medical Sciences'),
(4759, 3572, 'kn', 'name', 'ą²•ą³†ą²‚ą²Ŗą³†ą³•ą²—ą³Œą²” ą²µą³†ą³–ą²¦ą³ą²Æą²•ą²æą³•ą²Æ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(4760, 3573, 'no_lang_code', 'name', 'Fukuoka Hospital'),
(4761, 3573, 'ja', 'name', 'ē¦å²”ē—…é™¢'),
(4762, 3574, 'en', 'name', 'Sansum Medical Clinic'),
(4763, 3575, 'en', 'name', 'WellStar Kennestone Hospital'),
(4764, 3576, 'en', 'name', 'Poudre Valley Hospital'),
(4765, 3577, 'en', 'name', 'Japanese Red Cross Fukuoka Hospital'),
(4766, 3577, 'ja', 'name', 'ē¦å²”čµ¤åå­—ē—…é™¢'),
(4767, 3578, 'en', 'name', 'Kent and Canterbury Hospital'),
(4768, 3579, 'no_lang_code', 'name', 'Fukuoka Tokushukai Hospital');
INSERT INTO `ror_settings` VALUES
(4769, 3579, 'ja', 'name', 'ē¦å²”å¾³ę“²ä¼šē—…é™¢'),
(4770, 3580, 'en', 'name', 'Kent and Sussex Hospital'),
(4771, 3581, 'no_lang_code', 'name', 'Prapokklao Hospital'),
(4772, 3581, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøžąø£ąø°ąø›ąøą¹€ąøąø„ą¹‰ąø²'),
(4773, 3582, 'no_lang_code', 'name', 'Sant Parmanand Hospital'),
(4774, 3583, 'en', 'name', 'Pravara Institute of Medical Sciences'),
(4775, 3584, 'en', 'name', 'Santa Barbara Cottage Hospital'),
(4776, 3585, 'en', 'name', 'Novant Health Presbyterian Medical Center'),
(4777, 3586, 'en', 'name', 'Kent Hospital'),
(4778, 3587, 'en', 'name', 'Fukuyama Cardiovascular Hospital'),
(4779, 3587, 'ja', 'name', 'ē¦å±±å¾Ŗē’°å™Øē—…é™¢'),
(4780, 3588, 'tr', 'name', 'Kent Hastanesi'),
(4781, 3588, 'en', 'name', 'Kent Hospital'),
(4782, 3589, 'no_lang_code', 'name', 'Fukuyama City Hospital'),
(4783, 3589, 'ja', 'name', 'ē¦å±±åø‚ę°‘ē—…é™¢'),
(4784, 3590, 'en', 'name', 'Fulbourn Hospital'),
(4785, 3591, 'en', 'name', 'Kerala Institute of Medical Sciences'),
(4786, 3592, 'en', 'name', 'Fulton County Medical Examiner''s Office'),
(4787, 3593, 'en', 'name', 'Texas Health Dallas'),
(4788, 3594, 'en', 'name', 'Funabashi Municipal Medical Center'),
(4789, 3594, 'ja', 'name', 'čˆ¹ę©‹åø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4790, 3595, 'en', 'name', 'Presbyterian Hospital'),
(4791, 3596, 'en', 'name', 'Santa Casa Hospital'),
(4792, 3597, 'en', 'name', 'Presbyterian Medical Center'),
(4793, 3597, 'ko', 'name', 'ģ˜ˆģˆ˜ė³‘ģ›'),
(4794, 3598, 'en', 'name', 'Priest Hospital'),
(4795, 3598, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąø‡ąø†ą¹Œ'),
(4796, 3599, 'en', 'name', 'Primary Children''s Hospital'),
(4797, 3600, 'en', 'name', 'Urho Kaleva Kekkonen Institute'),
(4798, 3601, 'ro', 'name', 'Institutul Clinic Fundeni'),
(4799, 3602, 'en', 'name', 'Kern Medical Center'),
(4800, 3603, 'en', 'name', 'Santa Clara Valley Medical Center'),
(4801, 3604, 'en', 'name', 'Furness General Hospital'),
(4802, 3605, 'en', 'name', 'Prince Charles Hospital'),
(4803, 3606, 'it', 'name', 'Ospedale Santa Corona'),
(4804, 3607, 'en', 'name', 'Social Insurance Futase Hospital'),
(4805, 3607, 'ja', 'name', 'ē¤¾ä¼šäæé™ŗ äŗŒē€¬ē—…é™¢'),
(4806, 3608, 'en', 'name', 'Prince Charles Hospital'),
(4807, 3609, 'en', 'name', 'Michigan Surgical Hospital'),
(4808, 3610, 'en', 'name', 'Prince George''s Hospital Center'),
(4809, 3611, 'it', 'name', 'Ospedale Santa Maria alle Scotte'),
(4810, 3611, 'en', 'name', 'Santa Maria alle Scotte Hospital'),
(4811, 3612, 'en', 'name', 'Kessler Institute for Rehabilitation'),
(4812, 3613, 'en', 'name', 'Kettering General Hospital'),
(4813, 3614, 'en', 'name', 'Prince of Wales Hospital'),
(4814, 3615, 'it', 'name', 'Ospedale Santa Maria Annunziata'),
(4815, 3616, 'en', 'name', 'Tufts Children''s Hospital'),
(4816, 3617, 'en', 'name', 'Prince of Wales Hospital'),
(4817, 3618, 'fr', 'name', 'Centre mƩdical de kettering'),
(4818, 3618, 'en', 'name', 'Kettering Medical Center'),
(4819, 3619, 'it', 'name', 'Azienda Ospedaliera Santa Maria Degli Angeli'),
(4820, 3620, 'it', 'name', 'Ospedale Santa Maria della Misericordia di Rovigo'),
(4821, 3621, 'no_lang_code', 'name', 'Khalili Hospital'),
(4822, 3621, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų®Ł„ŪŒŁ„ŪŒ'),
(4823, 3622, 'en', 'name', 'Khoo Teck Puat Hospital'),
(4824, 3623, 'no_lang_code', 'name', 'Khoula Hospital'),
(4825, 3623, 'ar', 'name', 'مستؓفى Ų®ŁˆŁ„Ų©'),
(4826, 3624, 'it', 'name', 'Ospedale Santa Maria'),
(4827, 3625, 'en', 'name', 'Khulna Medical College'),
(4828, 3625, 'bn', 'name', 'খুলনা মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(4829, 3626, 'en', 'name', 'Prince Philip Dental Hospital'),
(4830, 3626, 'zh', 'name', 'č²č‡˜ē‰™ē§‘é†«é™¢'),
(4831, 3627, 'en', 'name', 'Khyber Medical College'),
(4832, 3628, 'en', 'name', 'Medical Society of Delaware'),
(4833, 3629, 'en', 'name', 'Prince Philip Hospital'),
(4834, 3630, 'en', 'name', 'Khyber Teaching Hospital'),
(4835, 3631, 'en', 'name', 'Princess Anne Hospital'),
(4836, 3632, 'it', 'name', 'Ospedale di Santa Maria Nuova'),
(4837, 3632, 'en', 'name', 'Santa Maria Nuova Hospital'),
(4838, 3633, 'it', 'name', 'Ospedale di Santa Maria Nuova'),
(4839, 3633, 'en', 'name', 'Santa Maria Nuova Hospital'),
(4840, 3634, 'en', 'name', 'Medical Technology and Practice Patterns Institute'),
(4841, 3635, 'en', 'name', 'Killingbeck'),
(4842, 3636, 'en', 'name', 'Princess Margaret Cancer Centre'),
(4843, 3637, 'pt', 'name', 'Hospital de Santa Marta'),
(4844, 3638, 'en', 'name', 'Princess Margaret Hospital'),
(4845, 3639, 'en', 'name', 'Government Kilpauk Medical College'),
(4846, 3639, 'ta', 'name', 'ą®•ąÆ€ą®“ąÆą®Ŗą®¾ą®•ąÆą®•ą®®ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(4847, 3640, 'en', 'name', 'UCLA Medical Center'),
(4848, 3641, 'it', 'name', 'Azienda Ospedaliera Sant''Andrea'),
(4849, 3642, 'en', 'name', 'MedStar Health'),
(4850, 3643, 'en', 'name', 'MedStar Union Memorial Hospital'),
(4851, 3644, 'en', 'name', 'Kin-ikyo Chuo Hospital'),
(4852, 3644, 'ja', 'name', 'å‹¤åŒ»å”äø­å¤®ē—…é™¢'),
(4853, 3645, 'en', 'name', 'MedStar Washington Hospital Center'),
(4854, 3646, 'it', 'name', 'Ospedale Sant''Anna'),
(4855, 3647, 'en', 'name', 'DR. B.R.A. Institute Rotary Cancer Hospital'),
(4856, 3648, 'en', 'name', 'Medwin Hospital'),
(4857, 3649, 'en', 'name', 'Meenakshi Ammal Dental College and Hospital'),
(4858, 3650, 'no_lang_code', 'name', 'Kinan Hospital'),
(4859, 3651, 'en', 'name', 'Princess Margaret Rose Orthopaedic Hospital'),
(4860, 3652, 'en', 'name', 'Princess Mary Maternity Hospital'),
(4861, 3653, 'en', 'name', 'Meenakshi Mission Hospital and Research Centre'),
(4862, 3654, 'en', 'name', 'Hospital of the Holy Spirit'),
(4863, 3654, 'it', 'name', 'Ospedale di Santo Spirito'),
(4864, 3655, 'no_lang_code', 'name', 'G. Papanikolaou General Hospital'),
(4865, 3656, 'en', 'name', 'Princess of Wales Hospital'),
(4866, 3657, 'en', 'name', 'Meir Medical Center'),
(4867, 3657, 'he', 'name', '×ž×Ø×›×– רפואי ×ž××™×Ø'),
(4868, 3658, 'en', 'name', 'Princess Royal Hospital'),
(4869, 3659, 'en', 'name', 'King Abdulaziz Hospital'),
(4870, 3659, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆŲ§Ł„Ų¹Ų²ŁŠ'),
(4871, 3660, 'en', 'name', 'Meitan General Hospital'),
(4872, 3660, 'zh', 'name', 'ē…¤ē‚­ę€»åŒ»é™¢'),
(4873, 3661, 'en', 'name', 'King Abdulaziz Medical City'),
(4874, 3661, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ² Ų§Ł„Ų·ŲØŁŠŲ© للحرس Ų§Ł„ŁˆŲ·Ł†ŁŠ'),
(4875, 3662, 'en', 'name', 'King County Medical Examiner''s Office'),
(4876, 3663, 'it', 'name', 'Azienda Ospedaliera G.Rummo'),
(4877, 3664, 'no_lang_code', 'name', 'Meitetsu Hospital'),
(4878, 3664, 'ja', 'name', 'åé‰„ē—…é™¢'),
(4879, 3665, 'en', 'name', 'King Edward Memorial Hospital'),
(4880, 3666, 'en', 'name', 'Sapporo Azabu Neurosurgical Hospital'),
(4881, 3666, 'ja', 'name', 'ęœ­å¹Œéŗ»ē”Ÿč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(4882, 3667, 'en', 'name', 'Princess Royal Maternity Hospital'),
(4883, 3668, 'it', 'name', 'Ospedale G.F. Ingrassia'),
(4884, 3669, 'en', 'name', 'Probity Medical Research'),
(4885, 3670, 'en', 'name', 'Program for Appropriate Technology in Health'),
(4886, 3671, 'en', 'name', 'Sapporo National Hospital'),
(4887, 3671, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹åŒ—ęµ·é“ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(4888, 3672, 'en', 'name', 'King Fahd Armed Forces Hospital'),
(4889, 3672, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد Ł„Ł„Ł‚ŁˆŲ§ŲŖ المسلحة'),
(4890, 3673, 'en', 'name', 'King Fahad Central Hospital'),
(4891, 3673, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ بجازان'),
(4892, 3674, 'en', 'name', 'Memorial Hospital of South Bend'),
(4893, 3675, 'en', 'name', 'Sarasota Memorial Hospital'),
(4894, 3676, 'en', 'name', 'Saraswati Dental College and Hospital'),
(4895, 3677, 'en', 'name', 'King Fahad Specialist Hospital'),
(4896, 3677, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„ŲŖŲ®ŲµŲµŁŠ'),
(4897, 3678, 'ms', 'name', 'Hospital Umum Sarawak'),
(4898, 3678, 'en', 'name', 'Sarawak General Hospital'),
(4899, 3679, 'en', 'name', 'Sardar Patel Medical College'),
(4900, 3680, 'en', 'name', 'Gallup Indian Medical Center'),
(4901, 3681, 'en', 'name', 'Gandhi Medical College'),
(4902, 3681, 'hi', 'name', 'ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤­ą„‹ą¤Ŗą¤¾ą¤²'),
(4903, 3681, 'te', 'name', 'గాంధీ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(4904, 3682, 'en', 'name', 'Sasebo City General Hospital'),
(4905, 3682, 'ja', 'name', 'ä½äø–äæåø‚ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4906, 3683, 'en', 'name', 'Memorial Hospital'),
(4907, 3684, 'en', 'name', 'King Edward VIII Hospital'),
(4908, 3685, 'no_lang_code', 'name', 'King Fahad Hospital Hufūf'),
(4909, 3686, 'en', 'name', 'King Fahad Hospital Jeddah'),
(4910, 3686, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد ŲØŲ¬ŲÆŲ©'),
(4911, 3687, 'en', 'name', 'Memorial Hospital'),
(4912, 3688, 'en', 'name', 'King Fahd Military Medical Complex'),
(4913, 3689, 'it', 'name', 'Ospedale Garibaldi'),
(4914, 3690, 'en', 'name', 'Memorial Medical Center'),
(4915, 3691, 'en', 'name', 'Gartnavel General Hospital'),
(4916, 3692, 'en', 'name', 'Satakunta Central Hospital'),
(4917, 3693, 'en', 'name', 'Saudi Aramco Medical Services Organization'),
(4918, 3694, 'en', 'name', 'Garvan Institute of Medical Research'),
(4919, 3695, 'en', 'name', 'Memorial Hospital'),
(4920, 3696, 'en', 'name', 'King Faisal Specialist Hospital & Research Centre'),
(4921, 3696, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„ Ų§Ł„ŲŖŲ®ŲµŲµŁŠ'),
(4922, 3697, 'en', 'name', 'Gauhati Medical College and Hospital'),
(4923, 3697, 'bn', 'name', 'ą¦—ą§Œą¦¹ą¦¾ą¦Ÿą§€ ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(4924, 3698, 'en', 'name', 'Memorial Regional Hospital'),
(4925, 3699, 'en', 'name', 'Gaustad Hospital'),
(4926, 3699, 'no', 'name', 'Gaustad Sykehus'),
(4927, 3700, 'en', 'name', 'Gay Men''s Health Crisis'),
(4928, 3701, 'en', 'name', 'Miller Children''s & Women''s Hospital'),
(4929, 3702, 'en', 'name', 'Scarborough General Hospital'),
(4930, 3703, 'en', 'name', 'Gaylord Hospital'),
(4931, 3704, 'en', 'name', 'Mendota Mental Health Institute'),
(4932, 3705, 'en', 'name', 'Gaziantep Children''s Hospital'),
(4933, 3705, 'tr', 'name', 'Gaziantep Ƈocuk Hastanesi'),
(4934, 3706, 'en', 'name', 'Mennonite Christian Hospital'),
(4935, 3706, 'zh', 'name', '門諾醫院'),
(4936, 3707, 'en', 'name', 'King George Hospital'),
(4937, 3708, 'en', 'name', 'King Hussein Medical Center'),
(4938, 3708, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų­Ų³ŁŠŁ† Ų§Ł„Ų·ŲØŁŠŲ©'),
(4939, 3709, 'en', 'name', 'Sriram Chandra Bhanja Medical College Hospital'),
(4940, 3709, 'or', 'name', 'ą¬¶ą­ą¬°ą­€ą¬°ą¬¾ą¬® ą¬šą¬Øą­ą¬¦ą­ą¬° ą¬­ą¬žą­ą¬œ ą¬­ą­‡ą¬·ą¬œ ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(4941, 3710, 'tr', 'name', 'Gaziantep Onkoloji Hastanesi'),
(4942, 3711, 'de', 'name', 'Klinik Schillerhƶhe'),
(4943, 3712, 'en', 'name', 'Providence Health & Services Oregon and Southwest Washington'),
(4944, 3713, 'en', 'name', 'King Khaled Hospital'),
(4945, 3713, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ خالد'),
(4946, 3714, 'en', 'name', 'Providence St. Vincent Medical Center'),
(4947, 3715, 'en', 'name', 'Cohen Children''s Medical Center'),
(4948, 3716, 'en', 'name', 'Geha Mental Health Center'),
(4949, 3716, 'he', 'name', '×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש גהה'),
(4950, 3717, 'en', 'name', 'Geisinger Medical Center'),
(4951, 3718, 'en', 'name', 'Martin Luther King, Jr. Multi-Service Ambulatory Care Center'),
(4952, 3719, 'en', 'name', 'Mercy Catholic Medical Center'),
(4953, 3720, 'en', 'name', 'Geisinger Wyoming Valley Medical Center'),
(4954, 3721, 'en', 'name', 'Kings County Hospital Center'),
(4955, 3722, 'en', 'name', 'Mercy Children''s Hospital'),
(4956, 3723, 'en', 'name', 'Mercy General Hospital'),
(4957, 3724, 'en', 'name', 'Mercy Hospital'),
(4958, 3725, 'en', 'name', 'King''s Cross Hospital'),
(4959, 3726, 'en', 'name', 'Kings Mill Hospital'),
(4960, 3727, 'fr', 'name', 'HƓpital gƩnƩral de kingston'),
(4961, 3727, 'en', 'name', 'Kingston General Hospital'),
(4962, 3728, 'en', 'name', 'Gelre Hospitals'),
(4963, 3728, 'nl', 'name', 'Gelre Ziekenhuizen'),
(4964, 3729, 'en', 'name', 'Gastroenterology Medical Center and Hospital'),
(4965, 3730, 'en', 'name', 'Mercy Health System'),
(4966, 3731, 'en', 'name', 'Birmingham General Hospital'),
(4967, 3732, 'en', 'name', 'Northern Light Mercy Hospital'),
(4968, 3733, 'en', 'name', 'Public Health Foundation of India'),
(4969, 3733, 'te', 'name', 'భారత ą°Ŗą±ą°°ą°œą°¾ą°°ą±‹ą°—ą±ą°Æ ą°øą°®ą°¾ą°–ą±ą°Æ'),
(4970, 3734, 'en', 'name', 'Kingston Hospital'),
(4971, 3735, 'sv', 'name', 'FolktandvƄrden VƤstra Gƶtaland'),
(4972, 3735, 'en', 'name', 'Public Dental Service VƤstra Gƶtaland'),
(4973, 3736, 'en', 'name', 'Kinki Central Hospital'),
(4974, 3736, 'ja', 'name', '近畿中央病院'),
(4975, 3737, 'de', 'name', 'Schulthess-Klinik'),
(4976, 3738, 'en', 'name', 'Mercy Medical Center'),
(4977, 3739, 'en', 'name', 'Kintampo Health Research Centre'),
(4978, 3740, 'en', 'name', 'Kirwan Health Campus'),
(4979, 3741, 'en', 'name', 'Mercy Hospital for Women'),
(4980, 3742, 'en', 'name', 'Mercy Medical Center'),
(4981, 3743, 'en', 'name', 'Kishiwada City Hospital'),
(4982, 3743, 'ja', 'name', 'åø‚ē«‹å²øå’Œē”°åø‚ę°‘ē—…é™¢'),
(4983, 3744, 'en', 'name', 'Mercy Medical Center'),
(4984, 3745, 'en', 'name', 'Mercy Medical Center'),
(4985, 3746, 'no_lang_code', 'name', 'Kishiwada Tokushukai Hospital'),
(4986, 3746, 'ja', 'name', 'å²øå’Œē”°å¾³ę“²ä¼šē—…é™¢'),
(4987, 3747, 'en', 'name', 'Mercy Medical Center North Iowa'),
(4988, 3748, 'en', 'name', 'Kitakyushu Municipal Medical Center'),
(4989, 3748, 'ja', 'name', 'åŒ—ä¹å·žåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4990, 3749, 'en', 'name', 'Mercy San Juan Medical Center'),
(4991, 3750, 'en', 'name', 'Mercy St. Vincent Medical Center'),
(4992, 3751, 'no_lang_code', 'name', 'Kitano Hospital'),
(4993, 3751, 'ja', 'name', 'åŒ—é‡Žē—…é™¢'),
(4994, 3752, 'en', 'name', 'Huron Hospital'),
(4995, 3753, 'en', 'name', 'Scottish Rite Hospital'),
(4996, 3754, 'en', 'name', 'Shimane Prefectural Institute of Public Health and Environmental Sciences'),
(4997, 3754, 'ja', 'name', 'å³¶ę ¹ēœŒäæå„ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(4998, 3755, 'en', 'name', 'Kitasato University Medical Center'),
(4999, 3755, 'ja', 'name', 'åŒ—é‡Œå¤§å­¦ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(5000, 3756, 'en', 'name', 'Public Health Ontario'),
(5001, 3756, 'fr', 'name', 'SantƩ publique Ontario'),
(5002, 3757, 'en', 'name', 'Scripps Clinic Medical Group'),
(5003, 3758, 'en', 'name', 'Scripps Memorial Hospital'),
(5004, 3759, 'en', 'name', 'Meriter Hospital'),
(5005, 3760, 'en', 'name', 'Nottingham General Hospital'),
(5006, 3761, 'en', 'name', 'Sankt Hans Hospital'),
(5007, 3762, 'en', 'name', 'Merlin Park University Hospital'),
(5008, 3763, 'en', 'name', 'Scunthorpe General Hospital'),
(5009, 3764, 'no_lang_code', 'name', 'Kobe Asahi Hospital'),
(5010, 3764, 'ja', 'name', 'ē„žęˆøęœę—„ē—…é™¢'),
(5011, 3765, 'en', 'name', 'Public Health Solutions'),
(5012, 3766, 'en', 'name', 'Kobe Children''s Hospital'),
(5013, 3766, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(5014, 3767, 'en', 'name', 'Sri Dharmasthala Manjunatheshwara College of Dental Sciences & Hospital'),
(5015, 3768, 'en', 'name', 'Seacroft Hospital'),
(5016, 3769, 'en', 'name', 'Kobe Rosai Hospital'),
(5017, 3769, 'ja', 'name', 'ē„žęˆøåŠ“ē½ē—…é™¢'),
(5018, 3770, 'en', 'name', 'Kobe City Medical Center West Hospital'),
(5019, 3770, 'ja', 'name', 'ē„žęˆøåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼č„æåø‚ę°‘ē—…é™¢'),
(5020, 3771, 'en', 'name', 'Punjab Institute of Medical Sciences'),
(5021, 3772, 'en', 'name', 'MESA Hospital'),
(5022, 3772, 'tr', 'name', 'Mesa Hastanesi'),
(5023, 3773, 'en', 'name', 'Punjab Medical College'),
(5024, 3774, 'no_lang_code', 'name', 'Kochi Municipal Central Hospital'),
(5025, 3774, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹äø­å¤®ē—…é™¢'),
(5026, 3775, 'no_lang_code', 'name', 'Metaxa Hospital'),
(5027, 3776, 'it', 'name', 'Ospedale Koelliker'),
(5028, 3777, 'en', 'name', 'Methodist Dallas Medical Center'),
(5029, 3778, 'sl', 'name', 'SploŔna BolniŔnica Celje'),
(5030, 3779, 'de', 'name', 'Klinikum Klagenfurt'),
(5031, 3780, 'en', 'name', 'Kolding Hospital'),
(5032, 3781, 'en', 'name', 'PVS Memorial Hospital'),
(5033, 3782, 'en', 'name', 'NewYork–Presbyterian Brooklyn Methodist Hospital'),
(5034, 3783, 'hu', 'name', 'Békés Megyei Központi KórhÔz'),
(5035, 3784, 'no_lang_code', 'name', 'Komagino Hospital'),
(5036, 3784, 'ja', 'name', 'é§’ęœØé‡Žē—…é™¢'),
(5037, 3785, 'en', 'name', 'Second Affiliated Hospital of Chengdu University of Traditional Chinese'),
(5038, 3785, 'zh', 'name', 'ęˆéƒ½äø­åŒ»čÆå¤§å­¦'),
(5039, 3786, 'en', 'name', 'Second Affiliated Hospital of Kunming Medical College'),
(5040, 3786, 'zh', 'name', 'ę˜†ę˜ŽåŒ»ē§‘å¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(5041, 3787, 'en', 'name', 'Methodist Hospital'),
(5042, 3788, 'en', 'name', 'Helen Joseph Hospital'),
(5043, 3789, 'en', 'name', 'Tokushima Red Cross Hospital'),
(5044, 3789, 'ja', 'name', 'å¾³å³¶čµ¤åå­—ē—…é™¢'),
(5045, 3790, 'en', 'name', 'General Hospital of Nikea'),
(5046, 3790, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ĪĪÆĪŗĪ±Ī¹Ī±Ļ‚'),
(5047, 3791, 'en', 'name', 'Komfo Anokye Teaching Hospital'),
(5048, 3792, 'tr', 'name', 'Konya Eğitim ve Araştırma Hastanesi'),
(5049, 3793, 'en', 'name', 'Metropolitan Hospital Center'),
(5050, 3794, 'es', 'name', 'Hospital General De Segovia'),
(5051, 3795, 'en', 'name', 'General Hospital of Serres'),
(5052, 3795, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī£ĪµĻĻĻŽĪ½'),
(5053, 3796, 'en', 'name', 'Qatif Central Hospital'),
(5054, 3796, 'ar', 'name', 'مستؓفى Ų§Ł„Ł‚Ų·ŁŠŁ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(5055, 3797, 'en', 'name', 'Kootenai Medical Center'),
(5056, 3798, 'en', 'name', 'General Hospital of Shenyang Military Region'),
(5057, 3798, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ę²ˆé˜³å†›åŒŗę€»åŒ»é™¢'),
(5058, 3799, 'en', 'name', 'Queen Elizabeth II Medical Centre'),
(5059, 3800, 'en', 'name', 'Security Forces Hospital'),
(5060, 3801, 'no_lang_code', 'name', 'Veria General Hospital'),
(5061, 3801, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ημαθίας'),
(5062, 3802, 'en', 'name', 'Korea Institute of Radiological and Medical Sciences'),
(5063, 3802, 'ko', 'name', 'ķ•œźµ­ 방사선 과학 ģ—°źµ¬ģ†Œ'),
(5064, 3803, 'en', 'name', 'MetroWest Medical Center'),
(5065, 3804, 'en', 'name', 'Qingdao Municipal Hospital'),
(5066, 3805, 'en', 'name', 'Queen Alexandra Hospital'),
(5067, 3806, 'en', 'name', 'Saint John''s Hospital'),
(5068, 3807, 'en', 'name', 'Meyer Children''s Hospital'),
(5069, 3808, 'en', 'name', 'Sejong General Hospital'),
(5070, 3808, 'ko', 'name', '세종 병원'),
(5071, 3809, 'en', 'name', 'Self-Defense Forces Central Hospital'),
(5072, 3809, 'ja', 'name', 'č‡Ŗč”›éšŠäø­å¤®ē—…é™¢'),
(5073, 3810, 'nl', 'name', 'Militair Hospitaal Koningin Astrid'),
(5074, 3810, 'en', 'name', 'Queen Astrid Military Hospital'),
(5075, 3811, 'no_lang_code', 'name', 'Koga Hospital'),
(5076, 3811, 'ja', 'name', 'å¤č³€ē—…é™¢'),
(5077, 3812, 'en', 'name', 'Selly Oak Hospital'),
(5078, 3813, 'en', 'name', 'General Leonard Wood Army Community Hospital'),
(5079, 3814, 'en', 'name', 'Korea National Institute of Health'),
(5080, 3815, 'tr', 'name', 'Sema Hastanesi'),
(5081, 3815, 'en', 'name', 'Sema Hospital'),
(5082, 3816, 'nl', 'name', 'Streekziekenhuis Koningin Beatrix'),
(5083, 3817, 'en', 'name', 'MGMA Health Care Consulting Group'),
(5084, 3818, 'en', 'name', 'Miami Children''s Hospital'),
(5085, 3819, 'en', 'name', 'Queen Elizabeth Central Hospital'),
(5086, 3820, 'en', 'name', 'Korle Bu Teaching Hospital'),
(5087, 3821, 'en', 'name', 'Kosair Children''s Hospital'),
(5088, 3822, 'no_lang_code', 'name', 'Kouseiren Takaoka Hospital'),
(5089, 3822, 'ja', 'name', 'åŽšē”Ÿé€£é«˜å²”ē—…é™¢'),
(5090, 3823, 'en', 'name', 'Genesis Medical Center'),
(5091, 3824, 'en', 'name', 'Koshigaya Municipal Hospital'),
(5092, 3824, 'ja', 'name', 'č¶Šč°·åø‚ē«‹ē—…é™¢'),
(5093, 3825, 'en', 'name', 'Genesys Regional Medical Center'),
(5094, 3826, 'en', 'name', 'Miami Valley Hospital'),
(5095, 3827, 'en', 'name', 'Queen Elizabeth Hospital'),
(5096, 3828, 'no_lang_code', 'name', 'Koto Hospital'),
(5097, 3828, 'ja', 'name', 'ę±Ÿę±ē—…é™¢'),
(5098, 3829, 'en', 'name', 'Sendai Kousei Hospital'),
(5099, 3829, 'ja', 'name', 'ä»™å°åŽšē”Ÿē—…é™¢'),
(5100, 3830, 'en', 'name', 'George Eliot Hospital'),
(5101, 3831, 'en', 'name', 'Kowloon Hospital'),
(5102, 3831, 'zh', 'name', '九龍醫院'),
(5103, 3832, 'en', 'name', 'Michigan Health Council'),
(5104, 3833, 'en', 'name', 'Queen Elizabeth Hospital'),
(5105, 3834, 'en', 'name', 'Michigan Public Health Institute'),
(5106, 3835, 'en', 'name', 'KPC Medical College and Hospital'),
(5107, 3835, 'bn', 'name', 'কেপিসি মেঔিকাল ą¦•ą¦²ą§‡ą¦œ ও কে ą¦ą¦ø রায় টিবি হাসপাতাল'),
(5108, 3836, 'en', 'name', 'Michigan State Medical Society'),
(5109, 3837, 'en', 'name', 'Sentara Norfolk General Hospital'),
(5110, 3838, 'en', 'name', 'Kuakini Medical Center'),
(5111, 3839, 'en', 'name', 'Jan Evangelista Purkyně Military Medical Academy'),
(5112, 3840, 'en', 'name', 'Kuang Tien General Hospital'),
(5113, 3840, 'zh', 'name', 'å…‰ē”°ē¶œåˆé†«é™¢'),
(5114, 3841, 'en', 'name', 'Saint Luke''s Hospital'),
(5115, 3842, 'en', 'name', 'Queen Elizabeth Hospital'),
(5116, 3843, 'en', 'name', 'Queen Elizabeth Hospital'),
(5117, 3844, 'ga', 'name', 'OspidƩal na hOllscoile, Luimneach'),
(5118, 3844, 'en', 'name', 'University Hospital Limerick'),
(5119, 3845, 'en', 'name', 'GF Jooste Hospital'),
(5120, 3846, 'no_lang_code', 'name', 'Kudanzaka Hospital'),
(5121, 3846, 'ja', 'name', 'ä¹ę®µå‚ē—…é™¢'),
(5122, 3847, 'en', 'name', 'Kudret Eye Hospital'),
(5123, 3847, 'tr', 'name', 'Kudret Gƶz Hastanesi'),
(5124, 3848, 'no_lang_code', 'name', 'Ghaem Hospital'),
(5125, 3848, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† قائم'),
(5126, 3849, 'no_lang_code', 'name', 'Wooridul Hospital'),
(5127, 3849, 'ko', 'name', 'ģš°ė¦¬ė“¤ 병원'),
(5128, 3850, 'en', 'name', 'Gifu Municipal Hospital'),
(5129, 3850, 'ja', 'name', 'å²é˜œåø‚ę°‘ē—…é™¢'),
(5130, 3851, 'en', 'name', 'Gifu Prefectural General Medical Center'),
(5131, 3851, 'ja', 'name', 'å²é˜œēœŒē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5132, 3852, 'en', 'name', 'Gifu Prefectural Tajimi Hospital'),
(5133, 3852, 'ja', 'name', 'å²é˜œēœŒē«‹å¤šę²»č¦‹ē—…é™¢'),
(5134, 3853, 'en', 'name', 'Kumamoto Medical Center'),
(5135, 3853, 'ja', 'name', 'ē†Šęœ¬åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5136, 3854, 'en', 'name', 'Sequoia Hospital'),
(5137, 3855, 'no_lang_code', 'name', 'Kumamotorosaibyoin'),
(5138, 3855, 'ja', 'name', 'ē†Šęœ¬åŠ“ē½ē—…é™¢'),
(5139, 3856, 'en', 'name', 'Services Institute of Medical Sciences'),
(5140, 3856, 'ur', 'name', 'سروسز Ų§Ł†Ų³Ł¹ŪŒŁ¹ŁˆŁ¹ آف Ł…ŪŒŚˆŪŒŚ©Ł„ سائنسز'),
(5141, 3856, 'pa', 'name', 'ਸੈਰਵਿਸਜ਼ ąØ‡ą©°ąØøąØŸąØæąØŸąØæąØŠąØŸ ਆਫ਼ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ਸਾਈਨਸਜ਼'),
(5142, 3857, 'en', 'name', 'Queen Elizabeth the Queen Mother Hospital'),
(5143, 3858, 'sv', 'name', 'Hallands sjukhus Kungsbacka'),
(5144, 3859, 'en', 'name', 'Queen Margaret Hospital'),
(5145, 3860, 'en', 'name', 'Gifu Red Cross Hospital'),
(5146, 3860, 'ja', 'name', 'å²é˜œčµ¤åå­—ē—…é™¢'),
(5147, 3861, 'en', 'name', 'Kunming Children''s Hospital'),
(5148, 3861, 'zh', 'name', 'ę˜†ę˜Žåø‚å„æē«„åŒ»é™¢'),
(5149, 3862, 'en', 'name', 'Queen Mary Hospital'),
(5150, 3862, 'zh', 'name', '瑪麗醫院'),
(5151, 3863, 'en', 'name', 'Kunming General Hospital of Chengdu Military Command'),
(5152, 3863, 'zh', 'name', 'ęˆéƒ½å†›åŒŗę˜†ę˜Žę€»åŒ»é™¢'),
(5153, 3864, 'en', 'name', 'Queen Mary''s Hospital Sidcup'),
(5154, 3865, 'en', 'name', 'Seton Medical Center'),
(5155, 3866, 'en', 'name', 'Kuo General Hospital'),
(5156, 3866, 'zh', 'name', 'éƒ­ē»¼åˆåŒ»é™¢'),
(5157, 3867, 'en', 'name', 'Gimpo Airport Wooridul Spine Hospital'),
(5158, 3867, 'ko', 'name', 'ģ„œģšøģš°ė¦¬ė“¤ė³‘ģ›'),
(5159, 3868, 'en', 'name', 'Queen Elizabeth Hospital'),
(5160, 3869, 'en', 'name', 'Middlesex Hospital'),
(5161, 3870, 'en', 'name', 'Queen Elizabeth II Hospital'),
(5162, 3871, 'en', 'name', 'Glan Clwyd Hospital'),
(5163, 3871, 'cy', 'name', 'Ysbyty Glan Clwyd'),
(5164, 3872, 'en', 'name', 'Kurashiki Central Hospital'),
(5165, 3872, 'ja', 'name', '倉敷中央病院'),
(5166, 3873, 'en', 'name', 'Middlesex London Health Unit'),
(5167, 3874, 'en', 'name', 'Glanrhyd Hospital'),
(5168, 3875, 'en', 'name', 'Midwestern Regional Medical Center'),
(5169, 3876, 'no_lang_code', 'name', 'Glazer Medical Solutions (United States)'),
(5170, 3877, 'en', 'name', 'Glenbrook Hospital'),
(5171, 3878, 'en', 'name', 'Royal Hospital for Children'),
(5172, 3879, 'en', 'name', 'Gleneagles Hospital'),
(5173, 3880, 'en', 'name', 'Kurihama Medical and Addiction Center'),
(5174, 3880, 'ja', 'name', 'ä¹…é‡ŒęµœåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5175, 3881, 'en', 'name', 'Sewickley Valley Hospital'),
(5176, 3882, 'en', 'name', 'National Institute of Occupational Health'),
(5177, 3883, 'en', 'name', 'Kushiro City General Hospital'),
(5178, 3883, 'ja', 'name', 'åø‚ē«‹é‡§č·Æē·åˆē—…é™¢'),
(5179, 3884, 'en', 'name', 'Kushiro Rosai Hospital'),
(5180, 3884, 'ja', 'name', 'é‡§č·Æć‚ć†ć•ć„ē—…é™¢'),
(5181, 3885, 'en', 'name', 'Military Hospital'),
(5182, 3886, 'en', 'name', 'Queen Sirikit National Institute of Child Health'),
(5183, 3887, 'en', 'name', 'Kwai Chung Hospital'),
(5184, 3887, 'zh', 'name', 'č‘µę¶Œé†«é™¢'),
(5185, 3888, 'en', 'name', 'Queen Victoria Hospital'),
(5186, 3889, 'no_lang_code', 'name', 'Kwangju Christian Hospital'),
(5187, 3889, 'ko', 'name', 'ź“‘ģ£¼źø°ė…ė³‘ģ›'),
(5188, 3890, 'no_lang_code', 'name', 'Kwong Wah Hospital'),
(5189, 3890, 'zh', 'name', 'å»£čÆé†«é™¢'),
(5190, 3891, 'en', 'name', 'Queens Hospital Center'),
(5191, 3892, 'en', 'name', 'Shaare Zedek Medical Center'),
(5192, 3892, 'he', 'name', '×ž×Ø×›×– רפואי שערי צדק'),
(5193, 3893, 'fi', 'name', 'Kymenlaakson keskussairaala'),
(5194, 3894, 'en', 'name', 'Shadyside Hospital'),
(5195, 3895, 'en', 'name', 'Kyoto City Hospital'),
(5196, 3895, 'ja', 'name', 'äŗ¬éƒ½åø‚ē«‹ē—…é™¢'),
(5197, 3896, 'en', 'name', 'Queen''s Medical Centre'),
(5198, 3897, 'de', 'name', 'Bundeswehrkrankenhaus'),
(5199, 3898, 'en', 'name', 'Shaikh Zayed Hospital'),
(5200, 3899, 'en', 'name', 'Shaikh Zayed Postgraduate Medical Institute'),
(5201, 3899, 'ur', 'name', 'ؓیخ زید پوسٹ گریجویٹ Ł…ŪŒŚˆŪŒŚ©Ł„ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(5202, 3900, 'en', 'name', 'Provincial Laboratory of Public Health'),
(5203, 3901, 'en', 'name', 'Kyoto first Red Cross hospital'),
(5204, 3901, 'ja', 'name', 'äŗ¬éƒ½ē¬¬äø€čµ¤åå­—ē—…é™¢'),
(5205, 3902, 'en', 'name', 'Kobe Central Hospital'),
(5206, 3902, 'ja', 'name', 'ē„žęˆøäø­å¤®ē—…é™¢'),
(5207, 3903, 'en', 'name', 'Shalvata Mental Health Center'),
(5208, 3903, 'he', 'name', '×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש ×©×œ×•×•×Ŗ×”'),
(5209, 3904, 'en', 'name', 'Kagawa National Children''s Hospital'),
(5210, 3904, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹é¦™å·å°å…ē—…é™¢'),
(5211, 3905, 'no_lang_code', 'name', 'Kyoto Katsura Hospital'),
(5212, 3905, 'ja', 'name', 'äŗ¬éƒ½ę”‚ē—…é™¢'),
(5213, 3906, 'en', 'name', 'National Kyushu Medical Center'),
(5214, 3906, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ ä¹å·žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5215, 3907, 'en', 'name', 'National Maternity Hospital'),
(5216, 3908, 'en', 'name', 'Military Medical Academy'),
(5217, 3908, 'sr', 'name', 'Š’Š¾Ń˜Š½Š¾Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ° акаГемија'),
(5218, 3909, 'en', 'name', 'Military Hospital of Tunis'),
(5219, 3910, 'en', 'name', 'Shandong Eye Institute & Hospital'),
(5220, 3910, 'zh', 'name', 'å±±äøœēœēœ¼ē§‘ē ”ē©¶ę‰€é’å²›äøŽåŒ»é™¢'),
(5221, 3911, 'en', 'name', 'R. G. Kar Medical College and Hospital'),
(5222, 3912, 'en', 'name', 'R. K. Khan Hospital'),
(5223, 3913, 'en', 'name', 'North Medical Center'),
(5224, 3913, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹åŒ»ē§‘å¤§å­¦é™„å±žåŒ—éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5225, 3914, 'en', 'name', 'Shanghai Children''s Medical Center'),
(5226, 3914, 'zh', 'name', 'äøŠęµ·å„æē«„åŒ»å­¦äø­åæƒ'),
(5227, 3915, 'en', 'name', 'Rainbow Babies & Children''s Hospital'),
(5228, 3916, 'en', 'name', 'Shanghai Mental Health Center'),
(5229, 3916, 'zh', 'name', 'äøŠęµ·åø‚ē²¾ē„žå«ē”Ÿäø­åæƒ'),
(5230, 3917, 'en', 'name', 'Raja Isteri Pengiran Anak Saleha Hospital'),
(5231, 3918, 'en', 'name', 'Kyushu Central Hospital of the Mutual Aid Association of Public School Teachers'),
(5232, 3918, 'ja', 'name', 'å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆ ä¹å·žäø­å¤®ē—…é™¢'),
(5233, 3919, 'en', 'name', 'Rajavithi Hospital'),
(5234, 3920, 'en', 'name', 'Rajendra Hospital'),
(5235, 3921, 'en', 'name', 'Rajendra Institute of Medical Sciences'),
(5236, 3922, 'en', 'name', 'Rajshahi Medical College'),
(5237, 3922, 'bn', 'name', 'ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(5238, 3923, 'no_lang_code', 'name', 'Rakuwakai Otowa Hospital'),
(5239, 3923, 'ja', 'name', 'ę“›å’Œä¼šéŸ³ē¾½ē—…é™¢'),
(5240, 3924, 'en', 'name', 'Nagasaki Medical Center'),
(5241, 3924, 'ja', 'name', 'é•·å“ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5242, 3925, 'en', 'name', 'Shaoxing People''s Hospital'),
(5243, 3925, 'zh', 'name', 'ē»å…“åø‚äŗŗę°‘åŒ»é™¢'),
(5244, 3926, 'en', 'name', 'Shariati Hospital'),
(5245, 3926, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ؓریعتی'),
(5246, 3927, 'en', 'name', 'Lala Lajpat Rai Memorial Medical College'),
(5247, 3928, 'en', 'name', 'Sharp Cabrillo Hospital'),
(5248, 3929, 'en', 'name', 'Sharp Grossmont Hospital'),
(5249, 3930, 'en', 'name', 'Obihiro National Hospital'),
(5250, 3930, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹åøÆåŗƒē—…é™¢'),
(5251, 3931, 'en', 'name', 'Lokmanya Tilak Municipal General Hospital and Lokmanya Tilak Municipal Medical College'),
(5252, 3932, 'en', 'name', 'Sharp Mary Birch Hospital for Women & Newborns'),
(5253, 3933, 'en', 'name', 'Rampton Hospital'),
(5254, 3934, 'en', 'name', 'Sharp Memorial Hospital'),
(5255, 3935, 'en', 'name', 'Sharp Rees-Stealy Medical Group'),
(5256, 3936, 'en', 'name', 'Shatin Hospital'),
(5257, 3936, 'zh', 'name', '沙田醫院'),
(5258, 3937, 'it', 'name', 'Ospedale Regionale di Locarno'),
(5259, 3938, 'en', 'name', 'Shaughnessy Hospital'),
(5260, 3939, 'en', 'name', 'Oita Medical Center'),
(5261, 3939, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ å¤§åˆ†åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(5262, 3940, 'en', 'name', 'Shaukat Khanum Memorial Cancer Hospital and Research Center'),
(5263, 3940, 'ur', 'name', 'ؓوکت خانم یادگاری سرطان ؓفاخانہ اور مرکز ŲŖŲ­Ł‚ŪŒŁ‚'),
(5264, 3941, 'en', 'name', 'Millard Fillmore Suburban Hospital'),
(5265, 3942, 'en', 'name', 'Mills Peninsula Health Services'),
(5266, 3943, 'en', 'name', 'Milpark Hospital'),
(5267, 3944, 'en', 'name', 'Milton Keynes Hospital'),
(5268, 3945, 'en', 'name', 'Milwaukee County Medical Complex'),
(5269, 3946, 'en', 'name', 'Shaikh Khalifa Medical City'),
(5270, 3946, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų“ŁŠŲ® Ų®Ł„ŁŠŁŲ© Ų§Ł„Ų·ŲØŁŠŲ©'),
(5271, 3947, 'en', 'name', 'National Police Hospital'),
(5272, 3947, 'ko', 'name', '국립경찰병원'),
(5273, 3948, 'es', 'name', 'Hospital La Paloma'),
(5274, 3949, 'en', 'name', 'National Registry of Emergency Medical Technicians'),
(5275, 3950, 'en', 'name', 'Min Sheng General Hospital'),
(5276, 3950, 'zh', 'name', 'ę•ē››ē¶œåˆé†«é™¢'),
(5277, 3951, 'en', 'name', 'MedStar National Rehabilitation Hospital'),
(5278, 3952, 'en', 'name', 'Rangaraya Medical College'),
(5279, 3953, 'en', 'name', 'Shenyang Medical College'),
(5280, 3953, 'zh', 'name', 'ę²ˆé˜³åŒ»å­¦é™¢'),
(5281, 3954, 'en', 'name', 'Banff Mineral Springs Hospital'),
(5282, 3955, 'en', 'name', 'Rapid City Regional Hospital'),
(5283, 3956, 'en', 'name', 'La Rabida Children''s Hospital'),
(5284, 3957, 'en', 'name', 'Minami Wakayama Medical Center'),
(5285, 3957, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å—å’Œę­Œå±±åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(5286, 3958, 'en', 'name', 'Raritan Bay Medical Center'),
(5287, 3959, 'en', 'name', 'National Sagamihara Hospital'),
(5288, 3959, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ē›øęØ”åŽŸē—…é™¢'),
(5289, 3960, 'en', 'name', 'Sheppard and Enoch Pratt Hospital'),
(5290, 3961, 'en', 'name', 'Rashid Hospital'),
(5291, 3961, 'ar', 'name', 'مستؓفى Ų±Ų§Ų“ŲÆ'),
(5292, 3962, 'en', 'name', 'Aurora Sinai Medical Center'),
(5293, 3963, 'en', 'name', 'Sheppard Pratt Health System'),
(5294, 3964, 'en', 'name', 'National Sanyo Hospital'),
(5295, 3964, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å±±å£å®‡éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5296, 3965, 'en', 'name', 'Hospital Labbafinejad'),
(5297, 3965, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł„ŲØŲ§ŁŪŒā€ŒŁ†Ś˜'),
(5298, 3966, 'ms', 'name', 'Kementerian Kesihatan Singapura'),
(5299, 3966, 'en', 'name', 'Ministry of Health'),
(5300, 3966, 'ta', 'name', 'ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®šąÆą®•ą®¾ą®¤ą®¾ą®° ą®…ą®®ąÆˆą®šąÆą®šą®•ą®®ąÆ'),
(5301, 3966, 'zh', 'name', 'ę–°åŠ å”å«ē”ŸéƒØ'),
(5302, 3967, 'en', 'name', 'Rappaport Family Institute for Research in the Medical Sciences'),
(5303, 3968, 'en', 'name', 'Sherman Hospital'),
(5304, 3969, 'en', 'name', 'Rancho Los Amigos National Rehabilitation Center'),
(5305, 3970, 'en', 'name', 'Ministry of Health'),
(5306, 3971, 'en', 'name', 'Ministry of Health'),
(5307, 3972, 'en', 'name', 'Ministry of Health'),
(5308, 3973, 'id', 'name', 'Kementerian Kesehatan'),
(5309, 3973, 'en', 'name', 'Ministry of Health'),
(5310, 3974, 'en', 'name', 'Ratchaburi Hospital'),
(5311, 3974, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø£ąø²ąøŠąøšąøøąø£ąøµ'),
(5312, 3975, 'en', 'name', 'Laconia Women''s Health Center'),
(5313, 3976, 'en', 'name', 'Rawalpindi Medical University'),
(5314, 3977, 'en', 'name', 'Antrim Area Hospital'),
(5315, 3978, 'en', 'name', 'Barnsley Hospital'),
(5316, 3979, 'en', 'name', 'Bedford Hospital'),
(5317, 3980, 'en', 'name', 'Benenden Hospital'),
(5318, 3981, 'en', 'name', 'Churchill Hospital'),
(5319, 3982, 'en', 'name', 'Ministry of Health'),
(5320, 3983, 'en', 'name', 'Lady Hardinge Medical College'),
(5321, 3984, 'en', 'name', 'Ministry of Health'),
(5322, 3984, 'ar', 'name', 'وزارة الصحة'),
(5323, 3985, 'en', 'name', 'Lady Reading Hospital'),
(5324, 3986, 'en', 'name', 'Lady Ridgeway Hospital for Children'),
(5325, 3986, 'ta', 'name', 'ą®²ąÆ‡ą®Ÿą®æ ą®°ą®æą®ŸąÆą®œąÆą®µąÆ‡ ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆą®Æą®æą®²ąÆ'),
(5326, 3986, 'si', 'name', 'ą¶»ą·’ą¶¢ą·Šą·€ą·š ą¶†ą¶»ą·Šą¶ŗą· ą·…ą¶øą· ą¶»ą·ą·„ą¶½'),
(5327, 3987, 'en', 'name', 'Shigei Medical Research Institute'),
(5328, 3987, 'ja', 'name', 'é‡äŗ•åŒ»å­¦ē ”ē©¶ę‰€'),
(5329, 3988, 'en', 'name', 'Lahey Hospital and Medical Center'),
(5330, 3989, 'en', 'name', 'Ministry of Health'),
(5331, 3989, 'km', 'name', 'įž€įŸ’įžšįžŸįž½įž„įžŸįž»įžįž¶įž—įž·įž”įž¶įž›'),
(5332, 3990, 'en', 'name', 'Reading Hospital'),
(5333, 3991, 'en', 'name', 'Ministry of Health'),
(5334, 3991, 'my', 'name', 'į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€į€”į€ŗį€€į€¼į€®į€øį€Œį€¬į€”'),
(5335, 3992, 'en', 'name', 'Red Cross War Memorial Children''s Hospital'),
(5336, 3993, 'no_lang_code', 'name', 'Shimada Municipal Hospital'),
(5337, 3993, 'ja', 'name', '島田市民病院'),
(5338, 3994, 'no_lang_code', 'name', 'Shimane Prefectural Central Hospital'),
(5339, 3994, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹äø­å¤®ē—…é™¢'),
(5340, 3995, 'en', 'name', 'National Center of Hygiene Medical Ecology and Nutrition'),
(5341, 3996, 'en', 'name', 'Rega Institute for Medical Research'),
(5342, 3997, 'en', 'name', 'Ministry of Health'),
(5343, 3998, 'en', 'name', 'Shimonoseki City Hospital'),
(5344, 3998, 'ja', 'name', '下関市立市民病院'),
(5345, 3999, 'en', 'name', 'Shin Kong WHS Memorial Hospital'),
(5346, 4000, 'it', 'name', 'Ospedale Regina Apostolorum'),
(5347, 4001, 'en', 'name', 'Regina General Hospital'),
(5348, 4002, 'no_lang_code', 'name', 'ShinKokura Hospital'),
(5349, 4002, 'ja', 'name', 'ę–°å°å€‰ē—…é™¢'),
(5350, 4003, 'en', 'name', 'Lakehead Psychiatric Hospital'),
(5351, 4004, 'en', 'name', 'Hungarian Institute of Occupational Health'),
(5352, 4004, 'hu', 'name', 'OrszÔgos Munkahigiénés és FoglalkozÔsegészségügyi Intézet'),
(5353, 4005, 'no_lang_code', 'name', 'Shinko Hospital'),
(5354, 4005, 'ja', 'name', 'ē„žé‹¼čØ˜åæµē—…é™¢'),
(5355, 4006, 'en', 'name', 'Lakeland Regional Medical Center'),
(5356, 4007, 'en', 'name', 'Ministry of Health'),
(5357, 4007, 'lo', 'name', 'ąøąø£ąø°ąø—ąø£ąø§ąø‡ąøŖąø²ąø˜ąø²ąø£ąø“ąøŖąøøąø‚'),
(5358, 4008, 'en', 'name', 'Lake Regional Hospital'),
(5359, 4009, 'en', 'name', 'Shinkyo Hospital'),
(5360, 4010, 'en', 'name', 'Lakeshore Hospital'),
(5361, 4011, 'en', 'name', 'Shinmatsudo Central General Hospital'),
(5362, 4011, 'ja', 'name', 'ę–°ę¾ęˆøäø­å¤®ē·åˆē—…é™¢'),
(5363, 4012, 'en', 'name', 'Tulane Lakeside Hospital'),
(5364, 4013, 'en', 'name', 'National Institute of Public Health'),
(5365, 4013, 'ja', 'name', 'å›½ē«‹äæå„åŒ»ē™‚ē§‘å­¦é™¢'),
(5366, 4014, 'no_lang_code', 'name', 'Shinonoi General Hospital'),
(5367, 4014, 'ja', 'name', 'ēÆ ćƒŽäŗ•ē·åˆē—…é™¢'),
(5368, 4015, 'it', 'name', 'Ospedale Regina Margherita'),
(5369, 4015, 'en', 'name', 'Regina Margherita hospital'),
(5370, 4016, 'es', 'name', 'Ministerio de Salud de Chile'),
(5371, 4016, 'en', 'name', 'Ministry of Health'),
(5372, 4017, 'en', 'name', 'Lakewood Regional Medical Center'),
(5373, 4018, 'en', 'name', 'Regina Qu''Appelle Health Region'),
(5374, 4019, 'no_lang_code', 'name', 'Shinrakuen Hospital'),
(5375, 4019, 'ja', 'name', 'äæ”ę„½åœ’ē—…é™¢'),
(5376, 4020, 'en', 'name', 'Lancaster General Hospital'),
(5377, 4021, 'en', 'name', 'Ministry of Health'),
(5378, 4021, 'ar', 'name', 'وزارة الصحة'),
(5379, 4022, 'en', 'name', 'Regional Institute of Medical Sciences'),
(5380, 4023, 'no_lang_code', 'name', 'Laniado Hospital'),
(5381, 4024, 'en', 'name', 'Lankenau Medical Center'),
(5382, 4025, 'no_lang_code', 'name', 'Shirasagi Hospital'),
(5383, 4025, 'ja', 'name', '白鷺病院'),
(5384, 4026, 'en', 'name', 'Regional Medical Center'),
(5385, 4027, 'en', 'name', 'Regional Medical Research Center'),
(5386, 4027, 'hi', 'name', 'ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤—ą¤æą¤Øą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(5387, 4028, 'en', 'name', 'Regional Medical Research Centre'),
(5388, 4029, 'en', 'name', 'Shizuoka City Hospital'),
(5389, 4029, 'ja', 'name', 'é™å²”åø‚ē«‹é™å²”ē—…é™¢'),
(5390, 4030, 'no_lang_code', 'name', 'Shizuoka City Shimizu Hospital'),
(5391, 4030, 'ja', 'name', 'é™å²”åø‚ē«‹ęø…ę°“ē—…é™¢'),
(5392, 4031, 'en', 'name', 'Ministry of Health'),
(5393, 4031, 'be', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(5394, 4032, 'en', 'name', 'Ministry of Health'),
(5395, 4033, 'en', 'name', 'Ministry of Health'),
(5396, 4033, 'ar', 'name', 'وزارة الصحة'),
(5397, 4034, 'en', 'name', 'Lanzhou Army General Hospital'),
(5398, 4034, 'zh', 'name', '陆军总院'),
(5399, 4035, 'en', 'name', 'Shizuoka Medical Center'),
(5400, 4035, 'ja', 'name', 'é™å²”åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5401, 4036, 'no_lang_code', 'name', 'Shizuoka Saiseikai General Hospital'),
(5402, 4036, 'ja', 'name', 'é™å²”ęøˆē”Ÿä¼šē·åˆē—…é™¢'),
(5403, 4037, 'en', 'name', 'Shodair Children''s Hospital'),
(5404, 4038, 'fi', 'name', 'Lapin keskussairaala'),
(5405, 4038, 'en', 'name', 'Lapland Central Hospital'),
(5406, 4039, 'en', 'name', 'Ministry of Health and Medical Education'),
(5407, 4040, 'it', 'name', 'Ospedale del Ceppo'),
(5408, 4041, 'no_lang_code', 'name', 'Shonan Kamakura General Hospital'),
(5409, 4041, 'ja', 'name', 'ę¹˜å—éŽŒå€‰ē·åˆē—…é™¢'),
(5410, 4042, 'en', 'name', 'Ministry of Health and Child Welfare'),
(5411, 4043, 'pl', 'name', 'Wojewódzki Szpital Zespolony'),
(5412, 4044, 'en', 'name', 'Shotley Bridge Hospital'),
(5413, 4045, 'en', 'name', 'Larkin Community Hospital'),
(5414, 4046, 'en', 'name', 'Lata Medical Research Foundation'),
(5415, 4047, 'en', 'name', 'Ministry of Health Labour and Welfare'),
(5416, 4047, 'ja', 'name', 'åŽšē”ŸåŠ“åƒēœ'),
(5417, 4048, 'en', 'name', 'Shriners Hospitals for Children - Boston'),
(5418, 4049, 'en', 'name', 'National School of Public Health'),
(5419, 4050, 'en', 'name', 'Shriners Hospitals for Children - Cincinnati'),
(5420, 4051, 'en', 'name', 'Shriners Hospitals for Children - Canada'),
(5421, 4052, 'en', 'name', 'Launceston General Hospital'),
(5422, 4053, 'en', 'name', 'Shriners Hospitals for Children - Portland'),
(5423, 4054, 'en', 'name', 'Shriners Hospitals for Children - Tampa'),
(5424, 4055, 'en', 'name', 'Western Galilee Hospital'),
(5425, 4056, 'en', 'name', 'Shriners Hospitals for Children - St. Louis'),
(5426, 4057, 'en', 'name', 'National Wildlife Health Center'),
(5427, 4058, 'de', 'name', 'Krankenhaus Bozen'),
(5428, 4058, 'it', 'name', 'Ospedale di Bolzano'),
(5429, 4059, 'it', 'name', 'Ospedali Riuniti di Ancona'),
(5430, 4060, 'en', 'name', 'Shriners Hospitals for Children - Greenville'),
(5431, 4061, 'en', 'name', 'Shriners Hospitals for Children Medical Center - Lexington'),
(5432, 4062, 'en', 'name', 'Shriners Hospitals for Children - Houston'),
(5433, 4063, 'en', 'name', 'Natividad Medical Center'),
(5434, 4064, 'en', 'name', 'Shriners Hospitals for Children - Northern California'),
(5435, 4065, 'en', 'name', 'Regional West Medical Center'),
(5436, 4066, 'it', 'name', 'Ospedale di Santa Maria dei Battuti'),
(5437, 4067, 'en', 'name', 'Ministry of Public Health'),
(5438, 4067, 'fr', 'name', 'Ministère de la Santé Publique du Cameroun'),
(5439, 4068, 'en', 'name', 'Regions Hospital'),
(5440, 4069, 'en', 'name', 'Lee Memorial Health System'),
(5441, 4070, 'en', 'name', 'Lee Memorial Hospital'),
(5442, 4071, 'ro', 'name', 'Spitalul Clinic de Recuperare'),
(5443, 4072, 'en', 'name', 'Rehabilitation Hospital of Indiana'),
(5444, 4073, 'en', 'name', 'Legacy Health'),
(5445, 4074, 'en', 'name', 'Reinier de Graaf Hospital'),
(5446, 4075, 'no_lang_code', 'name', 'Renji Hospital'),
(5447, 4075, 'zh', 'name', 'äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žä»ęµŽåŒ»é™¢'),
(5448, 4076, 'en', 'name', 'Shuto General Hospital'),
(5449, 4076, 'ja', 'name', 'å‘Øę±ē·åˆē—…é™¢'),
(5450, 4077, 'en', 'name', 'Repatriation General Hospital'),
(5451, 4078, 'en', 'name', 'Lehigh Valley Health Network'),
(5452, 4079, 'en', 'name', 'Research Centre for Medical Genetics'),
(5453, 4080, 'en', 'name', 'Center for Clinical Research and Prevention'),
(5454, 4080, 'da', 'name', 'Center for Klinisk Forskning og Forebyggelse'),
(5455, 4081, 'en', 'name', 'Sichuan Cancer Hospital'),
(5456, 4081, 'zh', 'name', 'å››å·ēœč‚æē˜¤ē ”ē©¶ę‰€'),
(5457, 4082, 'en', 'name', 'Ministry of Health'),
(5458, 4082, 'uk', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ охорони зГоров''я України'),
(5459, 4083, 'cs', 'name', 'Výzkumný Ústav ZdravĆ­ DĆ­těte'),
(5460, 4084, 'en', 'name', 'Research Medical Center'),
(5461, 4085, 'en', 'name', 'Resurrection Health Care'),
(5462, 4086, 'en', 'name', 'Resurrection Medical Center'),
(5463, 4087, 'en', 'name', 'Leighton Hospital'),
(5464, 4088, 'en', 'name', 'Lemuel Shattuck Hospital'),
(5465, 4089, 'en', 'name', 'Lenox Hill Hospital'),
(5466, 4090, 'de', 'name', 'Leopoldina Krankenhaus Schweinfurt'),
(5467, 4091, 'no_lang_code', 'name', 'Lerdsin Hospital'),
(5468, 4091, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ą¹€ąø„ąø“ąø”ąøŖąø“ąø™'),
(5469, 4092, 'en', 'name', 'Letterkenny University Hospital'),
(5470, 4092, 'ga', 'name', 'OspidƩal GinearƔlta Leitir Ceanainn'),
(5471, 4093, 'en', 'name', 'Minnesota Medical Association'),
(5472, 4094, 'en', 'name', 'Rex Hospital'),
(5473, 4095, 'en', 'name', 'Letterman Army Medical Center'),
(5474, 4096, 'en', 'name', 'Minoh City Hospital'),
(5475, 4096, 'ja', 'name', 'ē®•é¢åø‚ē«‹ē—…é™¢'),
(5476, 4097, 'en', 'name', 'Levine Children''s Hospital'),
(5477, 4098, 'en', 'name', 'Sikkim Manipal University'),
(5478, 4099, 'fi', 'name', 'ReumasƤƤtiƶn sairaala'),
(5479, 4100, 'en', 'name', 'Royal Manchester Children''s Hospital'),
(5480, 4101, 'en', 'name', 'Silver Cross Hospital'),
(5481, 4102, 'en', 'name', 'Liaocheng People''s Hospital'),
(5482, 4102, 'zh', 'name', 'čŠåŸŽåø‚äŗŗę°‘åŒ»é™¢'),
(5483, 4103, 'en', 'name', 'Charles Clifford Dental Hospital'),
(5484, 4104, 'en', 'name', 'Ealing Hospital'),
(5485, 4105, 'en', 'name', 'Dundee Dental Hospital'),
(5486, 4106, 'en', 'name', 'Subang Jaya Medical Centre'),
(5487, 4107, 'en', 'name', 'Palmetto Health Richland'),
(5488, 4108, 'en', 'name', 'Lilavati Hospital & Research Centre'),
(5489, 4109, 'nl', 'name', 'Rijnland Ziekenhuis'),
(5490, 4110, 'en', 'name', 'Sin-Lau Christian Hospital'),
(5491, 4111, 'en', 'name', 'Sinai Health System'),
(5492, 4112, 'en', 'name', 'Misericordia Community Hospital'),
(5493, 4113, 'en', 'name', 'Lincoln Medical Center'),
(5494, 4114, 'no_lang_code', 'name', 'Misgav Ladach'),
(5495, 4114, 'he', 'name', '×žÖ“×©Ö°×‚×’ÖøÖ¼×‘ ×œÖ·×“ÖøÖ¼×šÖ°'),
(5496, 4115, 'en', 'name', 'Sinai Hospital'),
(5497, 4116, 'en', 'name', 'Mission Hospital'),
(5498, 4117, 'de', 'name', 'Lindenhofspital'),
(5499, 4118, 'en', 'name', 'Linyi People''s Hospital'),
(5500, 4118, 'zh', 'name', 'äø“ę²‚åø‚äŗŗę°‘åŒ»é™¢'),
(5501, 4119, 'en', 'name', 'Singleton Hospital'),
(5502, 4119, 'cy', 'name', 'Ysbyty Singleton'),
(5503, 4120, 'en', 'name', 'Lions Gate Hospital'),
(5504, 4121, 'en', 'name', 'Mission Heritage Medical Group'),
(5505, 4122, 'no_lang_code', 'name', 'Sinhgad Dental College and Hospital'),
(5506, 4123, 'en', 'name', 'Mississippi State Medical Association'),
(5507, 4124, 'en', 'name', 'Missouri Baptist Medical Center'),
(5508, 4125, 'en', 'name', 'Lister Hospital'),
(5509, 4126, 'en', 'name', 'Littlemore Hospital'),
(5510, 4127, 'no_lang_code', 'name', 'Mita Hospital'),
(5511, 4127, 'ja', 'name', 'å›½éš›åŒ»ē™‚ē¦ē„‰å¤§å­¦äø‰ē”°ē—…é™¢'),
(5512, 4128, 'en', 'name', 'Little Company of Mary Hospital'),
(5513, 4129, 'en', 'name', 'Nayoro City General Hospital'),
(5514, 4129, 'ja', 'name', 'ååÆ„åø‚ē«‹ē·åˆē—…é™¢'),
(5515, 4130, 'en', 'name', 'Mitate Hospital'),
(5516, 4130, 'ja', 'name', '見立病院'),
(5517, 4131, 'en', 'name', 'Nenagh Hospital'),
(5518, 4131, 'ga', 'name', 'OspidƩal an Aonaigh'),
(5519, 4132, 'en', 'name', 'City Hospital'),
(5520, 4133, 'en', 'name', 'Leeds Teaching Hospitals NHS Trust'),
(5521, 4134, 'en', 'name', 'Southport and Formby District General Hospital'),
(5522, 4135, 'en', 'name', 'Royal Liverpool University Hospital'),
(5523, 4136, 'en', 'name', 'MRC Laboratory for Molecular Cell Biology'),
(5524, 4137, 'en', 'name', 'Sint Lucas Andreas Hospital'),
(5525, 4137, 'nl', 'name', 'Sint Lucas Andreas Ziekenhuis'),
(5526, 4138, 'en', 'name', 'Mito Red Cross Hospital'),
(5527, 4138, 'ja', 'name', 'ę°“ęˆøčµ¤åå­—ē—…é™¢'),
(5528, 4139, 'no_lang_code', 'name', 'Nerima General Hospital'),
(5529, 4139, 'ja', 'name', 'ē·“é¦¬ē·åˆē—…é™¢'),
(5530, 4140, 'en', 'name', 'Mitsubishi Kyoto Hospital'),
(5531, 4140, 'ja', 'name', 'äø‰č±äŗ¬éƒ½ē—…é™¢'),
(5532, 4141, 'no_lang_code', 'name', 'Nerviano Medical Sciences'),
(5533, 4142, 'en', 'name', 'Riverside Methodist Hospital'),
(5534, 4143, 'en', 'name', 'Sioux Valley Hospital'),
(5535, 4144, 'en', 'name', 'Riverside Regional Medical Center'),
(5536, 4145, 'en', 'name', 'Riverview Hospital'),
(5537, 4146, 'en', 'name', 'Riverview Medical Center'),
(5538, 4147, 'it', 'name', 'Ospedale Generale Regionale Francesco Miulli'),
(5539, 4148, 'en', 'name', 'Miyake Eye Hospital'),
(5540, 4148, 'ja', 'name', 'ēœ¼ē§‘äø‰å®…ē—…é™¢'),
(5541, 4149, 'en', 'name', 'Liverpool Heart and Chest Hospital'),
(5542, 4150, 'no_lang_code', 'name', 'Sir Hurkisondas Nurrotumdas Medical Research Society'),
(5543, 4151, 'en', 'name', 'Liverpool Hospital'),
(5544, 4152, 'no_lang_code', 'name', 'Miyata Eye Hospital'),
(5545, 4152, 'ja', 'name', 'å®®ē”°ēœ¼ē§‘ē—…é™¢'),
(5546, 4153, 'en', 'name', 'Liverpool Women''s Hospital'),
(5547, 4154, 'en', 'name', 'Sir Paul Boffa Hospital'),
(5548, 4155, 'tr', 'name', 'Rize Devlet Hastanesi'),
(5549, 4156, 'en', 'name', 'University Medical Center Rizk Hospital'),
(5550, 4157, 'en', 'name', 'Robert Jones and Agnes Hunt Orthopaedic Hospital'),
(5551, 4158, 'en', 'name', 'Miyazaki Prefectural Hospital'),
(5552, 4158, 'ja', 'name', 'å®®å“ŽēœŒē«‹ē—…é™¢'),
(5553, 4159, 'it', 'name', 'Ospedaliero Sirai'),
(5554, 4160, 'tr', 'name', 'Şişli Etfal Eğitim ve Araştırma Hastanesi'),
(5555, 4161, 'en', 'name', 'Robinson Memorial Hospital'),
(5556, 4162, 'en', 'name', 'Rochester General Hospital'),
(5557, 4163, 'en', 'name', 'Trimbos Institute'),
(5558, 4163, 'nl', 'name', 'Trimbos instituut'),
(5559, 4164, 'en', 'name', 'Sismanoglio General Hospital'),
(5560, 4164, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Σισμανόγλειο'),
(5561, 4165, 'en', 'name', 'Sisters of Charity Hospital'),
(5562, 4166, 'it', 'name', 'Ospedale di Livorno'),
(5563, 4167, 'en', 'name', 'Maharaja Krishna Chandra Gajapati Medical College and Hospital'),
(5564, 4168, 'en', 'name', 'Sentara Rockingham Memorial Hospital Medical Center'),
(5565, 4169, 'en', 'name', 'Rocky Mountain Hospital for Children'),
(5566, 4170, 'en', 'name', 'Sisters of Mercy Health System'),
(5567, 4171, 'en', 'name', 'University Hospital Llandough'),
(5568, 4172, 'tr', 'name', 'Sivas Devlet Hastanesi'),
(5569, 4172, 'en', 'name', 'Sivas State Hospital'),
(5570, 4173, 'en', 'name', 'Loewenstein Hospital Rehabilitation Center'),
(5571, 4174, 'en', 'name', 'Skaraborg Hospital'),
(5572, 4174, 'sv', 'name', 'Skaraborgs Sjukhus'),
(5573, 4175, 'en', 'name', 'Motilal Nehru Medical College'),
(5574, 4176, 'en', 'name', 'Rood and Riddle Equine Hospital'),
(5575, 4177, 'en', 'name', 'SkellefteƄ Hospital'),
(5576, 4177, 'sv', 'name', 'SkellefteƄ Lasarett'),
(5577, 4178, 'en', 'name', 'Nevill Hall Hospital'),
(5578, 4179, 'da', 'name', 'Regionshospitalet Skive'),
(5579, 4179, 'en', 'name', 'Skive Hospital'),
(5580, 4180, 'en', 'name', 'London Chest Hospital'),
(5581, 4181, 'en', 'name', 'Slade Hospital'),
(5582, 4182, 'en', 'name', 'Sleep and Human Health Institute'),
(5583, 4183, 'en', 'name', 'Royal London Hospital'),
(5584, 4184, 'en', 'name', 'Roper Hospital'),
(5585, 4185, 'en', 'name', 'Rose Medical Center'),
(5586, 4186, 'en', 'name', 'New Britain General Hospital'),
(5587, 4187, 'en', 'name', 'Rosie Hospital'),
(5588, 4188, 'en', 'name', 'Moisio Hospital'),
(5589, 4188, 'fi', 'name', 'Moision Sairaala'),
(5590, 4189, 'en', 'name', 'Molde Hospital'),
(5591, 4189, 'no', 'name', 'Molde sjukehus'),
(5592, 4190, 'nl', 'name', 'Slotervaartziekenhuis'),
(5593, 4191, 'en', 'name', 'New Cross Hospital'),
(5594, 4192, 'it', 'name', 'Ospedale Monaldi'),
(5595, 4193, 'da', 'name', 'Sjællands universitetshospital, Køge'),
(5596, 4193, 'en', 'name', 'Zealand University Hospital KĆøge'),
(5597, 4194, 'en', 'name', 'New Hanover Regional Medical Center'),
(5598, 4195, 'en', 'name', 'Roskilde Hospital'),
(5599, 4195, 'da', 'name', 'Roskilde Sygehus'),
(5600, 4196, 'en', 'name', 'Monash Medical Centre'),
(5601, 4197, 'en', 'name', 'Shri Maharaja Hari Singh Hospital'),
(5602, 4198, 'en', 'name', 'Moncton Hospital'),
(5603, 4199, 'en', 'name', 'Sawai Man Singh Hospital'),
(5604, 4200, 'en', 'name', 'Rotorua Hospital'),
(5605, 4201, 'en', 'name', 'Long Beach Animal Hospital'),
(5606, 4202, 'no_lang_code', 'name', 'Rotunda Hospital'),
(5607, 4203, 'en', 'name', 'Monilek Hospital and Research Center'),
(5608, 4204, 'en', 'name', 'New Mexico Regional Federal Medical Center'),
(5609, 4205, 'en', 'name', 'Monklands Hospital'),
(5610, 4206, 'en', 'name', 'Royal Aberdeen Children''s Hospital'),
(5611, 4207, 'en', 'name', 'Monmouth Medical Center'),
(5612, 4208, 'en', 'name', 'Monroe Carell Jr. Children''s Hospital'),
(5613, 4209, 'en', 'name', 'Monroe Community Hospital'),
(5614, 4210, 'en', 'name', 'Smt. N.H.L. Municipal Medical College');
INSERT INTO `ror_settings` VALUES
(5615, 4210, 'gu', 'name', 'ąŖ¶ą«ąŖ°ą«€ąŖ®ąŖ¤ą«€. ąŖąŖØąŖąŖšąŖąŖ² ąŖ®ą«ąŖÆą«ąŖØąŖæąŖøąŖæąŖŖąŖ² મેઔિકલ ąŖ•ą«‹ąŖ²ą«‡ąŖœ'),
(5616, 4211, 'en', 'name', 'Sarojini Naidu Medical College'),
(5617, 4211, 'hi', 'name', 'ą¤øą¤°ą„‹ą¤œą¤æą¤Øą„€ ą¤Øą¤¾ą¤Æą¤”ą„‚ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(5618, 4212, 'en', 'name', 'Royal Alexandra Children''s Hospital'),
(5619, 4213, 'en', 'name', 'Montgomery General Hospital'),
(5620, 4214, 'en', 'name', 'Royal Alexandra Hospital'),
(5621, 4215, 'it', 'name', 'Ospedale L. Bonomo'),
(5622, 4216, 'fr', 'name', 'HƓpital de MontrƩal pour enfants'),
(5623, 4216, 'en', 'name', 'Montreal Children''s Hospital'),
(5624, 4217, 'en', 'name', 'Los Alamos Medical Center'),
(5625, 4218, 'en', 'name', 'Royal Alexandra Hospital'),
(5626, 4219, 'en', 'name', 'Tokyo Yamate Medical Center'),
(5627, 4219, 'ja', 'name', 'ę±äŗ¬å±±ę‰‹ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(5628, 4220, 'en', 'name', 'Royal United Hospital'),
(5629, 4221, 'en', 'name', 'Royal Belfast Hospital for Sick Children'),
(5630, 4222, 'en', 'name', 'Social Insurance Saitama Chuo Hospital'),
(5631, 4222, 'ja', 'name', 'åŸ¼ēŽ‰ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(5632, 4223, 'en', 'name', 'Royal Berkshire Hospital'),
(5633, 4224, 'en', 'name', 'Social Insurance Yokohama Central Hospital'),
(5634, 4224, 'ja', 'name', 'ęØŖęµœäø­å¤®ē—…é™¢'),
(5635, 4225, 'en', 'name', 'Funabashi Central Hospital'),
(5636, 4225, 'ja', 'name', 'čˆ¹ę©‹äø­å¤®ē—…é™¢'),
(5637, 4226, 'es', 'name', 'Departamento de Salud Pública del Condado de Los Ángeles'),
(5638, 4226, 'en', 'name', 'Los Angeles County Department of Public Health'),
(5639, 4227, 'fr', 'name', 'HƓpital GƩnƩral de MontrƩal'),
(5640, 4227, 'en', 'name', 'Montreal General Hospital'),
(5641, 4228, 'en', 'name', 'Social Security Children''s Hospital'),
(5642, 4229, 'en', 'name', 'Luodong Poh-Ai Hospital'),
(5643, 4229, 'zh', 'name', 'ē¾…ę±åšę„›é†«é™¢'),
(5644, 4230, 'en', 'name', 'Moorgreen Hospital'),
(5645, 4231, 'no_lang_code', 'name', 'Soka Municipal Hospital'),
(5646, 4231, 'ja', 'name', 'č‰åŠ åø‚ē«‹ē—…é™¢'),
(5647, 4232, 'en', 'name', 'Morgan Stanley Children''s Hospital'),
(5648, 4233, 'no_lang_code', 'name', 'Morinomiya Hospital'),
(5649, 4233, 'ja', 'name', 'ć‚‚ć‚Šć®ćæć‚„ ć»ļ½“ć“ćŸļ½Œ'),
(5650, 4234, 'en', 'name', 'Lower Manhattan Hospital'),
(5651, 4235, 'en', 'name', 'Morristown Medical Center'),
(5652, 4236, 'en', 'name', 'Royal Columbian Hospital'),
(5653, 4237, 'en', 'name', 'Royal Cornhill Hospital'),
(5654, 4238, 'en', 'name', 'Royal Cornwall Hospital'),
(5655, 4239, 'en', 'name', 'Somerset Medical Center'),
(5656, 4240, 'en', 'name', 'Royal Edinburgh Hospital'),
(5657, 4241, 'en', 'name', 'Tri-Service General Hospital Songshan Branch'),
(5658, 4242, 'en', 'name', 'Morriston Hospital'),
(5659, 4242, 'cy', 'name', 'Ysbyty Treforus'),
(5660, 4243, 'en', 'name', 'Morton Plant Hospital'),
(5661, 4244, 'en', 'name', 'New York Hospital Queens'),
(5662, 4245, 'en', 'name', 'Cone Health'),
(5663, 4246, 'en', 'name', 'Royal Hallamshire Hospital'),
(5664, 4247, 'en', 'name', 'Moses H Cone Memorial Hospital'),
(5665, 4248, 'en', 'name', 'Royal Hampshire County Hospital'),
(5666, 4249, 'no_lang_code', 'name', 'Lourdes Hospital'),
(5667, 4250, 'en', 'name', 'Royal Hospital'),
(5668, 4251, 'en', 'name', 'Lovelace Health System'),
(5669, 4252, 'en', 'name', 'Lovelace Medical Center'),
(5670, 4253, 'en', 'name', 'Sophiahemmet Hospital'),
(5671, 4253, 'sv', 'name', 'Sophiahemmet Sjukhus'),
(5672, 4254, 'en', 'name', 'Royal Hospital Haslar'),
(5673, 4255, 'en', 'name', 'Royal Inland Hospital'),
(5674, 4256, 'en', 'name', 'Morristown Hamblen Hospital Foundation'),
(5675, 4257, 'en', 'name', 'Royal Jubilee Hospital'),
(5676, 4258, 'sv', 'name', 'Lasarettet i Motala'),
(5677, 4259, 'en', 'name', 'Sound Shore Medical Center'),
(5678, 4260, 'en', 'name', 'South African Institute for Medical Research'),
(5679, 4261, 'en', 'name', 'Mount Carmel Health'),
(5680, 4262, 'en', 'name', 'South Dakota Foundation for Medical Care'),
(5681, 4263, 'en', 'name', 'Newark Beth Israel Medical Center'),
(5682, 4264, 'fi', 'name', 'EtelƤ-Karjalan keskussairaala'),
(5683, 4264, 'en', 'name', 'South Karelia Central Hospital'),
(5684, 4265, 'en', 'name', 'South Nassau Communities Hospital'),
(5685, 4266, 'en', 'name', 'South Tyneside District Hospital'),
(5686, 4267, 'en', 'name', 'Mount Elizabeth Hospital'),
(5687, 4267, 'ta', 'name', 'ą®®ą®µąÆą®£ąÆą®ŸąÆ ą®Žą®²ą®æą®šą®ŖąÆ†ą®¤ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(5688, 4268, 'en', 'name', 'Louisiana State University Hospital'),
(5689, 4269, 'es', 'name', 'Hospital Luis Vernaza'),
(5690, 4270, 'en', 'name', 'Mount Gould Hospital'),
(5691, 4271, 'de', 'name', 'Lukaskrankenhaus'),
(5692, 4272, 'sv', 'name', 'Capio Lundby Sjukhus'),
(5693, 4273, 'en', 'name', 'Mount Sinai Hospital'),
(5694, 4274, 'es', 'name', 'Hospital Monte SinaĆ­'),
(5695, 4274, 'en', 'name', 'Mount Sinai Hospital'),
(5696, 4275, 'en', 'name', 'Lutheran Medical Center'),
(5697, 4276, 'en', 'name', 'Royal National Hospital for Rheumatic Diseases'),
(5698, 4277, 'en', 'name', 'Southampton Hospital'),
(5699, 4278, 'en', 'name', 'Saint Francis Hospital & Medical Center'),
(5700, 4279, 'en', 'name', 'Punjab Government Dental College and Hospital'),
(5701, 4280, 'en', 'name', 'Luton and Dunstable University Hospital NHS Foundation Trust'),
(5702, 4281, 'en', 'name', 'Newton Wellesley Hospital'),
(5703, 4282, 'en', 'name', 'Royal National Orthopaedic Hospital'),
(5704, 4283, 'en', 'name', 'Lyndon Baines Johnson Hospital'),
(5705, 4284, 'en', 'name', 'M.S. Ramaiah Medical College'),
(5706, 4285, 'en', 'name', 'Mount Sinai Hospital'),
(5707, 4286, 'en', 'name', 'Mount Vernon Hospital'),
(5708, 4287, 'en', 'name', 'Royal Orthopaedic Hospital'),
(5709, 4288, 'en', 'name', 'Southern Hills Medical Center'),
(5710, 4289, 'en', 'name', 'Nicosia General Hospital'),
(5711, 4290, 'en', 'name', 'Southlake Regional Health Center'),
(5712, 4291, 'en', 'name', 'Southland Hospital'),
(5713, 4292, 'en', 'name', 'M. P. Shah Medical College'),
(5714, 4292, 'gu', 'name', 'ąŖ¶ą«ąŖ°ą«€ ąŖąŖ®ąŖŖą«€ શાહ સરકારી મેઔિકલ ąŖ•ą«‹ąŖ²ą«‡ąŖœ'),
(5715, 4293, 'en', 'name', 'Southmead Hospital'),
(5716, 4294, 'en', 'name', 'Hackensack University Medical Center Mountainside'),
(5717, 4295, 'en', 'name', 'Royal Preston Hospital'),
(5718, 4296, 'en', 'name', 'Niigata City General Hospital'),
(5719, 4296, 'ja', 'name', 'ę–°ę½Ÿåø‚ę°‘ē—…é™¢'),
(5720, 4297, 'en', 'name', 'Maharani Laxmi Bai Medical College'),
(5721, 4298, 'no_lang_code', 'name', 'Niigata Prefectural Central Hospital'),
(5722, 4298, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹äø­å¤®ē—…é™¢'),
(5723, 4299, 'no_lang_code', 'name', 'Mpilo Central Hospital'),
(5724, 4300, 'no_lang_code', 'name', 'Niigata Prefectural Shibata Hospital'),
(5725, 4300, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę–°ē™ŗē”°ē—…é™¢'),
(5726, 4301, 'en', 'name', 'Southwest Washington Medical Center'),
(5727, 4302, 'pt', 'name', 'Hospital Municipal Souza Aguiar'),
(5728, 4303, 'nl', 'name', 'Spaarne Ziekenhuis'),
(5729, 4304, 'en', 'name', 'Royal South Hants Hospital'),
(5730, 4305, 'en', 'name', 'MRC/CSO Social and Public Health Sciences Unit'),
(5731, 4306, 'en', 'name', 'Macclesfield District General Hospital'),
(5732, 4307, 'en', 'name', 'Sparrow Hospital'),
(5733, 4308, 'en', 'name', 'Royal Sussex County Hospital'),
(5734, 4309, 'en', 'name', 'Spartanburg Regional Medical Center'),
(5735, 4310, 'en', 'name', 'Royal Victoria Hospital'),
(5736, 4311, 'en', 'name', 'Edward Francis Small Teaching Hospital'),
(5737, 4312, 'en', 'name', 'Spenshult Hospital'),
(5738, 4313, 'en', 'name', 'Nikko Memorial Hospital'),
(5739, 4313, 'ja', 'name', 'ę—„é‹¼čØ˜åæµē—…é™¢'),
(5740, 4314, 'en', 'name', 'Nil Ratan Sircar Medical College and Hospital'),
(5741, 4314, 'ne', 'name', 'ą¤Øą„€ą¤² रतन सरकार ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ र ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(5742, 4315, 'en', 'name', 'Spring Branch Medical Center'),
(5743, 4316, 'en', 'name', 'Mudanjiang Medical University'),
(5744, 4316, 'zh', 'name', 'ē‰”äø¹ę±ŸåŒ»å­¦é™¢'),
(5745, 4317, 'en', 'name', 'Madonna Rehabilitation Hospital'),
(5746, 4318, 'en', 'name', 'Royal Victoria Regional Health Centre'),
(5747, 4319, 'en', 'name', 'Lehigh Valley Hospital Muhlenberg'),
(5748, 4320, 'en', 'name', 'Muhlenberg Regional Medical Center'),
(5749, 4321, 'en', 'name', 'Sree Balaji Dental College and Hospital'),
(5750, 4322, 'en', 'name', 'Madras Medical College'),
(5751, 4322, 'ta', 'name', 'மதராசு ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(5752, 4322, 'te', 'name', 'ą°®ą°¦ą±ą°°ą°¾ą°øą± ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(5753, 4323, 'en', 'name', 'Sree Chitra Thirunal Institute for Medical Sciences and Technology'),
(5754, 4324, 'en', 'name', 'MultiCare Health System'),
(5755, 4325, 'en', 'name', 'Sri Aurobindo Institute of Medical Sciences'),
(5756, 4326, 'en', 'name', 'Multnomah County Health Department'),
(5757, 4327, 'en', 'name', 'RTI Health Solutions'),
(5758, 4328, 'en', 'name', 'Sri Devaraj Urs Medical College'),
(5759, 4329, 'en', 'name', 'Ruchill Hospital'),
(5760, 4330, 'en', 'name', 'Madras Medical Mission'),
(5761, 4331, 'en', 'name', 'Ninewells Hospital'),
(5762, 4332, 'en', 'name', 'Maesot General Hospital'),
(5763, 4332, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ą¹ąø”ą¹ˆąøŖąø­ąø”'),
(5764, 4333, 'en', 'name', 'Maebashi Red Cross Hospital'),
(5765, 4333, 'ja', 'name', 'å‰ę©‹čµ¤åå­—ē—…é™¢'),
(5766, 4334, 'en', 'name', 'Ningbo First Hospital'),
(5767, 4334, 'zh', 'name', 'å®ę³¢åø‚ē¬¬äø€åŒ»é™¢'),
(5768, 4335, 'en', 'name', 'Rush Children''s Hospital'),
(5769, 4336, 'no_lang_code', 'name', 'Chiba Hokusou Hospital'),
(5770, 4336, 'ja', 'name', 'ę—„ęœ¬åŒ»ē§‘å¤§å­¦åƒč‘‰åŒ—ē·ē—…é™¢'),
(5771, 4337, 'en', 'name', 'Skokie Hospital'),
(5772, 4338, 'no_lang_code', 'name', 'Mafraq Hospital'),
(5773, 4338, 'ar', 'name', 'مستؓفى المفرق'),
(5774, 4339, 'en', 'name', 'Sri Manakula Vinayagar Medical College and Hospital'),
(5775, 4340, 'en', 'name', 'Magee Rehabilitation Hospital'),
(5776, 4341, 'en', 'name', 'NIMTS Hospital'),
(5777, 4342, 'en', 'name', 'Russells Hall Hospital'),
(5778, 4343, 'en', 'name', 'Nishi Eye Hospital'),
(5779, 4343, 'ja', 'name', 'č„æēœ¼ē§‘ē—…é™¢'),
(5780, 4344, 'en', 'name', 'Rutland Regional Medical Center'),
(5781, 4345, 'en', 'name', 'Sri Venkateswara Institute of Medical Sciences'),
(5782, 4346, 'en', 'name', 'Kobe City Nishi-Kobe Medical Center'),
(5783, 4346, 'ja', 'name', 'ē„žęˆøåø‚ē«‹č„æē„žęˆøåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5784, 4347, 'it', 'name', 'Ospedale Maggiore Carlo Alberto Pizzardi'),
(5785, 4348, 'no_lang_code', 'name', 'Ruttonjee Hospital'),
(5786, 4348, 'zh', 'name', '律敦治醫院'),
(5787, 4349, 'en', 'name', 'St. Luke''s Magic Valley Medical Center'),
(5788, 4350, 'en', 'name', 'Nishi Niigata Chuo National Hospital'),
(5789, 4350, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹č„æę–°ę½Ÿäø­å¤®ē—…é™¢'),
(5790, 4351, 'en', 'name', 'Sir Sayajirao General Hospital Medical College'),
(5791, 4352, 'no_lang_code', 'name', 'Maharat Nakhon Ratchasima Hospital'),
(5792, 4352, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø£ąø²ąøŠąø™ąø„ąø£ąø£ąø²ąøŠąøŖąøµąø”ąø²'),
(5793, 4353, 'no_lang_code', 'name', 'Nishida Hospital'),
(5794, 4353, 'ja', 'name', '脿田病院'),
(5795, 4354, 'en', 'name', 'Nishijin Hospital'),
(5796, 4354, 'ja', 'name', '脿陣病院'),
(5797, 4355, 'en', 'name', 'Mahatma Gandhi Institute of Medical Sciences'),
(5798, 4355, 'hi', 'name', 'ą¤®ą¤¹ą¤¾ą¤¤ą„ą¤®ą¤¾ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(5799, 4356, 'en', 'name', 'Mahatma Gandhi Medical College and Research Institute'),
(5800, 4357, 'no_lang_code', 'name', 'Mahosot Hospital'),
(5801, 4358, 'it', 'name', 'Ospedale San Bortolo'),
(5802, 4359, 'en', 'name', 'Maidstone Hospital'),
(5803, 4360, 'no_lang_code', 'name', 'Nishinomiya Municipal Central Hospital'),
(5804, 4360, 'ja', 'name', '脿宮市立中央病院'),
(5805, 4361, 'en', 'name', 'Maimonides Medical Center'),
(5806, 4362, 'en', 'name', 'Lankenau Heart Institute'),
(5807, 4363, 'en', 'name', 'Nishinomiya Kyoritsu Neurosurgical Hospital'),
(5808, 4363, 'ja', 'name', 'č„æå®®å”ē«‹č„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(5809, 4364, 'en', 'name', 'Maine Medical Center Research Institute'),
(5810, 4365, 'de', 'name', 'Klinikum Lüneburg'),
(5811, 4366, 'no_lang_code', 'name', 'Maizuru Municipal Hospital'),
(5812, 4366, 'ja', 'name', 'åø‚ē«‹čˆžé¶“åø‚ę°‘ē—…é™¢'),
(5813, 4367, 'tr', 'name', 'SSK İhtisas Hastanesi'),
(5814, 4368, 'tr', 'name', 'Okmeydanı Eğitim ve Araştırma Hastanesi'),
(5815, 4369, 'it', 'name', 'Ospedale Sant''Anna'),
(5816, 4370, 'en', 'name', 'Archbishop Makarios III Hospital'),
(5817, 4371, 'en', 'name', 'Municipal Institute for Medical Research'),
(5818, 4372, 'en', 'name', 'Bezmialem Foundation University Medical Faculty Hospital'),
(5819, 4372, 'tr', 'name', 'Bezmiâlem Vakıf Üniversitesi Tıp Fakültesi Hastanesi'),
(5820, 4373, 'en', 'name', 'Munroe Regional Medical Center'),
(5821, 4374, 'en', 'name', 'Makassed General Hospital'),
(5822, 4375, 'it', 'name', 'Ospedale San Carlo'),
(5823, 4376, 'en', 'name', 'Munson Medical Center'),
(5824, 4377, 'en', 'name', 'Sendai Nishitaga National Hospital'),
(5825, 4377, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ä»™å°č„æå¤šč³€ē—…é™¢'),
(5826, 4378, 'en', 'name', 'Al-Makassed Islamic Charitable Society Hospital'),
(5827, 4379, 'en', 'name', 'Makati Medical Center'),
(5828, 4380, 'en', 'name', 'Malabar Institute of Medical Sciences'),
(5829, 4381, 'en', 'name', 'Nishtar Medical College and Hospital'),
(5830, 4382, 'en', 'name', 'SSM Health Care'),
(5831, 4383, 'en', 'name', 'Nissan Tamagawa Hospital'),
(5832, 4383, 'ja', 'name', 'ę—„ē”£åŽšē”Ÿä¼š ēŽ‰å·ē—…é™¢'),
(5833, 4384, 'en', 'name', 'Musgrave Park Hospital'),
(5834, 4385, 'en', 'name', 'Saint Agnes Hospital'),
(5835, 4386, 'en', 'name', 'Musgrove Park Hospital'),
(5836, 4387, 'tr', 'name', 'Malatya Devlet Hastanesi'),
(5837, 4388, 'en', 'name', 'Nizam''s Institute of Medical Sciences'),
(5838, 4389, 'en', 'name', 'Privolzhsky Research Medical University'),
(5839, 4389, 'ru', 'name', 'ŠŸŃ€ŠøŠ²Š¾Š»Š¶ŃŠŗŠøŠ¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(5840, 4390, 'en', 'name', 'Saint Barnabas Medical Center'),
(5841, 4391, 'it', 'name', 'Ospedale San Donato'),
(5842, 4392, 'en', 'name', 'Mymensingh Medical College Hospital'),
(5843, 4392, 'bn', 'name', 'ময়মনসিংহ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(5844, 4393, 'en', 'name', 'St Bartholomew''s Hospital'),
(5845, 4394, 'it', 'name', 'Ospedale San Filippo Neri'),
(5846, 4395, 'en', 'name', 'Mamata Medical College'),
(5847, 4396, 'en', 'name', 'Mammoth Hospital'),
(5848, 4397, 'en', 'name', 'Noor Eye Hospital'),
(5849, 4397, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ś†Ų“Ł…ā€ŒŁ¾Ų²Ų“Ś©ŪŒ Ł†ŁˆŲ±'),
(5850, 4398, 'it', 'name', 'Ospedale San Giacomo Apostolo'),
(5851, 4399, 'en', 'name', 'Nordic School of Public Health'),
(5852, 4400, 'nl', 'name', 'Sint Clara Ziekenhuis'),
(5853, 4400, 'en', 'name', 'St Clara Hospital'),
(5854, 4401, 'it', 'name', 'Ospedale San Giuseppe'),
(5855, 4402, 'en', 'name', 'St David''s Medical Center'),
(5856, 4403, 'en', 'name', 'Nordland Hospital'),
(5857, 4404, 'en', 'name', 'Nagahama City Hospital'),
(5858, 4404, 'ja', 'name', 'é•·ęµœåø‚ē—…é™¢'),
(5859, 4405, 'nl', 'name', 'Elisabeth-TweeSteden Ziekenhuis'),
(5860, 4406, 'en', 'name', 'Manchester Royal Eye Hospital'),
(5861, 4407, 'it', 'name', 'Azienda Ospedaliera S.Maria'),
(5862, 4408, 'no_lang_code', 'name', 'Nagano Municipal Hospital'),
(5863, 4408, 'ja', 'name', 'é•·é‡Žåø‚ę°‘ē—…é™¢'),
(5864, 4409, 'en', 'name', 'Mangla Hospital and Research Center'),
(5865, 4410, 'en', 'name', 'Manipal College of Medical Sciences'),
(5866, 4411, 'no_lang_code', 'name', 'Manipal Hospital'),
(5867, 4412, 'en', 'name', 'Manipal Teaching Hospital'),
(5868, 4412, 'ne', 'name', 'मणिपाल ą¤Ÿą„€ą¤šą¤æą¤‚ą¤— ą¤¹ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(5869, 4413, 'en', 'name', 'St. Francis Hospital'),
(5870, 4414, 'en', 'name', 'Manitoba Health'),
(5871, 4415, 'en', 'name', 'Nagara Medical Center'),
(5872, 4415, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹é•·č‰ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5873, 4416, 'en', 'name', 'Norfolk and Norwich University Hospital'),
(5874, 4417, 'en', 'name', 'Manly Hospital'),
(5875, 4418, 'en', 'name', 'St Francis Medical Center'),
(5876, 4419, 'en', 'name', 'Walsall Manor Hospital'),
(5877, 4420, 'no_lang_code', 'name', 'Nagasaki Municipal Hospital'),
(5878, 4420, 'ja', 'name', 'é•·å“ŽćæćŖćØćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼åø‚ę°‘ē—…é™¢'),
(5879, 4421, 'en', 'name', 'Norrkƶping Hospital'),
(5880, 4422, 'en', 'name', 'St George Hospital'),
(5881, 4423, 'no_lang_code', 'name', 'Nagasaki Rousai Hospital'),
(5882, 4423, 'ja', 'name', 'é•·å“ŽåŠ“ē½ē—…é™¢'),
(5883, 4424, 'en', 'name', 'Nagatomi Neurosurgical Hospital'),
(5884, 4424, 'ja', 'name', 'ę°øå†Øč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(5885, 4425, 'en', 'name', 'St Gƶran''s Children''s Hospital'),
(5886, 4426, 'en', 'name', 'Nagoya Central Hospital'),
(5887, 4426, 'ja', 'name', 'åå¤å±‹ć‚»ćƒ³ćƒˆćƒ©ćƒ«ē—…é™¢'),
(5888, 4427, 'en', 'name', 'Saddleback Memorial Medical Center'),
(5889, 4428, 'tr', 'name', 'Mareşal Ƈakmak Askeri Hastanesi'),
(5890, 4429, 'en', 'name', 'St. James''s Hospital'),
(5891, 4430, 'no_lang_code', 'name', 'Safdarjang Hospital'),
(5892, 4431, 'en', 'name', 'North Bengal Medical College and Hospital'),
(5893, 4431, 'bn', 'name', 'ą¦Øą¦°ą§ą¦„ą¦¬ą§‡ą¦™ą§ą¦—ą¦² ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ'),
(5894, 4432, 'pl', 'name', 'Szpital im Tadeusza Marciniaka'),
(5895, 4433, 'en', 'name', 'Higashi Nagoya National Hospital'),
(5896, 4433, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ę±åå¤å±‹ē—…é™¢'),
(5897, 4434, 'en', 'name', 'Sabbatsberg Hospital'),
(5898, 4434, 'sv', 'name', 'Sabbatsbergs Sjukhus'),
(5899, 4435, 'no_lang_code', 'name', 'Nagoya Ekisaikai Hospital'),
(5900, 4435, 'ja', 'name', 'åå¤å±‹ęŽ–ęøˆä¼šē—…é™¢'),
(5901, 4436, 'it', 'name', 'Ospedale San Pietro Fatebenefratelli'),
(5902, 4437, 'it', 'name', 'Ospedale Maria Vittoria'),
(5903, 4438, 'en', 'name', 'Marianjoy Rehabilitation Hospital'),
(5904, 4439, 'en', 'name', 'North Carolina Division of Public Health'),
(5905, 4440, 'it', 'name', 'Ospedale Sacro Cuore Don Calabria'),
(5906, 4441, 'no_lang_code', 'name', 'Nagoya Kyouritsu Hospital'),
(5907, 4441, 'ja', 'name', 'åå¤å±‹å…±ē«‹ē—…é™¢'),
(5908, 4442, 'en', 'name', 'St John of Jerusalem Eye Hospital Group'),
(5909, 4443, 'en', 'name', 'St John''s Hospital'),
(5910, 4444, 'en', 'name', 'Nagoya Memorial Hospital'),
(5911, 4444, 'ja', 'name', 'åå¤å±‹čØ˜åæµē—…é™¢'),
(5912, 4445, 'en', 'name', 'Sacred Heart Medical Center'),
(5913, 4446, 'en', 'name', 'St.John''s Medical College Hospital'),
(5914, 4447, 'en', 'name', 'Sacred Heart Hospital'),
(5915, 4448, 'en', 'name', 'Sacred Heart Hospital'),
(5916, 4449, 'en', 'name', 'Mercy Hospital'),
(5917, 4450, 'en', 'name', 'Marietta Memorial Hospital'),
(5918, 4451, 'de', 'name', 'St. Josef-Hospital'),
(5919, 4452, 'en', 'name', 'Marion duPont Scott Equine Medical Center'),
(5920, 4453, 'en', 'name', 'North Kansas City Hospital'),
(5921, 4454, 'en', 'name', 'Providence Sacred Heart Medical Center'),
(5922, 4455, 'hu', 'name', 'Markusovszky Egyetemi OktatókórhÔz'),
(5923, 4456, 'en', 'name', 'Nakamura Memorial Hospital'),
(5924, 4456, 'ja', 'name', 'äø­ę‘čØ˜åæµē—…é™¢'),
(5925, 4457, 'en', 'name', 'North Karelia Central Hospital'),
(5926, 4457, 'fi', 'name', 'Pohjois-Karjalan Sairaanhoito- Ja Sosiaalipalvelujen KuntayhtymƤ'),
(5927, 4458, 'en', 'name', 'Sachs'' Children and Youth Hospital'),
(5928, 4459, 'no_lang_code', 'name', 'Nakadōri General Hospital'),
(5929, 4459, 'ja', 'name', 'äø­é€šē·åˆē—…é™¢'),
(5930, 4460, 'en', 'name', 'St Joseph''s Hospital Health Center'),
(5931, 4461, 'en', 'name', 'North Memorial Medical Center'),
(5932, 4462, 'en', 'name', 'North Memorial Health Care'),
(5933, 4463, 'en', 'name', 'Martha Jefferson Hospital'),
(5934, 4464, 'no_lang_code', 'name', 'Sahara Hospital'),
(5935, 4465, 'en', 'name', 'St Lawrence Hospital'),
(5936, 4466, 'en', 'name', 'North Mississippi Medical Center'),
(5937, 4467, 'en', 'name', 'Nambour General Hospital'),
(5938, 4468, 'no_lang_code', 'name', 'Sahmyook Medical Center'),
(5939, 4468, 'ko', 'name', 'ģ‚¼ģœ”ģ˜ė£Œģ›ģ„œģšøė³‘ģ›'),
(5940, 4469, 'en', 'name', 'Saifee Hospital'),
(5941, 4470, 'en', 'name', 'North Oaks Health System'),
(5942, 4471, 'en', 'name', 'St. Luke''s Episcopal Hospital'),
(5943, 4472, 'en', 'name', 'St. Luke''s Hospital'),
(5944, 4473, 'it', 'name', 'Ospedale Martini'),
(5945, 4474, 'en', 'name', 'Saint Agnes Medical Center'),
(5946, 4475, 'no_lang_code', 'name', 'Nantan General Hospital'),
(5947, 4475, 'ja', 'name', 'å…¬ē«‹å—äø¹ē—…é™¢'),
(5948, 4476, 'en', 'name', 'Saint Alphonsus Regional Medical Center'),
(5949, 4477, 'en', 'name', 'St. Barnabas Hospital'),
(5950, 4478, 'en', 'name', 'St. Luke''s Hospital'),
(5951, 4479, 'en', 'name', 'Saint Francis Health System'),
(5952, 4480, 'en', 'name', 'Saint Francis Hospital'),
(5953, 4481, 'en', 'name', 'Nara City Hospital'),
(5954, 4481, 'ja', 'name', 'åø‚ē«‹å„ˆč‰Æē—…é™¢'),
(5955, 4482, 'en', 'name', 'Mary Free Bed Rehabilitation Hospital'),
(5956, 4483, 'en', 'name', 'Mary Crowley Cancer Research Center'),
(5957, 4484, 'en', 'name', 'North Shore Medical Center'),
(5958, 4485, 'en', 'name', 'Maryknoll Medical Center'),
(5959, 4485, 'ko', 'name', '메리놀병원'),
(5960, 4486, 'en', 'name', 'Maryland Department of Health'),
(5961, 4487, 'en', 'name', 'Maryland State Medical Society'),
(5962, 4488, 'en', 'name', 'Masonic Medical Research Laboratory'),
(5963, 4489, 'en', 'name', 'Saint Francis Memorial Hospital'),
(5964, 4490, 'en', 'name', 'Narayana Dental College and Hospital'),
(5965, 4491, 'en', 'name', 'Shiga Medical Center for Children'),
(5966, 4491, 'ja', 'name', 'å­ä¾›ć®ćŸć‚ć®ę»‹č³€åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5967, 4492, 'ro', 'name', 'Spitalul Clinic de Urgenta Sfantul Ioan'),
(5968, 4493, 'en', 'name', 'Narayana Health'),
(5969, 4494, 'en', 'name', 'Saint John Regional Hospital'),
(5970, 4495, 'en', 'name', 'Saint John''s Health Center'),
(5971, 4496, 'en', 'name', 'Narayan Medical College and Hospital'),
(5972, 4497, 'en', 'name', 'St Mark''s Hospital'),
(5973, 4498, 'en', 'name', 'Massachusetts Department of Public Health'),
(5974, 4499, 'en', 'name', 'North Tyneside General Hospital'),
(5975, 4500, 'en', 'name', 'North Wales Hospital'),
(5976, 4501, 'en', 'name', 'National Academy for State Health Policy'),
(5977, 4502, 'en', 'name', 'National Academy of Medical Sciences'),
(5978, 4503, 'en', 'name', 'St Martha''s Regional Hospital'),
(5979, 4504, 'en', 'name', 'National Association of County and City Health Officials'),
(5980, 4505, 'en', 'name', 'North West Armed Forces Hospital'),
(5981, 4505, 'ar', 'name', 'مستؓفى Ų§Ł„Ł‚ŁˆŲ§ŲŖ المسلحة ŲØŲ§Ł„Ų“Ł…Ų§Ł„ŁŠŲ©'),
(5982, 4506, 'en', 'name', 'St Mary''s Hospital'),
(5983, 4507, 'en', 'name', 'North West Regional Hospital'),
(5984, 4508, 'en', 'name', 'Massachusetts Mental Health Center'),
(5985, 4509, 'en', 'name', 'Mater Adult Hospital'),
(5986, 4510, 'en', 'name', 'Mater Children''s Hospital'),
(5987, 4511, 'en', 'name', 'Northampton General Hospital'),
(5988, 4512, 'no_lang_code', 'name', 'Saga-Ken Medical Centre Koseikan'),
(5989, 4512, 'ja', 'name', 'ä½č³€ēœŒåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼å„½ē”Ÿé¤Ø'),
(5990, 4513, 'en', 'name', 'St Mary''s Hospital'),
(5991, 4514, 'en', 'name', 'National Board of Health'),
(5992, 4514, 'da', 'name', 'Sundhedsstyrelsen'),
(5993, 4515, 'en', 'name', 'St Mary''s Hospital'),
(5994, 4516, 'en', 'name', 'Unity Hospital'),
(5995, 4517, 'en', 'name', 'Saint Joseph''s Hospital'),
(5996, 4518, 'en', 'name', 'Mater Dei Hospital'),
(5997, 4519, 'en', 'name', 'St. Paul''s Hospital'),
(5998, 4520, 'en', 'name', 'Centre for Mental Health'),
(5999, 4521, 'en', 'name', 'Northside Hospital'),
(6000, 4522, 'en', 'name', 'Northwest Community Hospital'),
(6001, 4523, 'en', 'name', 'St Richard''s Hospital'),
(6002, 4524, 'en', 'name', 'Mater Hospital'),
(6003, 4525, 'en', 'name', 'Northwest Hospital and Medical Center'),
(6004, 4526, 'en', 'name', 'Mater Private Hospital'),
(6005, 4527, 'en', 'name', 'Mater Mothers'' Hospital'),
(6006, 4528, 'en', 'name', 'Northwestern Memorial Hospital'),
(6007, 4529, 'en', 'name', 'Northwick Park Hospital'),
(6008, 4530, 'en', 'name', 'St. Mary''s Hospital'),
(6009, 4531, 'en', 'name', 'Saint Vincent Hospital'),
(6010, 4532, 'en', 'name', 'Saint Michael''s Medical Center'),
(6011, 4533, 'en', 'name', 'St Vincent Medical Center'),
(6012, 4534, 'en', 'name', 'Saint Thomas West Hospital'),
(6013, 4535, 'en', 'name', 'Maternity and Children''s Hospital'),
(6014, 4536, 'en', 'name', 'Northwick Park Institute for Medical Research'),
(6015, 4537, 'no_lang_code', 'name', 'Al Omooma Hospital'),
(6016, 4538, 'en', 'name', 'Saint Vincent''s Catholic Medical Center'),
(6017, 4539, 'en', 'name', 'National Institute for Occupational Health'),
(6018, 4540, 'en', 'name', 'Matsudo City Hospital'),
(6019, 4540, 'ja', 'name', 'ę¾ęˆøåø‚ē«‹ē—…é™¢'),
(6020, 4541, 'en', 'name', 'Norton Medical Centre'),
(6021, 4542, 'en', 'name', 'Matsue Red Cross Hospital'),
(6022, 4542, 'ja', 'name', 'ę¾ę±Ÿčµ¤åå­—ē—…é™¢'),
(6023, 4543, 'en', 'name', 'Matsunami General Hospital'),
(6024, 4543, 'ja', 'name', 'ę¾ę³¢ē—…é™¢'),
(6025, 4544, 'en', 'name', 'Matsushita Memorial Hospital'),
(6026, 4544, 'ja', 'name', 'ę¾äø‹čØ˜åæµē—…é™¢'),
(6027, 4545, 'en', 'name', 'Matsuyama Red Cross Hospital'),
(6028, 4545, 'ja', 'name', 'ę¾å±±čµ¤åå­—ē—…é™¢'),
(6029, 4546, 'en', 'name', 'Saint Vincent Hospital'),
(6030, 4547, 'no_lang_code', 'name', 'Saiseikai Fukuoka General Hospital'),
(6031, 4547, 'ja', 'name', 'ęøˆē”Ÿä¼šē¦å²”ē·åˆē—…é™¢'),
(6032, 4548, 'en', 'name', 'Hospital Venereal and Skin Diseases Thessaloniki'),
(6033, 4548, 'el', 'name', 'ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘Ļ†ĻĪæĪ“Ī¹ĻƒĪÆĻ‰Ī½ & Ī”ĪµĻĪ¼Ī±Ļ„Ī¹ĪŗĻŽĪ½ ĪĻŒĻƒĻ‰Ī½ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(6034, 4549, 'no_lang_code', 'name', 'Saiseikai Ibaraki Hospital'),
(6035, 4549, 'ja', 'name', 'å¤§é˜Ŗåŗœęøˆē”Ÿä¼ščŒØęœØē—…é™¢'),
(6036, 4550, 'en', 'name', 'Noto General Hospital'),
(6037, 4550, 'ja', 'name', 'å…¬ē«‹čƒ½ē™»ē·åˆē—…é™¢'),
(6038, 4551, 'en', 'name', 'St. Anthony Hospital'),
(6039, 4552, 'en', 'name', 'Red Cross Hospital'),
(6040, 4553, 'en', 'name', 'St. Charles Medical Center'),
(6041, 4554, 'no_lang_code', 'name', 'Saiseikai Kumamoto Hospital'),
(6042, 4554, 'ja', 'name', 'ęøˆē”Ÿä¼šē†Šęœ¬ē—…é™¢'),
(6043, 4555, 'ga', 'name', 'OspidƩal Naomh Damhnait'),
(6044, 4555, 'en', 'name', 'St. Davnet''s Hospital'),
(6045, 4556, 'en', 'name', 'Chelyabinsk State Medical Academy'),
(6046, 4556, 'ru', 'name', 'Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(6047, 4557, 'no_lang_code', 'name', 'Gunma Saiseikai Maebashi Hospital'),
(6048, 4557, 'ja', 'name', 'ē¾¤é¦¬ēœŒęøˆē”Ÿä¼šå‰ę©‹ē—…é™¢'),
(6049, 4558, 'en', 'name', 'St. Elisabeth Hospital'),
(6050, 4559, 'no_lang_code', 'name', 'Saiseikai Nakatsu Hospital'),
(6051, 4559, 'ja', 'name', 'å¤§é˜Ŗåŗœęøˆē”Ÿä¼šäø­ę“„ē—…é™¢'),
(6052, 4560, 'de', 'name', 'Barmherzige Brüder Klinikum St. Elisabeth in Straubing'),
(6053, 4561, 'en', 'name', 'National Defense Medical College Hospital'),
(6054, 4561, 'ja', 'name', 'é˜²č”›åŒ»ē§‘å¤§å­¦ę ”ē—…é™¢'),
(6055, 4562, 'en', 'name', 'Saint Elizabeth Regional Medical Center'),
(6056, 4563, 'no_lang_code', 'name', 'Saiseikai Shigaken Hospital'),
(6057, 4563, 'ja', 'name', 'ęøˆē”Ÿä¼šę»‹č³€ēœŒē—…é™¢'),
(6058, 4564, 'en', 'name', 'Stepping Hill Hospital'),
(6059, 4565, 'no_lang_code', 'name', 'Numazu City Hospital'),
(6060, 4565, 'ja', 'name', '沼擄市立病院'),
(6061, 4566, 'it', 'name', 'Ospedale S. Eugenio'),
(6062, 4566, 'en', 'name', 'St. Eugenio Hospital'),
(6063, 4567, 'no_lang_code', 'name', 'Saiseikai Shimonoseki General Hospital'),
(6064, 4567, 'ja', 'name', 'å±±å£ēœŒęøˆē”Ÿä¼šäø‹é–¢ē·åˆē—…é™¢'),
(6065, 4568, 'en', 'name', 'Sterling Hospitals'),
(6066, 4569, 'no_lang_code', 'name', 'Saiseikai Suita Hospital'),
(6067, 4569, 'ja', 'name', 'å¤§é˜Ŗåŗœęøˆē”Ÿä¼šå¹ē”°ē—…é™¢'),
(6068, 4570, 'en', 'name', 'St. Francis Hospital'),
(6069, 4571, 'cs', 'name', 'Nemocnice Å ternberk'),
(6070, 4572, 'en', 'name', 'Salem Hospital'),
(6071, 4573, 'en', 'name', 'Stobhill Hospital'),
(6072, 4574, 'en', 'name', 'Salem VA Medical Center'),
(6073, 4575, 'en', 'name', 'St. Francis Hospital'),
(6074, 4576, 'en', 'name', 'Salisbury District Hospital'),
(6075, 4577, 'en', 'name', 'St. Francis Medical Center'),
(6076, 4578, 'en', 'name', 'Saint Francis Medical Center'),
(6077, 4579, 'en', 'name', 'Salmaniya Medical Complex'),
(6078, 4579, 'ar', 'name', 'مجمع Ų§Ł„Ų³Ł„Ł…Ų§Ł†ŁŠŲ© Ų§Ł„Ų·ŲØŁŠ'),
(6079, 4580, 'en', 'name', 'St. Francis Medical Center'),
(6080, 4581, 'en', 'name', 'Stockholm South General Hospital'),
(6081, 4582, 'it', 'name', 'Nuovo Ospedale San Giovanni di Dio'),
(6082, 4583, 'it', 'name', 'Istituto Superiore di SanitĆ '),
(6083, 4583, 'en', 'name', 'National Institute of Health'),
(6084, 4584, 'en', 'name', 'Via Christi Hospital St. Francis'),
(6085, 4585, 'en', 'name', 'San Antonio State Chest Hospital'),
(6086, 4586, 'de', 'name', 'St. Franziskus Hospital'),
(6087, 4587, 'en', 'name', 'Stollery Children''s Hospital'),
(6088, 4588, 'en', 'name', 'Stratheden Hospital'),
(6089, 4589, 'en', 'name', 'San Antonio Uniformed Services Health Education Consortium'),
(6090, 4590, 'en', 'name', 'St. James Hospital and Health Centers'),
(6091, 4591, 'en', 'name', 'Strong Memorial Hospital'),
(6092, 4592, 'en', 'name', 'Nyack Hospital'),
(6093, 4593, 'en', 'name', 'St. John Medical Center'),
(6094, 4594, 'en', 'name', 'Sturdy Memorial Hospital'),
(6095, 4595, 'fr', 'name', 'HƓpital Saint Roch'),
(6096, 4596, 'en', 'name', 'St. John''s Hospital'),
(6097, 4597, 'nl', 'name', 'Onze Lieve Vrouwziekenhuis Hospital'),
(6098, 4598, 'en', 'name', 'Suburban Hospital'),
(6099, 4599, 'it', 'name', 'Servizio Sanitario Nazionale'),
(6100, 4600, 'en', 'name', 'Oasis of Hope Hospital'),
(6101, 4601, 'en', 'name', 'Swami Vivekanand Subharti University'),
(6102, 4602, 'no_lang_code', 'name', 'Saiseikai Utsunomiya hospital'),
(6103, 4602, 'ja', 'name', 'ęøˆē”Ÿä¼šå®‡éƒ½å®®ē—…é™¢'),
(6104, 4603, 'en', 'name', 'National Hospital Abuja'),
(6105, 4604, 'en', 'name', 'St. Joseph Health System'),
(6106, 4605, 'no_lang_code', 'name', 'Saiseikai Wakakusa Hospital'),
(6107, 4605, 'ja', 'name', 'ęøˆē”Ÿä¼šč‹„č‰ē—…é™¢'),
(6108, 4606, 'en', 'name', 'St. Joseph Medical Center'),
(6109, 4607, 'no_lang_code', 'name', 'Saiseikai Yahata General Hospital'),
(6110, 4607, 'ja', 'name', 'ē¦å²”ēœŒęøˆē”Ÿä¼šå…«å¹”ē·åˆē—…é™¢'),
(6111, 4608, 'en', 'name', 'Suffolk County Department of Health Services'),
(6112, 4609, 'en', 'name', 'Obihiro Kosei General Hospital'),
(6113, 4609, 'ja', 'name', 'åøÆåŗƒåŽšē”Ÿē—…é™¢'),
(6114, 4610, 'en', 'name', 'St. Joseph Hospital'),
(6115, 4611, 'en', 'name', 'Suita Municipal Hospital'),
(6116, 4611, 'ja', 'name', '市立吹田市民病院'),
(6117, 4612, 'en', 'name', 'Saitama Cancer Center'),
(6118, 4612, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(6119, 4613, 'en', 'name', 'St. Joseph Hospital'),
(6120, 4614, 'en', 'name', 'Saitama Children''s Medical Center'),
(6121, 4614, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹å°å…åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(6122, 4615, 'en', 'name', 'St. Joseph Hospital'),
(6123, 4616, 'en', 'name', 'St. Joseph Medical Center'),
(6124, 4617, 'no_lang_code', 'name', 'Saitama Municipal Hospital'),
(6125, 4617, 'ja', 'name', 'ć•ć„ćŸć¾åø‚ē«‹ē—…é™¢'),
(6126, 4618, 'en', 'name', 'Sultan Qaboos Hospital'),
(6127, 4618, 'ar', 'name', 'مستؓفى السلطان Ł‚Ų§ŲØŁˆŲ³'),
(6128, 4619, 'en', 'name', 'Saitama Red Cross Hospital'),
(6129, 4619, 'ja', 'name', 'ć•ć„ćŸć¾čµ¤åå­—ē—…é™¢'),
(6130, 4620, 'en', 'name', 'Sumitomo Besshi Hospital'),
(6131, 4620, 'ja', 'name', 'ä½å‹åˆ„å­ē—…é™¢'),
(6132, 4621, 'no_lang_code', 'name', 'Sakai Municipal Hospital'),
(6133, 4621, 'ja', 'name', 'å ŗåø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(6134, 4622, 'no_lang_code', 'name', 'Sumitomo Hospital'),
(6135, 4622, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä½å‹ē—…é™¢'),
(6136, 4623, 'en', 'name', 'National Institute for Health and Care Excellence'),
(6137, 4624, 'en', 'name', 'Summa Health System'),
(6138, 4625, 'en', 'name', 'Alta Bates Summit Medical Center'),
(6139, 4626, 'en', 'name', 'National Institute of Medical Rehabilitation'),
(6140, 4626, 'hu', 'name', 'OrszÔgos Orvosi RehabilitÔciós Intézet'),
(6141, 4627, 'en', 'name', 'Daejeon Sun Hospital'),
(6142, 4627, 'ko', 'name', 'ėŒ€ģ „ģ„ ė³‘ģ›'),
(6143, 4628, 'en', 'name', 'Sundaram Medical Foundation'),
(6144, 4629, 'no_lang_code', 'name', 'Sakurabashi Watanabe Hospital'),
(6145, 4629, 'ja', 'name', 'ę”œę©‹ęø”č¾ŗē—…é™¢'),
(6146, 4630, 'en', 'name', 'Samaritan Center'),
(6147, 4631, 'sv', 'name', 'Sunderby sjukhus'),
(6148, 4632, 'it', 'name', 'Ospedale San Bassiano'),
(6149, 4633, 'en', 'name', 'St. Joseph''s Hospital'),
(6150, 4634, 'en', 'name', 'Sunderland Royal Hospital'),
(6151, 4635, 'en', 'name', 'St. Joseph''s Hospital'),
(6152, 4636, 'en', 'name', 'Occupational Safety & Health Administration'),
(6153, 4637, 'sv', 'name', 'LƤnssjukhuset Sundsvall-HƤrnƶsand'),
(6154, 4638, 'en', 'name', 'National Institute of Child Health'),
(6155, 4639, 'en', 'name', 'San Francisco General Hospital'),
(6156, 4640, 'en', 'name', 'St. Joseph''s Hospital'),
(6157, 4641, 'en', 'name', 'Netcare Sunninghill Hospital'),
(6158, 4642, 'en', 'name', 'Sunny Hill Health Centre for Children'),
(6159, 4643, 'en', 'name', 'National Institute for Research in Reproductive Health'),
(6160, 4643, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤œą¤Øą¤Ø ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6161, 4644, 'en', 'name', 'St. Joseph''s Hospital'),
(6162, 4645, 'no_lang_code', 'name', 'Odawara Municipal Hospital'),
(6163, 4645, 'ja', 'name', 'å°ē”°åŽŸåø‚ē«‹ē—…é™¢'),
(6164, 4646, 'en', 'name', 'Office of Chief Medical Examiner'),
(6165, 4647, 'en', 'name', 'St. Joseph’s University Medical Center'),
(6166, 4648, 'en', 'name', 'Sunnybrook Hospital'),
(6167, 4649, 'en', 'name', 'St. Joseph''s Children''s Hospital'),
(6168, 4650, 'it', 'name', 'Fondazione Ospedale Salesi'),
(6169, 4651, 'en', 'name', 'Office of Disease Prevention and Health Promotion'),
(6170, 4652, 'no_lang_code', 'name', 'Kunitachi Sakura Hospital'),
(6171, 4652, 'ja', 'name', 'å›½ē«‹ć•ćć‚‰ē—…é™¢'),
(6172, 4653, 'en', 'name', 'St. Jude Medical Center'),
(6173, 4654, 'no_lang_code', 'name', 'Saku Central Hospital'),
(6174, 4654, 'ja', 'name', 'ä½ä¹…ē·åˆē—…é™¢'),
(6175, 4655, 'de', 'name', 'Krankenhaus Salem'),
(6176, 4656, 'en', 'name', 'National Institute of Health'),
(6177, 4657, 'en', 'name', 'Office of the Chief Medical Examiner'),
(6178, 4658, 'en', 'name', 'Susquehanna Health'),
(6179, 4659, 'en', 'name', 'National Institute of Health of Thailand'),
(6180, 4659, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø§ąø“ąøˆąø±ąø¢ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹ŒąøŖąø²ąø˜ąø²ąø£ąø“ąøŖąøøąø‚'),
(6181, 4660, 'en', 'name', 'Sussex Eye Hospital'),
(6182, 4661, 'en', 'name', 'Office of the Medical Examiner of Cook County'),
(6183, 4662, 'en', 'name', 'Sutter Medical Center'),
(6184, 4663, 'en', 'name', 'National Institute of Health and Family Welfare'),
(6185, 4663, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ और परिवार ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6186, 4664, 'no_lang_code', 'name', 'Ogikubo Hospital'),
(6187, 4665, 'en', 'name', 'Suwa Red Cross Hospital'),
(6188, 4665, 'ja', 'name', 'č«čØŖčµ¤åå­—ē—…é™¢'),
(6189, 4666, 'en', 'name', 'Ogori Daiichi General Hospital'),
(6190, 4666, 'ja', 'name', 'å°éƒ”ē¬¬äø€ē·åˆē—…é™¢'),
(6191, 4667, 'da', 'name', 'Svendborg Sygehus'),
(6192, 4668, 'en', 'name', 'Ohio Heart & Vascular Center'),
(6193, 4669, 'en', 'name', 'Syracuse VA Medical Center'),
(6194, 4670, 'en', 'name', 'Ome Municipal General Hospital'),
(6195, 4670, 'ja', 'name', 'é’ę¢…åø‚ē«‹ē·åˆē—…é™¢'),
(6196, 4671, 'en', 'name', 'Swami Devi Dyal Hospital and Dental College'),
(6197, 4672, 'en', 'name', 'Swedish Covenant Hospital'),
(6198, 4673, 'en', 'name', 'National Center for Environmental Health'),
(6199, 4674, 'en', 'name', 'Manchester VA Medical Center'),
(6200, 4675, 'en', 'name', 'National Center for Chronic Disease Prevention and Health Promotion'),
(6201, 4676, 'en', 'name', 'Swedish Medical Center'),
(6202, 4677, 'en', 'name', 'St. Louis VA Medical Center'),
(6203, 4678, 'no_lang_code', 'name', 'Ohtsuka Eye Hospital'),
(6204, 4678, 'ja', 'name', 'å¤§å”šēœ¼ē§‘ē—…é™¢'),
(6205, 4679, 'en', 'name', 'National Center for Health Statistics'),
(6206, 4680, 'en', 'name', 'St. Luke''s Hospital'),
(6207, 4681, 'en', 'name', 'VA West Los Angeles Medical Center'),
(6208, 4682, 'no_lang_code', 'name', 'Oita Prefectural Hospital'),
(6209, 4682, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹ē—…é™¢'),
(6210, 4683, 'en', 'name', 'Oita Red Cross Hospital'),
(6211, 4683, 'ja', 'name', 'å¤§åˆ†čµ¤åå­—ē—…é™¢'),
(6212, 4684, 'no_lang_code', 'name', 'Oji General Hospital'),
(6213, 4684, 'ja', 'name', 'ēŽ‹å­ē·åˆē—…é™¢'),
(6214, 4685, 'en', 'name', 'National Disaster Medical Center'),
(6215, 4685, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ē½å®³åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(6216, 4686, 'en', 'name', 'Ohkawara Neurosurgical Hospital'),
(6217, 4686, 'ja', 'name', 'å¤§å·åŽŸč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(6218, 4687, 'en', 'name', 'Kagoshima Medical Center'),
(6219, 4687, 'ja', 'name', 'é¹æå…å³¶åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(6220, 4688, 'en', 'name', 'West Palm Beach VA Medical Center'),
(6221, 4689, 'en', 'name', 'St. Luke''s Hospital'),
(6222, 4689, 'el', 'name', 'Κλινική Άγιος Λουκάς'),
(6223, 4690, 'en', 'name', 'VA Central California Health Care System'),
(6224, 4691, 'no_lang_code', 'name', 'Okayama Central Hospital'),
(6225, 4691, 'ja', 'name', '岔山中央病院'),
(6226, 4692, 'en', 'name', 'St. Luke''s Hospital'),
(6227, 4693, 'en', 'name', 'Toneyama National Hospital'),
(6228, 4693, 'ja', 'name', 'åˆ€ę ¹å±±å›½ē«‹ē—…é™¢'),
(6229, 4694, 'en', 'name', 'National Institute for Occupational Safety and Health'),
(6230, 4695, 'en', 'name', 'Okayama Red Cross General Hospital'),
(6231, 4695, 'ja', 'name', 'å²”å±±čµ¤åå­—ē—…é™¢'),
(6232, 4696, 'en', 'name', 'Tomah VA Medical Center'),
(6233, 4697, 'en', 'name', 'Okayama Rosai Hospital'),
(6234, 4697, 'ja', 'name', 'å²”å±±åŠ“ē½ē—…é™¢'),
(6235, 4698, 'no_lang_code', 'name', 'Okayama Saiseikai General Hospital'),
(6236, 4698, 'ja', 'name', 'å²”å±±ęøˆē”Ÿä¼šē·åˆē—…é™¢'),
(6237, 4699, 'en', 'name', 'Northern Arizona VA Health Care System'),
(6238, 4700, 'en', 'name', 'Tuscaloosa VA Medical Center'),
(6239, 4701, 'en', 'name', 'Phoenix VA Health Care System'),
(6240, 4702, 'en', 'name', 'Hampton VA Medical Center'),
(6241, 4703, 'en', 'name', 'T. D. Medical College'),
(6242, 4704, 'ga', 'name', 'Ospidéal GinearÔlta Naomh LúcÔs'),
(6243, 4704, 'en', 'name', 'St. Luke''s General Hospital'),
(6244, 4705, 'en', 'name', 'Tachikawa Medical Center'),
(6245, 4705, 'ja', 'name', 'ē«‹å·ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(6246, 4706, 'en', 'name', 'Tachikawa Hospital'),
(6247, 4706, 'ja', 'name', 'ē«‹å·ē—…é™¢'),
(6248, 4707, 'en', 'name', 'St. Luke''s Hospital'),
(6249, 4708, 'en', 'name', 'Tai Po Hospital'),
(6250, 4708, 'zh', 'name', '大埔醫院'),
(6251, 4709, 'en', 'name', 'Taichung Armed Forces General Hospital'),
(6252, 4709, 'zh', 'name', 'åœ‹č»č‡ŗäø­ēø½é†«é™¢'),
(6253, 4710, 'en', 'name', 'Okinawa Prefectural Chubu Hospital'),
(6254, 4710, 'ja', 'name', 'ę²–ēø„ēœŒē«‹äø­éƒØē—…é™¢'),
(6255, 4711, 'en', 'name', 'Okinawa Prefectural Institute of Health and Environment'),
(6256, 4711, 'ja', 'name', 'å„åŗ·ćØē’°å¢ƒć®ę²–ēø„ēœŒē«‹å¤§å­¦'),
(6257, 4712, 'no_lang_code', 'name', 'Chung Hsiao Municipal Hospital'),
(6258, 4713, 'en', 'name', 'Voluntary Health Services Hospital'),
(6259, 4714, 'en', 'name', 'National Agriculture and Food Research Organization'),
(6260, 4714, 'ja', 'name', 'č¾²ę„­ćƒ»é£Ÿå“ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę©Ÿę§‹'),
(6261, 4715, 'en', 'name', 'St. Luke''s Hospital Foundation'),
(6262, 4716, 'da', 'name', 'Regionshospitalet Viborg'),
(6263, 4716, 'en', 'name', 'Viborg Regional Hospital'),
(6264, 4717, 'en', 'name', 'Oklahoma Foundation for Medical Quality'),
(6265, 4718, 'en', 'name', 'Victoria General Hospital'),
(6266, 4719, 'en', 'name', 'Mount Auburn Hospital'),
(6267, 4720, 'en', 'name', 'Olmsted Medical Center'),
(6268, 4721, 'en', 'name', 'Taipei Municipal Jen-Ai Hospital'),
(6269, 4722, 'en', 'name', 'St. Luke''s Medical Center'),
(6270, 4723, 'en', 'name', 'Victoria Hospital'),
(6271, 4724, 'en', 'name', 'Taipei Municipal Women and Children''s Hospital'),
(6272, 4725, 'en', 'name', 'Taipei Municipal YangMing Hospital'),
(6273, 4725, 'zh', 'name', 'å°åŒ—åø‚ē«‹é˜³ę˜ŽåŒ»é™¢'),
(6274, 4726, 'es', 'name', 'Instituto Nacional de Ciencias Médicas y Nutrición Salvador ZubirÔn'),
(6275, 4726, 'en', 'name', 'National Institute of Medical Sciences and Nutrition Salvador ZubirƔn'),
(6276, 4727, 'en', 'name', 'Taiwan Adventist Hospital'),
(6277, 4727, 'zh', 'name', '台安医院'),
(6278, 4728, 'en', 'name', 'Takamatsu Red Cross Hospital'),
(6279, 4728, 'ja', 'name', 'é«˜ę¾čµ¤åå­—ē—…é™¢'),
(6280, 4729, 'en', 'name', 'Victoria Hospital'),
(6281, 4730, 'no_lang_code', 'name', 'Takano Hospital'),
(6282, 4730, 'ja', 'name', 'é«˜é‡Žē—…é™¢'),
(6283, 4731, 'en', 'name', 'St. Luke’s Boise Medical Center'),
(6284, 4732, 'no_lang_code', 'name', 'Takanoko Hospital'),
(6285, 4733, 'en', 'name', 'National Institute of Mental Health'),
(6286, 4733, 'ja', 'name', 'å›½ē«‹ē²¾ē„žč”›ē”Ÿē ”ē©¶ę‰€'),
(6287, 4734, 'no_lang_code', 'name', 'Takarazuka City Hospital'),
(6288, 4734, 'ja', 'name', 'å®å”šåø‚ē«‹ē—…é™¢'),
(6289, 4735, 'no_lang_code', 'name', 'Takatsuki General Hospital'),
(6290, 4735, 'ja', 'name', 'é«˜ę§»ē—…é™¢'),
(6291, 4736, 'en', 'name', 'Takatsuki Red Cross Hospital'),
(6292, 4736, 'ja', 'name', 'é«˜ę§»čµ¤åå­—ē—…é™¢'),
(6293, 4737, 'en', 'name', 'St. Margaret Memorial Hospital'),
(6294, 4738, 'en', 'name', 'Takayama Red Cross Hospital'),
(6295, 4738, 'ja', 'name', 'é«˜å±±čµ¤åå­—ē—…é™¢'),
(6296, 4739, 'en', 'name', 'Vijayanagara Institute of Medical Sciences'),
(6297, 4739, 'kn', 'name', 'ą²µą²æą²œą²Æą²Øą²—ą²° ą²µą³†ą³–ą²¦ą³ą²Æą²•ą²æą³•ą²Æ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(6298, 4740, 'es', 'name', 'Instituto Nacional de Salud Mental'),
(6299, 4740, 'en', 'name', 'National Institute of Mental Health'),
(6300, 4741, 'en', 'name', 'St. Margaret''s Hospital for Women'),
(6301, 4742, 'en', 'name', 'National Institute of Neurological Disorders and Stroke'),
(6302, 4743, 'en', 'name', 'St. Mark''s Hospital'),
(6303, 4744, 'it', 'name', 'Casa di Cura Villa Bianca'),
(6304, 4745, 'en', 'name', 'St. Mary Medical Center'),
(6305, 4746, 'en', 'name', 'Onomichi General Hospital'),
(6306, 4746, 'ja', 'name', 'å°¾é“ē·åˆē—…é™¢'),
(6307, 4747, 'en', 'name', 'Onslow Memorial Hospital'),
(6308, 4748, 'en', 'name', 'National Institute of Occupational Health'),
(6309, 4749, 'en', 'name', 'St. Mary''s Health Center'),
(6310, 4750, 'en', 'name', 'St. Mary''s Hospital'),
(6311, 4751, 'en', 'name', 'National Institute of Animal Health'),
(6312, 4751, 'ja', 'name', 'å‹•ē‰©č”›ē”Ÿē ”ē©¶éƒØé–€'),
(6313, 4752, 'en', 'name', 'Taleghani General Hospital'),
(6314, 4752, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų·Ų§Ł„Ł‚Ų§Ł†ŪŒ تهران'),
(6315, 4753, 'en', 'name', 'Vivekananda Institute of Medical Sciences'),
(6316, 4754, 'en', 'name', 'Vardhman Mahavir Medical College & Safdarjung Hospital'),
(6317, 4754, 'hi', 'name', 'ą¤µą¤°ą„ą¤§ą¤®ą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ और ą¤øą¤«ą¤¦ą¤°ą¤œą¤‚ą¤— ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(6318, 4755, 'en', 'name', 'Jerusalem Mental Health Center'),
(6319, 4755, 'he', 'name', '×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש ×™×Ø×•×©×œ×™×'),
(6320, 4756, 'tr', 'name', 'Türkiye Yüksek İhtisas Hastanesi'),
(6321, 4757, 'en', 'name', 'Tamil Nadu Government Dental College and Hospital'),
(6322, 4758, 'en', 'name', 'St. Mary''s Medical Center'),
(6323, 4759, 'en', 'name', 'Tamworth Hospital'),
(6324, 4760, 'en', 'name', 'St. Mary''s Hospital'),
(6325, 4761, 'en', 'name', 'St. Mary''s Medical Center'),
(6326, 4762, 'en', 'name', 'United States Army Medical Research Institute of Infectious Diseases'),
(6327, 4763, 'en', 'name', 'Waianae Coast Comprehensive Health Center'),
(6328, 4764, 'en', 'name', 'Orange County Healthcare Agency'),
(6329, 4765, 'en', 'name', 'St. Patrick Hospital'),
(6330, 4766, 'en', 'name', 'Wakayama Rosai Hospital'),
(6331, 4766, 'ja', 'name', 'å’Œę­Œå±±ć‚ć†ć•ć„ē—…é™¢'),
(6332, 4767, 'en', 'name', 'Tao Yuan General Hospital'),
(6333, 4767, 'zh', 'name', 'ę”ƒåœ’é†«é™¢'),
(6334, 4768, 'en', 'name', 'Orlando Health'),
(6335, 4769, 'en', 'name', 'Orlando Regional Medical Center'),
(6336, 4770, 'en', 'name', 'Taranaki Base Hospital'),
(6337, 4771, 'en', 'name', 'Tata Main Hospital'),
(6338, 4772, 'en', 'name', 'St. Paul''s Hospital'),
(6339, 4773, 'en', 'name', 'Wakefield Hospital'),
(6340, 4774, 'en', 'name', 'St. Peter''s Hospital'),
(6341, 4775, 'en', 'name', 'Baptist Hospital'),
(6342, 4775, 'ko', 'name', '침딀병원'),
(6343, 4776, 'en', 'name', 'Tauranga Hospital'),
(6344, 4777, 'en', 'name', 'St. Stephen’s Hospital'),
(6345, 4778, 'en', 'name', 'Tawam Hospital'),
(6346, 4778, 'ar', 'name', 'مستؓفى ŲŖŁˆŲ§Ł…'),
(6347, 4779, 'en', 'name', 'Ornskƶldsvik Hospital'),
(6348, 4779, 'sv', 'name', 'Ɩrnskƶldsviks sjukhus'),
(6349, 4780, 'en', 'name', 'St. Thomas Hospital'),
(6350, 4781, 'en', 'name', 'Walton Centre'),
(6351, 4782, 'en', 'name', 'Teaching Hospital Kandy'),
(6352, 4782, 'si', 'name', 'මහනුවර ą·ą·’ą¶šą·Šą·‚ą¶« ą¶»ą·ą·„ą¶½'),
(6353, 4783, 'en', 'name', 'St. Vincent Hospital'),
(6354, 4784, 'no_lang_code', 'name', 'Teine Keijinkai Hospital'),
(6355, 4784, 'ja', 'name', 'ęø“ä»ä¼šć‚°ćƒ«ćƒ¼ćƒ—'),
(6356, 4785, 'en', 'name', 'Orthopaedic Hospital'),
(6357, 4786, 'en', 'name', 'Wangjing Hospital of China Academy of Chinese Medical Sciences'),
(6358, 4786, 'zh', 'name', 'äø­å›½äø­åŒ»ē§‘å­¦é™¢ęœ›äŗ¬åŒ»é™¢'),
(6359, 4787, 'es', 'name', 'Hospital Quirón Teknon'),
(6360, 4788, 'en', 'name', 'Warde Medical Laboratory'),
(6361, 4789, 'en', 'name', 'Warneford Hospital'),
(6362, 4790, 'sv', 'name', 'VƄrdcentralen Teleborg'),
(6363, 4791, 'en', 'name', 'Warrington Hospital'),
(6364, 4792, 'en', 'name', 'Warwick Hospital'),
(6365, 4793, 'en', 'name', 'Orthopedic Specialty Hospital'),
(6366, 4794, 'en', 'name', 'Washington Adventist Hospital'),
(6367, 4795, 'en', 'name', 'University of Arkansas Medical Center'),
(6368, 4796, 'en', 'name', 'Tennessee Department of Health'),
(6369, 4797, 'en', 'name', 'Waterbury Hospital'),
(6370, 4798, 'en', 'name', 'Watford General Hospital'),
(6371, 4799, 'en', 'name', 'Tenshi Hospital'),
(6372, 4799, 'ja', 'name', '天使病院'),
(6373, 4800, 'en', 'name', 'Waukesha Memorial Hospital'),
(6374, 4801, 'en', 'name', 'Aspirus Wausau Hospital'),
(6375, 4802, 'en', 'name', 'Northern Territory Health Services'),
(6376, 4803, 'en', 'name', 'Wayne Memorial Hospital'),
(6377, 4804, 'no_lang_code', 'name', 'Weifang People''s Hospital'),
(6378, 4804, 'zh', 'name', 'ę½åŠåø‚äŗŗę°‘åŒ»é™¢'),
(6379, 4805, 'en', 'name', 'St. Vincent''s Medical Center'),
(6380, 4806, 'sv', 'name', 'Uddevalla sjukhus'),
(6381, 4807, 'en', 'name', 'Richmond University Medical Center'),
(6382, 4808, 'en', 'name', 'Osaka Occupational Health Research Center'),
(6383, 4808, 'ja', 'name', 'å¤§é˜ŖåŠ“åƒč”›ē”Ÿē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(6384, 4809, 'en', 'name', 'Stamford Hospital'),
(6385, 4810, 'en', 'name', 'Texas Orthopedic Hospital'),
(6386, 4811, 'it', 'name', 'Casa di Cura Villa Garda'),
(6387, 4812, 'en', 'name', 'Texas Scottish Rite Hospital for Children'),
(6388, 4813, 'en', 'name', 'Ulster Hospital'),
(6389, 4814, 'en', 'name', 'Wellborn Road Veterinary Medical Center'),
(6390, 4815, 'en', 'name', 'UMass Memorial Health Care'),
(6391, 4816, 'en', 'name', 'Thai Moogambigai Dental College and Hospital'),
(6392, 4817, 'en', 'name', 'Osaka Rosai Hospital'),
(6393, 4817, 'ja', 'name', 'å¤§é˜ŖåŠ“ē½ē—…é™¢'),
(6394, 4818, 'no_lang_code', 'name', 'Theageneio General Hospital'),
(6395, 4819, 'en', 'name', 'Vrinnevi Hospital'),
(6396, 4819, 'sv', 'name', 'Vrinnevisjukhuset i Norrkƶping'),
(6397, 4820, 'hu', 'name', 'Állami SzívkórhÔz'),
(6398, 4821, 'it', 'name', 'Ospedali Riuniti Umberto I'),
(6399, 4822, 'it', 'name', 'Policlinico Umberto I'),
(6400, 4823, 'en', 'name', 'Theda Clark Medical Center'),
(6401, 4824, 'en', 'name', 'Third Affiliated Hospital of Guangzhou Medical University'),
(6402, 4824, 'zh', 'name', 'å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø‰åŒ»é™¢'),
(6403, 4825, 'en', 'name', 'Maria Cecilia Hospital'),
(6404, 4826, 'it', 'name', 'Ospedale Vito Fazzi'),
(6405, 4827, 'en', 'name', 'Wellmont Health Systems'),
(6406, 4828, 'en', 'name', 'Thunder Bay Regional Health Sciences Centre'),
(6407, 4829, 'en', 'name', 'Wentworth Hospital'),
(6408, 4830, 'en', 'name', 'Wentworth Douglass Hospital'),
(6409, 4831, 'en', 'name', 'University of Health Sciences İstanbul Ümranyie Training and Research Hospital'),
(6410, 4831, 'tr', 'name', 'Ümraniye Eğitim ve Araştırma Hastanesi'),
(6411, 4832, 'en', 'name', 'Wesley Guild Hospital'),
(6412, 4833, 'en', 'name', 'Tianjin Chest Hospital'),
(6413, 4833, 'zh', 'name', 'å¤©ę“„åø‚čƒøē§‘åŒ»é™¢'),
(6414, 4834, 'en', 'name', 'Wesley Hospital'),
(6415, 4835, 'en', 'name', 'Tianjin Children''s Hospital'),
(6416, 4835, 'zh', 'name', 'å¤©ę“„åø‚å„æē«„åŒ»é™¢'),
(6417, 4836, 'en', 'name', 'Tianjin First Center Hospital'),
(6418, 4836, 'zh', 'name', 'å¤©ę“„åø‚ē¬¬äø€äø­åæƒåŒ»é™¢'),
(6419, 4837, 'en', 'name', 'Wesley Long Hospital'),
(6420, 4838, 'no_lang_code', 'name', 'Tianjin haihe hospital'),
(6421, 4838, 'zh', 'name', 'å¤©ę“„åø‚ęµ·ę²³åŒ»é™¢'),
(6422, 4839, 'no_lang_code', 'name', 'Osmania General Hospital'),
(6423, 4839, 'te', 'name', 'ą°‰ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ ą°œą°Øą°°ą°²ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(6424, 4840, 'en', 'name', 'Tianjin Hospital'),
(6425, 4840, 'zh', 'name', 'å¤©ę“„åø‚å¤©ę“„åŒ»é™¢'),
(6426, 4841, 'en', 'name', 'Osmania Medical College'),
(6427, 4841, 'ur', 'name', 'Ų¹Ų«Ł…Ų§Ł†ŪŒŪ Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(6428, 4841, 'te', 'name', 'ą°‰ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ ą°®ą±†ą°”ą°æą°•ą°²ą± ą°•ą°¾ą°²ą±‡ą°œą±€'),
(6429, 4842, 'en', 'name', 'West Cumberland Hospital'),
(6430, 4843, 'en', 'name', 'Tianjin People''s Hospital'),
(6431, 4843, 'zh', 'name', 'å¤©ę“„åø‚äŗŗę°‘åŒ»é™¢'),
(6432, 4844, 'en', 'name', 'Tianjin Third Central Hospital'),
(6433, 4844, 'zh', 'name', 'å¤©ę“„åø‚ē¬¬äø‰äø­åæƒåŒ»é™¢'),
(6434, 4845, 'en', 'name', 'West Jefferson Medical Center'),
(6435, 4846, 'no_lang_code', 'name', 'Tianjin Nankai Hospital'),
(6436, 4846, 'zh', 'name', 'å¤©ę“„åø‚å—å¼€åŒ»é™¢'),
(6437, 4847, 'en', 'name', 'United Christian Hospital'),
(6438, 4848, 'no_lang_code', 'name', 'Tianjin Tianhe Hospital'),
(6439, 4848, 'zh', 'name', 'å¤©ę“„åø‚å¤©å’ŒåŒ»é™¢'),
(6440, 4849, 'en', 'name', 'Norwich Community Hospital'),
(6441, 4850, 'en', 'name', 'West Park Healthcare Centre'),
(6442, 4851, 'en', 'name', 'Tikur Anbessa Hospital'),
(6443, 4851, 'am', 'name', 'įŒ„į‰įˆ­ įŠ įŠ•į‰ įˆ³ įˆ†įˆµį’į‰³įˆ'),
(6444, 4852, 'en', 'name', 'Mercy Medical Center'),
(6445, 4853, 'en', 'name', 'United Hospital'),
(6446, 4854, 'en', 'name', 'Tirat Carmel Mental Health Center'),
(6447, 4854, 'he', 'name', '×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש'),
(6448, 4855, 'en', 'name', 'Western Pennsylvania Hospital');
INSERT INTO `ror_settings` VALUES
(6449, 4856, 'en', 'name', 'United Hospital Fund'),
(6450, 4857, 'en', 'name', 'West Suffolk Hospital'),
(6451, 4858, 'en', 'name', 'Glangwili General Hospital'),
(6452, 4858, 'cy', 'name', 'Ysbyty Cyffredinol Glangwili'),
(6453, 4859, 'en', 'name', 'Westchester Medical Center'),
(6454, 4860, 'it', 'name', 'Ospedale regionale di Lugano'),
(6455, 4861, 'en', 'name', 'Tochigi Medical Center'),
(6456, 4861, 'ja', 'name', 'ę ƒęœØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(6457, 4862, 'en', 'name', 'Unity Health System'),
(6458, 4863, 'en', 'name', 'Southeast Louisiana Veterans Health Care System'),
(6459, 4864, 'en', 'name', 'KKR Tohoku Kosai Hospital'),
(6460, 4864, 'ja', 'name', 'ę±åŒ—å…¬ęøˆē—…é™¢'),
(6461, 4865, 'en', 'name', 'UPMC Health System'),
(6462, 4866, 'en', 'name', 'Western Attica General Hospital'),
(6463, 4867, 'en', 'name', 'Upton Hospital'),
(6464, 4868, 'en', 'name', 'Mountain Home VA Healthcare System'),
(6465, 4869, 'en', 'name', 'Western Consortium for Public Health'),
(6466, 4870, 'en', 'name', 'Western General Hospital'),
(6467, 4871, 'en', 'name', 'Overton Brooks VA Medical Center'),
(6468, 4872, 'no_lang_code', 'name', 'Tokushima Prefectural Central Hospital'),
(6469, 4872, 'ja', 'name', 'å¾³å³¶ēœŒē«‹äø­å¤®ē—…é™¢'),
(6470, 4873, 'tr', 'name', 'Türkiye Cumhuriyeti Devlet Demiryolları Hastanesi'),
(6471, 4874, 'en', 'name', 'Tokyo Dental College Ichikawa General Hospital'),
(6472, 4874, 'ja', 'name', 'ę±äŗ¬ę­Æē§‘å¤§å­¦ åø‚å·ē·åˆē—…é™¢'),
(6473, 4875, 'en', 'name', 'Western Hospital'),
(6474, 4876, 'en', 'name', 'Western State Hospital'),
(6475, 4877, 'ga', 'name', 'OspidƩal GinearƔlta Loch Garman'),
(6476, 4877, 'en', 'name', 'Wexford General Hospital'),
(6477, 4878, 'en', 'name', 'Wheeling Hospital'),
(6478, 4879, 'en', 'name', 'Whiston Hospital'),
(6479, 4880, 'en', 'name', 'Tokyo Metropolitan Children''s Medical Center'),
(6480, 4880, 'ja', 'name', 'ę±äŗ¬éƒ½å­ä¾›ć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(6481, 4881, 'it', 'name', 'Ospedaliera di Piacenza'),
(6482, 4882, 'no_lang_code', 'name', 'Ebara Hospital'),
(6483, 4882, 'ja', 'name', 'ę±äŗ¬éƒ½äæå„åŒ»ē™‚å…¬ē¤¾čåŽŸē—…é™¢'),
(6484, 4883, 'en', 'name', 'Whitchurch Hospital'),
(6485, 4884, 'en', 'name', 'White Memorial Medical Center'),
(6486, 4885, 'en', 'name', 'Captain James A. Lovell Federal Health Care Center'),
(6487, 4886, 'en', 'name', 'VA Central Iowa Health Care System'),
(6488, 4887, 'it', 'name', 'Ospedale Civile di Venezia'),
(6489, 4888, 'en', 'name', 'Whittington Hospital'),
(6490, 4889, 'en', 'name', 'Tokyo Metropolitan Kiyose Children''s Hospital'),
(6491, 4889, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å°å…ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(6492, 4890, 'en', 'name', 'Tokyo Rosai Hospital'),
(6493, 4890, 'ja', 'name', 'ę±äŗ¬åŠ“ē½ē—…é™¢'),
(6494, 4891, 'no_lang_code', 'name', 'Shioda General Hospital'),
(6495, 4891, 'ja', 'name', 'ę±ē”°ē·åˆē—…é™¢'),
(6496, 4892, 'no_lang_code', 'name', 'Tokyo Metropolitan Matsuzawa Hospital'),
(6497, 4892, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę¾ę²¢ē—…é™¢'),
(6498, 4893, 'en', 'name', 'Utah Valley Regional Medical Center'),
(6499, 4894, 'en', 'name', 'Uwajima City Hospital'),
(6500, 4894, 'ja', 'name', 'å®‡å’Œå³¶åø‚ē—…é™¢'),
(6501, 4895, 'no_lang_code', 'name', 'Ohkubo Hospital'),
(6502, 4895, 'ja', 'name', 'å¤§ä¹…äæē—…é™¢'),
(6503, 4896, 'en', 'name', 'Wilhelminen Hospital'),
(6504, 4896, 'de', 'name', 'Wilhelminenspital'),
(6505, 4897, 'en', 'name', 'Vokkaligara Sangha Dental College & Hospital'),
(6506, 4898, 'it', 'name', 'Ospedale Civile di Vittorio Veneto'),
(6507, 4899, 'en', 'name', 'William Beaumont Army Medical Center'),
(6508, 4900, 'en', 'name', 'Tokyo Metropolitan Police Hospital'),
(6509, 4900, 'ja', 'name', 'ę±äŗ¬č­¦åÆŸē—…é™¢'),
(6510, 4901, 'en', 'name', 'William Harvey Hospital'),
(6511, 4902, 'en', 'name', 'William S. Middleton Memorial Veterans Hospital'),
(6512, 4903, 'en', 'name', 'VA Maryland Health Care System'),
(6513, 4904, 'it', 'name', 'Ospedale Civile Di Ivrea'),
(6514, 4905, 'it', 'name', 'Ospedale di Mirano'),
(6515, 4906, 'en', 'name', 'Winchester Medical Center'),
(6516, 4907, 'en', 'name', 'Palomar Medical Center'),
(6517, 4908, 'en', 'name', 'Winn Army Community Hospital'),
(6518, 4909, 'it', 'name', 'Ospedale Civile di Giaveno'),
(6519, 4910, 'en', 'name', 'Pamela Youde Nethersole Eastern Hospital'),
(6520, 4910, 'zh', 'name', 'ę±å€å°¤å¾·å¤«äŗŗé‚£ę‰“ē“ é†«é™¢'),
(6521, 4911, 'en', 'name', 'Winter Haven Hospital'),
(6522, 4912, 'en', 'name', 'Tokyo National Hospital'),
(6523, 4912, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ę±äŗ¬ē—…é™¢'),
(6524, 4913, 'en', 'name', 'Tokyo Rinkai Hospital'),
(6525, 4913, 'ja', 'name', 'ę±äŗ¬č‡Øęµ·ē—…é™¢'),
(6526, 4914, 'en', 'name', 'Wisconsin Division of Public Health'),
(6527, 4915, 'en', 'name', 'Wisconsin Heart Hospital'),
(6528, 4916, 'en', 'name', 'Wisconsin Medical Society'),
(6529, 4917, 'it', 'name', 'Ospedale Civile Edoardo Agnelli'),
(6530, 4918, 'en', 'name', 'Wishaw General Hospital'),
(6531, 4919, 'en', 'name', 'Withington Community Hospital'),
(6532, 4920, 'en', 'name', 'Withybush General Hospital'),
(6533, 4920, 'cy', 'name', 'Ysbyty Cyffredinol Llwynhelyg'),
(6534, 4921, 'en', 'name', 'Wm. Jennings Bryan Dorn VA Medical Center'),
(6535, 4922, 'it', 'name', 'Azienda Ospedaliera Ospedali Riuniti Papardo Piemonte'),
(6536, 4923, 'hu', 'name', 'Toldy Ferenc KórhÔz'),
(6537, 4924, 'en', 'name', 'Papua New Guinea Institute of Medical Research'),
(6538, 4925, 'en', 'name', 'Wollongong Hospital'),
(6539, 4926, 'en', 'name', 'Papworth Hospital'),
(6540, 4927, 'en', 'name', 'Paradise Valley Hospital'),
(6541, 4928, 'no_lang_code', 'name', 'Parirenyatwa Hospital'),
(6542, 4929, 'no_lang_code', 'name', 'Tominaga hospital'),
(6543, 4929, 'ja', 'name', 'åÆŒę°øē—…é™¢'),
(6544, 4930, 'en', 'name', 'Northlake Medical Center'),
(6545, 4931, 'en', 'name', 'Northwestern Medical Faculty Foundation'),
(6546, 4932, 'en', 'name', 'Park Centre for Mental Health'),
(6547, 4933, 'it', 'name', 'Ospedale degli Infermi'),
(6548, 4934, 'en', 'name', 'Park Plaza Hospital'),
(6549, 4935, 'it', 'name', 'Ospedale degli Infermi'),
(6550, 4936, 'en', 'name', 'Tongde Hospital of Zhejiang Province'),
(6551, 4936, 'zh', 'name', 'ęµ™ę±Ÿēœē«‹åŒå¾·åŒ»é™¢'),
(6552, 4937, 'en', 'name', 'Parkland Health & Hospital System'),
(6553, 4938, 'en', 'name', 'Parkland Memorial Hospital'),
(6554, 4939, 'it', 'name', 'Ospedale dei Pellegrini'),
(6555, 4940, 'en', 'name', 'Torbay Hospital'),
(6556, 4941, 'en', 'name', 'Wolters Kluwer Health'),
(6557, 4942, 'en', 'name', 'Wolters Kluwer Health'),
(6558, 4943, 'it', 'name', 'Ospedale di Circolo di Busto Arsizio'),
(6559, 4944, 'en', 'name', 'Parkview Health'),
(6560, 4945, 'en', 'name', 'Toronto East General Hospital'),
(6561, 4946, 'en', 'name', 'Woman''s Hospital'),
(6562, 4947, 'en', 'name', 'Hackensack University Medical Center at Pascack Valley'),
(6563, 4948, 'en', 'name', 'P. D. Hinduja Hospital and Medical Research Centre'),
(6564, 4949, 'en', 'name', 'Women Medical College'),
(6565, 4950, 'en', 'name', 'Toronto Public Health'),
(6566, 4951, 'en', 'name', 'Tosei General Hospital'),
(6567, 4951, 'ja', 'name', 'å…¬ē«‹é™¶ē”Ÿē—…é™¢'),
(6568, 4952, 'fi', 'name', 'Peijaksen sairaala'),
(6569, 4952, 'en', 'name', 'Peijas Hospital'),
(6570, 4953, 'en', 'name', 'Pelosi Medical Center'),
(6571, 4954, 'en', 'name', 'RCSI & UCD Malaysia Campus'),
(6572, 4955, 'en', 'name', 'Women''s College Hospital'),
(6573, 4956, 'no_lang_code', 'name', 'Tottori Prefectural Central Hospital'),
(6574, 4956, 'ja', 'name', 'é³„å–ēœŒē«‹äø­å¤®ē—…é™¢'),
(6575, 4957, 'no_lang_code', 'name', 'Vajira Hospital'),
(6576, 4957, 'th', 'name', 'ąø§ąøŠąø“ąø£ąøžąø¢ąø²ąøšąø²ąø„'),
(6577, 4958, 'de', 'name', 'Kinderwunsch Zentrum Linz'),
(6578, 4958, 'en', 'name', 'Women''s General Hospital'),
(6579, 4959, 'en', 'name', 'Penteli General Children''s Hospital'),
(6580, 4959, 'el', 'name', 'ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΠαίΓων Πεντέλης'),
(6581, 4960, 'en', 'name', 'Women''s Hospital'),
(6582, 4961, 'en', 'name', 'Peninsula Regional Medical Center'),
(6583, 4962, 'en', 'name', 'Vale of Leven District General Hospital'),
(6584, 4963, 'en', 'name', 'Woodend Hospital'),
(6585, 4964, 'it', 'name', 'Ospedale di Rivoli'),
(6586, 4965, 'en', 'name', 'Valley Baptist Medical Center'),
(6587, 4966, 'it', 'name', 'Ospedale Eugenio Morelli'),
(6588, 4967, 'en', 'name', 'Filippo Del Ponte Hospital'),
(6589, 4967, 'it', 'name', 'Ospedale Filippo Del Ponte Varese'),
(6590, 4968, 'en', 'name', 'Pennsylvania Hospital'),
(6591, 4969, 'en', 'name', 'Penrose Hospital'),
(6592, 4970, 'en', 'name', 'Valley Hospital'),
(6593, 4971, 'en', 'name', 'Valley Hospital Medical Center'),
(6594, 4972, 'en', 'name', 'Woodland Hills Medical Center'),
(6595, 4973, 'it', 'name', 'Ospedale Humanitas Gradenigo'),
(6596, 4974, 'en', 'name', 'Park Nicollet Health Services'),
(6597, 4975, 'no_lang_code', 'name', 'Toujinkai Hospital'),
(6598, 4975, 'ja', 'name', '吉焄寺あさひ病院は'),
(6599, 4976, 'en', 'name', 'Park Nicollet Methodist Hospital'),
(6600, 4977, 'en', 'name', 'Israelite Hospital'),
(6601, 4977, 'it', 'name', 'Ospedale Israelitico'),
(6602, 4978, 'en', 'name', 'Valley Medical Center'),
(6603, 4979, 'en', 'name', 'Worcester Memorial Hospital'),
(6604, 4980, 'en', 'name', 'Gansu Provincial Hospital'),
(6605, 4980, 'zh', 'name', 'ē”˜č‚ƒēœäŗŗę°‘åŒ»é™¢'),
(6606, 4981, 'no_lang_code', 'name', 'Toyama Prefectural Central Hospital'),
(6607, 4981, 'ja', 'name', 'åÆŒå±±ēœŒē«‹äø­å¤®ē—…é™¢'),
(6608, 4982, 'en', 'name', 'Toyama Rosai Hospital'),
(6609, 4982, 'ja', 'name', 'åÆŒå±±åŠ“ē½ē—…é™¢'),
(6610, 4983, 'en', 'name', 'Worcestershire Royal Hospital'),
(6611, 4984, 'en', 'name', 'Zhengzhou People''s Hospital'),
(6612, 4984, 'zh', 'name', 'éƒ‘å·žäŗŗę°‘åŒ»é™¢ē½‘ē«™'),
(6613, 4985, 'en', 'name', 'Wordsley Hospital'),
(6614, 4986, 'en', 'name', 'Valley Presbyterian Hospital'),
(6615, 4987, 'no_lang_code', 'name', 'Toyokawa City Hospital'),
(6616, 4987, 'ja', 'name', 'č±Šå·åø‚ę°‘ē—…é™¢'),
(6617, 4988, 'no_lang_code', 'name', 'Toyonaka Municipal Hospital'),
(6618, 4988, 'ja', 'name', 'åø‚ē«‹č±Šäø­ē—…é™¢'),
(6619, 4989, 'en', 'name', 'Vancouver Hospital and Health Sciences Centre'),
(6620, 4990, 'en', 'name', 'Toyota Memorial Hospital'),
(6621, 4990, 'ja', 'name', 'ćƒˆćƒØć‚æčØ˜åæµē—…é™¢'),
(6622, 4991, 'en', 'name', 'Island Health'),
(6623, 4992, 'en', 'name', 'Peterborough City Hospital'),
(6624, 4993, 'en', 'name', 'Trafford General Hospital'),
(6625, 4994, 'fr', 'name', 'Organisation mondiale de la santƩ'),
(6626, 4994, 'en', 'name', 'World Health Organization - Denmark'),
(6627, 4994, 'ru', 'name', 'Š’ŃŠµŠ¼ŠøŃ€Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(6628, 4995, 'en', 'name', 'Vanha Vaasa hospital'),
(6629, 4995, 'fi', 'name', 'Vanhan Vaasan Sairaala'),
(6630, 4996, 'en', 'name', 'Peterson & Smith Equine Hospital'),
(6631, 4997, 'sv', 'name', 'Hallands Sjukhus Varberg'),
(6632, 4997, 'en', 'name', 'Varberg Hospital'),
(6633, 4998, 'fr', 'name', 'Organisation mondiale de la santƩ'),
(6634, 4998, 'en', 'name', 'World Health Organization - India'),
(6635, 4998, 'ru', 'name', 'Š’ŃŠµŠ¼ŠøŃ€Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(6636, 4999, 'hu', 'name', 'Petz AladÔr Megyei Oktató KórhÔz'),
(6637, 5000, 'fr', 'name', 'Organisation mondiale de la santƩ'),
(6638, 5000, 'en', 'name', 'World Health Organization - Egypt'),
(6639, 5000, 'ru', 'name', 'Š’ŃŠµŠ¼ŠøŃ€Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(6640, 5001, 'en', 'name', 'World Health Organization - Philippines'),
(6641, 5002, 'it', 'name', 'Ospedale Maggiore di Chieri'),
(6642, 5003, 'en', 'name', 'National Transport Hospital "Tzar Boris III"'),
(6643, 5003, 'bg', 'name', 'национална многопрофилна транспортна болница цар борис ііі'),
(6644, 5004, 'en', 'name', 'Worthing Hospital'),
(6645, 5005, 'en', 'name', 'Virginia Commonwealth University Medical Center'),
(6646, 5006, 'en', 'name', 'Public Health Management Corporation'),
(6647, 5007, 'en', 'name', 'Vector Control Research Centre'),
(6648, 5008, 'en', 'name', 'Trenton Psychiatric Hospital'),
(6649, 5009, 'en', 'name', 'Wrightington Hospital'),
(6650, 5010, 'en', 'name', 'Vejle Hospital'),
(6651, 5010, 'da', 'name', 'Vejle Sygehus'),
(6652, 5011, 'en', 'name', 'Philippine General Hospital'),
(6653, 5012, 'en', 'name', 'Wuhan Asia Heart Hospital'),
(6654, 5012, 'zh', 'name', 'ę­¦ę±‰äŗšę“²åæƒč„ē—…åŒ»é™¢'),
(6655, 5013, 'en', 'name', 'Wuhan Children''s Hospital'),
(6656, 5013, 'zh', 'name', 'ę­¦ę±‰åø‚å„æē«„åŒ»é™¢'),
(6657, 5014, 'en', 'name', 'Phoebe Putney Memorial Hospital'),
(6658, 5015, 'it', 'name', 'Ospedale Microcitemico'),
(6659, 5016, 'en', 'name', 'Transcultural Mental Health Institute'),
(6660, 5017, 'en', 'name', 'Wyckoff Heights Medical Center'),
(6661, 5018, 'en', 'name', 'Wycombe General Hospital'),
(6662, 5019, 'it', 'name', 'Ospedale per gli Infermi'),
(6663, 5020, 'en', 'name', 'Wythenshawe Hospital'),
(6664, 5021, 'it', 'name', 'Azienda Ospedaliera di Perugia'),
(6665, 5022, 'en', 'name', 'Tri-City Medical Center'),
(6666, 5023, 'en', 'name', 'SĆørlandet Hospital'),
(6667, 5023, 'no', 'name', 'SĆørlandet Sykehus'),
(6668, 5024, 'en', 'name', 'Tri-County Health Department'),
(6669, 5025, 'en', 'name', 'Trillium Health Centre'),
(6670, 5026, 'it', 'name', 'Ospedale Psichiatrico Paolo Pini'),
(6671, 5027, 'no_lang_code', 'name', 'Xijing Hospital'),
(6672, 5027, 'zh', 'name', 'č„æäŗ¬åŒ»é™¢'),
(6673, 5028, 'it', 'name', 'Ospedale Regionale di Bellinzona e Valli'),
(6674, 5028, 'en', 'name', 'Regional Hospital of Bellinzona and Valleys'),
(6675, 5029, 'en', 'name', 'Otto Wagner Hospital'),
(6676, 5029, 'de', 'name', 'Otto Wagner Spital'),
(6677, 5030, 'en', 'name', 'Trinity Mother Frances Hospitals and Clinics'),
(6678, 5031, 'it', 'name', 'Azienda Ospedaliera Sant’Antonio Abate di Gallarate'),
(6679, 5032, 'it', 'name', 'Azienda Ospedaliera G. Brotzu'),
(6680, 5033, 'en', 'name', 'Tropical Population Health Unit'),
(6681, 5034, 'ga', 'name', 'OspidƩal Mhuire Lourdes'),
(6682, 5034, 'en', 'name', 'Our Lady of Lourdes Hospital'),
(6683, 5035, 'en', 'name', 'Our Lady of Lourdes Medical Center'),
(6684, 5036, 'en', 'name', 'Our Lady of Lourdes Regional Medical Center'),
(6685, 5037, 'en', 'name', 'Ise Red Cross Hospital'),
(6686, 5037, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē¤¾ ä¼Šå‹¢čµ¤åå­—ē—…é™¢'),
(6687, 5038, 'no_lang_code', 'name', 'Trudell Medical International (Canada)'),
(6688, 5039, 'en', 'name', 'Truman Medical Center'),
(6689, 5040, 'en', 'name', 'Lady of Mercy Medical Center'),
(6690, 5041, 'no_lang_code', 'name', 'Tsubame Rosai Hospital'),
(6691, 5042, 'en', 'name', 'University of California, Irvine Medical Center'),
(6692, 5043, 'no_lang_code', 'name', 'Yamagata City Hospital Saiseikan'),
(6693, 5043, 'ja', 'name', 'å±±å½¢åø‚ē«‹ē—…é™¢ęøˆē”Ÿé¤Ø'),
(6694, 5044, 'en', 'name', 'Children''s Health Ireland at Crumlin'),
(6695, 5044, 'ga', 'name', 'SlĆ”inte LeanaĆ­ Ɖireann ag Cromghlinn'),
(6696, 5045, 'no_lang_code', 'name', 'Yamagata Prefectural Central Hospital'),
(6697, 5045, 'ja', 'name', 'å±±å½¢ēœŒē«‹äø­å¤®ē—…é™¢'),
(6698, 5046, 'en', 'name', 'Tsukuba Medical Center Hospital'),
(6699, 5046, 'ja', 'name', 'ē­‘ę³¢ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼ē—…é™¢'),
(6700, 5047, 'no_lang_code', 'name', 'Tsuyama Chuo Hospital'),
(6701, 5047, 'ja', 'name', '擄山中央病院'),
(6702, 5048, 'en', 'name', 'Overlake Hospital Medical Center'),
(6703, 5049, 'en', 'name', 'Tuality Community Hospital'),
(6704, 5050, 'en', 'name', 'Overlook Medical Center'),
(6705, 5051, 'en', 'name', 'Yamaguchi Red Cross Hospital'),
(6706, 5051, 'ja', 'name', 'å±±å£čµ¤åå­—ē—…é™¢'),
(6707, 5052, 'en', 'name', 'Yamanashi Prefectural Central Hospital'),
(6708, 5052, 'ja', 'name', 'å±±ę¢ØēœŒē«‹äø­å¤®ē—…é™¢'),
(6709, 5053, 'no_lang_code', 'name', 'Tuen Mun Hospital'),
(6710, 5053, 'zh', 'name', '屯門醫院'),
(6711, 5054, 'it', 'name', 'Ospedale Sant''Orsola di Brescia'),
(6712, 5055, 'no_lang_code', 'name', 'Yao Tokushukai General Hospital'),
(6713, 5055, 'ja', 'name', 'å…«å°¾å¾³ę“²ä¼šē·åˆē—…é™¢'),
(6714, 5056, 'en', 'name', 'Pacific Health Foundation'),
(6715, 5057, 'en', 'name', 'Pacific Health Research and Education Institute'),
(6716, 5058, 'tr', 'name', 'Yedikule Göğüs Hastalıkları ve Göğüs Cerrahisi Eğitim ve Araştırma Hastanesi'),
(6717, 5058, 'en', 'name', 'Yedikule Teaching Hospital'),
(6718, 5059, 'no_lang_code', 'name', 'Otaru Municipal Hospital'),
(6719, 5059, 'ja', 'name', 'å°ęØ½åø‚ē«‹ē—…é™¢'),
(6720, 5060, 'no_lang_code', 'name', 'Otemae Hospital'),
(6721, 5060, 'ja', 'name', 'å¤§ę‰‹å‰ē—…é™¢'),
(6722, 5061, 'en', 'name', 'Pacific Tower'),
(6723, 5062, 'no_lang_code', 'name', 'Otsu Municipal Hospital'),
(6724, 5062, 'ja', 'name', '大擄市民病院'),
(6725, 5063, 'en', 'name', 'Tung Wah Eastern Hospital'),
(6726, 5063, 'zh', 'name', 'ę±čÆę±é™¢'),
(6727, 5064, 'en', 'name', 'Pakistan Institute of Medical Sciences'),
(6728, 5064, 'ur', 'name', 'پاکستان طبی سائنس Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(6729, 5065, 'no_lang_code', 'name', 'Tung Wah Hospital'),
(6730, 5065, 'zh', 'name', 'ę±čÆé†«é™¢'),
(6731, 5066, 'no_lang_code', 'name', 'Tungs'' Taichung MetroHarbor Hospital'),
(6732, 5066, 'zh', 'name', 'ē«„ē¶œåˆé†«é™¢'),
(6733, 5067, 'en', 'name', 'Turgut Ozal Medical Center'),
(6734, 5067, 'tr', 'name', 'Turgut Ɩzal Tıp Merkezi'),
(6735, 5068, 'en', 'name', 'Otsu Red Cross Hospital'),
(6736, 5068, 'ja', 'name', 'å¤§ę“„čµ¤åå­—ē—…é™¢'),
(6737, 5069, 'en', 'name', 'Pakistan Health Research Council'),
(6738, 5069, 'ur', 'name', 'مجلس Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų·ŲØŁŠŲ© في ŲØŲ§ŁƒŲ³ŲŖŲ§Ł†'),
(6739, 5070, 'en', 'name', 'Palmerston North Hospital'),
(6740, 5071, 'en', 'name', 'Yodogawa Christian Hospital'),
(6741, 5071, 'ja', 'name', 'ę·€å·ć‚­ćƒŖć‚¹ćƒˆę•™ē—…é™¢'),
(6742, 5072, 'en', 'name', 'Palmetto General Hospital'),
(6743, 5073, 'no_lang_code', 'name', 'Yokkaichi Municipal Hospital'),
(6744, 5073, 'ja', 'name', '市立四旄市病院'),
(6745, 5074, 'en', 'name', 'Miwa Hospital'),
(6746, 5074, 'ja', 'name', '三輪病院'),
(6747, 5075, 'en', 'name', 'Yokkaichi Social Insurance Hospital'),
(6748, 5075, 'ja', 'name', 'å››ę—„åø‚ē¾½ę“„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(6749, 5076, 'en', 'name', 'Yokohama City Seibu Hospital'),
(6750, 5077, 'en', 'name', 'Turku City Hospital'),
(6751, 5077, 'fi', 'name', 'Turun kaupunginsairaala'),
(6752, 5078, 'no_lang_code', 'name', 'Yokohama Minami Kyosai Hospital'),
(6753, 5078, 'ja', 'name', 'ęØŖęµœå—å…±ęøˆē—…é™¢'),
(6754, 5079, 'en', 'name', 'Yokohama Municipal Citizen''s Hospital'),
(6755, 5079, 'ja', 'name', 'ęØŖęµœåø‚å–¶åø‚ę°‘ē—…é™¢'),
(6756, 5080, 'no_lang_code', 'name', 'Yokohama Municipal Minato Red Cross Hospital'),
(6757, 5080, 'ja', 'name', 'ęØŖęµœåø‚ē«‹ćæćŖćØčµ¤åå­—ē—…é™¢'),
(6758, 5081, 'no_lang_code', 'name', 'Yokohama Sakae Kyosai Hospital'),
(6759, 5081, 'ja', 'name', 'ęØŖęµœę „å…±ęøˆē—…é™¢'),
(6760, 5082, 'no_lang_code', 'name', 'Yokosuka Kyosai Hospital'),
(6761, 5082, 'ja', 'name', 'ęØŖé ˆč³€å…±ęøˆē—…é™¢'),
(6762, 5083, 'en', 'name', 'Tygerberg Hospital'),
(6763, 5084, 'no_lang_code', 'name', 'Yokufukai Hospital'),
(6764, 5084, 'ja', 'name', 'ęµ“é¢Øä¼šē—…é™¢'),
(6765, 5085, 'en', 'name', 'Tzaneion General Hospital'),
(6766, 5086, 'en', 'name', 'York Hospital'),
(6767, 5087, 'en', 'name', 'Toyama Institute of Health'),
(6768, 5087, 'ja', 'name', 'åÆŒå±±ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(6769, 5088, 'en', 'name', 'York General Hospital'),
(6770, 5089, 'en', 'name', 'Yuli Veterans Hospital'),
(6771, 5089, 'zh', 'name', 'äøƒęœˆé€€ä¼å†›äŗŗåŒ»é™¢'),
(6772, 5090, 'en', 'name', 'Yuan''s General Hospital'),
(6773, 5090, 'zh', 'name', 'é˜®ē¶œåˆé†«é™¢'),
(6774, 5091, 'no_lang_code', 'name', 'Yukioka Hospital'),
(6775, 5091, 'ja', 'name', 'č”Œå²”ē—…é™¢'),
(6776, 5092, 'en', 'name', 'Second Affiliated Hospital & Yuying Children''s Hospital of Wenzhou Medical University'),
(6777, 5092, 'zh', 'name', 'ęø©å·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(6778, 5093, 'hr', 'name', 'Opća bolnica Zabok'),
(6779, 5093, 'en', 'name', 'Zabok General Hospital'),
(6780, 5094, 'en', 'name', 'Zayed Military Hospital'),
(6781, 5094, 'ar', 'name', 'مستؓفى زايد Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠ'),
(6782, 5095, 'no_lang_code', 'name', 'Neostem (United States)'),
(6783, 5096, 'no_lang_code', 'name', 'Zen-Noh (Japan)'),
(6784, 5096, 'ja', 'name', 'å…Øå›½č¾²ę„­å”åŒēµ„åˆé€£åˆä¼š'),
(6785, 5097, 'en', 'name', 'Zensa Hospital'),
(6786, 5098, 'no_lang_code', 'name', 'Neuros Medical (United States)'),
(6787, 5099, 'en', 'name', 'Zeynep Kamil Hospital'),
(6788, 5099, 'tr', 'name', 'Zeynep Kamil Kadın ve Ƈocuk Hastalıkları Eğitim Ve Araştırma Hastanesi'),
(6789, 5100, 'en', 'name', 'Zhejiang Cancer Hospital'),
(6790, 5100, 'zh', 'name', 'ęµ™ę±Ÿēœč‚æē˜¤åŒ»é™¢'),
(6791, 5101, 'no_lang_code', 'name', 'DeltaQuest Foundation (United States)'),
(6792, 5102, 'en', 'name', 'Zhejiang Hospital'),
(6793, 5102, 'zh', 'name', 'ęµ™ę±ŸåŒ»é™¢'),
(6794, 5103, 'en', 'name', 'Zhejiang Provincial People''s Hospital'),
(6795, 5104, 'en', 'name', 'Zhujiang Hospital'),
(6796, 5105, 'en', 'name', 'ZNA Middelheim Hospital'),
(6797, 5106, 'no_lang_code', 'name', 'Karyopharm Therapeutics (United States)'),
(6798, 5107, 'en', 'name', 'Zunyi Medical University'),
(6799, 5107, 'zh', 'name', '遵义医学院'),
(6800, 5108, 'no_lang_code', 'name', 'KeraNetics (United States)'),
(6801, 5109, 'en', 'name', 'Zuoying Armed Forces General Hospital'),
(6802, 5109, 'zh', 'name', 'åœ‹č»é«˜é›„ēø½é†«é™¢'),
(6803, 5110, 'en', 'name', 'Zübeyde Hanim Maternity Hospital'),
(6804, 5111, 'en', 'name', 'Dorn Research Institute'),
(6805, 5112, 'no_lang_code', 'name', 'Advanced Circulatory System (United States)'),
(6806, 5113, 'en', 'name', 'La Jolla Bioengineering Institute'),
(6807, 5114, 'no_lang_code', 'name', 'Aerpio Pharmaceuticals (United States)'),
(6808, 5115, 'no_lang_code', 'name', 'Karo Pharma (Sweden)'),
(6809, 5116, 'no_lang_code', 'name', 'SFC Fluidics (United States)'),
(6810, 5117, 'en', 'name', 'Sound Health Options'),
(6811, 5118, 'no_lang_code', 'name', 'Social Sectors Development Strategies (United States)'),
(6812, 5119, 'no_lang_code', 'name', 'KCI (United States)'),
(6813, 5120, 'no_lang_code', 'name', 'Nordic Life Science Pipeline (Canada)'),
(6814, 5121, 'en', 'name', 'Lincoln University - Pennsylvania'),
(6815, 5121, 'es', 'name', 'Universidad Lincoln'),
(6816, 5122, 'no_lang_code', 'name', 'Neuro Device Innovations (United States)'),
(6817, 5123, 'en', 'name', 'Amyotrophic Lateral Sclerosis Therapy Development Institute'),
(6818, 5124, 'no_lang_code', 'name', 'Flexion Therapeutics (United States)'),
(6819, 5125, 'en', 'name', 'Foundation for Advanced Education in the Sciences'),
(6820, 5126, 'no_lang_code', 'name', 'Lipella Pharmaceuticals (United States)'),
(6821, 5127, 'no_lang_code', 'name', 'Amplimmune (United States)'),
(6822, 5128, 'no_lang_code', 'name', 'STATegics (United States)'),
(6823, 5129, 'en', 'name', 'Foundation for Health Care Quality'),
(6824, 5130, 'no_lang_code', 'name', 'Network Technologies (United States)'),
(6825, 5131, 'no_lang_code', 'name', 'AntiCancer (United States)'),
(6826, 5132, 'no_lang_code', 'name', 'Ganeden Biotech (United States)'),
(6827, 5133, 'no_lang_code', 'name', 'Antigen Express (United States)'),
(6828, 5134, 'no_lang_code', 'name', 'Applied Photonics (United Kingdom)'),
(6829, 5135, 'en', 'name', 'Mary Bird Perkins Cancer Center'),
(6830, 5136, 'no_lang_code', 'name', 'Aptagen (United States)'),
(6831, 5137, 'no_lang_code', 'name', 'Syncrotronics Corporation (United States)'),
(6832, 5138, 'no_lang_code', 'name', 'Synedgen (United States)'),
(6833, 5139, 'no_lang_code', 'name', 'OncoImmune (United States)'),
(6834, 5140, 'no_lang_code', 'name', 'Araim Pharmaceuticals (United States)'),
(6835, 5141, 'no_lang_code', 'name', 'Aridis Pharmaceuticals (United States)'),
(6836, 5142, 'no_lang_code', 'name', 'Synta Pharmaceuticals (United States)'),
(6837, 5143, 'no_lang_code', 'name', 'System Biosciences (United States)'),
(6838, 5144, 'no_lang_code', 'name', 'GenProMarkers (United States)'),
(6839, 5145, 'no_lang_code', 'name', 'Precision Therapeutics (United States)'),
(6840, 5146, 'no_lang_code', 'name', '3T Ophthalmics (United States)'),
(6841, 5147, 'en', 'name', 'Proteogenomics Research Institute for Systems Medicine'),
(6842, 5148, 'no_lang_code', 'name', 'Banyan Biomarkers (United States)'),
(6843, 5149, 'no_lang_code', 'name', 'Tissue Genesis (United States)'),
(6844, 5150, 'no_lang_code', 'name', 'BiologicsMD (United States)'),
(6845, 5151, 'en', 'name', 'Transitional Learning Center'),
(6846, 5152, 'no_lang_code', 'name', 'Treatment Innovations (United States)'),
(6847, 5153, 'no_lang_code', 'name', 'Twin Star Medical (United States)'),
(6848, 5154, 'no_lang_code', 'name', 'BioPhyZica (United States)'),
(6849, 5155, 'no_lang_code', 'name', 'RadioMedix (United States)'),
(6850, 5156, 'en', 'name', 'Hough Ear Institute'),
(6851, 5157, 'no_lang_code', 'name', 'QR Pharma (United States)'),
(6852, 5158, 'no_lang_code', 'name', 'BioStar Systems (United States)'),
(6853, 5159, 'en', 'name', 'Vaccine & Gene Therapy Institute of Florida'),
(6854, 5160, 'en', 'name', 'Vaccine Research Institute of San Diego'),
(6855, 5161, 'no_lang_code', 'name', 'Biostruxs (United States)'),
(6856, 5162, 'no_lang_code', 'name', 'Hsiri Therapeutics (United States)'),
(6857, 5163, 'en', 'name', 'Boston VA Research Institute'),
(6858, 5164, 'no_lang_code', 'name', 'Vivonics (United States)'),
(6859, 5165, 'no_lang_code', 'name', 'Ribonomics (United States)'),
(6860, 5166, 'en', 'name', 'Western Institute For Biomedical Research'),
(6861, 5167, 'en', 'name', 'Brain Trauma Foundation'),
(6862, 5168, 'no_lang_code', 'name', 'Pharmaceutical Formulations (United States)'),
(6863, 5169, 'en', 'name', 'Bronx Veterans Medical Research Foundation'),
(6864, 5170, 'no_lang_code', 'name', 'HyperMed (United States)'),
(6865, 5171, 'en', 'name', 'Whittemore Peterson Institute'),
(6866, 5172, 'it', 'name', 'Ospedale A. Perrino'),
(6867, 5173, 'no_lang_code', 'name', 'Wicab (United States)'),
(6868, 5174, 'no_lang_code', 'name', 'Cadence Biomedical (United States)'),
(6869, 5175, 'no_lang_code', 'name', 'Wright Medical Technology (United States)'),
(6870, 5176, 'en', 'name', 'Roseman University of Health Sciences'),
(6871, 5177, 'en', 'name', 'Roskamp Institute'),
(6872, 5178, 'it', 'name', 'Istituti Fisioterapici Ospitalieri'),
(6873, 5179, 'no_lang_code', 'name', 'Biota Pharmaceuticals (United States)'),
(6874, 5180, 'en', 'name', 'Rothberg Institute For Childhood Diseases'),
(6875, 5181, 'no_lang_code', 'name', 'ImmuneXcite (United States)'),
(6876, 5182, 'no_lang_code', 'name', 'Immunotope (United States)'),
(6877, 5183, 'no_lang_code', 'name', 'InnerSea Technology (United States)'),
(6878, 5184, 'en', 'name', 'Preventive Medicine Research Institute'),
(6879, 5185, 'en', 'name', 'Seattle Institute for Biomedical and Clinical Research'),
(6880, 5186, 'no_lang_code', 'name', 'Senex Biotechnology (United States)'),
(6881, 5187, 'en', 'name', 'Institute for Medical Research'),
(6882, 5188, 'es', 'name', 'Hospital de la Universidad de Utah'),
(6883, 5188, 'en', 'name', 'University of Utah Hospital'),
(6884, 5189, 'en', 'name', 'Hindu College of Pharmacy'),
(6885, 5190, 'it', 'name', 'Ospedale Maggiore'),
(6886, 5191, 'en', 'name', 'Hipple Cancer Research Center'),
(6887, 5192, 'de', 'name', 'Klinik Hirslanden'),
(6888, 5193, 'de', 'name', 'Hochrhein Institut für Rehabilitationsforschung'),
(6889, 5194, 'en', 'name', 'Bogomoletz Institute of Physiology'),
(6890, 5194, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізіології ім. Šž.Šž. Š‘Š¾Š³Š¾Š¼Š¾Š»ŃŒŃ†Ń'),
(6891, 5195, 'en', 'name', 'Center for Clinical & Basic Research'),
(6892, 5196, 'en', 'name', 'Cooper Clinic'),
(6893, 5197, 'en', 'name', 'Cooperative Clinical Drug Research and Development'),
(6894, 5198, 'en', 'name', 'Center for Clinical Studies'),
(6895, 5199, 'en', 'name', 'Center for Complex Infectious Diseases'),
(6896, 5200, 'en', 'name', 'St. John Fisher College'),
(6897, 5201, 'en', 'name', 'Center for Creative Leadership'),
(6898, 5202, 'en', 'name', 'Center for Crisis Psychology'),
(6899, 5202, 'no', 'name', 'Senter for Krisepsykologi'),
(6900, 5203, 'en', 'name', 'Cooperative Research Centre for Beef Genetic Technologies'),
(6901, 5204, 'en', 'name', 'Center for Dermatology and Laser Surgery'),
(6902, 5205, 'en', 'name', 'Cooperative Research Centre for Tissue Growth and Repair'),
(6903, 5206, 'en', 'name', 'AARP'),
(6904, 5207, 'en', 'name', 'Cornea Research Foundation of America'),
(6905, 5208, 'en', 'name', 'Aberdeen Royal Infirmary'),
(6906, 5209, 'en', 'name', 'Abisko Scientific Research Station'),
(6907, 5210, 'en', 'name', 'Aspire Academy'),
(6908, 5210, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų£Ų³ŲØŲ§ŁŠŲ±ā€Ž'),
(6909, 5211, 'en', 'name', 'Center for Economic and Policy Research'),
(6910, 5212, 'tr', 'name', 'Adli Tıp Kurumu'),
(6911, 5213, 'en', 'name', 'Center for Facial Appearances'),
(6912, 5214, 'en', 'name', 'Center for HIV and Hepatogastroenterology'),
(6913, 5214, 'de', 'name', 'Medizinisches Versorgungszentrum'),
(6914, 5215, 'en', 'name', 'Holon Institute of Technology'),
(6915, 5216, 'en', 'name', 'Franciscan Health'),
(6916, 5217, 'no_lang_code', 'name', 'Covance (United States)'),
(6917, 5218, 'en', 'name', 'Hong Kong Jockey Club'),
(6918, 5218, 'zh', 'name', 'é¦™ęøÆč³½é¦¬ęœƒ'),
(6919, 5219, 'en', 'name', 'Center for Human Reproduction'),
(6920, 5220, 'no_lang_code', 'name', 'Covance (United Kingdom)'),
(6921, 5221, 'en', 'name', 'Hope Heart Institute'),
(6922, 5222, 'en', 'name', 'Center for Occupational and Environmental Neurology'),
(6923, 5223, 'en', 'name', 'Center For Reconstructive Urethral Surgery'),
(6924, 5223, 'it', 'name', 'Centro di Chirurgia Ricostruttiva dell''Uretra'),
(6925, 5224, 'en', 'name', 'Academy of Radiology Research'),
(6926, 5225, 'no_lang_code', 'name', 'CPS Research'),
(6927, 5226, 'fr', 'name', 'HƓpital d''Enfants'),
(6928, 5227, 'en', 'name', 'Center for Research in Environmental Epidemiology'),
(6929, 5227, 'es', 'name', 'Centro de Investigación en Epidemiología Ambiental'),
(6930, 5228, 'fr', 'name', 'HƓpital de l''Antiquaille'),
(6931, 5229, 'en', 'name', 'Center for Science in the Public Interest (United States)'),
(6932, 5230, 'en', 'name', 'Nezhat Medical Center'),
(6933, 5231, 'en', 'name', 'Critical Path Institute'),
(6934, 5232, 'it', 'name', 'Istituto per lo Studio e la Prevenzione Oncologica'),
(6935, 5233, 'en', 'name', 'Croatian Institute of Transfusion Medicine'),
(6936, 5233, 'hr', 'name', 'Hrvatski Zavod za Transfuzijsku Medicinu'),
(6937, 5234, 'en', 'name', 'Croatian Veterinary Institute'),
(6938, 5234, 'hr', 'name', 'Hrvatski veterinarski institut Zagreb'),
(6939, 5235, 'en', 'name', 'Urology Associates'),
(6940, 5236, 'en', 'name', 'Central Electrochemical Research Institute'),
(6941, 5237, 'no_lang_code', 'name', 'Center for Value Based Medicine (United States)'),
(6942, 5238, 'en', 'name', 'Central Institute of Medicinal and Aromatic Plants'),
(6943, 5238, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤”ą¤·ą¤§ą„€ą¤Æ ą¤ą¤µą¤‚ सगंध ą¤Ŗą„Œą¤§ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6944, 5238, 'ml', 'name', 'ą“øąµ†ąµ»ą“Ÿąµą“°ąµ½ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ąµ†ą“”ą“æą“øą“æą“Øąµ½ ą“†ą“Øąµą“±ąµ ą“…ą“°ąµ‹ą“®ą“¾ą“±ąµą“±ą“æą“•ąµ ą“Ŗąµą“²ą“¾ąµ»ą“±ąµą“øąµ'),
(6945, 5239, 'fr', 'name', 'HƓpital Militaire Avicenne'),
(6946, 5240, 'en', 'name', 'Centre for Cellular and Molecular Biology'),
(6947, 5240, 'ta', 'name', 'உயிரணு ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®®ąÆ‚ą®²ą®•ąÆą®•ąÆ‚ą®±ąÆ ą®‰ą®Æą®æą®°ą®æą®Æą®²ąÆ ą®®ąÆˆą®Æą®®ąÆ'),
(6948, 5240, 'ml', 'name', 'ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“øąµ†ą“²ąµą“²ąµą“²ą“¾ąµ¼ ą“†ą“Øąµą“±ąµ ą“®ąµ‹ą“³ą“æą“•ąµą“Æąµą“²ąµ¼ ą“¬ą“Æąµ‹ą“³ą“œą“æ'),
(6949, 5241, 'en', 'name', 'Indian Institute of Chemical Technology'),
(6950, 5241, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą°æą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°•ą±†ą°®ą°æą°•ą°²ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€'),
(6951, 5241, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ą“±ą“æą“±ą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“•ąµ†ą“®ą“æą“•ąµą“•ąµ½ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ, ą“¹ąµˆą“¦ąµą“°ą“¬ą“¾ą“¦ąµ'),
(6952, 5242, 'en', 'name', 'Indian Institute of Toxicology Research'),
(6953, 5242, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤·ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6954, 5243, 'en', 'name', 'Institute of Genomics and Integrative Biology'),
(6955, 5244, 'en', 'name', 'Institute of Himalayan Bioresource Technology'),
(6956, 5245, 'no_lang_code', 'name', 'Center of Molecular Immunology (Cuba)'),
(6957, 5246, 'en', 'name', 'Ackerman Academy of Dermatopathology'),
(6958, 5247, 'en', 'name', 'Ackerman Institute for the Family'),
(6959, 5248, 'no_lang_code', 'name', 'Actelion (Switzerland)'),
(6960, 5249, 'en', 'name', 'Ecosystem Sciences'),
(6961, 5250, 'en', 'name', 'Animal, Food and Health Sciences'),
(6962, 5251, 'en', 'name', 'Lille Catholic University'),
(6963, 5251, 'fr', 'name', 'UniversitƩ Catholique de Lille'),
(6964, 5252, 'en', 'name', 'Plant Industry'),
(6965, 5253, 'en', 'name', 'Administrative Staff College of India'),
(6966, 5254, 'en', 'name', 'House Clinic'),
(6967, 5255, 'en', 'name', 'Information and Communication Technologies Centre'),
(6968, 5256, 'pt', 'name', 'Instituto Adolfo Lutz'),
(6969, 5257, 'en', 'name', 'Houston Headache & Neurological Institute'),
(6970, 5258, 'en', 'name', 'Houston Institute for Clinical Research'),
(6971, 5259, 'en', 'name', 'United States Public Health Service Commissioned Officers Association'),
(6972, 5260, 'en', 'name', 'Cuban Neuroscience Center'),
(6973, 5261, 'en', 'name', 'United States Public Health Service'),
(6974, 5262, 'no_lang_code', 'name', 'Cubist Pharmaceuticals (United States)'),
(6975, 5263, 'en', 'name', 'Cumberland Infirmary'),
(6976, 5264, 'en', 'name', 'Hughston Clinic'),
(6977, 5265, 'en', 'name', 'Cuyahoga Community College'),
(6978, 5266, 'en', 'name', 'Hull and East Yorkshire Hospitals NHS Trust'),
(6979, 5267, 'en', 'name', 'Central Environmental and Food Science Research Institute'),
(6980, 5268, 'en', 'name', 'Hull Royal Infirmary'),
(6981, 5269, 'en', 'name', 'Human BioMolecular Research Institute'),
(6982, 5270, 'en', 'name', 'Central Forensic Science Laboratory'),
(6983, 5271, 'en', 'name', 'Human Gene Therapy Research Institute'),
(6984, 5272, 'no_lang_code', 'name', 'CyberFluor and Kronen Systems Incorporated'),
(6985, 5273, 'no_lang_code', 'name', 'Human Genome Sciences (United States)'),
(6986, 5274, 'en', 'name', 'Grand Forks Human Nutrition Research Center'),
(6987, 5275, 'no_lang_code', 'name', 'Affymax (United States)'),
(6988, 5276, 'fr', 'name', 'Agence de MƩdecine PrƩventive'),
(6989, 5277, 'en', 'name', 'Cystic Fibrosis Research Foundation'),
(6990, 5278, 'en', 'name', 'Central Institute of Psychiatry'),
(6991, 5278, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤®ą¤Øą¤¶ą„ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6992, 5279, 'no_lang_code', 'name', 'Cytel (United States)'),
(6993, 5280, 'en', 'name', 'National JALMA Institute for Leprosy & Other Mycobacterial Diseases'),
(6994, 5281, 'en', 'name', 'Central Leprosy Teaching & Research Institute'),
(6995, 5282, 'en', 'name', 'D.I. Ivanovsky Institute of Virology Russian Academy of Medical Sciences'),
(6996, 5282, 'ru', 'name', 'ŠŠ˜Š˜ Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø имени Š”. И. Ивановского Š ŠŠœŠ'),
(6997, 5283, 'en', 'name', 'D''Youville College'),
(6998, 5284, 'no_lang_code', 'name', 'Envigo (Germany)'),
(6999, 5285, 'en', 'name', 'Hungarian Meat Research Institute'),
(7000, 5286, 'no_lang_code', 'name', 'Sumitomo Dainippon Pharma (Japan)'),
(7001, 5286, 'ja', 'name', 'å¤§ę—„ęœ¬ä½å‹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(7002, 5287, 'no_lang_code', 'name', 'Japan Tobacco (Japan)'),
(7003, 5287, 'ja', 'name', 'ę—„ęœ¬ćŸć°ć“ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(7004, 5288, 'en', 'name', 'Agricultural Biotechnology Institute'),
(7005, 5289, 'en', 'name', 'Central Research Institute'),
(7006, 5289, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(7007, 5290, 'en', 'name', 'Central Research Institute of Electric Power Industry'),
(7008, 5290, 'ja', 'name', 'é›»åŠ›äø­å¤®ē ”ē©¶ę‰€'),
(7009, 5291, 'en', 'name', 'Central Research Institute of Epidemiology'),
(7010, 5291, 'ru', 'name', 'Š¤Š‘Š£Š Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ˜Š˜ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø РоспотребнаГзора'),
(7011, 5292, 'en', 'name', 'Hyogo Brain and Heart Center'),
(7012, 5292, 'ja', 'name', 'å…µåŗ«ēœŒē«‹å§«č·Æå¾Ŗē’°å™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(7013, 5293, 'en', 'name', 'Agrifood Research Finland'),
(7014, 5294, 'en', 'name', 'Hyogo Prefectural Cancer Center'),
(7015, 5294, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(7016, 5295, 'pt', 'name', 'Instituto Dante Pazzanese de Cardiologia'),
(7017, 5296, 'da', 'name', 'Dansk Sygehus Institut'),
(7018, 5297, 'en', 'name', 'Agricultural Institute'),
(7019, 5297, 'hu', 'name', 'Magyar TudomĆ”nyos AkadĆ©mia MezőgazdasĆ”gi Kutató IntĆ©zet'),
(7020, 5298, 'en', 'name', 'Dartmouth Psychiatric Research Center'),
(7021, 5299, 'en', 'name', 'DaVinci Institute'),
(7022, 5300, 'en', 'name', 'Center for Cancer Research'),
(7023, 5301, 'en', 'name', 'DDL Diagnostic Laboratory'),
(7024, 5302, 'en', 'name', 'Pavlov Institute of Physiology of the Russian Academy of Sciences'),
(7025, 5302, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии им. И.П. Павлова Российской акаГемии наук'),
(7026, 5303, 'nl', 'name', 'Zaans Medisch Centrum'),
(7027, 5304, 'en', 'name', 'Fairview Developmental Center'),
(7028, 5305, 'it', 'name', 'Istituto Ortopedico Galeazzi'),
(7029, 5306, 'en', 'name', 'Billings Clinic'),
(7030, 5307, 'it', 'name', 'Fondazione Santa Lucia'),
(7031, 5308, 'en', 'name', 'Forth Valley Royal Hospital'),
(7032, 5309, 'en', 'name', 'Inova Fairfax Hospital'),
(7033, 5310, 'en', 'name', 'Deborah Heart and Lung Center'),
(7034, 5311, 'en', 'name', 'BPP University'),
(7035, 5312, 'en', 'name', 'Huddersfield Royal Infirmary'),
(7036, 5313, 'no_lang_code', 'name', 'Meso Scale Discovery (United States)'),
(7037, 5314, 'no_lang_code', 'name', 'Motion Control (United States)'),
(7038, 5315, 'no_lang_code', 'name', 'Oxonica (United Kingdom)'),
(7039, 5316, 'no_lang_code', 'name', 'Corning (United States)'),
(7040, 5317, 'es', 'name', 'Academia Nacional de Medicina'),
(7041, 5317, 'en', 'name', 'Buenos Aires National Academy of Medicine'),
(7042, 5318, 'en', 'name', 'Glynn Hospitality Group'),
(7043, 5319, 'en', 'name', 'Family Medicine Residency of Idaho'),
(7044, 5320, 'en', 'name', 'Family Research Institute'),
(7045, 5321, 'sr', 'name', 'Institut za kardiovaskularne bolesti Dedinje'),
(7046, 5322, 'sv', 'name', 'Centrallasarettet VƤxjƶ'),
(7047, 5323, 'en', 'name', 'AIDS and Clinical Immunology Research Center'),
(7048, 5324, 'en', 'name', 'Fatima Jinnah Dental College'),
(7049, 5325, 'en', 'name', 'Fatima Mata National College'),
(7050, 5325, 'ml', 'name', 'ą“«ą“¾ą“¤ąµą“¤ą“æą“® ą“®ą“¾ą“¤ą“¾ ą“Øą“¾ą“·ą“£ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(7051, 5326, 'fr', 'name', 'Centre Antoine Lacassagne'),
(7052, 5327, 'fr', 'name', 'Centre Cardiologique du Nord'),
(7053, 5328, 'en', 'name', 'Denver Federal Center'),
(7054, 5329, 'en', 'name', 'DairyNZ'),
(7055, 5330, 'no_lang_code', 'name', 'Ajinomoto (Russia)'),
(7056, 5330, 'ru', 'name', 'АГжиномото'),
(7057, 5331, 'en', 'name', 'Federal Correctional Institution Schuylkill'),
(7058, 5332, 'en', 'name', 'Akebono Clinic'),
(7059, 5333, 'fr', 'name', 'Institut Claudius Regaud'),
(7060, 5334, 'fr', 'name', 'Fondation Jean Dausset-CEPH'),
(7061, 5335, 'en', 'name', 'Guttmacher Institute'),
(7062, 5336, 'no_lang_code', 'name', 'Indian Drugs and Pharmaceuticals Limited'),
(7063, 5337, 'de', 'name', 'IFT Institut für Therapieforschung'),
(7064, 5337, 'en', 'name', 'Institute for Therapy and Health Research'),
(7065, 5338, 'en', 'name', 'Alaska Department of Fish and Game'),
(7066, 5339, 'fr', 'name', 'SociƩtƩ FranƧaise de Rhumatologie'),
(7067, 5340, 'en', 'name', 'Rothman Institute'),
(7068, 5341, 'en', 'name', 'Defence Science and Technology Laboratory'),
(7069, 5342, 'en', 'name', 'Delaware County Community College'),
(7070, 5343, 'no_lang_code', 'name', 'Alceon Corporation (United States)'),
(7071, 5344, 'en', 'name', 'FernƔndez-Vega Ophthalmological Institute'),
(7072, 5345, 'en', 'name', 'Alcohol Research Group'),
(7073, 5346, 'de', 'name', 'Institut für Klinische Forschung und Entwicklung'),
(7074, 5347, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Denmark)'),
(7075, 5348, 'en', 'name', 'Fertility Center of Las Vegas'),
(7076, 5349, 'en', 'name', 'Alder Hey Children''s NHS Foundation Trust'),
(7077, 5350, 'en', 'name', 'Alfa Institute of Biomedical Sciences'),
(7078, 5350, 'el', 'name', 'Άλφα Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī’Ī¹ĪæĻŠĪ±Ļ„ĻĪ¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½'),
(7079, 5351, 'en', 'name', 'Fetal Medicine Foundation of America'),
(7080, 5352, 'en', 'name', 'Denver Center for the Performing Arts'),
(7081, 5353, 'en', 'name', 'Finlay Institute'),
(7082, 5354, 'en', 'name', 'Raghudeep Eye Hospital'),
(7083, 5355, 'en', 'name', 'Academy of Medicine'),
(7084, 5356, 'en', 'name', 'Illinois College of Optometry'),
(7085, 5357, 'fr', 'name', 'Centre de Chirurgie Plastique'),
(7086, 5358, 'fr', 'name', 'Centre de GƩnƩtique MolƩculaire'),
(7087, 5359, 'en', 'name', 'Veterans Biomedical Research Institute'),
(7088, 5360, 'en', 'name', 'Florida Orthopaedic Institute'),
(7089, 5361, 'en', 'name', 'AdventHealth Tampa'),
(7090, 5362, 'en', 'name', 'Allen Institute for Brain Science'),
(7091, 5363, 'fr', 'name', 'Centre de MƩdecine PrƩventive'),
(7092, 5364, 'en', 'name', 'Centre of Biotechnology of Sfax'),
(7093, 5365, 'fr', 'name', 'Fondation Ophtalmologique Adolphe de Rothschild'),
(7094, 5366, 'en', 'name', 'Allegheny County'),
(7095, 5367, 'en', 'name', 'Clinicians Report Foundation'),
(7096, 5368, 'it', 'name', 'Fondazione IRCCS Istituto Nazionale dei Tumori'),
(7097, 5369, 'en', 'name', 'Imperial College Healthcare NHS Trust'),
(7098, 5370, 'en', 'name', 'Harper Adams University'),
(7099, 5371, 'en', 'name', 'University of Abuja Teaching Hospital'),
(7100, 5372, 'en', 'name', 'St Mary''s University College'),
(7101, 5373, 'en', 'name', 'Alwar Pharmacy College'),
(7102, 5374, 'en', 'name', 'Food Industry Research and Development Institute'),
(7103, 5375, 'en', 'name', 'Department of Agriculture and Food Western Australia'),
(7104, 5376, 'de', 'name', 'Institut für biologische Forschung'),
(7105, 5377, 'en', 'name', 'American Academy of Cosmetic Dentistry'),
(7106, 5378, 'no_lang_code', 'name', 'Ford Motor Company (United States)'),
(7107, 5379, 'en', 'name', 'American Academy of Neurology'),
(7108, 5380, 'en', 'name', 'Forensic Sciences Department'),
(7109, 5381, 'en', 'name', 'American Dental Education Association'),
(7110, 5382, 'en', 'name', 'American Association of Poison Control Centers'),
(7111, 5383, 'en', 'name', 'American Board of Emergency Medicine'),
(7112, 5384, 'en', 'name', 'American Board of Internal Medicine'),
(7113, 5385, 'en', 'name', 'American College of Cardiology'),
(7114, 5386, 'en', 'name', 'American College of Emergency Physicians'),
(7115, 5387, 'en', 'name', 'American College of Gastroenterology'),
(7116, 5388, 'en', 'name', 'American College of Healthcare Executives'),
(7117, 5389, 'en', 'name', 'National Institute of Indian Medical Heritage'),
(7118, 5389, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø संपदा ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(7119, 5390, 'de', 'name', 'Forschungsinstitut für Kinderernährung'),
(7120, 5391, 'en', 'name', 'American Congress of Obstetricians and Gynecologists'),
(7121, 5392, 'en', 'name', 'American College of Physician Executives'),
(7122, 5393, 'en', 'name', 'American College of Physicians'),
(7123, 5394, 'en', 'name', 'American College of Radiology'),
(7124, 5395, 'en', 'name', 'Indian Institute of Management Bangalore'),
(7125, 5395, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¬ą„‡ą¤‚ą¤—ą¤²ą„‚ą¤°'),
(7126, 5395, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ ą®ŖąÆ†ą®™ąÆą®•ą®³ąÆ‚ą®°ąÆ'),
(7127, 5395, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ā€Œą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°®ą±‡ą°Øą±‡ą°œą±ā€Œą°®ą±†ą°‚ą°Ÿą± బెంగుళూరు'),
(7128, 5395, 'kn', 'name', 'ą²‡ą²‚ą²”ą²æą²Æą²Øą³ā€Œ ą²‡ą²Øą³ā€Œą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ā€Œ ą²†ą²«ą³ā€Œ ą²®ą³ą²Æą²¾ą²Øą³‡ą²œą³ā€Œą²®ą³†ą²‚ą²Ÿą³ā€Œ ಬೆಂಗಳೂರು'),
(7129, 5395, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ą“¾ą“Øąµ‡ą“œąµā€Œą“®ąµ†ą“Øąµą“±ąµ, ą“¬ą“¾ą“‚ą“—ąµą“²ąµ‚ąµ¼'),
(7130, 5396, 'de', 'name', 'Paul Gerhardt Diakonie'),
(7131, 5397, 'en', 'name', 'American College of Surgeons'),
(7132, 5398, 'en', 'name', 'Academy of Nutrition and Dietetics'),
(7133, 5399, 'en', 'name', 'American Enterprise Institute'),
(7134, 5400, 'en', 'name', 'American International College'),
(7135, 5401, 'en', 'name', 'Indian Institute of Science Education and Research Pune'),
(7136, 5401, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤Ŗą„ą¤£ą„‡'),
(7137, 5402, 'en', 'name', 'American Legacy Foundation'),
(7138, 5403, 'en', 'name', 'American Nurses Credentialing Center'),
(7139, 5404, 'en', 'name', 'Fortis Escorts Heart Institute'),
(7140, 5405, 'no_lang_code', 'name', 'Fortis Hospital'),
(7141, 5406, 'no_lang_code', 'name', 'Doctors Company (United States)'),
(7142, 5407, 'en', 'name', 'American Psychiatric Association'),
(7143, 5408, 'en', 'name', 'Foundation for Applied Molecular Evolution'),
(7144, 5409, 'en', 'name', 'Biomedical Research Foundation of the Academy of Athens'),
(7145, 5410, 'en', 'name', 'American Society for Reproductive Medicine'),
(7146, 5411, 'en', 'name', 'American Sports Medicine Institute'),
(7147, 5412, 'en', 'name', 'Foundation for Blood Research'),
(7148, 5413, 'en', 'name', 'Applied Science and Technology Research Institute'),
(7149, 5414, 'no_lang_code', 'name', 'Analysis Group (United States)'),
(7150, 5415, 'en', 'name', 'Favaloro Foundation'),
(7151, 5416, 'en', 'name', 'Foundation for Research into Traditional Chinese Medicine'),
(7152, 5417, 'en', 'name', 'Indiana Hand to Shoulder Center'),
(7153, 5418, 'en', 'name', 'Centre for Chronic Disease Control'),
(7154, 5419, 'en', 'name', 'Framingham State University'),
(7155, 5419, 'fr', 'name', 'UniversitĆ© d''Ɖtat de framingham'),
(7156, 5420, 'en', 'name', 'Rochester Area Foundation'),
(7157, 5421, 'en', 'name', 'Frankfurt Institute for Advanced Studies'),
(7158, 5422, 'en', 'name', 'Indiana Hemophilia and Thrombosis Center'),
(7159, 5423, 'en', 'name', 'Anderson Orthopaedic Clinic'),
(7160, 5424, 'en', 'name', 'Anderson Orthopaedic Research Institute'),
(7161, 5425, 'en', 'name', 'Centre for Infectious Disease Research in Zambia'),
(7162, 5426, 'it', 'name', 'Fondazione Andrea Cesalpino'),
(7163, 5427, 'en', 'name', 'Fraunhofer USA Center for Molecular Biotechnology'),
(7164, 5428, 'no_lang_code', 'name', 'GlaxoSmithKline (United States)'),
(7165, 5429, 'en', 'name', 'Fertility Medical Group'),
(7166, 5430, 'de', 'name', 'Friedrich Miescher Laboratory'),
(7167, 5431, 'en', 'name', 'Fritz Haber Institute of the Max Planck Society'),
(7168, 5431, 'de', 'name', 'Fritz-Haber-Institut der Max-Planck-Gesellschaft'),
(7169, 5432, 'en', 'name', 'Industrial Technology Research Institute'),
(7170, 5432, 'zh', 'name', 'å·„ę„­ęŠ€č”“ē”ē©¶é™¢'),
(7171, 5433, 'en', 'name', 'Mason Parks & Recreation Foundation'),
(7172, 5434, 'en', 'name', 'Max Planck Institute for Metabolism Research'),
(7173, 5434, 'de', 'name', 'Max-Planck-Institut für Stoffwechselforschung'),
(7174, 5435, 'no_lang_code', 'name', 'Fujimoto Pharmaceutical Corporation (Japan)'),
(7175, 5436, 'no_lang_code', 'name', 'Fujirebio (Japan)'),
(7176, 5436, 'ja', 'name', 'åÆŒå£«ćƒ¬ćƒ“ć‚Ŗę Ŗå¼ä¼šē¤¾'),
(7177, 5437, 'no_lang_code', 'name', 'Fukui CardioVascular Center'),
(7178, 5437, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗ ē¦äŗ•åæƒč‡“č”€åœ§ć‚»ćƒ³ć‚æćƒ¼ ē¦äŗ•å¾Ŗē’°å™Øē—…é™¢'),
(7179, 5438, 'en', 'name', 'Fukuoka Dental College'),
(7180, 5438, 'ja', 'name', 'ē¦å²”ę­Æē§‘å¤§å­¦'),
(7181, 5439, 'fr', 'name', 'Centre hospitalier de Tulle'),
(7182, 5440, 'en', 'name', 'Fukuoka Industrial Technology Center'),
(7183, 5440, 'ja', 'name', 'ē¦å²”ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(7184, 5441, 'en', 'name', 'Fukuoka Institute of Technology'),
(7185, 5441, 'ja', 'name', 'ē¦å²”å·„ę„­å¤§å­¦'),
(7186, 5442, 'fr', 'name', 'Centre Hospitalier de Tourcoing'),
(7187, 5443, 'no_lang_code', 'name', 'Arbutus Biopharma (Canada)'),
(7188, 5444, 'en', 'name', 'American Osteopathic Association'),
(7189, 5445, 'fr', 'name', 'Centre Hospitalier Intercommunal de Poissy'),
(7190, 5446, 'de', 'name', 'Apherese Forschungsinstitut'),
(7191, 5447, 'fr', 'name', 'Centre Hospitalier de l''AgglomƩration de Nevers'),
(7192, 5448, 'en', 'name', 'Fuller Theological Seminary'),
(7193, 5448, 'es', 'name', 'Seminario Teológico Fuller'),
(7194, 5449, 'fr', 'name', 'Centre Hospitalier de Cannes'),
(7195, 5450, 'no_lang_code', 'name', 'Fundação Estadual de Produção e Pesquisa em Saúde'),
(7196, 5451, 'fr', 'name', 'Groupe Hospitalier du Havre'),
(7197, 5452, 'en', 'name', 'Aquinas Institute of Theology'),
(7198, 5453, 'no_lang_code', 'name', 'EstƩe Lauder (United States)'),
(7199, 5454, 'fr', 'name', 'Centre Hospitalier Universitaire de Kigali'),
(7200, 5454, 'en', 'name', 'University Teaching Hospital of Kigali'),
(7201, 5455, 'fr', 'name', 'Centre Hospitalier de la CƓte Basque'),
(7202, 5456, 'fr', 'name', 'Centre Hospitalier de Libreville'),
(7203, 5456, 'en', 'name', 'Libreville Hospital'),
(7204, 5457, 'es', 'name', 'Fundación Cardiovascular de Colombia'),
(7205, 5458, 'da', 'name', 'Det Nationale Forskningscenter for ArbejdsmiljĆø'),
(7206, 5458, 'en', 'name', 'National Research Centre for the Working Environment'),
(7207, 5459, 'es', 'name', 'Fundación Instituto Valenciano de Oncología'),
(7208, 5460, 'fr', 'name', 'Centre hospitalier Etterbeek-Ixelles'),
(7209, 5461, 'fr', 'name', 'Centre Hospitalier FrĆØderic-Henri ManhĆØs'),
(7210, 5462, 'es', 'name', 'Fundación Santa Fe de BogotÔ'),
(7211, 5463, 'fr', 'name', 'Centre Hospitalier Laennec'),
(7212, 5464, 'en', 'name', 'Insall Scott Kelly Institute'),
(7213, 5465, 'en', 'name', 'Amrith Educational and Cultural Society'),
(7214, 5466, 'en', 'name', 'Arizona Heart Institute'),
(7215, 5467, 'no_lang_code', 'name', 'Galen Research (United Kingdom)'),
(7216, 5468, 'no_lang_code', 'name', 'Galderma (France)'),
(7217, 5469, 'fr', 'name', 'Institut Alfred Fournier'),
(7218, 5470, 'en', 'name', 'Gatorade Sports Science Institute'),
(7219, 5471, 'fr', 'name', 'Centre Jean Perrin'),
(7220, 5472, 'fr', 'name', 'Institut Arnault Tzanck'),
(7221, 5473, 'fr', 'name', 'Centre International de Recherches MƩdicales de Franceville'),
(7222, 5474, 'en', 'name', 'Gansu University of Traditional Chinese Medicine'),
(7223, 5474, 'zh', 'name', 'ē”˜č‚ƒäø­åŒ»å­¦é™¢'),
(7224, 5475, 'en', 'name', 'Armed Forces Institute of Pathology');
INSERT INTO `ror_settings` VALUES
(7225, 5476, 'fr', 'name', 'Institut Jules Bordet'),
(7226, 5477, 'fr', 'name', 'HƓpital privƩ Clairval'),
(7227, 5478, 'fr', 'name', 'Centre MƩdical de Vidy'),
(7228, 5479, 'en', 'name', 'Arthritis and Rheumatology Clinics of Kansas'),
(7229, 5480, 'en', 'name', 'Gamalei Institute of Epidemiology and Microbiology'),
(7230, 5480, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии имени почётного акаГемика Š. Ф. Гамалеи'),
(7231, 5481, 'fr', 'name', 'Institut Calot'),
(7232, 5482, 'no_lang_code', 'name', 'Arthur D. Little (United States)'),
(7233, 5483, 'en', 'name', 'Gabrichevsky Institute of Epidemiology and Microbiology'),
(7234, 5483, 'ru', 'name', 'Московский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии им.Š“.Š.Габричевского'),
(7235, 5484, 'no_lang_code', 'name', 'Asahi Breweries (Japan)'),
(7236, 5484, 'ja', 'name', 'ć‚¢ć‚µćƒ’ćƒ“ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(7237, 5485, 'fr', 'name', 'Institut Cardiovasculaire Paris Sud'),
(7238, 5486, 'no_lang_code', 'name', 'Asahi Chemical & Industry (Japan)'),
(7239, 5487, 'en', 'name', 'Asian Institute of Technology'),
(7240, 5487, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹ąø«ą¹ˆąø‡ą¹€ąø­ą¹€ąøŠąøµąø¢'),
(7241, 5488, 'en', 'name', 'Association of Dutch Burn Centres'),
(7242, 5488, 'nl', 'name', 'Vereniging Samenwerkende Brandwondencentra'),
(7243, 5489, 'en', 'name', 'MalariaGEN'),
(7244, 5490, 'no_lang_code', 'name', 'AstraZeneca (Sweden)'),
(7245, 5491, 'no_lang_code', 'name', 'AstraZeneca (United States)'),
(7246, 5492, 'pt', 'name', 'Fundação de Medicina Tropical'),
(7247, 5493, 'en', 'name', 'Atlanta Allergy and Asthma Clinic'),
(7248, 5494, 'en', 'name', 'Leeds General Infirmary'),
(7249, 5495, 'no_lang_code', 'name', 'General Motors (United States)'),
(7250, 5496, 'en', 'name', 'Audubon Nature Institute'),
(7251, 5497, 'fr', 'name', 'Centre Ophtalmologique d''Imagerie et de Laser'),
(7252, 5498, 'en', 'name', 'Genetics and IVF Institute'),
(7253, 5499, 'de', 'name', 'Belgische Wissenschaftsinstitut für Ɩffentliche Gesundheit'),
(7254, 5499, 'fr', 'name', 'Institut Scientifique de SantƩ Publique'),
(7255, 5499, 'en', 'name', 'Scientific Institute of Public Health'),
(7256, 5499, 'nl', 'name', 'Wetenschappelijk Instituut Volksgezondheid'),
(7257, 5500, 'en', 'name', 'Austen Riggs Center'),
(7258, 5501, 'en', 'name', 'Austin Diagnostic Clinic'),
(7259, 5502, 'fr', 'name', 'Centre OrthopƩdique Santy'),
(7260, 5503, 'no_lang_code', 'name', 'GlaxoSmithKline (Switzerland)'),
(7261, 5504, 'no_lang_code', 'name', 'Cooperative Resources International (United States)'),
(7262, 5505, 'en', 'name', 'Genomics Institute of the Novartis Research Foundation'),
(7263, 5506, 'it', 'name', 'Gruppo di Ricerca Geriatrica'),
(7264, 5507, 'en', 'name', 'Indian Agricultural Research Institute'),
(7265, 5507, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(7266, 5507, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µąÆ‡ą®³ą®¾ą®£ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(7267, 5508, 'en', 'name', 'Indian Grassland and Fodder Research Institute'),
(7268, 5509, 'en', 'name', 'Indian Institute of Spices Research'),
(7269, 5510, 'en', 'name', 'Baltimore Washington Center for Psychoanalysis'),
(7270, 5511, 'en', 'name', 'Bangur Institute of Neurosciences'),
(7271, 5512, 'fr', 'name', 'HƓpital RenƩ Huguenin'),
(7272, 5513, 'en', 'name', 'Henri Gastaut Hospital'),
(7273, 5514, 'fr', 'name', 'SecrƩtariat du Conseil du TrƩsor du Canada'),
(7274, 5514, 'en', 'name', 'Treasury Board of Canada Secretariat'),
(7275, 5515, 'de', 'name', 'Deutsche Klinik für Diagnostik'),
(7276, 5516, 'no_lang_code', 'name', 'Merck (Japan)'),
(7277, 5516, 'ja', 'name', 'ćƒ”ćƒ«ć‚Æ'),
(7278, 5517, 'en', 'name', 'Baptist Health South Florida'),
(7279, 5518, 'de', 'name', 'Deutsches Primatenzentrum'),
(7280, 5518, 'en', 'name', 'German Primate Center'),
(7281, 5519, 'de', 'name', 'Deutsches Rheuma-Forschungszentrum Berlin'),
(7282, 5519, 'en', 'name', 'German Rheumatism Research Centre'),
(7283, 5520, 'no_lang_code', 'name', 'Geron (United States)'),
(7284, 5521, 'en', 'name', 'Indian Institute of Horticultural Research'),
(7285, 5522, 'en', 'name', 'GF Strong Rehabilitation Centre'),
(7286, 5523, 'en', 'name', 'Indian Institute of Integrative Medicine'),
(7287, 5524, 'en', 'name', 'Gimbel Eye Centre'),
(7288, 5525, 'it', 'name', 'Centro Cardiologico Monzino'),
(7289, 5526, 'en', 'name', 'Bath Institute for Rheumatic Diseases'),
(7290, 5527, 'no_lang_code', 'name', 'Baxter (United States)'),
(7291, 5528, 'no_lang_code', 'name', 'BASF (United States)'),
(7292, 5529, 'en', 'name', 'Center for Scientific Studies'),
(7293, 5529, 'es', 'name', 'Centro de Estudios CientĆ­ficos'),
(7294, 5530, 'fr', 'name', 'Institut de la Main'),
(7295, 5531, 'it', 'name', 'Casa di Cura Columbus'),
(7296, 5532, 'es', 'name', 'Instituto Venezolano de Investigaciones CientĆ­ficas'),
(7297, 5533, 'en', 'name', 'Center for Medical Education and Clinical Research Norberto Quirno'),
(7298, 5533, 'es', 'name', 'Centro de Educación Médica e Investigaciones Clínicas Norberto Quirno'),
(7299, 5534, 'fr', 'name', 'Institut de MƩdecine Tropicale du Service de SantƩ des ArmƩes'),
(7300, 5535, 'no_lang_code', 'name', 'Beckham Company (United States)'),
(7301, 5536, 'en', 'name', 'Bedford Institute of Oceanography'),
(7302, 5537, 'no_lang_code', 'name', 'Aptuit (Italy)'),
(7303, 5538, 'es', 'name', 'ClĆ­nica Ruiz'),
(7304, 5539, 'en', 'name', 'Center for Genetic Engineering and Biotechnology'),
(7305, 5539, 'es', 'name', 'Centro de Ingenierƭa GenƩtica y Biotecnologƭa'),
(7306, 5540, 'en', 'name', 'Global Hospitals'),
(7307, 5541, 'en', 'name', 'Global Neuroscience Initiative Foundation'),
(7308, 5542, 'en', 'name', 'Beijing Center for Disease Prevention and Control'),
(7309, 5542, 'zh', 'name', 'åŒ—äŗ¬åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(7310, 5543, 'en', 'name', 'Beijing Academy of Science and Technology'),
(7311, 5543, 'zh', 'name', 'åŒ—äŗ¬åø‚ē”µåŠ å·„ē ”ē©¶ę‰€'),
(7312, 5544, 'pt', 'name', 'Fundação Pró-Sangue Hemocentro de São Paulo'),
(7313, 5545, 'no_lang_code', 'name', 'Ligand Pharmaceuticals (United States)'),
(7314, 5546, 'en', 'name', 'Gordon-Conwell Theological Seminary'),
(7315, 5547, 'en', 'name', 'Beijing Red Cross Blood Center'),
(7316, 5548, 'en', 'name', 'National Dental Centre of Singapore'),
(7317, 5549, 'en', 'name', 'Bellin College'),
(7318, 5550, 'en', 'name', 'Government Dental College & Research Institute'),
(7319, 5551, 'en', 'name', 'Benaki Phytopathological Institute'),
(7320, 5551, 'el', 'name', 'ĪœĻ€ĪµĪ½Ī¬ĪŗĪµĪ¹Īæ Ī¦Ļ…Ļ„ĪæĻ€Ī±ĪøĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ'),
(7321, 5552, 'en', 'name', 'Benjamin Rose Institute on Aging'),
(7322, 5553, 'en', 'name', 'Graduate School Neurosciences Amsterdam Rotterdam'),
(7323, 5554, 'en', 'name', 'Graham International Implant Institute'),
(7324, 5555, 'en', 'name', 'Bethel College'),
(7325, 5556, 'en', 'name', 'v. Bodelschwing Foundation Bethel'),
(7326, 5556, 'de', 'name', 'v. Bodelschwinghsche Stiftungen Bethel'),
(7327, 5557, 'en', 'name', 'Barraquer Opthalmology Center'),
(7328, 5557, 'es', 'name', 'Clínica Oftalmológica Barraquer'),
(7329, 5558, 'en', 'name', 'TriHealth'),
(7330, 5559, 'en', 'name', 'Bhabha Atomic Research Centre'),
(7331, 5559, 'fr', 'name', 'Centre de recherche atomique de bhabha'),
(7332, 5559, 'mr', 'name', 'भाभा ą¤…ą¤£ą„ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(7333, 5559, 'hi', 'name', 'भाभा ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(7334, 5559, 'ta', 'name', 'பாபா அணு ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ąÆˆą®Æą®®ąÆ'),
(7335, 5559, 'kn', 'name', 'ಭಾಭಾ ಅಣು ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(7336, 5559, 'ml', 'name', 'ą“­ą“¾ą“­ą“¾ ą“†ą“£ą“µ ą“—ą“µąµ‡ą“·ą“£ ą“•ąµ‡ą“Øąµą“¦ąµą“°ą“‚'),
(7337, 5560, 'en', 'name', 'Mitsubishi Chemical Holdings'),
(7338, 5560, 'no_lang_code', 'name', 'Mitsubishi Chemical Holdings (Japan)'),
(7339, 5560, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äø‰č±ć‚±ćƒŸć‚«ćƒ«ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(7340, 5561, 'en', 'name', 'Greenwood Genetic Center'),
(7341, 5562, 'en', 'name', 'Grewal Eye Institute'),
(7342, 5563, 'no_lang_code', 'name', 'Bio Products Laboratory (United Kingdom)'),
(7343, 5564, 'en', 'name', 'Bio Behavioral Institute'),
(7344, 5565, 'es', 'name', 'Hospital Intermutual de Levante'),
(7345, 5566, 'en', 'name', 'Biocor Institute'),
(7346, 5566, 'es', 'name', 'Biocor Instituto'),
(7347, 5567, 'no_lang_code', 'name', 'Biodynamic Research Corporation (United States)'),
(7348, 5568, 'it', 'name', 'Centro di Riferimento Oncologico'),
(7349, 5569, 'it', 'name', 'Centro di Riferimento Oncologico della Basilicata'),
(7350, 5570, 'fr', 'name', 'Institut de Virologie'),
(7351, 5571, 'it', 'name', 'Centro Diagnostico Italiano'),
(7352, 5572, 'en', 'name', 'Guangxi Center for Disease Prevention and Control'),
(7353, 5572, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(7354, 5573, 'pt', 'name', 'Centro Hospitalar de Lisboa Ocidental'),
(7355, 5574, 'pt', 'name', 'Centro Hospitalar de Vila Nova de Gaia'),
(7356, 5575, 'en', 'name', 'Guangxi Veterinary Research Institute'),
(7357, 5576, 'en', 'name', 'Guangzhou Blood Center'),
(7358, 5577, 'es', 'name', 'Centro Hospitalario Pereira Rossell'),
(7359, 5578, 'en', 'name', 'Guangzhou Institute of Dermatology'),
(7360, 5579, 'en', 'name', 'Gunma Prefectural Cardiovascular Center'),
(7361, 5579, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹åæƒč‡“č”€ē®”ć‚»ćƒ³ć‚æćƒ¼'),
(7362, 5580, 'no_lang_code', 'name', 'Guru Nanak Eye Centre'),
(7363, 5581, 'en', 'name', 'Biomedical Research Institute'),
(7364, 5582, 'en', 'name', 'Gundersen Lutheran Hospital'),
(7365, 5583, 'en', 'name', 'Gyeongsangnam-do Agricultural Research and Extension Services'),
(7366, 5583, 'ko', 'name', 'ź²½ģƒė‚Øė„ė†ģ—…źø°ģˆ ģ›'),
(7367, 5584, 'en', 'name', 'Hachinohe National College of Technology'),
(7368, 5584, 'ja', 'name', 'å…«ęˆøå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ” 庶務課'),
(7369, 5585, 'en', 'name', 'Central Drug Research Institute'),
(7370, 5585, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ औषधि ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(7371, 5585, 'te', 'name', 'ą°•ą±‡ą°‚ą°¦ą±ą°°ą±€ą°Æ ఔషధ పరిశోధనా ą°øą°‚ą°øą±ą°„'),
(7372, 5586, 'en', 'name', 'Central Glass and Ceramic Research Institute'),
(7373, 5587, 'en', 'name', 'Maaruti College of Dental sciences & Research Center'),
(7374, 5588, 'en', 'name', 'Central Leather Research Institute'),
(7375, 5589, 'en', 'name', 'Central Potato Research Institute'),
(7376, 5590, 'en', 'name', 'Central Rice Research Institute'),
(7377, 5591, 'en', 'name', 'Central Tuber Crops Research Institute'),
(7378, 5592, 'en', 'name', 'Rothamsted Research'),
(7379, 5593, 'it', 'name', 'Fondazione Salvatore Maugeri'),
(7380, 5594, 'no_lang_code', 'name', 'Novartis (France)'),
(7381, 5595, 'no_lang_code', 'name', 'BioSci Research Canada (Canada)'),
(7382, 5596, 'es', 'name', 'Centro MƩdico Nacional La Raza'),
(7383, 5597, 'en', 'name', 'Hamilton Regional Laboratory Medicine Program'),
(7384, 5598, 'en', 'name', 'Hand and Wrist Center of Houston'),
(7385, 5599, 'es', 'name', 'Centro Medico Nacional Siglo XXI'),
(7386, 5600, 'no_lang_code', 'name', 'Merck Serono (Switzerland)'),
(7387, 5601, 'en', 'name', 'Max Planck Institute of Molecular Plant Physiology'),
(7388, 5601, 'de', 'name', 'Max-Planck-Institut für molekulare Pflanzenphysiologie'),
(7389, 5602, 'en', 'name', 'Royal Blackburn Teaching Hospital'),
(7390, 5603, 'de', 'name', 'GP Forschungsgruppe'),
(7391, 5604, 'es', 'name', 'Centro Rosarino de Estudios Perinatales'),
(7392, 5605, 'en', 'name', 'Block Center'),
(7393, 5606, 'en', 'name', 'Blood Transfusion Centre of Slovenia'),
(7394, 5607, 'no_lang_code', 'name', 'BM-Science'),
(7395, 5608, 'en', 'name', 'Hartwick College'),
(7396, 5609, 'en', 'name', 'Harvard Affiliated Emergency Medicine Residency'),
(7397, 5610, 'no_lang_code', 'name', 'Boehringer Ingelheim (United States)'),
(7398, 5611, 'en', 'name', 'Bogolyubov Institute for Theoretical Physics'),
(7399, 5611, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретичної фізики ім. М.М. Š‘Š¾Š³Š¾Š»ŃŽŠ±Š¾Š²Š°'),
(7400, 5612, 'en', 'name', 'Development Center for Biotechnology'),
(7401, 5613, 'no_lang_code', 'name', 'Cerner (United States)'),
(7402, 5614, 'en', 'name', 'Diabetes & Glandular Disease Clinic'),
(7403, 5615, 'en', 'name', 'Diabetes Care Center'),
(7404, 5616, 'en', 'name', 'Boreskov Institute of Catalysis'),
(7405, 5616, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ катализа им. Š“.К. Борескова Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(7406, 5617, 'en', 'name', 'Borgess Health'),
(7407, 5618, 'en', 'name', 'Clinical Trial Investigators'),
(7408, 5619, 'en', 'name', 'Boston Psychoanalytic Society and Institute'),
(7409, 5620, 'en', 'name', 'Bostwick Laboratories'),
(7410, 5621, 'en', 'name', 'Hastings Center'),
(7411, 5622, 'en', 'name', 'Charitable Infirmary'),
(7412, 5623, 'en', 'name', 'Bourn Hall Clinic'),
(7413, 5624, 'en', 'name', 'Hawaii Agriculture Research Center'),
(7414, 5625, 'en', 'name', 'Boxer Wachler Vision Institute'),
(7415, 5626, 'en', 'name', 'City Colleges of Chicago'),
(7416, 5626, 'es', 'name', 'Colegios Comunitarios de Chicago'),
(7417, 5627, 'en', 'name', 'Max Planck Institute of Molecular Physiology'),
(7418, 5627, 'de', 'name', 'Max-Planck-Institut für Molekulare Physiologie'),
(7419, 5628, 'no_lang_code', 'name', 'Bracco (Switzerland)'),
(7420, 5629, 'no_lang_code', 'name', 'Hayashibara (Japan)'),
(7421, 5629, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ ęž—åŽŸ'),
(7422, 5630, 'en', 'name', 'Bradford Royal Infirmary'),
(7423, 5631, 'fr', 'name', 'Institut Jean Godinot'),
(7424, 5632, 'en', 'name', 'Bradford Teaching Hospitals NHS Foundation Trust'),
(7425, 5633, 'en', 'name', 'Headache Care Center'),
(7426, 5634, 'en', 'name', 'Headache Wellness Center'),
(7427, 5635, 'en', 'name', 'Finnish Brain Research and Rehabilitation Center Neuron'),
(7428, 5636, 'en', 'name', 'Heart and Diabetes Center North Rhine-Westphalia'),
(7429, 5636, 'de', 'name', 'Herz- und Diabeteszentrum Nordrhein-Westfalen'),
(7430, 5637, 'es', 'name', 'Institut Kaplan'),
(7431, 5638, 'en', 'name', 'Chemical Diversity Research Institute'),
(7432, 5638, 'ru', 'name', 'Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Єимического Š Š°Š·Š½Š¾Š¾Š±Ń€Š°Š·ŠøŃ'),
(7433, 5639, 'pt', 'name', 'Centro Brasileiro de Estudos em Dermatologia'),
(7434, 5640, 'en', 'name', 'Diamond Headache Clinic'),
(7435, 5641, 'en', 'name', 'Valley Breast Care & Woman''s Health Center'),
(7436, 5642, 'en', 'name', 'Leibniz Institute for Prevention Research and Epidemiology - BIPS'),
(7437, 5642, 'de', 'name', 'Leibniz-Institut für Präventionsforschung und Epidemiologie - BIPS'),
(7438, 5643, 'de', 'name', 'Helios Kliniken'),
(7439, 5644, 'en', 'name', 'Heart Clinic of Louisiana'),
(7440, 5645, 'ca', 'name', 'Institut Municipal d''AssistĆØncia SanitĆ ria'),
(7441, 5646, 'en', 'name', 'New York Heart Research Foundation'),
(7442, 5647, 'en', 'name', 'Bristol Institute for Transfusion Sciences'),
(7443, 5648, 'fr', 'name', 'Institut National d''HygiĆØne du Maroc'),
(7444, 5649, 'de', 'name', 'Georg Speyer Haus'),
(7445, 5650, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Japan)'),
(7446, 5650, 'ja', 'name', 'ćƒ–ćƒŖć‚¹ćƒˆćƒ«ćƒ»ćƒžć‚¤ćƒ¤ćƒ¼ć‚ŗ ć‚¹ć‚Æć‚¤ćƒ–'),
(7447, 5651, 'no_lang_code', 'name', 'Helicos Biosciences (United States)'),
(7448, 5652, 'no_lang_code', 'name', 'Teva Pharmaceuticals (United States)'),
(7449, 5653, 'en', 'name', 'Chemical Pharmaceutical Research Institute'),
(7450, 5654, 'en', 'name', 'Chiba Cancer Center'),
(7451, 5654, 'ja', 'name', 'åƒč‘‰ēœŒćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(7452, 5655, 'en', 'name', 'National Vital Statistics System'),
(7453, 5656, 'no_lang_code', 'name', 'Chiba Cerebral and Cardiovascular Center'),
(7454, 5656, 'ja', 'name', 'åƒč‘‰ēœŒč„³č”€ē®”ć‚»ćƒ³ć‚æ'),
(7455, 5657, 'en', 'name', 'Tzu Chi Foundation'),
(7456, 5658, 'en', 'name', 'Budker Institute of Nuclear Physics'),
(7457, 5658, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ физики'),
(7458, 5659, 'en', 'name', 'Hellenic Center for Disease Control & Prevention'),
(7459, 5660, 'da', 'name', 'BĆørneklinikken Randers'),
(7460, 5661, 'en', 'name', 'Henan Provincial Center for Disease Control and Prevention'),
(7461, 5661, 'zh', 'name', 'ę²³å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(7462, 5662, 'en', 'name', 'Children''s Heart Center Nevada'),
(7463, 5663, 'en', 'name', 'Burton Hospitals NHS Foundation Trust'),
(7464, 5664, 'en', 'name', 'China Institute of Sport Science'),
(7465, 5664, 'zh', 'name', '国家体育总局体育科学研究所'),
(7466, 5665, 'en', 'name', 'China University of Science and Technology'),
(7467, 5665, 'zh', 'name', 'äø­čÆē§‘ęŠ€å¤§å­ø'),
(7468, 5666, 'no_lang_code', 'name', 'Altana (Germany)'),
(7469, 5667, 'en', 'name', 'Heritage Foundation'),
(7470, 5668, 'en', 'name', 'Hernia Center'),
(7471, 5669, 'no_lang_code', 'name', 'Bionova Holding Corporation (United States)'),
(7472, 5670, 'en', 'name', 'China Rehabilitation Research Center'),
(7473, 5671, 'en', 'name', 'China Institute of Veterinary Drug Control'),
(7474, 5671, 'zh', 'name', 'äø­å›½å…½åŒ»čÆå“ē›‘åÆŸę‰€'),
(7475, 5672, 'no_lang_code', 'name', 'Heska (United States)'),
(7476, 5673, 'en', 'name', 'Burdenko Neurosurgery Institute'),
(7477, 5673, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ автономное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø имени акаГемика Š.Š. Š‘ŃƒŃ€Š“ŠµŠ½ŠŗŠ¾ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(7478, 5674, 'en', 'name', 'West Bengal University of Health Sciences'),
(7479, 5674, 'hi', 'name', 'ą¤Ŗą¤¶ą„ą¤šą¤æą¤® बंगाल ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(7480, 5674, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦øą§ą¦¬ą¦¾ą¦øą§ą¦„ą§ą¦Æą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(7481, 5675, 'no_lang_code', 'name', 'Hewlett-Packard (United States)'),
(7482, 5676, 'en', 'name', 'Calgary Laboratory Services'),
(7483, 5677, 'en', 'name', 'Dominican College of Blauvelt'),
(7484, 5678, 'en', 'name', 'High Institute for Education and Research in Transfusion Medicine'),
(7485, 5678, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¹Ų§Ł„ŪŒ Ų¢Ł…ŁˆŲ²Ų“ŪŒ و Ł¾Ś˜ŁˆŁ‡Ų“ŪŒ Ų·ŲØ انتقال Ų®ŁˆŁ†'),
(7486, 5679, 'no_lang_code', 'name', 'Monsanto (United States)'),
(7487, 5680, 'en', 'name', 'California Institute for Regenerative Medicine'),
(7488, 5681, 'en', 'name', 'California Western School of Law'),
(7489, 5682, 'no_lang_code', 'name', 'bioMƩrieux (United States)'),
(7490, 5683, 'en', 'name', 'Thrombosis and Atherosclerosis Research Institute'),
(7491, 5684, 'en', 'name', 'Don Carlo Gnocchi Foundation'),
(7492, 5685, 'en', 'name', 'Chinese National Human Genome Center'),
(7493, 5686, 'no_lang_code', 'name', 'Pfizer (United Kingdom)'),
(7494, 5687, 'no_lang_code', 'name', 'Pfizer (Japan)'),
(7495, 5687, 'ja', 'name', 'ćƒ•ć‚”ć‚¤ć‚¶'),
(7496, 5688, 'fr', 'name', 'Institut RƩgional de MƩdecine Physique et de RƩadaptation'),
(7497, 5689, 'en', 'name', 'Chitose Institute of Science and Technology'),
(7498, 5689, 'ja', 'name', 'åƒę­³ē§‘å­¦ęŠ€č”“å¤§å­¦'),
(7499, 5690, 'fr', 'name', 'Institut Louis MalardƩ'),
(7500, 5691, 'en', 'name', 'Rath Research Institute'),
(7501, 5692, 'en', 'name', 'Tanzania Commission for Science and Technology'),
(7502, 5692, 'sw', 'name', 'Tume ya Sayansi na Teknolojia Tanzania'),
(7503, 5693, 'en', 'name', 'Dr. Daneshbod Labratory'),
(7504, 5694, 'en', 'name', 'Campbell Clinic'),
(7505, 5695, 'en', 'name', 'Canadian College of Naturopathic Medicine'),
(7506, 5696, 'en', 'name', 'Canadian Fitness and Lifestyle Research Institute'),
(7507, 5697, 'en', 'name', 'Canadian Memorial Chiropractic College'),
(7508, 5698, 'en', 'name', 'Dubai Pharmacy College'),
(7509, 5698, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© دبي Ł„Ł„ŲµŁŠŲÆŁ„Ų©'),
(7510, 5699, 'sr', 'name', 'Institut za zdravstvenu zaŔtitu dece i omladine Vojvodine'),
(7511, 5700, 'en', 'name', 'Chulabhorn Research Institute'),
(7512, 5700, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø§ąø“ąøˆąø±ąø¢ąøˆąøøąø¬ąø²ąø ąø£ąø“ą¹Œ'),
(7513, 5701, 'pl', 'name', 'Instytut Farmaceutyczny'),
(7514, 5702, 'no_lang_code', 'name', 'Novartis (Japan)'),
(7515, 5702, 'ja', 'name', 'ćƒŽćƒćƒ«ćƒ†ć‚£ć‚¹ ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(7516, 5703, 'en', 'name', 'Institute for Advanced Studies in Basic Sciences'),
(7517, 5703, 'fa', 'name', 'مرکز ŲŖŲ­ŲµŪŒŁ„Ų§ŲŖ ŲŖŚ©Ł…ŪŒŁ„ŪŒ ŲÆŲ± Ų¹Ł„ŁˆŁ… Ł¾Ų§ŪŒŁ‡ زنجان'),
(7518, 5704, 'no_lang_code', 'name', 'PharmIdeas (Canada)'),
(7519, 5705, 'en', 'name', 'Pharmo Institute'),
(7520, 5706, 'nl', 'name', 'Instituut voor Landbouw en Visserijonderzoek'),
(7521, 5707, 'no_lang_code', 'name', 'Novartis (United Kingdom)'),
(7522, 5708, 'en', 'name', 'Dumfries and Galloway Royal Infirmary'),
(7523, 5709, 'en', 'name', 'Cincinnati Eye Institute'),
(7524, 5710, 'no_lang_code', 'name', 'Alternative Futures Associates'),
(7525, 5711, 'en', 'name', 'Cincinnati Sportsmedicine and Orthopaedic Center'),
(7526, 5712, 'en', 'name', 'City Eye Centre'),
(7527, 5713, 'en', 'name', 'National Migraine Centre'),
(7528, 5714, 'en', 'name', 'Philadelphia Fire Department'),
(7529, 5715, 'no_lang_code', 'name', 'Philip Morris International (Germany)'),
(7530, 5716, 'no_lang_code', 'name', 'Philips (Germany)'),
(7531, 5717, 'no_lang_code', 'name', 'Emergent BioSolutions (Canada)'),
(7532, 5718, 'en', 'name', 'Institute for Biological Instrumentation'),
(7533, 5718, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологического ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ Š ŠŠ'),
(7534, 5719, 'en', 'name', 'Clatterbridge Cancer Centre NHS Foundation Trust'),
(7535, 5720, 'ro', 'name', 'Institutul Cantacuzino'),
(7536, 5721, 'en', 'name', 'Institute for Biological Sciences'),
(7537, 5722, 'en', 'name', 'Cleveland Clinic Florida'),
(7538, 5723, 'no_lang_code', 'name', 'Dynavax Technologies (United States)'),
(7539, 5724, 'en', 'name', 'Capital Allergy and Respiratory Disease Center'),
(7540, 5725, 'en', 'name', 'Capital Institute of Pediatrics'),
(7541, 5725, 'zh', 'name', 'é¦–éƒ½å„æē§‘ē ”ē©¶ę‰€'),
(7542, 5726, 'en', 'name', 'Arizona Institute for Bone & Joint Disorders'),
(7543, 5727, 'en', 'name', 'Piedmont HealthCare'),
(7544, 5728, 'it', 'name', 'Casa di cura Pierangeli'),
(7545, 5729, 'en', 'name', 'Silverstein Institute'),
(7546, 5730, 'en', 'name', 'Eastern Oklahoma State College'),
(7547, 5731, 'en', 'name', 'Cleveland University'),
(7548, 5732, 'en', 'name', 'Animal Technology Institute Taiwan'),
(7549, 5733, 'en', 'name', 'Institute of Experimental Cardiology'),
(7550, 5734, 'en', 'name', 'Cardiopulmonary Research Science and Technology Institute'),
(7551, 5735, 'en', 'name', 'Pinkus Dermatopathology Laboratory'),
(7552, 5736, 'sv', 'name', 'Eastmaninstitutet'),
(7553, 5736, 'en', 'name', 'The Eastman Institute'),
(7554, 5737, 'no_lang_code', 'name', 'Kodak (United States)'),
(7555, 5738, 'sr', 'name', 'Klinički centar NiŔ'),
(7556, 5739, 'no_lang_code', 'name', 'Intertek (Canada)'),
(7557, 5740, 'en', 'name', 'Cape Shoulder Institute'),
(7558, 5741, 'no_lang_code', 'name', 'International Severity Information Systems (United States)'),
(7559, 5742, 'en', 'name', 'Central Council for Research in Ayurvedic Science'),
(7560, 5743, 'en', 'name', 'Plano Orthopedic Sports Medicine & Spine Center'),
(7561, 5744, 'fr', 'name', 'Institut OcƩanographique'),
(7562, 5745, 'en', 'name', 'Duluth Clinic'),
(7563, 5746, 'en', 'name', 'Dutch College of General Practitioners'),
(7564, 5746, 'nl', 'name', 'Nederlands Huisartsen Genootschap'),
(7565, 5747, 'en', 'name', 'Cardiovascular Research Foundation'),
(7566, 5748, 'en', 'name', 'Clinical Orthopaedics and Related Research'),
(7567, 5749, 'en', 'name', 'Podiatry Institute'),
(7568, 5750, 'en', 'name', 'Institute For Ecology of Industrial Areas'),
(7569, 5750, 'pl', 'name', 'Instytut Ekologii Terenów Uprzemysłowionych'),
(7570, 5751, 'en', 'name', 'Carlsberg Laboratory'),
(7571, 5752, 'sr', 'name', 'Institut za Zdravstvenu Zastitu Majke i Deteta'),
(7572, 5753, 'en', 'name', 'Point Richmond Tech Center'),
(7573, 5754, 'en', 'name', 'Institute for Facial Esthetics'),
(7574, 5755, 'en', 'name', 'Institute for Fermentation'),
(7575, 5755, 'ja', 'name', '発酵研究所'),
(7576, 5756, 'no_lang_code', 'name', 'Policy Analysis (United States)'),
(7577, 5757, 'fr', 'name', 'Clinique de l''Yvette'),
(7578, 5757, 'en', 'name', 'Yvette clinic'),
(7579, 5758, 'fr', 'name', 'Clinique de la DƩfense'),
(7580, 5759, 'fr', 'name', 'Ɖcole SupĆ©rieure de Biotechnologie de Strasbourg'),
(7581, 5760, 'en', 'name', 'Economic Policy Institute'),
(7582, 5761, 'en', 'name', 'Carter Center'),
(7583, 5762, 'hu', 'name', 'Bűnügyi SzakĆ©rtői Ć©s KutatóintĆ©zet'),
(7584, 5762, 'en', 'name', 'Hungarian Institute for Forensic Sciences'),
(7585, 5763, 'no_lang_code', 'name', 'Genetika'),
(7586, 5763, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетики Šø селекции ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Ń‹Ń… микроорганизмов'),
(7587, 5764, 'en', 'name', 'ECRI Institute'),
(7588, 5765, 'no_lang_code', 'name', 'Caterpillar (United States)'),
(7589, 5766, 'en', 'name', 'Institute for Infocomm Research'),
(7590, 5767, 'en', 'name', 'Porter Brook Medical Centre'),
(7591, 5768, 'no_lang_code', 'name', 'Unilever (United Kingdom)'),
(7592, 5769, 'en', 'name', 'Institute for Marine Biosciences'),
(7593, 5770, 'it', 'name', 'IRCCS Materno Infantile Burlo Garofolo'),
(7594, 5771, 'en', 'name', 'Posnick Center for Facial Plastic Surgery'),
(7595, 5772, 'en', 'name', 'Edinburgh Royal Infirmary'),
(7596, 5773, 'en', 'name', 'Animal Diseases Research Institute'),
(7597, 5774, 'en', 'name', 'Institute for Myeloma & Bone Cancer Research'),
(7598, 5775, 'no_lang_code', 'name', 'ANI Pharmaceuticals (United States)'),
(7599, 5776, 'no_lang_code', 'name', 'Insmed (United States)'),
(7600, 5777, 'en', 'name', 'CeMM Research Center for Molecular Medicine'),
(7601, 5778, 'no_lang_code', 'name', 'Cochlear (United States)'),
(7602, 5779, 'en', 'name', 'Edward Via College of Osteopathic Medicine'),
(7603, 5780, 'en', 'name', 'Institute of Higher Nervous Activity and Neurophysiology'),
(7604, 5780, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŃˆŠµŠ¹ нервной Š“ŠµŃŃ‚ŠµŠ»ŃŒŠ½Š¾ŃŃ‚Šø Šø нейрофизиологии Российской акаГемии наук'),
(7605, 5781, 'en', 'name', 'Institute for Research in Fundamental Sciences'),
(7606, 5781, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ ŲÆŲ§Ł†Ų“ā€ŒŁ‡Ų§ŪŒ ŲØŁ†ŪŒŲ§ŲÆŪŒ'),
(7607, 5782, 'fr', 'name', 'Institut de Recherche en Opthalmologie'),
(7608, 5783, 'en', 'name', 'Institute of Human Behaviour and Allied Sciences'),
(7609, 5784, 'en', 'name', 'Institute for Safe Medication Practices'),
(7610, 5785, 'en', 'name', 'Plant Biotechnology Institute'),
(7611, 5786, 'no_lang_code', 'name', 'Colgate-Palmolive (United States)'),
(7612, 5787, 'en', 'name', 'Institute of Immunological Engineering'),
(7613, 5788, 'no_lang_code', 'name', 'Procter & Gamble (United States)'),
(7614, 5789, 'en', 'name', 'Institute for the Care of Mother and Child'),
(7615, 5789, 'cs', 'name', 'Ústav pro PĆ©Äi o Matku a DĆ­tě'),
(7616, 5790, 'en', 'name', 'Misericordia University'),
(7617, 5791, 'en', 'name', 'College of American Pathologists'),
(7618, 5792, 'en', 'name', 'Aichi Prefectural Government'),
(7619, 5792, 'ja', 'name', 'ę„›ēŸ„ēœŒ'),
(7620, 5793, 'en', 'name', 'Institute for the Future'),
(7621, 5794, 'no_lang_code', 'name', 'Eisai (Japan)'),
(7622, 5794, 'ja', 'name', 'ć‚Øćƒ¼ć‚¶ć‚¤ę Ŗå¼ä¼šē¤¾'),
(7623, 5795, 'en', 'name', 'College of Family Physicians of Canada'),
(7624, 5795, 'fr', 'name', 'Le Collège des Médecins de Famille du Canada'),
(7625, 5796, 'en', 'name', 'Karnataka Veterinary Animal and Fisheries Sciences University'),
(7626, 5796, 'ne', 'name', 'ą¤•ą¤°ą„ą¤Øą¤¾ą¤Ÿą¤• ą¤µą„‡ą¤Ÿą„‡ą¤°ą¤æą¤Øą¤°ą„€, ą¤®ą¤¤ą„ą¤øą„ą¤Æ पालन र ą¤Ŗą¤¶ą„ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(7627, 5797, 'pl', 'name', 'Instytut Immunologii i Terapii Doświadczalnej'),
(7628, 5797, 'en', 'name', 'Ludwik Hirszfeld Institute of Immunology and Experimental Therapy'),
(7629, 5798, 'en', 'name', 'Productive Rehabilitation Institute of Dallas for Ergonomics'),
(7630, 5799, 'no_lang_code', 'name', 'Perrigo (United States)'),
(7631, 5800, 'en', 'name', 'Institute of Transplantation Sciences'),
(7632, 5801, 'en', 'name', 'Electric Power Research Institute'),
(7633, 5802, 'en', 'name', 'Institute of Life Sciences'),
(7634, 5803, 'en', 'name', 'Saskatchewan Disease Control Laboratory'),
(7635, 5804, 'en', 'name', 'Institute of Liver and Biliary Sciences'),
(7636, 5805, 'no_lang_code', 'name', 'Eli Lilly (United Kingdom)'),
(7637, 5806, 'no_lang_code', 'name', 'Eli Lilly (Canada)'),
(7638, 5807, 'en', 'name', 'Institute of Materials Research and Engineering'),
(7639, 5808, 'en', 'name', 'National Academy of Medicine'),
(7640, 5809, 'en', 'name', 'Elizabethtown College'),
(7641, 5810, 'en', 'name', 'College of New Rochelle'),
(7642, 5811, 'en', 'name', 'University of Missouri Health System'),
(7643, 5812, 'en', 'name', 'Elmhurst College'),
(7644, 5813, 'en', 'name', 'College of Physicians of Philadelphia'),
(7645, 5814, 'es', 'name', 'Parque Tecnológico de la Salud'),
(7646, 5815, 'en', 'name', 'College of St. Scholastica'),
(7647, 5816, 'en', 'name', 'Institute of Minerals and Materials Technology'),
(7648, 5817, 'en', 'name', 'Bandim Health Project'),
(7649, 5817, 'pt', 'name', 'Projecto de SaĆŗde Bandim'),
(7650, 5818, 'en', 'name', 'Emory Eye Center'),
(7651, 5819, 'en', 'name', 'Punjab Institute of Cardiology'),
(7652, 5820, 'en', 'name', 'Employee Benefit Research Institute'),
(7653, 5821, 'en', 'name', 'Pushpawati Singhania Research Institute'),
(7654, 5822, 'en', 'name', 'Institute of Basic Biological Problems'),
(7655, 5822, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Ń… проблем биологии Š ŠŠ'),
(7656, 5823, 'en', 'name', 'Nanaji Deshmukh Veterinary Science University'),
(7657, 5824, 'no_lang_code', 'name', 'ENVIRON (United States)'),
(7658, 5825, 'en', 'name', 'Institute of Biochemistry'),
(7659, 5826, 'en', 'name', 'Institute of Molecular Biology and Genetics'),
(7660, 5826, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Ń— біології і генетики'),
(7661, 5827, 'en', 'name', 'Institute of Molecular Genetics'),
(7662, 5827, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ генетики Российской акаГемии наук'),
(7663, 5828, 'en', 'name', 'Queen Saovabha Memorial Institute'),
(7664, 5829, 'en', 'name', 'Institute of Biocybernetics and Biomedical Engineering'),
(7665, 5830, 'en', 'name', 'Colorado Center for Bone Research'),
(7666, 5831, 'en', 'name', 'Quality of Life Research Center'),
(7667, 5832, 'en', 'name', 'Colorado Center for Nursing Excellence'),
(7668, 5833, 'en', 'name', 'Colorado Center for Reproductive Medicine'),
(7669, 5834, 'no_lang_code', 'name', 'Quest Clinical Research (United States)'),
(7670, 5835, 'en', 'name', 'EMO GVM Centro Cuore Columbus'),
(7671, 5836, 'en', 'name', 'Institute of Biology and Immunology of Reproduction'),
(7672, 5836, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š±ŠøŠ¾Š»Š¾Š³ŠøŃ Šø ŠøŠ¼ŃƒŠ½Š¾Š»Š¾Š³ŠøŃ на размножаването'),
(7673, 5837, 'en', 'name', 'Institute of Biomedical Chemistry'),
(7674, 5837, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биомеГицинской химии имени Š’.Š. ŠžŃ€ŠµŃ…Š¾Š²ŠøŃ‡Š°'),
(7675, 5838, 'en', 'name', 'Institute of Biomedical Problems'),
(7676, 5838, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской ФеГерации - Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГико-биологических проблем Российской акаГемии наук'),
(7677, 5839, 'en', 'name', 'Institute of Noetic Sciences'),
(7678, 5840, 'en', 'name', 'Institute of Nuclear Chemistry and Technology'),
(7679, 5840, 'pl', 'name', 'Instytut Chemii i Techniki Jądrowej'),
(7680, 5841, 'en', 'name', 'Institute of Bioorganic Chemistry'),
(7681, 5841, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биоорганической химии им. акаГемиков М.М. ŠØŠµŠ¼ŃŠŗŠøŠ½Š° Šø Š®.А. ŠžŠ²Ń‡ŠøŠ½Š½ŠøŠŗŠ¾Š²Š° Российской акаГемии наук'),
(7682, 5842, 'no_lang_code', 'name', 'Reynolds American (United States)'),
(7683, 5843, 'en', 'name', 'Institute of Biophysics'),
(7684, 5843, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики клетки Российской акаГемии наук'),
(7685, 5844, 'en', 'name', 'Institute of Nutrition and Food Hygiene'),
(7686, 5844, 'es', 'name', 'Instituto de Nutricion e Higiene de los Alimentos'),
(7687, 5845, 'en', 'name', 'Institute of Nutrition of Central America and Panama'),
(7688, 5845, 'es', 'name', 'Instituto de Nutrición de Centro América y PanamÔ'),
(7689, 5846, 'es', 'name', 'Complejo Asistencial Universitario de Palencia'),
(7690, 5847, 'es', 'name', 'Complejo Hospitalario de CƔceres'),
(7691, 5848, 'en', 'name', 'Institute of Occupational Safety'),
(7692, 5848, 'sl', 'name', 'Zavod za varstvo pri delu'),
(7693, 5849, 'en', 'name', 'Biotechnology Research Institute'),
(7694, 5849, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(7695, 5850, 'en', 'name', 'RG Stone Urology & Laparoscopy Hospital'),
(7696, 5850, 'hi', 'name', 'ą¤†ą¤°ą¤œą„€ ą¤øą„ą¤Ÿą„‹ą¤Ø ą¤Æą„‚ą¤°ą„‹ą¤²ą„‰ą¤œą„€ और ą¤²ą„ˆą¤Ŗą„ą¤°ą„‹ą¤øą„ą¤•ą„‹ą¤Ŗą„€ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(7697, 5851, 'it', 'name', 'Istituto di Neuroscienze'),
(7698, 5851, 'en', 'name', 'Neuroscience Institute'),
(7699, 5852, 'es', 'name', 'Instituto de Neurologia Y Neurocirugia'),
(7700, 5853, 'en', 'name', 'Estonian Academy of Sciences'),
(7701, 5854, 'es', 'name', 'Complejo Hospitalario de Ourense'),
(7702, 5855, 'es', 'name', 'Complejo Hospitalario de Pontevedra'),
(7703, 5856, 'en', 'name', 'F.D. Ovcharenko Institute of Biocolloidal Chemistry'),
(7704, 5856, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біоколоїГної хімії ім. Ф. Š”. ŠžŠ²Ń‡Š°Ń€ŠµŠ½ŠŗŠ°'),
(7705, 5857, 'en', 'name', 'EuroEspes Biomedical Research Center'),
(7706, 5858, 'en', 'name', 'Institute of Cardiology'),
(7707, 5858, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карГиологии'),
(7708, 5859, 'en', 'name', 'Institute of Organic Chemistry'),
(7709, 5859, 'pl', 'name', 'Instytut Chemii Organicznej PAN'),
(7710, 5860, 'en', 'name', 'Europdonor Foundation'),
(7711, 5861, 'en', 'name', 'Eindhoven Cancer Registry'),
(7712, 5862, 'it', 'name', 'Istituto Cantonale di Patologia'),
(7713, 5863, 'en', 'name', 'Engelhardt Institute of Molecular Biology'),
(7714, 5863, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ биологии им. Š’.А. Š­Š½Š³ŠµŠ»ŃŒŠ³Š°Ń€Š“Ń‚Š° Российской акаГемии наук'),
(7715, 5864, 'en', 'name', 'National Institute of Pathology'),
(7716, 5865, 'en', 'name', 'Institute of Cell Biophysics'),
(7717, 5865, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики клетки Российской акаГемии наук'),
(7718, 5866, 'en', 'name', 'Institute of Cellular and Intracellular Symbiosis'),
(7719, 5866, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики клетки Российской акаГемии наук'),
(7720, 5867, 'no_lang_code', 'name', 'Boston Scientific (United States)'),
(7721, 5868, 'en', 'name', 'Institute of Chemical Biology and Fundamental Medicine'),
(7722, 5868, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической биологии Šø Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(7723, 5869, 'en', 'name', 'Institute of Chemical Kinetics and Combustion'),
(7724, 5869, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической кинетики Šø Š³Š¾Ń€ŠµŠ½ŠøŃ им. Š’.Š’. ВоевоГского Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(7725, 5870, 'en', 'name', 'European Centre for Disease Prevention and Control'),
(7726, 5870, 'sv', 'name', 'Europeiskt centrum fƶr fƶrebyggande och kontroll av sjukdomar'),
(7727, 5871, 'no_lang_code', 'name', 'Compugen (Israel)'),
(7728, 5871, 'he', 'name', 'קומפיוג''ן'),
(7729, 5872, 'no_lang_code', 'name', 'Enzon Pharmaceuticals (United States)'),
(7730, 5873, 'en', 'name', 'COMSATS University Islamabad'),
(7731, 5873, 'ur', 'name', 'Ś©ŁˆŁ…Ų³Ł¹Ų³ Ų§Ł†Ų³Ł¹ŪŒŁ¹ŪŒŁˆŁ¹ آف Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(7732, 5874, 'en', 'name', 'European Monitoring Centre for Drugs and Drug Addiction'),
(7733, 5874, 'pt', 'name', 'Observatório Europeu da Droga e da Toxicodependência'),
(7734, 5875, 'no_lang_code', 'name', 'NestlƩ (United States)'),
(7735, 5876, 'en', 'name', 'European Neuroscience Institute Gƶttingen'),
(7736, 5877, 'no_lang_code', 'name', 'Sun Pharma (India)'),
(7737, 5878, 'en', 'name', 'Institute of Physiology and Pathology of Hearing'),
(7738, 5879, 'no_lang_code', 'name', 'Sanofi (Canada)'),
(7739, 5880, 'en', 'name', 'Concordia College - Minnesota'),
(7740, 5881, 'en', 'name', 'European Organisation for Research and Treatment of Cancer'),
(7741, 5881, 'fr', 'name', 'Organisation europƩenne pour la recherche et le traitement du cancer'),
(7742, 5882, 'en', 'name', 'Methodist Richardson Medical Center'),
(7743, 5883, 'en', 'name', 'Defence Food Research Laboratory'),
(7744, 5883, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤–ą¤¾ą¤¦ą„ą¤Æ ą¤¶ą„‹ą¤§ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(7745, 5884, 'en', 'name', 'Defence Institute of Physiology and Allied Sciences'),
(7746, 5884, 'hi', 'name', 'ą¤•ą¤¾ą¤°ą„ą¤Æą¤•ą„€ और ą¤øą¤‚ą¤¬ą¤¦ą„ą¤§ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤°ą¤•ą„ą¤·ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(7747, 5885, 'en', 'name', 'Defence Research and Development Establishment'),
(7748, 5885, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ąÆ‡ą®®ąÆą®Ŗą®¾ą®ŸąÆą®ŸąÆ ą®¤ąÆŠą®“ą®æą®²ą®•ą®®ąÆ'),
(7749, 5886, 'en', 'name', 'Defence Research Laboratory'),
(7750, 5886, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(7751, 5887, 'en', 'name', 'Institute of Contemporary Psychoanalysis'),
(7752, 5888, 'en', 'name', 'European School of Oncology'),
(7753, 5889, 'en', 'name', 'Institute of Cytology'),
(7754, 5889, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цитологии Российской акаГемии наук'),
(7755, 5890, 'en', 'name', 'Institute of Primate Research'),
(7756, 5891, 'en', 'name', 'Institute of Problems of Chemical Physics'),
(7757, 5891, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем химической физики'),
(7758, 5892, 'en', 'name', 'Institute of Cytology and Preventive Oncology'),
(7759, 5893, 'en', 'name', 'Institute of Protein Research'),
(7760, 5893, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ белка Российской акаГемии наук'),
(7761, 5894, 'en', 'name', 'Institute of Cytology and Genetics'),
(7762, 5894, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цитологии Šø генетики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(7763, 5895, 'en', 'name', 'Foundation for the Fight against Pediatric Neurological Disease'),
(7764, 5895, 'es', 'name', 'Fundación para la Lucha contra las Enfermedades Neurológicas de la Infancia'),
(7765, 5896, 'en', 'name', 'Institute of Psychiatry and Neurology'),
(7766, 5897, 'en', 'name', 'Kobe City College of Technology'),
(7767, 5897, 'ja', 'name', 'ē„žęˆøåø‚ē«‹å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(7768, 5898, 'no_lang_code', 'name', 'Regeneron (United States)'),
(7769, 5899, 'en', 'name', 'Institute of Dermatology'),
(7770, 5899, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ą¹‚ąø£ąø„ąøœąø“ąø§ąø«ąø™ąø±ąø‡'),
(7771, 5900, 'en', 'name', 'Korea Center for Disease Control and Prevention'),
(7772, 5901, 'en', 'name', 'Korea Electronics Technology Institute'),
(7773, 5902, 'cs', 'name', 'Endokrinologický ústav'),
(7774, 5902, 'en', 'name', 'Institute of Endocrinology'),
(7775, 5903, 'en', 'name', 'Korea Forest Service'),
(7776, 5904, 'en', 'name', 'V.P. Komisarenko Institute of Endocrinology and Metabolism'),
(7777, 5904, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ енГокринології та Š¾Š±Š¼Ń–Š½Ńƒ речовин ім. Š’.П. ŠšŠ¾Š¼Ń–ŃŠ°Ń€ŠµŠ½ŠŗŠ°'),
(7778, 5905, 'pl', 'name', 'Instytut Sportu'),
(7779, 5906, 'en', 'name', 'Korea National Tuberculosis Association'),
(7780, 5907, 'pl', 'name', 'Krakowskie Centrum Rehabilitacji'),
(7781, 5908, 'de', 'name', 'Wunschbaby Institut für Kinderwunsch'),
(7782, 5909, 'no_lang_code', 'name', 'REALITY Publishing (United States)'),
(7783, 5910, 'en', 'name', 'Kronos Longevity Research Institute'),
(7784, 5911, 'en', 'name', 'Kumoh National Institute of Technology'),
(7785, 5911, 'ko', 'name', 'źøˆģ˜¤ź³µź³¼ėŒ€ķ•™źµ'),
(7786, 5912, 'en', 'name', 'Vision Eye Institute'),
(7787, 5913, 'en', 'name', 'Istanbul Eye Hospital'),
(7788, 5913, 'tr', 'name', 'İstanbul Gƶz Hastanesi'),
(7789, 5914, 'en', 'name', 'Eye Institute of Utah'),
(7790, 5915, 'en', 'name', 'Institute of Theoretical and Experimental Biophysics'),
(7791, 5915, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ биофизики Российской акаГемии наук'),
(7792, 5916, 'en', 'name', 'Regional Plant Resource Centre'),
(7793, 5917, 'en', 'name', 'Kunming Institute of Precious Metals'),
(7794, 5918, 'fi', 'name', 'Kuopion LiikuntalƤƤketieteen Tutkimuslaitos'),
(7795, 5919, 'pt', 'name', 'Faculdade de Ciências Médicas da Santa Casa de São Paulo'),
(7796, 5920, 'en', 'name', 'Kuwait Cancer Control Center'),
(7797, 5921, 'es', 'name', 'Instituto de Medicina Tropical ā€œPedro KourĆ­ā€'),
(7798, 5922, 'pl', 'name', 'Instytut Ekspertyz Sądowych'),
(7799, 5923, 'pl', 'name', 'Instytut GruÅŗlicy i Chorób Płuc'),
(7800, 5924, 'en', 'name', 'Institute of Gene Biology'),
(7801, 5924, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии гена'),
(7802, 5925, 'en', 'name', 'National Institute for Interdisciplinary Science and Technology'),
(7803, 5925, 'ml', 'name', 'ą“Øą“¾ą“·ą“£ąµ½ ą“‡ąµ»ą“øąµą“±ą“±ą“æą“±ą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą“«ąµ‹ąµ¼ ą“‡ąµ»ą“±ąµ¼ ą“”ą“æą“øą“æą“Ŗąµą“³ą“æą“Øą“±ą“æ ą“øą“Æąµ»ą“øąµ ą“…ąµ»ą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ, ą“¤ą“æą“°ąµą“µą“Øą“Øąµą“¤ą“Ŗąµą“°ą“‚'),
(7804, 5926, 'en', 'name', 'Kyoto Research Park'),
(7805, 5926, 'ja', 'name', 'äŗ¬éƒ½ćƒŖć‚µćƒ¼ćƒćƒ‘ćƒ¼ć‚Æ'),
(7806, 5927, 'en', 'name', 'D.F. Chebotarev Institute of Gerontology'),
(7807, 5927, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геронтології ім. Š”.Ф.Š§ŠµŠ±Š¾Ń‚Š°Ń€ŃŒŠ¾Š²Š°'),
(7808, 5928, 'pt', 'name', 'Faculdade de Medicina de MarĆ­lia'),
(7809, 5928, 'en', 'name', 'Faculty of Medicine of MarĆ­lia'),
(7810, 5929, 'pt', 'name', 'Faculdade de Medicina de São José do Rio Preto'),
(7811, 5929, 'en', 'name', 'Faculty of Medicine of São José do Rio Preto'),
(7812, 5930, 'en', 'name', 'Danish Institute against Torture'),
(7813, 5931, 'pt', 'name', 'Faculdade de Medicina do ABC'),
(7814, 5932, 'en', 'name', 'Louisville Metabolic and Atherosclerosis Research Center'),
(7815, 5933, 'en', 'name', 'Gujarat Technological University'),
(7816, 5934, 'pt', 'name', 'Faculdade EvangƩlica do ParanƔ'),
(7817, 5935, 'en', 'name', 'Biological Institute'),
(7818, 5935, 'pt', 'name', 'Instituto Biológico'),
(7819, 5936, 'no_lang_code', 'name', 'Repligen (United States)'),
(7820, 5937, 'en', 'name', 'Reproductive Genetics Institute'),
(7821, 5938, 'en', 'name', 'Reproductive Medicine Associates of New Jersey'),
(7822, 5939, 'es', 'name', 'Instituto Cardiovascular de Buenos Aires'),
(7823, 5940, 'no_lang_code', 'name', 'Arkema (United States)'),
(7824, 5941, 'es', 'name', 'Instituto Chileno de Medicina Reproductiva'),
(7825, 5942, 'no_lang_code', 'name', 'La Jolla Pharmaceutical (United States)'),
(7826, 5943, 'fr', 'name', 'Service RƩgional Vaudois de Transfusion Sanguine'),
(7827, 5944, 'en', 'name', 'Nagano College of Nursing'),
(7828, 5944, 'ja', 'name', 'é•·é‡ŽēœŒēœ‹č­·å¤§å­¦'),
(7829, 5945, 'pt', 'name', 'Instituto de Botânica'),
(7830, 5946, 'en', 'name', 'Weil Institute of Critical Care Medicine'),
(7831, 5947, 'es', 'name', 'Instituto de CardiologĆ­a y CirugĆ­a Cardiovascular'),
(7832, 5948, 'es', 'name', 'Comisión Honoraria de Lucha contra el cÔncer'),
(7833, 5949, 'en', 'name', 'Matsumoto Livestock Hygiene Service Center'),
(7834, 5950, 'en', 'name', 'Shady Grove Fertility Center'),
(7835, 5951, 'en', 'name', 'Russian Research Center for Molecular Diagnostics and Therapy'),
(7836, 5952, 'pt', 'name', 'Instituto de Infectologia EmĆ­lio Ribas'),
(7837, 5953, 'en', 'name', 'Shanghai Academy of Environmental Sciences'),
(7838, 5953, 'zh', 'name', 'äøŠęµ·åø‚ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(7839, 5954, 'no_lang_code', 'name', 'Fresenius Medical Care (United States)'),
(7840, 5955, 'en', 'name', 'Shanghai Blood Center'),
(7841, 5956, 'en', 'name', 'Reitan Neuropsychology Laboratory'),
(7842, 5957, 'en', 'name', 'Shanghai Cancer Institute'),
(7843, 5958, 'pt', 'name', 'Instituto de Medicina Integral Professor Fernando Figueira'),
(7844, 5959, 'en', 'name', 'Research Institute for Olympic Sports'),
(7845, 5960, 'es', 'name', 'Instituto de la Visión'),
(7846, 5961, 'en', 'name', 'Hokkaido Agricultural Research Center'),
(7847, 5961, 'ja', 'name', 'åŒ—ęµ·é“č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(7848, 5962, 'en', 'name', 'Shanghai Research Center for Acupuncture and Meridians'),
(7849, 5962, 'zh', 'name', 'äøŠęµ·åø‚é’ˆēøē»ē»œē ”ē©¶äø­åæƒ'),
(7850, 5963, 'pt', 'name', 'Instituto de MolƩstias Cardiovasculares'),
(7851, 5964, 'es', 'name', 'Instituto de NeurologĆ­a de Buenos Aires'),
(7852, 5965, 'en', 'name', 'Research Institute for Production Development'),
(7853, 5965, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗē”Ÿē”£é–‹ē™ŗē§‘å­¦ē ”ē©¶ę‰€'),
(7854, 5966, 'pt', 'name', 'Instituto de Neurologia de Curitiba'),
(7855, 5967, 'en', 'name', 'National AIDS Research Institute'),
(7856, 5968, 'fr', 'name', 'Laboratoire National de SantƩ'),
(7857, 5969, 'en', 'name', 'Shea Ear Clinic'),
(7858, 5970, 'es', 'name', 'Instituto de Salud PĆŗblica de Navarra'),
(7859, 5971, 'en', 'name', 'Environment Agency Abu Dhabi'),
(7860, 5971, 'ar', 'name', 'Ł‡ŁŠŲ¦Ų© Ų§Ł„ŲØŁŠŲ¦Ų©'),
(7861, 5972, 'pt', 'name', 'Faculdade de Ciências Médicas de Minas Gerais'),
(7862, 5973, 'en', 'name', 'Research Institute of Innovative Technology for the Earth'),
(7863, 5973, 'ja', 'name', 'åœ°ēƒē’°å¢ƒē”£ę„­ęŠ€č”“ē ”ē©¶ę©Ÿę§‹'),
(7864, 5974, 'en', 'name', 'Sheffield Kidney Institute'),
(7865, 5975, 'pt', 'name', 'Instituto Evandro Chagas'),
(7866, 5976, 'en', 'name', 'Food Research Institute'),
(7867, 5977, 'en', 'name', 'Research Institute of Ophthalmology'),
(7868, 5978, 'no_lang_code', 'name', 'National Iranian Oil Company (Iran)'),
(7869, 5978, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ صنعت نفت'),
(7870, 5979, 'pt', 'name', 'Instituto H. Ellis'),
(7871, 5980, 'no_lang_code', 'name', 'Merck (France)'),
(7872, 5981, 'es', 'name', 'Instituto MƩdico La Floresta'),
(7873, 5982, 'en', 'name', 'Hebrew Home of Greater Washington'),
(7874, 5983, 'en', 'name', 'Shibaura Institute of Technology'),
(7875, 5983, 'ja', 'name', 'čŠęµ¦å·„ę„­å¤§å­¦'),
(7876, 5984, 'en', 'name', 'Sher Fertility'),
(7877, 5985, 'es', 'name', 'Instituto Mexicano del Seguro Social'),
(7878, 5985, 'en', 'name', 'Mexican Social Security Institute'),
(7879, 5986, 'en', 'name', 'Institute for Animal Production System in Mediterranean Environment'),
(7880, 5986, 'it', 'name', 'Istituto per il Sistema Produzione Animale in Ambiente Mediterraneo'),
(7881, 5987, 'nl', 'name', 'Adelante'),
(7882, 5988, 'no_lang_code', 'name', 'Shionogi (Japan)'),
(7883, 5988, 'ja', 'name', 'å”©é‡Žē¾©č£½č–¬'),
(7884, 5989, 'no_lang_code', 'name', 'Shiseido Group (Japan)'),
(7885, 5989, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č³‡ē”Ÿå ‚'),
(7886, 5990, 'en', 'name', 'National Cancer Institute of Thailand'),
(7887, 5990, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø”ąø°ą¹€ąø£ą¹‡ąø‡ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(7888, 5991, 'es', 'name', 'Instituto Nacional de Enfermedades NeoplƔsicas'),
(7889, 5992, 'en', 'name', 'Research Triangle Park Foundation'),
(7890, 5993, 'es', 'name', 'Instituto Nacional de Enfermedades Respiratorias'),
(7891, 5994, 'en', 'name', 'Shonan Institute of Technology'),
(7892, 5994, 'ja', 'name', 'ę¹˜å—å·„ē§‘å¤§å­¦'),
(7893, 5995, 'en', 'name', 'Shriners Hospitals for Children - Philadelphia'),
(7894, 5996, 'en', 'name', 'Lahey Medical Center'),
(7895, 5997, 'en', 'name', 'Lake Erie College of Osteopathic Medicine'),
(7896, 5998, 'en', 'name', 'Retina Foundation of the Southwest'),
(7897, 5999, 'en', 'name', 'Rhode Island Spine Center'),
(7898, 6000, 'en', 'name', 'Shriners Hospitals for Children - Chicago'),
(7899, 6001, 'es', 'name', 'Instituto Nacional de Investigaciones Nucleares');
INSERT INTO `ror_settings` VALUES
(7900, 6002, 'en', 'name', 'Shriners for Children Medical Center - Pasadena'),
(7901, 6003, 'en', 'name', 'Shriners Hospitals for Children - Erie'),
(7902, 6004, 'en', 'name', 'Shriners Hospitals for Children - Honolulu'),
(7903, 6005, 'en', 'name', 'Shriners Hospitals for Children - Spokane'),
(7904, 6006, 'en', 'name', 'Las Vegas Institute'),
(7905, 6007, 'en', 'name', 'Laser and Skin Surgery Center of New York'),
(7906, 6008, 'es', 'name', 'Administración Nacional de Laboratorios e Institutos de Salud'),
(7907, 6009, 'en', 'name', 'Laser and Skin Surgery Center of Indiana'),
(7908, 6010, 'es', 'name', 'Instituto Nacional de NeurologĆ­a y NeurocirugĆ­a'),
(7909, 6010, 'en', 'name', 'National Institute of Neurology and Neurosurgery'),
(7910, 6011, 'en', 'name', 'LaserVision'),
(7911, 6012, 'es', 'name', 'Administracion de los Servicios de Salud del Estado'),
(7912, 6013, 'en', 'name', 'Latvian Academy of Sciences'),
(7913, 6014, 'en', 'name', 'Latvian Biomedical Research and Study Centre'),
(7914, 6014, 'lv', 'name', 'Latvijas Biomedicīnas Pētījumu un Studiju Centrs'),
(7915, 6015, 'en', 'name', 'Latvian Institute of Organic Synthesis'),
(7916, 6015, 'lv', 'name', 'Latvijas Organiskās Sintēzes Institūts'),
(7917, 6016, 'no_lang_code', 'name', 'LC Resources (United States)'),
(7918, 6017, 'es', 'name', 'Direccion General de Epidemiologia'),
(7919, 6018, 'es', 'name', 'Instituto Nacional de PerinatologĆ­a'),
(7920, 6018, 'en', 'name', 'National Institute of PerinatologĆ­a Isidro Espinosa de los Reyes'),
(7921, 6019, 'no_lang_code', 'name', 'Leatherhead Food Research'),
(7922, 6020, 'en', 'name', 'Sichuan Center for Disease Control and Prevention'),
(7923, 6020, 'zh', 'name', 'å››å·ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(7924, 6021, 'es', 'name', 'Instituto Nacional de Rehabilitación'),
(7925, 6021, 'en', 'name', 'National Institute of Rehabilitation'),
(7926, 6022, 'es', 'name', 'Instituto Nacional de Rehabilitación Psicofísica'),
(7927, 6023, 'es', 'name', 'Instituto Nacional de Salud'),
(7928, 6024, 'pt', 'name', 'Instituto Nacional de SaĆŗde'),
(7929, 6025, 'no_lang_code', 'name', 'Siemens (United States)'),
(7930, 6026, 'en', 'name', 'National Center for Biotechnology Information'),
(7931, 6027, 'en', 'name', 'National Center for Clinical Laboratories'),
(7932, 6028, 'en', 'name', 'Rocky Mountain MS Center'),
(7933, 6029, 'en', 'name', 'National Center for Environmental Assessment (EPA)'),
(7934, 6030, 'en', 'name', 'Hospital del Tórax'),
(7935, 6030, 'es', 'name', 'Instituto Nacional del Tórax'),
(7936, 6031, 'en', 'name', 'Leicester Royal Infirmary'),
(7937, 6032, 'en', 'name', 'National Center for Epidemiology'),
(7938, 6032, 'hu', 'name', 'OrszÔgos Epidemiológiai Központ'),
(7939, 6033, 'en', 'name', 'National Center for Genome Resources'),
(7940, 6034, 'en', 'name', 'Rollins College'),
(7941, 6035, 'no_lang_code', 'name', 'Ross Laboratories (United States)'),
(7942, 6036, 'en', 'name', 'National Center for Healthy Housing'),
(7943, 6037, 'en', 'name', 'National Center for Immunization and Respiratory Diseases'),
(7944, 6038, 'en', 'name', 'Sindh Institute of Urology and Transplantation'),
(7945, 6039, 'en', 'name', 'Israel Oceanographic and Limnological Research'),
(7946, 6040, 'en', 'name', 'National Center for Nanoscience and Technology'),
(7947, 6040, 'zh', 'name', 'å›½å®¶ēŗ³ē±³ē§‘å­¦äø­åæƒ'),
(7948, 6041, 'es', 'name', 'Centro Nacional de Investigaciones CientĆ­ficas'),
(7949, 6042, 'en', 'name', 'Singapore National Eye Center'),
(7950, 6043, 'en', 'name', 'National Center of Infectious and Parasitic Diseases'),
(7951, 6043, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½ŠøŃŃ‚ Ń†ŠµŠ½Ń‚ŃŠŃ€ по заразни Šø паразитни болести'),
(7952, 6044, 'en', 'name', 'Valencian Infertility Institute'),
(7953, 6045, 'es', 'name', 'Instituto Valenciano de Investigaciones Agrarias'),
(7954, 6046, 'fr', 'name', 'Centre National de la MƩdecine et des Sciences des Sports'),
(7955, 6047, 'no_lang_code', 'name', 'Levin Group (United States)'),
(7956, 6048, 'en', 'name', 'Lexington Clinic'),
(7957, 6049, 'es', 'name', 'Instituto Zaldivar'),
(7958, 6050, 'en', 'name', 'Specialised Hospital for Active Treatment of Oncology'),
(7959, 6050, 'bg', 'name', 'Дпециализираната Болница за Активно лечение по ŠžŠ½ŠŗŠ¾Š»Š¾Š³ŠøŃ'),
(7960, 6051, 'en', 'name', 'National Cancer Center of Georgia'),
(7961, 6052, 'en', 'name', 'National Center on Institutions and Alternatives'),
(7962, 6053, 'en', 'name', 'Skin and Cancer Foundation'),
(7963, 6054, 'nl', 'name', 'Koninklijke Kentalis'),
(7964, 6054, 'en', 'name', 'Royal Dutch Kentalis'),
(7965, 6055, 'no_lang_code', 'name', 'KGL Skin Study Center'),
(7966, 6056, 'en', 'name', 'Roy Castle Lung Cancer Foundation'),
(7967, 6057, 'en', 'name', 'Royal Albert Edward Infirmary'),
(7968, 6058, 'en', 'name', 'Royal Berkshire NHS Foundation Trust'),
(7969, 6059, 'nl', 'name', 'Stichting Epilepsie Instellingen Nederland'),
(7970, 6060, 'en', 'name', 'National Centre for Research'),
(7971, 6061, 'en', 'name', 'PRA Health Sciences'),
(7972, 6062, 'en', 'name', 'Royal College of Surgeons of Edinburgh'),
(7973, 6063, 'en', 'name', 'Lincoln Land Community College'),
(7974, 6064, 'en', 'name', 'Insurance Institute for Highway Safety'),
(7975, 6065, 'en', 'name', 'Roessingh Research and Development'),
(7976, 6066, 'no_lang_code', 'name', 'LabCorp (United States)'),
(7977, 6067, 'en', 'name', 'Manchester Royal Infirmary'),
(7978, 6068, 'en', 'name', 'Royal Lancaster Infirmary'),
(7979, 6069, 'es', 'name', 'Centro Internacional de Restauración Neurológica'),
(7980, 6069, 'en', 'name', 'International Center of Neurologic Restoration'),
(7981, 6070, 'en', 'name', 'International Center for Research on Women'),
(7982, 6071, 'en', 'name', 'Moscow State University of Fine Chemical Technologies'),
(7983, 6071, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ тонких химических технологий имени М. Š’. Ломоносова'),
(7984, 6072, 'en', 'name', 'Centre for Life'),
(7985, 6073, 'en', 'name', 'National Dairy Research Institute'),
(7986, 6073, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤”ą„‡ą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(7987, 6074, 'en', 'name', 'Royal Victoria Infirmary'),
(7988, 6075, 'en', 'name', 'International Craniofacial Institute'),
(7989, 6076, 'no_lang_code', 'name', 'Royan Institute'),
(7990, 6077, 'en', 'name', 'International Crops Research Institute for the Semi-Arid Tropics'),
(7991, 6078, 'en', 'name', 'Lovelace Clinic Foundation Research'),
(7992, 6079, 'fr', 'name', 'Fondation de Rothschild'),
(7993, 6080, 'en', 'name', 'National Environmental Engineering Research Institute'),
(7994, 6081, 'en', 'name', 'National Evolutionary Synthesis Center'),
(7995, 6082, 'en', 'name', 'LRS Institute of Tuberculosis and Respiratory Diseases'),
(7996, 6083, 'fr', 'name', 'Institut International de Recherche sur les Politiques Alimentaires'),
(7997, 6083, 'es', 'name', 'Instituto Internacional de Investigación sobre Políticas Alimentarias'),
(7998, 6083, 'en', 'name', 'International Food Policy Research Institute'),
(7999, 6084, 'en', 'name', 'International Hearing Foundation'),
(8000, 6085, 'en', 'name', 'International Institute for Population Sciences'),
(8001, 6086, 'es', 'name', 'Sociedad EspaƱola de Cardiologƭa'),
(8002, 6087, 'en', 'name', 'Kennedy Center'),
(8003, 6088, 'en', 'name', 'International Institute of Anthropology'),
(8004, 6089, 'en', 'name', 'National Food Administration'),
(8005, 6090, 'pl', 'name', 'Instytut Zywnosci Zywienia'),
(8006, 6090, 'en', 'name', 'National Food and Nutrition Institute'),
(8007, 6091, 'en', 'name', 'Food Research Institute'),
(8008, 6091, 'ja', 'name', 'é£Ÿå“ē·åˆē ”ē©¶ę‰€'),
(8009, 6092, 'fr', 'name', 'Institut International d''Agriculture Tropicale'),
(8010, 6092, 'en', 'name', 'International Institute of Tropical Agriculture'),
(8011, 6093, 'en', 'name', 'International Water Management Institute'),
(8012, 6094, 'en', 'name', 'Lycoming College'),
(8013, 6095, 'en', 'name', 'Russell Sage College'),
(8014, 6096, 'en', 'name', 'International Laser Center'),
(8015, 6097, 'en', 'name', 'Lynchburg Family Medicine'),
(8016, 6098, 'en', 'name', 'South African Brain Research Institute'),
(8017, 6099, 'en', 'name', 'Lynn Health Science Institute'),
(8018, 6100, 'en', 'name', 'International Prevention Research Institute'),
(8019, 6101, 'en', 'name', 'National Geophysical Research Institute'),
(8020, 6101, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤­ą„‚ą¤­ą„Œą¤¤ą¤æą¤•ą„€ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(8021, 6101, 'te', 'name', 'ą°œą°¾ą°¤ą±€ą°Æ ą°­ą±‚ą°­ą±Œą°¤ą°æą°• పరిశోధనా ą°øą°‚ą°øą±ą°„'),
(8022, 6101, 'ml', 'name', 'ą“Øą“¾ą“·ą“£ąµ½ ą“œą“æą“Æąµ‹ą“«ą“æą“øą“æą“•ąµą“•ąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ,ą“¹ąµˆą“¦ą“°ą“¾ą“¬ą“¾ą“¦ąµ'),
(8023, 6102, 'en', 'name', 'Macedonian Academy of Sciences and Arts'),
(8024, 6103, 'no_lang_code', 'name', 'MagMutual (United States)'),
(8025, 6104, 'en', 'name', 'International Rice Research Institute'),
(8026, 6105, 'en', 'name', 'International Tomography Center'),
(8027, 6105, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ томографический центр Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(8028, 6106, 'en', 'name', 'American Foundation for Donation and Transplantation'),
(8029, 6107, 'en', 'name', 'Southcentral Foundation'),
(8030, 6108, 'no_lang_code', 'name', 'International Trypanotolerance Centre'),
(8031, 6109, 'en', 'name', 'Malawi-Liverpool-Wellcome Trust Clinical Research Programme'),
(8032, 6110, 'no_lang_code', 'name', 'South Australian Water Corporation'),
(8033, 6111, 'en', 'name', 'Southern California Orthopedic Institute'),
(8034, 6112, 'en', 'name', 'Iona College'),
(8035, 6113, 'en', 'name', 'Southern College of Optometry'),
(8036, 6114, 'en', 'name', 'Southern Colorado Clinic'),
(8037, 6115, 'it', 'name', 'Fondazione Istituto Neurologico Nazionale Casimiro Mondino'),
(8038, 6116, 'en', 'name', 'University of Saint Joseph'),
(8039, 6116, 'fr', 'name', 'UniversitƩ saint joseph'),
(8040, 6117, 'it', 'name', 'Centro Neurolesi Bonino Pulejo'),
(8041, 6118, 'en', 'name', 'National Institute of Genetic Engineering and Biotechnology'),
(8042, 6118, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł…Ł„ŁŠ Ł…Ł‡Ł†ŲÆŲ³ŁŠ Ś˜Ł†ŲŖŁŠŁƒ و زيست ŁŁ†Ų§ŁˆŲ±ŁŠ'),
(8043, 6119, 'en', 'name', 'Russian Academy of Natural Sciences'),
(8044, 6120, 'it', 'name', 'Istituto Nazionale per le Malattie Infettive Lazzaro Spallanzani'),
(8045, 6121, 'it', 'name', 'Policlinico San Matteo Fondazione'),
(8046, 6122, 'en', 'name', 'Marie Curie'),
(8047, 6123, 'en', 'name', 'Southern New England Rehabilitation Center'),
(8048, 6124, 'pt', 'name', 'Irmandade da Santa Casa de Misericórdia de São Paulo'),
(8049, 6125, 'en', 'name', 'Cardiff Royal Infirmary'),
(8050, 6126, 'en', 'name', 'National Institute for Pharmaceutical Research and Development'),
(8051, 6127, 'en', 'name', 'Southwest College of Naturopathic Medicine & Health Sciences'),
(8052, 6128, 'en', 'name', 'Salisbury NHS Foundation Trust'),
(8053, 6129, 'it', 'name', 'Istituto Scientifico Italiano Colonna Vertebrale'),
(8054, 6129, 'en', 'name', 'Italian Scientific Institute for the Spine'),
(8055, 6130, 'it', 'name', 'Istituti Ospitalieri di Cremona'),
(8056, 6131, 'it', 'name', 'Istituto di Tipizzazione Tissutale e Problemi della Dialisi'),
(8057, 6132, 'no_lang_code', 'name', 'Istituto De Angeli (Italy)'),
(8058, 6133, 'en', 'name', 'Spinal Diagnostics and Treatment Center'),
(8059, 6134, 'no_lang_code', 'name', 'DSM (United States)'),
(8060, 6135, 'it', 'name', 'Istituto Dermopatico dell''Immacolata'),
(8061, 6136, 'it', 'name', 'Azienda Ospedaliera San Camillo-Forlanini'),
(8062, 6137, 'en', 'name', 'Fleet Science Center'),
(8063, 6138, 'it', 'name', 'Istituto di Analisi dei Sistemi ed Informatica Antonio Ruberti'),
(8064, 6139, 'en', 'name', 'Sacred Space Foundation'),
(8065, 6140, 'en', 'name', 'Spine Institute of Louisiana'),
(8066, 6141, 'en', 'name', 'San Gallicano Hospital'),
(8067, 6142, 'en', 'name', 'National Institute for Viral Disease Control and Prevention'),
(8068, 6143, 'it', 'name', 'Istituto di Biomedicina e di Immunologia Molecolare Alberto Monroy'),
(8069, 6144, 'en', 'name', 'Institute of Molecular Genetics Luigi Luca Cavalli-Sforza'),
(8070, 6144, 'it', 'name', 'Istituto di Genetica Molecolare'),
(8071, 6145, 'no_lang_code', 'name', 'Novartis (Austria)'),
(8072, 6146, 'en', 'name', 'National Institute of Agricultural Science and Technology'),
(8073, 6147, 'en', 'name', 'Sri Jayadeva Institute of Cardiovascular Sciences and Research'),
(8074, 6148, 'en', 'name', 'Maulana Azad Institute of Dental Sciences'),
(8075, 6149, 'en', 'name', 'Sri Ramakrishna Institute of Paramedical Sciences'),
(8076, 6150, 'no_lang_code', 'name', 'Sri Gokulam Hospital'),
(8077, 6151, 'en', 'name', 'Max Grundig Hospital'),
(8078, 6151, 'de', 'name', 'Max Grundig Klinik'),
(8079, 6152, 'en', 'name', 'Max Planck Institute for Developmental Biology'),
(8080, 6152, 'de', 'name', 'Max-Planck-Institut für Entwicklungsbiologie'),
(8081, 6153, 'en', 'name', 'Epsom and St Helier University Hospitals NHS Trust'),
(8082, 6154, 'en', 'name', 'Ibaraki Prefectural Livestock Center'),
(8083, 6154, 'ja', 'name', 'ē•œē”£ć‚»ćƒ³ć‚æćƒ¼ļ¼čŒØåŸŽēœŒ'),
(8084, 6155, 'en', 'name', 'Max Planck Institute for Plant Breeding Research'),
(8085, 6155, 'de', 'name', 'Max-Planck-Institut für Pflanzenzüchtungsforschung'),
(8086, 6156, 'en', 'name', 'Max Planck Institute for Biological Cybernetics'),
(8087, 6156, 'de', 'name', 'Max-Planck-Institut für Biologische Kybernetik'),
(8088, 6157, 'en', 'name', 'Max Planck Institute for Biology of Ageing'),
(8089, 6157, 'de', 'name', 'Max-Planck-Institut für Biologie des Alterns'),
(8090, 6158, 'no_lang_code', 'name', 'Santen (Japan)'),
(8091, 6158, 'ja', 'name', 'å‚å¤©č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(8092, 6159, 'it', 'name', 'Istituto Giannina Gaslini'),
(8093, 6160, 'en', 'name', 'Max Planck Institute for Brain Research'),
(8094, 6160, 'de', 'name', 'Max-Planck-Institut für Hirnforschung'),
(8095, 6161, 'en', 'name', 'Max Planck Institute for Chemical Physics of Solids'),
(8096, 6161, 'de', 'name', 'Max-Planck-Institut für Chemische Physik Fester Stoffe'),
(8097, 6162, 'no_lang_code', 'name', 'Sapporo Holdings (Japan)'),
(8098, 6162, 'ja', 'name', 'ć‚µćƒƒćƒćƒ­ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(8099, 6163, 'en', 'name', 'National Institute of Ayurveda'),
(8100, 6163, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(8101, 6164, 'en', 'name', 'Sarah Cannon'),
(8102, 6165, 'en', 'name', 'Max Planck Institute for Dynamics and Self-Organization'),
(8103, 6165, 'de', 'name', 'Max-Planck-Institut für Dynamik und Selbstorganisation'),
(8104, 6166, 'en', 'name', 'Max Planck Institute for Evolutionary Anthropology'),
(8105, 6166, 'de', 'name', 'Max-Planck-Institut für Evolutionäre Anthropologie'),
(8106, 6167, 'en', 'name', 'National Institute of Biological Resources'),
(8107, 6168, 'no_lang_code', 'name', 'Sasaki Institute'),
(8108, 6168, 'ja', 'name', 'ä½ć€…ęœØē ”ē©¶ę‰€'),
(8109, 6169, 'en', 'name', 'Max Planck Institute for Human Cognitive and Brain Sciences'),
(8110, 6169, 'de', 'name', 'Max-Planck-Institut für Kognitions- und Neurowissenschaften'),
(8111, 6170, 'en', 'name', 'Saudi Center for Organ Transplantation'),
(8112, 6171, 'en', 'name', 'Max Planck Institute for Informatics'),
(8113, 6171, 'de', 'name', 'Max-Planck-Institut für Informatik'),
(8114, 6172, 'en', 'name', 'Max Planck Institute for Marine Microbiology'),
(8115, 6172, 'de', 'name', 'Max-Planck-Institut für Marine Mikrobiologie'),
(8116, 6173, 'no_lang_code', 'name', 'Malesci (Italy)'),
(8117, 6174, 'en', 'name', 'Max Planck Institute of Molecular Cell Biology and Genetics'),
(8118, 6174, 'de', 'name', 'Max-Planck-Institut für Molekulare Zellbiologie und Genetik'),
(8119, 6175, 'en', 'name', 'Max Planck Institute for Molecular Genetics'),
(8120, 6175, 'de', 'name', 'Max-Planck-Institut für Molekulare Genetik'),
(8121, 6176, 'it', 'name', 'Istituto Nazionale di Ricerca per gli Alimenti e la Nutrizione'),
(8122, 6177, 'it', 'name', 'Istituto Neurologico Mediterraneo'),
(8123, 6178, 'en', 'name', 'St Vincent''s Clinic'),
(8124, 6179, 'en', 'name', 'Max Planck Institute of Psychiatry'),
(8125, 6179, 'de', 'name', 'Max-Planck-Institut für Psychiatrie'),
(8126, 6180, 'en', 'name', 'Schizophrenia Research Foundation'),
(8127, 6181, 'en', 'name', 'National Institute for Mathematical Sciences'),
(8128, 6182, 'en', 'name', 'Candiolo Cancer Institute'),
(8129, 6182, 'fr', 'name', 'Istituto di Candiolo'),
(8130, 6183, 'en', 'name', 'Max Planck Institute for the History of Science'),
(8131, 6183, 'de', 'name', 'Max-Planck-Institut für Wissenschaftsgeschichte'),
(8132, 6184, 'it', 'name', 'IRCCS Policlinico San Donato'),
(8133, 6185, 'en', 'name', 'Max Planck Institute for the Physics of Complex Systems'),
(8134, 6185, 'de', 'name', 'Max-Planck-Institut für Physik Komplexer Systeme'),
(8135, 6186, 'en', 'name', 'Max Planck Institute for the Science of Light'),
(8136, 6186, 'de', 'name', 'Max-Planck-Institut für die Physik des Lichts'),
(8137, 6187, 'it', 'name', 'Istituto Scientifico Romagnolo per lo Studio e la Cura dei Tumori'),
(8138, 6188, 'en', 'name', 'Max Planck Institute of Colloids and Interfaces'),
(8139, 6188, 'de', 'name', 'Max-Planck-Institut für Kolloid- und Grenzflächenforschung'),
(8140, 6189, 'en', 'name', 'National Institute of Cholera and Enteric Diseases'),
(8141, 6190, 'sk', 'name', 'Onkologický Ústav Svätej Alžbety'),
(8142, 6191, 'en', 'name', 'National Center for Disease Control'),
(8143, 6191, 'mr', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą¤°ą„ą¤—ą¤œą¤Øą„ą¤Æ ą¤°ą„‹ą¤— ą¤Øą¤æą¤Æą¤‚ą¤¤ą„ą¤°ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(8144, 6192, 'de', 'name', 'Max-Born-Institut für Nichtlineare Optik und Kurzzeitspektroskopie'),
(8145, 6192, 'en', 'name', 'Max-Born-Institute for Nonlinear Optics and Short Pulse Spectroscopy'),
(8146, 6193, 'fr', 'name', 'Institut National de Criminalistique et de Criminologie'),
(8147, 6193, 'de', 'name', 'Nationaal Instituut voor Criminalistiek en Criminologie'),
(8148, 6194, 'en', 'name', 'Institute of Crop Science'),
(8149, 6194, 'ja', 'name', 'ę¬”äø–ä»£ä½œē‰©é–‹ē™ŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(8150, 6195, 'it', 'name', 'Istituto Zooprofilattico Sperimentale del Mezzogiorno'),
(8151, 6196, 'en', 'name', 'University of Health Sciences and Pharmacy'),
(8152, 6197, 'de', 'name', 'Max Planck Institut für Biologie'),
(8153, 6197, 'en', 'name', 'Max Planck Institute for Biology'),
(8154, 6198, 'it', 'name', 'Istituto Zooprofilattico Sperimentale dell''Umbria e delle Marche'),
(8155, 6199, 'en', 'name', 'St. Louis Testing Laboratories'),
(8156, 6200, 'en', 'name', 'St. Luke''s Cataract and Laser Institute'),
(8157, 6201, 'it', 'name', 'Istituto Zooprofilattico Sperimentale della Sardegna'),
(8158, 6202, 'en', 'name', 'National Institute of Epidemiology'),
(8159, 6203, 'en', 'name', 'National Institute of Fitness and Sports in Kanoya'),
(8160, 6203, 'ja', 'name', '鹿屋体育大学'),
(8161, 6204, 'en', 'name', 'National Institute for Food and Nutrition Science'),
(8162, 6205, 'de', 'name', 'StƤdtisches Klinikum Karlsruhe'),
(8163, 6206, 'en', 'name', 'Munich Municipal Hospital Group'),
(8164, 6206, 'de', 'name', 'München Klinik'),
(8165, 6207, 'en', 'name', 'National Institute Of Hygiene And Epidemiology'),
(8166, 6207, 'vi', 'name', 'Viện Vệ sinh dịch tį»… Trung ʰʔng'),
(8167, 6208, 'en', 'name', 'Institute of Livestock and Grassland Science'),
(8168, 6208, 'ja', 'name', 'ē•œē”£ē ”ē©¶éƒØé–€'),
(8169, 6209, 'fr', 'name', 'Institut National de Neurologie Mongi-Ben Hamida'),
(8170, 6209, 'en', 'name', 'National Institute of Neurology Mongi-Ben Hamida'),
(8171, 6210, 'en', 'name', 'National Institute of Clinical Neurosciences'),
(8172, 6210, 'hu', 'name', 'OrszƔgos IdegsebƩszeti TudomƔnyos IntƩzet'),
(8173, 6211, 'en', 'name', 'National Institute of Nutrition'),
(8174, 6211, 'vi', 'name', 'Viện Dinh DưỔng Quốc Gia'),
(8175, 6212, 'en', 'name', 'Beijing Proteome Research Center'),
(8176, 6213, 'en', 'name', 'National Institute of Oceanography and Fisheries'),
(8177, 6214, 'en', 'name', 'KentuckyOne Health'),
(8178, 6215, 'en', 'name', 'National Institute of Oncology'),
(8179, 6216, 'no_lang_code', 'name', 'Janssen (Belgium)'),
(8180, 6217, 'fr', 'name', 'Institut National d''Oncologie'),
(8181, 6218, 'no_lang_code', 'name', 'Johnson & Johnson (Germany)'),
(8182, 6219, 'hu', 'name', 'OrszÔgos PszichiÔtriai és Neurológiai Intézet'),
(8183, 6220, 'no_lang_code', 'name', 'State Volunteer Mutual Insurance (United States)'),
(8184, 6221, 'it', 'name', 'Istituto Ortopedico Gaetano Pini'),
(8185, 6222, 'en', 'name', 'Japan Women''s College of Physical Education'),
(8186, 6222, 'ja', 'name', 'ę—„ęœ¬å„³å­ä½“č‚²å¤§å­¦'),
(8187, 6223, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(8188, 6223, 'hi', 'name', 'ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤«ą¤¾ą¤°ą„ą¤®ą¤¾ą¤øą„ą¤Æą„‚ą¤Ÿą¤æą¤•ą¤² ą¤ą¤œą„ą¤•ą„‡ą¤¶ą¤Ø ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š'),
(8189, 6223, 'te', 'name', 'ą°Øą±‡ą°·ą°Øą°²ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°«ą°¾ą°°ą±ą°®ą°øą±ą°Æą±‚ą°Ÿą°æą°•ą°²ą± ą°Žą°”ą±ą°Æą±ą°•ą±‡ą°·ą°Øą±'),
(8190, 6224, 'en', 'name', 'National Institute of Plant Genome Research'),
(8191, 6225, 'en', 'name', 'National Institute of Dental and Craniofacial Research'),
(8192, 6226, 'it', 'name', 'Figli Adottivi e Genitori Naturali'),
(8193, 6227, 'en', 'name', 'Jawaharlal Nehru Centre for Advanced Scientific Research'),
(8194, 6228, 'en', 'name', 'Myers-JDC-Brookdale Institute'),
(8195, 6229, 'en', 'name', 'National Institute of Malaria Research'),
(8196, 6229, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą¤²ą„‡ą¤°ą¤æą¤Æą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(8197, 6230, 'hu', 'name', 'OrszÔgos Reumatológiai és FizioterÔpiÔs Intézet'),
(8198, 6231, 'en', 'name', 'Steadman Clinic'),
(8199, 6232, 'en', 'name', 'Steadman Philippon Research Institute'),
(8200, 6233, 'en', 'name', 'Christus Health'),
(8201, 6234, 'en', 'name', 'Mendez National Institute of Transplantation'),
(8202, 6235, 'no_lang_code', 'name', 'Steris (United States)'),
(8203, 6236, 'en', 'name', 'Mediterranean Agronomic Institute of Chania'),
(8204, 6237, 'no_lang_code', 'name', 'Sterling Research Group (United States)'),
(8205, 6238, 'en', 'name', 'CGH Medical Center'),
(8206, 6239, 'en', 'name', 'Johnson County Community College'),
(8207, 6240, 'no_lang_code', 'name', 'Medtronic (Netherlands)'),
(8208, 6241, 'en', 'name', 'Meiho University'),
(8209, 6242, 'en', 'name', 'National Institute of Veterinary Research'),
(8210, 6243, 'en', 'name', 'Joint Center for Structural Genomics'),
(8211, 6244, 'en', 'name', 'San Francisco Center for Psychoanalysis'),
(8212, 6245, 'nl', 'name', 'Sticares InterACT'),
(8213, 6246, 'no_lang_code', 'name', 'Meiji (Japan)'),
(8214, 6246, 'ja', 'name', 'ę˜Žę²»'),
(8215, 6247, 'en', 'name', 'International Centers for Excellence in Research'),
(8216, 6248, 'en', 'name', 'National Kidney and Transplant Institute'),
(8217, 6249, 'en', 'name', 'National Kidney Foundation'),
(8218, 6250, 'hu', 'name', 'OrszÔgos KorÔnyi Tbc és Pulmonológiai Intézet'),
(8219, 6251, 'it', 'name', 'Istituto Nazionale Biostrutture e Biosistemi'),
(8220, 6252, 'en', 'name', 'National Marine Mammal Foundation'),
(8221, 6253, 'en', 'name', 'National Metallurgical Laboratory'),
(8222, 6254, 'en', 'name', 'National Perinatal Information Center'),
(8223, 6255, 'en', 'name', 'Sunderland Eye Infirmary'),
(8224, 6256, 'no_lang_code', 'name', 'Sunstar (Japan)'),
(8225, 6256, 'ja', 'name', 'ć‚µćƒ³ć‚¹ć‚æćƒ¼'),
(8226, 6257, 'en', 'name', 'National Rehabilitation Center'),
(8227, 6257, 'ko', 'name', 'źµ­ė¦½ģž¬ķ™œģ›'),
(8228, 6258, 'en', 'name', 'Kanagawa Cardiovascular and Respiratory Center'),
(8229, 6258, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹å¾Ŗē’°å™Øå‘¼åøå™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(8230, 6259, 'no_lang_code', 'name', 'Trinity Investments (Japan)'),
(8231, 6260, 'no_lang_code', 'name', 'Suraj Eye Institute'),
(8232, 6261, 'en', 'name', 'Memphis Fire Services'),
(8233, 6262, 'pt', 'name', 'Secretaria da SaĆŗde'),
(8234, 6263, 'en', 'name', 'Surgical Materials Testing Laboratory'),
(8235, 6264, 'en', 'name', 'Surrey Place Centre'),
(8236, 6265, 'en', 'name', 'Scripps Health'),
(8237, 6266, 'no_lang_code', 'name', 'Swami Vivekananda Yoga Anusandhana Samsthana'),
(8238, 6267, 'en', 'name', 'Menorah Park Center for Senior Living'),
(8239, 6268, 'en', 'name', 'Institute of Evolutionary Physiology and Biochemistry'),
(8240, 6268, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ²Š¾Š»ŃŽŃ†ŠøŠ¾Š½Š½Š¾Š¹ физиологии Šø биохимии им. И.М. Деченова Российской акаГемии наук'),
(8241, 6269, 'de', 'name', 'Katholisches Klinikum Koblenz'),
(8242, 6270, 'no_lang_code', 'name', 'Kirin (Japan)'),
(8243, 6270, 'ja', 'name', 'ć‚­ćƒŖćƒ³ę Ŗå¼ä¼šē¤¾'),
(8244, 6271, 'en', 'name', 'Kazan Institute of Biochemistry and Biophysics'),
(8245, 6271, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Казанский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø биофизики Казанского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(8246, 6272, 'pt', 'name', 'Secretaria Municipal de SaĆŗde'),
(8247, 6273, 'en', 'name', 'Kelsey-Seybold Clinic'),
(8248, 6274, 'es', 'name', 'Centro Espacial John F. Kennedy'),
(8249, 6274, 'en', 'name', 'Kennedy Space Center'),
(8250, 6275, 'en', 'name', 'Segawa Neurological Clinic for Children'),
(8251, 6275, 'ja', 'name', 'å­ä¾›ć®ćŸć‚ć®ē€¬å·ē„žēµŒå­¦ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(8252, 6276, 'en', 'name', 'National Research Institute of Chinese Medicine'),
(8253, 6276, 'zh', 'name', 'åœ‹ē«‹äø­åœ‹é†«č—„ē ”ē©¶ę‰€'),
(8254, 6277, 'en', 'name', 'Kenya Agricultural Research Institute'),
(8255, 6278, 'it', 'name', 'Semeion Centro Ricerche di Scienze della Comunicazione'),
(8256, 6279, 'en', 'name', 'State Research Center of Virology and Biotechnology VECTOR'),
(8257, 6279, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø Šø биотехнологии Вектор'),
(8258, 6280, 'no_lang_code', 'name', 'Sunovion (United States)'),
(8259, 6281, 'en', 'name', 'Merrimack College'),
(8260, 6282, 'en', 'name', 'Cedars-Sinai Kerlan-Jobe Institute'),
(8261, 6283, 'en', 'name', 'Kessler Foundation'),
(8262, 6284, 'fr', 'name', 'Centre Hospitalier RƩgional de Huy'),
(8263, 6285, 'en', 'name', 'Methodist Rehabilitation Center'),
(8264, 6286, 'en', 'name', 'National Suicide Research Foundation'),
(8265, 6287, 'en', 'name', 'Swiss Paraplegic Center'),
(8266, 6288, 'en', 'name', 'Swiss Paraplegic Research'),
(8267, 6289, 'fr', 'name', 'Fondation pour la SƩcuritƩ des Patients'),
(8268, 6289, 'de', 'name', 'Stiftung Patientensicherheit Schweiz'),
(8269, 6290, 'en', 'name', 'National Taichung University of Science and Technology'),
(8270, 6291, 'en', 'name', 'Kidwai Memorial Institute of Oncology'),
(8271, 6292, 'no_lang_code', 'name', 'Kikkoman (Japan)'),
(8272, 6292, 'ja', 'name', 'ć‚­ćƒƒć‚³ćƒ¼ćƒžćƒ³ę Ŗå¼ä¼šē¤¾'),
(8273, 6293, 'en', 'name', 'National Tuberculosis Institute'),
(8274, 6294, 'no_lang_code', 'name', 'Medpace (United States)'),
(8275, 6295, 'en', 'name', 'Methodist Sports Medicine'),
(8276, 6296, 'en', 'name', 'Miami Hand Center'),
(8277, 6297, 'en', 'name', 'National Vaccine and Serum Institute'),
(8278, 6298, 'en', 'name', 'Chris O’Brien Lifehouse'),
(8279, 6299, 'en', 'name', 'King''s College - Pennsylvania'),
(8280, 6300, 'en', 'name', 'Ministry of Agriculture, Forestry and Fisheries'),
(8281, 6300, 'ja', 'name', 'č¾²ęž—ę°“ē”£ēœ'),
(8282, 6301, 'en', 'name', 'Michigan Ear Institute'),
(8283, 6302, 'en', 'name', 'Michigan Headache and Neurological Institute'),
(8284, 6303, 'en', 'name', 'Scripps Clinic'),
(8285, 6304, 'no_lang_code', 'name', 'Lundbeck (United States)'),
(8286, 6305, 'en', 'name', 'Michigan Psychoanalytic Institute'),
(8287, 6306, 'de', 'name', 'Klinikum Aschaffenburg'),
(8288, 6307, 'en', 'name', 'University Hospital Augsburg'),
(8289, 6307, 'de', 'name', 'UniversitƤtsklinikum Augsburg'),
(8290, 6308, 'no_lang_code', 'name', 'BioReliance (United States)'),
(8291, 6309, 'en', 'name', 'National Veterinary Research and Quarantine Service'),
(8292, 6310, 'de', 'name', 'Klinikum Bremen-Mitte'),
(8293, 6311, 'en', 'name', 'Syrian Center for Tobacco Studies'),
(8294, 6312, 'no_lang_code', 'name', 'Novosibirsk Institute of Organic Chemistry'),
(8295, 6312, 'ru', 'name', 'Š˜ŃŃ‚Š¾Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń справка ŠŠ˜ŠžŠ„'),
(8296, 6313, 'no_lang_code', 'name', 'NTT (Japan)'),
(8297, 6313, 'ja', 'name', 'ę—„ęœ¬é›»äæ”é›»č©±ę Ŗå¼ä¼šē¤¾'),
(8298, 6314, 'en', 'name', 'Tabba Heart Institute'),
(8299, 6315, 'en', 'name', 'Midwest Cardiovascular Research Foundation'),
(8300, 6316, 'en', 'name', 'Tacoma/Valley Radiation Oncology Centers'),
(8301, 6317, 'en', 'name', 'Nutrition Foundation of India'),
(8302, 6318, 'en', 'name', 'Midwest Eye Institute'),
(8303, 6319, 'no_lang_code', 'name', 'Taiho Pharmaceutical (Japan)'),
(8304, 6319, 'ja', 'name', '大鵬薬品巄愭'),
(8305, 6320, 'de', 'name', 'Klinikum Leverkusen'),
(8306, 6321, 'en', 'name', 'Midwest Orthopaedic Research Foundation'),
(8307, 6322, 'de', 'name', 'Klinikum Ludwigsburg'),
(8308, 6323, 'de', 'name', 'Isar-Amper-Klinikum München-Ost'),
(8309, 6324, 'de', 'name', 'Klinikum Nürnberg'),
(8310, 6324, 'en', 'name', 'Nuremberg Hospital'),
(8311, 6325, 'no_lang_code', 'name', 'Taisho Pharmaceutical (Japan)'),
(8312, 6325, 'ja', 'name', '大正製薬'),
(8313, 6326, 'de', 'name', 'Sana Klinikum Offenbach'),
(8314, 6327, 'de', 'name', 'Klinikum Oldenburg'),
(8315, 6328, 'de', 'name', 'Klinikum Saarbrücken'),
(8316, 6329, 'en', 'name', 'Military Institute of Hygiene and Epidemiology'),
(8317, 6329, 'pl', 'name', 'Wojskowy Instytut Higieny i Epidemiologii'),
(8318, 6330, 'de', 'name', 'Klinikum Stuttgart'),
(8319, 6331, 'it', 'name', 'Oasi Maria SS'),
(8320, 6332, 'en', 'name', 'Tallahassee Community College'),
(8321, 6333, 'en', 'name', 'Millennium Pain Center'),
(8322, 6334, 'en', 'name', 'Tampa Bay Research Institute'),
(8323, 6335, 'no_lang_code', 'name', 'Takeda (United States)'),
(8324, 6335, 'en', 'name', 'ę­¦ē”°č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾, Takeda Yakuhin Kōgyō kabushiki gaisha'),
(8325, 6336, 'no_lang_code', 'name', 'Ocular Surface Center'),
(8326, 6337, 'en', 'name', 'Institute of Plant Physiology and Genetics'),
(8327, 6337, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Ń„ŠøŠ·ŠøŠ¾Š»Š¾Š³ŠøŃ на Ń€Š°ŃŃ‚ŠµŠ½ŠøŃŃ‚Š° Šø генетика'),
(8328, 6338, 'en', 'name', 'Nazareth College'),
(8329, 6339, 'en', 'name', 'Tanabe Research Laboratories'),
(8330, 6340, 'no_lang_code', 'name', 'Minamiaoyama Eye Clinic'),
(8331, 6340, 'ja', 'name', 'å—é’å±±ć‚¢ć‚¤ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(8332, 6341, 'no_lang_code', 'name', 'NEC (United States)'),
(8333, 6341, 'en', 'name', 'NEC Corporation of America'),
(8334, 6342, 'es', 'name', 'Ministerio de Salud'),
(8335, 6343, 'en', 'name', 'Tanzania Food and Nutrition Center'),
(8336, 6344, 'en', 'name', 'Taos Orthopaedic Institute'),
(8337, 6345, 'en', 'name', 'Ohlone College'),
(8338, 6346, 'en', 'name', 'Energy and Resources Institute'),
(8339, 6346, 'ta', 'name', 'ą®†ą®±ąÆą®±ą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®³ą®™ąÆą®•ą®³ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(8340, 6347, 'en', 'name', 'Institute of Genetics and Biophysics'),
(8341, 6347, 'it', 'name', 'Istituto di Genetica e Biofisica'),
(8342, 6348, 'en', 'name', 'Oklahoma Foundation for Digestive Research'),
(8343, 6349, 'en', 'name', 'Olympic Park Sports Medicine Centre'),
(8344, 6350, 'en', 'name', 'Onassis Cardiac Surgery Center'),
(8345, 6350, 'el', 'name', 'Ī©ĪĪ‘Ī£Ī•Ī™ĪŸ ĪšĪ‘Ī”Ī”Ī™ĪŸĪ§Ī•Ī™Ī”ĪŸĪ„Ī”Ī“Ī™ĪšĪŸ ĪšĪ•ĪĪ¤Ī”ĪŸ'),
(8346, 6351, 'pt', 'name', 'Prefeitura da Cidade do Rio de Janeiro'),
(8347, 6352, 'en', 'name', 'All-China Sports Federation'),
(8348, 6353, 'en', 'name', 'Nemours Children''s Clinic'),
(8349, 6354, 'no_lang_code', 'name', 'Teijin (Japan)'),
(8350, 6354, 'ja', 'name', 'åøäŗŗę Ŗå¼ä¼šē¤¾'),
(8351, 6355, 'en', 'name', 'Ministry of Agriculture, Food and Rural Affairs'),
(8352, 6355, 'fr', 'name', 'MinistĆØre de l''Agriculture, de l''Alimenntation et des Affaires Rurales'),
(8353, 6356, 'fr', 'name', 'MinistĆØre du Travail'),
(8354, 6356, 'en', 'name', 'Ontario Ministry of Labour'),
(8355, 6357, 'no_lang_code', 'name', 'Tengion (United States)'),
(8356, 6358, 'en', 'name', 'Ontario Tobacco Research Unit'),
(8357, 6358, 'fr', 'name', 'Unite de Recherche sur le Tabac de L''Ontario'),
(8358, 6359, 'no_lang_code', 'name', 'Operational Technologies Corporation (United States)'),
(8359, 6360, 'en', 'name', 'Orange County Heart Institute and Research Center'),
(8360, 6361, 'en', 'name', 'Orange County Research Center'),
(8361, 6362, 'en', 'name', 'Terasaki Foundation'),
(8362, 6363, 'en', 'name', 'Mahatma Gandhi Kashi Vidyapith'),
(8363, 6363, 'hi', 'name', 'ą¤®ą¤¹ą¤¾ą¤¤ą„ą¤®ą¤¾ ą¤—ą¤¾ą¤ą¤§ą„€ ą¤•ą¤¾ą¤¶ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(8364, 6363, 'ta', 'name', 'ą®®ą®•ą®¾ą®¤ąÆą®®ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ ą®•ą®¾ą®šą®æ ą®µą®æą®¤ąÆą®Æą®¾ą®ŖąÆ€ą®Ÿą®®ąÆ'),
(8365, 6364, 'it', 'name', 'Ministero degli Affari Esteri'),
(8366, 6364, 'en', 'name', 'Ministry of Foreign Affairs and International Cooperation'),
(8367, 6365, 'en', 'name', 'Ministry of Justice'),
(8368, 6366, 'tr', 'name', 'Adalet Bakanlığı'),
(8369, 6366, 'en', 'name', 'Ministry of Justice'),
(8370, 6367, 'no_lang_code', 'name', 'Organisation de Coordination pour la lutte contre les EndƩmies en Afrique Centrale'),
(8371, 6368, 'en', 'name', 'Ministry of Justice'),
(8372, 6368, 'ja', 'name', 'ę³•å‹™ēœ'),
(8373, 6369, 'en', 'name', 'Ministry of Manpower'),
(8374, 6369, 'zh', 'name', 'ę–°åŠ å”äŗŗåŠ›éƒØ'),
(8375, 6370, 'no_lang_code', 'name', 'Organix (United States)'),
(8376, 6371, 'en', 'name', 'National Transplant Organization'),
(8377, 6371, 'es', 'name', 'Organización Nacional de Trasplantes'),
(8378, 6372, 'nl', 'name', 'Nederlands Forensisch Instituut'),
(8379, 6372, 'en', 'name', 'Netherlands Forensic Institute'),
(8380, 6373, 'en', 'name', 'Texas Endosurgery Institute'),
(8381, 6374, 'en', 'name', 'Ministry of Social Affairs and Social Services'),
(8382, 6374, 'he', 'name', '×ž×©×Ø×“ הרווחה ×•×”×©×™×Ø×•×Ŗ×™× ×”×—×‘×Ø×Ŗ×™×™×ā€Ž'),
(8383, 6375, 'en', 'name', 'Ministry of the Environment and Water Resources'),
(8384, 6375, 'zh', 'name', 'ę–°åŠ å”ēŽÆå¢ƒåŠę°“ęŗéƒØ'),
(8385, 6376, 'en', 'name', 'Associated Skin Care Specialists'),
(8386, 6377, 'en', 'name', 'Mississippi Sports Medicine and Orthopaedic Center'),
(8387, 6378, 'en', 'name', 'Missouri Bone and Joint Center'),
(8388, 6379, 'en', 'name', 'Texas Nerve and Paralysis Institute'),
(8389, 6380, 'en', 'name', 'Netherlands Institute for Innovative Ocular Surgery'),
(8390, 6381, 'en', 'name', 'Ono Clinic'),
(8391, 6381, 'ja', 'name', 'å°é‡Žć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(8392, 6382, 'en', 'name', 'Methodist Healthcare'),
(8393, 6383, 'en', 'name', 'Orthopaedic Research of Virginia'),
(8394, 6384, 'en', 'name', 'Thai Red Cross Society'),
(8395, 6385, 'en', 'name', 'Orthopedic Foot & Ankle Center'),
(8396, 6386, 'en', 'name', 'Miyagi Prefectural Hospital Organization'),
(8397, 6386, 'ja', 'name', 'å®®åŸŽēœŒē«‹ē—…é™¢ę©Ÿę§‹'),
(8398, 6387, 'en', 'name', 'Osborne Head and Neck Institute'),
(8399, 6388, 'en', 'name', 'Thames Valley Children''s Centre'),
(8400, 6389, 'en', 'name', 'Ottawa Regional Cancer Foundation'),
(8401, 6390, 'no_lang_code', 'name', 'Danaher (United States)'),
(8402, 6391, 'en', 'name', 'Molecular Research Institute'),
(8403, 6392, 'no_lang_code', 'name', 'Orion Corporation (Finland)'),
(8404, 6392, 'fi', 'name', 'Orion Oyj'),
(8405, 6393, 'en', 'name', 'Carter Center'),
(8406, 6394, 'en', 'name', 'Western Maine Health'),
(8407, 6395, 'en', 'name', 'Oxford Centre for Computational Neuroscience'),
(8408, 6396, 'en', 'name', 'Pain Management Center of Paducah'),
(8409, 6397, 'en', 'name', 'Nuclear Threat Initiative'),
(8410, 6398, 'no_lang_code', 'name', 'Pall Corporation (United States)'),
(8411, 6399, 'en', 'name', 'All Africa Leprosy Tuberculosis and Rehabilitation Training Centre'),
(8412, 6400, 'en', 'name', 'Neuropsychiatric Research Institute'),
(8413, 6401, 'en', 'name', 'Collaborative Research Group'),
(8414, 6402, 'en', 'name', 'Palladin Institute of Biochemistry'),
(8415, 6402, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біохімії ім Šž.Š’ ŠŸŠ°Š»Š»Š°Š“Ń–Š½Š°'),
(8416, 6403, 'en', 'name', 'Headache & Pain Center of Palm Beach'),
(8417, 6404, 'no_lang_code', 'name', 'Morinaga Institute of Biological Science'),
(8418, 6405, 'no_lang_code', 'name', 'Morinaga (Japan)'),
(8419, 6405, 'ja', 'name', 'ę£®ę°øč£½č“ę Ŗå¼ä¼šē¤¾'),
(8420, 6406, 'en', 'name', 'Emory Clinic'),
(8421, 6407, 'en', 'name', 'National Center for HIV/AIDS Viral Hepatitis STD and TB Prevention'),
(8422, 6408, 'en', 'name', 'New England Center for Children'),
(8423, 6409, 'en', 'name', 'Australia and New Zealand Dialysis and Transplant Registry'),
(8424, 6410, 'en', 'name', 'New England College of Optometry'),
(8425, 6411, 'en', 'name', 'New England Complex Systems Institute'),
(8426, 6412, 'en', 'name', 'Mount Carmel College of Nursing'),
(8427, 6413, 'en', 'name', 'Franciscan Hammond Clinic'),
(8428, 6414, 'en', 'name', 'Mount Mercy University'),
(8429, 6415, 'en', 'name', 'New Mexico Clinical Research & Osteoporosis Center'),
(8430, 6416, 'it', 'name', 'Azienda di Rilievo Nazionale ed Alta Specializzazione'),
(8431, 6417, 'en', 'name', 'New York Psychoanalytic Society and Institute'),
(8432, 6418, 'en', 'name', 'New Zealand College of Chiropractic'),
(8433, 6419, 'no_lang_code', 'name', 'Fonterra (New Zealand)'),
(8434, 6420, 'en', 'name', 'Jean Hailes'),
(8435, 6421, 'en', 'name', 'Newcastle upon Tyne Hospitals NHS Foundation Trust'),
(8436, 6422, 'no_lang_code', 'name', 'LI-COR Biosciences (United States)'),
(8437, 6423, 'no_lang_code', 'name', 'Pharis Biotec (Germany)'),
(8438, 6424, 'en', 'name', 'Moredun Foundation'),
(8439, 6425, 'no_lang_code', 'name', 'Mitre (United States)'),
(8440, 6426, 'en', 'name', 'Molecular Cardiology and Neuromuscular Institute'),
(8441, 6427, 'en', 'name', 'Museum of Man'),
(8442, 6427, 'fr', 'name', 'MusƩe de l''Homme'),
(8443, 6428, 'no_lang_code', 'name', 'Amgen (Germany)'),
(8444, 6429, 'en', 'name', 'EngenderHealth'),
(8445, 6430, 'en', 'name', 'Micro and Nanotechnology Innovation Centre'),
(8446, 6431, 'en', 'name', 'Neuroscience Education Institute'),
(8447, 6432, 'nl', 'name', 'AZ Klina'),
(8448, 6433, 'nl', 'name', 'AZ Maria Middelares'),
(8449, 6434, 'nl', 'name', 'AZ Sint-Blasius'),
(8450, 6435, 'fr', 'name', 'Laboratoire d''Enzymologie et Biochimie Structurales'),
(8451, 6436, 'en', 'name', 'European Society for Medical Oncology'),
(8452, 6437, 'no_lang_code', 'name', 'McGuireWoods'),
(8453, 6438, 'fr', 'name', 'Laboratoire National Henri Becquerel'),
(8454, 6439, 'no_lang_code', 'name', 'INC Research (United States)'),
(8455, 6440, 'en', 'name', 'Oregon Clinic'),
(8456, 6441, 'en', 'name', 'Orthopaedic Center'),
(8457, 6442, 'en', 'name', 'Parkinson''s Institute and Clinical Center'),
(8458, 6443, 'no_lang_code', 'name', 'Behringwerke (Germany)'),
(8459, 6444, 'no_lang_code', 'name', 'General Electric (Sweden)'),
(8460, 6445, 'no_lang_code', 'name', 'Munich Leukemia Laboratory (Germany)'),
(8461, 6445, 'de', 'name', 'Münchner Leukämielabor'),
(8462, 6446, 'no_lang_code', 'name', 'Biotest (Germany)'),
(8463, 6447, 'en', 'name', 'Bangladesh Institute of Research and Rehabilitation for Diabetes Endocrine and Metabolic Disorders'),
(8464, 6447, 'bn', 'name', 'বারঔেম'),
(8465, 6448, 'no_lang_code', 'name', 'Nissan Chemical Corporation (Japan)'),
(8466, 6448, 'ja', 'name', 'ę—„ē”£åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(8467, 6449, 'fr', 'name', 'Banque Populaire'),
(8468, 6450, 'en', 'name', 'North Carolina Institute of Medicine'),
(8469, 6451, 'no_lang_code', 'name', 'Springer Nature (New Zealand)'),
(8470, 6452, 'en', 'name', 'Regional Medical Research Centre'),
(8471, 6452, 'as', 'name', 'ą¦†ą¦žą§ą¦šą¦²ą¦æą¦• ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ গৱেষণা ą¦•ą§‡ą¦Øą§ą¦¦ą§ą§°, ą¦”ą¦æą¦¬ą§ą§°ą§ą¦—ą¦”ą¦¼'),
(8472, 6453, 'sv', 'name', 'Norra Ƅlvsborgs LƤnssjukhus'),
(8473, 6453, 'en', 'name', 'Northern Ƅlvsborg county hospital'),
(8474, 6454, 'en', 'name', 'Taste and Smell Clinic'),
(8475, 6455, 'en', 'name', 'North Riding Infirmary'),
(8476, 6456, 'fr', 'name', 'Château Gombert'),
(8477, 6457, 'en', 'name', 'National Minority AIDS Council'),
(8478, 6458, 'en', 'name', 'Leibniz Institute DSMZ – German Collection of Microorganisms and Cell Cultures'),
(8479, 6458, 'de', 'name', 'Leibniz-Institut DSMZ-Deutsche Sammlung von Mikroorganismen und Zellkulturen'),
(8480, 6459, 'no_lang_code', 'name', 'Walker (United States)'),
(8481, 6460, 'it', 'name', 'Cassa di Risparmio in Bologna'),
(8482, 6461, 'en', 'name', 'National Institute on Alcohol Abuse and Alcoholism'),
(8483, 6462, 'en', 'name', 'National Institute of Arthritis and Musculoskeletal and Skin Diseases'),
(8484, 6463, 'en', 'name', 'Institute of Radiation Protection and Dosimetry'),
(8485, 6463, 'pt', 'name', 'Instituto de Radioproteção e Dosimetria'),
(8486, 6464, 'en', 'name', 'Eunice Kennedy Shriver National Institute of Child Health and Human Development'),
(8487, 6465, 'en', 'name', 'National Institute on Drug Abuse'),
(8488, 6466, 'en', 'name', 'Canadian Breast Cancer Network'),
(8489, 6467, 'en', 'name', 'Thompson Cancer Survival Center'),
(8490, 6468, 'en', 'name', 'Pacific Medical Research Foundation'),
(8491, 6469, 'en', 'name', 'Nordland Hospital Trust'),
(8492, 6469, 'no', 'name', 'Nordlandssykehuset'),
(8493, 6470, 'en', 'name', 'National Sanitation Foundation International'),
(8494, 6471, 'en', 'name', 'Northwest Clinical Research Center'),
(8495, 6472, 'no_lang_code', 'name', 'GlaxoSmithKline (Germany)'),
(8496, 6473, 'en', 'name', 'Gerald P. Murphy Cancer Foundation'),
(8497, 6474, 'en', 'name', 'Tilganga Institute of Ophthalmology'),
(8498, 6474, 'ne', 'name', 'तिलगंगा ą¤†ą¤ą¤–ą¤¾ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(8499, 6475, 'no_lang_code', 'name', 'PAREXEL International (France)'),
(8500, 6476, 'en', 'name', 'Pakistan Institute of Nuclear Science and Technology'),
(8501, 6477, 'no_lang_code', 'name', 'Takeda (Norway)'),
(8502, 6478, 'en', 'name', 'Australian Red Cross Lifeblood'),
(8503, 6479, 'en', 'name', 'Norton Healthcare'),
(8504, 6480, 'no_lang_code', 'name', 'Immune Response BioPharma (United States)'),
(8505, 6481, 'cs', 'name', 'OcnĆ­ klinika'),
(8506, 6482, 'en', 'name', 'TiFN'),
(8507, 6483, 'no_lang_code', 'name', 'FTSE (Japan)'),
(8508, 6484, 'sk', 'name', 'OcnĆ” klinika'),
(8509, 6485, 'en', 'name', 'Norwich Research Park'),
(8510, 6486, 'fr', 'name', 'Centre d''Exploration et de Recherche MƩdicale par Emission de Positons'),
(8511, 6487, 'no_lang_code', 'name', 'Syngenta (United States)'),
(8512, 6488, 'fr', 'name', 'Groupe Hospitalier Intercommunal Le Raincy Montfermeil'),
(8513, 6489, 'fr', 'name', 'Fondation de recherches sur les blessures de la route'),
(8514, 6489, 'en', 'name', 'Traffic Injury Research Foundation'),
(8515, 6490, 'no_lang_code', 'name', 'Pfizer (Sweden)'),
(8516, 6491, 'no_lang_code', 'name', 'Xerox (United States)'),
(8517, 6492, 'en', 'name', 'Pankey Institute'),
(8518, 6493, 'fr', 'name', 'Centre Hospitalier Le Vinatier'),
(8519, 6494, 'en', 'name', 'Pakistan Council of Scientific & Industrial Research'),
(8520, 6495, 'en', 'name', 'Pandit Bhagwat Dayal Sharma Post Graduate Institute of Medical Sciences'),
(8521, 6496, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Sweden)'),
(8522, 6497, 'no_lang_code', 'name', 'Altria (United States)'),
(8523, 6498, 'no_lang_code', 'name', 'Agenus (United States)'),
(8524, 6499, 'no_lang_code', 'name', 'Bayer (Belgium)'),
(8525, 6500, 'no_lang_code', 'name', 'Hospital Fatuma Bourguiba Monastir'),
(8526, 6500, 'fr', 'name', 'HƓpital Universitaire Fattouma-Bourguiba de Monastir'),
(8527, 6501, 'no_lang_code', 'name', 'FMC (United States)'),
(8528, 6502, 'fr', 'name', 'HĆ“pital de Ville-Ɖvrard'),
(8529, 6503, 'en', 'name', 'Twin Cities Spine Center'),
(8530, 6504, 'de', 'name', 'Tiroler Krebsforschungsinstitut'),
(8531, 6504, 'en', 'name', 'Tyrolean Cancer Research Institute'),
(8532, 6505, 'fr', 'name', 'Centre Hospitalier Universitaire de Tokoin'),
(8533, 6506, 'en', 'name', 'Tzu Chi College of Technology'),
(8534, 6506, 'zh', 'name', 'ę…ˆęæŸęŠ€č”“å­øé™¢'),
(8535, 6507, 'no_lang_code', 'name', 'Qiagen (Germany)'),
(8536, 6508, 'en', 'name', 'United States Army Aeromedical Research Lab'),
(8537, 6509, 'no_lang_code', 'name', 'ProteoSys (Germany)'),
(8538, 6510, 'es', 'name', 'EsSALUD'),
(8539, 6511, 'no_lang_code', 'name', 'Walter Knoll (Germany)'),
(8540, 6512, 'it', 'name', 'Fondazione G.B. Bietti'),
(8541, 6512, 'en', 'name', 'G. B. Bietti Foundation'),
(8542, 6513, 'en', 'name', 'Adelphi Laboratory Center'),
(8543, 6514, 'no_lang_code', 'name', 'Baxter (Sweden)'),
(8544, 6515, 'no_lang_code', 'name', 'DSM (Switzerland)'),
(8545, 6516, 'it', 'name', 'SocietĆ  per l’Assistenza al Malato Oncologico Terminale'),
(8546, 6517, 'en', 'name', 'People’s University'),
(8547, 6518, 'en', 'name', 'Perth Royal Infirmary'),
(8548, 6519, 'en', 'name', 'Peru State College'),
(8549, 6520, 'no_lang_code', 'name', 'Levret'),
(8550, 6521, 'no_lang_code', 'name', 'UCB Pharma (Germany)'),
(8551, 6521, 'fr', 'name', 'Union chimique belge'),
(8552, 6522, 'en', 'name', 'Visiting Nurse Associations of America'),
(8553, 6523, 'no_lang_code', 'name', 'Human Computer Interaction (Switzerland)'),
(8554, 6524, 'en', 'name', 'Singapore Science Park'),
(8555, 6524, 'ms', 'name', 'Taman Sains Singapura'),
(8556, 6524, 'zh', 'name', 'ę–°åŠ å”ē§‘å­¦å›­'),
(8557, 6525, 'en', 'name', 'Healthcare Financial Management Association'),
(8558, 6526, 'no_lang_code', 'name', 'Takara (United States)'),
(8559, 6527, 'no_lang_code', 'name', 'Sanofi (Germany)'),
(8560, 6528, 'no_lang_code', 'name', 'Stallergenes Greer (France)'),
(8561, 6529, 'fr', 'name', 'Centre National Hospitalier et Universitaire Hubert Koutoukou MAGA'),
(8562, 6530, 'en', 'name', 'Hudson Valley Regional Emergency Medical Services Council'),
(8563, 6531, 'no_lang_code', 'name', 'Wound Care Strategies (United States)'),
(8564, 6532, 'no_lang_code', 'name', 'XOMA (United States)'),
(8565, 6533, 'fr', 'name', 'Institut pour la Recherche sur le Cancer de Lille'),
(8566, 6534, 'fr', 'name', 'Bureau rĆ©gional de l’OMS pour l’Europe'),
(8567, 6534, 'nl', 'name', 'Regionalbüro für Europa'),
(8568, 6534, 'en', 'name', 'World Health Organization Regional Office for Europe'),
(8569, 6535, 'no_lang_code', 'name', 'Interklinik'),
(8570, 6536, 'en', 'name', 'Institute of Human Genetics'),
(8571, 6536, 'pl', 'name', 'Instytutu Genetyki Człowieka PAN'),
(8572, 6537, 'no_lang_code', 'name', 'Cochlear (Switzerland)'),
(8573, 6538, 'es', 'name', 'Instituto Ramón y Cajal de Investigación Sanitaria'),
(8574, 6539, 'no_lang_code', 'name', 'Sizewise (United States)'),
(8575, 6540, 'no_lang_code', 'name', 'VHA (United States)'),
(8576, 6541, 'no_lang_code', 'name', 'SRK Healthcare (United States)'),
(8577, 6542, 'es', 'name', 'Corporación para Investigaciones Biológicas'),
(8578, 6543, 'en', 'name', 'Institute for Social Security and Services for State Workers'),
(8579, 6543, 'es', 'name', 'Instituto de Seguridad y Servicios Sociales de los Trabajadores del Estado'),
(8580, 6544, 'en', 'name', 'Tianjin Economic-Technological Development Area'),
(8581, 6544, 'zh', 'name', 'å¤©ę“„ē»ęµŽęŠ€ęœÆå¼€å‘åŒŗ'),
(8582, 6545, 'no_lang_code', 'name', 'Centro Radiológico Computarizado Corporació Sanitària (Spain)'),
(8583, 6546, 'en', 'name', 'New York Eye and Ear Infirmary'),
(8584, 6547, 'en', 'name', 'Virus Unit'),
(8585, 6548, 'no_lang_code', 'name', 'Ivoclar Vivadent (Liechtenstein)'),
(8586, 6549, 'nl', 'name', 'Crucell'),
(8587, 6549, 'no_lang_code', 'name', 'Johnson & Johnson (Netherlands)'),
(8588, 6550, 'en', 'name', 'Ideon Science Park'),
(8589, 6551, 'en', 'name', 'Japan Biological Informatics Consortium'),
(8590, 6551, 'ja', 'name', 'čˆ¬ē¤¾å›£ę³•äŗŗćƒć‚¤ć‚Ŗē”£ę„­ęƒ…å ±åŒ–ć‚³ćƒ³ć‚½ćƒ¼ć‚·ć‚¢ćƒ '),
(8591, 6552, 'no_lang_code', 'name', 'VWR International (United States)'),
(8592, 6553, 'no_lang_code', 'name', 'Integran (Canada)'),
(8593, 6554, 'no_lang_code', 'name', 'CSL (Germany)'),
(8594, 6555, 'no_lang_code', 'name', 'Integrated BioTherapeutics (United States)'),
(8595, 6556, 'en', 'name', 'Joint Commission'),
(8596, 6557, 'no_lang_code', 'name', 'Integrated Environmental Solutions (United Kingdom)'),
(8597, 6558, 'no_lang_code', 'name', 'TDIC (United States)'),
(8598, 6559, 'no_lang_code', 'name', 'Orkla (Sweden)'),
(8599, 6560, 'it', 'name', 'CTO Andrea Alesini'),
(8600, 6561, 'no_lang_code', 'name', 'Integrity Testing Laboratory (Canada)'),
(8601, 6562, 'no_lang_code', 'name', 'Intel (Ireland)'),
(8602, 6563, 'no_lang_code', 'name', 'Intelligent Energy (United Kingdom)'),
(8603, 6564, 'no_lang_code', 'name', 'Intelligent Fiber Optic Systems (United States)'),
(8604, 6565, 'en', 'name', 'DGA Partners'),
(8605, 6566, 'no_lang_code', 'name', 'Intelligent Mechatronic Systems (Canada)'),
(8606, 6567, 'no_lang_code', 'name', 'Baxter (Austria)'),
(8607, 6568, 'en', 'name', 'Tucson Orthopaedic Institute'),
(8608, 6569, 'en', 'name', 'DHHS Alliance'),
(8609, 6570, 'es', 'name', 'Convención de la Farmacopea de Estados Unidos'),
(8610, 6570, 'en', 'name', 'United States Pharmacopeial Convention'),
(8611, 6571, 'no_lang_code', 'name', 'AbleNet (United States)'),
(8612, 6572, 'no_lang_code', 'name', '20/20 GeneSystem (United States)'),
(8613, 6573, 'no_lang_code', 'name', '21st Century Medicine (United States)'),
(8614, 6574, 'no_lang_code', 'name', '21st Century Therapeutics (United States)'),
(8615, 6575, 'no_lang_code', 'name', '23andMe (United States)'),
(8616, 6576, 'no_lang_code', 'name', '2B Technologies (United States)'),
(8617, 6577, 'fr', 'name', 'Agence des Ɖtats-Unis pour le DĆ©veloppement International'),
(8618, 6577, 'es', 'name', 'Agencia de los Estados Unidos para el Desarrollo Internacional'),
(8619, 6577, 'en', 'name', 'United States Agency for International Development'),
(8620, 6578, 'no_lang_code', 'name', '360pi (Canada)'),
(8621, 6579, 'no_lang_code', 'name', 'Fujirebio (Belgium)'),
(8622, 6580, 'en', 'name', 'Inter-Tribal Council of Michigan'),
(8623, 6581, 'no_lang_code', 'name', '3D Molecular Designs (United States)'),
(8624, 6582, 'no_lang_code', 'name', 'Interactive Drama (United States)'),
(8625, 6583, 'no_lang_code', 'name', 'InterDigital (United States)'),
(8626, 6584, 'en', 'name', 'Ministry of Food and Drug Safety');
INSERT INTO `ror_settings` VALUES
(8627, 6585, 'no_lang_code', 'name', 'Interlab (United States)'),
(8628, 6586, 'no_lang_code', 'name', 'Fusion (United States)'),
(8629, 6587, 'no_lang_code', 'name', 'A&G Pharmaceutical (United States)'),
(8630, 6588, 'no_lang_code', 'name', 'A Thinking Ape (Canada)'),
(8631, 6589, 'no_lang_code', 'name', 'A&L Canada Laboratories (Canada)'),
(8632, 6590, 'no_lang_code', 'name', 'AAC (United States)'),
(8633, 6591, 'en', 'name', 'Abacus Health Solutions'),
(8634, 6592, 'en', 'name', 'Renal Association'),
(8635, 6593, 'no_lang_code', 'name', 'TerraBioGen (Canada)'),
(8636, 6594, 'no_lang_code', 'name', 'ABB (United Kingdom)'),
(8637, 6595, 'no_lang_code', 'name', 'ABB (Switzerland)'),
(8638, 6596, 'no_lang_code', 'name', 'Abbott (Canada)'),
(8639, 6597, 'no_lang_code', 'name', 'Abcam (United Kingdom)'),
(8640, 6598, 'no_lang_code', 'name', 'Abeome Corporation (United States)'),
(8641, 6599, 'en', 'name', 'Aberdeen City Council'),
(8642, 6600, 'de', 'name', 'Unfallkrankenhaus Wien Lorenz Bƶhler'),
(8643, 6601, 'no_lang_code', 'name', 'ScienceScope (United Kingdom)'),
(8644, 6602, 'en', 'name', 'United States Military Entrance Processing Command'),
(8645, 6603, 'no_lang_code', 'name', 'AbleLink Technologies (United States)'),
(8646, 6604, 'es', 'name', 'Comisión para la Seguridad de los Productos de Consumo de los Estados Unidos'),
(8647, 6604, 'en', 'name', 'United States Consumer Product Safety Commission'),
(8648, 6605, 'no_lang_code', 'name', 'ABS Materials (United States)'),
(8649, 6606, 'en', 'name', 'Academy for Educational Development'),
(8650, 6607, 'en', 'name', 'Academy of Medical Sciences'),
(8651, 6608, 'en', 'name', 'United States Congress'),
(8652, 6609, 'en', 'name', 'Academy of the Social Sciences in Australia'),
(8653, 6610, 'en', 'name', 'Acadia Institute of Oceanography'),
(8654, 6611, 'no_lang_code', 'name', 'International Rectifier (United Kingdom)'),
(8655, 6612, 'no_lang_code', 'name', 'Acadian Seaplants (Canada)'),
(8656, 6613, 'no_lang_code', 'name', 'AccelLab (Canada)'),
(8657, 6614, 'en', 'name', 'Accents On Health'),
(8658, 6615, 'en', 'name', 'International Society for Infectious Diseases'),
(8659, 6616, 'en', 'name', 'International Society for Experimental Hematology'),
(8660, 6617, 'en', 'name', 'International Technology and Engineering Educators Association'),
(8661, 6618, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(8662, 6619, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Lithuania)'),
(8663, 6620, 'it', 'name', 'Ospedale SS. Annunziata'),
(8664, 6621, 'en', 'name', 'Access Community Health Network'),
(8665, 6622, 'no_lang_code', 'name', 'Genomas (United States)'),
(8666, 6623, 'en', 'name', 'Accreditation Board for Engineering and Technology'),
(8667, 6624, 'no_lang_code', 'name', 'Genomatica (United States)'),
(8668, 6625, 'no_lang_code', 'name', 'InterPhases Solar (United States)'),
(8669, 6626, 'no_lang_code', 'name', 'InterScience (United States)'),
(8670, 6627, 'en', 'name', 'Interstate Shellfish Sanitation Conference'),
(8671, 6628, 'no_lang_code', 'name', 'Integrated DNA Technologies (United States)'),
(8672, 6629, 'es', 'name', 'Profamilia'),
(8673, 6630, 'no_lang_code', 'name', 'IntraMedical Imaging (United States)'),
(8674, 6631, 'no_lang_code', 'name', 'Intrafinity (Canada)'),
(8675, 6632, 'no_lang_code', 'name', 'Intuitive Biosciences (United States)'),
(8676, 6633, 'no_lang_code', 'name', 'Intuitive Surgical (United States)'),
(8677, 6634, 'no_lang_code', 'name', 'Inverness Research (United States)'),
(8678, 6635, 'no_lang_code', 'name', 'INVIDI Technologies (Canada)'),
(8679, 6636, 'en', 'name', 'Passport to Knowledge'),
(8680, 6637, 'no_lang_code', 'name', 'InXsol (United States)'),
(8681, 6638, 'en', 'name', 'Georgia Department of Community Health'),
(8682, 6639, 'en', 'name', 'Iolani School'),
(8683, 6640, 'en', 'name', 'Georgia Department of Agriculture'),
(8684, 6641, 'no_lang_code', 'name', 'Iomai (United States)'),
(8685, 6642, 'en', 'name', 'Island Peer Review Organization'),
(8686, 6643, 'en', 'name', 'Georgia Department of Behavioral Health and Developmental Disabilities'),
(8687, 6644, 'no_lang_code', 'name', 'Geospace Research (United States)'),
(8688, 6645, 'no_lang_code', 'name', 'Ion Physics (United States)'),
(8689, 6646, 'no_lang_code', 'name', 'Geotechnical Observations (United Kingdom)'),
(8690, 6647, 'no_lang_code', 'name', 'Gerber Technology (United States)'),
(8691, 6648, 'no_lang_code', 'name', 'IONICS Mass Spectrometry (Canada)'),
(8692, 6649, 'no_lang_code', 'name', 'Germinal (United Kingdom)'),
(8693, 6650, 'no_lang_code', 'name', 'GigaGen (United States)'),
(8694, 6651, 'no_lang_code', 'name', 'Ionwerks (United States)'),
(8695, 6652, 'en', 'name', 'Gila River Indian Community'),
(8696, 6653, 'en', 'name', 'Girls Incorporated'),
(8697, 6654, 'no_lang_code', 'name', 'Giro (Canada)'),
(8698, 6655, 'no_lang_code', 'name', 'IPAC Chemicals (Canada)'),
(8699, 6656, 'es', 'name', 'Departamento de Vivienda y Desarrollo Urbano de los Estados Unidos'),
(8700, 6656, 'fr', 'name', 'DĆ©partement du logement et du dĆ©veloppement urbain des Ɖtats-unis'),
(8701, 6656, 'en', 'name', 'United States Department of Housing and Urban Development'),
(8702, 6657, 'no_lang_code', 'name', 'IPL (Canada)'),
(8703, 6658, 'es', 'name', 'Departamento de Trabajo de los Estados Unidos'),
(8704, 6658, 'fr', 'name', 'DĆ©partement du travail des Ɖtats-unis'),
(8705, 6658, 'en', 'name', 'United States Department of Labor'),
(8706, 6659, 'no_lang_code', 'name', 'Global Relay (Canada)'),
(8707, 6660, 'no_lang_code', 'name', 'iProgen Biotech (Canada)'),
(8708, 6661, 'no_lang_code', 'name', 'GlobeImmune (United States)'),
(8709, 6662, 'en', 'name', 'Glasgow Life'),
(8710, 6663, 'it', 'name', 'MultiMedica'),
(8711, 6664, 'no_lang_code', 'name', 'iQmetrix (Canada)'),
(8712, 6665, 'en', 'name', 'Glasgow Science Centre'),
(8713, 6666, 'no_lang_code', 'name', 'GLC Biotechnology (United States)'),
(8714, 6667, 'no_lang_code', 'name', 'Iridian Spectral Technologies (Canada)'),
(8715, 6668, 'en', 'name', 'Glendale Community College'),
(8716, 6669, 'no_lang_code', 'name', 'Iris AO (United States)'),
(8717, 6670, 'no_lang_code', 'name', 'ISCA Technologies (United States)'),
(8718, 6671, 'en', 'name', 'Global HIV Vaccine Enterprise'),
(8719, 6672, 'en', 'name', 'International Rescue Committee'),
(8720, 6673, 'no_lang_code', 'name', 'Global Vaccines (United States)'),
(8721, 6674, 'no_lang_code', 'name', 'Glycobia (United States)'),
(8722, 6675, 'no_lang_code', 'name', 'Inflazyme (Canada)'),
(8723, 6676, 'no_lang_code', 'name', 'GlycoMira Therapeutics (United States)'),
(8724, 6677, 'no_lang_code', 'name', 'Lectenz Bio (United States)'),
(8725, 6678, 'no_lang_code', 'name', 'GlySens (United States)'),
(8726, 6679, 'no_lang_code', 'name', 'GMA Industries (United States)'),
(8727, 6680, 'en', 'name', 'Coastline Community College'),
(8728, 6681, 'es', 'name', 'Departamento del Tesoro de los Estados Unidos'),
(8729, 6681, 'fr', 'name', 'DĆ©partement du trĆ©sor des Ɖtats-unis'),
(8730, 6681, 'en', 'name', 'United States Department of the Treasury'),
(8731, 6682, 'no_lang_code', 'name', 'Gooch & Housego (United Kingdom)'),
(8732, 6683, 'en', 'name', 'Island Institute'),
(8733, 6684, 'no_lang_code', 'name', 'Gradient Lens Corporation (United States)'),
(8734, 6685, 'no_lang_code', 'name', 'Carter Printing Company (United States)'),
(8735, 6686, 'no_lang_code', 'name', 'Isowater Corporation (Canada)'),
(8736, 6687, 'en', 'name', 'Carthage College'),
(8737, 6688, 'no_lang_code', 'name', 'GrammaTech (United States)'),
(8738, 6689, 'en', 'name', 'Cascade AIDS Project'),
(8739, 6690, 'no_lang_code', 'name', 'Dynamic Graphics (United States)'),
(8740, 6691, 'en', 'name', 'Itasca Community College'),
(8741, 6692, 'no_lang_code', 'name', 'Gratings Incorporated (United States)'),
(8742, 6693, 'en', 'name', 'Great Lakes Inter Tribal Council'),
(8743, 6694, 'en', 'name', 'Center for Applied Special Technology'),
(8744, 6695, 'no_lang_code', 'name', 'Avensys (Canada)'),
(8745, 6696, 'en', 'name', 'Des Moines Area Community College'),
(8746, 6697, 'en', 'name', 'United Church of Christ'),
(8747, 6698, 'no_lang_code', 'name', 'iTherX (United States)'),
(8748, 6699, 'en', 'name', 'Casa Esperanza'),
(8749, 6700, 'no_lang_code', 'name', 'ITI Energy (United Kingdom)'),
(8750, 6701, 'en', 'name', 'Desert Botanical Garden'),
(8751, 6702, 'en', 'name', 'Greater Manchester Police'),
(8752, 6703, 'en', 'name', 'Washington Educational Telecommunications Association'),
(8753, 6704, 'no_lang_code', 'name', 'INRIX (United Kingdom)'),
(8754, 6705, 'en', 'name', 'Auburn School District'),
(8755, 6706, 'no_lang_code', 'name', 'DesignBuilder Software (United Kingdom)'),
(8756, 6707, 'no_lang_code', 'name', 'ITN Energy Systems (United States)'),
(8757, 6708, 'en', 'name', 'Connecticut Business and Industry Association'),
(8758, 6709, 'no_lang_code', 'name', 'DesignMedix (United States)'),
(8759, 6710, 'en', 'name', 'Green Valley High School'),
(8760, 6711, 'en', 'name', 'Greenfield Community College'),
(8761, 6712, 'no_lang_code', 'name', 'CCS Associates (United States)'),
(8762, 6713, 'no_lang_code', 'name', 'Galderma (United States)'),
(8763, 6714, 'en', 'name', 'Detroit Area Pre College Engineering Program'),
(8764, 6715, 'no_lang_code', 'name', 'Sainsbury''s (United Kingdom)'),
(8765, 6716, 'no_lang_code', 'name', 'Greenfield Research (Canada)'),
(8766, 6717, 'no_lang_code', 'name', 'CDM Group (United States)'),
(8767, 6718, 'en', 'name', 'Greenville Technical College'),
(8768, 6719, 'pt', 'name', 'Centro de Biotecnologia AgrĆ­cola e Agro Alimentar do Alentejo'),
(8769, 6720, 'no_lang_code', 'name', 'Grove Instruments (United States)'),
(8770, 6721, 'no_lang_code', 'name', 'Detroit R&D (United States)'),
(8771, 6722, 'no_lang_code', 'name', 'Jacobs (United Kingdom)'),
(8772, 6723, 'fr', 'name', 'CƩgep AndrƩ Laurendeau'),
(8773, 6724, 'fr', 'name', 'CƩgep de l''Abitibi TƩmiscamingue'),
(8774, 6725, 'fr', 'name', 'CĆ©gep de la GaspĆ©sie et des Ǝles'),
(8775, 6726, 'en', 'name', 'Developmental Studies Center'),
(8776, 6727, 'no_lang_code', 'name', 'GT Urological (United States)'),
(8777, 6728, 'no_lang_code', 'name', 'James Bell Associates (United States)'),
(8778, 6729, 'no_lang_code', 'name', 'Cel-Sci (United States)'),
(8779, 6730, 'no_lang_code', 'name', 'Celator Pharmaceuticals (Canada)'),
(8780, 6731, 'en', 'name', 'University of Jamestown'),
(8781, 6732, 'no_lang_code', 'name', 'UNICOM Global (United States)'),
(8782, 6733, 'no_lang_code', 'name', 'Jarvik Heart (United States)'),
(8783, 6734, 'no_lang_code', 'name', 'Precigen (United States)'),
(8784, 6735, 'en', 'name', 'Jarvis Christian College'),
(8785, 6736, 'no_lang_code', 'name', 'Jeremy Benn Associates (United Kingdom)'),
(8786, 6737, 'no_lang_code', 'name', 'rEVO Biologics (United States)'),
(8787, 6738, 'no_lang_code', 'name', 'Cell Preservation Services (United States)'),
(8788, 6739, 'no_lang_code', 'name', 'Cell Signaling Technology (United States)'),
(8789, 6740, 'no_lang_code', 'name', 'Cell2B (Portugal)'),
(8790, 6741, 'no_lang_code', 'name', 'JEOL (United Kingdom)'),
(8791, 6742, 'no_lang_code', 'name', 'Jet Process Corporation (United States)'),
(8792, 6743, 'no_lang_code', 'name', 'Cellecta (United States)'),
(8793, 6744, 'no_lang_code', 'name', 'Cellerant Therapeutics (United States)'),
(8794, 6745, 'no_lang_code', 'name', 'Celdara Medical (United States)'),
(8795, 6746, 'no_lang_code', 'name', 'CD-adapco (United Kingdom)'),
(8796, 6747, 'no_lang_code', 'name', 'Cellex (United States)'),
(8797, 6748, 'no_lang_code', 'name', 'Guided Therapeutics (United States)'),
(8798, 6749, 'no_lang_code', 'name', 'Guild Associates (United States)'),
(8799, 6750, 'no_lang_code', 'name', 'Jim Metzner Productions (United States)'),
(8800, 6751, 'en', 'name', 'Guy''s and St Thomas'' NHS Foundation Trust'),
(8801, 6752, 'en', 'name', 'Guthrie Foundation'),
(8802, 6753, 'no_lang_code', 'name', 'GVD Corporation (United States)'),
(8803, 6754, 'en', 'name', 'Diablo Valley College'),
(8804, 6755, 'en', 'name', 'Gwinnett Coalition for Health & Human Services'),
(8805, 6756, 'no_lang_code', 'name', 'H & N Instruments (United States)'),
(8806, 6757, 'no_lang_code', 'name', 'DiagnoCure (Canada)'),
(8807, 6758, 'no_lang_code', 'name', 'Diagnostics for the Real World (United States)'),
(8808, 6759, 'no_lang_code', 'name', 'DiaMedica (Canada)'),
(8809, 6760, 'no_lang_code', 'name', 'Diamond Materials (United States)'),
(8810, 6761, 'en', 'name', 'H. R. MacMillan Space Centre'),
(8811, 6762, 'no_lang_code', 'name', 'John Snow (United States)'),
(8812, 6763, 'no_lang_code', 'name', 'Skanska (United Kingdom)'),
(8813, 6764, 'no_lang_code', 'name', 'Evotec (United States)'),
(8814, 6765, 'no_lang_code', 'name', 'DIApedia (United States)'),
(8815, 6766, 'no_lang_code', 'name', 'JBS International (United States)'),
(8816, 6767, 'en', 'name', 'H.T. Harvey & Associates'),
(8817, 6768, 'en', 'name', 'H2O 4 All'),
(8818, 6769, 'no_lang_code', 'name', 'Haematologic Technologies (United States)'),
(8819, 6770, 'en', 'name', 'Dick Young Productions'),
(8820, 6771, 'en', 'name', 'Catawba College'),
(8821, 6772, 'en', 'name', 'Joliet Junior College'),
(8822, 6773, 'en', 'name', 'Hagerstown Community College'),
(8823, 6774, 'no_lang_code', 'name', 'Lipman Hearne (United States)'),
(8824, 6775, 'en', 'name', 'Didi Hirsch Mental Health Services'),
(8825, 6776, 'no_lang_code', 'name', 'Halsall (Canada)'),
(8826, 6777, 'en', 'name', 'Ohio County Behavioral Health Authorities'),
(8827, 6778, 'en', 'name', 'Center for American Archeology'),
(8828, 6779, 'en', 'name', 'Center for Applied Linguistics'),
(8829, 6780, 'en', 'name', 'Joseph Rowntree Foundation'),
(8830, 6781, 'no_lang_code', 'name', 'Hans Tech (United States)'),
(8831, 6782, 'no_lang_code', 'name', 'JP Laboratories (United States)'),
(8832, 6783, 'en', 'name', 'Center for Community Alternatives'),
(8833, 6784, 'no_lang_code', 'name', 'Diffinity Genomics (United States)'),
(8834, 6785, 'en', 'name', 'Clark Planetarium'),
(8835, 6786, 'no_lang_code', 'name', 'JS Genetics (United States)'),
(8836, 6787, 'no_lang_code', 'name', 'Digestive Care (United States)'),
(8837, 6788, 'no_lang_code', 'name', 'Diacon (Canada)'),
(8838, 6789, 'no_lang_code', 'name', 'Junk King (United States)'),
(8839, 6790, 'no_lang_code', 'name', 'Envigo (United States)'),
(8840, 6791, 'en', 'name', 'DigiBC (Canada)'),
(8841, 6792, 'no_lang_code', 'name', 'Juvaris BioTherapeutics (United States)'),
(8842, 6793, 'en', 'name', 'Harlem United'),
(8843, 6794, 'no_lang_code', 'name', 'Harrington Software Associates'),
(8844, 6795, 'no_lang_code', 'name', 'Digital Payment Technologies (Canada)'),
(8845, 6796, 'en', 'name', 'John Wesley Community Health Institute'),
(8846, 6797, 'en', 'name', 'Aspire Health Partners'),
(8847, 6798, 'no_lang_code', 'name', 'L3Harris (Canada)'),
(8848, 6799, 'no_lang_code', 'name', 'JWK Corporation (United States)'),
(8849, 6800, 'en', 'name', 'Harrisburg Area Community College'),
(8850, 6801, 'no_lang_code', 'name', 'K&A Wireless (United States)'),
(8851, 6802, 'en', 'name', 'Association of Health Care Journalists'),
(8852, 6803, 'en', 'name', 'Hastings College'),
(8853, 6804, 'no_lang_code', 'name', 'Kane Biotech (Canada)'),
(8854, 6805, 'no_lang_code', 'name', 'Dimension Technologies (United States)'),
(8855, 6806, 'no_lang_code', 'name', 'Hawaii Biotech (United States)'),
(8856, 6807, 'no_lang_code', 'name', 'Hauser (United States)'),
(8857, 6808, 'en', 'name', 'Center for Image Processing in Education'),
(8858, 6809, 'en', 'name', 'Center for Innovative Public Health Research'),
(8859, 6810, 'en', 'name', 'Hazardous Materials Training and Research Institute'),
(8860, 6811, 'no_lang_code', 'name', 'Dimera (United States)'),
(8861, 6812, 'en', 'name', 'Health and Hospital Corporation'),
(8862, 6813, 'no_lang_code', 'name', 'Health Decisions (United States)'),
(8863, 6814, 'en', 'name', 'Sterling College - Vermont'),
(8864, 6815, 'no_lang_code', 'name', 'Kapteyn Murnane Laboratories'),
(8865, 6816, 'en', 'name', 'DinƩ College'),
(8866, 6817, 'no_lang_code', 'name', 'Kardium (Canada)'),
(8867, 6818, 'en', 'name', 'Winchester Science Centre'),
(8868, 6819, 'no_lang_code', 'name', 'Hartley & Associates'),
(8869, 6820, 'no_lang_code', 'name', 'Center For Remote Sensing (United States)'),
(8870, 6821, 'en', 'name', 'Health Media Lab'),
(8871, 6822, 'en', 'name', 'Ministry of Health'),
(8872, 6822, 'pt', 'name', 'Ministério da Saúde'),
(8873, 6823, 'no_lang_code', 'name', 'KCTS 9 (United States)'),
(8874, 6824, 'en', 'name', 'Center for Telepsychology'),
(8875, 6825, 'no_lang_code', 'name', 'KDH Research & Communication (United States)'),
(8876, 6826, 'no_lang_code', 'name', 'Kelly Services (United States)'),
(8877, 6827, 'en', 'name', 'Center for Environmental Health'),
(8878, 6828, 'no_lang_code', 'name', 'DiscoveRx (United States)'),
(8879, 6829, 'en', 'name', 'Center for Prevention and Counseling'),
(8880, 6830, 'en', 'name', 'Health Services Center'),
(8881, 6831, 'en', 'name', 'Discovery Centre'),
(8882, 6832, 'en', 'name', 'Healthcare Education Associates'),
(8883, 6833, 'en', 'name', 'HealthCare Interactive'),
(8884, 6834, 'no_lang_code', 'name', 'Immusoft (United States)'),
(8885, 6835, 'no_lang_code', 'name', 'HealthSim (United States)'),
(8886, 6836, 'en', 'name', 'Discovery Place'),
(8887, 6837, 'en', 'name', 'Healthcare Technology Systems'),
(8888, 6838, 'no_lang_code', 'name', 'DiscoveryBioMed (United States)'),
(8889, 6839, 'en', 'name', 'Centerforce'),
(8890, 6840, 'no_lang_code', 'name', 'Kent Displays (United States)'),
(8891, 6841, 'no_lang_code', 'name', 'Kent Optronics (United States)'),
(8892, 6842, 'no_lang_code', 'name', 'Kent SeaTech Corporation (United States)'),
(8893, 6843, 'no_lang_code', 'name', 'DMetrix (United States)'),
(8894, 6844, 'no_lang_code', 'name', 'DMH Associates (United States)'),
(8895, 6845, 'en', 'name', 'Kentucky Wesleyan College'),
(8896, 6846, 'no_lang_code', 'name', 'DNA Polymerase Technology (United States)'),
(8897, 6847, 'no_lang_code', 'name', 'DNA Software (United States)'),
(8898, 6848, 'en', 'name', 'Kestrel Institute'),
(8899, 6849, 'no_lang_code', 'name', 'Kestrel Labs (United States)'),
(8900, 6850, 'no_lang_code', 'name', 'Information Management Consultants (United States)'),
(8901, 6851, 'en', 'name', 'Hearthstone Alzheimer Care'),
(8902, 6852, 'no_lang_code', 'name', 'HeartVista (United States)'),
(8903, 6853, 'en', 'name', 'Central Oregon Community College'),
(8904, 6854, 'no_lang_code', 'name', 'DNASTAR (United States)'),
(8905, 6855, 'en', 'name', 'Doane University'),
(8906, 6856, 'no_lang_code', 'name', 'Key Tech (United States)'),
(8907, 6857, 'no_lang_code', 'name', 'Heidelberg University'),
(8908, 6858, 'no_lang_code', 'name', 'DOSECC Exploration Services (United States)'),
(8909, 6859, 'no_lang_code', 'name', 'Dot Metrics Technologies (United States)'),
(8910, 6860, 'no_lang_code', 'name', 'Kinder Magic Software (United States)'),
(8911, 6861, 'no_lang_code', 'name', 'KineMed (United States)'),
(8912, 6862, 'no_lang_code', 'name', 'QLT (Canada)'),
(8913, 6863, 'no_lang_code', 'name', 'HemoShear (United States)'),
(8914, 6864, 'en', 'name', 'Department of Community and Human Services'),
(8915, 6865, 'en', 'name', 'Her Majesty''s Government Communications Centre'),
(8916, 6866, 'no_lang_code', 'name', 'Droplet Measurement Technologies (United States)'),
(8917, 6867, 'no_lang_code', 'name', 'Herman Miller (United States)'),
(8918, 6868, 'no_lang_code', 'name', 'King Shaw Associates (United Kingdom)'),
(8919, 6869, 'fr', 'name', 'Canards IllimitƩs Canada'),
(8920, 6869, 'en', 'name', 'Ducks Unlimited Canada'),
(8921, 6870, 'en', 'name', 'Kirklees Council'),
(8922, 6871, 'en', 'name', 'Kirkwood Community College'),
(8923, 6872, 'en', 'name', 'Dudley Observatory'),
(8924, 6873, 'no_lang_code', 'name', 'Huawei Technologies (United Kingdom)'),
(8925, 6874, 'no_lang_code', 'name', 'KMS Fusion (United States)'),
(8926, 6875, 'en', 'name', 'Knowle West Media Centre'),
(8927, 6876, 'no_lang_code', 'name', 'DuPont (United Kingdom)'),
(8928, 6877, 'no_lang_code', 'name', 'Rimage Corporation (United States)'),
(8929, 6878, 'no_lang_code', 'name', 'Knowledge Based Systems (United States)'),
(8930, 6879, 'fr', 'name', 'Centre de Recherche Interdisciplinaire en RƩadaptation'),
(8931, 6879, 'en', 'name', 'Centre for Interdisciplinary Research in Rehabilitation'),
(8932, 6880, 'no_lang_code', 'name', 'DxRay (United States)'),
(8933, 6881, 'en', 'name', 'Hertfordshire County Council'),
(8934, 6882, 'no_lang_code', 'name', 'Dynaflow (United States)'),
(8935, 6883, 'en', 'name', 'Centre for Process Innovation'),
(8936, 6884, 'no_lang_code', 'name', 'Kodak (United Kingdom)'),
(8937, 6885, 'no_lang_code', 'name', 'Hexcel (United Kingdom)'),
(8938, 6886, 'no_lang_code', 'name', 'Data Voice Exchange (United States)'),
(8939, 6887, 'no_lang_code', 'name', 'Hiden Analytical (United Kingdom)'),
(8940, 6888, 'no_lang_code', 'name', 'Consolidated Safety Services-Dynamac (United States)'),
(8941, 6889, 'no_lang_code', 'name', 'HTG Molecular Diagnostics (United States)'),
(8942, 6890, 'no_lang_code', 'name', 'Koester Performance Research (United States)'),
(8943, 6891, 'no_lang_code', 'name', 'Upsight (Canada)'),
(8944, 6892, 'en', 'name', 'Hillsborough Community College'),
(8945, 6893, 'no_lang_code', 'name', 'Kopin Corporation (United States)'),
(8946, 6894, 'no_lang_code', 'name', 'Kryton International (Canada)'),
(8947, 6895, 'en', 'name', 'Hispanic Association of Colleges and Universities'),
(8948, 6896, 'no_lang_code', 'name', 'Safran Electronics (Canada)'),
(8949, 6897, 'no_lang_code', 'name', 'Roche (Canada)'),
(8950, 6898, 'fr', 'name', 'CollĆØge holland'),
(8951, 6898, 'en', 'name', 'Holland College'),
(8952, 6899, 'en', 'name', 'Holy Names University'),
(8953, 6900, 'no_lang_code', 'name', 'KWS (United Kingdom)'),
(8954, 6901, 'no_lang_code', 'name', 'HemoCleanse (United States)'),
(8955, 6902, 'no_lang_code', 'name', 'HiretheWorld (Canada)'),
(8956, 6903, 'no_lang_code', 'name', 'Comply (United States)'),
(8957, 6904, 'no_lang_code', 'name', 'Aecom (United States)'),
(8958, 6905, 'no_lang_code', 'name', 'Hitachi (United Kingdom)'),
(8959, 6906, 'no_lang_code', 'name', 'L.B. Foster Rail Technologies (Canada)'),
(8960, 6907, 'no_lang_code', 'name', 'Hoare Lea (United Kingdom)'),
(8961, 6908, 'no_lang_code', 'name', 'Honda (Germany)'),
(8962, 6909, 'fr', 'name', 'Hopkins Architectes'),
(8963, 6909, 'en', 'name', 'Hopkins Architects'),
(8964, 6910, 'en', 'name', 'City College'),
(8965, 6910, 'fr', 'name', 'La CitƩ CollƩgiale'),
(8966, 6911, 'en', 'name', 'La Clinica del Pueblo'),
(8967, 6912, 'en', 'name', 'Georgetown College'),
(8968, 6913, 'en', 'name', 'South Carolina Technical College System'),
(8969, 6914, 'en', 'name', 'La Frontera Arizona'),
(8970, 6915, 'en', 'name', 'LaGrange College'),
(8971, 6916, 'en', 'name', 'La Jolla Infectious Disease Institute'),
(8972, 6917, 'pl', 'name', 'Samodzielny Publiczny Centralny Szpital Kliniczny'),
(8973, 6918, 'no_lang_code', 'name', 'Jazz Pharmaceuticals (United States)'),
(8974, 6919, 'no_lang_code', 'name', 'Horizon Research (United States)'),
(8975, 6920, 'en', 'name', 'Houston Advanced Research Center'),
(8976, 6921, 'en', 'name', 'Houston Area Community Services'),
(8977, 6922, 'en', 'name', 'Press Ganey'),
(8978, 6923, 'en', 'name', 'Houston Independent School District'),
(8979, 6924, 'en', 'name', 'Howard Brown Health Center'),
(8980, 6925, 'en', 'name', 'Howard Community College'),
(8981, 6926, 'en', 'name', 'Hubbs-Sea World Research Institute'),
(8982, 6927, 'no_lang_code', 'name', 'Ameriprise Financial (United States)'),
(8983, 6928, 'no_lang_code', 'name', 'Dynamis Pharmaceuticals (United States)'),
(8984, 6929, 'en', 'name', 'Human Resources Research Organization'),
(8985, 6930, 'en', 'name', 'Huntingdon College'),
(8986, 6931, 'no_lang_code', 'name', 'Laing O''Rourke (United Kingdom)'),
(8987, 6932, 'no_lang_code', 'name', 'Dynex Semiconductor (United Kingdom)'),
(8988, 6933, 'no_lang_code', 'name', 'HydraTek (Canada)'),
(8989, 6934, 'en', 'name', 'Hydrologic Research Center'),
(8990, 6935, 'en', 'name', 'Lake County'),
(8991, 6936, 'no_lang_code', 'name', 'Hyper Tech Research (United States)'),
(8992, 6937, 'no_lang_code', 'name', 'Lake Shore Cryotronics (United States)'),
(8993, 6938, 'no_lang_code', 'name', 'Dyson (United Kingdom)'),
(8994, 6939, 'en', 'name', 'Lakeland College'),
(8995, 6940, 'no_lang_code', 'name', 'Lakes Environmental (Canada)'),
(8996, 6941, 'no_lang_code', 'name', 'E.ON (United Kingdom)'),
(8997, 6942, 'no_lang_code', 'name', 'EP (United States)'),
(8998, 6943, 'en', 'name', 'Baptist Health Care'),
(8999, 6944, 'en', 'name', 'LAM Foundation'),
(9000, 6945, 'en', 'name', 'Lambton College'),
(9001, 6946, 'no_lang_code', 'name', 'Institute of Bioengineering Technologies (United States)'),
(9002, 6947, 'en', 'name', 'Lane Community College'),
(9003, 6948, 'en', 'name', 'Langley Environmental Partners Society'),
(9004, 6949, 'no_lang_code', 'name', 'Larus Technologies (Canada)'),
(9005, 6950, 'no_lang_code', 'name', 'ICF International (United States)'),
(9006, 6951, 'en', 'name', 'East Los Angeles College'),
(9007, 6952, 'no_lang_code', 'name', 'Gold Standard Simulations (United Kingdom)'),
(9008, 6953, 'no_lang_code', 'name', 'Lasmed (United States)'),
(9009, 6954, 'en', 'name', 'Centre of Studies on Geography and Spatial Planning'),
(9010, 6954, 'pt', 'name', 'Centro de Estudos em Geografia e Ordenamento do Territorio'),
(9011, 6955, 'no_lang_code', 'name', 'Intelligent Optical Systems (United States)'),
(9012, 6956, 'no_lang_code', 'name', 'Hyperion Technologies (Canada)'),
(9013, 6957, 'no_lang_code', 'name', 'Earth Images Foundation (United States)'),
(9014, 6958, 'es', 'name', 'La Comisión Latina sobre el SIDA'),
(9015, 6958, 'en', 'name', 'Latino Commission on AIDS'),
(9016, 6959, 'no_lang_code', 'name', 'EarthSky'),
(9017, 6960, 'en', 'name', 'Latino Health Institute (United States)'),
(9018, 6961, 'no_lang_code', 'name', 'ECI Biotech (United States)'),
(9019, 6962, 'en', 'name', 'East Bay Institute for Research & Education'),
(9020, 6963, 'no_lang_code', 'name', 'LaunchPoint Technologies (United States)'),
(9021, 6964, 'no_lang_code', 'name', 'Humanitas (United States)'),
(9022, 6965, 'no_lang_code', 'name', 'East Malling Research (United Kingdom)'),
(9023, 6966, 'en', 'name', 'Human Media'),
(9024, 6967, 'en', 'name', 'Eastern Iowa Community College'),
(9025, 6968, 'no_lang_code', 'name', 'Ebert and Associates'),
(9026, 6969, 'no_lang_code', 'name', 'EcoMetrix'),
(9027, 6970, 'no_lang_code', 'name', 'Laureate Learning Systems (United States)'),
(9028, 6971, 'no_lang_code', 'name', 'ECBio (Portugal)'),
(9029, 6972, 'no_lang_code', 'name', 'Bellus Health (Canada)'),
(9030, 6973, 'no_lang_code', 'name', 'Icogenex (United States)'),
(9031, 6974, 'no_lang_code', 'name', 'EcoSynthetix (Canada)'),
(9032, 6975, 'no_lang_code', 'name', 'Environmental Consultants and Contractors'),
(9033, 6976, 'no_lang_code', 'name', 'Ecovative Design (United States)'),
(9034, 6977, 'en', 'name', 'Eden Medical'),
(9035, 6978, 'en', 'name', 'Lawson State Community College'),
(9036, 6979, 'no_lang_code', 'name', 'Layton BioScience (United States)'),
(9037, 6980, 'en', 'name', 'Chartered Institution of Civil Engineering Surveyors'),
(9038, 6981, 'no_lang_code', 'name', 'Sani Marc (Canada)'),
(9039, 6982, 'no_lang_code', 'name', 'GlaxoSmithKline (Canada)'),
(9040, 6983, 'no_lang_code', 'name', 'ID-FISH Technology (United States)'),
(9041, 6984, 'no_lang_code', 'name', 'Edenspace Systems (United States)'),
(9042, 6985, 'en', 'name', 'Innovative Designs in Environments for an Aging Society'),
(9043, 6986, 'no_lang_code', 'name', 'Edge Enterprises (United States)'),
(9044, 6987, 'no_lang_code', 'name', 'Leap of Faith Technologies (United States)'),
(9045, 6988, 'no_lang_code', 'name', 'Learning in Motion (United States)'),
(9046, 6989, 'no_lang_code', 'name', 'EEI Communications (United States)'),
(9047, 6990, 'en', 'name', 'Lee College'),
(9048, 6991, 'no_lang_code', 'name', 'EDJ Associates'),
(9049, 6992, 'en', 'name', 'EdLab Group'),
(9050, 6993, 'en', 'name', 'Edmonds Community College'),
(9051, 6994, 'en', 'name', 'Lehigh Carbon Community College'),
(9052, 6995, 'en', 'name', 'Education Commission of the States'),
(9053, 6996, 'en', 'name', 'Education Connection'),
(9054, 6997, 'en', 'name', 'Education Training And Research'),
(9055, 6998, 'en', 'name', 'Education Coordinating Council'),
(9056, 6999, 'no_lang_code', 'name', 'Hexagon (United Kingdom)'),
(9057, 7000, 'en', 'name', 'Leicestershire Partnership NHS Trust'),
(9058, 7001, 'no_lang_code', 'name', 'Educational Film Center (United States)'),
(9059, 7002, 'en', 'name', 'Illinois Department of Human Services'),
(9060, 7003, 'no_lang_code', 'name', 'Lentigen Technology (United States)'),
(9061, 7004, 'en', 'name', 'Educational Service District 112'),
(9062, 7005, 'fr', 'name', 'Les Scientifines'),
(9063, 7006, 'no_lang_code', 'name', 'Educational Service Incorporation'),
(9064, 7007, 'no_lang_code', 'name', 'Pearson (United States)'),
(9065, 7008, 'no_lang_code', 'name', 'ImageCat (United States)'),
(9066, 7009, 'no_lang_code', 'name', 'Imaging Systems Technology (United States)'),
(9067, 7010, 'en', 'name', 'Anixter Center'),
(9068, 7011, 'en', 'name', 'Let''s Talk Science'),
(9069, 7012, 'en', 'name', 'McREL International'),
(9070, 7013, 'no_lang_code', 'name', 'Edvotek (United States)'),
(9071, 7014, 'en', 'name', 'Lexington Richland Alcohol And Drug Abuse Council'),
(9072, 7015, 'no_lang_code', 'name', 'Eion (Canada)'),
(9073, 7016, 'no_lang_code', 'name', 'EKOS Corporation'),
(9074, 7017, 'en', 'name', 'Liberty Science Center'),
(9075, 7018, 'no_lang_code', 'name', 'Ekso Bionics (United States)'),
(9076, 7019, 'en', 'name', 'El Camino College'),
(9077, 7020, 'no_lang_code', 'name', 'Novus Biologicals (United States)'),
(9078, 7021, 'en', 'name', 'El Dorado Hills Community Vision'),
(9079, 7022, 'en', 'name', 'El Paso Community College'),
(9080, 7023, 'no_lang_code', 'name', 'IMMCO Diagnostics (United States)'),
(9081, 7024, 'en', 'name', 'Iowa Central Community College'),
(9082, 7025, 'en', 'name', 'Iowa Lakes Community College'),
(9083, 7026, 'en', 'name', 'Electrical and Computer Engineering Department Heads Association'),
(9084, 7027, 'en', 'name', 'Iowa Department of Inspections and Appeals'),
(9085, 7028, 'no_lang_code', 'name', 'Immersion (United States)'),
(9086, 7029, 'no_lang_code', 'name', 'Immersion (Canada)'),
(9087, 7030, 'no_lang_code', 'name', 'Antigen Discovery (United States)'),
(9088, 7031, 'no_lang_code', 'name', 'Life Prediction Technologies (Canada)'),
(9089, 7032, 'no_lang_code', 'name', 'Electro Energy (United States)'),
(9090, 7033, 'no_lang_code', 'name', 'Lifepharms (United States)'),
(9091, 7034, 'no_lang_code', 'name', 'Immtech Pharmaceuticals (United States)'),
(9092, 7035, 'no_lang_code', 'name', 'STRATA Skin Sciences (United States)'),
(9093, 7036, 'no_lang_code', 'name', 'Light Age (United States)'),
(9094, 7037, 'no_lang_code', 'name', 'ImmuCell (United States)'),
(9095, 7038, 'no_lang_code', 'name', 'ElectroChem (United States)'),
(9096, 7039, 'no_lang_code', 'name', 'LightBridge Healthcare Research (United States)'),
(9097, 7040, 'no_lang_code', 'name', 'Electronic BioSciences (United States)'),
(9098, 7041, 'no_lang_code', 'name', 'Imperial Innovations (United Kingdom)'),
(9099, 7042, 'no_lang_code', 'name', 'Implant Sciences (United States)'),
(9100, 7043, 'no_lang_code', 'name', 'Electrovaya (Canada)'),
(9101, 7044, 'no_lang_code', 'name', 'Limagrain (United Kingdom)'),
(9102, 7045, 'no_lang_code', 'name', 'Monteco (Canada)'),
(9103, 7046, 'no_lang_code', 'name', 'Element Six (United Kingdom)'),
(9104, 7047, 'no_lang_code', 'name', 'ImQuest BioSciences (United States)'),
(9105, 7048, 'en', 'name', 'Linn Benton Community College'),
(9106, 7049, 'en', 'name', 'Elizabeth Glaser Pediatric AIDS Foundation'),
(9107, 7050, 'no_lang_code', 'name', 'ImmuneChem (Canada)'),
(9108, 7051, 'no_lang_code', 'name', 'ImmuNext (United States)'),
(9109, 7052, 'no_lang_code', 'name', 'ElSohly Laboratories (United States)'),
(9110, 7053, 'en', 'name', 'Immunization Action Coalition'),
(9111, 7054, 'no_lang_code', 'name', 'ImmunoPrecise (Canada)'),
(9112, 7055, 'no_lang_code', 'name', 'Immunovaccine (Canada)'),
(9113, 7056, 'no_lang_code', 'name', 'ImmuRx (United States)'),
(9114, 7057, 'no_lang_code', 'name', 'Elsoms (United Kingdom)'),
(9115, 7058, 'no_lang_code', 'name', 'Quidel Corporation (United States)'),
(9116, 7059, 'no_lang_code', 'name', 'Impact Assessment'),
(9117, 7060, 'no_lang_code', 'name', 'InBios International (United States)'),
(9118, 7061, 'en', 'name', 'Little Big Horn College'),
(9119, 7062, 'no_lang_code', 'name', 'Incell Corporation (United States)'),
(9120, 7063, 'no_lang_code', 'name', 'LKT Laboratories (United States)'),
(9121, 7064, 'en', 'name', 'Livingstone College'),
(9122, 7065, 'en', 'name', 'Lloyd''s Register Foundation'),
(9123, 7066, 'no_lang_code', 'name', 'Centrose (United States)'),
(9124, 7067, 'en', 'name', 'Ministry of Agriculture, Livestock, and Food Supply'),
(9125, 7067, 'pt', 'name', 'MinistƩrio da Agricultura, PecuƔria e Abastecimento'),
(9126, 7068, 'no_lang_code', 'name', 'Centurion Biofuels (Canada)'),
(9127, 7069, 'en', 'name', 'Independent Colleges Office'),
(9128, 7070, 'pt', 'name', 'Estrutura de Missão para os Assuntos do Mar'),
(9129, 7071, 'no_lang_code', 'name', 'LNKChemsolutions'),
(9130, 7072, 'no_lang_code', 'name', 'InDevR (United States)'),
(9131, 7073, 'no_lang_code', 'name', 'Loadpoint (United Kingdom)'),
(9132, 7074, 'en', 'name', 'Indian River State College'),
(9133, 7075, 'no_lang_code', 'name', 'Cerestech (Canada)'),
(9134, 7076, 'en', 'name', 'Indiana Academy of Science'),
(9135, 7077, 'no_lang_code', 'name', 'Local Data Company (United Kingdom)'),
(9136, 7078, 'en', 'name', 'Local Government Commission'),
(9137, 7079, 'fr', 'name', 'Cegep de La Pocatiere'),
(9138, 7080, 'no_lang_code', 'name', 'Indus Instruments (United States)'),
(9139, 7081, 'fr', 'name', 'Cegep de Matane'),
(9140, 7082, 'fr', 'name', 'Cegep de Saint Jerome'),
(9141, 7082, 'en', 'name', 'Cegep of Saint JƩrƓme'),
(9142, 7083, 'no_lang_code', 'name', 'Industrial Science & Technology Network (United States)'),
(9143, 7084, 'fr', 'name', 'Cegep de Sept Iles'),
(9144, 7085, 'no_lang_code', 'name', 'Industrial Tomography Systems (United Kingdom)'),
(9145, 7086, 'fr', 'name', 'Cegep de Victoriaville'),
(9146, 7087, 'fr', 'name', 'Cegep regional de Lanaudiere'),
(9147, 7088, 'no_lang_code', 'name', 'Ineos (United Kingdom)'),
(9148, 7089, 'no_lang_code', 'name', 'Logical Semantics (United States)'),
(9149, 7090, 'en', 'name', 'Emmanuel College - Massachusetts'),
(9150, 7091, 'en', 'name', 'Loma Linda Veterans Association for Research and Education'),
(9151, 7092, 'en', 'name', 'London First'),
(9152, 7093, 'pt', 'name', 'Instituto de Engenharia de Sistemas e Computadores Microsistemas e Nanotecnologias'),
(9153, 7094, 'en', 'name', 'Lone Star College'),
(9154, 7095, 'no_lang_code', 'name', 'Empirical Technologies (United States)'),
(9155, 7096, 'en', 'name', 'Long Island Association for AIDS Care'),
(9156, 7097, 'no_lang_code', 'name', 'EMT Associates (United States)'),
(9157, 7098, 'no_lang_code', 'name', 'En''Urga (United States)'),
(9158, 7099, 'no_lang_code', 'name', 'Lonza (United Kingdom)'),
(9159, 7100, 'no_lang_code', 'name', 'Encode Bio (United States)'),
(9160, 7101, 'en', 'name', 'Lorain County Community College'),
(9161, 7102, 'no_lang_code', 'name', 'Aptose Biosciences (Canada)'),
(9162, 7103, 'pt', 'name', 'Centro de GenƩtica Clƭnica'),
(9163, 7104, 'en', 'name', 'Chadron State College'),
(9164, 7105, 'en', 'name', 'Endocrine Society'),
(9165, 7106, 'en', 'name', 'Los Angeles Community College District'),
(9166, 7107, 'en', 'name', 'Chabot Space and Science Center'),
(9167, 7108, 'en', 'name', 'Los Angeles Unified School District'),
(9168, 7109, 'en', 'name', 'Society of Automotive Engineers International'),
(9169, 7110, 'no_lang_code', 'name', 'Endocyte (United States)'),
(9170, 7111, 'no_lang_code', 'name', 'Endomedix (United States)'),
(9171, 7112, 'no_lang_code', 'name', 'EndoShape (United States)'),
(9172, 7113, 'no_lang_code', 'name', 'Information Ventures (United States)'),
(9173, 7114, 'en', 'name', 'Informed Families'),
(9174, 7115, 'en', 'name', 'Change Happens'),
(9175, 7116, 'no_lang_code', 'name', 'DCS Corporation (United States)'),
(9176, 7117, 'no_lang_code', 'name', 'Endres Machining Innovations (United States)'),
(9177, 7118, 'no_lang_code', 'name', 'ABB (United States)'),
(9178, 7119, 'no_lang_code', 'name', 'Infotech Soft (United States)'),
(9179, 7120, 'no_lang_code', 'name', 'Proton (United Kingdom)'),
(9180, 7121, 'en', 'name', 'Loud Crow Interactive'),
(9181, 7122, 'no_lang_code', 'name', 'Evans Analytical Group (United States)'),
(9182, 7123, 'no_lang_code', 'name', 'Inframat Corporation (United States)'),
(9183, 7124, 'no_lang_code', 'name', 'Infrared Fiber Systems (United States)'),
(9184, 7125, 'en', 'name', 'Kettering Foundation'),
(9185, 7126, 'en', 'name', 'Kentucky Science Center'),
(9186, 7127, 'no_lang_code', 'name', 'ING Robotic Aviation'),
(9187, 7128, 'no_lang_code', 'name', 'Lpath (United States)'),
(9188, 7129, 'no_lang_code', 'name', 'Ingegneria dei Sistemi (United Kingdom)'),
(9189, 7130, 'no_lang_code', 'name', 'Ingenza (United Kingdom)'),
(9190, 7131, 'en', 'name', 'Energy Saving Trust'),
(9191, 7132, 'no_lang_code', 'name', 'Energy Science Laboratories (United States)'),
(9192, 7133, 'no_lang_code', 'name', 'Charles River Associates'),
(9193, 7134, 'no_lang_code', 'name', 'Charlesson (United States)'),
(9194, 7135, 'no_lang_code', 'name', 'InnoSense (United States)'),
(9195, 7136, 'no_lang_code', 'name', 'Lucerna (United States)'),
(9196, 7137, 'en', 'name', 'Engineering Conferences International'),
(9197, 7138, 'no_lang_code', 'name', 'LumArray (United States)'),
(9198, 7139, 'no_lang_code', 'name', 'Luminex (United States)'),
(9199, 7140, 'no_lang_code', 'name', 'Luminex (Canada)'),
(9200, 7141, 'en', 'name', 'Lyndon State College'),
(9201, 7142, 'no_lang_code', 'name', 'Chelsea Technologies (United Kingdom)'),
(9202, 7143, 'no_lang_code', 'name', 'M Squared Lasers (United Kingdom)'),
(9203, 7144, 'en', 'name', 'Cheltenham Festivals'),
(9204, 7145, 'no_lang_code', 'name', 'M-Solv (United Kingdom)'),
(9205, 7146, 'no_lang_code', 'name', 'Innoval Technology (United Kingdom)'),
(9206, 7147, 'en', 'name', 'Entomological Society of America'),
(9207, 7148, 'no_lang_code', 'name', 'Chem-Space Associates (United States)'),
(9208, 7149, 'en', 'name', 'Massachusetts Executive Office of Health and Human Services'),
(9209, 7150, 'no_lang_code', 'name', 'Innovative BioTherapies (United States)'),
(9210, 7151, 'no_lang_code', 'name', 'Chemat Technology (United States)'),
(9211, 7152, 'no_lang_code', 'name', 'CASI Pharmaceuticals (United States)'),
(9212, 7153, 'no_lang_code', 'name', 'Innovative Chemical and Environmental Technologies (United States)'),
(9213, 7154, 'no_lang_code', 'name', 'Chembio (United States)'),
(9214, 7155, 'en', 'name', 'Chemeketa Community College'),
(9215, 7156, 'no_lang_code', 'name', 'Mabvax Therapeutics (United States)'),
(9216, 7157, 'no_lang_code', 'name', 'Environmental Design Solutions Limited (United Kingdom)'),
(9217, 7158, 'no_lang_code', 'name', 'MacConnell Research (United States)'),
(9218, 7159, 'en', 'name', 'Environmental Law Institute'),
(9219, 7160, 'no_lang_code', 'name', 'ChemGreen Innovation (Canada)'),
(9220, 7161, 'en', 'name', 'Environmental Mutagenesis and Genomics Society'),
(9221, 7162, 'no_lang_code', 'name', 'Chemica Technologies (United States)'),
(9222, 7163, 'en', 'name', 'Macomb Community College'),
(9223, 7164, 'no_lang_code', 'name', 'NewsHour Productions (United States)'),
(9224, 7165, 'en', 'name', 'Environmental Research Institute of Michigan'),
(9225, 7166, 'no_lang_code', 'name', 'EnviroSim (Canada)'),
(9226, 7167, 'no_lang_code', 'name', 'Enzo Biochem (United States)'),
(9227, 7168, 'no_lang_code', 'name', 'ChemMotif (United States)'),
(9228, 7169, 'no_lang_code', 'name', 'E.ON (United States)'),
(9229, 7170, 'no_lang_code', 'name', 'Epicenter Software (United States)'),
(9230, 7171, 'no_lang_code', 'name', 'Epigen Biosciences (United States)'),
(9231, 7172, 'no_lang_code', 'name', 'Epitope (United States)'),
(9232, 7173, 'no_lang_code', 'name', 'MagneSensors (United States)'),
(9233, 7174, 'no_lang_code', 'name', 'IMRIS (Canada)'),
(9234, 7175, 'no_lang_code', 'name', 'EpiVax (United States)'),
(9235, 7176, 'no_lang_code', 'name', 'Innovative Micro Technology (United States)'),
(9236, 7177, 'no_lang_code', 'name', 'Innovative Surface Technologies (United States)'),
(9237, 7178, 'no_lang_code', 'name', 'Innovative Targeting Solutions (Canada)'),
(9238, 7179, 'no_lang_code', 'name', 'Protasis (United States)'),
(9239, 7180, 'no_lang_code', 'name', 'Magor (Canada)'),
(9240, 7181, 'no_lang_code', 'name', 'Endacea (United States)'),
(9241, 7182, 'en', 'name', 'Maine Maritime Academy'),
(9242, 7183, 'en', 'name', 'Maine Mathematics and Science Alliance'),
(9243, 7184, 'no_lang_code', 'name', 'Maine Molecular Quality Controls (United States)'),
(9244, 7185, 'no_lang_code', 'name', 'Inscent (United States)'),
(9245, 7186, 'en', 'name', 'Chestnut Hill College'),
(9246, 7187, 'no_lang_code', 'name', 'Insight Genetics (United States)'),
(9247, 7188, 'no_lang_code', 'name', 'Insilicos (United States)'),
(9248, 7189, 'en', 'name', 'Erskine College'),
(9249, 7190, 'no_lang_code', 'name', 'Spectris (United Kingdom)'),
(9250, 7191, 'no_lang_code', 'name', 'InSituTec (United States)'),
(9251, 7192, 'en', 'name', 'Manchester City Council'),
(9252, 7193, 'en', 'name', 'Manchester College'),
(9253, 7194, 'no_lang_code', 'name', 'CHI Systems (United States)'),
(9254, 7195, 'no_lang_code', 'name', 'MandalMed (United States)'),
(9255, 7196, 'no_lang_code', 'name', 'CHI Associates (United States)'),
(9256, 7197, 'no_lang_code', 'name', 'Mandel Scientific (Canada)'),
(9257, 7198, 'no_lang_code', 'name', 'InstaRecon (United States)'),
(9258, 7199, 'en', 'name', 'Chicago Association for Research and Education in Science'),
(9259, 7200, 'no_lang_code', 'name', 'Mantech (Canada)'),
(9260, 7201, 'no_lang_code', 'name', 'Magellan BioScience (United States)'),
(9261, 7202, 'no_lang_code', 'name', 'InPore Vape Technologies (United States)'),
(9262, 7203, 'no_lang_code', 'name', 'Mapp Biopharmaceutical (United States)'),
(9263, 7204, 'en', 'name', 'Marin Health and Human Services'),
(9264, 7205, 'en', 'name', 'Chicago Public Schools'),
(9265, 7206, 'no_lang_code', 'name', 'Marker Gene Technologies (United States)'),
(9266, 7207, 'no_lang_code', 'name', 'Martec (Canada)'),
(9267, 7208, 'no_lang_code', 'name', 'Optym (United States)'),
(9268, 7209, 'en', 'name', 'Forest Preserves of Cook County'),
(9269, 7210, 'no_lang_code', 'name', 'Martingale Research (United States)'),
(9270, 7211, 'en', 'name', 'Chief Dull Knife College'),
(9271, 7212, 'en', 'name', 'Child Trends'),
(9272, 7213, 'en', 'name', 'Children’s Discovery Museum of San Jose'),
(9273, 7214, 'en', 'name', 'Children''s Tumor Foundation'),
(9274, 7215, 'en', 'name', 'Boston Children''s Museum'),
(9275, 7216, 'en', 'name', 'Maryville College'),
(9276, 7217, 'en', 'name', 'Institute for Broadening Participation'),
(9277, 7218, 'no_lang_code', 'name', 'Mascoma (Canada)'),
(9278, 7219, 'pt', 'name', 'Escola Superior de Tecnologia da SaĆŗde de Coimbra'),
(9279, 7220, 'en', 'name', 'Massachusetts Bay Community College'),
(9280, 7221, 'no_lang_code', 'name', 'Chimera Technologies (United States)'),
(9281, 7222, 'en', 'name', 'Chippewa Valley Technical College'),
(9282, 7223, 'en', 'name', 'Institute for the Study of Learning and Expertise'),
(9283, 7224, 'no_lang_code', 'name', 'MASSolutions (Canada)'),
(9284, 7225, 'en', 'name', 'National Institute for Women in Trades, Technology & Sciences'),
(9285, 7226, 'no_lang_code', 'name', 'MassTech (United States)'),
(9286, 7227, 'no_lang_code', 'name', 'MAST Carbon (United Kingdom)'),
(9287, 7228, 'no_lang_code', 'name', 'MATECH (United States)'),
(9288, 7229, 'no_lang_code', 'name', 'Chiral Photonics (United States)'),
(9289, 7230, 'no_lang_code', 'name', 'Material Methods (United States)'),
(9290, 7231, 'en', 'name', 'Institute of Mathematical Statistics'),
(9291, 7232, 'no_lang_code', 'name', 'Materials and Systems Research (United States)'),
(9292, 7233, 'no_lang_code', 'name', 'Material Sciences (United States)'),
(9293, 7234, 'en', 'name', 'Math Learning Center'),
(9294, 7235, 'en', 'name', 'EAC Network'),
(9295, 7236, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (United Kingdom)'),
(9296, 7237, 'en', 'name', 'Institution of Civil Engineers'),
(9297, 7238, 'en', 'name', 'Christian Community Health Center'),
(9298, 7239, 'no_lang_code', 'name', 'Alere (United States)'),
(9299, 7240, 'no_lang_code', 'name', 'Christie (Canada)'),
(9300, 7241, 'en', 'name', 'Matrix Institute on Addictions'),
(9301, 7242, 'no_lang_code', 'name', 'Chrysalis BioTherapeutics (United States)'),
(9302, 7243, 'en', 'name', 'Institute for Disabilities Research and Training'),
(9303, 7244, 'no_lang_code', 'name', 'eSpin Technologies (United States)'),
(9304, 7245, 'en', 'name', 'Institute for Family Health'),
(9305, 7246, 'en', 'name', 'Institute for Health and Recovery'),
(9306, 7247, 'no_lang_code', 'name', 'Noble (United States)'),
(9307, 7248, 'no_lang_code', 'name', 'MAX Mobility (United States)'),
(9308, 7249, 'en', 'name', 'Max Planck Florida Institute for Neuroscience'),
(9309, 7250, 'no_lang_code', 'name', 'Maxeler Technologies (United Kingdom)'),
(9310, 7251, 'no_lang_code', 'name', 'FoodChek Systems (Canada)'),
(9311, 7252, 'en', 'name', 'Cicatelli Associates'),
(9312, 7253, 'no_lang_code', 'name', 'Essex and Suffolk Water (United Kingdom)'),
(9313, 7254, 'no_lang_code', 'name', 'MayaTech (United States)'),
(9314, 7255, 'no_lang_code', 'name', 'Ciencia (United States)'),
(9315, 7256, 'no_lang_code', 'name', 'MBio Diagnostics (United States)'),
(9316, 7257, 'en', 'name', 'Haymarket Center'),
(9317, 7258, 'no_lang_code', 'name', 'Etubics (United States)'),
(9318, 7259, 'en', 'name', 'Institute of Particle Physics'),
(9319, 7260, 'no_lang_code', 'name', 'South Carolina ETV (United States)'),
(9320, 7261, 'no_lang_code', 'name', 'MD Precision (Canada)'),
(9321, 7262, 'en', 'name', 'Canadian Institute for Energy Training'),
(9322, 7262, 'fr', 'name', 'Institut Canadien de Formation en Energie'),
(9323, 7263, 'no_lang_code', 'name', 'Nordion (Canada)'),
(9324, 7264, 'no_lang_code', 'name', 'Eutropics Pharmaceuticals (United States)'),
(9325, 7265, 'en', 'name', 'Everett Community College'),
(9326, 7266, 'no_lang_code', 'name', 'Evergen Biotechnologies (United States)'),
(9327, 7267, 'en', 'name', 'Evergreen Valley College'),
(9328, 7268, 'no_lang_code', 'name', 'Evident Point (Canada)'),
(9329, 7269, 'no_lang_code', 'name', 'Evolutionary Genomics (United States)'),
(9330, 7270, 'en', 'name', 'Cincinnati Museum Center'),
(9331, 7271, 'no_lang_code', 'name', 'Exelus (United States)'),
(9332, 7272, 'no_lang_code', 'name', 'Exemplar Genetics (United States)'),
(9333, 7273, 'no_lang_code', 'name', 'Circle Solutions'),
(9334, 7274, 'no_lang_code', 'name', 'Exocell (United States)'),
(9335, 7275, 'no_lang_code', 'name', 'Circulatory Technology (United States)'),
(9336, 7276, 'no_lang_code', 'name', 'PermSelect (United States)'),
(9337, 7277, 'en', 'name', 'Construction Industry Research and Information Association'),
(9338, 7278, 'no_lang_code', 'name', 'Medicago (Canada)'),
(9339, 7279, 'no_lang_code', 'name', 'Medical Decision Modeling (United States)'),
(9340, 7280, 'no_lang_code', 'name', 'Cisco Systems (United States)'),
(9341, 7281, 'fr', 'name', 'AcadƩmie militaire de caroline du sud'),
(9342, 7281, 'en', 'name', 'Citadel'),
(9343, 7282, 'en', 'name', 'City of Bradford Metropolitan District Council'),
(9344, 7283, 'no_lang_code', 'name', 'Exponents (United States)'),
(9345, 7284, 'en', 'name', 'Princess Alexandra Hospital'),
(9346, 7285, 'en', 'name', 'City of Edinburgh Council'),
(9347, 7286, 'no_lang_code', 'name', 'Medical Discovery Partners (United States)'),
(9348, 7287, 'en', 'name', 'City of York Council'),
(9349, 7288, 'no_lang_code', 'name', 'Medical Imaging Applications (United States)'),
(9350, 7289, 'no_lang_code', 'name', 'Expression Therapeutics (United States)'),
(9351, 7290, 'no_lang_code', 'name', 'Zywie (United States)'),
(9352, 7291, 'no_lang_code', 'name', 'Extrel (United States)'),
(9353, 7292, 'en', 'name', 'Civil Aviation Authority'),
(9354, 7293, 'en', 'name', 'Eye and Ear Foundation'),
(9355, 7294, 'no_lang_code', 'name', 'Medigen (United States)'),
(9356, 7295, 'no_lang_code', 'name', 'Aecom (United Kingdom)'),
(9357, 7296, 'no_lang_code', 'name', 'MƩdiMabs (Canada)'),
(9358, 7297, 'no_lang_code', 'name', 'Clancy Docwra (United Kingdom)'),
(9359, 7298, 'no_lang_code', 'name', 'Mediomics (United States)'),
(9360, 7299, 'no_lang_code', 'name', 'MediSpectra (United States)'),
(9361, 7300, 'no_lang_code', 'name', 'Clarovita Nutrition (Canada)'),
(9362, 7301, 'no_lang_code', 'name', 'Clearpath Robotics (Canada)'),
(9363, 7302, 'no_lang_code', 'name', 'MedShape (United States)'),
(9364, 7303, 'en', 'name', 'Cleveland Metropolitan School District'),
(9365, 7304, 'no_lang_code', 'name', 'CleverSys (United States)'),
(9366, 7305, 'en', 'name', 'Clinical and Laboratory Standards Institute'),
(9367, 7306, 'en', 'name', 'Clinical Immunology Society'),
(9368, 7307, 'en', 'name', 'Clinical Research Management'),
(9369, 7308, 'pt', 'name', 'Instituto GeogrÔfico Português'),
(9370, 7309, 'en', 'name', 'Clinical Trials and Surveys Corporation'),
(9371, 7310, 'no_lang_code', 'name', 'Membrane Reactor Technologies (Canada)'),
(9372, 7311, 'no_lang_code', 'name', 'Lonza (United States)'),
(9373, 7312, 'no_lang_code', 'name', 'Mendel Biotechnology (United States)'),
(9374, 7313, 'en', 'name', 'County of Mendocino'),
(9375, 7314, 'no_lang_code', 'name', 'Menssana Research (United States)'),
(9376, 7315, 'en', 'name', 'Mental Health Association of Southeastern Pennsylvania'),
(9377, 7316, 'en', 'name', 'Mental Health Center of Denver'),
(9378, 7317, 'en', 'name', 'Coalition for a Drug Free Hawaii'),
(9379, 7318, 'en', 'name', 'MentorNet'),
(9380, 7319, 'en', 'name', 'Coastal Bend Wellness Foundation'),
(9381, 7320, 'no_lang_code', 'name', 'Mercator MedSystems (United States)'),
(9382, 7321, 'fr', 'name', 'Coalition des Organismes Communautaires QuƩbƩcois de Lutte Contre le Sida'),
(9383, 7322, 'no_lang_code', 'name', 'Meridian Instrument (United States)'),
(9384, 7323, 'en', 'name', 'Merit Network'),
(9385, 7324, 'no_lang_code', 'name', 'Cogmation Robotics (Canada)'),
(9386, 7325, 'no_lang_code', 'name', 'Environment and Health Group (United States)'),
(9387, 7326, 'en', 'name', 'Mesa Community College'),
(9388, 7327, 'pt', 'name', 'Instituto Nacional de Metrologia, Qualidade e Tecnologia'),
(9389, 7327, 'en', 'name', 'National Institute of Metrology Quality and Technology'),
(9390, 7328, 'no_lang_code', 'name', 'COI Ceramics (United States)'),
(9391, 7329, 'en', 'name', 'Meta House');
INSERT INTO `ror_settings` VALUES
(9392, 7330, 'en', 'name', 'Coker College'),
(9393, 7331, 'no_lang_code', 'name', 'Metabolic Technologies (United States)'),
(9394, 7332, 'no_lang_code', 'name', 'Colibri Software (Canada)'),
(9395, 7333, 'no_lang_code', 'name', 'Colibri Technologies (Canada)'),
(9396, 7334, 'no_lang_code', 'name', 'Collaborative Drug Discovery (United States)'),
(9397, 7335, 'no_lang_code', 'name', 'MetaMateria (United States)'),
(9398, 7336, 'no_lang_code', 'name', 'Collagen Matrix (United States)'),
(9399, 7337, 'en', 'name', 'College Ahuntsic'),
(9400, 7337, 'fr', 'name', 'CollĆØge ahuntsic'),
(9401, 7338, 'no_lang_code', 'name', 'MetaMedia Training International (United States)'),
(9402, 7339, 'no_lang_code', 'name', 'ActivBiotics (United States)'),
(9403, 7340, 'fr', 'name', 'CollĆØge d''Alma'),
(9404, 7341, 'no_lang_code', 'name', 'Meticube (Portugal)'),
(9405, 7342, 'en', 'name', 'Fairbanks Native Association'),
(9406, 7343, 'no_lang_code', 'name', 'Fairfield Crystal Technology (United States)'),
(9407, 7344, 'fr', 'name', 'CƩgep Garneau'),
(9408, 7345, 'no_lang_code', 'name', 'Companhia União Fabril'),
(9409, 7346, 'fr', 'name', 'CollĆØge Lionel Groulx'),
(9410, 7347, 'fr', 'name', 'Collège Mérici'),
(9411, 7347, 'en', 'name', 'Merici College'),
(9412, 7348, 'en', 'name', 'College of DuPage'),
(9413, 7349, 'no_lang_code', 'name', 'MetroLaser (United States)'),
(9414, 7350, 'no_lang_code', 'name', 'Council on Alcohol and Drugs (United States)'),
(9415, 7351, 'en', 'name', 'Metropolitan Drug Commission'),
(9416, 7352, 'en', 'name', 'Family and Medical Counseling Service'),
(9417, 7353, 'en', 'name', 'Notre Dame de Namur University'),
(9418, 7353, 'fr', 'name', 'UniversitƩ notre-dame-de-namur'),
(9419, 7354, 'en', 'name', 'Family Health Centers of San Diego'),
(9420, 7355, 'en', 'name', 'Notre Dame of Maryland University'),
(9421, 7356, 'en', 'name', 'Metropolitan Police Service'),
(9422, 7357, 'en', 'name', 'College of Saint Rose'),
(9423, 7358, 'no_lang_code', 'name', 'Faraday Technology (United States)'),
(9424, 7359, 'no_lang_code', 'name', 'MGS Research (United States)'),
(9425, 7360, 'en', 'name', 'Santa Fe University of Art and Design'),
(9426, 7360, 'es', 'name', 'Universidad de Arte y DiseƱo de Santa Fe'),
(9427, 7361, 'en', 'name', 'College of the Canyons'),
(9428, 7362, 'en', 'name', 'College of the Mainland'),
(9429, 7363, 'en', 'name', 'College of Menominee Nation'),
(9430, 7364, 'en', 'name', 'Patricia and Phillip Frost Museum of Science'),
(9431, 7365, 'en', 'name', 'College of the North Atlantic'),
(9432, 7366, 'en', 'name', 'Miami Dade College'),
(9433, 7367, 'fr', 'name', 'CollĆØge Shawinigan'),
(9434, 7368, 'en', 'name', 'Fast Track Drugs and Biologics'),
(9435, 7369, 'no_lang_code', 'name', 'Michigan Molecular Institute (United States)'),
(9436, 7370, 'en', 'name', 'Collinge and Associates'),
(9437, 7371, 'en', 'name', 'Randolph College'),
(9438, 7372, 'en', 'name', 'Michigan Department of Agriculture and Rural Development'),
(9439, 7373, 'no_lang_code', 'name', 'Micro Magnetics (United States)'),
(9440, 7374, 'no_lang_code', 'name', 'Carepayment (United States)'),
(9441, 7375, 'en', 'name', 'Colorado Judicial Branch'),
(9442, 7376, 'no_lang_code', 'name', 'MicroLink Devices (United States)'),
(9443, 7377, 'no_lang_code', 'name', 'Sony Corporation (United States)'),
(9444, 7378, 'no_lang_code', 'name', 'MicroOptical Engineering (United States)'),
(9445, 7379, 'no_lang_code', 'name', 'Reaction Biology Corporation (United States)'),
(9446, 7380, 'no_lang_code', 'name', 'Real Time Analyzers (United States)'),
(9447, 7381, 'fr', 'name', 'FƩdƩration des cƩgeps'),
(9448, 7382, 'no_lang_code', 'name', 'Micropharma (Canada)'),
(9449, 7383, 'en', 'name', 'Columbia College - South Carolina'),
(9450, 7384, 'en', 'name', 'Columbia Education'),
(9451, 7385, 'no_lang_code', 'name', 'Ametek (United States)'),
(9452, 7386, 'no_lang_code', 'name', 'Reaction Engineering International (United States)'),
(9453, 7387, 'no_lang_code', 'name', 'Lord Corporation (United States)'),
(9454, 7388, 'no_lang_code', 'name', 'Indium Corporation (United States)'),
(9455, 7389, 'en', 'name', 'American Federation of Mineralogical Societies'),
(9456, 7390, 'fr', 'name', 'UniversitƩ adventiste de washington'),
(9457, 7390, 'en', 'name', 'Washington Adventist University'),
(9458, 7391, 'no_lang_code', 'name', 'MicroTransponder (United States)'),
(9459, 7392, 'en', 'name', 'Combustion Institute'),
(9460, 7393, 'en', 'name', 'Samuel S Fels Fund'),
(9461, 7394, 'en', 'name', 'Middlesex County College'),
(9462, 7395, 'en', 'name', 'Design Council'),
(9463, 7396, 'no_lang_code', 'name', 'Recombinant Technologies (United States)'),
(9464, 7397, 'no_lang_code', 'name', 'Recon Instruments (Canada)'),
(9465, 7398, 'en', 'name', 'Recovery Consultants of Atlanta'),
(9466, 7399, 'en', 'name', 'Committee on Climate Change'),
(9467, 7400, 'no_lang_code', 'name', 'Mikro Systems (United States)'),
(9468, 7401, 'no_lang_code', 'name', 'Fermalogic (United States)'),
(9469, 7402, 'no_lang_code', 'name', 'HedgePath Pharmaceuticals (United States)'),
(9470, 7403, 'en', 'name', 'Miles College'),
(9471, 7404, 'no_lang_code', 'name', 'Millar (United States)'),
(9472, 7405, 'no_lang_code', 'name', 'Fermionics (United States)'),
(9473, 7406, 'en', 'name', 'Milwaukee Area Technical College'),
(9474, 7407, 'en', 'name', 'Ferrum College'),
(9475, 7408, 'no_lang_code', 'name', 'Mimosa Acoustics (United States)'),
(9476, 7409, 'no_lang_code', 'name', 'iSign Solutions (United States)'),
(9477, 7410, 'no_lang_code', 'name', 'Red Hill Studios'),
(9478, 7411, 'no_lang_code', 'name', 'Minerva Biotechnologies (United States)'),
(9479, 7412, 'en', 'name', 'Red River College'),
(9480, 7413, 'en', 'name', 'Red Rocks Community College'),
(9481, 7414, 'no_lang_code', 'name', 'FFA Sciences (United States)'),
(9482, 7415, 'en', 'name', 'Communication Matters'),
(9483, 7416, 'no_lang_code', 'name', 'FHC (United States)'),
(9484, 7417, 'no_lang_code', 'name', 'Fianium (United Kingdom)'),
(9485, 7418, 'no_lang_code', 'name', 'FibroGen (United States)'),
(9486, 7419, 'no_lang_code', 'name', 'Celerion (Canada)'),
(9487, 7420, 'no_lang_code', 'name', 'ABS Consulting (United States)'),
(9488, 7421, 'no_lang_code', 'name', 'Clod Ensemble (United Kingdom)'),
(9489, 7422, 'en', 'name', 'Community Anti Drug Coalitions of America'),
(9490, 7423, 'en', 'name', 'Community Connections'),
(9491, 7424, 'en', 'name', 'Cure Spinal Muscular Atrophy'),
(9492, 7425, 'no_lang_code', 'name', 'Geotab (Canada)'),
(9493, 7426, 'en', 'name', 'Community Health Action of Staten Island'),
(9494, 7427, 'no_lang_code', 'name', 'Talaris Therapeutics (United States)'),
(9495, 7428, 'en', 'name', 'Community Health Awareness Group'),
(9496, 7429, 'no_lang_code', 'name', 'Field Diagnostic Services (United States)'),
(9497, 7430, 'en', 'name', 'Community Rehabilitation Center'),
(9498, 7431, 'no_lang_code', 'name', 'Feilden Clegg Bradley Studios (United Kingdom)'),
(9499, 7432, 'no_lang_code', 'name', 'Film and Video Umbrella (United Kingdom)'),
(9500, 7433, 'en', 'name', 'San Francisco Film Society'),
(9501, 7434, 'en', 'name', 'Regis College'),
(9502, 7435, 'no_lang_code', 'name', 'Minnetronix (United States)'),
(9503, 7436, 'no_lang_code', 'name', 'Regis Technologies (United States)'),
(9504, 7437, 'en', 'name', 'Rehabilitation Engineering and Assistive Technology Society of North America'),
(9505, 7438, 'no_lang_code', 'name', 'Minnow Environmental (Canada)'),
(9506, 7439, 'en', 'name', 'Community Based Research Centre'),
(9507, 7440, 'no_lang_code', 'name', 'MIRA (United Kingdom)'),
(9508, 7441, 'no_lang_code', 'name', 'Mircom Technologies (Canada)'),
(9509, 7442, 'no_lang_code', 'name', 'Mirna Therapeutics (United States)'),
(9510, 7443, 'no_lang_code', 'name', 'Rehabtek (United States)'),
(9511, 7444, 'no_lang_code', 'name', 'Compound Semiconductor Technologies (United Kingdom)'),
(9512, 7445, 'no_lang_code', 'name', 'Computational Physics (United States)'),
(9513, 7446, 'no_lang_code', 'name', 'Market Intelligence Strategy Centre (Australia)'),
(9514, 7447, 'no_lang_code', 'name', 'FJE Enterprises (United States)'),
(9515, 7448, 'en', 'name', 'Computer History Museum'),
(9516, 7449, 'no_lang_code', 'name', 'Actian (United States)'),
(9517, 7450, 'no_lang_code', 'name', 'Reliable Biopharmaceutical Corporation (United States)'),
(9518, 7451, 'en', 'name', 'Mission to the Street for Christ'),
(9519, 7452, 'no_lang_code', 'name', 'Compuware (United States)'),
(9520, 7453, 'no_lang_code', 'name', 'Concepts NREC (United States)'),
(9521, 7454, 'no_lang_code', 'name', 'Condax (United States)'),
(9522, 7455, 'no_lang_code', 'name', 'Renewable Energy Systems (United States)'),
(9523, 7456, 'no_lang_code', 'name', 'Institute for Learning Innovation (United States)'),
(9524, 7457, 'no_lang_code', 'name', 'Superconductor Technologies (United States)'),
(9525, 7458, 'en', 'name', 'Mississippi Gulf Coast Community College'),
(9526, 7459, 'en', 'name', 'Florence Nightingale Museum'),
(9527, 7460, 'en', 'name', 'Florence–Darlington Technical College'),
(9528, 7461, 'en', 'name', 'Conestoga College'),
(9529, 7462, 'no_lang_code', 'name', 'Conestoga Meat Packers (Canada)'),
(9530, 7463, 'en', 'name', 'Mississippi School for Mathematics and Science'),
(9531, 7464, 'en', 'name', 'Florida Department of Children and Families'),
(9532, 7465, 'en', 'name', 'Saving Sight'),
(9533, 7466, 'en', 'name', 'Connecticut Agricultural Experiment Station'),
(9534, 7467, 'en', 'name', 'Connecticut Department of Children and Families'),
(9535, 7468, 'en', 'name', 'Reformar'),
(9536, 7469, 'no_lang_code', 'name', 'Consad (United States)'),
(9537, 7470, 'no_lang_code', 'name', 'MMTC (United States)'),
(9538, 7471, 'no_lang_code', 'name', 'Mo Sci Corporation (United States)'),
(9539, 7472, 'no_lang_code', 'name', 'Ansys (United Kingdom)'),
(9540, 7473, 'no_lang_code', 'name', 'Fluidity Software (United States)'),
(9541, 7474, 'no_lang_code', 'name', 'Fluorous Technologies (United States)'),
(9542, 7475, 'no_lang_code', 'name', 'Moberg Research (United States)'),
(9543, 7476, 'no_lang_code', 'name', 'Fluxion Biosciences (United States)'),
(9544, 7477, 'no_lang_code', 'name', 'FM Technologies (United States)'),
(9545, 7478, 'no_lang_code', 'name', 'Resonance Research (United States)'),
(9546, 7479, 'no_lang_code', 'name', 'SonaCare Medical (United States)'),
(9547, 7480, 'no_lang_code', 'name', 'SRA International (United States)'),
(9548, 7481, 'no_lang_code', 'name', 'Response Biomedical (Canada)'),
(9549, 7482, 'no_lang_code', 'name', 'FONA International (Canada)'),
(9550, 7483, 'en', 'name', 'Constructing Excellence'),
(9551, 7484, 'no_lang_code', 'name', 'Modellium (Canada)'),
(9552, 7485, 'no_lang_code', 'name', 'RiboMed Biotechnologies (United States)'),
(9553, 7486, 'en', 'name', 'Fond du Lac Reservation'),
(9554, 7487, 'en', 'name', 'Fond du Lac Tribal and Community College'),
(9555, 7488, 'en', 'name', 'Foothill College'),
(9556, 7489, 'no_lang_code', 'name', 'Continuum Dynamics (United States)'),
(9557, 7490, 'en', 'name', 'Contra Costa Community College District'),
(9558, 7491, 'no_lang_code', 'name', 'Reveo (United States)'),
(9559, 7492, 'no_lang_code', 'name', 'Modulim (United States)'),
(9560, 7493, 'en', 'name', 'Contra Costa Health Services'),
(9561, 7494, 'en', 'name', 'Mohave Community College'),
(9562, 7495, 'en', 'name', 'Rhode Island Department of Children, Youth & Families'),
(9563, 7496, 'no_lang_code', 'name', 'Ford Motor Company (United Kingdom)'),
(9564, 7497, 'no_lang_code', 'name', 'Mohawk Innovative Technology (United States)'),
(9565, 7498, 'en', 'name', 'St. Tammany Parish Public School System'),
(9566, 7499, 'no_lang_code', 'name', 'Forecasting International (United States)'),
(9567, 7500, 'no_lang_code', 'name', 'EyePoint Pharmaceuticals (United States)'),
(9568, 7501, 'en', 'name', 'Molecular Biology Consortium'),
(9569, 7502, 'en', 'name', 'Marie Selby Botanical Gardens'),
(9570, 7503, 'no_lang_code', 'name', 'Emerson (United Kingdom)'),
(9571, 7504, 'no_lang_code', 'name', 'Alliance Pharmaceutical (United States)'),
(9572, 7505, 'no_lang_code', 'name', 'Convergent Engineering (United States)'),
(9573, 7506, 'no_lang_code', 'name', 'Convergent Manufacturing Technologies (Canada)'),
(9574, 7507, 'no_lang_code', 'name', 'Molecular Design International (United States)'),
(9575, 7508, 'en', 'name', 'Converse College'),
(9576, 7509, 'no_lang_code', 'name', 'Conversion Energy Enterprises (United States)'),
(9577, 7510, 'en', 'name', 'Cook Inlet Tribal Council'),
(9578, 7511, 'no_lang_code', 'name', 'Molecular Kinetics (United States)'),
(9579, 7512, 'no_lang_code', 'name', 'Molecular LogiX (United States)'),
(9580, 7513, 'no_lang_code', 'name', 'Cooper and Company (United States)'),
(9581, 7514, 'no_lang_code', 'name', 'Molecular Oncology (United States)'),
(9582, 7515, 'en', 'name', 'Cooper University Health Care'),
(9583, 7516, 'en', 'name', 'Cope Community Services'),
(9584, 7517, 'no_lang_code', 'name', 'Copernicus Therapeutics (United States)'),
(9585, 7518, 'en', 'name', 'Forestry Commission Scotland'),
(9586, 7519, 'no_lang_code', 'name', 'Ricardo (United Kingdom)'),
(9587, 7520, 'no_lang_code', 'name', 'Viasystems (United States)'),
(9588, 7521, 'en', 'name', 'Center for Occupational Research and Development'),
(9589, 7522, 'en', 'name', 'Fresno Unified School District'),
(9590, 7523, 'no_lang_code', 'name', 'Cornerstone Systems Northwest (United States)'),
(9591, 7524, 'en', 'name', 'Fort Peck Community College'),
(9592, 7525, 'no_lang_code', 'name', 'Dassault SystĆØmes (United States)'),
(9593, 7526, 'en', 'name', 'Fort Worth Museum of Science and History'),
(9594, 7527, 'en', 'name', 'Richmond Behavioral Health Authority'),
(9595, 7528, 'en', 'name', 'Corporation for National Research Initiatives'),
(9596, 7529, 'en', 'name', 'Fortune Society'),
(9597, 7530, 'en', 'name', 'Richmond Community College'),
(9598, 7531, 'en', 'name', 'Forum for the Future'),
(9599, 7532, 'en', 'name', 'Royal Institution of Chartered Surveyors'),
(9600, 7533, 'no_lang_code', 'name', 'Consarc Design Group (United Kingdom)'),
(9601, 7534, 'fr', 'name', 'RƩseau Technoscience'),
(9602, 7535, 'no_lang_code', 'name', 'Foster-Miller (United States)'),
(9603, 7536, 'no_lang_code', 'name', 'Molecular Targeting Technologies (United States)'),
(9604, 7537, 'no_lang_code', 'name', 'CorSolutions (United States)'),
(9605, 7538, 'en', 'name', 'Foundation for Advancements in Science and Education'),
(9606, 7539, 'no_lang_code', 'name', 'CorTechs Labs (United States)'),
(9607, 7540, 'no_lang_code', 'name', 'Cortex Pharmaceuticals (United States)'),
(9608, 7541, 'en', 'name', 'River Region Human Services'),
(9609, 7542, 'no_lang_code', 'name', 'Molecules for Health (United States)'),
(9610, 7543, 'en', 'name', 'Riverside Community College District'),
(9611, 7544, 'en', 'name', 'Foundation for Independent Higher Education'),
(9612, 7545, 'no_lang_code', 'name', 'Cosmos Corporation (United States)'),
(9613, 7546, 'no_lang_code', 'name', 'Fox Chase Chemical Diversity Center'),
(9614, 7547, 'no_lang_code', 'name', 'Costain (United Kingdom)'),
(9615, 7548, 'no_lang_code', 'name', 'Fox Learning Systems (United States)'),
(9616, 7549, 'no_lang_code', 'name', 'Fractal Systems (Canada)'),
(9617, 7550, 'no_lang_code', 'name', 'Molsoft (United States)'),
(9618, 7551, 'en', 'name', 'Franklin County Genealogical & Historical Society'),
(9619, 7552, 'en', 'name', 'Franklin Regional Council of Governments'),
(9620, 7553, 'en', 'name', 'Council for Chemical Research'),
(9621, 7554, 'en', 'name', 'Freshwater Fisheries Society of BC'),
(9622, 7555, 'en', 'name', 'Council of Graduate Schools'),
(9623, 7556, 'no_lang_code', 'name', 'Front Range Scientific Computations'),
(9624, 7557, 'en', 'name', 'Council for the Advancement of Science Writing'),
(9625, 7558, 'no_lang_code', 'name', 'Robert Olson Consulting (United States)'),
(9626, 7559, 'no_lang_code', 'name', 'Robin Medical (United States)'),
(9627, 7560, 'no_lang_code', 'name', 'Robotiq (Canada)'),
(9628, 7561, 'en', 'name', 'Council of State and Territorial Epidemiologists'),
(9629, 7562, 'en', 'name', 'Council of State Governments'),
(9630, 7563, 'en', 'name', 'Council on Competitiveness'),
(9631, 7564, 'no_lang_code', 'name', 'Rocky Mountain Bicycles (Canada)'),
(9632, 7565, 'en', 'name', 'Council on Social Work Education'),
(9633, 7566, 'en', 'name', 'Council on Undergraduate Research'),
(9634, 7567, 'no_lang_code', 'name', 'Fu Associates (United States)'),
(9635, 7568, 'no_lang_code', 'name', 'Fuel Theatre (United Kingdom)'),
(9636, 7569, 'en', 'name', 'Council on Prevention and Education: Substances'),
(9637, 7570, 'no_lang_code', 'name', 'Rocky Mountain Research (United States)'),
(9638, 7571, 'no_lang_code', 'name', 'Rogue Research (Canada)'),
(9639, 7572, 'cy', 'name', 'Cyfoeth Naturiol Cymru'),
(9640, 7572, 'en', 'name', 'Natural Resources Wales'),
(9641, 7573, 'en', 'name', 'County College of Morris'),
(9642, 7574, 'en', 'name', 'Earlham Institute'),
(9643, 7575, 'no_lang_code', 'name', 'Chemring Technology Solutions (United Kingdom)'),
(9644, 7576, 'en', 'name', 'Council on Environmental Quality'),
(9645, 7577, 'en', 'name', 'Courtesy Travel Service'),
(9646, 7578, 'no_lang_code', 'name', 'Romny Scientific (United States)'),
(9647, 7579, 'es', 'name', 'Instituto Costarricense de Investigación y Enseñanza en Nutrición y Salud'),
(9648, 7580, 'en', 'name', 'National Archives'),
(9649, 7580, 'cy', 'name', 'Yr Archifau Cenedlaethol'),
(9650, 7581, 'no_lang_code', 'name', 'Futures Group (United States)'),
(9651, 7582, 'en', 'name', 'National Energy Foundation'),
(9652, 7583, 'no_lang_code', 'name', 'G & A Technical Software (United States)'),
(9653, 7584, 'en', 'name', 'Connecticut Pre Engineering Program'),
(9654, 7585, 'en', 'name', 'National Trust'),
(9655, 7586, 'en', 'name', 'Gadsden State Community College'),
(9656, 7587, 'en', 'name', 'Rural Alaska Community Action Program'),
(9657, 7588, 'en', 'name', 'Russell Sage Foundation'),
(9658, 7589, 'en', 'name', 'Rust College'),
(9659, 7590, 'no_lang_code', 'name', 'Galenea (United States)'),
(9660, 7591, 'en', 'name', 'Galiano Conservancy Association'),
(9661, 7592, 'en', 'name', 'Royal Society of Arts'),
(9662, 7593, 'no_lang_code', 'name', 'Gallomanor (United Kingdom)'),
(9663, 7594, 'en', 'name', 'Galveston College'),
(9664, 7595, 'no_lang_code', 'name', 'Curis (United States)'),
(9665, 7596, 'no_lang_code', 'name', 'Creatv MicroTech (United States)'),
(9666, 7597, 'en', 'name', 'Department of Justice'),
(9667, 7598, 'en', 'name', 'Royal Society of Medicine'),
(9668, 7599, 'en', 'name', 'Royal Geographical Society'),
(9669, 7600, 'en', 'name', 'Royal Institute of British Architects'),
(9670, 7601, 'en', 'name', 'Royal Institution of Great Britain'),
(9671, 7602, 'en', 'name', 'Stroke Association'),
(9672, 7603, 'en', 'name', 'GateWay Community College'),
(9673, 7604, 'en', 'name', 'Royal National Institute of Blind'),
(9674, 7605, 'no_lang_code', 'name', 'Gateway Community Services (United States)'),
(9675, 7606, 'fr', 'name', 'Consortium de Recherche et Innovations en BioprocƩdƩs Industriels au QuƩbec'),
(9676, 7606, 'en', 'name', 'Quebec Consortium for Industrial Bioprocess Research and Innovation'),
(9677, 7607, 'no_lang_code', 'name', 'Crinetics Pharmaceuticals (United States)'),
(9678, 7608, 'en', 'name', 'Royal Society'),
(9679, 7608, 'cy', 'name', 'Y Gymdeithas Frenhinol'),
(9680, 7609, 'fr', 'name', 'La SociƩtƩ royale du Canada'),
(9681, 7609, 'en', 'name', 'Royal Society of Canada'),
(9682, 7610, 'no_lang_code', 'name', 'Rowan Williams Davies & Irwin (Canada)'),
(9683, 7611, 'no_lang_code', 'name', 'Critical Pharmaceuticals (United Kingdom)'),
(9684, 7612, 'no_lang_code', 'name', 'Walsh Group'),
(9685, 7613, 'en', 'name', 'Royal Astronomical Society of Canada'),
(9686, 7614, 'no_lang_code', 'name', 'Gaudenzia (United States)'),
(9687, 7615, 'no_lang_code', 'name', 'Critical Software (Portugal)'),
(9688, 7616, 'gd', 'name', 'Banca RƬoghail na h-Alba'),
(9689, 7616, 'no_lang_code', 'name', 'Royal Bank of Scotland (United Kingdom)'),
(9690, 7617, 'no_lang_code', 'name', 'GC Image (United States)'),
(9691, 7618, 'en', 'name', 'Crohn''s and Colitis Foundation'),
(9692, 7619, 'en', 'name', 'Wildlife Trusts'),
(9693, 7620, 'en', 'name', 'Theiss Research'),
(9694, 7621, 'no_lang_code', 'name', 'EKF Diagnostics (United States)'),
(9695, 7622, 'no_lang_code', 'name', 'CrossChasm Technologies (Canada)'),
(9696, 7623, 'no_lang_code', 'name', 'Theradex Oncology (United States)'),
(9697, 7624, 'no_lang_code', 'name', 'Crosslight Software (Canada)'),
(9698, 7625, 'no_lang_code', 'name', 'Cryomagnetics (United States)'),
(9699, 7626, 'no_lang_code', 'name', 'Theralogix (United States)'),
(9700, 7627, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Canada)'),
(9701, 7628, 'no_lang_code', 'name', 'Therametric Technologies (United States)'),
(9702, 7629, 'no_lang_code', 'name', 'Rohde & Schwarz (United Kingdom)'),
(9703, 7630, 'no_lang_code', 'name', 'Therapyx (United States)'),
(9704, 7631, 'no_lang_code', 'name', 'Qiagen (United States)'),
(9705, 7632, 'no_lang_code', 'name', 'GT Advanced Technologies (United States)'),
(9706, 7633, 'no_lang_code', 'name', 'TheraSource (United States)'),
(9707, 7634, 'no_lang_code', 'name', 'Fugro (United States)'),
(9708, 7635, 'no_lang_code', 'name', 'Thermal-Lube (Canada)'),
(9709, 7636, 'no_lang_code', 'name', 'Thermalin Diabetes (United States)'),
(9710, 7637, 'no_lang_code', 'name', 'Thermofin (Canada)'),
(9711, 7638, 'no_lang_code', 'name', 'Genaera (United States)'),
(9712, 7639, 'no_lang_code', 'name', 'C-Tech Innovation (United Kingdom)'),
(9713, 7640, 'no_lang_code', 'name', 'BioFusionary Corporation (United States)'),
(9714, 7641, 'no_lang_code', 'name', 'Thermo Fisher Scientific (United Kingdom)'),
(9715, 7642, 'no_lang_code', 'name', 'Control Technology Incorporation (United States)'),
(9716, 7643, 'no_lang_code', 'name', 'Thinktank'),
(9717, 7644, 'no_lang_code', 'name', 'Gencoa (United Kingdom)'),
(9718, 7645, 'en', 'name', 'Calspan-University of Buffalo Research Center'),
(9719, 7646, 'no_lang_code', 'name', 'Cumberland Pharmaceuticals (United States)'),
(9720, 7647, 'no_lang_code', 'name', 'Gene Check (United States)'),
(9721, 7648, 'no_lang_code', 'name', 'Thomas Swan (United Kingdom)'),
(9722, 7649, 'no_lang_code', 'name', 'GNS Healthcare (United States)'),
(9723, 7650, 'no_lang_code', 'name', 'Thoratec Corporation (United States)'),
(9724, 7651, 'no_lang_code', 'name', 'CustomKYnetics (United States)'),
(9725, 7652, 'en', 'name', 'Cuyahoga County Board of Health'),
(9726, 7653, 'no_lang_code', 'name', 'CW Optics (United States)'),
(9727, 7654, 'no_lang_code', 'name', 'Thomas Keating Ltd'),
(9728, 7655, 'no_lang_code', 'name', 'Genlantis (United States)'),
(9729, 7656, 'no_lang_code', 'name', 'Affinity Water (United Kingdom)'),
(9730, 7657, 'no_lang_code', 'name', 'CyberTech (United States)'),
(9731, 7658, 'no_lang_code', 'name', 'Columbus Technologies and Services (United States)'),
(9732, 7659, 'no_lang_code', 'name', 'Thrombodyne (United States)'),
(9733, 7660, 'no_lang_code', 'name', 'Cyberkinetics (United States)'),
(9734, 7661, 'no_lang_code', 'name', 'Cook General BioTechnology (United States)'),
(9735, 7662, 'no_lang_code', 'name', 'General Dynamics (United Kingdom)'),
(9736, 7663, 'no_lang_code', 'name', 'CyberLogic (United States)'),
(9737, 7664, 'no_lang_code', 'name', 'Cybernet Systems Corporation (United States)'),
(9738, 7665, 'no_lang_code', 'name', 'Cygnus (United States)'),
(9739, 7666, 'no_lang_code', 'name', 'Thromgen (United States)'),
(9740, 7667, 'no_lang_code', 'name', 'RWE (United Kingdom)'),
(9741, 7668, 'no_lang_code', 'name', 'TimeDomain CVD (United States)'),
(9742, 7669, 'no_lang_code', 'name', 'Cynosure (United States)'),
(9743, 7670, 'no_lang_code', 'name', 'RxBio (United States)'),
(9744, 7671, 'no_lang_code', 'name', 'Titanium Metals Corporation (United Kingdom)'),
(9745, 7672, 'no_lang_code', 'name', 'Virscio (United States)'),
(9746, 7673, 'no_lang_code', 'name', 'LungLife AI (United States)'),
(9747, 7674, 'no_lang_code', 'name', 'Tinderbox Consultants (United Kingdom)'),
(9748, 7675, 'no_lang_code', 'name', 'Genesegues (United States)'),
(9749, 7676, 'no_lang_code', 'name', 'STMicroelectronics (United Kingdom)'),
(9750, 7677, 'no_lang_code', 'name', 'Cytex Therapeutics (United States)'),
(9751, 7678, 'no_lang_code', 'name', 'TiNi Alloy (United States)'),
(9752, 7679, 'no_lang_code', 'name', 'Cytobank (United States)'),
(9753, 7680, 'it', 'name', 'Istituto Nanoscienze'),
(9754, 7681, 'no_lang_code', 'name', 'Tissue Genetics (United States)'),
(9755, 7682, 'no_lang_code', 'name', 'Saaten Union (United Kingdom)'),
(9756, 7683, 'no_lang_code', 'name', 'OPKO Health (Canada)'),
(9757, 7684, 'no_lang_code', 'name', 'CytoCure (United States)'),
(9758, 7685, 'no_lang_code', 'name', 'Sabbagh Associates'),
(9759, 7686, 'no_lang_code', 'name', 'SABMiller (United Kingdom)'),
(9760, 7687, 'no_lang_code', 'name', 'Cytograft Tissue Engineering (United States)'),
(9761, 7688, 'no_lang_code', 'name', 'Scott Sabolich Prosthetics And Research (United States)'),
(9762, 7689, 'en', 'name', 'Saddleback College'),
(9763, 7690, 'no_lang_code', 'name', 'Bio Tissue (United States)'),
(9764, 7691, 'no_lang_code', 'name', 'TLC Precision Wafer Technology (United States)'),
(9765, 7692, 'no_lang_code', 'name', 'TMD Technologies (United Kingdom)'),
(9766, 7693, 'en', 'name', 'Genetica DNA Laboratories'),
(9767, 7694, 'en', 'name', 'TMJ Association'),
(9768, 7695, 'no_lang_code', 'name', 'TMO Renewables (United Kingdom)'),
(9769, 7696, 'en', 'name', 'Sage College of Albany'),
(9770, 7697, 'no_lang_code', 'name', 'Cytoskeleton (United States)'),
(9771, 7698, 'en', 'name', 'Together'),
(9772, 7699, 'no_lang_code', 'name', 'Saint-Gobain (United States)'),
(9773, 7700, 'no_lang_code', 'name', 'D-Wave Systems (Canada)'),
(9774, 7701, 'en', 'name', 'Bucks County Division of Human Services'),
(9775, 7702, 'no_lang_code', 'name', 'Danaher (United Kingdom)'),
(9776, 7703, 'en', 'name', 'Dakota County Technical College'),
(9777, 7704, 'no_lang_code', 'name', 'Dakota Technologies (United States)'),
(9778, 7705, 'no_lang_code', 'name', 'La Jolla Science Applications (United States)'),
(9779, 7706, 'no_lang_code', 'name', 'TomoWave Laboratories (United States)'),
(9780, 7707, 'no_lang_code', 'name', 'TopoGEN (United States)'),
(9781, 7708, 'es', 'name', 'Colegios Comunitarios del Condado de Dallas'),
(9782, 7708, 'en', 'name', 'Dallas County Community College District'),
(9783, 7709, 'en', 'name', 'St. John''s College'),
(9784, 7710, 'no_lang_code', 'name', 'GeneTrace Systems (United States)'),
(9785, 7711, 'no_lang_code', 'name', 'Tornado Spectral Systems (Canada)'),
(9786, 7712, 'no_lang_code', 'name', 'Daniel H. Wagner Associates (United States)'),
(9787, 7713, 'en', 'name', 'Toronto Centre for Phenogenomics'),
(9788, 7714, 'no_lang_code', 'name', 'Data Management Services (United States)'),
(9789, 7715, 'no_lang_code', 'name', 'Toshiba (United Kingdom)'),
(9790, 7716, 'en', 'name', 'Saint Vincent College'),
(9791, 7717, 'no_lang_code', 'name', 'Genia Photonics (Canada)'),
(9792, 7718, 'no_lang_code', 'name', 'Salford Systems (United States)'),
(9793, 7719, 'no_lang_code', 'name', 'Total Child Health (United States)'),
(9794, 7720, 'no_lang_code', 'name', 'Geninov (Canada)'),
(9795, 7721, 'no_lang_code', 'name', 'Dawkins Productions (United States)'),
(9796, 7722, 'en', 'name', 'Daytona State College'),
(9797, 7723, 'no_lang_code', 'name', 'Touch of Life Technologies (United States)'),
(9798, 7724, 'en', 'name', 'Salt Lake Community College'),
(9799, 7725, 'no_lang_code', 'name', 'dbaza health (United States)'),
(9800, 7726, 'no_lang_code', 'name', 'Saltire Software (United States)'),
(9801, 7727, 'en', 'name', 'Tourette Association of America'),
(9802, 7728, 'en', 'name', 'San Antonio Fighting Back'),
(9803, 7729, 'no_lang_code', 'name', 'De La Rue (United Kingdom)'),
(9804, 7730, 'en', 'name', 'Town and Country Planning Association'),
(9805, 7731, 'en', 'name', 'San Antonio Metropolitan Health District'),
(9806, 7732, 'no_lang_code', 'name', 'Decision Demographics (United States)'),
(9807, 7733, 'no_lang_code', 'name', 'Tracer Technologies (United States)'),
(9808, 7734, 'en', 'name', 'San Diego Biomedical Research Institute'),
(9809, 7735, 'no_lang_code', 'name', 'Transcendent Endeavors (United States)'),
(9810, 7736, 'no_lang_code', 'name', 'Decision Systems (United States)'),
(9811, 7737, 'en', 'name', 'Montana Council of Teachers of Mathematics'),
(9812, 7738, 'en', 'name', 'San Dieguito Alliance'),
(9813, 7739, 'no_lang_code', 'name', 'Transfusion and Transplantation Technologies (United States)'),
(9814, 7740, 'no_lang_code', 'name', 'TransGenex Nanobiotech (United States)'),
(9815, 7741, 'no_lang_code', 'name', 'Beryllium (United States)'),
(9816, 7742, 'en', 'name', 'San Francisco Community Clinic Consortium'),
(9817, 7743, 'no_lang_code', 'name', 'deCODE Genetics (Iceland)'),
(9818, 7743, 'is', 'name', 'ƍslensk erfưagreining'),
(9819, 7744, 'no_lang_code', 'name', 'Translink (United Kingdom)'),
(9820, 7745, 'en', 'name', 'Deep River Science Academy'),
(9821, 7746, 'en', 'name', 'San Jacinto College'),
(9822, 7747, 'en', 'name', 'Defense Advanced Research Projects Agency'),
(9823, 7748, 'en', 'name', 'San Jose City College'),
(9824, 7749, 'en', 'name', 'San Juan College'),
(9825, 7750, 'no_lang_code', 'name', 'Transonic Systems (United States)'),
(9826, 7751, 'en', 'name', 'San Mateo County Community College District'),
(9827, 7752, 'no_lang_code', 'name', 'LAC Group (United States)'),
(9828, 7753, 'en', 'name', 'Monterey Peninsula College'),
(9829, 7754, 'en', 'name', 'Transport Scotland'),
(9830, 7755, 'no_lang_code', 'name', 'Saneron CCEL Therapeutics (United States)'),
(9831, 7756, 'no_lang_code', 'name', 'Transposagen Biopharmaceuticals (United States)'),
(9832, 7757, 'no_lang_code', 'name', 'Degenkolb (United States)'),
(9833, 7758, 'en', 'name', 'Montgomery County Community College'),
(9834, 7759, 'no_lang_code', 'name', 'Degge Group (United States)'),
(9835, 7760, 'en', 'name', 'Montgomery County Public Schools'),
(9836, 7761, 'no_lang_code', 'name', 'DEKK-TEC (United States)'),
(9837, 7762, 'en', 'name', 'Del Mar College'),
(9838, 7763, 'en', 'name', 'Santa Barbara Botanic Garden'),
(9839, 7764, 'en', 'name', 'Tri County Technical College'),
(9840, 7765, 'en', 'name', 'Department of Services for Children Youth and their Families'),
(9841, 7766, 'en', 'name', 'Santa Barbara City College'),
(9842, 7767, 'no_lang_code', 'name', 'Tri Y Environmental Research Institute (Canada)'),
(9843, 7768, 'no_lang_code', 'name', 'TRIA Bioscience (United States)'),
(9844, 7769, 'en', 'name', 'Delaware Technical Community College'),
(9845, 7770, 'en', 'name', 'Department of Alcohol, Drug, and Mental Health Services'),
(9846, 7771, 'en', 'name', 'Santa Barbara Museum of Natural History'),
(9847, 7772, 'en', 'name', 'Montrose Center'),
(9848, 7773, 'no_lang_code', 'name', 'Delcam (United Kingdom)'),
(9849, 7774, 'no_lang_code', 'name', 'Montserrat Volcano Observatory'),
(9850, 7775, 'en', 'name', 'Montshire Museum of Science'),
(9851, 7776, 'en', 'name', 'Moraine Valley Community College'),
(9852, 7777, 'no_lang_code', 'name', 'TriboFilm Research (United States)'),
(9853, 7778, 'en', 'name', 'Trident Technical College'),
(9854, 7779, 'no_lang_code', 'name', 'TriLink BioTechnologies (United States)'),
(9855, 7780, 'en', 'name', 'Trinity Washington University'),
(9856, 7780, 'es', 'name', 'Universidad Trinity Washington'),
(9857, 7781, 'no_lang_code', 'name', 'DeltaMetrics (United States)'),
(9858, 7782, 'no_lang_code', 'name', 'SciAps (United States)'),
(9859, 7783, 'en', 'name', 'Santa Fe Community College'),
(9860, 7784, 'no_lang_code', 'name', 'Demtroys (Canada)'),
(9861, 7785, 'no_lang_code', 'name', 'Dendritech (United States)'),
(9862, 7786, 'no_lang_code', 'name', 'Certara (United States)'),
(9863, 7787, 'no_lang_code', 'name', 'Tristan Technologies (United States)'),
(9864, 7788, 'en', 'name', 'Triton College'),
(9865, 7789, 'no_lang_code', 'name', 'Trophogen (United States)'),
(9866, 7790, 'no_lang_code', 'name', 'Santec Systems (United States)'),
(9867, 7791, 'no_lang_code', 'name', 'Morphonix (United States)'),
(9868, 7792, 'no_lang_code', 'name', 'Sarver and Associates (United States)'),
(9869, 7793, 'en', 'name', 'Morris Brown College'),
(9870, 7794, 'en', 'name', 'Sasha Bruce Youthwork'),
(9871, 7795, 'no_lang_code', 'name', 'Mosaiques Diagnostics and Therapeutics (Germany)'),
(9872, 7796, 'en', 'name', 'Moss Rehabilitation Hospital'),
(9873, 7797, 'no_lang_code', 'name', 'Sasken (India)'),
(9874, 7798, 'no_lang_code', 'name', 'TRS Technologies (United States)'),
(9875, 7799, 'no_lang_code', 'name', 'SaskTel (Canada)'),
(9876, 7800, 'no_lang_code', 'name', 'TRW Automotive (United Kingdom)'),
(9877, 7801, 'no_lang_code', 'name', 'Sasol (South Africa)'),
(9878, 7802, 'es', 'name', 'Agencia Federal para el Manejo de Emergencias'),
(9879, 7802, 'en', 'name', 'Federal Emergency Management Agency'),
(9880, 7803, 'no_lang_code', 'name', 'Fillauer (United States)'),
(9881, 7804, 'en', 'name', 'San Antonio College'),
(9882, 7805, 'en', 'name', 'Santa Clara Valley Health and Hospital System'),
(9883, 7806, 'no_lang_code', 'name', 'Motorola (United Kingdom)'),
(9884, 7807, 'no_lang_code', 'name', 'Tucker-Davis Technologies (United States)'),
(9885, 7808, 'no_lang_code', 'name', 'ACell (United States)'),
(9886, 7809, 'no_lang_code', 'name', 'Turner Consulting Group (United States)'),
(9887, 7810, 'no_lang_code', 'name', 'Mound Laser & Photonics Center (United States)'),
(9888, 7811, 'no_lang_code', 'name', 'Aciont (United States)'),
(9889, 7812, 'no_lang_code', 'name', 'SatCon Technology Corporation (United States)'),
(9890, 7813, 'en', 'name', 'Mt. Hood Community College'),
(9891, 7814, 'en', 'name', 'Mount Marty College'),
(9892, 7815, 'en', 'name', 'Turtle Mountain Community College'),
(9893, 7816, 'en', 'name', 'Mount St. Mary''s University'),
(9894, 7817, 'en', 'name', 'Society of British Water and Wastewater Industries'),
(9895, 7818, 'no_lang_code', 'name', 'Mt. San Antonio College'),
(9896, 7819, 'en', 'name', 'Tusculum College'),
(9897, 7820, 'no_lang_code', 'name', 'SC Solutions (United States)'),
(9898, 7821, 'en', 'name', 'Mount Saint Mary College'),
(9899, 7822, 'en', 'name', 'Tyne and Wear Archives and Museums'),
(9900, 7823, 'no_lang_code', 'name', 'Acoustic MedSystems (United States)'),
(9901, 7824, 'en', 'name', 'University of Mount Union'),
(9902, 7824, 'fr', 'name', 'UniversitƩ de mount union'),
(9903, 7825, 'no_lang_code', 'name', 'Servelec Technologies (United Kingdom)'),
(9904, 7826, 'en', 'name', 'Mount Wachusett Community College'),
(9905, 7827, 'no_lang_code', 'name', 'Scarab Genomics (United States)'),
(9906, 7828, 'en', 'name', 'Inova Children''s Hospital'),
(9907, 7829, 'no_lang_code', 'name', 'Kimberly-Clark (United States)'),
(9908, 7830, 'no_lang_code', 'name', 'Schafer Corporation (United States)'),
(9909, 7831, 'en', 'name', 'Mountain Empire Community College'),
(9910, 7832, 'en', 'name', 'USMMA Alumni Association and Foundation'),
(9911, 7833, 'no_lang_code', 'name', 'Schlumberger (United Kingdom)'),
(9912, 7834, 'en', 'name', 'Action for Boston Community Development'),
(9913, 7835, 'en', 'name', 'Pittsburgh Public Schools'),
(9914, 7836, 'en', 'name', 'School for Advanced Research'),
(9915, 7837, 'en', 'name', 'United States Breastfeeding Committee'),
(9916, 7838, 'no_lang_code', 'name', 'ActionDog (United Kingdom)'),
(9917, 7839, 'no_lang_code', 'name', 'Schrodinger (United States)'),
(9918, 7840, 'no_lang_code', 'name', 'Active Motif (United States)'),
(9919, 7841, 'en', 'name', 'United States Drug Testing Laboratories'),
(9920, 7842, 'no_lang_code', 'name', 'Active Space Technologies (Portugal)'),
(9921, 7843, 'no_lang_code', 'name', 'MPB Technologies & Communications (Canada)'),
(9922, 7844, 'en', 'name', 'Actua'),
(9923, 7845, 'no_lang_code', 'name', 'Active Signal Technologies (United States)'),
(9924, 7846, 'en', 'name', 'Actuarial Research Corporation'),
(9925, 7847, 'no_lang_code', 'name', 'SciberQuest (United States)'),
(9926, 7848, 'no_lang_code', 'name', 'MPI Research (United States)'),
(9927, 7849, 'no_lang_code', 'name', 'Actuated Medical (United States)'),
(9928, 7850, 'no_lang_code', 'name', 'Acumen (United States)'),
(9929, 7851, 'no_lang_code', 'name', 'Science Education Solutions (United States)'),
(9930, 7852, 'en', 'name', 'Science Museum'),
(9931, 7853, 'en', 'name', 'Science North'),
(9932, 7854, 'no_lang_code', 'name', 'Agricultural Development Advisory Service (United Kingdom)'),
(9933, 7855, 'en', 'name', 'UK Biobank'),
(9934, 7856, 'no_lang_code', 'name', 'Cirrascale (United States)'),
(9935, 7857, 'no_lang_code', 'name', 'Sciencetech (Canada)'),
(9936, 7858, 'no_lang_code', 'name', 'Uken (Canada)'),
(9937, 7859, 'no_lang_code', 'name', 'Ultra Electronics (Canada)'),
(9938, 7860, 'en', 'name', 'Scientific Consulting Group'),
(9939, 7861, 'no_lang_code', 'name', 'Ultramet (United States)'),
(9940, 7862, 'no_lang_code', 'name', 'Gamma Medica (United States)'),
(9941, 7863, 'no_lang_code', 'name', 'Analogic (Canada)'),
(9942, 7864, 'no_lang_code', 'name', 'Umpqua Research Company (United States)'),
(9943, 7865, 'no_lang_code', 'name', 'Science Take-Out (United States)'),
(9944, 7866, 'fr', 'name', 'Science pour tous'),
(9945, 7867, 'en', 'name', 'Science East Association'),
(9946, 7868, 'no_lang_code', 'name', 'Adherent Technologies (United States)'),
(9947, 7869, 'en', 'name', 'MRC Prion Unit'),
(9948, 7870, 'no_lang_code', 'name', 'Scientific Solutions (United States)'),
(9949, 7871, 'no_lang_code', 'name', 'AdipoGenix (United States)'),
(9950, 7872, 'en', 'name', 'Seattle Central College'),
(9951, 7873, 'no_lang_code', 'name', 'MRF Geosystems (Canada)'),
(9952, 7874, 'no_lang_code', 'name', 'Unisys (United States)'),
(9953, 7875, 'no_lang_code', 'name', 'Seashell Technology (United States)'),
(9954, 7876, 'no_lang_code', 'name', 'Rigaku (United Kingdom)'),
(9955, 7877, 'no_lang_code', 'name', 'United Biomedical (United States)'),
(9956, 7878, 'en', 'name', 'United Engineering Foundation'),
(9957, 7879, 'en', 'name', 'Scotch Whisky Research Institute'),
(9958, 7880, 'no_lang_code', 'name', 'United Environment and Energy (United States)'),
(9959, 7881, 'no_lang_code', 'name', 'Advanced Cell Technology (United States)'),
(9960, 7882, 'en', 'name', 'MUJHU Research Collaboration'),
(9961, 7883, 'en', 'name', 'Adrian College'),
(9962, 7884, 'en', 'name', 'United Tribes Technical College'),
(9963, 7885, 'no_lang_code', 'name', 'United Utilities (United Kingdom)'),
(9964, 7886, 'no_lang_code', 'name', 'Advanced Brain Monitoring (United States)'),
(9965, 7887, 'no_lang_code', 'name', 'United Therapeutics (United States)'),
(9966, 7888, 'no_lang_code', 'name', 'MultiCell Technologies (United States)'),
(9967, 7889, 'no_lang_code', 'name', 'Advanced Ceramics Manufacturing (United States)'),
(9968, 7890, 'no_lang_code', 'name', 'Universal Sensors (United States)'),
(9969, 7891, 'en', 'name', 'Scientists in School'),
(9970, 7892, 'no_lang_code', 'name', 'SciMed Technologies (Canada)'),
(9971, 7893, 'no_lang_code', 'name', 'Scisys (United Kingdom)'),
(9972, 7894, 'no_lang_code', 'name', 'SciTech Development (United States)'),
(9973, 7895, 'no_lang_code', 'name', 'Scott Bader (United Kingdom)'),
(9974, 7896, 'no_lang_code', 'name', 'Scott Instrument Company (United States)'),
(9975, 7897, 'no_lang_code', 'name', 'Advanced Diamond Technologies (United States)'),
(9976, 7898, 'no_lang_code', 'name', 'URS Corporation (United Kingdom)'),
(9977, 7899, 'no_lang_code', 'name', 'Scottish and Southern Energy (United Kingdom)'),
(9978, 7900, 'no_lang_code', 'name', 'Muprime Technology (Canada)'),
(9979, 7901, 'en', 'name', 'Murray State College'),
(9980, 7902, 'en', 'name', 'Wireless Innovation Forum'),
(9981, 7903, 'no_lang_code', 'name', 'Murty Pharmaceuticals (United States)'),
(9982, 7904, 'no_lang_code', 'name', 'Scottish Water (United Kingdom)'),
(9983, 7905, 'en', 'name', 'Sea Education Association'),
(9984, 7906, 'no_lang_code', 'name', 'Sea Run Holdings (United States)'),
(9985, 7907, 'no_lang_code', 'name', 'Seacoast Science (United States)'),
(9986, 7908, 'no_lang_code', 'name', 'Advanced Genetic Systems (United States)'),
(9987, 7909, 'en', 'name', 'Lisbon Geographic Society'),
(9988, 7909, 'pt', 'name', 'Sociedade de Geografia de Lisboa'),
(9989, 7910, 'pt', 'name', 'Museu Nacional de Arte Antiga'),
(9990, 7910, 'en', 'name', 'National Museum of Ancient Art'),
(9991, 7911, 'no_lang_code', 'name', 'SeaStar Solutions (Canada)'),
(9992, 7912, 'pt', 'name', 'Museu Nacional do Azulejo'),
(9993, 7912, 'en', 'name', 'National Azulejo Museum'),
(9994, 7913, 'en', 'name', 'Museum of Science and Industry'),
(9995, 7914, 'en', 'name', 'Museum of Science and Industry'),
(9996, 7915, 'no_lang_code', 'name', 'Advanced Imaging Research (United States)'),
(9997, 7916, 'en', 'name', 'Montana Wyoming Tribal Leaders Council'),
(9998, 7917, 'en', 'name', 'Upsala College'),
(9999, 7918, 'no_lang_code', 'name', 'Advanced Materials Technology (United States)'),
(10000, 7919, 'no_lang_code', 'name', 'Science Approach (United States)'),
(10001, 7920, 'no_lang_code', 'name', 'Advanced Mechanical Technology (United States)'),
(10002, 7921, 'en', 'name', 'Zane State College'),
(10003, 7922, 'no_lang_code', 'name', 'Advanced MicroLabs (United States)'),
(10004, 7923, 'no_lang_code', 'name', 'Advanced MRI Technologies (United States)'),
(10005, 7924, 'no_lang_code', 'name', 'Dianon (United States)'),
(10006, 7925, 'en', 'name', 'Monterey County Health Department'),
(10007, 7926, 'no_lang_code', 'name', 'UT Dots (United States)'),
(10008, 7927, 'no_lang_code', 'name', 'MWH (United Kingdom)'),
(10009, 7928, 'en', 'name', 'My Brother''s Keeper'),
(10010, 7929, 'no_lang_code', 'name', 'Advanced Photonic Crystals (United States)'),
(10011, 7930, 'no_lang_code', 'name', 'MycoLogic (Canada)'),
(10012, 7931, 'no_lang_code', 'name', 'Unicon Research (United States)'),
(10013, 7932, 'no_lang_code', 'name', 'Ondine Biopharma (United States)'),
(10014, 7933, 'no_lang_code', 'name', 'SeaLite Engineering (United States)'),
(10015, 7934, 'no_lang_code', 'name', 'Advanced Scientific Concepts (United States)'),
(10016, 7935, 'no_lang_code', 'name', 'Megger (United Kingdom)'),
(10017, 7936, 'en', 'name', 'John Hunter Children''s Hospital'),
(10018, 7937, 'no_lang_code', 'name', 'Seccuris (Canada)'),
(10019, 7938, 'no_lang_code', 'name', 'Advanced Technology and Research Corporation (United States)'),
(10020, 7939, 'en', 'name', 'Utah Department of Human Services'),
(10021, 7940, 'no_lang_code', 'name', 'HealthMedia (United States)'),
(10022, 7941, 'no_lang_code', 'name', 'Second Foundation (United States)'),
(10023, 7942, 'no_lang_code', 'name', 'UTRON Kinetics (United States)'),
(10024, 7943, 'no_lang_code', 'name', 'Segue Corporation (United States)'),
(10025, 7944, 'no_lang_code', 'name', 'MyScience (United Kingdom)'),
(10026, 7945, 'no_lang_code', 'name', 'Utsi Electronics (United Kingdom)'),
(10027, 7946, 'no_lang_code', 'name', 'Nano-C (United States)'),
(10028, 7947, 'no_lang_code', 'name', 'Advanced Tissue (United States)'),
(10029, 7948, 'no_lang_code', 'name', 'NanoCellect Biomedical (United States)'),
(10030, 7949, 'no_lang_code', 'name', 'Nanoco Technologies (United Kingdom)'),
(10031, 7950, 'en', 'name', 'VA Loma Linda Healthcare System'),
(10032, 7951, 'no_lang_code', 'name', 'NanoComposix (United States)'),
(10033, 7952, 'en', 'name', 'VA New Jersey Health Care System'),
(10034, 7953, 'no_lang_code', 'name', 'Advaxis (United States)'),
(10035, 7954, 'en', 'name', 'Virginia Department of Agriculture and Consumer Services'),
(10036, 7955, 'en', 'name', 'Self Reliance Foundation'),
(10037, 7956, 'en', 'name', 'Advocates for Youth'),
(10038, 7957, 'no_lang_code', 'name', 'Nanomaterials & Nanofabrication Laboratories (United States)'),
(10039, 7958, 'no_lang_code', 'name', 'Vaccinex (United States)'),
(10040, 7959, 'en', 'name', 'Seminole State College of Florida'),
(10041, 7960, 'no_lang_code', 'name', 'AdvR (United States)'),
(10042, 7961, 'no_lang_code', 'name', 'Aedas (United Kingdom)'),
(10043, 7962, 'no_lang_code', 'name', 'VinTech (United States)'),
(10044, 7963, 'no_lang_code', 'name', 'Senecio Software (United States)'),
(10045, 7964, 'no_lang_code', 'name', 'Nanoptics (United States)'),
(10046, 7965, 'no_lang_code', 'name', 'Aegera Therapeutics (Canada)'),
(10047, 7966, 'no_lang_code', 'name', 'Sengenia (United Kingdom)'),
(10048, 7967, 'no_lang_code', 'name', 'NanoScale Corporation (United States)'),
(10049, 7968, 'no_lang_code', 'name', 'Manhattan Scientifics (United States)'),
(10050, 7969, 'no_lang_code', 'name', 'Aeon Imaging (United States)'),
(10051, 7970, 'no_lang_code', 'name', 'NanoSonic (United States)'),
(10052, 7971, 'no_lang_code', 'name', 'Nanospectra Biosciences (United States)'),
(10053, 7972, 'no_lang_code', 'name', 'Urigen Pharmaceuticals (United States)'),
(10054, 7973, 'no_lang_code', 'name', 'Sensonics International (United States)'),
(10055, 7974, 'no_lang_code', 'name', 'Nanosys (United States)'),
(10056, 7975, 'no_lang_code', 'name', 'Nanotek Instruments (United States)'),
(10057, 7976, 'en', 'name', 'Denver VA Medical Center'),
(10058, 7977, 'no_lang_code', 'name', 'Sensor Electronic Technology (United States)'),
(10059, 7978, 'en', 'name', 'Vancouver Aquarium'),
(10060, 7979, 'no_lang_code', 'name', 'Sensor Electronics (United States)'),
(10061, 7980, 'no_lang_code', 'name', 'Vancouver Biotech (Canada)'),
(10062, 7981, 'no_lang_code', 'name', 'Sensor Research and Development Corporation (United States)'),
(10063, 7982, 'no_lang_code', 'name', 'Nanotherapeutics (United States)'),
(10064, 7983, 'no_lang_code', 'name', 'Aerosol Dynamics (United States)'),
(10065, 7984, 'en', 'name', 'Maria Mitchell Association'),
(10066, 7985, 'no_lang_code', 'name', 'AeroVironment (United States)'),
(10067, 7986, 'no_lang_code', 'name', 'Vancouver Enterprise Forum'),
(10068, 7987, 'no_lang_code', 'name', 'AFC Energy (United Kingdom)'),
(10069, 7988, 'no_lang_code', 'name', 'Vascular Vision Pharmaceutical (United States)'),
(10070, 7989, 'no_lang_code', 'name', 'Tioma Therapeutics (United States)'),
(10071, 7990, 'no_lang_code', 'name', 'Affinergy (United States)'),
(10072, 7991, 'en', 'name', 'Sequoia Foundation'),
(10073, 7992, 'no_lang_code', 'name', 'Naprogenix (United States)'),
(10074, 7993, 'no_lang_code', 'name', 'SeraCare Life Sciences (United States)'),
(10075, 7994, 'no_lang_code', 'name', 'Seralogix (United States)'),
(10076, 7995, 'no_lang_code', 'name', 'Virtual Centre of Excellence In Mobile and Personal Communications'),
(10077, 7996, 'no_lang_code', 'name', 'Serco (United Kingdom)'),
(10078, 7997, 'en', 'name', 'Serving Children and Adults in Need'),
(10079, 7998, 'en', 'name', 'Sesame Workshop'),
(10080, 7999, 'no_lang_code', 'name', 'Vcom3D (United States)'),
(10081, 8000, 'en', 'name', 'African Field Epidemiology Network'),
(10082, 8001, 'no_lang_code', 'name', 'DNAtrix (United States)'),
(10083, 8002, 'en', 'name', 'Nashville State Community College'),
(10084, 8003, 'no_lang_code', 'name', 'Enapter (Italy)'),
(10085, 8004, 'en', 'name', 'Africare'),
(10086, 8005, 'en', 'name', 'National Association of State Mental Health Program Directors'),
(10087, 8006, 'en', 'name', 'Seven Counties Services'),
(10088, 8007, 'no_lang_code', 'name', 'Severn Trent (United Kingdom)'),
(10089, 8008, 'no_lang_code', 'name', 'Sharklet Technologies (United States)'),
(10090, 8009, 'en', 'name', 'National Action Council for Minorities in Engineering'),
(10091, 8010, 'en', 'name', 'National Alliance for Hispanic Health'),
(10092, 8011, 'no_lang_code', 'name', 'Vega Wave Systems (United States)'),
(10093, 8012, 'no_lang_code', 'name', 'Agave BioSystems (United States)'),
(10094, 8013, 'no_lang_code', 'name', 'Sharp Laboratories of Europe (United Kingdom)'),
(10095, 8014, 'en', 'name', 'National Aquarium'),
(10096, 8015, 'no_lang_code', 'name', 'Shasta Crystals (United States)'),
(10097, 8016, 'en', 'name', 'Age UK'),
(10098, 8017, 'en', 'name', 'Sheffield City Council'),
(10099, 8018, 'en', 'name', 'Sheldon Jackson College'),
(10100, 8019, 'ga', 'name', 'Cartlann NĆ”isiĆŗnta na hƉireann'),
(10101, 8019, 'en', 'name', 'National Archives'),
(10102, 8020, 'no_lang_code', 'name', 'VenatoRx Pharmaceuticals (United States)'),
(10103, 8021, 'en', 'name', 'National Association of State Alcohol and Drug Abuse Directors'),
(10104, 8022, 'en', 'name', 'Shelton State Community College'),
(10105, 8023, 'en', 'name', 'Shepherd University'),
(10106, 8024, 'en', 'name', 'National Association of Biology Teachers'),
(10107, 8025, 'no_lang_code', 'name', 'Ventria Bioscience (United States)'),
(10108, 8026, 'en', 'name', 'National Association of Health Data Organizations'),
(10109, 8027, 'no_lang_code', 'name', 'Shifa Biomedical (United States)'),
(10110, 8028, 'no_lang_code', 'name', 'Agennix (United States)'),
(10111, 8029, 'en', 'name', 'National Association of State Boards of Education'),
(10112, 8030, 'en', 'name', 'National Audubon Society'),
(10113, 8031, 'no_lang_code', 'name', 'Agenta Biotechnologies (United States)'),
(10114, 8032, 'en', 'name', 'Shorter University'),
(10115, 8033, 'en', 'name', 'National Association for Biomedical Research'),
(10116, 8034, 'no_lang_code', 'name', 'Verafin (Canada)'),
(10117, 8035, 'no_lang_code', 'name', 'AgentSheets (United States)'),
(10118, 8036, 'no_lang_code', 'name', 'Sigma Technologies (United States)'),
(10119, 8037, 'no_lang_code', 'name', 'INFICON (United States)'),
(10120, 8038, 'en', 'name', 'Agile Mind'),
(10121, 8039, 'no_lang_code', 'name', 'Agile Sciences (United States)'),
(10122, 8040, 'en', 'name', 'National Business Group on Health'),
(10123, 8041, 'no_lang_code', 'name', 'Agilent Technologies (United Kingdom)'),
(10124, 8042, 'no_lang_code', 'name', 'Verizon (United States)'),
(10125, 8043, 'no_lang_code', 'name', 'Agiltron (United States)'),
(10126, 8044, 'no_lang_code', 'name', 'Sema Construction (United States)'),
(10127, 8045, 'no_lang_code', 'name', 'Siemens (Portugal)'),
(10128, 8046, 'no_lang_code', 'name', 'Agriculture Environmental Renewal Canada (Canada)'),
(10129, 8047, 'no_lang_code', 'name', 'SeaWell Networks (Canada)'),
(10130, 8048, 'en', 'name', 'National Centre for Atmospheric Science'),
(10131, 8049, 'no_lang_code', 'name', 'Creative Electron (United States)'),
(10132, 8050, 'en', 'name', 'Greater Manchester STEM Centre'),
(10133, 8051, 'no_lang_code', 'name', 'AiCure (United States)'),
(10134, 8052, 'en', 'name', 'Vermont Agency of Human Services'),
(10135, 8053, 'en', 'name', 'National Coalition of STD Directors'),
(10136, 8054, 'en', 'name', 'VA North Texas Health Care System'),
(10137, 8055, 'en', 'name', 'AID Atlanta'),
(10138, 8056, 'en', 'name', 'AIDS Committee of Toronto'),
(10139, 8057, 'en', 'name', 'APLA Health'),
(10140, 8058, 'en', 'name', 'AIDS Service Center of New York City'),
(10141, 8059, 'en', 'name', 'National Committee for Quality Assurance'),
(10142, 8060, 'no_lang_code', 'name', 'Sigmovir Biosystems (United States)');
INSERT INTO `ror_settings` VALUES
(10143, 8061, 'no_lang_code', 'name', 'Air Canada'),
(10144, 8062, 'en', 'name', 'National Conference of State Legislatures'),
(10145, 8063, 'no_lang_code', 'name', 'SignalChem (Canada)'),
(10146, 8064, 'en', 'name', 'Air & Waste Management Association'),
(10147, 8065, 'no_lang_code', 'name', 'Signum Biosciences (United States)'),
(10148, 8066, 'no_lang_code', 'name', 'FuelCell Energy (Canada)'),
(10149, 8067, 'no_lang_code', 'name', 'Air Products (United Kingdom)'),
(10150, 8068, 'no_lang_code', 'name', 'Airak (United States)'),
(10151, 8069, 'en', 'name', 'National Council for Science and the Environment'),
(10152, 8070, 'no_lang_code', 'name', 'Aixtron (United Kingdom)'),
(10153, 8071, 'no_lang_code', 'name', 'Siloam Biosciences (United States)'),
(10154, 8072, 'no_lang_code', 'name', 'Vescent Photonics (United States)'),
(10155, 8073, 'no_lang_code', 'name', 'Aker Arctic (Canada)'),
(10156, 8074, 'no_lang_code', 'name', 'Akina (United States)'),
(10157, 8075, 'no_lang_code', 'name', 'Akonni Biosystems (United States)'),
(10158, 8076, 'no_lang_code', 'name', 'Aktiv-Dry (United States)'),
(10159, 8077, 'no_lang_code', 'name', 'Vestas (Denmark)'),
(10160, 8078, 'en', 'name', 'Alabama Southern Community College'),
(10161, 8079, 'fr', 'name', 'Conseil national d''Ʃthique en recherche chez l''humain'),
(10162, 8079, 'en', 'name', 'National Council on Ethics in Human Research'),
(10163, 8080, 'en', 'name', 'National Disease Research Interchange'),
(10164, 8081, 'no_lang_code', 'name', 'Alacron (United States)'),
(10165, 8082, 'en', 'name', 'National Egg Regulatory Officials'),
(10166, 8083, 'en', 'name', 'National Eisteddfod of Wales'),
(10167, 8084, 'no_lang_code', 'name', 'Vesticon (United States)'),
(10168, 8085, 'en', 'name', 'Alaska Federation of Natives'),
(10169, 8086, 'no_lang_code', 'name', 'Vesuvius (United Kingdom)'),
(10170, 8087, 'en', 'name', 'National Environmental Health Association'),
(10171, 8088, 'en', 'name', 'Alaska Department of Environmental Conservation'),
(10172, 8089, 'no_lang_code', 'name', 'Albany Molecular Research (United States)'),
(10173, 8090, 'no_lang_code', 'name', 'Vical (United States)'),
(10174, 8091, 'en', 'name', 'Royal Armouries'),
(10175, 8092, 'en', 'name', 'Alberta Centre for Advanced MNT Products (Canada)'),
(10176, 8093, 'cy', 'name', 'Amgueddfa Victoria ac Albert'),
(10177, 8093, 'en', 'name', 'Victoria and Albert Museum'),
(10178, 8094, 'en', 'name', 'Alberta Community Council on HIV'),
(10179, 8095, 'no_lang_code', 'name', 'SIMmersion (United States)'),
(10180, 8096, 'en', 'name', 'Victorian Order of Nurses'),
(10181, 8097, 'en', 'name', 'National Geographic Society'),
(10182, 8098, 'en', 'name', 'Bard College at Simon''s Rock'),
(10183, 8099, 'en', 'name', 'Alberta Science Network'),
(10184, 8100, 'no_lang_code', 'name', 'Alberti''s Window (United States)'),
(10185, 8101, 'no_lang_code', 'name', 'Simonsen Laboratories'),
(10186, 8102, 'en', 'name', 'National Governors Association'),
(10187, 8103, 'en', 'name', 'Albertus Magnus College'),
(10188, 8104, 'no_lang_code', 'name', 'Vida Health Communications (United States)'),
(10189, 8105, 'no_lang_code', 'name', 'Simpleware (United Kingdom)'),
(10190, 8106, 'no_lang_code', 'name', 'Vidasym (United States)'),
(10191, 8107, 'no_lang_code', 'name', 'Wellstat (United States)'),
(10192, 8108, 'no_lang_code', 'name', 'SimQuest (United States)'),
(10193, 8109, 'en', 'name', 'National Hemophilia Foundation'),
(10194, 8110, 'no_lang_code', 'name', 'Sion Power (United States)'),
(10195, 8111, 'no_lang_code', 'name', 'Simulent (Canada)'),
(10196, 8112, 'en', 'name', 'Central New Mexico Community College'),
(10197, 8113, 'pt', 'name', 'Instituto Nacional de SaĆŗde Dr. Ricardo Jorge'),
(10198, 8113, 'en', 'name', 'National Institute of Health Dr. Ricardo Jorge'),
(10199, 8114, 'no_lang_code', 'name', 'Alchem Laboratories (United States)'),
(10200, 8115, 'no_lang_code', 'name', 'Sinmat (United States)'),
(10201, 8116, 'no_lang_code', 'name', 'VideoMining (United States)'),
(10202, 8117, 'no_lang_code', 'name', 'ALD NanoSolutions (United States)'),
(10203, 8118, 'no_lang_code', 'name', 'Sirnaomics (United States)'),
(10204, 8119, 'no_lang_code', 'name', 'ViewPlus (United States)'),
(10205, 8120, 'en', 'name', 'Sisseton Wahpeton College'),
(10206, 8121, 'no_lang_code', 'name', 'AlertMe (United Kingdom)'),
(10207, 8122, 'en', 'name', 'Aletheia House'),
(10208, 8123, 'no_lang_code', 'name', 'Site Vision Surveys (United Kingdom)'),
(10209, 8124, 'no_lang_code', 'name', 'National Instruments (United Kingdom)'),
(10210, 8125, 'en', 'name', 'Sitting Bull College'),
(10211, 8126, 'no_lang_code', 'name', 'Monsanto (United Kingdom)'),
(10212, 8127, 'no_lang_code', 'name', 'Alethia Biotherapeutics (Canada)'),
(10213, 8128, 'en', 'name', 'National Maritime Museum'),
(10214, 8129, 'no_lang_code', 'name', 'Alexion Pharmaceuticals (United States)'),
(10215, 8130, 'en', 'name', 'WestCare Foundation'),
(10216, 8131, 'en', 'name', 'National Microelectronics Institute'),
(10217, 8132, 'en', 'name', 'Algebra Project'),
(10218, 8133, 'no_lang_code', 'name', 'Viocare (United States)'),
(10219, 8134, 'en', 'name', 'Algonquin College'),
(10220, 8134, 'fr', 'name', 'CollĆØge Algonquin'),
(10221, 8135, 'en', 'name', 'National Museum Wales'),
(10222, 8136, 'no_lang_code', 'name', 'Analogue Theatre (United Kingdom)'),
(10223, 8137, 'en', 'name', 'National Museums Liverpool'),
(10224, 8138, 'en', 'name', 'Aliviane'),
(10225, 8139, 'no_lang_code', 'name', 'Vion Pharmaceuticals (United States)'),
(10226, 8140, 'en', 'name', 'Beatson West of Scotland Cancer Centre'),
(10227, 8141, 'no_lang_code', 'name', 'Alkermes (United States)'),
(10228, 8142, 'en', 'name', 'Allegany College of Maryland'),
(10229, 8143, 'en', 'name', 'Allegheny Valley Hospital'),
(10230, 8144, 'en', 'name', 'National Network of Public Health Institutes'),
(10231, 8145, 'en', 'name', 'Social Science Education Consortium'),
(10232, 8146, 'no_lang_code', 'name', 'Allele Biotechnology (United States)'),
(10233, 8147, 'no_lang_code', 'name', 'Social Solutions International (United States)'),
(10234, 8148, 'en', 'name', 'Society for Academic Emergency Medicine'),
(10235, 8149, 'no_lang_code', 'name', 'National One Call (United Kingdom)'),
(10236, 8150, 'en', 'name', 'Society for Advancement of Chicanos and Native Americans in Science'),
(10237, 8151, 'no_lang_code', 'name', 'Allied Innovative Systems (United States)'),
(10238, 8152, 'en', 'name', 'American Planning Association'),
(10239, 8153, 'no_lang_code', 'name', 'Allocadia (Canada)'),
(10240, 8154, 'en', 'name', 'Virginia Museum of Natural History'),
(10241, 8155, 'no_lang_code', 'name', 'Alpha Genesis (United States)'),
(10242, 8156, 'en', 'name', 'Society for Prevention Research'),
(10243, 8157, 'en', 'name', 'Society for Public Health Education'),
(10244, 8158, 'en', 'name', 'Society for Risk Analysis'),
(10245, 8159, 'en', 'name', 'National Public Radio'),
(10246, 8160, 'no_lang_code', 'name', 'Virginia Technologies (United States)'),
(10247, 8161, 'no_lang_code', 'name', 'Alpha Technologies (Canada)'),
(10248, 8162, 'en', 'name', 'National Quality Forum'),
(10249, 8163, 'en', 'name', 'Society of General Internal Medicine'),
(10250, 8164, 'en', 'name', 'Society of General Physiologists'),
(10251, 8165, 'no_lang_code', 'name', 'National Recovery Technologies (United States)'),
(10252, 8166, 'en', 'name', 'National Safety Council'),
(10253, 8167, 'en', 'name', 'Society of Hispanic Professional Engineers Foundation'),
(10254, 8168, 'en', 'name', 'National Space Centre'),
(10255, 8169, 'en', 'name', 'Society of Toxicology'),
(10256, 8170, 'no_lang_code', 'name', 'AlphaVax (United States)'),
(10257, 8171, 'no_lang_code', 'name', 'Socratech (United States)'),
(10258, 8172, 'no_lang_code', 'name', 'Sofina Foods (Canada)'),
(10259, 8173, 'en', 'name', 'National Technical Information Service'),
(10260, 8174, 'no_lang_code', 'name', 'National Underground Assets Group'),
(10261, 8175, 'no_lang_code', 'name', 'Soligenix (United States)'),
(10262, 8176, 'en', 'name', 'Native American Cancer Research'),
(10263, 8177, 'no_lang_code', 'name', 'Sitar (United States)'),
(10264, 8178, 'no_lang_code', 'name', 'Viro Dynamics (United States)'),
(10265, 8179, 'no_lang_code', 'name', 'Cell Gate (United States)'),
(10266, 8180, 'en', 'name', 'Society for Canadian Women in Science and Technology'),
(10267, 8181, 'en', 'name', 'Native American Health Center'),
(10268, 8182, 'en', 'name', 'McMaster Children''s Hospital'),
(10269, 8183, 'en', 'name', 'Society of American Foresters'),
(10270, 8184, 'no_lang_code', 'name', 'IMPCO Technologies (Canada)'),
(10271, 8185, 'en', 'name', 'Native American Rehabilitation Association'),
(10272, 8186, 'no_lang_code', 'name', 'Ajinomoto Althea (United States)'),
(10273, 8187, 'en', 'name', 'The Langton Grammar School for Boys'),
(10274, 8188, 'no_lang_code', 'name', 'VirRx (United States)'),
(10275, 8189, 'en', 'name', 'National Association for Public Health Statistics and Information Systems'),
(10276, 8190, 'no_lang_code', 'name', 'SimBiotic Software (United States)'),
(10277, 8191, 'no_lang_code', 'name', 'Simbex (United States)'),
(10278, 8192, 'en', 'name', 'National Conference on Interstate Milk Shipments'),
(10279, 8193, 'en', 'name', 'National Institute for Children’s Health Quality'),
(10280, 8194, 'no_lang_code', 'name', 'Virtalis (United Kingdom)'),
(10281, 8195, 'en', 'name', 'UPMC Altoona'),
(10282, 8196, 'no_lang_code', 'name', 'Altor BioScience (United States)'),
(10283, 8197, 'de', 'name', 'Museum für Naturkunde'),
(10284, 8197, 'en', 'name', 'Museum für Naturkunde - Leibniz Institute for Evolution and Biodiversity Science'),
(10285, 8198, 'no_lang_code', 'name', 'SolPowered Energy Corporation (Canada)'),
(10286, 8199, 'no_lang_code', 'name', 'Natural Pharmacia International (United States)'),
(10287, 8200, 'no_lang_code', 'name', 'Natural Selection (United States)'),
(10288, 8201, 'no_lang_code', 'name', 'Lundin Mining (Portugal)'),
(10289, 8202, 'no_lang_code', 'name', 'Nature Technology Corporation (United States)'),
(10290, 8203, 'no_lang_code', 'name', 'Altravax (United States)'),
(10291, 8204, 'no_lang_code', 'name', 'Nautilus Biosciences (Canada)'),
(10292, 8205, 'en', 'name', 'South Carolina HIV/AIDS Council'),
(10293, 8206, 'en', 'name', 'South Carolina Research Authority'),
(10294, 8207, 'en', 'name', 'Alzheimer''s Association'),
(10295, 8208, 'en', 'name', 'Navajo Nation Division of Health'),
(10296, 8209, 'no_lang_code', 'name', 'Raptamer Discovery Group (United States)'),
(10297, 8210, 'en', 'name', 'South Dakota Academy of Science'),
(10298, 8211, 'no_lang_code', 'name', 'Ambulatory Monitoring (United States)'),
(10299, 8212, 'no_lang_code', 'name', 'Navigen (United States)'),
(10300, 8213, 'no_lang_code', 'name', 'SINTX Technologies (United States)'),
(10301, 8214, 'no_lang_code', 'name', 'Visual Health Solutions (United States)'),
(10302, 8215, 'no_lang_code', 'name', 'Pennon Group (United Kingdom)'),
(10303, 8216, 'no_lang_code', 'name', 'VisionQuest Biomedical (United States)'),
(10304, 8217, 'en', 'name', 'Southeast Alaska Regional Health Consortium'),
(10305, 8218, 'en', 'name', 'Visions of Science Network for Learning'),
(10306, 8219, 'en', 'name', 'American Aging Association'),
(10307, 8220, 'en', 'name', 'Southeast Community College'),
(10308, 8221, 'en', 'name', 'American Association for Dental Research'),
(10309, 8222, 'no_lang_code', 'name', 'Southeast TechInventures (United States)'),
(10310, 8223, 'en', 'name', 'American Association for the Study of Liver Diseases'),
(10311, 8224, 'en', 'name', 'American Association of Blood Banks'),
(10312, 8225, 'en', 'name', 'American Association of Community Colleges'),
(10313, 8226, 'no_lang_code', 'name', 'Vista Engineering (United States)'),
(10314, 8227, 'en', 'name', 'American Association of Engineering Societies'),
(10315, 8228, 'en', 'name', 'National Co-ordinating Centre for Public Engagement'),
(10316, 8229, 'en', 'name', 'Southern Arizona AIDS Foundation'),
(10317, 8230, 'no_lang_code', 'name', 'Vista Photonics (United States)'),
(10318, 8231, 'en', 'name', 'American Association of Physicists in Medicine'),
(10319, 8232, 'no_lang_code', 'name', 'Caldic (Canada)'),
(10320, 8233, 'no_lang_code', 'name', 'Vista Scientific (United States)'),
(10321, 8234, 'en', 'name', 'American College of Chest Physicians'),
(10322, 8235, 'en', 'name', 'American College of Medical Genetics'),
(10323, 8236, 'no_lang_code', 'name', 'VitaCyte (United States)'),
(10324, 8237, 'no_lang_code', 'name', 'Sorbent Technologies (United States)'),
(10325, 8238, 'no_lang_code', 'name', 'Viva Pharmaceutical (Canada)'),
(10326, 8239, 'en', 'name', 'SoundVision Productions'),
(10327, 8240, 'en', 'name', 'American Council of Learned Societies'),
(10328, 8241, 'no_lang_code', 'name', 'Source Signal Imaging'),
(10329, 8242, 'no_lang_code', 'name', 'Vivo Biosciences (United States)'),
(10330, 8243, 'no_lang_code', 'name', 'NEI Corporation (United States)'),
(10331, 8244, 'en', 'name', 'American Educational Research Association'),
(10332, 8245, 'en', 'name', 'Neighborhood House'),
(10333, 8246, 'no_lang_code', 'name', 'American Express (United States)'),
(10334, 8247, 'en', 'name', 'South Dakota Department of Social Services'),
(10335, 8248, 'no_lang_code', 'name', 'Neocera (United States)'),
(10336, 8249, 'en', 'name', 'Vocational Instruction Project Community Services'),
(10337, 8250, 'en', 'name', 'Southern California Alcohol and Drug Programs'),
(10338, 8251, 'en', 'name', 'Southern California Institute for Research and Education'),
(10339, 8252, 'en', 'name', 'American Indian Center'),
(10340, 8253, 'no_lang_code', 'name', 'NeoClone (United States)'),
(10341, 8254, 'en', 'name', 'Southern Governors Association'),
(10342, 8255, 'en', 'name', 'Southern Nevada Health District'),
(10343, 8256, 'no_lang_code', 'name', 'Allozyne (United States)'),
(10344, 8257, 'en', 'name', 'Southern Regional Area Health Education Centers'),
(10345, 8258, 'en', 'name', 'Volunteers of America Los Angeles'),
(10346, 8259, 'en', 'name', 'Voorhees College'),
(10347, 8260, 'no_lang_code', 'name', 'Vortant Technologies (United States)'),
(10348, 8261, 'no_lang_code', 'name', 'W. L. Gore & Associates (United States)'),
(10349, 8262, 'en', 'name', 'Southwestern College - California'),
(10350, 8263, 'no_lang_code', 'name', 'WRc (United Kingdom)'),
(10351, 8264, 'no_lang_code', 'name', 'SoyMeds (United States)'),
(10352, 8265, 'en', 'name', 'W. Alton Jones Cell Science Center'),
(10353, 8266, 'en', 'name', 'American Indian Higher Education Consortium'),
(10354, 8267, 'en', 'name', 'American Indian Science and Engineering Society'),
(10355, 8268, 'en', 'name', 'American Institute of Architects'),
(10356, 8269, 'no_lang_code', 'name', 'Odyssey Trust'),
(10357, 8270, 'no_lang_code', 'name', 'ANDE (United States)'),
(10358, 8271, 'no_lang_code', 'name', 'American Life Science Pharmaceuticals (United States)'),
(10359, 8272, 'no_lang_code', 'name', 'Sparos (Portugal)'),
(10360, 8273, 'no_lang_code', 'name', 'Global Convergence (United States)'),
(10361, 8274, 'en', 'name', 'American Lung Association'),
(10362, 8275, 'en', 'name', 'Wagner College'),
(10363, 8276, 'no_lang_code', 'name', 'John Lewis Partnership (United Kingdom)'),
(10364, 8277, 'en', 'name', 'Wake Technical Community College'),
(10365, 8278, 'en', 'name', 'Special Health Resources for Texas'),
(10366, 8279, 'en', 'name', 'Special Service for Groups'),
(10367, 8280, 'en', 'name', 'HealthRIGHT 360'),
(10368, 8281, 'en', 'name', 'The Society for Post-Acute and Long-Term Care Medicine'),
(10369, 8282, 'no_lang_code', 'name', 'Neural Signals (United States)'),
(10370, 8283, 'en', 'name', 'American Medical Informatics Association'),
(10371, 8284, 'no_lang_code', 'name', 'NeurAxon (Canada)'),
(10372, 8285, 'en', 'name', 'Southwest Tennessee Community College'),
(10373, 8286, 'en', 'name', 'American Nurses Association'),
(10374, 8287, 'no_lang_code', 'name', 'Spectrasonics (United States)'),
(10375, 8288, 'en', 'name', 'American Occupational Therapy Association'),
(10376, 8289, 'no_lang_code', 'name', 'Sommer Materials Research (United States)'),
(10377, 8290, 'en', 'name', 'American Pain Society'),
(10378, 8291, 'no_lang_code', 'name', 'Toxikon (United States)'),
(10379, 8292, 'en', 'name', 'WAMC Northeast Public Radio'),
(10380, 8293, 'en', 'name', 'Wartburg College'),
(10381, 8294, 'no_lang_code', 'name', 'Carterra (United States)'),
(10382, 8295, 'en', 'name', 'American Rock Mechanics Association'),
(10383, 8296, 'no_lang_code', 'name', 'Nesher Technologies (United States)'),
(10384, 8297, 'no_lang_code', 'name', 'Spectros Corporation (United States)'),
(10385, 8298, 'no_lang_code', 'name', 'Neurobehavioral Research (United States)'),
(10386, 8299, 'no_lang_code', 'name', 'NeuroBioTex (United States)'),
(10387, 8300, 'no_lang_code', 'name', 'Spencer Technologies (United States)'),
(10388, 8301, 'en', 'name', 'Washington County Youth Service Bureau'),
(10389, 8302, 'no_lang_code', 'name', 'TRUMPF (United Kingdom)'),
(10390, 8303, 'en', 'name', 'Spring Hill College'),
(10391, 8304, 'no_lang_code', 'name', 'Noble Life Sciences (United States)'),
(10392, 8305, 'no_lang_code', 'name', 'NeuroDx Development (United States)'),
(10393, 8306, 'en', 'name', 'St Louis Community College'),
(10394, 8307, 'en', 'name', 'Saint Louis Science Center'),
(10395, 8308, 'no_lang_code', 'name', 'Zynex (United States)'),
(10396, 8309, 'en', 'name', 'St. Mary''s College of Maryland'),
(10397, 8310, 'en', 'name', 'American Society for Cybernetics'),
(10398, 8311, 'en', 'name', 'American Society for Neurochemistry'),
(10399, 8312, 'en', 'name', 'American Society for Pharmacology and Experimental Therapeutics'),
(10400, 8313, 'en', 'name', 'St. Andrews University'),
(10401, 8314, 'no_lang_code', 'name', 'Waterloo CFD Engineering Consulting'),
(10402, 8315, 'no_lang_code', 'name', 'Epirus Biopharmaceuticals (United States)'),
(10403, 8316, 'no_lang_code', 'name', 'Waters (United Kingdom)'),
(10404, 8317, 'no_lang_code', 'name', 'NeuroNexus (United States)'),
(10405, 8318, 'no_lang_code', 'name', 'NeurOp (United States)'),
(10406, 8319, 'en', 'name', 'American Society of Andrology'),
(10407, 8320, 'en', 'name', 'American Society of Hematology'),
(10408, 8321, 'no_lang_code', 'name', 'Watershed Associates'),
(10409, 8322, 'en', 'name', 'American Society of Human Genetics'),
(10410, 8323, 'en', 'name', 'American Society of International Law'),
(10411, 8324, 'no_lang_code', 'name', 'Watershed'),
(10412, 8325, 'no_lang_code', 'name', 'Spangle Associates'),
(10413, 8326, 'en', 'name', 'Waterwise'),
(10414, 8327, 'en', 'name', 'American Society for Nutrition'),
(10415, 8328, 'no_lang_code', 'name', 'Wave 80 Biosciences (United States)'),
(10416, 8329, 'no_lang_code', 'name', 'Sierra Nevada Corporation (United States)'),
(10417, 8330, 'en', 'name', 'Neurosciences Institute'),
(10418, 8331, 'en', 'name', 'American Society for Parenteral and Enteral Nutrition'),
(10419, 8332, 'no_lang_code', 'name', 'Neuroscript (United States)'),
(10420, 8333, 'no_lang_code', 'name', 'Split Engineering (United States)'),
(10421, 8334, 'no_lang_code', 'name', 'Neurotronics (United States)'),
(10422, 8335, 'no_lang_code', 'name', 'NeuroWave Systems (United States)'),
(10423, 8336, 'no_lang_code', 'name', 'Wavetrend (United Kingdom)'),
(10424, 8337, 'no_lang_code', 'name', 'Targazyme (United States)'),
(10425, 8338, 'no_lang_code', 'name', 'Sunnyside Sea Farms (United States)'),
(10426, 8339, 'no_lang_code', 'name', 'American Superconductor (United States)'),
(10427, 8340, 'en', 'name', 'American Thoracic Society'),
(10428, 8341, 'en', 'name', 'National Renewable Energy Centre'),
(10429, 8342, 'en', 'name', 'Webb Institute'),
(10430, 8343, 'en', 'name', 'St. Joseph''s Hospital'),
(10431, 8344, 'en', 'name', 'New Economics Foundation'),
(10432, 8345, 'en', 'name', 'New England Board of Higher Education'),
(10433, 8346, 'no_lang_code', 'name', 'Weidlinger Associates (United States)'),
(10434, 8347, 'en', 'name', 'Alamo Colleges'),
(10435, 8348, 'en', 'name', 'Academy for Science and Design'),
(10436, 8349, 'en', 'name', 'New Hampshire Hospital'),
(10437, 8350, 'en', 'name', 'Standing to Achieve New Directions'),
(10438, 8351, 'en', 'name', 'New Jersey Department of Human Services'),
(10439, 8352, 'en', 'name', 'Stanley Street Treatment and Resources'),
(10440, 8353, 'no_lang_code', 'name', 'Weinberg Medical Physics (United States)'),
(10441, 8354, 'en', 'name', 'Stark State College'),
(10442, 8355, 'no_lang_code', 'name', 'StataCorp (United States)'),
(10443, 8356, 'no_lang_code', 'name', 'Welichem Biotech (Canada)'),
(10444, 8357, 'en', 'name', 'New Mexico Consortium'),
(10445, 8358, 'en', 'name', 'Nevada Division of Public and Behavioral Health'),
(10446, 8359, 'en', 'name', 'State Science and Technology Institute'),
(10447, 8360, 'en', 'name', 'New Mexico Museum of Natural History Foundation'),
(10448, 8361, 'en', 'name', 'New Mexico Resonance'),
(10449, 8362, 'no_lang_code', 'name', 'ON Semiconductor (Canada)'),
(10450, 8363, 'no_lang_code', 'name', 'StemCells (United States)'),
(10451, 8364, 'en', 'name', 'New Mexico Department of Human Services'),
(10452, 8365, 'en', 'name', 'Women in Engineering ProActive Network'),
(10453, 8366, 'no_lang_code', 'name', 'Stemmatters (Portugal)'),
(10454, 8367, 'en', 'name', 'New North Citizens Council'),
(10455, 8368, 'no_lang_code', 'name', 'Superconducting Systems (United States)'),
(10456, 8369, 'en', 'name', 'Wesleyan College'),
(10457, 8370, 'no_lang_code', 'name', 'Vemco (Canada)'),
(10458, 8371, 'no_lang_code', 'name', 'New Span Opto-Technology (United States)'),
(10459, 8372, 'en', 'name', 'New Victoria Theatre'),
(10460, 8373, 'en', 'name', 'Amity Foundation'),
(10461, 8374, 'no_lang_code', 'name', 'Amorfix (Canada)'),
(10462, 8375, 'no_lang_code', 'name', 'PCAS (Canada)'),
(10463, 8376, 'no_lang_code', 'name', 'Amphora NDT (United Kingdom)'),
(10464, 8377, 'en', 'name', 'New World Laboratories'),
(10465, 8378, 'es', 'name', 'Departamento de Educación de la Ciudad de Nueva York'),
(10466, 8378, 'fr', 'name', 'DĆ©partement de l''Ɖducation de la ville de new york'),
(10467, 8378, 'en', 'name', 'New York City Department of Education'),
(10468, 8379, 'no_lang_code', 'name', 'Springboard (Canada)'),
(10469, 8380, 'no_lang_code', 'name', 'West Portal Software (United States)'),
(10470, 8381, 'en', 'name', 'New York City Health and Hospitals Corporation'),
(10471, 8382, 'en', 'name', 'West Virginia High Technology Consortium Foundation'),
(10472, 8383, 'en', 'name', 'West Virginia School of Osteopathic Medicine'),
(10473, 8384, 'no_lang_code', 'name', 'STMicroelectronics (Canada)'),
(10474, 8385, 'en', 'name', 'Western Interstate Commission for Higher Education'),
(10475, 8386, 'no_lang_code', 'name', 'Stoelting (United States)'),
(10476, 8387, 'en', 'name', 'Stone Child College'),
(10477, 8388, 'en', 'name', 'New York State Office of Alcoholism and Substance Abuse Services'),
(10478, 8389, 'no_lang_code', 'name', 'Stottler Henke Associates (United States)'),
(10479, 8390, 'no_lang_code', 'name', 'Amunix (United States)'),
(10480, 8391, 'en', 'name', 'New York State Unified Court System'),
(10481, 8392, 'en', 'name', 'New York Structural Biology Center'),
(10482, 8393, 'no_lang_code', 'name', 'Analiza (United States)'),
(10483, 8394, 'en', 'name', 'Newberry College'),
(10484, 8395, 'en', 'name', 'Newcastle City Council'),
(10485, 8396, 'no_lang_code', 'name', 'Agilent Technologies (United States)'),
(10486, 8397, 'en', 'name', 'Western Technical College'),
(10487, 8398, 'no_lang_code', 'name', 'Newton Labs (United States)'),
(10488, 8399, 'no_lang_code', 'name', 'Novasentis (United States)'),
(10489, 8400, 'no_lang_code', 'name', 'Westinghouse Electric (United States)'),
(10490, 8401, 'no_lang_code', 'name', 'Westinghouse Electric (Sweden)'),
(10491, 8402, 'no_lang_code', 'name', 'Newton Scientific Incorporation (United States)'),
(10492, 8403, 'en', 'name', 'Center for Naval Analyses'),
(10493, 8404, 'en', 'name', 'Westminster College - Pennsylvania'),
(10494, 8405, 'no_lang_code', 'name', 'Stratonics (United States)'),
(10495, 8406, 'no_lang_code', 'name', 'Stratus Aeronautics (Canada)'),
(10496, 8407, 'no_lang_code', 'name', 'NexTech Materials (United States)'),
(10497, 8408, 'en', 'name', 'New Hampshire Department of Health and Human Services'),
(10498, 8409, 'en', 'name', 'National Health Service Scotland'),
(10499, 8410, 'en', 'name', 'Whatcom Community College'),
(10500, 8411, 'no_lang_code', 'name', 'Structured Materials Industries (United States)'),
(10501, 8412, 'en', 'name', 'Niagara College'),
(10502, 8413, 'no_lang_code', 'name', 'Oxford Instruments (Canada)'),
(10503, 8414, 'en', 'name', 'Wheelock College'),
(10504, 8415, 'en', 'name', 'Student Assistance Services'),
(10505, 8416, 'no_lang_code', 'name', 'Surgical Specialties (Canada)'),
(10506, 8417, 'en', 'name', 'Student Pugwash USA'),
(10507, 8418, 'no_lang_code', 'name', 'White Design (United Kingdom)'),
(10508, 8419, 'en', 'name', 'Substance Abuse Foundation'),
(10509, 8420, 'no_lang_code', 'name', 'Nicolet Chartrand Knoll (Canada)'),
(10510, 8421, 'en', 'name', 'White Mountains Community College'),
(10511, 8422, 'no_lang_code', 'name', 'Nicoya Lifesciences (Canada)'),
(10512, 8423, 'no_lang_code', 'name', 'Summit (United Kingdom)'),
(10513, 8424, 'no_lang_code', 'name', 'White Point Systems (United States)'),
(10514, 8425, 'no_lang_code', 'name', 'Nikon (United Kingdom)'),
(10515, 8426, 'fr', 'name', 'CollĆØge whittier'),
(10516, 8426, 'en', 'name', 'Whittier College'),
(10517, 8427, 'en', 'name', 'Nine Circles Community Health Centre'),
(10518, 8428, 'en', 'name', 'Wholistic Stress Control Institute'),
(10519, 8429, 'no_lang_code', 'name', 'Sun Innovations (United States)'),
(10520, 8430, 'no_lang_code', 'name', 'National Integrated Solutions (United Kingdom)'),
(10521, 8431, 'en', 'name', 'Animal and Plant Health Agency'),
(10522, 8432, 'no_lang_code', 'name', 'Sunny BioDiscovery (United States)'),
(10523, 8433, 'en', 'name', 'Wiley College'),
(10524, 8434, 'en', 'name', 'Ann Becker and Associates'),
(10525, 8435, 'en', 'name', 'William Jewell College'),
(10526, 8436, 'en', 'name', 'Farmingdale State College'),
(10527, 8437, 'no_lang_code', 'name', 'Nitek (United States)'),
(10528, 8438, 'no_lang_code', 'name', 'Supercon (United States)'),
(10529, 8439, 'fr', 'name', 'CollĆØge harper'),
(10530, 8439, 'en', 'name', 'Harper College'),
(10531, 8440, 'no_lang_code', 'name', 'Skyre (United States)'),
(10532, 8441, 'en', 'name', 'Sustrans'),
(10533, 8442, 'no_lang_code', 'name', 'SVT Associates (United States)'),
(10534, 8443, 'no_lang_code', 'name', 'Anvik Corporation (United States)'),
(10535, 8444, 'no_lang_code', 'name', 'Apath (United States)'),
(10536, 8445, 'en', 'name', 'Williams LifeSkills'),
(10537, 8446, 'no_lang_code', 'name', 'APD Life Sciences (United States)'),
(10538, 8447, 'no_lang_code', 'name', 'SWITCH Materials (Canada)'),
(10539, 8448, 'no_lang_code', 'name', 'Willis Towers Watson (United Kingdom)'),
(10540, 8449, 'no_lang_code', 'name', 'Wilson Energy (United Kingdom)'),
(10541, 8450, 'no_lang_code', 'name', 'Syandus (United States)'),
(10542, 8451, 'no_lang_code', 'name', 'Wilson Wolf Manufacturing (United States)'),
(10543, 8452, 'no_lang_code', 'name', 'Synageva BioPharma (United States)'),
(10544, 8453, 'no_lang_code', 'name', 'Apex Biomedical (United States)'),
(10545, 8454, 'no_lang_code', 'name', 'Nokia (Portugal)'),
(10546, 8455, 'no_lang_code', 'name', 'Argonon (United Kingdom)'),
(10547, 8456, 'no_lang_code', 'name', 'Apogee Biotechnology (United States)'),
(10548, 8457, 'no_lang_code', 'name', 'Synergy Enterprises (United States)'),
(10549, 8458, 'no_lang_code', 'name', 'NORAM (Canada)'),
(10550, 8459, 'no_lang_code', 'name', 'WinProbe (United States)'),
(10551, 8460, 'no_lang_code', 'name', 'Norbord (Canada)'),
(10552, 8461, 'no_lang_code', 'name', 'Norgen Biotek Corporation (Canada)'),
(10553, 8462, 'en', 'name', 'Normandale Community College'),
(10554, 8463, 'en', 'name', 'North American Association of Central Cancer Registries'),
(10555, 8464, 'en', 'name', 'Wisconsin Department of Agriculture Trade and Consumer Protection'),
(10556, 8465, 'no_lang_code', 'name', 'Symbiotech (United States)'),
(10557, 8466, 'no_lang_code', 'name', 'Synkera Technologies (United States)'),
(10558, 8467, 'no_lang_code', 'name', 'Synopsys (United States)'),
(10559, 8468, 'en', 'name', 'North American Primary Care Research Group'),
(10560, 8469, 'no_lang_code', 'name', 'WisdomTools (United States)'),
(10561, 8470, 'en', 'name', 'North American Vascular Biology Organization'),
(10562, 8471, 'no_lang_code', 'name', 'Synthasome (United States)'),
(10563, 8472, 'no_lang_code', 'name', 'Synthecon (United States)'),
(10564, 8473, 'no_lang_code', 'name', 'Syntrix Biosystems (United States)'),
(10565, 8474, 'no_lang_code', 'name', 'Apotex Pharmachem (Canada)'),
(10566, 8475, 'en', 'name', 'Appalachian College Association'),
(10567, 8476, 'no_lang_code', 'name', 'SynZyme Technologies (United States)'),
(10568, 8477, 'no_lang_code', 'name', 'Applied Behavioral Research (United States)'),
(10569, 8478, 'no_lang_code', 'name', 'Cirrus Logic (United Kingdom)'),
(10570, 8479, 'no_lang_code', 'name', 'Systems Control (United States)'),
(10571, 8480, 'no_lang_code', 'name', 'Systems Technology (United States)'),
(10572, 8481, 'no_lang_code', 'name', 'Systex (United States)'),
(10573, 8482, 'no_lang_code', 'name', 'Applied BioPhysics (United States)'),
(10574, 8483, 'no_lang_code', 'name', 'Novozymes (United States)'),
(10575, 8484, 'no_lang_code', 'name', 'Tactus Technology (United States)'),
(10576, 8485, 'no_lang_code', 'name', 'Taiga Biotechnologies (United States)'),
(10577, 8486, 'no_lang_code', 'name', 'Talking Lights (United States)'),
(10578, 8487, 'en', 'name', 'Talladega College'),
(10579, 8488, 'en', 'name', 'Tanana Chiefs Conference'),
(10580, 8489, 'no_lang_code', 'name', 'TandemLaunch (Canada)'),
(10581, 8490, 'no_lang_code', 'name', 'Woomera Therapeutics'),
(10582, 8491, 'en', 'name', 'Applied Computer Security Associates'),
(10583, 8492, 'en', 'name', 'North Carolina State Education Assistance Authority'),
(10584, 8493, 'no_lang_code', 'name', 'PricewaterhouseCoopers (United States)'),
(10585, 8494, 'en', 'name', 'Psychiatric Foundation of North Carolina'),
(10586, 8495, 'en', 'name', 'Applied Genetics Laboratories'),
(10587, 8496, 'no_lang_code', 'name', 'Ansun BioPharma (United States)'),
(10588, 8497, 'no_lang_code', 'name', 'Applied Human Factors (United States)'),
(10589, 8498, 'no_lang_code', 'name', 'Workplace Technologies Research'),
(10590, 8499, 'no_lang_code', 'name', 'Tanner Research (United States)'),
(10591, 8500, 'no_lang_code', 'name', 'Applied Research Associates (United States)'),
(10592, 8501, 'no_lang_code', 'name', 'Tantalus Systems (Canada)'),
(10593, 8502, 'en', 'name', 'Museum of Life and Science'),
(10594, 8503, 'no_lang_code', 'name', 'Sartorius (United Kingdom)'),
(10595, 8504, 'en', 'name', 'Tapestry Health'),
(10596, 8505, 'no_lang_code', 'name', 'Applied Research Corporation (United States)'),
(10597, 8506, 'no_lang_code', 'name', 'Targeson (United States)'),
(10598, 8507, 'no_lang_code', 'name', 'Applied Sciences (United States)'),
(10599, 8508, 'en', 'name', 'North Central College'),
(10600, 8509, 'en', 'name', 'North Dakota State College of Science'),
(10601, 8510, 'en', 'name', 'North Dakota Department of Human Services'),
(10602, 8511, 'no_lang_code', 'name', 'World Precision Instruments (United States)'),
(10603, 8512, 'no_lang_code', 'name', 'Applied System Technologies (United States)'),
(10604, 8513, 'en', 'name', 'Tarrant County College'),
(10605, 8514, 'no_lang_code', 'name', 'North East of England Process Industry Cluster (United Kingdom)'),
(10606, 8515, 'en', 'name', 'Tarzana Treatment Centers'),
(10607, 8516, 'no_lang_code', 'name', 'Applied Thin Films (United States)'),
(10608, 8517, 'en', 'name', 'APT Foundation'),
(10609, 8518, 'no_lang_code', 'name', 'Tascon Industries (United States)'),
(10610, 8519, 'no_lang_code', 'name', 'APT Therapeutics (United States)'),
(10611, 8520, 'no_lang_code', 'name', 'Tasktop Technologies (Canada)'),
(10612, 8521, 'no_lang_code', 'name', 'AquaTerra (United Kingdom)'),
(10613, 8522, 'en', 'name', 'North Jersey Community Research Initiative'),
(10614, 8523, 'no_lang_code', 'name', 'Wright Materials Research (United States)'),
(10615, 8524, 'no_lang_code', 'name', 'Tata Motors (United Kingdom)'),
(10616, 8525, 'no_lang_code', 'name', 'Applied Energetics (United States)'),
(10617, 8526, 'no_lang_code', 'name', 'wTe Corporation (United States)'),
(10618, 8527, 'no_lang_code', 'name', 'Cardno (United States)'),
(10619, 8528, 'en', 'name', 'Northeastern Oklahoma A&M College'),
(10620, 8529, 'no_lang_code', 'name', 'Aquilent (United States)'),
(10621, 8530, 'no_lang_code', 'name', 'Aradigm (United States)'),
(10622, 8531, 'en', 'name', 'Arapahoe Community College'),
(10623, 8532, 'en', 'name', 'Montana State University–Northern'),
(10624, 8533, 'en', 'name', 'Arapahoe House'),
(10625, 8534, 'no_lang_code', 'name', 'X-ray Instrumentation Associates (United States)'),
(10626, 8535, 'no_lang_code', 'name', 'Arbor Vita (United States)'),
(10627, 8536, 'no_lang_code', 'name', 'Xemed (United States)'),
(10628, 8537, 'en', 'name', 'Northern Illinois Council on Alcohol and Substance Abuse'),
(10629, 8538, 'en', 'name', 'Archaeology Southwest'),
(10630, 8539, 'en', 'name', 'Northern New Mexico College'),
(10631, 8540, 'en', 'name', 'Northern Ohio Recovery Association'),
(10632, 8541, 'en', 'name', 'Institute of Statistical Science, Academia Sinica'),
(10633, 8541, 'zh', 'name', '中央研究院 ēµ±čØˆē§‘å­øē ”ē©¶ę‰€'),
(10634, 8542, 'no_lang_code', 'name', 'Morpho (United States)'),
(10635, 8543, 'en', 'name', 'Northern Virginia Community College'),
(10636, 8544, 'en', 'name', 'Northland College'),
(10637, 8545, 'no_lang_code', 'name', 'ArchieMD (United States)'),
(10638, 8546, 'en', 'name', 'Technological Assistance Institute for Intellectual Disability'),
(10639, 8547, 'en', 'name', 'The Tech Interactive'),
(10640, 8548, 'no_lang_code', 'name', 'TechEn (United States)'),
(10641, 8549, 'en', 'name', 'Northwest College'),
(10642, 8550, 'no_lang_code', 'name', 'TechLab (United States)'),
(10643, 8551, 'no_lang_code', 'name', 'Xention (United Kingdom)'),
(10644, 8552, 'en', 'name', 'Northwest Indian College'),
(10645, 8553, 'no_lang_code', 'name', 'Anacomp (United States)'),
(10646, 8554, 'en', 'name', 'Techniquest'),
(10647, 8555, 'no_lang_code', 'name', 'James Cropper (United Kingdom)'),
(10648, 8556, 'no_lang_code', 'name', 'Architecture Technology Corporation (United States)'),
(10649, 8557, 'en', 'name', 'Arctic Research Consortium of the United States'),
(10650, 8558, 'en', 'name', 'Notre Dame College'),
(10651, 8559, 'no_lang_code', 'name', 'TechniScan (United States)'),
(10652, 8560, 'en', 'name', 'Area Cooperative Education Services'),
(10653, 8561, 'en', 'name', 'Nottingham City Council'),
(10654, 8562, 'no_lang_code', 'name', 'Area Detector Systems Corporation (United States)'),
(10655, 8563, 'no_lang_code', 'name', 'Orolia (United States)'),
(10656, 8564, 'no_lang_code', 'name', 'Technology Assessment and Transfer (United States)'),
(10657, 8565, 'no_lang_code', 'name', 'Goldwind (China)'),
(10658, 8566, 'no_lang_code', 'name', 'Technology International Incorporated of Virginia (United States)'),
(10659, 8567, 'no_lang_code', 'name', 'XL Sci-Tech (United States)'),
(10660, 8568, 'no_lang_code', 'name', 'Techshot (United States)'),
(10661, 8569, 'no_lang_code', 'name', 'Nottingham Scientific (United Kingdom)'),
(10662, 8570, 'no_lang_code', 'name', 'Xoran Technologies (United States)'),
(10663, 8571, 'no_lang_code', 'name', 'Technology For Magnetic Resonance (United States)'),
(10664, 8572, 'no_lang_code', 'name', 'Arietis (United States)'),
(10665, 8573, 'no_lang_code', 'name', 'Kromek (United States)'),
(10666, 8574, 'en', 'name', 'Arizona Academy of Science'),
(10667, 8575, 'no_lang_code', 'name', 'Tejas Networks (India)'),
(10668, 8576, 'en', 'name', 'Arizona Geological Survey'),
(10669, 8577, 'no_lang_code', 'name', 'Carl Zeiss (United States)'),
(10670, 8578, 'en', 'name', 'Arizona Department of Education'),
(10671, 8579, 'en', 'name', 'Arizona Office of the Governor'),
(10672, 8580, 'no_lang_code', 'name', 'XRSciences (United States)'),
(10673, 8581, 'no_lang_code', 'name', 'ProteinSimple (United States)'),
(10674, 8582, 'en', 'name', 'Arkansas Academy of Science'),
(10675, 8583, 'en', 'name', 'Nova Scotia Community College'),
(10676, 8584, 'no_lang_code', 'name', 'Y Touring Theatre Company'),
(10677, 8585, 'no_lang_code', 'name', 'Astro-Med (United States)'),
(10678, 8586, 'no_lang_code', 'name', 'Telesage (United States)'),
(10679, 8587, 'no_lang_code', 'name', 'Telesensory (United States)'),
(10680, 8588, 'no_lang_code', 'name', 'ArmaGen (United States)'),
(10681, 8589, 'no_lang_code', 'name', 'NovaDigm Therapeutics (United States)'),
(10682, 8590, 'no_lang_code', 'name', 'Integra LifeSciences (United States)'),
(10683, 8591, 'no_lang_code', 'name', 'NovaFlux (United States)'),
(10684, 8592, 'no_lang_code', 'name', 'NovaLipids (Canada)'),
(10685, 8593, 'no_lang_code', 'name', 'Aronora (United States)'),
(10686, 8594, 'en', 'name', 'Telus World of Science'),
(10687, 8595, 'no_lang_code', 'name', 'Arrayomics (United States)'),
(10688, 8596, 'no_lang_code', 'name', 'Tepha (United States)'),
(10689, 8597, 'en', 'name', 'Teratology Society'),
(10690, 8598, 'no_lang_code', 'name', 'TeraView (United Kingdom)'),
(10691, 8599, 'no_lang_code', 'name', 'Terpenoid Therapeutics (United States)'),
(10692, 8600, 'no_lang_code', 'name', 'Terra Nova Learning Systems (United States)'),
(10693, 8601, 'no_lang_code', 'name', 'Actelion (United States)'),
(10694, 8602, 'no_lang_code', 'name', 'Isto Biologics (United States)'),
(10695, 8603, 'no_lang_code', 'name', 'Technology Dynamics (United States)'),
(10696, 8604, 'no_lang_code', 'name', 'Yecuris (United States)'),
(10697, 8605, 'en', 'name', 'Arthritis Foundation'),
(10698, 8606, 'no_lang_code', 'name', 'Tekna Plasma Systems (Canada)'),
(10699, 8607, 'en', 'name', 'Arts Catalyst'),
(10700, 8608, 'no_lang_code', 'name', 'Kelda Group (United Kingdom)'),
(10701, 8609, 'no_lang_code', 'name', 'Novan Therapeutics (United States)'),
(10702, 8610, 'en', 'name', 'Arts Council England'),
(10703, 8611, 'en', 'name', 'Youth Science Canada'),
(10704, 8612, 'no_lang_code', 'name', 'ARTSCO (United States)'),
(10705, 8613, 'no_lang_code', 'name', 'Arzeda (United States)'),
(10706, 8614, 'en', 'name', 'Asbury University'),
(10707, 8615, 'no_lang_code', 'name', 'Tetramer Technologies (United States)'),
(10708, 8616, 'no_lang_code', 'name', 'NDI Group (United States)'),
(10709, 8617, 'en', 'name', 'Yukon River Inter Tribal Watershed Council'),
(10710, 8618, 'no_lang_code', 'name', 'NovaSterilis (United States)'),
(10711, 8619, 'no_lang_code', 'name', 'Tertl Studos (United States)'),
(10712, 8620, 'en', 'name', 'Yukon Kuskokwim Health Corporation'),
(10713, 8621, 'en', 'name', 'Texas Lutheran University'),
(10714, 8622, 'no_lang_code', 'name', 'Texas Retina Associates (United States)'),
(10715, 8623, 'no_lang_code', 'name', 'Ash Stevens (United States)'),
(10716, 8624, 'no_lang_code', 'name', 'Ashwin-Ushas (United States)'),
(10717, 8625, 'en', 'name', 'Asian and Pacific Islander American Health Forum'),
(10718, 8626, 'en', 'name', 'Asian American Recovery Services'),
(10719, 8627, 'no_lang_code', 'name', 'NovelMed Therapeutics (United States)'),
(10720, 8628, 'no_lang_code', 'name', 'NovoBiotic Pharmaceuticals'),
(10721, 8629, 'en', 'name', 'Asian and Pacific Islander Wellness Center'),
(10722, 8630, 'no_lang_code', 'name', 'Novozymes (United Kingdom)'),
(10723, 8631, 'en', 'name', 'Refugee and Immigrant Center'),
(10724, 8632, 'no_lang_code', 'name', 'BioMarin (United States)'),
(10725, 8633, 'en', 'name', 'Asian Cultural Council'),
(10726, 8634, 'no_lang_code', 'name', 'Thales (United Kingdom)'),
(10727, 8635, 'en', 'name', 'Texas State Technical College Harlingen'),
(10728, 8636, 'en', 'name', 'Texas State Technical College Waco'),
(10729, 8637, 'no_lang_code', 'name', 'ASL Analytical (United States)'),
(10730, 8638, 'no_lang_code', 'name', 'ManTech International (United States)'),
(10731, 8639, 'en', 'name', 'Nuclear Decommissioning Authority'),
(10732, 8640, 'no_lang_code', 'name', 'Athena Group (United States)'),
(10733, 8641, 'no_lang_code', 'name', 'Zen Bio (United States)'),
(10734, 8642, 'no_lang_code', 'name', 'Aspen Aerogels (United States)'),
(10735, 8643, 'en', 'name', 'Nuffield Council on Bioethics'),
(10736, 8644, 'en', 'name', 'Australian Academy of the Humanities'),
(10737, 8645, 'es', 'name', 'Asociación Civil Impacta Salud y Educación'),
(10738, 8646, 'en', 'name', 'Aspen Global Change Institute'),
(10739, 8647, 'en', 'name', 'Center for Severe Weather Research'),
(10740, 8648, 'en', 'name', 'Zoological Society of San Diego'),
(10741, 8649, 'no_lang_code', 'name', 'NuPotential (United States)'),
(10742, 8650, 'no_lang_code', 'name', 'zuChem (United States)'),
(10743, 8651, 'en', 'name', 'Centre for Innovation Studies'),
(10744, 8652, 'no_lang_code', 'name', 'Nutreco (Canada)'),
(10745, 8653, 'en', 'name', 'College Board'),
(10746, 8654, 'en', 'name', 'Association for Institutional Research'),
(10747, 8655, 'en', 'name', 'College of Exploration'),
(10748, 8656, 'en', 'name', 'Conference Board'),
(10749, 8657, 'en', 'name', 'Association for Symbolic Logic'),
(10750, 8658, 'en', 'name', 'Association For Women in Mathematics'),
(10751, 8659, 'en', 'name', 'Association for Women in Science'),
(10752, 8660, 'en', 'name', 'Carbon Trust'),
(10753, 8661, 'no_lang_code', 'name', 'NuvoGen Research (United States)'),
(10754, 8662, 'fr', 'name', 'Association francophone pour le savoir'),
(10755, 8663, 'no_lang_code', 'name', 'Terragon Environmental Technologies (Canada)'),
(10756, 8664, 'no_lang_code', 'name', 'CytRx (United States)'),
(10757, 8665, 'no_lang_code', 'name', 'NVE Corporation (United States)'),
(10758, 8666, 'en', 'name', 'Association of Bay Area Governments'),
(10759, 8667, 'en', 'name', 'Association of Chief Police Officers'),
(10760, 8668, 'en', 'name', 'Association of Food and Drug Officials'),
(10761, 8669, 'en', 'name', 'Association of Maternal and Child Health Programs'),
(10762, 8670, 'en', 'name', 'Association of State and Territorial Health Officials'),
(10763, 8671, 'no_lang_code', 'name', 'NexTalk (United States)'),
(10764, 8672, 'no_lang_code', 'name', 'NXP (United Kingdom)'),
(10765, 8673, 'no_lang_code', 'name', 'NYSERNet (United States)'),
(10766, 8674, 'en', 'name', 'Oak Crest Institute of Science'),
(10767, 8675, 'en', 'name', 'Association of Asian Pacific Community Health Organizations'),
(10768, 8676, 'en', 'name', 'Association of Occupational and Environmental Clinics'),
(10769, 8677, 'no_lang_code', 'name', 'AST Products (United States)'),
(10770, 8678, 'en', 'name', 'DNA EpiCenter'),
(10771, 8679, 'no_lang_code', 'name', 'Aston Martin Lagonda (United Kingdom)'),
(10772, 8680, 'no_lang_code', 'name', 'Astraea Therapeutics (United States)'),
(10773, 8681, 'no_lang_code', 'name', 'Ocean NanoTech (United States)'),
(10774, 8682, 'en', 'name', 'Astronomical Society of the Pacific'),
(10775, 8683, 'en', 'name', 'Natural Science Collections Alliance'),
(10776, 8684, 'no_lang_code', 'name', 'MEG-3 (Canada)'),
(10777, 8685, 'en', 'name', 'At Bristol'),
(10778, 8686, 'no_lang_code', 'name', 'Oceanit (United States)'),
(10779, 8687, 'no_lang_code', 'name', 'Atactic Technologies (United States)'),
(10780, 8688, 'no_lang_code', 'name', 'Oceans Limited (Canada)'),
(10781, 8689, 'no_lang_code', 'name', 'Athens Research and Technology (United States)'),
(10782, 8690, 'no_lang_code', 'name', 'Athersys (United States)'),
(10783, 8691, 'no_lang_code', 'name', 'Biosearch Technologies (United States)'),
(10784, 8692, 'no_lang_code', 'name', 'BioSense (United States)'),
(10785, 8693, 'no_lang_code', 'name', 'Atkins (United Kingdom)'),
(10786, 8694, 'no_lang_code', 'name', 'Atkinson Noland and Associates (United States)'),
(10787, 8695, 'no_lang_code', 'name', 'ReproCELL (United States)'),
(10788, 8696, 'no_lang_code', 'name', 'BioSpeech (United States)'),
(10789, 8697, 'fr', 'name', 'Association pour le DƩveloppement de la Recherche et de l''Innovation du QuƩbec'),
(10790, 8698, 'no_lang_code', 'name', 'Phoenicia Biosciences (United States)'),
(10791, 8699, 'no_lang_code', 'name', 'Atmel (United States)'),
(10792, 8700, 'no_lang_code', 'name', 'Atmospheric and Space Technology Research Associates (United States)'),
(10793, 8701, 'no_lang_code', 'name', 'New York Audio Productions (United States)'),
(10794, 8702, 'no_lang_code', 'name', 'Octane (Canada)'),
(10795, 8703, 'no_lang_code', 'name', 'OcuMetrics (United States)'),
(10796, 8704, 'en', 'name', 'Phoenix Houses of New England'),
(10797, 8705, 'no_lang_code', 'name', 'Ocutech (United States)'),
(10798, 8706, 'no_lang_code', 'name', 'OEpic Semiconductors (United States)'),
(10799, 8707, 'no_lang_code', 'name', 'OFM Research (United States)'),
(10800, 8708, 'no_lang_code', 'name', 'Bio-Synthesis (United States)'),
(10801, 8709, 'en', 'name', 'Ofwat'),
(10802, 8710, 'no_lang_code', 'name', 'Auerbach Associates (United States)'),
(10803, 8711, 'no_lang_code', 'name', 'OG Technologies (United States)'),
(10804, 8712, 'no_lang_code', 'name', 'Audiology (United States)'),
(10805, 8713, 'no_lang_code', 'name', 'Adamis Pharmaceuticals (United States)'),
(10806, 8714, 'no_lang_code', 'name', 'AugmenTech (United States)'),
(10807, 8715, 'no_lang_code', 'name', 'Ogilvy Public Relations (United States)'),
(10808, 8716, 'en', 'name', 'Oglala Lakota College'),
(10809, 8717, 'no_lang_code', 'name', 'PhosphorTech (United States)'),
(10810, 8718, 'no_lang_code', 'name', 'AureoGen Biosciences (United States)'),
(10811, 8719, 'no_lang_code', 'name', 'Photek (United Kingdom)'),
(10812, 8720, 'no_lang_code', 'name', 'Auritec Pharmaceuticals (United States)'),
(10813, 8721, 'no_lang_code', 'name', 'BioStrategies (United States)'),
(10814, 8722, 'no_lang_code', 'name', 'Photodigm (United States)'),
(10815, 8723, 'no_lang_code', 'name', 'Photon Etc (Canada)'),
(10816, 8724, 'no_lang_code', 'name', 'Aurora Flight Sciences (United States)'),
(10817, 8725, 'en', 'name', 'Austin College'),
(10818, 8726, 'en', 'name', 'Philosophy of Science Association'),
(10819, 8727, 'en', 'name', 'Austin Community College'),
(10820, 8728, 'en', 'name', 'Australian Academy of Science'),
(10821, 8729, 'no_lang_code', 'name', 'Photoswitch Biosciences (United States)'),
(10822, 8730, 'en', 'name', 'Australian Academy of Technological Sciences and Engineering'),
(10823, 8731, 'en', 'name', 'Australian Council of Learned Academies'),
(10824, 8732, 'en', 'name', 'Oglala Sioux Tribal Council'),
(10825, 8733, 'en', 'name', 'Ohio Academy of Science'),
(10826, 8734, 'no_lang_code', 'name', 'Biothermal (United States)'),
(10827, 8735, 'no_lang_code', 'name', 'Phrixus Pharmaceuticals (United States)'),
(10828, 8736, 'en', 'name', 'Australian Institute of Nuclear Science and Engineering'),
(10829, 8737, 'no_lang_code', 'name', 'Lineage Cell Therapeutics (United States)'),
(10830, 8738, 'no_lang_code', 'name', 'Autoimmune Technologies (United States)'),
(10831, 8739, 'en', 'name', 'Ohio Dominican University'),
(10832, 8740, 'en', 'name', 'PHS Commissioned Officers Foundation'),
(10833, 8741, 'no_lang_code', 'name', 'PDL BioPharma (United States)'),
(10834, 8742, 'en', 'name', 'Ohio Department of Agriculture'),
(10835, 8743, 'no_lang_code', 'name', 'BioVectra (Canada)'),
(10836, 8744, 'no_lang_code', 'name', 'Cell Culture Company (United States)'),
(10837, 8745, 'no_lang_code', 'name', 'Auxagen (United States)'),
(10838, 8746, 'no_lang_code', 'name', 'PhysioGenix (United States)'),
(10839, 8747, 'en', 'name', 'Birmingham City Council'),
(10840, 8748, 'no_lang_code', 'name', 'Avacta (United Kingdom)'),
(10841, 8749, 'en', 'name', 'Birmingham Women''s Hospital'),
(10842, 8750, 'no_lang_code', 'name', 'Okino Computer Graphics (Canada)'),
(10843, 8751, 'en', 'name', 'Bishop State Community College'),
(10844, 8752, 'en', 'name', 'Bismarck State College'),
(10845, 8753, 'no_lang_code', 'name', 'AvantGen (United States)'),
(10846, 8754, 'en', 'name', 'Black Women’s Health Imperative'),
(10847, 8755, 'en', 'name', 'Blackfeet Community College'),
(10848, 8756, 'no_lang_code', 'name', 'Avanti Polar Lipids (United States)'),
(10849, 8757, 'no_lang_code', 'name', 'Blackrock Microsystems (United States)'),
(10850, 8758, 'no_lang_code', 'name', 'Phytronix (Canada)'),
(10851, 8759, 'en', 'name', 'Blast Theory'),
(10852, 8760, 'no_lang_code', 'name', 'BLH Technologies (United States)'),
(10853, 8761, 'en', 'name', 'Bloomfield College'),
(10854, 8762, 'no_lang_code', 'name', 'Picarro (United States)'),
(10855, 8763, 'no_lang_code', 'name', 'PicoCal (United States)'),
(10856, 8764, 'en', 'name', 'Education and Research Institute'),
(10857, 8765, 'no_lang_code', 'name', 'Capcom Vancouver (Canada)'),
(10858, 8766, 'no_lang_code', 'name', 'Omega Optics (United States)'),
(10859, 8767, 'no_lang_code', 'name', 'OriGene (United States)'),
(10860, 8768, 'no_lang_code', 'name', 'Aviagen (United Kingdom)'),
(10861, 8769, 'en', 'name', 'Piedmont Technical College'),
(10862, 8770, 'en', 'name', 'Biotechnical Services'),
(10863, 8771, 'en', 'name', 'Piedmont Virginia Community College'),
(10864, 8772, 'no_lang_code', 'name', 'OmegaChem (Canada)'),
(10865, 8773, 'no_lang_code', 'name', 'BIT-TECH (United States)'),
(10866, 8774, 'no_lang_code', 'name', 'Blue Spurs (Canada)'),
(10867, 8775, 'no_lang_code', 'name', 'Omicia (United States)'),
(10868, 8776, 'no_lang_code', 'name', 'Omneuron (United States)'),
(10869, 8777, 'no_lang_code', 'name', 'Online Technologies (United States)'),
(10870, 8778, 'no_lang_code', 'name', 'BlueInGreen (United States)'),
(10871, 8779, 'en', 'name', 'Oncology Nursing Society'),
(10872, 8780, 'no_lang_code', 'name', 'Onconova Therapeutics (United States)'),
(10873, 8781, 'no_lang_code', 'name', 'BlueRISC (United States)'),
(10874, 8782, 'no_lang_code', 'name', 'Oncor (United States)'),
(10875, 8783, 'en', 'name', 'Bluffton University'),
(10876, 8783, 'es', 'name', 'Universidad de Bluffton'),
(10877, 8784, 'no_lang_code', 'name', 'Linde (United Kingdom)'),
(10878, 8785, 'en', 'name', 'Ontario AIDS Network'),
(10879, 8786, 'no_lang_code', 'name', 'Tekion (Canada)'),
(10880, 8787, 'en', 'name', 'Pima Prevention Partnership'),
(10881, 8788, 'no_lang_code', 'name', 'Pipehawk (United Kingdom)'),
(10882, 8789, 'no_lang_code', 'name', 'Orkla (Norway)'),
(10883, 8790, 'no_lang_code', 'name', 'Pipeline Industries Guild (United Kingdom)'),
(10884, 8791, 'no_lang_code', 'name', 'Bossa Nova Technologies (United States)'),
(10885, 8792, 'no_lang_code', 'name', 'Boston Applied Technologies (United States)'),
(10886, 8793, 'no_lang_code', 'name', 'Opal-Rt Technologies (Canada)'),
(10887, 8794, 'en', 'name', 'Pittsburgh Tissue Engineering Initiative'),
(10888, 8795, 'no_lang_code', 'name', 'Planet Biotechnology (United States)'),
(10889, 8796, 'no_lang_code', 'name', 'Axcelon Biopolymers (Canada)');
INSERT INTO `ror_settings` VALUES
(10890, 8797, 'en', 'name', 'Planetary Science Institute'),
(10891, 8798, 'en', 'name', 'Operation UNITE'),
(10892, 8799, 'no_lang_code', 'name', 'Azevan Pharmaceuticals (United States)'),
(10893, 8800, 'no_lang_code', 'name', 'Boston Medical Products (United States)'),
(10894, 8801, 'no_lang_code', 'name', 'Ophir Corporation (United States)'),
(10895, 8802, 'en', 'name', 'Boston Public Schools'),
(10896, 8803, 'no_lang_code', 'name', 'Seamon (United States)'),
(10897, 8804, 'en', 'name', 'Botanical Research Institute of Texas'),
(10898, 8805, 'no_lang_code', 'name', 'Opotek (United States)'),
(10899, 8805, 'en', 'name', 'Opotek Incorporation'),
(10900, 8806, 'en', 'name', 'Botanical Society of America'),
(10901, 8807, 'no_lang_code', 'name', 'Qinetiq (United States)'),
(10902, 8808, 'no_lang_code', 'name', 'Optelian (Canada)'),
(10903, 8809, 'no_lang_code', 'name', 'Boulder Language Technologies (United States)'),
(10904, 8810, 'no_lang_code', 'name', 'Glyndwr Innovations (United Kingdom)'),
(10905, 8811, 'no_lang_code', 'name', 'Meadowlark Optics (United States)'),
(10906, 8812, 'en', 'name', 'Bacone College'),
(10907, 8813, 'no_lang_code', 'name', 'Lend Lease (United Kingdom)'),
(10908, 8814, 'no_lang_code', 'name', 'Plantvax (United States)'),
(10909, 8815, 'no_lang_code', 'name', 'Plastic Logic (United Kingdom)'),
(10910, 8816, 'en', 'name', 'Bakersfield College'),
(10911, 8817, 'no_lang_code', 'name', 'Balfour Beatty (United Kingdom)'),
(10912, 8818, 'no_lang_code', 'name', 'PlastiPure (United States)'),
(10913, 8819, 'no_lang_code', 'name', 'DSM (Canada)'),
(10914, 8820, 'no_lang_code', 'name', 'Brain Insights (United States)'),
(10915, 8821, 'no_lang_code', 'name', 'HBP (United States)'),
(10916, 8822, 'en', 'name', 'Baltimore City Community College'),
(10917, 8823, 'en', 'name', 'Bamfield Marine Sciences Centre'),
(10918, 8824, 'no_lang_code', 'name', 'Optimum Technologies (United States)'),
(10919, 8825, 'no_lang_code', 'name', 'Optimum Therapeutics (United States)'),
(10920, 8826, 'no_lang_code', 'name', 'Platypus Technologies (United States)'),
(10921, 8827, 'en', 'name', 'Bank Street College of Education'),
(10922, 8828, 'no_lang_code', 'name', 'Optivia Biotechnology (United States)'),
(10923, 8829, 'no_lang_code', 'name', 'Plentyoffish Media (Canada)'),
(10924, 8830, 'no_lang_code', 'name', 'Plexon (United States)'),
(10925, 8831, 'no_lang_code', 'name', 'PLx Pharma (United States)'),
(10926, 8832, 'no_lang_code', 'name', 'PMD Scientific (United States)'),
(10927, 8833, 'en', 'name', 'Princeton Baptist Medical Center'),
(10928, 8834, 'no_lang_code', 'name', 'Barrett Technology (United States)'),
(10929, 8835, 'no_lang_code', 'name', 'Optra (United States)'),
(10930, 8836, 'no_lang_code', 'name', 'Optron Systems (United States)'),
(10931, 8837, 'no_lang_code', 'name', 'Bridger Photonics (United States)'),
(10932, 8838, 'no_lang_code', 'name', 'Oralys (Canada)'),
(10933, 8839, 'no_lang_code', 'name', 'BrightOutcome (United States)'),
(10934, 8840, 'en', 'name', 'Orange County Bar Foundation'),
(10935, 8841, 'no_lang_code', 'name', 'Polaris Health Direction'),
(10936, 8842, 'no_lang_code', 'name', 'Polatomic (United States)'),
(10937, 8843, 'en', 'name', 'Bristol Community College'),
(10938, 8844, 'en', 'name', 'Basic NWFL'),
(10939, 8845, 'en', 'name', 'British Council'),
(10940, 8846, 'no_lang_code', 'name', 'Polestar Technologies (United States)'),
(10941, 8847, 'en', 'name', 'Police Forensic Science Laboratory Dundee'),
(10942, 8848, 'en', 'name', 'BOOMHealth'),
(10943, 8849, 'no_lang_code', 'name', 'Orbis Biosciences (United States)'),
(10944, 8850, 'no_lang_code', 'name', 'Orbital Research (United States)'),
(10945, 8851, 'en', 'name', 'Polisher Research Institute'),
(10946, 8852, 'no_lang_code', 'name', 'Orcca Technology (United States)'),
(10947, 8853, 'en', 'name', 'BC Centre for Aquatic Health Sciences'),
(10948, 8854, 'no_lang_code', 'name', 'Poly Med (United States)'),
(10949, 8855, 'no_lang_code', 'name', 'Brooks Automation (United States)'),
(10950, 8856, 'no_lang_code', 'name', 'Polyglot Systems (United States)'),
(10951, 8857, 'en', 'name', 'Broward College'),
(10952, 8858, 'no_lang_code', 'name', 'Bechtel (United States)'),
(10953, 8859, 'no_lang_code', 'name', 'Behavioral Assessment Incorporation (United States)'),
(10954, 8860, 'no_lang_code', 'name', 'Bruce Technologies (United States)'),
(10955, 8861, 'en', 'name', 'Behavior Therapy Associates'),
(10956, 8862, 'en', 'name', 'Oregon Health Authority'),
(10957, 8863, 'no_lang_code', 'name', 'Bruker (Germany)'),
(10958, 8864, 'en', 'name', 'Lines for Life'),
(10959, 8865, 'no_lang_code', 'name', 'Behavioral Research Incorporated (United States)'),
(10960, 8866, 'en', 'name', 'Bellevue College'),
(10961, 8867, 'en', 'name', 'Belmont Center for Comprehensive Treatment'),
(10962, 8868, 'no_lang_code', 'name', 'Buffalo BioLabs'),
(10963, 8869, 'en', 'name', 'Population Services International'),
(10964, 8870, 'no_lang_code', 'name', 'PortaScience (United States)'),
(10965, 8871, 'en', 'name', 'Bunker Hill Community College'),
(10966, 8872, 'no_lang_code', 'name', 'Capsugel (United States)'),
(10967, 8873, 'no_lang_code', 'name', 'Porter Novelli (United States)'),
(10968, 8874, 'no_lang_code', 'name', 'Beneficial Designs (United States)'),
(10969, 8875, 'no_lang_code', 'name', 'Magellan Aerospace (Canada)'),
(10970, 8876, 'en', 'name', 'Bennington College'),
(10971, 8877, 'en', 'name', 'Butte College'),
(10972, 8878, 'en', 'name', 'Portland Cement Association'),
(10973, 8879, 'en', 'name', 'Butterfly Conservation'),
(10974, 8880, 'no_lang_code', 'name', 'Bentley (Canada)'),
(10975, 8881, 'en', 'name', 'Positive Living Society of British Columbia'),
(10976, 8882, 'fr', 'name', 'Organisation des Ɖtats AmĆ©ricains'),
(10977, 8882, 'es', 'name', 'Organización de los Estados Americanos'),
(10978, 8882, 'en', 'name', 'Organization of American States'),
(10979, 8882, 'pt', 'name', 'Organização dos Estados Americanos'),
(10980, 8883, 'no_lang_code', 'name', 'Cabezon Group (United States)'),
(10981, 8884, 'no_lang_code', 'name', 'Potomac Affinity Proteins (United States)'),
(10982, 8885, 'en', 'name', 'Computer Aids for Chemical Engineering'),
(10983, 8886, 'en', 'name', 'MotherToBaby'),
(10984, 8887, 'no_lang_code', 'name', 'Potomac Photonics (United States)'),
(10985, 8888, 'no_lang_code', 'name', 'CJ America (United States)'),
(10986, 8889, 'no_lang_code', 'name', 'Assystem (Germany)'),
(10987, 8890, 'no_lang_code', 'name', 'PowerWorld (United States)'),
(10988, 8891, 'no_lang_code', 'name', 'Organizational Wellness and Learning Systems'),
(10989, 8892, 'no_lang_code', 'name', 'Pharmaceutical Product Development (United States)'),
(10990, 8893, 'en', 'name', 'Prairie Agricultural Machinery Institute'),
(10991, 8894, 'no_lang_code', 'name', 'Bridge12 Technologies (United States)'),
(10992, 8895, 'no_lang_code', 'name', 'Originus (United States)'),
(10993, 8896, 'en', 'name', 'Bethel College - Kansas'),
(10994, 8897, 'en', 'name', 'Bevill State Community College'),
(10995, 8898, 'no_lang_code', 'name', 'Lockheed Martin Orincon (United States)'),
(10996, 8899, 'no_lang_code', 'name', 'eHuman (United States)'),
(10997, 8900, 'no_lang_code', 'name', 'Bruker (United States)'),
(10998, 8901, 'no_lang_code', 'name', 'Caelum Research Corporation (United States)'),
(10999, 8902, 'no_lang_code', 'name', 'Orphagen Pharmaceuticals (United States)'),
(11000, 8903, 'no_lang_code', 'name', 'Orthocare Innovations (United States)'),
(11001, 8904, 'no_lang_code', 'name', 'Capstone Therapeutics (United States)'),
(11002, 8905, 'en', 'name', 'Bienestar'),
(11003, 8906, 'fr', 'name', 'CafƩ Scientifique'),
(11004, 8907, 'en', 'name', 'Big Little Science Centre'),
(11005, 8908, 'no_lang_code', 'name', 'Cairn Research (United Kingdom)'),
(11006, 8909, 'no_lang_code', 'name', 'Precision Combustion (United States)'),
(11007, 8910, 'no_lang_code', 'name', 'Osel (United States)'),
(11008, 8911, 'no_lang_code', 'name', 'Bio Concept Laboratories (United States)'),
(11009, 8912, 'en', 'name', 'Calhoun Community College'),
(11010, 8913, 'no_lang_code', 'name', 'Astellas Pharma (United States)'),
(11011, 8914, 'no_lang_code', 'name', 'RxSight (United States)'),
(11012, 8915, 'en', 'name', 'Varian Associates'),
(11013, 8915, 'no_lang_code', 'name', 'Varian Medical Systems (United States)'),
(11014, 8916, 'no_lang_code', 'name', 'Natus (United States)'),
(11015, 8917, 'no_lang_code', 'name', 'Polaris Motion (Canada)'),
(11016, 8918, 'en', 'name', 'Osteogenesis Imperfecta Foundation'),
(11017, 8919, 'no_lang_code', 'name', 'Precision Optics Corporation (United States)'),
(11018, 8920, 'no_lang_code', 'name', 'Bio Signal Group (United States)'),
(11019, 8921, 'no_lang_code', 'name', 'Prediction Sciences (United States)'),
(11020, 8922, 'no_lang_code', 'name', 'Bioanalytical Systems (United States)'),
(11021, 8923, 'en', 'name', 'Osys Technology'),
(11022, 8924, 'en', 'name', 'BioNB'),
(11023, 8925, 'no_lang_code', 'name', 'Predictive Biology (United States)'),
(11024, 8926, 'no_lang_code', 'name', 'Predictive Science (United States)'),
(11025, 8927, 'en', 'name', 'Preferred Family Healthcare'),
(11026, 8928, 'no_lang_code', 'name', 'Premier Foods (United Kingdom)'),
(11027, 8929, 'no_lang_code', 'name', 'Premitec (United States)'),
(11028, 8930, 'en', 'name', 'California Family Health Council'),
(11029, 8931, 'no_lang_code', 'name', 'Prentke Romich Company (United States)'),
(11030, 8932, 'en', 'name', 'California Institute for Biomedical Research'),
(11031, 8933, 'en', 'name', 'Presbyterian College'),
(11032, 8934, 'en', 'name', 'California Rural Indian Health Board'),
(11033, 8935, 'en', 'name', 'Baylor College of Medicine Children’s Foundation'),
(11034, 8936, 'en', 'name', 'Prescott College'),
(11035, 8937, 'no_lang_code', 'name', 'PricewaterhouseCoopers (Canada)'),
(11036, 8938, 'en', 'name', 'Presentation College'),
(11037, 8939, 'en', 'name', 'W.M. Keck Observatory'),
(11038, 8940, 'en', 'name', 'Overseas Development Institute'),
(11039, 8941, 'no_lang_code', 'name', 'Synergy Pharmaceuticals (United States)'),
(11040, 8942, 'no_lang_code', 'name', 'BioChem Technology (United States)'),
(11041, 8943, 'no_lang_code', 'name', 'Owlstone Medical (United Kingdom)'),
(11042, 8944, 'no_lang_code', 'name', 'Oxford Gene Technology (United Kingdom)'),
(11043, 8945, 'no_lang_code', 'name', 'Oxford Instruments (United Kingdom)'),
(11044, 8946, 'no_lang_code', 'name', 'Oxford Lasers (United Kingdom)'),
(11045, 8947, 'en', 'name', 'Prestera Center'),
(11046, 8948, 'no_lang_code', 'name', 'Dover (United States)'),
(11047, 8949, 'no_lang_code', 'name', 'Cambrian Innovation (United States)'),
(11048, 8950, 'no_lang_code', 'name', 'BioDetection Instruments (United States)'),
(11049, 8951, 'no_lang_code', 'name', 'P&P Optica (Canada)'),
(11050, 8952, 'no_lang_code', 'name', 'MYcroarray (United States)'),
(11051, 8953, 'no_lang_code', 'name', 'Premiere Global Services (United States)'),
(11052, 8954, 'no_lang_code', 'name', 'Primorigen Biosciences (United States)'),
(11053, 8955, 'no_lang_code', 'name', 'Pulse Biosciences (United States)'),
(11054, 8956, 'no_lang_code', 'name', 'Cambridge Scientific (United States)'),
(11055, 8957, 'en', 'name', 'Camden County College'),
(11056, 8958, 'no_lang_code', 'name', 'BioFine International (Canada)'),
(11057, 8959, 'no_lang_code', 'name', 'Pacific Biosciences (United States)'),
(11058, 8960, 'en', 'name', 'Pacific Resources for Education and Learning'),
(11059, 8961, 'no_lang_code', 'name', 'Prism Clinical Imaging (United States)'),
(11060, 8962, 'no_lang_code', 'name', 'BioFormatix (United States)'),
(11061, 8963, 'no_lang_code', 'name', 'Biogate Laboratories (Canada)'),
(11062, 8964, 'no_lang_code', 'name', 'Photonic BioSystems (United States)'),
(11063, 8965, 'no_lang_code', 'name', 'Pro Change Behavior Systems (United States)'),
(11064, 8966, 'en', 'name', 'Paine College'),
(11065, 8967, 'no_lang_code', 'name', 'Palatin Technologies (United States)'),
(11066, 8968, 'no_lang_code', 'name', 'Pro Ed (United States)'),
(11067, 8969, 'en', 'name', 'Canadian AIDS Society'),
(11068, 8969, 'fr', 'name', 'SociƩtƩ Canadienne du Sida'),
(11069, 8970, 'no_lang_code', 'name', 'Process Simulations Limited (Canada)'),
(11070, 8971, 'en', 'name', 'Canadian AIDS Treatment Information Exchange'),
(11071, 8972, 'no_lang_code', 'name', 'BioLinx (United States)'),
(11072, 8973, 'no_lang_code', 'name', 'Pall Corporation (United Kingdom)'),
(11073, 8974, 'no_lang_code', 'name', 'Palladian Partners'),
(11074, 8975, 'en', 'name', 'Palm Beach State College'),
(11075, 8976, 'no_lang_code', 'name', 'Biological Monitoring Incorporated (United States)'),
(11076, 8977, 'en', 'name', 'Canadian Association of Psychosocial Oncology'),
(11077, 8978, 'no_lang_code', 'name', 'Halma Water Management (United Kingdom)'),
(11078, 8979, 'no_lang_code', 'name', 'Sensei Biotherapeutics (United States)'),
(11079, 8980, 'no_lang_code', 'name', 'Prodrive (United Kingdom)'),
(11080, 8981, 'en', 'name', 'Canadian Coalition for Global Health Research'),
(11081, 8982, 'en', 'name', 'Canadian Council on Animal Care'),
(11082, 8983, 'en', 'name', 'Canadian Obesity Network'),
(11083, 8983, 'fr', 'name', 'RĆ©seau Canadien en l’ObĆ©sitĆ©'),
(11084, 8984, 'no_lang_code', 'name', 'Vi Technology (United States)'),
(11085, 8985, 'en', 'name', 'Progeria Research Foundation'),
(11086, 8986, 'no_lang_code', 'name', 'Biomedica Management (United States)'),
(11087, 8987, 'no_lang_code', 'name', 'Panasonic (United Kingdom)'),
(11088, 8988, 'no_lang_code', 'name', 'Prognosys Biosciences (United States)'),
(11089, 8989, 'en', 'name', 'Progress Educational Trust'),
(11090, 8990, 'en', 'name', 'Cambridge City Council'),
(11091, 8991, 'no_lang_code', 'name', 'Biomedical Frontiers (United States)'),
(11092, 8992, 'no_lang_code', 'name', 'Papa Ola Lokahi'),
(11093, 8993, 'no_lang_code', 'name', 'Biomedical Research Models (United States)'),
(11094, 8994, 'no_lang_code', 'name', 'Canadian Green Tech (Canada)'),
(11095, 8995, 'no_lang_code', 'name', 'BioMedomics (United States)'),
(11096, 8996, 'en', 'name', 'Brevard County Board of County Commissioners'),
(11097, 8997, 'no_lang_code', 'name', 'Parallel Synthesis Technologies (United States)'),
(11098, 8998, 'no_lang_code', 'name', 'Polysciences (United States)'),
(11099, 8999, 'no_lang_code', 'name', 'ParaTechs (United States)'),
(11100, 9000, 'no_lang_code', 'name', 'Canadian Electric Vehicles (Canada)'),
(11101, 9001, 'no_lang_code', 'name', 'Parion Sciences (United States)'),
(11102, 9002, 'no_lang_code', 'name', 'CanAm Bioresearch (Canada)'),
(11103, 9003, 'en', 'name', 'QuƩbec International'),
(11104, 9004, 'no_lang_code', 'name', 'Biomomentum (Canada)'),
(11105, 9005, 'no_lang_code', 'name', 'Opmedic Group (Canada)'),
(11106, 9006, 'no_lang_code', 'name', 'Bionetics (United States)'),
(11107, 9007, 'no_lang_code', 'name', 'Bioo Scientific (United States)'),
(11108, 9008, 'no_lang_code', 'name', 'Cancer Genetics (United States)'),
(11109, 9009, 'no_lang_code', 'name', 'BioPAL (United States)'),
(11110, 9010, 'no_lang_code', 'name', 'Biopeptide (United States)'),
(11111, 9011, 'no_lang_code', 'name', 'Liminal BioSciences (Canada)'),
(11112, 9012, 'en', 'name', 'Parkland College'),
(11113, 9013, 'en', 'name', 'Association of State Supervisors of Mathematics'),
(11114, 9014, 'no_lang_code', 'name', 'Promiliad Biopharma (United States)'),
(11115, 9015, 'no_lang_code', 'name', 'Parsons Brinckerhoff'),
(11116, 9016, 'no_lang_code', 'name', 'ProSci Incorporated (United States)'),
(11117, 9017, 'no_lang_code', 'name', 'ProSensus (Canada)'),
(11118, 9018, 'en', 'name', 'Biophysical Society'),
(11119, 9019, 'en', 'name', 'Premier Community Health'),
(11120, 9020, 'en', 'name', 'National Partnership for Environmental Technology Education'),
(11121, 9021, 'en', 'name', 'Partnership Group for Science and Engineering'),
(11122, 9022, 'en', 'name', 'Pasadena City College'),
(11123, 9023, 'no_lang_code', 'name', 'Pasadero (United States)'),
(11124, 9024, 'en', 'name', 'Riekes Center for Human Enhancement'),
(11125, 9025, 'en', 'name', 'Passaic County Community College'),
(11126, 9026, 'no_lang_code', 'name', 'Passat (Canada)'),
(11127, 9027, 'en', 'name', 'Cankdeska Cikana Community College'),
(11128, 9028, 'no_lang_code', 'name', 'PAI Life Sciences (United States)'),
(11129, 9029, 'no_lang_code', 'name', 'Protein Potential (United States)'),
(11130, 9030, 'no_lang_code', 'name', 'Patheon (Canada)'),
(11131, 9031, 'en', 'name', 'Pathfinder International'),
(11132, 9032, 'no_lang_code', 'name', 'Therapeutic Proteins International (United States)'),
(11133, 9033, 'no_lang_code', 'name', 'Pattern Discovery Technologies (Canada)'),
(11134, 9034, 'no_lang_code', 'name', 'Capital Consulting Corporation (United States)'),
(11135, 9035, 'no_lang_code', 'name', 'Pd Ld (United States)'),
(11136, 9036, 'en', 'name', 'Capitol Technology University'),
(11137, 9037, 'no_lang_code', 'name', 'Pacific Design Technologies (United States)'),
(11138, 9038, 'no_lang_code', 'name', 'CarboMer (United States)'),
(11139, 9039, 'no_lang_code', 'name', 'Peake DeLancey Printers (United States)'),
(11140, 9040, 'no_lang_code', 'name', 'CardioFocus (United States)'),
(11141, 9041, 'no_lang_code', 'name', 'Cardiome (Canada)'),
(11142, 9042, 'no_lang_code', 'name', 'AdvanSource Biomaterials (United States)'),
(11143, 9043, 'no_lang_code', 'name', 'ProteoTech (United States)'),
(11144, 9044, 'no_lang_code', 'name', 'ProThera Biologics (United States)'),
(11145, 9045, 'no_lang_code', 'name', 'Pelamis Wave Power (United Kingdom)'),
(11146, 9046, 'en', 'name', 'Pellissippi State Community College'),
(11147, 9047, 'no_lang_code', 'name', 'Carl Zeiss (United Kingdom)'),
(11148, 9048, 'en', 'name', 'CARE USA'),
(11149, 9049, 'no_lang_code', 'name', 'Proton OnSite (United States)'),
(11150, 9050, 'no_lang_code', 'name', 'Proto Corporation (United States)'),
(11151, 9051, 'no_lang_code', 'name', 'Prototypes (United States)'),
(11152, 9052, 'no_lang_code', 'name', 'Provid Pharmaceuticals (United States)'),
(11153, 9053, 'no_lang_code', 'name', 'HEICO (United States)'),
(11154, 9054, 'no_lang_code', 'name', 'PRP Architects (United Kingdom)'),
(11155, 9055, 'no_lang_code', 'name', '3D-Micromac (Germany)'),
(11156, 9056, 'no_lang_code', 'name', 'Cedrat Technologies (France)'),
(11157, 9057, 'no_lang_code', 'name', '3E (Belgium)'),
(11158, 9058, 'no_lang_code', 'name', '4D Soft (Hungary)'),
(11159, 9059, 'no_lang_code', 'name', '5T Torino (Italy)'),
(11160, 9060, 'no_lang_code', 'name', '6WIND (France)'),
(11161, 9061, 'no_lang_code', 'name', 'A K Industries (United Kingdom)'),
(11162, 9062, 'no_lang_code', 'name', 'Celaya, Emparanza y Galdos Internacional (Spain)'),
(11163, 9063, 'en', 'name', 'Psychological Health Associates'),
(11164, 9064, 'no_lang_code', 'name', 'Psychology Software Tools (United States)'),
(11165, 9065, 'no_lang_code', 'name', 'PTAC (United States)'),
(11166, 9066, 'en', 'name', 'A.V. Luikov Heat and Mass Transfer Institute'),
(11167, 9066, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ тепло- Šø массообмена имени А.Š’. Лыкова ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(11168, 9067, 'no_lang_code', 'name', 'PENTAX Medical Company (United States)'),
(11169, 9068, 'en', 'name', 'A.V. Topchiev Institute of Petrochemical Synthesis'),
(11170, 9068, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефтехимического синтеза им. А.Š’.Топчиева'),
(11171, 9069, 'no_lang_code', 'name', 'A4F-Algafuel (Portugal)'),
(11172, 9070, 'no_lang_code', 'name', 'Cenergia (Denmark)'),
(11173, 9071, 'no_lang_code', 'name', 'Public Data Queries (United States)'),
(11174, 9072, 'no_lang_code', 'name', 'Cenix BioScience (Germany)'),
(11175, 9073, 'pt', 'name', 'AgĆŖncia Para a Energia'),
(11176, 9074, 'no_lang_code', 'name', 'Perceptronics Solutions (United States)'),
(11177, 9075, 'no_lang_code', 'name', 'Performance Polymer Solutions (United States)'),
(11178, 9076, 'no_lang_code', 'name', 'Public Health Television (United States)'),
(11179, 9077, 'en', 'name', 'Center for Renewable Energy Sources and Saving'),
(11180, 9078, 'en', 'name', 'Center for Research and Technology Thessaly'),
(11181, 9079, 'en', 'name', 'Ministry of Public Order and Citizen Protection'),
(11182, 9079, 'el', 'name', '΄πουργείο Ī”Ī·Ī¼ĻŒĻƒĪ¹Ī±Ļ‚ Τάξης και Ī ĻĪæĻƒĻ„Ī±ĻƒĪÆĪ±Ļ‚ του Πολίτη'),
(11183, 9080, 'no_lang_code', 'name', 'PerkinElmer (United Kingdom)'),
(11184, 9081, 'no_lang_code', 'name', 'Pulmokine (United States)'),
(11185, 9082, 'en', 'name', 'Pulmonary Hypertension Association'),
(11186, 9083, 'no_lang_code', 'name', 'Centre for Technology Research & Innovation (Cyprus)'),
(11187, 9084, 'no_lang_code', 'name', 'Puresyn (United States)'),
(11188, 9085, 'no_lang_code', 'name', 'PSIwebware (United States)'),
(11189, 9086, 'en', 'name', 'Centre for innovative process engineering'),
(11190, 9087, 'no_lang_code', 'name', 'Q-Track Corporation (United States)'),
(11191, 9088, 'no_lang_code', 'name', 'Peter Brett Associates'),
(11192, 9089, 'en', 'name', 'Central Aerohydrodynamic Institute'),
(11193, 9089, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š°ŃŃ€Š¾Š³ŠøŠ“Ń€Š¾Š“ŠøŠ½Š°Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени профессора Š.Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾'),
(11194, 9090, 'en', 'name', 'Central Electricity Generating Board'),
(11195, 9091, 'en', 'name', 'Baranov Central Institute of Aviation Motor Development'),
(11196, 9091, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационного Š¼Š¾Ń‚Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ им. П.И. Баранова'),
(11197, 9092, 'no_lang_code', 'name', 'QED Labs'),
(11198, 9093, 'no_lang_code', 'name', 'QM Power (United States)'),
(11199, 9094, 'no_lang_code', 'name', 'Petro Geotech (Canada)'),
(11200, 9095, 'en', 'name', 'Institute of Electrochemistry and Energy Systems'),
(11201, 9095, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŃ Šø енергийни системи'),
(11202, 9096, 'no_lang_code', 'name', 'Petrobras (Brazil)'),
(11203, 9097, 'no_lang_code', 'name', 'QUAD Engineering (Canada)'),
(11204, 9098, 'no_lang_code', 'name', 'ABB (Sweden)'),
(11205, 9099, 'no_lang_code', 'name', 'ABB (Germany)'),
(11206, 9100, 'no_lang_code', 'name', 'Optum (United States)'),
(11207, 9101, 'no_lang_code', 'name', 'Quanser (Canada)'),
(11208, 9102, 'no_lang_code', 'name', 'Johnson Matthey (United States)'),
(11209, 9103, 'en', 'name', 'Belgian Centre for Corrosion Study'),
(11210, 9103, 'fr', 'name', 'Centre Belge d''Etude de la Corrosion'),
(11211, 9104, 'no_lang_code', 'name', 'PharmaIN (United States)'),
(11212, 9105, 'no_lang_code', 'name', 'PharmaSeq (United States)'),
(11213, 9106, 'no_lang_code', 'name', 'Quantronix (United States)'),
(11214, 9107, 'no_lang_code', 'name', 'QuantTera (United States)'),
(11215, 9108, 'fr', 'name', 'ComitƩ EuropƩen des Instructeurs de PlongƩe Professionnels'),
(11216, 9108, 'en', 'name', 'European Committee of Professional Diving Instructors'),
(11217, 9109, 'no_lang_code', 'name', 'Quantum Simulations (United States)'),
(11218, 9110, 'no_lang_code', 'name', 'AbsInt (Germany)'),
(11219, 9111, 'no_lang_code', 'name', 'Quasars (United States)'),
(11220, 9112, 'no_lang_code', 'name', 'Phoenix Science and Technology (United States)'),
(11221, 9113, 'no_lang_code', 'name', 'Phcc (United States)'),
(11222, 9114, 'no_lang_code', 'name', 'Photozig (United States)'),
(11223, 9115, 'no_lang_code', 'name', 'Phenomenome Discoveries (Canada)'),
(11224, 9116, 'no_lang_code', 'name', 'Phifer Smith (United States)'),
(11225, 9117, 'no_lang_code', 'name', 'CemeCon (Germany)'),
(11226, 9118, 'en', 'name', 'Center for Culture and Experience Economy'),
(11227, 9119, 'en', 'name', 'Philadelphia Fight'),
(11228, 9120, 'en', 'name', 'Philander Smith College'),
(11229, 9121, 'no_lang_code', 'name', 'Philips (United Kingdom)'),
(11230, 9122, 'fr', 'name', 'QuƩbec Science (Canada)'),
(11231, 9123, 'fr', 'name', 'Centre d''Enseignement et de Recherches des Industries Alimentaires et Chimiques'),
(11232, 9124, 'en', 'name', 'Phillips Academy'),
(11233, 9125, 'no_lang_code', 'name', 'PhiloMetron (United States)'),
(11234, 9126, 'fr', 'name', 'Centre d’Economie rurale'),
(11235, 9127, 'en', 'name', 'Academy of Scientific Research and Technology'),
(11236, 9128, 'en', 'name', 'Quincy College'),
(11237, 9129, 'no_lang_code', 'name', 'Quintessence Biosciences (United States)'),
(11238, 9130, 'no_lang_code', 'name', 'Team Industrial Services (United States)'),
(11239, 9131, 'no_lang_code', 'name', 'RC Electronics (United States)'),
(11240, 9132, 'en', 'name', 'Cypress Health Region'),
(11241, 9133, 'no_lang_code', 'name', 'Ag-West Bio (Canada)'),
(11242, 9134, 'no_lang_code', 'name', 'Greater Saskatoon Chamber of Commerce'),
(11243, 9135, 'en', 'name', 'Saskatchewan Health Quality Council'),
(11244, 9136, 'en', 'name', 'Heartland Health Region'),
(11245, 9137, 'en', 'name', 'International Centre for Infectious Diseases'),
(11246, 9138, 'en', 'name', 'Prince Albert Grand Council'),
(11247, 9139, 'en', 'name', 'Saskatchewan Hospice Palliative Care Association'),
(11248, 9140, 'en', 'name', 'Saskatchewan Seniors Mechanism'),
(11249, 9141, 'no_lang_code', 'name', 'OptoSonics (United States)'),
(11250, 9142, 'fr', 'name', 'Centre d’Étude et de Valorisation des Algues'),
(11251, 9143, 'no_lang_code', 'name', 'Conciaricerca'),
(11252, 9144, 'no_lang_code', 'name', 'Conecta'),
(11253, 9145, 'no_lang_code', 'name', 'Radiant Creative Group'),
(11254, 9146, 'en', 'name', 'Confederation of National Associations of Tanners and Dressers of the European Community'),
(11255, 9147, 'en', 'name', 'Confederation of European Forest Owners'),
(11256, 9147, 'fr', 'name', 'ConfƩdƩration EuropƩenne des PropriƩtaires Forestiers'),
(11257, 9148, 'en', 'name', 'Confederation of European Forest Owners'),
(11258, 9149, 'no_lang_code', 'name', 'Radisys (Canada)'),
(11259, 9150, 'en', 'name', 'Brookhaven Science Associates'),
(11260, 9151, 'no_lang_code', 'name', 'Ion Beam Applications (United States)'),
(11261, 9152, 'fr', 'name', 'Conseil EuropƩen des FƩdƩrations de l''Industrie Chimique'),
(11262, 9152, 'en', 'name', 'European Chemical Industry Council'),
(11263, 9153, 'no_lang_code', 'name', 'RAGT Seeds (United Kingdom)'),
(11264, 9154, 'no_lang_code', 'name', 'Accelopment (Switzerland)'),
(11265, 9155, 'no_lang_code', 'name', '3D Systems (United States)'),
(11266, 9156, 'en', 'name', 'Rancho Santiago Community College District'),
(11267, 9157, 'no_lang_code', 'name', 'Associated Compiler Experts (Netherlands)'),
(11268, 9158, 'en', 'name', 'European Network of Science Centres and Museums'),
(11269, 9159, 'no_lang_code', 'name', 'Biopsy Sciences (United States)'),
(11270, 9160, 'fr', 'name', 'Association FranƧaise de Normalisation'),
(11271, 9161, 'fr', 'name', 'Images & RƩseaux'),
(11272, 9162, 'fr', 'name', 'Centre de Documentation de Recherche et d''ExpƩrimentation sur les Pollutions Accidentelles des Eaux'),
(11273, 9162, 'en', 'name', 'Centre of Documentation, Research and Experimentation on Accidental Water Pollution'),
(11274, 9163, 'fr', 'name', 'Association Nationale de la Recherche et de la Technologie'),
(11275, 9164, 'no_lang_code', 'name', 'Morgan Stanley (United Kingdom)'),
(11276, 9165, 'en', 'name', 'Association of Information Technology Companies of Northern Greece'),
(11277, 9166, 'no_lang_code', 'name', 'ACRI Group (France)'),
(11278, 9167, 'no_lang_code', 'name', 'ACTeon Environment (France)'),
(11279, 9168, 'no_lang_code', 'name', 'Consorcio Regional de Transportes de Madrid'),
(11280, 9169, 'no_lang_code', 'name', 'General Motors (Germany)'),
(11281, 9170, 'en', 'name', 'Consortium GARR'),
(11282, 9171, 'no_lang_code', 'name', 'Adasa (Spain)'),
(11283, 9172, 'it', 'name', 'Consorzio Catania Ricerche'),
(11284, 9173, 'la', 'name', 'Civita'),
(11285, 9174, 'no_lang_code', 'name', 'Continental (Germany)'),
(11286, 9175, 'fr', 'name', 'ADERA'),
(11287, 9176, 'no_lang_code', 'name', 'Addcomp (Netherlands)'),
(11288, 9177, 'no_lang_code', 'name', 'Adelard'),
(11289, 9178, 'no_lang_code', 'name', 'IB Innovation Consortium (Italy)'),
(11290, 9179, 'en', 'name', 'Adelphi Research'),
(11291, 9180, 'no_lang_code', 'name', 'Adif (Spain)'),
(11292, 9181, 'no_lang_code', 'name', 'ADVA Optical Networking (Germany)'),
(11293, 9182, 'no_lang_code', 'name', 'Advanced Computer System (Italy)'),
(11294, 9183, 'fr', 'name', 'Centre de Recherche et d’Information sur la DĆ©mocratie et l''Autonomie'),
(11295, 9184, 'no_lang_code', 'name', 'Advanced Lightweight Engineering (Netherlands)'),
(11296, 9185, 'it', 'name', 'CSI Piemonte'),
(11297, 9186, 'fr', 'name', 'ADERSE'),
(11298, 9186, 'en', 'name', 'Association for the Development of Education and Research on Corporate Social Responsibility'),
(11299, 9187, 'no_lang_code', 'name', 'Adrianor'),
(11300, 9188, 'en', 'name', 'Association VinƧotte Nuclear'),
(11301, 9189, 'en', 'name', 'European Society of Concurrent Enterprising Network'),
(11302, 9189, 'it', 'name', 'SocietĆ  Europea di Rete Concorrente Simultanea'),
(11303, 9190, 'it', 'name', 'Frascati Scienza'),
(11304, 9191, 'fr', 'name', 'Centre d''Ɖtude et de Recherches VĆ©tĆ©rinaires et Agrochimiques'),
(11305, 9191, 'nl', 'name', 'Centrum voor Onderzoek in Diergeneeskunde en Agrochemie'),
(11306, 9191, 'en', 'name', 'Veterinary and Agrochemical Research Centre'),
(11307, 9192, 'it', 'name', 'Consorzio per la Ricerca e l''Educazione Permanente'),
(11308, 9193, 'no_lang_code', 'name', 'Advanta Seeds (Netherlands)'),
(11309, 9194, 'it', 'name', 'Assocomaplast'),
(11310, 9194, 'en', 'name', 'Italian Plastics and Rubber Processing Machinery and Moulds Manufacturers'' Association'),
(11311, 9195, 'no_lang_code', 'name', 'Advanticsys (Spain)'),
(11312, 9196, 'no_lang_code', 'name', 'Aster'),
(11313, 9197, 'it', 'name', 'Consorzio TRAIN'),
(11314, 9197, 'en', 'name', 'TRAIN Consortium'),
(11315, 9198, 'no_lang_code', 'name', 'Astri Polska (Poland)'),
(11316, 9199, 'en', 'name', 'Center of Technology and Engineering for Nuclear Projects'),
(11317, 9200, 'no_lang_code', 'name', 'Loccioni (Italy)'),
(11318, 9201, 'it', 'name', 'Consorzio Roma Ricerche'),
(11319, 9202, 'it', 'name', 'Sapienza Innovazione'),
(11320, 9203, 'fr', 'name', 'Centre de Recherches et des Technologies des Eaux'),
(11321, 9204, 'it', 'name', 'Consorzio Venezia Ricerche'),
(11322, 9205, 'no_lang_code', 'name', 'Aeiforia (Italy)'),
(11323, 9206, 'no_lang_code', 'name', 'Ateknea Solutions (Spain)'),
(11324, 9207, 'no_lang_code', 'name', 'Ateknea Solutions (Hungary)'),
(11325, 9208, 'en', 'name', 'AeroSpace and Defence Industries Association of Europe'),
(11326, 9209, 'no_lang_code', 'name', 'Constructions Industrielles de la MƩditerranƩe (France)'),
(11327, 9210, 'no_lang_code', 'name', 'Consulectra (Germany)'),
(11328, 9211, 'no_lang_code', 'name', 'atesio (Germany)'),
(11329, 9212, 'en', 'name', 'Aerospace Valley'),
(11330, 9213, 'no_lang_code', 'name', 'Consulintel (Spain)'),
(11331, 9214, 'en', 'name', 'Sirris'),
(11332, 9215, 'no_lang_code', 'name', 'Contento Trade (Italy)'),
(11333, 9216, 'no_lang_code', 'name', 'Ateliers Nic. Georges (Luxembourg)'),
(11334, 9217, 'fr', 'name', 'Centre de Robotique IntƩgrƩe d''Ile de France'),
(11335, 9218, 'no_lang_code', 'name', 'Continental (France)'),
(11336, 9219, 'en', 'name', 'Athens International Airport'),
(11337, 9219, 'el', 'name', 'Διεθνής Αερολιμένας Ī‘ĪøĪ·Ī½ĻŽĪ½ «Ελευθέριος Βενιζέλος»'),
(11338, 9220, 'en', 'name', 'AGE Platform Europe'),
(11339, 9221, 'no_lang_code', 'name', 'ATiT (Belgium)'),
(11340, 9222, 'en', 'name', 'impulse.brussels'),
(11341, 9223, 'it', 'name', 'Cooperativa Sociale COOSS Marche Onlus'),
(11342, 9224, 'no_lang_code', 'name', 'Centre d''Expertise du BĆ¢timent et des Travaux Publics (France)'),
(11343, 9225, 'no_lang_code', 'name', 'Atlas Elektronik (Germany)'),
(11344, 9226, 'no_lang_code', 'name', 'Atmel (France)'),
(11345, 9227, 'it', 'name', 'CoRiTeL'),
(11346, 9228, 'no_lang_code', 'name', 'Centre for Computational Continuum Mechanics (Slovenia)'),
(11347, 9229, 'no_lang_code', 'name', 'Corning (France)'),
(11348, 9230, 'no_lang_code', 'name', 'Teledyne Technologies (France)'),
(11349, 9231, 'no_lang_code', 'name', 'CorpoGen (Colombia)'),
(11350, 9232, 'en', 'name', 'Center for Environment and Development for the Arab Region and Europe'),
(11351, 9233, 'en', 'name', 'Centre For Irish and European Security'),
(11352, 9234, 'en', 'name', 'Centre for Liberal Strategies'),
(11353, 9235, 'no_lang_code', 'name', 'Ricardo AEA (Germany)'),
(11354, 9236, 'no_lang_code', 'name', 'Ricardo AEA (Netherlands)'),
(11355, 9237, 'en', 'name', 'Centre for Science, Society and Citizenship'),
(11356, 9238, 'en', 'name', 'Centre for Technological Research of Crete'),
(11357, 9239, 'no_lang_code', 'name', 'Cosytec (France)'),
(11358, 9240, 'pt', 'name', 'Agencia de Inovacao'),
(11359, 9241, 'no_lang_code', 'name', 'Atos (France)'),
(11360, 9242, 'pt', 'name', 'Agencia para a Modernizacao Administrativa'),
(11361, 9243, 'no_lang_code', 'name', 'Attana (Sweden)'),
(11362, 9244, 'pt', 'name', 'Agencia Regional da Energia e Ambiente da Regiao Autonoma da Madeira'),
(11363, 9244, 'en', 'name', 'Regional Agency for Energy and Environment of the Autonomous Region of Madeira'),
(11364, 9245, 'en', 'name', 'Agency for Science, Innovation and Technology'),
(11365, 9246, 'no_lang_code', 'name', 'Coventor (France)'),
(11366, 9247, 'no_lang_code', 'name', 'Cowi (Denmark)'),
(11367, 9248, 'en', 'name', 'Agency of Sustainable Development and Eurointegration'),
(11368, 9249, 'no_lang_code', 'name', 'Audi (Germany)'),
(11369, 9250, 'fr', 'name', 'Centre Interprofessionnel de Techniques d''Ɖtudes de la Pollution AtmosphĆ©rique'),
(11370, 9251, 'no_lang_code', 'name', 'CPL Scientific Publishing Services (United Kingdom)'),
(11371, 9252, 'no_lang_code', 'name', 'Austrian Mobility Research'),
(11372, 9252, 'de', 'name', 'Forschungsgesellschaft MobilitƤt'),
(11373, 9253, 'it', 'name', 'Agenzia dei Trasporti Autoferrotranviari del Comune'),
(11374, 9254, 'en', 'name', 'Austrian Society for Systems Engineering and Automation'),
(11375, 9255, 'it', 'name', 'Agenzia per l''Italia Digitale'),
(11376, 9256, 'no_lang_code', 'name', 'AustriaTech (Austria)'),
(11377, 9257, 'no_lang_code', 'name', 'Autoliv (Sweden)'),
(11378, 9258, 'en', 'name', 'Cranfield Impact Centre'),
(11379, 9259, 'en', 'name', 'Institute for Environmental Protection and Research'),
(11380, 9259, 'it', 'name', 'Istituto Superiore per la Protezione e la Ricerca Ambientale'),
(11381, 9260, 'fr', 'name', 'Agence spatiale italienne'),
(11382, 9260, 'it', 'name', 'Agenzia Spaziale Italiana'),
(11383, 9260, 'ca', 'name', 'AgĆØncia Espacial Italiana'),
(11384, 9260, 'en', 'name', 'Italian Space Agency'),
(11385, 9261, 'no_lang_code', 'name', 'Creativa (Italy)'),
(11386, 9261, 'it', 'name', 'Creativa Impresa di Comunicazione srl'),
(11387, 9262, 'no_lang_code', 'name', 'Agfa-Gevaert (Belgium)'),
(11388, 9263, 'no_lang_code', 'name', 'Agilent Technologies (Belgium)'),
(11389, 9264, 'it', 'name', 'AutoritĆ  Portuale di Genova'),
(11390, 9265, 'no_lang_code', 'name', 'Atlantia (Italy)'),
(11391, 9266, 'no_lang_code', 'name', 'Agora Systems (Spain)'),
(11392, 9267, 'en', 'name', 'French Clinical Research Infrastructure Network'),
(11393, 9268, 'it', 'name', 'Avantea'),
(11394, 9269, 'en', 'name', 'Croatian Chamber of Economy'),
(11395, 9270, 'no_lang_code', 'name', 'ATEbank (Greece)'),
(11396, 9270, 'el', 'name', 'Αγροτική Τράπεζα της ΕλλάΓος'),
(11397, 9271, 'no_lang_code', 'name', 'CropDesign (Belgium)'),
(11398, 9272, 'fr', 'name', 'Centre technique de l''Industrie HorlogĆØre'),
(11399, 9273, 'fr', 'name', 'Centre Technique des Industries AƩrauliques et Thermiques'),
(11400, 9274, 'no_lang_code', 'name', 'Cryptomathic (Denmark)'),
(11401, 9275, 'no_lang_code', 'name', 'PV Crystalox Solar (United Kingdom)'),
(11402, 9276, 'no_lang_code', 'name', 'Avanti (United Kingdom)'),
(11403, 9277, 'no_lang_code', 'name', 'Agrifutur (Italy)'),
(11404, 9278, 'no_lang_code', 'name', 'Agrobioinstitute'),
(11405, 9279, 'no_lang_code', 'name', 'Avanzare (Spain)'),
(11406, 9280, 'no_lang_code', 'name', 'CSK Food Enrichment (Netherlands)'),
(11407, 9281, 'no_lang_code', 'name', 'Avaris (Sweden)'),
(11408, 9282, 'it', 'name', 'Centro Ceramico Bologna'),
(11409, 9283, 'no_lang_code', 'name', 'Avecia (United Kingdom)'),
(11410, 9284, 'no_lang_code', 'name', 'Avia-GIS (Belgium)'),
(11411, 9285, 'en', 'name', 'Centexbel'),
(11412, 9286, 'no_lang_code', 'name', 'iKnowHow (Greece)'),
(11413, 9287, 'no_lang_code', 'name', 'CSP Innovazione nelle ICT (Italy)'),
(11414, 9288, 'no_lang_code', 'name', 'Air Liquide (France)'),
(11415, 9289, 'no_lang_code', 'name', 'Centre Technique Cuir Chaussure Maroquinerie (France)'),
(11416, 9290, 'fr', 'name', 'Centre Technique de l''Industrie du Bois'),
(11417, 9291, 'no_lang_code', 'name', 'Airborne International (Netherlands)'),
(11418, 9292, 'es', 'name', 'Ayuntamiento de Madrid'),
(11419, 9293, 'en', 'name', 'Continua Health Alliance'),
(11420, 9294, 'no_lang_code', 'name', 'Aircraft Research Association'),
(11421, 9295, 'no_lang_code', 'name', 'Brussels Intercommunal Transport Company'),
(11422, 9295, 'nl', 'name', 'Maatschappij voor het Intercommunaal Vervoer te Brussel'),
(11423, 9295, 'fr', 'name', 'SociƩtƩ des Transports Intercommunaux de Bruxelles'),
(11424, 9296, 'no_lang_code', 'name', 'Airial Conseil (France)'),
(11425, 9297, 'en', 'name', 'Center for Usability Research and Engineering'),
(11426, 9297, 'de', 'name', 'Centrum für die Untersuchung und Realisierung Endbenutzerorientierter Interaktiver Systeme'),
(11427, 9298, 'no_lang_code', 'name', 'Roma Servizi per la MobilitĆ  (Italy)'),
(11428, 9299, 'no_lang_code', 'name', 'AITIA International (Hungary)'),
(11429, 9300, 'no_lang_code', 'name', 'Custodix (Belgium)'),
(11430, 9301, 'it', 'name', 'Azienda Sanitaria di Firenze'),
(11431, 9302, 'no_lang_code', 'name', 'CVD Technologies (United Kingdom)'),
(11432, 9303, 'no_lang_code', 'name', 'CyberColloids'),
(11433, 9304, 'no_lang_code', 'name', 'Aixtron (Germany)'),
(11434, 9305, 'no_lang_code', 'name', 'Cybion (Italy)'),
(11435, 9306, 'en', 'name', 'Centre for Research in Pure and Applied Mathematics'),
(11436, 9306, 'it', 'name', 'Centro di Ricerca in Matematica Pura ed Applicata'),
(11437, 9307, 'es', 'name', 'Centro EspaƱol de Metrologƭa'),
(11438, 9308, 'it', 'name', 'Istituto Agronomico Mediterraneo di Bari'),
(11439, 9308, 'en', 'name', 'Mediterranean Agronomic Institute of Bari'),
(11440, 9309, 'no_lang_code', 'name', 'Cyntelix (Netherlands)'),
(11441, 9310, 'no_lang_code', 'name', 'Innovhub (Italy)'),
(11442, 9311, 'no_lang_code', 'name', 'Avantune (Italy)'),
(11443, 9312, 'no_lang_code', 'name', 'Stollmann (Germany)'),
(11444, 9313, 'no_lang_code', 'name', 'Dillinger Hütte (Germany)'),
(11445, 9314, 'no_lang_code', 'name', 'Azienda Trasporti Consorziali di Bologna'),
(11446, 9315, 'no_lang_code', 'name', 'Azienda Trasporti Milanesi (Italy)'),
(11447, 9316, 'en', 'name', 'Czech Metrology Institute'),
(11448, 9316, 'cs', 'name', 'Český Metrologický Institut'),
(11449, 9317, 'no_lang_code', 'name', 'AkzoNobel (Netherlands)'),
(11450, 9318, 'no_lang_code', 'name', 'Centro Laser'),
(11451, 9319, 'it', 'name', 'Servizio sanitario dell''Emilia-Romagna'),
(11452, 9320, 'no_lang_code', 'name', 'Daithi O’Murchu Marine Research Station'),
(11453, 9321, 'no_lang_code', 'name', 'BPE Unternehmensbeteiligungen (Germany)'),
(11454, 9322, 'en', 'name', 'Academy of Science of Turkmenistan'),
(11455, 9322, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŠøŠø'),
(11456, 9323, 'es', 'name', 'Centro Nacional de Información GeogrÔfica'),
(11457, 9324, 'en', 'name', 'Baum Consult'),
(11458, 9324, 'de', 'name', 'Bundesdeutsche Arbeitskreis für Umweltbewußtes Management e.V'),
(11459, 9325, 'es', 'name', 'Centro Nacional de Sanidad Agropecuaria'),
(11460, 9326, 'no_lang_code', 'name', 'Danaos (Cyprus)'),
(11461, 9327, 'no_lang_code', 'name', 'Nokia (Austria)'),
(11462, 9328, 'it', 'name', 'Centro RIcerche Plast-Optica'),
(11463, 9329, 'no_lang_code', 'name', 'Centro Ricerche Produzioni Animali'),
(11464, 9330, 'no_lang_code', 'name', 'Nokia (Spain)'),
(11465, 9331, 'no_lang_code', 'name', 'Infor (Netherlands)'),
(11466, 9332, 'it', 'name', 'Centro Studi Luca d’Agliano'),
(11467, 9333, 'pt', 'name', 'Centro Tecnológico do Calçado de Portugal'),
(11468, 9334, 'no_lang_code', 'name', 'Danfoss (Denmark)'),
(11469, 9335, 'no_lang_code', 'name', 'Nokia (Italy)'),
(11470, 9336, 'pt', 'name', 'Centro Tecnológico das Indústrias do Couro'),
(11471, 9336, 'en', 'name', 'Leather Technological Center'),
(11472, 9337, 'en', 'name', 'Baikov Institute of Metallurgy and Materials Science'),
(11473, 9337, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Šø Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ им. А.А. Байкова Российской акаГемии наук'),
(11474, 9338, 'pt', 'name', 'Centro Tecnológico das Indústrias Têxtil e do VestuÔrio de Portugal'),
(11475, 9338, 'en', 'name', 'Technological Centre for the Portuguese Textile and Clothing Industry'),
(11476, 9339, 'it', 'name', 'Centro Tessile Cotoniero e Abbigliamento'),
(11477, 9340, 'it', 'name', 'CentroScienza Onlus'),
(11478, 9341, 'no_lang_code', 'name', 'DuPont (Denmark)'),
(11479, 9342, 'no_lang_code', 'name', 'ON Semiconductor (Belgium)'),
(11480, 9343, 'en', 'name', 'Center of International Projects'),
(11481, 9343, 'ro', 'name', 'Centrul de Proiecte Internaţionale'),
(11482, 9344, 'en', 'name', 'Danish Emergency Management Agency'),
(11483, 9345, 'pl', 'name', 'Centrum Techniki Okrętowej'),
(11484, 9345, 'en', 'name', 'Ship Design and Research Centre'),
(11485, 9346, 'no_lang_code', 'name', 'Baker Hughes (Germany)'),
(11486, 9347, 'no_lang_code', 'name', 'Danish Gas Technology Centre (Denmark)'),
(11487, 9348, 'en', 'name', 'International Society for Optical Engineering'),
(11488, 9349, 'no_lang_code', 'name', 'BAMO International (France)'),
(11489, 9350, 'no_lang_code', 'name', 'ALD Vacuum Technologies (Germany)'),
(11490, 9351, 'no_lang_code', 'name', 'Ceramiques Techniques et Industrielles (France)'),
(11491, 9352, 'no_lang_code', 'name', 'CeramTec (Germany)'),
(11492, 9353, 'no_lang_code', 'name', 'Ceratizit (Luxembourg)'),
(11493, 9354, 'en', 'name', 'British Association of Public Safety Communications Officials'),
(11494, 9355, 'no_lang_code', 'name', 'SoftBank Robotics (France)'),
(11495, 9356, 'no_lang_code', 'name', 'Barco (Belgium)'),
(11496, 9357, 'no_lang_code', 'name', 'CertiCon (Czechia)'),
(11497, 9358, 'no_lang_code', 'name', 'CESI (Italy)'),
(11498, 9359, 'en', 'name', 'Centre for European Security Strategies'),
(11499, 9360, 'no_lang_code', 'name', 'CF consulting Finanziamenti Unione Europea'),
(11500, 9361, 'no_lang_code', 'name', 'Alfamicro (Portugal)'),
(11501, 9362, 'no_lang_code', 'name', 'Battelle Ingenieurtechnik (Germany)'),
(11502, 9363, 'en', 'name', 'Danish Technological Institute'),
(11503, 9364, 'no_lang_code', 'name', 'ComputIT (Norway)'),
(11504, 9365, 'no_lang_code', 'name', 'ALFA PI (Greece)'),
(11505, 9366, 'no_lang_code', 'name', 'Bax & Willems'),
(11506, 9367, 'no_lang_code', 'name', 'CFS Engineering (Switzerland)'),
(11507, 9368, 'no_lang_code', 'name', 'CGI (Netherlands)'),
(11508, 9369, 'no_lang_code', 'name', 'Algoritmos Procesos y Disenos (Spain)'),
(11509, 9370, 'no_lang_code', 'name', 'Algosystems (Greece)'),
(11510, 9371, 'no_lang_code', 'name', 'Danone (Netherlands)'),
(11511, 9372, 'fr', 'name', 'Chambre de Commerce et d''Industrie de Bourgogne Franche-ComtƩ'),
(11512, 9373, 'fr', 'name', 'Charbonnages de France'),
(11513, 9374, 'no_lang_code', 'name', 'NCC (Denmark)'),
(11514, 9375, 'no_lang_code', 'name', 'Ƙrsted (Denmark)'),
(11515, 9376, 'no_lang_code', 'name', 'Ceramics and Refractories Technological Development Company (Greece)'),
(11516, 9377, 'en', 'name', 'All Russia Petroleum Research Exploration Institute'),
(11517, 9377, 'ru', 'name', 'Всероссийский Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ геологоразвеГочный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(11518, 9378, 'no_lang_code', 'name', 'Dantec Dynamics (Germany)'),
(11519, 9379, 'no_lang_code', 'name', 'Alma Consulting Group'),
(11520, 9380, 'no_lang_code', 'name', 'Almende (Netherlands)'),
(11521, 9381, 'no_lang_code', 'name', '3M (France)'),
(11522, 9382, 'no_lang_code', 'name', 'Alpha MOS (France)'),
(11523, 9383, 'no_lang_code', 'name', 'BCT (Germany)'),
(11524, 9384, 'no_lang_code', 'name', 'Beacon Tech (Israel)'),
(11525, 9385, 'fr', 'name', 'Conseil Economique et social de la Region de Bruxelles Capitale'),
(11526, 9385, 'nl', 'name', 'Economische en Sociale Raad voor het Brussels Hoofdstedelijk Gewest'),
(11527, 9386, 'no_lang_code', 'name', 'Beactica (Sweden)'),
(11528, 9387, 'en', 'name', 'Competence Centre for Electrochemical Surface Technology'),
(11529, 9387, 'de', 'name', 'Kompetenzzentrum für elektrochemische Oberflächentechnologie'),
(11530, 9388, 'no_lang_code', 'name', 'Alpha Thames Subsea (United Kingdom)'),
(11531, 9389, 'no_lang_code', 'name', 'Bekaert (Belgium)'),
(11532, 9390, 'no_lang_code', 'name', 'Alstom (Switzerland)'),
(11533, 9391, 'no_lang_code', 'name', 'Alstom (Belgium)'),
(11534, 9392, 'no_lang_code', 'name', 'BELECTRIC (Germany)'),
(11535, 9393, 'no_lang_code', 'name', 'Alstom (Germany)'),
(11536, 9394, 'en', 'name', 'International Management Institute'),
(11537, 9395, 'no_lang_code', 'name', 'Alstom (Sweden)'),
(11538, 9396, 'no_lang_code', 'name', 'ALTA (Italy)'),
(11539, 9397, 'no_lang_code', 'name', 'Vita Group (United Kingdom)'),
(11540, 9398, 'no_lang_code', 'name', 'BearingPoint (Austria)'),
(11541, 9399, 'no_lang_code', 'name', 'Tre Altamira (Spain)'),
(11542, 9400, 'no_lang_code', 'name', 'Chimar Hellas (Greece)'),
(11543, 9401, 'en', 'name', 'Ministry of Industry and Information Technology'),
(11544, 9401, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å·„äøšå’Œäæ”ęÆåŒ–éƒØ'),
(11545, 9402, 'no_lang_code', 'name', 'Belgonucleaire (Belgium)'),
(11546, 9403, 'no_lang_code', 'name', 'Belgoprocess (Belgium)'),
(11547, 9404, 'no_lang_code', 'name', 'Databank (Italy)'),
(11548, 9405, 'no_lang_code', 'name', 'Chr. Hansen (Denmark)'),
(11549, 9406, 'no_lang_code', 'name', 'Beneq (Finland)'),
(11550, 9407, 'no_lang_code', 'name', 'Dbe Technology (Germany)'),
(11551, 9408, 'no_lang_code', 'name', 'Bergamo Technologies (Poland)'),
(11552, 9409, 'no_lang_code', 'name', 'OHB (Italy)'),
(11553, 9410, 'no_lang_code', 'name', 'Amphos 21 (Spain)'),
(11554, 9411, 'no_lang_code', 'name', 'CIM-mes Project (Poland)'),
(11555, 9412, 'no_lang_code', 'name', 'Decom (Slovakia)'),
(11556, 9413, 'no_lang_code', 'name', 'CIRCA Group Europe (Ireland)'),
(11557, 9414, 'no_lang_code', 'name', 'Ormazabal (Switzerland)'),
(11558, 9415, 'no_lang_code', 'name', 'Amplitude SystĆØmes (France)'),
(11559, 9416, 'no_lang_code', 'name', 'Analysis and Monitoring of Environmental Risk'),
(11560, 9417, 'no_lang_code', 'name', 'Allgemeine ElektrizitƤts Gesellschaft (Germany)'),
(11561, 9417, 'en', 'name', 'General Electricity Company'),
(11562, 9418, 'no_lang_code', 'name', 'Cisco Systems (Netherlands)'),
(11563, 9419, 'no_lang_code', 'name', 'AMS (Austria)'),
(11564, 9420, 'ga', 'name', 'An Garda SƭochƔna'),
(11565, 9421, 'no_lang_code', 'name', 'CISSOID (Belgium)'),
(11566, 9422, 'no_lang_code', 'name', 'Berliner Nanotest und Design'),
(11567, 9423, 'no_lang_code', 'name', 'Agilent Technologies (Denmark)'),
(11568, 9424, 'no_lang_code', 'name', 'ANA Aeroportos de Portugal (Portugal)'),
(11569, 9425, 'no_lang_code', 'name', 'Berliner Verkehrsbetriebe (Germany)'),
(11570, 9426, 'no_lang_code', 'name', 'ANALYSIS System Research High-Tech (Greece)'),
(11571, 9427, 'no_lang_code', 'name', 'Clay Technology (Sweden)'),
(11572, 9428, 'no_lang_code', 'name', 'Cross-Linked Enzyme Aggregates Technologies (Netherlands)'),
(11573, 9429, 'no_lang_code', 'name', 'Clemessy (France)'),
(11574, 9429, 'fr', 'name', 'Eiffage Ɖnergie SystĆØmes - Clemessy'),
(11575, 9430, 'no_lang_code', 'name', 'e-Trikala (Greece)'),
(11576, 9431, 'en', 'name', 'Cloud Security Alliance'),
(11577, 9432, 'no_lang_code', 'name', 'Anaxomics (Spain)'),
(11578, 9433, 'no_lang_code', 'name', 'CNet (Sweden)'),
(11579, 9434, 'no_lang_code', 'name', 'Ancitel (Italy)'),
(11580, 9435, 'no_lang_code', 'name', 'Chemtex (Italy)'),
(11581, 9436, 'no_lang_code', 'name', 'Aptiv (Germany)'),
(11582, 9437, 'no_lang_code', 'name', 'Andritz (Austria)'),
(11583, 9438, 'no_lang_code', 'name', 'CINAR (United Kingdom)'),
(11584, 9439, 'no_lang_code', 'name', 'Andritz (Switzerland)'),
(11585, 9440, 'no_lang_code', 'name', 'CINAR (Greece)'),
(11586, 9441, 'no_lang_code', 'name', 'Aptiv (Italy)'),
(11587, 9442, 'no_lang_code', 'name', 'BHP Laboratories'),
(11588, 9443, 'it', 'name', 'Confederazione Italiana Sindacati Lavoratori'),
(11589, 9443, 'en', 'name', 'Italian Confederation of Workers'' Trade Unions'),
(11590, 9444, 'no_lang_code', 'name', 'Delta (Denmark)'),
(11591, 9445, 'no_lang_code', 'name', 'Deltamarin (Finland)'),
(11592, 9446, 'no_lang_code', 'name', 'Coatema (Germany)'),
(11593, 9447, 'no_lang_code', 'name', 'Demar Laser (Netherlands)'),
(11594, 9448, 'no_lang_code', 'name', 'Anotec Engineering (Spain)'),
(11595, 9449, 'en', 'name', 'Coatings Research Institute'),
(11596, 9450, 'no_lang_code', 'name', 'ArcelorMittal (Belgium)'),
(11597, 9451, 'no_lang_code', 'name', 'Cogne (Italy)'),
(11598, 9452, 'no_lang_code', 'name', 'Colibri (Netherlands)'),
(11599, 9453, 'en', 'name', 'Collections Trust'),
(11600, 9454, 'no_lang_code', 'name', 'Collegium Budapest'),
(11601, 9455, 'no_lang_code', 'name', 'Coloplast (Denmark)'),
(11602, 9456, 'no_lang_code', 'name', 'Color Line (Norway)'),
(11603, 9457, 'no_lang_code', 'name', 'Colorobbia (Italy)'),
(11604, 9458, 'no_lang_code', 'name', 'Comarch (Poland)'),
(11605, 9459, 'no_lang_code', 'name', 'Pera (Denmark)'),
(11606, 9460, 'no_lang_code', 'name', 'BIC Bratislava (Slovakia)'),
(11607, 9461, 'it', 'name', 'Consorzio Multi-Ente per la promozione e l''adozione di Tecnologie di calcolo Avanzato'),
(11608, 9462, 'no_lang_code', 'name', 'MerLion Pharma (Germany)'),
(11609, 9463, 'no_lang_code', 'name', 'Compagnie Maritime d''Expertises (France)'),
(11610, 9464, 'no_lang_code', 'name', 'BIO Intelligence Service (France)'),
(11611, 9465, 'en', 'name', 'European Coordination Committee of the Radiological, Electromedical and Healthcare IT Industry'),
(11612, 9466, 'fr', 'name', 'ComitƩ Scientifique et Technique des Industries Climatiques'),
(11613, 9467, 'no_lang_code', 'name', 'BioAge (Italy)'),
(11614, 9468, 'no_lang_code', 'name', 'Johnson & Johnson (United Kingdom)'),
(11615, 9469, 'no_lang_code', 'name', 'Bioazul (Spain)'),
(11616, 9470, 'no_lang_code', 'name', 'DeskArtes (Finland)'),
(11617, 9471, 'no_lang_code', 'name', 'Biobase (Germany)'),
(11618, 9472, 'no_lang_code', 'name', 'AOA Apparatebau Gauting (Germany)');
INSERT INTO `ror_settings` VALUES
(11619, 9473, 'no_lang_code', 'name', 'DanSteel (Denmark)'),
(11620, 9474, 'de', 'name', 'Biochemisches Institut für Umweltcarcinogene'),
(11621, 9475, 'no_lang_code', 'name', 'AOS Products (United Kingdom)'),
(11622, 9476, 'no_lang_code', 'name', 'APC Composite (Sweden)'),
(11623, 9477, 'no_lang_code', 'name', 'Bioclear Earth (Netherlands)'),
(11624, 9478, 'no_lang_code', 'name', 'BC Platforms (Finland)'),
(11625, 9479, 'no_lang_code', 'name', 'Gwent Group (United Kingdom)'),
(11626, 9480, 'de', 'name', 'Gemeinsame Forschungsstelle'),
(11627, 9480, 'en', 'name', 'Joint Research Centre'),
(11628, 9481, 'no_lang_code', 'name', 'AMS (Germany)'),
(11629, 9482, 'no_lang_code', 'name', 'Biofaction (Austria)'),
(11630, 9483, 'en', 'name', 'BioInfoBank Institute'),
(11631, 9484, 'no_lang_code', 'name', 'AquaBioTech Group (Malta)'),
(11632, 9485, 'fr', 'name', 'Centre de Recherches sur les Communications Canada'),
(11633, 9485, 'en', 'name', 'Communications Research Centre Canada'),
(11634, 9486, 'no_lang_code', 'name', 'Europäisches Centrum für Mechatronik (Germany)'),
(11635, 9487, 'no_lang_code', 'name', 'Community of European Shipyards Associations'),
(11636, 9488, 'no_lang_code', 'name', 'AstraZeneca (Canada)'),
(11637, 9489, 'no_lang_code', 'name', 'Biolution (Austria)'),
(11638, 9490, 'no_lang_code', 'name', 'Cowi (Norway)'),
(11639, 9491, 'de', 'name', 'Deutsche Bundespost'),
(11640, 9491, 'en', 'name', 'German Federal Post Office'),
(11641, 9492, 'no_lang_code', 'name', 'AquaTT (Ireland)'),
(11642, 9493, 'en', 'name', 'Aquitaine Europe Communication'),
(11643, 9494, 'no_lang_code', 'name', 'Veolia (Sweden)'),
(11644, 9495, 'no_lang_code', 'name', 'ArcelorMittal (Luxembourg)'),
(11645, 9496, 'no_lang_code', 'name', 'NAMSA (France)'),
(11646, 9497, 'no_lang_code', 'name', 'Babcock & Wilcox (Denmark)'),
(11647, 9498, 'no_lang_code', 'name', 'Transelectrica (Romania)'),
(11648, 9499, 'no_lang_code', 'name', 'Biomedal (Spain)'),
(11649, 9500, 'no_lang_code', 'name', 'Gesellschaft für Nuklear Service (Germany)'),
(11650, 9501, 'en', 'name', 'AEE Institute for Sustainable Technologies'),
(11651, 9502, 'en', 'name', 'Club Young Scientists'),
(11652, 9503, 'en', 'name', 'Arcadia International'),
(11653, 9504, 'no_lang_code', 'name', 'Bioneer (Denmark)'),
(11654, 9505, 'no_lang_code', 'name', 'Computerised Information Technology (United Kingdom)'),
(11655, 9506, 'no_lang_code', 'name', 'ArƧelik (Turkey)'),
(11656, 9507, 'no_lang_code', 'name', 'Biopac (United Kingdom)'),
(11657, 9508, 'de', 'name', 'Deutsche Nationalbibliothek'),
(11658, 9508, 'en', 'name', 'German National Library'),
(11659, 9509, 'en', 'name', 'Community of Mediterranean Universities'),
(11660, 9510, 'no_lang_code', 'name', 'Archer Technicoat Limited (United Kingdom)'),
(11661, 9511, 'no_lang_code', 'name', 'Concentration Heat and Momentum (United Kingdom)'),
(11662, 9512, 'no_lang_code', 'name', 'RAG Aktiengesellschaft (Germany)'),
(11663, 9513, 'no_lang_code', 'name', 'Archetypon'),
(11664, 9514, 'no_lang_code', 'name', 'BIOS Bioenergiesysteme (Austria)'),
(11665, 9515, 'no_lang_code', 'name', 'Archimedia (Greece)'),
(11666, 9516, 'no_lang_code', 'name', 'CognIT (Norway)'),
(11667, 9517, 'no_lang_code', 'name', 'ƅF (Switzerland)'),
(11668, 9518, 'en', 'name', 'Arctic and Antarctic Research Institute'),
(11669, 9518, 'ru', 'name', 'Арктический Šø антарктический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(11670, 9519, 'no_lang_code', 'name', 'Ardeje (France)'),
(11671, 9520, 'no_lang_code', 'name', 'GGG (France)'),
(11672, 9521, 'de', 'name', 'Deutsche Welle'),
(11673, 9522, 'no_lang_code', 'name', 'IBM (France)'),
(11674, 9523, 'no_lang_code', 'name', 'Compagnie Industrielle d''Applications Thermiques (France)'),
(11675, 9524, 'no_lang_code', 'name', 'Biosensor (Italy)'),
(11676, 9525, 'no_lang_code', 'name', 'Argus Umweltbiotechnologie (Germany)'),
(11677, 9526, 'no_lang_code', 'name', 'Ariadna (Spain)'),
(11678, 9527, 'no_lang_code', 'name', 'CAPTEC (Ireland)'),
(11679, 9528, 'no_lang_code', 'name', 'Terma (Denmark)'),
(11680, 9529, 'no_lang_code', 'name', 'Biosensores (Spain)'),
(11681, 9530, 'no_lang_code', 'name', 'Detection Limit (United States)'),
(11682, 9531, 'en', 'name', 'Department of Health and Wellness Promotion'),
(11683, 9532, 'no_lang_code', 'name', 'Kjobenhavns Telefon Aktieselskab (Denmark)'),
(11684, 9533, 'no_lang_code', 'name', 'Vinci (France)'),
(11685, 9534, 'de', 'name', 'Institut für Textil- und Verfahrenstechnik Denkendorf'),
(11686, 9534, 'en', 'name', 'Institute of Textile Technology and Process Engineering'),
(11687, 9535, 'no_lang_code', 'name', 'Cepsa (Spain)'),
(11688, 9536, 'en', 'name', 'Council of Southeast Pennsylvania'),
(11689, 9537, 'en', 'name', 'Health and Human Services Agency'),
(11690, 9538, 'de', 'name', 'Deutsches Jugendinstitut'),
(11691, 9538, 'en', 'name', 'German Youth Institute'),
(11692, 9539, 'no_lang_code', 'name', 'Endesa (Spain)'),
(11693, 9540, 'no_lang_code', 'name', 'MediTox (Czechia)'),
(11694, 9541, 'no_lang_code', 'name', 'Cookson-Clal (France)'),
(11695, 9542, 'no_lang_code', 'name', 'Arqtech Laboratories (Ireland)'),
(11696, 9543, 'no_lang_code', 'name', 'Ambiente Risorse Sviluppo'),
(11697, 9543, 'en', 'name', 'Environment, Resources and Development'),
(11698, 9544, 'no_lang_code', 'name', 'Concentris (Germany)'),
(11699, 9545, 'no_lang_code', 'name', 'Biotrend (Portugal)'),
(11700, 9546, 'no_lang_code', 'name', 'Conceptivity (Switzerland)'),
(11701, 9547, 'no_lang_code', 'name', 'DiaSorin (Ireland)'),
(11702, 9548, 'no_lang_code', 'name', 'Arctik'),
(11703, 9549, 'no_lang_code', 'name', 'Ecological Consultancy Services (Ireland)'),
(11704, 9550, 'no_lang_code', 'name', 'Ecorys (Netherlands)'),
(11705, 9551, 'no_lang_code', 'name', 'ASCO Industries (Belgium)'),
(11706, 9552, 'no_lang_code', 'name', 'Ascom (Switzerland)'),
(11707, 9553, 'es', 'name', 'Ecoserveis'),
(11708, 9554, 'no_lang_code', 'name', 'Ecorys (United Kingdom)'),
(11709, 9555, 'no_lang_code', 'name', 'Ascometal (France)'),
(11710, 9556, 'no_lang_code', 'name', 'Cosmo Pharmaceuticals (Italy)'),
(11711, 9557, 'no_lang_code', 'name', 'BMT Group (Netherlands)'),
(11712, 9558, 'no_lang_code', 'name', 'Biozoon (Germany)'),
(11713, 9559, 'no_lang_code', 'name', 'Bitron (Italy)'),
(11714, 9560, 'en', 'name', 'Black Sea Regional Energy Centre'),
(11715, 9561, 'no_lang_code', 'name', 'Zueblin (Germany)'),
(11716, 9562, 'no_lang_code', 'name', 'Aurelius AG (Germany)'),
(11717, 9563, 'no_lang_code', 'name', 'BLC Leather Technology Centre'),
(11718, 9564, 'no_lang_code', 'name', 'ASIO spol (Czechia)'),
(11719, 9565, 'no_lang_code', 'name', 'Devan Chemicals (Belgium)'),
(11720, 9566, 'en', 'name', 'Estonian E Health Foundation'),
(11721, 9567, 'en', 'name', 'Bloomfield Science Museum Jerusalem'),
(11722, 9568, 'no_lang_code', 'name', 'EDMA Innova'),
(11723, 9569, 'pl', 'name', 'ASM - Centrum Badań i Analiz Rynku Sp. z oo'),
(11724, 9569, 'no_lang_code', 'name', 'ASM Centre for Research and Analysis Market (Poland)'),
(11725, 9570, 'no_lang_code', 'name', 'BlueBotics (Switzerland)'),
(11726, 9571, 'et', 'name', 'Eesti RahvusringhƤƤling'),
(11727, 9571, 'en', 'name', 'Estonian Public Broadcasting'),
(11728, 9572, 'no_lang_code', 'name', 'Bluegreen Strategy (Italy)'),
(11729, 9573, 'no_lang_code', 'name', 'Devan (Portugal)'),
(11730, 9574, 'no_lang_code', 'name', 'A2A (Italy)'),
(11731, 9575, 'et', 'name', 'Eesti Kultuuriministeerium'),
(11732, 9575, 'en', 'name', 'Ministry of Culture'),
(11733, 9576, 'no_lang_code', 'name', 'Efacec (Portugal)'),
(11734, 9577, 'no_lang_code', 'name', 'Efkon (Austria)'),
(11735, 9578, 'de', 'name', 'Deutsche Wissenschaftliche Gesellschaft für Erdöl Erdgas und Kohle'),
(11736, 9578, 'en', 'name', 'German Society for Petroleum and Coal Science and Technology'),
(11737, 9579, 'no_lang_code', 'name', 'BOC (Austria)'),
(11738, 9580, 'no_lang_code', 'name', 'Bƶhler Edelstahl (Austria)'),
(11739, 9581, 'en', 'name', 'European Institute for Biomedical Imaging Research'),
(11740, 9582, 'no_lang_code', 'name', 'Boliden (Sweden)'),
(11741, 9583, 'no_lang_code', 'name', 'Eicas Automazione (Italy)'),
(11742, 9584, 'no_lang_code', 'name', 'DIAD Group (Italy)'),
(11743, 9585, 'no_lang_code', 'name', 'Aquaplus (Belgium)'),
(11744, 9586, 'es', 'name', 'Asociación de Investigación de la Industria Agroalimentaria'),
(11745, 9587, 'it', 'name', 'Dipartimento Federale dell''Interno'),
(11746, 9587, 'fr', 'name', 'DƩpartement fƩdƩral de l''intƩrieur'),
(11747, 9587, 'de', 'name', 'Eidgenƶssisches Departement des Innern'),
(11748, 9587, 'en', 'name', 'Federal Department of Home Affairs'),
(11749, 9588, 'no_lang_code', 'name', 'Diagenode (Belgium)'),
(11750, 9589, 'no_lang_code', 'name', 'DiagnoSwiss (Switzerland)'),
(11751, 9590, 'no_lang_code', 'name', 'Bombardier (Germany)'),
(11752, 9591, 'no_lang_code', 'name', 'Bombardier (Sweden)'),
(11753, 9592, 'en', 'name', 'Dialogik (Germany)'),
(11754, 9593, 'es', 'name', 'Asociación de Investigación y Cooperación Industrial de Andalucía'),
(11755, 9594, 'no_lang_code', 'name', 'Siemens (Denmark)'),
(11756, 9595, 'es', 'name', 'Asociación de la Industria Navarra'),
(11757, 9596, 'no_lang_code', 'name', 'Radex Heraklith Industriebeteiligungs (Germany)'),
(11758, 9597, 'en', 'name', 'Eilenburger Electrolysis and Environmental Engineering'),
(11759, 9597, 'no_lang_code', 'name', 'Eilenburger Elektrolyse - und Umwelttechnik (Germany)'),
(11760, 9598, 'no_lang_code', 'name', 'Bouygues (France)'),
(11761, 9599, 'en', 'name', 'European Incoherent Scatter Scientific Association'),
(11762, 9600, 'no_lang_code', 'name', 'Diehl (Germany)'),
(11763, 9601, 'no_lang_code', 'name', 'BoxModul (Sweden)'),
(11764, 9602, 'no_lang_code', 'name', 'Asper Biotech (Estonia)'),
(11765, 9603, 'nl', 'name', 'Dienst voor Wetenschappelijke en Technische Informatie'),
(11766, 9603, 'en', 'name', 'Scientific and Technical Information Service'),
(11767, 9603, 'fr', 'name', 'Service d''Information Scientifique et Technique'),
(11768, 9604, 'no_lang_code', 'name', 'ASSIST Software (Romania)'),
(11769, 9605, 'no_lang_code', 'name', 'ArcelorMittal (Germany)'),
(11770, 9606, 'no_lang_code', 'name', 'Ekodoma (Latvia)'),
(11771, 9607, 'no_lang_code', 'name', 'El.En. Group (Italy)'),
(11772, 9608, 'no_lang_code', 'name', 'Hewlett-Packard (Germany)'),
(11773, 9609, 'no_lang_code', 'name', 'Elastopoli (Finland)'),
(11774, 9610, 'el', 'name', 'Dimitra'),
(11775, 9611, 'de', 'name', 'Deutsches Institut für Normung'),
(11776, 9611, 'en', 'name', 'German Institute for Standardization'),
(11777, 9612, 'no_lang_code', 'name', 'Brandtex (Denmark)'),
(11778, 9613, 'fr', 'name', 'Association de Coordination Technique Pour l''Industrie Agroalimentaire'),
(11779, 9614, 'no_lang_code', 'name', 'Perceptive Software (Germany)'),
(11780, 9615, 'no_lang_code', 'name', 'Engedi Science (United Kingdom)'),
(11781, 9616, 'no_lang_code', 'name', 'Electricity Authority of Cyprus (Cyprus)'),
(11782, 9617, 'ga', 'name', 'Bord SolƔthair an Leictreacha'),
(11783, 9617, 'no_lang_code', 'name', 'Electricity Supply Board (Ireland)'),
(11784, 9618, 'no_lang_code', 'name', 'Brimatech (Austria)'),
(11785, 9619, 'no_lang_code', 'name', 'Finceramica (Italy)'),
(11786, 9620, 'no_lang_code', 'name', 'Brissonneau and Lotz (France)'),
(11787, 9620, 'fr', 'name', 'Brissonneau et Lotz'),
(11788, 9621, 'no_lang_code', 'name', 'Fincantieri (Italy)'),
(11789, 9622, 'no_lang_code', 'name', 'Bretagne Innovation (France)'),
(11790, 9623, 'no_lang_code', 'name', 'LUSAS (United Kingdom)'),
(11791, 9624, 'en', 'name', 'Finnish Society of Automation'),
(11792, 9625, 'no_lang_code', 'name', 'DKI Plast (Denmark)'),
(11793, 9626, 'no_lang_code', 'name', 'Element Energy (United Kingdom)'),
(11794, 9627, 'no_lang_code', 'name', 'DLF Trifolium (Denmark)'),
(11795, 9628, 'no_lang_code', 'name', 'British Airways (United Kingdom)'),
(11796, 9629, 'en', 'name', 'British Science Association'),
(11797, 9630, 'en', 'name', 'British Hydromechanics Research Group'),
(11798, 9631, 'en', 'name', 'Research Institute of the Finnish Economy'),
(11799, 9632, 'no_lang_code', 'name', 'Elisa (Finland)'),
(11800, 9633, 'en', 'name', 'Finnish Transport Agency'),
(11801, 9634, 'no_lang_code', 'name', 'Finovatis (France)'),
(11802, 9635, 'en', 'name', 'Iowa City VA Medical Research Foundation'),
(11803, 9636, 'no_lang_code', 'name', 'British Textile Technology Group'),
(11804, 9637, 'no_lang_code', 'name', 'Humanetics Innovative Solutions (Netherlands)'),
(11805, 9638, 'no_lang_code', 'name', 'FISBA OPTIK (Switzerland)'),
(11806, 9639, 'no_lang_code', 'name', 'FACC (Austria)'),
(11807, 9640, 'no_lang_code', 'name', 'DunavNET (Serbia)'),
(11808, 9641, 'en', 'name', 'FishBase Information and Research Group'),
(11809, 9642, 'en', 'name', 'Brodarski Institute'),
(11810, 9643, 'no_lang_code', 'name', 'FIT Consulting (Italy)'),
(11811, 9644, 'en', 'name', 'Dublin City Council'),
(11812, 9645, 'no_lang_code', 'name', 'Dune (Italy)'),
(11813, 9646, 'no_lang_code', 'name', 'Dunreidy Engneering (Ireland)'),
(11814, 9647, 'no_lang_code', 'name', 'Forschungsgesellschaft Kraftfahrwesen Aachen (Germany)'),
(11815, 9648, 'no_lang_code', 'name', 'Bruel & Kjaer Sound and Vibration Measurement (Denmark)'),
(11816, 9649, 'no_lang_code', 'name', 'Dv Tecnologie d''Avanguardia (Italy)'),
(11817, 9650, 'no_lang_code', 'name', 'Flabeg (Germany)'),
(11818, 9651, 'no_lang_code', 'name', 'Electrovac (Austria)'),
(11819, 9652, 'no_lang_code', 'name', 'Dyadic (Netherlands)'),
(11820, 9653, 'no_lang_code', 'name', 'Flensburger Schiffbau Gesellschaft (Germany)'),
(11821, 9654, 'no_lang_code', 'name', 'Flexiant (United Kingdom)'),
(11822, 9655, 'no_lang_code', 'name', 'Flowtech International (Sweden)'),
(11823, 9656, 'no_lang_code', 'name', 'D2S International (Belgium)'),
(11824, 9657, 'no_lang_code', 'name', 'Fluidtime (Austria)'),
(11825, 9658, 'en', 'name', 'Building Services Research and Information Association'),
(11826, 9659, 'no_lang_code', 'name', 'e GEOS (Italy)'),
(11827, 9660, 'no_lang_code', 'name', 'Buck Consultants International'),
(11828, 9661, 'en', 'name', 'Nordic Folkecenter for Renewable Energy'),
(11829, 9662, 'en', 'name', 'Bulgarian Chamber of Commerce and Industry'),
(11830, 9663, 'en', 'name', 'Hellenic Foundation for European and Foreign Policy'),
(11831, 9664, 'no_lang_code', 'name', 'Ellinogermaniki Agogi'),
(11832, 9665, 'bs', 'name', 'Prona'),
(11833, 9666, 'fr', 'name', 'Fondation de CoopƩration Scientifique'),
(11834, 9666, 'en', 'name', 'Foundation for Scientific Cooperation'),
(11835, 9667, 'no_lang_code', 'name', 'ABB (Italy)'),
(11836, 9668, 'en', 'name', 'E.O. Paton Electric Welding Institute'),
(11837, 9668, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Š·Š²Š°Ń€ŃŽŠ²Š°Š½Š½Ń ім.Š„.Šž.ŠŸŠ°Ń‚Š¾Š½Š°'),
(11838, 9669, 'de', 'name', 'Bundesanstalt für Bergbauernfragen'),
(11839, 9669, 'en', 'name', 'Federal Institute for Less-Favoured and Mountainous Areas'),
(11840, 9670, 'no_lang_code', 'name', 'E.ON (Germany)'),
(11841, 9671, 'no_lang_code', 'name', 'Eltropuls (United Kingdom)'),
(11842, 9672, 'no_lang_code', 'name', 'Vattenfall (Germany)'),
(11843, 9673, 'no_lang_code', 'name', 'Elyros (Belgium)'),
(11844, 9674, 'en', 'name', 'Felicita and Enrico Bignaschi and Sons Foundation'),
(11845, 9674, 'it', 'name', 'Fondazione Bignaschi'),
(11846, 9675, 'no_lang_code', 'name', 'British Nuclear Fuel Limited (United Kingdom)'),
(11847, 9676, 'it', 'name', 'Fondazione GraphiTech'),
(11848, 9677, 'no_lang_code', 'name', 'Dimos Athinaion Epicheirisi Michanografisis (Greece)'),
(11849, 9678, 'no_lang_code', 'name', 'EMC Microcollections (Germany)'),
(11850, 9679, 'en', 'name', 'EASN Technology Innovation Services BVBA'),
(11851, 9680, 'it', 'name', 'Fondazione Idis CittĆ  della Scienza'),
(11852, 9681, 'no_lang_code', 'name', 'EmergenTec (Austria)'),
(11853, 9682, 'no_lang_code', 'name', 'Eclexys (Switzerland)'),
(11854, 9683, 'en', 'name', 'PENTA Foundation'),
(11855, 9684, 'no_lang_code', 'name', 'Empolis (Germany)'),
(11856, 9685, 'no_lang_code', 'name', 'PricewaterhouseCoopers (France)'),
(11857, 9686, 'it', 'name', 'Fondazione Politecnico di Milano'),
(11858, 9687, 'no_lang_code', 'name', 'Empresa de Desenvolvimento Mineiro (Portugal)'),
(11859, 9688, 'no_lang_code', 'name', 'Dornier (Germany)'),
(11860, 9689, 'no_lang_code', 'name', 'Ente Nazionale Assistenza al Volo (Italy)'),
(11861, 9690, 'en', 'name', 'Digital Renaissance Foundation'),
(11862, 9690, 'it', 'name', 'Fondazione Rinascimento Digitale'),
(11863, 9691, 'it', 'name', 'Fondazione Rosselli'),
(11864, 9691, 'en', 'name', 'Rosselli Foundation'),
(11865, 9692, 'de', 'name', 'Bundesnetzagentur'),
(11866, 9692, 'en', 'name', 'Federal Network Agency'),
(11867, 9693, 'no_lang_code', 'name', 'Enerdata (France)'),
(11868, 9694, 'en', 'name', 'Energy Cities'),
(11869, 9695, 'no_lang_code', 'name', 'Energie Baden-Württemberg (Germany)'),
(11870, 9696, 'en', 'name', 'Austrian Energy Agency'),
(11871, 9696, 'de', 'name', 'Ɩsterreichische Energieagentur'),
(11872, 9697, 'no_lang_code', 'name', 'Energiewerke Nord (Germany)'),
(11873, 9698, 'fr', 'name', 'Bureau fƩdƩral du Plan'),
(11874, 9698, 'en', 'name', 'Federal Planning Bureau'),
(11875, 9698, 'nl', 'name', 'Het Federaal Planbureau'),
(11876, 9699, 'no_lang_code', 'name', 'Energinet (Denmark)'),
(11877, 9700, 'sk', 'name', 'Energy Centre Bratislava'),
(11878, 9701, 'fr', 'name', 'Fonds de la Recherche Scientifique'),
(11879, 9701, 'en', 'name', 'Fund for Scientific Research'),
(11880, 9702, 'no_lang_code', 'name', 'Bureau van Dijk (Belgium)'),
(11881, 9703, 'no_lang_code', 'name', 'Global Security Intelligence (United Kingdom)'),
(11882, 9704, 'no_lang_code', 'name', 'EnginSoft (Italy)'),
(11883, 9705, 'no_lang_code', 'name', 'GlobalFoundries (Germany)'),
(11884, 9706, 'no_lang_code', 'name', 'BYG Systems (United Kingdom)'),
(11885, 9707, 'no_lang_code', 'name', 'Fordesi (Portugal)'),
(11886, 9708, 'no_lang_code', 'name', 'Glƶtzl (Germany)'),
(11887, 9709, 'no_lang_code', 'name', 'c-LEcta (Germany)'),
(11888, 9710, 'no_lang_code', 'name', 'GMI Aero (France)'),
(11889, 9711, 'no_lang_code', 'name', 'Engineering Solutions International (Ireland)'),
(11890, 9712, 'en', 'name', 'CGS Group'),
(11891, 9713, 'es', 'name', 'Association Instituto Tecnológico MetalmecÔnico'),
(11892, 9714, 'fr', 'name', 'Forem'),
(11893, 9715, 'es', 'name', 'Forem'),
(11894, 9716, 'no_lang_code', 'name', 'Enercon (Germany)'),
(11895, 9717, 'no_lang_code', 'name', 'Goodyear (Luxembourg)'),
(11896, 9718, 'no_lang_code', 'name', 'Caixa MƔgica Software (Portugal)'),
(11897, 9719, 'no_lang_code', 'name', 'Google (Ireland)'),
(11898, 9720, 'no_lang_code', 'name', 'Gorenje (Slovenia)'),
(11899, 9721, 'en', 'name', 'Chamber of Commerce and Industry of Slovenia'),
(11900, 9721, 'sl', 'name', 'Gospodarska zbornica Slovenije'),
(11901, 9722, 'no_lang_code', 'name', 'Cambridge CMOS Sensors (United Kingdom)'),
(11902, 9723, 'no_lang_code', 'name', 'Cambridge Econometrics (United Kingdom)'),
(11903, 9724, 'sl', 'name', 'Giz-Grozd Plasttehnika'),
(11904, 9724, 'en', 'name', 'Plasttechnics Cluster Slovenia'),
(11905, 9725, 'en', 'name', 'Gothenburg Municipality'),
(11906, 9725, 'sv', 'name', 'Gƶteborgs Stads'),
(11907, 9726, 'no_lang_code', 'name', 'Gühring (Germany)'),
(11908, 9727, 'en', 'name', 'VATT Institute for Economic Research'),
(11909, 9728, 'no_lang_code', 'name', 'Cambridge Environmental Research Consultants (United Kingdom)'),
(11910, 9729, 'en', 'name', 'Gov2u'),
(11911, 9730, 'no_lang_code', 'name', 'Graal Tech'),
(11912, 9731, 'no_lang_code', 'name', 'Grace (Germany)'),
(11913, 9732, 'it', 'name', 'Camera di commercio di Milano'),
(11914, 9733, 'de', 'name', 'Forschungsinstitut für Biologischen Landbau'),
(11915, 9733, 'en', 'name', 'Research Institute of Organic Agriculture'),
(11916, 9734, 'en', 'name', 'Building and Civil Engineering Institute'),
(11917, 9734, 'no_lang_code', 'name', 'Gradbeni InŔtitut Zrmk d.o.o'),
(11918, 9735, 'no_lang_code', 'name', 'Grado Zero Espace (Italy)'),
(11919, 9736, 'de', 'name', 'Forschungsinstitut für schnellwachsende Baumarten'),
(11920, 9737, 'no_lang_code', 'name', 'Enide Solutions (Spain)'),
(11921, 9738, 'no_lang_code', 'name', 'International Chemical Investors (Germany)'),
(11922, 9739, 'no_lang_code', 'name', 'Capgemini (France)'),
(11923, 9740, 'no_lang_code', 'name', 'Enkam (Denmark)'),
(11924, 9741, 'no_lang_code', 'name', 'Granit Technologies (Switzerland)'),
(11925, 9742, 'no_lang_code', 'name', 'Abingdon Health (United Kingdom)'),
(11926, 9743, 'no_lang_code', 'name', 'Granta Design (United Kingdom)'),
(11927, 9744, 'no_lang_code', 'name', 'Capgemini (Netherlands)'),
(11928, 9745, 'no_lang_code', 'name', 'Capgemini (Belgium)'),
(11929, 9746, 'no_lang_code', 'name', 'Cap Sciences (France)'),
(11930, 9747, 'en', 'name', 'Greenovate! Europe'),
(11931, 9748, 'no_lang_code', 'name', 'Greentech (France)'),
(11932, 9749, 'es', 'name', 'Ente Vasco de la EnergĆ­a'),
(11933, 9750, 'no_lang_code', 'name', 'Enterprise Estonia (Estonia)'),
(11934, 9751, 'no_lang_code', 'name', 'Grontmij (Denmark)'),
(11935, 9752, 'no_lang_code', 'name', 'Carmeq (Germany)'),
(11936, 9753, 'no_lang_code', 'name', 'Pfizer (Spain)'),
(11937, 9754, 'no_lang_code', 'name', 'Carnival Corporation (United Kingdom)'),
(11938, 9755, 'en', 'name', 'National Telecommunications Network for Technology, Education and Research'),
(11939, 9755, 'fr', 'name', 'Renater'),
(11940, 9756, 'no_lang_code', 'name', 'Environics Oy (Finland)'),
(11941, 9757, 'no_lang_code', 'name', 'Grupo ACS (Spain)'),
(11942, 9758, 'en', 'name', 'Slovenian Environment Agency'),
(11943, 9759, 'no_lang_code', 'name', 'CARSA (Spain)'),
(11944, 9760, 'it', 'name', 'Gruppi di Ricerca Economica Teorica ed Applicata'),
(11945, 9761, 'fr', 'name', 'Forum des Laboratoires nationaux Europeens de Recherche Routiere'),
(11946, 9761, 'en', 'name', 'Forum of European National Highway Research Laboratories'),
(11947, 9762, 'no_lang_code', 'name', 'Environmental Protection Engineering (Greece)'),
(11948, 9763, 'no_lang_code', 'name', 'Gruppo CLAS (Italy)'),
(11949, 9764, 'no_lang_code', 'name', 'Energy and Environmental Consultancy'),
(11950, 9765, 'no_lang_code', 'name', 'Enviscope (Germany)'),
(11951, 9766, 'no_lang_code', 'name', 'Castle Group (United Kingdom)'),
(11952, 9767, 'no_lang_code', 'name', 'Epigem (United Kingdom)'),
(11953, 9768, 'no_lang_code', 'name', 'GTD (Spain)'),
(11954, 9769, 'no_lang_code', 'name', 'Forum Virium (Finland)'),
(11955, 9770, 'no_lang_code', 'name', 'Epsilon International (Greece)'),
(11956, 9771, 'no_lang_code', 'name', 'Epsilon (Italy)'),
(11957, 9772, 'no_lang_code', 'name', 'GVS (Italy)'),
(11958, 9773, 'no_lang_code', 'name', 'HW Communications (United Kingdom)'),
(11959, 9774, 'no_lang_code', 'name', 'Castle Rock Geotech (United Kingdom)'),
(11960, 9775, 'no_lang_code', 'name', 'Faseroptische Systeme Messtechnik (Germany)'),
(11961, 9776, 'no_lang_code', 'name', 'HaCon (Germany)'),
(11962, 9777, 'de', 'name', 'Hahn-Schickard-Gesellschaft für angewandte Forschung'),
(11963, 9778, 'no_lang_code', 'name', 'Catator (Sweden)'),
(11964, 9779, 'sv', 'name', 'Barnets borg'),
(11965, 9779, 'en', 'name', 'Helsinki Children''s Hospital'),
(11966, 9779, 'fi', 'name', 'Lastenlinna'),
(11967, 9780, 'en', 'name', 'Ministry of Education and Research'),
(11968, 9781, 'no_lang_code', 'name', 'CECIMO (Belgium)'),
(11969, 9782, 'fr', 'name', 'Forêt Méditerranéenne'),
(11970, 9783, 'no_lang_code', 'name', 'Global Graphics (United Kingdom)'),
(11971, 9784, 'no_lang_code', 'name', 'Envisa (France)'),
(11972, 9785, 'no_lang_code', 'name', 'Forschungs- und Technologietransfer (Austria)'),
(11973, 9786, 'no_lang_code', 'name', 'Eolas (Ireland)'),
(11974, 9787, 'no_lang_code', 'name', 'Harms & Wende (Germany)'),
(11975, 9788, 'en', 'name', 'Foundation for International Environmental Law and Development'),
(11976, 9789, 'de', 'name', 'Institut für Seeverkehrswirtschaft und Logistik'),
(11977, 9789, 'en', 'name', 'Institute of Shipping Economics and Logistics'),
(11978, 9790, 'no_lang_code', 'name', 'Epsilon Net (Greece)'),
(11979, 9791, 'no_lang_code', 'name', 'Equipos Nucleares (Spain)'),
(11980, 9792, 'en', 'name', 'Foundation of the Hellenic World'),
(11981, 9793, 'no_lang_code', 'name', 'Edif Group (United Kingdom)'),
(11982, 9794, 'en', 'name', 'Lukasiewicz Research Network - Krakow Institute of Technology'),
(11983, 9794, 'pl', 'name', 'Łukasiewicz -Krakowski Instytut Technologiczny'),
(11984, 9795, 'no_lang_code', 'name', 'HEAD Acoustics (Germany)'),
(11985, 9796, 'no_lang_code', 'name', 'Erdyn (France)'),
(11986, 9797, 'en', 'name', 'Health Information Management'),
(11987, 9798, 'no_lang_code', 'name', 'FOV Fabrics (Sweden)'),
(11988, 9799, 'no_lang_code', 'name', 'Ericsson (Spain)'),
(11989, 9800, 'no_lang_code', 'name', 'Ericsson (Germany)'),
(11990, 9801, 'no_lang_code', 'name', 'Heckmann (Germany)'),
(11991, 9802, 'no_lang_code', 'name', 'Ericsson (Hungary)'),
(11992, 9803, 'no_lang_code', 'name', 'Hella (Germany)'),
(11993, 9804, 'no_lang_code', 'name', 'Hellenic Aerospace Industry (Greece)'),
(11994, 9804, 'el', 'name', 'Ελληνική Αεροπορική Βιομηχανία'),
(11995, 9805, 'no_lang_code', 'name', 'Hellenic Petroleum (Greece)'),
(11996, 9806, 'no_lang_code', 'name', 'Campden BRI (Hungary)'),
(11997, 9807, 'no_lang_code', 'name', 'France DƩveloppement Conseil (France)'),
(11998, 9808, 'en', 'name', 'Education and Research Network'),
(11999, 9809, 'en', 'name', 'New Hellenic Radio, Internet and Television'),
(12000, 9810, 'de', 'name', 'Institut für Molekulare Biologie'),
(12001, 9810, 'en', 'name', 'Institute of Molecular Biology'),
(12002, 9811, 'no_lang_code', 'name', 'Klett Gruppe (Germany)'),
(12003, 9812, 'no_lang_code', 'name', 'Fratelli Alinari (Italy)'),
(12004, 9813, 'no_lang_code', 'name', 'LafargeHolcim (Greece)'),
(12005, 9814, 'no_lang_code', 'name', 'Piacenza Cashmere (Italy)'),
(12006, 9815, 'no_lang_code', 'name', 'Ernst & Young (Israel)'),
(12007, 9816, 'no_lang_code', 'name', 'Ericsson (Croatia)'),
(12008, 9817, 'no_lang_code', 'name', 'Ericsson (Italy)'),
(12009, 9818, 'no_lang_code', 'name', 'Ericsson (Netherlands)'),
(12010, 9819, 'en', 'name', 'Ministry of Digital Governance'),
(12011, 9819, 'el', 'name', '΄πουργείο Ψηφιακής Ī”Ī¹Ī±ĪŗĻ…Ī²Ī­ĻĪ½Ī·ĻƒĪ·Ļ‚'),
(12012, 9820, 'en', 'name', 'Hellenic Ministry of Culture and Sports'),
(12013, 9820, 'el', 'name', '΄πουργείο Ī ĪæĪ»Ī¹Ļ„Ī¹ĻƒĪ¼ĪæĻ και Ī‘ĪøĪ»Ī·Ļ„Ī¹ĻƒĪ¼ĪæĻ'),
(12014, 9821, 'en', 'name', 'Hellenic Register of Shipping'),
(12015, 9821, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒĻ‚ ĪĪ·ĪæĪ³Ī½ĻŽĪ¼Ļ‰Ī½'),
(12016, 9822, 'no_lang_code', 'name', 'Institut Mikroelektronických Aplikací (Czechia)'),
(12017, 9823, 'no_lang_code', 'name', 'Forthnet (Greece)'),
(12018, 9824, 'no_lang_code', 'name', 'Ericsson (Serbia)'),
(12019, 9825, 'no_lang_code', 'name', 'Hellenic Telecommunications Organization (Greece)'),
(12020, 9826, 'no_lang_code', 'name', 'Hexagon (Belgium)'),
(12021, 9827, 'fr', 'name', 'Institut National de l''Audiovisuel'),
(12022, 9827, 'en', 'name', 'National Audiovisual Institute'),
(12023, 9828, 'no_lang_code', 'name', 'Hauzer (Netherlands)'),
(12024, 9829, 'no_lang_code', 'name', 'Help Service - Remote Sensing (Czechia)'),
(12025, 9830, 'fi', 'name', 'Helsingin ja Uudenmaan Sairaanhoitopiiri'),
(12026, 9830, 'en', 'name', 'Hospital District of Helsinki and Uusimaa'),
(12027, 9831, 'fr', 'name', 'Institut National de la Recherche Agronomique de Tunisie'),
(12028, 9832, 'no_lang_code', 'name', 'Emilia Romagna Valorizzazione Economica Territorio (Italy)'),
(12029, 9833, 'no_lang_code', 'name', 'Frequentis (Austria)'),
(12030, 9834, 'no_lang_code', 'name', 'Esaote (Italy)'),
(12031, 9835, 'no_lang_code', 'name', 'Fricke und Mallah Microwave Technology (Germany)'),
(12032, 9835, 'de', 'name', 'Fricke und Mallah Microwave Technology GmbH'),
(12033, 9836, 'no_lang_code', 'name', 'Esbensen Consulting Engineers (Denmark)'),
(12034, 9837, 'no_lang_code', 'name', 'Frog AGV Systems (Netherlands)'),
(12035, 9838, 'en', 'name', 'Heritage Malta'),
(12036, 9839, 'en', 'name', 'Hertie School'),
(12037, 9840, 'de', 'name', 'Forschungszentrum Telekommunikation Wien'),
(12038, 9840, 'en', 'name', 'Telecommunications Research Center Vienna'),
(12039, 9841, 'fr', 'name', 'Institut National de Recherche Halieutique'),
(12040, 9842, 'no_lang_code', 'name', 'Heusch Boesefeldt (Germany)'),
(12041, 9843, 'no_lang_code', 'name', 'Hewlett-Packard (France)'),
(12042, 9844, 'no_lang_code', 'name', 'Hewlett-Packard (Italy)'),
(12043, 9845, 'no_lang_code', 'name', 'Hexis (Switzerland)'),
(12044, 9846, 'en', 'name', 'ETA-Florence Renewable Energies'),
(12045, 9847, 'no_lang_code', 'name', 'HI Iberia (Spain)'),
(12046, 9848, 'no_lang_code', 'name', 'Fumatech (Germany)'),
(12047, 9849, 'no_lang_code', 'name', 'Spectra-Physics (Austria)'),
(12048, 9850, 'no_lang_code', 'name', 'NTT (Italy)'),
(12049, 9851, 'en', 'name', 'Highland Council'),
(12050, 9852, 'no_lang_code', 'name', 'Etrel (Slovenia)'),
(12051, 9853, 'no_lang_code', 'name', 'Hispasat (Spain)'),
(12052, 9854, 'no_lang_code', 'name', 'Hitachi (France)'),
(12053, 9855, 'en', 'name', 'National Research Institute of Rural Engineering, Water and Forests'),
(12054, 9856, 'no_lang_code', 'name', 'Euram (United Kingdom)'),
(12055, 9857, 'en', 'name', 'European Centre for Information on Marine Science and Technology'),
(12056, 9858, 'en', 'name', 'European rail Research Network of EXcellence'),
(12057, 9859, 'pt', 'name', 'Fundação Bio Rio'),
(12058, 9860, 'no_lang_code', 'name', 'Funkwerk (Germany)'),
(12059, 9861, 'no_lang_code', 'name', 'HƶganƤs (Sweden)'),
(12060, 9862, 'en', 'name', 'Eurocontrol'),
(12061, 9863, 'no_lang_code', 'name', 'Euroconsultants (Greece)'),
(12062, 9864, 'en', 'name', 'Eurocities'),
(12063, 9865, 'no_lang_code', 'name', 'Holland Institute of Traffic Technology'),
(12064, 9866, 'no_lang_code', 'name', 'Thales (Netherlands)'),
(12065, 9867, 'de', 'name', 'Deutsche Gesellschaft für Holzforschung'),
(12066, 9868, 'no_lang_code', 'name', 'Holmes Halls Processors (United Kingdom)'),
(12067, 9869, 'no_lang_code', 'name', 'Holografika (Hungary)'),
(12068, 9870, 'en', 'name', 'European Trade Union Confederation'),
(12069, 9871, 'no_lang_code', 'name', 'Honeywell (Czechia)'),
(12070, 9872, 'no_lang_code', 'name', 'Horiba (France)'),
(12071, 9873, 'no_lang_code', 'name', 'Eurogentec (Belgium)'),
(12072, 9874, 'en', 'name', 'Institute of Biodiversity and Ecosystem Research'),
(12073, 9875, 'en', 'name', 'EuroHealthNet'),
(12074, 9876, 'no_lang_code', 'name', 'Eurokleis'),
(12075, 9877, 'fr', 'name', 'HouillĆØres de Lorraine'),
(12076, 9878, 'en', 'name', 'Euclid Network'),
(12077, 9879, 'no_lang_code', 'name', 'HS-Art Digital Service (Austria)'),
(12078, 9880, 'no_lang_code', 'name', 'Microsoft (Germany)'),
(12079, 9881, 'no_lang_code', 'name', 'Europe for Business'),
(12080, 9882, 'no_lang_code', 'name', 'Huawei Technologies (Germany)'),
(12081, 9883, 'no_lang_code', 'name', 'Europe Unlimited (Belgium)'),
(12082, 9884, 'nl', 'name', 'Veiligheids- en Gezondheidsregio Gelderland-Midden'),
(12083, 9885, 'no_lang_code', 'name', 'Humanetics (Germany)'),
(12084, 9886, 'no_lang_code', 'name', 'European Apparel and Textile Confederation'),
(12085, 9887, 'en', 'name', 'European Aquaculture Society'),
(12086, 9888, 'no_lang_code', 'name', 'Huntsman (Switzerland)'),
(12087, 9889, 'en', 'name', 'European Federation of Animal Science'),
(12088, 9889, 'de', 'name', 'Europäische Vereinigung für Tierproduktion'),
(12089, 9889, 'it', 'name', 'Federazione Europea di Zootecnia'),
(12090, 9889, 'fr', 'name', 'FƩdƩration EuropƩenne de Zootechnie'),
(12091, 9890, 'no_lang_code', 'name', 'Huron (France)'),
(12092, 9891, 'en', 'name', 'European Association for Renewable Energy'),
(12093, 9891, 'de', 'name', 'Europäische Vereinigung für Erneuerbare Energien Eurosolar'),
(12094, 9892, 'no_lang_code', 'name', 'Hybrid Catalysis (Netherlands)'),
(12095, 9893, 'en', 'name', 'Group For Research and Technology Exchanges'),
(12096, 9893, 'fr', 'name', 'Groupe de Recherches et d''Echanges Technologiques'),
(12097, 9894, 'en', 'name', 'Hydrogen Fuel Cells and Electro-Mobility in European Regions'),
(12098, 9895, 'en', 'name', 'Eurocontrol'),
(12099, 9896, 'en', 'name', 'European Association of Craft, Small and Medium-Sized Enterprises'),
(12100, 9897, 'en', 'name', 'European Biomass Industry Association'),
(12101, 9898, 'en', 'name', 'HYDROMOD Scientific Consulting'),
(12102, 9899, 'no_lang_code', 'name', 'HyGear (Netherlands)'),
(12103, 9900, 'en', 'name', 'European Business and Innovation Centre Network'),
(12104, 9901, 'en', 'name', 'European Center for Information and Communication Technologies'),
(12105, 9902, 'en', 'name', 'European Centre for Nature Conservation'),
(12106, 9903, 'en', 'name', 'I & T Nardoni Institute'),
(12107, 9904, 'fr', 'name', 'Arvalis - Institut du VƩgƩtal'),
(12108, 9905, 'en', 'name', 'French Institute of Textiles and Clothing'),
(12109, 9905, 'fr', 'name', 'Institut FranƧais du Textile et de l''Habillement'),
(12110, 9906, 'en', 'name', 'European Council for Maritime Applied R&D Association'),
(12111, 9907, 'es', 'name', 'Fundación de Estudios de Economía Aplicada'),
(12112, 9908, 'es', 'name', 'Fundación Valenciaport'),
(12113, 9908, 'en', 'name', 'Valenciaport Foundation'),
(12114, 9909, 'no_lang_code', 'name', 'I.Con. Innovation'),
(12115, 9910, 'pl', 'name', 'Instytut Budownictwa Mechanizacji i Elektryfikacji Rolnictwa'),
(12116, 9911, 'no_lang_code', 'name', 'Ingegneria dei Sistemi (Italy)'),
(12117, 9912, 'no_lang_code', 'name', 'Vodafone (Germany)'),
(12118, 9913, 'en', 'name', 'Institute for Chemical Processing of Coal'),
(12119, 9914, 'no_lang_code', 'name', 'Ian Catling Consultancy'),
(12120, 9915, 'en', 'name', 'Electronic Chips & Systems Design Initiative'),
(12121, 9916, 'no_lang_code', 'name', 'Ibeo Automotive Systems (Germany)'),
(12122, 9917, 'en', 'name', 'European Emergency Number Association'),
(12123, 9918, 'no_lang_code', 'name', 'Ingenieurbüro Kleehammer Gruppe (Germany)'),
(12124, 9919, 'fr', 'name', 'Conseil EuropƩen de l''Information sur l''Alimentation'),
(12125, 9919, 'en', 'name', 'European Food Information Council'),
(12126, 9919, 'es', 'name', 'Europeo de Información sobre la Alimentación'),
(12127, 9919, 'de', 'name', 'Europäische Informationszentrum für Lebensmittel'),
(12128, 9920, 'en', 'name', 'IBM Research - Ireland'),
(12129, 9921, 'en', 'name', 'European Food Information Resource'),
(12130, 9922, 'no_lang_code', 'name', 'IBS Precision Engineering (Netherlands)'),
(12131, 9923, 'en', 'name', 'European Forum for Good Clinical Practice'),
(12132, 9924, 'no_lang_code', 'name', 'Imperial Consultants'),
(12133, 9925, 'en', 'name', 'European Forum of Farm Animal Breeders'),
(12134, 9926, 'en', 'name', 'European Genetics Foundation'),
(12135, 9927, 'en', 'name', 'Institute for High Energy Physics'),
(12136, 9927, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики высоких ŃŠ½ŠµŃ€Š³ŠøŠ¹'),
(12137, 9928, 'en', 'name', 'Icelandic Meteorological Office'),
(12138, 9929, 'en', 'name', 'Centre for Research in Engineering Surface Technology'),
(12139, 9930, 'no_lang_code', 'name', 'ICI Caldaie (Italy)'),
(12140, 9931, 'eu', 'name', 'Matia Fundazioa'),
(12141, 9932, 'en', 'name', 'ICLEI - Local Governments for Sustainability'),
(12142, 9933, 'en', 'name', 'European Health Telematics Association'),
(12143, 9934, 'no_lang_code', 'name', 'ID Quantique (Switzerland)'),
(12144, 9935, 'en', 'name', 'European Intermodal Association'),
(12145, 9936, 'en', 'name', 'Aragon Hydrogen Foundation'),
(12146, 9936, 'es', 'name', 'Fundación Hidrógeno Aragón'),
(12147, 9937, 'no_lang_code', 'name', 'IDEC'),
(12148, 9938, 'es', 'name', 'Fundación para la Formación e Investigación Sanitarias de la Región de Murcia'),
(12149, 9939, 'en', 'name', 'Sea Europe'),
(12150, 9940, 'en', 'name', 'European Materials Research Society'),
(12151, 9941, 'no_lang_code', 'name', 'IdMind (Portugal)'),
(12152, 9942, 'no_lang_code', 'name', 'IdroGeo'),
(12153, 9943, 'en', 'name', 'Institute for Language and Speech Processing'),
(12154, 9944, 'no_lang_code', 'name', 'Idronaut (Italy)'),
(12155, 9945, 'en', 'name', 'European Network of Living Labs'),
(12156, 9946, 'en', 'name', 'European Organisation for Security'),
(12157, 9947, 'en', 'name', 'Institute for Parallel Processing'),
(12158, 9947, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по паралелна обработка'),
(12159, 9948, 'en', 'name', 'European Photovoltaic Industry Association'),
(12160, 9949, 'es', 'name', 'Fundación Universidad Empresa'),
(12161, 9950, 'en', 'name', 'IEA Clean Coal Centre'),
(12162, 9951, 'no_lang_code', 'name', 'IFC Research (United Kingdom)'),
(12163, 9952, 'no_lang_code', 'name', 'Vodafone (Spain)'),
(12164, 9953, 'no_lang_code', 'name', 'European Plastics Converters'),
(12165, 9954, 'en', 'name', 'European Renewable Energy Council'),
(12166, 9955, 'en', 'name', 'Furniture Industry Research Association'),
(12167, 9956, 'no_lang_code', 'name', 'Future Analytics'),
(12168, 9957, 'en', 'name', 'European Research Consortium for Informatics and Mathematics'),
(12169, 9958, 'en', 'name', 'International Information Management Corporation'),
(12170, 9959, 'en', 'name', 'European Respiratory Society'),
(12171, 9960, 'en', 'name', 'Institute for Transport Sciences'),
(12172, 9961, 'en', 'name', 'Institute of Agricultural Economics'),
(12173, 9962, 'en', 'name', 'European School of Haematology'),
(12174, 9963, 'no_lang_code', 'name', 'Ikerlan'),
(12175, 9964, 'no_lang_code', 'name', 'Ikv++ Technologies (Germany)'),
(12176, 9965, 'en', 'name', 'European Small Hydropower Association'),
(12177, 9966, 'no_lang_code', 'name', 'Ilva (Italy)'),
(12178, 9967, 'no_lang_code', 'name', 'GAF AG'),
(12179, 9968, 'no_lang_code', 'name', 'Galilaeus (Finland)'),
(12180, 9969, 'no_lang_code', 'name', 'IMA Materialforschung und Anwendungstechnik'),
(12181, 9970, 'no_lang_code', 'name', 'Imaginary (Italy)'),
(12182, 9971, 'no_lang_code', 'name', 'Galson Sciences'),
(12183, 9972, 'en', 'name', 'European Smart Card Industry Association'),
(12184, 9973, 'no_lang_code', 'name', 'Imagination Computer Services (Austria)'),
(12185, 9974, 'en', 'name', 'Institute of Agrophysics, Polish Academy of Sciences'),
(12186, 9975, 'en', 'name', 'European Southern Observatory'),
(12187, 9975, 'de', 'name', 'Europäische Südsternwarte'),
(12188, 9976, 'no_lang_code', 'name', 'Imasonic'),
(12189, 9977, 'no_lang_code', 'name', 'Gasera (Finland)'),
(12190, 9978, 'en', 'name', 'Institute of Atomic Energy'),
(12191, 9978, 'pl', 'name', 'Instytut Energii Atomowej'),
(12192, 9979, 'en', 'name', 'European Technology Development'),
(12193, 9980, 'no_lang_code', 'name', 'GATC Biotech (Germany)'),
(12194, 9981, 'en', 'name', 'Institute of Baltic Studies'),
(12195, 9982, 'no_lang_code', 'name', 'European Transonic Windtunnel (Germany)'),
(12196, 9983, 'en', 'name', 'Institute of Bioorganic Chemistry and Petrochemistry V.P. Kukhar'),
(12197, 9984, 'no_lang_code', 'name', 'Engie (France)'),
(12198, 9985, 'en', 'name', 'European Union Road Federation'),
(12199, 9986, 'no_lang_code', 'name', 'General Electric (Italy)'),
(12200, 9987, 'en', 'name', 'European Virtual Institute for Integrated Risk Management'),
(12201, 9988, 'en', 'name', 'Semenov Institute of Chemical Physics'),
(12202, 9988, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической физики имени Š. Š. Демёнова'),
(12203, 9989, 'no_lang_code', 'name', 'IMIX Vision Support Systems (Netherlands)'),
(12204, 9990, 'no_lang_code', 'name', 'Danaher (France)'),
(12205, 9991, 'nl', 'name', 'Gemeente Amsterdam'),
(12206, 9992, 'nl', 'name', 'Gemeente Eindhoven'),
(12207, 9993, 'en', 'name', 'European Virtual Institute on Knowledge-based Multifunctional Materials'),
(12208, 9994, 'nl', 'name', 'Gemeente Rotterdam'),
(12209, 9995, 'no_lang_code', 'name', 'AkzoNobel (United Kingdom)'),
(12210, 9996, 'en', 'name', 'Institute of Ecology and Botany'),
(12211, 9996, 'hu', 'name', 'Ɩkológiai Ć©s Botanikai IntĆ©zet'),
(12212, 9997, 'en', 'name', 'Port of Rotterdam Authority'),
(12213, 9998, 'en', 'name', 'WindEurope'),
(12214, 9999, 'no_lang_code', 'name', 'In JeT ApS (Denmark)'),
(12215, 10000, 'en', 'name', 'Institute of Economics of the Polish Academy of Sciences'),
(12216, 10000, 'pl', 'name', 'Instytut Nauk Ekonomicznych'),
(12217, 10001, 'no_lang_code', 'name', 'Europus'),
(12218, 10002, 'no_lang_code', 'name', 'Euroquality'),
(12219, 10003, 'no_lang_code', 'name', 'In2 Search Interfaces Development (United Kingdom)'),
(12220, 10004, 'no_lang_code', 'name', 'Inasco (Greece)'),
(12221, 10005, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Germany)'),
(12222, 10006, 'no_lang_code', 'name', 'Inburex Consulting'),
(12223, 10007, 'no_lang_code', 'name', 'Genedata (Switzerland)'),
(12224, 10008, 'no_lang_code', 'name', 'InConTec (Germany)'),
(12225, 10009, 'no_lang_code', 'name', 'DuPont (Netherlands)'),
(12226, 10010, 'no_lang_code', 'name', 'Larco (Greece)'),
(12227, 10011, 'en', 'name', 'Ofcom'),
(12228, 10012, 'no_lang_code', 'name', 'Eurosense (Belgium)'),
(12229, 10013, 'en', 'name', 'Ministry of Education and Religious Affairs'),
(12230, 10013, 'el', 'name', '΄πουργείο ΠαιΓείας, ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και Ī˜ĻĪ·ĻƒĪŗĪµĻ…Ī¼Ī¬Ļ„Ļ‰Ī½'),
(12231, 10014, 'hu', 'name', 'FöldrajztudomÔnyi Kutatóintézet'),
(12232, 10014, 'en', 'name', 'Geographical Institute'),
(12233, 10015, 'no_lang_code', 'name', 'geniaLab (Germany)'),
(12234, 10016, 'no_lang_code', 'name', 'Eurotech (Italy)'),
(12235, 10017, 'en', 'name', 'Institute of Geography'),
(12236, 10017, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географии Российской АкаГемии наук'),
(12237, 10018, 'no_lang_code', 'name', 'Genias Benelux (Netherlands)'),
(12238, 10019, 'no_lang_code', 'name', 'European Telecommunications Satellite Organization'),
(12239, 10020, 'en', 'name', 'Institute of Hydroengineering'),
(12240, 10020, 'pl', 'name', 'Instytut Budownictwa Wodnego PAN'),
(12241, 10021, 'no_lang_code', 'name', 'Genos (Croatia)'),
(12242, 10022, 'no_lang_code', 'name', 'Sener (Spain)'),
(12243, 10023, 'no_lang_code', 'name', 'Eutema Technology Management'),
(12244, 10024, 'no_lang_code', 'name', 'EV Group (Austria)'),
(12245, 10025, 'no_lang_code', 'name', 'Genoway (France)'),
(12246, 10026, 'en', 'name', 'Evaluations and Language resources Distribution Agency'),
(12247, 10027, 'no_lang_code', 'name', 'Industrial Control Solutions'),
(12248, 10028, 'no_lang_code', 'name', 'GenXPro (Germany)'),
(12249, 10029, 'no_lang_code', 'name', 'Industrial Design Consultancy'),
(12250, 10030, 'no_lang_code', 'name', 'EVECO Brno (Czechia)'),
(12251, 10031, 'no_lang_code', 'name', 'Geoimaging (Cyprus)'),
(12252, 10032, 'no_lang_code', 'name', 'Correanayak (Spain)'),
(12253, 10033, 'no_lang_code', 'name', 'Evektor (Czechia)'),
(12254, 10034, 'en', 'name', 'Geological Institute Strashimir Dimitrov'),
(12255, 10034, 'bg', 'name', 'Геологически ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "Š”Ń‚Ń€Š°ŃˆŠøŠ¼ŠøŃ€ Димитров"'),
(12256, 10035, 'no_lang_code', 'name', 'Pirelli (Italy)'),
(12257, 10036, 'en', 'name', 'Institute of Mathematical Machines and Systems Problems'),
(12258, 10036, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем математичних машин і систем ŠŠŠ України'),
(12259, 10037, 'no_lang_code', 'name', 'Industrieanlagen Betriebsgesellschaft (Germany)'),
(12260, 10038, 'no_lang_code', 'name', 'Evoleo Technologies (Portugal)'),
(12261, 10039, 'no_lang_code', 'name', 'Geonardo (Hungary)'),
(12262, 10040, 'en', 'name', 'Institute of Mechanics'),
(12263, 10040, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по механика'),
(12264, 10041, 'no_lang_code', 'name', 'Exact Dynamics (Netherlands)'),
(12265, 10042, 'en', 'name', 'Georgian Research and Educational Networking Association'),
(12266, 10043, 'en', 'name', 'National Institute of Geophysics, Geodesy and Geography'),
(12267, 10043, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по геофизика, Š³ŠµŠ¾Š“ŠµŠ·ŠøŃ Šø Š³ŠµŠ¾Š³Ń€Š°Ń„ŠøŃ'),
(12268, 10044, 'no_lang_code', 'name', 'Dassault SystĆØmes (Canada)'),
(12269, 10045, 'no_lang_code', 'name', 'Exergia, Energy, Management and Information Technology'),
(12270, 10046, 'no_lang_code', 'name', 'Exergy (United Kingdom)'),
(12271, 10047, 'no_lang_code', 'name', 'Institute of Mechanics of Materials and Geostructures'),
(12272, 10048, 'en', 'name', 'Institute of Metal Science, Equipment and Technologies'),
(12273, 10048, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по металознание техника Šø технологии'),
(12274, 10049, 'en', 'name', 'Institute of Metallurgy and Materials Science'),
(12275, 10049, 'pl', 'name', 'Instytut Metalurgii i Inżynierii Materiałowej PAN'),
(12276, 10050, 'no_lang_code', 'name', 'Geotek (United Kingdom)'),
(12277, 10051, 'no_lang_code', 'name', 'GeoVille (Austria)'),
(12278, 10052, 'no_lang_code', 'name', 'Inetec (Croatia)'),
(12279, 10053, 'no_lang_code', 'name', 'InferMed'),
(12280, 10054, 'no_lang_code', 'name', 'Infineon Technologies (Austria)'),
(12281, 10055, 'en', 'name', 'German Dutch Wind Tunnels'),
(12282, 10056, 'no_lang_code', 'name', 'Infocarto'),
(12283, 10057, 'en', 'name', 'Institute of Molecular Biology'),
(12284, 10057, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š° Š±ŠøŠ¾Š»Š¾Š³ŠøŃ'),
(12285, 10058, 'en', 'name', 'Institute of Nanotechnology'),
(12286, 10059, 'de', 'name', 'Gesellschaft für Fertigungstechnik und Entwicklung'),
(12287, 10060, 'no_lang_code', 'name', 'Papenmeier (Germany)'),
(12288, 10061, 'no_lang_code', 'name', 'Infosys (France)'),
(12289, 10062, 'en', 'name', 'Institute for Nuclear Research'),
(12290, 10062, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(12291, 10063, 'no_lang_code', 'name', 'Gestione Sistemi per l’Informatica (Italy)'),
(12292, 10064, 'no_lang_code', 'name', 'Gesellschaft für Elektrometallurgie (Germany)'),
(12293, 10065, 'no_lang_code', 'name', 'Ingenierƭa de Sistemas para la Defensa de EspaƱa'),
(12294, 10066, 'no_lang_code', 'name', 'Intertek (Sweden)'),
(12295, 10067, 'en', 'name', 'Institute of Organic Chemistry with Centre of Phytochemistry'),
(12296, 10067, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по органична Ń…ŠøŠ¼ŠøŃ с Š¦ŠµŠ½Ń‚ŃŠŃ€ по Ń„ŠøŃ‚Š¾Ń…ŠøŠ¼ŠøŃ'),
(12297, 10068, 'en', 'name', 'Institute of Physical Chemistry'),
(12298, 10068, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Ń„ŠøŠ·ŠøŠŗŠ¾Ń…ŠøŠ¼ŠøŃ'),
(12299, 10069, 'no_lang_code', 'name', 'Ingenieurgruppe IVV (Germany)'),
(12300, 10070, 'no_lang_code', 'name', 'InvivoGen (France)'),
(12301, 10071, 'no_lang_code', 'name', 'Giesecke and Devrient (Germany)'),
(12302, 10072, 'no_lang_code', 'name', 'Gilat Satellite Networks (Israel)'),
(12303, 10073, 'no_lang_code', 'name', 'Factum'),
(12304, 10074, 'no_lang_code', 'name', 'Altran (Italy)'),
(12305, 10075, 'no_lang_code', 'name', 'Inlecom Systems (United Kingdom)'),
(12306, 10076, 'no_lang_code', 'name', 'Gisat (Czechia)'),
(12307, 10077, 'en', 'name', 'Geographical Information System International Group'),
(12308, 10078, 'ga', 'name', 'Foras Ɓiseanna Saothair'),
(12309, 10078, 'en', 'name', 'Training and Employment Authority'),
(12310, 10079, 'it', 'name', 'Federazione delle Associazioni Scientifiche e Tecniche'),
(12311, 10080, 'en', 'name', 'Institute of Physics'),
(12312, 10080, 'pl', 'name', 'Instytut Fizyki PAN'),
(12313, 10081, 'no_lang_code', 'name', 'FastOpt (Germany)'),
(12314, 10082, 'no_lang_code', 'name', 'Grupo Inmark'),
(12315, 10083, 'en', 'name', 'Institute of Physics'),
(12316, 10083, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізики ŠŠŠ України'),
(12317, 10083, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики ŠŠŠ Украины'),
(12318, 10084, 'no_lang_code', 'name', 'GKI Economic Research (Hungary)'),
(12319, 10085, 'no_lang_code', 'name', 'GKN (Sweden)'),
(12320, 10086, 'no_lang_code', 'name', 'GlaxoSmithKline (Italy)'),
(12321, 10087, 'no_lang_code', 'name', 'Inmarsat (United Kingdom)'),
(12322, 10088, 'no_lang_code', 'name', 'Ingenasa (Spain)'),
(12323, 10089, 'en', 'name', 'Institutes of Science and Development'),
(12324, 10089, 'zh', 'name', 'ē§‘ęŠ€ęˆ˜ē•„å’ØčÆ¢ē ”ē©¶é™¢'),
(12325, 10090, 'en', 'name', 'Institute for Political Sciences'),
(12326, 10090, 'hu', 'name', 'MTA TÔrsadalomtudomÔnyi Kutatóközpont PolitikatudomÔnyi Intézet'),
(12327, 10091, 'no_lang_code', 'name', 'Inno (Germany)'),
(12328, 10092, 'en', 'name', 'Research Institute of Pomology and Floriculture'),
(12329, 10093, 'no_lang_code', 'name', 'Inno (France)'),
(12330, 10094, 'no_lang_code', 'name', 'Innora'),
(12331, 10095, 'no_lang_code', 'name', 'InnospeXion (Denmark)'),
(12332, 10096, 'en', 'name', 'Frantsevich Institute for Problems in Materials Science'),
(12333, 10096, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ проблем матеріалознавства ім. І.М. Францевича'),
(12334, 10097, 'no_lang_code', 'name', 'Innova (Italy)'),
(12335, 10098, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Instytut Spawalnictwa'),
(12336, 10098, 'en', 'name', 'Łukasiewicz Research Network - Institute of Welding'),
(12337, 10099, 'en', 'name', 'Institute of Telecommunication and Information Technologies'),
(12338, 10099, 'no_lang_code', 'name', 'Instytut Technik Telekomunikacyjnych i Informatycznych (Poland)'),
(12339, 10100, 'no_lang_code', 'name', 'Innovation Engineering (Italy)'),
(12340, 10101, 'no_lang_code', 'name', 'Innovative Technology and Science (United Kingdom)'),
(12341, 10102, 'en', 'name', 'Austrian Research Centre for Forests'),
(12342, 10102, 'de', 'name', 'Bundesforschungs- und Ausbildungszentrum für Wald, Naturgefahren und Landschaft'),
(12343, 10103, 'en', 'name', 'Institute of High Pressure Physics'),
(12344, 10103, 'pl', 'name', 'Instytut Wysokich Ciśnień'),
(12345, 10104, 'en', 'name', 'International Scientific Council for Island Development'),
(12346, 10105, 'no_lang_code', 'name', 'Inte:Ligand (Austria)'),
(12347, 10106, 'en', 'name', 'Institute for Sociology'),
(12348, 10106, 'hu', 'name', 'MTA TÔrsadalomtudomÔnyi Kutatóközpont Szociológiai Intézet'),
(12349, 10107, 'en', 'name', 'Georgi Nadjakov Institute of Solid State Physics'),
(12350, 10107, 'bg', 'name', 'Георги ŠŠ°Š“жаков Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по физика на Ń‚Š²ŃŠŃ€Š“Š¾Ń‚Š¾'),
(12351, 10108, 'no_lang_code', 'name', 'INTECS (Italy)'),
(12352, 10109, 'no_lang_code', 'name', 'Innovision (Denmark)'),
(12353, 10110, 'no_lang_code', 'name', 'Inotex (Czechia)'),
(12354, 10111, 'no_lang_code', 'name', 'Internal Systems Limited (United Kingdom)'),
(12355, 10112, 'no_lang_code', 'name', 'Integrasys (Spain)'),
(12356, 10113, 'en', 'name', 'HOPE European Hospital and Healthcare Federation'),
(12357, 10114, 'no_lang_code', 'name', 'Integrated Radiological Services (United Kingdom)'),
(12358, 10115, 'no_lang_code', 'name', 'Integrated Resources Management Company (Malta)'),
(12359, 10116, 'fr', 'name', 'FƩdƩration Internationale de l''Automobile');
INSERT INTO `ror_settings` VALUES
(12360, 10116, 'en', 'name', 'International Automobile Federation'),
(12361, 10117, 'en', 'name', 'Federation of European Aquaculture Producers'),
(12362, 10118, 'no_lang_code', 'name', 'Inspira'),
(12363, 10119, 'no_lang_code', 'name', 'FEG Textiltechnik (Germany)'),
(12364, 10120, 'no_lang_code', 'name', 'Inspire'),
(12365, 10121, 'en', 'name', 'IHE Europe'),
(12366, 10122, 'no_lang_code', 'name', 'ITI (United Kingdom)'),
(12367, 10123, 'no_lang_code', 'name', 'Intel (Germany)'),
(12368, 10124, 'fr', 'name', 'Institution de la Recherche et de l’Enseignement SupĆ©rieur Agricoles'),
(12369, 10125, 'no_lang_code', 'name', 'Intelligence for Environment and Security (Italy)'),
(12370, 10126, 'en', 'name', 'A N Bach Institute of Biochemistry'),
(12371, 10126, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии им. А.Š.Баха'),
(12372, 10127, 'no_lang_code', 'name', 'Stora Enso (Germany)'),
(12373, 10128, 'no_lang_code', 'name', 'Irepa Laser (France)'),
(12374, 10129, 'no_lang_code', 'name', 'Intelligent Software Components (Spain)'),
(12375, 10130, 'es', 'name', 'Instituto Andaluz de TecnologĆ­a'),
(12376, 10131, 'no_lang_code', 'name', 'Eurofins (Denmark)'),
(12377, 10132, 'es', 'name', 'Instituto Canario de Ciencias Marinas'),
(12378, 10133, 'no_lang_code', 'name', 'Intelligentsia Consultants'),
(12379, 10134, 'no_lang_code', 'name', 'Transports Metropolitans de Barcelona (Spain)'),
(12380, 10135, 'no_lang_code', 'name', 'Trenitalia (Italy)'),
(12381, 10136, 'en', 'name', 'Interactive Technology Software and Media Association'),
(12382, 10137, 'no_lang_code', 'name', 'FeyeCon (Netherlands)'),
(12383, 10138, 'en', 'name', 'Industrial Economics Institute'),
(12384, 10138, 'fr', 'name', 'Institut d''Ɖconomie Industrielle'),
(12385, 10139, 'no_lang_code', 'name', 'Bayer (Greece)'),
(12386, 10140, 'pt', 'name', 'Instituto de Ciências da Terra e do Espaço'),
(12387, 10141, 'no_lang_code', 'name', 'Hottinger Baldwin Messtechnik (Portugal)'),
(12388, 10142, 'en', 'name', 'Interdisciplinary Centre for Comparative Research Foundation'),
(12389, 10143, 'no_lang_code', 'name', 'InterInnov (France)'),
(12390, 10144, 'no_lang_code', 'name', 'Intermarine (Italy)'),
(12391, 10145, 'es', 'name', 'Institut de Cultura de Barcelona'),
(12392, 10146, 'no_lang_code', 'name', 'IBM (Belgium)'),
(12393, 10147, 'no_lang_code', 'name', 'Ficosa International (Spain)'),
(12394, 10148, 'fr', 'name', 'Institut de l''Audiovisuel et des TƩlƩcommunications en Europe'),
(12395, 10149, 'no_lang_code', 'name', 'WorldFish'),
(12396, 10150, 'no_lang_code', 'name', 'Fidia (Italy)'),
(12397, 10151, 'fr', 'name', 'Institut de l’Elevage'),
(12398, 10152, 'en', 'name', 'International Center for Agricultural Research in the Dry Areas'),
(12399, 10153, 'en', 'name', 'International Centre for Genetic Engineering and Biotechnology'),
(12400, 10154, 'en', 'name', 'International Centre for Genetic Engineering and Biotechnology'),
(12401, 10155, 'no_lang_code', 'name', 'Q PLAN International (Greece)'),
(12402, 10156, 'de', 'name', 'Leibniz-Institut für Neue Materialien'),
(12403, 10156, 'en', 'name', 'Leibniz-Institute for New Materials'),
(12404, 10157, 'en', 'name', 'Institute of Earthquake Prediction Theory and Mathematical Geophysics'),
(12405, 10157, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теории прогноза Š·ŠµŠ¼Š»ŠµŃ‚Ń€ŃŃŠµŠ½ŠøŠ¹ Šø математической геофизики Российской акаГемии наук (Š˜Š¢ŠŸŠ— Š ŠŠ)'),
(12406, 10158, 'en', 'name', 'International Life Sciences Institute Europe'),
(12407, 10159, 'en', 'name', 'St Thomas'' Hospital'),
(12408, 10160, 'no_lang_code', 'name', 'International Mining Consultants'),
(12409, 10161, 'en', 'name', 'Leicester City Council'),
(12410, 10162, 'no_lang_code', 'name', 'Lenzing (Austria)'),
(12411, 10163, 'en', 'name', 'International Solvay Institutes'),
(12412, 10164, 'en', 'name', 'Internet Memory Foundation'),
(12413, 10165, 'no_lang_code', 'name', 'Instituto Tecnológico de Canarias'),
(12414, 10165, 'en', 'name', 'Technological Institute of the Canary Islands'),
(12415, 10166, 'en', 'name', 'LGI Consulting'),
(12416, 10167, 'no_lang_code', 'name', 'InterSoft (Slovakia)'),
(12417, 10168, 'no_lang_code', 'name', 'Liebherr (Germany)'),
(12418, 10169, 'no_lang_code', 'name', 'Liebherr (France)'),
(12419, 10170, 'en', 'name', 'Lithuanian Innovation Centre'),
(12420, 10171, 'no_lang_code', 'name', 'InteSys (United Kingdom)'),
(12421, 10172, 'no_lang_code', 'name', 'INTRASOFT International (Greece)'),
(12422, 10173, 'no_lang_code', 'name', 'INTRASOFT International (Belgium)'),
(12423, 10174, 'no_lang_code', 'name', 'Intrinsiq Materials (United Kingdom)'),
(12424, 10175, 'en', 'name', 'Limnological Institute'),
(12425, 10175, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Лимнологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук (Š›Š˜Š Š”Šž Š ŠŠ)'),
(12426, 10176, 'no_lang_code', 'name', 'Lincis (Portugal)'),
(12427, 10177, 'fi', 'name', 'Turku Science Park'),
(12428, 10178, 'no_lang_code', 'name', 'Instituttet for Produktudvikling (Denmark)'),
(12429, 10179, 'no_lang_code', 'name', 'Linde (Germany)'),
(12430, 10180, 'ro', 'name', 'Institutul de Cercetari Electrotehnice'),
(12431, 10181, 'en', 'name', 'Lindholmen Science Park'),
(12432, 10182, 'no_lang_code', 'name', 'Vdlconsult'),
(12433, 10183, 'no_lang_code', 'name', 'Linguatec (Germany)'),
(12434, 10184, 'no_lang_code', 'name', 'SGS (Netherlands)'),
(12435, 10185, 'no_lang_code', 'name', 'IntuiLab (France)'),
(12436, 10186, 'no_lang_code', 'name', 'Marzotto Group (Italy)'),
(12437, 10187, 'no_lang_code', 'name', 'Invent Baltics'),
(12438, 10188, 'no_lang_code', 'name', 'Link Consulting'),
(12439, 10189, 'no_lang_code', 'name', 'Expedeon (Germany)'),
(12440, 10190, 'no_lang_code', 'name', 'Lionex (Germany)'),
(12441, 10191, 'no_lang_code', 'name', 'Invent (Germany)'),
(12442, 10192, 'no_lang_code', 'name', 'LioniX (Netherlands)'),
(12443, 10193, 'no_lang_code', 'name', 'Ion Beam Applications (Belgium)'),
(12444, 10194, 'no_lang_code', 'name', 'Ibs (France)'),
(12445, 10195, 'no_lang_code', 'name', 'Ionicon Analytik (Austria)'),
(12446, 10196, 'no_lang_code', 'name', 'IPCOS (Netherlands)'),
(12447, 10197, 'no_lang_code', 'name', 'Istituto per le Piante da Legno e l''Ambiente'),
(12448, 10198, 'no_lang_code', 'name', 'IQE (United Kingdom)'),
(12449, 10199, 'no_lang_code', 'name', 'LISA laser products (Germany)'),
(12450, 10200, 'pt', 'name', 'Lisboa E-Nova - AgĆŖncia Municipal de Energia e Ambiente'),
(12451, 10201, 'fr', 'name', 'Institut du DƩveloppement Durable et des Ressources Aquatiques'),
(12452, 10202, 'no_lang_code', 'name', 'IRBM Science Park'),
(12453, 10203, 'en', 'name', 'Forest Research Institute'),
(12454, 10203, 'pl', 'name', 'Instytut Badawczy Leśnictwa'),
(12455, 10204, 'no_lang_code', 'name', 'Lisnave (Portugal)'),
(12456, 10205, 'en', 'name', 'Litani River Authority'),
(12457, 10206, 'en', 'name', 'Lithuanian Institute of Agrarian Economics'),
(12458, 10207, 'no_lang_code', 'name', 'IRD Fuel Cells (Denmark)'),
(12459, 10208, 'en', 'name', 'Institute of Mathematics'),
(12460, 10208, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Š¼Š°Ń‚ŃŠ¼Š°Ń‚Ń‹ŠŗŃ– ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(12461, 10209, 'no_lang_code', 'name', 'Greencore (Ireland)'),
(12462, 10210, 'pl', 'name', 'Instytut Kolejnictwa'),
(12463, 10211, 'en', 'name', 'Institute of Logistics and Warehousing'),
(12464, 10212, 'no_lang_code', 'name', 'Siemens (Belgium)'),
(12465, 10213, 'en', 'name', 'International Road Transport Union'),
(12466, 10214, 'en', 'name', 'Local Government Management Agency'),
(12467, 10215, 'no_lang_code', 'name', 'Intelligent Sensing Anywhere (Portugal)'),
(12468, 10216, 'en', 'name', 'Institute of Computer Science'),
(12469, 10216, 'pl', 'name', 'Instytut Podstaw Informatyki'),
(12470, 10217, 'no_lang_code', 'name', 'Novavax (Sweden)'),
(12471, 10218, 'en', 'name', 'French Institue of Navigation'),
(12472, 10218, 'fr', 'name', 'Institut FranƧais de Navigation'),
(12473, 10219, 'no_lang_code', 'name', 'Logimatic (Denmark)'),
(12474, 10220, 'no_lang_code', 'name', 'Synopsys (Switzerland)'),
(12475, 10221, 'no_lang_code', 'name', 'Logit Systems (Norway)'),
(12476, 10222, 'no_lang_code', 'name', 'Innovative System und Informationstechnologien (Germany)'),
(12477, 10223, 'no_lang_code', 'name', 'Lombardia Informatica (Italy)'),
(12478, 10224, 'no_lang_code', 'name', 'NanoBioMatters (Spain)'),
(12479, 10225, 'no_lang_code', 'name', 'Lonza (Switzerland)'),
(12480, 10226, 'no_lang_code', 'name', 'Nuance Communications (Italy)'),
(12481, 10227, 'en', 'name', 'French Institute of International Relations'),
(12482, 10227, 'fr', 'name', 'Institut FranƧais des Relations Internationales'),
(12483, 10228, 'en', 'name', 'Irion & Junker Project Management'),
(12484, 10228, 'no_lang_code', 'name', 'Irion and Junker Projektmanagement'),
(12485, 10229, 'en', 'name', 'London Borough of Southwark'),
(12486, 10230, 'no_lang_code', 'name', 'Nanocyl (Belgium)'),
(12487, 10231, 'no_lang_code', 'name', 'SGS Institut Fresenius (Germany)'),
(12488, 10232, 'no_lang_code', 'name', 'Isojet Equipements (France)'),
(12489, 10233, 'nl', 'name', 'Louis Bolk Instituut'),
(12490, 10234, 'no_lang_code', 'name', 'Isotest Engineering (Italy)'),
(12491, 10235, 'no_lang_code', 'name', 'LPW Technology (United Kingdom)'),
(12492, 10236, 'no_lang_code', 'name', 'NANOfutures (Belgium)'),
(12493, 10237, 'de', 'name', 'Institut für die Wissenschaften vom Menschen'),
(12494, 10237, 'en', 'name', 'Institute of Human Sciences'),
(12495, 10238, 'no_lang_code', 'name', 'Nanogate (Germany)'),
(12496, 10239, 'no_lang_code', 'name', 'Nanologica (Sweden)'),
(12497, 10240, 'no_lang_code', 'name', 'WSP (Finland)'),
(12498, 10241, 'no_lang_code', 'name', 'Nanoplus (Germany)'),
(12499, 10242, 'no_lang_code', 'name', 'Madatech'),
(12500, 10243, 'no_lang_code', 'name', 'Lucchini Idromeccanica (Italy)'),
(12501, 10244, 'de', 'name', 'Institut für ökologische Wirtschaftsforschung'),
(12502, 10244, 'en', 'name', 'Institute for Environmental Management and Economics'),
(12503, 10245, 'no_lang_code', 'name', 'Nokia (Netherlands)'),
(12504, 10246, 'en', 'name', 'Swedish Space Corporation'),
(12505, 10247, 'en', 'name', 'Central Institute for the Union Catalogue of Italian Libraries and for Bibliographic Information'),
(12506, 10247, 'it', 'name', 'Istituto Centrale per il Catalogo Unico delle Biblioteche Italiane e per le Informazioni Bibliografiche'),
(12507, 10248, 'en', 'name', 'Nanotechnology Industries Association'),
(12508, 10249, 'no_lang_code', 'name', 'NanotecMARIN (Germany)'),
(12509, 10250, 'no_lang_code', 'name', 'LNL Technology (Turkey)'),
(12510, 10251, 'it', 'name', 'Istituto di Ricerche Economiche per la Pesca e l''Acquacoltura'),
(12511, 10252, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Nowym Sączu'),
(12512, 10252, 'en', 'name', 'State Higher Vocational School in Nowy Sacz'),
(12513, 10253, 'it', 'name', 'Museo Galileo'),
(12514, 10254, 'no_lang_code', 'name', 'Svalbard Global Seed Vault'),
(12515, 10255, 'de', 'name', 'Ludwig-Bƶlkow-Systemtechnik'),
(12516, 10256, 'no_lang_code', 'name', 'Istituto Giordano'),
(12517, 10257, 'no_lang_code', 'name', 'NanoWorld Services (Germany)'),
(12518, 10258, 'no_lang_code', 'name', 'Lufthansa (Germany)'),
(12519, 10258, 'en', 'name', 'Lufthansa German Airlines'),
(12520, 10259, 'no_lang_code', 'name', 'LMG Marin (Norway)'),
(12521, 10260, 'no_lang_code', 'name', 'Paragon (Malta)'),
(12522, 10261, 'no_lang_code', 'name', 'Paragon (Greece)'),
(12523, 10262, 'no_lang_code', 'name', 'CinecittĆ  Luce'),
(12524, 10263, 'no_lang_code', 'name', 'Luxilon (Belgium)'),
(12525, 10264, 'en', 'name', 'Environment Park'),
(12526, 10265, 'en', 'name', 'Luxinnovation'),
(12527, 10266, 'it', 'name', 'Istituto Nazionale di Economia Agraria'),
(12528, 10266, 'en', 'name', 'National Institute of Agricultural Economics'),
(12529, 10267, 'no_lang_code', 'name', 'M&I/Partners'),
(12530, 10268, 'no_lang_code', 'name', 'Machining Centers Manufacturing (Italy)'),
(12531, 10269, 'no_lang_code', 'name', 'Napa (Finland)'),
(12532, 10270, 'no_lang_code', 'name', 'ISRA Vision Parsytec (Germany)'),
(12533, 10271, 'it', 'name', 'Istituto Nazionale per Studi ed Esperienze di Architettura Navale'),
(12534, 10272, 'it', 'name', 'Istituto per la Ricerca Sociale'),
(12535, 10273, 'no_lang_code', 'name', 'Magen David Adom'),
(12536, 10274, 'no_lang_code', 'name', 'Magillem Design Services'),
(12537, 10275, 'it', 'name', 'Istituto per lo Sviluppo della Formazione Professionale dei Lavoratori'),
(12538, 10276, 'no_lang_code', 'name', 'Pasquali Macchine Agricole (Italy)'),
(12539, 10277, 'no_lang_code', 'name', 'Magna (Austria)'),
(12540, 10278, 'en', 'name', 'Magnesium Research Institute'),
(12541, 10279, 'de', 'name', 'Paul Ehrlich Institut'),
(12542, 10280, 'no_lang_code', 'name', 'PCA Engineers'),
(12543, 10281, 'no_lang_code', 'name', 'Forgital (Italy)'),
(12544, 10282, 'no_lang_code', 'name', 'Magneto Special Anodes (Netherlands)'),
(12545, 10283, 'no_lang_code', 'name', 'PE International (Germany)'),
(12546, 10284, 'no_lang_code', 'name', 'Rio Tinto (France)'),
(12547, 10285, 'no', 'name', 'Nasjonalt Kunnskapssenter for Helsetjenesten'),
(12548, 10285, 'en', 'name', 'Norwegian Knowledge Centre for the Health Services'),
(12549, 10286, 'no_lang_code', 'name', 'Malsch TechnoValuation'),
(12550, 10287, 'no_lang_code', 'name', 'Natex Prozesstechnologie (Austria)'),
(12551, 10288, 'no_lang_code', 'name', 'Dynniq (Netherlands)'),
(12552, 10289, 'no_lang_code', 'name', 'Nationaal Archief of the Netherlands'),
(12553, 10290, 'en', 'name', 'Emergency Services College'),
(12554, 10290, 'fi', 'name', 'Pelastusopisto'),
(12555, 10291, 'en', 'name', 'National Academy of Sciences of the Republic of Kazakhstan'),
(12556, 10291, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук ŠšŠ°Š·Š°Ń…стана'),
(12557, 10291, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ Ұлттық ғылым Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(12558, 10292, 'no_lang_code', 'name', 'Pepscan (Netherlands)'),
(12559, 10293, 'it', 'name', 'Istituto Superiore delle Comunicazioni e delle Tecnologie Dell''Informazione'),
(12560, 10294, 'en', 'name', 'Malta Information Technology Agency'),
(12561, 10295, 'no_lang_code', 'name', 'National Air Traffic Services (United Kingdom)'),
(12562, 10296, 'en', 'name', 'Malta Resources Authority'),
(12563, 10297, 'no_lang_code', 'name', 'Malthe Winje (Norway)'),
(12564, 10298, 'en', 'name', 'Applied Research Institute for Prospective Technologies'),
(12565, 10299, 'it', 'name', 'Istituto Nazionale per l''Assicurazione Contro gli Infortuni sul Lavoro'),
(12566, 10300, 'no_lang_code', 'name', 'MAN (Germany)'),
(12567, 10301, 'it', 'name', 'Istituto Zooprofilattico Sperimentale del Piemonte Liguria e Valle d''Aosta'),
(12568, 10302, 'it', 'name', 'Sardegna Agricoltura'),
(12569, 10303, 'no_lang_code', 'name', 'Mantis Deposition (United Kingdom)'),
(12570, 10304, 'en', 'name', 'Institute of Scientific and Technological Research in Aeronautics and Mechanical Engineering'),
(12571, 10305, 'no_lang_code', 'name', 'Marac (Greece)'),
(12572, 10305, 'el', 'name', 'ĪœĪ‘Ī”Ī‘Īš Ηλεκτρονική'),
(12573, 10306, 'en', 'name', 'Swedish National Board of Fisheries'),
(12574, 10307, 'no_lang_code', 'name', 'IT Consult'),
(12575, 10308, 'no_lang_code', 'name', 'Metos (Austria)'),
(12576, 10309, 'no_lang_code', 'name', 'Marel (Iceland)'),
(12577, 10310, 'no_lang_code', 'name', 'ITPEnergised Group (United Kingdom)'),
(12578, 10311, 'no_lang_code', 'name', 'Marimatech (Denmark)'),
(12579, 10312, 'en', 'name', 'Marine Hydrophysical Institute'),
(12580, 10313, 'no_lang_code', 'name', 'Wood Group Kenny'),
(12581, 10314, 'en', 'name', 'National Council for the Blind of Ireland'),
(12582, 10315, 'no_lang_code', 'name', 'Pharmidex (United Kingdom)'),
(12583, 10316, 'no_lang_code', 'name', 'Oclaro (United Kingdom)'),
(12584, 10317, 'no_lang_code', 'name', 'Phase Change Material Products (United Kingdom)'),
(12585, 10318, 'en', 'name', 'Italian Biomass Association'),
(12586, 10319, 'en', 'name', 'Qualifications and Curriculum Authority'),
(12587, 10320, 'fr', 'name', 'Koninklijke Philips'),
(12588, 10320, 'no_lang_code', 'name', 'Philips (France)'),
(12589, 10321, 'en', 'name', 'National Development and Reform Commission Energy Research Institute'),
(12590, 10321, 'zh', 'name', 'å›½å®¶å‘å±•å’Œę”¹é©å§”å‘˜ä¼ščƒ½ęŗē ”ē©¶ę‰€'),
(12591, 10322, 'no_lang_code', 'name', 'Mediterranean Broadband Infrastructure (Italy)'),
(12592, 10323, 'no_lang_code', 'name', 'Philips (Belgium)'),
(12593, 10324, 'no_lang_code', 'name', 'TÜV SÜD (United Kingdom)'),
(12594, 10325, 'no_lang_code', 'name', 'Air Liquide (Germany)'),
(12595, 10326, 'no_lang_code', 'name', 'SingularLogic (Greece)'),
(12596, 10327, 'ro', 'name', 'Institutul Naţional de Cercetare Dezvoltare Marină Grigore Antipa'),
(12597, 10328, 'no_lang_code', 'name', 'Magwel (Belgium)'),
(12598, 10329, 'no_lang_code', 'name', 'Mandelli (Italy)'),
(12599, 10330, 'no_lang_code', 'name', 'PhoeniX Software (Netherlands)'),
(12600, 10331, 'no_lang_code', 'name', 'Photon Systems Instruments (Czechia)'),
(12601, 10332, 'no_lang_code', 'name', 'Piaggio (Italy)'),
(12602, 10333, 'no_lang_code', 'name', 'Picosun (Finland)'),
(12603, 10334, 'no_lang_code', 'name', 'Marion Technologies (France)'),
(12604, 10335, 'it', 'name', 'Iter'),
(12605, 10336, 'ro', 'name', 'Institutul National de Hidrologie si Gospodarire a Apelor'),
(12606, 10336, 'en', 'name', 'National Institute of Hydrology and Water Management'),
(12607, 10337, 'no_lang_code', 'name', 'Mariskone (Spain)'),
(12608, 10338, 'no_lang_code', 'name', 'ITM Power (United Kingdom)'),
(12609, 10339, 'en', 'name', 'Maritime and Coastguard Agency'),
(12610, 10340, 'no_lang_code', 'name', 'Piksel (Italy)'),
(12611, 10341, 'en', 'name', 'Pildo Labs'),
(12612, 10342, 'no_lang_code', 'name', 'Nippon Sheet Glass (United Kingdom)'),
(12613, 10343, 'no_lang_code', 'name', 'Martel'),
(12614, 10344, 'no_lang_code', 'name', 'Pintail (Ireland)'),
(12615, 10345, 'no_lang_code', 'name', 'Mastercard (Belgium)'),
(12616, 10346, 'no_lang_code', 'name', 'Publicis Groupe (Switzerland)'),
(12617, 10347, 'no_lang_code', 'name', 'Materialise (Belgium)'),
(12618, 10348, 'no_lang_code', 'name', 'Publicis Groupe (Germany)'),
(12619, 10349, 'no_lang_code', 'name', 'Element Materials Technology (United Kingdom)'),
(12620, 10350, 'no_lang_code', 'name', 'LagardĆØre (France)'),
(12621, 10351, 'no_lang_code', 'name', 'Planetek Italia'),
(12622, 10352, 'en', 'name', 'National Museums of Kenya'),
(12623, 10353, 'en', 'name', 'iXscient'),
(12624, 10354, 'no_lang_code', 'name', 'Plansee (Austria)'),
(12625, 10355, 'no_lang_code', 'name', 'Plant Integrity (United Kingdom)'),
(12626, 10356, 'de', 'name', 'Institut für Zukunftsstudien und Technologiebewertung'),
(12627, 10357, 'no_lang_code', 'name', 'Jan de Rijk Logistics (Netherlands)'),
(12628, 10358, 'hu', 'name', 'NƶvƩnyvƩdelmi IntƩzete'),
(12629, 10358, 'en', 'name', 'Plant Protection Institute'),
(12630, 10359, 'en', 'name', 'Natural History Museum of Montenegro'),
(12631, 10359, 'bs', 'name', 'Prirodnjacki Muzej Crne Gore'),
(12632, 10360, 'no_lang_code', 'name', 'PlasmaChem (Germany)'),
(12633, 10361, 'fr', 'name', 'Plastipolis'),
(12634, 10362, 'no_lang_code', 'name', 'PNO Consultants (United Kingdom)'),
(12635, 10363, 'no_lang_code', 'name', 'Poli Model (Italy)'),
(12636, 10364, 'en', 'name', 'Police Service of Northern Ireland'),
(12637, 10365, 'no_lang_code', 'name', 'JCP Connect (France)'),
(12638, 10366, 'no_lang_code', 'name', 'JENAer Meßtechnik (Germany)'),
(12639, 10367, 'no_lang_code', 'name', 'General Electric (Austria)'),
(12640, 10368, 'no_lang_code', 'name', 'Polkom Badania'),
(12641, 10369, 'no_lang_code', 'name', 'Jernkontoret (Sweden)'),
(12642, 10370, 'no_lang_code', 'name', 'Mb Air Systems (United Kingdom)'),
(12643, 10371, 'no_lang_code', 'name', 'Deutsche Telekom (Poland)'),
(12644, 10372, 'no_lang_code', 'name', 'Polymage (France)'),
(12645, 10373, 'no_lang_code', 'name', 'Jobs (Italy)'),
(12646, 10374, 'no_lang_code', 'name', 'MBDA (France)'),
(12647, 10375, 'no_lang_code', 'name', 'Jobst Technologies (Germany)'),
(12648, 10376, 'no_lang_code', 'name', 'Varian Medical Systems (United Kingdom)'),
(12649, 10377, 'en', 'name', 'Piraeus Port Authority'),
(12650, 10378, 'en', 'name', 'National Research Foundation'),
(12651, 10379, 'no_lang_code', 'name', 'Posiva (Finland)'),
(12652, 10380, 'no_lang_code', 'name', 'Texinov (France)'),
(12653, 10381, 'no_lang_code', 'name', 'AFRY (Finland)'),
(12654, 10382, 'en', 'name', 'National Scientific Center for Medical and Biotechnical Research'),
(12655, 10382, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²ŠøŠ¹ центр Š· меГико-біотехнічних проблем'),
(12656, 10383, 'en', 'name', 'Hellenic Statistical Authority'),
(12657, 10383, 'el', 'name', 'Ελληνική Ī£Ļ„Ī±Ļ„Ī¹ĻƒĻ„Ī¹ĪŗĪ® Αρχή'),
(12658, 10384, 'no_lang_code', 'name', 'PRĆ© Consultants'),
(12659, 10385, 'no_lang_code', 'name', 'Precitec (Germany)'),
(12660, 10386, 'no_lang_code', 'name', 'PreSens Precision Sensing (Germany)'),
(12661, 10387, 'no_lang_code', 'name', 'Meyer Werft (Germany)'),
(12662, 10388, 'no_lang_code', 'name', 'Petards Group (United Kingdom)'),
(12663, 10389, 'no_lang_code', 'name', 'Hoerbiger (Sweden)'),
(12664, 10390, 'it', 'name', 'Presidenza Del Consiglio Dei Ministri'),
(12665, 10391, 'no_lang_code', 'name', 'JRC Capital Management (Germany)'),
(12666, 10392, 'no_lang_code', 'name', 'Judex (Denmark)'),
(12667, 10393, 'no_lang_code', 'name', 'MedCom'),
(12668, 10394, 'no_lang_code', 'name', 'TUI (Germany)'),
(12669, 10395, 'no_lang_code', 'name', 'Juniper Networks (Ireland)'),
(12670, 10396, 'no_lang_code', 'name', 'Prima Industrie (Italy)'),
(12671, 10397, 'no_lang_code', 'name', 'PrimeTel (Cyprus)'),
(12672, 10398, 'no_lang_code', 'name', 'Medtronic (Spain)'),
(12673, 10399, 'no_lang_code', 'name', 'Primmbiotech (Italy)'),
(12674, 10400, 'no_lang_code', 'name', 'Principia (France)'),
(12675, 10401, 'en', 'name', 'National Museum of Denmark'),
(12676, 10401, 'da', 'name', 'Nationalmuseet'),
(12677, 10402, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Switzerland)'),
(12678, 10403, 'no_lang_code', 'name', 'Mekorot (Israel)'),
(12679, 10403, 'he', 'name', '×ž×§×•×Ø×•×Ŗ'),
(12680, 10404, 'no_lang_code', 'name', 'Prisma Electronics (Greece)'),
(12681, 10405, 'no_lang_code', 'name', 'Menck (Germany)'),
(12682, 10406, 'no_lang_code', 'name', 'MerMec (Italy)'),
(12683, 10407, 'no_lang_code', 'name', 'PRO DV (Germany)'),
(12684, 10408, 'no_lang_code', 'name', 'Kemakta Konsult'),
(12685, 10409, 'no_lang_code', 'name', 'Process Design Center (Netherlands)'),
(12686, 10410, 'no_lang_code', 'name', 'Process Systems Enterprise (United Kingdom)'),
(12687, 10411, 'no_lang_code', 'name', 'Mermayde'),
(12688, 10412, 'no_lang_code', 'name', 'Procter & Gamble (Belgium)'),
(12689, 10413, 'no_lang_code', 'name', 'Naturalia & Biologia'),
(12690, 10414, 'en', 'name', 'Kenya Forestry Research Institute'),
(12691, 10415, 'no_lang_code', 'name', 'Procter & Gamble (United Kingdom)'),
(12692, 10416, 'no_lang_code', 'name', 'KeraNor (Norway)'),
(12693, 10417, 'no_lang_code', 'name', 'ProDigest (Belgium)'),
(12694, 10418, 'de', 'name', 'Kernkraftwerk Gundremmingen'),
(12695, 10419, 'no_lang_code', 'name', 'Kerntechnische Hilfsdienst (Germany)'),
(12696, 10420, 'no_lang_code', 'name', 'Mesurex (Spain)'),
(12697, 10421, 'en', 'name', 'Production Engineering Research Association'),
(12698, 10422, 'no_lang_code', 'name', 'Meiko (United Kingdom)'),
(12699, 10423, 'no_lang_code', 'name', 'ArtHaus (Macedonia)'),
(12700, 10424, 'it', 'name', 'Progemisa'),
(12701, 10425, 'no_lang_code', 'name', 'KeyGene (Netherlands)'),
(12702, 10426, 'no_lang_code', 'name', 'KGHM Cuprum (Poland)'),
(12703, 10426, 'pl', 'name', 'KGHM Cuprum sp. z o.o. Centrum Badawczo - Rozwojowe'),
(12704, 10427, 'no_lang_code', 'name', 'Kingston Computer Consultancy (United Kingdom)'),
(12705, 10428, 'no_lang_code', 'name', 'Kite Solutions (Italy)'),
(12706, 10429, 'no_lang_code', 'name', 'KitoZyme (Belgium)'),
(12707, 10430, 'no_lang_code', 'name', 'KLA (Israel)'),
(12708, 10431, 'no_lang_code', 'name', 'Klƶckner (Germany)'),
(12709, 10432, 'no_lang_code', 'name', 'Cisco Systems (France)'),
(12710, 10433, 'no_lang_code', 'name', 'NDT Consultants (United Kingdom)'),
(12711, 10434, 'no_lang_code', 'name', 'Idetra (Spain)'),
(12712, 10435, 'no_lang_code', 'name', 'GEA Group (Germany)'),
(12713, 10436, 'no_lang_code', 'name', 'NEC Technologies (United Kingdom)'),
(12714, 10437, 'no_lang_code', 'name', 'Metallisation (United Kingdom)'),
(12715, 10438, 'en', 'name', 'Organic Research Centre'),
(12716, 10439, 'no_lang_code', 'name', 'Necton (Portugal)'),
(12717, 10440, 'no_lang_code', 'name', 'Kongsberg Satellite Services (Norway)'),
(12718, 10441, 'no_lang_code', 'name', 'Advanced Management Solutions (Greece)'),
(12719, 10442, 'no_lang_code', 'name', 'Project Automation (Italy)'),
(12720, 10443, 'en', 'name', 'Metropolitan Research Institute'),
(12721, 10444, 'es', 'name', 'BoletĆ­n Oficial del Estado'),
(12722, 10444, 'en', 'name', 'Official State Gazette'),
(12723, 10445, 'nl', 'name', 'Koninklijke Sterrenwacht van Belgiƫ'),
(12724, 10445, 'de', 'name', 'Kƶnigliche Sternwarte von Belgien'),
(12725, 10445, 'fr', 'name', 'Observatoire royal de belgique'),
(12726, 10445, 'en', 'name', 'Royal Observatory of Belgium'),
(12727, 10446, 'no_lang_code', 'name', 'KPN (Netherlands)'),
(12728, 10447, 'no_lang_code', 'name', 'Nederlandse Gasunie (Netherlands)'),
(12729, 10448, 'no_lang_code', 'name', 'Micro Materials (United Kingdom)'),
(12730, 10449, 'no_lang_code', 'name', 'Prokazyme (Iceland)'),
(12731, 10450, 'no_lang_code', 'name', 'Micro Resist Technology (Germany)'),
(12732, 10451, 'no_lang_code', 'name', 'Prometeia (Italy)'),
(12733, 10452, 'no_lang_code', 'name', 'ASM International (Finland)'),
(12734, 10453, 'no_lang_code', 'name', 'Promolding (Netherlands)'),
(12735, 10454, 'no_lang_code', 'name', 'Microfluidic ChipShop (Germany)'),
(12736, 10455, 'no_lang_code', 'name', 'Promoter (Italy)'),
(12737, 10456, 'no_lang_code', 'name', 'MicroLIQUID (Spain)'),
(12738, 10457, 'no_lang_code', 'name', 'Kontron (Germany)'),
(12739, 10458, 'no_lang_code', 'name', 'Micron (Italy)'),
(12740, 10459, 'no_lang_code', 'name', 'Micronit Microfluidics (Netherlands)'),
(12741, 10460, 'nl', 'name', 'Korps Landelijke Politiediensten'),
(12742, 10460, 'en', 'name', 'National Police Services Agency'),
(12743, 10461, 'no_lang_code', 'name', 'Prospex (Belgium)'),
(12744, 10462, 'no_lang_code', 'name', 'Microsharp (United Kingdom)'),
(12745, 10463, 'no_lang_code', 'name', 'Nedstack fuel cell technology (Netherlands)'),
(12746, 10464, 'no_lang_code', 'name', 'MicroVacuum (Hungary)'),
(12747, 10465, 'no_lang_code', 'name', 'Protection des MƩtaux (France)'),
(12748, 10466, 'no_lang_code', 'name', 'Prototech (Norway)'),
(12749, 10467, 'no_lang_code', 'name', 'Prover Technology (Sweden)'),
(12750, 10468, 'no_lang_code', 'name', 'Danaher (Netherlands)'),
(12751, 10469, 'no_lang_code', 'name', 'Nemetschek Bulgaria (Bulgaria)'),
(12752, 10470, 'no_lang_code', 'name', 'Materials Industrial Research and Technology Development Centre (Greece)'),
(12753, 10470, 'el', 'name', 'Εταιρεία'),
(12754, 10471, 'no_lang_code', 'name', 'METALogic (Belgium)'),
(12755, 10472, 'en', 'name', 'Fatebenefratelli Hospital'),
(12756, 10472, 'it', 'name', 'Ospedale San Giovanni Calibita Fatebenefratelli'),
(12757, 10473, 'no_lang_code', 'name', 'Prüf- und Forschungsinstitut Pirmasens (Germany)'),
(12758, 10474, 'en', 'name', 'Hungarian Meteorological Service'),
(12759, 10474, 'hu', 'name', 'OrszÔgos Meteorológiai SzolgÔlat'),
(12760, 10475, 'no_lang_code', 'name', 'Neovision (Czechia)'),
(12761, 10476, 'no_lang_code', 'name', 'Optel (Poland)'),
(12762, 10477, 'no_lang_code', 'name', 'KUKA (Germany)'),
(12763, 10477, 'de', 'name', 'Keller und Knappich Augsburg'),
(12764, 10478, 'no_lang_code', 'name', 'Meteorologie Consult (Germany)'),
(12765, 10479, 'no_lang_code', 'name', 'Neste Oil (Finland)'),
(12766, 10479, 'fi', 'name', 'Neste Oyj'),
(12767, 10480, 'en', 'name', 'National Consumer Research Centre'),
(12768, 10481, 'no_lang_code', 'name', 'Metroeconomica (United Kingdom)'),
(12769, 10482, 'no_lang_code', 'name', 'Project in Solar Energy (Germany)'),
(12770, 10483, 'no_lang_code', 'name', 'NET Nowak Energie & Technologie (Switzerland)'),
(12771, 10484, 'de', 'name', 'Kuratorium für Technik und Bauwesen in der Landwirtschaft'),
(12772, 10485, 'de', 'name', 'Medien- und Filmgesellschaft Baden-Württemberg'),
(12773, 10486, 'it', 'name', 'Istituto Psicoanalitico per le Ricerche Sociali'),
(12774, 10487, 'no_lang_code', 'name', 'Net7 (Italy)'),
(12775, 10488, 'no_lang_code', 'name', 'Aker (Finland)'),
(12776, 10489, 'no_lang_code', 'name', 'MEO (Portugal)'),
(12777, 10490, 'no_lang_code', 'name', 'NetComposites (United Kingdom)'),
(12778, 10491, 'no_lang_code', 'name', 'KWS Saat (Germany)'),
(12779, 10492, 'no_lang_code', 'name', 'PT Inovação e Sistemas (Portugal)'),
(12780, 10493, 'de', 'name', 'Milchwirtschaftliche Untersuchungs- und Versuchsanstalt Kempten'),
(12781, 10494, 'no_lang_code', 'name', 'Kybertec (Czechia)'),
(12782, 10495, 'no_lang_code', 'name', 'Miltech Hellas (Greece)'),
(12783, 10496, 'en', 'name', 'Cultural Heritage Agency of Netherlands'),
(12784, 10496, 'nl', 'name', 'Instituut Collectie Nederland'),
(12785, 10497, 'no_lang_code', 'name', 'L-Up'),
(12786, 10498, 'nl', 'name', 'Nederlands Normalisatie Instituut'),
(12787, 10498, 'en', 'name', 'Netherlands Standardization Institute'),
(12788, 10499, 'pl', 'name', 'Instytut Gospodarki Surowcami Mineralnymi i Energią Polskiej Akademii Nauk'),
(12789, 10499, 'en', 'name', 'Mineral and Energy Economy Research Institute of the Polish Academy of Sciences'),
(12790, 10500, 'en', 'name', 'Mineral Industry Research Organisation'),
(12791, 10501, 'no_lang_code', 'name', 'Minerva Consulting and Communication'),
(12792, 10502, 'en', 'name', 'Mines Rescue Service'),
(12793, 10503, 'it', 'name', 'Ministero della Giustizia'),
(12794, 10503, 'en', 'name', 'Ministry of Justice'),
(12795, 10504, 'en', 'name', 'Public Safety Communication Europe Forum'),
(12796, 10505, 'no_lang_code', 'name', 'PyroGenesis (Greece)'),
(12797, 10506, 'no_lang_code', 'name', 'Q-Biologicals (Belgium)'),
(12798, 10507, 'no_lang_code', 'name', 'Q Free (Norway)'),
(12799, 10508, 'nl', 'name', 'Ministerie van Onderwijs, Cultuur en Wetenschappe'),
(12800, 10508, 'en', 'name', 'Ministry of Education Culture and Science'),
(12801, 10509, 'no_lang_code', 'name', 'Saniona (Denmark)'),
(12802, 10510, 'fr', 'name', 'Laboratoire d''Ɖvaluation des MatĆ©riels Implantables'),
(12803, 10511, 'hr', 'name', 'Ministarstvo nauke'),
(12804, 10511, 'en', 'name', 'Ministry of Science'),
(12805, 10512, 'no_lang_code', 'name', 'Neurosoft (Poland)'),
(12806, 10513, 'fr', 'name', 'MinistĆØre de l''Ɖducation Nationale, de la Formation Professionnelle, de l''Enseignement SupĆ©rieur et de la Recherche Scientifique'),
(12807, 10513, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© و Ų§Ł„ŲŖŁƒŁˆŁŠŁ† Ų§Ł„Ł…Ł‡Ł†ŁŠ و Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ و البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(12808, 10514, 'en', 'name', 'New Wave Innovation'),
(12809, 10515, 'no_lang_code', 'name', 'Quanta System (Italy)'),
(12810, 10516, 'no_lang_code', 'name', 'Sudamin Rohstoff (Germany)'),
(12811, 10517, 'no_lang_code', 'name', 'Quantech ATZ (Spain)'),
(12812, 10518, 'it', 'name', 'Laboratorio di Scienze della Cittadinanza'),
(12813, 10519, 'no_lang_code', 'name', 'Quantis (Switzerland)'),
(12814, 10520, 'en', 'name', 'Ministry of the Internal Administration'),
(12815, 10520, 'pt', 'name', 'Ministério da Administração Interna'),
(12816, 10521, 'no_lang_code', 'name', 'Quinary (Italy)'),
(12817, 10522, 'pt', 'name', 'MinistƩrio da JustiƧa'),
(12818, 10523, 'it', 'name', 'Ministero dell''Interno'),
(12819, 10523, 'en', 'name', 'Ministry of Interior'),
(12820, 10524, 'no_lang_code', 'name', 'Zachrome (United Kingdom)'),
(12821, 10525, 'no_lang_code', 'name', 'Engie (Belgium)'),
(12822, 10526, 'no_lang_code', 'name', 'Lagerwey Wind (Netherlands)'),
(12823, 10527, 'en', 'name', 'Ministry of Agriculture Nature and Food Quality'),
(12824, 10528, 'no_lang_code', 'name', 'Research and Environmental Devices (Italy)'),
(12825, 10529, 'en', 'name', 'Institute of Soil Science ā€œNikola Poushkarovā€'),
(12826, 10529, 'bg', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠž ŠŸŠžŠ§Š’ŠžŠ—ŠŠŠŠ˜Š• "ŠŠ˜ŠšŠžŠ›Š ŠŸŠ£ŠØŠšŠŠ ŠžŠ’"'),
(12827, 10530, 'no_lang_code', 'name', 'R.U.Robots (United Kingdom)'),
(12828, 10531, 'en', 'name', 'Nikolaev Institute of Inorganic Chemistry'),
(12829, 10531, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неорганической химии им. А.Š’.ŠŠøŠŗŠ¾Š»Š°ŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(12830, 10532, 'en', 'name', 'Lambrakis Research Foundation'),
(12831, 10533, 'nl', 'name', 'Ministerie van Financiƫn'),
(12832, 10533, 'en', 'name', 'Ministry of Finance'),
(12833, 10534, 'no_lang_code', 'name', 'Lamik (Spain)'),
(12834, 10535, 'nl', 'name', 'Ministerie van de Vlaamse Gemeenschap'),
(12835, 10536, 'no_lang_code', 'name', 'Zuken (United Kingdom)'),
(12836, 10537, 'de', 'name', 'Landwirtschaftliche Untersuchungs- und Forschungsanstalt Speyer'),
(12837, 10538, 'no_lang_code', 'name', 'Raidió TeilifĆ­s Ɖireann (Ireland)'),
(12838, 10539, 'en', 'name', 'Radiological Protection Institute of Ireland'),
(12839, 10540, 'no_lang_code', 'name', 'Language Technology Centre'),
(12840, 10541, 'no_lang_code', 'name', 'Siempelkamp (Germany)'),
(12841, 10542, 'en', 'name', 'Radiophysical Research Institute'),
(12842, 10542, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ раГиофизический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(12843, 10543, 'no_lang_code', 'name', 'Radiotelevisione Italiana (Italy)'),
(12844, 10544, 'no_lang_code', 'name', 'NKT Holding (Denmark)'),
(12845, 10545, 'no_lang_code', 'name', 'Lantiq (Germany)'),
(12846, 10546, 'no_lang_code', 'name', 'Raffinerie Tirlemontoise (Belgium)'),
(12847, 10547, 'no_lang_code', 'name', 'Microsoft (Belgium)'),
(12848, 10548, 'no_lang_code', 'name', 'Laser Expertise (United Kingdom)'),
(12849, 10549, 'it', 'name', 'Ministero delle Politiche Agricole, Alimentari e Forestali'),
(12850, 10549, 'en', 'name', 'Ministry of Agricultural, Food and Forestry Policies'),
(12851, 10550, 'no_lang_code', 'name', 'Ramboll (Finland)'),
(12852, 10551, 'no_lang_code', 'name', 'Laser Scan Engineering (United Kingdom)'),
(12853, 10552, 'lv', 'name', 'Latvijas Valsts Agrārās Ekonomikas Institūts'),
(12854, 10553, 'en', 'name', 'RAND Europe'),
(12855, 10554, 'en', 'name', 'Ministry of Education, Science and Sport'),
(12856, 10555, 'ro', 'name', 'Ministerul Afacerilor Interne'),
(12857, 10555, 'en', 'name', 'Ministry of Internal Affairs'),
(12858, 10556, 'en', 'name', 'Latvian Council of Science'),
(12859, 10557, 'no_lang_code', 'name', 'Nokia (Germany)'),
(12860, 10558, 'no_lang_code', 'name', 'Innovation (Latvia)'),
(12861, 10559, 'no_lang_code', 'name', 'Rapita Systems (United Kingdom)'),
(12862, 10560, 'no_lang_code', 'name', 'Noldus Information Technology'),
(12863, 10561, 'no_lang_code', 'name', 'Laviosa Minerals (Italy)'),
(12864, 10562, 'no_lang_code', 'name', 'LaVision (Germany)'),
(12865, 10563, 'no_lang_code', 'name', 'Smithers Rapra (United Kingdom)'),
(12866, 10564, 'en', 'name', 'Ministry of Communications and Information Technology'),
(12867, 10565, 'no_lang_code', 'name', 'Noliac (Denmark)'),
(12868, 10566, 'no_lang_code', 'name', 'Ratier Figeac (France)'),
(12869, 10567, 'no_lang_code', 'name', 'EMI Construction Quality Control (Hungary)'),
(12870, 10568, 'it', 'name', 'Ratio Consulta'),
(12871, 10569, 'sq', 'name', 'Ministria e Arsimit, Sportit dhe Rinisƫ'),
(12872, 10569, 'en', 'name', 'Ministry of Education, Sports and Youth'),
(12873, 10570, 'en', 'name', 'Ministry of Education and Science'),
(12874, 10571, 'no_lang_code', 'name', 'Nor-tek'),
(12875, 10572, 'no_lang_code', 'name', 'Tecos (Slovenia)'),
(12876, 10573, 'no_lang_code', 'name', 'Norddeutsche Pflanzenzucht Hans-Georg Lembke (Germany)'),
(12877, 10574, 'no_lang_code', 'name', 'Re Lab (Italy)'),
(12878, 10575, 'en', 'name', 'Ministry of National Defence'),
(12879, 10575, 'el', 'name', '΄πουργείο Εθνικής Άμυνας'),
(12880, 10576, 'en', 'name', 'Ministry of Public Security'),
(12881, 10576, 'he', 'name', '×”×ž×©×Ø×“ לביטחון הפנים'),
(12882, 10576, 'ar', 'name', 'وزارة الأمن Ų§Ł„ŲÆŲ§Ų®Ł„ŁŠ'),
(12883, 10577, 'no_lang_code', 'name', 'Re/genT (Netherlands)'),
(12884, 10578, 'no_lang_code', 'name', 'Saft (France)'),
(12885, 10579, 'no_lang_code', 'name', 'SAIL LABS Technology (Austria)'),
(12886, 10580, 'no_lang_code', 'name', 'Rete Europea Dell’Innovazione (Italy)'),
(12887, 10581, 'no_lang_code', 'name', 'Mira Telecom (Romania)'),
(12888, 10582, 'no_lang_code', 'name', 'Sairem (France)'),
(12889, 10583, 'de', 'name', 'Salzgitter AG'),
(12890, 10583, 'no_lang_code', 'name', 'Salzgitter Group (Germany)'),
(12891, 10584, 'no_lang_code', 'name', 'WƤrtsilƤ (Germany)'),
(12892, 10585, 'no_lang_code', 'name', 'TopSolid (France)'),
(12893, 10586, 'no_lang_code', 'name', 'Sampaş Nanotechnology (Turkey)'),
(12894, 10587, 'no_lang_code', 'name', 'Norner (Norway)'),
(12895, 10588, 'no_lang_code', 'name', 'Reply (Italy)'),
(12896, 10589, 'no_lang_code', 'name', 'Mitel (United Kingdom)'),
(12897, 10590, 'no_lang_code', 'name', 'Norsk Elektro Optikk (Norway)'),
(12898, 10591, 'no_lang_code', 'name', 'Mitsubishi Electric (Netherlands)'),
(12899, 10592, 'no_lang_code', 'name', 'Satellite Observing Systems (United Kingdom)'),
(12900, 10593, 'no_lang_code', 'name', 'Satra (United Kingdom)'),
(12901, 10594, 'no_lang_code', 'name', 'Swarco (Italy)'),
(12902, 10595, 'no_lang_code', 'name', 'MJC2 (United Kingdom)'),
(12903, 10596, 'no_lang_code', 'name', 'Satways (Greece)'),
(12904, 10597, 'no_lang_code', 'name', 'MKmetric (Germany)'),
(12905, 10598, 'no_lang_code', 'name', 'Schlaich Bergermann und Partner (Germany)'),
(12906, 10599, 'no_lang_code', 'name', 'Digital Dispatch (Finland)'),
(12907, 10600, 'no_lang_code', 'name', 'Mobycon'),
(12908, 10601, 'no_lang_code', 'name', 'Modulight (Finland)'),
(12909, 10602, 'no_lang_code', 'name', 'MolMed (Italy)'),
(12910, 10603, 'no_lang_code', 'name', 'Monocrom (Spain)'),
(12911, 10604, 'en', 'name', 'Region of Western Greece'),
(12912, 10604, 'el', 'name', 'Περιφέρεια Δυτικής ΕλλάΓας'),
(12913, 10605, 'no_lang_code', 'name', 'Schneider Electric (France)'),
(12914, 10606, 'no_lang_code', 'name', 'Schott (Germany)'),
(12915, 10607, 'en', 'name', 'Regional Center for Information and Scientific Development'),
(12916, 10608, 'no_lang_code', 'name', 'Italsolar (Italy)'),
(12917, 10609, 'no_lang_code', 'name', 'Mostostal Warszawa (Poland)'),
(12918, 10610, 'no_lang_code', 'name', 'Motiva (Finland)'),
(12919, 10611, 'it', 'name', 'Regione Campania'),
(12920, 10612, 'no_lang_code', 'name', 'Motorola (Italy)'),
(12921, 10613, 'no_lang_code', 'name', 'Schunk (Germany)'),
(12922, 10614, 'no_lang_code', 'name', 'Motorola (Germany)'),
(12923, 10615, 'no_lang_code', 'name', 'North West Textiles Network (United Kingdom)'),
(12924, 10616, 'en', 'name', 'Northern Research Institute'),
(12925, 10617, 'no_lang_code', 'name', 'Morgan Advanced Materials (United Kingdom)'),
(12926, 10618, 'en', 'name', 'Norwegian Geotechnical Institute'),
(12927, 10619, 'es', 'name', 'Instituto CatalƔn de Tecnologƭa'),
(12928, 10620, 'no_lang_code', 'name', 'Scientific Research and Development (Germany)'),
(12929, 10621, 'no_lang_code', 'name', 'Renewable Energy Systems (United Kingdom)'),
(12930, 10622, 'no_lang_code', 'name', 'Institut d''AssistĆØncia SanitĆ ria'),
(12931, 10623, 'no_lang_code', 'name', 'Roth and Rau (Germany)'),
(12932, 10624, 'no_lang_code', 'name', 'Harvard Bioscience (Germany)'),
(12933, 10625, 'no_lang_code', 'name', 'Bureau Veritas (Italy)'),
(12934, 10626, 'no_lang_code', 'name', 'SCITEK Consultants (United Kingdom)'),
(12935, 10627, 'no_lang_code', 'name', 'Rescoll (France)'),
(12936, 10628, 'no_lang_code', 'name', 'SCM Group (Italy)'),
(12937, 10629, 'en', 'name', 'Institute of Chemistry and Chemical Technology'),
(12938, 10630, 'no_lang_code', 'name', 'Scriba Nanotecnologie (Italy)'),
(12939, 10631, 'no_lang_code', 'name', 'Murmansk Marine Biological Institute'),
(12940, 10632, 'no_lang_code', 'name', 'NOVAMINA Innovative Technology Centre'),
(12941, 10633, 'ro', 'name', 'Administraţia Naţională de Meteorologie'),
(12942, 10634, 'en', 'name', 'Museum and Institute of Zoology'),
(12943, 10634, 'pl', 'name', 'Muzeum i Instytut Zoologii PAN'),
(12944, 10635, 'no_lang_code', 'name', 'Novamont (Italy)'),
(12945, 10636, 'no_lang_code', 'name', 'Exide Technologies (Spain)'),
(12946, 10637, 'no_lang_code', 'name', 'Mutadis'),
(12947, 10638, 'hu', 'name', 'HalĆ”szati Ć©s ƖntƶzĆ©si KutatóintĆ©zet'),
(12948, 10638, 'en', 'name', 'Research Institute for Fisheries and Aquaculture'),
(12949, 10639, 'no_lang_code', 'name', 'SYSTRA (United Kingdom)'),
(12950, 10640, 'en', 'name', 'Research Institute for Knowledge Systems'),
(12951, 10641, 'no_lang_code', 'name', 'Sefar (Switzerland)'),
(12952, 10642, 'nl', 'name', 'Kennisland'),
(12953, 10643, 'en', 'name', 'Stockholm Environment Institute'),
(12954, 10644, 'no_lang_code', 'name', 'Smart Homes'),
(12955, 10645, 'no_lang_code', 'name', 'Selected Electronic Technologies (Germany)'),
(12956, 10646, 'nl', 'name', 'Novay'),
(12957, 10647, 'no_lang_code', 'name', 'NsGene (Denmark)'),
(12958, 10648, 'en', 'name', 'European Nuclear Education Network'),
(12959, 10648, 'fr', 'name', 'RĆ©seau EuropĆ©en pour l’Enseignement des Sciences NuclĆ©aires'),
(12960, 10649, 'en', 'name', 'Swedish Institute of Steel Construction'),
(12961, 10650, 'no_lang_code', 'name', 'Skanska (Norway)'),
(12962, 10651, 'no_lang_code', 'name', 'STMicroelectronics (Belgium)'),
(12963, 10652, 'no_lang_code', 'name', 'STMicroelectronics (Switzerland)'),
(12964, 10653, 'no_lang_code', 'name', 'ResilTech (Italy)'),
(12965, 10654, 'en', 'name', 'Semantic Technology Institute International'),
(12966, 10655, 'no_lang_code', 'name', 'Teledyne Technologies (Denmark)'),
(12967, 10656, 'no_lang_code', 'name', 'Semelab (United Kingdom)'),
(12968, 10657, 'no_lang_code', 'name', 'Subsea 7 (France)'),
(12969, 10658, 'no_lang_code', 'name', 'Stora Enso (Finland)'),
(12970, 10659, 'no_lang_code', 'name', 'Stork (Netherlands)'),
(12971, 10660, 'no_lang_code', 'name', 'Abertis Infraestructuras (Spain)'),
(12972, 10661, 'en', 'name', 'Cities On Internet Association'),
(12973, 10662, 'no_lang_code', 'name', 'Revoind Industriale (Italy)'),
(12974, 10663, 'en', 'name', 'Rezekne Higher Education Institution'),
(12975, 10663, 'lv', 'name', 'Rēzeknes Augstskola'),
(12976, 10664, 'no_lang_code', 'name', 'Semilab (Hungary)'),
(12977, 10665, 'no_lang_code', 'name', 'Stratec (Belgium)'),
(12978, 10666, 'en', 'name', 'Strategic Design Scenarios'),
(12979, 10667, 'no_lang_code', 'name', 'StratiCELL (Belgium)'),
(12980, 10668, 'en', 'name', 'Senate Department for Urban Development and the Environment'),
(12981, 10668, 'de', 'name', 'Senatsverwaltung für Stadtentwicklung und Wohnen'),
(12982, 10669, 'no_lang_code', 'name', 'Rhea (Belgium)'),
(12983, 10670, 'no_lang_code', 'name', 'Stresstech (Finland)'),
(12984, 10671, 'no_lang_code', 'name', 'Sensing & Control Systems (Spain)'),
(12985, 10672, 'no_lang_code', 'name', 'SensL (Ireland)'),
(12986, 10673, 'de', 'name', 'Studiengesellschaft für den Kombinierten Verkehr e.V.'),
(12987, 10674, 'no_lang_code', 'name', 'RWE (Germany)'),
(12988, 10674, 'de', 'name', 'Rheinisch-WestfƤlisches ElektrizitƤtswerk Aktiengesellschaft'),
(12989, 10674, 'en', 'name', 'Rhine-Westfalia Electricity Factory'),
(12990, 10675, 'no_lang_code', 'name', 'Studsvik (Sweden)'),
(12991, 10676, 'no_lang_code', 'name', 'Solvay (France)'),
(12992, 10677, 'no_lang_code', 'name', 'STX Europe (France)'),
(12993, 10678, 'no_lang_code', 'name', 'SENTECH Instruments (Germany)'),
(12994, 10679, 'no_lang_code', 'name', 'Subsea Technologies (United Kingdom)'),
(12995, 10680, 'en', 'name', 'Regional Energy and Environment Egency'),
(12996, 10680, 'fr', 'name', 'RhƓnalpƩnergie Environnement'),
(12997, 10681, 'no_lang_code', 'name', 'Sulzer (Switzerland)'),
(12998, 10682, 'no_lang_code', 'name', 'Nutrition Sciences (Belgium)'),
(12999, 10683, 'no_lang_code', 'name', 'RHP Technology (Austria)'),
(13000, 10684, 'no_lang_code', 'name', 'SupraPolix (Netherlands)'),
(13001, 10685, 'en', 'name', 'Dutch Railways'),
(13002, 10685, 'no_lang_code', 'name', 'Nederlandse Spoorwegen'),
(13003, 10686, 'en', 'name', 'Geological Survey of Sweden'),
(13004, 10686, 'fi', 'name', 'Ruotsin geologinen tutkimuslaitos'),
(13005, 10686, 'sv', 'name', 'Sveriges geologiska undersƶkning'),
(13006, 10687, 'no_lang_code', 'name', 'NXP (Belgium)'),
(13007, 10688, 'no_lang_code', 'name', 'NXP (Germany)'),
(13008, 10689, 'no_lang_code', 'name', 'Sweco (Norway)'),
(13009, 10690, 'no_lang_code', 'name', 'Pininfarina (Italy)'),
(13010, 10691, 'no_lang_code', 'name', 'Separex (France)'),
(13011, 10692, 'no_lang_code', 'name', 'Septentrio (Belgium)'),
(13012, 10693, 'de', 'name', 'OƖ Energiesparverband'),
(13013, 10694, 'no_lang_code', 'name', 'Sequans Communications (France)'),
(13014, 10695, 'en', 'name', 'Sustainable Europe Research Institute'),
(13015, 10696, 'en', 'name', 'Swedish Energy Agency'),
(13016, 10697, 'no_lang_code', 'name', 'Serious Games Interactive (Denmark)'),
(13017, 10698, 'no_lang_code', 'name', 'Rijk Zwaan (Netherlands)'),
(13018, 10699, 'no_lang_code', 'name', 'Oberthur Technologies (France)'),
(13019, 10700, 'nl', 'name', 'Federal Overheidsdienst voor Informatie - en Communicatietechnologie'),
(13020, 10700, 'de', 'name', 'Fƶderaler Ɩffentlichter Dienst Informations- und Kommunikationstechnologie'),
(13021, 10700, 'en', 'name', 'Information and Communication Technology Federal Public Service'),
(13022, 10700, 'fr', 'name', 'Service Public FƩdƩral Technologie de l''Information et de la Communication'),
(13023, 10701, 'no_lang_code', 'name', 'ServiceXS (Netherlands)'),
(13024, 10702, 'en', 'name', 'Observa Science in Society'),
(13025, 10703, 'en', 'name', 'Neuchâtel Observatory'),
(13026, 10703, 'fr', 'name', 'Observatoire Cantonal de Neuchâtel'),
(13027, 10704, 'no_lang_code', 'name', 'Veolia (Denmark)'),
(13028, 10705, 'no_lang_code', 'name', 'SES (Luxembourg)'),
(13029, 10706, 'fr', 'name', 'Observatoire des Sciences et des Techniques'),
(13030, 10707, 'fr', 'name', 'Observatoire des Ʃnergies renouvelables'),
(13031, 10707, 'en', 'name', 'Observatory of renewable energies'),
(13032, 10708, 'fr', 'name', 'Observatoire MĆ©diterranĆ©en de l’Energie'),
(13033, 10709, 'no_lang_code', 'name', 'Melissa Food'),
(13034, 10710, 'no_lang_code', 'name', 'Canon (Netherlands)'),
(13035, 10711, 'no_lang_code', 'name', 'AFRY (Sweden)'),
(13036, 10712, 'no_lang_code', 'name', 'Rikola (Finland)'),
(13037, 10713, 'no_lang_code', 'name', 'Rina Services (Italy)'),
(13038, 10714, 'no_lang_code', 'name', 'RISA Sicherheitsanalysen'),
(13039, 10715, 'no_lang_code', 'name', 'Fugro (Norway)'),
(13040, 10716, 'no_lang_code', 'name', 'Gruppo Riva (Italy)'),
(13041, 10717, 'no_lang_code', 'name', 'Calzoni (Italy)'),
(13042, 10718, 'no_lang_code', 'name', 'Syngenta (Netherlands)'),
(13043, 10719, 'no_lang_code', 'name', 'Swisscom (Switzerland)'),
(13044, 10720, 'en', 'name', 'Institute for Applied Ecology'),
(13045, 10720, 'eu', 'name', 'Oeko Institut'),
(13046, 10721, 'no_lang_code', 'name', 'Roal (Finland)'),
(13047, 10722, 'no_lang_code', 'name', 'Sword Group (Luxembourg)'),
(13048, 10723, 'en', 'name', 'Austrian Federal Railways'),
(13049, 10723, 'de', 'name', 'Ɩsterreichische Bundesbahnen'),
(13050, 10724, 'no_lang_code', 'name', 'Roche (Italy)'),
(13051, 10725, 'no_lang_code', 'name', 'E.ON Sverige (Sweden)'),
(13052, 10726, 'no_lang_code', 'name', 'Rockfield (United Kingdom)'),
(13053, 10727, 'en', 'name', 'Shipbuilders & Shiprepairers Association'),
(13054, 10728, 'no_lang_code', 'name', 'Rodan Development (Poland)'),
(13055, 10729, 'en', 'name', 'Austrian Broadcasting'),
(13056, 10729, 'no_lang_code', 'name', 'Ɩsterreichischer Rundfunk'),
(13057, 10730, 'no_lang_code', 'name', 'Rofin (Germany)'),
(13058, 10731, 'no_lang_code', 'name', 'Rohde & Schwarz (Germany)'),
(13059, 10732, 'no_lang_code', 'name', 'Smart High Tech (Sweden)'),
(13060, 10733, 'de', 'name', 'Ɩsterreichisches Forschungsinstitut für Chemie und Technik'),
(13061, 10734, 'no_lang_code', 'name', 'Rolls-Royce (Sweden)'),
(13062, 10735, 'no_lang_code', 'name', 'Sistemi Innovativi per Il Controllo del Traffico Aereo'),
(13063, 10736, 'no_lang_code', 'name', 'Siegert Electronic (Germany)'),
(13064, 10737, 'no_lang_code', 'name', 'Ropardo (Romania)'),
(13065, 10738, 'no_lang_code', 'name', 'Siemens (Austria)'),
(13066, 10739, 'no_lang_code', 'name', 'Synapse (Spain)'),
(13067, 10740, 'no_lang_code', 'name', 'Sylics (Netherlands)'),
(13068, 10741, 'en', 'name', 'Office National de l''Eau Potable'),
(13069, 10742, 'no_lang_code', 'name', 'Roughan & O''Donovan Innovative Solutions'),
(13070, 10743, 'no_lang_code', 'name', 'syncom'),
(13071, 10744, 'no_lang_code', 'name', 'Synergie Informatique'),
(13072, 10745, 'no_lang_code', 'name', 'Atos (Germany)'),
(13073, 10746, 'no_lang_code', 'name', 'synergo'),
(13074, 10747, 'en', 'name', 'Office of the Prime Minister of Malta'),
(13075, 10747, 'it', 'name', 'Primo Ministro di Malta'),
(13076, 10748, 'no_lang_code', 'name', 'Siemens (Italy)'),
(13077, 10749, 'no_lang_code', 'name', 'Siemens (Spain)'),
(13078, 10750, 'no_lang_code', 'name', 'Siemens (Romania)'),
(13079, 10751, 'it', 'name', 'Synesis'),
(13080, 10752, 'no_lang_code', 'name', 'Syngenta (United Kingdom)'),
(13081, 10753, 'no_lang_code', 'name', 'Olink Bioscience (Sweden)'),
(13082, 10754, 'no_lang_code', 'name', 'RTC North (United Kingdom)'),
(13083, 10755, 'no_lang_code', 'name', 'Synovo (Germany)'),
(13084, 10756, 'no_lang_code', 'name', 'RTD Talos (Cyprus)'),
(13085, 10757, 'no_lang_code', 'name', 'Siemens (France)'),
(13086, 10758, 'no_lang_code', 'name', 'Rübig (Austria)'),
(13087, 10759, 'no_lang_code', 'name', 'Syntax (Italy)'),
(13088, 10760, 'no_lang_code', 'name', 'Synthema (Italy)'),
(13089, 10761, 'en', 'name', 'Berlin-Brandenburg Broadcasting'),
(13090, 10761, 'de', 'name', 'Rundfunk Berlin-Brandenburg'),
(13091, 10762, 'no_lang_code', 'name', 'Thales (Germany)'),
(13092, 10763, 'no_lang_code', 'name', 'Siena Biotech (Italy)'),
(13093, 10764, 'no_lang_code', 'name', 'Rupprecht Consult - Forschung & Beratung'),
(13094, 10765, 'no_lang_code', 'name', 'GF Machining Solutions (Sweden)');
INSERT INTO `ror_settings` VALUES
(13095, 10766, 'no_lang_code', 'name', 'Sigint Solutions (Cyprus)'),
(13096, 10767, 'no_lang_code', 'name', 'System Simulation (United Kingdom)'),
(13097, 10768, 'no_lang_code', 'name', 'Omniform (Belgium)'),
(13098, 10769, 'en', 'name', 'Russian Technology Transfer Network'),
(13099, 10770, 'no_lang_code', 'name', 'Sigma Orionis (France)'),
(13100, 10771, 'no_lang_code', 'name', 'RWTÜV (Germany)'),
(13101, 10771, 'de', 'name', 'Rheinisch-Westfälische Technische Überwachungsverein'),
(13102, 10772, 'en', 'name', 'Systema Transport Planning & Engineering Consultants'),
(13103, 10773, 'no_lang_code', 'name', 'RWP (Germany)'),
(13104, 10774, 'no_lang_code', 'name', 'Synopsys (Germany)'),
(13105, 10775, 'no_lang_code', 'name', 'ONA Electroerosion (Spain)'),
(13106, 10776, 'no_lang_code', 'name', 'Sigmoid Pharma (Ireland)'),
(13107, 10777, 'no_lang_code', 'name', 'Groupe Cahors (France)'),
(13108, 10778, 'no_lang_code', 'name', 'SignalGeneriX (Cyprus)'),
(13109, 10779, 'no_lang_code', 'name', 'Deutsche Telekom (Spain)'),
(13110, 10780, 'no_lang_code', 'name', 'SATA Application Advanced Technologies (Italy)'),
(13111, 10781, 'no_lang_code', 'name', 'Signosis'),
(13112, 10782, 'no_lang_code', 'name', 'Semafora Systems (Germany)'),
(13113, 10783, 'no_lang_code', 'name', 'Kalashnikov Group (Russia)'),
(13114, 10783, 'ru', 'name', 'акционерное общество Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ оптический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”.И.Вавилова'),
(13115, 10784, 'no_lang_code', 'name', 'T4tech (Italy)'),
(13116, 10785, 'no_lang_code', 'name', 'T6 (Italy)'),
(13117, 10786, 'no_lang_code', 'name', 'Praxis'),
(13118, 10787, 'en', 'name', 'East Netherlands Development Agency'),
(13119, 10787, 'nl', 'name', 'Ontwikkelingsmaatschappij Oost Nederland'),
(13120, 10788, 'en', 'name', 'Science Centre AHHAA'),
(13121, 10789, 'no_lang_code', 'name', 'Imerys (Germany)'),
(13122, 10790, 'no_lang_code', 'name', 'Imerys (Greece)'),
(13123, 10791, 'no_lang_code', 'name', 'OpenLink Software (United Kingdom)'),
(13124, 10792, 'no_lang_code', 'name', 'SociƩtƩs Anonyme Belge de Constructions AƩronautiques (Belgium)'),
(13125, 10793, 'no_lang_code', 'name', 'Sika (Switzerland)'),
(13126, 10794, 'no_lang_code', 'name', 'Targeting Innovation'),
(13127, 10795, 'en', 'name', 'Institute of Theoretical and Applied Mechanics'),
(13128, 10795, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø приклаГной механики им. Š”.А. Єристиановича Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(13129, 10796, 'no_lang_code', 'name', 'Akka Technologies (France)'),
(13130, 10797, 'no_lang_code', 'name', 'Saarstahl (Germany)'),
(13131, 10798, 'no_lang_code', 'name', 'Tataa Biocenter (Sweden)'),
(13132, 10799, 'no_lang_code', 'name', 'Optibase (Israel)'),
(13133, 10800, 'en', 'name', 'Tavistock Institute'),
(13134, 10801, 'no_lang_code', 'name', 'Saaten Union (Germany)'),
(13135, 10802, 'no_lang_code', 'name', 'SinapTec (France)'),
(13136, 10803, 'no_lang_code', 'name', 'Optimat (United Kingdom)'),
(13137, 10804, 'no_lang_code', 'name', 'Optoelectronica-2001 (Romania)'),
(13138, 10805, 'de', 'name', 'SƤchsisches Textilforschungsinstitut'),
(13139, 10806, 'no_lang_code', 'name', 'Sinergis (Italy)'),
(13140, 10807, 'no_lang_code', 'name', 'Orange (Poland)'),
(13141, 10808, 'no_lang_code', 'name', 'SAES Group (Italy)'),
(13142, 10809, 'no_lang_code', 'name', 'Orbsen Therapeutics (Ireland)'),
(13143, 10810, 'en', 'name', 'Singleimage'),
(13144, 10811, 'no_lang_code', 'name', 'SEMA (Germany)'),
(13145, 10812, 'no_lang_code', 'name', 'Brookes Bell (United Kingdom)'),
(13146, 10813, 'no_lang_code', 'name', 'Vinci (United Kingdom)'),
(13147, 10814, 'no_lang_code', 'name', 'Safibra (Czechia)'),
(13148, 10815, 'no_lang_code', 'name', 'Organic Waste Systems (Belgium)'),
(13149, 10816, 'no_lang_code', 'name', 'Safinah (United Kingdom)'),
(13150, 10817, 'no_lang_code', 'name', 'Altium''s (Netherlands)'),
(13151, 10818, 'no_lang_code', 'name', 'TƁRKI Social Research Institute'),
(13152, 10819, 'no_lang_code', 'name', 'Teamnet (Romania)'),
(13153, 10820, 'no_lang_code', 'name', 'Teamwork Technology (Netherlands)'),
(13154, 10821, 'no_lang_code', 'name', 'GKN (Germany)'),
(13155, 10822, 'no_lang_code', 'name', 'Tech4i2'),
(13156, 10823, 'no_lang_code', 'name', 'Technaid (Spain)'),
(13157, 10824, 'no_lang_code', 'name', 'Sirma Group (Bulgaria)'),
(13158, 10825, 'no_lang_code', 'name', 'Terres OlƩoPro (France)'),
(13159, 10826, 'no_lang_code', 'name', 'Technical Software Consulting'),
(13160, 10827, 'no_lang_code', 'name', 'Sirti (Italy)'),
(13161, 10828, 'hu', 'name', 'Orszagos Kornyezetegeszsegugyi Intezet'),
(13162, 10829, 'no_lang_code', 'name', 'Technical Support for European Organisations'),
(13163, 10830, 'en', 'name', 'ORT France'),
(13164, 10831, 'no_lang_code', 'name', 'TIE Kinetix (Netherlands)'),
(13165, 10832, 'no_lang_code', 'name', 'ODTÜ Teknokent (Turkey)'),
(13166, 10833, 'pt', 'name', 'Sindicato dos Trabalhadores de Escritório'),
(13167, 10834, 'fi', 'name', 'Heureka'),
(13168, 10835, 'no_lang_code', 'name', 'SIVECO (Romania)'),
(13169, 10836, 'no_lang_code', 'name', 'Tilde (Latvia)'),
(13170, 10837, 'no_lang_code', 'name', 'Timber Research and Development Association (United Kingdom)'),
(13171, 10838, 'no_lang_code', 'name', 'SKF (Netherlands)'),
(13172, 10839, 'no_lang_code', 'name', 'Technobiochip (Italy)'),
(13173, 10840, 'fr', 'name', 'Technofi'),
(13174, 10841, 'no_lang_code', 'name', 'Imerys (Switzerland)'),
(13175, 10842, 'no_lang_code', 'name', 'Sandvik (United Kingdom)'),
(13176, 10843, 'no_lang_code', 'name', 'Skytek (Ireland)'),
(13177, 10844, 'no_lang_code', 'name', 'Slot Consulting'),
(13178, 10845, 'no_lang_code', 'name', 'Transportes Inovação e Sistemas (Portugal)'),
(13179, 10846, 'no_lang_code', 'name', 'OSRAM (Germany)'),
(13180, 10847, 'no_lang_code', 'name', 'Technikon (Austria)'),
(13181, 10848, 'no_lang_code', 'name', 'Titan Cement (Greece)'),
(13182, 10848, 'el', 'name', 'ĪŒĪ¼Ī¹Ī»ĪæĻ‚ Ī¤ĻƒĪ¹Ī¼Ī­Ī½Ļ„Ļ‰Ī½ Τιτάν'),
(13183, 10849, 'en', 'name', 'Slovak Organization for Research and Development Activities'),
(13184, 10850, 'no_lang_code', 'name', 'TÜV SÜD (Germany)'),
(13185, 10851, 'en', 'name', 'Arcetri Astrophysical Observatory'),
(13186, 10851, 'it', 'name', 'Osservatorio Astrofisico di Arcetri'),
(13187, 10852, 'no_lang_code', 'name', 'TÜV (Austria)'),
(13188, 10853, 'en', 'name', 'Construction Cluster of Slovenia'),
(13189, 10853, 'sl', 'name', 'Slovenski Gradbeni Grozd'),
(13190, 10854, 'no_lang_code', 'name', 'Ɩssur (Iceland)'),
(13191, 10855, 'no_lang_code', 'name', 'Türk Otomobil Fabrikası (Turkey)'),
(13192, 10856, 'no_lang_code', 'name', 'Tofwerk (Switzerland)'),
(13193, 10857, 'no_lang_code', 'name', 'Technology Application Network (United Kingdom)'),
(13194, 10858, 'no_lang_code', 'name', 'SMA Solar Technology (Germany)'),
(13195, 10859, 'no_lang_code', 'name', 'Smart Material (Germany)'),
(13196, 10860, 'no_lang_code', 'name', 'Technology Transfer System (Italy)'),
(13197, 10861, 'no_lang_code', 'name', 'TomTom (Netherlands)'),
(13198, 10862, 'no_lang_code', 'name', 'Technolution (Netherlands)'),
(13199, 10863, 'no_lang_code', 'name', 'Technopolis'),
(13200, 10864, 'no_lang_code', 'name', 'Qiagen (Denmark)'),
(13201, 10865, 'no_lang_code', 'name', 'Organizzazione Sviluppo Vendite'),
(13202, 10866, 'no_lang_code', 'name', 'TopGaN (Poland)'),
(13203, 10867, 'no_lang_code', 'name', 'Technosam (Romania)'),
(13204, 10868, 'no_lang_code', 'name', 'Smartex (Italy)'),
(13205, 10869, 'no_lang_code', 'name', 'Toptica Photonics (Germany)'),
(13206, 10870, 'no_lang_code', 'name', 'Ottobock (Germany)'),
(13207, 10871, 'no_lang_code', 'name', 'Safran (Belgium)'),
(13208, 10872, 'no_lang_code', 'name', 'Tecnaro (Germany)'),
(13209, 10873, 'no_lang_code', 'name', 'Otto Group (Germany)'),
(13210, 10874, 'no_lang_code', 'name', 'Tecnitest (Spain)'),
(13211, 10875, 'no_lang_code', 'name', 'Tecnologia Energia Ambiente Materiali (Italy)'),
(13212, 10876, 'no_lang_code', 'name', 'Outokumpu (Finland)'),
(13213, 10877, 'no_lang_code', 'name', 'TecnologĆ­a Navarra de Nanoproductos (Spain)'),
(13214, 10878, 'no_lang_code', 'name', 'Tecnologƭas Servicios TelemƔticos y Sistemas'),
(13215, 10879, 'no_lang_code', 'name', 'Total (Belgium)'),
(13216, 10880, 'no_lang_code', 'name', 'Arup Group (United Kingdom)'),
(13217, 10881, 'no_lang_code', 'name', 'SMR Engineering and Development (Switzerland)'),
(13218, 10882, 'no_lang_code', 'name', 'Oxford Computer Consultants (United Kingdom)'),
(13219, 10883, 'it', 'name', 'InnovaPuglia'),
(13220, 10884, 'no_lang_code', 'name', 'Oxley (United Kingdom)'),
(13221, 10885, 'no_lang_code', 'name', 'Ajat (Finland)'),
(13222, 10886, 'no_lang_code', 'name', 'Toulon Var Technologies (France)'),
(13223, 10887, 'no_lang_code', 'name', 'Arbonaut (Finland)'),
(13224, 10888, 'no_lang_code', 'name', 'Wallwork (United Kingdom)'),
(13225, 10889, 'no_lang_code', 'name', 'Tp21 (Germany)'),
(13226, 10890, 'no_lang_code', 'name', 'Tekever (Portugal)'),
(13227, 10891, 'no_lang_code', 'name', 'E.ON (France)'),
(13228, 10892, 'no_lang_code', 'name', 'Ericsson (Finland)'),
(13229, 10893, 'no_lang_code', 'name', 'Tractebel Engineering (Belgium)'),
(13230, 10894, 'no_lang_code', 'name', 'Teks (France)'),
(13231, 10895, 'no_lang_code', 'name', 'Belden (United Kingdom)'),
(13232, 10896, 'no_lang_code', 'name', 'Trama TecnoAmbiental (Spain)'),
(13233, 10897, 'no_lang_code', 'name', 'Seat (Spain)'),
(13234, 10897, 'es', 'name', 'Sociedad Española de Automóviles de Turismo'),
(13235, 10898, 'no_lang_code', 'name', 'Transferzentrum Mikroelektronik (Germany)'),
(13236, 10899, 'no_lang_code', 'name', 'Packed (Belgium)'),
(13237, 10900, 'no_lang_code', 'name', 'TransFurans Chemicals (Belgium)'),
(13238, 10901, 'en', 'name', 'Telecommunication Systems Research Institute'),
(13239, 10902, 'no_lang_code', 'name', 'TDC (Denmark)'),
(13240, 10903, 'no_lang_code', 'name', 'Transman Consulting for Transport System Management'),
(13241, 10904, 'no_lang_code', 'name', 'Transport & Mobility Leuven (Belgium)'),
(13242, 10905, 'no_lang_code', 'name', 'Transport & Travel Research (United Kingdom)'),
(13243, 10906, 'no_lang_code', 'name', 'TDF (France)'),
(13244, 10907, 'no_lang_code', 'name', 'Avaya (Germany)'),
(13245, 10908, 'no_lang_code', 'name', 'Sociedade Portuguesa de Inovação'),
(13246, 10909, 'no_lang_code', 'name', 'Swarco (Germany)'),
(13247, 10910, 'en', 'name', 'Paint Research Association'),
(13248, 10911, 'no_lang_code', 'name', 'Ferioli & Gianotti (Italy)'),
(13249, 10912, 'no_lang_code', 'name', 'TeliaSonera (Finland)'),
(13250, 10913, 'no_lang_code', 'name', 'Saet (Italy)'),
(13251, 10914, 'no_lang_code', 'name', 'Panasonic (Germany)'),
(13252, 10915, 'it', 'name', 'SocietĆ  Generale d''Informatica'),
(13253, 10915, 'no_lang_code', 'name', 'Sogei (Italy)'),
(13254, 10916, 'it', 'name', 'SocietĆ  Italiana di Fisica'),
(13255, 10917, 'no_lang_code', 'name', 'Pall Corporation (Germany)'),
(13256, 10918, 'no_lang_code', 'name', 'Telekom Austria'),
(13257, 10919, 'no_lang_code', 'name', 'Warrant Hub (Italy)'),
(13258, 10920, 'no_lang_code', 'name', 'Issy Media (France)'),
(13259, 10921, 'no_lang_code', 'name', 'WƤrtsilƤ (Switzerland)'),
(13260, 10922, 'no_lang_code', 'name', 'Warrington Certification (United Kingdom)'),
(13261, 10923, 'no_lang_code', 'name', 'Watchfrog (France)'),
(13262, 10924, 'no_lang_code', 'name', 'Teleport Sachsen-Anhalt'),
(13263, 10925, 'no_lang_code', 'name', 'TriaGnoSys (Germany)'),
(13264, 10926, 'no_lang_code', 'name', 'Water Insight (Netherlands)'),
(13265, 10927, 'no_lang_code', 'name', 'Trialog (France)'),
(13266, 10928, 'fr', 'name', 'SociƩtƩ du Canal de Provence'),
(13267, 10929, 'no_lang_code', 'name', 'Teletel (Greece)'),
(13268, 10930, 'no_lang_code', 'name', 'Gorge Group (France)'),
(13269, 10931, 'no_lang_code', 'name', 'TeliaSonera (Sweden)'),
(13270, 10932, 'no_lang_code', 'name', 'Triphase (Belgium)'),
(13271, 10933, 'no_lang_code', 'name', 'Telmat (France)'),
(13272, 10934, 'no_lang_code', 'name', 'Triplan (Italy)'),
(13273, 10935, 'no_lang_code', 'name', 'Webraska (France)'),
(13274, 10936, 'no_lang_code', 'name', 'Wellness Telecom (Spain)'),
(13275, 10937, 'fr', 'name', 'SociƩtƩ FranƧaise de CƩramique'),
(13276, 10938, 'no_lang_code', 'name', 'Triqua (Netherlands)'),
(13277, 10939, 'en', 'name', 'Wessex Institute of Technology'),
(13278, 10940, 'no_lang_code', 'name', 'Tritecc (Romania)'),
(13279, 10941, 'no_lang_code', 'name', 'Telscom (Switzerland)'),
(13280, 10942, 'no_lang_code', 'name', 'Triumph Adler (Germany)'),
(13281, 10943, 'no_lang_code', 'name', 'Trivector (Sweden)'),
(13282, 10944, 'no_lang_code', 'name', 'Schneider Electric (Spain)'),
(13283, 10945, 'no_lang_code', 'name', 'Sonaca (Belgium)'),
(13284, 10946, 'no_lang_code', 'name', 'Schlumberger (Norway)'),
(13285, 10947, 'en', 'name', 'Sofia Energy Centre'),
(13286, 10948, 'no_lang_code', 'name', 'Technology and Management Services (Switzerland)'),
(13287, 10949, 'no_lang_code', 'name', 'Temis (France)'),
(13288, 10950, 'no_lang_code', 'name', 'Softeam Cadextan'),
(13289, 10951, 'no_lang_code', 'name', 'Softeco Sismat (Italy)'),
(13290, 10952, 'de', 'name', 'WestfƤlische Hochschule'),
(13291, 10953, 'no_lang_code', 'name', 'Software (Germany)'),
(13292, 10954, 'no_lang_code', 'name', 'Software (Spain)'),
(13293, 10955, 'en', 'name', 'Trust IT Services'),
(13294, 10956, 'no_lang_code', 'name', 'Terna (Italy)'),
(13295, 10957, 'no_lang_code', 'name', 'Artelia (France)'),
(13296, 10958, 'en', 'name', 'Vienna Institute for International Economic Studies'),
(13297, 10958, 'de', 'name', 'Wiener Institut für Internationale Wirtschaftsvergleiche'),
(13298, 10959, 'en', 'name', 'Vienna Science and Technology Fund'),
(13299, 10959, 'de', 'name', 'Wiener Wissenschafts Forschungs und Technologiefonds'),
(13300, 10960, 'en', 'name', 'Ministry of State'),
(13301, 10960, 'fr', 'name', 'MinistĆØre d''Ɖtat'),
(13302, 10961, 'no_lang_code', 'name', 'Solaronix (Switzerland)'),
(13303, 10962, 'no_lang_code', 'name', 'TRW Automotive (Germany)'),
(13304, 10963, 'no_lang_code', 'name', 'SolarPrint (Ireland)'),
(13305, 10964, 'no_lang_code', 'name', 'Solartec (Czechia)'),
(13306, 10965, 'no_lang_code', 'name', 'TTI (Spain)'),
(13307, 10966, 'no_lang_code', 'name', 'Solintel (Spain)'),
(13308, 10967, 'no_lang_code', 'name', 'TTTech Computertechnik (Austria)'),
(13309, 10968, 'no_lang_code', 'name', 'TES Electronic Solutions (Germany)'),
(13310, 10969, 'no_lang_code', 'name', 'Testaluna'),
(13311, 10970, 'no_lang_code', 'name', 'Saphyrion (Switzerland)'),
(13312, 10971, 'no_lang_code', 'name', 'Soltech (Belgium)'),
(13313, 10972, 'no_lang_code', 'name', 'TetraPlan'),
(13314, 10973, 'no_lang_code', 'name', 'TecnologĆ­as para la Salud y el Bienestar (Spain)'),
(13315, 10974, 'no_lang_code', 'name', 'Tetronics (United Kingdom)'),
(13316, 10975, 'no_lang_code', 'name', 'Solvay (Germany)'),
(13317, 10976, 'no_lang_code', 'name', 'Tun Abdul Razak Research Centre'),
(13318, 10977, 'no_lang_code', 'name', 'Solvay (Italy)'),
(13319, 10978, 'fr', 'name', 'Ministère de la Santé Publique et Action Sociale'),
(13320, 10979, 'no_lang_code', 'name', 'Solvionic (France)'),
(13321, 10980, 'it', 'name', 'Texclubtec'),
(13322, 10981, 'no_lang_code', 'name', 'Sonatest (United Kingdom)'),
(13323, 10982, 'no_lang_code', 'name', 'Sony (United Kingdom)'),
(13324, 10983, 'no_lang_code', 'name', 'Sony (France)'),
(13325, 10984, 'en', 'name', 'WirelessInfo'),
(13326, 10985, 'no_lang_code', 'name', 'Sony (Germany)'),
(13327, 10986, 'de', 'name', 'Wirtschaftsfƶrderung Region Stuttgart'),
(13328, 10987, 'no_lang_code', 'name', 'WLB Limited (Cyprus)'),
(13329, 10988, 'en', 'name', 'Turing Institute'),
(13330, 10989, 'no_lang_code', 'name', 'Thales (Spain)'),
(13331, 10990, 'no_lang_code', 'name', 'Work Research Centre'),
(13332, 10991, 'no_lang_code', 'name', 'LivaNova (Italy)'),
(13333, 10992, 'en', 'name', 'Turku University of Applied Sciences'),
(13334, 10992, 'fi', 'name', 'Turun ammattikorkeakoulu'),
(13335, 10992, 'sv', 'name', 'ƅbo yrkeshƶgskola'),
(13336, 10993, 'no_lang_code', 'name', 'LivaNova (France)'),
(13337, 10994, 'en', 'name', 'Southampton City Council'),
(13338, 10995, 'no_lang_code', 'name', 'Space Applications Services (Belgium)'),
(13339, 10996, 'en', 'name', 'British Plastics Federation'),
(13340, 10997, 'no_lang_code', 'name', 'Space Hellas (Greece)'),
(13341, 10998, 'no_lang_code', 'name', 'CCS Global Group'),
(13342, 10999, 'de', 'name', 'Institut für Weltraumforschung'),
(13343, 10999, 'en', 'name', 'Space Research Institute'),
(13344, 11000, 'en', 'name', 'Space Research and Technology Institute'),
(13345, 11000, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за космически ŠøŠ·ŃŠ»ŠµŠ“Š²Š°Š½ŠøŃ към'),
(13346, 11001, 'no_lang_code', 'name', 'Figo (Netherlands)'),
(13347, 11002, 'en', 'name', 'World Health Organization - Italy'),
(13348, 11003, 'en', 'name', 'Cyprus Institute'),
(13349, 11004, 'no_lang_code', 'name', 'Wroclaw Research Centre EIT+ (Poland)'),
(13350, 11005, 'no_lang_code', 'name', 'Space (Italy)'),
(13351, 11006, 'no_lang_code', 'name', 'Space Systems Finland (Finland)'),
(13352, 11007, 'en', 'name', 'Danish National Centre for Social Research'),
(13353, 11007, 'da', 'name', 'Det Nationale Forskningscenter for VelfƦrd'),
(13354, 11008, 'en', 'name', 'ACIES Consulting Group'),
(13355, 11009, 'no_lang_code', 'name', 'TE Connectivity (Netherlands)'),
(13356, 11010, 'en', 'name', 'European Association for the Promotion of Cogeneration'),
(13357, 11011, 'no_lang_code', 'name', 'Spacebel (Belgium)'),
(13358, 11012, 'no_lang_code', 'name', 'SpaceTec Partners'),
(13359, 11013, 'no_lang_code', 'name', 'Tyrolit (Austria)'),
(13360, 11014, 'no_lang_code', 'name', 'Sparqle International (Netherlands)'),
(13361, 11015, 'no_lang_code', 'name', 'Specim (Finland)'),
(13362, 11016, 'en', 'name', 'Centre for Social Innovation'),
(13363, 11017, 'no_lang_code', 'name', 'Spinverse (Finland)'),
(13364, 11018, 'no_lang_code', 'name', 'Biocentras (Lithuania)'),
(13365, 11019, 'no_lang_code', 'name', 'Arelis (France)'),
(13366, 11020, 'no_lang_code', 'name', 'Modern e Technologies (Lithuania)'),
(13367, 11021, 'no_lang_code', 'name', 'Würth Elektronik (Germany)'),
(13368, 11022, 'cs', 'name', 'Ministerstvo průmyslu a obchodu České republiky'),
(13369, 11022, 'en', 'name', 'Ministry of Industry and Trade'),
(13370, 11023, 'no_lang_code', 'name', 'Software Research and Development Consulting'),
(13371, 11024, 'en', 'name', 'Wye College'),
(13372, 11025, 'no_lang_code', 'name', 'SSAB (Sweden)'),
(13373, 11026, 'no_lang_code', 'name', 'SSP Consult Beratende Ingenieure (Germany)'),
(13374, 11027, 'no_lang_code', 'name', 'Uljanik (Croatia)'),
(13375, 11028, 'no_lang_code', 'name', 'Xenics (Belgium)'),
(13376, 11029, 'no_lang_code', 'name', 'UmbraGroup (Italy)'),
(13377, 11030, 'no_lang_code', 'name', 'Sensonor (Norway)'),
(13378, 11031, 'en', 'name', 'St Mary''s Hospital'),
(13379, 11032, 'no_lang_code', 'name', 'Xerox (France)'),
(13380, 11033, 'no_lang_code', 'name', 'Israel Electric (Israel)'),
(13381, 11033, 'he', 'name', 'חברת החשמל ×œ×™×©×Ø××œ'),
(13382, 11034, 'en', 'name', 'Independent Centre for Privacy Protection'),
(13383, 11034, 'de', 'name', 'Unabhängige Landeszentrum für Datenschutz Schleswig-Holstein'),
(13384, 11035, 'no_lang_code', 'name', 'Xpand Biotechnology (Netherlands)'),
(13385, 11036, 'no_lang_code', 'name', 'Xsens (Netherlands)'),
(13386, 11037, 'no_lang_code', 'name', 'YellowMap (Germany)'),
(13387, 11038, 'no_lang_code', 'name', 'Youris.com (Belgium)'),
(13388, 11039, 'no_lang_code', 'name', 'Stab Vida (Portugal)'),
(13389, 11040, 'en', 'name', 'Collaborating Centre on Sustainable Consumption and Production'),
(13390, 11041, 'no_lang_code', 'name', 'Saarbrücken Stadtwerke (Germany)'),
(13391, 11042, 'en', 'name', 'Polish National Energy Conservation Agency'),
(13392, 11043, 'no_lang_code', 'name', 'Uni Research (Norway)'),
(13393, 11044, 'no_lang_code', 'name', 'Stadtwerke Straubing (Germany)'),
(13394, 11045, 'no_lang_code', 'name', 'Shadow Robot (United Kingdom)'),
(13395, 11046, 'en', 'name', 'State Hermitage Museum'),
(13396, 11046, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Эрмита́ж'),
(13397, 11047, 'no_lang_code', 'name', 'Stamatopoulos and Associates (Greece)'),
(13398, 11048, 'no_lang_code', 'name', 'Security Technology Competence Centre'),
(13399, 11049, 'no_lang_code', 'name', 'Walt Disney (Switzerland)'),
(13400, 11050, 'en', 'name', 'Young Foundation'),
(13401, 11051, 'no_lang_code', 'name', 'Thermo Technologies (United Kingdom)'),
(13402, 11052, 'en', 'name', 'Thessaloniki Port Authority'),
(13403, 11053, 'no_lang_code', 'name', 'Thetis'),
(13404, 11054, 'en', 'name', 'Ministry of Health'),
(13405, 11054, 'el', 'name', '΄πουργείο ΄γείας'),
(13406, 11055, 'no_lang_code', 'name', 'Zenon (Greece)'),
(13407, 11056, 'en', 'name', 'State Laboratory'),
(13408, 11057, 'de', 'name', 'Zentrum für Foren in der Grafischen Datenverarbeitung'),
(13409, 11058, 'no_lang_code', 'name', 'Thomas Miller (United Kingdom)'),
(13410, 11059, 'no_lang_code', 'name', 'Uninett (Norway)'),
(13411, 11060, 'no_lang_code', 'name', 'Zeus Consulting (Greece)'),
(13412, 11061, 'no_lang_code', 'name', 'ZF Friedrichshafen (Germany)'),
(13413, 11062, 'no_lang_code', 'name', 'Gas Natural Fenosa (Spain)'),
(13414, 11063, 'en', 'name', 'European Broadcasting Union'),
(13415, 11063, 'fr', 'name', 'Union europƩenne de radio-tƩlƩvision'),
(13416, 11064, 'en', 'name', 'Ministry of Transport'),
(13417, 11064, 'nb', 'name', 'Samferdselsdepartementet'),
(13418, 11064, 'no', 'name', 'Samferdsledepartementet'),
(13419, 11065, 'en', 'name', 'Statistics Finland'),
(13420, 11065, 'sv', 'name', 'Statistikcentralen'),
(13421, 11065, 'fi', 'name', 'Tilastokeskus'),
(13422, 11066, 'en', 'name', 'Zhejiang Energy Research Institute'),
(13423, 11066, 'zh', 'name', 'ęµ™ę±Ÿēœčƒ½ęŗē ”ē©¶ę‰€'),
(13424, 11067, 'sv', 'name', 'Finansdepartementet'),
(13425, 11067, 'en', 'name', 'Ministry of Finance'),
(13426, 11068, 'en', 'name', 'General Union of Workers'),
(13427, 11068, 'es', 'name', 'Unión General de Trabajadores'),
(13428, 11069, 'en', 'name', 'International Association of Public Transport'),
(13429, 11070, 'no_lang_code', 'name', 'ZOZ Group (Germany)'),
(13430, 11071, 'en', 'name', 'Brandenburg Economic Development Board'),
(13431, 11071, 'de', 'name', 'ZukunftsAgentur Brandenburg'),
(13432, 11072, 'no_lang_code', 'name', 'Statnett (Norway)'),
(13433, 11073, 'en', 'name', 'Thuringian Institute of Textile and Plastics Research'),
(13434, 11073, 'de', 'name', 'Thüringisches Institut für Textil- und Kunststoff-Forschung Rudolstadt'),
(13435, 11074, 'en', 'name', 'Experimental Station for Glass'),
(13436, 11074, 'it', 'name', 'Stazione Sperimentale del Vetro'),
(13437, 11075, 'en', 'name', 'Experimental Station for the Food Preserving Industry'),
(13438, 11075, 'it', 'name', 'Stazione Sperimentale per l’Industria delle Conserve Alimentari'),
(13439, 11076, 'no_lang_code', 'name', 'TIE Kinetix (Germany)'),
(13440, 11077, 'en', 'name', 'Leather and Tanning Materials Experimental Station'),
(13441, 11077, 'it', 'name', 'Stazione Sperimentale per l''Industria delle Pelli e delle Materie Concianti'),
(13442, 11078, 'en', 'name', 'Italian Union of the Blind and Partially Sighted'),
(13443, 11078, 'it', 'name', 'Unione Italiana dei Ciechi e degli Ipovedenti'),
(13444, 11079, 'en', 'name', 'Ural Branch of the Russian Academy of Sciences'),
(13445, 11079, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŠø Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(13446, 11080, 'it', 'name', 'Unione Nazionale Industria Conciaria'),
(13447, 11081, 'it', 'name', 'Unioncamere Veneto'),
(13448, 11082, 'no_lang_code', 'name', 'Cofely (Switzerland)'),
(13449, 11083, 'no_lang_code', 'name', 'Vodafone (Greece)'),
(13450, 11084, 'en', 'name', 'B.I. Stepanov Institute of Physics'),
(13451, 11084, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ фізікі Ń–Š¼Ń Š‘.І. Š”Ń†ŃŠæŠ°Š½Š°Š²Š°'),
(13452, 11085, 'en', 'name', 'Uniresearch'),
(13453, 11086, 'no_lang_code', 'name', 'Uniscan Instruments (United Kingdom)'),
(13454, 11087, 'no_lang_code', 'name', 'Sopra (France)'),
(13455, 11088, 'en', 'name', 'United Institute of Informatics Problems'),
(13456, 11089, 'no_lang_code', 'name', 'SURFsara (Netherlands)'),
(13457, 11089, 'nl', 'name', 'Stichting Academisch Rekencentrum Amsterdam'),
(13458, 11090, 'no_lang_code', 'name', 'Vodera (United Kingdom)'),
(13459, 11091, 'en', 'name', 'Amsterdam Economic Board'),
(13460, 11092, 'no_lang_code', 'name', 'United Monolithic Semiconductors (Germany)'),
(13461, 11093, 'no_lang_code', 'name', 'United Monolithic Semiconductor (France)'),
(13462, 11094, 'no_lang_code', 'name', 'VSN International (United Kingdom)'),
(13463, 11095, 'en', 'name', 'United Nations Industrial Development Organization'),
(13464, 11096, 'no_lang_code', 'name', 'Vuje (Slovakia)'),
(13465, 11097, 'en', 'name', 'Soil Science and Conservation Research Institute'),
(13466, 11097, 'sk', 'name', 'Výskumný Ústav PÓdoznalectva a Ochrany PÓdy'),
(13467, 11098, 'no_lang_code', 'name', 'Syndesis (Greece)'),
(13468, 11099, 'en', 'name', 'United Nations Interregional Crime and Justice Research Institute'),
(13469, 11100, 'en', 'name', 'European Federation of Food Science and Technology'),
(13470, 11101, 'no_lang_code', 'name', 'United Technologies Research Center'),
(13471, 11102, 'en', 'name', 'European Journalism Centre'),
(13472, 11103, 'no_lang_code', 'name', 'Stichting Hout Research (Netherlands)'),
(13473, 11104, 'no_lang_code', 'name', 'Norsk Hydro (Germany)'),
(13474, 11105, 'en', 'name', 'Austrian Cooperative Research'),
(13475, 11105, 'de', 'name', 'Vereinigung der Kooperativen Forschungseinrichtungen der ƶsterreichischen Wirtschaft'),
(13476, 11106, 'no_lang_code', 'name', 'HiTec Marketing'),
(13477, 11107, 'no_lang_code', 'name', 'Alten (France)'),
(13478, 11108, 'nl', 'name', 'Maastro Clinic'),
(13479, 11109, 'en', 'name', 'Latvian State Institute of Wood Chemistry'),
(13480, 11110, 'no_lang_code', 'name', 'SocietĆ  Esercizi Aeroportuali (Italy)'),
(13481, 11111, 'no_lang_code', 'name', 'Vergnet (France)'),
(13482, 11112, 'no_lang_code', 'name', 'Vermicon (Germany)'),
(13483, 11113, 'no_lang_code', 'name', 'Vermon (France)'),
(13484, 11114, 'no_lang_code', 'name', 'Vertech Group'),
(13485, 11115, 'no_lang_code', 'name', 'Vertilas (Germany)'),
(13486, 11116, 'en', 'name', 'VGB PowerTech'),
(13487, 11117, 'no_lang_code', 'name', 'Va-Q-tec (Germany)'),
(13488, 11118, 'no_lang_code', 'name', 'Vichem Chemie (Hungary)'),
(13489, 11119, 'no_lang_code', 'name', 'Vaillant (Germany)'),
(13490, 11120, 'no_lang_code', 'name', 'Knowledge Centre for Agriculture'),
(13491, 11121, 'no_lang_code', 'name', 'Valeo (France)'),
(13492, 11122, 'no_lang_code', 'name', 'Honeywell (United Kingdom)'),
(13493, 11123, 'no_lang_code', 'name', 'VirTech (Bulgaria)'),
(13494, 11124, 'no_lang_code', 'name', 'Upper Austrian Research'),
(13495, 11125, 'no_lang_code', 'name', 'USE2ACES (Netherlands)'),
(13496, 11126, 'no_lang_code', 'name', 'User Interface Design (Germany)'),
(13497, 11127, 'no_lang_code', 'name', 'Visual Components (Finland)'),
(13498, 11128, 'no_lang_code', 'name', 'Vitrociset (Italy)'),
(13499, 11129, 'no_lang_code', 'name', 'Spectrum Brands (Germany)'),
(13500, 11130, 'en', 'name', 'Water Resources Research Centre'),
(13501, 11131, 'no_lang_code', 'name', 'Visual Tools (Spain)'),
(13502, 11132, 'no_lang_code', 'name', 'Volkswagen Group (Czechia)'),
(13503, 11133, 'no_lang_code', 'name', 'Vienna Consulting Engineers (Austria)'),
(13504, 11134, 'en', 'name', 'Association of German Engineers'),
(13505, 11134, 'de', 'name', 'Verein Deutscher Ingenieure'),
(13506, 11135, 'no_lang_code', 'name', 'BP (Germany)'),
(13507, 11136, 'no_lang_code', 'name', 'Velti (Greece)'),
(13508, 11137, 'no_lang_code', 'name', 'Veneto Nanotech (Italy)'),
(13509, 11138, 'no_lang_code', 'name', 'Venezia Tecnologie (Italy)'),
(13510, 11139, 'no_lang_code', 'name', 'Veolia (France)'),
(13511, 11140, 'no_lang_code', 'name', 'AFRY (Austria)'),
(13512, 11141, 'de', 'name', 'Deutsches Forschungsnetz'),
(13513, 11141, 'en', 'name', 'German Research Network'),
(13514, 11142, 'en', 'name', 'Florida Certified Organic Growers'),
(13515, 11143, 'en', 'name', 'Florida Institute for Human and Machine Cognition'),
(13516, 11144, 'no_lang_code', 'name', 'Just Food (United States)'),
(13517, 11145, 'no_lang_code', 'name', '3C Cattle Feeders (United States)'),
(13518, 11146, 'en', 'name', 'Florida West Coast Resource Conservation and Development'),
(13519, 11147, 'en', 'name', 'Central Wisconsin Community Action Council'),
(13520, 11148, 'no_lang_code', 'name', '4Cs Breeding Technologies (United States)'),
(13521, 11149, 'no_lang_code', 'name', 'Ocean Era (United States)'),
(13522, 11150, 'en', 'name', 'Fondy Food Center'),
(13523, 11151, 'en', 'name', 'Kansas Bioscience Authority'),
(13524, 11152, 'no_lang_code', 'name', 'Orgelbau Mühleisen (Germany)'),
(13525, 11153, 'en', 'name', 'SLO Food Bank'),
(13526, 11154, 'no_lang_code', 'name', 'Kansas Environmental Management Associates (United States)'),
(13527, 11155, 'no_lang_code', 'name', 'Acclima (United States)'),
(13528, 11156, 'en', 'name', 'Food Bank of Delaware'),
(13529, 11157, 'en', 'name', 'Food Bank of North Alabama'),
(13530, 11158, 'en', 'name', 'Adelante Mujeres'),
(13531, 11159, 'en', 'name', 'Kennebec Valley Community College'),
(13532, 11160, 'en', 'name', 'Rhode Island Department of Administration'),
(13533, 11161, 'en', 'name', 'Challenger Center for Space Science Education'),
(13534, 11162, 'no_lang_code', 'name', 'KickinNutrition.TV (United States)'),
(13535, 11163, 'no_lang_code', 'name', 'Kiksapa Consulting (United States)'),
(13536, 11164, 'no_lang_code', 'name', 'Adnet Systems (United States)'),
(13537, 11165, 'no_lang_code', 'name', 'Advanced Biological Marketing (United States)'),
(13538, 11166, 'en', 'name', 'Food System Economic Partnership'),
(13539, 11167, 'en', 'name', 'KISS Institute for Practical Robotics'),
(13540, 11168, 'en', 'name', 'The Food Trust'),
(13541, 11169, 'en', 'name', 'Charles County Public Schools'),
(13542, 11170, 'no_lang_code', 'name', 'AML Superconductivity and Magnetics (United States)'),
(13543, 11171, 'no_lang_code', 'name', 'Kōkua Kalihi Valley'),
(13544, 11172, 'no_lang_code', 'name', 'Forest Concepts (United States)'),
(13545, 11173, 'en', 'name', 'Pennsylvania Department of Education'),
(13546, 11174, 'en', 'name', 'Afterschool Alliance'),
(13547, 11175, 'en', 'name', 'Agricultural Information Management'),
(13548, 11176, 'en', 'name', 'Chicago Board of Education'),
(13549, 11177, 'no_lang_code', 'name', 'Agdia (United States)'),
(13550, 11178, 'en', 'name', 'Krell Institute'),
(13551, 11179, 'en', 'name', 'Foundation for Community Empowerment'),
(13552, 11180, 'no_lang_code', 'name', 'Sciessent (United States)'),
(13553, 11181, 'no_lang_code', 'name', 'KromaTiD (United States)'),
(13554, 11182, 'no_lang_code', 'name', 'Agri Processing Services (United States)'),
(13555, 11183, 'no_lang_code', 'name', 'Kuehnle AgroSystems (United States)'),
(13556, 11184, 'en', 'name', 'Four Directions Development Corporation'),
(13557, 11185, 'en', 'name', 'The Children''s Museum'),
(13558, 11186, 'no_lang_code', 'name', 'Logistics Management Institute (United States)'),
(13559, 11187, 'en', 'name', 'Agri Analysis'),
(13560, 11188, 'en', 'name', 'Franklin County Community Development Corporation'),
(13561, 11189, 'en', 'name', 'Children''s Museum of Indianapolis'),
(13562, 11190, 'en', 'name', 'Los Angeles Neighborhood Land Trust'),
(13563, 11191, 'en', 'name', 'La Semilla Food Center'),
(13564, 11192, 'en', 'name', 'Lac Courte Oreilles Ojibwa Community College'),
(13565, 11193, 'en', 'name', 'Agriculture and Land Based Training Association'),
(13566, 11194, 'en', 'name', 'Rend Lake College'),
(13567, 11195, 'en', 'name', 'Fredericksburg Independent School District'),
(13568, 11196, 'en', 'name', 'Tennessee Department of Agriculture'),
(13569, 11197, 'no_lang_code', 'name', 'Agrivida (United States)'),
(13570, 11198, 'en', 'name', 'Land For Good'),
(13571, 11199, 'no_lang_code', 'name', 'AgSquared (United States)'),
(13572, 11200, 'no_lang_code', 'name', 'Freedom Photonics (United States)'),
(13573, 11201, 'en', 'name', 'Fresno Metro Ministry'),
(13574, 11202, 'en', 'name', 'Friends of North Carolina Public Libraries'),
(13575, 11203, 'no_lang_code', 'name', 'Airstreams Renewables (United States)'),
(13576, 11204, 'en', 'name', 'Chugach School District'),
(13577, 11205, 'no_lang_code', 'name', 'Kyocera (Germany)'),
(13578, 11206, 'en', 'name', 'Griffith Observatory'),
(13579, 11207, 'en', 'name', 'Land Stewardship Project'),
(13580, 11208, 'no_lang_code', 'name', 'Chugachmiut (United States)'),
(13581, 11209, 'no_lang_code', 'name', 'United Technologies Corporation (Poland)'),
(13582, 11210, 'no_lang_code', 'name', 'Cibus (United States)'),
(13583, 11211, 'en', 'name', 'Cincinnati Observatory'),
(13584, 11212, 'en', 'name', 'National Future Farmers of America Organization'),
(13585, 11213, 'en', 'name', 'Alameda County Office of Education'),
(13586, 11214, 'es', 'name', 'Colegio Comunitario de Laredo'),
(13587, 11214, 'en', 'name', 'Laredo Community College'),
(13588, 11215, 'en', 'name', 'Institute of Flight'),
(13589, 11216, 'en', 'name', 'Challenger Learning Center of Alaska'),
(13590, 11217, 'en', 'name', 'Larta Institute'),
(13591, 11218, 'no_lang_code', 'name', 'FutureSoft (United States)'),
(13592, 11219, 'no_lang_code', 'name', 'Algaen (United States)'),
(13593, 11220, 'en', 'name', 'Las Animas Helping Hands'),
(13594, 11221, 'no_lang_code', 'name', 'Teulades i FaƧanes Multifuncionals (Spain)'),
(13595, 11222, 'en', 'name', 'Allan Hancock College'),
(13596, 11223, 'en', 'name', 'City Harvest'),
(13597, 11224, 'en', 'name', 'Latino Economic Development Center'),
(13598, 11225, 'en', 'name', 'Alliance for Community Trees'),
(13599, 11226, 'en', 'name', 'City School District of New Rochelle'),
(13600, 11227, 'no_lang_code', 'name', 'All Things Bugs (United States)'),
(13601, 11228, 'no_lang_code', 'name', 'Alluvium Biosciences (United States)'),
(13602, 11229, 'no_lang_code', 'name', 'GDA (United States)'),
(13603, 11230, 'no_lang_code', 'name', 'Greenwood Clean Energy (United States)'),
(13604, 11231, 'no_lang_code', 'name', 'Alpha Scents (United States)'),
(13605, 11232, 'no_lang_code', 'name', 'Altaeros (United States)'),
(13606, 11233, 'en', 'name', 'American Association for Aerosol Research'),
(13607, 11234, 'no_lang_code', 'name', 'Clean Plus (United States)'),
(13608, 11235, 'en', 'name', 'Clear Creek Independent School District'),
(13609, 11236, 'en', 'name', 'Cleveland County Schools'),
(13610, 11237, 'en', 'name', 'Leech Lake Tribal College'),
(13611, 11238, 'en', 'name', 'American College of Sports Medicine'),
(13612, 11239, 'en', 'name', 'Zenger Farm'),
(13613, 11240, 'en', 'name', 'CNL World'),
(13614, 11241, 'en', 'name', 'American Forage and Grassland Council'),
(13615, 11242, 'en', 'name', 'Legal Aid of Nebraska'),
(13616, 11243, 'en', 'name', 'American Friends Service Committee'),
(13617, 11244, 'no_lang_code', 'name', 'Cognisense Labs (United States)'),
(13618, 11245, 'en', 'name', 'American Historical Association'),
(13619, 11246, 'en', 'name', 'Lincoln Parish School Board'),
(13620, 11247, 'no_lang_code', 'name', 'Coherent Logix (United States)'),
(13621, 11248, 'en', 'name', 'American Phytopathological Society'),
(13622, 11249, 'en', 'name', 'Colby Community College'),
(13623, 11250, 'no_lang_code', 'name', 'Lindgren Pitman (United States)'),
(13624, 11251, 'en', 'name', 'Gardens at Post Hill'),
(13625, 11252, 'en', 'name', 'American Society for Gravitational and Space Research'),
(13626, 11253, 'no_lang_code', 'name', 'Solar Stream (United States)'),
(13627, 11254, 'en', 'name', 'American Society for Reproductive Immunology'),
(13628, 11255, 'en', 'name', 'American Society of Animal Science'),
(13629, 11256, 'en', 'name', 'West Virginia Department of Agriculture'),
(13630, 11257, 'en', 'name', 'Local Agricultural Community Exchange'),
(13631, 11258, 'no_lang_code', 'name', 'College of Micronesia-FSM'),
(13632, 11259, 'no_lang_code', 'name', 'Anacapa Sciences (United States)'),
(13633, 11260, 'no_lang_code', 'name', 'Analytical Imaging and Geophysics (United States)'),
(13634, 11261, 'en', 'name', 'GardenShare'),
(13635, 11262, 'en', 'name', 'Angelic Organics Learning Center'),
(13636, 11263, 'no_lang_code', 'name', 'Long Branch Company (United States)'),
(13637, 11264, 'en', 'name', 'College of the Desert'),
(13638, 11265, 'en', 'name', 'Lorain County Joint Vocational School'),
(13639, 11266, 'en', 'name', 'Anne Arundel Community College'),
(13640, 11267, 'en', 'name', 'Anne Arundel County Public Schools'),
(13641, 11268, 'en', 'name', 'Colorado Cattlemen''s Association'),
(13642, 11269, 'no_lang_code', 'name', 'NorthStar Cooperative (United States)'),
(13643, 11270, 'en', 'name', 'Louisiana Art & Science Museum'),
(13644, 11271, 'en', 'name', 'Colorado Consortium for Earth and Space Science Education'),
(13645, 11272, 'en', 'name', 'Georgia Organics'),
(13646, 11273, 'en', 'name', 'Appalachian Native Plants'),
(13647, 11274, 'en', 'name', 'The Lower Eastside Girls Club'),
(13648, 11275, 'en', 'name', 'Appalachian Sustainable Agriculture Project'),
(13649, 11276, 'no_lang_code', 'name', 'GeoVantage (United States)'),
(13650, 11277, 'no_lang_code', 'name', 'Gevo (United States)'),
(13651, 11278, 'en', 'name', 'Colorado Foundation for Agriculture'),
(13652, 11279, 'en', 'name', 'Girl Scouts of the USA'),
(13653, 11280, 'no_lang_code', 'name', 'Applechem (United States)'),
(13654, 11281, 'en', 'name', 'Girlstart'),
(13655, 11282, 'no_lang_code', 'name', 'Applied Biotechnology Institute'),
(13656, 11283, 'no_lang_code', 'name', 'Applied Colloids (United States)'),
(13657, 11284, 'en', 'name', 'Columbus City Schools'),
(13658, 11285, 'no_lang_code', 'name', 'Applied Food Technologies (United States)'),
(13659, 11286, 'no_lang_code', 'name', 'Lygos (United States)'),
(13660, 11287, 'no_lang_code', 'name', 'Applied Nanotech (United States)'),
(13661, 11288, 'no_lang_code', 'name', 'Applied GeoSolutions (United States)'),
(13662, 11289, 'en', 'name', 'Common Good City Farm'),
(13663, 11290, 'en', 'name', 'The Common Market'),
(13664, 11291, 'en', 'name', 'Rowan College at Gloucester County'),
(13665, 11292, 'no_lang_code', 'name', 'MSNW (United States)'),
(13666, 11293, 'en', 'name', 'Glynwood'),
(13667, 11294, 'en', 'name', 'Communicating for Agriculture Education Programs'),
(13668, 11295, 'en', 'name', 'Good Shepherd Food Bank'),
(13669, 11296, 'no_lang_code', 'name', 'Aquaculture Systems Technologies (United States)'),
(13670, 11297, 'en', 'name', 'Gorge Grown Food Network'),
(13671, 11298, 'en', 'name', 'Community Action Duluth'),
(13672, 11299, 'en', 'name', 'Aquarium of the Pacific'),
(13673, 11300, 'no_lang_code', 'name', 'GrassRoots Biotechnology (United States)'),
(13674, 11301, 'en', 'name', 'Community Assistance Network'),
(13675, 11302, 'en', 'name', 'Maine Farmland Trust'),
(13676, 11303, 'en', 'name', 'Grassroots Gardens WNY'),
(13677, 11304, 'no_lang_code', 'name', 'Arcadia Biosciences (United States)'),
(13678, 11305, 'en', 'name', 'Maine Organic Farmers and Gardeners Association'),
(13679, 11306, 'en', 'name', 'Great Lakes Science Center'),
(13680, 11307, 'no_lang_code', 'name', 'Area I (United States)'),
(13681, 11308, 'en', 'name', 'Great Northern Services'),
(13682, 11309, 'en', 'name', 'Community Farm Alliance'),
(13683, 11310, 'no_lang_code', 'name', 'Aries Scientific (United States)'),
(13684, 11311, 'en', 'name', 'Arizona Sonora Desert Museum'),
(13685, 11312, 'en', 'name', 'Greater Lansing Food Bank'),
(13686, 11313, 'en', 'name', 'Community Food Bank'),
(13687, 11314, 'en', 'name', 'Arkansas Land and Farm Development Corporation'),
(13688, 11315, 'en', 'name', 'Community Food Security Coalition'),
(13689, 11316, 'en', 'name', 'CenterState Chamber of Commerce'),
(13690, 11317, 'en', 'name', 'Community GroundWorks'),
(13691, 11318, 'en', 'name', 'Community Involved in Sustaining Agriculture'),
(13692, 11319, 'en', 'name', 'Community Partners'),
(13693, 11320, 'en', 'name', 'Art Science Research Laboratory'),
(13694, 11321, 'no_lang_code', 'name', 'Artemis Innovation (United States)'),
(13695, 11322, 'no_lang_code', 'name', 'My25'),
(13696, 11323, 'en', 'name', 'Community Services Unlimited'),
(13697, 11324, 'no_lang_code', 'name', 'Mainstream Engineering Corporation (United States)'),
(13698, 11325, 'en', 'name', 'Community Teamwork'),
(13699, 11326, 'no_lang_code', 'name', 'Makaha Studios (United States)'),
(13700, 11327, 'no_lang_code', 'name', 'Green Heron Tools (United States)'),
(13701, 11328, 'en', 'name', 'Mandela Partners'),
(13702, 11329, 'en', 'name', 'Danube Delta National Institute for Research and Development'),
(13703, 11329, 'ro', 'name', 'Institutul National de Cercetare Dezvoltare Delta Dunarii'),
(13704, 11330, 'no_lang_code', 'name', 'AquaGreen (United States)'),
(13705, 11331, 'no_lang_code', 'name', 'Arvens Technology (United States)'),
(13706, 11332, 'no_lang_code', 'name', 'Ashima Group (United States)'),
(13707, 11333, 'en', 'name', 'Manpower Demonstration Research Corporation'),
(13708, 11334, 'en', 'name', 'The Green Scheme'),
(13709, 11335, 'no_lang_code', 'name', 'Composite Technology Development (United States)'),
(13710, 11336, 'no_lang_code', 'name', 'Assured Bio (United States)'),
(13711, 11337, 'no_lang_code', 'name', 'Astrobotic (United States)'),
(13712, 11338, 'no_lang_code', 'name', 'GreenWood Resources (United States)'),
(13713, 11339, 'en', 'name', 'Astronomical Research Institute'),
(13714, 11340, 'en', 'name', 'Groundwork Hudson Valley'),
(13715, 11341, 'en', 'name', 'Group for Organizational Effectiveness'),
(13716, 11342, 'en', 'name', 'Growing Power'),
(13717, 11343, 'en', 'name', 'Connecticut Center for Advanced Technology'),
(13718, 11344, 'en', 'name', 'Athens Land Trust'),
(13719, 11345, 'en', 'name', 'Harford Research Institute'),
(13720, 11346, 'en', 'name', 'Marion Local Schools'),
(13721, 11347, 'en', 'name', 'Conrad Foundation'),
(13722, 11348, 'no_lang_code', 'name', 'Harmon Brook Farm (United States)'),
(13723, 11349, 'en', 'name', 'Mariposa Community Health Center'),
(13724, 11350, 'en', 'name', 'Harris County Department of Education'),
(13725, 11351, 'no_lang_code', 'name', 'Azavea (United States)'),
(13726, 11352, 'no_lang_code', 'name', 'Marrone Bio Innovations (United States)'),
(13727, 11353, 'no_lang_code', 'name', 'Azyp (United States)'),
(13728, 11354, 'en', 'name', 'Mars Society'),
(13729, 11355, 'en', 'name', 'Babble Tree'),
(13730, 11356, 'en', 'name', 'Maryland Agricultural Education Foundation'),
(13731, 11357, 'en', 'name', 'Maryland State Department of Education'),
(13732, 11358, 'no_lang_code', 'name', 'Cooper Tire & Rubber Company (United States)'),
(13733, 11359, 'en', 'name', 'Matson & Associates'),
(13734, 11360, 'no_lang_code', 'name', 'Ball (United States)'),
(13735, 11361, 'en', 'name', 'Baltimore City Public Schools'),
(13736, 11362, 'en', 'name', 'Maui Economic Development Board'),
(13737, 11363, 'no_lang_code', 'name', 'Mayaterials (United States)'),
(13738, 11364, 'en', 'name', 'McWane Science Center'),
(13739, 11365, 'en', 'name', 'McIntosh Sustainable Environment and Economic Development'),
(13740, 11366, 'en', 'name', 'Bay Area Houston Economic Partnership'),
(13741, 11367, 'en', 'name', 'Cornerstone Evaluation Associates'),
(13742, 11368, 'en', 'name', 'Bay Mills Community College'),
(13743, 11369, 'no_lang_code', 'name', 'MS Biotec (United States)'),
(13744, 11370, 'en', 'name', 'Corporation for Findlay Market'),
(13745, 11371, 'en', 'name', 'Corvallis Environmental Center'),
(13746, 11372, 'en', 'name', 'Council for Agricultural Science and Technology'),
(13747, 11373, 'en', 'name', 'Council on Food, Agricultural and Resource Economics'),
(13748, 11374, 'en', 'name', 'Hartnell College'),
(13749, 11375, 'no_lang_code', 'name', 'Bee Alert Technology (United States)'),
(13750, 11376, 'no_lang_code', 'name', 'Mercy Corps Northwest (United States)'),
(13751, 11377, 'en', 'name', 'Hawkeye Community College'),
(13752, 11378, 'no_lang_code', 'name', 'Mesaphotonics (United States)'),
(13753, 11379, 'en', 'name', 'GrowNYC'),
(13754, 11380, 'no_lang_code', 'name', 'Crile Carvey Consulting'),
(13755, 11381, 'no_lang_code', 'name', 'Cronus (United States)'),
(13756, 11382, 'en', 'name', 'Bellingham Technical College'),
(13757, 11383, 'no_lang_code', 'name', 'Yield10 Bioscience (United States)'),
(13758, 11384, 'en', 'name', 'Health Care Without Harm'),
(13759, 11385, 'en', 'name', 'Health Effects Institute'),
(13760, 11386, 'no_lang_code', 'name', 'Biogas and Electric (United States)'),
(13761, 11387, 'no_lang_code', 'name', 'Metrocrops'),
(13762, 11388, 'en', 'name', 'BioLink Life Sciences'),
(13763, 11389, 'en', 'name', 'Health Trust'),
(13764, 11390, 'en', 'name', 'Michigan Food & Farming Systems'),
(13765, 11391, 'en', 'name', 'Navajo Technical University'),
(13766, 11392, 'no_lang_code', 'name', 'BioPlastic Polymers and Composites (United States)'),
(13767, 11393, 'en', 'name', 'Michigan Science Center'),
(13768, 11394, 'en', 'name', 'Healthy Communities Coalition'),
(13769, 11395, 'no_lang_code', 'name', 'NewLink Genetics (United States)'),
(13770, 11396, 'no_lang_code', 'name', 'Cryogenic Industries (United States)'),
(13771, 11397, 'no_lang_code', 'name', 'BioPulping International (United States)'),
(13772, 11398, 'no_lang_code', 'name', 'Micronic Technologies (United States)'),
(13773, 11399, 'no_lang_code', 'name', 'Biospherical Instruments (United States)'),
(13774, 11400, 'no_lang_code', 'name', 'Microvi Biotechnologies (United States)'),
(13775, 11401, 'no_lang_code', 'name', 'Heliophysics'),
(13776, 11402, 'no_lang_code', 'name', 'BioTracking (United States)'),
(13777, 11403, 'no_lang_code', 'name', 'Heinz Optical Engineering (United States)'),
(13778, 11404, 'en', 'name', 'Midwest Organic & Sustainable Education Service'),
(13779, 11405, 'no_lang_code', 'name', 'Biotronics (United States)'),
(13780, 11406, 'no_lang_code', 'name', 'BioWorks (United States)'),
(13781, 11407, 'en', 'name', 'Heritage Ranch'),
(13782, 11408, 'en', 'name', 'Mid-Atlantic Broadband Cooperative'),
(13783, 11409, 'en', 'name', 'Hiller Aviation Museum'),
(13784, 11410, 'en', 'name', 'Bittersweet Farms'),
(13785, 11411, 'en', 'name', 'Black Oaks Center'),
(13786, 11412, 'en', 'name', 'The Blue Hill Meteorological Observatory'),
(13787, 11413, 'en', 'name', 'Blue Marble Space'),
(13788, 11414, 'en', 'name', 'Hispanic Scholarship Fund'),
(13789, 11415, 'en', 'name', 'Milwaukee Teacher Education Center'),
(13790, 11416, 'en', 'name', 'Cultivating Community'),
(13791, 11417, 'no_lang_code', 'name', 'Blue Sun (United States)'),
(13792, 11418, 'en', 'name', 'William H Miner Agricultural Research Institute'),
(13793, 11419, 'en', 'name', 'Mobile County Public Schools'),
(13794, 11420, 'no_lang_code', 'name', 'HJ Science and Technology (United States)'),
(13795, 11421, 'en', 'name', 'Cultural Site Research and Management'),
(13796, 11422, 'en', 'name', 'Minnesota Agriculture in the Classroom Foundation'),
(13797, 11423, 'no_lang_code', 'name', 'HM3 Energy'),
(13798, 11424, 'en', 'name', 'Hmong American Partnership'),
(13799, 11425, 'en', 'name', 'Holistic Management International'),
(13800, 11426, 'no_lang_code', 'name', 'UtvecklingsbyrƄn'),
(13801, 11427, 'en', 'name', 'Homer Soil and Water Conservation District'),
(13802, 11428, 'en', 'name', 'Burlington School District'),
(13803, 11429, 'no_lang_code', 'name', 'Busek (United States)'),
(13804, 11430, 'en', 'name', 'Maryland Department of Commerce'),
(13805, 11431, 'en', 'name', 'Hawaii Department of Business Economic Development and Tourism'),
(13806, 11432, 'no_lang_code', 'name', 'Custom Data (United States)'),
(13807, 11433, 'en', 'name', 'Horry County Schools'),
(13808, 11434, 'no_lang_code', 'name', 'Cycloptics Technologies (United States)'),
(13809, 11435, 'en', 'name', 'Cal Poly Corporation'),
(13810, 11436, 'en', 'name', 'Cypress Hills Local Development Corporation'),
(13811, 11437, 'en', 'name', 'Calallen Independent School District'),
(13812, 11438, 'en', 'name', 'Calhoun Conservation District'),
(13813, 11439, 'no_lang_code', 'name', 'Hubble Telemedical (United States)'),
(13814, 11440, 'en', 'name', 'California FarmLink'),
(13815, 11441, 'no_lang_code', 'name', 'Hudson Simulation Service'),
(13816, 11442, 'en', 'name', 'California Foundation for Agriculture in the Classroom'),
(13817, 11443, 'en', 'name', 'California Institute For Rural Studies'),
(13818, 11444, 'no_lang_code', 'name', 'Mississippi Delta Council for Farm Worker Opportunities'),
(13819, 11445, 'no_lang_code', 'name', 'DairySight (United States)'),
(13820, 11446, 'no_lang_code', 'name', 'Dakota Rural Action (United States)'),
(13821, 11447, 'en', 'name', 'California Teaching Fellows Foundation'),
(13822, 11448, 'en', 'name', 'Missouri Farm Bureau'),
(13823, 11449, 'no_lang_code', 'name', 'HydroBio (United States)'),
(13824, 11450, 'en', 'name', 'Camden Children''s Garden'),
(13825, 11451, 'no_lang_code', 'name', 'Datastar (United States)'),
(13826, 11452, 'no_lang_code', 'name', 'Modern Meadow (United States)'),
(13827, 11453, 'no_lang_code', 'name', 'Capstan (United States)'),
(13828, 11454, 'no_lang_code', 'name', 'HyPerspectives (United States)'),
(13829, 11455, 'en', 'name', 'Boonshoft Museum of Discovery'),
(13830, 11456, 'no_lang_code', 'name', 'Montana Gluten Free (United States)'),
(13831, 11457, 'no_lang_code', 'name', 'I2 air fluid innovation (United States)'),
(13832, 11458, 'en', 'name', 'DeKalb County School District'),
(13833, 11459, 'en', 'name', 'Delaware AeroSpace Education Foundation'),
(13834, 11460, 'en', 'name', 'Denver Urban Gardens'),
(13835, 11461, 'en', 'name', 'IḷisaĔvik College'),
(13836, 11462, 'en', 'name', 'Carmel Research Center'),
(13837, 11463, 'en', 'name', 'Illinois Farm Bureau'),
(13838, 11464, 'no_lang_code', 'name', 'Mountain Meadow Wool Mill (United States)'),
(13839, 11465, 'en', 'name', 'Illinois Stewardship Alliance'),
(13840, 11466, 'en', 'name', 'Jannus'),
(13841, 11467, 'no_lang_code', 'name', 'Sally Ride Science (United States)'),
(13842, 11468, 'no_lang_code', 'name', 'Devicix (United States)'),
(13843, 11469, 'no_lang_code', 'name', 'Multi-Duti Manufacturing (United States)'),
(13844, 11470, 'no_lang_code', 'name', 'Diligent Consulting (United States)'),
(13845, 11471, 'no_lang_code', 'name', 'Multiform Harvest (United States)'),
(13846, 11472, 'en', 'name', 'Indian Health Care Resource Center of Tulsa'),
(13847, 11473, 'en', 'name', 'Indian Nations Conservation Alliance'),
(13848, 11474, 'en', 'name', 'Catholic Charities of Northeast Kansas');
INSERT INTO `ror_settings` VALUES
(13849, 11475, 'en', 'name', 'Discovery Center Museum'),
(13850, 11476, 'en', 'name', 'Indiana Association of United Ways'),
(13851, 11477, 'no_lang_code', 'name', 'Cellana (United States)'),
(13852, 11478, 'en', 'name', 'Discovery Cube Orange County'),
(13853, 11479, 'en', 'name', 'Center for Dairy Excellence'),
(13854, 11480, 'en', 'name', 'Museum of Aviation'),
(13855, 11481, 'en', 'name', 'Center for Rural Affairs'),
(13856, 11482, 'en', 'name', 'Center on Race, Poverty and the Environment'),
(13857, 11483, 'en', 'name', 'Central Coast Resource Conservation and Development'),
(13858, 11484, 'en', 'name', 'College of Central Florida'),
(13859, 11485, 'en', 'name', 'Museum of Science and Industry'),
(13860, 11486, 'en', 'name', 'Indigenous Education Institute'),
(13861, 11487, 'no_lang_code', 'name', 'Industry Vision Automation (United States)'),
(13862, 11488, 'no_lang_code', 'name', 'Brandywine Photonics (United States)'),
(13863, 11489, 'en', 'name', 'CareerSource Brevard'),
(13864, 11490, 'en', 'name', 'Mvskoke Food Sovereignty Initiative'),
(13865, 11491, 'no_lang_code', 'name', 'Mycosynthetix (United States)'),
(13866, 11492, 'no_lang_code', 'name', 'Infinite Enzymes (United States)'),
(13867, 11493, 'no_lang_code', 'name', 'Domtar (United States)'),
(13868, 11494, 'en', 'name', 'Dorothy Jemison Foundation for Excellence'),
(13869, 11495, 'no_lang_code', 'name', 'Downstream Strategies (United States)'),
(13870, 11496, 'no_lang_code', 'name', 'Drip Research Technology Services (United States)'),
(13871, 11497, 'en', 'name', 'Drummond Public Schools'),
(13872, 11498, 'en', 'name', 'Myrtle Avenue Brooklyn Partnership'),
(13873, 11499, 'en', 'name', 'Dublin Independent School District'),
(13874, 11500, 'en', 'name', 'Durham County Department of Public Health'),
(13875, 11501, 'no_lang_code', 'name', 'e2e Materials (United States)'),
(13876, 11502, 'en', 'name', 'Earth Learning'),
(13877, 11503, 'no_lang_code', 'name', 'Earth Networks (United States)'),
(13878, 11504, 'no_lang_code', 'name', 'Innovation Pathways'),
(13879, 11505, 'en', 'name', 'East Bay Asian Youth Center'),
(13880, 11506, 'no_lang_code', 'name', 'LIG Science (United States)'),
(13881, 11507, 'en', 'name', 'Ohio Aerospace Institute'),
(13882, 11508, 'en', 'name', 'Eastern Shore of Virginia Broadband Authority'),
(13883, 11509, 'no_lang_code', 'name', 'Innovative Orbital Design (United States)'),
(13884, 11510, 'en', 'name', 'Oklahoma Department of Human Services'),
(13885, 11511, 'en', 'name', 'National 4-H Council'),
(13886, 11512, 'no_lang_code', 'name', 'Innovative Space Propulsion Systems (United States)'),
(13887, 11513, 'en', 'name', 'Omak School District'),
(13888, 11514, 'en', 'name', 'National Association of Extension 4-H Agents'),
(13889, 11515, 'no_lang_code', 'name', 'OndaVia (United States)'),
(13890, 11516, 'en', 'name', 'Eastside Technical Center'),
(13891, 11517, 'en', 'name', 'National Biodiesel Board'),
(13892, 11518, 'no_lang_code', 'name', 'Eco Composites (United States)'),
(13893, 11519, 'en', 'name', 'Organic Seed Alliance'),
(13894, 11520, 'en', 'name', 'National Center for Appropriate Technology'),
(13895, 11521, 'no_lang_code', 'name', 'InsectiGen (United States)'),
(13896, 11522, 'no_lang_code', 'name', 'Insects Limited (United States)'),
(13897, 11523, 'en', 'name', 'Institute for Advanced Learning and Research'),
(13898, 11524, 'en', 'name', 'Ecumenical Ministries of Oregon'),
(13899, 11525, 'no_lang_code', 'name', 'Organix (United States)'),
(13900, 11526, 'en', 'name', 'Institute for Culture and Ecology'),
(13901, 11527, 'no_lang_code', 'name', 'National Center for Defense Manufacturing and Machining (United States)'),
(13902, 11528, 'en', 'name', 'Institute for Earth Science Research and Education'),
(13903, 11529, 'en', 'name', 'Institute for Global Environmental Strategies'),
(13904, 11530, 'en', 'name', 'Institute for Magnetospheric Physics'),
(13905, 11531, 'en', 'name', 'Institute for the Application of Geospatial Technology'),
(13906, 11532, 'en', 'name', 'Institute for Washington’s Future'),
(13907, 11533, 'en', 'name', 'Institute of American Indian Arts'),
(13908, 11534, 'en', 'name', 'Delaware Department of Education'),
(13909, 11535, 'no_lang_code', 'name', 'Ocean Renewable Power Company (United States)'),
(13910, 11536, 'en', 'name', 'Institutes for Behavior Resources'),
(13911, 11537, 'en', 'name', 'Georgia Department of Education'),
(13912, 11538, 'en', 'name', 'National Commission on Teaching and America’s Future'),
(13913, 11539, 'en', 'name', 'Otero Junior College'),
(13914, 11540, 'en', 'name', 'Our School at Blair Grocery'),
(13915, 11541, 'no_lang_code', 'name', 'Integrated Nano-Technologies (United States)'),
(13916, 11542, 'en', 'name', 'Inter-Faith Food Shuttle'),
(13917, 11543, 'en', 'name', 'National Council on Radiation Protection and Measurements'),
(13918, 11544, 'no_lang_code', 'name', 'Owl Biomedical (United States)'),
(13919, 11545, 'no_lang_code', 'name', 'Pacific Biodiesel (United States)'),
(13920, 11546, 'en', 'name', 'Pacific Gateway Center'),
(13921, 11547, 'en', 'name', 'Education in Action'),
(13922, 11548, 'en', 'name', 'National Federation of the Blind'),
(13923, 11549, 'en', 'name', 'Nebraska Department of Education'),
(13924, 11550, 'en', 'name', 'International Association of Wildland Fire'),
(13925, 11551, 'en', 'name', 'International Society for Biosafety Research'),
(13926, 11552, 'no_lang_code', 'name', '3F (United States)'),
(13927, 11553, 'en', 'name', 'International Sonoran Desert Alliance'),
(13928, 11554, 'no_lang_code', 'name', 'Pan Genome Systems (United States)'),
(13929, 11555, 'es', 'name', 'Departamento de Educación de Nueva Jersey'),
(13930, 11555, 'en', 'name', 'New Jersey Department of Education'),
(13931, 11556, 'no_lang_code', 'name', 'PathoVacs (United States)'),
(13932, 11557, 'en', 'name', 'National Mining Hall of Fame and Museum'),
(13933, 11558, 'en', 'name', 'PathStone'),
(13934, 11559, 'no_lang_code', 'name', 'PFA Consulting (United States)'),
(13935, 11560, 'no_lang_code', 'name', 'Pemaquid Mussel Farms (United States)'),
(13936, 11561, 'en', 'name', 'National Space Grant Alliance'),
(13937, 11562, 'no_lang_code', 'name', 'Pemaquid Oyster Company (United States)'),
(13938, 11563, 'en', 'name', 'National Space Grant Foundation'),
(13939, 11564, 'no_lang_code', 'name', 'United Animal Health (United States)'),
(13940, 11565, 'en', 'name', 'National Test Pilot School'),
(13941, 11566, 'en', 'name', 'Intertribal Agriculture Council'),
(13942, 11567, 'no_lang_code', 'name', 'Pennsylvania Center for Beef Excellence'),
(13943, 11568, 'en', 'name', 'Pennsylvania Horticultural Society'),
(13944, 11569, 'no_lang_code', 'name', 'Intralytix (United States)'),
(13945, 11570, 'en', 'name', 'National Wild Turkey Federation'),
(13946, 11571, 'en', 'name', 'National Youth Science Foundation'),
(13947, 11572, 'no_lang_code', 'name', 'Permafuels (United States)'),
(13948, 11573, 'en', 'name', 'Nationalities Service Center'),
(13949, 11574, 'no_lang_code', 'name', 'Invention House (United States)'),
(13950, 11575, 'no_lang_code', 'name', 'Invercon (United States)'),
(13951, 11576, 'en', 'name', 'Empire State Honey Producers Association'),
(13952, 11577, 'no_lang_code', 'name', 'Energid Technologies (United States)'),
(13953, 11578, 'en', 'name', 'Nebraska Indian Community College'),
(13954, 11579, 'no_lang_code', 'name', 'Olympus (United States)'),
(13955, 11580, 'en', 'name', 'Negev Foundation'),
(13956, 11581, 'en', 'name', 'Inyo Mono Advocates for Community Action'),
(13957, 11582, 'en', 'name', 'Iowa Children''s Museum'),
(13958, 11583, 'en', 'name', 'Energy Center of Wisconsin'),
(13959, 11584, 'no_lang_code', 'name', 'Enertechnix (United States)'),
(13960, 11585, 'no_lang_code', 'name', 'Phenotype Screening Corporation (United States)'),
(13961, 11586, 'en', 'name', 'Iowa Valley Community College District'),
(13962, 11587, 'en', 'name', 'ECO City Farms'),
(13963, 11588, 'en', 'name', 'New Jersey Department of Agriculture'),
(13964, 11589, 'en', 'name', 'IPM Institute of North America'),
(13965, 11590, 'en', 'name', 'New Media Studio'),
(13966, 11591, 'no_lang_code', 'name', 'Engineered Compost Systems (United States)'),
(13967, 11592, 'en', 'name', 'College Opportunity Resources for Education'),
(13968, 11593, 'en', 'name', 'New Mexico Mathematics, Engineering, and Science Achievement'),
(13969, 11594, 'no_lang_code', 'name', 'Photon Systems (United States)'),
(13970, 11595, 'en', 'name', 'Jamestown Education Foundation'),
(13971, 11596, 'en', 'name', 'STEM Forward'),
(13972, 11597, 'en', 'name', 'New York Harbor School'),
(13973, 11598, 'en', 'name', 'Irv and Shellys Fresh Picks'),
(13974, 11599, 'no_lang_code', 'name', 'EIM Sensor (United States)'),
(13975, 11600, 'en', 'name', 'New York Sustainable Agriculture Working Group'),
(13976, 11601, 'en', 'name', 'Goodman Community Center'),
(13977, 11602, 'en', 'name', 'Aurora St. Luke''s Medical Center'),
(13978, 11603, 'en', 'name', 'Newark Museum'),
(13979, 11604, 'no_lang_code', 'name', 'Eureka Genomics (United States)'),
(13980, 11605, 'no_lang_code', 'name', 'Itaconix (United States)'),
(13981, 11606, 'en', 'name', 'Eureka Scientific'),
(13982, 11607, 'no_lang_code', 'name', 'Exelis (United States)'),
(13983, 11608, 'no_lang_code', 'name', 'Exactheat (United States)'),
(13984, 11609, 'en', 'name', 'Winer Observatory'),
(13985, 11610, 'en', 'name', 'Janus Youth Programs'),
(13986, 11611, 'no_lang_code', 'name', 'Novaphos (United States)'),
(13987, 11612, 'en', 'name', 'Planting Justice'),
(13988, 11613, 'en', 'name', 'ExploreMars'),
(13989, 11614, 'no_lang_code', 'name', 'Nitrate Elimination Company (United States)'),
(13990, 11615, 'no_lang_code', 'name', 'Exquadrum (United States)'),
(13991, 11616, 'en', 'name', 'FareStart'),
(13992, 11617, 'en', 'name', 'Farm Credit Council'),
(13993, 11618, 'en', 'name', 'Farm Safety For Just Kids'),
(13994, 11619, 'en', 'name', 'Farm to Table'),
(13995, 11620, 'en', 'name', 'Farmers Legal Action Group'),
(13996, 11621, 'no_lang_code', 'name', 'Firsthand Foods (United States)'),
(13997, 11622, 'en', 'name', 'Farmworker Association of Florida'),
(13998, 11623, 'en', 'name', 'Jobs for the Future'),
(13999, 11624, 'en', 'name', 'Plumas Rural Services'),
(14000, 11625, 'en', 'name', 'Journey''s End Refugee Services'),
(14001, 11626, 'no_lang_code', 'name', 'Noblis'),
(14002, 11627, 'no_lang_code', 'name', 'Julia Group'),
(14003, 11628, 'en', 'name', 'Norfolk County Agricultural High School'),
(14004, 11629, 'en', 'name', 'Exploreum Science Center'),
(14005, 11630, 'no_lang_code', 'name', 'Sigma Space (United States)'),
(14006, 11631, 'no_lang_code', 'name', 'PolyOne (United States)'),
(14007, 11632, 'en', 'name', 'Federation of Animal Science Societies'),
(14008, 11633, 'en', 'name', 'Park Nicollet Clinic'),
(14009, 11634, 'en', 'name', 'Practical Farmers of Iowa'),
(14010, 11635, 'en', 'name', 'North Carolina Science, Mathematics, and Technology Education Center'),
(14011, 11636, 'no_lang_code', 'name', 'Prairie Gold (United States)'),
(14012, 11637, 'no_lang_code', 'name', 'Sims Brothers (United States)'),
(14013, 11638, 'en', 'name', 'Federation of Southern Cooperatives Land Assistance Fund'),
(14014, 11639, 'en', 'name', 'Singularity University'),
(14015, 11639, 'es', 'name', 'Universidad de la Singularidad'),
(14016, 11640, 'en', 'name', 'Sitka Sound Science Center'),
(14017, 11641, 'en', 'name', 'North Coast Opportunities'),
(14018, 11642, 'no_lang_code', 'name', 'Skolex Biotechnologies (United States)'),
(14019, 11643, 'en', 'name', 'The Garden Church'),
(14020, 11644, 'no_lang_code', 'name', 'Smith-Root (United States)'),
(14021, 11645, 'en', 'name', 'Europeana Foundation'),
(14022, 11645, 'nl', 'name', 'Stichting Europeana'),
(14023, 11646, 'no_lang_code', 'name', 'Fiberstar (United States)'),
(14024, 11647, 'no_lang_code', 'name', 'Fibertek (United States)'),
(14025, 11648, 'en', 'name', 'North East Community Center'),
(14026, 11649, 'no_lang_code', 'name', 'SMK Plants (United States)'),
(14027, 11650, 'en', 'name', 'Society for In Vitro Biology'),
(14028, 11651, 'no_lang_code', 'name', 'ProFishent (United States)'),
(14029, 11652, 'en', 'name', 'Society for Nutrition Education and Behavior'),
(14030, 11653, 'en', 'name', 'Project Food, Land and People'),
(14031, 11654, 'en', 'name', 'First Nations Development Institute'),
(14032, 11655, 'en', 'name', 'Northeast Organic Farming Association of New Jersey'),
(14033, 11656, 'no_lang_code', 'name', 'Prometheus Energy (United States)'),
(14034, 11657, 'en', 'name', 'Weeksville Heritage Center'),
(14035, 11658, 'en', 'name', 'Northeast Organic Farming Association of New York'),
(14036, 11659, 'no_lang_code', 'name', 'Melt Organic (United States)'),
(14037, 11660, 'en', 'name', 'Flathead Valley Community College'),
(14038, 11661, 'en', 'name', 'Chiricahua Community Health Centers'),
(14039, 11662, 'no_lang_code', 'name', 'Prove IT (United States)'),
(14040, 11663, 'no_lang_code', 'name', 'Soil Born Farms Urban Agriculture & Education Project (United States)'),
(14041, 11664, 'en', 'name', 'Public Broadcasting Service'),
(14042, 11665, 'en', 'name', 'Northeast Wisconsin Technical College'),
(14043, 11666, 'en', 'name', 'Florida Agriculture in the Classroom'),
(14044, 11667, 'en', 'name', 'Public Policy Institute of California'),
(14045, 11668, 'no_lang_code', 'name', 'Armadillo Aerospace (United States)'),
(14046, 11669, 'en', 'name', 'Northern California Regional Land Trust'),
(14047, 11670, 'en', 'name', 'Cody Foundation'),
(14048, 11671, 'no_lang_code', 'name', 'Pulsar Informatics (United States)'),
(14049, 11672, 'en', 'name', 'Solid Ground'),
(14050, 11673, 'no_lang_code', 'name', 'Star Roses and Plants (United States)'),
(14051, 11674, 'no_lang_code', 'name', 'Quad County Corn Processors (United States)'),
(14052, 11675, 'no_lang_code', 'name', 'EnerSys (United States)'),
(14053, 11676, 'en', 'name', 'Upstate Freshwater Institute'),
(14054, 11677, 'no_lang_code', 'name', 'Quantalux (United States)'),
(14055, 11678, 'no_lang_code', 'name', 'Urban Tilth'),
(14056, 11679, 'no_lang_code', 'name', 'Xylem (United States)'),
(14057, 11680, 'no_lang_code', 'name', 'Quasar Energy Group (United States)'),
(14058, 11681, 'en', 'name', 'Nuestras Raices'),
(14059, 11682, 'en', 'name', 'Sound Watershed Consulting'),
(14060, 11683, 'en', 'name', 'Urban Tree Connection'),
(14061, 11684, 'en', 'name', 'South Routt School District'),
(14062, 11685, 'no_lang_code', 'name', 'VIC Technology Venture Development (United States)'),
(14063, 11686, 'en', 'name', 'Southside Community Land Trust'),
(14064, 11687, 'no_lang_code', 'name', 'Nutrasorb (United States)'),
(14065, 11688, 'en', 'name', 'United States Satellite Laboratory'),
(14066, 11689, 'en', 'name', 'Florida A&M University - Florida State University College of Engineering'),
(14067, 11690, 'no_lang_code', 'name', 'Nutrient Recovery and Upcycling (United States)'),
(14068, 11691, 'en', 'name', 'Southern New Hampshire Services'),
(14069, 11692, 'no_lang_code', 'name', 'Rebexsess (United States)'),
(14070, 11693, 'en', 'name', 'Recirculating Farms Coalition'),
(14071, 11694, 'no_lang_code', 'name', 'NVision Solutions (United States)'),
(14072, 11695, 'no_lang_code', 'name', 'Reflective X Ray Optics'),
(14073, 11696, 'en', 'name', 'Southern Ute Community Action Programs'),
(14074, 11697, 'no_lang_code', 'name', 'Oahu Community Recycling (United States)'),
(14075, 11698, 'en', 'name', 'Southwest Georgia Project for Community Education'),
(14076, 11699, 'en', 'name', 'Odyssey of the Mind'),
(14077, 11700, 'en', 'name', 'Southwestern Indian Polytechnic Institute'),
(14078, 11701, 'en', 'name', 'Valley Forge Military Academy and College'),
(14079, 11702, 'en', 'name', 'Regional Environmental Council'),
(14080, 11703, 'no_lang_code', 'name', 'Space Environment Technologies (United States)'),
(14081, 11704, 'no_lang_code', 'name', 'Remote Sensing Solutions (United States)'),
(14082, 11705, 'no_lang_code', 'name', 'Remote Sensing Systems (United States)'),
(14083, 11706, 'en', 'name', 'Space Florida'),
(14084, 11707, 'no_lang_code', 'name', 'Oxford Catalysts Group (United States)'),
(14085, 11708, 'no_lang_code', 'name', 'Visidyne (United States)'),
(14086, 11709, 'en', 'name', 'Space Frontier Foundation'),
(14087, 11710, 'no_lang_code', 'name', 'Vision Robotics Corporation (United States)'),
(14088, 11711, 'no_lang_code', 'name', 'PureTemp (United States)'),
(14089, 11712, 'no_lang_code', 'name', 'SpaceWorks Enterprises (United States)'),
(14090, 11713, 'en', 'name', 'Waipa Foundation'),
(14091, 11714, 'no_lang_code', 'name', 'Renewable Spirits (United States)'),
(14092, 11715, 'en', 'name', 'Walla Walla Community College'),
(14093, 11716, 'no_lang_code', 'name', 'Spectral Sciences (United States)'),
(14094, 11717, 'en', 'name', 'Walton County School District'),
(14095, 11718, 'no_lang_code', 'name', 'Wask Engineering (United States)'),
(14096, 11719, 'no_lang_code', 'name', 'Geoprobe (United States)'),
(14097, 11720, 'no_lang_code', 'name', 'Wastewater Compliance Systems (United States)'),
(14098, 11721, 'no_lang_code', 'name', 'Spensa Technologies (United States)'),
(14099, 11722, 'en', 'name', 'Polistes Foundation'),
(14100, 11723, 'no_lang_code', 'name', 'Vestaron (United States)'),
(14101, 11724, 'no_lang_code', 'name', 'ViaSim Solutions'),
(14102, 11725, 'en', 'name', 'WateReuse Association'),
(14103, 11726, 'en', 'name', 'South Dakota Discovery Center'),
(14104, 11727, 'en', 'name', 'Virginia Air and Space Center'),
(14105, 11728, 'en', 'name', 'Wayne County Regional Educational Service Agency'),
(14106, 11729, 'en', 'name', 'Resources for Human Development'),
(14107, 11730, 'no_lang_code', 'name', 'Bee Power (United States)'),
(14108, 11731, 'en', 'name', 'Re:Vision'),
(14109, 11732, 'en', 'name', 'West Hills Community College District'),
(14110, 11733, 'no_lang_code', 'name', 'SSS Optical Technologies'),
(14111, 11734, 'en', 'name', 'Tohono O''odham Community Action'),
(14112, 11735, 'en', 'name', 'St. Mary''s Health System'),
(14113, 11736, 'en', 'name', 'Rhode Island Association of Conservation Districts'),
(14114, 11737, 'en', 'name', 'Tompkins-Seneca-Tioga Board of Cooperative Educational Services'),
(14115, 11738, 'en', 'name', 'National Women in Agriculture Association'),
(14116, 11739, 'no_lang_code', 'name', 'Top 10 Produce (United States)'),
(14117, 11740, 'en', 'name', 'Total Learning Research Institute'),
(14118, 11741, 'en', 'name', 'Staunton Creative Community Fund'),
(14119, 11742, 'no_lang_code', 'name', 'Tova Industries (United States)'),
(14120, 11743, 'no_lang_code', 'name', 'Sea Bird Electronics (United States)'),
(14121, 11744, 'en', 'name', 'Tranquility Base Massage & Day Spa'),
(14122, 11745, 'no_lang_code', 'name', 'Ridge Quest (United States)'),
(14123, 11746, 'no_lang_code', 'name', 'Western Laboratories (United States)'),
(14124, 11747, 'no_lang_code', 'name', 'Stellar Solutions (United States)'),
(14125, 11748, 'no_lang_code', 'name', 'Rio Culebra Cooperative (United States)'),
(14126, 11749, 'no_lang_code', 'name', 'TransGenada (United States)'),
(14127, 11750, 'no_lang_code', 'name', 'Westscape Wholesale Nursery (United States)'),
(14128, 11751, 'en', 'name', 'Rio Grande Valley Science Association'),
(14129, 11752, 'en', 'name', 'Rio Puerco & Jemez Watershed Alliance'),
(14130, 11753, 'en', 'name', 'Treasure Valley Community College'),
(14131, 11754, 'no_lang_code', 'name', 'Ripple Rock Fish Farms (United States)'),
(14132, 11755, 'no_lang_code', 'name', 'Trellis Growing Systems'),
(14133, 11756, 'no_lang_code', 'name', 'Rivertop Renewables (United States)'),
(14134, 11757, 'no_lang_code', 'name', 'Troutlodge (United States)'),
(14135, 11758, 'en', 'name', 'White Earth Tribal and Community College'),
(14136, 11759, 'no_lang_code', 'name', 'Robert Miller Consulting'),
(14137, 11760, 'en', 'name', 'Robeson Community College'),
(14138, 11761, 'en', 'name', 'Stone Barns Center for Food & Agriculture'),
(14139, 11762, 'en', 'name', 'Robotics Education and Competition Foundation'),
(14140, 11763, 'no_lang_code', 'name', 'WholeTrees (United States)'),
(14141, 11764, 'en', 'name', 'Truly Living Well'),
(14142, 11765, 'no_lang_code', 'name', 'Roffer’s Ocean Fishing Forecasting Service'),
(14143, 11766, 'no_lang_code', 'name', 'Wilks (United States)'),
(14144, 11767, 'no_lang_code', 'name', 'Rolling Hills Research (United States)'),
(14145, 11768, 'en', 'name', 'Tulsa Economic Development Corporation'),
(14146, 11769, 'en', 'name', 'Wilson''s Cedar Point Farm'),
(14147, 11770, 'no_lang_code', 'name', 'StormCenter Communications (United States)'),
(14148, 11771, 'en', 'name', 'Strategic Solutions International'),
(14149, 11772, 'no_lang_code', 'name', 'Stratton Park Engineering Company (United States)'),
(14150, 11773, 'no_lang_code', 'name', 'Worm Power (United States)'),
(14151, 11774, 'no_lang_code', 'name', 'SuGanit Systems (United States)'),
(14152, 11775, 'no_lang_code', 'name', 'Rubicon Foods (United States)'),
(14153, 11776, 'es', 'name', 'Coalición Rural'),
(14154, 11776, 'en', 'name', 'Rural Coalition'),
(14155, 11777, 'en', 'name', 'Rural Community Development Resources'),
(14156, 11778, 'en', 'name', 'Rural Resources'),
(14157, 11779, 'en', 'name', 'Uncommon Good'),
(14158, 11780, 'en', 'name', 'United Charitable'),
(14159, 11781, 'no_lang_code', 'name', 'Summit Seed (United States)'),
(14160, 11782, 'en', 'name', 'Winston County Self Help Cooperative'),
(14161, 11783, 'en', 'name', 'Supreme Court of Virginia'),
(14162, 11784, 'no_lang_code', 'name', 'Mƶlnlycke Health Care (United States)'),
(14163, 11785, 'en', 'name', 'Sustainable Agriculture Education'),
(14164, 11786, 'en', 'name', 'Southeastern Consortium for Minorities in Engineering'),
(14165, 11787, 'en', 'name', 'Sustainable Food Center'),
(14166, 11788, 'no_lang_code', 'name', 'Synthetic Genomics (United States)'),
(14167, 11789, 'en', 'name', 'For Inspiration and Recognition of Science and Technology'),
(14168, 11790, 'no_lang_code', 'name', 'SynTouch (United States)'),
(14169, 11791, 'no_lang_code', 'name', 'Saint Onge Orchids (United States)'),
(14170, 11792, 'en', 'name', 'Saginaw Chippewa Indian Tribal Council'),
(14171, 11793, 'en', 'name', 'St. Patrick Catholic High School'),
(14172, 11794, 'en', 'name', 'Northwest Regional Planning Commission'),
(14173, 11795, 'en', 'name', 'United Teen Equality Center'),
(14174, 11796, 'no_lang_code', 'name', 'Wiser Systems (United States)'),
(14175, 11797, 'en', 'name', 'Sanilac Intermediate School District'),
(14176, 11798, 'no_lang_code', 'name', 'SarTec (United States)'),
(14177, 11799, 'en', 'name', 'Saturday Academy'),
(14178, 11800, 'en', 'name', 'Women Food and Agriculture Network'),
(14179, 11801, 'no_lang_code', 'name', 'Taber International (United States)'),
(14180, 11802, 'no_lang_code', 'name', 'Scenic Valley Farms'),
(14181, 11803, 'no_lang_code', 'name', 'Tao Systems (United States)'),
(14182, 11804, 'en', 'name', 'United Way of Greater Portland'),
(14183, 11805, 'en', 'name', 'Women''s Community Revitalization Project'),
(14184, 11806, 'en', 'name', 'The Big Garden'),
(14185, 11807, 'no_lang_code', 'name', 'Taylor Shellfish Farms (United States)'),
(14186, 11808, 'no_lang_code', 'name', 'Schillinger Genetics (United States)'),
(14187, 11809, 'no_lang_code', 'name', 'Tea Spot (United States)'),
(14188, 11810, 'en', 'name', 'Teach For America'),
(14189, 11811, 'en', 'name', 'Women’s Environmental Institute'),
(14190, 11812, 'en', 'name', 'Brevard Public Schools'),
(14191, 11813, 'en', 'name', 'Orange County Public Schools'),
(14192, 11814, 'no_lang_code', 'name', 'Technical Design (United States)'),
(14193, 11815, 'en', 'name', 'Polk County Public Schools'),
(14194, 11816, 'en', 'name', 'Capital Caring'),
(14195, 11817, 'en', 'name', 'Technical Education Research Centers'),
(14196, 11818, 'no_lang_code', 'name', 'Science and Sensors Technologies (United States)'),
(14197, 11819, 'no_lang_code', 'name', 'Science and Technology Corporation (United States)'),
(14198, 11820, 'no_lang_code', 'name', 'Technology Holding (United States)'),
(14199, 11821, 'en', 'name', 'Science Center of Iowa'),
(14200, 11822, 'no_lang_code', 'name', 'Technova Corporation (United States)'),
(14201, 11823, 'no_lang_code', 'name', 'Science Systems and Applications (United States)'),
(14202, 11824, 'en', 'name', 'ScienceSouth'),
(14203, 11825, 'no_lang_code', 'name', 'World Centric (United States)'),
(14204, 11826, 'no_lang_code', 'name', 'WhyHunger'),
(14205, 11827, 'no_lang_code', 'name', 'Scientific Fishery Systems (United States)'),
(14206, 11828, 'no_lang_code', 'name', 'World Winds (United States)'),
(14207, 11829, 'no_lang_code', 'name', 'Sea and Reef Aquaculture (United States)'),
(14208, 11830, 'en', 'name', 'Seaberry Farm'),
(14209, 11831, 'no_lang_code', 'name', 'Terrenew (United States)'),
(14210, 11832, 'no_lang_code', 'name', 'TessArae (United States)'),
(14211, 11833, 'no_lang_code', 'name', 'Tethers Unlimited (United States)'),
(14212, 11834, 'no_lang_code', 'name', 'Searchlight Sensors (United States)'),
(14213, 11835, 'no_lang_code', 'name', 'Tetra Tech (United States)'),
(14214, 11836, 'en', 'name', 'Seattle Aquarium'),
(14215, 11837, 'no_lang_code', 'name', 'Tetracore (United States)'),
(14216, 11838, 'en', 'name', 'Tilth Alliance'),
(14217, 11839, 'no_lang_code', 'name', 'Secor Strategies (United States)'),
(14218, 11840, 'no_lang_code', 'name', 'Xiomas Technologies (United States)'),
(14219, 11841, 'no_lang_code', 'name', 'Xnano Sciences (United States)'),
(14220, 11842, 'no_lang_code', 'name', 'SBS CyberSecurity (United States)'),
(14221, 11843, 'en', 'name', 'Texas State Technical College West Texas'),
(14222, 11844, 'en', 'name', 'Seminole Public Schools'),
(14223, 11845, 'en', 'name', 'Texas Tech University System'),
(14224, 11846, 'en', 'name', 'Texas/Mexico Border Coalition'),
(14225, 11847, 'no_lang_code', 'name', 'Everest Technologies (United States)'),
(14226, 11848, 'en', 'name', 'Thanksgiving Point'),
(14227, 11849, 'en', 'name', 'Center for Research on the Changing Earth System'),
(14228, 11850, 'en', 'name', 'Yakima Valley Community College'),
(14229, 11851, 'no_lang_code', 'name', 'SePRO (United States)'),
(14230, 11852, 'en', 'name', 'International Society for Technology in Education'),
(14231, 11853, 'en', 'name', 'Shawnee Community College'),
(14232, 11854, 'en', 'name', 'Yellowstone Ecological Research Center'),
(14233, 11855, 'en', 'name', 'Vernon Verona Sherrill School District'),
(14234, 11856, 'en', 'name', 'Kerr Center for Sustainable Agriculture'),
(14235, 11857, 'en', 'name', 'Shields Valley Public Schools'),
(14236, 11858, 'no_lang_code', 'name', 'Yenkin Majestic Industrial Coatings Division (United States)'),
(14237, 11859, 'en', 'name', 'Kohala Center'),
(14238, 11860, 'no_lang_code', 'name', 'Youngstown Neighborhood Development Corporation (United States)'),
(14239, 11861, 'en', 'name', 'Youth Farm'),
(14240, 11862, 'en', 'name', 'Yurok Tribe Environmental Program'),
(14241, 11863, 'no_lang_code', 'name', 'Z4 Energy Systems (United States)'),
(14242, 11864, 'no_lang_code', 'name', 'Biomarker Strategies (United States)'),
(14243, 11865, 'en', 'name', 'Bryan Health'),
(14244, 11866, 'en', 'name', 'Arabkir Joint Medical Center'),
(14245, 11866, 'hy', 'name', 'Ō±Ö€Õ”Õ¢ÕÆÕ«Ö€ Ō²ÕŖÕ·ÕÆÕ”ÕÆÕ”Õ¶ Õ€Õ”Õ“Õ”Õ¬Õ«Ö€'),
(14246, 11867, 'no_lang_code', 'name', 'Regen BioPharma (United States)'),
(14247, 11868, 'en', 'name', 'Buckelew Programs'),
(14248, 11869, 'en', 'name', 'Elucid Bioimaging'),
(14249, 11870, 'de', 'name', 'BioMed zet Life Science'),
(14250, 11871, 'en', 'name', 'Building Blocks Learning Academy'),
(14251, 11872, 'en', 'name', 'Building Bridges Child Development Center'),
(14252, 11873, 'en', 'name', 'The Wildlife Society'),
(14253, 11874, 'en', 'name', 'Butte County Office of Education'),
(14254, 11875, 'no_lang_code', 'name', 'Thin Air Nitrogen Solutions (United States)'),
(14255, 11876, 'en', 'name', 'Asthma and Allergy Specialists'),
(14256, 11877, 'no_lang_code', 'name', 'This Old Farm (United States)'),
(14257, 11878, 'no_lang_code', 'name', 'BioMedicure (United States)'),
(14258, 11879, 'en', 'name', 'C. Thomas Clagett, Jr. Memorial Clinic and Regatta'),
(14259, 11880, 'no_lang_code', 'name', 'C2N Diagnostics (United States)'),
(14260, 11881, 'no_lang_code', 'name', 'Biomedisyn (United States)'),
(14261, 11882, 'no_lang_code', 'name', 'C5•6 Technologies (United States)'),
(14262, 11883, 'en', 'name', 'Tift County School District'),
(14263, 11884, 'no_lang_code', 'name', 'Valerion Therapeutics (United States)'),
(14264, 11885, 'no_lang_code', 'name', 'Highlight Therapeutics (Spain)'),
(14265, 11886, 'no_lang_code', 'name', 'Bionovo (United States)'),
(14266, 11887, 'en', 'name', 'Association of Pediatric Hematology/Oncology Nurses'),
(14267, 11888, 'fr', 'name', 'Association Robert DebrƩ'),
(14268, 11889, 'fr', 'name', 'Association Shifa des Maladies NeuroMusculaires'),
(14269, 11890, 'no_lang_code', 'name', 'Biopico Systems (United States)'),
(14270, 11891, 'en', 'name', 'Association to Benefit Children'),
(14271, 11892, 'en', 'name', 'Astella Development'),
(14272, 11893, 'no_lang_code', 'name', 'Bioproximity (United States)'),
(14273, 11894, 'no_lang_code', 'name', 'Plex Pharmaceuticals (United States)'),
(14274, 11895, 'no_lang_code', 'name', 'BioRealm (United States)'),
(14275, 11896, 'en', 'name', 'Astraea Lesbian Foundation For Justice'),
(14276, 11897, 'en', 'name', 'Calhoun County Health Department'),
(14277, 11898, 'no_lang_code', 'name', 'Califia Bio (United States)'),
(14278, 11899, 'en', 'name', 'Asylum Access'),
(14279, 11900, 'no_lang_code', 'name', 'PharmaBioSource (United States)'),
(14280, 11901, 'en', 'name', 'California Adaptive Rowing Program'),
(14281, 11902, 'en', 'name', 'California Aquatic Therapy and Wellness Center'),
(14282, 11903, 'en', 'name', 'California Consortium of Addiction Programs and Professionals'),
(14283, 11904, 'no_lang_code', 'name', 'Aterica (Canada)'),
(14284, 11905, 'en', 'name', 'Californians for Disability Rights'),
(14285, 11906, 'en', 'name', 'California Black Health Network'),
(14286, 11907, 'en', 'name', 'Coalition for Compassionate Care of California'),
(14287, 11908, 'no_lang_code', 'name', 'Biothera (United States)'),
(14288, 11909, 'en', 'name', 'California Ear Institute'),
(14289, 11910, 'en', 'name', 'Disability Rights Legal Center'),
(14290, 11911, 'en', 'name', 'California Health Collaborative'),
(14291, 11912, 'no_lang_code', 'name', 'Biovista (United States)'),
(14292, 11913, 'en', 'name', 'Ventura County Health Care Agency'),
(14293, 11914, 'no_lang_code', 'name', 'Athenese (United States)'),
(14294, 11915, 'en', 'name', 'Athens Nurses Clinic'),
(14295, 11916, 'en', 'name', 'California Hospital Association'),
(14296, 11917, 'en', 'name', 'Athlete''s for Education'),
(14297, 11918, 'en', 'name', 'California Hospital Medical Center Foundation'),
(14298, 11919, 'en', 'name', 'Indian Health Council'),
(14299, 11920, 'en', 'name', 'California Prostitutes Education Project'),
(14300, 11921, 'en', 'name', 'Athletes Joined Against Spondylitis'),
(14301, 11922, 'en', 'name', 'Athletics Canada'),
(14302, 11922, 'fr', 'name', 'AthlƩtisme Canada'),
(14303, 11923, 'en', 'name', 'Bipartisan Policy Center'),
(14304, 11924, 'no_lang_code', 'name', 'Calista Therapeutics (United States)'),
(14305, 11925, 'en', 'name', 'Calmar Pain Relief'),
(14306, 11926, 'en', 'name', 'Cambodian Association of America'),
(14307, 11927, 'en', 'name', 'University of California Hastings College of the Law'),
(14308, 11927, 'fr', 'name', 'Ɖcole de droit hastings de l''universitĆ© de californie'),
(14309, 11928, 'en', 'name', 'CAMC Health Education and Research Institute'),
(14310, 11929, 'en', 'name', 'ProMedica Charles and Virginia Hickman Hospital'),
(14311, 11930, 'en', 'name', 'Alzforum'),
(14312, 11931, 'en', 'name', 'Rafiki Coalition'),
(14313, 11932, 'no_lang_code', 'name', 'Aaranya Biosciences (India)'),
(14314, 11933, 'en', 'name', 'Atlanta Diabetes Associates'),
(14315, 11934, 'en', 'name', 'Atlantic Cancer Research Institute'),
(14316, 11934, 'fr', 'name', 'Institut Atlantique de recherche sur le cancer'),
(14317, 11935, 'en', 'name', 'Black Women for Wellness'),
(14318, 11936, 'no_lang_code', 'name', 'ATLAS Neuroengineering (Belgium)'),
(14319, 11937, 'en', 'name', 'Alzheimer''s and Related Disorders Society of India'),
(14320, 11938, 'en', 'name', 'Bladen County Schools'),
(14321, 11939, 'en', 'name', 'Blanchfield Army Community Hospital'),
(14322, 11940, 'en', 'name', 'Camp Aldersgate'),
(14323, 11941, 'no_lang_code', 'name', 'Ab Medica (Italy)'),
(14324, 11942, 'en', 'name', 'Blank Children''s Hospital'),
(14325, 11943, 'en', 'name', 'Attogen Biomedical Research'),
(14326, 11944, 'en', 'name', 'BlazeSports America'),
(14327, 11945, 'en', 'name', 'Augusta Victoria Hospital'),
(14328, 11946, 'en', 'name', 'Alzheimer''s Disease Association of the Philippines'),
(14329, 11947, 'en', 'name', 'Alzheimer''s Drug Discovery Foundation'),
(14330, 11948, 'en', 'name', 'Camp Quality New Jersey'),
(14331, 11949, 'en', 'name', 'Camp Twin Lakes'),
(14332, 11950, 'en', 'name', 'Bloomington Health Foundation'),
(14333, 11951, 'no_lang_code', 'name', 'AurimMed (United States)'),
(14334, 11952, 'en', 'name', 'Yerevan State Medical University'),
(14335, 11952, 'hy', 'name', 'ŌµÖ€Ö‡Õ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ¢ÕŖÕ·ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(14336, 11953, 'en', 'name', 'Abilities Unlimited of the Carolinas'),
(14337, 11954, 'en', 'name', 'Blue Ridge Area Health Education Center'),
(14338, 11955, 'en', 'name', 'Aunt Martha’s Health and Wellness'),
(14339, 11956, 'en', 'name', 'Can Do Multiple Sclerosis'),
(14340, 11957, 'en', 'name', 'Ability Found'),
(14341, 11958, 'en', 'name', 'Ability Production'),
(14342, 11959, 'en', 'name', 'Blue Ridge Independent Living Center'),
(14343, 11960, 'en', 'name', 'AbilityPLUS'),
(14344, 11961, 'en', 'name', 'Canadian Centre on Disability Studies'),
(14345, 11962, 'en', 'name', 'Quincy Medical Center'),
(14346, 11963, 'no_lang_code', 'name', 'BlueSky Designs (United States)'),
(14347, 11964, 'en', 'name', 'Cleveland Cord Blood Center'),
(14348, 11965, 'en', 'name', 'Spinal Cord Injury Alberta'),
(14349, 11966, 'fr', 'name', 'Fonds des Nations Unies pour l''Enfance'),
(14350, 11966, 'en', 'name', 'United Nations Children''s Fund Canada'),
(14351, 11967, 'en', 'name', 'Australasian Leukaemia and Lymphoma Group'),
(14352, 11968, 'no_lang_code', 'name', 'Blueroof Technologies (United States)'),
(14353, 11969, 'en', 'name', 'Australasia Paediatric Endocrine Group'),
(14354, 11970, 'no_lang_code', 'name', 'Bnoat Oncology (United States)'),
(14355, 11971, 'en', 'name', 'Cancer Connection'),
(14356, 11972, 'en', 'name', 'Australian Foundation for Diabetes Research'),
(14357, 11973, 'en', 'name', 'American Academy of Otolaryngology — Head and Neck Surgery'),
(14358, 11974, 'no_lang_code', 'name', 'Cato BioVentures (United States)'),
(14359, 11975, 'en', 'name', 'American Association of Neuropathologists'),
(14360, 11976, 'en', 'name', 'Leading Age'),
(14361, 11977, 'en', 'name', 'American Association on Health and Disability'),
(14362, 11978, 'en', 'name', 'Boat People SOS'),
(14363, 11979, 'en', 'name', 'AutismCare Nepal Society'),
(14364, 11980, 'en', 'name', 'Autism Treatment Center'),
(14365, 11981, 'no_lang_code', 'name', 'BRCR Global (Peru)'),
(14366, 11982, 'no_lang_code', 'name', 'Accelerated Medical Diagnostics (United States)'),
(14367, 11983, 'en', 'name', 'Boca Raton Museum of Art'),
(14368, 11984, 'en', 'name', 'Autism Partnership Foundation'),
(14369, 11985, 'en', 'name', 'Autism Science Foundation'),
(14370, 11986, 'en', 'name', 'American Childhood Cancer Organization'),
(14371, 11987, 'en', 'name', 'Camp Boggy Creek'),
(14372, 11988, 'en', 'name', 'Access Living'),
(14373, 11989, 'en', 'name', 'Advanced Health Care of Aurora'),
(14374, 11990, 'en', 'name', 'Access Northern California'),
(14375, 11991, 'en', 'name', 'American Federation for Aging Research'),
(14376, 11992, 'no_lang_code', 'name', 'AccuDava (United States)'),
(14377, 11993, 'en', 'name', 'American Folk Art Museum'),
(14378, 11994, 'no_lang_code', 'name', 'Acetylon Pharmaceuticals (United States)'),
(14379, 11995, 'en', 'name', 'Autistic Women & Nonbinary Network'),
(14380, 11996, 'en', 'name', 'Bombay College of Pharmacy'),
(14381, 11997, 'en', 'name', 'Cancer Alliance of Naples'),
(14382, 11998, 'en', 'name', 'Bon Secours Health System'),
(14383, 11999, 'en', 'name', 'Autism360'),
(14384, 12000, 'en', 'name', 'Autoimmunity Research Foundation'),
(14385, 12001, 'no_lang_code', 'name', 'Avails Medical (United States)'),
(14386, 12002, 'en', 'name', 'Achilles International'),
(14387, 12003, 'en', 'name', 'American Friends of Tel Aviv University'),
(14388, 12004, 'en', 'name', 'Cancer and Chronic Disease Consortium'),
(14389, 12005, 'en', 'name', 'ACT for Multiple Sclerosis'),
(14390, 12006, 'en', 'name', 'ACTION'),
(14391, 12007, 'en', 'name', 'Action for Autism'),
(14392, 12008, 'en', 'name', 'Avalon Nature Preserve'),
(14393, 12009, 'en', 'name', 'Action Network'),
(14394, 12010, 'no_lang_code', 'name', 'Avalon Pharma (United States)'),
(14395, 12011, 'en', 'name', 'Cancer Association of Anderson'),
(14396, 12012, 'en', 'name', 'Active Disabled Americans'),
(14397, 12013, 'en', 'name', 'Boone County Health Department'),
(14398, 12014, 'en', 'name', 'Active Transportation Alliance'),
(14399, 12015, 'no_lang_code', 'name', 'ActiveSite Pharmaceuticals (United States)'),
(14400, 12016, 'no_lang_code', 'name', 'ActoGeniX (Belgium)'),
(14401, 12017, 'en', 'name', 'American Himalayan Foundation'),
(14402, 12018, 'en', 'name', 'Cancer Association of Greater New Orleans'),
(14403, 12019, 'no_lang_code', 'name', 'Acumen Pharmaceuticals (United States)'),
(14404, 12020, 'en', 'name', 'American India Foundation'),
(14405, 12021, 'en', 'name', 'American Indian Cancer Foundation'),
(14406, 12022, 'en', 'name', 'Cancer Care Association Sri Lanka'),
(14407, 12023, 'en', 'name', 'Boston Cancer Policy Institute'),
(14408, 12024, 'no_lang_code', 'name', 'Air Vehicle Integrated Design (United States)'),
(14409, 12025, 'en', 'name', 'Adaptations Glassware Cooperative'),
(14410, 12026, 'en', 'name', 'American Institute for Cancer Research'),
(14411, 12027, 'en', 'name', 'Cancer Care Connection'),
(14412, 12028, 'no_lang_code', 'name', 'AVM Biotechnology (United States)'),
(14413, 12029, 'en', 'name', 'American Institute for Voice and Ear Research'),
(14414, 12030, 'en', 'name', 'American Jewish Joint Distribution Committee'),
(14415, 12031, 'en', 'name', 'Adaptive Adventures'),
(14416, 12032, 'en', 'name', 'American Jewish World Service'),
(14417, 12033, 'en', 'name', 'Carolinas Healthcare System'),
(14418, 12034, 'en', 'name', 'Adaptive Sports and Recreation Association'),
(14419, 12035, 'en', 'name', 'Adaptive Sports Program of Ohio'),
(14420, 12036, 'en', 'name', 'American Kennel Club Canine Health Foundation'),
(14421, 12037, 'no_lang_code', 'name', 'Adbroncus (Spain)'),
(14422, 12038, 'en', 'name', 'Cancer Care Services'),
(14423, 12039, 'en', 'name', 'CancerCare'),
(14424, 12040, 'no_lang_code', 'name', 'Avrygen (United States)'),
(14425, 12041, 'en', 'name', 'Addario Lung Cancer Medical Institute'),
(14426, 12042, 'en', 'name', 'Association for Driver Rehabilitation Specialists'),
(14427, 12043, 'en', 'name', 'Horizons Community Solutions'),
(14428, 12044, 'en', 'name', 'Our Bodies Ourselves'),
(14429, 12045, 'en', 'name', 'Dempsey Center'),
(14430, 12046, 'en', 'name', 'Bowery Mission'),
(14431, 12047, 'en', 'name', 'Adena Health System'),
(14432, 12048, 'en', 'name', 'Aware Girls'),
(14433, 12049, 'no_lang_code', 'name', 'Axios Biosciences (United States)'),
(14434, 12050, 'en', 'name', 'Cancer Family Care'),
(14435, 12051, 'no_lang_code', 'name', 'AXIS Dance (United States)'),
(14436, 12052, 'en', 'name', 'Boy Scouts of America Greater New York Councils'),
(14437, 12053, 'en', 'name', 'Adesh Charitable Cancer Hospital'),
(14438, 12054, 'en', 'name', 'Baba Farid University of Health Sciences'),
(14439, 12054, 'pa', 'name', 'ਬਾਬਾ ਫਰੀਦ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ਆਫ਼ ਹੈਲ਄ ąØøąØ¾ąØ‡ą©°ąØøąØæąØœąØ¼'),
(14440, 12055, 'en', 'name', 'Adhikaar'),
(14441, 12056, 'en', 'name', 'Cancer Foundation for Life'),
(14442, 12057, 'en', 'name', 'Cancer Institute of New South Wales'),
(14443, 12058, 'en', 'name', 'Boyne Research Institute'),
(14444, 12059, 'en', 'name', 'Adirondack Medical Center'),
(14445, 12060, 'en', 'name', 'American MedChem'),
(14446, 12061, 'en', 'name', 'Adirondack Mountain Club'),
(14447, 12062, 'en', 'name', 'Cancer Institute of Florida'),
(14448, 12063, 'en', 'name', 'Boys & Girls Clubs of America'),
(14449, 12064, 'no_lang_code', 'name', 'ADispell (United States)'),
(14450, 12065, 'en', 'name', 'AdMeTech Foundation'),
(14451, 12066, 'en', 'name', 'Advanced Barber College & Hair Design'),
(14452, 12067, 'en', 'name', 'Advanced Cancer Therapeutics'),
(14453, 12068, 'en', 'name', 'Cystic Fibrosis Foundation'),
(14454, 12069, 'en', 'name', 'Cancer Legal Care'),
(14455, 12070, 'no_lang_code', 'name', 'Advanced Imaging Projects (United States)'),
(14456, 12071, 'en', 'name', 'Cancer Lifeline'),
(14457, 12072, 'en', 'name', 'B.P. Koirala Memorial Cancer Hospital'),
(14458, 12072, 'ne', 'name', 'ą¤¬ą„€.ą¤Ŗą„€. ą¤•ą„‹ą¤‡ą¤°ą¤¾ą¤²ą¤¾ ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤•ą„ą¤Æą¤¾ą¤Øą„ą¤øą¤° ą¤¹ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(14459, 12073, 'no_lang_code', 'name', 'Advanced Inhalation Therapies (Israel)'),
(14460, 12074, 'en', 'name', 'Brain and Spinal Injury Trust Fund Commission'),
(14461, 12075, 'no_lang_code', 'name', 'B''nai Jeshurun'),
(14462, 12076, 'no_lang_code', 'name', 'Babcock & Wilcox (United States)'),
(14463, 12077, 'no_lang_code', 'name', 'Advanced Neural Dynamics (United States)'),
(14464, 12078, 'en', 'name', 'Baby Buggy'),
(14465, 12079, 'en', 'name', 'Brain Injury Association of Louisiana'),
(14466, 12080, 'en', 'name', 'Babylon Breast Cancer Coalition'),
(14467, 12081, 'en', 'name', 'Brain Injury Association of Mississippi'),
(14468, 12082, 'es', 'name', 'Hospital Nacional de NiƱos Bloom'),
(14469, 12083, 'en', 'name', 'Cancer Patients Alliance for Clinical Trials & Survivorship'),
(14470, 12084, 'en', 'name', 'Cancer Research And Biostatistics'),
(14471, 12085, 'en', 'name', 'Brain Injury Alliance of Oregon'),
(14472, 12086, 'en', 'name', 'Adventist HealthCare'),
(14473, 12087, 'no_lang_code', 'name', 'Microbial Robotics (United States)'),
(14474, 12088, 'en', 'name', 'Advocacy Alliance Center of Texas'),
(14475, 12089, 'en', 'name', 'American Society of Clinical Oncology'),
(14476, 12090, 'en', 'name', 'American Society of Gene Therapy and Cell Therapy'),
(14477, 12091, 'en', 'name', 'Cancer Resource Center of the Desert'),
(14478, 12092, 'en', 'name', 'American Society of Pediatric Hemotology Oncology'),
(14479, 12093, 'en', 'name', 'Cancer Services Network'),
(14480, 12094, 'en', 'name', 'Cancer Services of Grant County'),
(14481, 12095, 'en', 'name', 'American Society of Regional Anesthesia and Pain Medicine'),
(14482, 12096, 'no_lang_code', 'name', 'Balance Therapeutics (United States)'),
(14483, 12097, 'en', 'name', 'Affinity Medical Group'),
(14484, 12098, 'en', 'name', 'Balarat Outdoor Education'),
(14485, 12099, 'en', 'name', 'Baltimore Adapted Recreation and Sports'),
(14486, 12100, 'en', 'name', 'Cancer Services'),
(14487, 12101, 'en', 'name', 'Baltimore Healthy Start'),
(14488, 12102, 'no_lang_code', 'name', 'Brain Tools (United States)'),
(14489, 12103, 'no_lang_code', 'name', 'Affinityfilms (United States)'),
(14490, 12104, 'en', 'name', 'Baltimore Medical System'),
(14491, 12105, 'en', 'name', 'Afghan Coalition'),
(14492, 12106, 'no_lang_code', 'name', 'Afraxis (United States)'),
(14493, 12107, 'en', 'name', 'Brazosport Health Foundation'),
(14494, 12108, 'en', 'name', 'American Youth Soccer Organization'),
(14495, 12109, 'en', 'name', 'Bangladesh Medical Association of North America'),
(14496, 12110, 'en', 'name', 'Africa Health and Development International'),
(14497, 12111, 'en', 'name', 'Cancer Services of New Mexico'),
(14498, 12112, 'en', 'name', 'AmeriCares'),
(14499, 12113, 'en', 'name', 'Brea Fire Department'),
(14500, 12114, 'en', 'name', 'BreakOUT'),
(14501, 12115, 'en', 'name', 'Cancer Services of Northeast Indiana'),
(14502, 12116, 'no_lang_code', 'name', 'Amicus Therapeutics (United States)'),
(14503, 12117, 'en', 'name', 'Baptist Health Foundation'),
(14504, 12118, 'en', 'name', 'Cancer Society of the Bahamas'),
(14505, 12119, 'en', 'name', 'Baptist Hospital'),
(14506, 12120, 'en', 'name', 'Bay Area Community Health Advisory Council'),
(14507, 12121, 'en', 'name', 'African American Health Institute of San Bernardino County'),
(14508, 12122, 'en', 'name', 'The African-American Historical & Cultural Museum of the SJV'),
(14509, 12123, 'en', 'name', 'African Institute for Development Policy'),
(14510, 12124, 'en', 'name', 'Cancer Support Foundation'),
(14511, 12125, 'en', 'name', 'Amref Health Africa'),
(14512, 12126, 'en', 'name', 'African Organisation for Research and Training in Cancer'),
(14513, 12127, 'no_lang_code', 'name', 'Alloksys (Netherlands)'),
(14514, 12128, 'no_lang_code', 'name', 'Amrita Therapeutics (India)'),
(14515, 12129, 'en', 'name', 'Breast Cancer Care and Research Fund'),
(14516, 12130, 'en', 'name', 'Cancer Support Team'),
(14517, 12131, 'en', 'name', 'Amsterdam Nursing Home'),
(14518, 12132, 'no_lang_code', 'name', 'Amyndas Pharmaceuticals (United States)'),
(14519, 12133, 'en', 'name', 'Cancer Survivors'' Fund'),
(14520, 12134, 'no_lang_code', 'name', 'Cancer Targeted Technology (United States)'),
(14521, 12135, 'en', 'name', 'Gorlin Syndrome Alliance'),
(14522, 12136, 'en', 'name', 'Bay Area Cancer Connections'),
(14523, 12137, 'en', 'name', 'Cancer Wellness Center'),
(14524, 12138, 'en', 'name', 'Breast Cancer Family Foundation'),
(14525, 12139, 'en', 'name', 'African Women''s Cancer Awareness Association'),
(14526, 12140, 'no_lang_code', 'name', 'Andarix Pharmaceuticals (United States)'),
(14527, 12141, 'en', 'name', 'Afrihealth Optonet Association'),
(14528, 12142, 'en', 'name', 'Candlelighters Childhood Cancer Foundation of Nevada'),
(14529, 12143, 'no_lang_code', 'name', 'AGADA Biosciences'),
(14530, 12144, 'en', 'name', 'Candlelighters of West Texas & Southern New Mexico'),
(14531, 12145, 'en', 'name', 'Arizona Spinal Cord Injury Association'),
(14532, 12146, 'no_lang_code', 'name', 'Candy’s Place'),
(14533, 12147, 'de', 'name', 'Agaplesion Bethanien Krankenhaus'),
(14534, 12148, 'en', 'name', 'Breast Cancer Foundation of the Ozarks'),
(14535, 12149, 'en', 'name', 'Aging in America'),
(14536, 12150, 'en', 'name', 'Breast Cancer Help'),
(14537, 12151, 'it', 'name', 'Azienda Sanitaria Locale N. 2 Savonese'),
(14538, 12152, 'en', 'name', 'Canine Assistants'),
(14539, 12153, 'en', 'name', 'Breast Cancer Research Foundation'),
(14540, 12154, 'en', 'name', 'Aguilas El Ambiente'),
(14541, 12154, 'es', 'name', 'Asamblea Gay Unida Impactando Latinos A Superarse'),
(14542, 12155, 'en', 'name', 'Canine Companions for Independence'),
(14543, 12156, 'en', 'name', 'AIDS Community Research Consortium'),
(14544, 12157, 'en', 'name', 'Breast Cancer Resource Centre of Austin'),
(14545, 12158, 'en', 'name', 'Backbones'),
(14546, 12159, 'en', 'name', 'AIDS Healthcare Foundation'),
(14547, 12160, 'en', 'name', 'Breast International Group'),
(14548, 12161, 'en', 'name', 'AIDS Project Of The East Bay'),
(14549, 12162, 'en', 'name', 'AIDS Research Alliance'),
(14550, 12163, 'en', 'name', 'Radiant Health Centers'),
(14551, 12164, 'en', 'name', 'HCG Cancer Hospital'),
(14552, 12164, 'kn', 'name', 'ą²¹ą³†ą²²ą³ą²¤ą³ą²•ą³†ą³•ą²°ą³ ą²—ą³ą²²ą³†ą³‚ą³•ą²¬ą²²ą³ ą²Žą²‚ą²Ÿą²°ą³ą²Ŗą³ą²°ą³†ą³–ą²øą²øą³ ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(14553, 12165, 'en', 'name', 'Indian Cancer Society'),
(14554, 12166, 'en', 'name', 'Breathe California Golden Gate Public Health Partnership'),
(14555, 12167, 'en', 'name', 'Breathe California of Los Angeles County'),
(14556, 12168, 'en', 'name', 'Angel Flight South Central'),
(14557, 12169, 'en', 'name', 'Cape Cod Healthcare'),
(14558, 12170, 'en', 'name', 'Cape Fear Museum'),
(14559, 12171, 'en', 'name', 'Angel Foundation'),
(14560, 12172, 'en', 'name', 'CAPEable Adventures'),
(14561, 12173, 'en', 'name', 'Capital Rowing Club'),
(14562, 12174, 'en', 'name', 'Boston Back Bay Plastic Surgery'),
(14563, 12175, 'en', 'name', 'Capital Area Human Services'),
(14564, 12176, 'en', 'name', 'Angelica Patient Assistance Program'),
(14565, 12177, 'en', 'name', 'Capital City Area Health Education Center'),
(14566, 12178, 'en', 'name', 'Capital District Center for Independence'),
(14567, 12179, 'no_lang_code', 'name', 'Angimmune (United States)'),
(14568, 12180, 'en', 'name', 'Bassett Healthcare Network'),
(14569, 12181, 'en', 'name', 'AISECT University'),
(14570, 12181, 'hi', 'name', 'ą¤†ą¤ˆą¤øą„‡ą¤•ą„ą¤Ÿ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(14571, 12182, 'en', 'name', 'Baton Rouge General Foundation'),
(14572, 12183, 'en', 'name', 'Breathe California of Sacramento Emigrant Trails'),
(14573, 12184, 'en', 'name', 'Providence Alaska Medical Center'),
(14574, 12185, 'en', 'name', 'Breckenridge Outdoor Education Center'),
(14575, 12186, 'no_lang_code', 'name', 'Capital Meeting Planning'),
(14576, 12187, 'en', 'name', 'Bauer Research Foundation'),
(14577, 12188, 'en', 'name', 'Bay Area Community Resources'),
(14578, 12189, 'en', 'name', 'Capital of Texas Team Survivor'),
(14579, 12190, 'en', 'name', 'Bay Area Outreach and Recreation Program'),
(14580, 12191, 'en', 'name', 'Bay Area Pediatric Pulmonary Medical Corporation'),
(14581, 12192, 'en', 'name', 'Capital Region Action Against Breast Cancer'),
(14582, 12193, 'en', 'name', 'Al Shehab institution for Comprehensive Development'),
(14583, 12194, 'en', 'name', 'Brent''s Place'),
(14584, 12195, 'en', 'name', 'Bay Clinic'),
(14585, 12196, 'en', 'name', 'Bay Pines Foundation'),
(14586, 12197, 'en', 'name', 'Al-Ghad International Health Sciences Colleges'),
(14587, 12197, 'ar', 'name', 'ŁƒŁ„ŁŠŲ§ŲŖ الغد Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲµŲ­ŁŠŲ©'),
(14588, 12198, 'no_lang_code', 'name', 'Ala-Septic Pharmaceutical Research (United States)'),
(14589, 12199, 'en', 'name', 'Caporal Assistance Network'),
(14590, 12200, 'en', 'name', 'Alameda County Community Food Bank'),
(14591, 12201, 'no_lang_code', 'name', 'Caprion (Canada)'),
(14592, 12202, 'en', 'name', 'Alaska Center for Children and Adults'),
(14593, 12203, 'no_lang_code', 'name', 'Cardiavent (United States)'),
(14594, 12204, 'en', 'name', 'Bayhealth Foundation'),
(14595, 12205, 'en', 'name', 'Albany Research Institute'),
(14596, 12206, 'en', 'name', 'Cardinal Hill Rehabilitation Hospital'),
(14597, 12207, 'en', 'name', 'Alberta Cancer Foundation'),
(14598, 12208, 'en', 'name', 'Cardinal Ritter Senior Services'),
(14599, 12209, 'en', 'name', 'The Bretton Woods Committee'),
(14600, 12210, 'en', 'name', 'Albuquerque Area Indian Health Board'),
(14601, 12211, 'en', 'name', 'BC Wheelchair Sports Association'),
(14602, 12212, 'no_lang_code', 'name', 'BD Technologie (United States)'),
(14603, 12213, 'en', 'name', 'Aldersgate Camp and Retreat Center'),
(14604, 12214, 'en', 'name', 'Beads of Courage');
INSERT INTO `ror_settings` VALUES
(14605, 12215, 'en', 'name', 'Alderson Broaddus University'),
(14606, 12216, 'en', 'name', 'The Epsilon Group'),
(14607, 12217, 'en', 'name', 'Beatitudes Campus'),
(14608, 12218, 'en', 'name', 'Cardio-Facio-Cutaneous International'),
(14609, 12219, 'en', 'name', 'Bricks + Books Foundation'),
(14610, 12220, 'en', 'name', 'Care 2 Tri'),
(14611, 12221, 'en', 'name', 'Bridge II Sports'),
(14612, 12222, 'en', 'name', 'Neighborhood Health'),
(14613, 12223, 'en', 'name', 'CARE Canada'),
(14614, 12224, 'en', 'name', 'Bridgeport Hospital Foundation'),
(14615, 12225, 'en', 'name', 'Care India'),
(14616, 12226, 'en', 'name', 'Bridging Bionics Foundation'),
(14617, 12227, 'en', 'name', 'Alicia Rose Victorious Foundation'),
(14618, 12228, 'en', 'name', 'Aliis Inserviendo Consumor Foundation'),
(14619, 12229, 'en', 'name', 'Alive Hospice'),
(14620, 12230, 'en', 'name', 'Alkaptonuria Society'),
(14621, 12231, 'en', 'name', 'CARE International in Vietnam'),
(14622, 12232, 'no_lang_code', 'name', 'Alkeus Pharmaceuticals (United States)'),
(14623, 12233, 'en', 'name', 'Beaufort Memorial Hospital'),
(14624, 12234, 'en', 'name', 'Care International Sri Lanka'),
(14625, 12235, 'no_lang_code', 'name', 'Alkor Bio (Russia)'),
(14626, 12236, 'no_lang_code', 'name', 'Caregiver Technologies (United States)'),
(14627, 12237, 'no_lang_code', 'name', 'Swasthya Diabetes Care'),
(14628, 12238, 'en', 'name', 'Bristlecone Family Resources'),
(14629, 12239, 'en', 'name', 'Bedford Research Foundation'),
(14630, 12240, 'en', 'name', 'All Kinds Of Minds'),
(14631, 12241, 'en', 'name', 'All Out Adventures'),
(14632, 12242, 'en', 'name', 'All-Ukrainian Charitable Foundation Coalition of HIV-Service Organizations'),
(14633, 12243, 'en', 'name', 'Bristol Bay Area Health Corporation'),
(14634, 12244, 'no_lang_code', 'name', 'Allakos (United States)'),
(14635, 12245, 'en', 'name', 'Allegany County Health Department'),
(14636, 12246, 'en', 'name', 'Austin Children''s Chest Associates'),
(14637, 12247, 'en', 'name', 'Alleghany County Schools'),
(14638, 12248, 'en', 'name', 'Bedford VA Research Corporation'),
(14639, 12249, 'en', 'name', 'Behavioral Health Services'),
(14640, 12250, 'no_lang_code', 'name', 'CareWheels'),
(14641, 12251, 'en', 'name', 'Anhalt University of Applied Sciences'),
(14642, 12251, 'de', 'name', 'Hochschule Anhalt'),
(14643, 12252, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Italy)'),
(14644, 12253, 'en', 'name', 'Allen Temple Baptist Church'),
(14645, 12254, 'no_lang_code', 'name', 'Takara (Sweden)'),
(14646, 12255, 'en', 'name', 'Allergy, Asthma and Clinical Research Center'),
(14647, 12256, 'en', 'name', 'Alliance Community Services'),
(14648, 12257, 'en', 'name', 'Belmont Abbey College'),
(14649, 12258, 'en', 'name', 'Caribbean Environmental Health Institute'),
(14650, 12259, 'en', 'name', 'Ben Archer Health Centers'),
(14651, 12260, 'no_lang_code', 'name', 'Berand (Ireland)'),
(14652, 12261, 'en', 'name', 'British Columbia Easter Seals Society for Children with Disabilities'),
(14653, 12262, 'en', 'name', 'Bergen Catholic High School'),
(14654, 12263, 'en', 'name', 'Berklee College of Music'),
(14655, 12264, 'en', 'name', 'British Columbia Mobility Opportunities Society'),
(14656, 12265, 'en', 'name', 'Abilities In Motion'),
(14657, 12266, 'en', 'name', 'Alliance for Community Research and Development'),
(14658, 12267, 'en', 'name', 'Arizona Veterans Research and Education Foundation'),
(14659, 12268, 'no_lang_code', 'name', 'Carlebach Shul'),
(14660, 12269, 'en', 'name', 'Hosparus'),
(14661, 12270, 'en', 'name', 'Alliance of People with disAbilities'),
(14662, 12271, 'no_lang_code', 'name', 'Beta-O2 Technologies (Israel)'),
(14663, 12272, 'en', 'name', 'Bronson Health Foundation'),
(14664, 12273, 'en', 'name', 'All Star Volleyball Association'),
(14665, 12274, 'en', 'name', 'Aloha Medical Mission'),
(14666, 12275, 'en', 'name', 'Health Care Management Group'),
(14667, 12276, 'no_lang_code', 'name', 'Alpha Cancer Technologies'),
(14668, 12277, 'en', 'name', 'Alpha Omega Veterans Services'),
(14669, 12278, 'en', 'name', 'Bronx Independent Living Services'),
(14670, 12279, 'en', 'name', 'Long Island Community Hospital'),
(14671, 12280, 'en', 'name', 'Carnegie Hill Neighbors'),
(14672, 12281, 'en', 'name', 'Alpha One'),
(14673, 12282, 'en', 'name', 'The Brooklyn Rail'),
(14674, 12283, 'en', 'name', 'Brooklyn Technical High School'),
(14675, 12284, 'en', 'name', 'Carolina Veterinary Specialists'),
(14676, 12285, 'en', 'name', 'Alpine Learning Group'),
(14677, 12286, 'en', 'name', 'Beth C. Wright Cancer Resource Center'),
(14678, 12287, 'en', 'name', 'The Carolinas Center'),
(14679, 12288, 'en', 'name', 'Brown County Public Health Department'),
(14680, 12289, 'en', 'name', 'Ankhkasta Natural Healing'),
(14681, 12290, 'en', 'name', 'Brunswick County Schools'),
(14682, 12291, 'en', 'name', 'Caroline Church of Brookhaven'),
(14683, 12292, 'en', 'name', 'Ann Arbor Center for Independent Living'),
(14684, 12293, 'no_lang_code', 'name', 'Carolus Therapeutics (United States)'),
(14685, 12294, 'hu', 'name', 'Bethesda GyermekkórhÔz'),
(14686, 12295, 'no_lang_code', 'name', 'ALS Biopharma (United States)'),
(14687, 12296, 'en', 'name', 'Anna C. Scott School'),
(14688, 12297, 'en', 'name', 'Carolyn Dorfman Dance Company'),
(14689, 12298, 'no_lang_code', 'name', 'Alsa Corporation (United States)'),
(14690, 12299, 'no_lang_code', 'name', 'Annam Biosciences (United States)'),
(14691, 12300, 'en', 'name', 'Carteret County Public School System'),
(14692, 12301, 'en', 'name', 'Annaswamy Mudaliar General Hospital'),
(14693, 12302, 'en', 'name', 'Being Adept'),
(14694, 12303, 'en', 'name', 'Casting for Recovery'),
(14695, 12304, 'no_lang_code', 'name', 'Catabasis Pharmaceuticals (United States)'),
(14696, 12305, 'en', 'name', 'Belarusian Research Center For Pediatric Oncology and Hematology'),
(14697, 12305, 'ru', 'name', 'Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр Гетской онкологии, гематологии Šø иммунологии'),
(14698, 12305, 'be', 'name', 'Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŠ°Š½ŃŠŗŃ– навукова-практычны Ń†ŃŠ½Ń‚Ń€ Š“Š·Ń–Ń†ŃŃ‡Š°Š¹ анкалогіі, гематалогіі і Ń–Š¼ŃƒŠ½Š°Š»Š¾Š³Ń–Ń–'),
(14699, 12306, 'en', 'name', 'Catskill Regional Medical Center'),
(14700, 12307, 'en', 'name', 'Anti Domestic Violence Coalition'),
(14701, 12308, 'en', 'name', 'CASA for Kids'),
(14702, 12309, 'en', 'name', 'Bethel Elementary School'),
(14703, 12310, 'en', 'name', 'Any Baby Can'),
(14704, 12311, 'no_lang_code', 'name', 'AparnaBio (United States)'),
(14705, 12312, 'no_lang_code', 'name', 'ApeX Therapeutics (United States)'),
(14706, 12313, 'en', 'name', 'Apollo Hospitals'),
(14707, 12313, 'te', 'name', 'అపోలో ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±ą°øą±'),
(14708, 12314, 'no_lang_code', 'name', 'Catalyst Pharmaceuticals (United States)'),
(14709, 12315, 'no_lang_code', 'name', 'ApoVax (United States)'),
(14710, 12316, 'en', 'name', 'Worshipful Society of Apothecaries'),
(14711, 12317, 'en', 'name', 'Appalachian Mountain Advocates'),
(14712, 12318, 'no_lang_code', 'name', 'AppliCote Associates (United States)'),
(14713, 12319, 'en', 'name', 'Catapult'),
(14714, 12320, 'no_lang_code', 'name', 'Applied Biomics (United States)'),
(14715, 12321, 'en', 'name', 'Cathedral Church of Saint John the Divine'),
(14716, 12322, 'no_lang_code', 'name', 'CDG Therapeutics (United States)'),
(14717, 12323, 'en', 'name', 'Alternative Opportunities'),
(14718, 12324, 'en', 'name', 'Cathedral Health Services'),
(14719, 12325, 'no_lang_code', 'name', 'Aptitude Medical Systems'),
(14720, 12326, 'en', 'name', 'Aquinas College - Michigan'),
(14721, 12327, 'en', 'name', 'Betty Jean Kerr People’s Health Centers'),
(14722, 12328, 'en', 'name', 'Arkansas Spinal Cord Commission'),
(14723, 12329, 'en', 'name', 'ARC Community Services'),
(14724, 12330, 'en', 'name', 'Cecil County Health Department'),
(14725, 12331, 'en', 'name', 'Catholic Charities'),
(14726, 12332, 'es', 'name', 'CECOLFES'),
(14727, 12333, 'en', 'name', 'Catholic Charities of the Archdiocese of Chicago'),
(14728, 12334, 'en', 'name', 'Burn Institute'),
(14729, 12335, 'en', 'name', 'Bhagwan Mahaveer Cancer Hospital and Research Centre'),
(14730, 12336, 'en', 'name', 'Catholic Charities of the Diocese of St. Cloud'),
(14731, 12337, 'en', 'name', 'Bhaktapur Cancer Hospital'),
(14732, 12337, 'ne', 'name', 'ą¤­ą¤•ą„ą¤¤ą¤Ŗą„ą¤° ą¤•ą„ą¤Æą¤¾ą¤Øą„ą¤øą¤° ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(14733, 12338, 'en', 'name', 'Diocese of Lansing'),
(14734, 12339, 'en', 'name', 'Catholic Family Center'),
(14735, 12340, 'en', 'name', 'Celebration Stem Cell Centre'),
(14736, 12341, 'en', 'name', 'Big Brothers Big Sisters of Vermilion County'),
(14737, 12342, 'no_lang_code', 'name', 'Arecor (United Kingdom)'),
(14738, 12343, 'en', 'name', 'Areufit Health Services'),
(14739, 12344, 'en', 'name', 'Charlotte Maxwell Clinic'),
(14740, 12345, 'en', 'name', 'Bike and Build'),
(14741, 12346, 'no_lang_code', 'name', 'Argos Therapeutics (United States)'),
(14742, 12347, 'en', 'name', 'Charlotte-Mecklenburg Schools'),
(14743, 12348, 'no_lang_code', 'name', 'Bio-Nucleonics (United States)'),
(14744, 12349, 'no_lang_code', 'name', 'Ariadne Diagnostics (United States)'),
(14745, 12350, 'en', 'name', 'Journey Museum'),
(14746, 12351, 'en', 'name', 'Arie Crown Hebrew Day School'),
(14747, 12352, 'no_lang_code', 'name', 'Bioarray Genetics (United States)'),
(14748, 12353, 'no_lang_code', 'name', 'Celladon Corporation (United States)'),
(14749, 12354, 'no_lang_code', 'name', 'BioBlast Pharma (Israel)'),
(14750, 12355, 'en', 'name', 'Chase Brexton Health Care'),
(14751, 12356, 'en', 'name', 'Chase Foundation'),
(14752, 12357, 'no_lang_code', 'name', 'Altos Therapeutics (United States)'),
(14753, 12358, 'no_lang_code', 'name', 'BioCrea (Germany)'),
(14754, 12359, 'no_lang_code', 'name', 'Biodel (United States)'),
(14755, 12360, 'en', 'name', 'Chelsea and Westminster Hospital NHS Foundation Trust'),
(14756, 12361, 'no_lang_code', 'name', 'Cellular Engineering Technologies (United States)'),
(14757, 12362, 'no_lang_code', 'name', 'CheminPharma (United States)'),
(14758, 12363, 'en', 'name', 'BioFact Environmental Health Research Center'),
(14759, 12364, 'en', 'name', 'Chemo Comfort'),
(14760, 12365, 'en', 'name', 'Chenango Health Network'),
(14761, 12366, 'en', 'name', 'Cherokee Boys Club'),
(14762, 12367, 'en', 'name', 'Cherokee Central Schools'),
(14763, 12368, 'en', 'name', 'Arkansas Prostate Cancer Foundation'),
(14764, 12369, 'no_lang_code', 'name', 'BioEnergetics (United States)'),
(14765, 12370, 'en', 'name', 'College of the Ozarks'),
(14766, 12371, 'en', 'name', 'Arlington Free Clinic'),
(14767, 12372, 'no_lang_code', 'name', 'Biojenc (United States)'),
(14768, 12373, 'en', 'name', 'Archdiocese of New Orleans'),
(14769, 12374, 'en', 'name', 'Collinsville Area Recreation District'),
(14770, 12375, 'en', 'name', 'Life Sciences Research Partners'),
(14771, 12376, 'no_lang_code', 'name', 'Chersco (United States)'),
(14772, 12377, 'en', 'name', 'Cheshire Home'),
(14773, 12378, 'en', 'name', 'Center for Accessible Living'),
(14774, 12379, 'en', 'name', 'Cheshire Medical Center'),
(14775, 12380, 'en', 'name', 'Chess in the Schools'),
(14776, 12381, 'no_lang_code', 'name', 'ARMGO Pharma (United States)'),
(14777, 12382, 'en', 'name', 'Chest Medicine Associates'),
(14778, 12383, 'en', 'name', 'Center for Advanced Diagnostics, Evaluation and Therapeutics'),
(14779, 12384, 'en', 'name', 'Chez Panisse Restaurant and Cafe'),
(14780, 12385, 'en', 'name', 'Arms Wide Open Community Development Corporation'),
(14781, 12386, 'en', 'name', 'Chicago Association of Black Social Workers'),
(14782, 12387, 'en', 'name', 'Chicago Child Care Society'),
(14783, 12388, 'en', 'name', 'Cares Community Health'),
(14784, 12389, 'en', 'name', 'Center for American Progress'),
(14785, 12390, 'en', 'name', 'Chicago Heights Park District'),
(14786, 12391, 'en', 'name', 'Army Hospital Research and Referral'),
(14787, 12391, 'hi', 'name', 'ą¤†ą¤°ą„ą¤®ą„€ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤ą¤‚ą¤” ą¤°ą„‡ą¤«ą„‡ą¤°ą„ą¤°ą¤²'),
(14788, 12392, 'en', 'name', 'Center for Asthma, Allergy and Respiratory Disease'),
(14789, 12393, 'en', 'name', 'Columbia County Commission on Children and Families'),
(14790, 12394, 'en', 'name', 'Child Abuse Prevention Services of Tuscaloosa'),
(14791, 12395, 'en', 'name', 'Child Aid Organization Kenya'),
(14792, 12396, 'en', 'name', 'Center for Biomedical Research of La Rioja'),
(14793, 12396, 'es', 'name', 'Centro de Investigación Biomédica de La Rioja'),
(14794, 12397, 'en', 'name', 'Center for Black Women’s Wellness'),
(14795, 12398, 'en', 'name', 'Columbus Community Clinical Oncology Program'),
(14796, 12399, 'en', 'name', 'Comanche County Juvenile Bureau'),
(14797, 12400, 'no_lang_code', 'name', 'Artemisia BioMedical (United States)'),
(14798, 12401, 'en', 'name', 'Child and Family Services of New Hampshire'),
(14799, 12402, 'en', 'name', 'CombiMatrix'),
(14800, 12403, 'en', 'name', 'Child Care Resource & Referral'),
(14801, 12404, 'en', 'name', 'Child Guidance Center'),
(14802, 12405, 'en', 'name', 'Arthur Ashe Learning Center'),
(14803, 12406, 'en', 'name', 'Child Health Corporation of America'),
(14804, 12407, 'en', 'name', 'Florida Center for Change'),
(14805, 12408, 'en', 'name', 'Combined Community Action'),
(14806, 12409, 'en', 'name', 'Comer Children''s Hospital'),
(14807, 12410, 'en', 'name', 'Child Protection Network'),
(14808, 12411, 'en', 'name', 'Comer Family Foundation'),
(14809, 12412, 'en', 'name', 'Florida Department of Juvenile Justice'),
(14810, 12413, 'no_lang_code', 'name', 'COMHAR'),
(14811, 12414, 'en', 'name', 'Nathan Adelson Hospice'),
(14812, 12415, 'en', 'name', 'Childhood Leukemia Foundation'),
(14813, 12416, 'en', 'name', 'Coming Home Connection'),
(14814, 12417, 'en', 'name', 'Childline South Africa'),
(14815, 12418, 'en', 'name', 'Creative Aging Network-NC'),
(14816, 12419, 'en', 'name', 'Children with Cancer UK'),
(14817, 12420, 'en', 'name', 'Children''s Aid Society'),
(14818, 12421, 'en', 'name', 'Children''s Brain Tumor Foundation'),
(14819, 12422, 'en', 'name', 'Children''s Cancer and Blood Foundation'),
(14820, 12423, 'en', 'name', 'Children''s Cancer Association'),
(14821, 12424, 'en', 'name', 'Center for Development Services'),
(14822, 12425, 'en', 'name', 'Center for Health and Learning'),
(14823, 12426, 'en', 'name', 'Children''s Cancer Center'),
(14824, 12427, 'en', 'name', 'Memorial Health System'),
(14825, 12428, 'en', 'name', 'Advanced ENT and Allergy'),
(14826, 12429, 'en', 'name', 'Center for Health Consultation and Community Development'),
(14827, 12429, 'vi', 'name', 'Trung tĆ¢m tʰ vįŗ„n sức khį»e vĆ  phĆ”t triển cį»™ng đồng'),
(14828, 12430, 'en', 'name', 'Artistic Realization Technologies'),
(14829, 12431, 'en', 'name', 'Arts For Life'),
(14830, 12432, 'en', 'name', 'Communities In Schools of Orange County'),
(14831, 12433, 'en', 'name', 'ArtThread Foundation'),
(14832, 12434, 'en', 'name', 'Community Access'),
(14833, 12435, 'en', 'name', 'Children Cancer Hospital'),
(14834, 12435, 'ar', 'name', 'لمؤسسة مستؓفى سرطان الأطفال'),
(14835, 12436, 'en', 'name', 'Children''s Center'),
(14836, 12437, 'en', 'name', 'Children''s Health & Research Foundation'),
(14837, 12438, 'en', 'name', 'CARE of Southeastern Michigan'),
(14838, 12439, 'en', 'name', 'Ashby House'),
(14839, 12440, 'en', 'name', 'Children''s Home and Aid'),
(14840, 12441, 'en', 'name', 'Community Cancer Center'),
(14841, 12442, 'en', 'name', 'Ashe Memorial Hospital'),
(14842, 12443, 'en', 'name', 'Asheboro City Schools'),
(14843, 12444, 'en', 'name', 'Community Cancer Services'),
(14844, 12445, 'en', 'name', 'Children''s Home Association of Illinois'),
(14845, 12446, 'en', 'name', 'Community Care Partners'),
(14846, 12447, 'no_lang_code', 'name', 'Asher Consulting (United States)'),
(14847, 12448, 'en', 'name', 'The University of Arizona Global Campus'),
(14848, 12449, 'en', 'name', 'Center for Independent Living'),
(14849, 12450, 'en', 'name', 'Community Development and Sustainability Organization'),
(14850, 12451, 'en', 'name', 'Center for Independent Living of Broward'),
(14851, 12452, 'en', 'name', 'Center for Independent Living of Central Pennsylvania'),
(14852, 12453, 'en', 'name', 'Community Health Development'),
(14853, 12454, 'en', 'name', 'Community Health and Emergency Services'),
(14854, 12455, 'en', 'name', 'Asian American Community Services'),
(14855, 12456, 'en', 'name', 'HOPE Clinic'),
(14856, 12457, 'en', 'name', 'Community Health Center'),
(14857, 12458, 'en', 'name', 'Community Health Centers of Pinellas'),
(14858, 12459, 'en', 'name', 'Center for Information and Study on Clinical Research Participation'),
(14859, 12460, 'en', 'name', 'Asian Health Services'),
(14860, 12461, 'en', 'name', 'Community Health for Asian Americans'),
(14861, 12462, 'en', 'name', 'Community Health Partnership'),
(14862, 12463, 'en', 'name', 'Community Health Resource Center'),
(14863, 12464, 'en', 'name', 'Asian Pacific AIDS Intervention Team'),
(14864, 12465, 'en', 'name', 'Community Medical Centers'),
(14865, 12466, 'en', 'name', 'Asian Services In Action'),
(14866, 12467, 'en', 'name', 'Children''s Institute of Pittsburgh'),
(14867, 12468, 'en', 'name', 'Children''s Leukaemia Research Project'),
(14868, 12469, 'en', 'name', 'Community Impact'),
(14869, 12470, 'en', 'name', 'Community In Action'),
(14870, 12471, 'es', 'name', 'Asociación DemogrÔfica Costarricense'),
(14871, 12472, 'en', 'name', 'Children''s Music Fund'),
(14872, 12473, 'en', 'name', 'Center for Neurorehabilitation Services'),
(14873, 12474, 'en', 'name', 'Center for Pan Asian Community Services'),
(14874, 12475, 'ro', 'name', 'Asociaţia Femeilor de Afaceri'),
(14875, 12476, 'en', 'name', 'Children''s Research Triangle'),
(14876, 12477, 'en', 'name', 'Whittier Street Health Center'),
(14877, 12478, 'ro', 'name', 'Asociatia pentru libertate si egalitate de gen'),
(14878, 12478, 'en', 'name', 'Association for Liberty and Equality of Gender'),
(14879, 12479, 'en', 'name', 'Community Reach of Montgomery County'),
(14880, 12480, 'en', 'name', 'Cancer Survivor Center'),
(14881, 12481, 'en', 'name', 'Aspen University'),
(14882, 12482, 'en', 'name', 'Asperger/Autism Network'),
(14883, 12483, 'en', 'name', 'Community Rowing'),
(14884, 12484, 'en', 'name', 'Integrate Autism Employment Advisors'),
(14885, 12485, 'en', 'name', 'Community Service Council'),
(14886, 12486, 'en', 'name', 'Children''s Specialized Hospital'),
(14887, 12487, 'en', 'name', 'Aspira'),
(14888, 12488, 'en', 'name', 'Children''s Specialty Group'),
(14889, 12489, 'en', 'name', 'Children''s Therapy Center'),
(14890, 12490, 'en', 'name', 'Community Service Society'),
(14891, 12491, 'en', 'name', 'Palm Beach Children''s Hospital'),
(14892, 12492, 'en', 'name', 'Community Servings'),
(14893, 12493, 'no_lang_code', 'name', 'Rakuten (United States)'),
(14894, 12494, 'en', 'name', 'Community Support Network'),
(14895, 12495, 'no_lang_code', 'name', 'Compliment Corporation (United States)'),
(14896, 12496, 'en', 'name', 'Comprehensive Autism and related Disabilities Education and Training'),
(14897, 12497, 'en', 'name', 'Rowan-Salisbury School System'),
(14898, 12498, 'en', 'name', 'Desert AIDS Project'),
(14899, 12499, 'en', 'name', 'Adventist HealthCare Rehabilitation'),
(14900, 12500, 'en', 'name', 'Desi Geestman Foundation'),
(14901, 12501, 'en', 'name', 'Center for the Study of Healthcare Provider Behavior'),
(14902, 12502, 'en', 'name', 'Detroit Clinical Research Center'),
(14903, 12503, 'en', 'name', 'Chinese Christian Herald Crusades'),
(14904, 12504, 'en', 'name', 'Deutsch Institute'),
(14905, 12505, 'en', 'name', 'Center for Wellness and Achievement in Education'),
(14906, 12506, 'no_lang_code', 'name', 'Evotec (Germany)'),
(14907, 12507, 'en', 'name', 'Center for Women Policy'),
(14908, 12508, 'en', 'name', 'Chinese Community Health Resource Center'),
(14909, 12509, 'no_lang_code', 'name', 'Signal Genetics (United States)'),
(14910, 12510, 'en', 'name', 'Choate Rosemary Hall'),
(14911, 12511, 'en', 'name', 'Assistive Technology of Alaska'),
(14912, 12512, 'en', 'name', 'Chocowinity Primary School'),
(14913, 12513, 'no_lang_code', 'name', 'Chondrial Therapeutics (United States)'),
(14914, 12514, 'pt', 'name', 'Associação Ilumina'),
(14915, 12515, 'en', 'name', 'Pathlight'),
(14916, 12516, 'en', 'name', 'Christine M. Kleinert Institute'),
(14917, 12517, 'en', 'name', 'Center Point'),
(14918, 12518, 'en', 'name', 'Connecting to Care'),
(14919, 12519, 'en', 'name', 'Christopher and Dana Reeve Foundation'),
(14920, 12520, 'en', 'name', 'Centers for New Horizons'),
(14921, 12521, 'en', 'name', 'Diagnostics For All'),
(14922, 12522, 'en', 'name', 'ASK Childhood Cancer Foundation'),
(14923, 12523, 'en', 'name', 'Association for Womens Rights in Development'),
(14924, 12524, 'en', 'name', 'Association House of Chicago'),
(14925, 12525, 'no_lang_code', 'name', 'Connexios (India)'),
(14926, 12526, 'en', 'name', 'CHRISTUS Spohn Hospital Corpus Christi - Memorial'),
(14927, 12527, 'no_lang_code', 'name', 'Sandvik (United States)'),
(14928, 12528, 'en', 'name', 'CentraCare Health System'),
(14929, 12529, 'en', 'name', 'Consolidated Tribal Health Project'),
(14930, 12530, 'en', 'name', 'CHRISTUS St. Patrick Hospital'),
(14931, 12531, 'en', 'name', 'Dillard Academy'),
(14932, 12532, 'es', 'name', 'Fondo Centroamericano de Mujeres'),
(14933, 12533, 'en', 'name', 'Direct Relief'),
(14934, 12534, 'en', 'name', 'Consumers for Affordable Health Care'),
(14935, 12535, 'en', 'name', 'Chronic Disease Fund'),
(14936, 12536, 'no_lang_code', 'name', 'Contax (United States)'),
(14937, 12537, 'en', 'name', 'Contra Costa County Office of Education'),
(14938, 12538, 'no_lang_code', 'name', 'Controlled Chemicals (United States)'),
(14939, 12539, 'en', 'name', 'DeWitt County Human Resource Center'),
(14940, 12540, 'en', 'name', 'Tubman'),
(14941, 12541, 'en', 'name', 'Disability Resource Association'),
(14942, 12542, 'en', 'name', 'Central Arkansas Radiation Therapy Institute'),
(14943, 12543, 'en', 'name', 'Disabled Athlete Sports Association'),
(14944, 12544, 'en', 'name', 'Conway Regional Health System'),
(14945, 12545, 'en', 'name', 'Disabled Sailing Association of British Columbia'),
(14946, 12546, 'en', 'name', 'Disabled Sports Eastern Sierra'),
(14947, 12547, 'en', 'name', 'Cook County Health and Hospitals System'),
(14948, 12548, 'en', 'name', 'DĆ­a de la Mujer Latina'),
(14949, 12549, 'en', 'name', 'Chula Vista Community Collaborative'),
(14950, 12550, 'en', 'name', 'Central Asia Institute'),
(14951, 12551, 'en', 'name', 'Cooke School and Institute'),
(14952, 12552, 'en', 'name', 'Move United'),
(14953, 12553, 'en', 'name', 'Cookeville Regional Medical Center'),
(14954, 12554, 'no_lang_code', 'name', 'Chulabhorn Hospital'),
(14955, 12554, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøˆąøøąø¬ąø²ąø ąø£ąø“ą¹Œ'),
(14956, 12555, 'en', 'name', 'Achieve Tahoe'),
(14957, 12556, 'en', 'name', 'COPE Health Solutions'),
(14958, 12557, 'en', 'name', 'Disabled Veterans Insurance Careers'),
(14959, 12558, 'en', 'name', 'Central Coast Center for Independent Living'),
(14960, 12559, 'en', 'name', 'Wayne County Public Schools'),
(14961, 12560, 'en', 'name', 'Rush Copley Foundation'),
(14962, 12561, 'en', 'name', 'Broward County Public Schools'),
(14963, 12562, 'en', 'name', 'Central Connecticut Regional Planning Agency'),
(14964, 12563, 'en', 'name', 'CORE Foundation'),
(14965, 12564, 'en', 'name', 'Cornucopia Cancer Support Center'),
(14966, 12565, 'en', 'name', 'Divers 4 Heroes'),
(14967, 12566, 'no_lang_code', 'name', 'Cientive Group (United States)'),
(14968, 12567, 'en', 'name', 'Central Council of the Tlingit and Haida Indian Tribes of Alaska'),
(14969, 12568, 'en', 'name', 'Cigarette Butt Pollution Project'),
(14970, 12569, 'no_lang_code', 'name', 'CIMA Software Corporation (United States)'),
(14971, 12570, 'en', 'name', 'The Recovery Center'),
(14972, 12571, 'en', 'name', 'Cottage Health'),
(14973, 12572, 'en', 'name', 'Community Health Works'),
(14974, 12573, 'en', 'name', 'Cotting School'),
(14975, 12574, 'en', 'name', 'Council for Jewish Elderly'),
(14976, 12575, 'en', 'name', 'Council for the Welfare of Children'),
(14977, 12576, 'en', 'name', 'Council on Alcohol and Drug Abuse Coastal Bend'),
(14978, 12577, 'en', 'name', 'HCG NCHRI Cancer Centre'),
(14979, 12578, 'en', 'name', 'County of Sonoma Department of Health Services'),
(14980, 12579, 'en', 'name', 'Community Breast Care Project'),
(14981, 12580, 'en', 'name', 'Court Appointed Special Advocates of Union County'),
(14982, 12581, 'en', 'name', 'CĆ­rculo de Vida'),
(14983, 12582, 'en', 'name', 'Cuyahoga County Juvenile Court'),
(14984, 12583, 'en', 'name', 'Cisco And Cisco Productions'),
(14985, 12584, 'no_lang_code', 'name', 'Courtagen Life Sciences (United States)'),
(14986, 12585, 'en', 'name', 'Médecins Sans Frontières'),
(14987, 12586, 'en', 'name', 'The Doe Fund'),
(14988, 12587, 'en', 'name', 'CoxHealth Foundation'),
(14989, 12588, 'no_lang_code', 'name', 'DonorsChoose'),
(14990, 12589, 'en', 'name', 'Citizens Committee for New York City'),
(14991, 12590, 'en', 'name', 'Council On Aging of Central Oregon'),
(14992, 12591, 'en', 'name', 'Door to Hope'),
(14993, 12592, 'en', 'name', 'Coyote Canyon Rehabilitation Center'),
(14994, 12593, 'en', 'name', 'Citizens of Lake County for Health Care'),
(14995, 12594, 'en', 'name', 'Citizens United for Research in Epilepsy'),
(14996, 12595, 'no_lang_code', 'name', 'DormaTarg (United States)'),
(14997, 12596, 'en', 'name', 'Central Park Conservancy'),
(14998, 12597, 'en', 'name', 'Cradle of Forestry'),
(14999, 12598, 'en', 'name', 'City Bar Justice Center'),
(15000, 12599, 'en', 'name', 'Citymeals on Wheels'),
(15001, 12600, 'en', 'name', 'CRDF Global'),
(15002, 12601, 'no_lang_code', 'name', 'CreaGen (United States)'),
(15003, 12602, 'en', 'name', 'Creating Hope'),
(15004, 12603, 'en', 'name', 'EvergreenHealth'),
(15005, 12604, 'en', 'name', 'Double ARC'),
(15006, 12605, 'no_lang_code', 'name', 'Symphony Technology (United States)'),
(15007, 12606, 'no_lang_code', 'name', 'Dose Safety (United States)'),
(15008, 12607, 'no_lang_code', 'name', 'Creative Scientist (United States)'),
(15009, 12608, 'no_lang_code', 'name', 'Exsulin (United States)'),
(15010, 12609, 'no_lang_code', 'name', 'Exact Sciences (United States)'),
(15011, 12610, 'en', 'name', 'Excelsior College'),
(15012, 12611, 'en', 'name', 'Dr Dozo Laboratories'),
(15013, 12612, 'en', 'name', 'Department of Health and Human Services'),
(15014, 12613, 'en', 'name', 'Executive Frameworks'),
(15015, 12614, 'en', 'name', 'Horizon Behavioral Health'),
(15016, 12615, 'en', 'name', 'Department of Public Health'),
(15017, 12616, 'en', 'name', 'EXPAND Beyond'),
(15018, 12617, 'en', 'name', 'Bhubaneswar Borooah Cancer Institute'),
(15019, 12618, 'en', 'name', 'Crescent Development Foundation'),
(15020, 12619, 'en', 'name', 'City Parks Foundation'),
(15021, 12620, 'en', 'name', 'Dragonfly Forest'),
(15022, 12621, 'no_lang_code', 'name', 'Expression Drug Designs (United States)'),
(15023, 12622, 'en', 'name', 'Dream Catchers Therapeutic Riding'),
(15024, 12623, 'en', 'name', 'Cris Collinsworth ProScan Fund'),
(15025, 12624, 'en', 'name', 'Dreams for Kids'),
(15026, 12625, 'en', 'name', 'Crossroads Community Hospital'),
(15027, 12626, 'en', 'name', 'CentraState Healthcare Foundation'),
(15028, 12627, 'en', 'name', 'Crosswinds Equine Rescue'),
(15029, 12628, 'no_lang_code', 'name', 'Eyenuk (United States)'),
(15030, 12629, 'en', 'name', 'Eyes Wide Open International'),
(15031, 12630, 'en', 'name', 'University of Maryland Charles Regional Medical Center'),
(15032, 12631, 'en', 'name', 'Clara Martin Center'),
(15033, 12632, 'en', 'name', 'Dup15q Alliance'),
(15034, 12633, 'en', 'name', 'Faces of Courage Foundation'),
(15035, 12634, 'en', 'name', 'Durham Public Schools'),
(15036, 12635, 'en', 'name', 'Facial Plastics Surgery Associates'),
(15037, 12636, 'en', 'name', 'Centre for Community Justice and Development'),
(15038, 12637, 'en', 'name', 'Clark Family Breast Cancer Services'),
(15039, 12638, 'en', 'name', 'Centre for Omic Sciences'),
(15040, 12639, 'no_lang_code', 'name', 'CSL (United States)'),
(15041, 12640, 'nl', 'name', 'Borstkankervereniging Nederland'),
(15042, 12640, 'en', 'name', 'Breast Cancer Association Netherlands'),
(15043, 12641, 'en', 'name', 'Claxton-Hepburn Medical Center'),
(15044, 12642, 'en', 'name', 'Dwight School'),
(15045, 12643, 'en', 'name', 'CSUF Auxiliary Services'),
(15046, 12644, 'en', 'name', 'Clay County Health Department'),
(15047, 12645, 'en', 'name', 'CSU Ventures'),
(15048, 12646, 'en', 'name', 'Centre for Rights Education and Awareness'),
(15049, 12647, 'en', 'name', 'Clean Needles Now'),
(15050, 12648, 'en', 'name', 'Centre for Sexuality and Health Research and Policy'),
(15051, 12649, 'en', 'name', 'Eagle Mount'),
(15052, 12650, 'en', 'name', 'Centre for the AIDS Programme of Research in South Africa'),
(15053, 12651, 'no_lang_code', 'name', 'AkibaUhaki Foundation'),
(15054, 12652, 'en', 'name', 'Cultural Humanitarian Fund Sukhumi'),
(15055, 12653, 'en', 'name', 'Fairmont City Library Center'),
(15056, 12654, 'en', 'name', 'Faith Equestrian Therapeutic Center'),
(15057, 12655, 'en', 'name', 'CLIC Sargent'),
(15058, 12656, 'no_lang_code', 'name', 'Falcon Genomics (United States)'),
(15059, 12657, 'en', 'name', 'Jackson County Public Schools'),
(15060, 12658, 'en', 'name', 'Family Health Center of Worcester'),
(15061, 12659, 'en', 'name', 'Adagio Health'),
(15062, 12660, 'en', 'name', 'Clinica de Pneumologie Iaşi'),
(15063, 12661, 'en', 'name', 'Alliance of Health Organizations'),
(15064, 12662, 'en', 'name', 'Family Health Options Kenya'),
(15065, 12663, 'en', 'name', 'ENT and Allergy Associates of Florida'),
(15066, 12664, 'en', 'name', 'Clinica Sierra Vista'),
(15067, 12665, 'en', 'name', 'Family Service Center of Galveston County'),
(15068, 12666, 'en', 'name', 'Family Service League'),
(15069, 12667, 'en', 'name', 'Clinical Directors Network'),
(15070, 12668, 'en', 'name', 'NorthEast Ohio Neighborhood Health Services'),
(15071, 12669, 'no_lang_code', 'name', 'CuraVac (United States)'),
(15072, 12670, 'en', 'name', 'Evergreen Behavioral Health'),
(15073, 12671, 'en', 'name', 'Exercise and Survivorship Education Cancer Foundation'),
(15074, 12672, 'en', 'name', 'Faraja Cancer Support Trust'),
(15075, 12673, 'no_lang_code', 'name', 'Farmington Pharma Development (United States)'),
(15076, 12674, 'en', 'name', 'Clinicas de Salud del Pueblo'),
(15077, 12675, 'es', 'name', 'Centro de Epilepsia y NeurocirugĆ­a Funcional'),
(15078, 12676, 'en', 'name', 'CliniWorks'),
(15079, 12677, 'en', 'name', 'Clinton Bush Haiti Fund'),
(15080, 12678, 'no_lang_code', 'name', 'Domain Therapeutics (France)'),
(15081, 12679, 'es', 'name', 'Centro de Información y Desarrollo de la Mujer'),
(15082, 12680, 'en', 'name', 'Clonexpress'),
(15083, 12681, 'no_lang_code', 'name', 'Curewize Health'),
(15084, 12682, 'en', 'name', 'Faxton St. Luke''s Healthcare'),
(15085, 12683, 'no_lang_code', 'name', 'CuriRx (United States)'),
(15086, 12684, 'no_lang_code', 'name', 'OPKO Health (United States)'),
(15087, 12685, 'no_lang_code', 'name', 'Cvergenx (United States)'),
(15088, 12686, 'es', 'name', 'Fundacion Favaloro Hospital Universitario'),
(15089, 12687, 'es', 'name', 'Centro de Investigación en Alimentación y Desarrollo'),
(15090, 12688, 'en', 'name', 'Institute for Macromolecular Studies'),
(15091, 12688, 'it', 'name', 'Istituto per lo Studio delle Macromolecole'),
(15092, 12689, 'en', 'name', 'Federal College of Education, Kano'),
(15093, 12690, 'en', 'name', 'Institute of Cell Biology and Neurobiology'),
(15094, 12690, 'it', 'name', 'Istituto di Biologia Cellulare e Neurobiologia'),
(15095, 12691, 'en', 'name', 'Institute of Cognitive Sciences and Technologies'),
(15096, 12691, 'it', 'name', 'Istituto di Scienze e Tecnologie della Cognizione'),
(15097, 12692, 'en', 'name', 'Institute of Electronics, Computer and Telecommunication Engineering'),
(15098, 12692, 'it', 'name', 'Istituto di Elettronica e di lngegneria dell''Informazione e delle Telecomunicazioni'),
(15099, 12693, 'en', 'name', 'San Ysidro Health'),
(15100, 12694, 'en', 'name', 'Fieldstone Farm Therapeutic Riding Center'),
(15101, 12695, 'no_lang_code', 'name', 'CytoSorbents (United States)'),
(15102, 12696, 'en', 'name', 'Institute of Genetic and Biomedical Research'),
(15103, 12696, 'it', 'name', 'Istituto di Ricerca Genetica e Biomedica'),
(15104, 12697, 'es', 'name', 'HM Hospitales'),
(15105, 12698, 'it', 'name', 'Centro Internazionale Studi Diabete'),
(15106, 12699, 'es', 'name', 'Hospital Donación Francisco Santojanni'),
(15107, 12700, 'en', 'name', 'East Georgia Cancer Coalition'),
(15108, 12701, 'en', 'name', 'Institute of Molecular Bioimaging and Physiology'),
(15109, 12701, 'it', 'name', 'Istituto di Bioimmagini e Fisiologia Molecolare'),
(15110, 12702, 'en', 'name', 'East Harlem School'),
(15111, 12703, 'en', 'name', 'East Harlem Tutorial Program'),
(15112, 12704, 'en', 'name', 'East Palo Alto Kids Foundation'),
(15113, 12705, 'en', 'name', 'Felicity House'),
(15114, 12706, 'no_lang_code', 'name', 'Daiichi Sankyo (United States)'),
(15115, 12707, 'en', 'name', 'Daily Bread Soup Kitchen'),
(15116, 12708, 'en', 'name', 'Dalton School'),
(15117, 12709, 'en', 'name', 'Dalton State College'),
(15118, 12710, 'en', 'name', 'East Texas Baptist University'),
(15119, 12711, 'es', 'name', 'Centro Paraguayo de Estudios de Población -'),
(15120, 12711, 'en', 'name', 'Paraguayan Center for Population Studies'),
(15121, 12712, 'en', 'name', 'Institute of Translational Pharmacology'),
(15122, 12712, 'it', 'name', 'Istituto di Farmacologia Traslazionale'),
(15123, 12713, 'en', 'name', 'DAWN Center for Independent Living'),
(15124, 12714, 'en', 'name', 'Day Kimball Healthcare'),
(15125, 12715, 'en', 'name', 'DC Cancer Consortium'),
(15126, 12716, 'en', 'name', 'Minnesota Association of Deaf Citizens'),
(15127, 12717, 'no_lang_code', 'name', 'Fidelity Biosciences (United States)'),
(15128, 12718, 'en', 'name', 'Eastchester Center for Cancer Care'),
(15129, 12719, 'en', 'name', 'Fighting Chance'),
(15130, 12720, 'en', 'name', 'Cerebral Palsy Research Foundation'),
(15131, 12721, 'en', 'name', 'Northeast Regional Cancer Institute'),
(15132, 12722, 'en', 'name', 'Filmmakers Collaborative'),
(15133, 12723, 'en', 'name', 'DeKalb County Health Department'),
(15134, 12724, 'no_lang_code', 'name', 'Cerulean Pharma (United States)'),
(15135, 12725, 'en', 'name', 'Chai Lifeline'),
(15136, 12726, 'en', 'name', 'Eastern Nebraska Wheelchair Athletic Association'),
(15137, 12727, 'en', 'name', 'Delaware Breast Cancer Coalition'),
(15138, 12728, 'en', 'name', 'Challenge Alaska'),
(15139, 12729, 'en', 'name', 'Eastern Oregon Center for Independent Living'),
(15140, 12730, 'en', 'name', 'Challenge Aspen'),
(15141, 12731, 'en', 'name', 'Challenged Athletes Foundation'),
(15142, 12732, 'en', 'name', 'Champions Made From Adversity'),
(15143, 12733, 'en', 'name', 'Dellon Institutes for Peripheral Nerve Surgery'),
(15144, 12734, 'en', 'name', 'Delmont Public Library'),
(15145, 12735, 'en', 'name', 'Champlain Valley Physicians Hospital'),
(15146, 12736, 'en', 'name', 'ChangeLab Solutions'),
(15147, 12737, 'en', 'name', 'Coalition For A Safe Environment'),
(15148, 12738, 'en', 'name', 'Changing Life Education Initiative'),
(15149, 12739, 'en', 'name', 'Demoiselle 2 Femme'),
(15150, 12740, 'en', 'name', 'Chapel Haven Schleifer Center'),
(15151, 12741, 'en', 'name', 'Chapel Hill Training Outreach Project'),
(15152, 12742, 'en', 'name', 'Chapel Hill Carrboro City Schools'),
(15153, 12743, 'en', 'name', 'Denver Indian Center'),
(15154, 12744, 'en', 'name', 'Denver School of Nursing'),
(15155, 12745, 'en', 'name', 'Coalition of Immokalee Workers'),
(15156, 12746, 'no_lang_code', 'name', 'Coastal Anesthesiology Consultants (United States)'),
(15157, 12747, 'en', 'name', 'Firefighter Cancer Support Network'),
(15158, 12748, 'en', 'name', 'Coastal Health District'),
(15159, 12749, 'en', 'name', 'Coastal Steward Long Island'),
(15160, 12750, 'no_lang_code', 'name', 'Coastside Bio Resources (United States)'),
(15161, 12751, 'en', 'name', 'Cobb and Douglas County Community Services Board'),
(15162, 12752, 'en', 'name', 'Eastern Cooperative Oncology Group'),
(15163, 12753, 'en', 'name', 'Coconino Community College Foundation'),
(15164, 12754, 'en', 'name', 'Coda Alliance'),
(15165, 12755, 'en', 'name', 'ARC of Oswego County'),
(15166, 12756, 'no_lang_code', 'name', 'Edelweiss Gestão Empresarial (Brazil)'),
(15167, 12757, 'en', 'name', 'Edgar County Public Health Department'),
(15168, 12758, 'no_lang_code', 'name', 'Chaperone Therapeutics (United States)'),
(15169, 12759, 'en', 'name', 'Firelands Regional Medical Center'),
(15170, 12760, 'en', 'name', 'Lexington City Schools'),
(15171, 12761, 'en', 'name', 'First Baptist Church-West'),
(15172, 12762, 'en', 'name', 'Brickhouse Equestrian Center'),
(15173, 12763, 'en', 'name', 'Charleston Breast Center'),
(15174, 12764, 'no_lang_code', 'name', 'Cogito (United States)'),
(15175, 12765, 'en', 'name', 'Foundation Medical Partners'),
(15176, 12766, 'no_lang_code', 'name', 'Edison Pharmaceuticals (United States)'),
(15177, 12767, 'no_lang_code', 'name', 'Cognition Therapeutics (United States)'),
(15178, 12768, 'en', 'name', 'Fractured Atlas'),
(15179, 12769, 'en', 'name', 'Hendrick Hospice Care'),
(15180, 12770, 'en', 'name', 'Cognitive Systems Research Institute'),
(15181, 12771, 'no_lang_code', 'name', 'Cognosci (United States)'),
(15182, 12772, 'en', 'name', 'Edith P. Wright Breast Cancer Foundation'),
(15183, 12773, 'en', 'name', 'First Descents'),
(15184, 12774, 'en', 'name', 'Henry Street Settlement'),
(15185, 12775, 'en', 'name', 'Cohoes Family Care'),
(15186, 12776, 'en', 'name', 'Franklin County Schools'),
(15187, 12777, 'en', 'name', 'Hephzibah Children’s Association'),
(15188, 12778, 'en', 'name', 'First Giving'),
(15189, 12779, 'en', 'name', 'HER2 Support Group'),
(15190, 12780, 'en', 'name', 'First In Families of North Carolina'),
(15191, 12781, 'en', 'name', 'The First Republican Clinical Hospital of the Ministry of Health of the Udmurt Republic'),
(15192, 12781, 'ru', 'name', 'ŠŸŠµŃ€Š²Š°Ń Ń€ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠ¾Š¹ Республики'),
(15193, 12782, 'en', 'name', 'First Step Foundation'),
(15194, 12783, 'en', 'name', 'First To Serve'),
(15195, 12784, 'no_lang_code', 'name', 'Digital Development Communications International (United States)'),
(15196, 12785, 'en', 'name', 'FirstHealth of the Carolinas'),
(15197, 12786, 'en', 'name', 'Foundation for Rehabilitation Equipment and Endowment'),
(15198, 12787, 'no_lang_code', 'name', 'Herbalife (Australia)'),
(15199, 12788, 'no_lang_code', 'name', 'FirstString Research (United States)'),
(15200, 12789, 'en', 'name', 'Fishing Has No Boundaries'),
(15201, 12790, 'en', 'name', 'Freedom from Hunger'),
(15202, 12791, 'en', 'name', 'Heroes on Horseback'),
(15203, 12792, 'en', 'name', 'Burke County Public Schools'),
(15204, 12793, 'en', 'name', 'Texas Freedom Network'),
(15205, 12794, 'en', 'name', 'Girls Educational and Mentoring Services'),
(15206, 12795, 'en', 'name', 'Freedom Service Dogs'),
(15207, 12796, 'en', 'name', 'Joe DiMaggio Children''s Hospital'),
(15208, 12797, 'en', 'name', 'Girls on the Run of Central Illinois'),
(15209, 12798, 'en', 'name', 'St. Mary''s Medical Center'),
(15210, 12799, 'en', 'name', 'Girls Power Initiative'),
(15211, 12800, 'en', 'name', 'Pulmonary and Critical Care Associates'),
(15212, 12801, 'en', 'name', 'Freeman Sheldon Research Group'),
(15213, 12802, 'en', 'name', 'Golisano Children''s Hospital of Southwest Florida'),
(15214, 12803, 'en', 'name', 'Fremont County Public Health'),
(15215, 12804, 'en', 'name', 'Nemours Children''s Clinic'),
(15216, 12805, 'en', 'name', 'Nemours Children’s Clinic'),
(15217, 12806, 'en', 'name', 'Hertie Institute for Clinical Brain Research'),
(15218, 12806, 'de', 'name', 'Hertie-Institut für klinische Hirnforschung'),
(15219, 12807, 'en', 'name', 'Hertz Foundation'),
(15220, 12808, 'en', 'name', 'Central Florida Pulmonary Group'),
(15221, 12809, 'en', 'name', 'Reading and Beyond'),
(15222, 12810, 'en', 'name', 'Flashes of Hope'),
(15223, 12811, 'en', 'name', 'Flathead City County Health Department'),
(15224, 12812, 'en', 'name', 'Frick Collection'),
(15225, 12813, 'en', 'name', 'Higher Ground Sun Valley'),
(15226, 12814, 'en', 'name', 'FRIDA The Young Feminist Fund'),
(15227, 12815, 'en', 'name', 'NHS Highland'),
(15228, 12816, 'en', 'name', 'Florida Alliance for Assistive Services and Technology'),
(15229, 12817, 'en', 'name', 'Friedreich''s Ataxia Research Alliance'),
(15230, 12818, 'en', 'name', 'Florida Cancer Specialists & Research Institute'),
(15231, 12819, 'en', 'name', 'Baylor Scott and White Hillcrest Medical Center'),
(15232, 12820, 'en', 'name', 'Adventist Health Glendale'),
(15233, 12821, 'no_lang_code', 'name', 'EEG Info'),
(15234, 12822, 'en', 'name', 'AdventHealth Foundation Central Florida'),
(15235, 12823, 'no_lang_code', 'name', 'Hillhurst Biopharmaceuticals (United States)'),
(15236, 12824, 'en', 'name', 'Florida Hospital Medical Group'),
(15237, 12825, 'en', 'name', 'Friend for Life'),
(15238, 12826, 'en', 'name', 'Hillsborough Jr. Raiders'),
(15239, 12827, 'en', 'name', 'Florida Neuroscience Center'),
(15240, 12828, 'it', 'name', 'Fondazione Mons Arrigo Mazzali'),
(15241, 12829, 'en', 'name', 'Glens Falls Hospital'),
(15242, 12830, 'no_lang_code', 'name', 'Efficient Pharma Management (Taiwan)'),
(15243, 12831, 'en', 'name', 'Florida State Association of Rehabilitation Nurses'),
(15244, 12832, 'en', 'name', 'Florida Technical College'),
(15245, 12833, 'en', 'name', 'Third Judicial Circuit of Florida'),
(15246, 12834, 'en', 'name', 'Himalayan Cataract Project'),
(15247, 12835, 'en', 'name', 'Baptist Health Floyd'),
(15248, 12836, 'en', 'name', 'Friends of Cancer Research'),
(15249, 12837, 'en', 'name', 'Hinds Community College'),
(15250, 12838, 'no_lang_code', 'name', 'Glialogix (United States)'),
(15251, 12839, 'no_lang_code', 'name', 'FluGen (United States)'),
(15252, 12840, 'en', 'name', 'Friends of Firefighters'),
(15253, 12841, 'en', 'name', 'Hispanic Family Center of Southern New Jersey'),
(15254, 12842, 'en', 'name', 'Historic House Trust'),
(15255, 12843, 'no_lang_code', 'name', 'Fluidda (United States)'),
(15256, 12844, 'en', 'name', 'HIV Education and Prevention Project of Alameda County'),
(15257, 12845, 'en', 'name', 'Global Abilities Foundation'),
(15258, 12846, 'no_lang_code', 'name', 'XCR Diagnostics (United States)'),
(15259, 12847, 'en', 'name', 'Global AIDS Interfaith Alliance'),
(15260, 12848, 'en', 'name', 'Friends of IHES'),
(15261, 12849, 'en', 'name', 'Global Alliance Against Traffic in Women'),
(15262, 12850, 'en', 'name', 'Hoag Orthopedic Institute'),
(15263, 12851, 'en', 'name', 'Holos Institute'),
(15264, 12852, 'en', 'name', 'The House of Praise'),
(15265, 12853, 'en', 'name', 'Focused Ultrasound Foundation'),
(15266, 12854, 'en', 'name', 'Fogarty Institute for Innovation'),
(15267, 12855, 'en', 'name', 'Friends of Karen'),
(15268, 12856, 'en', 'name', 'Global and Regional Asperger Syndrome Partnership'),
(15269, 12857, 'en', 'name', 'Friends of L''Arche Long Island'),
(15270, 12858, 'no_lang_code', 'name', 'Follica (United States)'),
(15271, 12859, 'en', 'name', 'Global Autism Project'),
(15272, 12860, 'en', 'name', 'Friends of Patan Hospital'),
(15273, 12861, 'no_lang_code', 'name', 'Global Blood Therapeutics (United States)'),
(15274, 12862, 'en', 'name', 'Akbaraly Foundation'),
(15275, 12863, 'en', 'name', 'Friends of Scott'),
(15276, 12864, 'en', 'name', 'Holy Redeemer'),
(15277, 12865, 'en', 'name', 'Setauket Neighborhood House'),
(15278, 12866, 'en', 'name', 'Holzer Heritage Foundation'),
(15279, 12867, 'fr', 'name', 'Fondation Asile des Aveugles'),
(15280, 12868, 'fr', 'name', 'Fondation Leducq'),
(15281, 12868, 'en', 'name', 'Leducq Foundation'),
(15282, 12869, 'en', 'name', 'Home for Little Wanderers'),
(15283, 12870, 'en', 'name', 'Homes for Our Troops'),
(15284, 12871, 'en', 'name', 'Egyptian American Medical Center'),
(15285, 12872, 'it', 'name', 'Fondazione Humanitas per la Ricerca'),
(15286, 12873, 'en', 'name', 'World Food Program USA'),
(15287, 12874, 'en', 'name', 'No Barriers Youth'),
(15288, 12875, 'no_lang_code', 'name', 'Eisai (United Kingdom)'),
(15289, 12876, 'no_lang_code', 'name', 'WWOZ'),
(15290, 12877, 'no_lang_code', 'name', 'DuPont (Norway)'),
(15291, 12878, 'en', 'name', 'World Foundation for Medical Research and Prevention'),
(15292, 12879, 'en', 'name', 'Home Free Home'),
(15293, 12880, 'en', 'name', 'Global Health Council'),
(15294, 12881, 'no_lang_code', 'name', 'Ekahau (Finland)'),
(15295, 12882, 'en', 'name', 'Friends-4-Cures'),
(15296, 12883, 'no_lang_code', 'name', 'Hoosier Cancer Research Network (United States)'),
(15297, 12884, 'en', 'name', 'Global Health Research Center of Central Asia'),
(15298, 12885, 'it', 'name', 'Fondazione Intergruppo Italiano Linfomi Onlus'),
(15299, 12886, 'no_lang_code', 'name', 'Hope Afloat'),
(15300, 12887, 'en', 'name', 'Front Line Defenders'),
(15301, 12888, 'en', 'name', 'Agricultural Research Council of South Africa'),
(15302, 12889, 'en', 'name', 'Global Ministries'),
(15303, 12890, 'it', 'name', 'Fondazione IRET ONLUS'),
(15304, 12891, 'en', 'name', 'Hope Chest for Breast Cancer'),
(15305, 12892, 'en', 'name', 'Institute for Deciduous Fruit, Vines and Wine'),
(15306, 12893, 'en', 'name', 'Global Opportunities Unlimited'),
(15307, 12894, 'en', 'name', 'Frontier Community Services'),
(15308, 12895, 'en', 'name', 'El Dorado County Health and Human Services Agency'),
(15309, 12896, 'it', 'name', 'Fondazione Matilde Tettamanti Menotti De Marchi'),
(15310, 12897, 'en', 'name', 'Hope HealthCare Services'),
(15311, 12898, 'en', 'name', 'Hope House Ministries'),
(15312, 12899, 'en', 'name', 'Hope in Bloom'),
(15313, 12900, 'en', 'name', 'Global Technology Community'),
(15314, 12901, 'en', 'name', 'HOPE Organization'),
(15315, 12902, 'en', 'name', 'Hope Through Grace'),
(15316, 12903, 'en', 'name', 'Hope Worldwide Monterrey'),
(15317, 12904, 'no_lang_code', 'name', 'GlycoMimetics (United States)'),
(15318, 12905, 'en', 'name', 'El/La Para TransLatinas'),
(15319, 12906, 'es', 'name', 'Equipo Latinoamericano de Justicia y GƩnero'),
(15320, 12907, 'en', 'name', 'Elder Services of the Merrimack Valley'),
(15321, 12908, 'en', 'name', 'HopeLab'),
(15322, 12909, 'en', 'name', 'Ele''s Place'),
(15323, 12910, 'en', 'name', 'Fund for Park Avenue'),
(15324, 12911, 'en', 'name', 'Fund for the City of New York'),
(15325, 12912, 'pt', 'name', 'Fundação do Câncer'),
(15326, 12913, 'en', 'name', 'Elijah House'),
(15327, 12914, 'en', 'name', 'Elite Wellness'),
(15328, 12915, 'en', 'name', 'God''s Love We Deliver'),
(15329, 12916, 'en', 'name', 'Elixir Fund'),
(15330, 12917, 'en', 'name', 'Goddard Riverside'),
(15331, 12918, 'pt', 'name', 'Fundmed Pesquisa, Ensino e Inovacao'),
(15332, 12919, 'en', 'name', 'Horizon Health Network'),
(15333, 12920, 'en', 'name', 'Elizabeth City Pasquotank Public Schools'),
(15334, 12921, 'en', 'name', 'Horizon Home Care and Hospice'),
(15335, 12922, 'en', 'name', 'Elizabethtown Community Hospital'),
(15336, 12923, 'en', 'name', 'Golden Valley Health Centers'),
(15337, 12924, 'en', 'name', 'Penn Highlands Healthcare'),
(15338, 12925, 'en', 'name', 'Barnes-Jewish College'),
(15339, 12926, 'it', 'name', 'Fondazione Umberto Di Mario'),
(15340, 12927, 'en', 'name', 'Capital Region Medical Center'),
(15341, 12928, 'en', 'name', 'Golisano Foundation'),
(15342, 12929, 'en', 'name', 'Food and Friends'),
(15343, 12930, 'en', 'name', 'HorseAbility'),
(15344, 12931, 'en', 'name', 'Food Outreach'),
(15345, 12932, 'en', 'name', 'Hospice Austin'),
(15346, 12933, 'en', 'name', 'Hospice Buffalo'),
(15347, 12934, 'en', 'name', 'Hospice By The Bay'),
(15348, 12935, 'en', 'name', 'WV Caring'),
(15349, 12936, 'en', 'name', 'Hospice Nepal'),
(15350, 12937, 'en', 'name', 'The Hospice of Baton Rouge'),
(15351, 12938, 'en', 'name', 'Chapters Health System'),
(15352, 12939, 'no_lang_code', 'name', 'EveryStep'),
(15353, 12940, 'en', 'name', 'Good Shepherd Rehabilitation'),
(15354, 12941, 'en', 'name', 'Cornerstone Community Development Corporation'),
(15355, 12942, 'en', 'name', 'Hospice of Charles County'),
(15356, 12943, 'en', 'name', 'Goodwill of Orange County'),
(15357, 12944, 'en', 'name', 'AdventHealth Gordon'),
(15358, 12945, 'en', 'name', 'Emilio Nares Foundation'),
(15359, 12946, 'en', 'name', 'Chippewa County Health Department'),
(15360, 12947, 'en', 'name', 'Ohio''s Hospice of Dayton'),
(15361, 12948, 'en', 'name', 'Denver Hospice'),
(15362, 12949, 'en', 'name', 'Fort Collins Rowing Association'),
(15363, 12950, 'en', 'name', 'Hospice of Metropolitan Erie'),
(15364, 12951, 'en', 'name', 'Emmanuel Cancer Foundation'),
(15365, 12952, 'en', 'name', 'JourneyCare'),
(15366, 12953, 'en', 'name', 'Employment Opportunity and Training Center'),
(15367, 12954, 'en', 'name', 'Hospice of Orleans'),
(15368, 12955, 'en', 'name', 'Foundation Fighting Blindness'),
(15369, 12956, 'en', 'name', 'Bluegrass Care Navigators'),
(15370, 12957, 'en', 'name', 'Governance Links Tanzania'),
(15371, 12958, 'es', 'name', 'Fundación Arturo López Pérez'),
(15372, 12959, 'es', 'name', 'FundAyuda'),
(15373, 12960, 'en', 'name', 'Hospice of the Upstate'),
(15374, 12961, 'en', 'name', 'Hospice of the Valley'),
(15375, 12962, 'en', 'name', 'Hospice of the Western Reserve'),
(15376, 12963, 'en', 'name', 'Governor''s Institute on Substance Abuse'),
(15377, 12964, 'en', 'name', 'Foundation for Integrated Rural Development'),
(15378, 12965, 'pt', 'name', 'Hospital Adventista Silvestre'),
(15379, 12966, 'en', 'name', 'South Georgia Medical Center'),
(15380, 12967, 'en', 'name', 'Grace Church of The Nazarene'),
(15381, 12968, 'en', 'name', 'Foundation for the National Institutes of Health'),
(15382, 12969, 'no_lang_code', 'name', 'Gradalis (United States)'),
(15383, 12970, 'no_lang_code', 'name', 'Gradient Biomodeling (United States)'),
(15384, 12971, 'en', 'name', 'UDAAN for the Disabled'),
(15385, 12972, 'es', 'name', 'Casita de Mausi'),
(15386, 12973, 'en', 'name', 'Empower Spinal Cord Injury'),
(15387, 12974, 'en', 'name', 'EmpowerTech'),
(15388, 12975, 'pt', 'name', 'Hospital SĆ£o Vicente'),
(15389, 12976, 'en', 'name', 'Granite State Independent Living'),
(15390, 12977, 'es', 'name', 'Fundación Ciencia and Vida'),
(15391, 12978, 'en', 'name', 'Hospital Universiti Sains Malaysia'),
(15392, 12979, 'en', 'name', 'Hospitality Homes'),
(15393, 12980, 'en', 'name', 'Grant A Wish'),
(15394, 12981, 'no_lang_code', 'name', 'EnBiotix (United States)'),
(15395, 12982, 'en', 'name', 'GrassrootsHealth'),
(15396, 12983, 'es', 'name', 'Fundacion de Neurociencias'),
(15397, 12984, 'en', 'name', 'Mercy Health'),
(15398, 12985, 'en', 'name', 'Hunstad Kortesis Bharti Cosmetic Surgery'),
(15399, 12986, 'no_lang_code', 'name', 'Housey Pharmaceutical Research Laboratories'),
(15400, 12987, 'en', 'name', 'Andalusian Public Foundation for Health Research in Biomedicine and Malaga');
INSERT INTO `ror_settings` VALUES
(15401, 12987, 'es', 'name', 'Fundación Pública Andaluza para la Investigación de MÔlaga en Biomedicina y Salud'),
(15402, 12988, 'en', 'name', 'Hunts Point Alliance for Children'),
(15403, 12989, 'en', 'name', 'Hurley Foundation'),
(15404, 12990, 'en', 'name', 'Hurdle Jumpers'),
(15405, 12991, 'en', 'name', 'Houston County'),
(15406, 12992, 'es', 'name', 'Instituto Nacional del CƔncer'),
(15407, 12993, 'en', 'name', 'International Network for Cancer Treatment and Research'),
(15408, 12994, 'en', 'name', 'Great Plains Tribal Chairmen’s Health Board'),
(15409, 12995, 'en', 'name', 'Greater Baden Medical Services'),
(15410, 12996, 'en', 'name', 'Schneider Children''s Hospital'),
(15411, 12997, 'no_lang_code', 'name', 'Hƶvding (Sweden)'),
(15412, 12998, 'en', 'name', 'Howard Area Community Center'),
(15413, 12999, 'en', 'name', 'Howard County Health Department'),
(15414, 13000, 'en', 'name', 'Greater Faith Baptist Church'),
(15415, 13001, 'cy', 'name', 'Bwrdd Iechyd Lleol Hywel Dda'),
(15416, 13001, 'en', 'name', 'Hywel Dda University Health Board'),
(15417, 13002, 'en', 'name', 'Endeavor Charter School'),
(15418, 13003, 'en', 'name', 'Greater Holy Temple Church Of God In Christ'),
(15419, 13004, 'en', 'name', 'Greater Kansas City Spinal Cord Injury Association'),
(15420, 13005, 'no_lang_code', 'name', 'Endo Pharmaceuticals (United States)'),
(15421, 13006, 'es', 'name', 'Fundación Oncohematología Infantil'),
(15422, 13007, 'no_lang_code', 'name', 'Endocrine Technology (United States)'),
(15423, 13008, 'en', 'name', 'Energy Therapies Alliance of Central Illinois'),
(15424, 13009, 'en', 'name', 'Greater Los Angeles Agency on Deafness'),
(15425, 13010, 'en', 'name', 'Community Foundation for Northeast Michigan'),
(15426, 13011, 'en', 'name', 'Greek Association of Alzheimer''s Disease and Related Disorders'),
(15427, 13012, 'en', 'name', 'I''m Still Here Foundation'),
(15428, 13013, 'no_lang_code', 'name', 'Ensemble Therapeutics (United States)'),
(15429, 13014, 'en', 'name', 'Ibis Reproductive Health'),
(15430, 13015, 'en', 'name', 'Ibaraki Children''s Hospital'),
(15431, 13015, 'ja', 'name', 'čŒØåŸŽēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(15432, 13016, 'es', 'name', 'Fundación Ramón Domínguez'),
(15433, 13017, 'no_lang_code', 'name', 'EnteraTech (United States)'),
(15434, 13018, 'no_lang_code', 'name', 'Green Tech Labs (United States)'),
(15435, 13019, 'no_lang_code', 'name', 'EntreChem (Spain)'),
(15436, 13020, 'no_lang_code', 'name', 'Grenada National Organisation of Women'),
(15437, 13021, 'en', 'name', 'The Entrepreneurs Foundation of Central Texas'),
(15438, 13022, 'en', 'name', 'International Anesthesia Research Society'),
(15439, 13023, 'no_lang_code', 'name', 'EntroGen (United States)'),
(15440, 13024, 'en', 'name', 'Greyston'),
(15441, 13025, 'en', 'name', 'Gaston County Schools'),
(15442, 13026, 'no_lang_code', 'name', 'EpaleX (United States)'),
(15443, 13027, 'es', 'name', 'Fundación Severo Ochoa'),
(15444, 13028, 'en', 'name', 'Southeast Georgia Health System'),
(15445, 13029, 'en', 'name', 'CHRISTUS St. Michael Health System'),
(15446, 13030, 'no_lang_code', 'name', 'Grind For Life (United States)'),
(15447, 13031, 'en', 'name', 'Institute of Cognitive and Brain Sciences'),
(15448, 13032, 'no_lang_code', 'name', 'iCo Therapeutics (Canada)'),
(15449, 13033, 'no_lang_code', 'name', 'Epigenetix (United States)'),
(15450, 13034, 'en', 'name', 'Grossmont Hospital Foundation'),
(15451, 13035, 'en', 'name', 'Epilepsy Foundation'),
(15452, 13036, 'en', 'name', 'Wilshire Health and Community Services'),
(15453, 13037, 'en', 'name', 'St. Luke''s Children''s Hospital'),
(15454, 13038, 'en', 'name', 'Future Generations University'),
(15455, 13039, 'no_lang_code', 'name', 'Epitel (United States)'),
(15456, 13040, 'pt', 'name', 'Grupo Realizar'),
(15457, 13041, 'no_lang_code', 'name', 'EpitoGenesis (United States)'),
(15458, 13042, 'en', 'name', 'Equestrian Aid Foundation'),
(15459, 13043, 'en', 'name', 'George Eliava Institute of Bacteriophage, Microbiology and Virology'),
(15460, 13044, 'en', 'name', 'Erebouni Medical Center'),
(15461, 13045, 'en', 'name', 'Guam Communications Network'),
(15462, 13046, 'en', 'name', 'Erie Neighborhood House'),
(15463, 13047, 'en', 'name', 'Erikson Institute'),
(15464, 13048, 'en', 'name', 'ErinoakKids Centre for Treatment and Development'),
(15465, 13049, 'no_lang_code', 'name', 'Bio, Tech and Beyond (United States)'),
(15466, 13050, 'no_lang_code', 'name', 'iFyber (United States)'),
(15467, 13051, 'en', 'name', 'Erlanger Health System'),
(15468, 13052, 'no_lang_code', 'name', 'Igan Biosciences (United States)'),
(15469, 13053, 'en', 'name', 'Ignite Adaptive Sports'),
(15470, 13054, 'no_lang_code', 'name', 'Enterprise Science and Computing (United States)'),
(15471, 13055, 'no_lang_code', 'name', 'Cell Machines (United States)'),
(15472, 13056, 'en', 'name', 'EspeRare Foundation'),
(15473, 13057, 'en', 'name', 'Essentia Health'),
(15474, 13058, 'no_lang_code', 'name', 'Galapagos (Netherlands)'),
(15475, 13059, 'no_lang_code', 'name', 'Eternity Bioscience (United States)'),
(15476, 13060, 'en', 'name', 'Galilee Missionary Baptist Church'),
(15477, 13061, 'en', 'name', 'Cumberland County Schools'),
(15478, 13062, 'en', 'name', 'Illinois Action for Children'),
(15479, 13063, 'en', 'name', 'Guangzhou Institutes of Biomedicine and Health'),
(15480, 13063, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¹æå·žē”Ÿē‰©åŒ»čÆäøŽå„åŗ·ē ”ē©¶é™¢'),
(15481, 13064, 'en', 'name', 'Illinois CancerCare'),
(15482, 13065, 'en', 'name', 'Guardian Angel Homes'),
(15483, 13066, 'en', 'name', 'Illinois Central College'),
(15484, 13067, 'en', 'name', 'Illinois College'),
(15485, 13068, 'en', 'name', 'Illinois Public Health Institute'),
(15486, 13069, 'en', 'name', 'Illinois Valley Ear Nose and Throat'),
(15487, 13070, 'en', 'name', 'Ethiopian Community Development Council'),
(15488, 13071, 'en', 'name', 'Gardner''s House'),
(15489, 13072, 'no_lang_code', 'name', 'IMGENEX India (India)'),
(15490, 13073, 'en', 'name', 'Europa Donna'),
(15491, 13074, 'en', 'name', 'Guards of The Earth and The Vulnerable'),
(15492, 13075, 'en', 'name', 'Immigrant and Refugee Community Organization'),
(15493, 13076, 'en', 'name', 'Guiding Lights Caregiver Support Center'),
(15494, 13077, 'en', 'name', 'Guilford County Schools'),
(15495, 13078, 'en', 'name', 'Gulf Relief Foundation'),
(15496, 13079, 'no_lang_code', 'name', 'ImmuneWorks (United States)'),
(15497, 13080, 'en', 'name', 'Hudson Valley Youth Chorale'),
(15498, 13081, 'en', 'name', 'Gateway Confluence Wheelchair Sports Foundation'),
(15499, 13082, 'en', 'name', 'European Cancer Prevention'),
(15500, 13083, 'en', 'name', 'Human Relief Foundation'),
(15501, 13084, 'en', 'name', 'Gateways Hospital and Mental Health Center'),
(15502, 13085, 'en', 'name', 'European Neuro Muscular Centre'),
(15503, 13086, 'en', 'name', 'Gulu Women with Disabilities Union'),
(15504, 13087, 'en', 'name', 'Gathering 4 Gardner'),
(15505, 13088, 'en', 'name', 'Human Resources Development Institute'),
(15506, 13089, 'en', 'name', 'The Center on Colfax'),
(15507, 13090, 'en', 'name', 'Breast and GYN Health Project'),
(15508, 13091, 'en', 'name', 'Evergreen Community Charter School'),
(15509, 13092, 'en', 'name', 'EvergreenHealth Foundation'),
(15510, 13093, 'en', 'name', 'Institute of Protein Biochemistry'),
(15511, 13093, 'it', 'name', 'Istituto di Biochimica delle Proteine'),
(15512, 13094, 'en', 'name', 'Institute of Software Systems'),
(15513, 13094, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ програмних систем'),
(15514, 13095, 'en', 'name', 'H.Buniatian Institute of Biochemistry'),
(15515, 13096, 'no_lang_code', 'name', 'Impel Neuropharma (United States)'),
(15516, 13097, 'en', 'name', 'Gems of Hope'),
(15517, 13098, 'en', 'name', 'Habilitative Systems'),
(15518, 13099, 'en', 'name', 'Habitat for Humanity Fiji'),
(15519, 13100, 'en', 'name', 'Habitat for Humanity of Greater Charlottesville'),
(15520, 13101, 'en', 'name', 'St. Luke''s Cystic Fibrosis Center of Idaho'),
(15521, 13102, 'en', 'name', 'Habitot Children''s Museum'),
(15522, 13103, 'no_lang_code', 'name', 'Generex Biotechnology (Canada)'),
(15523, 13104, 'no_lang_code', 'name', 'Hadassah'),
(15524, 13105, 'no_lang_code', 'name', 'Hagar International'),
(15525, 13106, 'no_lang_code', 'name', 'Genesis Biotechnologies (United States)'),
(15526, 13107, 'en', 'name', 'Genesis Counseling Centers'),
(15527, 13108, 'en', 'name', 'Genesis Foundation'),
(15528, 13109, 'en', 'name', 'Haitian American Association Against Cancer'),
(15529, 13110, 'en', 'name', 'Genesis Health System'),
(15530, 13111, 'en', 'name', 'Halleck Creek Ranch'),
(15531, 13112, 'en', 'name', 'Genesis HealthCare System'),
(15532, 13113, 'en', 'name', 'MelroseWakefield Healthcare'),
(15533, 13114, 'en', 'name', 'Elks Rehabilitation Hospital'),
(15534, 13115, 'en', 'name', 'Genesys Hurley Cancer Institute'),
(15535, 13116, 'no_lang_code', 'name', 'In Silico Biosciences (United States)'),
(15536, 13117, 'en', 'name', 'In The Meantime Men’s Group'),
(15537, 13118, 'no_lang_code', 'name', 'Akashi Therapeutics (United States)'),
(15538, 13119, 'en', 'name', 'Genetic Research Institute of the Desert'),
(15539, 13120, 'en', 'name', 'County Councils on Aging'),
(15540, 13121, 'en', 'name', 'HP Family Medical Clinic'),
(15541, 13122, 'en', 'name', 'IndependenceFirst'),
(15542, 13123, 'no_lang_code', 'name', 'HansaBioMed (Estonia)'),
(15543, 13124, 'es', 'name', 'Instituto de la Memoria Depresión y Enfermedades de Riesgo'),
(15544, 13125, 'en', 'name', 'genHkids Coalition'),
(15545, 13126, 'no_lang_code', 'name', 'Genkyotex (Switzerland)'),
(15546, 13127, 'pt', 'name', 'Instituto Nacional de MatemƔtica Pura e Aplicada'),
(15547, 13127, 'en', 'name', 'National Institute for Pure and Applied Mathematics'),
(15548, 13128, 'no_lang_code', 'name', 'VERO Biotech (United States)'),
(15549, 13129, 'en', 'name', 'India Health Action Trust'),
(15550, 13130, 'no_lang_code', 'name', 'OneGift'),
(15551, 13131, 'en', 'name', 'Harbor Beach Community Hospital'),
(15552, 13132, 'en', 'name', 'Indiana Cancer Consortium'),
(15553, 13133, 'en', 'name', 'Indiana Cancer Registrars Association'),
(15554, 13134, 'en', 'name', 'Harlem Children''s Zone'),
(15555, 13135, 'no_lang_code', 'name', 'Harley-Davidson (United States)'),
(15556, 13136, 'en', 'name', 'Individual Differences'),
(15557, 13137, 'en', 'name', 'Harm Reduction Services'),
(15558, 13138, 'en', 'name', 'GeoHazards International'),
(15559, 13139, 'en', 'name', 'George Mark Children''s House'),
(15560, 13140, 'no_lang_code', 'name', 'Harmonex (United States)'),
(15561, 13141, 'pt', 'name', 'Instituto Noos'),
(15562, 13142, 'en', 'name', 'Georgia Breast Cancer Coalition Fund'),
(15563, 13143, 'en', 'name', 'Indiana Minority Health Coalition'),
(15564, 13144, 'en', 'name', 'Georgia Canines for Independence'),
(15565, 13145, 'en', 'name', 'Harrington Regional Medical Center'),
(15566, 13146, 'en', 'name', 'Institute for Clinical Social Work'),
(15567, 13147, 'en', 'name', 'Harris County Hospital District Foundation'),
(15568, 13148, 'en', 'name', 'Instituto Familiar de la Raza'),
(15569, 13149, 'en', 'name', 'Institute for Development, Research, Advocacy and Applied Care'),
(15570, 13150, 'en', 'name', 'Texas Health Harris Methodist Hospital Fort Worth'),
(15571, 13151, 'en', 'name', 'Independent Living Resource Center San Francisco'),
(15572, 13152, 'en', 'name', 'Independent Living Resources'),
(15573, 13153, 'en', 'name', 'Texas Health Resources Foundation'),
(15574, 13154, 'en', 'name', 'Institute for EthnoMedicine'),
(15575, 13155, 'en', 'name', 'Harry Gregg Foundation'),
(15576, 13156, 'en', 'name', 'i3gb Foundation'),
(15577, 13157, 'pt', 'name', 'Gestos'),
(15578, 13158, 'en', 'name', 'Gibson Area Hospital and Health Services'),
(15579, 13159, 'en', 'name', 'Baruch S. Blumberg Institute'),
(15580, 13160, 'en', 'name', 'Bioethics International'),
(15581, 13161, 'en', 'name', 'Gifts to Share'),
(15582, 13162, 'en', 'name', 'Indo-American Center'),
(15583, 13163, 'en', 'name', 'Gila Regional Medical Center'),
(15584, 13164, 'en', 'name', 'Harvey Brooks Motivation and Development Foundation'),
(15585, 13165, 'en', 'name', 'Gila River Healthcare'),
(15586, 13166, 'en', 'name', 'Have A Heart Community Trust'),
(15587, 13167, 'en', 'name', 'Gillette Children''s Specialty Healthcare'),
(15588, 13168, 'en', 'name', 'Hawaii Children''s Cancer Foundation'),
(15589, 13169, 'en', 'name', 'Hays Medical Center'),
(15590, 13170, 'no_lang_code', 'name', 'Indoor Biotechnologies (United States)'),
(15591, 13171, 'en', 'name', 'Gillen Brewer School'),
(15592, 13172, 'no_lang_code', 'name', 'HBLA (United States)'),
(15593, 13173, 'no_lang_code', 'name', 'Indus Business Systems (India)'),
(15594, 13173, 'en', 'name', 'ą°‡ą°‚ą°”ą°øą± ą°¬ą°æą°œą°æą°Øą±†ą°øą± ą°øą°æą°øą±ą°Ÿą°®ą±ą°øą± ą°²ą°æą°®ą°æą°Ÿą±†ą°”ą±'),
(15595, 13174, 'en', 'name', 'International Center of New York'),
(15596, 13175, 'en', 'name', 'Conversations! The International Ovarian Cancer Connection'),
(15597, 13176, 'en', 'name', 'Chronic Condition Information Network'),
(15598, 13177, 'en', 'name', 'Dream Foundation'),
(15599, 13178, 'en', 'name', 'Cape Fear Valley Health System'),
(15600, 13179, 'en', 'name', 'Des Moines University Osteopathic Medical Center'),
(15601, 13180, 'en', 'name', 'Gallery North'),
(15602, 13181, 'en', 'name', 'Friends of the North Carolina Maritime Museum'),
(15603, 13182, 'no_lang_code', 'name', 'Napo Pharmaceuticals (United States)'),
(15604, 13183, 'en', 'name', 'Head-Royce School'),
(15605, 13184, 'en', 'name', 'HeadNorth'),
(15606, 13185, 'fr', 'name', 'Institut Rick Hansen'),
(15607, 13185, 'en', 'name', 'Praxis Spinal Cord Institute'),
(15608, 13186, 'en', 'name', 'Institute for Microstructural Sciences'),
(15609, 13187, 'en', 'name', 'META Health'),
(15610, 13188, 'pt', 'name', 'Promundo'),
(15611, 13189, 'en', 'name', 'Institute for Music and Neurologic Function'),
(15612, 13190, 'no_lang_code', 'name', 'Inflammatory Response Research (United States)'),
(15613, 13191, 'en', 'name', 'Infrared Breast Health'),
(15614, 13192, 'no_lang_code', 'name', 'ISA Pharmaceuticals (Netherlands)'),
(15615, 13193, 'en', 'name', 'Health Alliance International'),
(15616, 13194, 'en', 'name', 'Integris Health'),
(15617, 13195, 'en', 'name', 'Health Choice Network'),
(15618, 13196, 'no_lang_code', 'name', 'Intellicell Biosciences (United States)'),
(15619, 13197, 'no_lang_code', 'name', 'Inhibikase Therapeutics (United States)'),
(15620, 13198, 'en', 'name', 'Inter-Psy'),
(15621, 13199, 'en', 'name', 'Institute for Reproductive Health'),
(15622, 13200, 'en', 'name', 'Inland Empire Concerned African American Churches'),
(15623, 13201, 'en', 'name', 'Inland Northwest Health Services'),
(15624, 13202, 'en', 'name', 'Interfaith Center of New York'),
(15625, 13203, 'en', 'name', 'Institute for Security Studies'),
(15626, 13204, 'en', 'name', 'Punjab Technical University'),
(15627, 13204, 'pa', 'name', 'ਪੰਜਾਬ ąØŸą©ˆąØ•ąØØą©€ąØ•ąØ² ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(15628, 13205, 'en', 'name', 'Health Education Council'),
(15629, 13206, 'en', 'name', 'Islamic Shura Council of Southern California'),
(15630, 13207, 'en', 'name', 'Israel Cancer Association USA'),
(15631, 13208, 'en', 'name', 'Innocence Project'),
(15632, 13209, 'en', 'name', 'International Alliance of ALS/MND Associations'),
(15633, 13210, 'fr', 'name', 'Centre Hospito Universitaire de SƩtif'),
(15634, 13211, 'en', 'name', 'Health Promotion Council'),
(15635, 13212, 'en', 'name', 'Health Research Alliance'),
(15636, 13213, 'no_lang_code', 'name', 'InnoPhage (Portugal)'),
(15637, 13214, 'en', 'name', 'International Brain Research Organization'),
(15638, 13214, 'fr', 'name', 'Organisation internationale de recherche sur le cerveau'),
(15639, 13215, 'en', 'name', 'International Breast Cancer Study Group'),
(15640, 13216, 'en', 'name', 'Institute of Biochemistry and Genetics of Ufa Scientific Centre'),
(15641, 13216, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø генетики'),
(15642, 13217, 'en', 'name', 'Innovation To End Neglected Diseases'),
(15643, 13218, 'en', 'name', 'Innova HealthCare Services'),
(15644, 13219, 'en', 'name', 'Clubhouse International'),
(15645, 13220, 'en', 'name', 'Pfeiffer Medical Center'),
(15646, 13221, 'en', 'name', 'Institute of Biomedical Technologies'),
(15647, 13221, 'it', 'name', 'Istituto di Tecnologie Biomediche'),
(15648, 13222, 'en', 'name', 'New Mexico Cancer Center Foundation'),
(15649, 13223, 'en', 'name', 'International Centre for Reproductive Health Kenya'),
(15650, 13224, 'en', 'name', 'Institute for Chemical and Physical Processes'),
(15651, 13224, 'it', 'name', 'Istituto per i Processi Chimico Fisici'),
(15652, 13225, 'en', 'name', 'Ivano-Frankivsk National Medical University'),
(15653, 13225, 'uk', 'name', 'Івано-Š¤Ń€Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(15654, 13226, 'en', 'name', 'Ivy Hill Therapeutic Equestrian Center'),
(15655, 13227, 'en', 'name', 'HealthEast Care System'),
(15656, 13228, 'en', 'name', 'HealthNet TPO'),
(15657, 13229, 'en', 'name', 'Iyengar Yoga Association of Greater New York'),
(15658, 13230, 'en', 'name', 'HealthNow New York'),
(15659, 13231, 'en', 'name', 'HealthPoint Communications'),
(15660, 13232, 'en', 'name', 'HealthRight International'),
(15661, 13233, 'en', 'name', 'Chatham County Schools'),
(15662, 13234, 'en', 'name', 'Healthy African American Families II'),
(15663, 13235, 'en', 'name', 'International Medical Corps'),
(15664, 13236, 'en', 'name', 'Jack and Jill Late Stage Cancer Foundation'),
(15665, 13237, 'no_lang_code', 'name', 'Ponimanie'),
(15666, 13238, 'en', 'name', 'International Paralympic Committee'),
(15667, 13238, 'de', 'name', 'Internationales Paralympisches Komitee'),
(15668, 13239, 'en', 'name', 'Jacob''s Heart Children''s Cancer Support Services'),
(15669, 13240, 'no_lang_code', 'name', 'Dendritic Cell Research (India)'),
(15670, 13241, 'en', 'name', 'United Medical Center'),
(15671, 13242, 'en', 'name', 'Healthy Functions'),
(15672, 13243, 'en', 'name', 'International Partnership for Microbicides'),
(15673, 13244, 'en', 'name', 'Healthy Start Coalition of Flagler & Volusia Counties'),
(15674, 13245, 'en', 'name', 'International Pre-Autistic Network'),
(15675, 13246, 'en', 'name', 'Healthy Start'),
(15676, 13247, 'en', 'name', 'Jameson Memorial Hospital'),
(15677, 13248, 'no_lang_code', 'name', 'InSpark Technologies (United States)'),
(15678, 13249, 'en', 'name', 'International Society for Augmentative and Alternative Communication'),
(15679, 13250, 'en', 'name', 'Heart of Passion'),
(15680, 13251, 'no_lang_code', 'name', 'Janus Biotherapeutics (United States)'),
(15681, 13252, 'en', 'name', 'Heartland Head Start'),
(15682, 13253, 'en', 'name', 'Jazz Foundation of America'),
(15683, 13254, 'no_lang_code', 'name', 'Heartsong'),
(15684, 13255, 'en', 'name', 'International Society for Clinical Densitometry'),
(15685, 13256, 'en', 'name', 'International Symposium on Neural Regeneration'),
(15686, 13257, 'no_lang_code', 'name', 'JB Life Sciences (United States)'),
(15687, 13258, 'en', 'name', 'International Women''s Development Agency'),
(15688, 13259, 'no_lang_code', 'name', 'Heartspring'),
(15689, 13260, 'en', 'name', 'Institute of Neurology, Psychiatry and Narcology'),
(15690, 13260, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неврології, психіатрії та наркології ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń—'),
(15691, 13261, 'no_lang_code', 'name', 'Corbus Pharmaceuticals (United States)'),
(15692, 13262, 'no_lang_code', 'name', 'Heat Biologics (United States)'),
(15693, 13263, 'en', 'name', 'Hebrew Health Care'),
(15694, 13264, 'en', 'name', 'Jewish Community Center in Manhattan'),
(15695, 13265, 'en', 'name', 'Jewish Community Center of Fort Lee'),
(15696, 13266, 'en', 'name', 'JD Breast Cancer Foundation'),
(15697, 13267, 'en', 'name', 'Youth+Tech+Health'),
(15698, 13268, 'en', 'name', 'Heifer International'),
(15699, 13269, 'no_lang_code', 'name', 'Intezyne (United States)'),
(15700, 13270, 'en', 'name', 'Helen Hay Whitney Foundation'),
(15701, 13271, 'en', 'name', 'VASCOG Society'),
(15702, 13272, 'en', 'name', 'Helen Keller International'),
(15703, 13273, 'en', 'name', 'Cancer Support Center'),
(15704, 13274, 'en', 'name', 'Intractable Childhood Epilepsy Alliance'),
(15705, 13275, 'en', 'name', 'Laboratory for Personalized Molecular Medicine'),
(15706, 13276, 'no_lang_code', 'name', 'Jenrin Discovery (United States)'),
(15707, 13277, 'en', 'name', 'Help Hope Live'),
(15708, 13278, 'fr', 'name', 'Institut de Microbiologie de la MƩditerranƩe'),
(15709, 13279, 'en', 'name', 'Paralyzed Veterans of America'),
(15710, 13280, 'en', 'name', 'Helping Hand Society'),
(15711, 13281, 'no_lang_code', 'name', 'IP Israel Patents (Israel)'),
(15712, 13282, 'en', 'name', 'Helping Hands Monkey Helpers'),
(15713, 13283, 'en', 'name', 'IPC Healthcare'),
(15714, 13284, 'en', 'name', 'Hendrick Medical Center'),
(15715, 13285, 'en', 'name', 'Iranian Homeopathic Association'),
(15716, 13286, 'en', 'name', 'Jewish Family Service of San Diego'),
(15717, 13287, 'en', 'name', 'Jewish Hospital and St. Mary''s HealthCare'),
(15718, 13288, 'en', 'name', 'Jewish Women''s Archive'),
(15719, 13289, 'no_lang_code', 'name', 'iRepertoire (United States)'),
(15720, 13290, 'en', 'name', 'Granville County Public Schools'),
(15721, 13291, 'en', 'name', 'First Affiliated Hospital of Soochow University'),
(15722, 13291, 'zh', 'name', 'č‹å·žå¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(15723, 13292, 'en', 'name', 'Uganda Institute of Information & Communications Technology'),
(15724, 13293, 'en', 'name', 'Los Angeles County Office of Education'),
(15725, 13294, 'en', 'name', 'Kingsley House'),
(15726, 13295, 'en', 'name', 'Iringa Development of Youth Disabled and Children Care'),
(15727, 13296, 'en', 'name', 'Los Angeles LGBT Center'),
(15728, 13297, 'en', 'name', 'Iringa Mercy Organization'),
(15729, 13298, 'no_lang_code', 'name', 'Kivulini Women’s Rights Organisation'),
(15730, 13299, 'en', 'name', 'Los Angeles Pink Dragons'),
(15731, 13300, 'no_lang_code', 'name', 'Liberty Media (United States)'),
(15732, 13301, 'en', 'name', 'Lou Ruvo Brain Institute'),
(15733, 13302, 'en', 'name', 'Max Healthcare'),
(15734, 13303, 'en', 'name', 'Institute of Molecular Biology and Pathology'),
(15735, 13303, 'it', 'name', 'Istituto di Biologia e Patologia Molecolare'),
(15736, 13304, 'en', 'name', 'Juvenile Myelomonocytic Leukemia Foundation'),
(15737, 13305, 'en', 'name', 'Institute of Molecular Biology'),
(15738, 13306, 'no_lang_code', 'name', 'JN Biosciences (United States)'),
(15739, 13307, 'no_lang_code', 'name', 'JobTrain'),
(15740, 13308, 'en', 'name', 'LRGHealthcare'),
(15741, 13309, 'en', 'name', 'Lucas County Board of Developmental Disabilities'),
(15742, 13310, 'en', 'name', 'Lucia''s Angels'),
(15743, 13311, 'en', 'name', 'Meadows Regional Medical Center'),
(15744, 13312, 'en', 'name', 'Kōkua Mau'),
(15745, 13313, 'en', 'name', 'Mecosta County Medical Center'),
(15746, 13314, 'en', 'name', 'Institute of Neurobiology and Molecular Medicine'),
(15747, 13314, 'it', 'name', 'Istituto di Neurobiologia e Medicina Molecolare'),
(15748, 13315, 'en', 'name', 'Institute of Neurobiology'),
(15749, 13315, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š½ŠµŠ²Ń€Š¾Š±ŠøŠ¾Š»Š¾Š³ŠøŃ'),
(15750, 13316, 'en', 'name', 'Columbus Regional Healthcare System'),
(15751, 13317, 'en', 'name', 'Medanta The Medicity'),
(15752, 13318, 'en', 'name', 'John F. Kennedy Memorial Foundation'),
(15753, 13319, 'en', 'name', 'Institute of Neurological Sciences'),
(15754, 13319, 'it', 'name', 'Istituto di Scienze Neurologiche'),
(15755, 13320, 'en', 'name', 'Korean Community Service Center of Greater Washington'),
(15756, 13321, 'en', 'name', 'Fitzgibbon Hospital'),
(15757, 13322, 'en', 'name', 'Korean Community Services of Metropolitan New York'),
(15758, 13323, 'en', 'name', 'Kanzius Cancer Research Foundation'),
(15759, 13324, 'en', 'name', 'Korean Health Education, Information, and Research Center'),
(15760, 13325, 'en', 'name', 'John Paul II Medical Research Institute'),
(15761, 13326, 'no_lang_code', 'name', 'Express Scripts Holding Company (United States)'),
(15762, 13327, 'en', 'name', 'Korean Resource Center'),
(15763, 13328, 'en', 'name', 'Doctors of the World'),
(15764, 13328, 'fr', 'name', 'MƩdecins du Monde'),
(15765, 13329, 'no_lang_code', 'name', 'Kostopulos Dream Foundation'),
(15766, 13330, 'en', 'name', 'Regional Health'),
(15767, 13331, 'no_lang_code', 'name', 'MedGenesis Therapeutix (Canada)'),
(15768, 13332, 'en', 'name', 'Media Arts Center San Diego'),
(15769, 13333, 'en', 'name', 'Krasnoyarsk State Medical University'),
(15770, 13333, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени профессора Š’.Ф. Войно-Ясенецкого ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(15771, 13334, 'no_lang_code', 'name', 'Lumicell (United States)'),
(15772, 13335, 'en', 'name', 'Medical Care Development International'),
(15773, 13336, 'en', 'name', 'Medical Center Hospital'),
(15774, 13337, 'en', 'name', 'Medical City Dallas Hospital'),
(15775, 13338, 'en', 'name', 'KVC Health Systems'),
(15776, 13339, 'en', 'name', 'Lupus Foundation of America'),
(15777, 13340, 'en', 'name', 'Johnston Memorial Hospital'),
(15778, 13341, 'en', 'name', 'Lupus Research Institute'),
(15779, 13342, 'en', 'name', 'Joint Muscle Medical Care and Research Institute'),
(15780, 13343, 'en', 'name', 'Joliet Area Community Hospice'),
(15781, 13344, 'en', 'name', 'Lutheran Family Health Centers'),
(15782, 13345, 'no_lang_code', 'name', 'Jonah’s Just Begun'),
(15783, 13346, 'en', 'name', 'Joni and Friends'),
(15784, 13347, 'no_lang_code', 'name', 'Kirin (United States)'),
(15785, 13348, 'no_lang_code', 'name', 'JosƩ Mateo Ballet Theatre (United States)'),
(15786, 13349, 'en', 'name', 'Lymphatic Education & Research Network'),
(15787, 13350, 'en', 'name', 'Journey Forward'),
(15788, 13351, 'en', 'name', 'Joyce Theater'),
(15789, 13352, 'en', 'name', 'La Casa Norte'),
(15790, 13353, 'en', 'name', 'Medscape'),
(15791, 13354, 'no_lang_code', 'name', 'QPS (Austria)'),
(15792, 13355, 'en', 'name', 'La Clinica de La Raza'),
(15793, 13356, 'en', 'name', 'La Crosse Medical Health Science Consortium'),
(15794, 13357, 'en', 'name', 'Teens Living with Cancer'),
(15795, 13358, 'en', 'name', 'John T. Mather Memorial Hospital'),
(15796, 13359, 'it', 'name', 'La Forza del Silenzio'),
(15797, 13360, 'no_lang_code', 'name', 'Mellitech (France)'),
(15798, 13361, 'no_lang_code', 'name', 'JustGive'),
(15799, 13362, 'en', 'name', 'Memorial Foundation'),
(15800, 13363, 'no_lang_code', 'name', 'M.C. Townsend Associates (United States)'),
(15801, 13364, 'no_lang_code', 'name', 'Athira Pharma (United States)'),
(15802, 13365, 'en', 'name', 'La Porte Hospital'),
(15803, 13366, 'en', 'name', 'Maasai Wilderness Conservation Trust'),
(15804, 13367, 'en', 'name', 'Memorial Hermann'),
(15805, 13368, 'en', 'name', 'Maintaining Active Citizens'),
(15806, 13369, 'en', 'name', 'Beacon Health System'),
(15807, 13370, 'en', 'name', 'Memorial Medical Center'),
(15808, 13371, 'no_lang_code', 'name', 'Kala Pharmaceuticals (United States)'),
(15809, 13372, 'no_lang_code', 'name', 'Celsus Therapeutics (United Kingdom)'),
(15810, 13373, 'en', 'name', 'University of Colorado Health'),
(15811, 13374, 'en', 'name', 'Morton Plant Mease'),
(15812, 13375, 'en', 'name', 'Macoupin County Public Health Department'),
(15813, 13376, 'no_lang_code', 'name', 'Mosaic'),
(15814, 13377, 'en', 'name', 'Men''s Health Network'),
(15815, 13378, 'en', 'name', 'Madison County Public Schools'),
(15816, 13379, 'en', 'name', 'Epilepsy Support and Education Services'),
(15817, 13380, 'en', 'name', 'Kansas City Hospice and Palliative Care'),
(15818, 13381, 'en', 'name', 'Cancer Resource Centers of Mendocino County'),
(15819, 13382, 'en', 'name', 'Mendocino Community Health Clinic'),
(15820, 13383, 'en', 'name', 'Madras Diabetes Research Foundation'),
(15821, 13384, 'en', 'name', 'Mendocino County AIDS / Viral Hepatitis Network'),
(15822, 13385, 'en', 'name', 'KU Endowment'),
(15823, 13386, 'en', 'name', 'Menoufia University Hospitals'),
(15824, 13386, 'ar', 'name', 'Ł…Ų³ŲŖŲ“ŁŁŠŲ§ŲŖ Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŁˆŁŁŠŲ©'),
(15825, 13387, 'en', 'name', 'Motion Picture & Television Fund'),
(15826, 13388, 'en', 'name', 'The Harris Center for Mental Health and IDD'),
(15827, 13389, 'no_lang_code', 'name', 'MentiNova (United States)'),
(15828, 13390, 'en', 'name', 'A.I Karaev Institute of Physiology'),
(15829, 13390, 'az', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии имени А.И. ŠšŠ°Ń€Š°ŠµŠ²Š°'),
(15830, 13391, 'en', 'name', 'Lady of the Sea General Hospital'),
(15831, 13392, 'en', 'name', 'Mercer County Health Department'),
(15832, 13393, 'en', 'name', 'Mahoning County Educational Service Center'),
(15833, 13394, 'en', 'name', 'Settlement Music School'),
(15834, 13395, 'en', 'name', 'McLaren Macomb'),
(15835, 13396, 'en', 'name', 'Lakes Region General Hospital'),
(15836, 13397, 'en', 'name', 'Lakeshore Foundation'),
(15837, 13398, 'en', 'name', 'Karla J. Williams Foundation'),
(15838, 13399, 'en', 'name', 'HaitiChildren'),
(15839, 13400, 'es', 'name', 'Distrito Escolar Unificado de Long Beach'),
(15840, 13400, 'en', 'name', 'Long Beach Unified School District'),
(15841, 13401, 'en', 'name', 'Mercy Clinic Neurology'),
(15842, 13402, 'en', 'name', 'Mount Nittany Medical Center'),
(15843, 13403, 'no_lang_code', 'name', 'Lamellar Biomedical (United Kingdom)'),
(15844, 13404, 'en', 'name', 'Maine Adaptive Sports & Recreation'),
(15845, 13405, 'en', 'name', 'Lancaster County Medical Society'),
(15846, 13406, 'en', 'name', 'Livestrong Foundation'),
(15847, 13407, 'en', 'name', 'New England Cancer Specialists'),
(15848, 13408, 'en', 'name', 'Mercy Hospital'),
(15849, 13409, 'en', 'name', 'Maine Hospice Council'),
(15850, 13410, 'en', 'name', 'Mercy Medical Center Sioux City'),
(15851, 13411, 'en', 'name', 'Lars Research Institute'),
(15852, 13412, 'en', 'name', 'University of Mount Olive'),
(15853, 13413, 'en', 'name', 'Ascension Via Christi Hospital'),
(15854, 13414, 'en', 'name', 'Lassen County'),
(15855, 13415, 'en', 'name', 'Eastern Maine Healthcare Systems'),
(15856, 13416, 'en', 'name', 'Kalpana Chawla Government Medical College and Hospital'),
(15857, 13416, 'hi', 'name', 'ą¤•ą¤²ą„ą¤Ŗą¤Øą¤¾ चावला ą¤—ą¤µą¤°ą„ą¤Øą¤®ą„‡ą¤‚ą¤Ÿ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ व ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(15858, 13417, 'en', 'name', 'Mountain Empire Older Citizens'),
(15859, 13418, 'en', 'name', 'Latinas Contra Cancer'),
(15860, 13419, 'en', 'name', 'Mountain Home Montana'),
(15861, 13420, 'en', 'name', 'Maine-Dartmouth Family Medicine Residency'),
(15862, 13421, 'en', 'name', 'Mountain Park Health Center'),
(15863, 13422, 'en', 'name', 'MaineGeneral Medical Center'),
(15864, 13423, 'no_lang_code', 'name', 'Kasiak Research (India)'),
(15865, 13424, 'en', 'name', 'MaineHealth'),
(15866, 13425, 'en', 'name', 'Make A Hero'),
(15867, 13426, 'en', 'name', 'Kathmandu Valley Preservation Trust'),
(15868, 13427, 'no_lang_code', 'name', 'Mergenet Medical (United States)'),
(15869, 13428, 'en', 'name', 'Make-A-Wish Foundation'),
(15870, 13429, 'no_lang_code', 'name', 'Latitude Pharmaceuticals (United States)'),
(15871, 13430, 'en', 'name', 'St. Luke''s Mountain States Tumor Institute'),
(15872, 13431, 'en', 'name', 'Meridian Behavioral Healthcare'),
(15873, 13432, 'en', 'name', 'Moveable Feast'),
(15874, 13433, 'en', 'name', 'Movember'),
(15875, 13434, 'en', 'name', 'Meridian Plastic Surgeons'),
(15876, 13435, 'en', 'name', 'Granada Hills Community Hospital'),
(15877, 13436, 'en', 'name', 'ManageBGL'),
(15878, 13437, 'en', 'name', 'Sanford Medical Center'),
(15879, 13438, 'en', 'name', 'Manitoga'),
(15880, 13439, 'en', 'name', 'Manovikas Kendra Rehabilitation and Research Institute'),
(15881, 13440, 'no_lang_code', 'name', 'ManRos Therapeutics (France)'),
(15882, 13441, 'no_lang_code', 'name', 'Marathon Kids'),
(15883, 13442, 'no_lang_code', 'name', 'MSM Protein Technologies (United States)'),
(15884, 13443, 'en', 'name', 'Lustgarten Foundation'),
(15885, 13444, 'en', 'name', 'Marian Regional Medical Center'),
(15886, 13445, 'en', 'name', 'Mount Sinai Queens'),
(15887, 13446, 'en', 'name', 'Law and Advocacy for Women in Uganda'),
(15888, 13447, 'en', 'name', 'Republican Oncological Clinical Dispensary'),
(15889, 13447, 'ru', 'name', 'Республиканский клинический онкологический Гиспансер'),
(15890, 13448, 'en', 'name', 'League Against Cancer'),
(15891, 13449, 'en', 'name', 'League of Conservation Voters'),
(15892, 13450, 'en', 'name', 'Multidisciplinary Association for Psychedelic Studies'),
(15893, 13451, 'en', 'name', 'Marshall Medical Center'),
(15894, 13452, 'en', 'name', 'Rising Ground'),
(15895, 13453, 'no_lang_code', 'name', 'Funk Production (Denmark)'),
(15896, 13454, 'en', 'name', 'Multiple Myeloma Research Foundation'),
(15897, 13455, 'no_lang_code', 'name', 'Merrimack Pharmaceuticals (United States)'),
(15898, 13456, 'en', 'name', 'Leaps of Faith Adaptive Skiers'),
(15899, 13457, 'en', 'name', 'Arizona Disabled Sports'),
(15900, 13458, 'no_lang_code', 'name', 'Munogenics (United States)'),
(15901, 13459, 'en', 'name', 'Ride 2 Recovery'),
(15902, 13460, 'en', 'name', 'Keiser University'),
(15903, 13461, 'en', 'name', 'Mesilla Valley Hospice'),
(15904, 13462, 'it', 'name', 'Lega Italiana per la Lotta ai Tumori'),
(15905, 13463, 'en', 'name', 'Kelsey Research Foundation'),
(15906, 13464, 'no_lang_code', 'name', 'Metaclipse Therapeutics (United States)'),
(15907, 13465, 'en', 'name', 'Murray Hill Neighborhood Association'),
(15908, 13466, 'en', 'name', 'Kendra''s Kisses'),
(15909, 13467, 'no_lang_code', 'name', 'Metallopharm (United States)'),
(15910, 13468, 'en', 'name', 'Kenosha County Department of Human Services'),
(15911, 13469, 'en', 'name', 'Legal Clinic for the Disabled'),
(15912, 13470, 'en', 'name', 'Covenant Children''s Hospital'),
(15913, 13471, 'en', 'name', 'Kent County Health Department'),
(15914, 13472, 'no_lang_code', 'name', 'Mary’s Center'),
(15915, 13473, 'en', 'name', 'VNA of Care New England'),
(15916, 13474, 'en', 'name', 'Legacy of Legends Foundation'),
(15917, 13475, 'en', 'name', 'Methodist Le Bonheur Healthcare'),
(15918, 13476, 'en', 'name', 'Kentucky Court of Justice'),
(15919, 13477, 'en', 'name', 'Museum of American Finance'),
(15920, 13478, 'en', 'name', 'Massachusetts Pain Initiative'),
(15921, 13479, 'no_lang_code', 'name', 'Keraplast Technologies (United States)'),
(15922, 13480, 'en', 'name', 'Lenoir–Rhyne University'),
(15923, 13481, 'en', 'name', 'Museum of Arts and Design'),
(15924, 13482, 'en', 'name', 'National Museum of Mathematics'),
(15925, 13483, 'en', 'name', 'Museum of Modern Art'),
(15926, 13484, 'en', 'name', 'Mark Codner, MD Plastic Surgery'),
(15927, 13485, 'en', 'name', 'St. Luke''s Clinic'),
(15928, 13486, 'no_lang_code', 'name', 'Keshet Dance Company (United States)'),
(15929, 13487, 'en', 'name', 'Muslim Community Center Medical Clinic'),
(15930, 13488, 'en', 'name', 'Maryland Ravens'),
(15931, 13489, 'en', 'name', 'Marymount Manhattan College'),
(15932, 13490, 'en', 'name', 'Leonard J. Chabert Medical Center'),
(15933, 13491, 'no_lang_code', 'name', 'M Welborn Group (United States)'),
(15934, 13492, 'en', 'name', 'Mashantucket Pequot Tribal Nation'),
(15935, 13493, 'no_lang_code', 'name', 'MetronomX (United States)'),
(15936, 13494, 'no_lang_code', 'name', 'Keystone Nano (United States)'),
(15937, 13495, 'en', 'name', 'Leonia Public Schools'),
(15938, 13496, 'no_lang_code', 'name', 'Masilamea Press (New Zealand)'),
(15939, 13497, 'no_lang_code', 'name', 'Genogen (United States)'),
(15940, 13498, 'no_lang_code', 'name', 'MyeloRx (United States)'),
(15941, 13499, 'en', 'name', 'Leonia United'),
(15942, 13500, 'en', 'name', 'Massachusetts Compassionate Care Coalition'),
(15943, 13501, 'no_lang_code', 'name', 'Myostin Therapeutics (Australia)'),
(15944, 13502, 'en', 'name', 'Equal Hope'),
(15945, 13503, 'en', 'name', 'Myotubular Myopathy Resource Group'),
(15946, 13504, 'en', 'name', 'Borough of Leonia'),
(15947, 13505, 'en', 'name', 'Singapore-MIT Alliance for Research and Technology'),
(15948, 13506, 'en', 'name', 'Kidney Cancer Association'),
(15949, 13507, 'en', 'name', 'Myrovlytis Trust'),
(15950, 13508, 'en', 'name', 'Metropolitan Detroit Research and Education Foundation'),
(15951, 13509, 'no_lang_code', 'name', 'Kids ''n Kamp'),
(15952, 13510, 'en', 'name', 'Massachusetts School Nurse Research Network'),
(15953, 13511, 'en', 'name', 'Kids Konnected'),
(15954, 13512, 'en', 'name', 'New Hanover County Schools'),
(15955, 13513, 'no_lang_code', 'name', 'MyTeam Triumph'),
(15956, 13514, 'en', 'name', 'Math for America'),
(15957, 13515, 'no_lang_code', 'name', 'Nivalis Therapeutics (United States)'),
(15958, 13516, 'no_lang_code', 'name', 'N8 Medical (United States)'),
(15959, 13517, 'en', 'name', 'Mathematics Foundation of America'),
(15960, 13518, 'no_lang_code', 'name', 'Kineta (United States)'),
(15961, 13519, 'en', 'name', 'MGH Institute of Health Professions'),
(15962, 13520, 'no_lang_code', 'name', 'Athenex (United States)'),
(15963, 13521, 'en', 'name', 'Mather LifeWays'),
(15964, 13522, 'en', 'name', 'Mi Raza Community Center'),
(15965, 13523, 'en', 'name', 'NAACP Legal Defense and Educational Fund'),
(15966, 13524, 'en', 'name', 'Max Planck Institute of Immunobiology and Epigenetics'),
(15967, 13524, 'de', 'name', 'Max-Planck-Institut für Immunobiologie und Epigenetik'),
(15968, 13525, 'en', 'name', 'Services for Independent Living'),
(15969, 13526, 'en', 'name', 'Disability Rights and Resources'),
(15970, 13527, 'no_lang_code', 'name', 'NanoMed Targeting Systems (United States)'),
(15971, 13528, 'en', 'name', 'Mayland Community College'),
(15972, 13529, 'en', 'name', 'Douglas Gardens Hospital'),
(15973, 13530, 'en', 'name', 'National Latina Institute for Reproductive Health'),
(15974, 13531, 'en', 'name', 'Michael Ryan Pattison Foundation'),
(15975, 13532, 'en', 'name', 'National Law Enforcement and Firefighters Children’s Foundation'),
(15976, 13533, 'en', 'name', 'Mazor Mental Health Center'),
(15977, 13533, 'he', 'name', '×”×ž×Ø×›×– הרפואי ×œ×‘×Ø×™××•×Ŗ הנפש ×ž×–×•×Ø'),
(15978, 13534, 'en', 'name', 'Lesotho Planned Parenthood Association'),
(15979, 13535, 'no_lang_code', 'name', 'MC2 Therapeutics (Denmark)'),
(15980, 13536, 'no_lang_code', 'name', 'Breakthrough'),
(15981, 13537, 'en', 'name', 'National LGBT Cancer Network'),
(15982, 13538, 'en', 'name', 'McAlister Institute'),
(15983, 13539, 'en', 'name', 'National Multiple Sclerosis Society'),
(15984, 13540, 'en', 'name', 'Leukaemia Foundation of Queensland'),
(15985, 13541, 'en', 'name', 'Leukemia and Lymphoma Society'),
(15986, 13542, 'en', 'name', 'National Nurses Association of Kenya'),
(15987, 13543, 'en', 'name', 'Leukemia Research Foundation'),
(15988, 13544, 'en', 'name', 'McCabe Centre for Law and Cancer'),
(15989, 13545, 'no_lang_code', 'name', 'Nanometics (United States)'),
(15990, 13546, 'no_lang_code', 'name', 'Lewin Group (United States)'),
(15991, 13547, 'no_lang_code', 'name', 'Lewis and Clark Pharmaceuticals (United States)'),
(15992, 13548, 'en', 'name', 'Lewisham and Greenwich NHS Trust'),
(15993, 13549, 'no_lang_code', 'name', 'Nanovis (United States)'),
(15994, 13550, 'en', 'name', 'VA Fanarjian National Center of Oncology'),
(15995, 13550, 'az', 'name', 'Վ.Ō±. Õ–Õ”Õ¶Õ”Ö€Õ»ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ուռուցքՔբՔնությՔն Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(15996, 13551, 'en', 'name', 'Lexington Medical Center'),
(15997, 13552, 'no_lang_code', 'name', 'McCarthy Modernization (United States)'),
(15998, 13553, 'en', 'name', 'Lennox-Gastaut Syndrome Foundation'),
(15999, 13554, 'en', 'name', 'McCarton Foundation'),
(16000, 13555, 'no_lang_code', 'name', 'Microchips Biotech (United States)'),
(16001, 13556, 'en', 'name', 'National Organization for Disorders of the Corpus Callosum'),
(16002, 13557, 'en', 'name', 'McDonough County Health Department'),
(16003, 13558, 'en', 'name', 'McDowell County Schools'),
(16004, 13559, 'en', 'name', 'Texas Medical Association'),
(16005, 13560, 'en', 'name', 'Lideres Campesinas'),
(16006, 13561, 'en', 'name', 'Augusta University Health'),
(16007, 13562, 'en', 'name', 'Northeast Health'),
(16008, 13563, 'en', 'name', 'Microfinance and Community Development Institute'),
(16009, 13564, 'en', 'name', 'National Rehabilitation Association'),
(16010, 13565, 'en', 'name', 'Life Goes On-Home Improvement'),
(16011, 13566, 'no_lang_code', 'name', 'Ascepion Pharmaceuticals (China)'),
(16012, 13567, 'en', 'name', 'Life Rolls On Foundation'),
(16013, 13568, 'en', 'name', 'National Advocates for Pregnant Women'),
(16014, 13569, 'no_lang_code', 'name', 'Asklepios'),
(16015, 13569, 'hu', 'name', 'Asklepios Kliniken'),
(16016, 13570, 'es', 'name', 'Asociación para el Desarrollo Integral Comunitario'),
(16017, 13571, 'en', 'name', 'McLoughlin Consulting'),
(16018, 13572, 'en', 'name', 'National Ageing Research Institute'),
(16019, 13573, 'en', 'name', 'Mid Atlantic Wheelchair Athletic Association'),
(16020, 13574, 'en', 'name', 'National Research Center for Maternal and Child Health'),
(16021, 13574, 'kk', 'name', 'Ана мен бала ұлттық ғылыми орталығы'),
(16022, 13575, 'en', 'name', 'National Alliance on Mental Illness'),
(16023, 13576, 'en', 'name', 'National Ambucs'),
(16024, 13577, 'en', 'name', 'Institute of Food Science'),
(16025, 13578, 'en', 'name', 'Mid Atlantic Epilepsy and Sleep Center'),
(16026, 13579, 'en', 'name', 'National September 11 Memorial and Museum'),
(16027, 13580, 'en', 'name', 'National Society of Genetic Counselors'),
(16028, 13581, 'en', 'name', 'LifeBridge Health'),
(16029, 13582, 'en', 'name', 'St. Joseph’s Children’s Hospital'),
(16030, 13583, 'en', 'name', 'Goryeb Children''s Hospital'),
(16031, 13584, 'en', 'name', 'National Aphasia Association'),
(16032, 13585, 'en', 'name', 'Lifeline Hospital'),
(16033, 13586, 'en', 'name', 'Center for Diagnosis and Research on Alzheimer''s Disease'),
(16034, 13586, 'fr', 'name', 'Centre Diagnostique & Recherche en Alzheimer'),
(16035, 13587, 'no_lang_code', 'name', 'Novacule (United States)'),
(16036, 13588, 'no_lang_code', 'name', 'LifeSplice Pharma (United States)'),
(16037, 13589, 'en', 'name', 'National Sports Center for the Disabled'),
(16038, 13590, 'no_lang_code', 'name', 'NKT Therapeutics (United States)'),
(16039, 13591, 'en', 'name', 'LIFE/RUN Center for Independent Living'),
(16040, 13592, 'en', 'name', 'National Association of E. E. Smith Alumni and Friends'),
(16041, 13593, 'en', 'name', 'Linking Employment, Abilities and Potential'),
(16042, 13594, 'en', 'name', 'National Wheelchair Basketball Association'),
(16043, 13595, 'en', 'name', 'Light and Salt Association'),
(16044, 13596, 'en', 'name', 'Barnert Temple'),
(16045, 13597, 'en', 'name', 'No Wooden Nickels'),
(16046, 13598, 'en', 'name', 'Native American Advocacy Program'),
(16047, 13599, 'en', 'name', 'Midwest Wheelchair Sport and Social Club'),
(16048, 13600, 'no_lang_code', 'name', 'Native American Cancer Initiatives (United States)'),
(16049, 13601, 'en', 'name', 'Lili Claire Foundation'),
(16050, 13602, 'en', 'name', 'Mighty4 Arts Foundation'),
(16051, 13603, 'en', 'name', 'Limbs For Life Foundation'),
(16052, 13604, 'en', 'name', 'National Bone Marrow Transplant Link'),
(16053, 13605, 'en', 'name', 'CancerLINC'),
(16054, 13606, 'en', 'name', 'Native American Kennels'),
(16055, 13607, 'en', 'name', 'Noble'),
(16056, 13608, 'en', 'name', 'National Brain Tumor Society'),
(16057, 13609, 'en', 'name', 'Lincoln Center for the Performing Arts'),
(16058, 13610, 'en', 'name', 'Native Americans for Community Action'),
(16059, 13611, 'en', 'name', 'Lincoln Charter School'),
(16060, 13612, 'no_lang_code', 'name', 'Nodality (United States)'),
(16061, 13613, 'en', 'name', 'Migrant Clinicians Network'),
(16062, 13614, 'en', 'name', 'Natividad Foundation'),
(16063, 13615, 'en', 'name', 'Northwest Community Health Center'),
(16064, 13616, 'en', 'name', 'Natural Resources Defense Council'),
(16065, 13617, 'no_lang_code', 'name', 'Mikey’s Way Foundation'),
(16066, 13618, 'en', 'name', 'Lincoln Fencing Club'),
(16067, 13619, 'en', 'name', 'Greensboro Science Center'),
(16068, 13620, 'en', 'name', 'Leonia Lions Club'),
(16069, 13621, 'en', 'name', 'Miles Perret Cancer Services'),
(16070, 13622, 'en', 'name', 'Mille Lacs Band of Ojibwe'),
(16071, 13623, 'en', 'name', 'Psychiatric Medical Center'),
(16072, 13624, 'no_lang_code', 'name', 'Linnet Biopharmaceuticals (United States)'),
(16073, 13625, 'en', 'name', 'Millennium Charter Academy'),
(16074, 13626, 'en', 'name', 'Millennium Health and Human Services'),
(16075, 13627, 'no_lang_code', 'name', 'Lighting Innovation (United States)'),
(16076, 13628, 'en', 'name', 'Mind Body Solutions'),
(16077, 13629, 'en', 'name', 'MIND Research Institute'),
(16078, 13630, 'en', 'name', 'Ministry of Gender and Development'),
(16079, 13631, 'en', 'name', 'Literacy for Environmental Justice'),
(16080, 13632, 'en', 'name', 'Minnesota Department of Corrections'),
(16081, 13633, 'en', 'name', 'Little Angels Early Childhood Center'),
(16082, 13634, 'en', 'name', 'Minnesota Epilepsy Group'),
(16083, 13635, 'en', 'name', 'Little Bit Therapeutic Riding Center'),
(16084, 13636, 'en', 'name', 'Norte Maar'),
(16085, 13637, 'no_lang_code', 'name', 'It’s The Journey'),
(16086, 13638, 'en', 'name', 'Live Healthy DeKalb County'),
(16087, 13639, 'en', 'name', 'Professional Association of Therapeutic Horsemanship International'),
(16088, 13640, 'en', 'name', 'Proof Alliance'),
(16089, 13641, 'en', 'name', 'Egyptian Atomic Energy Authority'),
(16090, 13642, 'en', 'name', 'North Bay Cancer Alliance'),
(16091, 13643, 'en', 'name', 'National Center for Advancing Translational Sciences'),
(16092, 13644, 'en', 'name', 'Broward Health'),
(16093, 13645, 'en', 'name', 'National Center for Disease Control and Public Health'),
(16094, 13645, 'ka', 'name', 'įƒ“įƒįƒįƒ•įƒįƒ“įƒ”įƒ‘įƒįƒ—įƒ įƒ™įƒįƒœįƒ¢įƒ įƒįƒšįƒ˜įƒ”įƒ įƒ“įƒ įƒ”įƒįƒ–įƒįƒ’įƒįƒ“įƒįƒ”įƒ‘įƒ įƒ˜įƒ•įƒ˜ įƒÆįƒįƒœįƒ›įƒ įƒ—įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜'),
(16095, 13646, 'en', 'name', 'Living Beyond Breast Cancer'),
(16096, 13647, 'en', 'name', 'Living Classrooms'),
(16097, 13648, 'en', 'name', 'National Center for Farmworker Health'),
(16098, 13649, 'en', 'name', 'Miracle League of Blair County'),
(16099, 13650, 'en', 'name', 'North Carolina Aquarium'),
(16100, 13651, 'en', 'name', 'Living Independently Now Center'),
(16101, 13652, 'en', 'name', 'Coastal Land Trust'),
(16102, 13653, 'en', 'name', 'Miriam''s Kitchen'),
(16103, 13654, 'en', 'name', 'National Center for Learning Disabilities'),
(16104, 13655, 'en', 'name', 'Mission Neighborhood Health Center'),
(16105, 13656, 'en', 'name', 'Living Springs Community Church'),
(16106, 13657, 'en', 'name', 'Mission Children''s Hospital'),
(16107, 13658, 'en', 'name', 'North Carolina Society of Hispanic Professionals'),
(16108, 13659, 'en', 'name', 'LivingWell Cancer Resource Center'),
(16109, 13660, 'no_lang_code', 'name', 'Lixte (United States)'),
(16110, 13661, 'en', 'name', 'Mission Health'),
(16111, 13662, 'en', 'name', 'North Carolina Virtual Public School'),
(16112, 13663, 'en', 'name', 'NC Little Memorial Hospice'),
(16113, 13664, 'en', 'name', 'North Carolina Zoo Society'),
(16114, 13665, 'en', 'name', 'New York State Office of Children and Family Services'),
(16115, 13666, 'no_lang_code', 'name', 'Lohocla Research Corporation (United States)'),
(16116, 13667, 'en', 'name', 'North Colorado Medical Center Foundation'),
(16117, 13668, 'en', 'name', 'North Country Home Health & Hospice Agency'),
(16118, 13669, 'en', 'name', 'North Country Hospital'),
(16119, 13670, 'en', 'name', 'Lone Star Paralysis Foundation'),
(16120, 13671, 'en', 'name', 'North Florida/South Georgia Veterans Health System'),
(16121, 13672, 'en', 'name', 'North Fork Breast Health Coalition'),
(16122, 13673, 'en', 'name', 'North Central Florida Neurodiagnostic Services'),
(16123, 13674, 'en', 'name', 'National Children''s Cancer Society'),
(16124, 13675, 'en', 'name', 'Long Island Association'),
(16125, 13676, 'en', 'name', 'St. Alexius Heart and Lung Clinic'),
(16126, 13677, 'en', 'name', 'Long Island Junior Soccer League'),
(16127, 13678, 'en', 'name', 'Tri-State Wheelchair Athletic Association'),
(16128, 13679, 'en', 'name', 'National Council of Negro Women'),
(16129, 13680, 'en', 'name', 'Misty Meadows Mitey Riders'),
(16130, 13681, 'en', 'name', 'Necessities Bag'),
(16131, 13682, 'no_lang_code', 'name', 'Longevity Biotech (United States)'),
(16132, 13683, 'en', 'name', 'Lori Arquilla Andersen Foundation'),
(16133, 13684, 'en', 'name', 'Los Angeles Centers for Alcohol and Drug Abuse'),
(16134, 13685, 'en', 'name', 'National Council on Indepedent Living'),
(16135, 13686, 'en', 'name', 'Neighborhood House Association'),
(16136, 13687, 'en', 'name', 'North Shore Animal League America'),
(16137, 13688, 'en', 'name', 'North Shore Child & Family Guidance Center'),
(16138, 13689, 'no_lang_code', 'name', 'Mitergy (United States)'),
(16139, 13690, 'en', 'name', 'North Shore Pro Musica'),
(16140, 13691, 'en', 'name', 'Neil Squire Society'),
(16141, 13692, 'en', 'name', 'National Domestic Workers Alliance'),
(16142, 13693, 'en', 'name', 'National Eating Disorders Association'),
(16143, 13694, 'en', 'name', 'Northeast Florida Healthy Start Coalition'),
(16144, 13695, 'no_lang_code', 'name', 'Mitra Biotech (India)'),
(16145, 13696, 'en', 'name', 'Mixteco IndĆ­gena Community Organizing Project'),
(16146, 13697, 'en', 'name', 'NEOMED Institute'),
(16147, 13698, 'en', 'name', 'Mitochondria Research and Medicine Society'),
(16148, 13699, 'en', 'name', 'National Hispanic Council on Aging'),
(16149, 13700, 'en', 'name', 'Michigan Institute for Neurological Disorders'),
(16150, 13701, 'en', 'name', 'Nepal Cancer Hospital and Research Center'),
(16151, 13701, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą„ą¤Æą¤¾ą¤Øą„ą¤øą¤° ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² र ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(16152, 13702, 'en', 'name', 'Nepal Ambulance Service'),
(16153, 13703, 'en', 'name', 'Texas Neurology'),
(16154, 13704, 'no_lang_code', 'name', 'Nereus Life Sciences (United States)'),
(16155, 13705, 'en', 'name', 'National Hospice Foundation'),
(16156, 13706, 'en', 'name', 'Netaji Subhas Chandra Bose Cancer Research Institute'),
(16157, 13707, 'en', 'name', 'Mobility Unlimited'),
(16158, 13708, 'en', 'name', 'Northeastern School District'),
(16159, 13709, 'en', 'name', 'Alaska Neurology Center'),
(16160, 13710, 'en', 'name', 'Northern California Indian Development Council'),
(16161, 13711, 'no_lang_code', 'name', 'Netronix (United States)'),
(16162, 13712, 'en', 'name', 'San Francisco VA Health Care System'),
(16163, 13713, 'en', 'name', 'Benefis Health System Foundation'),
(16164, 13714, 'no_lang_code', 'name', 'Modulation Therapeutics (United States)');
INSERT INTO `ror_settings` VALUES
(16165, 13715, 'no_lang_code', 'name', 'Moerae Matrix (United States)'),
(16166, 13716, 'no_lang_code', 'name', 'NeurAccel Biosciences (United States)'),
(16167, 13717, 'en', 'name', 'Neural Repair Institute'),
(16168, 13718, 'en', 'name', 'Northern Neurosciences'),
(16169, 13719, 'en', 'name', 'Neuro Assistance Foundation'),
(16170, 13720, 'no_lang_code', 'name', 'Neuro-Zone (Italy)'),
(16171, 13721, 'en', 'name', 'Northern Nevada Children''s Cancer Foundation'),
(16172, 13722, 'en', 'name', 'Kaiser Permanente Castle Medical Center'),
(16173, 13723, 'en', 'name', 'Children’s Clinics'),
(16174, 13724, 'en', 'name', 'National Institute of Cancer Research and Hospital'),
(16175, 13724, 'bn', 'name', 'ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦•ą§ą¦Æą¦¾ą¦Øą§ą¦øą¦¾ą¦° গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ ও হাসপাতাল'),
(16176, 13725, 'no_lang_code', 'name', 'Neurochlore (France)'),
(16177, 13726, 'en', 'name', 'NeuroDevNet'),
(16178, 13727, 'en', 'name', 'National Institute of Child Health'),
(16179, 13727, 'hu', 'name', 'OrszÔgos Gyermek Egészségügyi Intézet'),
(16180, 13728, 'no_lang_code', 'name', 'NeuroHealing Pharmaceuticals (United States)'),
(16181, 13729, 'en', 'name', 'Opportunity Foundation of America'),
(16182, 13730, 'en', 'name', 'NeuroLinx Research Institute'),
(16183, 13731, 'en', 'name', 'Northwest Florida Hematology Oncology'),
(16184, 13732, 'no_lang_code', 'name', 'Opsona Therapeutics (Ireland)'),
(16185, 13733, 'en', 'name', 'Northwest Georgia Regional Cancer Coalition'),
(16186, 13734, 'en', 'name', 'Community Medical Center'),
(16187, 13735, 'en', 'name', 'Neurologic Disease Foundation'),
(16188, 13736, 'en', 'name', 'Neurological Recovery House'),
(16189, 13737, 'en', 'name', 'Northwest Hospital'),
(16190, 13738, 'en', 'name', 'Cooper Clinic'),
(16191, 13739, 'en', 'name', 'Covenant Health System'),
(16192, 13740, 'en', 'name', 'Illinois Area Health Education Center'),
(16193, 13741, 'en', 'name', 'Orange County Asian Pacific Islander Community Alliance'),
(16194, 13742, 'en', 'name', 'Neurology Specialists of Monmouth County'),
(16195, 13743, 'en', 'name', 'Orange County School'),
(16196, 13744, 'no_lang_code', 'name', 'Neuron BioPharma (Spain)'),
(16197, 13745, 'en', 'name', 'Oregon Adaptive Sports'),
(16198, 13746, 'en', 'name', 'Oregon College of Oriental Medicine'),
(16199, 13747, 'no_lang_code', 'name', 'NX PharmaGen (United States)'),
(16200, 13748, 'no_lang_code', 'name', 'NeuroNascent (United States)'),
(16201, 13749, 'en', 'name', 'Orelena Hawks Puckett Institute'),
(16202, 13750, 'en', 'name', 'Elkhart Clinic'),
(16203, 13751, 'en', 'name', 'National Institute of Population Studies'),
(16204, 13752, 'en', 'name', 'Not-Me!'),
(16205, 13753, 'en', 'name', 'Note-Able Music Therapy Services'),
(16206, 13754, 'en', 'name', 'Nothing But Nets'),
(16207, 13755, 'en', 'name', 'Georgia Regents Medical Center'),
(16208, 13756, 'no_lang_code', 'name', 'Orion Genomics (United States)'),
(16209, 13757, 'no_lang_code', 'name', 'NovaBay Pharmaceuticals (United States)'),
(16210, 13758, 'en', 'name', 'Hamot Health Foundation'),
(16211, 13759, 'en', 'name', 'Pike County Health Department'),
(16212, 13760, 'en', 'name', 'Hillcrest Clinics'),
(16213, 13761, 'en', 'name', 'Ormylia Foundation'),
(16214, 13762, 'no_lang_code', 'name', 'OrphageniX (United States)'),
(16215, 13763, 'en', 'name', 'Orpheus Chamber Orchestra'),
(16216, 13764, 'en', 'name', 'Pike High School'),
(16217, 13765, 'no_lang_code', 'name', 'Orpro Therapeutics (United States)'),
(16218, 13766, 'en', 'name', 'Orthopaedic Research Laboratories'),
(16219, 13767, 'en', 'name', 'Jupiter Medical Center'),
(16220, 13768, 'en', 'name', 'Pilates of Marin'),
(16221, 13769, 'en', 'name', 'Kadlec Regional Medical Center'),
(16222, 13770, 'en', 'name', 'Jefferson University Hospitals'),
(16223, 13771, 'en', 'name', 'OAK Orthopedics'),
(16224, 13772, 'no_lang_code', 'name', 'Ortin Laboratories (India)'),
(16225, 13773, 'no_lang_code', 'name', 'ViaCyte (United States)'),
(16226, 13774, 'en', 'name', 'National Capital Baptist Convention'),
(16227, 13775, 'no_lang_code', 'name', 'Neurotez (United States)'),
(16228, 13776, 'en', 'name', 'Loma Linda University Health Care'),
(16229, 13777, 'en', 'name', 'Pilipino Senior Resource Center'),
(16230, 13778, 'en', 'name', 'Pine Cobble School'),
(16231, 13779, 'no_lang_code', 'name', 'NeuroVigil (United States)'),
(16232, 13780, 'no_lang_code', 'name', 'NeuroVista (United States)'),
(16233, 13781, 'en', 'name', 'OSF Saint Anthony Medical Center'),
(16234, 13782, 'en', 'name', 'Sound Rivers'),
(16235, 13783, 'en', 'name', 'Nevada Cancer Research Foundation'),
(16236, 13784, 'en', 'name', 'Hauppauge Public School'),
(16237, 13785, 'en', 'name', 'OSF Saint Francis Foundation'),
(16238, 13786, 'en', 'name', 'Nevada Childhood Cancer Foundation'),
(16239, 13787, 'en', 'name', 'Accessible Space'),
(16240, 13788, 'en', 'name', 'Lady Mavericks Wheelchair Basketball'),
(16241, 13789, 'en', 'name', 'Novokuznetsk State Institute of Advanced Medical Education'),
(16242, 13789, 'ru', 'name', 'ŠŠ¾Š²Š¾ŠŗŃƒŠ·Š½ŠµŃ†ŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŃŠ¾Š²ŠµŃ€ŃˆŠµŠ½ŃŃ‚Š²Š¾Š²Š°Š½ŠøŃ врачей'),
(16243, 13790, 'no_lang_code', 'name', 'Nymirum (United States)'),
(16244, 13791, 'en', 'name', 'Pink Ribbons Project'),
(16245, 13792, 'en', 'name', 'Our Family Services'),
(16246, 13793, 'no_lang_code', 'name', 'Noxxon Pharma (Germany)'),
(16247, 13794, 'en', 'name', 'New America'),
(16248, 13795, 'en', 'name', 'Pioneer Network'),
(16249, 13796, 'en', 'name', 'New Americans Community Services'),
(16250, 13797, 'en', 'name', 'Pisgah Astronomical Research Institute'),
(16251, 13798, 'en', 'name', 'Dean Health Systems'),
(16252, 13799, 'en', 'name', 'Kennedy Memorial Hospital'),
(16253, 13800, 'en', 'name', 'New Beginnings Community Center'),
(16254, 13801, 'en', 'name', 'Onslow County School System'),
(16255, 13802, 'no_lang_code', 'name', 'PixarBio (United States)'),
(16256, 13803, 'en', 'name', 'Our Lady of Perpetual Help'),
(16257, 13804, 'en', 'name', 'Placer School for Adults'),
(16258, 13805, 'en', 'name', 'Ntengwe for Community Development'),
(16259, 13806, 'en', 'name', 'New England Anti-Vivisection Society'),
(16260, 13807, 'en', 'name', 'Plan International'),
(16261, 13808, 'en', 'name', 'Plan International Regional Office of the Americas'),
(16262, 13809, 'en', 'name', 'New England Coalition for Cancer Survivorship'),
(16263, 13810, 'en', 'name', 'Plan International Tanzania'),
(16264, 13811, 'en', 'name', 'New England Disabled Sports'),
(16265, 13812, 'en', 'name', 'New England Handicapped Sports Association'),
(16266, 13813, 'en', 'name', 'Neurology Associates of Arlington'),
(16267, 13814, 'en', 'name', 'Ovar''coming Together'),
(16268, 13815, 'en', 'name', 'Nueva Vida'),
(16269, 13816, 'en', 'name', 'Ovarian Cancer Institute'),
(16270, 13817, 'en', 'name', 'New Frontier'),
(16271, 13818, 'en', 'name', 'Planned Parenthood Association of Liberia'),
(16272, 13819, 'en', 'name', 'New Hampshire Hospice and Palliative Care Organization'),
(16273, 13820, 'en', 'name', 'Ovarian Cancer National Alliance'),
(16274, 13821, 'en', 'name', 'New Haven Family Alliance'),
(16275, 13822, 'en', 'name', 'New Horizons Independent Living Center'),
(16276, 13823, 'fr', 'name', 'District scolaire de Philadelphie'),
(16277, 13823, 'es', 'name', 'Distrito escolar de Filadelfia'),
(16278, 13823, 'en', 'name', 'School District of Philadelphia'),
(16279, 13824, 'en', 'name', 'Planned Parenthood Hudson Peconic'),
(16280, 13825, 'en', 'name', 'Texas Nurses Association'),
(16281, 13826, 'en', 'name', 'Oxfam America'),
(16282, 13827, 'en', 'name', 'Nurse-Family Partnership'),
(16283, 13828, 'no_lang_code', 'name', 'Ozmosis Research (Canada)'),
(16284, 13829, 'en', 'name', 'New Orleans Musicians Assistance Foundation'),
(16285, 13830, 'en', 'name', 'New Pisgah Community Service Organization'),
(16286, 13831, 'en', 'name', 'Planned Parenthood of Metropolitan Washington'),
(16287, 13832, 'en', 'name', 'Planned Parenthood Southeast'),
(16288, 13833, 'en', 'name', 'Nursing Mothers Counsel'),
(16289, 13834, 'en', 'name', 'Plaza Community Services'),
(16290, 13835, 'en', 'name', 'Olive View-UCLA Medical Center'),
(16291, 13836, 'en', 'name', 'Pleasant Hill Community Center'),
(16292, 13837, 'en', 'name', 'OSF HealthCare'),
(16293, 13838, 'en', 'name', 'Nutritional Oncology Research Institute'),
(16294, 13839, 'en', 'name', 'New York Collaborates for Autism'),
(16295, 13840, 'en', 'name', 'PA Breast Cancer Coalition'),
(16296, 13841, 'en', 'name', 'New York Legal Assistance Group'),
(16297, 13842, 'en', 'name', 'Providence Medford Medical Center'),
(16298, 13843, 'en', 'name', 'Pennsylvania Center For Intuitive Studies'),
(16299, 13844, 'en', 'name', 'Providence St. Peter Hospital'),
(16300, 13845, 'en', 'name', 'Rapides Regional Medical Center'),
(16301, 13846, 'en', 'name', 'New York Restoration Project'),
(16302, 13847, 'en', 'name', 'New York Public Radio'),
(16303, 13848, 'en', 'name', 'Encompass Health Rehabilitation Hospital of Tinton Falls'),
(16304, 13849, 'en', 'name', 'Renown Children''s Hospital'),
(16305, 13850, 'en', 'name', 'Renown Health'),
(16306, 13851, 'no_lang_code', 'name', 'Plexcera Therapeutics (United States)'),
(16307, 13852, 'en', 'name', 'Parent Advocacy Coalition for Educational Rights'),
(16308, 13853, 'en', 'name', 'Renown South Meadows Medical Center'),
(16309, 13854, 'en', 'name', 'New Yorkers for Parks'),
(16310, 13855, 'en', 'name', 'St. David''s Round Rock Medical Center'),
(16311, 13856, 'no_lang_code', 'name', 'Neuromathix (Australia)'),
(16312, 13857, 'no_lang_code', 'name', 'Plumbline Coaching & Consulting (United States)'),
(16313, 13858, 'en', 'name', 'Newark Academy'),
(16314, 13859, 'en', 'name', 'Neurology Centers of the Carolinas'),
(16315, 13860, 'en', 'name', 'PNA Center for Neurological Research'),
(16316, 13861, 'en', 'name', 'Newark Community Health Centers'),
(16317, 13862, 'no_lang_code', 'name', 'NewGen Therapeutics (United States)'),
(16318, 13863, 'no_lang_code', 'name', 'Podiceps (Netherlands)'),
(16319, 13864, 'en', 'name', 'St. Anthony’s Hospital'),
(16320, 13865, 'en', 'name', 'Pachyonychia Congenita Project'),
(16321, 13866, 'en', 'name', 'Newport Festivals Foundation'),
(16322, 13867, 'en', 'name', 'St. Charles Hospital'),
(16323, 13868, 'es', 'name', 'PoliclĆ­nica Gipuzkoa'),
(16324, 13869, 'en', 'name', 'St. Francis Medical Center'),
(16325, 13870, 'en', 'name', 'Pacific Cancer Foundation'),
(16326, 13871, 'en', 'name', 'Newton Symphony Orchestra'),
(16327, 13872, 'en', 'name', 'Pacific Center for Human Growth'),
(16328, 13873, 'en', 'name', 'Poly Prep Country Day School'),
(16329, 13874, 'en', 'name', 'Texoma Neurology Associates'),
(16330, 13875, 'en', 'name', 'Baton Rouge Clinic'),
(16331, 13876, 'no_lang_code', 'name', 'Polyphor (Switzerland)'),
(16332, 13877, 'en', 'name', 'Newton-Conover Health and Science High School'),
(16333, 13878, 'no_lang_code', 'name', 'NexImmune (United States)'),
(16334, 13879, 'en', 'name', 'NextSteps Chicago'),
(16335, 13880, 'en', 'name', 'NextStep Fitness'),
(16336, 13881, 'en', 'name', 'Pacific Crest Trail Association'),
(16337, 13882, 'en', 'name', 'Port Jefferson Lions Club'),
(16338, 13883, 'no_lang_code', 'name', 'Pacific World Discovery (United States)'),
(16339, 13884, 'en', 'name', 'Portland Fruit Tree Project'),
(16340, 13885, 'en', 'name', 'Pushing Boundaries'),
(16341, 13886, 'en', 'name', 'Possible Health'),
(16342, 13887, 'en', 'name', 'Mazumdar Shaw Medical Centre'),
(16343, 13888, 'en', 'name', 'Positive Resource Center'),
(16344, 13889, 'en', 'name', 'Pain and Rehabilitation Medicine'),
(16345, 13890, 'en', 'name', 'Nia Association'),
(16346, 13891, 'en', 'name', 'Pain Clinic of India'),
(16347, 13892, 'en', 'name', 'Pain Relief and Palliative Care Society'),
(16348, 13893, 'en', 'name', 'O''Brien Institute'),
(16349, 13894, 'en', 'name', 'Pal-O-Mine Equestrian'),
(16350, 13895, 'en', 'name', 'Potomac Massage Training Institute'),
(16351, 13896, 'en', 'name', 'Nick Simons Institute'),
(16352, 13897, 'en', 'name', 'St Peter''s Hospital'),
(16353, 13898, 'en', 'name', 'Palo Alto Center for Pulmonary Disease Prevention'),
(16354, 13899, 'en', 'name', 'Nigerian Christian Hospital'),
(16355, 13900, 'en', 'name', 'Palo Alto Veterans Institute for Research'),
(16356, 13901, 'en', 'name', 'Oakland Symphony'),
(16357, 13902, 'en', 'name', 'Power Paws Assistance Dogs'),
(16358, 13903, 'en', 'name', 'Oakville Public Library'),
(16359, 13904, 'en', 'name', 'Nightingales Medical Trust'),
(16360, 13905, 'no_lang_code', 'name', 'Oasis Diagnostics (United States)'),
(16361, 13906, 'no_lang_code', 'name', 'Prana Biotechnology (Australia)'),
(16362, 13907, 'en', 'name', 'Prayer of Faith International Ministries'),
(16363, 13908, 'en', 'name', 'Ocean Classroom'),
(16364, 13909, 'no_lang_code', 'name', 'Panasonic (United States)'),
(16365, 13910, 'en', 'name', 'Ochin'),
(16366, 13911, 'no_lang_code', 'name', 'Precision BioSciences (United States)'),
(16367, 13912, 'en', 'name', 'Rebuilding All Goals Efficiently'),
(16368, 13913, 'en', 'name', 'Rebuilding Together NYC'),
(16369, 13914, 'en', 'name', 'Pangaea Global AIDS Foundation'),
(16370, 13915, 'en', 'name', 'Reconstruction of a Survivor'),
(16371, 13916, 'no_lang_code', 'name', 'Panorama Research (United States)'),
(16372, 13917, 'en', 'name', 'Premier Health Care'),
(16373, 13918, 'en', 'name', 'Odyssey School'),
(16374, 13919, 'en', 'name', 'Red Cloud Indian School'),
(16375, 13920, 'en', 'name', 'Red Feather Development Group'),
(16376, 13921, 'no_lang_code', 'name', 'Paradigm Shift Therapeutics (United States)'),
(16377, 13922, 'en', 'name', 'Maternal Child and Family Health'),
(16378, 13923, 'en', 'name', 'National Office of Samoan Affairs'),
(16379, 13924, 'en', 'name', 'Paralyzed Veterans of America, Cal-Diego Chapter'),
(16380, 13925, 'en', 'name', 'Paraquad'),
(16381, 13926, 'no_lang_code', 'name', 'Paratek Pharmaceuticals (United States)'),
(16382, 13927, 'en', 'name', 'NeuroMedical Center'),
(16383, 13928, 'en', 'name', 'Parelli Foundation'),
(16384, 13929, 'en', 'name', 'Reel Recovery'),
(16385, 13930, 'en', 'name', 'Prescott Center for the Arts'),
(16386, 13931, 'en', 'name', 'Touch the Future'),
(16387, 13932, 'en', 'name', 'President''s Council of Advisors on Science and Technology'),
(16388, 13933, 'en', 'name', 'ProMedica Russell J. Ebeid Children''s Hospital'),
(16389, 13934, 'en', 'name', 'Pressing On'),
(16390, 13935, 'en', 'name', 'Community Partners of South Florida'),
(16391, 13936, 'no_lang_code', 'name', 'Prestige World Genetics Pte (Singapore)'),
(16392, 13937, 'en', 'name', 'The Parenting Cottage'),
(16393, 13938, 'en', 'name', 'Prevent Cancer Foundation'),
(16394, 13939, 'en', 'name', 'University of North Carolina Hospitals'),
(16395, 13940, 'en', 'name', 'Parents With A Purpose'),
(16396, 13941, 'en', 'name', 'Park Avenue Synagogue'),
(16397, 13942, 'en', 'name', 'Primary Care Coalition of Montgomery County'),
(16398, 13943, 'en', 'name', 'Prince George''s County Health Department'),
(16399, 13944, 'en', 'name', 'University of Virginia Hospital'),
(16400, 13945, 'en', 'name', 'Parker Jewish Institute for Health Care and Rehabilitation'),
(16401, 13946, 'en', 'name', 'Ohio Pain Initiative'),
(16402, 13947, 'en', 'name', 'Parkland Foundation'),
(16403, 13948, 'en', 'name', 'Region One Mental Health'),
(16404, 13949, 'en', 'name', 'LAND studio'),
(16405, 13950, 'en', 'name', 'Community Counseling Services'),
(16406, 13951, 'en', 'name', 'White Plains Hospital'),
(16407, 13952, 'en', 'name', 'Pine Belt Mental Healthcare Resources'),
(16408, 13953, 'en', 'name', 'OhioHealth'),
(16409, 13954, 'en', 'name', 'Regional Cancer Center, Thiruvananthapuram'),
(16410, 13955, 'en', 'name', 'Partners Asia'),
(16411, 13956, 'en', 'name', 'Princeton Child Development Institute'),
(16412, 13957, 'en', 'name', 'Partners for Cancer Care and Prevention'),
(16413, 13958, 'en', 'name', 'INTEGRIS Southwest Medical Center'),
(16414, 13959, 'en', 'name', 'The Princeton Festival'),
(16415, 13960, 'en', 'name', 'Regional Arab Network against AIDS'),
(16416, 13961, 'no_lang_code', 'name', 'Prism Biolab Corporation (Japan)'),
(16417, 13962, 'no_lang_code', 'name', 'Privo Technologies (United States)'),
(16418, 13963, 'en', 'name', 'Pro Bono Counseling Project'),
(16419, 13964, 'en', 'name', 'Oklahoma Brain Tumor Foundation'),
(16420, 13965, 'es', 'name', 'Supera'),
(16421, 13966, 'no_lang_code', 'name', 'ProActive Solutions (United States)'),
(16422, 13967, 'no_lang_code', 'name', 'ProCrysta Biologix (United States)'),
(16423, 13968, 'en', 'name', 'Rehabilitation Institute of Michigan'),
(16424, 13969, 'en', 'name', 'Carondelet Health'),
(16425, 13970, 'en', 'name', 'Rehabilitation Institute of Kansas City'),
(16426, 13971, 'no_lang_code', 'name', 'Prodo Laboratories (United States)'),
(16427, 13972, 'es', 'name', 'Fundación Mercy Care'),
(16428, 13972, 'en', 'name', 'Mercy Care Foundation'),
(16429, 13973, 'en', 'name', 'Partners for Youth with Disabilities'),
(16430, 13974, 'en', 'name', 'Old Westbury Gardens'),
(16431, 13975, 'en', 'name', 'Partners In Care'),
(16432, 13976, 'no_lang_code', 'name', 'Dancing Wheels (United States)'),
(16433, 13977, 'en', 'name', 'Partners in Care Foundation'),
(16434, 13978, 'en', 'name', 'St. Patrick Roman Catholic Church'),
(16435, 13979, 'en', 'name', 'Professional Tutors of America'),
(16436, 13980, 'no_lang_code', 'name', 'Olema Pharmaceuticals (United States)'),
(16437, 13981, 'en', 'name', 'Saitama Medical University Hospital'),
(16438, 13981, 'ja', 'name', 'åŸ¼ēŽ‰åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(16439, 13982, 'en', 'name', 'Ministry of Health of the Republic of Uzbekistan'),
(16440, 13982, 'uz', 'name', 'ŠŽŠ·Š±ŠµŠŗŠøŃŃ‚Š¾Š½ Республикаси Доғлиқни ŃŠ°Ņ›Š»Š°Ńˆ вазирлиги'),
(16441, 13983, 'en', 'name', 'Research Advocacy Network'),
(16442, 13984, 'no_lang_code', 'name', 'Saladax Biomedical (United States)'),
(16443, 13985, 'no_lang_code', 'name', 'Progenitor Cell Therapy (United States)'),
(16444, 13986, 'en', 'name', 'Partnership for Health Analytic Research'),
(16445, 13987, 'en', 'name', 'OMNI Institute'),
(16446, 13988, 'no_lang_code', 'name', 'Omniox (United States)'),
(16447, 13989, 'en', 'name', 'Salinas Valley Memorial Healthcare System'),
(16448, 13990, 'en', 'name', 'Salt Lake County Parks and Recreation'),
(16449, 13991, 'en', 'name', 'Partnership Schools'),
(16450, 13992, 'en', 'name', 'The Salvation Army United States'),
(16451, 13993, 'no_lang_code', 'name', 'Oncoceutics (United States)'),
(16452, 13994, 'en', 'name', 'Project Angel Heart'),
(16453, 13995, 'en', 'name', 'Neurology Center of Southern California'),
(16454, 13996, 'en', 'name', 'Sam Schmidt Paralysis Foundation'),
(16455, 13997, 'en', 'name', 'Sama Resource Group for Women and Health'),
(16456, 13998, 'en', 'name', 'Mount Hagen Provincial Hospital'),
(16457, 13999, 'no_lang_code', 'name', 'Centus'),
(16458, 14000, 'en', 'name', 'Samaritan Health Services'),
(16459, 14001, 'en', 'name', 'Center for Courageous Kids'),
(16460, 14002, 'en', 'name', 'Samaritan Healthcare and Hospice'),
(16461, 14003, 'en', 'name', 'Project Concern International'),
(16462, 14004, 'en', 'name', 'Samaritan Hospital'),
(16463, 14005, 'en', 'name', 'Project Empower'),
(16464, 14006, 'en', 'name', 'Sampson County Schools'),
(16465, 14007, 'no_lang_code', 'name', 'Oncomatryx (Spain)'),
(16466, 14008, 'en', 'name', 'Project Freedom'),
(16467, 14009, 'en', 'name', 'Research Institute for Endocrine Sciences'),
(16468, 14009, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… ŲŗŲÆŲÆ ŲÆŲ±ŁˆŁ† ریز و Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŲ³Ł…'),
(16469, 14010, 'en', 'name', 'Project Open Hand'),
(16470, 14011, 'no_lang_code', 'name', 'Open Hand'),
(16471, 14012, 'en', 'name', 'San Bernardino County Department of Public Health'),
(16472, 14013, 'no_lang_code', 'name', 'Oncos Therapeutics (Finland)'),
(16473, 14014, 'no_lang_code', 'name', 'Oncotide Pharmaceuticals (United States)'),
(16474, 14015, 'en', 'name', 'San Diego American Indian Health Center'),
(16475, 14016, 'en', 'name', 'Quest Center for Integrative Health'),
(16476, 14017, 'en', 'name', 'Pathway School'),
(16477, 14018, 'en', 'name', 'San Diego Hospice and The Institute for Palliative Medicine'),
(16478, 14019, 'en', 'name', 'Pathways Behavioral Services'),
(16479, 14020, 'en', 'name', 'San Diego Unified School District'),
(16480, 14021, 'no_lang_code', 'name', 'One River Grants (United States)'),
(16481, 14022, 'en', 'name', 'San Diego Youth Services'),
(16482, 14023, 'en', 'name', 'Project Walk Orlando'),
(16483, 14024, 'en', 'name', 'Project Walk Paralysis Recovery Centers'),
(16484, 14025, 'en', 'name', 'Ono Academic College'),
(16485, 14025, 'he', 'name', 'הקריה ×”××§×“×ž×™×Ŗ אונו'),
(16486, 14026, 'en', 'name', 'SF LGBT Center'),
(16487, 14027, 'en', 'name', 'San Francisco Unified School District'),
(16488, 14028, 'en', 'name', 'San Joaquin County Public Health Services'),
(16489, 14029, 'en', 'name', 'San Joaquin Valley Public Health Consortium'),
(16490, 14030, 'en', 'name', 'Mothers’ Milk Bank'),
(16491, 14031, 'en', 'name', 'Pathways'),
(16492, 14032, 'en', 'name', 'Patient Advocate Foundation'),
(16493, 14033, 'en', 'name', 'Patient-Centered Outcomes Research Institute'),
(16494, 14034, 'no_lang_code', 'name', 'Prolong Pharmaceuticals (United States)'),
(16495, 14035, 'en', 'name', 'Open Arms of Minnesota'),
(16496, 14036, 'en', 'name', 'San Mateo County Health System'),
(16497, 14037, 'fr', 'name', 'RƩseau Africain pour le DƩveloppement IntƩgrƩ'),
(16498, 14038, 'en', 'name', 'Open Door Family Medical Center'),
(16499, 14039, 'no_lang_code', 'name', 'Prometheus Research (United States)'),
(16500, 14040, 'en', 'name', 'San Mateo County Probation'),
(16501, 14041, 'en', 'name', 'Promise Project'),
(16502, 14042, 'en', 'name', 'Reset Therapeutics'),
(16503, 14043, 'no_lang_code', 'name', 'Pronto Diagnostics (Israel)'),
(16504, 14043, 'he', 'name', 'חברת ×¤×Ø×•× ×˜×• דיאגנוהטיקה'),
(16505, 14044, 'en', 'name', 'Patients First'),
(16506, 14045, 'en', 'name', 'Resource Foundation'),
(16507, 14046, 'en', 'name', 'Resources for Children with Special Needs'),
(16508, 14047, 'en', 'name', 'Resources for Independence Central Valley'),
(16509, 14048, 'en', 'name', 'Prosperity Gardens'),
(16510, 14049, 'en', 'name', 'Restorative Justice Centre'),
(16511, 14050, 'en', 'name', 'Operation Samahan'),
(16512, 14051, 'en', 'name', 'Restorix Foundation'),
(16513, 14052, 'no_lang_code', 'name', 'Open Window Productions (United States)'),
(16514, 14053, 'no_lang_code', 'name', 'Opexa Therapeutics (United States)'),
(16515, 14054, 'en', 'name', 'Prostate Cancer Prevention Foundation'),
(16516, 14055, 'en', 'name', 'Restorix Health'),
(16517, 14056, 'en', 'name', 'San Mateo Medical Center'),
(16518, 14057, 'no_lang_code', 'name', 'Prothelia (United States)'),
(16519, 14058, 'no_lang_code', 'name', 'ReveraGen BioPharma (United States)'),
(16520, 14059, 'en', 'name', 'Beijing Sanbo Brain Hospital'),
(16521, 14059, 'zh', 'name', 'åŒ—äŗ¬äø‰åšč„‘ē§‘åŒ»é™¢'),
(16522, 14060, 'no_lang_code', 'name', 'Protigen (United States)'),
(16523, 14061, 'no_lang_code', 'name', 'PCAsso Diagnostics (United States)'),
(16524, 14062, 'en', 'name', 'Presence Saint Joseph Hospital'),
(16525, 14063, 'no_lang_code', 'name', 'RGenix (United States)'),
(16526, 14064, 'en', 'name', 'Shoshone-Bannock Tribes'),
(16527, 14065, 'no_lang_code', 'name', 'Rhenovia (France)'),
(16528, 14066, 'en', 'name', 'Sanford Health Foundation'),
(16529, 14067, 'en', 'name', 'ShowMe Aquatics & Fitness'),
(16530, 14068, 'en', 'name', 'Sanford Research'),
(16531, 14069, 'en', 'name', 'Providence Health Foundation'),
(16532, 14070, 'en', 'name', 'Santa Clara County Behavioral Health Services'),
(16533, 14071, 'en', 'name', 'Santa Clara County Probation Department'),
(16534, 14072, 'en', 'name', 'Peace Winds America'),
(16535, 14073, 'es', 'name', 'Hospitales Shriners para NiƱos'),
(16536, 14073, 'en', 'name', 'Shriners Hospitals for Children - Mexico'),
(16537, 14074, 'en', 'name', 'Retina Associates'),
(16538, 14075, 'en', 'name', 'Rhino Ark United States of America'),
(16539, 14076, 'no_lang_code', 'name', 'Saoirse (United States)'),
(16540, 14077, 'en', 'name', 'Rhode Island Health Center Association'),
(16541, 14078, 'en', 'name', 'Pediatric Brain Tumor Consortium Foundation'),
(16542, 14079, 'en', 'name', 'Shriners Hospitals for Children - Salt Lake City'),
(16543, 14080, 'no_lang_code', 'name', 'Sapna NYC'),
(16544, 14081, 'en', 'name', 'Shriners Hospitals for Children - Shreveport'),
(16545, 14082, 'en', 'name', 'Storrs Library'),
(16546, 14083, 'en', 'name', 'Pediatric Oncology Support Team'),
(16547, 14084, 'en', 'name', 'Peer Assistance Services'),
(16548, 14085, 'en', 'name', 'Cancer Navigator'),
(16549, 14086, 'en', 'name', 'Pender County Schools'),
(16550, 14087, 'en', 'name', 'Shriners Hospitals for Children - Springfield'),
(16551, 14088, 'en', 'name', 'Penfold Patterson Research Institute'),
(16552, 14089, 'en', 'name', 'Shriners Hospitals for Children - Twin Cities'),
(16553, 14090, 'en', 'name', 'Pennsylvania Academy of Family Physicians and Foundation'),
(16554, 14091, 'en', 'name', 'Sibley Memorial Hospital'),
(16555, 14092, 'en', 'name', 'Penrose-St. Francis Health Services'),
(16556, 14093, 'en', 'name', 'Essential Partners'),
(16557, 14094, 'en', 'name', 'Pentacle'),
(16558, 14095, 'en', 'name', 'Sarasota Memorial Health Care System'),
(16559, 14096, 'en', 'name', 'Public Health Dayton & Montgomery County'),
(16560, 14097, 'en', 'name', 'Sarem Cell Research Center'),
(16561, 14098, 'en', 'name', 'People for Parks'),
(16562, 14099, 'no_lang_code', 'name', 'Savara Pharmaceuticals (United States)'),
(16563, 14100, 'en', 'name', 'People Living Through Cancer'),
(16564, 14101, 'en', 'name', 'People''s Clinic of Morehead'),
(16565, 14102, 'en', 'name', 'Save Ourselves Breast Cancer Organization'),
(16566, 14103, 'en', 'name', 'Jackson Health System'),
(16567, 14104, 'en', 'name', 'Public School Forum of North Carolina'),
(16568, 14105, 'en', 'name', 'Society for the Investigation of Early Pregnancy'),
(16569, 14106, 'en', 'name', 'The Public Theater'),
(16570, 14107, 'en', 'name', 'Scarsdale Public Schools'),
(16571, 14108, 'en', 'name', 'Scheer Memorial Adventist Hospital'),
(16572, 14108, 'ne', 'name', 'ą¤¶ą„€ą¤° ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² ą¤¬ą¤Øą„‡ą¤Ŗą¤¾'),
(16573, 14109, 'en', 'name', 'Sierra Institute for Community and Environment'),
(16574, 14110, 'en', 'name', 'Perinatal Treatment Services'),
(16575, 14111, 'no_lang_code', 'name', 'Pulmatrix (United States)'),
(16576, 14112, 'en', 'name', 'The Schiele Museum of Natural History'),
(16577, 14113, 'no_lang_code', 'name', 'Perle Bioscience (United States)'),
(16578, 14114, 'no_lang_code', 'name', 'Perscitus Biosciences (United States)'),
(16579, 14115, 'en', 'name', 'Peru Public Library'),
(16580, 14116, 'en', 'name', 'Push to Walk'),
(16581, 14117, 'en', 'name', 'Research Institute for Social and Health Improvement Foundation'),
(16582, 14117, 'kn', 'name', 'ಋಷಿ ą²«ą³Œą²‚ą²”ą³†ą³•ą²¶ą²Øą³'),
(16583, 14118, 'en', 'name', 'Putnam County HomeCare & Hospice Auxiliary'),
(16584, 14119, 'no_lang_code', 'name', 'Q Therapeutics (United States)'),
(16585, 14120, 'en', 'name', 'Yuba City Unified School District'),
(16586, 14121, 'no_lang_code', 'name', 'Riverkeeper'),
(16587, 14122, 'en', 'name', 'Riverkids Pediatric Home Health'),
(16588, 14123, 'no_lang_code', 'name', 'PetsDx Veterinary Imaging (United States)'),
(16589, 14124, 'en', 'name', 'Sierra Nevada Memorial Hospital Foundation'),
(16590, 14125, 'en', 'name', 'Riverside Unified School District'),
(16591, 14126, 'en', 'name', 'Schwab Rehabilitation Hospital'),
(16592, 14127, 'en', 'name', 'Riverside San Bernardino County Indian Health'),
(16593, 14128, 'en', 'name', 'World Science Festival'),
(16594, 14129, 'en', 'name', 'Riverstone Senior Life Services'),
(16595, 14130, 'no_lang_code', 'name', 'RJS Biologics (United States)'),
(16596, 14131, 'no_lang_code', 'name', 'QRx Pharma (United States)'),
(16597, 14132, 'en', 'name', 'Quadriplegics United Against Dependency'),
(16598, 14133, 'no_lang_code', 'name', 'Qualiber (United States)'),
(16599, 14134, 'en', 'name', 'Sierra Streams Institute'),
(16600, 14135, 'no_lang_code', 'name', 'Qualidigm (United States)'),
(16601, 14136, 'en', 'name', 'Signature Research Institute'),
(16602, 14137, 'en', 'name', 'Ministry of Health of the Republic of Kazakhstan'),
(16603, 14137, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ Š”ŠµŠ½ŃŠ°ŃƒŠ»Ń‹Ņ› ŃŠ°Ņ›Ń‚Š°Ńƒ министрлігі'),
(16604, 14138, 'no_lang_code', 'name', 'PharmatrophiX (United States)'),
(16605, 14139, 'en', 'name', 'Quality Living'),
(16606, 14140, 'en', 'name', 'Scioto County Juvenile Court'),
(16607, 14141, 'en', 'name', 'Scotland County Schools'),
(16608, 14142, 'en', 'name', 'Silicon Valley Independent Living Center'),
(16609, 14143, 'en', 'name', 'Scotland Memorial Hospital'),
(16610, 14144, 'en', 'name', 'Baylor Scott & White - Central Texas Foundation'),
(16611, 14145, 'no_lang_code', 'name', 'Quantason (United States)'),
(16612, 14146, 'en', 'name', 'Roanoke Rapids Graded School District'),
(16613, 14147, 'no_lang_code', 'name', 'Quantum Applied Science and Research (United States)'),
(16614, 14148, 'en', 'name', 'Roanoke River Valley Education Consortium'),
(16615, 14149, 'no_lang_code', 'name', 'Pharmaxis (Australia)'),
(16616, 14150, 'en', 'name', 'Quantum Leap Healthcare Collaborative'),
(16617, 14151, 'en', 'name', 'Screen'),
(16618, 14152, 'en', 'name', 'Robert Louis Stevenson School'),
(16619, 14153, 'no_lang_code', 'name', 'Pharminox (United Kingdom)'),
(16620, 14154, 'en', 'name', 'Phelan-McDermid Syndrome Foundation'),
(16621, 14155, 'no_lang_code', 'name', 'Scynexis (United States)'),
(16622, 14156, 'en', 'name', 'Sanford Children''s Specialty Clinic'),
(16623, 14157, 'en', 'name', 'Post Acute Partners'),
(16624, 14158, 'no_lang_code', 'name', 'Sea Lane Biotechnologies (United States)'),
(16625, 14159, 'en', 'name', 'Seabrook'),
(16626, 14160, 'en', 'name', 'Quatela Center for Plastic Surgery'),
(16627, 14161, 'en', 'name', 'Robin Hood Foundation'),
(16628, 14162, 'en', 'name', 'Good Shepherd Penn Partners'),
(16629, 14163, 'en', 'name', 'Pacific Breast Pathology'),
(16630, 14164, 'en', 'name', 'Roc Institute for Arts and Sciences'),
(16631, 14165, 'en', 'name', 'Seattle Cancer Care Alliance'),
(16632, 14166, 'en', 'name', 'Philip Rogers Elementary School'),
(16633, 14167, 'en', 'name', 'Philippine Heart Center'),
(16634, 14168, 'en', 'name', 'Second Harvest Food Bank'),
(16635, 14169, 'en', 'name', 'Phillips Graduate Institute'),
(16636, 14170, 'en', 'name', 'Rochester City School District'),
(16637, 14171, 'en', 'name', 'Sinha Institute of Medical Science & Technology'),
(16638, 14172, 'no_lang_code', 'name', 'Sefacor (United States)'),
(16639, 14173, 'no_lang_code', 'name', 'Selecta Biosciences (United States)'),
(16640, 14174, 'en', 'name', 'Rochester Rehabilitation Center'),
(16641, 14175, 'en', 'name', 'Rockefeller Philanthropy Advisors'),
(16642, 14176, 'no_lang_code', 'name', 'Seneb BioSciences (United States)'),
(16643, 14177, 'en', 'name', 'Sinnissippi Centers'),
(16644, 14178, 'en', 'name', 'Rockingham County Schools'),
(16645, 14179, 'en', 'name', 'Phoenix Indian Medical Center'),
(16646, 14180, 'en', 'name', 'Sense of Security'),
(16647, 14181, 'en', 'name', 'Queer African Youth Networking Center'),
(16648, 14182, 'no_lang_code', 'name', 'SipNose (Israel)'),
(16649, 14183, 'en', 'name', 'Sensory Processing Disorder Foundation'),
(16650, 14184, 'en', 'name', 'Quest for Life Foundation'),
(16651, 14185, 'en', 'name', 'Quietmind Foundation'),
(16652, 14186, 'en', 'name', 'Rocky Boy Health Board'),
(16653, 14187, 'en', 'name', 'Quinn Community Outreach Corporation'),
(16654, 14188, 'en', 'name', 'SeriousFun Children''s Network'),
(16655, 14189, 'no_lang_code', 'name', 'Serpin Pharma (United States)'),
(16656, 14190, 'no_lang_code', 'name', 'Phylogeny (United States)'),
(16657, 14191, 'en', 'name', 'Roger C. Peace Rehabilitation Hospital'),
(16658, 14192, 'en', 'name', 'Rogerson Communities'),
(16659, 14193, 'en', 'name', 'Serve Outdoors​ Texas Hill Country Chapter'),
(16660, 14194, 'en', 'name', 'Project Walk-Austin'),
(16661, 14195, 'en', 'name', 'Setauket Fire Department'),
(16662, 14196, 'en', 'name', 'Seven Generations Ahead'),
(16663, 14197, 'en', 'name', 'Roots Community Health Center'),
(16664, 14198, 'en', 'name', 'Ronald McDonald House Charities'),
(16665, 14199, 'en', 'name', 'Seward County Community College'),
(16666, 14200, 'en', 'name', 'Sixteenth Street Community Health Center'),
(16667, 14201, 'en', 'name', 'R.E. Kavetsky Institute of Experimental Pathology, Oncology and Radiobiology'),
(16668, 14201, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠµŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Ń— патології, онкології і раГіобіології ім. Š .Š„. ŠšŠ°Š²ŠµŃ†ŃŒŠŗŠ¾Š³Š¾'),
(16669, 14202, 'en', 'name', 'Room to Read'),
(16670, 14203, 'en', 'name', 'Providence Pediatric Pulmonology & Cystic Fibrosis'),
(16671, 14204, 'no_lang_code', 'name', 'Sri Ganapathi Sachchidananda Vagdevi Center'),
(16672, 14205, 'en', 'name', 'Sail To Prevail'),
(16673, 14206, 'en', 'name', 'Roper St. Francis Foundation'),
(16674, 14207, 'en', 'name', 'Piers Park Sailing Center'),
(16675, 14208, 'en', 'name', 'UF Health Shands Hospital'),
(16676, 14209, 'en', 'name', 'Roper St. Francis Healthcare'),
(16677, 14210, 'en', 'name', 'RadioIsotope Therapy of America Foundation'),
(16678, 14211, 'en', 'name', 'UF Health Shands Rehab Hospital'),
(16679, 14212, 'en', 'name', 'Skin Cancer Foundation'),
(16680, 14213, 'en', 'name', 'Sky Tavern Junior Ski Program'),
(16681, 14214, 'en', 'name', 'St. Joseph’s Candler Hospital'),
(16682, 14215, 'en', 'name', 'Shanghai Municipal Center For Disease Control Prevention'),
(16683, 14215, 'zh', 'name', 'äøŠęµ·åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(16684, 14216, 'en', 'name', 'Skyland Care Center'),
(16685, 14217, 'en', 'name', 'Radiology Associates'),
(16686, 14218, 'en', 'name', 'Slavic Assistance Center'),
(16687, 14219, 'en', 'name', 'Rainbow Hospice and Palliative Care'),
(16688, 14220, 'en', 'name', 'Shanta Foundation'),
(16689, 14221, 'en', 'name', 'Shanti Project'),
(16690, 14222, 'en', 'name', 'Share and Care Foundation'),
(16691, 14223, 'en', 'name', 'SHARE'),
(16692, 14224, 'no_lang_code', 'name', 'Smart Monitor (United States)'),
(16693, 14225, 'en', 'name', 'Raise Hope Foundation'),
(16694, 14226, 'en', 'name', 'Shared Adventures'),
(16695, 14227, 'en', 'name', 'Public Schools of Robeson County'),
(16696, 14228, 'en', 'name', 'Sharp HealthCare Foundation'),
(16697, 14229, 'en', 'name', 'Shaw Regional Cancer Center'),
(16698, 14230, 'en', 'name', 'Shawnee State University'),
(16699, 14231, 'en', 'name', 'St. Laurent Institute'),
(16700, 14232, 'en', 'name', 'Sheridan Technical College'),
(16701, 14233, 'en', 'name', 'St. Mary’s Healthcare System for Children'),
(16702, 14234, 'no_lang_code', 'name', 'Sorrento Therapeutics (United States)'),
(16703, 14235, 'en', 'name', 'Smile Train'),
(16704, 14236, 'en', 'name', 'Smith Center for Healing and the Arts'),
(16705, 14237, 'no_lang_code', 'name', 'Rubicon Biotechnology (United States)'),
(16706, 14238, 'en', 'name', 'St. Margaret Mary School'),
(16707, 14239, 'en', 'name', 'SHIELDS for Families'),
(16708, 14240, 'en', 'name', 'Raising Voices'),
(16709, 14241, 'en', 'name', 'Rubin Museum of Art'),
(16710, 14242, 'en', 'name', 'Society for Biomedical Diabetes Research'),
(16711, 14243, 'en', 'name', 'Rajiv Poor People Welfare Society'),
(16712, 14244, 'en', 'name', 'Society for Mucosal Immunology'),
(16713, 14245, 'en', 'name', 'Ralph Lauren Center for Cancer Care and Prevention'),
(16714, 14246, 'no_lang_code', 'name', 'RaNA Therapeutics (United States)'),
(16715, 14247, 'no_lang_code', 'name', 'Tecnicas Cientificas Para Laboratorio (Spain)'),
(16716, 14248, 'no_lang_code', 'name', 'Rancho BioSciences (United States)'),
(16717, 14249, 'en', 'name', 'Society for Research on Nicotine and Tobacco'),
(16718, 14250, 'en', 'name', 'St. Mary’s Health Care System'),
(16719, 14251, 'en', 'name', 'Telluride Adaptive Sports Program'),
(16720, 14252, 'en', 'name', 'Society for the Preservation of Long Island Antiquities'),
(16721, 14253, 'en', 'name', 'Rancho Research Institute'),
(16722, 14254, 'en', 'name', 'Society of Surgical Oncology'),
(16723, 14255, 'no_lang_code', 'name', 'TeloVISION (United States)'),
(16724, 14256, 'en', 'name', 'Temple College'),
(16725, 14257, 'no_lang_code', 'name', 'Rare Disease Therapeutics (United States)'),
(16726, 14258, 'en', 'name', 'Saint Paul’s Hospital Iloilo'),
(16727, 14259, 'en', 'name', 'Temple Missionary Baptist Church'),
(16728, 14260, 'en', 'name', 'St. Vincent''s HealthCare'),
(16729, 14261, 'no_lang_code', 'name', 'Rare Partners (Italy)'),
(16730, 14262, 'en', 'name', 'St. Vincent Hospital'),
(16731, 14263, 'no_lang_code', 'name', 'Qualcomm (United States)'),
(16732, 14264, 'en', 'name', 'RCAP Solutions'),
(16733, 14265, 'en', 'name', 'Soledad Community Health Care District Foundation'),
(16734, 14266, 'en', 'name', 'Soldiers'' Angels'),
(16735, 14267, 'en', 'name', 'CHI St. Vincent'),
(16736, 14268, 'en', 'name', 'Sacramento Asian Pacific Chamber of Commerce'),
(16737, 14269, 'en', 'name', 'St. Luke''s International Hospital'),
(16738, 14269, 'ja', 'name', 'č–č·ÆåŠ å›½éš›ē—…é™¢'),
(16739, 14270, 'en', 'name', 'Sacramento City Unified School District'),
(16740, 14271, 'en', 'name', 'Foundation for Children with Cancer'),
(16741, 14272, 'en', 'name', 'Safe Horizon'),
(16742, 14273, 'en', 'name', 'Solutions of Artificial Intelligence Applications'),
(16743, 14274, 'en', 'name', 'Solving Kids'' Cancer'),
(16744, 14275, 'en', 'name', 'Tennessee Justice Center'),
(16745, 14276, 'en', 'name', 'Reading Partners'),
(16746, 14277, 'en', 'name', 'Saga Women''s Junior College'),
(16747, 14277, 'ja', 'name', 'ä½č³€å„³å­ēŸ­ęœŸå¤§å­¦'),
(16748, 14278, 'no_lang_code', 'name', 'Terapio (United States)'),
(16749, 14279, 'no_lang_code', 'name', 'Real Time Tomography (United States)'),
(16750, 14280, 'en', 'name', 'Testaverde Fund for Spinal Cord Injury'),
(16751, 14281, 'en', 'name', 'Realistic Education in Action Coalition to Foster Health'),
(16752, 14282, 'en', 'name', 'Flint and Saginaw Odyssey House'),
(16753, 14283, 'en', 'name', 'Tetra Society of North America'),
(16754, 14284, 'no_lang_code', 'name', 'TetraLogic Pharmaceuticals (United States)'),
(16755, 14285, 'en', 'name', 'Texans Care for Children'),
(16756, 14286, 'en', 'name', 'Stairstep Foundation'),
(16757, 14287, 'en', 'name', 'Sydney Children’s Hospitals Network'),
(16758, 14288, 'en', 'name', 'Saint Anne''s Hospital'),
(16759, 14289, 'en', 'name', 'Texas Health and Human Services Commission'),
(16760, 14290, 'fr', 'name', 'La Fondation Stan Cassidy'),
(16761, 14290, 'en', 'name', 'Stan Cassidy Foundation'),
(16762, 14291, 'en', 'name', 'Sonke Gender Justice'),
(16763, 14292, 'en', 'name', 'Texas Partnership for End-of-Life Care'),
(16764, 14293, 'en', 'name', 'Thohoyandou Victim Empowerment Programme'),
(16765, 14294, 'en', 'name', 'Thai Health And Information Services'),
(16766, 14295, 'en', 'name', 'Thyroid Head and Neck Cancer Foundation'),
(16767, 14296, 'en', 'name', 'Entertainment Industry Foundation'),
(16768, 14297, 'en', 'name', 'ABCD'),
(16769, 14298, 'en', 'name', 'Ability Center of Greater Toledo'),
(16770, 14299, 'en', 'name', 'Sound Choice Pharmaceutical Institute'),
(16771, 14300, 'no_lang_code', 'name', 'TumorEnd (United States)'),
(16772, 14301, 'en', 'name', 'Academic College of Tel Aviv-Yafo'),
(16773, 14302, 'en', 'name', 'Adaptive Sports Foundation'),
(16774, 14303, 'en', 'name', 'Tuomey Healthcare System'),
(16775, 14304, 'en', 'name', 'Aesthetic Surgery Center'),
(16776, 14305, 'en', 'name', 'Stanley Park'),
(16777, 14306, 'en', 'name', 'American Geriatrics Society'),
(16778, 14307, 'en', 'name', 'Amyotrophic Lateral Sclerosis Association'),
(16779, 14308, 'en', 'name', 'Turnstone'),
(16780, 14309, 'en', 'name', 'Angeles Clinic Foundation'),
(16781, 14310, 'no_lang_code', 'name', 'Angiogenesis Foundation'),
(16782, 14311, 'en', 'name', 'STAR Council'),
(16783, 14312, 'en', 'name', 'Star Neuroscience Foundation'),
(16784, 14313, 'no_lang_code', 'name', 'TVAX Biomedical (United States)'),
(16785, 14314, 'en', 'name', 'Arc of High Point'),
(16786, 14315, 'en', 'name', 'Arthritis Research Institute of America'),
(16787, 14316, 'en', 'name', 'The Arthroplasty Patient Foundation'),
(16788, 14317, 'en', 'name', 'Women’s Fund Asia'),
(16789, 14318, 'en', 'name', 'Association of Black Women Physicians'),
(16790, 14319, 'en', 'name', 'South Australian Health and Medical Research Institute'),
(16791, 14320, 'en', 'name', 'Sisters of Providence Health System'),
(16792, 14321, 'en', 'name', 'Changzhou No.2 People''s Hospital'),
(16793, 14321, 'zh', 'name', 'åøøå·žåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(16794, 14322, 'en', 'name', 'Bachmann-Strauss Dystonia & Parkinson Foundation'),
(16795, 14323, 'en', 'name', 'The Beautiful Gate'),
(16796, 14324, 'en', 'name', 'South Carolina Cancer Alliance'),
(16797, 14325, 'en', 'name', 'State Building & Construction Trades Council of California'),
(16798, 14326, 'en', 'name', 'South Carolina Department of Corrections'),
(16799, 14327, 'en', 'name', 'South Central Community Services'),
(16800, 14328, 'en', 'name', 'Bone Marrow Foundation'),
(16801, 14329, 'tr', 'name', 'Moleküler Biyoloji Derneği'),
(16802, 14330, 'en', 'name', 'State of Connecticut Judicial Branch'),
(16803, 14331, 'en', 'name', 'Christus Santa Rosa Health System'),
(16804, 14332, 'en', 'name', 'Breakfast Club'),
(16805, 14333, 'en', 'name', 'John D Bray MD'),
(16806, 14334, 'en', 'name', 'Rhode Island Cancer Council'),
(16807, 14335, 'en', 'name', 'Brearley School'),
(16808, 14336, 'en', 'name', 'South Central Family Health Center'),
(16809, 14337, 'no_lang_code', 'name', 'The Bridge (United States)'),
(16810, 14338, 'en', 'name', 'Brod Group'),
(16811, 14339, 'en', 'name', 'Bronx Health Link'),
(16812, 14340, 'en', 'name', 'Blessing Hospital'),
(16813, 14341, 'en', 'name', 'The Care Communities'),
(16814, 14342, 'en', 'name', 'Heroes Foundation'),
(16815, 14343, 'en', 'name', 'United States Power Soccer Association'),
(16816, 14344, 'en', 'name', 'South Elgin FUNdation'),
(16817, 14345, 'en', 'name', 'Center for Discovery'),
(16818, 14346, 'en', 'name', 'Family Centre for Health and Wellness'),
(16819, 14347, 'en', 'name', 'Kids Cancer Center'),
(16820, 14348, 'en', 'name', 'Center for Health Justice'),
(16821, 14349, 'en', 'name', 'South Florida Veterans Affairs Foundation for Research and Education'),
(16822, 14350, 'en', 'name', 'South Puget Intertribal Planning Agency'),
(16823, 14351, 'en', 'name', 'The Center for Mind-Body Medicine'),
(16824, 14352, 'en', 'name', 'The Center for Pranic Healing'),
(16825, 14353, 'en', 'name', 'The Center for the Biology of Chronic Disease'),
(16826, 14354, 'en', 'name', 'Chanda Plan Foundation'),
(16827, 14355, 'en', 'name', 'Ohio State University Hospital'),
(16828, 14356, 'en', 'name', 'South Shore Hospital'),
(16829, 14357, 'en', 'name', 'Chester County Hospital'),
(16830, 14358, 'en', 'name', 'South Shore YMCA'),
(16831, 14359, 'en', 'name', 'Daniel Drake Center'),
(16832, 14360, 'en', 'name', 'South Texas Institutes of Health'),
(16833, 14361, 'en', 'name', 'South West Special Recreation Association'),
(16834, 14362, 'en', 'name', 'Children’s Cause for Cancer Advocacy'),
(16835, 14363, 'en', 'name', 'Children''s Home of Wheeling'),
(16836, 14364, 'en', 'name', 'University Hospital Southampton NHS Foundation Trust'),
(16837, 14365, 'no_lang_code', 'name', 'Stavros'),
(16838, 14366, 'en', 'name', 'Uganda Health and Science Press Association'),
(16839, 14367, 'en', 'name', 'Uganda Protestant Medical Bureau'),
(16840, 14368, 'en', 'name', 'Southbury Clinic'),
(16841, 14369, 'en', 'name', 'Heather Hill Care Communities'),
(16842, 14370, 'en', 'name', 'Cancer Connection'),
(16843, 14371, 'en', 'name', 'United Jewish Appeal Federation of New York'),
(16844, 14372, 'en', 'name', 'Community Health Center Association of Mississippi'),
(16845, 14373, 'en', 'name', 'Southeastern Community College - North Carolina'),
(16846, 14374, 'en', 'name', 'Children''s Treehouse Foundation'),
(16847, 14375, 'en', 'name', 'Ulman Cancer Fund for Young Adults'),
(16848, 14376, 'no_lang_code', 'name', 'Ultradian Diagnostics (United States)'),
(16849, 14377, 'en', 'name', 'University of the West Indies'),
(16850, 14378, 'no_lang_code', 'name', 'Stealth Biosciences (United States)'),
(16851, 14379, 'no_lang_code', 'name', 'Ultrawave Labs (United States)'),
(16852, 14380, 'en', 'name', 'Clearity Foundation'),
(16853, 14381, 'no_lang_code', 'name', 'Stella Therapeutics (United States)'),
(16854, 14382, 'en', 'name', 'Cody Unser First Step Foundation'),
(16855, 14383, 'en', 'name', 'Umpqua Community College'),
(16856, 14384, 'en', 'name', 'Southern Illinois Healthcare'),
(16857, 14385, 'en', 'name', 'Coexist Initiative'),
(16858, 14386, 'en', 'name', 'Southern Maine Medical Center'),
(16859, 14387, 'en', 'name', 'ComedyCures Foundation'),
(16860, 14388, 'en', 'name', 'Commonwealth Fund'),
(16861, 14389, 'en', 'name', 'Southern Poverty Law Center'),
(16862, 14390, 'en', 'name', 'UN Women’s Office for India, Bhutan, Maldives and Sri Lanka'),
(16863, 14391, 'en', 'name', 'Community Chest of Leonia'),
(16864, 14392, 'en', 'name', 'Southern Rural Black Women''s Initiative'),
(16865, 14393, 'en', 'name', 'Connecticut Center for Primary Care'),
(16866, 14394, 'en', 'name', 'URSA Institute'),
(16867, 14395, 'en', 'name', 'Southern Vermont College'),
(16868, 14396, 'en', 'name', 'Uncas Health District'),
(16869, 14397, 'en', 'name', 'Southerners on New Ground'),
(16870, 14398, 'en', 'name', 'Southland Hispanic Leadership Council'),
(16871, 14399, 'en', 'name', 'Southwest Autism Research & Resource Center'),
(16872, 14400, 'no_lang_code', 'name', 'Velocity BioGroup (United States)'),
(16873, 14401, 'en', 'name', 'Yaddo'),
(16874, 14402, 'en', 'name', 'Southwest Center for Chronic Disease'),
(16875, 14403, 'en', 'name', 'Counseling Center'),
(16876, 14404, 'en', 'name', 'Empower Abilities'),
(16877, 14405, 'en', 'name', 'Southwest Georgia Health Care'),
(16878, 14406, 'no_lang_code', 'name', 'StemMed (United States)'),
(16879, 14407, 'en', 'name', 'University Settlement'),
(16880, 14408, 'no_lang_code', 'name', 'Stemnion (United States)'),
(16881, 14409, 'en', 'name', 'Visiting Nurse Association of South Central Connecticut'),
(16882, 14410, 'no_lang_code', 'name', 'StemSynergy Therapeutics (United States)'),
(16883, 14411, 'en', 'name', 'Southwest Wheelchair Athletic Association'),
(16884, 14412, 'no_lang_code', 'name', 'Sova Pharmaceuticals (United States)'),
(16885, 14413, 'en', 'name', 'Wall Las Memorias Project'),
(16886, 14414, 'en', 'name', 'Delaware Academy of Medicine'),
(16887, 14415, 'en', 'name', 'Unicorn Children''s Foundation'),
(16888, 14416, 'en', 'name', 'GEICAM – Spanish Breast Cancer Group'),
(16889, 14416, 'es', 'name', 'Grupo Español de Investigación en CÔncer de Mama'),
(16890, 14417, 'en', 'name', 'The Donna Foundation'),
(16891, 14418, 'en', 'name', 'Stephen Gaynor School'),
(16892, 14419, 'en', 'name', 'SPARK Reproductive Justice NOW'),
(16893, 14420, 'es', 'name', 'Unidad de Artritis y Reumatismo'),
(16894, 14421, 'en', 'name', 'Wayside House'),
(16895, 14422, 'en', 'name', 'Stephenson County Health Department'),
(16896, 14423, 'en', 'name', 'Neuroworx'),
(16897, 14424, 'en', 'name', 'Hospice Savannah'),
(16898, 14425, 'en', 'name', 'Best Answer for Cancer Foundation'),
(16899, 14426, 'en', 'name', 'Unio Recovery Center'),
(16900, 14427, 'en', 'name', 'Energy Institute of the Healing Arts Foundation'),
(16901, 14428, 'en', 'name', 'Union Graduate College'),
(16902, 14429, 'en', 'name', 'Esther A. & Joseph Klingenstein Fund'),
(16903, 14430, 'en', 'name', 'Union Hospital'),
(16904, 14431, 'en', 'name', 'Eye Cancer Foundation'),
(16905, 14432, 'en', 'name', 'The Family Center'),
(16906, 14433, 'en', 'name', 'National Council for Gender Equality'),
(16907, 14434, 'en', 'name', 'CancerConnects'),
(16908, 14435, 'en', 'name', 'Papageno Foundation'),
(16909, 14435, 'nl', 'name', 'Stichting Papageno'),
(16910, 14436, 'en', 'name', 'United American Indian Involvement'),
(16911, 14437, 'en', 'name', 'VitaValley Foundation'),
(16912, 14438, 'en', 'name', 'Florence Crittenton Agency'),
(16913, 14439, 'en', 'name', 'Spectrum Neuroscience and Treatment Institute'),
(16914, 14440, 'en', 'name', 'Florida Center for Early Childhood'),
(16915, 14441, 'en', 'name', 'Stop Calling It Autism'),
(16916, 14442, 'en', 'name', 'Cancer Resources for Elkhart County'),
(16917, 14443, 'en', 'name', 'Foodbank'),
(16918, 14444, 'en', 'name', 'Foresight Project'),
(16919, 14445, 'en', 'name', 'Albany Stratton VA Medical Center Albany'),
(16920, 14446, 'en', 'name', 'Whole Elephant Institute'),
(16921, 14447, 'no_lang_code', 'name', 'SPEED BioSystems (United States)'),
(16922, 14448, 'en', 'name', 'Strength For Life'),
(16923, 14449, 'en', 'name', 'Wig Bank of Caldwell County'),
(16924, 14450, 'en', 'name', 'Stretch to Kindergarten'),
(16925, 14451, 'en', 'name', 'Speedway Fire Rescue'),
(16926, 14452, 'no_lang_code', 'name', 'Spero Therapeutics (United States)'),
(16927, 14453, 'en', 'name', 'Strides To Success'),
(16928, 14454, 'en', 'name', 'Prevea Health'),
(16929, 14455, 'en', 'name', 'United Fire Service Women'),
(16930, 14456, 'no_lang_code', 'name', 'Strohl Medical Technologies (United States)'),
(16931, 14457, 'no_lang_code', 'name', 'Structure Based Design (United States)'),
(16932, 14458, 'en', 'name', 'Student Sponsor Partners'),
(16933, 14459, 'en', 'name', 'United Health Services'),
(16934, 14460, 'en', 'name', 'United Hospice'),
(16935, 14461, 'en', 'name', 'Studio Museum in Harlem'),
(16936, 14462, 'en', 'name', 'United States Association of Blind Athletes'),
(16937, 14463, 'en', 'name', 'Spina Bifida Resource Network'),
(16938, 14464, 'en', 'name', 'American Bowen Academy'),
(16939, 14465, 'en', 'name', 'Gould Farm'),
(16940, 14466, 'en', 'name', 'United States Handcycle Federation'),
(16941, 14467, 'en', 'name', 'Women''s Center of Jacksonville'),
(16942, 14468, 'en', 'name', 'Wood Hudson Cancer Research Laboratory'),
(16943, 14469, 'en', 'name', 'United States Olympic & Paralympic Committee'),
(16944, 14470, 'en', 'name', 'Wounded Artist Project'),
(16945, 14471, 'en', 'name', 'United States Quad Rugby Association'),
(16946, 14472, 'en', 'name', 'United Way of Greater Nashville'),
(16947, 14473, 'en', 'name', 'Fund for Global Human Rights'),
(16948, 14474, 'en', 'name', 'United Way of Southeastern Idaho'),
(16949, 14475, 'en', 'name', 'Gathering Place'),
(16950, 14476, 'en', 'name', 'Spinal Muscular Atrophy Foundation'),
(16951, 14477, 'en', 'name', 'UnityPoint Health'),
(16952, 14478, 'en', 'name', 'SUDEP Aware'),
(16953, 14479, 'en', 'name', 'Spiral Foundation'),
(16954, 14480, 'en', 'name', 'Sudha Hospital and Medical Research Centre'),
(16955, 14481, 'en', 'name', 'Catholic University of Cuyo'),
(16956, 14481, 'es', 'name', 'Universidad Católica de Cuyo'),
(16957, 14482, 'en', 'name', 'Greg Foundation');
INSERT INTO `ror_settings` VALUES
(16958, 14483, 'en', 'name', 'Spirituality For Kids International'),
(16959, 14484, 'en', 'name', 'Gus Foundation'),
(16960, 14485, 'en', 'name', 'Central American University'),
(16961, 14485, 'es', 'name', 'Universidad Centroamericana'),
(16962, 14486, 'no_lang_code', 'name', 'Theranova (United States)'),
(16963, 14487, 'en', 'name', 'Summit School'),
(16964, 14488, 'en', 'name', 'Healing Co-Operative'),
(16965, 14489, 'en', 'name', 'Sportable'),
(16966, 14490, 'en', 'name', 'Therapeutic Research Foundation'),
(16967, 14491, 'en', 'name', 'SportsClub'),
(16968, 14492, 'en', 'name', 'Children''s Cancer Connection'),
(16969, 14493, 'no_lang_code', 'name', 'Therapure Biopharma (Canada)'),
(16970, 14494, 'en', 'name', 'Springhouse'),
(16971, 14495, 'en', 'name', 'Challenge Center'),
(16972, 14496, 'es', 'name', 'Universidad Iberoamericana'),
(16973, 14497, 'no_lang_code', 'name', 'TherimuneX Pharmaceuticals (United States)'),
(16974, 14498, 'en', 'name', 'Phoebe Sumter Medical Center'),
(16975, 14499, 'en', 'name', 'Sunset Hill Educational Institute'),
(16976, 14500, 'en', 'name', 'Hope Light Foundation'),
(16977, 14501, 'en', 'name', 'SSM Health Rehabilitation Hospital'),
(16978, 14502, 'en', 'name', 'St. Charles Community College'),
(16979, 14503, 'en', 'name', 'Secondopinion'),
(16980, 14504, 'en', 'name', 'Hudson River Museum'),
(16981, 14505, 'en', 'name', 'MidHudson Regional Hospital'),
(16982, 14506, 'en', 'name', 'Infant Trust'),
(16983, 14507, 'en', 'name', 'Positively Pink Packages'),
(16984, 14508, 'en', 'name', 'Sundance Research Institute'),
(16985, 14509, 'en', 'name', 'ThinkFirst Foundation'),
(16986, 14510, 'en', 'name', 'Institute for Behavior Change'),
(16987, 14511, 'en', 'name', 'Sunlight Nutrition and Health Research Center'),
(16988, 14512, 'en', 'name', 'PeaceHealth St. John Medical Center'),
(16989, 14513, 'en', 'name', 'Sunny Days Learning Center of Stickney'),
(16990, 14514, 'en', 'name', 'Memorial Hermann Northwest Hospital'),
(16991, 14515, 'en', 'name', 'Side by Side'),
(16992, 14516, 'en', 'name', 'Thomas Edison State University'),
(16993, 14517, 'en', 'name', 'Institute for Reproductive and Family Health'),
(16994, 14518, 'fr', 'name', 'UniversitƩ des Sciences et Techniques de Masuku'),
(16995, 14519, 'en', 'name', 'Health Wagon'),
(16996, 14520, 'en', 'name', 'Thorax Foundation'),
(16997, 14520, 'el', 'name', 'ĪŠĪ“ĻĻ…Ī¼Ī± Ī˜Ī©Ī”Ī‘Īž'),
(16998, 14521, 'en', 'name', 'The Institute for Therapeutic Discovery'),
(16999, 14522, 'en', 'name', 'Thousand Waves Foundation'),
(17000, 14523, 'en', 'name', 'St. Rose Dominican Hospital'),
(17001, 14524, 'en', 'name', 'St Vincent’s Private Hospital Brisbane'),
(17002, 14525, 'no_lang_code', 'name', 'Out Front (United States)'),
(17003, 14526, 'en', 'name', 'Three Village Garden Club'),
(17004, 14527, 'en', 'name', 'St. Ann''s Episcopal Church'),
(17005, 14528, 'en', 'name', 'St. Baldrick''s Foundation'),
(17006, 14529, 'en', 'name', 'SunServe'),
(17007, 14530, 'no_lang_code', 'name', 'Threshold Pharmaceuticals (United States)'),
(17008, 14531, 'en', 'name', 'Access Health Louisiana'),
(17009, 14532, 'en', 'name', 'Through the Looking Glass'),
(17010, 14533, 'en', 'name', 'St. Charles Foundation'),
(17011, 14534, 'en', 'name', 'St. Christopher Iba Mar Diop College of Medicine'),
(17012, 14535, 'en', 'name', 'Catholic Community Services Of Southern Arizona'),
(17013, 14536, 'en', 'name', 'Alex''s Lemonade Stand Foundation'),
(17014, 14537, 'en', 'name', 'Super Stars Literacy'),
(17015, 14538, 'en', 'name', 'International Rehabilitation Forum'),
(17016, 14539, 'en', 'name', 'St. Elizabeth Healthcare'),
(17017, 14540, 'en', 'name', 'St. Francis Hospital'),
(17018, 14541, 'en', 'name', 'StarRecreation'),
(17019, 14542, 'en', 'name', 'St. James AME Zion Church'),
(17020, 14543, 'en', 'name', 'Worcestershire Acute Hospitals NHS Trust'),
(17021, 14544, 'en', 'name', 'Tiburcio Vasquez Health Center'),
(17022, 14545, 'en', 'name', 'Tigerlily Foundation'),
(17023, 14546, 'no_lang_code', 'name', 'GeneticaLens (United States)'),
(17024, 14547, 'no_lang_code', 'name', 'Surgisense'),
(17025, 14548, 'no_lang_code', 'name', 'NJ International (United States)'),
(17026, 14549, 'no_lang_code', 'name', 'Tivorsan Pharmaceuticals (United States)'),
(17027, 14550, 'en', 'name', 'Jane Coffin Childs Memorial Fund for Medical Research'),
(17028, 14551, 'en', 'name', 'Mercy Hospital Washington'),
(17029, 14552, 'en', 'name', 'SAMFund'),
(17030, 14553, 'en', 'name', 'St. John''s Riverside Hospital'),
(17031, 14554, 'en', 'name', 'To Help Everyone Health and Wellness Centers'),
(17032, 14555, 'en', 'name', 'Appalachian College of Pharmacy'),
(17033, 14556, 'en', 'name', 'John A. Hartford Foundation'),
(17034, 14557, 'en', 'name', 'The Kindness Connection'),
(17035, 14558, 'en', 'name', 'St Helens Hospital'),
(17036, 14559, 'en', 'name', 'Kolkata Municipal Corporation'),
(17037, 14559, 'bn', 'name', 'কলকাতা ą¦Ŗą§Œą¦°ą¦øą¦‚ą¦øą§ą¦„ą¦¾'),
(17038, 14560, 'en', 'name', 'Larrabee Center'),
(17039, 14561, 'en', 'name', 'Latina Center'),
(17040, 14562, 'en', 'name', 'Survivorship A to Z'),
(17041, 14563, 'en', 'name', 'Susan B Allen Memorial Hospital'),
(17042, 14564, 'en', 'name', 'League of Dreams'),
(17043, 14565, 'en', 'name', 'Susan G Komen Arkansas'),
(17044, 14566, 'en', 'name', 'Susan G Komen Greater Atlanta'),
(17045, 14567, 'no_lang_code', 'name', 'Illinois Ventures (United States)'),
(17046, 14568, 'en', 'name', 'University of Louisville Physicians'),
(17047, 14569, 'en', 'name', 'Libby Ross Foundation'),
(17048, 14570, 'en', 'name', 'Liberty Church'),
(17049, 14571, 'en', 'name', 'Life Monologue Project'),
(17050, 14572, 'en', 'name', 'Life Raft Group'),
(17051, 14573, 'en', 'name', 'Tomorrows Children’s Fund'),
(17052, 14574, 'en', 'name', 'University Of Medicine 1 Yangon'),
(17053, 14574, 'my', 'name', 'į€†į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ ၁ ရန်ကုန်'),
(17054, 14575, 'en', 'name', 'Navicent Health'),
(17055, 14576, 'en', 'name', 'Sutter Institute for Medical Research'),
(17056, 14577, 'en', 'name', 'Mayor''s Fund to Advance New York City'),
(17057, 14578, 'en', 'name', 'Sutter Santa Rosa Regional Hospital'),
(17058, 14579, 'no_lang_code', 'name', 'Mary Maguire Foundation'),
(17059, 14580, 'en', 'name', 'Touro College'),
(17060, 14581, 'en', 'name', 'Lydia Project'),
(17061, 14582, 'en', 'name', 'Touro Infirmary Foundation'),
(17062, 14583, 'no_lang_code', 'name', 'Tracon Pharmaceuticals (United States)'),
(17063, 14584, 'no_lang_code', 'name', 'SV Health Investors (United States)'),
(17064, 14585, 'en', 'name', 'Swami Vivekanand College of Pharmacy'),
(17065, 14586, 'no_lang_code', 'name', 'Trana Discovery (United States)'),
(17066, 14587, 'en', 'name', 'Swedish Family Medicine Residency - Cherry Hill'),
(17067, 14588, 'en', 'name', 'Trans Tasman Radiation Oncology Group'),
(17068, 14589, 'no_lang_code', 'name', 'TransCure BioServices (Switzerland)'),
(17069, 14590, 'en', 'name', 'PearlPoint Cancer Support'),
(17070, 14591, 'no_lang_code', 'name', 'The Miracle Center (United States)'),
(17071, 14592, 'no_lang_code', 'name', 'TransCure BioServices (France)'),
(17072, 14593, 'no_lang_code', 'name', 'BioClinica (United States)'),
(17073, 14594, 'no_lang_code', 'name', 'SynDevRx (United States)'),
(17074, 14595, 'en', 'name', 'Pinky Swear Foundation'),
(17075, 14596, 'en', 'name', 'University of St. Augustine for Health Sciences'),
(17076, 14597, 'no_lang_code', 'name', 'Mifne Center'),
(17077, 14598, 'no_lang_code', 'name', 'Synergenz BioScience (United States)'),
(17078, 14599, 'no_lang_code', 'name', 'Synthena (Switzerland)'),
(17079, 14600, 'en', 'name', 'Molecular Sciences Institute'),
(17080, 14601, 'en', 'name', 'Montel Williams MS Foundation'),
(17081, 14602, 'en', 'name', 'National Ability Center'),
(17082, 14603, 'en', 'name', 'MultiCare Tacoma General Hospital'),
(17083, 14604, 'en', 'name', 'Tacoma Pierce County Health Department'),
(17084, 14605, 'no_lang_code', 'name', 'MobiLife (United States)'),
(17085, 14606, 'en', 'name', 'eTraining Technology Academy'),
(17086, 14607, 'en', 'name', 'Muscular Dystrophy Association'),
(17087, 14608, 'en', 'name', 'Muscular Dystrophy Patients Welfare Association'),
(17088, 14609, 'en', 'name', 'Nurse & Hospice of Fairfield County'),
(17089, 14610, 'en', 'name', 'Disability Connection'),
(17090, 14611, 'en', 'name', 'Pingjin Hospital'),
(17091, 14611, 'zh', 'name', 'å¹³ę“„åŒ»é™¢'),
(17092, 14612, 'en', 'name', 'Stone Clinic'),
(17093, 14613, 'en', 'name', 'Tahirih Justice Center'),
(17094, 14614, 'en', 'name', 'Tahoe Forest Hospital'),
(17095, 14615, 'en', 'name', 'National Physician and Family Referral'),
(17096, 14616, 'en', 'name', 'Taiz University'),
(17097, 14616, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŲ¹Ų²'),
(17098, 14617, 'en', 'name', 'Lifelabs New York'),
(17099, 14618, 'en', 'name', 'Translational Research in Oncology'),
(17100, 14619, 'en', 'name', 'New York Says Thank You Foundation'),
(17101, 14620, 'no_lang_code', 'name', 'Translational Therapeutics (United States)'),
(17102, 14621, 'en', 'name', 'New York Stem Cell Foundation'),
(17103, 14622, 'en', 'name', 'Greeneville Community Hospital West'),
(17104, 14623, 'en', 'name', 'University of Guyana'),
(17105, 14624, 'en', 'name', 'Nicholas Conor Institute'),
(17106, 14625, 'en', 'name', 'Transylvania County Schools'),
(17107, 14626, 'en', 'name', 'Tree House Humane Society'),
(17108, 14627, 'no_lang_code', 'name', 'Treventis (United States)'),
(17109, 14628, 'en', 'name', 'Obesity Society'),
(17110, 14629, 'en', 'name', 'Tri-Cities Cancer Center'),
(17111, 14630, 'en', 'name', 'Open Source Science Project'),
(17112, 14631, 'en', 'name', 'Tri-City Health Center'),
(17113, 14632, 'en', 'name', 'Tallahassee Memorial HealthCare'),
(17114, 14633, 'es', 'name', 'Centro Dr. Belluscio'),
(17115, 14634, 'en', 'name', 'The Painted Turtle'),
(17116, 14635, 'no_lang_code', 'name', 'Talon Pharmaceuticals (Canada)'),
(17117, 14636, 'en', 'name', 'Trinity County Office of Education'),
(17118, 14637, 'en', 'name', 'People’s Community Baptist Church'),
(17119, 14638, 'en', 'name', 'Trinity United Church of Christ Child Care Centers'),
(17120, 14639, 'en', 'name', 'Wake County Human Services'),
(17121, 14640, 'en', 'name', 'Tanner Health System'),
(17122, 14641, 'en', 'name', 'Triumph Foundation'),
(17123, 14642, 'en', 'name', 'Wake County Public School System'),
(17124, 14643, 'no_lang_code', 'name', 'Pallium India'),
(17125, 14644, 'no_lang_code', 'name', 'Tansna Theraputics (United States)'),
(17126, 14645, 'en', 'name', 'Plastic Surgery Foundation'),
(17127, 14646, 'en', 'name', 'Walk for Nepal'),
(17128, 14647, 'en', 'name', 'Tapestri'),
(17129, 14648, 'en', 'name', 'Play Group Theatre'),
(17130, 14649, 'no_lang_code', 'name', 'Targepeutics (United States)'),
(17131, 14650, 'no_lang_code', 'name', 'Targeted Cell Therapies (United States)'),
(17132, 14651, 'en', 'name', 'Walking Miracles Family Foundation'),
(17133, 14652, 'en', 'name', 'Walking With Anthony'),
(17134, 14653, 'en', 'name', 'Tuality Healthcare'),
(17135, 14654, 'en', 'name', 'Wallace-Kettering Neuroscience Institute'),
(17136, 14655, 'no_lang_code', 'name', 'Taro Pharmaceuticals (United States)'),
(17137, 14656, 'en', 'name', 'Quality of Life Plus'),
(17138, 14657, 'en', 'name', 'Walnut Creek Hearing Aid Center'),
(17139, 14658, 'en', 'name', 'Tarrant County Challenge'),
(17140, 14659, 'en', 'name', 'Walton Foundation for Independence'),
(17141, 14660, 'en', 'name', 'New York State PTA'),
(17142, 14661, 'en', 'name', 'Ward Melville Heritage Organization'),
(17143, 14662, 'en', 'name', 'Tashkent Institute Of Postgraduate Medical Education'),
(17144, 14663, 'en', 'name', 'Ray of Hope Cancer Foundation'),
(17145, 14664, 'en', 'name', 'Red Devils'),
(17146, 14665, 'en', 'name', 'Weldon City Schools'),
(17147, 14666, 'en', 'name', 'WellFlorida Council'),
(17148, 14667, 'en', 'name', 'Unlimited Abilities Foundation'),
(17149, 14668, 'en', 'name', 'Warren County Schools'),
(17150, 14669, 'en', 'name', 'Wellness House'),
(17151, 14670, 'en', 'name', 'Wellness House'),
(17152, 14671, 'en', 'name', 'Wells Institute for Health Awareness'),
(17153, 14672, 'en', 'name', 'WellShare International'),
(17154, 14673, 'no_lang_code', 'name', 'Cavion (United States)'),
(17155, 14674, 'en', 'name', 'WellSpan Health'),
(17156, 14675, 'en', 'name', 'UPMC McKeesport'),
(17157, 14676, 'en', 'name', 'Tazewell County Health Department'),
(17158, 14677, 'en', 'name', 'WellStar Health System'),
(17159, 14678, 'en', 'name', 'weSPARK Cancer Support Center'),
(17160, 14679, 'en', 'name', 'Wasatch Adaptive Sports'),
(17161, 14680, 'en', 'name', 'West Bay Pilipino Multi-Service Center'),
(17162, 14681, 'en', 'name', 'West Central Georgia Cancer Coalition'),
(17163, 14682, 'en', 'name', 'West County Health Centers'),
(17164, 14683, 'en', 'name', 'West Humboldt Park Development Council'),
(17165, 14684, 'en', 'name', 'National Association of Team Survivor'),
(17166, 14685, 'en', 'name', 'Urgent Action Fund'),
(17167, 14686, 'en', 'name', 'Regional Cancer Center'),
(17168, 14687, 'en', 'name', 'Team Taylor County'),
(17169, 14688, 'en', 'name', 'Regional Medical Center'),
(17170, 14689, 'en', 'name', 'West Michigan Cancer Center'),
(17171, 14690, 'en', 'name', 'West Town Bikes'),
(17172, 14691, 'en', 'name', 'Washington County Schools'),
(17173, 14692, 'es', 'name', 'Fondo de Acción Urgente América Latina y el Caribe'),
(17174, 14692, 'en', 'name', 'Urgent Action Fund for Latin America and the Caribbean'),
(17175, 14693, 'en', 'name', 'Westbury Friends School'),
(17176, 14694, 'en', 'name', 'Urologic Research Institute'),
(17177, 14695, 'en', 'name', 'Westchester Putnam Council'),
(17178, 14696, 'en', 'name', 'Western DuPage Special Recreation Association'),
(17179, 14697, 'no_lang_code', 'name', 'Western Oncolytics (United States)'),
(17180, 14698, 'en', 'name', 'The Washington Institute for Near East Policy'),
(17181, 14699, 'en', 'name', 'Westside Health Authority'),
(17182, 14700, 'en', 'name', 'Washington Regional Medical Center'),
(17183, 14701, 'en', 'name', 'Westside Institute for Science and Education'),
(17184, 14702, 'en', 'name', 'Poway Unified School District'),
(17185, 14703, 'en', 'name', 'US Human Rights Network'),
(17186, 14704, 'en', 'name', 'Wicomico County Health Department'),
(17187, 14705, 'en', 'name', 'United States Immunodeficiency Network'),
(17188, 14706, 'en', 'name', 'Wheaton Franciscan Healthcare'),
(17189, 14707, 'no_lang_code', 'name', 'Wigs 4 Kids'),
(17190, 14708, 'en', 'name', 'Wheelchair and Ambulatory Sports USA'),
(17191, 14709, 'en', 'name', 'Wheelchair Sports Federation'),
(17192, 14710, 'en', 'name', 'Wild for Life'),
(17193, 14711, 'en', 'name', 'Washington Hospital Healthcare System'),
(17194, 14712, 'en', 'name', 'Wheelin'' Team 457'),
(17195, 14713, 'en', 'name', 'Wild Lens'),
(17196, 14714, 'en', 'name', 'Wheeling Forward'),
(17197, 14715, 'en', 'name', 'Wilderness Inquiry'),
(17198, 14716, 'en', 'name', 'Wheels of Progress'),
(17199, 14717, 'en', 'name', 'Wilderness Matters'),
(17200, 14718, 'en', 'name', 'The Memorial Foundation'),
(17201, 14719, 'en', 'name', 'Will2Walk Foundation'),
(17202, 14720, 'en', 'name', 'White Earth Nation'),
(17203, 14721, 'en', 'name', 'USA Cares'),
(17204, 14722, 'en', 'name', 'Whiteside County Health Department'),
(17205, 14723, 'en', 'name', 'USA Hockey Foundation'),
(17206, 14724, 'en', 'name', 'The Roumel Group'),
(17207, 14725, 'en', 'name', 'Watauga Medical Center'),
(17208, 14726, 'en', 'name', 'Willamette Valley Cancer Foundation'),
(17209, 14727, 'en', 'name', 'Women''s Oncology Research and Dialogue'),
(17210, 14728, 'fr', 'name', 'UniversitƩ de Wilmington'),
(17211, 14728, 'en', 'name', 'Wilmington University'),
(17212, 14729, 'en', 'name', 'Women''s Refugee Commission'),
(17213, 14730, 'en', 'name', 'The Salvation Army Zambia'),
(17214, 14731, 'en', 'name', 'Women’s Rehabilitation Centre'),
(17215, 14732, 'en', 'name', 'Wonders and Worries'),
(17216, 14733, 'en', 'name', 'Wave Hill'),
(17217, 14734, 'en', 'name', 'Usher III Initiative'),
(17218, 14735, 'en', 'name', 'Wood River Ability Program'),
(17219, 14736, 'en', 'name', 'USTA Intermountain Colorado'),
(17220, 14737, 'en', 'name', 'Woodrow Wilson Rehabilitation Center Foundation'),
(17221, 14738, 'en', 'name', 'USTA Foundation'),
(17222, 14739, 'en', 'name', 'Winchester Hospital'),
(17223, 14740, 'en', 'name', 'WORLD'),
(17224, 14741, 'en', 'name', 'Wayne Country Day School'),
(17225, 14742, 'en', 'name', 'World Education'),
(17226, 14743, 'en', 'name', 'Wind River Cancer Wellness Retreats and Programs'),
(17227, 14744, 'en', 'name', 'Windber Research Institute'),
(17228, 14745, 'en', 'name', 'Self Determination Housing Project of Pennsylvania'),
(17229, 14746, 'en', 'name', 'The Sherkow Center for Child Development and Autism Spectrum Disorder'),
(17230, 14747, 'en', 'name', 'Wings Cancer Foundation'),
(17231, 14748, 'en', 'name', 'Society of Thoracic Surgeons'),
(17232, 14749, 'en', 'name', 'Wings of Hope Hospice'),
(17233, 14750, 'en', 'name', 'Fairfax Neonatal Associates'),
(17234, 14751, 'en', 'name', 'WCA Hospital'),
(17235, 14752, 'en', 'name', 'Neurotech Networks'),
(17236, 14753, 'en', 'name', 'Winning Wheels'),
(17237, 14754, 'en', 'name', 'Wuesthoff Health System'),
(17238, 14755, 'en', 'name', 'Wintergreen Adaptive Sports'),
(17239, 14756, 'en', 'name', 'The Stillpoint Foundation'),
(17240, 14757, 'en', 'name', 'Sacramento VA Medical Center'),
(17241, 14758, 'en', 'name', 'The QuadW Foundation'),
(17242, 14759, 'en', 'name', 'Catawba County Schools'),
(17243, 14760, 'en', 'name', 'Wyoming Comprehensive Cancer Control Consortium'),
(17244, 14761, 'en', 'name', 'Wyoming Services for Independent Living'),
(17245, 14762, 'en', 'name', 'The School of Theoretical Modeling'),
(17246, 14763, 'en', 'name', 'WISE & Healthy Aging'),
(17247, 14764, 'en', 'name', 'Wyoming Valley Alcohol and Drug Services'),
(17248, 14765, 'no_lang_code', 'name', 'Valentia Biopharma (Spain)'),
(17249, 14766, 'en', 'name', 'The Seany Foundation'),
(17250, 14767, 'no_lang_code', 'name', 'WeCanRow DC'),
(17251, 14768, 'en', 'name', 'Weems Community Mental Health Center'),
(17252, 14769, 'en', 'name', 'Wolfson Children''s Hospital'),
(17253, 14770, 'no_lang_code', 'name', 'Xen Biofluidx (United States)'),
(17254, 14771, 'en', 'name', 'Xenobe Research Institute'),
(17255, 14772, 'no_lang_code', 'name', 'Xeris Pharmaceuticals (United States)'),
(17256, 14773, 'en', 'name', 'Valley City State University'),
(17257, 14774, 'no_lang_code', 'name', 'The SoundWell (United States)'),
(17258, 14775, 'en', 'name', 'Star Center'),
(17259, 14776, 'en', 'name', 'Vessel Work'),
(17260, 14777, 'en', 'name', 'Veteran Homestead'),
(17261, 14778, 'en', 'name', 'Women Against Rape'),
(17262, 14779, 'en', 'name', 'Strategic Initiative for Women in the Horn of Africa'),
(17263, 14780, 'no_lang_code', 'name', 'Summit Medical Group (United States)'),
(17264, 14781, 'en', 'name', 'Sunshine Kids Foundation'),
(17265, 14782, 'en', 'name', 'Susan Cohan Colon Cancer Foundation'),
(17266, 14783, 'en', 'name', 'Scharp-Lacy Research Institute'),
(17267, 14784, 'en', 'name', 'Women Alive'),
(17268, 14785, 'en', 'name', 'UCHealth Yampa Valley Medical Center'),
(17269, 14786, 'en', 'name', 'Vannie E. Cook Jr. Cancer Foundation'),
(17270, 14787, 'no_lang_code', 'name', 'Vironika (United States)'),
(17271, 14788, 'no_lang_code', 'name', 'Vanquish Oncology (United States)'),
(17272, 14789, 'en', 'name', 'Veterans Education and Research Association of Northern New England'),
(17273, 14790, 'no_lang_code', 'name', 'Virovek (United States)'),
(17274, 14791, 'no_lang_code', 'name', 'Vantia (United Kingdom)'),
(17275, 14792, 'en', 'name', 'Virtua Health'),
(17276, 14793, 'en', 'name', 'Women for Peace and Democracy – Nepal'),
(17277, 14794, 'en', 'name', 'Veterans Research Foundation of Pittsburgh'),
(17278, 14795, 'en', 'name', 'Variety The Children''s Charity'),
(17279, 14796, 'en', 'name', 'Women Involved in Nurturing, Giving, Sharing'),
(17280, 14797, 'en', 'name', 'Women of Faith and Hope'),
(17281, 14798, 'en', 'name', 'Visions'),
(17282, 14799, 'en', 'name', 'Visitation Catholic School'),
(17283, 14800, 'en', 'name', 'Women of W.O.R.T.H.'),
(17284, 14801, 'en', 'name', 'Visiting Nurse Association of Erie County'),
(17285, 14802, 'en', 'name', 'Women With A Vision'),
(17286, 14803, 'en', 'name', 'The University of Vermont Health Network Home Health & Hospice'),
(17287, 14804, 'en', 'name', 'Yankton Rural Area Health Education Center'),
(17288, 14805, 'en', 'name', 'University of Maryland Upper Chesapeake Health'),
(17289, 14806, 'en', 'name', 'Women''s and Children''s Health Network'),
(17290, 14807, 'en', 'name', 'Torrance Memorial Medical Center'),
(17291, 14808, 'en', 'name', 'Vista Community Clinic'),
(17292, 14809, 'en', 'name', 'RiverStone Health'),
(17293, 14810, 'en', 'name', 'Vital Research'),
(17294, 14811, 'en', 'name', 'Women''s Cancer Resource Center'),
(17295, 14812, 'no_lang_code', 'name', 'Vastrata (United Kingdom)'),
(17296, 14813, 'no_lang_code', 'name', 'Viamet Pharmaceuticals (United States)'),
(17297, 14814, 'no_lang_code', 'name', 'Vaxiion Therapeutics (United States)'),
(17298, 14815, 'en', 'name', 'Family Health Enterprise'),
(17299, 14816, 'en', 'name', 'Vector Physical Therapy & Aquatic Center'),
(17300, 14817, 'en', 'name', 'Women''s Hospital, School of Medicine, Zhejiang University'),
(17301, 14817, 'zh', 'name', 'ęµ™ę±Ÿå¤§å­¦åŒ»å­¦é™¢é™„å±žå¦‡äŗ§ē§‘åŒ»é™¢'),
(17302, 14818, 'en', 'name', 'Women''s International Leadership Institute'),
(17303, 14819, 'en', 'name', 'Yo San University'),
(17304, 14820, 'en', 'name', 'Victory Christian International Ministries'),
(17305, 14821, 'en', 'name', 'Women''s International Network for Guatemalan Solutions'),
(17306, 14822, 'en', 'name', 'Yonkers Partners in Education'),
(17307, 14823, 'en', 'name', 'Victory Walk'),
(17308, 14824, 'no_lang_code', 'name', 'Verda Bio (United States)'),
(17309, 14825, 'en', 'name', 'Women''s Link Worldwide'),
(17310, 14826, 'en', 'name', 'Vermont Cancer Support Network'),
(17311, 14827, 'en', 'name', 'Vermont Program for Quality in Health Care'),
(17312, 14828, 'en', 'name', 'Vermont Studio Center'),
(17313, 14829, 'en', 'name', 'Young Adult Institute'),
(17314, 14830, 'no_lang_code', 'name', 'Applied DNA Sciences (United States)'),
(17315, 14831, 'no_lang_code', 'name', 'ViOptix (United States)'),
(17316, 14832, 'no_lang_code', 'name', 'VLP Therapeutics (United States)'),
(17317, 14833, 'en', 'name', 'Virginia Hospital Center'),
(17318, 14834, 'en', 'name', 'Voices Against Brain Cancer'),
(17319, 14835, 'en', 'name', 'Volunteers of America Alaska'),
(17320, 14836, 'en', 'name', 'Education of Young Leaders Society for Training and Development'),
(17321, 14837, 'en', 'name', 'International Foundation of Employee Benefit Plans'),
(17322, 14838, 'en', 'name', 'Academy of Management'),
(17323, 14839, 'en', 'name', 'ACLS Humanities E-Book'),
(17324, 14840, 'en', 'name', 'Young Survival Coalition'),
(17325, 14841, 'no_lang_code', 'name', 'CUNA Mutual Group (United States)'),
(17326, 14842, 'en', 'name', 'Young Women''s Christian Association'),
(17327, 14843, 'en', 'name', 'University of Vermont Children’s Hospital'),
(17328, 14844, 'en', 'name', 'International Union of Crystallography'),
(17329, 14845, 'en', 'name', 'Addison Public Library'),
(17330, 14846, 'en', 'name', 'Iron County Historical Museum'),
(17331, 14847, 'en', 'name', 'Youth Alive Uganda'),
(17332, 14848, 'en', 'name', 'Cuyahoga County Public Library'),
(17333, 14849, 'no_lang_code', 'name', 'Adelphi Group (United Kingdom)'),
(17334, 14850, 'en', 'name', 'Dance Heritage Coalition'),
(17335, 14851, 'en', 'name', 'Advocate South Suburban Hospital'),
(17336, 14852, 'en', 'name', 'IT''S TIME TEXAS'),
(17337, 14853, 'en', 'name', 'Youth Net and Counselling'),
(17338, 14854, 'en', 'name', 'Advocate Trinity Hospital'),
(17339, 14855, 'en', 'name', 'Daughters of the American Revolution'),
(17340, 14856, 'en', 'name', 'Youth & Opportunity United'),
(17341, 14857, 'en', 'name', 'Youth Rights Media'),
(17342, 14858, 'en', 'name', 'Agricultural Institute of Canada'),
(17343, 14859, 'en', 'name', 'National Louis University'),
(17344, 14860, 'en', 'name', 'American InterContinental University'),
(17345, 14861, 'no_lang_code', 'name', 'Dragonfly Sales and Marketing Consulting (United States)'),
(17346, 14862, 'en', 'name', 'Akron Art Museum'),
(17347, 14863, 'en', 'name', 'Akron-Summit County Public Library'),
(17348, 14864, 'en', 'name', 'Youth Unlimited Programs'),
(17349, 14865, 'en', 'name', 'ITT Technical Institute'),
(17350, 14866, 'en', 'name', 'youthSpark'),
(17351, 14867, 'en', 'name', 'Dairyland Power Cooperative'),
(17352, 14868, 'en', 'name', 'YouthWorks'),
(17353, 14869, 'en', 'name', 'Daniel Boone Regional Library'),
(17354, 14870, 'en', 'name', 'Danville Area Community College'),
(17355, 14871, 'no_lang_code', 'name', 'J. J. Keller & Associates (United States)'),
(17356, 14872, 'en', 'name', 'Nazarene Theological Seminary'),
(17357, 14873, 'en', 'name', 'Davenport University'),
(17358, 14874, 'no_lang_code', 'name', 'J.M. Smucker Company (United States)'),
(17359, 14875, 'no_lang_code', 'name', 'Emirates NBD'),
(17360, 14876, 'en', 'name', 'Jackson District Library'),
(17361, 14877, 'en', 'name', 'Chancellor University'),
(17362, 14878, 'en', 'name', 'The Nelson-Atkins Museum of Art'),
(17363, 14879, 'en', 'name', 'Allen County Public Library'),
(17364, 14880, 'en', 'name', 'Jasper County Public Library'),
(17365, 14881, 'no_lang_code', 'name', 'Allen Press (United States)'),
(17366, 14882, 'en', 'name', 'NERL Consortium'),
(17367, 14883, 'en', 'name', 'Dayton Metro Library'),
(17368, 14884, 'en', 'name', 'Jefferson County Library System'),
(17369, 14885, 'no_lang_code', 'name', 'Alliant Energy (United States)'),
(17370, 14886, 'en', 'name', 'Empire State Library Network'),
(17371, 14887, 'en', 'name', 'Decatur Public Library'),
(17372, 14888, 'en', 'name', 'Association of Learned and Professional Society Publishers'),
(17373, 14889, 'no_lang_code', 'name', 'Zealand Pharma (Denmark)'),
(17374, 14890, 'en', 'name', 'Newberry Library'),
(17375, 14891, 'en', 'name', 'Deerfield Public Library'),
(17376, 14892, 'en', 'name', 'National Federation of Advanced Information Services'),
(17377, 14893, 'en', 'name', 'JKM Library'),
(17378, 14894, 'en', 'name', 'Zekel Healthcare'),
(17379, 14895, 'en', 'name', 'John A. Logan College'),
(17380, 14896, 'no_lang_code', 'name', 'Zenobia Therapeutics (United States)'),
(17381, 14897, 'en', 'name', 'Normal Public Library'),
(17382, 14898, 'en', 'name', 'Wolf Park'),
(17383, 14899, 'en', 'name', 'Zero Breast Cancer'),
(17384, 14900, 'en', 'name', 'John Wood Community College'),
(17385, 14901, 'en', 'name', 'Northbrook Public Library'),
(17386, 14902, 'en', 'name', 'American Academy of Child and Adolescent Psychiatry'),
(17387, 14903, 'en', 'name', 'Northcentral Technical College'),
(17388, 14904, 'en', 'name', 'American Accounting Association'),
(17389, 14905, 'en', 'name', 'Johnson County Public Library'),
(17390, 14906, 'en', 'name', 'American Association for Clinical Chemistry'),
(17391, 14907, 'en', 'name', 'Des Plaines Public Library'),
(17392, 14908, 'en', 'name', 'Joliet Public Library'),
(17393, 14909, 'en', 'name', 'American Bankers Association'),
(17394, 14910, 'en', 'name', 'Youth Action on Tobacco Control and Health'),
(17395, 14911, 'en', 'name', 'American Institute of Aeronautics and Astronautics'),
(17396, 14912, 'en', 'name', 'Northwest State Community College'),
(17397, 14913, 'en', 'name', 'Northwestern College - Illinois'),
(17398, 14914, 'en', 'name', 'American Nuclear Society'),
(17399, 14915, 'en', 'name', 'Northwestern Michigan College'),
(17400, 14916, 'en', 'name', 'White Oak Library District'),
(17401, 14917, 'en', 'name', 'Terra State Community College'),
(17402, 14918, 'en', 'name', 'Judson University'),
(17403, 14919, 'en', 'name', 'Detroit Public Library'),
(17404, 14920, 'no_lang_code', 'name', 'Now Publishers (United States)'),
(17405, 14921, 'en', 'name', 'Kalamazoo Valley Community College'),
(17406, 14922, 'en', 'name', 'New York State Energy Research and Development Authority'),
(17407, 14923, 'en', 'name', 'Kankakee Community College'),
(17408, 14924, 'en', 'name', 'Oak Lawn Public Library'),
(17409, 14925, 'en', 'name', 'Southeastern Wisconsin Information Technology Exchange Consortium'),
(17410, 14926, 'en', 'name', 'Oak Park Public Library'),
(17411, 14927, 'en', 'name', 'American Sokol'),
(17412, 14928, 'en', 'name', 'American Theological Library Association'),
(17413, 14929, 'en', 'name', 'Oakland Community College'),
(17414, 14930, 'en', 'name', 'Kankakee County Museum'),
(17415, 14931, 'en', 'name', 'Kansas City Public Library'),
(17416, 14932, 'en', 'name', 'Texas Digital Library'),
(17417, 14933, 'en', 'name', 'American Veterinary Medical Association'),
(17418, 14934, 'en', 'name', 'Texas State Library and Archives Commission'),
(17419, 14935, 'en', 'name', 'British Institute of Radiology'),
(17420, 14936, 'en', 'name', 'Ontario Council of University Libraries'),
(17421, 14937, 'en', 'name', 'DeVry University'),
(17422, 14938, 'en', 'name', 'Kaskaskia College'),
(17423, 14939, 'no_lang_code', 'name', 'Analog and Digital Peripherals (United States)'),
(17424, 14940, 'en', 'name', 'Ancilla College'),
(17425, 14941, 'en', 'name', 'The Ohio State University at Mansfield'),
(17426, 14942, 'no_lang_code', 'name', 'Anheuser-Busch InBev (United States)'),
(17427, 14943, 'no_lang_code', 'name', 'Dickinson Wright (United States)'),
(17428, 14944, 'en', 'name', 'District of Columbia Public Library'),
(17429, 14945, 'en', 'name', 'Annual Reviews'),
(17430, 14946, 'en', 'name', 'Ewing Marion Kauffman Foundation'),
(17431, 14947, 'no_lang_code', 'name', 'OhioNET'),
(17432, 14948, 'en', 'name', 'One Earth Future Foundation'),
(17433, 14949, 'en', 'name', 'Kendall College'),
(17434, 14950, 'en', 'name', 'Appleton Public Library'),
(17435, 14951, 'en', 'name', 'Open The Government'),
(17436, 14952, 'en', 'name', 'Kent District Library'),
(17437, 14953, 'en', 'name', 'Archdiocese of Chicago'),
(17438, 14954, 'en', 'name', 'Archdiocese of St. Louis'),
(17439, 14954, 'fr', 'name', 'ArchidiocĆØse Catholique de St. Louis'),
(17440, 14955, 'fr', 'name', 'College des arts mƩdicaux de kettering'),
(17441, 14955, 'en', 'name', 'Kettering College'),
(17442, 14956, 'en', 'name', 'Tippecanoe County Public Library'),
(17443, 14957, 'en', 'name', 'Orland Park Public Library'),
(17444, 14958, 'en', 'name', 'Kirtland Community College'),
(17445, 14959, 'no_lang_code', 'name', 'Doximity (United States)'),
(17446, 14960, 'en', 'name', 'Kishwaukee College'),
(17447, 14961, 'en', 'name', 'Toledo Museum of Art'),
(17448, 14962, 'en', 'name', 'Oshkosh Public Library'),
(17449, 14963, 'en', 'name', 'Knowledge Systems Institute'),
(17450, 14964, 'en', 'name', 'Arlington Heights Memorial Library'),
(17451, 14965, 'en', 'name', 'Toledo Lucas County Public Library'),
(17452, 14966, 'en', 'name', 'Army and Navy Club'),
(17453, 14967, 'en', 'name', 'Palatine Public Library District'),
(17454, 14968, 'en', 'name', 'Art Institute of Chicago'),
(17455, 14968, 'fr', 'name', 'Institut d''Art de Chicago'),
(17456, 14968, 'es', 'name', 'Instituto de Arte de Chicago'),
(17457, 14969, 'en', 'name', 'Pennsylvania Academic Library Consortium'),
(17458, 14970, 'en', 'name', 'Kokomo-Howard County Public Library'),
(17459, 14971, 'no_lang_code', 'name', 'Meritor (United States)'),
(17460, 14972, 'en', 'name', 'Trinity Christian College'),
(17461, 14973, 'no_lang_code', 'name', 'A2Dominion'),
(17462, 14974, 'en', 'name', 'Reaching Across Illinois Library System'),
(17463, 14975, 'en', 'name', 'Assemblies of God Theological Seminary'),
(17464, 14976, 'en', 'name', 'Park Ridge Public Library'),
(17465, 14977, 'no_lang_code', 'name', 'Dykema (United States)'),
(17466, 14978, 'en', 'name', 'Experimental Aircraft Association'),
(17467, 14979, 'en', 'name', 'Trinity International University'),
(17468, 14980, 'en', 'name', 'East Central College'),
(17469, 14981, 'en', 'name', 'Trinity Lutheran Seminary'),
(17470, 14982, 'en', 'name', 'Troy Public Library'),
(17471, 14983, 'en', 'name', 'Tuscarawas County Public Library'),
(17472, 14984, 'en', 'name', 'Pediatric Neurology Briefs'),
(17473, 14985, 'en', 'name', 'L.E. Phillips Memorial Public Library'),
(17474, 14986, 'en', 'name', 'La Crosse Public Library'),
(17475, 14987, 'en', 'name', 'La Grange Public Library'),
(17476, 14988, 'en', 'name', 'Assyrian Universal Alliance Foundation'),
(17477, 14989, 'no_lang_code', 'name', 'PeerJ (United States)'),
(17478, 14990, 'en', 'name', 'Peninsula Library and Historical Society'),
(17479, 14991, 'no_lang_code', 'name', 'EBSCO Industries (United States)'),
(17480, 14991, 'en', 'name', 'EBSCO Information Services'),
(17481, 14991, 'fr', 'name', 'Ebsco information services'),
(17482, 14992, 'en', 'name', 'Peoria Public Library'),
(17483, 14993, 'en', 'name', 'Athenaeum of Ohio'),
(17484, 14994, 'en', 'name', 'Hormel Foundation'),
(17485, 14995, 'en', 'name', 'Auburn Cord Duesenberg Automobile Museum'),
(17486, 14996, 'en', 'name', 'Audrain County Historical Society'),
(17487, 14997, 'en', 'name', 'Educopia Institute'),
(17488, 14998, 'en', 'name', 'Ukrainian Museum-Archives'),
(17489, 14999, 'en', 'name', 'Lake County Forest Preserves'),
(17490, 15000, 'en', 'name', 'Lake Erie College'),
(17491, 15001, 'en', 'name', 'Phillips Collection'),
(17492, 15002, 'en', 'name', 'Eiteljorg Museum of American Indians and Western Art'),
(17493, 15003, 'en', 'name', 'Lake Land College'),
(17494, 15004, 'en', 'name', 'Aurora Public Library'),
(17495, 15005, 'en', 'name', 'Public Library of Science'),
(17496, 15006, 'en', 'name', 'Electronic Privacy Information Center'),
(17497, 15007, 'en', 'name', 'Plymouth Historical Museum'),
(17498, 15008, 'en', 'name', 'Lake Michigan College'),
(17499, 15009, 'en', 'name', 'The People of the United Methodist Church'),
(17500, 15010, 'en', 'name', 'Pontifical College Josephinum'),
(17501, 15011, 'en', 'name', 'Ave Maria School of Law'),
(17502, 15011, 'es', 'name', 'Escuela de Derecho Ave MarĆ­a'),
(17503, 15012, 'en', 'name', 'Lakeland Library Cooperative'),
(17504, 15013, 'en', 'name', 'Elk Grove Village Public Library'),
(17505, 15014, 'en', 'name', 'Lakeshore Technical College'),
(17506, 15015, 'en', 'name', 'Grand Forks Air Force Base'),
(17507, 15016, 'en', 'name', 'Elkhart Public Library'),
(17508, 15017, 'en', 'name', 'Elmhurst History Museum'),
(17509, 15018, 'en', 'name', 'Elmhurst Public Library'),
(17510, 15019, 'en', 'name', 'Lakeview College of Nursing'),
(17511, 15020, 'en', 'name', 'Baldwin Public Library'),
(17512, 15021, 'en', 'name', 'Balzekas Museum of Lithuanian Culture'),
(17513, 15022, 'en', 'name', 'Portage County District Library'),
(17514, 15023, 'en', 'name', 'Elyria Public Library System'),
(17515, 15024, 'en', 'name', 'Portage County Public Library'),
(17516, 15025, 'en', 'name', 'Lansing Community College'),
(17517, 15026, 'en', 'name', 'Porter County Public Library System'),
(17518, 15027, 'en', 'name', 'Bartlett Public Library District'),
(17519, 15028, 'no_lang_code', 'name', 'Latham & Watkins (United States)'),
(17520, 15029, 'en', 'name', 'Bay County Library System'),
(17521, 15030, 'en', 'name', 'Leather Archives and Museum'),
(17522, 15031, 'en', 'name', 'Leelanau Historical Society'),
(17523, 15032, 'en', 'name', 'Leigh Yawkey Woodson Art Museum'),
(17524, 15033, 'en', 'name', 'Euclid Public Library'),
(17525, 15034, 'en', 'name', 'Eureka College'),
(17526, 15035, 'en', 'name', 'Illinois Community College Board'),
(17527, 15036, 'en', 'name', 'Lenawee District Library'),
(17528, 15037, 'en', 'name', 'Evanston Public Library'),
(17529, 15038, 'en', 'name', 'Evansville Vanderburgh Public Library'),
(17530, 15039, 'en', 'name', 'Ohio Attorney General''s Office'),
(17531, 15040, 'en', 'name', 'Bay College'),
(17532, 15041, 'no_lang_code', 'name', 'Begell House (United States)'),
(17533, 15042, 'no_lang_code', 'name', 'Evidentia Publishing (Netherlands)'),
(17534, 15043, 'en', 'name', 'Lexington College'),
(17535, 15044, 'fr', 'name', 'BibliothĆØque et archives canada'),
(17536, 15044, 'en', 'name', 'Library and Archives Canada'),
(17537, 15045, 'en', 'name', 'Library of Michigan'),
(17538, 15046, 'en', 'name', 'Lincoln Christian University'),
(17539, 15047, 'en', 'name', 'Belmont College'),
(17540, 15048, 'no_lang_code', 'name', 'Faculty of 1000 (United States)'),
(17541, 15049, 'en', 'name', 'Preble County District Library'),
(17542, 15050, 'no_lang_code', 'name', 'Bepress (United States)'),
(17543, 15051, 'en', 'name', 'Berwyn Public Library'),
(17544, 15052, 'en', 'name', 'Principia College'),
(17545, 15053, 'es', 'name', 'Agencia de Inteligencia de la Defensa'),
(17546, 15053, 'en', 'name', 'Defense Intelligence Agency'),
(17547, 15054, 'no_lang_code', 'name', 'BioMed Central (United Kingdom)'),
(17548, 15055, 'no_lang_code', 'name', 'EncyclopƦdia Britannica (United States)'),
(17549, 15056, 'en', 'name', 'National Defense University'),
(17550, 15056, 'es', 'name', 'Universidad Nacional de Defensa'),
(17551, 15057, 'en', 'name', 'Lincoln Library'),
(17552, 15058, 'no_lang_code', 'name', 'Bioscientifica (United Kingdom)'),
(17553, 15059, 'en', 'name', 'Federal Energy Regulatory Commission'),
(17554, 15060, 'en', 'name', 'Federal Reserve Bank of Chicago'),
(17555, 15061, 'en', 'name', 'Federal Reserve Bank of Cleveland'),
(17556, 15062, 'en', 'name', 'Federal Reserve Bank of Kansas City'),
(17557, 15063, 'en', 'name', 'Public Libraries of Saginaw'),
(17558, 15064, 'en', 'name', 'Black Metropolis Research Consortium'),
(17559, 15065, 'es', 'name', 'Biblioteca PĆŗblica de Cincinnati'),
(17560, 15065, 'en', 'name', 'Public Library of Cincinnati and Hamilton County'),
(17561, 15066, 'en', 'name', 'Lisle Library District'),
(17562, 15067, 'en', 'name', 'Bloomfield Township Public Library'),
(17563, 15068, 'en', 'name', 'Public Library of Mount Vernon and Knox County'),
(17564, 15069, 'en', 'name', 'Federal Reserve Bank of St. Louis'),
(17565, 15070, 'en', 'name', 'Grand Rapids Public Museum'),
(17566, 15071, 'en', 'name', 'Lithuanian Research and Studies Center'),
(17567, 15072, 'en', 'name', 'Livonia Public Library'),
(17568, 15073, 'en', 'name', 'Blue Mountain Community College'),
(17569, 15074, 'en', 'name', 'Queensland Children’s Medical Research Institute'),
(17570, 15075, 'en', 'name', 'Federal Trade Commission'),
(17571, 15076, 'en', 'name', 'Blue Springs Historical Society'),
(17572, 15077, 'en', 'name', 'Federal Reserve Board of Governors'),
(17573, 15078, 'es', 'name', 'Comisión electoral federal'),
(17574, 15078, 'fr', 'name', 'Commission Ʃlectorale fƩdƩrale'),
(17575, 15078, 'en', 'name', 'Federal Election Commission'),
(17576, 15079, 'en', 'name', 'Quincy Museum'),
(17577, 15080, 'en', 'name', 'Lorain Public Library System'),
(17578, 15081, 'en', 'name', 'Racine Art Museum'),
(17579, 15082, 'en', 'name', 'Racine Heritage Museum'),
(17580, 15083, 'en', 'name', 'United States Government Accountability Office'),
(17581, 15084, 'en', 'name', 'Racine Public Library'),
(17582, 15085, 'en', 'name', 'United States Government Publishing Office'),
(17583, 15086, 'en', 'name', 'United States House of Representatives'),
(17584, 15087, 'no_lang_code', 'name', 'Rand McNally (United States)'),
(17585, 15088, 'fr', 'name', 'Etats-unis. international trade commission'),
(17586, 15088, 'en', 'name', 'United States International Trade Commission'),
(17587, 15089, 'en', 'name', 'National Counterterrorism Center'),
(17588, 15090, 'no_lang_code', 'name', 'BP (United States)'),
(17589, 15091, 'en', 'name', 'Fond du Lac Historical Society'),
(17590, 15092, 'en', 'name', 'Fontbonne University'),
(17591, 15093, 'en', 'name', 'Brimfield Public Library'),
(17592, 15094, 'en', 'name', 'British Editorial Society of Bone & Joint Surgery'),
(17593, 15095, 'en', 'name', 'National Labor Relations Board'),
(17594, 15096, 'en', 'name', 'Prairie State College'),
(17595, 15097, 'es', 'name', 'Comisión Reguladora Nuclear de Estados Unidos'),
(17596, 15097, 'fr', 'name', 'Commission de rĆ©glementation nuclĆ©aire des Ɖtats-unis'),
(17597, 15097, 'en', 'name', 'United States Nuclear Regulatory Commission'),
(17598, 15098, 'en', 'name', 'MacCormac College'),
(17599, 15099, 'en', 'name', 'Madison County Historical Society'),
(17600, 15100, 'es', 'name', 'Oficina de Patentes y Marcas de Estados Unidos'),
(17601, 15100, 'en', 'name', 'United States Patent and Trademark Office'),
(17602, 15101, 'en', 'name', 'Brown County Library'),
(17603, 15102, 'en', 'name', 'Pension Benefit Guaranty Corporation'),
(17604, 15103, 'en', 'name', 'Brown County Public Library'),
(17605, 15104, 'en', 'name', 'Fort Wayne Museum of Art'),
(17606, 15105, 'en', 'name', 'Brown Mackie College'),
(17607, 15106, 'en', 'name', 'Brown Mackie College'),
(17608, 15107, 'es', 'name', 'Servicio Postal de los Estados Unidos'),
(17609, 15107, 'en', 'name', 'United States Postal Service'),
(17610, 15108, 'en', 'name', 'Fountaindale Public Library'),
(17611, 15109, 'en', 'name', 'Mansfield Richland County Public Library'),
(17612, 15110, 'en', 'name', 'Richland Community College'),
(17613, 15111, 'no_lang_code', 'name', 'Bloomberg (United States)'),
(17614, 15112, 'no_lang_code', 'name', 'RMG Consultants (United States)'),
(17615, 15113, 'en', 'name', 'Manufacturers’ Representatives Educational Research Foundation'),
(17616, 15114, 'en', 'name', 'United States Senate Library'),
(17617, 15115, 'en', 'name', 'Rock and Roll Hall of Fame and Museum'),
(17618, 15116, 'no_lang_code', 'name', 'WPP (United States)'),
(17619, 15117, 'en', 'name', 'Marathon County Public Library'),
(17620, 15118, 'en', 'name', 'Rock County Historical Society'),
(17621, 15119, 'en', 'name', 'United States Tax Court'),
(17622, 15120, 'en', 'name', 'Rock Valley College'),
(17623, 15121, 'en', 'name', 'Marinette County Libraries'),
(17624, 15122, 'en', 'name', 'Free Methodist Church'),
(17625, 15123, 'en', 'name', 'Rockford Public Library'),
(17626, 15124, 'en', 'name', 'Architect of the Capitol'),
(17627, 15125, 'en', 'name', 'Rocky River Public Library'),
(17628, 15126, 'en', 'name', 'Friends of Historic Boonville'),
(17629, 15127, 'en', 'name', 'Martin Township Public Library'),
(17630, 15128, 'en', 'name', 'Rodman Public Library'),
(17631, 15129, 'en', 'name', 'Max Perutz Library'),
(17632, 15130, 'en', 'name', 'Ruth Mott Foundation'),
(17633, 15131, 'no_lang_code', 'name', 'Sabinet (South Africa)'),
(17634, 15132, 'en', 'name', 'Calumet College of Saint Joseph'),
(17635, 15133, 'en', 'name', 'Sacred Heart Major Seminary'),
(17636, 15134, 'en', 'name', 'Calvary Bible College'),
(17637, 15135, 'en', 'name', 'Illinois Eastern Community Colleges'),
(17638, 15136, 'en', 'name', 'University Center of Lake County'),
(17639, 15137, 'no_lang_code', 'name', 'Mayer Brown (United States)'),
(17640, 15138, 'en', 'name', 'Gail Borden Public Library District'),
(17641, 15139, 'en', 'name', 'Hesburgh Libraries'),
(17642, 15140, 'en', 'name', 'Cambridge Community Library'),
(17643, 15141, 'en', 'name', 'St. Charles City County Library District'),
(17644, 15142, 'en', 'name', 'Upper Arlington Public Library'),
(17645, 15143, 'en', 'name', 'St. Clair County Community College'),
(17646, 15144, 'no_lang_code', 'name', 'Cambridge University Press'),
(17647, 15145, 'en', 'name', 'University of Saint Mary of the Lake'),
(17648, 15146, 'no_lang_code', 'name', 'Interpublic Group (United States)'),
(17649, 15147, 'en', 'name', 'St. Clair County Library System'),
(17650, 15148, 'en', 'name', 'St. Joseph County Public Library'),
(17651, 15149, 'en', 'name', 'McHenry County College'),
(17652, 15150, 'en', 'name', 'St. Joseph''s College New York'),
(17653, 15151, 'en', 'name', 'Saint Joseph''s College'),
(17654, 15152, 'en', 'name', 'St. Louis County Library'),
(17655, 15153, 'en', 'name', 'St. Louis Public Library'),
(17656, 15154, 'fr', 'name', 'Association ForestiĆØre Canadienne'),
(17657, 15154, 'en', 'name', 'Canadian Forestry Association'),
(17658, 15155, 'no_lang_code', 'name', 'Multidisciplinary Digital Publishing Institute (Switzerland)'),
(17659, 15156, 'en', 'name', 'Canadian Institute of Public Health Inspectors'),
(17660, 15157, 'en', 'name', 'Geauga County Public Library'),
(17661, 15158, 'en', 'name', 'GeoScienceWorld'),
(17662, 15159, 'en', 'name', 'Mead Public Library'),
(17663, 15160, 'en', 'name', 'Meadville Lombard Theological School'),
(17664, 15161, 'no_lang_code', 'name', 'AMN Healthcare (United States)'),
(17665, 15162, 'en', 'name', 'Sauk County Historical Society'),
(17666, 15163, 'en', 'name', 'Sauk Valley Community College'),
(17667, 15164, 'en', 'name', 'Statewide California Electronic Library Consortium'),
(17668, 15165, 'en', 'name', 'Glen Ellyn Public Library'),
(17669, 15166, 'en', 'name', 'School of the Art Institute of Chicago'),
(17670, 15166, 'fr', 'name', 'Ɖcole de l''institut d''art de chicago'),
(17671, 15167, 'en', 'name', 'Schoolcraft College'),
(17672, 15168, 'en', 'name', 'Glenview Public Library'),
(17673, 15169, 'en', 'name', 'Canadian Science Publishing'),
(17674, 15170, 'fr', 'name', 'Association canadienne des mƩdecins vƩtƩrinaires'),
(17675, 15170, 'en', 'name', 'Canadian Veterinary Medical Association'),
(17676, 15171, 'en', 'name', 'Gogebic Community College'),
(17677, 15172, 'no_lang_code', 'name', 'Scribd (United States)'),
(17678, 15173, 'en', 'name', 'Canton Public Library'),
(17679, 15174, 'en', 'name', 'Capital Area District Libraries'),
(17680, 15175, 'en', 'name', 'Career Education Corporation'),
(17681, 15176, 'en', 'name', 'Carl Sandburg College'),
(17682, 15177, 'en', 'name', 'Shaker Heights Public Library'),
(17683, 15178, 'en', 'name', 'Medina County District Library'),
(17684, 15179, 'en', 'name', 'Swope Art Museum'),
(17685, 15180, 'no_lang_code', 'name', 'Medknow (India)'),
(17686, 15181, 'en', 'name', 'Grace A. Dow Memorial Library'),
(17687, 15182, 'no_lang_code', 'name', 'Mesoblast (United States)'),
(17688, 15183, 'en', 'name', 'Shimer College'),
(17689, 15184, 'en', 'name', 'The Urbana Free Library'),
(17690, 15185, 'en', 'name', 'Urbana University'),
(17691, 15186, 'en', 'name', 'Ursuline College'),
(17692, 15187, 'en', 'name', 'Catholic Theological Union'),
(17693, 15188, 'no_lang_code', 'name', 'Shook, Hardy & Bacon (United States)'),
(17694, 15189, 'en', 'name', 'Grand Rapids Public Library'),
(17695, 15190, 'en', 'name', 'U.S. Committee for Refugees and Immigrants'),
(17696, 15191, 'en', 'name', 'Silver Lake College'),
(17697, 15192, 'en', 'name', 'Cedarburg Public Library'),
(17698, 15193, 'en', 'name', 'Cedarhurst Center For The Arts'),
(17699, 15194, 'en', 'name', 'Methodist Theological School in Ohio'),
(17700, 15195, 'no_lang_code', 'name', 'SIPX (United States)'),
(17701, 15196, 'no_lang_code', 'name', 'RELX Group (United States)'),
(17702, 15197, 'en', 'name', 'Metropolitan Community College'),
(17703, 15198, 'en', 'name', 'Greater West Bloomfield Historical Society'),
(17704, 15199, 'en', 'name', 'Skokie Public Library'),
(17705, 15200, 'en', 'name', 'Center for Research Libraries'),
(17706, 15201, 'en', 'name', 'Miami County Museum'),
(17707, 15202, 'en', 'name', 'Sloan*Longway'),
(17708, 15203, 'en', 'name', 'Michigan City Public Library'),
(17709, 15204, 'en', 'name', 'VanderCook College of Music'),
(17710, 15205, 'en', 'name', 'Central Methodist University'),
(17711, 15206, 'en', 'name', 'Michigan History Center'),
(17712, 15207, 'en', 'name', 'Greater Western Library Alliance'),
(17713, 15208, 'en', 'name', 'Champaign County History Museum'),
(17714, 15209, 'en', 'name', 'Champaign Public Library'),
(17715, 15210, 'en', 'name', 'Grosse Pointe Public Library'),
(17716, 15211, 'en', 'name', 'Chicago History Museum'),
(17717, 15212, 'no_lang_code', 'name', 'Guilford Press (United States)'),
(17718, 15213, 'en', 'name', 'Mid-Continent Public Library'),
(17719, 15214, 'en', 'name', 'Hamilton East Public Library'),
(17720, 15215, 'en', 'name', 'Mid-State Technical College'),
(17721, 15216, 'en', 'name', 'Hannibal–LaGrange University'),
(17722, 15217, 'en', 'name', 'Chicago Theological Seminary'),
(17723, 15218, 'en', 'name', 'Middletown Public Library'),
(17724, 15219, 'en', 'name', 'Midstate College'),
(17725, 15220, 'en', 'name', 'Chicago Kent College of Law'),
(17726, 15221, 'en', 'name', 'Chippewa Valley Museum'),
(17727, 15222, 'no_lang_code', 'name', 'Midwest Tape (United States)'),
(17728, 15223, 'en', 'name', 'South Asian American Digital Archive'),
(17729, 15224, 'no_lang_code', 'name', 'Chiquita Brands International (United States)'),
(17730, 15225, 'no_lang_code', 'name', 'Miller Canfield (United States)'),
(17731, 15226, 'en', 'name', 'South Bend Museum of Art'),
(17732, 15227, 'en', 'name', 'Vigo County Historical Society & Museum'),
(17733, 15228, 'en', 'name', 'South Holland Public Library'),
(17734, 15229, 'en', 'name', 'Milwaukee Public Library'),
(17735, 15230, 'en', 'name', 'Harrington College of Design'),
(17736, 15231, 'en', 'name', 'Cincinnati Christian University'),
(17737, 15232, 'en', 'name', 'Harry Perkins Institute of Medical Research'),
(17738, 15233, 'en', 'name', 'Vigo County Public Library'),
(17739, 15234, 'en', 'name', 'South Suburban College'),
(17740, 15235, 'en', 'name', 'Cincinnati State Technical and Community College'),
(17741, 15236, 'en', 'name', 'Mishawaka-Penn-Harris Public Library'),
(17742, 15237, 'en', 'name', 'South Suburban Genealogical and Historical Society'),
(17743, 15238, 'en', 'name', 'Missouri Baptist University'),
(17744, 15239, 'it', 'name', 'Cineca'),
(17745, 15240, 'en', 'name', 'Hayner Public Library District'),
(17746, 15241, 'en', 'name', 'Missouri History Museum'),
(17747, 15242, 'en', 'name', 'Circus World Museum'),
(17748, 15243, 'en', 'name', 'University Muslim Medical Association Community Clinic'),
(17749, 15244, 'en', 'name', 'Citizens for Responsibility and Ethics in Washington'),
(17750, 15245, 'en', 'name', 'Missouri River Regional Library'),
(17751, 15246, 'en', 'name', 'Claremont Colleges'),
(17752, 15247, 'en', 'name', 'Southeastern Illinois College'),
(17753, 15248, 'en', 'name', 'Health Affairs'),
(17754, 15249, 'en', 'name', 'Clark State Community College'),
(17755, 15250, 'en', 'name', 'Heartland Community College'),
(17756, 15251, 'en', 'name', 'Clay County Archives and Historical Library'),
(17757, 15252, 'en', 'name', 'Vincennes University'),
(17758, 15253, 'en', 'name', 'Hebrew Theological College'),
(17759, 15254, 'en', 'name', 'Clermont County Public Library'),
(17760, 15255, 'en', 'name', 'Hedberg Public Library'),
(17761, 15256, 'en', 'name', 'Missouri Valley College'),
(17762, 15257, 'en', 'name', 'Heritage Museum and Cultural Center'),
(17763, 15258, 'en', 'name', 'Southern State Community College'),
(17764, 15259, 'en', 'name', 'Monroe County Historical Museum'),
(17765, 15260, 'en', 'name', 'Cleveland Heights University Heights Public Library'),
(17766, 15261, 'en', 'name', 'Monroe County Library System'),
(17767, 15262, 'en', 'name', 'Monroe County Public Library'),
(17768, 15263, 'fr', 'name', 'Institut biblique moody'),
(17769, 15263, 'en', 'name', 'Moody Bible Institute'),
(17770, 15264, 'en', 'name', 'Southwestern Illinois College'),
(17771, 15265, 'en', 'name', 'Moraine Park Technical College');
INSERT INTO `ror_settings` VALUES
(17772, 15266, 'en', 'name', 'Cleveland Law Library Association'),
(17773, 15267, 'en', 'name', 'Cleveland Museum of Art'),
(17774, 15268, 'no_lang_code', 'name', 'Morgan, Lewis & Bockius (United States)'),
(17775, 15269, 'en', 'name', 'Morley Library'),
(17776, 15270, 'en', 'name', 'Cleveland Public Library'),
(17777, 15271, 'en', 'name', 'Morton College'),
(17778, 15272, 'no_lang_code', 'name', 'CLOCKSS'),
(17779, 15273, 'en', 'name', 'Highland County District Library'),
(17780, 15274, 'en', 'name', 'Hillsdale College'),
(17781, 15275, 'en', 'name', 'Hillwood Estate, Museum and Garden'),
(17782, 15276, 'en', 'name', 'Coalition for Networked Information'),
(17783, 15277, 'en', 'name', 'Hoard Historical Museum'),
(17784, 15278, 'en', 'name', 'Hocking College'),
(17785, 15279, 'en', 'name', 'Holy Cross College'),
(17786, 15280, 'en', 'name', 'Southwestern Michigan College'),
(17787, 15281, 'en', 'name', 'Holy Wisdom Monastery'),
(17788, 15282, 'no_lang_code', 'name', 'Sparks & Co (France)'),
(17789, 15283, 'en', 'name', 'Coles County Historical Society'),
(17790, 15284, 'en', 'name', 'Mount Vernon Nazarene University'),
(17791, 15285, 'en', 'name', 'Spertus Institute for Jewish Learning and Leadership'),
(17792, 15286, 'en', 'name', 'College of Lake County'),
(17793, 15287, 'en', 'name', 'Spoon River College'),
(17794, 15288, 'en', 'name', 'Muskegon Area District Library'),
(17795, 15289, 'en', 'name', 'Spring Arbor University'),
(17796, 15290, 'en', 'name', 'Wadsworth Public Library'),
(17797, 15291, 'en', 'name', 'Lakeshore Museum Center'),
(17798, 15292, 'en', 'name', 'Springfield Greene County Library District'),
(17799, 15293, 'en', 'name', 'SS. Cyril & Methodius Seminary'),
(17800, 15294, 'en', 'name', 'Hudson Library and Historical Society'),
(17801, 15295, 'en', 'name', 'Walsh College'),
(17802, 15296, 'en', 'name', 'St. Joseph Museums'),
(17803, 15297, 'en', 'name', 'Warren Newport Public Library'),
(17804, 15298, 'en', 'name', 'National Archives of Hungary'),
(17805, 15299, 'en', 'name', 'Warren-Trumbull County Public Library'),
(17806, 15300, 'en', 'name', 'National Academies Press'),
(17807, 15301, 'en', 'name', 'Stark County District Library'),
(17808, 15302, 'en', 'name', 'Washington Research Foundation'),
(17809, 15303, 'en', 'name', 'State Fair Community College'),
(17810, 15304, 'en', 'name', 'Washington State Community College'),
(17811, 15305, 'en', 'name', 'State Library of Ohio'),
(17812, 15306, 'en', 'name', 'Columbus College of Art and Design'),
(17813, 15307, 'en', 'name', 'ICE Publishing'),
(17814, 15308, 'en', 'name', 'National Association of Realtors'),
(17815, 15309, 'en', 'name', 'Washtenaw Community College'),
(17816, 15310, 'en', 'name', 'Wisconsin Legislative Reference Bureau'),
(17817, 15311, 'no_lang_code', 'name', 'IGI Global (United States)'),
(17818, 15312, 'en', 'name', 'Studebaker National Museum'),
(17819, 15313, 'en', 'name', 'Illinois Supreme Court Library'),
(17820, 15314, 'en', 'name', 'Waubonsee Community College'),
(17821, 15315, 'en', 'name', 'Columbus Law Library Association'),
(17822, 15316, 'en', 'name', 'Columbus Metropolitan Library'),
(17823, 15317, 'en', 'name', 'Columbus State Community College'),
(17824, 15318, 'en', 'name', 'National Association of School Psychologists'),
(17825, 15319, 'en', 'name', 'Columbus Zoo and Aquarium'),
(17826, 15320, 'en', 'name', 'Wauconda Area Library'),
(17827, 15321, 'en', 'name', 'Illinois Mathematics and Science Academy'),
(17828, 15322, 'en', 'name', 'National Center for Manufacturing Sciences'),
(17829, 15323, 'en', 'name', 'Waukesha County Museum'),
(17830, 15324, 'en', 'name', 'Illinois Railway Museum'),
(17831, 15325, 'en', 'name', 'Waukesha County Technical College'),
(17832, 15326, 'en', 'name', 'Supreme Court of Ohio'),
(17833, 15327, 'en', 'name', 'Illinois State Archives'),
(17834, 15328, 'en', 'name', 'Abraham Lincoln Presidential Library and Museum'),
(17835, 15329, 'en', 'name', 'Waukesha Public Library'),
(17836, 15330, 'en', 'name', 'Committee on Institutional Cooperation'),
(17837, 15331, 'es', 'name', 'GalerĆ­a Nacional de Arte'),
(17838, 15331, 'en', 'name', 'National Gallery of Art'),
(17839, 15332, 'en', 'name', 'National Library of Education'),
(17840, 15333, 'en', 'name', 'Illinois Valley Community College'),
(17841, 15334, 'en', 'name', 'Illinois State Library'),
(17842, 15335, 'en', 'name', 'National Museum of Women in the Arts'),
(17843, 15336, 'en', 'name', 'Concordia Seminary'),
(17844, 15336, 'es', 'name', 'Seminario Concordia'),
(17845, 15337, 'en', 'name', 'Concordia University Chicago'),
(17846, 15337, 'fr', 'name', 'UniversitƩ concordia de chicago'),
(17847, 15338, 'en', 'name', 'Raising Spirits Foundation'),
(17848, 15339, 'en', 'name', 'International Network for Advancing Science and Policy'),
(17849, 15340, 'en', 'name', 'Congressional Budget Office'),
(17850, 15341, 'en', 'name', 'Consortium of Academic and Research Libraries in Illinois'),
(17851, 15342, 'en', 'name', 'Indiana Historical Society'),
(17852, 15343, 'en', 'name', 'Wesley Theological Seminary'),
(17853, 15344, 'en', 'name', 'Cook County Law Library'),
(17854, 15345, 'en', 'name', 'West Allis Public Library'),
(17855, 15346, 'en', 'name', 'Indiana Archives and Records Administration'),
(17856, 15347, 'en', 'name', 'Indiana State Library'),
(17857, 15348, 'en', 'name', 'Indiana Supreme Court'),
(17858, 15349, 'en', 'name', 'Cook Memorial Public Library District'),
(17859, 15350, 'en', 'name', 'Westlake Porter Public Library'),
(17860, 15351, 'en', 'name', 'Indiana University East'),
(17861, 15352, 'en', 'name', 'Westmont Public Library'),
(17862, 15353, 'en', 'name', 'Indiana University Kokomo'),
(17863, 15354, 'en', 'name', 'Copyright Licensing Agency'),
(17864, 15355, 'en', 'name', 'Westwood College'),
(17865, 15356, 'en', 'name', 'Indianapolis Public Schools'),
(17866, 15357, 'en', 'name', 'Indianapolis Public Library'),
(17867, 15358, 'en', 'name', 'Wheaton Public Library'),
(17868, 15359, 'no_lang_code', 'name', 'Information Today (United States)'),
(17869, 15360, 'en', 'name', 'Williams County Public Library'),
(17870, 15361, 'en', 'name', 'Wilmette Public Library'),
(17871, 15362, 'en', 'name', 'McLaren Greater Lansing'),
(17872, 15363, 'en', 'name', 'Council of State Archivists'),
(17873, 15364, 'en', 'name', 'Wilmington College'),
(17874, 15365, 'en', 'name', 'Institute of Museum and Library Services'),
(17875, 15366, 'en', 'name', 'Wisconsin Historical Society'),
(17876, 15367, 'en', 'name', 'Covington and Burling'),
(17877, 15368, 'en', 'name', 'Wisconsin Indianhead Technical College'),
(17878, 15369, 'en', 'name', 'Young Empowered Survivors'),
(17879, 15370, 'en', 'name', 'Wisconsin Lutheran College'),
(17880, 15371, 'en', 'name', 'CoxHealth'),
(17881, 15372, 'no_lang_code', 'name', 'Credo Reference (United States)'),
(17882, 15373, 'en', 'name', 'Wisconsin Maritime Museum'),
(17883, 15374, 'en', 'name', 'Wisconsin Veterans Museum'),
(17884, 15375, 'fr', 'name', 'Bureau de CoopƩration Interuniversitaire'),
(17885, 15376, 'en', 'name', 'WISPALS Library Consortium'),
(17886, 15377, 'no_lang_code', 'name', 'Crowell & Moring (United States)'),
(17887, 15378, 'no_lang_code', 'name', 'Wolters Kluwer (Netherlands)'),
(17888, 15379, 'en', 'name', 'CSIRO Publishing'),
(17889, 15380, 'en', 'name', 'Culver Stockton College'),
(17890, 15381, 'en', 'name', 'Warriors on Wheels of Metropolitan Detroit'),
(17891, 15382, 'no_lang_code', 'name', 'World Scientific (Singapore)'),
(17892, 15383, 'en', 'name', 'Wright Memorial Public Library'),
(17893, 15384, 'en', 'name', 'Valley Medical Center Foundation'),
(17894, 15385, 'en', 'name', 'Washington State Chinese Cancer Network Association'),
(17895, 15386, 'en', 'name', 'Protestant Reformed Churches in America'),
(17896, 15387, 'no_lang_code', 'name', 'Amos Media (United States)'),
(17897, 15388, 'no_lang_code', 'name', 'Aquamarine Power (United Kingdom)'),
(17898, 15389, 'no_lang_code', 'name', 'Actalia (France)'),
(17899, 15390, 'no_lang_code', 'name', 'BioAssay Systems (United States)'),
(17900, 15391, 'no_lang_code', 'name', 'BioAssessments (United States)'),
(17901, 15392, 'no_lang_code', 'name', 'BioAtlantis (Ireland)'),
(17902, 15393, 'no_lang_code', 'name', 'BioBullets (United Kingdom)'),
(17903, 15394, 'no_lang_code', 'name', 'Biobyte Solutions (Germany)'),
(17904, 15395, 'no_lang_code', 'name', 'Aitek (Italy)'),
(17905, 15396, 'no_lang_code', 'name', 'Lallemand (United Kingdom)'),
(17906, 15397, 'no_lang_code', 'name', 'Aixtooling (Germany)'),
(17907, 15398, 'no_lang_code', 'name', 'Association of French Motorway Companies'),
(17908, 15399, 'fr', 'name', 'Traces'),
(17909, 15400, 'no_lang_code', 'name', 'Biocatalysts (United Kingdom)'),
(17910, 15401, 'en', 'name', 'Association of Village Council Presidents'),
(17911, 15402, 'no_lang_code', 'name', '2 Sisters Food Group (United Kingdom)'),
(17912, 15403, 'no_lang_code', 'name', '2.-0 LCA Consultants (Denmark)'),
(17913, 15404, 'en', 'name', 'Jefferson Parish District Attorney'),
(17914, 15405, 'it', 'name', 'Associazione Festival della Scienz'),
(17915, 15406, 'no_lang_code', 'name', 'Biochemtex (Italy)'),
(17916, 15407, 'no_lang_code', 'name', 'Friuli Innovazione (Italy)'),
(17917, 15408, 'it', 'name', '2B'),
(17918, 15409, 'no_lang_code', 'name', '2i Industrial Informatics (Germany)'),
(17919, 15410, 'it', 'name', 'AIAS Bologna'),
(17920, 15411, 'it', 'name', 'Associazione Italiana Prove non Distruttive'),
(17921, 15412, 'no_lang_code', 'name', 'Aquasium (United Kingdom)'),
(17922, 15413, 'no_lang_code', 'name', '3M (United Kingdom)'),
(17923, 15414, 'no_lang_code', 'name', 'Aquatest (Czechia)'),
(17924, 15415, 'it', 'name', 'Federazione Nazionale Imprese Elettroniche ed Elettrotecniche'),
(17925, 15415, 'en', 'name', 'National Federation of Electrotechnical and Electronics'),
(17926, 15416, 'no_lang_code', 'name', 'BioPredict (United States)'),
(17927, 15417, 'it', 'name', 'Associazione per l''Alta Formazione Giuridico-Economica'),
(17928, 15418, 'it', 'name', 'Associazione Regionale Allevatori della Lombardia'),
(17929, 15419, 'no_lang_code', 'name', '3C Research (United Kingdom)'),
(17930, 15420, 'no_lang_code', 'name', 'Trento RISE (Italy)'),
(17931, 15421, 'no_lang_code', 'name', '3D Glass Solutions (United States)'),
(17932, 15422, 'it', 'name', 'ASSTRA - Associazione Trasporti'),
(17933, 15423, 'no_lang_code', 'name', 'Aktive Arc (Switzerland)'),
(17934, 15424, 'no_lang_code', 'name', 'Biocrates Life Sciences (Austria)'),
(17935, 15425, 'no_lang_code', 'name', 'Human Solutions (Germany)'),
(17936, 15426, 'no_lang_code', 'name', 'Akira (France)'),
(17937, 15427, 'no_lang_code', 'name', 'Assystem (France)'),
(17938, 15428, 'no_lang_code', 'name', 'Assystem (United Kingdom)'),
(17939, 15429, 'no_lang_code', 'name', 'Astato (France)'),
(17940, 15430, 'no_lang_code', 'name', '3D Industries (United Kingdom)'),
(17941, 15431, 'no_lang_code', 'name', 'Biocrede (United States)'),
(17942, 15432, 'no_lang_code', 'name', 'Astech Electronics (United Kingdom)'),
(17943, 15433, 'no_lang_code', 'name', '3d Scanners (United Kingdom)'),
(17944, 15434, 'en', 'name', 'ASTER'),
(17945, 15434, 'fr', 'name', 'Aster, la station de vulgarisation et de loisirs scientifiques du Bas-Saint-Laurent'),
(17946, 15435, 'en', 'name', 'Astronomical Observatory'),
(17947, 15435, 'sr', 'name', 'AstronomickĆ” Observatoř Bělehrad'),
(17948, 15436, 'no_lang_code', 'name', 'Aqui-S (New Zealand)'),
(17949, 15437, 'no_lang_code', 'name', 'Regio (Estonia)'),
(17950, 15438, 'no_lang_code', 'name', '3dMD (United Kingdom)'),
(17951, 15439, 'no_lang_code', 'name', 'Sertifitseerimiskeskus'),
(17952, 15440, 'no_lang_code', 'name', 'Aswega (Estonia)'),
(17953, 15441, 'no_lang_code', 'name', 'Asymptote (United Kingdom)'),
(17954, 15442, 'no_lang_code', 'name', 'Akyüz Plastik (Turkey)'),
(17955, 15443, 'no_lang_code', 'name', 'AkzoNobel (Sweden)'),
(17956, 15444, 'no_lang_code', 'name', '3H Biomedical (Sweden)'),
(17957, 15445, 'no_lang_code', 'name', 'Aquilus Pharmaceuticals (United States)'),
(17958, 15446, 'no_lang_code', 'name', 'ALA Scientific Instruments (United States)'),
(17959, 15447, 'no_lang_code', 'name', 'AT&T (United States)'),
(17960, 15448, 'en', 'name', 'Faulkner University'),
(17961, 15449, 'no_lang_code', 'name', 'Bioengineering Technology and Systems (Italy)'),
(17962, 15450, 'no_lang_code', 'name', '3S Photonics (France)'),
(17963, 15451, 'no_lang_code', 'name', 'AT&T (Netherlands)'),
(17964, 15452, 'en', 'name', 'Alabama Department of Agriculture and Industries'),
(17965, 15453, 'en', 'name', 'Alamo Area Council of Governments'),
(17966, 15454, 'no_lang_code', 'name', 'Bioergonomics (United States)'),
(17967, 15455, 'no_lang_code', 'name', '3T RPD (United Kingdom)'),
(17968, 15456, 'en', 'name', 'Arab Center for the Studies of Arid Zones and Dry Lands'),
(17969, 15457, 'en', 'name', 'Advanced Threat Analysis'),
(17970, 15458, 'no_lang_code', 'name', '01 Pliroforiki (Greece)'),
(17971, 15459, 'no_lang_code', 'name', 'BioFluidix (Germany)'),
(17972, 15460, 'no_lang_code', 'name', 'ATARD Defense and Aerospace Industry'),
(17973, 15461, 'sl', 'name', 'Agencija za Radioaktivne Odpadke'),
(17974, 15462, 'no_lang_code', 'name', '451 Research (United Kingdom)'),
(17975, 15463, 'no_lang_code', 'name', 'Biogas Fuel Cell (Spain)'),
(17976, 15464, 'en', 'name', 'Alaska Marine Safety Education Association'),
(17977, 15465, 'no_lang_code', 'name', 'enablingMNT (Germany)'),
(17978, 15466, 'en', 'name', 'Alaska Network on Domestic Violence and Sexual Assault'),
(17979, 15467, 'fr', 'name', 'ATECA - Applications Technologie AvancƩe'),
(17980, 15468, 'no_lang_code', 'name', 'Aratome (United States)'),
(17981, 15469, 'no_lang_code', 'name', 'PTC (France)'),
(17982, 15470, 'no_lang_code', 'name', 'Aratos Technologies (Greece)'),
(17983, 15470, 'el', 'name', 'Ī†Ī”Ī‘Ī¤ĪŸĪ£ Ī¤Ī•Ī§ĪĪŸĪ›ĪŸĪ“ĪŠĪ•Ī£'),
(17984, 15471, 'no_lang_code', 'name', 'Ateknea Solutions (Malta)'),
(17985, 15472, 'no_lang_code', 'name', 'AraVasc (United States)'),
(17986, 15473, 'en', 'name', 'Alaska Department of Education and Early Development'),
(17987, 15474, 'en', 'name', 'Alaska Youth and Family Network'),
(17988, 15475, 'no_lang_code', 'name', 'Biographics (United States)'),
(17989, 15476, 'en', 'name', 'Athens Chamber of Commerce and Industry'),
(17990, 15477, 'no_lang_code', 'name', 'Albany Molecular Research (United Kingdom)'),
(17991, 15478, 'en', 'name', 'Athens Medical Center'),
(17992, 15478, 'el', 'name', 'Ī™Ī±Ļ„ĻĪ¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(17993, 15479, 'de', 'name', 'Arbeitsgemeinschaft Sozialwissenschaftlicher Institute'),
(17994, 15480, 'en', 'name', 'Athens Technical College'),
(17995, 15481, 'no_lang_code', 'name', 'Albasolar (Spain)'),
(17996, 15482, 'no_lang_code', 'name', 'Atlantec Enterprise Solutions (Germany)'),
(17997, 15483, 'en', 'name', 'BioIndustry Association'),
(17998, 15484, 'no_lang_code', 'name', 'Atlantic Industries (Canada)'),
(17999, 15485, 'no_lang_code', 'name', 'nLIGHT (United States)'),
(18000, 15486, 'no_lang_code', 'name', 'BioInvent (Sweden)'),
(18001, 15487, 'no_lang_code', 'name', '5M (Czechia)'),
(18002, 15488, 'en', 'name', 'Atlantic Union College'),
(18003, 15489, 'no_lang_code', 'name', 'BioInVision (United States)'),
(18004, 15490, 'no_lang_code', 'name', 'Atlantis Consulting (Greece)'),
(18005, 15491, 'no_lang_code', 'name', '77 Elektronika (Hungary)'),
(18006, 15492, 'no_lang_code', 'name', 'Aalborg Portland (Denmark)'),
(18007, 15493, 'no_lang_code', 'name', 'Atlas Biolabs (Germany)'),
(18008, 15494, 'no_lang_code', 'name', 'Biolitec (Germany)'),
(18009, 15495, 'en', 'name', 'Atmosphere Systems and Services'),
(18010, 15496, 'no_lang_code', 'name', 'Biolog Life Science Institute'),
(18011, 15497, 'no_lang_code', 'name', 'VOCK Maschinen- und Stahlbau (Germany)'),
(18012, 15498, 'no_lang_code', 'name', 'A E Solutions (United Kingdom)'),
(18013, 15499, 'no_lang_code', 'name', 'AJ Plastic Components (Ireland)'),
(18014, 15500, 'no_lang_code', 'name', 'Atomising Systems (United Kingdom)'),
(18015, 15501, 'en', 'name', 'Canadian Women''s Health Network'),
(18016, 15501, 'fr', 'name', 'RƩseau Canadien pour la SantƩ des Femmes'),
(18017, 15502, 'no_lang_code', 'name', 'ATON-HT (Poland)'),
(18018, 15503, 'no_lang_code', 'name', 'Arccore (Sweden)'),
(18019, 15504, 'no_lang_code', 'name', 'Atos (Turkey)'),
(18020, 15505, 'no_lang_code', 'name', 'ADIRA (Portugal)'),
(18021, 15506, 'no_lang_code', 'name', 'Atos (Italy)'),
(18022, 15507, 'no_lang_code', 'name', 'Archeometra (Italy)'),
(18023, 15508, 'no_lang_code', 'name', 'Atout Vent (France)'),
(18024, 15509, 'fr', 'name', 'Alcimed'),
(18025, 15510, 'no_lang_code', 'name', 'Atoutveille (France)'),
(18026, 15511, 'no_lang_code', 'name', 'A. Brito (Portugal)'),
(18027, 15512, 'no_lang_code', 'name', 'Alcoa (United Kingdom)'),
(18028, 15513, 'en', 'name', 'A. N. Nesmeyanov Institute of Organoelement Compounds'),
(18029, 15513, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š¾Š¾Ń€Š³Š°Š½ŠøŃ‡ŠµŃŠŗŠøŃ… соеГинений им. А.Š.ŠŠµŃŠ¼ŠµŃŠ½Š¾Š²Š° Российской акаГемии наук'),
(18030, 15514, 'en', 'name', 'Alcohol Drug Mental Health Board of Franklin County'),
(18031, 15515, 'en', 'name', 'Minerva Educational Foundation'),
(18032, 15516, 'en', 'name', 'A.P. Karpinsky Russian Geological Research Institute'),
(18033, 15516, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. А.П. ŠšŠ°Ń€ŠæŠøŠ½ŃŠŗŠ¾Š³Š¾'),
(18034, 15517, 'no_lang_code', 'name', 'A.P.E. Research (Italy)'),
(18035, 15518, 'no_lang_code', 'name', 'Atrium Innovations (Canada)'),
(18036, 15519, 'no_lang_code', 'name', 'NORESCO (United States)'),
(18037, 15520, 'no_lang_code', 'name', 'Biolytix (Switzerland)'),
(18038, 15521, 'en', 'name', 'Architectural Research Centers Consortium'),
(18039, 15522, 'no_lang_code', 'name', 'ATRP Solutions (United States)'),
(18040, 15523, 'no_lang_code', 'name', 'DSVM Group (Denmark)'),
(18041, 15524, 'no_lang_code', 'name', 'A.S.T. Group (Germany)'),
(18042, 15524, 'de', 'name', 'Angewandte System Technik'),
(18043, 15525, 'no_lang_code', 'name', 'Attagene'),
(18044, 15526, 'no_lang_code', 'name', 'ALcontrol Laboratories'),
(18045, 15527, 'en', 'name', 'Archmere Academy'),
(18046, 15528, 'no_lang_code', 'name', 'Arcola Energy (United Kingdom)'),
(18047, 15529, 'no_lang_code', 'name', 'ƅAC Microtec (Sweden)'),
(18048, 15530, 'no_lang_code', 'name', 'Alcyomics (United Kingdom)'),
(18049, 15531, 'en', 'name', 'United States Arctic Research Commission'),
(18050, 15532, 'no_lang_code', 'name', 'Aalterpaint (Belgium)'),
(18051, 15533, 'en', 'name', 'Samuel Simmonds Memorial Hospital'),
(18052, 15534, 'en', 'name', 'Aldebaran Marine Research and Broadcast'),
(18053, 15535, 'no_lang_code', 'name', 'AB Agri'),
(18054, 15536, 'no_lang_code', 'name', 'Ardaco (Slovakia)'),
(18055, 15537, 'en', 'name', 'THETA Uganda'),
(18056, 15538, 'no_lang_code', 'name', 'BioMarck Pharmaceuticals (United States)'),
(18057, 15539, 'no_lang_code', 'name', 'Attocube Systems (Germany)'),
(18058, 15540, 'en', 'name', 'Danish Academy of Technical Sciences'),
(18059, 15541, 'no_lang_code', 'name', 'Ab.Acus (Italy)'),
(18060, 15542, 'no_lang_code', 'name', 'Biomay (Austria)'),
(18061, 15543, 'no_lang_code', 'name', 'Abamotor Energia (Spain)'),
(18062, 15544, 'no_lang_code', 'name', 'Audiofile (United States)'),
(18063, 15545, 'no_lang_code', 'name', 'Ingram Content Group (United States)'),
(18064, 15546, 'no_lang_code', 'name', 'ABB (Norway)'),
(18065, 15547, 'no_lang_code', 'name', 'ABB (Canada)'),
(18066, 15548, 'en', 'name', 'Alexandria Department of Community and Human Services'),
(18067, 15549, 'no_lang_code', 'name', 'Alexza Pharmaceuticals (United States)'),
(18068, 15550, 'no_lang_code', 'name', 'EasyCGI (United States)'),
(18069, 15551, 'en', 'name', 'North Florida Area Agency on Aging'),
(18070, 15552, 'no_lang_code', 'name', 'Alfa Imaging (Spain)'),
(18071, 15553, 'no_lang_code', 'name', 'Costruzioni Apparecchiature Elettroniche Nucleari (Italy)'),
(18072, 15554, 'no_lang_code', 'name', 'Alfa Laval (Sweden)'),
(18073, 15555, 'no_lang_code', 'name', 'ABB (Finland)'),
(18074, 15556, 'no_lang_code', 'name', 'Aurora Optics (United States)'),
(18075, 15557, 'en', 'name', 'Biomedical Engineering Society'),
(18076, 15558, 'en', 'name', 'Abbotsford Veterinary Clinic'),
(18077, 15559, 'no_lang_code', 'name', 'Biomedical Enterprises (United States)'),
(18078, 15560, 'no_lang_code', 'name', 'Huron Technologies (Canada)'),
(18079, 15561, 'en', 'name', 'Aurora College'),
(18080, 15562, 'en', 'name', 'Alfred Mann Foundation'),
(18081, 15563, 'no_lang_code', 'name', 'AbilityNet (United Kingdom)'),
(18082, 15564, 'no_lang_code', 'name', 'Aurrenak (Spain)'),
(18083, 15565, 'no_lang_code', 'name', 'Algade (France)'),
(18084, 15566, 'no_lang_code', 'name', 'ABIS (Poland)'),
(18085, 15567, 'en', 'name', 'Austin Independent School District'),
(18086, 15567, 'es', 'name', 'Distrito Escolar Independiente de Austin'),
(18087, 15568, 'no_lang_code', 'name', 'AlgaPlus (Portugal)'),
(18088, 15569, 'en', 'name', 'Austin Travis County Integral Care'),
(18089, 15570, 'no_lang_code', 'name', 'ABM SOLID (Poland)'),
(18090, 15571, 'no_lang_code', 'name', 'Abqmr (United States)'),
(18091, 15572, 'no_lang_code', 'name', 'ARES Energiesysteme (Germany)'),
(18092, 15573, 'fr', 'name', 'AlgoƩ'),
(18093, 15574, 'en', 'name', 'National Stem Cell Foundation of Australia'),
(18094, 15575, 'no_lang_code', 'name', 'Biomod (Canada)'),
(18095, 15576, 'no_lang_code', 'name', 'On Telecoms (Greece)'),
(18096, 15577, 'no_lang_code', 'name', 'AretƩ Associates (United States)'),
(18097, 15578, 'no_lang_code', 'name', 'Absynth Biologics (United Kingdom)'),
(18098, 15579, 'en', 'name', 'Austrian Foundry Research Institute'),
(18099, 15580, 'en', 'name', 'Austrian Research Institute for Artificial Intelligence'),
(18100, 15580, 'de', 'name', 'Ɩsterreichisches Forschungsinstitut für Artificial Intelligence'),
(18101, 15581, 'no_lang_code', 'name', 'Biomol Informatics (Spain)'),
(18102, 15582, 'en', 'name', 'Autism Society of America'),
(18103, 15583, 'no_lang_code', 'name', 'Triple Point Technology (Canada)'),
(18104, 15584, 'no_lang_code', 'name', 'AbTech (United States)'),
(18105, 15585, 'no_lang_code', 'name', 'Biomolecular Research Genomics (Italy)'),
(18106, 15586, 'no_lang_code', 'name', 'Orchid (Switzerland)'),
(18107, 15587, 'no_lang_code', 'name', 'Abzyme Therapeutics (United States)'),
(18108, 15588, 'no_lang_code', 'name', 'BioNanoNet'),
(18109, 15589, 'no_lang_code', 'name', 'Bionex Pharmaceuticals (United States)'),
(18110, 15590, 'no_lang_code', 'name', 'AliƩnorEU'),
(18111, 15591, 'no_lang_code', 'name', 'Rusal (Ireland)'),
(18112, 15591, 'ga', 'name', 'РУДАЛ'),
(18113, 15592, 'no_lang_code', 'name', 'TRW Automotive (France)'),
(18114, 15593, 'no_lang_code', 'name', 'Autoflug (Germany)'),
(18115, 15594, 'no_lang_code', 'name', 'Argans (United Kingdom)'),
(18116, 15595, 'no_lang_code', 'name', 'BioPhage Pharma (Canada)'),
(18117, 15596, 'no_lang_code', 'name', 'Alitalia (Italy)'),
(18118, 15597, 'no_lang_code', 'name', 'Arge Vegetationsƶkologie und Landschaftsplanung'),
(18119, 15598, 'no_lang_code', 'name', 'BioPharm (United Kingdom)'),
(18120, 15599, 'no_lang_code', 'name', 'Argela (Turkey)'),
(18121, 15600, 'no_lang_code', 'name', 'Biopharma Technology (United Kingdom)'),
(18122, 15601, 'no_lang_code', 'name', 'Applied Logic Laboratory (Hungary)'),
(18123, 15602, 'no_lang_code', 'name', 'Argo (Greece)'),
(18124, 15603, 'no_lang_code', 'name', 'Biopolis (Spain)'),
(18125, 15604, 'en', 'name', 'Academy for Healthcare Improvement'),
(18126, 15605, 'no_lang_code', 'name', 'Automated Cells & Equipment (United States)'),
(18127, 15606, 'en', 'name', 'Academy of Entrepreneurship'),
(18128, 15607, 'en', 'name', 'College of Western Idaho'),
(18129, 15608, 'en', 'name', 'All Russian Research Institute of Hydrometeorological information World Data Center'),
(18130, 15608, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ России гиГрометеорологической информации ŠœŠøŃ€Š¾Š²Š¾Š¹ центр Ганных'),
(18131, 15609, 'no_lang_code', 'name', 'Argus International (United States)'),
(18132, 15610, 'en', 'name', 'Allegheny County Department of Human Services'),
(18133, 15611, 'no_lang_code', 'name', 'ACAL Energy (United Kingdom)'),
(18134, 15612, 'de', 'name', 'Allgemeiner Deutscher Automobil Club'),
(18135, 15612, 'en', 'name', 'General German Automobile Club'),
(18136, 15613, 'no_lang_code', 'name', 'Biopredic (France)'),
(18137, 15614, 'no_lang_code', 'name', 'ARIA Technologies'),
(18138, 15615, 'en', 'name', 'Autonomous Undersea Systems Institute'),
(18139, 15616, 'en', 'name', 'Alliance for Safe Kids'),
(18140, 15617, 'no_lang_code', 'name', 'Bioprojet (France)'),
(18141, 15618, 'it', 'name', 'AutoritĆ  di bacino dei fiumi Isonzo, Tagliamento, Livenza, Piave, Brenta-Bacchiglione'),
(18142, 15619, 'no_lang_code', 'name', 'Aries Alliance (France)'),
(18143, 15620, 'no_lang_code', 'name', 'Arisan Therapeutics (United States)'),
(18144, 15621, 'no_lang_code', 'name', 'Arisaph Pharmaceuticals (United States)'),
(18145, 15622, 'no_lang_code', 'name', 'All4tec (France)'),
(18146, 15623, 'no_lang_code', 'name', 'Bioptix (United States)'),
(18147, 15624, 'no_lang_code', 'name', 'Biopure (United States)'),
(18148, 15625, 'no_lang_code', 'name', 'AvanSci Bio (United States)'),
(18149, 15626, 'no_lang_code', 'name', 'Avantes (Netherlands)'),
(18150, 15627, 'en', 'name', 'Accelerace'),
(18151, 15628, 'no_lang_code', 'name', 'AvantiCell Science (United Kingdom)'),
(18152, 15629, 'en', 'name', 'Arise'),
(18153, 15630, 'en', 'name', 'Allies with Families'),
(18154, 15631, 'no_lang_code', 'name', 'Alligator Bioscience (Sweden)'),
(18155, 15632, 'no_lang_code', 'name', 'Spectrum Pharmaceuticals (United States)'),
(18156, 15633, 'en', 'name', 'Arizona Youth Partnership'),
(18157, 15634, 'no_lang_code', 'name', 'Avaxia Biologics (United States)'),
(18158, 15635, 'no_lang_code', 'name', 'Arjowiggins (France)'),
(18159, 15636, 'no_lang_code', 'name', 'Avecom (Belgium)'),
(18160, 15637, 'no_lang_code', 'name', 'Intellijoint Surgical (Canada)'),
(18161, 15638, 'no_lang_code', 'name', 'Acos Group (Germany)'),
(18162, 15639, 'no_lang_code', 'name', 'Lehnsgaard (Denmark)'),
(18163, 15640, 'no_lang_code', 'name', 'Accessible Designs (United States)'),
(18164, 15641, 'no_lang_code', 'name', 'Averbis (Germany)'),
(18165, 15642, 'en', 'name', 'Averett University'),
(18166, 15643, 'no_lang_code', 'name', 'Acciai Speciali Terni (Italy)'),
(18167, 15644, 'no_lang_code', 'name', 'Arjowiggins (United Kingdom)'),
(18168, 15645, 'no_lang_code', 'name', 'ProterixBio (United States)'),
(18169, 15646, 'no_lang_code', 'name', 'BioSciCon (United States)'),
(18170, 15647, 'en', 'name', 'Arkansas Science & Technology'),
(18171, 15648, 'en', 'name', 'Almaty University of Power Engineering and Telecommunications'),
(18172, 15648, 'ru', 'name', 'Алматинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠø Šø ŃŠ²ŃŠ·Šø'),
(18173, 15648, 'kk', 'name', 'Алматы ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠ° және байланыс ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(18174, 15649, 'en', 'name', 'Arkansas State Hospital'),
(18175, 15650, 'no_lang_code', 'name', 'Almex (Netherlands)'),
(18176, 15651, 'no_lang_code', 'name', 'AccSys Technology (United States)'),
(18177, 15652, 'no_lang_code', 'name', 'Alpes Lasers (Switzerland)'),
(18178, 15653, 'no_lang_code', 'name', 'Biosensia (Ireland)'),
(18179, 15654, 'no_lang_code', 'name', 'BioSensics (United States)'),
(18180, 15655, 'no_lang_code', 'name', 'Biosensor Applications (Sweden)'),
(18181, 15656, 'no_lang_code', 'name', 'AccuStrata (United States)'),
(18182, 15657, 'en', 'name', 'Academic and Research Network of Slovenia'),
(18183, 15658, 'no_lang_code', 'name', 'Alpex Technologies'),
(18184, 15659, 'no_lang_code', 'name', 'Automobile Association (United Kingdom)'),
(18185, 15660, 'no_lang_code', 'name', 'Outokumpu (Sweden)'),
(18186, 15661, 'no_lang_code', 'name', 'Arri (Germany)'),
(18187, 15662, 'no_lang_code', 'name', 'Ausa (Spain)'),
(18188, 15663, 'en', 'name', 'Alpha Consulting Services'),
(18189, 15664, 'no_lang_code', 'name', 'Alpha Marine (Greece)'),
(18190, 15665, 'no_lang_code', 'name', 'Biostat (United States)'),
(18191, 15666, 'no_lang_code', 'name', 'Haemonetics (United States)'),
(18192, 15667, 'es', 'name', 'Autoridad Portuaria de Santander'),
(18193, 15667, 'en', 'name', 'Santander Port Authority'),
(18194, 15668, 'no_lang_code', 'name', 'ARServices (United States)'),
(18195, 15669, 'en', 'name', 'Valencia Port'),
(18196, 15670, 'no_lang_code', 'name', 'AlphaLabs (France)'),
(18197, 15671, 'no_lang_code', 'name', 'AlphaMed (United States)'),
(18198, 15672, 'no_lang_code', 'name', 'Aceites Malagon (Spain)'),
(18199, 15673, 'ca', 'name', 'Reial Automòbil Club de Catalunya'),
(18200, 15674, 'no_lang_code', 'name', 'AvidCare (United States)'),
(18201, 15675, 'no_lang_code', 'name', 'Acelot (United States)'),
(18202, 15676, 'no_lang_code', 'name', 'Avidity (United States)'),
(18203, 15677, 'no_lang_code', 'name', 'Avilo Software (Canada)'),
(18204, 15678, 'no_lang_code', 'name', 'Aviointeriors (Italy)'),
(18205, 15679, 'no_lang_code', 'name', 'BioSystem (Germany)'),
(18206, 15680, 'no_lang_code', 'name', 'Alpha Therm (Germany)'),
(18207, 15681, 'no_lang_code', 'name', 'Art of Technology (Switzerland)'),
(18208, 15682, 'no_lang_code', 'name', 'Artaic (United States)'),
(18209, 15683, 'no_lang_code', 'name', 'Avitronics Research (Greece)'),
(18210, 15684, 'no_lang_code', 'name', 'Aviv Biomedical (United States)'),
(18211, 15685, 'no_lang_code', 'name', 'Henkel (Netherlands)'),
(18212, 15686, 'no_lang_code', 'name', 'Alsitek (United Kingdom)'),
(18213, 15687, 'no_lang_code', 'name', 'BioTechnica (United States)'),
(18214, 15688, 'en', 'name', 'Fairfield Hospital'),
(18215, 15689, 'no_lang_code', 'name', 'ACIC (Belgium)'),
(18216, 15690, 'no_lang_code', 'name', 'Avonwood (United Kingdom)'),
(18217, 15691, 'no_lang_code', 'name', 'Zodiac Aerospace (United States)'),
(18218, 15692, 'no_lang_code', 'name', 'Awaiba (Portugal)'),
(18219, 15693, 'no_lang_code', 'name', 'Advance Concepts for Interactive Technology (Germany)'),
(18220, 15694, 'no_lang_code', 'name', 'Awite Bioenergie (Germany)'),
(18221, 15695, 'no_lang_code', 'name', 'Axerion Therapeutics (United States)'),
(18222, 15696, 'no_lang_code', 'name', 'Biothermica (Canada)'),
(18223, 15697, 'no_lang_code', 'name', 'Aciturri (Spain)'),
(18224, 15698, 'no_lang_code', 'name', 'BIOTECmarin (Germany)'),
(18225, 15699, 'no_lang_code', 'name', 'Isomerase Therapeutics (United Kingdom)'),
(18226, 15700, 'no_lang_code', 'name', 'Acktar (Israel)'),
(18227, 15701, 'no_lang_code', 'name', 'ACMA Social Marketing'),
(18228, 15702, 'no_lang_code', 'name', 'Axion Biosystems (United States)'),
(18229, 15703, 'no_lang_code', 'name', 'Acme Express'),
(18230, 15704, 'no_lang_code', 'name', 'Altair Engineering (France)'),
(18231, 15705, 'no_lang_code', 'name', 'Axon Automotive (United Kingdom)'),
(18232, 15706, 'no_lang_code', 'name', 'Altairnano (United States)'),
(18233, 15707, 'no_lang_code', 'name', 'Artelys (France)'),
(18234, 15708, 'no_lang_code', 'name', 'Axon (United States)'),
(18235, 15709, 'no_lang_code', 'name', 'BioTransformations (United Kingdom)'),
(18236, 15710, 'no_lang_code', 'name', 'Nitto (United States)'),
(18237, 15711, 'no_lang_code', 'name', 'Acpharis'),
(18238, 15712, 'no_lang_code', 'name', 'Artemis Intelligent Power (United Kingdom)'),
(18239, 15713, 'no_lang_code', 'name', 'Altec Software (Greece)'),
(18240, 15714, 'no_lang_code', 'name', 'AcQ Inducom'),
(18241, 15715, 'no_lang_code', 'name', 'Artes Biotechnology (Germany)'),
(18242, 15716, 'no_lang_code', 'name', 'AMREP (United States)'),
(18243, 15717, 'no_lang_code', 'name', 'AcrossLimits'),
(18244, 15718, 'no_lang_code', 'name', 'Axsym (United Kingdom)'),
(18245, 15719, 'no_lang_code', 'name', 'ACS Biomarker (Netherlands)'),
(18246, 15720, 'no_lang_code', 'name', 'Altec (United States)'),
(18247, 15721, 'en', 'name', 'Americas Commercial Transportation Research'),
(18248, 15722, 'no_lang_code', 'name', 'Altera (United Kingdom)'),
(18249, 15723, 'no_lang_code', 'name', 'Biotronics 3D (United Kingdom)'),
(18250, 15724, 'no_lang_code', 'name', 'Alteryx (United Kingdom)'),
(18251, 15725, 'no_lang_code', 'name', 'BioTronics (United States)'),
(18252, 15726, 'no_lang_code', 'name', 'Ayanda Biosystems (Switzerland)'),
(18253, 15727, 'no_lang_code', 'name', 'Alterra Power (Canada)'),
(18254, 15728, 'no_lang_code', 'name', 'BioVidria (United States)'),
(18255, 15729, 'no_lang_code', 'name', 'Altoris (United States)'),
(18256, 15730, 'no_lang_code', 'name', 'Artibal (Spain)'),
(18257, 15731, 'no_lang_code', 'name', 'Actinix (United States)'),
(18258, 15732, 'no_lang_code', 'name', 'Aylesford Newsprint (United Kingdom)'),
(18259, 15733, 'no_lang_code', 'name', 'Artificial Cell Technologies (United States)'),
(18260, 15734, 'no_lang_code', 'name', 'Ayogo (Canada)'),
(18261, 15735, 'no_lang_code', 'name', 'Activation Laboratories'),
(18262, 15736, 'no_lang_code', 'name', 'Altran (United Kingdom)'),
(18263, 15737, 'no_lang_code', 'name', 'Regenerys (United Kingdom)'),
(18264, 15738, 'no_lang_code', 'name', 'Lundin Mining (Ireland)'),
(18265, 15739, 'no_lang_code', 'name', 'SavvyDox (Canada)'),
(18266, 15740, 'no_lang_code', 'name', 'Altus Technologies (United States)'),
(18267, 15741, 'no_lang_code', 'name', 'Artificial Intelligence in Medicine (Canada)'),
(18268, 15742, 'no_lang_code', 'name', 'Acutech (Greece)'),
(18269, 15743, 'en', 'name', 'Birmingham Bloomfield Community Coalition'),
(18270, 15744, 'en', 'name', 'Library of Birmingham'),
(18271, 15745, 'no_lang_code', 'name', 'Active Space Technologies (Germany)'),
(18272, 15746, 'en', 'name', 'Birmingham Museum and Art Gallery'),
(18273, 15747, 'en', 'name', 'Birmingham Repertory Theatre'),
(18274, 15748, 'en', 'name', 'Birmingham Science City'),
(18275, 15749, 'cs', 'name', 'Automatizace železničnĆ­ dopravy Praha'),
(18276, 15749, 'no_lang_code', 'name', 'AŽD Praha (Czechia)'),
(18277, 15750, 'no_lang_code', 'name', 'BISDN (Germany)'),
(18278, 15751, 'no_lang_code', 'name', 'Active Spectrum (United States)'),
(18279, 15752, 'no_lang_code', 'name', 'Arctur (Slovenia)'),
(18280, 15753, 'en', 'name', 'Azerbaijan Research Educational Network Association'),
(18281, 15754, 'no_lang_code', 'name', 'Arttic'),
(18282, 15755, 'no_lang_code', 'name', 'Active Technologies (Italy)'),
(18283, 15756, 'no_lang_code', 'name', 'Henry Schein (United States)'),
(18284, 15757, 'no_lang_code', 'name', 'Aluminium Surface Engineering (United Kingdom)'),
(18285, 15758, 'no_lang_code', 'name', 'Kyorin (United States)'),
(18286, 15759, 'no_lang_code', 'name', 'Aruna Biomedical (United States)'),
(18287, 15760, 'en', 'name', 'Aluminium Valley'),
(18288, 15760, 'fr', 'name', 'SociƩtƩ de la VallƩe de l''Aluminium'),
(18289, 15761, 'no_lang_code', 'name', 'Azienda del Consorzio Trasporti Veneziano (Italy)'),
(18290, 15762, 'no_lang_code', 'name', 'Arvia Technology (United Kingdom)'),
(18291, 15763, 'no_lang_code', 'name', 'Bisiach & Carru (Italy)'),
(18292, 15764, 'no_lang_code', 'name', 'Iren (Italy)'),
(18293, 15765, 'en', 'name', 'Asatrem'),
(18294, 15766, 'no_lang_code', 'name', 'Azienda Industriali Municipali di Vicenza (Italy)'),
(18295, 15767, 'no_lang_code', 'name', 'AcXys Technologies (France)'),
(18296, 15768, 'no_lang_code', 'name', 'Azienda MobilitĆ  e Trasporti'),
(18297, 15769, 'no_lang_code', 'name', 'Bitecic (United Kingdom)'),
(18298, 15770, 'no_lang_code', 'name', 'Immucor (United States)'),
(18299, 15771, 'no_lang_code', 'name', 'AdaCore (France)'),
(18300, 15772, 'no_lang_code', 'name', 'ASCOMP (Switzerland)'),
(18301, 15773, 'no_lang_code', 'name', 'Ascora (Germany)'),
(18302, 15774, 'no_lang_code', 'name', 'Advanced Simulation & Design (Germany)'),
(18303, 15775, 'no_lang_code', 'name', 'Bitgear (Serbia)'),
(18304, 15776, 'no_lang_code', 'name', 'as2con (Croatia)'),
(18305, 15777, 'no_lang_code', 'name', 'AM Testing (Italy)'),
(18306, 15778, 'no_lang_code', 'name', 'Aztec Systems (United States)'),
(18307, 15779, 'no_lang_code', 'name', 'Adaptronica (Poland)'),
(18308, 15780, 'no_lang_code', 'name', 'Adarza BioSystems (United States)'),
(18309, 15781, 'no_lang_code', 'name', 'Walmart (United Kingdom)'),
(18310, 15782, 'no_lang_code', 'name', 'Amanova (Slovenia)'),
(18311, 15783, 'no_lang_code', 'name', 'Black & Veatch (United Kingdom)'),
(18312, 15784, 'no_lang_code', 'name', 'Amantys (United Kingdom)'),
(18313, 15785, 'no_lang_code', 'name', 'Babcock Power (United Kingdom)'),
(18314, 15786, 'no_lang_code', 'name', 'Aselsan (Turkey)'),
(18315, 15786, 'tr', 'name', 'Askeri Elektronik Sanayi'),
(18316, 15786, 'en', 'name', 'Military Electronic Industries'),
(18317, 15787, 'no_lang_code', 'name', 'Babraham Bioscience Technologies (United Kingdom)'),
(18318, 15788, 'no_lang_code', 'name', 'Bac2 (United Kingdom)'),
(18319, 15789, 'no_lang_code', 'name', 'Amar International (United States)'),
(18320, 15790, 'de', 'name', 'Verband kommunaler Unternehmen'),
(18321, 15791, 'en', 'name', 'Black Sea NGO Network'),
(18322, 15792, 'no_lang_code', 'name', 'Ashton & Moore (United Kingdom)'),
(18323, 15793, 'no_lang_code', 'name', 'Ashwoods Automotive (United Kingdom)'),
(18324, 15794, 'no_lang_code', 'name', 'Blastech (United Kingdom)'),
(18325, 15795, 'en', 'name', 'Asia Foundation'),
(18326, 15796, 'en', 'name', 'Asia Society'),
(18327, 15797, 'en', 'name', 'Asian American Drug Abuse Program'),
(18328, 15798, 'no_lang_code', 'name', 'Amber Waves Software (United States)'),
(18329, 15799, 'en', 'name', 'Asian Community Mental Health Services'),
(18330, 15800, 'no_lang_code', 'name', 'Blatraden (Sweden)'),
(18331, 15801, 'en', 'name', 'Asian Health Coalition'),
(18332, 15802, 'en', 'name', 'Blaufuss Multimedia'),
(18333, 15803, 'no_lang_code', 'name', 'RealNetworks (Canada)'),
(18334, 15804, 'no_lang_code', 'name', 'Ambient Systems (Netherlands)'),
(18335, 15805, 'no_lang_code', 'name', 'Babcock & Wilcox (Spain)'),
(18336, 15806, 'no_lang_code', 'name', 'Bactest (United Kingdom)'),
(18337, 15807, 'no_lang_code', 'name', 'Ademtech (France)'),
(18338, 15808, 'no_lang_code', 'name', 'Ambiental Technical Solutions (United Kingdom)'),
(18339, 15809, 'no_lang_code', 'name', 'Blendics (United States)'),
(18340, 15810, 'no_lang_code', 'name', 'Bactiguard (Sweden)'),
(18341, 15811, 'ca', 'name', 'Badalona Serveis Assistencials'),
(18342, 15812, 'no_lang_code', 'name', 'Amcor (Switzerland)'),
(18343, 15813, 'no_lang_code', 'name', 'Blinq Network (Canada)'),
(18344, 15814, 'it', 'name', 'Azienda Sanitaria Locale Roma 3'),
(18345, 15815, 'en', 'name', 'Pacific Clinics'),
(18346, 15816, 'it', 'name', 'Azienda UnitĆ  Sanitaria Locale 11 di Empoli'),
(18347, 15817, 'no_lang_code', 'name', 'Baebies (United States)'),
(18348, 15818, 'en', 'name', 'Asian Pacific Partners for Empowerment, Advocacy and Leadership'),
(18349, 15819, 'en', 'name', 'British Academy of Film and Television Arts'),
(18350, 15820, 'en', 'name', 'Asian Technology Information Program'),
(18351, 15821, 'no_lang_code', 'name', 'Amec Foster Wheeler (Canada)'),
(18352, 15822, 'en', 'name', 'American Academy of Allergy, Asthma and Immunology'),
(18353, 15823, 'no_lang_code', 'name', 'Asius Technologies (United States)'),
(18354, 15824, 'en', 'name', 'American Association for Higher Education and Accreditation'),
(18355, 15825, 'en', 'name', 'Bakken Museum'),
(18356, 15826, 'en', 'name', 'American Alliance of Museums'),
(18357, 15827, 'en', 'name', 'American Association of State Colleges and Universities'),
(18358, 15828, 'no_lang_code', 'name', 'Blue Wave Semiconductors (United States)'),
(18359, 15829, 'no_lang_code', 'name', 'Neogen Europe (United Kingdom)'),
(18360, 15830, 'no_lang_code', 'name', 'Bluefrog Design (United Kingdom)'),
(18361, 15831, 'no_lang_code', 'name', 'Adicep Technologies (United States)'),
(18362, 15832, 'en', 'name', 'American Board of Medical Specialties'),
(18363, 15833, 'en', 'name', 'New Vista'),
(18364, 15834, 'en', 'name', 'Center and Courses of Advanced Technology on Image Analysis'),
(18365, 15834, 'es', 'name', 'Centro y Cursos de Tecnologƭa Avanzada de AnƔlisis de ImƔgenes'),
(18366, 15835, 'no_lang_code', 'name', 'BMI Association'),
(18367, 15836, 'no_lang_code', 'name', 'Advanced Integrated Technology Solutions & Services'),
(18368, 15837, 'en', 'name', 'Federal Statistical Office'),
(18369, 15837, 'de', 'name', 'Statistisches Bundesamt'),
(18370, 15838, 'en', 'name', 'American Board of Nuclear Medicine'),
(18371, 15839, 'no_lang_code', 'name', 'ACI Plastics (United States)'),
(18372, 15840, 'it', 'name', 'Azienda Ospedaliera Citta'' della Salute e della Scienza di Torino'),
(18373, 15841, 'no_lang_code', 'name', 'BMT Group (Germany)'),
(18374, 15842, 'en', 'name', 'American Crystallographic Association'),
(18375, 15843, 'pt', 'name', 'Administracao Central do Sistema de Saude'),
(18376, 15844, 'no_lang_code', 'name', 'Greenvest (Italy)'),
(18377, 15845, 'en', 'name', 'American Entomological Institute'),
(18378, 15846, 'en', 'name', 'Missouri Department of Elementary and Secondary Education'),
(18379, 15847, 'no_lang_code', 'name', 'APS Biocontrol (United Kingdom)'),
(18380, 15848, 'en', 'name', 'Prince George''s County Public Schools'),
(18381, 15849, 'no_lang_code', 'name', 'ADRIA DƩveloppement'),
(18382, 15850, 'no_lang_code', 'name', 'Balcas (United Kingdom)'),
(18383, 15851, 'en', 'name', 'Balm In Gilead'),
(18384, 15852, 'no_lang_code', 'name', 'CGI (United States)'),
(18385, 15853, 'en', 'name', 'Baltic Centre for Contemporary Art'),
(18386, 15854, 'en', 'name', 'ADS Group'),
(18387, 15855, 'en', 'name', 'Baltic Innovation Agency'),
(18388, 15856, 'en', 'name', 'Baltic Environmental Forum'),
(18389, 15856, 'lv', 'name', 'Baltijas Vides Forums'),
(18390, 15857, 'en', 'name', 'American National Standards Institute'),
(18391, 15858, 'no_lang_code', 'name', 'Adva Optical Networking (Poland)'),
(18392, 15859, 'en', 'name', 'Baltic Energy Conservation Agency'),
(18393, 15860, 'no_lang_code', 'name', 'Advance Composite Fibers (Spain)'),
(18394, 15861, 'en', 'name', 'Association for Psychological Science'),
(18395, 15862, 'no_lang_code', 'name', 'PerkinElmer (Germany)'),
(18396, 15863, 'en', 'name', 'American Research Center in Egypt'),
(18397, 15864, 'no_lang_code', 'name', 'Advanced Applications (United States)'),
(18398, 15865, 'no_lang_code', 'name', 'BodiMojo'),
(18399, 15866, 'no_lang_code', 'name', 'Bandvulc (United Kingdom)'),
(18400, 15867, 'no_lang_code', 'name', 'Bodymetrics (United Kingdom)'),
(18401, 15868, 'no_lang_code', 'name', 'Best High Pressure & Drilling Technology (Austria)'),
(18402, 15869, 'no_lang_code', 'name', 'Advanced Coatings (Belgium)'),
(18403, 15870, 'en', 'name', 'American Society of Law, Medicine and Ethics'),
(18404, 15871, 'en', 'name', 'American Sexual Health Association'),
(18405, 15872, 'en', 'name', 'Missouri Southern State University'),
(18406, 15873, 'en', 'name', 'Bangkok Metropolitan Administration'),
(18407, 15874, 'en', 'name', 'American Society for Photogrammetry and Remote Sensing'),
(18408, 15875, 'fr', 'name', 'BoƮte Ơ science'),
(18409, 15876, 'no_lang_code', 'name', 'Banpil Photonics (United States)'),
(18410, 15877, 'en', 'name', 'American Society for Virology'),
(18411, 15878, 'no_lang_code', 'name', 'BollorƩ (France)'),
(18412, 15879, 'no_lang_code', 'name', 'Advanced Defence Materials (United Kingdom)'),
(18413, 15880, 'no_lang_code', 'name', 'Aegis Rubber Engineering (United Kingdom)'),
(18414, 15881, 'no_lang_code', 'name', 'Banss (Germany)'),
(18415, 15882, 'en', 'name', 'Brookwood Baptist Health'),
(18416, 15883, 'en', 'name', 'Barber–Scotia College'),
(18417, 15884, 'es', 'name', 'Aspapel'),
(18418, 15885, 'no_lang_code', 'name', 'Barclays (United Kingdom)'),
(18419, 15886, 'no_lang_code', 'name', 'Advanced Energy Materials (United States)'),
(18420, 15887, 'no_lang_code', 'name', 'Barilla (Italy)'),
(18421, 15888, 'no_lang_code', 'name', 'Bombardier (Portugal)'),
(18422, 15889, 'no_lang_code', 'name', 'Barnard Microsystems (United Kingdom)'),
(18423, 15890, 'no_lang_code', 'name', 'Barnett Technical Services (United States)'),
(18424, 15891, 'no_lang_code', 'name', 'Colt International (Germany)'),
(18425, 15892, 'no_lang_code', 'name', 'Advent Technologies (Greece)'),
(18426, 15893, 'en', 'name', 'Bonanza High School'),
(18427, 15894, 'en', 'name', 'Barre Town Middle and Elementary School'),
(18428, 15895, 'no_lang_code', 'name', 'Barriquand (France)'),
(18429, 15896, 'en', 'name', 'Barrow Arctic Science Consortium'),
(18430, 15897, 'no_lang_code', 'name', 'Base Materials (United Kingdom)'),
(18431, 15898, 'no_lang_code', 'name', 'Base Protection (Italy)'),
(18432, 15899, 'no_lang_code', 'name', 'BASF (Switzerland)'),
(18433, 15900, 'en', 'name', 'Bath Labs'),
(18434, 15901, 'en', 'name', 'American Trauma Society'),
(18435, 15902, 'en', 'name', 'Baton Rouge Community College'),
(18436, 15903, 'es', 'name', 'Asociación Española de Fabricantes de Equipos y Componentes para Automoción'),
(18437, 15904, 'no_lang_code', 'name', 'Bord na Móna (Ireland)'),
(18438, 15905, 'en', 'name', 'American Vacuum Society'),
(18439, 15906, 'no_lang_code', 'name', 'Royal BAM Group (United Kingdom)'),
(18440, 15907, 'no_lang_code', 'name', 'AMES Technology (United States)'),
(18441, 15908, 'no_lang_code', 'name', 'Amethyst Research (United States)'),
(18442, 15909, 'no_lang_code', 'name', 'Amethyst Technologies (United States)'),
(18443, 15910, 'no_lang_code', 'name', 'Oryx International Growth Fund (Ireland)'),
(18444, 15911, 'no_lang_code', 'name', 'Advanced Laser Technology (United Kingdom)'),
(18445, 15912, 'no_lang_code', 'name', 'Angewandte Micro Messtechnik (Germany)'),
(18446, 15913, 'no_lang_code', 'name', 'Agricen (United States)'),
(18447, 15914, 'no_lang_code', 'name', 'Advanced Microwave Systems (Greece)'),
(18448, 15914, 'el', 'name', 'Ī Ī”ĪŸĪ—Ī“ĪœĪ•ĪĪ‘ ĪœĪ™ĪšĪ”ĪŸĪšĪ„ĪœĪ‘Ī¤Ī™ĪšĪ‘ Ī£Ī„Ī£Ī¤Ī—ĪœĪ‘Ī¤Ī‘ IKE'),
(18449, 15915, 'no_lang_code', 'name', 'Advanced Network and Services (United States)'),
(18450, 15916, 'no_lang_code', 'name', 'Vintage Capital Group (United States)'),
(18451, 15917, 'no_lang_code', 'name', 'Bauhaus Luftfahrt'),
(18452, 15918, 'no_lang_code', 'name', 'Amires (Czechia)'),
(18453, 15919, 'no_lang_code', 'name', 'Advanced Optics Solutions (Germany)'),
(18454, 15920, 'no_lang_code', 'name', 'Amis (Slovenia)'),
(18455, 15921, 'no_lang_code', 'name', 'Borit (Belgium)'),
(18456, 15922, 'no_lang_code', 'name', 'Bavarian Nordic (Germany)'),
(18457, 15923, 'en', 'name', 'Amistades'),
(18458, 15924, 'no_lang_code', 'name', 'Advanced Process Combinatorics (United States)'),
(18459, 15925, 'no_lang_code', 'name', 'Advirna (United States)'),
(18460, 15926, 'no_lang_code', 'name', 'Advanced Science and Automation (United States)'),
(18461, 15927, 'no_lang_code', 'name', 'Advanced Sensor Technologies (United States)'),
(18462, 15928, 'no_lang_code', 'name', 'BDR Thermea (United Kingdom)'),
(18463, 15929, 'en', 'name', 'Bay Area Tumor Institute'),
(18464, 15930, 'en', 'name', 'Bay Area Video Coalition'),
(18465, 15931, 'en', 'name', 'Bay Medical Center'),
(18466, 15932, 'it', 'name', 'Amitie'),
(18467, 15933, 'no_lang_code', 'name', 'British American Tobacco (United Kingdom)'),
(18468, 15934, 'no_lang_code', 'name', 'Amorim Cork Composites (Portugal)'),
(18469, 15935, 'no_lang_code', 'name', 'ELE Advanced Technologies (United Kingdom)'),
(18470, 15936, 'en', 'name', 'Prof. Assen Zlatarov University'),
(18471, 15937, 'en', 'name', 'Bay State Community Services'),
(18472, 15938, 'no_lang_code', 'name', 'Amplitude Technologies (France)'),
(18473, 15939, 'en', 'name', 'BayCare Health System'),
(18474, 15940, 'no_lang_code', 'name', 'AmpTec (Germany)'),
(18475, 15941, 'en', 'name', 'Advances in Mineral Metabolism'),
(18476, 15942, 'en', 'name', 'Aspen Cancer Conference'),
(18477, 15943, 'no_lang_code', 'name', 'Aspen Products Group (United States)'),
(18478, 15944, 'no_lang_code', 'name', 'Amron (United States)'),
(18479, 15945, 'no_lang_code', 'name', 'Eni (France)'),
(18480, 15946, 'no_lang_code', 'name', 'Advantage Forensics (Canada)'),
(18481, 15947, 'de', 'name', 'Bayerisches Landesamt für Denkmalpflege'),
(18482, 15948, 'no_lang_code', 'name', 'Aspen Systems (United States)'),
(18483, 15949, 'en', 'name', 'Aspen Institute'),
(18484, 15950, 'no_lang_code', 'name', 'Amyris (United States)'),
(18485, 15951, 'no_lang_code', 'name', 'Advantech AMT (Canada)'),
(18486, 15952, 'en', 'name', 'Boys'' Club of New York'),
(18487, 15953, 'no_lang_code', 'name', 'Avinet (Norway)'),
(18488, 15954, 'no_lang_code', 'name', 'Advanced Environmental Technologies (Portugal)'),
(18489, 15955, 'en', 'name', 'Anaerobic Digestion and Bioresources Association'),
(18490, 15956, 'no_lang_code', 'name', 'Moog (Netherlands)'),
(18491, 15957, 'en', 'name', 'Ars Electronica Center'),
(18492, 15958, 'no_lang_code', 'name', 'Assing (Italy)'),
(18493, 15959, 'no_lang_code', 'name', 'Bayessoft (United States)'),
(18494, 15960, 'no_lang_code', 'name', 'Brain Innovation (Netherlands)'),
(18495, 15961, 'no_lang_code', 'name', 'AEC3 (United Kingdom)'),
(18496, 15962, 'en', 'name', 'Association of Environmental Health Academic Programs'),
(18497, 15963, 'no_lang_code', 'name', 'Brainlab (Germany)'),
(18498, 15964, 'no_lang_code', 'name', 'Aecom (Czechia)'),
(18499, 15965, 'no_lang_code', 'name', 'Brainstorm (Spain)'),
(18500, 15966, 'no_lang_code', 'name', 'AED-SICAD (Germany)'),
(18501, 15967, 'no_lang_code', 'name', 'Keepmoat (United Kingdom)'),
(18502, 15968, 'fr', 'name', 'Association des Communicateurs Scientifiques du QuƩbec'),
(18503, 15969, 'en', 'name', 'Association of British HealthTech Industries'),
(18504, 15970, 'pt', 'name', 'A Rocha'),
(18505, 15971, 'no_lang_code', 'name', 'Braemar (United Kingdom)'),
(18506, 15972, 'no_lang_code', 'name', 'Anaxsys (United Kingdom)'),
(18507, 15973, 'en', 'name', 'Anchorage School District'),
(18508, 15974, 'no_lang_code', 'name', 'Ancile (United States)'),
(18509, 15975, 'no_lang_code', 'name', 'Anco Engineers (United States)'),
(18510, 15976, 'en', 'name', 'Baylor School'),
(18511, 15977, 'en', 'name', 'Brandywine Counseling & Community Services'),
(18512, 15978, 'en', 'name', 'Aeras'),
(18513, 15979, 'no_lang_code', 'name', 'Lürssen (Germany)'),
(18514, 15980, 'no_lang_code', 'name', 'Corden Pharma (United States)'),
(18515, 15981, 'no_lang_code', 'name', 'Andermatt Biocontrol (Switzerland)'),
(18516, 15982, 'no_lang_code', 'name', 'Aereco (France)'),
(18517, 15983, 'no_lang_code', 'name', 'PREtest Consult (United States)'),
(18518, 15984, 'no_lang_code', 'name', 'Aeristech (United Kingdom)'),
(18519, 15985, 'no_lang_code', 'name', 'Brechtel (United States)'),
(18520, 15986, 'en', 'name', 'BC Non-Profit Housing Association'),
(18521, 15987, 'no_lang_code', 'name', 'Breivoll Inspection Technologies (Norway)'),
(18522, 15988, 'no_lang_code', 'name', 'Roland Mills United (Germany)');
INSERT INTO `ror_settings` VALUES
(18523, 15988, 'de', 'name', 'Rolandmühle'),
(18524, 15989, 'no_lang_code', 'name', 'BCN Biosciences (United States)'),
(18525, 15990, 'no_lang_code', 'name', 'Aernnova (Spain)'),
(18526, 15991, 'no_lang_code', 'name', 'Bremerhaven Dock (Germany)'),
(18527, 15992, 'no_lang_code', 'name', 'Brenk Systemplanung (Germany)'),
(18528, 15993, 'no_lang_code', 'name', 'Bcr Diagnostics (United States)'),
(18529, 15994, 'no_lang_code', 'name', 'Aero Montreal (Canada)'),
(18530, 15995, 'en', 'name', 'Business Council for Sustainable Development UK'),
(18531, 15996, 'no_lang_code', 'name', 'Breonics (United States)'),
(18532, 15997, 'no_lang_code', 'name', 'Aero Sekur (Italy)'),
(18533, 15998, 'no_lang_code', 'name', 'Andritz (Finland)'),
(18534, 15999, 'no_lang_code', 'name', 'Androme (Belgium)'),
(18535, 16000, 'no_lang_code', 'name', 'AndroScience (United States)'),
(18536, 16001, 'no_lang_code', 'name', 'Anect (Czechia)'),
(18537, 16002, 'no_lang_code', 'name', 'Beacon Energy (United Kingdom)'),
(18538, 16003, 'no_lang_code', 'name', 'Breyer Group (United Kingdom)'),
(18539, 16004, 'en', 'name', 'Beamish Museum'),
(18540, 16005, 'no_lang_code', 'name', 'Bridge 129 (Italy)'),
(18541, 16006, 'no_lang_code', 'name', 'Ikusi (Spain)'),
(18542, 16007, 'no_lang_code', 'name', 'SWAZ Potato Farms (United States)'),
(18543, 16008, 'no_lang_code', 'name', 'Aeromechs (Italy)'),
(18544, 16009, 'no_lang_code', 'name', 'Aeromet International (United Kingdom)'),
(18545, 16010, 'no_lang_code', 'name', 'Associated Dental Products (United Kingdom)'),
(18546, 16011, 'no_lang_code', 'name', 'Associated Bonded Cables (United Kingdom)'),
(18547, 16012, 'no_lang_code', 'name', 'Bright Cloud International (United States)'),
(18548, 16013, 'no_lang_code', 'name', 'Angiologica (Italy)'),
(18549, 16014, 'no_lang_code', 'name', 'Brighten Optics (Canada)'),
(18550, 16015, 'no_lang_code', 'name', 'Beckers (United Kingdom)'),
(18551, 16016, 'no_lang_code', 'name', 'Quantum Spatial (United States)'),
(18552, 16017, 'no_lang_code', 'name', 'Aeromics (United States)'),
(18553, 16018, 'no_lang_code', 'name', 'Becs Technology (United States)'),
(18554, 16019, 'en', 'name', 'National Center for Supercomputing Applications'),
(18555, 16020, 'no_lang_code', 'name', 'Brighton Technologies Group (United States)'),
(18556, 16021, 'en', 'name', 'Behavioral Health Network'),
(18557, 16022, 'en', 'name', 'Animal Behavior Society'),
(18558, 16023, 'no_lang_code', 'name', 'Brimson Laboratories (United States)'),
(18559, 16024, 'no_lang_code', 'name', 'Oesterreichs Energie'),
(18560, 16025, 'en', 'name', 'Agropolis International'),
(18561, 16026, 'no_lang_code', 'name', 'Animal Monday (United Kingdom)'),
(18562, 16027, 'no_lang_code', 'name', 'Aerospace & Advanced Composites (Austria)'),
(18563, 16028, 'no_lang_code', 'name', 'Animal Vegetable Mineral (United Kingdom)'),
(18564, 16029, 'no_lang_code', 'name', 'Brinker Technology (United Kingdom)'),
(18565, 16030, 'en', 'name', 'Horizon Human Services'),
(18566, 16031, 'en', 'name', 'Arnolfini'),
(18567, 16032, 'no_lang_code', 'name', 'Bristol Industrial and Research Associates (United Kingdom)'),
(18568, 16033, 'en', 'name', 'Behavioral Tech'),
(18569, 16034, 'no_lang_code', 'name', 'Bristol-Myers Squibb (United Kingdom)'),
(18570, 16035, 'no_lang_code', 'name', 'Acromas Holdings (United Kingdom)'),
(18571, 16036, 'no_lang_code', 'name', 'Beicip Franlab (France)'),
(18572, 16037, 'no_lang_code', 'name', 'Materion (United Kingdom)'),
(18573, 16038, 'fr', 'name', 'Association des Constructeurs EuropƩens d''Automobiles'),
(18574, 16038, 'en', 'name', 'European Automobile Manufacturers Association'),
(18575, 16039, 'no_lang_code', 'name', 'Beijing Software Enterprise Advisory Center (China)'),
(18576, 16039, 'zh', 'name', 'åŒ—äŗ¬č½Æåä¼äøšē®”ē†é”¾é—®äø­åæƒ'),
(18577, 16040, 'fr', 'name', 'Association des Operateurs Postaux Publics Europeens'),
(18578, 16040, 'en', 'name', 'Association of European Public Postal Operators'),
(18579, 16041, 'en', 'name', 'Ann Arbor Hands On Museum'),
(18580, 16042, 'en', 'name', 'European Steel Association'),
(18581, 16043, 'en', 'name', 'Behavioral Health Systems'),
(18582, 16044, 'en', 'name', 'British Empire and Commonwealth Museum'),
(18583, 16045, 'no_lang_code', 'name', 'Vidavo (Greece)'),
(18584, 16046, 'fr', 'name', 'Comité de Liaison Européen des fabricants d''équipements et de Pièces Automobiles'),
(18585, 16046, 'en', 'name', 'European Association of Automotive Suppliers'),
(18586, 16047, 'en', 'name', 'Beijing Transportation Research Center'),
(18587, 16048, 'no_lang_code', 'name', 'Anova IT Consulting (Spain)'),
(18588, 16049, 'en', 'name', 'Artez and Innovatie'),
(18589, 16050, 'fr', 'name', 'Agence fƩdƩrale de contrƓle nuclƩaire'),
(18590, 16050, 'nl', 'name', 'Federaal Agentschap voor Nucleaire Controle'),
(18591, 16050, 'en', 'name', 'Federal Agency for Nuclear Control'),
(18592, 16051, 'no_lang_code', 'name', 'AeroTex UK (United Kingdom)'),
(18593, 16052, 'no_lang_code', 'name', 'BioMed Design (United States)'),
(18594, 16053, 'en', 'name', 'AEROTRON Research'),
(18595, 16054, 'no_lang_code', 'name', 'Puratos (Belgium)'),
(18596, 16055, 'no_lang_code', 'name', 'Proximus (Belgium)'),
(18597, 16056, 'en', 'name', 'British Nutrition Foundation'),
(18598, 16057, 'no_lang_code', 'name', 'Total Quadran (France)'),
(18599, 16058, 'en', 'name', 'European Association for Battery Hybrid and Fuel Cell Electric Vehicles'),
(18600, 16059, 'fr', 'name', 'Association EuropƩenne pour la Biomasse'),
(18601, 16059, 'en', 'name', 'European Biomass Association'),
(18602, 16060, 'en', 'name', 'British Poultry Council'),
(18603, 16061, 'en', 'name', 'Association for the Advancement of Mexican Americans'),
(18604, 16062, 'en', 'name', 'Association for Childrens Mental Health'),
(18605, 16063, 'en', 'name', 'Association for Computational Linguistics'),
(18606, 16064, 'no_lang_code', 'name', 'Ansmart (United Kingdom)'),
(18607, 16065, 'no_lang_code', 'name', 'AnsuR Technologies (Norway)'),
(18608, 16066, 'no_lang_code', 'name', 'Ansys (Canada)'),
(18609, 16067, 'no_lang_code', 'name', 'British Standards Institution'),
(18610, 16068, 'no_lang_code', 'name', 'Straumann (Sweden)'),
(18611, 16069, 'en', 'name', 'Benaki Museum'),
(18612, 16069, 'el', 'name', 'ĪœĪæĻ…ĻƒĪµĪÆĪæ ĪœĻ€ĪµĪ½Ī¬ĪŗĪ·'),
(18613, 16070, 'no_lang_code', 'name', 'BioSentinel (United States)'),
(18614, 16071, 'no_lang_code', 'name', 'Antea Group (Belgium)'),
(18615, 16072, 'en', 'name', 'British Transport Police'),
(18616, 16073, 'no_lang_code', 'name', 'Actigen (Norway)'),
(18617, 16074, 'no_lang_code', 'name', 'Antec (Germany)'),
(18618, 16075, 'no_lang_code', 'name', 'Global RNA (United States)'),
(18619, 16076, 'no_lang_code', 'name', 'Antenova (United Kingdom)'),
(18620, 16077, 'en', 'name', 'Association for Research in Vision and Ophthalmology'),
(18621, 16078, 'no_lang_code', 'name', 'Belsim (Belgium)'),
(18622, 16079, 'en', 'name', 'Association for the Promotion of Information on Science and Technology for All Countries'),
(18623, 16080, 'no_lang_code', 'name', 'AnthroTronix (United States)'),
(18624, 16081, 'no_lang_code', 'name', 'BroadBit (Slovakia)'),
(18625, 16082, 'fr', 'name', 'Association Française de Médecine Morpho-Esthétique et anti-âge'),
(18626, 16083, 'no_lang_code', 'name', 'AFrame Digital (United States)'),
(18627, 16084, 'en', 'name', 'African Malaria Network Trust'),
(18628, 16085, 'fr', 'name', 'Maiz''Europ'''),
(18629, 16086, 'en', 'name', 'Ben Franklin Technology Partners'),
(18630, 16087, 'no_lang_code', 'name', 'AFS Entwicklungs und Vertriebs (Germany)'),
(18631, 16088, 'no_lang_code', 'name', 'AFT Automation (Germany)'),
(18632, 16089, 'no_lang_code', 'name', 'Bayou Biolabs'),
(18633, 16090, 'no_lang_code', 'name', 'Broadcom (Ireland)'),
(18634, 16091, 'no_lang_code', 'name', 'Anton Paar (Austria)'),
(18635, 16092, 'no_lang_code', 'name', 'Broadley James (United States)'),
(18636, 16093, 'fr', 'name', 'Ag Quest'),
(18637, 16094, 'en', 'name', 'Agder Research'),
(18638, 16094, 'no', 'name', 'Agderforskning'),
(18639, 16095, 'no_lang_code', 'name', 'Broadway Malyan (United Kingdom)'),
(18640, 16096, 'fr', 'name', 'Laval Mayenne Technopole'),
(18641, 16097, 'en', 'name', 'Broadway'),
(18642, 16098, 'fr', 'name', 'Association Libanaise pour la Maitrise de l’Energie et pour l’Environnement'),
(18643, 16098, 'en', 'name', 'Lebanese Association for Energy Saving & for Environment'),
(18644, 16099, 'fr', 'name', 'Agence Federale pour la Securite de la Chaine Alimentaire'),
(18645, 16099, 'nl', 'name', 'Federaal Agentschap voor de Veiligheid van de Voedselketen'),
(18646, 16099, 'en', 'name', 'Federal Agency for Food Chain Safety'),
(18647, 16099, 'de', 'name', 'Föderalagentur für die Sicherheit der Nahrungsmittelkette'),
(18648, 16100, 'no_lang_code', 'name', 'Anvil Semiconductors (United Kingdom)'),
(18649, 16101, 'en', 'name', 'Belgian Institute of Management Accountants & Controllers'),
(18650, 16102, 'fr', 'name', 'Association Nationale de Parents d''Enfants DƩficients Auditifs'),
(18651, 16103, 'no_lang_code', 'name', 'AnyWi Technologies (Netherlands)'),
(18652, 16104, 'no_lang_code', 'name', 'Agence MTDA'),
(18653, 16105, 'fr', 'name', 'Association Nationale pour la Formation Professionnelle des Adultes'),
(18654, 16106, 'en', 'name', 'Association of American State Geologists'),
(18655, 16107, 'no_lang_code', 'name', 'Benteler (Austria)'),
(18656, 16108, 'no_lang_code', 'name', 'AP&T (Sweden)'),
(18657, 16109, 'no_lang_code', 'name', 'Benten Technologies (United States)'),
(18658, 16110, 'en', 'name', 'Association of British Science Writers'),
(18659, 16111, 'no_lang_code', 'name', 'Volkswagen Group (United Kingdom)'),
(18660, 16112, 'no_lang_code', 'name', 'Sumitomo Chemical (United States)'),
(18661, 16113, 'fr', 'name', 'Agence Nationale des Technologies de l''Information et de la Communication'),
(18662, 16114, 'en', 'name', 'Finnish Marine Industries'),
(18663, 16115, 'no_lang_code', 'name', 'APDM (United States)'),
(18664, 16116, 'fr', 'name', 'Agence RƩgionale d''Ʃvaluation Environnement et Climat'),
(18665, 16117, 'no_lang_code', 'name', 'Beran Instruments (United Kingdom)'),
(18666, 16118, 'fr', 'name', 'ARENE'),
(18667, 16119, 'en', 'name', 'Brookdale Community College'),
(18668, 16120, 'en', 'name', 'Brooklyn Botanic Garden'),
(18669, 16121, 'en', 'name', 'Association of Schools and Programs of Public Health'),
(18670, 16122, 'en', 'name', 'Aplastic Anemia and MDS International Foundation'),
(18671, 16123, 'ca', 'name', 'Departament de Territori i Sostenibilitat'),
(18672, 16124, 'lt', 'name', 'Aplinkos Apsaugos Agentura'),
(18673, 16124, 'en', 'name', 'Environmental Protection Agency'),
(18674, 16125, 'en', 'name', 'Thrive Together'),
(18675, 16126, 'no_lang_code', 'name', 'Diageo (Ireland)'),
(18676, 16127, 'en', 'name', 'Association of State Public Health Nutritionists'),
(18677, 16128, 'no_lang_code', 'name', 'Apotex Fermentation (Canada)'),
(18678, 16129, 'en', 'name', 'Appalachian Regional Healthcare'),
(18679, 16130, 'no_lang_code', 'name', 'Brotherhood (United States)'),
(18680, 16131, 'en', 'name', 'Broward County Board'),
(18681, 16132, 'no_lang_code', 'name', 'Appen (United States)'),
(18682, 16133, 'fr', 'name', 'Association pour la Recherche-DƩveloppement de l''Enseignement MultimƩdia et Interactif'),
(18683, 16134, 'no_lang_code', 'name', 'Bere (United Kingdom)'),
(18684, 16135, 'no_lang_code', 'name', 'Broyce Control (United Kingdom)'),
(18685, 16136, 'fr', 'name', 'Association pour le Developpement de l''Institut de la Viande'),
(18686, 16137, 'es', 'name', 'Agencia de Servicios Sociales y Dependencia de AndalucĆ­a'),
(18687, 16138, 'no_lang_code', 'name', 'Brugarolas (Spain)'),
(18688, 16139, 'no_lang_code', 'name', 'Bruhn NewTech (Denmark)'),
(18689, 16140, 'no_lang_code', 'name', 'Bruker (United Kingdom)'),
(18690, 16141, 'no_lang_code', 'name', 'Bruxton (United States)'),
(18691, 16142, 'en', 'name', 'Berkshire Record Office'),
(18692, 16143, 'no_lang_code', 'name', 'Nuclea Biotechnologies (United States)'),
(18693, 16144, 'en', 'name', 'Berlin Energy Agency'),
(18694, 16144, 'no_lang_code', 'name', 'Berliner Energieagentur (Germany)'),
(18695, 16145, 'de', 'name', 'Berliner Institut für Sozialforschung'),
(18696, 16146, 'no_lang_code', 'name', 'Bay Glass (United States)'),
(18697, 16147, 'en', 'name', 'Canadian Lung Association'),
(18698, 16148, 'no_lang_code', 'name', 'BS Rotor Technic (United Kingdom)'),
(18699, 16149, 'no_lang_code', 'name', 'Berlitz (Germany)'),
(18700, 16150, 'en', 'name', 'Canadian Meteorological and Oceanographic Society'),
(18701, 16150, 'fr', 'name', 'La SociƩtƩ canadienne de mƩtƩorologie et d''ocƩanographie'),
(18702, 16151, 'no_lang_code', 'name', 'Industrial Systems and Control (United Kingdom)'),
(18703, 16152, 'en', 'name', 'Canadian Parks and Wilderness Society'),
(18704, 16152, 'fr', 'name', 'la SociƩtƩ pour la nature et les parcs du Canada'),
(18705, 16153, 'no_lang_code', 'name', 'AER Group (United States)'),
(18706, 16154, 'en', 'name', 'Agency for Mobility and EU Programmes'),
(18707, 16155, 'en', 'name', 'European Migration Centre'),
(18708, 16155, 'de', 'name', 'EuropƤisches Migrationszentrum'),
(18709, 16156, 'no_lang_code', 'name', 'Applied Materials (Germany)'),
(18710, 16157, 'no_lang_code', 'name', 'Applied Functional Materials (United Kingdom)'),
(18711, 16158, 'no_lang_code', 'name', 'Pyrexar Medical (United States)'),
(18712, 16159, 'en', 'name', 'Agency for Electronic Communications'),
(18713, 16160, 'en', 'name', 'Canadian Science Writers Association'),
(18714, 16161, 'no_lang_code', 'name', 'BSH ElectrodomƩsticos (Spain)'),
(18715, 16162, 'no_lang_code', 'name', 'Berry & Associates (United States)'),
(18716, 16163, 'no_lang_code', 'name', 'Agentscape (Germany)'),
(18717, 16164, 'en', 'name', 'Canadian Society for Exercise Physiology'),
(18718, 16165, 'no_lang_code', 'name', 'Bsoft (Italy)'),
(18719, 16166, 'no_lang_code', 'name', 'Dürr (Germany)'),
(18720, 16167, 'no_lang_code', 'name', 'BST Bio Sensor Technology (Germany)'),
(18721, 16168, 'no_lang_code', 'name', 'Bertec (United States)'),
(18722, 16169, 'en', 'name', 'European Projects & Management Agency'),
(18723, 16170, 'en', 'name', 'Canadore College'),
(18724, 16171, 'en', 'name', 'BT Archives'),
(18725, 16172, 'no_lang_code', 'name', 'Berufsfortbildungswerk'),
(18726, 16173, 'en', 'name', 'Applied Information Management Institute'),
(18727, 16174, 'no_lang_code', 'name', 'Buckland & Taylor (Canada)'),
(18728, 16175, 'no_lang_code', 'name', 'Ecobat Technologies (Germany)'),
(18729, 16176, 'no_lang_code', 'name', 'Berlin Schalltechnisches Büro'),
(18730, 16177, 'no_lang_code', 'name', 'Nyrstar Budel (Netherlands)'),
(18731, 16178, 'no_lang_code', 'name', 'Canam Group (Canada)'),
(18732, 16179, 'no_lang_code', 'name', 'Applied Materials (Israel)'),
(18733, 16180, 'no_lang_code', 'name', 'Canatu (Finland)'),
(18734, 16181, 'no_lang_code', 'name', 'Applied Materials (United Kingdom)'),
(18735, 16182, 'no_lang_code', 'name', 'Applied Medical Technology (United States)'),
(18736, 16183, 'no_lang_code', 'name', 'Medvis (United States)'),
(18737, 16184, 'no_lang_code', 'name', 'Applied Microengineering Limited (United Kingdom)'),
(18738, 16185, 'no_lang_code', 'name', 'TeamBest (United States)'),
(18739, 16186, 'it', 'name', 'Agenzia Sviluppo Milano Metropoli S.P.A.'),
(18740, 16186, 'en', 'name', 'Milano Metropoli Development Agency'),
(18741, 16187, 'no_lang_code', 'name', 'AGF Electronics (Italy)'),
(18742, 16188, 'no_lang_code', 'name', 'Applied Nanodetectors (United Kingdom)'),
(18743, 16189, 'no_lang_code', 'name', 'Agfa-Gevaert (Canada)'),
(18744, 16190, 'en', 'name', 'Buffalo Society of Natural Sciences'),
(18745, 16191, 'no_lang_code', 'name', 'Beta 80 Group (Italy)'),
(18746, 16192, 'no_lang_code', 'name', 'LafargeHolcim (United Kingdom)'),
(18747, 16193, 'no_lang_code', 'name', 'Schenck Process (Norway)'),
(18748, 16194, 'no_lang_code', 'name', 'Buildair (Spain)'),
(18749, 16195, 'en', 'name', 'Building Bridges'),
(18750, 16196, 'no_lang_code', 'name', 'Ericsson (United States)'),
(18751, 16197, 'no_lang_code', 'name', 'Voith (United Kingdom)'),
(18752, 16198, 'no_lang_code', 'name', 'Maxxam (Canada)'),
(18753, 16199, 'no_lang_code', 'name', 'GF Machining Solutions (Switzerland)'),
(18754, 16200, 'no_lang_code', 'name', 'Betah Associates'),
(18755, 16201, 'no_lang_code', 'name', 'Cantine d''Alfonso del Sordo (Italy)'),
(18756, 16202, 'no_lang_code', 'name', 'BetaStem Therapeutics (United States)'),
(18757, 16203, 'no_lang_code', 'name', 'Applied Research Using OMIC Sciences (Spain)'),
(18758, 16204, 'no_lang_code', 'name', 'Agilent Technologies (Italy)'),
(18759, 16205, 'no_lang_code', 'name', 'Applied Resources (United States)'),
(18760, 16206, 'no_lang_code', 'name', 'Agilent Technologies (Austria)'),
(18761, 16207, 'en', 'name', 'Bulgarian European Community Studies Association'),
(18762, 16208, 'en', 'name', 'Bulgarian Research and Education Network'),
(18763, 16208, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° изслеГователска Šø образователна мрежа'),
(18764, 16209, 'el', 'name', 'AGILIS Ī‘.Ī•. Ī£Ī¤Ī‘Ī¤Ī™Ī£Ī¤Ī™ĪšĪ—Ī£ ĪšĪ‘Ī™ Ī Ī›Ī—Ī”ĪŸĪ¦ĪŸĪ”Ī™ĪšĪ—Ī£'),
(18765, 16209, 'no_lang_code', 'name', 'Agilis (Greece)'),
(18766, 16210, 'en', 'name', 'Bulgarian Ship Hydrodynamics Centre'),
(18767, 16210, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠø Š¦ŠµŠ½Ń‚ŃŠŃ€ по хиГро- Šø аероГинамика'),
(18768, 16211, 'no_lang_code', 'name', 'Capgemini (United States)'),
(18769, 16212, 'no_lang_code', 'name', 'Betonsteinwerk Heide (Germany)'),
(18770, 16213, 'no_lang_code', 'name', 'Capgemini (Italy)'),
(18771, 16214, 'en', 'name', 'Cape Cod Community College'),
(18772, 16215, 'no_lang_code', 'name', 'AppliFlex (United States)'),
(18773, 16216, 'no_lang_code', 'name', 'APR (Italy)'),
(18774, 16217, 'no_lang_code', 'name', 'Agora Conseil'),
(18775, 16218, 'no_lang_code', 'name', 'Betrieb für InformationsTechnologie'),
(18776, 16219, 'no_lang_code', 'name', 'Agoria (Belgium)'),
(18777, 16220, 'no_lang_code', 'name', 'Elite Bread Industry (Greece)'),
(18778, 16221, 'no_lang_code', 'name', 'Austria Personal Service (Austria)'),
(18779, 16222, 'no_lang_code', 'name', 'Bettergy (United States)'),
(18780, 16223, 'no_lang_code', 'name', 'BeTV (Belgium)'),
(18781, 16224, 'no_lang_code', 'name', 'Bridgepoint (Germany)'),
(18782, 16225, 'en', 'name', 'Beverly Hospital'),
(18783, 16226, 'no_lang_code', 'name', 'Bexion Pharmaceuticals (United States)'),
(18784, 16227, 'en', 'name', 'Cape Fear Community College'),
(18785, 16228, 'en', 'name', 'RiverWatch Insitute of Alberta'),
(18786, 16229, 'en', 'name', 'Cape Assist'),
(18787, 16230, 'no_lang_code', 'name', 'Capita (United Kingdom)'),
(18788, 16231, 'no_lang_code', 'name', 'Capita Translation and Interpreting (United Kingdom)'),
(18789, 16232, 'no_lang_code', 'name', 'BFI Betriebstechnik (Germany)'),
(18790, 16233, 'en', 'name', 'Capital Community College'),
(18791, 16234, 'no_lang_code', 'name', 'ApprenNet (United States)'),
(18792, 16235, 'no_lang_code', 'name', 'Aqon Water Solutions (Germany)'),
(18793, 16236, 'no_lang_code', 'name', 'Biker Fashion Arena Hamburg'),
(18794, 16237, 'no_lang_code', 'name', 'Bumaga (Netherlands)'),
(18795, 16238, 'no_lang_code', 'name', 'Aqua Consult Ingenieur (Germany)'),
(18796, 16239, 'no_lang_code', 'name', 'Aquamarijn (Netherlands)'),
(18797, 16240, 'de', 'name', 'Berufsfƶrderungszentrum Essen'),
(18798, 16241, 'no_lang_code', 'name', 'Google (Canada)'),
(18799, 16242, 'de', 'name', 'Bundesamt für Eich- und Vermessungswesen'),
(18800, 16242, 'en', 'name', 'Federal Office of Metrology and Surveying'),
(18801, 16243, 'no_lang_code', 'name', 'Capital Technology Information Services'),
(18802, 16244, 'fr', 'name', 'CƩgep de Sorel-Tracy'),
(18803, 16245, 'no_lang_code', 'name', 'Capricorn Automotive (United Kingdom)'),
(18804, 16246, 'en', 'name', 'Greenville Children''s Hospital'),
(18805, 16247, 'no_lang_code', 'name', 'Biaffin (Germany)'),
(18806, 16248, 'no_lang_code', 'name', 'Biametrics (Germany)'),
(18807, 16249, 'de', 'name', 'Bundesamt für Sicherheit in der Informationstechnik'),
(18808, 16249, 'en', 'name', 'Federal Office for Information Security'),
(18809, 16250, 'en', 'name', 'Central Statistics Office'),
(18810, 16251, 'en', 'name', 'Central Virginia Community College'),
(18811, 16252, 'it', 'name', 'Biblioteca Italiana per i Ciechi "Regina Margherita" - ONLUS'),
(18812, 16253, 'pt', 'name', 'Biblioteca Nacional de Portugal'),
(18813, 16253, 'en', 'name', 'National Library of Portugal'),
(18814, 16254, 'de', 'name', 'Bundesanstalt für Arbeitsschutz und Arbeitsmedizin'),
(18815, 16254, 'en', 'name', 'Federal Institute for Occupational Safety and Health'),
(18816, 16255, 'it', 'name', 'Biblioteca Nazionale Centrale di Roma'),
(18817, 16255, 'en', 'name', 'Rome National Central Library'),
(18818, 16256, 'it', 'name', 'Biblioteca Nazionale Marciana'),
(18819, 16256, 'en', 'name', 'National Library of St Mark'),
(18820, 16257, 'no_lang_code', 'name', 'Clearfield (United States)'),
(18821, 16258, 'en', 'name', 'Centralia College'),
(18822, 16259, 'en', 'name', 'Business Innovation Centre'),
(18823, 16260, 'fr', 'name', 'Centre d''Expertise en Traitement et Gestion de l''Eau'),
(18824, 16260, 'en', 'name', 'Centre for Expertise in the Treatment and Management of Water'),
(18825, 16261, 'no_lang_code', 'name', 'Bundesdruckerei (Germany)'),
(18826, 16261, 'de', 'name', 'Reichsdruckerei'),
(18827, 16262, 'en', 'name', 'Bienvenidos Children''s Center'),
(18828, 16263, 'es', 'name', 'Fundació Privada Centre CIM'),
(18829, 16264, 'no_lang_code', 'name', 'Big Horn Valve'),
(18830, 16265, 'no_lang_code', 'name', 'Agrobiogen (Germany)'),
(18831, 16266, 'no_lang_code', 'name', 'CapSenze (Sweden)'),
(18832, 16267, 'no_lang_code', 'name', 'Arranta Bio (United States)'),
(18833, 16268, 'no_lang_code', 'name', 'Agrovegetal (Spain)'),
(18834, 16269, 'no_lang_code', 'name', 'Bilfinger (Germany)'),
(18835, 16270, 'de', 'name', 'Bundesministerium für Gesundheit'),
(18836, 16270, 'en', 'name', 'Federal Ministry of Health'),
(18837, 16271, 'en', 'name', 'Biloxi Public Schools'),
(18838, 16272, 'de', 'name', 'Bundesministerium für Bildung und Frauen'),
(18839, 16272, 'en', 'name', 'Federal Ministry for Education and Women'),
(18840, 16273, 'en', 'name', 'Southern Wesleyan University'),
(18841, 16274, 'no_lang_code', 'name', 'Ahlstrom-Munksjƶ (France)'),
(18842, 16275, 'no_lang_code', 'name', 'CarboNix (United States)'),
(18843, 16276, 'no_lang_code', 'name', 'Ai2 (United Kingdom)'),
(18844, 16277, 'no_lang_code', 'name', 'KalVista Pharmaceuticals (United States)'),
(18845, 16278, 'no_lang_code', 'name', 'Aicas (Germany)'),
(18846, 16279, 'no_lang_code', 'name', 'Bio Med Sciences (United States)'),
(18847, 16280, 'no_lang_code', 'name', 'PSI Group (Belgium)'),
(18848, 16281, 'en', 'name', 'Bio Nano Consulting'),
(18849, 16282, 'no_lang_code', 'name', 'Carcerano (Italy)'),
(18850, 16283, 'en', 'name', 'AIDS Arms'),
(18851, 16284, 'de', 'name', 'Bundesverband der deutschen Fischindustrie und des Fischgroßhandels'),
(18852, 16285, 'no_lang_code', 'name', 'Bunnell (United States)'),
(18853, 16286, 'no_lang_code', 'name', 'LifeWatch (Israel)'),
(18854, 16287, 'en', 'name', 'Alliance for Positive Health'),
(18855, 16288, 'no_lang_code', 'name', 'Bio S&T (Canada)'),
(18856, 16289, 'no_lang_code', 'name', 'Cardboard Citizens (United Kingdom)'),
(18857, 16290, 'no_lang_code', 'name', 'Bioiliberis Research and Development (Spain)'),
(18858, 16291, 'no_lang_code', 'name', 'Bio-K+ International (Canada)'),
(18859, 16292, 'no_lang_code', 'name', 'Bio Molecular Technology (United States)'),
(18860, 16293, 'en', 'name', 'AIDS Research Consortium of Atlanta'),
(18861, 16294, 'en', 'name', 'Cardiff Council'),
(18862, 16295, 'no_lang_code', 'name', 'Bio-Prodict (Netherlands)'),
(18863, 16296, 'en', 'name', 'AIDS Resource Center of Wisconsin'),
(18864, 16297, 'no_lang_code', 'name', 'Bio-Quick (United States)'),
(18865, 16298, 'en', 'name', 'AIDS Services of Austin'),
(18866, 16299, 'fr', 'name', 'Centre d''Ɖtudes et de Recherches de l''Industrie du BĆ©ton'),
(18867, 16300, 'en', 'name', 'Thrive'),
(18868, 16301, 'no_lang_code', 'name', 'Bio-Technical Resources (United States)'),
(18869, 16302, 'fr', 'name', 'Centre d''Ɖtudes et de Recherches Ɖconomiques sur l''Ɖnergie'),
(18870, 16303, 'no_lang_code', 'name', 'BioActor (Netherlands)'),
(18871, 16304, 'no_lang_code', 'name', 'Elekta (United States)'),
(18872, 16305, 'no_lang_code', 'name', 'Onxeo (France)'),
(18873, 16306, 'no_lang_code', 'name', 'Medtronic (United Kingdom)'),
(18874, 16307, 'en', 'name', 'American Institute for Medical and Biological Engineering'),
(18875, 16308, 'no_lang_code', 'name', 'AIMES Grid Services (United Kingdom)'),
(18876, 16309, 'en', 'name', 'Aims Community College'),
(18877, 16310, 'fr', 'name', 'Centre d''Etudes Superieures Industrielles'),
(18878, 16311, 'no_lang_code', 'name', 'EagleBurgmann (Germany)'),
(18879, 16312, 'en', 'name', 'Care Resource'),
(18880, 16313, 'en', 'name', 'Czech Television'),
(18881, 16313, 'cs', 'name', 'ČeskÔ televize'),
(18882, 16314, 'en', 'name', 'Czech Centre for Science and Society'),
(18883, 16315, 'no_lang_code', 'name', 'Burnbrae Farms (Canada)'),
(18884, 16316, 'en', 'name', 'Air France Consulting'),
(18885, 16317, 'no_lang_code', 'name', 'Burness (United States)'),
(18886, 16318, 'en', 'name', 'Career Trek'),
(18887, 16319, 'no_lang_code', 'name', 'Careers Europe'),
(18888, 16320, 'no_lang_code', 'name', 'Air Products (Germany)'),
(18889, 16321, 'en', 'name', 'Airborne Research Associates'),
(18890, 16322, 'no_lang_code', 'name', 'Finlombarda (Italy)'),
(18891, 16323, 'no_lang_code', 'name', 'AirBoss Defense (Canada)'),
(18892, 16324, 'en', 'name', 'Complete Home Care'),
(18893, 16325, 'no_lang_code', 'name', 'BPM (Greece)'),
(18894, 16326, 'ca', 'name', 'Centre d''Innovació i Desenvolupament Empresarial'),
(18895, 16327, 'en', 'name', 'Butte County Department of Behavioral Health'),
(18896, 16328, 'no_lang_code', 'name', 'Cargill (France)'),
(18897, 16329, 'no_lang_code', 'name', 'Aircraft Development and Systems Engineering (Netherlands)'),
(18898, 16330, 'no_lang_code', 'name', 'Van Wees (Netherlands)'),
(18899, 16331, 'no_lang_code', 'name', 'Airlan (Spain)'),
(18900, 16332, 'fr', 'name', 'Airparif'),
(18901, 16333, 'no_lang_code', 'name', 'Airtren (Spain)'),
(18902, 16334, 'fr', 'name', 'Centre de DƩveloppement des Energies Renouvelables'),
(18903, 16334, 'en', 'name', 'Renewable Energy Development Center'),
(18904, 16335, 'no_lang_code', 'name', 'BVT Technologies (Czechia)'),
(18905, 16336, 'no_lang_code', 'name', 'Circulomics (United States)'),
(18906, 16337, 'fr', 'name', 'Agence Nationale pour le DĆ©veloppement des Energies Renouvelables et l’EfficacitĆ© EnergĆ©tique'),
(18907, 16337, 'en', 'name', 'National Agency for the Development of Renewable Energy and Energy Efficiency'),
(18908, 16338, 'pt', 'name', 'Centro Tecnológico da Pedra Natural de Portugal'),
(18909, 16339, 'en', 'name', 'CaringFamily'),
(18910, 16340, 'no_lang_code', 'name', 'České Energetické ZÔvody (Czechia)'),
(18911, 16341, 'no_lang_code', 'name', 'Centre de Pyrolyse de Marienau (France)'),
(18912, 16342, 'no_lang_code', 'name', 'Carl Cloos Schweißtechnik (Germany)'),
(18913, 16343, 'no_lang_code', 'name', 'Cezanne (Italy)'),
(18914, 16344, 'no_lang_code', 'name', 'C & L Instruments (United States)'),
(18915, 16345, 'en', 'name', 'Standing Committee of European Doctors'),
(18916, 16346, 'no_lang_code', 'name', 'Consultants for Environmental System Technologies'),
(18917, 16347, 'no_lang_code', 'name', 'CE Technologies (United Kingdom)'),
(18918, 16348, 'no_lang_code', 'name', 'Carley Technologies (United States)'),
(18919, 16349, 'no_lang_code', 'name', 'CFN Precision'),
(18920, 16350, 'pt', 'name', 'Centro de Formação Profissional para o Sector Alimentar'),
(18921, 16351, 'fr', 'name', 'Centre de Recherche en Nutrition Humaine RhƓne-Alpes'),
(18922, 16352, 'no_lang_code', 'name', 'Carlsberg Group (Denmark)'),
(18923, 16353, 'no_lang_code', 'name', 'Carmell Therapeutics (United States)'),
(18924, 16354, 'no_lang_code', 'name', 'Doris Engineering (France)'),
(18925, 16355, 'fr', 'name', 'Chambre de Commerce et d''Industrie Auvergne-RhƓne-Alpes'),
(18926, 16356, 'fr', 'name', 'Chambre de Commerce et d''Industrie Lyon MĆ©tropole Saint-Ɖtienne Roanne'),
(18927, 16357, 'en', 'name', 'Centre of Technological Resources in Chemistry'),
(18928, 16358, 'no_lang_code', 'name', 'Carnego Systems (United Kingdom)'),
(18929, 16359, 'fr', 'name', 'ConfƩdƩration GƩnƩrale du Travail'),
(18930, 16359, 'en', 'name', 'General Confederation of Labour'),
(18931, 16360, 'fr', 'name', 'Centre de Suivi Ecologique'),
(18932, 16361, 'en', 'name', 'Carrier Clinic'),
(18933, 16362, 'fr', 'name', 'Centre de Transfert de Technologie du Mans'),
(18934, 16363, 'no_lang_code', 'name', 'Carte Blanche Conseil'),
(18935, 16364, 'en', 'name', 'Chabot–Las Positas Community College District'),
(18936, 16365, 'en', 'name', 'European Centre for Executive Development'),
(18937, 16366, 'en', 'name', 'Children and Adults with Attention Deficit/Hyperactivity Disorder'),
(18938, 16367, 'fr', 'name', 'Centre EuropƩen de GƩodynamique et de SƩismologie'),
(18939, 16367, 'en', 'name', 'European Center for Geodynamics and Seismology'),
(18940, 16368, 'en', 'name', 'Cary Medical Center'),
(18941, 16369, 'no_lang_code', 'name', 'Chalklabs (United States)'),
(18942, 16370, 'en', 'name', 'Chamber of Commerce and Industry of Romania'),
(18943, 16371, 'fr', 'name', 'Chambre de Commerce et d''Industrie Occitanie PyrƩnƩes-MƩditerranƩe'),
(18944, 16372, 'no_lang_code', 'name', 'Global Phasing (United Kingdom)'),
(18945, 16373, 'fr', 'name', 'Chambre de Commerce et d''Industrie Pays de la Loire'),
(18946, 16374, 'en', 'name', 'Cabrini University'),
(18947, 16375, 'en', 'name', 'Champlain Valley Union High School'),
(18948, 16376, 'no_lang_code', 'name', 'Centre for Concepts in Mechatronics'),
(18949, 16377, 'no_lang_code', 'name', 'CEA Systems (Netherlands)'),
(18950, 16378, 'en', 'name', 'Temecula Valley Unified School District'),
(18951, 16379, 'no_lang_code', 'name', 'Cascade Technologies (United Kingdom)'),
(18952, 16380, 'no_lang_code', 'name', 'Cad Modelling Ergonomics (Italy)'),
(18953, 16381, 'no_lang_code', 'name', 'WPP (United Kingdom)'),
(18954, 16382, 'en', 'name', 'Centre For Development Studies'),
(18955, 16383, 'no_lang_code', 'name', 'Cadauta Engineering (Italy)'),
(18956, 16384, 'no_lang_code', 'name', 'CASON Engineering (Hungary)'),
(18957, 16385, 'en', 'name', 'Virginia Community Action Partnership'),
(18958, 16386, 'no_lang_code', 'name', 'Mondelēz International (United Kingdom)'),
(18959, 16387, 'no_lang_code', 'name', 'Cadence Design Systems (Germany)'),
(18960, 16388, 'en', 'name', 'Chapter Arts Centre'),
(18961, 16389, 'en', 'name', 'College of Southern Maryland'),
(18962, 16390, 'en', 'name', 'Community Bridges'),
(18963, 16391, 'en', 'name', 'Centre for Environmental Management and Decision Support'),
(18964, 16392, 'no_lang_code', 'name', 'Cadzow Communications Consulting (United Kingdom)'),
(18965, 16393, 'no_lang_code', 'name', 'HeidelbergCement (United Kingdom)'),
(18966, 16394, 'no_lang_code', 'name', 'Caesar Systems (United Kingdom)'),
(18967, 16395, 'en', 'name', 'Community Colleges of Spokane'),
(18968, 16396, 'en', 'name', 'Community Connections'),
(18969, 16397, 'no_lang_code', 'name', 'Castle Rock Edinvar (United Kingdom)'),
(18970, 16398, 'en', 'name', 'Community Counseling Institute'),
(18971, 16399, 'en', 'name', 'Drug Free Charlotte County'),
(18972, 16400, 'en', 'name', 'Community Education Group'),
(18973, 16401, 'en', 'name', 'Community Foundation'),
(18974, 16402, 'en', 'name', 'Community Health Councils'),
(18975, 16403, 'en', 'name', 'Community Healthlink'),
(18976, 16404, 'en', 'name', 'Community Mental Health Affiliates'),
(18977, 16405, 'en', 'name', 'Community Network Services'),
(18978, 16406, 'en', 'name', 'Community Prevention Partnership'),
(18979, 16407, 'no_lang_code', 'name', 'Castrol (United Kingdom)'),
(18980, 16408, 'en', 'name', 'Centre for Independent Social Research'),
(18981, 16408, 'ru', 'name', 'Центр независимых ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… исслеГований'),
(18982, 16409, 'en', 'name', 'University of the Third Age'),
(18983, 16410, 'en', 'name', 'Community Services Institute'),
(18984, 16411, 'no_lang_code', 'name', 'Blatchford (United Kingdom)'),
(18985, 16412, 'en', 'name', 'Chattanooga State Community College'),
(18986, 16413, 'no_lang_code', 'name', 'Catalyse'),
(18987, 16414, 'no_lang_code', 'name', 'Telefactor Robotics (United States)'),
(18988, 16415, 'fr', 'name', 'AcadƩmie de Montpellier'),
(18989, 16416, 'en', 'name', 'Cheboygan Otsego Presque Isle Educational Service District'),
(18990, 16417, 'en', 'name', 'Community Resources for Justice'),
(18991, 16418, 'no_lang_code', 'name', 'CalGavin (United Kingdom)'),
(18992, 16419, 'en', 'name', 'Centre for Studies in Social Sciences Calcutta'),
(18993, 16420, 'en', 'name', 'Community Link'),
(18994, 16421, 'no_lang_code', 'name', 'Chematur Engineering (Sweden)'),
(18995, 16422, 'no_lang_code', 'name', 'CATAS'),
(18996, 16422, 'it', 'name', 'Catas Laboratorio Analisi Legno Arredo Agroalimentare'),
(18997, 16423, 'no_lang_code', 'name', 'ChemDiv (United States)'),
(18998, 16424, 'no_lang_code', 'name', 'Chemetall (Germany)'),
(18999, 16425, 'no_lang_code', 'name', 'Compagnie EuropĆ©enne d’intelligence StratĆ©gique (France)'),
(19000, 16426, 'no_lang_code', 'name', 'Chemical Dynamics (United States)'),
(19001, 16427, 'en', 'name', 'Center for Theoretical Physics'),
(19002, 16428, 'fr', 'name', 'Centre Hospitalier ChrƩtien'),
(19003, 16429, 'en', 'name', 'Catholic Medical Mission Board'),
(19004, 16430, 'en', 'name', 'Catlin Gabel School'),
(19005, 16431, 'de', 'name', 'Chemisches und Veterinäruntersuchungsamt Münsterland-Emscher-Lippe'),
(19006, 16432, 'en', 'name', 'Los Angeles County Arboretum and Botanic Garden'),
(19007, 16433, 'no_lang_code', 'name', 'ChemRegen (United States)'),
(19008, 16434, 'no_lang_code', 'name', 'ChemRoutes (Canada)'),
(19009, 16435, 'en', 'name', 'California Coalition Against Sexual Assault'),
(19010, 16436, 'fr', 'name', 'Compagnie d''amƩnagement du Bas-RhƓne et du Languedoc'),
(19011, 16436, 'no_lang_code', 'name', 'Groupe BRL (France)'),
(19012, 16437, 'no_lang_code', 'name', 'Chemviron Carbon (United Kingdom)'),
(19013, 16438, 'no_lang_code', 'name', 'Exide Technologies (France)'),
(19014, 16439, 'no_lang_code', 'name', 'Nissatech Innovation Centre (Serbia)'),
(19015, 16440, 'no_lang_code', 'name', 'Compart (Germany)'),
(19016, 16441, 'es', 'name', 'Asociación para Poner Fin a la Violencia Doméstica de California'),
(19017, 16441, 'en', 'name', 'California Partnership to End Domestic Violence'),
(19018, 16442, 'en', 'name', 'Pasadera Behavioral Health Network'),
(19019, 16443, 'no_lang_code', 'name', 'Chart Industries (United Kingdom)'),
(19020, 16444, 'no_lang_code', 'name', 'Compass Systems (United States)'),
(19021, 16445, 'fr', 'name', 'Centre International des Technologies de l''Environnement de Tunis'),
(19022, 16446, 'en', 'name', 'California Health and Human Services Agency'),
(19023, 16447, 'no_lang_code', 'name', 'CompleGen (United States)'),
(19024, 16448, 'no_lang_code', 'name', 'Composite Integration (United Kingdom)'),
(19025, 16449, 'no_lang_code', 'name', 'Cavitation-Control Technology'),
(19026, 16450, 'no_lang_code', 'name', 'Composites Evolution (United Kingdom)'),
(19027, 16451, 'fr', 'name', 'Centre de Culture Scientifique, Technique et Industrielle'),
(19028, 16452, 'no_lang_code', 'name', 'A-Gas International (United Kingdom)'),
(19029, 16453, 'no_lang_code', 'name', 'Hummingbird Diagnostics (Germany)'),
(19030, 16454, 'fr', 'name', 'Centre National de l''Informatique'),
(19031, 16455, 'en', 'name', 'Cheyenne River Sioux Tribe Council'),
(19032, 16456, 'fr', 'name', 'Centre National de la Recherche AppliquƩe au Developpement Rural'),
(19033, 16457, 'en', 'name', 'Children’s Cancer Foundation'),
(19034, 16458, 'en', 'name', 'CB Wetlands & Environmental Specialists'),
(19035, 16459, 'en', 'name', 'Calista Elders Council'),
(19036, 16460, 'no_lang_code', 'name', 'Compugraphics (United Kingdom)'),
(19037, 16461, 'en', 'name', 'Children''s Council'),
(19038, 16462, 'en', 'name', 'Children''s Health Fund'),
(19039, 16463, 'no_lang_code', 'name', 'LETIPharma (Spain)'),
(19040, 16464, 'de', 'name', 'Business Upper Austria – OƖ Wirtschaftsagentur'),
(19041, 16465, 'en', 'name', 'Dutch Institute for Healthcare Improvement'),
(19042, 16466, 'no_lang_code', 'name', 'Altair Engineering (United States)'),
(19043, 16467, 'no_lang_code', 'name', 'CBRNE (United Kingdom)'),
(19044, 16468, 'no_lang_code', 'name', 'Folder Media'),
(19045, 16469, 'no_lang_code', 'name', 'Chilworth Technology (United Kingdom)'),
(19046, 16470, 'no_lang_code', 'name', 'CCC Diagnostics (United States)'),
(19047, 16471, 'en', 'name', 'Centre of Polymer and Carbon Materials'),
(19048, 16472, 'no_lang_code', 'name', 'Comité de Concertation et de Coordination de l''Apprentissage du Bâtiment et des Travaux Publics'),
(19049, 16473, 'fr', 'name', 'Centre RƩgional Africain des Sciences et Technologies de l''Espace'),
(19050, 16474, 'en', 'name', 'Computer Network Information Center'),
(19051, 16474, 'zh', 'name', 'č®”ē®—ęœŗē½‘ē»œäæ”ęÆäø­åæƒ'),
(19052, 16475, 'no_lang_code', 'name', 'Cambridge Consultants (United Kingdom)'),
(19053, 16476, 'en', 'name', 'Computer Professionals for Social Responsibility'),
(19054, 16477, 'en', 'name', 'Agrhymet Regional Centre'),
(19055, 16478, 'no_lang_code', 'name', 'Computer Technology Associates (United States)'),
(19056, 16479, 'no_lang_code', 'name', 'Sumitomo Chemical (United Kingdom)'),
(19057, 16480, 'en', 'name', 'Chimp Haven'),
(19058, 16481, 'en', 'name', 'China Academy of Transportation Sciences'),
(19059, 16481, 'zh', 'name', 'äŗ¤é€ščæč¾“éƒØē§‘å­¦ē ”ē©¶é™¢'),
(19060, 16482, 'no_lang_code', 'name', 'Computercraft (United States)'),
(19061, 16483, 'no_lang_code', 'name', 'Comsa Emte (Spain)'),
(19062, 16484, 'en', 'name', 'China Association of Rural Energy Industry'),
(19063, 16485, 'en', 'name', 'European-Mediterranean Seismological Centre'),
(19064, 16486, 'en', 'name', 'China National Center for Biotechnology Development'),
(19065, 16487, 'no_lang_code', 'name', 'CCTV User Group (United Kingdom)'),
(19066, 16488, 'no_lang_code', 'name', 'CDI Bioscience (United States)'),
(19067, 16489, 'no_lang_code', 'name', 'OmniVision Technologies (United States)'),
(19068, 16490, 'no_lang_code', 'name', 'Comsis (France)'),
(19069, 16491, 'en', 'name', 'China National Health Development Research Center'),
(19070, 16491, 'zh', 'name', 'å«ē”ŸéƒØå«ē”Ÿå‘å±•ē ”ē©¶äø­åæƒ'),
(19071, 16492, 'no_lang_code', 'name', 'Centro Studi Industriali'),
(19072, 16493, 'no_lang_code', 'name', 'Cambustion (United Kingdom)'),
(19073, 16494, 'en', 'name', 'Chipola College'),
(19074, 16495, 'no_lang_code', 'name', 'ALPhANOV (France)'),
(19075, 16496, 'no_lang_code', 'name', 'Cameca (France)'),
(19076, 16497, 'no_lang_code', 'name', 'Camelot Biomedical Systems (Italy)'),
(19077, 16498, 'no_lang_code', 'name', 'Concawe'),
(19078, 16499, 'it', 'name', 'Camera di Commercio di Firenze'),
(19079, 16499, 'en', 'name', 'Florence International Mediation Chamber'),
(19080, 16500, 'no_lang_code', 'name', 'Altran (Austria)'),
(19081, 16501, 'no_lang_code', 'name', 'Camfridge (United Kingdom)'),
(19082, 16502, 'no_lang_code', 'name', 'Chipworks (Canada)'),
(19083, 16503, 'no_lang_code', 'name', 'ChK Group (United States)'),
(19084, 16504, 'no_lang_code', 'name', 'Mersen (France)'),
(19085, 16505, 'en', 'name', 'College of General and Vocational Education'),
(19086, 16505, 'fr', 'name', 'Cégep de Jonquière'),
(19087, 16506, 'no_lang_code', 'name', 'Choc Edge (United Kingdom)'),
(19088, 16507, 'fr', 'name', 'CƩgep de Rimouski'),
(19089, 16508, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Netherlands)'),
(19090, 16509, 'no_lang_code', 'name', 'Cementec Industries (Canada)'),
(19091, 16510, 'no_lang_code', 'name', 'Christmann Informationstechnik + Medien (Germany)'),
(19092, 16511, 'no_lang_code', 'name', 'ChromaDex (United States)'),
(19093, 16512, 'no_lang_code', 'name', 'Sanotron'),
(19094, 16513, 'en', 'name', 'Canadian Association for Girls in Science'),
(19095, 16514, 'no_lang_code', 'name', 'Canadian Bank Note Company (Canada)'),
(19096, 16515, 'en', 'name', 'Shad'),
(19097, 16516, 'en', 'name', 'Canadian Coalition for Seniors Mental Health'),
(19098, 16517, 'no_lang_code', 'name', 'ChromoLogic (United States)'),
(19099, 16518, 'no_lang_code', 'name', 'Companhia de Equipamentos Industriais'),
(19100, 16519, 'en', 'name', 'Noranda Income Fund'),
(19101, 16520, 'it', 'name', 'INiziative Conciarie ASsociate'),
(19102, 16521, 'no_lang_code', 'name', 'Chronos Technology (United Kingdom)'),
(19103, 16522, 'en', 'name', 'Chrysalis House'),
(19104, 16523, 'en', 'name', 'Canadian Institute for the Relief of Pain and Disability'),
(19105, 16524, 'en', 'name', 'Concordia University Ann Arbor'),
(19106, 16524, 'es', 'name', 'Universidad Concordia'),
(19107, 16525, 'no_lang_code', 'name', 'CompaƱƭa IbƩrica De Paneles SintƩticos (Spain)'),
(19108, 16526, 'no_lang_code', 'name', 'Concrete Repairs (United Kingdom)'),
(19109, 16527, 'en', 'name', 'Chartered Professional Accountants of Canada'),
(19110, 16527, 'fr', 'name', 'comptable professionnel agrƩƩ'),
(19111, 16528, 'no_lang_code', 'name', 'Controle & Inspectie Bureau Brouwer (Netherlands)'),
(19112, 16529, 'no_lang_code', 'name', 'Connexor (Finland)'),
(19113, 16530, 'it', 'name', 'Confederazione Italiana della Piccola e Media Industria'),
(19114, 16531, 'no_lang_code', 'name', 'Confederación de Empresarios de Zaragoza'),
(19115, 16532, 'fr', 'name', 'Celabor'),
(19116, 16533, 'es', 'name', 'Confederacion EspaƱola De Fabricantes De Alimentos Compuestos Para Animales'),
(19117, 16534, 'fr', 'name', 'Centre d''Imagerie BioMedicale'),
(19118, 16535, 'pt', 'name', 'Centro de Estudos de Cultura Contemporânea'),
(19119, 16536, 'no_lang_code', 'name', 'Cyke (United States)'),
(19120, 16537, 'no_lang_code', 'name', 'Celica (Slovenia)'),
(19121, 16538, 'es', 'name', 'Federación Española de Padres de Niños con CÔncer'),
(19122, 16539, 'en', 'name', 'Irish Business and Employers Confederation'),
(19123, 16540, 'en', 'name', 'Confederation of Organisations in Road Transport Enforcement'),
(19124, 16541, 'no_lang_code', 'name', 'Cidete (Spain)'),
(19125, 16542, 'no_lang_code', 'name', 'Cyprus Chamber of Commerce and Industry (Cyprus)'),
(19126, 16543, 'en', 'name', 'Conference for Food Protection'),
(19127, 16544, 'no_lang_code', 'name', 'Conference Management Services'),
(19128, 16545, 'en', 'name', 'Cielo Institute'),
(19129, 16546, 'en', 'name', 'Conference of Radiation Control Program Directors'),
(19130, 16547, 'en', 'name', 'Cyprus Police'),
(19131, 16548, 'no_lang_code', 'name', 'ConfometRx (United States)'),
(19132, 16549, 'en', 'name', 'Connecticut Education Association'),
(19133, 16550, 'en', 'name', 'Connecticut State Department of Education'),
(19134, 16551, 'no_lang_code', 'name', 'ConocoPhillips (United Kingdom)'),
(19135, 16552, 'no_lang_code', 'name', 'Conoship International (Netherlands)'),
(19136, 16553, 'no_lang_code', 'name', 'Cellectis (United States)'),
(19137, 16554, 'no_lang_code', 'name', 'CIM Group (Serbia)'),
(19138, 16555, 'it', 'name', 'Consorzio Armatori per la Ricerca'),
(19139, 16555, 'en', 'name', 'Italian Shipowners Research Consortium'),
(19140, 16556, 'fr', 'name', 'Conseil EuropƩen de l''Industrie des Peintures des Encres d''Imprimerie et des Couleurs d''Art'),
(19141, 16557, 'no_lang_code', 'name', 'Cell Medica (United Kingdom)'),
(19142, 16558, 'no_lang_code', 'name', 'Cell Microsystems (United States)'),
(19143, 16559, 'es', 'name', 'Agencia de EnergĆ­a Nuclear y TecnologĆ­as de Avanzada'),
(19144, 16560, 'no_lang_code', 'name', 'Centro de Innovación de Infraestructuras Inteligentes (Spain)'),
(19145, 16561, 'no_lang_code', 'name', 'Cella Energy (United Kingdom)'),
(19146, 16562, 'no_lang_code', 'name', 'Cellbond (United Kingdom)'),
(19147, 16563, 'cs', 'name', 'Cznic'),
(19148, 16564, 'no_lang_code', 'name', 'D Addato Agroalimentare (Italy)'),
(19149, 16565, 'en', 'name', 'Cincinnati Public Schools'),
(19150, 16566, 'no_lang_code', 'name', 'Takara (France)'),
(19151, 16567, 'no_lang_code', 'name', 'Fives Landis (United Kingdom)'),
(19152, 16568, 'no_lang_code', 'name', 'Neos Resources (United Kingdom)'),
(19153, 16569, 'no_lang_code', 'name', 'CISC Semiconductor (Austria)'),
(19154, 16570, 'no_lang_code', 'name', 'Cisco Systems (United Kingdom)'),
(19155, 16571, 'no_lang_code', 'name', 'Cellix (Ireland)'),
(19156, 16572, 'no_lang_code', 'name', 'Daat Research (United States)'),
(19157, 16573, 'no_lang_code', 'name', 'Circle (United States)'),
(19158, 16574, 'no_lang_code', 'name', 'Dacon (Norway)'),
(19159, 16575, 'en', 'name', 'Miami-Dade County Public Schools'),
(19160, 16576, 'no_lang_code', 'name', 'CirComp (Germany)'),
(19161, 16577, 'no_lang_code', 'name', 'MeaningCloud (Spain)'),
(19162, 16578, 'no_lang_code', 'name', 'Cenex (United Kingdom)'),
(19163, 16579, 'de', 'name', 'Deutsche Angestellten-Gewerkschaft'),
(19164, 16579, 'en', 'name', 'German Union of Salaried Employees'),
(19165, 16580, 'no_lang_code', 'name', 'Daher (France)'),
(19166, 16581, 'no_lang_code', 'name', 'ZeptoMetrix (United States)'),
(19167, 16582, 'no_lang_code', 'name', 'Heartware International (United States)'),
(19168, 16583, 'no_lang_code', 'name', 'Consorzio CREO (Italy)'),
(19169, 16584, 'pt', 'name', 'Centro De Formação Profissional Da Indústria Da Construção Civil E Obras Públicas Do Sul'),
(19170, 16585, 'no_lang_code', 'name', 'Cellular Research (United States)'),
(19171, 16586, 'it', 'name', 'Consorzio del Formaggio Parmigiano-Reggiano'),
(19172, 16587, 'it', 'name', 'Consorzio di Bioingegneria e Informatica Medica'),
(19173, 16588, 'no_lang_code', 'name', 'Plasma (Macedonia)'),
(19174, 16589, 'no_lang_code', 'name', 'Celoxica (United Kingdom)'),
(19175, 16590, 'no_lang_code', 'name', 'Ciris IngƩnierie (France)'),
(19176, 16591, 'no_lang_code', 'name', 'Celsense (United States)'),
(19177, 16592, 'en', 'name', 'Canmore Museum and Geoscience Centre'),
(19178, 16593, 'it', 'name', 'Consorzio Italiano per la Ricerca in Medicina'),
(19179, 16594, 'en', 'name', 'Center for Asbestos Related Disease'),
(19180, 16595, 'no_lang_code', 'name', 'Smithfield BioScience (United States)'),
(19181, 16596, 'en', 'name', 'Center for Clinical Care and Research in Nigeria'),
(19182, 16597, 'no_lang_code', 'name', 'Celulose Beira Industrial (Portugal)'),
(19183, 16598, 'no_lang_code', 'name', 'Dairygold Co-Operative Society (Ireland)'),
(19184, 16599, 'en', 'name', 'Dallas Independent School District'),
(19185, 16600, 'no_lang_code', 'name', 'CIT Energy Management (Sweden)'),
(19186, 16601, 'no_lang_code', 'name', 'Damen Shipyards Group (Netherlands)'),
(19187, 16602, 'en', 'name', 'Midland University'),
(19188, 16603, 'en', 'name', 'Consortium for Research in Automatic and Telecommunications'),
(19189, 16603, 'it', 'name', 'Consorzio per la Ricerca nell''Automatica e Telecomunicazioni'),
(19190, 16604, 'no_lang_code', 'name', 'Citard Services (Cyprus)'),
(19191, 16605, 'en', 'name', 'Experimentarium'),
(19192, 16606, 'no_lang_code', 'name', 'Danaos (Greece)'),
(19193, 16607, 'en', 'name', 'Center for Governmental Research'),
(19194, 16608, 'es', 'name', 'Centro de Investigacion de las Telecomunicaciones'),
(19195, 16609, 'en', 'name', 'Center for Health Care Services'),
(19196, 16610, 'en', 'name', 'Institute of Ionized Gas'),
(19197, 16610, 'it', 'name', 'Istituto Gas Ionizzati'),
(19198, 16611, 'fr', 'name', 'CitƩ des Sciences et de l''Industrie'),
(19199, 16612, 'en', 'name', 'EcoSpark'),
(19200, 16613, 'no_lang_code', 'name', 'Citrix (United Kingdom)'),
(19201, 16614, 'en', 'name', 'Austin Health & Human Services Department'),
(19202, 16615, 'no_lang_code', 'name', 'Arena Pharmaceuticals (United States)'),
(19203, 16616, 'no_lang_code', 'name', 'Codema (Ireland)'),
(19204, 16617, 'no_lang_code', 'name', 'Constellation Technology (United States)'),
(19205, 16618, 'no_lang_code', 'name', 'GarcĆ­aRama (Spain)'),
(19206, 16619, 'no_lang_code', 'name', 'Construcciones y Auxiliar de Ferrocarriles (Spain)'),
(19207, 16620, 'no_lang_code', 'name', 'Danish Micro Engineering (Denmark)'),
(19208, 16621, 'no_lang_code', 'name', 'Construction Solutions (United States)'),
(19209, 16622, 'no_lang_code', 'name', 'Constructive Thinking Studio (United Kingdom)'),
(19210, 16623, 'no_lang_code', 'name', 'Af-cityplan (Czechia)'),
(19211, 16624, 'no_lang_code', 'name', 'DSB (Denmark)'),
(19212, 16625, 'no_lang_code', 'name', 'Danish Power Systems (Denmark)'),
(19213, 16626, 'en', 'name', 'Center for Security Studies'),
(19214, 16626, 'el', 'name', 'ĪšĪ­Ī½Ļ„ĻĪæ ĪœĪµĪ»ĪµĻ„ĻŽĪ½ Ī‘ĻƒĻ†Ī±Ī»ĪµĪÆĪ±Ļ‚'),
(19215, 16627, 'en', 'name', 'Center For Social Innovation'),
(19216, 16628, 'no_lang_code', 'name', 'Imathia Construcción (Spain)'),
(19217, 16629, 'en', 'name', 'Center for Success and Independence'),
(19218, 16630, 'en', 'name', 'Danish Ministry of Transport'),
(19219, 16630, 'da', 'name', 'Transportministeriet'),
(19220, 16631, 'no_lang_code', 'name', 'Cen Group (United Kingdom)'),
(19221, 16632, 'no_lang_code', 'name', 'Container Finance (Finland)'),
(19222, 16633, 'en', 'name', 'Contaminated Land: Applications in the Real Environments'),
(19223, 16634, 'no_lang_code', 'name', 'Contech (Canada)'),
(19224, 16635, 'no_lang_code', 'name', 'Civilized Software (United States)'),
(19225, 16636, 'no_lang_code', 'name', 'Contextual Change (United States)'),
(19226, 16637, 'en', 'name', 'Clackamas County Children''s Commission Head Start'),
(19227, 16638, 'it', 'name', 'Centro di Cultura Scientifica Alessandro Volta'),
(19228, 16639, 'en', 'name', 'Center for Transboundary Cooperation'),
(19229, 16640, 'en', 'name', 'Cemit Center of Excellence in Medicine and IT'),
(19230, 16641, 'no_lang_code', 'name', 'Control 2K'),
(19231, 16642, 'no_lang_code', 'name', 'Claremont BioSolutions (United States)'),
(19232, 16643, 'no_lang_code', 'name', 'Trust Control International (France)'),
(19233, 16644, 'no_lang_code', 'name', 'Castor Technologies (Canada)'),
(19234, 16645, 'no_lang_code', 'name', 'ControlVet (Portugal)'),
(19235, 16646, 'fr', 'name', 'La CitƩ MƩdicale'),
(19236, 16647, 'en', 'name', 'Center of Maritime Technologies'),
(19237, 16648, 'no_lang_code', 'name', 'Skulpt (United States)'),
(19238, 16649, 'no_lang_code', 'name', 'Danone (France)'),
(19239, 16650, 'en', 'name', 'Department of Consumer Protection'),
(19240, 16651, 'en', 'name', 'Danish Institute of Fire and Security Technology'),
(19241, 16651, 'da', 'name', 'Danmarks videncenter for brand og sikring'),
(19242, 16652, 'no_lang_code', 'name', 'Clariant (Germany)'),
(19243, 16653, 'no_lang_code', 'name', 'Convex Electrical (Ireland)'),
(19244, 16654, 'no_lang_code', 'name', 'Clarifica (Canada)');
INSERT INTO `ror_settings` VALUES
(19245, 16655, 'no_lang_code', 'name', 'Conwal (United States)'),
(19246, 16656, 'en', 'name', 'Centre for Planning and Economic Research'),
(19247, 16657, 'no_lang_code', 'name', 'Clarity Biosolutions (United Kingdom)'),
(19248, 16658, 'en', 'name', 'Clark County School District'),
(19249, 16659, 'no_lang_code', 'name', 'Clark-MXR (United States)'),
(19250, 16660, 'sl', 'name', 'Center za Kartografijo Favne in Flore'),
(19251, 16660, 'en', 'name', 'Centre for Cartography of Fauna and Flora'),
(19252, 16661, 'no_lang_code', 'name', 'CenterLine (Canada)'),
(19253, 16662, 'en', 'name', 'Cooperative Educational Service Agencies'),
(19254, 16663, 'no_lang_code', 'name', 'Coord3 Industries (Italy)'),
(19255, 16664, 'en', 'name', 'The Centers'),
(19256, 16665, 'no_lang_code', 'name', 'Dantec Dynamics (United Kingdom)'),
(19257, 16666, 'en', 'name', 'Clatsop Community College'),
(19258, 16667, 'no_lang_code', 'name', 'Centice (United States)'),
(19259, 16668, 'no_lang_code', 'name', 'Class Editori (Italy)'),
(19260, 16669, 'no_lang_code', 'name', 'CentMa (Germany)'),
(19261, 16670, 'es', 'name', 'Centro de Referencia Estatal de Autonomƭa Personal y Ayudas TƩcnicas'),
(19262, 16671, 'no_lang_code', 'name', 'Corac Group (United Kingdom)'),
(19263, 16672, 'en', 'name', 'European Center for Nanostructured Polymers'),
(19264, 16673, 'no_lang_code', 'name', 'DanTech (United Kingdom)'),
(19265, 16674, 'en', 'name', 'Clean Air Action Group'),
(19266, 16675, 'it', 'name', 'Centro Europeo Sviluppo Applicazioni Plastiche'),
(19267, 16676, 'no_lang_code', 'name', 'Cleancarb (Luxembourg)'),
(19268, 16677, 'no_lang_code', 'name', 'Clear Communication Associates'),
(19269, 16678, 'no_lang_code', 'name', 'Clear Guide Medical (United States)'),
(19270, 16679, 'no_lang_code', 'name', 'Michell Instruments (France)'),
(19271, 16680, 'no_lang_code', 'name', 'Roshydromet'),
(19272, 16681, 'en', 'name', 'Central Arizona College'),
(19273, 16682, 'no_lang_code', 'name', 'Coretek (United States)'),
(19274, 16683, 'no_lang_code', 'name', 'Collaborative Group (United States)'),
(19275, 16684, 'en', 'name', 'Central City Concern'),
(19276, 16685, 'en', 'name', 'Tuscaloosa City Schools'),
(19277, 16686, 'no_lang_code', 'name', 'Coriant (Germany)'),
(19278, 16687, 'en', 'name', 'Clearfield-Jefferson Drug and Alcohol Commission'),
(19279, 16688, 'no_lang_code', 'name', 'Coris BioConcept (Belgium)'),
(19280, 16689, 'en', 'name', 'Cork County Council'),
(19281, 16690, 'no_lang_code', 'name', 'Cleopa (Germany)'),
(19282, 16691, 'en', 'name', 'Virginia Community College System'),
(19283, 16692, 'it', 'name', 'Centro Estero per l''Internazionalizzazione'),
(19284, 16692, 'en', 'name', 'Piemonte Agency for Investments, Export and Tourism'),
(19285, 16693, 'no_lang_code', 'name', 'Danya Institute'),
(19286, 16694, 'no_lang_code', 'name', 'Daren Labs (Israel)'),
(19287, 16695, 'en', 'name', 'Central Laboratory for Agricultural Climate'),
(19288, 16695, 'ar', 'name', 'المعمل Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ للمناخ Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠ'),
(19289, 16696, 'no_lang_code', 'name', 'Darlow Smithson Productions (United Kingdom)'),
(19290, 16697, 'en', 'name', 'Cornwall Council'),
(19291, 16698, 'en', 'name', 'Cleveland Foundation'),
(19292, 16699, 'en', 'name', 'Tempe Union High School District'),
(19293, 16700, 'en', 'name', 'Institute of Optical Materials and Technologies Jordan Malinowski'),
(19294, 16700, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по оптически материали Šø технологии ā€œŠŠŗŠ°Š“. ЙорГан ŠœŠ°Š»ŠøŠ½Š¾Š²ŃŠŗŠøā€'),
(19295, 16701, 'no_lang_code', 'name', 'Corpora Systems (United States)'),
(19296, 16702, 'en', 'name', 'Central Laboratory of General Ecology'),
(19297, 16702, 'bg', 'name', 'Централна Š»Š°Š±Š¾Ń€Š°Ń‚Š¾Ń€ŠøŃ по обща ŠµŠŗŠ¾Š»Š¾Š³ŠøŃ'),
(19298, 16703, 'en', 'name', 'Central Maine Community College'),
(19299, 16704, 'en', 'name', 'Cleveland Hearing & Speech Center'),
(19300, 16705, 'en', 'name', 'Cleveland Municipal Court'),
(19301, 16706, 'en', 'name', 'Cleveland State Community College'),
(19302, 16707, 'no_lang_code', 'name', 'Cortexica (United Kingdom)'),
(19303, 16708, 'no_lang_code', 'name', 'Central Research Laboratories (United Kingdom)'),
(19304, 16709, 'no_lang_code', 'name', 'Clevercherry (United Kingdom)'),
(19305, 16710, 'no_lang_code', 'name', 'Corvinno Technology Transfer'),
(19306, 16711, 'en', 'name', 'CIMA Research Foundation'),
(19307, 16712, 'no_lang_code', 'name', 'Data Management (Italy)'),
(19308, 16713, 'no_lang_code', 'name', 'Cosmas (United States)'),
(19309, 16714, 'no_lang_code', 'name', 'Data-Mate (Finland)'),
(19310, 16715, 'no_lang_code', 'name', 'Data Numerica Institute (United States)'),
(19311, 16716, 'no_lang_code', 'name', 'Cosmetic (Greece)'),
(19312, 16717, 'it', 'name', 'Centro Italiano Materiali di Applicazione Calzaturiera'),
(19313, 16718, 'no_lang_code', 'name', 'Costa Edutainment'),
(19314, 16719, 'no_lang_code', 'name', 'PixelMill (United Kingdom)'),
(19315, 16720, 'en', 'name', 'Couleecap'),
(19316, 16721, 'en', 'name', 'Clifford Beers Clinic'),
(19317, 16722, 'en', 'name', 'Clifford Chance'),
(19318, 16723, 'pt', 'name', 'Centro Operativo e de Tecnologia de Regadio'),
(19319, 16724, 'no_lang_code', 'name', 'ClimateWell (Sweden)'),
(19320, 16725, 'en', 'name', 'Council for Basic Education'),
(19321, 16726, 'no_lang_code', 'name', 'Converspeech (United States)'),
(19322, 16727, 'en', 'name', 'Center for Economic Research and Environmental Strategy'),
(19323, 16728, 'no_lang_code', 'name', 'CCL Biomedical (United States)'),
(19324, 16729, 'no_lang_code', 'name', 'CEDEO (Italy)'),
(19325, 16730, 'no_lang_code', 'name', 'Clinical Innovations (United States)'),
(19326, 16731, 'no_lang_code', 'name', 'ClinInfo (France)'),
(19327, 16732, 'en', 'name', 'Council of State Science Supervisors'),
(19328, 16733, 'en', 'name', 'Council on Alcoholism and Drug Abuse'),
(19329, 16734, 'no_lang_code', 'name', 'CLMS (United Kingdom)'),
(19330, 16735, 'en', 'name', 'Cliff Funnell Associates'),
(19331, 16736, 'en', 'name', 'Association of Directors of Environment, Economy, Planning and Transport'),
(19332, 16737, 'en', 'name', 'Gateway ImpACT Coalition'),
(19333, 16738, 'no_lang_code', 'name', 'Creative Action (United States)'),
(19334, 16739, 'no_lang_code', 'name', 'Clopinet'),
(19335, 16740, 'no_lang_code', 'name', 'Romus (Spain)'),
(19336, 16741, 'no_lang_code', 'name', 'Federal Mogul (Sweden)'),
(19337, 16742, 'no_lang_code', 'name', 'DataFlow/Alaska (United States)'),
(19338, 16743, 'no_lang_code', 'name', 'CloudSigma (Switzerland)'),
(19339, 16744, 'pt', 'name', 'CĆ¢mara Municipal de Beja'),
(19340, 16745, 'no_lang_code', 'name', 'CLU (Italy)'),
(19341, 16746, 'en', 'name', 'Courtesy Associates'),
(19342, 16747, 'en', 'name', 'Basque Energy Cluster'),
(19343, 16747, 'es', 'name', 'Cluster de EnergĆ­a'),
(19344, 16748, 'pt', 'name', 'CĆ¢mara Municipal do Porto'),
(19345, 16749, 'no_lang_code', 'name', 'Covalab (France)'),
(19346, 16750, 'no_lang_code', 'name', 'Datamat (Italy)'),
(19347, 16751, 'no_lang_code', 'name', 'Datamed Systems Integration (Greece)'),
(19348, 16752, 'it', 'name', 'Centro Ricerche Economico Sociali'),
(19349, 16752, 'en', 'name', 'Economical and Social Research Centre'),
(19350, 16753, 'no_lang_code', 'name', 'DataMED (Italy)'),
(19351, 16754, 'no_lang_code', 'name', 'AAC Clyde Space (United Kingdom)'),
(19352, 16755, 'no_lang_code', 'name', 'Beasy (United Kingdom)'),
(19353, 16756, 'no_lang_code', 'name', 'Colorex Master Batch (Netherlands)'),
(19354, 16757, 'no_lang_code', 'name', 'Covesion (United Kingdom)'),
(19355, 16758, 'no_lang_code', 'name', 'Cox Analytical Systems (Sweden)'),
(19356, 16759, 'nl', 'name', 'Centraal Orgaan voor Kwaliteitsaangelegenheden in de Zuivel'),
(19357, 16759, 'en', 'name', 'Netherlands Controlling Authority for Milk and Milk Products'),
(19358, 16760, 'en', 'name', 'Day One'),
(19359, 16761, 'en', 'name', 'Censis Foundation - Center for Social Studies'),
(19360, 16761, 'it', 'name', 'Fondazione Censis - Centro Studi Investimenti Sociali'),
(19361, 16762, 'nl', 'name', 'DCMR Milieudienst Rijnmond'),
(19362, 16763, 'no_lang_code', 'name', 'Exide Technologies (United Kingdom)'),
(19363, 16764, 'no_lang_code', 'name', 'Crabbe Consulting'),
(19364, 16765, 'no_lang_code', 'name', 'Craftsman Tools (United Kingdom)'),
(19365, 16766, 'en', 'name', 'Craftspace'),
(19366, 16767, 'en', 'name', 'Cranbrook Institute of Science'),
(19367, 16768, 'no_lang_code', 'name', 'De Neef Chemical Processing (Belgium)'),
(19368, 16769, 'en', 'name', 'Crawley Borough Council'),
(19369, 16770, 'no_lang_code', 'name', 'Centronic (United Kingdom)'),
(19370, 16771, 'en', 'name', 'International Centre of Biodynamics'),
(19371, 16772, 'en', 'name', 'Department for Digital, Culture, Media & Sport'),
(19372, 16772, 'cy', 'name', 'Yr Adran Ddigidol, Diwylliant, Cyfryngau a Chwaraeon'),
(19373, 16773, 'no_lang_code', 'name', 'CNH Industrial (Belgium)'),
(19374, 16774, 'en', 'name', 'Department for Education'),
(19375, 16775, 'en', 'name', 'Deafinitely Theatre'),
(19376, 16776, 'ro', 'name', 'Centrul pentru Promovarea Energiei Curate si Eficiente in Romania'),
(19377, 16777, 'en', 'name', 'Hearing Health Foundation'),
(19378, 16778, 'en', 'name', 'Dean Associates'),
(19379, 16779, 'en', 'name', 'Creative Scotland'),
(19380, 16780, 'no_lang_code', 'name', 'Creative Systems Engineering (Greece)'),
(19381, 16781, 'no_lang_code', 'name', 'Dearman (United Kingdom)'),
(19382, 16782, 'no_lang_code', 'name', 'Creme Global (Ireland)'),
(19383, 16783, 'no_lang_code', 'name', 'Vinngroup (Sweden)'),
(19384, 16784, 'no_lang_code', 'name', 'Gizelis Robotics (Greece)'),
(19385, 16785, 'en', 'name', 'PreventionFirst'),
(19386, 16786, 'en', 'name', 'Coastal Behavioral Healthcare'),
(19387, 16787, 'en', 'name', 'Coastal Horizons Center'),
(19388, 16788, 'no_lang_code', 'name', 'Sun Chemical (United Kingdom)'),
(19389, 16789, 'en', 'name', 'Department of Atomic Energy'),
(19390, 16789, 'hi', 'name', 'ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤Šą¤°ą„ą¤œą¤¾ विभाग'),
(19391, 16789, 'ta', 'name', 'அணு ą®šą®•ąÆą®¤ą®æą®¤ąÆą®¤ąÆą®±ąÆˆ'),
(19392, 16789, 'ml', 'name', 'ą“†ą“£ą“µąµ‹ąµ¼ą“œąµą“œ ą“µą“•ąµą“Ŗąµą“Ŗąµ'),
(19393, 16790, 'en', 'name', 'Decatur Memorial Hospital'),
(19394, 16791, 'no_lang_code', 'name', 'Ceps (Czechia)'),
(19395, 16792, 'no_lang_code', 'name', 'Coaxial Power Systems (United Kingdom)'),
(19396, 16793, 'it', 'name', 'Centro Europa Ricerche'),
(19397, 16794, 'en', 'name', 'Colby–Sawyer College'),
(19398, 16795, 'en', 'name', 'Crimean Astrophysical Observatory'),
(19399, 16795, 'uk', 'name', 'ŠšŃ€Ń‹Š¼ŃŠŗŠ°Ń Š°ŃŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(19400, 16796, 'no_lang_code', 'name', 'Codamotion (United Kingdom)'),
(19401, 16797, 'no_lang_code', 'name', 'Codeplay (United Kingdom)'),
(19402, 16798, 'nl', 'name', 'Crisisplan'),
(19403, 16799, 'no_lang_code', 'name', 'Elektrobit (Austria)'),
(19404, 16800, 'no_lang_code', 'name', 'Codrico (Netherlands)'),
(19405, 16801, 'no_lang_code', 'name', 'CeramOptec (Germany)'),
(19406, 16802, 'no_lang_code', 'name', 'Deimos Engenharia (Portugal)'),
(19407, 16803, 'en', 'name', 'DeKalb County Board of Health'),
(19408, 16804, 'no_lang_code', 'name', 'Critical Systems Labs'),
(19409, 16805, 'no_lang_code', 'name', 'Dekati (Finland)'),
(19410, 16806, 'no_lang_code', 'name', 'Coexpair (Belgium)'),
(19411, 16807, 'no_lang_code', 'name', 'Croda (United Kingdom)'),
(19412, 16808, 'no_lang_code', 'name', 'Dekimo (Belgium)'),
(19413, 16809, 'no_lang_code', 'name', 'Dekra (Germany)'),
(19414, 16810, 'no_lang_code', 'name', 'TechnipFMC (France)'),
(19415, 16811, 'en', 'name', 'Cross-Border Research Association'),
(19416, 16812, 'no_lang_code', 'name', 'COG Analytics (United States)'),
(19417, 16813, 'no_lang_code', 'name', 'Delap & Waller (Ireland)'),
(19418, 16814, 'no_lang_code', 'name', 'CrossLang (Belgium)'),
(19419, 16815, 'no_lang_code', 'name', 'Cogent Technology (United Kingdom)'),
(19420, 16816, 'en', 'name', 'Delaware Coalition Against Domestic Violence'),
(19421, 16817, 'no_lang_code', 'name', 'Cerebral Diagnostics (Canada)'),
(19422, 16818, 'no_lang_code', 'name', 'Ceremed (United States)'),
(19423, 16819, 'no_lang_code', 'name', 'Cognia (United States)'),
(19424, 16820, 'no_lang_code', 'name', 'Ceres Power (United Kingdom)'),
(19425, 16821, 'no_lang_code', 'name', 'Cryogel (France)'),
(19426, 16822, 'no_lang_code', 'name', 'Cohera Medical (United States)'),
(19427, 16823, 'pt', 'name', 'Centro de Recursos Naturais, Ambiente e Sociedade'),
(19428, 16823, 'en', 'name', 'Research Center for Natural Resources, Environment and Society'),
(19429, 16824, 'no_lang_code', 'name', 'Delfoi (Finland)'),
(19430, 16825, 'no_lang_code', 'name', 'New Hampshire Ball Bearings (Germany)'),
(19431, 16826, 'no_lang_code', 'name', 'Crystal Research (United States)'),
(19432, 16827, 'en', 'name', 'Cerritos College'),
(19433, 16828, 'en', 'name', 'Delgado Community College'),
(19434, 16829, 'en', 'name', 'Cimosa'),
(19435, 16830, 'no_lang_code', 'name', 'CertiChem (United States)'),
(19436, 16831, 'no_lang_code', 'name', 'Coherent (United Kingdom)'),
(19437, 16832, 'no_lang_code', 'name', 'Powerway (United States)'),
(19438, 16833, 'no_lang_code', 'name', 'CertiFlyer (Netherlands)'),
(19439, 16834, 'no_lang_code', 'name', 'Deliverics (United Kingdom)'),
(19440, 16835, 'en', 'name', 'Computer Emergency Response Team'),
(19441, 16836, 'no_lang_code', 'name', 'Coillte (Ireland)'),
(19442, 16837, 'no_lang_code', 'name', 'Delley Seeds and Plants (Switzerland)'),
(19443, 16838, 'no_lang_code', 'name', 'Certus Technology (United Kingdom)'),
(19444, 16839, 'no_lang_code', 'name', 'Crown Packaging (United Kingdom)'),
(19445, 16840, 'no_lang_code', 'name', 'Delong Instruments (Czechia)'),
(19446, 16841, 'no_lang_code', 'name', 'Aptiv (United Kingdom)'),
(19447, 16842, 'no_lang_code', 'name', 'Delphinus Medical Technologies (United States)'),
(19448, 16843, 'en', 'name', 'Colchester School District'),
(19449, 16844, 'no_lang_code', 'name', 'Delsys (United States)'),
(19450, 16845, 'en', 'name', 'Delta College'),
(19451, 16846, 'no_lang_code', 'name', 'Domologic (Germany)'),
(19452, 16847, 'no_lang_code', 'name', 'CSTI Acoustics (United States)'),
(19453, 16848, 'no_lang_code', 'name', 'DompƩ (Italy)'),
(19454, 16849, 'no_lang_code', 'name', 'Delta Extinguishers (Belgium)'),
(19455, 16850, 'no_lang_code', 'name', 'Collagen Medical (United States)'),
(19456, 16851, 'en', 'name', 'Domus Academy'),
(19457, 16852, 'no_lang_code', 'name', 'Delta Technologies Sud Ouest (France)'),
(19458, 16853, 'no_lang_code', 'name', 'Delta T Devices (United Kingdom)'),
(19459, 16854, 'en', 'name', 'Harrington Cancer Center'),
(19460, 16855, 'no_lang_code', 'name', 'Deltagen (United States)'),
(19461, 16856, 'no_lang_code', 'name', 'Deltatec (Belgium)'),
(19462, 16857, 'no_lang_code', 'name', 'DEMO Consultants'),
(19463, 16858, 'en', 'name', 'Department of the Environment'),
(19464, 16859, 'en', 'name', 'Democenter'),
(19465, 16859, 'it', 'name', 'Fondazione Democenter'),
(19466, 16860, 'no_lang_code', 'name', 'Hungarian Central Statistical Office'),
(19467, 16861, 'no_lang_code', 'name', 'Demuris (United Kingdom)'),
(19468, 16862, 'en', 'name', 'College of Saint Elizabeth'),
(19469, 16863, 'en', 'name', 'College of Saint Mary'),
(19470, 16864, 'no_lang_code', 'name', 'Denkstatt Bulgaria (Bulgaria)'),
(19471, 16865, 'en', 'name', 'College of the Redwoods'),
(19472, 16866, 'no_lang_code', 'name', 'Colligo (Canada)'),
(19473, 16867, 'no_lang_code', 'name', 'Denso (Germany)'),
(19474, 16868, 'en', 'name', 'Matanuska-Susitna Borough School District'),
(19475, 16869, 'no_lang_code', 'name', 'Competitive Design Network (Spain)'),
(19476, 16870, 'en', 'name', 'Colorado Coalition for the Homeless'),
(19477, 16871, 'en', 'name', 'Colorado Neurological Institute'),
(19478, 16872, 'no_lang_code', 'name', 'Rio Mobility (United States)'),
(19479, 16873, 'no_lang_code', 'name', 'Corporate Communications Group (United States)'),
(19480, 16874, 'no_lang_code', 'name', 'Crystallume (United States)'),
(19481, 16875, 'en', 'name', 'Derby City Council'),
(19482, 16876, 'no_lang_code', 'name', 'Dacord (United Kingdom)'),
(19483, 16877, 'no_lang_code', 'name', 'Columbus NanoWorks (United States)'),
(19484, 16878, 'de', 'name', 'Institut für Forschung und Transfer'),
(19485, 16879, 'no_lang_code', 'name', 'Columbus Superconductors (Italy)'),
(19486, 16880, 'no_lang_code', 'name', 'CS Communication & SystĆØmes (France)'),
(19487, 16881, 'no_lang_code', 'name', 'Dotsoft (Greece)'),
(19488, 16882, 'en', 'name', 'Washington Township Fire Department'),
(19489, 16883, 'no_lang_code', 'name', 'CS Transport (France)'),
(19490, 16884, 'no_lang_code', 'name', 'Moog CSA Engineering (United States)'),
(19491, 16885, 'no_lang_code', 'name', 'ConStat'),
(19492, 16886, 'no_lang_code', 'name', 'Double Helix (United States)'),
(19493, 16887, 'no_lang_code', 'name', 'Double Delta (Hungary)'),
(19494, 16888, 'no_lang_code', 'name', 'Double S Instructional Systems'),
(19495, 16889, 'en', 'name', 'Derry City Council'),
(19496, 16890, 'no_lang_code', 'name', 'Comelz (Italy)'),
(19497, 16891, 'no_lang_code', 'name', 'Comexi Group (Spain)'),
(19498, 16892, 'it', 'name', 'Ev-K2-Cnr'),
(19499, 16893, 'no_lang_code', 'name', 'Edelweiss Connect (Switzerland)'),
(19500, 16894, 'no_lang_code', 'name', 'Dsan Research Solutions'),
(19501, 16895, 'it', 'name', 'Comitato Termotecnico Italiano Energia e Ambiente'),
(19502, 16896, 'fr', 'name', 'RĆ©seau pour la Transition ƉnergĆ©tique'),
(19503, 16897, 'no_lang_code', 'name', 'Anton Paar (Switzerland)'),
(19504, 16898, 'en', 'name', 'Douglas County Health Department'),
(19505, 16899, 'de', 'name', 'Leonardo Büro Sachsen Anhalt'),
(19506, 16900, 'en', 'name', 'Design Business Association'),
(19507, 16901, 'no_lang_code', 'name', 'Design Science (United States)'),
(19508, 16902, 'no_lang_code', 'name', 'Element Materials Technology (Sweden)'),
(19509, 16903, 'en', 'name', 'Danish Film Institute'),
(19510, 16904, 'no_lang_code', 'name', 'Dow Chemical (Netherlands)'),
(19511, 16905, 'pt', 'name', 'Centro InteruniversitÔrio de História das Ciências e da Tecnologia'),
(19512, 16906, 'no_lang_code', 'name', 'Energetiq Technology (United States)'),
(19513, 16907, 'no_lang_code', 'name', 'Dow Chemical (Belgium)'),
(19514, 16908, 'no_lang_code', 'name', 'Dow Chemical (United Kingdom)'),
(19515, 16909, 'no_lang_code', 'name', 'Bausch Health (United States)'),
(19516, 16910, 'no_lang_code', 'name', 'Veolia (Italy)'),
(19517, 16911, 'no_lang_code', 'name', 'Container Speditions und Transportgesellschaft (Germany)'),
(19518, 16912, 'no_lang_code', 'name', 'Energidalen (Sweden)'),
(19519, 16913, 'no_lang_code', 'name', 'Basler & Hofmann (Switzerland)'),
(19520, 16914, 'no_lang_code', 'name', 'Dr Matzat & Co (Germany)'),
(19521, 16915, 'no_lang_code', 'name', 'Lakka (Finland)'),
(19522, 16916, 'no_lang_code', 'name', 'Energrid (Italy)'),
(19523, 16917, 'de', 'name', 'Kulturrat Ɩsterreich'),
(19524, 16918, 'en', 'name', 'Energy Agency of Plovdiv'),
(19525, 16919, 'cs', 'name', 'Energy Centre Ceske Budejovice'),
(19526, 16920, 'no_lang_code', 'name', 'Energy Consulting Network (Denmark)'),
(19527, 16921, 'no_lang_code', 'name', 'Biomer (Germany)'),
(19528, 16922, 'en', 'name', 'Detroit Recovery Project'),
(19529, 16923, 'en', 'name', 'Dr Williams''s Library'),
(19530, 16924, 'en', 'name', 'Carinthian Tech Research'),
(19531, 16925, 'fr', 'name', 'Terre des Sciences'),
(19532, 16926, 'en', 'name', 'Center for Community Health Education Research and Service'),
(19533, 16927, 'en', 'name', 'Energy System Analysis and Planning'),
(19534, 16928, 'no_lang_code', 'name', 'Deutsche Energy Agency (Germany)'),
(19535, 16929, 'no_lang_code', 'name', 'CTVC (United Kingdom)'),
(19536, 16930, 'no_lang_code', 'name', 'Dr. Hƶnle (Germany)'),
(19537, 16931, 'no_lang_code', 'name', 'Herry Consult (Austria)'),
(19538, 16932, 'no_lang_code', 'name', 'EnerSearch'),
(19539, 16933, 'no_lang_code', 'name', 'Dr. SchƤr (Italy)'),
(19540, 16934, 'no_lang_code', 'name', 'RTD Services (Austria)'),
(19541, 16935, 'en', 'name', 'Cuesta College'),
(19542, 16936, 'no_lang_code', 'name', 'EnerTech (United States)'),
(19543, 16937, 'no_lang_code', 'name', 'Enervana Technologies (United States)'),
(19544, 16938, 'no_lang_code', 'name', 'MVV Energie (Germany)'),
(19545, 16938, 'en', 'name', 'MVV Energy'),
(19546, 16939, 'en', 'name', 'Engage'),
(19547, 16940, 'no_lang_code', 'name', 'Engage (Germany)'),
(19548, 16941, 'no_lang_code', 'name', 'BASF (Netherlands)'),
(19549, 16942, 'en', 'name', 'Culex Environmental'),
(19550, 16943, 'de', 'name', 'Deutsche Gesellschaft für Galvano- und Oberflächentechnik'),
(19551, 16944, 'no_lang_code', 'name', 'Culgi (Netherlands)'),
(19552, 16945, 'no_lang_code', 'name', 'Culminatum Innovation (Finland)'),
(19553, 16946, 'no_lang_code', 'name', 'EngeniusMicro (United States)'),
(19554, 16947, 'no_lang_code', 'name', 'DrƤger (Germany)'),
(19555, 16948, 'no_lang_code', 'name', 'Materials Technology (United Kingdom)'),
(19556, 16949, 'no_lang_code', 'name', 'Engineering Acoustics (United States)'),
(19557, 16950, 'en', 'name', 'Dream of Hattiesburg'),
(19558, 16951, 'no_lang_code', 'name', 'Dresden Elektronik Ingenieurtechnik (Germany)'),
(19559, 16952, 'en', 'name', 'Bacon Street'),
(19560, 16953, 'no_lang_code', 'name', 'Engineering Arts (United States)'),
(19561, 16954, 'no_lang_code', 'name', 'Drug Prevention Resources'),
(19562, 16955, 'de', 'name', 'Deutsches Rotes Kreuz'),
(19563, 16955, 'en', 'name', 'German Red Cross'),
(19564, 16956, 'no_lang_code', 'name', 'EuroPhoton (Germany)'),
(19565, 16957, 'no_lang_code', 'name', 'DRVision Technologies (United States)'),
(19566, 16958, 'no_lang_code', 'name', 'Europlasma (Belgium)'),
(19567, 16959, 'no_lang_code', 'name', 'Cummins (United Kingdom)'),
(19568, 16960, 'no_lang_code', 'name', 'Cup 2000 (Italy)'),
(19569, 16961, 'no_lang_code', 'name', 'Europliroforissi'),
(19570, 16962, 'no_lang_code', 'name', 'Dynamic Systems Analysis (Canada)'),
(19571, 16963, 'no_lang_code', 'name', 'DSI Informationstechnik (Germany)'),
(19572, 16964, 'no_lang_code', 'name', 'Engineering Data Management'),
(19573, 16965, 'no_lang_code', 'name', 'Rogers (Germany)'),
(19574, 16966, 'no_lang_code', 'name', 'Cureveda (United States)'),
(19575, 16967, 'no_lang_code', 'name', 'DTK Electronics (Bulgaria)'),
(19576, 16968, 'en', 'name', 'Coating Development'),
(19577, 16968, 'fr', 'name', 'Coating DƩveloppement'),
(19578, 16969, 'en', 'name', 'Engineering Employers'' Federation'),
(19579, 16970, 'no_lang_code', 'name', 'Promotora de Informaciones (Spain)'),
(19580, 16971, 'no_lang_code', 'name', 'Curious Directive (United Kingdom)'),
(19581, 16972, 'no_lang_code', 'name', 'Curtumes Aveneda (Portugal)'),
(19582, 16973, 'no_lang_code', 'name', 'Engineering Link (Canada)'),
(19583, 16974, 'no_lang_code', 'name', 'Euroscreen (Belgium)'),
(19584, 16975, 'no_lang_code', 'name', 'Eurosolare (Italy)'),
(19585, 16976, 'no_lang_code', 'name', 'Eurospider Information Technology (Switzerland)'),
(19586, 16977, 'no_lang_code', 'name', 'Developmental Technologies (United States)'),
(19587, 16978, 'no_lang_code', 'name', 'Eurospital (Italy)'),
(19588, 16979, 'no_lang_code', 'name', 'Euskaltel (Spain)'),
(19589, 16980, 'no_lang_code', 'name', 'DTV Consultants (Netherlands)'),
(19590, 16981, 'en', 'name', 'Devon County Council'),
(19591, 16982, 'no_lang_code', 'name', 'Thinkpath Engineering Services (Canada)'),
(19592, 16983, 'no_lang_code', 'name', 'DeWitt Tool (United States)'),
(19593, 16984, 'no_lang_code', 'name', 'DuPont (Spain)'),
(19594, 16985, 'no_lang_code', 'name', 'Cv Cryptovision (Germany)'),
(19595, 16986, 'no_lang_code', 'name', 'Engineering Software Research and Development (United States)'),
(19596, 16987, 'en', 'name', 'Dubuque County Safe Youth Coalition'),
(19597, 16988, 'no_lang_code', 'name', 'EnginSoft (United Kingdom)'),
(19598, 16989, 'no_lang_code', 'name', 'Volkswagen Group (Italy)'),
(19599, 16990, 'no_lang_code', 'name', 'Engitech (Cyprus)'),
(19600, 16991, 'no_lang_code', 'name', 'Data Fusion Research Center'),
(19601, 16992, 'no_lang_code', 'name', 'Dg Technology Service'),
(19602, 16993, 'no_lang_code', 'name', 'Duferco (Belgium)'),
(19603, 16994, 'en', 'name', 'Washington Center for Psychoanalysis'),
(19604, 16995, 'en', 'name', 'Ukrainian Anti Cancer Institute'),
(19605, 16995, 'de', 'name', 'Ukrainisches Institut für Krebsbekämpfung'),
(19606, 16996, 'en', 'name', 'Washington School for the Deaf'),
(19607, 16997, 'en', 'name', 'Washington State Department of Ecology'),
(19608, 16998, 'en', 'name', 'Wright Institute'),
(19609, 16999, 'no_lang_code', 'name', 'DH Consultancy BVBA (Belgium)'),
(19610, 17000, 'en', 'name', 'Glasgow Victoria Infirmary'),
(19611, 17001, 'no_lang_code', 'name', 'China National Pharmaceutical Group Corporation (China)'),
(19612, 17001, 'zh', 'name', 'äø­å›½åŒ»čÆé›†å›¢ę€»å…¬åø'),
(19613, 17002, 'en', 'name', 'Victorian Infectious Diseases Reference Laboratory'),
(19614, 17003, 'no_lang_code', 'name', 'Waters (United States)'),
(19615, 17004, 'en', 'name', 'Watson Clinic'),
(19616, 17005, 'en', 'name', 'United Lincolnshire Hospitals NHS Trust'),
(19617, 17006, 'en', 'name', 'Canterbury Medical Research Foundation'),
(19618, 17007, 'it', 'name', 'Fondazione Vincenzo Pansadoro'),
(19619, 17007, 'en', 'name', 'Vincenzo Pansadoro Foundation'),
(19620, 17008, 'no_lang_code', 'name', 'Celsion (United States)'),
(19621, 17009, 'en', 'name', 'Wessex Regional Genetics Laboratory'),
(19622, 17010, 'en', 'name', 'Velindre NHS Trust'),
(19623, 17011, 'en', 'name', 'Perinatal Institute'),
(19624, 17012, 'en', 'name', 'J. Iverson Riddle Developmental Center'),
(19625, 17013, 'no_lang_code', 'name', 'Cyberce (Greece)'),
(19626, 17014, 'en', 'name', 'Yale Griffin Prevention Research Center'),
(19627, 17015, 'no_lang_code', 'name', 'Cyberlightning (Finland)'),
(19628, 17016, 'en', 'name', 'Vavilov Institute of General Genetics'),
(19629, 17016, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей генетики им. Š.И. Вавилова Российской акаГемии наук'),
(19630, 17017, 'no_lang_code', 'name', 'Cybermoor (United Kingdom)'),
(19631, 17018, 'no_lang_code', 'name', 'Yamasa Corporation (Japan)'),
(19632, 17018, 'ja', 'name', 'ćƒ¤ćƒžć‚µé†¤ę²¹'),
(19633, 17019, 'en', 'name', 'ViteroRetinal Surgery'),
(19634, 17020, 'en', 'name', 'Vision Cooperative Research Centre'),
(19635, 17021, 'no_lang_code', 'name', 'Crest Nicholson (United Kingdom)'),
(19636, 17022, 'no_lang_code', 'name', 'Visioncare Research'),
(19637, 17023, 'en', 'name', 'Wichita Clinic'),
(19638, 17024, 'en', 'name', 'York College of Pennsylvania'),
(19639, 17025, 'en', 'name', 'Department of Health and Social Affairs'),
(19640, 17026, 'pt', 'name', 'Gabinete de Estudos Olisiponenses'),
(19641, 17027, 'en', 'name', 'Wingate Institute'),
(19642, 17027, 'he', 'name', 'מכון וינגייט'),
(19643, 17028, 'en', 'name', 'William Thomas Grant Foundation'),
(19644, 17029, 'en', 'name', 'William Alanson White Institute'),
(19645, 17030, 'no_lang_code', 'name', 'European & International Federation of Natural Stone Industries'),
(19646, 17030, 'fr', 'name', 'Federation Europeenne & Internationale des Industries de la Pierre Naturelle'),
(19647, 17031, 'en', 'name', 'Dorset Green Technology Park'),
(19648, 17032, 'en', 'name', 'Vitiligo and Pigmentation Institute of Southern California'),
(19649, 17033, 'fr', 'name', 'FƩdƩration de la Plasturgie'),
(19650, 17034, 'en', 'name', 'Federation of European Publishers'),
(19651, 17035, 'en', 'name', 'Vittal Mallya Scientific Research Foundation'),
(19652, 17036, 'en', 'name', 'YR Gaitonde Centre for AIDS Research and Education'),
(19653, 17037, 'fr', 'name', 'FƩdƩration des Parcs Naturels RƩgionaux'),
(19654, 17038, 'ms', 'name', 'Institut Penyelidikan Veterinar'),
(19655, 17039, 'en', 'name', 'European Federation of Nurses Associations'),
(19656, 17040, 'en', 'name', 'Vollum Institute'),
(19657, 17041, 'no_lang_code', 'name', 'Dassault SystĆØmes (Germany)'),
(19658, 17042, 'en', 'name', 'Federation of American Scientists'),
(19659, 17043, 'en', 'name', 'William S. Hall Psychiatric Institute'),
(19660, 17044, 'en', 'name', 'Federation of European Motorcyclists Associations'),
(19661, 17045, 'sr', 'name', 'Zdravstveni centar'),
(19662, 17046, 'en', 'name', 'Institutul National Victor Babes'),
(19663, 17047, 'en', 'name', 'W.K. Kellogg Foundation'),
(19664, 17048, 'en', 'name', 'National Federation of Families for Children''s Mental Health'),
(19665, 17049, 'en', 'name', 'Federation of Families of South Carolina'),
(19666, 17050, 'en', 'name', 'Wolfe Eye Clinic'),
(19667, 17051, 'en', 'name', 'Wakefield Orthopaedic Clinic'),
(19668, 17052, 'no_lang_code', 'name', 'Zenyaku Kogyo (Japan)'),
(19669, 17052, 'ja', 'name', 'å…Øč–¬å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(19670, 17053, 'de', 'name', 'Vivantes Klinikum'),
(19671, 17054, 'en', 'name', 'Hellenic Federation of Enterprises'),
(19672, 17055, 'en', 'name', 'Federation of Greek Mariculture'),
(19673, 17056, 'en', 'name', 'Federation of Industries of Northern Greece'),
(19674, 17057, 'en', 'name', 'Zhejiang Center for Disease Control and Prevention'),
(19675, 17057, 'zh', 'name', 'ęµ™ę±Ÿēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(19676, 17058, 'no_lang_code', 'name', 'Duffy Engineering and Associates (United States)'),
(19677, 17059, 'en', 'name', 'Waldo County Healthcare'),
(19678, 17060, 'en', 'name', 'Wallace Laboratories'),
(19679, 17061, 'no_lang_code', 'name', 'Englekirk (United States)'),
(19680, 17062, 'en', 'name', 'English Courtyards'),
(19681, 17063, 'en', 'name', 'Zhejiang Police College'),
(19682, 17063, 'zh', 'name', 'ęµ™ę±Ÿč­¦åÆŸå­¦é™¢'),
(19683, 17064, 'en', 'name', 'Federation of the European Sporting Goods Industry'),
(19684, 17065, 'en', 'name', 'Zibo Vocational Institute'),
(19685, 17066, 'no_lang_code', 'name', 'Enigma Diagnostics (United Kingdom)'),
(19686, 17067, 'fr', 'name', 'FĆ©dĆ©ration Nationale des Centres d''Initiatives pour Valoriser l’Agriculture et le Milieu Rural'),
(19687, 17068, 'en', 'name', 'Federation of Clinical Immunology Societies'),
(19688, 17069, 'no_lang_code', 'name', 'Stantec (United States)'),
(19689, 17070, 'no_lang_code', 'name', 'DynaVox (United States)'),
(19690, 17071, 'no_lang_code', 'name', 'Enkon (Turkey)'),
(19691, 17072, 'en', 'name', 'Warren Clinic'),
(19692, 17073, 'no_lang_code', 'name', 'KBC Advanced Technologies (United Kingdom)'),
(19693, 17074, 'no_lang_code', 'name', 'FEIG Electronic (Germany)'),
(19694, 17075, 'no_lang_code', 'name', 'DAS Environmental Expert (Germany)'),
(19695, 17076, 'no_lang_code', 'name', 'Ennovatis (Germany)'),
(19696, 17077, 'en', 'name', 'Evaluation and Training Institute'),
(19697, 17078, 'en', 'name', 'Dupage County Health Department'),
(19698, 17079, 'no_lang_code', 'name', 'IHS Markit (Canada)'),
(19699, 17080, 'no_lang_code', 'name', 'Current Water Technologies (Canada)'),
(19700, 17081, 'no_lang_code', 'name', 'Enpro Consult (Bulgaria)'),
(19701, 17082, 'en', 'name', 'Union of Agricultural Cooperatives of Peza'),
(19702, 17083, 'no_lang_code', 'name', 'Solvay (Netherlands)'),
(19703, 17084, 'no_lang_code', 'name', 'Britwind (United Kingdom)'),
(19704, 17085, 'no_lang_code', 'name', 'FemtoScale (United States)'),
(19705, 17086, 'en', 'name', 'Washington Institute of Dermatologic Laser Surgery'),
(19706, 17087, 'en', 'name', 'Washington Poison Center'),
(19707, 17088, 'no_lang_code', 'name', 'Fenix TNT (Czechia)'),
(19708, 17089, 'no_lang_code', 'name', 'DuPont (Germany)'),
(19709, 17090, 'no_lang_code', 'name', 'Dura Vermeer (Netherlands)'),
(19710, 17091, 'no_lang_code', 'name', 'EnSilica (United Kingdom)'),
(19711, 17092, 'no_lang_code', 'name', 'Fent Innovative Software Solutions (Spain)'),
(19712, 17093, 'no_lang_code', 'name', 'FEO Solutions (United States)'),
(19713, 17094, 'no_lang_code', 'name', 'Ivanhoe Energy (Canada)'),
(19714, 17095, 'en', 'name', 'Durham County Council'),
(19715, 17096, 'en', 'name', 'National Park of Abruzzo'),
(19716, 17096, 'it', 'name', 'Parco Nazionale d''Abruzzo'),
(19717, 17097, 'fr', 'name', 'FƩdƩration des Plastiques et Alliances Composites'),
(19718, 17098, 'no_lang_code', 'name', 'Kromek (United Kingdom)'),
(19719, 17099, 'no_lang_code', 'name', 'Evening Star Productions (United States)'),
(19720, 17100, 'it', 'name', 'Ente Nazionale ACLI Istruzione Professionale'),
(19721, 17100, 'en', 'name', 'National Network OF Services for Training and Employment Promotion'),
(19722, 17101, 'no_lang_code', 'name', 'Stryker (United States)'),
(19723, 17102, 'it', 'name', 'Ente nazionale italiano di unificazione'),
(19724, 17102, 'en', 'name', 'Italian National Unification'),
(19725, 17103, 'no_lang_code', 'name', 'Fernando DomĆ­nguez (Spain)'),
(19726, 17104, 'no_lang_code', 'name', 'Everis (Spain)'),
(19727, 17105, 'no_lang_code', 'name', 'FernwƤrme-Verbund Saar (Germany)'),
(19728, 17106, 'no_lang_code', 'name', 'Qualizyme (Austria)'),
(19729, 17107, 'no_lang_code', 'name', 'InHand Electronics (United States)'),
(19730, 17108, 'no_lang_code', 'name', 'Evestra (United States)'),
(19731, 17109, 'no_lang_code', 'name', 'Pittini Group (Italy)'),
(19732, 17110, 'en', 'name', 'Enterprise State Community College'),
(19733, 17111, 'no_lang_code', 'name', 'DVC (Belgium)'),
(19734, 17112, 'en', 'name', 'Entertainment Industries Council'),
(19735, 17113, 'no_lang_code', 'name', 'FerRobotics Compliant Robot Technology (Austria)'),
(19736, 17114, 'no_lang_code', 'name', 'DVST (United Kingdom)'),
(19737, 17115, 'no_lang_code', 'name', 'Ferroday (United Kingdom)'),
(19738, 17116, 'no_lang_code', 'name', 'DIAD (Italy)'),
(19739, 17117, 'no_lang_code', 'name', 'Meggitt (Denmark)'),
(19740, 17118, 'no_lang_code', 'name', 'Evidence (Italy)'),
(19741, 17119, 'no_lang_code', 'name', 'Diagnostic Biochips (United States)'),
(19742, 17120, 'no_lang_code', 'name', 'DxDiscovery (United States)'),
(19743, 17121, 'no_lang_code', 'name', 'Evigia Systems (United States)'),
(19744, 17122, 'en', 'name', 'Sector Skills Council for Science, Engineering and Manufacturing Technologies'),
(19745, 17123, 'no_lang_code', 'name', 'DHL (Spain)'),
(19746, 17124, 'no_lang_code', 'name', 'Evonik (United Kingdom)'),
(19747, 17125, 'no_lang_code', 'name', 'GreatCell Solar (United Kingdom)'),
(19748, 17126, 'no_lang_code', 'name', 'Import.io (United States)'),
(19749, 17127, 'no_lang_code', 'name', 'Mistras Group (Greece)'),
(19750, 17128, 'it', 'name', 'Casa di Cura Villa Pini d’Abruzzo'),
(19751, 17129, 'no_lang_code', 'name', 'DE Technologies (United States)'),
(19752, 17130, 'en', 'name', 'Fevered Sleep'),
(19753, 17131, 'no_lang_code', 'name', 'DHL (Switzerland)'),
(19754, 17132, 'no_lang_code', 'name', 'Ewos Innovation (Norway)'),
(19755, 17133, 'no_lang_code', 'name', 'Postnova Analytics (United States)'),
(19756, 17134, 'no_lang_code', 'name', 'Lattanzio Group (Italy)'),
(19757, 17135, 'no_lang_code', 'name', 'Husqvarna (Belgium)'),
(19758, 17136, 'no_lang_code', 'name', 'Exalos (Switzerland)'),
(19759, 17137, 'fr', 'name', 'FƩdƩration GƩnƩrale du Travail de Belgique'),
(19760, 17137, 'en', 'name', 'General Federation of Belgian Labour'),
(19761, 17138, 'no_lang_code', 'name', 'ERBA Diagnostics (United States)'),
(19762, 17139, 'no_lang_code', 'name', 'Diamond Aircraft Industries (Austria)'),
(19763, 17140, 'no_lang_code', 'name', 'Dynamic Boosting Systems (United Kingdom)'),
(19764, 17141, 'no_lang_code', 'name', 'Dynamic Concepts (United States)'),
(19765, 17142, 'en', 'name', 'Excellence Community Education Welfare Scheme'),
(19766, 17143, 'no_lang_code', 'name', 'Dynamic Contours (United States)'),
(19767, 17144, 'no_lang_code', 'name', 'Excellims (United States)'),
(19768, 17145, 'no_lang_code', 'name', 'Centrotherm Photovoltaics (Germany)'),
(19769, 17146, 'no_lang_code', 'name', 'Becton Dickinson (Canada)'),
(19770, 17147, 'en', 'name', 'Executive Unit for Financing Higher Education, Research, Development and Innovation'),
(19771, 17147, 'ro', 'name', 'Unitatea Executiva Pentru Finantarea Invatamantului Superior a Cercetarii Dezvoltarii si Inovarii'),
(19772, 17148, 'no_lang_code', 'name', 'Quadrise Canada Corporation (Canada)'),
(19773, 17149, 'no_lang_code', 'name', 'GrafTech (United States)'),
(19774, 17150, 'en', 'name', 'Environmental Research Institute'),
(19775, 17151, 'no_lang_code', 'name', 'Fiberline Composites (Denmark)'),
(19776, 17152, 'no_lang_code', 'name', 'Dynamic Systems (United States)'),
(19777, 17153, 'no_lang_code', 'name', 'DIARC-Technology (Finland)'),
(19778, 17154, 'no_lang_code', 'name', 'Diasa Industrial (Spain)'),
(19779, 17155, 'no_lang_code', 'name', 'CoorsTek (United Kingdom)'),
(19780, 17156, 'no_lang_code', 'name', 'Fibre Extrusion Technology (United Kingdom)'),
(19781, 17157, 'fr', 'name', 'Bureau exĆ©cutif du prĆ©sident des Ɖtats-unis'),
(19782, 17157, 'en', 'name', 'Executive Office of the President'),
(19783, 17157, 'es', 'name', 'Oficina Ejecutiva del Presidente de los Estados Unidos'),
(19784, 17158, 'no_lang_code', 'name', 'Exel Composites (United Kingdom)'),
(19785, 17159, 'no_lang_code', 'name', 'Parrot (France)'),
(19786, 17160, 'no_lang_code', 'name', 'Fibroline (France)'),
(19787, 17161, 'no_lang_code', 'name', 'Environmental Software and Services (Austria)'),
(19788, 17162, 'en', 'name', 'Exeter City Council'),
(19789, 17163, 'no_lang_code', 'name', 'Didael KTS (Italy)'),
(19790, 17164, 'fr', 'name', 'Fidal'),
(19791, 17165, 'en', 'name', 'Dystonia Medical Research Foundation'),
(19792, 17166, 'no_lang_code', 'name', 'Fiday Gestion (France)'),
(19793, 17167, 'no_lang_code', 'name', 'Envirup (United Kingdom)'),
(19794, 17168, 'no_lang_code', 'name', 'Exfo Electro-Optical Engineering (Canada)'),
(19795, 17169, 'no_lang_code', 'name', 'Dyson Technical Ceramics (United Kingdom)'),
(19796, 17170, 'no_lang_code', 'name', 'Dytecna (United Kingdom)'),
(19797, 17171, 'no_lang_code', 'name', 'Fidelity Systems (United States)'),
(19798, 17172, 'no_lang_code', 'name', 'DZP Technologies (United Kingdom)'),
(19799, 17173, 'no_lang_code', 'name', 'ANDalyze (United States)'),
(19800, 17174, 'no_lang_code', 'name', 'Fiedler Optoelektronik (Germany)'),
(19801, 17174, 'de', 'name', 'Fiedler optoelectronics'),
(19802, 17175, 'en', 'name', 'Fife House'),
(19803, 17176, 'en', 'name', 'Fife Council'),
(19804, 17177, 'no_lang_code', 'name', 'Experian (United Kingdom)'),
(19805, 17178, 'en', 'name', 'Fighting Back Partnership'),
(19806, 17179, 'no_lang_code', 'name', 'Fiji Systems (United States)'),
(19807, 17180, 'it', 'name', 'Fondazione Filarete'),
(19808, 17181, 'no_lang_code', 'name', 'Eos Neuroscience (United States)'),
(19809, 17182, 'no_lang_code', 'name', 'EOX IT Services (Austria)'),
(19810, 17183, 'no_lang_code', 'name', 'Dieffe (Italy)'),
(19811, 17184, 'no_lang_code', 'name', 'Eonic Systems (Belgium)'),
(19812, 17185, 'no_lang_code', 'name', 'ePack (United States)'),
(19813, 17186, 'no_lang_code', 'name', 'Expert System (Italy)'),
(19814, 17187, 'it', 'name', 'Federazione Italiana Lavoratori Commercio Albergo Mensa e Servizi'),
(19815, 17188, 'no_lang_code', 'name', 'Boart Longyear (United States)'),
(19816, 17189, 'no_lang_code', 'name', 'ERS Steuerungstechnik (Germany)'),
(19817, 17190, 'en', 'name', 'E-Connection'),
(19818, 17191, 'no_lang_code', 'name', 'Explora (Italy)'),
(19819, 17192, 'no_lang_code', 'name', 'DIERS International (Germany)'),
(19820, 17193, 'no_lang_code', 'name', 'FilmLight (United Kingdom)'),
(19821, 17194, 'no_lang_code', 'name', 'E-nema (Germany)'),
(19822, 17195, 'no_lang_code', 'name', 'E-Semble (Netherlands)'),
(19823, 17196, 'en', 'name', 'E-Seniors'),
(19824, 17197, 'no_lang_code', 'name', 'Hood Laboratories (United States)'),
(19825, 17198, 'no_lang_code', 'name', 'Films of Record'),
(19826, 17199, 'no_lang_code', 'name', 'EXPORTech (United States)'),
(19827, 17200, 'no_lang_code', 'name', 'Novocaptis (Greece)'),
(19828, 17201, 'no_lang_code', 'name', 'OncoPlex Diagnostics (United States)'),
(19829, 17202, 'no_lang_code', 'name', 'Filtronic (United Kingdom)'),
(19830, 17203, 'no_lang_code', 'name', 'Exscien (United States)'),
(19831, 17204, 'no_lang_code', 'name', 'Hunosa (Spain)'),
(19832, 17205, 'no_lang_code', 'name', 'Hephaestus Holdings (United Kingdom)'),
(19833, 17206, 'no_lang_code', 'name', 'Fimet (Finland)'),
(19834, 17207, 'no_lang_code', 'name', 'Ultra Electronics (United Kingdom)'),
(19835, 17208, 'no_lang_code', 'name', 'Haydale (United Kingdom)'),
(19836, 17209, 'no_lang_code', 'name', 'Orflo Technologies (United States)'),
(19837, 17210, 'no_lang_code', 'name', 'Deutsches Institut für Feuerfest und Keramik'),
(19838, 17211, 'no_lang_code', 'name', 'Extended Home Living Services'),
(19839, 17212, 'no_lang_code', 'name', 'Epleblomsten (Norway)'),
(19840, 17213, 'no_lang_code', 'name', 'PXBioVisioN (Germany)'),
(19841, 17214, 'no_lang_code', 'name', 'Ɖvaluation Technologique IngĆ©nierie and Applications (France)'),
(19842, 17215, 'no_lang_code', 'name', 'Eppendorf (Belgium)'),
(19843, 17216, 'no_lang_code', 'name', 'e2e Services (United Kingdom)'),
(19844, 17217, 'no_lang_code', 'name', 'E2S (Belgium)'),
(19845, 17218, 'no_lang_code', 'name', 'EyeRx Research (United States)'),
(19846, 17219, 'en', 'name', 'Eyes of the World Media Group'),
(19847, 17220, 'no_lang_code', 'name', 'Digipolis (Belgium)'),
(19848, 17221, 'no_lang_code', 'name', 'Jotne (Norway)'),
(19849, 17222, 'no_lang_code', 'name', 'Digirad (United States)'),
(19850, 17223, 'no_lang_code', 'name', 'Equipment Simulations (United States)'),
(19851, 17224, 'no_lang_code', 'name', 'Finisar (Israel)'),
(19852, 17225, 'no_lang_code', 'name', 'Equipo de Tecnicos en Transporte y Territorio'),
(19853, 17226, 'no_lang_code', 'name', 'Eagle Engineering (United States)'),
(19854, 17227, 'en', 'name', 'Eagle Ridge Institute'),
(19855, 17228, 'en', 'name', 'Finnish Real Estate Federation'),
(19856, 17229, 'en', 'name', 'Zionsville Community High School'),
(19857, 17230, 'no_lang_code', 'name', 'Licentia (Finland)'),
(19858, 17231, 'en', 'name', 'One Nucleus'),
(19859, 17232, 'no_lang_code', 'name', 'EaglePicher (Canada)'),
(19860, 17233, 'no_lang_code', 'name', 'Erbicol (Switzerland)'),
(19861, 17234, 'no_lang_code', 'name', 'Eaker Epidemiology Enterprises (United States)'),
(19862, 17235, 'no_lang_code', 'name', 'Earlens (United States)'),
(19863, 17236, 'no_lang_code', 'name', 'Finsa (Italy)'),
(19864, 17237, 'no_lang_code', 'name', 'Fabes Forschungs (Germany)'),
(19865, 17238, 'no_lang_code', 'name', 'Digital Video (Italy)'),
(19866, 17239, 'no_lang_code', 'name', 'FIP Industriale (Italy)'),
(19867, 17240, 'no_lang_code', 'name', 'FIRA International (United Kingdom)'),
(19868, 17241, 'no_lang_code', 'name', 'FACET Innovations (United States)'),
(19869, 17242, 'no_lang_code', 'name', 'Fire Safety Design'),
(19870, 17243, 'de', 'name', 'FH Aachen'),
(19871, 17244, 'en', 'name', 'Digital Europe'),
(19872, 17245, 'no_lang_code', 'name', 'Ergo (Greece)'),
(19873, 17246, 'no_lang_code', 'name', 'Ergon Consulting Group (Greece)'),
(19874, 17247, 'no_lang_code', 'name', 'Abcam (United States)'),
(19875, 17248, 'no_lang_code', 'name', 'AdCapital (Germany)'),
(19876, 17249, 'en', 'name', 'Earthquake Planning and Protection Organization'),
(19877, 17250, 'de', 'name', 'TH Kƶln'),
(19878, 17250, 'en', 'name', 'TH Kƶln - University of Applied Sciences'),
(19879, 17251, 'no_lang_code', 'name', 'Ericsson (Greece)'),
(19880, 17252, 'no_lang_code', 'name', 'First Light Diagnostics (United States)'),
(19881, 17253, 'de', 'name', 'Hochschule Osnabrück'),
(19882, 17253, 'en', 'name', 'Osnabrück University of Applied Sciences'),
(19883, 17254, 'no_lang_code', 'name', 'Earthwise Construction (United Kingdom)'),
(19884, 17255, 'de', 'name', 'Hochschule Trier'),
(19885, 17255, 'en', 'name', 'Trier University of Applied Sciences'),
(19886, 17256, 'no_lang_code', 'name', 'Aerotek (Germany)'),
(19887, 17257, 'en', 'name', 'Fishermen and Scientists Research Society'),
(19888, 17258, 'de', 'name', 'FIZ Karlsruhe - Leibniz-Institut für Informationsinfrastruktur'),
(19889, 17258, 'en', 'name', 'FIZ Karlsruhe – Leibniz Institute for Information Infrastructure'),
(19890, 17259, 'no_lang_code', 'name', 'DILAS (Germany)'),
(19891, 17260, 'de', 'name', 'Fachverband Elektronik Design'),
(19892, 17261, 'en', 'name', 'EMH Group'),
(19893, 17262, 'no_lang_code', 'name', 'Facilia (Sweden)'),
(19894, 17263, 'en', 'name', 'East Thames Group'),
(19895, 17264, 'no_lang_code', 'name', 'Facit Research (Germany)'),
(19896, 17265, 'no_lang_code', 'name', 'Erlang Solutions (United Kingdom)'),
(19897, 17266, 'no_lang_code', 'name', 'FIT Biotech (Finland)'),
(19898, 17267, 'no_lang_code', 'name', 'FiveFocal (United States)'),
(19899, 17268, 'no_lang_code', 'name', 'Eastern Analytical (United States)'),
(19900, 17269, 'no_lang_code', 'name', 'Celanese (Germany)'),
(19901, 17270, 'en', 'name', 'National Cancer Registration Service'),
(19902, 17271, 'en', 'name', 'Eastern University'),
(19903, 17272, 'en', 'name', 'Institute of Physical Energetics'),
(19904, 17273, 'no_lang_code', 'name', 'FKuR Kunststoff (Germany)'),
(19905, 17274, 'no_lang_code', 'name', 'Flame Spray (Italy)'),
(19906, 17275, 'no_lang_code', 'name', 'Flanders Color (Belgium)'),
(19907, 17276, 'no_lang_code', 'name', 'Ernst Basler + Partner (Switzerland)'),
(19908, 17277, 'no_lang_code', 'name', 'Dioxide Materials (United States)'),
(19909, 17278, 'no_lang_code', 'name', 'Ernst Wittner (Austria)'),
(19910, 17279, 'en', 'name', 'Eurocarers'),
(19911, 17280, 'pt', 'name', 'Direcção Regional de Cultura do Alentejo'),
(19912, 17281, 'en', 'name', 'Flathead High School'),
(19913, 17282, 'no_lang_code', 'name', 'Eblana Photonics (Ireland)'),
(19914, 17283, 'no_lang_code', 'name', 'Flentrop Orgelbouw (Netherlands)'),
(19915, 17284, 'no_lang_code', 'name', 'eBOS Technologies (Cyprus)'),
(19916, 17285, 'no_lang_code', 'name', 'Alpiq (United Kingdom)'),
(19917, 17286, 'no_lang_code', 'name', 'Institute for Renewable Energy (Poland)'),
(19918, 17287, 'no_lang_code', 'name', 'FlexTech Systems (United States)'),
(19919, 17288, 'en', 'name', 'Flint Community Schools'),
(19920, 17289, 'no_lang_code', 'name', 'Flisom (Switzerland)'),
(19921, 17290, 'no_lang_code', 'name', 'ECD Architects'),
(19922, 17291, 'en', 'name', 'Circle Park'),
(19923, 17292, 'no_lang_code', 'name', 'Ribbon Communications (Israel)'),
(19924, 17293, 'en', 'name', 'Florida Alcohol and Drug Abuse Association'),
(19925, 17294, 'fr', 'name', 'MinistĆØre de l''Ɖconomie et des Finances'),
(19926, 17295, 'en', 'name', 'Florida Coalition Against Domestic Violence'),
(19927, 17296, 'no_lang_code', 'name', 'Erothitan (Germany)'),
(19928, 17297, 'en', 'name', 'Florida Hospital Association'),
(19929, 17298, 'en', 'name', 'Executive Office of Governor'),
(19930, 17299, 'no', 'name', 'Direktoratet for forvaltning og IKT'),
(19931, 17300, 'no_lang_code', 'name', 'Discovery Air (Canada)'),
(19932, 17301, 'no_lang_code', 'name', 'Discovery Laboratories (United States)'),
(19933, 17302, 'it', 'name', 'Confederazione Nazionale dell''Artigianato e Della Piccola e Media Impresa'),
(19934, 17303, 'no_lang_code', 'name', 'MP Biomedicals (United States)'),
(19935, 17304, 'no_lang_code', 'name', 'ES Technology (United Kingdom)'),
(19936, 17305, 'no_lang_code', 'name', 'Flucon Fluid Control (Germany)'),
(19937, 17306, 'no_lang_code', 'name', 'Metrohm Autolab (Netherlands)'),
(19938, 17307, 'no_lang_code', 'name', 'Esaote (Netherlands)'),
(19939, 17308, 'no_lang_code', 'name', 'Fluential (United States)'),
(19940, 17309, 'no_lang_code', 'name', 'Eco-Energy (NI) (United Kingdom)'),
(19941, 17310, 'no_lang_code', 'name', 'Fluid Operations (Germany)'),
(19942, 17311, 'no_lang_code', 'name', 'Fluidhouse (Finland)'),
(19943, 17312, 'no_lang_code', 'name', 'Esciencia (Spain)'),
(19944, 17313, 'no_lang_code', 'name', 'Fluigent (France)'),
(19945, 17314, 'no_lang_code', 'name', 'Marvell (Spain)'),
(19946, 17315, 'no_lang_code', 'name', 'Fluxim (Switzerland)'),
(19947, 17316, 'pt', 'name', 'Agrupamento de Escolas de Caldas de Vizela'),
(19948, 17317, 'no_lang_code', 'name', 'Flyby (Italy)'),
(19949, 17318, 'pt', 'name', 'Escola SecundƔria de LoulƩ'),
(19950, 17319, 'no_lang_code', 'name', 'Flying Bridge Technologies (United States)'),
(19951, 17320, 'no_lang_code', 'name', 'Flying-Cam (Belgium)'),
(19952, 17321, 'no_lang_code', 'name', 'FM Management Consultancy'),
(19953, 17322, 'no_lang_code', 'name', 'Mƶssner (Germany)'),
(19954, 17323, 'no_lang_code', 'name', 'FM Mattsson (Sweden)'),
(19955, 17324, 'no_lang_code', 'name', 'FMC (Norway)'),
(19956, 17325, 'no_lang_code', 'name', 'FocalCool (United States)'),
(19957, 17326, 'en', 'name', 'Distance Expert'),
(19958, 17327, 'no_lang_code', 'name', 'Receptors (United States)'),
(19959, 17328, 'no_lang_code', 'name', 'Fomento de San SebastiƔn (Spain)'),
(19960, 17329, 'ca', 'name', 'Foment del Treball Nacional'),
(19961, 17330, 'en', 'name', 'District of Columbia Public School'),
(19962, 17330, 'fr', 'name', 'Ɖcoles publiques du district de Columbia'),
(19963, 17331, 'no_lang_code', 'name', 'Fomterv (Hungary)'),
(19964, 17332, 'no_lang_code', 'name', 'Eni (Belgium)'),
(19965, 17333, 'no_lang_code', 'name', 'Fon (Spain)'),
(19966, 17334, 'no_lang_code', 'name', 'Disy (Germany)'),
(19967, 17335, 'en', 'name', 'Fond du Lac School District'),
(19968, 17336, 'no_lang_code', 'name', 'Ripamonti'),
(19969, 17337, 'no_lang_code', 'name', 'Perma-Fix (United States)'),
(19970, 17338, 'fr', 'name', 'Centre d''Etudes des Transports pour la MƩditerranƩe Occidentale'),
(19971, 17339, 'no_lang_code', 'name', 'DM-STAT (United States)'),
(19972, 17340, 'no_lang_code', 'name', 'dMetrics (United States)'),
(19973, 17341, 'no_lang_code', 'name', 'Diversified Maintenance Systems (United States)'),
(19974, 17342, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Chimie, de Biologie et de Physique'),
(19975, 17343, 'fr', 'name', 'Fondation MƩrieux'),
(19976, 17344, 'no_lang_code', 'name', 'ATUM (United States)'),
(19977, 17345, 'no_lang_code', 'name', 'DNAVision (Belgium)'),
(19978, 17346, 'no_lang_code', 'name', 'DNAmicroarray (United States)'),
(19979, 17347, 'fr', 'name', 'Fondation Sophia Antipolis'),
(19980, 17348, 'en', 'name', 'Docklands Light Railway'),
(19981, 17349, 'it', 'name', 'Accademia Nazionale di Santa Cecilia'),
(19982, 17349, 'en', 'name', 'National Academy of St Cecilia'),
(19983, 17350, 'no_lang_code', 'name', 'Docobo (United Kingdom)'),
(19984, 17351, 'en', 'name', 'Documentary Educational Resources'),
(19985, 17352, 'no_lang_code', 'name', 'Doduco (Germany)'),
(19986, 17353, 'no_lang_code', 'name', 'Doimak (Spain)'),
(19987, 17354, 'pl', 'name', 'Dolnośląski Park Innowacji i Nauki'),
(19988, 17355, 'no_lang_code', 'name', 'Dolphin Design (France)'),
(19989, 17356, 'no_lang_code', 'name', 'Enig Associates (United States)'),
(19990, 17357, 'no_lang_code', 'name', 'European Safety Management Group'),
(19991, 17358, 'it', 'name', 'Museo Nazionale della Scienza e della Tecnologia Leonardo da Vinci'),
(19992, 17359, 'it', 'name', 'Fondazione per Adroterapia Oncologica');
INSERT INTO `ror_settings` VALUES
(19993, 17360, 'no_lang_code', 'name', 'ESP Central (United Kingdom)'),
(19994, 17361, 'no_lang_code', 'name', 'Poweo (France)'),
(19995, 17362, 'no_lang_code', 'name', 'Espion (Ireland)'),
(19996, 17363, 'en', 'name', 'Fairmont Senior High School'),
(19997, 17364, 'en', 'name', 'Fairview Health Services'),
(19998, 17365, 'no_lang_code', 'name', '2D Formazione (Italy)'),
(19999, 17366, 'no_lang_code', 'name', 'Domca (Spain)'),
(20000, 17367, 'it', 'name', 'Fondazione Stella Maris'),
(20001, 17368, 'en', 'name', 'e-Forum'),
(20002, 17369, 'no_lang_code', 'name', 'Econet (Spain)'),
(20003, 17370, 'no_lang_code', 'name', 'Senergy (United Kingdom)'),
(20004, 17371, 'no_lang_code', 'name', 'Essen BioScience (United States)'),
(20005, 17372, 'no_lang_code', 'name', 'Econolyst (United Kingdom)'),
(20006, 17373, 'no_lang_code', 'name', 'Zanardi Fonderie (Italy)'),
(20007, 17374, 'en', 'name', 'Essex County Council'),
(20008, 17375, 'nl', 'name', 'Fonds voor Wetenschappelijk Onderzoek - Vlaanderen'),
(20009, 17375, 'en', 'name', 'Research Foundation - Flanders'),
(20010, 17376, 'no_lang_code', 'name', 'Essrg (Hungary)'),
(20011, 17377, 'no_lang_code', 'name', 'Fontanellas Y Marti (Spain)'),
(20012, 17378, 'no_lang_code', 'name', 'Ecoplan (Switzerland)'),
(20013, 17379, 'no_lang_code', 'name', 'Food Machinery EspaƱola (Spain)'),
(20014, 17380, 'no_lang_code', 'name', 'Falex Tribology (Belgium)'),
(20015, 17381, 'en', 'name', 'Food Safety Authority of Ireland'),
(20016, 17381, 'ga', 'name', 'ÚdarĆ”s SĆ”bhĆ”ilteachta Bia na hƉireann'),
(20017, 17382, 'it', 'name', 'Famiglia Artigiana Fratelli Ruffatti'),
(20018, 17383, 'en', 'name', 'Families Together in New York State'),
(20019, 17384, 'pl', 'name', 'Fundacja Inkubator'),
(20020, 17385, 'en', 'name', 'Family & Children’s Services'),
(20021, 17386, 'en', 'name', 'Family Cafe'),
(20022, 17387, 'no_lang_code', 'name', 'Estaleiros Navais de Peniche (Portugal)'),
(20023, 17388, 'no_lang_code', 'name', 'ESTeam (Sweden)'),
(20024, 17389, 'en', 'name', 'Estonian Educational and Research Network'),
(20025, 17390, 'en', 'name', 'Technology Partners Foundation'),
(20026, 17391, 'en', 'name', 'Stockholm Environment Institute'),
(20027, 17391, 'et', 'name', 'SƤƤstva Eesti Instituut, Stockholmi Keskkonnainstituudi Tallinna Keskus'),
(20028, 17392, 'et', 'name', 'Majandus- ja Kommunikatsiooniministeerium'),
(20029, 17392, 'en', 'name', 'Ministry of Economic Affairs and Communications'),
(20030, 17393, 'en', 'name', 'Foundation for Applied Information Technology in Environment, Agriculture and Global Change'),
(20031, 17394, 'no_lang_code', 'name', 'FunderMax (Austria)'),
(20032, 17395, 'pt', 'name', 'Estrutura de Missão para a Extensão da Plataforma Continental'),
(20033, 17395, 'en', 'name', 'Task Group for the Extension of the Continental Shelf'),
(20034, 17396, 'en', 'name', 'SBH Behavioral Health'),
(20035, 17397, 'no_lang_code', 'name', 'Foreca (Finland)'),
(20036, 17398, 'en', 'name', 'Family Support Network'),
(20037, 17399, 'no_lang_code', 'name', 'Family Works'),
(20038, 17400, 'no_lang_code', 'name', 'Estanda (Spain)'),
(20039, 17401, 'no_lang_code', 'name', 'Foreco (Netherlands)'),
(20040, 17402, 'no_lang_code', 'name', 'ECT Oekotoxikologie (Germany)'),
(20041, 17403, 'no_lang_code', 'name', 'Edacentrum'),
(20042, 17404, 'no_lang_code', 'name', 'Esys (United Kingdom)'),
(20043, 17405, 'es', 'name', 'Fundación para el Desarrollo de la Función Social de las Comunicaciones'),
(20044, 17406, 'no_lang_code', 'name', 'EDALab (Italy)'),
(20045, 17407, 'no_lang_code', 'name', 'ET Enterprises (United Kingdom)'),
(20046, 17408, 'no_lang_code', 'name', 'Ilunion Consulting (Spain)'),
(20047, 17409, 'no_lang_code', 'name', 'Schmolz Bickenbach (Germany)'),
(20048, 17410, 'no_lang_code', 'name', 'Plant Health Care (United States)'),
(20049, 17411, 'en', 'name', 'Forest-based Sector Technology Platform'),
(20050, 17412, 'en', 'name', 'Eden Project'),
(20051, 17413, 'en', 'name', 'ETC International'),
(20052, 17414, 'no_lang_code', 'name', 'ForestRe (United Kingdom)'),
(20053, 17415, 'no_lang_code', 'name', 'Farasis Energy (United States)'),
(20054, 17416, 'fi', 'name', 'EtelƤ-Karjalan sosiaali ja terveyspiiri'),
(20055, 17416, 'en', 'name', 'South Karelia Social and Health Care District'),
(20056, 17417, 'en', 'name', 'Edgewood Independent School District'),
(20057, 17418, 'no_lang_code', 'name', 'Eaton (United States)'),
(20058, 17419, 'no_lang_code', 'name', 'Manoir Industries (France)'),
(20059, 17420, 'no_lang_code', 'name', 'Future Carbon (Germany)'),
(20060, 17421, 'no_lang_code', 'name', 'EDI Group (United Kingdom)'),
(20061, 17422, 'no_lang_code', 'name', 'Future Diagnostics (Netherlands)'),
(20062, 17423, 'no_lang_code', 'name', 'Posti Group (Finland)'),
(20063, 17424, 'en', 'name', 'Farmworker Justice'),
(20064, 17425, 'en', 'name', 'FutureEverything'),
(20065, 17426, 'no_lang_code', 'name', 'Formatec Technical Ceramics (Netherlands)'),
(20066, 17427, 'no_lang_code', 'name', 'Etiometry (United States)'),
(20067, 17428, 'no_lang_code', 'name', 'FVA New Media Research (Italy)'),
(20068, 17429, 'no_lang_code', 'name', 'Etma (Greece)'),
(20069, 17430, 'no_lang_code', 'name', 'Edinethics (United Kingdom)'),
(20070, 17431, 'no_lang_code', 'name', 'Fyodor Biotechnologies (United States)'),
(20071, 17432, 'no_lang_code', 'name', 'Etna Biotech (Italy)'),
(20072, 17433, 'no_lang_code', 'name', 'Farran Technology (Ireland)'),
(20073, 17434, 'no_lang_code', 'name', 'Thales (Portugal)'),
(20074, 17435, 'no_lang_code', 'name', 'G24 Power (United Kingdom)'),
(20075, 17436, 'it', 'name', 'Formedil'),
(20076, 17437, 'en', 'name', 'Florida SouthWestern State College'),
(20077, 17438, 'no_lang_code', 'name', 'Forming Technologies (Canada)'),
(20078, 17439, 'en', 'name', 'EDItEUR'),
(20079, 17440, 'no_lang_code', 'name', 'FormTech (Germany)'),
(20080, 17441, 'no_lang_code', 'name', 'Edna Pasher Ph.D & Associates (Israel)'),
(20081, 17442, 'en', 'name', 'German Games Industry Association'),
(20082, 17443, 'en', 'name', 'Research Centre for Applied System Safety and Industrial Medicine'),
(20083, 17444, 'no_lang_code', 'name', 'Techno-Membranes (France)'),
(20084, 17445, 'no_lang_code', 'name', 'Geographic Information Management (Belgium)'),
(20085, 17446, 'en', 'name', 'Diocese of Brooklyn'),
(20086, 17447, 'fr', 'name', 'Ɖtudes MĆ©tallurgiques Traitements Thermiques'),
(20087, 17448, 'no_lang_code', 'name', 'Forschungsinstitut für Mineralische und Metallische Werkstoffe Edelsteine/Edemetalle'),
(20088, 17448, 'en', 'name', 'Research Institute for Mineral and Metallic Materials Gemstones/Precious Metals'),
(20089, 17449, 'no_lang_code', 'name', 'Global Maritime Services (United Kingdom)'),
(20090, 17450, 'de', 'name', 'Forschungsinstitut für Wärmeschutz München'),
(20091, 17451, 'en', 'name', 'Hohenstein Institute'),
(20092, 17452, 'no_lang_code', 'name', 'GTD System & Software Engineering (Spain)'),
(20093, 17453, 'de', 'name', 'Forschungsinstitut Technologie und Behinderung'),
(20094, 17453, 'en', 'name', 'Research Institute Technology and Disability'),
(20095, 17454, 'no_lang_code', 'name', 'EUnited (Belgium)'),
(20096, 17455, 'no_lang_code', 'name', 'Ec3 NetWorks (Austria)'),
(20097, 17456, 'no_lang_code', 'name', 'Netsmart Technologies (United States)'),
(20098, 17457, 'de', 'name', 'Forschungszentrum für Kältetechnik und Wärmepumpen'),
(20099, 17458, 'de', 'name', 'Forschungszentrum für Medizintechnik und Biotechnologie'),
(20100, 17458, 'en', 'name', 'Research Centre of Medical Technology and Biotechnology'),
(20101, 17459, 'no_lang_code', 'name', 'Etas (Germany)'),
(20102, 17460, 'en', 'name', 'Earth Cryosphere Institute'),
(20103, 17460, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ криосферы Земли Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(20104, 17461, 'no_lang_code', 'name', 'Microsoft (Norway)'),
(20105, 17462, 'no_lang_code', 'name', 'EUrelations (Switzerland)'),
(20106, 17463, 'no_lang_code', 'name', 'Fastcom Technology (Switzerland)'),
(20107, 17464, 'no_lang_code', 'name', 'GALAB Laboratories (Germany)'),
(20108, 17465, 'no_lang_code', 'name', 'Galaxy Biotech (United States)'),
(20109, 17466, 'no_lang_code', 'name', 'Galdos Systems (Canada)'),
(20110, 17467, 'en', 'name', 'European Patients Forum'),
(20111, 17468, 'no_lang_code', 'name', 'Eduworks (United States)'),
(20112, 17469, 'no_lang_code', 'name', 'Gale & Snowden Architects (United Kingdom)'),
(20113, 17470, 'de', 'name', 'Institut für regionale Studien in Europa'),
(20114, 17471, 'no_lang_code', 'name', 'Fatman (Finland)'),
(20115, 17472, 'no_lang_code', 'name', 'Euroitalia (Italy)'),
(20116, 17473, 'it', 'name', 'Forum Internazionale ed Europeo di Ricerche sull’Immigrazione'),
(20117, 17473, 'en', 'name', 'International and European Forum on Migration Research'),
(20118, 17474, 'et', 'name', 'Eesti Rahvusraamatukogu'),
(20119, 17474, 'en', 'name', 'National Library of Estonia'),
(20120, 17474, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń библиотека Эстонии'),
(20121, 17475, 'en', 'name', 'European Research Institute on Cooperative and Social Enterprise'),
(20122, 17476, 'no_lang_code', 'name', 'GALLOP Corporation (United States)'),
(20123, 17477, 'et', 'name', 'Eesti-Rootsi Vaimse Tervise ja Suitsidoloogia Instituut'),
(20124, 17477, 'en', 'name', 'Estonian-Swedish Mental Health and Suicidology Institute'),
(20125, 17478, 'no_lang_code', 'name', 'Viasat (United States)'),
(20126, 17479, 'no_lang_code', 'name', 'Galorath (United Kingdom)'),
(20127, 17480, 'no_lang_code', 'name', 'Faurecia (France)'),
(20128, 17481, 'no_lang_code', 'name', 'Gamax (Hungary)'),
(20129, 17482, 'no_lang_code', 'name', 'Faust & Backhaus Environmental Consulting'),
(20130, 17483, 'no_lang_code', 'name', 'Eurix (Italy)'),
(20131, 17484, 'no_lang_code', 'name', 'Efficient Innovation (France)'),
(20132, 17485, 'no_lang_code', 'name', 'SKF (Italy)'),
(20133, 17486, 'no_lang_code', 'name', 'Eftas Remote Sensing Technology Transfer (Germany)'),
(20134, 17487, 'no_lang_code', 'name', 'Euro Projects (United Kingdom)'),
(20135, 17488, 'no_lang_code', 'name', 'Gammastamp (Italy)'),
(20136, 17489, 'no_lang_code', 'name', 'Eurodecision (France)'),
(20137, 17490, 'no_lang_code', 'name', 'Euro Heat Pipes (Belgium)'),
(20138, 17491, 'no_lang_code', 'name', 'Dinex (Finland)'),
(20139, 17492, 'no_lang_code', 'name', 'Fomento de Construcciones y Contratas (Spain)'),
(20140, 17493, 'no_lang_code', 'name', 'Egetaepper (Denmark)'),
(20141, 17494, 'no_lang_code', 'name', 'Egnatia Odos (Greece)'),
(20142, 17495, 'fr', 'name', 'Euro Inox'),
(20143, 17496, 'no_lang_code', 'name', 'FCT Systeme (Germany)'),
(20144, 17497, 'en', 'name', 'Euro Inter'),
(20145, 17498, 'en', 'name', 'Foundation for Innovation and Technology Transfer'),
(20146, 17499, 'no_lang_code', 'name', 'Gas Sensing Solutions (United Kingdom)'),
(20147, 17500, 'de', 'name', 'Gas- und WƤrme-Institut Essen'),
(20148, 17501, 'no_lang_code', 'name', 'Gate Fuels (United States)'),
(20149, 17502, 'en', 'name', 'Gateway Community Services'),
(20150, 17503, 'no_lang_code', 'name', 'Tribal Group'),
(20151, 17504, 'en', 'name', 'Foundation for Research on Sexually Transmitted Diseases'),
(20152, 17505, 'no_lang_code', 'name', 'Fdt Depuratori d'' Acqua (Italy)'),
(20153, 17506, 'en', 'name', 'Foundation for Science Technology and Civilisation'),
(20154, 17507, 'no_lang_code', 'name', 'Eidos (Italy)'),
(20155, 17508, 'en', 'name', 'Gay-Straight Alliance Network'),
(20156, 17509, 'en', 'name', 'Greater Bridgeport Area Prevention Program'),
(20157, 17510, 'no_lang_code', 'name', 'Cap Eiger (Spain)'),
(20158, 17511, 'no_lang_code', 'name', 'Eidon (Italy)'),
(20159, 17512, 'en', 'name', 'Federal Ministry of Health'),
(20160, 17513, 'no_lang_code', 'name', 'Eight19 (United Kingdom)'),
(20161, 17514, 'no_lang_code', 'name', 'Eikos (United States)'),
(20162, 17515, 'no_lang_code', 'name', 'European Institute of Printed Circuits'),
(20163, 17516, 'no_lang_code', 'name', 'Federal Mogul (France)'),
(20164, 17517, 'no_lang_code', 'name', 'Euromedica'),
(20165, 17518, 'en', 'name', 'German Breast group'),
(20166, 17519, 'no_lang_code', 'name', 'Eisenmann (Germany)'),
(20167, 17520, 'no_lang_code', 'name', 'Fractal Systems (United States)'),
(20168, 17521, 'no_lang_code', 'name', 'Siamab Therapeutics (United States)'),
(20169, 17522, 'no_lang_code', 'name', 'Eurofins (United States)'),
(20170, 17523, 'no_lang_code', 'name', 'Gilardoni Vittorio (Italy)'),
(20171, 17524, 'no_lang_code', 'name', 'Gilden Photonics (United Kingdom)'),
(20172, 17525, 'no_lang_code', 'name', 'Ekspla (Lithuania)'),
(20173, 17526, 'no_lang_code', 'name', 'Ekspobalta (Lithuania)'),
(20174, 17527, 'en', 'name', 'El Centro Elementary School District'),
(20175, 17528, 'en', 'name', 'EuroGeoSurveys'),
(20176, 17529, 'fr', 'name', 'GDG Environnement'),
(20177, 17530, 'en', 'name', 'European Ground Penetrating Radar Association'),
(20178, 17531, 'no_lang_code', 'name', 'Francisco MuƱoz Irles (Spain)'),
(20179, 17532, 'no_lang_code', 'name', 'Giotto Biotech (Italy)'),
(20180, 17533, 'no_lang_code', 'name', 'Eurohelp Consulting'),
(20181, 17534, 'en', 'name', 'Benjamin Franklin Institute of Technology'),
(20182, 17535, 'en', 'name', 'Franklin Pierce University'),
(20183, 17536, 'no_lang_code', 'name', 'Frantic Films (Canada)'),
(20184, 17537, 'no_lang_code', 'name', 'Giraf PM (Germany)'),
(20185, 17538, 'no_lang_code', 'name', 'Euroinks (Italy)'),
(20186, 17539, 'en', 'name', 'GIS - Transfer Center Foundation'),
(20187, 17540, 'no_lang_code', 'name', 'Fraport (Germany)'),
(20188, 17541, 'no_lang_code', 'name', 'El Corte InglƩs (Portugal)'),
(20189, 17542, 'no_lang_code', 'name', 'GL Chemtec International (Canada)'),
(20190, 17543, 'en', 'name', 'Nunez Community College'),
(20191, 17544, 'en', 'name', 'Exploration Place Museum and Science Centre'),
(20192, 17545, 'no_lang_code', 'name', 'Vergnano (Italy)'),
(20193, 17546, 'no_lang_code', 'name', 'Elbit Systems (Israel)'),
(20194, 17547, 'en', 'name', 'Glamorgan-Gwent Archaeological Trust'),
(20195, 17548, 'no_lang_code', 'name', 'Elcriton (United States)'),
(20196, 17549, 'en', 'name', 'Glasgow City Council'),
(20197, 17550, 'en', 'name', 'Glass Technology Services'),
(20198, 17551, 'no_lang_code', 'name', 'Gliamed (United States)'),
(20199, 17552, 'no_lang_code', 'name', 'Europa Media (Hungary)'),
(20200, 17553, 'en', 'name', 'EuropaBio'),
(20201, 17554, 'en', 'name', 'Europace'),
(20202, 17555, 'no_lang_code', 'name', 'BioNTech (Germany)'),
(20203, 17556, 'en', 'name', 'Global Alliance of Mental Illness Advocacy Networks-Europe'),
(20204, 17557, 'en', 'name', 'European Foundation for Clinical Nanomedicine'),
(20205, 17558, 'no_lang_code', 'name', 'FRE Composites (Canada)'),
(20206, 17559, 'no_lang_code', 'name', 'Senso (Spain)'),
(20207, 17560, 'no_lang_code', 'name', 'Global Digital Technologies (Greece)'),
(20208, 17561, 'no_lang_code', 'name', 'Electricidade dos AƧores (Portugal)'),
(20209, 17562, 'no_lang_code', 'name', 'GECO (Portugal)'),
(20210, 17563, 'en', 'name', 'Advanced Lead Acid Battery Consortium'),
(20211, 17564, 'en', 'name', 'Global Health Systems Solutions'),
(20212, 17565, 'no_lang_code', 'name', 'ElectroCell (Sweden)'),
(20213, 17566, 'en', 'name', 'European Aquaculture Technology and Innovation Platform'),
(20214, 17567, 'no_lang_code', 'name', 'Gedex (Canada)'),
(20215, 17568, 'no_lang_code', 'name', 'Global Inkjet Systems (United Kingdom)'),
(20216, 17569, 'en', 'name', 'European Blind Union'),
(20217, 17570, 'en', 'name', 'Contractor UK'),
(20218, 17571, 'no_lang_code', 'name', 'GlobalSign (Belgium)'),
(20219, 17572, 'no_lang_code', 'name', 'DryScrub (United States)'),
(20220, 17573, 'en', 'name', 'LOBA - Customer Experience Design'),
(20221, 17574, 'no_lang_code', 'name', 'Geltz Umwelt-Technologie (Germany)'),
(20222, 17575, 'no_lang_code', 'name', 'Globe Water (Sweden)'),
(20223, 17576, 'no_lang_code', 'name', 'Gel-Del Technologies (United States)'),
(20224, 17577, 'no_lang_code', 'name', 'EcologicTech (United States)'),
(20225, 17578, 'no_lang_code', 'name', 'Gem Pharmaceuticals (United States)'),
(20226, 17579, 'en', 'name', 'SAFE consortium'),
(20227, 17580, 'en', 'name', 'Fresh Pond Research Institute'),
(20228, 17581, 'no_lang_code', 'name', 'Glotech (United States)'),
(20229, 17582, 'no_lang_code', 'name', 'Gesellschaft für Mikroelektronikanwendung Chemnitz (Germany)'),
(20230, 17583, 'en', 'name', 'European Association for the Study of Obesity'),
(20231, 17584, 'de', 'name', 'Gematik Gesellschaft für Telematikanwendungen der Gesundheitskarte'),
(20232, 17585, 'en', 'name', 'European Association of Development Agencies'),
(20233, 17586, 'no_lang_code', 'name', 'Freshseal Limited (United Kingdom)'),
(20234, 17587, 'no_lang_code', 'name', 'Electron Energy Corporation (United States)'),
(20235, 17588, 'en', 'name', 'Fresno City College'),
(20236, 17589, 'nl', 'name', 'Gemeente Helmond'),
(20237, 17590, 'no_lang_code', 'name', 'Electronic Arts (United Kingdom)'),
(20238, 17591, 'no_lang_code', 'name', 'Glottal Enterprises (United States)'),
(20239, 17592, 'no_lang_code', 'name', 'Fresti (Portugal)'),
(20240, 17593, 'en', 'name', 'Gloucestershire County Council'),
(20241, 17594, 'en', 'name', 'Gloucestershire Hospitals NHS Foundation Trust'),
(20242, 17595, 'no_lang_code', 'name', 'Electronic Systems Design (Malta)'),
(20243, 17596, 'en', 'name', 'European Business Register'),
(20244, 17597, 'no_lang_code', 'name', 'GlycoMar (United Kingdom)'),
(20245, 17598, 'no_lang_code', 'name', 'Etra (Spain)'),
(20246, 17599, 'no_lang_code', 'name', 'GFI InformƔtica (Spain)'),
(20247, 17600, 'no_lang_code', 'name', 'Freudenberg (Germany)'),
(20248, 17601, 'no_lang_code', 'name', 'Glycosyn (United States)'),
(20249, 17602, 'en', 'name', 'European Centre for Knowledge and Technology Transfer'),
(20250, 17603, 'no_lang_code', 'name', 'Kaiam Corporation (United States)'),
(20251, 17604, 'no_lang_code', 'name', 'Gneuss (Germany)'),
(20252, 17605, 'en', 'name', 'Goalistics'),
(20253, 17606, 'en', 'name', 'Goddard College'),
(20254, 17607, 'no_lang_code', 'name', 'Genalyte (United States)'),
(20255, 17608, 'en', 'name', 'Electrotechnical Institute'),
(20256, 17609, 'en', 'name', 'Friendship College'),
(20257, 17610, 'no_lang_code', 'name', 'AFRY (United Kingdom)'),
(20258, 17611, 'no_lang_code', 'name', 'goHDR (United Kingdom)'),
(20259, 17612, 'no_lang_code', 'name', 'Fronius (Austria)'),
(20260, 17613, 'no_lang_code', 'name', 'Biolinq (United States)'),
(20261, 17614, 'no_lang_code', 'name', 'Front Edge Technology (United States)'),
(20262, 17615, 'no_lang_code', 'name', 'Goknow (United States)'),
(20263, 17616, 'en', 'name', 'European Community Shipowners'' Associations'),
(20264, 17617, 'no_lang_code', 'name', 'Gƶkser Makina (Turkey)'),
(20265, 17618, 'no_lang_code', 'name', 'Gold Biotechnology (United States)'),
(20266, 17619, 'no_lang_code', 'name', 'CEI-Bois'),
(20267, 17620, 'no_lang_code', 'name', 'GeneCopoeia (United States)'),
(20268, 17621, 'no_lang_code', 'name', 'Elektrobit (Finland)'),
(20269, 17622, 'no_lang_code', 'name', 'Goodman Research Group (United States)'),
(20270, 17623, 'no_lang_code', 'name', 'Frutarom (United Kingdom)'),
(20271, 17624, 'en', 'name', 'European Convention for Constructional Steelwork'),
(20272, 17625, 'en', 'name', 'Ministry of Finance'),
(20273, 17625, 'el', 'name', '΄πουργείο ĪŸĪ¹ĪŗĪæĪ½ĪæĪ¼Ī¹ĪŗĻŽĪ½ ΕλλάΓας'),
(20274, 17626, 'en', 'name', 'European Council for Construction Research, Development and Innovation'),
(20275, 17627, 'en', 'name', 'European Council of Applied Sciences and Engineering'),
(20276, 17628, 'no_lang_code', 'name', 'Ecosil Technologies (United States)'),
(20277, 17629, 'no_lang_code', 'name', '3M (Germany)'),
(20278, 17630, 'no_lang_code', 'name', 'General Electric (Germany)'),
(20279, 17631, 'de', 'name', 'Forschungsinstitut für Telekommunikation'),
(20280, 17631, 'en', 'name', 'Research Institute for Telecommunication Cooperation'),
(20281, 17632, 'no_lang_code', 'name', 'FTL Systems (United Kingdom)'),
(20282, 17633, 'no_lang_code', 'name', 'Element Six (Ireland)'),
(20283, 17634, 'en', 'name', 'Elephant Thoughts'),
(20284, 17635, 'no_lang_code', 'name', 'Fuchs (United Kingdom)'),
(20285, 17636, 'no_lang_code', 'name', 'Fuchs (Germany)'),
(20286, 17637, 'no_lang_code', 'name', 'General Innovations and Goods (United States)'),
(20287, 17638, 'no_lang_code', 'name', 'Gordon Murray Design (United Kingdom)'),
(20288, 17639, 'en', 'name', 'European Disability Forum'),
(20289, 17640, 'no_lang_code', 'name', 'Nielsen (United States)'),
(20290, 17641, 'no_lang_code', 'name', 'General Marble (Greece)'),
(20291, 17642, 'no_lang_code', 'name', 'Fujifilm (United Kingdom)'),
(20292, 17643, 'en', 'name', 'European Distributed Energy Resources Laboratories'),
(20293, 17644, 'no_lang_code', 'name', 'Fujifilm (Netherlands)'),
(20294, 17645, 'en', 'name', 'European Distribution System Operators for Smart Grids'),
(20295, 17646, 'no_lang_code', 'name', 'Fullwell Mill (United Kingdom)'),
(20296, 17647, 'no_lang_code', 'name', 'Fully Distributed Systems (United Kingdom)'),
(20297, 17648, 'no_lang_code', 'name', 'General Paints (Ireland)'),
(20298, 17649, 'no_lang_code', 'name', 'Goss Springs (United Kingdom)'),
(20299, 17650, 'no_lang_code', 'name', 'European Dynamics (Greece)'),
(20300, 17651, 'no_lang_code', 'name', 'Functional Technologies (United Kingdom)'),
(20301, 17652, 'no_lang_code', 'name', 'Total (United Kingdom)'),
(20302, 17653, 'en', 'name', 'European Welding Federation'),
(20303, 17654, 'no_lang_code', 'name', 'Total (Italy)'),
(20304, 17655, 'no_lang_code', 'name', 'Elforlight (United Kingdom)'),
(20305, 17656, 'en', 'name', 'European Federation of Allergy and Airways Diseases Patients Associations'),
(20306, 17657, 'no_lang_code', 'name', 'Elia Life Technology (United States)'),
(20307, 17658, 'fr', 'name', 'Direction GĆ©nĆ©rale Ɖnergie'),
(20308, 17658, 'en', 'name', 'Directorate-General for Energy'),
(20309, 17658, 'de', 'name', 'Generaldirektion der Kommission'),
(20310, 17659, 'nl', 'name', 'Goudappel Coffeng'),
(20311, 17660, 'no_lang_code', 'name', 'Generation Biotech (United States)'),
(20312, 17661, 'no_lang_code', 'name', 'Ella-Cs (Czechia)'),
(20313, 17662, 'no_lang_code', 'name', 'Ellemedia Technologies (Greece)'),
(20314, 17663, 'no_lang_code', 'name', 'Generic Robotics (United Kingdom)'),
(20315, 17664, 'en', 'name', 'Elmira College'),
(20316, 17665, 'no_lang_code', 'name', 'Elmos Semiconductor (Germany)'),
(20317, 17666, 'no_lang_code', 'name', 'Environmental and Life Support Technology (United States)'),
(20318, 17667, 'no_lang_code', 'name', 'Elsyca (Belgium)'),
(20319, 17668, 'es', 'name', 'Fundació Privada per a la Investigació Nutricional'),
(20320, 17669, 'no_lang_code', 'name', 'Eltek Semiconductors (United Kingdom)'),
(20321, 17670, 'en', 'name', 'European Federation of Railway Trackwork Contractors'),
(20322, 17671, 'en', 'name', 'European Forum on Nature Conservation and Pastoralism'),
(20323, 17672, 'no_lang_code', 'name', 'Elumotion (United Kingdom)'),
(20324, 17673, 'no_lang_code', 'name', 'Guifi.net'),
(20325, 17674, 'en', 'name', 'European Games Developer Federation'),
(20326, 17675, 'no_lang_code', 'name', 'Elusys Therapeutics (United States)'),
(20327, 17676, 'no_lang_code', 'name', 'Elviex (Greece)'),
(20328, 17677, 'en', 'name', 'European Genetic Alliances Network'),
(20329, 17678, 'en', 'name', 'European Geothermal Energy Council'),
(20330, 17679, 'no_lang_code', 'name', 'Elvior (Estonia)'),
(20331, 17680, 'en', 'name', 'European Gravitational Observatory'),
(20332, 17681, 'no_lang_code', 'name', 'GeneSearch (United States)'),
(20333, 17682, 'no_lang_code', 'name', 'Elwood Landscape Design (United Kingdom)'),
(20334, 17683, 'en', 'name', 'Genesee/Orleans Council on Alcoholism and Substance Abuse'),
(20335, 17684, 'no_lang_code', 'name', 'EmbedRF (United States)'),
(20336, 17685, 'en', 'name', 'Advanced Technology Centre for Renewable Energies'),
(20337, 17685, 'es', 'name', 'Centro Tecnológico Avanzado de Energías Renovables'),
(20338, 17686, 'en', 'name', 'European Health Management Association'),
(20339, 17687, 'no_lang_code', 'name', 'Embedded Access (Canada)'),
(20340, 17688, 'en', 'name', 'European Heat Pump Association'),
(20341, 17689, 'en', 'name', 'Graceland University'),
(20342, 17690, 'en', 'name', 'European Institute for Advanced Studies in Management'),
(20343, 17691, 'en', 'name', 'Greek Rescue Team'),
(20344, 17692, 'no_lang_code', 'name', 'Grainger and Worral (United Kingdom)'),
(20345, 17693, 'en', 'name', 'European Institute for Participatory Media'),
(20346, 17694, 'en', 'name', 'European Institute of Public Administration'),
(20347, 17695, 'en', 'name', 'Genetic Alliance'),
(20348, 17696, 'en', 'name', 'European Institute of Women''s Health'),
(20349, 17697, 'en', 'name', 'European Jewellery Technology Network'),
(20350, 17698, 'no_lang_code', 'name', 'Emcien (United States)'),
(20351, 17699, 'pt', 'name', 'Empresa Municipal de Mobilidade e Estacionamento de Lisboa'),
(20352, 17700, 'en', 'name', 'Grand Rapids Community College'),
(20353, 17701, 'en', 'name', 'Emerald Education Systems'),
(20354, 17702, 'no_lang_code', 'name', 'Emergence Tech Limited (United Kingdom)'),
(20355, 17703, 'no_lang_code', 'name', 'European Media Laboratory (Germany)'),
(20356, 17704, 'pl', 'name', 'Fundusz Górnośląski S.A. Oddział w Katowicach'),
(20357, 17705, 'en', 'name', 'European Membrane House'),
(20358, 17706, 'no_lang_code', 'name', 'GMC (Italy)'),
(20359, 17707, 'no_lang_code', 'name', 'Tunstall (Ireland)'),
(20360, 17708, 'en', 'name', 'European Molecular Biology Organization'),
(20361, 17709, 'no_lang_code', 'name', 'Granlund (Finland)'),
(20362, 17710, 'no_lang_code', 'name', 'GenetiVision (United States)'),
(20363, 17711, 'no_lang_code', 'name', 'Genewave (France)'),
(20364, 17712, 'no_lang_code', 'name', 'European Multimedia Forum (United Kingdom)'),
(20365, 17713, 'en', 'name', 'European Network for Cyber Security'),
(20366, 17714, 'no_lang_code', 'name', 'GeneXplain (Germany)'),
(20367, 17715, 'es', 'name', 'Fundación INTRAS'),
(20368, 17716, 'no_lang_code', 'name', 'Grassroots Arts and Research (Germany)'),
(20369, 17717, 'no_lang_code', 'name', 'Genfit (France)'),
(20370, 17718, 'no_lang_code', 'name', 'GenHunter (United States)'),
(20371, 17719, 'no_lang_code', 'name', 'GenIbet (Portugal)'),
(20372, 17720, 'no_lang_code', 'name', 'E. Brƶll (Austria)'),
(20373, 17721, 'no_lang_code', 'name', 'Eminate (United Kingdom)'),
(20374, 17722, 'en', 'name', 'Fundacion Latinoamericana De Accion Social'),
(20375, 17723, 'en', 'name', 'European Organisation for Research and Treatment of Cancer'),
(20376, 17724, 'en', 'name', 'European Passengers'' Federation'),
(20377, 17724, 'de', 'name', 'EuropƤische Fahrgastverband'),
(20378, 17725, 'en', 'name', 'European Patent Organisation'),
(20379, 17725, 'de', 'name', 'EuropƤische Patentorganisation'),
(20380, 17726, 'no_lang_code', 'name', 'Graybug Vision (United States)'),
(20381, 17727, 'en', 'name', 'European Photonics Industry Consortium'),
(20382, 17728, 'en', 'name', 'European Centre for Soft Computing'),
(20383, 17729, 'no_lang_code', 'name', 'Eminent Services Corporation (United States)'),
(20384, 17730, 'no_lang_code', 'name', 'Emissions Reduzierungs Concepte (Germany)'),
(20385, 17731, 'en', 'name', 'European Public Law Center'),
(20386, 17732, 'no_lang_code', 'name', 'Newable (United Kingdom)'),
(20387, 17733, 'en', 'name', 'European Science Events Association'),
(20388, 17734, 'en', 'name', 'Greater Manchester Combined Authority'),
(20389, 17735, 'no_lang_code', 'name', 'European Research Services'),
(20390, 17736, 'en', 'name', 'European Group for Integrated Social Research'),
(20391, 17736, 'de', 'name', 'Europäische Gesellschaft für Regionale und Internationale Sozialforschung'),
(20392, 17737, 'en', 'name', 'European Society for Therapeutic Radiology and Oncology'),
(20393, 17738, 'en', 'name', 'European Solar Thermal Electricity Association'),
(20394, 17739, 'en', 'name', 'European State Forest Association'),
(20395, 17740, 'no_lang_code', 'name', 'European Thermodynamics (United Kingdom)'),
(20396, 17741, 'en', 'name', 'Greek Solar Industry Association'),
(20397, 17742, 'en', 'name', 'Empowerment Program'),
(20398, 17743, 'en', 'name', 'Green Aviation Research and Development Network'),
(20399, 17744, 'no_lang_code', 'name', 'GMSbiotech (United States)'),
(20400, 17745, 'en', 'name', 'European Trade Union Institute'),
(20401, 17746, 'no_lang_code', 'name', 'Green Biologics (United Kingdom)'),
(20402, 17747, 'en', 'name', 'European Tyre Recycling Association'),
(20403, 17748, 'no_lang_code', 'name', 'Data Fusion International (Ireland)'),
(20404, 17749, 'no_lang_code', 'name', 'Genotype (Germany)'),
(20405, 17750, 'no_lang_code', 'name', 'Ɓguas de Portugal (Portugal)'),
(20406, 17751, 'en', 'name', 'Eurogas'),
(20407, 17752, 'de', 'name', 'Emschergenossenschaft'),
(20408, 17753, 'no_lang_code', 'name', 'Emtele (Finland)'),
(20409, 17754, 'en', 'name', 'Illinois Archaeological Survey'),
(20410, 17755, 'no_lang_code', 'name', 'AtriCure (United States)'),
(20411, 17756, 'en', 'name', 'Green Mountain College'),
(20412, 17757, 'no_lang_code', 'name', 'OnCore Biopharma (United States)'),
(20413, 17758, 'en', 'name', 'Illinois General Assembly'),
(20414, 17759, 'no_lang_code', 'name', 'Green Tide Turbines (United Kingdom)'),
(20415, 17760, 'no_lang_code', 'name', 'Greenbank Group (United Kingdom)'),
(20416, 17761, 'en', 'name', 'Illinois State Board of Education'),
(20417, 17762, 'no_lang_code', 'name', 'TriStar Wellness Solutions (United States)'),
(20418, 17763, 'no_lang_code', 'name', 'GreenField Specialty Alcolhols (Canada)'),
(20419, 17764, 'no_lang_code', 'name', 'Enclavix (United States)'),
(20420, 17765, 'no_lang_code', 'name', 'Illumina (United Kingdom)'),
(20421, 17766, 'no_lang_code', 'name', 'Enco (Italy)'),
(20422, 17767, 'no_lang_code', 'name', 'Encore Pharmaceuticals (United States)'),
(20423, 17768, 'no_lang_code', 'name', 'Encraft (United Kingdom)'),
(20424, 17769, 'no_lang_code', 'name', 'Endomag (United Kingdom)'),
(20425, 17770, 'no_lang_code', 'name', 'Gentoo (United Kingdom)'),
(20426, 17771, 'no_lang_code', 'name', 'HemoGenix (United States)'),
(20427, 17772, 'en', 'name', 'Hemophilia Federation of America'),
(20428, 17773, 'en', 'name', 'Greenhope Services for Women'),
(20429, 17774, 'no_lang_code', 'name', 'Imatecno (Italy)'),
(20430, 17775, 'no_lang_code', 'name', 'Henkel (Belgium)'),
(20431, 17776, 'fr', 'name', 'Haute Ɖcole Lucia de BrouckĆØre'),
(20432, 17776, 'en', 'name', 'Higher Education Institution Lucia de BrouckĆØre'),
(20433, 17777, 'en', 'name', 'Washington Radiology Associates'),
(20434, 17778, 'no_lang_code', 'name', 'Albemarle (Belgium)'),
(20435, 17779, 'no_lang_code', 'name', 'Greenspace Scotland (United Kingdom)'),
(20436, 17780, 'no_lang_code', 'name', 'GeoAdvice Engineering (Canada)'),
(20437, 17781, 'no_lang_code', 'name', 'imaGeau (France)'),
(20438, 17782, 'no_lang_code', 'name', 'ImageCat (United Kingdom)'),
(20439, 17783, 'no_lang_code', 'name', 'Greentronics (Romania)'),
(20440, 17784, 'no_lang_code', 'name', 'Geoanalysis (Greece)'),
(20441, 17784, 'el', 'name', 'Ī“Ī•Ī©Ī‘ĪĪ‘Ī›Ī„Ī£Ī—'),
(20442, 17785, 'no_lang_code', 'name', 'Atlas Copco (United Kingdom)'),
(20443, 17786, 'no_lang_code', 'name', 'Source BioScience (Germany)'),
(20444, 17787, 'en', 'name', 'Greenwich Public Schools'),
(20445, 17788, 'fr', 'name', 'Institut de l''Environnement et Recherches Agricoles'),
(20446, 17789, 'no_lang_code', 'name', 'ImaginAb (United States)'),
(20447, 17790, 'no_lang_code', 'name', 'Imagination Software Corporation (United States)'),
(20448, 17791, 'en', 'name', 'University of Algiers Benyoucef Benkhedda'),
(20449, 17791, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الجزائر – بن يوسف بن خـدة'),
(20450, 17792, 'no_lang_code', 'name', 'Imagination Technologies (United Kingdom)'),
(20451, 17793, 'no_lang_code', 'name', 'Geocontrol (Spain)'),
(20452, 17794, 'fr', 'name', 'Institut National d''Optique'),
(20453, 17794, 'en', 'name', 'National Optics Institute'),
(20454, 17795, 'no_lang_code', 'name', 'VizSeek (United States)'),
(20455, 17796, 'fr', 'name', 'Greta Lac'),
(20456, 17797, 'no_lang_code', 'name', 'Gridpoint solutions (United Kingdom)'),
(20457, 17798, 'no_lang_code', 'name', 'ImaTx (United States)'),
(20458, 17799, 'no_lang_code', 'name', 'Grimm Aerosol Technik (Germany)'),
(20459, 17800, 'no_lang_code', 'name', 'Groenholland (Netherlands)'),
(20460, 17801, 'no_lang_code', 'name', 'Imaging Biometrics (United States)'),
(20461, 17802, 'no_lang_code', 'name', 'Geodiscover (Portugal)'),
(20462, 17803, 'en', 'name', 'Grossmont Cuyamaca Community College District'),
(20463, 17804, 'no_lang_code', 'name', 'HepatoSys (United States)'),
(20464, 17805, 'fr', 'name', 'Groupe de Recherche en Agriculture Biologique'),
(20465, 17806, 'no_lang_code', 'name', 'General Patent Corporation (United States)'),
(20466, 17807, 'no_lang_code', 'name', 'Heraeus (United Kingdom)'),
(20467, 17808, 'no_lang_code', 'name', 'KraussMaffei (Germany)'),
(20468, 17809, 'no_lang_code', 'name', 'Geoloc Systems (France)'),
(20469, 17810, 'no_lang_code', 'name', 'Hela Spice Canada (Canada)'),
(20470, 17811, 'fr', 'name', 'Institut National de Recherche en SantƩ Publique'),
(20471, 17812, 'no_lang_code', 'name', 'Sycamore Entertainment Group (United States)'),
(20472, 17813, 'en', 'name', 'State Geological Institute of Dionýz Štúr'),
(20473, 17814, 'no_lang_code', 'name', 'Hermia Business Development (Finland)'),
(20474, 17814, 'fi', 'name', 'Hermia Yrityskehitys'),
(20475, 17815, 'no_lang_code', 'name', 'Ovako (Finland)'),
(20476, 17816, 'en', 'name', 'Hernando Community Coalition'),
(20477, 17817, 'fr', 'name', 'Ministère de la Santé'),
(20478, 17818, 'no_lang_code', 'name', 'Marathon Oil (United States)'),
(20479, 17819, 'no_lang_code', 'name', 'Hero EspaƱa (Spain)'),
(20480, 17820, 'no_lang_code', 'name', 'Maritime Wirtschafts- und Schiffbauforschung (Germany)'),
(20481, 17821, 'no_lang_code', 'name', 'Herzog + Partner (Germany)'),
(20482, 17822, 'de', 'name', 'GründerRegio M'),
(20483, 17823, 'no_lang_code', 'name', 'Geomer (Germany)'),
(20484, 17824, 'no_lang_code', 'name', 'GeoMobile (Germany)'),
(20485, 17825, 'fr', 'name', 'Hespul'),
(20486, 17826, 'de', 'name', 'Hessen Mobil – Straßen- und Verkehrsmanagement'),
(20487, 17827, 'no_lang_code', 'name', 'IMET Corporation (United States)'),
(20488, 17828, 'no_lang_code', 'name', 'Aethlon Medical (United States)'),
(20489, 17829, 'en', 'name', 'Institute for Management of Innovation and Technology'),
(20490, 17830, 'en', 'name', 'Babbage Institute for Knowledge and Information Technologies'),
(20491, 17831, 'no_lang_code', 'name', 'HƉTFA Research Institute'),
(20492, 17832, 'en', 'name', 'Georgia Gwinnett College'),
(20493, 17833, 'en', 'name', 'Georgia Mental Health Consumer Network'),
(20494, 17834, 'no_lang_code', 'name', 'ImmersiveTouch (United States)'),
(20495, 17835, 'en', 'name', 'Georgia Parent Support Network'),
(20496, 17836, 'no_lang_code', 'name', 'Hi-Z Technology (United States)'),
(20497, 17837, 'no_lang_code', 'name', 'GeoSAS (Ethiopia)'),
(20498, 17838, 'no_lang_code', 'name', 'Hidromod (Portugal)'),
(20499, 17839, 'no_lang_code', 'name', 'Hidrowatt (Spain)'),
(20500, 17840, 'no_lang_code', 'name', 'HiETA Technologies (United Kingdom)'),
(20501, 17841, 'no_lang_code', 'name', 'Geosat'),
(20502, 17842, 'no_lang_code', 'name', 'Cartes Bancaires (France)'),
(20503, 17843, 'no_lang_code', 'name', 'High Voltage Partial Discharge (United Kingdom)'),
(20504, 17844, 'en', 'name', 'Grwp Llandrillo Menai'),
(20505, 17845, 'fr', 'name', 'L''Institut national du patrimoine'),
(20506, 17845, 'en', 'name', 'National Heritage Institute'),
(20507, 17845, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ للتراث'),
(20508, 17846, 'no_lang_code', 'name', 'Immuno-Mycologics'),
(20509, 17847, 'no_lang_code', 'name', 'ImmBio (United Kingdom)'),
(20510, 17848, 'en', 'name', 'Higher Institute for Applied Sciences and Technology'),
(20511, 17848, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(20512, 17849, 'en', 'name', 'GS1 Germany'),
(20513, 17850, 'no_lang_code', 'name', 'ImmuVen (United States)'),
(20514, 17851, 'en', 'name', 'GS1 Belgium & Luxembourg'),
(20515, 17852, 'en', 'name', 'Impact Research and Development Organization'),
(20516, 17853, 'no_lang_code', 'name', 'Highland Biosciences (United Kingdom)'),
(20517, 17854, 'no_lang_code', 'name', 'Impact Innovations (Germany)'),
(20518, 17855, 'no_lang_code', 'name', 'Highland Fine Cheeses (United Kingdom)'),
(20519, 17856, 'fr', 'name', 'Institut National d’HygiĆØne Publique'),
(20520, 17857, 'no_lang_code', 'name', 'Hightec MC (Switzerland)'),
(20521, 17858, 'no_lang_code', 'name', 'GSI Group (United Kingdom)'),
(20522, 17859, 'no_lang_code', 'name', 'Geosciences Consultants'),
(20523, 17860, 'no_lang_code', 'name', 'Hill+Knowlton Strategies (Estonia)'),
(20524, 17861, 'no_lang_code', 'name', 'Hill Group (United States)'),
(20525, 17862, 'en', 'name', 'Information Management Policies Assessment for City Transport Systems'),
(20526, 17863, 'no_lang_code', 'name', 'GeoSpatiumLab (Spain)'),
(20527, 17864, 'no_lang_code', 'name', 'GeoSpectrum Technologies (Canada)'),
(20528, 17865, 'en', 'name', 'Cornell Scott-Hill Health Center'),
(20529, 17866, 'en', 'name', 'Hillsborough County Anti Drug Alliance’s'),
(20530, 17867, 'no_lang_code', 'name', 'Geostock (France)'),
(20531, 17868, 'no_lang_code', 'name', 'HiQScreen (Switzerland)'),
(20532, 17869, 'no_lang_code', 'name', 'Impetus Consultants'),
(20533, 17870, 'no_lang_code', 'name', 'Geotechnics (United Kingdom)'),
(20534, 17871, 'en', 'name', 'Impression 5 Science Center'),
(20535, 17872, 'en', 'name', 'French Polar Institute'),
(20536, 17872, 'fr', 'name', 'Institut Polaire FranƧais Paul Ɖmile Victor'),
(20537, 17873, 'no_lang_code', 'name', 'HireGround (Canada)'),
(20538, 17874, 'no_lang_code', 'name', 'GTC Kappelmeyer (Germany)'),
(20539, 17875, 'no_lang_code', 'name', 'Imprima Costruzioni (Italy)'),
(20540, 17876, 'en', 'name', 'Local Government Improvement and Development'),
(20541, 17877, 'no_lang_code', 'name', 'Hirst Magnetic Instruments (United Kingdom)'),
(20542, 17878, 'no_lang_code', 'name', 'IMS Nanofabrication (Austria)'),
(20543, 17879, 'no_lang_code', 'name', 'Imstar (France)'),
(20544, 17880, 'en', 'name', 'Hispanic Serving Health Professions Schools'),
(20545, 17881, 'en', 'name', 'Historic Royal Palaces'),
(20546, 17882, 'no_lang_code', 'name', 'GTP Technology'),
(20547, 17883, 'no_lang_code', 'name', 'Imtech Marine (Netherlands)'),
(20548, 17884, 'no_lang_code', 'name', 'GeoVax (United States)'),
(20549, 17885, 'no_lang_code', 'name', 'Geowatt (Switzerland)'),
(20550, 17886, 'no_lang_code', 'name', 'HIT09 (Italy)'),
(20551, 17887, 'no_lang_code', 'name', 'GeoX (Hungary)'),
(20552, 17888, 'en', 'name', 'International Medical Equipment Collaborative'),
(20553, 17889, 'en', 'name', 'Sinano Institute'),
(20554, 17890, 'no_lang_code', 'name', 'GEPRO (Germany)'),
(20555, 17891, 'no_lang_code', 'name', 'In Silico Toxicology (Switzerland)'),
(20556, 17892, 'en', 'name', 'IN Financing & Project Management'),
(20557, 17893, 'en', 'name', 'German Research School for Simulation Sciences'),
(20558, 17894, 'no_lang_code', 'name', 'HITEK Electronic Materials (United Kingdom)'),
(20559, 17895, 'no_lang_code', 'name', 'InTouch (United Kingdom)'),
(20560, 17896, 'no_lang_code', 'name', 'Gerstel (Germany)'),
(20561, 17897, 'no_lang_code', 'name', 'Guardian Chemicals (Canada)'),
(20562, 17898, 'en', 'name', 'In Vitro Testing Industrial Platform'),
(20563, 17899, 'no_lang_code', 'name', 'Gesellschaft für Technologieförderung Itzehoe'),
(20564, 17900, 'no_lang_code', 'name', 'Inaccess (Greece)'),
(20565, 17901, 'en', 'name', 'Guerilla Science'),
(20566, 17902, 'no_lang_code', 'name', 'Inael (Spain)'),
(20567, 17903, 'fr', 'name', 'Institut Technique de l''Agriculture Biologique'),
(20568, 17904, 'no_lang_code', 'name', 'Guidance (United Kingdom)'),
(20569, 17905, 'no_lang_code', 'name', 'Measurement Specialties (Germany)'),
(20570, 17906, 'en', 'name', 'Health Level Seven International'),
(20571, 17907, 'no_lang_code', 'name', 'Gram & Juhl (Denmark)'),
(20572, 17908, 'no_lang_code', 'name', 'Inbios (Italy)'),
(20573, 17909, 'en', 'name', 'Her Majesty''s Revenue and Customs'),
(20574, 17910, 'no_lang_code', 'name', 'HMGene (United States)'),
(20575, 17911, 'en', 'name', 'Guilford Technical Community College'),
(20576, 17912, 'fr', 'name', 'Institut de Conseil et d''Ɖtudes en DĆ©veloppement Durable'),
(20577, 17912, 'en', 'name', 'Institute for Consultancy and Studies in Sustainable Development'),
(20578, 17913, 'no_lang_code', 'name', 'HMJ Corporation (United States)'),
(20579, 17914, 'de', 'name', 'Hochschule der Medien'),
(20580, 17914, 'en', 'name', 'Stuttgart Media University'),
(20581, 17915, 'de', 'name', 'Institut Wohnen und Umwelt'),
(20582, 17916, 'en', 'name', 'Gulf of Maine Research Institute'),
(20583, 17917, 'no_lang_code', 'name', 'Incogen (United States)'),
(20584, 17918, 'no_lang_code', 'name', 'Incogna (Canada)'),
(20585, 17919, 'en', 'name', 'Institute for Advanced Studies in Aging and Geriatric Medicine'),
(20586, 17920, 'no_lang_code', 'name', 'IncreaseTime (Portugal)'),
(20587, 17921, 'en', 'name', 'Social Work Policy Institute'),
(20588, 17922, 'no_lang_code', 'name', 'Hochtief (Germany)'),
(20589, 17922, 'de', 'name', 'Hochtief Aktiengesellschaft'),
(20590, 17923, 'no_lang_code', 'name', 'Hocoma (Switzerland)'),
(20591, 17924, 'en', 'name', 'Gulf Research Center'),
(20592, 17925, 'no_lang_code', 'name', 'Hodos Media (United Kingdom)'),
(20593, 17926, 'en', 'name', 'Indian Health Board'),
(20594, 17927, 'en', 'name', 'Indian Hills Community College'),
(20595, 17928, 'de', 'name', 'Gesellschaft für Bioanalytik Münster'),
(20596, 17929, 'no_lang_code', 'name', 'Holo3'),
(20597, 17930, 'en', 'name', 'Institute for Behavioral Medicine'),
(20598, 17931, 'de', 'name', 'Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen'),
(20599, 17932, 'no_lang_code', 'name', 'Holland Renewable Energy Technologies (Netherlands)'),
(20600, 17933, 'en', 'name', 'Indigenous Peoples Task Force'),
(20601, 17934, 'de', 'name', 'Gesellschaft zur Fƶrderung angewandter Informatik'),
(20602, 17935, 'no_lang_code', 'name', 'Tronox (Netherlands)'),
(20603, 17936, 'en', 'name', 'Institute for Breathing and Sleep'),
(20604, 17937, 'it', 'name', 'Istituto Nazionale di Documentazione Innovazione e Ricerca Educativa'),
(20605, 17938, 'en', 'name', 'Holmes Community College'),
(20606, 17939, 'no_lang_code', 'name', 'Holonix (Italy)'),
(20607, 17940, 'en', 'name', 'Institute for Cognitive Prosthetics'),
(20608, 17941, 'no_lang_code', 'name', 'Holosonics (United States)'),
(20609, 17942, 'no_lang_code', 'name', 'Hotpoint (United Kingdom)'),
(20610, 17943, 'no_lang_code', 'name', 'Holscot Fluoroplastics (United Kingdom)'),
(20611, 17944, 'en', 'name', 'National Healthcare Service Center'),
(20612, 17944, 'hu', 'name', 'Állami Egészségügyi EllÔtó Központ'),
(20613, 17945, 'en', 'name', 'Holyoke Community College'),
(20614, 17946, 'no_lang_code', 'name', 'GexCon (Norway)'),
(20615, 17947, 'de', 'name', 'Institut für ökologische Wirtschaftsforschung'),
(20616, 17947, 'en', 'name', 'Institute for Ecological Economy Research'),
(20617, 17948, 'no_lang_code', 'name', 'Home Group (United Kingdom)'),
(20618, 17949, 'no_lang_code', 'name', 'H-Cubed (United States)'),
(20619, 17950, 'en', 'name', 'Help Committee'),
(20620, 17951, 'en', 'name', 'Institute of Energy Problems of Chemical Physics'),
(20621, 17951, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… проблем химической физики им. Š’.Š›. Š¢Š°Š»ŃŒŃ€Š¾Š·Šµ Российской акаГемии наук'),
(20622, 17952, 'no_lang_code', 'name', 'ICF International (United Kingdom)'),
(20623, 17953, 'no_lang_code', 'name', 'Honeywell (Romania)'),
(20624, 17954, 'no_lang_code', 'name', 'Haesevoets (Belgium)'),
(20625, 17955, 'en', 'name', 'Institute for Higher Education Policy'),
(20626, 17956, 'no_lang_code', 'name', 'Getas Petrogeo (Italy)'),
(20627, 17957, 'no_lang_code', 'name', 'H2 Logic (Denmark)'),
(20628, 17958, 'no_lang_code', 'name', 'HAYC3'),
(20629, 17959, 'no_lang_code', 'name', 'Hessen Agentur (Germany)'),
(20630, 17960, 'no_lang_code', 'name', 'Industrial Optical Measurement Systems (United States)'),
(20631, 17961, 'no_lang_code', 'name', 'TRUMPF (Germany)'),
(20632, 17962, 'en', 'name', 'Habitat Acquisition Trust'),
(20633, 17963, 'en', 'name', 'Industrial Research Institute'),
(20634, 17964, 'fr', 'name', 'Laboratoire d''Analyses Génétiques pour les Espèces Animales'),
(20635, 17965, 'no_lang_code', 'name', 'Horta (Italy)'),
(20636, 17966, 'no_lang_code', 'name', 'Denn (Spain)'),
(20637, 17967, 'no_lang_code', 'name', 'Somelos (Portugal)'),
(20638, 17968, 'no_lang_code', 'name', 'Horton Levi (United Kingdom)'),
(20639, 17969, 'en', 'name', 'Industrial Association Yarns Fabric Technical Textiles Industry'),
(20640, 17970, 'en', 'name', 'Institute for Market Economics'),
(20641, 17971, 'no_lang_code', 'name', 'Grupo Lederval (Spain)'),
(20642, 17972, 'en', 'name', 'Institute for Medical BioMathematics'),
(20643, 17973, 'no_lang_code', 'name', 'Indutherm ErwƤrmungsanlagen (Germany)'),
(20644, 17974, 'no_lang_code', 'name', 'Haines Lundberg and Waehler'),
(20645, 17975, 'pt', 'name', 'Hospital de Santo Espirito de Angra do HeroĆ­smo'),
(20646, 17976, 'pt', 'name', 'Hospital do Mar'),
(20647, 17977, 'no_lang_code', 'name', 'Informatizacija Energetika Avtomatizacija (Slovenia)'),
(20648, 17978, 'en', 'name', 'Hospital for Sick Children Pediatric Center'),
(20649, 17979, 'no_lang_code', 'name', 'Hakkı Usta Ogulları Mak.San.Tic (Turkey)'),
(20650, 17980, 'no_lang_code', 'name', 'Halevi Dweck (Israel)'),
(20651, 17981, 'no_lang_code', 'name', 'Halliday James (United Kingdom)'),
(20652, 17982, 'no_lang_code', 'name', 'Ramboll (United Kingdom)'),
(20653, 17983, 'no_lang_code', 'name', 'INERCO (Spain)'),
(20654, 17984, 'no_lang_code', 'name', 'HaloSource (United States)'),
(20655, 17985, 'en', 'name', 'Institute of Non-ferrous and Rare Metals'),
(20656, 17986, 'no_lang_code', 'name', 'HalTech'),
(20657, 17987, 'no_lang_code', 'name', 'Hamakua-Kohala Health'),
(20658, 17988, 'en', 'name', 'House Next Door'),
(20659, 17989, 'en', 'name', 'General Confederation of Greek Workers'),
(20660, 17990, 'no_lang_code', 'name', 'Hamamatsu Photonics (United Kingdom)'),
(20661, 17991, 'en', 'name', 'Institute for Physical Research'),
(20662, 17992, 'en', 'name', 'Housing & Care 21'),
(20663, 17993, 'no_lang_code', 'name', 'Bellicum Pharmaceuticals (United States)'),
(20664, 17994, 'no_lang_code', 'name', 'HQ-Dielectrics (Germany)'),
(20665, 17995, 'no_lang_code', 'name', 'Hamilton Thorne (United States)'),
(20666, 17996, 'no_lang_code', 'name', 'HRI Associates'),
(20667, 17997, 'en', 'name', 'Hands on Science Outreach'),
(20668, 17998, 'no_lang_code', 'name', 'HRS Spiratube (Spain)'),
(20669, 17999, 'en', 'name', 'iNets South West'),
(20670, 18000, 'en', 'name', 'HSBC Holdings'),
(20671, 18001, 'en', 'name', 'Institute for Social Research'),
(20672, 18002, 'en', 'name', 'Infectious Diseases Society of America'),
(20673, 18003, 'de', 'name', 'Handwerkskammer Trier'),
(20674, 18004, 'no_lang_code', 'name', 'Infineon Technologies (United Kingdom)'),
(20675, 18005, 'no_lang_code', 'name', 'Handy Chemicals (Canada)'),
(20676, 18006, 'en', 'name', 'Institute for Sustainability'),
(20677, 18007, 'en', 'name', 'Institute for Sustainable Development'),
(20678, 18008, 'no_lang_code', 'name', 'Infinium (United States)'),
(20679, 18009, 'no_lang_code', 'name', 'HT Laser (Finland)'),
(20680, 18010, 'no_lang_code', 'name', 'SOLIDpower (Switzerland)'),
(20681, 18011, 'no_lang_code', 'name', 'Huawei Technologies (Sweden)'),
(20682, 18012, 'no_lang_code', 'name', 'Infobyte (Italy)'),
(20683, 18013, 'no_lang_code', 'name', 'Hanover Scotland Housing Association (United Kingdom)'),
(20684, 18014, 'no_lang_code', 'name', 'InfoCamere (Italy)'),
(20685, 18015, 'no_lang_code', 'name', 'Hueck Folien (Austria)'),
(20686, 18016, 'no_lang_code', 'name', 'InfoConsult (Germany)'),
(20687, 18017, 'en', 'name', 'Institute for the Study of Societies and Knowledge'),
(20688, 18017, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за изслеГване на обществата Šø знанието'),
(20689, 18018, 'no_lang_code', 'name', 'Hugin Expert (Denmark)'),
(20690, 18019, 'no_lang_code', 'name', 'InfoCulture (United States)'),
(20691, 18020, 'no_lang_code', 'name', 'Infoport (Spain)'),
(20692, 18021, 'en', 'name', 'Hugo''s Restaurant'),
(20693, 18022, 'en', 'name', 'Hull City Council'),
(20694, 18023, 'no_lang_code', 'name', 'Informa (Italy)'),
(20695, 18024, 'no_lang_code', 'name', 'HULVERSHORN Eisengiesserei (Germany)'),
(20696, 18025, 'no_lang_code', 'name', 'Hansa Industrie Mixer (Germany)'),
(20697, 18026, 'no_lang_code', 'name', 'El Corte InglƩs (Spain)'),
(20698, 18027, 'no_lang_code', 'name', 'Humacyte (United States)'),
(20699, 18028, 'no_lang_code', 'name', 'CGI (Spain)'),
(20700, 18029, 'no_lang_code', 'name', 'Hanzo Archives (United Kingdom)'),
(20701, 18030, 'no_lang_code', 'name', 'Informatica Tecnologie e Servizi (Italy)'),
(20702, 18031, 'de', 'name', 'Institut für Angewandte Systemtechnik Bremen'),
(20703, 18031, 'en', 'name', 'Institute for Applied Systems Technology Bremen'),
(20704, 18032, 'no_lang_code', 'name', 'Sicherheit, Informatik und Zentrale Services'),
(20705, 18033, 'no_lang_code', 'name', 'Human Reliability (United Kingdom)'),
(20706, 18034, 'en', 'name', 'Human Services Research Institute'),
(20707, 18035, 'no_lang_code', 'name', 'Humanetics Corporation (United States)'),
(20708, 18036, 'no_lang_code', 'name', 'Information & Image Management Systems (Spain)'),
(20709, 18037, 'no_lang_code', 'name', 'Harineras Villamayor (Spain)'),
(20710, 18038, 'en', 'name', 'Harlow College'),
(20711, 18039, 'no_lang_code', 'name', 'Information Highway Group (Spain)'),
(20712, 18040, 'en', 'name', 'Humber Bridge Board'),
(20713, 18041, 'no_lang_code', 'name', 'Hummingbird Precision Machine (United States)'),
(20714, 18042, 'no_lang_code', 'name', 'Harman (Germany)'),
(20715, 18043, 'no_lang_code', 'name', 'Hummingbird Scientific (United States)'),
(20716, 18044, 'no_lang_code', 'name', 'Harman Technology (United Kingdom)'),
(20717, 18045, 'no_lang_code', 'name', 'Harmonia (United States)'),
(20718, 18046, 'en', 'name', 'Instituto Multimedia'),
(20719, 18047, 'no_lang_code', 'name', 'Harmonic Drive (Germany)'),
(20720, 18048, 'no_lang_code', 'name', 'Magyar Posta'),
(20721, 18049, 'no_lang_code', 'name', 'A.S.Sadykov Institute of Bioorganic Chemistry'),
(20722, 18050, 'en', 'name', 'Hartford Public Schools');
INSERT INTO `ror_settings` VALUES
(20723, 18051, 'pt', 'name', 'Instituto Nacional de EstatĆ­stica'),
(20724, 18051, 'en', 'name', 'National Statistical Institute of Portugal'),
(20725, 18052, 'no_lang_code', 'name', 'Informed Horizons Education (United States)'),
(20726, 18053, 'en', 'name', 'Institute of Chemical Engineering'),
(20727, 18053, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по инженерна Ń…ŠøŠ¼ŠøŃ'),
(20728, 18054, 'en', 'name', 'Institute of Chemical Engineering'),
(20729, 18055, 'en', 'name', 'Institute of Biopolymers and Chemical Fibres'),
(20730, 18056, 'en', 'name', 'Institute of Chemistry'),
(20731, 18057, 'en', 'name', 'Hunterdon Prevention Resources'),
(20732, 18058, 'no_lang_code', 'name', 'Infrabel (Belgium)'),
(20733, 18059, 'no_lang_code', 'name', 'Hunting Energy Services (United Kingdom)'),
(20734, 18060, 'no_lang_code', 'name', 'Huntington Consultancy (United States)'),
(20735, 18061, 'no_lang_code', 'name', 'Huntsman (Belgium)'),
(20736, 18062, 'en', 'name', 'Hawaii State Department of Education'),
(20737, 18063, 'en', 'name', 'Institute of Contemporary Arts'),
(20738, 18064, 'no_lang_code', 'name', 'Hazen Research (United States)'),
(20739, 18065, 'en', 'name', 'V. A. Trapeznikov Institute of Control Sciences'),
(20740, 18065, 'de', 'name', 'W.A.Trapeznikow Institut für Steuerungswissenschaften'),
(20741, 18065, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ им. Š’. А. Трапезникова Российской акаГемии наук'),
(20742, 18066, 'no_lang_code', 'name', 'InfraTec (Germany)'),
(20743, 18067, 'en', 'name', 'Yu.G. Shafer Institute of Cosmophysical Research and Aeronomy'),
(20744, 18067, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космофизических исслеГований Šø Š°ŃŃ€Š¾Š½Š¾Š¼ŠøŠø им. Š®.Š“.Шафера Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(20745, 18068, 'no_lang_code', 'name', 'Health Care Service Corporation'),
(20746, 18069, 'en', 'name', 'A.V. Shubnikov Institute of Crystallography'),
(20747, 18069, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кристаллографии им. А.Š’. Шубникова Российской акаГемии наук'),
(20748, 18070, 'no_lang_code', 'name', 'Blutip (Canada)'),
(20749, 18071, 'no_lang_code', 'name', 'Hybrid Plastics (United States)'),
(20750, 18072, 'no_lang_code', 'name', 'Hybrigenics (France)'),
(20751, 18073, 'en', 'name', 'ING Bank'),
(20752, 18073, 'nl', 'name', 'Internationale Nederlanden Groep'),
(20753, 18074, 'en', 'name', 'Institute of Economics'),
(20754, 18075, 'en', 'name', 'Economic Research Institute'),
(20755, 18075, 'bg', 'name', 'Š˜ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š½Š°ŃƒŃ‡Š½Šø ŠøŠ·ŃŠ»ŠµŠ“Š²Š°Š½ŠøŃ'),
(20756, 18076, 'no_lang_code', 'name', 'National Institute for Research and Development in Welding and Material Testing'),
(20757, 18077, 'ro', 'name', 'Institutul National de Cercetare si Dezvoltare pentru Fizica Pamantului'),
(20758, 18077, 'en', 'name', 'National Institutue of Research and Development for Earth’s Physics'),
(20759, 18078, 'no_lang_code', 'name', 'Checkit (United Kingdom)'),
(20760, 18079, 'no_lang_code', 'name', 'HƤmosan (Austria)'),
(20761, 18080, 'no_lang_code', 'name', 'Healionics (United States)'),
(20762, 18081, 'pt', 'name', 'Instituto Nacional de Medicina'),
(20763, 18081, 'en', 'name', 'National Legal Medicine Institute'),
(20764, 18082, 'en', 'name', 'Institute of Ion Plasma Laser Technologies'),
(20765, 18083, 'en', 'name', 'Institute of Electronics'),
(20766, 18083, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по електроника'),
(20767, 18084, 'en', 'name', 'Health and Safety Authority'),
(20768, 18085, 'no_lang_code', 'name', 'Krejci Engineering (Czechia)'),
(20769, 18086, 'en', 'name', 'Health Initiatives for Youth'),
(20770, 18087, 'no_lang_code', 'name', 'Ingegneria dei Trasporti (Italy)'),
(20771, 18088, 'no_lang_code', 'name', 'Ingeniatrics TecnologĆ­as (Spain)'),
(20772, 18089, 'en', 'name', 'Health On The Net Foundation'),
(20773, 18090, 'no_lang_code', 'name', 'Ingenico (France)'),
(20774, 18091, 'en', 'name', 'Health Promotion Services'),
(20775, 18092, 'no_lang_code', 'name', 'Hycult Biotech (Netherlands)'),
(20776, 18093, 'en', 'name', 'Health Resources in Action'),
(20777, 18094, 'en', 'name', 'Hyde Housing Association'),
(20778, 18095, 'no_lang_code', 'name', 'Health Technomics (United States)'),
(20779, 18096, 'no_lang_code', 'name', 'Yara (Norway)'),
(20780, 18097, 'en', 'name', 'HealthInsight'),
(20781, 18098, 'no_lang_code', 'name', 'Ingenierƭa y Soluciones InformƔticas (Spain)'),
(20782, 18099, 'no_lang_code', 'name', 'Ingenieurgesellschaft Auto und Verkehr (Germany)'),
(20783, 18100, 'no_lang_code', 'name', 'Ingenieurgesellschaft für Technische Software (Germany)'),
(20784, 18101, 'no_lang_code', 'name', 'Battery Ventures (United States)'),
(20785, 18102, 'no_lang_code', 'name', 'Healthways (United States)'),
(20786, 18103, 'en', 'name', 'Healthy Communities Initiative of St Joseph County'),
(20787, 18104, 'en', 'name', 'Healthy Northeast Pennsylvania Initiative'),
(20788, 18105, 'no_lang_code', 'name', 'Mowi (Norway)'),
(20789, 18106, 'en', 'name', 'Healthy Teen Network'),
(20790, 18107, 'no_lang_code', 'name', 'Institute of Forest Ecosystem Research'),
(20791, 18108, 'no_lang_code', 'name', 'Heart Imaging Technologies (United States)'),
(20792, 18109, 'en', 'name', 'Hearth'),
(20793, 18110, 'en', 'name', 'Heartland Family Service'),
(20794, 18111, 'en', 'name', 'Heartland Alliance'),
(20795, 18112, 'en', 'name', 'NS Kurnakova Institute of General and Inorganic Chemistry'),
(20796, 18112, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей Šø неорганической химии им. Š.Š”. ŠšŃƒŃ€Š½Š°ŠŗŠ¾Š²Š° Российской акаГемии наук'),
(20797, 18113, 'no_lang_code', 'name', 'Van Putten-Gas Energy Observatory (Netherlands)'),
(20798, 18114, 'en', 'name', 'Hebrew Home'),
(20799, 18115, 'no_lang_code', 'name', 'Hydrocontrol (Italy)'),
(20800, 18116, 'no_lang_code', 'name', 'Hebridean Seaweed (United Kingdom)'),
(20801, 18117, 'no_lang_code', 'name', 'Probiodrug (Germany)'),
(20802, 18118, 'no_lang_code', 'name', 'Hydrodata (Italy)'),
(20803, 18119, 'no_lang_code', 'name', 'Hydrogen Solar (United Kingdom)'),
(20804, 18120, 'no_lang_code', 'name', 'Inhouse Engineering (Germany)'),
(20805, 18121, 'en', 'name', 'Department of Geodesy, Remote Sensing and Land Offices'),
(20806, 18121, 'hu', 'name', 'GeodƩzia, TƔvƩrzƩkelƩs Ʃs Fƶldhivatalok TanszƩk'),
(20807, 18122, 'no_lang_code', 'name', 'Hydrogenics (Belgium)'),
(20808, 18123, 'no_lang_code', 'name', 'HydroLogic (Netherlands)'),
(20809, 18124, 'no_lang_code', 'name', 'Hydrometeorological Innovative Solutions (Spain)'),
(20810, 18125, 'en', 'name', 'Helena Public School District'),
(20811, 18126, 'no_lang_code', 'name', 'Heliatek (Germany)'),
(20812, 18127, 'en', 'name', 'Helicon Foundation'),
(20813, 18128, 'no_lang_code', 'name', 'RM Education (United Kingdom)'),
(20814, 18129, 'en', 'name', 'Helio International'),
(20815, 18130, 'no_lang_code', 'name', 'Institut für Prüftechnik Gerätebau (Germany)'),
(20816, 18131, 'no_lang_code', 'name', 'Hastoe Group (United Kingdom)'),
(20817, 18132, 'fr', 'name', 'Institut de l''Information Scientifique et Technique'),
(20818, 18132, 'en', 'name', 'Institute of Scientific and Technical Information'),
(20819, 18133, 'no_lang_code', 'name', 'Hyperion (Ireland)'),
(20820, 18134, 'no_lang_code', 'name', 'InLight Solutions (United States)'),
(20821, 18135, 'no_lang_code', 'name', 'Hyperstone (Germany)'),
(20822, 18136, 'no_lang_code', 'name', 'Acrion Technologies (United States)'),
(20823, 18137, 'no_lang_code', 'name', 'Inmatec Technologies (Germany)'),
(20824, 18138, 'no_lang_code', 'name', 'Helitune (United Kingdom)'),
(20825, 18139, 'en', 'name', 'M. Nodia Institute of Geophysics'),
(20826, 18140, 'no_lang_code', 'name', 'Inmatech (United States)'),
(20827, 18141, 'no_lang_code', 'name', 'Hypertech (Greece)'),
(20828, 18142, 'no_lang_code', 'name', 'Innegra Technologies (United States)'),
(20829, 18143, 'en', 'name', 'Institute of Global Climate and Ecology'),
(20830, 18143, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ глобального климата Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(20831, 18144, 'pt', 'name', 'Instituto PortuguĆŖs de Malacologia'),
(20832, 18145, 'no_lang_code', 'name', 'Lehigh Hanson (Canada)'),
(20833, 18146, 'no_lang_code', 'name', 'InnerOptic Technology (United States)'),
(20834, 18147, 'no_lang_code', 'name', 'Hysytech (Italy)'),
(20835, 18148, 'no_lang_code', 'name', 'Hyundai Motors (Germany)'),
(20836, 18149, 'en', 'name', 'Joint Institute for High Temperatures'),
(20837, 18149, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований Российской акаГемии наук'),
(20838, 18150, 'no_lang_code', 'name', 'Piraeus Bank'),
(20839, 18150, 'el', 'name', 'Τράπεζα Ī ĪµĪ¹ĻĪ±Ī¹ĻŽĻ‚'),
(20840, 18151, 'en', 'name', 'Institute of Highway Engineers'),
(20841, 18152, 'en', 'name', 'Institute of Ideas'),
(20842, 18153, 'no_lang_code', 'name', 'I-Moss (Belgium)'),
(20843, 18154, 'en', 'name', 'Institute of International Education'),
(20844, 18155, 'no_lang_code', 'name', 'Inner Health'),
(20845, 18156, 'no_lang_code', 'name', 'I.CO.P (Italy)'),
(20846, 18157, 'no_lang_code', 'name', 'Innolume (Germany)'),
(20847, 18158, 'no_lang_code', 'name', 'Helmed Spine Implants (Greece)'),
(20848, 18159, 'en', 'name', 'I.I. Schmalhausen Institute of Zoology'),
(20849, 18159, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ зоології ім. І. І. Шмальгаузена ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(20850, 18160, 'no_lang_code', 'name', 'Innopole (Spain)'),
(20851, 18161, 'en', 'name', 'Institute of Laser Physics'),
(20852, 18161, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лазерной физики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(20853, 18162, 'no_lang_code', 'name', 'Helmut Christmann (Germany)'),
(20854, 18163, 'no_lang_code', 'name', 'I+ (Italy)'),
(20855, 18164, 'en', 'name', 'Institute of Linguistics'),
(20856, 18164, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ·Ń‹ŠŗŠ¾Š·Š½Š°Š½ŠøŃ Российской акаГемии наук'),
(20857, 18165, 'en', 'name', 'Regional Innovation Agency of Central Hungary'),
(20858, 18166, 'no_lang_code', 'name', 'Innostart (Hungary)'),
(20859, 18166, 'hu', 'name', 'Innostart Nemzeti Üzleti és InnovÔciós Központ AlapítvÔny'),
(20860, 18167, 'no_lang_code', 'name', 'Innotec (Italy)'),
(20861, 18168, 'en', 'name', 'Institute of Mathematical Problems of Biology'),
(20862, 18168, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математических проблем биологии (Š˜ŠœŠŸŠ‘ Š ŠŠ)'),
(20863, 18169, 'no_lang_code', 'name', 'International Marine and Dredging Consultants'),
(20864, 18170, 'no_lang_code', 'name', 'Innoterm (Hungary)'),
(20865, 18171, 'en', 'name', 'Institute of Mathematics and Computer Science'),
(20866, 18172, 'no_lang_code', 'name', 'International Medias Data Services (Canada)'),
(20867, 18173, 'no_lang_code', 'name', 'Oceaneering International (United Kingdom)'),
(20868, 18174, 'no_lang_code', 'name', 'Innova (Hungary)'),
(20869, 18175, 'en', 'name', 'Institute of Mathematics and Mechanics'),
(20870, 18176, 'en', 'name', 'Herzliya Medical Center'),
(20871, 18176, 'he', 'name', '×”×Ø×¦×œ×™×” מדיקל הנטר'),
(20872, 18177, 'en', 'name', 'International Office for Water'),
(20873, 18177, 'fr', 'name', 'Office International de l’Eau'),
(20874, 18177, 'es', 'name', 'Oficina Internacional del Agua'),
(20875, 18178, 'no_lang_code', 'name', 'Innovatia (Canada)'),
(20876, 18179, 'en', 'name', 'G.V. Kurdyumov Institute for Metal Physics'),
(20877, 18179, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металофізики імені Š“. Š’. ŠšŃƒŃ€Š“ŃŽŠ¼Š¾Š²Š° ŠŠŠ України'),
(20878, 18179, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металлофизики ŠŠŠ Украины'),
(20879, 18180, 'en', 'name', 'Innovation Initiatives Ontario North'),
(20880, 18181, 'no_lang_code', 'name', 'IAPETOS (Greece)'),
(20881, 18182, 'en', 'name', 'Irish Rail'),
(20882, 18183, 'no', 'name', 'Innovasjon Norge'),
(20883, 18183, 'no_lang_code', 'name', 'Innovation Norway (Norway)'),
(20884, 18184, 'en', 'name', 'International Organization for Migration'),
(20885, 18185, 'en', 'name', 'International Organization for Migration'),
(20886, 18185, 'de', 'name', 'Internationale Organisation für Migration'),
(20887, 18185, 'fr', 'name', 'Organisation internationale pour les migrations'),
(20888, 18185, 'it', 'name', 'Organizzazione Internazionale per le Migrazioni'),
(20889, 18186, 'no_lang_code', 'name', 'Innovation Strategies (Spain)'),
(20890, 18187, 'en', 'name', 'Institute for Biotechnology and Bioengineering'),
(20891, 18188, 'no_lang_code', 'name', 'Innovative Biologics (United States)'),
(20892, 18189, 'no_lang_code', 'name', 'Rheonix (United States)'),
(20893, 18190, 'no_lang_code', 'name', 'Innovative Design Labs (United States)'),
(20894, 18191, 'en', 'name', 'International Primatological Society'),
(20895, 18192, 'no_lang_code', 'name', 'International Project Management, Plating and Materials (France)'),
(20896, 18193, 'en', 'name', 'Wisconsin Institute of Nutrition Research Foundation'),
(20897, 18194, 'no_lang_code', 'name', 'IBC Advanced Technologies (United States)'),
(20898, 18195, 'no_lang_code', 'name', 'Innovative Research (United States)'),
(20899, 18196, 'es', 'name', 'Instituto Tecnológico de Materiales de Asturias'),
(20900, 18197, 'en', 'name', 'International Security & Counter Terrorism Academy'),
(20901, 18198, 'no_lang_code', 'name', 'Iberia (Spain)'),
(20902, 18199, 'en', 'name', 'Institute of Oriental Studies'),
(20903, 18199, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Š¾ŃŃ‚Š¾ŠŗŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(20904, 18200, 'en', 'name', 'International Bureau for Environmental Studies'),
(20905, 18201, 'en', 'name', 'Institute of Physical and Organic Chemistry'),
(20906, 18202, 'no_lang_code', 'name', 'Innoprot (Spain)'),
(20907, 18203, 'en', 'name', 'International Society for Environmental Protection'),
(20908, 18204, 'no_lang_code', 'name', 'IBK (Germany)'),
(20909, 18205, 'no_lang_code', 'name', 'Innovazione Automotive Metalmeccanica (Italy)'),
(20910, 18205, 'it', 'name', 'Polo Innovazione Automotive'),
(20911, 18206, 'no_lang_code', 'name', 'IBK-Innovation (Germany)'),
(20912, 18207, 'no_lang_code', 'name', 'Innovia (United States)'),
(20913, 18208, 'en', 'name', 'Species360'),
(20914, 18209, 'no_lang_code', 'name', 'IBM (India)'),
(20915, 18210, 'no_lang_code', 'name', 'IBM (Italy)'),
(20916, 18211, 'pl', 'name', 'Innowacja Polska'),
(20917, 18212, 'no_lang_code', 'name', 'Innowep (Germany)'),
(20918, 18213, 'no_lang_code', 'name', 'Innu-Science (Canada)'),
(20919, 18214, 'pt', 'name', 'Instituto Terra e Memória'),
(20920, 18215, 'no_lang_code', 'name', 'Inova Pro (Czechia)'),
(20921, 18216, 'no_lang_code', 'name', 'Inox Pneumatic (Denmark)'),
(20922, 18217, 'en', 'name', 'Institute of Physics'),
(20923, 18218, 'no_lang_code', 'name', 'IBSmm (Czechia)'),
(20924, 18219, 'no_lang_code', 'name', 'Inpria (United States)'),
(20925, 18220, 'en', 'name', 'Institute of Technical Acoustics'),
(20926, 18220, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Ń‚ŃŃ…Š½Ń–Ń‡Š½Š°Š¹ Š°ŠŗŃƒŃŃ‚Ń‹ŠŗŃ–'),
(20927, 18221, 'no_lang_code', 'name', 'InRay Solutions (Bulgaria)'),
(20928, 18222, 'no_lang_code', 'name', 'Tentnology (Canada)'),
(20929, 18223, 'no_lang_code', 'name', 'Ibstock Brick (United Kingdom)'),
(20930, 18224, 'de', 'name', 'Institut für Bildungsforschung der Wirtschaft'),
(20931, 18225, 'en', 'name', 'International Union Against Tuberculosis and Lung Disease'),
(20932, 18226, 'no_lang_code', 'name', 'IBZ - Salzchemie (Germany)'),
(20933, 18227, 'en', 'name', 'International Union for Electricity applications'),
(20934, 18228, 'no_lang_code', 'name', 'Topigs Norsvin (Netherlands)'),
(20935, 18229, 'no_lang_code', 'name', 'Inro Consultants (Canada)'),
(20936, 18230, 'no_lang_code', 'name', 'IC Consulenten Ziviltechniker (Austria)'),
(20937, 18231, 'no_lang_code', 'name', 'Insiel (Italy)'),
(20938, 18232, 'en', 'name', 'International Association for Cereal Science and Technology'),
(20939, 18232, 'de', 'name', 'Internationale Gesellschaft für Getreidewissenschaft und -technologie'),
(20940, 18233, 'no_lang_code', 'name', 'Insight Design Labs (Canada)'),
(20941, 18234, 'no_lang_code', 'name', 'OS Alliance (Austria)'),
(20942, 18235, 'en', 'name', 'Institute of Radio Astronomy'),
(20943, 18235, 'uk', 'name', 'РаГіоастрономічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(20944, 18236, 'en', 'name', 'Ministry of the Interior'),
(20945, 18236, 'tr', 'name', 'İçişleri Bakanlığı'),
(20946, 18237, 'no_lang_code', 'name', 'InSightec (Israel)'),
(20947, 18238, 'no_lang_code', 'name', 'Insilico Biotechnology (Germany)'),
(20948, 18239, 'no_lang_code', 'name', 'Internazionale Marmi e Macchine Carrara (Italy)'),
(20949, 18240, 'en', 'name', 'Internet Archive'),
(20950, 18241, 'en', 'name', 'Reproductive Medicine Institute'),
(20951, 18242, 'no_lang_code', 'name', 'Internet Society Bulgaria'),
(20952, 18243, 'no_lang_code', 'name', 'ICON Technology & Process Consulting (United Kingdom)'),
(20953, 18244, 'en', 'name', 'Institute of Rural and Agricultural Development'),
(20954, 18244, 'pl', 'name', 'Instytut Rozwoju Wsi i Rolnictwa Polskiej Akademii Nauk'),
(20955, 18245, 'no_lang_code', 'name', 'Icosagen (Estonia)'),
(20956, 18246, 'no_lang_code', 'name', 'ICTS (United Kingdom)'),
(20957, 18247, 'no_lang_code', 'name', 'Interoud Innovation (Spain)'),
(20958, 18248, 'no_lang_code', 'name', 'Insoco (Spain)'),
(20959, 18249, 'en', 'name', 'Idaho Federation of Families for Children''s Mental Health'),
(20960, 18250, 'no_lang_code', 'name', 'Equens (Netherlands)'),
(20961, 18251, 'en', 'name', 'Idaho State Department of Education'),
(20962, 18252, 'en', 'name', 'IDConsortium'),
(20963, 18253, 'en', 'name', 'Institute of Social Innovations'),
(20964, 18254, 'no_lang_code', 'name', 'Interporto Bologna (Italy)'),
(20965, 18255, 'no_lang_code', 'name', 'Interscience Communications (United Kingdom)'),
(20966, 18256, 'no_lang_code', 'name', 'IDEA Bio-Medical (Israel)'),
(20967, 18257, 'ro', 'name', 'Institutul Naţional de Cercetare Dezvoltare pentru Chimie si Petrochimie'),
(20968, 18258, 'no_lang_code', 'name', 'Ideasis (Greece)'),
(20969, 18259, 'no_lang_code', 'name', 'Ideko (Spain)'),
(20970, 18260, 'en', 'name', 'National Institute for Research and Development of Isotopic and Molecular Technologies'),
(20971, 18261, 'no_lang_code', 'name', 'ideXlab (France)'),
(20972, 18262, 'en', 'name', 'Institute of Solar-Terrestrial Physics'),
(20973, 18262, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ солнечно-земной физики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(20974, 18263, 'en', 'name', 'Institute of Solid State Chemistry and Mechanochemistry'),
(20975, 18263, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии тверГого тела Šø механохимии Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(20976, 18264, 'no_lang_code', 'name', 'Institute of Spring Technology'),
(20977, 18265, 'no_lang_code', 'name', 'Idio (United Kingdom)'),
(20978, 18266, 'no_lang_code', 'name', 'InterSystems (United States)'),
(20979, 18267, 'no_lang_code', 'name', 'Intertanko (Norway)'),
(20980, 18268, 'en', 'name', 'Institute of Terrestrial Magnetism Ionosphere and Radio Wave Propagation'),
(20981, 18268, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ земного магнетизма, ионосферы Šø Ń€Š°ŃŠæŃ€Š¾ŃŃ‚Ń€Š°Š½ŠµŠ½ŠøŃ раГиоволн им. Š. Š’. Пушкова'),
(20982, 18269, 'en', 'name', 'Belgian Road Safety Institute'),
(20983, 18269, 'nl', 'name', 'Belgisch Instituut Voor de Verkeersveiligheid'),
(20984, 18269, 'fr', 'name', 'Institut Belge pour la Sécurité Routière'),
(20985, 18270, 'en', 'name', 'Institute of Thermophysics'),
(20986, 18270, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплофизики Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(20987, 18271, 'no_lang_code', 'name', 'Idom (Spain)'),
(20988, 18272, 'en', 'name', 'Kola Science Centre'),
(20989, 18272, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Кольского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(20990, 18273, 'en', 'name', 'Institute for Applied Environmental Economics'),
(20991, 18274, 'no_lang_code', 'name', 'InterveXion Therapeutics (United States)'),
(20992, 18275, 'no_lang_code', 'name', 'Idrodepurazione (Italy)'),
(20993, 18276, 'no_lang_code', 'name', 'Idropan dell’Orto Depuratori (Italy)'),
(20994, 18277, 'no_lang_code', 'name', 'Instrument Design Technology (United Kingdom)'),
(20995, 18278, 'en', 'name', 'Institute of World Economy and International Relations'),
(20996, 18278, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мировой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(20997, 18279, 'no_lang_code', 'name', 'Innovation Energie DƩveloppement (France)'),
(20998, 18280, 'no_lang_code', 'name', 'Informatique Electromagnetisme Electronique Analyse Numerique (France)'),
(20999, 18281, 'en', 'name', 'Road and Bridge Research Institute'),
(21000, 18282, 'ca', 'name', 'Institut d''EstadĆ­stica de Catalunya'),
(21001, 18282, 'en', 'name', 'Statistical Institute of Catalonia'),
(21002, 18283, 'no_lang_code', 'name', 'Silence Therapeutics (United States)'),
(21003, 18284, 'en', 'name', 'Rensselaerville Institute'),
(21004, 18285, 'en', 'name', 'Institute of Plasma Physics and Laser Microfusion'),
(21005, 18286, 'no_lang_code', 'name', 'Intrinsic LifeSciences (United States)'),
(21006, 18287, 'no_lang_code', 'name', 'Introversion Software (United Kingdom)'),
(21007, 18288, 'pl', 'name', 'Instytut Morski w Gdańsku'),
(21008, 18288, 'en', 'name', 'Maritime Institute in Gdansk'),
(21009, 18289, 'no_lang_code', 'name', 'Intune Networks (Ireland)'),
(21010, 18290, 'es', 'name', 'Instituto Nacional del Agua'),
(21011, 18291, 'en', 'name', 'Inuit Circumpolar Council'),
(21012, 18292, 'en', 'name', 'Cervantes Institute'),
(21013, 18292, 'es', 'name', 'Instituto Cervantes'),
(21014, 18293, 'no_lang_code', 'name', 'inuTech (Germany)'),
(21015, 18294, 'en', 'name', 'Institute for Fuels and Renewable Energy'),
(21016, 18295, 'no_lang_code', 'name', 'Invenio Imaging (United States)'),
(21017, 18296, 'fr', 'name', 'Institut de recherches Ʃconomiques et sociales'),
(21018, 18297, 'no_lang_code', 'name', 'Insulcon (Netherlands)'),
(21019, 18298, 'no_lang_code', 'name', 'Invent (Italy)'),
(21020, 18299, 'no_lang_code', 'name', 'Rolled-Ribbon (United States)'),
(21021, 18300, 'no_lang_code', 'name', 'ApplusVelosi (United Kingdom)'),
(21022, 18301, 'pt', 'name', 'Instituto de CiĆŖncia e Tecnologia de PolĆ­meros'),
(21023, 18301, 'en', 'name', 'Polymer Science and Technology Institute'),
(21024, 18302, 'no_lang_code', 'name', 'Inventys Thermal Technologies (Canada)'),
(21025, 18303, 'no_lang_code', 'name', 'Intecsea (Canada)'),
(21026, 18304, 'no_lang_code', 'name', 'Fluvius (Belgium)'),
(21027, 18305, 'no_lang_code', 'name', 'IDI Eikon (Spain)'),
(21028, 18306, 'pt', 'name', 'Instituto de Desenvolvimento e Inovação Tecnológica do Minho'),
(21029, 18307, 'no_lang_code', 'name', 'Invisible Dust (United Kingdom)'),
(21030, 18308, 'no_lang_code', 'name', 'Invistics (United States)'),
(21031, 18309, 'no_lang_code', 'name', 'Woodward (Switzerland)'),
(21032, 18310, 'es', 'name', 'Instituto de Fomento de la Región de Murcia'),
(21033, 18311, 'no_lang_code', 'name', 'Invoke Labs (Canada)'),
(21034, 18312, 'no_lang_code', 'name', 'Amphenol (United Kingdom)'),
(21035, 18313, 'en', 'name', 'Inwood Community Services'),
(21036, 18314, 'no_lang_code', 'name', 'ioGenetics (United States)'),
(21037, 18315, 'fr', 'name', 'Institut des Sciences Agronomiques du Burundi'),
(21038, 18316, 'pt', 'name', 'Instituto de Linguística Teórica e Computacional'),
(21039, 18317, 'no_lang_code', 'name', 'Integrated Micro Sensors (United States)'),
(21040, 18318, 'fr', 'name', 'IFAPME'),
(21041, 18319, 'no_lang_code', 'name', 'IHI Corporation (United Kingdom)'),
(21042, 18320, 'no_lang_code', 'name', 'IonEdge Corporation (United States)'),
(21043, 18321, 'en', 'name', 'European Embedded Control Institute'),
(21044, 18321, 'fr', 'name', 'Institut EuropƩen de ContrƓle EmbarquƩ'),
(21045, 18322, 'no_lang_code', 'name', 'Ionic (United States)'),
(21046, 18323, 'no_lang_code', 'name', 'Integrated Sensing Systems (United States)'),
(21047, 18324, 'de', 'name', 'Institut für Angewandte Wirtschaftsforschung'),
(21048, 18324, 'en', 'name', 'Institute for Applied Economic Research'),
(21049, 18325, 'no_lang_code', 'name', 'Ionic Software (Belgium)'),
(21050, 18326, 'no_lang_code', 'name', 'Integrated Systems Incorporation (United States)'),
(21051, 18327, 'no_lang_code', 'name', 'IFU (Germany)'),
(21052, 18328, 'en', 'name', 'IGAD Climate Prediction and Applications Center'),
(21053, 18329, 'en', 'name', 'Iowa Federation of Families for Children''s Mental Health'),
(21054, 18330, 'en', 'name', 'Iowa Department of Education'),
(21055, 18331, 'de', 'name', 'Institut für Europäische Politik'),
(21056, 18331, 'en', 'name', 'Institute for European Politics'),
(21057, 18332, 'no_lang_code', 'name', 'IGE Therapeutics (United States)'),
(21058, 18333, 'no_lang_code', 'name', 'Institut für Gebirgsmechanik (Germany)'),
(21059, 18334, 'no_lang_code', 'name', 'IGEA Clinical Biophysics (Italy)'),
(21060, 18335, 'en', 'name', 'Iowa Wesleyan College'),
(21061, 18336, 'en', 'name', 'Integrity House'),
(21062, 18337, 'no_lang_code', 'name', 'IP Group (United Kingdom)'),
(21063, 18338, 'no_lang_code', 'name', 'IGI Technologies (United States)'),
(21064, 18339, 'no_lang_code', 'name', 'Intel (United Kingdom)'),
(21065, 18340, 'no_lang_code', 'name', 'IGNIS Innovation (Canada)'),
(21066, 18341, 'no_lang_code', 'name', 'Institut für Getreideverarbeitung (Germany)'),
(21067, 18342, 'de', 'name', 'Leipziger Institut für Energie'),
(21068, 18343, 'no_lang_code', 'name', 'Intelen (Cyprus)'),
(21069, 18344, 'no_lang_code', 'name', 'Murata (France)'),
(21070, 18345, 'no_lang_code', 'name', 'Ikona (United States)'),
(21071, 18346, 'no_lang_code', 'name', 'Ipec (United Kingdom)'),
(21072, 18347, 'no_lang_code', 'name', 'Ilika (United Kingdom)'),
(21073, 18348, 'no_lang_code', 'name', 'BP (France)'),
(21074, 18349, 'en', 'name', 'Joint Nature Conservation Committee'),
(21075, 18350, 'no_lang_code', 'name', 'Pillar (Ukraine)'),
(21076, 18351, 'no_lang_code', 'name', 'IPCOS (Belgium)'),
(21077, 18352, 'no_lang_code', 'name', 'Telekom Srbija (Serbia)'),
(21078, 18353, 'no_lang_code', 'name', 'iProov (United Kingdom)'),
(21079, 18354, 'no_lang_code', 'name', 'Intelligentsia Consultants (Luxembourg)'),
(21080, 18355, 'no_lang_code', 'name', 'Qiagen (France)'),
(21081, 18356, 'no_lang_code', 'name', 'Intelligent Mechatronic Systems (United States)'),
(21082, 18357, 'en', 'name', 'Jones County Junior College'),
(21083, 18358, 'no_lang_code', 'name', 'Intellipro Group (United States)'),
(21084, 18359, 'no_lang_code', 'name', 'Intellispeak (United States)'),
(21085, 18360, 'no_lang_code', 'name', 'IntelliView Technologies (Canada)'),
(21086, 18361, 'no_lang_code', 'name', 'Intempora (France)'),
(21087, 18362, 'no_lang_code', 'name', 'Inter-Euro Technology'),
(21088, 18363, 'de', 'name', 'IUF - Leibniz-Institut für umweltmedizinische Forschung'),
(21089, 18363, 'en', 'name', 'Leibniz Institute of Environmental Medicine'),
(21090, 18364, 'no_lang_code', 'name', 'Jowat (Germany)'),
(21091, 18365, 'no_lang_code', 'name', 'Institut IGH (Croatia)'),
(21092, 18366, 'no_lang_code', 'name', 'JPT Peptide Technologies (Germany)'),
(21093, 18367, 'no_lang_code', 'name', 'JRI Orthopaedics (United Kingdom)'),
(21094, 18368, 'no_lang_code', 'name', 'Jürging (Germany)'),
(21095, 18369, 'no_lang_code', 'name', 'Juice Technology (United Kingdom)'),
(21096, 18370, 'no_lang_code', 'name', 'iQur (United Kingdom)'),
(21097, 18371, 'no_lang_code', 'name', 'Jule (United States)'),
(21098, 18372, 'en', 'name', 'IRC International Water and Sanitation Centre'),
(21099, 18373, 'no_lang_code', 'name', 'Interactive Flow Studies (United States)'),
(21100, 18374, 'no_lang_code', 'name', 'Learning Express Toys (United States)'),
(21101, 18375, 'no_lang_code', 'name', 'Learning Multi Systems (United States)'),
(21102, 18376, 'no_lang_code', 'name', 'interactive instruments (Germany)'),
(21103, 18377, 'en', 'name', 'JustCommunity'),
(21104, 18378, 'en', 'name', 'Justice & Public Safety Cabinet'),
(21105, 18379, 'en', 'name', 'Justice Resource Institute'),
(21106, 18380, 'no_lang_code', 'name', 'Irecoop Emilia-Romagna (Italy)'),
(21107, 18381, 'no_lang_code', 'name', 'Leuco Ledermann (Germany)'),
(21108, 18382, 'no_lang_code', 'name', 'Iren Acqua Gas (Italy)'),
(21109, 18383, 'no_lang_code', 'name', 'JXT Applications (United States)'),
(21110, 18384, 'no_lang_code', 'name', 'Intercytex (United Kingdom)'),
(21111, 18385, 'en', 'name', 'Leeds City Council'),
(21112, 18386, 'no_lang_code', 'name', 'Leeoat (United States)'),
(21113, 18387, 'no_lang_code', 'name', 'K&S Projektmanagement (Germany)'),
(21114, 18388, 'no_lang_code', 'name', 'IRGO Consulting (Slovenia)'),
(21115, 18388, 'sl', 'name', 'InŔtitut za rudarstvo, geotehnologijo in okolje'),
(21116, 18389, 'en', 'name', 'Iris House'),
(21117, 18390, 'en', 'name', 'Legacy Community Health Services'),
(21118, 18391, 'no_lang_code', 'name', 'Interface Biologics (Canada)'),
(21119, 18392, 'no_lang_code', 'name', 'Interface Europe (Belgium)'),
(21120, 18393, 'it', 'name', 'Legambiente'),
(21121, 18394, 'no_lang_code', 'name', 'Legendary Games (United Kingdom)'),
(21122, 18395, 'no_lang_code', 'name', 'Kaleido Technology (Denmark)'),
(21123, 18396, 'no_lang_code', 'name', 'Iris (Italy)'),
(21124, 18397, 'no_lang_code', 'name', 'KALGEn Consultants (United States)'),
(21125, 18398, 'no_lang_code', 'name', 'Iris Vernici (Italy)'),
(21126, 18399, 'no_lang_code', 'name', 'Stratasys (United States)'),
(21127, 18400, 'en', 'name', 'Irish Congress of Trade Unions'),
(21128, 18401, 'no_lang_code', 'name', 'Interfusion Services (Cyprus)'),
(21129, 18402, 'no_lang_code', 'name', 'Irish Hydrodata (Ireland)'),
(21130, 18403, 'no_lang_code', 'name', 'Kampakas (Greece)'),
(21131, 18404, 'en', 'name', 'Leibniz Institute for Agricultural Engineering and Bioeconomy'),
(21132, 18404, 'de', 'name', 'Leibniz-Institut für Agrartechnik und Bioökonomie'),
(21133, 18405, 'en', 'name', 'Kanlo Consultants'),
(21134, 18406, 'en', 'name', 'International Association of Environmental Mutagenesis and Genomics Societies'),
(21135, 18407, 'fi', 'name', 'Arkistolaitos'),
(21136, 18407, 'en', 'name', 'National Archives Service'),
(21137, 18408, 'no_lang_code', 'name', 'Starlab (United States)'),
(21138, 18409, 'no_lang_code', 'name', 'IMS Maxims (Ireland)'),
(21139, 18410, 'en', 'name', 'Kansas City CARE Clinic'),
(21140, 18411, 'en', 'name', 'Kansas Department for Aging and Disability Services'),
(21141, 18412, 'en', 'name', 'Kansas State Department of Education'),
(21142, 18413, 'no_lang_code', 'name', 'Inter Science Research Associates (United States)'),
(21143, 18414, 'no_lang_code', 'name', 'Kanthal (Sweden)'),
(21144, 18415, 'en', 'name', 'International Atomic Energy Agency'),
(21145, 18416, 'no_lang_code', 'name', 'Lemvig VarmevƦrk (Denmark)'),
(21146, 18417, 'en', 'name', 'P.L. Kapitza Institute for Physical Problems'),
(21147, 18417, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физических проблем имени П. Š›. ŠšŠ°ŠæŠøŃ†Ń‹ Š ŠŠ'),
(21148, 18418, 'no_lang_code', 'name', 'International Automotive Desig (United Kingdom)'),
(21149, 18419, 'no_lang_code', 'name', 'Ironbound Films (United States)'),
(21150, 18420, 'no_lang_code', 'name', 'International Biomedical (United States)'),
(21151, 18421, 'no_lang_code', 'name', 'Lenntech (Netherlands)'),
(21152, 18422, 'no_lang_code', 'name', 'Kapsch (Austria)'),
(21153, 18423, 'no_lang_code', 'name', 'Lenz Instruments (Spain)'),
(21154, 18424, 'en', 'name', 'International Brotherhood of Teamsters'),
(21155, 18425, 'en', 'name', 'International center for Advancement of Research Technology and Innovation'),
(21156, 18426, 'no_lang_code', 'name', 'Karmic (Switzerland)'),
(21157, 18427, 'en', 'name', 'International Centre for Black Sea Studies'),
(21158, 18428, 'en', 'name', 'International Center for Minority Studies and Intercultural Relations'),
(21159, 18429, 'no_lang_code', 'name', 'Leonardo Film (Germany)'),
(21160, 18430, 'no_lang_code', 'name', 'Katchem (Czechia)'),
(21161, 18431, 'no_lang_code', 'name', 'Leotech Rapid Prototyping und Werkzeugbau (Germany)'),
(21162, 18432, 'no_lang_code', 'name', 'KCET'),
(21163, 18433, 'en', 'name', 'Centre of Theoretical and Applied Ecology'),
(21164, 18433, 'it', 'name', 'Centro di Ecologia Teorica ed Applicata'),
(21165, 18434, 'no_lang_code', 'name', 'Irvine Sensors (United States)'),
(21166, 18435, 'en', 'name', 'Irvine Unified School District'),
(21167, 18436, 'no_lang_code', 'name', 'Morris Leslie Group (United Kingdom)'),
(21168, 18437, 'fr', 'name', 'Espace pour la vie'),
(21169, 18437, 'en', 'name', 'Space for Life'),
(21170, 18438, 'no_lang_code', 'name', 'Lesprojekt (Czechia)'),
(21171, 18439, 'no_lang_code', 'name', 'Lesswire (Germany)'),
(21172, 18440, 'en', 'name', 'Lethbridge College'),
(21173, 18441, 'en', 'name', 'IS practice'),
(21174, 18442, 'en', 'name', 'International Commission for the Protection of the Danube River'),
(21175, 18442, 'de', 'name', 'Internationale Kommission zum Schutz der Donau'),
(21176, 18443, 'no_lang_code', 'name', 'KE-Works (Netherlands)'),
(21177, 18444, 'en', 'name', 'International Commission on Radiological Protection'),
(21178, 18445, 'no_lang_code', 'name', 'Level 7 Systems (United Kingdom)'),
(21179, 18446, 'en', 'name', 'International Dark Sky Association'),
(21180, 18447, 'no_lang_code', 'name', 'Keep Solutions (Portugal)'),
(21181, 18448, 'no_lang_code', 'name', 'Levitronix (United States)'),
(21182, 18449, 'en', 'name', 'International Ecological Engineering Society'),
(21183, 18450, 'en', 'name', 'Institute of Atmospheric Sciences and Climate'),
(21184, 18450, 'it', 'name', 'Istituto di Scienze dell''Atmosfera e del Clima'),
(21185, 18451, 'en', 'name', 'International Fishmeal and Oil Manufacturers Association'),
(21186, 18452, 'en', 'name', 'ISC Intelligence in Science'),
(21187, 18453, 'no_lang_code', 'name', 'IDS Scheer (Czechia)'),
(21188, 18454, 'no_lang_code', 'name', 'Kelliher & Associates (United States)'),
(21189, 18455, 'no_lang_code', 'name', 'PoƧo Bravo Marbles (Portugal)'),
(21190, 18456, 'en', 'name', 'Mars Hill University'),
(21191, 18457, 'en', 'name', 'Natrona County School District'),
(21192, 18458, 'no_lang_code', 'name', 'MARS Laser (Germany)'),
(21193, 18459, 'no_lang_code', 'name', 'LexRite (United States)'),
(21194, 18460, 'no_lang_code', 'name', 'Marshalls (United Kingdom)'),
(21195, 18461, 'no_lang_code', 'name', 'Bühler (Germany)'),
(21196, 18462, 'no_lang_code', 'name', 'Marsilio Editori (Italy)'),
(21197, 18463, 'no_lang_code', 'name', 'Airwave Solutions (United Kingdom)'),
(21198, 18464, 'no_lang_code', 'name', 'Integrated Systems Development (Greece)'),
(21199, 18465, 'no_lang_code', 'name', 'Martech International (Belgium)'),
(21200, 18466, 'no_lang_code', 'name', 'Martechnic (Germany)'),
(21201, 18467, 'no_lang_code', 'name', 'Paccar (United Kingdom)'),
(21202, 18468, 'no_lang_code', 'name', 'Kelvin Nanotechnology (United Kingdom)'),
(21203, 18469, 'no_lang_code', 'name', 'Mouchel (United Kingdom)'),
(21204, 18470, 'no_lang_code', 'name', 'SGH Martineau (United Kingdom)'),
(21205, 18471, 'no_lang_code', 'name', 'Lhoist (United Kingdom)'),
(21206, 18472, 'en', 'name', 'IEEE Information Theory Society'),
(21207, 18473, 'no_lang_code', 'name', 'Metabolomx (United States)'),
(21208, 18474, 'en', 'name', 'Marygrove College'),
(21209, 18475, 'en', 'name', 'Marylhurst University'),
(21210, 18476, 'no_lang_code', 'name', 'Kenaf Eco Fibers Italia (Italy)'),
(21211, 18477, 'en', 'name', 'Maryland Public Television'),
(21212, 18478, 'no_lang_code', 'name', 'Industrielle Steuerungstechnik (Germany)'),
(21213, 18479, 'no_lang_code', 'name', 'Libertine FPE (United Kingdom)'),
(21214, 18480, 'no_lang_code', 'name', 'Iron Pump (Denmark)'),
(21215, 18481, 'no_lang_code', 'name', 'Librt (Netherlands)'),
(21216, 18482, 'no_lang_code', 'name', 'Masmec (Italy)'),
(21217, 18483, 'en', 'name', 'Masonry Society'),
(21218, 18484, 'no_lang_code', 'name', 'Mass Spec Analytical (United Kingdom)'),
(21219, 18485, 'no_lang_code', 'name', 'Kennametal (United Kingdom)'),
(21220, 18486, 'en', 'name', 'Massachusetts Department of Elementary and Secondary Education'),
(21221, 18487, 'no_lang_code', 'name', 'Innovative Solution In Space (Netherlands)'),
(21222, 18488, 'en', 'name', 'Massachusetts Department of Higher Education'),
(21223, 18489, 'en', 'name', 'Licking County Alcoholism Prevention Program'),
(21224, 18490, 'lt', 'name', 'Lietuvos dailės muziejus'),
(21225, 18490, 'en', 'name', 'Lithuanian Art Museum'),
(21226, 18491, 'lt', 'name', 'Lietuvos Mokslininkų Sąjungos'),
(21227, 18491, 'en', 'name', 'Lithuanian Scientific Society'),
(21228, 18492, 'fr', 'name', 'AcadƩmie de marine du massachusetts'),
(21229, 18492, 'en', 'name', 'Massachusetts Maritime Academy'),
(21230, 18493, 'no_lang_code', 'name', 'Kentech Instruments (United Kingdom)'),
(21231, 18494, 'en', 'name', 'Life Lab'),
(21232, 18495, 'no_lang_code', 'name', 'Life Length (Spain)'),
(21233, 18496, 'en', 'name', 'Islenet'),
(21234, 18497, 'en', 'name', 'Life Science Association of Manitoba'),
(21235, 18498, 'no_lang_code', 'name', 'Life Systems (United States)'),
(21236, 18499, 'no_lang_code', 'name', 'Innovative Technologies Center (Greece)'),
(21237, 18499, 'el', 'name', 'ĪšĪ­Ī½Ļ„ĻĪæ ĪŗĪ±Ī¹Ī½ĪæĻ„ĻŒĪ¼Ļ‰Ī½ Ļ„ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĻŽĪ½'),
(21238, 18500, 'en', 'name', 'Massachusetts General Court'),
(21239, 18501, 'no_lang_code', 'name', 'Icelandic New Energy (Iceland)'),
(21240, 18502, 'en', 'name', 'Kentucky Department of Education'),
(21241, 18503, 'en', 'name', 'Iceland GeoSurvey'),
(21242, 18503, 'is', 'name', 'ƍslenskar orkurannsóknir'),
(21243, 18504, 'no_lang_code', 'name', 'Kepar Electronica (Spain)'),
(21244, 18505, 'no_lang_code', 'name', 'Kepstrum (Canada)'),
(21245, 18506, 'no_lang_code', 'name', 'LifeGlimmer (Germany)'),
(21246, 18507, 'no_lang_code', 'name', 'Agrii (United Kingdom)'),
(21247, 18508, 'no_lang_code', 'name', 'Keraben Grupo (Spain)'),
(21248, 18509, 'no_lang_code', 'name', 'Keracol (United Kingdom)'),
(21249, 18510, 'no_lang_code', 'name', 'KeraMed (United States)'),
(21250, 18511, 'no_lang_code', 'name', 'Munich Re (United States)'),
(21251, 18512, 'it', 'name', 'Istituto Sperimentale Modelli E Strutture'),
(21252, 18513, 'no_lang_code', 'name', 'Keronite (United Kingdom)'),
(21253, 18514, 'no_lang_code', 'name', 'LifeSensors (United States)'),
(21254, 18515, 'en', 'name', 'Keuka College'),
(21255, 18516, 'no_lang_code', 'name', 'Mars (United Kingdom)'),
(21256, 18517, 'nl', 'name', 'Nederland Voedsel- en Waren Autoriteit'),
(21257, 18517, 'en', 'name', 'Netherlands Food and Consumer Product Safety Authority'),
(21258, 18518, 'no_lang_code', 'name', 'LifeTec Group (Netherlands)'),
(21259, 18519, 'en', 'name', 'Keweenaw Bay Ojibwa Community College'),
(21260, 18520, 'no_lang_code', 'name', 'Ortec (France)'),
(21261, 18521, 'no_lang_code', 'name', 'Materia (United States)'),
(21262, 18522, 'no_lang_code', 'name', 'Isofoton (Spain)'),
(21263, 18523, 'no_lang_code', 'name', 'III-N Technology (United States)'),
(21264, 18524, 'no_lang_code', 'name', 'Light Prescriptions Innovators (Spain)'),
(21265, 18525, 'no_lang_code', 'name', 'McGraw-Hill Education (United States)'),
(21266, 18526, 'no_lang_code', 'name', 'LightForm (United States)'),
(21267, 18527, 'no_lang_code', 'name', 'Key Industrial Software Systems (United Kingdom)'),
(21268, 18528, 'no_lang_code', 'name', 'LightMachinery (Canada)'),
(21269, 18529, 'en', 'name', 'Keys for Networking'),
(21270, 18530, 'no_lang_code', 'name', 'Lightpoint Medical (United Kingdom)'),
(21271, 18531, 'no_lang_code', 'name', 'Materials Innovation Technologies (United States)'),
(21272, 18532, 'no_lang_code', 'name', 'Materials Science International Services (Germany)'),
(21273, 18533, 'no_lang_code', 'name', 'Isovolta (Austria)'),
(21274, 18534, 'no_lang_code', 'name', 'Materials Solutions (United Kingdom)'),
(21275, 18535, 'no_lang_code', 'name', 'Limbs Alive (United Kingdom)'),
(21276, 18536, 'no_lang_code', 'name', 'Limetec (United Kingdom)'),
(21277, 18537, 'ga', 'name', 'Comhairle Contae Luimnigh'),
(21278, 18537, 'en', 'name', 'Limerick County Council'),
(21279, 18538, 'no_lang_code', 'name', 'Kinedyne (United States)'),
(21280, 18539, 'no_lang_code', 'name', 'Ion Linac Systems (United States)'),
(21281, 18540, 'no_lang_code', 'name', 'Linagora (France)'),
(21282, 18541, 'en', 'name', 'Lincoln Park Zoo'),
(21283, 18542, 'no_lang_code', 'name', 'Maire Tecnimont (Italy)'),
(21284, 18543, 'no_lang_code', 'name', 'Kirkstall (United Kingdom)'),
(21285, 18544, 'en', 'name', 'Kista Photonics Research Center'),
(21286, 18545, 'en', 'name', 'Lindamood-Bell'),
(21287, 18546, 'no_lang_code', 'name', 'Kistler (Switzerland)'),
(21288, 18547, 'no_lang_code', 'name', 'Mosaix Software (United States)'),
(21289, 18548, 'no_lang_code', 'name', 'Kite Innovation (United Kingdom)'),
(21290, 18549, 'no_lang_code', 'name', 'Linguamatics (United Kingdom)'),
(21291, 18550, 'no_lang_code', 'name', 'Matrasur Composites (France)'),
(21292, 18551, 'pt', 'name', 'IrRADIARE'),
(21293, 18552, 'no_lang_code', 'name', 'KloƩ (France)'),
(21294, 18553, 'no_lang_code', 'name', 'Link2Energy (United Kingdom)'),
(21295, 18554, 'no_lang_code', 'name', 'Matres (Italy)'),
(21296, 18555, 'en', 'name', 'Vibrant Emotional Health'),
(21297, 18556, 'no_lang_code', 'name', 'Linkra (Italy)'),
(21298, 18557, 'no_lang_code', 'name', 'Omnicom Group (United States)'),
(21299, 18558, 'en', 'name', 'Links Incorporated'),
(21300, 18559, 'no_lang_code', 'name', 'Kleinewefers Kunststoffanlagen (Germany)'),
(21301, 18560, 'no_lang_code', 'name', 'Metallurgische Verfahrenstechnik (Germany)'),
(21302, 18561, 'en', 'name', 'Massachusetts Technology Collaborative'),
(21303, 18562, 'no_lang_code', 'name', 'Knauf (Germany)'),
(21304, 18563, 'no_lang_code', 'name', 'Knorr-Bremse (Germany)'),
(21305, 18564, 'en', 'name', 'European Learning Industry Group'),
(21306, 18565, 'no_lang_code', 'name', 'KiNNO'),
(21307, 18566, 'en', 'name', 'Knowledge Innovation Market'),
(21308, 18567, 'no_lang_code', 'name', 'Knowledge Integration (United Kingdom)'),
(21309, 18568, 'no_lang_code', 'name', 'Knowledge Now (United Kingdom)'),
(21310, 18569, 'en', 'name', 'Education Scotland'),
(21311, 18569, 'gd', 'name', 'Foghlam Alba'),
(21312, 18570, 'it', 'name', 'Centre International de Hautes Etudes Agronomiques MƩditerranƩennes'),
(21313, 18570, 'en', 'name', 'International Centre for Advanced Mediterranean Agronomic Studies'),
(21314, 18571, 'no_lang_code', 'name', 'Knudsen Plast (Denmark)'),
(21315, 18572, 'it', 'name', 'Istituto Centrale per la Ricerca Scientifica e Tecnologica Applicata al Mare'),
(21316, 18573, 'no_lang_code', 'name', 'KOAC'),
(21317, 18574, 'no_lang_code', 'name', 'Koba Institute'),
(21318, 18575, 'no_lang_code', 'name', 'ConMed (Finland)'),
(21319, 18576, 'no_lang_code', 'name', 'Kombiverkehr (Germany)'),
(21320, 18577, 'no_lang_code', 'name', 'Kommunedata (Denmark)'),
(21321, 18578, 'no', 'name', 'Kommunenes Sentralforbund'),
(21322, 18578, 'en', 'name', 'Norwegian Association of Local and Regional Authorities'),
(21323, 18579, 'no_lang_code', 'name', 'Kompania Węglowa (Poland)'),
(21324, 18580, 'en', 'name', 'Berlin Centre of Competence for Water'),
(21325, 18580, 'de', 'name', 'Kompetenzzentrum Wasser Berlin'),
(21326, 18581, 'no_lang_code', 'name', 'Maus (Germany)'),
(21327, 18582, 'no_lang_code', 'name', 'KITH (Norway)'),
(21328, 18582, 'en', 'name', 'Norwegian Centre for Informatics in Health and Social Care'),
(21329, 18583, 'no_lang_code', 'name', 'Max Fordham (United Kingdom)'),
(21330, 18584, 'no_lang_code', 'name', 'ImaSight (Canada)'),
(21331, 18585, 'no_lang_code', 'name', 'LiqTech (Denmark)'),
(21332, 18586, 'it', 'name', 'Istituto di Ricerche Economiche e Sociali'),
(21333, 18587, 'no_lang_code', 'name', 'Kongsberg Gruppen (Norway)'),
(21334, 18588, 'en', 'name', 'Max Planck Institute for Solar System Research'),
(21335, 18588, 'de', 'name', 'Max-Planck-Institut für Sonnensystemforschung'),
(21336, 18589, 'nl', 'name', 'Koninklijke BAM Groep'),
(21337, 18589, 'no_lang_code', 'name', 'Royal BAM Group (Netherlands)'),
(21338, 18590, 'no_lang_code', 'name', 'De Agostini (Italy)'),
(21339, 18591, 'no_lang_code', 'name', 'MaxCyte (United States)'),
(21340, 18592, 'en', 'name', 'Liverpool City Council'),
(21341, 18593, 'it', 'name', 'Istituto Italiano della Saldatura'),
(21342, 18593, 'en', 'name', 'Italian Institute of Welding'),
(21343, 18594, 'en', 'name', 'SkyTeam'),
(21344, 18595, 'no_lang_code', 'name', 'LiveU (Israel)'),
(21345, 18596, 'no_lang_code', 'name', 'Living Systems (United States)'),
(21346, 18597, 'no_lang_code', 'name', 'Interaction Design (United Kingdom)'),
(21347, 18598, 'no_lang_code', 'name', 'Livos (Germany)'),
(21348, 18599, 'no_lang_code', 'name', 'Sphinx (Netherlands)'),
(21349, 18600, 'no_lang_code', 'name', 'LKSoftWare (Germany)'),
(21350, 18601, 'no_lang_code', 'name', 'LLA Instruments (Germany)'),
(21351, 18602, 'no_lang_code', 'name', 'Konrad Fischer (Austria)'),
(21352, 18603, 'no_lang_code', 'name', 'Lloyds Banking Group (United Kingdom)'),
(21353, 18604, 'it', 'name', 'Agenzia per la Promozione All''estero e l''Internazionalizzazione Delle Imprese Italiane'),
(21354, 18604, 'en', 'name', 'Italian Trade Promotion Agency'),
(21355, 18605, 'no_lang_code', 'name', 'Charter Kontron (United Kingdom)'),
(21356, 18606, 'de', 'name', 'Kooperationsstelle Hamburg'),
(21357, 18607, 'fr', 'name', 'Institut pour les Ʃtudes de politique internationale'),
(21358, 18607, 'en', 'name', 'Institute for International Political Studies'),
(21359, 18608, 'en', 'name', 'Environmental and Ethical Certification Institute'),
(21360, 18608, 'it', 'name', 'Istituto per la Certificazione Etica ed Ambientale'),
(21361, 18609, 'no_lang_code', 'name', 'Kopitarna Sevnica (Slovenia)'),
(21362, 18610, 'no_lang_code', 'name', 'Lockheed Martin (United Kingdom)'),
(21363, 18611, 'no_lang_code', 'name', 'Kopoos Consulting (France)'),
(21364, 18612, 'no_lang_code', 'name', 'Koppert (Netherlands)'),
(21365, 18613, 'no_lang_code', 'name', 'Maxtech (Canada)'),
(21366, 18614, 'en', 'name', 'Korea Institute for Advancement of Technology'),
(21367, 18615, 'no_lang_code', 'name', 'Korona (Slovenia)'),
(21368, 18616, 'no_lang_code', 'name', 'Loake Shoemakers (United Kingdom)'),
(21369, 18617, 'no_lang_code', 'name', 'Maxwell Technologies (Switzerland)'),
(21370, 18618, 'en', 'name', 'Danish Geodata Agency'),
(21371, 18619, 'en', 'name', 'Kozloduy Nuclear Power Plant'),
(21372, 18620, 'no_lang_code', 'name', 'KPMG (United Kingdom)'),
(21373, 18621, 'no_lang_code', 'name', 'Maxygen (United States)'),
(21374, 18622, 'no_lang_code', 'name', 'IS Instruments (United Kingdom)'),
(21375, 18623, 'no_lang_code', 'name', 'Mayer Brown (United Kingdom)'),
(21376, 18624, 'no_lang_code', 'name', 'KPMG (United States)'),
(21377, 18625, 'en', 'name', 'Mazzoni Center'),
(21378, 18626, 'no_lang_code', 'name', 'Henkel (Ireland)'),
(21379, 18627, 'no_lang_code', 'name', 'Locus Systems (United States)'),
(21380, 18628, 'no_lang_code', 'name', 'Kraken Sonar (Canada)'),
(21381, 18629, 'no_lang_code', 'name', 'MBC Research (United States)'),
(21382, 18630, 'no_lang_code', 'name', 'LogControl (Germany)'),
(21383, 18631, 'no_lang_code', 'name', 'MBDA (United Kingdom)'),
(21384, 18632, 'no_lang_code', 'name', 'McBride and Associates (United States)'),
(21385, 18633, 'en', 'name', 'Massachusetts Department of Mental Health'),
(21386, 18634, 'en', 'name', 'Creative Educational Centre'),
(21387, 18634, 'sr', 'name', 'Kreativno Edukativni Centar'),
(21388, 18635, 'no_lang_code', 'name', 'Krones (Germany)'),
(21389, 18636, 'no_lang_code', 'name', 'Logisticon (Netherlands)'),
(21390, 18637, 'no_lang_code', 'name', 'KSB (Germany)'),
(21391, 18638, 'en', 'name', 'Leuven Security Excellence Consortium'),
(21392, 18639, 'no_lang_code', 'name', 'KSE (United States)'),
(21393, 18640, 'no_lang_code', 'name', 'McBurney (United Kingdom)'),
(21394, 18641, 'no_lang_code', 'name', 'McCann Associates (United States)'),
(21395, 18642, 'no_lang_code', 'name', 'Logit Systems (Belgium)'),
(21396, 18643, 'no_lang_code', 'name', 'IT+Robotics (Italy)'),
(21397, 18644, 'no_lang_code', 'name', 'Mahlo (Germany)'),
(21398, 18645, 'en', 'name', 'International Transports & Cargo Agency'),
(21399, 18646, 'no_lang_code', 'name', 'Lohmann Tierzucht (Germany)'),
(21400, 18647, 'no_lang_code', 'name', 'McMillan and Moss Research'),
(21401, 18648, 'no_lang_code', 'name', 'LogĆ­stica y Acondicionamientos Industriales (Spain)'),
(21402, 18649, 'no_lang_code', 'name', 'Eli Lilly (Germany)'),
(21403, 18650, 'no_lang_code', 'name', 'Innovative Sensor Technology (Switzerland)'),
(21404, 18651, 'no_lang_code', 'name', 'Kubota Research Associates (United States)'),
(21405, 18652, 'no_lang_code', 'name', 'Smartrac (Germany)'),
(21406, 18653, 'en', 'name', 'London Borough of Islington'),
(21407, 18654, 'en', 'name', 'London Borough of Tower Hamlets'),
(21408, 18655, 'no_lang_code', 'name', 'Itasca Consultants (Germany)'),
(21409, 18656, 'en', 'name', 'London Regional Children''s Museum'),
(21410, 18657, 'no_lang_code', 'name', 'Itasca Consultants (France)'),
(21411, 18658, 'en', 'name', 'London TravelWatch'),
(21412, 18659, 'en', 'name', 'Itawamba Community College'),
(21413, 18660, 'en', 'name', 'Austrian Road Safety Board');
INSERT INTO `ror_settings` VALUES
(21414, 18660, 'de', 'name', 'Kuratorium fuer Verkehrssicherheit'),
(21415, 18661, 'no_lang_code', 'name', 'Lonix (Finland)'),
(21416, 18662, 'no_lang_code', 'name', 'Looking Glass Analytics (United States)'),
(21417, 18663, 'no_lang_code', 'name', 'Limaging (United States)'),
(21418, 18664, 'en', 'name', 'Lord Fairfax Community College'),
(21419, 18665, 'no_lang_code', 'name', '5N Plus (United Kingdom)'),
(21420, 18666, 'en', 'name', 'Los Alamos Public Schools'),
(21421, 18667, 'en', 'name', 'Los Angeles County Department of Mental Health'),
(21422, 18668, 'en', 'name', 'Los Angeles Southwest College'),
(21423, 18669, 'no_lang_code', 'name', 'McPhy Energy (France)'),
(21424, 18670, 'no_lang_code', 'name', 'Aker (United Kingdom)'),
(21425, 18671, 'no_lang_code', 'name', 'Itelsa (Spain)'),
(21426, 18672, 'no_lang_code', 'name', 'ITEMS International'),
(21427, 18673, 'no_lang_code', 'name', 'Mannesmann Demag (Germany)'),
(21428, 18674, 'no_lang_code', 'name', 'Kompetente Werthaltige Ingenieurleistung (Austria)'),
(21429, 18675, 'no_lang_code', 'name', 'Lufthansa Technical Training (Germany)'),
(21430, 18676, 'en', 'name', 'Maryland Coalition of Families'),
(21431, 18677, 'no_lang_code', 'name', 'Trapeze (United Kingdom)'),
(21432, 18678, 'no_lang_code', 'name', 'KWJ Engineering (United States)'),
(21433, 18679, 'no_lang_code', 'name', 'Kyos (Switzerland)'),
(21434, 18680, 'no_lang_code', 'name', 'ITLink'),
(21435, 18681, 'no_lang_code', 'name', 'MƩcanique et Engrenage Moderne (France)'),
(21436, 18682, 'no_lang_code', 'name', 'Mecanizados Escribano'),
(21437, 18683, 'no_lang_code', 'name', 'Meccanica Nova (Italy)'),
(21438, 18684, 'no_lang_code', 'name', 'Quantum Design (Germany)'),
(21439, 18685, 'en', 'name', 'Police Scotland'),
(21440, 18686, 'no_lang_code', 'name', 'ITRB (Cyprus)'),
(21441, 18687, 'no_lang_code', 'name', 'Ericsson (Ireland)'),
(21442, 18688, 'en', 'name', 'International Tin Research Institute'),
(21443, 18689, 'no_lang_code', 'name', 'Mechatronic Systemtechnik (Austria)'),
(21444, 18690, 'no_lang_code', 'name', 'Mecos Traxler (Switzerland)'),
(21445, 18691, 'fr', 'name', 'CRƉ de MontrĆ©al'),
(21446, 18692, 'no_lang_code', 'name', 'Itrust Consulting'),
(21447, 18693, 'en', 'name', 'Lottolab Studio'),
(21448, 18694, 'it', 'name', 'Lega Italiana Protezione Uccelli'),
(21449, 18695, 'fr', 'name', 'La Maison LƩon-Provancher'),
(21450, 18696, 'no_lang_code', 'name', 'Loufakis (Greece)'),
(21451, 18696, 'el', 'name', 'Ī›ĪŸĪ„Ī¦Ī‘ĪšĪ—Ī£ Ī§Ī—ĪœĪ™ĪšĪ‘'),
(21452, 18697, 'en', 'name', 'Santa Fe Public Schools'),
(21453, 18698, 'en', 'name', 'Louisburg College'),
(21454, 18699, 'no_lang_code', 'name', 'Medennium (United States)'),
(21455, 18700, 'en', 'name', 'La Palma Research Centre for Future Studies'),
(21456, 18701, 'no_lang_code', 'name', 'Medes (France)'),
(21457, 18702, 'no_lang_code', 'name', 'Mediamobile (Finland)'),
(21458, 18703, 'no_lang_code', 'name', 'Median SCP (Spain)'),
(21459, 18704, 'no_lang_code', 'name', 'Lablogic Systems (United Kingdom)'),
(21460, 18705, 'en', 'name', 'Louisiana Federation of Families for Children''s Mental Health'),
(21461, 18706, 'it', 'name', 'ASL Roma'),
(21462, 18707, 'en', 'name', 'Louisiana Department of Education'),
(21463, 18708, 'de', 'name', 'Intelligent Transport Systems Niedersachsen'),
(21464, 18709, 'no_lang_code', 'name', 'Imagina (Spain)'),
(21465, 18710, 'en', 'name', 'Louth County Council'),
(21466, 18711, 'fr', 'name', 'Laboratoire de Recherche des Monuments Historiques'),
(21467, 18712, 'no_lang_code', 'name', 'Lowri Beck (United Kingdom)'),
(21468, 18713, 'no_lang_code', 'name', 'LS Plant Breeding (United Kingdom)'),
(21469, 18714, 'no_lang_code', 'name', 'LSVT Global (United States)'),
(21470, 18715, 'no_lang_code', 'name', 'Medica (Italy)'),
(21471, 18716, 'en', 'name', 'Lubbock Christian University'),
(21472, 18717, 'no_lang_code', 'name', 'Lucchini (Italy)'),
(21473, 18718, 'no_lang_code', 'name', 'IVU Traffic Technologies (Germany)'),
(21474, 18719, 'no_lang_code', 'name', 'Luceome Biotechnologies (United States)'),
(21475, 18720, 'no_lang_code', 'name', 'IVV Automação (Portugal)'),
(21476, 18721, 'no_lang_code', 'name', 'Lucid Technologies (United States)'),
(21477, 18722, 'no_lang_code', 'name', 'IX-Factory (Germany)'),
(21478, 18723, 'no_lang_code', 'name', 'Caliber Imaging and Diagnostics (United States)'),
(21479, 18724, 'no_lang_code', 'name', 'Lucite International (United Kingdom)'),
(21480, 18725, 'no_lang_code', 'name', 'Ludger (United Kingdom)'),
(21481, 18726, 'no_lang_code', 'name', 'iXpressGenes (United States)'),
(21482, 18727, 'en', 'name', 'Medical Data Exchange'),
(21483, 18728, 'fr', 'name', 'General Society of Surveillance'),
(21484, 18728, 'no_lang_code', 'name', 'SGS (France)'),
(21485, 18729, 'no_lang_code', 'name', 'Luminomics (United States)'),
(21486, 18730, 'no_lang_code', 'name', 'Lumiphore (United States)'),
(21487, 18731, 'no_lang_code', 'name', 'Medical Engineering Innovations (United States)'),
(21488, 18732, 'no_lang_code', 'name', 'Mediri (Germany)'),
(21489, 18733, 'en', 'name', 'Lunaria Association'),
(21490, 18734, 'no_lang_code', 'name', 'Medical Indicators (United States)'),
(21491, 18735, 'en', 'name', 'Medical Institute for Sexual Health'),
(21492, 18736, 'de', 'name', 'Institut für ZukunftsEnergie- und Stoffstromsysteme'),
(21493, 18737, 'en', 'name', 'Lurleen B Wallace Community College'),
(21494, 18738, 'no_lang_code', 'name', 'Iznab (Poland)'),
(21495, 18739, 'pt', 'name', 'Lusa AgĆŖncia de NotĆ­cias de Portugal'),
(21496, 18740, 'en', 'name', 'J.F. Drake State Community and Technical College'),
(21497, 18741, 'no_lang_code', 'name', 'Lusotufo (Portugal)'),
(21498, 18742, 'en', 'name', 'International Virtual Laboratory for Enterprise Interoperability'),
(21499, 18743, 'no_lang_code', 'name', 'LUX Assure (United Kingdom)'),
(21500, 18744, 'no_lang_code', 'name', 'Luxcontrol (Luxembourg)'),
(21501, 18745, 'no_lang_code', 'name', 'JR Technology (United Kingdom)'),
(21502, 18746, 'en', 'name', 'Reynolds Community College'),
(21503, 18747, 'no_lang_code', 'name', 'Jablite (United Kingdom)'),
(21504, 18748, 'no_lang_code', 'name', 'Mectron (Italy)'),
(21505, 18749, 'no_lang_code', 'name', 'LVD (Belgium)'),
(21506, 18750, 'no_lang_code', 'name', 'Jacobson Holman (United States)'),
(21507, 18751, 'no_lang_code', 'name', 'Laitek (United States)'),
(21508, 18752, 'no_lang_code', 'name', 'Lybradyn (United States)'),
(21509, 18753, 'no_lang_code', 'name', 'AXYS Technologies (Canada)'),
(21510, 18754, 'no_lang_code', 'name', 'Lymba (United States)'),
(21511, 18755, 'no_lang_code', 'name', 'Lyncean Technologies (United States)'),
(21512, 18756, 'no_lang_code', 'name', 'LyngsĆø Marine (Denmark)'),
(21513, 18757, 'no_lang_code', 'name', 'Lynkeus (Italy)'),
(21514, 18758, 'no_lang_code', 'name', 'Lynx (Italy)'),
(21515, 18759, 'no_lang_code', 'name', 'JÔfi-Autókut (Hungary)'),
(21516, 18760, 'no_lang_code', 'name', 'Medicon (United States)'),
(21517, 18761, 'en', 'name', 'Rhodes State College'),
(21518, 18762, 'no_lang_code', 'name', 'James Agee Film Project'),
(21519, 18763, 'en', 'name', 'Lac du Flambeau Band of Lake Superior Chippewa Indians'),
(21520, 18764, 'no_lang_code', 'name', 'James Kent (United Kingdom)'),
(21521, 18765, 'no_lang_code', 'name', 'Lypro Biosciences (United States)'),
(21522, 18766, 'no_lang_code', 'name', 'Lyven (France)'),
(21523, 18767, 'no_lang_code', 'name', 'MVSystems (United States)'),
(21524, 18768, 'no_lang_code', 'name', 'Lafer (Italy)'),
(21525, 18769, 'no_lang_code', 'name', 'KBR (United Kingdom)'),
(21526, 18770, 'no_lang_code', 'name', 'Viasat (Switzerland)'),
(21527, 18771, 'no_lang_code', 'name', 'M Wright and Sons (United Kingdom)'),
(21528, 18772, 'no_lang_code', 'name', 'M.A. Turbo Engine (Canada)'),
(21529, 18773, 'no_lang_code', 'name', 'Ljubljana Passenger Transport'),
(21530, 18774, 'no_lang_code', 'name', 'M3 Systems (France)'),
(21531, 18775, 'en', 'name', 'Mediterranean Information Office for Environment Culture and Sustainable Development'),
(21532, 18776, 'en', 'name', 'Mediterranean Institute of Fundamental Physics'),
(21533, 18777, 'no_lang_code', 'name', 'Medivir (Sweden)'),
(21534, 18778, 'no_lang_code', 'name', 'MA Systems and Control (United Kingdom)'),
(21535, 18779, 'no_lang_code', 'name', 'MedPharm (United Kingdom)'),
(21536, 18780, 'no_lang_code', 'name', 'JBS Science (United States)'),
(21537, 18781, 'no_lang_code', 'name', 'Mace (United Kingdom)'),
(21538, 18782, 'en', 'name', 'MacGillivray Freeman Films'),
(21539, 18783, 'en', 'name', 'Ministry of Agriculture, Forestry and Rural Development'),
(21540, 18783, 'pt', 'name', 'MinistƩrio da Agricultura'),
(21541, 18784, 'no_lang_code', 'name', 'Mitel (Ireland)'),
(21542, 18785, 'no_lang_code', 'name', 'Jefar-Indústria De Calçado'),
(21543, 18786, 'en', 'name', 'Ministry of National Defense'),
(21544, 18786, 'pt', 'name', 'MinistƩrio da Defesa Nacional'),
(21545, 18787, 'en', 'name', 'Mach4 Lab'),
(21546, 18788, 'no_lang_code', 'name', 'Lakeshore Group (United States)'),
(21547, 18789, 'en', 'name', 'Century College'),
(21548, 18790, 'no_lang_code', 'name', 'Medtrac Technologies (United States)'),
(21549, 18791, 'en', 'name', 'Machine Science'),
(21550, 18792, 'en', 'name', 'Jefferson County Department of Health'),
(21551, 18793, 'no_lang_code', 'name', 'Machinefabriek Otto Schouten (Netherlands)'),
(21552, 18794, 'no_lang_code', 'name', 'Coherent (Germany)'),
(21553, 18795, 'en', 'name', 'Lancashire County Council'),
(21554, 18796, 'en', 'name', 'Lafayette School Corporation'),
(21555, 18797, 'en', 'name', 'Lancaster City Council'),
(21556, 18798, 'en', 'name', 'Land Quality Management'),
(21557, 18799, 'no_lang_code', 'name', 'JenLab (Germany)'),
(21558, 18800, 'en', 'name', 'Landau Institute for Theoretical Physics'),
(21559, 18800, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической физики им. Š›. Š”. Š›Š°Š½Š“Š°Ńƒ'),
(21560, 18801, 'no_lang_code', 'name', 'Jenoptik (Germany)'),
(21561, 18802, 'en', 'name', 'Danish Agriculture and Food Council'),
(21562, 18803, 'no_lang_code', 'name', 'Orano (United States)'),
(21563, 18804, 'no_lang_code', 'name', 'Mega Electronics (Finland)'),
(21564, 18805, 'no_lang_code', 'name', 'Boeing (Germany)'),
(21565, 18806, 'cs', 'name', 'Ministerstvo Å”kolstvĆ­, mlĆ”deže a tělovýchovy ČeskĆ© republiky'),
(21566, 18806, 'en', 'name', 'Ministry of Education Youth and Sports'),
(21567, 18807, 'en', 'name', 'Jewish Home'),
(21568, 18808, 'cs', 'name', 'Ministerstvo vnitra'),
(21569, 18808, 'en', 'name', 'Ministry of the Interior'),
(21570, 18809, 'sq', 'name', 'Ministria e Arsimit dhe Shkencƫs'),
(21571, 18809, 'en', 'name', 'Ministry of Education and Science'),
(21572, 18810, 'no_lang_code', 'name', 'Meggitt (United Kingdom)'),
(21573, 18811, 'no_lang_code', 'name', 'Meggitt (Switzerland)'),
(21574, 18812, 'pl', 'name', 'Ministerstwo Kultury i Dziedzictwa Narodowego'),
(21575, 18812, 'en', 'name', 'Ministry of Culture and National Heritage'),
(21576, 18813, 'en', 'name', 'Living with Disability'),
(21577, 18814, 'no_lang_code', 'name', 'Helliniki Meletitiki (Greece)'),
(21578, 18815, 'no_lang_code', 'name', 'Joel Popkin and Company'),
(21579, 18816, 'no_lang_code', 'name', 'Joensuu Science Park'),
(21580, 18817, 'en', 'name', 'Ministry of Agriculture Forestry and Food'),
(21581, 18818, 'no_lang_code', 'name', 'MagArray (United States)'),
(21582, 18819, 'no_lang_code', 'name', 'Toshiba (Switzerland)'),
(21583, 18820, 'sl', 'name', 'Ministrstvo za Kulturo'),
(21584, 18820, 'en', 'name', 'Ministry of Culture'),
(21585, 18821, 'no_lang_code', 'name', 'Magee Scientific (United States)'),
(21586, 18822, 'no_lang_code', 'name', 'Toshiba (France)'),
(21587, 18823, 'sl', 'name', 'Ministrstvo za pravosodje'),
(21588, 18823, 'en', 'name', 'Ministry of Justice'),
(21589, 18824, 'en', 'name', 'Landmark College'),
(21590, 18825, 'en', 'name', 'Ministry for Education and Employment'),
(21591, 18826, 'no_lang_code', 'name', 'Fuchs (Austria)'),
(21592, 18827, 'no_lang_code', 'name', 'Magma (Germany)'),
(21593, 18828, 'en', 'name', 'Ministry for Sustainable Development the Environment and Climate change'),
(21594, 18829, 'no_lang_code', 'name', 'Melodea (Israel)'),
(21595, 18830, 'no_lang_code', 'name', 'Magna Parva (United Kingdom)'),
(21596, 18831, 'no_lang_code', 'name', 'Meloni Vini (Italy)'),
(21597, 18832, 'de', 'name', 'Landwirtschaftliche Fachschule Tulln'),
(21598, 18832, 'en', 'name', 'professional school for agriculture Tulln'),
(21599, 18833, 'en', 'name', 'Lane College'),
(21600, 18834, 'no_lang_code', 'name', 'John Caunt Scientific (United Kingdom)'),
(21601, 18835, 'no_lang_code', 'name', 'Magnetfabrik Bonn (Germany)'),
(21602, 18836, 'no_lang_code', 'name', 'Magneti Ljubljana (Slovenia)'),
(21603, 18837, 'no_lang_code', 'name', 'Nuance Communications (Belgium)'),
(21604, 18838, 'no_lang_code', 'name', 'The Meltech (United Kingdom)'),
(21605, 18839, 'no_lang_code', 'name', 'Language Computer (United States)'),
(21606, 18840, 'no_lang_code', 'name', 'John Gill Technology (United Kingdom)'),
(21607, 18841, 'no_lang_code', 'name', 'Lanner Group (United Kingdom)'),
(21608, 18842, 'no_lang_code', 'name', 'Tokyo Electron (Ireland)'),
(21609, 18843, 'no_lang_code', 'name', 'Revlon (United States)'),
(21610, 18844, 'no_lang_code', 'name', 'John Wiley & Sons (United Kingdom)'),
(21611, 18845, 'no_lang_code', 'name', 'SunEdison (Italy)'),
(21612, 18846, 'no_lang_code', 'name', 'Magnomatics (United Kingdom)'),
(21613, 18847, 'en', 'name', 'Hungarian Association of Content Industry'),
(21614, 18848, 'no_lang_code', 'name', 'MemEx (Italy)'),
(21615, 18849, 'no_lang_code', 'name', 'UniCredit (Italy)'),
(21616, 18849, 'it', 'name', 'UniCredito Italiano'),
(21617, 18850, 'no_lang_code', 'name', 'Laryngograph (United Kingdom)'),
(21618, 18851, 'en', 'name', 'Ministry of Transport and Communications'),
(21619, 18852, 'en', 'name', 'Ministry of Communications Science and Technology'),
(21620, 18853, 'no_lang_code', 'name', 'Deutsche Telekom (Hungary)'),
(21621, 18854, 'en', 'name', 'Shelby County Schools'),
(21622, 18855, 'no_lang_code', 'name', 'MemPro (United States)'),
(21623, 18856, 'en', 'name', 'Ministry of Education, Arts and Culture'),
(21624, 18857, 'no_lang_code', 'name', 'Rofin (Switzerland)'),
(21625, 18858, 'no_lang_code', 'name', 'Vionyx (United States)'),
(21626, 18859, 'en', 'name', 'Laser Institute of America'),
(21627, 18860, 'no_lang_code', 'name', 'Laser Optical Engineering (United Kingdom)'),
(21628, 18861, 'no_lang_code', 'name', 'Laser Tissue Welding (United States)'),
(21629, 18862, 'en', 'name', 'Ministry of Education Science and Technology'),
(21630, 18863, 'no_lang_code', 'name', 'Laser- und Medizin-Technologie (Germany)'),
(21631, 18864, 'fr', 'name', 'Missions Publiques'),
(21632, 18865, 'en', 'name', 'Ministry of Health'),
(21633, 18865, 'pt', 'name', 'Ministério da Saúde'),
(21634, 18866, 'no_lang_code', 'name', 'LaserLeap Technologies (Portugal)'),
(21635, 18867, 'en', 'name', 'Mississippi Band of Choctaw Indians'),
(21636, 18868, 'en', 'name', 'Ministry of Health'),
(21637, 18869, 'no_lang_code', 'name', 'Laserlith (United States)'),
(21638, 18870, 'en', 'name', 'Hungarian Chemical Industry Association'),
(21639, 18871, 'no_lang_code', 'name', 'MEMX (United States)'),
(21640, 18872, 'fr', 'name', 'Ministère de la Santé Publique et de la Population'),
(21641, 18873, 'sk', 'name', 'Ministerstvo VnĆŗtra Slovenskej Republiky'),
(21642, 18873, 'en', 'name', 'Ministry of Interior'),
(21643, 18874, 'no_lang_code', 'name', 'Lab_Bell (Canada)'),
(21644, 18875, 'no_lang_code', 'name', 'Maillefer (Switzerland)'),
(21645, 18876, 'en', 'name', 'Mississippi Department of Education'),
(21646, 18877, 'no_lang_code', 'name', 'LSI Solutions (United States)'),
(21647, 18878, 'no_lang_code', 'name', 'IVL Audio (Canada)'),
(21648, 18879, 'en', 'name', 'Laskeek Bay Conservation Society'),
(21649, 18880, 'nl', 'name', 'Ministerie van Justitie en Veiligheid'),
(21650, 18880, 'en', 'name', 'Ministry of Security and Justice'),
(21651, 18881, 'no_lang_code', 'name', 'Lassila & Tikanoja (Finland)'),
(21652, 18882, 'no_lang_code', 'name', 'Missouri Breaks Industries Research (United States)'),
(21653, 18883, 'no_lang_code', 'name', 'Latécoère (France)'),
(21654, 18884, 'en', 'name', 'Missouri Department of Social Services'),
(21655, 18885, 'en', 'name', 'Mental Health America of Oregon'),
(21656, 18886, 'en', 'name', 'Maine Audubon'),
(21657, 18887, 'fr', 'name', 'MinistĆØre de l''Agriculture'),
(21658, 18888, 'en', 'name', 'Office of Missouri Governor'),
(21659, 18889, 'no_lang_code', 'name', 'Soltigua (Italy)'),
(21660, 18890, 'no_lang_code', 'name', 'GVS (United States)'),
(21661, 18891, 'no_lang_code', 'name', 'Lati Industria Termoplastici (Italy)'),
(21662, 18892, 'en', 'name', 'Latino Community Services'),
(21663, 18893, 'en', 'name', 'Maine Parent Federation'),
(21664, 18894, 'no_lang_code', 'name', 'Management Intelligenter Technologien (Germany)'),
(21665, 18895, 'en', 'name', 'Laucks Foundation'),
(21666, 18896, 'no_lang_code', 'name', 'MiTeGen (United States)'),
(21667, 18897, 'no_lang_code', 'name', 'Lavrentyev Institute of Hydrodynamics'),
(21668, 18897, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГроГинамики им. М.А. Š›Š°Š²Ń€ŠµŠ½Ń‚ŃŒŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(21669, 18898, 'en', 'name', 'Law and Internet Foundation'),
(21670, 18899, 'en', 'name', 'Ministry of the Interior'),
(21671, 18899, 'fi', 'name', 'SisƤministeriƶ'),
(21672, 18900, 'lt', 'name', 'Lietuvos Respublikos vidaus reikalų ministerija'),
(21673, 18900, 'en', 'name', 'Ministry of the Interior of the Republic of Lithuania'),
(21674, 18901, 'no_lang_code', 'name', 'MakeBelieve Arts (United Kingdom)'),
(21675, 18902, 'en', 'name', 'Makin It Happen Coalition for Resilient Youth'),
(21676, 18903, 'no_lang_code', 'name', 'MAKScientific (United States)'),
(21677, 18904, 'en', 'name', 'Ministry of Transport and Communications'),
(21678, 18904, 'sv', 'name', 'kommunikationsministeriet'),
(21679, 18904, 'fi', 'name', 'liikenne- ja viestintƤministeriƶ'),
(21680, 18905, 'no_lang_code', 'name', 'MitoHealth (United States)'),
(21681, 18906, 'no_lang_code', 'name', '3D Systems (Belgium)'),
(21682, 18907, 'en', 'name', 'Mental Health Consumer Survivor Network'),
(21683, 18908, 'no_lang_code', 'name', 'LC Vision (United States)'),
(21684, 18909, 'en', 'name', 'Memorial Blood Centers'),
(21685, 18910, 'en', 'name', 'Mind'),
(21686, 18911, 'en', 'name', 'Minnesota Association for Children''s Mental Health'),
(21687, 18912, 'en', 'name', 'Mental Health Systems'),
(21688, 18913, 'no_lang_code', 'name', 'LDK (Greece)'),
(21689, 18914, 'en', 'name', 'Minnesota Educational Computing Consortium'),
(21690, 18915, 'en', 'name', 'Riverland Community College'),
(21691, 18916, 'en', 'name', 'Minnesota Department of Education'),
(21692, 18917, 'en', 'name', 'Minnesota Zoo'),
(21693, 18918, 'en', 'name', 'Minot Public Schools'),
(21694, 18919, 'en', 'name', 'Mental Health and Recovery Services Board'),
(21695, 18920, 'no_lang_code', 'name', 'Intersand (Canada)'),
(21696, 18921, 'no_lang_code', 'name', 'AVL (France)'),
(21697, 18922, 'en', 'name', 'Minuteman High School'),
(21698, 18923, 'no_lang_code', 'name', 'Los Alamos Technical Associates (United States)'),
(21699, 18924, 'en', 'name', 'Mental Health Mental Retardation of Tarrant County'),
(21700, 18925, 'no_lang_code', 'name', 'LeadScope (United States)'),
(21701, 18926, 'no_lang_code', 'name', 'Biotage (Sweden)'),
(21702, 18927, 'no_lang_code', 'name', 'Miraculins (Canada)'),
(21703, 18928, 'no_lang_code', 'name', 'Gnubila Technology (France)'),
(21704, 18929, 'en', 'name', 'Maine Department of Education'),
(21705, 18930, 'no_lang_code', 'name', 'Lear (Spain)'),
(21706, 18931, 'no_lang_code', 'name', 'Mirari Biosciences (United States)'),
(21707, 18932, 'no_lang_code', 'name', 'Mirasys (Finland)'),
(21708, 18933, 'en', 'name', 'FrontLine Service'),
(21709, 18934, 'no_lang_code', 'name', 'Mentor InterActive (United States)'),
(21710, 18935, 'no_lang_code', 'name', 'Chemsupply (Switzerland)'),
(21711, 18936, 'no_lang_code', 'name', 'Guideline Geo (Sweden)'),
(21712, 18937, 'no_lang_code', 'name', 'Mirriad (United Kingdom)'),
(21713, 18938, 'no_lang_code', 'name', 'Datacorp (United States)'),
(21714, 18939, 'en', 'name', 'Mercy Medical Center Merced'),
(21715, 18940, 'en', 'name', 'Department of Forestry'),
(21716, 18941, 'en', 'name', 'Mercer Island School District'),
(21717, 18942, 'en', 'name', 'National AIDS Commission'),
(21718, 18943, 'no_lang_code', 'name', 'mLED (United Kingdom)'),
(21719, 18944, 'no_lang_code', 'name', 'MLS Multimedia (Greece)'),
(21720, 18945, 'en', 'name', 'National Foundation for Educational Research'),
(21721, 18946, 'en', 'name', 'MyFace'),
(21722, 18947, 'en', 'name', 'Malta Enterprise'),
(21723, 18948, 'no_lang_code', 'name', 'Mobics (Greece)'),
(21724, 18949, 'no_lang_code', 'name', 'Mobilaps (United States)'),
(21725, 18950, 'no_lang_code', 'name', 'New World Medical (United States)'),
(21726, 18951, 'no_lang_code', 'name', 'Orange (Belgium)'),
(21727, 18952, 'en', 'name', 'New York City Fire Department'),
(21728, 18953, 'en', 'name', 'Administration for Children''s Services'),
(21729, 18954, 'en', 'name', 'National Hospital for Neurology and Neurosurgery'),
(21730, 18955, 'no_lang_code', 'name', 'National Hyperbaric Centre'),
(21731, 18956, 'no_lang_code', 'name', 'ModellTechnik Rapid Prototyping (Germany)'),
(21732, 18957, 'no_lang_code', 'name', 'Meridian Bioscience (United States)'),
(21733, 18958, 'en', 'name', 'Management and Development for Health'),
(21734, 18959, 'no_lang_code', 'name', 'Modelon (Sweden)'),
(21735, 18960, 'en', 'name', 'New York State Senate'),
(21736, 18961, 'en', 'name', 'Meridian Community College'),
(21737, 18962, 'no_lang_code', 'name', 'EnServe Group (United Kingdom)'),
(21738, 18963, 'no_lang_code', 'name', 'Management Science Associates (United States)'),
(21739, 18964, 'en', 'name', 'Management Sciences for Health'),
(21740, 18965, 'no_lang_code', 'name', 'Management Support Technology (United States)'),
(21741, 18966, 'no_lang_code', 'name', 'Meridian Medical Systems (United States)'),
(21742, 18967, 'no_lang_code', 'name', 'Modern Water (United Kingdom)'),
(21743, 18968, 'no_lang_code', 'name', 'Newbiotechnic (Spain)'),
(21744, 18969, 'no_lang_code', 'name', 'Erka Group (Turkey)'),
(21745, 18970, 'en', 'name', 'Newburgh Enlarged City School District'),
(21746, 18971, 'en', 'name', 'Yosemite Community College District'),
(21747, 18972, 'en', 'name', 'Manchester Digital Laboratory'),
(21748, 18973, 'no_lang_code', 'name', 'Mandala Biosciences (United States)'),
(21749, 18974, 'no_lang_code', 'name', 'Modular Robotics (United States)'),
(21750, 18975, 'no_lang_code', 'name', 'Merlin Circuit Technology (United Kingdom)'),
(21751, 18976, 'en', 'name', 'National Institute for Research and Development in Microtechnologies'),
(21752, 18977, 'no_lang_code', 'name', 'Feonic Technology (United Kingdom)'),
(21753, 18978, 'no_lang_code', 'name', 'Maniero Elettronica (Italy)'),
(21754, 18979, 'no_lang_code', 'name', 'Modulex (Denmark)'),
(21755, 18980, 'no_lang_code', 'name', 'Manifattura Italiana del Brembo (Italy)'),
(21756, 18981, 'en', 'name', 'Maniilaq Association'),
(21757, 18982, 'en', 'name', 'National Institute of Building Sciences'),
(21758, 18983, 'no_lang_code', 'name', 'New Metals and Chemicals (United Kingdom)'),
(21759, 18984, 'en', 'name', 'Mersey Care NHS Trust'),
(21760, 18985, 'no_lang_code', 'name', 'Newomics (United States)'),
(21761, 18986, 'en', 'name', 'NewOpera'),
(21762, 18987, 'en', 'name', 'Newport News Public Schools'),
(21763, 18988, 'en', 'name', 'Manitoba Environmental Industries Association'),
(21764, 18989, 'en', 'name', 'Manchester Airport'),
(21765, 18990, 'no_lang_code', 'name', 'Nexans (Germany)'),
(21766, 18991, 'no_lang_code', 'name', 'Moixa (United Kingdom)'),
(21767, 18992, 'no_lang_code', 'name', 'Nexcis (France)'),
(21768, 18993, 'en', 'name', 'Merseytravel'),
(21769, 18994, 'no_lang_code', 'name', 'Moixa Technology (United Kingdom)'),
(21770, 18995, 'en', 'name', 'National Institute of Oceanography'),
(21771, 18995, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„ą¤¦ą„ą¤° ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(21772, 18995, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®•ą®Ÿą®²ą®æą®Æą®²ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(21773, 18995, 'ml', 'name', 'ą“Øą“¾ą“·ą“£ąµ½ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą““ą“·ąµą“Æą“¾ą“Øąµ‹ą“—ąµą“°ą“«ą“æ'),
(21774, 18996, 'no_lang_code', 'name', 'HBW-Gubesch Kunststoff-Engineering (Germany)'),
(21775, 18997, 'no_lang_code', 'name', 'Mesa Analytics & Computing (United States)'),
(21776, 18998, 'no_lang_code', 'name', 'Nexor (United Kingdom)'),
(21777, 18999, 'en', 'name', 'National Institute of Public Health'),
(21778, 18999, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‡įž¶įžįž·įžŸįž»įžįž—įž¶įž–įžŸįž¶įž’įž¶įžšįžŽįŸˆ'),
(21779, 19000, 'no_lang_code', 'name', 'Mesolight (United States)'),
(21780, 19001, 'no_lang_code', 'name', 'Next Ingegneria dei Sistemi (Italy)'),
(21781, 19002, 'no_lang_code', 'name', 'Next Limit Technologies (Spain)'),
(21782, 19003, 'no_lang_code', 'name', 'Meso (United States)'),
(21783, 19004, 'no_lang_code', 'name', 'Message Pharmaceuticals (United States)'),
(21784, 19005, 'no_lang_code', 'name', 'MAN (Denmark)'),
(21785, 19006, 'en', 'name', 'Office of Extramural Research'),
(21786, 19007, 'no_lang_code', 'name', 'Safran (United Kingdom)'),
(21787, 19008, 'no_lang_code', 'name', 'NextInput (United States)'),
(21788, 19009, 'en', 'name', 'United States Conference of Mayors'),
(21789, 19010, 'no_lang_code', 'name', 'META Group'),
(21790, 19011, 'no_lang_code', 'name', 'MammaCare (United States)'),
(21791, 19012, 'no_lang_code', 'name', 'Nexture Consulting'),
(21792, 19013, 'lv', 'name', 'Latvijas Nacionālā bibliotēka'),
(21793, 19013, 'en', 'name', 'National Library of Latvia'),
(21794, 19014, 'no_lang_code', 'name', 'MOL Group (Hungary)'),
(21795, 19015, 'no_lang_code', 'name', 'MetaSystem (Italy)'),
(21796, 19016, 'en', 'name', 'Nexus Research'),
(21797, 19017, 'en', 'name', 'National Medical Association'),
(21798, 19018, 'de', 'name', 'Institut für Kooperationsmanagement und interdisziplinäre Forschung'),
(21799, 19018, 'en', 'name', 'Nexus Institute for Cooperation Management and Interdisciplinary Research'),
(21800, 19019, 'no_lang_code', 'name', 'Meta Vision Systems (United Kingdom)'),
(21801, 19020, 'no_lang_code', 'name', 'Nexus Engineering (Bulgaria)'),
(21802, 19021, 'en', 'name', 'Nez Perce Tribal Executive Committee'),
(21803, 19022, 'no_lang_code', 'name', 'METabolic Explorer (France)'),
(21804, 19023, 'no_lang_code', 'name', 'Metabolic Solutions Development Company (United States)'),
(21805, 19024, 'en', 'name', 'NHS Blood and Transplant'),
(21806, 19025, 'no_lang_code', 'name', 'Rio Tinto (United States)'),
(21807, 19026, 'no_lang_code', 'name', 'Metal Matrix Cast Composites (United States)'),
(21808, 19027, 'hu', 'name', 'OrszÔgos Gyógyintézeti Központ'),
(21809, 19028, 'en', 'name', 'National Merit Scholarship Corporation'),
(21810, 19029, 'no_lang_code', 'name', 'Niadyne Pharma (United States)'),
(21811, 19030, 'no_lang_code', 'name', 'Molecular Innovations (United States)'),
(21812, 19031, 'en', 'name', 'Innovate Niagara'),
(21813, 19032, 'en', 'name', 'Institute of Fisheries and Aquaculture'),
(21814, 19033, 'no_lang_code', 'name', 'Niagara Scientific Products (United States)'),
(21815, 19034, 'en', 'name', 'Molecular Medicine Ireland'),
(21816, 19035, 'no_lang_code', 'name', 'Molecular Networks (Germany)'),
(21817, 19036, 'no_lang_code', 'name', 'Digital Equipment (Germany)'),
(21818, 19037, 'no_lang_code', 'name', 'Nice Systems (Israel)'),
(21819, 19038, 'en', 'name', 'National Museum of Natural History'),
(21820, 19038, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ ŠæŃ€ŠøŃ€Š¾Š“Š¾Š½Š°ŃƒŃ‡ŠµŠ½ музей'),
(21821, 19039, 'en', 'name', 'Science Museum Group'),
(21822, 19040, 'no_lang_code', 'name', 'Molecular Sensing (United States)'),
(21823, 19041, 'en', 'name', 'National Native American AIDS Prevention Center'),
(21824, 19042, 'no_lang_code', 'name', 'Entellexi (Ireland)'),
(21825, 19043, 'no_lang_code', 'name', 'Manufacturas Serviplast (Spain)'),
(21826, 19044, 'en', 'name', 'National Patient Safety Agency'),
(21827, 19045, 'en', 'name', 'National Patient Safety Foundation'),
(21828, 19046, 'no_lang_code', 'name', 'Michelin (France)'),
(21829, 19047, 'en', 'name', 'Molina Center for Energy and the Environment'),
(21830, 19048, 'en', 'name', 'Danish National Police'),
(21831, 19049, 'en', 'name', 'National Postdoctoral Association'),
(21832, 19050, 'no_lang_code', 'name', 'Manus Bio (United States)'),
(21833, 19051, 'no_lang_code', 'name', 'Metalografica (Spain)'),
(21834, 19052, 'no_lang_code', 'name', 'Engie (United Kingdom)'),
(21835, 19053, 'no_lang_code', 'name', 'Mologic (United Kingdom)'),
(21836, 19054, 'en', 'name', 'National Public Health Information Coalition'),
(21837, 19055, 'no_lang_code', 'name', 'MetaSensing (Netherlands)'),
(21838, 19056, 'no_lang_code', 'name', 'Moma (Italy)'),
(21839, 19057, 'no_lang_code', 'name', 'Momatec (Germany)'),
(21840, 19058, 'no_lang_code', 'name', 'Manus Neurodynamica (United Kingdom)'),
(21841, 19059, 'no_lang_code', 'name', 'Manz (Germany)'),
(21842, 19060, 'no_lang_code', 'name', 'NIL Technology (Denmark)'),
(21843, 19061, 'ro', 'name', 'Institutul National de Cercetare Dezvoltare pentru Tehnologii Criogenice si Izotopice'),
(21844, 19062, 'no_lang_code', 'name', 'Nimbus (Italy)'),
(21845, 19063, 'no_lang_code', 'name', 'Momentum (United Kingdom)'),
(21846, 19064, 'no_lang_code', 'name', 'Monarch Media (United States)'),
(21847, 19065, 'no_lang_code', 'name', 'Mondeca (France)'),
(21848, 19066, 'no_lang_code', 'name', 'Mellon Technologies (Greece)'),
(21849, 19067, 'no_lang_code', 'name', 'Nimesis Technology (France)'),
(21850, 19068, 'en', 'name', 'National School Boards Association'),
(21851, 19069, 'no_lang_code', 'name', 'Cybernet Systems Corporation (Canada)'),
(21852, 19070, 'en', 'name', 'Nipomo Health Center'),
(21853, 19071, 'no_lang_code', 'name', 'Monition (United Kingdom)'),
(21854, 19072, 'no_lang_code', 'name', 'Texas Instruments (United Kingdom)'),
(21855, 19073, 'no_lang_code', 'name', 'Mapper Lithography (Netherlands)'),
(21856, 19074, 'no_lang_code', 'name', 'Metec (Germany)'),
(21857, 19075, 'en', 'name', 'National Society of Black Physicists'),
(21858, 19076, 'en', 'name', 'National Society of Professional Engineers'),
(21859, 19077, 'en', 'name', 'Metec Innovation Consulting'),
(21860, 19078, 'no_lang_code', 'name', 'NIS (United Kingdom)'),
(21861, 19079, 'en', 'name', 'National Stroke Foundation'),
(21862, 19080, 'no_lang_code', 'name', 'Marben (France)'),
(21863, 19081, 'no_lang_code', 'name', 'Materialise (Germany)'),
(21864, 19082, 'no_lang_code', 'name', 'Arqiva (United Kingdom)'),
(21865, 19083, 'no_lang_code', 'name', 'Nissan (Switzerland)'),
(21866, 19084, 'no_lang_code', 'name', 'Nissan (United Kingdom)'),
(21867, 19085, 'no_lang_code', 'name', 'Audiprel (Spain)'),
(21868, 19086, 'en', 'name', 'Monroe County Department of Human Services'),
(21869, 19087, 'no_lang_code', 'name', 'NexusAB (United Kingdom)'),
(21870, 19088, 'no_lang_code', 'name', 'Meteotest (Switzerland)'),
(21871, 19089, 'no_lang_code', 'name', 'NiTech Solutions (United Kingdom)'),
(21872, 19090, 'no_lang_code', 'name', 'MetraLabs (Germany)'),
(21873, 19091, 'no_lang_code', 'name', 'Diebold Nixdorf (Germany)'),
(21874, 19092, 'en', 'name', 'Monroe County Department of Public Health'),
(21875, 19093, 'no_lang_code', 'name', 'NKE Instrumentation (France)'),
(21876, 19094, 'en', 'name', 'National Trust for Scotland'),
(21877, 19095, 'no_lang_code', 'name', 'Montana Molecular (United States)'),
(21878, 19096, 'en', 'name', 'Montana Office of Public Instruction'),
(21879, 19097, 'no_lang_code', 'name', 'ACOEM (France)'),
(21880, 19098, 'no_lang_code', 'name', 'Edison (Italy)'),
(21881, 19099, 'en', 'name', 'Office of the Bronx District Attorney'),
(21882, 19100, 'no_lang_code', 'name', 'Nobatek'),
(21883, 19101, 'en', 'name', 'Native Health'),
(21884, 19102, 'en', 'name', 'Manchester Digital Development Agency'),
(21885, 19103, 'en', 'name', 'Native American Management Services'),
(21886, 19104, 'en', 'name', 'Monterey Institute for Research in Astronomy'),
(21887, 19105, 'en', 'name', 'National Blood Clot Alliance'),
(21888, 19106, 'en', 'name', 'Monterey Peninsula Unified School District'),
(21889, 19107, 'no_lang_code', 'name', 'Marie Curie Association'),
(21890, 19108, 'no_lang_code', 'name', 'Moor Instruments (United Kingdom)'),
(21891, 19109, 'no_lang_code', 'name', 'MariLim (Germany)'),
(21892, 19110, 'en', 'name', 'Moorfields Eye Hospital NHS Foundation Trust'),
(21893, 19111, 'en', 'name', 'College of Marin'),
(21894, 19112, 'en', 'name', 'Moorpark College'),
(21895, 19113, 'no_lang_code', 'name', 'Metronix (Germany)'),
(21896, 19114, 'en', 'name', 'Moors for the Future Partnership'),
(21897, 19115, 'en', 'name', 'Metropolitan Interdenominational Church'),
(21898, 19116, 'no_lang_code', 'name', 'Moravek Biochemicals (United States)'),
(21899, 19117, 'no_lang_code', 'name', 'Noesis Solutions (Belgium)'),
(21900, 19118, 'en', 'name', 'Nature Conservancy of Canada'),
(21901, 19119, 'de', 'name', 'Naturland'),
(21902, 19120, 'no_lang_code', 'name', 'Nohms Technologies (United States)'),
(21903, 19121, 'en', 'name', 'MPC Corporation'),
(21904, 19122, 'no_lang_code', 'name', 'Metropolitana Milanese (Italy)'),
(21905, 19123, 'no_lang_code', 'name', 'Morgan Innovation and Technology (United Kingdom)'),
(21906, 19124, 'no_lang_code', 'name', 'Naturstoff-Technik (Germany)'),
(21907, 19125, 'no_lang_code', 'name', 'Nokia (United Kingdom)'),
(21908, 19126, 'no_lang_code', 'name', 'Accenture (Italy)'),
(21909, 19127, 'en', 'name', 'Morgantown High School'),
(21910, 19128, 'fi', 'name', 'Nokian Renkaat'),
(21911, 19128, 'no_lang_code', 'name', 'Nokian Tyres (Finland)'),
(21912, 19129, 'no_lang_code', 'name', 'Mark Group (United Kingdom)'),
(21913, 19130, 'no_lang_code', 'name', 'Nomad Tech (Portugal)'),
(21914, 19131, 'no_lang_code', 'name', 'Naval Architecture Progress (Greece)'),
(21915, 19132, 'en', 'name', 'Navarro College'),
(21916, 19133, 'no_lang_code', 'name', 'Nomisma (Italy)'),
(21917, 19134, 'no_lang_code', 'name', 'Mexel (France)'),
(21918, 19135, 'no_lang_code', 'name', 'Navidea Biopharmaceuticals (United States)'),
(21919, 19136, 'no_lang_code', 'name', 'Nomor Research (Germany)'),
(21920, 19137, 'no_lang_code', 'name', 'Schauenburg (United Kingdom)'),
(21921, 19138, 'no_lang_code', 'name', 'MHG Systems (Finland)'),
(21922, 19139, 'no_lang_code', 'name', 'Navimetric (Spain)'),
(21923, 19140, 'en', 'name', 'Marketing Science Institute'),
(21924, 19141, 'no_lang_code', 'name', 'Mosaic Films (United Kingdom)'),
(21925, 19142, 'en', 'name', 'Michigan Coalition to End Domestic and Sexual Violence'),
(21926, 19143, 'no_lang_code', 'name', 'CompaƱƭa Mexicana de Radiologƭa (United States)'),
(21927, 19144, 'no_lang_code', 'name', 'Navtech Radar (United Kingdom)'),
(21928, 19145, 'en', 'name', 'Nazareth Hospital'),
(21929, 19146, 'no_lang_code', 'name', 'Essent (Netherlands)'),
(21930, 19147, 'no_lang_code', 'name', 'NBE Tech (United States)'),
(21931, 19148, 'no_lang_code', 'name', 'Marksman Cellject (Canada)'),
(21932, 19149, 'no_lang_code', 'name', 'NCR (United Kingdom)'),
(21933, 19150, 'no_lang_code', 'name', 'Noray Bioinformatics (Spain)'),
(21934, 19151, 'no_lang_code', 'name', 'Norac Pharma (United States)'),
(21935, 19152, 'no_lang_code', 'name', 'nsm Norbert SchlƤfli (Switzerland)'),
(21936, 19153, 'no_lang_code', 'name', 'Northern Lipids (Canada)'),
(21937, 19154, 'en', 'name', 'National Research University of Electronic Technology'),
(21938, 19154, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ МИЭТ'),
(21939, 19155, 'no_lang_code', 'name', 'Norcada (Canada)'),
(21940, 19156, 'no_lang_code', 'name', 'HeidelbergCement (Norway)'),
(21941, 19157, 'en', 'name', 'Nebraska Department of Agriculture'),
(21942, 19158, 'no_lang_code', 'name', 'NorChip (Norway)'),
(21943, 19159, 'no_lang_code', 'name', 'Fungisem (Spain)'),
(21944, 19160, 'no_lang_code', 'name', 'Northern Technologies International (United States)'),
(21945, 19161, 'en', 'name', 'Northland Pioneer College'),
(21946, 19162, 'en', 'name', 'Nebraska Educational Telecommunications'),
(21947, 19163, 'no_lang_code', 'name', 'VivoSight (United Kingdom)'),
(21948, 19164, 'nl', 'name', 'Nederlands Jeugdinstituut'),
(21949, 19164, 'en', 'name', 'Netherlands Youth Institute'),
(21950, 19165, 'en', 'name', 'Thatcham Research'),
(21951, 19166, 'no_lang_code', 'name', 'Motor Oil (Greece)'),
(21952, 19167, 'en', 'name', 'Central Michigan University Research Corporation'),
(21953, 19168, 'no_lang_code', 'name', 'Motorola Solutions (Israel)'),
(21954, 19169, 'en', 'name', 'Northwest Florida State College'),
(21955, 19170, 'no_lang_code', 'name', 'Vestas (Netherlands)'),
(21956, 19171, 'no_lang_code', 'name', 'Nordeconsult (Sweden)'),
(21957, 19172, 'en', 'name', 'Mount Washington Observatory'),
(21958, 19173, 'en', 'name', 'Mountain Comprehensive Care Centre'),
(21959, 19174, 'no_lang_code', 'name', 'Coherent (United States)'),
(21960, 19175, 'no_lang_code', 'name', 'Nordic Bioscience (Denmark)'),
(21961, 19176, 'no_lang_code', 'name', 'Micro Photon Devices'),
(21962, 19177, 'no_lang_code', 'name', 'Microsystems (United Kingdom)'),
(21963, 19178, 'no_lang_code', 'name', 'Nemaura Pharma (United Kingdom)'),
(21964, 19179, 'no_lang_code', 'name', 'Nemetschek (Germany)'),
(21965, 19180, 'no_lang_code', 'name', 'Micro Systems Engineering (Germany)'),
(21966, 19181, 'no_lang_code', 'name', 'Nemetschek Allplan (Slovakia)'),
(21967, 19182, 'no_lang_code', 'name', 'Micro Optics Technologies (United States)'),
(21968, 19183, 'no_lang_code', 'name', 'Nemko (Norway)'),
(21969, 19183, 'no', 'name', 'Norges Elektriske Materiellkontroll'),
(21970, 19184, 'no_lang_code', 'name', 'Nemucore Medical Innovations (United States)'),
(21971, 19185, 'no_lang_code', 'name', 'NorthWestNET'),
(21972, 19186, 'no_lang_code', 'name', 'Microbial ID (United States)'),
(21973, 19187, 'no_lang_code', 'name', 'Microbial Insights (United States)'),
(21974, 19188, 'no_lang_code', 'name', 'Nenuphar (France)'),
(21975, 19189, 'no_lang_code', 'name', 'Neoceram (Belgium)'),
(21976, 19190, 'no_lang_code', 'name', 'NeoCytex Biopharma (United States)'),
(21977, 19191, 'no_lang_code', 'name', 'Neogen (United States)'),
(21978, 19192, 'no_lang_code', 'name', 'First Sensor (Canada)'),
(21979, 19193, 'no_lang_code', 'name', 'Microcosm (United States)'),
(21980, 19194, 'no_lang_code', 'name', 'Nortis (United States)'),
(21981, 19195, 'no_lang_code', 'name', 'Mountain View Clinical Research'),
(21982, 19196, 'no_lang_code', 'name', 'Norton Aluminium (United Kingdom)'),
(21983, 19197, 'no_lang_code', 'name', 'Norton Cast Products (United Kingdom)'),
(21984, 19198, 'no_lang_code', 'name', 'Neotherix (United Kingdom)'),
(21985, 19199, 'sv', 'name', 'NordGen'),
(21986, 19200, 'no_lang_code', 'name', 'Norton Hydraulics (United Kingdom)'),
(21987, 19201, 'no_lang_code', 'name', 'Move Entwicklungs Infrastruktur und Service (Germany)'),
(21988, 19202, 'en', 'name', 'Norton Sound Health Corporation'),
(21989, 19203, 'no_lang_code', 'name', 'MicroDiscovery (Germany)'),
(21990, 19204, 'en', 'name', 'Norwalk Community College'),
(21991, 19205, 'no_lang_code', 'name', 'MicroDish (Netherlands)'),
(21992, 19206, 'no_lang_code', 'name', 'Nordic Transport Development'),
(21993, 19207, 'no_lang_code', 'name', 'Nesch (United States)'),
(21994, 19208, 'en', 'name', 'Nordic Innovation'),
(21995, 19209, 'en', 'name', 'Nesta'),
(21996, 19210, 'no_lang_code', 'name', 'Microelectronica (Romania)'),
(21997, 19211, 'de', 'name', 'MRB Forschungszentrum für Magnet-Resonanz-Bayern'),
(21998, 19211, 'en', 'name', 'MRB Research Center for Magnetic Resonance Bavaria'),
(21999, 19212, 'en', 'name', 'Norfolk County Council'),
(22000, 19213, 'no_lang_code', 'name', 'Masermic (Spain)'),
(22001, 19214, 'no_lang_code', 'name', 'Microflown Technologies (Netherlands)'),
(22002, 19215, 'no_lang_code', 'name', 'Iron Mountain (United States)'),
(22003, 19216, 'no_lang_code', 'name', 'MRC Holland (Netherlands)'),
(22004, 19217, 'no_lang_code', 'name', 'Lab21 (United Kingdom)'),
(22005, 19218, 'no_lang_code', 'name', 'Microgen (United States)'),
(22006, 19219, 'no_lang_code', 'name', 'NestlƩ (United Kingdom)'),
(22007, 19220, 'no_lang_code', 'name', 'Dustin (Norway)'),
(22008, 19221, 'no_lang_code', 'name', 'Microlab Devices (United Kingdom)'),
(22009, 19222, 'en', 'name', 'Federation of Norwegian Industries'),
(22010, 19222, 'no_lang_code', 'name', 'Norsk Industri (Norway)'),
(22011, 19223, 'no_lang_code', 'name', 'MicroLS (Germany)'),
(22012, 19224, 'no_lang_code', 'name', 'MRK Systeme (Germany)'),
(22013, 19225, 'en', 'name', 'Norwegian Shipowners'' Association'),
(22014, 19226, 'en', 'name', 'Norwegian Seafood Association'),
(22015, 19227, 'no_lang_code', 'name', 'Microsoft (Portugal)'),
(22016, 19228, 'en', 'name', 'Norwegian Water Resources and Energy Directorate'),
(22017, 19229, 'no_lang_code', 'name', 'Micromath (United States)'),
(22018, 19230, 'en', 'name', 'North American Association for Environmental Education'),
(22019, 19231, 'no_lang_code', 'name', 'Micromatica (Italy)'),
(22020, 19232, 'no_lang_code', 'name', 'Noterik (Netherlands)'),
(22021, 19233, 'en', 'name', 'Nottingham Community Housing Association'),
(22022, 19234, 'no_lang_code', 'name', 'Vandurit (Italy)'),
(22023, 19235, 'no_lang_code', 'name', 'Nottingham Express Transit (United Kingdom)'),
(22024, 19236, 'no_lang_code', 'name', 'Micromega Dynamics (Belgium)'),
(22025, 19237, 'no_lang_code', 'name', 'MicronOptics (United States)'),
(22026, 19238, 'no_lang_code', 'name', 'NetSmart (Greece)'),
(22027, 19239, 'en', 'name', 'Nottinghamshire County Council'),
(22028, 19240, 'no_lang_code', 'name', 'NetUnion (Switzerland)'),
(22029, 19241, 'no_lang_code', 'name', 'Bonnier Technology Group (Germany)'),
(22030, 19242, 'no_lang_code', 'name', 'Nova Medical (United States)'),
(22031, 19243, 'no_lang_code', 'name', 'NETvisor (Hungary)'),
(22032, 19244, 'no_lang_code', 'name', 'NOVA Scientific (United States)'),
(22033, 19245, 'no_lang_code', 'name', 'Müller BBM (Germany)'),
(22034, 19246, 'no_lang_code', 'name', 'Notox (Denmark)'),
(22035, 19247, 'en', 'name', 'Network Human Services'),
(22036, 19248, 'no_lang_code', 'name', 'Multicert (Portugal)'),
(22037, 19249, 'no_lang_code', 'name', 'MultiD Analyses (Sweden)'),
(22038, 19250, 'en', 'name', 'Network of Aquaculture Centres in Asia-Pacific'),
(22039, 19251, 'no_lang_code', 'name', 'Exceet Group (Germany)'),
(22040, 19252, 'no_lang_code', 'name', 'Neumedicines (United States)'),
(22041, 19253, 'no_lang_code', 'name', 'Novacta (United Kingdom)'),
(22042, 19254, 'no_lang_code', 'name', 'Neuro Kinetics (United States)'),
(22043, 19255, 'no_lang_code', 'name', 'Micropore Technologies (United Kingdom)'),
(22044, 19256, 'no_lang_code', 'name', 'Micropyretics Heater International (United States)'),
(22045, 19257, 'en', 'name', 'Neurobehavioral Systems'),
(22046, 19258, 'no_lang_code', 'name', 'Microsens (Switzerland)'),
(22047, 19259, 'no_lang_code', 'name', 'Multimatic ILSA (Germany)'),
(22048, 19260, 'no_lang_code', 'name', 'Samsung (Germany)'),
(22049, 19261, 'no_lang_code', 'name', 'Netivei Israel (Israel)'),
(22050, 19261, 'he', 'name', 'החברה ×”×œ××•×ž×™×Ŗ ×œ×“×Ø×›×™× ×‘×™×©×Ø××œ'),
(22051, 19262, 'no_lang_code', 'name', 'Mine Safety Appliances (United States)'),
(22052, 19263, 'no_lang_code', 'name', 'Multimeric Biotherapeutics (United States)'),
(22053, 19264, 'no_lang_code', 'name', 'NovaMechanics (Cyprus)'),
(22054, 19265, 'no_lang_code', 'name', 'Novarials (United States)'),
(22055, 19266, 'no_lang_code', 'name', 'Novartis (Canada)'),
(22056, 19267, 'no_lang_code', 'name', 'Nonwovens Innovation & Research Institute'),
(22057, 19268, 'no_lang_code', 'name', 'NOVASiC (France)'),
(22058, 19269, 'en', 'name', 'Metro Wellness and Community Centers'),
(22059, 19270, 'no_lang_code', 'name', 'Novatea (Italy)'),
(22060, 19271, 'no_lang_code', 'name', 'NovAtel (Canada)'),
(22061, 19272, 'no_lang_code', 'name', 'NeuroSearch (Denmark)'),
(22062, 19273, 'en', 'name', 'Department of County ​Human Services'),
(22063, 19274, 'no_lang_code', 'name', 'NeuroSigma (United States)'),
(22064, 19275, 'no_lang_code', 'name', 'MicroSurfaces (United States)'),
(22065, 19276, 'no_lang_code', 'name', 'Light Chain Bioscience (Switzerland)'),
(22066, 19277, 'en', 'name', 'Government Finance Officers Association'),
(22067, 19278, 'no_lang_code', 'name', 'Novomer (United States)'),
(22068, 19279, 'en', 'name', 'Nevada PEP'),
(22069, 19280, 'en', 'name', 'New and Renewable Energy Authority'),
(22070, 19281, 'no_lang_code', 'name', 'Municipality of Athens Development Agency'),
(22071, 19282, 'no_lang_code', 'name', 'NP Photonics (United States)'),
(22072, 19283, 'no_lang_code', 'name', 'MicroTEC (Germany)'),
(22073, 19284, 'en', 'name', 'New England College'),
(22074, 19285, 'fr', 'name', 'Armand Frappier Museum'),
(22075, 19286, 'pt', 'name', 'Museu de Arte Pré-Histórica de Mação'),
(22076, 19287, 'en', 'name', 'New England Institute of Addiction Studies'),
(22077, 19288, 'en', 'name', 'New England Wild Flower Society'),
(22078, 19289, 'no_lang_code', 'name', 'Microtest (United Kingdom)'),
(22079, 19290, 'no_lang_code', 'name', 'Novo Nordisk (United Kingdom)'),
(22080, 19291, 'no_lang_code', 'name', 'SMS Siemag (Germany)'),
(22081, 19292, 'no_lang_code', 'name', 'Zoetis (Canada)'),
(22082, 19293, 'no_lang_code', 'name', 'New Generation Biogas'),
(22083, 19294, 'pt', 'name', 'Museu da PresidĆŖncia da RepĆŗblica'),
(22084, 19295, 'en', 'name', 'New Hampshire Department of Education'),
(22085, 19296, 'no_lang_code', 'name', 'Microtest (Spain)'),
(22086, 19297, 'no_lang_code', 'name', 'Hemanext (United States)'),
(22087, 19298, 'en', 'name', 'New Horizons Community Service Board'),
(22088, 19299, 'pt', 'name', 'Museu Nacional de Arqueologia'),
(22089, 19299, 'en', 'name', 'National Archaeology Museum'),
(22090, 19300, 'no_lang_code', 'name', 'New Jersey Microsystems (United States)'),
(22091, 19301, 'no_lang_code', 'name', 'NRU PrƤzisionstechnologie (Germany)'),
(22092, 19302, 'en', 'name', 'New Jersey Department of Corrections'),
(22093, 19303, 'no_lang_code', 'name', 'New Light Industries (United States)'),
(22094, 19304, 'en', 'name', 'New Mexico Family Network'),
(22095, 19305, 'en', 'name', 'Museum of New Mexico'),
(22096, 19306, 'es', 'name', 'Departamento de NiƱos, Juventud y Familias de Nuevo MƩxico'),
(22097, 19306, 'en', 'name', 'New Mexico Children Youth and Families Department'),
(22098, 19307, 'no_lang_code', 'name', 'Kelme (Spain)'),
(22099, 19308, 'en', 'name', 'New Orleans AIDS Task Force'),
(22100, 19309, 'en', 'name', 'Museums Association'),
(22101, 19310, 'en', 'name', 'Orleans Parish School Board'),
(22102, 19311, 'en', 'name', 'Missouri Area Health Education Center'),
(22103, 19312, 'en', 'name', 'Education Northwest'),
(22104, 19313, 'en', 'name', 'Musicians Union'),
(22105, 19314, 'en', 'name', 'North Carolina Biotechnology Center'),
(22106, 19315, 'en', 'name', 'Middlesex Community College'),
(22107, 19316, 'en', 'name', 'North Carolina Families United'),
(22108, 19317, 'no_lang_code', 'name', 'MIDI (United States)'),
(22109, 19318, 'no_lang_code', 'name', 'MuthƩn & MuthƩn (United States)'),
(22110, 19319, 'en', 'name', 'North Carolina Public Schools'),
(22111, 19320, 'en', 'name', 'North Carolina Wesleyan College'),
(22112, 19321, 'en', 'name', 'North Country Health Consortium'),
(22113, 19322, 'no_lang_code', 'name', 'Nutech Industries (United States)'),
(22114, 19323, 'en', 'name', 'North Dakota Legislative Council'),
(22115, 19324, 'no_lang_code', 'name', 'Midland Valley Exploration (United Kingdom)'),
(22116, 19325, 'no_lang_code', 'name', 'Nuance Communications (Canada)'),
(22117, 19326, 'no_lang_code', 'name', 'Midlands Aerospace Alliance'),
(22118, 19327, 'en', 'name', 'North Hennepin Community College'),
(22119, 19328, 'en', 'name', 'North Seattle College'),
(22120, 19329, 'en', 'name', 'Midlands Technical College'),
(22121, 19330, 'no_lang_code', 'name', 'Nubad (United States)'),
(22122, 19331, 'no_lang_code', 'name', 'Bƶrsenverein des Deutschen Buchhandels (Germany)'),
(22123, 19332, 'en', 'name', 'Nuclear Safety Research Institute'),
(22124, 19332, 'hu', 'name', 'NukleÔris BiztonsÔgi Kutatóintézet'),
(22125, 19333, 'en', 'name', 'Northeast Communities Against Substance Abuse'),
(22126, 19334, 'en', 'name', 'Northeast Document Conservation Center'),
(22127, 19335, 'no_lang_code', 'name', 'Mierij Meteo'),
(22128, 19336, 'en', 'name', 'Northeast Iowa Dairy Foundation'),
(22129, 19337, 'no_lang_code', 'name', 'Northern Digital (Canada)'),
(22130, 19338, 'no_lang_code', 'name', 'Electricity Supply Board (United Kingdom)'),
(22131, 19339, 'en', 'name', 'Nuclear Physics European Collaboration Committee'),
(22132, 19340, 'no_lang_code', 'name', 'Eurofins (Germany)'),
(22133, 19341, 'no_lang_code', 'name', 'OnTo Technology (United States)'),
(22134, 19342, 'no_lang_code', 'name', 'Myasishchev Design Bureau (Russia)'),
(22135, 19343, 'no_lang_code', 'name', 'Onyx Solar (Spain)'),
(22136, 19344, 'en', 'name', 'Nuclear Regulatory Authority of the Slovak Republic'),
(22137, 19345, 'sv', 'name', 'Myndigheten fƶr samhƤllsskydd och beredskap'),
(22138, 19345, 'en', 'name', 'Swedish Civil Contingencies Agency'),
(22139, 19346, 'no_lang_code', 'name', 'Duro Felguera (Spain)'),
(22140, 19347, 'no_lang_code', 'name', 'Opalux (Canada)'),
(22141, 19348, 'pt', 'name', 'NĆŗcleo Interactivo de Astronomia'),
(22142, 19349, 'no_lang_code', 'name', 'Mikron (Germany)'),
(22143, 19350, 'no_lang_code', 'name', 'Vixar (United States)'),
(22144, 19351, 'no_lang_code', 'name', 'N.A.Software (United Kingdom)'),
(22145, 19352, 'no_lang_code', 'name', 'Cisco Systems (Israel)'),
(22146, 19353, 'no_lang_code', 'name', 'Numerical Algorithms Group (United Kingdom)'),
(22147, 19354, 'no_lang_code', 'name', 'Turkish Electro Technology (Turkey)'),
(22148, 19355, 'en', 'name', 'Open Data Institute'),
(22149, 19356, 'no_lang_code', 'name', 'AudioCodes (Israel)'),
(22150, 19357, 'no_lang_code', 'name', 'MIL Corporation (United States)'),
(22151, 19358, 'en', 'name', 'Nassau Alcohol Crime Drug Abatement Coalition'),
(22152, 19359, 'no_lang_code', 'name', 'Milagen (United States)'),
(22153, 19360, 'en', 'name', 'Milford Elementary School'),
(22154, 19361, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Denmark)'),
(22155, 19362, 'no_lang_code', 'name', 'Piaggio (Spain)'),
(22156, 19363, 'no_lang_code', 'name', 'Millab Consult (Norway)'),
(22157, 19364, 'no_lang_code', 'name', 'Naftosol (Greece)'),
(22158, 19365, 'no_lang_code', 'name', 'OPeNDAP'),
(22159, 19366, 'no_lang_code', 'name', 'Opera North (United Kingdom)');
INSERT INTO `ror_settings` VALUES
(22160, 19367, 'no_lang_code', 'name', 'Naneum (United Kingdom)'),
(22161, 19368, 'no_lang_code', 'name', 'Cristal (United Kingdom)'),
(22162, 19369, 'no_lang_code', 'name', 'Nutech (Germany)'),
(22163, 19370, 'no_lang_code', 'name', 'Nano Liquid Devices (United States)'),
(22164, 19371, 'no_lang_code', 'name', 'Nutra Canada (Canada)'),
(22165, 19372, 'no_lang_code', 'name', 'Skretting (Norway)'),
(22166, 19373, 'ro', 'name', 'Opinia'),
(22167, 19374, 'no_lang_code', 'name', 'Millidyne (Finland)'),
(22168, 19375, 'no_lang_code', 'name', 'NanOasis Technologies (United States)'),
(22169, 19376, 'no_lang_code', 'name', 'Nanocerox (United States)'),
(22170, 19377, 'no_lang_code', 'name', 'Nanocopoeia (United States)'),
(22171, 19378, 'no_lang_code', 'name', 'Optech (Canada)'),
(22172, 19379, 'no_lang_code', 'name', 'Nanofiber Solutions (United States)'),
(22173, 19380, 'no_lang_code', 'name', 'OpTek Systems (United Kingdom)'),
(22174, 19381, 'no_lang_code', 'name', 'Nanoforce Technology (United Kingdom)'),
(22175, 19382, 'no_lang_code', 'name', 'Nanogap Sub-NM-Powder (Spain)'),
(22176, 19383, 'no_lang_code', 'name', 'NanoGriptech (United States)'),
(22177, 19384, 'no_lang_code', 'name', 'Nanohmics (United States)'),
(22178, 19385, 'en', 'name', 'NanoImaging Services'),
(22179, 19386, 'no_lang_code', 'name', 'STEAG (Germany)'),
(22180, 19386, 'de', 'name', 'Steinkohlen-ElektrizitƤt'),
(22181, 19387, 'no_lang_code', 'name', 'NanoIntegris (United States)'),
(22182, 19388, 'no_lang_code', 'name', 'KLA (Ireland)'),
(22183, 19389, 'no_lang_code', 'name', 'Nuvation (Canada)'),
(22184, 19390, 'en', 'name', 'Milton Keynes Council'),
(22185, 19391, 'no_lang_code', 'name', 'Nuvera (Italy)'),
(22186, 19392, 'no_lang_code', 'name', 'Opticology (United States)'),
(22187, 19393, 'no_lang_code', 'name', 'Optics Technology (United States)'),
(22188, 19394, 'no_lang_code', 'name', 'Organogenesis (United States)'),
(22189, 19395, 'en', 'name', 'Social Development Commission'),
(22190, 19396, 'en', 'name', 'OpticsValley'),
(22191, 19397, 'no_lang_code', 'name', 'NanoMEMS Research (United States)'),
(22192, 19398, 'en', 'name', 'Milwaukee Public Schools'),
(22193, 19399, 'no_lang_code', 'name', 'OptiEnz Sensors (United States)'),
(22194, 19400, 'no_lang_code', 'name', 'Optima Neuroscience (United States)'),
(22195, 19401, 'en', 'name', 'Nye Communities Coalition'),
(22196, 19402, 'no_lang_code', 'name', 'Nanomotion (Israel)'),
(22197, 19403, 'no_lang_code', 'name', 'Nanonex (United States)'),
(22198, 19404, 'no_lang_code', 'name', 'Nanoparticle BioChem (United States)'),
(22199, 19405, 'no_lang_code', 'name', 'Optimare (Germany)'),
(22200, 19406, 'no_lang_code', 'name', 'NanoPET Pharma (Germany)'),
(22201, 19407, 'fr', 'name', 'NanoQuƩbec (Canada)'),
(22202, 19408, 'no_lang_code', 'name', 'NZI (Spain)'),
(22203, 19409, 'no_lang_code', 'name', 'NanoTecCenter Weiz Forschungsgesellschaft (Austria)'),
(22204, 19410, 'no_lang_code', 'name', 'NanoTechLabs (United States)'),
(22205, 19411, 'no_lang_code', 'name', 'Nzytech (Portugal)'),
(22206, 19412, 'no_lang_code', 'name', 'Nanova Biomaterials (United States)'),
(22207, 19413, 'no_lang_code', 'name', 'O-Ray Pharma (United States)'),
(22208, 19414, 'no_lang_code', 'name', 'Refind (Sweden)'),
(22209, 19415, 'no_lang_code', 'name', 'NanoVir (United States)'),
(22210, 19416, 'no_lang_code', 'name', 'NanoWave (United States)'),
(22211, 19417, 'no_lang_code', 'name', 'Optivision (United States)'),
(22212, 19418, 'no_lang_code', 'name', 'Ocean Atmosphere Systems (Germany)'),
(22213, 19419, 'no_lang_code', 'name', 'Optiwave Systems (Canada)'),
(22214, 19420, 'no_lang_code', 'name', 'O.D. 260 (United States)'),
(22215, 19421, 'no_lang_code', 'name', 'Napper Architects (United Kingdom)'),
(22216, 19422, 'no_lang_code', 'name', 'Offshore Monitoring (Cyprus)'),
(22217, 19423, 'no_lang_code', 'name', 'Optocap (United Kingdom)'),
(22218, 19424, 'no_lang_code', 'name', 'Optomec (United States)'),
(22219, 19425, 'en', 'name', 'Natural Procreative Technology'),
(22220, 19426, 'no_lang_code', 'name', 'Optomesures (France)'),
(22221, 19427, 'no_lang_code', 'name', 'Narco Freedom (United States)'),
(22222, 19428, 'en', 'name', 'National Health Information Center'),
(22223, 19428, 'sk', 'name', 'NƔrodnƩ Centrum Zdravotnƭckych InformƔciƭ'),
(22224, 19429, 'no_lang_code', 'name', 'OptoNet (United States)'),
(22225, 19430, 'no_lang_code', 'name', 'OptoSci (United Kingdom)'),
(22226, 19431, 'no_lang_code', 'name', 'Optoscribe (United Kingdom)'),
(22227, 19432, 'no_lang_code', 'name', 'Optotek (Slovenia)'),
(22228, 19433, 'no_lang_code', 'name', 'Telefónica (United Kingdom)'),
(22229, 19434, 'no_lang_code', 'name', 'Nasfine Photonics (United States)'),
(22230, 19435, 'en', 'name', 'Nashua School District'),
(22231, 19436, 'no_lang_code', 'name', 'Manpower Employment Organisation'),
(22232, 19437, 'en', 'name', 'Nasson College'),
(22233, 19438, 'no_lang_code', 'name', 'Optrak (United Kingdom)'),
(22234, 19439, 'en', 'name', 'National Council for Voluntary Organisations'),
(22235, 19440, 'en', 'name', 'Oakland Family Services'),
(22236, 19441, 'no_lang_code', 'name', 'OAS (Germany)'),
(22237, 19442, 'no_lang_code', 'name', 'Obducat (Sweden)'),
(22238, 19443, 'no_lang_code', 'name', 'Optronics Technologies (Greece)'),
(22239, 19444, 'no_lang_code', 'name', 'OptTek Systems (United States)'),
(22240, 19445, 'no_lang_code', 'name', 'ObjectSecurity (United Kingdom)'),
(22241, 19446, 'no_lang_code', 'name', 'Oracle (Belgium)'),
(22242, 19447, 'en', 'name', 'European Social Observatory'),
(22243, 19448, 'no_lang_code', 'name', 'Oerlikon (Liechtenstein)'),
(22244, 19449, 'en', 'name', 'Indspire'),
(22245, 19450, 'en', 'name', 'Ocean County College'),
(22246, 19451, 'no_lang_code', 'name', 'Oracle (Germany)'),
(22247, 19452, 'en', 'name', 'Ocean Discovery Institute'),
(22248, 19453, 'no_lang_code', 'name', 'Oragenics (United States)'),
(22249, 19454, 'en', 'name', 'Slovak Business Agency'),
(22250, 19455, 'en', 'name', 'Orange Coast College'),
(22251, 19456, 'en', 'name', 'Orange County Board of Commissioners'),
(22252, 19457, 'en', 'name', 'National Aids Education and Services for Minorities'),
(22253, 19458, 'no_lang_code', 'name', 'Orbital Biosciences (United States)'),
(22254, 19459, 'en', 'name', 'National Alliance for Partnerships in Equity'),
(22255, 19460, 'en', 'name', 'Ministry of Education, Science and Technological Development'),
(22256, 19461, 'en', 'name', 'National Alliance for Medication Assisted Recovery'),
(22257, 19462, 'no_lang_code', 'name', 'Ordecsys (Switzerland)'),
(22258, 19463, 'hr', 'name', 'Ministarstvo Prosvjete'),
(22259, 19463, 'en', 'name', 'Ministry of Education'),
(22260, 19464, 'en', 'name', 'Ministry of Agriculture'),
(22261, 19464, 'ar', 'name', 'وزارة الفلاحة'),
(22262, 19465, 'fr', 'name', 'MinistĆØre de l’Éducation nationale, de l’Enfance et de la Jeunesse'),
(22263, 19466, 'en', 'name', 'Oregon Coast Community College'),
(22264, 19467, 'en', 'name', 'Oregon Public Broadcasting'),
(22265, 19468, 'no_lang_code', 'name', 'O.N. Diagnostics (United States)'),
(22266, 19469, 'no_lang_code', 'name', 'Safran (Germany)'),
(22267, 19470, 'en', 'name', 'Ministry of Culture'),
(22268, 19470, 'fr', 'name', 'MinistĆØre de la Culture'),
(22269, 19471, 'en', 'name', 'Oceanites'),
(22270, 19472, 'no_lang_code', 'name', 'OceanWaveS (Germany)'),
(22271, 19473, 'en', 'name', 'Organisation for International Dialogue and Conflict Management'),
(22272, 19474, 'no_lang_code', 'name', 'OceanWorks International (Canada)'),
(22273, 19475, 'no_lang_code', 'name', 'Petroleum of Venezuela (Venezuela)'),
(22274, 19475, 'es', 'name', 'Petróleos de Venezuela'),
(22275, 19476, 'en', 'name', 'Peabody'),
(22276, 19477, 'no_lang_code', 'name', 'Organovo (United States)'),
(22277, 19478, 'en', 'name', 'Octavia Housing'),
(22278, 19479, 'no_lang_code', 'name', 'Acentia (United States)'),
(22279, 19480, 'no_lang_code', 'name', 'Schumacher Orgelbau (Belgium)'),
(22280, 19481, 'no_lang_code', 'name', 'Peacocks Medical Group (United Kingdom)'),
(22281, 19482, 'no_lang_code', 'name', 'Pearlhill Technologies (United States)'),
(22282, 19483, 'da', 'name', 'A.P. MĆøller–MƦrsk A/S'),
(22283, 19483, 'no_lang_code', 'name', 'Maersk (Denmark)'),
(22284, 19484, 'no_lang_code', 'name', 'Orla Protein Technologies (United Kingdom)'),
(22285, 19485, 'no_lang_code', 'name', 'Oros (France)'),
(22286, 19486, 'da', 'name', 'Syddansk Erhvervsskole'),
(22287, 19487, 'no_lang_code', 'name', 'ORT Israel'),
(22288, 19488, 'no_lang_code', 'name', 'Orthogonal (United States)'),
(22289, 19489, 'en', 'name', 'Odyssey House Louisiana'),
(22290, 19490, 'no_lang_code', 'name', 'Orthox (United Kingdom)'),
(22291, 19491, 'en', 'name', 'Odyssey House'),
(22292, 19492, 'no_lang_code', 'name', 'Oryzon Genomics (Spain)'),
(22293, 19493, 'en', 'name', 'Osborne Association'),
(22294, 19494, 'pt', 'name', 'Hospital Braga'),
(22295, 19494, 'es', 'name', 'Hospital de Braga'),
(22296, 19495, 'fr', 'name', 'MinistĆØre de l''Enseignement Superieur et de la Recherche'),
(22297, 19496, 'no_lang_code', 'name', 'Mincon (Ireland)'),
(22298, 19497, 'no_lang_code', 'name', 'NanoPhos (Greece)'),
(22299, 19498, 'en', 'name', 'Orkney Fisheries Association'),
(22300, 19499, 'no_lang_code', 'name', 'ORME (France)'),
(22301, 19500, 'no_lang_code', 'name', 'Osiris Therapeutics (United States)'),
(22302, 19501, 'en', 'name', 'National Asian Pacific American Families Against Substance Abuse'),
(22303, 19502, 'no_lang_code', 'name', 'Oelheld (Germany)'),
(22304, 19503, 'en', 'name', 'National Association of Local Boards of Health'),
(22305, 19504, 'no_lang_code', 'name', 'Canadian Malartic (Canada)'),
(22306, 19505, 'en', 'name', 'National Association of State Departments of Agriculture'),
(22307, 19506, 'en', 'name', 'National Association of EMS Physicians'),
(22308, 19507, 'no_lang_code', 'name', 'OSM DAN (Israel)'),
(22309, 19507, 'he', 'name', 'או.אה.אמ. - דן בע"מ'),
(22310, 19508, 'en', 'name', 'National Association of Research and Educational e-Infrastructures'),
(22311, 19509, 'no_lang_code', 'name', 'Ossidian Technologies (Ireland)'),
(22312, 19510, 'en', 'name', 'Office of Naval Research'),
(22313, 19511, 'no_lang_code', 'name', 'Pedro Roquet (Spain)'),
(22314, 19512, 'no_lang_code', 'name', 'OsteoGeneX (United States)'),
(22315, 19513, 'en', 'name', 'National Authority for Remote Sensing and Space Sciences'),
(22316, 19514, 'en', 'name', 'Office of Rail Regulation'),
(22317, 19515, 'no_lang_code', 'name', 'Verbund (Austria)'),
(22318, 19516, 'en', 'name', 'Peer Services'),
(22319, 19517, 'en', 'name', 'Office of Science & Technology Austria'),
(22320, 19518, 'no_lang_code', 'name', 'National Bank of Greece (Greece)'),
(22321, 19518, 'el', 'name', 'Εθνική Τράπεζα της ΕλλάΓος'),
(22322, 19519, 'no_lang_code', 'name', 'Office Public d''Aménagement et de Construction de l''Isère (France)'),
(22323, 19520, 'en', 'name', 'Regional Energy Agency of Crete'),
(22324, 19521, 'no_lang_code', 'name', 'Pellet Productions (United States)'),
(22325, 19522, 'no_lang_code', 'name', 'Otoconsult (Belgium)'),
(22326, 19523, 'ro', 'name', 'Institutul Naţional de Cercetare-Dezvoltare in Construcţii Urbanism şi Dezvoltare Teritorială Durabilă'),
(22327, 19523, 'en', 'name', 'National Institute for Research and Development in Construction, Urban Planning and Sustainable Spatial Development'),
(22328, 19524, 'en', 'name', 'National Alliance of Healthcare Purchaser Coalitions'),
(22329, 19525, 'no_lang_code', 'name', 'Polysolar (United Kingdom)'),
(22330, 19526, 'en', 'name', 'Invest Canada'),
(22331, 19527, 'en', 'name', 'Pennsylvania Coalition Against Rape'),
(22332, 19528, 'en', 'name', 'Pennsylvania Institute of Technology'),
(22333, 19529, 'no_lang_code', 'name', 'Eliko Tehnoloogia Arenduskeskus'),
(22334, 19530, 'no_lang_code', 'name', 'Polytronix (United States)'),
(22335, 19531, 'no_lang_code', 'name', 'Pensoft Publishers (Bulgaria)'),
(22336, 19532, 'et', 'name', 'Miksike'),
(22337, 19533, 'no_lang_code', 'name', 'People Designs (United States)'),
(22338, 19534, 'no_lang_code', 'name', 'Pontydysgu'),
(22339, 19535, 'no_lang_code', 'name', 'Population and Social Policy Consultants'),
(22340, 19536, 'no_lang_code', 'name', 'Quretec (Estonia)'),
(22341, 19537, 'no_lang_code', 'name', 'Optical Fiber Solutions (Denmark)'),
(22342, 19538, 'no_lang_code', 'name', 'Ogenx Therapeutics (United States)'),
(22343, 19539, 'en', 'name', 'Ounce of Prevention Fund'),
(22344, 19540, 'no_lang_code', 'name', 'Embraer (Portugal)'),
(22345, 19541, 'no_lang_code', 'name', 'Peppermint (Germany)'),
(22346, 19542, 'no_lang_code', 'name', 'OHB (Germany)'),
(22347, 19543, 'en', 'name', 'Mikocheni Agricultural Research Institute'),
(22348, 19544, 'no_lang_code', 'name', 'Outotec (Finland)'),
(22349, 19545, 'en', 'name', 'National Community Health Partners'),
(22350, 19546, 'en', 'name', 'National Communication Association'),
(22351, 19547, 'en', 'name', 'Ohio County Together We Care Coalition'),
(22352, 19548, 'en', 'name', 'National Composites Centre'),
(22353, 19549, 'no_lang_code', 'name', 'Peptides International (United States)'),
(22354, 19550, 'no_lang_code', 'name', 'National Computing Centre (United Kingdom)'),
(22355, 19551, 'no_lang_code', 'name', 'Immune Regulation (United Kingdom)'),
(22356, 19552, 'no_lang_code', 'name', 'CJR Propulsion (United Kingdom)'),
(22357, 19553, 'en', 'name', 'Port Gamble S''Klallam Tribal Council'),
(22358, 19554, 'en', 'name', 'Ohio Domestic Violence Network'),
(22359, 19555, 'no_lang_code', 'name', 'Ohmatex (Denmark)'),
(22360, 19556, 'en', 'name', 'Portbase'),
(22361, 19557, 'en', 'name', 'National Consumers League'),
(22362, 19558, 'no_lang_code', 'name', 'Oval Window Audio (United States)'),
(22363, 19559, 'en', 'name', 'National Council for Geographic Education'),
(22364, 19560, 'no_lang_code', 'name', 'EduHintOVD (Netherlands)'),
(22365, 19561, 'no_lang_code', 'name', 'Peraso Technologies (Canada)'),
(22366, 19562, 'no_lang_code', 'name', 'Offshore Installation Services (United Kingdom)'),
(22367, 19563, 'no_lang_code', 'name', 'OJ-Bio (United Kingdom)'),
(22368, 19564, 'en', 'name', 'National Counter Terrorism Security Office'),
(22369, 19565, 'en', 'name', 'Okanagan Science Centre'),
(22370, 19566, 'en', 'name', 'National Down Syndrome Society'),
(22371, 19567, 'en', 'name', 'Okayama Ceramics Research Foundation'),
(22372, 19567, 'ja', 'name', 'å²”å±±ć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(22373, 19568, 'en', 'name', 'Oklahoma City Community College'),
(22374, 19569, 'no_lang_code', 'name', 'Applied Science Laboratories (United States)'),
(22375, 19570, 'no_lang_code', 'name', 'Perceptive Engineering (United Kingdom)'),
(22376, 19571, 'en', 'name', 'National Economists Club'),
(22377, 19572, 'en', 'name', 'Oklahoma Department of Agriculture Food and Forestry'),
(22378, 19573, 'en', 'name', 'National Energy Research Center'),
(22379, 19574, 'no_lang_code', 'name', 'Mondragon Corporation (Germany)'),
(22380, 19575, 'no_lang_code', 'name', 'Oktal (France)'),
(22381, 19576, 'no_lang_code', 'name', 'Pretexo (France)'),
(22382, 19577, 'no_lang_code', 'name', 'Overspeed (Germany)'),
(22383, 19578, 'en', 'name', 'OW2 Consortium'),
(22384, 19579, 'en', 'name', 'Olathe Public Schools'),
(22385, 19580, 'no_lang_code', 'name', 'Positron Systems (United States)'),
(22386, 19581, 'en', 'name', 'Post and Telecom Administration'),
(22387, 19581, 'is', 'name', 'Póst og Fjarskiptastofnun'),
(22388, 19582, 'no_lang_code', 'name', 'Poste Italiane (Italy)'),
(22389, 19583, 'no_lang_code', 'name', 'Performance Communications'),
(22390, 19584, 'no_lang_code', 'name', 'Oliver Crispin Robotics (United Kingdom)'),
(22391, 19585, 'no_lang_code', 'name', 'Oxfam'),
(22392, 19586, 'no_lang_code', 'name', 'Prevas (Norway)'),
(22393, 19587, 'no_lang_code', 'name', 'Oxford BioMedica (United Kingdom)'),
(22394, 19588, 'no_lang_code', 'name', 'PostScriptum (Greece)'),
(22395, 19589, 'en', 'name', 'Oxford City Council'),
(22396, 19590, 'no_lang_code', 'name', 'Pericle Communications (United States)'),
(22397, 19591, 'en', 'name', 'Prevent of Brevard'),
(22398, 19592, 'en', 'name', 'Prevention Connections'),
(22399, 19593, 'en', 'name', 'Prevention Links'),
(22400, 19594, 'no_lang_code', 'name', 'Oltis Group (Czechia)'),
(22401, 19595, 'no_lang_code', 'name', 'Socotec (France)'),
(22402, 19596, 'no_lang_code', 'name', 'PricewaterhouseCoopers (Netherlands)'),
(22403, 19597, 'en', 'name', 'Olympic Athletic Center of Athens "Spiros Louis"'),
(22404, 19598, 'no_lang_code', 'name', 'Hedgeye (United States)'),
(22405, 19599, 'en', 'name', 'Omaha Nation Community Response Team'),
(22406, 19600, 'en', 'name', 'Primary Care Development Corporation'),
(22407, 19601, 'no_lang_code', 'name', 'Omax (United States)'),
(22408, 19602, 'no_lang_code', 'name', 'OXGENE (United Kingdom)'),
(22409, 19603, 'no_lang_code', 'name', 'Permanova Lasersystem (Sweden)'),
(22410, 19604, 'no_lang_code', 'name', 'SQW Group (United Kingdom)'),
(22411, 19605, 'no_lang_code', 'name', 'Oxford Intelligent Machines (United Kingdom)'),
(22412, 19606, 'no_lang_code', 'name', 'JDA Software (Canada)'),
(22413, 19607, 'fr', 'name', 'Pour la SolidaritƩ'),
(22414, 19608, 'no_lang_code', 'name', 'Perseus (Belgium)'),
(22415, 19609, 'no_lang_code', 'name', 'Personal Space Technologies (Netherlands)'),
(22416, 19610, 'no_lang_code', 'name', 'Oxford Metrics (United Kingdom)'),
(22417, 19611, 'no_lang_code', 'name', 'Oxford Nanopore Technologies (United Kingdom)'),
(22418, 19612, 'no_lang_code', 'name', 'Omgatech (Italy)'),
(22419, 19613, 'no_lang_code', 'name', 'Oxford NanoSystems (United Kingdom)'),
(22420, 19614, 'no_lang_code', 'name', 'Pervatech (Netherlands)'),
(22421, 19615, 'no_lang_code', 'name', 'Oxford Technologies (United Kingdom)'),
(22422, 19616, 'no_lang_code', 'name', 'Omm Scientific (United States)'),
(22423, 19617, 'no_lang_code', 'name', 'Oxis Energy (United Kingdom)'),
(22424, 19618, 'no_lang_code', 'name', 'Touchstone Exploration (Canada)'),
(22425, 19619, 'no_lang_code', 'name', 'Oxitec (United Kingdom)'),
(22426, 19620, 'no_lang_code', 'name', 'Ommic (France)'),
(22427, 19621, 'no_lang_code', 'name', 'Prime Photonics (United States)'),
(22428, 19622, 'no_lang_code', 'name', 'Oxsensis (United Kingdom)'),
(22429, 19623, 'no_lang_code', 'name', 'Oxyrase (United States)'),
(22430, 19624, 'no_lang_code', 'name', 'Polska Grupa Energetyczna (Poland)'),
(22431, 19625, 'no_lang_code', 'name', 'Petroleum Helicopters International (United States)'),
(22432, 19626, 'no_lang_code', 'name', 'OmniActive Health Technologies (Canada)'),
(22433, 19627, 'no_lang_code', 'name', 'Premix (Finland)'),
(22434, 19628, 'no_lang_code', 'name', 'OyaGen (United States)'),
(22435, 19629, 'no_lang_code', 'name', 'Pfaff Industriemaschinen (Germany)'),
(22436, 19630, 'no_lang_code', 'name', 'OZ Biosciences (France)'),
(22437, 19631, 'no_lang_code', 'name', 'OZ Optics (Canada)'),
(22438, 19632, 'no_lang_code', 'name', 'OmniGuide (United States)'),
(22439, 19633, 'no_lang_code', 'name', 'Teledyne Princeton Instruments (United States)'),
(22440, 19634, 'no_lang_code', 'name', 'Powerline Technologies (United Kingdom)'),
(22441, 19635, 'no_lang_code', 'name', 'Omnisense (United Kingdom)'),
(22442, 19636, 'no_lang_code', 'name', 'Principia Ingenieros Consultores'),
(22443, 19637, 'no_lang_code', 'name', 'Omtaş (Turkey)'),
(22444, 19638, 'no_lang_code', 'name', 'Pflegewerk (Germany)'),
(22445, 19639, 'no_lang_code', 'name', 'PA Consulting Group'),
(22446, 19640, 'no_lang_code', 'name', 'Printed Electronics (United Kingdom)'),
(22447, 19641, 'no_lang_code', 'name', 'On Our Own of Maryland (United States)'),
(22448, 19642, 'no_lang_code', 'name', 'OncoMark (Ireland)'),
(22449, 19643, 'no_lang_code', 'name', 'Sensap (Greece)'),
(22450, 19644, 'no_lang_code', 'name', 'Predict (France)'),
(22451, 19645, 'en', 'name', 'Pennsylvania Department of Drug and Alcohol Programs'),
(22452, 19646, 'no_lang_code', 'name', 'pH Matter (United States)'),
(22453, 19647, 'en', 'name', 'Practical Action'),
(22454, 19648, 'no_lang_code', 'name', 'Oncovir (United States)'),
(22455, 19649, 'no_lang_code', 'name', 'Pacbrake (Canada)'),
(22456, 19650, 'no_lang_code', 'name', 'Praevium Research (United States)'),
(22457, 19651, 'no_lang_code', 'name', 'Adlink (United Kingdom)'),
(22458, 19652, 'no_lang_code', 'name', 'PragmatIC (United Kingdom)'),
(22459, 19653, 'no_lang_code', 'name', 'Pacific Biomarkers (United States)'),
(22460, 19654, 'no_lang_code', 'name', 'Ecolyse (United States)'),
(22461, 19655, 'en', 'name', 'Pacific Environment'),
(22462, 19656, 'en', 'name', 'College Medical Center'),
(22463, 19657, 'fr', 'name', 'Bureau du Conseil privƩ'),
(22464, 19657, 'en', 'name', 'Privy Council Office'),
(22465, 19658, 'no_lang_code', 'name', 'Pacific Insight Electronics (Canada)'),
(22466, 19659, 'no_lang_code', 'name', 'Pro Optica (Romania)'),
(22467, 19660, 'en', 'name', 'Pacific Union College'),
(22468, 19661, 'no_lang_code', 'name', 'Octane Wireless (United States)'),
(22469, 19662, 'no_lang_code', 'name', 'PageFlip (United States)'),
(22470, 19663, 'no_lang_code', 'name', 'Hungarian Electricity Private (Hungary)'),
(22471, 19664, 'en', 'name', 'Palestinian Energy and Environment Research Center'),
(22472, 19665, 'no_lang_code', 'name', 'Probetex (United States)'),
(22473, 19666, 'en', 'name', 'Palestinian Hydrology Group'),
(22474, 19666, 'ar', 'name', 'Ł…Ų¬Ł…ŁˆŲ¹Ų© Ų§Ł„Ł‡ŁŠŲÆŲ±ŁˆŁ„ŁˆŲ¬ŁŠŁŠŁ† Ų§Ł„ŁŁ„Ų³Ų·ŁŠŁ†ŁŠŁŠŁ†'),
(22475, 19667, 'no_lang_code', 'name', 'Pallas (Germany)'),
(22476, 19668, 'no_lang_code', 'name', 'Helix Biopharma (Canada)'),
(22477, 19669, 'no_lang_code', 'name', 'Porifera (United States)'),
(22478, 19670, 'no_lang_code', 'name', 'Onefive (Switzerland)'),
(22479, 19671, 'no_lang_code', 'name', 'PalmSens (Netherlands)'),
(22480, 19672, 'no_lang_code', 'name', 'Onteca (United Kingdom)'),
(22481, 19673, 'no_lang_code', 'name', 'ProBiotix (United States)'),
(22482, 19674, 'no_lang_code', 'name', 'Pharmaplant (Germany)'),
(22483, 19675, 'no_lang_code', 'name', 'Procarta Biosystems (United Kingdom)'),
(22484, 19676, 'no_lang_code', 'name', 'Pre Chasm Research Limited (United Kingdom)'),
(22485, 19677, 'no_lang_code', 'name', 'PharmaReview Corporation'),
(22486, 19678, 'no_lang_code', 'name', 'Proceed (United States)'),
(22487, 19679, 'en', 'name', 'Palo Alto Institute'),
(22488, 19680, 'no_lang_code', 'name', 'ProCertus BioPharm (United States)'),
(22489, 19681, 'no_lang_code', 'name', 'Precision BioLogic (Canada)'),
(22490, 19682, 'en', 'name', 'Palomar College'),
(22491, 19683, 'no_lang_code', 'name', 'Procoat Tecnologias (Spain)'),
(22492, 19684, 'no_lang_code', 'name', 'TE Connectivity (United States)'),
(22493, 19685, 'no_lang_code', 'name', 'ProControl (Italy)'),
(22494, 19686, 'no_lang_code', 'name', 'PaneraTech (United States)'),
(22495, 19687, 'no_lang_code', 'name', 'Procter & Gamble (Switzerland)'),
(22496, 19688, 'no_lang_code', 'name', 'Procter & Gamble (Italy)'),
(22497, 19689, 'no_lang_code', 'name', 'Pharos International (Belgium)'),
(22498, 19690, 'no_lang_code', 'name', 'Grupo Panorama (Spain)'),
(22499, 19691, 'no_lang_code', 'name', 'Product Innovation and Engineering (United States)'),
(22500, 19692, 'no_lang_code', 'name', 'Avaya (Israel)'),
(22501, 19693, 'no_lang_code', 'name', 'Precision Research (United States)'),
(22502, 19694, 'no_lang_code', 'name', 'RAFT Solutions (United Kingdom)'),
(22503, 19695, 'no_lang_code', 'name', 'PFP Cybersecurity (United States)'),
(22504, 19696, 'en', 'name', 'State Agency for the Prevention of Alcohol Related Problems'),
(22505, 19697, 'no_lang_code', 'name', 'Rainbow Photonics (Switzerland)'),
(22506, 19698, 'no_lang_code', 'name', 'PhaseBio Pharmaceuticals (United States)'),
(22507, 19699, 'en', 'name', 'National Archives of Estonia'),
(22508, 19699, 'et', 'name', 'Rahvusarhiiv'),
(22509, 19700, 'no_lang_code', 'name', 'Phase Motion Control (Italy)'),
(22510, 19701, 'no_lang_code', 'name', 'PhaseSpace (United Kingdom)'),
(22511, 19702, 'no_lang_code', 'name', 'Raisio (Finland)'),
(22512, 19703, 'pt', 'name', 'Raiz - Instituto De Investigação Da Floresta E Papel'),
(22513, 19704, 'no_lang_code', 'name', 'Paques (Netherlands)'),
(22514, 19705, 'no_lang_code', 'name', 'Phasex (United States)'),
(22515, 19706, 'no_lang_code', 'name', 'Ramboll (Denmark)'),
(22516, 19707, 'no_lang_code', 'name', 'Produtec (Germany)'),
(22517, 19708, 'no_lang_code', 'name', 'PCAS (France)'),
(22518, 19709, 'no_lang_code', 'name', 'Prodyne (United States)'),
(22519, 19710, 'no_lang_code', 'name', 'Parabon Computation (United States)'),
(22520, 19711, 'no_lang_code', 'name', 'PhenoSystems (Belgium)'),
(22521, 19712, 'en', 'name', 'Phi Theta Kappa Honor Society'),
(22522, 19713, 'no_lang_code', 'name', 'Ramon.Space (Israel)'),
(22523, 19714, 'no_lang_code', 'name', 'Power Curbers (United States)'),
(22524, 19715, 'no_lang_code', 'name', 'PHIMECA (France)'),
(22525, 19716, 'no_lang_code', 'name', 'Paradigm Pharmaceuticals (United States)'),
(22526, 19717, 'no_lang_code', 'name', 'Phil Jones Associates (United Kingdom)'),
(22527, 19718, 'no_lang_code', 'name', 'PSA (United States)'),
(22528, 19719, 'no_lang_code', 'name', 'Predictek (United States)'),
(22529, 19720, 'en', 'name', 'Professional Engineers Ontario'),
(22530, 19721, 'no_lang_code', 'name', 'Profile Associates (United States)'),
(22531, 19722, 'en', 'name', 'Department of Behavioral Health and Intellectual Disability Services'),
(22532, 19723, 'no_lang_code', 'name', 'Belit (Serbia)'),
(22533, 19724, 'no_lang_code', 'name', 'Parallel Consulting (United States)'),
(22534, 19725, 'en', 'name', 'Presbyterian Medical Services'),
(22535, 19726, 'en', 'name', 'Presbyterian St. Luke''s Medical Center'),
(22536, 19727, 'no_lang_code', 'name', 'Profusa (United States)'),
(22537, 19728, 'en', 'name', 'Maine School Administrative District 1'),
(22538, 19729, 'no_lang_code', 'name', 'Glintt (Portugal)'),
(22539, 19730, 'en', 'name', 'Philippine Educational Theater Association'),
(22540, 19731, 'no_lang_code', 'name', 'Paraytec (United Kingdom)'),
(22541, 19732, 'no_lang_code', 'name', 'Resoltech (France)'),
(22542, 19733, 'no_lang_code', 'name', 'Pemu (Hungary)'),
(22543, 19734, 'no_lang_code', 'name', 'Rangen (United States)'),
(22544, 19735, 'no_lang_code', 'name', 'Resonant Sensors (United States)'),
(22545, 19736, 'no_lang_code', 'name', 'Progis Software (Austria)'),
(22546, 19737, 'en', 'name', 'Parent Project Muscular Dystrophy'),
(22547, 19738, 'no_lang_code', 'name', 'Resonon (United States)'),
(22548, 19739, 'no_lang_code', 'name', 'Xerox (United Kingdom)'),
(22549, 19740, 'no_lang_code', 'name', 'Philips (Spain)'),
(22550, 19741, 'en', 'name', 'Ranken Technical College'),
(22551, 19742, 'no_lang_code', 'name', 'Progress Printing (United States)'),
(22552, 19743, 'no_lang_code', 'name', 'Progressive Energy (United Kingdom)'),
(22553, 19744, 'no_lang_code', 'name', 'Resource (United States)'),
(22554, 19745, 'en', 'name', 'Progressive Life Center'),
(22555, 19746, 'en', 'name', 'Ohio Development Services Agency'),
(22556, 19747, 'en', 'name', 'Parent Support Network of Rhode Island'),
(22557, 19748, 'no_lang_code', 'name', 'Phoebus Optoelectronics (United States)'),
(22558, 19749, 'no_lang_code', 'name', 'Rapanelli Fioravante (Italy)'),
(22559, 19750, 'en', 'name', 'Parent/Professional Advocacy League'),
(22560, 19751, 'en', 'name', 'Responsive Centers For Psychology & Learning'),
(22561, 19752, 'no_lang_code', 'name', 'Rapp (Switzerland)'),
(22562, 19753, 'no_lang_code', 'name', 'Rapport (United States)'),
(22563, 19754, 'no_lang_code', 'name', 'RetroVirox (United States)'),
(22564, 19755, 'no_lang_code', 'name', 'Northrop Grumman (Norway)'),
(22565, 19756, 'no_lang_code', 'name', 'Rational Biotechnology (United States)'),
(22566, 19757, 'fr', 'name', 'RƩunion des musƩes nationaux Grand Palais'),
(22567, 19758, 'no_lang_code', 'name', 'Phoenix Contact (Germany)'),
(22568, 19759, 'no_lang_code', 'name', 'Systems, Applications & Products in Data Processing (Switzerland)'),
(22569, 19760, 'en', 'name', 'Phoenix Programs'),
(22570, 19761, 'no_lang_code', 'name', 'Parker Hannifin (United Kingdom)'),
(22571, 19762, 'no_lang_code', 'name', 'ProImmune (United Kingdom)'),
(22572, 19763, 'no_lang_code', 'name', 'Phoenix Scientific Industries (United Kingdom)'),
(22573, 19764, 'en', 'name', 'Project Oceanology'),
(22574, 19765, 'no_lang_code', 'name', 'SNL (Sweden)'),
(22575, 19766, 'no_lang_code', 'name', 'Projection Plasma SystĆØme (France)'),
(22576, 19767, 'no_lang_code', 'name', 'Phoenix Systems (United States)'),
(22577, 19768, 'no_lang_code', 'name', 'RH Lyon (United States)'),
(22578, 19769, 'en', 'name', 'Parmenides Foundation'),
(22579, 19770, 'no_lang_code', 'name', 'Phoenix Technologies (Canada)'),
(22580, 19771, 'no_lang_code', 'name', 'Pars Makina (Turkey)'),
(22581, 19772, 'no_lang_code', 'name', 'Cicor (Germany)'),
(22582, 19773, 'en', 'name', 'Projects in Motion'),
(22583, 19774, 'en', 'name', 'RWI – Leibniz Institute for Economic Research'),
(22584, 19774, 'de', 'name', 'RWI – Leibniz-Institut für Wirtschaftsforschung'),
(22585, 19775, 'no_lang_code', 'name', 'Raymor (Canada)'),
(22586, 19776, 'no_lang_code', 'name', 'Rheinmetall (Germany)'),
(22587, 19777, 'de', 'name', 'PROJEKTkompetenz'),
(22588, 19778, 'no_lang_code', 'name', 'RheoSense (United States)'),
(22589, 19779, 'no_lang_code', 'name', 'Raytek (Germany)'),
(22590, 19780, 'no_lang_code', 'name', 'Gilead Sciences (Canada)'),
(22591, 19781, 'en', 'name', 'Rhode Island Coalition Against Domestic Violence'),
(22592, 19782, 'en', 'name', 'Rhode Island League of Cities and Towns'),
(22593, 19783, 'no_lang_code', 'name', 'ELFE Group (Greece)'),
(22594, 19783, 'el', 'name', 'Ελληνικά Ī›Ī¹Ļ€Ī¬ĻƒĪ¼Ī±Ļ„Ī± και Χημικά'),
(22595, 19784, 'no_lang_code', 'name', 'Couniniotis Group (Greece)'),
(22596, 19785, 'no_lang_code', 'name', 'ProAmpac (Canada)'),
(22597, 19786, 'en', 'name', 'Royal Commission on the Ancient and Historical Monuments of Wales'),
(22598, 19787, 'no_lang_code', 'name', 'R-Biopharm (United Kingdom)'),
(22599, 19788, 'no_lang_code', 'name', 'Prolog Development Center'),
(22600, 19789, 'no_lang_code', 'name', 'RDM Group (United Kingdom)'),
(22601, 19790, 'no_lang_code', 'name', 'Prologia (France)'),
(22602, 19791, 'en', 'name', 'Partnership for Food Safety Education'),
(22603, 19792, 'no_lang_code', 'name', 'Prolon Control Systems (Denmark)'),
(22604, 19793, 'en', 'name', 'Partnership for Prevention'),
(22605, 19794, 'no_lang_code', 'name', 'RE Hydrogen (United Kingdom)'),
(22606, 19795, 'no_lang_code', 'name', 'PhotoBiotics (United Kingdom)'),
(22607, 19796, 'no_lang_code', 'name', 'Reach Technologies (Canada)'),
(22608, 19797, 'no_lang_code', 'name', 'Reaction Engines (United Kingdom)'),
(22609, 19798, 'no_lang_code', 'name', 'Promau Engineering (Italy)'),
(22610, 19799, 'no_lang_code', 'name', 'Prometheus Biosciences (United States)'),
(22611, 19800, 'en', 'name', 'Reading Borough Council'),
(22612, 19801, 'en', 'name', 'Dynastee'),
(22613, 19802, 'no_lang_code', 'name', 'Photometrics (United States)'),
(22614, 19803, 'no_lang_code', 'name', 'Photon Design (United Kingdom)'),
(22615, 19804, 'no_lang_code', 'name', 'PassivSystems (United Kingdom)'),
(22616, 19805, 'no_lang_code', 'name', 'Prometni institut Ljubljana'),
(22617, 19806, 'no_lang_code', 'name', 'PathoFinder (Netherlands)'),
(22618, 19807, 'no_lang_code', 'name', 'NSK (United Kingdom)'),
(22619, 19808, 'no_lang_code', 'name', 'Prism Informatics (Italy)'),
(22620, 19809, 'en', 'name', 'Philadelphia Education Fund'),
(22621, 19810, 'en', 'name', 'Pathways to Housing'),
(22622, 19811, 'no_lang_code', 'name', 'Valacta (Canada)'),
(22623, 19812, 'no_lang_code', 'name', 'Ribocon (Germany)'),
(22624, 19813, 'en', 'name', 'PAU Education'),
(22625, 19814, 'no_lang_code', 'name', 'Infor (United States)'),
(22626, 19815, 'no_lang_code', 'name', 'Rizzo International (United States)'),
(22627, 19816, 'no_lang_code', 'name', 'Photonic Knowledge (Canada)'),
(22628, 19817, 'nl', 'name', 'Promotie Binnenvaart Vlaanderen'),
(22629, 19817, 'en', 'name', 'Promotion Office for Inland Navigation in Flanders'),
(22630, 19818, 'no_lang_code', 'name', 'Brookes Publishing (United States)'),
(22631, 19819, 'no_lang_code', 'name', 'Photonic Science (United Kingdom)'),
(22632, 19820, 'en', 'name', 'Paul Watkiss Associates'),
(22633, 19821, 'no_lang_code', 'name', 'Pavemetrics Systems (Canada)'),
(22634, 19822, 'no_lang_code', 'name', 'Photonics Bretagne (France)'),
(22635, 19823, 'no_lang_code', 'name', 'Railinfratrust (Netherlands)'),
(22636, 19824, 'no_lang_code', 'name', 'Reagecon (Ireland)'),
(22637, 19825, 'no_lang_code', 'name', 'Opway (Portugal)'),
(22638, 19826, 'it', 'name', 'Ricerca e Progetto'),
(22639, 19827, 'no_lang_code', 'name', 'PaxVax (United States)'),
(22640, 19828, 'en', 'name', 'Richmond Area Multi-Services'),
(22641, 19829, 'no_lang_code', 'name', 'Proactive Oral Solutions (United States)'),
(22642, 19830, 'no_lang_code', 'name', 'Richmond Chemical (United States)'),
(22643, 19831, 'no_lang_code', 'name', 'Allied Vision Technologies (Canada)'),
(22644, 19832, 'no_lang_code', 'name', 'PBL Assay Science (United States)'),
(22645, 19833, 'no_lang_code', 'name', 'PBLH International Consulting'),
(22646, 19834, 'no_lang_code', 'name', 'Ridan (Poland)'),
(22647, 19835, 'no_lang_code', 'name', 'PBS Turbo (Czechia)'),
(22648, 19836, 'no_lang_code', 'name', 'Prosolia (United States)'),
(22649, 19837, 'no_lang_code', 'name', 'Rebellion (United Kingdom)'),
(22650, 19838, 'no_lang_code', 'name', 'Ridge and Partners (United Kingdom)'),
(22651, 19839, 'no_lang_code', 'name', 'Ridgeback (Italy)'),
(22652, 19840, 'en', 'name', 'Ridgeview'),
(22653, 19841, 'en', 'name', 'Prospectors & Developers Association of Canada'),
(22654, 19842, 'no_lang_code', 'name', 'PCB Piezotronics (United States)'),
(22655, 19843, 'no_lang_code', 'name', 'Riegger Diamantwerkzeuge (Germany)'),
(22656, 19844, 'no_lang_code', 'name', 'Prospektiker (Spain)'),
(22657, 19845, 'no_lang_code', 'name', 'Ball (Germany)'),
(22658, 19846, 'no_lang_code', 'name', 'Autoneum (Switzerland)'),
(22659, 19847, 'en', 'name', 'Riga Graduate School of Law'),
(22660, 19847, 'lt', 'name', 'Rygos aukÅ”toji teisės mokykla'),
(22661, 19847, 'ru', 'name', 'Š ŠøŠ¶ŃŠŗŠ°Ń Š²Ń‹ŃŃˆŠ°Ń школа права'),
(22662, 19848, 'no_lang_code', 'name', 'PhytoCeutica (United States)'),
(22663, 19849, 'no_lang_code', 'name', 'Reconnecting Youth (United States)'),
(22664, 19850, 'en', 'name', 'PDC-ARGOS'),
(22665, 19851, 'no_lang_code', 'name', 'PDS Biotechnology (United States)'),
(22666, 19852, 'no_lang_code', 'name', 'RBC Investor & Treasury Services (France)'),
(22667, 19853, 'no_lang_code', 'name', 'PDS (United States)'),
(22668, 19854, 'no_lang_code', 'name', 'Phytodata'),
(22669, 19855, 'no_lang_code', 'name', 'Phytolutions (Germany)'),
(22670, 19856, 'no_lang_code', 'name', 'Picanol (Belgium)'),
(22671, 19857, 'no_lang_code', 'name', 'Prosys (Germany)'),
(22672, 19858, 'en', 'name', 'Learning Ally'),
(22673, 19859, 'no_lang_code', 'name', 'Recore Systems (Netherlands)'),
(22674, 19860, 'no_lang_code', 'name', 'Protabit (United States)'),
(22675, 19861, 'no_lang_code', 'name', 'Recupyl (France)'),
(22676, 19862, 'no_lang_code', 'name', 'Protagen (Germany)'),
(22677, 19863, 'no_lang_code', 'name', 'RMC Research (United States)'),
(22678, 19864, 'no_lang_code', 'name', 'Red Electrica de Espana (Spain)'),
(22679, 19865, 'no_lang_code', 'name', 'Soitec (France)'),
(22680, 19866, 'no_lang_code', 'name', 'RoadNarrows (United States)'),
(22681, 19867, 'no_lang_code', 'name', 'Red Hat (Ireland)'),
(22682, 19868, 'en', 'name', 'Roane County Anti-Drug Coalition'),
(22683, 19869, 'en', 'name', 'Roane State Community College'),
(22684, 19870, 'no_lang_code', 'name', 'Protein Express (United States)'),
(22685, 19871, 'no_lang_code', 'name', 'Protein Metrics (United States)'),
(22686, 19872, 'en', 'name', 'Mediterranean Network of Basin Organisations'),
(22687, 19873, 'no_lang_code', 'name', 'Red Tail Hawk Corporation (United States)'),
(22688, 19874, 'no_lang_code', 'name', 'Protein Technologies (United Kingdom)'),
(22689, 19875, 'no_lang_code', 'name', 'Robinson Brothers (United Kingdom)'),
(22690, 19876, 'no_lang_code', 'name', 'Affini Technology (United Kingdom)'),
(22691, 19877, 'no_lang_code', 'name', 'ProteinLogic (United Kingdom)'),
(22692, 19878, 'no_lang_code', 'name', 'Robotronics (United States)'),
(22693, 19879, 'no_lang_code', 'name', 'Proteome Sciences (United Kingdom)'),
(22694, 19880, 'en', 'name', 'Roca'),
(22695, 19881, 'en', 'name', 'Pima County Health Department'),
(22696, 19882, 'en', 'name', 'Pima County Juvenile Court'),
(22697, 19883, 'no_lang_code', 'name', 'Rochal Industries (United States)'),
(22698, 19884, 'no_lang_code', 'name', 'Norwegian Veterinary Centre for Contract Research and Commercial Services'),
(22699, 19885, 'en', 'name', 'Swedish Chemicals Agency'),
(22700, 19886, 'no_lang_code', 'name', 'Golder Associates (United Kingdom)'),
(22701, 19887, 'no_lang_code', 'name', 'Blackstone (United States)'),
(22702, 19888, 'no_lang_code', 'name', 'RedZinc (Ireland)'),
(22703, 19889, 'en', 'name', 'Rockland County Department of Mental Health'),
(22704, 19890, 'no_lang_code', 'name', 'FiberLogix (United Kingdom)'),
(22705, 19891, 'no_lang_code', 'name', 'REFAMED (Italy)'),
(22706, 19892, 'ca', 'name', 'Petita i Mitjana Empresa de Catalunya'),
(22707, 19893, 'en', 'name', 'Pinal Hispanic Council'),
(22708, 19894, 'no_lang_code', 'name', 'Rockwell Automation (United Kingdom)'),
(22709, 19895, 'no_lang_code', 'name', 'PinMed (United States)'),
(22710, 19896, 'no_lang_code', 'name', 'Pinnacle Pharmaceuticals (United States)'),
(22711, 19897, 'no_lang_code', 'name', 'RegeneMed (United States)'),
(22712, 19898, 'no_lang_code', 'name', 'Pipistrel (Slovenia)'),
(22713, 19899, 'no_lang_code', 'name', 'Rockwood Lithium (Germany)'),
(22714, 19900, 'no_lang_code', 'name', 'Regens (Hungary)'),
(22715, 19901, 'no_lang_code', 'name', 'Proveca (United Kingdom)'),
(22716, 19902, 'no_lang_code', 'name', 'Almina (Portugal)'),
(22717, 19903, 'en', 'name', 'Rocky Mountain Virology Club'),
(22718, 19904, 'en', 'name', 'Providence Center'),
(22719, 19905, 'no_lang_code', 'name', 'Rocky Research (United States)'),
(22720, 19906, 'no_lang_code', 'name', 'Roctest (Canada)'),
(22721, 19907, 'no_lang_code', 'name', 'Rodenburg Biopolymers (Netherlands)'),
(22722, 19908, 'no_lang_code', 'name', 'Pittards (United Kingdom)'),
(22723, 19909, 'no_lang_code', 'name', 'Rofin (United Kingdom)'),
(22724, 19910, 'en', 'name', 'Romanian Authority For Nuclear Activities'),
(22725, 19911, 'en', 'name', 'Pittsburgh AIDS Task Force'),
(22726, 19912, 'no_lang_code', 'name', 'Pixelligent (United States)'),
(22727, 19913, 'no_lang_code', 'name', 'PrvnĆ­ BrněnskĆ” StrojĆ­rna VelkĆ” BĆ­teÅ” (Czechia)'),
(22728, 19914, 'en', 'name', 'International Research Institute of Stavanger'),
(22729, 19915, 'no_lang_code', 'name', 'Prysmian Group (Italy)'),
(22730, 19916, 'en', 'name', 'Rogers County Volunteers for Youth'),
(22731, 19917, 'no_lang_code', 'name', 'PJH (United Kingdom)'),
(22732, 19918, 'no_lang_code', 'name', 'Prysmian Group (United Kingdom)'),
(22733, 19919, 'en', 'name', 'Places For People'),
(22734, 19920, 'no_lang_code', 'name', 'Rohrer (Switzerland)'),
(22735, 19921, 'no_lang_code', 'name', 'PLANCO Consulting (Germany)'),
(22736, 19922, 'en', 'name', 'Geoscience and Marine Research & Consulting'),
(22737, 19922, 'pl', 'name', 'Przedsiębiorstwo Badań i Doradztwa'),
(22738, 19923, 'no_lang_code', 'name', 'Planer (United Kingdom)'),
(22739, 19924, 'no_lang_code', 'name', 'France Rol (France)'),
(22740, 19925, 'no_lang_code', 'name', 'Przedsiębiorstwo Innowacyjno Wdrożeniowe Complex (Poland)'),
(22741, 19926, 'no_lang_code', 'name', 'Planet'),
(22742, 19927, 'en', 'name', 'Regional Youth Adult Social Action Partnership'),
(22743, 19928, 'no_lang_code', 'name', 'Planet'),
(22744, 19929, 'no_lang_code', 'name', 'Roland Hill (United Kingdom)'),
(22745, 19930, 'en', 'name', 'Regional Advisory and Information Centre Presov'),
(22746, 19931, 'no_lang_code', 'name', 'Planetek Hellas (Greece)'),
(22747, 19932, 'no_lang_code', 'name', 'Rolatube Technology (United Kingdom)'),
(22748, 19933, 'no_lang_code', 'name', 'Romax Technology (United Kingdom)'),
(22749, 19934, 'no_lang_code', 'name', 'Industrial Solar (Germany)'),
(22750, 19935, 'no_lang_code', 'name', 'Plant Bioscience Limited (United Kingdom)'),
(22751, 19936, 'no_lang_code', 'name', 'Innovation Ecology (Israel)'),
(22752, 19937, 'no_lang_code', 'name', 'Agroknow (Greece)'),
(22753, 19938, 'en', 'name', 'Plant Protection Institute'),
(22754, 19939, 'no_lang_code', 'name', 'Psutec (Belgium)'),
(22755, 19940, 'no_lang_code', 'name', 'Rood Wit Blauw Water Services (Netherlands)'),
(22756, 19941, 'it', 'name', 'Azienda Sanitaria Locale Alessandria'),
(22757, 19942, 'no_lang_code', 'name', 'Plant (United States)'),
(22758, 19943, 'en', 'name', 'BrĆønnĆøysund Register Centre'),
(22759, 19944, 'no_lang_code', 'name', 'Vecima Technology (United Kingdom)'),
(22760, 19945, 'no_lang_code', 'name', 'Regulus (Czechia)'),
(22761, 19946, 'en', 'name', 'Rose State College'),
(22762, 19947, 'no_lang_code', 'name', 'Roslin Cells (United Kingdom)'),
(22763, 19948, 'no_lang_code', 'name', 'Rosti (Denmark)'),
(22764, 19949, 'no_lang_code', 'name', 'FitzGerald Nurseries (Ireland)'),
(22765, 19950, 'no_lang_code', 'name', 'Dana (Germany)'),
(22766, 19951, 'no_lang_code', 'name', 'Reischauer (Germany)'),
(22767, 19952, 'no_lang_code', 'name', 'Plantechno (Italy)'),
(22768, 19953, 'no_lang_code', 'name', 'Plasma Clean (United Kingdom)'),
(22769, 19954, 'no_lang_code', 'name', 'REL (United States)'),
(22770, 19955, 'no_lang_code', 'name', 'Release Mobile (United Kingdom)'),
(22771, 19956, 'no_lang_code', 'name', 'Alu-Releco Oy (Finland)'),
(22772, 19957, 'en', 'name', 'Public Entity Risk Institute'),
(22773, 19958, 'no_lang_code', 'name', 'Relight (Italy)'),
(22774, 19959, 'en', 'name', 'Public Health Foundation'),
(22775, 19960, 'no_lang_code', 'name', 'Plasma Coatings (United Kingdom)'),
(22776, 19961, 'no_lang_code', 'name', 'Plasma Quest (United Kingdom)'),
(22777, 19962, 'no_lang_code', 'name', 'Plassys (France)'),
(22778, 19963, 'no_lang_code', 'name', 'Remmers Bouwchemie (Netherlands)'),
(22779, 19964, 'en', 'name', 'Remote Sensing Application Center'),
(22780, 19965, 'en', 'name', 'Royal Agricultural Society of England'),
(22781, 19966, 'en', 'name', 'Association of European Science and Technology Transfer Professionals'),
(22782, 19967, 'no_lang_code', 'name', 'Plastal (Italy)'),
(22783, 19968, 'no_lang_code', 'name', 'Remote Sensing Solutions (Germany)'),
(22784, 19969, 'no_lang_code', 'name', 'Plastia (Spain)'),
(22785, 19970, 'no_lang_code', 'name', 'Plastic Electronic (Austria)'),
(22786, 19971, 'en', 'name', 'Public Technology Institute'),
(22787, 19972, 'da', 'name', 'Billedkunst Skolerne Det Kongelige Danske Kunstakademis'),
(22788, 19972, 'en', 'name', 'Schools of Visual Arts, The Royal Danish Academy of Fine Arts'),
(22789, 19973, 'no_lang_code', 'name', 'Redes EnergƩticas Nacionais (Portugal)'),
(22790, 19974, 'no_lang_code', 'name', 'Plastic Flow (United States)'),
(22791, 19975, 'no_lang_code', 'name', 'Future Electronics (Netherlands)'),
(22792, 19976, 'cy', 'name', 'Post Brenhinol'),
(22793, 19976, 'no_lang_code', 'name', 'Royal Mail Group (United Kingdom)'),
(22794, 19976, 'gd', 'name', 'a'' Phuist RƬoghail'),
(22795, 19977, 'no_lang_code', 'name', 'Plasticell (United Kingdom)'),
(22796, 19978, 'en', 'name', 'Renal Research Institute'),
(22797, 19979, 'no_lang_code', 'name', 'Pulkovo Observatory'),
(22798, 19979, 'ru', 'name', 'ŠŸŃƒŠ»ŠŗŠ¾Š²ŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(22799, 19980, 'en', 'name', 'PlasticsEurope'),
(22800, 19981, 'en', 'name', 'Royal Navy'),
(22801, 19982, 'no_lang_code', 'name', 'Pulmotect (United States)'),
(22802, 19983, 'en', 'name', 'Liverpool Heart and Chest Hospital NHS Trust'),
(22803, 19984, 'en', 'name', 'Princess Alexandra Hospital NHS Trust'),
(22804, 19985, 'en', 'name', 'Ysbyty Gwynedd Hospital NHS Trust'),
(22805, 19986, 'en', 'name', 'Royal Oak Community Coalition'),
(22806, 19987, 'en', 'name', 'Royal Society of Tropical Medicine and Hygiene'),
(22807, 19988, 'en', 'name', 'Responsible Retailing Forum'),
(22808, 19989, 'no_lang_code', 'name', 'RSscan International (Belgium)'),
(22809, 19990, 'no_lang_code', 'name', 'Renson (Belgium)'),
(22810, 19991, 'no_lang_code', 'name', 'RÔdio e Televisão de Portugal (Portugal)'),
(22811, 19992, 'no_lang_code', 'name', 'Pulsotronic (Germany)'),
(22812, 19993, 'en', 'name', 'Renz Addiction Counseling Center'),
(22813, 19994, 'no_lang_code', 'name', 'Pultrall (Canada)'),
(22814, 19995, 'no_lang_code', 'name', 'Puracyp (United States)'),
(22815, 19996, 'no_lang_code', 'name', 'RTZ Associates (United States)'),
(22816, 19997, 'en', 'name', 'Ruby Lake Lagoon Nature Reserve Society'),
(22817, 19998, 'no_lang_code', 'name', 'Ruhrverband (Germany)'),
(22818, 19999, 'no_lang_code', 'name', 'Repotec (Austria)'),
(22819, 20000, 'no_lang_code', 'name', 'Runcom Technologies (Israel)'),
(22820, 20001, 'no_lang_code', 'name', 'Putzier OberflƤchentechnik (Germany)'),
(22821, 20002, 'no_lang_code', 'name', 'Rups Consultancy and Project Management'),
(22822, 20003, 'no_lang_code', 'name', 'Ruskinn Technology (United Kingdom)'),
(22823, 20004, 'no_lang_code', 'name', 'Platit (Switzerland)'),
(22824, 20005, 'de', 'name', 'Platte Consult'),
(22825, 20006, 'no_lang_code', 'name', 'Pyramid Technical Consultants (United States)'),
(22826, 20007, 'no_lang_code', 'name', 'Q Bioanalytic (Germany)'),
(22827, 20008, 'no_lang_code', 'name', 'Q Bot (United Kingdom)'),
(22828, 20009, 'no_lang_code', 'name', 'Plaxica (United Kingdom)'),
(22829, 20010, 'no_lang_code', 'name', 'Q linea (Sweden)'),
(22830, 20011, 'no_lang_code', 'name', 'PlayGen (United Kingdom)'),
(22831, 20012, 'en', 'name', 'Russian State Hydrometeorological University'),
(22832, 20012, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Российский Š³Š¾ŃŃƒŠ“арственный гиГрометеорологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22833, 20013, 'no_lang_code', 'name', 'Rescon Technologies (United Kingdom)'),
(22834, 20014, 'no_lang_code', 'name', 'Siemens (Greece)'),
(22835, 20015, 'no_lang_code', 'name', 'Q Sphere (United Kingdom)'),
(22836, 20016, 'no_lang_code', 'name', 'Nanothinx (Greece)'),
(22837, 20017, 'no_lang_code', 'name', 'Research & Diagnostic Antibodies (United States)'),
(22838, 20018, 'no_lang_code', 'name', 'QCMetrix (United States)'),
(22839, 20019, 'en', 'name', 'Rutherford + Chekene'),
(22840, 20020, 'no_lang_code', 'name', 'RVJ - Editores (Portugal)'),
(22841, 20021, 'en', 'name', 'Research Circle Associates'),
(22842, 20022, 'no_lang_code', 'name', 'QED Technologies (United States)'),
(22843, 20023, 'no_lang_code', 'name', 'Research Detectors (United States)'),
(22844, 20024, 'no_lang_code', 'name', 'Phio Pharmaceuticals (United States)'),
(22845, 20025, 'it', 'name', 'Istituto di Ricerca per la Terapia Genetica Umana'),
(22846, 20025, 'en', 'name', 'Research Institute for Genetic and Human Therapy'),
(22847, 20026, 'no_lang_code', 'name', 'Qserve Group (Netherlands)'),
(22848, 20027, 'no_lang_code', 'name', 'S&F Systemtechnik (Germany)'),
(22849, 20028, 'no_lang_code', 'name', 'ProSensing (United States)'),
(22850, 20029, 'en', 'name', 'Institute of Agricultural Economics and Information'),
(22851, 20030, 'hu', 'name', 'Állattenyésztési és TakarmÔnyozÔsi Kutatóintézet'),
(22852, 20031, 'no_lang_code', 'name', 'PLS Consult (Denmark)'),
(22853, 20032, 'no_lang_code', 'name', 'Quality Electrodynamics (United States)'),
(22854, 20033, 'en', 'name', 'Research Institute for Tropical Medicine'),
(22855, 20034, 'no_lang_code', 'name', 'Pluservice (Italy)'),
(22856, 20035, 'it', 'name', 'Agenzia Regionale di SanitĆ  della Toscana'),
(22857, 20036, 'no_lang_code', 'name', 'PML Applications (United Kingdom)'),
(22858, 20037, 'no_lang_code', 'name', 'Ratos (Sweden)'),
(22859, 20038, 'en', 'name', 'Pocatello High School'),
(22860, 20039, 'en', 'name', 'Quality Meat Scotland'),
(22861, 20040, 'no_lang_code', 'name', 'QuanTech (United States)'),
(22862, 20041, 'no_lang_code', 'name', 'Analogic (United States)'),
(22863, 20042, 'no_lang_code', 'name', 'RR Donnelley (United States)'),
(22864, 20043, 'no_lang_code', 'name', 'Poeton Industries (United Kingdom)'),
(22865, 20044, 'en', 'name', 'Northern Ostrobothnia Hospital District'),
(22866, 20044, 'fi', 'name', 'Pohjois-Pohjanmaan Sairaanhoitopiiri'),
(22867, 20045, 'no_lang_code', 'name', 'S. B. Barnes Associates (United States)'),
(22868, 20046, 'no_lang_code', 'name', 'Point L (Bulgaria)'),
(22869, 20047, 'no_lang_code', 'name', 'Quantemol (United Kingdom)'),
(22870, 20048, 'no_lang_code', 'name', 'Precical (Belgium)'),
(22871, 20049, 'no_lang_code', 'name', 'Vitkovice - Research and Development (Czechia)'),
(22872, 20050, 'no_lang_code', 'name', 'Plasmaterm (Romania)'),
(22873, 20051, 'no_lang_code', 'name', 'Polar Mobile (Canada)'),
(22874, 20052, 'no_lang_code', 'name', 'SGG (Italy)'),
(22875, 20053, 'no_lang_code', 'name', 'PolarOnyx (United States)'),
(22876, 20054, 'no_lang_code', 'name', 'SOLID (Austria)'),
(22877, 20055, 'no_lang_code', 'name', 'Polatis (United Kingdom)'),
(22878, 20056, 'fr', 'name', 'PƓle VƩhicule du Futur'),
(22879, 20057, 'no_lang_code', 'name', 'QuantLogic (United States)'),
(22880, 20058, 'no_lang_code', 'name', 'Polgenix (United States)'),
(22881, 20059, 'no_lang_code', 'name', 'S2 Corporation (United States)'),
(22882, 20060, 'no_lang_code', 'name', 'S2 Grupo (Spain)'),
(22883, 20061, 'en', 'name', 'National Policing Improvement Agency'),
(22884, 20062, 'en', 'name', 'Police University College'),
(22885, 20062, 'fi', 'name', 'Poliisiammattikorkeakoulu'),
(22886, 20063, 'no_lang_code', 'name', 'Polinter (Spain)'),
(22887, 20064, 'no_lang_code', 'name', 'Quantos (France)'),
(22888, 20065, 'no_lang_code', 'name', 'ResearchWorks (United States)'),
(22889, 20066, 'en', 'name', 'Polis'),
(22890, 20067, 'no_lang_code', 'name', 'QuantumBio (United States)'),
(22891, 20068, 'fr', 'name', 'RĆ©seau Trans-Tech’s'),
(22892, 20069, 'no_lang_code', 'name', 'National Electric Vehicle Sweden (Sweden)'),
(22893, 20070, 'en', 'name', 'Quebec Labrador Foundation'),
(22894, 20071, 'no_lang_code', 'name', 'RUAG (Sweden)'),
(22895, 20072, 'no_lang_code', 'name', 'Resensys (United States)'),
(22896, 20073, 'en', 'name', 'Polk State College'),
(22897, 20074, 'no_lang_code', 'name', 'Quercus X-ray Technologies (United States)'),
(22898, 20075, 'no_lang_code', 'name', 'Creation Technologies (United States)'),
(22899, 20076, 'en', 'name', 'San Diego City College'),
(22900, 20077, 'no_lang_code', 'name', 'SƤchsische BinnenhƤfen Oberelbe (Germany)'),
(22901, 20078, 'no_lang_code', 'name', 'Sachtleben Bergbau (Germany)'),
(22902, 20079, 'no_lang_code', 'name', 'Queues Enforth Development (United States)');
INSERT INTO `ror_settings` VALUES
(22903, 20080, 'no_lang_code', 'name', 'Quick Reaction Corporation (United States)'),
(22904, 20081, 'pt', 'name', 'Madeira Tecnopolo'),
(22905, 20082, 'en', 'name', 'Quinsigamond Community College'),
(22906, 20083, 'en', 'name', 'Swedish National Police Board'),
(22907, 20084, 'no_lang_code', 'name', 'QuSpin (United States)'),
(22908, 20085, 'no_lang_code', 'name', 'Quviq (Sweden)'),
(22909, 20086, 'no_lang_code', 'name', 'R&D Systems (United States)'),
(22910, 20087, 'no_lang_code', 'name', 'Polycom (Slovenia)'),
(22911, 20088, 'no_lang_code', 'name', 'RiNA (Germany)'),
(22912, 20089, 'no_lang_code', 'name', 'RGB Medical Devices (Spain)'),
(22913, 20090, 'no_lang_code', 'name', 'Registro Internacional Naval (Portugal)'),
(22914, 20091, 'no_lang_code', 'name', 'Rinicom (United Kingdom)'),
(22915, 20092, 'no_lang_code', 'name', 'PolyGene'),
(22916, 20093, 'en', 'name', 'Safe Blood for Africa Foundation'),
(22917, 20094, 'no_lang_code', 'name', 'Polykemi (Sweden)'),
(22918, 20095, 'no_lang_code', 'name', 'Polymark (Netherlands)'),
(22919, 20096, 'no_lang_code', 'name', 'Innovation Pharmaceuticals (United States)'),
(22920, 20097, 'no_lang_code', 'name', 'Polymem (France)'),
(22921, 20098, 'no_lang_code', 'name', 'R-Biopharm (Germany)'),
(22922, 20099, 'no_lang_code', 'name', 'Landauer (United States)'),
(22923, 20100, 'no_lang_code', 'name', 'Polymer Chemistry Innovations (United States)'),
(22924, 20101, 'no_lang_code', 'name', 'Ripple (United States)'),
(22925, 20102, 'en', 'name', 'Safe States Alliance'),
(22926, 20103, 'no_lang_code', 'name', 'R&R Systems (Netherlands)'),
(22927, 20104, 'no_lang_code', 'name', 'Replicon (United States)'),
(22928, 20105, 'no_lang_code', 'name', 'Safe Engineering Services & Technologies (Canada)'),
(22929, 20106, 'no_lang_code', 'name', 'PolyPeptide Group (United States)'),
(22930, 20107, 'no_lang_code', 'name', 'Polyphotonix (United Kingdom)'),
(22931, 20108, 'no_lang_code', 'name', 'Rad Data Communications (Israel)'),
(22932, 20109, 'no_lang_code', 'name', 'Risk Engineering (Bulgaria)'),
(22933, 20109, 'bg', 'name', 'Риск инженеринг'),
(22934, 20110, 'en', 'name', 'Saskatchewan Science Centre'),
(22935, 20111, 'en', 'name', 'Radioactive Waste Repository Authority'),
(22936, 20112, 'no_lang_code', 'name', 'Safoso (Switzerland)'),
(22937, 20113, 'no_lang_code', 'name', 'Risk Management Solutions (United Kingdom)'),
(22938, 20114, 'no_lang_code', 'name', 'Gruppo Trombini (Italy)'),
(22939, 20115, 'no_lang_code', 'name', 'Saturn Bioponics (United Kingdom)'),
(22940, 20116, 'en', 'name', 'Riverside County Department of Environmental Health'),
(22941, 20117, 'en', 'name', 'Setting Priorities for Retirement Years Foundation'),
(22942, 20118, 'no_lang_code', 'name', 'Seureco (France)'),
(22943, 20119, 'en', 'name', 'Severtsov Institute of Ecology and Evolution'),
(22944, 20119, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø ŃŠ²Š¾Š»ŃŽŃ†ŠøŠø им.А.Š. Деверцова Российской акаГемии наук'),
(22945, 20120, 'no_lang_code', 'name', 'Sauf Consulting'),
(22946, 20121, 'no_lang_code', 'name', 'Sagentia (United Kingdom)'),
(22947, 20122, 'no_lang_code', 'name', 'RJ Lee Group (United States)'),
(22948, 20123, 'en', 'name', 'Riverside County Superior Court'),
(22949, 20124, 'no_lang_code', 'name', 'Sagivtech (Israel)'),
(22950, 20125, 'no_lang_code', 'name', 'ShapeSpace (United Kingdom)'),
(22951, 20126, 'en', 'name', 'Science Health Allied Research Education'),
(22952, 20127, 'en', 'name', 'Shasta County Chemical People'),
(22953, 20128, 'en', 'name', 'Shawnee Health Service and Development Corporation'),
(22954, 20129, 'en', 'name', 'Shawnee Mission Northwest High School'),
(22955, 20130, 'no_lang_code', 'name', 'Sbs Byfornyelse'),
(22956, 20131, 'en', 'name', 'Shawnee Mission South High School'),
(22957, 20132, 'no_lang_code', 'name', 'Etegent Technologies (United States)'),
(22958, 20133, 'no_lang_code', 'name', 'RODAX Impex (Romania)'),
(22959, 20134, 'no_lang_code', 'name', 'Shellcase (Israel)'),
(22960, 20135, 'en', 'name', 'Shellfish Association of Great Britain'),
(22961, 20136, 'no_lang_code', 'name', 'SKF (France)'),
(22962, 20137, 'fr', 'name', 'Société de Protection des Forêts contre les Insectes et Maladies'),
(22963, 20138, 'no_lang_code', 'name', 'Aluminium Refining, Degassing and Filtering (Canada)'),
(22964, 20139, 'no_lang_code', 'name', 'Speech Processing Solutions (United States)'),
(22965, 20140, 'no_lang_code', 'name', 'PY Automation (France)'),
(22966, 20141, 'en', 'name', 'Saint Martin''s University'),
(22967, 20142, 'no_lang_code', 'name', 'Sherbrooke Innopole (Canada)'),
(22968, 20143, 'no_lang_code', 'name', 'Manufacture d''Orgues Muhleisen (France)'),
(22969, 20144, 'no_lang_code', 'name', 'Scan Messtechnik (Austria)'),
(22970, 20145, 'en', 'name', 'Sheridan College'),
(22971, 20146, 'no_lang_code', 'name', 'ScanArc Plasma Technologies (Sweden)'),
(22972, 20147, 'no_lang_code', 'name', 'Sherwood Scientific (United Kingdom)'),
(22973, 20148, 'en', 'name', 'Ecomuseum Zoo'),
(22974, 20148, 'fr', 'name', 'Zoo Ecomuseum'),
(22975, 20149, 'no_lang_code', 'name', 'Salsnes Filter (Norway)'),
(22976, 20150, 'en', 'name', 'European Society of Cardiology'),
(22977, 20151, 'no_lang_code', 'name', 'Samaritan Pharmaceuticals (United States)'),
(22978, 20152, 'no_lang_code', 'name', 'Cabot Microelectronics (United States)'),
(22979, 20153, 'en', 'name', 'San Luis Obispo County Drug and Alcohol Services'),
(22980, 20154, 'no_lang_code', 'name', 'Scanimetrics (Canada)'),
(22981, 20155, 'en', 'name', 'Shoreline Community College'),
(22982, 20156, 'no_lang_code', 'name', 'Samo (Italy)'),
(22983, 20157, 'en', 'name', 'Shropshire Council'),
(22984, 20158, 'no_lang_code', 'name', 'Samputensili (Italy)'),
(22985, 20159, 'no_lang_code', 'name', 'eBaltics (Latvia)'),
(22986, 20160, 'no_lang_code', 'name', 'SociƩtƩ Tunisienne de l''ElectricitƩ et du Gaz (Tunisia)'),
(22987, 20160, 'ar', 'name', 'Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„ŲŖŁˆŁ†Ų³ŁŠŲ© Ł„Ł„ŁƒŁ‡Ų±ŲØŲ§Ų” و الغاز'),
(22988, 20161, 'en', 'name', 'Society for Muscle Biology'),
(22989, 20162, 'en', 'name', 'Society for Mathematical Psychology'),
(22990, 20163, 'en', 'name', 'Siberian Center for Environmental Research and Training'),
(22991, 20163, 'ru', 'name', 'Дибирский центр климато-ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований Šø Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(22992, 20164, 'en', 'name', 'Society for Personality and Social Psychology'),
(22993, 20165, 'no_lang_code', 'name', 'Sick (Germany)'),
(22994, 20166, 'no_lang_code', 'name', 'Questel (France)'),
(22995, 20167, 'en', 'name', 'San Juan County Partnership'),
(22996, 20168, 'en', 'name', 'Society of Behavioral Medicine'),
(22997, 20169, 'no_lang_code', 'name', 'Sico Technology (Austria)'),
(22998, 20170, 'en', 'name', 'San Luis Obispo County Mental Health Services'),
(22999, 20171, 'en', 'name', 'San Luis Obispo County Public Health Department'),
(23000, 20172, 'en', 'name', 'Society of Indian Automobile Manufacturers'),
(23001, 20173, 'no_lang_code', 'name', 'Sidasa Engineering (Spain)'),
(23002, 20174, 'en', 'name', 'Society of Nuclear Medicine and Molecular Imaging'),
(23003, 20175, 'en', 'name', 'Society of Wetland Scientists'),
(23004, 20176, 'no_lang_code', 'name', 'Sidac (Italy)'),
(23005, 20177, 'en', 'name', 'San Mateo County Human Services'),
(23006, 20178, 'no_lang_code', 'name', 'Sidekick Studios (United Kingdom)'),
(23007, 20179, 'no_lang_code', 'name', 'Renewable Energy Corporation (Norway)'),
(23008, 20180, 'en', 'name', 'Sanexen Environmental Services'),
(23009, 20181, 'en', 'name', 'Sanford Medical Center'),
(23010, 20182, 'en', 'name', 'Santa Barbara County Public Health Department'),
(23011, 20183, 'no_lang_code', 'name', 'Robbe (France)'),
(23012, 20184, 'en', 'name', 'Superior Court of California'),
(23013, 20185, 'en', 'name', 'Santa Fe Indian School'),
(23014, 20186, 'en', 'name', 'Society of Wood Science and Technology'),
(23015, 20187, 'en', 'name', 'Sidwell Friends School'),
(23016, 20188, 'en', 'name', 'Danish Maritime Authority'),
(23017, 20189, 'no_lang_code', 'name', 'Scanwel (United Kingdom)'),
(23018, 20190, 'no_lang_code', 'name', 'SOLIDpower (Italy)'),
(23019, 20191, 'no_lang_code', 'name', 'Sofie Biosciences (United States)'),
(23020, 20192, 'no_lang_code', 'name', 'SeaOwl Technology Solutions (France)'),
(23021, 20193, 'no_lang_code', 'name', 'Soft dB (Canada)'),
(23022, 20194, 'no_lang_code', 'name', 'Siemens (Sweden)'),
(23023, 20195, 'no_lang_code', 'name', 'Sappi (Netherlands)'),
(23024, 20196, 'no_lang_code', 'name', 'Schafer-N (Denmark)'),
(23025, 20197, 'no_lang_code', 'name', 'Siemens (Netherlands)'),
(23026, 20198, 'no_lang_code', 'name', 'Softing (Germany)'),
(23027, 20199, 'no_lang_code', 'name', 'Inspecta (Sweden)'),
(23028, 20200, 'en', 'name', 'Sarah Bush Lincoln Health System'),
(23029, 20201, 'no_lang_code', 'name', 'Software AG (Italy)'),
(23030, 20202, 'no_lang_code', 'name', 'Xilinx (Canada)'),
(23031, 20203, 'no_lang_code', 'name', 'Schneider Electric (Germany)'),
(23032, 20204, 'no_lang_code', 'name', 'Schneider Electric (United Kingdom)'),
(23033, 20205, 'no_lang_code', 'name', 'Schoenfabriek Wed. J.P. van Bommel (Netherlands)'),
(23034, 20206, 'no_lang_code', 'name', 'Scholastic Corporation (United States)'),
(23035, 20207, 'no_lang_code', 'name', 'Siet (Italy)'),
(23036, 20208, 'en', 'name', 'Society for Research on Biological Rhythms'),
(23037, 20209, 'no_lang_code', 'name', 'Sievi (Finland)'),
(23038, 20210, 'no_lang_code', 'name', 'Sifam Tinsley (United Kingdom)'),
(23039, 20211, 'no_lang_code', 'name', 'Software for Critical Systems (Spain)'),
(23040, 20212, 'no_lang_code', 'name', 'RSK Assessments (United States)'),
(23041, 20213, 'no_lang_code', 'name', 'Sigma Engineering (Germany)'),
(23042, 20214, 'no_lang_code', 'name', 'Spectris (United States)'),
(23043, 20215, 'no_lang_code', 'name', 'Ailleron (Poland)'),
(23044, 20216, 'no_lang_code', 'name', 'Acobiom (France)'),
(23045, 20217, 'no_lang_code', 'name', 'Innovalia (Spain)'),
(23046, 20218, 'no_lang_code', 'name', 'SignaBlok (United States)'),
(23047, 20219, 'no_lang_code', 'name', 'Sarmap (Switzerland)'),
(23048, 20220, 'no_lang_code', 'name', 'SAS Institute (United Kingdom)'),
(23049, 20221, 'no_lang_code', 'name', 'Sogesca (Italy)'),
(23050, 20222, 'no_lang_code', 'name', 'Signo Motus (Italy)'),
(23051, 20223, 'en', 'name', 'Saskatchewan Conservation Learning Centre'),
(23052, 20224, 'no_lang_code', 'name', 'Signum Computer (Germany)'),
(23053, 20225, 'en', 'name', 'School District of Palm Beach County'),
(23054, 20226, 'no_lang_code', 'name', 'Coesia (Italy)'),
(23055, 20227, 'en', 'name', 'Saskatchewan Environment Industry and Managers Association'),
(23056, 20228, 'no_lang_code', 'name', 'Silanis Technology (Canada)'),
(23057, 20229, 'en', 'name', 'Portland Public Schools'),
(23058, 20230, 'no_lang_code', 'name', 'Silex Microsystems (Sweden)'),
(23059, 20231, 'no_lang_code', 'name', 'SilicoLife (Portugal)'),
(23060, 20232, 'no_lang_code', 'name', 'SoilVision Systems (Canada)'),
(23061, 20233, 'no_lang_code', 'name', 'Silicon Audio (United States)'),
(23062, 20234, 'no_lang_code', 'name', 'SokolovskĆ” UhelnĆ” (Czechia)'),
(23063, 20235, 'en', 'name', 'St. Joseph Youth Alliance'),
(23064, 20236, 'no_lang_code', 'name', 'Silicon Radar (Germany)'),
(23065, 20237, 'no_lang_code', 'name', 'Sol-Gel Solutions (United States)'),
(23066, 20238, 'no_lang_code', 'name', 'Solagro'),
(23067, 20239, 'no_lang_code', 'name', 'SiliCycle (Canada)'),
(23068, 20240, 'en', 'name', 'St. Lawrence College'),
(23069, 20241, 'no_lang_code', 'name', 'Silios Technologies (France)'),
(23070, 20242, 'no_lang_code', 'name', 'SP Group (Denmark)'),
(23071, 20243, 'no_lang_code', 'name', 'Schulman, Ronca & Bucuvalas'),
(23072, 20244, 'no_lang_code', 'name', 'Schüßler-Plan (Germany)'),
(23073, 20245, 'en', 'name', 'Silver Buffalo Consulting'),
(23074, 20246, 'no_lang_code', 'name', 'Silver Lake Research (United States)'),
(23075, 20247, 'no_lang_code', 'name', 'SGF International (Germany)'),
(23076, 20248, 'no_lang_code', 'name', 'Solari (Italy)'),
(23077, 20249, 'no_lang_code', 'name', 'Simbiente (Portugal)'),
(23078, 20250, 'no_lang_code', 'name', 'Simcon kunststofftechnische Software (Germany)'),
(23079, 20251, 'de', 'name', 'Staatliches Museum für Naturkunde Stuttgart'),
(23080, 20251, 'en', 'name', 'State Museum of Natural History Stuttgart'),
(23081, 20252, 'no_lang_code', 'name', 'Fiat Chrysler Automobiles (France)'),
(23082, 20253, 'no_lang_code', 'name', 'Simcyp (United Kingdom)'),
(23083, 20254, 'no_lang_code', 'name', 'Simmetrix (United States)'),
(23084, 20255, 'no_lang_code', 'name', 'Sciarra Laboratories'),
(23085, 20256, 'no_lang_code', 'name', 'SiMPore (United States)'),
(23086, 20257, 'no_lang_code', 'name', 'Solarplan (Denmark)'),
(23087, 20258, 'no_lang_code', 'name', 'Solems (France)'),
(23088, 20259, 'no_lang_code', 'name', 'Simulation Solutions (United Kingdom)'),
(23089, 20260, 'no_lang_code', 'name', 'Soliani Emc (Italy)'),
(23090, 20261, 'no_lang_code', 'name', 'SimulConsult'),
(23091, 20262, 'en', 'name', 'MindFuel'),
(23092, 20263, 'no_lang_code', 'name', 'Solidica (United States)'),
(23093, 20264, 'en', 'name', 'Science and Technology Interactive Center'),
(23094, 20265, 'no', 'name', 'SINE-Institut'),
(23095, 20265, 'en', 'name', 'Sine Institute'),
(23096, 20265, 'de', 'name', 'Süddeutsches Institut für Empirische Sozialforschung'),
(23097, 20266, 'no_lang_code', 'name', 'Solidus Biosciences (United States)'),
(23098, 20267, 'no_lang_code', 'name', 'Stabilitech BioPharma (United Kingdom)'),
(23099, 20268, 'en', 'name', 'Connecticut Science Center'),
(23100, 20269, 'no_lang_code', 'name', 'Sineurop Nanotech (Germany)'),
(23101, 20270, 'en', 'name', 'Science Fair Foundation of BC'),
(23102, 20271, 'no_lang_code', 'name', 'Solo Kleinmotoren (Germany)'),
(23103, 20272, 'no_lang_code', 'name', 'Singleton Birch (United Kingdom)'),
(23104, 20273, 'no_lang_code', 'name', 'Energieversorgungs und Verkehrsgesellschaft Aachen (Germany)'),
(23105, 20274, 'no_lang_code', 'name', 'Solpros (Finland)'),
(23106, 20275, 'no_lang_code', 'name', 'Sinhatech (United States)'),
(23107, 20276, 'de', 'name', 'Stadtwerke Bad Urach (Germany)'),
(23108, 20277, 'no_lang_code', 'name', 'Stadtwerke Bochum (Germany)'),
(23109, 20278, 'no_lang_code', 'name', 'Gfi Informatique (France)'),
(23110, 20279, 'no_lang_code', 'name', 'Science Wares (United States)'),
(23111, 20280, 'no_lang_code', 'name', 'Sintec (Italy)'),
(23112, 20281, 'no_lang_code', 'name', 'Solvo Biotechnology (Hungary)'),
(23113, 20282, 'no_lang_code', 'name', 'SomaLogic (United States)'),
(23114, 20283, 'no_lang_code', 'name', 'Sciences Computers Consultants (France)'),
(23115, 20284, 'no_lang_code', 'name', 'Sonic Concepts (United States)'),
(23116, 20285, 'no_lang_code', 'name', 'Stan''s Cafe (United Kingdom)'),
(23117, 20286, 'no_lang_code', 'name', 'Sioux Manufacturing (United States)'),
(23118, 20287, 'no_lang_code', 'name', 'Norsk Hydro (Sweden)'),
(23119, 20288, 'en', 'name', 'Services, Industrial, Professional and Technical Union'),
(23120, 20289, 'no_lang_code', 'name', 'Sir Robert McAlpine (United Kingdom)'),
(23121, 20290, 'ms', 'name', 'Sirim Berhad'),
(23122, 20291, 'no_lang_code', 'name', 'Sirius Thinking (United States)'),
(23123, 20292, 'no_lang_code', 'name', 'Sirtres (Italy)'),
(23124, 20293, 'no_lang_code', 'name', 'Scientific Computing & Modelling (Netherlands)'),
(23125, 20294, 'en', 'name', 'Stanley Park Ecology Society'),
(23126, 20295, 'no_lang_code', 'name', 'Stansted Fluid Power (United Kingdom)'),
(23127, 20296, 'es', 'name', 'Sistemas Expertos'),
(23128, 20297, 'no_lang_code', 'name', 'Starfire Industries (United States)'),
(23129, 20298, 'es', 'name', 'Sistemas Genómicos'),
(23130, 20299, 'no_lang_code', 'name', 'Starpharma (Australia)'),
(23131, 20300, 'no_lang_code', 'name', 'Sonnenkraft (Austria)'),
(23132, 20301, 'no_lang_code', 'name', 'Tadiran Batteries (Germany)'),
(23133, 20302, 'no_lang_code', 'name', 'Sistemas Y Redes Telematicas (Spain)'),
(23134, 20303, 'en', 'name', 'Michigan Department of Education'),
(23135, 20304, 'en', 'name', 'State College of Florida Manatee-Sarasota'),
(23136, 20305, 'no_lang_code', 'name', 'Sisteplant (Spain)'),
(23137, 20306, 'no_lang_code', 'name', 'Sony (Sweden)'),
(23138, 20307, 'no_lang_code', 'name', 'Scientific Software International (United States)'),
(23139, 20308, 'no_lang_code', 'name', 'Scientifica (United Kingdom)'),
(23140, 20309, 'en', 'name', 'State Hydrological Institute'),
(23141, 20309, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ гиГрологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(23142, 20310, 'no_lang_code', 'name', 'SiteOne Therapeutics (United States)'),
(23143, 20311, 'en', 'name', 'Public Health Authority of the Slovak Republic'),
(23144, 20312, 'no_lang_code', 'name', 'Sitex 45 (Romania)'),
(23145, 20313, 'no_lang_code', 'name', 'Sciperio (United States)'),
(23146, 20314, 'en', 'name', 'Higher Institute on Territorial Systems for Innovation'),
(23147, 20314, 'it', 'name', 'Istituto Superiore sui Sistemi Territoriali per l’Innovazione'),
(23148, 20315, 'en', 'name', 'Zubov State Oceanographic Institute'),
(23149, 20315, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ океанографический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š.Š.Š—ŃƒŠ±Š¾Š²Š°'),
(23150, 20316, 'no_lang_code', 'name', 'Sciprom (Switzerland)'),
(23151, 20317, 'en', 'name', 'Voyager Sopris Learning'),
(23152, 20318, 'no_lang_code', 'name', 'Sorain Cecchini Tecno (Italy)'),
(23153, 20319, 'no_lang_code', 'name', 'Sivers IMA (Sweden)'),
(23154, 20320, 'en', 'name', 'Six County Association of Governments'),
(23155, 20321, 'no_lang_code', 'name', 'Sixteen Films (United Kingdom)'),
(23156, 20322, 'en', 'name', 'National School of Public Health, Management and Professional Development'),
(23157, 20322, 'ro', 'name', 'Şcoala NaÅ£ională de Sănătate Publică, Management şi PerfecÅ£ionare Ć®n Domeniul Sanitar'),
(23158, 20323, 'en', 'name', 'Scope'),
(23159, 20324, 'en', 'name', 'Danish National Archives'),
(23160, 20324, 'da', 'name', 'Statens Arkivers'),
(23161, 20325, 'no_lang_code', 'name', 'SKA Polska (Poland)'),
(23162, 20326, 'no_lang_code', 'name', 'Skanska (Sweden)'),
(23163, 20327, 'en', 'name', 'Scottish Funding Council'),
(23164, 20328, 'en', 'name', 'Scottish Qualifications Authority'),
(23165, 20329, 'en', 'name', 'Scottsdale Community College'),
(23166, 20330, 'en', 'name', 'Soul City Institute for Health & Development Communication'),
(23167, 20331, 'no_lang_code', 'name', 'Sound&Fury'),
(23168, 20332, 'no_lang_code', 'name', 'SimuTech Group (United States)'),
(23169, 20333, 'no_lang_code', 'name', 'Statiflo International (United Kingdom)'),
(23170, 20334, 'en', 'name', 'Statistical Office of the Republic of Slovenia'),
(23171, 20335, 'it', 'name', 'Sinform'),
(23172, 20336, 'no_lang_code', 'name', 'Scour Prevention Systems (United Kingdom)'),
(23173, 20337, 'no_lang_code', 'name', 'Statistics Collaborative'),
(23174, 20338, 'da', 'name', 'Danmarks Statistik'),
(23175, 20338, 'en', 'name', 'Statistics Denmark'),
(23176, 20339, 'fr', 'name', 'OcƩanopolis'),
(23177, 20340, 'en', 'name', 'National Institute for Nuclear, Chemical and Biological Protection'),
(23178, 20341, 'en', 'name', 'State and University Library'),
(23179, 20342, 'no_lang_code', 'name', 'Stavanger Installasjon (Norway)'),
(23180, 20343, 'no_lang_code', 'name', 'STC Group (Netherlands)'),
(23181, 20344, 'en', 'name', 'SkellefteƄ Municipality'),
(23182, 20345, 'no_lang_code', 'name', 'MathWorks (United Kingdom)'),
(23183, 20346, 'no_lang_code', 'name', 'SKF (Germany)'),
(23184, 20347, 'no_lang_code', 'name', 'Soundprint Media Center'),
(23185, 20348, 'no_lang_code', 'name', 'Source BioScience (United Kingdom)'),
(23186, 20349, 'no_lang_code', 'name', 'Source Production & Equipment Company (United States)'),
(23187, 20350, 'no_lang_code', 'name', 'Cortech Solutions (United States)'),
(23188, 20351, 'no_lang_code', 'name', 'Stelar (Italy)'),
(23189, 20352, 'no_lang_code', 'name', 'Stellar Biotechnologies (United States)'),
(23190, 20353, 'no_lang_code', 'name', 'SKF (United Kingdom)'),
(23191, 20354, 'no_lang_code', 'name', 'Microlime (Portugal)'),
(23192, 20355, 'no_lang_code', 'name', 'Stellarray (United States)'),
(23193, 20356, 'no_lang_code', 'name', 'Skunkwerks Software (Canada)'),
(23194, 20357, 'no_lang_code', 'name', 'Souriau (France)'),
(23195, 20358, 'en', 'name', 'Skyline High School'),
(23196, 20359, 'no_lang_code', 'name', 'Skymark (United Kingdom)'),
(23197, 20360, 'no_lang_code', 'name', 'Stemina Biomarker Discovery (United States)'),
(23198, 20361, 'no_lang_code', 'name', 'Scytl (Spain)'),
(23199, 20362, 'no_lang_code', 'name', 'GMV Innovating Solutions (Portugal)'),
(23200, 20363, 'en', 'name', 'Science, Technology, Engineering and Mathematics Network'),
(23201, 20364, 'en', 'name', 'Department of Health'),
(23202, 20365, 'no_lang_code', 'name', 'Skyworks Solutions (United Kingdom)'),
(23203, 20366, 'no_lang_code', 'name', 'Stena (Sweden)'),
(23204, 20367, 'en', 'name', 'Danish Meat Trade College'),
(23205, 20368, 'en', 'name', 'Drug-Free NC'),
(23206, 20369, 'no_lang_code', 'name', 'Slider Studio (United Kingdom)'),
(23207, 20370, 'no_lang_code', 'name', 'WIND Hellas (Greece)'),
(23208, 20371, 'en', 'name', 'South Carolina Sea Grant Consortium'),
(23209, 20372, 'en', 'name', 'South Carolina Department of Education'),
(23210, 20373, 'en', 'name', 'Slovenian Institute for Adult Education'),
(23211, 20374, 'no_lang_code', 'name', 'Gruppo Scienzia Machinale (Italy)'),
(23212, 20375, 'no_lang_code', 'name', 'Steven Winter Associates (United States)'),
(23213, 20376, 'en', 'name', 'South Great Plain Regional Innovation Agency'),
(23214, 20377, 'en', 'name', 'South Side Help Center'),
(23215, 20378, 'en', 'name', 'Sea Studios Foundation'),
(23216, 20379, 'en', 'name', 'South East Texas Council on Alcohol and Drug Abuse'),
(23217, 20380, 'en', 'name', 'South Thames College'),
(23218, 20381, 'no_lang_code', 'name', 'South Yorkshire Passenger Transport Executive'),
(23219, 20382, 'no_lang_code', 'name', 'Smart Reamer Drilling Systems (United Kingdom)'),
(23220, 20383, 'en', 'name', 'South West Regional Authority'),
(23221, 20384, 'no_lang_code', 'name', 'Smart Software (United States)'),
(23222, 20385, 'no_lang_code', 'name', 'Smartec (Switzerland)'),
(23223, 20386, 'no_lang_code', 'name', 'SEA-invest (France)'),
(23224, 20387, 'en', 'name', 'South Eastern Europe Telecommunications Academy'),
(23225, 20388, 'no_lang_code', 'name', 'SeaChange Pharmaceuticals (United States)'),
(23226, 20389, 'no_lang_code', 'name', 'Seafarm (Netherlands)'),
(23227, 20390, 'no_lang_code', 'name', 'Southern Biotechnology Associates'),
(23228, 20391, 'no_lang_code', 'name', 'Stichting Accessibility'),
(23229, 20392, 'no_lang_code', 'name', 'Stichting AlmereGrid'),
(23230, 20393, 'no_lang_code', 'name', 'SmileSonica (Canada)'),
(23231, 20394, 'en', 'name', 'Southern Adventist University'),
(23232, 20395, 'no_lang_code', 'name', 'Smith & Nephew (United Kingdom)'),
(23233, 20396, 'nl', 'name', 'Stichting Bouwresearch'),
(23234, 20397, 'no_lang_code', 'name', 'Smithers Group (United Kingdom)'),
(23235, 20398, 'no_lang_code', 'name', 'Smiths Detection (Canada)'),
(23236, 20399, 'no_lang_code', 'name', 'Smiths Group (Germany)'),
(23237, 20400, 'en', 'name', 'Centre for Agriculture and Environment Foundation'),
(23238, 20400, 'nl', 'name', 'Centrum voor Landbouw en Milieu'),
(23239, 20401, 'no_lang_code', 'name', 'Smiths Detection (France)'),
(23240, 20402, 'no_lang_code', 'name', 'Seagate (United Kingdom)'),
(23241, 20403, 'en', 'name', 'Sealaska Heritage Institute'),
(23242, 20404, 'en', 'name', 'Center for Technology & Innovation Management'),
(23243, 20405, 'no_lang_code', 'name', 'SMST Designers & Constructors (Netherlands)'),
(23244, 20406, 'no_lang_code', 'name', 'SMT Machine (Sweden)'),
(23245, 20407, 'en', 'name', 'Digital Heritage Netherlands'),
(23246, 20408, 'no_lang_code', 'name', 'SEAS-NVE (Denmark)'),
(23247, 20409, 'en', 'name', 'Dutch Polymer Institute'),
(23248, 20410, 'no_lang_code', 'name', 'SeaSpace (United States)'),
(23249, 20411, 'en', 'name', 'Seattle Public Schools'),
(23250, 20412, 'no_lang_code', 'name', 'Exechon (Sweden)'),
(23251, 20413, 'no_lang_code', 'name', 'SR Technics (Ireland)'),
(23252, 20414, 'en', 'name', 'Southwest Georgia Area Health Education Center'),
(23253, 20415, 'en', 'name', 'Southwest Louisiana Area Health Education Center'),
(23254, 20416, 'en', 'name', 'Southwest Texas Junior College'),
(23255, 20417, 'en', 'name', 'Southwest Virginia Community College'),
(23256, 20418, 'en', 'name', 'Southwestern College - Kansas'),
(23257, 20419, 'nl', 'name', 'Stichting Ecobaby'),
(23258, 20420, 'en', 'name', 'Alliance for Permanent Access'),
(23259, 20421, 'en', 'name', 'European Rail Research Institute'),
(23260, 20422, 'pt', 'name', 'Secretaria Regional do Ambiente e Recursos Naturais'),
(23261, 20423, 'en', 'name', 'Snow College'),
(23262, 20424, 'no_lang_code', 'name', 'Syntesa (Faroe Islands)'),
(23263, 20425, 'no_lang_code', 'name', 'NTN-SNR (France)'),
(23264, 20426, 'no_lang_code', 'name', 'Space Environment Corporation (United States)'),
(23265, 20427, 'no_lang_code', 'name', 'Sogin (Italy)'),
(23266, 20428, 'nl', 'name', 'Dedicon'),
(23267, 20429, 'no_lang_code', 'name', 'Space Syntax (United Kingdom)'),
(23268, 20430, 'en', 'name', 'Space Telescope European Coordinating Facility'),
(23269, 20431, 'en', 'name', 'Social and Environmental Research Institute'),
(23270, 20432, 'no_lang_code', 'name', 'Span'),
(23271, 20433, 'no_lang_code', 'name', 'Socialdata (Germany)'),
(23272, 20434, 'no_lang_code', 'name', 'Sociedad Anónima Industrias Celulosa Aragonesa (Spain)'),
(23273, 20435, 'no_lang_code', 'name', 'Air Products (Spain)'),
(23274, 20436, 'no_lang_code', 'name', 'Spartan Solutions (United Kingdom)'),
(23275, 20437, 'en', 'name', 'Green IT Amsterdam'),
(23276, 20438, 'no_lang_code', 'name', 'SpazioDati (Italy)'),
(23277, 20439, 'es', 'name', 'Sociedad Hispano Mundial'),
(23278, 20440, 'no_lang_code', 'name', 'SecurityMatters (Netherlands)'),
(23279, 20441, 'no_lang_code', 'name', 'Sedia Biosciences (United States)'),
(23280, 20442, 'no_lang_code', 'name', 'Seecon (Switzerland)'),
(23281, 20443, 'en', 'name', 'Internet Memory Foundation'),
(23282, 20444, 'no_lang_code', 'name', 'Seedri Puukool'),
(23283, 20445, 'no_lang_code', 'name', 'SocietĆ  Italiana Apparecchi Scientifici (Italy)'),
(23284, 20446, 'no_lang_code', 'name', 'Seekda (Austria)'),
(23285, 20447, 'no_lang_code', 'name', 'Segasist Technologies (Canada)'),
(23286, 20448, 'en', 'name', 'Sejet Plant Breeding'),
(23287, 20449, 'no_lang_code', 'name', 'Selcom (Italy)'),
(23288, 20450, 'no_lang_code', 'name', 'Specto Natura'),
(23289, 20451, 'no_lang_code', 'name', 'SĆØleco (Italy)'),
(23290, 20452, 'no_lang_code', 'name', 'SpectraGenetics (United States)'),
(23291, 20453, 'en', 'name', 'Herbs for Horses'),
(23292, 20454, 'no_lang_code', 'name', 'Selective Genetics (United States)'),
(23293, 20455, 'nl', 'name', 'Kenniscentrum Papier en Karton'),
(23294, 20456, 'no_lang_code', 'name', 'SocietĆ  Industrie Chimiche ITaliane (Italy)'),
(23295, 20457, 'en', 'name', 'Knowledge Centre Wind turbine Materials and Constructions'),
(23296, 20458, 'nl', 'name', 'Stichting Lettinga Associates'),
(23297, 20459, 'no_lang_code', 'name', 'Snam (Italy)'),
(23298, 20460, 'no_lang_code', 'name', 'SelenBio (United States)'),
(23299, 20461, 'nl', 'name', 'Nationaal ICT Instituut in de Zorg'),
(23300, 20462, 'no_lang_code', 'name', 'SocietĆ  Italiana Trasporti Automobilistici (Italy)'),
(23301, 20463, 'no_lang_code', 'name', 'Plastic Electronics (Netherlands)'),
(23302, 20464, 'en', 'name', 'STM Association'),
(23303, 20465, 'no_lang_code', 'name', 'Societate Comerciala Pentru Cercetare, Proiectare si Productie de Echipamente si Instalatii de Automatizare (Romania)'),
(23304, 20466, 'no_lang_code', 'name', 'Sellafield (United Kingdom)'),
(23305, 20467, 'no_lang_code', 'name', 'Spirent Communications (United Kingdom)'),
(23306, 20468, 'no_lang_code', 'name', 'International Game Technology (Canada)'),
(23307, 20469, 'no_lang_code', 'name', 'Spok'),
(23308, 20470, 'no_lang_code', 'name', 'Sintex (Czechia)'),
(23309, 20471, 'no_lang_code', 'name', 'Transnet (South Africa)'),
(23310, 20472, 'fr', 'name', 'Chateau Guiraud'),
(23311, 20473, 'no_lang_code', 'name', 'Seluxit (Denmark)'),
(23312, 20474, 'nl', 'name', 'Vilans'),
(23313, 20475, 'nl', 'name', 'Technologiestichting STW'),
(23314, 20475, 'en', 'name', 'Technology Foundation STW'),
(23315, 20476, 'nl', 'name', 'Waste'),
(23316, 20477, 'en', 'name', 'Wetlands International'),
(23317, 20478, 'no_lang_code', 'name', 'Confers (United Kingdom)'),
(23318, 20479, 'en', 'name', 'Sullivan Veterinary Clinic'),
(23319, 20480, 'en', 'name', 'Stockholm International Peace Research Institute'),
(23320, 20481, 'sv', 'name', 'Teknikens Hus'),
(23321, 20481, 'en', 'name', 'The Technology House'),
(23322, 20482, 'no_lang_code', 'name', 'Spree NDT'),
(23323, 20483, 'no_lang_code', 'name', 'Spring Bank Pharmaceuticals (United States)'),
(23324, 20484, 'no_lang_code', 'name', 'Sembiosys Genetics (Canada)'),
(23325, 20485, 'de', 'name', 'Deutsches Hygiene-Museum'),
(23326, 20485, 'en', 'name', 'German Hygiene Museum'),
(23327, 20486, 'no_lang_code', 'name', 'Home Bank (United States)'),
(23328, 20487, 'no_lang_code', 'name', 'Spring Techno (Germany)'),
(23329, 20488, 'en', 'name', 'SEMI'),
(23330, 20489, 'no_lang_code', 'name', 'Stirling Cryogenics (Netherlands)'),
(23331, 20490, 'no_lang_code', 'name', 'Stirling Dynamics (United Kingdom)'),
(23332, 20491, 'no_lang_code', 'name', 'Sprout Design (United Kingdom)'),
(23333, 20492, 'en', 'name', 'Seminole State College Oklahoma'),
(23334, 20493, 'no_lang_code', 'name', 'Stirling Technology (United States)'),
(23335, 20494, 'no_lang_code', 'name', 'Squaris'),
(23336, 20495, 'no_lang_code', 'name', 'Star-Oddi (Iceland)'),
(23337, 20496, 'no_lang_code', 'name', 'STM Products (Italy)'),
(23338, 20497, 'no_lang_code', 'name', 'Srico (United States)'),
(23339, 20498, 'en', 'name', 'Stockport Metropolitan Borough Council'),
(23340, 20499, 'no_lang_code', 'name', 'Oracle (Spain)'),
(23341, 20500, 'no_lang_code', 'name', 'Stocznia Gdynia (Poland)'),
(23342, 20501, 'no_lang_code', 'name', 'SRM Reti e MobilitĆ  (Italy)'),
(23343, 20502, 'no_lang_code', 'name', 'SunPower (Germany)'),
(23344, 20503, 'no_lang_code', 'name', 'Sunamp (United Kingdom)'),
(23345, 20504, 'no_lang_code', 'name', 'SSBV Aerospace & Technology Group (United Kingdom)'),
(23346, 20505, 'no_lang_code', 'name', 'Stokast (Canada)'),
(23347, 20506, 'no_lang_code', 'name', 'CFI Technologies (United States)'),
(23348, 20507, 'no_lang_code', 'name', 'Strategic Solutions Consulting (United States)'),
(23349, 20508, 'no_lang_code', 'name', 'Sundew Technologies (United States)'),
(23350, 20509, 'no_lang_code', 'name', 'SSM Computer Systems (Cyprus)'),
(23351, 20510, 'no_lang_code', 'name', 'Stone Ridge Technology (United States)'),
(23352, 20511, 'no_lang_code', 'name', 'SSPA (Sweden)'),
(23353, 20512, 'en', 'name', 'St. Albans School'),
(23354, 20513, 'no_lang_code', 'name', 'Sunfire (Germany)'),
(23355, 20514, 'en', 'name', 'Saint Gregory''s Catholic College'),
(23356, 20515, 'no_lang_code', 'name', 'Stopford Energy & Environment (United Kingdom)'),
(23357, 20516, 'no_lang_code', 'name', 'Senceive (United Kingdom)'),
(23358, 20517, 'no_lang_code', 'name', 'Suni Medical Imaging (United States)'),
(23359, 20518, 'no_lang_code', 'name', 'Seneca Productions (United Kingdom)'),
(23360, 20519, 'no_lang_code', 'name', 'Storvik (Norway)'),
(23361, 20520, 'no_lang_code', 'name', 'Arcadis (Canada)'),
(23362, 20521, 'no', 'name', 'Seniornett'),
(23363, 20522, 'no_lang_code', 'name', 'Sunplugged (Austria)'),
(23364, 20523, 'no_lang_code', 'name', 'StrateCision (United States)'),
(23365, 20524, 'en', 'name', 'Strategic Community Services'),
(23366, 20525, 'no_lang_code', 'name', 'S-Solar (Sweden)'),
(23367, 20526, 'no_lang_code', 'name', 'Stratophase (United Kingdom)'),
(23368, 20527, 'en', 'name', 'Bulgarian Association of Software Companies'),
(23369, 20528, 'no_lang_code', 'name', 'Aer Lingus (Ireland)'),
(23370, 20529, 'no_lang_code', 'name', 'Suttle-Straus (United States)'),
(23371, 20530, 'no_lang_code', 'name', 'Supanetics (United Kingdom)'),
(23372, 20531, 'no_lang_code', 'name', 'Super Pulse (United States)'),
(23373, 20532, 'en', 'name', 'TeamPatent'),
(23374, 20533, 'no_lang_code', 'name', 'Kƶrber (Germany)'),
(23375, 20534, 'no_lang_code', 'name', 'Visual Health Information'),
(23376, 20535, 'no_lang_code', 'name', 'Team (Italy)'),
(23377, 20536, 'no_lang_code', 'name', 'SCI Engineered Materials (United States)'),
(23378, 20537, 'no_lang_code', 'name', 'Superform (United Kingdom)'),
(23379, 20538, 'no_lang_code', 'name', 'Stromatec (United States)'),
(23380, 20539, 'no_lang_code', 'name', 'Tecan (United Kingdom)'),
(23381, 20540, 'no_lang_code', 'name', 'SensoMotoric Instruments (Germany)'),
(23382, 20541, 'no_lang_code', 'name', 'Supply Network Shannon (Ireland)'),
(23383, 20542, 'en', 'name', 'Supreme Council of Antiquities'),
(23384, 20543, 'no_lang_code', 'name', 'SMART Group (United Kingdom)'),
(23385, 20544, 'no_lang_code', 'name', 'Sensor Coating Systems (United Kingdom)'),
(23386, 20545, 'no_lang_code', 'name', 'Surface Phenomena Researches Group (Russia)'),
(23387, 20546, 'no_lang_code', 'name', 'Surface Transforms (United Kingdom)'),
(23388, 20547, 'no_lang_code', 'name', 'Savcor (Finland)'),
(23389, 20548, 'no_lang_code', 'name', 'Techin (Poland)'),
(23390, 20549, 'no_lang_code', 'name', 'Surflay Nanotec (Germany)'),
(23391, 20550, 'no_lang_code', 'name', 'Techint (Italy)'),
(23392, 20551, 'en', 'name', 'Surrey County Council'),
(23393, 20552, 'no_lang_code', 'name', 'Techneat Engineering (United Kingdom)'),
(23394, 20553, 'no_lang_code', 'name', 'Sensor Developments (United States)'),
(23395, 20554, 'no_lang_code', 'name', 'Sustainable Energy Systems (United Kingdom)'),
(23396, 20555, 'en', 'name', 'Technical Chamber of Greece'),
(23397, 20556, 'no_lang_code', 'name', 'Sensor-Technik Wiedemann (Germany)'),
(23398, 20557, 'no_lang_code', 'name', 'Sustainable Venture Development Partners (United Kingdom)'),
(23399, 20558, 'no_lang_code', 'name', 'Technical Database Services (United States)'),
(23400, 20559, 'no_lang_code', 'name', 'Econova (Sweden)'),
(23401, 20560, 'no_lang_code', 'name', 'Boehringer Ingelheim (Sweden)'),
(23402, 20561, 'no_lang_code', 'name', 'Sviluppo Toscana (Italy)'),
(23403, 20562, 'no_lang_code', 'name', 'Senstar (Canada)'),
(23404, 20563, 'en', 'name', 'Development of Research and Technologies for Sustainable and Seismically Safe Building'),
(23405, 20564, 'no_lang_code', 'name', 'Sensys Networks (United States)'),
(23406, 20565, 'no_lang_code', 'name', 'SVUM (Czechia)'),
(23407, 20566, 'no_lang_code', 'name', 'Sentinel Oncology (United Kingdom)'),
(23408, 20567, 'no_lang_code', 'name', 'Separation Design Group'),
(23409, 20568, 'en', 'name', 'Society for Science & the Public'),
(23410, 20569, 'no_lang_code', 'name', 'ScienCentral (United States)'),
(23411, 20570, 'no_lang_code', 'name', 'Paralab (Portugal)'),
(23412, 20571, 'no_lang_code', 'name', 'Swamp Optics (United States)'),
(23413, 20572, 'en', 'name', 'Student Biotechnology Network'),
(23414, 20573, 'no_lang_code', 'name', 'Swanbarton (United Kingdom)'),
(23415, 20574, 'en', 'name', 'Students on Ice'),
(23416, 20575, 'no_lang_code', 'name', 'Sequenom (United States)'),
(23417, 20576, 'no_lang_code', 'name', 'SEQUOIA (Italy)'),
(23418, 20577, 'en', 'name', 'Research Association for Tunnels and Transport Facilities'),
(23419, 20577, 'de', 'name', 'Studiengesellschaft für Tunnel und Verkehrsanlagen'),
(23420, 20578, 'no_lang_code', 'name', 'Sequoia Environmental Remediation (Canada)'),
(23421, 20579, 'no_lang_code', 'name', 'Luftfartsverket (Sweden)'),
(23422, 20579, 'en', 'name', 'Swedish Civil Aviation Administration'),
(23423, 20580, 'no_lang_code', 'name', 'Studiengesellschaft für Eisenerzaufbereitung (Germany)'),
(23424, 20581, 'no_lang_code', 'name', 'Sequoia Scientific (United States)'),
(23425, 20582, 'it', 'name', 'Studio Ricerche Sociali'),
(23426, 20583, 'en', 'name', 'Scottish Agricultural Science Agency'),
(23427, 20584, 'en', 'name', 'Tver State University'),
(23428, 20584, 'ru', 'name', 'Тверской Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(23429, 20585, 'no_lang_code', 'name', 'Sequoyah (Belgium)'),
(23430, 20586, 'no_lang_code', 'name', 'Seratec (Germany)'),
(23431, 20587, 'no_lang_code', 'name', 'Abzena (United Kingdom)'),
(23432, 20588, 'no_lang_code', 'name', 'Smart Polymers Research Corporation (United States)'),
(23433, 20589, 'en', 'name', 'Substance Abuse Free Environment'),
(23434, 20590, 'no_lang_code', 'name', 'Substrakt (United Kingdom)'),
(23435, 20591, 'sv', 'name', 'Sjofartsverket'),
(23436, 20591, 'en', 'name', 'Swedish Maritime Administration'),
(23437, 20592, 'no_lang_code', 'name', 'Südwestrundfunk (Germany)'),
(23438, 20593, 'no_lang_code', 'name', 'SERE-Tech Innovation (United Kingdom)'),
(23439, 20594, 'no_lang_code', 'name', 'Serim Research Corporation (United States)'),
(23440, 20595, 'no_lang_code', 'name', 'Sermes CRO (Spain)'),
(23441, 20596, 'no_lang_code', 'name', 'Power Lake (Sweden)'),
(23442, 20597, 'en', 'name', 'Experimental Station for the Industry of the Essential Oils and Citrus Products'),
(23443, 20597, 'it', 'name', 'Stazione Sperimentale per le Industrie delle Essenze e dei Derivati dagli Agrumi'),
(23444, 20598, 'no_lang_code', 'name', 'Meggitt (France)'),
(23445, 20599, 'no_lang_code', 'name', 'Unisign (Netherlands)'),
(23446, 20600, 'no_lang_code', 'name', 'SweTree Technologies (Sweden)'),
(23447, 20601, 'en', 'name', 'Swindon Borough Council'),
(23448, 20602, 'nl', 'name', 'Stichting Technisch Centrum vd Keramische Industrie'),
(23449, 20603, 'fr', 'name', 'Bureau suisse de prƩvention des accidents'),
(23450, 20603, 'en', 'name', 'Swiss Council for Accident Prevention'),
(23451, 20604, 'en', 'name', 'Technical University of Applied Sciences Wildau'),
(23452, 20604, 'de', 'name', 'Technische Hochschule Wildau'),
(23453, 20605, 'de', 'name', 'Technisches Museum Wien'),
(23454, 20605, 'en', 'name', 'Vienna Technical Museum'),
(23455, 20606, 'no_lang_code', 'name', 'Imenco (Norway)'),
(23456, 20607, 'de', 'name', 'Bundesamt für Statistik'),
(23457, 20607, 'en', 'name', 'Federal Statistical Office'),
(23458, 20607, 'fr', 'name', 'Office fƩdƩral de la statistique'),
(23459, 20607, 'it', 'name', 'Ufficio federale di statistica'),
(23460, 20607, 'rm', 'name', 'Uffizi federal da statistica'),
(23461, 20608, 'no_lang_code', 'name', 'Technodyne International (United Kingdom)'),
(23462, 20609, 'no_lang_code', 'name', 'TechnoFirst (France)'),
(23463, 20610, 'no_lang_code', 'name', 'Thalia Design Automation (United Kingdom)'),
(23464, 20611, 'no_lang_code', 'name', 'Groupe Lacroix (France)'),
(23465, 20612, 'nl', 'name', 'FOD Financiƫn'),
(23466, 20612, 'de', 'name', 'FƖD Finanzen'),
(23467, 20612, 'en', 'name', 'Service Public Federal Finances'),
(23468, 20613, 'no_lang_code', 'name', 'Meyer Burger Technology (Switzerland)'),
(23469, 20614, 'en', 'name', 'Missoula County Public Schools'),
(23470, 20615, 'es', 'name', 'Servicio AragonƩs de Salud'),
(23471, 20616, 'no_lang_code', 'name', 'Technologie Agentur Struktur Keramik (Germany)'),
(23472, 20617, 'en', 'name', 'Swiss Internet Security Alliance'),
(23473, 20618, 'en', 'name', 'American University of Paris'),
(23474, 20619, 'en', 'name', 'Association for Science and Discovery Centres'),
(23475, 20620, 'no_lang_code', 'name', 'Services and Studies for Air Navigation and Aeronautical Safety'),
(23476, 20621, 'ro', 'name', 'Serviciul Hidrmetrologic de Stat'),
(23477, 20621, 'en', 'name', 'State Hydrometeorological Service'),
(23478, 20622, 'en', 'name', 'Switchboard of Miami'),
(23479, 20623, 'en', 'name', 'Swope Health Services'),
(23480, 20624, 'no_lang_code', 'name', 'Systems, Applications & Products in Data Processing (United Kingdom)'),
(23481, 20625, 'en', 'name', 'British Constructional Steelwork Association'),
(23482, 20626, 'en', 'name', 'British School at Rome'),
(23483, 20627, 'no_lang_code', 'name', 'Kharkov Technologies'),
(23484, 20628, 'no_lang_code', 'name', 'Setas (Turkey)'),
(23485, 20629, 'en', 'name', 'Center of Informatization in the Sphere of Culture'),
(23486, 20630, 'en', 'name', 'Sylvia Lawry Centre for Multiple Sclerosis Research'),
(23487, 20631, 'no_lang_code', 'name', 'Technomar (Germany)'),
(23488, 20632, 'no_lang_code', 'name', 'TechnoPhage (Portugal)'),
(23489, 20633, 'en', 'name', 'Children''s Society'),
(23490, 20634, 'no_lang_code', 'name', 'Portic Barcelona'),
(23491, 20635, 'en', 'name', 'New Mexico Museum of Natural History and Science'),
(23492, 20636, 'en', 'name', 'The Concrete Centre'),
(23493, 20637, 'en', 'name', 'Technopolis'),
(23494, 20638, 'no_lang_code', 'name', 'Symetrica Security (United Kingdom)'),
(23495, 20639, 'en', 'name', 'Concrete Society'),
(23496, 20640, 'en', 'name', 'Confederation of British Metalforming'),
(23497, 20641, 'no_lang_code', 'name', 'Technoport (Luxembourg)'),
(23498, 20642, 'no_lang_code', 'name', 'Saltworks Technologies (Canada)'),
(23499, 20643, 'no_lang_code', 'name', 'SymTrend (United States)'),
(23500, 20644, 'no_lang_code', 'name', 'Technostics (United Kingdom)'),
(23501, 20645, 'no_lang_code', 'name', 'Synapse Biomedical (United States)'),
(23502, 20646, 'no_lang_code', 'name', 'TechnoVax (United States)'),
(23503, 20647, 'no_lang_code', 'name', 'SynChem (United States)'),
(23504, 20648, 'no_lang_code', 'name', 'Tecmic (Portugal)'),
(23505, 20649, 'no_lang_code', 'name', 'Tecnia'),
(23506, 20650, 'no_lang_code', 'name', 'Teinsa (Spain)'),
(23507, 20651, 'it', 'name', 'Tecnoalimenti'),
(23508, 20652, 'no_lang_code', 'name', 'Synergetics (Belgium)'),
(23509, 20653, 'no_lang_code', 'name', 'Merinova (Finland)'),
(23510, 20654, 'en', 'name', 'Dr Edward Koch Foundation'),
(23511, 20655, 'en', 'name', 'Environmental and Sustainable Construction Association'),
(23512, 20656, 'no_lang_code', 'name', 'Positron (United States)'),
(23513, 20657, 'no_lang_code', 'name', 'Tecnologia e Engenharia de Materiais (Portugal)'),
(23514, 20658, 'no_lang_code', 'name', 'Synome (United Kingdom)'),
(23515, 20659, 'no_lang_code', 'name', 'Spolchemie (Czechia)'),
(23516, 20659, 'cs', 'name', 'Spolek pro chemickou a hutní výrobu'),
(23517, 20660, 'en', 'name', 'European Committee of Environmental Technology Suppliers Associations'),
(23518, 20661, 'no_lang_code', 'name', 'ReNeuron (United Kingdom)'),
(23519, 20662, 'no_lang_code', 'name', 'Ipsen (United Kingdom)'),
(23520, 20663, 'no_lang_code', 'name', 'Synthesia Group (Spain)'),
(23521, 20664, 'no_lang_code', 'name', 'TecnologĆ­as y Equipos para el Medio Ambiente (Spain)'),
(23522, 20665, 'no_lang_code', 'name', 'Synthesis and Research (Greece)'),
(23523, 20666, 'no_lang_code', 'name', 'Food Machinery Company (United Kingdom)'),
(23524, 20667, 'no_lang_code', 'name', 'Synthesites (Greece)'),
(23525, 20668, 'no_lang_code', 'name', 'Foundry (United Kingdom)'),
(23526, 20669, 'en', 'name', 'Geophysical Institute of Israel'),
(23527, 20669, 'he', 'name', 'המכון הגיאופיהי ×œ×™×©×Ø××œ'),
(23528, 20670, 'en', 'name', 'Getty Conservation Institute'),
(23529, 20671, 'no_lang_code', 'name', 'SyntheZyme (United States)'),
(23530, 20672, 'no_lang_code', 'name', 'TYPSA Group (Spain)'),
(23531, 20673, 'no_lang_code', 'name', 'Syntiron (United States)'),
(23532, 20674, 'en', 'name', 'Goulandris Natural History Museum'),
(23533, 20674, 'el', 'name', 'ĪœĪæĻ…ĻƒĪµĪÆĪæ ΓουλανΓρή Ī¦Ļ…ĻƒĪ¹ĪŗĪ®Ļ‚ Ī™ĻƒĻ„ĪæĻĪÆĪ±Ļ‚'),
(23534, 20675, 'no_lang_code', 'name', 'Subsea 7 (United Kingdom)'),
(23535, 20676, 'no_lang_code', 'name', 'Origo (Iceland)'),
(23536, 20677, 'no_lang_code', 'name', 'Finisar (Sweden)'),
(23537, 20678, 'no_lang_code', 'name', 'Next Technology Tecnotessile (Italy)'),
(23538, 20679, 'en', 'name', 'Austrian Society for Environment and Technology'),
(23539, 20679, 'de', 'name', 'Ɩsterreichische Gesellschaft für Umwelt und Technik'),
(23540, 20680, 'en', 'name', 'Ideas Foundation'),
(23541, 20681, 'no_lang_code', 'name', 'Synyo (Austria)'),
(23542, 20682, 'no_lang_code', 'name', 'Tecsol'),
(23543, 20683, 'no_lang_code', 'name', 'NETE (United States)'),
(23544, 20684, 'no_lang_code', 'name', 'Teem Photonics (France)'),
(23545, 20685, 'no_lang_code', 'name', 'Miba (United Kingdom)'),
(23546, 20686, 'en', 'name', 'World Obesity Federation'),
(23547, 20687, 'lv', 'name', 'Tehnoloģiju Attīstības Forums'),
(23548, 20688, 'en', 'name', 'Jerusalem Institute for Israel Studies'),
(23549, 20689, 'no_lang_code', 'name', 'Sysgo (Czechia)'),
(23550, 20690, 'no_lang_code', 'name', 'Tekkva Consult (Denmark)'),
(23551, 20691, 'no_lang_code', 'name', 'Team Neurodynamics (United States)'),
(23552, 20692, 'en', 'name', 'Learning Partnership'),
(23553, 20693, 'no_lang_code', 'name', 'Meyer Turku (Finland)'),
(23554, 20694, 'en', 'name', 'Safe Drinking Water Foundation'),
(23555, 20695, 'no_lang_code', 'name', 'The Maltsters'' Association of Great Britain (United Kingdom)'),
(23556, 20696, 'no_lang_code', 'name', 'Teknimed (France)'),
(23557, 20697, 'sv', 'name', 'LantmƤteriet'),
(23558, 20697, 'en', 'name', 'Swedish National Land Survey'),
(23559, 20698, 'no_lang_code', 'name', 'National Microelectronics Applications Centre (Ireland)'),
(23560, 20699, 'no_lang_code', 'name', 'Teknoloji Arastirma ve Gelistirme Endustriyel Urunler Bilisim Teknolojileri San Tic'),
(23561, 20700, 'no_lang_code', 'name', 'NAVSYS (United States)'),
(23562, 20701, 'no_lang_code', 'name', 'Systematic (Netherlands)'),
(23563, 20702, 'no_lang_code', 'name', 'Ogilvy (Greece)'),
(23564, 20703, 'no_lang_code', 'name', 'TomTom (Belgium)'),
(23565, 20704, 'no_lang_code', 'name', 'Systèmes d''Information à Référence Spatiale (France)'),
(23566, 20705, 'no_lang_code', 'name', 'TomTom (Germany)'),
(23567, 20706, 'no_lang_code', 'name', 'Polytec Research (Norway)'),
(23568, 20707, 'no_lang_code', 'name', 'Tele-Rilevamento Europa (Italy)'),
(23569, 20708, 'no_lang_code', 'name', 'Systemexpert Consulting'),
(23570, 20709, 'no_lang_code', 'name', 'Systemite (Sweden)'),
(23571, 20710, 'en', 'name', 'Ontario Aggregate Resources Corporation'),
(23572, 20711, 'no_lang_code', 'name', 'Cohort (United Kingdom)'),
(23573, 20712, 'no_lang_code', 'name', 'Cegos (Italy)'),
(23574, 20713, 'en', 'name', 'Orders of St John Care Trust'),
(23575, 20714, 'en', 'name', 'Telecommunications Policy Research Conference'),
(23576, 20715, 'no_lang_code', 'name', 'Endeavour (United Kingdom)'),
(23577, 20716, 'en', 'name', 'Protein Society'),
(23578, 20717, 'no_lang_code', 'name', 'Utility Systems Science and Software (United States)'),
(23579, 20718, 'no_lang_code', 'name', 'Teledyne Technologies (Canada)'),
(23580, 20719, 'no_lang_code', 'name', 'PowerCell (Sweden)'),
(23581, 20720, 'no_lang_code', 'name', 'Avid (Germany)'),
(23582, 20721, 'no_lang_code', 'name', 'Systran (France)'),
(23583, 20722, 'no_lang_code', 'name', 'Syzygy Memory Plastics (United States)'),
(23584, 20723, 'en', 'name', 'Population Reference Bureau'),
(23585, 20724, 'en', 'name', 'The Rotherham NHS Foundation Trust'),
(23586, 20725, 'no', 'name', 'Tel-Tek'),
(23587, 20726, 'no_lang_code', 'name', 'TQ Environmental (United Kingdom)'),
(23588, 20727, 'en', 'name', 'Runnymede Trust'),
(23589, 20728, 'no_lang_code', 'name', 'Teleprime (United States)'),
(23590, 20729, 'en', 'name', 'Sarah Samuels Center for Public Health & Evaluation'),
(23591, 20730, 'en', 'name', 'Sage Gateshead'),
(23592, 20731, 'no_lang_code', 'name', 'T-Connect (Italy)'),
(23593, 20732, 'no_lang_code', 'name', 'Teles (Germany)'),
(23594, 20733, 'no_lang_code', 'name', 'Verisante Technology (Canada)'),
(23595, 20734, 'no_lang_code', 'name', 'Technology Transfer and Innovation (Italy)'),
(23596, 20734, 'it', 'name', 'Trasferimento Tecnologico e Innovazione'),
(23597, 20735, 'no_lang_code', 'name', 'Swatch Group (Switzerland)'),
(23598, 20736, 'no_lang_code', 'name', 'Tacchella Macchine (Italy)'),
(23599, 20737, 'en', 'name', 'Swedish Foundry Association'),
(23600, 20738, 'no_lang_code', 'name', 'Tadiso (United States)'),
(23601, 20739, 'en', 'name', 'Swedish Institute of Assistive Technology'),
(23602, 20740, 'no_lang_code', 'name', 'TELINT RTD Consultancy Services (United Kingdom)'),
(23603, 20741, 'no_lang_code', 'name', 'TagArray (United States)'),
(23604, 20742, 'no_lang_code', 'name', 'Taitech (United States)'),
(23605, 20743, 'no_lang_code', 'name', 'Take The Wind (Portugal)'),
(23606, 20744, 'en', 'name', 'Mineral Products Association'),
(23607, 20745, 'en', 'name', 'Talcott Mountain Science Center for Student Involvement'),
(23608, 20746, 'no_lang_code', 'name', 'Talent Systems (Greece)'),
(23609, 20747, 'no_lang_code', 'name', 'Talisman (United States)'),
(23610, 20748, 'no_lang_code', 'name', 'Talkamatic (Sweden)'),
(23611, 20749, 'no_lang_code', 'name', 'Venture Chemicals (United States)'),
(23612, 20750, 'no_lang_code', 'name', 'WPP (Belgium)'),
(23613, 20751, 'no_lang_code', 'name', 'Talking Fingers (United States)'),
(23614, 20752, 'no_lang_code', 'name', 'Tobii (Sweden)'),
(23615, 20753, 'no_lang_code', 'name', 'THAP Group (United States)'),
(23616, 20754, 'en', 'name', 'Toiyabe Indian Health Project'),
(23617, 20755, 'no_lang_code', 'name', 'Tangerine (United Kingdom)'),
(23618, 20756, 'no_lang_code', 'name', 'TheraTarget (United States)'),
(23619, 20757, 'no_lang_code', 'name', 'Tolsa (Spain)'),
(23620, 20758, 'no_lang_code', 'name', 'Tanneries du Puy (France)'),
(23621, 20759, 'no_lang_code', 'name', 'Tantalus Systems (United States)'),
(23622, 20760, 'no_lang_code', 'name', 'HolidayCheck Group (Germany)'),
(23623, 20761, 'en', 'name', 'Tantramar Wetlands Centre'),
(23624, 20762, 'no_lang_code', 'name', 'Tokamak Energy (United Kingdom)'),
(23625, 20763, 'en', 'name', 'Tanzania Youth Alliance'),
(23626, 20764, 'no_lang_code', 'name', 'Thermacore (United Kingdom)'),
(23627, 20765, 'en', 'name', 'Tapestry Institute'),
(23628, 20766, 'no_lang_code', 'name', 'Tony Gee and Partners'),
(23629, 20767, 'no_lang_code', 'name', 'Kemrock Industries And Exports (Italy)'),
(23630, 20768, 'no_lang_code', 'name', 'Desso (Belgium)'),
(23631, 20769, 'no_lang_code', 'name', 'ThƩsame (France)'),
(23632, 20770, 'no_lang_code', 'name', 'Pharmaxis (Canada)'),
(23633, 20771, 'en', 'name', 'Federal Food Safety and Veterinary Office'),
(23634, 20772, 'en', 'name', 'Sage Colleges'),
(23635, 20773, 'fr', 'name', 'Topos Aquitaine'),
(23636, 20774, 'no_lang_code', 'name', 'Thien eDrives (Austria)'),
(23637, 20775, 'en', 'name', 'Republican Research and Practical Center for Epidemiology and Microbiology');
INSERT INTO `ror_settings` VALUES
(23638, 20775, 'be', 'name', 'Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(23639, 20776, 'no_lang_code', 'name', 'Toppan (United Kingdom)'),
(23640, 20777, 'no_lang_code', 'name', 'Positive Action'),
(23641, 20778, 'no_lang_code', 'name', 'Elwyn'),
(23642, 20779, 'no_lang_code', 'name', 'Piramal (Canada)'),
(23643, 20780, 'no_lang_code', 'name', 'Tordivel (Norway)'),
(23644, 20781, 'no_lang_code', 'name', 'THINK3 (France)'),
(23645, 20782, 'no_lang_code', 'name', 'Target (Germany)'),
(23646, 20783, 'no_lang_code', 'name', 'Torrecid (Spain)'),
(23647, 20784, 'no_lang_code', 'name', 'Third Dimension Technologies (United States)'),
(23648, 20785, 'no_lang_code', 'name', 'Anglo American (United Kingdom)'),
(23649, 20786, 'no_lang_code', 'name', 'Third Eye Diagnostics (United States)'),
(23650, 20787, 'no_lang_code', 'name', 'Toscana Biomarkers (Italy)'),
(23651, 20788, 'en', 'name', 'Marine Scotland'),
(23652, 20789, 'no_lang_code', 'name', 'Norcontel'),
(23653, 20790, 'en', 'name', 'Thomas Nelson Community College'),
(23654, 20791, 'no_lang_code', 'name', 'Tarp (United States)'),
(23655, 20792, 'no_lang_code', 'name', 'Polyraz (Israel)'),
(23656, 20793, 'en', 'name', 'Tartu Biotechnology Park'),
(23657, 20794, 'en', 'name', 'Tartu Science Park'),
(23658, 20795, 'no_lang_code', 'name', 'In-Situ (United States)'),
(23659, 20796, 'no_lang_code', 'name', 'Touch Graphics (United States)'),
(23660, 20797, 'no_lang_code', 'name', 'Posit Science (United States)'),
(23661, 20798, 'no_lang_code', 'name', 'Tauw Group (Netherlands)'),
(23662, 20799, 'no_lang_code', 'name', 'Semapa (Portugal)'),
(23663, 20800, 'no_lang_code', 'name', 'Touchstone Research Laboratory (United States)'),
(23664, 20801, 'en', 'name', 'Touring Club Italiano'),
(23665, 20802, 'fr', 'name', 'Tourisme Transports Territoires Environnement Conseil'),
(23666, 20803, 'no_lang_code', 'name', 'Ametek (United Kingdom)'),
(23667, 20804, 'en', 'name', 'National Cancer Registrars Association'),
(23668, 20805, 'en', 'name', 'TB HIV Care Association'),
(23669, 20806, 'no_lang_code', 'name', 'TP Vision (Belgium)'),
(23670, 20807, 'no_lang_code', 'name', 'TBC Innovations (France)'),
(23671, 20808, 'no_lang_code', 'name', 'TBZ PARIV (Germany)'),
(23672, 20809, 'no_lang_code', 'name', 'TC Scientific (Canada)'),
(23673, 20810, 'no_lang_code', 'name', 'ReProtect (United States)'),
(23674, 20811, 'en', 'name', 'Together Enhancing Awareness Coalition'),
(23675, 20812, 'no_lang_code', 'name', 'Thor Technologies (United States)'),
(23676, 20813, 'en', 'name', 'Austrian Institute of Spatial Planning'),
(23677, 20814, 'no_lang_code', 'name', 'Zumtobel Group (United Kingdom)'),
(23678, 20815, 'no_lang_code', 'name', 'Tracasa (Spain)'),
(23679, 20816, 'no_lang_code', 'name', 'Ventiva (United States)'),
(23680, 20817, 'en', 'name', 'Colorado Women''s College'),
(23681, 20818, 'no_lang_code', 'name', 'TenCate (Netherlands)'),
(23682, 20819, 'en', 'name', 'San Diego Mesa College'),
(23683, 20820, 'no_lang_code', 'name', 'Ai Corporation (United Kingdom)'),
(23684, 20821, 'en', 'name', 'Tennessee Voices for Children'),
(23685, 20822, 'en', 'name', 'Tennessee Wesleyan College'),
(23686, 20823, 'no_lang_code', 'name', 'Burness Corlett Three Quays (United Kingdom)'),
(23687, 20824, 'en', 'name', 'Three Rivers Community College'),
(23688, 20825, 'no_lang_code', 'name', 'FitBionic (United States)'),
(23689, 20826, 'sv', 'name', 'Industrins Kraft Abp'),
(23690, 20826, 'no_lang_code', 'name', 'Teollisuuden Voima (Finland)'),
(23691, 20827, 'no_lang_code', 'name', 'Aqua Metrology Systems (United States)'),
(23692, 20828, 'no_lang_code', 'name', 'Tractell (United States)'),
(23693, 20829, 'no_lang_code', 'name', 'Permobil (United States)'),
(23694, 20830, 'en', 'name', 'Thresholds'),
(23695, 20831, 'en', 'name', 'Trades Union Congress'),
(23696, 20832, 'no_lang_code', 'name', 'Teracom (Sweden)'),
(23697, 20833, 'no_lang_code', 'name', 'Traficon (Finland)'),
(23698, 20834, 'no_lang_code', 'name', 'SAS Institute (United States)'),
(23699, 20835, 'no_lang_code', 'name', 'THT Control Oy (Finland)'),
(23700, 20836, 'no_lang_code', 'name', 'Thunderhead Engineering (United States)'),
(23701, 20837, 'en', 'name', 'Trans European Policy Studies Association'),
(23702, 20838, 'no_lang_code', 'name', 'TeraPore Technologies (United States)'),
(23703, 20839, 'no_lang_code', 'name', 'WSP Sverige (Sweden)'),
(23704, 20840, 'no_lang_code', 'name', 'TransƉnergie (France)'),
(23705, 20841, 'da', 'name', 'Thomas B Thriges Fond'),
(23706, 20842, 'no_lang_code', 'name', 'Transfaction (United Kingdom)'),
(23707, 20843, 'no_lang_code', 'name', 'Transfer Devices (United States)'),
(23708, 20844, 'es', 'name', 'TICBioMed'),
(23709, 20845, 'no_lang_code', 'name', 'TerOpta (United Kingdom)'),
(23710, 20846, 'no_lang_code', 'name', 'Terminal San Giorgio (Italy)'),
(23711, 20847, 'en', 'name', 'Oakwater Laboratories'),
(23712, 20848, 'no_lang_code', 'name', 'TiConUno (Italy)'),
(23713, 20849, 'no_lang_code', 'name', '3R Agrocarbon (Hungary)'),
(23714, 20850, 'en', 'name', 'Tidewater Community College'),
(23715, 20851, 'pt', 'name', 'Terra Scenica'),
(23716, 20852, 'en', 'name', 'Transnational Family Research Institute'),
(23717, 20853, 'no_lang_code', 'name', 'Destia'),
(23718, 20854, 'en', 'name', 'Terros'),
(23719, 20855, 'no_lang_code', 'name', 'Data Sciences International (United States)'),
(23720, 20856, 'no_lang_code', 'name', 'Transpire (United States)'),
(23721, 20857, 'fi', 'name', 'Tietotalo'),
(23722, 20858, 'no_lang_code', 'name', 'RenaSci (United Kingdom)'),
(23723, 20859, 'en', 'name', 'Tigard-Tualatin School District'),
(23724, 20860, 'no_lang_code', 'name', 'Tesco (United Kingdom)'),
(23725, 20861, 'no_lang_code', 'name', 'TeselaGen Biotechnology (United States)'),
(23726, 20862, 'no_lang_code', 'name', 'Tiger Optics (United States)'),
(23727, 20863, 'no_lang_code', 'name', 'Tigerlily Films (United Kingdom)'),
(23728, 20864, 'en', 'name', 'Technology Innovation International'),
(23729, 20865, 'en', 'name', 'Transport Systems Catapult'),
(23730, 20866, 'no_lang_code', 'name', 'Tesla Engineering (United Kingdom)'),
(23731, 20867, 'no_lang_code', 'name', 'Power Plus Communications (Germany)'),
(23732, 20868, 'en', 'name', 'Information Technology Foundation for Education'),
(23733, 20869, 'no_lang_code', 'name', 'Tessella (United Kingdom)'),
(23734, 20870, 'no_lang_code', 'name', 'Naeva Tec (Spain)'),
(23735, 20871, 'no_lang_code', 'name', 'Test Labs International (Canada)'),
(23736, 20872, 'no_lang_code', 'name', 'Tingtun (Norway)'),
(23737, 20873, 'en', 'name', 'Test Positive Aware Network'),
(23738, 20874, 'no_lang_code', 'name', 'Tinsley Bridge Group'),
(23739, 20875, 'en', 'name', 'Tioga County Partnership for Community Health'),
(23740, 20876, 'no_lang_code', 'name', 'Testmark Laboratories (Canada)'),
(23741, 20877, 'no_lang_code', 'name', 'Transvalor (France)'),
(23742, 20878, 'en', 'name', 'General Secretariat for Research and Technology'),
(23743, 20879, 'no_lang_code', 'name', 'Tetra Corporation (United States)'),
(23744, 20880, 'no_lang_code', 'name', 'Tetra Therapeutics (United States)'),
(23745, 20881, 'en', 'name', 'National Research and Education Network'),
(23746, 20882, 'no_lang_code', 'name', 'Techno Innovation South Tyrol (Italy)'),
(23747, 20883, 'no_lang_code', 'name', 'Tiscali (Italy)'),
(23748, 20884, 'no_lang_code', 'name', 'Tisec (Canada)'),
(23749, 20885, 'en', 'name', 'Texans Standing Tall'),
(23750, 20886, 'no_lang_code', 'name', 'Ori Martin (Italy)'),
(23751, 20887, 'no_lang_code', 'name', 'Ocera Therapeutics (United States)'),
(23752, 20888, 'en', 'name', 'Texas Center for Infectious Disease'),
(23753, 20889, 'no_lang_code', 'name', 'Trasys International (Belgium)'),
(23754, 20890, 'en', 'name', 'Agricultural University of Georgia'),
(23755, 20891, 'no_lang_code', 'name', 'Tissue Regeneration Systems (United States)'),
(23756, 20892, 'no_lang_code', 'name', 'TissueVision (United States)'),
(23757, 20893, 'en', 'name', 'Texas Higher Education Coordinating Board'),
(23758, 20894, 'no_lang_code', 'name', 'Grupo TTT (Spain)'),
(23759, 20895, 'no_lang_code', 'name', 'Texas MicroPower (United States)'),
(23760, 20896, 'no_lang_code', 'name', 'Recylex (France)'),
(23761, 20897, 'en', 'name', 'North Dakota State Board of Higher Education'),
(23762, 20898, 'no_lang_code', 'name', 'Texilia (Italy)'),
(23763, 20899, 'no_lang_code', 'name', 'TLS Technik Spezialpulver (Germany)'),
(23764, 20900, 'no_lang_code', 'name', 'Treibacher (Austria)'),
(23765, 20901, 'no_lang_code', 'name', 'Trellis Bioscience (United States)'),
(23766, 20902, 'no_lang_code', 'name', 'Huntsman (United Kingdom)'),
(23767, 20903, 'no_lang_code', 'name', 'Trentino Network (Italy)'),
(23768, 20904, 'no_lang_code', 'name', 'Development Delivery International'),
(23769, 20905, 'no_lang_code', 'name', 'Harvard Bioscience (United States)'),
(23770, 20906, 'no_lang_code', 'name', 'CTT Group (Canada)'),
(23771, 20907, 'no_lang_code', 'name', 'Finisar (Germany)'),
(23772, 20908, 'no_lang_code', 'name', 'Palomino System Innovations (Canada)'),
(23773, 20909, 'no_lang_code', 'name', 'Triarii (Netherlands)'),
(23774, 20910, 'no_lang_code', 'name', 'Trias (Greece)'),
(23775, 20911, 'no_lang_code', 'name', 'Thales (Austria)'),
(23776, 20912, 'no_lang_code', 'name', 'Tribo Flow Separations (United States)'),
(23777, 20913, 'lt', 'name', 'Aerogeodezijos institutas'),
(23778, 20913, 'no_lang_code', 'name', 'Institute of Aerial Geodesy (Lithuania)'),
(23779, 20914, 'en', 'name', 'Positive Impact'),
(23780, 20915, 'no_lang_code', 'name', 'Thales (Belgium)'),
(23781, 20916, 'no_lang_code', 'name', 'Tribosonics (United Kingdom)'),
(23782, 20917, 'en', 'name', 'Port of Gothenburg'),
(23783, 20918, 'no_lang_code', 'name', 'Trillium Therapeutics (Canada)'),
(23784, 20919, 'no_lang_code', 'name', 'TRIM edicine (United States)'),
(23785, 20920, 'no_lang_code', 'name', 'Ubiquitous Energy (United States)'),
(23786, 20921, 'no_lang_code', 'name', 'Ubisense'),
(23787, 20922, 'no_lang_code', 'name', 'UbiVac (United States)'),
(23788, 20923, 'no_lang_code', 'name', 'Trimek (Spain)'),
(23789, 20924, 'no_lang_code', 'name', 'TriOS Mess und Datentechnik (Germany)'),
(23790, 20925, 'no_lang_code', 'name', 'Triple Ring Technologies (United States)'),
(23791, 20926, 'no_lang_code', 'name', 'UD-GenoMed (Hungary)'),
(23792, 20927, 'no_lang_code', 'name', 'Moog (United Kingdom)'),
(23793, 20928, 'no_lang_code', 'name', 'Tritech Group (United Kingdom)'),
(23794, 20929, 'no_lang_code', 'name', 'TPF (Poland)'),
(23795, 20930, 'no_lang_code', 'name', 'Trivella (Italy)'),
(23796, 20931, 'no_lang_code', 'name', 'UGN-Umwelttechnik (Germany)'),
(23797, 20932, 'no_lang_code', 'name', 'Trivisio Prototyping (Germany)'),
(23798, 20933, 'en', 'name', 'Troitsk Institute for Innovation and Fusion Research'),
(23799, 20933, 'ru', 'name', 'Троицкий ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инновационных Šø Ń‚ŠµŃ€Š¼Š¾ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(23800, 20934, 'fr', 'name', 'Hoffmann-La Roche'),
(23801, 20934, 'no_lang_code', 'name', 'Roche (France)'),
(23802, 20935, 'en', 'name', 'Italian Labour Union'),
(23803, 20935, 'it', 'name', 'Unione Italiana del Lavoro'),
(23804, 20936, 'no_lang_code', 'name', 'Troux Technologies (Norway)'),
(23805, 20937, 'en', 'name', 'Troy Community Coalition'),
(23806, 20938, 'no_lang_code', 'name', 'Trueflaw (Finland)'),
(23807, 20939, 'fr', 'name', 'Union des Industries et des MƩtiers de la MƩtallurgie'),
(23808, 20939, 'en', 'name', 'Union of Metallurgies Industries'),
(23809, 20940, 'no_lang_code', 'name', 'Trusted Positioning (Canada)'),
(23810, 20941, 'no_lang_code', 'name', 'Trusted Renewables (United Kingdom)'),
(23811, 20942, 'en', 'name', 'Suor Orsola Benincasa University of Naples'),
(23812, 20942, 'it', 'name', 'UniversitĆ  degli Studi Suor Orsola Benincasa'),
(23813, 20942, 'fr', 'name', 'UniversitĆ© sœur-ursule-benincasa'),
(23814, 20943, 'no_lang_code', 'name', 'Trustor Precision Components (Sweden)'),
(23815, 20944, 'no_lang_code', 'name', 'Floralis (France)'),
(23816, 20945, 'no_lang_code', 'name', 'TRW Automotive (United States)'),
(23817, 20946, 'no_lang_code', 'name', 'TRX Systems (United States)'),
(23818, 20947, 'no_lang_code', 'name', 'Transeuropean Consultants for Transport, Development and Information Technology (Greece)'),
(23819, 20947, 'el', 'name', 'Ī“Ī¹ĪµĻ…ĻĻ‰Ļ€Ī±ĻŠĪŗĻŽĪ½ Ī£Ļ…Ī¼Ī²ĪæĻĪ»Ļ‰Ī½ ĪœĪµĻ„Ī±Ļ†ĪæĻĻŽĪ½, Ανάπτυξης και Πληροφορικής'),
(23820, 20948, 'en', 'name', 'Surfactant Associates'),
(23821, 20949, 'no_lang_code', 'name', 'TSD Projects (Italy)'),
(23822, 20950, 'no_lang_code', 'name', 'Linamar (Canada)'),
(23823, 20951, 'no_lang_code', 'name', 'Team Defence Information (United Kingdom)'),
(23824, 20952, 'en', 'name', 'UK Data Archive'),
(23825, 20953, 'en', 'name', 'UK Energy Research Centre'),
(23826, 20954, 'no_lang_code', 'name', 'TSM Control Systems (Ireland)'),
(23827, 20955, 'no_lang_code', 'name', 'UK Power Networks'),
(23828, 20956, 'en', 'name', 'Radiation Protection Institute'),
(23829, 20957, 'en', 'name', 'Ukrainian Scientific and Research Institute of Ecological Problems'),
(23830, 20958, 'en', 'name', 'Ukrainian scientific center of Ecology of Sea'),
(23831, 20959, 'no_lang_code', 'name', 'ULMA Embedded Solutions'),
(23832, 20960, 'it', 'name', 'TTS Italia'),
(23833, 20961, 'no_lang_code', 'name', 'Ultima Foods (Canada)'),
(23834, 20962, 'no_lang_code', 'name', 'TTS (Sweden)'),
(23835, 20963, 'no_lang_code', 'name', 'Ultrasion (Spain)'),
(23836, 20964, 'no_lang_code', 'name', 'Umweltsensortechnik (Germany)'),
(23837, 20965, 'es', 'name', 'Distrito Escolar Unificado de Tucson'),
(23838, 20965, 'en', 'name', 'Tucson Unified School District'),
(23839, 20966, 'en', 'name', 'Union of Dairy Beef Food Industrialists and Producers of Turkey'),
(23840, 20967, 'en', 'name', 'House of Experiments'),
(23841, 20968, 'en', 'name', 'Vasyl'' Stus Donetsk National University'),
(23842, 20968, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’Š°ŃŠøŠ»Ń Š”Ń‚ŃƒŃŠ°'),
(23843, 20969, 'en', 'name', 'Tuesdays Children'),
(23844, 20970, 'en', 'name', 'Tufts Health Care Institute'),
(23845, 20971, 'no_lang_code', 'name', 'Tunitas Therapeutics (United States)'),
(23846, 20972, 'tr', 'name', 'Uluslararası Nakliyeciler Derneği'),
(23847, 20973, 'no_lang_code', 'name', 'Tunstall Healthcare (United Kingdom)'),
(23848, 20974, 'no_lang_code', 'name', 'Umbria Filler (Italy)'),
(23849, 20975, 'no_lang_code', 'name', 'Turbocoating (Italy)'),
(23850, 20976, 'no_lang_code', 'name', 'Mitsubishi Heavy Industries (Italy)'),
(23851, 20977, 'no_lang_code', 'name', 'Smart Metering Systems (United Kingdom)'),
(23852, 20978, 'no_lang_code', 'name', 'Uvasol (United Kingdom)'),
(23853, 20979, 'no_lang_code', 'name', 'Turbowinds (Belgium)'),
(23854, 20980, 'no_lang_code', 'name', 'Umicore (Germany)'),
(23855, 20981, 'no_lang_code', 'name', 'Turkcell (Turkey)'),
(23856, 20982, 'en', 'name', 'Turkish Society of HVAC and Sanitary Engineers'),
(23857, 20983, 'en', 'name', 'Technology Development Foundation of Turkey'),
(23858, 20983, 'tr', 'name', 'Turkiye Teknoloji Gelistirme Vakfi'),
(23859, 20984, 'no_lang_code', 'name', 'Turner Designs (United States)'),
(23860, 20985, 'no_lang_code', 'name', 'VIB Isolatietechniek (Netherlands)'),
(23861, 20986, 'no_lang_code', 'name', 'Turris (Canada)'),
(23862, 20987, 'en', 'name', 'V. Bakul Institute for Superhard Materials'),
(23863, 20988, 'no_lang_code', 'name', 'Twickenham Plating Group (United Kingdom)'),
(23864, 20989, 'no_lang_code', 'name', 'Vaasaett (Finland)'),
(23865, 20990, 'en', 'name', 'Department of General Services'),
(23866, 20991, 'no_lang_code', 'name', 'TwistDx (United Kingdom)'),
(23867, 20992, 'no_lang_code', 'name', 'Scanogen (United States)'),
(23868, 20993, 'en', 'name', 'VADASKERT FOUNDATION FOR CHILDREN''S MENTAL HEALTH'),
(23869, 20993, 'hu', 'name', 'Vadaskert AlapƭtvƔny a Gyermekek Lelki EgƩszsƩgƩƩrt'),
(23870, 20994, 'en', 'name', 'Twyford Church of England High School'),
(23871, 20995, 'no_lang_code', 'name', 'Vaisala (Finland)'),
(23872, 20995, 'fi', 'name', 'ʋæiĢÆsƦlƦ'),
(23873, 20996, 'no_lang_code', 'name', 'Tymora Analytical Operations (United States)'),
(23874, 20997, 'no_lang_code', 'name', 'Valdez & Associates (United States)'),
(23875, 20998, 'no_lang_code', 'name', 'UCO Raymond Denim (Belgium)'),
(23876, 20999, 'no_lang_code', 'name', 'Valencell (United States)'),
(23877, 21000, 'no_lang_code', 'name', 'Valeport (United Kingdom)'),
(23878, 21001, 'no_lang_code', 'name', 'Valitor (United States)'),
(23879, 21002, 'no_lang_code', 'name', 'Vallon (Germany)'),
(23880, 21003, 'en', 'name', 'Un-Convention'),
(23881, 21004, 'en', 'name', 'Uplift'),
(23882, 21005, 'no_lang_code', 'name', 'Urba 2000'),
(23883, 21006, 'en', 'name', 'Maritime Administration of Latvia'),
(23884, 21007, 'no_lang_code', 'name', 'Tesi (Italy)'),
(23885, 21008, 'sv', 'name', 'Finansministeriet'),
(23886, 21008, 'en', 'name', 'Ministry of Finance'),
(23887, 21008, 'fi', 'name', 'Valtiovarainministeriƶ'),
(23888, 21009, 'no_lang_code', 'name', 'Valtronic (Switzerland)'),
(23889, 21010, 'en', 'name', 'Value-Driven Design Institute'),
(23890, 21011, 'no_lang_code', 'name', 'Ursit (Bulgaria)'),
(23891, 21012, 'pl', 'name', 'Urząd Miasta Krakowa'),
(23892, 21013, 'no_lang_code', 'name', 'ValveXchange (United States)'),
(23893, 21014, 'no_lang_code', 'name', 'Vamp Tech (Italy)'),
(23894, 21015, 'no_lang_code', 'name', 'Uncopiers'),
(23895, 21016, 'no_lang_code', 'name', 'Schlumberger (Netherlands)'),
(23896, 21017, 'en', 'name', 'Us Helping Us People Into Living'),
(23897, 21018, 'en', 'name', 'US Ignite'),
(23898, 21019, 'no_lang_code', 'name', 'Vanchem Performance Chemicals (Canada)'),
(23899, 21020, 'no_lang_code', 'name', 'Vanderpol''s Eggs (Canada)'),
(23900, 21021, 'no_lang_code', 'name', 'Vanguard Foundry (United Kingdom)'),
(23901, 21022, 'no_lang_code', 'name', 'Vantage Power (United Kingdom)'),
(23902, 21023, 'no_lang_code', 'name', 'Variation Biotechnologies (Canada)'),
(23903, 21024, 'no_lang_code', 'name', 'Varsi (Slovenia)'),
(23904, 21025, 'no_lang_code', 'name', 'Varta Microbattery (Germany)'),
(23905, 21026, 'no_lang_code', 'name', 'Vasade Biosciences (United States)'),
(23906, 21027, 'no_lang_code', 'name', 'Vascular Pharmaceuticals (United States)'),
(23907, 21028, 'no_lang_code', 'name', 'VasGene Therapeutics (United States)'),
(23908, 21029, 'sv', 'name', 'VƤsterbottens LƤns Landsting'),
(23909, 21030, 'no_lang_code', 'name', 'Unilever (Portugal)'),
(23910, 21031, 'no_lang_code', 'name', 'Vaxart (United States)'),
(23911, 21032, 'no_lang_code', 'name', 'Vaxcel (United States)'),
(23912, 21033, 'no_lang_code', 'name', 'Diazyme (United States)'),
(23913, 21034, 'no_lang_code', 'name', 'Unimetrik (Spain)'),
(23914, 21035, 'no_lang_code', 'name', 'Union Biometrica (United States)'),
(23915, 21036, 'en', 'name', 'Vaughn College of Aeronautics and Technology'),
(23916, 21037, 'no_lang_code', 'name', 'VaxInnate (United States)'),
(23917, 21038, 'en', 'name', 'Union County College'),
(23918, 21039, 'no_lang_code', 'name', 'VBC Group (United Kingdom)'),
(23919, 21040, 'no_lang_code', 'name', 'Maxam (Spain)'),
(23920, 21041, 'de', 'name', 'Verband Deutscher Maschinen- und Anlagenbau'),
(23921, 21042, 'no_lang_code', 'name', 'BSD Crown (Israel)'),
(23922, 21043, 'en', 'name', 'Flemish Public Employment Service'),
(23923, 21043, 'nl', 'name', 'Vlaamse Dienst voor Arbeidsbemiddeling en Beroepsopleiding'),
(23924, 21044, 'en', 'name', 'Union of the Baltic Cities'),
(23925, 21045, 'en', 'name', 'International Union of Radioecology'),
(23926, 21046, 'en', 'name', 'Eurelectric'),
(23927, 21047, 'it', 'name', 'Unioncamere Piemonte'),
(23928, 21048, 'no_lang_code', 'name', 'U-Hopper (Italy)'),
(23929, 21049, 'no_lang_code', 'name', 'Vorbeck (United States)'),
(23930, 21050, 'no_lang_code', 'name', 'Vornia Biomaterials (Ireland)'),
(23931, 21051, 'no_lang_code', 'name', 'VORtech (Netherlands)'),
(23932, 21052, 'no_lang_code', 'name', 'Vector Fabrics (Netherlands)'),
(23933, 21053, 'no_lang_code', 'name', 'Unisense (Denmark)'),
(23934, 21054, 'no_lang_code', 'name', 'Unisoft (Romania)'),
(23935, 21055, 'no_lang_code', 'name', 'Vorwerk (Germany)'),
(23936, 21056, 'en', 'name', 'WEGEMT'),
(23937, 21057, 'no_lang_code', 'name', 'Vossloh (Spain)'),
(23938, 21058, 'no_lang_code', 'name', 'Veiki-VNL (Hungary)'),
(23939, 21059, 'no_lang_code', 'name', 'Unisys (Belgium)'),
(23940, 21060, 'no_lang_code', 'name', 'Veeco (United Kingdom)'),
(23941, 21061, 'en', 'name', 'Welding Research Institute - Industrial Institute SR'),
(23942, 21062, 'no_lang_code', 'name', 'Tapecon (United States)'),
(23943, 21063, 'no_lang_code', 'name', 'Velcourt (United Kingdom)'),
(23944, 21064, 'en', 'name', 'Wellcome Collection'),
(23945, 21065, 'no_lang_code', 'name', 'Voxiva (United States)'),
(23946, 21066, 'no_lang_code', 'name', 'Vipap (Slovenia)'),
(23947, 21067, 'no_lang_code', 'name', 'Vipem Hackert (Germany)'),
(23948, 21068, 'no_lang_code', 'name', 'Wellcore'),
(23949, 21069, 'no_lang_code', 'name', 'VPIphotonics (Germany)'),
(23950, 21070, 'en', 'name', 'Welsh Centre for Printing and Coating'),
(23951, 21071, 'no_lang_code', 'name', 'Viper RF (United Kingdom)'),
(23952, 21072, 'no_lang_code', 'name', 'Merlexi (United States)'),
(23953, 21073, 'no_lang_code', 'name', 'SimulTOF Systems (United States)'),
(23954, 21074, 'no_lang_code', 'name', 'United Biscuits (United Kingdom)'),
(23955, 21075, 'en', 'name', 'Wesley College'),
(23956, 21076, 'no_lang_code', 'name', 'Veneto Innovazione (Italy)'),
(23957, 21077, 'en', 'name', 'John F. Kennedy Center for the Performing Arts'),
(23958, 21078, 'no_lang_code', 'name', 'VersuchsStollen Hagerbach (Switzerland)'),
(23959, 21079, 'en', 'name', 'Virtual Dimension Center'),
(23960, 21080, 'no_lang_code', 'name', 'Ashmore Energy International (United Kingdom)'),
(23961, 21081, 'en', 'name', 'United Hospital Center'),
(23962, 21082, 'no_lang_code', 'name', 'Velcura Therapeutics (United States)'),
(23963, 21083, 'no_lang_code', 'name', 'Vukov Extra (Slovakia)'),
(23964, 21084, 'no_lang_code', 'name', 'Nortek (Canada)'),
(23965, 21085, 'en', 'name', 'Virginia Western Community College'),
(23966, 21086, 'no_lang_code', 'name', 'Vennsa Technologies (Canada)'),
(23967, 21087, 'no_lang_code', 'name', 'Vybion (United States)'),
(23968, 21088, 'lv', 'name', 'Ventspils Digitālais Centrs'),
(23969, 21089, 'no_lang_code', 'name', 'Veolia (United Kingdom)'),
(23970, 21090, 'en', 'name', 'West Liberty University'),
(23971, 21091, 'no_lang_code', 'name', 'VeraChem (United States)'),
(23972, 21092, 'no_lang_code', 'name', 'Vertex Pharmaceuticals (Canada)'),
(23973, 21093, 'en', 'name', 'W.E. Upjohn Institute for Employment Research'),
(23974, 21094, 'no_lang_code', 'name', 'Verax Biomedical (United States)'),
(23975, 21095, 'no_lang_code', 'name', 'United Medix Laboratories (Finland)'),
(23976, 21095, 'fi', 'name', 'Yhtyneet Medix Laboratoriot'),
(23977, 21096, 'en', 'name', 'Petal School District'),
(23978, 21097, 'en', 'name', 'West Valley College'),
(23979, 21098, 'en', 'name', 'West Valley High School'),
(23980, 21099, 'en', 'name', 'Farrington High School'),
(23981, 21100, 'en', 'name', 'West Yorkshire Police'),
(23982, 21101, 'no_lang_code', 'name', 'TecPart'),
(23983, 21101, 'de', 'name', 'Verband Technische Kunststoff-Produkte e.V.'),
(23984, 21102, 'no_lang_code', 'name', 'Virtici (United States)'),
(23985, 21103, 'no_lang_code', 'name', 'Virtual Brands (United States)'),
(23986, 21104, 'no_lang_code', 'name', 'Verdezyne (United States)'),
(23987, 21105, 'no_lang_code', 'name', 'Virtual Corporation (United States)'),
(23988, 21106, 'no_lang_code', 'name', 'Virtual Open Systems (France)'),
(23989, 21107, 'no_lang_code', 'name', 'United Science'),
(23990, 21108, 'no_lang_code', 'name', 'J.Schneeberger Maschinen (Switzerland)'),
(23991, 21109, 'en', 'name', 'German Machine Tool Builders Association'),
(23992, 21109, 'de', 'name', 'Verein Deutscher Werkzeugmaschinenfabriken'),
(23993, 21110, 'no_lang_code', 'name', 'United Silicon Carbide (United States)'),
(23994, 21111, 'en', 'name', 'Western Iowa Tech Community College'),
(23995, 21112, 'no_lang_code', 'name', 'Schneeberger (Switzerland)'),
(23996, 21113, 'en', 'name', 'United Way of Anchorage'),
(23997, 21114, 'en', 'name', 'United Way of the Ozarks'),
(23998, 21115, 'en', 'name', 'Maryland Area Health Education Center West'),
(23999, 21116, 'en', 'name', 'United Way of Yellowstone County'),
(24000, 21117, 'no_lang_code', 'name', 'Heraeus (Germany)'),
(24001, 21117, 'de', 'name', 'Heraeus Konzern'),
(24002, 21118, 'no_lang_code', 'name', 'Virtual Trip (Greece)'),
(24003, 21119, 'no_lang_code', 'name', 'W.F. Baird & Associates Coastal Engineers (Canada)'),
(24004, 21120, 'no_lang_code', 'name', 'W/E Consultants'),
(24005, 21121, 'de', 'name', 'Technologie-Transfer-Zentrum Bremerhaven'),
(24006, 21121, 'en', 'name', 'Technology Transfer Center Bremerhaven'),
(24007, 21122, 'en', 'name', 'Western Massachusetts Training Consortium'),
(24008, 21123, 'en', 'name', 'Western Piedmont Community College'),
(24009, 21124, 'no_lang_code', 'name', 'WƤrtsilƤ (Netherlands)'),
(24010, 21125, 'no_lang_code', 'name', 'AstenJohnson (Belgium)'),
(24011, 21126, 'no_lang_code', 'name', 'Virtualware Group (Spain)'),
(24012, 21127, 'en', 'name', 'Association of the Austrian Cement Industry'),
(24013, 21127, 'no_lang_code', 'name', 'Vereinigung der Ɩsterreichischen Zementindustrie'),
(24014, 21128, 'no_lang_code', 'name', 'Western Systems Research (United States)'),
(24015, 21129, 'no_lang_code', 'name', 'WesTest Engineering (United States)'),
(24016, 21130, 'no_lang_code', 'name', 'PerkinElmer (Finland)'),
(24017, 21131, 'en', 'name', 'Veria Central Public Library'),
(24018, 21131, 'el', 'name', 'Γημόσια κεντρική βιβλιοθήκη βέροιας'),
(24019, 21132, 'no_lang_code', 'name', 'Tektronix (Canada)'),
(24020, 21133, 'en', 'name', 'Westminster City Council'),
(24021, 21134, 'en', 'name', 'Technical College of Applied Sciences'),
(24022, 21135, 'no_lang_code', 'name', 'VistaMed (Ireland)'),
(24023, 21136, 'no_lang_code', 'name', 'Visual Acuity (United Kingdom)'),
(24024, 21137, 'no_lang_code', 'name', 'Wallenius Lines (Sweden)'),
(24025, 21138, 'no_lang_code', 'name', 'Walter Frank & Sons (United Kingdom)'),
(24026, 21139, 'no_lang_code', 'name', 'Visual Awareness Research Group (United States)'),
(24027, 21140, 'en', 'name', 'Walters Public Schools'),
(24028, 21141, 'no_lang_code', 'name', 'Wetlands Incubator (Belgium)'),
(24029, 21142, 'en', 'name', 'World Agency of Planetary Monitoring & Earthquake Risk Reduction'),
(24030, 21143, 'no_lang_code', 'name', 'Weyerhaeuser (United States)'),
(24031, 21144, 'en', 'name', 'Verification Research, Training and Information Centre'),
(24032, 21145, 'no_lang_code', 'name', 'Visual Dimension (Belgium)'),
(24033, 21146, 'en', 'name', 'World Health Organization - Zambia'),
(24034, 21147, 'no_lang_code', 'name', 'Veris Technologies (United States)'),
(24035, 21148, 'no_lang_code', 'name', 'Visup (Italy)'),
(24036, 21149, 'en', 'name', 'Living on Earth'),
(24037, 21150, 'no_lang_code', 'name', 'Wapice (Finland)'),
(24038, 21151, 'no_lang_code', 'name', 'Warburtons (United Kingdom)'),
(24039, 21152, 'en', 'name', 'wfk - Cleaning Technology Institute'),
(24040, 21153, 'no_lang_code', 'name', 'Eckert & Ziegler (United States)'),
(24041, 21154, 'no_lang_code', 'name', 'Worldsensing (Spain)'),
(24042, 21155, 'no_lang_code', 'name', 'Tetra Tech (Canada)'),
(24043, 21156, 'no_lang_code', 'name', 'Vitalus Nutrition (Canada)'),
(24044, 21157, 'en', 'name', 'Warren Wilson College'),
(24045, 21158, 'en', 'name', 'Vermont Agency of Education'),
(24046, 21159, 'no_lang_code', 'name', 'Vitamib (France)'),
(24047, 21160, 'no_lang_code', 'name', 'Worldwide Fruit (United Kingdom)'),
(24048, 21161, 'no_lang_code', 'name', 'Vitas (Norway)'),
(24049, 21162, 'no_lang_code', 'name', 'Wowbagger Productions'),
(24050, 21163, 'no_lang_code', 'name', 'WheelRight (United Kingdom)'),
(24051, 21164, 'no_lang_code', 'name', 'Vitec (France)'),
(24052, 21165, 'no_lang_code', 'name', 'Where''s Everybody (Malta)'),
(24053, 21166, 'no_lang_code', 'name', 'Vitech Systems (United States)'),
(24054, 21167, 'en', 'name', 'V.I. Vernadsky Institute of Geochemistry and Analytical Chemistry'),
(24055, 21167, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠžŃ€Š“ена Ленина Šø ŠžŃ€Š“ŠµŠ½Š° ŠžŠŗŃ‚ŃŠ±Ń€ŃŒŃŠŗŠ¾Š¹ Š ŠµŠ²Š¾Š»ŃŽŃ†ŠøŠø Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геохимии Šø аналитической химии им. Š’.И. ВернаГского Российской акаГемии наук'),
(24056, 21168, 'no_lang_code', 'name', 'Wrap (United Kingdom)'),
(24057, 21169, 'no_lang_code', 'name', 'Warwick Analytics (United Kingdom)'),
(24058, 21170, 'no_lang_code', 'name', 'Versarien Technologies (United Kingdom)'),
(24059, 21171, 'no_lang_code', 'name', 'Wherry & Sons (United Kingdom)'),
(24060, 21172, 'en', 'name', 'Wright House Wellness Center'),
(24061, 21173, 'no_lang_code', 'name', 'Whirlpool (Italy)'),
(24062, 21174, 'en', 'name', 'Valley City Public School District'),
(24063, 21175, 'no_lang_code', 'name', 'Vertellus Specialties (United Kingdom)'),
(24064, 21176, 'no_lang_code', 'name', 'WS Energia (Portugal)'),
(24065, 21177, 'no_lang_code', 'name', 'Glencore (Canada)'),
(24066, 21178, 'de', 'name', 'Stiftung Verum'),
(24067, 21178, 'en', 'name', 'Verum - Foundation for Behaviour and Environment'),
(24068, 21179, 'no_lang_code', 'name', 'WS (Germany)'),
(24069, 21180, 'en', 'name', 'White Balance Projects Pool Agency'),
(24070, 21181, 'en', 'name', 'Water Authority of Jordan'),
(24071, 21182, 'no_lang_code', 'name', 'Water & Earth Technologie (United States)'),
(24072, 21183, 'no_lang_code', 'name', 'IHS Markit (Germany)'),
(24073, 21184, 'no_lang_code', 'name', 'WHM Group'),
(24074, 21185, 'no_lang_code', 'name', 'VHsquared (United Kingdom)'),
(24075, 21186, 'no_lang_code', 'name', 'Water Services Corporation (Malta)'),
(24076, 21187, 'en', 'name', 'Naugatuck Valley Community College'),
(24077, 21188, 'no_lang_code', 'name', 'Virtuelle Fabrik (Switzerland)'),
(24078, 21189, 'no_lang_code', 'name', 'Vertically Integrated Systems (Germany)'),
(24079, 21190, 'no_lang_code', 'name', 'Glanbia (Ireland)'),
(24080, 21191, 'no_lang_code', 'name', 'Vivid Technologies (United States)'),
(24081, 21192, 'no_lang_code', 'name', 'WaterstofNet (Belgium)'),
(24082, 21193, 'no_lang_code', 'name', 'WiCell'),
(24083, 21194, 'en', 'name', 'Wichita Community Foundation'),
(24084, 21195, 'en', 'name', 'Wyoming Department of Education'),
(24085, 21196, 'no_lang_code', 'name', 'eLEAF (Netherlands)'),
(24086, 21197, 'en', 'name', 'Wytheville Community College'),
(24087, 21198, 'no_lang_code', 'name', 'Wates (United Kingdom)'),
(24088, 21199, 'no_lang_code', 'name', 'Wieland (Germany)'),
(24089, 21200, 'en', 'name', 'Watts Health Center'),
(24090, 21201, 'no_lang_code', 'name', 'Alfa Laval (France)'),
(24091, 21202, 'no_lang_code', 'name', 'Vicinay Cadenas (Spain)'),
(24092, 21203, 'no_lang_code', 'name', 'Vicon (United Kingdom)'),
(24093, 21204, 'en', 'name', 'Victoria Heart Institute Foundation'),
(24094, 21205, 'en', 'name', 'Victorian Aboriginal Health Service'),
(24095, 21206, 'no_lang_code', 'name', 'Vizzuality (Spain)'),
(24096, 21207, 'no_lang_code', 'name', 'Wave Dragon (Denmark)'),
(24097, 21208, 'no_lang_code', 'name', 'Victrex (United Kingdom)'),
(24098, 21209, 'no_lang_code', 'name', 'Pfizer (Italy)'),
(24099, 21210, 'en', 'name', 'Police Academy in Szczytno'),
(24100, 21211, 'no_lang_code', 'name', 'Vida Diagnostics (United States)'),
(24101, 21212, 'no_lang_code', 'name', 'Unis (Czechia)'),
(24102, 21213, 'de', 'name', 'Wirtschaftsfƶrderungsinstitut'),
(24103, 21214, 'no_lang_code', 'name', 'Melexis (Germany)'),
(24104, 21215, 'no_lang_code', 'name', 'VLP Biotech (United States)'),
(24105, 21216, 'en', 'name', 'Wayland Baptist University'),
(24106, 21217, 'no_lang_code', 'name', 'WIGeoGIS (Austria)'),
(24107, 21218, 'no_lang_code', 'name', 'VM Discovery (United States)'),
(24108, 21219, 'no_lang_code', 'name', 'X Flow (Netherlands)'),
(24109, 21220, 'en', 'name', 'Wildlife Conservation Society Canada'),
(24110, 21221, 'no_lang_code', 'name', 'Videometer (Denmark)'),
(24111, 21222, 'no_lang_code', 'name', 'VocaLink (United Kingdom)'),
(24112, 21223, 'en', 'name', 'Viewpoints Research Institute'),
(24113, 21224, 'no_lang_code', 'name', 'Shift (United Kingdom)'),
(24114, 21225, 'no_lang_code', 'name', 'X-Treme Creations (Netherlands)'),
(24115, 21226, 'no_lang_code', 'name', 'Xaar (United Kingdom)'),
(24116, 21227, 'no_lang_code', 'name', 'De Lijn (Belgium)'),
(24117, 21228, 'no_lang_code', 'name', 'Viewrope'),
(24118, 21229, 'no_lang_code', 'name', 'Xactagen (United States)'),
(24119, 21230, 'no_lang_code', 'name', 'Xandem Technology (United States)'),
(24120, 21231, 'no_lang_code', 'name', 'Vigo System (Poland)'),
(24121, 21232, 'no_lang_code', 'name', 'Sarossa (United States)'),
(24122, 21233, 'no_lang_code', 'name', 'XData Corporation (United States)'),
(24123, 21234, 'en', 'name', 'William F Ryan Community Health Center'),
(24124, 21235, 'en', 'name', 'Village for Families and Children'),
(24125, 21236, 'no_lang_code', 'name', 'Villeroy & Boch (Germany)'),
(24126, 21237, 'en', 'name', 'Euro-Mediterranean Water Information System'),
(24127, 21237, 'fr', 'name', 'MƩditerranƩen d''Information sur les Savoir'),
(24128, 21238, 'no_lang_code', 'name', 'YIT (Finland)'),
(24129, 21239, 'no_lang_code', 'name', 'Voicekey (United Kingdom)'),
(24130, 21240, 'no_lang_code', 'name', 'Ylec Consultants'),
(24131, 21241, 'no_lang_code', 'name', 'Volcano Corporation (United States)'),
(24132, 21242, 'no_lang_code', 'name', 'Yole DƩveloppement (France)'),
(24133, 21243, 'en', 'name', 'Xenobiotic Detection Systems'),
(24134, 21244, 'no_lang_code', 'name', 'Grenson (United Kingdom)'),
(24135, 21245, 'en', 'name', 'York Archaeological Trust'),
(24136, 21246, 'en', 'name', 'York Technical College'),
(24137, 21247, 'no_lang_code', 'name', 'Xeros Technologies (United Kingdom)'),
(24138, 21248, 'no_lang_code', 'name', 'William Ross (United Kingdom)'),
(24139, 21249, 'no_lang_code', 'name', 'Enghouse Interactive (United Kingdom)'),
(24140, 21250, 'no_lang_code', 'name', 'Vinidea'),
(24141, 21251, 'no_lang_code', 'name', 'Xigen (Switzerland)'),
(24142, 21252, 'en', 'name', 'Williams Unified School District'),
(24143, 21253, 'no_lang_code', 'name', 'Vioryl (Greece)'),
(24144, 21254, 'en', 'name', 'Williams & Associates'),
(24145, 21255, 'no_lang_code', 'name', 'Viotech Communications (France)'),
(24146, 21256, 'no_lang_code', 'name', 'First Innovation Park'),
(24147, 21257, 'no_lang_code', 'name', 'Lion Capital (United Kingdom)'),
(24148, 21258, 'no_lang_code', 'name', 'Xim (United Kingdom)'),
(24149, 21259, 'no_lang_code', 'name', 'Volterra (United Kingdom)'),
(24150, 21260, 'en', 'name', 'Youth & Family Services'),
(24151, 21261, 'en', 'name', 'Center for Innovation and Technology'),
(24152, 21261, 'no_lang_code', 'name', 'Zentrum für Innovation und Technik in Nordrhein-Westfalen'),
(24153, 21262, 'en', 'name', 'Youth Development'),
(24154, 21263, 'no_lang_code', 'name', 'Zentrum für Rationelle Energieanwendung und Umwelt (Germany)'),
(24155, 21264, 'en', 'name', 'Volunteer Behavioral Health Care System'),
(24156, 21265, 'no_lang_code', 'name', 'Xintek (United States)'),
(24157, 21266, 'en', 'name', 'Volunteers of America Oregon'),
(24158, 21267, 'no_lang_code', 'name', 'Youth Radio (United States)'),
(24159, 21268, 'no_lang_code', 'name', 'XiO Photonics (Netherlands)'),
(24160, 21269, 'no_lang_code', 'name', 'Xiros (United Kingdom)'),
(24161, 21270, 'en', 'name', 'Youth Service Project'),
(24162, 21271, 'en', 'name', 'Youth and Family Services of Haddam Killingworth'),
(24163, 21272, 'no_lang_code', 'name', 'XMOS (United Kingdom)'),
(24164, 21273, 'no_lang_code', 'name', 'Yprema (France)'),
(24165, 21274, 'no_lang_code', 'name', 'YTKO (United Kingdom)'),
(24166, 21275, 'no_lang_code', 'name', 'Prototal (Sweden)'),
(24167, 21276, 'en', 'name', 'Medway Maritime Hospital'),
(24168, 21277, 'en', 'name', 'Yuba Community College District'),
(24169, 21278, 'en', 'name', 'Melksham Community Hospital'),
(24170, 21279, 'no_lang_code', 'name', 'Yuzhnoye State Design Office (Ukraine)'),
(24171, 21279, 'uk', 'name', 'Державне ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŃŒŠŗŠµ Š±ŃŽŃ€Š¾ Ā«ŠŸŃ–Š²Š“ŠµŠ½Š½ŠµĀ» ім. М. К. ŠÆŠ½Š³ŠµŠ»Ń'),
(24172, 21280, 'en', 'name', 'Melton Mowbray Hospital'),
(24173, 21281, 'no_lang_code', 'name', 'Wiener Stadtwerke (Austria)'),
(24174, 21282, 'no_lang_code', 'name', 'Zabala Innovation Consulting (Spain)'),
(24175, 21283, 'no_lang_code', 'name', 'XSB (United States)'),
(24176, 21284, 'en', 'name', 'Mid Essex Hospital Services NHS Trust'),
(24177, 21285, 'no_lang_code', 'name', 'Willmott Dixon (United Kingdom)'),
(24178, 21286, 'en', 'name', 'The Hydrogen and Fuel Cell Center'),
(24179, 21286, 'de', 'name', 'The Zentrum für BrennstoffzellenTechnik'),
(24180, 21287, 'no_lang_code', 'name', 'Grammer (Germany)'),
(24181, 21288, 'en', 'name', 'Mid Yorkshire Hospitals NHS Trust'),
(24182, 21289, 'en', 'name', 'Zero Carbon Hub'),
(24183, 21290, 'en', 'name', 'Midhurst Community Hospital'),
(24184, 21291, 'en', 'name', 'Mile End Hospital'),
(24185, 21292, 'no_lang_code', 'name', 'Xyken (United States)'),
(24186, 21293, 'en', 'name', 'Milford Hospital'),
(24187, 21294, 'no_lang_code', 'name', 'Zadig (Italy)'),
(24188, 21295, 'no_lang_code', 'name', 'Zansors (United States)'),
(24189, 21296, 'en', 'name', 'Mill View Hospital'),
(24190, 21297, 'no_lang_code', 'name', 'Y-Stress (United States)'),
(24191, 21298, 'en', 'name', 'Millom Hospital'),
(24192, 21299, 'no_lang_code', 'name', 'Yamaha (Netherlands)'),
(24193, 21300, 'en', 'name', 'Mold Community Hospital'),
(24194, 21300, 'cy', 'name', 'Ysbyty Cymuned yr Wyddgrug'),
(24195, 21301, 'en', 'name', 'Molesey Hospital'),
(24196, 21302, 'en', 'name', 'Yamhill County Public Health'),
(24197, 21303, 'no_lang_code', 'name', 'Yankee Environmental System (United States)'),
(24198, 21304, 'no_lang_code', 'name', 'Diodes (United Kingdom)'),
(24199, 21305, 'en', 'name', 'West Virginia Department of Education'),
(24200, 21306, 'no_lang_code', 'name', 'Yantric (United States)'),
(24201, 21307, 'en', 'name', 'Monkton Hall Hospital'),
(24202, 21308, 'no_lang_code', 'name', 'Yara (United Kingdom)'),
(24203, 21309, 'en', 'name', 'Monkwearmouth Hospital'),
(24204, 21310, 'en', 'name', 'Westchester County Department of Public Safety'),
(24205, 21311, 'en', 'name', 'Montagu Hospital'),
(24206, 21312, 'no_lang_code', 'name', 'Ivchenko Progress (Ukraine)'),
(24207, 21312, 'uk', 'name', 'Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠµ Š¼Š°ŃˆŠøŠ½Š¾Š±ŃƒŠ“Ń–Š²Š½Šµ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŃŒŠŗŠµ Š±ŃŽŃ€Š¾'),
(24208, 21313, 'no_lang_code', 'name', 'YDreams (Portugal)'),
(24209, 21314, 'en', 'name', 'George Moore Community Clinic'),
(24210, 21315, 'en', 'name', 'Yellowhawk Tribal Health Center'),
(24211, 21316, 'en', 'name', 'Centre for Applied Psychology, Environmental and Social Research'),
(24212, 21316, 'de', 'name', 'Zentrum für angewandte Psychologie, Umwelt- und Sozialforschung'),
(24213, 21317, 'en', 'name', 'Wiltshire Council'),
(24214, 21318, 'no_lang_code', 'name', 'Zeus Scientific (United States)'),
(24215, 21319, 'no_lang_code', 'name', 'Microsemi (United Kingdom)'),
(24216, 21320, 'no_lang_code', 'name', 'Wind Technologies (United Kingdom)'),
(24217, 21321, 'no_lang_code', 'name', 'Wind (Italy)'),
(24218, 21322, 'no_lang_code', 'name', 'Zayer (Spain)'),
(24219, 21323, 'en', 'name', 'Morpeth Cottage Hospital'),
(24220, 21324, 'no_lang_code', 'name', 'Ziena Optimization (United States)'),
(24221, 21325, 'en', 'name', 'Moseley Hall Hospital'),
(24222, 21326, 'no_lang_code', 'name', 'Zigpos (Germany)'),
(24223, 21327, 'en', 'name', 'Mossley Hill Hospital'),
(24224, 21328, 'en', 'name', 'Zimbabwe Association of Church-Related Hospitals'),
(24225, 21329, 'en', 'name', 'Zimbabwe National Quality Assurance Program'),
(24226, 21330, 'en', 'name', 'Mount Alvernia Hospital'),
(24227, 21331, 'no_lang_code', 'name', 'Zeeko (United Kingdom)'),
(24228, 21332, 'no_lang_code', 'name', 'McWane Technology (United Kingdom)'),
(24229, 21333, 'no_lang_code', 'name', 'Zipalog (United States)'),
(24230, 21334, 'en', 'name', 'BMI Healthcare'),
(24231, 21335, 'en', 'name', 'Mount Vernon Hospital'),
(24232, 21336, 'no_lang_code', 'name', 'Ziplast (Italy)'),
(24233, 21337, 'no_lang_code', 'name', 'ZirChrom Separations (United States)'),
(24234, 21338, 'en', 'name', 'N.D. Zelinsky Institute of Organic Chemistry'),
(24235, 21338, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органической химии им. Š.Š”. Зелинского Российской акаГемии наук'),
(24236, 21339, 'en', 'name', 'InsPIRE Network for Environment'),
(24237, 21340, 'no_lang_code', 'name', 'Descartes (Belgium)'),
(24238, 21341, 'no_lang_code', 'name', 'Zoo Digital (United Kingdom)'),
(24239, 21342, 'no_lang_code', 'name', 'ZS-Handling (Germany)'),
(24240, 21343, 'no_lang_code', 'name', 'ZTS Výskumno-Vývojový Ústav (Slovakia)'),
(24241, 21344, 'no_lang_code', 'name', 'Zenalux Biomedical (United States)'),
(24242, 21345, 'en', 'name', 'Wisconsin Department of Public Instruction'),
(24243, 21346, 'en', 'name', 'Wisconsin State Office of the Governor'),
(24244, 21347, 'no_lang_code', 'name', 'Zubiola (Spain)'),
(24245, 21348, 'en', 'name', 'Bonn Science Shop'),
(24246, 21348, 'no_lang_code', 'name', 'Wissenschaftsladen'),
(24247, 21349, 'no_lang_code', 'name', 'Zeno Semiconductor (United States)'),
(24248, 21350, 'no_lang_code', 'name', 'Zenotech (United Kingdom)'),
(24249, 21351, 'no_lang_code', 'name', 'Within Technologies (United Kingdom)'),
(24250, 21352, 'de', 'name', 'Zentralinstitut für die Kassenärztliche Versorgung in der Bundesrepublik Deutschland'),
(24251, 21353, 'en', 'name', 'Accrington Victoria Hospital'),
(24252, 21354, 'no_lang_code', 'name', 'Witt Industrial Electronics (Germany)'),
(24253, 21355, 'no_lang_code', 'name', 'Wittmann (Austria)'),
(24254, 21356, 'no_lang_code', 'name', 'Zyberwear (United States)'),
(24255, 21357, 'en', 'name', 'Tewkesbury Community Hospital'),
(24256, 21358, 'no_lang_code', 'name', 'Innovation Enterprise Impuls (Poland)'),
(24257, 21359, 'en', 'name', 'New Victoria Hospital'),
(24258, 21360, 'no_lang_code', 'name', 'Wolframcarb (Italy)'),
(24259, 21361, 'no_lang_code', 'name', 'Zylon (United States)'),
(24260, 21362, 'en', 'name', 'Women Accepting Responsibility'),
(24261, 21363, 'en', 'name', 'Newark Hospital'),
(24262, 21364, 'no_lang_code', 'name', 'Zymera (United States)'),
(24263, 21365, 'en', 'name', 'Newham University Hospital'),
(24264, 21366, 'en', 'name', 'Airedale NHS Foundation Trust'),
(24265, 21367, 'no_lang_code', 'name', 'Continental (United Kingdom)'),
(24266, 21368, 'en', 'name', 'Bradwell Community Hospital'),
(24267, 21369, 'en', 'name', 'Women in Government'),
(24268, 21370, 'en', 'name', 'Ross on Wye Hospital'),
(24269, 21371, 'en', 'name', 'Women In Need'),
(24270, 21372, 'en', 'name', 'Rossall Hospital'),
(24271, 21373, 'en', 'name', 'Women in Resource Development'),
(24272, 21374, 'en', 'name', 'Rothbury Community Hospital'),
(24273, 21375, 'en', 'name', 'Women in Science and Engineering Newfoundland and Labrador'),
(24274, 21376, 'en', 'name', 'Newquay Community Hospital'),
(24275, 21377, 'en', 'name', 'Central Middlesex Hospital'),
(24276, 21378, 'en', 'name', 'Alcoholism Center for Women'),
(24277, 21379, 'en', 'name', 'Newton Abbot Community Hospital'),
(24278, 21380, 'en', 'name', 'Newton Community Hospital'),
(24279, 21381, 'en', 'name', 'Women''s Health In Women''s Hands'),
(24280, 21382, 'en', 'name', 'Chalfonts and Gerrards Cross Hospital'),
(24281, 21383, 'en', 'name', 'Alderney Hospital'),
(24282, 21384, 'en', 'name', 'Roxbourne Medical Centre'),
(24283, 21385, 'en', 'name', 'Norfolk Community Health and Care NHS Trust'),
(24284, 21386, 'en', 'name', 'North Cambridgeshire Hospital'),
(24285, 21387, 'en', 'name', 'North Cotswolds Hospital'),
(24286, 21388, 'en', 'name', 'Chantry House Day Hospital'),
(24287, 21389, 'en', 'name', 'Royal Brompton Hospital'),
(24288, 21390, 'en', 'name', 'Women''s Treatment Center'),
(24289, 21391, 'en', 'name', 'Woodstock Union High School & Middle School'),
(24290, 21392, 'en', 'name', 'Royal National Throat Nose and Ear Hospital'),
(24291, 21393, 'en', 'name', 'Royal Stoke University Hospital'),
(24292, 21394, 'en', 'name', 'Chard & District Hospital'),
(24293, 21395, 'en', 'name', 'North Downs Hospital'),
(24294, 21396, 'en', 'name', 'Hampshire Hospitals NHS Foundation Trust'),
(24295, 21397, 'en', 'name', 'North Middlesex Hospital'),
(24296, 21398, 'en', 'name', 'Alton Community Hospital'),
(24297, 21399, 'no_lang_code', 'name', 'Worgas Bruciatori (Italy)'),
(24298, 21400, 'en', 'name', 'North Middlesex University Hospital NHS Trust'),
(24299, 21401, 'en', 'name', 'Chartwell Diagnostic and Imaging Centre'),
(24300, 21402, 'no_lang_code', 'name', 'Workbook Publishing'),
(24301, 21403, 'en', 'name', 'North Staffordshire Combined Healthcare NHS Trust'),
(24302, 21404, 'en', 'name', 'Chase Acute Outpatients Hospital'),
(24303, 21405, 'cy', 'name', 'Cymdeithas Addysg y Gweithwyr'),
(24304, 21405, 'en', 'name', 'Workers Educational Association'),
(24305, 21406, 'en', 'name', 'Cheadle Community Hospital'),
(24306, 21407, 'en', 'name', 'Rowley Regis Hospital'),
(24307, 21408, 'en', 'name', 'Priory Hospital Cheadle Royal'),
(24308, 21409, 'en', 'name', 'Royston Hospital'),
(24309, 21410, 'en', 'name', 'Chelmsford and Essex Hospital'),
(24310, 21411, 'en', 'name', 'North Walsham and District War Memorial Hospital'),
(24311, 21412, 'en', 'name', 'North West Ambulance Service NHS Trust'),
(24312, 21413, 'en', 'name', 'Andover War Memorial Hospital'),
(24313, 21414, 'en', 'name', 'Chelsea and Westminster Hospital'),
(24314, 21415, 'en', 'name', 'BMI The Runnymede Hospital'),
(24315, 21416, 'en', 'name', 'Goole and District Hospital'),
(24316, 21417, 'en', 'name', 'Arrowe Park Hospital'),
(24317, 21418, 'en', 'name', 'BMI Goring Hall Hospital'),
(24318, 21419, 'en', 'name', 'Northgate Hospital'),
(24319, 21420, 'en', 'name', 'Rochford Community Hospital'),
(24320, 21421, 'en', 'name', 'Northumbria Specialist Emergency Care Hospital'),
(24321, 21422, 'en', 'name', 'Nottinghamshire Healthcare NHS Foundation Trust'),
(24322, 21423, 'en', 'name', 'Gosport War Memorial Hospital'),
(24323, 21424, 'en', 'name', 'Ashburton and Buckfastleigh Health and Wellbeing Centre'),
(24324, 21425, 'en', 'name', 'Alston Community Hospital'),
(24325, 21426, 'en', 'name', 'Wolverhampton Hospital'),
(24326, 21427, 'en', 'name', 'Newcastle upon Tyne Hospital'),
(24327, 21428, 'en', 'name', 'Oaklands Hospital'),
(24328, 21429, 'en', 'name', 'Odiham Cottage Hospital'),
(24329, 21430, 'en', 'name', 'Cheshunt Minor Injuries Unit'),
(24330, 21431, 'en', 'name', 'Ormskirk District General Hospital'),
(24331, 21432, 'en', 'name', 'Orpington Hospital'),
(24332, 21433, 'en', 'name', 'Samuel Johnson Community Hospital'),
(24333, 21434, 'en', 'name', 'Ashford Hospital'),
(24334, 21435, 'en', 'name', 'Orsett Hospital'),
(24335, 21436, 'en', 'name', 'Savernake Community Hospital'),
(24336, 21437, 'en', 'name', 'Wansbeck General Hospital'),
(24337, 21438, 'en', 'name', 'Paddocks Hospital'),
(24338, 21439, 'en', 'name', 'Ashtead Hospital'),
(24339, 21440, 'en', 'name', 'Paignton Health and Wellbeing Centre'),
(24340, 21441, 'no_lang_code', 'name', 'Meritor (Germany)'),
(24341, 21442, 'en', 'name', 'Grays Court Community Hospital'),
(24342, 21443, 'en', 'name', 'Palmer Community Hospital'),
(24343, 21444, 'en', 'name', 'Green Lane Hospital'),
(24344, 21445, 'en', 'name', 'Chichester Hospital'),
(24345, 21446, 'en', 'name', 'The Chiltern Hospital'),
(24346, 21447, 'en', 'name', 'Sevenoaks Hospital'),
(24347, 21448, 'en', 'name', 'Sheppey Community Hospital'),
(24348, 21449, 'en', 'name', 'Ashworth Hospital'),
(24349, 21450, 'en', 'name', 'Auckland Park Hospital'),
(24350, 21451, 'en', 'name', 'Patrick Stead Hospital'),
(24351, 21452, 'en', 'name', 'Guest Hospital'),
(24352, 21453, 'en', 'name', 'Shirley Oaks Hospital'),
(24353, 21454, 'en', 'name', 'Pendle Community Hospital'),
(24354, 21455, 'en', 'name', 'Shrewsbury and Telford Hospital NHS Trust'),
(24355, 21456, 'en', 'name', 'Avon and Wiltshire Mental Health Partnership NHS Trust'),
(24356, 21457, 'en', 'name', 'Babington Hospital'),
(24357, 21458, 'en', 'name', 'Pennine Care NHS Foundation Trust'),
(24358, 21459, 'en', 'name', 'Penrith Community Hospital'),
(24359, 21460, 'en', 'name', 'Pershore Community Hospital'),
(24360, 21461, 'en', 'name', 'GB Hunter Memorial Hospital'),
(24361, 21462, 'en', 'name', 'Sir Robert Peel Community Hospital'),
(24362, 21463, 'en', 'name', 'Peterlee Community Hospital'),
(24363, 21464, 'en', 'name', 'Petersfield Community Hospital'),
(24364, 21465, 'en', 'name', 'Sittingbourne Memorial Hospital'),
(24365, 21466, 'en', 'name', 'Barking Community Hospital'),
(24366, 21467, 'en', 'name', 'Skegness Hospital'),
(24367, 21468, 'en', 'name', 'Guisborough Primary Care Hospital'),
(24368, 21469, 'en', 'name', 'Skipton General Hospital'),
(24369, 21470, 'en', 'name', 'Barking, Havering And Redbridge University Hospitals NHS Trust'),
(24370, 21471, 'en', 'name', 'Plymouth Hospital'),
(24371, 21472, 'en', 'name', 'Cirencester Hospital'),
(24372, 21473, 'en', 'name', 'The South Cheshire Private Hospital'),
(24373, 21474, 'en', 'name', 'Poltair Community Hospital'),
(24374, 21475, 'en', 'name', 'Barnes Hospital'),
(24375, 21476, 'en', 'name', 'The Portland Hospital'),
(24376, 21477, 'en', 'name', 'South Hams Hospital'),
(24377, 21478, 'en', 'name', 'Potters Bar Community Hospital'),
(24378, 21479, 'en', 'name', 'South Molton Medical Centre'),
(24379, 21480, 'en', 'name', 'Barnet Enfield and Haringey Mental Health Trust'),
(24380, 21481, 'en', 'name', 'South West London and St George''s Mental Health NHS Trust'),
(24381, 21482, 'en', 'name', 'Primrose Hill Hospital'),
(24382, 21483, 'en', 'name', 'Princess of Wales Community Hospital'),
(24383, 21484, 'en', 'name', 'Southlands Hospital'),
(24384, 21485, 'en', 'name', 'Southwold Hospital'),
(24385, 21486, 'en', 'name', 'Spire Alexandra Hospital'),
(24386, 21487, 'en', 'name', 'Claremont Private Hospital'),
(24387, 21488, 'en', 'name', 'Spire Cheshire Hospital'),
(24388, 21489, 'en', 'name', 'Spire Clare Park Hospital'),
(24389, 21490, 'en', 'name', 'Spire Manchester Hospital'),
(24390, 21491, 'en', 'name', 'Spire Hull and East Riding Hospital'),
(24391, 21492, 'en', 'name', 'Romsey Hospital'),
(24392, 21493, 'en', 'name', 'Basildon Hospital'),
(24393, 21494, 'en', 'name', 'BMI The Princess Margaret Hospital'),
(24394, 21495, 'en', 'name', 'Prospect Park Hospital'),
(24395, 21496, 'en', 'name', 'Bassetlaw Hospital'),
(24396, 21497, 'en', 'name', 'Spire Cambridge Lea Hospital');
INSERT INTO `ror_settings` VALUES
(24397, 21498, 'en', 'name', 'Haltwhistle War Memorial Hospital'),
(24398, 21499, 'en', 'name', 'St Pancras Hospital'),
(24399, 21500, 'en', 'name', 'Tolworth Hospital'),
(24400, 21501, 'en', 'name', 'Spire Little Aston Hospital'),
(24401, 21502, 'en', 'name', 'Whipps Cross University Hospital'),
(24402, 21503, 'en', 'name', 'Spire Regency Hospital'),
(24403, 21504, 'en', 'name', 'Spire Southampton Hospital'),
(24404, 21505, 'en', 'name', 'Spire Washington Hospital'),
(24405, 21506, 'en', 'name', 'Purley War Memorial Hospital'),
(24406, 21507, 'en', 'name', 'Richardson Hospital'),
(24407, 21508, 'en', 'name', 'Spire Wellesley Hospital'),
(24408, 21509, 'en', 'name', 'Newcastle Dental Hospital'),
(24409, 21510, 'en', 'name', 'Springfield University Hospital'),
(24410, 21511, 'en', 'name', 'Queen Charlotte''s and Chelsea Hospital'),
(24411, 21512, 'en', 'name', 'St Albans City Hospital'),
(24412, 21513, 'en', 'name', 'Queen Elizabeth Hospital'),
(24413, 21514, 'en', 'name', 'St Ann’s Hospital'),
(24414, 21515, 'en', 'name', 'Queen Mary''s Hospital'),
(24415, 21516, 'en', 'name', 'St Ann''s Hospital'),
(24416, 21517, 'en', 'name', 'Queen Mary''s Hospital For Children'),
(24417, 21518, 'en', 'name', 'Bealey Community Hospital'),
(24418, 21519, 'en', 'name', 'Queen Victoria Hospital'),
(24419, 21520, 'en', 'name', 'Spire St Anthony’s Hospital'),
(24420, 21521, 'en', 'name', 'Harplands Hospital'),
(24421, 21522, 'en', 'name', 'The Beardwood Hospital'),
(24422, 21523, 'en', 'name', 'Clitheroe Community Hospital'),
(24423, 21524, 'en', 'name', 'The Beaumont Hospital'),
(24424, 21525, 'en', 'name', 'St Austell Community Hospital'),
(24425, 21526, 'en', 'name', 'Queen Victoria Memorial Hospital'),
(24426, 21527, 'en', 'name', 'St Barnabas Hospital'),
(24427, 21528, 'en', 'name', 'Beccles & District War Memorial Hospital'),
(24428, 21529, 'en', 'name', 'St Charles Hospital'),
(24429, 21530, 'en', 'name', 'Bensham Hospital'),
(24430, 21531, 'en', 'name', 'Redcar Primary Care Hospital'),
(24431, 21532, 'en', 'name', 'Havant War Memorial Hospital'),
(24432, 21533, 'en', 'name', 'Cobham Community Hospital'),
(24433, 21534, 'en', 'name', 'Renacres Hospital'),
(24434, 21535, 'en', 'name', 'Hawkhurst Community Hospital'),
(24435, 21536, 'en', 'name', 'Retford Hospital'),
(24436, 21537, 'en', 'name', 'New Selby War Memorial Hospital'),
(24437, 21538, 'en', 'name', 'Berkshire Healthcare NHS Foundation Trust'),
(24438, 21539, 'en', 'name', 'Richmond Royal Hospital'),
(24439, 21540, 'en', 'name', 'Cockermouth Community Hospital'),
(24440, 21541, 'en', 'name', 'The Berkshire Independent Hospital'),
(24441, 21542, 'en', 'name', 'St Clement''s Hospital'),
(24442, 21543, 'en', 'name', 'Berrywood Hospital'),
(24443, 21544, 'en', 'name', 'Bexhill Hospital'),
(24444, 21545, 'en', 'name', 'Colman Hospital'),
(24445, 21546, 'en', 'name', 'Congleton War Memorial Hospital'),
(24446, 21547, 'en', 'name', 'Corbett Hospital'),
(24447, 21548, 'en', 'name', 'Rutson Hospital'),
(24448, 21549, 'en', 'name', 'Corby Community Hospital'),
(24449, 21550, 'en', 'name', 'St George''s Hospital'),
(24450, 21551, 'en', 'name', 'Cossham Hospital'),
(24451, 21552, 'en', 'name', 'St George''s Park'),
(24452, 21553, 'en', 'name', 'St Helens and Knowsley Teaching Hospitals NHS Trust'),
(24453, 21554, 'en', 'name', 'County Hospital'),
(24454, 21555, 'en', 'name', 'County Hospital Louth'),
(24455, 21556, 'en', 'name', 'St Helen''s Rehabilitation Hospital'),
(24456, 21557, 'en', 'name', 'Birmingham Community Healthcare NHS Trust'),
(24457, 21558, 'en', 'name', 'Bishop''s Castle Community Hospital'),
(24458, 21559, 'en', 'name', 'Crawley Hospital'),
(24459, 21560, 'en', 'name', 'St. Joseph''s Hospital'),
(24460, 21561, 'en', 'name', 'BMI Bishops Wood Hospital'),
(24461, 21562, 'en', 'name', 'St Leonards Community Hospital'),
(24462, 21563, 'en', 'name', 'Cromer Hospital'),
(24463, 21564, 'en', 'name', 'St Lukes Hospital'),
(24464, 21565, 'en', 'name', 'Cross Lane Hospital'),
(24465, 21566, 'en', 'name', 'Crowborough War Memorial Hospital'),
(24466, 21567, 'en', 'name', 'Croydon Health Services NHS Trust'),
(24467, 21568, 'en', 'name', 'Cygnet Hospital Beckton'),
(24468, 21569, 'en', 'name', 'Cygnet Hospital Wyke'),
(24469, 21570, 'en', 'name', 'St Martin''s Hospital'),
(24470, 21571, 'en', 'name', 'Blackberry Hill Hospital'),
(24471, 21572, 'en', 'name', 'St Martins Hospital'),
(24472, 21573, 'en', 'name', 'Danetre Hospital'),
(24473, 21574, 'en', 'name', 'Blakelands Hospital'),
(24474, 21575, 'en', 'name', 'Blandford Community Hospital'),
(24475, 21576, 'en', 'name', 'Hemel Hempstead Hospital'),
(24476, 21577, 'en', 'name', 'Dartford And Gravesham NHS Trust'),
(24477, 21578, 'en', 'name', 'Dartmouth Hospital'),
(24478, 21579, 'en', 'name', 'Rathbone Hospital'),
(24479, 21580, 'en', 'name', 'Blyth Community Hospital'),
(24480, 21581, 'en', 'name', 'Dawlish Community Hospital'),
(24481, 21582, 'en', 'name', 'St Mary''s Hospital'),
(24482, 21583, 'en', 'name', 'Bodmin Hospital'),
(24483, 21584, 'en', 'name', 'St Mary''s Hospital'),
(24484, 21585, 'en', 'name', 'Ridge Lea Hospital'),
(24485, 21586, 'en', 'name', 'St Mary''s Hospital'),
(24486, 21587, 'en', 'name', 'Dereham Hospital'),
(24487, 21588, 'en', 'name', 'Devizes Community Hospital'),
(24488, 21589, 'en', 'name', 'Ripon Community Hospital'),
(24489, 21590, 'en', 'name', 'Devon Partnership NHS Trust'),
(24490, 21591, 'en', 'name', 'Didcot Community Hospital'),
(24491, 21592, 'en', 'name', 'Herts and Essex Hospital'),
(24492, 21593, 'en', 'name', 'Dilke Memorial Hospital'),
(24493, 21594, 'en', 'name', 'Hertfordshire Community NHS Trust'),
(24494, 21595, 'en', 'name', 'Doddington Hospital'),
(24495, 21596, 'en', 'name', 'Hexham General Hospital'),
(24496, 21597, 'en', 'name', 'St Michael''s Hospital'),
(24497, 21598, 'en', 'name', 'Highbury Hospital'),
(24498, 21599, 'en', 'name', 'St Michael''s Hospital'),
(24499, 21600, 'en', 'name', 'Doncaster Gate Hospital'),
(24500, 21601, 'en', 'name', 'Dorking Community Hospital'),
(24501, 21602, 'en', 'name', 'Braintree Community Hospital'),
(24502, 21603, 'en', 'name', 'Dovedale Day Hospital'),
(24503, 21604, 'en', 'name', 'The Holly Private Hospital'),
(24504, 21605, 'en', 'name', 'Holmevalley Memorial Hospital'),
(24505, 21606, 'en', 'name', 'Holsworthy Community Hospital'),
(24506, 21607, 'en', 'name', 'Holy Cross Hospital'),
(24507, 21608, 'en', 'name', 'Homerton University Hospital'),
(24508, 21609, 'en', 'name', 'Swaffham Community Hospital'),
(24509, 21610, 'en', 'name', 'Swanage Community Hospital'),
(24510, 21611, 'en', 'name', 'Tarporley War Memorial Hospital'),
(24511, 21612, 'en', 'name', 'St Monicas Hospital'),
(24512, 21613, 'en', 'name', 'Bridgewater Hospital'),
(24513, 21614, 'en', 'name', 'Tavistock Hospital'),
(24514, 21615, 'en', 'name', 'St Nicholas Hospital'),
(24515, 21616, 'en', 'name', 'Dulwich Community Hospital'),
(24516, 21617, 'en', 'name', 'Teddington Memorial Hospital'),
(24517, 21618, 'en', 'name', 'St. Oswald''s Hospital'),
(24518, 21619, 'en', 'name', 'Tees, Esk and Wear Valleys NHS Foundation Trust'),
(24519, 21620, 'en', 'name', 'St Peter''s Hospital'),
(24520, 21621, 'en', 'name', 'Horncastle War Memorial Hospital'),
(24521, 21622, 'en', 'name', 'Spire Dunedin Hospital'),
(24522, 21623, 'en', 'name', 'Teignmouth Community Hospital'),
(24523, 21624, 'en', 'name', 'Bridgnorth Community Hospital'),
(24524, 21625, 'en', 'name', 'Tenbury Community Hospital'),
(24525, 21626, 'en', 'name', 'Tetbury Hospital'),
(24526, 21627, 'en', 'name', 'Bridlington Hospital'),
(24527, 21628, 'en', 'name', 'Bridport Community Hospital'),
(24528, 21629, 'en', 'name', 'Thame Community Hospital'),
(24529, 21630, 'en', 'name', 'Stamford and Rutland Hospital'),
(24530, 21631, 'en', 'name', 'Dunston Hill Hospital'),
(24531, 21632, 'en', 'name', 'Nuffield Health Bristol Hospital'),
(24532, 21633, 'en', 'name', 'The Foscote Hospital'),
(24533, 21634, 'en', 'name', 'Stockport NHS Foundation Trust'),
(24534, 21635, 'en', 'name', 'Stratford Hospital'),
(24535, 21636, 'en', 'name', 'East and North Hertfordshire NHS Trust'),
(24536, 21637, 'en', 'name', 'Stratton Community Hospital'),
(24537, 21638, 'en', 'name', 'The Gordon Hospital'),
(24538, 21639, 'en', 'name', 'East Cheshire NHS Trust'),
(24539, 21640, 'en', 'name', 'Stretford Memorial Hospital'),
(24540, 21641, 'en', 'name', 'Stroud General Hospital'),
(24541, 21642, 'en', 'name', 'Horsham Hospital'),
(24542, 21643, 'en', 'name', 'Bristol Homeopathic Hospital'),
(24543, 21644, 'en', 'name', 'Stroud Maternity Hospital'),
(24544, 21645, 'en', 'name', 'East Cleveland Primary Care Hospital'),
(24545, 21646, 'en', 'name', 'Hospital of St. Cross'),
(24546, 21647, 'en', 'name', 'Hospital of St John & St Elizabeth'),
(24547, 21648, 'en', 'name', 'Brixham Community Hospital'),
(24548, 21649, 'en', 'name', 'Hounslow and Richmond Community Healthcare NHS Trust'),
(24549, 21650, 'en', 'name', 'Surrey and Borders Partnership NHS Foundation Trust'),
(24550, 21651, 'en', 'name', 'Surrey and Sussex Healthcare NHS Trust'),
(24551, 21652, 'en', 'name', 'East Lancashire Hospitals NHS Trust'),
(24552, 21653, 'en', 'name', 'East Midlands Ambulance Service NHS Trust'),
(24553, 21654, 'en', 'name', 'Broadgreen Hospital'),
(24554, 21655, 'en', 'name', 'Spire Bristol Hospital'),
(24555, 21656, 'en', 'name', 'Sutton Hospital'),
(24556, 21657, 'en', 'name', 'Lambeth Hospital'),
(24557, 21658, 'en', 'name', 'East of England Ambulance Service NHS Trust'),
(24558, 21659, 'en', 'name', 'Bromyard Community Hospital'),
(24559, 21660, 'en', 'name', 'East Riding Community Hospital'),
(24560, 21661, 'en', 'name', 'Bognor Regis War Memorial Hospital'),
(24561, 21662, 'en', 'name', 'Montefiore Hospital'),
(24562, 21663, 'en', 'name', 'HRH Princess Christian''s Hospital'),
(24563, 21664, 'en', 'name', 'East Sussex Healthcare NHS Trust'),
(24564, 21665, 'en', 'name', 'Eastman Dental Hospital'),
(24565, 21666, 'en', 'name', 'Brookfields Hospital'),
(24566, 21667, 'en', 'name', 'Brooklands Hospital'),
(24567, 21668, 'en', 'name', 'Buckingham Community Hospital'),
(24568, 21669, 'en', 'name', 'Edenbridge and District War Memorial Hospital'),
(24569, 21670, 'en', 'name', 'Wantage Community Hospital'),
(24570, 21671, 'en', 'name', 'Wareham Community Hospital'),
(24571, 21672, 'en', 'name', 'Buckinghamshire Healthcare NHS Trust'),
(24572, 21673, 'en', 'name', 'Edgware Community Hospital'),
(24573, 21674, 'en', 'name', 'The Princess Grace Hospital'),
(24574, 21675, 'en', 'name', 'Buckland Hospital'),
(24575, 21676, 'en', 'name', 'Huntercombe Hospital'),
(24576, 21677, 'en', 'name', 'Edward Hain Community Hospital'),
(24577, 21678, 'en', 'name', 'Warminster Community Hospital'),
(24578, 21679, 'en', 'name', 'Ellen Badger Hospital'),
(24579, 21680, 'en', 'name', 'Hythe Hospital'),
(24580, 21681, 'en', 'name', 'Royal London Hospital for Integrated Medicine'),
(24581, 21682, 'en', 'name', 'The Royal Wolverhampton NHS Trust'),
(24582, 21683, 'en', 'name', 'Ellesmere Port Hospital'),
(24583, 21684, 'en', 'name', 'Vale Community Hospital'),
(24584, 21685, 'en', 'name', 'The Wellington Hospital'),
(24585, 21686, 'en', 'name', 'Bupa Cromwell Hospital'),
(24586, 21687, 'en', 'name', 'Wathwood Hospital'),
(24587, 21688, 'en', 'name', 'Clevedon Hospital'),
(24588, 21689, 'en', 'name', 'Spire Hartswood Hospital'),
(24589, 21690, 'en', 'name', 'Wells Community Hospital'),
(24590, 21691, 'en', 'name', 'Tickhill Road Hospital'),
(24591, 21692, 'en', 'name', 'New Epsom and Ewell Community Hospital'),
(24592, 21693, 'en', 'name', 'Tonbridge Cottage Hospital'),
(24593, 21694, 'en', 'name', 'Erith and District Hospital'),
(24594, 21695, 'en', 'name', 'West Berkshire Community Hospital'),
(24595, 21696, 'en', 'name', 'West Cornwall Hospital'),
(24596, 21697, 'en', 'name', 'Euxton Hall Hospital'),
(24597, 21698, 'en', 'name', 'Evesham Community Hospital'),
(24598, 21699, 'en', 'name', 'Torrington Hospital'),
(24599, 21700, 'en', 'name', 'West Hertfordshire Hospitals NHS Trust'),
(24600, 21701, 'en', 'name', 'West Lane Hospital'),
(24601, 21702, 'en', 'name', 'Exeter Hospital'),
(24602, 21703, 'en', 'name', 'West London Mental Health NHS Trust'),
(24603, 21704, 'en', 'name', 'Bushey Fields Hospital'),
(24604, 21705, 'en', 'name', 'Totnes Community Hospital'),
(24605, 21706, 'en', 'name', 'Fairfield Independent Hospital'),
(24606, 21707, 'en', 'name', 'Fairford Hospital'),
(24607, 21708, 'en', 'name', 'West Park Hospital'),
(24608, 21709, 'en', 'name', 'Falmouth Community Hospital'),
(24609, 21710, 'en', 'name', 'Buxton Hospital'),
(24610, 21711, 'en', 'name', 'Trowbridge Community Hospital'),
(24611, 21712, 'en', 'name', 'Kent Community Health NHS Foundation Trust'),
(24612, 21713, 'en', 'name', 'Tunbridge Wells Hospital'),
(24613, 21714, 'en', 'name', 'Keswick Community Hospital'),
(24614, 21715, 'en', 'name', 'Fareham Community Hospital'),
(24615, 21716, 'en', 'name', 'Calderstones Partnership NHS Foundation Trust'),
(24616, 21717, 'en', 'name', 'Farnham Hospital & Centre For Health'),
(24617, 21718, 'en', 'name', 'Callington Road Hospital'),
(24618, 21719, 'en', 'name', 'Kidderminster Hospital and Treatment Centre'),
(24619, 21720, 'en', 'name', 'Camborne Redruth Community Hospital'),
(24620, 21721, 'en', 'name', 'Farnham Road Hospital'),
(24621, 21722, 'en', 'name', 'Cambridgeshire Community Services NHS Trust'),
(24622, 21723, 'en', 'name', 'Westbourne Green Community Hospital'),
(24623, 21724, 'en', 'name', 'Cannock Chase Hospital'),
(24624, 21725, 'en', 'name', 'Faversham Cottage Hospital'),
(24625, 21726, 'en', 'name', 'Oaks Hospital'),
(24626, 21727, 'en', 'name', 'St. Margaret''s Hospital'),
(24627, 21728, 'en', 'name', 'Duchy Hospital'),
(24628, 21729, 'en', 'name', 'Rivers Hospital'),
(24629, 21730, 'en', 'name', 'BMI Fawkham Manor Hospital'),
(24630, 21731, 'en', 'name', 'Springfield Hospital'),
(24631, 21732, 'en', 'name', 'Western Community Hospital'),
(24632, 21733, 'en', 'name', 'Esperance Hospital'),
(24633, 21734, 'en', 'name', 'Western Eye Hospital'),
(24634, 21735, 'en', 'name', 'Westhaven Hospital'),
(24635, 21736, 'en', 'name', 'Carter Bequest Primary Care Hospital'),
(24636, 21737, 'en', 'name', 'Lambert Memorial Community Hospital'),
(24637, 21738, 'en', 'name', 'Lancashire Care NHS Foundation Trust'),
(24638, 21739, 'en', 'name', 'Cassel Hospital'),
(24639, 21740, 'en', 'name', 'Langdon Hospital'),
(24640, 21741, 'en', 'name', 'Westmorland General Hospital'),
(24641, 21742, 'en', 'name', 'Feilding Palmer Hospital'),
(24642, 21743, 'en', 'name', 'Ilfracombe Tyrrell Hospital'),
(24643, 21744, 'en', 'name', 'Felixstowe Community Hospital'),
(24644, 21745, 'en', 'name', 'Uckfield Community Hospital'),
(24645, 21746, 'en', 'name', 'Castleberg Hospital'),
(24646, 21747, 'en', 'name', 'Weymouth Community Hospital'),
(24647, 21748, 'en', 'name', 'University College Hospital'),
(24648, 21749, 'en', 'name', 'Wharfedale Hospital'),
(24649, 21750, 'en', 'name', 'University Hospital of Hartlepool'),
(24650, 21751, 'en', 'name', 'University Hospitals of North Midlands NHS Trust'),
(24651, 21752, 'en', 'name', 'Caterham Dene Hospital'),
(24652, 21753, 'en', 'name', 'The Edgbaston Hospital'),
(24653, 21754, 'en', 'name', 'Hendon Hospital'),
(24654, 21755, 'en', 'name', 'BMI The Highfield Hospital'),
(24655, 21756, 'en', 'name', 'BMI The Ridgeway Hospital'),
(24656, 21757, 'en', 'name', 'Leatherhead Community Hospital'),
(24657, 21758, 'en', 'name', 'Fieldhead Hospital'),
(24658, 21759, 'en', 'name', 'Leeds Community Healthcare NHS Trust'),
(24659, 21760, 'en', 'name', 'Finchley Memorial Hospital'),
(24660, 21761, 'en', 'name', 'Rye Winchelsea and District Memorial Hospital'),
(24661, 21762, 'en', 'name', 'Central London Community Healthcare NHS Trust'),
(24662, 21763, 'en', 'name', 'Fleet Community Hospital'),
(24663, 21764, 'en', 'name', 'Fleetwood Hospital'),
(24664, 21765, 'en', 'name', 'Helston Community Hospital'),
(24665, 21766, 'en', 'name', 'Abingdon Community Hospital'),
(24666, 21767, 'en', 'name', 'Fordingbridge Hospital'),
(24667, 21768, 'en', 'name', 'The Acre'),
(24668, 21769, 'en', 'name', 'Townlands Memorial Hospital'),
(24669, 21770, 'en', 'name', 'Hopewood Park Hospital'),
(24670, 21771, 'en', 'name', 'Fowey Hospital'),
(24671, 21772, 'en', 'name', 'Franklyn Community Hospital'),
(24672, 21773, 'en', 'name', 'Friary Community Hospital'),
(24673, 21774, 'en', 'name', 'Victoria Community Hospital'),
(24674, 21775, 'en', 'name', 'Spire Gatwick Park Hospital'),
(24675, 21776, 'en', 'name', 'Gloucestershire Health and Care NHS Foundation Trust'),
(24676, 21777, 'en', 'name', 'Leek Moorlands Hospital'),
(24677, 21778, 'en', 'name', 'Goodmayes Hospital'),
(24678, 21779, 'en', 'name', 'Wallingford Community Hospital'),
(24679, 21780, 'en', 'name', 'Leigh House Hospital'),
(24680, 21781, 'en', 'name', 'Leominster Community Hospital'),
(24681, 21782, 'en', 'name', 'Aldeburgh Hospital'),
(24682, 21783, 'en', 'name', 'Lewes Victoria Hospital'),
(24683, 21784, 'en', 'name', 'University Hospital Lewisham'),
(24684, 21785, 'en', 'name', 'Seaford Day Hospital'),
(24685, 21786, 'en', 'name', 'Altrincham Hospital'),
(24686, 21787, 'en', 'name', 'Amberstone Hospital'),
(24687, 21788, 'en', 'name', 'Liskeard Community Hospital'),
(24688, 21789, 'en', 'name', 'Haywards Heath Hospital'),
(24689, 21790, 'en', 'name', 'Liverpool Community Health NHS Trust'),
(24690, 21791, 'en', 'name', 'Chippenham Community Hospital'),
(24691, 21792, 'en', 'name', 'Clay Cross Hospital'),
(24692, 21793, 'en', 'name', 'Livingstone Community Hospital'),
(24693, 21794, 'en', 'name', 'Newholme Hospital'),
(24694, 21795, 'en', 'name', 'St Mary''s Hospital'),
(24695, 21796, 'en', 'name', 'Walsall Healthcare NHS Trust'),
(24696, 21797, 'en', 'name', 'London Ambulance Service NHS Trust'),
(24697, 21798, 'en', 'name', 'Coalville Community Hospital'),
(24698, 21799, 'en', 'name', 'BMI The London Independent Hospital'),
(24699, 21800, 'en', 'name', 'London North West Healthcare NHS Trust'),
(24700, 21801, 'en', 'name', 'BMI The Droitwich Spa Hospital'),
(24701, 21802, 'en', 'name', 'Longridge Community Hospital'),
(24702, 21803, 'en', 'name', 'Longton Cottage Hospital'),
(24703, 21804, 'en', 'name', 'Ludlow Community Hospital'),
(24704, 21805, 'en', 'name', 'Lydney and District Hospital'),
(24705, 21806, 'en', 'name', 'Bicester Community Hospital'),
(24706, 21807, 'en', 'name', 'Lytham Hospital'),
(24707, 21808, 'en', 'name', 'Thames Valley Hospital'),
(24708, 21809, 'en', 'name', 'Maidstone and Tunbridge Wells NHS Trust'),
(24709, 21810, 'en', 'name', 'Chester le Street Community Hospital'),
(24710, 21811, 'en', 'name', 'Nelson Hospital'),
(24711, 21812, 'en', 'name', 'Malton Community Hospital'),
(24712, 21813, 'en', 'name', 'Malvern Community Hospital'),
(24713, 21814, 'en', 'name', 'West Heath Hospital'),
(24714, 21815, 'en', 'name', 'Manor Hospital'),
(24715, 21816, 'en', 'name', 'West View Integrated Care Centre'),
(24716, 21817, 'en', 'name', 'Alfred Bean Hospital'),
(24717, 21818, 'en', 'name', 'Mansfield Community Hospital'),
(24718, 21819, 'en', 'name', 'Market Drayton Cottage Hospital'),
(24719, 21820, 'en', 'name', 'Chipping Norton War Memorial Community Hospital'),
(24720, 21821, 'en', 'name', 'Marlow Community Hospital'),
(24721, 21822, 'en', 'name', 'Ashfield Community Hospital'),
(24722, 21823, 'en', 'name', 'Clacton Hospital'),
(24723, 21824, 'en', 'name', 'Weybridge Community Hospital'),
(24724, 21825, 'en', 'name', 'Spire London East Hospital'),
(24725, 21826, 'en', 'name', 'Maryport Victoria Cottage Hospital'),
(24726, 21827, 'en', 'name', 'Maudsley Hospital'),
(24727, 21828, 'en', 'name', 'Saffron Walden Community Hospital'),
(24728, 21829, 'en', 'name', 'Newmarket Hospital'),
(24729, 21830, 'en', 'name', 'Mayfair Day Hospital'),
(24730, 21831, 'en', 'name', 'Elmleigh Hospital'),
(24731, 21832, 'en', 'name', 'Mayflower Community Hospital'),
(24732, 21833, 'en', 'name', 'Sedgefield Community Hospital'),
(24733, 21834, 'en', 'name', 'Shipley Hospital'),
(24734, 21835, 'en', 'name', 'Emsworth Hospital'),
(24735, 21836, 'en', 'name', 'Eccleshill Community Hospital'),
(24736, 21837, 'en', 'name', 'St. Leonards Hospital'),
(24737, 21838, 'en', 'name', 'Barton Community Health & Care Centre'),
(24738, 21839, 'en', 'name', 'Newtown Hospital'),
(24739, 21840, 'en', 'name', 'Sutton Cottage Hospital'),
(24740, 21841, 'en', 'name', 'Walton Community Hospital'),
(24741, 21842, 'en', 'name', 'Walton Hospital'),
(24742, 21843, 'en', 'name', 'Grantham and District Hospital'),
(24743, 21844, 'en', 'name', 'Bideford Medical Centre'),
(24744, 21845, 'en', 'name', 'Biggleswade Hospital Spring House'),
(24745, 21846, 'en', 'name', 'Whitby Hospital'),
(24746, 21847, 'en', 'name', 'Bispham Hospital'),
(24747, 21848, 'en', 'name', 'Wilson Hospital'),
(24748, 21849, 'en', 'name', 'Bletchley Community Hospital'),
(24749, 21850, 'en', 'name', 'Gravesham Community Hospital'),
(24750, 21851, 'en', 'name', 'Bolsover Hospital'),
(24751, 21852, 'en', 'name', 'Winfield Hospital'),
(24752, 21853, 'en', 'name', 'Paulton Hospital'),
(24753, 21854, 'en', 'name', 'Peasley Cross Hospital'),
(24754, 21855, 'en', 'name', 'Withernsea Hospital'),
(24755, 21856, 'en', 'name', 'Bowmere Hospital'),
(24756, 21857, 'en', 'name', 'Witney Community Hospital'),
(24757, 21858, 'en', 'name', 'Johnson Community Hospital'),
(24758, 21859, 'en', 'name', 'Woking Community Hospital'),
(24759, 21860, 'en', 'name', 'Halstead Hospital'),
(24760, 21861, 'en', 'name', 'Wokingham Hospital'),
(24761, 21862, 'en', 'name', 'Whitchurch Community Hospital'),
(24762, 21863, 'en', 'name', 'White Cross Court Rehabilitation Hospital'),
(24763, 21864, 'en', 'name', 'Brampton War Memorial Hospital'),
(24764, 21865, 'en', 'name', 'Woodlands Hospital'),
(24765, 21866, 'en', 'name', 'Whitstable and Tankerton Hospital'),
(24766, 21867, 'en', 'name', 'Harwich And District Hospital'),
(24767, 21868, 'en', 'name', 'Haslemere Hospital'),
(24768, 21869, 'en', 'name', 'Brentwood Community Hospital'),
(24769, 21870, 'en', 'name', 'Whitworth Hospital'),
(24770, 21871, 'en', 'name', 'Bridgeways Day Hospital'),
(24771, 21872, 'en', 'name', 'Hellesdon Hospital'),
(24772, 21873, 'en', 'name', 'Wigton Community Hospital'),
(24773, 21874, 'en', 'name', 'Woodlands Hospital'),
(24774, 21875, 'en', 'name', 'Willesden Community Rehabilitation Hospital'),
(24775, 21876, 'en', 'name', 'Hinckley and Bosworth Community Hospital'),
(24776, 21877, 'en', 'name', 'Hinckley and District Hospital'),
(24777, 21878, 'en', 'name', 'Prudhoe Hospital'),
(24778, 21879, 'en', 'name', 'Calderstones Hospital'),
(24779, 21880, 'en', 'name', 'Hitchin Hospital'),
(24780, 21881, 'en', 'name', 'Queen Victoria Memorial Hospital'),
(24781, 21882, 'en', 'name', 'Ripley Hospital'),
(24782, 21883, 'en', 'name', 'Castleford, Normanton and District Hospital'),
(24783, 21884, 'en', 'name', 'Hollins Park Hospital'),
(24784, 21885, 'en', 'name', 'Cavendish Hospital'),
(24785, 21886, 'en', 'name', 'Hornsea Cottage Hospital'),
(24786, 21887, 'en', 'name', 'Workington Community Hospital'),
(24787, 21888, 'en', 'name', 'Hundens Lane Day Hospital'),
(24788, 21889, 'en', 'name', 'Orchards Day Hospital'),
(24789, 21890, 'en', 'name', 'Wotton Lawn Hospital'),
(24790, 21891, 'en', 'name', 'Wye Valley NHS Trust'),
(24791, 21892, 'en', 'name', 'Ilkeston Hospital'),
(24792, 21893, 'en', 'name', 'York Teaching Hospital NHS Foundation Trust'),
(24793, 21894, 'en', 'name', 'Yorkshire Ambulance Service NHS Trust'),
(24794, 21895, 'en', 'name', 'Ida Darwin hospital'),
(24795, 21896, 'en', 'name', 'Zachary Merton Hospital'),
(24796, 21897, 'en', 'name', 'Advanced Applied Physics Solutions'),
(24797, 21898, 'en', 'name', 'Victoria Central Hospital'),
(24798, 21899, 'en', 'name', 'Isebrook Hospital'),
(24799, 21900, 'en', 'name', 'Red Crow Community College'),
(24800, 21901, 'en', 'name', 'Walnut Tree Hospital'),
(24801, 21902, 'en', 'name', 'John Black Day Hospital'),
(24802, 21903, 'en', 'name', 'John Coupland Hospital'),
(24803, 21904, 'en', 'name', 'Kelling Hospital'),
(24804, 21905, 'en', 'name', 'Kendray Hospital'),
(24805, 21906, 'fr', 'name', 'Association Canadienne d''Education de Langue FranƧaise'),
(24806, 21907, 'fr', 'name', 'Association Canadienne de Linguistique'),
(24807, 21907, 'en', 'name', 'Canadian Linguistic Association'),
(24808, 21908, 'en', 'name', 'GreenCentre Canada'),
(24809, 21909, 'en', 'name', 'Kings Park Hospital'),
(24810, 21910, 'en', 'name', 'Historical Studies in Education'),
(24811, 21910, 'fr', 'name', 'Revue d''histoire de l''Ʃducation'),
(24812, 21911, 'en', 'name', 'Knutsford and District Community Hospital'),
(24813, 21912, 'en', 'name', 'Langley Green Hospital'),
(24814, 21913, 'no_lang_code', 'name', 'Inanna Publications and Education (Canada)'),
(24815, 21914, 'fr', 'name', 'Association Canadienne des Sociologues et Anthropologues de Langue FranƧaise'),
(24816, 21915, 'en', 'name', 'Leeds Dental Hospital'),
(24817, 21916, 'en', 'name', 'Leicester Frith Hospital'),
(24818, 21917, 'en', 'name', 'Lincolnshire Community Health Services NHS Trust'),
(24819, 21918, 'fr', 'name', 'Institut d''Histoire de l''AmƩrique FranƧaise'),
(24820, 21919, 'en', 'name', 'Lings Bar Hospital'),
(24821, 21920, 'en', 'name', 'Little Plumstead Hospital'),
(24822, 21921, 'fr', 'name', 'Association des DƩmographes du QuƩbec'),
(24823, 21922, 'en', 'name', 'Association for Canadian and QuƩbec Literatures'),
(24824, 21922, 'fr', 'name', 'L’Association des littĆ©ratures canadiennes et quĆ©bĆ©coise'),
(24825, 21923, 'en', 'name', 'Informal logic (Canada)'),
(24826, 21924, 'en', 'name', 'Association for Canadian Studies'),
(24827, 21925, 'en', 'name', 'Institute of Public Administration of Canada'),
(24828, 21926, 'en', 'name', 'International Council for Canadian Studies'),
(24829, 21927, 'en', 'name', 'Canadian Cartographic Association'),
(24830, 21927, 'fr', 'name', 'L''Association Canadienne de Cartographie'),
(24831, 21928, 'en', 'name', 'Nunavik Regional Board of Health and Social Services'),
(24832, 21928, 'fr', 'name', 'RƩgie rƩgionale de la santƩ et des services sociaux du Nunavik'),
(24833, 21929, 'fr', 'name', 'Association Canadienne pour la Recherche Théâtrale'),
(24834, 21929, 'en', 'name', 'Canadian Association for Theatre Research'),
(24835, 21930, 'en', 'name', 'Kamloops Art Gallery'),
(24836, 21931, 'en', 'name', 'Llandrindod Wells Hospital'),
(24837, 21932, 'en', 'name', 'Canadian Network for Innovation in Education'),
(24838, 21932, 'fr', 'name', 'RƩseau Canadien Pour l''innovation en Education'),
(24839, 21933, 'en', 'name', 'Loughborough Hospital'),
(24840, 21934, 'en', 'name', 'Lymington New Forest Hospital'),
(24841, 21935, 'en', 'name', 'Julian Hospital'),
(24842, 21936, 'en', 'name', 'Canadian Centre for Community Renewal'),
(24843, 21937, 'en', 'name', 'Queen''s Hospital'),
(24844, 21938, 'fr', 'name', 'La BoƮte Ơ lettres'),
(24845, 21939, 'en', 'name', 'Canadian Centre for Policy Alternatives'),
(24846, 21940, 'en', 'name', 'Association for the Advancement of Scandinavian Studies in Canada'),
(24847, 21940, 'fr', 'name', 'l''Association pour l''avancement des Ʃtudes scandinaves au Canada'),
(24848, 21941, 'en', 'name', 'Canadian Co-operative Association'),
(24849, 21942, 'en', 'name', 'Leamington Spa Hospital'),
(24850, 21943, 'fr', 'name', 'SociƩtƩ Canadienne de Science Economique'),
(24851, 21944, 'fr', 'name', 'SociƩtƩ Canadienne de ThƩologie'),
(24852, 21945, 'fr', 'name', 'CollĆØge marianopolis'),
(24853, 21945, 'en', 'name', 'Marianopolis College'),
(24854, 21946, 'en', 'name', 'Association of Canadian College and University Teachers of English'),
(24855, 21947, 'en', 'name', 'MaRS Innovation'),
(24856, 21948, 'en', 'name', 'McCord Museum'),
(24857, 21948, 'fr', 'name', 'MusƩe McCord'),
(24858, 21949, 'no_lang_code', 'name', 'Amerindian Research in Quebec (Canada)'),
(24859, 21950, 'en', 'name', 'Association of Canadian Map Libraries and Archives'),
(24860, 21951, 'en', 'name', 'Canadian Society for Digital Humanities'),
(24861, 21951, 'fr', 'name', 'SociƩtƩ Canadienne pour les HumanitƩs NumƩriques.'),
(24862, 21952, 'en', 'name', 'Society for Socialist Studies'),
(24863, 21952, 'fr', 'name', 'SociƩtƩ dƩtudes socialistes'),
(24864, 21953, 'fr', 'name', 'Association pour le DƩveloppement de la Mesure et de l''Evaluation en Education'),
(24865, 21954, 'en', 'name', 'MƩtis National Council'),
(24866, 21954, 'fr', 'name', 'Ralliement national des MƩtis'),
(24867, 21955, 'en', 'name', 'Society for the Study of Architecture in Canada'),
(24868, 21955, 'fr', 'name', 'SociĆ©tĆ© pour l''Ɖtude de l''Architecture au Canada'),
(24869, 21956, 'en', 'name', 'Mining Industry Human Resources Council'),
(24870, 21957, 'en', 'name', 'Society for the Study of Egyptian Antiquities'),
(24871, 21958, 'fr', 'name', 'Sociologie et SociƩtƩs'),
(24872, 21959, 'en', 'name', 'Bioindustrial Innovation Canada'),
(24873, 21960, 'en', 'name', 'Squamish Nation'),
(24874, 21961, 'en', 'name', 'Canadian Society of Church History'),
(24875, 21961, 'fr', 'name', 'SociĆ©tĆ© Canadienne d’Histoire de l’Eglise'),
(24876, 21962, 'en', 'name', 'Canadian Council on Social Development'),
(24877, 21963, 'en', 'name', 'MiningWatch Canada'),
(24878, 21964, 'fr', 'name', 'Association Canadienne de Counseling et de PsychothƩrapie'),
(24879, 21964, 'en', 'name', 'Canadian Counselling and Psychotherapy Association'),
(24880, 21965, 'en', 'name', 'Campion College'),
(24881, 21966, 'en', 'name', 'TESL Canada Federation'),
(24882, 21967, 'en', 'name', 'Avataq Cultural Institute'),
(24883, 21968, 'en', 'name', 'National Circus School'),
(24884, 21968, 'fr', 'name', 'Ɖcole nationale de cirque'),
(24885, 21969, 'en', 'name', 'Bibliographical Society of Canada'),
(24886, 21969, 'fr', 'name', 'La SociƩtƩ Bibliographique du Canada'),
(24887, 21970, 'fr', 'name', 'La commission des Ʃtudiants'),
(24888, 21970, 'en', 'name', 'Students Commission'),
(24889, 21971, 'fr', 'name', 'Association Canadienne de Justice PƩnale'),
(24890, 21971, 'en', 'name', 'Canadian Criminal Justice Association'),
(24891, 21972, 'en', 'name', 'Wellesley Institute'),
(24892, 21973, 'en', 'name', 'Toronto Arts Foundation'),
(24893, 21974, 'en', 'name', 'Canadian Anthropology Society'),
(24894, 21975, 'fr', 'name', 'UniversitƩ Sainte-Anne'),
(24895, 21976, 'fr', 'name', 'L''Association d''art des universitƩs du Canada'),
(24896, 21976, 'en', 'name', 'Universities Art Association of Canada'),
(24897, 21977, 'en', 'name', 'Native Women''s Association of Canada'),
(24898, 21978, 'fr', 'name', 'UniversitƩ de Hearst'),
(24899, 21979, 'en', 'name', 'Canadian Arctic Resources Committee'),
(24900, 21980, 'en', 'name', 'Canadian Arthritis Network'),
(24901, 21981, 'en', 'name', 'Trinity College'),
(24902, 21982, 'no_lang_code', 'name', 'New Dawn Enterprises (Canada)'),
(24903, 21983, 'en', 'name', 'Canadian Association for Business Economics'),
(24904, 21984, 'en', 'name', 'Prostate Centre’s Translational Research Initiative for Accelerated Discovery and Development'),
(24905, 21985, 'en', 'name', 'Canadian Association for Commonwealth Literature and Language Studies'),
(24906, 21986, 'en', 'name', 'Canadian Association for Graduate Studies'),
(24907, 21987, 'en', 'name', 'Wavefront Wireless Commercialization Centre'),
(24908, 21988, 'en', 'name', 'Canadian Forum on Civil Justice'),
(24909, 21989, 'en', 'name', 'Wycliffe College'),
(24910, 21990, 'en', 'name', 'Canadian Historical Association'),
(24911, 21990, 'fr', 'name', 'SociƩtƩ historique du Canada'),
(24912, 21991, 'fr', 'name', 'Association canadienne d''Ʃtudes en loisir'),
(24913, 21991, 'en', 'name', 'Canadian Association for Leisure Studies'),
(24914, 21992, 'fr', 'name', 'Bureau des Services Ć  la Jeunesse'),
(24915, 21992, 'en', 'name', 'Youth Services Bureau of Ottawa'),
(24916, 21993, 'fr', 'name', 'Women''s and Gender Studies et Recherches FƩministes'),
(24917, 21994, 'en', 'name', 'McMaster Divinity College'),
(24918, 21995, 'en', 'name', 'Centre for Community Based Research'),
(24919, 21996, 'en', 'name', 'Centre for Drug Research and Development'),
(24920, 21997, 'fr', 'name', 'Association Canadienne de Communication'),
(24921, 21997, 'en', 'name', 'Canadian Communication Association'),
(24922, 21998, 'no_lang_code', 'name', 'Centre for Imaging Technology Commercialization'),
(24923, 21999, 'en', 'name', 'NWT Literacy Council'),
(24924, 22000, 'en', 'name', 'Canadian Association for Social Work Education'),
(24925, 22001, 'fr', 'name', 'Association Canadienne pour les Ɖtudes sur la Cooperation'),
(24926, 22001, 'en', 'name', 'Canadian Association for Studies in Co-operation'),
(24927, 22002, 'en', 'name', 'Centre for Probe Development and Commercialization'),
(24928, 22003, 'fr', 'name', 'Association canadienne des industrielles'),
(24929, 22003, 'en', 'name', 'Canadian Industrial Relations Association'),
(24930, 22004, 'fr', 'name', 'Association Canadienne pour l''Avancement des Ʃtudes NƩerlandaises'),
(24931, 22004, 'en', 'name', 'Canadian Association for the Advancement of Netherlandic Studies'),
(24932, 22005, 'en', 'name', 'International Centre for Comparative Criminology'),
(24933, 22006, 'en', 'name', 'Canadian Association for the Study of Adult Education'),
(24934, 22007, 'en', 'name', 'Canadiana.org'),
(24935, 22008, 'en', 'name', 'Pan-Provincial Vaccine Enterprise'),
(24936, 22009, 'en', 'name', 'Center of Excellence in Energy Efficiency'),
(24937, 22010, 'fr', 'name', 'Association des MusƩes Canadiens'),
(24938, 22010, 'en', 'name', 'Canadian Museums Association'),
(24939, 22011, 'en', 'name', 'Physicians for a Smoke-Free Canada'),
(24940, 22012, 'en', 'name', 'Canadian Nautical Research Society'),
(24941, 22012, 'fr', 'name', 'SociƩtƩ Canadienne Pour la Recherche Nautique'),
(24942, 22013, 'fr', 'name', 'Association canadienne des revues savantes'),
(24943, 22013, 'en', 'name', 'Canadian Association of Learned Journals'),
(24944, 22014, 'fr', 'name', 'Institut Pontifical d''Ɖtudes MĆ©diĆ©vales'),
(24945, 22014, 'en', 'name', 'Pontifical Institute of Mediaeval Studies'),
(24946, 22015, 'en', 'name', 'Providence University College and Theological Seminary'),
(24947, 22016, 'fr', 'name', 'SantƩ Mentale au QuƩbec'),
(24948, 22017, 'en', 'name', 'Canadian Bioethics Society'),
(24949, 22017, 'fr', 'name', 'SociƩtƩ Canadienne de la BioƩthique MƩdicale'),
(24950, 22018, 'fr', 'name', 'Association canadienne de science politique'),
(24951, 22018, 'en', 'name', 'Canadian Political Science Association'),
(24952, 22019, 'en', 'name', 'Canadian Psychological Association'),
(24953, 22020, 'fr', 'name', 'CollĆØge de Valleyfield'),
(24954, 22021, 'en', 'name', 'Hospital La Paz Institute for Health Research'),
(24955, 22022, 'en', 'name', 'Canadian Research Institute for the Advancement of Women'),
(24956, 22022, 'fr', 'name', 'Institut Canadien de Recherches sur les Femmes'),
(24957, 22023, 'en', 'name', 'Communitech'),
(24958, 22024, 'en', 'name', 'Community Living Welland Pelham'),
(24959, 22025, 'es', 'name', 'Hospital Quirónsalud Barcelona'),
(24960, 22026, 'en', 'name', 'Hyogo Chuo National Hospital'),
(24961, 22026, 'ja', 'name', '兵庫中央病院'),
(24962, 22027, 'en', 'name', 'Community Sector Council Newfoundland and Labrador'),
(24963, 22028, 'en', 'name', 'Conference Board of Canada'),
(24964, 22028, 'fr', 'name', 'Le Conference Board du Canada'),
(24965, 22029, 'en', 'name', 'Canadian Evaluation Society'),
(24966, 22029, 'fr', 'name', 'SociƩtƩ Canadienne d''Ʃvaluation'),
(24967, 22030, 'no_lang_code', 'name', 'Imamura Hospital'),
(24968, 22030, 'ja', 'name', 'ä»Šę‘ē—…é™¢'),
(24969, 22031, 'no_lang_code', 'name', 'Isesaki Fukushima Hospital'),
(24970, 22031, 'ja', 'name', 'ä¼Šå‹¢å“Žē¦å³¶ē—…é™¢'),
(24971, 22032, 'en', 'name', 'Congress of Aboriginal Peoples'),
(24972, 22033, 'en', 'name', 'Canadian Catholic Historical Association'),
(24973, 22034, 'en', 'name', 'Itami City Hospital'),
(24974, 22034, 'ja', 'name', 'åø‚ē«‹ä¼Šäø¹ē—…é™¢'),
(24975, 22035, 'en', 'name', 'Keiju Medical Center'),
(24976, 22035, 'ja', 'name', 'ęµåÆæē·åˆē—…é™¢'),
(24977, 22036, 'en', 'name', 'Kitakashiwa Rehabilitation General Hospital'),
(24978, 22036, 'ja', 'name', 'åŒ—ęŸćƒŖćƒćƒ“ćƒŖē·åˆē—…é™¢'),
(24979, 22037, 'es', 'name', 'Hospital Posadas'),
(24980, 22038, 'en', 'name', 'Kobatake Hospital'),
(24981, 22038, 'ja', 'name', 'å°ē• ē—…é™¢'),
(24982, 22039, 'es', 'name', 'Hospital Provincial de Rosario'),
(24983, 22040, 'en', 'name', 'Koujin Hospital'),
(24984, 22040, 'ja', 'name', 'ē“˜ä»ē—…é™¢'),
(24985, 22041, 'en', 'name', 'Quebec Federation of University Students'),
(24986, 22042, 'no_lang_code', 'name', 'Mannari Hospital'),
(24987, 22042, 'ja', 'name', 'äø‡ęˆē—…é™¢'),
(24988, 22043, 'en', 'name', 'Saint Gƶran Hospital'),
(24989, 22043, 'sv', 'name', 'Sankt Gƶrans sjukhus'),
(24990, 22044, 'en', 'name', 'Matsubara Mayflower Hospital'),
(24991, 22044, 'ja', 'name', 'ę¾åŽŸćƒ”ć‚¤ćƒ•ćƒ©ćƒÆćƒ¼ē—…'),
(24992, 22045, 'en', 'name', 'Midorigaoka Hospital'),
(24993, 22045, 'ja', 'name', 'ćæć©ć‚Šćƒ¶äø˜ē—…é™¢'),
(24994, 22046, 'en', 'name', 'Naga Municipal Hospital'),
(24995, 22046, 'ja', 'name', '公立那賀病院'),
(24996, 22047, 'en', 'name', 'Nanao hospital'),
(24997, 22047, 'ja', 'name', 'äøƒå°¾ē—…é™¢'),
(24998, 22048, 'fr', 'name', 'Corporation d’AmĆ©nagement et de Protection de la Sainte-Anne'),
(24999, 22049, 'en', 'name', 'Canadian Society for Italian Studies'),
(25000, 22049, 'fr', 'name', 'SociĆ©tĆ© Canadienne pour les Ɖtudes Italiennes'),
(25001, 22050, 'en', 'name', 'Cabrini Hospital'),
(25002, 22051, 'en', 'name', 'Canadian Society for Mesopotamian Studies'),
(25003, 22051, 'fr', 'name', 'SociƩtƩ Canadienne des Etudes MƩsopotamiennes'),
(25004, 22052, 'en', 'name', 'Ehime Medical Center'),
(25005, 22052, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ ę„›åŖ›åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(25006, 22053, 'en', 'name', 'Council of Canadians with Disabilities'),
(25007, 22054, 'en', 'name', 'Kobe Medical Center'),
(25008, 22054, 'ja', 'name', 'ē„žęˆøåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(25009, 22055, 'en', 'name', 'SƶdertƤlje Hospital'),
(25010, 22055, 'sv', 'name', 'SƶdertƤlje Sjukhus'),
(25011, 22056, 'en', 'name', 'Kure Medical Center'),
(25012, 22056, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å‘‰åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(25013, 22057, 'en', 'name', 'Council of Ministers of Education'),
(25014, 22058, 'en', 'name', 'Canadian Society for the Study of Higher Education'),
(25015, 22059, 'sv', 'name', 'Visby lasarett'),
(25016, 22060, 'en', 'name', 'Ureshino Medical Center'),
(25017, 22060, 'ja', 'name', 'å¬‰é‡ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(25018, 22061, 'nl', 'name', 'Mariaziekenhuis'),
(25019, 22062, 'en', 'name', 'Daniel Langlois Foundation for Art Science and Technology'),
(25020, 22063, 'de', 'name', 'Kantonsspital Baselland'),
(25021, 22064, 'fr', 'name', 'CollĆØge universitaire dominicain'),
(25022, 22064, 'en', 'name', 'Dominican University College'),
(25023, 22065, 'en', 'name', 'Hirslanden Private Hospital Group'),
(25024, 22065, 'de', 'name', 'Privatklinikgruppe Hirslanden'),
(25025, 22066, 'no_lang_code', 'name', 'Okayama Saidaiji Hospital'),
(25026, 22066, 'ja', 'name', '岔山脿大寺病院'),
(25027, 22067, 'en', 'name', 'Multiprofile Hospital for Active Treatment in Neurology and Psychiatry St. Naum'),
(25028, 22068, 'en', 'name', 'Markham Stouffville Hospital'),
(25029, 22069, 'no_lang_code', 'name', 'Saiseikai Takaoka Hospital'),
(25030, 22069, 'ja', 'name', 'ęøˆē”Ÿä¼šé«˜å²”ē—…é™¢'),
(25031, 22070, 'fr', 'name', 'HƓpital Montfort'),
(25032, 22070, 'en', 'name', 'Montfort Hospital'),
(25033, 22071, 'no_lang_code', 'name', 'Seirei Sakura Citizen Hospital'),
(25034, 22071, 'ja', 'name', 'č–éš·ä½å€‰åø‚ę°‘ē—…é™¢'),
(25035, 22072, 'no_lang_code', 'name', 'ECW Press (Canada)'),
(25036, 22073, 'en', 'name', 'Soma Central Hospital'),
(25037, 22073, 'ja', 'name', 'čŒ¶ē•‘ä¼š 相馬中央病院'),
(25038, 22074, 'en', 'name', 'En''owkin Centre'),
(25039, 22075, 'en', 'name', 'Chung Shan Hospital'),
(25040, 22075, 'zh', 'name', '中山醫院'),
(25041, 22076, 'fr', 'name', 'Association Canadienne d''Etudes Environnementales'),
(25042, 22076, 'en', 'name', 'Environmental Studies Association of Canada'),
(25043, 22077, 'no_lang_code', 'name', 'Takao Hospital'),
(25044, 22077, 'ja', 'name', 'ć™ć‚€ć®ć•ćØé«˜å°¾ē—…é™¢'),
(25045, 22078, 'en', 'name', 'Essays on Canadian Writing'),
(25046, 22079, 'en', 'name', 'Tokyo-Kita Medical Center'),
(25047, 22079, 'ja', 'name', 'ę±äŗ¬åŒ—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(25048, 22080, 'no_lang_code', 'name', 'Anyang Eye Hospital'),
(25049, 22080, 'zh', 'name', 'å®‰é˜³åø‚ēœ¼ē§‘åŒ»é™¢'),
(25050, 22081, 'no_lang_code', 'name', 'Municipal Tsuruga Hospital'),
(25051, 22081, 'ja', 'name', '市立敦賀病院'),
(25052, 22082, 'en', 'name', 'Federation of Canadian Demographers'),
(25053, 22082, 'fr', 'name', 'FƩdƩration Canadienne de DƩmographie'),
(25054, 22083, 'en', 'name', 'Anyang Tumor Hospital'),
(25055, 22083, 'zh', 'name', 'å®‰é˜³åø‚č‚æē˜¤åŒ»é™¢'),
(25056, 22084, 'no_lang_code', 'name', 'Naval Hospital Yokosuka Japan'),
(25057, 22084, 'ja', 'name', 'ęØŖé ˆč³€ē±³ęµ·č»ē—…é™¢'),
(25058, 22085, 'en', 'name', 'Beijing Tsinghua Chang Gung Hospital'),
(25059, 22085, 'zh', 'name', 'åŒ—äŗ¬ęø…åŽé•æåŗšåŒ»é™¢'),
(25060, 22086, 'ms', 'name', 'Hospital Tengku Ampuan Rahimah'),
(25061, 22086, 'en', 'name', 'Tengku Ampuan Rahimah Hospital'),
(25062, 22087, 'fr', 'name', 'Association Canadienne d’études CinĆ©matographiques'),
(25063, 22087, 'en', 'name', 'Film Studies Association of Canada'),
(25064, 22088, 'no_lang_code', 'name', 'Yangon ENT Hospital'),
(25065, 22088, 'my', 'name', 'ရန်ကုန် နား နှာခေါင်း į€œį€Šį€ŗį€į€»į€±į€¬į€„į€ŗį€ø ဆေးရုံ'),
(25066, 22089, 'fr', 'name', 'Association Canadienne d''Ethnologie et de Folklore'),
(25067, 22089, 'en', 'name', 'Folklore Studies Association of Canada'),
(25068, 22090, 'en', 'name', 'Shanghai Guanghua Hospital of Integrated Traditional Chinese and Western Medicine'),
(25069, 22090, 'zh', 'name', 'äøŠęµ·åø‚å…‰åŽäø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(25070, 22091, 'en', 'name', 'Central Hospital of Wuhan'),
(25071, 22091, 'zh', 'name', 'ę­¦ę±‰åø‚äø­åæƒåŒ»é™¢'),
(25072, 22092, 'en', 'name', 'Xinxiang Central Hospital'),
(25073, 22092, 'zh', 'name', 'ę–°ä¹”åø‚äø­åæƒåŒ»é™¢'),
(25074, 22093, 'en', 'name', 'Genome Canada'),
(25075, 22094, 'en', 'name', 'Chengdu Second People''s Hospital'),
(25076, 22094, 'zh', 'name', 'ęˆéƒ½åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(25077, 22095, 'no_lang_code', 'name', 'Saigata National Hospital'),
(25078, 22095, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ć•ć„ćŒćŸē—…é™¢'),
(25079, 22096, 'no_lang_code', 'name', 'Nihonkai General Hospital'),
(25080, 22096, 'ja', 'name', 'ę—„ęœ¬ęµ·ē·åˆē—…é™¢'),
(25081, 22097, 'en', 'name', 'Ashford and St Peter''s Hospitals NHS Foundation Trust'),
(25082, 22098, 'en', 'name', 'GPI Atlantic'),
(25083, 22099, 'en', 'name', 'Pudong New Area People''s Hospital'),
(25084, 22100, 'en', 'name', 'Blackpool Teaching Hospitals NHS Foundation Trust'),
(25085, 22101, 'en', 'name', 'Noah''s Ark Children''s Hospital for Wales'),
(25086, 22101, 'cy', 'name', 'Ysbyty Arch Noa Plant Cymru'),
(25087, 22102, 'en', 'name', 'Dorset County Hospital NHS Foundation Trust'),
(25088, 22103, 'en', 'name', 'Great Western Hospitals NHS Foundation Trust'),
(25089, 22104, 'en', 'name', 'Shanghai Second People''s Hospital'),
(25090, 22104, 'zh', 'name', 'äøŠęµ·åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(25091, 22105, 'no_lang_code', 'name', 'Dalian Dermatosis Hospital'),
(25092, 22105, 'zh', 'name', 'å¤§čæžåø‚ēš®č‚¤ē—…åŒ»é™¢'),
(25093, 22106, 'en', 'name', 'Dongguan People’s Hospital'),
(25094, 22106, 'zh', 'name', 'äøœčŽžåø‚äŗŗę°‘åŒ»é™¢'),
(25095, 22107, 'de', 'name', 'Katholisches Kinderkrankenhaus Wilhelmstift'),
(25096, 22108, 'en', 'name', 'Yancheng First People''s Hospital'),
(25097, 22108, 'zh', 'name', 'ē›åŸŽåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(25098, 22109, 'en', 'name', 'Milton Keynes Hospital NHS Foundation Trust'),
(25099, 22110, 'en', 'name', 'Fourth People''s Hospital of Shenzhen'),
(25100, 22110, 'zh', 'name', 'ę·±åœ³åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(25101, 22111, 'en', 'name', 'First People''s Hospital of Chongqing'),
(25102, 22111, 'zh', 'name', 'é‡åŗ†åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(25103, 22112, 'en', 'name', 'Shanghai Huangpu District Central Hospital'),
(25104, 22112, 'zh', 'name', 'é»„ęµ¦åŒŗäø­åæƒåŒ»é™¢'),
(25105, 22113, 'no_lang_code', 'name', 'Noble’s Hospital'),
(25106, 22114, 'en', 'name', 'Fujian Provincial People''s Hospital'),
(25107, 22114, 'zh', 'name', 'ē¦å»ŗēœäŗŗę°‘åŒ»é™¢'),
(25108, 22115, 'en', 'name', 'Northern Lincolnshire and Goole Hospitals NHS Foundation Trust'),
(25109, 22116, 'en', 'name', 'South Tees Hospitals NHS Foundation Trust'),
(25110, 22117, 'en', 'name', 'Han Dan City Eye Hospital - The Third Hospital of Handan'),
(25111, 22117, 'zh', 'name', 'é‚Æéƒøåø‚ēœ¼ē§‘åŒ»é™¢ļ¼ˆé‚Æéƒøåø‚ē¬¬äø‰åŒ»é™¢ļ¼‰'),
(25112, 22118, 'en', 'name', 'South Warwickshire NHS Foundation Trust'),
(25113, 22119, 'en', 'name', 'Hanzhong People''s Hospital'),
(25114, 22119, 'zh', 'name', 'ę±‰äø­åø‚äŗŗę°‘åŒ»é™¢'),
(25115, 22120, 'en', 'name', 'YangPu Geriatric Hospital'),
(25116, 22120, 'zh', 'name', 'äøŠęµ·åø‚ęØęµ¦č€å¹“åŒ»é™¢'),
(25117, 22121, 'en', 'name', 'Hillingdon Hospitals NHS Foundation Trust'),
(25118, 22122, 'en', 'name', 'Abu Dhabi Falcon Hospital'),
(25119, 22122, 'ar', 'name', 'مستؓفى أبو ظبي Ł„Ł„ŲµŁ‚ŁˆŲ±'),
(25120, 22123, 'de', 'name', 'Kreiskliniken Reutlingen'),
(25121, 22124, 'en', 'name', 'Bayside Hospital for Animals'),
(25122, 22125, 'en', 'name', 'Hebei General Hospital'),
(25123, 22125, 'zh', 'name', 'ę²³åŒ—ēœäŗŗę°‘åŒ»é™¢'),
(25124, 22126, 'de', 'name', 'Agaplesion Diakonieklinikum Rotenburg'),
(25125, 22127, 'en', 'name', 'Huangshi Central Hospital'),
(25126, 22127, 'zh', 'name', 'é»„ēŸ³åø‚äø­åæƒåŒ»é™¢'),
(25127, 22128, 'en', 'name', 'Shanxi Provincial Children''s Hospital'),
(25128, 22128, 'zh', 'name', 'å±±č„æēœå¦‡å¹¼äæå„é™¢'),
(25129, 22129, 'de', 'name', 'Evangelisches Krankenhaus Bethesda Mƶnchengladbach'),
(25130, 22130, 'en', 'name', 'ShenZhen People’s Hospital'),
(25131, 22130, 'zh', 'name', 'ę·±åœ³åø‚äŗŗę°‘åŒ»é™¢'),
(25132, 22131, 'en', 'name', 'Shijiazhuang Great Wall Hospital'),
(25133, 22131, 'zh', 'name', 'ēŸ³å®¶åŗ„é•æåŸŽåŒ»é™¢'),
(25134, 22132, 'en', 'name', 'Hubei Provincial Women and Children''s Hospital'),
(25135, 22132, 'zh', 'name', 'ę¹–åŒ—ēœå¦‡å¹¼äæå„é™¢'),
(25136, 22133, 'en', 'name', 'Hunan Children''s Hospital'),
(25137, 22133, 'zh', 'name', 'ę¹–å—ēœå„æē«„åŒ»é™¢'),
(25138, 22134, 'en', 'name', 'Doctors Hospital of Laredo'),
(25139, 22135, 'en', 'name', 'Suizhou Central Hospital'),
(25140, 22135, 'zh', 'name', 'éšå·žåø‚äø­åæƒåŒ»é™¢'),
(25141, 22136, 'en', 'name', 'Suzhou Municipal Hospital'),
(25142, 22136, 'zh', 'name', 'č‹å·žåø‚ē«‹åŒ»é™¢'),
(25143, 22137, 'en', 'name', 'Jefferson Hospital for Neuroscience'),
(25144, 22138, 'en', 'name', 'Inner Mongolia People''s Hospital'),
(25145, 22138, 'zh', 'name', 'å†…č’™å¤č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(25146, 22139, 'en', 'name', 'Jilin Province Tumor Hospital'),
(25147, 22139, 'zh', 'name', 'å‰ęž—ēœč‚æē˜¤åŒ»é™¢'),
(25148, 22140, 'en', 'name', 'Kaiser Permanente San Leandro Medical Center'),
(25149, 22141, 'de', 'name', 'Prof. Hess Kinderklinik'),
(25150, 22142, 'en', 'name', 'Marion General Hospital'),
(25151, 22143, 'en', 'name', 'Jimo District Qingdao Hospital of Traditional Chinese Medicine'),
(25152, 22143, 'zh', 'name', 'é’å²›åø‚å³å¢ØåŒŗäø­åŒ»åŒ»é™¢'),
(25153, 22144, 'en', 'name', 'Peyton Manning Children’s Hospital at St.Vincent'),
(25154, 22145, 'no_lang_code', 'name', 'Tangshan Gongren Hospital'),
(25155, 22146, 'en', 'name', 'Jinzhou Kangning Hospital'),
(25156, 22146, 'zh', 'name', 'é”¦å·žåø‚åŗ·å®åŒ»é™¢'),
(25157, 22147, 'en', 'name', 'Javon Bea Hospital-Rockton'),
(25158, 22148, 'en', 'name', 'PLA 306 Hospital'),
(25159, 22148, 'zh', 'name', '解放军306医院'),
(25160, 22149, 'en', 'name', 'Nakagawanosato Hospital for the Disabled'),
(25161, 22150, 'en', 'name', 'Zucker Hillside Hospital'),
(25162, 22151, 'de', 'name', 'Salus-Fachklinikum Uchtspringe Klinik für Allgemeine Psychiatrie und Psychotherapie'),
(25163, 22152, 'en', 'name', 'Bugshan Hospital'),
(25164, 22152, 'ar', 'name', 'مستؓفى بقؓان'),
(25165, 22153, 'en', 'name', 'Wuhu Fourth People Hospital'),
(25166, 22153, 'zh', 'name', 'čŠœę¹–åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(25167, 22154, 'en', 'name', 'Netcare Jakaranda Hospital'),
(25168, 22155, 'en', 'name', 'Port Elizabeth Provincial Hospital'),
(25169, 22156, 'en', 'name', 'St. Josefs Hospital'),
(25170, 22157, 'vi', 'name', 'Bệnh viện Nhi đồng 2'),
(25171, 22157, 'en', 'name', 'Children''s Hospital 2'),
(25172, 22158, 'en', 'name', 'Weskoppies Psychiatric Hospital'),
(25173, 22159, 'vi', 'name', 'Bệnh Viện Đa Khoa Đồng ThĆ”p'),
(25174, 22159, 'en', 'name', 'Dong Thap Hospital'),
(25175, 22160, 'ca', 'name', 'Hospital General de Catalunya'),
(25176, 22161, 'no_lang_code', 'name', 'Hua chiew hospital'),
(25177, 22161, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø«ąø±ąø§ą¹€ąø‰ąøµąø¢ąø§'),
(25178, 22162, 'vi', 'name', 'Bệnh Viện Da Liį»…u ThĆ nh Phố Hồ ChĆ­ Minh'),
(25179, 22162, 'en', 'name', 'HCMC Hospital of Dermato Venereology'),
(25180, 22163, 'en', 'name', 'Northwest Women''s and Children''s Hospital'),
(25181, 22163, 'zh', 'name', 'č„æåŒ—å¦‡å„³å„æē«„åŒ»é™¢'),
(25182, 22164, 'en', 'name', 'General Hospital of Jinan Military Command'),
(25183, 22165, 'en', 'name', 'Fifth Hospital of Shijiazhuang'),
(25184, 22166, 'vi', 'name', 'Bệnh viện Trung ĘÆĘ”ng Huįŗæ'),
(25185, 22166, 'en', 'name', 'Hue Central Hospital'),
(25186, 22167, 'en', 'name', 'National Institute of Hospital Administration'),
(25187, 22167, 'zh', 'name', 'å«ē”ŸéƒØåŒ»é™¢ē®”ē†ē ”ē©¶ę‰€'),
(25188, 22168, 'vi', 'name', 'Bệnh viện Hùng Vʰʔng'),
(25189, 22168, 'en', 'name', 'Hung Vuong Hospital'),
(25190, 22169, 'vi', 'name', 'Bệnh viện đa khoa tỉnh KhĆ”nh Hòa'),
(25191, 22169, 'en', 'name', 'Khanh Hoa General Hospital'),
(25192, 22170, 'en', 'name', 'Shangqiu First People''s Hospital'),
(25193, 22170, 'zh', 'name', 'å•†äø˜åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(25194, 22171, 'vi', 'name', 'Bệnh viện Phįŗ”m Ngį»c Thįŗ”ch'),
(25195, 22171, 'en', 'name', 'Pham Ngoc Thach Hospital'),
(25196, 22172, 'en', 'name', 'Second Hospital of Liaohe Oilfield'),
(25197, 22173, 'en', 'name', 'Urumqi 4th People''s Hospital'),
(25198, 22173, 'zh', 'name', 'ä¹Œé²ęœØé½åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(25199, 22174, 'en', 'name', 'Prince Mohammed bin Abdulaziz Hospital'),
(25200, 22175, 'vi', 'name', 'Bệnh viện Đa khoa Trung tĆ¢m Tiền Giang'),
(25201, 22175, 'en', 'name', 'Tien Giang General Hospital'),
(25202, 22176, 'en', 'name', 'Zhuhai Hospital of Integrated Traditional Chinese and Western Medicine'),
(25203, 22176, 'zh', 'name', 'ē ęµ·åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(25204, 22177, 'en', 'name', 'St. Marien Hospital'),
(25205, 22178, 'en', 'name', 'Fuyang City People''s Hospital'),
(25206, 22178, 'zh', 'name', 'ęæ®é˜³åø‚äŗŗę°‘åŒ»é™¢'),
(25207, 22179, 'en', 'name', 'Second Artillery General Hospital of Chinese People''s Liberation Army'),
(25208, 22179, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬äŗŒē‚®å…µę€»åŒ»é™¢'),
(25209, 22180, 'de', 'name', 'Altonaer Kinderkrankenhaus'),
(25210, 22181, 'en', 'name', 'Third People''s Hospital of Yunnan Province'),
(25211, 22181, 'zh', 'name', 'äŗ‘å—ēœē¬¬äø‰äŗŗę°‘åŒ»é™¢');
INSERT INTO `ror_settings` VALUES
(25212, 22182, 'en', 'name', 'General Hospital of Nafplio'),
(25213, 22182, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΑργολίΓας'),
(25214, 22183, 'en', 'name', 'Shanghai Pudong New Area Gongli Hospital'),
(25215, 22183, 'zh', 'name', 'äøŠęµ·åø‚ęµ¦äøœę–°åŒŗå…¬åˆ©åŒ»é™¢'),
(25216, 22184, 'en', 'name', 'NIU Observatory'),
(25217, 22185, 'en', 'name', 'Tianjin Anding Hospital'),
(25218, 22185, 'zh', 'name', 'å¤©ę“„åø‚å®‰å®šåŒ»é™¢'),
(25219, 22186, 'en', 'name', 'Shaanxi Provincial People''s Hospital'),
(25220, 22186, 'zh', 'name', 'é™•č„æēœäŗŗę°‘åŒ»é™¢'),
(25221, 22187, 'en', 'name', 'Jingning County People''s Hospital'),
(25222, 22187, 'zh', 'name', 'ę™Æå®ē•²ę—č‡Ŗę²»åŽæäŗŗę°‘åŒ»é™¢'),
(25223, 22188, 'en', 'name', 'Linzhou Cancer Hospital'),
(25224, 22188, 'zh', 'name', 'ęž—å·žåø‚č‚æē˜¤åŒ»é™¢'),
(25225, 22189, 'en', 'name', 'Moscow Regional Psychiatry Hospital No.5'),
(25226, 22189, 'ru', 'name', 'ŠŸŃŠøŃ…ŠøŠ°Ń‚Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–5'),
(25227, 22190, 'en', 'name', 'Byurakan Astrophysical Observatory'),
(25228, 22191, 'en', 'name', 'Wuxi No.2 People''s Hospital'),
(25229, 22191, 'zh', 'name', 'ę— é””åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(25230, 22192, 'en', 'name', 'Xian Yang Central Hospital'),
(25231, 22192, 'zh', 'name', 'å’øé˜³åø‚äø­åæƒåŒ»é™¢'),
(25232, 22193, 'en', 'name', 'Guangxi Zhuang Autonomous Region Brain Hospital'),
(25233, 22193, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗč„‘ē§‘åŒ»é™¢'),
(25234, 22194, 'no_lang_code', 'name', 'iTelescope.Net'),
(25235, 22195, 'en', 'name', 'Hebei Eye Hospital'),
(25236, 22195, 'zh', 'name', 'ę²³åŒ—ēœēœ¼ē§‘åŒ»é™¢'),
(25237, 22196, 'ca', 'name', 'Fundació Observatori Esteve Duran'),
(25238, 22197, 'es', 'name', 'Grupo de Observadores Astronómicos de Tenerife'),
(25239, 22198, 'en', 'name', 'Guadarrama Observatory'),
(25240, 22199, 'en', 'name', 'La CaƱada Observatory'),
(25241, 22199, 'es', 'name', 'Observatorio de La CaƱada'),
(25242, 22200, 'en', 'name', 'The Chagrin Valley Astronomical Society'),
(25243, 22201, 'en', 'name', 'Akureyri Hospital'),
(25244, 22201, 'is', 'name', 'Sjúkrahúsið Ô Akureyri'),
(25245, 22202, 'en', 'name', 'Ellinbank Observatory'),
(25246, 22203, 'en', 'name', 'Hunters Hill Observatory'),
(25247, 22204, 'en', 'name', 'Ispat General Hospital'),
(25248, 22204, 'hi', 'name', 'ą¤‡ą¤øą¤Ŗą¤Ÿ जनरल ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(25249, 22205, 'es', 'name', 'Observatorio astronómico municipal de Murcia "La Murta"'),
(25250, 22206, 'es', 'name', 'Observatorio Astronómico Nacional de España'),
(25251, 22206, 'en', 'name', 'Spanish National Observatory'),
(25252, 22207, 'no_lang_code', 'name', 'Xinyang Central Hospital'),
(25253, 22207, 'zh', 'name', 'äæ”é˜³åø‚äø­åæƒåŒ»é™¢'),
(25254, 22208, 'en', 'name', 'Lizard Hollow Observatory'),
(25255, 22209, 'en', 'name', 'Lifeline Hospital'),
(25256, 22209, 'ml', 'name', 'ą“²ąµˆą“«ąµ ą“²ąµˆąµ» ą“¹ąµ‡ą“¾ą“øąµą“Ŗą“æą“±ąµą“±ąµ½'),
(25257, 22210, 'no_lang_code', 'name', 'Yuhuangding Hospital'),
(25258, 22210, 'zh', 'name', 'ēƒŸå°ęÆ“ē’œé”¶åŒ»é™¢'),
(25259, 22211, 'en', 'name', 'Mount Stromlo Observatory'),
(25260, 22212, 'en', 'name', 'Perth Exoplanet Survey Telescope Observatory'),
(25261, 22213, 'en', 'name', 'Yuxian People''s Hospital'),
(25262, 22213, 'zh', 'name', 'ē›‚åŽæäŗŗę°‘åŒ»é™¢'),
(25263, 22214, 'en', 'name', 'Perth Observatory'),
(25264, 22215, 'en', 'name', 'Mount Wilson Observatory'),
(25265, 22215, 'fr', 'name', 'Observatoire du mont wilson'),
(25266, 22215, 'es', 'name', 'Observatorio Monte Wilson'),
(25267, 22216, 'en', 'name', 'Zaozhuang Municipal Hospital'),
(25268, 22216, 'zh', 'name', 'ęž£åŗ„åø‚ē«‹åŒ»é™¢'),
(25269, 22217, 'es', 'name', 'Hospital Nacional de NiƱos'),
(25270, 22218, 'en', 'name', 'NF Observatory'),
(25271, 22219, 'en', 'name', 'Shri Siddhivinayak Ganapati Cancer Hospital'),
(25272, 22219, 'mr', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤øą¤æą¤¦ą„ą¤§ą¤æą¤µą¤æą¤Øą¤¾ą¤Æą¤• ą¤—ą¤£ą¤Ŗą¤¤ą„€ ą¤•ą„…ą¤Øą„ą¤øą¤° ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(25273, 22220, 'no_lang_code', 'name', 'Shahid Motahari Hospital'),
(25274, 22220, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ Ł…Ų·Ł‡Ų±ŪŒ'),
(25275, 22221, 'de', 'name', 'Bagnoud Observatory'),
(25276, 22222, 'fi', 'name', 'Kellokosken Sairaala'),
(25277, 22222, 'en', 'name', 'Kellokoski Hospital'),
(25278, 22223, 'no_lang_code', 'name', '143-Gnosca'),
(25279, 22223, 'it', 'name', 'Osservatorio Astronomico di Gnosca'),
(25280, 22224, 'ga', 'name', 'OspidƩal Naomh Fionnbarra'),
(25281, 22224, 'en', 'name', 'St. Finbarr''s Hospital'),
(25282, 22225, 'en', 'name', 'Tetoora Road Observatory'),
(25283, 22226, 'en', 'name', 'Polaris Observatory Association'),
(25284, 22227, 'en', 'name', 'Rolling Hills Observatory'),
(25285, 22228, 'de', 'name', 'Schweizerisches Forschungsinstitut für Hochgebirgsklima und Medizin'),
(25286, 22229, 'en', 'name', 'TÜBİTAK National Observatory'),
(25287, 22229, 'tr', 'name', 'TÜBİTAK Ulusal Gözlemevi'),
(25288, 22230, 'en', 'name', 'Spot Observatory'),
(25289, 22231, 'en', 'name', 'Brixiis Astronomical Observatory'),
(25290, 22232, 'en', 'name', 'Coddenham Astronomical Observatory'),
(25291, 22233, 'de', 'name', 'Krankenhaus Bruneck'),
(25292, 22234, 'en', 'name', 'Oregon Observatory'),
(25293, 22235, 'es', 'name', 'Observatorio San Calixto'),
(25294, 22236, 'en', 'name', 'National Observatory'),
(25295, 22236, 'pt', 'name', 'Observatório Nacional'),
(25296, 22237, 'en', 'name', 'United States Naval Observatory'),
(25297, 22238, 'en', 'name', 'Royal Observatory'),
(25298, 22239, 'no_lang_code', 'name', 'Astronomical Observatory Nicolaus Copernicus'),
(25299, 22239, 'bg', 'name', 'астрономическа Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ Šø ŠæŠ»Š°Š½ŠµŃ‚Š°Ń€ŠøŃƒŠ¼ ā€žŠŠøŠŗŠ¾Š»Š°Š¹ ŠšŠ¾ŠæŠµŃ€Š½ŠøŠŗā€œ'),
(25300, 22240, 'en', 'name', 'Abbey Ridge Observatory'),
(25301, 22241, 'en', 'name', 'Campo Catino Astronomical Observatory'),
(25302, 22241, 'es', 'name', 'Osservatorio Astronomico di Campo Catino'),
(25303, 22242, 'en', 'name', 'Los Algarrobos Observatory'),
(25304, 22242, 'es', 'name', 'Observatorio Los Algarrobos'),
(25305, 22243, 'en', 'name', 'Amateur Telescope Makers of Boston'),
(25306, 22244, 'en', 'name', 'Antelope Hills Observatory'),
(25307, 22245, 'fr', 'name', 'Centre Hospitalier AndrƩe Rosemon'),
(25308, 22246, 'fr', 'name', 'Centre hospitalier Bretagne Atlantique'),
(25309, 22247, 'no_lang_code', 'name', 'Chienkuo Technology University'),
(25310, 22247, 'zh', 'name', 'å»ŗåœ‹ē§‘ęŠ€å¤§å­ø'),
(25311, 22248, 'en', 'name', 'European Southern Observatory'),
(25312, 22249, 'en', 'name', 'Kao Yuan University'),
(25313, 22249, 'zh', 'name', 'é«˜č‹‘ē§‘ęŠ€å¤§å­ø'),
(25314, 22250, 'fr', 'name', 'Centre Hospitalier d''Arras'),
(25315, 22251, 'fr', 'name', 'Centre Hospitalier de BƩthune'),
(25316, 22252, 'en', 'name', 'Minghsin University of Science and Technology'),
(25317, 22252, 'zh', 'name', 'ę˜Žę–°ē§‘ęŠ€å¤§å­ø'),
(25318, 22253, 'fr', 'name', 'Centre Hospitalier de Troyes'),
(25319, 22254, 'fr', 'name', 'Centre Hospitalier de Valence'),
(25320, 22255, 'en', 'name', 'Association of Lunar and Planetary Observers'),
(25321, 22256, 'fr', 'name', 'Centre Hospitalier Intercommunal AndrƩ GrƩgoire Montreuil'),
(25322, 22257, 'fr', 'name', 'Centre Hospitalier de Niort'),
(25323, 22258, 'fr', 'name', 'Centre Hospitalier Intercommunal de FrƩjus Saint-Raphaƫl'),
(25324, 22259, 'fr', 'name', 'Centre Hospitalier RenƩ-Dubos'),
(25325, 22260, 'fr', 'name', 'Fédération Hospitalière de France'),
(25326, 22261, 'it', 'name', 'Ospedale Madonna Delle Grazie'),
(25327, 22262, 'de', 'name', 'Kinderkrankenhaus auf der Bult'),
(25328, 22263, 'it', 'name', 'Ospedaliero Santa Barbara'),
(25329, 22264, 'en', 'name', 'Black Swamp Bird Observatory'),
(25330, 22265, 'en', 'name', 'National Penghu University of Science and Technology'),
(25331, 22265, 'zh', 'name', 'åœ‹ē«‹ę¾Žę¹–ē§‘ęŠ€å¤§å­ø'),
(25332, 22266, 'en', 'name', 'Caltech Submillimeter Observatory'),
(25333, 22267, 'en', 'name', 'Aichi Developmental Disability Center'),
(25334, 22267, 'ja', 'name', 'ę„›ēŸ„ēœŒåŒ»ē™‚ē™‚č‚²ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(25335, 22268, 'no_lang_code', 'name', 'Chiang Mai Rajabhat University'),
(25336, 22268, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(25337, 22269, 'en', 'name', 'Canada–France–Hawaii Telescope'),
(25338, 22270, 'en', 'name', 'Chiba Kaihin Municipal Hospital'),
(25339, 22270, 'ja', 'name', 'åƒč‘‰åø‚ē«‹ęµ·ęµœē—…é™¢'),
(25340, 22271, 'no_lang_code', 'name', 'Chibaken Saiseikai Narashino Hospital'),
(25341, 22271, 'ja', 'name', 'åƒč‘‰ēœŒęøˆē”Ÿä¼šēæ’åæ—é‡Žē—…é™¢'),
(25342, 22272, 'en', 'name', 'Chibune General Hospital'),
(25343, 22272, 'ja', 'name', 'åƒčˆ¹ē—…é™¢'),
(25344, 22273, 'en', 'name', 'Southern Astrophysical Research Telescope'),
(25345, 22274, 'no_lang_code', 'name', 'Dogo Onsen Hospital'),
(25346, 22274, 'ja', 'name', 'é“å¾Œęø©ę³‰ē—…é™¢'),
(25347, 22275, 'en', 'name', 'Fuji Heavy Industries Health Insurance Society Ota Memorial Hospital'),
(25348, 22275, 'ja', 'name', 'ē·åˆå¤Ŗē”°ē—…é™¢'),
(25349, 22276, 'no_lang_code', 'name', 'Fukushimura Hospital'),
(25350, 22276, 'ja', 'name', 'ä¼Šå‹¢å“Žē¦å³¶ē—…é™¢'),
(25351, 22277, 'no_lang_code', 'name', 'Hashimoto Municipal Hospital'),
(25352, 22277, 'ja', 'name', 'ę©‹ęœ¬åø‚ę°‘ē—…é™¢'),
(25353, 22278, 'no_lang_code', 'name', 'Hidaka Hospital'),
(25354, 22278, 'ja', 'name', 'ひだか病院'),
(25355, 22279, 'en', 'name', 'Ishigaki Local Meteorological Observatory'),
(25356, 22280, 'en', 'name', 'Abdullah Gül University'),
(25357, 22280, 'tr', 'name', 'Abdullah Gül Üniversitesi'),
(25358, 22281, 'en', 'name', 'Inner Mongolia Autonomous Region Meteorological Bureau'),
(25359, 22281, 'zh', 'name', 'å†…č’™å¤č‡Ŗę²»åŒŗę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(25360, 22282, 'en', 'name', 'Xingming Observatory'),
(25361, 22283, 'en', 'name', 'University of Toliara'),
(25362, 22283, 'fr', 'name', 'UniversitƩ de Toliara'),
(25363, 22284, 'no_lang_code', 'name', 'Matsushiro Seismological Observatory'),
(25364, 22284, 'ja', 'name', 'ę°—č±”åŗę¾ä»£åœ°éœ‡č¦³ęø¬ę‰€'),
(25365, 22285, 'en', 'name', 'Altan Observatory'),
(25366, 22286, 'en', 'name', 'International Islamic University Malaysia'),
(25367, 22286, 'ms', 'name', 'Universiti Islam Antarabangsa Malaysia'),
(25368, 22286, 'ml', 'name', 'ą“‡ąµ»ą“±ąµ¼ą“Øą“¾ą“·ą“Øąµ½ ą“‡ą“øąµā€ą“²ą“¾ą“®ą“æą“•ąµ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµā€ą“øą“æą“±ąµą“±ą“æ ą“®ą“²ąµ‡ą“·ąµą“Æ'),
(25369, 22287, 'fi', 'name', 'Hankasalmi Observatory'),
(25370, 22288, 'en', 'name', 'Sendai Astronomical Observatory'),
(25371, 22289, 'en', 'name', 'Stardome Observatory'),
(25372, 22290, 'en', 'name', 'Carter Observatory'),
(25373, 22291, 'fr', 'name', 'Observatoire de Dauban'),
(25374, 22292, 'en', 'name', 'Farm Cove Observatory'),
(25375, 22293, 'fi', 'name', 'HƄRKƄMƄEN OBSERVATORIO'),
(25376, 22293, 'en', 'name', 'Taurus Hill Observatory'),
(25377, 22294, 'en', 'name', 'Geyserland Observatory'),
(25378, 22295, 'en', 'name', 'Kumeu Observatory'),
(25379, 22296, 'no_lang_code', 'name', 'Alberoni University'),
(25380, 22296, 'fa', 'name', 'دانؓگاه Ų§Ł„ŲØŪŒŲ±ŁˆŁ†ŪŒ'),
(25381, 22297, 'es', 'name', 'Universidad PolitƩcnica de Baja California'),
(25382, 22298, 'en', 'name', 'Possum Observatory'),
(25383, 22299, 'en', 'name', 'Balkh University'),
(25384, 22299, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† بلخ'),
(25385, 22300, 'en', 'name', 'Kandahar University'),
(25386, 22300, 'fa', 'name', 'دانؓگاه قندهار'),
(25387, 22301, 'en', 'name', 'Mongolian University of Science and Technology'),
(25388, 22301, 'mn', 'name', 'ŠØŠøŠ½Š¶Š»ŃŃ… Ухаан Технологийн Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(25389, 22302, 'en', 'name', 'Turgut Ɩzal University'),
(25390, 22302, 'tr', 'name', 'Turgut Ɩzal Ɯniversitesi'),
(25391, 22303, 'en', 'name', 'Khost University'),
(25392, 22303, 'fa', 'name', 'دانؓگاه خوست'),
(25393, 22304, 'en', 'name', 'Nangarhar University'),
(25394, 22304, 'fa', 'name', 'دانؓگاه ننگرهار'),
(25395, 22305, 'en', 'name', 'Polytechnical University of Kabul'),
(25396, 22305, 'fa', 'name', 'دکابل Ł¾ŁˆŁ„ŪŒ ŲŖŲ®Ł†ŪŒŚ© Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(25397, 22306, 'en', 'name', 'Olsztyn Planetarium and Astronomical Observatory'),
(25398, 22306, 'pl', 'name', 'Olsztyńskiego Planetarium i Obserwatorium Astronomicznego'),
(25399, 22307, 'en', 'name', 'University of Jijel'),
(25400, 22307, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŲ¬Ł„'),
(25401, 22308, 'es', 'name', 'Universidad Maimónides'),
(25402, 22309, 'en', 'name', 'Ussuriysk Astrophysical Observatory'),
(25403, 22309, 'ru', 'name', 'Š£ŃŃŃƒŃ€ŠøŠ¹ŃŠŗŠ°Ń Š°ŃŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ Š”Š’Šž Š ŠŠ'),
(25404, 22310, 'sk', 'name', 'TekovskÔ HvezdÔreň'),
(25405, 22311, 'en', 'name', 'National Technological University'),
(25406, 22311, 'es', 'name', 'Universidad Tecnológica Nacional'),
(25407, 22312, 'no_lang_code', 'name', 'Vihorlat Observatory'),
(25408, 22312, 'sk', 'name', 'VihorlatskÔ hvezdÔreň'),
(25409, 22313, 'en', 'name', 'Bronberg Observatory'),
(25410, 22314, 'en', 'name', 'Mandalay University'),
(25411, 22314, 'my', 'name', 'į€™į€”į€¹į€į€œį€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(25412, 22315, 'en', 'name', 'Pyay Technological University'),
(25413, 22315, 'my', 'name', 'į€•į€¼į€Šį€ŗį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(25414, 22316, 'en', 'name', 'Dhaka University of Engineering & Technology'),
(25415, 22316, 'bn', 'name', 'ঢাকা ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(25416, 22317, 'en', 'name', 'Balearic Islands Coastal Observing and Forecasting System'),
(25417, 22318, 'en', 'name', 'Southend University Hospital NHS Foundation Trust'),
(25418, 22319, 'en', 'name', 'Schnƶrringen Telescope Science Institute'),
(25419, 22320, 'de', 'name', 'Hochschule Worms'),
(25420, 22320, 'en', 'name', 'University of Applied Sciences Worms'),
(25421, 22321, 'en', 'name', 'Admiral Makarov National University of Shipbuilding'),
(25422, 22321, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŠ¾Ń€Š°Š±Š»ŠµŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ имени аГмирала ŠœŠ°ŠŗŠ°Ń€Š¾Š²Š°'),
(25423, 22321, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŠ¾Ń€Š°Š±Š»ŠµŠ±ŃƒŠ“ŃƒŠ²Š°Š½Š½Ń імені аГмірала ŠœŠ°ŠŗŠ°Ń€Š¾Š²Š°'),
(25424, 22322, 'hu', 'name', 'CsillagÔszati és FöldtudomÔnyi Kutatóközpont Konkoly Thege Miklós CsillagÔszati Intézet'),
(25425, 22322, 'no_lang_code', 'name', 'Konkoly Observatory'),
(25426, 22323, 'en', 'name', 'Abdul Wali Khan University Mardan'),
(25427, 22324, 'en', 'name', 'Cherkasy National University'),
(25428, 22324, 'uk', 'name', 'Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(25429, 22325, 'en', 'name', 'Balochistan University of Information Technology, Engineering and Management Sciences'),
(25430, 22326, 'en', 'name', 'Aryabhatta Research Institute of Observational Sciences'),
(25431, 22327, 'en', 'name', 'Udaipur Solar Observatory'),
(25432, 22328, 'en', 'name', 'Hazara University'),
(25433, 22328, 'ur', 'name', 'جامعہ ہزارہ'),
(25434, 22329, 'en', 'name', 'University of Haiti'),
(25435, 22329, 'fr', 'name', 'UniversitĆ© d''Ɖtat d''haĆÆti'),
(25436, 22330, 'it', 'name', 'Osservatorio Astronomico Armenzano'),
(25437, 22331, 'en', 'name', 'Simon Kuznets Kharkiv National University of Economics'),
(25438, 22331, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25439, 22331, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25440, 22332, 'en', 'name', 'Gabriel RenƩ Moreno Autonomous University'),
(25441, 22332, 'es', 'name', 'Universidad Autónoma Gabriel René Moreno'),
(25442, 22333, 'en', 'name', 'Zrínyi Miklós National Defence University'),
(25443, 22334, 'en', 'name', 'TomƔs Frƭas Autonomous University'),
(25444, 22334, 'es', 'name', 'Universidad Autónoma TomÔs Frías'),
(25445, 22335, 'en', 'name', 'NED University of Engineering and Technology'),
(25446, 22335, 'sd', 'name', 'Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś± Ū½ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ جي جامعہ Ų§ŁŠŁ† اي ŚŠŁŠā€Ž'),
(25447, 22335, 'ur', 'name', 'جامعہ Ų§ŪŒŁ† ای ڈی ŲØŲ±Ų§Ų¦Ū’ انجنئرنگ اور Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(25448, 22336, 'pt', 'name', 'Centro UniversitƔrio de Volta Redonda'),
(25449, 22337, 'en', 'name', 'Banasthali University'),
(25450, 22337, 'hi', 'name', 'ą¤µą¤Øą¤øą„ą¤„ą¤²ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(25451, 22338, 'en', 'name', 'Pir Mehr Ali Shah Arid Agriculture University'),
(25452, 22338, 'ur', 'name', 'پیر مہر Ų¹Ł„ŪŒ ؓاہ ŲØŲ§Ų±Ų§Ł†ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(25453, 22339, 'it', 'name', 'Osservatorio Astronomico della Regione Autonoma Valle d''Aosta'),
(25454, 22340, 'pt', 'name', 'Centro UniversitƔrio Una'),
(25455, 22341, 'en', 'name', 'Bassano Bresciano Astronomical Observatory'),
(25456, 22341, 'it', 'name', 'Osservatorio Astronomico di Bassano Bresciano'),
(25457, 22342, 'en', 'name', 'Bellatrix Astronomical Observatory'),
(25458, 22343, 'en', 'name', 'University of Lahore'),
(25459, 22343, 'ur', 'name', 'جامعہ Ł„Ų§ŪŁˆŲ±'),
(25460, 22344, 'en', 'name', 'Geological Observatory of Coldigioco'),
(25461, 22344, 'it', 'name', 'Osservatorio Geologico di Coldigioco'),
(25462, 22345, 'en', 'name', 'University of Science and Technology Bannu'),
(25463, 22345, 'ur', 'name', 'ŲØŁ†ŁˆŚŗ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف سائنس Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(25464, 22346, 'it', 'name', 'Osservatorio Astronomico di Monte Agliale'),
(25465, 22347, 'fr', 'name', 'Observatoire du vatican'),
(25466, 22347, 'it', 'name', 'Specola Vaticana'),
(25467, 22347, 'en', 'name', 'Vatican Observatory'),
(25468, 22347, 'de', 'name', 'Vatikanische Sternwarte'),
(25469, 22348, 'en', 'name', 'Bisei Astronomical Observatory'),
(25470, 22349, 'pt', 'name', 'Universidade do Estado do Rio Grande do Norte'),
(25471, 22350, 'en', 'name', 'Arab American University'),
(25472, 22350, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© - Ų¬Ł†ŁŠŁ†'),
(25473, 22351, 'en', 'name', 'North University of China'),
(25474, 22351, 'zh', 'name', 'äø­åŒ—å¤§å­¦'),
(25475, 22352, 'fr', 'name', 'HƓpital Ignace Deen'),
(25476, 22352, 'en', 'name', 'Ignace Deen Hospital'),
(25477, 22353, 'en', 'name', 'Dallas Baptist University'),
(25478, 22354, 'en', 'name', 'Palestine Polytechnic University'),
(25479, 22354, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŁˆŁ„ŁŠŲŖŁƒŁ†Łƒ ŁŁ„Ų³Ų·ŁŠŁ†'),
(25480, 22355, 'en', 'name', 'San Cristóbal of Huamanga University'),
(25481, 22355, 'es', 'name', 'Universidad Nacional de San Cristóbal de Huamanga'),
(25482, 22356, 'es', 'name', 'Universidad Nacional de la AmazonĆ­a Peruana'),
(25483, 22357, 'tl', 'name', 'Pamantasang Silliman'),
(25484, 22357, 'en', 'name', 'Silliman University'),
(25485, 22358, 'pt', 'name', 'Universidade da Integração Internacional da Lusofonia Afro-Brasileira'),
(25486, 22358, 'en', 'name', 'University for International Integration of the Afro-Brazilian Lusophony'),
(25487, 22359, 'en', 'name', 'Peking University Shenzhen Hospital'),
(25488, 22359, 'zh', 'name', 'åŒ—äŗ¬å¤§å­¦ę·±åœ³åŒ»é™¢'),
(25489, 22360, 'en', 'name', 'University of NgaoundƩrƩ'),
(25490, 22360, 'fr', 'name', 'UniversitƩ de NgaoundƩrƩ'),
(25491, 22361, 'en', 'name', 'Lipscomb University'),
(25492, 22362, 'en', 'name', 'Quest University Canada'),
(25493, 22363, 'en', 'name', 'MidAmerica Nazarene University'),
(25494, 22364, 'fi', 'name', 'TƤhtitieteellinen yhdistys Ursa ry'),
(25495, 22364, 'en', 'name', 'Ursa Astronomical Association'),
(25496, 22365, 'en', 'name', 'Sanming University'),
(25497, 22365, 'zh', 'name', 'äø‰ę˜Žå­¦é™¢'),
(25498, 22366, 'en', 'name', 'Shandong Jianzhu University'),
(25499, 22366, 'zh', 'name', 'å±±äøœå»ŗē­‘å¤§å­¦'),
(25500, 22367, 'en', 'name', 'Financial University'),
(25501, 22367, 'ru', 'name', 'Финансовый ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ при ŠŸŃ€Š°Š²ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Šµ Российской ФеГерации'),
(25502, 22368, 'en', 'name', 'Gorno-Altaisk State University'),
(25503, 22368, 'ru', 'name', 'Горно-Алтайский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25504, 22369, 'en', 'name', 'The Silesian Planetarium'),
(25505, 22369, 'pl', 'name', 'Śląskie Planetarium i Obserwatorium Astronomiczne'),
(25506, 22370, 'en', 'name', 'Shanxi Datong University'),
(25507, 22370, 'zh', 'name', '山脿大同大学'),
(25508, 22371, 'en', 'name', 'Affiliated Hospital of Nantong University'),
(25509, 22371, 'zh', 'name', '南通大学附属医院'),
(25510, 22372, 'no_lang_code', 'name', 'Shijiazhuang University'),
(25511, 22372, 'zh', 'name', 'ēŸ³å®¶åŗ„å­¦é™¢'),
(25512, 22373, 'en', 'name', 'Sichuan University of Arts and Science'),
(25513, 22373, 'zh', 'name', 'å››å·ę–‡ē†å­¦é™¢'),
(25514, 22374, 'en', 'name', 'Bohai University'),
(25515, 22374, 'zh', 'name', '渤海大学'),
(25516, 22375, 'en', 'name', 'Capital University of Physical Education and Sports'),
(25517, 22375, 'zh', 'name', 'é¦–éƒ½ä½“č‚²å­¦é™¢'),
(25518, 22376, 'en', 'name', 'Universities at Shady Grove'),
(25519, 22377, 'en', 'name', 'Changchun University of Chinese Medicine'),
(25520, 22378, 'en', 'name', 'Karachay-Cherkess State Pedagogical University'),
(25521, 22378, 'ru', 'name', 'ŠšŠ°Ń€Š°Ń‡Š°ŠµŠ²Š¾-Черкесский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25522, 22379, 'en', 'name', 'Changsha University of Science and Technology'),
(25523, 22379, 'zh', 'name', '长沙理巄大学'),
(25524, 22380, 'en', 'name', 'Changzhou University'),
(25525, 22380, 'zh', 'name', 'åøøå·žå¤§å­¦'),
(25526, 22381, 'en', 'name', 'Tibet University'),
(25527, 22381, 'zh', 'name', 'č„æč—å¤§å­¦'),
(25528, 22382, 'en', 'name', 'Triangle Universities Nuclear Laboratory'),
(25529, 22383, 'no_lang_code', 'name', 'Universal Technology Corporation (United States)'),
(25530, 22384, 'en', 'name', 'Govind Ballabh Pant University of Agriculture and Technology'),
(25531, 22384, 'hi', 'name', 'ą¤—ą„‹ą¤µą¤æą¤Øą„ą¤¦ ą¤¬ą¤²ą„ą¤²ą¤­ ą¤Ŗą¤Øą„ą¤¤ ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25532, 22385, 'en', 'name', 'Indian Maritime University'),
(25533, 22385, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æą®•ąÆ ą®•ą®Ÿą®²ąÆą®šą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(25534, 22386, 'en', 'name', 'University Town of Shenzhen'),
(25535, 22386, 'zh', 'name', 'ę·±åœ³å¤§å­¦åŸŽ'),
(25536, 22387, 'en', 'name', 'North-Caucasus Federal University'),
(25537, 22387, 'ru', 'name', 'Деверо-Кавказский Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25538, 22388, 'en', 'name', 'Maharishi Markandeshwar University, Mullana'),
(25539, 22388, 'hi', 'name', 'ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤®ą¤°ą„ą¤•ą¤‚ą¤¦ą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤®ą„ą¤²ą¤¾ą¤Øą¤¾'),
(25540, 22389, 'en', 'name', 'North-Eastern Federal University'),
(25541, 22389, 'ru', 'name', 'Деверо-Восточный Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25542, 22390, 'en', 'name', 'Orenburg State University'),
(25543, 22390, 'ru', 'name', 'ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25544, 22391, 'en', 'name', 'Pandit Ravishankar Shukla University'),
(25545, 22391, 'hi', 'name', 'पंऔित रविशंकर ą¤¶ą„ą¤•ą„ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25546, 22392, 'en', 'name', 'Dezhou University'),
(25547, 22392, 'zh', 'name', '德州学院'),
(25548, 22393, 'en', 'name', 'Shri Mata Vaishno Devi University'),
(25549, 22393, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ माता ą¤µą„ˆą¤·ą„ą¤£ą„‹ ą¤¦ą„‡ą¤µą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25550, 22394, 'en', 'name', 'University of Minnesota Rochester'),
(25551, 22395, 'en', 'name', 'Perm National Research Polytechnic University'),
(25552, 22395, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25553, 22396, 'en', 'name', 'Petrozavodsk State University'),
(25554, 22396, 'ru', 'name', 'ŠŸŠµŃ‚Ń€Š¾Š·Š°Š²Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25555, 22397, 'en', 'name', 'Guangxi University of Science and Technology'),
(25556, 22397, 'zh', 'name', 'å¹æč„æē§‘ęŠ€å¤§å­¦'),
(25557, 22398, 'en', 'name', 'Guilin University of Electronic Technology'),
(25558, 22398, 'zh', 'name', 'ę”‚ęž—ē”µå­ē§‘ęŠ€å¤§å­¦'),
(25559, 22399, 'no_lang_code', 'name', 'Xi''an Shiyou University'),
(25560, 22399, 'zh', 'name', 'č„æå®‰ēŸ³ę²¹å¤§å­¦'),
(25561, 22400, 'en', 'name', 'Tambov State Technical University'),
(25562, 22400, 'ru', 'name', 'Тамбовский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25563, 22401, 'en', 'name', 'Xi’an University'),
(25564, 22401, 'zh', 'name', '脿安文理学院'),
(25565, 22402, 'en', 'name', 'Voronezh State Pedagogical University'),
(25566, 22402, 'ru', 'name', 'Воронежский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25567, 22403, 'en', 'name', 'Yaroslav-the-Wise Novgorod State University'),
(25568, 22403, 'ru', 'name', 'ŠŠ¾Š²Š³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ярослава ŠœŃƒŠ“рого'),
(25569, 22404, 'en', 'name', 'University Pathologists'),
(25570, 22405, 'en', 'name', 'Yan''an University'),
(25571, 22405, 'zh', 'name', '延安大学'),
(25572, 22406, 'en', 'name', 'Libertador Experimental Pedagogical University'),
(25573, 22406, 'es', 'name', 'Universidad Pedagógica Experimental Libertador'),
(25574, 22407, 'es', 'name', 'Universidad Nacional Experimental de Guayana'),
(25575, 22408, 'id', 'name', 'Universitas Ma Chung'),
(25576, 22409, 'en', 'name', 'Yanbu University College'),
(25577, 22409, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ŁŠŁ†ŲØŲ¹ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(25578, 22410, 'es', 'name', 'Universidad Nacional Experimental Simón Rodríguez'),
(25579, 22411, 'fr', 'name', 'UniversitƩ de ziguinchor'),
(25580, 22411, 'en', 'name', 'Ziguinchor University'),
(25581, 22412, 'en', 'name', 'Yili Normal University'),
(25582, 22412, 'zh', 'name', 'ä¼ŠēŠåøˆčŒƒå­¦é™¢'),
(25583, 22413, 'en', 'name', 'Hunan University of Arts and Science'),
(25584, 22413, 'zh', 'name', 'ę¹–å—ę–‡ē†å­¦é™¢'),
(25585, 22414, 'en', 'name', 'Hunan University of Humanities, Science and Technology'),
(25586, 22414, 'zh', 'name', 'ę¹–å—äŗŗę–‡ē§‘ęŠ€å­¦é™¢'),
(25587, 22415, 'en', 'name', 'Golestan University'),
(25588, 22415, 'fa', 'name', 'دانؓگاه گلستان'),
(25589, 22416, 'no_lang_code', 'name', 'Hakim Sabzevari University'),
(25590, 22416, 'fa', 'name', 'دانؓگاه Ų­Ś©ŪŒŁ… سبزواری'),
(25591, 22417, 'en', 'name', 'Icesi University'),
(25592, 22417, 'es', 'name', 'Universidad Icesi'),
(25593, 22418, 'en', 'name', 'Jiaozuo University'),
(25594, 22418, 'zh', 'name', 'ē„¦ä½œå¤§å­¦'),
(25595, 22419, 'no_lang_code', 'name', 'Shahrekord University'),
(25596, 22419, 'fa', 'name', 'دانؓگاه ؓهرکرد'),
(25597, 22420, 'en', 'name', 'Shahrekord University of Medical Sciences'),
(25598, 22420, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکي ؓهرکرد'),
(25599, 22421, 'en', 'name', 'Le Quy Don Technical University'),
(25600, 22421, 'vi', 'name', 'ĐẔi hį»c Kỹ thuįŗ­t LĆŖ Quý ĐƓn'),
(25601, 22422, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghiệp Việt TrƬ'),
(25602, 22422, 'en', 'name', 'Viet Tri University of Industry'),
(25603, 22423, 'es', 'name', 'Escuela Universitaria de Fisioterapia de la ONCE'),
(25604, 22424, 'en', 'name', 'Jiujiang University'),
(25605, 22424, 'zh', 'name', 'ä¹ę±Ÿå­¦é™¢'),
(25606, 22425, 'en', 'name', 'Kaili University'),
(25607, 22425, 'zh', 'name', 'å‡Æé‡Œå­¦é™¢'),
(25608, 22426, 'es', 'name', 'Hospital Universitario de Móstoles'),
(25609, 22427, 'en', 'name', 'Liaoning University of Technology'),
(25610, 22427, 'zh', 'name', '辽宁巄业大学'),
(25611, 22428, 'en', 'name', 'University of Qom'),
(25612, 22428, 'fa', 'name', 'دانؓگاه قم'),
(25613, 22429, 'en', 'name', 'Logistics University of People''s Armed Police Force'),
(25614, 22429, 'zh', 'name', 'äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜ŸåŽå‹¤å­¦é™¢'),
(25615, 22430, 'en', 'name', 'Cyprus International University'),
(25616, 22430, 'tr', 'name', 'Uluslararası Kıbrıs Üniversitesi'),
(25617, 22431, 'en', 'name', 'European University Cyprus'),
(25618, 22431, 'el', 'name', 'Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(25619, 22432, 'en', 'name', 'Sudan University of Science and Technology'),
(25620, 22432, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(25621, 22433, 'nl', 'name', 'Anton de Kom Universiteit van Suriname'),
(25622, 22433, 'en', 'name', 'Anton de Kom University of Suriname'),
(25623, 22434, 'en', 'name', 'Nanjing University of Finance and Economics'),
(25624, 22434, 'zh', 'name', 'å—äŗ¬č“¢ē»å¤§å­¦'),
(25625, 22435, 'en', 'name', 'Naval Aeronautical and Astronautical University'),
(25626, 22435, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›čˆŖē©ŗå·„ēØ‹å­¦é™¢'),
(25627, 22436, 'en', 'name', 'Scottish Universities Physics Alliance'),
(25628, 22437, 'en', 'name', 'Autonomous University of Santo Domingo'),
(25629, 22437, 'es', 'name', 'Universidad Autónoma de Santo Domingo'),
(25630, 22438, 'en', 'name', 'Future University in Egypt'),
(25631, 22438, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المستقبل ŲØŁ…ŲµŲ±'),
(25632, 22439, 'no_lang_code', 'name', 'Chubu Gakuin University'),
(25633, 22439, 'ja', 'name', 'äø­éƒØå­¦é™¢å¤§å­¦'),
(25634, 22440, 'it', 'name', 'Consorzio Interuniversitario Fisica Spaziale'),
(25635, 22441, 'en', 'name', 'Daido University'),
(25636, 22441, 'ja', 'name', '大同大学'),
(25637, 22442, 'no_lang_code', 'name', 'Gifu Kyoritsu University'),
(25638, 22442, 'ja', 'name', 'å²é˜œå”ē«‹å¤§å­¦'),
(25639, 22443, 'en', 'name', 'Hokkai Gakuen University'),
(25640, 22443, 'ja', 'name', 'åŒ—ęµ·å­¦åœ’å¤§å­¦'),
(25641, 22444, 'en', 'name', 'Misr University for Science and Technology'),
(25642, 22444, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ± Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(25643, 22445, 'en', 'name', 'Hokkaido Information University'),
(25644, 22445, 'ja', 'name', 'åŒ—ęµ·é“ęƒ…å ±å¤§å­¦'),
(25645, 22446, 'en', 'name', 'Port Said University'),
(25646, 22446, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بورسعيد'),
(25647, 22447, 'en', 'name', 'Jobu University'),
(25648, 22447, 'ja', 'name', '上武大学'),
(25649, 22448, 'en', 'name', 'Joetsu University of Education'),
(25650, 22448, 'ja', 'name', 'äøŠč¶Šę•™č‚²å¤§å­¦'),
(25651, 22449, 'en', 'name', 'Josai International University'),
(25652, 22449, 'ja', 'name', 'åŸŽč„æå›½éš›å¤§å­¦'),
(25653, 22450, 'fr', 'name', 'Centre Hospitalier Universitaire de La RƩunion'),
(25654, 22451, 'en', 'name', 'Tokyo University of Information Sciences'),
(25655, 22451, 'ja', 'name', 'ę±äŗ¬ęƒ…å ±å¤§å­¦'),
(25656, 22452, 'fr', 'name', 'Institut Universitaire de France'),
(25657, 22453, 'en', 'name', 'Yamagata Prefectural University of Health Sciences'),
(25658, 22453, 'ja', 'name', 'å±±å½¢ēœŒē«‹äæå„åŒ»ē™‚å¤§å­¦'),
(25659, 22454, 'en', 'name', 'German Jordanian University'),
(25660, 22454, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ© Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(25661, 22455, 'en', 'name', 'Kochi University of Technology'),
(25662, 22455, 'ja', 'name', 'é«˜ēŸ„å·„ē§‘å¤§å­¦'),
(25663, 22456, 'no_lang_code', 'name', 'Kokugakuin University'),
(25664, 22456, 'ja', 'name', 'åœ‹å­øé™¢å¤§å­ø'),
(25665, 22457, 'en', 'name', 'Komazawa University'),
(25666, 22457, 'ja', 'name', '駒澤大学'),
(25667, 22458, 'en', 'name', 'Koriyama Women''s University'),
(25668, 22458, 'ja', 'name', '郔山儳子大学'),
(25669, 22459, 'en', 'name', 'Kurashiki University of Science and the Arts'),
(25670, 22459, 'ja', 'name', 'å€‰ę•·čŠøč”“ē§‘å­¦å¤§å­¦'),
(25671, 22460, 'en', 'name', 'Kyoto University Research Reactor Institute'),
(25672, 22460, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦č¤‡åˆåŽŸå­åŠ›ē§‘å­¦ē ”ē©¶ę‰€'),
(25673, 22461, 'en', 'name', 'Kyushu Nutrition Welfare University'),
(25674, 22461, 'ja', 'name', 'ä¹å·žę „é¤Šē¦ē„‰å¤§å­¦'),
(25675, 22462, 'fr', 'name', 'Instituts Universitaires de Technologie'),
(25676, 22463, 'en', 'name', 'Morioka University'),
(25677, 22463, 'ja', 'name', '盛岔大学'),
(25678, 22464, 'en', 'name', 'Nara University'),
(25679, 22464, 'ja', 'name', 'å„ˆč‰Æå¤§å­¦'),
(25680, 22465, 'en', 'name', 'Free University of Tbilisi'),
(25681, 22465, 'ru', 'name', 'ДвобоГный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Тбилиси'),
(25682, 22465, 'ka', 'name', 'įƒ—įƒįƒ•įƒ˜įƒ”įƒ£įƒ¤įƒįƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(25683, 22466, 'de', 'name', 'Hochschule Biberach'),
(25684, 22466, 'en', 'name', 'University of Applied Sciences Biberach'),
(25685, 22467, 'en', 'name', 'Osaka Sangyo University'),
(25686, 22467, 'ja', 'name', 'å¤§é˜Ŗē”£ę„­å¤§å­¦'),
(25687, 22468, 'en', 'name', 'Dresden International University'),
(25688, 22469, 'en', 'name', 'Dongyang University'),
(25689, 22469, 'ko', 'name', 'ė™ģ–‘ėŒ€ķ•™źµ'),
(25690, 22470, 'en', 'name', 'Gyeongnam National University of Science and Technology'),
(25691, 22470, 'ko', 'name', 'ź²½ė‚Øź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(25692, 22471, 'no_lang_code', 'name', 'Sakushin Gakuin University'),
(25693, 22471, 'ja', 'name', 'ä½œę–°å­¦é™¢å¤§å­¦'),
(25694, 22472, 'en', 'name', 'Senshu University'),
(25695, 22472, 'ja', 'name', '専修大学'),
(25696, 22473, 'en', 'name', 'Sonoda Women''s University'),
(25697, 22473, 'ja', 'name', 'åœ’ē”°å­¦åœ’å„³å­å¤§å­¦'),
(25698, 22474, 'en', 'name', 'Takushoku University'),
(25699, 22474, 'ja', 'name', 'ę‹“ę®– 大学'),
(25700, 22475, 'en', 'name', 'HafenCity University Hamburg'),
(25701, 22475, 'de', 'name', 'HafenCity UniversitƤt Hamburg'),
(25702, 22476, 'no_lang_code', 'name', 'Teikyo Heisei University'),
(25703, 22476, 'ja', 'name', 'åøäŗ¬å¹³ęˆå¤§å­¦'),
(25704, 22477, 'en', 'name', 'Harz University of Applied Sciences'),
(25705, 22477, 'de', 'name', 'Hochschule Harz'),
(25706, 22478, 'en', 'name', 'Jungwon University'),
(25707, 22479, 'no_lang_code', 'name', 'Tohoku Gakuin University'),
(25708, 22479, 'ja', 'name', 'ę±åŒ—å­¦é™¢å¤§å­¦'),
(25709, 22480, 'en', 'name', 'Korea National University of Education'),
(25710, 22480, 'ko', 'name', 'ķ•œźµ­źµģ›ėŒ€ķ•™źµ'),
(25711, 22481, 'en', 'name', 'East–West University'),
(25712, 22482, 'en', 'name', 'College of The Bahamas'),
(25713, 22483, 'en', 'name', 'Ohio Christian University'),
(25714, 22484, 'de', 'name', 'Hochschule Koblenz'),
(25715, 22484, 'en', 'name', 'Koblenz University of Applied Sciences'),
(25716, 22485, 'es', 'name', 'Universidad de Belice'),
(25717, 22485, 'en', 'name', 'University of Belize'),
(25718, 22486, 'en', 'name', 'Tokyo Kasei University'),
(25719, 22486, 'ja', 'name', 'ę±äŗ¬å®¶ę”æå¤§å­¦'),
(25720, 22487, 'en', 'name', 'Korea University of Technology and Education'),
(25721, 22487, 'ko', 'name', 'ķ•œźµ­źø°ģˆ źµģœ”ėŒ€ķ•™źµ'),
(25722, 22488, 'en', 'name', 'Tokyo Keizai University'),
(25723, 22488, 'ja', 'name', 'ę±äŗ¬ēµŒęøˆå¤§å­¦'),
(25724, 22489, 'en', 'name', 'Kyungil University'),
(25725, 22490, 'en', 'name', 'Kyungnam University'),
(25726, 22490, 'ko', 'name', 'ź²½ė‚ØėŒ€ķ•™źµ'),
(25727, 22491, 'en', 'name', 'Briercrest College and Seminary'),
(25728, 22492, 'en', 'name', 'Seowon University'),
(25729, 22492, 'ko', 'name', 'ģ„œģ›ėŒ€ķ•™źµ'),
(25730, 22493, 'de', 'name', 'Hochschule Magdeburg-Stendal'),
(25731, 22493, 'en', 'name', 'Magdeburg-Stendal University of Applied Sciences'),
(25732, 22494, 'en', 'name', 'Kim Il-sung University'),
(25733, 22494, 'ko', 'name', 'ź¹€ģ¼ģ„±ģ¢…ķ•©ėŒ€ķ•™'),
(25734, 22495, 'lv', 'name', 'Bērnu klīniskā universitātes slimnīca'),
(25735, 22495, 'en', 'name', 'Children''s Clinical University Hospital'),
(25736, 22496, 'en', 'name', 'Yorkville University'),
(25737, 22497, 'en', 'name', 'Atlantic School of Theology'),
(25738, 22498, 'es', 'name', 'Universidad de San Pedro Sula'),
(25739, 22498, 'en', 'name', 'University of San Pedro Sula'),
(25740, 22499, 'es', 'name', 'Universidad AnƔhuac MƩxico Sur'),
(25741, 22500, 'es', 'name', 'Universidad de las Californias'),
(25742, 22501, 'es', 'name', 'Universidad de Tijuana'),
(25743, 22502, 'es', 'name', 'Universidad Tecnológica de Honduras'),
(25744, 22503, 'es', 'name', 'Centro de Diseño, Arquitectura y Construcción'),
(25745, 22504, 'en', 'name', 'Rogers State University'),
(25746, 22504, 'fr', 'name', 'UniversitĆ© d''Ɖtat de rogers'),
(25747, 22505, 'es', 'name', 'Universidad Chapultepec'),
(25748, 22506, 'en', 'name', 'Visva-Bharati University'),
(25749, 22506, 'hi', 'name', 'ą¤µą¤æą¤¶ą„ą¤µ-ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25750, 22506, 'bn', 'name', 'ą¦¬ą¦æą¦¶ą§ą¦¬ą¦­ą¦¾ą¦°ą¦¤ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(25751, 22506, 'pa', 'name', 'ਵਿਸ਼ਵ ਭਾਰਤੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(25752, 22506, 'ml', 'name', 'ą“µą“æą“¶ąµą“µą“­ą“¾ą“°ą“¤ą“æ ą“øąµ¼ ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(25753, 22507, 'es', 'name', 'Universidad de la Comunicación'),
(25754, 22508, 'es', 'name', 'Universidad de las AmƩricas'),
(25755, 22509, 'es', 'name', 'Escuela AgrĆ­cola Panamericana Zamorano'),
(25756, 22509, 'en', 'name', 'Zamorano Pan-American Agricultural School'),
(25757, 22510, 'en', 'name', 'St. Stephen''s University'),
(25758, 22511, 'es', 'name', 'Universidad Emilio CƔrdenas'),
(25759, 22512, 'en', 'name', 'Everest University'),
(25760, 22513, 'en', 'name', 'Huntington University'),
(25761, 22514, 'es', 'name', 'Universidad ETAC'),
(25762, 22515, 'es', 'name', 'Universidad de Negocios ISEC'),
(25763, 22516, 'es', 'name', 'Universidad Interamericana para el Desarrollo'),
(25764, 22517, 'en', 'name', 'Columbia International University'),
(25765, 22518, 'es', 'name', 'Universidad del Altiplano'),
(25766, 22519, 'en', 'name', 'Assumption University'),
(25767, 22520, 'es', 'name', 'Universidad del Claustro de Sor Juana'),
(25768, 22520, 'en', 'name', 'University of the Cloister of Sor Juana'),
(25769, 22521, 'es', 'name', 'Universidad Católica de Honduras Nuestra Señora Reina de la Paz'),
(25770, 22522, 'es', 'name', 'Universidad del Desarrollo Empresarial y Pedagógico'),
(25771, 22523, 'es', 'name', 'Universidad del Valle de Toluca'),
(25772, 22524, 'es', 'name', 'Universidad JosƩ Cecilio del Valle'),
(25773, 22525, 'en', 'name', 'Franklin University'),
(25774, 22526, 'es', 'name', 'Universidad Isidro Fabela de Toluca'),
(25775, 22527, 'es', 'name', 'Universidad del Distrito Federal'),
(25776, 22528, 'es', 'name', 'Instituto Centroamericano de Administración de Empresas'),
(25777, 22529, 'en', 'name', 'Central American Adventist University'),
(25778, 22529, 'es', 'name', 'Universidad Adventista de Centro America'),
(25779, 22530, 'es', 'name', 'Universidad del EjƩrcito y Fuerza AƩrea'),
(25780, 22531, 'en', 'name', 'Antioch University Los Angeles'),
(25781, 22532, 'en', 'name', 'Trident University International'),
(25782, 22533, 'es', 'name', 'Universidad Pedagógica Nacional Francisco MorazÔn'),
(25783, 22534, 'en', 'name', 'National Police of Honduras'),
(25784, 22534, 'es', 'name', 'PolicĆ­a Nacional de Honduras'),
(25785, 22535, 'es', 'name', 'Universidad del Pedregal'),
(25786, 22536, 'es', 'name', 'Universidad Autónoma de La Laguna'),
(25787, 22537, 'en', 'name', 'Mico University College'),
(25788, 22538, 'es', 'name', 'Universidad del Valle de MƩxico'),
(25789, 22539, 'en', 'name', 'University of Technology, Jamaica'),
(25790, 22540, 'es', 'name', 'Universidad Gestalt'),
(25791, 22541, 'en', 'name', 'Northern Caribbean University'),
(25792, 22542, 'es', 'name', 'Universidad Hebraica'),
(25793, 22543, 'en', 'name', 'Schiller International University'),
(25794, 22544, 'es', 'name', 'Universidad Tollancingo'),
(25795, 22545, 'es', 'name', 'Centro Universitario del PacĆ­fico Sur'),
(25796, 22546, 'es', 'name', 'Universidad Florencio del Castillo'),
(25797, 22547, 'en', 'name', 'Polytechnic University of the Valley of Mexico'),
(25798, 22547, 'es', 'name', 'Universidad PolitƩcnica del Valle de MƩxico'),
(25799, 22548, 'es', 'name', 'Universidad ICEL'),
(25800, 22549, 'es', 'name', 'Universidad Santa Paula'),
(25801, 22550, 'es', 'name', 'Universidad de Ciencias y Artes de Chiapas'),
(25802, 22551, 'es', 'name', 'Universidad Pablo Guardado ChƔvez'),
(25803, 22552, 'es', 'name', 'Universidad Insurgentes'),
(25804, 22553, 'es', 'name', 'Universidad PolitƩcnica de Chiapas'),
(25805, 22554, 'en', 'name', 'Intercontinental University'),
(25806, 22554, 'es', 'name', 'Universidad Intercontinental'),
(25807, 22555, 'es', 'name', 'Universidad Americana de Acapulco'),
(25808, 22556, 'es', 'name', 'Universidad Loyola del PacĆ­fico'),
(25809, 22557, 'es', 'name', 'Universidad Internacional San Isidro Labrador'),
(25810, 22558, 'es', 'name', 'Universidad Internacional'),
(25811, 22559, 'es', 'name', 'Universidad del Desarrollo Profesional'),
(25812, 22560, 'es', 'name', 'Universidad Internacional de Profesiones y Escuela Internacional de Turismo'),
(25813, 22561, 'en', 'name', 'American Sentinel University'),
(25814, 22562, 'es', 'name', 'Universidad Madero Papaloapan'),
(25815, 22563, 'es', 'name', 'Universidad Valle del Grijalva'),
(25816, 22564, 'en', 'name', 'Justo Sierra University'),
(25817, 22564, 'es', 'name', 'Universidad Justo Sierra'),
(25818, 22565, 'es', 'name', 'Universidad Autónoma de Centro América'),
(25819, 22566, 'es', 'name', 'Universidad del Valle de Tlaxcala'),
(25820, 22567, 'es', 'name', 'Universidad Don Vasco'),
(25821, 22568, 'es', 'name', 'Universidad Marista'),
(25822, 22569, 'es', 'name', 'Universidad Mexicana'),
(25823, 22570, 'es', 'name', 'Universidad BĆ­blica Latinoamericana'),
(25824, 22571, 'en', 'name', 'Polytechnic University of Aguascalientes'),
(25825, 22571, 'es', 'name', 'Universidad PolitƩcnica de Aguascalientes'),
(25826, 22572, 'en', 'name', 'Upper Iowa University'),
(25827, 22573, 'es', 'name', 'Universidad Tecnológica de Aguascalientes'),
(25828, 22574, 'en', 'name', 'National Pedagogic University'),
(25829, 22574, 'es', 'name', 'Universidad Pedagógica Nacional'),
(25830, 22575, 'es', 'name', 'Universidad Villasunción'),
(25831, 22576, 'en', 'name', 'Heritage Christian University'),
(25832, 22577, 'es', 'name', 'Universidad Pontificia de MƩxico'),
(25833, 22578, 'es', 'name', 'Universidad Jean Piaget'),
(25834, 22579, 'fr', 'name', 'L''UniversitƩ du Maine Ơ Fort Kent'),
(25835, 22579, 'en', 'name', 'University of Maine at Fort Kent'),
(25836, 22580, 'es', 'name', 'Universidad Católica de Costa Rica'),
(25837, 22581, 'en', 'name', 'Salesian University'),
(25838, 22581, 'es', 'name', 'Universidad Salesiana'),
(25839, 22582, 'en', 'name', 'Fresno Pacific University'),
(25840, 22583, 'es', 'name', 'Centro Universitario Hispano Mexicano'),
(25841, 22584, 'es', 'name', 'Universidad Cristóbal Colón'),
(25842, 22585, 'es', 'name', 'Universidad Central'),
(25843, 22586, 'es', 'name', 'Universidad Centroamericana de Ciencias Sociales'),
(25844, 22587, 'en', 'name', 'Amberton University'),
(25845, 22587, 'es', 'name', 'Universidad Amberton'),
(25846, 22588, 'es', 'name', 'Universidad Tecnológica Americana'),
(25847, 22589, 'es', 'name', 'Universidad Westhill'),
(25848, 22590, 'es', 'name', 'Universidad Continental de las Ciencias las Artes'),
(25849, 22591, 'en', 'name', 'Kentucky Christian University'),
(25850, 22592, 'es', 'name', 'Universidad Creativa'),
(25851, 22593, 'es', 'name', 'Universidad YMCA'),
(25852, 22594, 'en', 'name', 'Bob Jones University'),
(25853, 22595, 'en', 'name', 'Finlandia University'),
(25854, 22595, 'fr', 'name', 'UniversitƩ finlandia'),
(25855, 22596, 'en', 'name', 'Freed–Hardeman University'),
(25856, 22597, 'es', 'name', 'Universidad Olmeca'),
(25857, 22598, 'en', 'name', 'Cleary University'),
(25858, 22599, 'es', 'name', 'Universidad de Ciencias Medicas'),
(25859, 22600, 'es', 'name', 'Universidad de Xalapa'),
(25860, 22601, 'en', 'name', 'Iberoamerican University'),
(25861, 22601, 'es', 'name', 'Universidad de IberoamƩrica'),
(25862, 22602, 'es', 'name', 'Universidad HernƔn CortƩs'),
(25863, 22603, 'es', 'name', 'Universidad Paccioli Xalapa'),
(25864, 22604, 'es', 'name', 'Universidad La Salle Costa Rica'),
(25865, 22605, 'es', 'name', 'Universidad de la Sierra'),
(25866, 22606, 'es', 'name', 'Universidad de las Ciencias y el Arte de Costa Rica'),
(25867, 22607, 'es', 'name', 'Centro UniversitƔrio Internacional'),
(25868, 22608, 'es', 'name', 'Universidad de San Jose'),
(25869, 22609, 'es', 'name', 'Universidad Villa Rica'),
(25870, 22610, 'en', 'name', 'Martin University'),
(25871, 22611, 'en', 'name', 'Concordia University Irvine'),
(25872, 22612, 'es', 'name', 'Universidad Filadelfia de MƩxico'),
(25873, 22613, 'es', 'name', 'Centro Universitario MƩxico Valle'),
(25874, 22614, 'en', 'name', 'Union University'),
(25875, 22615, 'es', 'name', 'Universidad de St. Francis'),
(25876, 22615, 'en', 'name', 'University of St. Francis'),
(25877, 22616, 'es', 'name', 'Universidad Tecnológica del Sureste de Veracruz'),
(25878, 22617, 'es', 'name', 'Universidad AnÔhuac de Cancún'),
(25879, 22618, 'en', 'name', 'Grantham University'),
(25880, 22619, 'es', 'name', 'Universidad del Caribe'),
(25881, 22620, 'es', 'name', 'Instituto Universitario en Sistemas Administrativos de Monterrey'),
(25882, 22621, 'en', 'name', 'Northwest University'),
(25883, 22622, 'es', 'name', 'Universidad del Turismo'),
(25884, 22622, 'en', 'name', 'University of Tourism'),
(25885, 22623, 'en', 'name', 'Allied American University'),
(25886, 22624, 'es', 'name', 'Universidad Xicotepetl'),
(25887, 22625, 'en', 'name', 'Colorado Christian University'),
(25888, 22626, 'es', 'name', 'Universidad del Valle'),
(25889, 22627, 'en', 'name', 'Cairn University'),
(25890, 22628, 'es', 'name', 'Universidad Maya de las AmƩricas'),
(25891, 22629, 'en', 'name', 'Cumberland University'),
(25892, 22630, 'en', 'name', 'Business University of Costa Rica'),
(25893, 22630, 'es', 'name', 'Universidad Empresarial de Costa Rica'),
(25894, 22631, 'es', 'name', 'Consorcio Educativo Oxford'),
(25895, 22632, 'es', 'name', 'Universidad Albert Einstein'),
(25896, 22633, 'es', 'name', 'Centro Universitario del Valle de Zacapu'),
(25897, 22634, 'es', 'name', 'Universidad Escuela Libre de Derecho'),
(25898, 22635, 'es', 'name', 'Universidad EvangƩlica de las AmƩricas'),
(25899, 22636, 'es', 'name', 'Universidad de Celaya'),
(25900, 22636, 'en', 'name', 'University of Celaya'),
(25901, 22637, 'en', 'name', 'FidƩlitas University'),
(25902, 22637, 'es', 'name', 'Universidad FidƩlitas'),
(25903, 22638, 'es', 'name', 'Universidad del Centro del BajĆ­o'),
(25904, 22639, 'es', 'name', 'Universidad Latina de MƩxico'),
(25905, 22640, 'es', 'name', 'Universidad Fundepos'),
(25906, 22641, 'es', 'name', 'Universidad Azteca'),
(25907, 22642, 'es', 'name', 'Universidad del Norte'),
(25908, 22643, 'en', 'name', 'Dongguk University Los Angeles'),
(25909, 22644, 'es', 'name', 'Universidad Hispanoamericana'),
(25910, 22645, 'en', 'name', 'Samra University of Oriental Medicine'),
(25911, 22646, 'es', 'name', 'Universidad Humanista de las AmƩricas'),
(25912, 22647, 'es', 'name', 'Universidad Regional del Norte'),
(25913, 22648, 'en', 'name', 'University of Philosophical Research'),
(25914, 22649, 'en', 'name', 'West Coast University'),
(25915, 22650, 'es', 'name', 'Universidad Metropolitana de Monterrey'),
(25916, 22651, 'es', 'name', 'Universidad Latinoamericana de Ciencia y TecnologĆ­a'),
(25917, 22652, 'es', 'name', 'Universidad Libre de Costa Rica'),
(25918, 22653, 'es', 'name', 'Universidad Magister'),
(25919, 22654, 'es', 'name', 'Colegio Metodista de Costa Rica'),
(25920, 22655, 'es', 'name', 'Universidad Regiomontana'),
(25921, 22656, 'es', 'name', 'Universidad Valle Continental'),
(25922, 22657, 'es', 'name', 'Universidad de Morelia'),
(25923, 22657, 'en', 'name', 'University of Morelia'),
(25924, 22658, 'en', 'name', 'Sullivan University'),
(25925, 22659, 'es', 'name', 'Centro Universitario Juana de Asbaje'),
(25926, 22660, 'es', 'name', 'Centro Universitario de Ciudad JuƔrez'),
(25927, 22661, 'es', 'name', 'Universidad Latina de AmƩrica'),
(25928, 22662, 'es', 'name', 'Universidad Vasco de Quiroga'),
(25929, 22663, 'es', 'name', 'Universidad para la Paz'),
(25930, 22663, 'en', 'name', 'University for Peace'),
(25931, 22664, 'en', 'name', 'University of Northern Virginia'),
(25932, 22665, 'es', 'name', 'Centro Universitario de Mercadotecnia y Publicidad'),
(25933, 22666, 'es', 'name', 'Universidad Lux'),
(25934, 22667, 'en', 'name', 'Southern New Hampshire University'),
(25935, 22667, 'fr', 'name', 'UniversitƩ du sud du new hampshire'),
(25936, 22668, 'es', 'name', 'Universidad Santa LucĆ­a'),
(25937, 22669, 'es', 'name', 'Universidad de NorteamƩrica'),
(25938, 22670, 'es', 'name', 'Universidad de Zamora'),
(25939, 22671, 'en', 'name', 'Franco Mexican University'),
(25940, 22671, 'es', 'name', 'Universidad Franco Mexicana'),
(25941, 22672, 'es', 'name', 'Universidad Tecnológica Costarricense'),
(25942, 22673, 'es', 'name', 'Universidad AmƩrica Latina'),
(25943, 22674, 'es', 'name', 'Universidad del Valle de Atemajac'),
(25944, 22674, 'en', 'name', 'University of the Valley of Atemajac'),
(25945, 22675, 'es', 'name', 'Universidad Veritas'),
(25946, 22676, 'es', 'name', 'Universidad MƩxico Americana del Norte'),
(25947, 22677, 'es', 'name', 'Universidad Interamericana del Norte'),
(25948, 22678, 'es', 'name', 'Universidad Marista de Guadalajara'),
(25949, 22679, 'en', 'name', 'Latin University of Costa Rica'),
(25950, 22679, 'es', 'name', 'Universidad Latina de Costa Rica'),
(25951, 22680, 'en', 'name', 'Miami International University of Art & Design'),
(25952, 22680, 'es', 'name', 'Universidad Internacional de Miami de Arte & DiseƱo'),
(25953, 22681, 'en', 'name', 'Northwood University'),
(25954, 22682, 'en', 'name', 'North Central University'),
(25955, 22683, 'en', 'name', 'Amridge University'),
(25956, 22684, 'en', 'name', 'International University of America'),
(25957, 22684, 'es', 'name', 'Universidad Internacional de AmƩrica'),
(25958, 22685, 'es', 'name', 'Universidad de Navojoa'),
(25959, 22685, 'en', 'name', 'University of Navojoa'),
(25960, 22686, 'en', 'name', 'Trevecca Nazarene University'),
(25961, 22687, 'en', 'name', 'Bluefields Indian and Caribbean University'),
(25962, 22688, 'es', 'name', 'Grupo Universitario Modelo'),
(25963, 22689, 'es', 'name', 'Instituto Universitario de Oaxaca'),
(25964, 22690, 'en', 'name', 'Patten University'),
(25965, 22691, 'en', 'name', 'Mid-America Christian University'),
(25966, 22692, 'es', 'name', 'Universidad Lucerna'),
(25967, 22693, 'es', 'name', 'Universidad Anahuac Oaxaca'),
(25968, 22694, 'es', 'name', 'Universidad JosƩ Vasconcelos de Oaxaca'),
(25969, 22695, 'es', 'name', 'Centro Universitario de Coatzacoalcos'),
(25970, 22696, 'en', 'name', 'Grace University'),
(25971, 22697, 'en', 'name', 'Catholic University of Dry Tropic Farming and Livestock'),
(25972, 22697, 'es', 'name', 'Universidad Católica del Trópico Seco'),
(25973, 22698, 'es', 'name', 'Universidad de Sotavento'),
(25974, 22699, 'es', 'name', 'Universidad Regional del Sureste'),
(25975, 22700, 'es', 'name', 'Universidad del Sureste');
INSERT INTO `ror_settings` VALUES
(25976, 22701, 'es', 'name', 'Universidad del Norte de Nicaragua'),
(25977, 22702, 'es', 'name', 'Universidad Dorados'),
(25978, 22703, 'en', 'name', 'American Isthmus University'),
(25979, 22703, 'es', 'name', 'Universidad Istmo Americana'),
(25980, 22704, 'en', 'name', 'William Penn University'),
(25981, 22705, 'es', 'name', 'Universidad TajĆ­n'),
(25982, 22706, 'es', 'name', 'Universidad Autónoma del Pacífico'),
(25983, 22707, 'es', 'name', 'Universidad de Cienfuegos'),
(25984, 22707, 'en', 'name', 'University of Cienfuegos'),
(25985, 22708, 'es', 'name', 'Universidad Santo Tomas de Oriente y Medio DĆ­a'),
(25986, 22709, 'en', 'name', 'Brescia University'),
(25987, 22710, 'es', 'name', 'Universidad Cristiana Autónoma de Nicaragua'),
(25988, 22711, 'es', 'name', 'Universidad Partenón de Cozumel'),
(25989, 22712, 'es', 'name', 'Universidad del Valle de Orizaba'),
(25990, 22713, 'es', 'name', 'Instituto Latinoamericano de Computación'),
(25991, 22714, 'es', 'name', 'Universidad Adventista de Nicaragua'),
(25992, 22715, 'es', 'name', 'Centro de Estudios Universitarios Horacio ZuƱiga'),
(25993, 22716, 'es', 'name', 'Universidad Alzate de Ozumba'),
(25994, 22717, 'en', 'name', 'Central University of Nicaragua'),
(25995, 22717, 'es', 'name', 'Universidad Central de Nicaragua'),
(25996, 22718, 'es', 'name', 'Universidad Centroamericana de Ciencias Empresariales'),
(25997, 22719, 'es', 'name', 'Universidad de Ciencias Comerciales'),
(25998, 22719, 'en', 'name', 'University of Commercial Sciences'),
(25999, 22720, 'es', 'name', 'Centro Universitario Hidalguense'),
(26000, 22721, 'en', 'name', 'University of Hawaii–West Oahu'),
(26001, 22722, 'es', 'name', 'Universidad de CuautitlƔn Izcalli'),
(26002, 22723, 'no_lang_code', 'name', 'Dunlap-Stone University'),
(26003, 22724, 'es', 'name', 'Universidad de Ciencias Pedagógicas José de la Luz Caballero'),
(26004, 22725, 'es', 'name', 'Centro Universitario Americano del Estado de Morelos'),
(26005, 22726, 'en', 'name', 'University of the Arts'),
(26006, 22727, 'es', 'name', 'Centro Universitario Siglo XXI'),
(26007, 22728, 'es', 'name', 'Universidad de Managua'),
(26008, 22729, 'es', 'name', 'Universidad CientĆ­fica Latinoamericana de Hidalgo'),
(26009, 22730, 'en', 'name', 'Point Park University'),
(26010, 22731, 'es', 'name', 'Universidad de TecnologĆ­a y Comercio'),
(26011, 22732, 'es', 'name', 'Universidad Evangelica Nicaraguense'),
(26012, 22733, 'es', 'name', 'Universidad Iberoamericana de Ciencias y TecnologĆ­a'),
(26013, 22734, 'es', 'name', 'Centro Universitario Latinoamericano de Morelos'),
(26014, 22735, 'es', 'name', 'Universidad Autónoma de Piedras Negras'),
(26015, 22736, 'es', 'name', 'Universidad de la CiƩnega'),
(26016, 22737, 'es', 'name', 'Universidad Americana de Morelos'),
(26017, 22738, 'es', 'name', 'Universidad Internacional de la Integración de América Latina'),
(26018, 22739, 'es', 'name', 'Universidad CuauhnƔhuac'),
(26019, 22740, 'es', 'name', 'Universidad Del Valle De Cuernavaca'),
(26020, 22741, 'es', 'name', 'Universidad Fray Luca Paccioli'),
(26021, 22742, 'es', 'name', 'Universidad Interamericana'),
(26022, 22743, 'es', 'name', 'Universidad Jean-Jacques Rousseau'),
(26023, 22744, 'es', 'name', 'Universidad Mexicana de Educación a Distancia'),
(26024, 22745, 'es', 'name', 'Polytechnic JosƩ Antonio Echeverrƭa'),
(26025, 22746, 'en', 'name', 'Northcentral University'),
(26026, 22747, 'en', 'name', 'National University of Engineering'),
(26027, 22747, 'es', 'name', 'Universidad Nacional de IngenierĆ­a'),
(26028, 22748, 'en', 'name', 'Agricultural University of Havana'),
(26029, 22749, 'es', 'name', 'Universidad Casa Blanca'),
(26030, 22750, 'en', 'name', 'Nicaraguan University of Science and Technology'),
(26031, 22750, 'es', 'name', 'Universidad Nicaragüense de Ciencia y Tecnologia'),
(26032, 22751, 'es', 'name', 'Universidad de las Ciencias InformƔticas'),
(26033, 22751, 'en', 'name', 'University of Information Science'),
(26034, 22752, 'en', 'name', 'Catholic University of Culiacan'),
(26035, 22752, 'es', 'name', 'Universidad Católica de CuliacÔn'),
(26036, 22753, 'es', 'name', 'Universidad Nicaragüense de Estudios Humanisticos'),
(26037, 22754, 'es', 'name', 'Universidad de San Miguel'),
(26038, 22755, 'en', 'name', 'Simpson University'),
(26039, 22756, 'en', 'name', 'University of Rio Grande and Rio Grande Community College'),
(26040, 22757, 'en', 'name', 'William Jessup University'),
(26041, 22758, 'es', 'name', 'Colegio Libre de Estudios Universitarios'),
(26042, 22759, 'es', 'name', 'Instituto Universitario Anglo EspaƱol'),
(26043, 22760, 'es', 'name', 'Universidad TƩcnica de Comercio'),
(26044, 22761, 'en', 'name', 'Autonomous University of Durango'),
(26045, 22761, 'es', 'name', 'Universidad Autónoma de Durango'),
(26046, 22762, 'es', 'name', 'Universidad Tecnológica Nicaragüense'),
(26047, 22763, 'en', 'name', 'University of the West'),
(26048, 22764, 'es', 'name', 'Thomas More Universitas'),
(26049, 22765, 'es', 'name', 'Universidad Xilotzingo'),
(26050, 22766, 'en', 'name', 'Independence University'),
(26051, 22767, 'en', 'name', 'Spanish Autonomous University of Durango'),
(26052, 22767, 'es', 'name', 'Universidad Autónoma España de Durango'),
(26053, 22768, 'en', 'name', 'Coleman University'),
(26054, 22769, 'en', 'name', 'Academy of Art University'),
(26055, 22770, 'es', 'name', 'Universidad del Valle de Guadiana'),
(26056, 22771, 'es', 'name', 'Instituto Universitario de Tecnologia y Humanidades'),
(26057, 22772, 'es', 'name', 'Instituto Universitario Puebla'),
(26058, 22773, 'es', 'name', 'Universidad Alva Edison'),
(26059, 22774, 'es', 'name', 'Universidad Anglohispanomexicana'),
(26060, 22775, 'es', 'name', 'Universidad Benito JuƔrez Garcƭa'),
(26061, 22776, 'es', 'name', 'Universidad Estatal del Valle de Ecatepec'),
(26062, 22777, 'es', 'name', 'Centro Universitario Oparin'),
(26063, 22778, 'es', 'name', 'Universidad Privada del Estado de MƩxico'),
(26064, 22779, 'en', 'name', 'Henley-Putnam School of Strategic Security'),
(26065, 22780, 'en', 'name', 'Autonomous Intercultural University of Sinaloa'),
(26066, 22780, 'es', 'name', 'Universidad Autónoma Intercultural de Sinaloa'),
(26067, 22781, 'es', 'name', 'Universidad de Pinar del RĆ­o'),
(26068, 22781, 'en', 'name', 'University of Pinar del RĆ­o'),
(26069, 22782, 'es', 'name', 'Centro de Estudios Universitarios Xochicalco'),
(26070, 22782, 'en', 'name', 'Xochicalco University'),
(26071, 22783, 'en', 'name', 'Silicon Valley University'),
(26072, 22783, 'es', 'name', 'Universidad de Silicon Valley'),
(26073, 22784, 'es', 'name', 'Universidad Cristiana de PanamĆ”'),
(26074, 22785, 'en', 'name', 'Autonomous University of Fresnillo'),
(26075, 22785, 'es', 'name', 'Universidad Autónoma de Fresnillo'),
(26076, 22786, 'es', 'name', 'Universidad Especializada de las AmƩricas'),
(26077, 22787, 'es', 'name', 'Universidad Central de MƩxico'),
(26078, 22788, 'es', 'name', 'Universidad de Sancti Spƭritus JosƩ Martƭ PƩrez'),
(26079, 22788, 'en', 'name', 'University of Sancti Spƭritus JosƩ Martƭ PƩrez'),
(26080, 22789, 'es', 'name', 'Centro Universitario de Occidente'),
(26081, 22790, 'en', 'name', 'Florida State University-Panama'),
(26082, 22791, 'es', 'name', 'Universidad Abierta y a Distancia de PanamĆ”'),
(26083, 22792, 'es', 'name', 'Universidad Enrique Díaz de León'),
(26084, 22793, 'es', 'name', 'Universidad de Oriente'),
(26085, 22794, 'es', 'name', 'Universidad de Puebla'),
(26086, 22795, 'es', 'name', 'Universidad del Desarrollo del Estado de Puebla'),
(26087, 22796, 'es', 'name', 'Universidad Europea'),
(26088, 22797, 'es', 'name', 'Universidad de Especialidades'),
(26089, 22798, 'es', 'name', 'Universidad Hispana'),
(26090, 22799, 'en', 'name', 'Columbus University'),
(26091, 22800, 'es', 'name', 'Lamar Universidad'),
(26092, 22801, 'es', 'name', 'Universidad Mesoamericana'),
(26093, 22802, 'es', 'name', 'Universidad Metropolitana Latin Campus'),
(26094, 22803, 'es', 'name', 'Universidad SƤmann de Jalisco'),
(26095, 22804, 'es', 'name', 'Universidad PolitƩcnica Hispano Mexicana'),
(26096, 22805, 'es', 'name', 'Universidad de Ciencias Pedagógicas Félix Varela Morales'),
(26097, 22806, 'es', 'name', 'Universidad Popular Autónoma del Estado de Puebla'),
(26098, 22807, 'es', 'name', 'Universidad Realƭstica de MƩxico'),
(26099, 22808, 'es', 'name', 'Universidad Tec De Oriente'),
(26100, 22809, 'es', 'name', 'Universitario Bauhaus'),
(26101, 22810, 'es', 'name', 'Universidad Católica Tecnológica de Barahona'),
(26102, 22811, 'es', 'name', 'Universidad Univer'),
(26103, 22812, 'es', 'name', 'Universidad del Arte Ganexa'),
(26104, 22813, 'es', 'name', 'Universidad del Mar'),
(26105, 22814, 'es', 'name', 'Centro de Estudios Universitarios Arkos'),
(26106, 22815, 'es', 'name', 'Universidad Agroforestal Fernando Arturo de MeriƱo'),
(26107, 22816, 'es', 'name', 'Universidad del Istmo'),
(26108, 22816, 'en', 'name', 'University of the Isthmus'),
(26109, 22817, 'en', 'name', 'William Howard Taft University'),
(26110, 22818, 'en', 'name', 'Antioch University Santa Barbara'),
(26111, 22819, 'es', 'name', 'Universidad AnƔhuac QuerƩtaro'),
(26112, 22820, 'es', 'name', 'Universidad Católica Nordestana'),
(26113, 22821, 'es', 'name', 'Universidad Interamericana de Educación a Distancia de PanamÔ'),
(26114, 22822, 'es', 'name', 'Universidad ContemporƔnea'),
(26115, 22823, 'es', 'name', 'Universidad Interamericana de PanamĆ”'),
(26116, 22824, 'es', 'name', 'Universidad Santa Fe'),
(26117, 22825, 'es', 'name', 'Universidad ISA'),
(26118, 22826, 'es', 'name', 'Universidad de Hermosillo'),
(26119, 22827, 'es', 'name', 'Universidad Tamaulipeca'),
(26120, 22828, 'en', 'name', 'Northeastern University'),
(26121, 22828, 'es', 'name', 'Universidad del Noreste'),
(26122, 22829, 'es', 'name', 'Universidad Kino'),
(26123, 22830, 'en', 'name', 'Technological University of Hermosillo'),
(26124, 22830, 'es', 'name', 'Universidad Tecnológica de Hermosillo'),
(26125, 22831, 'es', 'name', 'Universidad Abierta Para Adultos'),
(26126, 22832, 'en', 'name', 'Antioch University Seattle'),
(26127, 22833, 'en', 'name', 'Concordia University'),
(26128, 22834, 'en', 'name', 'St. Gregory''s University'),
(26129, 22835, 'en', 'name', 'Briar Cliff University'),
(26130, 22836, 'es', 'name', 'Centro Universitario Luis Donaldo Colosio Murrieta'),
(26131, 22837, 'en', 'name', 'Neumont University'),
(26132, 22838, 'en', 'name', 'University of East-West Medicine'),
(26133, 22839, 'es', 'name', 'Centro Universitario Vasco de Quiroga de Huejutla'),
(26134, 22840, 'en', 'name', 'The New World University'),
(26135, 22840, 'es', 'name', 'Universidad Nuevo Mundo'),
(26136, 22841, 'es', 'name', 'Universidad Liceo Cervantino'),
(26137, 22842, 'es', 'name', 'Instituto Superior de Formación Docente Salomé Ureña'),
(26138, 22843, 'en', 'name', 'Harrison Middleton University'),
(26139, 22844, 'en', 'name', 'University of Advancing Technology'),
(26140, 22845, 'es', 'name', 'Universidad Acción Pro-Educación y Cultura'),
(26141, 22846, 'es', 'name', 'Universidad del Valle de Santiago'),
(26142, 22847, 'es', 'name', 'Universidad MƩxico ContemporƔneo'),
(26143, 22848, 'en', 'name', 'Latin University of Panama'),
(26144, 22848, 'es', 'name', 'Universidad Latina de PanamĆ”'),
(26145, 22849, 'es', 'name', 'Universidad Autónoma del Noreste'),
(26146, 22850, 'en', 'name', 'Latin American University of Science and Technology'),
(26147, 22850, 'es', 'name', 'Universidad Latinoamericana de Ciencia y TecnologĆ­a'),
(26148, 22851, 'en', 'name', 'International Maritime University of Panama'),
(26149, 22851, 'es', 'name', 'Universidad MarĆ­tima Internacional de PanamĆ”'),
(26150, 22852, 'es', 'name', 'Universidad Experimental FƩlix Adam'),
(26151, 22853, 'es', 'name', 'Universidad del Futbol y Ciencias del Deporte'),
(26152, 22854, 'es', 'name', 'Universidad Interamericana'),
(26153, 22855, 'es', 'name', 'Universidad Nacional Pedro Henrƭquez UreƱa'),
(26154, 22856, 'es', 'name', 'Universidad AnƔhuac Puebla'),
(26155, 22857, 'es', 'name', 'Universidad Metropolitana del Centro'),
(26156, 22858, 'es', 'name', 'Universidad Metropolitana de Ciencia y TecnologĆ­a'),
(26157, 22859, 'es', 'name', 'Universidad de Los Altos de Chiapas'),
(26158, 22860, 'es', 'name', 'Universidad del Caribe del Sur'),
(26159, 22860, 'en', 'name', 'University of the Southern Caribbean'),
(26160, 22860, 'fr', 'name', 'Université de la caraïbe du sud'),
(26161, 22861, 'es', 'name', 'Universidad Instituto Nacional de Ciencias Exactas'),
(26162, 22862, 'es', 'name', 'Universidad Intercultural de Chiapas'),
(26163, 22863, 'es', 'name', 'Universidad del Istmo'),
(26164, 22864, 'es', 'name', 'Universidad Internacional de La Paz'),
(26165, 22865, 'es', 'name', 'Universidad Maya'),
(26166, 22866, 'es', 'name', 'Universidad Mundial'),
(26167, 22867, 'en', 'name', 'Mesoamerican University'),
(26168, 22867, 'es', 'name', 'Universidad Mesoamericana'),
(26169, 22868, 'es', 'name', 'Universidad Intercultural del Estado de MƩxico'),
(26170, 22869, 'en', 'name', 'Bethesda University'),
(26171, 22870, 'en', 'name', 'South Baylo University'),
(26172, 22871, 'es', 'name', 'Universidad Alfred Nobel de Mexico'),
(26173, 22872, 'es', 'name', 'Universidad Abierta'),
(26174, 22873, 'fr', 'name', 'UniversitƩ Roi Henri Christophe'),
(26175, 22874, 'en', 'name', 'Ohio Valley University'),
(26176, 22874, 'fr', 'name', 'UniversitƩ de la vallƩe de l''ohio'),
(26177, 22875, 'fr', 'name', 'UniversitĆ© ChrĆ©tienne du Nord d’HaĆÆti'),
(26178, 22876, 'en', 'name', 'Post University'),
(26179, 22877, 'en', 'name', 'University of the Cumberlands'),
(26180, 22878, 'es', 'name', 'Universidad del Centro de MƩxico'),
(26181, 22879, 'en', 'name', 'University of Virginia''s College at Wise'),
(26182, 22880, 'en', 'name', 'Polytechnic University of San Luis PotosĆ­'),
(26183, 22880, 'es', 'name', 'Universidad PolitƩcnica de San Luis Potosƭ'),
(26184, 22881, 'es', 'name', 'Universidad del Valle del Fuerte'),
(26185, 22882, 'fr', 'name', 'Institut des Hautes Ɖtudes Commerciales et Ɖconomiques'),
(26186, 22883, 'es', 'name', 'Centro Universitario del Noreste'),
(26187, 22884, 'en', 'name', 'University of Management and Technology'),
(26188, 22885, 'en', 'name', 'Adventist University of Haiti'),
(26189, 22885, 'ht', 'name', 'Université Adventiste d''Haïti'),
(26190, 22886, 'en', 'name', 'University of Maine at Augusta'),
(26191, 22887, 'en', 'name', 'Caribbean University'),
(26192, 22887, 'fr', 'name', 'Université Caraïbe'),
(26193, 22888, 'en', 'name', 'Concordia University Texas'),
(26194, 22888, 'es', 'name', 'Universidad Concordia Texas'),
(26195, 22889, 'es', 'name', 'Universidad Internacional Webber'),
(26196, 22889, 'en', 'name', 'Webber International University'),
(26197, 22890, 'es', 'name', 'Universidad San Pablo'),
(26198, 22891, 'ht', 'name', 'University Notre Dame of Haiti'),
(26199, 22891, 'fr', 'name', 'Université Notre Dame d''Haïti'),
(26200, 22892, 'en', 'name', 'Oklahoma Wesleyan University'),
(26201, 22893, 'es', 'name', 'Centro Universitario de Sonora'),
(26202, 22894, 'en', 'name', 'Quisqueya University'),
(26203, 22894, 'fr', 'name', 'UniversitƩ Quisqueya'),
(26204, 22895, 'es', 'name', 'Universidad Nacional de Agricultura'),
(26205, 22896, 'es', 'name', 'Universidad Pedro de Gante'),
(26206, 22897, 'es', 'name', 'Universidad de Matehuala'),
(26207, 22898, 'es', 'name', 'Instituto Universitario Escuela Superior de Economía y Administración de Empresas'),
(26208, 22899, 'en', 'name', 'Center of Higher University Studies'),
(26209, 22899, 'es', 'name', 'Centro de Estudios Superiores Universitarios'),
(26210, 22900, 'es', 'name', 'Universidad de Tamazunchale'),
(26211, 22901, 'es', 'name', 'Centro Universitario Interamericano'),
(26212, 22902, 'es', 'name', 'Universidad de Relaciones y Estudios Internacionales'),
(26213, 22903, 'en', 'name', 'American Jewish University'),
(26214, 22904, 'es', 'name', 'Universidad del Golfo'),
(26215, 22905, 'es', 'name', 'Instituto Universitario de Ciencias de la Salud - Fundación Héctor A. Barceló'),
(26216, 22906, 'es', 'name', 'Instituto Universitario de la PolicĆ­a Federal Argentina'),
(26217, 22907, 'es', 'name', 'Universidad Marista de MƩrida'),
(26218, 22908, 'es', 'name', 'Universidad Mesoamericana de San AgustĆ­n'),
(26219, 22909, 'es', 'name', 'Universidad del Soconusco'),
(26220, 22910, 'es', 'name', 'Universidad Modelo'),
(26221, 22911, 'es', 'name', 'Universidad del Tacana'),
(26222, 22912, 'es', 'name', 'Universidad Instituto Universitario del Estado de MƩxico'),
(26223, 22913, 'es', 'name', 'Escuela Argentina de Negocios'),
(26224, 22914, 'es', 'name', 'Instituto Universitario Franco InglƩs de MƩxico'),
(26225, 22915, 'en', 'name', 'National University of the Arts'),
(26226, 22915, 'es', 'name', 'Universidad Nacional de las Artes'),
(26227, 22916, 'en', 'name', 'Southwestern Christian University'),
(26228, 22917, 'en', 'name', 'New Charter University'),
(26229, 22918, 'es', 'name', 'Centro Universitario de Tenango del Valle'),
(26230, 22919, 'es', 'name', 'Universidad Argentina John F. Kennedy'),
(26231, 22920, 'es', 'name', 'Centro Universitario Columbia'),
(26232, 22921, 'es', 'name', 'Universidad Centro de Altos Estudios en Ciencias Exactas'),
(26233, 22922, 'es', 'name', 'Centro Universitario Emmanuel Kant'),
(26234, 22923, 'es', 'name', 'Centro Universitario en Periodismo y Publicidad'),
(26235, 22924, 'es', 'name', 'Centro de Estudios Universitarios de Baja California'),
(26236, 22925, 'es', 'name', 'Universidad de Belgrano'),
(26237, 22925, 'en', 'name', 'University of Belgrano'),
(26238, 22925, 'fr', 'name', 'UniversitƩ de belgrano'),
(26239, 22926, 'en', 'name', 'Gardner–Webb University'),
(26240, 22927, 'es', 'name', 'Universidad del Alica'),
(26241, 22928, 'es', 'name', 'Universidad de Flores'),
(26242, 22929, 'es', 'name', 'Colegio FrancƩs Hidalgo de MƩxico'),
(26243, 22930, 'es', 'name', 'Universidad de la Marina Mercante'),
(26244, 22931, 'es', 'name', 'Universidad Vizcaya de las AmƩricas'),
(26245, 22932, 'es', 'name', 'Centro Universitario Incarnate Word'),
(26246, 22933, 'es', 'name', 'Universidad del Cine'),
(26247, 22934, 'es', 'name', 'Centro Universitario Oriente de MƩxico'),
(26248, 22935, 'es', 'name', 'Universidad del Museo Social Argentino'),
(26249, 22935, 'en', 'name', 'University of Argentine Social Museum'),
(26250, 22936, 'es', 'name', 'Centro Universitario Patria'),
(26251, 22937, 'en', 'name', 'Woodbury University'),
(26252, 22938, 'en', 'name', 'National University of Chilecito'),
(26253, 22938, 'es', 'name', 'Universidad Nacional de Chilecito'),
(26254, 22939, 'es', 'name', 'Universidad de Concepción del Uruguay'),
(26255, 22940, 'es', 'name', 'Universidad Tecnológica Iberoamericana'),
(26256, 22941, 'en', 'name', 'Jones International University'),
(26257, 22942, 'es', 'name', 'University of Cuenca del Plata'),
(26258, 22943, 'en', 'name', 'National University of Formosa'),
(26259, 22943, 'es', 'name', 'Universidad Nacional de Formosa'),
(26260, 22944, 'en', 'name', 'Queens University of Charlotte'),
(26261, 22945, 'en', 'name', 'Tennessee Temple University'),
(26262, 22946, 'es', 'name', 'Universidad Champagnat'),
(26263, 22947, 'es', 'name', 'Instituto Universitario AeronƔutico'),
(26264, 22948, 'es', 'name', 'Universidad del PacĆ­fico'),
(26265, 22949, 'es', 'name', 'Universidad EvangƩlica del Paraguay'),
(26266, 22950, 'es', 'name', 'Instituto de Ciencias Tecnológicas'),
(26267, 22951, 'es', 'name', 'Universidad Metropolitana de Asunción'),
(26268, 22952, 'pt', 'name', 'Centro UniversitÔrio Módulo'),
(26269, 22953, 'es', 'name', 'Universidad Católica de La Plata'),
(26270, 22954, 'es', 'name', 'Universidad Notarial Argentina'),
(26271, 22955, 'pt', 'name', 'Centro UniversitƔrio de Caratinga'),
(26272, 22956, 'es', 'name', 'Universidad PolitƩcnica y Artƭstica del Paraguay'),
(26273, 22957, 'es', 'name', 'Universidad Tecnológica Intercontinental'),
(26274, 22958, 'es', 'name', 'Universidad Nacional del Este'),
(26275, 22959, 'es', 'name', 'Universidad Nacional de ItapĆŗa'),
(26276, 22960, 'es', 'name', 'Universidad Nacional de Pilar'),
(26277, 22961, 'es', 'name', 'Universidad Nacional Micaela Bastidas de Apurimac'),
(26278, 22962, 'es', 'name', 'Universidad Nacional JosƩ Marƭa Arguedas'),
(26279, 22963, 'es', 'name', 'Fundación Universitaria Colombo Internacional'),
(26280, 22964, 'pt', 'name', 'Centro UniversitƔrio do Leste de Minas Gerais'),
(26281, 22965, 'pt', 'name', 'Universidade de Cruz Alta'),
(26282, 22965, 'en', 'name', 'University of Cruz Alta'),
(26283, 22966, 'es', 'name', 'Universidad Católica San Pablo'),
(26284, 22967, 'pt', 'name', 'Centro UniversitƔrio Unirondon'),
(26285, 22968, 'en', 'name', 'National University of Cajamarca'),
(26286, 22968, 'es', 'name', 'Universidad Nacional de Cajamarca'),
(26287, 22969, 'es', 'name', 'Universidad Rural de Guatemala'),
(26288, 22970, 'es', 'name', 'Universidad Privada Antonio Guillermo Urrelo'),
(26289, 22971, 'es', 'name', 'Fundación de Estudios Superiores Comfanorte'),
(26290, 22972, 'es', 'name', 'Instituto Profesional de Chile'),
(26291, 22973, 'es', 'name', 'Centro Diocesano de Estudio y Reflexión'),
(26292, 22974, 'en', 'name', 'Francisco de Paula Santander University'),
(26293, 22974, 'es', 'name', 'Universidad Francisco de Paula Santander'),
(26294, 22975, 'pt', 'name', 'Universidade de CuiabĆ”'),
(26295, 22976, 'en', 'name', 'EIA University'),
(26296, 22976, 'es', 'name', 'Universidad EIA'),
(26297, 22977, 'es', 'name', 'Instituto Profesional de Ciencias de la Computación'),
(26298, 22978, 'pt', 'name', 'Centro UniversitƔrio Campos de Andrade'),
(26299, 22979, 'es', 'name', 'Universidad de Morón'),
(26300, 22980, 'es', 'name', 'Institución Universitaria de Envigado'),
(26301, 22981, 'pt', 'name', 'Centro UniversitƔrio Curitiba'),
(26302, 22982, 'es', 'name', 'Fundación Universitaria del Espinal'),
(26303, 22983, 'es', 'name', 'Universidad Católica Santo Toribio de Mogrovejo'),
(26304, 22984, 'es', 'name', 'Instituto Profesional De Ciencias Y Artes'),
(26305, 22985, 'es', 'name', 'Universidad Gastón Dachary'),
(26306, 22986, 'es', 'name', 'Universidad de Chiclayo'),
(26307, 22987, 'es', 'name', 'Instituto Tolimense de Formación Técnica Profesional'),
(26308, 22988, 'es', 'name', 'Instituto Universitario Italiano de Rosario'),
(26309, 22989, 'es', 'name', 'Universidad SeƱor de SipƔn'),
(26310, 22990, 'en', 'name', 'National University of Catamarca'),
(26311, 22990, 'es', 'name', 'Universidad Nacional de Catamarca'),
(26312, 22991, 'es', 'name', 'Universidad de la Amazonia'),
(26313, 22991, 'en', 'name', 'University of the Amazon'),
(26314, 22992, 'en', 'name', 'Saint Thomas Aquinas North University'),
(26315, 22992, 'es', 'name', 'Universidad del Norte Santo TomƔs de Aquino'),
(26316, 22993, 'es', 'name', 'Universidad de Cundinamarca'),
(26317, 22993, 'en', 'name', 'University of Cundinamarca'),
(26318, 22994, 'es', 'name', 'Instituto Profesional Eatri'),
(26319, 22995, 'es', 'name', 'Universidad Católica de Santa Fe'),
(26320, 22996, 'en', 'name', 'Catholic University of Santiago del Estero'),
(26321, 22996, 'es', 'name', 'Universidad Católica de Santiago del Estero'),
(26322, 22997, 'pt', 'name', 'Centro UniversitƔrio Franciscano do ParanƔ'),
(26323, 22998, 'es', 'name', 'Enac Instituto Profesional'),
(26324, 22999, 'pt', 'name', 'Universidade Tuiuti do ParanĆ”'),
(26325, 23000, 'es', 'name', 'Universidad San Pedro'),
(26326, 23001, 'pt', 'name', 'Centro UniversitƔrio da Grande Dourados'),
(26327, 23002, 'en', 'name', 'Autonomous University of Manizales'),
(26328, 23002, 'es', 'name', 'Universidad Autonoma de Manizales'),
(26329, 23003, 'es', 'name', 'Instituto Profesional Escuela De Contadores Auditores De Santiago'),
(26330, 23004, 'es', 'name', 'Instituto Profesional Escuela Moderna De Musica'),
(26331, 23005, 'pt', 'name', 'Universidade Regional Integrada do Alto Uruguai e das MissƵes'),
(26332, 23006, 'es', 'name', 'Instituto Profesional Esucomex'),
(26333, 23007, 'pt', 'name', 'Centro Regional UniversitƔrio de Espƭrito Santo do Pinhal'),
(26334, 23008, 'es', 'name', 'Universidad Nacional José Faustino SÔnchez Carrión'),
(26335, 23009, 'pt', 'name', 'Centro UniversitƔrio Newton Paiva'),
(26336, 23010, 'pt', 'name', 'Centro UniversitƔrio de Formiga'),
(26337, 23011, 'pt', 'name', 'Centro UniversitƔrio de Franca'),
(26338, 23012, 'es', 'name', 'Instituto Guillermo Subercaseaux'),
(26339, 23013, 'pt', 'name', 'Centro UniversitƔrio de GoiƔs'),
(26340, 23014, 'es', 'name', 'Universidad Nacional de Huancavelica'),
(26341, 23015, 'en', 'name', 'Bolivia Adventist University'),
(26342, 23015, 'es', 'name', 'Universidad Adventista de Bolivia'),
(26343, 23016, 'es', 'name', 'Instituto Profesional La Araucana'),
(26344, 23017, 'pt', 'name', 'Centro UniversitÔrio da Fundação Educacional Guaxupé'),
(26345, 23018, 'es', 'name', 'Universidad Continental'),
(26346, 23019, 'pt', 'name', 'Universidade Regional do Noroeste do Estado do Rio Grande do Sul'),
(26347, 23020, 'es', 'name', 'Universidad Central'),
(26348, 23021, 'es', 'name', 'Institución Universitaria Colegio Mayor de Antioquia'),
(26349, 23022, 'es', 'name', 'Instituto Profesional Latinoamericano de Comercio Exterior'),
(26350, 23023, 'es', 'name', 'Instituto Profesional Los Leones'),
(26351, 23024, 'en', 'name', 'Los Andes Peruvian University'),
(26352, 23024, 'es', 'name', 'Universidad Peruana Los Andes'),
(26353, 23025, 'pt', 'name', 'Centro UniversitƔrio Leonardo da Vinci'),
(26354, 23026, 'es', 'name', 'Universidad IndĆ­gena Quechua Boliviana Casimiro Huanca'),
(26355, 23027, 'es', 'name', 'Instituto Profesional Providencia'),
(26356, 23028, 'es', 'name', 'Universidad de HuƔnuco'),
(26357, 23029, 'es', 'name', 'Universidad Latinoamericana'),
(26358, 23030, 'pt', 'name', 'Centro UniversitÔrio Assunção'),
(26359, 23031, 'es', 'name', 'Universidad Privada Abierta Latinoamericana'),
(26360, 23032, 'es', 'name', 'Universidad Santo TomƔs'),
(26361, 23033, 'es', 'name', 'Universidad Privada Boliviana'),
(26362, 23034, 'pt', 'name', 'Centro UniversitƔrio Nossa Senhora do Patrocƭnio'),
(26363, 23035, 'es', 'name', 'Universidad Privada del Valle'),
(26364, 23036, 'es', 'name', 'Universidad Andina NƩstor CƔceres VelƔsquez'),
(26365, 23037, 'en', 'name', 'Bolivarian University of Chile'),
(26366, 23037, 'es', 'name', 'Universidad Bolivariana de Chile'),
(26367, 23038, 'es', 'name', 'Universidad PĆŗblica de El Alto'),
(26368, 23039, 'es', 'name', 'Universidad Católica Silva Henríquez'),
(26369, 23040, 'pt', 'name', 'Centro UniversitƔrio de Jales'),
(26370, 23041, 'es', 'name', 'Universidad Chileno BritƔnica de Cultura'),
(26371, 23042, 'es', 'name', 'Universidad Unión Bolivariana'),
(26372, 23043, 'es', 'name', 'Universidad Ciencias de la InformƔtica'),
(26373, 23043, 'en', 'name', 'University Ucinf'),
(26374, 23044, 'es', 'name', 'Fundación Universitaria Bellas Artes'),
(26375, 23045, 'es', 'name', 'Universidad Católica Luis Amigó'),
(26376, 23046, 'es', 'name', 'Universidad Católica Sedes Sapientiae'),
(26377, 23047, 'pt', 'name', 'Centro UniversitƔrio de JaraguƔ do Sul'),
(26378, 23048, 'es', 'name', 'Universidad de San MartĆ­n de Porres'),
(26379, 23049, 'es', 'name', 'Universidad de la Cordillera'),
(26380, 23050, 'es', 'name', 'Instituto Gamma'),
(26381, 23051, 'pt', 'name', 'Centro UniversitÔrio de João Pessoa'),
(26382, 23052, 'es', 'name', 'Universidad de Los Andes'),
(26383, 23053, 'pt', 'name', 'Universidade da Região de Joinville'),
(26384, 23054, 'pt', 'name', 'Centro UniversitƔrio Padre Anchieta'),
(26385, 23055, 'es', 'name', 'Universidad La RepĆŗblica'),
(26386, 23056, 'en', 'name', 'Miguel de Cervantes University'),
(26387, 23056, 'es', 'name', 'Universidad Miguel de Cervantes'),
(26388, 23057, 'es', 'name', 'Universidad Femenina del Sagrado Corazón'),
(26389, 23058, 'pt', 'name', 'Universidade do Planalto Catarinense'),
(26390, 23059, 'en', 'name', 'Metropolitan University of Technology'),
(26391, 23059, 'es', 'name', 'Universidad Tecnológica Metropolitana'),
(26392, 23060, 'es', 'name', 'Universidad Autónoma de Chile'),
(26393, 23061, 'es', 'name', 'Instituto Profesional Helen Keller'),
(26394, 23062, 'es', 'name', 'Colegiatura Colombiana Institución Universitaria'),
(26395, 23063, 'es', 'name', 'Universidad Loyola'),
(26396, 23064, 'es', 'name', 'Universidad ViƱa del Mar'),
(26397, 23064, 'en', 'name', 'ViƱa del Mar University'),
(26398, 23065, 'es', 'name', 'Universidad del Mar'),
(26399, 23066, 'es', 'name', 'Universidad Nuestra SeƱora de La Paz'),
(26400, 23067, 'pt', 'name', 'Centro UniversitƔrio Anhanguera'),
(26401, 23068, 'pt', 'name', 'Centro UniversitƔrio de Lins'),
(26402, 23069, 'es', 'name', 'Fundación Universitaria Autónoma De Las Américas'),
(26403, 23070, 'en', 'name', 'National University of Education Enrique GuzmƔn y Valle'),
(26404, 23070, 'es', 'name', 'Universidad Nacional de Educación Enrique GuzmÔn y Valle'),
(26405, 23071, 'es', 'name', 'Fundación de Estudios Superiores Universitarios de UrabÔ'),
(26406, 23072, 'pt', 'name', 'Centro UniversitƔrio de Desenvolvimento do Centro Oeste'),
(26407, 23073, 'es', 'name', 'Corporación Universitaria Americana'),
(26408, 23074, 'es', 'name', 'PolitƩcnico de la Costa AtlƔntica'),
(26409, 23075, 'es', 'name', 'Universidad de la Costa'),
(26410, 23075, 'en', 'name', 'University of the Coast'),
(26411, 23076, 'es', 'name', 'Corporación Universitaria Empresarial de Salamanca'),
(26412, 23077, 'es', 'name', 'Corporación Universitaria Reformada'),
(26413, 23078, 'es', 'name', 'Universidad Autónoma del Caribe'),
(26414, 23079, 'es', 'name', 'Universidad Metropolitana'),
(26415, 23080, 'en', 'name', 'Simón Bolívar University'),
(26416, 23080, 'es', 'name', 'Universidad Simón Bolívar'),
(26417, 23081, 'es', 'name', 'Centro de Investigación Docencia y Consultoria Administrativa'),
(26418, 23082, 'es', 'name', 'Colegio de Estudios Superiores de Administración'),
(26419, 23083, 'es', 'name', 'Institución Tecnológica Cedesistemas'),
(26420, 23084, 'es', 'name', 'Universidad Peruana de Ciencias e InformƔtica'),
(26421, 23085, 'pt', 'name', 'Sociedade de Ensino UniversitƔrio do Nordeste'),
(26422, 23086, 'es', 'name', 'Institución Universitaria Esumer'),
(26423, 23087, 'es', 'name', 'Universidad Salesiana de Bolivia'),
(26424, 23088, 'pt', 'name', 'Centro UniversitƔrio de Ensino Superior do Amazonas'),
(26425, 23089, 'es', 'name', 'Institución Universitaria Salazar y Herrera'),
(26426, 23090, 'es', 'name', 'Institución Universitaria Colegios de Colombia'),
(26427, 23091, 'pt', 'name', 'Centro UniversitƔrio do Norte'),
(26428, 23092, 'pt', 'name', 'Universidade Nilton Lins'),
(26429, 23093, 'pt', 'name', 'Universidade de MarĆ­lia'),
(26430, 23094, 'es', 'name', 'Corporación Escuela de Artes y Letras'),
(26431, 23095, 'es', 'name', 'Universidad Tecnológica Boliviana'),
(26432, 23096, 'pt', 'name', 'Centro UniversitƔrio Cesumar'),
(26433, 23097, 'es', 'name', 'PolitƩcnico Colombiano Jaime Isaza Cadavid'),
(26434, 23098, 'es', 'name', 'Universidad Norbert Wiener'),
(26435, 23099, 'pt', 'name', 'Universidade Braz Cubas'),
(26436, 23100, 'pt', 'name', 'Universidade Potiguar'),
(26437, 23101, 'es', 'name', 'Corporación Internacional para el Desarrollo Educativo'),
(26438, 23102, 'es', 'name', 'Corporación John F. Kennedy'),
(26439, 23103, 'es', 'name', 'Universidad Privada de Oruro'),
(26440, 23104, 'pt', 'name', 'Centro UniversitƔrio Plƭnio Leite'),
(26441, 23105, 'en', 'name', 'Oruro Technical University'),
(26442, 23105, 'es', 'name', 'Universidad TƩcnica de Oruro'),
(26443, 23106, 'es', 'name', 'Universidad Autónoma Latinoamericana'),
(26444, 23107, 'pt', 'name', 'Universidade IguaƧu'),
(26445, 23108, 'es', 'name', 'Universidad Bethesda'),
(26446, 23109, 'pt', 'name', 'Centro UniversitƔrio Barriga Verde'),
(26447, 23110, 'es', 'name', 'Universidad JosƩ Carlos Mariategui'),
(26448, 23111, 'es', 'name', 'Universidad Nacional de Moquegua'),
(26449, 23112, 'es', 'name', 'Universidad Cristiana de Bolivia'),
(26450, 23113, 'pt', 'name', 'Centro UniversitÔrio Católico do Sudoeste do ParanÔ'),
(26451, 23114, 'es', 'name', 'Corporación Politécnico Colombo Andino'),
(26452, 23115, 'es', 'name', 'Universidad Nacional del Oriente'),
(26453, 23116, 'es', 'name', 'Universidad del SinĆŗ'),
(26454, 23117, 'es', 'name', 'Universidad Nacional de Piura'),
(26455, 23118, 'es', 'name', 'Corporación Tecnológica de BogotÔ'),
(26456, 23119, 'es', 'name', 'Universidad Nacional de Ucayali'),
(26457, 23120, 'es', 'name', 'Universidad Privada de Pucallpa'),
(26458, 23121, 'es', 'name', 'Corporación Universitaria del Huila'),
(26459, 23122, 'es', 'name', 'Corporación Universitaria de Ciencia y Desarrollo'),
(26460, 23123, 'pt', 'name', 'Centro UniversitƔrio de Patos de Minas'),
(26461, 23124, 'es', 'name', 'Universidad Nacional del Altiplano'),
(26462, 23125, 'es', 'name', 'Universidad Privada Cumbre'),
(26463, 23126, 'es', 'name', 'Corporación Universitaria de Colombia Ideas'),
(26464, 23127, 'es', 'name', 'Universidad Privada San Carlos'),
(26465, 23128, 'es', 'name', 'Universidad Tecnológica Privada de Santa Cruz'),
(26466, 23129, 'es', 'name', 'Universidad de Pamplona'),
(26467, 23129, 'en', 'name', 'University of Pamplona'),
(26468, 23130, 'es', 'name', 'Universidad Privada de Santa Cruz de la Sierra'),
(26469, 23131, 'es', 'name', 'Corporación Universitaria Autónoma de Nariño'),
(26470, 23132, 'en', 'name', 'Federico Villarreal National University'),
(26471, 23132, 'es', 'name', 'Universidad Nacional Federico Villarreal'),
(26472, 23133, 'es', 'name', 'Corporación Universitaria Iberoamericana'),
(26473, 23134, 'es', 'name', 'Universidad Boliviana de InformƔtica'),
(26474, 23135, 'en', 'name', 'Jorge Basadre Grohmann National University'),
(26475, 23135, 'es', 'name', 'Universidad Nacional Jorge Basadre Grohmann'),
(26476, 23136, 'es', 'name', 'Universidad Católica de Pereira'),
(26477, 23137, 'es', 'name', 'Universidad Pedagógica Mariscal Sucre'),
(26478, 23138, 'es', 'name', 'Universidad Unidad'),
(26479, 23139, 'en', 'name', 'Catholic University of Trujillo'),
(26480, 23139, 'es', 'name', 'Universidad Católica de Trujillo'),
(26481, 23140, 'es', 'name', 'Institución Universitaria Colegio Mayor del Cauca'),
(26482, 23141, 'es', 'name', 'Corporación Universitaria Autónoma del Cauca'),
(26483, 23142, 'pt', 'name', 'Centro UniversitÔrio Barão de MauÔ'),
(26484, 23143, 'es', 'name', 'Fundación Universitaria de PopayÔn'),
(26485, 23144, 'pt', 'name', 'Centro UniversitƔrio Moura Lacerda'),
(26486, 23145, 'es', 'name', 'Universitaria Agustiniana'),
(26487, 23146, 'es', 'name', 'Universidad Nacional de Tumbes'),
(26488, 23147, 'es', 'name', 'Corporación Universitaria Republicana'),
(26489, 23148, 'es', 'name', 'Corporación Universitaria Unitec'),
(26490, 23149, 'pt', 'name', 'ColƩgio Metodista Bennett'),
(26491, 23150, 'pt', 'name', 'Centro UniversitƔrio Amparense'),
(26492, 23151, 'en', 'name', 'University Center Augusto Motta'),
(26493, 23152, 'es', 'name', 'Universitario Francisco de AsĆ­s'),
(26494, 23153, 'es', 'name', 'Universidad Católica de Oriente'),
(26495, 23154, 'pt', 'name', 'Centro UniversitƔrio Celso Lisboa'),
(26496, 23155, 'pt', 'name', 'Centro UniversitƔrio da Cidade'),
(26497, 23156, 'es', 'name', 'Universitario Crandon'),
(26498, 23157, 'pt', 'name', 'Centro UniversitÔrio Católico Salesiano Auxilium'),
(26499, 23158, 'es', 'name', 'Instituto Universitario Centro de Estudio y Diagnóstico de las Disgnacias del Uruguay'),
(26500, 23159, 'pt', 'name', 'Centro Universitario Toledo'),
(26501, 23160, 'pt', 'name', 'Universidade Castelo Branco'),
(26502, 23161, 'pt', 'name', 'Centro UniversitƔrio de Araraquara'),
(26503, 23162, 'es', 'name', 'Escuela de Cadetes de PolicĆ­a General Santander'),
(26504, 23163, 'pt', 'name', 'Universidade Unigranrio'),
(26505, 23164, 'es', 'name', 'Escuela Superior de Ciencias Empresariales'),
(26506, 23165, 'pt', 'name', 'Centro Universitario de Araras Dr Edmunso Ulson'),
(26507, 23166, 'es', 'name', 'Universidad Mariana'),
(26508, 23167, 'es', 'name', 'Instituto Barraquer de AmƩrica'),
(26509, 23168, 'pt', 'name', 'Centro UniversitƔrio Herminio Ometto de Araras'),
(26510, 23169, 'pt', 'name', 'Centro UniversitƔrio do Planalto de AraxƔ'),
(26511, 23170, 'es', 'name', 'Asociación Psicoanalítica del Uruguay'),
(26512, 23171, 'pt', 'name', 'Universidade Presidente AntƓnio Carlos'),
(26513, 23172, 'es', 'name', 'Corporación Universitaria Santa Rosa de Cabal'),
(26514, 23173, 'pt', 'name', 'Centro UniversitƔrio Jorge Amado'),
(26515, 23173, 'en', 'name', 'Jorge Amado University Center'),
(26516, 23174, 'es', 'name', 'Facultad de Teologƭa del Uruguay MonseƱor Mariano Soler'),
(26517, 23175, 'pt', 'name', 'Centro UniversitƔrio de Barra Mansa'),
(26518, 23176, 'es', 'name', 'Fundación Centro de Educación Superior Investigación y Profesionalización'),
(26519, 23177, 'pt', 'name', 'Centro UniversitÔrio da Fundação Educacional de Barretos'),
(26520, 23178, 'es', 'name', 'Universidad de la Empresa'),
(26521, 23179, 'es', 'name', 'Escuela Colombiana de Rehabilitación'),
(26522, 23180, 'es', 'name', 'Fundación Universitaria de San Gil'),
(26523, 23181, 'pt', 'name', 'Centro UniversitƔrio Claretiano'),
(26524, 23182, 'es', 'name', 'Católica del Norte Fundación Universitaria'),
(26525, 23183, 'pt', 'name', 'Centro UniversitƔrio do ParƔ'),
(26526, 23184, 'pt', 'name', 'Universidade da AmazƓnia'),
(26527, 23185, 'es', 'name', 'Universidad Nororiental Privada Gran Mariscal de Ayacucho'),
(26528, 23186, 'es', 'name', 'Universidad Nacional Experimental PolitƩcnica "Antonio JosƩ de Sucre"'),
(26529, 23187, 'es', 'name', 'Fundación Interamericana Técnica'),
(26530, 23188, 'pt', 'name', 'Universidade Salvador'),
(26531, 23189, 'es', 'name', 'Universidad Nacional Experimental Rafael MarĆ­a Baralt'),
(26532, 23190, 'es', 'name', 'Fundación Tecnológica Autónoma de BogotÔ'),
(26533, 23191, 'es', 'name', 'Institución Universitaria Latina'),
(26534, 23192, 'es', 'name', 'Universidad FermĆ­n Toro'),
(26535, 23192, 'en', 'name', 'University FermĆ­n Toro'),
(26536, 23193, 'en', 'name', 'Central University of Valle del Cauca'),
(26537, 23193, 'es', 'name', 'Unidad Central del Valle del Cauca'),
(26538, 23194, 'es', 'name', 'Fundación Universitaria Juan de Castellanos'),
(26539, 23195, 'es', 'name', 'Universidad Cervantina'),
(26540, 23196, 'pt', 'name', 'Centro UniversitƔrio Lusƭada'),
(26541, 23197, 'es', 'name', 'Fundación Universitaria del Área Andina'),
(26542, 23198, 'pt', 'name', 'Uniabeu Centro UniversitƔrio'),
(26543, 23199, 'pt', 'name', 'Centro UniversitƔrio Monte Serrat'),
(26544, 23200, 'es', 'name', 'Fundación Universitaria Internacional del Tropico Américano'),
(26545, 23201, 'es', 'name', 'Universidad Alejandro de Humboldt'),
(26546, 23202, 'pt', 'name', 'Universidade Metropolitana de Santos'),
(26547, 23203, 'pt', 'name', 'Instituto Metodista Izabela Hendrix'),
(26548, 23204, 'pt', 'name', 'Universidade Santa CecĆ­lia'),
(26549, 23205, 'en', 'name', 'FUMEC University'),
(26550, 23205, 'pt', 'name', 'Universidade Fundação Mineira de Educação e Cultura'),
(26551, 23206, 'es', 'name', 'Universidad Católica Santa Rosa'),
(26552, 23207, 'pt', 'name', 'Instituto MauĆ” de Tecnologia'),
(26553, 23208, 'es', 'name', 'Universidad JosƩ Marƭa Vargas'),
(26554, 23209, 'pt', 'name', 'Centro UniversitƔrio Euroamericano'),
(26555, 23210, 'en', 'name', 'Metropolitan University'),
(26556, 23210, 'es', 'name', 'Universidad Metropolitana'),
(26557, 23211, 'es', 'name', 'Fundación Universitaria Los Libertadores'),
(26558, 23211, 'en', 'name', 'University Foundation Los Libertadores'),
(26559, 23212, 'es', 'name', 'Universidad MonteƔvila'),
(26560, 23213, 'es', 'name', 'Universidad Nacional Abierta'),
(26561, 23214, 'es', 'name', 'Universidad Nacional Experimental de las Artes'),
(26562, 23215, 'es', 'name', 'Universidad Nueva Esparta'),
(26563, 23216, 'es', 'name', 'Universidad TƩcnica de Babahoyo'),
(26564, 23217, 'es', 'name', 'Fundación Universitaria San Alfonso'),
(26565, 23218, 'es', 'name', 'Fundación Universitaria San Martín'),
(26566, 23218, 'en', 'name', 'Saint Martin University'),
(26567, 23219, 'es', 'name', 'Universidad Santa MarĆ­a'),
(26568, 23220, 'en', 'name', 'Center Technological University'),
(26569, 23220, 'es', 'name', 'Universidad Tecnológica del Centro'),
(26570, 23221, 'en', 'name', 'City University of SĆ£o Caetano do Sul'),
(26571, 23221, 'pt', 'name', 'Universidade Municipal de SĆ£o Caetano do Sul'),
(26572, 23222, 'pt', 'name', 'Centro UniversitƔrio Central Paulista'),
(26573, 23223, 'pt', 'name', 'Universidade Salgado de Oliveira'),
(26574, 23224, 'es', 'name', 'Universidad Rafael Belloso ChacĆ­n'),
(26575, 23225, 'en', 'name', 'Rafael Urdaneta University'),
(26576, 23225, 'es', 'name', 'Universidad Rafael Urdaneta'),
(26577, 23226, 'pt', 'name', 'Centro UniversitÔrio Municipal de São José'),
(26578, 23227, 'es', 'name', 'Universidad Católica del TÔchira'),
(26579, 23228, 'es', 'name', 'Universidad Nacional Experimental del TƔchira'),
(26580, 23229, 'pt', 'name', 'Centro UniversitƔrio de Rio Preto'),
(26581, 23230, 'pt', 'name', 'Centro Universitario Fluminense'),
(26582, 23231, 'es', 'name', 'Universidad Estatal de BolĆ­var'),
(26583, 23232, 'pt', 'name', 'Centro UniversitƔrio do Norte Paulista'),
(26584, 23233, 'es', 'name', 'Escuela Tecnológica Instituto Técnico Central'),
(26585, 23234, 'pt', 'name', 'Universidade La Salle'),
(26586, 23235, 'es', 'name', 'PolitƩcnico Grancolombiano'),
(26587, 23236, 'en', 'name', 'Anhanguera-Uniderp University'),
(26588, 23236, 'pt', 'name', 'Universidade Anhanguera Uniderp'),
(26589, 23237, 'es', 'name', 'Unión Americana de Educación Superior'),
(26590, 23238, 'es', 'name', 'Universidad Autónoma de Colombia'),
(26591, 23239, 'es', 'name', 'Universidad Casa Grande'),
(26592, 23240, 'en', 'name', 'Catholic University of Colombia'),
(26593, 23240, 'es', 'name', 'Universidad Católica de Colombia'),
(26594, 23241, 'en', 'name', 'Central University'),
(26595, 23241, 'es', 'name', 'Universidad Central'),
(26596, 23242, 'es', 'name', 'Universidad Colegio Mayor de Cundinamarca'),
(26597, 23243, 'es', 'name', 'Universidad de Guayaquil'),
(26598, 23243, 'en', 'name', 'University of Guayaquil'),
(26599, 23244, 'es', 'name', 'Universidad de La Salle (BogotĆ”)'),
(26600, 23244, 'en', 'name', 'University of La Salle'),
(26601, 23245, 'pt', 'name', 'Centro UniversitÔrio Adventista de São Paulo'),
(26602, 23246, 'en', 'name', 'Arturo Michelena University'),
(26603, 23246, 'es', 'name', 'Universidad Arturo Michelena'),
(26604, 23247, 'es', 'name', 'Universidad Incca de Colombia'),
(26605, 23248, 'es', 'name', 'Universidad JosƩ Antonio PƔez'),
(26606, 23249, 'en', 'name', 'La Gran Colombia University'),
(26607, 23249, 'es', 'name', 'Universidad La Gran Colombia'),
(26608, 23250, 'pt', 'name', 'Centro UniversitÔrio Belas Artes de São Paulo'),
(26609, 23251, 'es', 'name', 'Universidad Valle del Momboy'),
(26610, 23252, 'en', 'name', 'Manuela BeltrƔn University'),
(26611, 23252, 'es', 'name', 'Universidad Manuela BeltrƔn'),
(26612, 23253, 'es', 'name', 'Universidad Nacional Experimental MarĆ­tima del Caribe'),
(26613, 23254, 'pt', 'name', 'Centro UniversitƔrio Capital'),
(26614, 23255, 'es', 'name', 'Universidad Laica Vicente Rocafuerte de Guayaquil'),
(26615, 23256, 'es', 'name', 'Universidad de los Hemisferios'),
(26616, 23257, 'pt', 'name', 'Centro UniversitƔrio de Votuporanga'),
(26617, 23258, 'pt', 'name', 'Centro Universitario FIAM FAAM'),
(26618, 23259, 'en', 'name', 'Sergio Arboleda University'),
(26619, 23259, 'es', 'name', 'Universidad Sergio Arboleda'),
(26620, 23260, 'pt', 'name', 'Centro UniversitĆ”rio ƍtalo Brasileiro'),
(26621, 23261, 'es', 'name', 'Universidad Adventista de Chile'),
(26622, 23262, 'es', 'name', 'Universidad Del PacĆ­fico Ecuador'),
(26623, 23263, 'es', 'name', 'Universitaria de Investigación y Desarrollo'),
(26624, 23264, 'pt', 'name', 'Centro UniversitƔrio Paulistano'),
(26625, 23265, 'es', 'name', 'Unidades Tecnológicas de Santander'),
(26626, 23266, 'es', 'name', 'Instituto Profesional Valle Central'),
(26627, 23267, 'es', 'name', 'Universidad Estatal del Sur de Manabi'),
(26628, 23268, 'es', 'name', 'Instituto Profesional Diego Portales'),
(26629, 23269, 'es', 'name', 'Instituto TƩcnico Agrƭcola'),
(26630, 23270, 'pt', 'name', 'Centro UniversitĆ”rio Sant’Anna'),
(26631, 23271, 'es', 'name', 'Instituto Profesional Ipg'),
(26632, 23272, 'es', 'name', 'Corporación Escuela Superior de Administración y Estudios Tecnológicos'),
(26633, 23273, 'es', 'name', 'Universidad Nacional de Loja'),
(26634, 23274, 'es', 'name', 'Instituto Profesional Libertador de Los Andes'),
(26635, 23275, 'pt', 'name', 'Universidade Brasil'),
(26636, 23276, 'es', 'name', 'Corporación Universitaria Centro Superior'),
(26637, 23277, 'pt', 'name', 'Universidade SĆ£o Judas Tadeu'),
(26638, 23278, 'es', 'name', 'Instituto Profesional Agrario Adolfo Matthei'),
(26639, 23279, 'pt', 'name', 'Universidade SĆ£o Marcos'),
(26640, 23280, 'pt', 'name', 'Centro UniversitƔrio de Sete Lagoas'),
(26641, 23281, 'en', 'name', 'State University of Vale do AcaraĆŗ'),
(26642, 23281, 'pt', 'name', 'Universidade Estadual Vale do AcaraĆŗ'),
(26643, 23282, 'es', 'name', 'Universidad San Gregorio de Portoviejo'),
(26644, 23283, 'es', 'name', 'Fundación Academia de Dibujo Profesional'),
(26645, 23284, 'es', 'name', 'Universidad TƩcnica de Manabƭ'),
(26646, 23285, 'es', 'name', 'Institución Universitaria Antonio José Camacho'),
(26647, 23286, 'es', 'name', 'Universidad de Aconcagua'),
(26648, 23287, 'es', 'name', 'Escuela PolitƩcnica Javeriana del Ecuador'),
(26649, 23288, 'pt', 'name', 'Centro UniversitƔrio do Sul de Minas'),
(26650, 23289, 'es', 'name', 'Universidad Santiago de Cali'),
(26651, 23290, 'es', 'name', 'Instituto Profesional AlemƔn Wilhelm von Humboldt'),
(26652, 23291, 'es', 'name', 'Corporación Universitaria Rafael Nuñez'),
(26653, 23292, 'es', 'name', 'Escuela Superior Politécnica Ecológica Amazónica'),
(26654, 23293, 'pt', 'name', 'Centro UniversitƔrio de VƔrzea Grande'),
(26655, 23294, 'es', 'name', 'Instituto Profesional Carlos Casanueva'),
(26656, 23295, 'es', 'name', 'Universidad PolitƩcnica Estatal del Carchi'),
(26657, 23296, 'es', 'name', 'Corporación Universitaria Regional del Caribe'),
(26658, 23297, 'es', 'name', 'Universidad Israel'),
(26659, 23298, 'es', 'name', 'Instituto Nacional de Educación Superior Dr. Raúl Peña'),
(26660, 23299, 'es', 'name', 'Universidad Americana'),
(26661, 23300, 'pt', 'name', 'Universidade de Vassouras'),
(26662, 23300, 'en', 'name', 'University of Vassouras'),
(26663, 23301, 'no_lang_code', 'name', 'Ghana Institute of Management and Public Administration'),
(26664, 23302, 'es', 'name', 'Universidad Autónoma de Asunción'),
(26665, 23303, 'es', 'name', 'Universidad Autónoma del Paraguay'),
(26666, 23304, 'en', 'name', 'Chartered Institute of Marketing Ghana'),
(26667, 23305, 'pt', 'name', 'Universidade Vila Velha'),
(26668, 23306, 'en', 'name', 'Methodist University College Ghana'),
(26669, 23307, 'es', 'name', 'Universidad Columbia del Paraguay'),
(26670, 23308, 'fr', 'name', 'Institut Facultaire des Sciences de l''Information et de la Communication'),
(26671, 23309, 'es', 'name', 'Universidad Comunera'),
(26672, 23310, 'pt', 'name', 'Centro UniversitƔrio Geraldo Di Biase'),
(26673, 23311, 'en', 'name', 'Regent University College of Science and Technology'),
(26674, 23312, 'es', 'name', 'Universidad de la Integración de las Américas'),
(26675, 23313, 'en', 'name', 'Regional Maritime University'),
(26676, 23314, 'en', 'name', 'University College of Management Studies'),
(26677, 23315, 'es', 'name', 'Universidad del Cono Sur de las AmƩricas'),
(26678, 23316, 'en', 'name', 'Wisconsin International University College'),
(26679, 23317, 'en', 'name', 'Zenith University College'),
(26680, 23318, 'no_lang_code', 'name', 'Ghana Christian University College'),
(26681, 23319, 'fr', 'name', 'Institut SupĆ©rieur d’Informatique, Programmation et Analyse'),
(26682, 23320, 'en', 'name', 'Ghana Baptist University College'),
(26683, 23321, 'fr', 'name', 'Institut des Hautes Ɖtudes de Management'),
(26684, 23321, 'en', 'name', 'Institute for Advanced Studies in Management'),
(26685, 23322, 'en', 'name', 'University of Sierra Leone'),
(26686, 23323, 'fr', 'name', 'Institut National d''AmƩnagement et d''Urbanisme'),
(26687, 23324, 'fr', 'name', 'Institut National de Statistique et d''Economie AppliquƩe'),
(26688, 23324, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ لل؄حصاؔ ŁˆŲ§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŲ§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠ'),
(26689, 23325, 'en', 'name', 'IMM Graduate School of Marketing'),
(26690, 23326, 'fr', 'name', 'Institut SupƩrieur de Statistiques de Kinshasa'),
(26691, 23327, 'en', 'name', 'Production Management Institute of Southern Africa'),
(26692, 23328, 'en', 'name', 'Catholic University College of Ghana'),
(26693, 23329, 'en', 'name', 'Damelin'),
(26694, 23330, 'en', 'name', 'Regent Business School'),
(26695, 23331, 'en', 'name', 'Greenside Design Center College of Design'),
(26696, 23332, 'fr', 'name', 'Institut SupĆ©rieur d’Art Dramatique et d’Animation Culturelle'),
(26697, 23333, 'en', 'name', 'Regenesys Business School'),
(26698, 23334, 'fr', 'name', 'Institut SupƩrieur de l''Information et de la Communication'),
(26699, 23335, 'fr', 'name', 'Institut supƩrieur de la Magistrature'),
(26700, 23335, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للقضاؔ'),
(26701, 23336, 'fr', 'name', 'Institut SupƩrieur PƩdagogique Technique'),
(26702, 23337, 'en', 'name', 'South African College of Applied Psychology'),
(26703, 23338, 'fr', 'name', 'Institut SupƩrieur du GƩnie AppliquƩ'),
(26704, 23339, 'fr', 'name', 'Institut SupƩrieur de Technique MƩdicale'),
(26705, 23340, 'en', 'name', 'St Augustine College of South Africa'),
(26706, 23341, 'en', 'name', 'Institute For Leadership And Communication Studies'),
(26707, 23342, 'en', 'name', 'Higher National Agronomic School'),
(26708, 23342, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure Agronomique'),
(26709, 23342, 'ar', 'name', 'لمدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للفلاحة'),
(26710, 23343, 'en', 'name', 'International Institute for Higher Education in Morocco'),
(26711, 23344, 'en', 'name', 'Open Window School of Visual Communication'),
(26712, 23345, 'es', 'name', 'Universidad Real'),
(26713, 23346, 'fr', 'name', 'Institut Royal de Formation des Cadres de la Jeunesse et des Sports'),
(26714, 23346, 'ar', 'name', 'المعهد Ų§Ł„Ł…Ł„ŁƒŁŠ Ł„ŲŖŁƒŁˆŁŠŁ† Ų£Ų·Ų± Ų§Ł„Ų“ŲØŁŠŲØŲ© و Ų§Ł„Ų±ŁŠŲ§Ų¶Ų©'),
(26715, 23347, 'en', 'name', 'Milpark Education'),
(26716, 23348, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Informatique'),
(26717, 23348, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ لل؄علام Ų§Ł„Ų£Ł„ŁŠ'),
(26718, 23349, 'en', 'name', 'National School of Business and Management in Settat'),
(26719, 23349, 'fr', 'name', 'Ɖcole Nationale de Commerce et de Gestion de Settat'),
(26720, 23350, 'fr', 'name', 'UniversitƩ Catholique du Congo');
INSERT INTO `ror_settings` VALUES
(26721, 23351, 'en', 'name', 'Midrand Graduate Institute'),
(26722, 23352, 'en', 'name', 'Cranefield College'),
(26723, 23353, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes Commerciales Techniques et Informatiques'),
(26724, 23354, 'fr', 'name', 'Institut SupĆ©rieur des Sciences de l''Ɖducation de GuinĆ©e'),
(26725, 23355, 'fr', 'name', 'Ɖcole Nationale de Management et de l''Administration de la SantĆ©'),
(26726, 23356, 'fr', 'name', 'UniversitƩ GƩnƩral Lansana ContƩ'),
(26727, 23357, 'fr', 'name', 'Ɖcole Nationale de Commerce et de Gestion de Tanger'),
(26728, 23357, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للتجارة ŁˆŲ§Ł„ŲŖŲ³ŁŠŁŠŲ± بطنجة'),
(26729, 23358, 'fr', 'name', 'UniversitƩ de Cepromad'),
(26730, 23359, 'fr', 'name', 'Institut SupƩrieur International du Tourisme de Tanger'),
(26731, 23359, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠ Ł„Ł„Ų³ŁŠŲ§Ų­Ų©'),
(26732, 23360, 'en', 'name', 'National School of Built and Ground Works Engineering'),
(26733, 23361, 'en', 'name', 'Blue Nile University'),
(26734, 23361, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„ الأزرق'),
(26735, 23362, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de TĆ©touan'),
(26736, 23363, 'fr', 'name', 'UniversitƩ Libre de Kinshasa'),
(26737, 23364, 'fr', 'name', 'UniversitƩ PƩdagogique Nationale'),
(26738, 23365, 'en', 'name', 'Protestant University in Congo'),
(26739, 23365, 'fr', 'name', 'UniversitƩ Protestante au Congo'),
(26740, 23366, 'en', 'name', 'Higher National Veterinary School'),
(26741, 23366, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„ŲØŁŠŲ·Ų±Ų©'),
(26742, 23367, 'pt', 'name', 'Instituto Superior Cristão'),
(26743, 23368, 'pt', 'name', 'Instituto Superior de CiĆŖncias e Tecnologia Alberto Chipande'),
(26744, 23369, 'no_lang_code', 'name', 'West Kordofan University'),
(26745, 23369, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŗŲ±ŲØ ŁƒŲ±ŲÆŁŲ§Ł†'),
(26746, 23370, 'pt', 'name', 'Universidade Zambeze'),
(26747, 23371, 'en', 'name', 'Bel Campus Technological University'),
(26748, 23371, 'fr', 'name', 'UniversitƩ Technologique Bel Campus'),
(26749, 23372, 'fr', 'name', 'Ɖcole Polytechnique d''Architecture et d''Urbanisme'),
(26750, 23373, 'en', 'name', 'Gadarif University'),
(26751, 23373, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القضارف'),
(26752, 23374, 'fr', 'name', 'Ɖcole SupĆ©rieure AlgĆ©rienne des Affaires'),
(26753, 23375, 'fr', 'name', 'Ɖcole SupĆ©rieure de Banque'),
(26754, 23375, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للمصرفة'),
(26755, 23376, 'no_lang_code', 'name', 'Dalanj University'),
(26756, 23376, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الدلنج'),
(26757, 23377, 'fr', 'name', 'Ɖcole SupĆ©rieure de la Magistrature'),
(26758, 23377, 'ar', 'name', 'المدرســـــة Ų§Ł„Ų¹Ł„ŁŠŁ€Ł€Ł€Ł€Ł€Ų§ للقضــــاؔ'),
(26759, 23378, 'en', 'name', 'Al Fashir University'),
(26760, 23378, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الفاؓر'),
(26761, 23379, 'fr', 'name', 'Institut SupƩrieur de Commerce de Kinshasa'),
(26762, 23380, 'pt', 'name', 'Instituto Superior PolitƩcnico de Manica'),
(26763, 23381, 'en', 'name', 'University of Bakhtalruda'),
(26764, 23381, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŲ®ŲŖ الرضا'),
(26765, 23382, 'pt', 'name', 'Escola Superior de Jornalismo'),
(26766, 23383, 'en', 'name', 'National Higher School of Statistics and Applied Economy'),
(26767, 23383, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للاحصاؔ و الاقتصاد Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠ الجزائر'),
(26768, 23384, 'en', 'name', 'Sudan International University'),
(26769, 23384, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(26770, 23385, 'en', 'name', 'Open University of Sudan'),
(26771, 23385, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(26772, 23386, 'pt', 'name', 'Instituto Superior de Artes e Cultura'),
(26773, 23387, 'fr', 'name', 'Institut National de la Poste et des Technologies de l''Information et de la Communication'),
(26774, 23387, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŲØŲ±ŁŠŲÆ ŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ŲŖ ال؄علام ŁˆŲ§Ł„Ų§ŲŖŲµŲ§Ł„'),
(26775, 23388, 'pt', 'name', 'Instituto Superior de Ciencias de Saude'),
(26776, 23389, 'pt', 'name', 'Instituto Superior de Ciências e Tecnologia de Moçambique'),
(26777, 23390, 'en', 'name', 'International University of Africa'),
(26778, 23390, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų„ŁŲ±ŁŠŁ‚ŁŠŲ§ Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(26779, 23391, 'pt', 'name', 'Instituto Superior de Comunicação e Imagem de Moçambique'),
(26780, 23392, 'fr', 'name', 'Institut SupƩrieur Agronomique et VƩtƩrinaire ValƩry Giscard d''Estaing'),
(26781, 23393, 'en', 'name', 'Khartoum International Institute for Arabic Languague'),
(26782, 23393, 'ar', 'name', 'معهد Ų§Ł„Ų®Ų±Ų·ŁˆŁ… Ų§Ł„ŲÆŁˆŁ„ŁŠ للغة Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(26783, 23394, 'en', 'name', 'Julius Nyerere University of Kankan'),
(26784, 23394, 'fr', 'name', 'UniversitƩ Julius Nyerere de Kankan'),
(26785, 23395, 'no_lang_code', 'name', 'Alzaiem Alazhari University'),
(26786, 23395, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ų¹ŁŠŁ… Ų§Ł„Ų£Ų²Ł‡Ų±ŁŠ'),
(26787, 23396, 'en', 'name', 'University of El Imam El Mahdi'),
(26788, 23396, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الامام Ų§Ł„Ł…Ł‡ŲÆŁŠ'),
(26789, 23397, 'fr', 'name', 'UniversitƩ Protestante de Lubumbashi'),
(26790, 23398, 'en', 'name', 'University of Nyala'),
(26791, 23398, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†ŁŠŲ§Ł„Ų§'),
(26792, 23399, 'fr', 'name', 'Centre Universitaire de LabƩ'),
(26793, 23400, 'fr', 'name', 'Institut SupƩrieur de Statistique de Lubumbashi'),
(26794, 23401, 'en', 'name', 'Ahfad University for Women'),
(26795, 23401, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأحفاد للبنات'),
(26796, 23402, 'pt', 'name', 'Instituto Superior de Transportes e ComunicaƧƵe'),
(26797, 23403, 'en', 'name', 'University of Boumerdes'),
(26798, 23403, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł…Ų­Ł…ŲÆ بوڤرة ŲØŁˆŁ…Ų±ŲÆŲ§Ų³'),
(26799, 23404, 'fr', 'name', 'Institut Universitaire du Congo'),
(26800, 23405, 'no_lang_code', 'name', 'Omdurman Ahlia University'),
(26801, 23405, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أم درمان Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(26802, 23406, 'en', 'name', 'Omdurman Islamic University'),
(26803, 23406, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أم درمان Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(26804, 23407, 'fr', 'name', 'UniversitƩ Libre de Luozi'),
(26805, 23408, 'en', 'name', 'Red Sea University'),
(26806, 23408, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© البحر الأحمر'),
(26807, 23409, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Constantine'),
(26808, 23410, 'en', 'name', 'Emir Abdelkader University of Islamic Sciences'),
(26809, 23410, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± Ų¹ŲØŲÆ القادر'),
(26810, 23411, 'en', 'name', 'Ziane Achour University of Djelfa'),
(26811, 23411, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų²ŁŠŲ§Ł† عاؓور-الجلفة'),
(26812, 23412, 'pt', 'name', 'Universidade Jean Piaget de MoƧambique'),
(26813, 23413, 'en', 'name', 'Kongo University'),
(26814, 23413, 'fr', 'name', 'UniversitƩ Kongo'),
(26815, 23414, 'en', 'name', 'University of Zalingei'),
(26816, 23414, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų²Ų§Ł„Ł†Ų¬ŁŠ'),
(26817, 23415, 'en', 'name', 'Mount Meru University'),
(26818, 23416, 'sw', 'name', 'Chuo Kikuu cha Arusha'),
(26819, 23416, 'en', 'name', 'University of Arusha'),
(26820, 23417, 'en', 'name', 'University of Mbuji Mayi'),
(26821, 23418, 'en', 'name', 'Pedagogical University'),
(26822, 23418, 'pt', 'name', 'Universidade Pedagógica'),
(26823, 23419, 'pt', 'name', 'Universidade São TomÔs de Moçambique'),
(26824, 23420, 'pt', 'name', 'Universidade TƩcnica de MoƧambique'),
(26825, 23421, 'sw', 'name', 'Chuo Kikuu cha Kumbukumbu cha Hubert Kairuki'),
(26826, 23421, 'en', 'name', 'Hubert Kairuki Memorial University'),
(26827, 23422, 'en', 'name', 'International Medical and Technological University'),
(26828, 23423, 'fr', 'name', 'UniversitƩ Djilali Bounaama Khemis Miliana'),
(26829, 23423, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ„Ų§Ł„ŁŠ ŲØŁˆŁ†Ų¹Ų§Ł…Ų© Ų®Ł…ŁŠŲ³ Ł…Ł„ŁŠŲ§Ł†Ų©'),
(26830, 23424, 'sw', 'name', 'Chuo Kikuu cha Mtakatifu Yohana Tanzania'),
(26831, 23424, 'en', 'name', 'St. John''s University of Tanzania'),
(26832, 23425, 'en', 'name', 'Akhbar El Yom Academy'),
(26833, 23425, 'ar', 'name', 'Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ų®ŲØŲ§Ų± Ų§Ł„ŁŠŁˆŁ…'),
(26834, 23426, 'pt', 'name', 'Instituto Superior PolitƩcnico de Songo'),
(26835, 23427, 'pt', 'name', 'Instituto Superior Politecnico de Tete'),
(26836, 23428, 'en', 'name', 'Ahram Canadian University'),
(26837, 23428, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأهرام Ų§Ł„ŁƒŁ†ŲÆŁŠŲ©'),
(26838, 23429, 'en', 'name', 'El Shorouk Academy'),
(26839, 23430, 'sw', 'name', 'Chuo Kikuu cha Mzumbe'),
(26840, 23430, 'en', 'name', 'Mzumbe University'),
(26841, 23431, 'pt', 'name', 'Universidade Colinas de BoƩ'),
(26842, 23432, 'en', 'name', 'University of Eastern Africa, Baraton'),
(26843, 23433, 'fr', 'name', 'Ɖcole Africaine de la MĆ©tĆ©orologie et de l''Aviation Civile'),
(26844, 23434, 'en', 'name', 'Higher Institute of Mining, Industry and Geology'),
(26845, 23434, 'fr', 'name', 'Ɖcole des Mines, de l''Industrie et de la GĆ©ologie'),
(26846, 23435, 'en', 'name', 'High Institute for Management Sciences'),
(26847, 23435, 'ar', 'name', 'المعهد العالى Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ© ŲØŲ§Ł„Ł‚Ų·Ų§Ł…ŁŠŲ©'),
(26848, 23436, 'en', 'name', 'St. Paul''s University'),
(26849, 23437, 'fr', 'name', 'Ɖcole Nationale d''Administration et de Magistrature'),
(26850, 23438, 'en', 'name', 'October High Institute For Enginnering and Technology'),
(26851, 23438, 'ar', 'name', 'معهد أكتوبر Ų§Ł„Ų¹Ų§Ł„ŁŠ للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(26852, 23439, 'en', 'name', 'University Yahia Fares of Medea'),
(26853, 23439, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© يحي فارس ŲØŲ§Ł„Ł…ŲÆŁŠŲ©'),
(26854, 23440, 'en', 'name', 'Kenya Methodist University'),
(26855, 23441, 'en', 'name', 'Crescent University'),
(26856, 23442, 'en', 'name', 'Africa Nazarene University'),
(26857, 23443, 'en', 'name', 'University of Kara'),
(26858, 23443, 'fr', 'name', 'UniversitƩ de Kara'),
(26859, 23444, 'en', 'name', 'Kiriri Women''s University of Science and Technology'),
(26860, 23445, 'en', 'name', 'African Institute of Science and Technology'),
(26861, 23446, 'fr', 'name', 'Ɖcole Africaine des MĆ©tiers de l''Architecture et de l''Urbanisme'),
(26862, 23447, 'fr', 'name', 'Ɖcole Nationale d''Administration'),
(26863, 23448, 'en', 'name', 'Caritas University'),
(26864, 23449, 'en', 'name', 'United States International University Africa'),
(26865, 23450, 'fr', 'name', 'UniversitƩ des Sciences et de la Technologie d''Oran Mohamed Boudiaf'),
(26866, 23451, 'no_lang_code', 'name', 'African Methodist Episcopal University'),
(26867, 23452, 'en', 'name', 'Auchi Polytechnic'),
(26868, 23453, 'en', 'name', 'Cuttington University'),
(26869, 23454, 'en', 'name', 'Benson Idahosa University'),
(26870, 23455, 'en', 'name', 'University of Jendouba'),
(26871, 23455, 'fr', 'name', 'UniversitƩ de jendouba'),
(26872, 23455, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł†ŲÆŁˆŲØŲ©'),
(26873, 23456, 'en', 'name', 'Igbinedion University'),
(26874, 23457, 'no_lang_code', 'name', 'Federal Polytechnic Nekede'),
(26875, 23458, 'en', 'name', 'University of Ouargla'),
(26876, 23458, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‚Ų§ŲµŲÆŁŠ Ł…Ų±ŲØŲ§Ų­'),
(26877, 23459, 'en', 'name', 'Plateau State University'),
(26878, 23460, 'en', 'name', 'University of Kairouan'),
(26879, 23460, 'fr', 'name', 'UniversitƩ de kairouan'),
(26880, 23460, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚ŁŠŲ±ŁˆŲ§Ł†'),
(26881, 23461, 'en', 'name', 'Yobe State University'),
(26882, 23462, 'no_lang_code', 'name', 'University of Skikda'),
(26883, 23462, 'fr', 'name', 'UniversitƩ of 20 aoƻt 1955 of Skikda'),
(26884, 23463, 'en', 'name', 'Enugu State University of Science and Technology'),
(26885, 23464, 'en', 'name', 'International Academy for Engineering and Media Science'),
(26886, 23464, 'ar', 'name', 'Ų§Ł„Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© للهندسة ŁˆŲ¹Ł„ŁˆŁ… الاعلام'),
(26887, 23465, 'en', 'name', 'Renaissance University'),
(26888, 23466, 'en', 'name', 'University of Mkar'),
(26889, 23467, 'fr', 'name', 'UniversitƩ PrivƩe du Sud'),
(26890, 23468, 'en', 'name', 'Ajayi Crowther University'),
(26891, 23469, 'en', 'name', 'Lead City University'),
(26892, 23470, 'fr', 'name', 'Institut des Hautes Ɖtudes de Tunis'),
(26893, 23470, 'en', 'name', 'Institute of Advanced Studies of Tunis'),
(26894, 23471, 'fr', 'name', 'Time UniversitƩ'),
(26895, 23472, 'fr', 'name', 'UniversitƩ Larbi TƩbessi'),
(26896, 23473, 'fr', 'name', 'UniversitƩ Arabe des Sciences'),
(26897, 23474, 'fr', 'name', 'UniversitƩ Centrale de Tunis'),
(26898, 23474, 'ar', 'name', 'الجامعة Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠŲ© الخاصة'),
(26899, 23475, 'en', 'name', 'Redeemer''s University'),
(26900, 23476, 'en', 'name', 'Joseph Ayo Babalola University'),
(26901, 23477, 'fr', 'name', 'Ɖcole SupĆ©rieure des Ɖtudes Administratives et Commerciales'),
(26902, 23478, 'pt', 'name', 'Instituto Superior de Ciencias Sociais e RelaƧƵes Internacionais'),
(26903, 23479, 'en', 'name', 'Sebha University'),
(26904, 23479, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سبها'),
(26905, 23480, 'pt', 'name', 'Agostinho Neto University'),
(26906, 23481, 'en', 'name', 'Catholic University of Angola'),
(26907, 23481, 'pt', 'name', 'Universidade Católica de Angola'),
(26908, 23482, 'en', 'name', 'Higher Knowledge Institute of Languages ​​and Translation'),
(26909, 23483, 'en', 'name', 'Egyptian Institute of Alexandria Academy for Administration & Accounting'),
(26910, 23483, 'ar', 'name', 'المعهد Ų§Ł„Ł…ŲµŲ±ŁŠ Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ© لل؄دارة ŁˆŲ§Ł„Ł…Ų­Ų§Ų³ŲØŲ©'),
(26911, 23484, 'pt', 'name', 'Universidade Gregório Semedo'),
(26912, 23485, 'pt', 'name', 'Universidade Independente de Angola'),
(26913, 23486, 'en', 'name', 'Methodist University of Angola'),
(26914, 23486, 'pt', 'name', 'Universidade Metodista de Angola'),
(26915, 23487, 'pt', 'name', 'Universidade Ɠscar Ribas'),
(26916, 23488, 'fr', 'name', 'Hautes Ɖtudes ChrĆ©tiennes de Management et de MathĆ©matiques AppliquĆ©es'),
(26917, 23489, 'en', 'name', 'Private University of Angola'),
(26918, 23489, 'pt', 'name', 'Universidade Privada de Angola'),
(26919, 23490, 'en', 'name', 'Technical University of Angola'),
(26920, 23490, 'pt', 'name', 'Universidade TƩcnica de Angola'),
(26921, 23491, 'fr', 'name', 'Institut National des Sciences Comptables et de l’Administration d’Entreprises'),
(26922, 23492, 'en', 'name', 'Catholic University of Madagascar'),
(26923, 23492, 'mg', 'name', 'Oniversite Katolika eto Madagasikara'),
(26924, 23492, 'fr', 'name', 'UniversitƩ Catholique de Madagascar'),
(26925, 23493, 'fr', 'name', 'Institut SupƩrieur de la Communication, des Affaires et du Management'),
(26926, 23494, 'fr', 'name', 'UniversitĆ© d’Antsiranana'),
(26927, 23495, 'fr', 'name', 'UniversitƩ de Mahajanga'),
(26928, 23496, 'mg', 'name', 'Oniversite Toamasina'),
(26929, 23496, 'en', 'name', 'University of Toamasina'),
(26930, 23496, 'fr', 'name', 'UniversitƩ de Toamasina'),
(26931, 23497, 'en', 'name', 'Kwara State Polytechnic'),
(26932, 23498, 'fr', 'name', 'UniversitƩ Internationale de Tunis'),
(26933, 23498, 'ar', 'name', 'الجامعة Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„ŲŖŁˆŁ†Ų³'),
(26934, 23499, 'en', 'name', 'Health International Private University'),
(26935, 23500, 'en', 'name', 'Tunisia Private University'),
(26936, 23500, 'fr', 'name', 'UniversitƩ libre de tunis'),
(26937, 23501, 'en', 'name', 'Higher Institute for Tourism, Hotels and Computer'),
(26938, 23501, 'ar', 'name', 'المعهد العالى Ł„Ł„Ų³ŁŠŲ§Ų­Ų© ŁˆŲ§Ł„ŁŁ†Ų§ŲÆŁ‚ ŁˆŲ§Ł„Ų­Ų§Ų³ŲØ الآلى - Ų§Ł„Ų³ŁŠŁˆŁ / Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(26939, 23502, 'fr', 'name', 'UniversitƩ Montplaisir Tunis'),
(26940, 23503, 'en', 'name', 'Pharos University in Alexandria'),
(26941, 23503, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© فاروس ŲØŲ§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(26942, 23504, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Nouakchott'),
(26943, 23505, 'fr', 'name', 'Haute Ɖcole de Commerce et de Management'),
(26944, 23506, 'en', 'name', 'Kaduna Polytechnic'),
(26945, 23507, 'en', 'name', 'Kaduna State University'),
(26946, 23508, 'en', 'name', 'High-Tech Rabat-Agdal'),
(26947, 23509, 'en', 'name', 'Mediterranean School of Business'),
(26948, 23509, 'ar', 'name', 'المدرسة Ų§Ł„Ł…ŲŖŁˆŲ³Ų·ŁŠŲ© للأعمال'),
(26949, 23510, 'fr', 'name', 'UniversitƩ Ibn Khaldoun'),
(26950, 23510, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ؄بن Ų®Ł„ŲÆŁˆŁ† الخاصّة'),
(26951, 23511, 'en', 'name', 'Umaru Musa Yar''adua University'),
(26952, 23512, 'en', 'name', 'Higher Institute of Social Service'),
(26953, 23513, 'en', 'name', 'Virtual University of Tunis'),
(26954, 23513, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³ Ų§Ł„Ų§ŁŲŖŲ±Ų§Ų¶ŁŠŲ©'),
(26955, 23514, 'en', 'name', 'National Open University of Nigeria'),
(26956, 23515, 'en', 'name', 'Pan-Atlantic University'),
(26957, 23516, 'en', 'name', 'Mountains of the Moon University'),
(26958, 23517, 'en', 'name', 'Ibrahim Badamasi Babangida University'),
(26959, 23518, 'en', 'name', 'Nahda University'),
(26960, 23518, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© النهضة'),
(26961, 23519, 'en', 'name', 'Busoga University'),
(26962, 23520, 'en', 'name', 'Mauritius Institute of Education'),
(26963, 23521, 'en', 'name', 'Salem University'),
(26964, 23522, 'en', 'name', 'Bugema University'),
(26965, 23523, 'fr', 'name', 'Universiapolis - UniversitƩ Internationale d''Agadir'),
(26966, 23524, 'en', 'name', 'Federal University of Technology Minna'),
(26967, 23525, 'en', 'name', 'Adamawa State University'),
(26968, 23526, 'en', 'name', 'Clarke International University'),
(26969, 23527, 'en', 'name', 'Kampala University'),
(26970, 23528, 'en', 'name', 'Bingham University'),
(26971, 23529, 'en', 'name', 'Western Delta University'),
(26972, 23530, 'en', 'name', 'Uganda Management Institute'),
(26973, 23531, 'en', 'name', 'Wesley University'),
(26974, 23532, 'fr', 'name', 'Pigier BƩnin'),
(26975, 23533, 'en', 'name', 'Fountain University'),
(26976, 23534, 'fr', 'name', 'Ɖcole SupĆ©rieure de Gestion'),
(26977, 23535, 'fr', 'name', 'AcadƩmie internationale mohammed vi de l''aviation civile'),
(26978, 23535, 'en', 'name', 'International Academy Mohammed VI of Civil Aviation'),
(26979, 23535, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ł…Ų­Ł…ŲÆ السادس Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„Ų·ŁŠŲ±Ų§Ł† Ų§Ł„Ł…ŲÆŁ†ŁŠ'),
(26980, 23536, 'en', 'name', 'University of Science and Technology of Benin'),
(26981, 23536, 'fr', 'name', 'UniversitƩ des Sciences et Technologies du BƩnin'),
(26982, 23537, 'en', 'name', 'Bells University of Technology'),
(26983, 23538, 'no_lang_code', 'name', 'Mulungushi University'),
(26984, 23539, 'fr', 'name', 'UniversitƩ Protestante d''Afrique de l''Ouest'),
(26985, 23540, 'en', 'name', 'Michael Okpara University of Agriculture'),
(26986, 23541, 'en', 'name', 'Tansian University'),
(26987, 23542, 'en', 'name', 'Copperbelt University'),
(26988, 23543, 'en', 'name', 'Arab Open University'),
(26989, 23543, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(26990, 23544, 'en', 'name', 'Copperstone University'),
(26991, 23545, 'fr', 'name', 'UniversitƩ Ouaga II'),
(26992, 23546, 'fr', 'name', 'Institut SupƩrieur de Gestion des Entreprises'),
(26993, 23547, 'en', 'name', 'Akwa Ibom State University'),
(26994, 23548, 'fr', 'name', 'UniversitƩ des Grands Lacs'),
(26995, 23549, 'fr', 'name', 'UniversitƩ du Lac Tanganyika'),
(26996, 23550, 'en', 'name', 'Light University of Bujumbur'),
(26997, 23550, 'fr', 'name', 'Université lLumière de Bujumbura'),
(26998, 23551, 'en', 'name', 'DMI St. Eugene University'),
(26999, 23552, 'en', 'name', 'University of Ngozi'),
(27000, 23552, 'fr', 'name', 'UniversitƩ de Ngozi'),
(27001, 23553, 'en', 'name', 'University College of Technology'),
(27002, 23554, 'en', 'name', 'Cairo Higher Institute'),
(27003, 23555, 'no_lang_code', 'name', 'National Institute of Public Administration'),
(27004, 23556, 'en', 'name', 'University of Africa'),
(27005, 23557, 'no_lang_code', 'name', 'University of Lusaka'),
(27006, 23558, 'en', 'name', 'Zambia Centre for Accountancy Studies'),
(27007, 23559, 'en', 'name', 'Egyptian Russian University'),
(27008, 23559, 'ar', 'name', 'الجامعة Ų§Ł„Ų±ŁˆŲ³ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(27009, 23560, 'en', 'name', 'Higher Institute of Applied Arts'),
(27010, 23560, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„ŁŁ†ŁˆŁ† Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(27011, 23561, 'en', 'name', 'Zambian Open University'),
(27012, 23562, 'en', 'name', 'Kwararafa University'),
(27013, 23563, 'no_lang_code', 'name', 'Rusangu University'),
(27014, 23564, 'en', 'name', 'Higher Institute for Cooperative and Administrative Studies'),
(27015, 23565, 'en', 'name', 'Niger Delta University'),
(27016, 23566, 'en', 'name', 'Northrise University'),
(27017, 23567, 'en', 'name', 'American University of Nigeria'),
(27018, 23568, 'en', 'name', 'High Institute of Management and Entrepreneurship'),
(27019, 23568, 'fr', 'name', 'Institut de Management et de l'' Entrepreunariat'),
(27020, 23569, 'en', 'name', 'Niger State Polytechnic'),
(27021, 23570, 'fr', 'name', 'Institut SupƩrieur PƩdagogique de Gitwe'),
(27022, 23571, 'en', 'name', 'Thebes Academy'),
(27023, 23571, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų·ŁŠŲØŁ‡'),
(27024, 23572, 'fr', 'name', 'Institut Universitaire de la CƓte'),
(27025, 23573, 'en', 'name', 'Adventist University Cosendai'),
(27026, 23573, 'fr', 'name', 'UniversitƩ Adventiste Cosendai'),
(27027, 23574, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes de Biotechnologie et de SantĆ©'),
(27028, 23575, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes en IngĆ©nierie des SystĆØmes d''Information'),
(27029, 23576, 'en', 'name', 'Modern Academy'),
(27030, 23577, 'en', 'name', 'National Telecommunications Institute'),
(27031, 23577, 'ar', 'name', 'المعهد Ų§Ł„Ł‚ŁˆŁ…Ł‰ للاتصالات'),
(27032, 23578, 'fr', 'name', 'Ɖcole Nationale d''Administration et de Magistrature'),
(27033, 23579, 'en', 'name', 'Sadat Academy for Management Sciences'),
(27034, 23579, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© السادات Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ©'),
(27035, 23580, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes Ɖconomiques et Commerciales'),
(27036, 23581, 'en', 'name', 'Sinai University'),
(27037, 23581, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³ŁŠŁ†Ų§Ų”'),
(27038, 23582, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure - Marrakech'),
(27039, 23583, 'en', 'name', 'Tabbin Institute for Metallurgical Studies'),
(27040, 23583, 'ar', 'name', 'معهد Ų§Ł„ŲŖŲØŁŠŁ† للدراسات Ų§Ł„Ł…Ų¹ŲÆŁ†ŁŠŲ©'),
(27041, 23584, 'fr', 'name', 'Ɖcole Royale de l''Air de Marrakech'),
(27042, 23584, 'ar', 'name', 'المدرسة Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ų§Ł„Ų¬ŁˆŁŠŲ©'),
(27043, 23585, 'fr', 'name', 'Institut Panafricain pour le DƩveloppement Afrique Centrale'),
(27044, 23586, 'en', 'name', 'Adventist University of Central Africa'),
(27045, 23586, 'fr', 'name', 'Universite Adventiste d''Afrique Central'),
(27046, 23587, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Informatique AppliquĆ©e Ć  la Gestion'),
(27047, 23588, 'fr', 'name', 'Sup de Co Marrakech'),
(27048, 23589, 'en', 'name', 'Kigali Independent University'),
(27049, 23589, 'fr', 'name', 'UniversitƩ libre de kigali'),
(27050, 23590, 'fr', 'name', 'Ɖcole Marocaine des Sciences de l''IngĆ©nieur'),
(27051, 23590, 'ar', 'name', 'المدرسة Ų§Ł„Ł…ŲŗŲ±ŲØŁŠŲ© Ł„Ų¹Ł„ŁˆŁ… الهندسة'),
(27052, 23591, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure Casablanca'),
(27053, 23592, 'fr', 'name', 'Ɖcole SupĆ©rieure de Management AppliquĆ©'),
(27054, 23593, 'en', 'name', 'Higher Institute of Engineering'),
(27055, 23593, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للهندسة'),
(27056, 23594, 'en', 'name', 'National Advanced School of Public Works'),
(27057, 23594, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Travaux Publics'),
(27058, 23595, 'fr', 'name', 'Institut International des Assurances'),
(27059, 23596, 'fr', 'name', 'Institut National de la Jeunesse et des Sports'),
(27060, 23597, 'fr', 'name', 'Ɖcole SupĆ©rieure des Sciences de l''IngĆ©nierie Commerciale'),
(27061, 23598, 'fr', 'name', 'Centre Africain d''Ɖtudes SupĆ©rieures en Gestion'),
(27062, 23599, 'fr', 'name', 'Institut Universitaire Siantou'),
(27063, 23600, 'en', 'name', 'Academy of Arts'),
(27064, 23600, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„ŁŁ†ŁˆŁ†ā€Ž'),
(27065, 23601, 'fr', 'name', 'Ɖcole Inter-Ɖtats des Sciences et MĆ©decine VĆ©tĆ©rinaires de Dakar'),
(27066, 23602, 'fr', 'name', 'Institut Sous-RƩgional de Statistique et d''Economie AppliquƩe'),
(27067, 23603, 'fr', 'name', 'UniversitƩ Protestante d''Afrique Centrale'),
(27068, 23604, 'fr', 'name', 'Ɖcole Nationale d''Administration'),
(27069, 23605, 'pt', 'name', 'Universidade de Cabo Verde'),
(27070, 23605, 'en', 'name', 'University of Cape Verde'),
(27071, 23606, 'fr', 'name', 'Groupe Ɖcole SupĆ©rieure de Commerce de Dakar'),
(27072, 23607, 'en', 'name', 'October University of Modern Sciences and Arts'),
(27073, 23607, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أكتوبر Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų­ŲÆŁŠŲ«Ų© ŁˆŲ§Ł„Ų¢ŲÆŲ§ŲØ'),
(27074, 23608, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de l''Enseignement Technique de Mohammedia'),
(27075, 23609, 'fr', 'name', 'UniversitƩ du Sahel'),
(27076, 23610, 'pt', 'name', 'Instituto Superior de Ciências Económicas e Empresariais'),
(27077, 23611, 'en', 'name', 'Egyptian Aviation Academy'),
(27078, 23611, 'ar', 'name', 'Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŁŠŲ±Ų§Ł†'),
(27079, 23612, 'fr', 'name', 'Ɖcole Royale Navale'),
(27080, 23613, 'fr', 'name', 'Ɖcole d''Architecture de Casablanca'),
(27081, 23614, 'fr', 'name', 'Institut des Hautes Ɖtudes Bancaires et FinanciĆØres'),
(27082, 23615, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Informatique AppliquĆ©e'),
(27083, 23616, 'fr', 'name', 'Université du Sine Saloum El-Hâdj Ibrahima NIASS'),
(27084, 23617, 'fr', 'name', 'Institut International des Sciences et de Technologie'),
(27085, 23618, 'fr', 'name', 'Ɖcole SupĆ©rieure de Communication et de PublicitĆ©'),
(27086, 23619, 'en', 'name', 'Pharaohs Higher Institute of Computer Information Systems and Management'),
(27087, 23619, 'ar', 'name', 'معهد الفراعنة العالى للحاسب الألى ŁˆŁ†ŲøŁ… Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ ŁˆŲ§Ł„Ų„ŲÆŲ§Ų±Ų©'),
(27088, 23620, 'fr', 'name', 'Ɖcole SupĆ©rieure de Design et des Arts Visuels'),
(27089, 23621, 'fr', 'name', 'Ɖcole SupĆ©rieure Multinationale des TĆ©lĆ©communications'),
(27090, 23622, 'fr', 'name', 'Ɖtablissement Dar El Hadith El Hassania'),
(27091, 23622, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© ŲÆŲ§Ų± Ų§Ł„Ų­ŲÆŁŠŲ« Ų§Ł„Ų­Ų³Ł†ŁŠŲ©'),
(27092, 23623, 'fr', 'name', 'Ecole SupĆ©rieure d’Economie AppliquĆ©e'),
(27093, 23624, 'fr', 'name', 'Ɖcole SupĆ©rieure de Management'),
(27094, 23625, 'en', 'name', 'Jean Piaget University of Cape Verde'),
(27095, 23625, 'pt', 'name', 'Universidade Jean Piaget de Cabo Verde'),
(27096, 23626, 'fr', 'name', 'Ɖcole SupĆ©rieure de Psychologie'),
(27097, 23627, 'en', 'name', 'Gaston Berger University'),
(27098, 23627, 'fr', 'name', 'UniversitƩ Gaston Berger'),
(27099, 23628, 'fr', 'name', 'Ɖcole SupĆ©rieure des MultimĆ©dia, Informatique & RĆ©seaux'),
(27100, 23629, 'fr', 'name', 'Ɖcole SupĆ©rieure Internationale de Gestion'),
(27101, 23630, 'fr', 'name', 'Institut des Hautes Ɖtudes Bancaires, FinanciĆØres et ManagĆ©riale'),
(27102, 23631, 'fr', 'name', 'Ɖcole des Sciences de I''information'),
(27103, 23631, 'ar', 'name', 'Ł…ŲÆŲ±Ų³Ų© Ų¹Ł„ŁˆŁ… Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ'),
(27104, 23632, 'fr', 'name', 'UniversitƩ Adam Barka d''AbƩchƩ'),
(27105, 23633, 'fr', 'name', 'Ɖcole Marocaine de Banque et de Commerce International'),
(27106, 23634, 'fr', 'name', 'UniversitƩ de Moundou'),
(27107, 23635, 'fr', 'name', 'Institut SupƩrieur d''Etudes Sociales'),
(27108, 23636, 'en', 'name', 'Canadian International College'),
(27109, 23636, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁ†ŲÆŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(27110, 23637, 'fr', 'name', 'Groupe Institut des Hautes Ɖtudes Ɖconomiques et Sociales'),
(27111, 23638, 'fr', 'name', 'Institut Marocain de Management'),
(27112, 23639, 'en', 'name', 'Arab Studies and Research Institute'),
(27113, 23639, 'ar', 'name', 'معهد Ų§Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(27114, 23640, 'en', 'name', 'Social Work Institute in Cairo'),
(27115, 23641, 'fr', 'name', 'Institut SupĆ©rieur d’Electronique et des RĆ©seaux & TĆ©lĆ©communications'),
(27116, 23642, 'fr', 'name', 'Institut SupƩrieur de Commerce et d''Administration des Entreprises'),
(27117, 23643, 'fr', 'name', 'Institut SupƩrieur de comptabilitƩ Audit et Finance'),
(27118, 23644, 'fr', 'name', 'Institut SupƩrieur de Formation en Technologie Alimentaire'),
(27119, 23645, 'fr', 'name', 'Institut SupƩrieur de Gestion'),
(27120, 23646, 'fr', 'name', 'Institut SupĆ©rieur d''Ɖtudes Maritimes'),
(27121, 23646, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲØŲ­Ų±ŁŠŲ©'),
(27122, 23647, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Informatique et de Management des Affaires'),
(27123, 23648, 'fr', 'name', 'UniversitƩ libre des Pays des Grands Lacs'),
(27124, 23649, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de l''Administration'),
(27125, 23649, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ لل؄دارة'),
(27126, 23650, 'fr', 'name', 'Ecole Nationale d''Architecture'),
(27127, 23650, 'en', 'name', 'National School of Architecture'),
(27128, 23650, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للهندسة Ų§Ł„Ł…Ų¹Ł…Ų§Ų±ŁŠŲ©'),
(27129, 23651, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes Commerciales'),
(27130, 23652, 'en', 'name', 'Sinai Higher Institute for Tourism and Hotels'),
(27131, 23652, 'ar', 'name', 'المعهد المصرى العالى Ł„Ł„Ų³ŁŠŲ§Ų­Ų© ŁˆŲ§Ł„ŁŁ†Ų§ŲÆŁ‚'),
(27132, 23653, 'fr', 'name', 'Ɖcole Polyvalente SupĆ©rieure d''Informatique et d''Ɖlectronique'),
(27133, 23654, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Architecture d''IntĆ©rieur'),
(27134, 23655, 'en', 'name', 'Sup Management'),
(27135, 23655, 'ar', 'name', 'سيب مناجمنت'),
(27136, 23656, 'fr', 'name', 'Ɖcole SupĆ©rieure de Gestion et des Sciences de l''Informatique'),
(27137, 23657, 'fr', 'name', 'Ɖcole SupĆ©rieure des TĆ©lĆ©communications'),
(27138, 23658, 'en', 'name', 'Marien Ngouabi University'),
(27139, 23658, 'fr', 'name', 'UniversitƩ Marien Ngouabi'),
(27140, 23659, 'fr', 'name', 'Ɖcole SupĆ©rieure Vinci'),
(27141, 23660, 'fr', 'name', 'UniversitƩ EvangƩlique en Afrique'),
(27142, 23661, 'fr', 'name', 'UniversitƩ Officielle de Bukavu'),
(27143, 23662, 'fr', 'name', 'AcadƩmie des Beaux-Arts'),
(27144, 23663, 'fr', 'name', 'UniversitƩ Catholique du Graben'),
(27145, 23664, 'en', 'name', 'Sindh Agriculture University'),
(27146, 23664, 'sd', 'name', 'Ų³Ł†ŚŒ زرعي ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ Ł½Ł†ŚŠŁˆ ڄام'),
(27147, 23665, 'fr', 'name', 'Ɖcole d''Informatique, d''Ɖlectronique et d''Expertise Comptable'),
(27148, 23666, 'en', 'name', 'National University of Equatorial Guinea'),
(27149, 23666, 'es', 'name', 'Universidad Nacional de Guinea Ecuatorial'),
(27150, 23667, 'en', 'name', 'Ethiopian Civil Service University'),
(27151, 23667, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆ²į‰Ŗįˆ įˆ°įˆ­į‰Ŗįˆµ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(27152, 23668, 'en', 'name', 'Arba Minch University'),
(27153, 23668, 'am', 'name', 'į‹ØįŠ įˆ­į‰£ įˆįŠ•įŒ­ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(27154, 23669, 'en', 'name', 'Bahir Dar University'),
(27155, 23669, 'am', 'name', 'į‰£įˆ…įˆ­ į‹³įˆ­ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(27156, 23670, 'en', 'name', 'Unity University College'),
(27157, 23670, 'am', 'name', 'į‹©įŠ’į‰² į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(27158, 23671, 'en', 'name', 'University of Kirkuk'),
(27159, 23671, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© كركوك'),
(27160, 23672, 'en', 'name', 'Higher Institute of Computer Science and Management Technology'),
(27161, 23673, 'en', 'name', 'Badakhshan University'),
(27162, 23673, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲØŲÆŲ®Ų“Ų§Ł†ā€Ž'),
(27163, 23674, 'fr', 'name', 'Institut Africain d''Informatique'),
(27164, 23675, 'en', 'name', 'Lasbela University of Agriculture Water and Marine Science'),
(27165, 23676, 'en', 'name', 'Kabul University'),
(27166, 23676, 'fa', 'name', 'دانؓگاه کابل'),
(27167, 23677, 'en', 'name', 'Accra Institute of Technology'),
(27168, 23678, 'en', 'name', 'Central University'),
(27169, 23679, 'en', 'name', 'University of Wah'),
(27170, 23679, 'ur', 'name', 'واہ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(27171, 23680, 'en', 'name', 'Azerbaijan Technical University'),
(27172, 23680, 'az', 'name', 'Azərbaycan Texniki Universiteti'),
(27173, 23680, 'ru', 'name', 'АзербайГжанский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27174, 23681, 'en', 'name', 'Kyushu University of Nursing and Social Welfare'),
(27175, 23681, 'ja', 'name', 'ä¹å·žēœ‹č­·ē¦ē„‰å¤§å­¦'),
(27176, 23682, 'no_lang_code', 'name', 'Tenri University'),
(27177, 23682, 'ja', 'name', '天理大学'),
(27178, 23683, 'en', 'name', 'Azerbaijan State Marine Academy'),
(27179, 23683, 'az', 'name', 'Azərbaycan Dƶvlət Dəniz Akademiyası'),
(27180, 23683, 'ru', 'name', 'ŠŠ·ŠµŃ€Š±Š°Š¹Š“Š¶Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼Š¾Ń€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(27181, 23684, 'en', 'name', 'Suamandeep Vidyapeeth University'),
(27182, 23684, 'gu', 'name', 'સુમનદીપ વિધાપીઠ'),
(27183, 23685, 'en', 'name', 'Azerbaijan State Pedagogical University'),
(27184, 23685, 'az', 'name', 'Azərbaycan Dƶvlət Pedaqoji Universiteti'),
(27185, 23686, 'en', 'name', 'Central University of Tibetan Studies'),
(27186, 23687, 'en', 'name', 'Azerbaijan State University of Culture and Arts'),
(27187, 23687, 'az', 'name', 'Azərbaycan Dƶvlət Mədəniyyət və İncəsənət Universiteti'),
(27188, 23687, 'ru', 'name', 'АзербайГжанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(27189, 23688, 'en', 'name', 'Azerbaijan University of Languages'),
(27190, 23688, 'az', 'name', 'Azərbaycan Dillər Universiteti'),
(27191, 23688, 'ru', 'name', 'АзербайГжанский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ·Ń‹ŠŗŠ¾Š²'),
(27192, 23689, 'fr', 'name', 'Institut PrivƩ de Gestion Institut SupƩrieur de Technologie Industrielle'),
(27193, 23690, 'en', 'name', 'Al-Quds Open University'),
(27194, 23690, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القدس Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(27195, 23691, 'no_lang_code', 'name', 'Shikoku University'),
(27196, 23691, 'ja', 'name', '四国大学'),
(27197, 23692, 'en', 'name', 'Azerbaijan International University'),
(27198, 23693, 'no_lang_code', 'name', 'Sampurnanand Sanskrit Vishwavidyalaya'),
(27199, 23693, 'hi', 'name', 'ą¤øą¤®ą„ą¤Ŗą„‚ą¤°ą„ą¤£ą¤¾ą¤Øą¤Øą„ą¤¦ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27200, 23693, 'ta', 'name', 'ą®šą®®ąÆą®ŖąÆ‚ą®°ąÆą®£ą®¾ą®©ą®ØąÆą®¤ąÆ ą®šą®®ą®šąÆą®•ą®æą®°ąÆą®¤ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(27201, 23694, 'en', 'name', 'Azerbaijan University of Architecture and Construction'),
(27202, 23694, 'az', 'name', 'Azərbaycan Memarlıq və İnşaat Universiteti'),
(27203, 23695, 'en', 'name', 'Bunkyo University'),
(27204, 23695, 'ja', 'name', '文教大学'),
(27205, 23696, 'en', 'name', 'Azerbaijan University'),
(27206, 23696, 'az', 'name', 'Azərbaycan Universiteti'),
(27207, 23697, 'no_lang_code', 'name', 'Gakushūin School Corporation'),
(27208, 23697, 'ja', 'name', '学栔法人 学習院'),
(27209, 23698, 'en', 'name', 'Kaetsu University'),
(27210, 23698, 'ja', 'name', 'å˜‰ę‚¦å¤§å­¦'),
(27211, 23699, 'en', 'name', 'Al-Aqsa University'),
(27212, 23699, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأقصى'),
(27213, 23700, 'en', 'name', 'Keisen University'),
(27214, 23700, 'ja', 'name', 'ęµę³‰å„³å­¦åœ’å¤§å­¦'),
(27215, 23701, 'en', 'name', 'Komazawa Women''s University'),
(27216, 23701, 'ja', 'name', '駒沢儳子大学'),
(27217, 23702, 'az', 'name', 'Odlar Yurdu Universiteti'),
(27218, 23702, 'en', 'name', 'Odlar Yurdu University'),
(27219, 23703, 'no_lang_code', 'name', 'Musashino Academia Musicae'),
(27220, 23703, 'ja', 'name', 'ę­¦č”µé‡ŽéŸ³ę„½å¤§å­¦'),
(27221, 23704, 'en', 'name', 'Hebron University'),
(27222, 23704, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŁ„'),
(27223, 23705, 'az', 'name', 'Qafqaz Universiteti'),
(27224, 23705, 'en', 'name', 'Qafqaz University'),
(27225, 23706, 'no_lang_code', 'name', 'Mahatma Gandhi Antarrashtriya Hindi Vishwavidyalaya'),
(27226, 23706, 'en', 'name', 'Mahatma Gandhi International Hindi University'),
(27227, 23706, 'hi', 'name', 'ą¤®ą¤¹ą¤¾ą¤¤ą„ą¤®ą¤¾ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤…ą¤Øą„ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤¹ą¤æą¤Øą„ą¤¦ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27228, 23707, 'en', 'name', 'Western Philippines University'),
(27229, 23708, 'en', 'name', 'Angeles University Foundation'),
(27230, 23708, 'tl', 'name', 'Pundasyong Pamantasang Angeles'),
(27231, 23709, 'az', 'name', 'Qərbi Kaspi Universiteti'),
(27232, 23709, 'en', 'name', 'Western Caspian University'),
(27233, 23710, 'en', 'name', 'Holy Angel University'),
(27234, 23710, 'tl', 'name', 'Pamantasang Holy Angel'),
(27235, 23711, 'id', 'name', 'Universitas Sains dan Teknologi Jayapura'),
(27236, 23712, 'en', 'name', 'University of Negros Occidental – Recoletos'),
(27237, 23713, 'en', 'name', 'University of St. La Salle'),
(27238, 23714, 'en', 'name', 'Baguio Central University'),
(27239, 23715, 'az', 'name', 'AZʏRBAYCAN RESPUBLİKASININ PREZİDENTİ YANINDA DƖVLʏT İDARʏƇİLİK AKADEMİYASI'),
(27240, 23715, 'en', 'name', 'Academy of Public Administration'),
(27241, 23716, 'en', 'name', 'Ganja State University'),
(27242, 23716, 'az', 'name', 'Gəncə Dƶvlət Universiteti'),
(27243, 23716, 'ru', 'name', 'Š“ŃŠ½Š“Š¶ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27244, 23717, 'id', 'name', 'Universitas Darussalam Ambon'),
(27245, 23718, 'tl', 'name', 'Pamantasan ng Baguio'),
(27246, 23718, 'en', 'name', 'University of Baguio'),
(27247, 23719, 'en', 'name', 'Lankaran State University'),
(27248, 23719, 'az', 'name', 'Lənkəran Dƶvlət Universiteti'),
(27249, 23720, 'en', 'name', 'Nakhchivan State University'),
(27250, 23720, 'az', 'name', 'NaxƧıvan Dƶvlət Universiteti'),
(27251, 23720, 'ru', 'name', 'ŠŠ°Ń…ŠøŃ‡ŠµŠ²Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27252, 23721, 'id', 'name', 'Universitas Kristen Indonesia Maluku'),
(27253, 23722, 'id', 'name', 'Universitas Ratu Samban'),
(27254, 23723, 'id', 'name', 'Universitas Balikpapan'),
(27255, 23724, 'en', 'name', 'University of the Cordilleras'),
(27256, 23725, 'en', 'name', 'Baliuag University'),
(27257, 23726, 'en', 'name', 'Rissho University'),
(27258, 23726, 'ja', 'name', '立正大学'),
(27259, 23727, 'id', 'name', 'Universitas Tri Dharma'),
(27260, 23728, 'en', 'name', 'Mariano Marcos State University'),
(27261, 23728, 'tl', 'name', 'Pambansang Pamantasan ng Mariano Marcos'),
(27262, 23729, 'no_lang_code', 'name', 'Seisen University'),
(27263, 23729, 'ja', 'name', '清泉儳子大学'),
(27264, 23730, 'en', 'name', 'University of the Sacred Heart'),
(27265, 23730, 'ja', 'name', 'č–åæƒå„³å­å¤§å­¦'),
(27266, 23731, 'id', 'name', 'Universitas Abulyatama'),
(27267, 23732, 'en', 'name', 'Visayas State University'),
(27268, 23733, 'en', 'name', 'Nueva Vizcaya State University'),
(27269, 23734, 'id', 'name', 'Universitas Iskandar Muda'),
(27270, 23735, 'en', 'name', 'Saint Mary''s University'),
(27271, 23736, 'en', 'name', 'Benguet State University'),
(27272, 23737, 'en', 'name', 'Arab Open University'),
(27273, 23737, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(27274, 23738, 'en', 'name', 'Delmon University for Science & Technology'),
(27275, 23738, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ„Ł…ŁˆŁ† Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(27276, 23739, 'en', 'name', 'Kingdom University'),
(27277, 23739, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł…Ł„ŁƒŲ©'),
(27278, 23740, 'id', 'name', 'Universitas Bandar Lampung'),
(27279, 23741, 'en', 'name', 'Eastern Samar State University'),
(27280, 23742, 'en', 'name', 'Father Saturnino Urios University'),
(27281, 23742, 'tl', 'name', 'Pamantasang Padre Saturnino Urios'),
(27282, 23743, 'en', 'name', 'Wesleyan University Philippines'),
(27283, 23744, 'id', 'name', 'Universitas Malahayati'),
(27284, 23745, 'en', 'name', 'Capitol University'),
(27285, 23746, 'en', 'name', 'Pundra University of Science and Technology'),
(27286, 23746, 'bn', 'name', 'ą¦Ŗą§ą¦Øą§ą¦”ą§ą¦° ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(27287, 23747, 'en', 'name', 'BGC Trust University Bangladesh'),
(27288, 23747, 'bn', 'name', 'বিজিসি ą¦Ÿą§ą¦°ą¦¾ą¦øą§ą¦Ÿ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ বাংলাদেশ'),
(27289, 23748, 'id', 'name', 'Universitas Muhammadiyah Lampung'),
(27290, 23749, 'no_lang_code', 'name', 'Shirayuri University'),
(27291, 23749, 'ja', 'name', 'ē™½ē™¾åˆå„³å­å¤§å­¦'),
(27292, 23750, 'id', 'name', 'Universitas Saburai'),
(27293, 23751, 'en', 'name', 'Southern University'),
(27294, 23751, 'bn', 'name', 'ą¦øą¦¾ą¦°ą§ą¦¦ą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27295, 23752, 'en', 'name', 'Sugino Fashion College'),
(27296, 23752, 'ja', 'name', 'ę‰é‡Žęœé£¾å¤§å­¦'),
(27297, 23753, 'id', 'name', 'Universitas Tulang Bawang Lampung'),
(27298, 23754, 'en', 'name', 'American International University-Bangladesh'),
(27299, 23754, 'bn', 'name', 'আমেরিকান ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ-বাংলাদেশ'),
(27300, 23755, 'en', 'name', 'Taisho University'),
(27301, 23755, 'ja', 'name', '大正大学'),
(27302, 23756, 'tl', 'name', 'Pamantasan ng Lungsod ng Kalookan'),
(27303, 23756, 'en', 'name', 'University of Caloocan City'),
(27304, 23757, 'en', 'name', 'Manila Central University'),
(27305, 23758, 'en', 'name', 'Takachiho University'),
(27306, 23758, 'ja', 'name', 'é«˜åƒē©‚å¤§å­¦'),
(27307, 23759, 'en', 'name', 'Atish Dipankar University of Science and Technology'),
(27308, 23759, 'bn', 'name', 'অতীশ ą¦¦ą§€ą¦Ŗą¦™ą§ą¦•ą¦° ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(27309, 23760, 'en', 'name', 'Samar State University'),
(27310, 23761, 'en', 'name', 'Tama Art University'),
(27311, 23761, 'ja', 'name', 'å¤šę‘©ē¾Žč”“å¤§å­¦'),
(27312, 23762, 'en', 'name', 'Central Women''s University'),
(27313, 23762, 'bn', 'name', 'ą¦•ą§‡ą¦Øą§ą¦¦ą§ą¦°ą§€ą¦Æą¦¼ মহিলা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27314, 23763, 'en', 'name', 'Tokyo University of the Arts'),
(27315, 23763, 'ja', 'name', 'ę±äŗ¬čŠøč”“å¤§å­¦'),
(27316, 23764, 'en', 'name', 'Cebu Doctors'' University'),
(27317, 23765, 'en', 'name', 'Darul Ihsan University'),
(27318, 23765, 'bn', 'name', 'দারুল ইহসান ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(27319, 23766, 'en', 'name', 'Dhaka International University'),
(27320, 23766, 'bn', 'name', 'ঢাকা ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(27321, 23767, 'en', 'name', 'Southwestern University'),
(27322, 23768, 'tl', 'name', 'Pamantasan ng Cebu'),
(27323, 23768, 'en', 'name', 'University of Cebu'),
(27324, 23769, 'en', 'name', 'Eastern University'),
(27325, 23769, 'bn', 'name', 'ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(27326, 23770, 'tl', 'name', 'Pamantasan sa Bisayas'),
(27327, 23770, 'en', 'name', 'University of the Visayas'),
(27328, 23771, 'en', 'name', 'Higher Institute for Qualitative Studies'),
(27329, 23771, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„Ł†ŁˆŲ¹ŁŠŲ©'),
(27330, 23772, 'en', 'name', 'Bulacan State University'),
(27331, 23772, 'tl', 'name', 'Pamantasang Pampamahalaang Bulacan'),
(27332, 23773, 'en', 'name', 'La Consolacion University Philippines'),
(27333, 23773, 'tl', 'name', 'Pamantasang La Consolacion sa Pilipinas'),
(27334, 23774, 'en', 'name', 'Achva Academic College'),
(27335, 23774, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ אחוה'),
(27336, 23775, 'en', 'name', 'Harapan Bangsa Institute of Technology'),
(27337, 23775, 'id', 'name', 'Institut Teknologi Harapan Bangsa'),
(27338, 23776, 'en', 'name', 'Manarat International University'),
(27339, 23776, 'bn', 'name', 'মানারাত ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(27340, 23777, 'en', 'name', 'Higher Institute of Islamic Studies'),
(27341, 23777, 'ar', 'name', 'المعهد العالى للدراسات Ų§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠŲ©'),
(27342, 23778, 'en', 'name', 'Northern University Bangladesh'),
(27343, 23778, 'bn', 'name', 'ą¦Øą¦°ą§ą¦¦ą¦¾ą¦°ą§ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(27344, 23779, 'id', 'name', 'Institut Seni Budaya Indonesia Bandung'),
(27345, 23780, 'en', 'name', 'Presidency University'),
(27346, 23780, 'bn', 'name', 'ą¦Ŗą§ą¦°ą§‡ą¦øą¦æą¦”ą§‡ą¦Øą§ą¦øą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27347, 23781, 'en', 'name', 'Queens University'),
(27348, 23781, 'bn', 'name', 'ą¦•ą§ą¦‡ą¦Øą§ą¦ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27349, 23782, 'en', 'name', 'Shanto-Mariam University of Creative Technology'),
(27350, 23782, 'bn', 'name', 'ą¦¶ą¦¾ą¦Øą§ą¦¤-মরিয়ম ą¦øą§ƒą¦œą¦Øą¦¶ą§€ą¦² ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27351, 23783, 'en', 'name', 'Notre Dame University'),
(27352, 23783, 'tl', 'name', 'Pamantasang Notre Dame'),
(27353, 23784, 'en', 'name', 'Southeast University'),
(27354, 23784, 'bn', 'name', 'ą¦øą¦¾ą¦‰ą¦„ą¦‡ą¦øą§ą¦Ÿ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27355, 23785, 'en', 'name', 'Lyceum-Northwestern University'),
(27356, 23786, 'en', 'name', 'State University of Bangladesh'),
(27357, 23786, 'bn', 'name', 'ą¦øą§ą¦Ÿą§‡ą¦Ÿ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(27358, 23787, 'en', 'name', 'Tokyo College of Music'),
(27359, 23787, 'ja', 'name', 'ę±äŗ¬éŸ³ę„½å¤§å­¦'),
(27360, 23788, 'en', 'name', 'The Millennium University'),
(27361, 23788, 'bn', 'name', 'মিলেনিয়াম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27362, 23789, 'en', 'name', 'University of Luzon'),
(27363, 23790, 'en', 'name', 'People''s University of Bangladesh'),
(27364, 23790, 'bn', 'name', 'ą¦¦ą§ą¦Æ পিপলস ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(27365, 23791, 'tl', 'name', 'Pamantasan ng Pangasinan'),
(27366, 23791, 'en', 'name', 'University of Pangasinan'),
(27367, 23792, 'id', 'name', 'Universitas Al-Ghifari'),
(27368, 23793, 'tl', 'name', 'Unibersidad ng Mindanaw'),
(27369, 23793, 'en', 'name', 'University of Mindanao'),
(27370, 23794, 'tl', 'name', 'Pamantasang Imaculada Conception'),
(27371, 23794, 'en', 'name', 'University of the Immaculate Conception'),
(27372, 23795, 'no_lang_code', 'name', 'Lander Institute'),
(27373, 23796, 'en', 'name', 'Foundation University'),
(27374, 23797, 'en', 'name', 'Bezalel Academy of Arts and Design'),
(27375, 23797, 'he', 'name', 'בצלאל, אקדמיה ×œ××ž× ×•×Ŗ ועיצוב'),
(27376, 23798, 'id', 'name', 'Universitas Bale Bandung'),
(27377, 23799, 'en', 'name', 'Bandung Raya University'),
(27378, 23799, 'id', 'name', 'Universitas Bandung Raya'),
(27379, 23800, 'en', 'name', 'Negros Oriental State University'),
(27380, 23800, 'tl', 'name', 'Pamantasang Estatal ng Negros Oriental'),
(27381, 23801, 'en', 'name', 'Ueno Gakuen University'),
(27382, 23801, 'ja', 'name', 'äøŠé‡Žå­¦åœ’å¤§å­¦'),
(27383, 23802, 'en', 'name', 'University of Development Alternative'),
(27384, 23802, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦”ą§‡ą¦­ą¦²ą¦Ŗą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦…ą¦²ą§ą¦Ÿą¦¾ą¦°ą¦Øą§‡ą¦Ÿą¦æą¦­'),
(27385, 23803, 'en', 'name', 'University of Liberal Arts Bangladesh'),
(27386, 23803, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦°ą§ą¦­ą¦¾ą¦øą¦æą¦Ÿą¦æ অব লিবারেল ą¦†ą¦°ą§ą¦Ÿą¦ø বাংলাদেশ'),
(27387, 23804, 'en', 'name', 'Uttara University'),
(27388, 23804, 'bn', 'name', 'ą¦‰ą¦¤ą§ą¦¤ą¦°ą¦¾ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(27389, 23805, 'en', 'name', 'Schechter Institute of Jewish Studies'),
(27390, 23805, 'he', 'name', 'מכון ×©×›×˜×Ø למדעי היהדות'),
(27391, 23806, 'en', 'name', 'Victoria University of Bangladesh'),
(27392, 23806, 'bn', 'name', 'ą¦­ą¦æą¦•ą§ą¦Ÿą§‹ą¦°ą¦æą¦Æą¦¼ą¦¾ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(27393, 23807, 'id', 'name', 'Universitas Informatika dan Bisnis Indonesia'),
(27394, 23808, 'en', 'name', 'President Ramon Magsaysay State University'),
(27395, 23809, 'en', 'name', 'Central Philippine University'),
(27396, 23809, 'tl', 'name', 'Pamantasang Sentral ng Pilipinas'),
(27397, 23810, 'en', 'name', 'Bangladesh Open University'),
(27398, 23810, 'bn', 'name', 'বাংলাদেশ ą¦‰ą¦Øą§ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27399, 23811, 'en', 'name', 'Tokyo University of Social Welfare'),
(27400, 23811, 'ja', 'name', 'ę±äŗ¬ē¦ē„‰å¤§å­¦'),
(27401, 23812, 'id', 'name', 'Universitas Islam Nusantara'),
(27402, 23813, 'en', 'name', 'Islamic University of Technology'),
(27403, 23813, 'bn', 'name', 'ইসলামিক ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(27404, 23814, 'en', 'name', 'Tottori University of Environmental Studies'),
(27405, 23814, 'ja', 'name', 'é³„å–ē’°å¢ƒå¤§å­¦'),
(27406, 23815, 'en', 'name', 'Jatiya Kabi Kazi Nazrul Islam University'),
(27407, 23815, 'bn', 'name', 'ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ কবি ą¦•ą¦¾ą¦œą§€ নজরুল ইসলাম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27408, 23816, 'id', 'name', 'Universitas Kebangsaan Republik Indonesia'),
(27409, 23817, 'en', 'name', 'Aichi University'),
(27410, 23817, 'ja', 'name', 'ę„›ēŸ„å¤§å­¦'),
(27411, 23818, 'tl', 'name', 'Pamantasan ng Iloilo'),
(27412, 23818, 'en', 'name', 'University of Iloilo'),
(27413, 23819, 'en', 'name', 'Hadassah Academic College'),
(27414, 23819, 'he', 'name', 'מכללה ××§×“×ž×™×Ŗ הדהה ×™×Ø×•×©×œ×™×'),
(27415, 23820, 'id', 'name', 'Universitas Langlangbuana'),
(27416, 23821, 'tl', 'name', 'Pamantasan ng San Agustin'),
(27417, 23821, 'en', 'name', 'University of San Agustin'),
(27418, 23822, 'en', 'name', 'West Visayas State University'),
(27419, 23823, 'en', 'name', 'Cavite State University'),
(27420, 23824, 'id', 'name', 'Universitas Nasional Pasim'),
(27421, 23825, 'en', 'name', 'University of Northeastern Philippines'),
(27422, 23826, 'id', 'name', 'Universitas Nurtanio'),
(27423, 23827, 'id', 'name', 'Universitas Pasundan'),
(27424, 23828, 'no_lang_code', 'name', 'Aichi Gakusen University'),
(27425, 23828, 'ja', 'name', 'ę„›ēŸ„å­¦ę³‰å¤§å­¦'),
(27426, 23829, 'en', 'name', 'Indonesia University of Education'),
(27427, 23829, 'id', 'name', 'Universitas Pendidikan Indonesia'),
(27428, 23830, 'tl', 'name', 'Unibersidad ng Katimugang Mindanao'),
(27429, 23830, 'en', 'name', 'University of Southern Mindanao'),
(27430, 23831, 'en', 'name', 'Aklan State University'),
(27431, 23832, 'en', 'name', 'Rangamati Science and Technology University'),
(27432, 23832, 'bn', 'name', 'ą¦°ą¦¾ą¦™ą§ą¦—ą¦¾ą¦®ą¦¾ą¦Ÿą¦æ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27433, 23833, 'en', 'name', 'Aichi Mizuho College'),
(27434, 23833, 'ja', 'name', 'ę„›ēŸ„ćæćšć»å¤§å­¦'),
(27435, 23834, 'en', 'name', 'Notre Dame of Marbel University'),
(27436, 23834, 'tl', 'name', 'Pamantasang Notre Dame ng Marbel'),
(27437, 23835, 'fr', 'name', 'Institut Supérieur de Formation aĢ€ Distance');
INSERT INTO `ror_settings` VALUES
(27438, 23836, 'en', 'name', 'University of Santo Tomas–Legazpi'),
(27439, 23837, 'en', 'name', 'Metropolitan University'),
(27440, 23837, 'bn', 'name', 'ą¦®ą¦Ÿą§ą¦°ą§‹ą¦Ŗą¦²ą¦æą¦Ÿą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(27441, 23838, 'tl', 'name', 'Pamantasang Estado ng Pangasinan'),
(27442, 23838, 'en', 'name', 'Pangasinan State University'),
(27443, 23839, 'en', 'name', 'Sylhet International University'),
(27444, 23839, 'bn', 'name', 'ą¦øą¦æą¦²ą§‡ą¦Ÿ ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(27445, 23840, 'no_lang_code', 'name', 'Ohkagakuen University'),
(27446, 23840, 'ja', 'name', 'ę”œčŠ±å­¦åœ’å¤§å­¦'),
(27447, 23841, 'id', 'name', 'Universitas Sangga Buana YPKP'),
(27448, 23842, 'id', 'name', 'Universitas Achmad Yani'),
(27449, 23843, 'en', 'name', 'Netanya Academic College'),
(27450, 23843, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ł†ŲŖŲ§Ł†ŁŠŲ§ Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(27451, 23844, 'id', 'name', 'Universitas Islam Kalimantan Muhammad Arsyad Al Banjary'),
(27452, 23845, 'tl', 'name', 'Pamantasan ng Makati'),
(27453, 23845, 'en', 'name', 'University of Makati'),
(27454, 23846, 'en', 'name', 'De La Salle Araneta University'),
(27455, 23846, 'tl', 'name', 'Pamantasang De La Salle Araneta'),
(27456, 23847, 'no_lang_code', 'name', 'Mimasaka University'),
(27457, 23847, 'ja', 'name', 'ē¾Žä½œå¤§å­¦'),
(27458, 23848, 'en', 'name', 'Ube Frontier University'),
(27459, 23848, 'ja', 'name', 'å®‡éƒØćƒ•ćƒ­ćƒ³ćƒ†ć‚£ć‚¢å¤§å­¦'),
(27460, 23849, 'en', 'name', 'Build Bright University'),
(27461, 23849, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž”įŸ€įž›įž”įŸ’įžšįž¶įž™ įžšįž¶įž‡įž’įž¶įž“įžøįž—įŸ’įž“įŸ†įž–įŸįž‰'),
(27462, 23850, 'en', 'name', 'JosƩ Rizal University'),
(27463, 23850, 'tl', 'name', 'Pamantasang JosƩ Rizal'),
(27464, 23851, 'en', 'name', 'Nagano University'),
(27465, 23851, 'ja', 'name', '長野大学'),
(27466, 23852, 'en', 'name', 'Rizal Technological University'),
(27467, 23853, 'en', 'name', 'Kyoto Bunkyo University'),
(27468, 23853, 'ja', 'name', 'äŗ¬éƒ½ę–‡ę•™å¤§å­¦'),
(27469, 23854, 'en', 'name', 'Kyoto Saga University of Arts'),
(27470, 23854, 'ja', 'name', 'äŗ¬éƒ½åµÆå³ØčŠøč”“å¤§å­¦'),
(27471, 23855, 'no_lang_code', 'name', 'Centro Escolar University'),
(27472, 23855, 'tl', 'name', 'Pamantasang Centro Escolar'),
(27473, 23856, 'en', 'name', 'Peres Academic Center'),
(27474, 23856, 'he', 'name', '×”×ž×Ø×›×– האקדמי ×¤×Ø×”ā€Ž'),
(27475, 23857, 'en', 'name', 'Bunsei University of Art'),
(27476, 23857, 'ja', 'name', 'ę–‡ę˜ŸčŠøč”“å¤§å­ø'),
(27477, 23858, 'en', 'name', 'International University'),
(27478, 23858, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž“įŸ’įžįžšįž‡įž¶įžįž·'),
(27479, 23859, 'en', 'name', 'Cambodian Mekong University'),
(27480, 23859, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž˜įŸįž‚įž„įŸ’įž‚įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(27481, 23860, 'id', 'name', 'Universitas Baturaja'),
(27482, 23861, 'jv', 'name', 'Dayanu Ikhsanuddin University'),
(27483, 23861, 'id', 'name', 'Universitas Dayanu Ikhsanuddin'),
(27484, 23862, 'id', 'name', 'Universitas Muhammadiyah Buton'),
(27485, 23863, 'en', 'name', 'Royal University of Law and Economics'),
(27486, 23863, 'fr', 'name', 'UniversitƩ royale de droit et des sciences economiques'),
(27487, 23863, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įž“įžøįžįž·įžŸįž¶įžŸįŸ’įžįŸ’įžšįž“įž·įž„įžœįž·įž‘įŸ’įž™įž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšįžŸįŸįžŠįŸ’įž‹įž€įž·įž…įŸ’įž…'),
(27488, 23864, 'id', 'name', 'Universitas Islam 45 Bekasi'),
(27489, 23865, 'id', 'name', 'Universitas Muhammadiyah Bengkulu'),
(27490, 23866, 'id', 'name', 'Universitas Prof. Dr. Hazairin SH.'),
(27491, 23867, 'id', 'name', 'Institut Ilmu Sosial dan Ilmu Politik Yapis Biak'),
(27492, 23868, 'id', 'name', 'Universitas Almuslim'),
(27493, 23869, 'id', 'name', 'Universitas Djuanda'),
(27494, 23870, 'en', 'name', 'FEATI University'),
(27495, 23871, 'en', 'name', 'Manuel L. Quezon University'),
(27496, 23871, 'tl', 'name', 'Pamantasang Manuel L. Quezon'),
(27497, 23872, 'no_lang_code', 'name', 'Wakkanai Hokusei Gakuen College'),
(27498, 23872, 'ja', 'name', 'ēØšå†…åŒ—ę˜Ÿå­¦åœ’å¤§å­¦'),
(27499, 23873, 'tl', 'name', 'Pamantasang Kristiyano ng Pilipinas'),
(27500, 23873, 'en', 'name', 'Philippine Christian University'),
(27501, 23874, 'en', 'name', 'St. Paul University Manila'),
(27502, 23875, 'no_lang_code', 'name', 'Tokyo Seitoku University'),
(27503, 23875, 'ja', 'name', 'ę±äŗ¬ęˆå¾³å¤§å­¦'),
(27504, 23876, 'en', 'name', 'Technological University of the Philippines'),
(27505, 23876, 'tl', 'name', 'Teknolohikal na Unibersidad ng Pilipinas'),
(27506, 23877, 'en', 'name', 'Shizuoka University of Welfare'),
(27507, 23877, 'ja', 'name', 'é™å²”ē¦ē„‰å¤§å­¦'),
(27508, 23878, 'id', 'name', 'Universitas Bojonegoro'),
(27509, 23879, 'en', 'name', 'Philippine Women''s University'),
(27510, 23880, 'en', 'name', 'National Institute of Business'),
(27511, 23880, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‡įž¶įžįž·įž–įž¶įžŽįž·įž‡įŸ’įž‡įžŸįž¶įžŸįŸ’įžšįŸ’įžŠ'),
(27512, 23881, 'en', 'name', 'Oranim Academic College of Education'),
(27513, 23881, 'he', 'name', '××•×Ø× ×™× - המכללה ×”××§×“×ž×™×Ŗ לחינוך'),
(27514, 23881, 'ar', 'name', 'Ų§ŁˆŲ±Ł†ŁŠŁ…'),
(27515, 23882, 'en', 'name', 'Tohoku University of Art and Design'),
(27516, 23882, 'ja', 'name', 'ę±åŒ—čŠøč”“å·„ē§‘å¤§å­¦'),
(27517, 23883, 'en', 'name', 'National Technical Training Institute'),
(27518, 23883, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‡įž¶įžįž·įž”įžŽįŸ’įžįž»įŸ‡įž”įžŽįŸ’įžįž¶įž›įž”įž…įŸ’įž…įŸįž€įž‘įŸįžŸ'),
(27519, 23884, 'en', 'name', 'University of Manila'),
(27520, 23885, 'en', 'name', 'Tel Hai Academic College'),
(27521, 23885, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ תל-חי'),
(27522, 23886, 'no_lang_code', 'name', 'PaƱƱāsāstra University of Cambodia'),
(27523, 23886, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ā€‹įž”įž‰įŸ’įž‰įž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšā€‹įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(27524, 23887, 'no_lang_code', 'name', 'Chuo Gakuin University'),
(27525, 23887, 'ja', 'name', '中央学院大学'),
(27526, 23888, 'en', 'name', 'Phnom Penh International University'),
(27527, 23889, 'no_lang_code', 'name', 'Shiseikan University'),
(27528, 23889, 'ja', 'name', '至誠館大学'),
(27529, 23890, 'en', 'name', 'Adamson University'),
(27530, 23890, 'tl', 'name', 'Pamantasang Adamson'),
(27531, 23891, 'id', 'name', 'Universitas Trunajaya Bontang'),
(27532, 23892, 'en', 'name', 'Kawamura Gakuen Women''s University'),
(27533, 23892, 'ja', 'name', 'å·ę‘å­¦åœ’å„³å­å¤§å­¦'),
(27534, 23893, 'en', 'name', 'Asia Euro University'),
(27535, 23893, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ įž¢įž¶įžŸįŸŠįžø įž¢įžŗįžšįŸ‰įž»įž”'),
(27536, 23894, 'id', 'name', 'Universitas Boyolali'),
(27537, 23895, 'en', 'name', 'Minobusan University'),
(27538, 23895, 'ja', 'name', '身延山大学'),
(27539, 23896, 'en', 'name', 'Osaka University of Economics and Law'),
(27540, 23896, 'ja', 'name', 'å¤§é˜ŖēµŒęøˆę³•ē§‘å¤§å­¦'),
(27541, 23897, 'en', 'name', 'Swiss German University'),
(27542, 23897, 'id', 'name', 'Universitas Swiss German'),
(27543, 23898, 'en', 'name', 'Yokkaichi University'),
(27544, 23898, 'ja', 'name', '四旄市大学'),
(27545, 23899, 'en', 'name', 'Central Mindanao University'),
(27546, 23900, 'en', 'name', 'Norton University'),
(27547, 23900, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ įž“įŸįžšįžįž»įž“'),
(27548, 23901, 'en', 'name', 'Ferris University'),
(27549, 23901, 'ja', 'name', 'ćƒ•ć‚§ćƒŖć‚¹å„³å­¦é™¢å¤§å­¦'),
(27550, 23902, 'en', 'name', 'Tokyo Future University'),
(27551, 23902, 'ja', 'name', 'ę±äŗ¬ęœŖę„å¤§å­¦'),
(27552, 23903, 'en', 'name', 'Ateneo de Naga University'),
(27553, 23903, 'tl', 'name', 'Pamantasang Ateneo de Naga'),
(27554, 23904, 'no_lang_code', 'name', 'Seigakuin University'),
(27555, 23904, 'ja', 'name', '聖学院大学'),
(27556, 23905, 'es', 'name', 'Universidad de Sta. Isabel'),
(27557, 23906, 'tl', 'name', 'Universidad de Nueva Caceres'),
(27558, 23906, 'en', 'name', 'University of Nueva Caceres'),
(27559, 23907, 'en', 'name', 'Misamis University'),
(27560, 23908, 'tl', 'name', 'Pamantasan ng Asya at Pasipiko'),
(27561, 23908, 'en', 'name', 'University of Asia and the Pacific'),
(27562, 23909, 'en', 'name', 'Palawan State University'),
(27563, 23910, 'en', 'name', 'AMA Computer University'),
(27564, 23910, 'tl', 'name', 'Pamantasang Pangkompyuter ng AMA'),
(27565, 23911, 'en', 'name', 'Ateneo de Manila University'),
(27566, 23912, 'no_lang_code', 'name', 'Setec Institute'),
(27567, 23912, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“ā€‹ įžŸįŸŠįž·įžįž·įž€'),
(27568, 23913, 'en', 'name', 'Aichi Prefectural University of Fine Arts and Music'),
(27569, 23913, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹čŠøč”“å¤§å­¦'),
(27570, 23914, 'no_lang_code', 'name', 'Vanda Institute'),
(27571, 23914, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“ įžœįŸ‰įž¶įž“įŸ‹įžŠįž¶'),
(27572, 23915, 'en', 'name', 'Western University'),
(27573, 23915, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžœįŸįžŸįŸ’įž‘įž¾įž“'),
(27574, 23916, 'no_lang_code', 'name', 'Angkor University'),
(27575, 23916, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž„įŸ’įž‚įžš'),
(27576, 23917, 'en', 'name', 'St. Paul University Quezon City'),
(27577, 23918, 'no_lang_code', 'name', 'Aikoku Gakuen University'),
(27578, 23918, 'ja', 'name', 'ę„›å›½å­¦åœ’å¤§å­¦'),
(27579, 23919, 'no_lang_code', 'name', 'Svay Rieng University'),
(27580, 23919, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ā€‹įžŸįŸ’įžœįž¶įž™įžšįŸ€įž„'),
(27581, 23920, 'tl', 'name', 'Pamantasang Trinitas ng Asya'),
(27582, 23920, 'en', 'name', 'Trinity University of Asia'),
(27583, 23921, 'no_lang_code', 'name', 'Shikoku Gakuin University'),
(27584, 23921, 'ja', 'name', '四国学院大学'),
(27585, 23922, 'no_lang_code', 'name', 'Seijoh University'),
(27586, 23922, 'ja', 'name', 'ę˜ŸåŸŽå¤§å­¦'),
(27587, 23923, 'en', 'name', 'Madina Academy'),
(27588, 23923, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ł…ŲÆŁŠŁ†Ł‡'),
(27589, 23924, 'en', 'name', 'Tarim University'),
(27590, 23924, 'zh', 'name', 'å””é‡ŒęœØå¤§å­¦'),
(27591, 23925, 'en', 'name', 'BaiCheng Normal University'),
(27592, 23925, 'zh', 'name', 'ē™½åŸŽåøˆčŒƒå­¦é™¢'),
(27593, 23926, 'en', 'name', 'Beijing Dance Academy'),
(27594, 23926, 'zh', 'name', 'åŒ—äŗ¬čˆžč¹ˆå­¦é™¢'),
(27595, 23927, 'en', 'name', 'Beijing Film Academy'),
(27596, 23927, 'zh', 'name', 'åŒ—äŗ¬ē”µå½±å­¦é™¢'),
(27597, 23928, 'en', 'name', 'Yokohama University of Pharmacy'),
(27598, 23928, 'ja', 'name', 'ęØŖęµœč–¬ē§‘å¤§å­¦'),
(27599, 23929, 'en', 'name', 'Yokohama College of Commerce'),
(27600, 23929, 'ja', 'name', 'ęØŖęµœå•†ē§‘å¤§å­¦'),
(27601, 23930, 'en', 'name', 'Virgen Milagrosa University Foundation'),
(27602, 23931, 'en', 'name', 'Indonesia Open University'),
(27603, 23931, 'id', 'name', 'Universitas Terbuka'),
(27604, 23932, 'en', 'name', 'Beijing Language and Culture University'),
(27605, 23932, 'zh', 'name', 'åŒ—äŗ¬čÆ­čØ€å¤§å­¦'),
(27606, 23933, 'en', 'name', 'University of La Salette'),
(27607, 23934, 'en', 'name', 'Central Luzon State University'),
(27608, 23934, 'tl', 'name', 'Pamantasang Estado sa Gitnang Luzon'),
(27609, 23935, 'en', 'name', 'Adventist University of the Philippines'),
(27610, 23936, 'id', 'name', 'Universitas Swadaya Gunung Jati'),
(27611, 23937, 'en', 'name', 'Central Academy of Drama'),
(27612, 23937, 'zh', 'name', 'äø­å¤®ęˆå‰§å­¦é™¢'),
(27613, 23938, 'en', 'name', 'Saint Paul University Surigao'),
(27614, 23939, 'en', 'name', 'Central Academy of Fine Arts'),
(27615, 23939, 'zh', 'name', 'äø­å¤®ē¾ŽęœÆå­¦é™¢'),
(27616, 23940, 'en', 'name', 'China Foreign Affairs University'),
(27617, 23940, 'zh', 'name', '外交学院'),
(27618, 23941, 'en', 'name', 'China Youth University for Political Sciences'),
(27619, 23941, 'zh', 'name', 'äø­å›½é’å¹“ę”æę²»å­¦é™¢'),
(27620, 23942, 'en', 'name', 'Leyte Normal University'),
(27621, 23943, 'en', 'name', 'Holy Name University'),
(27622, 23944, 'id', 'name', 'Universitas Sultan Fatah'),
(27623, 23945, 'en', 'name', 'China Conservatory'),
(27624, 23945, 'zh', 'name', 'äø­å›½éŸ³ä¹å­¦é™¢'),
(27625, 23946, 'en', 'name', 'University of International Business and Economics'),
(27626, 23946, 'zh', 'name', 'åÆ¹å¤–ē»ęµŽč“øę˜“å¤§å­¦'),
(27627, 23947, 'tl', 'name', 'Pambansang Pamantasan ng Tarlac'),
(27628, 23947, 'en', 'name', 'Tarlac State University'),
(27629, 23948, 'fr', 'name', 'Institut National du BĆ¢timent et des Travaux Publics'),
(27630, 23949, 'en', 'name', 'Cagayan State University'),
(27631, 23949, 'tl', 'name', 'Pamantasang Estado sa Cagayan'),
(27632, 23950, 'id', 'name', 'Universitas Hindu Indonesia'),
(27633, 23951, 'en', 'name', 'Kansai University of Social Welfare'),
(27634, 23951, 'ja', 'name', 'é–¢č„æē¦ē„‰å¤§å­¦'),
(27635, 23952, 'en', 'name', 'Changchun Normal University'),
(27636, 23952, 'zh', 'name', 'é•æę˜„åøˆčŒƒå¤§å­¦'),
(27637, 23953, 'en', 'name', 'St. Paul University Philippines'),
(27638, 23954, 'en', 'name', 'Jilin University of Finance and Economics'),
(27639, 23954, 'zh', 'name', 'å‰ęž—č“¢ē»å¤§å­¦'),
(27640, 23955, 'tl', 'name', 'Unibersidad ng Saint Louis'),
(27641, 23955, 'en', 'name', 'University of Saint Louis'),
(27642, 23956, 'en', 'name', 'Jilin College of the Arts'),
(27643, 23956, 'zh', 'name', 'å‰ęž—č‰ŗęœÆå­¦é™¢'),
(27644, 23957, 'no_lang_code', 'name', 'Aomori Chuo Gakuin University'),
(27645, 23957, 'ja', 'name', 'é’ę£®äø­å¤®å­¦é™¢å¤§å­¦'),
(27646, 23958, 'tl', 'name', 'Pamantasan ng Hilagang Pilipinas'),
(27647, 23958, 'en', 'name', 'University of Northern Philippines'),
(27648, 23959, 'en', 'name', 'Arab Open University'),
(27649, 23959, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų© / الأردن'),
(27650, 23960, 'en', 'name', 'Western Mindanao State University'),
(27651, 23961, 'id', 'name', 'Universitas Gajayana Malang'),
(27652, 23962, 'id', 'name', 'Universitas Flores'),
(27653, 23963, 'en', 'name', 'Jilin Jianzhu University'),
(27654, 23963, 'zh', 'name', 'å‰ęž—å»ŗē­‘å¤§å­¦'),
(27655, 23964, 'en', 'name', 'State University of Gorontalo'),
(27656, 23964, 'id', 'name', 'Universitas Negeri Gorontalo'),
(27657, 23965, 'en', 'name', 'Amman Arab University'),
(27658, 23965, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عمان Ų§Ł„Ų¹Ų±ŲØŁŠŲ© للدراسات Ų§Ł„Ų¹Ł„ŁŠŲ§ الخاصة'),
(27659, 23966, 'id', 'name', 'Universitas Muhammadiyah Gorontalo'),
(27660, 23967, 'no_lang_code', 'name', 'Hirosaki Gakuin University'),
(27661, 23967, 'ja', 'name', '弘前学院大学'),
(27662, 23968, 'id', 'name', 'Universitas Muhammadiyah Gresik'),
(27663, 23969, 'en', 'name', 'Changzhou Institute of Technology'),
(27664, 23969, 'zh', 'name', 'åøøå·žå·„å­¦é™¢'),
(27665, 23970, 'id', 'name', 'Universitas Wiralodra'),
(27666, 23971, 'en', 'name', 'Aomori Public University'),
(27667, 23971, 'ja', 'name', 'é’ę£®å…¬ē«‹å¤§å­¦'),
(27668, 23972, 'en', 'name', 'Seisa University'),
(27669, 23972, 'ja', 'name', 'ę˜Ÿę§Žå¤§å­¦'),
(27670, 23973, 'en', 'name', 'Ashikaga University'),
(27671, 23973, 'ja', 'name', '足利巄愭大学'),
(27672, 23974, 'en', 'name', 'Ashiya University'),
(27673, 23974, 'ja', 'name', 'čŠ¦å±‹å¤§å­¦'),
(27674, 23975, 'id', 'name', 'Institut Bisnis dan Informatika Kwik Kian Gie'),
(27675, 23975, 'en', 'name', 'Kwik Kian Gie School of Business'),
(27676, 23976, 'id', 'name', 'Institut Kesenian Jakarta'),
(27677, 23977, 'en', 'name', 'Shoin University'),
(27678, 23977, 'ja', 'name', 'ę¾č”­å¤§å­¦'),
(27679, 23978, 'en', 'name', 'Beppu University'),
(27680, 23978, 'ja', 'name', '刄府大学'),
(27681, 23979, 'en', 'name', 'Arab Open University'),
(27682, 23979, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(27683, 23980, 'en', 'name', 'Chengdu Sport University'),
(27684, 23980, 'zh', 'name', 'ęˆéƒ½ä½“č‚²å­¦é™¢'),
(27685, 23981, 'en', 'name', 'Sichuan Conservatory of Music'),
(27686, 23981, 'zh', 'name', '四川音乐学院'),
(27687, 23982, 'en', 'name', 'Bunkyo Gakuin University'),
(27688, 23982, 'ja', 'name', '文京学院大学'),
(27689, 23983, 'en', 'name', 'Jerash University'),
(27690, 23983, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬Ų±Ų“'),
(27691, 23984, 'en', 'name', 'Chifeng University'),
(27692, 23984, 'zh', 'name', '赤峰学院'),
(27693, 23985, 'en', 'name', 'Sichuan Fine Arts Institute'),
(27694, 23985, 'zh', 'name', 'å››å·ē¾ŽęœÆå­¦é™¢'),
(27695, 23986, 'en', 'name', 'Perbanas Institute'),
(27696, 23987, 'en', 'name', 'Dongbei University of Finance and Economics'),
(27697, 23987, 'zh', 'name', 'äøœåŒ—č“¢ē»å¤§å­¦'),
(27698, 23988, 'en', 'name', 'LASALLE College of the Arts'),
(27699, 23988, 'ms', 'name', 'Maktab Seni Lasalle'),
(27700, 23988, 'zh', 'name', 'ę‹‰čØå°”č‰ŗęœÆå­¦é™¢'),
(27701, 23989, 'en', 'name', 'Yessenov University'),
(27702, 23989, 'kk', 'name', 'ŠØ. Есенов атынГағы Университет'),
(27703, 23990, 'en', 'name', 'Nanyang Academy of Fine Arts'),
(27704, 23990, 'ta', 'name', 'ą®Øą®©ąÆą®Æą®¾ą®™ąÆ ą®…ą®•ą®¾ą®Ÿą®®ą®æ ą®†ą®ƒą®ŖąÆ ą®ƒą®ŖąÆˆą®©ąÆ ą®†ą®°ąÆą®ŸąÆą®øąÆ'),
(27705, 23991, 'no_lang_code', 'name', 'Chiba Keizai University'),
(27706, 23991, 'ja', 'name', 'åƒč‘‰ēµŒęøˆå¤§å­¦'),
(27707, 23992, 'en', 'name', 'Institute of Information Security'),
(27708, 23992, 'ja', 'name', 'ęƒ…å ±ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£å¤§å­¦é™¢å¤§å­¦'),
(27709, 23993, 'id', 'name', 'Institut Teknologi dan Bisnis Kalbe'),
(27710, 23994, 'en', 'name', 'Japanese Red Cross College of Nursing'),
(27711, 23994, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ēœ‹č­·å¤§å­¦'),
(27712, 23995, 'en', 'name', 'Buddhist and Pali University of Sri Lanka'),
(27713, 23995, 'si', 'name', 'ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶¶ą·žą¶Æą·Šą¶° ą·„ą· ą¶“ą·ą¶½ą·’ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(27714, 23996, 'en', 'name', 'Guangzhou Sport University'),
(27715, 23996, 'zh', 'name', 'å¹æå·žä½“č‚²å­¦é™¢'),
(27716, 23997, 'en', 'name', 'Kanda University of International Studies'),
(27717, 23997, 'ja', 'name', 'ē„žē”°å¤–čŖžå¤§å­¦'),
(27718, 23998, 'en', 'name', 'Keiai University'),
(27719, 23998, 'ja', 'name', '敬愛大学'),
(27720, 23999, 'en', 'name', 'Guizhou University'),
(27721, 23999, 'zh', 'name', 'č“µå·žå¤§å­¦'),
(27722, 24000, 'en', 'name', 'Digital Hollywood University'),
(27723, 24000, 'ja', 'name', 'ćƒ‡ć‚øć‚æćƒ«ćƒćƒŖć‚¦ćƒƒćƒ‰å¤§å­¦'),
(27724, 24001, 'en', 'name', 'Hainan Medical University'),
(27725, 24001, 'zh', 'name', 'ęµ·å—åŒ»å­¦é™¢'),
(27726, 24002, 'en', 'name', 'China Academy of Art'),
(27727, 24002, 'zh', 'name', 'äø­å›½ē¾ŽęœÆå­¦é™¢'),
(27728, 24003, 'en', 'name', 'Globis University Graduate School of Management'),
(27729, 24003, 'ja', 'name', 'ć‚°ćƒ­ćƒ¼ćƒ“ć‚¹ēµŒå–¶å¤§å­¦é™¢å¤§å­¦'),
(27730, 24004, 'en', 'name', 'Syrian Virtual University'),
(27731, 24004, 'ar', 'name', 'الجامعة Ų§Ł„Ų§ŁŲŖŲ±Ų§Ų¶ŁŠŲ© Ų§Ł„Ų³ŁˆŲ±ŁŠŲ©'),
(27732, 24005, 'en', 'name', 'Harbin University'),
(27733, 24005, 'zh', 'name', 'å“ˆå°”ę»Øå­¦é™¢'),
(27734, 24006, 'en', 'name', 'Japan College of Social Work'),
(27735, 24006, 'ja', 'name', 'ę—„ęœ¬ē¤¾ä¼šäŗ‹ę„­å¤§å­¦'),
(27736, 24007, 'id', 'name', 'Universitas Suryadarma'),
(27737, 24008, 'en', 'name', 'Hulunbuir University'),
(27738, 24008, 'zh', 'name', 'å‘¼ä¼¦č“å°”å­¦é™¢'),
(27739, 24009, 'en', 'name', 'West Kazakhstan Marat Ospanov State Medical University'),
(27740, 24009, 'kk', 'name', 'М.ŠžŃŠæŠ°Š½Š¾Š² атынГағы Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ мемлекеттік меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27741, 24010, 'en', 'name', 'Shandong University of Finance and Economics'),
(27742, 24010, 'zh', 'name', 'å±±äøœč“¢ē»å¤§å­¦'),
(27743, 24011, 'id', 'name', 'Universitas Esa Unggul'),
(27744, 24012, 'en', 'name', 'National Institute of Public Administration'),
(27745, 24012, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ لل؄دارة العامة'),
(27746, 24013, 'en', 'name', 'Mercu Buana University'),
(27747, 24013, 'id', 'name', 'Universitas Mercu Buana'),
(27748, 24014, 'id', 'name', 'Universitas Satyagama'),
(27749, 24015, 'en', 'name', 'Kazakh Ablai Khan University of International Relations and World Languages'),
(27750, 24015, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹ Šø мировых ŃŠ·Ń‹ŠŗŠ¾Š² имени Абылай хана'),
(27751, 24015, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› халықаралық қатынастар және әлем тілГері ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27752, 24016, 'id', 'name', 'Universitas Bunda Mulia'),
(27753, 24016, 'en', 'name', 'University of Bunda Mulia'),
(27754, 24017, 'en', 'name', 'Business Breakthrough University'),
(27755, 24017, 'ja', 'name', 'ćƒ“ć‚øćƒć‚¹ćƒ»ćƒ–ćƒ¬ćƒ¼ć‚Æć‚¹ćƒ«ćƒ¼å¤§å­¦'),
(27756, 24018, 'id', 'name', 'Universitas YARSI'),
(27757, 24018, 'en', 'name', 'Yarsi University'),
(27758, 24019, 'id', 'name', 'Institut Ilmu Sosial dan Ilmu Politik Jakarta'),
(27759, 24020, 'id', 'name', 'Universitas Azzahra'),
(27760, 24021, 'en', 'name', 'University of Kalamoon'),
(27761, 24021, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ł„Ł…ŁˆŁ† الخاصة'),
(27762, 24022, 'en', 'name', 'Yunnan Arts University'),
(27763, 24022, 'zh', 'name', 'äŗ‘å—č‰ŗęœÆå­¦é™¢'),
(27764, 24023, 'en', 'name', 'Kurmangazy Kazakh National Conservatory'),
(27765, 24023, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› ұлттық ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃŃŃ‹'),
(27766, 24024, 'en', 'name', 'Ministry of Internal Affairs of the Republic of Tajikistan'),
(27767, 24024, 'tg', 'name', 'Вазорати корҳои Гохилии Ņ¶ŃƒŠ¼Ņ³ŃƒŃ€ŠøŠø Тоҷикистон'),
(27768, 24025, 'no_lang_code', 'name', 'Nishogakusha University'),
(27769, 24025, 'ja', 'name', 'äŗŒę¾å­øčˆå¤§å­¦'),
(27770, 24026, 'id', 'name', 'Universitas Islam Attahiriyah'),
(27771, 24027, 'en', 'name', 'Toho Gakuen School of Music'),
(27772, 24027, 'ja', 'name', 'ę”ęœ‹å­¦åœ’ éŸ³ę„½éƒØé–€'),
(27773, 24028, 'en', 'name', 'Kazakh Academy of Sport and Tourism'),
(27774, 24028, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› спорт және Ń‚ŃƒŃ€ŠøŠ·Š¼ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(27775, 24029, 'id', 'name', 'Universitas Muhammadiyah Jakarta'),
(27776, 24030, 'en', 'name', 'Kazakh National Medical University'),
(27777, 24030, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. Š”. ŠŃŃ„ŠµŠ½Š“ŠøŃŃ€Š¾Š²Š°'),
(27778, 24030, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› ұлттық меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27779, 24031, 'id', 'name', 'Universitas Muhammadiyah Prof Dr Hamka'),
(27780, 24032, 'en', 'name', 'Chiba Institute of Science'),
(27781, 24032, 'ja', 'name', 'åƒč‘‰ē§‘å­¦å¤§å­¦'),
(27782, 24033, 'id', 'name', 'Universitas Paramadina'),
(27783, 24034, 'en', 'name', 'Gansu Institute of Political Science and Law'),
(27784, 24034, 'zh', 'name', 'ē”˜č‚ƒę”æę³•å­¦é™¢'),
(27785, 24035, 'no_lang_code', 'name', 'Chikushi Jogakuen University'),
(27786, 24035, 'ja', 'name', 'ē­‘ē“«å„³å­¦åœ’å¤§å­¦'),
(27787, 24036, 'en', 'name', 'Lanzhou University of Finance and Economics'),
(27788, 24036, 'zh', 'name', 'å…°å·žč“¢ē»å¤§å­¦'),
(27789, 24037, 'en', 'name', 'Kazakh-British Technical University'),
(27790, 24037, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾-Британский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27791, 24037, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½-Британ техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27792, 24038, 'en', 'name', 'LEC Tokyo Legal Mind University'),
(27793, 24038, 'ja', 'name', 'LECę±äŗ¬ćƒŖćƒ¼ć‚¬ćƒ«ćƒžć‚¤ćƒ³ćƒ‰å¤§å­¦é™¢å¤§å­¦'),
(27794, 24039, 'id', 'name', 'Universitas Tama Jagakarsa'),
(27795, 24040, 'en', 'name', 'Abai Kazakh National Pedagogical University'),
(27796, 24040, 'kk', 'name', 'Абай атынГағы ŅšŠ°Š·Š°Ņ› ұлттық пеГагогика ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27797, 24041, 'id', 'name', 'Universitas Wiraswasta Indonesia'),
(27798, 24042, 'en', 'name', 'Kyushu Institute of Information Sciences'),
(27799, 24042, 'ja', 'name', 'ä¹å·žęƒ…å ±å¤§å­¦'),
(27800, 24043, 'id', 'name', 'Universitas Borobudur'),
(27801, 24044, 'no_lang_code', 'name', 'Seinan Gakuin University'),
(27802, 24044, 'ja', 'name', 'č„æå—å­¦é™¢å¤§å­¦'),
(27803, 24045, 'id', 'name', 'Universitas Darma Persada'),
(27804, 24046, 'id', 'name', 'Universitas Ibnu Chaldun Jakarta'),
(27805, 24047, 'en', 'name', 'Tibet Autonomous Region People''s Hospital'),
(27806, 24047, 'zh', 'name', 'č„æč—č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(27807, 24048, 'en', 'name', 'Japanese Red Cross Toyota College of Nursing'),
(27808, 24048, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—č±Šē”°ēœ‹č­·å¤§å­¦'),
(27809, 24049, 'en', 'name', 'Almaty Management University'),
(27810, 24049, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ бизнеса'),
(27811, 24049, 'kk', 'name', 'Єалықаралық бизнес Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(27812, 24050, 'en', 'name', 'Suleyman Demirel University'),
(27813, 24050, 'kk', 'name', 'Дүлейман Демирел атынГағы Университет'),
(27814, 24051, 'en', 'name', 'Jiaying University'),
(27815, 24051, 'zh', 'name', 'å˜‰åŗ”å­¦é™¢'),
(27816, 24052, 'en', 'name', 'Turan University'),
(27817, 24052, 'kk', 'name', 'Тұран Университеті'),
(27818, 24052, 'ru', 'name', 'Университет Š¢ŃƒŃ€Š°Š½'),
(27819, 24053, 'en', 'name', 'Honghe University'),
(27820, 24054, 'en', 'name', 'Christian University of Indonesia'),
(27821, 24054, 'id', 'name', 'Universitas Kristen Indonesia'),
(27822, 24055, 'id', 'name', 'Universitas Mpu Tantular'),
(27823, 24056, 'id', 'name', 'Universitas Respati Indonesia'),
(27824, 24057, 'id', 'name', 'Universitas Surapati'),
(27825, 24058, 'en', 'name', 'Cenderawasih University'),
(27826, 24058, 'id', 'name', 'Universitas Cenderawasih'),
(27827, 24059, 'id', 'name', 'Universitas Darul Ulum'),
(27828, 24060, 'no_lang_code', 'name', 'Matsuyama Shinonome College'),
(27829, 24060, 'ja', 'name', 'ę¾å±±ę±é›²å„³å­å¤§å­¦'),
(27830, 24061, 'id', 'name', 'Universitas Pesantren Tinggi Darul Ulum Jombang'),
(27831, 24062, 'en', 'name', 'Hokkaido Bunkyo University'),
(27832, 24062, 'ja', 'name', 'åŒ—ęµ·é“ę–‡ę•™å¤§å­¦'),
(27833, 24063, 'no_lang_code', 'name', 'Fuji Tokoha University'),
(27834, 24063, 'ja', 'name', 'åÆŒå£«åøøč‘‰å¤§å­¦'),
(27835, 24064, 'en', 'name', 'Saitama Institute of Technology'),
(27836, 24064, 'ja', 'name', 'åŸ¼ēŽ‰å·„ę„­å¤§å­¦'),
(27837, 24065, 'id', 'name', 'Universitas Pendidikan Putra Indonesia Cianjur'),
(27838, 24066, 'en', 'name', 'Nanjing University of the Arts'),
(27839, 24066, 'zh', 'name', 'å—äŗ¬č‰ŗęœÆå­¦é™¢'),
(27840, 24067, 'en', 'name', 'Ehime Prefectural University of Health Science'),
(27841, 24067, 'ja', 'name', 'ę„›åŖ›ēœŒē«‹åŒ»ē™‚ęŠ€č”“å¤§å­¦'),
(27842, 24068, 'en', 'name', 'Nanjing Sport Institute'),
(27843, 24068, 'zh', 'name', 'å—äŗ¬ä½“č‚²å­¦é™¢'),
(27844, 24069, 'id', 'name', 'Universitas Ngurah Rai'),
(27845, 24070, 'no_lang_code', 'name', 'Fukuoka Jo Gakuin University'),
(27846, 24070, 'ja', 'name', 'ē¦å²”å„³å­¦é™¢å¤§å­¦'),
(27847, 24071, 'id', 'name', 'Universitas Nusa Lontar Rote'),
(27848, 24072, 'en', 'name', 'Panzhihua University'),
(27849, 24072, 'zh', 'name', 'ę”€ęžčŠ±å­¦é™¢'),
(27850, 24073, 'no_lang_code', 'name', 'Yang-En University'),
(27851, 24073, 'zh', 'name', '仰恩大学'),
(27852, 24074, 'en', 'name', 'S.Seifullin Kazakh Agro Technical University'),
(27853, 24074, 'kk', 'name', 'Š”. Š”ŠµŠ¹Ń„ŃƒŠ»Š»ŠøŠ½ атынГағы қазақ агротехникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27854, 24075, 'en', 'name', 'Finance and Economics Institute of Tajikistan'),
(27855, 24076, 'en', 'name', 'Atyrau University of Oil and Gas'),
(27856, 24076, 'kk', 'name', 'ŠŃ‚Ń‹Ń€Š°Ńƒ мұнай және газ Университеті'),
(27857, 24077, 'en', 'name', 'Luxun Academy of Fine Arts'),
(27858, 24078, 'en', 'name', 'Shenyang Conservatory of Music'),
(27859, 24078, 'zh', 'name', 'ę²ˆé˜³éŸ³ä¹å­¦é™¢'),
(27860, 24079, 'en', 'name', 'Shenyang Institute of Engineering'),
(27861, 24079, 'zh', 'name', 'ę²ˆé˜³å·„ēØ‹å­¦é™¢'),
(27862, 24080, 'id', 'name', 'Institut Ilmu Kesehatan Bhakti Wiyata'),
(27863, 24081, 'id', 'name', 'Universitas Islam Kadiri'),
(27864, 24082, 'id', 'name', 'Universitas Kadiri'),
(27865, 24083, 'en', 'name', 'Fukushima University'),
(27866, 24083, 'ja', 'name', 'ē¦å³¶å¤§å­¦'),
(27867, 24084, 'en', 'name', 'Tajik State Pedagogical University'),
(27868, 24084, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии омӯзгории Тоҷикистон ба номи ДаГриГГин Айнӣ'),
(27869, 24084, 'ru', 'name', 'ТаГжикский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š”.Айни'),
(27870, 24085, 'no_lang_code', 'name', 'Fukuyama Heisei University'),
(27871, 24085, 'ja', 'name', 'ē¦å±±å¹³ęˆå¤§å­¦'),
(27872, 24086, 'id', 'name', 'Universitas Pawyatan Daha Kediri'),
(27873, 24087, 'en', 'name', 'Tajik State University of Commerce'),
(27874, 24087, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии тиҷорати Тоҷикистон'),
(27875, 24087, 'ru', 'name', 'ТаГжикский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ коммерции'),
(27876, 24088, 'en', 'name', 'Shenyang Sport University'),
(27877, 24088, 'zh', 'name', 'ę²ˆé˜³ä½“č‚²å­¦é™¢'),
(27878, 24089, 'en', 'name', 'Kokshetau State University'),
(27879, 24089, 'ru', 'name', 'ŠšŠ¾ŠŗŃˆŠµŃ‚Š°ŃƒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27880, 24089, 'kk', 'name', 'ŠšÓ©ŠŗŃˆŠµŃ‚Š°Ńƒ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27881, 24090, 'en', 'name', 'Hebei Institute of Physical Education'),
(27882, 24090, 'zh', 'name', 'ę²³åŒ—ä½“č‚²å­¦é™¢'),
(27883, 24091, 'no_lang_code', 'name', 'Shuchiin University'),
(27884, 24091, 'ja', 'name', '種智院大学'),
(27885, 24092, 'id', 'name', 'Universitas Muhammadiyah Kendari'),
(27886, 24093, 'id', 'name', 'Universitas Sulawesi Tenggara'),
(27887, 24094, 'no_lang_code', 'name', 'Tajik Agrarian University Shirinsho Shotemur'),
(27888, 24094, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø аграрии Тоҷикистон'),
(27889, 24094, 'ru', 'name', 'ТаГжикский аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27890, 24095, 'en', 'name', 'Tajik State Medical University'),
(27891, 24095, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии тиббии Тоҷикистон ба номи Абӯалӣ Ибни Дино'),
(27892, 24095, 'ru', 'name', 'ТаГжикский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27893, 24096, 'id', 'name', 'Universitas Widya Dharma Klaten'),
(27894, 24097, 'en', 'name', 'Tajik National University'),
(27895, 24097, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии миллии Тоҷикистон'),
(27896, 24097, 'ru', 'name', 'ТаГжикский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27897, 24098, 'id', 'name', 'Universitas Mahaputra Muhammad Yamin'),
(27898, 24099, 'en', 'name', 'Gifu Women''s University'),
(27899, 24099, 'ja', 'name', '岐阜儳子大学'),
(27900, 24100, 'en', 'name', 'Tangshan College'),
(27901, 24100, 'zh', 'name', '唐山学院'),
(27902, 24101, 'en', 'name', 'Tangshan Normal University'),
(27903, 24101, 'zh', 'name', 'å”å±±åøˆčŒƒå¤§å­¦'),
(27904, 24102, 'en', 'name', 'Institute of Technologists'),
(27905, 24102, 'ja', 'name', 'ć‚‚ć®ć¤ćć‚Šå¤§å­¦'),
(27906, 24103, 'en', 'name', 'Tianjin Conservatory of Music'),
(27907, 24103, 'zh', 'name', 'å¤©ę“„éŸ³ä¹å­¦é™¢'),
(27908, 24104, 'en', 'name', 'Muria Kudus University'),
(27909, 24104, 'id', 'name', 'Universitas Muria Kudus'),
(27910, 24105, 'en', 'name', 'Hachinohe Institute of Technology'),
(27911, 24105, 'ja', 'name', 'å…«ęˆøå·„ę„­å¤§å­¦'),
(27912, 24106, 'en', 'name', 'Innovative University of Eurasia'),
(27913, 24106, 'ru', 'name', 'Š˜Š½Š½Š¾Š²Š°Ń†ŠøŠ¾Š½Š½Ń‹Š¹ Евразийский Университет'),
(27914, 24107, 'en', 'name', 'Nihon Bunka University'),
(27915, 24107, 'ja', 'name', 'ę—„ęœ¬ę–‡åŒ–å¤§å­¦'),
(27916, 24108, 'id', 'name', 'Universitas Kuningan'),
(27917, 24109, 'id', 'name', 'Universitas Muhammadiyah Kupang'),
(27918, 24110, 'en', 'name', 'Tokyo Junshin University'),
(27919, 24110, 'ja', 'name', 'ę±äŗ¬ē“”åæƒå¤§å­¦'),
(27920, 24111, 'en', 'name', 'Darul Ulum Islamic University'),
(27921, 24111, 'id', 'name', 'Universitas Islam Darul Ulum Lamongan'),
(27922, 24112, 'en', 'name', 'Tokyo Zokei University'),
(27923, 24112, 'ja', 'name', 'ę±äŗ¬é€ å½¢å¤§å­¦'),
(27924, 24113, 'no_lang_code', 'name', 'Xinjiang Petroleum Society'),
(27925, 24113, 'zh', 'name', 'äø­å›½ēŸ³ę²¹å­¦ä¼š'),
(27926, 24114, 'en', 'name', 'Hakodate University'),
(27927, 24114, 'ja', 'name', '函館大学'),
(27928, 24115, 'id', 'name', 'Universitas Islam Lamongan'),
(27929, 24116, 'en', 'name', 'Tajik State University of Law Business and Politics'),
(27930, 24116, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Давлатии Ņ²ŃƒŅ›ŃƒŅ›, Бизнес, ва Диёсати Тоҷикистон'),
(27931, 24117, 'no_lang_code', 'name', 'Hamamatsu Gakuin University'),
(27932, 24117, 'ja', 'name', 'ęµœę¾å­¦é™¢å¤§å­¦'),
(27933, 24118, 'en', 'name', 'Samudra University'),
(27934, 24118, 'id', 'name', 'Universitas Samudra'),
(27935, 24119, 'en', 'name', 'Hubei Institute of Fine Arts'),
(27936, 24119, 'zh', 'name', 'ę¹–åŒ—ē¾ŽęœÆå­¦é™¢'),
(27937, 24120, 'en', 'name', 'Malikussaleh University'),
(27938, 24120, 'id', 'name', 'Universitas Malikussaleh'),
(27939, 24121, 'en', 'name', 'Seirei Christopher University'),
(27940, 24121, 'ja', 'name', 'č–éš·ć‚ÆćƒŖć‚¹ćƒˆćƒ•ć‚”ćƒ¼å¤§å­¦'),
(27941, 24122, 'en', 'name', 'Shizuoka University of Art and Culture'),
(27942, 24122, 'ja', 'name', 'é™å²”ę–‡åŒ–čŠøč”“å¤§å­¦'),
(27943, 24123, 'en', 'name', 'Fuji University'),
(27944, 24123, 'ja', 'name', '富士大学'),
(27945, 24124, 'no_lang_code', 'name', 'Surugadai University'),
(27946, 24124, 'ja', 'name', 'é§æę²³å°å¤§å­¦'),
(27947, 24125, 'en', 'name', 'South Kazakhstan Medical Academy'),
(27948, 24125, 'kk', 'name', 'ŠžŅ£Ń‚ŅÆŃŃ‚Ń–Šŗ ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ меГицина Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(27949, 24126, 'en', 'name', 'Northwest University of Politics and Law'),
(27950, 24126, 'zh', 'name', 'č„æåŒ—ę”æę³•å¤§å­¦'),
(27951, 24127, 'en', 'name', 'Kulyab State University named after Abuabdullo Rudaki'),
(27952, 24127, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии Кӯлоб ба номи АбӯабГуллоҳи РӯГакӣ'),
(27953, 24127, 'ru', 'name', 'ŠšŃƒŠ»ŃŠ±ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27954, 24128, 'id', 'name', 'Universitas Musi Rawas'),
(27955, 24129, 'en', 'name', 'Xi''an Academy of Fine Arts'),
(27956, 24129, 'zh', 'name', 'č„æå®‰ē¾ŽęœÆå­¦é™¢'),
(27957, 24130, 'en', 'name', 'M.Auezov South Kazakhstan State University'),
(27958, 24130, 'kk', 'name', 'М.Ó˜Š£Š•Š—ŠžŠ’ ŠŠ¢Š«ŠŠ”ŠŅ’Š« ŠžŅ¢Š¢Ņ®Š”Š¢Š†Šš ŅšŠŠ—ŠŅšŠ”Š¢ŠŠ ŠœŠ•ŠœŠ›Š•ŠšŠ•Š¢Š¢Š†Šš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š†'),
(27959, 24131, 'en', 'name', 'Xi''an Conservatory of Music'),
(27960, 24131, 'zh', 'name', 'č„æå®‰éŸ³ä¹å­¦é™¢'),
(27961, 24132, 'en', 'name', 'University of Human Environments'),
(27962, 24132, 'ja', 'name', 'äŗŗé–“ē’°å¢ƒå¤§å­¦'),
(27963, 24133, 'en', 'name', 'Xi''an Physical Education University'),
(27964, 24133, 'zh', 'name', '脿安体育学院'),
(27965, 24134, 'en', 'name', 'Xi''an International Studies University'),
(27966, 24134, 'zh', 'name', '脿安外国语大学'),
(27967, 24135, 'en', 'name', 'Xingtai University'),
(27968, 24135, 'zh', 'name', '邢台学院'),
(27969, 24136, 'no_lang_code', 'name', 'Gifu Shotoku Gakuen University'),
(27970, 24136, 'ja', 'name', 'å²é˜œč–å¾³å­¦åœ’å¤§å­¦'),
(27971, 24137, 'en', 'name', 'North Asia University'),
(27972, 24137, 'ja', 'name', 'ćƒŽćƒ¼ć‚¹ć‚¢ć‚øć‚¢å¤§å­¦'),
(27973, 24138, 'en', 'name', 'Yancheng Teachers University'),
(27974, 24139, 'en', 'name', 'Gifu College of Nursing'),
(27975, 24139, 'ja', 'name', 'å²é˜œēœŒē«‹ēœ‹č­·å¤§å­¦'),
(27976, 24140, 'en', 'name', 'Ludong University'),
(27977, 24140, 'zh', 'name', '鲁东大学'),
(27978, 24141, 'en', 'name', 'Shandong Institute of Business and Technology'),
(27979, 24141, 'zh', 'name', 'å±±äøœå·„å•†å­¦é™¢'),
(27980, 24142, 'id', 'name', 'Universitas Merdeka Madiun'),
(27981, 24143, 'id', 'name', 'Universitas Tidar'),
(27982, 24144, 'id', 'name', 'Universitas Majalengka'),
(27983, 24145, 'no_lang_code', 'name', 'Ahmet Yesevi University'),
(27984, 24145, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ казахско-Ń‚ŃƒŃ€ŠµŃ†ŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š„. А. Яссави'),
(27985, 24145, 'kk', 'name', 'Єалықаралық қазақ-түрік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27986, 24146, 'en', 'name', 'Hebei University of Architecture'),
(27987, 24146, 'zh', 'name', 'ę²³åŒ—å»ŗē­‘å·„ēØ‹å­¦é™¢'),
(27988, 24147, 'en', 'name', 'Mahambet Otemiusly West Kazakhstan University'),
(27989, 24147, 'kk', 'name', 'ŠœŠ°Ń…Š°Š¼Š±ŠµŃ‚ Өтемісов атынГағы Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ ŠœŠµŠ¼Š»ŠµŠŗŠµŃ‚Ń‚Ń–Šŗ Университеті'),
(27990, 24148, 'no_lang_code', 'name', 'Higashiosaka College & Higashiosaka Junior College'),
(27991, 24148, 'ja', 'name', 'ę±å¤§é˜Ŗå¤§å­¦ćƒ»ę±å¤§é˜Ŗå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(27992, 24149, 'no_lang_code', 'name', 'Dhurakij Pundit University'),
(27993, 24149, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø˜ąøøąø£ąøąø“ąøˆąøšąø±ąø“ąø‘ąø“ąø•ąø¢ą¹Œ'),
(27994, 24150, 'id', 'name', 'Institut Kesenian Makassar'),
(27995, 24151, 'en', 'name', 'Osaka University of Commerce'),
(27996, 24151, 'ja', 'name', 'å¤§é˜Ŗå•†ę„­å¤§å­¦'),
(27997, 24152, 'no_lang_code', 'name', 'Zhezkazgan Baikonurov University'),
(27998, 24152, 'ru', 'name', 'Жезказганский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Šž.А. Š‘Š°Š¹ŠŗŠ¾Š½ŃƒŃ€Š¾Š²Š°'),
(27999, 24153, 'en', 'name', 'Kansai Gaidai University'),
(28000, 24153, 'ja', 'name', 'é–¢č„æå¤–å›½čŖžå¤§å­¦'),
(28001, 24154, 'en', 'name', 'Osaka International University'),
(28002, 24154, 'ja', 'name', 'å¤§é˜Ŗå›½éš›å¤§å­¦'),
(28003, 24155, 'en', 'name', 'Higher Institute of Business Administration'),
(28004, 24155, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ لادارة الاعمال'),
(28005, 24156, 'en', 'name', 'Muhammadiyah University of Makassar'),
(28006, 24156, 'id', 'name', 'Universitas Muhammadiyah Makassar'),
(28007, 24157, 'en', 'name', 'University of the Thai Chamber of Commerce'),
(28008, 24157, 'th', 'name', 'ดหาวณทยาคัยหอการค้าไทย'),
(28009, 24158, 'en', 'name', 'Hijiyama University'),
(28010, 24158, 'ja', 'name', '比治山大学'),
(28011, 24159, 'en', 'name', 'State University of Makassar'),
(28012, 24159, 'id', 'name', 'Universitas Negeri Makassar'),
(28013, 24160, 'en', 'name', 'Kasem Bundit University'),
(28014, 24160, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøąø©ąø”ąøšąø±ąø“ąø‘ąø“ąø•'),
(28015, 24161, 'id', 'name', 'Universitas Pancasakti Makassar'),
(28016, 24162, 'en', 'name', 'Bangkok University'),
(28017, 24162, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(28018, 24163, 'en', 'name', 'Krirk University'),
(28019, 24163, 'th', 'name', 'ดหาวณทยาคัยเกรณก'),
(28020, 24164, 'no_lang_code', 'name', 'Hiroshima Jogakuin University'),
(28021, 24164, 'ja', 'name', 'åŗƒå³¶å„³å­¦é™¢å¤§å­¦'),
(28022, 24165, 'en', 'name', 'Bansomdejchaopraya Rajabhat University'),
(28023, 24165, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøšą¹‰ąø²ąø™ąøŖąø”ą¹€ąø”ą¹‡ąøˆą¹€ąøˆą¹‰ąø²ąøžąø£ąø°ąø¢ąø²'),
(28024, 24166, 'no_lang_code', 'name', 'Phranakhon Si Ayutthaya Rajabhat University'),
(28025, 24166, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøžąø£ąø°ąø™ąø„ąø£ąøØąø£ąøµąø­ąø¢ąøøąø˜ąø¢ąø²'),
(28026, 24167, 'id', 'name', 'Universitas Teknologi Sulawesi'),
(28027, 24168, 'no_lang_code', 'name', 'Hiroshima Kokusai Gakuin University'),
(28028, 24168, 'ja', 'name', 'åŗƒå³¶å›½éš›å­¦é™¢å¤§å­¦'),
(28029, 24169, 'en', 'name', 'Rattana Bundit University'),
(28030, 24169, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø±ąø•ąø™ąøšąø±ąø“ąø‘ąø“ąø•'),
(28031, 24170, 'en', 'name', 'Hiroshima City University'),
(28032, 24170, 'ja', 'name', 'åŗƒå³¶åø‚ē«‹å¤§å­¦'),
(28033, 24171, 'en', 'name', 'Hiroshima Shudo University'),
(28034, 24171, 'ja', 'name', 'åŗƒå³¶äæ®é“å¤§å­¦'),
(28035, 24172, 'en', 'name', 'Saint John''s University'),
(28036, 24172, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø‹ąø™ąø•ą¹Œąøˆąø­ąø«ą¹Œąø™'),
(28037, 24173, 'en', 'name', 'Onomichi City University'),
(28038, 24173, 'ja', 'name', '尾道市立大学'),
(28039, 24174, 'en', 'name', 'Institut Pertanian Malang'),
(28040, 24175, 'en', 'name', 'St Theresa International College'),
(28041, 24175, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ ą¹€ąø‹ąø™ąø•ą¹Œą¹€ąø—ą¹€ąø£ąø‹ąø²'),
(28042, 24176, 'en', 'name', 'Ibaraki Christian University'),
(28043, 24176, 'ja', 'name', 'čŒØåŸŽć‚­ćƒŖć‚¹ćƒˆę•™å¤§å­¦'),
(28044, 24177, 'en', 'name', 'Batumi Shota Rustaveli State University'),
(28045, 24177, 'ru', 'name', 'Š‘Š°Ń‚ŃƒŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шота Š ŃƒŃŃ‚авели'),
(28046, 24177, 'ka', 'name', 'įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒØįƒįƒ—įƒ įƒ įƒ£įƒ”įƒ—įƒįƒ•įƒ”įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28047, 24178, 'en', 'name', 'St. Catherine University'),
(28048, 24178, 'ja', 'name', 'č–ć‚«ć‚æćƒŖćƒŠå¤§å­¦'),
(28049, 24179, 'en', 'name', 'Hokusho University'),
(28050, 24179, 'ja', 'name', 'åŒ—ēæ”å¤§å­¦'),
(28051, 24180, 'no_lang_code', 'name', 'Tomakomai Komazawa University'),
(28052, 24180, 'ja', 'name', 'č‹«å°ē‰§é§’ę¾¤å¤§å­¦'),
(28053, 24181, 'id', 'name', 'Institut Teknologi Nasional Malang'),
(28054, 24182, 'id', 'name', 'Universitas Islam Malang'),
(28055, 24183, 'id', 'name', 'Universitas Katolik Widya Karya Malang'),
(28056, 24183, 'en', 'name', 'Widya Karya Catholic University'),
(28057, 24184, 'en', 'name', 'Sukhishvili Teaching University'),
(28058, 24185, 'id', 'name', 'Universitas Merdeka Malang'),
(28059, 24186, 'id', 'name', 'Universitas Muhammadiyah Malang'),
(28060, 24187, 'id', 'name', 'Universitas Tribhuwana Tunggadewi'),
(28061, 24188, 'no_lang_code', 'name', 'Sungkyul University'),
(28062, 24189, 'en', 'name', 'Namseoul University'),
(28063, 24189, 'ko', 'name', 'ė‚Øģ„œģšøėŒ€ķ•™źµ'),
(28064, 24190, 'en', 'name', 'Cheongju National University of Education'),
(28065, 24190, 'ko', 'name', 'ģ²­ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(28066, 24191, 'en', 'name', 'King Mongkut''s University of Technology North Bangkok'),
(28067, 24191, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ąøžąø£ąø°ąø™ąø„ąø£ą¹€ąø«ąø™ąø·ąø­'),
(28068, 24192, 'en', 'name', 'Kkottongnae University'),
(28069, 24193, 'en', 'name', 'Daegu Arts University'),
(28070, 24193, 'ko', 'name', 'ėŒ€źµ¬ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(28071, 24194, 'en', 'name', 'Chinju National University of Education'),
(28072, 24194, 'ko', 'name', 'ģ§„ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(28073, 24195, 'en', 'name', 'Akaki Tsereteli State University'),
(28074, 24195, 'hy', 'name', 'Ō±ÕÆÕ”ÕÆÕ« Ō¾Õ„Ö€Õ„Õ©Õ„Õ¬Õ«Õ« Õ”Õ¶Õ¾Õ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(28075, 24195, 'ka', 'name', 'įƒ„įƒ£įƒ—įƒįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28076, 24196, 'id', 'name', 'Universitas Nusantara Manado'),
(28077, 24197, 'en', 'name', 'Rajapark Institute'),
(28078, 24197, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø£ąø±ąøŠąø•ą¹Œąø ąø²ąø„ąø¢ą¹Œ'),
(28079, 24198, 'en', 'name', 'Korea Nazarene University'),
(28080, 24198, 'ko', 'name', 'ė‚˜ģ‚¬ė ›ėŒ€ķ•™źµ'),
(28081, 24199, 'en', 'name', 'North Sulawesi University of Technology'),
(28082, 24199, 'id', 'name', 'Universitas Teknologi Sulawesi Utara'),
(28083, 24200, 'en', 'name', 'Chungwoon University'),
(28084, 24200, 'ko', 'name', 'ģ²­ģš“ėŒ€ķ•™źµ'),
(28085, 24201, 'en', 'name', 'Southeast Bangkok College'),
(28086, 24201, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø‹ąø²ąø˜ą¹Œąø­ąøµąøŖąø—ą¹Œąøšąø²ąø‡ąøąø­ąø'),
(28087, 24202, 'en', 'name', 'Daegu National University of Education'),
(28088, 24202, 'ko', 'name', 'ėŒ€źµ¬źµģœ”ėŒ€ķ•™źµ'),
(28089, 24203, 'en', 'name', 'Korea Baptist Theological University and Seminary'),
(28090, 24203, 'ko', 'name', 'ģ¹Øė”€ģ‹ ķ•™ėŒ€ķ•™źµ'),
(28091, 24204, 'en', 'name', 'University of Marketing and Distribution Sciences'),
(28092, 24204, 'ja', 'name', 'ęµé€šē§‘å­¦å¤§å­¦'),
(28093, 24205, 'en', 'name', 'Baika Women''s University'),
(28094, 24205, 'ja', 'name', 'ę¢…čŠ±å„³å­å¤§å­¦'),
(28095, 24206, 'no_lang_code', 'name', 'Otemon Gakuin University'),
(28096, 24206, 'ja', 'name', '追手門学院大学'),
(28097, 24207, 'no_lang_code', 'name', 'Tsukuba Gakuin University'),
(28098, 24207, 'ja', 'name', '筑波学院大学'),
(28099, 24208, 'en', 'name', 'Hanbuk University'),
(28100, 24209, 'en', 'name', 'Thongsook College'),
(28101, 24209, 'th', 'name', 'วณทยาคัยทองสุข'),
(28102, 24210, 'en', 'name', 'Hanzhong University'),
(28103, 24210, 'ko', 'name', 'ķ•œģ¤‘ėŒ€ķ•™źµ'),
(28104, 24211, 'id', 'name', 'Universitas 45 Mataram'),
(28105, 24212, 'en', 'name', 'Tsukuba International University'),
(28106, 24212, 'ja', 'name', 'ć¤ćć°å›½éš›å¤§å­¦'),
(28107, 24213, 'id', 'name', 'Universitas Gunung Rinjani'),
(28108, 24214, 'en', 'name', 'Chiba University of Commerce'),
(28109, 24214, 'ja', 'name', 'åƒč‘‰å•†ē§‘å¤§å­¦'),
(28110, 24215, 'en', 'name', 'Asian University'),
(28111, 24215, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø­ą¹€ąøŠąøµąø¢ąø™'),
(28112, 24216, 'en', 'name', 'Buriram Rajabhat University'),
(28113, 24216, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøšąøøąø£ąøµąø£ąø±ąø”ąø¢ą¹Œ'),
(28114, 24217, 'en', 'name', 'Gongju National University of Education'),
(28115, 24217, 'ko', 'name', 'ź³µģ£¼źµģœ”ėŒ€ķ•™źµ'),
(28116, 24218, 'en', 'name', 'Rajabhat Rajanagarindra University'),
(28117, 24218, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø£ąø²ąøŠąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(28118, 24219, 'en', 'name', 'Chaiyaphum Rajabhat University'),
(28119, 24219, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŠąø±ąø¢ąø ąø¹ąø”ąø“'),
(28120, 24220, 'en', 'name', 'Kyungdong University'),
(28121, 24221, 'en', 'name', 'Hansei University'),
(28122, 24221, 'ko', 'name', 'ķ•œģ„øėŒ€ķ•™źµ'),
(28123, 24222, 'id', 'name', 'Universitas Islam Al-Azhar Mataram'),
(28124, 24223, 'no_lang_code', 'name', 'Nagoya Keizai University'),
(28125, 24223, 'ja', 'name', 'åå¤å±‹ēµŒęøˆå¤§å­¦'),
(28126, 24224, 'en', 'name', 'Bunka Gakuen University'),
(28127, 24224, 'ja', 'name', 'ę–‡åŒ–å­¦åœ’å¤§å­¦'),
(28128, 24225, 'en', 'name', 'Kogakkan University'),
(28129, 24225, 'ja', 'name', 'ēš‡å­øé¤Øå¤§å­¦'),
(28130, 24226, 'en', 'name', 'Joong-Ang Sangha University'),
(28131, 24227, 'en', 'name', 'Howon University'),
(28132, 24227, 'ko', 'name', 'ķ˜øģ›ėŒ€ķ•™źµ'),
(28133, 24228, 'en', 'name', 'Gwangju National University of Education'),
(28134, 24228, 'ko', 'name', 'ź“‘ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(28135, 24229, 'en', 'name', 'Rajamangala University of Technology Lanna'),
(28136, 24229, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø„ą¹‰ąø²ąø™ąø™ąø²'),
(28137, 24230, 'no_lang_code', 'name', 'Gwangju University'),
(28138, 24230, 'ko', 'name', 'ź“‘ģ£¼ėŒ€ķ•™źµ'),
(28139, 24231, 'id', 'name', 'UNIVERSITAS MUHAMMADIYAH MATARAM'),
(28140, 24231, 'en', 'name', 'University of Muhammadiyah Mataram'),
(28141, 24232, 'en', 'name', 'Kwangju Women''s University'),
(28142, 24232, 'ko', 'name', 'ź“‘ģ£¼ģ—¬ģžėŒ€ķ•™źµ'),
(28143, 24233, 'en', 'name', 'Honam Theological University and Seminary'),
(28144, 24233, 'ko', 'name', 'ķ˜øė‚Øģ‹ ķ•™ėŒ€ķ•™źµ'),
(28145, 24234, 'en', 'name', 'Rustavi Academy of Higher Education'),
(28146, 24235, 'no_lang_code', 'name', 'Sanno University'),
(28147, 24235, 'ja', 'name', 'ē”£ę„­čƒ½ēŽ‡å¤§å­¦'),
(28148, 24236, 'en', 'name', 'Honam University'),
(28149, 24236, 'ko', 'name', 'ķ˜øė‚ØėŒ€ķ•™źµ'),
(28150, 24237, 'en', 'name', 'Kwangshin University'),
(28151, 24238, 'no_lang_code', 'name', 'Seoul Jangsin University'),
(28152, 24239, 'en', 'name', 'Chiangrai College'),
(28153, 24239, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøŠąøµąø¢ąø‡ąø£ąø²ąø¢'),
(28154, 24240, 'en', 'name', 'Hanlyo University'),
(28155, 24240, 'ko', 'name', 'ķ•œė ¤ėŒ€ķ•™źµ'),
(28156, 24241, 'en', 'name', 'Gyeongju University'),
(28157, 24241, 'ko', 'name', 'ź²½ģ£¼ėŒ€ķ•™źµ'),
(28158, 24242, 'en', 'name', 'Nusa Tenggara Barat University'),
(28159, 24242, 'id', 'name', 'Universitas Nusa Tenggara Barat'),
(28160, 24243, 'en', 'name', 'Uiduk University'),
(28161, 24243, 'ko', 'name', 'ģœ„ė•ėŒ€ķ•™źµ'),
(28162, 24244, 'en', 'name', 'Ekvtime Takaishvili Teaching University'),
(28163, 24244, 'ka', 'name', 'įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ ā€žįƒ įƒ•įƒįƒšįƒ˜ā€œ'),
(28164, 24245, 'id', 'name', 'Universitas Nusa Nipa Maumere'),
(28165, 24246, 'id', 'name', 'Institut Sains dan Teknologi TD Pardede'),
(28166, 24246, 'en', 'name', 'TD Pardede Institute of Science and Technology'),
(28167, 24247, 'no_lang_code', 'name', 'Baekseok University'),
(28168, 24247, 'ko', 'name', 'ė°±ģ„ėŒ€ķ•™źµ'),
(28169, 24248, 'id', 'name', 'Institut Teknologi Medan'),
(28170, 24249, 'en', 'name', 'Sokhumi State University'),
(28171, 24249, 'hy', 'name', 'ÕÕøÖ‚Õ­ÕøÖ‚Õ“Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(28172, 24249, 'ka', 'name', 'įƒ”įƒįƒ®įƒ£įƒ›įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28173, 24250, 'en', 'name', 'Al-Azhar University'),
(28174, 24250, 'id', 'name', 'Universitas Al-Azhar'),
(28175, 24251, 'en', 'name', 'Kalasin University'),
(28176, 24251, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø²ąø¬ąøŖąø“ąø™ąø˜ąøøą¹Œ'),
(28177, 24252, 'id', 'name', 'Universitas Al Washliyah'),
(28178, 24253, 'en', 'name', 'Kamphaeng Phet Rajabhat University'),
(28179, 24253, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøąø³ą¹ąøžąø‡ą¹€ąøžąøŠąø£'),
(28180, 24254, 'en', 'name', 'Kanchanaburi Rajabhat University'),
(28181, 24254, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøąø²ąøąøˆąø™ąøšąøøąø£ąøµ'),
(28182, 24255, 'en', 'name', 'Anyang University'),
(28183, 24255, 'ko', 'name', 'ģ•ˆģ–‘ėŒ€ķ•™źµ'),
(28184, 24256, 'en', 'name', 'North Eastern University'),
(28185, 24256, 'th', 'name', 'ดหาวณทยาคัยภาคตะวันออกเฉียงเหนือ'),
(28186, 24257, 'id', 'name', 'Universitas Dian Nusantara'),
(28187, 24258, 'en', 'name', 'IB Euro-Caucasus University'),
(28188, 24259, 'en', 'name', 'North Sumatra Islamic University'),
(28189, 24259, 'id', 'name', 'Universitas Islam Sumatera Utara'),
(28190, 24260, 'en', 'name', 'Museum of Contemporary Art Chicago'),
(28191, 24261, 'id', 'name', 'Universitas Katolik Santo Thomas'),
(28192, 24262, 'id', 'name', 'Universitas Methodist Indonesia'),
(28193, 24263, 'en', 'name', 'Hyupsung University'),
(28194, 24263, 'ko', 'name', 'ķ˜‘ģ„±ėŒ€ķ•™źµ'),
(28195, 24264, 'id', 'name', 'Universitas Muhammadiyah Sumatera Utara'),
(28196, 24265, 'en', 'name', 'Suwon Catholic University'),
(28197, 24266, 'en', 'name', 'Yewon Arts University'),
(28198, 24266, 'ko', 'name', 'ģ˜ˆģ›ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(28199, 24267, 'en', 'name', 'Bangkok Business College'),
(28200, 24267, 'th', 'name', 'ą¹‚ąø£ąø‡ą¹€ąø£ąøµąø¢ąø™ąøąø£ąøøąø‡ą¹€ąø—ąøžąøąø²ąø£ąøšąø±ąøąøŠąøµąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(28201, 24268, 'en', 'name', 'Gyeongin National University of Education');
INSERT INTO `ror_settings` VALUES
(28202, 24268, 'ko', 'name', 'ź²½ģøźµģœ”ėŒ€ķ•™źµ'),
(28203, 24269, 'en', 'name', 'Foundation for Research on Information Technologies in Society'),
(28204, 24270, 'en', 'name', 'Mary Bridge Children''s Health Center'),
(28205, 24271, 'fr', 'name', 'Institut du Sahel'),
(28206, 24272, 'it', 'name', 'Istituto Guglielmo Tagliacarne'),
(28207, 24273, 'en', 'name', 'HopeHealth'),
(28208, 24274, 'no_lang_code', 'name', 'Eurocarbon (Netherlands)'),
(28209, 24275, 'en', 'name', 'Institute of Nuclear Physics'),
(28210, 24276, 'no_lang_code', 'name', 'Cybula (United Kingdom)'),
(28211, 24277, 'en', 'name', 'Qidong Liver Cancer Prevention Research'),
(28212, 24278, 'no_lang_code', 'name', 'Horiba (United Kingdom)'),
(28213, 24279, 'en', 'name', 'Hopa Mountain'),
(28214, 24280, 'en', 'name', 'Cure 4 The Kids Foundation'),
(28215, 24281, 'en', 'name', 'Friendship House'),
(28216, 24282, 'en', 'name', 'Health Charities Coalition of Canada'),
(28217, 24283, 'mt', 'name', 'Fondazzjoni Temi Zammit'),
(28218, 24284, 'no_lang_code', 'name', 'International Technology Products'),
(28219, 24285, 'en', 'name', 'LUNGevity Foundation'),
(28220, 24286, 'en', 'name', 'Magic Valley Arts Council'),
(28221, 24287, 'en', 'name', 'International Centre for Genetic Engineering and Biotechnology'),
(28222, 24288, 'es', 'name', 'Fundación Vía Libre'),
(28223, 24289, 'en', 'name', 'WYSO Radio Station'),
(28224, 24290, 'no_lang_code', 'name', 'Advanced Hall Sensors (United Kingdom)'),
(28225, 24291, 'en', 'name', 'NorthEast Independent Living Services'),
(28226, 24292, 'en', 'name', 'Institute for Schools of the Future'),
(28227, 24293, 'no_lang_code', 'name', 'Lajovic Tuba Embalaža (Slovenia)'),
(28228, 24294, 'en', 'name', 'Center for Prevention Services'),
(28229, 24295, 'en', 'name', 'Kennedy–King College'),
(28230, 24296, 'no_lang_code', 'name', 'Euroalarm (Czechia)'),
(28231, 24297, 'en', 'name', 'Jorvik Viking Centre'),
(28232, 24298, 'en', 'name', 'Algerian Petroleum Institute'),
(28233, 24298, 'fr', 'name', 'Institut AlgƩrien du PƩtrole'),
(28234, 24299, 'en', 'name', 'Cannon Cancer Ministry'),
(28235, 24300, 'no_lang_code', 'name', 'Svar Life Science (Netherlands)'),
(28236, 24301, 'no_lang_code', 'name', 'Deutsche Montan Technologie (Germany)'),
(28237, 24302, 'no_lang_code', 'name', 'NovaTarg Therapeutics (United States)'),
(28238, 24303, 'no_lang_code', 'name', 'Pfeiffer Vacuum (France)'),
(28239, 24304, 'no_lang_code', 'name', 'Hydro International (Ireland)'),
(28240, 24305, 'en', 'name', 'Adventist HealthCare Shady Grove Medical Center'),
(28241, 24306, 'no_lang_code', 'name', 'Cybergenetics (United States)'),
(28242, 24307, 'en', 'name', 'International College of Applied Kinesiology-USA'),
(28243, 24308, 'en', 'name', 'Suncoast Health Council'),
(28244, 24309, 'fr', 'name', 'Agence Nationale des FrƩquences'),
(28245, 24310, 'no_lang_code', 'name', 'Hydrion (Netherlands)'),
(28246, 24311, 'no_lang_code', 'name', 'Hybrizyme (United States)'),
(28247, 24312, 'no_lang_code', 'name', 'Lymphedema Therapy (United States)'),
(28248, 24313, 'no_lang_code', 'name', 'Kypha (United States)'),
(28249, 24314, 'no_lang_code', 'name', 'AI Biosciences (United States)'),
(28250, 24315, 'en', 'name', 'Rise Adventures'),
(28251, 24316, 'de', 'name', 'Bundeskriminalamt'),
(28252, 24316, 'en', 'name', 'Federal Criminal Police Office'),
(28253, 24317, 'en', 'name', 'Lake Simcoe Region Conservation Authority'),
(28254, 24318, 'no_lang_code', 'name', 'Cycleco (France)'),
(28255, 24319, 'en', 'name', 'Riordan Clinic'),
(28256, 24320, 'en', 'name', 'Richard J. Daley College'),
(28257, 24321, 'en', 'name', 'Animal Production Institute'),
(28258, 24322, 'en', 'name', 'Stony Brook School'),
(28259, 24323, 'en', 'name', 'Consortium for Coordination of Research activities Concerning the Venice Lagoon System'),
(28260, 24323, 'it', 'name', 'Consorzio per il coordinamento delle ricerche inerenti al sistema lagunare di Venezia'),
(28261, 24324, 'en', 'name', 'El Paso Children''s Hospital'),
(28262, 24325, 'no_lang_code', 'name', 'Danaher (Belgium)'),
(28263, 24326, 'en', 'name', 'Olive–Harvey College'),
(28264, 24327, 'en', 'name', 'Caulfield Hospital'),
(28265, 24328, 'en', 'name', 'Department of Embryology'),
(28266, 24329, 'en', 'name', 'Baton Rouge Area Foundation'),
(28267, 24330, 'es', 'name', 'Fundación Pública Galega de Medicina Xenómica'),
(28268, 24330, 'en', 'name', 'Genomic Medicine Group'),
(28269, 24331, 'en', 'name', 'Biotechnology Research Institute'),
(28270, 24332, 'en', 'name', 'Harry S Truman College'),
(28271, 24333, 'en', 'name', 'International Documentary Association'),
(28272, 24334, 'en', 'name', 'Harold Washington College'),
(28273, 24335, 'no_lang_code', 'name', 'Nuova Quasco (Italy)'),
(28274, 24336, 'no_lang_code', 'name', 'Debiopharm Group (Canada)'),
(28275, 24337, 'en', 'name', 'University Memory and Aging Center'),
(28276, 24338, 'it', 'name', 'Fondazione Lelio e Lisli Basso'),
(28277, 24339, 'en', 'name', 'Malcolm X College'),
(28278, 24340, 'en', 'name', 'NorthEast Regional Epilepsy Group'),
(28279, 24341, 'no_lang_code', 'name', 'Maurer (Germany)'),
(28280, 24342, 'en', 'name', 'Wilbur Wright College'),
(28281, 24343, 'no_lang_code', 'name', 'Bombardier (United Kingdom)'),
(28282, 24344, 'en', 'name', 'Iona Senior Services'),
(28283, 24345, 'no_lang_code', 'name', 'Associated British Foods (United Kingdom)'),
(28284, 24346, 'en', 'name', 'Summit County Juvenile Court'),
(28285, 24347, 'no_lang_code', 'name', 'Era-Maptec (Ireland)'),
(28286, 24348, 'es', 'name', 'Asociación de Empresarios Textiles de la Comunidad Valenciana'),
(28287, 24349, 'en', 'name', 'International Community of Women Living with HIV'),
(28288, 24350, 'no_lang_code', 'name', 'Lumos Pharma (United States)'),
(28289, 24351, 'no_lang_code', 'name', 'Rigel (United States)'),
(28290, 24352, 'it', 'name', 'Fondazione Italiana per la Ricerca in Agricoltura Biologica e Biodinamica'),
(28291, 24353, 'en', 'name', 'Incheon Catholic University'),
(28292, 24353, 'ko', 'name', 'ģøģ²œź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(28293, 24354, 'en', 'name', 'Leibniz Institute for the German Language'),
(28294, 24354, 'de', 'name', 'Leibniz-Institut für Deutsche Sprache'),
(28295, 24355, 'en', 'name', 'Nation University'),
(28296, 24355, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø™ąøŠąø±ą¹ˆąø™'),
(28297, 24356, 'no_lang_code', 'name', 'J P Kenny'),
(28298, 24357, 'en', 'name', 'Loei Rajabhat University'),
(28299, 24357, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąø„ąø¢'),
(28300, 24358, 'pt', 'name', 'Hospital do Divino EspĆ­rito Santo'),
(28301, 24359, 'en', 'name', 'Thepsatri Rajabhat University'),
(28302, 24359, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąø—ąøžąøŖąø•ąø£ąøµąø„ąøžąøšąøøąø£ąøµ'),
(28303, 24360, 'id', 'name', 'Universitas Pembinaan Masyarakat Indonesia Medan'),
(28304, 24361, 'no_lang_code', 'name', 'Four Elements Capital (United Kingdom)'),
(28305, 24362, 'no_lang_code', 'name', 'Bombardier (Italy)'),
(28306, 24363, 'en', 'name', 'Grigol Robakidze University'),
(28307, 24363, 'ka', 'name', 'įƒ’įƒ įƒ˜įƒ’įƒįƒš įƒ įƒįƒ‘įƒįƒ„įƒ˜įƒ«įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28308, 24364, 'no_lang_code', 'name', 'Instantview (United Kingdom)'),
(28309, 24365, 'no_lang_code', 'name', 'Elektro Ljubljana (Slovenia)'),
(28310, 24366, 'no_lang_code', 'name', 'Stahl-Zentrum (Germany)'),
(28311, 24367, 'en', 'name', 'Jeonju National University of Education'),
(28312, 24367, 'ko', 'name', 'ģ „ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(28313, 24368, 'en', 'name', 'Jesus University'),
(28314, 24369, 'en', 'name', 'St James''s University Hospital'),
(28315, 24370, 'en', 'name', 'Christian University of Thailand'),
(28316, 24370, 'th', 'name', 'ดหาวณทยาคัยครณสเตียน'),
(28317, 24371, 'en', 'name', 'Caucasus Academic Centre'),
(28318, 24372, 'it', 'name', 'Consorzio Interuniversitario per la Ricerca Tecnologica Nucleare'),
(28319, 24373, 'en', 'name', 'Nakhon Pathom Rajabhat University'),
(28320, 24373, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąø›ąøąø”'),
(28321, 24374, 'en', 'name', 'Caucasus International University'),
(28322, 24375, 'en', 'name', 'Rajamangala University of Technology Rattanakosin'),
(28323, 24375, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø£ąø±ąø•ąø™ą¹‚ąøąøŖąø“ąø™ąø—ąø£ą¹Œ'),
(28324, 24376, 'en', 'name', 'Caucasus University'),
(28325, 24376, 'ka', 'name', 'įƒ™įƒįƒ•įƒ™įƒįƒ”įƒ˜įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28326, 24377, 'en', 'name', 'Classical and Traditional Medicine Academy'),
(28327, 24378, 'id', 'name', 'Universitas Sisingamangaraja XII'),
(28328, 24379, 'en', 'name', 'Saengtham College'),
(28329, 24379, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąøŖąø‡ąø˜ąø£ąø£ąø”'),
(28330, 24380, 'en', 'name', 'Shizuoka Sangyo University'),
(28331, 24380, 'ja', 'name', 'é™å²”ē”£ę„­å¤§å­¦'),
(28332, 24381, 'en', 'name', 'International University of Korea'),
(28333, 24381, 'ko', 'name', 'ķ•œźµ­źµ­ģ œėŒ€ķ•™źµ'),
(28334, 24382, 'en', 'name', 'Iwate Prefectural University'),
(28335, 24382, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹å¤§å­¦'),
(28336, 24383, 'en', 'name', 'Musamus Merauke University'),
(28337, 24383, 'id', 'name', 'Universitas Musamus Merauke'),
(28338, 24384, 'en', 'name', 'Samtskhe-Javakheti State University'),
(28339, 24384, 'ka', 'name', 'įƒ”įƒįƒ›įƒŖįƒ®įƒ”-įƒÆįƒįƒ•įƒįƒ®įƒ”įƒ—įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28340, 24385, 'en', 'name', 'University of Human Arts and Sciences'),
(28341, 24385, 'ja', 'name', 'äŗŗé–“ē·åˆē§‘å­¦å¤§å­¦'),
(28342, 24386, 'no_lang_code', 'name', 'Vongchavalitkul University'),
(28343, 24386, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø§ąø‡ąø©ą¹ŒąøŠąø§ąø„ąø“ąø•ąøąøøąø„'),
(28344, 24387, 'no_lang_code', 'name', 'Momoyama Gakuin University'),
(28345, 24387, 'ja', 'name', 'ę”ƒå±±å­¦é™¢å¤§å­¦'),
(28346, 24388, 'en', 'name', 'Kutaisi Institute of Medicine'),
(28347, 24389, 'en', 'name', 'International University of Kagoshima'),
(28348, 24389, 'ja', 'name', 'é¹æå…å³¶å›½éš›å¤§å­¦'),
(28349, 24390, 'en', 'name', 'Nakhon Ratchasima Rajabhat University'),
(28350, 24390, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąø£ąø²ąøŠąøŖąøµąø”ąø²'),
(28351, 24391, 'en', 'name', 'Georgian State University of Subtropical Agriculture'),
(28352, 24391, 'ru', 'name', 'Š“Ń€ŃƒŠ·ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃƒŠ±Ń‚Ń€Š¾ŠæŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(28353, 24392, 'en', 'name', 'Transnational Law and Business University'),
(28354, 24392, 'ko', 'name', 'źµ­ģ œė²•ė„ ź²½ģ˜ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(28355, 24393, 'en', 'name', 'Kamakura Women''s University'),
(28356, 24393, 'ja', 'name', '鎌倉儳子大学'),
(28357, 24394, 'no_lang_code', 'name', 'Chaopraya University'),
(28358, 24394, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøˆą¹‰ąø²ąøžąø£ąø°ąø¢ąø²'),
(28359, 24395, 'en', 'name', 'Heisei College of Music'),
(28360, 24395, 'ja', 'name', '平成音愽大学'),
(28361, 24396, 'en', 'name', 'Toyama University of International Studies'),
(28362, 24396, 'ja', 'name', 'åÆŒå±±å›½éš›å¤§å­¦'),
(28363, 24397, 'en', 'name', 'Niigata University of Management'),
(28364, 24397, 'ja', 'name', 'ę–°ę½ŸēµŒå–¶å¤§å­¦'),
(28365, 24398, 'id', 'name', 'Universitas Muara Bungo'),
(28366, 24399, 'en', 'name', 'University of Central Thailand'),
(28367, 24399, 'th', 'name', 'ดหาวณทยาคัยภาคกคาง'),
(28368, 24400, 'en', 'name', 'Youngnam Foreign Language College'),
(28369, 24400, 'ko', 'name', 'ģ˜ė‚Ø 외국얓 ėŒ€ķ•™'),
(28370, 24401, 'en', 'name', 'Kanagawa University of Human Services'),
(28371, 24401, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹äæå„ē¦ē„‰å¤§å­¦'),
(28372, 24402, 'en', 'name', 'Petre Shotadze Tbilisi Medical Academy'),
(28373, 24402, 'ka', 'name', 'įƒžįƒ”įƒ¢įƒ įƒ” įƒØįƒįƒ—įƒįƒ«įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(28374, 24403, 'en', 'name', 'Mokpo Catholic University'),
(28375, 24403, 'ko', 'name', 'ėŖ©ķ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(28376, 24404, 'id', 'name', 'Universitas Iqra Buru'),
(28377, 24405, 'en', 'name', 'Kanazawa College of Art'),
(28378, 24405, 'ja', 'name', 'é‡‘ę²¢ē¾Žč”“å·„čŠøå¤§å­¦'),
(28379, 24406, 'en', 'name', 'Mokpo National Maritime University'),
(28380, 24406, 'ko', 'name', 'ėŖ©ķ¬ķ•“ģ–‘ėŒ€ķ•™źµ'),
(28381, 24407, 'en', 'name', 'Shota Rustaveli Theatre and Film Georgia State University'),
(28382, 24407, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒØįƒįƒ—įƒ įƒ įƒ£įƒ”įƒ—įƒįƒ•įƒ”įƒšįƒ˜įƒ” įƒ—įƒ”įƒįƒ¢įƒ įƒ˜įƒ” įƒ“įƒ įƒ™įƒ˜įƒœįƒįƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28383, 24408, 'en', 'name', 'Nakhon Sawan Rajabhat University'),
(28384, 24408, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąøŖąø§ąø£ąø£ąø„ą¹Œ'),
(28385, 24409, 'no_lang_code', 'name', 'Chodang University'),
(28386, 24409, 'ko', 'name', 'ģ“ˆė‹¹ėŒ€ķ•™źµ'),
(28387, 24410, 'id', 'name', 'Universitas Soerjo Ngawi'),
(28388, 24411, 'en', 'name', 'Gwangju Catholic University'),
(28389, 24411, 'ko', 'name', 'ź“‘ģ£¼ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(28390, 24412, 'en', 'name', 'Geumgang University'),
(28391, 24412, 'ko', 'name', 'źøˆź°•ėŒ€ķ•™źµ'),
(28392, 24413, 'en', 'name', 'Hanshin University'),
(28393, 24413, 'ko', 'name', 'ķ•œģ‹ ėŒ€ķ•™źµ'),
(28394, 24414, 'en', 'name', 'David Agmashenebeli University of Georgia'),
(28395, 24414, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ“įƒįƒ•įƒ˜įƒ— įƒįƒ¦įƒ›įƒįƒØįƒ”įƒœįƒ”įƒ‘įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28396, 24415, 'en', 'name', 'Catholic University of Pusan'),
(28397, 24415, 'ko', 'name', 'ė¶€ģ‚°ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(28398, 24416, 'en', 'name', 'Busan National University of Education'),
(28399, 24416, 'ko', 'name', 'ė¶€ģ‚°źµģœ”ėŒ€ķ•™źµ'),
(28400, 24417, 'en', 'name', 'Busan University of Foreign Studies'),
(28401, 24417, 'ko', 'name', 'ė¶€ģ‚°ģ™øźµ­ģ–“ėŒ€ķ•™źµ'),
(28402, 24418, 'en', 'name', 'Tongmyong University'),
(28403, 24418, 'ko', 'name', 'ė™ėŖ… ėŒ€ķ•™źµ'),
(28404, 24419, 'no_lang_code', 'name', 'Nishikyushu University'),
(28405, 24419, 'ja', 'name', 'č„æä¹å·žå¤§å­¦'),
(28406, 24420, 'en', 'name', 'Youngsan University'),
(28407, 24420, 'ko', 'name', 'ģ˜ģ‚°ėŒ€ķ•™źµ'),
(28408, 24421, 'en', 'name', 'Kaichi International University'),
(28409, 24421, 'ja', 'name', 'é–‹ę™ŗå›½éš›å¤§å­¦'),
(28410, 24422, 'no_lang_code', 'name', 'Reitaku University'),
(28411, 24422, 'ja', 'name', '麗澤大学'),
(28412, 24423, 'en', 'name', 'Niigata Sangyo University'),
(28413, 24423, 'ja', 'name', 'ę–°ę½Ÿē”£ę„­å¤§å­¦'),
(28414, 24424, 'en', 'name', 'Pyeongtaek University'),
(28415, 24424, 'ko', 'name', 'ķ‰ķƒėŒ€ķ•™źµ'),
(28416, 24425, 'en', 'name', 'Kyoei University'),
(28417, 24425, 'ja', 'name', '共栄大学'),
(28418, 24426, 'id', 'name', 'Universitas Putra Indonesia "YPTK"'),
(28419, 24427, 'en', 'name', 'International Budo University'),
(28420, 24427, 'ja', 'name', 'å›½éš›ę­¦é“å¤§å­¦'),
(28421, 24428, 'id', 'name', 'Universitas Tamansiswa Padang'),
(28422, 24429, 'en', 'name', 'Toho College of Music'),
(28423, 24429, 'ja', 'name', 'ę±é‚¦éŸ³ę„½å¤§å­¦'),
(28424, 24430, 'en', 'name', 'Saitama Gakuen University'),
(28425, 24430, 'ja', 'name', 'åŸ¼ēŽ‰å­¦åœ’å¤§å­¦'),
(28426, 24431, 'en', 'name', 'Berea International Theological Seminary'),
(28427, 24431, 'ko', 'name', 'ė² ė¢°ģ•„źµ­ģ œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(28428, 24432, 'en', 'name', 'Georgian Aviation University'),
(28429, 24432, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒįƒ•įƒ˜įƒįƒŖįƒ˜įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28430, 24433, 'en', 'name', 'Chongshin University'),
(28431, 24433, 'ko', 'name', 'ģ“ģ‹ ėŒ€ķ•™źµ'),
(28432, 24434, 'en', 'name', 'Chugye University for the Arts'),
(28433, 24434, 'ko', 'name', 'ģ¶”ź³„ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(28434, 24435, 'en', 'name', 'Den-en Chofu University'),
(28435, 24435, 'ja', 'name', 'ē”°åœ’čŖæåøƒå­¦åœ’å¤§å­¦'),
(28436, 24436, 'en', 'name', 'Heisei International University'),
(28437, 24436, 'ja', 'name', 'å¹³ęˆå›½éš›å¤§å­¦'),
(28438, 24437, 'en', 'name', 'Seiwa University'),
(28439, 24437, 'ja', 'name', 'ęø…å’Œå¤§å­¦'),
(28440, 24438, 'en', 'name', 'Princess of Naradhiwas University'),
(28441, 24438, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø£ąø²ąø˜ąø“ąø§ąø²ąøŖąø£ąø²ąøŠąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(28442, 24439, 'id', 'name', 'Universitas Muhammadiyah Tapanuli Selatan'),
(28443, 24440, 'en', 'name', 'Kagawa Prefectural College of Health Sciences'),
(28444, 24440, 'ja', 'name', 'é¦™å·ēœŒē«‹äæå„åŒ»ē™‚å¤§å­¦'),
(28445, 24441, 'en', 'name', 'Kyushu Women''s University'),
(28446, 24441, 'ja', 'name', '九州儳子大学'),
(28447, 24442, 'id', 'name', 'Universitas Bina Darma'),
(28448, 24443, 'en', 'name', 'Korea Christian University'),
(28449, 24444, 'id', 'name', 'Universitas Iba'),
(28450, 24445, 'id', 'name', 'Universitas Kader Bangsa'),
(28451, 24446, 'id', 'name', 'Universitas Muhammadiyah Palembang'),
(28452, 24447, 'id', 'name', 'Universitas Palembang'),
(28453, 24448, 'en', 'name', 'Korean Bible University'),
(28454, 24449, 'en', 'name', 'Methodist Theological University'),
(28455, 24450, 'en', 'name', 'Pathumthani University'),
(28456, 24450, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø›ąø—ąøøąø”ąø˜ąø²ąø™ąøµ'),
(28457, 24451, 'en', 'name', 'Kyushu International University'),
(28458, 24451, 'ja', 'name', '九州国際大学'),
(28459, 24452, 'en', 'name', 'Seoul Christian University'),
(28460, 24453, 'en', 'name', 'Seoul National University of Education'),
(28461, 24453, 'ko', 'name', 'ģ„œģšøźµģœ”ėŒ€ķ•™źµ'),
(28462, 24454, 'en', 'name', 'Saint Andrew First-Called Georgian University of the Patriarchate of Georgia'),
(28463, 24454, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒžįƒįƒ¢įƒ įƒ˜įƒįƒ įƒ„įƒįƒ” įƒ¬įƒ›įƒ˜įƒ“įƒ įƒįƒœįƒ“įƒ įƒ˜įƒ įƒžįƒ˜įƒ įƒ•įƒ”įƒšįƒ¬įƒįƒ“įƒ”įƒ‘įƒ£įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28464, 24455, 'id', 'name', 'Universitas Sjakhyakirti'),
(28465, 24456, 'no_lang_code', 'name', 'Valaya Alongkorn Rajabhat University'),
(28466, 24456, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø§ą¹„ąø„ąø¢ąø­ąø„ąø‡ąøąø£ąø“ą¹Œ ą¹ƒąø™ąøžąø£ąø°ąøšąø£ąø”ąø£ąø²ąøŠąø¹ąø›ąø–ąø±ąø”ąø ą¹Œ'),
(28467, 24457, 'id', 'name', 'Universitas Tridinanti Palembang'),
(28468, 24458, 'en', 'name', 'Seoul Social Welfare Graduate University'),
(28469, 24458, 'ko', 'name', 'ģ„œģšøģ‚¬ķšŒė³µģ§€ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(28470, 24459, 'id', 'name', 'Universitas Alkhairaat'),
(28471, 24460, 'en', 'name', 'Rudny Industrial Institute'),
(28472, 24460, 'kk', 'name', 'Š ŃƒŠ“Š½Ń‹Š¹ Š˜Š½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»Š“Ń‹Ņ› Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(28473, 24461, 'en', 'name', 'Pavlodar State Pedagogical University'),
(28474, 24461, 'kk', 'name', 'ŠŸŠ°Š²Š»Š¾Š“Š°Ń€ мемлекеттік пеГагогикалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(28475, 24462, 'no_lang_code', 'name', 'Sungkonghoe University'),
(28476, 24462, 'ko', 'name', 'ģ„±ź³µķšŒėŒ€ķ•™źµ'),
(28477, 24463, 'id', 'name', 'Universitas Muhammadiyah Palu'),
(28478, 24464, 'en', 'name', 'Fatoni University'),
(28479, 24464, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŸąø²ąøąø­ąø™ąøµ'),
(28480, 24465, 'en', 'name', 'International Black Sea University'),
(28481, 24465, 'ka', 'name', 'įƒØįƒįƒ•įƒ˜ įƒ–įƒ¦įƒ•įƒ˜įƒ” įƒ”įƒįƒ”įƒ įƒ—įƒįƒØįƒįƒ įƒ˜įƒ”įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28482, 24466, 'en', 'name', 'Phetchabun Rajabhat University'),
(28483, 24466, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøŽą¹€ąøžąøŠąø£ąøšąø¹ąø£ąø“ą¹Œ'),
(28484, 24467, 'en', 'name', 'Phetchaburi Rajabhat University'),
(28485, 24467, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąøžąøŠąø£ąøšąøøąø£ąøµ'),
(28486, 24468, 'en', 'name', 'Webster University Thailand'),
(28487, 24468, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø§ąøšąøŖą¹€ąø•ąø­ąø£ą¹Œ'),
(28488, 24469, 'id', 'name', 'Universitas Mathla''ul Anwar Banten'),
(28489, 24470, 'id', 'name', 'Universitas Antakusuma'),
(28490, 24471, 'no_lang_code', 'name', 'Seinan Jo Gakuin University'),
(28491, 24471, 'ja', 'name', 'č„æå—å„³å­¦é™¢å¤§å­¦'),
(28492, 24472, 'en', 'name', 'Far East University'),
(28493, 24473, 'en', 'name', 'Pibulsongkram Rajabhat University'),
(28494, 24473, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøžąø“ąøšąø¹ąø„ąøŖąø‡ąø„ąø£ąø²ąø”'),
(28495, 24474, 'en', 'name', 'Halla University'),
(28496, 24474, 'ko', 'name', 'ķ•œė¼ėŒ€ķ•™źµ'),
(28497, 24475, 'en', 'name', 'Kobe Institute Of Computing'),
(28498, 24475, 'ja', 'name', 'ē„žęˆøęƒ…å ±å¤§å­¦é™¢å¤§å­¦'),
(28499, 24476, 'en', 'name', 'Kobe Kaisei College'),
(28500, 24476, 'ja', 'name', 'ē„žęˆøęµ·ę˜Ÿå„³å­å­¦é™¢å¤§å­¦'),
(28501, 24477, 'en', 'name', 'Kobe International University'),
(28502, 24477, 'ja', 'name', 'ē„žęˆøå›½éš›å¤§å­¦'),
(28503, 24478, 'en', 'name', 'Kobe Shinwa Women''s University'),
(28504, 24478, 'ja', 'name', 'ē„žęˆøč¦Ŗå’Œå„³å­å¤§å­¦'),
(28505, 24479, 'id', 'name', 'Universitas Muhammadiyah Parepare'),
(28506, 24480, 'en', 'name', 'Kobe Shoin Women''s University'),
(28507, 24480, 'ja', 'name', 'ē„žęˆøę¾č”­å„³å­å­¦é™¢å¤§å­¦'),
(28508, 24481, 'en', 'name', 'Daejeon Catholic University'),
(28509, 24482, 'id', 'name', 'Universitas Pasir Pangaraian'),
(28510, 24483, 'en', 'name', 'Kobe Yamate University'),
(28511, 24483, 'ja', 'name', 'ē„žęˆøå±±ę‰‹å¤§å­¦'),
(28512, 24484, 'en', 'name', 'Calvin University'),
(28513, 24484, 'ko', 'name', 'ģ¹¼ė¹ˆėŒ€ķ•™źµ'),
(28514, 24485, 'en', 'name', 'Kangnam University'),
(28515, 24485, 'ko', 'name', 'ź°•ė‚ØėŒ€ķ•™źµ'),
(28516, 24486, 'en', 'name', 'Phitsanulok University'),
(28517, 24486, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø“ąø©ąø“ąøøą¹‚ąø„ąø'),
(28518, 24487, 'id', 'name', 'Universitas Merdeka Pasuruan'),
(28519, 24488, 'en', 'name', 'Phuket Rajabhat University'),
(28520, 24488, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø ąø¹ą¹€ąøą¹‡ąø•'),
(28521, 24489, 'en', 'name', 'Kobe City University of Foreign Studies'),
(28522, 24489, 'ja', 'name', 'ē„žęˆøåø‚å¤–å›½čŖžå¤§å­¦'),
(28523, 24490, 'id', 'name', 'Universitas Yudharta Pasuruan'),
(28524, 24491, 'en', 'name', 'Muban Chombueng Rajabhat University'),
(28525, 24491, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø«ąø”ąø¹ą¹ˆąøšą¹‰ąø²ąø™ąøˆąø­ąø”ąøšąø¶ąø‡'),
(28526, 24492, 'en', 'name', 'Kobe City College of Nursing'),
(28527, 24492, 'ja', 'name', 'ē„žęˆøåø‚ēœ‹č­·å¤§å­¦'),
(28528, 24493, 'en', 'name', 'Konan Women''s University'),
(28529, 24493, 'ja', 'name', 'ē”²å—å„³å­å¤§å­¦'),
(28530, 24494, 'en', 'name', 'University of Kochi'),
(28531, 24494, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹å¤§å­¦'),
(28532, 24495, 'no_lang_code', 'name', 'Huachiew Chalermprakiet University'),
(28533, 24495, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø«ąø±ąø§ą¹€ąø‰ąøµąø¢ąø§ą¹€ąø‰ąø„ąø“ąø”ąøžąø£ąø°ą¹€ąøąøµąø¢ąø£ąø•ąø“'),
(28534, 24496, 'en', 'name', 'Georgian American University'),
(28535, 24496, 'ka', 'name', 'įƒ„įƒįƒ įƒ—įƒ£įƒš-įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ£įƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28536, 24497, 'en', 'name', 'Asia Pacific International University'),
(28537, 24497, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ą¹€ąø­ą¹€ąøŠąøµąø¢-ą¹ąø›ąø‹ąø“ąøŸąø“ąø'),
(28538, 24498, 'en', 'name', 'Sisaket Rajabhat University'),
(28539, 24498, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąø ศรีสะเกษ'),
(28540, 24499, 'en', 'name', 'Luther University'),
(28541, 24499, 'ko', 'name', 'ė£Øķ„°ėŒ€ķ•™źµ'),
(28542, 24500, 'en', 'name', 'Musashino Art University'),
(28543, 24500, 'ja', 'name', 'ę­¦č”µé‡Žē¾Žč”“å¤§å­¦'),
(28544, 24501, 'id', 'name', 'Universitas Lancang Kuning'),
(28545, 24502, 'id', 'name', 'Universitas Muhammadiyah Riau'),
(28546, 24503, 'en', 'name', 'Riau University'),
(28547, 24503, 'id', 'name', 'Universitas Riau'),
(28548, 24504, 'en', 'name', 'Tsuda University'),
(28549, 24504, 'ja', 'name', '擄田唾大学'),
(28550, 24505, 'en', 'name', 'Yong In University'),
(28551, 24505, 'ko', 'name', 'ģš©ģøėŒ€ķ•™źµ'),
(28552, 24506, 'id', 'name', 'Universitas Simalungun'),
(28553, 24507, 'no_lang_code', 'name', 'Yamanashi Eiwa College'),
(28554, 24507, 'ja', 'name', 'å±±ę¢Øč‹±å’Œå¤§å­¦'),
(28555, 24508, 'en', 'name', 'Songkhla Rajabhat University'),
(28556, 24508, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąø‡ąø‚ąø„ąø²'),
(28557, 24509, 'en', 'name', 'Al Asyariah Mandar University'),
(28558, 24509, 'id', 'name', 'Universitas Al Asyariah Mandar'),
(28559, 24510, 'id', 'name', 'Universitas Merdeka Ponorogo'),
(28560, 24511, 'en', 'name', 'Sehan University'),
(28561, 24511, 'ko', 'name', 'ģ„øķ•œėŒ€ķ•™źµ'),
(28562, 24512, 'en', 'name', 'Youngdong University'),
(28563, 24512, 'ko', 'name', 'ģ˜ė™ėŒ€ķ•™źµ'),
(28564, 24513, 'en', 'name', 'Yamanashi Prefectural University'),
(28565, 24513, 'ja', 'name', 'å±±ę¢ØēœŒē«‹å¤§å­¦'),
(28566, 24514, 'en', 'name', 'Aichi Bunkyo University'),
(28567, 24514, 'ja', 'name', 'ę„›ēŸ„ę–‡ę•™å¤§å­¦'),
(28568, 24515, 'en', 'name', 'Minami Kyushu University'),
(28569, 24515, 'ja', 'name', '南九州大学'),
(28570, 24516, 'en', 'name', 'Kyushu Lutheran College'),
(28571, 24516, 'ja', 'name', 'ä¹å·žćƒ«ćƒ¼ćƒ†ćƒ«å­¦é™¢å¤§å­¦'),
(28572, 24517, 'no_lang_code', 'name', 'Shokei College'),
(28573, 24517, 'ja', 'name', 'å°šēµ…å¤§å­¦'),
(28574, 24518, 'id', 'name', 'Universitas Sintuwu Maroso'),
(28575, 24519, 'en', 'name', 'Tokyo Women''s College of Physical Education'),
(28576, 24519, 'ja', 'name', 'ę±äŗ¬å„³å­ä½“č‚²å¤§å­¦'),
(28577, 24520, 'no_lang_code', 'name', 'Kurashiki Sakuyo University'),
(28578, 24520, 'ja', 'name', 'ćć‚‰ć—ćä½œé™½å¤§å­¦'),
(28579, 24521, 'no_lang_code', 'name', 'Hiroshima Bunka Gakuen University'),
(28580, 24521, 'ja', 'name', 'åŗƒå³¶ę–‡åŒ–å­¦åœ’å¤§å­¦'),
(28581, 24522, 'en', 'name', 'Utsunomiya Kyowa University'),
(28582, 24522, 'ja', 'name', '宇都宮共和大学'),
(28583, 24523, 'en', 'name', 'Rajamangala University of Technology Tawan-ok'),
(28584, 24523, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø•ąø°ąø§ąø±ąø™ąø­ąø­ąø'),
(28585, 24524, 'en', 'name', 'Tapee University'),
(28586, 24524, 'th', 'name', 'วณทยาคัยตาปี'),
(28587, 24525, 'id', 'name', 'Universitas Wijayakusuma Purwokerto'),
(28588, 24526, 'en', 'name', 'Kushiro Public University of Economics'),
(28589, 24526, 'ja', 'name', '釧路公立大学'),
(28590, 24527, 'en', 'name', 'Youngsan University of Son Studies'),
(28591, 24527, 'ko', 'name', 'ģ˜ģ‚°ģ„ ķ•™ėŒ€ķ•™źµ'),
(28592, 24528, 'en', 'name', 'Surindra Rajabhat University'),
(28593, 24528, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąøøąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(28594, 24529, 'en', 'name', 'International Teaching University of Georgia'),
(28595, 24529, 'ka', 'name', 'įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ "įƒ’įƒįƒ įƒ’įƒįƒ”įƒįƒšįƒ˜"'),
(28596, 24530, 'en', 'name', 'Doshisha Women''s College of Liberal Arts'),
(28597, 24530, 'ja', 'name', 'åŒåæ—ē¤¾å„³å­å¤§å­¦'),
(28598, 24531, 'no_lang_code', 'name', 'Lumnamping College'),
(28599, 24531, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø„ąøøą¹ˆąø”ąø™ą¹‰ąø³ąø›ąø“ąø‡'),
(28600, 24532, 'en', 'name', 'Eastern Asia University'),
(28601, 24532, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø­ąøµąøŖą¹€ąø—ąø“ąø£ą¹Œąø™ą¹€ąø­ą¹€ąøŠąøµąø¢'),
(28602, 24533, 'en', 'name', 'Bukkyo University'),
(28603, 24533, 'ja', 'name', '佛教大学'),
(28604, 24534, 'en', 'name', 'Tbilisi Humanitarian Teaching University'),
(28605, 24534, 'ka', 'name', 'įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ°įƒ£įƒ›įƒįƒœįƒ˜įƒ¢įƒįƒ įƒ£įƒšįƒ˜ įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28606, 24535, 'en', 'name', 'Dhonburi Rajabhat University'),
(28607, 24535, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø˜ąø™ąøšąøøąø£ąøµ'),
(28608, 24536, 'en', 'name', 'Kyrgyz State National University'),
(28609, 24536, 'ky', 'name', 'И.Арабаев атынГагы ŠšŃ‹Ń€Š³Ń‹Š· мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(28610, 24537, 'en', 'name', 'Ubon Ratchathani Rajabhat University'),
(28611, 24537, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(28612, 24538, 'en', 'name', 'Kyoto Koka Women''s University'),
(28613, 24538, 'ja', 'name', 'äŗ¬éƒ½å…‰čÆå„³å­å¤§å­¦'),
(28614, 24539, 'en', 'name', 'Kyoto Notre Dame University'),
(28615, 24539, 'ja', 'name', 'äŗ¬éƒ½ćƒŽćƒ¼ćƒˆćƒ«ćƒ€ćƒ å„³å­å¤§å­¦'),
(28616, 24540, 'en', 'name', 'Kyoto City University of Arts'),
(28617, 24540, 'ja', 'name', 'äŗ¬éƒ½åø‚ē«‹čŠøč”“å¤§å­¦'),
(28618, 24541, 'id', 'name', 'Universitas Al-washliyah Labuhanbatu'),
(28619, 24542, 'en', 'name', 'Kyoto University of Art and Design'),
(28620, 24542, 'ja', 'name', 'äŗ¬éƒ½é€ å½¢čŠøč”“å¤§å­¦'),
(28621, 24543, 'en', 'name', 'J. F. Oberlin University'),
(28622, 24543, 'ja', 'name', 'ę”œē¾Žęž—å¤§å­¦'),
(28623, 24544, 'en', 'name', 'Udon Thani Rajabhat University'),
(28624, 24544, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø­ąøøąø”ąø£ąø˜ąø²ąø™ąøµ'),
(28625, 24545, 'id', 'name', 'Universitas Sawerigading Makassar'),
(28626, 24546, 'en', 'name', 'Kyrgyz Economic University'),
(28627, 24546, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š· Экономика ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø М. Š Ń‹ŃŠŗŃƒŠ»Š±ŠµŠŗŠ¾Š²'),
(28628, 24546, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. М. Š Ń‹ŃŠŗŃƒŠ»Š±ŠµŠŗŠ¾Š²Š°'),
(28629, 24547, 'no_lang_code', 'name', 'Tokyo Kasei Gakuin University'),
(28630, 24547, 'ja', 'name', 'ę±äŗ¬å®¶ę”æå­¦é™¢å¤§å­¦'),
(28631, 24548, 'id', 'name', 'Universitas Darwan Ali'),
(28632, 24549, 'en', 'name', 'Gunma University of Health and Welfare'),
(28633, 24549, 'ja', 'name', 'ē¾¤é¦¬åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(28634, 24550, 'no_lang_code', 'name', 'Maebashi Kyoai Gakuen College'),
(28635, 24550, 'ja', 'name', 'å…±ę„›å­¦åœ’å‰ę©‹å›½éš›å¤§å­¦'),
(28636, 24551, 'en', 'name', 'Santapol College'),
(28637, 24551, 'th', 'name', 'ąø™ąø“ąø•ąø“ąøØąø²ąøŖąø•ąø£ą¹Œ ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŖąø±ąø™ąø•ąøžąø„'),
(28638, 24552, 'en', 'name', 'Maebashi Institute of Technology'),
(28639, 24552, 'ja', 'name', 'å‰ę©‹å·„ē§‘å¤§å­¦'),
(28640, 24553, 'en', 'name', 'Uttaradit Rajabhat University'),
(28641, 24553, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø­ąøøąø•ąø£ąø”ąø“ąø•ąø–ą¹Œ'),
(28642, 24554, 'en', 'name', 'Yala Rajabhat University'),
(28643, 24554, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøŽąø¢ąø°ąø„ąø²'),
(28644, 24555, 'no_lang_code', 'name', 'Seitoku University'),
(28645, 24555, 'ja', 'name', '聖徳大学'),
(28646, 24556, 'en', 'name', 'Matsumoto University'),
(28647, 24556, 'ja', 'name', 'ę¾ęœ¬å¤§å­¦'),
(28648, 24557, 'en', 'name', 'Kyrgyz State University of Construction, Transport and Architecture named after N. Isanov'),
(28649, 24557, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š°, транспорта Šø Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ им.Š.Исанова'),
(28650, 24557, 'ky', 'name', 'Š.Исанов атынГагы ŠšŃ‹Ń€Š³Ń‹Š· мамлекеттик ŠŗŃƒŃ€ŃƒŠ»ŃƒŃˆ, транспорт жана Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š° ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(28651, 24558, 'no_lang_code', 'name', 'Kinjo University'),
(28652, 24558, 'ja', 'name', '金城大学'),
(28653, 24559, 'en', 'name', 'Aichi Toho University'),
(28654, 24559, 'ja', 'name', 'ę„›ēŸ„ę±é‚¦å¤§å­¦'),
(28655, 24560, 'id', 'name', 'Universitas Dian Nuswantoro'),
(28656, 24561, 'en', 'name', 'V. Sarajishvili Tbilisi State Conservation'),
(28657, 24561, 'ka', 'name', 'įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ•.įƒ”įƒįƒ įƒįƒÆįƒ˜įƒØįƒ•įƒ˜įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ™įƒįƒœįƒ”įƒ”įƒ įƒ•įƒįƒ¢įƒįƒ įƒ˜įƒ'),
(28658, 24562, 'en', 'name', 'Nihon Fukushi University'),
(28659, 24562, 'ja', 'name', 'ę—„ęœ¬ē¦ē„‰å¤§å­¦'),
(28660, 24563, 'no_lang_code', 'name', 'Taisei Gakuin University'),
(28661, 24563, 'ja', 'name', 'å¤Ŗęˆå­¦é™¢å¤§å­¦'),
(28662, 24564, 'id', 'name', 'Universitas Muhammadiyah Semarang'),
(28663, 24565, 'en', 'name', 'Kyrgyz-Russian Slavic University named after B.N. Yeltsin'),
(28664, 24565, 'ru', 'name', 'ŠšŠøŃ€Š³ŠøŠ·ŃŠŗŠ¾-российский ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Бориса Š•Š»ŃŒŃ†ŠøŠ½Š°'),
(28665, 24566, 'en', 'name', 'Osaka University of Arts'),
(28666, 24566, 'ja', 'name', 'å¤§é˜ŖčŠøč”“å¤§å­¦'),
(28667, 24567, 'en', 'name', 'David Tvildiani Medical University'),
(28668, 24567, 'ka', 'name', 'įƒ“įƒįƒ•įƒ˜įƒ— įƒ¢įƒ•įƒ˜įƒšįƒ“įƒ˜įƒįƒœįƒ˜įƒ” ეახ. įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28669, 24568, 'id', 'name', 'Universitas Pandanaran'),
(28670, 24569, 'id', 'name', 'Universitas Wahid Hasyim'),
(28671, 24570, 'en', 'name', 'Japan Lutheran College'),
(28672, 24570, 'ja', 'name', 'ćƒ«ćƒ¼ćƒ†ćƒ«å­¦é™¢å¤§å­¦'),
(28673, 24571, 'en', 'name', 'Tokiwa University'),
(28674, 24571, 'ja', 'name', '常磐大学'),
(28675, 24572, 'en', 'name', 'HaliƧ University'),
(28676, 24572, 'tr', 'name', 'Haliç Üniversitesi'),
(28677, 24573, 'no_lang_code', 'name', 'Shokei Gakuin University'),
(28678, 24573, 'ja', 'name', 'å°šēµ…å­¦é™¢å¤§å­¦'),
(28679, 24574, 'hi', 'name', 'Gujarat Vidyapith'),
(28680, 24574, 'gu', 'name', 'ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖŖą«€ąŖ '),
(28681, 24574, 'ta', 'name', 'ą®•ąÆą®œą®°ą®¾ą®¤ąÆ ą®µą®æą®¤ąÆą®Æą®¾ą®ŖąÆ€ą®Ÿą®®ąÆ'),
(28682, 24575, 'id', 'name', 'Universitas Sisingamangaraja XII Tapanuli'),
(28683, 24576, 'en', 'name', 'Miyagi University'),
(28684, 24576, 'ja', 'name', '宮城大学'),
(28685, 24577, 'en', 'name', 'Maharshi Dayanand Saraswati University'),
(28686, 24577, 'hi', 'name', 'ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤¦ą¤Æą¤¾ą¤Øą¤Øą„ą¤¦ ą¤øą¤°ą¤øą„ą¤µą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤…ą¤œą¤®ą„‡ą¤°'),
(28687, 24578, 'id', 'name', 'Universitas Jabal Ghafur'),
(28688, 24579, 'en', 'name', 'Nishinippon Institute of Technology'),
(28689, 24579, 'ja', 'name', 'č„æę—„ęœ¬å·„ę„­å¤§å­¦'),
(28690, 24580, 'en', 'name', 'Miyazaki Prefectural Nursing University'),
(28691, 24580, 'ja', 'name', 'å®®å“ŽēœŒē«‹ēœ‹č­·å¤§å­¦'),
(28692, 24581, 'en', 'name', 'Dr Panjabrao Deshmukh Krishi Vidyapeeth'),
(28693, 24581, 'mr', 'name', 'ą¤”ą„‰. ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ą¤°ą¤¾ą¤µ ą¤¦ą„‡ą¤¶ą¤®ą„ą¤– ą¤•ą„ƒą¤·ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(28694, 24582, 'en', 'name', 'Miyazaki International College'),
(28695, 24582, 'ja', 'name', '宮哎国際大学'),
(28696, 24583, 'en', 'name', 'Miyazaki Municipal University'),
(28697, 24583, 'ja', 'name', 'å®®å“Žå…¬ē«‹å¤§å­¦'),
(28698, 24584, 'no_lang_code', 'name', 'Miyazaki Sangyo-keiei University'),
(28699, 24584, 'ja', 'name', 'å®®å“Žē”£ę„­ēµŒå–¶å¤§å­¦'),
(28700, 24585, 'id', 'name', 'Universitas Abdurahman Saleh Situbondo'),
(28701, 24586, 'no_lang_code', 'name', 'Seisa Dohto University'),
(28702, 24586, 'ja', 'name', 'ę˜Ÿę§Žé“éƒ½å¤§å­¦'),
(28703, 24587, 'en', 'name', 'Fakir Mohan University'),
(28704, 24588, 'en', 'name', 'Japanese Red Cross Kyushu International College of Nursing'),
(28705, 24588, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ä¹å·žå›½éš›ēœ‹č­·å¤§å­¦'),
(28706, 24589, 'en', 'name', 'Lebanese Canadian University'),
(28707, 24589, 'fr', 'name', 'UniversitƩ Libano-Canadienne'),
(28708, 24590, 'id', 'name', 'Universitas Muhamadiyah Sorong'),
(28709, 24591, 'en', 'name', 'Makhanlal Chaturvedi National University of Journalism and Communication'),
(28710, 24591, 'hi', 'name', 'माखनलाल ą¤šą¤¤ą„ą¤°ą„ą¤µą„‡ą¤¦ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą¤¤ą„ą¤°ą¤•ą¤¾ą¤°ą¤æą¤¤ą¤¾ ą¤ą¤µą¤‚ ą¤øą¤‚ą¤šą¤¾ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28711, 24592, 'id', 'name', 'Universitas Kristen Papua'),
(28712, 24593, 'en', 'name', 'National Law Institute University'),
(28713, 24594, 'en', 'name', 'American University of Science and Technology'),
(28714, 24594, 'fr', 'name', 'UniversitƩ amƩricaine de sciences et technologie'),
(28715, 24594, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…ŁŠŲ±ŁƒŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ā€Ž'),
(28716, 24595, 'id', 'name', 'Universitas Subang'),
(28717, 24596, 'fr', 'name', 'Ɖcole SupĆ©rieure des Affaires'),
(28718, 24596, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ų§Ł„ŁŠŲ© لادارة الاعمال'),
(28719, 24597, 'id', 'name', 'Universitas Muhammadiyah Sukabumi'),
(28720, 24598, 'no_lang_code', 'name', 'Maharaja Ganga Singh University'),
(28721, 24598, 'hi', 'name', 'महाराजा गंगा सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą¤¾ą¤²ą¤Æ'),
(28722, 24599, 'fr', 'name', 'Al Imam Al Ouzai University'),
(28723, 24599, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ال؄مام Ų§Ł„Ų£ŁˆŲ²Ų§Ų¹ŁŠ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(28724, 24600, 'en', 'name', 'Asia University'),
(28725, 24600, 'ja', 'name', '亜瓰亜大学'),
(28726, 24601, 'en', 'name', 'Niigata University of Rehabilitation'),
(28727, 24601, 'ja', 'name', 'ę–°ę½ŸćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å¤§å­¦'),
(28728, 24602, 'no_lang_code', 'name', 'Magadh University'),
(28729, 24602, 'hi', 'name', 'मगध ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28730, 24603, 'no_lang_code', 'name', 'Al-KafaĆ t University'),
(28731, 24603, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁŲ§Ų”Ų§ŲŖ'),
(28732, 24604, 'en', 'name', 'Ministry of Foreign Affairs of Turkmenistan'),
(28733, 24604, 'ru', 'name', 'ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Šž Š˜ŠŠžŠ”Š¢Š ŠŠŠŠ«Š„ ДЕЛ Š¢Š£Š ŠšŠœŠ•ŠŠ˜Š”Š¢ŠŠŠ'),
(28734, 24605, 'id', 'name', 'Universitas Samawa'),
(28735, 24606, 'no_lang_code', 'name', 'Seisen Jogakuin College'),
(28736, 24606, 'ja', 'name', '清泉儳学院大学'),
(28737, 24607, 'id', 'name', 'Universitas Winaya Mukti'),
(28738, 24608, 'tk', 'name', 'Halkara Türkmen-Türk uniwersiteti'),
(28739, 24608, 'en', 'name', 'International Turkmen-Turkish University'),
(28740, 24608, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Ń‚ŃƒŃ€ŠŗŠ¼ŠµŠ½Š¾-Ń‚ŃƒŃ€ŠµŃ†ŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28741, 24609, 'no_lang_code', 'name', 'Dakshina Bharat Hindi Prachar Sabha'),
(28742, 24610, 'en', 'name', 'Dr. M.G.R. Educational and Research Institute'),
(28743, 24611, 'no_lang_code', 'name', 'Osaka Seikei University'),
(28744, 24611, 'ja', 'name', '大阪成蹊大学'),
(28745, 24612, 'en', 'name', 'Toyo Gakuen University'),
(28746, 24612, 'ja', 'name', 'ę±ę“‹å­¦åœ’å¤§å­¦'),
(28747, 24613, 'en', 'name', 'Meenakshi Academy of Higher Education and Research'),
(28748, 24614, 'en', 'name', 'Kwassui Women''s University'),
(28749, 24614, 'ja', 'name', '擻氓儳子大学'),
(28750, 24615, 'en', 'name', 'Nagasaki University of Foreign Studies'),
(28751, 24615, 'ja', 'name', 'é•·å“Žå¤–å›½čŖžå¤§å­¦'),
(28752, 24616, 'en', 'name', 'Nagasaki Junshin Catholic University'),
(28753, 24616, 'ja', 'name', 'é•·å“Žē“”åæƒå¤§å­¦'),
(28754, 24617, 'id', 'name', 'Universitas Wiraraja'),
(28755, 24618, 'en', 'name', 'Indonesian Institute of Informatics'),
(28756, 24618, 'id', 'name', 'Institut Informatika Indonesia'),
(28757, 24619, 'en', 'name', 'Tamil Nadu Dr. Ambedkar Law University'),
(28758, 24619, 'ta', 'name', 'ą®Ÿą®¾ą®•ąÆą®Ÿą®°ąÆ ą®…ą®®ąÆą®ŖąÆ‡ą®¤ąÆą®•ą®°ąÆ ą®šą®ŸąÆą®Ÿą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(28759, 24620, 'en', 'name', 'National Institute of Sports and Tourism of Turkmenistan'),
(28760, 24621, 'en', 'name', 'Nagasaki Wesleyan University'),
(28761, 24621, 'ja', 'name', 'é•·å“Žć‚¦ć‚Øć‚¹ćƒ¬ćƒ¤ćƒ³å¤§å­¦'),
(28762, 24622, 'hi', 'name', 'Mahatma Gandhi Chitrakoot Gramodaya Vishwavidyalaya'),
(28763, 24623, 'en', 'name', 'Meio University'),
(28764, 24623, 'ja', 'name', 'åę”œå¤§å­¦'),
(28765, 24624, 'en', 'name', 'Jalalabad State University'),
(28766, 24624, 'ky', 'name', 'Жалал-АбаГ мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(28767, 24625, 'id', 'name', 'Institut Teknologi Adhi Tama Surabaya'),
(28768, 24626, 'en', 'name', 'Turkmen National Institute of Foreign Languages named after D. Azadi'),
(28769, 24627, 'fr', 'name', 'UniversitƩ La Sagesse'),
(28770, 24627, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŁƒŁ…Ų©'),
(28771, 24628, 'en', 'name', 'Doho University'),
(28772, 24628, 'ja', 'name', 'åŒęœ‹å¤§å­¦'),
(28773, 24629, 'id', 'name', 'Universitas 17 Agustus 1945 Surabaya'),
(28774, 24630, 'en', 'name', 'State Academy of Arts of Turkmenistan'),
(28775, 24630, 'tk', 'name', 'Türkmenistanyň Döwlet çeperçilik akademiýasy'),
(28776, 24631, 'no_lang_code', 'name', 'Tokai Gakuen University'),
(28777, 24631, 'ja', 'name', 'ę±ęµ·å­¦åœ’å¤§å­¦'),
(28778, 24632, 'en', 'name', 'Makassed University'),
(28779, 24632, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المقاصد في بيروت'),
(28780, 24633, 'id', 'name', 'Universitas Dr. Soetomo'),
(28781, 24634, 'en', 'name', 'Okinawa University'),
(28782, 24634, 'ja', 'name', '沖縄大学'),
(28783, 24635, 'en', 'name', 'Elisabeth University of Music'),
(28784, 24635, 'ja', 'name', 'ć‚ØćƒŖć‚¶ćƒ™ćƒˆéŸ³ę„½å¤§å­¦'),
(28785, 24636, 'no_lang_code', 'name', 'Dr. Balasaheb Sawant Konkan Krishi Vidyapeeth'),
(28786, 24637, 'en', 'name', 'Turkmen State Institute of Culture'),
(28787, 24638, 'id', 'name', 'Universitas Hang Tuah'),
(28788, 24639, 'en', 'name', 'Kameshwar Singh Darbhanga Sanskrit University'),
(28789, 24639, 'hi', 'name', 'ą¤•ą¤¾ą¤®ą„‡ą¤¶ą„ą¤µą¤° सिंह दरभंगा ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28790, 24640, 'en', 'name', 'Okinawa Christian University'),
(28791, 24640, 'ja', 'name', 'ę²–ēø„ć‚­ćƒŖć‚¹ćƒˆę•™å­¦é™¢å¤§å­¦'),
(28792, 24641, 'en', 'name', 'Kartini University'),
(28793, 24641, 'id', 'name', 'Universitas Kartini'),
(28794, 24642, 'no_lang_code', 'name', 'Chukyo Gakuin University'),
(28795, 24642, 'ja', 'name', '中京学院大学'),
(28796, 24643, 'en', 'name', 'Beirut Islamic University'),
(28797, 24643, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© في لبنان'),
(28798, 24644, 'en', 'name', 'Turkmen State Institute of Economics and Management'),
(28799, 24644, 'ru', 'name', 'Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(28800, 24645, 'en', 'name', 'Nara Prefectural University'),
(28801, 24645, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹å¤§å­¦'),
(28802, 24646, 'en', 'name', 'Turkmen State Institute of Transport and Communication'),
(28803, 24647, 'id', 'name', 'Universitas Narotama'),
(28804, 24648, 'no_lang_code', 'name', 'Sido Kanhu Murmu University'),
(28805, 24648, 'hi', 'name', 'ą¤øą¤æą¤¦ą„‹ ą¤•ą¤¾ą¤Øą„ą¤¹ą„‚ ą¤®ą„ą¤°ą„ą¤®ą„‚ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(28806, 24649, 'en', 'name', 'Turkmen State Institute of Architecture and Construction'),
(28807, 24650, 'en', 'name', 'Lebanese International University'),
(28808, 24650, 'fr', 'name', 'UniversitƩ internationale libanaise'),
(28809, 24650, 'ar', 'name', 'الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(28810, 24651, 'id', 'name', 'Universitas Sunan Giri'),
(28811, 24652, 'en', 'name', 'Modern University for Business and Science'),
(28812, 24652, 'ar', 'name', 'الجامعة Ų§Ł„Ų­ŲÆŁŠŲ«Ų© لل؄دارة ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ…'),
(28813, 24653, 'en', 'name', 'Lakshmibai National Institute of Physical Education'),
(28814, 24654, 'en', 'name', 'American University of Technology'),
(28815, 24654, 'ar', 'name', 'دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ ŁŁ†Ų§ŁˆŲ±ŪŒ'),
(28816, 24655, 'en', 'name', 'Islamic University of Lebanon'),
(28817, 24655, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© في لبنان'),
(28818, 24656, 'en', 'name', 'City University'),
(28819, 24656, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المنار في طرابلس'),
(28820, 24657, 'id', 'name', 'Universitas WR Supratman'),
(28821, 24658, 'en', 'name', 'Tezukayama University'),
(28822, 24658, 'ja', 'name', 'åøå”šå±±å¤§å­¦'),
(28823, 24659, 'en', 'name', 'Turkmen State Power Engineering Institute'),
(28824, 24659, 'ru', 'name', 'Türkmenistanyñ Döwlet Energetika Instituty'),
(28825, 24660, 'en', 'name', 'Musashi University'),
(28826, 24660, 'ja', 'name', '武蔵大学'),
(28827, 24661, 'en', 'name', 'University Geomedi'),
(28828, 24661, 'ka', 'name', 'įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ įƒ’įƒ”įƒįƒ›įƒ”įƒ“įƒ˜'),
(28829, 24662, 'en', 'name', 'Maulana Azad National Urdu University'),
(28830, 24662, 'ur', 'name', 'Ł…ŁˆŁ„Ų§Ł†Ų§ Ų¢Ų²Ų§ŲÆ Ł†ŪŒŲ“Ł†Ł„ اردو ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(28831, 24662, 'ta', 'name', 'மவுலானா ą®†ą®šą®¾ą®¤ąÆ ą®¤ąÆ‡ą®šą®æą®Æ உருது ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(28832, 24662, 'te', 'name', 'ą°šą°°ą±ą°š:మౌలానా ą°…ą°¬ą±ą°²ą± ą°•ą°²ą°¾ą°®ą± ą°†ą°œą°¾ą°¦ą±'),
(28833, 24662, 'ml', 'name', 'ą“®ąµŒą“²ą“¾ą“Øą“¾ ą“†ą“øą“¾ą“¦ąµ ą“Øą“¾ą“·ą“Øąµ½ ą“‰ąµ¼ą“¦ąµ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(28834, 24662, 'pa', 'name', 'ਮੌਲਾਨਾ ąØ†ąØœąØ¼ąØ¾ąØ¦ ਨੈਸ਼ਨਲ ਉਰਦੂ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(28835, 24663, 'en', 'name', 'Nalsar University of Law'),
(28836, 24664, 'en', 'name', 'Osaka Electro-Communication University'),
(28837, 24664, 'ja', 'name', 'å¤§é˜Ŗé›»ę°—é€šäæ”å¤§å­¦'),
(28838, 24665, 'en', 'name', 'Potti Sreeramulu Telugu University'),
(28839, 24665, 'ta', 'name', 'ą®¤ąÆ†ą®²ąÆą®™ąÆą®•ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(28840, 24665, 'te', 'name', 'ą°Ŗą±Šą°Ÿą±ą°Ÿą°æ ą°¶ą±ą°°ą±€ą°°ą°¾ą°®ą±ą°²ą± తెలుగు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(28841, 24666, 'en', 'name', 'Limkokwing University of Creative Technology'),
(28842, 24666, 'ms', 'name', 'Universiti Teknologi Kreatif Limkokwing'),
(28843, 24667, 'en', 'name', 'Turkmen State Pedagogical Institute named Seidnazar Seydi'),
(28844, 24667, 'tk', 'name', 'Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Дейитназара ДейГи'),
(28845, 24668, 'en', 'name', 'Higher Colleges of Technology'),
(28846, 24668, 'ar', 'name', 'ŁƒŁ„ŁŠŁ‘Ų§ŲŖ Ų§Ł„ŲŖŁ‚Ł†ŁŠŁ‘Ų© Ų§Ł„Ų¹Ł„ŁŠŲ§'),
(28847, 24669, 'no_lang_code', 'name', 'Jawaharlal Nehru Krishi Vishwa Vidyalaya'),
(28848, 24669, 'hi', 'name', 'जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28849, 24670, 'en', 'name', 'UCSI University'),
(28850, 24670, 'ms', 'name', 'Universiti UCSI'),
(28851, 24671, 'en', 'name', 'LNM Institute of Information Technology'),
(28852, 24672, 'en', 'name', 'Sher-e-Kashmir University of Agricultural Sciences and Technology of Jammu'),
(28853, 24673, 'id', 'name', 'Universitas Yos Soedarso'),
(28854, 24674, 'en', 'name', 'Al Ghurair University'),
(28855, 24675, 'en', 'name', 'Niigata College of Nursing'),
(28856, 24675, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ēœ‹č­·å¤§å­¦'),
(28857, 24676, 'en', 'name', 'Niigata Institute of Technology'),
(28858, 24676, 'ja', 'name', 'ę–°ę½Ÿå·„ē§‘å¤§å­¦'),
(28859, 24677, 'id', 'name', 'Universitas Islam Batik'),
(28860, 24678, 'en', 'name', 'Niigata University of International and Information Studies'),
(28861, 24678, 'ja', 'name', 'ę–°ę½Ÿå›½éš›ęƒ…å ±å¤§å­¦'),
(28862, 24679, 'no_lang_code', 'name', 'Niigata Seiryo University'),
(28863, 24679, 'ja', 'name', 'ę–°ę½Ÿé’é™µå¤§å­¦'),
(28864, 24680, 'en', 'name', 'Malaysia University of Science and Technology'),
(28865, 24680, 'ms', 'name', 'Universiti Sains dan Teknologi Malaysia'),
(28866, 24681, 'en', 'name', 'Atomi University'),
(28867, 24681, 'ja', 'name', 'č·”č¦‹å­¦åœ’å„³å­å¤§å­¦'),
(28868, 24682, 'id', 'name', 'Universitas Nahdlatul Ulama Surakarta'),
(28869, 24683, 'en', 'name', 'Jumonji University'),
(28870, 24683, 'ja', 'name', 'åę–‡å­—å­¦åœ’å„³å­å¤§å­¦'),
(28871, 24684, 'en', 'name', 'University of Dubai'),
(28872, 24684, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© دبي'),
(28873, 24685, 'en', 'name', 'Binary University of Management & Entrepreneurship'),
(28874, 24686, 'en', 'name', 'Veer Bahadur Singh Purvanchal University'),
(28875, 24686, 'hi', 'name', 'ą¤µą„€ą¤° ą¤¬ą¤¹ą¤¾ą¤¦ą„ą¤° सिंह ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤‚ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28876, 24686, 'ta', 'name', 'ą®µąÆ€ą®°ąÆ ą®Ŗą®•ą®¤ąÆ‚ą®°ąÆ ą®šą®æą®™ąÆ ą®ŖąÆ‚ą®°ąÆą®µą®¾ą®žąÆą®šą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(28877, 24687, 'en', 'name', 'Singhania University'),
(28878, 24687, 'hi', 'name', 'ą¤øą¤æą¤‚ą¤˜ą¤¾ą¤Øą¤æą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28879, 24688, 'en', 'name', 'Nagoya University of Arts'),
(28880, 24688, 'ja', 'name', 'åå¤å±‹čŠøč”“å¤§å­¦'),
(28881, 24689, 'en', 'name', 'Jai Narain Vyas University'),
(28882, 24689, 'hi', 'name', 'जयनारायण ą¤µą„ą¤Æą¤¾ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28883, 24690, 'en', 'name', 'Sultan Idris Education University'),
(28884, 24690, 'ms', 'name', 'Universiti Pendidikan Sultan Idris'),
(28885, 24690, 'ta', 'name', 'ą®ŖąÆ†ą®£ąÆą®Ÿą®æą®Ÿą®æą®•ąÆą®•ą®¾ą®©ąÆ ą®šąÆą®²ąÆą®¤ą®¾ą®©ąÆ ą®‡ą®¤ąÆą®°ąÆ€ą®šąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(28886, 24691, 'en', 'name', 'Kobe College'),
(28887, 24691, 'ja', 'name', 'ē„žęˆøå„³å­¦é™¢å¤§å­¦'),
(28888, 24692, 'no_lang_code', 'name', 'Otemae University'),
(28889, 24692, 'ja', 'name', 'å¤§ę‰‹å‰å¤§å­¦'),
(28890, 24693, 'en', 'name', 'Nagoya University of Foreign Studies'),
(28891, 24693, 'ja', 'name', 'åå¤å±‹å¤–å›½čŖžå¤§å­¦'),
(28892, 24694, 'en', 'name', 'Kannada University'),
(28893, 24694, 'kn', 'name', 'ą²•ą²Øą³ą²Øą²” ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(28894, 24695, 'id', 'name', 'Universitas Sahid Surakarta'),
(28895, 24696, 'en', 'name', 'Sebelas Maret University'),
(28896, 24696, 'id', 'name', 'Universitas Sebelas Maret'),
(28897, 24697, 'id', 'name', 'Universitas Setia Budi'),
(28898, 24698, 'en', 'name', 'Hamdan Bin Mohammed Smart University'),
(28899, 24698, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© حمدان بن Ł…Ų­Ł…ŲÆ Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†ŁŠŲ©'),
(28900, 24699, 'en', 'name', 'Chandra Shekhar Azad University of Agriculture and Technology'),
(28901, 24699, 'hi', 'name', 'ą¤šą¤‚ą¤¦ą„ą¤° ą¤¶ą„‡ą¤–ą¤° ą¤†ą¤œą¤¾ą¤¦ ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28902, 24700, 'id', 'name', 'Universitas Slamet Riyadi'),
(28903, 24701, 'en', 'name', 'North Bengal Agricultural University'),
(28904, 24701, 'mr', 'name', 'Uttar Banga Krishi Viswavidyalaya'),
(28905, 24702, 'en', 'name', 'British University in Dubai'),
(28906, 24703, 'en', 'name', 'University of Wollongong in Dubai'),
(28907, 24703, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁˆŁ„ŁˆŁ†ŲŗŁˆŁ†Ųŗ في دبي'),
(28908, 24704, 'en', 'name', 'University of the Humanities'),
(28909, 24704, 'mn', 'name', 'Š„ŅÆŠ¼ŅÆŅÆŠ½Š»ŃŠ³ŠøŠ¹Š½ Ухааны Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(28910, 24705, 'id', 'name', 'Universitas Cordova'),
(28911, 24706, 'id', 'name', 'Universitas Islam Syekh Yusuf'),
(28912, 24707, 'en', 'name', 'Dravidian University'),
(28913, 24707, 'hi', 'name', 'ą¤¦ą„ą¤°ą¤µą¤æą¤”ą¤¼ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28914, 24707, 'ta', 'name', 'ą®¤ą®æą®°ą®¾ą®µą®æą®Ÿą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(28915, 24707, 'te', 'name', 'ą°¦ą±ą°°ą°µą°æą°” ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(28916, 24707, 'kn', 'name', 'ą²¦ą³ą²°ą²¾ą²µą²æą²” ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(28917, 24708, 'en', 'name', 'Andijan Institute of Agricultural'),
(28918, 24708, 'uz', 'name', 'Andijon qishloq xo''jalik instituti'),
(28919, 24709, 'id', 'name', 'Universitas Pramita Indonesia');
INSERT INTO `ror_settings` VALUES
(28920, 24710, 'en', 'name', 'Institute of Advanced Media Arts and Sciences'),
(28921, 24710, 'ja', 'name', 'ęƒ…å ±ē§‘å­¦čŠøč”“å¤§å­¦é™¢å¤§å­¦'),
(28922, 24711, 'en', 'name', 'Jain Vishva Bharati University'),
(28923, 24711, 'hi', 'name', 'ą¤œą„ˆą¤Ø ą¤µą¤æą¤¶ą„ą¤µ ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28924, 24712, 'en', 'name', 'Oita University of Nursing and Health Sciences'),
(28925, 24712, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹ēœ‹č­·ē§‘å­¦å¤§å­¦'),
(28926, 24713, 'no_lang_code', 'name', 'Chugoku Gakuen University'),
(28927, 24713, 'ja', 'name', 'äø­å›½å­¦åœ’å¤§å­¦'),
(28928, 24714, 'id', 'name', 'Universitas Pancasakti Tegal'),
(28929, 24715, 'id', 'name', 'Universitas Kutai Kartanegara'),
(28930, 24716, 'en', 'name', 'Andijan State Medical Institute'),
(28931, 24716, 'uz', 'name', 'Andijon Davlat Tibbiyot Instituti'),
(28932, 24717, 'no_lang_code', 'name', 'Bhupendra Narayan Mandal University'),
(28933, 24717, 'hi', 'name', 'ą¤­ą„‚ą¤Ŗą„‡ą¤‚ą¤¦ą„ą¤° नारायण मंऔल ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28934, 24718, 'no_lang_code', 'name', 'Maharaja Sriram Chandra Bhanja Deo University'),
(28935, 24718, 'or', 'name', 'ମହାରାଜା ą¬¶ą­ą¬°ą­€ą¬°ą¬¾ą¬® ą¬šą¬Øą­ą¬¦ą­ą¬° ą¬­ą¬žą­ą¬œ ଦେଓ ą¬‡ą¬‰ą¬Øą¬æą¬­ą¬°ą­ą¬øą¬æą¬Ÿą¬æ'),
(28936, 24719, 'en', 'name', 'Andijan State University'),
(28937, 24719, 'uz', 'name', 'Andijon davlat universiteti'),
(28938, 24720, 'en', 'name', 'Okayama Shoka University'),
(28939, 24720, 'ja', 'name', '岔山商科大学'),
(28940, 24721, 'en', 'name', 'Sanyo Gakuen University'),
(28941, 24721, 'ja', 'name', '山陽学園大学'),
(28942, 24722, 'en', 'name', 'Sardar Vallabhbhai Patel University of Agriculture & Technology'),
(28943, 24722, 'hi', 'name', 'सरदार ą¤µą¤²ą„ą¤²ą¤­ą¤­ą¤¾ą¤ˆ ą¤Ŗą¤Ÿą„‡ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤—ą„ą¤°ą„€ą¤•ą¤²ą„ą¤šą¤° & ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(28944, 24723, 'en', 'name', 'Muhammadiyah University of North Maluku'),
(28945, 24723, 'id', 'name', 'Universitas Muhammadiyah Maluku Utara'),
(28946, 24724, 'en', 'name', 'Aichi Sangyo University'),
(28947, 24724, 'ja', 'name', 'ę„›ēŸ„ē”£ę„­å¤§å­¦'),
(28948, 24725, 'en', 'name', 'Okinawa Prefectural College of Nursing'),
(28949, 24725, 'ja', 'name', 'ę²–ēø„ēœŒē«‹ēœ‹č­·å¤§å­¦'),
(28950, 24726, 'no_lang_code', 'name', 'Bidhan Chandra Krishi Viswavidyalaya'),
(28951, 24726, 'hi', 'name', 'बिधान ą¤šą¤Øą„ą¤¦ą„ą¤° ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28952, 24726, 'bn', 'name', 'ą¦¬ą¦æą¦§ą¦¾ą¦Øą¦šą¦Øą§ą¦¦ą§ą¦° ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(28953, 24727, 'id', 'name', 'Universitas Halmahera'),
(28954, 24728, 'en', 'name', 'Osaka University of Tourism'),
(28955, 24728, 'ja', 'name', 'å¤§é˜Ŗč¦³å…‰å¤§å­¦'),
(28956, 24729, 'en', 'name', 'Central Institute of Fisheries Education'),
(28957, 24730, 'id', 'name', 'Institut Teknologi Minaesa'),
(28958, 24731, 'id', 'name', 'Universitas Kristen Indonesia Tomohon'),
(28959, 24732, 'id', 'name', 'Universitas Sariputra Indonesia Tomohon'),
(28960, 24733, 'id', 'name', 'Universitas Tulungagung'),
(28961, 24734, 'en', 'name', 'Osaka Shoin Women''s University'),
(28962, 24734, 'ja', 'name', 'å¤§é˜ŖęØŸč”­å„³å­å¤§å­¦'),
(28963, 24735, 'en', 'name', 'Ulaanbaatar International University'),
(28964, 24735, 'mn', 'name', 'ŠžŠ»Š¾Š½ ŃƒŠ»ŃŃ‹Š½ ŃƒŠ»Š°Š°Š½Š±Š°Š°Ń‚Š°Ń€Ń‹Š½ ŠøŃ… ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(28965, 24736, 'en', 'name', 'Jizzakh Polytechnic Institute'),
(28966, 24736, 'uz', 'name', 'Jizzax Poltexnika Instituti'),
(28967, 24737, 'id', 'name', 'Universitas Kristen Indonesia Paulus'),
(28968, 24738, 'en', 'name', 'D.Y. Patil University'),
(28969, 24739, 'no_lang_code', 'name', 'Zasagt Khan institute'),
(28970, 24740, 'en', 'name', 'Soai University'),
(28971, 24740, 'ja', 'name', '相愛大学'),
(28972, 24741, 'en', 'name', 'Indian Institute of Foreign Trade'),
(28973, 24741, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤¦ą„‡ą¤¶ ą¤µą„ą¤Æą¤¾ą¤Ŗą¤¾ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(28974, 24742, 'no_lang_code', 'name', 'Kanto Gakuen University'),
(28975, 24742, 'ja', 'name', 'é–¢ę±å­¦åœ’å¤§å­¦'),
(28976, 24743, 'en', 'name', 'Indian Law Institute'),
(28977, 24744, 'en', 'name', 'University of Medicine Magway'),
(28978, 24745, 'id', 'name', 'Universitas Darul Ulum Islamic Centre Sudirman'),
(28979, 24746, 'id', 'name', 'Universitas Gunung Kidul'),
(28980, 24747, 'en', 'name', 'National Museum Institute of the History of Art, Conservation and Museology'),
(28981, 24747, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø कला इतिहास, ą¤øą¤‚ą¤°ą¤•ą„ą¤·ą¤£ ą¤ą¤µą¤‚ ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø'),
(28982, 24748, 'en', 'name', 'Mandalay Technological University'),
(28983, 24748, 'my', 'name', 'į€™į€”į€¹į€į€œį€±į€øį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(28984, 24749, 'en', 'name', 'University of Computer Studies Mandalay'),
(28985, 24750, 'en', 'name', 'Shri Lal Bahadur Shastri Rashtriya Sanskrit Vidyapeetha'),
(28986, 24750, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ लाल ą¤¬ą¤¹ą¤¾ą¤¦ą„ą¤°ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤°ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(28987, 24751, 'en', 'name', 'Otaru University of Commerce'),
(28988, 24751, 'ja', 'name', 'å°ęØ½å•†ē§‘å¤§å­¦'),
(28989, 24752, 'id', 'name', 'Institut Pertanian Intan'),
(28990, 24753, 'en', 'name', 'University of Medicine Mandalay'),
(28991, 24753, 'my', 'name', 'į€™į€”į€¹į€į€œį€±į€øį€†į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(28992, 24754, 'en', 'name', 'Seian University of Art and Design'),
(28993, 24754, 'ja', 'name', 'ęˆå®‰é€ å½¢å¤§å­¦'),
(28994, 24755, 'no_lang_code', 'name', 'Yadanabon University'),
(28995, 24755, 'my', 'name', 'ရတနာပုံ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(28996, 24756, 'id', 'name', 'Institut Sains & Teknologi Akprind Yogyakarta'),
(28997, 24757, 'en', 'name', 'Nagoya Sangyo University'),
(28998, 24757, 'ja', 'name', 'åå¤å±‹ē”£ę„­å¤§å­¦'),
(28999, 24758, 'en', 'name', 'Mawlamyine University'),
(29000, 24758, 'my', 'name', 'į€™į€±į€¬į€ŗį€œį€™į€¼į€­į€Æį€„į€ŗ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29001, 24759, 'en', 'name', 'Hakuoh University'),
(29002, 24759, 'ja', 'name', 'ē™½é“Žå¤§å­¦'),
(29003, 24760, 'id', 'name', 'Universitas Cokroaminoto Yogyakarta'),
(29004, 24761, 'en', 'name', 'Janabadra University'),
(29005, 24762, 'no_lang_code', 'name', 'MindSet Rx (United States)'),
(29006, 24763, 'no_lang_code', 'name', 'Arqball (United States)'),
(29007, 24764, 'en', 'name', 'Karshi State University'),
(29008, 24764, 'uz', 'name', 'Qarshi Davlat Universiteti'),
(29009, 24765, 'en', 'name', 'Kokand State Pedagogical Institute named after Mukimi'),
(29010, 24765, 'uz', 'name', 'Muqimiy nomidagi Qo''qon davlat pedagogika instituti'),
(29011, 24766, 'en', 'name', 'Hemchandracharya North Gujarat University'),
(29012, 24767, 'en', 'name', 'Sagami Women''s University'),
(29013, 24767, 'ja', 'name', '相樔儳子大学'),
(29014, 24768, 'en', 'name', 'Sri Sathya Sai Institute of Higher Learning'),
(29015, 24769, 'en', 'name', 'Namangan Engineering Pedagogical Institute'),
(29016, 24769, 'uz', 'name', 'Namangan muhandislik-pedagogika instituti'),
(29017, 24770, 'no_lang_code', 'name', 'Poole Gakuin University'),
(29018, 24770, 'ja', 'name', 'å­¦ę ”ę³•äŗŗćƒ—ćƒ¼ćƒ«å­¦é™¢'),
(29019, 24771, 'en', 'name', 'Nihon Pharmaceutical University'),
(29020, 24771, 'ja', 'name', 'ę—„ęœ¬č–¬ē§‘å¤§å­¦'),
(29021, 24772, 'en', 'name', 'Navoi State Mining Institute'),
(29022, 24773, 'en', 'name', 'Yezin Agricultural University'),
(29023, 24773, 'my', 'name', 'į€›į€±į€†į€„į€ŗį€øį€…į€­į€Æį€€į€ŗį€•į€»į€­į€Æį€øį€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29024, 24774, 'en', 'name', 'Bunri University of Hospitality'),
(29025, 24774, 'ja', 'name', '脿武文理大学'),
(29026, 24775, 'en', 'name', 'Shobi University'),
(29027, 24775, 'ja', 'name', 'å°šē¾Žå­¦åœ’å¤§å­¦'),
(29028, 24776, 'en', 'name', 'University of Petroleum'),
(29029, 24777, 'en', 'name', 'Taunggyi University'),
(29030, 24777, 'my', 'name', 'တောင်ကြီး į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29031, 24778, 'en', 'name', 'Urawa University'),
(29032, 24778, 'ja', 'name', 'ęµ¦å’Œå¤§å­¦'),
(29033, 24779, 'id', 'name', 'Universitas Respati Yogyakarta'),
(29034, 24780, 'uz', 'name', 'AJINIYOZ NOMIDAGI NUKUS DAVLAT PEDAGOGIKA INSTITUTI'),
(29035, 24780, 'en', 'name', 'Nukus State Pedagogical Institute named after Ajiniyaz'),
(29036, 24781, 'en', 'name', 'Dagon University'),
(29037, 24781, 'my', 'name', 'ဒဂုံ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29038, 24782, 'id', 'name', 'Universitas Sarjanawiyata Tamansiswa'),
(29039, 24782, 'en', 'name', 'University of Sarjanawiyata Tamansiswa'),
(29040, 24783, 'id', 'name', 'Universitas Widya Mataram Yogyakarta'),
(29041, 24784, 'en', 'name', 'Samarkand State Architectural and Civil-Engineering Institute'),
(29042, 24784, 'uz', 'name', 'Samarqand davlat arxitektura qurilish instituti'),
(29043, 24785, 'en', 'name', 'Kyoto College of Graduate Studies for Informatics'),
(29044, 24785, 'ja', 'name', 'äŗ¬éƒ½ęƒ…å ±å¤§å­¦é™¢å¤§å­¦'),
(29045, 24786, 'en', 'name', 'University of Dental Medicine'),
(29046, 24787, 'en', 'name', 'Shri Jagannath Sanskrit University'),
(29047, 24787, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤œą¤—ą¤Øą„ą¤Øą¤¾ą¤„ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29048, 24787, 'or', 'name', 'ą¬¶ą­ą¬°ą­€ ą¬œą¬—ą¬Øą­ą¬Øą¬¾ą¬„ ą¬øą¬‚ą¬øą­ą¬•ą­ƒą¬¤ ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(29049, 24788, 'en', 'name', 'Kyoto Seika University'),
(29050, 24788, 'ja', 'name', 'äŗ¬éƒ½ē²¾čÆå¤§å­¦'),
(29051, 24789, 'en', 'name', 'Indira Gandhi Agricultural University'),
(29052, 24789, 'hi', 'name', 'इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29053, 24790, 'en', 'name', 'Fuji Women''s University'),
(29054, 24790, 'ja', 'name', '藤儳子大学'),
(29055, 24791, 'no_lang_code', 'name', 'Indira Kala Sangeet University'),
(29056, 24791, 'hi', 'name', 'इंदिरा कला ą¤øą¤‚ą¤—ą„€ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29057, 24792, 'en', 'name', 'Samarkand State Institute of Foreign Languages'),
(29058, 24792, 'uz', 'name', 'Samarqand davlat chet tillar instituti'),
(29059, 24793, 'en', 'name', 'Samarkand State Medical Institute'),
(29060, 24793, 'uz', 'name', 'Š”ŠŠœŠŠ ŠšŠŠŠ”Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(29061, 24794, 'en', 'name', 'Hokkai School of Commerce'),
(29062, 24794, 'ja', 'name', 'åŒ—ęµ·å•†ē§‘å¤§å­¦'),
(29063, 24795, 'no_lang_code', 'name', 'Kavikulaguru Kalidas Sanskrit University'),
(29064, 24795, 'hi', 'name', 'ą¤•ą¤µą¤æą¤•ą„ą¤²ą¤—ą„ą¤°ą„ कालिदास ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29065, 24796, 'en', 'name', 'Birsa Agricultural University'),
(29066, 24796, 'hi', 'name', 'बिरसा ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29067, 24797, 'en', 'name', 'Hokkaido University of Science'),
(29068, 24797, 'ja', 'name', 'åŒ—ęµ·é“ē§‘å­¦å¤§å­¦'),
(29069, 24798, 'en', 'name', 'University of Medicine 2 Yangon'),
(29070, 24798, 'my', 'name', 'į€†į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗį‚ ရန်ကုန်'),
(29071, 24799, 'en', 'name', 'Samarkand Institute of Economics and Service'),
(29072, 24799, 'uz', 'name', 'Samarqand iqtisodiyot va servis instituti'),
(29073, 24800, 'en', 'name', 'Sapporo University'),
(29074, 24800, 'ja', 'name', '札幌大学'),
(29075, 24801, 'en', 'name', 'Dr. Hari Singh Gour University'),
(29076, 24801, 'hi', 'name', 'ą¤”ą„‰. हरिसिंह ą¤—ą„Œą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29077, 24802, 'en', 'name', 'Vinayaka Missions University'),
(29078, 24802, 'ta', 'name', 'விநாயகா ą®®ą®æą®·ą®©ąÆą®øąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(29079, 24803, 'en', 'name', 'Sapporo International University'),
(29080, 24803, 'ja', 'name', 'ęœ­å¹Œå›½éš›å¤§å­¦'),
(29081, 24804, 'en', 'name', 'Tenshi College'),
(29082, 24804, 'ja', 'name', '天使大学'),
(29083, 24805, 'en', 'name', 'Dr. Rajendra Prasad Central Agriculture University'),
(29084, 24805, 'hi', 'name', 'ą¤”ą„‰. ą¤°ą¤¾ą¤œą„‡ą¤‚ą¤¦ą„ą¤° ą¤Ŗą„ą¤°ą¤øą¤¾ą¤¦ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29085, 24806, 'en', 'name', 'University of Nagasaki'),
(29086, 24806, 'ja', 'name', 'é•·å“ŽēœŒē«‹å¤§å­¦'),
(29087, 24807, 'en', 'name', 'Sambalpur University'),
(29088, 24807, 'or', 'name', 'ą¬øą¬®ą­ą¬¬ą¬²ą¬Ŗą­ą¬° ą¬¬ą¬æą¬¶ą­ą¬¬ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(29089, 24808, 'en', 'name', 'Gunma Prefectural Women''s University'),
(29090, 24808, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹å„³å­å¤§å­¦'),
(29091, 24809, 'no_lang_code', 'name', 'Musashino Gakuin University'),
(29092, 24809, 'ja', 'name', 'ę­¦č”µé‡Žå­¦é™¢å¤§å­¦'),
(29093, 24810, 'en', 'name', 'Sardarkrushinagar Dantiwada Agricultural University'),
(29094, 24810, 'gu', 'name', 'ąŖ•ą«ƒąŖ·ąŖæ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, ąŖøąŖ°ąŖ¦ąŖ¾ąŖ°ąŖ•ą«ƒąŖ·ąŖæąŖØąŖ—ąŖ° દાંતીવાઔા'),
(29095, 24811, 'en', 'name', 'International Pacific University'),
(29096, 24811, 'ja', 'name', '環太平擋大学'),
(29097, 24812, 'en', 'name', 'Sher-e-Kashmir University of Agricultural Sciences and Technology of Kashmir'),
(29098, 24812, 'hi', 'name', 'ą¤¶ą„‡ą¤°-ą¤-ą¤•ą¤¶ą„ą¤®ą„€ą¤° ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29099, 24813, 'en', 'name', 'Sardar Vallabhbhai National Institute of Technology Surat'),
(29100, 24813, 'hi', 'name', 'सरदार ą¤µą¤²ą„ą¤²ą¤­ą¤­ą¤¾ą¤ˆ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤øą„‚ą¤°ą¤¤'),
(29101, 24814, 'en', 'name', 'Yangon University of Education'),
(29102, 24814, 'my', 'name', 'į€›į€”į€ŗį€€į€Æį€”į€ŗį€•į€Šį€¬į€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29103, 24815, 'en', 'name', 'Yangon Technological University'),
(29104, 24815, 'my', 'name', 'į€›į€”į€ŗį€€į€Æį€”į€ŗį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29105, 24816, 'en', 'name', 'Yangon University Of Distance Education'),
(29106, 24816, 'my', 'name', 'į€”į€į€±į€øį€žį€„į€ŗ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29107, 24817, 'no_lang_code', 'name', 'Kerala Kalamandalam'),
(29108, 24817, 'ta', 'name', 'ą®•ą®²ą®¾ą®®ą®£ąÆą®Ÿą®²ą®®ąÆ'),
(29109, 24817, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ą“•ą“²ą“¾ą“®ą“£ąµą“”ą“²ą“‚'),
(29110, 24818, 'en', 'name', 'Rashtriya Sanskrit Vidyapeetha'),
(29111, 24818, 'te', 'name', 'ą°°ą°¾ą°·ą±ą°Ÿą±ą°°ą±€ą°Æ ą°øą°‚ą°øą±ą°•ą±ƒą°¤ ą°µą°æą°¦ą±ą°Æą°¾ą°Ŗą±€ą° ą°‚'),
(29112, 24819, 'en', 'name', 'Janardan Rai Nagar Rajasthan Vidyapeeth University'),
(29113, 24819, 'hi', 'name', 'ą¤œą¤Øą¤¾ą¤°ą„ą¤¦ą¤Ø राय नागर ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29114, 24820, 'en', 'name', 'Yangon University of Foreign Languages'),
(29115, 24821, 'en', 'name', 'Maharana Pratap University of Agriculture and Technology'),
(29116, 24822, 'en', 'name', 'Maharishi Mahesh Yogi Vedic University'),
(29117, 24822, 'hi', 'name', 'ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤®ą¤¹ą„‡ą¤¶ ą¤Æą„‹ą¤—ą„€ ą¤µą„ˆą¤¦ą¤æą¤• ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29118, 24823, 'en', 'name', 'European University College'),
(29119, 24823, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£ŁˆŲ±ŁˆŲØŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(29120, 24824, 'no_lang_code', 'name', 'Nepal Sanskrit University'),
(29121, 24824, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29122, 24825, 'en', 'name', 'Waljat Colleges of Applied Sciences'),
(29123, 24825, 'ar', 'name', 'ŁƒŁ„ŁŠŲ©ŁˆŁ„Ų¬Ų§ŲŖ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(29124, 24826, 'uz', 'name', 'Islom Karimov nomidagi Toshkent davlat texnika universiteti'),
(29125, 24826, 'en', 'name', 'Tashkent State Technical University named after Islam Karimov'),
(29126, 24827, 'en', 'name', 'Kagoshima Immaculate Heart University'),
(29127, 24827, 'ja', 'name', 'é¹æå…å³¶ē“”åæƒå„³å­å¤§å­¦'),
(29128, 24828, 'no_lang_code', 'name', 'Miyagi Gakuin Women''s University'),
(29129, 24828, 'ja', 'name', '宮城学院儳子大学'),
(29130, 24829, 'en', 'name', 'Sendai Shirayuri Women''s College'),
(29131, 24829, 'ja', 'name', 'ä»™å°ē™½ē™¾åˆå„³å­å¤§å­¦'),
(29132, 24830, 'no_lang_code', 'name', 'Tohoku Bunka Gakuen University'),
(29133, 24830, 'ja', 'name', 'ę±åŒ—ę–‡åŒ–å­¦åœ’å¤§å­¦'),
(29134, 24831, 'en', 'name', 'Al-Zahra College for Women'),
(29135, 24831, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الزهراؔ للبنات'),
(29136, 24832, 'en', 'name', 'Institute of Chartered Financial Analysts of India'),
(29137, 24832, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤šą¤¾ą¤°ą„ą¤Ÿą¤°ą„ą¤” ą¤µą¤æą¤¤ą„ą¤¤ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤²ą„‡ą¤·ą¤• ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(29138, 24833, 'en', 'name', 'Tohoku Institute of Technology'),
(29139, 24833, 'ja', 'name', 'ę±åŒ—å·„ę„­å¤§å­¦'),
(29140, 24834, 'en', 'name', 'Academy of Arts of Uzbekistan'),
(29141, 24834, 'uz', 'name', 'Oā€˜zbekiston Badiiy akademiyasi'),
(29142, 24834, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š² Узбекистана'),
(29143, 24835, 'en', 'name', 'Isfahan University of Art'),
(29144, 24835, 'fa', 'name', 'دانؓگاه هنر اصفهان'),
(29145, 24836, 'no_lang_code', 'name', 'Tohoku Seikatsu Bunka University'),
(29146, 24836, 'ja', 'name', 'ę±åŒ—ē”Ÿę“»ę–‡åŒ–å¤§å­¦'),
(29147, 24837, 'en', 'name', 'Iakob Gogebashvili Telavi State University'),
(29148, 24837, 'ka', 'name', 'įƒ˜įƒįƒ™įƒįƒ‘ įƒ’įƒįƒ’įƒ”įƒ‘įƒįƒØįƒ•įƒ˜įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ—įƒ”įƒšįƒįƒ•įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ¢įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(29149, 24838, 'en', 'name', 'National Textile University'),
(29150, 24838, 'ur', 'name', 'Ł†ŪŒŲ“Ł†Ł„ Ł¹ŪŒŚ©Ų³Ł¹Ų§Ų¦Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29151, 24839, 'en', 'name', 'Kashan University of Medical Sciences'),
(29152, 24840, 'no_lang_code', 'name', 'Nagoya Gakuin University'),
(29153, 24840, 'ja', 'name', '名古屋学院大学'),
(29154, 24841, 'en', 'name', 'Osaka University of Human Sciences'),
(29155, 24841, 'ja', 'name', 'å¤§é˜Ŗäŗŗé–“ē§‘å­¦å¤§å­¦'),
(29156, 24842, 'en', 'name', 'Keiwa College'),
(29157, 24842, 'ja', 'name', 'ę•¬å’Œå­¦åœ’å¤§å­¦'),
(29158, 24843, 'en', 'name', 'Bunka Fashion Graduate University'),
(29159, 24843, 'ja', 'name', 'ę–‡åŒ–ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³å¤§å­¦é™¢å¤§å­¦'),
(29160, 24844, 'en', 'name', 'University of East'),
(29161, 24844, 'ur', 'name', 'ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ آف Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś±ŲŒ آرٽس، سائنس Ų§ŁŠŁ†ŚŠ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠā€Ž'),
(29162, 24845, 'en', 'name', 'Air University'),
(29163, 24845, 'ur', 'name', 'جامعہ فضایہ'),
(29164, 24846, 'en', 'name', 'Hanoi University of Culture'),
(29165, 24846, 'vi', 'name', 'ĐẔi hį»c Văn hóa HĆ  Nį»™i'),
(29166, 24847, 'no_lang_code', 'name', 'Biwako Seikei Sport College'),
(29167, 24847, 'ja', 'name', 'ć³ć‚ć“ęˆč¹Šć‚¹ćƒćƒ¼ćƒ„å¤§å­¦'),
(29168, 24848, 'en', 'name', 'Foundation University Islamabad'),
(29169, 24848, 'ur', 'name', 'ŁŲ§Ų¤Ł†ŚˆŪŒŲ“Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ اسلام Ų¢ŲØŲ§ŲÆ'),
(29170, 24849, 'en', 'name', 'Institute of Space Technology'),
(29171, 24849, 'ur', 'name', 'Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ آف اسپیس Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(29172, 24850, 'no_lang_code', 'name', 'Baiko Gakuin University'),
(29173, 24850, 'ja', 'name', '梅光学院大学'),
(29174, 24851, 'en', 'name', 'Mohammad Ali Jinnah University'),
(29175, 24851, 'ur', 'name', 'جامعہ Ł…Ų­Ł…ŲÆ Ų¹Ł„ŪŒ جناح'),
(29176, 24852, 'en', 'name', 'National University of Modern Languages'),
(29177, 24852, 'ur', 'name', 'Ł‚ŁˆŁ…ŪŒ جامعہ ŲØŲ±Ų§Ų¦Ū’ جدید Ł„Ų³Ų§Ł†ŪŒŲ§ŲŖ'),
(29178, 24853, 'en', 'name', 'State Conservatory of Uzbekistan'),
(29179, 24854, 'en', 'name', 'Advanced Institute of Industrial Technology'),
(29180, 24854, 'ja', 'name', 'ē”£ę„­ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(29181, 24855, 'en', 'name', 'Mejiro University'),
(29182, 24855, 'ja', 'name', '目白大学'),
(29183, 24856, 'no_lang_code', 'name', 'Shizuoka Eiwa Gakuin University'),
(29184, 24856, 'ja', 'name', 'é™å²”č‹±å’Œå­¦é™¢å¤§å­¦'),
(29185, 24857, 'no_lang_code', 'name', 'Tokoha Gakuen University'),
(29186, 24857, 'ja', 'name', 'åøøč‘‰å­¦åœ’å¤§å­¦'),
(29187, 24858, 'en', 'name', 'Khayyam University'),
(29188, 24858, 'fa', 'name', 'دانؓگاه Ų®ŪŒŲ§Ł…'),
(29189, 24859, 'en', 'name', 'Okinawa Prefectural University of Arts'),
(29190, 24859, 'ja', 'name', 'ę²–ēø„ēœŒē«‹čŠøč”“å¤§å­¦'),
(29191, 24860, 'en', 'name', 'Razavi University of Islamic Sciences'),
(29192, 24860, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… Ų§Ų³Ł„Ų§Ł…ŪŒ رضوی'),
(29193, 24861, 'en', 'name', 'Pakistan Institute of Development Economics'),
(29194, 24862, 'en', 'name', 'Hong Bang International University'),
(29195, 24862, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Quốc tįŗæ Hồng BĆ ng'),
(29196, 24863, 'en', 'name', 'Tashkent Automobile and Road Construction Institute'),
(29197, 24863, 'uz', 'name', 'Toshkent avtomobil yo''llarini loyihalash, qurish va ekspluatatsiyasi instituti'),
(29198, 24864, 'id', 'name', 'Universitas Islam Indragiri'),
(29199, 24865, 'en', 'name', 'Dadabhoy Institute of Higher Education'),
(29200, 24865, 'ur', 'name', 'ŲÆŲ§ŲÆŲ§Ś€ŁˆŲ¦ŁŠ Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف Ł‡Ų§Ų¦ŁŠŲ± Ų§ŁŠŲ¬ŁˆŚŖŁŠŲ“Ł†'),
(29201, 24866, 'en', 'name', 'Baqir Al-Olum University'),
(29202, 24866, 'fa', 'name', 'دانؓگاه ŲØŲ§Ł‚Ų±Ų§Ł„Ų¹Ł„ŁˆŁ…'),
(29203, 24867, 'en', 'name', 'Khairun University'),
(29204, 24867, 'id', 'name', 'Universitas Khairun'),
(29205, 24868, 'en', 'name', 'Myitkyina University'),
(29206, 24868, 'my', 'name', 'မြစ်ကြီးနား į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29207, 24869, 'en', 'name', 'Ho Chi Minh City University of Transport'),
(29208, 24869, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Giao thĆ“ng vįŗ­n tįŗ£i ThĆ nh phố Hồ ChĆ­ Minh'),
(29209, 24870, 'en', 'name', 'Ho Chi Minh City University of Architecture'),
(29210, 24870, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kiįŗæn trĆŗc ThĆ nh phố Hồ ChĆ­ Minh'),
(29211, 24871, 'en', 'name', 'Mofid University'),
(29212, 24871, 'fa', 'name', 'دانؓگاه Ł…ŁŪŒŲÆ'),
(29213, 24872, 'en', 'name', 'Ho Chi Minh City University of Law'),
(29214, 24872, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Luįŗ­t ThĆ nh phố Hồ ChĆ­ Minh'),
(29215, 24872, 'fr', 'name', 'UniversitƩ de droit d''hƓ-chi-minh-ville'),
(29216, 24873, 'en', 'name', 'Ho Chi Minh City University of Fine Arts'),
(29217, 24873, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Mỹ thuįŗ­t ThĆ nh phố Hồ ChĆ­ Minh'),
(29218, 24873, 'fr', 'name', 'UniversitĆ© des beaux-arts d’hĆ“-chi-minh-ville'),
(29219, 24874, 'en', 'name', 'Nong Lam University Ho Chi Minh City'),
(29220, 24874, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c NĆ“ng LĆ¢m ThĆ nh phố Hồ ChĆ­ Minh'),
(29221, 24875, 'id', 'name', 'Universitas Lakidende'),
(29222, 24876, 'en', 'name', 'Greenwich University'),
(29223, 24877, 'en', 'name', 'Indus University'),
(29224, 24877, 'ur', 'name', 'Ų§Ł†ŚŠŲ³ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(29225, 24878, 'en', 'name', 'Tashkent State Higher School of National Dance and Choreography'),
(29226, 24879, 'id', 'name', 'Universitas Sains Al-Qur''an'),
(29227, 24880, 'en', 'name', 'Indus Valley School of Art and Architecture'),
(29228, 24880, 'sd', 'name', 'Ų§Ł†ŚŠŲ³ ŁˆŁŠŁ„ŁŠ Ų§Ų³ŚŖŁˆŁ„ آف آرٽ Ų§ŁŠŁ†ŚŠ Ų¢Ų±ŚŖŁŠŁ½ŁŠŚŖŚ†Ų±'),
(29229, 24881, 'no_lang_code', 'name', 'Osaka Gakuin University'),
(29230, 24881, 'ja', 'name', 'å¤§é˜Ŗå­¦é™¢å¤§å­¦'),
(29231, 24882, 'en', 'name', 'Vali Asr University of Rafsanjan'),
(29232, 24883, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c SĆ¢n khįŗ„u – Điện įŗ£nh ThĆ nh phố Hồ ChĆ­ Minh'),
(29233, 24883, 'en', 'name', 'University of Theatre and Cinema Ho Chi Minh City'),
(29234, 24884, 'en', 'name', 'Senri Kinran University'),
(29235, 24884, 'ja', 'name', 'åƒé‡Œé‡‘č˜­å¤§å­¦'),
(29236, 24885, 'en', 'name', 'Suzuka University'),
(29237, 24885, 'ja', 'name', 'éˆ“é¹æå›½éš›å¤§å­¦'),
(29238, 24886, 'en', 'name', 'Kunitachi College of Music'),
(29239, 24886, 'ja', 'name', 'å›½ē«‹éŸ³ę„½å¤§å­¦'),
(29240, 24887, 'en', 'name', 'Fukuoka Prefectural University'),
(29241, 24887, 'ja', 'name', 'ē¦å²”ēœŒē«‹å¤§å­¦'),
(29242, 24888, 'en', 'name', 'Institute of Business Administration Karachi'),
(29243, 24888, 'ur', 'name', 'Ų§Ł†Ų³Ł¹ŁŠŁ¹ŁŠŁˆŁ¹ آف بزنس Ų§ŁŠŚˆŁ…Ł†Ų³Ł¹Ų±ŁŠŲ“Ł†'),
(29244, 24889, 'en', 'name', 'Takamatsu University'),
(29245, 24889, 'ja', 'name', 'é«˜ę¾å¤§å­¦'),
(29246, 24890, 'en', 'name', 'Shahroud University of Medical Sciences'),
(29247, 24891, 'en', 'name', 'Shiraz University of Technology'),
(29248, 24891, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ ؓیراز'),
(29249, 24892, 'en', 'name', 'Takaoka University of Law'),
(29250, 24892, 'ja', 'name', 'é«˜å²”ę³•ē§‘å¤§å­¦'),
(29251, 24893, 'en', 'name', 'Takarazuka University of Arts & Crafts'),
(29252, 24893, 'ja', 'name', 'å®å”šé€ å½¢čŠøč”“å¤§å­¦'),
(29253, 24894, 'en', 'name', 'Karachi Institute of Economics and Technology'),
(29254, 24895, 'en', 'name', 'Tashkent Financial Institute'),
(29255, 24895, 'uz', 'name', 'Toshkent Moliya Instituti'),
(29256, 24895, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Финансовый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29257, 24896, 'en', 'name', 'Khadim Ali Shah Bukhari Institute of Technology'),
(29258, 24896, 'sd', 'name', 'Ų®Ų§ŲÆŁ… Ų¹Ł„ŁŠ ؓاه بخاري Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف ŲŖŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ'),
(29259, 24897, 'en', 'name', 'Quy Nhon University'),
(29260, 24897, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c Quy NhĘ”n'),
(29261, 24898, 'en', 'name', 'Takasaki City University of Economics'),
(29262, 24898, 'ja', 'name', 'é«˜å“ŽēµŒęøˆå¤§å­¦'),
(29263, 24899, 'en', 'name', 'St. Agnes University'),
(29264, 24899, 'ja', 'name', '平安儳学院大学'),
(29265, 24900, 'en', 'name', 'Newports Institute of Communications and Economics'),
(29266, 24900, 'sd', 'name', 'Ł†ŁŠŁˆ پورٽس Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف ŚŖŁ…ŁŠŁˆŁ†ŁŠŚŖŁŠŲ“Ł†Ų³ Ų§ŁŠŁ† Ų§ŁŠŚŖŲ§Ł†Ų§Ł…ŚŖŲ³'),
(29267, 24901, 'uz', 'name', 'TOSHKENT TO''QIMACHILIK VA YENGIL SANOAT INSTITUTI'),
(29268, 24901, 'en', 'name', 'Tashkent Institute of Textile and Light Industry'),
(29269, 24901, 'ru', 'name', 'Š¢ŠŠØŠšŠ•ŠŠ¢Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š•ŠšŠ”Š¢Š˜Š›Š¬ŠŠžŠ™ И Š›Š•Š“ŠšŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(29270, 24902, 'en', 'name', 'Preston Institute of Management Science and Technology'),
(29271, 24903, 'en', 'name', 'Hồng Đức University'),
(29272, 24903, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c Hồng Đức'),
(29273, 24903, 'zh', 'name', '擪德大学'),
(29274, 24904, 'en', 'name', 'Shaheed Zulfiqar Ali Bhutto Institute of Science and Technology'),
(29275, 24904, 'ur', 'name', 'ؓہید Ų°ŁˆŲ§Ł„ŁŁ‚Ų§Ų± Ų¹Ł„ŪŒ بھٹو Ų§Ł†Ų³Ł¹ŪŒŁ¹ŪŒŁˆŁ¹ آف سائنس Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(29276, 24905, 'en', 'name', 'Jin-ai University'),
(29277, 24905, 'ja', 'name', '仁愛大学'),
(29278, 24906, 'en', 'name', 'Sir Syed University of Engineering and Technology'),
(29279, 24906, 'sd', 'name', 'Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś± Ū½ Ł½ŁŠŚŖŁ†ŁŠŚ€ŁŠŲ§Ų³ جي جامعہ Ų³Ų± Ų³ŁŠŲÆā€Ž'),
(29280, 24907, 'en', 'name', 'Allameh Tabataba''i University'),
(29281, 24907, 'fa', 'name', 'دانؓگاه علامه طباطبایی'),
(29282, 24908, 'en', 'name', 'Textile Institute of Pakistan'),
(29283, 24908, 'ur', 'name', 'پاکستان کی Ł¹ŪŒŚ©Ų³Ł¹Ų§Ų¦Ł„ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(29284, 24909, 'en', 'name', 'Shah Abdul Latif University'),
(29285, 24909, 'ur', 'name', 'جامعہ ؓاہ Ų¹ŲØŲÆŲ§Ł„Ł„Ų·ŪŒŁā€Ž'),
(29286, 24909, 'sd', 'name', 'ؓاه Ų¹ŲØŲÆŲ§Ł„Ł„Ų·ŁŠŁ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠā€Ž'),
(29287, 24910, 'en', 'name', 'Arak University of Technology'),
(29288, 24910, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ų±Ų§Ś©'),
(29289, 24911, 'en', 'name', 'Tama University'),
(29290, 24911, 'ja', 'name', 'å¤šę‘©å¤§å­¦'),
(29291, 24912, 'en', 'name', 'Balochistan University of Engineering and Technology'),
(29292, 24912, 'ur', 'name', 'ŲØŁ„ŁˆŚ†Ų³ŲŖŲ§Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ Ų®Ų¶ŲÆŲ§Ų±'),
(29293, 24913, 'en', 'name', 'Preston University'),
(29294, 24913, 'ur', 'name', 'Ł¾Ų±ŪŒŲ³Ł¹Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29295, 24914, 'en', 'name', 'Civil Aviation Technology College'),
(29296, 24914, 'fa', 'name', 'دانؓکده ŁŁ†Ų§ŁˆŲ±ŪŒ Ł‡ŁˆŲ§Ł¾ŪŒŁ…Ų§ŪŒŪŒ Ł‡ŁˆŲ§Ł¾ŪŒŁ…Ų§ŪŒŪŒ'),
(29297, 24915, 'en', 'name', 'Beaconhouse National University'),
(29298, 24915, 'ur', 'name', 'ŲØŪŒŚ©Ł† ہاؤس Ł†ŪŒŲ“Ł†Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29299, 24916, 'en', 'name', 'University of Science and Culture'),
(29300, 24916, 'fa', 'name', 'دانؓگاه علم و فرهنگ'),
(29301, 24917, 'en', 'name', 'Dalat University'),
(29302, 24917, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c ĐƠ Lįŗ”t'),
(29303, 24917, 'fr', 'name', 'UniversitƩ de Dalat'),
(29304, 24917, 'zh', 'name', '大叻大学'),
(29305, 24918, 'en', 'name', 'Hodeidah University'),
(29306, 24918, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŲÆŁŠŲÆŲ©'),
(29307, 24919, 'no_lang_code', 'name', 'Hajvery University'),
(29308, 24919, 'ur', 'name', 'جامعہ ہجویری'),
(29309, 24920, 'en', 'name', 'Ibb University'),
(29310, 24920, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų„ŲØ'),
(29311, 24921, 'en', 'name', 'University of Applied Science and Technology'),
(29312, 24921, 'fa', 'name', 'دانؓگاه Ų¬Ų§Ł…Ų¹ Ų¹Ł„Ł…ŪŒ-کاربردی جهاد ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(29313, 24922, 'en', 'name', 'Tehran University of Art'),
(29314, 24922, 'fa', 'name', 'دانؓگاه هنر'),
(29315, 24923, 'en', 'name', 'Iman University'),
(29316, 24923, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų„ŁŠŁ…Ų§Ł†'),
(29317, 24924, 'en', 'name', 'Saba University'),
(29318, 24924, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³ŲØŲ£'),
(29319, 24925, 'en', 'name', 'Institute of Management Sciences Lahore'),
(29320, 24926, 'en', 'name', 'Yemenia University'),
(29321, 24926, 'ar', 'name', 'الجامعة Ų§Ł„ŁŠŁ…Ł†ŁŠŲ©'),
(29322, 24927, 'en', 'name', 'Imperial College of Business Studies'),
(29323, 24927, 'ur', 'name', 'بزنس سٹڈیز کے Ų§Ł…Ł¾ŪŒŲ±ŪŒŁ„ کالج'),
(29324, 24928, 'en', 'name', 'Lahore School of Economics'),
(29325, 24929, 'en', 'name', 'National College of Arts'),
(29326, 24929, 'ur', 'name', 'Ł†ŪŒŲ“Ł†Ł„ کالج آف آرٹس'),
(29327, 24930, 'en', 'name', 'Hanoi University of Business and Technology'),
(29328, 24930, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh doanh vĆ  CĆ“ng nghệ HĆ  Nį»™i'),
(29329, 24931, 'en', 'name', 'Urmia University of Technology'),
(29330, 24931, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(29331, 24932, 'sq', 'name', 'Universiteti i Elbasanit'),
(29332, 24932, 'en', 'name', 'University of Elbasan'),
(29333, 24933, 'en', 'name', 'University of Management and Technology'),
(29334, 24933, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŁ†Ų¬Ł…Ł†Ł¹ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(29335, 24934, 'en', 'name', 'University of South Asia'),
(29336, 24934, 'ur', 'name', 'جامعہ Ų¬Ł†ŁˆŲØŪŒ ایؓیا'),
(29337, 24935, 'en', 'name', 'University of Arts'),
(29338, 24936, 'en', 'name', 'Hanoi University of Pharmacy'),
(29339, 24936, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Dược HĆ  Nį»™i'),
(29340, 24937, 'en', 'name', 'Hanoi Architectural University'),
(29341, 24937, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kiįŗæn trĆŗc HĆ  Nį»™i'),
(29342, 24938, 'en', 'name', 'Slavic Business Institute'),
(29343, 24939, 'en', 'name', 'Iran Banking Institute'),
(29344, 24939, 'fa', 'name', 'مؤسسه Ų¹Ų§Ł„ŪŒ ŲØŲ§Ł†Ś©ŲÆŲ§Ų±ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(29345, 24940, 'en', 'name', 'Modern University for the Humanities'),
(29346, 24940, 'ru', 'name', 'Š”Š¾Š²Ń€ŠµŠ¼ŠµŠ½Š½Š°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29347, 24941, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Mỹ thuįŗ­t Việt Nam'),
(29348, 24941, 'en', 'name', 'Vietnam University of Fine Arts'),
(29349, 24941, 'fr', 'name', 'Ɖcole des beaux-arts du viĆŖt nam'),
(29350, 24942, 'en', 'name', 'Sports University of Tirana'),
(29351, 24942, 'sq', 'name', 'Universiteti i Sporteve tƫ Tiranƫs'),
(29352, 24943, 'en', 'name', 'Imam Sadiq University'),
(29353, 24943, 'fa', 'name', 'دانؓگاه Ų§Ł…Ų§Ł… ŲµŲ§ŲÆŁ‚'),
(29354, 24944, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Ngoįŗ”i ngữ, ĐẔi hį»c Quốc gia HĆ  Nį»™i'),
(29355, 24944, 'en', 'name', 'University of Languages and International Studies'),
(29356, 24945, 'en', 'name', 'Foreign Trade University'),
(29357, 24945, 'vi', 'name', 'ĐẔi hį»c Ngoįŗ”i Thʰʔng'),
(29358, 24946, 'en', 'name', 'Petroleum University of Technology'),
(29359, 24946, 'fa', 'name', 'دانؓگاه صنعت نفت'),
(29360, 24947, 'en', 'name', 'Academy of Film & Multimedia ā€œMARUBIā€'),
(29361, 24947, 'sq', 'name', 'Akademia e Filmit dhe Multimedias Marubi'),
(29362, 24948, 'vi', 'name', 'Hį»c viện NĆ“ng nghiệp Việt Nam'),
(29363, 24948, 'fr', 'name', 'Université d''agriculture de hanoï'),
(29364, 24948, 'en', 'name', 'Vietnam National University of Agriculture'),
(29365, 24949, 'en', 'name', 'School of International Relations'),
(29366, 24949, 'fa', 'name', 'دانؓکده روابط ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ وزارت Ų§Ł…ŁˆŲ± Ų®Ų§Ų±Ų¬Ł‡ā€Ž'),
(29367, 24950, 'en', 'name', 'Al Mansour University College'),
(29368, 24950, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł…Ł†ŲµŁˆŲ± الجامعة'),
(29369, 24951, 'en', 'name', 'Luarasi University'),
(29370, 24951, 'sq', 'name', 'Universiteti Luarasi'),
(29371, 24952, 'en', 'name', 'Iraqi University'),
(29372, 24952, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ©'),
(29373, 24953, 'en', 'name', 'Everglades University'),
(29374, 24954, 'en', 'name', 'University of New York Tirana'),
(29375, 24955, 'en', 'name', 'University of the Russian Academy of Education'),
(29376, 24955, 'ru', 'name', 'Университет Российской АкаГемии ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(29377, 24956, 'en', 'name', 'Gorsky State Agrarian University'),
(29378, 24956, 'ru', 'name', 'Горский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29379, 24957, 'en', 'name', 'Mohi-ud-Din Islamic University'),
(29380, 24957, 'ur', 'name', 'Ł…Ų­ŪŒ Ų§Ł„ŲÆŪŒŁ† Ų§Ų³Ł„Ų§Ł…ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒŪ”'),
(29381, 24958, 'en', 'name', 'Catholic University Our Lady of Good Counsel'),
(29382, 24958, 'sq', 'name', 'Kompleksi Spitalor Universitar "Zoja e Kƫshillit tƫ Mirƫ"'),
(29383, 24959, 'en', 'name', 'Industrial Management Institute'),
(29384, 24959, 'fa', 'name', 'سازمان Ł…ŲÆŁŠŲ±ŁŠŲŖ ŲµŁ†Ų¹ŲŖŁŠ'),
(29385, 24960, 'en', 'name', 'Northern University'),
(29386, 24960, 'ps', 'name', 'ناردرن Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ł†ŁˆŚšŲ§Ų±'),
(29387, 24960, 'ur', 'name', 'ناردرن ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ Ł†ŁˆŲ“ŪŲ±Ū'),
(29388, 24961, 'en', 'name', 'North Ossetian State University'),
(29389, 24961, 'ru', 'name', 'Деверо-ŠžŃŠµŃ‚ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. Š›. Š„ŠµŃ‚Š°Š³ŃƒŃ€Š¾Š²Š°'),
(29390, 24962, 'no_lang_code', 'name', 'Abasyn University'),
(29391, 24962, 'ur', 'name', 'Ų§ŲØŲ§Ų³ŪŒŁ† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29392, 24963, 'en', 'name', 'CECOS University'),
(29393, 24964, 'en', 'name', 'Vladikavkaz Institute of Management'),
(29394, 24964, 'ru', 'name', 'ВлаГикавказский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(29395, 24965, 'en', 'name', 'City University of Science and Information Technology'),
(29396, 24965, 'ur', 'name', 'سٹی ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف سائنس Ų§ŪŒŁ†Śˆ Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(29397, 24966, 'en', 'name', 'Shahid Sattari University of Aeronautical Engineering'),
(29398, 24966, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† Ł‡ŁˆŲ§ŪŒŪŒ Ų“Ł‡ŪŒŲÆ ستاری'),
(29399, 24967, 'en', 'name', 'Sardar Bahadur Khan Women''s University'),
(29400, 24967, 'ur', 'name', 'Ų³Ų±ŲÆŲ§Ų± بہادر خان Ų®ŁˆŲ§ŲŖŪŒŁ† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29401, 24968, 'en', 'name', 'Ottawa University'),
(29402, 24969, 'en', 'name', 'Vladimir Institute of Business'),
(29403, 24969, 'ru', 'name', 'ВлаГимирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(29404, 24970, 'pl', 'name', 'Akademia Muzyczna im. Feliksa Nowowiejskiego w Bydgoszczy'),
(29405, 24970, 'en', 'name', 'Feliks Nowowiejski Academy of Music in Bydgoszcz'),
(29406, 24971, 'en', 'name', 'Vladimir Law Institute'),
(29407, 24971, 'ru', 'name', 'Š’Š›ŠŠ”Š˜ŠœŠ˜Š Š”ŠšŠ˜Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š”Š˜Š Š ŠžŠ”Š”Š˜Š˜'),
(29408, 24972, 'en', 'name', 'Hong Kong Shue Yan University'),
(29409, 24972, 'zh', 'name', '香港樹仁大學'),
(29410, 24973, 'en', 'name', 'Hong Kong Academy for Performing Arts'),
(29411, 24973, 'zh', 'name', 'é¦™ęøÆę¼”č—å­øé™¢'),
(29412, 24974, 'en', 'name', 'Kiang Wu Nursing College of Macau'),
(29413, 24974, 'zh', 'name', 'ę¾³é—Øę±Ÿę¹–ęŠ¤ē†å­¦é™¢'),
(29414, 24975, 'en', 'name', 'Far Eastern State Technical Fisheries University'),
(29415, 24976, 'pt', 'name', 'Universidade de São José'),
(29416, 24976, 'en', 'name', 'University of Saint Joseph'),
(29417, 24976, 'zh', 'name', 'č–č‹„ē‘Ÿå¤§å­ø'),
(29418, 24977, 'en', 'name', 'Siberian Academy of Law, Economics and Management'),
(29419, 24977, 'ru', 'name', 'Š”ŠøŠ±ŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ права, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(29420, 24978, 'en', 'name', 'Dayeh University'),
(29421, 24978, 'zh', 'name', '大葉大學'),
(29422, 24979, 'en', 'name', 'MingDao University'),
(29423, 24979, 'zh', 'name', 'ę˜Žé“å¤§å­ø'),
(29424, 24980, 'en', 'name', 'University of Economy in Bydgoszcz'),
(29425, 24980, 'pl', 'name', 'Wyższa Szkoła Gospodarki w Bydgoszczy'),
(29426, 24981, 'en', 'name', 'Open Institute of Law'),
(29427, 24981, 'ru', 'name', 'ŠžŃ‚ŠŗŃ€Ń‹Ń‚Ń‹Š¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29428, 24982, 'no_lang_code', 'name', 'Nanhua University'),
(29429, 24982, 'zh', 'name', 'å—čÆå¤§å­ø'),
(29430, 24983, 'pl', 'name', 'Wyższa Szkoła Ekonomii i Administracji w Bytomiu'),
(29431, 24984, 'en', 'name', 'WuFeng University'),
(29432, 24984, 'zh', 'name', 'å³é³³ē§‘ęŠ€å¤§å­ø'),
(29433, 24985, 'en', 'name', 'Irkutsk State Transport University'),
(29434, 24985, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(29435, 24986, 'en', 'name', 'Hsuan Chuang University'),
(29436, 24986, 'zh', 'name', 'ēŽ„å„˜å¤§å­ø'),
(29437, 24987, 'en', 'name', 'Fo Guang University'),
(29438, 24987, 'zh', 'name', '佛光大學'),
(29439, 24988, 'pl', 'name', 'Akademia Polonijna'),
(29440, 24988, 'en', 'name', 'Polonia University'),
(29441, 24989, 'en', 'name', 'Chien Hsin University of Science and Technology'),
(29442, 24989, 'zh', 'name', 'å„č”Œē§‘ęŠ€å¤§å­ø'),
(29443, 24990, 'en', 'name', 'National Kaohsiung University of Hospitality and Tourism'),
(29444, 24990, 'zh', 'name', 'åœ‹ē«‹é«˜é›„é¤ę—…å¤§å­ø'),
(29445, 24991, 'en', 'name', 'Open University of Kaohsiung'),
(29446, 24991, 'zh', 'name', 'é«˜é›„åø‚ē«‹ē©ŗäø­å¤§å­ø'),
(29447, 24992, 'no_lang_code', 'name', 'Tsaritsyn Orthodox University of St. Sergius of Radonezh'),
(29448, 24992, 'ru', 'name', 'Царицынский православный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ препоГобного Š”ŠµŃ€Š³ŠøŃ РаГонежского'),
(29449, 24993, 'en', 'name', 'Shu-Te University'),
(29450, 24993, 'zh', 'name', 'ęØ¹å¾·ē§‘ęŠ€å¤§å­ø'),
(29451, 24994, 'en', 'name', 'University College of Social Sciences'),
(29452, 24994, 'pl', 'name', 'Wyższa Szkoła Lingwistyczna'),
(29453, 24995, 'en', 'name', 'Volgograd Academy of the Russian Internal Affairs Ministry'),
(29454, 24995, 'ru', 'name', 'Š’Š¾Š»Š³Š¾Š³Ń€Š°Š“ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(29455, 24996, 'en', 'name', 'Volgograd State Academy of Physical Culture'),
(29456, 24996, 'ru', 'name', 'Š’Š¾Š»Š³Š¾Š³Ń€Š°Š“ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(29457, 24997, 'en', 'name', 'National Open University'),
(29458, 24997, 'zh', 'name', 'åœ‹ē«‹ē©ŗäø­å¤§å­ø'),
(29459, 24998, 'en', 'name', 'Songho University'),
(29460, 24998, 'ko', 'name', 'ģ†”ķ˜øėŒ€ķ•™źµ'),
(29461, 24999, 'en', 'name', 'National Pingtung University'),
(29462, 24999, 'zh', 'name', 'åœ‹ē«‹å±ę±å¤§å­ø'),
(29463, 25000, 'en', 'name', 'Volgograd State Technical University'),
(29464, 25000, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ВолгограГский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29465, 25001, 'en', 'name', 'National Taichung University of Education'),
(29466, 25001, 'zh', 'name', 'åœ‹ē«‹č‡ŗäø­ę•™č‚²å¤§å­ø'),
(29467, 25002, 'en', 'name', 'Volgograd Institute of Economics, Sociology and Law'),
(29468, 25002, 'ru', 'name', 'ВолгограГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, социологии Šø права'),
(29469, 25003, 'en', 'name', 'Volgograd Municipal Institute of Arts'),
(29470, 25003, 'ru', 'name', 'Š’Š¾Š»Š³Š¾Š³Ń€Š°Š“ŃŠŗŠ°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени П. А. Š”ŠµŃ€ŠµŠ±Ń€ŃŠŗŠ¾Š²Š° [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(29471, 25004, 'en', 'name', 'Vologda State Milk Academy named after NV Vereshchagina'),
(29472, 25005, 'en', 'name', 'Far East University'),
(29473, 25005, 'zh', 'name', 'é ę±ē§‘ęŠ€å¤§å­ø'),
(29474, 25006, 'en', 'name', 'East-Siberian Institute of the Ministry of Internal Affairs of the Russian Federation'),
(29475, 25006, 'ru', 'name', 'восточно-сибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ министерства Š²Š½ŃƒŃ‚ренних Гел российской феГерации'),
(29476, 25007, 'en', 'name', 'CTBC Business School'),
(29477, 25007, 'zh', 'name', 'äø­äæ”é‡‘čžē®”ē†å­øé™¢'),
(29478, 25008, 'en', 'name', 'Tainan National University of the Arts'),
(29479, 25008, 'zh', 'name', 'åœ‹ē«‹č‡ŗå—č—č”“å¤§å­ø'),
(29480, 25009, 'en', 'name', 'Tainan University of Technology'),
(29481, 25009, 'zh', 'name', 'å°å—ę‡‰ē”Øē§‘ęŠ€å¤§å­ø'),
(29482, 25010, 'en', 'name', 'Aletheia University'),
(29483, 25010, 'zh', 'name', 'ēœŸē†å¤§å­ø'),
(29484, 25011, 'en', 'name', 'Huafan University'),
(29485, 25011, 'zh', 'name', 'čÆę¢µå¤§å­ø'),
(29486, 25012, 'en', 'name', 'National Taipei University of Education'),
(29487, 25012, 'zh', 'name', 'åœ‹ē«‹č‡ŗåŒ—ę•™č‚²å¤§å­ø'),
(29488, 25013, 'en', 'name', 'National Taiwan University of Arts'),
(29489, 25013, 'zh', 'name', 'åœ‹ē«‹č‡ŗē£č—č”“å¤§å­ø'),
(29490, 25014, 'en', 'name', 'Institute of Economics and Law'),
(29491, 25014, 'ru', 'name', 'Воронежский ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-правовой ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29492, 25015, 'en', 'name', 'Institute of Management, Marketing and Finance'),
(29493, 25015, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента, маркетинга Šø финансов'),
(29494, 25016, 'en', 'name', 'Shih Hsin University'),
(29495, 25016, 'zh', 'name', '世新大學'),
(29496, 25017, 'en', 'name', 'International Institute of Computer Technologies'),
(29497, 25017, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŠ¾Š¼ŠæŃŒŃŽŃ‚ŠµŃ€Š½Ń‹Ń… технологий'),
(29498, 25018, 'en', 'name', 'Soochow University'),
(29499, 25018, 'zh', 'name', 'ę±å³å¤§å­ø'),
(29500, 25019, 'en', 'name', 'Taipei National University of the Arts'),
(29501, 25019, 'zh', 'name', 'åœ‹ē«‹č‡ŗåŒ—č—č”“å¤§å­ø'),
(29502, 25020, 'en', 'name', 'Voronezh Institute of High Technologies'),
(29503, 25020, 'ru', 'name', 'Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ высоких технологий'),
(29504, 25021, 'en', 'name', 'Voronezh State Academy of Arts'),
(29505, 25021, 'ru', 'name', 'Š’Š¾Ń€Š¾Š½ŠµŠ¶ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(29506, 25022, 'en', 'name', 'Voronezh State University of Engineering Technologies'),
(29507, 25022, 'ru', 'name', 'Воронежский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ инженерных технологий'),
(29508, 25023, 'en', 'name', 'Tungnan University'),
(29509, 25023, 'zh', 'name', 'ę±å—ē§‘ęŠ€å¤§å­ø'),
(29510, 25024, 'en', 'name', 'Kainan University'),
(29511, 25024, 'zh', 'name', 'é–‹å—å¤§å­ø'),
(29512, 25025, 'en', 'name', 'Voronezh State Medical Academy named after N.N. Burdenko'),
(29513, 25025, 'ru', 'name', 'Воронежский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š.Š. Š‘ŃƒŃ€Š“ŠµŠ½ŠŗŠ¾'),
(29514, 25026, 'en', 'name', 'Lunghwa University of Science and Technology'),
(29515, 25026, 'zh', 'name', 'é¾čÆē§‘ęŠ€å¤§å­ø'),
(29516, 25027, 'en', 'name', 'Voronezh State Agrarian University named after Emperor Peter the Great'),
(29517, 25027, 'ru', 'name', 'Воро́нежский Š³Š¾ŃŃƒŠ“а́рственный агра́рный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ и́мени импера́тора ŠŸŠµŃ‚ра́ I'),
(29518, 25028, 'no_lang_code', 'name', 'Vanung University'),
(29519, 25028, 'zh', 'name', 'č¬čƒ½ē§‘ęŠ€å¤§å­ø'),
(29520, 25029, 'en', 'name', 'Voronezh State Technical University'),
(29521, 25029, 'ru', 'name', 'Š’ŠžŠ ŠžŠŠ•Š–Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ Š¢Š•Š„ŠŠ˜Š§Š•Š”ŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(29522, 25030, 'en', 'name', 'Tianjin Open University'),
(29523, 25030, 'zh', 'name', '天擄开放大学'),
(29524, 25031, 'en', 'name', 'Voronezh Institute of Economics and Social Management'),
(29525, 25031, 'ru', 'name', 'Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(29526, 25032, 'en', 'name', 'Moscow Regional Institute of Management and Law'),
(29527, 25032, 'ru', 'name', 'Московский областной ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(29528, 25033, 'en', 'name', 'Dr. Babasaheb Ambedkar Open University'),
(29529, 25033, 'gu', 'name', 'ઔો. બાબાસાહેબ આંબેઔકર ąŖ“ąŖŖąŖØ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(29530, 25034, 'en', 'name', 'Voronezh Institute of Ministry of Internal Affairs'),
(29531, 25034, 'ru', 'name', 'Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š”'),
(29532, 25035, 'en', 'name', 'Izhevsk State Medical Academy'),
(29533, 25035, 'ru', 'name', 'Š˜Š¶ŠµŠ²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29534, 25036, 'en', 'name', 'Madhya Pradesh Bhoj Open University'),
(29535, 25036, 'hi', 'name', 'ą¤®ą¤§ą„ą¤Æ ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤­ą„‹ą¤œ ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29536, 25037, 'en', 'name', 'Izhevsk State Agricultural Academy'),
(29537, 25037, 'ru', 'name', 'Š˜Š¶ŠµŠ²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29538, 25038, 'en', 'name', 'Netaji Subhas Open University'),
(29539, 25038, 'bn', 'name', 'ą¦Øą§‡ą¦¤ą¦¾ą¦œą¦æ সুভাষ ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29540, 25039, 'en', 'name', 'Vardhaman Mahaveer Open University'),
(29541, 25039, 'hi', 'name', 'ą¤µą¤°ą„ą¤§ą¤®ą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤–ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29542, 25040, 'en', 'name', 'Yashwantrao Chavan Maharashtra Open University'),
(29543, 25040, 'mr', 'name', 'यशवंतराव ą¤šą¤µą„ą¤¹ą¤¾ą¤£ ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(29544, 25041, 'en', 'name', 'Kamsky Institute of Humanitarian and Engineering Technologies'),
(29545, 25041, 'ru', 'name', 'Камский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… Šø инженерных технологий'),
(29546, 25042, 'en', 'name', 'Nalanda Open University'),
(29547, 25042, 'hi', 'name', 'ą¤Øą¤¾ą¤²ą¤Øą„ą¤¦ą¤¾ ą¤–ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29548, 25043, 'no_lang_code', 'name', 'The Egyptian General Company for Tourism and Hotels (Egypt)'),
(29549, 25043, 'ar', 'name', 'ايجوث - Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© العامة Ł„Ł„Ų³ŁŠŲ§Ų­Ų© ŁˆŲ§Ł„ŁŁ†Ų§ŲÆŁ‚'),
(29550, 25044, 'en', 'name', 'Hanoi Open University'),
(29551, 25044, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Mở HĆ  Nį»™i'),
(29552, 25045, 'no_lang_code', 'name', 'Sinar Mas (Indonesia)'),
(29553, 25046, 'en', 'name', 'Ho Chi Minh City Open University'),
(29554, 25046, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Mở ThĆ nh phố Hồ ChĆ­ Minh'),
(29555, 25047, 'pl', 'name', 'Wyższa Szkoła Zarządzania w Częstochowie'),
(29556, 25048, 'en', 'name', 'Gomel Engineering Institute'),
(29557, 25048, 'be', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ инженерный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ МЧД Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(29558, 25049, 'en', 'name', 'Belarusian State Agricultural Academy'),
(29559, 25049, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ°Š³Š°ŃŠæŠ°Š“Š°Ń€Ń‡Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń'),
(29560, 25050, 'en', 'name', 'Yaroslavl State Agricultural Academy'),
(29561, 25050, 'ru', 'name', 'ŠÆŃ€Š¾ŃŠ»Š°Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29562, 25051, 'en', 'name', 'Yaroslavl State Pedagogical University'),
(29563, 25051, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ярославский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. К.Š”. Ушинского'),
(29564, 25052, 'pl', 'name', 'Akademia Sztuk Pięknych w Gdańsku'),
(29565, 25053, 'en', 'name', 'Yaroslavl State Theatre Institute'),
(29566, 25053, 'ru', 'name', 'Ярославский Š³Š¾ŃŃƒŠ“арственный Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29567, 25054, 'en', 'name', 'Grodno State Agrarian University'),
(29568, 25054, 'be', 'name', 'ГроГзенскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ аграрны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(29569, 25055, 'pl', 'name', 'Gdańska Wyższa Szkoła Humanistyczna'),
(29570, 25056, 'en', 'name', 'International Institute of Management LINK'),
(29571, 25056, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента Š›Š˜ŠŠš'),
(29572, 25057, 'en', 'name', 'University of the Republic of San Marino'),
(29573, 25057, 'it', 'name', 'UniversitĆ  degli Studi della Repubblica di San Marino'),
(29574, 25058, 'en', 'name', 'Megatrend University'),
(29575, 25058, 'sr', 'name', 'ŠœŠµŠ³Š°Ń‚Ń€ŠµŠ½Š“ ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚'),
(29576, 25059, 'en', 'name', 'University of Arts in Belgrade'),
(29577, 25059, 'bs', 'name', 'Univerzitet umetnosti u Beogradu'),
(29578, 25059, 'sr', 'name', 'Универзитет ŃƒŠ¼ŠµŃ‚Š½Š¾ŃŃ‚Šø у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ'),
(29579, 25060, 'en', 'name', 'University of Business and Administration in Gdynia'),
(29580, 25060, 'pl', 'name', 'Wyższa Szkoła Administracji i Biznesu im. Eugeniusza Kwiatkowskiego w Gdyni'),
(29581, 25061, 'en', 'name', 'Academy of Public Administration under the aegis of the President of the Republic of Belarus'),
(29582, 25061, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµĢŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµĢŠ½ŠøŃ при ŠŸŃ€ŠµŠ·ŠøŠ“е́нте Респу́блики Š‘ŠµŠ»Š°Ń€ŃƒĢŃŃŒ'),
(29583, 25061, 'be', 'name', 'ŠŠŗŠ°Š“ŃĢŠ¼iя ŠŗiŃ€Š°Š²Š°ĢŠ½Š½Ń пры ŠŸŃ€ŃŠ·iŠ“ŃĢŠ½Ń†Šµ Š ŃŃŠæŃƒĢŠ±Š»iŠŗi Š‘ŠµŠ»Š°Ń€ŃƒĢŃŃŒ'),
(29584, 25062, 'en', 'name', 'Volga State University of Technology'),
(29585, 25062, 'ru', 'name', 'Поволжский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29586, 25063, 'en', 'name', 'University of Novi Pazar');
INSERT INTO `ror_settings` VALUES
(29587, 25063, 'no_lang_code', 'name', 'Univerzitet u Novom Pazaru'),
(29588, 25064, 'no_lang_code', 'name', 'Singidunum University'),
(29589, 25064, 'sr', 'name', 'Универзитет ДингиГунум'),
(29590, 25065, 'no_lang_code', 'name', 'HELP International Corporation (Malaysia)'),
(29591, 25066, 'en', 'name', 'Mari State University'),
(29592, 25066, 'ru', 'name', 'ŠœŠ°Ń€ŠøŠ¹ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29593, 25067, 'en', 'name', 'Academy of the Police Force in Bratislava'),
(29594, 25067, 'sk', 'name', 'AkadƩmia PolicajnƩho zboru v Bratislave'),
(29595, 25068, 'en', 'name', 'Academy of the Interior Ministry of the Republic of Belarus'),
(29596, 25068, 'be', 'name', 'ŠŠŗŠ°Š“ŃŠ¼Ń–Ń ŠœŃ–Š½Ń–ŃŃ‚ŃŃ€ŃŃ‚Š²Š° ŃžŠ½ŃƒŃ‚Ń€Š°Š½Ń‹Ń… ŃŠæŃ€Š°Ńž Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(29597, 25069, 'en', 'name', 'Southern Sakhalin Institute of Economics, Law and Computer Science'),
(29598, 25070, 'en', 'name', 'International University College Of Technology'),
(29599, 25070, 'ms', 'name', 'Kolej Universiti Teknologi Antarabangsa Twintech'),
(29600, 25071, 'en', 'name', 'Baltic State Academy of the Fishing Fleet'),
(29601, 25071, 'ru', 'name', 'Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ рыбопромыслового флота'),
(29602, 25072, 'en', 'name', 'Alcide De Gasperi University of Euroregional Economy in Józefów'),
(29603, 25072, 'pl', 'name', 'Alcide De Gasperi University of Euroregional Economy w Józefowie'),
(29604, 25073, 'pl', 'name', 'Akademia Muzyczna im. Karola Szymanowskiego w Katowicach'),
(29605, 25073, 'en', 'name', 'Karol Szymanowski Academy of Music'),
(29606, 25074, 'en', 'name', 'Belarusian State Academy of Music'),
(29607, 25074, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š¼ŃƒŠ·Ń‹ŠŗŃ–'),
(29608, 25074, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø'),
(29609, 25075, 'en', 'name', 'Baltic Institute of Economics and Finance'),
(29610, 25075, 'ru', 'name', 'Балтийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø финансов'),
(29611, 25076, 'en', 'name', 'Academy of Performing Arts in Bratislava'),
(29612, 25076, 'sk', 'name', 'VysokÔ Ŕkola múzických umení v Bratislave'),
(29613, 25077, 'en', 'name', 'Academy of Fine Arts and Design in Bratislava'),
(29614, 25077, 'sk', 'name', 'VysokÔ Ŕkola výtvarných umení v Bratislave'),
(29615, 25078, 'no_lang_code', 'name', 'Dupres Group (Slovakia)'),
(29616, 25079, 'en', 'name', 'Higher Institute of Management'),
(29617, 25079, 'ru', 'name', 'Š’Ń‹ŃŃˆŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(29618, 25080, 'en', 'name', 'Kaliningrad Law Institute Ministry of Internal Affairs of the Russian Federation'),
(29619, 25080, 'ru', 'name', 'ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“ŃŠŗŠøŠ¹ Филиал Данкт - ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Š³Š¾ Университета ŠœŠ’Š” России'),
(29620, 25081, 'en', 'name', 'Murmansk Arctic State University'),
(29621, 25081, 'ru', 'name', 'ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠøŠ¹ арктический Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29622, 25082, 'en', 'name', 'Belarusian State University of Physical Culture'),
(29623, 25082, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ фізічнай ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(29624, 25082, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(29625, 25083, 'sk', 'name', 'Stredoeurópska vysokÔ Ŕkola v Skalici'),
(29626, 25083, 'en', 'name', 'University of Central Europe in Skalica'),
(29627, 25084, 'en', 'name', 'Belarusian State University of Culture and Arts'),
(29628, 25084, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ і Š¼Š°ŃŃ‚Š°Ń†Ń‚Š²Š°Ńž'),
(29629, 25084, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(29630, 25085, 'pl', 'name', 'Wyższa Szkoła Bankowości i Finansów w Katowicach'),
(29631, 25086, 'en', 'name', 'Moscow Humanitarian Institute of E. Dashkova'),
(29632, 25086, 'ru', 'name', 'Московский Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š•.Š . Š”Š°ŃˆŠŗŠ¾Š²Š¾Š¹'),
(29633, 25087, 'pl', 'name', 'Wyższa Szkoła Zarządzania Marketingowego i Języków Obcych'),
(29634, 25088, 'en', 'name', 'International Institute of Economics and Law'),
(29635, 25088, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(29636, 25089, 'en', 'name', 'IEDC-Bled School of Management'),
(29637, 25090, 'en', 'name', 'International Institute of Business Education'),
(29638, 25090, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнес-Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(29639, 25091, 'en', 'name', 'Faculty of Commercial and Business Sciences'),
(29640, 25091, 'sl', 'name', 'Fakultete za Komercialne in Poslovne Vede'),
(29641, 25092, 'en', 'name', 'Russian University of Cooperation'),
(29642, 25092, 'ru', 'name', 'Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ кооперации'),
(29643, 25093, 'en', 'name', 'International School for Social and Business Studies'),
(29644, 25093, 'sl', 'name', 'Mednarodna Fakulteta za Družbene in Poslovne Študije'),
(29645, 25094, 'en', 'name', 'Angela BoŔkin Faculty of Health Care'),
(29646, 25094, 'sl', 'name', 'Fakulteta za zdravstvo Angele BoŔkin'),
(29647, 25095, 'pl', 'name', 'Wyższa Szkoła Ekonomii, Prawa i Nauk Medycznych im. prof. Edwarda Lipińskiego'),
(29648, 25096, 'en', 'name', 'Graduate School of Government and European Studies'),
(29649, 25097, 'en', 'name', 'Faculty of Media'),
(29650, 25097, 'sl', 'name', 'Fakulteta za medije'),
(29651, 25098, 'pl', 'name', 'Wyższa Szkoła Kultury Prawa i Sztuki Marketingu'),
(29652, 25099, 'no_lang_code', 'name', 'Alma Mater Europaea'),
(29653, 25100, 'pl', 'name', 'Wyższa Szkoła Umiejętności im. Stanisława Staszica w Kielcach'),
(29654, 25101, 'en', 'name', 'Kamsky Institute'),
(29655, 25102, 'sl', 'name', 'Å ola za Risanje in Slikanje'),
(29656, 25103, 'en', 'name', 'Allama Iqbal Open University'),
(29657, 25103, 'ur', 'name', 'علامہ اقبال Ų§ŁˆŁ¾Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29658, 25104, 'en', 'name', 'Academy of Social Education'),
(29659, 25105, 'en', 'name', 'Ludwik Solski Academy for the Dramatic Arts'),
(29660, 25105, 'pl', 'name', 'Państwowa Wyższa Szkoła Teatralna im. Ludwika Solskiego w Krakowie'),
(29661, 25106, 'en', 'name', 'University of Management TISBI'),
(29662, 25106, 'ru', 'name', 'Университет Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ "Š¢Š˜Š”Š‘Š˜"'),
(29663, 25107, 'en', 'name', 'Institute of Parliamentarism and Entrepreneurship'),
(29664, 25107, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ парламентаризма Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(29665, 25108, 'en', 'name', 'Institute of Technology and Business'),
(29666, 25109, 'en', 'name', 'Kabardino-Balkar State Agrarian University'),
(29667, 25109, 'ru', 'name', 'ŠšŠ°Š±Š°Ń€Š“ŠøŠ½Š¾-Балкарский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. М. Кокова'),
(29668, 25110, 'en', 'name', 'Institute of Social and Humanities'),
(29669, 25110, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Šø Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… наук'),
(29670, 25111, 'en', 'name', 'Higher School of Applied Sciences'),
(29671, 25111, 'sl', 'name', 'Visoka Ŕola za storitve'),
(29672, 25112, 'en', 'name', 'North-Caucasian State Institute of Arts'),
(29673, 25112, 'ru', 'name', 'Деверо-Кавказский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(29674, 25113, 'en', 'name', 'Higher School of National Economy in Kutno'),
(29675, 25113, 'pl', 'name', 'Wyższa Szkoła Gospodarki Krajowej w Kutnie'),
(29676, 25114, 'en', 'name', 'Legnica University of Management'),
(29677, 25114, 'pl', 'name', 'Wyższa Szkoła Menedżerska w Legnicy'),
(29678, 25115, 'en', 'name', 'Kazan State Conservatoire named after N. Zhiganov'),
(29679, 25115, 'ru', 'name', 'ŠšŠ°Š·Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń консерватории им. Š.Š“.Жиганова'),
(29680, 25116, 'en', 'name', 'Kazan State University of Culture and Arts'),
(29681, 25117, 'en', 'name', 'Kazan State Agrarian University'),
(29682, 25117, 'ru', 'name', 'Казанский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Аграрный Университет'),
(29683, 25118, 'no_lang_code', 'name', 'Anhanguera (Brazil)'),
(29684, 25119, 'no_lang_code', 'name', 'Education Management Corporation (United States)'),
(29685, 25120, 'en', 'name', 'Ivanovo State Medical Academy'),
(29686, 25120, 'ru', 'name', 'Š˜Š²Š°Š½Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29687, 25121, 'en', 'name', 'DOBA Business School'),
(29688, 25121, 'sl', 'name', 'DOBA Fakulteta'),
(29689, 25122, 'en', 'name', 'Nizhny Novgorod State Conservatory named after M.I. Glinka'),
(29690, 25122, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени М. И. Глинки [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(29691, 25123, 'en', 'name', 'Higher Education Centre Novo Mesto'),
(29692, 25123, 'sl', 'name', 'VisokoŔolsko SrediŔče Novo Mesto'),
(29693, 25124, 'en', 'name', 'School of Business and Management Novo Mesto'),
(29694, 25124, 'sl', 'name', 'Visoka sola za upravljanje in poslovanje Novo mesto'),
(29695, 25125, 'en', 'name', 'University College of Enterprise and Administration in Lublin'),
(29696, 25125, 'pl', 'name', 'Wyższa Szkoła Przedsiębiorczości i Administracji'),
(29697, 25126, 'en', 'name', 'Nizhny Novgorod State Agricultural Academy'),
(29698, 25127, 'en', 'name', 'International Sakharov Environmental Institute'),
(29699, 25127, 'be', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½Ń‹ Š”Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Ń–Š¼Ń А.Š”. Дахарава БДУ'),
(29700, 25128, 'en', 'name', 'Nizhny Novgorod State University of Architecture and Civil Engineering'),
(29701, 25128, 'ru', 'name', 'ŠŠ˜Š–Š•Š“ŠžŠ ŠžŠ”Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŠ Š„Š˜Š¢Š•ŠšŠ¢Š£Š ŠŠž-Š”Š¢Š ŠžŠ˜Š¢Š•Š›Š¬ŠŠ«Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(29702, 25129, 'en', 'name', 'GEA College'),
(29703, 25130, 'en', 'name', 'Vincent Pol University'),
(29704, 25130, 'pl', 'name', 'Wyższa Szkoła Społeczno-Przyrodnicza im. Wincentego Pola w Lublinie'),
(29705, 25131, 'en', 'name', 'Linguistics University of Nizhny Novgorod'),
(29706, 25131, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. А. Š”Š¾Š±Ń€Š¾Š»ŃŽŠ±Š¾Š²Š°'),
(29707, 25132, 'en', 'name', 'Euro Mediterranean University'),
(29708, 25132, 'sl', 'name', 'Evro-sredozemska univerza'),
(29709, 25133, 'pl', 'name', 'Górnośląska Wyższa Szkoła Pedagogiczna imienia Kardynała Augusta Hlonda w Mysłowicach'),
(29710, 25134, 'en', 'name', 'Faculty of Polymer Technology'),
(29711, 25134, 'sl', 'name', 'Fakulteta za Tehnologijo Polimerov'),
(29712, 25135, 'en', 'name', 'Tatar State University of Humanities and Education'),
(29713, 25135, 'tt', 'name', 'Татар Гәүләт Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€-пеГагогика ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(29714, 25135, 'ru', 'name', 'Татарский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29715, 25136, 'en', 'name', 'International Humanitarian and Economic Institute'),
(29716, 25136, 'be', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29717, 25137, 'en', 'name', 'Nizhny Novgorod Institute of Management and Business'),
(29718, 25137, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента Šø бизнеса'),
(29719, 25138, 'en', 'name', 'Masurian University in Olecko'),
(29720, 25138, 'pl', 'name', 'Wszechnica Mazurska w Olecku'),
(29721, 25139, 'en', 'name', 'Nizhny Novgorod Commercial Institute'),
(29722, 25139, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ коммерческий ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29723, 25140, 'en', 'name', 'Minsk State Linguistic University'),
(29724, 25140, 'ru', 'name', 'Минский Š³Š¾ŃŃƒŠ“арственный лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29725, 25140, 'be', 'name', 'ŠœŃ–Š½ŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ лінгвістычны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(29726, 25141, 'en', 'name', 'College of Environmental Protection'),
(29727, 25141, 'sl', 'name', 'Visoka Ŕola za varstvo okolja'),
(29728, 25142, 'en', 'name', 'Volga State University of Water Transport'),
(29729, 25142, 'ru', 'name', 'Волжский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного транспорта'),
(29730, 25143, 'pl', 'name', 'Olsztyńska Szkoła Wyższa im. Józefa Rusieckiego'),
(29731, 25144, 'en', 'name', 'Belarusian State Aviation Academy'),
(29732, 25144, 'be', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ авиации'),
(29733, 25145, 'en', 'name', 'Minsk Radioengineering College'),
(29734, 25145, 'ru', 'name', 'Минский РаГиотехнический коллеГж'),
(29735, 25145, 'be', 'name', 'ŠœŃ–ĢŠ½ŃŠŗŃ– Š Š°Š“Ń‹Ń‘Ń‚ŃŃ…Š½Ń–ĢŃ‡Š½Ń‹ Кале́Гж'),
(29736, 25146, 'en', 'name', 'Minsk Institute of Management'),
(29737, 25146, 'ru', 'name', 'Минский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(29738, 25146, 'be', 'name', 'ŠœŃ–Š½ŃŠŗŃ– Ń–Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ ŠŗŃ–Ń€Š°Š²Š°Š½Š½Ń'),
(29739, 25147, 'en', 'name', 'Kotarbinski University of Information Technology and Management in Olsztyn'),
(29740, 25148, 'en', 'name', 'Belarusian Russian University'),
(29741, 25148, 'be', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ¾-Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29742, 25149, 'en', 'name', 'University of Computer Sciences and Economics in Olsztyn'),
(29743, 25149, 'pl', 'name', 'WYŻSZA SZKOŁA INFORMATYKI I EKONOMII TWP W OLSZTYNIE'),
(29744, 25150, 'en', 'name', 'Institute of Economics, Management and Law'),
(29745, 25150, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(29746, 25151, 'sv', 'name', 'Dans- och Cirkushƶgskolan'),
(29747, 25151, 'en', 'name', 'University of Dance and Circus'),
(29748, 25152, 'pl', 'name', 'Wyższa Szkoła Zarządzania i Administracji w Opolu'),
(29749, 25153, 'pl', 'name', 'Akademia Muzyczna im. Ignacego Jana Paderewskiego w Poznaniu'),
(29750, 25154, 'en', 'name', 'Stockholm Academy of Dramatic Arts'),
(29751, 25154, 'sv', 'name', 'Stockholms dramatiska hƶgskola'),
(29752, 25155, 'en', 'name', 'Kazan Law Institute'),
(29753, 25155, 'ru', 'name', 'Казанский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š” России'),
(29754, 25156, 'en', 'name', 'Mozyr State Pedagogical University named after I.P.Shamyakin'),
(29755, 25156, 'be', 'name', 'ŠœŠ°Š·Ń‹Ń€ŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ пеГагагічны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ‹Ń‚ŃŃ‚ Ń–Š¼Ń І.П.ŠØŠ°Š¼ŃŠŗŃ–Š½Š°'),
(29756, 25157, 'sv', 'name', 'Operahƶgskolan i Stockholm'),
(29757, 25157, 'fi', 'name', 'Tukholman oopperakorkeakoulu'),
(29758, 25157, 'en', 'name', 'University College of Opera in Stockholm'),
(29759, 25158, 'en', 'name', 'Tatar American Regional Institute'),
(29760, 25158, 'ru', 'name', 'Татарско-американский Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29761, 25159, 'en', 'name', 'Polessky State University'),
(29762, 25159, 'be', 'name', 'ŠŸŠ°Š»ŠµŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(29763, 25159, 'ru', 'name', 'Полесский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29764, 25160, 'en', 'name', 'Vitebsk State Medical University'),
(29765, 25160, 'be', 'name', 'Віцебскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃžŠ½Ń–Š²ŃŃ€ŃŃ–Ń‚ŃŃ‚'),
(29766, 25161, 'en', 'name', 'Don State Agrarian University'),
(29767, 25161, 'ru', 'name', 'Донской Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29768, 25162, 'en', 'name', 'Kemerovo State University of Culture and the Arts'),
(29769, 25162, 'ru', 'name', 'ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(29770, 25163, 'en', 'name', 'Vitebsk State Technological University'),
(29771, 25163, 'ru', 'name', 'Витебский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29772, 25163, 'be', 'name', 'Віцебскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Š°Š»Š°Š³Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(29773, 25164, 'en', 'name', 'Kemerovo State Agricultural Institute'),
(29774, 25164, 'ru', 'name', 'ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29775, 25165, 'en', 'name', 'Donbas State Technical University'),
(29776, 25165, 'ru', 'name', 'Донбасский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29777, 25165, 'uk', 'name', 'Š”Š¾Š½Š±Š°ŃŃŒŠŗŠøŠ¹ Гержавний технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29778, 25166, 'en', 'name', 'Academy of Hotel Management and Catering Industry'),
(29779, 25166, 'pl', 'name', 'L’école supĆ©rieure d’hōtellerie et de gastronomie'),
(29780, 25167, 'en', 'name', 'Civil Defense Academy'),
(29781, 25167, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ гражГанской защиты МЧД России'),
(29782, 25168, 'en', 'name', 'Kemerovo Institute of Food Science and Technology'),
(29783, 25168, 'ru', 'name', 'ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пищевой ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(29784, 25169, 'en', 'name', 'Samuel Bogumił Linde College of Modern Languages'),
(29785, 25169, 'pl', 'name', 'Wyższa Szkoła Języków Obcych im. Samuela Bogumiła Lindego'),
(29786, 25170, 'en', 'name', 'Kuzbass State Technical University'),
(29787, 25170, 'ru', 'name', 'Кузбасский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29788, 25171, 'en', 'name', 'Kuzbass Institute of Economics and Law'),
(29789, 25171, 'ru', 'name', 'Кузбасский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(29790, 25172, 'en', 'name', 'Siberian State Industrial University'),
(29791, 25172, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29792, 25173, 'en', 'name', 'Admiral Ushakov State Maritime University'),
(29793, 25174, 'en', 'name', 'Siberian State University of Water Transport'),
(29794, 25174, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного транспорта'),
(29795, 25175, 'no_lang_code', 'name', 'Bila Tserkva National Agrarian University'),
(29796, 25175, 'uk', 'name', 'Š‘Ń–Š»Š¾Ń†ŠµŃ€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29797, 25176, 'en', 'name', 'Collegium Da Vinci'),
(29798, 25177, 'en', 'name', 'Poznan University of Social Sciences'),
(29799, 25177, 'pl', 'name', 'Wyższa Szkoła Umiejętności Społecznych'),
(29800, 25178, 'pl', 'name', 'Wyższa Szkoła Zarządzania i Bankowości w Poznaniu'),
(29801, 25179, 'en', 'name', 'Cherkasy Institute of Fire Safety named after Chornobyl Heroes of National University of Civil Defence of Ukraine'),
(29802, 25180, 'en', 'name', 'Novosibirsk State Medical University'),
(29803, 25180, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29804, 25181, 'en', 'name', 'Cherkasy State Technological University'),
(29805, 25181, 'uk', 'name', 'Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠøŠ¹ Гержавний технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29806, 25182, 'en', 'name', 'Novosibirsk State Agricultural University'),
(29807, 25182, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29808, 25183, 'en', 'name', 'Novosibirsk State University of Architecture and Civil Engineering'),
(29809, 25183, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29810, 25184, 'en', 'name', 'Far-Eastern Academy of Public Service'),
(29811, 25184, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹'),
(29812, 25185, 'pl', 'name', 'Akademia Humanistyczna im. Aleksandra Gieysztora w Pułtusku'),
(29813, 25185, 'en', 'name', 'Pułtusk Academy of Humanities'),
(29814, 25186, 'en', 'name', 'Academy of Music, Dance and Fine Arts'),
(29815, 25186, 'bg', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ за музикални танци Šø изобразителни ŠøŠ·ŠŗŃƒŃŃ‚ва'),
(29816, 25187, 'no_lang_code', 'name', 'Novosibirsk State Pedagogical University'),
(29817, 25187, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29818, 25188, 'no_lang_code', 'name', 'Novosibirsk Humanitarian Institute'),
(29819, 25188, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29820, 25189, 'en', 'name', 'Novosibirsk Institute of Economy, Psychology and Law'),
(29821, 25189, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Экономики ŠŸŃŠøŃ…ологии Šø ŠŸŃ€Š°Š²Š°'),
(29822, 25190, 'en', 'name', 'Far Eastern State Transport University'),
(29823, 25191, 'en', 'name', 'Far Eastern Law Institute of Ministry of Internal Affairs of Russia'),
(29824, 25191, 'ru', 'name', 'Š”ŠŠ›Š¬ŠŠ•Š’ŠžŠ”Š¢ŠžŠ§ŠŠ«Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(29825, 25192, 'pl', 'name', 'Wyższa Szkoła Wychowania Fizycznego i Turystyki w Białymstoku'),
(29826, 25193, 'en', 'name', 'Bukovinian State Medical University'),
(29827, 25193, 'ru', 'name', 'Š‘ŃƒŠŗŠ¾Š²ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29828, 25193, 'uk', 'name', 'Š‘ŃƒŠŗŠ¾Š²ŠøŠ½ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29829, 25194, 'en', 'name', 'Khabarovsk State Institute of Arts and Culture'),
(29830, 25194, 'ru', 'name', 'Єабаровский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(29831, 25195, 'en', 'name', 'Dniprovsk State Technical University'),
(29832, 25195, 'uk', 'name', 'Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29833, 25196, 'en', 'name', 'Vyatka State Agricultural Academy'),
(29834, 25196, 'ru', 'name', 'Š’ŃŃ‚ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29835, 25197, 'en', 'name', 'Vologda Institute of Law and Economics'),
(29836, 25197, 'ru', 'name', 'ВологоГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ права Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(29837, 25198, 'en', 'name', 'Vyatka State University'),
(29838, 25198, 'ru', 'name', 'Š’ŃŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29839, 25199, 'en', 'name', 'Siberian Transport University'),
(29840, 25199, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(29841, 25200, 'en', 'name', 'West Pomeranian Business School in Szczecin'),
(29842, 25200, 'pl', 'name', 'Zachodniopomorska Szkoła Biznesu w Szczecinie'),
(29843, 25201, 'pl', 'name', 'Małopolska Wyższa Szkoła Ekonomiczna'),
(29844, 25202, 'no_lang_code', 'name', 'Alfred Nobel University'),
(29845, 25202, 'ru', 'name', 'Университет имени ŠŠ»ŃŒŃ„реГа ŠŠ¾Š±ŠµŠ»Ń'),
(29846, 25202, 'uk', 'name', 'Університет імені ŠŠ»ŃŒŃ„Ń€ŠµŠ“Š° ŠŠ¾Š±ŠµŠ»Ń'),
(29847, 25203, 'no_lang_code', 'name', 'Vjatka Social Economics Institute'),
(29848, 25203, 'ru', 'name', 'Š’ŃŃ‚ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29849, 25204, 'en', 'name', 'Siberian Academy of Finance and Banking'),
(29850, 25204, 'ru', 'name', 'Š”ŠøŠ±ŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ финансов Šø банковского Гела'),
(29851, 25205, 'en', 'name', 'Siberian Independent Institute'),
(29852, 25205, 'ru', 'name', 'Дибирский независимый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29853, 25206, 'en', 'name', 'Siberian University of Consumer Cooperatives'),
(29854, 25206, 'ru', 'name', 'Дибирский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŠ¾Ń‚Ń€ŠµŠ±ŠøŃ‚ŠµŠ»ŃŒŃŠŗŠ¾Š¹ кооперации'),
(29855, 25207, 'en', 'name', 'College of Social and Media Culture'),
(29856, 25207, 'pl', 'name', 'Wyższa Szkoła Kultury Społecznej i Medialnej w Toruniu'),
(29857, 25208, 'en', 'name', 'Kislovodsk Humanitarian and Technical Institute'),
(29858, 25208, 'ru', 'name', 'КисловоГский Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-Технический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29859, 25209, 'en', 'name', 'Institute of Information Technologies, Economy and Management'),
(29860, 25209, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š˜ŠŠ¤ŠžŠ ŠœŠŠ¦Š˜ŠžŠŠŠ«Š„ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š™, Š­ŠšŠžŠŠžŠœŠ˜ŠšŠ˜ И ŠœŠ•ŠŠ•Š”Š–ŠœŠ•ŠŠ¢Š'),
(29861, 25210, 'en', 'name', 'Academy of Fine Arts In Łódź'),
(29862, 25210, 'pl', 'name', 'Władysław Strzemiński'),
(29863, 25211, 'en', 'name', 'Moscow State Regional Socio-Humanitarian Institute'),
(29864, 25212, 'en', 'name', 'Kostroma State Agricultural Academy'),
(29865, 25212, 'ru', 'name', 'ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29866, 25213, 'en', 'name', 'Omsk Academy of the Russian Interior Ministry'),
(29867, 25213, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠœŠ’Š” России'),
(29868, 25214, 'pl', 'name', 'Wyższa Szkoła Edukacji Zdrowotnej i Nauk Społecznych w Łodzi'),
(29869, 25215, 'en', 'name', 'St. Cyril and St. Methodius University of Veliko Tarnovo'),
(29870, 25215, 'bg', 'name', 'Š’ŠµŠ»ŠøŠŗŠ¾Ń‚ŃŠŃ€Š½Š¾Š²ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29871, 25216, 'en', 'name', 'Juraj Dobrila University of Pula'),
(29872, 25216, 'hr', 'name', 'SveučiliŔte Jurja Dobrile u Puli'),
(29873, 25216, 'sr', 'name', 'Универзитет ŠˆŃƒŃ€Š°Ń˜Š° Добриле у Пули'),
(29874, 25217, 'en', 'name', 'Omsk State Agrarian University'),
(29875, 25217, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П. А. Дтолыпина'),
(29876, 25218, 'en', 'name', 'Kovrov State Technological Academy named after V A Degtyarev'),
(29877, 25218, 'ru', 'name', 'ŠšŠ¾Š²Ń€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29878, 25219, 'en', 'name', 'Omsk State Institute of Service'),
(29879, 25219, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сервиса'),
(29880, 25220, 'en', 'name', 'Omsk State Pedagogical University'),
(29881, 25220, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29882, 25221, 'en', 'name', 'University of Computer Sciences and Skills'),
(29883, 25221, 'pl', 'name', 'Wyższa Szkoła Informatyki w Łodzi'),
(29884, 25222, 'en', 'name', 'Omsk State Transport University'),
(29885, 25222, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(29886, 25223, 'en', 'name', 'Siberian State University of Physical Education and Sport'),
(29887, 25223, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(29888, 25224, 'en', 'name', 'Siberian Institute of Business and Information Technologies'),
(29889, 25224, 'ru', 'name', 'Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса Šø информационных технологий'),
(29890, 25225, 'pl', 'name', 'Wyższa Szkoła Pedagogiczna w Łodzi'),
(29891, 25226, 'en', 'name', 'Lviv National Agrarian University'),
(29892, 25226, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Аграрний Університет'),
(29893, 25227, 'en', 'name', 'Institute of Marketing and Social Information Technology'),
(29894, 25227, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ маркетинга Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-информационных технологий'),
(29895, 25228, 'en', 'name', 'Lodz International Studies Academy'),
(29896, 25228, 'pl', 'name', 'Wyższa Szkoła Studiów Międzynarodowych w Łodzi'),
(29897, 25229, 'en', 'name', 'The Higher School of Art and Design'),
(29898, 25229, 'pl', 'name', 'Wyższa Szkoła Sztuki i Projektowania w Łodzi'),
(29899, 25230, 'en', 'name', 'Cyprus College of Art'),
(29900, 25231, 'en', 'name', 'Moscow State Regional Institute of Humanities'),
(29901, 25232, 'en', 'name', 'Institute of International Law, Economy, Humanitarian Sciences and Management named after K.V. Rossinskogo'),
(29902, 25232, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ•Š–Š”Š£ŠŠŠ ŠžŠ”ŠŠžŠ“Šž ŠŸŠ ŠŠ’Š, Š­ŠšŠžŠŠžŠœŠ˜ŠšŠ˜, Š“Š£ŠœŠŠŠ˜Š¢ŠŠ ŠŠ«Š„ ŠŠŠ£Šš И Š£ŠŸŠ ŠŠ’Š›Š•ŠŠ˜ŠÆ Š˜ŠœŠ•ŠŠ˜ К.Š’. Š ŠžŠ”Š”Š˜ŠŠ”ŠšŠžŠ“Šž'),
(29903, 25233, 'pl', 'name', 'Uczelnia Vistula'),
(29904, 25233, 'en', 'name', 'Vistula University'),
(29905, 25234, 'en', 'name', 'Oryol State University of Economics and Trade'),
(29906, 25234, 'ru', 'name', 'ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø торговли'),
(29907, 25235, 'en', 'name', 'Orel State Agrarian University'),
(29908, 25235, 'ru', 'name', 'ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29909, 25236, 'en', 'name', 'Ivano-Frankivsk National Technical University of Oil and Gas'),
(29910, 25236, 'uk', 'name', 'Івано-Š¤Ń€Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ нафти і газу'),
(29911, 25237, 'en', 'name', 'Orel State Institute of Arts and Culture'),
(29912, 25237, 'ru', 'name', 'ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(29913, 25238, 'en', 'name', 'Mediterranean Institute of Management'),
(29914, 25238, 'el', 'name', 'Μεσογειακό Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī”Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ·Ļ‚'),
(29915, 25239, 'en', 'name', 'Cyprus Institute of Marketing'),
(29916, 25240, 'pl', 'name', 'Akademia Pedagogiki Specjalnej im. Marii Grzegorzewskiej'),
(29917, 25240, 'en', 'name', 'Maria Grzegorzewska Academy of Special Education'),
(29918, 25241, 'cs', 'name', 'Akademie Sting'),
(29919, 25241, 'en', 'name', 'Sting Academy'),
(29920, 25242, 'pl', 'name', 'Akademia Teatralna im. Aleksandra Zelwerowicza w Warszawie'),
(29921, 25242, 'en', 'name', 'Aleksander Zelwerowicz National Academy of Dramatic Art in Warsaw'),
(29922, 25243, 'en', 'name', 'Orenburg State Agrarian University'),
(29923, 25243, 'ru', 'name', 'ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29924, 25244, 'cs', 'name', 'Academia Rerum Civilium - VysokĆ” Skola Politických a Společenských Věd'),
(29925, 25245, 'en', 'name', 'Orenburg Institute of Economics and Culture'),
(29926, 25245, 'ru', 'name', 'ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(29927, 25246, 'en', 'name', 'Almamer University'),
(29928, 25247, 'en', 'name', 'Christian Theological Academy in Warsaw'),
(29929, 25247, 'pl', 'name', 'Warsaw Chrześcijańska Akademia Teologiczna w Warszawie'),
(29930, 25248, 'en', 'name', 'Kuzbass State Pedagogical Academy'),
(29931, 25248, 'ru', 'name', 'Novokuzneckij Gosudarstvennyj Pedagogičeskij Institut'),
(29932, 25249, 'en', 'name', 'Krasnodar University of Ministry of Internal Affairs of Russia'),
(29933, 25249, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ’Š” России'),
(29934, 25250, 'pl', 'name', 'Europejska Akademia Sztuk w Warszawie'),
(29935, 25251, 'en', 'name', 'Kharkiv State Academy of Culture'),
(29936, 25252, 'en', 'name', 'Krasnodar Municipal Medical Institute of Higher Nursing Education'),
(29937, 25252, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š¼ŃƒŠ½ŠøŃ†ŠøŠæŠ°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŃˆŠµŠ³Š¾ сестринского Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(29938, 25253, 'en', 'name', 'Kuban State Agrarian University'),
(29939, 25253, 'ru', 'name', 'Кубанский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29940, 25254, 'en', 'name', 'Kuban Institute of International Business and Management'),
(29941, 25255, 'pl', 'name', 'Papieski Wydział Teologiczny w Warszawie'),
(29942, 25255, 'en', 'name', 'Pontifical Faculty of Theology in Warsaw'),
(29943, 25256, 'en', 'name', 'Business School Ostrava'),
(29944, 25257, 'en', 'name', 'Krasnoyarsk State Academy of Music and Theatre'),
(29945, 25257, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø Šø театра'),
(29946, 25258, 'en', 'name', 'Private Higher School of Social Sciences, Computer Science and Medical'),
(29947, 25258, 'pl', 'name', 'Prywatna Wyższa Szkoła Nauk Społecznych, Komputerowych i Medycznych'),
(29948, 25259, 'en', 'name', 'Krasnoyarsk State Agrarian University'),
(29949, 25259, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29950, 25260, 'en', 'name', 'Krasnoyarsk State Institute of Art'),
(29951, 25260, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(29952, 25261, 'en', 'name', 'Krasnoyarsk State Pedagogical University'),
(29953, 25261, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29954, 25262, 'en', 'name', 'Siberian State Technological University'),
(29955, 25262, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29956, 25263, 'en', 'name', 'Academy of Federal Security Guard Service of Russian Federation'),
(29957, 25263, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ охраны Российской ФеГерации'),
(29958, 25264, 'pl', 'name', 'Szkoła Wyższa im. Bogdana Jańskiego'),
(29959, 25265, 'cs', 'name', 'VysokĆ” Skola Logistiky'),
(29960, 25266, 'en', 'name', 'New Siberian Institute'),
(29961, 25266, 'ru', 'name', 'ŠŠ¾Š²Ń‹Š¹ сибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29962, 25267, 'pl', 'name', 'Uczelnia Warszawska im. Marii Skłodowskiej-Curie'),
(29963, 25268, 'en', 'name', 'Warsaw University of Technology Business School'),
(29964, 25269, 'en', 'name', 'Siberian State Aerospace University'),
(29965, 25269, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика М. Ф. Š ŠµŃˆŠµŃ‚Š½Ń‘Š²Š°'),
(29966, 25270, 'en', 'name', 'Orsk Humanitarian Technology Institute'),
(29967, 25270, 'ru', 'name', 'ŠžŃ€ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29968, 25271, 'en', 'name', 'Penza State Agricultural Academy'),
(29969, 25271, 'ru', 'name', 'Пензенский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29970, 25272, 'pl', 'name', 'Warszawska Szkoła Zarządzania - Szkoła Wyższa'),
(29971, 25273, 'en', 'name', 'Kharkiv National Agrarian University named after V.V.Dokuchajev'),
(29972, 25273, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ім. Š’.Š’. Š”Š¾ŠŗŃƒŃ‡Š°Ń”Š²Š°'),
(29973, 25274, 'en', 'name', 'Siberian Institute of Business Management and Psychology'),
(29974, 25274, 'ru', 'name', 'Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø психологии'),
(29975, 25275, 'en', 'name', 'International Art Campus Prague'),
(29976, 25276, 'pl', 'name', 'Warszawska Wyższa Szkoła Humanistyczna im. Bolesława Prusa'),
(29977, 25277, 'en', 'name', 'Jan Amos Komensky University'),
(29978, 25277, 'cs', 'name', 'Univerzita Jana Amose KomenskƩho Praha'),
(29979, 25278, 'en', 'name', 'University of Pereslavl'),
(29980, 25278, 'ru', 'name', 'Университет гороГа ŠŸŠµŃ€ŠµŃŠ»Š°Š²Š»Ń имени А. К. ŠŠ¹Š»Š°Š¼Š°Š·ŃŠ½Š°'),
(29981, 25279, 'en', 'name', 'Siberian Law Institute of Russian Federal Drug Control Service'),
(29982, 25279, 'ru', 'name', 'Дибирский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¤Š”ŠšŠ России'),
(29983, 25280, 'en', 'name', 'Perm State Agricultural Academy'),
(29984, 25280, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрно-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29985, 25281, 'en', 'name', 'Perm State Pharmaceutical Academy'),
(29986, 25281, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń„Š°Ń€Š¼Š°Ń†ŠµŠ²Ń‚ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29987, 25282, 'en', 'name', 'Kharkiv Petro Vasylenko National Technical University of Agriculture'),
(29988, 25282, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ім. ŠŸŠµŃ‚Ń€Š° Василенка'),
(29989, 25282, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° имени ŠŸŠµŃ‚ра Василенко'),
(29990, 25283, 'pl', 'name', 'Wyższa Szkoła Gospodarowania Nieruchomościami'),
(29991, 25284, 'en', 'name', 'Perm State Institute of Arts and Culture'),
(29992, 25284, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š˜ŃŠŗŃƒŃŃŃ‚Š²Š° Šø ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(29993, 25285, 'pl', 'name', 'Wyższa Szkoła Handlu i Finansów Międzynarodowych im. Fryderyka Skarbka'),
(29994, 25286, 'en', 'name', 'Kurgan State Agricultural Academy by T S Maltsev'),
(29995, 25286, 'ru', 'name', 'ŠšŃƒŃ€Š³Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Š¢.Š”'),
(29996, 25287, 'en', 'name', 'Kharkiv National University of Construction and Architecture'),
(29997, 25287, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° й Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(29998, 25288, 'en', 'name', 'Kharkiv State University of Food Technology and Trade'),
(29999, 25288, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń…Š°Ń€Ń‡ŃƒŠ²Š°Š½Š½Ń та торгівлі'),
(30000, 25288, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŠøŃ‚Š°Š½ŠøŃ Šø торговли'),
(30001, 25289, 'pl', 'name', 'Uczelnia Łazarskiego'),
(30002, 25290, 'en', 'name', 'Krasnodar State University of Culture and Arts'),
(30003, 25290, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(30004, 25291, 'en', 'name', 'Danish National Academy of Music'),
(30005, 25292, 'pl', 'name', 'Szkoła Główna Turystyki i Hotelarstwa Vistula'),
(30006, 25292, 'en', 'name', 'Vistula School of Hospitality'),
(30007, 25293, 'en', 'name', 'National University of Pharmacy'),
(30008, 25293, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ фармацевтичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30009, 25294, 'en', 'name', 'West Ural Institute of Economics and Law'),
(30010, 25294, 'ru', 'name', 'ЗапаГно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(30011, 25295, 'en', 'name', 'Kursk State Agricultural Academy named after Professor II Ivanova'),
(30012, 25295, 'ru', 'name', 'ŠšŃƒŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени профессора Иванова II'),
(30013, 25296, 'en', 'name', 'Institute of Theology of Estonian Evangelical Lutheran Church'),
(30014, 25297, 'en', 'name', 'Warsaw School of Information Technology'),
(30015, 25297, 'pl', 'name', 'Wyższa Szkoła Informatyki Stosowanej i Zarządzania'),
(30016, 25298, 'en', 'name', 'Kursk State University'),
(30017, 25298, 'ru', 'name', 'ŠšŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30018, 25299, 'en', 'name', 'Ukrainian Engineering Pedagogics Academy'),
(30019, 25299, 'ru', 'name', 'Š£ŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń инженерно-ŠæŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30020, 25299, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° інженерно-пеГагогічна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(30021, 25300, 'en', 'name', 'Kamskij State Institute of Physical Culture'),
(30022, 25300, 'ru', 'name', 'Камский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(30023, 25301, 'en', 'name', 'Yaroslav Mudryi National Law University'),
(30024, 25301, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Ярослава ŠœŃƒŠ“рого'),
(30025, 25302, 'en', 'name', 'International University of Business and Law'),
(30026, 25302, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±Ń–Š·Š½ŠµŃŃƒ і права'),
(30027, 25303, 'en', 'name', 'Kursk Institute of Management, Economics and Busines'),
(30028, 25303, 'ru', 'name', 'ŠšŃƒŃ€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø бизнеса'),
(30029, 25304, 'pl', 'name', 'Wyższa Szkoła Komunikowania i Mediów Społecznych im. Jerzego Giedroycia'),
(30030, 25305, 'en', 'name', 'Regional Open Social Institute'),
(30031, 25305, 'ru', 'name', 'Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ открытый ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30032, 25306, 'en', 'name', 'Tuvan State University'),
(30033, 25306, 'ru', 'name', 'Тувинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30034, 25307, 'en', 'name', 'EuroAcademy'),
(30035, 25307, 'et', 'name', 'Euroakadeemia'),
(30036, 25308, 'en', 'name', 'Lipeck Ecology-Humanitarian Institute'),
(30037, 25308, 'ru', 'name', 'Липецкий ŃŠŗŠ¾Š»Š¾Š³Š¾-Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30038, 25309, 'et', 'name', 'Eesti EttevƵtluskƵrgkool Mainor'),
(30039, 25309, 'en', 'name', 'Estonian Entrepreneurship University of Applied Sciences'),
(30040, 25310, 'et', 'name', 'KƵrgem Kunstikool Pallas'),
(30041, 25310, 'en', 'name', 'Tartu Art College'),
(30042, 25311, 'pl', 'name', 'Wyższa Szkoła Pedagogiczna Związku Nauczycielstwa Polskiego'),
(30043, 25312, 'en', 'name', 'Haaga-Helia University of Applied Sciences'),
(30044, 25312, 'fi', 'name', 'Haaga-Helia ammattikorkeakoulu'),
(30045, 25313, 'pl', 'name', 'Wyższa Szkoła Promocji w Warszawie'),
(30046, 25314, 'en', 'name', 'Central Ukrainian National Technical University'),
(30047, 25314, 'uk', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30048, 25315, 'en', 'name', 'Donbass State Engineering Academy'),
(30049, 25315, 'uk', 'name', 'Š”Š¾Š½Š±Š°ŃŃŒŠŗŠ° Гержавна Š¼Š°ŃˆŠøŠ½Š¾Š±ŃƒŠ“івна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(30050, 25316, 'en', 'name', 'Humak University of Applied Sciences'),
(30051, 25316, 'fi', 'name', 'Humanistinen ammattikorkeakoulu'),
(30052, 25317, 'en', 'name', 'Kremenchuk Mykhailo Ostrohradskyi National University'),
(30053, 25317, 'ru', 'name', 'ŠšŃ€ŠµŠ¼ŠµŠ½Ń‡ŃƒŠ³ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30054, 25317, 'uk', 'name', 'ŠšŃ€ŠµŠ¼ŠµŠ½Ń‡ŃƒŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠœŠøŃ…Š°Š¹Š»Š° ŠžŃŃ‚Ń€Š¾Š³Ń€Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(30055, 25318, 'no_lang_code', 'name', 'Naberezhnye Chelny State Pedagogical Institute'),
(30056, 25318, 'ru', 'name', 'ŠŠ°Š±ŠµŃ€ŠµŠ¶Š½Š¾Ń‡ŠµŠ»Š½ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30057, 25319, 'pl', 'name', 'Wyższa Szkoła Stosunków Międzynarodowych i Amerykanistyki'),
(30058, 25320, 'en', 'name', 'Magnitogorsk State Conservatory named after M I Glinka'),
(30059, 25320, 'ru', 'name', 'ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени М. И. Глинки'),
(30060, 25321, 'en', 'name', 'Kryvyi Rih National University'),
(30061, 25321, 'uk', 'name', 'ŠšŃ€ŠøŠ²Š¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30062, 25322, 'en', 'name', 'Pyatigorsk State University'),
(30063, 25322, 'ru', 'name', 'ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30064, 25323, 'en', 'name', 'Academy of Municipal Management'),
(30065, 25323, 'uk', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń Š¼ŃƒŠ½Ń–Ń†ŠøŠæŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(30066, 25324, 'pl', 'name', 'Uczelnia Techniczno-Handlowa im. Heleny Chodkowskiej'),
(30067, 25325, 'en', 'name', 'Polish Open University'),
(30068, 25325, 'pl', 'name', 'Wyższa Szkoła Zarządzania'),
(30069, 25326, 'en', 'name', 'Academy of Labour Social Relations and Tourism'),
(30070, 25326, 'uk', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń праці, ŃŠ¾Ń†Ń–Š°Š»ŃŒŠ½ŠøŃ… віГносин і Ń‚ŃƒŃ€ŠøŠ·Š¼Ńƒ'),
(30071, 25327, 'hu', 'name', 'AndrÔssy Gyula Budapesti Német Nyelvű Egyetem'),
(30072, 25327, 'en', 'name', 'AndrƔssy University Budapest'),
(30073, 25328, 'en', 'name', 'Pskov State Pedagogical Institute'),
(30074, 25328, 'ru', 'name', 'Псковский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30075, 25329, 'no_lang_code', 'name', 'Pskov Volny Institute'),
(30076, 25329, 'ru', 'name', 'Псковский Š’Š¾Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30077, 25330, 'pl', 'name', 'Akademia Muzyczna im. Karola Lipińskiego we Wrocławiu'),
(30078, 25330, 'en', 'name', 'Karol Lipiński Academy of Music in Wrocław'),
(30079, 25331, 'en', 'name', 'Nosov Magnitogorsk State Technical University'),
(30080, 25331, 'ru', 'name', 'ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30081, 25332, 'en', 'name', 'Magnitogorsk State University'),
(30082, 25332, 'ru', 'name', 'ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30083, 25333, 'en', 'name', 'Dagestan State Medical Academy'),
(30084, 25333, 'ru', 'name', 'Дагестанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30085, 25334, 'no_lang_code', 'name', 'Bhaktivedanta College'),
(30086, 25334, 'hu', 'name', 'Bhaktivedanta HittudomĆ”nyi Főiskola'),
(30087, 25335, 'en', 'name', 'Philological School of Higher Education'),
(30088, 25335, 'pl', 'name', 'Wyższa Szkoła Filologiczna'),
(30089, 25336, 'en', 'name', 'Dagestan State Agricultural Academy'),
(30090, 25337, 'en', 'name', 'Budapest Contemporary Dance Academy'),
(30091, 25337, 'hu', 'name', 'Budapest KortĆ”rstĆ”nc Főiskola'),
(30092, 25338, 'en', 'name', 'Pushkin Leningrad State University'),
(30093, 25338, 'ru', 'name', 'ЛенинграГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š”. Пушкина'),
(30094, 25339, 'en', 'name', 'Academy of Physiotheray in Wrocław'),
(30095, 25339, 'pl', 'name', 'Wyższa Szkoła Fizjoterapii'),
(30096, 25340, 'en', 'name', 'Russian State University of Tourism and Service'),
(30097, 25340, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŃƒŃ€ŠøŠ·Š¼Š° Šø сервиса'),
(30098, 25341, 'en', 'name', 'University of Business in Wrocław'),
(30099, 25341, 'pl', 'name', 'Wyższa Szkoła Handlowa we Wrocławiu'),
(30100, 25342, 'en', 'name', 'Institute of Economics and Management'),
(30101, 25342, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ (г. ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗ)'),
(30102, 25343, 'hu', 'name', 'Budapesti Metropolitan Egyetem'),
(30103, 25343, 'en', 'name', 'University of Applied Science Budapest'),
(30104, 25344, 'en', 'name', 'Federal Penitentiary Service'),
(30105, 25344, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба ŠøŃŠæŠ¾Š»Š½ŠµŠ½ŠøŃ наказаний'),
(30106, 25345, 'en', 'name', 'University of Management and Administration in Zamosc'),
(30107, 25345, 'pl', 'name', 'Wyższa Szkoła Zarządzania i Administracji'),
(30108, 25346, 'en', 'name', 'Dennis Gabor College'),
(30109, 25346, 'hu', 'name', 'GABOR DENES FOISKOLA'),
(30110, 25347, 'en', 'name', 'Ryazan State Agrotechnological University'),
(30111, 25347, 'ru', 'name', 'Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ агротехнологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П.А.ŠšŠ¾ŃŃ‚Ń‹Ń‡ŠµŠ²Š°'),
(30112, 25348, 'en', 'name', 'Don State Technical University'),
(30113, 25348, 'ru', 'name', 'ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Донской Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30114, 25349, 'en', 'name', 'Reklamy Institute'),
(30115, 25349, 'uk', 'name', 'ŠšŠ°Ń„ŠµŠ“Ń€Š° веб Гизайна, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рекламы'),
(30116, 25350, 'en', 'name', 'International Solomon University'),
(30117, 25350, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ Доломонів ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30118, 25351, 'ro', 'name', 'Universitatea George Bacovia Bacau'),
(30119, 25352, 'en', 'name', 'Ryazan State University'),
(30120, 25352, 'ru', 'name', 'Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”.А. Есенина'),
(30121, 25353, 'ro', 'name', 'Universitatea "Vasile Alecsandri" din Bacău'),
(30122, 25353, 'en', 'name', 'University of Bacău'),
(30123, 25354, 'en', 'name', 'Institute of Modern Technologies and Economy'),
(30124, 25354, 'ru', 'name', 'ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ современных технологий Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(30125, 25355, 'en', 'name', 'Komsomolsk-on-Amur State Technical University'),
(30126, 25355, 'ru', 'name', 'Комсомольский-на-ŠŠ¼ŃƒŃ€Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30127, 25356, 'en', 'name', 'Franz Liszt Academy of Music'),
(30128, 25357, 'ro', 'name', 'Academia Națională de Informații'),
(30129, 25357, 'en', 'name', 'National Intelligence Academy'),
(30130, 25358, 'en', 'name', 'National Academy of Internal Affairs'),
(30131, 25359, 'en', 'name', 'Kyiv Institute of Traditional Medicine'),
(30132, 25360, 'en', 'name', 'Krasnoyarsk State Trade and Economic Institute'),
(30133, 25360, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ торгово-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30134, 25361, 'ro', 'name', 'Institutul Teologic Baptist din București'),
(30135, 25362, 'en', 'name', 'Kyiv International University'),
(30136, 25362, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ міжнароГний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30137, 25363, 'en', 'name', 'Kyiv National Linguistic University'),
(30138, 25363, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚');
INSERT INTO `ror_settings` VALUES
(30139, 25363, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ лінгвістичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30140, 25364, 'en', 'name', 'Bioterra University Bucharest'),
(30141, 25364, 'ro', 'name', 'Universitatea Bioterra din București'),
(30142, 25365, 'en', 'name', 'Budapest University of Jewish Studies'),
(30143, 25365, 'hu', 'name', 'OrszĆ”gos RabbikĆ©pző – Zsidó Egyetem'),
(30144, 25366, 'en', 'name', 'Daghestan State Pedagogical University'),
(30145, 25366, 'ru', 'name', 'Дагестанский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30146, 25367, 'en', 'name', 'Dagestan State Technical University'),
(30147, 25367, 'ru', 'name', 'Дагестанский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30148, 25368, 'en', 'name', 'Kyiv University of Law'),
(30149, 25368, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ права'),
(30150, 25369, 'en', 'name', 'National University of Theatre and Film I.L. Caragiale'),
(30151, 25369, 'ro', 'name', 'Universitatea Naţională de Artă Teatrală şi Cinematografică I.L.Caragiale'),
(30152, 25370, 'pl', 'name', 'Kijowski Narodowy Uniwersytet Ekonomiczny im. Wadyma Hetmana'),
(30153, 25370, 'en', 'name', 'Kyiv National Economic University named after Vadym Hetman'),
(30154, 25370, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30155, 25370, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВаГима Š“ŠµŃ‚ŃŒŠ¼Š°Š½Š°'),
(30156, 25371, 'en', 'name', 'Hyperion University'),
(30157, 25371, 'ro', 'name', 'Universitatea Hyperion din Bucureşti'),
(30158, 25372, 'en', 'name', 'Rostov State Rakhmaninov Conservatory'),
(30159, 25372, 'ru', 'name', 'Š Š¾ŃŃ‚Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. Š”.Š’. Рахманинова'),
(30160, 25373, 'pl', 'name', 'Kijowski Narodowy Uniwersytet Budownictwa i Architektury'),
(30161, 25373, 'en', 'name', 'Kyiv National University of Construction and Architecture'),
(30162, 25373, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š° Šø Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹'),
(30163, 25373, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(30164, 25374, 'en', 'name', 'Moscow State Academy of Physical Education'),
(30165, 25374, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(30166, 25375, 'en', 'name', 'Rostov State Medical University'),
(30167, 25375, 'ru', 'name', 'Ростовский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30168, 25376, 'en', 'name', 'Rostov State University of Civil Engineering'),
(30169, 25376, 'ru', 'name', 'Ростовский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š”Ń‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Университет'),
(30170, 25377, 'en', 'name', 'Rostov State Transport University'),
(30171, 25377, 'ru', 'name', 'Ростовский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(30172, 25378, 'en', 'name', 'Rostov Institute of Law of the Ministry of Internal Affairs of the Russian Federation'),
(30173, 25378, 'ru', 'name', 'Ростовский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(30174, 25379, 'hu', 'name', 'Sola Scriptura Teológiai Főiskola'),
(30175, 25380, 'en', 'name', 'Romanian University of Sciences and Arts "Gheorghe Cristea"'),
(30176, 25380, 'ro', 'name', 'Universitatea RomĆ¢na de Știinte și Arte ā€žGheorghe Cristeaā€'),
(30177, 25381, 'en', 'name', 'Spiru Haret University'),
(30178, 25381, 'ro', 'name', 'Universitatea Spiru Haret'),
(30179, 25382, 'en', 'name', 'International Christian University'),
(30180, 25382, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ Š„Ń€ŠøŃŃ‚ŠøŃŠ½ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚-ŠšŠøŃ—Š²'),
(30181, 25383, 'en', 'name', 'Ryazan Institute of Management and Law'),
(30182, 25383, 'ru', 'name', 'Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(30183, 25384, 'en', 'name', 'Rybinsk State Aviation Technological Academy'),
(30184, 25385, 'en', 'name', 'Academician Yuriy Bugay International Scientific and Technical University'),
(30185, 25385, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ науково-технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені акаГеміка Š®Ń€Ń–я Š‘ŃƒŠ³Š°Ń'),
(30186, 25386, 'en', 'name', 'John Wesley Theological College'),
(30187, 25386, 'hu', 'name', 'Wesley JĆ”nos LelkĆ©szkĆ©pző Főiskola'),
(30188, 25387, 'en', 'name', 'Interregional Academy of Personnel Management'),
(30189, 25387, 'pl', 'name', 'Międzyregionalna Akademia Zarządzania Personelem w Kijowie'),
(30190, 25387, 'ru', 'name', 'ŠœŠµŠ¶Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ персоналом'),
(30191, 25387, 'uk', 'name', 'ŠœŃ–Š¶Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń персоналом'),
(30192, 25388, 'en', 'name', 'Titu Maiorescu University'),
(30193, 25388, 'ro', 'name', 'Universitatea Titu Maiorescu'),
(30194, 25389, 'en', 'name', 'National Academy of Management'),
(30195, 25389, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(30196, 25389, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(30197, 25390, 'en', 'name', 'King Sigismund Business School'),
(30198, 25391, 'en', 'name', 'Art and Design University of Cluj-Napoca'),
(30199, 25391, 'hu', 'name', 'Művészeti és Design Egyetem'),
(30200, 25391, 'ro', 'name', 'Universitatea de Artă și Design'),
(30201, 25392, 'ro', 'name', 'Academia de Muzică Gheorghe Dima'),
(30202, 25392, 'en', 'name', 'Gheorghe Dima Music Academy'),
(30203, 25393, 'en', 'name', 'Michurinsk State Agrarian University'),
(30204, 25393, 'ru', 'name', 'ŠœŠøŃ‡ŃƒŃ€ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30205, 25394, 'en', 'name', 'Bogdan Voda University'),
(30206, 25394, 'ro', 'name', 'Universitatea ā€žBogdan VodÄƒā€'),
(30207, 25395, 'en', 'name', 'International Market Institute'),
(30208, 25395, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рынка'),
(30209, 25396, 'ro', 'name', 'Academia Navală Mircea cel Bătrân'),
(30210, 25396, 'en', 'name', 'Mircea cel Batran Naval Academy'),
(30211, 25397, 'hu', 'name', 'Karoly Robert Foiskola'),
(30212, 25397, 'en', 'name', 'KÔroly Róbert University College'),
(30213, 25398, 'en', 'name', 'Volga Business Institute'),
(30214, 25399, 'en', 'name', 'National Academy of Fine Art and Architecture'),
(30215, 25399, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°ĢŠ»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµĢŠ¼Ń–Ń образотво́рчого мисте́цтва і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒĢŃ€Šø'),
(30216, 25400, 'ro', 'name', 'Universitatea Andrei Şaguna'),
(30217, 25401, 'en', 'name', 'Samara State Institute of Culture'),
(30218, 25401, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(30219, 25402, 'en', 'name', 'Samara State Transport University'),
(30220, 25402, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(30221, 25403, 'hu', 'name', 'Szent AtanĆ”z Gƶrƶgkatolikus HittudomĆ”nyi Főiskola'),
(30222, 25404, 'en', 'name', 'Samara Humanitarian Academy'),
(30223, 25404, 'ru', 'name', 'Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30224, 25405, 'en', 'name', 'Kyiv National I. K. Karpenko-Kary Theatre, Cinema and Television University'),
(30225, 25405, 'uk', 'name', 'ŠšŠøĢŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°ĢŠ»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ Ń‚ŠµŠ°ĢŃ‚Ń€Ńƒ, кіно́ і Ń‚ŠµŠ»ŠµŠ±Š°ĢŃ‡ŠµŠ½Š½Ń і́мені Іва́на ŠšŠ°ĢŃ€ŠæŠ¾Š²ŠøŃ‡Š° ŠšŠ°Ń€ŠæŠµĢŠ½ŠŗŠ°-ŠšŠ°ĢŃ€Š¾Š³Š¾'),
(30226, 25405, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ театра, кино Šø Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ имени И. К. ŠšŠ°Ń€ŠæŠµŠ½ŠŗŠ¾-ŠšŠ°Ń€Š¾Š³Š¾'),
(30227, 25406, 'en', 'name', 'Mihail Kogălniceanu University'),
(30228, 25406, 'ro', 'name', 'Universitatea Mihail Kogălniceanu'),
(30229, 25407, 'en', 'name', 'University of Structural Engineering and Architecture Lyuben Karavelov'),
(30230, 25407, 'bg', 'name', 'Š’ŠøŃŃˆŠµ строително ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ "Š›ŃŽŠ±ŠµŠ½ ŠšŠ°Ń€Š°Š²ŠµŠ»Š¾Š²"'),
(30231, 25408, 'en', 'name', 'Academy of Economic Security'),
(30232, 25408, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Š¹ безопасности'),
(30233, 25409, 'en', 'name', 'Samara State University of Economics'),
(30234, 25409, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30235, 25410, 'en', 'name', 'Samara State Medical University'),
(30236, 25410, 'ru', 'name', 'Дамарский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Университет'),
(30237, 25411, 'en', 'name', 'Ukrainian-American Concordia University'),
(30238, 25411, 'uk', 'name', 'Š’Ń–ŃŠŗŠ¾Š½ŃŠøŠ½ŃŃŒŠŗŠøŠ¹ міжнароГний Університет (ДША) в Україні'),
(30239, 25412, 'hu', 'name', 'Adventista Teológiai Fõiskola'),
(30240, 25412, 'en', 'name', 'Hungarian Adventist Theological College'),
(30241, 25413, 'en', 'name', 'Emanuel University'),
(30242, 25413, 'ro', 'name', 'Universitatea Emanuel'),
(30243, 25414, 'en', 'name', 'Banking University'),
(30244, 25414, 'uk', 'name', 'Університет Š±Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠ¾Ń— справи'),
(30245, 25415, 'en', 'name', 'Constantin Brâncoveanu University'),
(30246, 25415, 'ro', 'name', 'Universitatea Constantin Brâncoveanu'),
(30247, 25416, 'en', 'name', 'University "Eftimie Murgu" of Reşiţa'),
(30248, 25417, 'en', 'name', 'Shadrinsk State Pedagogical Institute'),
(30249, 25417, 'ru', 'name', 'ШаГринский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30250, 25418, 'en', 'name', 'Samara State University of Social Sciences and Education'),
(30251, 25418, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30252, 25419, 'en', 'name', 'Samara State Technical University'),
(30253, 25419, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30254, 25420, 'hu', 'name', 'GĆ”l Ferenc Főiskola'),
(30255, 25421, 'en', 'name', 'Samara Institute of Management'),
(30256, 25421, 'ru', 'name', 'Дамарский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(30257, 25422, 'no_lang_code', 'name', 'Samara Medical Institute Reaviz'),
(30258, 25422, 'ru', 'name', 'Дамарский меГицинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Reavis'),
(30259, 25423, 'en', 'name', 'Lugansk National Agrarian University'),
(30260, 25423, 'uk', 'name', 'Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30261, 25424, 'hu', 'name', 'VeszprĆ©mi Ɖrseki HittudomĆ”nyi FƵiskola'),
(30262, 25425, 'en', 'name', 'Academy of Choral Arts named after V Popov'),
(30263, 25425, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ хорового ŠøŃŠŗŃƒŃŃŃ‚ва'),
(30264, 25426, 'en', 'name', 'Luhansk State University of Internal Affairs named after E.O.Didorenko'),
(30265, 25426, 'ru', 'name', 'Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел имени Š­. А. ДиГоренко'),
(30266, 25426, 'uk', 'name', 'Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ імені Š•Š“ŃƒŠ°Ń€Š“Š° ДіГоренка'),
(30267, 25427, 'en', 'name', 'Latvian Christian Academy'),
(30268, 25427, 'lv', 'name', 'Latvijas Kristīgā akadēmija'),
(30269, 25428, 'lv', 'name', 'Liepājas Universitāte'),
(30270, 25428, 'en', 'name', 'University of Liepāja'),
(30271, 25429, 'en', 'name', 'Academy of Social and Economic Development'),
(30272, 25429, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø произвоГства'),
(30273, 25430, 'en', 'name', 'Academy of Innovation Management'),
(30274, 25430, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ менеГжмента инноваций'),
(30275, 25431, 'en', 'name', 'Academy of the Federal Security Service of the Russian Federation'),
(30276, 25431, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ безопасности Российской ФеГерации'),
(30277, 25432, 'en', 'name', 'Constantin BrĆ¢ncuși University of Targu Jiu'),
(30278, 25433, 'en', 'name', 'Baltic Institute of Ecology, Politics and Law'),
(30279, 25433, 'ru', 'name', 'Балтийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø, политики Šø права'),
(30280, 25434, 'en', 'name', 'Lviv National Academy of Arts'),
(30281, 25434, 'pl', 'name', 'Lwowska Narodowa Akademia Sztuki'),
(30282, 25434, 'ru', 'name', 'Š›ŃŒŠ²Š¾Š²ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(30283, 25434, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń мистецтв'),
(30284, 25435, 'en', 'name', 'Academy of the State Fire Service EMERCOM of Russia'),
(30285, 25435, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ противопожарной ŃŠ»ŃƒŠ¶Š±Ń‹ МЧД России'),
(30286, 25436, 'en', 'name', 'Baltic Institute of Foreign Languages and International Intercultural Cooperation'),
(30287, 25436, 'ru', 'name', 'Балтийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иностранных ŃŠ·Ń‹ŠŗŠ¾Š² Šø Š¼ŠµŠ¶ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½Š¾Š³Š¾ ŃŠ¾Ń‚Ń€ŃƒŠ“Š½ŠøŃ‡ŠµŃŃ‚Š²Š°'),
(30288, 25437, 'en', 'name', 'Dimitrie Cantemir University'),
(30289, 25437, 'ro', 'name', 'Universitatea Dimitrie Cantemir'),
(30290, 25438, 'en', 'name', 'Baltic International Institute of Tourism'),
(30291, 25438, 'ru', 'name', 'Балтийский Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(30292, 25439, 'en', 'name', 'Moscow Academy of Education Natalia Nesterova'),
(30293, 25439, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠŠ°Ń‚Š°Š»ŃŒŠø ŠŠµŃŃ‚ŠµŃ€Š¾Š²Š¾Š¹'),
(30294, 25440, 'en', 'name', 'Institute of Business and Law'),
(30295, 25440, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса Šø права'),
(30296, 25441, 'en', 'name', 'Moscow Institute of State Management and Law'),
(30297, 25441, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(30298, 25442, 'lv', 'name', 'Biznesa augstskola Turība'),
(30299, 25442, 'en', 'name', 'Turība University'),
(30300, 25443, 'en', 'name', 'Academy of Labour and Social Relations'),
(30301, 25443, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń‚Ń€ŃƒŠ“Š° Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(30302, 25444, 'en', 'name', 'Institute of Foreign Languages'),
(30303, 25444, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иностранных ŃŠ·Ń‹ŠŗŠ¾Š²'),
(30304, 25445, 'en', 'name', 'Diplomatic Academy of the Russian Foreign Ministry'),
(30305, 25445, 'ru', 'name', 'Š”ŠøŠæŠ»Š¾Š¼Š°Ń‚ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠœŠ˜Š” России'),
(30306, 25446, 'en', 'name', 'Institute of Law and Business'),
(30307, 25446, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса Šø права'),
(30308, 25447, 'en', 'name', 'EKA University of Applied Sciences'),
(30309, 25447, 'lv', 'name', 'Ekonomikas un kultƻras augstskola'),
(30310, 25448, 'en', 'name', 'Wallenberg Institute of Special Education and Psychology'),
(30311, 25448, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ пеГагогики Šø психологии'),
(30312, 25449, 'en', 'name', 'Tibiscus University of Timișoara'),
(30313, 25449, 'ro', 'name', 'Universitatea Tibiscus din Timișoara'),
(30314, 25450, 'en', 'name', 'ISMA University'),
(30315, 25450, 'lv', 'name', 'Informācijas Sistēmu Menedžmenta Augstskola'),
(30316, 25450, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń школа менеГжмента Šø информационных систем'),
(30317, 25451, 'en', 'name', 'Ukrainian Academy of Printing'),
(30318, 25451, 'ru', 'name', 'Š£ŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ печати'),
(30319, 25451, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š“Ń€ŃƒŠŗŠ°Ń€ŃŃ‚Š²Š°'),
(30320, 25452, 'lv', 'name', 'Jāzepa Vītola Latvijas Mūzikas akadēmija'),
(30321, 25452, 'en', 'name', 'Jāzeps Vītols Latvian Academy of Music'),
(30322, 25452, 'lt', 'name', 'Latvijos Jazepo Vytuolio muzikos akademija'),
(30323, 25452, 'ru', 'name', 'Š›Š°Ń‚Š²ŠøŠ¹ŃŠŗŠ°Ń Š¼ŃƒŠ·Ń‹ŠŗŠ°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Язепа Витола'),
(30324, 25453, 'en', 'name', 'Ukrainian Catholic University'),
(30325, 25453, 'pl', 'name', 'Ukraiński Uniwersytet Katolicki'),
(30326, 25453, 'ru', 'name', 'Украинский католический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30327, 25453, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ ŠŗŠ°Ń‚Š¾Š»ŠøŃ†ŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30328, 25454, 'en', 'name', 'Khakass Institute of Business'),
(30329, 25454, 'ru', 'name', 'Єакасский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(30330, 25455, 'en', 'name', 'State Musical Pedagogical Institute named M.M.Ippolitova-Ivanov'),
(30331, 25455, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š¼ŃƒŠ·Ń‹ŠŗŠ°Š»ŃŒŠ½Š¾-пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени М. М. Š˜ŠæŠæŠ¾Š»ŠøŃ‚Š¾Š²Š°-Иванова'),
(30332, 25456, 'pl', 'name', 'Narodowy Uniwersytet Leśnictwa Ukrainy'),
(30333, 25456, 'en', 'name', 'Ukrainian National Forestry University'),
(30334, 25456, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украины'),
(30335, 25456, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ лісотехнічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ України'),
(30336, 25457, 'en', 'name', 'Almetyevsk State Oil Institute'),
(30337, 25457, 'ru', 'name', 'ŠŠ»ŃŒŠ¼ŠµŃ‚ŃŒŠµŠ²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30338, 25458, 'hr', 'name', 'SveučiliÅ”ni Centar za Protestantsku Teologiju Matija Vlačić Ilirik'),
(30339, 25458, 'en', 'name', 'University Center for Protestant Theology Matthias Flacius Illyricus'),
(30340, 25459, 'en', 'name', 'Latvian Maritime Academy'),
(30341, 25459, 'lv', 'name', 'Latvijas Jūras Akadēmija'),
(30342, 25460, 'en', 'name', 'Russian State Specialized Academy of Arts'),
(30343, 25460, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠæŠµŃ†ŠøŠ°Š»ŠøŠ·ŠøŃ€Š¾Š²Š°Š½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(30344, 25461, 'en', 'name', 'Latvian Academy of Culture'),
(30345, 25461, 'lv', 'name', 'Latvijas Kulturas akademija'),
(30346, 25462, 'en', 'name', 'Art Academy of Latvia'),
(30347, 25462, 'lv', 'name', 'Latvijas Mākslas akadēmija'),
(30348, 25462, 'lt', 'name', 'Latvijos dailės akademija'),
(30349, 25462, 'ru', 'name', 'Š›Š°Ń‚Š²ŠøŠ¹ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²'),
(30350, 25463, 'lv', 'name', 'Latvijas Nacionālā Aizsardzības Akadēmija'),
(30351, 25463, 'en', 'name', 'National Defence Academy of Latvia'),
(30352, 25464, 'en', 'name', 'Izmail State University of Humanities'),
(30353, 25464, 'uk', 'name', 'Š†Š·Š¼Š°Ń—Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний Š³ŃƒŠ¼Š°Š½Ń–тарний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30354, 25465, 'en', 'name', 'Latvian Academy of Sport Education'),
(30355, 25465, 'lv', 'name', 'Latvijas Sporta Pedagoģijas Akadēmija'),
(30356, 25466, 'en', 'name', 'Donbas National Academy of Civil Engineering and Architecture'),
(30357, 25466, 'uk', 'name', 'Š”Š¾Š½Š±Š°ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(30358, 25467, 'en', 'name', 'State University of Land Use Planning'),
(30359, 25467, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ по Š·ŠµŠ¼Š»ŠµŃƒŃŃ‚Ń€Š¾Š¹ŃŃ‚Š²Ńƒ'),
(30360, 25468, 'en', 'name', 'International Banking Institute'),
(30361, 25468, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ банковский ŠøŠ½ŃŃ‚ŠøŃ‚Ńƒ'),
(30362, 25469, 'en', 'name', 'Moscow Humanitarian Economic Institute'),
(30363, 25469, 'ru', 'name', 'Московский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30364, 25470, 'en', 'name', 'Riga Aeronautical Institute'),
(30365, 25470, 'lv', 'name', 'Rīgas Aeronavigācijas institūts'),
(30366, 25471, 'en', 'name', 'Nevsky Institute of Management and Design'),
(30367, 25471, 'ru', 'name', 'ŠŠµŠ²ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø Гизайна'),
(30368, 25472, 'en', 'name', 'Petro Mohyla Black Sea National University'),
(30369, 25472, 'ru', 'name', 'Черноморский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ŠŸŠµŃ‚ра ŠœŠ¾Š³ŠøŠ»Ń‹'),
(30370, 25472, 'uk', 'name', 'Š§Š¾Ń€Š½Š¾Š¼Š¾Ń€ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠŸŠµŃ‚Ń€Š° Могили'),
(30371, 25473, 'en', 'name', 'Mykolayiv National Agrarian University'),
(30372, 25473, 'uk', 'name', 'ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30373, 25473, 'ru', 'name', 'ŠŠøŠŗŠ¾Š»Š°ŠµŠ²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30374, 25474, 'en', 'name', 'St. Petersburg Institute of Jewish Studies'),
(30375, 25474, 'ru', 'name', 'ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ИуГаики'),
(30376, 25475, 'en', 'name', 'Institute of Contemporary Education "YurInfoR-MGU"'),
(30377, 25476, 'en', 'name', 'Higher School of Social Technologies'),
(30378, 25476, 'lv', 'name', 'SOCIĀLO TEHNOLOĢIJU AUGSTSKOLA'),
(30379, 25477, 'en', 'name', 'International Higher School of Practical Psychology'),
(30380, 25477, 'lv', 'name', 'Starptautiskā Praktiskās Psiholoģijas Augstskola'),
(30381, 25478, 'en', 'name', 'Arkhangelsk State Technical University'),
(30382, 25478, 'ru', 'name', 'ŠŃ€Ń…Š°Š½Š³ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30383, 25479, 'en', 'name', 'Humanitarian Institute of Television and Broadcasting M.A. LitovĆØina'),
(30384, 25479, 'ru', 'name', 'Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ Šø Ń€Š°Š“ŠøŠ¾Š²ŠµŃ‰Š°Š½ŠøŃ'),
(30385, 25480, 'en', 'name', 'Mykolaiv V.O. Sukhomlynskyi National University'),
(30386, 25480, 'uk', 'name', 'ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’.Šž. Š”ŃƒŃ…Š¾Š¼Š»ŠøŠ½ŃŃŒŠŗŠ¾Š³Š¾'),
(30387, 25481, 'en', 'name', 'International Institute of Management Arkhangelsk'),
(30388, 25481, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(30389, 25482, 'en', 'name', 'Transport and Telecommunication Institute'),
(30390, 25482, 'lv', 'name', 'Transporta un Sakaru Institūts'),
(30391, 25482, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Транспорта Šø Š”Š²ŃŠ·Šø'),
(30392, 25483, 'en', 'name', 'Nizhyn Gogol State University'),
(30393, 25483, 'ru', 'name', 'ŠŠµŠ¶ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ŠŠøŠŗŠ¾Š»Š°Ń Š“Š¾Š³Š¾Š»Ń'),
(30394, 25483, 'uk', 'name', 'ŠŃ–Š¶ŠøŠ½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Миколи Š“Š¾Š³Š¾Š»Ń'),
(30395, 25484, 'en', 'name', 'International Academy of Philosophy'),
(30396, 25484, 'de', 'name', 'Internationale Akademie für Philosophie'),
(30397, 25485, 'en', 'name', 'Saint Petersburg State Theatre Arts Academy'),
(30398, 25485, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠøŃŠŗŃƒŃŃŃ‚Š²Š°'),
(30399, 25486, 'en', 'name', 'Saint - Petersburg State Chemical Pharmaceutical Academy'),
(30400, 25486, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń химико-Ń„Š°Ń€Š¼Š°Ń†ŠµŠ²Ń‚ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30401, 25487, 'en', 'name', 'Private University in the Principality of Liechtenstein'),
(30402, 25487, 'de', 'name', 'Private Universität im Fürstentum Liechtenstein'),
(30403, 25488, 'en', 'name', 'National University Odesa Law Academy'),
(30404, 25488, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Университет ŠžŠ“ŠµŃŃŠŗŠ°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30405, 25488, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŠ“ŠµŃŃŒŠŗŠ° ŃŽŃ€ŠøŠ“ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(30406, 25489, 'en', 'name', 'Saint Petersburg Stieglitz State Academy of Art and Design'),
(30407, 25489, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š¾-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени А.Š›. Штиглица'),
(30408, 25490, 'pl', 'name', 'Uniwersytet Szawelski'),
(30409, 25490, 'en', 'name', 'Å iauliai University'),
(30410, 25490, 'lt', 'name', 'Šiaulių universitetas'),
(30411, 25491, 'en', 'name', 'Saint Petersburg State Conservatory named after N.A. Rimsky-Korsakov'),
(30412, 25491, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени Š. А. Римского-ŠšŠ¾Ń€ŃŠ°ŠŗŠ¾Š²Š°'),
(30413, 25492, 'en', 'name', 'Saint Petersburg State Forest Technical University'),
(30414, 25492, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30415, 25493, 'en', 'name', 'Northeastern State University'),
(30416, 25493, 'ru', 'name', 'Деверный Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30417, 25494, 'en', 'name', 'Armavir State Pedagogical Academy'),
(30418, 25494, 'ru', 'name', 'Армавирский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30419, 25495, 'en', 'name', 'International Business School at Vilnius University'),
(30420, 25495, 'lt', 'name', 'Vilniaus universiteto Tarptautinio verslo mokykla'),
(30421, 25496, 'en', 'name', 'Armavir Linguistic Social Institution'),
(30422, 25496, 'ru', 'name', 'Армавирский лингвистический ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30423, 25497, 'en', 'name', 'Armavir Orthodox-Social Institute'),
(30424, 25497, 'ru', 'name', 'Армавирский ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Š¾-Š”Š¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30425, 25498, 'en', 'name', 'Kazimieras Simonavičius University'),
(30426, 25498, 'lt', 'name', 'Vilniaus Verslo Teisės Akademija'),
(30427, 25499, 'en', 'name', 'Odessa National A. V. Nezhdanova Academy of Music'),
(30428, 25499, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŃƒŠ·ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń імені А. Š’. ŠŠµŠ¶Š“Š°Š½Š¾Š²Š¾Ń—'),
(30429, 25500, 'en', 'name', 'Dagestan State Institute of National Economy'),
(30430, 25500, 'ru', 'name', 'Дагестанский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нароГного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(30431, 25501, 'en', 'name', 'European University'),
(30432, 25501, 'mk', 'name', 'Европски ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚'),
(30433, 25502, 'en', 'name', 'Astrakhan State Conservatory'),
(30434, 25502, 'ru', 'name', 'ŠŃŃ‚Ń€Š°Ń…Š°Š½ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠšŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(30435, 25503, 'en', 'name', 'Astrakhan State Medical University'),
(30436, 25503, 'ru', 'name', 'Астраханский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Университет'),
(30437, 25504, 'en', 'name', 'International Balkan University'),
(30438, 25505, 'en', 'name', 'Saint Petersburg State Academic Institute of Painting Sculpture and Architecture named after I.E. Repin'),
(30439, 25505, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ акаГемический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ живописи ŃŠŗŃƒŠ»ŃŒŠæŃ‚ŃƒŃ€Ń‹ Šø Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ имени И.Š•. Репин'),
(30440, 25506, 'en', 'name', 'Odessa National Economics University'),
(30441, 25506, 'ru', 'name', 'ŠžŠ“ŠµŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30442, 25506, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30443, 25507, 'en', 'name', 'Astrakhan Institute of Civil Engineering'),
(30444, 25507, 'ru', 'name', 'Астраханский инженерно-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30445, 25508, 'en', 'name', 'Saint Petersburg State University of Architecture and Civil Engineering'),
(30446, 25508, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30447, 25509, 'en', 'name', 'Institute of Economics and Culture'),
(30448, 25509, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(30449, 25510, 'en', 'name', 'Altai State Pedagogical University'),
(30450, 25510, 'ru', 'name', 'ŠŠ»Ń‚Š°Š¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30451, 25511, 'en', 'name', 'Alecu Russo State University of Bălți'),
(30452, 25511, 'ro', 'name', 'Universitatea de Stat Alecu Russo din Bălți'),
(30453, 25511, 'ru', 'name', 'Š‘ŠµŠ»ŃŒŃ†ŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30454, 25512, 'en', 'name', 'Altai State Medical University'),
(30455, 25512, 'ru', 'name', 'Алтайский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30456, 25513, 'en', 'name', 'Saint Petersburg State University of Aerospace and Instrumentation'),
(30457, 25513, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(30458, 25514, 'en', 'name', 'Trade Co-operative University of Moldova'),
(30459, 25514, 'ro', 'name', 'Universitatea Cooperatist-Comerciala din Moldova'),
(30460, 25515, 'en', 'name', 'Saint Petersburg State University of Cinema and Television'),
(30461, 25515, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кино Šø Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ'),
(30462, 25516, 'en', 'name', 'Saint Petersburg State University of Culture and Arts'),
(30463, 25516, 'ru', 'name', 'ственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(30464, 25517, 'ro', 'name', 'Universitatea de Stat din Tiraspol'),
(30465, 25518, 'en', 'name', 'Barnaul Law Institute of the Russian Interior Ministry'),
(30466, 25518, 'ru', 'name', 'Š‘Š°Ń€Š½Š°ŃƒŠ»ŃŒŃŠŗŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(30467, 25519, 'en', 'name', 'Belgorod State Agricultural University'),
(30468, 25519, 'ru', 'name', 'БелгороГский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30469, 25520, 'en', 'name', 'Saint-Petersburg Institute of Economy and Management'),
(30470, 25520, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(30471, 25521, 'en', 'name', 'Saint-Petersburg Institute of Hospitality'),
(30472, 25521, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гостеприимства'),
(30473, 25522, 'en', 'name', 'Belgorod State Technological University'),
(30474, 25522, 'ru', 'name', 'БелгороГский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š’. Š“. ŠØŃƒŃ…Š¾Š²Š°'),
(30475, 25523, 'no_lang_code', 'name', 'Poltava V.G. Korolenko National Pedagogical University'),
(30476, 25523, 'uk', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’.Š“.ŠšŠ¾Ń€Š¾Š»ŠµŠ½ŠŗŠ°'),
(30477, 25524, 'en', 'name', 'Free International University of Moldova'),
(30478, 25524, 'ro', 'name', 'Universitatea Liberă Internaţională din Moldova'),
(30479, 25525, 'en', 'name', 'Belgorod National Research University'),
(30480, 25525, 'ru', 'name', 'БелгороГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30481, 25526, 'en', 'name', 'Rivne State University of Humanities'),
(30482, 25526, 'uk', 'name', 'Š Ń–Š²Š½ŠµŠ½ŃŃŒŠŗŠøŠ¹ Гержавний Š³ŃƒŠ¼Š°Š½Ń–тарний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30483, 25527, 'en', 'name', 'Belgorod Law Institute of the Russian Interior Ministry'),
(30484, 25527, 'ru', 'name', 'БелгороГский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(30485, 25528, 'en', 'name', 'Belgorod University of Cooperation, Economics and Law'),
(30486, 25528, 'ru', 'name', 'БелгороГский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ кооперации, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(30487, 25529, 'en', 'name', 'Institute of Art Restoration'),
(30488, 25529, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² реставрации'),
(30489, 25530, 'en', 'name', 'Altai State Humanities Pedagogical University'),
(30490, 25530, 'ru', 'name', 'Алтайский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. М. Шукшина'),
(30491, 25531, 'en', 'name', 'Univers Moldova'),
(30492, 25532, 'en', 'name', 'Comrat State University'),
(30493, 25532, 'tr', 'name', 'Komrat Devlet Üniversitesi'),
(30494, 25532, 'ro', 'name', 'Universitatea de Stat din Comrat'),
(30495, 25532, 'ru', 'name', 'ŠšŠ¾Š¼Ń€Š°Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30496, 25533, 'en', 'name', 'Nakhimov Naval Academy'),
(30497, 25533, 'uk', 'name', 'Š§Š’Š’ŠœŠ£ им П.Š”. ŠŠ°Ń…ŠøŠ¼Š¾Š²Š°'),
(30498, 25534, 'en', 'name', 'Institute of State Administration'),
(30499, 25534, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŠŠ“Š¼ŠøŠ½ŠøŃŃ‚Ń€ŠøŃ€Š¾Š²Š°Š½ŠøŃ'),
(30500, 25535, 'en', 'name', 'Sevastopol National University of Nuclear Energy and Industry'),
(30501, 25535, 'ru', 'name', 'Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ ŃŠ½ŠµŃ€Š³ŠøŠø Šø ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(30502, 25535, 'uk', 'name', 'Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ“ŠµŃ€Š½Š¾Ń— енергії та промисловості'),
(30503, 25536, 'en', 'name', 'Saint Petersburg Institute of Law named after Prince P. Oldenburg'),
(30504, 25536, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ права имени ŠŸŃ€ŠøŠ½Ń†Š° П.Š“.ŠžŠ»ŃŒŠ“ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠ¾Š³Š¾'),
(30505, 25537, 'en', 'name', 'Institute Unic'),
(30506, 25537, 'ru', 'name', 'ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ Гистанционного Š¾Š±ŃƒŃ‡ŠµŠ½ŠøŃ'),
(30507, 25538, 'en', 'name', 'Saint - Petersburg Institute of Management and Law'),
(30508, 25538, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŠŸŃ€Š°Š²Š°'),
(30509, 25539, 'en', 'name', 'Saint Petersburg Medical Technical Institute'),
(30510, 25539, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинских'),
(30511, 25540, 'en', 'name', 'Institute for Languages ​​and Cultures Leo Tolstoy'),
(30512, 25540, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ·Ń‹ŠŗŠ¾Š² Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ имени Š›ŃŒŠ²Š° Толстого'),
(30513, 25541, 'en', 'name', 'International Management Institute Saint Petersburg'),
(30514, 25541, 'ru', 'name', 'ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента'),
(30515, 25542, 'en', 'name', 'Saint Petersburg Social and Economic Institute'),
(30516, 25542, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30517, 25543, 'en', 'name', 'Faculty for State and European Studies'),
(30518, 25543, 'bs', 'name', 'Fakultet za državne i evropske studije'),
(30519, 25544, 'en', 'name', 'Saint Petersburg Institute of International Economic Relations, Economics and Law'),
(30520, 25544, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒĢŃ‚ Š²Š½ŠµŃˆŠ½ŠµŃŠŗŠ¾Š½Š¾Š¼ŠøĢŃ‡ŠµŃŠŗŠøŃ… ŃŠ²ŃĢŠ·ŠµŠ¹, ŃŠŗŠ¾Š½Š¾ĢŠ¼ŠøŠŗŠø Šø пра́ва, Š˜Š’Š­Š”Š­ĢŠŸ'),
(30521, 25545, 'en', 'name', 'Crimean Agrotechnological University'),
(30522, 25545, 'uk', 'name', 'ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠøŠ¹ агротехнологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30523, 25546, 'en', 'name', 'Kyiv Slavonic University'),
(30524, 25546, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠ¾Š³Š¾ славістичного ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(30525, 25547, 'en', 'name', 'Crimea State Medical University named after S. I. Georgievsky'),
(30526, 25547, 'uk', 'name', 'ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ім. Š”. І. Š“ŠµŠ¾Ń€Š³Ń–Ń”Š²ŃŃŒŠŗŠ¾Š³Š¾'),
(30527, 25547, 'ru', 'name', 'ŠšŃ€Ń‹ĢŠ¼ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøĢŠ½ŃŠŗŠøŠ¹ Университе́т и́мени Š”. И. Гео́ргиевского'),
(30528, 25548, 'en', 'name', 'University of Donja Gorica'),
(30529, 25548, 'bs', 'name', 'Univerzitet Donja Gorica'),
(30530, 25548, 'sr', 'name', 'Универзитет Š”Š¾ŃšŠ° Горица'),
(30531, 25549, 'en', 'name', 'Amur State Medical Academy'),
(30532, 25549, 'ru', 'name', 'ŠŠ¼ŃƒŃ€ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30533, 25550, 'en', 'name', 'National Academy of Environmental and Resort Construction'),
(30534, 25550, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń прироГоохоронного і ŠŗŃƒŃ€Š¾Ń€Ń‚Š½Š¾Š³Š¾ Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š°'),
(30535, 25551, 'en', 'name', 'Amur State University'),
(30536, 25551, 'ru', 'name', 'ŠŠ¼ŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30537, 25552, 'en', 'name', 'Sumy State University'),
(30538, 25552, 'ru', 'name', 'Думский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30539, 25552, 'uk', 'name', 'Думський Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30540, 25553, 'en', 'name', 'Ukrainian Academy of Banking of the National Bank of Ukraine'),
(30541, 25553, 'uk', 'name', 'ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠ¾Ń— справи ŠŠ‘Š£'),
(30542, 25554, 'en', 'name', 'Bratsk State University'),
(30543, 25554, 'ru', 'name', 'Братский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30544, 25555, 'en', 'name', 'Ternopil Ivan Pului National Technical University'),
(30545, 25555, 'uk', 'name', 'Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана ŠŸŃƒŠ»ŃŽŃ'),
(30546, 25556, 'en', 'name', 'Ternopil Volodymyr Hnatiuk National Pedagogical University'),
(30547, 25556, 'ru', 'name', 'Š¢ŠµŃ€Š½Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ВлаГимира Š“Š½Š°Ń‚ŃŽŠŗŠ°'),
(30548, 25556, 'uk', 'name', 'Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВолоГимира Š“Š½Š°Ń‚ŃŽŠŗŠ°'),
(30549, 25557, 'en', 'name', 'Pavlo Tychyna Uman State Pedagogical University'),
(30550, 25557, 'ru', 'name', 'Уманский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Павла Тычины'),
(30551, 25557, 'uk', 'name', 'Уманський Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Павла Тичини'),
(30552, 25558, 'en', 'name', 'Uman National University of Horticulture'),
(30553, 25558, 'uk', 'name', 'Уманський Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ саГівництва'),
(30554, 25559, 'en', 'name', 'Bryansk State Engineering and Technological Academy'),
(30555, 25559, 'ru', 'name', 'Š‘Ń€ŃŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń инженерно-Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30556, 25560, 'en', 'name', 'Bryansk State Technical University'),
(30557, 25560, 'ru', 'name', 'Š‘Ń€ŃŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30558, 25561, 'en', 'name', 'St. Petersburg University of the Ministry of Internal Affairs of Russia'),
(30559, 25561, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ’Š” России'),
(30560, 25562, 'en', 'name', 'North-West Institute of Management'),
(30561, 25562, 'ru', 'name', 'Деверо-ЗапаГный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(30562, 25563, 'en', 'name', 'Institute of Natural Sciences and Ecology'),
(30563, 25563, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ естественных наук Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(30564, 25564, 'en', 'name', 'Vinnytsia National Technical University'),
(30565, 25564, 'pl', 'name', 'Winnicki Narodowy Uniwersytet Techniczny'),
(30566, 25564, 'uk', 'name', 'Š’Ń–Š½Š½ŠøŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30567, 25565, 'en', 'name', 'Classic Private University'),
(30568, 25565, 'uk', 'name', 'ŠšŠ»Š°ŃŠøŃ‡Š½ŠøŠ¹ приватний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30569, 25566, 'en', 'name', 'Northwest Open Technical University'),
(30570, 25566, 'ru', 'name', 'Деверо-ЗапаГный открытый технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30571, 25567, 'en', 'name', 'Zaporizhzhya State Engineering Academy'),
(30572, 25567, 'uk', 'name', 'Інженерний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ¾Š³Š¾ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(30573, 25568, 'en', 'name', 'East European Institute of Psychoanalysis'),
(30574, 25568, 'ru', 'name', 'Восточно-Европейский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŸŃŠøŃ…Š¾Š°Š½Š°Š»ŠøŠ·Š°'),
(30575, 25569, 'en', 'name', 'Institute of International Business Education'),
(30576, 25569, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾Š³Š¾ бизнес-Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(30577, 25570, 'en', 'name', 'Institute of International Law and Economics named after AS Griboedova'),
(30578, 25570, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾Š³Š¾ права Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø имени А.Š”. ГрибоеГова'),
(30579, 25571, 'en', 'name', 'Institute of Business, Psychology and Management'),
(30580, 25571, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса, психологии Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(30581, 25572, 'en', 'name', 'Institute of International Trade and Law'),
(30582, 25572, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾Š¹ торговли Šø права'),
(30583, 25573, 'en', 'name', 'Institute of Management and Business'),
(30584, 25573, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента Šø бизнеса'),
(30585, 25574, 'en', 'name', 'Institute of World Civilizations'),
(30586, 25575, 'en', 'name', 'Regional Communal Higher Educational Institution Institute of Entrepreneurship Strategy'),
(30587, 25575, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ траГиційної меГицини'),
(30588, 25576, 'en', 'name', 'Mordovia State Pedagogical Institute named after ME Evseveva'),
(30589, 25576, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ "ŠœŠ¾Ń€Š“Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени М. Š•. Š•Š²ŃŠµŠ²ŃŒŠµŠ²Š°"'),
(30590, 25577, 'en', 'name', 'Zhytomyr Polytechnic State University'),
(30591, 25577, 'uk', 'name', 'Š–ŠøŃ‚Š¾Š¼ŠøŃ€ŃŃŒŠŗŠøŠ¹ Гержавний технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30592, 25578, 'en', 'name', 'Institute of World Economy and Information'),
(30593, 25578, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŃ€Š¾Š²Š¾Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø информатизации'),
(30594, 25579, 'no_lang_code', 'name', 'Zhytomyr Ivan Franko State University'),
(30595, 25579, 'uk', 'name', 'Š–ŠøŃ‚Š¾Š¼ŠøŃ€ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана Франка'),
(30596, 25580, 'en', 'name', 'Saratov State Academy of Law'),
(30597, 25580, 'ru', 'name', 'Š”Š°Ń€Š°Ń‚Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30598, 25581, 'en', 'name', 'Saratov State Conservatory named after L. V. Sobinov'),
(30599, 25581, 'ru', 'name', 'Š”Š°Ń€Š°Ń‚Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени Š›. Š’. Добинова'),
(30600, 25582, 'en', 'name', 'Moscow State Linguistic University'),
(30601, 25582, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30602, 25583, 'en', 'name', 'MF Norwegian School of Theology, Religion and Society'),
(30603, 25584, 'en', 'name', 'Institute of Practical Oriental Studies'),
(30604, 25584, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ практического Š²Š¾ŃŃ‚Š¾ŠŗŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(30605, 25585, 'en', 'name', 'Saratov State Socio-Economic University'),
(30606, 25585, 'ru', 'name', 'Даратовский ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š Š­Š£ им. Š“. Š’. ŠŸŠ»ŠµŃ…Š°Š½Š¾Š²Š°'),
(30607, 25586, 'en', 'name', 'Moscow State University of Medicine and Dentistry'),
(30608, 25586, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный меГико-стоматологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30609, 25587, 'en', 'name', 'Institute of Practical Psychology and Psychoanalysis'),
(30610, 25587, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ практической психологии Šø психоанализа'),
(30611, 25588, 'en', 'name', 'Transbaikal State University'),
(30612, 25588, 'ru', 'name', 'Š—Š°Š±Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30613, 25589, 'en', 'name', 'Moscow Region State University'),
(30614, 25589, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный областной ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30615, 25590, 'en', 'name', 'Saratov State University'),
(30616, 25590, 'ru', 'name', 'Даратовский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š“. Š§ŠµŃ€Š½Ń‹ŃˆŠµŠ²ŃŠŗŠ¾Š³Š¾'),
(30617, 25591, 'en', 'name', 'Institute of Legal Economics'),
(30618, 25591, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ правовой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(30619, 25592, 'en', 'name', 'Moscow State Open University'),
(30620, 25593, 'en', 'name', 'Institute of Professional Innovations'),
(30621, 25593, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠ¤Š•Š”Š”Š˜ŠžŠŠŠ›Š¬ŠŠ«Š„ Š˜ŠŠŠžŠ’ŠŠ¦Š˜Š™'),
(30622, 25594, 'en', 'name', 'Institute of Professional Evaluation'),
(30623, 25594, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ оценки'),
(30624, 25595, 'en', 'name', 'Institute of Psychology and Pedagogy'),
(30625, 25595, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологии Šø пеГагогики'),
(30626, 25596, 'en', 'name', 'Institute of Market Economy, Social Policy and Law'),
(30627, 25596, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыночной ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ политики Šø права'),
(30628, 25597, 'no', 'name', 'Norges musikkhĆøgskole'),
(30629, 25597, 'fi', 'name', 'Norjan valtiollinen musiikkikorkeakoulu'),
(30630, 25597, 'en', 'name', 'Norwegian Academy of Music'),
(30631, 25598, 'en', 'name', 'Moscow Institute of Modern Business'),
(30632, 25598, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ современного бизнеса'),
(30633, 25599, 'en', 'name', 'Institute of Contemporary Art'),
(30634, 25599, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Довременного Š˜ŃŠŗŃƒŃŃŃ‚ва'),
(30635, 25600, 'en', 'name', 'Moscow Polytechnic University'),
(30636, 25600, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30637, 25601, 'en', 'name', 'Moscow State Technical University of Civil Aviation'),
(30638, 25601, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ гражГанской авиации'),
(30639, 25602, 'no_lang_code', 'name', 'Sergiyev Posad Humanitarian Institute'),
(30640, 25602, 'ru', 'name', 'Дергиево-ПосаГский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30641, 25603, 'en', 'name', 'Gorky Institute of World Literature'),
(30642, 25603, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мировой Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ имени А. М. Š“Š¾Ń€ŃŒŠŗŠ¾Š³Š¾ Š ŠŠ'),
(30643, 25604, 'en', 'name', 'Tchaikovsky State Institute of Physical Culture'),
(30644, 25604, 'ru', 'name', 'Чайковский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(30645, 25605, 'en', 'name', 'A. N. Kosygin Moscow State Textile University'),
(30646, 25605, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный Ń‚ŠµŠŗŃŃ‚ŠøŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š. ŠšŠ¾ŃŃ‹Š³ŠøŠ½Š°'),
(30647, 25606, 'en', 'name', 'International Institute of Hotel Management and Tourism'),
(30648, 25606, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гостиничного менеГжмента Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(30649, 25607, 'en', 'name', 'Shuya State Pedagogical University'),
(30650, 25607, 'ru', 'name', 'Шуйский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(30651, 25608, 'en', 'name', 'International Academy of Marketing and Management'),
(30652, 25608, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ маркетинга Šø менеГжмента'),
(30653, 25609, 'en', 'name', 'Chuvash State Agricultural Academy'),
(30654, 25609, 'ru', 'name', 'Š§ŃƒŠ²Š°ŃˆŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30655, 25610, 'en', 'name', 'International Law Institute'),
(30656, 25610, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30657, 25611, 'en', 'name', 'Smolensk State Academy of Physical Culture, Sport and Tourism'),
(30658, 25611, 'ru', 'name', 'Š”Š¼Š¾Š»ŠµŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(30659, 25612, 'en', 'name', 'Moscow State University of Printing Arts'),
(30660, 25612, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ печати'),
(30661, 25613, 'en', 'name', 'Chuvash State Pedagogical University'),
(30662, 25613, 'ru', 'name', 'Чувашский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. ŠÆ. Яковлева'),
(30663, 25614, 'en', 'name', 'Smolensk State Medical University'),
(30664, 25614, 'ru', 'name', 'смоленский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚');
INSERT INTO `ror_settings` VALUES
(30665, 25615, 'en', 'name', 'MNEPU Academy'),
(30666, 25615, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠŠµŠ·Š°Š²ŠøŃŠøŠ¼Ń‹Š¹ Эколого-ŠŸŠ¾Š»ŠøŃ‚Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(30667, 25616, 'en', 'name', 'Moscow State University of Food Production'),
(30668, 25616, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ пищевых произвоГств'),
(30669, 25617, 'en', 'name', 'International Slavic Institute'),
(30670, 25617, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Š”Š»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30671, 25618, 'en', 'name', 'Smolensk State Institute of Fine Arts'),
(30672, 25618, 'ru', 'name', 'Дмоленский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(30673, 25619, 'en', 'name', 'International Academy of Business and Management'),
(30674, 25619, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Бизнеса Šø Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(30675, 25620, 'en', 'name', 'International University in Moscow'),
(30676, 25620, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Москве'),
(30677, 25621, 'en', 'name', 'Moscow Academy of Economics and Law'),
(30678, 25621, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(30679, 25622, 'en', 'name', 'Chelyabinsk State Institute of Culture'),
(30680, 25622, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(30681, 25623, 'en', 'name', 'Moscow University of Finance and Law'),
(30682, 25623, 'ru', 'name', 'Московский финансово-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30683, 25624, 'en', 'name', 'Smolensk State Agricultural Academy'),
(30684, 25624, 'ru', 'name', 'Š”Š¼Š¾Š»ŠµŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30685, 25625, 'en', 'name', 'Moscow State University of Environmental Engineering'),
(30686, 25625, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ инженерной ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(30687, 25626, 'en', 'name', 'Moscow State Academy of Choreography'),
(30688, 25626, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ хореографии'),
(30689, 25627, 'en', 'name', 'Chelyabinsk State Agroengineering Academy'),
(30690, 25627, 'ru', 'name', 'Южно-Š£Ń€Š°ĢŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ агра́рный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚'),
(30691, 25628, 'en', 'name', 'South Ural State Humanitarian Pedagogical University'),
(30692, 25628, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30693, 25629, 'en', 'name', 'Moscow State Academy of Water Transport'),
(30694, 25629, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ воГного транспорта'),
(30695, 25630, 'en', 'name', 'Tver State Agricultural Academy'),
(30696, 25630, 'ru', 'name', 'Тверской Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30697, 25631, 'en', 'name', 'State Classical Academy named after Maimonides'),
(30698, 25631, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ»Š°ŃŃŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени МаймониГа'),
(30699, 25632, 'en', 'name', 'Sochi Institute of Economics and Information Technology'),
(30700, 25632, 'ru', 'name', 'Дочинский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Экономики И Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Ń‹Ń… Технологий'),
(30701, 25633, 'no_lang_code', 'name', 'Solikamsk State Pedagogical Institute'),
(30702, 25634, 'en', 'name', 'Moscow Conservatory'),
(30703, 25634, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. П. И. Чайковского'),
(30704, 25635, 'en', 'name', 'North Caucasian Social Institute'),
(30705, 25635, 'ru', 'name', 'Деверо-Кавказский ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30706, 25636, 'en', 'name', 'Tver Institute of Ecology and Law'),
(30707, 25636, 'ru', 'name', 'Тверской ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø права'),
(30708, 25637, 'en', 'name', 'Moscow International Higher Business School'),
(30709, 25637, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š²Ń‹ŃŃˆŠ°Ń школа бизнеса'),
(30710, 25638, 'en', 'name', 'Chelyabinsk Institute of Economics and Law named after M.V.Ladoshin'),
(30711, 25638, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права имени M.V.Ladoshin'),
(30712, 25639, 'en', 'name', 'Stavropol Finance and Economics Institute'),
(30713, 25640, 'en', 'name', 'Stavropol State Agrarian University'),
(30714, 25640, 'ru', 'name', 'Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30715, 25641, 'en', 'name', 'Russian State Agrarian University - Moscow Timiryazev Agricultural Academy'),
(30716, 25641, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ — МДЄА имени К.А. Š¢ŠøŠ¼ŠøŃ€ŃŠ·ŠµŠ²Š°'),
(30717, 25642, 'en', 'name', 'Moscow Financial Legal Institution'),
(30718, 25642, 'ru', 'name', 'Московский финансово-правовой ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30719, 25643, 'en', 'name', 'Stavropol State University'),
(30720, 25644, 'en', 'name', 'Moscow Architectural Institute'),
(30721, 25644, 'ru', 'name', 'Московский ŠŃ€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30722, 25645, 'en', 'name', 'Stavropol Institute of VD Chursina'),
(30723, 25645, 'ru', 'name', 'Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š’.Š”. Š§ŃƒŃ€ŃŠøŠ½Š°'),
(30724, 25646, 'en', 'name', 'Moscow Institute of Economics Politics and Law'),
(30725, 25646, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, политики Šø права'),
(30726, 25647, 'en', 'name', 'Moscow Institute of Foreign Languages'),
(30727, 25647, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иностранных ŃŠ·Ń‹ŠŗŠ¾Š²'),
(30728, 25648, 'en', 'name', 'Moscow State Institute of International Relations'),
(30729, 25648, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(30730, 25649, 'en', 'name', 'Institute of Friendship of the People of Caucasus'),
(30731, 25649, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Ń€ŃƒŠ¶Š±Ń‹ нароГов Кавказа'),
(30732, 25650, 'en', 'name', 'Moscow Institute of Medical and Social Rehabilitologists'),
(30733, 25650, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГико-ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ реабилитологии'),
(30734, 25651, 'en', 'name', 'Surgut State Pedagogical University'),
(30735, 25651, 'ru', 'name', 'Š”ŃƒŃ€Š³ŃƒŃ‚ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(30736, 25652, 'en', 'name', 'Ministry of Internal Affairs of the Russian Federation'),
(30737, 25652, 'ru', 'name', 'ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Šž Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(30738, 25653, 'en', 'name', 'Surgut ''Planet'' Institute of World Economics and Business'),
(30739, 25653, 'ru', 'name', 'Š”ŃƒŃ€Š³ŃƒŃ‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мировой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø бизнеса'),
(30740, 25654, 'en', 'name', 'Bashkir Academy of Public Administration and Management under the Head of the Republic of Bashkortostan'),
(30741, 25654, 'ru', 'name', 'Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при Главе Республики Š‘Š°ŃˆŠŗŠ¾Ń€Ń‚Š¾ŃŃ‚Š°Š½'),
(30742, 25655, 'en', 'name', 'South Ural State Institute of Arts named after P.I. Tchaikovsky'),
(30743, 25655, 'ru', 'name', 'Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² им. П.И. Чайковского'),
(30744, 25656, 'en', 'name', 'Institute of State and Law'),
(30745, 25656, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²Š° Šø права Российской акаГемии наук'),
(30746, 25657, 'en', 'name', 'Komi State Pedagogical Institute'),
(30747, 25657, 'ru', 'name', 'Коми Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30748, 25658, 'en', 'name', 'Moscow Banking Institute'),
(30749, 25658, 'ru', 'name', 'Московский банковский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30750, 25659, 'no_lang_code', 'name', 'Syktyvkar State University'),
(30751, 25659, 'ru', 'name', 'Дыктывкарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30752, 25660, 'en', 'name', 'Bashkir State Agrarian University'),
(30753, 25660, 'ru', 'name', 'Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30754, 25661, 'en', 'name', 'Moscow Institute of Entrepreneurship and Law'),
(30755, 25661, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° Šø права'),
(30756, 25662, 'en', 'name', 'Taganrog State Pedagogical Institute'),
(30757, 25662, 'ru', 'name', 'Таганрогский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени А.П. Чехова'),
(30758, 25663, 'en', 'name', 'Tambov State Music and Pedagogical Institute named after S.V. Rachmaninov'),
(30759, 25663, 'ru', 'name', 'Š¢ŠŠœŠ‘ŠžŠ’Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠœŠ£Š—Š«ŠšŠŠ›Š¬ŠŠž-ŠŸŠ•Š”ŠŠ“ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ИМ. Š”.Š’. Š ŠŠ„ŠœŠŠŠ˜ŠŠžŠ’Š'),
(30760, 25664, 'en', 'name', 'Chelyabinsk Law institute of Ministry of Internal Affairs of Russia'),
(30761, 25664, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ ЮриГический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š” России'),
(30762, 25665, 'en', 'name', 'Moscow Humanitarian-Technical Academy'),
(30763, 25665, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-Š¢ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30764, 25666, 'en', 'name', 'Economic and Law Institute in Moscow'),
(30765, 25666, 'ru', 'name', 'ŠœŠžŠ”ŠšŠžŠ’Š”ŠšŠ˜Š™ Š­ŠšŠžŠŠžŠœŠ˜ŠšŠž-ŠŸŠ ŠŠ’ŠžŠ’ŠžŠ™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(30766, 25667, 'en', 'name', 'M. Akmullah Bashkir State Pedagogical University'),
(30767, 25667, 'ru', 'name', 'Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. ŠŠŗŠ¼ŃƒŠ»Š»Ń‹'),
(30768, 25668, 'en', 'name', 'Tyumen State Medical University'),
(30769, 25668, 'ru', 'name', 'Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30770, 25669, 'en', 'name', 'Ural State University of Physical Culture'),
(30771, 25670, 'en', 'name', 'Moscow New Law Institute'),
(30772, 25670, 'ru', 'name', 'Московский ŠŠ¾Š²Ń‹Š¹ ЮриГический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30773, 25671, 'en', 'name', 'Moscow Financial and Economic Institute'),
(30774, 25671, 'ru', 'name', 'Московский финансово-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30775, 25672, 'en', 'name', 'Agrarian State University of Northern Zauralye'),
(30776, 25672, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Деверного Š—Š°ŃƒŃ€Š°Š»ŃŒŃ'),
(30777, 25673, 'en', 'name', 'Moscow City University'),
(30778, 25673, 'ru', 'name', 'Московский гороГской ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30779, 25674, 'en', 'name', 'Tyumen State Academy of World Economics, Management and Law'),
(30780, 25674, 'ru', 'name', 'Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ мировой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(30781, 25675, 'en', 'name', 'Ufa State Institute of Arts'),
(30782, 25675, 'ru', 'name', 'Уфимский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² имени Загира Исмагилова'),
(30783, 25676, 'en', 'name', 'University of Tyumen'),
(30784, 25676, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30785, 25677, 'en', 'name', 'Moscow State Agroengineering University named after V.P. Goryachkin'),
(30786, 25677, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный агроинженерный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. П. Š“Š¾Ń€ŃŃ‡ŠŗŠøŠ½Š°'),
(30787, 25678, 'en', 'name', 'Tyumen Law Institute of the Russian Interior Ministry'),
(30788, 25678, 'ru', 'name', 'Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š” России'),
(30789, 25679, 'en', 'name', 'Moscow Technical University of Communication and Informatics'),
(30790, 25679, 'ru', 'name', 'Московский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ²ŃŠ·Šø Šø информатики'),
(30791, 25680, 'en', 'name', 'Russian Academy of Arts'),
(30792, 25680, 'ru', 'name', 'Š Š¾ŃŃŠøĢŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµĢŠ¼ŠøŃ Ń…ŃƒŠ“Š¾ĢŠ¶ŠµŃŃ‚Š²'),
(30793, 25681, 'en', 'name', 'Moscow University Touro'),
(30794, 25681, 'ru', 'name', 'Московский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¢Š£Š Šž'),
(30795, 25682, 'en', 'name', 'National Institute of Business'),
(30796, 25682, 'ru', 'name', 'ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š‘Š˜Š—ŠŠ•Š”Š'),
(30797, 25683, 'en', 'name', 'Ekaterinburg State Theatre Institute'),
(30798, 25683, 'ru', 'name', 'Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30799, 25684, 'en', 'name', 'Eastern Economics and Law Humanities'),
(30800, 25684, 'ru', 'name', 'Š’Š¾ŃŃ‚Š¾Ń‡Š½Š°Ń ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30801, 25685, 'en', 'name', 'Moscow State Mining University'),
(30802, 25685, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный горный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30803, 25686, 'en', 'name', 'First Moscow Law Institute'),
(30804, 25686, 'ru', 'name', 'ŠŸŠµŃ€Š²Ń‹Š¹ московский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30805, 25687, 'en', 'name', 'Tobolsk Pedagogical Institute named after D. I. Mendeleev'),
(30806, 25687, 'ru', 'name', 'Тобольский пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š”.И. МенГелеева'),
(30807, 25688, 'en', 'name', 'Liberal Arts University'),
(30808, 25688, 'ru', 'name', 'Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30809, 25689, 'en', 'name', 'Institute of International Relations'),
(30810, 25689, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… ŃŠ²ŃŠ·ŠµŠ¹'),
(30811, 25690, 'en', 'name', 'Pryazovskyi State Technical University'),
(30812, 25690, 'pl', 'name', 'Przyazowski Państwowy Uniwersytet Techniczny'),
(30813, 25690, 'ru', 'name', 'ŠŸŃ€ŠøŠ°Š·Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30814, 25690, 'uk', 'name', 'ŠŸŃ€ŠøŠ°Š·Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30815, 25691, 'en', 'name', 'International Association for Continuing Engineering Education'),
(30816, 25691, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ•ŠŠ•Š”Š–ŠœŠ•ŠŠ¢Š И Š Š«ŠŠšŠ'),
(30817, 25692, 'en', 'name', 'Moscow State Art and Industry Academy named after SG Stroganov'),
(30818, 25692, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š¾-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Š”. Š“. Дтроганова'),
(30819, 25693, 'en', 'name', 'Russian State Vocational Pedagogical University'),
(30820, 25693, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30821, 25694, 'en', 'name', 'Moscow State Industrial University'),
(30822, 25694, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30823, 25695, 'en', 'name', 'Odessa State University of Internal Affairs'),
(30824, 25695, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(30825, 25696, 'en', 'name', 'Ukhta State Technical University'),
(30826, 25697, 'en', 'name', 'Moscow State Institute of Electronics and Mathematics'),
(30827, 25697, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø Šø математики'),
(30828, 25698, 'en', 'name', 'Urals Institute of Management'),
(30829, 25698, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(30830, 25699, 'en', 'name', 'Togliatti Academy of Management'),
(30831, 25700, 'en', 'name', 'Togliatti State University'),
(30832, 25700, 'ru', 'name', 'Š¢Š¾Š»ŃŒŃŃ‚Ń‚ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30833, 25701, 'en', 'name', 'Ural State Mining University'),
(30834, 25701, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ горный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30835, 25702, 'en', 'name', 'Volzhsky University after V.N. Tatischev'),
(30836, 25702, 'ru', 'name', 'Волжский Университет им. Š’.Š. Татищева'),
(30837, 25703, 'en', 'name', 'Russian Academy of Advocacy and Notaries'),
(30838, 25703, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š°Š“Š²Š¾ŠŗŠ°Ń‚ŃƒŃ€Ń‹ Šø нотариата'),
(30839, 25704, 'en', 'name', 'Ural State Law University'),
(30840, 25704, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30841, 25705, 'en', 'name', 'Buryat State Academy of Agriculture'),
(30842, 25705, 'ru', 'name', 'Š‘ŃƒŃ€ŃŃ‚ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(30843, 25706, 'en', 'name', 'Tomsk Institute of Economics and Law'),
(30844, 25706, 'ru', 'name', 'Томский ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30845, 25707, 'en', 'name', 'Buryat State University'),
(30846, 25707, 'ru', 'name', 'Š‘ŃƒŃ€ŃŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30847, 25708, 'en', 'name', 'Ural State Conservatory named after M.P. Mussorgsky'),
(30848, 25708, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени М. П. ŠœŃƒŃŠ¾Ń€Š³ŃŠŗŠ¾Š³Š¾'),
(30849, 25709, 'en', 'name', 'Ural State Academy of Veterinary Medicine'),
(30850, 25710, 'en', 'name', 'Tula State Pedagogical University named after L.N. Tolstoy'),
(30851, 25710, 'ru', 'name', 'Тульский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š›. Š. Толстого'),
(30852, 25711, 'en', 'name', 'Russian Academy of Entrepreneurship'),
(30853, 25711, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŸŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(30854, 25712, 'en', 'name', 'East Siberian Academy of Culture and Arts'),
(30855, 25712, 'ru', 'name', 'Восточно- Дибирский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(30856, 25713, 'no_lang_code', 'name', 'Upper Volga Institute'),
(30857, 25714, 'en', 'name', 'Russian Institute of Theatre Arts'),
(30858, 25714, 'ru', 'name', 'Российский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠøŃŠŗŃƒŃŃŃ‚Š²Š°'),
(30859, 25715, 'en', 'name', 'Ural State Agrarian University'),
(30860, 25715, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30861, 25716, 'en', 'name', 'Ulyanovsk State Agricultural Academy named after PA Stolypin'),
(30862, 25716, 'ru', 'name', 'Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30863, 25717, 'en', 'name', 'Ural Institute of Finance and Law'),
(30864, 25717, 'ru', 'name', 'Š£Š ŠŠ›Š¬Š”ŠšŠ˜Š™ Š¤Š˜ŠŠŠŠ”ŠžŠ’Šž-Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(30865, 25718, 'en', 'name', 'Ulyanovsk State Pedagogical University Named After I. Ulyanov'),
(30866, 25718, 'ru', 'name', 'Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. Š. Š£Š»ŃŒŃŠ½Š¾Š²Š°'),
(30867, 25719, 'en', 'name', 'Russian School of Private Law'),
(30868, 25719, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń школа частного права'),
(30869, 25720, 'en', 'name', 'Ulyanovsk State Technical University'),
(30870, 25720, 'ru', 'name', 'Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30871, 25721, 'en', 'name', 'Russian State University for the Humanities'),
(30872, 25721, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30873, 25722, 'en', 'name', 'Ural State Forestry Engineering University'),
(30874, 25722, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30875, 25723, 'en', 'name', 'National Transport University'),
(30876, 25723, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ транспортний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30877, 25724, 'en', 'name', 'Ulyanovsk Higher Civil Aviation School'),
(30878, 25724, 'ru', 'name', 'Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ авиационное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ гражГанской авиации'),
(30879, 25725, 'en', 'name', 'National Academy for Public Administration under the President of Ukraine'),
(30880, 25725, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Гержавного ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(30881, 25726, 'en', 'name', 'Ural State University of Railway Transport'),
(30882, 25726, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(30883, 25727, 'en', 'name', 'Primorskaya State Academy of Agriculture'),
(30884, 25727, 'ru', 'name', 'ŠŸŃ€ŠøŠ¼Š¾Ń€ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š”ŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30885, 25728, 'en', 'name', 'Ural Institute for the Humanities'),
(30886, 25728, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30887, 25729, 'en', 'name', 'Ural Institute of Business'),
(30888, 25729, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(30889, 25730, 'en', 'name', 'Ural Institute of Economics, Management and Law'),
(30890, 25730, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(30891, 25731, 'en', 'name', 'Ural Institute of the Stock Market'),
(30892, 25731, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ФонГового Рынка'),
(30893, 25732, 'en', 'name', 'Ural Institute of Commerce and Law'),
(30894, 25732, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коммерции Šø права'),
(30895, 25733, 'en', 'name', 'Ural Law Institute Russian Ministry of Internal Affairs'),
(30896, 25733, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30897, 25734, 'en', 'name', 'Velikie Luki State Academy of Physical Culture and Sports'),
(30898, 25734, 'ru', 'name', 'Š’ŠµŠ»ŠøŠŗŠ¾Š»ŃƒŠŗŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(30899, 25735, 'en', 'name', 'Moscow Regional Socio-Economic Institute'),
(30900, 25735, 'ru', 'name', 'Московский Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30901, 25736, 'en', 'name', 'Kalmyk State University'),
(30902, 25736, 'ru', 'name', 'ŠšŠ°Š»Š¼Ń‹Ń†ŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30903, 25737, 'no_lang_code', 'name', 'Russian Orthodox Institute Sacred Ioann Bogolslov'),
(30904, 25737, 'ru', 'name', 'Российский православный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ²ŃŃ‚Š¾Š³Š¾ Иоанна Богослова'),
(30905, 25738, 'en', 'name', 'Essentuki Institute of Management Business and Law'),
(30906, 25738, 'ru', 'name', 'Š•ŃŃŠµŠ½Ń‚ŃƒŠŗŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ, бизнеса Šø права'),
(30907, 25739, 'en', 'name', 'Glazov State Pedagogical Institute Named after VG Korolenko'),
(30908, 25739, 'ru', 'name', 'Š“Š›ŠŠ—ŠžŠ’Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŸŠ•Š”ŠŠ“ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š˜ŠœŠ•ŠŠ˜ Š’.Š“. ŠšŠžŠ ŠžŠ›Š•ŠŠšŠž'),
(30909, 25740, 'en', 'name', 'Chechen State Pedagogical Institute'),
(30910, 25740, 'ru', 'name', 'Чеченский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30911, 25741, 'en', 'name', 'Poltava University of Economics and Trade'),
(30912, 25741, 'ru', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø торговли'),
(30913, 25741, 'uk', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ економіки і торгівлі'),
(30914, 25742, 'en', 'name', 'Moscow State Institute of Culture'),
(30915, 25742, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(30916, 25743, 'en', 'name', 'Crimean State Engineering Pedagogical University'),
(30917, 25743, 'uk', 'name', 'ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠøŠ¹ інженерно-пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30918, 25743, 'ru', 'name', 'ŠšŃ€Ń‹Š¼ŃŠŗŠøŠ¹ инженерно-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30919, 25744, 'en', 'name', 'Irkutsk State Medical University'),
(30920, 25744, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30921, 25745, 'en', 'name', 'North Enterprise Institute'),
(30922, 25745, 'ru', 'name', 'Деверный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(30923, 25746, 'en', 'name', 'Ural State Pedagogical University'),
(30924, 25746, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30925, 25747, 'en', 'name', 'Institute of Commerce and Law'),
(30926, 25747, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коммерции Šø праваWebsiteDirections'),
(30927, 25748, 'en', 'name', 'Kutafin Moscow State Law University'),
(30928, 25748, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Šž. Š•. ŠšŃƒŃ‚Š°Ń„ŠøŠ½Š°'),
(30929, 25749, 'en', 'name', 'Bibliographical Society of America'),
(30930, 25750, 'no_lang_code', 'name', 'Ashiwi Awan Museum and Heritage Center'),
(30931, 25751, 'en', 'name', 'Billerica Public Library'),
(30932, 25752, 'en', 'name', 'Abbe Museum'),
(30933, 25753, 'en', 'name', 'Billings Farm & Museum'),
(30934, 25754, 'en', 'name', 'Birmingham Civil Rights Institute'),
(30935, 25755, 'en', 'name', 'Birmingham Museum of Art'),
(30936, 25756, 'en', 'name', 'Birmingham Public Library'),
(30937, 25757, 'en', 'name', 'Heritage Center of the Union League of Philadelphia'),
(30938, 25758, 'en', 'name', 'Anderson Public Library'),
(30939, 25759, 'en', 'name', 'Abraham Lincoln Presidential Library Foundation'),
(30940, 25760, 'en', 'name', 'Andover Historical Society'),
(30941, 25761, 'en', 'name', 'Andrew County Museum'),
(30942, 25762, 'en', 'name', 'Ackley Heritage Center'),
(30943, 25763, 'en', 'name', 'Adair County Historical Society'),
(30944, 25764, 'en', 'name', 'Adirondack Museum'),
(30945, 25765, 'en', 'name', 'Association of African American Museums'),
(30946, 25766, 'en', 'name', 'Bisbee Mining & Historical Museums'),
(30947, 25767, 'en', 'name', 'Black Mountain College Museum and Arts Center'),
(30948, 25768, 'en', 'name', 'The Animas Museum'),
(30949, 25769, 'en', 'name', 'Bloomington Public Library'),
(30950, 25770, 'en', 'name', 'Blount County Government'),
(30951, 25771, 'en', 'name', 'Bullock Museum'),
(30952, 25772, 'en', 'name', 'Boot Hill Museum'),
(30953, 25773, 'en', 'name', 'Boricua College'),
(30954, 25774, 'en', 'name', 'Anthology Film Archives'),
(30955, 25775, 'en', 'name', 'Boston Athenaeum'),
(30956, 25776, 'en', 'name', 'Boston Latin Academy'),
(30957, 25777, 'en', 'name', 'Boston Public Library'),
(30958, 25778, 'en', 'name', 'Bostonian Society'),
(30959, 25779, 'en', 'name', 'Museum of Boulder'),
(30960, 25780, 'en', 'name', 'Alabama Department of Archives and History'),
(30961, 25781, 'en', 'name', 'Alabama Public Library Service'),
(30962, 25782, 'en', 'name', 'Warren County Public Library'),
(30963, 25783, 'en', 'name', 'Alaska State Library'),
(30964, 25784, 'en', 'name', 'Brazos Valley Museum of Natural History'),
(30965, 25785, 'en', 'name', 'Appalachian Mountain Club'),
(30966, 25786, 'en', 'name', 'Apprend Foundation'),
(30967, 25787, 'en', 'name', 'Arab Community Center for Economic and Social Services'),
(30968, 25788, 'en', 'name', 'Brigham City Library'),
(30969, 25789, 'en', 'name', 'Albany Institute of History & Art'),
(30970, 25790, 'en', 'name', 'Aldrich Public Library'),
(30971, 25791, 'en', 'name', 'Brigham City Museum-Gallery'),
(30972, 25792, 'en', 'name', 'Bronx County Historical Society'),
(30973, 25793, 'en', 'name', 'Bronx Museum of the Arts'),
(30974, 25794, 'en', 'name', 'Brookings Public Library'),
(30975, 25795, 'en', 'name', 'Alexandria Museum of Art'),
(30976, 25796, 'en', 'name', 'Brookline Public Schools'),
(30977, 25797, 'en', 'name', 'Brooklyn Museum'),
(30978, 25798, 'en', 'name', 'Alice Lloyd College'),
(30979, 25799, 'en', 'name', 'Allen Public Library'),
(30980, 25800, 'en', 'name', 'Allentown Art Museum'),
(30981, 25801, 'en', 'name', 'Allentown Public Library'),
(30982, 25802, 'en', 'name', 'Alpena Community College'),
(30983, 25803, 'en', 'name', 'Archaeological Conservancy'),
(30984, 25804, 'en', 'name', 'Archaeological Institute of America'),
(30985, 25805, 'en', 'name', 'Archaeology Society of Staten Island'),
(30986, 25806, 'en', 'name', 'Broward County Library'),
(30987, 25807, 'en', 'name', 'Broward Public Library Foundation'),
(30988, 25808, 'en', 'name', 'Brunswick-Glynn County Library'),
(30989, 25809, 'en', 'name', 'Buckingham Browne & Nichols'),
(30990, 25810, 'en', 'name', 'Buffalo History Museum'),
(30991, 25811, 'no_lang_code', 'name', 'Archimedia Workshop (United States)'),
(30992, 25812, 'en', 'name', 'YIVO Institute for Jewish Research'),
(30993, 25813, 'en', 'name', 'American Academy of Religion'),
(30994, 25814, 'en', 'name', 'American Antiquarian Society'),
(30995, 25815, 'en', 'name', 'Arena Stage'),
(30996, 25816, 'en', 'name', 'American Architectural Foundation'),
(30997, 25817, 'en', 'name', 'Arhoolie Foundation'),
(30998, 25818, 'en', 'name', 'Arizona Historical Society'),
(30999, 25819, 'en', 'name', 'Arizona State Museum'),
(31000, 25820, 'en', 'name', 'American Association for State and Local History'),
(31001, 25821, 'en', 'name', 'Kansas Oil Museum'),
(31002, 25822, 'en', 'name', 'Butte-Silver Bow Public Archives'),
(31003, 25823, 'en', 'name', 'Cabell County Public Library'),
(31004, 25824, 'en', 'name', 'American Bar Association Fund for Justice and Education'),
(31005, 25825, 'en', 'name', 'University of Arkansas Community College at Batesville'),
(31006, 25826, 'en', 'name', 'American Conservatory Theater'),
(31007, 25827, 'en', 'name', 'American Council on the Teaching of Foreign Languages'),
(31008, 25828, 'en', 'name', 'American Councils for International Education'),
(31009, 25829, 'en', 'name', 'Calcasieu Parish Public Library'),
(31010, 25830, 'en', 'name', 'California African American Museum'),
(31011, 25831, 'en', 'name', 'California College of the Arts'),
(31012, 25832, 'en', 'name', 'California Historical Society'),
(31013, 25833, 'en', 'name', 'American Federation of Arts'),
(31014, 25834, 'en', 'name', 'California Institute of the Arts'),
(31015, 25834, 'es', 'name', 'Instituto de Artes de California'),
(31016, 25835, 'en', 'name', 'American Film Institute'),
(31017, 25836, 'en', 'name', 'American Folklore Society'),
(31018, 25837, 'en', 'name', 'California State Railroad Museum'),
(31019, 25838, 'en', 'name', 'Arkansas Museum of Discovery'),
(31020, 25839, 'en', 'name', 'Calvert Marine Museum'),
(31021, 25840, 'en', 'name', 'Institute for American Indian Studies'),
(31022, 25841, 'en', 'name', 'Calvin Coolidge Presidential Foundation'),
(31023, 25842, 'en', 'name', 'American Institute for Conservation of Historic & Artistic Works'),
(31024, 25843, 'en', 'name', 'Cambridge Arts Council'),
(31025, 25844, 'en', 'name', 'American Institute for Maghrib Studies'),
(31026, 25845, 'en', 'name', 'Arts and Science Center for Southeast Arkansas'),
(31027, 25846, 'en', 'name', 'American Institute for Yemeni Studies'),
(31028, 25847, 'en', 'name', 'Cambridge Public School'),
(31029, 25848, 'en', 'name', 'American Jewish Archives'),
(31030, 25849, 'en', 'name', 'American Jewish Committee'),
(31031, 25850, 'en', 'name', 'Camden County Historical Society'),
(31032, 25851, 'en', 'name', 'Asian American Asian Research Institute'),
(31033, 25852, 'en', 'name', 'Asian Art Museum'),
(31034, 25853, 'en', 'name', 'Wake County Government'),
(31035, 25854, 'en', 'name', 'Campbell Center for Historic Preservation Studies'),
(31036, 25855, 'en', 'name', 'Association for Computers and the Humanities'),
(31037, 25856, 'en', 'name', 'American Jewish Historical Society'),
(31038, 25857, 'en', 'name', 'Association for Core Texts and Courses'),
(31039, 25858, 'en', 'name', 'American Numismatic Society'),
(31040, 25859, 'en', 'name', 'Association for Documentary Editing'),
(31041, 25860, 'en', 'name', 'Canal Corridor Association'),
(31042, 25861, 'en', 'name', 'Cape Ann Museum'),
(31043, 25862, 'en', 'name', 'Cape Cod Museum of Natural History'),
(31044, 25863, 'en', 'name', 'American Repertory Theater'),
(31045, 25864, 'en', 'name', 'American Research Institute in Turkey'),
(31046, 25865, 'en', 'name', 'Association for Public Art'),
(31047, 25866, 'en', 'name', 'Association for Recorded Sound Collections'),
(31048, 25867, 'en', 'name', 'American Scandinavian Foundation'),
(31049, 25868, 'en', 'name', 'Carbon County Museum'),
(31050, 25869, 'en', 'name', 'Preservation Virginia'),
(31051, 25870, 'en', 'name', 'Carlsbad City Library'),
(31052, 25871, 'en', 'name', 'Carlyle House Historic Park'),
(31053, 25872, 'en', 'name', 'Carmel Clay Public Library'),
(31054, 25873, 'en', 'name', 'Carnegie Council for Ethics in International Affairs'),
(31055, 25874, 'en', 'name', 'Association for the Study of African American Life and History'),
(31056, 25875, 'en', 'name', 'American Shakespeare Center'),
(31057, 25876, 'en', 'name', 'American Swedish Historical Museum'),
(31058, 25877, 'en', 'name', 'American Textile History Museum'),
(31059, 25878, 'en', 'name', 'Carnegie Hall'),
(31060, 25879, 'en', 'name', 'Carnegie Library of Pittsburgh'),
(31061, 25880, 'en', 'name', 'South Carolina Association of Public Library Administration'),
(31062, 25881, 'en', 'name', 'American Writers Museum'),
(31063, 25882, 'en', 'name', 'Caroline County Public Library'),
(31064, 25883, 'en', 'name', 'Americas Society'),
(31065, 25884, 'no_lang_code', 'name', 'Museum of Casa Grande'),
(31066, 25885, 'en', 'name', 'Aston Magna Foundation'),
(31067, 25886, 'en', 'name', 'Athenaeum of Philadelphia'),
(31068, 25887, 'en', 'name', 'Catticus Corporation'),
(31069, 25888, 'en', 'name', 'Cazenovia College'),
(31070, 25889, 'en', 'name', 'Amherst Pelham Regional School District'),
(31071, 25890, 'en', 'name', 'Amistad Research Center'),
(31072, 25891, 'en', 'name', 'Amon Carter Museum of American Art'),
(31073, 25892, 'en', 'name', 'Atlanta History Center'),
(31074, 25893, 'en', 'name', 'Atlanta-Fulton County Library System'),
(31075, 25894, 'en', 'name', 'Atlantic Council'),
(31076, 25895, 'en', 'name', 'Anchorage Museum'),
(31077, 25896, 'en', 'name', 'Ancient Biblical Manuscript Center'),
(31078, 25897, 'en', 'name', 'Cedar Rapids Museum of Art'),
(31079, 25898, 'en', 'name', 'Cedar Rapids Public Library'),
(31080, 25899, 'en', 'name', 'Philadelphia History Museum'),
(31081, 25900, 'en', 'name', 'Colonial Williamsburg Foundation'),
(31082, 25901, 'en', 'name', 'Auburn City Schools'),
(31083, 25902, 'en', 'name', 'History Colorado Center'),
(31084, 25903, 'en', 'name', 'Center for Anti-Slavery Studies'),
(31085, 25904, 'en', 'name', 'Center for Asian American Media'),
(31086, 25905, 'en', 'name', 'Center for Civic Education'),
(31087, 25906, 'en', 'name', 'Columbia County Historical Society'),
(31088, 25907, 'en', 'name', 'Historical Society of Washington'),
(31089, 25908, 'en', 'name', 'Athens Regional Library System'),
(31090, 25909, 'en', 'name', 'Columbia River Maritime Museum'),
(31091, 25910, 'en', 'name', 'Center for Independent Documentary'),
(31092, 25911, 'en', 'name', 'Columbia State Community College'),
(31093, 25912, 'en', 'name', 'Center for Puppetry Arts'),
(31094, 25913, 'en', 'name', 'Center for Southern Folklore'),
(31095, 25914, 'en', 'name', 'Center for the Study of Community Colleges'),
(31096, 25915, 'en', 'name', 'B&O Railroad Museum'),
(31097, 25916, 'en', 'name', 'Columbus Museum of Art'),
(31098, 25917, 'en', 'name', 'Center for the Study of the Presidency and Congress'),
(31099, 25918, 'no_lang_code', 'name', 'Center for Visual Communication (United States)'),
(31100, 25919, 'en', 'name', 'Center for Wooden Boats'),
(31101, 25920, 'en', 'name', 'Comanche Nation College'),
(31102, 25921, 'en', 'name', 'Comanche National Museum and Cultural Center'),
(31103, 25922, 'en', 'name', 'Balboa Art Conservation Center'),
(31104, 25923, 'en', 'name', 'Central Agency for Jewish Education'),
(31105, 25924, 'en', 'name', 'Central Arkansas Library System'),
(31106, 25925, 'en', 'name', 'Central Community College'),
(31107, 25926, 'en', 'name', 'Balch Institute for Ethnic Studies'),
(31108, 25927, 'en', 'name', 'Central Rappahannock Regional Library'),
(31109, 25928, 'en', 'name', 'Community College Humanities Association'),
(31110, 25929, 'en', 'name', 'Baltimore City Life Museums'),
(31111, 25930, 'en', 'name', 'Chabot College'),
(31112, 25931, 'en', 'name', 'Chaffey College'),
(31113, 25932, 'en', 'name', 'Chappaqua Central School District'),
(31114, 25933, 'en', 'name', 'Baltimore Museum of Art'),
(31115, 25934, 'en', 'name', 'Baltimore Museum of Industry'),
(31116, 25935, 'en', 'name', 'Charles River Museum of Industry & Innovation'),
(31117, 25936, 'en', 'name', 'Community Renewal Society'),
(31118, 25937, 'en', 'name', 'Charleston County Public Library'),
(31119, 25938, 'en', 'name', 'Charleston Museum'),
(31120, 25939, 'en', 'name', 'Barrington Area Historical Society'),
(31121, 25940, 'en', 'name', 'Charlotte-Mecklenburg Historic Landmarks Commission'),
(31122, 25941, 'en', 'name', 'Barrington Public Library'),
(31123, 25942, 'en', 'name', 'Bass Museum'),
(31124, 25943, 'en', 'name', 'Conception Seminary College'),
(31125, 25944, 'en', 'name', 'Cherokee Heritage Center'),
(31126, 25945, 'en', 'name', 'Chesapeake Bay Maritime Museum'),
(31127, 25946, 'en', 'name', 'Chester County Historical Society'),
(31128, 25947, 'en', 'name', 'Chesterfield County Public Library'),
(31129, 25948, 'en', 'name', 'Concord Museum'),
(31130, 25949, 'en', 'name', 'Chicago Architecture Foundation'),
(31131, 25950, 'en', 'name', 'Concord Free Public Library'),
(31132, 25951, 'en', 'name', 'Peninsula Library System'),
(31133, 25952, 'en', 'name', 'Bay Area Radio Drama'),
(31134, 25953, 'en', 'name', 'Concord Public Schools and Concord-Carlisle Regional School District'),
(31135, 25954, 'en', 'name', 'WTTW'),
(31136, 25955, 'en', 'name', 'Chicago Film Archives'),
(31137, 25956, 'en', 'name', 'Congress for the New Urbanism'),
(31138, 25957, 'en', 'name', 'Chicago Filmmakers'),
(31139, 25958, 'en', 'name', 'Chicago Humanities Festival'),
(31140, 25959, 'en', 'name', 'Connecticut Historical Society'),
(31141, 25960, 'en', 'name', 'Beatrice Public Library'),
(31142, 25961, 'en', 'name', 'Chicago Metro History Education Center'),
(31143, 25962, 'es', 'name', 'Biblioteca PĆŗblica de Chicago'),
(31144, 25962, 'en', 'name', 'Chicago Public Library'),
(31145, 25963, 'en', 'name', 'Children''s Museum of Manhattan'),
(31146, 25964, 'en', 'name', 'Bell County Museum'),
(31147, 25965, 'en', 'name', 'Belleville Public Library'),
(31148, 25966, 'en', 'name', 'Connecticut State Library'),
(31149, 25967, 'en', 'name', 'Benicia Public Library'),
(31150, 25968, 'en', 'name', 'Bergenfield Public Library'),
(31151, 25969, 'en', 'name', 'Chinese Historical Society of America'),
(31152, 25970, 'en', 'name', 'Conservation Center for Art and Historic Artifacts'),
(31153, 25971, 'en', 'name', 'Berkeley Public Library'),
(31154, 25972, 'en', 'name', 'Christian Business Faculty Association'),
(31155, 25973, 'en', 'name', 'Chrysler Museum of Art'),
(31156, 25974, 'en', 'name', 'Berkshire Community College'),
(31157, 25975, 'en', 'name', 'Consortium of Universities of the Washington Metropolitan Area'),
(31158, 25976, 'en', 'name', 'Berkshire Museum'),
(31159, 25977, 'en', 'name', 'Constitutional Rights Foundation Chicago'),
(31160, 25978, 'en', 'name', 'ConVida - Popular Arts of the Americas'),
(31161, 25979, 'en', 'name', 'Berkshire Theatre Group'),
(31162, 25980, 'en', 'name', 'Bessemer Historical Society'),
(31163, 25981, 'en', 'name', 'Churchill Centre'),
(31164, 25982, 'en', 'name', 'Ciesla Foundation'),
(31165, 25983, 'en', 'name', 'Morton Museum'),
(31166, 25984, 'en', 'name', 'Cincinnati Art Museum'),
(31167, 25985, 'en', 'name', 'Cincinnati Fire Museum'),
(31168, 25986, 'en', 'name', 'Bethel University'),
(31169, 25987, 'en', 'name', 'Bethlehem Area School District'),
(31170, 25988, 'en', 'name', 'Copper Queen Library'),
(31171, 25989, 'en', 'name', 'Bettendorf Public Library and Information Center'),
(31172, 25990, 'en', 'name', 'Tippecanoe County Historical Association'),
(31173, 25991, 'en', 'name', 'Poplar Forest'),
(31174, 25992, 'en', 'name', 'Fine Arts Museums of San Francisco'),
(31175, 25992, 'es', 'name', 'Museo de Bellas Artes de San Francisco'),
(31176, 25992, 'fr', 'name', 'MusƩe des beaux-arts de san francisco'),
(31177, 25993, 'en', 'name', 'Corpus Christi Public Libraries'),
(31178, 25994, 'en', 'name', 'Bayshore Center at Bivalve'),
(31179, 25995, 'en', 'name', 'City Lore the New York Center for Urban Culture'),
(31180, 25996, 'en', 'name', 'Council of the Southern Mountains'),
(31181, 25997, 'en', 'name', 'City of Greeley Museums'),
(31182, 25998, 'en', 'name', 'Philadelphia Department of Records'),
(31183, 25999, 'en', 'name', 'Claremont Institute'),
(31184, 26000, 'en', 'name', 'CuriOdyssey'),
(31185, 26001, 'en', 'name', 'Craft Contemporary'),
(31186, 26002, 'en', 'name', 'San JosƩ Public Library'),
(31187, 26003, 'en', 'name', 'Dance Perspectives Foundation'),
(31188, 26004, 'en', 'name', 'Dane County Library Service'),
(31189, 26005, 'en', 'name', 'Clark County Museum'),
(31190, 26006, 'en', 'name', 'Clarksburg-Harrison Public Library'),
(31191, 26007, 'en', 'name', 'Cleveland Community College'),
(31192, 26008, 'en', 'name', 'The Dane G. Hansen Museum'),
(31193, 26009, 'en', 'name', 'Danforth at Framingham State University'),
(31194, 26010, 'en', 'name', 'Museum of Danish America'),
(31195, 26011, 'en', 'name', 'Cleveland Police Museum'),
(31196, 26012, 'en', 'name', 'Dauphin County Library System'),
(31197, 26013, 'en', 'name', 'Clinton-Macomb Public Library'),
(31198, 26014, 'no_lang_code', 'name', 'CultureWorks (United States)'),
(31199, 26015, 'en', 'name', 'Dayton Art Institute'),
(31200, 26016, 'en', 'name', 'Coastal Georgia Historical Society'),
(31201, 26017, 'en', 'name', 'Collaborative for Educational Services'),
(31202, 26018, 'en', 'name', 'Currier Museum of Art'),
(31203, 26019, 'en', 'name', 'Decorah Public Library'),
(31204, 26020, 'en', 'name', 'DeCordova Sculpture Park and Museum'),
(31205, 26021, 'en', 'name', 'Cyprus American Archaeological Research Institute'),
(31206, 26022, 'en', 'name', 'Deep Springs College'),
(31207, 26023, 'en', 'name', 'Defiant Requiem Foundation'),
(31208, 26024, 'en', 'name', 'DeKalb County Public Library'),
(31209, 26025, 'en', 'name', 'DeKalb Library Foundation'),
(31210, 26026, 'en', 'name', 'Delaware Agricultural Museum'),
(31211, 26027, 'en', 'name', 'Dallas Heritage Village'),
(31212, 26028, 'en', 'name', 'Delaware Art Museum'),
(31213, 26029, 'en', 'name', 'Fayetteville Public Library'),
(31214, 26030, 'en', 'name', 'Dallas Historical Society'),
(31215, 26031, 'en', 'name', 'Delaware County Historical Association'),
(31216, 26032, 'en', 'name', 'Dallas Institute of Humanities and Culture'),
(31217, 26033, 'en', 'name', 'Dallas Museum of Art'),
(31218, 26034, 'en', 'name', 'Delaware Division of Historical and Cultural Affairs'),
(31219, 26035, 'en', 'name', 'Dallas Public Library'),
(31220, 26036, 'en', 'name', 'Dance Notation Bureau'),
(31221, 26037, 'en', 'name', 'Delaware Library Association'),
(31222, 26038, 'en', 'name', 'Delhi Historical Society'),
(31223, 26039, 'en', 'name', 'Grand View University'),
(31224, 26040, 'en', 'name', 'Federation of State Humanities Councils'),
(31225, 26041, 'en', 'name', 'Great Books Foundation'),
(31226, 26042, 'en', 'name', 'John L. Miller Great Neck North High School'),
(31227, 26043, 'no_lang_code', 'name', 'Feminist Press'),
(31228, 26044, 'en', 'name', 'Public Media Connect'),
(31229, 26045, 'en', 'name', 'Denver Art Museum'),
(31230, 26046, 'en', 'name', 'Greater New Orleans Educational Television Foundation'),
(31231, 26047, 'en', 'name', 'Ferguson Library'),
(31232, 26048, 'en', 'name', 'Greater Southwest Historical Museum'),
(31233, 26049, 'en', 'name', 'Denver Public Library'),
(31234, 26050, 'en', 'name', 'Denver Seminary'),
(31235, 26051, 'en', 'name', 'Greenville County Library System'),
(31236, 26052, 'en', 'name', 'Grinnell Newburg Community School District'),
(31237, 26053, 'en', 'name', 'Griot Museum of Black History & Culture'),
(31238, 26054, 'en', 'name', 'Fifth Maine Regiment Museum'),
(31239, 26055, 'en', 'name', 'Des Moines Art Center'),
(31240, 26056, 'en', 'name', 'WTVS Detroit Public Television'),
(31241, 26057, 'en', 'name', 'Detroit Historical Society'),
(31242, 26058, 'en', 'name', 'Guilderland Public Library'),
(31243, 26059, 'en', 'name', 'Detroit Institute of Arts'),
(31244, 26060, 'en', 'name', 'History Center in Tompkins County'),
(31245, 26061, 'en', 'name', 'Hagley Museum and Library'),
(31246, 26062, 'en', 'name', 'Hammond Castle Museum'),
(31247, 26063, 'en', 'name', 'Donnelly College'),
(31248, 26064, 'en', 'name', 'Fitchburg Art Museum'),
(31249, 26065, 'en', 'name', 'Duluth Public Library'),
(31250, 26066, 'en', 'name', 'ImagineIF Libraries'),
(31251, 26067, 'en', 'name', 'Flint Public Library'),
(31252, 26068, 'en', 'name', 'Duxbury Free Library'),
(31253, 26069, 'en', 'name', 'Hanford Mills Museum'),
(31254, 26070, 'en', 'name', 'Dyer Library / Saco Museum'),
(31255, 26071, 'en', 'name', 'Early Manuscripts Electronic Library'),
(31256, 26072, 'en', 'name', 'Harriet Beecher Stowe Center'),
(31257, 26073, 'en', 'name', 'Hartford Seminary'),
(31258, 26074, 'en', 'name', 'East Baton Rouge Parish Library'),
(31259, 26075, 'en', 'name', 'East Hampton Historical Society'),
(31260, 26076, 'en', 'name', 'East Meadow Public Library'),
(31261, 26077, 'en', 'name', 'Harvard University Press'),
(31262, 26078, 'en', 'name', 'East Tennessee Historical Society'),
(31263, 26079, 'en', 'name', 'Northwest Museum of Arts and Culture'),
(31264, 26080, 'en', 'name', 'Haverford Township Free Library'),
(31265, 26081, 'en', 'name', 'Henry Ford Museum'),
(31266, 26082, 'en', 'name', 'Flowerdew Hundred Foundation'),
(31267, 26083, 'en', 'name', 'El Paso Museum of History'),
(31268, 26084, 'en', 'name', 'El Paso Public Library'),
(31269, 26085, 'en', 'name', 'Electronic Literature Organization'),
(31270, 26086, 'en', 'name', 'Ella Sharp Museum'),
(31271, 26087, 'en', 'name', 'Forbes Library'),
(31272, 26088, 'en', 'name', 'Ford''s Theatre'),
(31273, 26089, 'en', 'name', 'English Speaking Union'),
(31274, 26090, 'en', 'name', 'Foreign Policy Association'),
(31275, 26091, 'en', 'name', 'Enoch Pratt Free Library'),
(31276, 26092, 'en', 'name', 'U.S. Association of Former Members of Congress'),
(31277, 26093, 'en', 'name', 'Episcopal Academy'),
(31278, 26094, 'en', 'name', 'Fort Bend Museum'),
(31279, 26095, 'en', 'name', 'Erie Canal Museum'),
(31280, 26096, 'en', 'name', 'Episcopal Diocese of Pennsylvania'),
(31281, 26097, 'en', 'name', 'Essex County College'),
(31282, 26098, 'en', 'name', 'Peabody Essex Museum'),
(31283, 26099, 'en', 'name', 'Hawaiian Historical Society'),
(31284, 26100, 'en', 'name', 'Heard Museum'),
(31285, 26101, 'en', 'name', 'Ethics and Public Policy Center'),
(31286, 26102, 'en', 'name', 'Hebrew College'),
(31287, 26103, 'en', 'name', 'Hebrew Immigrant Aid Society'),
(31288, 26104, 'en', 'name', 'Fort Collins Museum of Discovery'),
(31289, 26105, 'en', 'name', 'ETV Endowment of South Carolina'),
(31290, 26106, 'en', 'name', 'Eugene O''Neill Theater Center'),
(31291, 26107, 'en', 'name', 'Everson Museum of Art'),
(31292, 26108, 'en', 'name', 'Fort Mason Center'),
(31293, 26109, 'en', 'name', 'Excelsior Springs Museum & Archives'),
(31294, 26110, 'en', 'name', 'Fort Ross Conservancy'),
(31295, 26111, 'en', 'name', 'Facing History and Ourselves'),
(31296, 26112, 'en', 'name', 'Fairbanks Museum and Planetarium'),
(31297, 26113, 'en', 'name', 'Fairbanks North Star Borough Library'),
(31298, 26114, 'en', 'name', 'Buffalo and Erie County Public Library'),
(31299, 26115, 'en', 'name', 'Fairfax County Park Authority'),
(31300, 26116, 'en', 'name', 'Fairfax County Public Library'),
(31301, 26117, 'en', 'name', 'Henderson County Public Library'),
(31302, 26118, 'en', 'name', 'Fairfax County Public Schools'),
(31303, 26119, 'en', 'name', 'Fairfield County District Library'),
(31304, 26120, 'en', 'name', 'Fauquier County Public Library'),
(31305, 26121, 'en', 'name', 'Henry Morrison Flagler Museum'),
(31306, 26122, 'en', 'name', 'Heritage Museums and Gardens'),
(31307, 26123, 'en', 'name', 'Heritage Preservation'),
(31308, 26124, 'en', 'name', 'Four County Library System'),
(31309, 26125, 'en', 'name', 'Joslyn Art Museum'),
(31310, 26126, 'en', 'name', 'Journey Through Hallowed Ground Partnership'),
(31311, 26127, 'en', 'name', 'Hermann Grima House'),
(31312, 26128, 'en', 'name', 'Magnes Collection of Jewish Art and Life'),
(31313, 26129, 'en', 'name', 'Frank Lloyd Wright Trust'),
(31314, 26130, 'en', 'name', 'Hermitage Museum'),
(31315, 26131, 'en', 'name', 'Roosevelt Institute'),
(31316, 26132, 'en', 'name', 'Hawaii State Judiciary'),
(31317, 26133, 'en', 'name', 'Franklin County Historical and Museum Society'),
(31318, 26134, 'es', 'name', 'Escuela Juilliard'),
(31319, 26134, 'en', 'name', 'Juilliard School'),
(31320, 26135, 'en', 'name', 'Fraunces Tavern Museum'),
(31321, 26136, 'en', 'name', 'Juneau Public Libraries'),
(31322, 26137, 'en', 'name', 'Herndon Home Museum'),
(31323, 26138, 'en', 'name', 'Kandiyohi County Historical Society');
INSERT INTO `ror_settings` VALUES
(31324, 26139, 'en', 'name', 'Hewlett Woodmere Public Library'),
(31325, 26140, 'en', 'name', 'Kansas City Museum'),
(31326, 26141, 'en', 'name', 'Hibbing Public Library'),
(31327, 26142, 'en', 'name', 'John W. Higgins Armory'),
(31328, 26143, 'en', 'name', 'Kansas City, Kansas Public Library'),
(31329, 26144, 'en', 'name', 'Frederick Community College'),
(31330, 26145, 'en', 'name', 'High Desert Museum'),
(31331, 26146, 'en', 'name', 'High Museum of Art'),
(31332, 26147, 'en', 'name', 'Highland Park Public Library'),
(31333, 26148, 'en', 'name', 'Kartemquin Films'),
(31334, 26149, 'en', 'name', 'Hingham Public Library'),
(31335, 26150, 'no_lang_code', 'name', 'Katahdin Productions'),
(31336, 26151, 'en', 'name', 'Wake County Public Libraries'),
(31337, 26152, 'en', 'name', 'Katonah Museum of Art'),
(31338, 26153, 'en', 'name', 'Kaw Nation'),
(31339, 26154, 'en', 'name', 'Hispanic Society of America'),
(31340, 26155, 'en', 'name', 'Historians of Netherlandish Art'),
(31341, 26156, 'en', 'name', 'KCRW Foundation'),
(31342, 26157, 'es', 'name', 'Biblioteca PĆŗblica de Filadelfia'),
(31343, 26157, 'en', 'name', 'Free Library of Philadelphia'),
(31344, 26158, 'en', 'name', 'Keene Public Library'),
(31345, 26159, 'en', 'name', 'Freedom Trail Foundation'),
(31346, 26160, 'en', 'name', 'Historic Annapolis Foundation'),
(31347, 26161, 'en', 'name', 'Freeport Art Museum'),
(31348, 26162, 'no_lang_code', 'name', 'Keeneland Association'),
(31349, 26163, 'en', 'name', 'Kellogg Community College'),
(31350, 26164, 'en', 'name', 'Historic Charleston Foundation'),
(31351, 26165, 'en', 'name', 'Kent Memorial Library'),
(31352, 26166, 'en', 'name', 'Freeport Historical Society'),
(31353, 26167, 'en', 'name', 'Kent State University, East Liverpool'),
(31354, 26168, 'en', 'name', 'Kenton County Public Library'),
(31355, 26169, 'en', 'name', 'Historic Cherry Hill'),
(31356, 26170, 'en', 'name', 'Frelinghuysen Morris House And Studio'),
(31357, 26171, 'en', 'name', 'Kentucky Department for Libraries and Archives'),
(31358, 26172, 'en', 'name', 'Historic Hawaii Foundation'),
(31359, 26173, 'en', 'name', 'Kentucky Historical Society'),
(31360, 26174, 'en', 'name', 'French-American Foundation'),
(31361, 26175, 'en', 'name', 'Historic Lexington Foundation'),
(31362, 26176, 'en', 'name', 'Kidscommons Columbus Community Children''s Museum'),
(31363, 26177, 'en', 'name', 'Historic New England'),
(31364, 26178, 'en', 'name', 'French Cultural Center'),
(31365, 26179, 'en', 'name', 'Kirkwood Public Library'),
(31366, 26180, 'en', 'name', 'Kitchen Sisters Productions'),
(31367, 26181, 'en', 'name', 'Historic Northampton'),
(31368, 26182, 'en', 'name', 'Fresno County Public Library'),
(31369, 26183, 'en', 'name', 'Friends of Fellows Riverside Gardens'),
(31370, 26184, 'en', 'name', 'Knox County Public Library'),
(31371, 26185, 'en', 'name', 'Koahnic Broadcast Corporation'),
(31372, 26186, 'en', 'name', 'Mount Auburn Cemetery'),
(31373, 26187, 'en', 'name', 'Association for Slavic East European and Eurasian Studies'),
(31374, 26188, 'en', 'name', 'Friends of Peralta Hacienda Historical Park'),
(31375, 26189, 'en', 'name', 'Friends of the Saint Paul Public Library'),
(31376, 26190, 'en', 'name', 'Fruitlands Museum'),
(31377, 26191, 'en', 'name', 'Fuller Craft Museum'),
(31378, 26192, 'no_lang_code', 'name', 'HistoryMiami'),
(31379, 26193, 'en', 'name', 'American Council for Southern Asian Art'),
(31380, 26194, 'en', 'name', 'Delaware Historical Society'),
(31381, 26195, 'en', 'name', 'Galesburg Public Library'),
(31382, 26196, 'en', 'name', 'Historical Society of Frankford'),
(31383, 26197, 'en', 'name', 'Historical Society of Pennsylvania'),
(31384, 26198, 'en', 'name', 'Garfield County Libraries'),
(31385, 26199, 'en', 'name', 'Historical Society of Rockland County'),
(31386, 26200, 'en', 'name', 'Gaston County Public Library'),
(31387, 26201, 'en', 'name', 'FamilySearch'),
(31388, 26202, 'en', 'name', 'Museum of History & Industry'),
(31389, 26203, 'en', 'name', 'General John A Logan Museum'),
(31390, 26204, 'en', 'name', 'General Lew Wallace Study and Museum'),
(31391, 26205, 'en', 'name', 'Geneva Historical Society'),
(31392, 26206, 'en', 'name', 'George C Marshall Foundation'),
(31393, 26207, 'en', 'name', 'George Eastman House'),
(31394, 26208, 'en', 'name', 'Georgetown County Library'),
(31395, 26209, 'en', 'name', 'Kona Historical Society'),
(31396, 26210, 'en', 'name', 'Kurt Weill Foundation for Music'),
(31397, 26211, 'en', 'name', 'L. C. Bates Museum'),
(31398, 26212, 'en', 'name', 'Talbot Historical Society'),
(31399, 26213, 'en', 'name', 'Lafayette Science Museum'),
(31400, 26214, 'en', 'name', 'Lafayette Public Library'),
(31401, 26215, 'en', 'name', 'Lake County Public Library'),
(31402, 26216, 'en', 'name', 'Lake Region State College'),
(31403, 26217, 'en', 'name', 'Historical Society of Western Pennsylvania'),
(31404, 26218, 'en', 'name', 'Lakeland College'),
(31405, 26219, 'en', 'name', 'HistoryMakers'),
(31406, 26220, 'en', 'name', 'Language Conservancy'),
(31407, 26221, 'en', 'name', 'Holyoke Public Library'),
(31408, 26222, 'en', 'name', 'Language of Dance Centre'),
(31409, 26223, 'en', 'name', 'Pratt Museum'),
(31410, 26224, 'en', 'name', 'Hoover Institution'),
(31411, 26225, 'en', 'name', 'Georgia Historical Society'),
(31412, 26226, 'en', 'name', 'Laramie County Library'),
(31413, 26227, 'en', 'name', 'Laramie Plains Museum'),
(31414, 26228, 'en', 'name', 'Hot Springs County Museum and Cultural Center'),
(31415, 26229, 'en', 'name', 'Georgia OKeeffe Museum'),
(31416, 26230, 'en', 'name', 'Germanna Virginia Community College'),
(31417, 26231, 'en', 'name', 'Las Vegas Convention and Visitors Authority'),
(31418, 26232, 'en', 'name', 'Houghton Lake Public Library'),
(31419, 26233, 'en', 'name', 'Germantown Historical Society'),
(31420, 26234, 'en', 'name', 'Latah County Historical Society'),
(31421, 26235, 'en', 'name', 'Getty Research Institute'),
(31422, 26236, 'en', 'name', 'Gibbes Museum of Art'),
(31423, 26237, 'en', 'name', 'Latin American Youth Center'),
(31424, 26238, 'en', 'name', 'House of the Seven Gables'),
(31425, 26239, 'en', 'name', 'Lauren Rogers Museum of Art'),
(31426, 26240, 'en', 'name', 'League of Women Voters'),
(31427, 26241, 'en', 'name', 'Gilder Lehrman Institute of American History'),
(31428, 26242, 'en', 'name', 'Learning Through an Expanded Arts Program'),
(31429, 26243, 'no_lang_code', 'name', 'Global Village Media'),
(31430, 26244, 'en', 'name', 'Leavenworth Public Library'),
(31431, 26245, 'es', 'name', 'Biblioteca PĆŗblica de Houston'),
(31432, 26245, 'en', 'name', 'Houston Public Library'),
(31433, 26246, 'en', 'name', 'Howard County Library System'),
(31434, 26247, 'en', 'name', 'Leeds Jane Culbreth Library'),
(31435, 26248, 'en', 'name', 'Lees McRae College'),
(31436, 26249, 'en', 'name', 'Hull Lifesaving Museum'),
(31437, 26250, 'en', 'name', 'Lehigh County Historical Society'),
(31438, 26251, 'en', 'name', 'Gold Nugget Museum'),
(31439, 26252, 'en', 'name', 'Lehman College Art Gallery'),
(31440, 26253, 'en', 'name', 'Grass Roots Art and Community Effort'),
(31441, 26254, 'en', 'name', 'Lenox Library Association'),
(31442, 26255, 'en', 'name', 'Leominster Public Library'),
(31443, 26256, 'en', 'name', 'Grail Movement'),
(31444, 26257, 'en', 'name', 'Metropolitan Indianapolis Public Broadcasting'),
(31445, 26258, 'en', 'name', 'Lepanto Foundation'),
(31446, 26259, 'en', 'name', 'Levine Museum of the New South'),
(31447, 26260, 'en', 'name', 'Mexic-Arte Museum'),
(31448, 26261, 'en', 'name', 'WQED'),
(31449, 26262, 'en', 'name', 'Lexington Historical Society'),
(31450, 26263, 'en', 'name', 'Lexington Public Library'),
(31451, 26264, 'en', 'name', 'De Anza College'),
(31452, 26265, 'en', 'name', 'Liberty Memorial'),
(31453, 26266, 'en', 'name', 'Library Company of Philadelphia'),
(31454, 26267, 'en', 'name', 'Library of America'),
(31455, 26268, 'en', 'name', 'Library of Hattiesburg, Petal and Forrest County'),
(31456, 26269, 'en', 'name', 'Library of Virginia'),
(31457, 26270, 'en', 'name', 'Foundation for Lincoln City Libraries'),
(31458, 26271, 'en', 'name', 'Linebaugh Public Library'),
(31459, 26272, 'en', 'name', 'Litchfield Historical Society'),
(31460, 26273, 'en', 'name', 'Little Compton Historical Society'),
(31461, 26274, 'en', 'name', 'Huntington Museum of Art'),
(31462, 26275, 'en', 'name', 'Living History Farms'),
(31463, 26276, 'en', 'name', 'Mexican American Catholic College'),
(31464, 26277, 'en', 'name', 'Huntington Theatre Company'),
(31465, 26278, 'en', 'name', 'Huntsville Museum of Art'),
(31466, 26279, 'en', 'name', 'Miami-Dade Public Library System'),
(31467, 26280, 'en', 'name', 'Longmont Museum'),
(31468, 26281, 'en', 'name', 'Iberia Parish Library'),
(31469, 26282, 'en', 'name', 'Longue Vue House and Gardens'),
(31470, 26283, 'en', 'name', 'Colorado Heights University'),
(31471, 26284, 'en', 'name', 'Idaho Department of Parks and Recreation'),
(31472, 26285, 'en', 'name', 'Idaho Falls Public Library'),
(31473, 26286, 'es', 'name', 'Biblioteca Pública de Los Ángeles'),
(31474, 26286, 'fr', 'name', 'BibliothĆØque publique de los angeles'),
(31475, 26286, 'en', 'name', 'Los Angeles Public Library'),
(31476, 26287, 'en', 'name', 'Los Medanos College'),
(31477, 26288, 'en', 'name', 'Loudoun County Public Library'),
(31478, 26289, 'en', 'name', 'Idaho State Historical Society'),
(31479, 26290, 'en', 'name', 'Louisiana Library Association'),
(31480, 26291, 'en', 'name', 'Louisiana Museum Foundation'),
(31481, 26292, 'en', 'name', 'Louisiana State Museum'),
(31482, 26293, 'en', 'name', 'Louisville Free Public Library'),
(31483, 26294, 'en', 'name', 'Lourdes University'),
(31484, 26295, 'en', 'name', 'Midwest Art Conservation Center'),
(31485, 26296, 'en', 'name', 'Milligan College'),
(31486, 26297, 'en', 'name', 'Illinois Historic Preservation Agency'),
(31487, 26298, 'en', 'name', 'Milwaukee Art Museum'),
(31488, 26299, 'es', 'name', 'Instituto de Arte de MineƔpolis'),
(31489, 26299, 'en', 'name', 'Minneapolis Institute of Arts'),
(31490, 26300, 'en', 'name', 'Illinois State Historical Society'),
(31491, 26301, 'en', 'name', 'Independence Seaport Museum'),
(31492, 26302, 'en', 'name', 'Minnesota Historical Society'),
(31493, 26303, 'en', 'name', 'Minnesota Public Radio'),
(31494, 26304, 'en', 'name', 'Minnesota State Community and Technical College'),
(31495, 26305, 'en', 'name', 'Mint Museum'),
(31496, 26306, 'en', 'name', 'Lushootseed Research'),
(31497, 26307, 'en', 'name', 'Mission Inn Foundation'),
(31498, 26308, 'en', 'name', 'Mississippi Public Broadcasting'),
(31499, 26309, 'en', 'name', 'Lutheran Archives Center at Philadelphia'),
(31500, 26310, 'en', 'name', 'Mississippi Department of Archives and History'),
(31501, 26311, 'en', 'name', 'Lutheran School of Theology at Chicago'),
(31502, 26312, 'en', 'name', 'Independent Production Fund'),
(31503, 26313, 'en', 'name', 'Lyman Museum'),
(31504, 26314, 'en', 'name', 'Independent Filmmaker Project'),
(31505, 26315, 'en', 'name', 'Lyndon Baines Johnson Foundation'),
(31506, 26316, 'en', 'name', 'Mississippi Library Commission'),
(31507, 26317, 'en', 'name', 'Missoula Public Library'),
(31508, 26318, 'en', 'name', 'Muriel L. MacGregor Charitable Trust'),
(31509, 26319, 'en', 'name', 'Missouri Historical Society'),
(31510, 26320, 'en', 'name', 'Mackinac State Historic Parks'),
(31511, 26321, 'en', 'name', 'Indiana Library Federation'),
(31512, 26322, 'en', 'name', 'Confederated Tribes of Warm Springs'),
(31513, 26323, 'en', 'name', 'Mobile Public Library'),
(31514, 26324, 'en', 'name', 'Modern Language Association'),
(31515, 26325, 'en', 'name', 'Poetry Foundation'),
(31516, 26326, 'en', 'name', 'International Conference for the Study of Political Thought'),
(31517, 26327, 'en', 'name', 'Macon County History Museum'),
(31518, 26328, 'en', 'name', 'Indianapolis Museum of Art'),
(31519, 26329, 'en', 'name', 'Historic Macon Foundation'),
(31520, 26330, 'en', 'name', 'Madison Museum of Contemporary Art'),
(31521, 26331, 'en', 'name', 'Institute for Architecture and Urban Studies'),
(31522, 26332, 'en', 'name', 'YWCA Madison'),
(31523, 26333, 'en', 'name', 'Moffatt-Ladd House and Garden'),
(31524, 26334, 'en', 'name', 'Maiden Voyage Productions'),
(31525, 26335, 'en', 'name', 'Maine Classical Association'),
(31526, 26336, 'en', 'name', 'Walter Elwood Museum'),
(31527, 26337, 'en', 'name', 'Maine Historical Society'),
(31528, 26338, 'en', 'name', 'Monmouth Museum'),
(31529, 26339, 'en', 'name', 'Institute for Historical Study'),
(31530, 26340, 'en', 'name', 'Maine Library Association'),
(31531, 26341, 'en', 'name', 'Monroe County History Center'),
(31532, 26342, 'en', 'name', 'Maine Maritime Museum'),
(31533, 26343, 'en', 'name', 'Montana Historical Society'),
(31534, 26344, 'en', 'name', 'Montclair Art Museum'),
(31535, 26345, 'en', 'name', 'Montgomery County Historical Society'),
(31536, 26346, 'en', 'name', 'Montgomery County-Norristown Public Library'),
(31537, 26347, 'en', 'name', 'Montpelier Foundation'),
(31538, 26348, 'en', 'name', 'Maine State Archives'),
(31539, 26349, 'en', 'name', 'Maine State Museum'),
(31540, 26350, 'en', 'name', 'Moravian Music Foundation'),
(31541, 26351, 'en', 'name', 'Morris College'),
(31542, 26352, 'en', 'name', 'Motlow State Community College'),
(31543, 26353, 'en', 'name', 'Mount Ida College'),
(31544, 26354, 'en', 'name', 'Makah Cultural and Research Center'),
(31545, 26355, 'en', 'name', 'Mount Vernon Hotel Museum & Garden'),
(31546, 26356, 'en', 'name', 'Manchester Historic Association'),
(31547, 26357, 'en', 'name', 'Mangalam Research Center for Buddhist Languages'),
(31548, 26358, 'en', 'name', 'Multnomah County Library'),
(31549, 26359, 'en', 'name', 'Manhattan High School'),
(31550, 26360, 'en', 'name', 'Mariners'' Museum'),
(31551, 26361, 'en', 'name', 'Muncie Public Library'),
(31552, 26362, 'en', 'name', 'Marist School'),
(31553, 26363, 'en', 'name', 'Municipal Art Society of New York'),
(31554, 26364, 'en', 'name', 'Mark Twain House and Museum'),
(31555, 26365, 'en', 'name', 'Marlboro College'),
(31556, 26366, 'en', 'name', 'Institute of Andean Studies'),
(31557, 26367, 'en', 'name', 'Institute of Contemporary Art'),
(31558, 26368, 'en', 'name', 'Martha''s Vineyard Museum'),
(31559, 26369, 'en', 'name', 'LeRoy Collins Leon County Public Library'),
(31560, 26370, 'en', 'name', 'MUSE Film and Television'),
(31561, 26371, 'en', 'name', 'Institute of Nautical Archaeology'),
(31562, 26372, 'en', 'name', 'Africa Center'),
(31563, 26373, 'en', 'name', 'National Museum of African Art'),
(31564, 26374, 'en', 'name', 'Carnegie Museum of Art'),
(31565, 26375, 'en', 'name', 'Institute of the Black World'),
(31566, 26376, 'en', 'name', 'Museum of Contemporary Art, Los Angeles'),
(31567, 26377, 'en', 'name', 'Institute of the Rockies'),
(31568, 26378, 'en', 'name', 'Museum of Contemporary Art San Diego'),
(31569, 26379, 'en', 'name', 'Museum of Fine Arts, Boston'),
(31570, 26380, 'es', 'name', 'Museo de Bellas Artes de Houston'),
(31571, 26380, 'en', 'name', 'Museum of Fine Arts, Houston'),
(31572, 26380, 'fr', 'name', 'MusƩe des beaux-arts de houston'),
(31573, 26381, 'en', 'name', 'International Center of Medieval Art'),
(31574, 26382, 'fr', 'name', 'Centre international de la photographie'),
(31575, 26382, 'es', 'name', 'Centro internacional de FotografĆ­a'),
(31576, 26382, 'en', 'name', 'International Center of Photography'),
(31577, 26383, 'en', 'name', 'International Coalition of Sites of Conscience'),
(31578, 26384, 'en', 'name', 'Museum of International Folk Art'),
(31579, 26385, 'en', 'name', 'International Research & Exchanges Board'),
(31580, 26386, 'en', 'name', 'International Tennis Hall of Fame'),
(31581, 26387, 'en', 'name', 'Intrepid Sea Air & Space Museum'),
(31582, 26388, 'en', 'name', 'Ipswich Historical Society'),
(31583, 26389, 'en', 'name', 'Isabella Stewart Gardner Museum'),
(31584, 26390, 'en', 'name', 'Italian Cultural Society of Washington D.C.'),
(31585, 26391, 'en', 'name', 'Martinsburg - Berkeley County Public Libraries'),
(31586, 26392, 'en', 'name', 'Michele & Donald D’Amour Museum of Fine Arts'),
(31587, 26393, 'en', 'name', 'Jack Straw Cultural Center'),
(31588, 26394, 'en', 'name', 'Jackson County Historical Society'),
(31589, 26395, 'en', 'name', 'Museum of New Mexico Foundation'),
(31590, 26396, 'en', 'name', 'Maryland Historical Society'),
(31591, 26397, 'en', 'name', 'Museum of History and Art'),
(31592, 26398, 'en', 'name', 'Maryland State Archives'),
(31593, 26399, 'en', 'name', 'Museum of Indian Arts and Culture'),
(31594, 26400, 'en', 'name', 'Jacksonville Public Library'),
(31595, 26401, 'en', 'name', 'Museum of Photographic Arts'),
(31596, 26402, 'en', 'name', 'Museum of the Cherokee Indian'),
(31597, 26403, 'en', 'name', 'Jacques Marchais Center of Tibetan Art'),
(31598, 26404, 'en', 'name', 'Museum of the City of New York'),
(31599, 26405, 'en', 'name', 'Mashantucket Pequot Museum and Research Center'),
(31600, 26406, 'en', 'name', 'Massachusetts Archives'),
(31601, 26407, 'en', 'name', 'Caldwell West Caldwell Public Schools'),
(31602, 26408, 'en', 'name', 'Museum of the Gulf Coast'),
(31603, 26409, 'en', 'name', 'Museum of the Moving Image'),
(31604, 26410, 'en', 'name', 'James Sprunt Community College'),
(31605, 26411, 'en', 'name', 'National Association for Equal Opportunity in Higher Education'),
(31606, 26412, 'en', 'name', 'James V Brown Library'),
(31607, 26413, 'en', 'name', 'Larz Anderson Auto Museum'),
(31608, 26414, 'en', 'name', 'Massachusetts College of Liberal Arts'),
(31609, 26415, 'en', 'name', 'National Afro-American Museum and Cultural Center'),
(31610, 26416, 'en', 'name', 'National Alliance of Black School Educators'),
(31611, 26417, 'en', 'name', 'Japanese American National Museum'),
(31612, 26418, 'en', 'name', 'Japanese American Service Committee'),
(31613, 26419, 'en', 'name', 'National Baseball Hall of Fame and Museum'),
(31614, 26420, 'en', 'name', 'Massachusetts Library Association'),
(31615, 26421, 'en', 'name', 'State Library of Massachusetts'),
(31616, 26422, 'en', 'name', 'Japanese American Citizens League'),
(31617, 26423, 'en', 'name', 'Massanutten Regional Library'),
(31618, 26424, 'en', 'name', 'Jeffco Public Schools'),
(31619, 26425, 'en', 'name', 'Mattatuck Museum'),
(31620, 26426, 'en', 'name', 'National Building Museum'),
(31621, 26427, 'en', 'name', 'Mattress Factory'),
(31622, 26428, 'en', 'name', 'National Catholic Educational Association'),
(31623, 26429, 'en', 'name', 'Jefferson Patterson Park and Museum'),
(31624, 26430, 'en', 'name', 'Maymont Foundation'),
(31625, 26431, 'en', 'name', 'McArthur Public Library'),
(31626, 26432, 'en', 'name', 'Jewish Historical Society of Greater Washington'),
(31627, 26433, 'en', 'name', 'Jewish Museum'),
(31628, 26434, 'en', 'name', 'Jewish Museum of Maryland'),
(31629, 26435, 'en', 'name', 'National Children''s Museum'),
(31630, 26436, 'en', 'name', 'National Civil Rights Museum'),
(31631, 26437, 'en', 'name', 'Jewish Publication Society'),
(31632, 26438, 'en', 'name', 'National Constitution Center'),
(31633, 26439, 'en', 'name', 'National Council for History Education'),
(31634, 26440, 'en', 'name', 'Jewish Theological Seminary'),
(31635, 26441, 'en', 'name', 'McLean County Museum of History'),
(31636, 26442, 'en', 'name', 'Meadville Public Library'),
(31637, 26443, 'en', 'name', 'John Carter Brown Library'),
(31638, 26444, 'en', 'name', 'John Jermain Memorial Library'),
(31639, 26445, 'en', 'name', 'National Council for the Traditional Arts'),
(31640, 26446, 'en', 'name', 'Media Working Group'),
(31641, 26447, 'en', 'name', 'National Council of La Raza'),
(31642, 26448, 'en', 'name', 'National Council on Public History'),
(31643, 26449, 'en', 'name', 'Johnstown Area Heritage Association'),
(31644, 26450, 'en', 'name', 'Medici Archive Project'),
(31645, 26451, 'en', 'name', 'National Foundation for Jewish Culture'),
(31646, 26452, 'no_lang_code', 'name', 'GuideStar'),
(31647, 26453, 'en', 'name', 'Medieval Academy of America'),
(31648, 26454, 'en', 'name', 'National Farmers Union'),
(31649, 26455, 'en', 'name', 'New York Studio School of Drawing Painting and Sculpture'),
(31650, 26456, 'en', 'name', 'New York Transit Museum'),
(31651, 26457, 'en', 'name', 'New York University Press'),
(31652, 26458, 'en', 'name', 'Newark Public Library'),
(31653, 26459, 'en', 'name', 'Menaul Historical Library of the Southwest'),
(31654, 26460, 'en', 'name', 'Newport Art Museum'),
(31655, 26461, 'en', 'name', 'Center for Fiction'),
(31656, 26462, 'en', 'name', 'Newport Beach Public Library'),
(31657, 26463, 'en', 'name', 'Newport Historical Society'),
(31658, 26464, 'en', 'name', 'Mercer Museum and Fonthill Castle'),
(31659, 26465, 'en', 'name', 'Newport Public Library'),
(31660, 26466, 'en', 'name', 'Meridian International Center'),
(31661, 26467, 'en', 'name', 'Newton Public Schools'),
(31662, 26468, 'en', 'name', 'National Nordic Museum'),
(31663, 26469, 'en', 'name', 'Norfolk Academy'),
(31664, 26470, 'en', 'name', 'Norman Rockwell Museum'),
(31665, 26471, 'en', 'name', 'Mescalero Apache Tribe'),
(31666, 26472, 'en', 'name', 'National History Center'),
(31667, 26473, 'en', 'name', 'National History Day'),
(31668, 26474, 'en', 'name', 'North Carolina Department of Natural and Cultural Resources'),
(31669, 26475, 'en', 'name', 'North Carolina Museum of History'),
(31670, 26476, 'en', 'name', 'Pueblo of Pojoaque'),
(31671, 26477, 'en', 'name', 'Mahayana Sutra & Tantra Center'),
(31672, 26478, 'en', 'name', 'Pueblo of Zuni'),
(31673, 26479, 'en', 'name', 'Putnam Museum'),
(31674, 26480, 'en', 'name', 'North Dakota Superintendent of Public Instruction'),
(31675, 26481, 'es', 'name', 'Biblioteca PĆŗblica de Queens'),
(31676, 26481, 'en', 'name', 'Queens Public Library'),
(31677, 26482, 'en', 'name', 'Queens Museum'),
(31678, 26483, 'en', 'name', 'North Star Museum of Boy Scouting and Girl Scouting'),
(31679, 26484, 'en', 'name', 'Quinebaug Valley Community College'),
(31680, 26485, 'en', 'name', 'Radio America'),
(31681, 26486, 'en', 'name', 'Radio Diaries'),
(31682, 26487, 'en', 'name', 'Communal Societies Association'),
(31683, 26488, 'en', 'name', 'National Humanities Center'),
(31684, 26489, 'en', 'name', 'North Dakota State Railroad Museum'),
(31685, 26490, 'en', 'name', 'National Italian American Foundation'),
(31686, 26491, 'en', 'name', 'Northeast Historic Film'),
(31687, 26492, 'en', 'name', 'Ramsey County Historical Society'),
(31688, 26493, 'en', 'name', 'National Japanese American Historical Society'),
(31689, 26494, 'en', 'name', 'Northern Seminary'),
(31690, 26495, 'en', 'name', 'Bishop John T. Walker National Learning Center'),
(31691, 26496, 'en', 'name', 'Reading Area Community College'),
(31692, 26497, 'en', 'name', 'Northern Virginia Regional Park Authority'),
(31693, 26498, 'en', 'name', 'Northland Community and Technical College'),
(31694, 26499, 'en', 'name', 'National Museum of Mexican Art'),
(31695, 26500, 'en', 'name', 'Reconstructionist Rabbinical College'),
(31696, 26501, 'en', 'name', 'National Museum of Wildlife Art'),
(31697, 26502, 'en', 'name', 'National Park Foundation'),
(31698, 26503, 'en', 'name', 'Noyes Museum'),
(31699, 26504, 'en', 'name', 'Redwood Library and Athenaeum'),
(31700, 26505, 'en', 'name', 'National Radio Theater'),
(31701, 26506, 'en', 'name', 'National Society of The Colonial Dames of America'),
(31702, 26507, 'en', 'name', 'National Symphony Orchestra'),
(31703, 26508, 'en', 'name', 'New York City Department of Records and Information Services'),
(31704, 26509, 'en', 'name', 'University Press of Kansas'),
(31705, 26510, 'en', 'name', 'Oakland Museum of California'),
(31706, 26511, 'en', 'name', 'National Underground Railroad Freedom Center'),
(31707, 26512, 'en', 'name', 'Oakland Public Library'),
(31708, 26513, 'en', 'name', 'Native American Center for the Living Arts'),
(31709, 26514, 'no_lang_code', 'name', 'Crawford & Stearns (United States)'),
(31710, 26515, 'en', 'name', 'Ocean County Library'),
(31711, 26516, 'en', 'name', 'Oceanside Public Library'),
(31712, 26517, 'en', 'name', 'Renaissance Society of America'),
(31713, 26518, 'en', 'name', 'Reno County Museum'),
(31714, 26519, 'en', 'name', 'Rensselaer County Historical Society'),
(31715, 26520, 'en', 'name', 'Natrona County Public Library'),
(31716, 26521, 'en', 'name', 'The Ohio State University at Lima'),
(31717, 26522, 'en', 'name', 'Ohr-O''Keefe Museum Of Art'),
(31718, 26523, 'en', 'name', 'Vision Maker Media'),
(31719, 26524, 'en', 'name', 'Oklahoma Christian University'),
(31720, 26525, 'en', 'name', 'Oklahoma Historical Society'),
(31721, 26526, 'en', 'name', 'Rhode Island Black Heritage Society'),
(31722, 26527, 'en', 'name', 'Natural History Museum of Utah'),
(31723, 26528, 'en', 'name', 'Nebraska State Historical Society'),
(31724, 26529, 'en', 'name', 'Oklahoma Library Association'),
(31725, 26530, 'en', 'name', 'State of Rhode Island Office of Library and Information Services'),
(31726, 26531, 'en', 'name', 'Rhode Island Historical Society'),
(31727, 26532, 'en', 'name', 'Old Dartmouth Historical Society'),
(31728, 26533, 'en', 'name', 'Old Independence Regional Museum'),
(31729, 26534, 'en', 'name', 'Nevada Department of Tourism and Cultural Affairs'),
(31730, 26535, 'en', 'name', 'Nevada State Library, Archives, and Public Records'),
(31731, 26536, 'en', 'name', 'New Bedford Whaling Museum'),
(31732, 26537, 'en', 'name', 'Richard Bland College'),
(31733, 26538, 'en', 'name', 'New Brunswick Free Public Library'),
(31734, 26539, 'en', 'name', 'Old Red Museum of Dallas County History and Culture'),
(31735, 26540, 'en', 'name', 'New Castle Historical Society'),
(31736, 26541, 'en', 'name', 'New England Conservatory of Music'),
(31737, 26542, 'en', 'name', 'Richard I. Bong Veterans Historical Center'),
(31738, 26543, 'en', 'name', 'Old South Association'),
(31739, 26544, 'en', 'name', 'Old Stone House'),
(31740, 26545, 'en', 'name', 'New England Historic Genealogical Society'),
(31741, 26546, 'en', 'name', 'New England Quilt Museum'),
(31742, 26547, 'en', 'name', 'Old Sturbridge Village'),
(31743, 26548, 'en', 'name', 'New Hampshire Historical Society'),
(31744, 26549, 'en', 'name', 'Richards Free Library'),
(31745, 26550, 'en', 'name', 'OASIS Institute'),
(31746, 26551, 'en', 'name', 'New Hampshire State Library'),
(31747, 26552, 'en', 'name', 'Oberlin Heritage Center'),
(31748, 26553, 'en', 'name', 'Richmond Public Library'),
(31749, 26554, 'en', 'name', 'Ohio History Connection'),
(31750, 26555, 'en', 'name', 'Imaginarium of South Texas'),
(31751, 26556, 'en', 'name', 'University of New Hampshire at Manchester'),
(31752, 26557, 'en', 'name', 'Ridgewood Public Schools'),
(31753, 26558, 'en', 'name', 'New Hanover County Public Library'),
(31754, 26559, 'en', 'name', 'Retrospective Index to Music Periodicals'),
(31755, 26560, 'en', 'name', 'New Jersey Community College Consortium For Workforce & Economic Development'),
(31756, 26561, 'en', 'name', 'Riverside Metropolitan Museum'),
(31757, 26562, 'en', 'name', 'New Jersey Historical Society'),
(31758, 26563, 'en', 'name', 'Riverside County Parks'),
(31759, 26564, 'en', 'name', 'New Jersey State Library'),
(31760, 26565, 'en', 'name', 'Museums of Old York'),
(31761, 26566, 'en', 'name', 'Roberson Museum and Science Center'),
(31762, 26567, 'en', 'name', 'New Mexico Commission of Public Records'),
(31763, 26568, 'en', 'name', 'New Orleans Jazz & Heritage Festival and Foundation'),
(31764, 26569, 'en', 'name', 'History Center of Olmsted County'),
(31765, 26570, 'en', 'name', 'Orleans Parish Civil Clerk of Court'),
(31766, 26571, 'en', 'name', 'New Orleans Public Library'),
(31767, 26572, 'en', 'name', 'Omaha Public Library'),
(31768, 26573, 'en', 'name', 'New Rochelle Public Library'),
(31769, 26574, 'en', 'name', 'New York City Municipal Archives'),
(31770, 26575, 'en', 'name', 'New York Folklore Society'),
(31771, 26576, 'en', 'name', 'New York State Historical Association'),
(31772, 26577, 'en', 'name', 'Rare Book School'),
(31773, 26578, 'en', 'name', 'Onondaga County Public Library'),
(31774, 26579, 'en', 'name', 'Ontario County Historical Society'),
(31775, 26580, 'en', 'name', 'New York State Office of Parks, Recreation and Historic Preservation'),
(31776, 26581, 'en', 'name', 'Rappahannock Community College'),
(31777, 26582, 'en', 'name', 'Danville Community College'),
(31778, 26583, 'en', 'name', 'Orange County Library System'),
(31779, 26584, 'en', 'name', 'Robert S. Peabody Museum of Archaeology'),
(31780, 26585, 'en', 'name', 'Oregon Historical Society'),
(31781, 26586, 'en', 'name', 'Boundless Readers'),
(31782, 26587, 'en', 'name', 'St. Louis Public Schools'),
(31783, 26588, 'en', 'name', 'Rochester Hills Public Library'),
(31784, 26589, 'en', 'name', 'Rochester Historical Society'),
(31785, 26590, 'en', 'name', 'St. Louis University High School'),
(31786, 26591, 'en', 'name', 'St. Lucie County Regional History Center'),
(31787, 26592, 'en', 'name', 'Ossabaw Island Foundation'),
(31788, 26593, 'en', 'name', 'Ouachita Parish Public Library'),
(31789, 26594, 'en', 'name', 'Rock Point Community School'),
(31790, 26595, 'en', 'name', 'Oxnard Public Library'),
(31791, 26596, 'en', 'name', 'National Center for Jewish Film'),
(31792, 26597, 'en', 'name', 'Rockland Memorial Library'),
(31793, 26598, 'en', 'name', 'Historic St. Mary’s City Commission'),
(31794, 26599, 'en', 'name', 'Rocky Mount Museum'),
(31795, 26600, 'en', 'name', 'Saint Paul Public Library'),
(31796, 26601, 'en', 'name', 'Pacific Science Center'),
(31797, 26602, 'en', 'name', 'Rokeby Museum'),
(31798, 26603, 'en', 'name', 'Pacifica Foundation'),
(31799, 26604, 'en', 'name', 'Packwood House Museum'),
(31800, 26605, 'en', 'name', 'Roland Park Country School'),
(31801, 26606, 'en', 'name', 'Palm Springs Art Museum'),
(31802, 26607, 'en', 'name', 'Washington State Board for Community and Technical Colleges'),
(31803, 26608, 'en', 'name', 'Rolling Hills Library'),
(31804, 26609, 'en', 'name', 'Palo Alto Unified School District'),
(31805, 26610, 'en', 'name', 'Panhandle Plains Historical Museum'),
(31806, 26611, 'en', 'name', 'Rosenbach Museum and Library'),
(31807, 26612, 'en', 'name', 'Russell Library'),
(31808, 26613, 'en', 'name', 'Iowa Department of Cultural Affairs'),
(31809, 26614, 'en', 'name', 'State Historical Society of North Dakota'),
(31810, 26615, 'en', 'name', 'State Legislative Leaders Foundation'),
(31811, 26616, 'en', 'name', 'Parkway School District'),
(31812, 26617, 'en', 'name', 'Billings Public Library'),
(31813, 26618, 'en', 'name', 'Rutherford B. Hayes Presidential Center'),
(31814, 26619, 'en', 'name', 'Parrish Art Museum'),
(31815, 26620, 'en', 'name', 'Rutland Free Library'),
(31816, 26621, 'en', 'name', 'Staten Island Children''s Museum'),
(31817, 26622, 'en', 'name', 'Parsons School of Design'),
(31818, 26623, 'en', 'name', 'Sachem Public Library'),
(31819, 26624, 'en', 'name', 'Staten Island Historical Society'),
(31820, 26625, 'en', 'name', 'Stearns History Museum'),
(31821, 26626, 'en', 'name', 'Salt Lake City Public Library'),
(31822, 26627, 'en', 'name', 'Partners for Livable Places'),
(31823, 26628, 'en', 'name', 'Paul Quinn College'),
(31824, 26629, 'en', 'name', 'Stillwater Public Library'),
(31825, 26630, 'en', 'name', 'Samuel S. Fleisher Art Memorial'),
(31826, 26631, 'en', 'name', 'Paul Revere Memorial Association'),
(31827, 26632, 'en', 'name', 'Stockbridge Library Association'),
(31828, 26633, 'en', 'name', 'San Antonio Museum of Art'),
(31829, 26634, 'en', 'name', 'Strawbery Banke Museum'),
(31830, 26635, 'en', 'name', 'Peabody Institute Library'),
(31831, 26636, 'en', 'name', 'San Antonio Public Library'),
(31832, 26637, 'en', 'name', 'Stuhr Museum'),
(31833, 26638, 'en', 'name', 'San Antonio Public Library Foundation'),
(31834, 26639, 'en', 'name', 'Sunflower County Library'),
(31835, 26640, 'en', 'name', 'William Peace University'),
(31836, 26641, 'en', 'name', 'Pejepscot Historical Society'),
(31837, 26642, 'en', 'name', 'Pekin Public Library'),
(31838, 26643, 'en', 'name', 'San Francisco Museum of Modern Art'),
(31839, 26644, 'en', 'name', 'Pennsbury Manor'),
(31840, 26645, 'es', 'name', 'Biblioteca PĆŗblica de San Francisco'),
(31841, 26645, 'fr', 'name', 'BibliothĆØque publique de san francisco'),
(31842, 26645, 'en', 'name', 'San Francisco Public Library'),
(31843, 26646, 'fr', 'name', 'Beaux-arts de pennsylvanie'),
(31844, 26646, 'en', 'name', 'Pennsylvania Academy of the Fine Arts'),
(31845, 26647, 'en', 'name', 'San Francisco Symphony'),
(31846, 26648, 'en', 'name', 'Supreme Court Historical Society'),
(31847, 26649, 'en', 'name', 'San Joaquin County Historical Society & Museum'),
(31848, 26650, 'en', 'name', 'Suquamish Museum'),
(31849, 26651, 'en', 'name', 'Pennsylvania Historical and Museum Commission'),
(31850, 26652, 'en', 'name', 'Swedish American Historical Society'),
(31851, 26653, 'en', 'name', 'Sweetwater County Historical Museum'),
(31852, 26654, 'en', 'name', 'San Mateo County History Museum'),
(31853, 26655, 'en', 'name', 'Sandusky Library'),
(31854, 26656, 'en', 'name', 'Stephen Phillips Memorial Trust House in Salem'),
(31855, 26657, 'en', 'name', 'Talladega Public Library'),
(31856, 26658, 'en', 'name', 'Tallahassee Museum'),
(31857, 26659, 'no_lang_code', 'name', 'TamƔstslikt Cultural Institute'),
(31858, 26660, 'en', 'name', 'Santa Barbara Museum of Art'),
(31859, 26661, 'en', 'name', 'Santa Barbara Trust for Historic Preservation'),
(31860, 26662, 'no_lang_code', 'name', 'Tanadgusix (United States)'),
(31861, 26663, 'en', 'name', 'Teaneck Public Library'),
(31862, 26664, 'en', 'name', 'Santa Monica Public Library'),
(31863, 26665, 'en', 'name', 'Telfair Museum of Art'),
(31864, 26666, 'en', 'name', 'Tennessee Historical Society'),
(31865, 26667, 'en', 'name', 'Sara Hightower Regional Library System'),
(31866, 26668, 'en', 'name', 'Tennessee State Museum'),
(31867, 26669, 'en', 'name', 'Terrebonne Parish Library'),
(31868, 26670, 'no_lang_code', 'name', 'Brookside Museum'),
(31869, 26671, 'en', 'name', 'Teton County Library'),
(31870, 26672, 'en', 'name', 'Pensacola Historical Society'),
(31871, 26673, 'en', 'name', 'Perkins School for Blind'),
(31872, 26674, 'en', 'name', 'Texas Folklife Resources'),
(31873, 26675, 'es', 'name', 'Comisión Histórica de Texas'),
(31874, 26675, 'en', 'name', 'Texas Historical Commission'),
(31875, 26676, 'en', 'name', 'Persian Heritage Foundation'),
(31876, 26677, 'en', 'name', 'Sault Ste. Marie Area Public Schools'),
(31877, 26678, 'en', 'name', 'Texas State Historical Association'),
(31878, 26679, 'en', 'name', 'Savannah College of Art and Design'),
(31879, 26680, 'en', 'name', 'American Academic Research Institute in Iraq'),
(31880, 26681, 'en', 'name', 'Save Ellis Island'),
(31881, 26682, 'no_lang_code', 'name', 'Theatre for a New Audience'),
(31882, 26683, 'en', 'name', 'Scarsdale Historical Society'),
(31883, 26684, 'en', 'name', 'Thomas Aquinas College'),
(31884, 26685, 'en', 'name', 'Philadelphia Museum of Art'),
(31885, 26686, 'en', 'name', 'Schenectady County Historical Society'),
(31886, 26687, 'en', 'name', 'Museum of Innovation and Science'),
(31887, 26688, 'en', 'name', 'Thousand Islands Museum'),
(31888, 26689, 'en', 'name', 'Three Village Historical Society'),
(31889, 26690, 'en', 'name', 'Tohono O''odham Nation'),
(31890, 26691, 'en', 'name', 'Tom Lea Institute'),
(31891, 26692, 'en', 'name', 'School District of Lee County'),
(31892, 26693, 'en', 'name', 'Phoenix Art Museum'),
(31893, 26694, 'en', 'name', 'Piedmont Community College'),
(31894, 26695, 'en', 'name', 'Pierce County Library System'),
(31895, 26696, 'en', 'name', 'Morgan Library and Museum'),
(31896, 26697, 'en', 'name', 'University of Pikeville'),
(31897, 26697, 'fr', 'name', 'UniversitƩ de pikeville'),
(31898, 26698, 'en', 'name', 'Texarkana Regional Arts and Humanities Council'),
(31899, 26699, 'en', 'name', 'Tucson Museum of Art'),
(31900, 26700, 'en', 'name', 'Lackawanna County Library System'),
(31901, 26701, 'en', 'name', 'Pima County Public Library'),
(31902, 26702, 'en', 'name', 'Tulsa City-County Library'),
(31903, 26703, 'en', 'name', 'Pilgrim Hall Museum'),
(31904, 26704, 'en', 'name', 'Scurry County Museum'),
(31905, 26705, 'en', 'name', 'Tunica Museum'),
(31906, 26706, 'en', 'name', 'Tuscaloosa Public Library'),
(31907, 26707, 'en', 'name', 'Old Swedes Foundation'),
(31908, 26708, 'no_lang_code', 'name', 'Józef Piłsudski Institute of America'),
(31909, 26709, 'en', 'name', 'Seattle Art Museum'),
(31910, 26710, 'en', 'name', 'Colorado Springs Pioneers Museum'),
(31911, 26711, 'en', 'name', 'Seattle Public Library'),
(31912, 26712, 'no_lang_code', 'name', 'Gundalow (United States)'),
(31913, 26713, 'en', 'name', 'Byzantine Studies Association of North America'),
(31914, 26714, 'en', 'name', 'Children''s Museum of Pittsburgh'),
(31915, 26715, 'en', 'name', 'USS Constitution Museum'),
(31916, 26716, 'en', 'name', 'Plains Art Museum'),
(31917, 26717, 'en', 'name', 'Seneca Falls Historical Society'),
(31918, 26718, 'en', 'name', 'Plains Indians & Pioneers Museum'),
(31919, 26719, 'en', 'name', 'Ulysses S. Grant Association'),
(31920, 26720, 'en', 'name', 'Union Theological Seminary'),
(31921, 26721, 'en', 'name', 'Captain Avery Museum'),
(31922, 26722, 'en', 'name', 'United South End Settlements'),
(31923, 26723, 'en', 'name', 'Please Touch Museum'),
(31924, 26724, 'en', 'name', 'Pocumtuck Valley Memorial Association'),
(31925, 26725, 'en', 'name', 'Shaker Museum Mount Lebanon'),
(31926, 26726, 'en', 'name', 'Shakespeare and Company'),
(31927, 26727, 'en', 'name', 'Unity Productions Foundation'),
(31928, 26728, 'en', 'name', 'Polish American Historical Association'),
(31929, 26729, 'en', 'name', 'Portland Art Museum'),
(31930, 26730, 'en', 'name', 'Providence Montana Health Foundation'),
(31931, 26731, 'en', 'name', 'Portland Museum'),
(31932, 26732, 'en', 'name', 'Portland Public Library'),
(31933, 26733, 'no_lang_code', 'name', 'Shakespeare Theatre Company'),
(31934, 26734, 'no_lang_code', 'name', 'Portland Stage (United States)'),
(31935, 26735, 'en', 'name', 'Sheffield Historical Society'),
(31936, 26736, 'en', 'name', 'Shelburne Museum'),
(31937, 26737, 'en', 'name', 'Poughkeepsie Public Library District'),
(31938, 26738, 'en', 'name', 'Pre Columbian Art Research Institute'),
(31939, 26739, 'en', 'name', 'Preble County Historical Society'),
(31940, 26740, 'en', 'name', 'Shelton History Center'),
(31941, 26741, 'en', 'name', 'Presbyterian Historical Society'),
(31942, 26742, 'en', 'name', 'Preservation Society of Newport County'),
(31943, 26743, 'en', 'name', 'Primary Source'),
(31944, 26744, 'en', 'name', 'Slater Mill'),
(31945, 26745, 'en', 'name', 'University of Georgia Press'),
(31946, 26746, 'en', 'name', 'Prince William County Public Schools'),
(31947, 26747, 'en', 'name', 'Princeton Theological Seminary'),
(31948, 26748, 'en', 'name', 'Snug Harbor Cultural Center & Botanical Garden'),
(31949, 26749, 'en', 'name', 'Providence Athenaeum'),
(31950, 26750, 'en', 'name', 'Providence Public Library'),
(31951, 26751, 'en', 'name', 'Society for American Music'),
(31952, 26752, 'en', 'name', 'Des Moines Public Library'),
(31953, 26753, 'en', 'name', 'Society for Classical Studies'),
(31954, 26754, 'en', 'name', 'Public Radio International'),
(31955, 26755, 'en', 'name', 'University of Pittsburgh at Bradford'),
(31956, 26756, 'en', 'name', 'Society for Historians of the Early American Republic'),
(31957, 26757, 'en', 'name', 'University of Pittsburgh at Greensburg'),
(31958, 26758, 'en', 'name', 'University of South Carolina Sumter'),
(31959, 26759, 'en', 'name', 'Society for Values in Higher Education'),
(31960, 26760, 'en', 'name', 'University Press of Kentucky'),
(31961, 26761, 'en', 'name', 'University of South Florida Sarasota–Manatee'),
(31962, 26762, 'en', 'name', 'University of South Florida St. Petersburg'),
(31963, 26763, 'en', 'name', 'Society of Architectural Historians'),
(31964, 26764, 'en', 'name', 'University Press of New England'),
(31965, 26765, 'en', 'name', 'Los Angeles Education Partnership'),
(31966, 26766, 'en', 'name', 'Society of Biblical Literature'),
(31967, 26767, 'en', 'name', 'Utah Library Association'),
(31968, 26768, 'en', 'name', 'Society of Early Americanists'),
(31969, 26769, 'en', 'name', 'Utah State Historical Society'),
(31970, 26770, 'en', 'name', 'Shoshone Episcopal Mission'),
(31971, 26771, 'en', 'name', 'Solomon R. Guggenheim Museum'),
(31972, 26772, 'en', 'name', 'Somerville Museum'),
(31973, 26773, 'en', 'name', 'Museum of Ventura County'),
(31974, 26774, 'en', 'name', 'Sonoma County Library'),
(31975, 26775, 'en', 'name', 'Vermilion Parish Library'),
(31976, 26776, 'en', 'name', 'Windward Community College'),
(31977, 26777, 'en', 'name', 'Vermont Folklife Center'),
(31978, 26778, 'en', 'name', 'Museum of Sonoma County'),
(31979, 26779, 'en', 'name', 'Vermont Historical Society'),
(31980, 26780, 'en', 'name', 'Vermont Public Radio'),
(31981, 26781, 'en', 'name', 'Vermont Ski and Snowboard Museum'),
(31982, 26782, 'en', 'name', 'Leeward Community College'),
(31983, 26783, 'en', 'name', 'Kapiolani Community College'),
(31984, 26784, 'en', 'name', 'Verona Public Library'),
(31985, 26785, 'en', 'name', 'Vesterheim Norwegian American Museum'),
(31986, 26786, 'en', 'name', 'Victorian Society in America'),
(31987, 26787, 'en', 'name', 'South Carolina Historical Society'),
(31988, 26788, 'en', 'name', 'South Carolina State Museum'),
(31989, 26789, 'en', 'name', 'South Coast Railroad Museum'),
(31990, 26790, 'en', 'name', 'Virginia Department of Historic Resources'),
(31991, 26791, 'en', 'name', 'South Dakota Department of Tourism'),
(31992, 26792, 'en', 'name', 'Virginia Sesquicentennial of the American Civil War Commission'),
(31993, 26793, 'en', 'name', 'South Dakota State Historical Society'),
(31994, 26794, 'en', 'name', 'Caribbean Cultural Center African Diaspora Institute'),
(31995, 26795, 'en', 'name', 'South Dakota Library Association'),
(31996, 26796, 'en', 'name', 'Vizcaya Museum & Gardens'),
(31997, 26797, 'en', 'name', 'South Puget Sound Community College'),
(31998, 26798, 'en', 'name', 'W. F. Albright Institute of Archaeological Research'),
(31999, 26799, 'en', 'name', 'W. H. Over Museum'),
(32000, 26800, 'en', 'name', 'South Street Seaport Museum'),
(32001, 26801, 'en', 'name', 'Wadsworth Atheneum Museum of Art'),
(32002, 26802, 'en', 'name', 'Washington National Opera'),
(32003, 26803, 'en', 'name', 'Oregon Zoo'),
(32004, 26804, 'en', 'name', 'Olney Carnegie Library'),
(32005, 26805, 'en', 'name', 'Washington Performing Arts'),
(32006, 26806, 'en', 'name', 'Walker Art Center'),
(32007, 26807, 'en', 'name', 'Wallingford Public Library'),
(32008, 26808, 'en', 'name', 'Walters Art Museum'),
(32009, 26809, 'en', 'name', 'Washington State Historical Society'),
(32010, 26810, 'en', 'name', 'Washakie Museum & Cultural Center'),
(32011, 26811, 'en', 'name', 'Washburn Norlands Living History Center'),
(32012, 26812, 'en', 'name', 'Waterloo Public Library'),
(32013, 26813, 'no_lang_code', 'name', 'Washington Ballet (United States)'),
(32014, 26814, 'en', 'name', 'Wayne County Community College District'),
(32015, 26815, 'en', 'name', 'Washington County Museum'),
(32016, 26816, 'en', 'name', 'Webb School of Knoxville'),
(32017, 26817, 'en', 'name', 'Webster Museum and Historical Society'),
(32018, 26818, 'en', 'name', 'Wenham Museum'),
(32019, 26819, 'en', 'name', 'Southern Maryland Regional Library Association'),
(32020, 26820, 'en', 'name', 'Wisconsin Educational Communications Board'),
(32021, 26821, 'en', 'name', 'West Baton Rouge Museum'),
(32022, 26822, 'en', 'name', 'Witherspoon Institute'),
(32023, 26823, 'en', 'name', 'West Los Angeles College'),
(32024, 26824, 'en', 'name', 'Southern Ute Museum'),
(32025, 26825, 'en', 'name', 'WMHT Educational Telecommunications'),
(32026, 26826, 'en', 'name', 'Western Heritage Center'),
(32027, 26827, 'en', 'name', 'Durham Museum'),
(32028, 26828, 'en', 'name', 'Western Museum of Mining & Industry'),
(32029, 26829, 'en', 'name', 'Women''s Studio Workshop'),
(32030, 26830, 'en', 'name', 'Woodlawn Museum Gardens & Park'),
(32031, 26831, 'en', 'name', 'Worcester Art Museum'),
(32032, 26832, 'en', 'name', 'Worcester Historical Museum'),
(32033, 26833, 'en', 'name', 'Worcester Public Library'),
(32034, 26834, 'en', 'name', 'Western New York Public Broadcasting Association'),
(32035, 26835, 'en', 'name', 'Western Pocono Community Library'),
(32036, 26836, 'en', 'name', 'Spartanburg County Public Libraries'),
(32037, 26837, 'en', 'name', 'Western Reserve Historical Society'),
(32038, 26838, 'en', 'name', 'World Music Productions'),
(32039, 26839, 'en', 'name', 'Spring Lake District Library'),
(32040, 26840, 'en', 'name', 'American World University'),
(32041, 26841, 'en', 'name', 'Springdale Public Library'),
(32042, 26842, 'en', 'name', 'Operation Opportunity Foundation'),
(32043, 26843, 'en', 'name', 'Worthington City School District'),
(32044, 26844, 'en', 'name', 'Westfield Center for Historical Keyboard Studies'),
(32045, 26845, 'en', 'name', 'Rhode Island PBS Foundation'),
(32046, 26846, 'en', 'name', 'Wyoming State Archives'),
(32047, 26847, 'en', 'name', 'Yakima Valley Museum'),
(32048, 26848, 'en', 'name', 'Organization of American Historians'),
(32049, 26849, 'en', 'name', 'Springfield Museums'),
(32050, 26850, 'en', 'name', 'Yakima Valley Libraries'),
(32051, 26851, 'en', 'name', 'B.S. Ricks Memorial Library'),
(32052, 26852, 'en', 'name', 'WGBH Educational Foundation'),
(32053, 26853, 'en', 'name', 'Yeshiva University Museum'),
(32054, 26854, 'en', 'name', 'Wheelwright Museum of the American Indian'),
(32055, 26855, 'en', 'name', 'White House Historical Association'),
(32056, 26856, 'en', 'name', 'Whitney Museum of American Art'),
(32057, 26857, 'en', 'name', 'Wichita Public Library'),
(32058, 26858, 'en', 'name', 'St. Francis College'),
(32059, 26859, 'en', 'name', 'St. George''s School'),
(32060, 26860, 'en', 'name', 'Willa Cather Foundation'),
(32061, 26861, 'en', 'name', 'Ypsilanti District Library'),
(32062, 26862, 'en', 'name', 'Willamette Heritage Center'),
(32063, 26863, 'en', 'name', 'Park City Museum'),
(32064, 26864, 'en', 'name', 'William K. Sanford Town Library'),
(32065, 26865, 'en', 'name', 'Williamsburg Regional Library'),
(32066, 26866, 'en', 'name', 'Philadelphia Zoo'),
(32067, 26867, 'en', 'name', 'William F. Laman Public Library System'),
(32068, 26868, 'en', 'name', 'St. Johnsbury Athenaeum'),
(32069, 26869, 'en', 'name', 'University of Wisconsin–Fond du Lac'),
(32070, 26870, 'en', 'name', 'Pennsylvania Heritage Society'),
(32071, 26871, 'en', 'name', 'Saint Louis Art Museum'),
(32072, 26872, 'en', 'name', 'St. Louis County Missouri'),
(32073, 26873, 'en', 'name', 'St. Louis County Department of Parks and Recreation'),
(32074, 26874, 'en', 'name', 'St. Louis County Historical Society'),
(32075, 26875, 'en', 'name', 'Sons of Union Veterans of the Civil War'),
(32076, 26876, 'en', 'name', 'Pacific Symphony'),
(32077, 26877, 'en', 'name', 'Peter Yegen Jr. Yellowstone County Museum'),
(32078, 26878, 'en', 'name', 'Institute of Oceanology'),
(32079, 26878, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¾ŠŗŠµŠ°Š½Š¾Š»Š¾Š³ŠøŃ'),
(32080, 26879, 'en', 'name', 'Central Laboratory of Solar Energy and New Energy Sources'),
(32081, 26879, 'bg', 'name', 'Централна Š»Š°Š±Š¾Ń€Š°Ń‚Š¾Ń€ŠøŃ по ŃŠ»ŃŠŠ½Ń‡ŠµŠ²Š° ŠµŠ½ŠµŃ€Š³ŠøŃ Šø нови енергийни източници'),
(32082, 26880, 'no_lang_code', 'name', 'Central European Data Agency (Czechia)'),
(32083, 26881, 'no_lang_code', 'name', 'Medipo ZT (Czechia)'),
(32084, 26882, 'no_lang_code', 'name', 'Eldis Pardubice (Czechia)'),
(32085, 26883, 'no_lang_code', 'name', 'Medistyl (Czechia)'),
(32086, 26884, 'no_lang_code', 'name', 'Elis Plzen (Czechia)'),
(32087, 26885, 'no_lang_code', 'name', 'Imos Brno (Czechia)'),
(32088, 26886, 'no_lang_code', 'name', 'Elitex Machinery (Czechia)'),
(32089, 26887, 'no_lang_code', 'name', 'Medtec VOP (Czechia)'),
(32090, 26888, 'no_lang_code', 'name', 'Inco Engineering (Czechia)'),
(32091, 26889, 'no_lang_code', 'name', 'Elko Ep (Czechia)'),
(32092, 26890, 'no_lang_code', 'name', 'Elmarco (Czechia)'),
(32093, 26891, 'no_lang_code', 'name', 'MEgA Measuring Energy Apparatus (Czechia)'),
(32094, 26892, 'no_lang_code', 'name', 'Mega (Czechia)'),
(32095, 26893, 'no_lang_code', 'name', 'Centre for Organic Chemistry (Czechia)'),
(32096, 26893, 'cs', 'name', 'Centrum OrganickƩ Chemie'),
(32097, 26894, 'no_lang_code', 'name', 'Infram (Czechia)'),
(32098, 26895, 'no_lang_code', 'name', 'Meopta Optika (Czechia)'),
(32099, 26896, 'cs', 'name', 'Centrum Pro Komunitnƭ PrƔci'),
(32100, 26897, 'no_lang_code', 'name', 'Mesing (Czechia)'),
(32101, 26898, 'no_lang_code', 'name', 'Hagemann (Czechia)'),
(32102, 26899, 'no_lang_code', 'name', 'ING Corporation (Czechia)'),
(32103, 26900, 'no_lang_code', 'name', 'Eltodo (Czechia)'),
(32104, 26901, 'no_lang_code', 'name', 'Magneton (Czechia)'),
(32105, 26902, 'en', 'name', 'Centre for Higher Education Studies'),
(32106, 26903, 'no_lang_code', 'name', 'Elvac Ekotechnika (Czechia)'),
(32107, 26904, 'no_lang_code', 'name', 'Centre of Civil Engineering (Czechia)'),
(32108, 26904, 'cs', 'name', 'Centrum Stavebního Inženýrství'),
(32109, 26905, 'no_lang_code', 'name', 'Embitron (Czechia)'),
(32110, 26906, 'no_lang_code', 'name', 'Ford Motor Company (Czechia)'),
(32111, 26907, 'no_lang_code', 'name', 'Microrisc (Czechia)'),
(32112, 26908, 'en', 'name', 'Saskatchewan Registered Nurses Association'),
(32113, 26909, 'no_lang_code', 'name', 'Cervenka Consulting (Czechia)'),
(32114, 26910, 'no_lang_code', 'name', 'Enacon (Czechia)'),
(32115, 26911, 'no_lang_code', 'name', 'MikroChem LKT (Czechia)'),
(32116, 26912, 'en', 'name', 'Czech Concrete Society'),
(32117, 26913, 'no_lang_code', 'name', 'Mikropur (Czechia)'),
(32118, 26914, 'no_lang_code', 'name', 'Energie - Stavební a BÔňskÔ (Czechia)'),
(32119, 26915, 'no_lang_code', 'name', 'Milcom (Czechia)'),
(32120, 26916, 'no_lang_code', 'name', 'Ing. Ivo Herman (Czechia)'),
(32121, 26917, 'no_lang_code', 'name', '2N Telecommunications (Czechia)'),
(32122, 26917, 'cs', 'name', '2N Telekomunikace'),
(32123, 26918, 'no_lang_code', 'name', 'Vakar (Czechia)'),
(32124, 26919, 'no_lang_code', 'name', 'ENKI (Czechia)'),
(32125, 26920, 'en', 'name', 'Czech Space Office'),
(32126, 26921, 'en', 'name', 'Czech Medical Association of J.E. Purkyne'),
(32127, 26921, 'cs', 'name', 'ČeskĆ” lĆ©kařskĆ” společnost Jana Evangelisty Purkyně'),
(32128, 26922, 'no_lang_code', 'name', 'Envinet (Czechia)'),
(32129, 26923, 'no_lang_code', 'name', 'Advanced Technology Group (Czechia)'),
(32130, 26924, 'no_lang_code', 'name', 'Envisan GEM (Czechia)'),
(32131, 26925, 'no_lang_code', 'name', 'Envites (Czechia)'),
(32132, 26926, 'no_lang_code', 'name', 'ModelƔrna Liaz (Czechia)'),
(32133, 26927, 'no_lang_code', 'name', 'ABB (Czechia)'),
(32134, 26928, 'en', 'name', 'Czech Society for Oriental Studies'),
(32135, 26929, 'no_lang_code', 'name', 'Miracle (Czechia)'),
(32136, 26930, 'no_lang_code', 'name', 'Eprona (Czechia)'),
(32137, 26931, 'no_lang_code', 'name', 'Electronic Product Services (Czechia)'),
(32138, 26932, 'no_lang_code', 'name', 'AEC (Czechia)'),
(32139, 26933, 'no_lang_code', 'name', 'ERA (Czechia)'),
(32140, 26934, 'cs', 'name', 'ČeskĆ” Společnost AntropologickĆ”'),
(32141, 26935, 'no_lang_code', 'name', 'Monet (Czechia)'),
(32142, 26936, 'no_lang_code', 'name', 'ETC Consulting');
INSERT INTO `ror_settings` VALUES
(32143, 26937, 'no_lang_code', 'name', 'Dürr Systems (Czechia)'),
(32144, 26938, 'cs', 'name', 'ČeskĆ” Společnost ChemickĆ”'),
(32145, 26939, 'no_lang_code', 'name', 'ČeskĆ” BioklimatologickĆ” Společnost (Czechia)'),
(32146, 26940, 'en', 'name', 'Czech Society for New Materials and Technologies'),
(32147, 26941, 'no_lang_code', 'name', 'Euro Support (Czechia)'),
(32148, 26942, 'cs', 'name', 'ČeskĆ” Společnost pro PolitickĆ© Vědy'),
(32149, 26943, 'no_lang_code', 'name', 'Montstav (Czechia)'),
(32150, 26944, 'no_lang_code', 'name', 'Elitex slƩvƔrna (Czechia)'),
(32151, 26945, 'no_lang_code', 'name', 'AGRO-EKO (Czechia)'),
(32152, 26946, 'cs', 'name', 'Institut Pro Studium Literatury'),
(32153, 26947, 'en', 'name', 'Moravian Gallery in Brno'),
(32154, 26948, 'en', 'name', 'Czech Zoological Society'),
(32155, 26949, 'en', 'name', 'Arts and Theatre Institute'),
(32156, 26950, 'no_lang_code', 'name', 'Railway Research Institute (Czechia)'),
(32157, 26950, 'cs', 'name', 'Výzkumný Ústav ŽelezničnĆ­'),
(32158, 26951, 'no_lang_code', 'name', 'Intens (Czechia)'),
(32159, 26952, 'no_lang_code', 'name', 'Evolving Systems Consulting Aerospace (Czechia)'),
(32160, 26953, 'no_lang_code', 'name', 'Aero (Czechia)'),
(32161, 26954, 'no_lang_code', 'name', 'Exbio (Czechia)'),
(32162, 26955, 'no_lang_code', 'name', 'Explosia (Czechia)'),
(32163, 26956, 'no_lang_code', 'name', 'AHT Energetics (Czechia)'),
(32164, 26956, 'cs', 'name', 'AHT Energetika'),
(32165, 26957, 'no_lang_code', 'name', 'Fite (Czechia)'),
(32166, 26958, 'no_lang_code', 'name', 'PPM Factum Research'),
(32167, 26959, 'no_lang_code', 'name', 'Mott MacDonald (Czechia)'),
(32168, 26960, 'no_lang_code', 'name', 'ČeskomoravskĆ” Kolben Daněk (Czechia)'),
(32169, 26961, 'en', 'name', 'Czech Railways'),
(32170, 26962, 'no_lang_code', 'name', 'MSR Engines (Czechia)'),
(32171, 26963, 'no_lang_code', 'name', 'MSV Elektronika (Czechia)'),
(32172, 26964, 'no_lang_code', 'name', 'Akademie (Czechia)'),
(32173, 26965, 'cs', 'name', 'České Ekologické Manažerské Centrum'),
(32174, 26966, 'no_lang_code', 'name', 'MSV Systems (Czechia)'),
(32175, 26967, 'no_lang_code', 'name', 'Ceske Lupkove Zavody (Czechia)'),
(32176, 26968, 'cs', 'name', 'MuzejnĆ­ a VlastivědnĆ” Společnost v Brně'),
(32177, 26969, 'no_lang_code', 'name', 'Hexagon (Czechia)'),
(32178, 26970, 'no_lang_code', 'name', 'Fans (Czechia)'),
(32179, 26971, 'no_lang_code', 'name', 'Akustika Praha (Czechia)'),
(32180, 26972, 'no_lang_code', 'name', 'Invos (Czechia)'),
(32181, 26973, 'cs', 'name', 'Muzeum a Galerie Orlických Hor'),
(32182, 26974, 'en', 'name', 'Czech Moravian Psychological Society'),
(32183, 26975, 'no_lang_code', 'name', 'Alfa Union (Czechia)'),
(32184, 26976, 'cs', 'name', 'Comenius Museum in Přerov'),
(32185, 26977, 'no_lang_code', 'name', 'AMF Reece (Czechia)'),
(32186, 26978, 'en', 'name', 'Engineering Academy of the Czech Republic'),
(32187, 26979, 'no_lang_code', 'name', 'Ammann (Czechia)'),
(32188, 26980, 'no_lang_code', 'name', 'Farmet (Czechia)'),
(32189, 26981, 'no_lang_code', 'name', 'Favea (Czechia)'),
(32190, 26982, 'cs', 'name', 'Muzeum Vysočiny Jihlava'),
(32191, 26983, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Czechia)'),
(32192, 26984, 'cs', 'name', 'ČeskoslovenskĆ” BiologickĆ” Společnost'),
(32193, 26985, 'no_lang_code', 'name', 'Amaranth (Czechia)'),
(32194, 26986, 'en', 'name', 'Institute for Structural Policy'),
(32195, 26987, 'cs', 'name', 'Nadace pro Dějiny kultury ve StřednĆ­ Evropě'),
(32196, 26988, 'en', 'name', 'Czech Union for Nature Conservation'),
(32197, 26989, 'en', 'name', 'National Centre of Social Studies'),
(32198, 26990, 'no_lang_code', 'name', 'ISATech (Czechia)'),
(32199, 26991, 'no_lang_code', 'name', 'National Cell and Tissue Centre (Czechia)'),
(32200, 26992, 'cs', 'name', 'Český Svaz Stavebních Inženýrů'),
(32201, 26993, 'no_lang_code', 'name', 'Fer Kladno (Czechia)'),
(32202, 26994, 'no_lang_code', 'name', 'ApS Brno (Czechia)'),
(32203, 26995, 'en', 'name', 'Czech Association of Scientific and Technical Societies'),
(32204, 26996, 'no_lang_code', 'name', 'JAP Industries (Czechia)'),
(32205, 26997, 'no_lang_code', 'name', 'APS (Czechia)'),
(32206, 26998, 'no_lang_code', 'name', 'Fine (Czechia)'),
(32207, 26999, 'no_lang_code', 'name', 'Chemcomex (Czechia)'),
(32208, 27000, 'no_lang_code', 'name', 'Jawa (Czechia)'),
(32209, 27001, 'en', 'name', 'Union of Czech Mathematicians and Physicists'),
(32210, 27001, 'de', 'name', 'Verein fur freie Vortrage aus der Mathematik und Physik'),
(32211, 27002, 'no_lang_code', 'name', 'ArcelorMittal (Czechia)'),
(32212, 27003, 'no_lang_code', 'name', 'Jerid (Czechia)'),
(32213, 27004, 'en', 'name', 'National Information and Consulting Centre for Culture'),
(32214, 27005, 'no_lang_code', 'name', 'Formdesign (Czechia)'),
(32215, 27006, 'no_lang_code', 'name', 'Skyleader (Czechia)'),
(32216, 27007, 'no_lang_code', 'name', 'Archaia Brno (Czechia)'),
(32217, 27008, 'no_lang_code', 'name', 'Foton (Czechia)'),
(32218, 27009, 'no_lang_code', 'name', 'G Impuls Praha (Czechia)'),
(32219, 27010, 'no_lang_code', 'name', 'Jihlavan (Czechia)'),
(32220, 27011, 'no_lang_code', 'name', 'CKD Blansko Engineering (Czechia)'),
(32221, 27012, 'cs', 'name', 'NÔrodní Klimatický Program'),
(32222, 27013, 'no_lang_code', 'name', 'GaREP (Czechia)'),
(32223, 27014, 'cs', 'name', 'South Moravian Museum in Znojmo'),
(32224, 27015, 'no_lang_code', 'name', 'Gascontrol (Czechia)'),
(32225, 27016, 'no_lang_code', 'name', 'Jihostroj (Czechia)'),
(32226, 27017, 'no_lang_code', 'name', 'CKD Elektrotechnika (Czechia)'),
(32227, 27018, 'no_lang_code', 'name', 'General Electric (Czechia)'),
(32228, 27019, 'no_lang_code', 'name', 'GeneProof (Czechia)'),
(32229, 27020, 'no_lang_code', 'name', 'Generi Biotech (Czechia)'),
(32230, 27021, 'no_lang_code', 'name', 'GeneTiCA (Czechia)'),
(32231, 27022, 'no_lang_code', 'name', 'Aseko (Czechia)'),
(32232, 27023, 'no_lang_code', 'name', 'Juta (Czechia)'),
(32233, 27024, 'no_lang_code', 'name', 'ASICentrum (Czechia)'),
(32234, 27025, 'no_lang_code', 'name', 'Cominfo (Czechia)'),
(32235, 27026, 'no_lang_code', 'name', 'Coming Plus (Czechia)'),
(32236, 27027, 'no_lang_code', 'name', 'Compureg Plzen (Czechia)'),
(32237, 27028, 'cs', 'name', 'Asociace inovačnĆ­ho podnikĆ”nĆ­ ČeskĆ© republiky z.s.'),
(32238, 27028, 'no_lang_code', 'name', 'Association of Innovative Entrepreneurship (Czechia)'),
(32239, 27029, 'no_lang_code', 'name', 'JULI Motorenwerk (Czechia)'),
(32240, 27030, 'en', 'name', 'Association for International Affairs'),
(32241, 27031, 'no_lang_code', 'name', 'Geomedia (Czechia)'),
(32242, 27032, 'no_lang_code', 'name', 'KM Trade (Czechia)'),
(32243, 27033, 'en', 'name', 'National Training Fund'),
(32244, 27034, 'en', 'name', 'National Museum of Agriculture'),
(32245, 27034, 'cs', 'name', 'NĆ”rodnĆ­ zemědělskĆ© muzeum'),
(32246, 27035, 'no_lang_code', 'name', 'GEOtest (Czechia)'),
(32247, 27036, 'cs', 'name', 'GerontologickƩ Centrum'),
(32248, 27037, 'no_lang_code', 'name', 'Koexpro Ostrava (Czechia)'),
(32249, 27038, 'no_lang_code', 'name', 'NDCon (Czechia)'),
(32250, 27039, 'no_lang_code', 'name', 'GF Machinery (Czechia)'),
(32251, 27040, 'no_lang_code', 'name', 'GIS-Geoindustry (Czechia)'),
(32252, 27041, 'cs', 'name', 'Nemocnice PodlesĆ­'),
(32253, 27042, 'no_lang_code', 'name', 'GiTy (Czechia)'),
(32254, 27043, 'no_lang_code', 'name', 'Komfi (Czechia)'),
(32255, 27044, 'no_lang_code', 'name', 'ATAS (Czechia)'),
(32256, 27044, 'cs', 'name', 'ATAS elektromotory NƔchod'),
(32257, 27045, 'no_lang_code', 'name', 'KovƔrna VIVA (Czechia)'),
(32258, 27046, 'no_lang_code', 'name', 'Ateko (Czechia)'),
(32259, 27047, 'no_lang_code', 'name', 'Continental (Czechia)'),
(32260, 27048, 'no_lang_code', 'name', 'OCHI Inženýring (Czechia)'),
(32261, 27049, 'no_lang_code', 'name', 'Demonta Trade (Czechia)'),
(32262, 27050, 'en', 'name', 'Studio of Ecological Models'),
(32263, 27051, 'no_lang_code', 'name', 'Green Gas (Czechia)'),
(32264, 27052, 'no_lang_code', 'name', 'Kovohutě Příbram NĆ”stupnickĆ” (Czechia)'),
(32265, 27053, 'no_lang_code', 'name', 'Atmos (Czechia)'),
(32266, 27054, 'no_lang_code', 'name', 'Kovohutě Rokycany (Czechia)'),
(32267, 27055, 'no_lang_code', 'name', 'OEZ (Czechia)'),
(32268, 27056, 'no_lang_code', 'name', 'CoorsTek (Czechia)'),
(32269, 27057, 'no_lang_code', 'name', 'ATOMA TepelnĆ” Technika (Czechia)'),
(32270, 27058, 'no_lang_code', 'name', 'Cross ZlĆ­n (Czechia)'),
(32271, 27059, 'no_lang_code', 'name', 'KKCG (Czechia)'),
(32272, 27060, 'no_lang_code', 'name', 'Crytur (Czechia)'),
(32273, 27061, 'no_lang_code', 'name', 'KPM Consult (Czechia)'),
(32274, 27062, 'no_lang_code', 'name', 'Ham-Final (Czechia)'),
(32275, 27063, 'no_lang_code', 'name', 'OKsystem (Czechia)'),
(32276, 27064, 'no_lang_code', 'name', 'ON Semiconductor (Czechia)'),
(32277, 27065, 'no_lang_code', 'name', 'CZ Loko (Czechia)'),
(32278, 27066, 'no_lang_code', 'name', 'Oprox (Czechia)'),
(32279, 27067, 'no_lang_code', 'name', 'Attl (Czechia)'),
(32280, 27068, 'no_lang_code', 'name', 'Optaglio (Czechia)'),
(32281, 27069, 'cs', 'name', 'KrajskÔ HygienickÔ Stanice Plzeňského Kraje se Sídlem v Plzni'),
(32282, 27070, 'no_lang_code', 'name', 'Optokon (Czechia)'),
(32283, 27071, 'no_lang_code', 'name', 'Royal HaskoningDHV (Czechia)'),
(32284, 27072, 'no_lang_code', 'name', 'Czech Consult (Czechia)'),
(32285, 27073, 'cs', 'name', 'KrajskĆ” HygienickĆ” Stanice StředočeskĆ©ho Kraje se SĆ­dlem v Praze'),
(32286, 27074, 'no_lang_code', 'name', 'HBH Projekt (Czechia)'),
(32287, 27075, 'en', 'name', 'Czech RE Agency'),
(32288, 27076, 'no_lang_code', 'name', 'Azin (Czechia)'),
(32289, 27077, 'en', 'name', 'DAPHNE Institute of Applied Ecology'),
(32290, 27078, 'cs', 'name', 'KrajskĆ” ZdravotnĆ­'),
(32291, 27079, 'no_lang_code', 'name', 'dataPartner (Czechia)'),
(32292, 27080, 'no_lang_code', 'name', 'Heluz (Czechia)'),
(32293, 27081, 'no_lang_code', 'name', 'B & M InterNets (Czechia)'),
(32294, 27082, 'no_lang_code', 'name', 'Hofmeister (Czechia)'),
(32295, 27083, 'no_lang_code', 'name', 'Decomkov Praha (Czechia)'),
(32296, 27084, 'no_lang_code', 'name', 'Orgrez (Czechia)'),
(32297, 27085, 'no_lang_code', 'name', 'KrÔtký Film Praha (Czechia)'),
(32298, 27086, 'no_lang_code', 'name', 'Dekra (Czechia)'),
(32299, 27087, 'no_lang_code', 'name', 'KRD (Czechia)'),
(32300, 27088, 'cs', 'name', 'HornickĆ© muzeum Příbram'),
(32301, 27088, 'no_lang_code', 'name', 'Mining Museum Pribram'),
(32302, 27089, 'no_lang_code', 'name', 'B&C Dopravnƭ SystƩmy (Czechia)'),
(32303, 27090, 'no_lang_code', 'name', 'Oritest Group (Czechia)'),
(32304, 27091, 'en', 'name', 'Czech and Slovak Crystallographic Association'),
(32305, 27092, 'no_lang_code', 'name', 'Ortep (Czechia)'),
(32306, 27093, 'no_lang_code', 'name', 'Linet (Czechia)'),
(32307, 27094, 'no_lang_code', 'name', 'HOST vydavatelstvĆ­ (Czechia)'),
(32308, 27095, 'no_lang_code', 'name', 'BD Sensors (Czechia)'),
(32309, 27096, 'no_lang_code', 'name', 'LA Composite (Czechia)'),
(32310, 27097, 'no_lang_code', 'name', 'HPH (Czechia)'),
(32311, 27098, 'no_lang_code', 'name', 'Best - Business (Czechia)'),
(32312, 27099, 'no_lang_code', 'name', 'Lasak (Czechia)'),
(32313, 27100, 'no_lang_code', 'name', 'Beta Control (Czechia)'),
(32314, 27101, 'no_lang_code', 'name', 'Hradecký Písek (Czechia)'),
(32315, 27102, 'no_lang_code', 'name', 'OT Energy Services (Czechia)'),
(32316, 27103, 'no_lang_code', 'name', 'Oseva Pro (Czechia)'),
(32317, 27104, 'no_lang_code', 'name', 'Betosan (Czechia)'),
(32318, 27105, 'no_lang_code', 'name', 'Hussite Museum Tabor'),
(32319, 27106, 'no_lang_code', 'name', 'P-D Refractories (Czechia)'),
(32320, 27107, 'no_lang_code', 'name', 'Lenam (Czechia)'),
(32321, 27108, 'no_lang_code', 'name', 'Beznoska (Czechia)'),
(32322, 27109, 'no_lang_code', 'name', 'Letecke Pristroje Praha (Czechia)'),
(32323, 27110, 'no_lang_code', 'name', 'Deona Medi (Czechia)'),
(32324, 27111, 'no_lang_code', 'name', 'Level (Czechia)'),
(32325, 27112, 'cs', 'name', 'Observatory and planetarium ČeskĆ© Budějovice and Klet'' Observatory'),
(32326, 27113, 'no_lang_code', 'name', 'Lias Vintířov (Czechia)'),
(32327, 27114, 'cs', 'name', 'Observatory Úpice'),
(32328, 27115, 'no_lang_code', 'name', 'Business Innovation Centre (Czechia)'),
(32329, 27115, 'cs', 'name', 'PodnikatelskĆ© InovačnĆ­ Centrum'),
(32330, 27116, 'no_lang_code', 'name', 'HVM Plasma (Czechia)'),
(32331, 27117, 'cs', 'name', 'PamƔtnƭk NƔrodnƭho Pƭsemnictvƭ'),
(32332, 27118, 'no_lang_code', 'name', 'Litmas (Czechia)'),
(32333, 27119, 'no_lang_code', 'name', 'BIOPHARM (Czechia)'),
(32334, 27120, 'no_lang_code', 'name', 'LOM Praha (Czechia)'),
(32335, 27121, 'no_lang_code', 'name', 'Lƶw & Spol (Czechia)'),
(32336, 27122, 'no_lang_code', 'name', 'Patron Bohemia (Czechia)'),
(32337, 27123, 'no_lang_code', 'name', 'Bioveta (Czechia)'),
(32338, 27124, 'no_lang_code', 'name', 'LučebnĆ­ ZĆ”vody Draslovka (Czechia)'),
(32339, 27125, 'no_lang_code', 'name', 'Pegas Nonwovens (Czechia)'),
(32340, 27126, 'no_lang_code', 'name', 'Hydrosystem Project (Czechia)'),
(32341, 27127, 'no_lang_code', 'name', 'BLOCK (Czechia)'),
(32342, 27128, 'cs', 'name', 'HygienickĆ” stanice hlavnĆ­ho města Prahy'),
(32343, 27129, 'no_lang_code', 'name', 'Blumenbecker (Czechia)'),
(32344, 27130, 'no_lang_code', 'name', 'BMT Medical Technology (Czechia)'),
(32345, 27131, 'no_lang_code', 'name', 'Applus+ IDIADA (Czechia)'),
(32346, 27132, 'no_lang_code', 'name', 'MateriÔlový A Metalurgický Výzkum (Czechia)'),
(32347, 27133, 'no_lang_code', 'name', 'Bochemie (Czechia)'),
(32348, 27134, 'no_lang_code', 'name', 'SQS Fiber Optics (Czechia)'),
(32349, 27134, 'cs', 'name', 'SQS VlƔknovƔ optika'),
(32350, 27135, 'no_lang_code', 'name', 'Precheza (Czechia)'),
(32351, 27136, 'no_lang_code', 'name', 'Borcad (Czechia)'),
(32352, 27137, 'no_lang_code', 'name', 'MathAn Praha (Czechia)'),
(32353, 27138, 'cs', 'name', 'Diagnostický Ústav pro MlÔdež'),
(32354, 27139, 'no_lang_code', 'name', 'BorsodChem (Czechia)'),
(32355, 27140, 'no_lang_code', 'name', 'STAPPA mix (Czechia)'),
(32356, 27141, 'en', 'name', 'Prague Botanical Garden'),
(32357, 27142, 'no_lang_code', 'name', 'STARMANS electronics (Czechia)'),
(32358, 27143, 'cs', 'name', 'Matice MoravskĆ”'),
(32359, 27144, 'no_lang_code', 'name', 'Pilsen Tools (Czechia)'),
(32360, 27145, 'no_lang_code', 'name', 'MBT Metal (Czechia)'),
(32361, 27146, 'no_lang_code', 'name', 'Brano Group (Czechia)'),
(32362, 27147, 'no_lang_code', 'name', 'Pneukom (Czechia)'),
(32363, 27148, 'no_lang_code', 'name', 'Dias Turnov (Czechia)'),
(32364, 27149, 'cs', 'name', 'HlasovƩ centrum Praha'),
(32365, 27149, 'no_lang_code', 'name', 'Medical Healthcom (Czechia)'),
(32366, 27150, 'no_lang_code', 'name', 'Medical Technologies (Czechia)'),
(32367, 27151, 'no_lang_code', 'name', 'Dicom (Czechia)'),
(32368, 27152, 'no_lang_code', 'name', 'PoličskĆ© StrojĆ­rny (Czechia)'),
(32369, 27153, 'no_lang_code', 'name', 'PolyComp (Czechia)'),
(32370, 27154, 'no_lang_code', 'name', 'Chepos (Czechia)'),
(32371, 27155, 'en', 'name', 'State Institute for Drug Control'),
(32372, 27155, 'cs', 'name', 'StĆ”tnĆ­ Ústav pro Kontrolu LĆ©Äiv'),
(32373, 27156, 'en', 'name', 'Institute of Applied Mechanics'),
(32374, 27156, 'de', 'name', 'Instituts für angewandte Mechanik'),
(32375, 27157, 'no_lang_code', 'name', 'Polygra (Czechia)'),
(32376, 27158, 'no_lang_code', 'name', 'BTL ZdravotnickĆ” Technika (Czechia)'),
(32377, 27159, 'no_lang_code', 'name', 'Stavexis (Czechia)'),
(32378, 27160, 'no_lang_code', 'name', 'Stavus (Czechia)'),
(32379, 27161, 'en', 'name', 'Czech Association of Geophysicists'),
(32380, 27162, 'no_lang_code', 'name', 'Hop Research Institute (Czechia)'),
(32381, 27163, 'no_lang_code', 'name', 'Disk (Czechia)'),
(32382, 27164, 'no_lang_code', 'name', 'Camea (Czechia)'),
(32383, 27165, 'no_lang_code', 'name', 'STEM (Czechia)'),
(32384, 27166, 'no_lang_code', 'name', 'Polymer Institute Brno (Czechia)'),
(32385, 27167, 'en', 'name', 'Sports Research Institute Of Czech Armed Forces'),
(32386, 27168, 'no_lang_code', 'name', 'Siemens (Czechia)'),
(32387, 27169, 'no_lang_code', 'name', 'Stomix (Czechia)'),
(32388, 27170, 'no_lang_code', 'name', 'Pontex (Czechia)'),
(32389, 27171, 'no_lang_code', 'name', 'Vyrtych (Czechia)'),
(32390, 27172, 'no_lang_code', 'name', 'PortƔl (Czechia)'),
(32391, 27173, 'cs', 'name', 'Ústav ArcheologickĆ© PamĆ”tkovĆ© PĆ©Äe SeverozĆ”padnĆ­ch Čech'),
(32392, 27174, 'cs', 'name', 'Ústav ArcheologickĆ© PamĆ”tkovĆ© PĆ©Äe StřednĆ­ch Čech'),
(32393, 27175, 'no_lang_code', 'name', 'Dormer Pramet Tools (Czechia)'),
(32394, 27176, 'cs', 'name', 'StřednĆ­ uměleckoprÅÆmyslovĆ” Å”kola sklÔřskĆ” ValaÅ”skĆ© MeziÅ™Ć­ÄĆ­'),
(32395, 27177, 'no_lang_code', 'name', 'Prefa Brno (Czechia)'),
(32396, 27178, 'cs', 'name', 'StředočeskĆ© Muzeum v RoztokĆ”ch u Prahy'),
(32397, 27179, 'no_lang_code', 'name', 'Strix Chomutov (Czechia)'),
(32398, 27180, 'no_lang_code', 'name', 'Cogebi (Czechia)'),
(32399, 27181, 'no_lang_code', 'name', 'Princip (Czechia)'),
(32400, 27182, 'no_lang_code', 'name', 'PrimeCell Therapeutics (Czechia)'),
(32401, 27183, 'no_lang_code', 'name', 'PROCES - Centre for Municipal and Regional Development (Czechia)'),
(32402, 27184, 'en', 'name', 'Research and Breeding Institute of Pomology Holovousy'),
(32403, 27185, 'no_lang_code', 'name', 'ProjectSoft (Czechia)'),
(32404, 27186, 'no_lang_code', 'name', 'RPC Promens (Czechia)'),
(32405, 27187, 'no_lang_code', 'name', 'ProSpon (Czechia)'),
(32406, 27188, 'no_lang_code', 'name', 'Prototypa (Czechia)'),
(32407, 27189, 'no_lang_code', 'name', 'Selton (Czechia)'),
(32408, 27189, 'cs', 'name', 'Výzkumné Centrum Selton'),
(32409, 27190, 'no_lang_code', 'name', 'Doosan (Czechia)'),
(32410, 27191, 'no_lang_code', 'name', 'STV Group (Czechia)'),
(32411, 27192, 'no_lang_code', 'name', 'Sudop Praha (Czechia)'),
(32412, 27193, 'no_lang_code', 'name', 'Summa (Czechia)'),
(32413, 27194, 'no_lang_code', 'name', 'DopravnĆ­ RozvojovĆ© Středisko (Czechia)'),
(32414, 27195, 'no_lang_code', 'name', 'SurfaceTreat (Czechia)'),
(32415, 27196, 'no_lang_code', 'name', 'PrvnĆ­ ŽelezÔřskĆ” Společnost Kladno (Czechia)'),
(32416, 27197, 'en', 'name', 'Institute for Environmental Policy'),
(32417, 27198, 'en', 'name', 'Association of Chemical Industry of the Czech Republic'),
(32418, 27198, 'cs', 'name', 'Svaz chemického průmyslu České republiky'),
(32419, 27199, 'no_lang_code', 'name', 'Dufonev (Czechia)'),
(32420, 27200, 'en', 'name', 'Centre for International Cooperation in Education'),
(32421, 27201, 'en', 'name', 'Research Institute of Inorganic Chemistry'),
(32422, 27201, 'cs', 'name', 'Výzkumný ústav anorganické chemie, a.s.'),
(32423, 27202, 'en', 'name', 'Confederation of Industry of the Czech Republic'),
(32424, 27203, 'no_lang_code', 'name', 'SVCS Process Innovation (Czechia)'),
(32425, 27204, 'en', 'name', 'Research Institute of Geodesy, Topography and Cartography'),
(32426, 27205, 'no_lang_code', 'name', 'Delinfo (Czechia)'),
(32427, 27206, 'no_lang_code', 'name', 'EMP (Czechia)'),
(32428, 27207, 'no_lang_code', 'name', 'Rcd Radiokomunikace (Czechia)'),
(32429, 27208, 'no_lang_code', 'name', 'EBIS (Czechia)'),
(32430, 27209, 'no_lang_code', 'name', 'Research Institute of Binding Materials Prague (Czechia)'),
(32431, 27209, 'cs', 'name', 'Výzkumný ústav maltovin Praha'),
(32432, 27210, 'no_lang_code', 'name', 'SVM Microwaves (Czechia)'),
(32433, 27211, 'no_lang_code', 'name', 'ECO Trend (Czechia)'),
(32434, 27212, 'no_lang_code', 'name', 'SVOS (Czechia)'),
(32435, 27213, 'no_lang_code', 'name', 'UVB Technik (Czechia)'),
(32436, 27214, 'no_lang_code', 'name', 'Ecofluid Group (Czechia)'),
(32437, 27215, 'no_lang_code', 'name', 'Ecosond (Czechia)'),
(32438, 27216, 'no_lang_code', 'name', 'Reflex (Czechia)'),
(32439, 27217, 'no_lang_code', 'name', 'Symbiom (Czechia)'),
(32440, 27218, 'no_lang_code', 'name', 'Research Institute of Organic Syntheses (Czechia)'),
(32441, 27218, 'cs', 'name', 'Výzkumný Ústav Organických Syntéz'),
(32442, 27219, 'no_lang_code', 'name', 'Edip (Czechia)'),
(32443, 27220, 'no_lang_code', 'name', 'Synthesia (Czechia)'),
(32444, 27221, 'en', 'name', 'Regional Museum in Teplice'),
(32445, 27221, 'cs', 'name', 'RegionƔlnƭ muzeum v Teplicƭch'),
(32446, 27222, 'cs', 'name', 'Vysoké Mýto Regional Museum'),
(32447, 27223, 'no_lang_code', 'name', 'Synthos Group (Czechia)'),
(32448, 27224, 'no_lang_code', 'name', 'Eeip (Czechia)'),
(32449, 27225, 'no_lang_code', 'name', 'Vakos XT (Czechia)'),
(32450, 27226, 'no_lang_code', 'name', 'Řepařský Institut Semčice (Czechia)'),
(32451, 27227, 'no_lang_code', 'name', 'Vakuum Praha (Czechia)'),
(32452, 27228, 'no_lang_code', 'name', 'Sysnet (Czechia)'),
(32453, 27229, 'no_lang_code', 'name', 'T-CZ (Czechia)'),
(32454, 27230, 'no_lang_code', 'name', 'Retia (Czechia)'),
(32455, 27231, 'no_lang_code', 'name', 'EnerGoConsult (Czechia)'),
(32456, 27232, 'cs', 'name', 'ValaÅ”skĆ© Muzeum v Přírodě'),
(32457, 27233, 'no_lang_code', 'name', 'ƚVP Běchovice (Czechia)'),
(32458, 27234, 'no_lang_code', 'name', 'Variel (Czechia)'),
(32459, 27235, 'no_lang_code', 'name', 'Vinci (Czechia)'),
(32460, 27236, 'no_lang_code', 'name', 'Research Institute for Brown Coal (Czechia)'),
(32461, 27236, 'cs', 'name', 'Výzkumný Ćŗstav pro hnědĆ© uhlĆ­ a.s.'),
(32462, 27237, 'no_lang_code', 'name', 'T-MAPY (Czechia)'),
(32463, 27238, 'no_lang_code', 'name', 'Rieter (Czechia)'),
(32464, 27239, 'no_lang_code', 'name', 'Rigaku Innovative Technologies Europe (Czechia)'),
(32465, 27240, 'no_lang_code', 'name', 'Ekola (Czechia)'),
(32466, 27241, 'no_lang_code', 'name', 'Pneuven (Czechia)'),
(32467, 27242, 'no_lang_code', 'name', 'VF (Czechia)'),
(32468, 27243, 'no_lang_code', 'name', 'Vidia (Czechia)'),
(32469, 27244, 'no_lang_code', 'name', 'Tanger computersystems'),
(32470, 27245, 'en', 'name', 'Bee Research Institute'),
(32471, 27245, 'nl', 'name', 'Institut für Bienenforschung'),
(32472, 27246, 'no_lang_code', 'name', 'Ekotoxa (Czechia)'),
(32473, 27247, 'en', 'name', 'Technical museum in Brno'),
(32474, 27247, 'cs', 'name', 'TechnickĆ© muzeum v Brně'),
(32475, 27248, 'no_lang_code', 'name', 'Romotop (Czechia)'),
(32476, 27249, 'no_lang_code', 'name', 'Ekowatt (Czechia)'),
(32477, 27250, 'no_lang_code', 'name', 'Technical services for air protection Prague (Czechia)'),
(32478, 27250, 'cs', 'name', 'Technické služby ochrany ovzduŔí Praha'),
(32479, 27251, 'no_lang_code', 'name', 'Elceram (Czechia)'),
(32480, 27252, 'no_lang_code', 'name', 'RS Dynamics (Czechia)'),
(32481, 27253, 'no_lang_code', 'name', 'Vision Consulting Automotive (Czechia)'),
(32482, 27254, 'no_lang_code', 'name', 'WAK System (Czechia)'),
(32483, 27255, 'no_lang_code', 'name', 'Tedom (Czechia)'),
(32484, 27256, 'no_lang_code', 'name', 'VĆ­tkovice Machinery Group (Czechia)'),
(32485, 27257, 'no_lang_code', 'name', 'VƭtkovickƩ SlƩvƔrny (Czechia)'),
(32486, 27258, 'no_lang_code', 'name', 'Wastech (Czechia)'),
(32487, 27259, 'no_lang_code', 'name', 'Sako Brno (Czechia)'),
(32488, 27260, 'cs', 'name', 'VlastivědnĆ© Muzeum Dr. HostaÅ”e v Klatovech'),
(32489, 27261, 'no_lang_code', 'name', 'Telematix Group (Czechia)'),
(32490, 27262, 'no_lang_code', 'name', 'Webnode (Czechia)'),
(32491, 27263, 'en', 'name', 'Regional Museum in Olomouc'),
(32492, 27263, 'cs', 'name', 'VlastivědnĆ© Muzeum v Olomouci'),
(32493, 27264, 'no_lang_code', 'name', 'Sand Team (Czechia)'),
(32494, 27265, 'no_lang_code', 'name', 'Vodni Zdroje (Czechia)'),
(32495, 27266, 'no_lang_code', 'name', 'Temex (Czechia)'),
(32496, 27267, 'no_lang_code', 'name', 'Zero Liquid Discharge (Czechia)'),
(32497, 27268, 'no_lang_code', 'name', 'Tenza (Czechia)'),
(32498, 27269, 'no_lang_code', 'name', 'Satturn HoleŔov (Czechia)'),
(32499, 27270, 'no_lang_code', 'name', 'Termizo (Czechia)'),
(32500, 27271, 'no_lang_code', 'name', 'VodohospodÔřský Rozvoj a Výstavba'),
(32501, 27272, 'no_lang_code', 'name', 'TES Vsetƍn (Czechia)'),
(32502, 27273, 'no_lang_code', 'name', 'Tesla Blatna (Czechia)'),
(32503, 27274, 'no_lang_code', 'name', 'VOP (Czechia)'),
(32504, 27275, 'no_lang_code', 'name', 'TESLA (Czechia)'),
(32505, 27276, 'no_lang_code', 'name', 'SBP Consult'),
(32506, 27277, 'no_lang_code', 'name', 'Military Research Institute'),
(32507, 27277, 'cs', 'name', 'Vojenský Výzkumný Ústav'),
(32508, 27278, 'no_lang_code', 'name', 'Edinburgh Instruments (United Kingdom)'),
(32509, 27279, 'no_lang_code', 'name', 'VR Group (Czechia)'),
(32510, 27280, 'no_lang_code', 'name', 'ZĆ”vod AutomatizačnĆ­ Techniky (Czechia)'),
(32511, 27281, 'no_lang_code', 'name', 'Evotec (United Kingdom)'),
(32512, 27282, 'no_lang_code', 'name', 'VRL Praha (Czechia)'),
(32513, 27283, 'no_lang_code', 'name', 'Tieto (Czechia)'),
(32514, 27284, 'no_lang_code', 'name', 'TL Ultralight (Czechia)'),
(32515, 27285, 'no_lang_code', 'name', 'Tonak (Czechia)'),
(32516, 27286, 'no_lang_code', 'name', 'TOS Kuřim (Czechia)'),
(32517, 27287, 'no_lang_code', 'name', 'TOS Varnsdorf (Czechia)'),
(32518, 27288, 'no_lang_code', 'name', 'Vuab Pharma (Czechia)'),
(32519, 27289, 'no_lang_code', 'name', 'SE-MI Technology (Czechia)'),
(32520, 27290, 'no_lang_code', 'name', 'Toshulin (Czechia)'),
(32521, 27291, 'cs', 'name', 'VŔeobecnÔ UverovÔ Banka'),
(32522, 27292, 'en', 'name', 'Public Health Institute Ostrava'),
(32523, 27292, 'cs', 'name', 'ZdravotnĆ­ Ćŗstav se sĆ­dlem v Ostravě'),
(32524, 27293, 'no_lang_code', 'name', 'Trakce (Czechia)'),
(32525, 27294, 'no_lang_code', 'name', 'VUC Praha (Czechia)'),
(32526, 27295, 'no_lang_code', 'name', 'Tramaz (Czechia)'),
(32527, 27296, 'no_lang_code', 'name', 'VUES Brno (Czechia)'),
(32528, 27297, 'no_lang_code', 'name', 'Research Institute for Pharmacy and Biochemistry (Czechia)'),
(32529, 27297, 'cs', 'name', 'Výzkumný Ustav pro Farmacii a Biochemii'),
(32530, 27298, 'no_lang_code', 'name', 'VÚHŽ (Czechia)'),
(32531, 27299, 'no_lang_code', 'name', 'SHM (Czechia)'),
(32532, 27300, 'no_lang_code', 'name', 'Vuje (Czechia)'),
(32533, 27301, 'no_lang_code', 'name', 'Dakel (Czechia)'),
(32534, 27302, 'no_lang_code', 'name', 'Trexima (Czechia)'),
(32535, 27303, 'en', 'name', 'Jewish Museum in Prague'),
(32536, 27303, 'cs', 'name', 'Židovské muzeum v Praze'),
(32537, 27304, 'no_lang_code', 'name', 'ZKL (Czechia)'),
(32538, 27305, 'no_lang_code', 'name', 'Tribotec (Czechia)'),
(32539, 27306, 'no_lang_code', 'name', 'T-Soft (Czechia)'),
(32540, 27307, 'en', 'name', 'Prague Research Institute of Railway Rolling Stock'),
(32541, 27307, 'no_lang_code', 'name', 'VUKV (Czechia)'),
(32542, 27308, 'no_lang_code', 'name', 'Tajmac-zps (Czechia)'),
(32543, 27309, 'no_lang_code', 'name', 'SIGMA Výzkumný a Vývojový Ústav (Czechia)'),
(32544, 27310, 'no_lang_code', 'name', 'Watrad (Czechia)'),
(32545, 27311, 'en', 'name', 'Třinec Iron and Steel Works'),
(32546, 27311, 'no_lang_code', 'name', 'TřineckĆ© ŽelezĆ”rny (Czechia)'),
(32547, 27312, 'no_lang_code', 'name', 'Zbrojovka VsetĆ­n (Czechia)'),
(32548, 27313, 'no_lang_code', 'name', 'SilničnĆ­ Vývoj (Czechia)'),
(32549, 27314, 'no_lang_code', 'name', 'Trumf International (Czechia)'),
(32550, 27315, 'no_lang_code', 'name', 'Trystom (Czechia)'),
(32551, 27316, 'no_lang_code', 'name', 'VUP Medical (Czechia)'),
(32552, 27316, 'cs', 'name', 'Výzkumný Ústav Pletařský'),
(32553, 27317, 'no_lang_code', 'name', 'Research Institute for Building Materials (Czechia)'),
(32554, 27317, 'cs', 'name', 'Výzkumný ústav stavebních hmot,a.s.'),
(32555, 27318, 'en', 'name', 'Research Institute of Textile Machinery'),
(32556, 27318, 'no_lang_code', 'name', 'VUTS (Czechia)'),
(32557, 27319, 'no_lang_code', 'name', 'Crystalite Bohemia (Czechia)'),
(32558, 27320, 'no_lang_code', 'name', 'ŽĎAS (Czechia)'),
(32559, 27321, 'no_lang_code', 'name', 'Å koda (Czechia)'),
(32560, 27322, 'no_lang_code', 'name', 'TTC Telekomunikace (Czechia)'),
(32561, 27323, 'no_lang_code', 'name', 'VVUU (Czechia)'),
(32562, 27324, 'no_lang_code', 'name', 'VVV Most (Czechia)'),
(32563, 27325, 'no_lang_code', 'name', 'CereProc (United Kingdom)'),
(32564, 27326, 'no_lang_code', 'name', 'TÜV SÜD (Czechia)'),
(32565, 27327, 'en', 'name', 'East Bohemian Museum in Pardubice'),
(32566, 27327, 'cs', 'name', 'VýchodočeskĆ© muzeum v PardubicĆ­ch'),
(32567, 27328, 'en', 'name', 'Slamka Consulting'),
(32568, 27329, 'no_lang_code', 'name', 'Ujp Praha (Czechia)'),
(32569, 27330, 'no_lang_code', 'name', 'Daiichi Sankyo (United Kingdom)'),
(32570, 27331, 'no_lang_code', 'name', 'UniControls (Czechia)'),
(32571, 27332, 'no_lang_code', 'name', 'SatisGeo (Czechia)'),
(32572, 27333, 'en', 'name', 'Alaska Fisheries Development Foundation'),
(32573, 27334, 'no_lang_code', 'name', 'Unit Plus (Czechia)'),
(32574, 27335, 'en', 'name', 'Trauma Hospital of Brno'),
(32575, 27335, 'cs', 'name', 'ÚrazovÔ nemocnice'),
(32576, 27336, 'no_lang_code', 'name', 'Å meral Brno (Czechia)'),
(32577, 27337, 'no_lang_code', 'name', 'URC Systems (Czechia)'),
(32578, 27338, 'no_lang_code', 'name', 'SMS (Czechia)'),
(32579, 27339, 'no_lang_code', 'name', 'Sobriety (Czechia)'),
(32580, 27339, 'cs', 'name', 'Střízlivost'),
(32581, 27340, 'no_lang_code', 'name', 'ÚRS Praha (Czechia)'),
(32582, 27341, 'en', 'name', 'Alaska Native Harbor Seal Commission'),
(32583, 27342, 'no_lang_code', 'name', 'International Data Group (United States)'),
(32584, 27343, 'no_lang_code', 'name', 'Software602 (Czechia)'),
(32585, 27344, 'en', 'name', 'Aleut Marine Mammal Commission'),
(32586, 27345, 'en', 'name', 'Ecology Action'),
(32587, 27346, 'en', 'name', 'Alice Ferguson Foundation'),
(32588, 27347, 'en', 'name', 'Ecotrust'),
(32589, 27348, 'no_lang_code', 'name', 'SOMA Engineering (Czechia)'),
(32590, 27349, 'no_lang_code', 'name', 'Seawater Greenhouse (United Kingdom)'),
(32591, 27350, 'no_lang_code', 'name', 'Alu Like'),
(32592, 27351, 'no_lang_code', 'name', 'Soning (Czechia)'),
(32593, 27352, 'en', 'name', 'American Littoral Society'),
(32594, 27353, 'en', 'name', 'Elkhorn Slough Foundation'),
(32595, 27354, 'no_lang_code', 'name', 'Hakel (Czechia)'),
(32596, 27355, 'no_lang_code', 'name', 'Speel Praha (Czechia)'),
(32597, 27356, 'en', 'name', 'American Rivers'),
(32598, 27357, 'en', 'name', 'Association of the Innovation Center of Electronics'),
(32599, 27358, 'en', 'name', 'Rhode Island Department of Environmental Management'),
(32600, 27359, 'en', 'name', 'Alaska Seafood Marketing Institute'),
(32601, 27360, 'no_lang_code', 'name', 'Společnost pro Obnovu Vesnice a MalĆ©ho Města'),
(32602, 27361, 'no_lang_code', 'name', 'Environmental Technologies (United States)'),
(32603, 27362, 'en', 'name', 'Erie MetroParks'),
(32604, 27363, 'no_lang_code', 'name', 'Lodestar Research Corporation (United States)'),
(32605, 27364, 'no_lang_code', 'name', 'Sasol (United Kingdom)'),
(32606, 27365, 'no_lang_code', 'name', 'Intertek (United Kingdom)'),
(32607, 27366, 'en', 'name', 'KrkonoŔe Mountains National Park'),
(32608, 27366, 'cs', 'name', 'SprÔva KrkonoŔského NÔrodního Parku'),
(32609, 27367, 'cs', 'name', 'Å umava National Park'),
(32610, 27368, 'no_lang_code', 'name', 'Spur (Czechia)'),
(32611, 27369, 'en', 'name', 'Anacostia Watershed Society'),
(32612, 27370, 'en', 'name', 'Exploring New Horizons'),
(32613, 27371, 'en', 'name', 'Annapolis Maritime Museum'),
(32614, 27372, 'en', 'name', 'Puget Sound Restoration Fund'),
(32615, 27373, 'en', 'name', 'Farallones Marine Sanctuary Association'),
(32616, 27374, 'en', 'name', 'Arizona State Land Department'),
(32617, 27375, 'en', 'name', 'Department of Conservation and Recreation'),
(32618, 27376, 'no_lang_code', 'name', 'Regenstrief Institute'),
(32619, 27377, 'en', 'name', 'Recreation and Conservation Office'),
(32620, 27378, 'en', 'name', 'Reef Environmental Education Foundation'),
(32621, 27379, 'en', 'name', 'Association of Environmental and Resource Economists'),
(32622, 27380, 'en', 'name', 'Massachusetts Energy and Environmental Affairs'),
(32623, 27381, 'en', 'name', 'Pennsylvania Fish and Boat Commission'),
(32624, 27382, 'en', 'name', 'Massachusetts Department of Fish & Game'),
(32625, 27383, 'no_lang_code', 'name', 'Fishmaster (United States)'),
(32626, 27384, 'no_lang_code', 'name', 'CompX (United States)'),
(32627, 27385, 'en', 'name', 'Gulf of Maine Association'),
(32628, 27386, 'no_lang_code', 'name', 'Micronesia Conservation Trust'),
(32629, 27387, 'en', 'name', 'FishAmerica Foundation'),
(32630, 27388, 'en', 'name', 'Restore America''s Estuaries'),
(32631, 27389, 'en', 'name', 'Bering Sea Fishermen’s Association'),
(32632, 27390, 'en', 'name', 'Coastal Resources Management Council'),
(32633, 27391, 'en', 'name', 'Transportation Corridor Agencies'),
(32634, 27392, 'en', 'name', 'Boxerwood Nature Center and Woodland Garden'),
(32635, 27393, 'en', 'name', 'Salish Sea Expeditions'),
(32636, 27394, 'en', 'name', 'Alaska Department of Military and Veterans Affairs'),
(32637, 27395, 'en', 'name', 'EarthCorps'),
(32638, 27396, 'en', 'name', 'Washington Military Department'),
(32639, 27397, 'en', 'name', 'Bristol Bay Native Association'),
(32640, 27398, 'en', 'name', 'California Coastal Commission'),
(32641, 27399, 'en', 'name', 'San Diego Unified Port District'),
(32642, 27400, 'en', 'name', 'Pacific Marine Mammal Center'),
(32643, 27401, 'en', 'name', 'Oregon Department of Geology and Mineral Industries'),
(32644, 27402, 'en', 'name', 'Resource Conservation District of Santa Cruz County'),
(32645, 27403, 'en', 'name', 'Minnesota Department of Natural Resources'),
(32646, 27404, 'en', 'name', 'Save the Bay'),
(32647, 27405, 'en', 'name', 'Save the Whales'),
(32648, 27406, 'en', 'name', 'Mississippi Alabama Sea Grant Consortium'),
(32649, 27407, 'en', 'name', 'Wright-Patterson Air Force Base'),
(32650, 27408, 'en', 'name', 'Sea Research Foundation'),
(32651, 27409, 'en', 'name', 'California Marine Sanctuary Foundation'),
(32652, 27410, 'en', 'name', 'Maritime Gloucester'),
(32653, 27411, 'en', 'name', 'Golden Gate National Parks Conservancy'),
(32654, 27412, 'en', 'name', 'Monk Seal Foundation'),
(32655, 27413, 'en', 'name', 'Canaan Valley Institute'),
(32656, 27414, 'en', 'name', 'Seacoast Science Center'),
(32657, 27415, 'en', 'name', 'SeaWeb'),
(32658, 27416, 'en', 'name', 'Great Lakes Commission'),
(32659, 27417, 'en', 'name', 'Carmel Unified School District'),
(32660, 27418, 'en', 'name', 'Cascadia Research Collective'),
(32661, 27419, 'no_lang_code', 'name', 'Mrag Americas (United States)'),
(32662, 27420, 'en', 'name', 'Hudson River Valley Greenway'),
(32663, 27421, 'en', 'name', 'Shedd Aquarium'),
(32664, 27422, 'en', 'name', 'Center for Alaskan Coastal Studies'),
(32665, 27423, 'en', 'name', 'Children of the Sea'),
(32666, 27423, 'no_lang_code', 'name', 'Na Kama Kai'),
(32667, 27424, 'en', 'name', 'Society for the Protection of New Hampshire Forests'),
(32668, 27425, 'en', 'name', 'South Atlantic Fishery Management Council'),
(32669, 27426, 'en', 'name', 'Southwest Wetlands Interpretive Association'),
(32670, 27427, 'en', 'name', 'National Estuarine Research Reserve Association'),
(32671, 27427, 'es', 'name', 'Sistema Nacional de Reservas de Investigación Estuarina'),
(32672, 27428, 'en', 'name', 'St.Tammany Parish Government'),
(32673, 27429, 'en', 'name', 'National Fish and Wildlife Foundation'),
(32674, 27430, 'en', 'name', 'Gulf & South Atlantic Fisheries Foundation'),
(32675, 27431, 'en', 'name', 'Oyster Recovery Partnership'),
(32676, 27432, 'en', 'name', 'Chesapeake Bay Foundation'),
(32677, 27433, 'en', 'name', 'National Fisheries Institute'),
(32678, 27434, 'en', 'name', 'National Marine Life Center'),
(32679, 27435, 'en', 'name', 'Gulf and Caribbean Fisheries Institute'),
(32680, 27436, 'en', 'name', 'Center for Social and Environmental Stewardship'),
(32681, 27437, 'en', 'name', 'Gulf of Alaska Coastal Communities Coalition'),
(32682, 27438, 'no_lang_code', 'name', 'Safina (Czechia)'),
(32683, 27439, 'en', 'name', 'Gulf of Alaska Keeper'),
(32684, 27440, 'en', 'name', 'Gulf of Maine Lobster Foundation'),
(32685, 27441, 'en', 'name', 'Gulf of Mexico Foundation'),
(32686, 27442, 'en', 'name', 'Michigan State Police'),
(32687, 27443, 'no_lang_code', 'name', 'Hanalei Watershed Hui'),
(32688, 27444, 'en', 'name', 'National Maritime Museum of the Gulf of Mexico'),
(32689, 27445, 'en', 'name', 'Buzzards Bay Coalition'),
(32690, 27446, 'en', 'name', 'Hawaii Nature Center'),
(32691, 27447, 'en', 'name', 'Delaware Department of Natural Resources and Environmental Control'),
(32692, 27448, 'en', 'name', 'Hawaii Seafood Council'),
(32693, 27449, 'en', 'name', 'Texas Marine Mammal Stranding Network'),
(32694, 27450, 'en', 'name', 'Texas Parks and Wildlife Department'),
(32695, 27451, 'en', 'name', 'Hawai''i Wildlife Fund'),
(32696, 27452, 'en', 'name', 'Illinois Department of Natural Resources'),
(32697, 27453, 'no_lang_code', 'name', 'ET International (United States)'),
(32698, 27454, 'en', 'name', 'Bay Institute'),
(32699, 27455, 'en', 'name', 'Louisiana Department of Natural Resources'),
(32700, 27456, 'en', 'name', 'California State Coastal Conservancy'),
(32701, 27457, 'no_lang_code', 'name', 'Northeastern Regional Association of Coastal and Ocean Observing Systems (United States)'),
(32702, 27458, 'en', 'name', 'Louisiana Coastal Protection and Restoration Authority'),
(32703, 27459, 'en', 'name', 'Coastal Society'),
(32704, 27460, 'en', 'name', 'Coastal States Organization'),
(32705, 27461, 'en', 'name', 'Elizabeth River Project'),
(32706, 27462, 'en', 'name', 'New England Fishery Management Council'),
(32707, 27463, 'en', 'name', 'Coastal States Stewardship Foundation'),
(32708, 27464, 'en', 'name', 'Florida Aquarium'),
(32709, 27465, 'en', 'name', 'New Hampshire Lakes Association'),
(32710, 27466, 'no_lang_code', 'name', 'Polymath Research (United States)'),
(32711, 27467, 'no_lang_code', 'name', 'Nova Photonics (United States)'),
(32712, 27468, 'en', 'name', 'New Jersey Sea Grant Consortium'),
(32713, 27469, 'en', 'name', 'New York State Department of Environmental Conservation'),
(32714, 27470, 'en', 'name', 'Herring Gut Learning Center'),
(32715, 27471, 'en', 'name', 'Marine Mammal Center'),
(32716, 27472, 'en', 'name', 'Hawaiian Islands Land Trust'),
(32717, 27473, 'en', 'name', 'Ocean Conservancy'),
(32718, 27474, 'en', 'name', 'Humane Society of the United States'),
(32719, 27475, 'en', 'name', 'Commercial Fisheries Research Foundation'),
(32720, 27476, 'en', 'name', 'North Carolina Coastal Federation'),
(32721, 27477, 'en', 'name', 'North Carolina Wildlife Resources Commission'),
(32722, 27478, 'en', 'name', 'North Pacific Fishery Management Council'),
(32723, 27479, 'en', 'name', 'North Pacific Marine Science Foundation'),
(32724, 27480, 'no_lang_code', 'name', 'Jensen Management Service (United States)'),
(32725, 27481, 'en', 'name', 'North Slope Borough'),
(32726, 27482, 'en', 'name', 'North Coast Marine Mammal Center'),
(32727, 27483, 'en', 'name', 'Northwest Indian Fisheries Commission'),
(32728, 27484, 'en', 'name', 'Northwest Maritime Center'),
(32729, 27485, 'en', 'name', 'Riverhead Foundation for Marine Research and Preservation'),
(32730, 27486, 'en', 'name', 'Indigenous People''s Council for Marine Mammals'),
(32731, 27487, 'en', 'name', 'Connecticut River Joint Commissions'),
(32732, 27488, 'en', 'name', 'National Maritime Center'),
(32733, 27489, 'en', 'name', 'Institute for Marine Mammal Studies'),
(32734, 27490, 'en', 'name', 'California Conservation Corps'),
(32735, 27491, 'en', 'name', 'Northwest Straits Foundation'),
(32736, 27492, 'en', 'name', 'Ocean Trust'),
(32737, 27493, 'en', 'name', 'Institute for Social and Environmental Transition-International'),
(32738, 27494, 'en', 'name', 'International Marinelife Alliance'),
(32739, 27495, 'en', 'name', 'Coonamessett Farm Foundation'),
(32740, 27496, 'en', 'name', 'James River Association'),
(32741, 27497, 'en', 'name', 'Whale Museum'),
(32742, 27498, 'en', 'name', 'Kenai Peninsula Borough'),
(32743, 27499, 'en', 'name', 'Wisconsin Department of Administration'),
(32744, 27500, 'en', 'name', 'Trout Unlimited'),
(32745, 27501, 'no_lang_code', 'name', 'Zetor (Czechia)'),
(32746, 27502, 'en', 'name', 'Coral Reef Alliance'),
(32747, 27503, 'en', 'name', 'Klamath River Inter-Tribal Fish and Water Commission'),
(32748, 27504, 'en', 'name', 'Office of the Mississippi Secretary of State'),
(32749, 27505, 'en', 'name', 'Copper River Watershed Project'),
(32750, 27506, 'en', 'name', 'Alabama Department of Revenue'),
(32751, 27507, 'en', 'name', 'Cornell Cooperative Extension of Suffolk County'),
(32752, 27508, 'en', 'name', 'Council for Native Hawaiian Advancement'),
(32753, 27509, 'en', 'name', 'Lake Champlain Maritime Museum'),
(32754, 27510, 'en', 'name', 'New Hampshire Fish and Game Department'),
(32755, 27511, 'en', 'name', 'New Haven Unified School District'),
(32756, 27512, 'en', 'name', 'Department of Land and Natural Resources'),
(32757, 27513, 'en', 'name', 'New York State Department of State'),
(32758, 27514, 'en', 'name', 'Louisiana Department of Wildlife and Fisheries'),
(32759, 27515, 'en', 'name', 'Lower Columbia Estuary Partnership'),
(32760, 27516, 'en', 'name', 'Hawaii Department of Defense'),
(32761, 27517, 'en', 'name', 'Department of Energy and Environment'),
(32762, 27518, 'en', 'name', 'Vermont Fish & Wildlife Department'),
(32763, 27519, 'en', 'name', 'Downeast Institute'),
(32764, 27520, 'en', 'name', 'Orca Network'),
(32765, 27521, 'en', 'name', 'Earth Force'),
(32766, 27522, 'en', 'name', 'Earth Island Institute'),
(32767, 27523, 'en', 'name', 'Eastern Kentucky Pride'),
(32768, 27524, 'en', 'name', 'Oregon Department of Fish and Wildlife'),
(32769, 27525, 'en', 'name', 'Oregon Department of Land Conservation and Development'),
(32770, 27526, 'en', 'name', 'Oregon Department of State Lands'),
(32771, 27527, 'en', 'name', 'Abraham Lincoln University'),
(32772, 27528, 'en', 'name', 'Oregon Parks and Recreation Department'),
(32773, 27529, 'en', 'name', 'Lummi Indian Business Council'),
(32774, 27530, 'en', 'name', 'Virginia Department of Environmental Quality'),
(32775, 27531, 'en', 'name', 'Bitlis Eren University'),
(32776, 27531, 'tr', 'name', 'Bitlis Eren Üniversitesi'),
(32777, 27532, 'en', 'name', 'Pacific American Foundation'),
(32778, 27533, 'en', 'name', 'Lebanese French University'),
(32779, 27533, 'ar', 'name', 'الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ© للأعمال و ال؄دارة في Ų§Ų±ŲØŁŠŁ„'),
(32780, 27534, 'en', 'name', 'Pacific Education Institute'),
(32781, 27535, 'no_lang_code', 'name', 'Adikavi Nannaya University'),
(32782, 27535, 'te', 'name', 'ఆదికవి ą°Øą°Øą±ą°Øą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(32783, 27536, 'en', 'name', 'Bohol Island State University'),
(32784, 27537, 'en', 'name', 'Bost University'),
(32785, 27537, 'fa', 'name', 'دانؓگاه ŲØŲ³ŲŖ'),
(32786, 27538, 'en', 'name', 'Pacific Islands Fisheries Group'),
(32787, 27539, 'en', 'name', 'Boston University Academy'),
(32788, 27540, 'en', 'name', 'Pacific Salmon Commission'),
(32789, 27541, 'en', 'name', 'Adyghe State University'),
(32790, 27541, 'ru', 'name', 'АГыгейский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(32791, 27542, 'en', 'name', 'Pacific Shellfish Institute'),
(32792, 27543, 'en', 'name', 'Boston University Brussels'),
(32793, 27544, 'en', 'name', 'Brandman University'),
(32794, 27545, 'en', 'name', 'Breyer State Theology University'),
(32795, 27546, 'en', 'name', 'Virginia Department of Conservation and Recreation'),
(32796, 27547, 'en', 'name', 'Agora University'),
(32797, 27547, 'ro', 'name', 'Universitatea Agora'),
(32798, 27548, 'en', 'name', 'Makah Tribal Council'),
(32799, 27549, 'en', 'name', 'Broadview University'),
(32800, 27550, 'en', 'name', 'Malama Kai Foundation'),
(32801, 27551, 'en', 'name', 'Malama Learning Center'),
(32802, 27552, 'no_lang_code', 'name', 'Malama na Honu'),
(32803, 27553, 'en', 'name', 'Bucheon University'),
(32804, 27553, 'ko', 'name', 'ė¶€ģ²œėŒ€ķ•™źµ'),
(32805, 27554, 'en', 'name', 'Bukidnon State University'),
(32806, 27555, 'no_lang_code', 'name', 'Skanska (Czechia)'),
(32807, 27556, 'en', 'name', 'Burao University'),
(32808, 27556, 'so', 'name', 'Jaamacada Burco'),
(32809, 27557, 'en', 'name', 'Watsonville Wetlands Watch'),
(32810, 27558, 'en', 'name', 'Pennsylvania Department of Environmental Protection'),
(32811, 27559, 'en', 'name', 'Bursa Orhangazi University'),
(32812, 27559, 'tr', 'name', 'Bursa Orhangazi Üniversitesi'),
(32813, 27560, 'en', 'name', 'Pennsylvania Emergency Management Agency'),
(32814, 27561, 'en', 'name', 'Busan Presbyterian University'),
(32815, 27561, 'ko', 'name', 'ė¶€ģ‚°ģž„ģ‹ ėŒ€ķ•™źµ'),
(32816, 27562, 'en', 'name', 'Marine Animal Rescue Society'),
(32817, 27563, 'en', 'name', 'Penobscot River Restoration Trust'),
(32818, 27564, 'en', 'name', 'Perry Institute for Marine Science'),
(32819, 27565, 'en', 'name', 'Wells National Estuarine Research Reserve'),
(32820, 27566, 'en', 'name', 'Pfleger Institute of Environmental Research'),
(32821, 27567, 'en', 'name', 'Aino University'),
(32822, 27567, 'ja', 'name', 'č—é‡Žå¤§å­¦'),
(32823, 27568, 'en', 'name', 'Calicut University Employees Union'),
(32824, 27568, 'ml', 'name', 'ą“•ą“¾ą“²ą“æą“•ąµą“•ą“±ąµą“±ąµ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą“Žą“‚ą“Ŗąµą“²ąµ‡ą“¾ą“Æąµ€ą“øąµ ą“Æąµ‚ą“£ą“æą“Æąµ»'),
(32825, 27569, 'en', 'name', 'Ajloun National University'),
(32826, 27569, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¹Ų¬Ł„ŁˆŁ† Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(32827, 27570, 'en', 'name', 'Western Pacific Regional Fishery Management Council'),
(32828, 27571, 'en', 'name', 'Cambridge University Health Partners'),
(32829, 27572, 'en', 'name', 'Marine Mammal Care Center'),
(32830, 27573, 'en', 'name', 'Chesapeake Bay Environmental Center'),
(32831, 27574, 'en', 'name', 'Akita University of Art'),
(32832, 27574, 'ja', 'name', 'ē§‹ē”°å…¬ē«‹ē¾Žč”“å¤§å­¦'),
(32833, 27575, 'en', 'name', 'Marine Conservation Alliance'),
(32834, 27576, 'en', 'name', 'Wildlife Research Team'),
(32835, 27577, 'en', 'name', 'Marine Conservation Institute'),
(32836, 27578, 'en', 'name', 'Akita University of Nursing and Welfare'),
(32837, 27578, 'ja', 'name', 'ē§‹ē”°ēœ‹č­·ē¦ē„‰å¤§å­¦'),
(32838, 27579, 'en', 'name', 'Canadian University of Dubai'),
(32839, 27579, 'ar', 'name', 'الجامعة Ų§Ł„ŁƒŁ†ŲÆŁŠŲ© دبي'),
(32840, 27580, 'en', 'name', 'Potomac River Fisheries Commission'),
(32841, 27581, 'en', 'name', 'Marine Mammal Stranding Center'),
(32842, 27582, 'en', 'name', 'Marine Resources Council'),
(32843, 27583, 'en', 'name', 'Maryland Association for Environmental and Outdoor Education'),
(32844, 27584, 'en', 'name', 'Akobo Heritage and Memorial University'),
(32845, 27585, 'en', 'name', 'Center for Coastal Studies'),
(32846, 27586, 'en', 'name', 'Duluth Business University'),
(32847, 27587, 'en', 'name', 'Amicable Knowledge Solution University'),
(32848, 27587, 'hi', 'name', 'ą¤ ą¤•ą„‡ ą¤ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(32849, 27588, 'en', 'name', 'Minnesota Department of Public Safety'),
(32850, 27589, 'en', 'name', 'East Delta University'),
(32851, 27589, 'bn', 'name', 'ą¦‡ą¦øą§ą¦Ÿ ą¦”ą§‡ą¦²ą§ą¦Ÿą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(32852, 27590, 'en', 'name', 'East Africa University'),
(32853, 27590, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ؓرق Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§'),
(32854, 27591, 'es', 'name', 'Departamento de Transporte de Wisconsin'),
(32855, 27591, 'fr', 'name', 'DƩpartement des transports du wisconsin'),
(32856, 27591, 'en', 'name', 'Wisconsin Department of Transportation'),
(32857, 27592, 'en', 'name', 'Wolf Hollow Wildlife Rehabilitation Center'),
(32858, 27593, 'en', 'name', 'Eastern Liaoning University'),
(32859, 27593, 'zh', 'name', 'č¾½äøœå­¦é™¢'),
(32860, 27594, 'en', 'name', 'Alabama Law Enforcement Agency'),
(32861, 27595, 'en', 'name', 'World Turtle Trust'),
(32862, 27596, 'no_lang_code', 'name', 'Eckernforde Tanga University'),
(32863, 27597, 'en', 'name', 'Canik Başarı University'),
(32864, 27597, 'tr', 'name', 'Canik Başarı Üniversitesi'),
(32865, 27598, 'en', 'name', 'Ƈankırı Karatekin University'),
(32866, 27598, 'tr', 'name', 'Ƈankırı Karatekin Üniversitesi'),
(32867, 27599, 'en', 'name', 'Capitol University Medical Center'),
(32868, 27600, 'en', 'name', 'Caraga State University'),
(32869, 27601, 'en', 'name', 'Yukon River Drainage Fisheries Association'),
(32870, 27602, 'en', 'name', 'Herguan University'),
(32871, 27603, 'en', 'name', 'Carnegie Mellon University Australia'),
(32872, 27604, 'en', 'name', 'SeaWorld Entertainment'),
(32873, 27605, 'en', 'name', 'Karaite Jewish University'),
(32874, 27606, 'en', 'name', 'Karaj Payam Noor University'),
(32875, 27606, 'fa', 'name', 'دانؓگاه Ł¾ŪŒŲ§Ł… Ł†ŁˆŲ± کرج'),
(32876, 27607, 'en', 'name', 'Carnegie Trust for the Universities of Scotland'),
(32877, 27608, 'en', 'name', 'Al Furat University'),
(32878, 27608, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الفرات'),
(32879, 27609, 'en', 'name', 'Carol I National Defence University'),
(32880, 27609, 'ro', 'name', 'Universitatea Națională de Apărare ā€žCarol Iā€'),
(32881, 27610, 'en', 'name', 'El Asher University'),
(32882, 27610, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© العاؓر من Ų±Ł…Ų¶Ų§Ł†ā€Žā€Ž'),
(32883, 27611, 'en', 'name', 'Carson Newman University'),
(32884, 27612, 'en', 'name', 'Al Madinah International University'),
(32885, 27612, 'ms', 'name', 'Universiti Antarabangsa Al-Madinah'),
(32886, 27613, 'en', 'name', 'Higashi Nippon International University'),
(32887, 27613, 'ja', 'name', 'ę±ę—„ęœ¬å›½éš›å¤§å­¦'),
(32888, 27614, 'en', 'name', 'Karelia University of Applied Sciences'),
(32889, 27614, 'fi', 'name', 'Karelia-ammattikorkeakoulu'),
(32890, 27615, 'en', 'name', 'Catholic University of Applied Sciences'),
(32891, 27615, 'de', 'name', 'Katholische Hochschule Mainz'),
(32892, 27616, 'en', 'name', 'Electric Power University'),
(32893, 27616, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Điện lį»±c'),
(32894, 27617, 'no_lang_code', 'name', 'Al-Shahbaa University'),
(32895, 27617, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الؓهباؔ'),
(32896, 27618, 'en', 'name', 'Ellis University'),
(32897, 27619, 'en', 'name', 'Al Yamamah University'),
(32898, 27619, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŁ…Ų§Ł…Ų©'),
(32899, 27620, 'en', 'name', 'Eurasia International University'),
(32900, 27620, 'hy', 'name', 'ŌµÕ¾Ö€Õ”Õ½Õ«Õ” Õ„Õ«Õ»Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ€Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(32901, 27621, 'en', 'name', 'European Peace University'),
(32902, 27622, 'en', 'name', 'European University of Bangladesh'),
(32903, 27622, 'bn', 'name', 'ইউরোপিয়ান ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(32904, 27623, 'en', 'name', 'AlAlamein International University'),
(32905, 27623, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„Ł…ŁŠŁ†'),
(32906, 27624, 'en', 'name', 'Karnataka State Law University'),
(32907, 27624, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ಕಾನೂನು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(32908, 27625, 'en', 'name', 'HITEC University'),
(32909, 27626, 'en', 'name', 'Karnataka State Dr.Gangubai Hanagal Music and Performing Arts University'),
(32910, 27626, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ಔಾ. ಗಂಗೂಬಾಯಿ ą²¹ą²¾ą²Øą²—ą²²ą³ ಸಂಗೀತ ą²®ą²¤ą³ą²¤ą³ ą²Ŗą³ą²°ą²¦ą²°ą³ą²¶ą²• ಕಲೆಗಳ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(32911, 27627, 'en', 'name', 'Karnataka State Women''s University');
INSERT INTO `ror_settings` VALUES
(32912, 27627, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ಮಹಿಳಾ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(32913, 27628, 'en', 'name', 'Oleksandr Dovzhenko Hlukhiv National Pedagogical University'),
(32914, 27628, 'ru', 'name', 'Š“Š»ŃƒŃ…Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени АлексанГра Довженко'),
(32915, 27628, 'uk', 'name', 'Š“Š»ŃƒŃ…Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠžŠ»ŠµŠŗŃŠ°Š½Š“Ń€Š° Довженка'),
(32916, 27629, 'en', 'name', 'Catholic University of South Sudan'),
(32917, 27630, 'en', 'name', 'Fahd bin Sultan University'),
(32918, 27630, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± فهد بن سلطان'),
(32919, 27631, 'no_lang_code', 'name', 'Kaziranga University'),
(32920, 27632, 'de', 'name', 'Alanus Hochschule für Kunst und Gesellschaft'),
(32921, 27632, 'en', 'name', 'Alanus University of Arts and Social Sciences'),
(32922, 27633, 'en', 'name', 'Keio University Shonan Fujisawa'),
(32923, 27633, 'ja', 'name', 'ę…¶ę‡‰ē¾©å”¾å¤§å­¦ę¹˜å—č—¤ę²¢ć‚­ćƒ£ćƒ³ćƒ‘ć‚¹'),
(32924, 27634, 'en', 'name', 'Kent State University at Ashtabula'),
(32925, 27635, 'en', 'name', 'Industrial University of Ho Chi Minh City'),
(32926, 27635, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghiệp ThĆ nh phố Hồ ChĆ­ Minh'),
(32927, 27636, 'en', 'name', 'Hoa Sen University'),
(32928, 27636, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Hoa Sen'),
(32929, 27636, 'zh', 'name', 'čŽ²čŠ±å¤§å­¦'),
(32930, 27637, 'en', 'name', 'Hodges University'),
(32931, 27638, 'en', 'name', 'Holy Trinity University'),
(32932, 27639, 'en', 'name', 'Cebu Institute of Technology University'),
(32933, 27640, 'en', 'name', 'Kent State University at Salem'),
(32934, 27641, 'en', 'name', 'Kent State University at Stark'),
(32935, 27642, 'en', 'name', 'Kenya Highlands University'),
(32936, 27643, 'en', 'name', 'Alhosn University'),
(32937, 27643, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الحصن'),
(32938, 27644, 'en', 'name', 'Homerton University Hospital NHS Foundation Trust'),
(32939, 27645, 'en', 'name', 'Cebu Technological University'),
(32940, 27646, 'en', 'name', 'Hong Kong Virtual University'),
(32941, 27646, 'zh', 'name', '香港虛擬大學'),
(32942, 27647, 'en', 'name', 'Alkauthar Islamic University'),
(32943, 27647, 'ur', 'name', 'Ų¬Ų§Ł…Ų¹Ūƒ Ų§Ł„Ś©ŁˆŲ«Ų±'),
(32944, 27648, 'en', 'name', 'Kharkiv University of Humanities People’s Ukrainian Academy'),
(32945, 27648, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠŠ°Ń€Š¾Š“Š½Š° ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ»'),
(32946, 27648, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠŠ°Ń€Š¾Š“Š½Š°Ń ŃƒŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃĀ»'),
(32947, 27649, 'en', 'name', 'Khujand State University'),
(32948, 27649, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии ЄуҷанГ ба номи акаГемик Š‘. Ņ’Š°Ń„ŃƒŃ€Š¾Š²'),
(32949, 27649, 'ru', 'name', 'ЄуГжанГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32950, 27650, 'en', 'name', 'Hope University'),
(32951, 27651, 'en', 'name', 'Central Bicol State University of Agriculture'),
(32952, 27652, 'en', 'name', 'All Saints University Lango'),
(32953, 27653, 'en', 'name', 'Kim Chaek University of Technology'),
(32954, 27653, 'ko', 'name', 'ź¹€ģ±…ź³µģ—…ģ¢…ķ•©ėŒ€ķ•™'),
(32955, 27654, 'en', 'name', 'Moscow State Forest University'),
(32956, 27654, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ леса'),
(32957, 27655, 'en', 'name', 'Allameh Mohaddes Nouri University'),
(32958, 27655, 'fa', 'name', 'دانؓگاه علامه Ł…Ų­ŲÆŲ« Ł†ŁˆŲ±ŪŒ'),
(32959, 27656, 'en', 'name', 'Kingswood University'),
(32960, 27657, 'fr', 'name', 'Centre Hospitalier Universitaire Notre Dame des Secours'),
(32961, 27657, 'ar', 'name', 'مستؓفى سيدة Ų§Ł„Ł…Ų¹ŁˆŁ†Ų§ŲŖ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(32962, 27658, 'tl', 'name', 'Centro Escolar University Makati'),
(32963, 27659, 'en', 'name', 'Florida International University Alumni Association'),
(32964, 27660, 'en', 'name', 'Kio University'),
(32965, 27660, 'ja', 'name', '畿央大学'),
(32966, 27661, 'en', 'name', 'Idaho Governors Office of Species Conservation'),
(32967, 27662, 'so', 'name', 'Jaamacada Kismaayo'),
(32968, 27662, 'no_lang_code', 'name', 'Kismayo University'),
(32969, 27663, 'pt', 'name', 'Centro UniversitƔrio das Faculdades Metropolitanas Unidas'),
(32970, 27664, 'en', 'name', 'AlMughtaribeen University'),
(32971, 27664, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŲŗŲŖŲ±ŲØŁŠŁ†'),
(32972, 27665, 'en', 'name', 'Kobe Tokiwa University'),
(32973, 27665, 'ja', 'name', 'ē„žęˆøåøøē›¤å¤§å­¦'),
(32974, 27666, 'en', 'name', 'Chanakya National Law University'),
(32975, 27666, 'hi', 'name', 'ą¤šą¤¾ą¤£ą¤•ą„ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(32976, 27667, 'fr', 'name', 'Fondation UniversitƩ FranƧaise en ArmƩnie'),
(32977, 27667, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶ÕøÖ‚Õ“ Ö†Ö€Õ”Õ¶Õ½Õ«Õ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(32978, 27668, 'en', 'name', 'Al Assad University Hospital'),
(32979, 27668, 'ar', 'name', 'مستؓفى الأسد Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(32980, 27669, 'en', 'name', 'Changsha University'),
(32981, 27669, 'zh', 'name', '长沙学院'),
(32982, 27670, 'en', 'name', 'Changshin University'),
(32983, 27670, 'ko', 'name', 'ģ°½ģ‹ ėŒ€ķ•™źµ'),
(32984, 27671, 'en', 'name', 'Kolhan University'),
(32985, 27672, 'de', 'name', 'AuslƤnderuniversitƤt Siena'),
(32986, 27672, 'en', 'name', 'University for Foreigners of Siena'),
(32987, 27672, 'it', 'name', 'UniversitĆ  per stranieri di Siena'),
(32988, 27672, 'fr', 'name', 'UniversitƩ pour Ʃtrangers de sienne'),
(32989, 27673, 'en', 'name', 'AMA International University'),
(32990, 27673, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أما Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ų§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(32991, 27674, 'en', 'name', 'Korea National Defense University'),
(32992, 27674, 'ko', 'name', 'źµ­ė°©ėŒ€ķ•™źµ'),
(32993, 27675, 'en', 'name', 'Chaudhary Devi Lal University'),
(32994, 27675, 'hi', 'name', 'ą¤šą„Œą¤§ą¤°ą„€ ą¤¦ą„‡ą¤µą„€ लाल ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(32995, 27676, 'en', 'name', 'Korea National University of Arts'),
(32996, 27676, 'ko', 'name', 'ķ•œźµ­ģ˜ˆģˆ ģ¢…ķ•©ķ•™źµ'),
(32997, 27677, 'en', 'name', 'Hsiuping University of Science and Technology'),
(32998, 27677, 'zh', 'name', 'äæ®å¹³ē§‘ęŠ€å¤§å­ø'),
(32999, 27678, 'en', 'name', 'Frankfurt University of Music and Performing Arts'),
(33000, 27678, 'de', 'name', 'Hochschule für Musik und Darstellende Kunst Frankfurt am Main'),
(33001, 27679, 'en', 'name', 'Franklin University Switzerland'),
(33002, 27680, 'en', 'name', 'Frederick Taylor University'),
(33003, 27681, 'en', 'name', 'Free University of Ireland'),
(33004, 27681, 'ga', 'name', 'Saor-Ollscoil na hƉireann'),
(33005, 27682, 'en', 'name', 'Friedensau Adventist University'),
(33006, 27682, 'de', 'name', 'Theologische Hochschule Friedensau'),
(33007, 27683, 'en', 'name', 'Frontier Nursing University'),
(33008, 27684, 'en', 'name', 'America Bangladesh University'),
(33009, 27684, 'bn', 'name', 'আমেরিকা বাংলাদেশ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(33010, 27685, 'en', 'name', 'Korea National University of Cultural Heritage'),
(33011, 27685, 'ko', 'name', 'ķ•œźµ­ģ „ķ†µė¬øķ™”ėŒ€ķ•™źµ'),
(33012, 27686, 'en', 'name', 'Gavar State University'),
(33013, 27686, 'hy', 'name', 'Ō³Õ”Õ¾Õ”Õ¼Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(33014, 27687, 'en', 'name', 'Korea University'),
(33015, 27687, 'ja', 'name', 'ęœé®®å¤§å­¦ę ”'),
(33016, 27688, 'no_lang_code', 'name', 'Cheju Halla University'),
(33017, 27688, 'ko', 'name', 'ģ œģ£¼ķ•œė¼ėŒ€ķ•™źµ'),
(33018, 27689, 'en', 'name', 'Heriot-Watt University Dubai'),
(33019, 27689, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‡ŁŠŲ±ŁŠŁˆŲŖ-وات دبي'),
(33020, 27690, 'en', 'name', 'Korean Council for University Education'),
(33021, 27690, 'ko', 'name', 'ķ•œźµ­ėŒ€ķ•™źµģœ”ķ˜‘ģ˜ķšŒ'),
(33022, 27691, 'en', 'name', 'Gemological Centers'),
(33023, 27692, 'en', 'name', 'Korean National Police University'),
(33024, 27692, 'ko', 'name', 'ź²½ģ°°ėŒ€ķ•™'),
(33025, 27693, 'en', 'name', 'Gelato University'),
(33026, 27694, 'no_lang_code', 'name', 'KR Mangalam University'),
(33027, 27694, 'hi', 'name', 'ą¤•ą„‡.आर. मंगलम ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33028, 27695, 'en', 'name', 'Chhattisgarh Swami Vivekanand Technical University'),
(33029, 27695, 'hi', 'name', 'ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼ ą¤øą„ą¤µą¤¾ą¤®ą„€ ą¤µą¤æą¤µą„‡ą¤•ą¤¾ą¤Øą¤‚ą¤¦ ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33030, 27695, 'bn', 'name', 'ą¦›ą¦¤ą§ą¦¤ą§€ą¦øą¦—ą¦¢ą¦¼ ą¦øą§ą¦¬ą¦¾ą¦®ą§€ ą¦¬ą¦æą¦¬ą§‡ą¦•ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(33031, 27696, 'en', 'name', 'Krishna Kanta Handiqui State Open University'),
(33032, 27696, 'bn', 'name', 'ą¦•ą§ƒą¦·ą§ą¦£ą¦•ą¦¾ą¦Øą§ą¦¤ ą¦øą¦Øą§ą¦¦ą¦æą¦•ą§ˆ ą¦°ą¦¾ą¦œą§ą¦Æą¦æą¦• ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(33033, 27697, 'en', 'name', 'American International University West Africa'),
(33034, 27698, 'en', 'name', 'Chiba Prefectural University of Health Sciences'),
(33035, 27698, 'ja', 'name', 'åƒč‘‰ēœŒē«‹äæå„åŒ»ē™‚å¤§å­¦'),
(33036, 27699, 'en', 'name', 'Christian Bilingual University of Congo'),
(33037, 27699, 'fr', 'name', 'UniversitƩ ChrƩtienne Bilingue du Congo'),
(33038, 27700, 'en', 'name', 'American Public University System'),
(33039, 27701, 'en', 'name', 'Chuka University'),
(33040, 27702, 'en', 'name', 'American Sports University'),
(33041, 27703, 'en', 'name', 'Kristal University'),
(33042, 27703, 'sq', 'name', 'Universiteti Kristal'),
(33043, 27704, 'en', 'name', 'Kühne Logistics University'),
(33044, 27705, 'en', 'name', 'Kumar Bhaskar Varma Sanskrit and Ancient Studies University'),
(33045, 27705, 'hi', 'name', 'ą¤•ą„ą¤®ą¤¾ą¤° ą¤­ą¤¾ą¤øą„ą¤•ą¤° ą¤µą¤°ą„ą¤®ą¤¾ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¾ą¤¤ą¤Ø ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33046, 27705, 'bn', 'name', 'কুমাৰ ą¦­ą¦¾ą¦øą§ą¦•ą§° ą¦¬ą§°ą§ą¦®ą¦¾ ą¦øą¦‚ą¦øą§ą¦•ą§ƒą¦¤ আৰু পুৰাতন ą¦…ą¦§ą§ą¦Æą¦Æą¦¼ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(33047, 27706, 'en', 'name', 'Chung Chou University of Science and Technology'),
(33048, 27706, 'zh', 'name', 'äø­å·žē§‘ęŠ€å¤§å­ø'),
(33049, 27707, 'en', 'name', 'American University in Bosnia and Herzegovina'),
(33050, 27707, 'bs', 'name', 'Američki univerzitet u Bosni i Hercegovini'),
(33051, 27708, 'en', 'name', 'Kumi University'),
(33052, 27709, 'en', 'name', 'Kundong University'),
(33053, 27709, 'ko', 'name', 'ź±“ė™ėŒ€ķ•™źµ'),
(33054, 27710, 'en', 'name', 'Chunnam Techno University'),
(33055, 27710, 'ko', 'name', 'ģ „ė‚Øź³¼ķ•™ėŒ€ķ•™źµ'),
(33056, 27711, 'en', 'name', 'George Washington University Virginia Campus'),
(33057, 27712, 'en', 'name', 'George Wythe University'),
(33058, 27713, 'en', 'name', 'Rochester Institute of Technology Kosovo'),
(33059, 27714, 'en', 'name', 'Hwa Hsia University of Technology'),
(33060, 27714, 'zh', 'name', 'čÆå¤ē§‘ęŠ€å¤§å­ø'),
(33061, 27715, 'no_lang_code', 'name', 'Ghazni University'),
(33062, 27715, 'fa', 'name', 'دانؓگاه ŲŗŲ²Ł†ŪŒ'),
(33063, 27716, 'en', 'name', 'American University in the Emirates'),
(33064, 27716, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في ال؄مارات'),
(33065, 27717, 'en', 'name', 'Maharaja Ranjit Singh Punjab Technical University'),
(33066, 27718, 'en', 'name', 'American University of Afghanistan'),
(33067, 27718, 'fa', 'name', 'دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ افغانستان'),
(33068, 27719, 'no_lang_code', 'name', 'Kushabhau Thakre Patrakarita Avam Jansanchar University'),
(33069, 27719, 'hi', 'name', 'ą¤•ą„ą¤¶ą¤¾ą¤­ą¤¾ą¤Š ą¤ ą¤¾ą¤•ą¤°ą„‡ ą¤Ŗą¤¤ą„ą¤°ą¤•ą¤¾ą¤°ą¤æą¤¤ą¤¾ ą¤ą¤µą¤‚ ą¤øą¤‚ą¤šą¤¾ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33070, 27720, 'en', 'name', 'Gimcheon University'),
(33071, 27720, 'ko', 'name', 'ź¹€ģ²œėŒ€ķ•™źµ'),
(33072, 27721, 'en', 'name', 'Girne American University'),
(33073, 27721, 'tr', 'name', 'Girne Amerikan Üniversitesi'),
(33074, 27722, 'en', 'name', 'Claremont Lincoln University'),
(33075, 27723, 'en', 'name', 'CMJ University'),
(33076, 27723, 'hi', 'name', 'ą¤øą„€ą¤ą¤®ą¤œą„‡ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33077, 27724, 'en', 'name', 'Glendale University College of Law'),
(33078, 27725, 'en', 'name', 'Kyoto International University'),
(33079, 27725, 'ja', 'name', 'äŗ¬éƒ½ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«ćƒ¦ćƒ‹ćƒćƒ¼ć‚·ćƒ†ć‚£ćƒ¼'),
(33080, 27726, 'en', 'name', 'Global University'),
(33081, 27726, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(33082, 27727, 'en', 'name', 'Coalition of Urban and Metropolitan Universities'),
(33083, 27728, 'en', 'name', 'Coastland University'),
(33084, 27729, 'en', 'name', 'Godfrey Okoye University'),
(33085, 27730, 'en', 'name', 'Gollis University'),
(33086, 27730, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁˆŁ„Ų³'),
(33087, 27731, 'en', 'name', 'American University of Madaba'),
(33088, 27731, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ł…Ų§ŲÆŲØŲ§'),
(33089, 27732, 'en', 'name', 'La Salle University'),
(33090, 27732, 'tl', 'name', 'Pamantasang La Salle ng Ozamis'),
(33091, 27733, 'en', 'name', 'ICFAI University, Mizoram'),
(33092, 27734, 'en', 'name', 'American University of Rome'),
(33093, 27734, 'de', 'name', 'Amerikanische UniversitƤt Rom'),
(33094, 27734, 'fr', 'name', 'UniversitƩ amƩricaine de Rome'),
(33095, 27735, 'en', 'name', 'Great Lakes University of Kisumu'),
(33096, 27736, 'en', 'name', 'IEC University'),
(33097, 27737, 'en', 'name', 'Gregory University Uturu'),
(33098, 27738, 'en', 'name', 'Ifugao State University'),
(33099, 27738, 'tl', 'name', 'Pamantasang Estado ng Ifugao'),
(33100, 27739, 'en', 'name', 'Gretsa University'),
(33101, 27740, 'en', 'name', 'Gujarat National Law University'),
(33102, 27741, 'en', 'name', 'Laurel University'),
(33103, 27742, 'no_lang_code', 'name', 'Gukje Cyber University'),
(33104, 27742, 'ko', 'name', 'źµ­ģ œģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(33105, 27743, 'en', 'name', 'Lebanese German University'),
(33106, 27743, 'ar', 'name', 'الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ©'),
(33107, 27744, 'en', 'name', 'Gulf University for Science & Technology'),
(33108, 27744, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(33109, 27745, 'en', 'name', 'Lebanese International University'),
(33110, 27745, 'ar', 'name', 'الجامعة Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ©'),
(33111, 27746, 'en', 'name', 'Amoud University'),
(33112, 27746, 'so', 'name', 'Jaamacadda Camuud'),
(33113, 27746, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¹Ł…ŁˆŲÆ'),
(33114, 27747, 'en', 'name', 'IMADEC University'),
(33115, 27748, 'en', 'name', 'Iloilo Science and Technology University'),
(33116, 27748, 'tl', 'name', 'Universitas Technologiae et Scientiarum Iloilensis'),
(33117, 27749, 'de', 'name', 'IMC Fachhochschule Krems'),
(33118, 27749, 'en', 'name', 'IMC University of Applied Sciences Krems'),
(33119, 27750, 'en', 'name', 'Guru Kashi University'),
(33120, 27750, 'pa', 'name', 'ਗੁਰੂ ਕਾਸ਼ੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(33121, 27751, 'en', 'name', 'Guru Ravidas Ayurved University'),
(33122, 27751, 'pa', 'name', 'ਗੁਰੂ ਰਵੀਦਾਸ ਆਯੂਰਵੇਦ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(33123, 27752, 'en', 'name', 'Leman University'),
(33124, 27753, 'en', 'name', 'Leonardo Da Vinci University'),
(33125, 27753, 'es', 'name', 'Universidad Privada Leonardo da Vinci'),
(33126, 27754, 'en', 'name', 'Gyan Vihar University'),
(33127, 27755, 'en', 'name', 'LUM Jean Monnet University'),
(33128, 27755, 'it', 'name', 'Libera UniversitĆ  Mediterranea'),
(33129, 27756, 'en', 'name', 'Libyan International Medical University'),
(33130, 27756, 'ar', 'name', 'الجامعة Ų§Ł„Ł„ŁŠŲØŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ©'),
(33131, 27757, 'en', 'name', 'Hagoromo International University'),
(33132, 27757, 'ja', 'name', 'ē¾½č”£å›½éš›å¤§å­¦'),
(33133, 27758, 'en', 'name', 'Hallmark University'),
(33134, 27759, 'en', 'name', 'Concordia University'),
(33135, 27760, 'en', 'name', 'HamhÅ­ng University of Chemical Industry'),
(33136, 27760, 'ko', 'name', 'ķ•Øķ„ķ™”ķ•™ź³µģ—…ėŒ€ķ•™'),
(33137, 27761, 'fr', 'name', 'Conseil des universitƩs de l''Ontario'),
(33138, 27761, 'en', 'name', 'Council of Ontario Universities'),
(33139, 27762, 'en', 'name', 'Hanil University'),
(33140, 27762, 'ko', 'name', 'ķ•œģ¼ģž„ģ‹ ėŒ€ķ•™źµ'),
(33141, 27763, 'en', 'name', 'Hankou University'),
(33142, 27763, 'zh', 'name', 'ę±‰å£å­¦é™¢'),
(33143, 27764, 'en', 'name', 'Hanseatic University Rostock'),
(33144, 27764, 'de', 'name', 'Private HanseuniversitƤt'),
(33145, 27765, 'no_lang_code', 'name', 'Induk University'),
(33146, 27765, 'ko', 'name', 'ģøė•ėŒ€ķ•™źµ'),
(33147, 27766, 'en', 'name', 'Hanyang Women''s University'),
(33148, 27766, 'ko', 'name', 'ķ•œģ–‘ģ—¬ģžėŒ€ķ•™źµ'),
(33149, 27767, 'en', 'name', 'PLA Army Service Academy'),
(33150, 27767, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›åŽå‹¤å·„ēØ‹å­¦é™¢'),
(33151, 27768, 'en', 'name', 'Ansan University'),
(33152, 27768, 'ko', 'name', 'ģ•ˆģ‚°ėŒ€ķ•™źµ'),
(33153, 27769, 'en', 'name', 'Cyber University'),
(33154, 27769, 'ja', 'name', 'ć‚µć‚¤ćƒćƒ¼å¤§å­¦'),
(33155, 27770, 'en', 'name', 'Inner Mongolia University of Finance and Economics'),
(33156, 27770, 'zh', 'name', 'å†…č’™å¤č“¢ē»å¤§å­¦'),
(33157, 27771, 'en', 'name', 'Louisiana Baptist University'),
(33158, 27772, 'no_lang_code', 'name', 'Inoorero University'),
(33159, 27773, 'en', 'name', 'Ansbach University of Applied Sciences'),
(33160, 27773, 'de', 'name', 'Hochschule Ansbach'),
(33161, 27774, 'en', 'name', 'Hayfield University'),
(33162, 27775, 'en', 'name', 'Hebei Finance University'),
(33163, 27775, 'zh', 'name', 'ę²³åŒ—é‡‘čžå­¦é™¢'),
(33164, 27776, 'en', 'name', 'Daegu Cyber University'),
(33165, 27776, 'ko', 'name', 'ėŒ€źµ¬ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(33166, 27777, 'en', 'name', 'Daegu Technical University'),
(33167, 27777, 'ko', 'name', 'ėŒ€źµ¬ź³µģ—…ėŒ€ķ•™źµ'),
(33168, 27778, 'en', 'name', 'Daehan Theological University'),
(33169, 27778, 'ko', 'name', 'ėŒ€ķ•œģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(33170, 27779, 'en', 'name', 'Heliopolis University'),
(33171, 27779, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‡Ł„ŁŠŁˆŲØŁˆŁ„ŁŠŲ³'),
(33172, 27780, 'en', 'name', 'Daekyeung University'),
(33173, 27780, 'ko', 'name', 'ėŒ€ź²½ėŒ€ķ•™źµ'),
(33174, 27781, 'en', 'name', 'Hellenic American University'),
(33175, 27782, 'en', 'name', 'Hengshui University'),
(33176, 27782, 'zh', 'name', '蔔氓学院'),
(33177, 27783, 'en', 'name', 'Apollonia University'),
(33178, 27783, 'ro', 'name', 'Universitatea Apollonia'),
(33179, 27784, 'en', 'name', 'Darul Huda Islamic University'),
(33180, 27784, 'fr', 'name', 'UniversitƩ islamique darul huda'),
(33181, 27784, 'ur', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± الهدى Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(33182, 27784, 'ml', 'name', 'ą“¦ą“¾ą“±ąµąµ½ą“¹ąµą“¦ą“¾ ą“‡ą“øąµą“²ą“¾ą“®ą“æą“•ąµ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(33183, 27785, 'en', 'name', 'Luther Rice College and Seminary'),
(33184, 27786, 'en', 'name', 'Dawat University'),
(33185, 27786, 'fa', 'name', 'ŲÆ دعوت Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(33186, 27787, 'en', 'name', 'Dawood University of Engineering and Technology'),
(33187, 27787, 'ur', 'name', 'ŲÆŲ§Ų¤ŲÆ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(33188, 27788, 'de', 'name', 'Hochschule Merseburg'),
(33189, 27788, 'en', 'name', 'Merseburg University of Applied Sciences'),
(33190, 27789, 'no_lang_code', 'name', 'Maakhir University'),
(33191, 27789, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų§Ų®Ų±ā€Ž'),
(33192, 27790, 'en', 'name', 'Meru University of Science and Technology'),
(33193, 27791, 'en', 'name', 'Inter-University Center for Japanese Language Studies'),
(33194, 27791, 'ja', 'name', 'ć‚¢ćƒ”ćƒŖć‚«ćƒ»ć‚«ćƒŠćƒ€å¤§å­¦é€£åˆę—„ęœ¬ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(33195, 27792, 'en', 'name', 'Madan Mohan Malaviya University of Technology'),
(33196, 27792, 'hi', 'name', 'मदन ą¤®ą„‹ą¤¹ą¤Ø ą¤®ą¤¾ą¤²ą¤µą„€ą¤Æ ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą„€ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤—ą„‹ą¤°ą¤–ą¤Ŗą„ą¤°'),
(33197, 27793, 'en', 'name', 'International Burch University'),
(33198, 27793, 'bs', 'name', 'Međunarodni univerzitet Burch'),
(33199, 27794, 'en', 'name', 'Applied Science University'),
(33200, 27794, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(33201, 27795, 'en', 'name', 'Mahamakut Buddhist University'),
(33202, 27795, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø”ąø«ąø²ąø”ąøąøøąøąø£ąø²ąøŠąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(33203, 27796, 'en', 'name', 'Majmaah University'),
(33204, 27796, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المجمعة'),
(33205, 27797, 'en', 'name', 'Malawi Adventist University'),
(33206, 27798, 'en', 'name', 'Maldives National University'),
(33207, 27798, 'dv', 'name', 'Ž‹ŽØŽˆŽ¬Ž€ŽØŽƒŽ§Ž‡Ž°Ž–Ž­ŽŽŽ¬ ޤައުމީ Ž”ŽŖŽ‚ŽØŽˆŽ¦ŽƒŽŽØŽ“Ž©'),
(33208, 27799, 'en', 'name', 'Defense Acquisition University'),
(33209, 27800, 'en', 'name', 'Araullo University'),
(33210, 27801, 'en', 'name', 'International Information Technologies University'),
(33211, 27801, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ информационных технологий'),
(33212, 27801, 'kk', 'name', 'Єалықаралық ақпараттық Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃŠ»Š°Ń€ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(33213, 27802, 'en', 'name', 'Delta International University'),
(33214, 27803, 'en', 'name', 'Delta State University'),
(33215, 27804, 'no_lang_code', 'name', 'DHA Suffa University'),
(33216, 27804, 'ur', 'name', 'ڊي Ų§ŁŠŚ‡ اي سفا ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(33217, 27805, 'en', 'name', 'Dhammakaya Open University'),
(33218, 27806, 'no_lang_code', 'name', 'Mangalayatan University'),
(33219, 27806, 'hi', 'name', 'मंगलायतन ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(33220, 27807, 'en', 'name', 'Diamond Harbour Women''s University'),
(33221, 27807, 'bn', 'name', 'ą¦”ą¦¾ą¦Æą¦¼ą¦®ą¦Øą§ą¦” হারবার মহিলা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(33222, 27808, 'en', 'name', 'Maranatha Baptist University'),
(33223, 27809, 'en', 'name', 'Dire Dawa University'),
(33224, 27810, 'en', 'name', 'International University in Geneva'),
(33225, 27811, 'en', 'name', 'Dixon University Center'),
(33226, 27812, 'en', 'name', 'Marin Barleti University'),
(33227, 27812, 'sq', 'name', 'Universiteti Marin Barleti'),
(33228, 27813, 'en', 'name', 'International University of Chabahar'),
(33229, 27813, 'fa', 'name', 'دانؓگاه ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ چابهار'),
(33230, 27814, 'en', 'name', 'International University of East Africa'),
(33231, 27815, 'en', 'name', 'Armenian National Agrarian University'),
(33232, 27815, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ”Õ£Ö€Õ”Ö€Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(33233, 27816, 'en', 'name', 'International University of Logistics and Transport in Wrocław'),
(33234, 27816, 'pl', 'name', 'Międzynarodowa Wyższa Szkoła Logistyki i Transportu we Wrocławiu'),
(33235, 27817, 'en', 'name', 'Marshall B. Ketchum University'),
(33236, 27818, 'en', 'name', 'Martin Luther Christian University'),
(33237, 27819, 'sq', 'name', 'Albanian:Universiteti Ndƫrkombetar i Strugƫs'),
(33238, 27819, 'en', 'name', 'International University of Struga'),
(33239, 27819, 'mk', 'name', 'ŠœŠµŃ“ŃƒŠ½Š°Ń€Š¾Š“ŠµŠ½ Универзитет Š”Ń‚Ń€ŃƒŠ³Š°'),
(33240, 27820, 'en', 'name', 'Donga College of Health'),
(33241, 27820, 'ko', 'name', 'ė™ģ•„ė³“ź±“ėŒ€ķ•™źµ'),
(33242, 27821, 'en', 'name', 'International University of the Caribbean'),
(33243, 27822, 'en', 'name', 'Maryland University of Integrative Health'),
(33244, 27823, 'no_lang_code', 'name', 'Dongyang Mirae University'),
(33245, 27823, 'ko', 'name', 'ė™ģ–‘ėÆøėž˜ėŒ€ķ•™źµ'),
(33246, 27824, 'en', 'name', 'International Vedic Hindu University'),
(33247, 27825, 'en', 'name', 'Maulana Mazharul Haque Arabic and Persian University'),
(33248, 27825, 'hi', 'name', 'ą¤®ą„Œą¤²ą¤¾ą¤Øą¤¾ ą¤®ą¤œą¤¹ą¤°ą„‚ą¤² हक ą¤…ą¤°ą¤¬ą„€ व ą¤«ą¤¾ą¤°ą¤øą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33249, 27826, 'en', 'name', 'Armenian State University of Economics'),
(33250, 27826, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ ÕæÕ¶ÕæÕ„Õ½Õ”Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(33251, 27827, 'en', 'name', 'Doon University'),
(33252, 27827, 'hi', 'name', 'ą¤¦ą„‚ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33253, 27828, 'en', 'name', 'McGill-Queen''s University Press'),
(33254, 27829, 'en', 'name', 'Dortmund University of Applied Sciences and Arts'),
(33255, 27829, 'de', 'name', 'Fachhochschule Dortmund'),
(33256, 27830, 'en', 'name', 'McPherson University'),
(33257, 27831, 'en', 'name', 'Invertis University'),
(33258, 27832, 'en', 'name', 'Mindanao University of Science and Technology'),
(33259, 27833, 'en', 'name', 'Mindanao State University Naawan'),
(33260, 27834, 'en', 'name', 'Medical University of the Americas'),
(33261, 27835, 'en', 'name', 'Arni University'),
(33262, 27835, 'hi', 'name', 'ą¤…ą¤°ą„ą¤Øą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33263, 27836, 'en', 'name', 'Dr. Ram Manohar Lohia National Law University'),
(33264, 27836, 'hi', 'name', 'ą¤”ą„‰ राम ą¤®ą¤Øą„‹ą¤¹ą¤° ą¤²ą„‹ą¤¹ą¤æą¤Æą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33265, 27837, 'no_lang_code', 'name', 'Mizan Tepi University'),
(33266, 27838, 'en', 'name', 'Dr. Sarvepalli Radhakrishnan Rajasthan Ayurved University'),
(33267, 27838, 'hi', 'name', 'ą¤”ą„‰ ą¤øą¤°ą„ą¤µą¤Ŗą¤²ą„ą¤²ą„€ ą¤°ą¤¾ą¤§ą¤¾ą¤•ą„ƒą¤·ą„ą¤£ą¤Ø ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33268, 27839, 'en', 'name', 'Mohammad Ali Jauhar University'),
(33269, 27839, 'hi', 'name', 'ą¤®ą„‹ą¤¹ą¤®ą„ą¤®ą¤¦ ą¤…ą¤²ą„€ ą¤œą„Œą¤¹ą¤° ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(33270, 27840, 'en', 'name', 'Dr. Shakuntala Misra National Rehabilitation University'),
(33271, 27840, 'hi', 'name', 'ą¤”ą„‰ ą¤¶ą¤•ą„ą¤‚ą¤¤ą¤²ą¤¾ ą¤®ą¤æą¤¶ą„ą¤°ą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤Øą¤°ą„ą¤µą¤¾ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33272, 27841, 'en', 'name', 'Monad University'),
(33273, 27842, 'en', 'name', 'Oregon State University Cascades'),
(33274, 27843, 'en', 'name', 'Mongolian National University'),
(33275, 27843, 'mn', 'name', 'Монгол Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(33276, 27844, 'en', 'name', 'Arts, Sciences and Technology University in Lebanon'),
(33277, 27845, 'fr', 'name', 'Centre Hospitalier Universitaire Dr-Georges-L.-Dumont'),
(33278, 27845, 'en', 'name', 'Dr. Georges-L.-Dumont University Hospital Centre'),
(33279, 27846, 'en', 'name', 'Moscow University for the Humanities'),
(33280, 27846, 'ru', 'name', 'Московский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33281, 27847, 'en', 'name', 'Osaka Kawasaki Rehabilitation University'),
(33282, 27847, 'ja', 'name', 'å¤§é˜Ŗę²³å“ŽćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å¤§å­¦'),
(33283, 27848, 'en', 'name', 'Osaka University of Comprehensive Children Education'),
(33284, 27848, 'ja', 'name', 'å¤§é˜Ŗē·åˆäæč‚²å¤§å­¦'),
(33285, 27849, 'en', 'name', 'CƩsar Ritz Colleges'),
(33286, 27850, 'en', 'name', 'Artsakh State University'),
(33287, 27850, 'ru', 'name', 'Арцахский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33288, 27850, 'hy', 'name', 'ԱրցՔխի ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶Õ« Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ ÕæÕ„Õ²Õ„ÕÆÕ”Õ£Õ«Ö€'),
(33289, 27851, 'en', 'name', 'Irbid National University'),
(33290, 27851, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų„Ų±ŲØŲÆ Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(33291, 27852, 'en', 'name', 'Shibuya University Network'),
(33292, 27852, 'ja', 'name', 'ć‚·ćƒ–ćƒ¤å¤§å­¦'),
(33293, 27853, 'en', 'name', 'Osmaniye Korkut Ata University'),
(33294, 27853, 'tr', 'name', 'Osmaniye Korkut Ata Üniversitesi'),
(33295, 27854, 'en', 'name', 'Arunai Engineering College'),
(33296, 27854, 'ta', 'name', 'ą®…ą®°ąÆą®£ąÆˆ ą®ŖąÆ†ą®¾ą®±ą®æą®Æą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(33297, 27855, 'en', 'name', 'Pacific Coast University'),
(33298, 27856, 'en', 'name', 'Ashesi University'),
(33299, 27857, 'en', 'name', 'Pacific University Oregon'),
(33300, 27858, 'en', 'name', 'Ashoka University'),
(33301, 27858, 'hi', 'name', 'ą¤…ą¤¶ą„‹ą¤•ą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(33302, 27859, 'en', 'name', 'Paktia University'),
(33303, 27859, 'fa', 'name', 'دانؓگاه پکتیا'),
(33304, 27860, 'en', 'name', 'Shin Ansan University'),
(33305, 27860, 'ko', 'name', 'ģ‹ ģ•ˆģ‚°ėŒ€ķ•™źµ'),
(33306, 27861, 'no_lang_code', 'name', 'Palamuru University'),
(33307, 27861, 'te', 'name', 'పాలమూరు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(33308, 27862, 'en', 'name', 'Shiraz University of Arts'),
(33309, 27862, 'fa', 'name', 'دانؓگاه هنر ؓیراز'),
(33310, 27863, 'en', 'name', 'Pampanga State Agricultural University'),
(33311, 27864, 'en', 'name', 'Shree Guru Gobind Singh Tricentenary University'),
(33312, 27865, 'en', 'name', 'Asia Life University'),
(33313, 27865, 'ko', 'name', 'ė³µģŒģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(33314, 27866, 'en', 'name', 'Asian University for Women'),
(33315, 27866, 'bn', 'name', 'ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ ফর উইমেন'),
(33316, 27867, 'en', 'name', 'Pandit Deendayal Upadhyaya Shekhawati University'),
(33317, 27867, 'hi', 'name', 'पंऔित ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤‰ą¤Ŗą¤¾ą¤§ą„ą¤Æą¤¾ą¤Æ ą¤¶ą„‡ą¤–ą¤¾ą¤µą¤¾ą¤Ÿą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33318, 27868, 'en', 'name', 'Muhammad University of Islam'),
(33319, 27869, 'en', 'name', 'Multimedia University of Kenya'),
(33320, 27870, 'no_lang_code', 'name', 'Shri Venkateshwara University'),
(33321, 27870, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤µą„‡ą¤‚ą¤•ą¤Ÿą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33322, 27871, 'en', 'name', 'Shubun University'),
(33323, 27871, 'ja', 'name', '修文大学'),
(33324, 27872, 'en', 'name', 'Multnomah University'),
(33325, 27873, 'en', 'name', 'Pandit Sundarlal Sharma Open University'),
(33326, 27873, 'hi', 'name', 'ą¤Ŗą¤£ą„ą¤”ą¤æą¤¤ ą¤øą„ą¤Øą„ą¤¦ą¤°ą¤²ą¤¾ą¤² ą¤¶ą¤°ą„ą¤®ą¤¾ (ą¤®ą„ą¤•ą„ą¤¤) ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33327, 27874, 'en', 'name', 'Murmansk State Technical University'),
(33328, 27874, 'ru', 'name', 'ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33329, 27875, 'en', 'name', 'American University of the Caribbean'),
(33330, 27876, 'sw', 'name', 'Chuo Kikuu cha Waislamu Morogoro'),
(33331, 27876, 'en', 'name', 'Muslim University of Morogoro'),
(33332, 27877, 'en', 'name', 'Siddhartha University'),
(33333, 27878, 'en', 'name', 'Muteesa I Royal University'),
(33334, 27879, 'en', 'name', 'Şifa University'),
(33335, 27879, 'tr', 'name', 'Şifa Üniversitesi'),
(33336, 27880, 'en', 'name', 'Islamic Azad University, Bandar Anzali Branch'),
(33337, 27880, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد Ų§Ł†Ų²Ł„ŪŒ'),
(33338, 27881, 'en', 'name', 'Assam Don Bosco University'),
(33339, 27881, 'as', 'name', 'অসম ą¦”ą¦Øą¦¬ā€™ą¦øą§ą¦•ā€™ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(33340, 27882, 'en', 'name', 'Myanmar Aerospace Engineering University'),
(33341, 27882, 'my', 'name', 'မြန်မာနိုင်ငံ į€œį€±į€€į€¼į€±į€¬į€„į€ŗį€øį€”į€¾į€„į€·į€ŗį€”į€¬į€€į€¬į€žį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(33342, 27883, 'en', 'name', 'Islamic Azad University of Arsanjan'),
(33343, 27883, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ارسنجان'),
(33344, 27884, 'en', 'name', 'Papua New Guinea University of Technology'),
(33345, 27885, 'en', 'name', 'Sikkim Manipal University'),
(33346, 27886, 'en', 'name', 'Islamic Azad University of Birjand'),
(33347, 27886, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ ŲØŪŒŲ±Ų¬Ł†ŲÆ'),
(33348, 27887, 'en', 'name', 'Assam Down Town University'),
(33349, 27888, 'no_lang_code', 'name', 'Nagoya Bunri University'),
(33350, 27888, 'ja', 'name', 'åå¤å±‹ę–‡ē†å¤§å­¦'),
(33351, 27889, 'en', 'name', 'Sorbonne University Abu Dhabi'),
(33352, 27889, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲ±ŲØŁˆŁ† أبوظبي'),
(33353, 27890, 'en', 'name', 'Parwan University'),
(33354, 27890, 'fa', 'name', 'دانؓگاه Ł¾Ų±ŁˆŲ§Ł†'),
(33355, 27891, 'en', 'name', 'Nagoya University of Commerce and Business'),
(33356, 27891, 'ja', 'name', 'åå¤å±‹å•†ē§‘å¤§å­¦'),
(33357, 27892, 'en', 'name', 'Nagoya Women''s University'),
(33358, 27892, 'ja', 'name', '名古屋儳子大学'),
(33359, 27893, 'en', 'name', 'Islamic Azad University of Damavand'),
(33360, 27893, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲÆŁ…Ų§ŁˆŁ†ŲÆ'),
(33361, 27894, 'en', 'name', 'Nagoya Zokei University'),
(33362, 27894, 'ja', 'name', '名古屋造形大学'),
(33363, 27895, 'en', 'name', 'Patriot Bible University'),
(33364, 27896, 'en', 'name', 'Nakhon Phanom University'),
(33365, 27896, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø„ąø£ąøžąø™ąø”'),
(33366, 27897, 'en', 'name', 'Islamic Azad University of Garmsar'),
(33367, 27897, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گرمسار'),
(33368, 27898, 'en', 'name', 'Islamic Azad University of Gorgan'),
(33369, 27898, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گرگان'),
(33370, 27899, 'en', 'name', 'Nalanda University'),
(33371, 27899, 'mr', 'name', 'नालंदा ą¤†ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(33372, 27899, 'hi', 'name', 'ą¤Øą¤¾ą¤²ą¤Øą„ą¤¦ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33373, 27899, 'pa', 'name', 'ਨਾਲੰਦਾ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(33374, 27899, 'ta', 'name', 'ą®Øą®¾ą®²ą®ØąÆą®¤ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(33375, 27899, 'te', 'name', 'నలందా ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(33376, 27900, 'en', 'name', 'Nan Jeon University of Science and Technology'),
(33377, 27900, 'zh', 'name', 'å—ę¦®ē§‘ęŠ€å¤§å­ø'),
(33378, 27901, 'en', 'name', 'PEF Private University of Management Vienna'),
(33379, 27901, 'de', 'name', 'PEF Privatuniversität für Management'),
(33380, 27902, 'en', 'name', 'Nan Kai University of Technology'),
(33381, 27902, 'zh', 'name', 'å—é–‹ē§‘ęŠ€å¤§å­ø'),
(33382, 27903, 'en', 'name', 'Islamic Azad University, Komijan Branch'),
(33383, 27903, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ś©Ł…ŪŒŲ¬Ų§Ł†'),
(33384, 27904, 'en', 'name', 'Periyar Maniammai Institute of Science & Technology'),
(33385, 27904, 'ta', 'name', 'ą®ŖąÆ†ą®°ą®æą®Æą®¾ą®°ąÆ ą®®ą®£ą®æą®Æą®®ąÆą®®ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(33386, 27905, 'en', 'name', 'Petre Andrei University of Iași'),
(33387, 27905, 'ro', 'name', 'Universitatea "Petre Andrei" din Iasi'),
(33388, 27906, 'en', 'name', 'Islamic Azad University of Sabzevar'),
(33389, 27906, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سبزوار'),
(33390, 27907, 'en', 'name', 'Sirjan University of Technology'),
(33391, 27907, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų³ŪŒŲ±Ų¬Ų§Ł†'),
(33392, 27908, 'no_lang_code', 'name', 'Naragakuen University'),
(33393, 27908, 'ja', 'name', 'å„ˆč‰Æē”£ę„­å¤§å­¦'),
(33394, 27909, 'en', 'name', 'Naresuan University Hospital'),
(33395, 27909, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ą¹€ąø£ąøØąø§ąø£'),
(33396, 27910, 'en', 'name', 'Auro University'),
(33397, 27911, 'en', 'name', 'Islamic Azad University, Shahinshahr Branch'),
(33398, 27911, 'fa', 'name', 'Ų“Ų§Ł‡ŁŠŁ† Ų“Ł‡Ų±ŲŒŲ“Ų§ŪŒŪŒŁ† ؓهر'),
(33399, 27912, 'en', 'name', 'Islamic Azad University Shahr-e-Rey'),
(33400, 27912, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“Ł‡Ų±Ų±ŪŒ'),
(33401, 27913, 'en', 'name', 'Sirte University'),
(33402, 27913, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³Ų±ŲŖ'),
(33403, 27914, 'en', 'name', 'Islamic Azad University of Shiraz'),
(33404, 27914, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓیراز'),
(33405, 27915, 'en', 'name', 'Islamic Azad University of Tafresh'),
(33406, 27915, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تفرؓ'),
(33407, 27916, 'en', 'name', 'National Agrarian University'),
(33408, 27916, 'es', 'name', 'Universidad Nacional Agraria'),
(33409, 27917, 'tl', 'name', 'Pamantasang Normal ng Pilipinas'),
(33410, 27917, 'en', 'name', 'Philippine Normal University'),
(33411, 27918, 'en', 'name', 'Piedmont International University'),
(33412, 27919, 'en', 'name', 'Piedmont University'),
(33413, 27920, 'en', 'name', 'Pinchot University'),
(33414, 27921, 'en', 'name', 'Baba Ghulam Shah Badshah University'),
(33415, 27921, 'ur', 'name', 'ŲØŲ§ŲØŲ§ ŲŗŁŁ„Ų§Ł… ؓاہ بادؓاہ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(33416, 27921, 'hi', 'name', 'बाबा ą¤—ą¤¼ą„ą¤²ą¤¾ą¤® शाह बादशाह ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(33417, 27922, 'en', 'name', 'Islamic University of Niger'),
(33418, 27922, 'fr', 'name', 'UniversitƩ islamique de say'),
(33419, 27923, 'no_lang_code', 'name', 'Slobomir P University'),
(33420, 27923, 'bs', 'name', 'Slobomir P Univerzitet'),
(33421, 27923, 'sr', 'name', 'Длобомир П Универзитет'),
(33422, 27924, 'en', 'name', 'Baba Mastnath University'),
(33423, 27924, 'hi', 'name', 'बाबा ą¤®ą¤øą„ą¤¤ą¤Øą¤¾ą¤„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33424, 27925, 'en', 'name', 'Point University'),
(33425, 27926, 'no_lang_code', 'name', 'Babu Banarasi Das University'),
(33426, 27926, 'te', 'name', 'బాబు బనారసీ ą°¦ą°¾ą°øą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(33427, 27927, 'en', 'name', 'Bac Ha International University'),
(33428, 27927, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Quốc tįŗæ BįŗÆc HĆ '),
(33429, 27928, 'en', 'name', 'Polish University Abroad'),
(33430, 27929, 'sv', 'name', 'Fƶrsvarshƶgskolan'),
(33431, 27929, 'fi', 'name', 'Maanpuolustuskorkeakoulu'),
(33432, 27929, 'en', 'name', 'National Defence University'),
(33433, 27930, 'en', 'name', 'Baddi University of Emerging Sciences and Technologies'),
(33434, 27930, 'hi', 'name', 'ą¤¬ą¤¦ą„ą¤¦ą„€ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤®ą„‡ą¤°ą„ą¤—ą¤æą¤‚ą¤— ą¤øą¤¾ą¤‡ą¤‚ą¤øą„‡ą¤ø और ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(33435, 27931, 'en', 'name', 'Soegijapranata Catholic University'),
(33436, 27931, 'id', 'name', 'Universitas Katolik Soegijapranata'),
(33437, 27932, 'en', 'name', 'National Defence University'),
(33438, 27932, 'ur', 'name', 'Ł†ŪŒŲ“Ł†Ł„ ŚˆŪŒŁŁ†Ų³ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒā€Ž'),
(33439, 27933, 'en', 'name', 'Sokoto State University'),
(33440, 27934, 'en', 'name', 'Pontifical Lateran University'),
(33441, 27934, 'it', 'name', 'Pontificia UniversitĆ  Lateranense'),
(33442, 27934, 'de', 'name', 'PƤpstliche LateranuniversitƤt'),
(33443, 27934, 'ca', 'name', 'Universitat PontifĆ­cia Lateranense'),
(33444, 27934, 'fr', 'name', 'UniversitƩ pontificale du latran'),
(33445, 27935, 'en', 'name', 'Apollos University'),
(33446, 27936, 'so', 'name', 'Jaamacadda Teknoolajiyadda Somaliland'),
(33447, 27936, 'en', 'name', 'Somaliland University of Technology'),
(33448, 27937, 'no_lang_code', 'name', 'Baekseok Arts University'),
(33449, 27937, 'ko', 'name', 'ė°±ģ„ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(33450, 27938, 'en', 'name', 'Baekseok Culture University'),
(33451, 27938, 'ko', 'name', 'ė°±ģ„ė¬øķ™”ėŒ€ķ•™źµ'),
(33452, 27939, 'en', 'name', 'Pontifical University of Saint Thomas Aquinas'),
(33453, 27939, 'it', 'name', 'Pontificia UniversitĆ  San Tommaso d''Aquino'),
(33454, 27939, 'de', 'name', 'PƤpstliche UniversitƤt Heiliger Thomas von Aquin'),
(33455, 27939, 'ca', 'name', 'Universitat Pontifƭcia de Sant TomƔs d''Aquino'),
(33456, 27939, 'fr', 'name', 'UniversitƩ pontificale saint-thomas-d''aquin'),
(33457, 27940, 'en', 'name', 'Baewha Women''s University'),
(33458, 27940, 'ko', 'name', 'ė°°ķ™”ģ—¬ģžėŒ€ķ•™źµ'),
(33459, 27941, 'en', 'name', 'National Experimental University of the Armed Forces'),
(33460, 27941, 'es', 'name', 'Universidad Nacional Experimental PolitƩcnica de la Fuerza Armada Bolivariana'),
(33461, 27942, 'en', 'name', 'National Intelligence University'),
(33462, 27943, 'en', 'name', 'National Law University and Judicial Academy'),
(33463, 27944, 'en', 'name', 'Bakke Graduate University'),
(33464, 27945, 'fr', 'name', 'FacultƩ pontificale de thƩologie saint-bonaventure'),
(33465, 27945, 'en', 'name', 'Pontifical University of St. Bonaventure'),
(33466, 27945, 'it', 'name', 'Pontificia FacoltĆ  Teologica San Bonaventura'),
(33467, 27946, 'en', 'name', 'Ittihad University'),
(33468, 27947, 'en', 'name', 'Pontifical University of the Holy Cross'),
(33469, 27947, 'it', 'name', 'Pontificia UniversitĆ  della Santa Croce'),
(33470, 27947, 'de', 'name', 'PƤpstliche UniversitƤt vom Heiligen Kreuz'),
(33471, 27947, 'ca', 'name', 'Universitat PontifĆ­cia de la Santa Creu'),
(33472, 27947, 'fr', 'name', 'UniversitƩ pontificale de la sainte-croix'),
(33473, 27948, 'en', 'name', 'Baku Slavic University'),
(33474, 27948, 'az', 'name', 'Bakı Slavyan Universiteti'),
(33475, 27948, 'ru', 'name', 'Бакинский ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33476, 27949, 'en', 'name', 'Pontifical Urban University'),
(33477, 27949, 'it', 'name', 'Pontificia UniversitĆ  Urbaniana'),
(33478, 27949, 'de', 'name', 'PƤpstliche UniversitƤt Urbaniana'),
(33479, 27949, 'fr', 'name', 'UniversitƩ pontificale urbaniana'),
(33480, 27950, 'no_lang_code', 'name', 'Souphanouvong University'),
(33481, 27950, 'lo', 'name', 'ąŗ”ąŗ°ąŗ«ąŗ²ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ą»„ąŗ„ąŗŖąŗøąŗžąŗ²ąŗ™ąŗøąŗ§ąŗ»ąŗ‡'),
(33482, 27951, 'en', 'name', 'Bamyan University'),
(33483, 27951, 'ps', 'name', 'ŲÆŲØŲ§Ł…ŪŒŲ§Ł† Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(33484, 27951, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲØŲ§Ł…ŪŒŲ§Ł†ā€Ž'),
(33485, 27952, 'en', 'name', 'National Ribat University'),
(33486, 27952, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الرباط Ų§Ł„ŁˆŲ·Ł†ŁŠ'),
(33487, 27953, 'en', 'name', 'National Taipei University of Business'),
(33488, 27953, 'zh', 'name', 'åœ‹ē«‹č‡ŗåŒ—å•†ę„­å¤§å­ø'),
(33489, 27954, 'en', 'name', 'Bangladesh Islami University'),
(33490, 27954, 'bn', 'name', 'বাংলাদেশ ইসলামী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(33491, 27955, 'en', 'name', 'Presbyterian University of East Africa'),
(33492, 27956, 'en', 'name', 'South Eastern Kenya University'),
(33493, 27957, 'en', 'name', 'Southern Luzon State University'),
(33494, 27958, 'en', 'name', 'Izmir University'),
(33495, 27958, 'tr', 'name', 'İzmir Üniversitesi'),
(33496, 27959, 'en', 'name', 'National Universities Commission'),
(33497, 27960, 'en', 'name', 'Southern University Law Center'),
(33498, 27961, 'en', 'name', 'Baptist University of the AmƩricas'),
(33499, 27962, 'en', 'name', 'Jagadguru Rambhadracharya Handicapped University'),
(33500, 27962, 'hi', 'name', 'ą¤œą¤—ą¤¦ą„ą¤—ą„ą¤°ą„ ą¤°ą¤¾ą¤®ą¤­ą¤¦ą„ą¤°ą¤¾ą¤šą¤¾ą¤°ą„ą¤Æ विकलांग ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33501, 27962, 'gu', 'name', 'ąŖœąŖ—ąŖ¦ą«ąŖ—ą«ąŖ°ą« ąŖ°ąŖ¾ąŖ®ąŖ­ąŖ¦ą«ąŖ°ąŖ¾ąŖšąŖ¾ąŖ°ą«ąŖÆ વિકલાંગ ąŖµąŖæąŖ¶ą«ąŖµąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖ²ąŖÆ'),
(33502, 27963, 'en', 'name', 'Southwest University of Visual Arts'),
(33503, 27964, 'en', 'name', 'Jain University'),
(33504, 27965, 'en', 'name', 'Bastar University'),
(33505, 27965, 'hi', 'name', 'ą¤¬ą¤øą„ą¤¤ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33506, 27966, 'en', 'name', 'Private University of Trujillo'),
(33507, 27966, 'es', 'name', 'Universidad Privada de Trujillo'),
(33508, 27967, 'en', 'name', 'Spartan Health Sciences University'),
(33509, 27968, 'en', 'name', 'National University of Advanced Legal Studies'),
(33510, 27969, 'en', 'name', 'Bataan Peninsula State University'),
(33511, 27970, 'en', 'name', 'Spicer Adventist University'),
(33512, 27971, 'so', 'name', 'Jaamacada Jamhuriya'),
(33513, 27971, 'en', 'name', 'Jamhuriya University of Science and Technology'),
(33514, 27971, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł…Ł‡ŁˆŲ±ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(33515, 27972, 'en', 'name', 'Sri Guru Granth Sahib World University'),
(33516, 27972, 'pa', 'name', 'ąØøą©ąØ°ą©€ ਗੁਰੂ ąØ—ą©ąØ°ą©°ąØ„ ਸਾਹਿਬ ਵਰਲਔ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(33517, 27973, 'so', 'name', 'Jaamacadda Puntland'),
(33518, 27973, 'en', 'name', 'Puntland State University'),
(33519, 27974, 'en', 'name', 'Pwani University'),
(33520, 27975, 'en', 'name', 'National University of Music Bucharest'),
(33521, 27975, 'ro', 'name', 'Universitatea Națională de Muzică București'),
(33522, 27976, 'en', 'name', 'Sri Sai University'),
(33523, 27977, 'no_lang_code', 'name', 'Janus University'),
(33524, 27978, 'en', 'name', 'Pyongyang Medical University'),
(33525, 27978, 'ko', 'name', 'ķ‰ģ–‘ģ˜ķ•™ėŒ€ķ•™'),
(33526, 27979, 'en', 'name', 'St. John International University'),
(33527, 27980, 'en', 'name', 'Japan University of Economics'),
(33528, 27980, 'ja', 'name', 'ę—„ęœ¬ēµŒęøˆå¤§å­¦'),
(33529, 27981, 'en', 'name', 'National University of Saint Anthony the Abbot in Cuzco'),
(33530, 27981, 'es', 'name', 'Universidad Nacional de San Antonio Abad del Cusco'),
(33531, 27982, 'sm', 'name', 'Le Iunivesite Aoao o Samoa'),
(33532, 27982, 'en', 'name', 'National University of Samoa'),
(33533, 27983, 'en', 'name', 'Jaramogi Oginga Odinga University of Science and Technology'),
(33534, 27984, 'en', 'name', 'Pyongyang University of Science and Technology'),
(33535, 27984, 'ko', 'name', 'ķ‰ģ–‘ź³¼ķ•™źø°ģˆ ėŒ€ķ•™'),
(33536, 27985, 'en', 'name', 'National University of the Chaco Austral'),
(33537, 27985, 'es', 'name', 'Universidad Nacional del Chaco Austral'),
(33538, 27986, 'en', 'name', 'Qarshi University'),
(33539, 27986, 'ur', 'name', 'Ł‚Ų±Ų“ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(33540, 27987, 'en', 'name', 'Jawaharlal Nehru Architecture and Fine Arts University'),
(33541, 27987, 'ne', 'name', 'जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤µą¤¾ą¤øą„ą¤¤ą„ą¤•ą¤²ą¤¾ तऄा ललितकला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33542, 27988, 'en', 'name', 'St. John''s University'),
(33543, 27988, 'zh', 'name', 'č–ē“„ēæ°ē§‘ęŠ€å¤§å­ø'),
(33544, 27989, 'sw', 'name', 'Chuo Kikuu cha Mtakatifu Joseph Tanzania'),
(33545, 27989, 'en', 'name', 'St. Joseph University In Tanzania'),
(33546, 27990, 'en', 'name', 'Hainan Tropical Ocean University'),
(33547, 27990, 'zh', 'name', 'ęµ·å—ēƒ­åø¦ęµ·ę“‹å­¦é™¢'),
(33548, 27991, 'en', 'name', 'St. Lawrence University'),
(33549, 27992, 'en', 'name', 'NationsUniversity'),
(33550, 27993, 'en', 'name', 'Quality Leadership University Panama'),
(33551, 27994, 'en', 'name', 'JECRC University'),
(33552, 27995, 'en', 'name', 'Quảng Bình University'),
(33553, 27995, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Quįŗ£ng BƬnh'),
(33554, 27996, 'en', 'name', 'St. Martinus University'),
(33555, 27997, 'en', 'name', 'St. Mary''s Seminary and University'),
(33556, 27998, 'en', 'name', 'Peking University International Hospital'),
(33557, 27998, 'zh', 'name', '北大国际医院'),
(33558, 27999, 'en', 'name', 'Nayanova University'),
(33559, 27999, 'ru', 'name', 'Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(33560, 28000, 'en', 'name', 'Nayoro City University'),
(33561, 28000, 'ja', 'name', 'ååÆ„åø‚ē«‹å¤§å­¦'),
(33562, 28001, 'en', 'name', 'Quchan University of Advanced Technology'),
(33563, 28001, 'fa', 'name', 'دانؓگاه Ł…Ł‡Ł†ŲÆŲ³ŪŒ ŁŁ†Ų§ŁˆŲ±ŪŒā€ŒŁ‡Ų§ŪŒ Ł†ŁˆŪŒŁ† Ł‚ŁˆŚ†Ų§Ł†'),
(33564, 28002, 'en', 'name', 'Jharkhand Rai University'),
(33565, 28003, 'en', 'name', 'St. Paul University Dumaguete'),
(33566, 28004, 'en', 'name', 'Neisse University'),
(33567, 28005, 'so', 'name', 'Jig Jiga'),
(33568, 28005, 'no_lang_code', 'name', 'Jigjiga University'),
(33569, 28006, 'en', 'name', 'Benadir University'),
(33570, 28006, 'so', 'name', 'Jaamacada Banaadir'),
(33571, 28006, 'ar', 'name', 'جامعـــة ŲØŁ†Ł€Ł€Ł€Ų§ŲÆŲ±ā€Ž'),
(33572, 28007, 'en', 'name', 'Jinwen University of Science and Technology'),
(33573, 28007, 'zh', 'name', 'ę™Æę–‡ē§‘ęŠ€å¤§å­ø'),
(33574, 28008, 'en', 'name', 'Rajasthan Technical University'),
(33575, 28008, 'hi', 'name', 'ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą¤¾ą¤²ą¤Æ'),
(33576, 28009, 'en', 'name', 'St. Theresa''s Medical University of Yerevan'),
(33577, 28010, 'en', 'name', 'St. Thomas University'),
(33578, 28011, 'en', 'name', 'Jodhpur National University'),
(33579, 28011, 'hi', 'name', 'ą¤œą„‹ą¤§ą¤Ŗą„ą¤° ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33580, 28012, 'en', 'name', 'Rajin University of Marine Transport'),
(33581, 28012, 'ko', 'name', 'ė‚˜ģ§„ķ•“ģš“ėŒ€ķ•™ ė§Œė“¤źø°'),
(33582, 28013, 'en', 'name', 'John Cabot University'),
(33583, 28014, 'en', 'name', 'New Era University'),
(33584, 28015, 'en', 'name', 'Ras al-Khaimah Medical and Health Sciences University'),
(33585, 28016, 'en', 'name', 'New Mexico State University Carlsbad'),
(33586, 28017, 'en', 'name', 'Bethany Global University'),
(33587, 28018, 'de', 'name', 'Duale Hochschule Baden-Württemberg Ravensburg'),
(33588, 28018, 'en', 'name', 'Ravensburg University of Cooperative Education'),
(33589, 28019, 'en', 'name', 'John Garang Memorial University of Science and Technology'),
(33590, 28020, 'en', 'name', 'Rayalaseema University'),
(33591, 28020, 'te', 'name', 'రాయలసీమ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(33592, 28021, 'en', 'name', 'St. Matthew''s University'),
(33593, 28022, 'en', 'name', 'John Paul the Great Catholic University'),
(33594, 28023, 'en', 'name', 'Beykent University'),
(33595, 28023, 'tr', 'name', 'Beykent Üniversitesi'),
(33596, 28024, 'en', 'name', 'Bhagwant University'),
(33597, 28024, 'hi', 'name', 'भगवंत ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(33598, 28025, 'en', 'name', 'Johnson University'),
(33599, 28026, 'en', 'name', 'Nigerian University Games Association'),
(33600, 28027, 'en', 'name', 'Johnson University Florida'),
(33601, 28028, 'de', 'name', 'Hochschule RheinMain'),
(33602, 28028, 'en', 'name', 'RheinMain University of Applied Sciences'),
(33603, 28029, 'en', 'name', 'NIILM University'),
(33604, 28029, 'hi', 'name', 'ą¤Øą„€ą¤²ą¤® ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(33605, 28030, 'en', 'name', 'Nilai University'),
(33606, 28030, 'ms', 'name', 'Universiti Nilai'),
(33607, 28031, 'de', 'name', 'Hochschule Rhein-Waal'),
(33608, 28031, 'en', 'name', 'Rhine-Waal University of Applied Sciences'),
(33609, 28032, 'en', 'name', 'Riara University'),
(33610, 28033, 'en', 'name', 'Rivier University'),
(33611, 28033, 'fr', 'name', 'UniversitƩ rivier'),
(33612, 28034, 'en', 'name', 'RK University'),
(33613, 28035, 'en', 'name', 'Bikaner Technical University'),
(33614, 28035, 'hi', 'name', 'ą¤¬ą„€ą¤•ą¤¾ą¤Øą„‡ą¤° ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33615, 28036, 'en', 'name', 'Jose Rizal Memorial State University'),
(33616, 28037, 'en', 'name', 'Robert Morris University Illinois'),
(33617, 28038, 'en', 'name', 'Romblon State University'),
(33618, 28039, 'en', 'name', 'Junagadh Agricultural University'),
(33619, 28039, 'gu', 'name', 'ąŖ•ą«ƒąŖ·ąŖæ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, ąŖœą«‚ąŖØąŖ¾ąŖ—ąŖ¢'),
(33620, 28040, 'de', 'name', 'Hochschule für Musik und Theater Rostock'),
(33621, 28040, 'en', 'name', 'Rostock University of Music and Theatre'),
(33622, 28041, 'de', 'name', 'Hochschule für Forstwirtschaft Rottenburg'),
(33623, 28041, 'en', 'name', 'Rottenburg University of Applied Forest Sciences');
INSERT INTO `ror_settings` VALUES
(33624, 28042, 'en', 'name', 'Noakhali Science and Technology University'),
(33625, 28042, 'bn', 'name', 'নোয়াখালী ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(33626, 28043, 'en', 'name', 'Royal University of Fine Arts'),
(33627, 28043, 'fr', 'name', 'UniversitƩ royale des beaux-arts'),
(33628, 28043, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įžœįž·įž…įž·įžįŸ’įžšįžŸįž·įž›įŸ’įž”įŸˆ'),
(33629, 28044, 'en', 'name', 'Sultan Kudarat State University'),
(33630, 28045, 'en', 'name', 'Russian Islamic University'),
(33631, 28045, 'ru', 'name', 'Российский исламский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(33632, 28046, 'en', 'name', 'Swinburne University of Technology Sarawak Campus'),
(33633, 28047, 'en', 'name', 'Japan Center for Michigan Universities'),
(33634, 28047, 'ja', 'name', 'ćƒŸć‚·ć‚¬ćƒ³å·žē«‹å¤§å­¦é€£åˆę—„ęœ¬ć‚»ćƒ³ć‚æćƒ¼'),
(33635, 28048, 'en', 'name', 'King’s University'),
(33636, 28049, 'en', 'name', 'North Greenville University'),
(33637, 28050, 'en', 'name', 'North Sichuan Medical University'),
(33638, 28050, 'zh', 'name', '川北医学院'),
(33639, 28051, 'en', 'name', 'Sacred Heart University'),
(33640, 28052, 'en', 'name', 'Saigon Technology University'),
(33641, 28052, 'vi', 'name', 'ĐẔi hį»c CĆ“ng nghệ SĆ i Gòn'),
(33642, 28053, 'en', 'name', 'Saigon University'),
(33643, 28053, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c SĆ i Gòn'),
(33644, 28053, 'fr', 'name', 'UniversitƩ de saigon'),
(33645, 28053, 'zh', 'name', '脿蓔大学'),
(33646, 28054, 'de', 'name', 'Kalaidos Fachhochschule'),
(33647, 28054, 'en', 'name', 'Kalaidos University of Applied Sciences'),
(33648, 28055, 'en', 'name', 'Saint Patrick''s Seminary and University'),
(33649, 28056, 'en', 'name', 'Saigon International University'),
(33650, 28056, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Quốc tįŗæ SĆ i Gòn'),
(33651, 28057, 'en', 'name', 'Saint Petersburg State University of Economics'),
(33652, 28057, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ сервиса Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(33653, 28058, 'no_lang_code', 'name', 'Saku University'),
(33654, 28058, 'ja', 'name', '佐久大学'),
(33655, 28059, 'en', 'name', 'Northland International University'),
(33656, 28060, 'en', 'name', 'Kamianets-Podіlskyi Ivan Ohiienko National University'),
(33657, 28060, 'pl', 'name', 'Ukraiński Uniwersytet Państwowy w Kamieńcu Podolskim'),
(33658, 28060, 'uk', 'name', 'Кам''ŃŠ½ŠµŃ†ŃŒ-ŠŸŠ¾Š“Ń–Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана ŠžŠ³Ń–єнка'),
(33659, 28060, 'ru', 'name', 'ŠšŠ°Š¼ŠµŠ½ŠµŃ†-ПоГольский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33660, 28061, 'en', 'name', 'Bushnell University'),
(33661, 28062, 'en', 'name', 'Salam University'),
(33662, 28062, 'ps', 'name', 'سلام Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†ā€Ž'),
(33663, 28062, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų³Ł„Ų§Ł…ā€Ž)'),
(33664, 28063, 'de', 'name', 'PƤpstliche UniversitƤt der Salesianer'),
(33665, 28063, 'en', 'name', 'Salesian Pontifical University'),
(33666, 28063, 'it', 'name', 'UniversitĆ  Pontificia Salesiana'),
(33667, 28063, 'fr', 'name', 'UniversitƩ pontificale salƩsienne'),
(33668, 28064, 'en', 'name', 'Kansai University of Nursing and Health Sciences'),
(33669, 28064, 'ja', 'name', 'é–¢č„æēœ‹č­·åŒ»ē™‚å¤§å­¦'),
(33670, 28065, 'en', 'name', 'Notre Dame of Dadiangas University'),
(33671, 28066, 'en', 'name', 'Kansai University of Welfare Sciences'),
(33672, 28066, 'ja', 'name', 'é–¢č„æē¦ē„‰ē§‘å­¦å¤§å­¦'),
(33673, 28067, 'en', 'name', 'Thorneloe University'),
(33674, 28068, 'en', 'name', 'Nueva Ecija University of Science and Technology'),
(33675, 28068, 'tl', 'name', 'Pamantasan ng Nueva Ecija sa Agham at Teknolohiya'),
(33676, 28069, 'so', 'name', 'Jaamacadda Nugaal'),
(33677, 28069, 'en', 'name', 'Nugaal University'),
(33678, 28070, 'nl', 'name', 'Nyenrode Business Universiteit'),
(33679, 28070, 'en', 'name', 'Nyenrode Business University'),
(33680, 28071, 'en', 'name', 'Oaksterdam University'),
(33681, 28072, 'en', 'name', 'Thunchath Ezhuthachan Malayalam University'),
(33682, 28072, 'ta', 'name', 'ą®¤ąÆą®žąÆą®šą®¤ąÆą®¤ąÆ ą®Žą®“ąÆą®¤ąÆą®¤ą®šąÆą®šą®©ąÆ மலையாள ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(33683, 28072, 'ml', 'name', 'ą“¤ąµą“žąµą“šą“¤ąµą“¤ąµ ą“Žą““ąµą“¤ąµą“¤ą“šąµą“›ąµ» ą“®ą“²ą“Æą“¾ą“³ą“‚ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(33684, 28073, 'en', 'name', 'Syrian Private University'),
(33685, 28073, 'ar', 'name', 'الجامعة Ų§Ł„Ų³ŁˆŲ±ŁŠŲ© الخاصة'),
(33686, 28074, 'en', 'name', 'Sanya University'),
(33687, 28074, 'zh', 'name', 'äø‰äŗšå­¦é™¢'),
(33688, 28075, 'en', 'name', 'Tabarestan University'),
(33689, 28075, 'fa', 'name', 'مؤسسه Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ طبرستان'),
(33690, 28076, 'no_lang_code', 'name', 'Sapporo Ōtani University'),
(33691, 28076, 'ja', 'name', '札幌大谷大学'),
(33692, 28077, 'en', 'name', 'Oduduwa University'),
(33693, 28078, 'en', 'name', 'Sarguja University'),
(33694, 28078, 'hi', 'name', 'ą¤øą¤°ą¤—ą„ą¤œą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33695, 28079, 'no_lang_code', 'name', 'Oikos University'),
(33696, 28080, 'en', 'name', 'Tokyo Christian University'),
(33697, 28080, 'ja', 'name', 'ę±äŗ¬åŸŗē£ę•™å¤§å­¦'),
(33698, 28081, 'en', 'name', 'Tabriz Islamic Arts University'),
(33699, 28081, 'fa', 'name', 'دانؓگاه هنر Ų§Ų³Ł„Ų§Ł…ŪŒ تبریز'),
(33700, 28082, 'fr', 'name', 'UniversitƩ des Montagnes'),
(33701, 28083, 'en', 'name', 'Nagaoka University'),
(33702, 28083, 'ja', 'name', '長岔大学'),
(33703, 28084, 'en', 'name', 'Tokyo Fuji University'),
(33704, 28084, 'ja', 'name', 'ę±äŗ¬åÆŒå£«å¤§å­¦'),
(33705, 28085, 'en', 'name', 'Oklahoma State University Institute of Technology'),
(33706, 28086, 'en', 'name', 'Olivet University'),
(33707, 28087, 'en', 'name', 'Tokyo Health Care University'),
(33708, 28087, 'ja', 'name', 'ę±äŗ¬åŒ»ē™‚äæå„å¤§å­¦'),
(33709, 28088, 'en', 'name', 'Tafila Technical University'),
(33710, 28088, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų·ŁŁŠŁ„Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(33711, 28089, 'en', 'name', 'Ontario Confederation of University Faculty Associations'),
(33712, 28090, 'fr', 'name', 'Centre de demande d’admission aux universitĆ©s de l’Ontario'),
(33713, 28090, 'en', 'name', 'Ontario Universities’ Application Centre'),
(33714, 28091, 'en', 'name', 'European University of Scents and Flavors'),
(33715, 28091, 'fr', 'name', 'UniversitƩ EuropƩenne des Senteurs & Saveur'),
(33716, 28092, 'en', 'name', 'Open Universities Australia'),
(33717, 28093, 'en', 'name', 'Tafresh University'),
(33718, 28093, 'fa', 'name', 'دانؓگاه تفرؓ'),
(33719, 28094, 'en', 'name', 'Open University Malaysia'),
(33720, 28094, 'ms', 'name', 'Universiti Terbuka Malaysia'),
(33721, 28094, 'zh', 'name', 'é©¬ę„č„æäŗšå¼€ę”¾å¤§å­¦'),
(33722, 28095, 'en', 'name', 'Torch Trinity Graduate University'),
(33723, 28095, 'ko', 'name', 'ķšƒė¶ˆķŠøė¦¬ė‹ˆķ‹°ģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(33724, 28096, 'fr', 'name', 'UniversitƩ Internationale de Casablanca'),
(33725, 28097, 'en', 'name', 'Taipei City University of Science and Technology'),
(33726, 28097, 'zh', 'name', 'č‡ŗåŒ—åŸŽåø‚ē§‘ęŠ€å¤§å­ø'),
(33727, 28098, 'sw', 'name', 'Chuo Kikuu cha Kumbukumbu cha Sebastian Kolowa'),
(33728, 28098, 'en', 'name', 'Sebastian Kolowa Memorial University'),
(33729, 28099, 'fr', 'name', 'UniversitƩ Nantes Angers Le Mans'),
(33730, 28100, 'en', 'name', 'Taiwan Comprehensive University System'),
(33731, 28100, 'zh', 'name', 'å°ē£ē¶œåˆå¤§å­øē³»ēµ±'),
(33732, 28101, 'en', 'name', 'Torrens University Australia'),
(33733, 28102, 'en', 'name', 'SEGi University'),
(33734, 28102, 'ms', 'name', 'Universiti SEGi'),
(33735, 28103, 'en', 'name', 'Taiwan Hospitality and Tourism University'),
(33736, 28103, 'zh', 'name', '臺灣觀光學院'),
(33737, 28104, 'no_lang_code', 'name', 'University of Fukuchiyama'),
(33738, 28104, 'ja', 'name', 'ē¦ēŸ„å±±å…¬ē«‹å¤§å­¦'),
(33739, 28105, 'zh', 'name', 'Taiwan Shoufu University'),
(33740, 28106, 'sq', 'name', 'Universiteti Pavarƫsia Vlorƫ'),
(33741, 28106, 'en', 'name', 'University Pavaresia Vlore'),
(33742, 28107, 'en', 'name', 'Seoul Theological University'),
(33743, 28107, 'ko', 'name', 'ģ„œģšøģ‹ ķ•™ėŒ€ķ•™źµ'),
(33744, 28108, 'en', 'name', 'Shaheed Mohtarma Benazir Bhutto Medical University'),
(33745, 28108, 'sd', 'name', 'Ų“Ł‡ŁŠŲÆ محترمه ŲØŁŠŁ†ŲøŁŠŲ± Ś€Ł½Łˆ Ł…ŁŠŚŠŁŠŚŖŁ„ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(33746, 28108, 'ur', 'name', 'ؓہید محترمہ ŲØŪ’ Ł†ŲøŪŒŲ± بھٹو Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(33747, 28109, 'en', 'name', 'Sultan Sharif Ali Islamic University'),
(33748, 28109, 'ms', 'name', 'Universiti Islam Sultan Sharif Ali'),
(33749, 28110, 'en', 'name', 'Shaoyang University'),
(33750, 28111, 'no_lang_code', 'name', 'Shaqra University'),
(33751, 28111, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ؓقراؔ'),
(33752, 28112, 'en', 'name', 'Technological University of Tajikistan'),
(33753, 28112, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø техникии Тоҷикистон ба номи М.ŠžŃŠøŠ¼Ó£'),
(33754, 28112, 'ru', 'name', 'ТаГжикский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. ŠžŃŠøŠ¼Šø'),
(33755, 28113, 'en', 'name', 'Shenzhen Radio and TV University'),
(33756, 28113, 'zh', 'name', 'ę·±åœ³å¹æę’­ē”µč§†å¤§å­¦'),
(33757, 28114, 'en', 'name', 'Universities at Medway'),
(33758, 28115, 'en', 'name', 'University Academy Holbeach'),
(33759, 28116, 'en', 'name', 'Takasaki University of Commerce'),
(33760, 28116, 'ja', 'name', 'é«˜å“Žå•†ē§‘å¤§å­¦'),
(33761, 28117, 'en', 'name', 'Takming University of Science and Technology'),
(33762, 28117, 'zh', 'name', 'å¾·ę˜Žč²”ē¶“ē§‘ęŠ€å¤§å­ø'),
(33763, 28118, 'en', 'name', 'TransWorld University'),
(33764, 28118, 'zh', 'name', 'ē’°ēƒē§‘ęŠ€å¤§å­ø'),
(33765, 28119, 'en', 'name', 'Trinity Southwest University'),
(33766, 28120, 'en', 'name', 'University of East Yangon'),
(33767, 28120, 'my', 'name', 'ရန်ကုန် နရှေ့ပိုင်း į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(33768, 28121, 'en', 'name', 'Shevchenko Transnistria State University'),
(33769, 28121, 'ro', 'name', 'Universitatea de Stat din Transnistria'),
(33770, 28121, 'ru', 'name', 'ŠŸŃ€ŠøŠ“Š½ŠµŃŃ‚Ń€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Тараса Шевченко'),
(33771, 28122, 'en', 'name', 'University of Economics and Innovation'),
(33772, 28122, 'pl', 'name', 'Wyższa Szkoła Ekonomii i Innowacjii w Lublinie'),
(33773, 28123, 'en', 'name', 'Tamil Nadu Teachers Education University'),
(33774, 28123, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®†ą®šą®æą®°ą®æą®Æą®°ąÆ ą®•ą®²ąÆą®µą®æą®Æą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(33775, 28124, 'en', 'name', 'Tampere University of Applied Sciences'),
(33776, 28124, 'fi', 'name', 'Tampereen Ammattikorkeakoulu'),
(33777, 28125, 'en', 'name', 'University of Energy and Natural Resources'),
(33778, 28126, 'en', 'name', 'University of Fairfax'),
(33779, 28127, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c TĆ¢n Tįŗ”o'),
(33780, 28127, 'en', 'name', 'TĆ¢n Tįŗ”o University'),
(33781, 28128, 'en', 'name', 'Turkmen Agricultural University Named after S.A. Niyazov'),
(33782, 28128, 'ru', 'name', 'Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. А. ŠŠøŃŠ·Š¾Š²Š°'),
(33783, 28129, 'en', 'name', 'Tanzania Commission for Universities'),
(33784, 28130, 'de', 'name', 'Hochschule für Fernsehen und Film München'),
(33785, 28130, 'en', 'name', 'University of Television and Film Munich'),
(33786, 28131, 'en', 'name', 'U15 Group of Canadian Research Universities'),
(33787, 28132, 'en', 'name', 'Taungoo University'),
(33788, 28132, 'my', 'name', 'į€į€±į€¬į€„į€ŗį€„į€°į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(33789, 28133, 'no_lang_code', 'name', 'Uekusa Gakuen University'),
(33790, 28133, 'ja', 'name', 'ę¤č‰å­¦åœ’å¤§å­¦'),
(33791, 28134, 'en', 'name', 'Uganda Pentecostal University'),
(33792, 28135, 'en', 'name', 'University of the East Ramon Magsaysay Memorial Medical Center'),
(33793, 28136, 'en', 'name', 'Techno Global University'),
(33794, 28136, 'hi', 'name', 'ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ ą¤—ą„ą¤²ą„‹ą¤¬ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€, ą¤øą¤æą¤°ą„‹ą¤‚ą¤œ'),
(33795, 28137, 'en', 'name', 'University Hospital'),
(33796, 28138, 'en', 'name', 'Ukrainian Free University'),
(33797, 28138, 'de', 'name', 'Ukrainische Freie Universität München'),
(33798, 28139, 'en', 'name', 'Children''s Hospital of Western Ontario'),
(33799, 28140, 'no_lang_code', 'name', 'University Hospital Center Dr DragiÅ”a MiÅ”ović'),
(33800, 28140, 'sr', 'name', 'ŠšŠ»ŠøŠ½ŠøŃ‡ŠŗŠ¾-болнички центар Др Š”Ń€Š°Š³ŠøŃˆŠ° ŠœŠøŃˆŠ¾Š²ŠøŃ›-Š”ŠµŠ“ŠøŃšŠµ'),
(33801, 28141, 'en', 'name', 'University Hospital of Oran'),
(33802, 28141, 'ar', 'name', 'مستؓفى ŁˆŁ‡Ų±Ų§Ł† Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(33803, 28142, 'en', 'name', 'University of Goma'),
(33804, 28142, 'fr', 'name', 'UniversitƩ de goma'),
(33805, 28143, 'no_lang_code', 'name', 'University of Goroka'),
(33806, 28144, 'en', 'name', 'University of Guelph-Humber'),
(33807, 28145, 'so', 'name', 'Jaamacadda Hargeysa'),
(33808, 28145, 'en', 'name', 'University of Hargeisa'),
(33809, 28145, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‡Ų±Ų¬ŁŠŲ³Ų§'),
(33810, 28146, 'en', 'name', 'University of the Holy Quran and Islamic Sciences'),
(33811, 28146, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القرآن Ų§Ł„ŁƒŲ±ŁŠŁ… ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(33812, 28147, 'en', 'name', 'United Methodist University'),
(33813, 28148, 'en', 'name', 'University of the Philippines Open University'),
(33814, 28149, 'en', 'name', 'United States University'),
(33815, 28150, 'no_lang_code', 'name', 'Telangana University'),
(33816, 28150, 'te', 'name', 'తెలంగాణ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(33817, 28151, 'en', 'name', 'Field Studies Council'),
(33818, 28152, 'no_lang_code', 'name', 'Universal Research Group (Pakistan)'),
(33819, 28153, 'en', 'name', 'University Medical Center'),
(33820, 28154, 'es', 'name', 'Universidad Autónoma de Santa Ana'),
(33821, 28155, 'en', 'name', 'University of Health Sciences Antigua'),
(33822, 28156, 'en', 'name', 'University of Applied Arts Vienna'),
(33823, 28156, 'de', 'name', 'Universität für angewandte Kunst Wien'),
(33824, 28157, 'en', 'name', 'Tenri Health Care University'),
(33825, 28157, 'ja', 'name', 'å¤©ē†åŒ»ē™‚å¤§å­¦'),
(33826, 28158, 'en', 'name', 'University of the Potomac'),
(33827, 28159, 'sw', 'name', 'Chuo Kikuu cha Teofilo Kisanji'),
(33828, 28159, 'no_lang_code', 'name', 'Teofilo Kisanji University'),
(33829, 28160, 'en', 'name', 'University of Horticultural Sciences Bagalkote'),
(33830, 28160, 'kn', 'name', 'ą²¤ą³‹ą²Ÿą²—ą²¾ą²°ą²æą²•ą³† ą²µą²æą²œą³ą²žą²¾ą²Øą²—ą²³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ą²¬ą²¾ą²—ą²²ą²•ą³‹ą²Ÿą³†'),
(33831, 28161, 'de', 'name', 'Hochschule für Angewandte Wissenschaften Hof'),
(33832, 28161, 'en', 'name', 'Hof University of Applied Sciences'),
(33833, 28162, 'de', 'name', 'Hochschule für angewandte Wissenschaften Landshut'),
(33834, 28162, 'en', 'name', 'University of Applied Sciences Landshut'),
(33835, 28163, 'en', 'name', 'University of Tifariti'),
(33836, 28163, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© تيفاريتي'),
(33837, 28164, 'en', 'name', 'Novi Sad Open University'),
(33838, 28164, 'sr', 'name', 'ŠŠ¾Š²Š¾ŃŠ°Š“ŃŠŗŠø отворени ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚'),
(33839, 28165, 'en', 'name', 'University of Traditional Medicine, Mandalay'),
(33840, 28165, 'my', 'name', 'į€į€­į€Æį€„į€ŗį€øį€›į€„į€ŗį€øā€Œį€†į€±į€øį€žį€­į€•į€¹į€•į€¶ā€Œį€€į€»į€±į€¬į€„į€ŗį€ø'),
(33841, 28166, 'en', 'name', 'American University of Iraq Sulaimani'),
(33842, 28166, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ų§Ł„Ų³Ł„ŁŠŁ…Ų§Ł†ŁŠŲ©'),
(33843, 28167, 'en', 'name', 'University of Tripoli Lebanon'),
(33844, 28167, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طرابلس لبنان'),
(33845, 28168, 'en', 'name', 'The American University of Vietnam'),
(33846, 28168, 'vi', 'name', 'ĐẔi hį»c Mỹ tįŗ”i Việt Nam'),
(33847, 28169, 'en', 'name', 'Bridge University'),
(33848, 28170, 'es', 'name', 'Universidad del Tepeyac'),
(33849, 28171, 'en', 'name', 'East African University'),
(33850, 28172, 'en', 'name', 'The Future University'),
(33851, 28172, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المستقبل'),
(33852, 28173, 'en', 'name', 'Glocal University'),
(33853, 28173, 'hi', 'name', 'ą¤—ą„ą¤²ą„‹ą¤•ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(33854, 28174, 'en', 'name', 'University of International Golden Indonesia'),
(33855, 28175, 'en', 'name', 'University of Asmara'),
(33856, 28176, 'en', 'name', 'University of Bagamoyo'),
(33857, 28177, 'en', 'name', 'University of Bamenda'),
(33858, 28177, 'fr', 'name', 'UniversitƩ de Bamenda'),
(33859, 28178, 'en', 'name', 'University of Bihać'),
(33860, 28178, 'bs', 'name', 'Univerzitet u Bihaću'),
(33861, 28178, 'sr', 'name', 'Универзитет у Š‘ŠøŃ…Š°Ń›Ńƒ'),
(33862, 28179, 'en', 'name', 'University of Kabianga'),
(33863, 28180, 'en', 'name', 'University of Bijeljina'),
(33864, 28180, 'bs', 'name', 'Univerzitet Bijeljina'),
(33865, 28180, 'sr', 'name', 'Универзитет Š‘ŠøŃ˜ŠµŃ™ŠøŠ½Š°'),
(33866, 28181, 'en', 'name', 'University of Kalemie'),
(33867, 28181, 'fr', 'name', 'UniversitƩ de kalemie'),
(33868, 28182, 'en', 'name', 'University of Buraimi'),
(33869, 28182, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ±ŁŠŁ…ŁŠ'),
(33870, 28183, 'en', 'name', 'University of Kamina'),
(33871, 28183, 'fr', 'name', 'UniversitƩ de Kamina'),
(33872, 28184, 'en', 'name', 'Wirral University Teaching Hospital NHS Foundation Trust'),
(33873, 28185, 'en', 'name', 'University of Wasit'),
(33874, 28185, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© واسط'),
(33875, 28186, 'nl', 'name', 'Hogeschool Wittenborg'),
(33876, 28186, 'en', 'name', 'Wittenborg University'),
(33877, 28187, 'en', 'name', 'University of West Los Angeles'),
(33878, 28188, 'es', 'name', 'Universidad Interglobal'),
(33879, 28189, 'en', 'name', 'University of West Yangon'),
(33880, 28189, 'my', 'name', 'ရန်ကုန် နနောက်ပိုင်း į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(33881, 28190, 'en', 'name', 'University of Cambodia'),
(33882, 28190, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(33883, 28191, 'en', 'name', 'University of Kindu'),
(33884, 28191, 'fr', 'name', 'UniversitƩ de kindu'),
(33885, 28192, 'en', 'name', 'University of Kota'),
(33886, 28192, 'hi', 'name', 'ą¤•ą„‹ą¤Ÿą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33887, 28193, 'en', 'name', 'University of Community Health Magway'),
(33888, 28193, 'my', 'name', 'į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(33889, 28194, 'en', 'name', 'Herzegovina University'),
(33890, 28194, 'hr', 'name', 'SveučiliŔte Hercegovina'),
(33891, 28195, 'en', 'name', 'Yanbian University of Science and Technology'),
(33892, 28195, 'zh', 'name', 'å»¶č¾¹ē§‘ęŠ€å¤§å­¦'),
(33893, 28196, 'en', 'name', 'Yangtze Normal University'),
(33894, 28196, 'zh', 'name', 'é•æę±ŸåøˆčŒƒå­¦é™¢'),
(33895, 28197, 'en', 'name', 'University Press of Mississippi'),
(33896, 28198, 'fr', 'name', 'Institut de l''UniversitƩ de Londres Ơ Paris'),
(33897, 28198, 'en', 'name', 'University of London Institute in Paris'),
(33898, 28199, 'en', 'name', 'University of Public Health Yangon'),
(33899, 28199, 'my', 'name', 'į€•į€¼į€Šį€ŗį€žį€°į€·į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(ရန်ကုန်)'),
(33900, 28200, 'en', 'name', 'University System of Ohio'),
(33901, 28201, 'en', 'name', 'Istanbul Yeni Yüzyıl University'),
(33902, 28201, 'tr', 'name', 'Yeni Yüzyıl Üniversitesi'),
(33903, 28202, 'en', 'name', 'University of Puthisastra'),
(33904, 28202, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ā€‹ įž–įž»įž‘įŸ’įž’įž·įžŸįž¶įžŸįŸ’įžįŸ’įžš'),
(33905, 28203, 'en', 'name', 'University of Ragusa'),
(33906, 28203, 'it', 'name', 'UniversitĆ  di Ragusa'),
(33907, 28204, 'en', 'name', 'Yeonsung University'),
(33908, 28204, 'ko', 'name', 'ģ—°ģ„±ėŒ€ķ•™źµ'),
(33909, 28205, 'fr', 'name', 'Centre Hospitalier et Universitaire de YaoundƩ'),
(33910, 28205, 'en', 'name', 'University Teaching Hospital of Yaounde'),
(33911, 28206, 'pt', 'name', 'Universidade Sénior Contemporânea'),
(33912, 28207, 'en', 'name', 'Yichun University'),
(33913, 28207, 'zh', 'name', 'å®œę˜„å­¦é™¢'),
(33914, 28208, 'en', 'name', 'Upper Nile University'),
(33915, 28209, 'en', 'name', 'University of Raparin'),
(33916, 28209, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų±Ų§ŲØŲ±ŁŠŁ†'),
(33917, 28210, 'en', 'name', 'University of Maroua'),
(33918, 28210, 'fr', 'name', 'UniversitƩ de Maroua'),
(33919, 28211, 'en', 'name', 'J.C. Bose University of Science & Technology, YMCA'),
(33920, 28212, 'en', 'name', 'University of Maryland Baltimore Washington Medical Center'),
(33921, 28213, 'en', 'name', 'University of Sadat City'),
(33922, 28213, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŲÆŁŠŁ†Ų© السادات'),
(33923, 28214, 'en', 'name', 'Yokkaichi Nursing and Medical Care University'),
(33924, 28214, 'ja', 'name', 'å››ę—„åø‚ēœ‹č­·åŒ»ē™‚å¤§å­¦'),
(33925, 28215, 'tl', 'name', 'Pamantasang Lungsod ng Urdaneta'),
(33926, 28215, 'en', 'name', 'Urdaneta City University'),
(33927, 28216, 'en', 'name', 'University of Maryland Medical Center Midtown Campus'),
(33928, 28217, 'en', 'name', 'University of Science and Technology Omdurman'),
(33929, 28217, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ų§Ł†Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł†ŁŠŲ©'),
(33930, 28218, 'uz', 'name', 'Urganch davlat universiteti'),
(33931, 28218, 'en', 'name', 'Urgench State University'),
(33932, 28219, 'en', 'name', 'University of Science and Technology of Ivory Coast'),
(33933, 28219, 'fr', 'name', 'UniversitƩ des Sciences et Technologies de CƓte d''Ivoire'),
(33934, 28220, 'en', 'name', 'Yu Da University'),
(33935, 28220, 'zh', 'name', 'č‚²é”ē§‘ęŠ€å¤§å­ø'),
(33936, 28221, 'en', 'name', 'University of Maryland Rehabilitation & Orthopaedic Institute'),
(33937, 28222, 'en', 'name', 'Zaoksky Adventist University'),
(33938, 28222, 'ru', 'name', 'Заокский аГвентистский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33939, 28223, 'en', 'name', 'University of Science and Technology of Togo'),
(33940, 28223, 'fr', 'name', 'UniversitƩ des Sciences et Technologies du Togo'),
(33941, 28224, 'en', 'name', 'Utah State University Eastern'),
(33942, 28225, 'en', 'name', 'University of Seychelles'),
(33943, 28226, 'en', 'name', 'Communication University of Zhejiang'),
(33944, 28226, 'zh', 'name', 'ęµ™ę±Ÿä¼ åŖ’å­¦é™¢'),
(33945, 28227, 'en', 'name', 'Utkal University of Culture'),
(33946, 28228, 'no_lang_code', 'name', 'University of Mbandaka'),
(33947, 28228, 'fr', 'name', 'UniversitƩ de mbandaka'),
(33948, 28229, 'en', 'name', 'Uttarakhand Open University'),
(33949, 28229, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤£ą„ą¤” ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33950, 28230, 'en', 'name', 'Zhongkai University of Agriculture and Engineering'),
(33951, 28230, 'zh', 'name', 'ä»²ęŗå†œäøšå·„ēØ‹å­¦é™¢'),
(33952, 28231, 'en', 'name', 'University of South Asia'),
(33953, 28231, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ সাউ঄ ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾'),
(33954, 28232, 'en', 'name', 'Uttarakhand Technical University'),
(33955, 28232, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤‚ą¤” ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33956, 28233, 'en', 'name', 'University of South Carolina Lancaster'),
(33957, 28234, 'en', 'name', 'Zirve University'),
(33958, 28234, 'tr', 'name', 'Zirve Üniversitesi'),
(33959, 28235, 'en', 'name', 'University of Medical Technology Mandalay'),
(33960, 28236, 'so', 'name', 'Jaamacadda Koonfurta Soomaaliya'),
(33961, 28236, 'en', 'name', 'University of Southern Somalia'),
(33962, 28237, 'en', 'name', 'University of Medical Technology Yangon'),
(33963, 28238, 'it', 'name', 'UniversitĆ  per Stranieri Dante Alighieri'),
(33964, 28238, 'fr', 'name', 'UniversitĆ© pour Ɖtrangers de Reggio de Calabre'),
(33965, 28239, 'en', 'name', 'Valley View University'),
(33966, 28240, 'tr', 'name', 'Akdeniz Karpaz Üniversitesi'),
(33967, 28240, 'en', 'name', 'University of Mediterranean Karpasia'),
(33968, 28241, 'en', 'name', 'University of Minnesota Crookston'),
(33969, 28242, 'en', 'name', 'University of Misan'),
(33970, 28242, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŁŠŲ³Ų§Ł†'),
(33971, 28243, 'fr', 'name', 'UniversitƩ Alassane Ouattara'),
(33972, 28244, 'en', 'name', 'Via Vinci Academy'),
(33973, 28245, 'en', 'name', 'Victoria School of Management'),
(33974, 28246, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Việt - Đức'),
(33975, 28246, 'en', 'name', 'Vietnamese-German University'),
(33976, 28247, 'en', 'name', 'Vikrama Simhapuri University'),
(33977, 28247, 'te', 'name', 'ą°µą°æą°•ą±ą°°ą°® సింహపురి ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(33978, 28248, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y khoa Vinh'),
(33979, 28248, 'en', 'name', 'Vinh Medical University'),
(33980, 28249, 'en', 'name', 'Virginia International University'),
(33981, 28250, 'en', 'name', 'Virginia University of Lynchburg'),
(33982, 28251, 'no_lang_code', 'name', 'Vitrina University'),
(33983, 28252, 'en', 'name', 'Wadi International University'),
(33984, 28252, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© الخاصة'),
(33985, 28253, 'en', 'name', 'Warner University'),
(33986, 28254, 'ms', 'name', 'Universiti Terbuka Wawasan'),
(33987, 28254, 'en', 'name', 'Wawasan Open University'),
(33988, 28254, 'zh', 'name', 'å®ę„æå¼€ę”¾å¤§å­¦'),
(33989, 28255, 'en', 'name', 'Webster University Geneva'),
(33990, 28256, 'en', 'name', 'Webster University Ghana'),
(33991, 28257, 'en', 'name', 'Wenzao Ursuline University of Languages'),
(33992, 28257, 'zh', 'name', 'ę–‡č—»å¤–čŖžå¤§å­ø'),
(33993, 28258, 'en', 'name', 'Australian Federation of Graduate Women New South Wales'),
(33994, 28259, 'en', 'name', 'West Yangon Technological University'),
(33995, 28259, 'my', 'name', 'į€›į€”į€ŗį€€į€Æį€”į€ŗį€”į€”į€±į€¬į€€į€ŗį€•į€­į€Æį€„į€ŗį€øį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(33996, 28260, 'en', 'name', 'Westbrook University'),
(33997, 28261, 'en', 'name', 'Chongqing University of Arts and Sciences'),
(33998, 28261, 'zh', 'name', 'é‡åŗ†ę–‡ē†å­¦é™¢'),
(33999, 28262, 'en', 'name', 'University of Missouri Women''s and Children''s Hospital'),
(34000, 28263, 'en', 'name', 'Teikyo University of Japan in Durham'),
(34001, 28264, 'en', 'name', 'Technological University Hpa-An'),
(34002, 28265, 'en', 'name', 'Technological University Kyaukse'),
(34003, 28265, 'my', 'name', 'į€€į€»į€±į€¬į€€į€ŗį€†į€Šį€ŗ į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(34004, 28266, 'en', 'name', 'Technological University Myitkyina'),
(34005, 28266, 'my', 'name', 'į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ (မြစ်ကြီးနား)'),
(34006, 28267, 'en', 'name', 'Technological University Pakokku'),
(34007, 28268, 'en', 'name', 'Laguna Department of Education'),
(34008, 28269, 'en', 'name', 'Institute of Natural Science'),
(34009, 28269, 'ko', 'name', 'ė¦¬ź³¼ėŒ€ķ•™'),
(34010, 28270, 'en', 'name', 'University of North Korean Studies'),
(34011, 28270, 'ko', 'name', 'ė¶ķ•œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(34012, 28271, 'en', 'name', 'University of Nursing Mandalay'),
(34013, 28271, 'my', 'name', 'į€žį€°į€”į€¬į€•į€¼į€Æį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(į€™į€”į€¹į€į€œį€±į€ø)'),
(34014, 28272, 'en', 'name', 'University of Nursing Yangon'),
(34015, 28272, 'my', 'name', 'į€žį€°į€”į€¬į€•į€¼į€Æį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(ရန်ကုန်)'),
(34016, 28273, 'en', 'name', 'University of Palestine'),
(34017, 28273, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁŁ„Ų³Ų·ŁŠŁ†'),
(34018, 28274, 'en', 'name', 'University of Pharmacy Mandalay'),
(34019, 28274, 'my', 'name', 'į€†į€±į€øį€į€«į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(į€™į€”į€¹į€į€œį€±į€ø)'),
(34020, 28275, 'en', 'name', 'University of Pharmacy Yangon'),
(34021, 28275, 'my', 'name', 'į€†į€±į€øį€į€«į€ø į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ ရန်ကုန်'),
(34022, 28276, 'en', 'name', 'University of Pittsburgh at Titusville'),
(34023, 28277, 'en', 'name', 'Wellcome Centre for Cell Biology'),
(34024, 28278, 'en', 'name', 'Wellcome Centre for Cell-Matrix Research'),
(34025, 28279, 'en', 'name', 'Wellcome Centre for Molecular Parasitology'),
(34026, 28280, 'en', 'name', 'Wellcome Centre for Human Neuroimaging'),
(34027, 28281, 'it', 'name', 'Istituto di Astrofisica Spaziale e Fisica Cosmica di Milano'),
(34028, 28282, 'it', 'name', 'Istituto di Astrofisica Spaziale e Fisica cosmica di Palermo'),
(34029, 28283, 'it', 'name', 'Telescopio Nazionale Galileo'),
(34030, 28284, 'en', 'name', 'Catania Astrophysical Observatory'),
(34031, 28284, 'it', 'name', 'Osservatorio Astrofisico di Catania'),
(34032, 28285, 'no_lang_code', 'name', '1366 Technologies (United States)'),
(34033, 28286, 'no_lang_code', 'name', '24M (United States)'),
(34034, 28287, 'nl', 'name', 'AA Brediusstichting'),
(34035, 28288, 'no_lang_code', 'name', 'KPC Group (Netherlands)'),
(34036, 28289, 'no_lang_code', 'name', 'New Potato Technologies (United States)'),
(34037, 28290, 'no_lang_code', 'name', 'Kyma Technologies (United States)'),
(34038, 28291, 'la', 'name', 'Fons Vitae Lyceum'),
(34039, 28292, 'no_lang_code', 'name', 'Newton Energy Group (United States)'),
(34040, 28293, 'en', 'name', 'Centre for BioSystems Genomics'),
(34041, 28294, 'no_lang_code', 'name', 'Nexant (United States)'),
(34042, 28295, 'no_lang_code', 'name', 'Foro Energy (United States)'),
(34043, 28296, 'en', 'name', 'NIOD Institute for War, Holocaust and Genocide Studies'),
(34044, 28296, 'nl', 'name', 'NIOD Instituut voor Oorlogs-, Holocaust- en Genocidestudies'),
(34045, 28297, 'en', 'name', 'Acent Laboratories'),
(34046, 28298, 'nl', 'name', 'Landelijke Onderzoekschool Taalwetenschap'),
(34047, 28298, 'en', 'name', 'Netherlands Graduate School of Linguistics'),
(34048, 28299, 'en', 'name', 'CSG Centre for Society and the Life Sciences'),
(34049, 28300, 'no_lang_code', 'name', 'G&S Titanium (United States)'),
(34050, 28301, 'no_lang_code', 'name', 'Gannon Motor and Controls (United States)'),
(34051, 28302, 'fr', 'name', 'Actions pour l’Environnement et le DĆ©veloppement Durable'),
(34052, 28303, 'no_lang_code', 'name', 'Acumentrics (United States)'),
(34053, 28304, 'no_lang_code', 'name', 'Nissan (United States)'),
(34054, 28305, 'no_lang_code', 'name', 'ADA-ES (United States)'),
(34055, 28306, 'no_lang_code', 'name', 'Hexagon Lincoln (United States)'),
(34056, 28307, 'en', 'name', 'Center for Research on Inter-group Relations and Conflict Resolution'),
(34057, 28308, 'no_lang_code', 'name', 'Novici Biotech (United States)'),
(34058, 28309, 'no_lang_code', 'name', 'ADMA Products (United States)'),
(34059, 28310, 'no_lang_code', 'name', 'General Compression (United States)'),
(34060, 28311, 'nl', 'name', 'Christelijk Gymnasium Utrecht'),
(34061, 28312, 'no_lang_code', 'name', 'Nuvotronics (United States)'),
(34062, 28313, 'no_lang_code', 'name', 'GeneSiC Semiconductor (United States)'),
(34063, 28314, 'en', 'name', 'Africa Innovations Institute'),
(34064, 28315, 'no_lang_code', 'name', 'Glint Photonics (United States)'),
(34065, 28316, 'nl', 'name', 'Christelijke Scholengemeenschap Walcheren'),
(34066, 28317, 'en', 'name', 'African Studies Centre'),
(34067, 28317, 'nl', 'name', 'Afrika Studiecentrum'),
(34068, 28318, 'no_lang_code', 'name', 'Global Seawater Extraction Technologies (United States)'),
(34069, 28319, 'no_lang_code', 'name', 'Malibu IQ (United States)'),
(34070, 28320, 'en', 'name', 'Algaeventure Systems'),
(34071, 28321, 'no_lang_code', 'name', 'Onboard Dynamics (United States)'),
(34072, 28322, 'en', 'name', 'Graduate School Experimental Plant Sciences'),
(34073, 28323, 'nl', 'name', 'CINOP'),
(34074, 28324, 'no_lang_code', 'name', 'AllCell (United States)'),
(34075, 28325, 'nl', 'name', 'Onderzoekschool Ethiek'),
(34076, 28326, 'en', 'name', 'CUNY Energy Institute'),
(34077, 28327, 'nl', 'name', 'Marecollege'),
(34078, 28328, 'en', 'name', 'Grid Protection Alliance'),
(34079, 28329, 'no_lang_code', 'name', 'Clipper Windpower (United States)'),
(34080, 28330, 'no_lang_code', 'name', 'Halotechnics (United States)'),
(34081, 28331, 'no_lang_code', 'name', 'CMTech (Australia)'),
(34082, 28332, 'no_lang_code', 'name', 'Hazenberg Archeologie (Netherlands)'),
(34083, 28333, 'no_lang_code', 'name', 'Evolva Holding (United States)'),
(34084, 28334, 'no_lang_code', 'name', 'Heliotrope Technologies (United States)'),
(34085, 28335, 'id', 'name', 'Yayasan Masyarakat Dan Perikanan Indonesia'),
(34086, 28336, 'no_lang_code', 'name', 'AmberWave (United States)'),
(34087, 28337, 'no_lang_code', 'name', 'MC10 (United States)'),
(34088, 28338, 'no_lang_code', 'name', 'Air Liquide (United States)'),
(34089, 28339, 'no_lang_code', 'name', 'Cogenra Solar (United States)'),
(34090, 28340, 'no_lang_code', 'name', 'American Lithium Energy (United States)'),
(34091, 28341, 'en', 'name', 'Meertens Institute'),
(34092, 28341, 'nl', 'name', 'Meertens Instituut'),
(34093, 28342, 'no_lang_code', 'name', 'Consol Energy (United States)'),
(34094, 28343, 'en', 'name', 'Research School for Medieval Studies'),
(34095, 28344, 'no_lang_code', 'name', 'Ammono (Poland)'),
(34096, 28345, 'no_lang_code', 'name', 'Cosine (Netherlands)'),
(34097, 28346, 'no_lang_code', 'name', 'Coskata (United States)'),
(34098, 28347, 'en', 'name', 'Creative Thermal Solutions'),
(34099, 28348, 'no_lang_code', 'name', 'AMN (Netherlands)'),
(34100, 28349, 'nl', 'name', 'Huizinga Instituut'),
(34101, 28350, 'no_lang_code', 'name', 'MIB Engineers (United States)'),
(34102, 28351, 'no_lang_code', 'name', 'iBeam Materials (United States)'),
(34103, 28352, 'no_lang_code', 'name', 'OPX Biotechnologies (United States)'),
(34104, 28353, 'en', 'name', 'Ichthus College'),
(34105, 28354, 'no_lang_code', 'name', 'Q Free (Netherlands)'),
(34106, 28355, 'no_lang_code', 'name', 'Dacom (Netherlands)'),
(34107, 28356, 'no_lang_code', 'name', 'Ideal Power (United States)'),
(34108, 28357, 'nl', 'name', 'Amsterdam Museum'),
(34109, 28358, 'en', 'name', 'Ministry of Forests and Soil Conservation'),
(34110, 28359, 'no_lang_code', 'name', 'Dais Analytic Corporation (United States)'),
(34111, 28360, 'no_lang_code', 'name', 'Impact Technology Development (United States)'),
(34112, 28361, 'nl', 'name', 'Openbare Scholengemeenschap De Hogeberg'),
(34113, 28362, 'no_lang_code', 'name', 'MOgene (United States)'),
(34114, 28363, 'no_lang_code', 'name', 'IncSys (United States)'),
(34115, 28364, 'no_lang_code', 'name', 'Vencore (United States)'),
(34116, 28365, 'no_lang_code', 'name', 'Monolith Semiconductor (United States)'),
(34117, 28366, 'no_lang_code', 'name', 'Infinia Technology Corporation (United States)'),
(34118, 28367, 'no_lang_code', 'name', 'Diversified Energy (United States)'),
(34119, 28368, 'no_lang_code', 'name', 'Ingenieursburo Balvers (Netherlands)'),
(34120, 28369, 'de', 'name', 'Innoventor'),
(34121, 28370, 'nl', 'name', 'Museum Boerhaave'),
(34122, 28371, 'nl', 'name', 'Museum Catharijneconvent'),
(34123, 28372, 'no_lang_code', 'name', 'Inorganic Specialists (United States)'),
(34124, 28373, 'en', 'name', 'Pastoral and Environmental Network in the Horn of Africa'),
(34125, 28374, 'nl', 'name', 'Dunea'),
(34126, 28375, 'en', 'name', 'Alfa College'),
(34127, 28376, 'en', 'name', 'Dutch Network of Systems and Control'),
(34128, 28377, 'en', 'name', 'Dutch Inspectorate of Education'),
(34129, 28377, 'nl', 'name', 'Inspectie van het Onderwijs'),
(34130, 28378, 'no_lang_code', 'name', 'Pellion Technologies (United States)'),
(34131, 28379, 'no_lang_code', 'name', 'Nano Terra (United States)'),
(34132, 28380, 'en', 'name', 'Dutch Techcentre for Life Sciences'),
(34133, 28381, 'nl', 'name', 'Archeologisch Diensten Centrum (Netherlands)'),
(34134, 28382, 'no_lang_code', 'name', 'Dynalloy (United States)'),
(34135, 28383, 'no_lang_code', 'name', 'Dynapower (United States)'),
(34136, 28384, 'no_lang_code', 'name', 'Phononic Devices (United States)'),
(34137, 28385, 'en', 'name', 'Institute for the Study of Education and Human Development'),
(34138, 28386, 'no_lang_code', 'name', 'Architectural Applications (United States)'),
(34139, 28387, 'no_lang_code', 'name', 'Archol (Netherlands)'),
(34140, 28388, 'no_lang_code', 'name', 'Planar Energy (United States)'),
(34141, 28389, 'no_lang_code', 'name', 'Plant Sensory Systems (United States)'),
(34142, 28390, 'no_lang_code', 'name', 'Easel Biotechnologies (United States)'),
(34143, 28391, 'en', 'name', 'Asian Development Research Institute'),
(34144, 28392, 'no_lang_code', 'name', 'Polaris Systems Optimization (United States)'),
(34145, 28393, 'en', 'name', 'Association for the Integrated Development-Comilla'),
(34146, 28394, 'no_lang_code', 'name', 'Astronautics Corporation of America'),
(34147, 28395, 'no_lang_code', 'name', 'ATC New Technologies (United States)'),
(34148, 28396, 'no_lang_code', 'name', 'Electrical Distribution Design (United States)'),
(34149, 28397, 'no_lang_code', 'name', 'Polartec (United States)'),
(34150, 28398, 'no_lang_code', 'name', 'Autogrid Systems (United States)'),
(34151, 28399, 'no_lang_code', 'name', 'PolyPlus Battery Company (United States)'),
(34152, 28400, 'no_lang_code', 'name', 'Avogy (United States)'),
(34153, 28401, 'en', 'name', 'International Institute for Asian Studies'),
(34154, 28402, 'no_lang_code', 'name', 'Baldor Electric (United States)'),
(34155, 28403, 'en', 'name', 'International Center for Human Sciences'),
(34156, 28404, 'no_lang_code', 'name', 'Emcore (United States)'),
(34157, 28405, 'nl', 'name', 'Internationale Vereniging voor Neerlandistiek'),
(34158, 28406, 'no_lang_code', 'name', 'EnerDel (United States)'),
(34159, 28407, 'nl', 'name', 'Nederlands Instituut voor Onderzoek in de Katalyse'),
(34160, 28407, 'en', 'name', 'Netherlands Institute for Catalysis Research'),
(34161, 28408, 'no_lang_code', 'name', 'Power Standards Lab (United States)'),
(34162, 28409, 'no_lang_code', 'name', 'Energy Research Company (United States)'),
(34163, 28410, 'no_lang_code', 'name', 'PowerData (United States)'),
(34164, 28411, 'no_lang_code', 'name', 'Energy Storage Systems (United States)'),
(34165, 28412, 'no_lang_code', 'name', 'Enova (United States)'),
(34166, 28413, 'nl', 'name', 'BC Broekhin Roermond'),
(34167, 28414, 'no_lang_code', 'name', 'Primus Power (United States)'),
(34168, 28415, 'nl', 'name', 'Nederlands Instituut voor Wetenschappelijke Informatiediensten'),
(34169, 28416, 'no_lang_code', 'name', 'Envia Systems (United States)'),
(34170, 28417, 'no_lang_code', 'name', 'Rockland Capital (United States)'),
(34171, 28418, 'no_lang_code', 'name', 'Princeton Optronics (United States)'),
(34172, 28419, 'no_lang_code', 'name', 'Beckett Energy Systems'),
(34173, 28420, 'no_lang_code', 'name', 'K2 Energy Solutions (United States)'),
(34174, 28421, 'no_lang_code', 'name', 'EnZinc (United States)'),
(34175, 28422, 'en', 'name', 'Bertrand Russell College'),
(34176, 28423, 'en', 'name', 'ERA-NET Plant Genomics'),
(34177, 28424, 'no', 'name', 'Norlandia'),
(34178, 28425, 'no_lang_code', 'name', 'Kiverdi (United States)'),
(34179, 28426, 'no_lang_code', 'name', 'Quanta Technology (United States)'),
(34180, 28427, 'en', 'name', 'Oakwood Academy'),
(34181, 28428, 'no_lang_code', 'name', 'Spang (United States)'),
(34182, 28429, 'nl', 'name', 'Koninklijk Instituut voor Taal-, Land- en Volkenkunde'),
(34183, 28429, 'en', 'name', 'Royal Netherlands Institute of Southeast Asian and Caribbean Studies'),
(34184, 28430, 'no_lang_code', 'name', 'Ergenics (United States)'),
(34185, 28431, 'nl', 'name', 'Koninklijke Landmacht'),
(34186, 28432, 'nl', 'name', 'Koninklijke Scholengemeenschap'),
(34187, 28433, 'no_lang_code', 'name', 'Redox Power Systems (United States)'),
(34188, 28434, 'en', 'name', 'Dutch Language Union'),
(34189, 28434, 'nl', 'name', 'Nederlandse Taalunie'),
(34190, 28435, 'no_lang_code', 'name', 'Evans Capacitor (United States)'),
(34191, 28436, 'en', 'name', 'Netherlands Bioinformatics Centre'),
(34192, 28437, 'no_lang_code', 'name', 'Platinum Equity (United States)'),
(34193, 28438, 'no_lang_code', 'name', 'SAFCell (United States)'),
(34194, 28439, 'en', 'name', 'Netherlands Institute for Advanced Study in the Humanities and Social Sciences'),
(34195, 28440, 'no_lang_code', 'name', 'FastCAP Systems (United States)'),
(34196, 28441, 'no_lang_code', 'name', 'EcoCatalytic Technologies (United States)'),
(34197, 28442, 'no_lang_code', 'name', 'Sentech Corporation (United States)'),
(34198, 28443, 'nl', 'name', 'Regionale scholengemeenschap Goeree-Overflakkee'),
(34199, 28444, 'no_lang_code', 'name', 'FloDesign (United States)'),
(34200, 28445, 'no_lang_code', 'name', 'Polpharma Biologics (Netherlands)'),
(34201, 28446, 'ro', 'name', 'Institutul de Cercetare-Dezvoltare pentru Protecţia Plantelor'),
(34202, 28447, 'no_lang_code', 'name', 'Sheetak (United States)'),
(34203, 28448, 'no_lang_code', 'name', 'Fluidic Energy (United States)'),
(34204, 28449, 'no_lang_code', 'name', 'SiEnergy Systems (United States)'),
(34205, 28450, 'no_lang_code', 'name', 'BlackPak (United States)'),
(34206, 28451, 'nl', 'name', 'Bonaventuracollege'),
(34207, 28452, 'nl', 'name', 'Stichting Cultureel Erfgoed Zeeland'),
(34208, 28453, 'nl', 'name', 'Rijksakademie van beeldende kunsten'),
(34209, 28453, 'en', 'name', 'Royal Academy of Visual Arts'),
(34210, 28454, 'en', 'name', 'Museum of the Tropics'),
(34211, 28454, 'nl', 'name', 'Tropenmuseum'),
(34212, 28455, 'no_lang_code', 'name', 'TVN Systems (United States)'),
(34213, 28456, 'no_lang_code', 'name', 'Silicon Power Corporation (United States)'),
(34214, 28457, 'en', 'name', 'Netherlands Institute for Art History'),
(34215, 28458, 'en', 'name', 'Brera Astronomical Observatory'),
(34216, 28458, 'fr', 'name', 'Observatoire astronomique de brera'),
(34217, 28458, 'it', 'name', 'osservatorio astronomico di Brera'),
(34218, 28459, 'en', 'name', 'National Museum of Antiquities'),
(34219, 28459, 'nl', 'name', 'Rijksmuseum van Oudheden'),
(34220, 28460, 'nl', 'name', 'Stichting voor Christelijke Filosofie'),
(34221, 28461, 'en', 'name', 'National Museum of Ethnology'),
(34222, 28461, 'nl', 'name', 'Rijksmuseum Volkenkunde'),
(34223, 28462, 'no_lang_code', 'name', 'SixPoint Materials (United States)'),
(34224, 28463, 'no_lang_code', 'name', 'NatriSoft (Netherlands)'),
(34225, 28464, 'no_lang_code', 'name', 'Stone Mountain Technologies (United States)'),
(34226, 28465, 'en', 'name', 'Udens College'),
(34227, 28466, 'nl', 'name', 'SNS Reaal'),
(34228, 28467, 'nl', 'name', 'Sociaal Historisch Centrum voor Limburg'),
(34229, 28467, 'en', 'name', 'Social Historic Centre for Limburg'),
(34230, 28468, 'en', 'name', 'University for Peace'),
(34231, 28469, 'no_lang_code', 'name', 'Renco Group (United States)'),
(34232, 28470, 'no_lang_code', 'name', 'Suniva (United States)'),
(34233, 28471, 'en', 'name', 'C.T. de Wit Graduate School for Production Ecology and Resource Conservation'),
(34234, 28472, 'no_lang_code', 'name', 'Under Armour (United States)'),
(34235, 28473, 'en', 'name', 'Value Addition Institute'),
(34236, 28474, 'no_lang_code', 'name', 'Varentec (United States)'),
(34237, 28475, 'no_lang_code', 'name', 'Tai Yang Research Company (United States)'),
(34238, 28476, 'no_lang_code', 'name', 'Southeast Nonwovens (United States)'),
(34239, 28477, 'nl', 'name', 'Nederlandse School voor Openbaar Bestuur'),
(34240, 28477, 'en', 'name', 'Netherlands School of Public Administration'),
(34241, 28478, 'no_lang_code', 'name', 'Edison International (United States)'),
(34242, 28479, 'no_lang_code', 'name', 'Cargill (United States)'),
(34243, 28480, 'no_lang_code', 'name', 'Tango Systems (United States)'),
(34244, 28481, 'no_lang_code', 'name', 'Vestigia'),
(34245, 28482, 'en', 'name', 'Max Planck Institute for Gravitational Physics'),
(34246, 28482, 'de', 'name', 'Max-Planck-Institut für Gravitationsphysik'),
(34247, 28483, 'no_lang_code', 'name', 'SPX Transformer Solutions (United States)'),
(34248, 28484, 'nl', 'name', 'Ons Middelbaar Onderwijs'),
(34249, 28485, 'no_lang_code', 'name', 'Wildcat Discovery Technologies (United States)'),
(34250, 28486, 'de', 'name', 'Ferdinand-Braun-Institut'),
(34251, 28487, 'en', 'name', 'Hague Institute for Global Justice'),
(34252, 28488, 'nl', 'name', 'Hogeschool Rotterdam'),
(34253, 28488, 'en', 'name', 'Rotterdam University of Applied Sciences'),
(34254, 28489, 'en', 'name', 'TNO Management Consultants'),
(34255, 28490, 'no_lang_code', 'name', 'X-Fab (United States)'),
(34256, 28491, 'de', 'name', 'Institut für Hochenergiephysik'),
(34257, 28491, 'en', 'name', 'Institute of High Energy Physics'),
(34258, 28492, 'en', 'name', 'Institute of Modern Physics'),
(34259, 28492, 'zh', 'name', '中国科学院近代物理研究所'),
(34260, 28493, 'no_lang_code', 'name', 'ZOA (Uganda)'),
(34261, 28494, 'no_lang_code', 'name', 'TreadStone Technologies (United States)'),
(34262, 28495, 'en', 'name', 'Netherlands Architecture Institute'),
(34263, 28496, 'en', 'name', 'Centre for Ultrahigh Bandwidth Devices for Optical Systems'),
(34264, 28497, 'en', 'name', 'Max Planck Institute for Extraterrestrial Physics'),
(34265, 28497, 'de', 'name', 'Max-Planck-Institut für Extraterrestrische Physik'),
(34266, 28498, 'en', 'name', 'Helmholtz Institute Jena'),
(34267, 28498, 'de', 'name', 'Helmholtz-Institut Jena'),
(34268, 28499, 'en', 'name', 'Max Planck Institute for Meteorology'),
(34269, 28499, 'de', 'name', 'Max-Planck-Institut für Meteorologie'),
(34270, 28500, 'en', 'name', 'National Centre for Nuclear Energy, Science and Technology'),
(34271, 28501, 'en', 'name', 'Max Planck Institute of Microstructure Physics'),
(34272, 28501, 'de', 'name', 'Max-Planck-Institut für Mikrostrukturphysik'),
(34273, 28502, 'en', 'name', 'Hungarian Astronomical Association'),
(34274, 28503, 'en', 'name', 'Shanghai Institute of Applied Physics'),
(34275, 28503, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·åŗ”ē”Øē‰©ē†ē ”ē©¶ę‰€'),
(34276, 28504, 'en', 'name', 'International Center for Relativistic Astrophysics'),
(34277, 28505, 'en', 'name', 'Institute of Physics and Technology'),
(34278, 28506, 'no_lang_code', 'name', 'Complete Genomics (United States)'),
(34279, 28507, 'en', 'name', 'Institute of Space and Astronautical Science'),
(34280, 28507, 'ja', 'name', '宇宙科学研究所'),
(34281, 28508, 'no_lang_code', 'name', 'Infinera (United States)'),
(34282, 28509, 'en', 'name', 'Institute for Laser Technology'),
(34283, 28509, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ćƒ¬ćƒ¼ć‚¶ćƒ¼ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(34284, 28510, 'en', 'name', 'Sunvapor'),
(34285, 28511, 'en', 'name', 'International Genomics Consortium'),
(34286, 28512, 'en', 'name', 'Institute for Nuclear Science and Technology'),
(34287, 28512, 'vi', 'name', 'VIỆN KHOA HỌC Vƀ KỸ THUįŗ¬T Hįŗ T NHƂN'),
(34288, 28513, 'en', 'name', 'Columbia Region Healthcare Engineers Association'),
(34289, 28514, 'en', 'name', 'National Astronomical Observatories'),
(34290, 28514, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å›½å®¶å¤©ę–‡å°'),
(34291, 28515, 'de', 'name', 'HELIOS St. Elisabeth Klinik Oberhausen'),
(34292, 28516, 'no_lang_code', 'name', 'TE SubCom (United States)'),
(34293, 28517, 'en', 'name', 'Harish-Chandra Research Institute'),
(34294, 28517, 'hi', 'name', 'ą¤¹ą¤°ą„€ą¤¶ą¤šą¤‚ą¤¦ą„ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(34295, 28518, 'no_lang_code', 'name', 'OFS (United States)'),
(34296, 28519, 'en', 'name', 'Institute of Semiconductor Physics'),
(34297, 28519, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики ŠæŠ¾Š»ŃƒŠæŃ€Š¾Š²Š¾Š“Š½ŠøŠŗŠ¾Š² им. А.Š’. Ржанова Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(34298, 28520, 'en', 'name', 'Photonics Electronics Technology Research Association'),
(34299, 28520, 'ja', 'name', 'ćƒ•ć‚©ćƒˆćƒ‹ć‚Æć‚¹ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(34300, 28521, 'no_lang_code', 'name', 'PNSensor (Germany)'),
(34301, 28522, 'no_lang_code', 'name', 'Tri Alpha Energy (United States)'),
(34302, 28523, 'en', 'name', 'Shanghai Astronomical Observatory'),
(34303, 28523, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·å¤©ę–‡å°'),
(34304, 28524, 'de', 'name', 'Halbleiterlabor of the Max-Planck-Society'),
(34305, 28525, 'no_lang_code', 'name', 'Pranalytica (United States)'),
(34306, 28526, 'en', 'name', 'Institute for Nuclear Research'),
(34307, 28526, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(34308, 28527, 'en', 'name', 'Alberta Chicken Producers (Canada)'),
(34309, 28528, 'en', 'name', 'Alberta Energy'),
(34310, 28529, 'en', 'name', 'Alberta Farm Animal Care Association'),
(34311, 28530, 'pt', 'name', 'Laboratório Interinstitucional de e-Astronomia'),
(34312, 28531, 'en', 'name', 'Alberta Livestock and Meat Agency'),
(34313, 28532, 'en', 'name', 'Alberta Oil Sands Technology and Research Authority'),
(34314, 28533, 'no_lang_code', 'name', 'Alberta Pork (Canada)'),
(34315, 28534, 'no_lang_code', 'name', 'Adelan (United Kingdom)'),
(34316, 28535, 'no_lang_code', 'name', 'Advanced BioRefinery (Canada)'),
(34317, 28536, 'no_lang_code', 'name', 'AmeriPrint (United States)'),
(34318, 28537, 'no_lang_code', 'name', 'Glonatech (Greece)'),
(34319, 28538, 'no_lang_code', 'name', 'Advanced Glazings (Canada)'),
(34320, 28539, 'no_lang_code', 'name', 'Alcoa (Canada)'),
(34321, 28540, 'no_lang_code', 'name', 'Alcohol Countermeasure Systems (Canada)'),
(34322, 28541, 'no_lang_code', 'name', '3D Technology Laboratories (United States)'),
(34323, 28542, 'en', 'name', 'American Precision Museum'),
(34324, 28543, 'en', 'name', 'Analytical Center MNiOP'),
(34325, 28544, 'no_lang_code', 'name', 'American Water (Canada)'),
(34326, 28545, 'no_lang_code', 'name', 'Amica Science Eeig (United Kingdom)'),
(34327, 28546, 'no_lang_code', 'name', 'Advanced Practical Diagnostics (Belgium)'),
(34328, 28547, 'no_lang_code', 'name', 'Alfa Products and Technologies (Belgium)'),
(34329, 28548, 'en', 'name', 'A-R Editions'),
(34330, 28549, 'no_lang_code', 'name', 'Essar Steel Algoma (Canada)'),
(34331, 28550, 'no_lang_code', 'name', 'Aquatic Systems (United States)'),
(34332, 28551, 'en', 'name', 'Voeikov Main Geophysical Observatory'),
(34333, 28551, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š“Š»Š°Š²Š½Š°Ń Š³ŠµŠ¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. А.И.Воейкова'),
(34334, 28552, 'no_lang_code', 'name', 'Entrust (Canada)'),
(34335, 28553, 'no_lang_code', 'name', 'Aralia Systems (United Kingdom)'),
(34336, 28554, 'no_lang_code', 'name', 'AEF Global (Canada)'),
(34337, 28555, 'no_lang_code', 'name', 'Arbec Forest Products (Canada)'),
(34338, 28556, 'no_lang_code', 'name', 'Lassonde Industries (Canada)'),
(34339, 28557, 'no_lang_code', 'name', 'Aeroconseil (France)'),
(34340, 28558, 'no_lang_code', 'name', 'AeroDNA (United Kingdom)'),
(34341, 28559, 'no_lang_code', 'name', 'Amsen Technologies (United States)'),
(34342, 28560, 'no_lang_code', 'name', 'Arca Progetti (Italy)'),
(34343, 28561, 'no_lang_code', 'name', 'Abel Manufacturing Company (United States)'),
(34344, 28562, 'no_lang_code', 'name', 'Allstate (United States)');
INSERT INTO `ror_settings` VALUES
(34345, 28563, 'no_lang_code', 'name', 'Abreos Biosciences (United States)'),
(34346, 28564, 'no_lang_code', 'name', 'Absiskey (France)'),
(34347, 28565, 'no_lang_code', 'name', 'Lonza (Canada)'),
(34348, 28566, 'no_lang_code', 'name', 'Arclay (Canada)'),
(34349, 28566, 'fr', 'name', 'Arclay Technologies Naturelles'),
(34350, 28567, 'no_lang_code', 'name', 'Acadian Peat Moss (Canada)'),
(34351, 28568, 'no_lang_code', 'name', 'Tesoro (United States)'),
(34352, 28569, 'no_lang_code', 'name', 'Ardoran (Estonia)'),
(34353, 28570, 'en', 'name', 'Area ''A'' Crab Association'),
(34354, 28571, 'no_lang_code', 'name', 'AS Composite (Canada)'),
(34355, 28572, 'en', 'name', 'AccessMatters'),
(34356, 28573, 'no_lang_code', 'name', 'Andec Manufacturing (Canada)'),
(34357, 28574, 'no_lang_code', 'name', 'Arius3D (Canada)'),
(34358, 28575, 'no_lang_code', 'name', 'Arkema (Canada)'),
(34359, 28576, 'no_lang_code', 'name', 'Alstom (Canada)'),
(34360, 28577, 'no_lang_code', 'name', 'Alta Precision (Canada)'),
(34361, 28578, 'no_lang_code', 'name', 'Agribrands Purina (Canada)'),
(34362, 28579, 'fr', 'name', 'Agence de promotion Ʃconomique du Canada atlantique'),
(34363, 28579, 'en', 'name', 'Atlantic Canada Opportunities Agency'),
(34364, 28580, 'no_lang_code', 'name', 'Assocalzaturifici (Italy)'),
(34365, 28581, 'no_lang_code', 'name', 'Aluminerie Alouette (Canada)'),
(34366, 28582, 'no_lang_code', 'name', 'Atlantic Hydrogen (Canada)'),
(34367, 28583, 'no_lang_code', 'name', 'Devon Energy (Canada)'),
(34368, 28584, 'no_lang_code', 'name', 'Ascent Technology (United States)'),
(34369, 28585, 'no_lang_code', 'name', 'Stornoway Diamond (Canada)'),
(34370, 28586, 'no_lang_code', 'name', 'Anger Machining (Austria)'),
(34371, 28587, 'no_lang_code', 'name', 'Tolmar (United States)'),
(34372, 28588, 'no_lang_code', 'name', 'Agpyme (Spain)'),
(34373, 28589, 'no_lang_code', 'name', 'Audio Analytic (United Kingdom)'),
(34374, 28590, 'no_lang_code', 'name', 'Anglo American (Canada)'),
(34375, 28591, 'no_lang_code', 'name', 'AngloGold Ashanti (South Africa)'),
(34376, 28592, 'it', 'name', 'Assemblea delle Donne per lo Sviluppo e la Lotta all''Esclusione Sociale'),
(34377, 28592, 'en', 'name', 'Assembly of Women for Development and the Struggle against Social Exclusion'),
(34378, 28593, 'no_lang_code', 'name', 'Parmalat (Canada)'),
(34379, 28594, 'no_lang_code', 'name', 'Angstrom Engineering (Canada)'),
(34380, 28595, 'no_lang_code', 'name', 'Air Fuel Synthesis (United Kingdom)'),
(34381, 28596, 'en', 'name', 'BC Greenhouse Growers Association'),
(34382, 28597, 'no_lang_code', 'name', 'Aurel Systems (Canada)'),
(34383, 28598, 'no_lang_code', 'name', 'BC Hydro (Canada)'),
(34384, 28599, 'en', 'name', 'Animal Nutrition Association of Canada'),
(34385, 28600, 'pt', 'name', 'Associação Portuguesa das Indústrias de Cerâmica e de Cristalaria'),
(34386, 28600, 'en', 'name', 'Portuguese Association of the Ceramics Industry'),
(34387, 28601, 'en', 'name', 'BC Innovation Council'),
(34388, 28602, 'it', 'name', 'Associazione Nazionale per l’Isolamento Termico e Acustico'),
(34389, 28603, 'no_lang_code', 'name', 'AIR Worldwide (United Kingdom)'),
(34390, 28604, 'no_lang_code', 'name', 'AirScience Technologies (Canada)'),
(34391, 28605, 'en', 'name', 'Alaska State Museum'),
(34392, 28606, 'fr', 'name', 'Association des constructeurs de routes et grands travaux du QuƩbec'),
(34393, 28606, 'en', 'name', 'QuƩbec Road Builders and Heavy Construction Association'),
(34394, 28607, 'no_lang_code', 'name', 'Alberco Construction (Canada)'),
(34395, 28608, 'en', 'name', 'Ministry of Environment'),
(34396, 28609, 'en', 'name', 'Biopterre'),
(34397, 28610, 'no_lang_code', 'name', 'Antex Western (Canada)'),
(34398, 28611, 'en', 'name', 'Plastics Recyclers Europe'),
(34399, 28612, 'en', 'name', 'Association for Asian Studies'),
(34400, 28613, 'no_lang_code', 'name', 'AnyBody Technology (Denmark)'),
(34401, 28614, 'no_lang_code', 'name', 'Autodesk (Canada)'),
(34402, 28615, 'no_lang_code', 'name', 'Bcn Cambra Logica De Projectes'),
(34403, 28616, 'en', 'name', 'Autograph ABP'),
(34404, 28617, 'no_lang_code', 'name', 'Autoline Insurance (United Kingdom)'),
(34405, 28618, 'en', 'name', 'Association of Professional Engineers and Geoscientists of Manitoba'),
(34406, 28619, 'en', 'name', 'Apicha Community Health Center'),
(34407, 28620, 'en', 'name', 'Beef Cattle Research Council'),
(34408, 28621, 'no_lang_code', 'name', 'Apollo Microwaves (Canada)'),
(34409, 28622, 'en', 'name', 'Appalshop'),
(34410, 28623, 'no_lang_code', 'name', 'Applied Bio-nomics (Canada)'),
(34411, 28624, 'no_lang_code', 'name', 'BIOX (Canada)'),
(34412, 28625, 'fr', 'name', 'UP-Tex'),
(34413, 28626, 'no_lang_code', 'name', 'ATS Automation Tooling Systems (Canada)'),
(34414, 28627, 'it', 'name', 'Associazione Italiana per l''Agricoltura Biologica'),
(34415, 28628, 'en', 'name', 'Birmingham and Solihull Mental Health NHS Foundation Trust'),
(34416, 28629, 'no_lang_code', 'name', 'Applied Nanotools (Canada)'),
(34417, 28630, 'no_lang_code', 'name', 'Exmar (Belgium)'),
(34418, 28631, 'en', 'name', 'Black Hills Center for American Indian Health'),
(34419, 28632, 'no_lang_code', 'name', 'Avalon Rare Metals (Canada)'),
(34420, 28633, 'en', 'name', 'British Red Cross'),
(34421, 28634, 'no_lang_code', 'name', 'Avatar Medical (United States)'),
(34422, 28635, 'no_lang_code', 'name', 'Blücher (Germany)'),
(34423, 28636, 'no_lang_code', 'name', 'Berger (Canada)'),
(34424, 28637, 'no_lang_code', 'name', 'Blue Bear (United Kingdom)'),
(34425, 28638, 'en', 'name', 'Canada Economic Development for Quebec Regions'),
(34426, 28639, 'no_lang_code', 'name', 'Canada Malting (Canada)'),
(34427, 28640, 'no_lang_code', 'name', 'Blue Pencil Group (United States)'),
(34428, 28641, 'no_lang_code', 'name', 'Axela (Canada)'),
(34429, 28642, 'en', 'name', 'Canada Mortgage and Housing Corporation'),
(34430, 28642, 'de', 'name', 'Societe canadienne d''hypotheque et du logement'),
(34431, 28643, 'no_lang_code', 'name', 'AxioMx (United States)'),
(34432, 28644, 'en', 'name', 'Brown County Historical Society'),
(34433, 28645, 'en', 'name', 'Canada West Ski Areas Association'),
(34434, 28646, 'fr', 'name', 'Administration canadienne de la sƻretƩ du transport aƩrien'),
(34435, 28646, 'en', 'name', 'Canadian Air Transport Security Authority'),
(34436, 28647, 'no_lang_code', 'name', 'Blue-O Technology (Canada)'),
(34437, 28648, 'no_lang_code', 'name', 'Axis Photonique (Canada)'),
(34438, 28649, 'no_lang_code', 'name', 'AOSOL (Portugal)'),
(34439, 28650, 'no_lang_code', 'name', 'Boeing (Canada)'),
(34440, 28651, 'no_lang_code', 'name', 'Boisaco (Canada)'),
(34441, 28652, 'no_lang_code', 'name', 'Minacs (Canada)'),
(34442, 28653, 'en', 'name', 'Bonnie Walker and Associates'),
(34443, 28654, 'no_lang_code', 'name', 'B-Con Engineering (Canada)'),
(34444, 28655, 'no_lang_code', 'name', 'Progressive Waste Solutions (Canada)'),
(34445, 28656, 'no_lang_code', 'name', 'Bunge (Canada)'),
(34446, 28657, 'no_lang_code', 'name', 'BGC Engineering (Canada)'),
(34447, 28658, 'no_lang_code', 'name', 'Boreal Laser (Canada)'),
(34448, 28659, 'no_lang_code', 'name', 'Toyota Motor Corporation (Canada)'),
(34449, 28660, 'no_lang_code', 'name', 'BHP (Canada)'),
(34450, 28661, 'no_lang_code', 'name', 'Badrilla (United Kingdom)'),
(34451, 28662, 'no_lang_code', 'name', 'BI Pure Water (Canada)'),
(34452, 28663, 'no_lang_code', 'name', 'Cargill (Canada)'),
(34453, 28664, 'no_lang_code', 'name', 'Borregaard (Norway)'),
(34454, 28665, 'no_lang_code', 'name', 'Borregaard (United Kingdom)'),
(34455, 28666, 'no_lang_code', 'name', 'BainUltra (Canada)'),
(34456, 28667, 'en', 'name', 'Canadian Avalanche Association'),
(34457, 28668, 'no_lang_code', 'name', 'Canadian Bio-Systems (Canada)'),
(34458, 28669, 'no_lang_code', 'name', 'Baker Hughes (Canada)'),
(34459, 28670, 'en', 'name', 'Canadian Cattlemen''s Association'),
(34460, 28671, 'no_lang_code', 'name', 'C-Therm Technologies (Canada)'),
(34461, 28672, 'en', 'name', 'American Guild of Organists'),
(34462, 28673, 'en', 'name', 'Boston Symphony Orchestra'),
(34463, 28674, 'no_lang_code', 'name', 'C. van ''t Riet Dairy Technology (Netherlands)'),
(34464, 28675, 'no_lang_code', 'name', 'BioTillion (United States)'),
(34465, 28676, 'fr', 'name', 'Bouthillette Parizeau'),
(34466, 28677, 'no_lang_code', 'name', 'BP (Canada)'),
(34467, 28678, 'en', 'name', 'Bath and North East Somerset Council'),
(34468, 28679, 'en', 'name', 'Canadian Chlorine Chemistry Council'),
(34469, 28680, 'no_lang_code', 'name', 'Cadcamation (Switzerland)'),
(34470, 28681, 'en', 'name', 'Canadian Council of Professional Fish Harvesters'),
(34471, 28682, 'no_lang_code', 'name', 'CadScan (United Kingdom)'),
(34472, 28683, 'en', 'name', 'Architects Council of Europe'),
(34473, 28684, 'en', 'name', 'Canadian Federation of Humane Societies'),
(34474, 28685, 'no_lang_code', 'name', 'Canadian General-Tower (Canada)'),
(34475, 28686, 'no_lang_code', 'name', 'Caerus Molecular Diagnostics (United States)'),
(34476, 28687, 'no_lang_code', 'name', 'BioDetection Systems (Netherlands)'),
(34477, 28688, 'en', 'name', 'Canadian Honey Council'),
(34478, 28689, 'en', 'name', 'Canadian Horticultural Council'),
(34479, 28690, 'en', 'name', 'Calgary Construction Association'),
(34480, 28691, 'fr', 'name', 'BiodƓme de MontrƩal'),
(34481, 28691, 'en', 'name', 'Montreal Biodome'),
(34482, 28692, 'no_lang_code', 'name', 'Kuraray (Canada)'),
(34483, 28693, 'en', 'name', 'Photons Canada'),
(34484, 28694, 'en', 'name', 'Brewing and Malting Barley Research Institute'),
(34485, 28695, 'en', 'name', 'Canadian International Grains Institute'),
(34486, 28696, 'en', 'name', 'Canadian Mining Industry Research Organization'),
(34487, 28697, 'fr', 'name', 'Association canadienne des carburants'),
(34488, 28697, 'en', 'name', 'Canadian Fuels Association'),
(34489, 28698, 'no_lang_code', 'name', 'BioForest Technologies (Canada)'),
(34490, 28699, 'no_lang_code', 'name', 'Canadian Pacific Railway (Canada)'),
(34491, 28700, 'en', 'name', '92nd Street Young Men''s and Young Women''s Hebrew Association'),
(34492, 28701, 'no_lang_code', 'name', 'Biogas Barth (Germany)'),
(34493, 28702, 'en', 'name', 'Canadian Seed Growers Association'),
(34494, 28703, 'en', 'name', 'Canadian Sheet Steel Building Institute'),
(34495, 28704, 'no_lang_code', 'name', 'Air Liquide (Canada)'),
(34496, 28705, 'no_lang_code', 'name', 'Alpine Helicopters (Canada)'),
(34497, 28706, 'fr', 'name', 'Association Canadienne des Producteurs d''Acier'),
(34498, 28706, 'en', 'name', 'Canadian Steel Producers Association'),
(34499, 28707, 'no_lang_code', 'name', 'CelluForce (Canada)'),
(34500, 28708, 'no_lang_code', 'name', 'Cambridge Cognition (United Kingdom)'),
(34501, 28709, 'en', 'name', 'Cement Association of Canada'),
(34502, 28710, 'en', 'name', 'Canadian Turfgrass Research Foundation'),
(34503, 28711, 'no_lang_code', 'name', 'Athena Environmental Sciences (United States)'),
(34504, 28712, 'no_lang_code', 'name', 'Cenovus Energy (Canada)'),
(34505, 28713, 'no_lang_code', 'name', 'Cambridge Life Sciences (United Kingdom)'),
(34506, 28714, 'fr', 'name', 'Association canadienne des tƩlƩcommunications sans fil'),
(34507, 28714, 'en', 'name', 'Canadian Wireless Telecommunications Association'),
(34508, 28715, 'en', 'name', 'Bristol Clinical Commissioning Group'),
(34509, 28716, 'en', 'name', 'Canadian Wood Council'),
(34510, 28716, 'fr', 'name', 'Conseil canadien du bois'),
(34511, 28717, 'no_lang_code', 'name', 'Canatec (Canada)'),
(34512, 28718, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Canada)'),
(34513, 28719, 'no_lang_code', 'name', 'CanBiocin (Canada)'),
(34514, 28720, 'no_lang_code', 'name', 'Kaer Biotherapeutics (United States)'),
(34515, 28721, 'en', 'name', 'Cambridgeshire and Peterborough NHS Foundation Trust'),
(34516, 28722, 'en', 'name', 'Camden and Islington NHS Foundation Trust'),
(34517, 28723, 'en', 'name', 'Center for New American Media'),
(34518, 28724, 'en', 'name', 'Third World Newsreel'),
(34519, 28725, 'en', 'name', 'British Columbia Blueberry Council'),
(34520, 28726, 'en', 'name', 'CANDU Owners Group'),
(34521, 28727, 'en', 'name', 'British Columbia Broiler Hatching Egg Commission'),
(34522, 28728, 'no_lang_code', 'name', 'Penn West Exploration (Canada)'),
(34523, 28729, 'no_lang_code', 'name', 'Campbell Scientific (Canada)'),
(34524, 28730, 'en', 'name', 'British Columbia Dairy Association'),
(34525, 28731, 'en', 'name', 'Biomedical Research Foundation of Northwest Louisiana'),
(34526, 28732, 'no_lang_code', 'name', 'Biomer Technology (United Kingdom)'),
(34527, 28733, 'no_lang_code', 'name', 'Canetique (Canada)'),
(34528, 28734, 'en', 'name', 'Canadian Concrete Masonry Producers Association'),
(34529, 28735, 'en', 'name', 'Central and North West London NHS Foundation Trust'),
(34530, 28736, 'en', 'name', 'British Columbia Salmon Farmers Association'),
(34531, 28737, 'no_lang_code', 'name', 'VƩtoquinol (Canada)'),
(34532, 28738, 'en', 'name', 'College of Veterinarians of British Columbia'),
(34533, 28739, 'no_lang_code', 'name', 'CarrƩ Technologies (Canada)'),
(34534, 28740, 'no_lang_code', 'name', 'Telesta Therapeutics (Canada)'),
(34535, 28741, 'en', 'name', 'Canterbury Shaker Village'),
(34536, 28742, 'no_lang_code', 'name', 'Biopeak Corporation (Canada)'),
(34537, 28743, 'no_lang_code', 'name', 'Biophotonic Solutions (United States)'),
(34538, 28744, 'no_lang_code', 'name', 'Cartiere Modesto Cardella (Italy)'),
(34539, 28745, 'no_lang_code', 'name', 'Cascades (Canada)'),
(34540, 28746, 'no_lang_code', 'name', 'Philips (Canada)'),
(34541, 28747, 'fr', 'name', 'Centre d''expertise et de recherche en infrastructures urbaines'),
(34542, 28748, 'en', 'name', 'Artificial Insemination Center of Quebec'),
(34543, 28748, 'fr', 'name', 'Centre d''InsƩmination artificielle du QuƩbec'),
(34544, 28749, 'en', 'name', 'CATAAlliance'),
(34545, 28750, 'no_lang_code', 'name', 'Catalyst Paper (Canada)'),
(34546, 28751, 'fr', 'name', 'Centre de DƩveloppement du Porc du QuƩbec'),
(34547, 28752, 'en', 'name', 'Cape Breton Development Corporation'),
(34548, 28753, 'fr', 'name', 'Bitume QuƩbec'),
(34549, 28754, 'en', 'name', 'Cattle Industry Development Council'),
(34550, 28755, 'no_lang_code', 'name', 'CH Four Biogas (Canada)'),
(34551, 28756, 'no_lang_code', 'name', 'Capital Power (Canada)'),
(34552, 28757, 'no_lang_code', 'name', 'CBC (Canada)'),
(34553, 28757, 'fr', 'name', 'SociƩtƩ Radio-Canada'),
(34554, 28758, 'no_lang_code', 'name', 'Jacobs (Canada)'),
(34555, 28759, 'en', 'name', 'Computer Based Training for Cognitive Behavioral Therapy'),
(34556, 28760, 'no_lang_code', 'name', 'Chai-Na-Ta (Canada)'),
(34557, 28761, 'fr', 'name', 'Centre de Recherche en Sciences Animales de Deschambault'),
(34558, 28762, 'no_lang_code', 'name', 'Combined Computer Services (Netherlands)'),
(34559, 28763, 'no_lang_code', 'name', 'Commonwealth Plywood (Canada)'),
(34560, 28764, 'en', 'name', 'Clarity Films'),
(34561, 28765, 'no_lang_code', 'name', 'Clayburn Refractories (Canada)'),
(34562, 28766, 'fr', 'name', 'Centre de la SƩcuritƩ des TƩlƩcommunications'),
(34563, 28766, 'en', 'name', 'Communications Security Establishment'),
(34564, 28767, 'no_lang_code', 'name', 'CLC (Italy)'),
(34565, 28768, 'no_lang_code', 'name', 'Compagnie Industrielle de la Matière Végétale (France)'),
(34566, 28769, 'no_lang_code', 'name', 'Credo Interactive (Canada)'),
(34567, 28770, 'no_lang_code', 'name', 'Comptoir Agricole Sabrevois (Canada)'),
(34568, 28771, 'no_lang_code', 'name', 'Chevron (Canada)'),
(34569, 28772, 'no_lang_code', 'name', 'CM Labs Simulations (Canada)'),
(34570, 28773, 'no_lang_code', 'name', 'Chevron (United States)'),
(34571, 28774, 'en', 'name', 'Canadian Hydrogen and Fuel Cell Association'),
(34572, 28775, 'no_lang_code', 'name', 'CNH Industrial (Canada)'),
(34573, 28776, 'en', 'name', 'Chinese Culture Center of San Francisco'),
(34574, 28777, 'en', 'name', 'China Institute in America'),
(34575, 28778, 'en', 'name', 'Conner Prairie'),
(34576, 28779, 'no_lang_code', 'name', 'Cochlear (Australia)'),
(34577, 28780, 'no_lang_code', 'name', 'CrossWing (Canada)'),
(34578, 28781, 'en', 'name', 'Digital Catapult'),
(34579, 28782, 'en', 'name', 'Christian Aid'),
(34580, 28783, 'en', 'name', 'Canadian Heritage'),
(34581, 28783, 'fr', 'name', 'Patrimoine Canadien'),
(34582, 28784, 'en', 'name', 'CODAC Behavioral Health Services'),
(34583, 28785, 'no_lang_code', 'name', 'Austro Control (Austria)'),
(34584, 28785, 'de', 'name', 'Ɩsterreichische Gesellschaft für Zivilluftfahrt'),
(34585, 28786, 'no_lang_code', 'name', 'Codagenix (United States)'),
(34586, 28787, 'it', 'name', 'Consorzio Futuro in Ricerca'),
(34587, 28788, 'en', 'name', 'Cumulative Environmental Management Association'),
(34588, 28789, 'no_lang_code', 'name', 'Curadel (United States)'),
(34589, 28790, 'no_lang_code', 'name', 'Mtekvision (Canada)'),
(34590, 28791, 'no_lang_code', 'name', 'Ciena (Canada)'),
(34591, 28792, 'no_lang_code', 'name', 'Cognizant (United Kingdom)'),
(34592, 28793, 'no_lang_code', 'name', 'Gooch & Housego (Greece)'),
(34593, 28794, 'en', 'name', 'Construction Owners Association of Alberta'),
(34594, 28795, 'no_lang_code', 'name', 'BIO (Canada)'),
(34595, 28796, 'no_lang_code', 'name', 'Custom Security Industries (Canada)'),
(34596, 28797, 'no_lang_code', 'name', 'Ciment QuƩbec (Canada)'),
(34597, 28798, 'en', 'name', 'Consumer Commission on the Accreditation of Health Services'),
(34598, 28799, 'en', 'name', 'College Art Association'),
(34599, 28800, 'es', 'name', 'Contactica'),
(34600, 28801, 'fr', 'name', 'ConfƩrence RƩgionale des EluEs du Bas-Saint-Laurent'),
(34601, 28802, 'no_lang_code', 'name', 'Contango Strategies (Canada)'),
(34602, 28803, 'en', 'name', 'CIS Scientific'),
(34603, 28804, 'no_lang_code', 'name', 'Cismet (Germany)'),
(34604, 28805, 'no_lang_code', 'name', 'Bacher Energie (Switzerland)'),
(34605, 28806, 'no_lang_code', 'name', 'Cistel Technology (Canada)'),
(34606, 28807, 'en', 'name', 'College of Policing'),
(34607, 28808, 'no_lang_code', 'name', 'Staal Technisch Centrum (Netherlands)'),
(34608, 28809, 'no_lang_code', 'name', 'CorActive (Canada)'),
(34609, 28810, 'en', 'name', 'Colorado Springs Fine Arts Center'),
(34610, 28811, 'no_lang_code', 'name', 'Magna International (Canada)'),
(34611, 28812, 'en', 'name', 'Coral Reef Research Foundation'),
(34612, 28813, 'no_lang_code', 'name', 'Cerpotech (Norway)'),
(34613, 28814, 'en', 'name', 'Innov & Export PME'),
(34614, 28815, 'no_lang_code', 'name', 'Cyrium Technologies (Canada)'),
(34615, 28816, 'no_lang_code', 'name', 'Ceska Astronomicka Spolecnost'),
(34616, 28817, 'no_lang_code', 'name', 'Solvay (Canada)'),
(34617, 28818, 'no_lang_code', 'name', 'Evonik (Canada)'),
(34618, 28819, 'en', 'name', 'Council of Forest Industries'),
(34619, 28820, 'en', 'name', 'Crafts Council'),
(34620, 28821, 'no_lang_code', 'name', 'CanKids KidsCan'),
(34621, 28822, 'no_lang_code', 'name', 'Dynamotive Energy Systems (Canada)'),
(34622, 28823, 'no_lang_code', 'name', 'Delastek (Canada)'),
(34623, 28824, 'no_lang_code', 'name', 'Cytodiagnostics (Canada)'),
(34624, 28825, 'en', 'name', 'Chadacre Agricultural Trust'),
(34625, 28826, 'no_lang_code', 'name', 'Delta-Q Technologies (Canada)'),
(34626, 28827, 'no_lang_code', 'name', 'Denison Mines (Canada)'),
(34627, 28828, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (United States)'),
(34628, 28829, 'no_lang_code', 'name', 'Center For Innovative Food Technology (United States)'),
(34629, 28830, 'no_lang_code', 'name', 'Enerworks (Canada)'),
(34630, 28831, 'no_lang_code', 'name', 'Enmax (Canada)'),
(34631, 28832, 'no_lang_code', 'name', 'Ingredion (Canada)'),
(34632, 28833, 'en', 'name', 'Department of Health Social Services and Public Safety'),
(34633, 28834, 'en', 'name', 'European Research Institute of Catalysis'),
(34634, 28835, 'no_lang_code', 'name', 'Eacom Timber Corporation (Canada)'),
(34635, 28836, 'no_lang_code', 'name', 'Dalton Pharma Services (Canada)'),
(34636, 28837, 'no_lang_code', 'name', 'D2L (Canada)'),
(34637, 28838, 'no_lang_code', 'name', 'Earthmaster Environmental Strategies (Canada)'),
(34638, 28839, 'en', 'name', 'East London NHS Foundation Trust'),
(34639, 28840, 'no_lang_code', 'name', 'Evolva (Denmark)'),
(34640, 28841, 'no_lang_code', 'name', 'EnWave Corporation (Canada)'),
(34641, 28842, 'no_lang_code', 'name', 'EVRAZ (United States)'),
(34642, 28843, 'no_lang_code', 'name', 'Dessau-Soprin (Canada)'),
(34643, 28844, 'no_lang_code', 'name', 'Easy Global Market (France)'),
(34644, 28845, 'en', 'name', 'Danish Science Factory'),
(34645, 28846, 'no_lang_code', 'name', 'Devices for Dignity'),
(34646, 28847, 'no_lang_code', 'name', 'Oerlikon (United Kingdom)'),
(34647, 28848, 'da', 'name', 'Dansk RĆøde Kors'),
(34648, 28849, 'no_lang_code', 'name', 'Akka Technologies (Italy)'),
(34649, 28850, 'en', 'name', 'Equal Arts'),
(34650, 28851, 'en', 'name', 'Ecancer'),
(34651, 28852, 'no_lang_code', 'name', 'Ericsson (United Kingdom)'),
(34652, 28853, 'no_lang_code', 'name', 'Diacarbon Energy (Canada)'),
(34653, 28854, 'no_lang_code', 'name', 'Ericsson (Denmark)'),
(34654, 28855, 'no_lang_code', 'name', 'Gold Peak Industries (China)'),
(34655, 28856, 'no_lang_code', 'name', 'F. MƩnard (Canada)'),
(34656, 28857, 'no_lang_code', 'name', 'F6S Network (United Kingdom)'),
(34657, 28858, 'no_lang_code', 'name', 'Fabris (Canada)'),
(34658, 28859, 'no_lang_code', 'name', 'Essilor (Canada)'),
(34659, 28860, 'no_lang_code', 'name', 'HeidelbergCement (Canada)'),
(34660, 28861, 'en', 'name', 'Edinburgh International Science Festival'),
(34661, 28862, 'no_lang_code', 'name', 'Fafard et FrĆØres (Canada)'),
(34662, 28863, 'no_lang_code', 'name', 'IHS Markit (United States)'),
(34663, 28864, 'no_lang_code', 'name', 'Etalon (Germany)'),
(34664, 28865, 'no_lang_code', 'name', 'NewMarket Corporation (United States)'),
(34665, 28866, 'no_lang_code', 'name', 'Eticas Research & Consulting (Spain)'),
(34666, 28867, 'no_lang_code', 'name', 'PTC (Canada)'),
(34667, 28868, 'no_lang_code', 'name', 'Ɖtudes-Recherches-MatĆ©riaux (France)'),
(34668, 28869, 'no_lang_code', 'name', 'Digital Scientific (United Kingdom)'),
(34669, 28870, 'no_lang_code', 'name', 'Datec Coating (Canada)'),
(34670, 28871, 'en', 'name', 'Museum at Eldridge Street'),
(34671, 28872, 'no_lang_code', 'name', 'RPM International (Canada)'),
(34672, 28873, 'no_lang_code', 'name', 'Digital Specialty Chemicals (Canada)'),
(34673, 28874, 'no_lang_code', 'name', 'Electrik Box (Canada)'),
(34674, 28875, 'en', 'name', 'Coating Consultancy'),
(34675, 28876, 'no_lang_code', 'name', 'Electronic Arts (Canada)'),
(34676, 28877, 'no_lang_code', 'name', 'Dillon Consulting'),
(34677, 28878, 'en', 'name', 'European Global Ocean Observing System'),
(34678, 28879, 'no_lang_code', 'name', 'Elevance Renewable Sciences (United States)'),
(34679, 28880, 'en', 'name', 'European Academy of Technology and Innovation Assessment'),
(34680, 28881, 'en', 'name', 'Cockcroft Institute'),
(34681, 28882, 'no_lang_code', 'name', 'Aecom (Canada)'),
(34682, 28883, 'it', 'name', 'Dipartimento per le pari opportunitĆ '),
(34683, 28884, 'en', 'name', 'European CanCer Organisation'),
(34684, 28885, 'no_lang_code', 'name', 'Firalis (France)'),
(34685, 28886, 'en', 'name', 'European Cooperation in Science and Technology'),
(34686, 28887, 'en', 'name', 'Earthgen'),
(34687, 28888, 'en', 'name', 'Canadian Standards Association'),
(34688, 28889, 'en', 'name', 'Canada Auto Workers'),
(34689, 28890, 'no_lang_code', 'name', 'Construction DJL (Canada)'),
(34690, 28891, 'no_lang_code', 'name', 'DK-SPEC (Canada)'),
(34691, 28892, 'no_lang_code', 'name', 'Federated Co-operatives (Canada)'),
(34692, 28893, 'no_lang_code', 'name', 'Early Warning (United States)'),
(34693, 28894, 'no_lang_code', 'name', 'Dolphin Computer Access (United Kingdom)'),
(34694, 28895, 'no_lang_code', 'name', 'EllisDon (Canada)'),
(34695, 28896, 'en', 'name', 'Fundy Tidal'),
(34696, 28897, 'no_lang_code', 'name', 'Fuseforward (Canada)'),
(34697, 28898, 'no_lang_code', 'name', 'Doric Lenses (Canada)'),
(34698, 28899, 'no_lang_code', 'name', 'Future-Shape (Germany)'),
(34699, 28900, 'no_lang_code', 'name', 'Future Vehicle Technologies (Canada)'),
(34700, 28901, 'fr', 'name', 'SociƩtƩ GƩologique de France'),
(34701, 28902, 'no_lang_code', 'name', 'FISO Technologies (Canada)'),
(34702, 28903, 'en', 'name', 'Federation of European Aquaculture Producers'),
(34703, 28904, 'no_lang_code', 'name', 'Gamma Dynamics (United States)'),
(34704, 28905, 'no_lang_code', 'name', 'DELL (Ireland)'),
(34705, 28906, 'en', 'name', 'Dundee City Council'),
(34706, 28907, 'no_lang_code', 'name', 'Emerging Concepts (United States)'),
(34707, 28908, 'en', 'name', 'Flowers Canada Growers'),
(34708, 28909, 'no_lang_code', 'name', 'Feldan (Canada)'),
(34709, 28910, 'no_lang_code', 'name', 'GlobVision (Canada)'),
(34710, 28911, 'no_lang_code', 'name', 'FMB Feinwerk- und Messtechnik (Germany)'),
(34711, 28912, 'no_lang_code', 'name', 'Clinique d''OptomĆ©trie l’Émerillon (Canada)'),
(34712, 28913, 'en', 'name', 'Felix Thornley Cobbold Agricultural Trust'),
(34713, 28914, 'no_lang_code', 'name', 'Golder Associates (United States)'),
(34714, 28915, 'en', 'name', 'Guysborough County Inshore Fishermen''s Association'),
(34715, 28916, 'en', 'name', 'Walsh Associates'),
(34716, 28917, 'no_lang_code', 'name', 'KGHM Polska MiedÅŗ (Poland)'),
(34717, 28918, 'no_lang_code', 'name', 'Focus Microwaves (Canada)'),
(34718, 28919, 'no_lang_code', 'name', 'Fibercryst (France)'),
(34719, 28920, 'no_lang_code', 'name', 'General Dynamics (Canada)'),
(34720, 28921, 'fr', 'name', 'Fondation de la Faune du QuƩbec'),
(34721, 28922, 'no_lang_code', 'name', 'FiberSensing (Portugal)'),
(34722, 28923, 'no_lang_code', 'name', 'Enbio (United States)'),
(34723, 28924, 'no_lang_code', 'name', 'FiberTech Optica (Canada)'),
(34724, 28925, 'no_lang_code', 'name', 'Gorman Bros Lumber (Canada)'),
(34725, 28926, 'no_lang_code', 'name', 'Fibics (Canada)'),
(34726, 28927, 'no_lang_code', 'name', 'Genetec (United States)'),
(34727, 28928, 'no_lang_code', 'name', 'Film Odyssey (United States)'),
(34728, 28929, 'no_lang_code', 'name', 'GeneFirst (United Kingdom)'),
(34729, 28930, 'en', 'name', 'FilmOntario'),
(34730, 28931, 'no_lang_code', 'name', 'Finning (Canada)'),
(34731, 28932, 'no_lang_code', 'name', 'Food Dudes (United Kingdom)'),
(34732, 28933, 'no_lang_code', 'name', 'Grace (Canada)'),
(34733, 28934, 'en', 'name', 'Food Standards Agency'),
(34734, 28935, 'no_lang_code', 'name', 'Hitachi (Canada)'),
(34735, 28936, 'en', 'name', 'FoodDrinkEurope'),
(34736, 28937, 'en', 'name', 'Haliburton Forest & Wild Life Reserve'),
(34737, 28938, 'no_lang_code', 'name', 'Pharmachem Laboratories (United States)'),
(34738, 28939, 'en', 'name', 'Halifax Regional Water Commission'),
(34739, 28940, 'no_lang_code', 'name', 'Ford Motor Company (Canada)'),
(34740, 28940, 'fr', 'name', 'Ford du Canada LimitƩe'),
(34741, 28941, 'no_lang_code', 'name', 'Grainseed (United Kingdom)'),
(34742, 28942, 'en', 'name', 'Hancock Shaker Village'),
(34743, 28943, 'en', 'name', 'Hydrogen Link Denmark Association'),
(34744, 28944, 'en', 'name', 'Grand River Conservation Authority'),
(34745, 28945, 'en', 'name', 'Horse Council BC'),
(34746, 28946, 'no_lang_code', 'name', 'Hardy Pictures (United Kingdom)'),
(34747, 28947, 'en', 'name', 'Grape Growers of Ontario'),
(34748, 28948, 'no_lang_code', 'name', 'Graphenea (Spain)'),
(34749, 28949, 'en', 'name', 'Great Lakes Fishery Commission'),
(34750, 28950, 'no_lang_code', 'name', 'Hazelett (United States)'),
(34751, 28951, 'en', 'name', 'Global Medical Excellence Cluster'),
(34752, 28952, 'no_lang_code', 'name', 'Howden (United Kingdom)'),
(34753, 28953, 'en', 'name', 'Greater Portland Landmarks'),
(34754, 28954, 'no_lang_code', 'name', 'FoundCare'),
(34755, 28955, 'no_lang_code', 'name', 'Huawei Technologies (Canada)'),
(34756, 28956, 'no_lang_code', 'name', 'GreenValue (Switzerland)'),
(34757, 28957, 'no_lang_code', 'name', 'Hudbay Minerals (Canada)'),
(34758, 28958, 'no_lang_code', 'name', 'ImmerVision (Canada)'),
(34759, 28959, 'no_lang_code', 'name', 'Heat Trace (United Kingdom)'),
(34760, 28960, 'no_lang_code', 'name', 'Grieg Seafood (Canada)'),
(34761, 28961, 'no_lang_code', 'name', 'Husky Energy (Canada)'),
(34762, 28962, 'no_lang_code', 'name', 'Immunocore (United Kingdom)'),
(34763, 28963, 'en', 'name', 'HeliCat Canada'),
(34764, 28964, 'no_lang_code', 'name', 'Huys Industries (Canada)'),
(34765, 28965, 'en', 'name', 'Friends School of Baltimore'),
(34766, 28966, 'no_lang_code', 'name', 'Gruppo Formula (Italy)'),
(34767, 28967, 'cs', 'name', 'PlanetƔrium Praha'),
(34768, 28968, 'en', 'name', 'Imperial War Museum'),
(34769, 28969, 'no_lang_code', 'name', 'Fugro (United Kingdom)'),
(34770, 28970, 'no_lang_code', 'name', 'Guelph Utility Pole (Canada)'),
(34771, 28971, 'no_lang_code', 'name', 'Guild Hall'),
(34772, 28972, 'en', 'name', 'Gulf of Mexico University Research Collaborative'),
(34773, 28973, 'no_lang_code', 'name', 'Hydromantis Environmental Software Solutions (Canada)'),
(34774, 28974, 'no_lang_code', 'name', 'GlycoScientific (United States)'),
(34775, 28975, 'en', 'name', 'Independent Broadcasting Associates'),
(34776, 28976, 'en', 'name', 'HelpAge India'),
(34777, 28977, 'no_lang_code', 'name', 'Eurorad (France)'),
(34778, 28978, 'no_lang_code', 'name', 'Kraft Heinz (Canada)'),
(34779, 28979, 'no_lang_code', 'name', 'AMS (Finland)'),
(34780, 28980, 'no_lang_code', 'name', 'Armacell (Canada)'),
(34781, 28981, 'no_lang_code', 'name', 'Heptares Therapeutics (United Kingdom)'),
(34782, 28982, 'no_lang_code', 'name', 'Hyteon (Canada)'),
(34783, 28983, 'fr', 'name', 'Institut de Recherche et de DƩveloppement en Agroenvironnement'),
(34784, 28983, 'en', 'name', 'Institute for Research and Development in Agri-Environment'),
(34785, 28984, 'no_lang_code', 'name', 'Hackett Publishing (United States)'),
(34786, 28985, 'no_lang_code', 'name', 'Heraeus (Canada)'),
(34787, 28986, 'en', 'name', 'QMedic'),
(34788, 28987, 'no_lang_code', 'name', 'Perrigo (Belgium)'),
(34789, 28988, 'en', 'name', 'Intensive Care National Audit & Research Centre'),
(34790, 28989, 'en', 'name', 'Hertfordshire Partnership University NHS Foundation Trust'),
(34791, 28990, 'en', 'name', 'IT Foundation for the Visually Impaired'),
(34792, 28991, 'no_lang_code', 'name', 'Hewlett-Packard (Canada)'),
(34793, 28992, 'no_lang_code', 'name', 'Hitachi Global Storage Technologies (United States)'),
(34794, 28993, 'hu', 'name', 'Informatikai, TƔvkƶzlƩsi Ʃs Elektronikai VƔllalkozƔsok SzƶvetsƩge'),
(34795, 28994, 'en', 'name', 'Higher Education Academy'),
(34796, 28995, 'fr', 'name', 'Association Canadienne de la Technologie de l''Information'),
(34797, 28995, 'en', 'name', 'Information Technology Association of Canada'),
(34798, 28996, 'no_lang_code', 'name', 'Highview Power Storage (United Kingdom)'),
(34799, 28997, 'no_lang_code', 'name', 'Informer (Greece)'),
(34800, 28998, 'no_lang_code', 'name', 'AkzoNobel (Canada)'),
(34801, 28999, 'no_lang_code', 'name', 'Rutter (Canada)'),
(34802, 29000, 'no_lang_code', 'name', 'InteraXon (Canada)'),
(34803, 29001, 'no_lang_code', 'name', 'Biolin Scientific (United Kingdom)'),
(34804, 29002, 'no_lang_code', 'name', 'IDELIX Software (Canada)'),
(34805, 29003, 'en', 'name', 'Initiative for Automotive Manufacturing Innovation'),
(34806, 29004, 'es', 'name', 'Instituto de Formación y Estudios Sociales'),
(34807, 29005, 'en', 'name', 'Institute for Research and Development'),
(34808, 29006, 'en', 'name', 'Interface Symposia'),
(34809, 29007, 'it', 'name', 'Istituto Italiano per l''Africa e l''Oriente'),
(34810, 29008, 'no_lang_code', 'name', 'Genias Software (Germany)'),
(34811, 29009, 'no_lang_code', 'name', 'Constellation Brands (Canada)'),
(34812, 29010, 'en', 'name', 'Interior Lumber Manufacturers Association'),
(34813, 29011, 'no_lang_code', 'name', 'Kemira (Canada)'),
(34814, 29012, 'no_lang_code', 'name', 'Innovative Energy Solution (United States)'),
(34815, 29013, 'en', 'name', 'Institute of Clinical Research'),
(34816, 29014, 'ro', 'name', 'Poliția de Frontieră RomĆ¢nă'),
(34817, 29015, 'en', 'name', 'International Cinematographers Guild'),
(34818, 29016, 'no_lang_code', 'name', 'ITS Electronics (Canada)'),
(34819, 29017, 'en', 'name', 'British Academy'),
(34820, 29018, 'no_lang_code', 'name', 'Iron Ore Company (Canada)'),
(34821, 29019, 'en', 'name', 'Institute of Nature Conservation'),
(34822, 29019, 'pl', 'name', 'Instytut Ochrony Przyrody'),
(34823, 29020, 'en', 'name', 'Kent County Council'),
(34824, 29021, 'en', 'name', 'Kentucky Educational Television'),
(34825, 29022, 'no_lang_code', 'name', 'Kerr Wood Leidal Associates (Canada)'),
(34826, 29023, 'no_lang_code', 'name', 'Kinectrics (Canada)'),
(34827, 29024, 'no_lang_code', 'name', 'KPM Industries (Canada)'),
(34828, 29025, 'en', 'name', 'Landscape Institute'),
(34829, 29026, 'no_lang_code', 'name', 'Ionic Systems (United States)'),
(34830, 29027, 'no_lang_code', 'name', 'Kingston Software Factory (Canada)'),
(34831, 29028, 'no_lang_code', 'name', 'Kinova (Canada)'),
(34832, 29029, 'no_lang_code', 'name', 'Laricina Energy (Canada)'),
(34833, 29030, 'en', 'name', 'International Council on Mining and Metals'),
(34834, 29031, 'en', 'name', 'Heythrop College, University of London'),
(34835, 29032, 'en', 'name', 'Ravensbourne University London'),
(34836, 29033, 'no_lang_code', 'name', 'KnowCharge (Canada)'),
(34837, 29034, 'no_lang_code', 'name', 'Jackson Laboratories (India)'),
(34838, 29035, 'en', 'name', 'Leo Baeck Institute'),
(34839, 29036, 'en', 'name', 'International Solar Energy Research Center Konstanz'),
(34840, 29037, 'no_lang_code', 'name', 'Chantiers Chibougamau (Canada)'),
(34841, 29038, 'no_lang_code', 'name', 'Knowledge Broadband Services (Greece)'),
(34842, 29039, 'no_lang_code', 'name', 'International Submarine Engineering (Canada)'),
(34843, 29040, 'no_lang_code', 'name', 'Norleaf Networks (Canada)'),
(34844, 29041, 'no_lang_code', 'name', 'J. D. Irving (Canada)'),
(34845, 29042, 'no_lang_code', 'name', 'Lexicon Technologies (United States)'),
(34846, 29043, 'no_lang_code', 'name', 'Island Timberlands (Canada)'),
(34847, 29044, 'en', 'name', 'Life Science Governance Institute'),
(34848, 29045, 'no_lang_code', 'name', 'Komet Group (Austria)'),
(34849, 29046, 'en', 'name', 'Japan Society'),
(34850, 29047, 'no_lang_code', 'name', 'KGS Group (Canada)'),
(34851, 29048, 'en', 'name', 'Istanbul Metropolitan Municipality'),
(34852, 29049, 'en', 'name', 'Kopint-TƔrki Institute for Economic Research'),
(34853, 29050, 'no_lang_code', 'name', 'Tolko (Canada)'),
(34854, 29051, 'no_lang_code', 'name', 'Kronos (Canada)'),
(34855, 29052, 'no_lang_code', 'name', 'Kumetrix (United States)'),
(34856, 29053, 'no_lang_code', 'name', 'Louisiana-Pacific (Canada)'),
(34857, 29054, 'no_lang_code', 'name', 'Kurt J. Lesker (United Kingdom)'),
(34858, 29055, 'no_lang_code', 'name', 'Link Microtek (United Kingdom)'),
(34859, 29056, 'no_lang_code', 'name', 'Linnaeus Plant Sciences (Canada)'),
(34860, 29057, 'no_lang_code', 'name', 'Accel Brands (United States)'),
(34861, 29058, 'en', 'name', 'Living Streets'),
(34862, 29059, 'no_lang_code', 'name', 'Lumerical Solutions (Canada)'),
(34863, 29060, 'en', 'name', 'East Asian Observatory'),
(34864, 29061, 'no_lang_code', 'name', 'Logrotex (Spain)'),
(34865, 29062, 'en', 'name', 'London Centre for Nanotechnology'),
(34866, 29063, 'en', 'name', 'London Metropolitan Archives'),
(34867, 29064, 'fr', 'name', 'SociƩtƩ de DƩveloppement de I''industrie Maricole'),
(34868, 29065, 'en', 'name', 'Morning Sun'),
(34869, 29066, 'no_lang_code', 'name', 'LuminUltra Technologies (Canada)'),
(34870, 29067, 'no_lang_code', 'name', 'GeoInformation (United Kingdom)'),
(34871, 29068, 'no_lang_code', 'name', 'Hutchinson (Canada)'),
(34872, 29069, 'no_lang_code', 'name', 'JV Driver Projects (Canada)'),
(34873, 29070, 'no_lang_code', 'name', 'Paladin Labs (Canada)'),
(34874, 29071, 'en', 'name', 'Maritime Fishermen''s Union'),
(34875, 29072, 'no_lang_code', 'name', 'McAsphalt Industries (Canada)'),
(34876, 29073, 'no_lang_code', 'name', 'Kalesnikoff Lumber (Canada)'),
(34877, 29074, 'no_lang_code', 'name', 'Kalite Sistem Group (Turkey)'),
(34878, 29075, 'en', 'name', 'The Liverpool Institute for Performing Arts'),
(34879, 29076, 'en', 'name', 'Institute of Physical-Chemical and Biological Problems in Soil Science'),
(34880, 29076, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физико-химических Šø биологических проблем ŠæŠ¾Ń‡Š²Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(34881, 29077, 'no_lang_code', 'name', 'Manning Diversified Forest Products (Canada)'),
(34882, 29078, 'en', 'name', 'Manitoba Forage Seed Association'),
(34883, 29079, 'en', 'name', 'Kootenay Association for Science & Technology'),
(34884, 29080, 'no_lang_code', 'name', 'Materium Innovations (Canada)'),
(34885, 29081, 'en', 'name', 'Lake Huron & Elgin Area Primary Water Supply Systems'),
(34886, 29082, 'fr', 'name', 'General Society of Surveillance'),
(34887, 29082, 'no_lang_code', 'name', 'SGS (Canada)'),
(34888, 29083, 'no_lang_code', 'name', 'KBL Group International (United States)'),
(34889, 29084, 'no_lang_code', 'name', 'MediWiSe (United Kingdom)'),
(34890, 29085, 'no_lang_code', 'name', 'Lyndon Fish Hatcheries'),
(34891, 29086, 'no_lang_code', 'name', 'Mabarex (Canada)'),
(34892, 29087, 'no_lang_code', 'name', 'Magellium (United Kingdom)'),
(34893, 29088, 'no_lang_code', 'name', 'Lambert Peat Moss (Canada)'),
(34894, 29089, 'no_lang_code', 'name', 'Metamaterial Technologies (Canada)'),
(34895, 29090, 'no_lang_code', 'name', 'Medicyte (Germany)'),
(34896, 29091, 'no_lang_code', 'name', 'MAHLE Filter Systems (Canada)'),
(34897, 29092, 'no_lang_code', 'name', 'Lamda Technology (Greece)'),
(34898, 29093, 'no_lang_code', 'name', 'Karolinska Development (Sweden)'),
(34899, 29094, 'no_lang_code', 'name', 'Sun Gro Horticulture (Canada)'),
(34900, 29095, 'no_lang_code', 'name', 'Maibec (Canada)'),
(34901, 29096, 'en', 'name', 'Michigan Manufacturing Technology Center'),
(34902, 29097, 'no_lang_code', 'name', 'InterDigital (Canada)'),
(34903, 29098, 'no_lang_code', 'name', 'Cermaq (Canada)'),
(34904, 29099, 'no_lang_code', 'name', 'Kellogg''s (Canada)'),
(34905, 29100, 'no_lang_code', 'name', 'IDEAconsult'),
(34906, 29101, 'no_lang_code', 'name', 'Morgan Solar (Canada)'),
(34907, 29102, 'en', 'name', 'Manchester Art Gallery'),
(34908, 29103, 'en', 'name', 'National Coal Mining Museum for England'),
(34909, 29104, 'en', 'name', 'Manitoba Canola Growers Association'),
(34910, 29105, 'en', 'name', 'National Council on Aging'),
(34911, 29106, 'en', 'name', 'Manitoba Aerospace Association'),
(34912, 29107, 'en', 'name', 'Mother and Infant Research Activities'),
(34913, 29108, 'en', 'name', 'National Farmers Union'),
(34914, 29109, 'no_lang_code', 'name', 'Motion Metrics International (Canada)'),
(34915, 29110, 'no_lang_code', 'name', 'Mike Wiegele Helicopter Skiing (Canada)'),
(34916, 29111, 'no_lang_code', 'name', 'Mikro-Tek (Canada)'),
(34917, 29112, 'no_lang_code', 'name', 'Motor Design (United Kingdom)'),
(34918, 29113, 'no_lang_code', 'name', 'Millar Western (Canada)'),
(34919, 29114, 'no_lang_code', 'name', 'Motorola (Canada)'),
(34920, 29115, 'en', 'name', 'New Hampshire Farm Museum'),
(34921, 29116, 'no_lang_code', 'name', 'Metaara Medical Technologies (Canada)'),
(34922, 29117, 'no_lang_code', 'name', 'AMT Die Casting (Canada)'),
(34923, 29117, 'fr', 'name', 'Moulage sous pression AMT'),
(34924, 29118, 'no_lang_code', 'name', 'Material (Belgium)'),
(34925, 29119, 'no_lang_code', 'name', 'Metso (Canada)'),
(34926, 29120, 'no_lang_code', 'name', 'Michelin (Canada)'),
(34927, 29121, 'no_lang_code', 'name', 'Microcide (United States)'),
(34928, 29122, 'fr', 'name', 'Desjardins'),
(34929, 29123, 'no_lang_code', 'name', 'Micromolding Solutions (Canada)'),
(34930, 29124, 'no_lang_code', 'name', 'Nalcor Energy (Canada)'),
(34931, 29125, 'en', 'name', 'National Society for the Prevention of Cruelty to Children'),
(34932, 29126, 'en', 'name', 'Newfoundland Aquaculture Industry Association'),
(34933, 29127, 'en', 'name', 'Ministry of Sustainable Development, Environment and the Fight against Climate Change'),
(34934, 29128, 'no_lang_code', 'name', 'Microsoft (India)'),
(34935, 29129, 'en', 'name', 'MRC Lifecourse Epidemiology Unit'),
(34936, 29130, 'fr', 'name', 'Centre des Technologies du Gaz Naturel'),
(34937, 29130, 'en', 'name', 'Natural Gas Technologies Centre'),
(34938, 29131, 'en', 'name', 'MRC Protein Phosphorylation and Ubiquitylation Unit'),
(34939, 29132, 'en', 'name', 'Ministry of Community Safety and Correctional Services'),
(34940, 29132, 'fr', 'name', 'Ministère de la Sécurité communautaire et des Services correctionnels'),
(34941, 29133, 'en', 'name', 'Southern Regional Assembly'),
(34942, 29134, 'en', 'name', 'Midwest Biomedical Research Foundation'),
(34943, 29135, 'no_lang_code', 'name', 'North American Construction Group (Canada)'),
(34944, 29136, 'en', 'name', 'Ministry of Health and Public Hygiene'),
(34945, 29137, 'en', 'name', 'Ministry of the Interior of the Republic of Latvia'),
(34946, 29138, 'no_lang_code', 'name', 'Multimatic (Canada)'),
(34947, 29139, 'en', 'name', 'North Staffordshire Clinical Commissioning Group'),
(34948, 29140, 'no_lang_code', 'name', 'ModuleWorks (Romania)'),
(34949, 29141, 'no_lang_code', 'name', 'Neptec Design Group (Canada)'),
(34950, 29142, 'no_lang_code', 'name', 'Modine Manufacturing (United States)'),
(34951, 29143, 'no_lang_code', 'name', 'NestlƩ (Canada)'),
(34952, 29144, 'no_lang_code', 'name', 'ExxonMobil (Canada)'),
(34953, 29145, 'no_lang_code', 'name', 'Nexterra (Canada)'),
(34954, 29146, 'en', 'name', 'Northumbria Healthcare NHS Foundation Trust'),
(34955, 29147, 'en', 'name', 'Athens City'),
(34956, 29148, 'en', 'name', 'NHS Ayrshire and Arran'),
(34957, 29149, 'no_lang_code', 'name', 'Mistik Management (Canada)'),
(34958, 29150, 'en', 'name', 'Leeds Arts University'),
(34959, 29151, 'fr', 'name', 'Administration rƩgionale Kativik'),
(34960, 29151, 'en', 'name', 'Kativik Regional Government'),
(34961, 29152, 'no_lang_code', 'name', 'McLaren Honda (United Kingdom)'),
(34962, 29153, 'en', 'name', 'Molly Brown House Museum'),
(34963, 29154, 'no_lang_code', 'name', 'Monitor Coatings (United Kingdom)'),
(34964, 29155, 'en', 'name', 'NHS Education for Scotland'),
(34965, 29156, 'no_lang_code', 'name', 'Monsanto (Canada)'),
(34966, 29157, 'en', 'name', 'NHS Lanarkshire'),
(34967, 29158, 'en', 'name', 'Nova Scotia Department of Agriculture'),
(34968, 29159, 'no_lang_code', 'name', 'Gibson Energy (Canada)'),
(34969, 29160, 'no_lang_code', 'name', 'NeuroRx Research (Canada)'),
(34970, 29161, 'en', 'name', 'Nichols House Museum'),
(34971, 29162, 'en', 'name', 'Office of Gas and Electricity Markets'),
(34972, 29163, 'en', 'name', 'Scottish Rite Masonic Museum and Library'),
(34973, 29164, 'no_lang_code', 'name', 'OLA Display (Canada)'),
(34974, 29165, 'no_lang_code', 'name', 'Sosei Group Corporation (United Kingdom)'),
(34975, 29166, 'no_lang_code', 'name', 'Pacific Street Films (United States)'),
(34976, 29167, 'no_lang_code', 'name', 'Noveltis (France)'),
(34977, 29168, 'en', 'name', 'Oxfordshire Clinical Commissioning Group'),
(34978, 29169, 'no_lang_code', 'name', 'NquiringMinds (United Kingdom)'),
(34979, 29170, 'no_lang_code', 'name', 'MW Canada (Canada)'),
(34980, 29171, 'no_lang_code', 'name', 'Pageau Morel and Associates (Canada)'),
(34981, 29172, 'no_lang_code', 'name', 'Nu-Tech Precision Metals (Canada)'),
(34982, 29173, 'no_lang_code', 'name', 'Nalco (Canada)'),
(34983, 29174, 'no_lang_code', 'name', 'Palcan Energy Corporation (Canada)'),
(34984, 29175, 'no_lang_code', 'name', 'STR Europe (France)'),
(34985, 29176, 'en', 'name', 'Paracel Laboratories'),
(34986, 29177, 'no_lang_code', 'name', 'Paradigm Productions (United States)'),
(34987, 29178, 'no_lang_code', 'name', 'O/E Land (Canada)'),
(34988, 29179, 'no_lang_code', 'name', 'ParetoLogic (Canada)'),
(34989, 29180, 'no_lang_code', 'name', 'Object Research Systems (Canada)'),
(34990, 29181, 'no_lang_code', 'name', 'Nokia (Canada)'),
(34991, 29182, 'no_lang_code', 'name', 'Ocean Power Technologies (United Kingdom)'),
(34992, 29183, 'no_lang_code', 'name', 'Parrheim Foods (Canada)'),
(34993, 29184, 'no_lang_code', 'name', 'InnoVactiv (Canada)'),
(34994, 29185, 'en', 'name', 'Asparagus Farmers of Ontario'),
(34995, 29186, 'en', 'name', 'Ontario Bean Growers'),
(34996, 29187, 'en', 'name', 'Parteq Innovations (Canada)'),
(34997, 29188, 'en', 'name', 'Ontario Clean Water Agency'),
(34998, 29189, 'en', 'name', 'Norfolk and Suffolk NHS Foundation Trust'),
(34999, 29190, 'no_lang_code', 'name', 'Novozymes (Canada)'),
(35000, 29191, 'en', 'name', 'Ontario Commercial Fisheries'' Association'),
(35001, 29192, 'en', 'name', 'Particle Data Group'),
(35002, 29193, 'no_lang_code', 'name', 'Phoenix Canada Oil Company (Canada)'),
(35003, 29194, 'en', 'name', 'Ontario Dairy Council'),
(35004, 29195, 'en', 'name', 'Ministry of Energy, Northern Development and Mines'),
(35005, 29195, 'fr', 'name', 'MinistĆØre de l''Ɖnergie, du DĆ©veloppement du Nord et des Mines'),
(35006, 29196, 'no_lang_code', 'name', 'Quantic EMC (Canada)'),
(35007, 29197, 'no_lang_code', 'name', 'Magnus Chemicals (Canada)'),
(35008, 29197, 'fr', 'name', 'Produits Chimiques Magnus'),
(35009, 29198, 'no_lang_code', 'name', 'Paton (Canada)'),
(35010, 29199, 'no_lang_code', 'name', 'Olin (Canada)'),
(35011, 29200, 'en', 'name', 'Open Group'),
(35012, 29201, 'no_lang_code', 'name', 'Open Text (Canada)'),
(35013, 29202, 'no_lang_code', 'name', 'PCL Construction (Canada)'),
(35014, 29203, 'no_lang_code', 'name', 'Osaka Gas (United States)'),
(35015, 29204, 'no_lang_code', 'name', 'Quattriuum (Canada)'),
(35016, 29205, 'no_lang_code', 'name', 'Premium Brands Holdings (Canada)'),
(35017, 29206, 'no_lang_code', 'name', 'RPC Bebo (United Kingdom)'),
(35018, 29207, 'no_lang_code', 'name', 'Opsun Technologies (Canada)'),
(35019, 29208, 'no_lang_code', 'name', 'Ortelio (United Kingdom)'),
(35020, 29209, 'no_lang_code', 'name', 'Xebec (Canada)'),
(35021, 29210, 'en', 'name', 'Plimoth Plantation'),
(35022, 29211, 'en', 'name', 'Poets House'),
(35023, 29212, 'no_lang_code', 'name', 'Prolysis (United Kingdom)'),
(35024, 29213, 'no_lang_code', 'name', 'Peregrine Diamonds (Canada)'),
(35025, 29214, 'no_lang_code', 'name', 'Radiant Genomics (United States)'),
(35026, 29215, 'no_lang_code', 'name', 'Polisilk (Spain)'),
(35027, 29216, 'no_lang_code', 'name', 'Osemi (Canada)'),
(35028, 29217, 'no_lang_code', 'name', 'Ostara Nutrient Recovery Technologies (Canada)'),
(35029, 29218, 'no_lang_code', 'name', 'Prompt (Canada)'),
(35030, 29219, 'no_lang_code', 'name', 'Rainford Precision (United Kingdom)'),
(35031, 29220, 'no_lang_code', 'name', 'Polymer Research Technologies (Canada)'),
(35032, 29221, 'no_lang_code', 'name', 'Peterborough Utilities Service (Canada)'),
(35033, 29222, 'no_lang_code', 'name', 'Petrel Robertson Consulting (Canada)'),
(35034, 29223, 'fr', 'name', 'Ouranos'),
(35035, 29224, 'no_lang_code', 'name', 'Outotec (Canada)'),
(35036, 29225, 'no_lang_code', 'name', 'OSI Systems (United Kingdom)'),
(35037, 29226, 'en', 'name', 'Federation of the Food and Drink Industries of the Czech Republic'),
(35038, 29227, 'no_lang_code', 'name', 'Prototek (United States)'),
(35039, 29228, 'no_lang_code', 'name', 'Linde (Canada)'),
(35040, 29229, 'no_lang_code', 'name', 'Read Jones Christoffersen (Canada)'),
(35041, 29230, 'no_lang_code', 'name', 'Pacific Safety Products (Canada)'),
(35042, 29231, 'no_lang_code', 'name', 'Gleason (Italy)'),
(35043, 29232, 'no_lang_code', 'name', 'Precision Varionic International (United Kingdom)'),
(35044, 29233, 'no_lang_code', 'name', 'Exchange Income (Canada)'),
(35045, 29234, 'en', 'name', 'Provincial Health Services Authority'),
(35046, 29235, 'no_lang_code', 'name', 'Phantom Design (United States)'),
(35047, 29236, 'no_lang_code', 'name', 'Natrix Separations (Canada)'),
(35048, 29237, 'en', 'name', 'Red Cliff Band of Lake Superior Chippewa'),
(35049, 29238, 'no_lang_code', 'name', 'Phillips 66 (United States)'),
(35050, 29239, 'no_lang_code', 'name', 'Upsher-Smith Laboratories (United States)'),
(35051, 29240, 'no_lang_code', 'name', 'Pressure BioSciences (United States)'),
(35052, 29241, 'no_lang_code', 'name', 'Red Ninja (United Kingdom)'),
(35053, 29242, 'no_lang_code', 'name', 'Presteve Foods (Canada)'),
(35054, 29243, 'no_lang_code', 'name', 'RedBite (United Kingdom)'),
(35055, 29244, 'no_lang_code', 'name', 'Rosstech Signals (Canada)'),
(35056, 29245, 'no_lang_code', 'name', 'Rotite Technologies (United Kingdom)'),
(35057, 29246, 'en', 'name', 'Redcar and Cleveland Borough Council'),
(35058, 29247, 'en', 'name', 'Quebec Intensive Silviculture Network'),
(35059, 29247, 'fr', 'name', 'RƩseau Ligniculture QuƩbec'),
(35060, 29248, 'it', 'name', 'Procoat'),
(35061, 29249, 'no_lang_code', 'name', 'Restek (United States)'),
(35062, 29250, 'no_lang_code', 'name', 'Schneider Electric (Canada)'),
(35063, 29251, 'en', 'name', 'Royal Air Force Museum'),
(35064, 29252, 'en', 'name', 'Royal Albert Memorial Museum'),
(35065, 29253, 'no_lang_code', 'name', 'Wireless 2000 RF & UWB Technologies (Canada)'),
(35066, 29254, 'en', 'name', 'Regional Council in Kalmar County'),
(35067, 29255, 'no_lang_code', 'name', 'Brantford Energy (Canada)'),
(35068, 29256, 'fr', 'name', 'Monnaie royale canadienne'),
(35069, 29256, 'no_lang_code', 'name', 'Royal Canadian Mint (Canada)'),
(35070, 29257, 'en', 'name', 'Public Works and Government Services Canada'),
(35071, 29257, 'fr', 'name', 'Travaux publics et Services gouvernementaux Canada'),
(35072, 29258, 'fr', 'name', 'Gendarmerie royale du Canada'),
(35073, 29258, 'en', 'name', 'Royal Canadian Mounted Police'),
(35074, 29259, 'no_lang_code', 'name', 'Schwarzwaldmilch Freiburg (Germany)'),
(35075, 29260, 'en', 'name', 'Royal College of General Practitioners'),
(35076, 29261, 'no_lang_code', 'name', 'Relay Software (United Kingdom)'),
(35077, 29262, 'no_lang_code', 'name', 'Pulse Energy (New Zealand)'),
(35078, 29263, 'no_lang_code', 'name', 'Sci-Tec (United States)'),
(35079, 29264, 'en', 'name', 'Royal Society of Edinburgh'),
(35080, 29265, 'no_lang_code', 'name', 'Purelink (Canada)'),
(35081, 29266, 'no_lang_code', 'name', 'RTDS Technologies (Canada)'),
(35082, 29267, 'no_lang_code', 'name', 'PV3 Technologies (United Kingdom)'),
(35083, 29268, 'en', 'name', 'Department of Transportation, Infrastructure and Energy'),
(35084, 29269, 'no_lang_code', 'name', 'Replify (United Kingdom)'),
(35085, 29270, 'no_lang_code', 'name', 'PVOH Polymers (United Kingdom)'),
(35086, 29271, 'no_lang_code', 'name', 'Aguettant (France)'),
(35087, 29272, 'no_lang_code', 'name', 'Enseco Energy Services (Canada)'),
(35088, 29273, 'en', 'name', 'Parliament of United Kingdom'),
(35089, 29273, 'cy', 'name', 'TÅ·''r Arglwyddi'),
(35090, 29274, 'en', 'name', 'Sheffield Health and Social Care NHS Foundation Trust'),
(35091, 29275, 'en', 'name', 'Government of Manitoba'),
(35092, 29276, 'en', 'name', 'Sheldon Museum and Cultural Center');
INSERT INTO `ror_settings` VALUES
(35093, 29277, 'fr', 'name', 'Gouvernement du Nouveau-Brunswick'),
(35094, 29277, 'en', 'name', 'Government of New Brunswick'),
(35095, 29278, 'no_lang_code', 'name', 'Qpoint Composite (Germany)'),
(35096, 29279, 'no_lang_code', 'name', 'Sealite (United States)'),
(35097, 29280, 'en', 'name', 'National Cancer Research Institute'),
(35098, 29281, 'no_lang_code', 'name', 'QPS Photronics (Canada)'),
(35099, 29282, 'no_lang_code', 'name', 'Sherritt (Canada)'),
(35100, 29283, 'no_lang_code', 'name', 'Search-Lab (Hungary)'),
(35101, 29284, 'no_lang_code', 'name', 'SeCan (Canada)'),
(35102, 29285, 'no_lang_code', 'name', 'Shoestring Press (United States)'),
(35103, 29286, 'no_lang_code', 'name', 'PepsiCo (Canada)'),
(35104, 29287, 'en', 'name', 'Seeper'),
(35105, 29288, 'en', 'name', 'Government of Saskatchewan'),
(35106, 29289, 'no_lang_code', 'name', 'Seibersdorf Laboratories (Austria)'),
(35107, 29290, 'no_lang_code', 'name', 'Qualcomm (Canada)'),
(35108, 29291, 'no_lang_code', 'name', 'Castolin Eutectic (United Kingdom)'),
(35109, 29292, 'no_lang_code', 'name', 'Systems, Applications & Products in Data Processing (Canada)'),
(35110, 29293, 'en', 'name', 'Government of The Gambia'),
(35111, 29294, 'en', 'name', 'Government of Slovakia'),
(35112, 29295, 'no_lang_code', 'name', 'Toray International Europe (Germany)'),
(35113, 29296, 'no_lang_code', 'name', 'Sika (Canada)'),
(35114, 29297, 'en', 'name', 'Saskatchewan Pork Development Board'),
(35115, 29298, 'no_lang_code', 'name', 'Somfy (Canada)'),
(35116, 29299, 'no_lang_code', 'name', 'Sensor Development (United States)'),
(35117, 29300, 'no_lang_code', 'name', 'Servier (Canada)'),
(35118, 29301, 'no_lang_code', 'name', 'SiliconPro (Canada)'),
(35119, 29302, 'no_lang_code', 'name', 'Sonaca (Canada)'),
(35120, 29303, 'en', 'name', 'Seven'),
(35121, 29304, 'no_lang_code', 'name', 'Simplot (United States)'),
(35122, 29305, 'no_lang_code', 'name', 'Soquem (Canada)'),
(35123, 29306, 'no_lang_code', 'name', 'Rockwell Automation (Canada)'),
(35124, 29307, 'no_lang_code', 'name', 'Hog Administrative Marketing Services (Canada)'),
(35125, 29308, 'no_lang_code', 'name', 'Rogers Communications (Canada)'),
(35126, 29309, 'no_lang_code', 'name', 'Hendrix Genetics (Canada)'),
(35127, 29310, 'no_lang_code', 'name', 'Roli (United Kingdom)'),
(35128, 29311, 'no_lang_code', 'name', 'Crown Investments Corporation (Canada)'),
(35129, 29312, 'en', 'name', 'Save the Children'),
(35130, 29313, 'en', 'name', 'Southern Regional Council'),
(35131, 29314, 'no_lang_code', 'name', 'Colas (Canada)'),
(35132, 29315, 'no_lang_code', 'name', 'Sovar (Canada)'),
(35133, 29316, 'no_lang_code', 'name', 'Sioen Industries (Belgium)'),
(35134, 29317, 'no_lang_code', 'name', 'Schlumberger (Canada)'),
(35135, 29318, 'no_lang_code', 'name', 'Equinor (Canada)'),
(35136, 29319, 'no_lang_code', 'name', 'Stedfast (Canada)'),
(35137, 29320, 'no_lang_code', 'name', 'RHI Magnesita (Canada)'),
(35138, 29321, 'no_lang_code', 'name', 'Tecnologie Avanzate (Italy)'),
(35139, 29322, 'no_lang_code', 'name', 'Tecrea (United Kingdom)'),
(35140, 29323, 'no_lang_code', 'name', 'Siva (Italy)'),
(35141, 29324, 'no_lang_code', 'name', 'ATS Automation Tooling Systems (United States)'),
(35142, 29325, 'en', 'name', 'Skeena Fisheries Commission'),
(35143, 29326, 'no_lang_code', 'name', 'Telus (Canada)'),
(35144, 29327, 'en', 'name', 'The Audio Recording Academy'),
(35145, 29328, 'no_lang_code', 'name', 'West Fraser (Canada)'),
(35146, 29329, 'en', 'name', 'Joint Implementation Network'),
(35147, 29330, 'no_lang_code', 'name', 'Smart Skin (Canada)'),
(35148, 29331, 'no_lang_code', 'name', 'Schrader International (United Kingdom)'),
(35149, 29332, 'en', 'name', 'Stone Lantern Films'),
(35150, 29333, 'no_lang_code', 'name', 'Snook (United Kingdom)'),
(35151, 29334, 'no_lang_code', 'name', 'SST Wireless (Canada)'),
(35152, 29335, 'no_lang_code', 'name', 'Terahertz Technology Solutions (Canada)'),
(35153, 29336, 'en', 'name', 'Straight Ahead Pictures'),
(35154, 29337, 'no_lang_code', 'name', 'Systems Engineering and Assessment (United Kingdom)'),
(35155, 29338, 'no_lang_code', 'name', 'Teratech Components (United Kingdom)'),
(35156, 29339, 'no_lang_code', 'name', 'TeraXion (Canada)'),
(35157, 29340, 'no_lang_code', 'name', 'Contship Italia (Italy)'),
(35158, 29341, 'no_lang_code', 'name', 'Teshmont (Canada)'),
(35159, 29342, 'no_lang_code', 'name', 'Agbar (Spain)'),
(35160, 29342, 'es', 'name', 'Sociedad General de Aguas de Barcelona'),
(35161, 29343, 'no_lang_code', 'name', 'Tecnologia e Ricerca Italiana (Italy)'),
(35162, 29344, 'en', 'name', 'Nanotechnology Industries Association'),
(35163, 29345, 'no_lang_code', 'name', 'Surgical Specialties (United States)'),
(35164, 29346, 'no_lang_code', 'name', 'Tafisa (Canada)'),
(35165, 29347, 'en', 'name', 'Society of outdoor recreation establishments of Quebec'),
(35166, 29347, 'fr', 'name', 'SƩpaq'),
(35167, 29348, 'no_lang_code', 'name', 'Stuart Olson (Canada)'),
(35168, 29349, 'no_lang_code', 'name', 'Takeda (United Kingdom)'),
(35169, 29350, 'no_lang_code', 'name', 'Texel (Canada)'),
(35170, 29351, 'en', 'name', 'St. Lawrence Seaway Management'),
(35171, 29352, 'no_lang_code', 'name', 'Miller Group (Canada)'),
(35172, 29353, 'no_lang_code', 'name', 'Thales (Canada)'),
(35173, 29354, 'no_lang_code', 'name', 'Oracle (Canada)'),
(35174, 29355, 'en', 'name', 'Montreal Transit Corporation'),
(35175, 29355, 'fr', 'name', 'SociƩtƩ de Transport de MontrƩal'),
(35176, 29356, 'en', 'name', 'Beth Johnson Foundation'),
(35177, 29357, 'en', 'name', 'Joint BioEnergy Institute'),
(35178, 29358, 'no_lang_code', 'name', 'Shermag (Canada)'),
(35179, 29359, 'en', 'name', 'Chemistry Industry Association of Canada'),
(35180, 29360, 'en', 'name', 'Chartered Institute of Plumbing and Heating Engineering'),
(35181, 29361, 'no_lang_code', 'name', 'Türk Telekom (Turkey)'),
(35182, 29362, 'no_lang_code', 'name', 'Coca Cola (United States)'),
(35183, 29363, 'no_lang_code', 'name', 'Tydock Pharma (Italy)'),
(35184, 29364, 'no_lang_code', 'name', 'TYK America (United States)'),
(35185, 29365, 'no_lang_code', 'name', 'Solana Networks (Canada)'),
(35186, 29366, 'en', 'name', 'Black Sea Commission'),
(35187, 29367, 'no_lang_code', 'name', 'Ubisoft (Canada)'),
(35188, 29368, 'en', 'name', 'The Francis Crick Institute'),
(35189, 29369, 'no_lang_code', 'name', 'Solink (Canada)'),
(35190, 29370, 'en', 'name', 'Holstein Association of Canada'),
(35191, 29371, 'en', 'name', 'Techmania Science Center'),
(35192, 29372, 'en', 'name', 'Somerset County Council'),
(35193, 29373, 'en', 'name', 'King''s Fund'),
(35194, 29374, 'no_lang_code', 'name', 'Solinst (Canada)'),
(35195, 29375, 'no_lang_code', 'name', 'Team Aquatic (Canada)'),
(35196, 29376, 'no_lang_code', 'name', 'Vernon Seed Orchard Company (Canada)'),
(35197, 29377, 'en', 'name', 'Sustainable Energy Authority of Ireland'),
(35198, 29378, 'no_lang_code', 'name', 'Sustainable Home Survey (United Kingdom)'),
(35199, 29379, 'en', 'name', 'SaskWater'),
(35200, 29380, 'no_lang_code', 'name', 'Vicon (United States)'),
(35201, 29381, 'en', 'name', 'Victim Support'),
(35202, 29382, 'no_lang_code', 'name', 'Windsor Utilities Commission (Canada)'),
(35203, 29383, 'no_lang_code', 'name', 'Vignet (United States)'),
(35204, 29384, 'pt', 'name', 'Instituto Nacional de Tecnologias de Informação e Comunicação'),
(35205, 29385, 'no_lang_code', 'name', 'Unilever (Canada)'),
(35206, 29386, 'no_lang_code', 'name', 'Thermal Electronics (United States)'),
(35207, 29387, 'en', 'name', 'West Coast Trollers Association'),
(35208, 29388, 'no_lang_code', 'name', 'Trend Micro (Canada)'),
(35209, 29389, 'no_lang_code', 'name', 'Unitechnologies (Switzerland)'),
(35210, 29390, 'no_lang_code', 'name', 'West of England Local Enterprise Partnership (United Kingdom)'),
(35211, 29391, 'en', 'name', 'Thomas Cole Historic House'),
(35212, 29392, 'en', 'name', 'United Community Center'),
(35213, 29393, 'en', 'name', 'United Indian Health Services'),
(35214, 29394, 'no_lang_code', 'name', 'Utilities Kingston (Canada)'),
(35215, 29395, 'no_lang_code', 'name', 'Thoth Technology (Canada)'),
(35216, 29396, 'no_lang_code', 'name', 'Spectra Energy (Canada)'),
(35217, 29397, 'en', 'name', 'Westcountry Rivers Trust'),
(35218, 29398, 'no_lang_code', 'name', 'ThyssenKrupp (Italy)'),
(35219, 29398, 'it', 'name', 'ThyssenKrupp Italia'),
(35220, 29399, 'no_lang_code', 'name', 'WestGen (Canada)'),
(35221, 29400, 'en', 'name', 'UNStudio'),
(35222, 29401, 'no_lang_code', 'name', 'Timber Specialties (Canada)'),
(35223, 29402, 'no_lang_code', 'name', 'Vanderwell Contractors (Canada)'),
(35224, 29403, 'no_lang_code', 'name', 'TimberWest Forest (Canada)'),
(35225, 29404, 'no_lang_code', 'name', 'Western Power Distribution (United Kingdom)'),
(35226, 29405, 'en', 'name', 'VISTA Science & Technology'),
(35227, 29406, 'no_lang_code', 'name', 'Varian Medical Systems (Canada)'),
(35228, 29407, 'no_lang_code', 'name', 'ViTRAK Systems (Canada)'),
(35229, 29408, 'no_lang_code', 'name', 'TM4 (Canada)'),
(35230, 29409, 'no_lang_code', 'name', 'Varta Micro Innovation (Austria)'),
(35231, 29410, 'no_lang_code', 'name', 'Viventia Bio (Canada)'),
(35232, 29411, 'no_lang_code', 'name', 'TECO-Westinghouse (Canada)'),
(35233, 29412, 'no_lang_code', 'name', 'Top Notch Building Maintenance (Canada)'),
(35234, 29413, 'no_lang_code', 'name', 'Union Gas (Canada)'),
(35235, 29414, 'no_lang_code', 'name', 'VoiceAge (Canada)'),
(35236, 29415, 'no_lang_code', 'name', 'Vaxine (Australia)'),
(35237, 29416, 'no_lang_code', 'name', 'Total (Canada)'),
(35238, 29417, 'fr', 'name', 'Univalor'),
(35239, 29418, 'en', 'name', 'Wildlife Habitat Canada (Canada)'),
(35240, 29419, 'no_lang_code', 'name', 'Vectos (United Kingdom)'),
(35241, 29420, 'no_lang_code', 'name', 'Vónin (Canada)'),
(35242, 29421, 'en', 'name', 'Women Make Movies'),
(35243, 29422, 'no_lang_code', 'name', 'Waiward Steel (Canada)'),
(35244, 29423, 'en', 'name', 'Walkerton Clean Water Centre'),
(35245, 29424, 'no_lang_code', 'name', 'Wallbridge Mining (Canada)'),
(35246, 29425, 'fr', 'name', 'Institut de l’Énergie Ɖolienne du Canada'),
(35247, 29425, 'en', 'name', 'Wind Energy Institute of Canada'),
(35248, 29426, 'en', 'name', 'Trace Crossings Elementary School'),
(35249, 29427, 'no_lang_code', 'name', 'Walsh Medical Devices (Canada)'),
(35250, 29428, 'no_lang_code', 'name', 'TransAlta (Canada)'),
(35251, 29429, 'nl', 'name', 'NuGO'),
(35252, 29430, 'de', 'name', 'Wasser Cluster Lunz'),
(35253, 29431, 'en', 'name', 'Wine Council of Ontario'),
(35254, 29432, 'no_lang_code', 'name', 'Water and Earth Science Associates (Canada)'),
(35255, 29433, 'no_lang_code', 'name', 'Alten (Sweden)'),
(35256, 29434, 'en', 'name', 'Winona County Historical Society'),
(35257, 29435, 'no_lang_code', 'name', 'TransMIT (Germany)'),
(35258, 29436, 'no_lang_code', 'name', 'Wireless Edge (Canada)'),
(35259, 29437, 'en', 'name', 'Transport for Greater Manchester'),
(35260, 29438, 'no_lang_code', 'name', 'Yellow Island Aquaculture (Canada)'),
(35261, 29439, 'no_lang_code', 'name', 'Hain Celestial (Canada)'),
(35262, 29440, 'no_lang_code', 'name', 'Wave Control Systems (Canada)'),
(35263, 29441, 'no', 'name', 'Trondheim Kommune'),
(35264, 29442, 'en', 'name', 'Waverly Consort'),
(35265, 29443, 'en', 'name', 'Wood Industry Cluster'),
(35266, 29444, 'en', 'name', 'Tudor Place'),
(35267, 29445, 'no_lang_code', 'name', 'Wedgestone Press (United States)'),
(35268, 29446, 'en', 'name', 'Regional Municipality of Ottawa'),
(35269, 29447, 'no_lang_code', 'name', 'Weetabix (Canada)'),
(35270, 29448, 'no_lang_code', 'name', 'Trademco (Greece)'),
(35271, 29449, 'no_lang_code', 'name', 'Zetec (United States)'),
(35272, 29450, 'en', 'name', 'Regional Municipality of Durham'),
(35273, 29451, 'en', 'name', 'Regional Municipality of Niagara'),
(35274, 29452, 'no_lang_code', 'name', 'HERION Systemtechnik (Germany)'),
(35275, 29453, 'no_lang_code', 'name', 'YTL (United Kingdom)'),
(35276, 29454, 'fr', 'name', 'Office de protection de la nature de Toronto et de la rƩgion'),
(35277, 29454, 'en', 'name', 'Toronto and Region Conservation Authority'),
(35278, 29455, 'no_lang_code', 'name', 'Treviso Tecnologia (Italy)'),
(35279, 29456, 'no_lang_code', 'name', 'Tri-Con Concrete Finishing (Canada)'),
(35280, 29457, 'en', 'name', 'European Association of Distance Teaching Universities'),
(35281, 29458, 'it', 'name', 'Fondazione Crui'),
(35282, 29459, 'en', 'name', 'Kazakh-American University'),
(35283, 29460, 'bs', 'name', 'Svjetski Univerzitetski Bosne i Hercegovine'),
(35284, 29461, 'no_lang_code', 'name', 'Proteus (United Kingdom)'),
(35285, 29462, 'es', 'name', 'Fundación José Ortega y Gasset-Gregorio Marañón'),
(35286, 29463, 'no_lang_code', 'name', 'Zenterio (Sweden)'),
(35287, 29464, 'en', 'name', 'Scottish Universities Life Sciences Alliance'),
(35288, 29465, 'no_lang_code', 'name', 'AB Realisator (Sweden)'),
(35289, 29466, 'no_lang_code', 'name', 'Samarkand2015 (Sweden)'),
(35290, 29467, 'no_lang_code', 'name', 'TvƄ Punkt Ett (Sweden)'),
(35291, 29468, 'no_lang_code', 'name', 'Abera Bioscience (Sweden)'),
(35292, 29469, 'no_lang_code', 'name', 'BlockMaster (Sweden)'),
(35293, 29470, 'no_lang_code', 'name', 'Combain Mobile (Sweden)'),
(35294, 29471, 'no_lang_code', 'name', 'Blue Institute (Sweden)'),
(35295, 29472, 'no_lang_code', 'name', 'CombiQ (Sweden)'),
(35296, 29473, 'no_lang_code', 'name', 'Absolicon Solar Collector (Sweden)'),
(35297, 29474, 'no_lang_code', 'name', 'Acconeer (Sweden)'),
(35298, 29475, 'en', 'name', 'St. Elizabeth Youngstown Hospital'),
(35299, 29476, 'no_lang_code', 'name', 'Blue Mobile Systems (Sweden)'),
(35300, 29477, 'no_lang_code', 'name', 'Acosense (Sweden)'),
(35301, 29478, 'en', 'name', 'National Urban League'),
(35302, 29479, 'no_lang_code', 'name', 'Conlogic (Sweden)'),
(35303, 29480, 'no_lang_code', 'name', 'EQUA Simulation (Sweden)'),
(35304, 29481, 'no_lang_code', 'name', 'Bonnier (Sweden)'),
(35305, 29482, 'no_lang_code', 'name', 'AcousticAgree (Sweden)'),
(35306, 29483, 'no_lang_code', 'name', 'ContextVision (Sweden)'),
(35307, 29484, 'no_lang_code', 'name', 'BorgWarner (Sweden)'),
(35308, 29485, 'no_lang_code', 'name', 'Ergolab (Sweden)'),
(35309, 29486, 'de', 'name', 'StifterHaus'),
(35310, 29487, 'no_lang_code', 'name', 'Corline Systems (Sweden)'),
(35311, 29488, 'no_lang_code', 'name', 'Brainglass (Sweden)'),
(35312, 29489, 'no_lang_code', 'name', 'ƅF (Sweden)'),
(35313, 29490, 'no_lang_code', 'name', 'Business Region Gƶteborg (Sweden)'),
(35314, 29491, 'no_lang_code', 'name', 'Affibody (Sweden)'),
(35315, 29492, 'no_lang_code', 'name', 'Munktell Science Park (Sweden)'),
(35316, 29493, 'no_lang_code', 'name', 'AFreeze (Austria)'),
(35317, 29494, 'no_lang_code', 'name', 'Colloidal Resource (Sweden)'),
(35318, 29495, 'no_lang_code', 'name', 'Ahrens (Sweden)'),
(35319, 29496, 'en', 'name', 'European Centre of Tort and Insurance Law'),
(35320, 29496, 'de', 'name', 'Europäische Zentrum für Schadenersatz- und Versicherungsrecht'),
(35321, 29497, 'no_lang_code', 'name', 'Airec (Sweden)'),
(35322, 29498, 'no_lang_code', 'name', 'Crearum (Sweden)'),
(35323, 29499, 'de', 'name', 'Bundesmobilienverwaltung'),
(35324, 29500, 'no_lang_code', 'name', 'Sydney Steel (Canada)'),
(35325, 29501, 'no_lang_code', 'name', 'CNS Systems (Sweden)'),
(35326, 29502, 'no_lang_code', 'name', 'Eurostep (Sweden)'),
(35327, 29503, 'no_lang_code', 'name', 'Airwatergreen (Sweden)'),
(35328, 29504, 'no_lang_code', 'name', 'Actuant (Sweden)'),
(35329, 29505, 'no_lang_code', 'name', 'Evidente (Sweden)'),
(35330, 29506, 'no_lang_code', 'name', 'CathPrint (Sweden)'),
(35331, 29507, 'no_lang_code', 'name', 'Glucox Biotech (Sweden)'),
(35332, 29508, 'no_lang_code', 'name', 'Excillum (Sweden)'),
(35333, 29509, 'no_lang_code', 'name', 'Crunchfish (Sweden)'),
(35334, 29510, 'no_lang_code', 'name', 'Exencotech (Sweden)'),
(35335, 29511, 'no_lang_code', 'name', 'CBL (Germany)'),
(35336, 29512, 'no_lang_code', 'name', 'GoalArt (Sweden)'),
(35337, 29513, 'no_lang_code', 'name', 'CBot (Sweden)'),
(35338, 29514, 'en', 'name', 'ƅkroken Science Park'),
(35339, 29515, 'no_lang_code', 'name', 'Exibea (Sweden)'),
(35340, 29516, 'no_lang_code', 'name', 'CybAero (Sweden)'),
(35341, 29517, 'no_lang_code', 'name', 'Cyclicor (Sweden)'),
(35342, 29518, 'no_lang_code', 'name', 'CCT Intermodal (Sweden)'),
(35343, 29519, 'no_lang_code', 'name', 'Cdup (Sweden)'),
(35344, 29520, 'en', 'name', 'Albertina'),
(35345, 29521, 'no_lang_code', 'name', 'Albireo (Sweden)'),
(35346, 29522, 'no_lang_code', 'name', 'CellaVision (Sweden)'),
(35347, 29523, 'no_lang_code', 'name', 'Googol (Sweden)'),
(35348, 29524, 'no_lang_code', 'name', 'Dafo Fomtec (Sweden)'),
(35349, 29525, 'no_lang_code', 'name', 'Algoryx Simulation (Sweden)'),
(35350, 29526, 'no_lang_code', 'name', 'Alkit Communications (Sweden)'),
(35351, 29527, 'sv', 'name', 'Almega'),
(35352, 29528, 'en', 'name', 'Fiber Optic Valley'),
(35353, 29529, 'en', 'name', 'Center for the Study of Issues in Public Mental Health'),
(35354, 29530, 'no_lang_code', 'name', 'Datachassi (Sweden)'),
(35355, 29531, 'de', 'name', 'Filmarchiv Austria'),
(35356, 29532, 'no_lang_code', 'name', 'Almi (Sweden)'),
(35357, 29533, 'no_lang_code', 'name', 'Findout Technologies (Sweden)'),
(35358, 29534, 'no_lang_code', 'name', 'DEKRA Industrial (Sweden)'),
(35359, 29535, 'en', 'name', 'Center for Research and Teaching in Economics'),
(35360, 29535, 'es', 'name', 'Centro de Investigación y Docencia Económicas'),
(35361, 29536, 'no_lang_code', 'name', 'Dellcron (Sweden)'),
(35362, 29537, 'no_lang_code', 'name', 'Denator (Sweden)'),
(35363, 29538, 'no_lang_code', 'name', 'Mivac Development (Sweden)'),
(35364, 29539, 'no_lang_code', 'name', 'Findwise (Sweden)'),
(35365, 29540, 'no_lang_code', 'name', 'Detectify (Sweden)'),
(35366, 29541, 'no_lang_code', 'name', 'Gƶteborg & Co TrƤffpunkt (Sweden)'),
(35367, 29542, 'en', 'name', 'Charity Storm'),
(35368, 29543, 'no_lang_code', 'name', 'Findus (Sweden)'),
(35369, 29544, 'no_lang_code', 'name', 'Chockie Group International (United States)'),
(35370, 29545, 'no_lang_code', 'name', 'Fingerprint Cards (Sweden)'),
(35371, 29546, 'no_lang_code', 'name', 'Diamorph (Sweden)'),
(35372, 29547, 'no_lang_code', 'name', 'Single Technologies (Sweden)'),
(35373, 29548, 'no_lang_code', 'name', 'ChromoGenics (Sweden)'),
(35374, 29549, 'no_lang_code', 'name', 'Cinside (Sweden)'),
(35375, 29550, 'no_lang_code', 'name', 'Finja (Sweden)'),
(35376, 29551, 'en', 'name', 'Gƶteborg Region Association of Local Authorities'),
(35377, 29552, 'no_lang_code', 'name', 'Disruptive Materials (Sweden)'),
(35378, 29553, 'no_lang_code', 'name', 'Cipherstone Technologies (Sweden)'),
(35379, 29554, 'no_lang_code', 'name', 'Clinical Laserthermia Systems (Sweden)'),
(35380, 29555, 'no_lang_code', 'name', 'Division By Zero (Sweden)'),
(35381, 29556, 'no_lang_code', 'name', 'Flexenclosure (Sweden)'),
(35382, 29557, 'no_lang_code', 'name', 'Cobolt (Sweden)'),
(35383, 29558, 'no_lang_code', 'name', 'Appear Networks (Sweden)'),
(35384, 29559, 'no_lang_code', 'name', 'Doberman (Sweden)'),
(35385, 29560, 'no_lang_code', 'name', 'Applied Nano Surfaces (Sweden)'),
(35386, 29561, 'no_lang_code', 'name', 'APR Technologies (Sweden)'),
(35387, 29562, 'no_lang_code', 'name', 'Flexiwaggon (Sweden)'),
(35388, 29563, 'no_lang_code', 'name', 'Cognimatics (Sweden)'),
(35389, 29564, 'no_lang_code', 'name', 'FlexProp (Sweden)'),
(35390, 29565, 'no_lang_code', 'name', 'Cold Cut Systems (Sweden)'),
(35391, 29566, 'no_lang_code', 'name', 'ScoreCloud (Sweden)'),
(35392, 29567, 'no_lang_code', 'name', 'Blackwing (Sweden)'),
(35393, 29568, 'no_lang_code', 'name', 'Aqua-Q (Sweden)'),
(35394, 29569, 'no_lang_code', 'name', 'Folke RydƩn Production (Sweden)'),
(35395, 29570, 'no_lang_code', 'name', 'Aventia (Spain)'),
(35396, 29571, 'no_lang_code', 'name', 'Follicum (Sweden)'),
(35397, 29572, 'no_lang_code', 'name', 'DSM (Austria)'),
(35398, 29573, 'sv', 'name', 'Fƶrbundet Unga Forskare'),
(35399, 29574, 'no_lang_code', 'name', 'American Axle & Manufacturing (Sweden)'),
(35400, 29575, 'no_lang_code', 'name', 'EasyMining (Sweden)'),
(35401, 29576, 'en', 'name', 'Swedish Institute for Studies in Education and Research'),
(35402, 29577, 'en', 'name', 'Association of Heavy Vehicles'),
(35403, 29577, 'sv', 'name', 'Tunga Fordon'),
(35404, 29578, 'no_lang_code', 'name', 'Aqwary (Sweden)'),
(35405, 29579, 'no_lang_code', 'name', 'Ecoloop (Sweden)'),
(35406, 29580, 'de', 'name', 'Architekturzentrum Wien'),
(35407, 29581, 'de', 'name', 'Institut für den Donauraum und Mitteleuropa'),
(35408, 29582, 'no_lang_code', 'name', 'Effectus But Different (Sweden)'),
(35409, 29583, 'de', 'name', 'Archiv der Erzdiƶzese Salzburg'),
(35410, 29584, 'no_lang_code', 'name', 'Efficax Energy (Sweden)'),
(35411, 29585, 'de', 'name', 'Institut für jüdische Geschichte Ɩsterreichs'),
(35412, 29585, 'en', 'name', 'Institute for Jewish History in Austria'),
(35413, 29586, 'no_lang_code', 'name', 'Arboritec (Sweden)'),
(35414, 29587, 'no_lang_code', 'name', 'Arcticus Systems (Sweden)'),
(35415, 29588, 'no_lang_code', 'name', 'EkoBalans Fenix (Sweden)'),
(35416, 29589, 'no_lang_code', 'name', 'Ariterm (Sweden)'),
(35417, 29590, 'en', 'name', 'Austrian Institute of Historical Research'),
(35418, 29590, 'de', 'name', 'Institut für Ɩsterreichische Geschichtsforschung'),
(35419, 29591, 'no_lang_code', 'name', 'Fotonic (Sweden)'),
(35420, 29592, 'no_lang_code', 'name', 'Ideus (Sweden)'),
(35421, 29593, 'sv', 'name', 'Drivhuset'),
(35422, 29594, 'no_lang_code', 'name', 'Ascatron (Sweden)'),
(35423, 29595, 'no_lang_code', 'name', 'Icellate (Sweden)'),
(35424, 29596, 'no_lang_code', 'name', 'Athera (Sweden)'),
(35425, 29597, 'en', 'name', 'International Bureau of Fiscal Documentation'),
(35426, 29598, 'sv', 'name', 'FoU Sƶdertƶrn'),
(35427, 29599, 'no_lang_code', 'name', 'Gothia Innovation (Sweden)'),
(35428, 29600, 'no_lang_code', 'name', 'Gotmic (Sweden)'),
(35429, 29601, 'no_lang_code', 'name', 'Gradientech (Sweden)'),
(35430, 29602, 'no_lang_code', 'name', 'Founders Alliance (Sweden)'),
(35431, 29603, 'de', 'name', 'Institut für Volkskultur und Kulturentwicklung'),
(35432, 29604, 'no_lang_code', 'name', 'Gu Holding (Sweden)'),
(35433, 29605, 'no_lang_code', 'name', 'Free2move (Sweden)'),
(35434, 29606, 'de', 'name', 'Institut für Wissenschaft und Kunst'),
(35435, 29607, 'no_lang_code', 'name', 'FriGeo (Sweden)'),
(35436, 29608, 'no_lang_code', 'name', 'Fujitsu (Sweden)'),
(35437, 29609, 'sv', 'name', 'Eksjƶ Municipality'),
(35438, 29610, 'sv', 'name', 'ATK Arbetstagarkonsultation'),
(35439, 29611, 'sv', 'name', 'HƤlsans Nya Verktyg'),
(35440, 29612, 'no_lang_code', 'name', 'ElectroHeat (Sweden)'),
(35441, 29613, 'en', 'name', 'Future Position X'),
(35442, 29614, 'en', 'name', 'Austrian Institute for International Affairs'),
(35443, 29614, 'de', 'name', 'Ɩsterreichische Institut für Internationale Politik'),
(35444, 29615, 'en', 'name', 'Institute for Financial Research'),
(35445, 29616, 'no_lang_code', 'name', 'Elfarm (Sweden)'),
(35446, 29617, 'no_lang_code', 'name', 'GasPorOx (Sweden)'),
(35447, 29618, 'no_lang_code', 'name', 'Gavagai (Sweden)'),
(35448, 29619, 'no_lang_code', 'name', 'Ellen (Sweden)'),
(35449, 29620, 'no_lang_code', 'name', 'GearWheel (Sweden)'),
(35450, 29621, 'en', 'name', 'Austrian Political Science Association'),
(35451, 29621, 'de', 'name', 'Ɩsterreichische Gesellschaft für Politikwissenschaft'),
(35452, 29622, 'no_lang_code', 'name', 'HelioCaminus (Sweden)'),
(35453, 29623, 'no_lang_code', 'name', 'Genovis (Sweden)'),
(35454, 29624, 'no_lang_code', 'name', 'Emstone (Sweden)'),
(35455, 29625, 'no_lang_code', 'name', 'Aventure (Sweden)'),
(35456, 29626, 'no_lang_code', 'name', 'Geosigma (Sweden)'),
(35457, 29627, 'no_lang_code', 'name', 'Avtech (Sweden)'),
(35458, 29628, 'no_lang_code', 'name', 'Gestamp (Sweden)'),
(35459, 29629, 'no_lang_code', 'name', 'Integrum (Sweden)'),
(35460, 29630, 'no_lang_code', 'name', 'Axcentua (Sweden)'),
(35461, 29631, 'no_lang_code', 'name', 'Hermes Medical Solutions (Sweden)'),
(35462, 29632, 'sv', 'name', 'Chalmersinvest'),
(35463, 29633, 'no_lang_code', 'name', 'Intelligent Machines (Sweden)'),
(35464, 29634, 'no_lang_code', 'name', 'Axiomatics (Sweden)'),
(35465, 29635, 'en', 'name', 'Swedish History Museum'),
(35466, 29636, 'no_lang_code', 'name', 'Enmesh (Sweden)'),
(35467, 29637, 'no_lang_code', 'name', 'IntelliWork (Sweden)'),
(35468, 29638, 'no_lang_code', 'name', 'Hoa''s Tool Shop (Sweden)'),
(35469, 29639, 'no_lang_code', 'name', 'Envic Sense (Sweden)'),
(35470, 29640, 'no_lang_code', 'name', 'Gipeco (Sweden)'),
(35471, 29641, 'no_lang_code', 'name', 'Inteno (Sweden)'),
(35472, 29642, 'no_lang_code', 'name', 'BioEnergy International (Austria)'),
(35473, 29643, 'no_lang_code', 'name', 'Mecdon (Sweden)'),
(35474, 29644, 'no_lang_code', 'name', 'Hot Disk (Sweden)'),
(35475, 29645, 'no_lang_code', 'name', 'Hotswaps (Sweden)'),
(35476, 29646, 'no_lang_code', 'name', 'HUI Research (Sweden)'),
(35477, 29647, 'no_lang_code', 'name', 'Mercene Labs (Sweden)'),
(35478, 29648, 'no_lang_code', 'name', 'Hulteberg (Sweden)'),
(35479, 29649, 'no_lang_code', 'name', 'Hultsteins (Sweden)'),
(35480, 29650, 'no_lang_code', 'name', 'Inventech Europe (Sweden)'),
(35481, 29651, 'no_lang_code', 'name', 'Husqvarna (Sweden)'),
(35482, 29652, 'no_lang_code', 'name', 'Mentor Communication (Sweden)'),
(35483, 29653, 'de', 'name', 'Höhere Bundeslehr- und Forschungsanstalt für Landwirtschaft, Landtechnik und Lebensmitteltechnologie'),
(35484, 29653, 'en', 'name', 'Josephinum Research'),
(35485, 29654, 'no_lang_code', 'name', 'Inwido (Sweden)'),
(35486, 29655, 'no_lang_code', 'name', 'BehavioSec (Sweden)'),
(35487, 29656, 'no_lang_code', 'name', 'BeeMobile (Sweden)'),
(35488, 29657, 'no_lang_code', 'name', 'Kairos Future (Sweden)'),
(35489, 29658, 'no_lang_code', 'name', 'Ionautics (Sweden)'),
(35490, 29659, 'no_lang_code', 'name', 'Bencar (Sweden)'),
(35491, 29660, 'no_lang_code', 'name', 'MetaSolutions (Sweden)'),
(35492, 29661, 'no_lang_code', 'name', 'Micro Delta T (Sweden)'),
(35493, 29662, 'en', 'name', 'Sunder Lal Jain Hospital'),
(35494, 29663, 'no_lang_code', 'name', 'KƤllbergs Industri (Sweden)'),
(35495, 29664, 'en', 'name', 'Mid Sweden Science Park'),
(35496, 29665, 'no_lang_code', 'name', 'IRnova (Sweden)'),
(35497, 29666, 'en', 'name', 'Kalmar Art Museum'),
(35498, 29666, 'sv', 'name', 'Kalmar Konstmuseum'),
(35499, 29667, 'no_lang_code', 'name', 'Innovation Management Consulting Group (Sweden)'),
(35500, 29668, 'no_lang_code', 'name', 'Image Intelligence (Sweden)'),
(35501, 29669, 'no_lang_code', 'name', 'MidDec Scandinavia (Sweden)'),
(35502, 29670, 'no_lang_code', 'name', 'Irras (Sweden)'),
(35503, 29671, 'no_lang_code', 'name', 'Immunsystem (Sweden)'),
(35504, 29672, 'en', 'name', 'Karl-Adam Bonnier Foundation'),
(35505, 29673, 'no_lang_code', 'name', 'Immune Therapy Holdings (Sweden)'),
(35506, 29674, 'no_lang_code', 'name', 'HeidelbergCement (Sweden)'),
(35507, 29675, 'no_lang_code', 'name', 'Immunicum (Sweden)'),
(35508, 29676, 'no_lang_code', 'name', 'Besab (Sweden)'),
(35509, 29677, 'en', 'name', 'Catholic Theological Private University Linz'),
(35510, 29677, 'de', 'name', 'Katholische Privat-UniversitƤt Linz'),
(35511, 29678, 'no_lang_code', 'name', 'Immunovia (Sweden)'),
(35512, 29679, 'no_lang_code', 'name', 'ITS (Sweden)'),
(35513, 29680, 'no_lang_code', 'name', 'Impact Coatings (Sweden)'),
(35514, 29681, 'no_lang_code', 'name', 'BioArctic Neuroscience (Sweden)'),
(35515, 29682, 'no_lang_code', 'name', 'BioLamina (Sweden)'),
(35516, 29683, 'no_lang_code', 'name', 'Biomotif (Sweden)'),
(35517, 29684, 'no_lang_code', 'name', 'Mƶbelriket (Swedenā€Ž)'),
(35518, 29685, 'no_lang_code', 'name', 'Industrial Development Center (Sweden)'),
(35519, 29686, 'no_lang_code', 'name', 'Bioprocess Control (Sweden)'),
(35520, 29687, 'no_lang_code', 'name', 'Impact Hub (Sweden)'),
(35521, 29688, 'no_lang_code', 'name', 'Moberg Pharma (Sweden)'),
(35522, 29689, 'no_lang_code', 'name', 'Bioptech (Sweden)'),
(35523, 29690, 'no_lang_code', 'name', 'Indusec (Sweden)'),
(35524, 29691, 'en', 'name', 'Johanneberg Science Park'),
(35525, 29692, 'no_lang_code', 'name', 'Mobergs (Sweden)'),
(35526, 29693, 'no_lang_code', 'name', 'Preeye Solutions (Sweden)'),
(35527, 29694, 'no_lang_code', 'name', 'BioResonator (Sweden)'),
(35528, 29695, 'no_lang_code', 'name', 'Inera (Sweden)'),
(35529, 29696, 'no_lang_code', 'name', 'JonDeTech (Sweden)'),
(35530, 29697, 'no_lang_code', 'name', 'Bioservo Technologies (Sweden)'),
(35531, 29698, 'no_lang_code', 'name', 'Mobile Heights (Sweden)'),
(35532, 29699, 'no_lang_code', 'name', 'Inerventions (Sweden)'),
(35533, 29700, 'no_lang_code', 'name', 'Monocl (Sweden)'),
(35534, 29701, 'no_lang_code', 'name', 'Klimator (Sweden)'),
(35535, 29702, 'no_lang_code', 'name', 'Biovica (Sweden)'),
(35536, 29703, 'no_lang_code', 'name', 'Biteam (Sweden)'),
(35537, 29704, 'no_lang_code', 'name', 'MRT System (Sweden)'),
(35538, 29705, 'no_lang_code', 'name', 'Bjarga (Sweden)'),
(35539, 29706, 'no_lang_code', 'name', 'OpiFlex (Sweden)'),
(35540, 29707, 'no_lang_code', 'name', 'Infobric (Sweden)'),
(35541, 29708, 'no_lang_code', 'name', 'Koenigsegg Automotive (Sweden)'),
(35542, 29709, 'no_lang_code', 'name', 'Bjƶrkemar Construction & Consulting (Sweden)'),
(35543, 29710, 'no_lang_code', 'name', 'Optea (Sweden)'),
(35544, 29711, 'en', 'name', 'MTO Safety'),
(35545, 29712, 'no_lang_code', 'name', 'OptiCall Software (Sweden)'),
(35546, 29713, 'no_lang_code', 'name', 'Optiplan (Sweden)'),
(35547, 29714, 'no_lang_code', 'name', 'Premune (Sweden)'),
(35548, 29715, 'de', 'name', 'Initiative Minderheiten Tirol'),
(35549, 29716, 'de', 'name', 'Museum für angewandte Kunst'),
(35550, 29716, 'en', 'name', 'Museum of Applied Arts'),
(35551, 29717, 'no_lang_code', 'name', 'Inkubatorn i BorƄs (Sweden)'),
(35552, 29718, 'no_lang_code', 'name', 'Danaher (Sweden)'),
(35553, 29719, 'no_lang_code', 'name', 'Optistring (Sweden)'),
(35554, 29720, 'no_lang_code', 'name', 'Mutewatch (Sweden)'),
(35555, 29721, 'no_lang_code', 'name', 'Innospire Systems (United States)'),
(35556, 29722, 'no_lang_code', 'name', 'Innovation Impact (Sweden)'),
(35557, 29723, 'no_lang_code', 'name', 'Optronic (Sweden)'),
(35558, 29724, 'no_lang_code', 'name', 'Mw-innovation (Sweden)'),
(35559, 29725, 'no_lang_code', 'name', 'Primateria (Sweden)'),
(35560, 29726, 'no_lang_code', 'name', 'Innovation Pioneers (Sweden)'),
(35561, 29727, 'no_lang_code', 'name', 'PrimeKey Solutions (Sweden)'),
(35562, 29728, 'no_lang_code', 'name', 'Orbital Systems (Sweden)'),
(35563, 29729, 'en', 'name', 'Growth Analysis'),
(35564, 29730, 'no_lang_code', 'name', 'Innovatum (Sweden)'),
(35565, 29731, 'no_lang_code', 'name', 'Procera Networks (Sweden)'),
(35566, 29732, 'no_lang_code', 'name', 'PositiveID (United States)'),
(35567, 29733, 'en', 'name', 'Ɩrebro Municipality'),
(35568, 29734, 'en', 'name', 'Business Sweden'),
(35569, 29735, 'en', 'name', 'Nacka Municipality'),
(35570, 29736, 'no_lang_code', 'name', 'Nanexa (Sweden)'),
(35571, 29737, 'no_lang_code', 'name', 'Processkontroll (Sweden)'),
(35572, 29738, 'no_lang_code', 'name', 'Orexo (Sweden)'),
(35573, 29739, 'no_lang_code', 'name', 'Promimic (Sweden)'),
(35574, 29740, 'no_lang_code', 'name', 'Narrative (Sweden)'),
(35575, 29741, 'no_lang_code', 'name', 'Orexplore (Sweden)'),
(35576, 29742, 'no_lang_code', 'name', 'SenseAir (Sweden)'),
(35577, 29743, 'no_lang_code', 'name', 'OrganoClick (Sweden)'),
(35578, 29744, 'no_lang_code', 'name', 'Kunskapsbolaget (Sweden)'),
(35579, 29745, 'no_lang_code', 'name', 'Provexa (Sweden)'),
(35580, 29746, 'no_lang_code', 'name', 'SenseGraphics (Sweden)'),
(35581, 29747, 'en', 'name', 'Ɩrnskƶldsvik Municipality'),
(35582, 29748, 'no_lang_code', 'name', 'Sensible Solutions (Sweden)'),
(35583, 29749, 'no_lang_code', 'name', 'SenSic (Sweden)'),
(35584, 29750, 'no_lang_code', 'name', 'Proximion (Sweden)'),
(35585, 29751, 'no_lang_code', 'name', 'Ortoma (Sweden)'),
(35586, 29752, 'en', 'name', 'Network for Transport Measures'),
(35587, 29753, 'de', 'name', 'Kunstakademie Düsseldorf'),
(35588, 29754, 'no_lang_code', 'name', 'Senzime (Sweden)'),
(35589, 29755, 'no_lang_code', 'name', 'Flex (Sweden)'),
(35590, 29756, 'no_lang_code', 'name', 'OssDsign (Sweden)'),
(35591, 29757, 'no_lang_code', 'name', 'Publit (Sweden)'),
(35592, 29758, 'no_lang_code', 'name', 'SEPS Technologies (Sweden)'),
(35593, 29759, 'no_lang_code', 'name', 'Qlucore (Sweden)'),
(35594, 29760, 'no_lang_code', 'name', 'Serendipity Innovations (Sweden)'),
(35595, 29761, 'no_lang_code', 'name', 'Kvarnstrands (Sweden)'),
(35596, 29762, 'no_lang_code', 'name', 'Serstech (Sweden)'),
(35597, 29763, 'no_lang_code', 'name', 'Needs Drive (Swedenā€Ž)'),
(35598, 29764, 'no_lang_code', 'name', 'Osstell (Sweden)'),
(35599, 29765, 'no_lang_code', 'name', 'NeoDynamics (Sweden)'),
(35600, 29766, 'en', 'name', 'Norwegian Labour Movement Archives and Library'),
(35601, 29767, 'no_lang_code', 'name', 'Setek Elektronik (Sweden)'),
(35602, 29768, 'en', 'name', 'Steel Structures Education Foundation'),
(35603, 29769, 'no_lang_code', 'name', 'Setrab (Sweden)'),
(35604, 29770, 'no_lang_code', 'name', 'Qrodo (Sweden)'),
(35605, 29771, 'no_lang_code', 'name', 'Neonode (Sweden)'),
(35606, 29772, 'no_lang_code', 'name', 'QRtech (Sweden)'),
(35607, 29773, 'en', 'name', 'NetPort Science Park'),
(35608, 29774, 'no_lang_code', 'name', 'Signal Processing Devices (Sweden)'),
(35609, 29775, 'no_lang_code', 'name', 'Quantum Technologies (Sweden)'),
(35610, 29776, 'no_lang_code', 'name', 'Nexam Chemical (Sweden)'),
(35611, 29777, 'no_lang_code', 'name', 're8 Bioplastics (Sweden)'),
(35612, 29778, 'no_lang_code', 'name', 'Sigolis (Sweden)'),
(35613, 29779, 'de', 'name', 'Landesmuseum KƤrnten'),
(35614, 29780, 'no_lang_code', 'name', 'Ngenic (Sweden)'),
(35615, 29781, 'no_lang_code', 'name', 'Realtime Embedded (Sweden)'),
(35616, 29782, 'no_lang_code', 'name', 'Simris Alg (Sweden)'),
(35617, 29783, 'en', 'name', 'Austrian State Archives'),
(35618, 29783, 'de', 'name', 'Ɩsterreichisches Staatsarchiv'),
(35619, 29784, 'no_lang_code', 'name', 'SimWay (Sweden)'),
(35620, 29785, 'no_lang_code', 'name', 'RecondOil (Sweden)'),
(35621, 29786, 'no_lang_code', 'name', 'Sioxmachines (Sweden)'),
(35622, 29787, 'no_lang_code', 'name', 'Nibie Ab (Sweden)'),
(35623, 29788, 'no_lang_code', 'name', 'Recorded Future (Sweden)'),
(35624, 29789, 'no_lang_code', 'name', 'Sirona Health Solutions (Sweden)'),
(35625, 29790, 'no_lang_code', 'name', 'Red Glead Discovery (Sweden)'),
(35626, 29791, 'en', 'name', 'Swedish Standards Institute'),
(35627, 29792, 'en', 'name', 'Swedish Incubators & Science Parks'),
(35628, 29793, 'en', 'name', 'SkƄne Food Innovation Network'),
(35629, 29793, 'sv', 'name', 'SkƄnes Livsmedelsakademi'),
(35630, 29794, 'no_lang_code', 'name', 'Redoxis (Sweden)'),
(35631, 29795, 'no_lang_code', 'name', 'Redsense Medical (Sweden)'),
(35632, 29796, 'no_lang_code', 'name', 'Redwood Pharma (Sweden)'),
(35633, 29797, 'en', 'name', 'Austrian Museum of Folk Life and Folk Art'),
(35634, 29797, 'de', 'name', 'Ɩsterreichisches Museum für Volkskunde'),
(35635, 29798, 'en', 'name', 'County Administrative Board of Stockholm'),
(35636, 29799, 'en', 'name', 'Skƶvde Municipality'),
(35637, 29800, 'no_lang_code', 'name', 'Nobel Museum'),
(35638, 29801, 'no_lang_code', 'name', 'ReformTech (Sweden)'),
(35639, 29802, 'no_lang_code', 'name', 'OverHorizon (Sweden)'),
(35640, 29803, 'no_lang_code', 'name', 'Smart Eye (Sweden)'),
(35641, 29804, 'sv', 'name', 'ƖvertorneĆ„ Municipality'),
(35642, 29805, 'no_lang_code', 'name', 'Nordic Aircraft (Sweden)'),
(35643, 29806, 'en', 'name', 'Swedish Network for Innovation & Technology Transfer Support'),
(35644, 29807, 'no_lang_code', 'name', 'LC-Tec Displays (Sweden)'),
(35645, 29808, 'no_lang_code', 'name', 'Ozma (Sweden)'),
(35646, 29809, 'no_lang_code', 'name', 'Nordic Medcom (Sweden)'),
(35647, 29810, 'no_lang_code', 'name', 'Nordic Paper (Sweden)'),
(35648, 29811, 'no_lang_code', 'name', 'Replisaurus Technologies (Sweden)'),
(35649, 29812, 'no_lang_code', 'name', 'RetCorr (Sweden)'),
(35650, 29813, 'no_lang_code', 'name', 'Parans (Sweden)'),
(35651, 29814, 'no_lang_code', 'name', 'Nordiq (Sweden)'),
(35652, 29815, 'no_lang_code', 'name', 'ReTreck (Sweden)'),
(35653, 29816, 'sv', 'name', 'Patent- och registreringsverket'),
(35654, 29816, 'fi', 'name', 'Ruotsin patentti- ja rekisterivirasto'),
(35655, 29816, 'en', 'name', 'Swedish Patent and Registration Office'),
(35656, 29817, 'en', 'name', 'Nordic Museum'),
(35657, 29818, 'no_lang_code', 'name', 'Lembke Elektromekaniska Verkstad (Sweden)'),
(35658, 29819, 'en', 'name', 'SƶdertƤlje Municipality'),
(35659, 29820, 'sv', 'name', 'Norrkƶping Science Park'),
(35660, 29821, 'en', 'name', 'Peepoople'),
(35661, 29822, 'no_lang_code', 'name', 'Sƶdra SkogsƤgarna (Sweden)'),
(35662, 29823, 'no_lang_code', 'name', 'Novosense (Sweden)'),
(35663, 29824, 'no_lang_code', 'name', 'Riksteatern (Sweden)'),
(35664, 29825, 'no_lang_code', 'name', 'Softronic (Sweden)'),
(35665, 29826, 'sv', 'name', 'Rinkebyakademien'),
(35666, 29827, 'no_lang_code', 'name', 'Nyfors (Sweden)'),
(35667, 29828, 'en', 'name', 'Malmƶ Municipality'),
(35668, 29829, 'no_lang_code', 'name', 'Penny (Sweden)'),
(35669, 29830, 'no_lang_code', 'name', 'RLS Global (Sweden)'),
(35670, 29831, 'no_lang_code', 'name', 'Perimed (Sweden)'),
(35671, 29832, 'en', 'name', 'Lund Municipality'),
(35672, 29833, 'no_lang_code', 'name', 'Solvatten (Sweden)'),
(35673, 29834, 'no_lang_code', 'name', 'Oatly (Sweden)'),
(35674, 29835, 'no_lang_code', 'name', 'RTI (Sweden)'),
(35675, 29836, 'en', 'name', 'LuleƄ Municipality'),
(35676, 29837, 'no_lang_code', 'name', 'Ɩhlins (Sweden)'),
(35677, 29838, 'de', 'name', 'Pflanzensoziologische Institut'),
(35678, 29839, 'no_lang_code', 'name', 'SƄgCenter (Sweden)'),
(35679, 29840, 'no_lang_code', 'name', 'Photidify (Sweden)'),
(35680, 29841, 'no_lang_code', 'name', 'PricewaterhouseCoopers (Sweden)'),
(35681, 29842, 'no_lang_code', 'name', 'Omnisys Instruments (Sweden)'),
(35682, 29843, 'no_lang_code', 'name', 'Piab (Sweden)'),
(35683, 29844, 'no_lang_code', 'name', 'Samtrafiken (Sweden)'),
(35684, 29845, 'no_lang_code', 'name', 'Oneday Wall (Sweden)'),
(35685, 29846, 'no_lang_code', 'name', 'OpenEye (Sweden)'),
(35686, 29847, 'no_lang_code', 'name', 'Plasmatrix (Sweden)'),
(35687, 29848, 'no_lang_code', 'name', 'Saplo (Sweden)'),
(35688, 29849, 'no_lang_code', 'name', 'SARomics Biostructures (Sweden)'),
(35689, 29850, 'no_lang_code', 'name', 'ScandiDos (Sweden)'),
(35690, 29851, 'no_lang_code', 'name', 'Centriair (Sweden)'),
(35691, 29852, 'no_lang_code', 'name', 'Polymer Factory (Sweden)'),
(35692, 29853, 'en', 'name', 'Entrepreneurship and Small Business Research Institute'),
(35693, 29854, 'en', 'name', 'Mathleaks'),
(35694, 29855, 'no_lang_code', 'name', 'Scanscot Technology (Sweden)'),
(35695, 29856, 'en', 'name', 'Internet Foundation In Sweden'),
(35696, 29857, 'no_lang_code', 'name', 'Schemagi (Sweden)'),
(35697, 29858, 'no_lang_code', 'name', 'Minesto (Sweden)'),
(35698, 29859, 'no_lang_code', 'name', 'Marstrom Composite (Sweden)'),
(35699, 29860, 'no_lang_code', 'name', 'PP Polymer (Sweden)'),
(35700, 29861, 'no_lang_code', 'name', 'Sciss (Sweden)'),
(35701, 29862, 'no_lang_code', 'name', 'Scint-X (Sweden)'),
(35702, 29863, 'no_lang_code', 'name', 'Precise Biometrics (Sweden)'),
(35703, 29863, 'zh', 'name', 'ē²¾ęŗ–ē”Ÿē‰©č­˜åˆ„å…¬'),
(35704, 29864, 'no_lang_code', 'name', 'Sectra (Sweden)'),
(35705, 29865, 'no_lang_code', 'name', 'Predect (Sweden)'),
(35706, 29866, 'en', 'name', 'Ideon Agro Food'),
(35707, 29867, 'en', 'name', 'Leading Health Care'),
(35708, 29868, 'en', 'name', 'Austrian Society for Cybernetic Studies'),
(35709, 29868, 'de', 'name', 'Ɩsterreichische Studiengesellschaft für Kybernetik'),
(35710, 29869, 'sv', 'name', 'Stiftelsen Marknadstekniskt Centrum'),
(35711, 29870, 'no_lang_code', 'name', 'Limes Audio (Sweden)'),
(35712, 29871, 'no_lang_code', 'name', 'Selden Mast (Sweden)'),
(35713, 29872, 'no_lang_code', 'name', 'Senionlab (Sweden)'),
(35714, 29873, 'no_lang_code', 'name', 'Sweco (Sweden)'),
(35715, 29874, 'no_lang_code', 'name', 'SensAbues (Sweden)'),
(35716, 29875, 'en', 'name', 'Swedish Industrial Design Foundation'),
(35717, 29876, 'en', 'name', 'Sweden-Japan Foundation'),
(35718, 29877, 'en', 'name', 'SwedenBIO'),
(35719, 29878, 'sv', 'name', 'Swecare'),
(35720, 29879, 'en', 'name', 'Venture Cup'),
(35721, 29880, 'no_lang_code', 'name', 'Swedish Electroforming Technology (Sweden)'),
(35722, 29881, 'no_lang_code', 'name', 'TopVisible (Sweden)'),
(35723, 29882, 'no_lang_code', 'name', 'Totech (Sweden)'),
(35724, 29883, 'en', 'name', 'Swedish House of Finance'),
(35725, 29884, 'no_lang_code', 'name', 'Lumina (Sweden)'),
(35726, 29885, 'en', 'name', 'Stockholm Science City Foundation'),
(35727, 29886, 'no_lang_code', 'name', 'Low Vision International (Sweden)'),
(35728, 29887, 'no_lang_code', 'name', 'Touchtech (Sweden)'),
(35729, 29888, 'en', 'name', 'Stockholm Innovation & Growth'),
(35730, 29889, 'en', 'name', 'Stockholm School of Entrepreneurship'),
(35731, 29890, 'no_lang_code', 'name', 'Trade Extensions (Sweden)'),
(35732, 29891, 'no_lang_code', 'name', 'Magle (Sweden)'),
(35733, 29892, 'it', 'name', 'Istituto Svedese di studi classici a Roma'),
(35734, 29892, 'en', 'name', 'Swedish Institute in Rome'),
(35735, 29893, 'no_lang_code', 'name', 'Street Smart Equipment (Sweden)'),
(35736, 29894, 'en', 'name', 'Swedish Medtech'),
(35737, 29895, 'no_lang_code', 'name', 'Transformator Design (Sweden)'),
(35738, 29896, 'no_lang_code', 'name', 'Starmonde Publishing Group'),
(35739, 29897, 'no_lang_code', 'name', 'Uppdragshuset (Sweden)'),
(35740, 29898, 'en', 'name', 'Student Competitions'),
(35741, 29899, 'no_lang_code', 'name', 'Staccato Technologies (Sweden)'),
(35742, 29900, 'no_lang_code', 'name', 'SemLab (Netherlands)'),
(35743, 29901, 'no_lang_code', 'name', 'Uson Marine (Sweden)'),
(35744, 29902, 'no_lang_code', 'name', 'Spotscale (Sweden)'),
(35745, 29903, 'no_lang_code', 'name', 'STUNS'),
(35746, 29904, 'en', 'name', 'Sport Support Center'),
(35747, 29905, 'no_lang_code', 'name', 'DSM (Sweden)'),
(35748, 29906, 'no_lang_code', 'name', 'SwedNanoTech (Sweden)'),
(35749, 29907, 'no_lang_code', 'name', 'Spiber Technologies (Sweden)'),
(35750, 29908, 'no_lang_code', 'name', 'Uminova Innovation (Sweden)'),
(35751, 29909, 'no_lang_code', 'name', 'Surgical Science (Sweden)'),
(35752, 29910, 'no_lang_code', 'name', 'Sustainable Business Hub (Sweden)'),
(35753, 29911, 'en', 'name', 'Swedish Institute of International Affairs'),
(35754, 29912, 'no_lang_code', 'name', 'Sysav South Scania Waste (Sweden)'),
(35755, 29913, 'no_lang_code', 'name', 'Uv Tech (Sweden)'),
(35756, 29914, 'no_lang_code', 'name', 'Sustainable Innovation (Sweden)'),
(35757, 29915, 'no_lang_code', 'name', 'Syntronic (Sweden)'),
(35758, 29916, 'no_lang_code', 'name', 'Tacton Systems (Sweden)'),
(35759, 29917, 'en', 'name', 'Sustainable Sweden Southeast'),
(35760, 29918, 'no_lang_code', 'name', 'SpaceTime Communication (Sweden)'),
(35761, 29919, 'no_lang_code', 'name', 'Valueguard (Sweden)'),
(35762, 29920, 'no_lang_code', 'name', 'Spacescape (Sweden)'),
(35763, 29921, 'no_lang_code', 'name', 'Taiga (Sweden)'),
(35764, 29922, 'sv', 'name', 'Svensk FƄgel Service'),
(35765, 29923, 'no_lang_code', 'name', 'Talentum (Sweden)'),
(35766, 29924, 'no_lang_code', 'name', 'Sony Digital Audio Disc Corporation (Austria)'),
(35767, 29925, 'no_lang_code', 'name', 'TƤrnsjƶ Garveri (Sweden)'),
(35768, 29926, 'sv', 'name', 'Svensk Form'),
(35769, 29927, 'no_lang_code', 'name', 'TechMarket (Sweden)'),
(35770, 29928, 'sv', 'name', 'Svensk Kollektivtrafik'),
(35771, 29929, 'no_lang_code', 'name', 'Viscogel (Sweden)'),
(35772, 29930, 'no_lang_code', 'name', 'Teknikfƶretagen (Sweden)'),
(35773, 29931, 'no_lang_code', 'name', 'Unomaly (Sweden)'),
(35774, 29932, 'en', 'name', 'French-Swedish Research Association'),
(35775, 29933, 'no_lang_code', 'name', 'VBN Components (Sweden)'),
(35776, 29934, 'sv', 'name', 'Tekniska Hƶgskolans StudentkƄr'),
(35777, 29935, 'sv', 'name', 'Teknopol'),
(35778, 29936, 'no_lang_code', 'name', 'Visita Service (Sweden)'),
(35779, 29937, 'no_lang_code', 'name', 'Telcred (Sweden)'),
(35780, 29938, 'no_lang_code', 'name', 'Svenska Aerogel (Sweden)'),
(35781, 29939, 'no_lang_code', 'name', 'Vitrolife (Sweden)'),
(35782, 29940, 'en', 'name', 'Austrian Association of Women Artists'),
(35783, 29940, 'de', 'name', 'Vereinigung bildender Künstlerinnen Ɩsterreichs'),
(35784, 29941, 'no_lang_code', 'name', 'Vivoline Medical (Sweden)'),
(35785, 29942, 'no_lang_code', 'name', 'Thermal Systems Technology (Sweden)'),
(35786, 29943, 'no_lang_code', 'name', 'Elforsk (Sweden)'),
(35787, 29944, 'no_lang_code', 'name', 'Terrigio (Sweden)'),
(35788, 29945, 'no_lang_code', 'name', 'Verendus System (Sweden)'),
(35789, 29946, 'no_lang_code', 'name', 'Verlag Holzhausen (Austria)'),
(35790, 29947, 'no_lang_code', 'name', 'Veryday (Sweden)'),
(35791, 29948, 'no_lang_code', 'name', 'Voxway (Sweden)'),
(35792, 29949, 'en', 'name', 'Public and Science'),
(35793, 29950, 'no_lang_code', 'name', 'VSL Systems (Sweden)'),
(35794, 29951, 'no_lang_code', 'name', 'Watersprint (Sweden)'),
(35795, 29952, 'no_lang_code', 'name', 'Vigor Wave Energy (Sweden)'),
(35796, 29953, 'no_lang_code', 'name', 'Vironova (Sweden)'),
(35797, 29954, 'en', 'name', 'The Natural Step'),
(35798, 29955, 'en', 'name', 'Vienna Wiesenthal Institute for Holocaust Studies'),
(35799, 29956, 'sv', 'name', 'Svenska Uppfinnarefƶreningen'),
(35800, 29957, 'en', 'name', 'Packaging Arena'),
(35801, 29958, 'no_lang_code', 'name', 'Viscando Traffic Systems (Sweden)'),
(35802, 29959, 'no_lang_code', 'name', 'Wattguard (Sweden)'),
(35803, 29960, 'en', 'name', 'Swedish Maritime Technology Forum'),
(35804, 29961, 'no_lang_code', 'name', 'WindVector'),
(35805, 29962, 'no_lang_code', 'name', 'Timars (Sweden)'),
(35806, 29963, 'no_lang_code', 'name', 'Time Critical Networks (Sweden)'),
(35807, 29964, 'no_lang_code', 'name', 'Winterkvist.com (Sweden)'),
(35808, 29965, 'no_lang_code', 'name', 'Wiotech (Sweden)'),
(35809, 29966, 'en', 'name', 'Wolfgang Pauli Institute'),
(35810, 29967, 'no_lang_code', 'name', '4C Strategies (Sweden)'),
(35811, 29968, 'no_lang_code', 'name', 'Wolfram MathCore (Sweden)'),
(35812, 29969, 'en', 'name', 'Wolf Science Center'),
(35813, 29970, 'no_lang_code', 'name', 'Tomologic (Sweden)'),
(35814, 29971, 'no_lang_code', 'name', 'Xbrane Biopharma (Sweden)'),
(35815, 29972, 'no_lang_code', 'name', 'XCounter (Sweden)'),
(35816, 29973, 'no_lang_code', 'name', 'QPS (Netherlands)'),
(35817, 29974, 'no_lang_code', 'name', 'Xylophane (Sweden)'),
(35818, 29975, 'en', 'name', 'Austrian Research Agency for Post-War Justice'),
(35819, 29976, 'no_lang_code', 'name', 'Aerocrine (Sweden)'),
(35820, 29977, 'sv', 'name', 'AffƤrsutveckling fƶr BesƶksnƤringen'),
(35821, 29978, 'no_lang_code', 'name', 'CoreCode International (Sweden)'),
(35822, 29979, 'en', 'name', 'Scandinavian Automotive Supplier Association'),
(35823, 29980, 'no_lang_code', 'name', 'IMPETUS Afea (Sweden)'),
(35824, 29981, 'en', 'name', 'Museum of Work'),
(35825, 29982, 'no_lang_code', 'name', 'Scandinavian Leadership (Sweden)'),
(35826, 29983, 'no_lang_code', 'name', 'Scienta Scientific (Sweden)'),
(35827, 29984, 'no_lang_code', 'name', 'Hive Streaming (Sweden)'),
(35828, 29985, 'sv', 'name', 'Stiftelsen SKAPA'),
(35829, 29986, 'en', 'name', 'United Nations University Institute on Comparative Regional Integration Studies'),
(35830, 29987, 'no_lang_code', 'name', 'Stena Recycling (Sweden)'),
(35831, 29988, 'en', 'name', 'Aintree University Hospitals NHS Foundation Trust'),
(35832, 29989, 'en', 'name', 'PHI University Psychiatric Clinic - Skopje'),
(35833, 29990, 'de', 'name', 'Institut Fur Friedensforschung Und Sicherheitspolitik'),
(35834, 29990, 'en', 'name', 'Institute for Peace Research and Security Policy'),
(35835, 29991, 'en', 'name', 'Royal Swedish Academy of Engineering Sciences'),
(35836, 29992, 'hu', 'name', 'Damjanich JÔnos Múzeum'),
(35837, 29993, 'en', 'name', 'Hungarian National Blood Transfusion Service'),
(35838, 29994, 'hu', 'name', 'RÔday Gyűjtemény'),
(35839, 29995, 'en', 'name', 'Hungarian Open air Museum'),
(35840, 29996, 'no_lang_code', 'name', 'ImmunoGenes (Hungary)'),
(35841, 29997, 'no_lang_code', 'name', 'Ethnographic Museum'),
(35842, 29998, 'en', 'name', 'Museum of Hungarian Agriculture'),
(35843, 29999, 'no_lang_code', 'name', 'Andritz (Canada)'),
(35844, 30000, 'no_lang_code', 'name', 'Akadémiai Kiadó (Hungary)'),
(35845, 30001, 'hu', 'name', 'Enciklopédia Kiadó'),
(35846, 30002, 'en', 'name', 'Museum of Applied Arts'),
(35847, 30003, 'en', 'name', 'Museum of Literature'),
(35848, 30004, 'no_lang_code', 'name', 'Nap Kiadó (Hungary)'),
(35849, 30004, 'en', 'name', 'Sun Publishing'),
(35850, 30005, 'no_lang_code', 'name', 'FIKRA'),
(35851, 30006, 'no_lang_code', 'name', 'NapvilƔg (Hungary)'),
(35852, 30007, 'no_lang_code', 'name', 'Cegteszt (Hungary)'),
(35853, 30008, 'hu', 'name', 'Forster Kƶzpont'),
(35854, 30009, 'en', 'name', 'Federation of Technical and Scientific Societies'),
(35855, 30010, 'hu', 'name', 'NógrÔd Megyei Múzeumi Szervezet'),
(35856, 30011, 'hu', 'name', 'Jósa AndrÔs Múzeum'),
(35857, 30012, 'en', 'name', 'Rippl-Rónai Museum'),
(35858, 30013, 'en', 'name', 'Foundation for Market Economy'),
(35859, 30014, 'en', 'name', 'Anti-Doping Laboratory'),
(35860, 30015, 'en', 'name', 'Independent Ecological Centre'),
(35861, 30016, 'hu', 'name', 'KÔrolyi SÔndor KórhÔz'),
(35862, 30017, 'no_lang_code', 'name', 'Archaeolingua Foundation'),
(35863, 30018, 'en', 'name', 'Supreme Council Of Health'),
(35864, 30019, 'no_lang_code', 'name', 'General Electric (Qatar)'),
(35865, 30020, 'hu', 'name', 'Kecskeméti Katona József Múzeum'),
(35866, 30021, 'hu', 'name', 'BaƔr-Madas ReformƔtus GimnƔzium'),
(35867, 30022, 'en', 'name', 'Georgetown University in Qatar'),
(35868, 30022, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁˆŲ±Ų¬ŲŖŲ§ŁˆŁ†'),
(35869, 30023, 'hu', 'name', 'Atlantisz AlapƭtvƔny'),
(35870, 30024, 'en', 'name', 'Gƶcseji Museum'),
(35871, 30025, 'no_lang_code', 'name', 'Gondolat Publishing (Hungary)'),
(35872, 30026, 'en', 'name', 'National Public Health and Medical Officer Service'),
(35873, 30026, 'hu', 'name', 'Állami Népegészségügyi és Tisztiorvosi SzolgÔlat'),
(35874, 30027, 'hu', 'name', 'Korall TÔrsadalomtörténeti Folyóirat'),
(35875, 30028, 'en', 'name', 'Research and Development for Silicates and Ceramics'),
(35876, 30029, 'hu', 'name', 'OrszƔgos LelkipƔsztori IntƩzet'),
(35877, 30030, 'no_lang_code', 'name', 'Osiris (Hungary)'),
(35878, 30031, 'no_lang_code', 'name', 'KortÔrs Könyvkiadói (Hungary)'),
(35879, 30032, 'en', 'name', 'Balassi Institute'),
(35880, 30033, 'hu', 'name', 'Deri Muzeum'),
(35881, 30034, 'no_lang_code', 'name', 'Financial Research (Hungary)'),
(35882, 30035, 'hu', 'name', 'Teleki LÔszló AlapítvÔny'),
(35883, 30036, 'no_lang_code', 'name', 'Balassi Kiadó (Hungary)'),
(35884, 30037, 'hu', 'name', 'Pest Megyei Múzeumok IgazgatósÔga'),
(35885, 30038, 'hu', 'name', 'Piarista Rend Magyar TartomƔnya'),
(35886, 30039, 'en', 'name', 'Historical Archives'),
(35887, 30040, 'en', 'name', 'Ottó Herman Museum');
INSERT INTO `ror_settings` VALUES
(35888, 30041, 'en', 'name', 'Economic Review Foundation'),
(35889, 30042, 'hu', 'name', 'Hadtörténeti Intézet és Múzeum'),
(35890, 30043, 'no_lang_code', 'name', 'Tinta (Hungary)'),
(35891, 30044, 'no_lang_code', 'name', 'Brainvest (Hungary)'),
(35892, 30045, 'hu', 'name', 'Tokaji BorvidĆ©k SzőlĆ©szeti Ć©s BorĆ”szati KutatóintĆ©zet'),
(35893, 30046, 'hu', 'name', 'HortobƔgy National Park Directorate'),
(35894, 30047, 'no_lang_code', 'name', 'Institute of Political History (Hungary)'),
(35895, 30048, 'no_lang_code', 'name', 'Libri Kiadó (Hungary)'),
(35896, 30049, 'no_lang_code', 'name', 'Typotex (Hungary)'),
(35897, 30050, 'en', 'name', 'Budapest Institute'),
(35898, 30051, 'en', 'name', 'Hungarian Institute for Educational Research and Development'),
(35899, 30052, 'en', 'name', 'Royal Irgalmasrendi Hospital'),
(35900, 30053, 'en', 'name', 'Budapest History Museum'),
(35901, 30054, 'hu', 'name', 'Magyar KƶzgazdasƔgi TƔrsasƔg'),
(35902, 30055, 'en', 'name', 'Carnegie Mellon University Qatar'),
(35903, 30056, 'en', 'name', 'Hungarian National Gallery'),
(35904, 30057, 'en', 'name', 'Qatar Cardiovascular Research Center'),
(35905, 30058, 'en', 'name', 'Hungarian Sociological Association'),
(35906, 30059, 'hu', 'name', 'Budapest City Archives'),
(35907, 30060, 'en', 'name', 'Institute for Foreign Affairs and Trade'),
(35908, 30061, 'en', 'name', 'University of Calgary in Qatar'),
(35909, 30062, 'en', 'name', 'Queen Medical'),
(35910, 30063, 'no_lang_code', 'name', 'Cereal Research (Hungary)'),
(35911, 30064, 'hu', 'name', 'Móra Ferenc Múzeum'),
(35912, 30065, 'no_lang_code', 'name', 'RÔció Kiadói (Hungary)'),
(35913, 30066, 'hu', 'name', 'Vas Megyei KormƔnyhivatalt'),
(35914, 30067, 'en', 'name', 'Coastal Oceans Research and Development in the Indian Ocean'),
(35915, 30068, 'en', 'name', 'Anhui Mental Health Center'),
(35916, 30068, 'zh', 'name', 'å®‰å¾½ēœē²¾ē„žå«ē”Ÿé˜²ę²»äø­åæƒ'),
(35917, 30069, 'hu', 'name', 'Vermes Miklós OrszÔgos Fizikus TehetségÔpoló és Kutató AlapítvÔny'),
(35918, 30070, 'hu', 'name', 'Civil RÔdió'),
(35919, 30071, 'no_lang_code', 'name', 'VCUQatar'),
(35920, 30072, 'no_lang_code', 'name', 'Silatech'),
(35921, 30073, 'en', 'name', 'Netherlands Consortium for Healthy Ageing'),
(35922, 30074, 'en', 'name', 'Bioprocessing Technology Institute'),
(35923, 30075, 'en', 'name', 'Society for the Dissemination of Scientific Knowledge'),
(35924, 30075, 'hu', 'name', 'TudomĆ”nyos Ismeretterjesztő TĆ”rsulat'),
(35925, 30076, 'en', 'name', 'Wosinsky Mór County Museum'),
(35926, 30077, 'hu', 'name', 'Magyar NyelvtudomƔnyi TƔrsasƔgot'),
(35927, 30077, 'en', 'name', 'Society of Hungarian Linguistics'),
(35928, 30078, 'en', 'name', 'Pan African Tsetse and Trypanosomiasis Eradication Campaign'),
(35929, 30079, 'no_lang_code', 'name', 'Zöldségtermesztési Kutató Intézet (Hungary)'),
(35930, 30080, 'en', 'name', 'Department of Environment, Land, Water and Planning'),
(35931, 30081, 'en', 'name', 'Xuzhou Central Hospital'),
(35932, 30082, 'en', 'name', 'Third Hospital of Hebei Medical University'),
(35933, 30083, 'en', 'name', 'Changsha Central Hospital'),
(35934, 30084, 'en', 'name', 'Anti Filariasis Campaign'),
(35935, 30085, 'en', 'name', 'Central Institute for Experimental Animals'),
(35936, 30085, 'ja', 'name', 'å®ŸéØ“å‹•ē‰©äø­å¤®ē ”ē©¶ę‰€'),
(35937, 30086, 'en', 'name', 'SKA Telescope, South Africa'),
(35938, 30087, 'en', 'name', 'Changzhou Third People''s Hospital'),
(35939, 30088, 'en', 'name', 'Bavarian Forest National Park'),
(35940, 30088, 'de', 'name', 'Nationalpark Bayerischer Wald'),
(35941, 30089, 'no_lang_code', 'name', 'ChemoCentryx (United States)'),
(35942, 30090, 'no_lang_code', 'name', 'Chenomx (Canada)'),
(35943, 30091, 'en', 'name', 'Blue Ventures'),
(35944, 30092, 'en', 'name', 'Bangladesh Rice Research Institute'),
(35945, 30092, 'bn', 'name', 'বাংলাদেশ ধান গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(35946, 30093, 'en', 'name', 'Accordia Global Health Foundation'),
(35947, 30094, 'en', 'name', 'Bombay Veterinary College'),
(35948, 30095, 'en', 'name', 'Chest Hospital, Ministry of Health and Welfare'),
(35949, 30096, 'en', 'name', 'Botanical Society of Britain and Ireland'),
(35950, 30097, 'en', 'name', 'Bali Psychiatric Center'),
(35951, 30098, 'no_lang_code', 'name', 'Bahawal Victoria Hospital'),
(35952, 30098, 'ur', 'name', 'ŲØŪŲ§ŁˆŁ„ وکٹوریہ Ų³Ł¾ŲŖŲ§Ł„ā€¬ā€Ž,'),
(35953, 30099, 'no_lang_code', 'name', 'BroadReach Healthcare (South Africa)'),
(35954, 30100, 'fr', 'name', 'Centre d’Infectiologie Christophe MĆ©rieux of Laos'),
(35955, 30101, 'en', 'name', 'Dongyang People''s Hospital'),
(35956, 30102, 'en', 'name', 'Calmette Hospital'),
(35957, 30102, 'fr', 'name', 'HƓpital calmette'),
(35958, 30103, 'en', 'name', 'Department of Health Services'),
(35959, 30104, 'en', 'name', 'Binzhou Medical College Hospital'),
(35960, 30105, 'en', 'name', 'Centre for Research in Astrophysics of QuƩbec'),
(35961, 30106, 'en', 'name', 'Kaifeng City Children''s Hospital'),
(35962, 30107, 'en', 'name', 'Affiliated Hospital of Guizhou Medical University'),
(35963, 30108, 'en', 'name', 'Affiliated Hospital of Jiangsu University'),
(35964, 30109, 'en', 'name', 'B. J. Medical College & Sassoon Hospital'),
(35965, 30110, 'it', 'name', 'Azienda Ospedaliera di Cosenza'),
(35966, 30111, 'en', 'name', 'Science and Engineering Research Council'),
(35967, 30112, 'en', 'name', 'Australian Wildlife Conservancy'),
(35968, 30113, 'en', 'name', 'Affiliated Hospital of Jining Medical University'),
(35969, 30114, 'en', 'name', 'Children''s Hospital of Suzhou University'),
(35970, 30115, 'en', 'name', 'Fourth People''s Hospital of Changzhou'),
(35971, 30116, 'en', 'name', 'China Animal Disease Control Center'),
(35972, 30116, 'zh', 'name', 'äø­å›½åŠØē‰©ē–«ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(35973, 30117, 'en', 'name', 'First Affiliated Hospital of Sichuan Medical University'),
(35974, 30118, 'en', 'name', 'China Medical University Beigang Hospital'),
(35975, 30119, 'fr', 'name', 'Centre de Recherche et de Veille sur les Maladies Emergentes dans l’OcĆ©an Indien'),
(35976, 30120, 'fr', 'name', 'Centre de Recherche MƩdicale et Sanitaire'),
(35977, 30121, 'en', 'name', 'China Tobacco'),
(35978, 30121, 'zh', 'name', 'å›½å®¶ēƒŸč‰äø“å–å±€'),
(35979, 30122, 'en', 'name', 'Tomsk Cancer Research Institute'),
(35980, 30122, 'ru', 'name', 'Томский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ онкологии'),
(35981, 30123, 'en', 'name', 'Association Vahatra'),
(35982, 30124, 'en', 'name', 'Singapore Institute for Clinical Sciences'),
(35983, 30125, 'it', 'name', 'Fondazione Edo ed Elvo Tempia'),
(35984, 30126, 'en', 'name', 'Campus Science Support Facilities'),
(35985, 30127, 'en', 'name', 'Singapore Stem Cell Consortium'),
(35986, 30128, 'no_lang_code', 'name', 'General Hospital Asklepieio Voulas'),
(35987, 30129, 'no_lang_code', 'name', 'Cangzhou Central Hospital'),
(35988, 30130, 'de', 'name', 'Asklepios Klinik Altona'),
(35989, 30131, 'en', 'name', 'A*STAR-NUS Clinical Imaging Research Centre'),
(35990, 30132, 'en', 'name', 'First People''s Hospital of Kunshan'),
(35991, 30132, 'zh', 'name', 'ę˜†å±±åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(35992, 30133, 'en', 'name', 'Data Storage Institute'),
(35993, 30134, 'en', 'name', 'Institute of Chemical and Engineering Sciences'),
(35994, 30135, 'en', 'name', 'Institute of Microelectronics'),
(35995, 30136, 'en', 'name', 'Singapore Institute of Manufacturing Technology'),
(35996, 30137, 'en', 'name', 'National Metrology Centre'),
(35997, 30138, 'en', 'name', 'A*STAR Graduate Academy'),
(35998, 30139, 'en', 'name', 'Bavarian State Collection of Zoology'),
(35999, 30139, 'de', 'name', 'Zoologische Staatssammlung München'),
(36000, 30140, 'en', 'name', 'AgriBio'),
(36001, 30141, 'de', 'name', 'Kantonsspital Graubünden'),
(36002, 30142, 'en', 'name', 'Beijing Aerospace General Hospital'),
(36003, 30143, 'en', 'name', 'Beijing Anding Hospital'),
(36004, 30143, 'zh', 'name', 'åŒ—äŗ¬å®‰å®šåŒ»é™¢'),
(36005, 30144, 'en', 'name', 'Zhongda Hospital Southeast University'),
(36006, 30145, 'no_lang_code', 'name', 'Cape Eleuthera Institute'),
(36007, 30146, 'no_lang_code', 'name', 'AFFiRiS (Austria)'),
(36008, 30147, 'en', 'name', 'Chongqing City Mental Health Center'),
(36009, 30148, 'de', 'name', 'ISAAC Gesellschaft für Unterstützte Kommunikation'),
(36010, 30149, 'en', 'name', 'Berlin Brandenburg Institute of Advanced Biodiversity Research'),
(36011, 30149, 'de', 'name', 'Berlin-Brandenburgisches Institut für Biodiversitätsforschung'),
(36012, 30150, 'en', 'name', 'Centre for Health Equity Studies'),
(36013, 30151, 'en', 'name', 'National Bernstein Network Computational Neuroscience'),
(36014, 30151, 'de', 'name', 'Nationale Bernstein Netzwerk Computational Neuroscience'),
(36015, 30152, 'en', 'name', 'Centre for Healthy Start Initiative'),
(36016, 30153, 'no_lang_code', 'name', 'FumoPrep (Hungary)'),
(36017, 30154, 'en', 'name', 'Caribbean Research and Management of Biodiversity Foundation'),
(36018, 30155, 'en', 'name', 'Centre for Immunity, Infection and Evolution'),
(36019, 30156, 'en', 'name', 'Bimini Biological Field Station Foundation'),
(36020, 30157, 'en', 'name', 'AIDS Foundation East-West'),
(36021, 30158, 'hu', 'name', 'OroshĆ”za VĆ”rosi ƖnkormĆ”nyzat KórhĆ”za'),
(36022, 30159, 'en', 'name', 'Albion Centre'),
(36023, 30160, 'no_lang_code', 'name', 'Aldevron (United States)'),
(36024, 30161, 'en', 'name', 'Ministry of Defence'),
(36025, 30162, 'no_lang_code', 'name', 'Cellular Dynamics International (United States)'),
(36026, 30163, 'no_lang_code', 'name', 'Charles River Laboratories (United Kingdom)'),
(36027, 30164, 'no_lang_code', 'name', 'Charles River Laboratories (Netherlands)'),
(36028, 30165, 'en', 'name', 'Centre for Integrated Research in the Rural Environment'),
(36029, 30166, 'no_lang_code', 'name', 'AltheaDx (United States)'),
(36030, 30167, 'no_lang_code', 'name', 'Bioglobe (Germany)'),
(36031, 30168, 'en', 'name', 'Center for Disease Dynamics, Economics & Policy'),
(36032, 30169, 'en', 'name', 'Centre for Research on Brain Language and Music'),
(36033, 30170, 'de', 'name', 'Klinik Barmelweid'),
(36034, 30171, 'en', 'name', 'Biomedical Informatics Research Center Antwerp'),
(36035, 30172, 'no_lang_code', 'name', 'bioMƩrieux (India)'),
(36036, 30173, 'en', 'name', 'CeNTech'),
(36037, 30174, 'en', 'name', 'Evangelical Lutheran Church'),
(36038, 30175, 'fr', 'name', 'Le Centre Hospitalier Princesse Grace'),
(36039, 30175, 'en', 'name', 'Princess Grace Hospital Centre'),
(36040, 30176, 'en', 'name', 'Cataract Foundation of the Philippines'),
(36041, 30177, 'no_lang_code', 'name', 'Dalian Municipal Central Hospital'),
(36042, 30177, 'zh', 'name', 'å¤§čæžåø‚äø­åæƒåŒ»é™¢'),
(36043, 30178, 'en', 'name', 'Taiwan Livestock Research Institute'),
(36044, 30178, 'zh', 'name', 'ē•œē”¢č©¦é©—ę‰€'),
(36045, 30179, 'ca', 'name', 'Centre Nacional d''Anàlisi Genòmica'),
(36046, 30179, 'es', 'name', 'Centro Nacional de AnÔlisis Genómico'),
(36047, 30180, 'en', 'name', 'Sabah Wildlife Department'),
(36048, 30181, 'en', 'name', 'Qatar Faculty of Islamic Studies'),
(36049, 30182, 'en', 'name', 'Clinton Health Access Initiative'),
(36050, 30183, 'en', 'name', 'Clinton Foundation'),
(36051, 30184, 'en', 'name', 'Clinton Foundation'),
(36052, 30185, 'en', 'name', '307th Hospital of Chinese People’s Liberation Army'),
(36053, 30185, 'zh', 'name', '307医院'),
(36054, 30186, 'en', 'name', 'Danish Ramazzini Center'),
(36055, 30187, 'en', 'name', 'Daqing Oilfield General Hospital'),
(36056, 30188, 'es', 'name', 'Centre Tecnològic de Nutrició i Salut'),
(36057, 30188, 'en', 'name', 'Technological Center of Nutrition and Health'),
(36058, 30189, 'en', 'name', 'Dasman Diabetes Institute'),
(36059, 30190, 'ro', 'name', 'Spitalul Clinic Judetean de Urgentã Craiova'),
(36060, 30191, 'en', 'name', 'Delfos Hospital'),
(36061, 30192, 'en', 'name', 'Endangered Wildlife Trust'),
(36062, 30193, 'no_lang_code', 'name', 'Enoshima Aquarium'),
(36063, 30194, 'pt', 'name', 'Centro de Investigação em Saúde de Manhiça'),
(36064, 30194, 'en', 'name', 'ManhiƧa Health Research Centre'),
(36065, 30195, 'en', 'name', 'National Environment Agency'),
(36066, 30196, 'en', 'name', 'Conservation and Ecosystem Health Alliance'),
(36067, 30197, 'pt', 'name', 'Departamento de DST, Aids e Hepatites Virais'),
(36068, 30197, 'es', 'name', 'Departamento de Infecciones de Transmisión Sexual, Sida y Hepatitis Virales'),
(36069, 30197, 'en', 'name', 'Department of STD, AIDS and Viral Hepatitis'),
(36070, 30198, 'en', 'name', 'Doctors Without Borders'),
(36071, 30198, 'fr', 'name', 'Médecins Sans Frontières'),
(36072, 30199, 'en', 'name', 'Hangzhou Wanxiang Polytechnic'),
(36073, 30200, 'da', 'name', 'Filadelfia'),
(36074, 30201, 'no_lang_code', 'name', 'DNA Chip Research (Japan)'),
(36075, 30201, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾DNAćƒćƒƒćƒ—ē ”ē©¶ę‰€'),
(36076, 30202, 'no_lang_code', 'name', 'Dominion Diagnostics (United States)'),
(36077, 30203, 'es', 'name', 'Centro Dermatológico Federico Lleras Acosta'),
(36078, 30204, 'no_lang_code', 'name', 'Dongfeng General Hospital'),
(36079, 30205, 'es', 'name', 'Centro Nacional de Enfermedades Tropicales'),
(36080, 30206, 'tr', 'name', 'Erciyes Üniversitesi Tıp Fakültesi Hastaneleri'),
(36081, 30207, 'it', 'name', 'Centro Oncologico Veterinario'),
(36082, 30207, 'en', 'name', 'Veterinary Oncological Center'),
(36083, 30208, 'en', 'name', 'Etosha Ecological Institute'),
(36084, 30209, 'en', 'name', 'Dyer Island Conservation Trust'),
(36085, 30210, 'en', 'name', 'DWI – Leibniz Institute for Interactive Materials'),
(36086, 30210, 'de', 'name', 'DWI – Leibniz-Institut für Interaktive Materialien'),
(36087, 30211, 'no_lang_code', 'name', 'Creativ-Ceutical (France)'),
(36088, 30212, 'en', 'name', 'Doctors Without Borders'),
(36089, 30212, 'fr', 'name', 'Médecins Sans Frontières'),
(36090, 30213, 'es', 'name', 'Centro Regional de Selección y Reproducción Animal'),
(36091, 30214, 'en', 'name', 'Edogawa Hospital'),
(36092, 30214, 'ja', 'name', 'ę±Ÿęˆøå·ē—…é™¢'),
(36093, 30215, 'no_lang_code', 'name', 'Excet (United States)'),
(36094, 30216, 'es', 'name', 'Colegio Nacional'),
(36095, 30216, 'en', 'name', 'National College'),
(36096, 30217, 'no_lang_code', 'name', 'EXcorLab (Germany)'),
(36097, 30218, 'en', 'name', 'Fudan University Shanghai Cancer Center'),
(36098, 30219, 'en', 'name', 'Ministry of Home Affairs'),
(36099, 30220, 'en', 'name', 'Dr. Hasan Sadikin General Hospital'),
(36100, 30221, 'en', 'name', 'Cologne Excellence Cluster on Cellular Stress Responses in Aging Associated Diseases'),
(36101, 30221, 'de', 'name', 'Exzellenzcluster Cellular Stress Responses in Aging-Associated Diseases'),
(36102, 30222, 'no_lang_code', 'name', 'Infinity Pharmaceuticals (United States)'),
(36103, 30223, 'en', 'name', 'Public Health Department'),
(36104, 30224, 'en', 'name', 'Fanjingshan National Nature Reserve'),
(36105, 30225, 'en', 'name', 'Innovative Vector Control Consortium'),
(36106, 30226, 'en', 'name', 'Federal Almazov North-West Medical Research Centre'),
(36107, 30226, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Деверо-ЗапаГный Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр имени Š’.А. Алмазова ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(36108, 30227, 'es', 'name', 'EcoCiencia'),
(36109, 30228, 'en', 'name', 'Henan Provincial Health Bureau'),
(36110, 30229, 'en', 'name', 'Shandong Provincial QianFoShan Hospital'),
(36111, 30229, 'zh', 'name', 'å±±äøœēœåƒä½›å±±åŒ»é™¢'),
(36112, 30230, 'no_lang_code', 'name', 'SNP Genetics (South Korea)'),
(36113, 30231, 'no_lang_code', 'name', 'Shanghai Fenghe Information Technology (China)'),
(36114, 30232, 'en', 'name', 'Hebei Mental Health Center'),
(36115, 30233, 'en', 'name', 'Fergusson College'),
(36116, 30234, 'no_lang_code', 'name', 'Generic Assays (Germany)'),
(36117, 30235, 'en', 'name', 'Heze Medical College'),
(36118, 30236, 'en', 'name', 'Gansu Province Computing Center'),
(36119, 30237, 'en', 'name', 'Finnish Red Cross'),
(36120, 30238, 'en', 'name', 'First Affiliated Hospital of Dalian Medical University'),
(36121, 30238, 'zh', 'name', 'å¤§čæžåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(36122, 30239, 'en', 'name', 'First Affiliated Hospital of Gannan Medical University'),
(36123, 30240, 'en', 'name', 'First Affiliated Hospital of Xi''an Jiaotong University'),
(36124, 30241, 'en', 'name', 'Bethune International Peace Hospital'),
(36125, 30241, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē™½ę±‚ę©å›½é™…å’Œå¹³åŒ»é™¢'),
(36126, 30242, 'no_lang_code', 'name', 'Decipher Biosciences (Canada)'),
(36127, 30243, 'no_lang_code', 'name', 'GenUs BioSystems (United States)'),
(36128, 30244, 'en', 'name', 'Geological Survey of Israel'),
(36129, 30245, 'en', 'name', 'Georgian National Museum'),
(36130, 30245, 'ka', 'name', 'įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒ›įƒ£įƒ–įƒ”'),
(36131, 30246, 'en', 'name', 'First Bethune Hospital of Jilin University'),
(36132, 30246, 'zh', 'name', 'å‰ęž—å¤§å­¦ē¬¬äø€åŒ»é™¢ē§‘ē ”ę•™å­¦ę„¼'),
(36133, 30247, 'es', 'name', 'Hospital de Poniente'),
(36134, 30248, 'en', 'name', 'Fuzhou Neuro Psychiatric Hospital'),
(36135, 30249, 'en', 'name', 'First Affiliated Hospital of Hebei Medical University'),
(36136, 30250, 'fr', 'name', 'Institut de Recherche en RƩadaptation-RƩinsertion'),
(36137, 30251, 'en', 'name', 'First Hospital of Shanxi Medical University'),
(36138, 30252, 'es', 'name', 'Hospital Infantil Manuel de JesĆŗs Rivera'),
(36139, 30253, 'pt', 'name', 'Fundação Hospitalar do Estado de Minas Gerais'),
(36140, 30254, 'de', 'name', 'Deutsche Leberstiftung'),
(36141, 30254, 'en', 'name', 'German Liver Foundation'),
(36142, 30255, 'no_lang_code', 'name', 'Gilasio Coding (Israel)'),
(36143, 30256, 'en', 'name', 'Hospital of Southern Norway'),
(36144, 30257, 'en', 'name', 'Diabetes Foundation'),
(36145, 30258, 'en', 'name', 'Dignitas International'),
(36146, 30259, 'en', 'name', 'Forage Genetics International'),
(36147, 30260, 'es', 'name', 'Consorcio Hospitalario Provincial de Castellón'),
(36148, 30261, 'ms', 'name', 'Hospital Sungai Buloh'),
(36149, 30262, 'en', 'name', 'Sabah Forestry Department'),
(36150, 30263, 'en', 'name', 'Directorate General of Health Services'),
(36151, 30264, 'fr', 'name', 'Institut National de SantƩ Publique'),
(36152, 30265, 'no_lang_code', 'name', 'Ekjut'),
(36153, 30266, 'no_lang_code', 'name', 'Fortis Flt. Lt. Rajan Dhall Hospital'),
(36154, 30267, 'en', 'name', 'Global Fund to Fight AIDS, Tuberculosis and Malaria'),
(36155, 30268, 'en', 'name', 'Foundation for Advancement of International Science'),
(36156, 30268, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(36157, 30269, 'en', 'name', 'Global Initiative on Psychiatry'),
(36158, 30270, 'en', 'name', 'Global Solutions for Infectious Diseases'),
(36159, 30271, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(36160, 30271, 'en', 'name', 'Institute of Research for the Development'),
(36161, 30272, 'pt', 'name', 'Agência Paulista de Tecnologia dos Agronegócios'),
(36162, 30272, 'en', 'name', 'SĆ£o Paulo’s Agency for Agribusiness Technology'),
(36163, 30273, 'no_lang_code', 'name', 'Metabiota (Cameroon)'),
(36164, 30274, 'en', 'name', 'Institute for Molecular Medicine Finland'),
(36165, 30275, 'no_lang_code', 'name', 'Hunan New Wellful (China)'),
(36166, 30276, 'en', 'name', 'Government Hospital of Thoracic Medicine'),
(36167, 30277, 'en', 'name', 'Third People''s Hospital of Huzhou'),
(36168, 30278, 'no_lang_code', 'name', 'iAnalysis (Japan)'),
(36169, 30279, 'pt', 'name', 'Instituto de Biologia do ExƩrcito'),
(36170, 30280, 'en', 'name', 'Jiangjin Central Hospital'),
(36171, 30281, 'no_lang_code', 'name', 'Idera Pharmaceuticals (United States)'),
(36172, 30282, 'fr', 'name', 'Institut FranƧais du Cheval et de l''Ɖquitation'),
(36173, 30283, 'en', 'name', 'Second Affiliated Hospital of Nanjing Medical University'),
(36174, 30284, 'en', 'name', 'Jiangsu Provincial Authorities Hospital'),
(36175, 30284, 'zh', 'name', 'ę±Ÿč‹ēœēœēŗ§ęœŗå…³åŒ»é™¢'),
(36176, 30285, 'en', 'name', 'Hainan Tranquility Hospital'),
(36177, 30286, 'en', 'name', 'Sixth Hospital of Changchun City'),
(36178, 30287, 'es', 'name', 'Museo de San Isidro'),
(36179, 30288, 'no_lang_code', 'name', 'Jiangsu Nhwa Pharmaceutical (China)'),
(36180, 30289, 'no_lang_code', 'name', 'Lipidomix (Germany)'),
(36181, 30290, 'en', 'name', 'Jiangsu Provincial Hospital of Traditional Chinese Medicine'),
(36182, 30290, 'zh', 'name', 'ę±Ÿč‹ēœäø­åŒ»čÆē ”ē©¶é™¢'),
(36183, 30291, 'es', 'name', 'Instituto de Investigación Biomédica de MÔlaga'),
(36184, 30292, 'fr', 'name', 'Alphabio'),
(36185, 30293, 'en', 'name', 'Jiangxi Academy of Forestry'),
(36186, 30293, 'zh', 'name', 'ę±Ÿč„æēœęž—äøšē§‘å­¦é™¢'),
(36187, 30294, 'en', 'name', 'Loewe Center for Synthetic Microbiology'),
(36188, 30294, 'de', 'name', 'Loewe-Zentrum für Synthetische Mikrobiologie'),
(36189, 30295, 'en', 'name', 'Jiangxi Provincial Cancer Hospital'),
(36190, 30295, 'zh', 'name', 'ę±Ÿč„æēœč‚æē˜¤åŒ»é™¢'),
(36191, 30296, 'no_lang_code', 'name', 'Lola ya Bonobo'),
(36192, 30297, 'no_lang_code', 'name', 'Megmilk Snow Brand (Japan)'),
(36193, 30297, 'ja', 'name', 'é›Ŗå°ä¹³ę„­ę Ŗå¼ä¼šē¤¾'),
(36194, 30298, 'no_lang_code', 'name', 'Longgang Central Hospital'),
(36195, 30299, 'en', 'name', 'Min-Hwei College of Health Care Management'),
(36196, 30300, 'en', 'name', 'Minerva Foundation'),
(36197, 30301, 'en', 'name', 'Brain Hospital of Jilin'),
(36198, 30302, 'pt', 'name', 'Instituto de Pesquisas Jardim Botânico do Rio de Janeiro'),
(36199, 30303, 'en', 'name', 'Minhang District Central Hospital'),
(36200, 30304, 'es', 'name', 'Instituto del Mar del Peru'),
(36201, 30305, 'en', 'name', 'Ministry of Public Health'),
(36202, 30305, 'fr', 'name', 'Ministère de la Santé Publique'),
(36203, 30306, 'en', 'name', 'Jinan Military General Hospital'),
(36204, 30306, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęµŽå—å†›åŒŗę€»åŒ»é™¢'),
(36205, 30307, 'en', 'name', 'Lundbeck Foundation'),
(36206, 30308, 'en', 'name', 'Jinan Stomatological Hospital'),
(36207, 30308, 'zh', 'name', 'ęµŽå—åø‚å£č…”åŒ»é™¢'),
(36208, 30309, 'es', 'name', 'Ministerio de Salud'),
(36209, 30310, 'no_lang_code', 'name', 'Mabtech (Sweden)'),
(36210, 30311, 'en', 'name', 'Mission to Save the Helpless'),
(36211, 30312, 'no_lang_code', 'name', 'Jinhua Central Hospital'),
(36212, 30312, 'zh', 'name', 'é‡‘åŽåø‚äø­åæƒåŒ»é™¢'),
(36213, 30313, 'es', 'name', 'Instituto Nacional de Biodiversidad'),
(36214, 30313, 'en', 'name', 'National Biodiversity Institute'),
(36215, 30314, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia em Biologia Estrutural e Bioimagens'),
(36216, 30314, 'en', 'name', 'National Institute of Science and Technology for Structural Biology and Bioimaging'),
(36217, 30315, 'es', 'name', 'Instituto Nacional de Salud del NiƱo'),
(36218, 30316, 'en', 'name', 'Model Animal Research Center'),
(36219, 30317, 'en', 'name', 'Joint Space Science Institute'),
(36220, 30318, 'es', 'name', 'Magdalena Villegas de MartĆ­nez el Hospital'),
(36221, 30319, 'en', 'name', 'Malaysia Genome Institute'),
(36222, 30320, 'no_lang_code', 'name', 'Integrated Statistics (United States)'),
(36223, 30321, 'en', 'name', 'Hainan Medical College Hospital'),
(36224, 30322, 'en', 'name', 'Doctors Without Borders'),
(36225, 30322, 'fr', 'name', 'MĆ©decins Sans FrontiĆØresā€Ž'),
(36226, 30323, 'pt', 'name', 'Laboratório Nacional de Ciência e Tecnologia do Bioetanol'),
(36227, 30324, 'no_lang_code', 'name', 'Green Cross (South Korea)'),
(36228, 30325, 'en', 'name', 'Kalahari Meerkat Project'),
(36229, 30326, 'en', 'name', 'Marwell Zoo'),
(36230, 30327, 'no_lang_code', 'name', 'Molecular Discovery (United Kingdom)'),
(36231, 30328, 'en', 'name', 'Harvard NeuroDiscovery Center'),
(36232, 30329, 'en', 'name', 'Fourth Hospital of Hebei Medical University'),
(36233, 30329, 'zh', 'name', 'ę²³åŒ—åŒ»ē§‘å¤§å­¦ē¬¬å››åŒ»é™¢'),
(36234, 30330, 'no_lang_code', 'name', 'Moon Express (United States)'),
(36235, 30331, 'en', 'name', 'French Institute of Pondicherry'),
(36236, 30331, 'fr', 'name', 'Institut FranƧais de PondichƩry'),
(36237, 30331, 'ta', 'name', 'ą®Ŗą®¾ą®£ąÆą®Ÿą®æą®šąÆą®šąÆ‡ą®°ą®æ ą®Ŗą®æą®°ąÆ†ą®žąÆą®šąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(36238, 30332, 'es', 'name', 'KarumbƩ'),
(36239, 30333, 'en', 'name', 'Department of Biodiversity, Conservation and Attractions'),
(36240, 30334, 'en', 'name', 'International Trachoma Initiative'),
(36241, 30335, 'en', 'name', 'International Trachoma Initiative'),
(36242, 30336, 'nl', 'name', 'Artsen Zonder Grenzen'),
(36243, 30336, 'en', 'name', 'Doctors Without Borders'),
(36244, 30336, 'fr', 'name', 'Médecins Sans Frontières'),
(36245, 30337, 'no_lang_code', 'name', 'Digital Science (United Kingdom)'),
(36246, 30338, 'fr', 'name', 'Labex Corail'),
(36247, 30339, 'no_lang_code', 'name', 'Invicro (United States)'),
(36248, 30340, 'no_lang_code', 'name', 'Siemens (China)'),
(36249, 30341, 'it', 'name', 'Fondazione Toscana Gabriele Monasterio'),
(36250, 30342, 'en', 'name', 'International Institute for Advanced Scientific Studies "Eduardo R. Caianiello"'),
(36251, 30342, 'it', 'name', 'Istituto Internazionale per gli Alti Studi Scientifici'),
(36252, 30343, 'no_lang_code', 'name', 'Digital Science (United States)'),
(36253, 30344, 'en', 'name', 'Medicines for Malaria Venture'),
(36254, 30345, 'en', 'name', 'Japan BCG Laboratory'),
(36255, 30345, 'ja', 'name', 'ę—„ęœ¬ćƒ“ćƒ¼ć‚·ćƒ¼ć‚øćƒ¼č£½é€ ę Ŗå¼ä¼šē¤¾'),
(36256, 30346, 'en', 'name', 'Multiple Sclerosis Society of Canada'),
(36257, 30346, 'fr', 'name', 'SociƩtƩ canadienne de la sclƩrose en plaques'),
(36258, 30347, 'no_lang_code', 'name', 'KMT Hepatech (Canada)'),
(36259, 30348, 'no_lang_code', 'name', 'Metabiota (United States)'),
(36260, 30349, 'no_lang_code', 'name', 'Crabion (Italy)'),
(36261, 30350, 'en', 'name', 'Isaac Newton Institute'),
(36262, 30351, 'no_lang_code', 'name', 'Labormedizinische Zentrum Dr Risch (Switzerland)'),
(36263, 30352, 'en', 'name', 'Shantou University Mental Health Center'),
(36264, 30353, 'en', 'name', 'Landseed Hospital'),
(36265, 30354, 'no_lang_code', 'name', 'Konica Minolta (Japan)'),
(36266, 30354, 'ja', 'name', 'ć‚³ćƒ‹ć‚«ćƒŸćƒŽćƒ«ć‚æćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(36267, 30355, 'en', 'name', 'National Consortium for Zoonosis Research'),
(36268, 30356, 'en', 'name', 'National Department of Health'),
(36269, 30357, 'en', 'name', 'Mercer County Mosquito Control'),
(36270, 30358, 'en', 'name', 'Jiangxi Mental Health Center'),
(36271, 30359, 'no_lang_code', 'name', 'National Influenza Center'),
(36272, 30360, 'en', 'name', 'Bethune Second Hospital'),
(36273, 30361, 'en', 'name', 'Korea Institute of Drug Safety and Risk Management'),
(36274, 30362, 'fr', 'name', 'Institut national de recherche biomƩdicale'),
(36275, 30362, 'en', 'name', 'National Institute of Biomedical Research'),
(36276, 30363, 'en', 'name', 'Fourth People''s Hospital of Liaocheng'),
(36277, 30364, 'en', 'name', 'Makerere University Walter Reed Project'),
(36278, 30365, 'no_lang_code', 'name', 'Ipso Facto (France)'),
(36279, 30366, 'en', 'name', 'Nanchong Central Hospital'),
(36280, 30366, 'zh', 'name', 'å—å……åø‚äø­åæƒåŒ»é™¢'),
(36281, 30367, 'en', 'name', 'Queensland Museum'),
(36282, 30368, 'en', 'name', 'Nanjing Brain Hospital'),
(36283, 30369, 'en', 'name', 'Organization for Tropical Studies'),
(36284, 30370, 'en', 'name', 'Nanjing Chest Hospital'),
(36285, 30371, 'en', 'name', 'Qujing Normal University'),
(36286, 30371, 'zh', 'name', 'ę›²é–åøˆčŒƒå­¦é™¢'),
(36287, 30372, 'en', 'name', 'Ruxmaniben Deepchand Gardi Medical College'),
(36288, 30373, 'en', 'name', 'Nanjing Children''s Hospital'),
(36289, 30373, 'zh', 'name', 'å—äŗ¬åø‚å„æē«„åŒ»é™¢'),
(36290, 30374, 'no_lang_code', 'name', 'Origin Energy (Australia)'),
(36291, 30375, 'en', 'name', 'Limassol General Hospital'),
(36292, 30376, 'en', 'name', 'National Institute of Malariology, Parasitology and Entomology'),
(36293, 30377, 'en', 'name', 'Nanjing Institute of Vegetable Science'),
(36294, 30378, 'en', 'name', 'National Museum'),
(36295, 30379, 'en', 'name', 'First Affiliated Hospital Zhejiang University'),
(36296, 30380, 'en', 'name', 'National Museum of Natural Science'),
(36297, 30380, 'zh', 'name', 'åœ‹ē«‹č‡Ŗē„¶ē§‘å­øåšē‰©é¤Ø'),
(36298, 30381, 'no_lang_code', 'name', 'RayBiotech (China)'),
(36299, 30382, 'en', 'name', 'Nasarawa State Ministry of Health'),
(36300, 30383, 'nl', 'name', 'Refaja Ziekenhuis'),
(36301, 30384, 'en', 'name', 'PanAmerican Bioinformatics Institute'),
(36302, 30385, 'en', 'name', 'Second Affiliated Hospital of Xi''an Jiaotong University'),
(36303, 30386, 'en', 'name', 'Nanjing Second Hospital'),
(36304, 30387, 'fr', 'name', 'ComitƩ National de Lutte contre le SIDA'),
(36305, 30388, 'en', 'name', 'Regional Hospital West Jutland'),
(36306, 30389, 'de', 'name', 'Helios Park-Klinikum Leipzig'),
(36307, 30390, 'en', 'name', 'National Institute for Research in Tribal Health'),
(36308, 30391, 'it', 'name', 'Istituto di Genomica Applicata'),
(36309, 30392, 'no_lang_code', 'name', 'NeoChemir (Japan)'),
(36310, 30392, 'ja', 'name', 'ćƒć‚Ŗć‚±ćƒŸć‚¢'),
(36311, 30393, 'en', 'name', 'Nepal Health Research Council'),
(36312, 30394, 'en', 'name', 'Peking University Shougang Hospital'),
(36313, 30394, 'zh', 'name', 'åŒ—äŗ¬å¤§å­¦é¦–é‹¼åŒ»é™¢'),
(36314, 30395, 'en', 'name', 'Pathologist Bio-Medical Laboratories'),
(36315, 30396, 'en', 'name', 'New Delhi Tuberculosis Center'),
(36316, 30397, 'no_lang_code', 'name', 'Patrys (Germany)'),
(36317, 30398, 'en', 'name', 'Changzhi Medical College Peace Hospital'),
(36318, 30399, 'en', 'name', 'Second Hospital of Shandong University'),
(36319, 30400, 'en', 'name', 'National Center for HIV/AIDS, Dermatology and STD'),
(36320, 30401, 'en', 'name', 'New York Consortium in Evolutionary Primatology'),
(36321, 30402, 'en', 'name', 'Cambodia National Malaria Center'),
(36322, 30403, 'en', 'name', 'Second Xiangya Hospital of Central South University'),
(36323, 30404, 'en', 'name', 'Research Foundation ITSUU Laboratory'),
(36324, 30404, 'ja', 'name', 'ä¹™åÆē ”ē©¶ę‰€'),
(36325, 30405, 'en', 'name', 'Seiwa Hospital'),
(36326, 30405, 'ja', 'name', 'é’å’Œē—…é™¢'),
(36327, 30406, 'en', 'name', 'Healis Sekhsaria Institute For Public Health'),
(36328, 30407, 'en', 'name', 'Ningbo City College of Vocational Technology'),
(36329, 30408, 'no_lang_code', 'name', 'Pharmatest (Finland)'),
(36330, 30409, 'en', 'name', 'Ningbo Kangning Hospital'),
(36331, 30410, 'en', 'name', 'PHG Foundation'),
(36332, 30411, 'en', 'name', 'Retina Vitreous Associates Medical Group'),
(36333, 30412, 'en', 'name', 'Beihai People''s Hospital'),
(36334, 30413, 'no_lang_code', 'name', 'Pingtung Hospital'),
(36335, 30414, 'en', 'name', '81th Hospital of PLA'),
(36336, 30414, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬å…«äø€åŒ»é™¢'),
(36337, 30415, 'en', 'name', 'Sony Computer Science Laboratories'),
(36338, 30415, 'ja', 'name', 'ć‚½ćƒ‹ćƒ¼ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶ę‰€'),
(36339, 30416, 'no_lang_code', 'name', 'Shanxi Zhendong Pharmaceutical (China)'),
(36340, 30416, 'zh', 'name', 'å±±č„æęŒÆäøœåˆ¶čÆč‚”ä»½ęœ‰é™å…¬åø'),
(36341, 30417, 'no_lang_code', 'name', 'Pojen General Hospital'),
(36342, 30418, 'en', 'name', 'Shanxi Eye Hospital'),
(36343, 30419, 'it', 'name', 'Policlinico Casilino'),
(36344, 30420, 'en', 'name', 'Doctors Without Borders'),
(36345, 30420, 'fr', 'name', 'Médecins Sans Frontières'),
(36346, 30421, 'en', 'name', 'South African National Biodiversity Institute'),
(36347, 30422, 'en', 'name', 'Royal Tyrrell Museum'),
(36348, 30423, 'no_lang_code', 'name', 'Sardegna Ricerche (Italy)'),
(36349, 30424, 'en', 'name', 'Praxis Institute for Participatory Practices'),
(36350, 30425, 'en', 'name', 'Shanghai Zhabei District Shibei Hospital'),
(36351, 30426, 'en', 'name', 'Songjiang District Central Hospital'),
(36352, 30427, 'en', 'name', 'Northern Jiangsu People''s Hospital'),
(36353, 30427, 'zh', 'name', 'ę±Ÿč‹ēœč‹åŒ—äŗŗę°‘åŒ»é™¢'),
(36354, 30428, 'en', 'name', 'Dhaka Community Hospital Trust'),
(36355, 30429, 'en', 'name', 'Seventh People''s Hospital of Shanghai'),
(36356, 30430, 'en', 'name', 'Shanghai Traditional Chinese Medicine Hospital'),
(36357, 30431, 'fr', 'name', 'Nouvelles Cliniques Nantaises'),
(36358, 30432, 'no_lang_code', 'name', 'Shanghai Hi-Tech joint biotechnology R & D (China)'),
(36359, 30433, 'en', 'name', 'Shanghai Eye Disease Prevention & Treatment Center'),
(36360, 30434, 'en', 'name', 'Shanghai East Hospital'),
(36361, 30435, 'en', 'name', 'Shandong Mental Health Center'),
(36362, 30436, 'no_lang_code', 'name', 'NovaCell Technology (South Korea)'),
(36363, 30436, 'ko', 'name', 'ė…øė°”ģ…€ķ…Œķ¬ė†€ė”œģ§€'),
(36364, 30437, 'en', 'name', 'Shandong Academy of Agricultural Sciences'),
(36365, 30437, 'zh', 'name', 'å±±äøœēœčŠ±ē”Ÿē ”ē©¶ę‰€'),
(36366, 30438, 'en', 'name', 'Andover College'),
(36367, 30439, 'en', 'name', 'Special Astrophysical Observatory'),
(36368, 30439, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š”ŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š°Ń Š°ŃŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ Российской акаГемии наук'),
(36369, 30440, 'en', 'name', 'Programs for Assessment of Technology in Health Research Institute'),
(36370, 30441, 'no_lang_code', 'name', 'Novo Nordisk (United States)'),
(36371, 30442, 'en', 'name', 'Shanghai Chenshan Plant Science Research Center'),
(36372, 30442, 'zh', 'name', 'äøŠęµ·č¾°å±±ę¤ē‰©ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(36373, 30443, 'en', 'name', 'Henan Psychiatric Hospital'),
(36374, 30444, 'it', 'name', 'Ospedale Sant Antonio'),
(36375, 30445, 'en', 'name', 'National Office of Mines'),
(36376, 30446, 'hu', 'name', 'EgyesĆ­tett Szent IstvĆ”n Ć©s Szent LĆ”szló KórhĆ”z-RendelőintĆ©zet'),
(36377, 30446, 'en', 'name', 'Unified Szent IstvÔn and Szent LÔszló Hospital'),
(36378, 30447, 'no_lang_code', 'name', 'St. Martin de Porres Hospital'),
(36379, 30448, 'en', 'name', 'Onderstepoort Veterinary Institute'),
(36380, 30449, 'en', 'name', 'Sexual Health Clinic'),
(36381, 30450, 'fr', 'name', 'ONG Karkara'),
(36382, 30451, 'en', 'name', 'Public Health Laboratory Ivo de Carneri'),
(36383, 30452, 'en', 'name', 'Shark Spotters'),
(36384, 30453, 'nl', 'name', 'Artsen zonder Grenzen'),
(36385, 30453, 'en', 'name', 'Doctors Without Borders'),
(36386, 30453, 'fr', 'name', 'Médecins Sans Frontières'),
(36387, 30454, 'no_lang_code', 'name', 'OpGen (United States)'),
(36388, 30455, 'en', 'name', 'China Aerospace Science and Technology Corporation'),
(36389, 30455, 'zh', 'name', 'äø­å›½čˆŖå¤©ē§‘ęŠ€é›†å›¢'),
(36390, 30456, 'en', 'name', 'Shenyang Environmental Protection Bureau'),
(36391, 30457, 'en', 'name', 'Orangutan Information Centre'),
(36392, 30458, 'en', 'name', 'Samueli Institute'),
(36393, 30459, 'en', 'name', 'Shenzhen Children''s Hospital'),
(36394, 30459, 'zh', 'name', 'ę·±åœ³åø‚å„æē«„åŒ»é™¢'),
(36395, 30460, 'en', 'name', 'Qingdao Mental Health Center'),
(36396, 30461, 'en', 'name', 'Temeke Municipal Council'),
(36397, 30462, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Israel)'),
(36398, 30462, 'he', 'name', 'טבע תעשיות ×¤×Ø×ž×¦×‘×˜×™×•×Ŗ בע"מ'),
(36399, 30462, 'ar', 'name', 'صناعات تيفا Ų§Ł„ŲµŁŠŲÆŁ„ŁŠŲ©'),
(36400, 30463, 'no_lang_code', 'name', 'Sappasithiprasong Hospital'),
(36401, 30464, 'en', 'name', 'Fourth Affiliated Hospital of Anhui Medical University'),
(36402, 30464, 'zh', 'name', 'å®‰å¾½åŒ»ē§‘å¤§å­¦ē¬¬å››é™„å±žåŒ»é™¢'),
(36403, 30465, 'en', 'name', 'Gibraltar Museum'),
(36404, 30466, 'no_lang_code', 'name', 'Wuxi Taihu Hospital'),
(36405, 30467, 'en', 'name', 'Stomatology Hospital'),
(36406, 30468, 'en', 'name', 'Mianyang Third People''s Hospital'),
(36407, 30469, 'en', 'name', '82th Hospital of Pla'),
(36408, 30470, 'ms', 'name', 'Hospital Sarikei'),
(36409, 30471, 'en', 'name', 'Affiliated Hospital of Guilin Medical College'),
(36410, 30472, 'no_lang_code', 'name', 'Sigma Tau (Italy)'),
(36411, 30473, 'en', 'name', 'The Jane Goodall Institute'),
(36412, 30474, 'en', 'name', 'Sihanouk Hospital Center of HOPE'),
(36413, 30475, 'no_lang_code', 'name', 'Simpson Biotech Company (Taiwan)'),
(36414, 30476, 'en', 'name', 'Affiliated Hospital of Taishan Medical University'),
(36415, 30477, 'en', 'name', 'Singapore Clinical Research Institute'),
(36416, 30478, 'en', 'name', 'Liaoning Provincial People''s Hospital'),
(36417, 30478, 'zh', 'name', 'č¾½å®ēœäŗŗę°‘åŒ»é™¢'),
(36418, 30479, 'en', 'name', 'Jiangyin People''s Hospital'),
(36419, 30480, 'nl', 'name', 'Sint Maartenskliniek'),
(36420, 30481, 'ms', 'name', 'Hospital Sultanah Bahiyah'),
(36421, 30482, 'en', 'name', 'SKA Observatory'),
(36422, 30483, 'en', 'name', 'Jiangxi Pingxiang People''s Hospital'),
(36423, 30484, 'en', 'name', 'Suzhou Guangji Hospital'),
(36424, 30485, 'en', 'name', 'Yan''an Hospital Affiliated To Kunming Medical University'),
(36425, 30485, 'zh', 'name', 'ę˜†ę˜Žåø‚å»¶å®‰åŒ»é™¢'),
(36426, 30486, 'en', 'name', 'Second Affiliated Hospital of Dalian Medical University'),
(36427, 30487, 'en', 'name', 'Arcus Foundation'),
(36428, 30488, 'no_lang_code', 'name', 'Shinsera Technologies (Japan)'),
(36429, 30489, 'en', 'name', 'Thrombosis Research Institute'),
(36430, 30490, 'en', 'name', 'Second Affiliated Hospital of Shantou University Medical College'),
(36431, 30491, 'en', 'name', 'Taichung Hospital'),
(36432, 30492, 'en', 'name', 'Australian Wine Research Institute'),
(36433, 30493, 'de', 'name', 'Tierärztliche Praxis für Neurologie'),
(36434, 30494, 'no_lang_code', 'name', 'SciGenom Labs (India)'),
(36435, 30495, 'en', 'name', 'Second Affiliated Hospital of Zhengzhou University'),
(36436, 30496, 'en', 'name', 'Supreme Commission for Tourism and Antiquities'),
(36437, 30497, 'en', 'name', 'Sea to Shore Alliance'),
(36438, 30498, 'en', 'name', 'Second Hospital of Shanxi Medical University'),
(36439, 30498, 'zh', 'name', 'å±±č„æåŒ»ē§‘å¤§å­¦ē¬¬äŗŒåŒ»é™¢'),
(36440, 30499, 'no_lang_code', 'name', 'Taihe Hospital'),
(36441, 30500, 'no_lang_code', 'name', 'Tokatsu Hospital'),
(36442, 30501, 'no_lang_code', 'name', 'Toyota Kosei Hospital'),
(36443, 30501, 'ja', 'name', 'č±Šē”°åŽšē”Ÿē—…é™¢'),
(36444, 30502, 'en', 'name', 'Changshu No.1 People''s Hospital'),
(36445, 30503, 'en', 'name', 'Universities Federation for Animal Welfare'),
(36446, 30504, 'en', 'name', 'Shandong Province Animal Husbandry and Veterinary Bureau'),
(36447, 30505, 'en', 'name', 'Fifth Affiliated Hospital of Sun Yat-sen University'),
(36448, 30506, 'en', 'name', 'Turku Centre for Biotechnology'),
(36449, 30507, 'en', 'name', 'Japan Food Research Laboratories'),
(36450, 30507, 'ja', 'name', 'ę—„ęœ¬é£Ÿå“ē ”ē©¶ę‰€'),
(36451, 30508, 'en', 'name', 'First Affiliated Hospital of Jiamusi University'),
(36452, 30509, 'en', 'name', 'First Affiliated Hospital of Liaoning Medical University'),
(36453, 30510, 'en', 'name', 'High Energy Materials Research Laboratory'),
(36454, 30510, 'hi', 'name', 'ą¤‰ą¤šą„ą¤š ą¤‰ą¤°ą„ą¤œą¤¾ ą¤Ŗą¤¦ą¤¾ą¤°ą„ą¤„ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(36455, 30511, 'en', 'name', 'Tanzania Wildlife Research Institute'),
(36456, 30512, 'en', 'name', 'Tzu Hui Institute of Technology'),
(36457, 30513, 'en', 'name', 'University of Chicago Research Bangladesh'),
(36458, 30514, 'en', 'name', 'The Second Nanning People''s Hospital'),
(36459, 30514, 'zh', 'name', 'å—å®åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(36460, 30515, 'en', 'name', 'First Hospital of Qinhuangdao'),
(36461, 30516, 'en', 'name', 'First People''s Hospital of Foshan'),
(36462, 30517, 'en', 'name', 'Center for Excellence in Basic Sciences'),
(36463, 30517, 'hi', 'name', 'ą¤®ą„Œą¤²ą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤•ą¤°ą„ą¤· ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(36464, 30518, 'en', 'name', 'Wuxi Third People''s Hospital'),
(36465, 30519, 'en', 'name', 'First People’s Hospital of Zunyi'),
(36466, 30520, 'en', 'name', 'Ruian People''s Hospital'),
(36467, 30520, 'zh', 'name', 'ē‘žå®‰åø‚äŗŗę°‘åŒ»é™¢'),
(36468, 30521, 'en', 'name', 'Third Hospital of Nanchang'),
(36469, 30522, 'fr', 'name', 'UniversitƩ Nangui Abrogoua'),
(36470, 30523, 'es', 'name', 'Programa Mundial de Alimentos'),
(36471, 30523, 'it', 'name', 'Programma Alimentare Mondiale'),
(36472, 30523, 'fr', 'name', 'Programme Alimentaire Mondial'),
(36473, 30523, 'en', 'name', 'World Food Programme'),
(36474, 30524, 'en', 'name', 'Zhumadian Central Hospital'),
(36475, 30525, 'en', 'name', 'Shenzhen KangNing Hospital'),
(36476, 30526, 'en', 'name', 'United Nations Population Fund'),
(36477, 30527, 'en', 'name', 'VA Tennessee Valley Healthcare System'),
(36478, 30528, 'en', 'name', 'Xi’an Children’s Hospital'),
(36479, 30529, 'no_lang_code', 'name', 'Viron Therapeutics (Canada)'),
(36480, 30530, 'no_lang_code', 'name', 'Vision Engineering (Italy)'),
(36481, 30531, 'en', 'name', 'Xian Mental Health Center'),
(36482, 30532, 'en', 'name', 'Xiangyang Central Hospital'),
(36483, 30533, 'en', 'name', 'Xinyang College of Agriculture and Forestry'),
(36484, 30533, 'zh', 'name', 'äæ”é˜³å†œęž—å­¦é™¢'),
(36485, 30534, 'en', 'name', 'Weihai City Mental Health Center'),
(36486, 30535, 'en', 'name', 'Western Australian Museum'),
(36487, 30536, 'en', 'name', 'British Heart Foundation'),
(36488, 30537, 'en', 'name', 'Institute for Advanced Study'),
(36489, 30537, 'de', 'name', 'Wissenschaftskolleg zu Berlin'),
(36490, 30538, 'en', 'name', 'YaoundƩ General Hospital'),
(36491, 30539, 'en', 'name', 'First Affiliated Hospital of Wannan Medical College'),
(36492, 30540, 'en', 'name', 'Zhuhai People''s Hospital'),
(36493, 30540, 'zh', 'name', 'ē ęµ·åø‚äŗŗę°‘åŒ»é™¢'),
(36494, 30541, 'en', 'name', 'Yixing Tumor Hospital'),
(36495, 30542, 'en', 'name', 'State Administration of Foreign Experts Affairs'),
(36496, 30543, 'en', 'name', 'Zoological Park Organization'),
(36497, 30544, 'en', 'name', 'Danish National Research Foundation'),
(36498, 30545, 'en', 'name', 'Cariplo Foundation'),
(36499, 30545, 'it', 'name', 'Fondazione Cariplo'),
(36500, 30546, 'no_lang_code', 'name', 'Yantaishan Hospital'),
(36501, 30546, 'zh', 'name', 'ēƒŸå°å±±åŒ»é™¢'),
(36502, 30547, 'en', 'name', 'Zhejiang Provincial Natural Science Foundation'),
(36503, 30547, 'zh', 'name', 'ęµ™ę±Ÿēœč‡Ŗē„¶ē§‘å­¦åŸŗé‡‘å§”å‘˜ä¼š'),
(36504, 30548, 'en', 'name', 'International Telecommunication Union'),
(36505, 30549, 'en', 'name', 'Israel National Institute for Health Policy Research'),
(36506, 30550, 'en', 'name', 'China Geological Survey'),
(36507, 30550, 'zh', 'name', 'äø­å›½åœ°č“Øč°ƒęŸ„å±€ę°“ę–‡åœ°č“ØēŽÆå¢ƒåœ°č“Øč°ƒęŸ„äø­åæƒ'),
(36508, 30551, 'en', 'name', 'Ministry of Education'),
(36509, 30551, 'zh', 'name', 'ę–°åŠ å”ę•™č‚²éƒØ'),
(36510, 30552, 'en', 'name', 'Norwegian Nurses Organisation'),
(36511, 30553, 'en', 'name', 'NeuroSurgical Research Foundation'),
(36512, 30554, 'no_lang_code', 'name', 'Taizhou Municipal Hospital'),
(36513, 30555, 'en', 'name', 'Leverhulme Trust'),
(36514, 30556, 'en', 'name', 'Korea Evaluation Institute of Industrial Technology'),
(36515, 30557, 'en', 'name', 'Volkswagen Foundation'),
(36516, 30557, 'de', 'name', 'VolkswagenStiftung'),
(36517, 30558, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado de Minas Gerais'),
(36518, 30559, 'en', 'name', 'Science and Technology Development Fund'),
(36519, 30560, 'fr', 'name', 'Agence EuropƩenne ChargƩe de la SƩcuritƩ des RƩseaux et de l''Information'),
(36520, 30560, 'en', 'name', 'European Union Agency for Network and Information Security'),
(36521, 30560, 'el', 'name', 'ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ της Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĪ®Ļ‚ ĪˆĪ½Ļ‰ĻƒĪ·Ļ‚ για την Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī± Ī”Ī¹ĪŗĻ„ĻĻ‰Ī½ και Ī Ī»Ī·ĻĪæĻ†ĪæĻĪ¹ĻŽĪ½'),
(36522, 30561, 'en', 'name', 'National Medical Research Council'),
(36523, 30562, 'en', 'name', 'Larry Ellison Foundation'),
(36524, 30563, 'fr', 'name', 'Centre de Traduction des Organes de l''Union EuropƩenne'),
(36525, 30563, 'en', 'name', 'Translation Centre for the Bodies of the European Union'),
(36526, 30563, 'de', 'name', 'Übersetzungszentrum für die Einrichtungen der Europäischen Union'),
(36527, 30564, 'en', 'name', 'German-Israeli Foundation for Scientific Research and Development'),
(36528, 30565, 'es', 'name', 'Consejo de Ciencia y TecnologĆ­a del Estado de Tabasco'),
(36529, 30566, 'en', 'name', 'Slovak Research and Development Agency'),
(36530, 30567, 'en', 'name', 'Cancer Prevention and Research Institute of Texas'),
(36531, 30568, 'en', 'name', 'Research Corporation for Science Advancement'),
(36532, 30569, 'no_lang_code', 'name', 'Exide Technologies (United States)'),
(36533, 30570, 'fr', 'name', 'Fondation pour la Recherche MƩdicale'),
(36534, 30571, 'en', 'name', 'United States-Israel Binational Science Foundation'),
(36535, 30572, 'en', 'name', 'Alexander von Humboldt Foundation'),
(36536, 30572, 'de', 'name', 'Alexander von Humboldt-Stiftung'),
(36537, 30573, 'no_lang_code', 'name', 'MetLife (United States)'),
(36538, 30574, 'en', 'name', 'Bulgarian Science Fund'),
(36539, 30575, 'en', 'name', 'Belarusian Republican Foundation for Fundamental Research'),
(36540, 30576, 'en', 'name', 'Health Research Council of New Zealand'),
(36541, 30577, 'en', 'name', 'National IT industry Promotion Agency'),
(36542, 30577, 'ko', 'name', 'ģ •ė³“ķ†µģ‹ ģ‚°ģ—…ģ§„ķ„ģ›'),
(36543, 30578, 'en', 'name', 'National Heart Foundation of Australia'),
(36544, 30579, 'en', 'name', 'Australian Centre for International Agricultural Research'),
(36545, 30580, 'en', 'name', 'Damon Runyon Cancer Research Foundation'),
(36546, 30581, 'en', 'name', 'Camille and Henry Dreyfus Foundation'),
(36547, 30582, 'en', 'name', 'Commission for Technology and Innovation'),
(36548, 30582, 'de', 'name', 'Kommission für Technologie und Innovation'),
(36549, 30583, 'en', 'name', 'Ministry of Science, Technology and Innovation'),
(36550, 30584, 'en', 'name', 'Research to Prevent Blindness'),
(36551, 30585, 'cs', 'name', 'Ministerstvo zdravotnictví České republiky'),
(36552, 30585, 'en', 'name', 'Ministry of Health'),
(36553, 30586, 'en', 'name', 'Appalachian Regional Commission'),
(36554, 30587, 'en', 'name', 'National Science and Technology Entrepreneurship Development Board'),
(36555, 30588, 'en', 'name', 'Children''s Cancer Research Fund'),
(36556, 30589, 'en', 'name', 'Fogarty International Center'),
(36557, 30590, 'en', 'name', 'Neurosciences Research Foundation'),
(36558, 30591, 'en', 'name', 'Doris Duke Charitable Foundation'),
(36559, 30592, 'fr', 'name', 'Centre Franco-Indien pour la Promotion de la Recherche AvancƩe'),
(36560, 30592, 'en', 'name', 'Indo-French Centre for the Promotion of Advanced Research'),
(36561, 30593, 'en', 'name', 'Dutch Cancer Society'),
(36562, 30593, 'nl', 'name', 'KWF Kankerbestrijding'),
(36563, 30594, 'en', 'name', 'American Roentgen Ray Society'),
(36564, 30595, 'en', 'name', 'National Eye Research Centre'),
(36565, 30596, 'en', 'name', 'Utah Space Grant Consortium'),
(36566, 30597, 'en', 'name', 'Morris Animal Foundation'),
(36567, 30598, 'en', 'name', 'International Partnership for the Hydrogen and Fuel Cell in the Economy'),
(36568, 30599, 'en', 'name', 'Diabetes UK'),
(36569, 30600, 'en', 'name', 'Carlsberg Foundation'),
(36570, 30601, 'en', 'name', 'Swedish Heart-Lung Foundation'),
(36571, 30602, 'en', 'name', 'All India Council for Technical Education'),
(36572, 30603, 'en', 'name', 'Government of Jilin Province'),
(36573, 30604, 'en', 'name', 'Partnership for Advanced Computing in Europe'),
(36574, 30605, 'en', 'name', 'National Research Council'),
(36575, 30606, 'en', 'name', 'Education Department of Heilongjiang Province'),
(36576, 30607, 'en', 'name', 'Finnish Cultural Foundation'),
(36577, 30608, 'en', 'name', 'Australian Historical Association'),
(36578, 30609, 'no_lang_code', 'name', 'Labex (Sweden)'),
(36579, 30610, 'en', 'name', 'John D. and Catherine T. MacArthur Foundation'),
(36580, 30611, 'en', 'name', 'China Medical Board'),
(36581, 30612, 'en', 'name', 'Michigan Department of Licensing and Regulatory Affairs'),
(36582, 30613, 'en', 'name', 'National Breast Cancer Foundation'),
(36583, 30614, 'en', 'name', 'Royal Astronomical Society'),
(36584, 30615, 'en', 'name', 'Swedish Foundation for International Cooperation in Research and Higher Education'),
(36585, 30616, 'nl', 'name', 'Nierstichting'),
(36586, 30617, 'en', 'name', 'Ministry of Education'),
(36587, 30618, 'en', 'name', 'Royal Academy of Engineering'),
(36588, 30619, 'fr', 'name', 'Agence mondiale antidopage'),
(36589, 30619, 'en', 'name', 'World Anti-Doping Agency'),
(36590, 30620, 'en', 'name', 'Stavros Niarchos Foundation'),
(36591, 30621, 'en', 'name', 'Finnish Academy of Science and Letters'),
(36592, 30622, 'en', 'name', 'Spencer Foundation'),
(36593, 30623, 'en', 'name', 'Esperantic Studies Foundation'),
(36594, 30624, 'en', 'name', 'National Sleep Foundation'),
(36595, 30625, 'en', 'name', 'Prostate Cancer Foundation of Australia'),
(36596, 30626, 'de', 'name', 'Else Krƶner-Fresenius-Stiftung'),
(36597, 30627, 'en', 'name', 'Juvenile Diabetes Research Foundation'),
(36598, 30628, 'fi', 'name', 'Ruotsin kansainvƤlisen kehitysyhteistyƶn keskusvirasto'),
(36599, 30628, 'en', 'name', 'Swedish International Development Cooperation Agency'),
(36600, 30629, 'en', 'name', 'Bavarian Research Foundation'),
(36601, 30629, 'de', 'name', 'Bayerische Forschungsstiftung'),
(36602, 30630, 'en', 'name', 'United States-Israel Binational Agricultural Research and Development Fund'),
(36603, 30631, 'en', 'name', 'Rehabilitation Research and Development Service'),
(36604, 30632, 'en', 'name', 'Netherlands Space Office'),
(36605, 30633, 'en', 'name', 'Fritz Thyssen Foundation'),
(36606, 30633, 'de', 'name', 'Fritz Thyssen Stiftung'),
(36607, 30634, 'en', 'name', 'Ministry of Education'),
(36608, 30634, 'bn', 'name', 'ą¦¶ą¦æą¦•ą§ą¦·ą¦¾ ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(36609, 30635, 'en', 'name', 'Parkinson''s UK'),
(36610, 30636, 'en', 'name', 'Prostate Cancer Foundation'),
(36611, 30637, 'en', 'name', 'Kuwait Foundation for the Advancement of Sciences'),
(36612, 30638, 'de', 'name', 'Deutsche Bundesstiftung Umwelt'),
(36613, 30639, 'en', 'name', 'Hewlett Foundation'),
(36614, 30640, 'en', 'name', 'BrightFocus Foundation'),
(36615, 30641, 'en', 'name', 'National Foundation for Cancer Research'),
(36616, 30642, 'en', 'name', 'Asthma UK'),
(36617, 30643, 'it', 'name', 'Fondazione Cassa Risparmio Perugia'),
(36618, 30644, 'en', 'name', 'Robert Schalkenbach Foundation'),
(36619, 30645, 'en', 'name', 'Academy of Television Arts and Sciences'),
(36620, 30646, 'en', 'name', 'Economic Development Board'),
(36621, 30647, 'en', 'name', 'Connecticut State Emergency Response Commission'),
(36622, 30648, 'en', 'name', 'Agency for Toxic Substances and Disease Registry'),
(36623, 30649, 'no_lang_code', 'name', 'AFA Insurance (Sweden)'),
(36624, 30650, 'en', 'name', 'National Emergency Management Agency'),
(36625, 30651, 'en', 'name', 'Fulbright Commission'),
(36626, 30652, 'en', 'name', 'Richmond County Savings Foundation'),
(36627, 30653, 'en', 'name', 'London Mathematical Society'),
(36628, 30654, 'es', 'name', 'Agencia Española de Cooperación Internacional para el Desarrollo');
INSERT INTO `ror_settings` VALUES
(36629, 30654, 'en', 'name', 'Spanish Agency for International Development Cooperation'),
(36630, 30655, 'en', 'name', 'Western Economic Diversification Canada'),
(36631, 30656, 'en', 'name', 'Epilepsy Research UK'),
(36632, 30657, 'en', 'name', 'Department of Veterans Affairs'),
(36633, 30658, 'en', 'name', 'Action Medical Research'),
(36634, 30659, 'en', 'name', 'Leakey Foundation'),
(36635, 30660, 'en', 'name', 'American Foundation for Suicide Prevention'),
(36636, 30661, 'en', 'name', 'Gatsby Charitable Foundation'),
(36637, 30662, 'en', 'name', 'Heart Research UK'),
(36638, 30663, 'en', 'name', 'Israel Cancer Research Fund'),
(36639, 30664, 'en', 'name', 'Indiana Clinical and Translational Sciences Institute'),
(36640, 30665, 'it', 'name', 'Ente Cassa di Risparmio di Firenze'),
(36641, 30666, 'it', 'name', 'Compagnia di San Paolo'),
(36642, 30667, 'en', 'name', 'Blooms Syndrome Foundation'),
(36643, 30668, 'en', 'name', 'AXA Research Fund'),
(36644, 30669, 'en', 'name', 'Flight Attendant Medical Research Institute'),
(36645, 30670, 'en', 'name', 'Society of Hospital Pharmacists of Australia'),
(36646, 30671, 'en', 'name', 'Michigan Economic Development Corporation'),
(36647, 30672, 'no_lang_code', 'name', 'Moody''s Corporation (United States)'),
(36648, 30673, 'en', 'name', 'Academy of American Poets'),
(36649, 30674, 'en', 'name', 'Danida Fellowship Centre'),
(36650, 30675, 'en', 'name', 'CHDI Foundation'),
(36651, 30676, 'fr', 'name', 'Fondation de France'),
(36652, 30677, 'en', 'name', 'Ernest C. Manning Awards Foundation'),
(36653, 30677, 'fr', 'name', 'La Fondation des Prix Ernest C. Manning'),
(36654, 30678, 'en', 'name', 'Maj and Tor Nessling Foundation'),
(36655, 30679, 'en', 'name', 'UK-India Education and Research Initiative'),
(36656, 30680, 'en', 'name', 'Department of Health of Guangdong Province'),
(36657, 30681, 'en', 'name', 'Cure Cancer Australia'),
(36658, 30682, 'en', 'name', 'Araucaria Foundation'),
(36659, 30682, 'pt', 'name', 'Fundação AraucÔria'),
(36660, 30683, 'en', 'name', 'Ministry of Transport'),
(36661, 30684, 'en', 'name', 'Nuclear Safety And Security Commission'),
(36662, 30685, 'en', 'name', 'Arnold and Mabel Beckman Foundation'),
(36663, 30686, 'en', 'name', 'Ministry of Environment, Forests and Climate Change'),
(36664, 30687, 'fr', 'name', 'Fondation ARC pour la Recherche sur le Cancer'),
(36665, 30688, 'en', 'name', 'Smith Richardson Foundation'),
(36666, 30689, 'en', 'name', 'Human Growth Foundation'),
(36667, 30690, 'en', 'name', 'Korea Federation of Science and Technology Societies'),
(36668, 30690, 'ko', 'name', 'ķ•œźµ­ź³¼ķ•™źø°ģˆ ė‹Øģ²“ģ“ģ—°ķ•©ķšŒ'),
(36669, 30691, 'en', 'name', 'Foundation for Research Support of GoiƔs State'),
(36670, 30691, 'pt', 'name', 'Fundação de Apoio a Pesquisa do Estado de GoiÔs'),
(36671, 30692, 'en', 'name', 'World Cancer Research Fund UK'),
(36672, 30693, 'en', 'name', 'Nanjing University of Posts and Telecommunications'),
(36673, 30693, 'zh', 'name', 'å—äŗ¬é‚®ē”µå¤§å­¦'),
(36674, 30694, 'en', 'name', 'Ministry of Education and Science'),
(36675, 30695, 'en', 'name', 'EsmƩe Fairbairn Foundation'),
(36676, 30696, 'en', 'name', 'British Ecological Society'),
(36677, 30697, 'en', 'name', 'Texas Commission on Environmental Quality'),
(36678, 30698, 'en', 'name', 'Adelson Foundation'),
(36679, 30699, 'en', 'name', 'Society of Abdominal Radiology'),
(36680, 30700, 'en', 'name', 'Cancer Research Institute'),
(36681, 30701, 'en', 'name', 'Rothamsted International'),
(36682, 30702, 'en', 'name', 'Academy of Motion Picture Arts and Sciences'),
(36683, 30703, 'en', 'name', 'Wellbeing of Women'),
(36684, 30704, 'en', 'name', 'Eli and Edythe Broad Foundation'),
(36685, 30705, 'en', 'name', 'National Society for Histotechnology'),
(36686, 30706, 'en', 'name', 'Leona M. and Harry B. Helmsley Charitable Trust'),
(36687, 30707, 'en', 'name', 'Kidney Research UK'),
(36688, 30708, 'en', 'name', 'Guy''s and St Thomas'' Charity'),
(36689, 30709, 'en', 'name', 'National Center for Injury Prevention and Control'),
(36690, 30710, 'en', 'name', 'United States Social Security Administration'),
(36691, 30711, 'en', 'name', 'Wallace H. Coulter Foundation'),
(36692, 30712, 'en', 'name', 'Prostate Cancer Canada'),
(36693, 30713, 'en', 'name', 'Rosetrees Trust'),
(36694, 30714, 'en', 'name', 'Great Lakes Fishery Trust'),
(36695, 30715, 'en', 'name', 'Water Research Foundation'),
(36696, 30716, 'en', 'name', 'Alzheimer Society of Canada'),
(36697, 30716, 'fr', 'name', 'SociƩtƩ Alzheimer du Canada'),
(36698, 30717, 'en', 'name', 'Genome British Columbia'),
(36699, 30718, 'en', 'name', 'CS Fund'),
(36700, 30719, 'en', 'name', 'Horticulture Innovation Australia'),
(36701, 30720, 'en', 'name', 'Fetzer Institute'),
(36702, 30721, 'en', 'name', 'Queensland Emergency Medicine Research Foundation'),
(36703, 30722, 'no_lang_code', 'name', 'Cotton (United States)'),
(36704, 30723, 'en', 'name', 'Multiple Sclerosis Society'),
(36705, 30724, 'en', 'name', 'Chengdu Normal University'),
(36706, 30725, 'en', 'name', 'Horserace Betting Levy Board'),
(36707, 30726, 'en', 'name', 'Gulf of Mexico Research Initiative'),
(36708, 30727, 'en', 'name', 'Ministry of Housing and Urban-Rural Development'),
(36709, 30727, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½ä½ęˆæå’ŒåŸŽä¹”å»ŗč®¾éƒØ'),
(36710, 30728, 'en', 'name', 'Cambridge Healthtech Institute'),
(36711, 30729, 'en', 'name', 'Maritime and Port Authority of Singapore'),
(36712, 30730, 'en', 'name', 'Irish Cancer Society'),
(36713, 30731, 'de', 'name', 'Boehringer Ingelheim Fonds'),
(36714, 30732, 'no', 'name', 'NordForsk'),
(36715, 30733, 'en', 'name', 'Women''s Fund for Health Education and Research'),
(36716, 30734, 'en', 'name', 'Institute of Science and Technology of the Federal District'),
(36717, 30734, 'es', 'name', 'Instituto de Ciencia y Tecnologia del Distrito Federal'),
(36718, 30735, 'en', 'name', 'The Research Council'),
(36719, 30736, 'en', 'name', 'Public Utilities Board'),
(36720, 30737, 'en', 'name', 'Quanzhou Institute of Equipment Manufacturing Haixi Institute'),
(36721, 30737, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ęµ·č„æē ”ē©¶é™¢ę³‰å·žč£…å¤‡åˆ¶é€ ē ”ē©¶ę‰€'),
(36722, 30738, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado do Amazonas'),
(36723, 30739, 'en', 'name', 'Amazon Research Foundation'),
(36724, 30739, 'pt', 'name', 'Fundação AmazÓnia Paraense de Amparo à Pesquisa'),
(36725, 30740, 'en', 'name', 'Carnegie Corporation of New York'),
(36726, 30741, 'es', 'name', 'Asociación Española Contra el CÔncer'),
(36727, 30741, 'en', 'name', 'Spanish Association Against Cancer'),
(36728, 30742, 'en', 'name', 'American Foundation for AIDS Research'),
(36729, 30743, 'en', 'name', 'Institute of Current World Affairs'),
(36730, 30744, 'en', 'name', 'Oak Foundation'),
(36731, 30745, 'en', 'name', 'Nova Scotia Department of Energy'),
(36732, 30746, 'en', 'name', 'Defense Logistics Agency'),
(36733, 30747, 'en', 'name', 'Carolina Institute for NanoMedicine'),
(36734, 30748, 'en', 'name', 'V Foundation for Cancer Research'),
(36735, 30749, 'en', 'name', 'National Chung Shan Institute of Science and Technology'),
(36736, 30750, 'en', 'name', 'Canary Islands Government'),
(36737, 30750, 'es', 'name', 'Gobierno de Canarias'),
(36738, 30751, 'en', 'name', 'Grayson-Jockey Club Research Foundation'),
(36739, 30752, 'en', 'name', 'Thomson Reuters Foundation'),
(36740, 30753, 'en', 'name', 'American Society for Laser Medicine and Surgery'),
(36741, 30754, 'no_lang_code', 'name', 'Bial (Portugal)'),
(36742, 30755, 'en', 'name', 'Australian Renewable Energy Agency'),
(36743, 30756, 'en', 'name', 'John S. Dunn Foundation'),
(36744, 30757, 'en', 'name', 'Stanley Medical Research Institute'),
(36745, 30758, 'en', 'name', 'Elizabeth R. Griffin Research Foundation'),
(36746, 30759, 'de', 'name', 'Gemeinnützige Hertie-Stiftung'),
(36747, 30759, 'en', 'name', 'Hertie Foundation'),
(36748, 30760, 'no_lang_code', 'name', 'Suzuken (Japan)'),
(36749, 30761, 'en', 'name', 'Fujian Provincial Department of Science and Technology'),
(36750, 30762, 'en', 'name', 'Kate''s Foundation'),
(36751, 30763, 'en', 'name', 'JPB Foundation'),
(36752, 30764, 'pt', 'name', 'Fundação Cearense de Apoio ao Desenvolvimento Científico e Tecnológico'),
(36753, 30765, 'de', 'name', 'Deutsche Krebshilfe'),
(36754, 30765, 'en', 'name', 'German Cancer Aid'),
(36755, 30766, 'en', 'name', 'Korean Cancer Association'),
(36756, 30767, 'fr', 'name', 'Fondation ontarienne de neurotraumatologie'),
(36757, 30767, 'en', 'name', 'Ontario Neurotrauma Foundation'),
(36758, 30768, 'no_lang_code', 'name', 'Bioland (South Korea)'),
(36759, 30769, 'en', 'name', 'Alcohol Research UK'),
(36760, 30770, 'fr', 'name', 'Mitacs'),
(36761, 30771, 'en', 'name', 'Chiang Ching-kuo Foundation'),
(36762, 30772, 'de', 'name', 'Bundesamt für Umwelt'),
(36763, 30772, 'en', 'name', 'Federal Office for the Environment'),
(36764, 30773, 'en', 'name', 'Danish Rheumatism Association'),
(36765, 30773, 'da', 'name', 'Gigtforeningen'),
(36766, 30774, 'en', 'name', 'Top Institute Pharma'),
(36767, 30775, 'en', 'name', 'British Skin Foundation'),
(36768, 30776, 'en', 'name', 'Geneva League Against Cancer'),
(36769, 30776, 'fr', 'name', 'Ligue Genevoise Contre le Cancer'),
(36770, 30777, 'en', 'name', 'Natural Resources Data Management System'),
(36771, 30778, 'en', 'name', 'Novo Nordisk UK Research Foundation'),
(36772, 30779, 'en', 'name', 'British Lung Foundation'),
(36773, 30780, 'fr', 'name', 'Ministre du dƩveloppement des ressources humaines'),
(36774, 30780, 'en', 'name', 'Ministry of Human Resource Development'),
(36775, 30780, 'hi', 'name', 'मानव संसाधन विकास ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(36776, 30780, 'ta', 'name', 'மனிதவள ą®®ąÆ‡ą®®ąÆą®Ŗą®¾ą®ŸąÆą®ŸąÆ ą®…ą®®ąÆˆą®šąÆą®šą®•ą®®ąÆ'),
(36777, 30781, 'en', 'name', 'Fight for Sight'),
(36778, 30782, 'en', 'name', 'Grand Challenges Canada'),
(36779, 30783, 'en', 'name', 'Multiple Sclerosis Research Australia'),
(36780, 30784, 'es', 'name', 'Consejo Estatal de Ciencia, Tecnología e Innovación de Chihuahua'),
(36781, 30785, 'en', 'name', 'Andrew W. Mellon Foundation'),
(36782, 30786, 'en', 'name', 'Open Society Foundations'),
(36783, 30787, 'en', 'name', 'Israel Cancer Association'),
(36784, 30788, 'en', 'name', 'Walther Cancer Foundation'),
(36785, 30789, 'en', 'name', 'Christensen Fund'),
(36786, 30790, 'de', 'name', 'ForschungsĀ­kuratorium Textil'),
(36787, 30791, 'en', 'name', 'Nathan Cummings Foundation'),
(36788, 30792, 'en', 'name', 'Channel 7 Children''s Research Foundation'),
(36789, 30793, 'fr', 'name', 'France AgriMer'),
(36790, 30794, 'no_lang_code', 'name', 'Shenhua Group (China)'),
(36791, 30795, 'en', 'name', 'Endocrine Society of Australia'),
(36792, 30796, 'no_lang_code', 'name', 'Volvo (United States)'),
(36793, 30797, 'en', 'name', 'Beyondblue'),
(36794, 30798, 'no_lang_code', 'name', 'Connecticut Innovations (United States)'),
(36795, 30799, 'en', 'name', 'Roche Organ Transplantation Research Foundation'),
(36796, 30800, 'de', 'name', 'Krebsliga Schweiz'),
(36797, 30800, 'fr', 'name', 'Ligue Suisse Contre le Cancer'),
(36798, 30800, 'en', 'name', 'Swiss Cancer League'),
(36799, 30801, 'en', 'name', 'Jewish Community Foundation of Greater MetroWest NJ'),
(36800, 30802, 'en', 'name', 'Poliomyelitis Research Foundation'),
(36801, 30803, 'tr', 'name', 'Devlet Planlama Teşkilatı'),
(36802, 30803, 'en', 'name', 'State Planning Organization'),
(36803, 30804, 'de', 'name', 'AllerGen'),
(36804, 30805, 'en', 'name', 'Orthopaedic Research and Education Foundation'),
(36805, 30806, 'en', 'name', 'Polycystic Kidney Disease Foundation'),
(36806, 30807, 'en', 'name', 'Illinois Department of Commerce and Economic Opportunity'),
(36807, 30808, 'en', 'name', 'Cure Alzheimer’s Fund'),
(36808, 30809, 'en', 'name', 'Dermatology Foundation'),
(36809, 30810, 'en', 'name', 'Glenn Foundation for Medical Research'),
(36810, 30811, 'en', 'name', 'Scleroderma Foundation'),
(36811, 30812, 'en', 'name', 'Susan G. Komen Wyoming'),
(36812, 30813, 'en', 'name', 'Defence Science and Technology Agency'),
(36813, 30814, 'en', 'name', 'National Center on Birth Defects and Developmental Disabilities'),
(36814, 30815, 'en', 'name', 'Aircast Foundation'),
(36815, 30816, 'en', 'name', 'Li Ka Shing Foundation'),
(36816, 30817, 'en', 'name', 'Saskatchewan Health Research Foundation'),
(36817, 30818, 'it', 'name', 'Fondazione Cassa di Risparmio di Padova e Rovigo'),
(36818, 30819, 'en', 'name', 'Medical Research Scotland'),
(36819, 30820, 'en', 'name', 'Alabama Commission on Higher Education'),
(36820, 30821, 'en', 'name', 'Bupa UK Foundation'),
(36821, 30822, 'en', 'name', 'Pacific Northwest Foundation'),
(36822, 30823, 'en', 'name', 'British Association for Psychopharmacology'),
(36823, 30824, 'en', 'name', 'Great Britain Sasakawa Foundation'),
(36824, 30825, 'en', 'name', 'Giovanni Armenise-Harvard Foundation'),
(36825, 30826, 'en', 'name', 'Research Capacity Building Collaboration Wales'),
(36826, 30827, 'en', 'name', 'National Centre for Vocational Education Research'),
(36827, 30828, 'no_lang_code', 'name', 'China National Offshore Oil Corporation (China)'),
(36828, 30828, 'zh', 'name', 'äø­ęµ·ēŸ³ę²¹ē ”ē©¶äø­åæƒ'),
(36829, 30829, 'en', 'name', 'Texas Emerging Technology Fund'),
(36830, 30830, 'no_lang_code', 'name', 'Medtronic (Ireland)'),
(36831, 30831, 'en', 'name', 'Sir Halley Stewart Trust'),
(36832, 30832, 'en', 'name', 'Australian College of Nursing'),
(36833, 30833, 'en', 'name', 'Israel Academy of Sciences and Humanities'),
(36834, 30833, 'he', 'name', 'האקדמיה ×”×œ××•×ž×™×Ŗ ×”×™×©×Ø××œ×™×Ŗ למדעים'),
(36835, 30834, 'es', 'name', 'Ibercaja Banco'),
(36836, 30835, 'en', 'name', 'Claude Leon Foundation'),
(36837, 30836, 'en', 'name', 'Department of Foreign Affairs and Trade'),
(36838, 30837, 'fr', 'name', 'Cemsuisse'),
(36839, 30838, 'en', 'name', 'Ministry for Culture and Heritage'),
(36840, 30839, 'en', 'name', 'Foundation for Research Support of Mato Grosso State'),
(36841, 30839, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado de Mato Grosso'),
(36842, 30840, 'es', 'name', 'Ministerio de Agricultura y Desarrollo Rural'),
(36843, 30840, 'en', 'name', 'Ministry of Agriculture and Rural Development'),
(36844, 30841, 'en', 'name', 'Ministry of the Environment'),
(36845, 30841, 'ja', 'name', 'ē’°å¢ƒēœ'),
(36846, 30842, 'en', 'name', 'Aetna Foundation'),
(36847, 30843, 'en', 'name', 'Gerda Henkel Foundation'),
(36848, 30843, 'de', 'name', 'Gerda Henkel Stiftung'),
(36849, 30844, 'sr', 'name', 'Pokrajinski Sekretarijat za Nauku i TehnoloŔki Razvoj'),
(36850, 30844, 'en', 'name', 'Provincial Secretariat for Science and Technological Development'),
(36851, 30845, 'de', 'name', 'Stiftung Rheinland-Pfalz für Innovation'),
(36852, 30846, 'en', 'name', 'Nutricia Research Foundation'),
(36853, 30847, 'en', 'name', 'Office of Dietary Supplements'),
(36854, 30848, 'en', 'name', 'Indian Council of Social Science Research'),
(36855, 30849, 'en', 'name', 'Swedish National Bank'),
(36856, 30850, 'en', 'name', 'National Endowment for the Arts'),
(36857, 30851, 'en', 'name', 'Northwest Health Foundation'),
(36858, 30852, 'de', 'name', 'Bundesamt für Energie'),
(36859, 30852, 'en', 'name', 'Swiss Federal Office of Energy'),
(36860, 30853, 'en', 'name', 'Israeli Centers for Research Excellence'),
(36861, 30854, 'en', 'name', 'American Breast Cancer Foundation'),
(36862, 30855, 'en', 'name', 'Silicon Valley Community Foundation'),
(36863, 30856, 'en', 'name', 'American Physical Therapy Association'),
(36864, 30857, 'en', 'name', 'Food and Health Bureau'),
(36865, 30857, 'zh', 'name', 'é£Ÿē‰©åŠč”žē”Ÿå±€'),
(36866, 30858, 'en', 'name', 'Kerr Foundation'),
(36867, 30859, 'en', 'name', 'Baptist Community Ministries'),
(36868, 30860, 'en', 'name', 'Republic of Burundi'),
(36869, 30860, 'fr', 'name', 'RƩpublique du Burundi'),
(36870, 30861, 'en', 'name', 'Kidney & Urology Foundation of America'),
(36871, 30862, 'en', 'name', 'Dana Foundation'),
(36872, 30863, 'en', 'name', 'Center for Translational Molecular Medicine'),
(36873, 30864, 'en', 'name', 'Diabetes Research Institute Foundation'),
(36874, 30865, 'en', 'name', 'Ministry of Justice'),
(36875, 30866, 'no_lang_code', 'name', 'Consolidated Edison (United States)'),
(36876, 30867, 'en', 'name', 'Merck Institute for Science Education'),
(36877, 30868, 'en', 'name', 'Virginia Environmental Endowment'),
(36878, 30869, 'en', 'name', 'Discovery Eye Foundation'),
(36879, 30870, 'en', 'name', 'Department of Emergency Services and Public Protection'),
(36880, 30871, 'en', 'name', 'Hope for Depression Research Foundation'),
(36881, 30872, 'en', 'name', 'Illinois Environmental Protection Agency'),
(36882, 30873, 'en', 'name', 'Wisconsin Department of Workforce Development'),
(36883, 30874, 'es', 'name', 'Departamento de Transporte de Pensilvania'),
(36884, 30874, 'en', 'name', 'Pennsylvania Department of Transportation'),
(36885, 30875, 'en', 'name', 'International Myeloma Foundation'),
(36886, 30876, 'en', 'name', 'Henry Luce Foundation'),
(36887, 30877, 'fr', 'name', 'DƩpartement des transports du michigan'),
(36888, 30877, 'en', 'name', 'Michigan Department of Transportation'),
(36889, 30878, 'en', 'name', 'Society for Imaging Informatics in Medicine'),
(36890, 30879, 'nl', 'name', 'Nederlandse Brandwonden Stichting'),
(36891, 30880, 'en', 'name', 'Minnesota Pollution Control Agency'),
(36892, 30881, 'en', 'name', 'International Association for Dental Research'),
(36893, 30882, 'en', 'name', 'Belgian American Educational Foundation'),
(36894, 30883, 'en', 'name', 'Bugher Foundation'),
(36895, 30884, 'no_lang_code', 'name', 'Southern Company (United States)'),
(36896, 30885, 'en', 'name', 'Concern Foundation'),
(36897, 30886, 'en', 'name', 'Conservation Leadership Programme'),
(36898, 30887, 'en', 'name', 'Diabetes Action Research and Education Foundation'),
(36899, 30888, 'no_lang_code', 'name', 'Psi Chi'),
(36900, 30889, 'no_lang_code', 'name', 'ConocoPhillips (United States)'),
(36901, 30890, 'en', 'name', 'International Society for Optics and Photonics'),
(36902, 30891, 'en', 'name', 'Batten Disease Support and Research Association'),
(36903, 30892, 'en', 'name', 'U.S. Poultry and Egg Association'),
(36904, 30893, 'en', 'name', 'Tenovus Cancer Care'),
(36905, 30894, 'en', 'name', 'American Foundation for Pharmaceutical Education'),
(36906, 30895, 'en', 'name', 'Health Foundation'),
(36907, 30896, 'en', 'name', 'Intensive Care Society'),
(36908, 30897, 'en', 'name', 'Blue Cross and Blue Shield of North Carolina Foundation'),
(36909, 30898, 'de', 'name', 'Verein für Krebsforschung'),
(36910, 30899, 'en', 'name', 'Bowel Disease Research Foundation'),
(36911, 30900, 'en', 'name', 'Josiah Macy Jr Foundation'),
(36912, 30901, 'fr', 'name', 'Le Conseil mƩdical du Canada'),
(36913, 30901, 'en', 'name', 'Medical Council of Canada'),
(36914, 30902, 'en', 'name', 'Pelican Cancer Foundation'),
(36915, 30903, 'en', 'name', 'Rheumatology Research Foundation'),
(36916, 30904, 'en', 'name', 'Canadian Anesthesiologists'' Society'),
(36917, 30905, 'en', 'name', 'Indian Association for Cancer Research'),
(36918, 30906, 'en', 'name', 'Australian Cancer Research Foundation'),
(36919, 30907, 'no_lang_code', 'name', 'Higher Education Press (China)'),
(36920, 30908, 'en', 'name', 'Manitoba Arts Council'),
(36921, 30909, 'en', 'name', 'Energy Market Authority'),
(36922, 30910, 'en', 'name', 'Housing and Development Board'),
(36923, 30910, 'zh', 'name', '组屋'),
(36924, 30911, 'no_lang_code', 'name', 'Intercontinental Exchange (United States)'),
(36925, 30912, 'en', 'name', 'Marine Mammal Commission'),
(36926, 30913, 'en', 'name', 'Sir Jules Thorn Charitable Trust'),
(36927, 30914, 'en', 'name', 'Cystic Fibrosis Trust'),
(36928, 30915, 'en', 'name', 'Korea Military Academy'),
(36929, 30915, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ģœ”źµ°ģ‚¬ź“€ķ•™źµ'),
(36930, 30916, 'en', 'name', 'Cancer Society of New Zealand'),
(36931, 30917, 'en', 'name', 'National Heart Foundation of New Zealand'),
(36932, 30918, 'en', 'name', 'Oticon Foundation in New Zealand'),
(36933, 30919, 'en', 'name', 'Jinan City Science and Technology Bureau'),
(36934, 30920, 'en', 'name', 'Terry Fox Foundation'),
(36935, 30921, 'en', 'name', 'Inspire Foundation'),
(36936, 30922, 'en', 'name', 'Wellington Medical Research Foundation'),
(36937, 30923, 'en', 'name', 'Australian Society for Parasitology'),
(36938, 30924, 'no_lang_code', 'name', 'Newport Coachworks (United States)'),
(36939, 30925, 'no_lang_code', 'name', 'Dairy Innovation Australia (Australia)'),
(36940, 30926, 'en', 'name', 'Motor Neurone Disease Association'),
(36941, 30927, 'en', 'name', 'South-South Exchange Programme for Research on the History of Development'),
(36942, 30928, 'en', 'name', 'Ministry of Higher Education'),
(36943, 30928, 'fr', 'name', 'Ministère de l''Enseignement Supérieur'),
(36944, 30929, 'en', 'name', 'Lister Institute of Preventive Medicine'),
(36945, 30930, 'en', 'name', 'Fulbright Foundation'),
(36946, 30931, 'en', 'name', 'Canadian Optometric Education Trust Fund'),
(36947, 30931, 'fr', 'name', 'Fonds de Fiducie des OptomƩtristes Canadiens pour l''Education'),
(36948, 30932, 'en', 'name', 'Foyle Foundation'),
(36949, 30933, 'en', 'name', 'Ministry of Micro, Small and Medium Enterprises'),
(36950, 30933, 'hi', 'name', 'ą¤øą„‚ą¤•ą„ą¤·ą„ą¤® , ą¤²ą¤˜ą„ और ą¤®ą¤§ą„ą¤Æą¤® ą¤‰ą¤¦ą„ą¤Æą¤® ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(36951, 30934, 'en', 'name', 'British Society for Rheumatology'),
(36952, 30935, 'es', 'name', 'Fundación Mapfre'),
(36953, 30936, 'en', 'name', 'Health Promotion Agency'),
(36954, 30937, 'en', 'name', 'Pathological Society'),
(36955, 30938, 'en', 'name', 'Home Office'),
(36956, 30938, 'cy', 'name', 'Y Swyddfa Gartref'),
(36957, 30939, 'fr', 'name', 'Conseil RƩgional de Champagne-Ardenne'),
(36958, 30940, 'de', 'name', 'Evangelisches Studienwerk Villigst'),
(36959, 30940, 'en', 'name', 'Protestant Academic Foundation'),
(36960, 30941, 'pt', 'name', 'Fundação de Amparo à Pesquisa e Inovação do Estado de Santa Catarina'),
(36961, 30942, 'en', 'name', 'Earthwatch Institute'),
(36962, 30943, 'fr', 'name', 'Institut des Ɖtats-unis pour la paix'),
(36963, 30943, 'en', 'name', 'United States Institute of Peace'),
(36964, 30944, 'en', 'name', 'Hangzhou Science and Technology Commission'),
(36965, 30945, 'en', 'name', 'Federal Council'),
(36966, 30946, 'en', 'name', 'Healthway'),
(36967, 30947, 'en', 'name', 'John E. Fetzer Memorial Trust'),
(36968, 30948, 'en', 'name', 'Guangxi University of Finance and Economics'),
(36969, 30948, 'zh', 'name', 'å¹æč„æč“¢ē»å­¦é™¢'),
(36970, 30949, 'en', 'name', 'Flinn Foundation'),
(36971, 30950, 'en', 'name', 'Tumour Institute of Tuscany'),
(36972, 30951, 'da', 'name', 'Nordea-fonden'),
(36973, 30952, 'en', 'name', 'Addenbrooke''s Charitable Trust'),
(36974, 30953, 'en', 'name', 'Ministry of Human Resources and Social Security'),
(36975, 30953, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœéƒØ'),
(36976, 30954, 'de', 'name', 'Deutsche Herzstiftung'),
(36977, 30955, 'en', 'name', 'Ministry of Culture, Sports and Tourism'),
(36978, 30955, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ė¬øķ™”ģ²“ģœ”ź“€ź“‘ė¶€'),
(36979, 30956, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado do Piauí'),
(36980, 30957, 'en', 'name', 'Ministry of Gender Equality and Family'),
(36981, 30957, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ 여성가씱부'),
(36982, 30958, 'en', 'name', 'Healthcare Georgia Foundation'),
(36983, 30959, 'en', 'name', 'National Tax Service'),
(36984, 30960, 'en', 'name', 'John Innes Foundation'),
(36985, 30961, 'en', 'name', 'Brown Foundation'),
(36986, 30962, 'en', 'name', 'Maine Health Access Foundation'),
(36987, 30963, 'en', 'name', 'Richard King Mellon Foundation'),
(36988, 30964, 'en', 'name', 'William Penn Foundation'),
(36989, 30965, 'en', 'name', 'National Evidenc- based healthcare Collaborating Agency'),
(36990, 30966, 'en', 'name', 'National Organization for Rare Disorders'),
(36991, 30967, 'en', 'name', 'Hearst Foundations'),
(36992, 30968, 'en', 'name', 'Agricultural Research Development Agency'),
(36993, 30968, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąøžąø±ąø’ąø™ąø²ąøąø²ąø£ąø§ąø“ąøˆąø±ąø¢ąøąø²ąø£ą¹€ąøąø©ąø•ąø£'),
(36994, 30969, 'en', 'name', 'National Rifle Association of America'),
(36995, 30970, 'en', 'name', 'North West Cancer Research'),
(36996, 30971, 'sv', 'name', 'Signhild Engkvists Stiftelse'),
(36997, 30972, 'en', 'name', 'Mary Kay Foundation'),
(36998, 30973, 'en', 'name', 'Britton Fund'),
(36999, 30974, 'en', 'name', 'Center for Health Care Strategies'),
(37000, 30975, 'en', 'name', 'Charles H. Revson Foundation'),
(37001, 30976, 'en', 'name', 'California HealthCare Foundation'),
(37002, 30977, 'nl', 'name', 'Stichting Astma Bestrijding'),
(37003, 30978, 'en', 'name', 'Swedish Farmers’ Foundation for Agricultural Research'),
(37004, 30979, 'en', 'name', 'Royal Free Charity'),
(37005, 30980, 'en', 'name', 'Winthrop Rockefeller Foundation'),
(37006, 30981, 'en', 'name', 'Fisher Center for Alzheimer''s Research Foundation'),
(37007, 30982, 'en', 'name', 'National Ataxia Foundation'),
(37008, 30983, 'en', 'name', 'Institute for Medical Biology'),
(37009, 30983, 'pl', 'name', 'Instytut Biologii Medycznej Polskiej Akademii Nauk'),
(37010, 30984, 'en', 'name', 'Graham Foundation'),
(37011, 30985, 'en', 'name', 'Samuel Waxman Cancer Research Foundation'),
(37012, 30986, 'en', 'name', 'Ministry of Education of the Republic of Belarus'),
(37013, 30987, 'no_lang_code', 'name', 'West Pharmaceutical Services (United States)'),
(37014, 30988, 'en', 'name', 'Hereditary Disease Foundation'),
(37015, 30989, 'en', 'name', 'Central Norway Regional Health Authority'),
(37016, 30990, 'en', 'name', 'Wilburforce Foundation'),
(37017, 30991, 'en', 'name', 'Wisconsin Alumni Research Foundation'),
(37018, 30992, 'en', 'name', 'Council for Learning Disabilities'),
(37019, 30993, 'en', 'name', 'American Liver Foundation'),
(37020, 30994, 'no_lang_code', 'name', 'Bridgestone (United States)'),
(37021, 30995, 'en', 'name', 'International Council of Shopping Centers'),
(37022, 30996, 'en', 'name', 'Accelerate Brain Cancer Cure'),
(37023, 30997, 'en', 'name', 'Kosciuszko Foundation'),
(37024, 30998, 'en', 'name', 'American Association of Endodontists'),
(37025, 30999, 'en', 'name', 'American Institute of Indian Studies'),
(37026, 31000, 'en', 'name', 'American Porphyria Foundation'),
(37027, 31001, 'es', 'name', 'Departamento de Transporte de Nueva Jersey'),
(37028, 31001, 'en', 'name', 'New Jersey Department of Transportation'),
(37029, 31002, 'en', 'name', 'Parapsychology Foundation'),
(37030, 31003, 'en', 'name', 'Blue Cross Blue Shield of Michigan Foundation'),
(37031, 31004, 'en', 'name', 'New York State Department of Agriculture and Markets'),
(37032, 31005, 'en', 'name', 'American Skin Association'),
(37033, 31006, 'en', 'name', 'Carroll Shelby Foundation'),
(37034, 31007, 'en', 'name', 'Ohio Environmental Protection Agency'),
(37035, 31008, 'en', 'name', 'Friendly Sons of St. Patrick'),
(37036, 31009, 'en', 'name', 'New York State Department of Labor'),
(37037, 31010, 'no_lang_code', 'name', 'MassMutual Financial Group (United States)'),
(37038, 31011, 'es', 'name', 'Fondo Monetario Internacional'),
(37039, 31011, 'fr', 'name', 'Fonds monƩtaire international'),
(37040, 31011, 'en', 'name', 'International Monetary Fund'),
(37041, 31012, 'en', 'name', 'Nuts, Bolts and Thingamajigs'),
(37042, 31013, 'no_lang_code', 'name', 'Tellabs (United States)'),
(37043, 31014, 'en', 'name', 'Novartis Foundation'),
(37044, 31015, 'en', 'name', 'Michigan Public Service Commission'),
(37045, 31016, 'en', 'name', 'Fraternal Order of Eagles'),
(37046, 31017, 'no_lang_code', 'name', 'Nike (United States)'),
(37047, 31018, 'en', 'name', 'Foundation for the Advancement of Mesoamerican Studies'),
(37048, 31019, 'en', 'name', 'Minnesota Department of Employment and Economic Development'),
(37049, 31020, 'en', 'name', 'European Association for Cancer Research'),
(37050, 31021, 'en', 'name', 'Maryland Higher Education Commission'),
(37051, 31022, 'en', 'name', 'Institute of Turkish Studies'),
(37052, 31023, 'en', 'name', 'Maddie''s Fund'),
(37053, 31024, 'en', 'name', 'Jain Foundation'),
(37054, 31025, 'en', 'name', 'Link Foundation'),
(37055, 31026, 'en', 'name', 'Longer Life Foundation'),
(37056, 31027, 'en', 'name', 'Ohio Lake Erie Commission'),
(37057, 31028, 'en', 'name', 'Aga Khan Foundation'),
(37058, 31029, 'no_lang_code', 'name', 'JF Kapnek Trust'),
(37059, 31030, 'en', 'name', 'Virginia Department of Education'),
(37060, 31031, 'en', 'name', 'National Psoriasis Foundation'),
(37061, 31032, 'en', 'name', 'Women''s Health Initiative'),
(37062, 31033, 'en', 'name', 'Canon Foundation in Europe'),
(37063, 31034, 'en', 'name', 'Orangutan Conservancy'),
(37064, 31035, 'en', 'name', 'Asia-Pacific Network for Global Change Research'),
(37065, 31036, 'no_lang_code', 'name', 'Mazda (United States)'),
(37066, 31037, 'no_lang_code', 'name', 'Hillrom (United States)'),
(37067, 31038, 'en', 'name', 'American College of Veterinary Internal Medicine Foundation'),
(37068, 31039, 'no_lang_code', 'name', 'UniCredit (United States)'),
(37069, 31040, 'no_lang_code', 'name', 'Houghton Mifflin Harcourt (United States)'),
(37070, 31041, 'en', 'name', 'CFA Institute'),
(37071, 31042, 'en', 'name', 'American Neurotology Society'),
(37072, 31043, 'en', 'name', 'ResMed Foundation'),
(37073, 31044, 'en', 'name', 'American Orthopaedic Association'),
(37074, 31045, 'en', 'name', 'School Nutrition Association'),
(37075, 31046, 'en', 'name', 'Healthwise'),
(37076, 31047, 'en', 'name', 'Waitt Foundation'),
(37077, 31048, 'en', 'name', 'American Academy of Audiology Foundation'),
(37078, 31049, 'fr', 'name', 'Agence ThƩmatique de Recherche en Science de la SantƩ'),
(37079, 31050, 'en', 'name', 'Center for Ecoliteracy'),
(37080, 31051, 'en', 'name', 'American Society of Echocardiography'),
(37081, 31052, 'en', 'name', 'Tinker Foundation'),
(37082, 31053, 'en', 'name', 'Wallace Foundation'),
(37083, 31054, 'en', 'name', 'Office of Under Secretary of Energy for Science'),
(37084, 31055, 'en', 'name', 'Center for Scientific Review'),
(37085, 31056, 'en', 'name', 'Sontag Foundation'),
(37086, 31057, 'en', 'name', 'Bat Conservation International'),
(37087, 31058, 'en', 'name', 'American Association of Orthodontists'),
(37088, 31059, 'en', 'name', 'Klingenstein Third Generation Foundation'),
(37089, 31060, 'en', 'name', 'Congress of Neurological Surgeons'),
(37090, 31061, 'en', 'name', 'Institute of Management Accountants'),
(37091, 31062, 'en', 'name', 'Association for Behavior Analysis International'),
(37092, 31063, 'en', 'name', 'Oneida Indian Nation'),
(37093, 31064, 'en', 'name', 'American Gastroenterological Association'),
(37094, 31065, 'en', 'name', 'Garden Club of America'),
(37095, 31066, 'en', 'name', 'Office of Disease Prevention'),
(37096, 31067, 'en', 'name', 'AIDS Clinical Trials Group'),
(37097, 31068, 'en', 'name', 'Hemostasis and Thrombosis Research Society'),
(37098, 31069, 'en', 'name', 'Hudson River Foundation'),
(37099, 31070, 'en', 'name', 'International Mental Health Research Organization'),
(37100, 31071, 'en', 'name', 'American Society for Clinical Laboratory Science'),
(37101, 31072, 'en', 'name', 'Musicians Emergency Fund'),
(37102, 31073, 'en', 'name', 'IEEE Foundation'),
(37103, 31074, 'en', 'name', 'International Society for Heart and Lung Transplantation'),
(37104, 31075, 'en', 'name', 'John S. and James L. Knight Foundation'),
(37105, 31076, 'en', 'name', 'Legacy Heritage Fund'),
(37106, 31077, 'en', 'name', 'Cetacean Society International'),
(37107, 31078, 'en', 'name', 'National Council on Disability'),
(37108, 31079, 'en', 'name', 'Jackson College'),
(37109, 31080, 'en', 'name', 'Van Ameringen Foundation'),
(37110, 31081, 'no_lang_code', 'name', 'Norfolk Southern (United States)'),
(37111, 31082, 'en', 'name', 'Women Helping Others Foundation'),
(37112, 31083, 'en', 'name', 'Autism Research Institute'),
(37113, 31084, 'en', 'name', 'American Bureau of Shipping'),
(37114, 31085, 'en', 'name', 'Ladies Leukemia League'),
(37115, 31086, 'en', 'name', 'Advertising Educational Foundation'),
(37116, 31087, 'en', 'name', 'Hartwell Foundation'),
(37117, 31088, 'en', 'name', 'Aeronautics Research and Development Board'),
(37118, 31089, 'en', 'name', 'Hawaii Invasive Species Council'),
(37119, 31090, 'en', 'name', 'Vasculitis Foundation'),
(37120, 31091, 'en', 'name', 'Alabama Farmers Federation'),
(37121, 31092, 'fr', 'name', 'Fondation Lefoulon-Delalande'),
(37122, 31093, 'en', 'name', 'Victorian Cancer Agency'),
(37123, 31094, 'es', 'name', 'Departamento de Transporte de Virginia Occidental'),
(37124, 31094, 'fr', 'name', 'DƩpartement des transports de la virginie-occidentale'),
(37125, 31094, 'en', 'name', 'West Virginia Department of Transportation'),
(37126, 31095, 'en', 'name', 'German-Russian Interdisciplinary Science Center'),
(37127, 31096, 'en', 'name', 'Canadian Occupational Therapy Foundation'),
(37128, 31097, 'es', 'name', 'Fundación Mutua Madrileña'),
(37129, 31098, 'en', 'name', 'Georgia Research Alliance'),
(37130, 31099, 'en', 'name', 'Canadian Wildlife Federation'),
(37131, 31099, 'fr', 'name', 'FƩdƩration Canadienne de la Faune'),
(37132, 31100, 'en', 'name', 'Florida Agency for Health Care Administration'),
(37133, 31101, 'en', 'name', 'Cryptobranchid Interest Group'),
(37134, 31102, 'en', 'name', 'Chemical Institute of Canada'),
(37135, 31102, 'fr', 'name', 'Institut de Chimie du Canada'),
(37136, 31103, 'en', 'name', 'Meningitis Research Foundation'),
(37137, 31104, 'fr', 'name', 'Fondation d''Aide pour la Recherche sur la Sclerose en Plaques'),
(37138, 31105, 'en', 'name', 'Cystic Fibrosis Canada'),
(37139, 31105, 'fr', 'name', 'Fibrose kystique Canada'),
(37140, 31106, 'it', 'name', 'Fondazione Cassa di Risparmio di Modena'),
(37141, 31107, 'en', 'name', 'Kids Kidney Research'),
(37142, 31108, 'en', 'name', 'British Interplanetary Society'),
(37143, 31109, 'da', 'name', 'Hjerteforeningen'),
(37144, 31110, 'en', 'name', 'Canadian Hemophilia Society'),
(37145, 31110, 'fr', 'name', 'SociƩtƩ Canadienne de l''HƩmophilie'),
(37146, 31111, 'en', 'name', 'Ivy Foundation'),
(37147, 31112, 'en', 'name', 'Institute for New Economic Thinking'),
(37148, 31113, 'en', 'name', 'Chartered Institute of Logistics and Transport'),
(37149, 31114, 'en', 'name', 'Arkansas Biosciences Institute'),
(37150, 31115, 'en', 'name', 'Kidney Foundation of Canada'),
(37151, 31115, 'fr', 'name', 'La Fondation Canadienne du Rein'),
(37152, 31116, 'en', 'name', 'Lee Foundation'),
(37153, 31117, 'en', 'name', 'British Pharmacological Society'),
(37154, 31118, 'sv', 'name', 'ƅke Wibergs Stiftelse'),
(37155, 31119, 'en', 'name', 'British Society of Animal Science'),
(37156, 31120, 'en', 'name', 'Society for Reproduction and Fertility'),
(37157, 31121, 'en', 'name', 'Associated Medical Services'),
(37158, 31122, 'sv', 'name', 'Jan Wallanders och Tom Hedelius stiftelse'),
(37159, 31123, 'en', 'name', 'Canadian Liver Foundation'),
(37160, 31123, 'fr', 'name', 'Fondation Canadienne du Foie'),
(37161, 31124, 'en', 'name', 'Daiwa Anglo-Japanese Foundation'),
(37162, 31125, 'en', 'name', 'Ovarian Cancer Action'),
(37163, 31126, 'en', 'name', 'Canadian Dermatology Foundation'),
(37164, 31127, 'en', 'name', 'Higher Education Funding Council for Wales'),
(37165, 31128, 'en', 'name', 'Orthopaedic Research'),
(37166, 31129, 'en', 'name', 'Multiple Sclerosis Trust'),
(37167, 31130, 'en', 'name', 'Australian Seafood Cooperative Research Center'),
(37168, 31131, 'en', 'name', 'National Arts Council of South Africa'),
(37169, 31132, 'da', 'name', 'Det Europæiske Miljøagentur'),
(37170, 31132, 'en', 'name', 'European Environment Agency'),
(37171, 31132, 'de', 'name', 'EuropƤische Umweltagentur'),
(37172, 31133, 'en', 'name', 'Human Resource Development Group'),
(37173, 31134, 'en', 'name', 'Building and Construction Authority'),
(37174, 31135, 'en', 'name', 'Ministry of Social and Family Development'),
(37175, 31135, 'zh', 'name', 'ę–°åŠ å”ē¤¾ä¼šåŠå®¶åŗ­å‘å±•éƒØ'),
(37176, 31136, 'en', 'name', 'Cancer Council Tasmania'),
(37177, 31137, 'en', 'name', 'Ministry of National Development'),
(37178, 31138, 'en', 'name', 'Tote Board'),
(37179, 31139, 'en', 'name', 'Royal Pharmaceutical Society'),
(37180, 31140, 'en', 'name', 'High Blood Pressure Research Council of Australia'),
(37181, 31141, 'en', 'name', 'Gastroenterological Society of Australia'),
(37182, 31142, 'en', 'name', 'Lowe Syndrome Trust'),
(37183, 31143, 'no_lang_code', 'name', 'GlaxoSmithKline (Australia)'),
(37184, 31144, 'en', 'name', 'Texas Space Grant Consortium'),
(37185, 31145, 'en', 'name', 'Wisconsin Sea Grant'),
(37186, 31146, 'en', 'name', 'Alaska Space Grant Program'),
(37187, 31147, 'en', 'name', 'Group of Eight'),
(37188, 31148, 'en', 'name', 'Georgia Sea Grant'),
(37189, 31149, 'en', 'name', 'Arkansas Space Grant Consortium'),
(37190, 31150, 'en', 'name', 'Alaska Sea Grant'),
(37191, 31151, 'en', 'name', 'Education New Zealand'),
(37192, 31152, 'en', 'name', 'Connecticut Space Grant Consortium'),
(37193, 31153, 'en', 'name', 'Washington Space Grant Consortium'),
(37194, 31154, 'en', 'name', 'Washington Sea Grant'),
(37195, 31155, 'en', 'name', 'Florida Space Grant Consortium'),
(37196, 31156, 'en', 'name', 'Minnesota Sea Grant'),
(37197, 31157, 'en', 'name', 'Menzies Foundation'),
(37198, 31158, 'en', 'name', 'Ohio Sea Grant College Program'),
(37199, 31159, 'en', 'name', 'Australia and New Zealand Banking Group'),
(37200, 31160, 'en', 'name', 'Texas Sea Grant College Program'),
(37201, 31161, 'en', 'name', 'Oregon Sea Grant'),
(37202, 31162, 'en', 'name', 'South African Thoracic Society'),
(37203, 31163, 'en', 'name', 'Department of Higher Education'),
(37204, 31164, 'en', 'name', 'Public Health Agency'),
(37205, 31165, 'en', 'name', 'State Library of New South Wales'),
(37206, 31166, 'en', 'name', 'Vision Australia'),
(37207, 31167, 'en', 'name', 'Lung Foundation Australia'),
(37208, 31168, 'en', 'name', 'Department of Chemicals and Petrochemicals'),
(37209, 31169, 'en', 'name', 'Transport Accident Commission'),
(37210, 31170, 'en', 'name', 'Recruitment and Assesment Centre'),
(37211, 31171, 'fr', 'name', 'Association canadienne des optomƩtristes'),
(37212, 31171, 'en', 'name', 'Canadian Association Of Optometrists'),
(37213, 31172, 'no_lang_code', 'name', 'Clothworkers Company (United Kingdom)'),
(37214, 31173, 'en', 'name', 'Wolfson Foundation'),
(37215, 31174, 'en', 'name', 'Kidney Health Australia'),
(37216, 31175, 'en', 'name', 'Stem Cells Australia'),
(37217, 31176, 'en', 'name', 'Beijing Academy of Food Sciences'),
(37218, 31176, 'zh', 'name', 'åŒ—äŗ¬é£Ÿå“ē§‘å­¦ē ”ē©¶é™¢'),
(37219, 31177, 'en', 'name', 'Arts and Culture Trust'),
(37220, 31178, 'en', 'name', 'Northern Territory Environment Protection Authority'),
(37221, 31179, 'en', 'name', 'Middle East Fertility Society'),
(37222, 31180, 'no_lang_code', 'name', 'Qatari Diar (Qatar)'),
(37223, 31181, 'no_lang_code', 'name', 'Chunghwa Telecom (Taiwan)'),
(37224, 31182, 'en', 'name', 'Ian Potter Foundation'),
(37225, 31183, 'fr', 'name', 'Conseil RƩgional du Languedoc-Roussillon'),
(37226, 31184, 'en', 'name', 'Egyptian Petroleum Research Institute'),
(37227, 31185, 'en', 'name', 'Australian Institute of Criminology'),
(37228, 31186, 'en', 'name', 'Housing and Building National Research Center'),
(37229, 31187, 'no_lang_code', 'name', 'EWE (Germany)'),
(37230, 31188, 'no_lang_code', 'name', 'China State Construction Engineering (China)'),
(37231, 31188, 'zh', 'name', 'äø­å›½å»ŗē­‘č„æå—č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(37232, 31189, 'en', 'name', 'Korea International Cooperation Agency'),
(37233, 31189, 'ko', 'name', 'ķ•œźµ­źµ­ģ œķ˜‘ė „ė‹Ø'),
(37234, 31190, 'en', 'name', 'Cambridge Commonwealth European and International Trust'),
(37235, 31191, 'no_lang_code', 'name', 'Doosan Heavy Industries & Construction (South Korea)'),
(37236, 31192, 'en', 'name', 'Carbon Management Canada'),
(37237, 31193, 'en', 'name', 'Korea Communications Commission'),
(37238, 31194, 'en', 'name', 'University of Southern California Sea Grant'),
(37239, 31195, 'en', 'name', 'Gongju National Hospital'),
(37240, 31195, 'ko', 'name', '국립공주병원'),
(37241, 31196, 'en', 'name', 'Nordic Joint Committee for Agricultural and Food Research'),
(37242, 31197, 'fr', 'name', 'Conseil rƩgional de Haute-Normandie'),
(37243, 31198, 'en', 'name', 'Social Security Information Service'),
(37244, 31199, 'en', 'name', 'Jenny and Antti Wihuri Foundation'),
(37245, 31199, 'fi', 'name', 'Jenny ja Antti Wihurin Rahasto'),
(37246, 31200, 'en', 'name', 'California Rice Research Board'),
(37247, 31201, 'en', 'name', 'North Carolina Sea Grant'),
(37248, 31202, 'en', 'name', 'Connecticut Sea Grant'),
(37249, 31203, 'en', 'name', 'National Health Insurance Service'),
(37250, 31204, 'en', 'name', 'National Institutes of Biotechnology Malaysia'),
(37251, 31205, 'en', 'name', 'Woods Hole Sea Grant'),
(37252, 31206, 'no_lang_code', 'name', 'HeyStaks Technologies (Ireland)'),
(37253, 31207, 'en', 'name', 'Alberta Children’s Hospital Foundation'),
(37254, 31208, 'no_lang_code', 'name', 'Japan Medi- Mental Institute'),
(37255, 31209, 'en', 'name', 'Korea Drug Development Fund'),
(37256, 31210, 'en', 'name', 'Welsh National College'),
(37257, 31211, 'en', 'name', 'Dutch Dairy Association'),
(37258, 31211, 'de', 'name', 'Nederlandse Zuivel Organisatie'),
(37259, 31212, 'en', 'name', 'Prime Minister''s Office'),
(37260, 31213, 'sv', 'name', 'Wilhelm & Martina Lundgrens Stiftelser'),
(37261, 31214, 'en', 'name', 'Ministry of Aliyah and Immigrant Absorption'),
(37262, 31214, 'fr', 'name', 'Ministère de l''Alya et de l''Intégration'),
(37263, 31215, 'en', 'name', 'Ministry of Foreign Affairs'),
(37264, 31215, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ 외교부'),
(37265, 31216, 'no_lang_code', 'name', 'Taiwan Semiconductor Manufacturing Company (Taiwan)'),
(37266, 31216, 'zh', 'name', 'å°ē£ē©é«”é›»č·Æč£½é€ å…¬åø'),
(37267, 31217, 'de', 'name', 'Thüringer Aufbaubank'),
(37268, 31218, 'en', 'name', 'Ministry of Security and Public Administration'),
(37269, 31219, 'en', 'name', 'Institute of Mountain Hazards and Environment'),
(37270, 31219, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę°“åˆ©éƒØęˆéƒ½å±±åœ°ē¾å®³äøŽēŽÆå¢ƒē ”ē©¶ę‰€'),
(37271, 31220, 'en', 'name', 'Ministry of Civil Affairs'),
(37272, 31220, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½ę°‘ę”æéƒØ'),
(37273, 31221, 'en', 'name', 'Secretariat of Environment and Natural Resources'),
(37274, 31221, 'es', 'name', 'SecretarĆ­a del Medio Ambiente y Recursos Naturales'),
(37275, 31222, 'en', 'name', 'Cultural Heritage Administration'),
(37276, 31222, 'ko', 'name', 'ė¬øķ™”ģž¬ģ²­'),
(37277, 31223, 'it', 'name', 'Fondazione Monte di Bologna and Ravenna'),
(37278, 31224, 'no_lang_code', 'name', 'Daewoong Pharmaceutical (South Korea)'),
(37279, 31224, 'ko', 'name', 'ėŒ€ģ›…ģ œģ•½'),
(37280, 31225, 'en', 'name', 'German National Academic Foundation'),
(37281, 31225, 'de', 'name', 'Studienstiftung des deutschen Volkes'),
(37282, 31226, 'fi', 'name', 'Emil Aaltosen SƤƤtiƶ'),
(37283, 31227, 'en', 'name', 'Ministry of Agriculture and Agro Based Industry'),
(37284, 31228, 'en', 'name', 'Swedish Municipal Workers'' Union'),
(37285, 31229, 'en', 'name', 'Ministry of Education and Science of Perm Region'),
(37286, 31230, 'en', 'name', 'Indian National Centre for Ocean Information Services'),
(37287, 31231, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Switzerland)'),
(37288, 31232, 'fr', 'name', 'Conseil RƩgional d''Auvergne'),
(37289, 31233, 'en', 'name', 'Applied Scientific Research Fund'),
(37290, 31234, 'en', 'name', 'Assar Gabrielsson Foundation'),
(37291, 31234, 'sv', 'name', 'Stiftelsen Assar Gabrielssons Fond'),
(37292, 31235, 'en', 'name', 'Belgian Development Agency'),
(37293, 31236, 'no_lang_code', 'name', 'China Southern Power Grid (China)'),
(37294, 31237, 'en', 'name', 'University System of Taiwan'),
(37295, 31238, 'en', 'name', 'Southern and Eastern Norway Regional Health Authority'),
(37296, 31239, 'en', 'name', 'Foundation for Research Support of the Federal District'),
(37297, 31240, 'en', 'name', 'Commission for Scientific Investigations in Greenland'),
(37298, 31240, 'da', 'name', 'Kommissionen for Videnskabelige UndersĆøgelser i GrĆønland'),
(37299, 31241, 'en', 'name', 'European Foundation for Alcohol Research'),
(37300, 31242, 'en', 'name', 'Gout Research Foundation'),
(37301, 31243, 'en', 'name', 'Pan African Urological Surgeons Association'),
(37302, 31244, 'en', 'name', 'Keelung Chang Gung Memorial Hospital'),
(37303, 31245, 'en', 'name', 'Taoyuan Chang Gung Memorial Hospital'),
(37304, 31246, 'no_lang_code', 'name', 'Skyonic (United States)'),
(37305, 31247, 'no_lang_code', 'name', 'SCS Energy (United States)'),
(37306, 31248, 'no_lang_code', 'name', 'Solidia Technologies (United States)'),
(37307, 31249, 'en', 'name', 'Naval Research Board'),
(37308, 31249, 'hi', 'name', 'ą¤Øą„Œą¤øą„‡ą¤Øą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤¬ą„‹ą¤°ą„ą¤”'),
(37309, 31250, 'en', 'name', 'Institute of Archaeology'),
(37310, 31251, 'no_lang_code', 'name', '8 Rivers Capital (United States)'),
(37311, 31252, 'en', 'name', 'Southern Research Institute'),
(37312, 31253, 'no_lang_code', 'name', 'Advanced Resources International (United States)'),
(37313, 31254, 'en', 'name', 'Institute of Croatian Language and Linguistics'),
(37314, 31255, 'en', 'name', 'Institute of Art History'),
(37315, 31256, 'no_lang_code', 'name', 'Summit Power Group (United States)'),
(37316, 31257, 'no_lang_code', 'name', 'Air Products (United States)'),
(37317, 31258, 'en', 'name', 'Institute for Development and International Relations'),
(37318, 31259, 'no_lang_code', 'name', 'Thar Energy (United States)'),
(37319, 31260, 'de', 'name', 'Berufbildungsschule Winterthur'),
(37320, 31261, 'en', 'name', 'Israel Institute for Advanced Studies'),
(37321, 31262, 'en', 'name', 'Bosque School'),
(37322, 31263, 'no_lang_code', 'name', 'Altex Technologies Corporation (United States)'),
(37323, 31264, 'de', 'name', 'Fachhochschule Stralsund'),
(37324, 31264, 'en', 'name', 'University of Applied Sciences Stralsund'),
(37325, 31265, 'no_lang_code', 'name', 'Archer Daniels Midland (United States)'),
(37326, 31266, 'en', 'name', 'Triangle Research and Development Center'),
(37327, 31267, 'no_lang_code', 'name', 'Yad Ben Zvi'),
(37328, 31268, 'no_lang_code', 'name', 'Cellworks Research (India)'),
(37329, 31269, 'no_lang_code', 'name', 'Brayton Energy (United States)'),
(37330, 31270, 'en', 'name', 'Centre of Plasma Physics - Institute for Plasma Research'),
(37331, 31270, 'hi', 'name', 'ą¤Ŗą„ą¤²ą¤¾ą¤œą„ą¤®ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(37332, 31270, 'ta', 'name', 'பிளாசுமா ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(37333, 31271, 'en', 'name', 'Edison Welding Institute'),
(37334, 31272, 'pt', 'name', 'Centro de Educação Profissional em Tecnologia da Informação de Petrópolis'),
(37335, 31273, 'de', 'name', 'Fernfachhochschule Schweiz'),
(37336, 31273, 'en', 'name', 'Swiss Distance University of Applied Sciences'),
(37337, 31274, 'en', 'name', 'Fusion Academy'),
(37338, 31275, 'en', 'name', 'Georg Simon Ohm University of Applied Sciences Nuremberg'),
(37339, 31275, 'de', 'name', 'Technische Hochschule Nürnberg Georg Simon Ohm'),
(37340, 31276, 'no_lang_code', 'name', 'Florida Turbine Technologies (United States)'),
(37341, 31277, 'en', 'name', 'Germantown Academy'),
(37342, 31278, 'no_lang_code', 'name', 'Multi-Phase Technologies (United States)'),
(37343, 31279, 'no_lang_code', 'name', 'FuelCell Energy (United States)'),
(37344, 31280, 'no_lang_code', 'name', 'Sigma³ (United States)'),
(37345, 31281, 'no_lang_code', 'name', 'Paulsson (United States)'),
(37346, 31282, 'fr', 'name', 'Haute Ɖcole de Bruxelles'),
(37347, 31283, 'no_lang_code', 'name', 'GeoMechanics Technologies (United States)'),
(37348, 31284, 'en', 'name', 'College of the Albemarle'),
(37349, 31285, 'pt', 'name', 'Universidade Sociedade Educacional de Santa Catarina'),
(37350, 31286, 'en', 'name', 'Energy Industries of Ohio'),
(37351, 31287, 'no_lang_code', 'name', 'QuesTek (United States)'),
(37352, 31288, 'en', 'name', 'Institute of Molecular Science and Technologies'),
(37353, 31288, 'it', 'name', 'Istituto di Scienze e Tecnologie Molecolari'),
(37354, 31289, 'no_lang_code', 'name', 'Geostock (United States)'),
(37355, 31290, 'no_lang_code', 'name', 'HiFunda (United States)'),
(37356, 31291, 'en', 'name', 'DigiPen Institute of Technology'),
(37357, 31292, 'de', 'name', 'Hermann Staudinger Gymnasium'),
(37358, 31293, 'en', 'name', 'MiraCosta College'),
(37359, 31294, 'en', 'name', 'Maharaj Vijayaram Gajapathi Raj College of Engineering'),
(37360, 31295, 'fr', 'name', 'ECAM Institut SupƩrieur Industriel'),
(37361, 31296, 'en', 'name', 'Riga High Tech University'),
(37362, 31297, 'en', 'name', 'National Chin-Yi University of Technology'),
(37363, 31298, 'fr', 'name', 'IngƩsup'),
(37364, 31299, 'en', 'name', 'Santa Rosa Junior College'),
(37365, 31300, 'en', 'name', 'New Economic School'),
(37366, 31300, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń школа'),
(37367, 31301, 'en', 'name', 'Institute for System Programming'),
(37368, 31301, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ системного ŠæŃ€Š¾Š³Ń€Š°Š¼Š¼ŠøŃ€Š¾Š²Š°Š½ŠøŃ'),
(37369, 31302, 'de', 'name', 'Hochschule Ruhr West'),
(37370, 31302, 'en', 'name', 'Ruhr West University of Applied Sciences'),
(37371, 31303, 'en', 'name', 'Skolkovo Institute of Science and Technology'),
(37372, 31303, 'ru', 'name', 'Дколковский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ науки Šø технологий'),
(37373, 31304, 'en', 'name', 'Manchester Grammar School'),
(37374, 31305, 'en', 'name', 'Institute of Aeronautics and Space'),
(37375, 31305, 'pt', 'name', 'Instituto de AeronƔutica e EspaƧo'),
(37376, 31306, 'no_lang_code', 'name', 'Advanced Emissions Solutions (United States)'),
(37377, 31307, 'en', 'name', 'Bern University of Teacher Education'),
(37378, 31307, 'de', 'name', 'PƤdagogische Hochschule Bern'),
(37379, 31308, 'en', 'name', 'Sextures Institute'),
(37380, 31309, 'es', 'name', 'Universidad AeronƔutica en QuerƩtaro'),
(37381, 31310, 'es', 'name', 'Academia de la Marina Mercante de los Estados Unidos'),
(37382, 31310, 'fr', 'name', 'AcadĆ©mie de la marine marchande des Ɖtats-unis'),
(37383, 31310, 'en', 'name', 'United States Merchant Marine Academy'),
(37384, 31311, 'pt', 'name', 'Instituto Federal de Educação Ciência e Tecnologia do Norte de Minas Gerais'),
(37385, 31312, 'pt', 'name', 'Instituto Infnet'),
(37386, 31313, 'es', 'name', 'Instituto Tecnológico de Soledad AtlÔntico'),
(37387, 31314, 'en', 'name', 'Kansas Public Schools'),
(37388, 31315, 'en', 'name', 'Maine School of Science and Mathematics'),
(37389, 31316, 'en', 'name', 'Malden Public Schools'),
(37390, 31317, 'no_lang_code', 'name', 'Uganda Clays (Uganda)'),
(37391, 31318, 'en', 'name', 'NIHR Leicester Respiratory Biomedical Research Unit'),
(37392, 31319, 'en', 'name', 'Access Technologies'),
(37393, 31320, 'no_lang_code', 'name', 'Academic Software (United States)'),
(37394, 31321, 'en', 'name', 'Arc of the United States'),
(37395, 31322, 'en', 'name', 'Access Technologies Group');
INSERT INTO `ror_settings` VALUES
(37396, 31323, 'en', 'name', 'Assistive Technology Resource Centers of Hawaii'),
(37397, 31324, 'no_lang_code', 'name', 'Metalite Industries (United States)'),
(37398, 31325, 'en', 'name', 'Institute for Human Centered Design'),
(37399, 31326, 'en', 'name', 'Devereux'),
(37400, 31327, 'en', 'name', 'Hillside Rehabilitation Hospital'),
(37401, 31328, 'en', 'name', 'Chicago House and Social Service Agency'),
(37402, 31329, 'no_lang_code', 'name', 'Automatic Sync Technologies (United States)'),
(37403, 31330, 'no_lang_code', 'name', 'AventuSoft (United States)'),
(37404, 31331, 'en', 'name', 'Alabama Department of Rehabilitation Services'),
(37405, 31332, 'en', 'name', 'Illinois Assistive Technology Program'),
(37406, 31333, 'en', 'name', 'Henry Viscardi School'),
(37407, 31334, 'en', 'name', 'Clarke Schools for Hearing and Speech'),
(37408, 31335, 'en', 'name', 'Alaska Department of Labor and Workforce Development'),
(37409, 31336, 'en', 'name', 'Easterseals'),
(37410, 31337, 'en', 'name', 'Minerva Brooks Memorial Library'),
(37411, 31338, 'no_lang_code', 'name', 'Community Options (United States)'),
(37412, 31339, 'en', 'name', 'American Foundation for the Blind'),
(37413, 31340, 'no_lang_code', 'name', 'EM Photonics (United States)'),
(37414, 31341, 'en', 'name', 'Institute for Learning and Development'),
(37415, 31342, 'en', 'name', 'Community Services for Autistic Adults and Children'),
(37416, 31343, 'en', 'name', 'American Printing House for the Blind'),
(37417, 31344, 'no_lang_code', 'name', 'Dental Rat (United States)'),
(37418, 31345, 'en', 'name', 'ENDependence Center of Northern Virginia'),
(37419, 31346, 'en', 'name', 'Connecticut Department of Social Services'),
(37420, 31347, 'no_lang_code', 'name', 'Anholt Technologies (United States)'),
(37421, 31348, 'no_lang_code', 'name', 'Engineering Associates (United States)'),
(37422, 31349, 'no_lang_code', 'name', 'Control Systems Research (United States)'),
(37423, 31350, 'no_lang_code', 'name', 'TeachTown (United States)'),
(37424, 31351, 'no_lang_code', 'name', 'Enhanced Vision (United States)'),
(37425, 31352, 'en', 'name', 'California Foundation for Independent Living Centers'),
(37426, 31353, 'en', 'name', 'Integrated Behavioral Technologies'),
(37427, 31354, 'en', 'name', 'Carroll Center for the Blind'),
(37428, 31355, 'no_lang_code', 'name', 'CreateAbility Concepts (United States)'),
(37429, 31356, 'en', 'name', 'Eugene Research Institute'),
(37430, 31357, 'no_lang_code', 'name', 'Criterion Health (United States)'),
(37431, 31358, 'en', 'name', 'Psychiatric Rehabilitation Association'),
(37432, 31359, 'no_lang_code', 'name', 'Dane Technologies (United States)'),
(37433, 31360, 'no_lang_code', 'name', 'Custom Technology (United States)'),
(37434, 31361, 'en', 'name', 'Center for International Rehabilitation'),
(37435, 31362, 'no_lang_code', 'name', 'CYBER Learning Corporation (United States)'),
(37436, 31363, 'no_lang_code', 'name', 'InternetSpeech (United States)'),
(37437, 31364, 'no_lang_code', 'name', 'DakotaLink (United States)'),
(37438, 31365, 'en', 'name', 'Arkansas Department of Career Education'),
(37439, 31366, 'no_lang_code', 'name', 'Dancing Dots (United States)'),
(37440, 31367, 'en', 'name', 'Iowa Department for the Blind'),
(37441, 31368, 'no_lang_code', 'name', 'Flint Rehabilitation Devices (United States)'),
(37442, 31369, 'en', 'name', 'South Carolina Vocational Rehabilitation Department'),
(37443, 31370, 'en', 'name', 'Iowa Finance Authority'),
(37444, 31371, 'es', 'name', 'Departamento de Educación de la Florida'),
(37445, 31371, 'en', 'name', 'Florida Department of Education'),
(37446, 31372, 'no_lang_code', 'name', 'Data Harbor (United States)'),
(37447, 31373, 'en', 'name', 'JEVS Human Services'),
(37448, 31374, 'en', 'name', 'Maryland Department of Disabilities'),
(37449, 31375, 'en', 'name', 'Nevada Department of Employment Training and Rehabilitation'),
(37450, 31376, 'en', 'name', 'Commission on Rehabilitation Counselor Certification'),
(37451, 31377, 'en', 'name', 'Kentucky Assistive Technology Services Network'),
(37452, 31378, 'en', 'name', 'American Foundation for Children with AIDS'),
(37453, 31379, 'en', 'name', 'CESSI'),
(37454, 31380, 'en', 'name', 'Kentucky Office of Vocational Rehabilitation'),
(37455, 31381, 'no_lang_code', 'name', 'Marucco Stoddard Ferenbach and Walsh (United States)'),
(37456, 31382, 'no_lang_code', 'name', 'Learnimation (United States)'),
(37457, 31383, 'no_lang_code', 'name', 'Charmtech Labs (United States)'),
(37458, 31384, 'en', 'name', 'Alliance for Technology Access'),
(37459, 31385, 'no_lang_code', 'name', 'PR & Company (United States)'),
(37460, 31386, 'en', 'name', 'Lee County Board of Commissioners'),
(37461, 31387, 'no_lang_code', 'name', 'Liberating Technologies (United States)'),
(37462, 31388, 'en', 'name', 'Parent Information Center'),
(37463, 31389, 'en', 'name', 'Viscardi Center'),
(37464, 31390, 'en', 'name', 'Peak Parent Center'),
(37465, 31391, 'no_lang_code', 'name', 'Futures in Rehabilitation Management (United States)'),
(37466, 31392, 'en', 'name', 'Georgia Department of Labor'),
(37467, 31393, 'no_lang_code', 'name', 'LINC Design (United States)'),
(37468, 31394, 'en', 'name', 'National League of Cities'),
(37469, 31395, 'no_lang_code', 'name', 'Good Nutrition Ideas (United States)'),
(37470, 31396, 'no_lang_code', 'name', 'Amtrak (United States)'),
(37471, 31397, 'en', 'name', 'Positive Behavioral Solutions'),
(37472, 31398, 'no_lang_code', 'name', 'PresenceLearning (United States)'),
(37473, 31399, 'en', 'name', 'Minnesota Department of Administration'),
(37474, 31400, 'en', 'name', 'Maine CITE Coordinating Center'),
(37475, 31401, 'en', 'name', 'RAF Models & Displays'),
(37476, 31402, 'no_lang_code', 'name', 'Ready Set Sign (United States)'),
(37477, 31403, 'en', 'name', 'National Disability Institute'),
(37478, 31404, 'no_lang_code', 'name', 'EyeTalk Systems (United States)'),
(37479, 31405, 'en', 'name', 'Lourie Center for Children''s Social & Emotional Wellness'),
(37480, 31406, 'en', 'name', 'Massachusetts Rehabilitation Commission'),
(37481, 31407, 'en', 'name', 'Neighborhood Legal Services'),
(37482, 31408, 'en', 'name', 'Matheny Hospital'),
(37483, 31409, 'no_lang_code', 'name', 'Numotion (United States)'),
(37484, 31410, 'no_lang_code', 'name', 'New Editions Consulting (United States)'),
(37485, 31411, 'no_lang_code', 'name', 'Med Graph (United States)'),
(37486, 31412, 'es', 'name', 'Departamento de Educación Pública de Nuevo México'),
(37487, 31412, 'en', 'name', 'New Mexico Public Education Department'),
(37488, 31413, 'no_lang_code', 'name', 'Technical Resource Group (United States)'),
(37489, 31414, 'no_lang_code', 'name', 'Research Solutions International (United States)'),
(37490, 31415, 'no_lang_code', 'name', 'Seamless Solutions (United States)'),
(37491, 31416, 'no_lang_code', 'name', 'Nian-Crae (United States)'),
(37492, 31417, 'no_lang_code', 'name', 'Meeting the Challenge (United States)'),
(37493, 31418, 'en', 'name', 'Rhode Island Department of Human Services'),
(37494, 31419, 'en', 'name', 'Michigan Disability Rights Coalition'),
(37495, 31420, 'no_lang_code', 'name', 'Rehab Ideas (United States)'),
(37496, 31421, 'en', 'name', 'SEE Center'),
(37497, 31422, 'en', 'name', 'Mississippi Department of Rehabilitation Services'),
(37498, 31423, 'no_lang_code', 'name', 'Sendero Group (United States)'),
(37499, 31424, 'no_lang_code', 'name', 'Sandbox Learning (United States)'),
(37500, 31425, 'en', 'name', 'Sensory Access Foundation'),
(37501, 31426, 'no_lang_code', 'name', 'Synfonica (United States)'),
(37502, 31427, 'en', 'name', 'Missouri Department of Labor and Industrial Relations'),
(37503, 31428, 'en', 'name', 'TransCen'),
(37504, 31429, 'en', 'name', 'University Legal Services'),
(37505, 31430, 'en', 'name', 'Oklahoma Department of Rehabilitation Services'),
(37506, 31431, 'en', 'name', 'SKIP of New York'),
(37507, 31432, 'no_lang_code', 'name', 'OmegaWare (United States)'),
(37508, 31433, 'en', 'name', 'Tennessee Department of Human Services'),
(37509, 31434, 'no_lang_code', 'name', 'SoarTech (United States)'),
(37510, 31435, 'no_lang_code', 'name', 'Prevention Group'),
(37511, 31436, 'no_lang_code', 'name', 'Opus Technologies (United States)'),
(37512, 31437, 'en', 'name', 'Lexington School for the Deaf'),
(37513, 31438, 'en', 'name', 'Western Pennsylvania School for Blind Children'),
(37514, 31439, 'no_lang_code', 'name', 'Veritune (United States)'),
(37515, 31440, 'en', 'name', 'Vermont Center for Independent Living'),
(37516, 31441, 'en', 'name', 'Abraham Baldwin Agricultural College'),
(37517, 31442, 'no_lang_code', 'name', 'Wizdom Systems (United States)'),
(37518, 31443, 'en', 'name', 'World Institute on Disability'),
(37519, 31444, 'no_lang_code', 'name', 'Spirit Lake Consulting (United States)'),
(37520, 31445, 'en', 'name', 'Vermont Department of Disabilities Aging and Independent Living'),
(37521, 31446, 'en', 'name', 'Alaska Bible College'),
(37522, 31447, 'en', 'name', 'Virginia Department for Aging and Rehabilitative Services'),
(37523, 31448, 'es', 'name', 'Comisión para la Igualdad de Oportunidades en el Empleo de los Estados Unidos'),
(37524, 31448, 'en', 'name', 'United States Equal Employment Opportunity Commission'),
(37525, 31449, 'en', 'name', 'American Academy of Art'),
(37526, 31450, 'en', 'name', 'Centenary College of New Jersey'),
(37527, 31451, 'en', 'name', 'Davis College - New York'),
(37528, 31452, 'en', 'name', 'Lake Forest Graduate School of Management'),
(37529, 31453, 'en', 'name', 'Dean College'),
(37530, 31454, 'en', 'name', 'Digital Media Arts College'),
(37531, 31455, 'en', 'name', 'Lancaster Bible College'),
(37532, 31456, 'en', 'name', 'College for Creative Studies'),
(37533, 31457, 'en', 'name', 'Emmaus Bible College'),
(37534, 31458, 'en', 'name', 'Washington State Department of Commerce'),
(37535, 31459, 'en', 'name', 'Central Christian College of Kansas'),
(37536, 31460, 'en', 'name', 'Central Christian College of the Bible'),
(37537, 31461, 'no_lang_code', 'name', 'KWI Group (United States)'),
(37538, 31462, 'en', 'name', 'Washington Employment Security Department'),
(37539, 31463, 'en', 'name', 'Life Pacific College'),
(37540, 31464, 'en', 'name', 'Central Penn College'),
(37541, 31465, 'en', 'name', 'Limestone College'),
(37542, 31466, 'en', 'name', 'Century University'),
(37543, 31467, 'en', 'name', 'Florida College'),
(37544, 31468, 'en', 'name', 'Florida Southern College'),
(37545, 31468, 'es', 'name', 'Universidad de Florida del Sur'),
(37546, 31469, 'en', 'name', 'Chadwick University'),
(37547, 31470, 'en', 'name', 'Forest Institute'),
(37548, 31471, 'en', 'name', 'Welch College'),
(37549, 31472, 'en', 'name', 'American University for Humanities'),
(37550, 31473, 'en', 'name', 'New Saint Andrews College'),
(37551, 31474, 'en', 'name', 'Golden State Baptist College'),
(37552, 31475, 'en', 'name', 'Charter Oak State College'),
(37553, 31476, 'en', 'name', 'Goldey–Beacom College'),
(37554, 31477, 'en', 'name', 'New York Academy of Art'),
(37555, 31478, 'en', 'name', 'Appalachian School of Law'),
(37556, 31479, 'en', 'name', 'Christendom College'),
(37557, 31480, 'es', 'name', 'Escuela de Cine de Nueva York'),
(37558, 31480, 'en', 'name', 'New York Film Academy'),
(37559, 31481, 'en', 'name', 'Arlington Baptist College'),
(37560, 31482, 'en', 'name', 'Granite State College'),
(37561, 31483, 'en', 'name', 'Maine College of Art'),
(37562, 31484, 'en', 'name', 'Globe Institute of Technology'),
(37563, 31485, 'en', 'name', 'Baker College'),
(37564, 31486, 'en', 'name', 'Greenleaf University'),
(37565, 31487, 'en', 'name', 'Christian Bible College and Seminary'),
(37566, 31488, 'fr', 'name', 'FacultĆ© d''arts de l''universitĆ© d''Ɖtat de caroline du nord'),
(37567, 31488, 'en', 'name', 'University of North Carolina School of the Arts'),
(37568, 31489, 'en', 'name', 'Summit University'),
(37569, 31490, 'en', 'name', 'Gutenberg College'),
(37570, 31491, 'en', 'name', 'Barclay College'),
(37571, 31492, 'en', 'name', 'City University of Seattle'),
(37572, 31493, 'en', 'name', 'Clark College'),
(37573, 31494, 'en', 'name', 'Northwest College of Art & Design'),
(37574, 31495, 'en', 'name', 'University of Atlanta'),
(37575, 31496, 'en', 'name', 'McPherson College'),
(37576, 31497, 'en', 'name', 'Nyack College'),
(37577, 31498, 'en', 'name', 'Clayton College of Natural Health'),
(37578, 31499, 'en', 'name', 'Medaille College'),
(37579, 31500, 'en', 'name', 'Henry Cogswell College'),
(37580, 31501, 'en', 'name', 'Mount Washington College'),
(37581, 31502, 'en', 'name', 'Clear Creek Baptist Bible College'),
(37582, 31503, 'en', 'name', 'Mercy College of Health Sciences'),
(37583, 31504, 'en', 'name', 'Hesston College'),
(37584, 31505, 'en', 'name', 'Olivet College'),
(37585, 31506, 'en', 'name', 'Clearwater Christian College'),
(37586, 31507, 'en', 'name', 'Hilbert College'),
(37587, 31508, 'en', 'name', 'Metropolitan College of New York'),
(37588, 31509, 'en', 'name', 'Bethany Lutheran College'),
(37589, 31510, 'en', 'name', 'Pacific College of Oriental Medicine'),
(37590, 31511, 'en', 'name', 'Michigan Jewish Institute'),
(37591, 31512, 'en', 'name', 'Blue Mountain College'),
(37592, 31513, 'en', 'name', 'Cleveland Institute of Art'),
(37593, 31514, 'en', 'name', 'Pacific Northwest College of Art'),
(37594, 31515, 'en', 'name', 'Midwestern Baptist College'),
(37595, 31516, 'en', 'name', 'Bluefield College'),
(37596, 31517, 'en', 'name', 'Pacific Oaks College'),
(37597, 31518, 'en', 'name', 'Hult International Business School'),
(37598, 31519, 'en', 'name', 'Cleveland Institute of Music'),
(37599, 31520, 'en', 'name', 'Bluefield State College'),
(37600, 31521, 'en', 'name', 'Patrick Henry College'),
(37601, 31522, 'en', 'name', 'Boston Conservatory'),
(37602, 31522, 'fr', 'name', 'Conservatoire de boston'),
(37603, 31523, 'en', 'name', 'Cogswell Polytechnical College'),
(37604, 31524, 'en', 'name', 'Pensacola Christian College'),
(37605, 31525, 'en', 'name', 'Brewton-Parker College'),
(37606, 31526, 'en', 'name', 'Institute for Christian Works'),
(37607, 31527, 'en', 'name', 'Mitchell College'),
(37608, 31528, 'en', 'name', 'Brooks Institute'),
(37609, 31529, 'en', 'name', 'Monroe College'),
(37610, 31530, 'en', 'name', 'Pine Manor College'),
(37611, 31531, 'en', 'name', 'Monterey College of Law'),
(37612, 31532, 'en', 'name', 'Mount Aloysius College'),
(37613, 31533, 'en', 'name', 'Cabarrus College of Health Sciences'),
(37614, 31534, 'en', 'name', 'Rasmussen College'),
(37615, 31535, 'en', 'name', 'California Institute for Human Science'),
(37616, 31536, 'en', 'name', 'Remington College'),
(37617, 31537, 'en', 'name', 'Mt. Sierra College'),
(37618, 31538, 'en', 'name', 'Cambridge College'),
(37619, 31539, 'en', 'name', 'Nazarene Bible College'),
(37620, 31540, 'en', 'name', 'Saint Anthony College of Nursing'),
(37621, 31541, 'en', 'name', 'New Brunswick Theological Seminary'),
(37622, 31542, 'en', 'name', 'New England Institute of Technology'),
(37623, 31543, 'en', 'name', 'New England Law'),
(37624, 31544, 'en', 'name', 'Irvine University'),
(37625, 31545, 'en', 'name', 'Corcoran College of Art and Design'),
(37626, 31546, 'en', 'name', 'St. Louis Christian College'),
(37627, 31547, 'en', 'name', 'Tabor College'),
(37628, 31548, 'en', 'name', 'School of the Museum of Fine Arts'),
(37629, 31549, 'en', 'name', 'Cornish College of the Arts'),
(37630, 31550, 'en', 'name', 'School of Visual Arts'),
(37631, 31551, 'en', 'name', 'Texas Chiropractic College'),
(37632, 31552, 'en', 'name', 'Jones College'),
(37633, 31553, 'en', 'name', 'Kansas City Art Institute'),
(37634, 31554, 'en', 'name', 'Shasta Bible College and Graduate School'),
(37635, 31555, 'en', 'name', 'Crown College'),
(37636, 31556, 'en', 'name', 'New York Institute of Art and Design'),
(37637, 31557, 'en', 'name', 'Baptist College of Florida'),
(37638, 31558, 'en', 'name', 'San Francisco Art Institute'),
(37639, 31559, 'en', 'name', 'Sherman College of Chiropractic'),
(37640, 31560, 'en', 'name', 'Sierra Nevada College'),
(37641, 31561, 'en', 'name', 'Trinity College of Florida'),
(37642, 31562, 'en', 'name', 'Smith Chapel Bible University'),
(37643, 31563, 'en', 'name', 'San Joaquin College of Law'),
(37644, 31564, 'en', 'name', 'College of Metaphysical Studies'),
(37645, 31565, 'es', 'name', 'Academia de la Guardia Costera de Estados Unidos'),
(37646, 31565, 'en', 'name', 'United States Coast Guard Academy'),
(37647, 31566, 'en', 'name', 'South Texas College of Law'),
(37648, 31567, 'en', 'name', 'SIT Graduate Institute'),
(37649, 31568, 'en', 'name', 'Southeastern Bible College'),
(37650, 31569, 'en', 'name', 'United States Sports Academy'),
(37651, 31570, 'en', 'name', 'Master''s College'),
(37652, 31571, 'en', 'name', 'University of Natural Medicine'),
(37653, 31572, 'en', 'name', 'National Graduate School of Quality Management'),
(37654, 31573, 'en', 'name', 'Southwest Bible College and Seminary'),
(37655, 31574, 'no_lang_code', 'name', 'Advanced Biomass R&D Center (South Korea)'),
(37656, 31575, 'en', 'name', 'Stefan University'),
(37657, 31576, 'en', 'name', 'Spartanburg Methodist College'),
(37658, 31577, 'en', 'name', 'Sarasota University'),
(37659, 31578, 'en', 'name', 'Vanguard University'),
(37660, 31579, 'en', 'name', 'Waldorf College'),
(37661, 31580, 'en', 'name', 'Warner Pacific College'),
(37662, 31581, 'en', 'name', 'Watkins College of Art Design and Film'),
(37663, 31582, 'en', 'name', 'Thomas College'),
(37664, 31583, 'en', 'name', 'Western Michigan University Cooley Law School'),
(37665, 31584, 'en', 'name', 'Toccoa Falls College'),
(37666, 31585, 'en', 'name', 'Trinity Baptist College'),
(37667, 31586, 'en', 'name', 'Westminster Seminary California'),
(37668, 31587, 'en', 'name', 'Climate and Energy Fund'),
(37669, 31587, 'de', 'name', 'Klima und Energiefonds'),
(37670, 31588, 'en', 'name', 'Central Armed Police Forces'),
(37671, 31589, 'en', 'name', 'State Committee of Science'),
(37672, 31589, 'hy', 'name', 'Ō³Õ«ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ ÕÆÕøÕ“Õ«ÕæÕ„'),
(37673, 31590, 'en', 'name', 'China Ocean Mineral Resource R&D Association'),
(37674, 31591, 'en', 'name', 'New World School of the Arts'),
(37675, 31592, 'en', 'name', 'Sichuan Provincial Department of Education'),
(37676, 31593, 'en', 'name', 'Southern Technical College'),
(37677, 31594, 'en', 'name', 'Chongqing Municipality Education Commission'),
(37678, 31595, 'en', 'name', 'Stevens–Henager College'),
(37679, 31596, 'en', 'name', 'Calcutta State Transport Corporation'),
(37680, 31597, 'es', 'name', 'Comisión Interministerial de Ciencia y Tecnología'),
(37681, 31598, 'no_lang_code', 'name', 'ITER China'),
(37682, 31599, 'en', 'name', 'Centre of the Region HanĆ” for Biotechnical and Agricultural Research'),
(37683, 31600, 'en', 'name', 'Civil Aviation Administration of China'),
(37684, 31600, 'zh', 'name', 'äø­å›½ę°‘ē”ØčˆŖē©ŗå±€'),
(37685, 31601, 'es', 'name', 'Programa Iberoamericano de Ciencia y TecnologĆ­a para el Desarrollo'),
(37686, 31602, 'en', 'name', 'Commission on Higher Education'),
(37687, 31603, 'pt', 'name', 'Fundação de Amparo à Ciência e Tecnologia de Pernambuco'),
(37688, 31604, 'en', 'name', 'South Bohemia research center of aquaculture and biodiversity of hydrocenoses'),
(37689, 31605, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado da Bahia'),
(37690, 31606, 'en', 'name', 'Foreign Investment Review Board'),
(37691, 31607, 'pt', 'name', 'Fundação de Apoio ao Desenvolvimento do Ensino, Ciência e Tecnologia do Estado de Mato Grosso do Sul'),
(37692, 31608, 'en', 'name', 'Foundational Questions Institute'),
(37693, 31609, 'en', 'name', 'Department of Health'),
(37694, 31610, 'en', 'name', 'Government of Malaysia'),
(37695, 31610, 'ms', 'name', 'Kerajaan Persekutuan Malaysia'),
(37696, 31611, 'pt', 'name', 'Financiadora de Estudos e Projetos'),
(37697, 31611, 'en', 'name', 'Funding Authority for Studies and Projects'),
(37698, 31612, 'en', 'name', 'Government of Russia'),
(37699, 31612, 'ru', 'name', 'ŠŸŃ€Š°Š²ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š¾ Российской ФеГерации'),
(37700, 31613, 'en', 'name', 'Environment Research and Technology Development Fund'),
(37701, 31614, 'es', 'name', 'Fondo Nacional de Ciencia Tecnología e Innovación'),
(37702, 31615, 'no_lang_code', 'name', 'Texila American University'),
(37703, 31616, 'en', 'name', 'Danish Working Environment Authority'),
(37704, 31617, 'en', 'name', 'Ministry of Health'),
(37705, 31618, 'en', 'name', 'Fuel Cells and Hydrogen'),
(37706, 31619, 'en', 'name', 'Integrative Neuroscience Initiative on Alcoholism'),
(37707, 31620, 'en', 'name', 'Hefei Institutes of Physical Science'),
(37708, 31620, 'zh', 'name', 'åˆč‚„ē‰©č“Øē§‘å­¦ē ”ē©¶é™¢'),
(37709, 31621, 'en', 'name', 'Heilongjiang Postdoctoral Fund'),
(37710, 31622, 'en', 'name', 'Japan Science Society'),
(37711, 31623, 'en', 'name', 'Korea Institute of Energy Technology Evaluation and Planning'),
(37712, 31624, 'en', 'name', 'State Studies Foundation'),
(37713, 31625, 'en', 'name', 'Environmental Protection Department of Jiangsu Province'),
(37714, 31626, 'en', 'name', 'Zhejiang Institute of Science and Technology Information'),
(37715, 31627, 'en', 'name', 'China Association for Science and Technology'),
(37716, 31628, 'en', 'name', 'Health Resources and Services Administration'),
(37717, 31629, 'en', 'name', 'Planetary Data System'),
(37718, 31630, 'en', 'name', 'National Pork Board'),
(37719, 31631, 'en', 'name', 'National Space Biomedical Research Institute'),
(37720, 31632, 'en', 'name', 'National Research Foundation'),
(37721, 31633, 'pt', 'name', 'Quadro de Referência Estratégico Nacional'),
(37722, 31634, 'es', 'name', 'Red de Investigación Cardiovascular'),
(37723, 31635, 'es', 'name', 'Red TemÔtica de Investigación Cooperativa en CÔncer'),
(37724, 31636, 'en', 'name', 'Government of Romania'),
(37725, 31637, 'en', 'name', 'Oklahoma Center for the Advancement of Science and Technology'),
(37726, 31638, 'en', 'name', 'Russian Science Foundation'),
(37727, 31639, 'no_lang_code', 'name', 'Saudi Aramco (Saudi Arabia)'),
(37728, 31640, 'en', 'name', 'Professional Staff Congress'),
(37729, 31641, 'en', 'name', 'State Administration of Traditional Chinese Medicine of the People''s Republic of China'),
(37730, 31641, 'zh', 'name', 'å›½å®¶äø­åŒ»čÆē®”ē†å±€'),
(37731, 31642, 'en', 'name', 'China Space Foundation'),
(37732, 31643, 'en', 'name', 'State Key Joint Laboratory of Environment Simulation and Pollution Control'),
(37733, 31644, 'sv', 'name', 'Barncancerfonden'),
(37734, 31644, 'en', 'name', 'Swedish Childhood Cancer Foundation'),
(37735, 31645, 'no_lang_code', 'name', 'Henan Tianguan Group (China)'),
(37736, 31646, 'es', 'name', 'Red Espanola de Investigacion en Patologia Infecciosa'),
(37737, 31647, 'en', 'name', 'Temasek Defence Systems Institute'),
(37738, 31648, 'de', 'name', 'Wilhelm Sander Stiftung'),
(37739, 31649, 'en', 'name', 'Thailand Graduate Institute of Science and Technology'),
(37740, 31649, 'th', 'name', 'ą¹‚ąø„ąø£ąø‡ąøąø²ąø£ąø—ąøøąø™ąøŖąø–ąø²ąøšąø±ąø™ąøšąø±ąø“ąø‘ąø“ąø•ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œą¹ąø„ąø°ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹„ąø—ąø¢'),
(37741, 31650, 'en', 'name', 'Wuhan Science and Technology Bureau'),
(37742, 31651, 'no_lang_code', 'name', 'EsFem'),
(37743, 31652, 'sk', 'name', 'Szenczi MolnƔr Albert Alapiskola'),
(37744, 31653, 'en', 'name', 'Xi''an University of Science and Education Foundation'),
(37745, 31654, 'en', 'name', 'Ministry of Education'),
(37746, 31655, 'no_lang_code', 'name', 'CELIM'),
(37747, 31656, 'en', 'name', 'New School for Jewish Studies'),
(37748, 31657, 'sk', 'name', 'Centrum Voľného Casu'),
(37749, 31658, 'en', 'name', 'Academic Ranking and Rating Agency'),
(37750, 31659, 'sk', 'name', 'Centire'),
(37751, 31660, 'sk', 'name', 'ÚstrednÔ VojenskÔ Nemocnica Ružomberok'),
(37752, 31661, 'sk', 'name', 'Stredoslovenské múzeum'),
(37753, 31662, 'no_lang_code', 'name', 'AEH (Slovakia)'),
(37754, 31663, 'en', 'name', 'Estonian National Museum'),
(37755, 31664, 'no_lang_code', 'name', 'Cestné stavby Žilina (Slovakia)'),
(37756, 31665, 'no_lang_code', 'name', 'Chemosvit Fibrochem (Slovakia)'),
(37757, 31666, 'sk', 'name', 'Roľnícke družstvo Moravany'),
(37758, 31667, 'en', 'name', 'Slovak Public Health Association'),
(37759, 31668, 'no_lang_code', 'name', 'Eurea'),
(37760, 31669, 'et', 'name', 'VƤhiuuringute Tehnoloogia Arenduskeskus'),
(37761, 31670, 'no_lang_code', 'name', 'ƚstav Radiačnej Ochrany (Slovakia)'),
(37762, 31671, 'en', 'name', 'Zilina International Airport'),
(37763, 31672, 'et', 'name', 'Eesti Keele Instituut'),
(37764, 31672, 'en', 'name', 'Institute of the Estonian Language'),
(37765, 31673, 'no_lang_code', 'name', 'Computer Control Technology (Slovakia)'),
(37766, 31674, 'no_lang_code', 'name', 'Eurofins (Slovakia)'),
(37767, 31675, 'en', 'name', 'Cord Blood Center'),
(37768, 31676, 'no_lang_code', 'name', 'Intech (Slovakia)'),
(37769, 31677, 'en', 'name', 'European Legal Center'),
(37770, 31677, 'sk', 'name', 'Európske PrĆ”vne Centrum Občianske Združenie'),
(37771, 31678, 'en', 'name', 'National Agricultural and Food Centre'),
(37772, 31679, 'no_lang_code', 'name', 'IPM Engineering (Slovakia)'),
(37773, 31680, 'sk', 'name', 'Výskumný Ústav Mliekarenský'),
(37774, 31681, 'no_lang_code', 'name', 'Danubia NanoTech (Slovakia)'),
(37775, 31682, 'no_lang_code', 'name', 'Alpha Medical (Slovakia)'),
(37776, 31683, 'no_lang_code', 'name', 'Anasoft (Slovakia)'),
(37777, 31684, 'no_lang_code', 'name', 'Datalan (Slovakia)'),
(37778, 31685, 'no_lang_code', 'name', 'Kushing (Slovakia)'),
(37779, 31686, 'sk', 'name', 'GymnĆ”zium Andreja SlĆ”dkoviča'),
(37780, 31687, 'no_lang_code', 'name', 'DB Biotech (Slovakia)'),
(37781, 31688, 'no_lang_code', 'name', 'Natures (Slovakia)'),
(37782, 31689, 'no_lang_code', 'name', 'Vinci (Slovakia)'),
(37783, 31690, 'no_lang_code', 'name', 'Antik Telecom (Slovakia)'),
(37784, 31691, 'no_lang_code', 'name', 'Dekonta (Slovakia)'),
(37785, 31692, 'no_lang_code', 'name', 'APIS (Slovakia)'),
(37786, 31693, 'en', 'name', 'Estonian Association for Applied Linguistics'),
(37787, 31694, 'no_lang_code', 'name', 'Applied Precision (Slovakia)'),
(37788, 31695, 'sk', 'name', 'Aqua Vita - ŽivÔ voda'),
(37789, 31696, 'no_lang_code', 'name', 'Development Services Security Innovations (Slovakia)'),
(37790, 31697, 'no_lang_code', 'name', 'Areta (Slovakia)'),
(37791, 31698, 'no_lang_code', 'name', 'Duslo (Slovakia)'),
(37792, 31699, 'sk', 'name', 'ZÔkladnÔ umeleckÔ Ŕkola Jozefa Rosinského'),
(37793, 31700, 'en', 'name', 'Western Slovakian Energy Corporation'),
(37794, 31700, 'no_lang_code', 'name', 'ZƔpadoslovenskƔ Energetika (Slovakia)'),
(37795, 31701, 'no_lang_code', 'name', 'Fires (Slovakia)'),
(37796, 31702, 'en', 'name', 'Observatory and Planetarium of Maximilian Hell'),
(37797, 31703, 'en', 'name', 'Association for Youth, Science and Technology'),
(37798, 31704, 'en', 'name', 'East Tallinn Central Hospital'),
(37799, 31705, 'en', 'name', 'Judicial Academy of the Slovak Republic'),
(37800, 31706, 'no_lang_code', 'name', 'Ecoland (Slovakia)'),
(37801, 31707, 'no_lang_code', 'name', 'KWD (Slovakia)'),
(37802, 31708, 'no_lang_code', 'name', 'Education Training & Consulting Company (Slovakia)'),
(37803, 31709, 'sk', 'name', 'FakultnÔ nemocnica s poliklinikou Žilina'),
(37804, 31710, 'no_lang_code', 'name', 'Avantek (Slovakia)'),
(37805, 31711, 'no_lang_code', 'name', 'OMS Lighting (Slovakia)'),
(37806, 31712, 'en', 'name', 'EDUCON'),
(37807, 31713, 'no_lang_code', 'name', 'Axxence (Slovakia)'),
(37808, 31714, 'no_lang_code', 'name', 'Elcom (Slovakia)'),
(37809, 31715, 'no_lang_code', 'name', 'Op -Tim (Slovakia)'),
(37810, 31716, 'en', 'name', 'Central European House of Photography'),
(37811, 31717, 'no_lang_code', 'name', 'Bakomi'),
(37812, 31718, 'no_lang_code', 'name', 'P-mat'),
(37813, 31719, 'no_lang_code', 'name', 'Betamont (Slovakia)'),
(37814, 31720, 'en', 'name', 'Forests of the Slovak Republic'),
(37815, 31720, 'sk', 'name', 'Lesy Slovenskej Republiky'),
(37816, 31721, 'no_lang_code', 'name', 'Elektrokarbon (Slovakia)'),
(37817, 31722, 'en', 'name', 'PƤrnu Museum'),
(37818, 31723, 'no_lang_code', 'name', 'Elteco (Slovakia)'),
(37819, 31724, 'en', 'name', 'National Science Ethics Committee'),
(37820, 31724, 'da', 'name', 'Nationale Videnskabsetiske KomitƩ'),
(37821, 31725, 'no_lang_code', 'name', 'International BEZ Group (Slovakia)'),
(37822, 31726, 'no_lang_code', 'name', 'KM System (Slovakia)'),
(37823, 31727, 'et', 'name', 'Emakeele Selts'),
(37824, 31728, 'no_lang_code', 'name', 'Ekospol (Slovakia)'),
(37825, 31729, 'en', 'name', 'Biomasa Association'),
(37826, 31730, 'no_lang_code', 'name', 'Emel (Slovakia)'),
(37827, 31731, 'no_lang_code', 'name', 'Konstrukta - Industry (Slovakia)'),
(37828, 31732, 'no_lang_code', 'name', 'Envirocare (Slovakia)'),
(37829, 31733, 'no_lang_code', 'name', 'Biont (Slovakia)'),
(37830, 31734, 'no_lang_code', 'name', 'Perfekt (Slovakia)'),
(37831, 31735, 'no_lang_code', 'name', 'Biorealis (Slovakia)'),
(37832, 31736, 'no_lang_code', 'name', 'KraussMaffei (Slovakia)'),
(37833, 31737, 'no_lang_code', 'name', 'Bioscience (Slovakia)'),
(37834, 31738, 'no_lang_code', 'name', 'Semikron (Slovakia)'),
(37835, 31739, 'no_lang_code', 'name', 'G-trend (Slovakia)'),
(37836, 31740, 'no_lang_code', 'name', 'Biotika (Slovakia)'),
(37837, 31741, 'no_lang_code', 'name', 'Phostec (Slovakia)'),
(37838, 31742, 'no_lang_code', 'name', 'SEZ Krompachy (Slovakia)'),
(37839, 31743, 'no_lang_code', 'name', 'BPM Consulting (Slovakia)'),
(37840, 31744, 'no_lang_code', 'name', 'KRD Molecular Technologies (Slovakia)'),
(37841, 31745, 'no_lang_code', 'name', 'SfƩra (Slovakia)'),
(37842, 31746, 'en', 'name', 'Plant Production Research Institute'),
(37843, 31747, 'en', 'name', 'Building Testing and Research Institute'),
(37844, 31748, 'no_lang_code', 'name', 'GA Drilling (Slovakia)'),
(37845, 31749, 'no_lang_code', 'name', 'Calendula (Slovakia)'),
(37846, 31750, 'sk', 'name', 'SlovenskÔ LegÔlna Metrológia'),
(37847, 31751, 'no_lang_code', 'name', 'Powertec (Slovakia)'),
(37848, 31752, 'sk', 'name', 'GymnÔzium Ľudovíta Štúra'),
(37849, 31753, 'no_lang_code', 'name', 'PPS Group (Slovakia)'),
(37850, 31754, 'no_lang_code', 'name', 'Geneton (Slovakia)'),
(37851, 31755, 'no_lang_code', 'name', 'CEIT Consulting (Slovakia)'),
(37852, 31756, 'no_lang_code', 'name', 'Geoexperts (Slovakia)'),
(37853, 31757, 'no_lang_code', 'name', 'MAT-Obaly (Slovakia)'),
(37854, 31758, 'no_lang_code', 'name', 'Prefa Alfa (Slovakia)'),
(37855, 31759, 'no_lang_code', 'name', 'GeoModel Solar (Slovakia)'),
(37856, 31760, 'no_lang_code', 'name', 'Mate (Slovakia)'),
(37857, 31761, 'no_lang_code', 'name', 'Vusapl (Slovakia)'),
(37858, 31762, 'no_lang_code', 'name', 'MBM Group (Slovakia)'),
(37859, 31763, 'no_lang_code', 'name', 'ProcesnƔ AutomatizƔcia (Slovakia)'),
(37860, 31764, 'no_lang_code', 'name', 'SPINEA (Slovakia)'),
(37861, 31765, 'no_lang_code', 'name', 'Vutch-Chemitex (Slovakia)'),
(37862, 31766, 'no_lang_code', 'name', 'Procont (Slovakia)'),
(37863, 31767, 'no_lang_code', 'name', 'Protobios (Estonia)'),
(37864, 31768, 'no_lang_code', 'name', 'Synkola (Slovakia)'),
(37865, 31769, 'no_lang_code', 'name', 'Qintec (Slovakia)'),
(37866, 31770, 'no_lang_code', 'name', 'Girochem (Slovakia)'),
(37867, 31771, 'en', 'name', 'Software Technology and Applications Competence Center'),
(37868, 31772, 'no_lang_code', 'name', 'T-Industry (Slovakia)'),
(37869, 31773, 'no_lang_code', 'name', 'ME-Inspection SK (Slovakia)'),
(37870, 31774, 'no_lang_code', 'name', 'Vyvoj Martin (Slovakia)'),
(37871, 31775, 'no_lang_code', 'name', 'Mechanical Design (Slovakia)'),
(37872, 31776, 'no_lang_code', 'name', 'Global Services (Slovakia)'),
(37873, 31777, 'no_lang_code', 'name', 'GoldenSUN (Slovakia)'),
(37874, 31778, 'no_lang_code', 'name', 'Xcell (Slovakia)'),
(37875, 31779, 'no_lang_code', 'name', 'Metrodat (Slovakia)'),
(37876, 31780, 'no_lang_code', 'name', 'Railway Repair and Engineering Works (Slovakia)'),
(37877, 31781, 'no_lang_code', 'name', 'Gratex International (Slovakia)'),
(37878, 31782, 'no_lang_code', 'name', 'MicroStep (Slovakia)'),
(37879, 31783, 'en', 'name', 'Raptor Protection of Slovakia'),
(37880, 31784, 'no_lang_code', 'name', 'MicroStep-MIS (Slovakia)'),
(37881, 31785, 'no_lang_code', 'name', 'GTVT (Slovakia)'),
(37882, 31786, 'en', 'name', 'Tartu Emajoe School'),
(37883, 31787, 'no_lang_code', 'name', 'Msm Group (Slovakia)'),
(37884, 31788, 'no_lang_code', 'name', 'Relko (Slovakia)'),
(37885, 31789, 'no_lang_code', 'name', 'Mikon (Slovakia)'),
(37886, 31790, 'no_lang_code', 'name', 'Engineering and Software System Solutions (United States)'),
(37887, 31791, 'no_lang_code', 'name', 'Monogram Technologies (Slovakia)'),
(37888, 31792, 'no_lang_code', 'name', 'Research Institute for Man Made Fibres (Slovakia)'),
(37889, 31793, 'no_lang_code', 'name', '21CSi (United States)'),
(37890, 31794, 'no_lang_code', 'name', 'Optifin Invest (Slovakia)'),
(37891, 31795, 'en', 'name', 'Research Institute of Agricultural and Food Economics'),
(37892, 31796, 'no_lang_code', 'name', 'Hanil E-Hwa (Slovakia)'),
(37893, 31797, 'no_lang_code', 'name', 'Tau - Chem (Slovakia)'),
(37894, 31798, 'no_lang_code', 'name', 'NanoDesign (Slovakia)'),
(37895, 31799, 'no_lang_code', 'name', 'Rmc (Slovakia)'),
(37896, 31800, 'no_lang_code', 'name', 'Tekmar (Slovakia)'),
(37897, 31801, 'no_lang_code', 'name', 'RONA (Slovakia)'),
(37898, 31802, 'no_lang_code', 'name', 'Thalion (Slovakia)'),
(37899, 31803, 'en', 'name', 'Estonian History Museum'),
(37900, 31804, 'no_lang_code', 'name', 'SAE - Automation (Slovakia)'),
(37901, 31805, 'no_lang_code', 'name', 'F. A. Hayek Foundation'),
(37902, 31806, 'no_lang_code', 'name', 'Hordeum (Slovakia)'),
(37903, 31807, 'no_lang_code', 'name', 'Acentech (United States)'),
(37904, 31808, 'no_lang_code', 'name', 'Safetronics (Slovakia)'),
(37905, 31809, 'en', 'name', 'Research Institute of Posts and Telecommunications'),
(37906, 31810, 'no_lang_code', 'name', 'Acoustic Ideas (United States)'),
(37907, 31811, 'no_lang_code', 'name', 'Imuna Pharm (Slovakia)'),
(37908, 31812, 'no_lang_code', 'name', 'Acree Technologies (United States)'),
(37909, 31813, 'no_lang_code', 'name', 'Tilde (Estonia)'),
(37910, 31814, 'no_lang_code', 'name', 'ACTA (United States)'),
(37911, 31815, 'en', 'name', 'Institute of Informatics and Statistics'),
(37912, 31815, 'sk', 'name', 'InŔtitút informatiky a Ŕtatistiky'),
(37913, 31816, 'no_lang_code', 'name', 'Scientica (Slovakia)'),
(37914, 31817, 'no_lang_code', 'name', 'Advanced Cerametrics (United States)'),
(37915, 31818, 'no_lang_code', 'name', 'Advanced Coherent Technologies (United States)'),
(37916, 31819, 'en', 'name', 'Bernstein Center for Computational Neuroscience Freiburg'),
(37917, 31820, 'en', 'name', 'Bernstein Center for Computational Neuroscience Heidelberg-Mannheim'),
(37918, 31821, 'en', 'name', 'Bernstein Center for Computational Neuroscience Munich'),
(37919, 31822, 'en', 'name', 'Bernstein Center for Computational Neuroscience Tübingen'),
(37920, 31823, 'no_lang_code', 'name', 'Advanced Rotorcraft Technology (United States)'),
(37921, 31824, 'no_lang_code', 'name', 'Transmisie Engineering (Slovakia)'),
(37922, 31825, 'sk', 'name', 'Vyskumny Ústav Dopravny'),
(37923, 31826, 'no_lang_code', 'name', 'Adsantec (United States)'),
(37924, 31827, 'no_lang_code', 'name', 'ASML (United States)'),
(37925, 31828, 'no_lang_code', 'name', 'Ultrazvuk (Slovakia)'),
(37926, 31829, 'no_lang_code', 'name', 'General Kinetics (United States)'),
(37927, 31830, 'en', 'name', 'Under and Tuglas Literature Centre'),
(37928, 31830, 'et', 'name', 'Underi ja Tuglase Kirjanduskeskus'),
(37929, 31831, 'no_lang_code', 'name', 'Acuity Technologies (United States)'),
(37930, 31832, 'no_lang_code', 'name', 'Advanced Systems & Technologies (United States)'),
(37931, 31833, 'no_lang_code', 'name', 'Villa Pro (Slovakia)'),
(37932, 31834, 'no_lang_code', 'name', 'Advanced Communication Systems (United States)'),
(37933, 31835, 'no_lang_code', 'name', 'Vipo (Slovakia)'),
(37934, 31836, 'no_lang_code', 'name', 'Advanced Technologies Group (United States)'),
(37935, 31837, 'no_lang_code', 'name', 'Advanced Conductor Technologies (United States)'),
(37936, 31838, 'en', 'name', 'VƵro Institute'),
(37937, 31839, 'en', 'name', 'Slovak Youth Institute'),
(37938, 31840, 'no_lang_code', 'name', 'Vucht (Slovakia)'),
(37939, 31841, 'no_lang_code', 'name', 'VĆŗez (Slovakia)'),
(37940, 31842, 'no_lang_code', 'name', 'Entegris (United States)'),
(37941, 31843, 'en', 'name', '361 Interactive'),
(37942, 31844, 'no_lang_code', 'name', '3TEX (United States)'),
(37943, 31845, 'no_lang_code', 'name', 'VUIS - CESTY (Slovakia)'),
(37944, 31846, 'no_lang_code', 'name', '5-D Systems (United States)'),
(37945, 31847, 'no_lang_code', 'name', 'Vuki (Slovakia)'),
(37946, 31848, 'no_lang_code', 'name', 'Advanced Device Technology (United States)'),
(37947, 31849, 'no_lang_code', 'name', 'Norsk Hydro (Slovakia)'),
(37948, 31850, 'no_lang_code', 'name', 'VUP (Slovakia)'),
(37949, 31851, 'no_lang_code', 'name', 'Presagis (United States)'),
(37950, 31852, 'no_lang_code', 'name', 'Myers Power Products (United States)'),
(37951, 31853, 'no_lang_code', 'name', 'Adaptive Dynamics (United States)'),
(37952, 31854, 'no_lang_code', 'name', 'VÚRUP (Slovakia)'),
(37953, 31855, 'no_lang_code', 'name', 'AEgis Technologies (United States)'),
(37954, 31856, 'no_lang_code', 'name', 'Abaris Training (United States)'),
(37955, 31857, 'no_lang_code', 'name', 'Aegis Technology (United States)'),
(37956, 31858, 'no_lang_code', 'name', 'Abeam Technologies (United States)'),
(37957, 31859, 'no_lang_code', 'name', 'AIL Research (United States)'),
(37958, 31860, 'no_lang_code', 'name', 'Advanced Dynamics (United States)'),
(37959, 31861, 'no_lang_code', 'name', 'Adaptive Methods (United States)'),
(37960, 31862, 'no_lang_code', 'name', 'Air Turbine Technology (United States)'),
(37961, 31863, 'no_lang_code', 'name', 'Airex (United States)'),
(37962, 31864, 'no_lang_code', 'name', 'Advanced Energy Systems (United States)'),
(37963, 31865, 'no_lang_code', 'name', 'Aegisound (United States)'),
(37964, 31866, 'no_lang_code', 'name', 'Advanced Engines Development (United States)'),
(37965, 31867, 'no_lang_code', 'name', 'Akela (United States)'),
(37966, 31868, 'no_lang_code', 'name', 'Acadia Cyber Solutions (United States)'),
(37967, 31869, 'no_lang_code', 'name', 'Automated Dynamics (United States)'),
(37968, 31870, 'en', 'name', 'International Centre for Applied Research and Sustainable Technology'),
(37969, 31871, 'no_lang_code', 'name', 'Accelogic (United States)'),
(37970, 31872, 'no_lang_code', 'name', 'Adiabatics (United States)'),
(37971, 31873, 'no_lang_code', 'name', 'Advanced Infoneering (United States)'),
(37972, 31874, 'no_lang_code', 'name', 'Adlyfe (United States)'),
(37973, 31875, 'no_lang_code', 'name', 'Accipiter Systems (United States)'),
(37974, 31876, 'no_lang_code', 'name', 'Adsys Controls (United States)'),
(37975, 31877, 'no_lang_code', 'name', 'AdTech Systems Research (United States)'),
(37976, 31878, 'no_lang_code', 'name', 'AdValue Photonics (United States)'),
(37977, 31879, 'no_lang_code', 'name', 'Maga (Slovakia)'),
(37978, 31880, 'no_lang_code', 'name', 'Alameda Applied Sciences Corporation (United States)'),
(37979, 31881, 'no_lang_code', 'name', 'Accurate Automation (United States)'),
(37980, 31882, 'no_lang_code', 'name', 'Advanced Optical Systems (United States)'),
(37981, 31883, 'no_lang_code', 'name', 'Advanced Powder Solutions (United States)'),
(37982, 31884, 'no_lang_code', 'name', 'Radyne (United States)'),
(37983, 31885, 'no_lang_code', 'name', 'Alelo (United States)'),
(37984, 31886, 'no_lang_code', 'name', 'Aerobotix (United States)'),
(37985, 31887, 'no_lang_code', 'name', 'Advanced Projects Research Incorporated (United States)'),
(37986, 31888, 'no_lang_code', 'name', 'Acellent Technologies (United States)'),
(37987, 31889, 'no_lang_code', 'name', 'Advanced Anti-Terror Technologies (United States)'),
(37988, 31890, 'no_lang_code', 'name', 'Aeronix (United States)'),
(37989, 31891, 'no_lang_code', 'name', 'Allcomp (United States)'),
(37990, 31892, 'no_lang_code', 'name', 'Applied Quantum Technologies (United States)'),
(37991, 31893, 'no_lang_code', 'name', 'ANDRO (United States)'),
(37992, 31894, 'no_lang_code', 'name', 'Argtec (United States)'),
(37993, 31895, 'no_lang_code', 'name', 'Aneeve Nanotechnologies (United States)'),
(37994, 31896, 'no_lang_code', 'name', 'L-3 Aeromet (United States)'),
(37995, 31897, 'no_lang_code', 'name', 'Applied Radar (United States)'),
(37996, 31898, 'no_lang_code', 'name', 'ArmorWorks (United States)'),
(37997, 31899, 'no_lang_code', 'name', 'ANP Technologies (United States)'),
(37998, 31900, 'no_lang_code', 'name', 'Alpha Omega Electromagnetics (United States)'),
(37999, 31901, 'no_lang_code', 'name', 'Aeroprobe (United States)'),
(38000, 31902, 'no_lang_code', 'name', 'AeroSoft (United States)'),
(38001, 31903, 'no_lang_code', 'name', 'Anyar (United States)'),
(38002, 31904, 'no_lang_code', 'name', 'Aoptix Technologies (United States)'),
(38003, 31905, 'no_lang_code', 'name', 'Aero-Tech Engineering (United States)'),
(38004, 31906, 'no_lang_code', 'name', 'Applied Science Innovations (United States)'),
(38005, 31907, 'no_lang_code', 'name', 'AOSense (United States)'),
(38006, 31908, 'no_lang_code', 'name', 'Art Anderson Associates (United States)'),
(38007, 31909, 'no_lang_code', 'name', 'Advanced Power Electronics (United States)'),
(38008, 31910, 'no_lang_code', 'name', 'Artium Technologies (United States)'),
(38009, 31911, 'no_lang_code', 'name', 'Alpha Star (United States)'),
(38010, 31912, 'no_lang_code', 'name', 'Arxan (United States)'),
(38011, 31913, 'no_lang_code', 'name', 'Tondi Elektroonika (Estonia)'),
(38012, 31914, 'no_lang_code', 'name', 'Aerovel Corporation (United States)'),
(38013, 31915, 'no_lang_code', 'name', 'Ascendant Engineering Solutions (United States)'),
(38014, 31916, 'no_lang_code', 'name', 'Analytical Processes Engineered Solutions (United States)'),
(38015, 31917, 'no_lang_code', 'name', 'Applied Signals Intelligence (United States)'),
(38016, 31918, 'no_lang_code', 'name', 'ASR (United States)'),
(38017, 31919, 'no_lang_code', 'name', 'APIC (United States)'),
(38018, 31920, 'no_lang_code', 'name', 'Assett (United States)'),
(38019, 31921, 'no_lang_code', 'name', 'AET (United States)'),
(38020, 31922, 'no_lang_code', 'name', 'Apollo Enterprise Solutions (United States)'),
(38021, 31923, 'no_lang_code', 'name', 'Applied Spectra (United States)'),
(38022, 31924, 'no_lang_code', 'name', 'Assured Information Security (United States)'),
(38023, 31925, 'no_lang_code', 'name', 'Apollo Instruments (United States)'),
(38024, 31926, 'no_lang_code', 'name', 'Veloxiti (United States)'),
(38025, 31927, 'no_lang_code', 'name', 'Niowave (United States)'),
(38026, 31928, 'no_lang_code', 'name', 'Aetion (United States)'),
(38027, 31929, 'no_lang_code', 'name', 'Applied Technologies (United States)'),
(38028, 31930, 'no_lang_code', 'name', 'Astron Wireless Technologies (United States)'),
(38029, 31931, 'no_lang_code', 'name', 'Applications Research (United States)'),
(38030, 31932, 'no_lang_code', 'name', 'Applied Defense Solutions (United States)'),
(38031, 31933, 'no_lang_code', 'name', 'Applied Technology Associates (United States)'),
(38032, 31934, 'no_lang_code', 'name', 'Applied Diamond (United States)'),
(38033, 31935, 'no_lang_code', 'name', 'Applied Thermal Sciences (United States)'),
(38034, 31936, 'no_lang_code', 'name', 'Ambalux (United States)'),
(38035, 31937, 'no_lang_code', 'name', 'Applied Visions (United States)'),
(38036, 31938, 'no_lang_code', 'name', 'Applied EM (United States)'),
(38037, 31939, 'no_lang_code', 'name', 'APS Materials (United States)'),
(38038, 31940, 'no_lang_code', 'name', 'MRV Communications (United States)'),
(38039, 31941, 'no_lang_code', 'name', 'ATA Engineering (United States)'),
(38040, 31942, 'no_lang_code', 'name', 'Applied Materials (United States)'),
(38041, 31943, 'no_lang_code', 'name', 'Atac (United States)'),
(38042, 31944, 'no_lang_code', 'name', 'Agile Systems (United States)'),
(38043, 31945, 'no_lang_code', 'name', 'Amelex (United States)'),
(38044, 31946, 'no_lang_code', 'name', 'Applied Mathematics (United States)'),
(38045, 31947, 'no_lang_code', 'name', 'Advanced Oxygen Technologies (United States)'),
(38046, 31948, 'no_lang_code', 'name', 'AgilOptics (United States)'),
(38047, 31949, 'no_lang_code', 'name', 'Applied Minds (United States)'),
(38048, 31950, 'no_lang_code', 'name', 'Agnik (United States)'),
(38049, 31951, 'no_lang_code', 'name', 'Applied NanoFemto Technologies (United States)'),
(38050, 31952, 'no_lang_code', 'name', 'Aqwest (United States)'),
(38051, 31953, 'en', 'name', 'Applied Natural Sciences'),
(38052, 31954, 'no_lang_code', 'name', 'ARC Technology (United States)'),
(38053, 31955, 'no_lang_code', 'name', 'Archangel Systems (United States)'),
(38054, 31956, 'no_lang_code', 'name', 'Applied Optimization (United States)'),
(38055, 31957, 'no_lang_code', 'name', 'Beck Engineering (United States)'),
(38056, 31958, 'no_lang_code', 'name', 'Applied Optoelectronics (United States)'),
(38057, 31959, 'no_lang_code', 'name', 'American Energy Technologies Co (United States)'),
(38058, 31960, 'no_lang_code', 'name', 'American GNC (United States)'),
(38059, 31961, 'no_lang_code', 'name', 'Bedford Signals (United States)'),
(38060, 31962, 'no_lang_code', 'name', 'American Research Corporation of Virginia (United States)'),
(38061, 31963, 'no_lang_code', 'name', 'Applied Physical Electronics (United States)'),
(38062, 31964, 'no_lang_code', 'name', 'Hisense (United States)'),
(38063, 31965, 'en', 'name', 'Arid Forest Research Institute'),
(38064, 31966, 'no_lang_code', 'name', 'Applied Poleramic (United States)'),
(38065, 31967, 'no_lang_code', 'name', 'Applied Pulsed Power (United States)'),
(38066, 31968, 'no_lang_code', 'name', 'Archinoetics (United States)'),
(38067, 31969, 'no_lang_code', 'name', 'Beltran (United States)'),
(38068, 31970, 'no_lang_code', 'name', 'American Semiconductor (United States)'),
(38069, 31971, 'no_lang_code', 'name', 'Broadata Communications (United States)'),
(38070, 31972, 'no_lang_code', 'name', 'BrockTek (United States)'),
(38071, 31973, 'no_lang_code', 'name', 'Arcon (United States)'),
(38072, 31974, 'no_lang_code', 'name', 'BerrieHill Research (United States)'),
(38073, 31975, 'no_lang_code', 'name', 'CeraNova (United States)'),
(38074, 31976, 'no_lang_code', 'name', 'Brookhaven Technology Group (United States)'),
(38075, 31977, 'no_lang_code', 'name', 'Arzon Solar (United States)'),
(38076, 31978, 'no_lang_code', 'name', 'Verisk Analytics (United States)'),
(38077, 31979, 'no_lang_code', 'name', 'BTech Acoustics (United States)'),
(38078, 31980, 'no_lang_code', 'name', 'Cermet (United States)'),
(38079, 31981, 'no_lang_code', 'name', 'Microscan Systems (United States)'),
(38080, 31982, 'no_lang_code', 'name', 'Burge Environmental (United States)'),
(38081, 31983, 'no_lang_code', 'name', 'Amtec (United States)'),
(38082, 31984, 'no_lang_code', 'name', 'Bihrle Applied Research (United States)'),
(38083, 31985, 'no_lang_code', 'name', 'CF Technologies (United States)'),
(38084, 31986, 'no_lang_code', 'name', 'C & P Technologies (United States)'),
(38085, 31987, 'no_lang_code', 'name', 'Quantum3D (United States)'),
(38086, 31988, 'no_lang_code', 'name', 'Analatom (United States)'),
(38087, 31989, 'no_lang_code', 'name', 'Analysis and Measurement Services (United States)'),
(38088, 31990, 'no_lang_code', 'name', 'Ineos (United States)'),
(38089, 31991, 'no_lang_code', 'name', 'Cha Corporation (United States)'),
(38090, 31992, 'no_lang_code', 'name', 'C3I (United States)'),
(38091, 31993, 'no_lang_code', 'name', 'Analysis Design & Diagnostics (United States)'),
(38092, 31994, 'no_lang_code', 'name', 'Chang Industry (United States)'),
(38093, 31995, 'no_lang_code', 'name', 'CAE Solutions (United States)'),
(38094, 31996, 'no_lang_code', 'name', 'MFC Industrial (United States)'),
(38095, 31997, 'no_lang_code', 'name', 'Analytical Engineering (United States)'),
(38096, 31998, 'no_lang_code', 'name', 'Genesis Industries (United States)'),
(38097, 31999, 'no_lang_code', 'name', 'Charles River Analytics (United States)'),
(38098, 32000, 'no_lang_code', 'name', 'Atmospheric Observing Systems (United States)'),
(38099, 32001, 'no_lang_code', 'name', 'Stark Aerospace (United States)'),
(38100, 32002, 'no_lang_code', 'name', 'ChemImage (United States)'),
(38101, 32003, 'no_lang_code', 'name', 'ASRC Federal Analytical Service (United States)'),
(38102, 32004, 'no_lang_code', 'name', 'Curtiss-Wright (United States)'),
(38103, 32005, 'no_lang_code', 'name', 'Auriga Microwave (United States)'),
(38104, 32006, 'no_lang_code', 'name', 'CDM Smith (United States)'),
(38105, 32007, 'no_lang_code', 'name', 'Aurrion (United States)'),
(38106, 32008, 'no_lang_code', 'name', 'Analytical Spectral Devices (United States)'),
(38107, 32009, 'no_lang_code', 'name', 'Chip Design Systems (United States)'),
(38108, 32010, 'no_lang_code', 'name', 'Candent Technologies (United States)'),
(38109, 32011, 'no_lang_code', 'name', 'Capco (United States)'),
(38110, 32012, 'no_lang_code', 'name', 'Autonomous Solutions (United States)'),
(38111, 32013, 'no_lang_code', 'name', 'Black Forest Engineering (United States)'),
(38112, 32014, 'no_lang_code', 'name', 'Black Laboratories (United States)'),
(38113, 32015, 'no_lang_code', 'name', 'Anamet (United States)'),
(38114, 32016, 'no_lang_code', 'name', 'Avineon (United States)'),
(38115, 32017, 'no_lang_code', 'name', 'Black River Systems (United States)'),
(38116, 32018, 'no_lang_code', 'name', 'Capraro Technologies (United States)'),
(38117, 32019, 'no_lang_code', 'name', 'Avirtek (United States)'),
(38118, 32020, 'no_lang_code', 'name', 'Carbon Solutions (United States)'),
(38119, 32021, 'no_lang_code', 'name', 'Anasphere (United States)'),
(38120, 32022, 'no_lang_code', 'name', 'Avisys (United States)'),
(38121, 32023, 'no_lang_code', 'name', 'Cimarron Software (United States)'),
(38122, 32024, 'no_lang_code', 'name', 'Blade Diagnostics (United States)'),
(38123, 32025, 'no_lang_code', 'name', 'Advanced Processing Technology (United States)'),
(38124, 32026, 'no_lang_code', 'name', 'BlazeTech (United States)'),
(38125, 32027, 'no_lang_code', 'name', 'Clear Science Corporation (United States)'),
(38126, 32028, 'no_lang_code', 'name', 'Anautics (United States)'),
(38127, 32029, 'no_lang_code', 'name', 'Blue Canyon Technologies (United States)'),
(38128, 32030, 'no_lang_code', 'name', 'Carnegie Robotics (United States)'),
(38129, 32031, 'no_lang_code', 'name', 'Kratos Defense & Security Solutions (United States)'),
(38130, 32032, 'no_lang_code', 'name', 'Gooch & Housego (United States)'),
(38131, 32033, 'no_lang_code', 'name', 'Carolina Unmanned Vehicles (United States)'),
(38132, 32034, 'no_lang_code', 'name', 'Apogee Technology (United States)'),
(38133, 32035, 'no_lang_code', 'name', 'Aware (United States)'),
(38134, 32036, 'en', 'name', 'Clifton Labs'),
(38135, 32037, 'no_lang_code', 'name', 'Spaceflight Industries (United States)');
INSERT INTO `ror_settings` VALUES
(38136, 32038, 'no_lang_code', 'name', 'AZ Technology (United States)'),
(38137, 32039, 'no_lang_code', 'name', 'Cascade Designs (United States)'),
(38138, 32040, 'no_lang_code', 'name', 'Blue Sky Electronics (United States)'),
(38139, 32041, 'no_lang_code', 'name', 'Cascade Microtech (United States)'),
(38140, 32042, 'en', 'name', 'ORCID'),
(38141, 32043, 'no_lang_code', 'name', 'B.E. Meyers & Co (United States)'),
(38142, 32044, 'no_lang_code', 'name', 'BMA Engineering (United States)'),
(38143, 32045, 'no_lang_code', 'name', 'Bodkin Design & Engineering (United States)'),
(38144, 32046, 'no_lang_code', 'name', 'Baker Engineering (United States)'),
(38145, 32047, 'no_lang_code', 'name', 'Commonwealth Computer Research (United States)'),
(38146, 32048, 'no_lang_code', 'name', 'CMSoft (United States)'),
(38147, 32049, 'no_lang_code', 'name', 'Baker Engineering and Risk Consultants (United States)'),
(38148, 32050, 'no_lang_code', 'name', 'Afognak Native Corporation (United States)'),
(38149, 32051, 'no_lang_code', 'name', 'Catalytic Materials (United States)'),
(38150, 32052, 'no_lang_code', 'name', 'Boston Engineering (United States)'),
(38151, 32053, 'no_lang_code', 'name', 'CBRITE (United States)'),
(38152, 32054, 'no_lang_code', 'name', 'Compass Technology Group (United States)'),
(38153, 32055, 'no_lang_code', 'name', 'Bascom Hunter (United States)'),
(38154, 32056, 'no_lang_code', 'name', 'Basic Commerce and Industries (United States)'),
(38155, 32057, 'no_lang_code', 'name', 'Boston Micromachines (United States)'),
(38156, 32058, 'no_lang_code', 'name', 'Battlespace Simulations (United States)'),
(38157, 32059, 'no_lang_code', 'name', 'CogniTech (United States)'),
(38158, 32060, 'no_lang_code', 'name', 'Celadon Laboratories (United States)'),
(38159, 32061, 'no_lang_code', 'name', 'BrainAid (United States)'),
(38160, 32062, 'no_lang_code', 'name', 'Valore (United States)'),
(38161, 32063, 'no_lang_code', 'name', 'VCORE Solutions (United States)'),
(38162, 32064, 'no_lang_code', 'name', 'Cellular Materials International (United States)'),
(38163, 32065, 'no_lang_code', 'name', 'AFCO Systems (United States)'),
(38164, 32066, 'no_lang_code', 'name', 'Breault Research Organization (United States)'),
(38165, 32067, 'no_lang_code', 'name', 'Coherent Technical Services (United States)'),
(38166, 32068, 'no_lang_code', 'name', 'Beacon Interactive Systems (United States)'),
(38167, 32069, 'no_lang_code', 'name', 'Centeye (United States)'),
(38168, 32070, 'no_lang_code', 'name', 'Brimrose (United States)'),
(38169, 32071, 'no_lang_code', 'name', 'Computational Sensors (United States)'),
(38170, 32072, 'no_lang_code', 'name', 'Triton Systems (United States)'),
(38171, 32073, 'no_lang_code', 'name', 'Beam Engineering for Advanced Measurements (United States)'),
(38172, 32074, 'en', 'name', 'Computer Measurement Laboratory'),
(38173, 32075, 'no_lang_code', 'name', 'Critical Technologies (United States)'),
(38174, 32076, 'no_lang_code', 'name', 'Crossfield Technology (United States)'),
(38175, 32077, 'no_lang_code', 'name', 'HyperSizer (United States)'),
(38176, 32078, 'no_lang_code', 'name', 'CreoNex Systems (United States)'),
(38177, 32079, 'no_lang_code', 'name', 'Clear Align (United States)'),
(38178, 32080, 'no_lang_code', 'name', 'Cascade Engineering (United States)'),
(38179, 32081, 'no_lang_code', 'name', 'Colorado Engineering (United States)'),
(38180, 32082, 'no_lang_code', 'name', 'Dignitas Technologies (United States)'),
(38181, 32083, 'no_lang_code', 'name', 'DataSoft (United States)'),
(38182, 32084, 'no_lang_code', 'name', 'CompuTherm (United States)'),
(38183, 32085, 'no_lang_code', 'name', 'Directed Energy Solutions (United States)'),
(38184, 32086, 'no_lang_code', 'name', 'Crye Precision (United States)'),
(38185, 32087, 'no_lang_code', 'name', 'Edaptive Computing (United States)'),
(38186, 32088, 'no_lang_code', 'name', 'Strategic Analysis (United States)'),
(38187, 32089, 'no_lang_code', 'name', 'Conceptual Mindworks (United States)'),
(38188, 32090, 'no_lang_code', 'name', 'Directed Vapor Technologies (United States)'),
(38189, 32091, 'no_lang_code', 'name', 'Asahi Kasei (United States)'),
(38190, 32092, 'no_lang_code', 'name', 'DB&A (United States)'),
(38191, 32093, 'no_lang_code', 'name', 'Discovery Machine (United States)'),
(38192, 32094, 'no_lang_code', 'name', 'Concorde Battery (United States)'),
(38193, 32095, 'no_lang_code', 'name', 'Davidson Technologies (United States)'),
(38194, 32096, 'no_lang_code', 'name', 'Discovery Semiconductors (United States)'),
(38195, 32097, 'no_lang_code', 'name', 'CU Aerospace (United States)'),
(38196, 32098, 'no_lang_code', 'name', 'Eigent Technologies (United States)'),
(38197, 32099, 'no_lang_code', 'name', 'Conductive Composites (United States)'),
(38198, 32100, 'no_lang_code', 'name', 'Custom MMIC (United States)'),
(38199, 32101, 'no_lang_code', 'name', 'CTS Corporation (United States)'),
(38200, 32102, 'no_lang_code', 'name', 'Cyan Systems (United States)'),
(38201, 32103, 'no_lang_code', 'name', 'Diversified Technical Systems (United States)'),
(38202, 32104, 'no_lang_code', 'name', 'Cyber Defense Agency (United States)'),
(38203, 32105, 'no_lang_code', 'name', 'Electro Magnetic Applications (United States)'),
(38204, 32106, 'no_lang_code', 'name', 'Cascade (United States)'),
(38205, 32107, 'no_lang_code', 'name', 'Diversified Technologies (United States)'),
(38206, 32108, 'no_lang_code', 'name', 'Electro Standards Laboratories (United States)'),
(38207, 32109, 'no_lang_code', 'name', 'DeciBel Research (United States)'),
(38208, 32110, 'no_lang_code', 'name', 'Continental Computers (United States)'),
(38209, 32111, 'no_lang_code', 'name', 'Diversitech (United States)'),
(38210, 32112, 'no_lang_code', 'name', 'Cube Technology (United States)'),
(38211, 32113, 'no_lang_code', 'name', 'Decision Dynamics (United States)'),
(38212, 32114, 'no_lang_code', 'name', 'DNA Solutions (United States)'),
(38213, 32115, 'no_lang_code', 'name', 'Control Vision (United States)'),
(38214, 32116, 'no_lang_code', 'name', 'Decision Sciences (United States)'),
(38215, 32117, 'no_lang_code', 'name', 'ITT (United States)'),
(38216, 32118, 'no_lang_code', 'name', 'SynTech Bioenergy (United States)'),
(38217, 32119, 'no_lang_code', 'name', 'Decision Sciences International Corporation (United States)'),
(38218, 32120, 'no_lang_code', 'name', 'Cybosoft (United States)'),
(38219, 32121, 'no_lang_code', 'name', 'Data Power Decisions (United States)'),
(38220, 32122, 'no_lang_code', 'name', 'Cycorp (United States)'),
(38221, 32123, 'no_lang_code', 'name', 'Cornerstone Research Group (United States)'),
(38222, 32124, 'no_lang_code', 'name', 'Odyssey Investment Partners (United States)'),
(38223, 32125, 'no_lang_code', 'name', 'Dragonfly Pictures (United States)'),
(38224, 32126, 'no_lang_code', 'name', 'TNS (United States)'),
(38225, 32127, 'no_lang_code', 'name', 'CornerTurn (United States)'),
(38226, 32128, 'no_lang_code', 'name', 'DSPlogic (United States)'),
(38227, 32129, 'no_lang_code', 'name', 'Decisive Analytics Corporation (United States)'),
(38228, 32130, 'no_lang_code', 'name', 'ElectroDynamic Applications (United States)'),
(38229, 32131, 'no_lang_code', 'name', 'Smiths Detection (United States)'),
(38230, 32132, 'no_lang_code', 'name', 'D&P (United States)'),
(38231, 32133, 'no_lang_code', 'name', 'Deep Web Technologies (United States)'),
(38232, 32134, 'no_lang_code', 'name', 'D&S Consultants (United States)'),
(38233, 32135, 'no_lang_code', 'name', 'Electrodynamics Associates (United States)'),
(38234, 32136, 'no_lang_code', 'name', 'D-Star Engineering (United States)'),
(38235, 32137, 'no_lang_code', 'name', 'DWA Technologies (United States)'),
(38236, 32138, 'no_lang_code', 'name', 'Defense Research Associates (United States)'),
(38237, 32139, 'no_lang_code', 'name', 'Veolia (United States)'),
(38238, 32140, 'no_lang_code', 'name', 'Cortana (United States)'),
(38239, 32141, 'no_lang_code', 'name', 'Electronic Concepts and Engineering (United States)'),
(38240, 32142, 'no_lang_code', 'name', 'DANTE Solutions (United States)'),
(38241, 32143, 'no_lang_code', 'name', 'Damaskos (United States)'),
(38242, 32144, 'no_lang_code', 'name', 'Electronics Development Corporation (United States)'),
(38243, 32145, 'no_lang_code', 'name', 'Elintrix (United States)'),
(38244, 32146, 'no_lang_code', 'name', 'Dynamic Structures and Materials (United States)'),
(38245, 32147, 'no_lang_code', 'name', 'EMAG Technologies (United States)'),
(38246, 32148, 'no_lang_code', 'name', 'Damilic (United States)'),
(38247, 32149, 'no_lang_code', 'name', 'Della Enterprises (United States)'),
(38248, 32150, 'no_lang_code', 'name', 'Emergent Space Technologies (United States)'),
(38249, 32151, 'no_lang_code', 'name', 'Dynamic Systems & Research (United States)'),
(38250, 32152, 'no_lang_code', 'name', 'TSG Solutions (United States)'),
(38251, 32153, 'no_lang_code', 'name', 'Emitech (United States)'),
(38252, 32154, 'no_lang_code', 'name', 'Energent (United States)'),
(38253, 32155, 'no_lang_code', 'name', 'Dynetics (United States)'),
(38254, 32156, 'no_lang_code', 'name', 'Energetic Materials and Products Incorporation (United States)'),
(38255, 32157, 'no_lang_code', 'name', 'Engineering & Scientific Innovations (United States)'),
(38256, 32158, 'no_lang_code', 'name', 'Energetics (United States)'),
(38257, 32159, 'no_lang_code', 'name', 'Eagle Harbor Technologies (United States)'),
(38258, 32160, 'no_lang_code', 'name', 'Demeton Technologies (United States)'),
(38259, 32161, 'no_lang_code', 'name', 'Deployable Space Systems (United States)'),
(38260, 32162, 'no_lang_code', 'name', 'DESE Research (United States)'),
(38261, 32163, 'no_lang_code', 'name', 'Enigmatics (United States)'),
(38262, 32164, 'no_lang_code', 'name', 'Public Service Electric and Gas (United States)'),
(38263, 32165, 'no_lang_code', 'name', 'East West Enterprises (United States)'),
(38264, 32166, 'no_lang_code', 'name', 'Design Interactive (United States)'),
(38265, 32167, 'no_lang_code', 'name', 'UIL Holdings (United States)'),
(38266, 32168, 'no_lang_code', 'name', 'Energy Research Consultants (United States)'),
(38267, 32169, 'no_lang_code', 'name', 'Design Net Engineering (United States)'),
(38268, 32170, 'no_lang_code', 'name', 'Enser (United States)'),
(38269, 32171, 'no_lang_code', 'name', 'Ebert Composites (United States)'),
(38270, 32172, 'no_lang_code', 'name', 'Exothermics (United States)'),
(38271, 32173, 'no_lang_code', 'name', 'Echo Ridge (United States)'),
(38272, 32174, 'no_lang_code', 'name', 'Expand (United States)'),
(38273, 32175, 'no_lang_code', 'name', 'Environetix Technologies (United States)'),
(38274, 32176, 'no_lang_code', 'name', 'Eclipse Energy Systems (United States)'),
(38275, 32177, 'no_lang_code', 'name', 'Diamond Antenna and Microwave (United States)'),
(38276, 32178, 'no_lang_code', 'name', 'Expert Microsystems (United States)'),
(38277, 32179, 'no_lang_code', 'name', 'Eos Photonics (United States)'),
(38278, 32180, 'no_lang_code', 'name', 'Diamond Visionics (United States)'),
(38279, 32181, 'no_lang_code', 'name', 'Fracture Analysis Consultants (United States)'),
(38280, 32182, 'no_lang_code', 'name', 'Ecrossculture (United States)'),
(38281, 32183, 'no_lang_code', 'name', 'EOSPACE (United States)'),
(38282, 32184, 'no_lang_code', 'name', 'O’Gara Group (United States)'),
(38283, 32185, 'no_lang_code', 'name', 'Kennametal (United States)'),
(38284, 32186, 'no_lang_code', 'name', 'Digital Authentication Technologies (United States)'),
(38285, 32187, 'no_lang_code', 'name', 'Eotron (United States)'),
(38286, 32188, 'no_lang_code', 'name', 'Fantastic Data (United States)'),
(38287, 32189, 'no_lang_code', 'name', 'EPIR Technologies (United States)'),
(38288, 32190, 'no_lang_code', 'name', 'Xperi (United States)'),
(38289, 32191, 'no_lang_code', 'name', 'Global Aerospace (United States)'),
(38290, 32192, 'no_lang_code', 'name', 'Friction Stir Link (United States)'),
(38291, 32193, 'no_lang_code', 'name', 'Far Tech (United States)'),
(38292, 32194, 'no_lang_code', 'name', 'Epitaxial Technologies (United States)'),
(38293, 32195, 'no_lang_code', 'name', 'F&S Building Innovations (United States)'),
(38294, 32196, 'no_lang_code', 'name', 'Kforce (United States)'),
(38295, 32197, 'no_lang_code', 'name', 'Frontier Performance Polymers (United States)'),
(38296, 32198, 'no_lang_code', 'name', 'Digital Optics Technologies (United States)'),
(38297, 32199, 'no_lang_code', 'name', 'FarCo Technologies (United States)'),
(38298, 32200, 'no_lang_code', 'name', 'Global Embedded Technologies (United States)'),
(38299, 32201, 'no_lang_code', 'name', 'Frontier Technology Incorporation (United States)'),
(38300, 32202, 'no_lang_code', 'name', 'EpiWorks (United States)'),
(38301, 32203, 'no_lang_code', 'name', 'Farr Fields (United States)'),
(38302, 32204, 'no_lang_code', 'name', 'Global Engineering and Materials (United States)'),
(38303, 32205, 'no_lang_code', 'name', 'Epsilon Lambda Electronics (United States)'),
(38304, 32206, 'no_lang_code', 'name', 'Global Engineering Research and Technologies (United States)'),
(38305, 32207, 'no_lang_code', 'name', 'Equinox (United States)'),
(38306, 32208, 'no_lang_code', 'name', 'Digital Solid State Propulsion (United States)'),
(38307, 32209, 'no_lang_code', 'name', 'Dominca (United States)'),
(38308, 32210, 'no_lang_code', 'name', 'FTL Systems (United States)'),
(38309, 32211, 'no_lang_code', 'name', 'Global InfoTek (United States)'),
(38310, 32212, 'no_lang_code', 'name', 'Environmental Remediation Consultants (United States)'),
(38311, 32213, 'no_lang_code', 'name', 'Fastvdo (United States)'),
(38312, 32214, 'no_lang_code', 'name', 'Fulcrum Corporation (United States)'),
(38313, 32215, 'no_lang_code', 'name', 'Fatigue Technology (United States)'),
(38314, 32216, 'no_lang_code', 'name', 'Eriez (United States)'),
(38315, 32217, 'no_lang_code', 'name', 'Analog Devices (United States)'),
(38316, 32218, 'no_lang_code', 'name', 'Global Strategic Solutions (United States)'),
(38317, 32219, 'no_lang_code', 'name', 'Erigo Technologies (United States)'),
(38318, 32220, 'no_lang_code', 'name', 'Full Circle Research (United States)'),
(38319, 32221, 'no_lang_code', 'name', 'Global Technology Connection (United States)'),
(38320, 32222, 'no_lang_code', 'name', 'Escape Communications (United States)'),
(38321, 32223, 'no_lang_code', 'name', 'Glomics (United States)'),
(38322, 32224, 'no_lang_code', 'name', 'Greatbatch (United States)'),
(38323, 32225, 'no_lang_code', 'name', 'Full Spectrum Technologies (United States)'),
(38324, 32226, 'no_lang_code', 'name', 'Gloyer-Taylor Laboratories (United States)'),
(38325, 32227, 'no_lang_code', 'name', 'Federal Fabrics Fibers (United States)'),
(38326, 32228, 'no_lang_code', 'name', 'De Francisci Machine Company (United States)'),
(38327, 32229, 'no_lang_code', 'name', 'Ferro Solutions (United States)'),
(38328, 32230, 'no_lang_code', 'name', 'GoHypersonic (United States)'),
(38329, 32231, 'no_lang_code', 'name', 'Optical Sciences Company (United States)'),
(38330, 32232, 'no_lang_code', 'name', 'Essential Research (United States)'),
(38331, 32233, 'no_lang_code', 'name', 'Goleta Star (United States)'),
(38332, 32234, 'no_lang_code', 'name', 'Fieldmetrics (United States)'),
(38333, 32235, 'no_lang_code', 'name', 'Fair Isaac Corporation (United States)'),
(38334, 32236, 'no_lang_code', 'name', 'Filtration Solutions (United States)'),
(38335, 32237, 'no_lang_code', 'name', 'First RF (United States)'),
(38336, 32238, 'no_lang_code', 'name', 'FishEye Software (United States)'),
(38337, 32239, 'no_lang_code', 'name', 'Edge Technologies (United States)'),
(38338, 32240, 'no_lang_code', 'name', 'Five Stones Research Corporation (United States)'),
(38339, 32241, 'no_lang_code', 'name', 'Green Mountain Radio Research (United States)'),
(38340, 32242, 'no_lang_code', 'name', 'Holochip (United States)'),
(38341, 32243, 'no_lang_code', 'name', 'FlexEl (United States)'),
(38342, 32244, 'no_lang_code', 'name', 'Galorath (United States)'),
(38343, 32245, 'no_lang_code', 'name', 'GBL Systems Corporation (United States)'),
(38344, 32246, 'no_lang_code', 'name', 'Euclid Techlabs (United States)'),
(38345, 32247, 'no_lang_code', 'name', 'Government Cost Accounting System (United States)'),
(38346, 32248, 'no_lang_code', 'name', 'Netzsch (United States)'),
(38347, 32249, 'no_lang_code', 'name', 'GS Engineering (United States)'),
(38348, 32250, 'no_lang_code', 'name', 'Microwave Vision Group (United States)'),
(38349, 32251, 'no_lang_code', 'name', 'Flow Analysis (United States)'),
(38350, 32252, 'no_lang_code', 'name', 'GelTech Solutions (United States)'),
(38351, 32253, 'no_lang_code', 'name', 'Honeybee Robotics (United States)'),
(38352, 32254, 'no_lang_code', 'name', 'Gener8 (United States)'),
(38353, 32255, 'no_lang_code', 'name', 'General Lasertronics Corporation (United States)'),
(38354, 32256, 'no_lang_code', 'name', 'Eutecus (United States)'),
(38355, 32257, 'no_lang_code', 'name', 'Flow Control Industries (United States)'),
(38356, 32258, 'no_lang_code', 'name', 'General Nano (United States)'),
(38357, 32259, 'no_lang_code', 'name', 'Guided Systems Technologies (United States)'),
(38358, 32260, 'no_lang_code', 'name', 'Flow International Corporation (United States)'),
(38359, 32261, 'no_lang_code', 'name', 'Evaporated Coatings (United States)'),
(38360, 32262, 'no_lang_code', 'name', 'Hood Technology (United States)'),
(38361, 32263, 'no_lang_code', 'name', 'General Sciences (United States)'),
(38362, 32264, 'no_lang_code', 'name', 'Fluorochem (United States)'),
(38363, 32265, 'no_lang_code', 'name', 'HPS Simulations (United States)'),
(38364, 32266, 'no_lang_code', 'name', 'EverNu Technology (United States)'),
(38365, 32267, 'no_lang_code', 'name', 'Hstar Technologies (United States)'),
(38366, 32268, 'no_lang_code', 'name', 'Evidence Based Research (United States)'),
(38367, 32269, 'no_lang_code', 'name', 'Evisive (United States)'),
(38368, 32270, 'no_lang_code', 'name', 'Electronic Warfare Associates (United States)'),
(38369, 32271, 'no_lang_code', 'name', 'Genvac Aerospace (United States)'),
(38370, 32272, 'no_lang_code', 'name', 'Excellatron (United States)'),
(38371, 32273, 'no_lang_code', 'name', 'Foam Matrix (United States)'),
(38372, 32274, 'no_lang_code', 'name', 'Exfluor Research (United States)'),
(38373, 32275, 'no_lang_code', 'name', 'Blue Wolf Capital Partners (United States)'),
(38374, 32276, 'no_lang_code', 'name', 'ExoAnalytic Solutions (United States)'),
(38375, 32277, 'no_lang_code', 'name', 'Geophex (United States)'),
(38376, 32278, 'no_lang_code', 'name', 'Hy-Tek Manufacturing Company (United States)'),
(38377, 32279, 'no_lang_code', 'name', 'Geotech Instruments (United States)'),
(38378, 32280, 'no_lang_code', 'name', 'Oculus Innovative Sciences (United States)'),
(38379, 32281, 'no_lang_code', 'name', 'IERUS Technologies (United States)'),
(38380, 32282, 'no_lang_code', 'name', 'Michelman (United States)'),
(38381, 32283, 'no_lang_code', 'name', 'H&R Technology (United States)'),
(38382, 32284, 'no_lang_code', 'name', 'Hal Technology (United States)'),
(38383, 32285, 'no_lang_code', 'name', 'Accenture (United States)'),
(38384, 32286, 'no_lang_code', 'name', 'Hontek (United States)'),
(38385, 32287, 'no_lang_code', 'name', 'II-VI (United States)'),
(38386, 32288, 'no_lang_code', 'name', 'HLS Research (United States)'),
(38387, 32289, 'no_lang_code', 'name', 'GP Technologies (United States)'),
(38388, 32290, 'no_lang_code', 'name', 'IJ Research (United States)'),
(38389, 32291, 'no_lang_code', 'name', 'Innovative Technology Applications (United States)'),
(38390, 32292, 'no_lang_code', 'name', 'Illinois Rocstar (United States)'),
(38391, 32293, 'no_lang_code', 'name', 'Helios Remote Sensing Systems (United States)'),
(38392, 32294, 'no_lang_code', 'name', 'Rolls-Royce (United States)'),
(38393, 32295, 'no_lang_code', 'name', 'Innovative Wireless Technologies (United States)'),
(38394, 32296, 'no_lang_code', 'name', 'Image Acoustics (United States)'),
(38395, 32297, 'no_lang_code', 'name', 'HEM Technologies (United States)'),
(38396, 32298, 'no_lang_code', 'name', 'HyPerComp (United States)'),
(38397, 32299, 'no_lang_code', 'name', 'Inovati (United States)'),
(38398, 32300, 'no_lang_code', 'name', 'MacAulay-Brown (United States)'),
(38399, 32301, 'no_lang_code', 'name', 'Hysitron (United States)'),
(38400, 32302, 'no_lang_code', 'name', 'International Mezzo Technologies (United States)'),
(38401, 32303, 'no_lang_code', 'name', 'Hentzen (United States)'),
(38402, 32304, 'no_lang_code', 'name', 'Imagination Engines (United States)'),
(38403, 32305, 'no_lang_code', 'name', 'Instrumental Sciences (United States)'),
(38404, 32306, 'no_lang_code', 'name', 'Heron Systems (United States)'),
(38405, 32307, 'no_lang_code', 'name', 'Illinois Tool Works (United States)'),
(38406, 32308, 'no_lang_code', 'name', 'HexaTech (United States)'),
(38407, 32309, 'no_lang_code', 'name', 'Integrated Adaptive Applications (United States)'),
(38408, 32310, 'no_lang_code', 'name', 'IAP Research (United States)'),
(38409, 32311, 'no_lang_code', 'name', 'Hi-Test Laboratories (United States)'),
(38410, 32312, 'no_lang_code', 'name', 'IBC Coatings Technologies (United States)'),
(38411, 32313, 'en', 'name', 'Guerci Consulting Services'),
(38412, 32314, 'no_lang_code', 'name', 'Imperium (United States)'),
(38413, 32315, 'no_lang_code', 'name', 'Energy Focus (United States)'),
(38414, 32316, 'no_lang_code', 'name', 'IMSAR (United States)'),
(38415, 32317, 'no_lang_code', 'name', 'IN Space (United States)'),
(38416, 32318, 'no_lang_code', 'name', 'Hill Engineering (United States)'),
(38417, 32319, 'no_lang_code', 'name', 'Integrated Software (United States)'),
(38418, 32320, 'no_lang_code', 'name', 'Integrated Solutions for Systems (United States)'),
(38419, 32321, 'no_lang_code', 'name', 'Indiana Microelectronics (United States)'),
(38420, 32322, 'no_lang_code', 'name', 'Integrity Applications Incorporated (United States)'),
(38421, 32323, 'no_lang_code', 'name', 'Thales (United States)'),
(38422, 32324, 'no_lang_code', 'name', 'Integument Technologies (United States)'),
(38423, 32325, 'no_lang_code', 'name', 'Thermacore (United States)'),
(38424, 32326, 'no_lang_code', 'name', 'Industrial Filter & Pump Manufacturing (United States)'),
(38425, 32327, 'no_lang_code', 'name', 'Intevac (United States)'),
(38426, 32328, 'no_lang_code', 'name', 'KVH Industries (United States)'),
(38427, 32329, 'no_lang_code', 'name', 'Industrial Measurement Systems (United States)'),
(38428, 32330, 'no_lang_code', 'name', 'Sensors (United States)'),
(38429, 32331, 'no_lang_code', 'name', 'Integrated Systems Solutions (United States)'),
(38430, 32332, 'no_lang_code', 'name', 'Industrial Planning Technology (United States)'),
(38431, 32333, 'no_lang_code', 'name', 'Morphix Technologies (United States)'),
(38432, 32334, 'no_lang_code', 'name', 'IntraMicron (United States)'),
(38433, 32335, 'no_lang_code', 'name', 'LNK (United States)'),
(38434, 32336, 'no_lang_code', 'name', 'IntelliEPI (United States)'),
(38435, 32337, 'no_lang_code', 'name', 'InferLink (United States)'),
(38436, 32338, 'no_lang_code', 'name', 'Intrinsix (United States)'),
(38437, 32339, 'no_lang_code', 'name', 'TEAM'),
(38438, 32340, 'no_lang_code', 'name', 'Qnergy (United States)'),
(38439, 32341, 'no_lang_code', 'name', 'L.Garde (United States)'),
(38440, 32342, 'no_lang_code', 'name', 'Epsilon Systems (United States)'),
(38441, 32343, 'no_lang_code', 'name', 'Lakota Technical Solutions (United States)'),
(38442, 32344, 'no_lang_code', 'name', 'Intelligent Models (United States)'),
(38443, 32345, 'no_lang_code', 'name', 'Kalos Technologies (United States)'),
(38444, 32346, 'no_lang_code', 'name', 'Intuitive Research and Technology Corporation (United States)'),
(38445, 32347, 'no_lang_code', 'name', 'Invariant Corporation (United States)'),
(38446, 32348, 'no_lang_code', 'name', 'Kalscott Engineering (United States)'),
(38447, 32349, 'no_lang_code', 'name', 'Lambda Instruments (United States)'),
(38448, 32350, 'no_lang_code', 'name', 'Orbotech (United States)'),
(38449, 32351, 'no_lang_code', 'name', 'Altamira Technologies'),
(38450, 32352, 'no_lang_code', 'name', 'Information Extraction & Transport (United States)'),
(38451, 32353, 'no_lang_code', 'name', 'InView Technology Corporation (United States)'),
(38452, 32354, 'no_lang_code', 'name', 'Lambda Science (United States)'),
(38453, 32355, 'no_lang_code', 'name', 'Information International Associates (United States)'),
(38454, 32356, 'no_lang_code', 'name', 'Invocon (United States)'),
(38455, 32357, 'no_lang_code', 'name', 'Viaspace (United States)'),
(38456, 32358, 'no_lang_code', 'name', 'Kalsi Engineering (United States)'),
(38457, 32359, 'no_lang_code', 'name', 'Karagozian & Case (United States)'),
(38458, 32360, 'no_lang_code', 'name', 'Intelligent Systems Research (United States)'),
(38459, 32361, 'no_lang_code', 'name', 'Integrated Photonics Technology (United States)'),
(38460, 32362, 'no_lang_code', 'name', 'Information Systems Laboratories (United States)'),
(38461, 32363, 'no_lang_code', 'name', 'Intelligent Systems Technology (United States)'),
(38462, 32364, 'no_lang_code', 'name', 'Lasen (United States)'),
(38463, 32365, 'no_lang_code', 'name', 'Irflex (United States)'),
(38464, 32366, 'no_lang_code', 'name', 'Plasan (United States)'),
(38465, 32367, 'no_lang_code', 'name', 'Iris Technology (United States)'),
(38466, 32368, 'no_lang_code', 'name', 'Information System Technologies (United States)'),
(38467, 32369, 'no_lang_code', 'name', 'iRobot (United States)'),
(38468, 32370, 'no_lang_code', 'name', 'KCF Technologies (United States)'),
(38469, 32371, 'no_lang_code', 'name', 'ISSAC (United States)'),
(38470, 32372, 'no_lang_code', 'name', 'Infrared Laboratories (United States)'),
(38471, 32373, 'no_lang_code', 'name', 'KLSS (United States)'),
(38472, 32374, 'no_lang_code', 'name', 'Innoflight (United States)'),
(38473, 32375, 'no_lang_code', 'name', 'Newport (United States)'),
(38474, 32376, 'no_lang_code', 'name', 'Maryland Aerospace (United States)'),
(38475, 32377, 'no_lang_code', 'name', 'J.B. Anderson & Son (United States)'),
(38476, 32378, 'no_lang_code', 'name', 'Interdisciplinary Consulting Corporation (United States)'),
(38477, 32379, 'no_lang_code', 'name', 'DragoonITCN (United States)'),
(38478, 32380, 'no_lang_code', 'name', '1Spatial (United States)'),
(38479, 32381, 'no_lang_code', 'name', 'J.A. Woollam Company (United States)'),
(38480, 32382, 'no_lang_code', 'name', 'Keystone Synergistic Enterprises (United States)'),
(38481, 32383, 'no_lang_code', 'name', 'InnovaTek (United States)'),
(38482, 32384, 'no_lang_code', 'name', 'Kigre (United States)'),
(38483, 32385, 'no_lang_code', 'name', 'International Association of Virtual Organizations (United States)'),
(38484, 32386, 'no_lang_code', 'name', 'International Electronic Machines (United States)'),
(38485, 32387, 'no_lang_code', 'name', 'Potawatomi Business Development (United States)'),
(38486, 32388, 'no_lang_code', 'name', 'Kinetic BEI (United States)'),
(38487, 32389, 'no_lang_code', 'name', 'Dynacast (United States)'),
(38488, 32390, 'no_lang_code', 'name', 'Innovative Configuration (United States)'),
(38489, 32391, 'no_lang_code', 'name', 'Kion Defense Technologies (United States)'),
(38490, 32392, 'no_lang_code', 'name', 'Laser Operations (United States)'),
(38491, 32393, 'no_lang_code', 'name', 'Innovative Defense Technologies (United States)'),
(38492, 32394, 'no_lang_code', 'name', 'APi Group (United States)'),
(38493, 32395, 'no_lang_code', 'name', 'JDLL (United States)'),
(38494, 32396, 'no_lang_code', 'name', 'JEM Engineering (United States)'),
(38495, 32397, 'no_lang_code', 'name', 'Innovative Dynamics (United States)'),
(38496, 32398, 'no_lang_code', 'name', 'Jentek Sensors (United States)'),
(38497, 32399, 'no_lang_code', 'name', 'Left Hand Design (United States)'),
(38498, 32400, 'no_lang_code', 'name', 'Littoral Research Group (United States)'),
(38499, 32401, 'no_lang_code', 'name', 'Innovative Research (United States)'),
(38500, 32402, 'no_lang_code', 'name', 'LiveData (United States)'),
(38501, 32403, 'no_lang_code', 'name', 'Level Set Systems (United States)'),
(38502, 32404, 'no_lang_code', 'name', 'Lewis Innovative Technologies (United States)'),
(38503, 32405, 'no_lang_code', 'name', 'Makel Engineering (United States)'),
(38504, 32406, 'no_lang_code', 'name', 'Knobley Technical Associates (United States)'),
(38505, 32407, 'no_lang_code', 'name', 'LoadPath (United States)'),
(38506, 32408, 'no_lang_code', 'name', 'Logikos (United States)'),
(38507, 32409, 'no_lang_code', 'name', 'Intelligent Light (United States)'),
(38508, 32410, 'no_lang_code', 'name', 'Communications & Power Industries (United States)'),
(38509, 32411, 'no_lang_code', 'name', 'Job Performance Systems (United States)'),
(38510, 32412, 'no_lang_code', 'name', 'UAV Turbines (United States)'),
(38511, 32413, 'no_lang_code', 'name', 'Li Creative Technologies (United States)'),
(38512, 32414, 'no_lang_code', 'name', 'Johnson Research & Development (United States)'),
(38513, 32415, 'no_lang_code', 'name', 'Management Sciences (United States)'),
(38514, 32416, 'no_lang_code', 'name', 'Logos Technologies (United States)'),
(38515, 32417, 'no_lang_code', 'name', 'OptiGrate (United States)'),
(38516, 32418, 'no_lang_code', 'name', 'MTS3 (United States)'),
(38517, 32419, 'no_lang_code', 'name', 'Loki (United States)'),
(38518, 32420, 'no_lang_code', 'name', 'Manning Applied Technology (United States)'),
(38519, 32421, 'no_lang_code', 'name', 'LightSpin Technologies (United States)'),
(38520, 32422, 'no_lang_code', 'name', 'Sierra Engineering (United States)'),
(38521, 32423, 'no_lang_code', 'name', 'Koo & Associates International (United States)'),
(38522, 32424, 'no_lang_code', 'name', 'Maritime Applied Physics Corporation (United States)'),
(38523, 32425, 'no_lang_code', 'name', 'Lowell Digisonde International (United States)'),
(38524, 32426, 'no_lang_code', 'name', 'MARK Resources (United States)'),
(38525, 32427, 'no_lang_code', 'name', 'Mercury Systems (United States)'),
(38526, 32428, 'no_lang_code', 'name', 'LPA Software Solutions (United States)'),
(38527, 32429, 'no_lang_code', 'name', 'Kord Technologies (United States)'),
(38528, 32430, 'no_lang_code', 'name', 'JRM Technologies (United States)'),
(38529, 32431, 'no_lang_code', 'name', 'LSP Technologies (United States)'),
(38530, 32432, 'no_lang_code', 'name', 'JX Crystals (United States)'),
(38531, 32433, 'no_lang_code', 'name', 'Marotta Controls (United States)'),
(38532, 32434, 'no_lang_code', 'name', 'Ludlum Measurements (United States)'),
(38533, 32435, 'no_lang_code', 'name', 'MaxPower (United States)'),
(38534, 32436, 'en', 'name', 'Harvard College Observatory'),
(38535, 32437, 'no_lang_code', 'name', 'LightWorks (United States)'),
(38536, 32438, 'no_lang_code', 'name', 'API Technologies (United States)'),
(38537, 32439, 'no_lang_code', 'name', 'Assa Abloy (United States)'),
(38538, 32440, 'no_lang_code', 'name', 'MAYA Design (United States)'),
(38539, 32441, 'no_lang_code', 'name', 'Linden Photonics (United States)'),
(38540, 32442, 'no_lang_code', 'name', 'Kulite (United States)'),
(38541, 32443, 'no_lang_code', 'name', 'Luminit (United States)'),
(38542, 32444, 'no_lang_code', 'name', 'Mayachitra (United States)'),
(38543, 32445, 'no_lang_code', 'name', 'Massa Products (United States)'),
(38544, 32446, 'no_lang_code', 'name', 'Mayflower Communications (United States)'),
(38545, 32447, 'no_lang_code', 'name', 'Lindsay Associates Architects (United States)'),
(38546, 32448, 'no_lang_code', 'name', 'McGaw Technology (United States)'),
(38547, 32449, 'no_lang_code', 'name', 'Metron (United States)'),
(38548, 32450, 'no_lang_code', 'name', 'Salutron (United States)'),
(38549, 32451, 'no_lang_code', 'name', 'Luxel (United States)'),
(38550, 32452, 'no_lang_code', 'name', 'Material Concepts (United States)'),
(38551, 32453, 'no_lang_code', 'name', 'McQ (United States)'),
(38552, 32454, 'no_lang_code', 'name', 'Metronome (United States)'),
(38553, 32455, 'no_lang_code', 'name', 'Material Innovations (United States)'),
(38554, 32456, 'no_lang_code', 'name', 'Linearizer Technology (United States)'),
(38555, 32457, 'no_lang_code', 'name', 'METSS (United States)'),
(38556, 32458, 'no_lang_code', 'name', 'Lumir Research Institute (United States)'),
(38557, 32459, 'no_lang_code', 'name', 'LinkNet (United States)'),
(38558, 32460, 'no_lang_code', 'name', 'Materials Processing (United States)'),
(38559, 32461, 'no_lang_code', 'name', 'Materials Research & Design (United States)'),
(38560, 32462, 'no_lang_code', 'name', 'LinQuest (United States)'),
(38561, 32463, 'no_lang_code', 'name', 'Springmatter (United States)'),
(38562, 32464, 'no_lang_code', 'name', 'Measurement Technology Northwest (United States)'),
(38563, 32465, 'no_lang_code', 'name', 'Mechanical Solutions (United States)'),
(38564, 32466, 'no_lang_code', 'name', 'Materials Research Institute (United States)'),
(38565, 32467, 'no_lang_code', 'name', 'Lite Machines (United States)'),
(38566, 32468, 'no_lang_code', 'name', 'Materials Sciences (United States)'),
(38567, 32469, 'no_lang_code', 'name', 'Proxim (United States)'),
(38568, 32470, 'no_lang_code', 'name', 'Azmark Aero System (United States)'),
(38569, 32471, 'no_lang_code', 'name', 'Materials Systems (United States)'),
(38570, 32472, 'no_lang_code', 'name', 'MegaWave (United States)'),
(38571, 32473, 'no_lang_code', 'name', 'Materials Technologies (United States)'),
(38572, 32474, 'no_lang_code', 'name', 'M. Alexander Nugent Consulting (United States)'),
(38573, 32475, 'no_lang_code', 'name', 'Micro Cooling Concepts (United States)'),
(38574, 32476, 'no_lang_code', 'name', 'Mathematical Systems & Solutions (United States)'),
(38575, 32477, 'no_lang_code', 'name', 'M4 Engineering (United States)'),
(38576, 32478, 'no_lang_code', 'name', 'MicroAssembly Technologies (United States)'),
(38577, 32479, 'no_lang_code', 'name', 'MWT Materials (United States)'),
(38578, 32480, 'no_lang_code', 'name', 'Mach I (United States)'),
(38579, 32481, 'no_lang_code', 'name', 'Menon International (United States)'),
(38580, 32482, 'no_lang_code', 'name', 'PTC (United States)'),
(38581, 32483, 'no_lang_code', 'name', 'Mentis Sciences (United States)'),
(38582, 32484, 'no_lang_code', 'name', 'Mathtech (United States)'),
(38583, 32485, 'en', 'name', 'Mentor Technologies'),
(38584, 32486, 'no_lang_code', 'name', 'Matrix Research (United States)'),
(38585, 32487, 'no_lang_code', 'name', 'Matsys (United States)'),
(38586, 32488, 'no_lang_code', 'name', 'MagiQ Technologies (United States)'),
(38587, 32489, 'no_lang_code', 'name', 'Microcom (United States)'),
(38588, 32490, 'no_lang_code', 'name', 'Maverick (United States)'),
(38589, 32491, 'no_lang_code', 'name', 'MESH (United States)'),
(38590, 32492, 'no_lang_code', 'name', 'Magnolia Optical Technologies (United States)'),
(38591, 32493, 'no_lang_code', 'name', 'MicroContinuum (United States)'),
(38592, 32494, 'no_lang_code', 'name', 'Smiths Interconnect (United States)'),
(38593, 32495, 'no_lang_code', 'name', 'Abakan (United States)'),
(38594, 32496, 'no_lang_code', 'name', 'MaXentric Technologies (United States)'),
(38595, 32497, 'no_lang_code', 'name', 'Magnolia Solar (United States)'),
(38596, 32498, 'no_lang_code', 'name', 'MTECH Laboratories (United States)'),
(38597, 32499, 'no_lang_code', 'name', 'Microelectronics Research Development (United States)'),
(38598, 32500, 'no_lang_code', 'name', 'Ballard Power Systems (United States)'),
(38599, 32501, 'no_lang_code', 'name', 'CACI International (United States)'),
(38600, 32502, 'no_lang_code', 'name', 'VT Systems (United States)'),
(38601, 32503, 'no_lang_code', 'name', 'MesoScribe Technologies (United States)'),
(38602, 32504, 'no_lang_code', 'name', 'Makai Ocean Engineering (United States)'),
(38603, 32505, 'no_lang_code', 'name', 'Ducommun (United States)'),
(38604, 32506, 'no_lang_code', 'name', 'MTS Technologies (United States)'),
(38605, 32507, 'no_lang_code', 'name', 'Metacomp Technologies (United States)'),
(38606, 32508, 'no_lang_code', 'name', 'Mudawar Thermal Systems (United States)'),
(38607, 32509, 'no_lang_code', 'name', 'Nelson Engineering (United States)'),
(38608, 32510, 'no_lang_code', 'name', 'Minerva Systems & Technologies (United States)'),
(38609, 32511, 'no_lang_code', 'name', 'Metal Oxide Technologies (United States)'),
(38610, 32512, 'no_lang_code', 'name', 'Zebra Technologies (United States)'),
(38611, 32513, 'no_lang_code', 'name', 'Microphase Coatings (United States)'),
(38612, 32514, 'no_lang_code', 'name', 'Minnesota Wire (United States)'),
(38613, 32515, 'no_lang_code', 'name', 'Metis Design Corporation (United States)'),
(38614, 32516, 'no_lang_code', 'name', 'Optonicus (United States)'),
(38615, 32517, 'no_lang_code', 'name', 'Net Squared (United States)'),
(38616, 32518, 'no_lang_code', 'name', 'MicroVision (United States)'),
(38617, 32519, 'no_lang_code', 'name', 'Metna (United States)'),
(38618, 32520, 'no_lang_code', 'name', 'Microwave Bonding Instruments (United States)'),
(38619, 32521, 'no_lang_code', 'name', 'Microwave Monolithics (United States)'),
(38620, 32522, 'no_lang_code', 'name', 'Network Sensing Technologies (United States)'),
(38621, 32523, 'no_lang_code', 'name', 'Metric Systems Corporation (United States)'),
(38622, 32524, 'no_lang_code', 'name', 'MicroXact (United States)'),
(38623, 32525, 'no_lang_code', 'name', 'MYMIC (United States)'),
(38624, 32526, 'no_lang_code', 'name', 'Solvay (United States)'),
(38625, 32527, 'no_lang_code', 'name', 'Mirion Technologies (United States)'),
(38626, 32528, 'no_lang_code', 'name', 'MZA Associates (United States)'),
(38627, 32529, 'no_lang_code', 'name', 'Neva Ridge Technologies (United States)'),
(38628, 32530, 'no_lang_code', 'name', 'MidƩ Technology (United States)'),
(38629, 32531, 'no_lang_code', 'name', 'New England Research (United States)'),
(38630, 32532, 'no_lang_code', 'name', 'MKP Structural Design Associates (United States)'),
(38631, 32533, 'no_lang_code', 'name', 'mZeal Communications (United States)'),
(38632, 32534, 'no_lang_code', 'name', 'Migma (United States)'),
(38633, 32535, 'no_lang_code', 'name', 'MMA Design (United States)'),
(38634, 32536, 'no_lang_code', 'name', 'NAL Research (United States)'),
(38635, 32537, 'no_lang_code', 'name', 'Nu-Trek (United States)'),
(38636, 32538, 'no_lang_code', 'name', 'Next Century Corporation (United States)'),
(38637, 32539, 'no_lang_code', 'name', 'Morcom International (United States)'),
(38638, 32540, 'no_lang_code', 'name', 'MMICMAN (United States)'),
(38639, 32541, 'no_lang_code', 'name', 'NextGen Aeronautics (United States)'),
(38640, 32542, 'no_lang_code', 'name', 'Mobile Intelligence (United States)'),
(38641, 32543, 'no_lang_code', 'name', 'Vesta Sciences (United States)'),
(38642, 32544, 'no_lang_code', 'name', 'Mikros Systems (United States)'),
(38643, 32545, 'no_lang_code', 'name', 'Neya Systems (United States)'),
(38644, 32546, 'no_lang_code', 'name', 'Modern Technology Solutions (United States)'),
(38645, 32547, 'no_lang_code', 'name', 'Milcord (United States)'),
(38646, 32548, 'no_lang_code', 'name', 'Nalas Engineering Services (United States)'),
(38647, 32549, 'no_lang_code', 'name', 'Modus Operandi (United States)'),
(38648, 32550, 'no_lang_code', 'name', 'Nico Technologies (United States)'),
(38649, 32551, 'no_lang_code', 'name', 'NanoLab (United States)'),
(38650, 32552, 'no_lang_code', 'name', 'MOHR Test and Measurement (United States)'),
(38651, 32553, 'no_lang_code', 'name', 'NuCrypt (United States)'),
(38652, 32554, 'no_lang_code', 'name', 'Nielsen Engineering & Research (United States)'),
(38653, 32555, 'no_lang_code', 'name', 'NumerEx (United States)'),
(38654, 32556, 'no_lang_code', 'name', 'Monterey Technologies (United States)'),
(38655, 32557, 'no_lang_code', 'name', 'Innosys (United States)'),
(38656, 32558, 'no_lang_code', 'name', 'Numerica Corporation (United States)'),
(38657, 32559, 'no_lang_code', 'name', 'Nanophase Technologies (United States)'),
(38658, 32560, 'no_lang_code', 'name', 'Millennium Engineering and Integration (United States)'),
(38659, 32561, 'no_lang_code', 'name', 'Morton Photonics (United States)'),
(38660, 32562, 'no_lang_code', 'name', 'MACOM (United States)'),
(38661, 32563, 'no_lang_code', 'name', 'Mosaic ATM (United States)'),
(38662, 32564, 'no_lang_code', 'name', 'Nanotrons (United States)'),
(38663, 32565, 'no_lang_code', 'name', 'Nutronics (United States)'),
(38664, 32566, 'no_lang_code', 'name', 'Phillips Service Industries (United States)'),
(38665, 32567, 'no_lang_code', 'name', 'Nlogic (United States)'),
(38666, 32568, 'no_lang_code', 'name', 'Systems & Processes Engineering Corporation (United States)'),
(38667, 32569, 'no_lang_code', 'name', 'NuWaves Engineering (United States)'),
(38668, 32570, 'no_lang_code', 'name', 'NDI Engineering Company (United States)'),
(38669, 32571, 'no_lang_code', 'name', 'Noisecom (United States)'),
(38670, 32572, 'no_lang_code', 'name', 'Nokomis (United States)'),
(38671, 32573, 'no_lang_code', 'name', 'Near Earth Autonomy (United States)'),
(38672, 32574, 'no_lang_code', 'name', 'Omnitek Partners (United States)'),
(38673, 32575, 'no_lang_code', 'name', 'ObjectVideo (United States)'),
(38674, 32576, 'no_lang_code', 'name', 'Orbit Logic (United States)'),
(38675, 32577, 'no_lang_code', 'name', 'STARR Life Sciences (United States)'),
(38676, 32578, 'no_lang_code', 'name', 'Ocean Acoustical Services and Instrumentation Systems (United States)'),
(38677, 32579, 'no_lang_code', 'name', 'Ontar (United States)'),
(38678, 32580, 'no_lang_code', 'name', 'InterSyn Technologies (United States)'),
(38679, 32581, 'no_lang_code', 'name', 'Onyx Optics (United States)'),
(38680, 32582, 'en', 'name', 'Montana Economic Revitalization and Development Institute'),
(38681, 32583, 'no_lang_code', 'name', 'Ocean Power Technologies (United States)'),
(38682, 32584, 'no_lang_code', 'name', 'Ordela (United States)'),
(38683, 32585, 'no_lang_code', 'name', 'Nova Management (United States)'),
(38684, 32586, 'no_lang_code', 'name', 'Orielle (United States)'),
(38685, 32587, 'no_lang_code', 'name', 'NovaSpectra (United States)'),
(38686, 32588, 'no_lang_code', 'name', 'Iteris (United States)'),
(38687, 32589, 'no_lang_code', 'name', 'Novatio Engineering (United States)'),
(38688, 32590, 'no_lang_code', 'name', 'Ormond (United States)'),
(38689, 32591, 'no_lang_code', 'name', 'Peregrine Falcon (United States)'),
(38690, 32592, 'no_lang_code', 'name', 'POET Technologies (United States)'),
(38691, 32593, 'no_lang_code', 'name', 'Nscrypt (United States)'),
(38692, 32594, 'no_lang_code', 'name', 'Orono Spectral Solutions (United States)'),
(38693, 32595, 'no_lang_code', 'name', 'Orora Design Technologies (United States)'),
(38694, 32596, 'no_lang_code', 'name', 'Murata (United States)'),
(38695, 32597, 'no_lang_code', 'name', 'Riverbed (United States)'),
(38696, 32598, 'no_lang_code', 'name', 'Osborne & Associates (United States)'),
(38697, 32599, 'no_lang_code', 'name', 'Out of the Fog Research (United States)'),
(38698, 32600, 'no_lang_code', 'name', 'Proof Research (United States)'),
(38699, 32601, 'no_lang_code', 'name', 'Odyssian Technology (United States)'),
(38700, 32602, 'no_lang_code', 'name', 'OEwaves (United States)'),
(38701, 32603, 'en', 'name', 'Ogden Engineering & Associates'),
(38702, 32604, 'no_lang_code', 'name', 'Corporate Executive Board (United States)'),
(38703, 32605, 'no_lang_code', 'name', 'Oxazogen (United States)'),
(38704, 32606, 'no_lang_code', 'name', 'Optellios (United States)'),
(38705, 32607, 'no_lang_code', 'name', 'PC Krause & Associates (United States)'),
(38706, 32608, 'no_lang_code', 'name', 'Technology Service Corporation (United States)'),
(38707, 32609, 'no_lang_code', 'name', 'Phase Sensitive Innovations (United States)'),
(38708, 32610, 'no_lang_code', 'name', 'Omega Piezo Technologies (United States)'),
(38709, 32611, 'no_lang_code', 'name', 'PAT Industries (United States)'),
(38710, 32612, 'no_lang_code', 'name', 'PhaseSpace (United States)'),
(38711, 32613, 'no_lang_code', 'name', 'PHDS (United States)'),
(38712, 32614, 'no_lang_code', 'name', 'Optical Engines (United States)'),
(38713, 32615, 'no_lang_code', 'name', 'Princeton Satellite Systems (United States)'),
(38714, 32616, 'no_lang_code', 'name', 'Pacific Engineering (United States)'),
(38715, 32617, 'no_lang_code', 'name', 'Optical Physics Company (United States)'),
(38716, 32618, 'no_lang_code', 'name', 'Princeton Scientific (United States)'),
(38717, 32619, 'no_lang_code', 'name', 'Plasma Processes (United States)'),
(38718, 32620, 'no_lang_code', 'name', 'Pacific Rim Engineering (United States)'),
(38719, 32621, 'no_lang_code', 'name', 'Optical Sciences (United States)'),
(38720, 32622, 'no_lang_code', 'name', 'Richardson Electronics (United States)'),
(38721, 32623, 'no_lang_code', 'name', 'Plasma Technology (United States)'),
(38722, 32624, 'no_lang_code', 'name', 'Torch Hill Investment Partners (United States)'),
(38723, 32625, 'no_lang_code', 'name', 'MS Technology (United States)'),
(38724, 32626, 'no_lang_code', 'name', 'Pioneer Astronautics (United States)'),
(38725, 32627, 'no_lang_code', 'name', 'Pioneering Decisive Solutions (United States)'),
(38726, 32628, 'no_lang_code', 'name', 'Safran (United States)'),
(38727, 32629, 'no_lang_code', 'name', 'PlainSight Group (United States)'),
(38728, 32630, 'no_lang_code', 'name', 'Prism Computational Sciences (United States)'),
(38729, 32631, 'no_lang_code', 'name', 'Professional Analysis (United States)'),
(38730, 32632, 'no_lang_code', 'name', 'Plasmonics (United States)'),
(38731, 32633, 'no_lang_code', 'name', 'Photon-X (United States)'),
(38732, 32634, 'no_lang_code', 'name', 'PrivaTran (United States)'),
(38733, 32635, 'no_lang_code', 'name', 'Rolta (United States)'),
(38734, 32636, 'no_lang_code', 'name', 'Pro-Tech Design & Manufacturing (United States)'),
(38735, 32637, 'no_lang_code', 'name', 'Optimal Synthesis (United States)'),
(38736, 32638, 'no_lang_code', 'name', 'Paragon Space Development Corporation (United States)'),
(38737, 32639, 'no_lang_code', 'name', 'Parallax Research (United States)'),
(38738, 32640, 'no_lang_code', 'name', 'Optimax (United States)'),
(38739, 32641, 'no_lang_code', 'name', 'Process Instruments (United States)'),
(38740, 32642, 'no_lang_code', 'name', 'Defense Holdings (United States)'),
(38741, 32643, 'no_lang_code', 'name', 'Optimization Technology (United States)'),
(38742, 32644, 'no_lang_code', 'name', 'ParaTools (United States)'),
(38743, 32645, 'no_lang_code', 'name', 'PnP Innovations (United States)'),
(38744, 32646, 'no_lang_code', 'name', 'Production Products (United States)'),
(38745, 32647, 'no_lang_code', 'name', 'POC Tech Group (United States)'),
(38746, 32648, 'no_lang_code', 'name', 'Halliburton (United States)'),
(38747, 32649, 'no_lang_code', 'name', 'Polaris Sensor Technologies (United States)'),
(38748, 32650, 'no_lang_code', 'name', 'Phygen (United States)'),
(38749, 32651, 'no_lang_code', 'name', 'OptiPro Systems (United States)'),
(38750, 32652, 'no_lang_code', 'name', 'PartTec (United States)'),
(38751, 32653, 'no_lang_code', 'name', 'Polatin Corporation (United States)'),
(38752, 32654, 'no_lang_code', 'name', 'Pathfinder Systems (United States)'),
(38753, 32655, 'no_lang_code', 'name', 'Opto-Knowledge Systems (United States)'),
(38754, 32656, 'no_lang_code', 'name', 'PolyK Technologies (United States)'),
(38755, 32657, 'no_lang_code', 'name', 'Polymer Aging Concepts (United States)'),
(38756, 32658, 'no_lang_code', 'name', 'Polymeright (United States)'),
(38757, 32659, 'no_lang_code', 'name', 'OR Concepts Applied (United States)'),
(38758, 32660, 'no_lang_code', 'name', 'Professional Services Group (United States)'),
(38759, 32661, 'no_lang_code', 'name', 'PolymerPlus (United States)'),
(38760, 32662, 'no_lang_code', 'name', 'Mechmath (United States)'),
(38761, 32663, 'no_lang_code', 'name', 'ORB Analytics (United States)'),
(38762, 32664, 'no_lang_code', 'name', 'Memtronics (United States)'),
(38763, 32665, 'no_lang_code', 'name', 'Sotera Defense Solutions (United States)'),
(38764, 32666, 'no_lang_code', 'name', 'Physics, Materials and Applied Mathematics Research (United States)'),
(38765, 32667, 'no_lang_code', 'name', 'PDF Solutions (United States)'),
(38766, 32668, 'no_lang_code', 'name', 'Avigilon (United States)'),
(38767, 32669, 'no_lang_code', 'name', 'Physitron (United States)'),
(38768, 32670, 'no_lang_code', 'name', 'Prometheus (United States)'),
(38769, 32671, 'no_lang_code', 'name', 'Propagation Research Associates (United States)'),
(38770, 32672, 'no_lang_code', 'name', 'Peerless Technologies (United States)'),
(38771, 32673, 'no_lang_code', 'name', 'PEL Associates (United States)'),
(38772, 32674, 'no_lang_code', 'name', 'Propulsion Science and Technology (United States)'),
(38773, 32675, 'no_lang_code', 'name', 'Pragati Synergetic Research (United States)'),
(38774, 32676, 'no_lang_code', 'name', 'IQE (United States)'),
(38775, 32677, 'no_lang_code', 'name', 'PROTO Manufacturing (United States)'),
(38776, 32678, 'no_lang_code', 'name', 'Quantum Group (United States)'),
(38777, 32679, 'no_lang_code', 'name', 'RE2 (United States)'),
(38778, 32680, 'no_lang_code', 'name', 'Quantum Intelligence (United States)'),
(38779, 32681, 'no_lang_code', 'name', 'Reaction Systems (United States)'),
(38780, 32682, 'no_lang_code', 'name', 'Quantum Leap Innovations (United States)'),
(38781, 32683, 'no_lang_code', 'name', 'Real-Time Innovations (United States)'),
(38782, 32684, 'no_lang_code', 'name', 'LGL Group (United States)'),
(38783, 32685, 'no_lang_code', 'name', 'Prediction Systems (United States)'),
(38784, 32686, 'no_lang_code', 'name', 'Quantum Signal (United States)'),
(38785, 32687, 'no_lang_code', 'name', 'Q-Peak (United States)'),
(38786, 32688, 'no_lang_code', 'name', 'Arotech (United States)'),
(38787, 32689, 'no_lang_code', 'name', 'Premier Coatings (United States)'),
(38788, 32690, 'no_lang_code', 'name', 'Quasonix (United States)'),
(38789, 32691, 'no_lang_code', 'name', 'RBC Technologies (United States)'),
(38790, 32692, 'no_lang_code', 'name', 'PreTalen (United States)'),
(38791, 32693, 'no_lang_code', 'name', 'QmagiQ (United States)'),
(38792, 32694, 'no_lang_code', 'name', 'QorTek (United States)'),
(38793, 32695, 'no_lang_code', 'name', 'QRDc (United States)'),
(38794, 32696, 'no_lang_code', 'name', 'Qualtech Systems Incorporation (United States)'),
(38795, 32697, 'no_lang_code', 'name', 'QuantaSpec (United States)'),
(38796, 32698, 'no_lang_code', 'name', 'QuickFlex (United States)'),
(38797, 32699, 'no_lang_code', 'name', 'RedZone Robotics (United States)'),
(38798, 32700, 'no_lang_code', 'name', 'RNET Technologies (United States)'),
(38799, 32701, 'no_lang_code', 'name', 'Princeton Lightwave (United States)'),
(38800, 32702, 'no_lang_code', 'name', 'Referentia Systems (United States)');
INSERT INTO `ror_settings` VALUES
(38801, 32703, 'no_lang_code', 'name', 'Princeton Microwave Technology (United States)'),
(38802, 32704, 'no_lang_code', 'name', 'Robert Heffley Engineering (United States)'),
(38803, 32705, 'no_lang_code', 'name', 'QuinStar Technology (United States)'),
(38804, 32706, 'no_lang_code', 'name', 'Robotic Research (United States)'),
(38805, 32707, 'no_lang_code', 'name', 'Robotics Research (United States)'),
(38806, 32708, 'no_lang_code', 'name', 'Robust Chip (United States)'),
(38807, 32709, 'no_lang_code', 'name', 'Qunav (United States)'),
(38808, 32710, 'no_lang_code', 'name', 'Rock West Solutions (United States)'),
(38809, 32711, 'no_lang_code', 'name', 'Reliable System Services (United States)'),
(38810, 32712, 'no_lang_code', 'name', 'ReliaCoat Technologies (United States)'),
(38811, 32713, 'no_lang_code', 'name', 'Remcom (United States)'),
(38812, 32714, 'no_lang_code', 'name', 'Jarden (United States)'),
(38813, 32715, 'no_lang_code', 'name', 'Ross-Hime Designs (United States)'),
(38814, 32716, 'no_lang_code', 'name', 'Science and Technology Applications (United States)'),
(38815, 32717, 'no_lang_code', 'name', 'Quantum Dimension (United States)'),
(38816, 32718, 'no_lang_code', 'name', 'Scientic (United States)'),
(38817, 32719, 'no_lang_code', 'name', 'Scientific Applications & Research Associates (United States)'),
(38818, 32720, 'no_lang_code', 'name', 'R&D Dynamics (United States)'),
(38819, 32721, 'no_lang_code', 'name', 'Rotordynamics-Seal Research (United States)'),
(38820, 32722, 'no_lang_code', 'name', 'Securboration (United States)'),
(38821, 32723, 'no_lang_code', 'name', 'RemoteReality (United States)'),
(38822, 32724, 'no_lang_code', 'name', 'RPA Electronic Solutions (United States)'),
(38823, 32725, 'no_lang_code', 'name', 'Remtech (United States)'),
(38824, 32726, 'no_lang_code', 'name', 'Radiance Technologies (United States)'),
(38825, 32727, 'no_lang_code', 'name', 'Renaissance Sciences Corporation (United States)'),
(38826, 32728, 'no_lang_code', 'name', 'Radiant Research (United States)'),
(38827, 32729, 'no_lang_code', 'name', 'Renegade Materials Corporation (United States)'),
(38828, 32730, 'no_lang_code', 'name', 'Scientific Data Systems (United States)'),
(38829, 32731, 'no_lang_code', 'name', 'Rugate Technologies (United States)'),
(38830, 32732, 'no_lang_code', 'name', 'Research Applications Corporation (United States)'),
(38831, 32733, 'no_lang_code', 'name', 'Sedna Digital Solutions (United States)'),
(38832, 32734, 'no_lang_code', 'name', 'Blatek (United States)'),
(38833, 32735, 'no_lang_code', 'name', 'Seemann Composites (United States)'),
(38834, 32736, 'no_lang_code', 'name', 'Select Engineering Services (United States)'),
(38835, 32737, 'en', 'name', 'Research Associates of Syracuse'),
(38836, 32738, 'no_lang_code', 'name', 'Scientific Forming Technologies Corporation (United States)'),
(38837, 32739, 'no_lang_code', 'name', 'Selee Corporation (United States)'),
(38838, 32740, 'no_lang_code', 'name', 'Semantic Designs (United States)'),
(38839, 32741, 'no_lang_code', 'name', 'SA Photonics (United States)'),
(38840, 32742, 'no_lang_code', 'name', 'Research Network (United States)'),
(38841, 32743, 'no_lang_code', 'name', 'Semerane (United States)'),
(38842, 32744, 'no_lang_code', 'name', 'Research Support Instruments (United States)'),
(38843, 32745, 'no_lang_code', 'name', 'Safe (United States)'),
(38844, 32746, 'no_lang_code', 'name', 'Sensera (United States)'),
(38845, 32747, 'no_lang_code', 'name', 'Reservoir Labs (United States)'),
(38846, 32748, 'no_lang_code', 'name', 'Rainbow Communications (United States)'),
(38847, 32749, 'no_lang_code', 'name', 'Sensing Strategies Incorporation (United States)'),
(38848, 32750, 'no_lang_code', 'name', 'RAM Laboratories (United States)'),
(38849, 32751, 'no_lang_code', 'name', 'RAM Photonics (United States)'),
(38850, 32752, 'no_lang_code', 'name', 'Sage Technologies (United States)'),
(38851, 32753, 'no_lang_code', 'name', 'Rether Networks (United States)'),
(38852, 32754, 'no_lang_code', 'name', 'Scientific Solutions Innovative Research and Engineering (United States)'),
(38853, 32755, 'no_lang_code', 'name', 'Saab (United States)'),
(38854, 32756, 'no_lang_code', 'name', 'Sage Technologies (United States)'),
(38855, 32757, 'no_lang_code', 'name', 'Scientific Systems (United States)'),
(38856, 32758, 'no_lang_code', 'name', 'San Diego Composites (United States)'),
(38857, 32759, 'no_lang_code', 'name', 'Reynard Corporation (United States)'),
(38858, 32760, 'no_lang_code', 'name', 'Sensor Concepts (United States)'),
(38859, 32761, 'no_lang_code', 'name', 'Sanova (United States)'),
(38860, 32762, 'no_lang_code', 'name', 'Scientific Simulations (United States)'),
(38861, 32763, 'no_lang_code', 'name', 'SensorMetrix (United States)'),
(38862, 32764, 'no_lang_code', 'name', 'Sentar (United States)'),
(38863, 32765, 'no_lang_code', 'name', 'SciTec (United States)'),
(38864, 32766, 'no_lang_code', 'name', 'Ultramed (United States)'),
(38865, 32767, 'no_lang_code', 'name', 'Sapien Systems (United States)'),
(38866, 32768, 'no_lang_code', 'name', 'RGS Associates (United States)'),
(38867, 32769, 'no_lang_code', 'name', 'Sentient Science (United States)'),
(38868, 32770, 'no_lang_code', 'name', 'RBS Technologies (United States)'),
(38869, 32771, 'no_lang_code', 'name', 'RHAMM Technologies (United States)'),
(38870, 32772, 'en', 'name', 'Saxet Surface Science'),
(38871, 32773, 'no_lang_code', 'name', 'DigiLens (United States)'),
(38872, 32774, 'no_lang_code', 'name', 'Ridgetop Group (United States)'),
(38873, 32775, 'no_lang_code', 'name', 'RCT Systems (United States)'),
(38874, 32776, 'no_lang_code', 'name', 'SCA Technica (United States)'),
(38875, 32777, 'no_lang_code', 'name', 'Scope Group (United States)'),
(38876, 32778, 'no_lang_code', 'name', 'RINI Technologies (United States)'),
(38877, 32779, 'no_lang_code', 'name', 'SCS Engineers (United States)'),
(38878, 32780, 'no_lang_code', 'name', 'Rite-Solutions (United States)'),
(38879, 32781, 'no_lang_code', 'name', 'Shape Change Technologies (United States)'),
(38880, 32782, 'no_lang_code', 'name', 'RDA (United States)'),
(38881, 32783, 'no_lang_code', 'name', 'RDL (United States)'),
(38882, 32784, 'no_lang_code', 'name', 'SdPhotonics (United States)'),
(38883, 32785, 'no_lang_code', 'name', 'Shared Spectrum Company (United States)'),
(38884, 32786, 'no_lang_code', 'name', 'RDRtec (United States)'),
(38885, 32787, 'no_lang_code', 'name', 'SDS International (United States)'),
(38886, 32788, 'no_lang_code', 'name', 'Nuvera Biosciences (United States)'),
(38887, 32789, 'no_lang_code', 'name', 'Shear Form (United States)'),
(38888, 32790, 'no_lang_code', 'name', 'Space Micro (United States)'),
(38889, 32791, 'no_lang_code', 'name', 'Silicon Designs (United States)'),
(38890, 32792, 'no_lang_code', 'name', 'Space Photonics (United States)'),
(38891, 32793, 'no_lang_code', 'name', 'SI2 Technologies (United States)'),
(38892, 32794, 'no_lang_code', 'name', 'Stellar Science (United States)'),
(38893, 32795, 'no_lang_code', 'name', 'Vorago Technologies (United States)'),
(38894, 32796, 'no_lang_code', 'name', 'SICOM Systems (United States)'),
(38895, 32797, 'no_lang_code', 'name', 'SpaceTech (United States)'),
(38896, 32798, 'no_lang_code', 'name', 'Silicon Technologies (United States)'),
(38897, 32799, 'no_lang_code', 'name', 'Sienna Technologies (United States)'),
(38898, 32800, 'no_lang_code', 'name', 'Sierra Lobo (United States)'),
(38899, 32801, 'no_lang_code', 'name', 'Silvus Technologies (United States)'),
(38900, 32802, 'no_lang_code', 'name', 'Stiefvater Consultants (United States)'),
(38901, 32803, 'no_lang_code', 'name', 'Semtech (United States)'),
(38902, 32804, 'no_lang_code', 'name', 'Stilman Advanced Strategies (United States)'),
(38903, 32805, 'no_lang_code', 'name', 'Stirling Dynamics (United States)'),
(38904, 32806, 'no_lang_code', 'name', 'SeaLandAire Technologies (United States)'),
(38905, 32807, 'no_lang_code', 'name', 'Safety Dynamics (United States)'),
(38906, 32808, 'no_lang_code', 'name', 'Omega Micro Technologies (United States)'),
(38907, 32809, 'no_lang_code', 'name', 'Symplectic Engineering Corporation (United States)'),
(38908, 32810, 'no_lang_code', 'name', 'Symvionics (United States)'),
(38909, 32811, 'no_lang_code', 'name', 'Sigma-K (United States)'),
(38910, 32812, 'no_lang_code', 'name', 'StratEdge (United States)'),
(38911, 32813, 'no_lang_code', 'name', 'Strategic Insight (United States)'),
(38912, 32814, 'no_lang_code', 'name', 'Streamline Automation (United States)'),
(38913, 32815, 'no_lang_code', 'name', 'Synectics (United States)'),
(38914, 32816, 'no_lang_code', 'name', 'Synergia (United States)'),
(38915, 32817, 'no_lang_code', 'name', 'Signal Processing (United States)'),
(38916, 32818, 'no_lang_code', 'name', 'Signal Systems Corporation (United States)'),
(38917, 32819, 'no_lang_code', 'name', 'Signature Research (United States)'),
(38918, 32820, 'no_lang_code', 'name', 'Streamline Numerics (United States)'),
(38919, 32821, 'no_lang_code', 'name', 'Structural Analytics (United States)'),
(38920, 32822, 'no_lang_code', 'name', 'Syntonics (United States)'),
(38921, 32823, 'no_lang_code', 'name', 'Technical Data Analysis (United States)'),
(38922, 32824, 'no_lang_code', 'name', 'Simpson Weather Associates (United States)'),
(38923, 32825, 'no_lang_code', 'name', 'Spectra Research (United States)'),
(38924, 32826, 'no_lang_code', 'name', 'Sturman Industries (United States)'),
(38925, 32827, 'no_lang_code', 'name', 'Technical Directions Incorporation (United States)'),
(38926, 32828, 'no_lang_code', 'name', 'Sukra Helitek (United States)'),
(38927, 32829, 'no_lang_code', 'name', 'SySense (United States)'),
(38928, 32830, 'no_lang_code', 'name', 'Spectral Imaging Laboratory (United States)'),
(38929, 32831, 'no_lang_code', 'name', 'Technical Products Incorporation (United States)'),
(38930, 32832, 'no_lang_code', 'name', 'SunDanzer (United States)'),
(38931, 32833, 'no_lang_code', 'name', 'Simulation Technologies (United States)'),
(38932, 32834, 'no_lang_code', 'name', 'System Planning Corporation (United States)'),
(38933, 32835, 'no_lang_code', 'name', 'Sunol Sciences Corporation (United States)'),
(38934, 32836, 'no_lang_code', 'name', 'Systems & Materials Research Corporation (United States)'),
(38935, 32837, 'no_lang_code', 'name', 'Spectranetix (United States)'),
(38936, 32838, 'no_lang_code', 'name', 'SimVentions (United States)'),
(38937, 32839, 'no_lang_code', 'name', 'Sunrez (United States)'),
(38938, 32840, 'no_lang_code', 'name', 'Systems Dynamics (United States)'),
(38939, 32841, 'no_lang_code', 'name', 'SimWright (United States)'),
(38940, 32842, 'no_lang_code', 'name', 'SM&A (United States)'),
(38941, 32843, 'no_lang_code', 'name', 'Sivananthan Laboratories (United States)'),
(38942, 32844, 'no_lang_code', 'name', 'Spectrum Magnetics (United States)'),
(38943, 32845, 'no_lang_code', 'name', 'Skinfrared (United States)'),
(38944, 32846, 'no_lang_code', 'name', 'SCS Engineering (United States)'),
(38945, 32847, 'no_lang_code', 'name', 'Spectrum Photonics (United States)'),
(38946, 32848, 'no_lang_code', 'name', 'SkuTek Instrumentation (United States)'),
(38947, 32849, 'no_lang_code', 'name', 'Spencer Industries (United States)'),
(38948, 32850, 'no_lang_code', 'name', 'SkySight Technologies (United States)'),
(38949, 32851, 'no_lang_code', 'name', 'Systems Planning and Analysis (United States)'),
(38950, 32852, 'no_lang_code', 'name', 'Sperient (United States)'),
(38951, 32853, 'no_lang_code', 'name', 'Oxford Instruments (United States)'),
(38952, 32854, 'no_lang_code', 'name', 'Support Systems Associates (United States)'),
(38953, 32855, 'no_lang_code', 'name', 'SPI Surgical (United States)'),
(38954, 32856, 'no_lang_code', 'name', 'Softronics (United States)'),
(38955, 32857, 'no_lang_code', 'name', 'Sytronics (United States)'),
(38956, 32858, 'no_lang_code', 'name', 'Spiritech Advanced Products (United States)'),
(38957, 32859, 'no_lang_code', 'name', 'Surface Optics (United States)'),
(38958, 32860, 'no_lang_code', 'name', 'Software and Engineering Associates (United States)'),
(38959, 32861, 'no_lang_code', 'name', 'Sporian Microsystems (United States)'),
(38960, 32862, 'no_lang_code', 'name', 'Systima Technologies (United States)'),
(38961, 32863, 'no_lang_code', 'name', 'Surface Treatment Technologies (United States)'),
(38962, 32864, 'no_lang_code', 'name', 'Technology for Energy Corporation (United States)'),
(38963, 32865, 'no_lang_code', 'name', 'Spytek Aerospace (United States)'),
(38964, 32866, 'no_lang_code', 'name', 'SoHaR (United States)'),
(38965, 32867, 'no_lang_code', 'name', 'Surmet (United States)'),
(38966, 32868, 'no_lang_code', 'name', 'Square One (United States)'),
(38967, 32869, 'no_lang_code', 'name', 'Table Mountain Optics (United States)'),
(38968, 32870, 'no_lang_code', 'name', 'STI Electronics (United States)'),
(38969, 32871, 'no_lang_code', 'name', 'Survice Engineering (United States)'),
(38970, 32872, 'no_lang_code', 'name', 'Techsburg (United States)'),
(38971, 32873, 'no_lang_code', 'name', 'Solid State Scientific Corporation (United States)'),
(38972, 32874, 'no_lang_code', 'name', 'Solute (United States)'),
(38973, 32875, 'no_lang_code', 'name', 'Sigma Labs (United States)'),
(38974, 32876, 'no_lang_code', 'name', 'Technology Management Company (United States)'),
(38975, 32877, 'no_lang_code', 'name', 'Nammo (United States)'),
(38976, 32878, 'no_lang_code', 'name', 'SoniPulse (United States)'),
(38977, 32879, 'no_lang_code', 'name', 'Symetrix (United States)'),
(38978, 32880, 'no_lang_code', 'name', 'Tau Technologies (United States)'),
(38979, 32881, 'no_lang_code', 'name', 'Soraa (United States)'),
(38980, 32882, 'no_lang_code', 'name', 'Star Cryoelectronics (United States)'),
(38981, 32883, 'no_lang_code', 'name', 'TES International (United States)'),
(38982, 32884, 'no_lang_code', 'name', 'Star Microwave (United States)'),
(38983, 32885, 'no_lang_code', 'name', 'Star Technology and Research (United States)'),
(38984, 32886, 'no_lang_code', 'name', 'STAR-H (United States)'),
(38985, 32887, 'no_lang_code', 'name', 'Technology Solutions Experts (United States)'),
(38986, 32888, 'no_lang_code', 'name', 'Test Devices (United States)'),
(38987, 32889, 'no_lang_code', 'name', 'Varadero Capital (United States)'),
(38988, 32890, 'no_lang_code', 'name', 'TechFlow (United States)'),
(38989, 32891, 'no_lang_code', 'name', 'Lubricating Specialties Company (United States)'),
(38990, 32892, 'no_lang_code', 'name', 'TiER1 (United States)'),
(38991, 32893, 'no_lang_code', 'name', 'Trout Green Technologies (United States)'),
(38992, 32894, 'no_lang_code', 'name', 'Time Domain (United States)'),
(38993, 32895, 'no_lang_code', 'name', 'Valley Tech Systems (United States)'),
(38994, 32896, 'no_lang_code', 'name', 'M Corp (United States)'),
(38995, 32897, 'no_lang_code', 'name', 'TimeSys (United States)'),
(38996, 32898, 'no_lang_code', 'name', 'Technosoft (United States)'),
(38997, 32899, 'no_lang_code', 'name', 'TTC Technologies (United States)'),
(38998, 32900, 'no_lang_code', 'name', 'TechSource (United States)'),
(38999, 32901, 'en', 'name', 'Texas Research Institute'),
(39000, 32902, 'no_lang_code', 'name', 'Tecolote Research (United States)'),
(39001, 32903, 'no_lang_code', 'name', 'Vanguard Space Technologies (United States)'),
(39002, 32904, 'no_lang_code', 'name', 'TelAztec (United States)'),
(39003, 32905, 'no_lang_code', 'name', 'Twinleaf (United States)'),
(39004, 32906, 'no_lang_code', 'name', 'CDI (United States)'),
(39005, 32907, 'no_lang_code', 'name', 'UBC (United States)'),
(39006, 32908, 'no_lang_code', 'name', 'Variation Reduction Solutions (United States)'),
(39007, 32909, 'no_lang_code', 'name', 'Vatell (United States)'),
(39008, 32910, 'no_lang_code', 'name', 'TextWise (United States)'),
(39009, 32911, 'no_lang_code', 'name', 'Vecna Technologies (United States)'),
(39010, 32912, 'no_lang_code', 'name', 'Tezzaron Semiconductor (United States)'),
(39011, 32913, 'no_lang_code', 'name', 'UFA (United States)'),
(39012, 32914, 'no_lang_code', 'name', 'Vector Test Systems (United States)'),
(39013, 32915, 'no_lang_code', 'name', 'NanoTechRanch (United States)'),
(39014, 32916, 'no_lang_code', 'name', 'The Design Knowledge Company (United States)'),
(39015, 32917, 'no_lang_code', 'name', 'Core Laboratories (United States)'),
(39016, 32918, 'no_lang_code', 'name', 'Ultimara (United States)'),
(39017, 32919, 'no_lang_code', 'name', 'Telescent (United States)'),
(39018, 32920, 'no_lang_code', 'name', 'Ultra Communications (United States)'),
(39019, 32921, 'no_lang_code', 'name', 'Vectraxx (United States)'),
(39020, 32922, 'no_lang_code', 'name', 'Telesecurity Sciences (United States)'),
(39021, 32923, 'no_lang_code', 'name', 'Top-Vu Technology (United States)'),
(39022, 32924, 'no_lang_code', 'name', 'Underground Systems (United States)'),
(39023, 32925, 'no_lang_code', 'name', 'Tempest Technologies (United States)'),
(39024, 32926, 'no_lang_code', 'name', 'Ormet Circuits (United States)'),
(39025, 32927, 'no_lang_code', 'name', 'Vehicle Control Technologies (United States)'),
(39026, 32928, 'no_lang_code', 'name', 'The Technology Partnership (United States)'),
(39027, 32929, 'no_lang_code', 'name', 'Templeman Automation (United States)'),
(39028, 32930, 'no_lang_code', 'name', 'Ventana Research Corporation (United States)'),
(39029, 32931, 'no_lang_code', 'name', 'Solus (United States)'),
(39030, 32932, 'no_lang_code', 'name', 'Torch Technologies (United States)'),
(39031, 32933, 'no_lang_code', 'name', 'Oil States International (United States)'),
(39032, 32934, 'en', 'name', 'Hostos Community College'),
(39033, 32935, 'no_lang_code', 'name', 'Torrey Pines Logic (United States)'),
(39034, 32936, 'no_lang_code', 'name', 'Veritay Technology (United States)'),
(39035, 32937, 'en', 'name', 'Medgar Evers College'),
(39036, 32938, 'no_lang_code', 'name', 'TeraDiode (United States)'),
(39037, 32939, 'en', 'name', 'Bronx Community College'),
(39038, 32940, 'en', 'name', 'LaGuardia Community College'),
(39039, 32941, 'no_lang_code', 'name', 'Versar (United States)'),
(39040, 32942, 'en', 'name', 'Kingsborough Community College'),
(39041, 32943, 'no_lang_code', 'name', 'Thermavant (United States)'),
(39042, 32944, 'no_lang_code', 'name', 'Bohemia Interactive Simulations (United States)'),
(39043, 32945, 'no_lang_code', 'name', 'Versatilis (United States)'),
(39044, 32946, 'no_lang_code', 'name', 'Victor Technologies (United States)'),
(39045, 32947, 'en', 'name', 'CUNY School of Law'),
(39046, 32948, 'no_lang_code', 'name', 'ViGYAN (United States)'),
(39047, 32949, 'no_lang_code', 'name', 'UQM Technologies (United States)'),
(39048, 32950, 'no_lang_code', 'name', 'Vertec Biosolvents (United States)'),
(39049, 32951, 'no_lang_code', 'name', 'Cubic (United States)'),
(39050, 32952, 'no_lang_code', 'name', 'VIP Sensors (United States)'),
(39051, 32953, 'no_lang_code', 'name', 'LRM Industries International (United States)'),
(39052, 32954, 'no_lang_code', 'name', 'Total Quality Systems (United States)'),
(39053, 32955, 'no_lang_code', 'name', 'Hunter Defense Technologies (United States)'),
(39054, 32956, 'no_lang_code', 'name', 'Vextec (United States)'),
(39055, 32957, 'no_lang_code', 'name', 'Toyon (United States)'),
(39056, 32958, 'no_lang_code', 'name', 'VI Manufacturing (United States)'),
(39057, 32959, 'no_lang_code', 'name', 'Think A Move (United States)'),
(39058, 32960, 'no_lang_code', 'name', 'Traclabs (United States)'),
(39059, 32961, 'no_lang_code', 'name', 'ThinKom Solutions (United States)'),
(39060, 32962, 'no_lang_code', 'name', 'Vibratess (United States)'),
(39061, 32963, 'no_lang_code', 'name', 'Third Wave Systems (United States)'),
(39062, 32964, 'no_lang_code', 'name', 'Virginia Diodes (United States)'),
(39063, 32965, 'no_lang_code', 'name', 'Warwick Mills (United States)'),
(39064, 32966, 'no_lang_code', 'name', 'Thorpe Seeop (United States)'),
(39065, 32967, 'no_lang_code', 'name', 'Translume (United States)'),
(39066, 32968, 'no_lang_code', 'name', 'Utility Development (United States)'),
(39067, 32969, 'no_lang_code', 'name', 'Tialinx (United States)'),
(39068, 32970, 'no_lang_code', 'name', 'UtopiaCompression (United States)'),
(39069, 32971, 'no_lang_code', 'name', 'Wasatch Molecular (United States)'),
(39070, 32972, 'no_lang_code', 'name', 'V Corp Technologies (United States)'),
(39071, 32973, 'no_lang_code', 'name', 'Vadum (United States)'),
(39072, 32974, 'no_lang_code', 'name', 'TransTech Systems (United States)'),
(39073, 32975, 'no_lang_code', 'name', 'Wave Computation Technologies (United States)'),
(39074, 32976, 'no_lang_code', 'name', 'Virtual EM (United States)'),
(39075, 32977, 'no_lang_code', 'name', 'TIAX (United States)'),
(39076, 32978, 'no_lang_code', 'name', 'Wavecon (United States)'),
(39077, 32979, 'no_lang_code', 'name', 'TriTech Software Systems (United States)'),
(39078, 32980, 'no_lang_code', 'name', 'Virtual Simulation and Training (United States)'),
(39079, 32981, 'no_lang_code', 'name', 'Triangle Polymer Technologies (United States)'),
(39080, 32982, 'no_lang_code', 'name', 'Wavefront Research (United States)'),
(39081, 32983, 'no_lang_code', 'name', 'Meggitt (United States)'),
(39082, 32984, 'no_lang_code', 'name', 'Xidex (United States)'),
(39083, 32985, 'no_lang_code', 'name', 'Vision Systems Incorporation (United States)'),
(39084, 32986, 'no_lang_code', 'name', 'Trident Research (United States)'),
(39085, 32987, 'no_lang_code', 'name', 'Milliken & Company (United States)'),
(39086, 32988, 'no_lang_code', 'name', 'XMCO (United States)'),
(39087, 32989, 'no_lang_code', 'name', 'Trident Systems (United States)'),
(39088, 32990, 'no_lang_code', 'name', 'Wedeven Associates (United States)'),
(39089, 32991, 'no_lang_code', 'name', 'Visotek (United States)'),
(39090, 32992, 'no_lang_code', 'name', 'Vista Clara (United States)'),
(39091, 32993, 'no_lang_code', 'name', 'WINTEC (United States)'),
(39092, 32994, 'no_lang_code', 'name', 'WeldQC (United States)'),
(39093, 32995, 'no_lang_code', 'name', 'VIStology (United States)'),
(39094, 32996, 'no_lang_code', 'name', 'Welkin Sciences (United States)'),
(39095, 32997, 'no_lang_code', 'name', 'Wolf Technical Services (United States)'),
(39096, 32998, 'no_lang_code', 'name', 'Zolo Technologies (United States)'),
(39097, 32999, 'no_lang_code', 'name', 'Yankee Scientific (United States)'),
(39098, 33000, 'no_lang_code', 'name', 'Visual Editor Consultants (United States)'),
(39099, 33001, 'no_lang_code', 'name', 'WW Technology Group (United States)'),
(39100, 33002, 'no_lang_code', 'name', 'Visual Sciences (United States)'),
(39101, 33003, 'no_lang_code', 'name', 'White River Technologies (United States)'),
(39102, 33004, 'no_lang_code', 'name', 'Yotta Navigation (United States)'),
(39103, 33005, 'no_lang_code', 'name', 'Zomega Terahertz (United States)'),
(39104, 33006, 'no_lang_code', 'name', 'ZONA Technology (United States)'),
(39105, 33007, 'no_lang_code', 'name', 'Wickman Spacecraft & Propulsion Company (United States)'),
(39106, 33008, 'no_lang_code', 'name', 'Voss Scientific (United States)'),
(39107, 33009, 'no_lang_code', 'name', 'Wilson Composites (United States)'),
(39108, 33010, 'no_lang_code', 'name', 'Microsemi (United States)'),
(39109, 33011, 'no_lang_code', 'name', 'Vulcan Wireless (United States)'),
(39110, 33012, 'no_lang_code', 'name', 'Zel Technologies (United States)'),
(39111, 33013, 'no_lang_code', 'name', 'W5 Technlogies (United States)'),
(39112, 33014, 'no_lang_code', 'name', 'XCOM Wireless (United States)'),
(39113, 33015, 'no_lang_code', 'name', 'Waddan Systems (United States)'),
(39114, 33016, 'no_lang_code', 'name', 'Zephyr Software (United States)'),
(39115, 33017, 'no_lang_code', 'name', 'Wang Electro-Opto (United States)'),
(39116, 33018, 'no_lang_code', 'name', 'Zimmerman Associates (United States)'),
(39117, 33019, 'no_lang_code', 'name', 'XCOR Aerospace (United States)'),
(39118, 33020, 'no_lang_code', 'name', 'Ziva (United States)'),
(39119, 33021, 'no_lang_code', 'name', 'WarpIV Technologies (United States)'),
(39120, 33022, 'no_lang_code', 'name', 'Zivko Aeronautics (United States)'),
(39121, 33023, 'en', 'name', 'National University'),
(39122, 33024, 'no_lang_code', 'name', 'Novitech (Slovakia)'),
(39123, 33025, 'no_lang_code', 'name', 'American Industrial Partners (United States)'),
(39124, 33026, 'sk', 'name', 'Stredna Priemyselna Skola Samuela Mikoviniho'),
(39125, 33027, 'no_lang_code', 'name', 'Camgian Microsystems (United States)'),
(39126, 33028, 'en', 'name', 'American Oriental Society'),
(39127, 33029, 'en', 'name', 'Al Khawarizmi International College'),
(39128, 33030, 'no_lang_code', 'name', 'Abili (Brazil)'),
(39129, 33031, 'pt', 'name', 'Associação Brasileira de Alergia e Imunologia'),
(39130, 33032, 'no_lang_code', 'name', 'Ablevision (Brazil)'),
(39131, 33033, 'no_lang_code', 'name', 'Biopdi (Brazil)'),
(39132, 33034, 'pt', 'name', 'Associação Brasileira de AnÔlise Térmica e Calorimetria'),
(39133, 33035, 'pt', 'name', 'Academia Brasileira de Audiologia'),
(39134, 33035, 'en', 'name', 'Brazilian Academy of Audiology'),
(39135, 33036, 'no_lang_code', 'name', 'Alpha Br Produtos QuĆ­micos (Brazil)'),
(39136, 33037, 'pt', 'name', 'Associação Saúde da Família'),
(39137, 33038, 'pt', 'name', 'Associação Brasileira de Antropologia'),
(39138, 33039, 'no_lang_code', 'name', 'Biotech (Brazil)'),
(39139, 33040, 'pt', 'name', 'Academia de CiĆŖncias do Estado de SĆ£o Paulo'),
(39140, 33041, 'no_lang_code', 'name', 'Altave (Brazil)'),
(39141, 33042, 'pt', 'name', 'Associação Sul-Americana de Automação'),
(39142, 33043, 'pt', 'name', 'Academia Nacional de Cuidados Paliativos'),
(39143, 33044, 'no_lang_code', 'name', 'Bioware (Brazil)'),
(39144, 33045, 'pt', 'name', 'Ação Educativa'),
(39145, 33046, 'pt', 'name', 'Associação Brasileira da Batata'),
(39146, 33047, 'no_lang_code', 'name', 'Accert (Brazil)'),
(39147, 33048, 'pt', 'name', 'Associação Brasileira de Buiatria'),
(39148, 33048, 'en', 'name', 'Brazilian Buiatrics Association'),
(39149, 33049, 'no_lang_code', 'name', 'Bonavision Auxilios Opticos (Brazil)'),
(39150, 33050, 'no_lang_code', 'name', 'Atonus Engineering Systems (Brazil)'),
(39151, 33051, 'no_lang_code', 'name', 'Ambra Solutions (Brazil)'),
(39152, 33052, 'no_lang_code', 'name', 'AMS Kepler (Brazil)'),
(39153, 33053, 'pt', 'name', 'Associação Brasileira de Ciência Política'),
(39154, 33054, 'no_lang_code', 'name', 'Acquest (Brazil)'),
(39155, 33055, 'pt', 'name', 'Associação Brasileira de Estatística'),
(39156, 33056, 'no_lang_code', 'name', 'Eurofins (Brazil)'),
(39157, 33057, 'no_lang_code', 'name', 'Adespec (Brazil)'),
(39158, 33058, 'pt', 'name', 'Associação Brasileira de Estudos de Defesa'),
(39159, 33059, 'no_lang_code', 'name', 'BR Express (Brazil)'),
(39160, 33060, 'pt', 'name', 'Associação Brasileira de Estudos Populacionais'),
(39161, 33061, 'no_lang_code', 'name', 'Br4Science (Brazil)'),
(39162, 33062, 'no_lang_code', 'name', 'BCS Tecnologia (Brazil)'),
(39163, 33063, 'no_lang_code', 'name', 'Adiel Comercial (Brazil)'),
(39164, 33064, 'no_lang_code', 'name', 'Trouw Nutrition (Brazil)'),
(39165, 33065, 'pt', 'name', 'Anod-Arc ComƩrcio e ServiƧos'),
(39166, 33065, 'no_lang_code', 'name', 'Anod-arc (Brazil)'),
(39167, 33066, 'pt', 'name', 'Associação Brasileira de Filosofia e História da Biologia'),
(39168, 33066, 'en', 'name', 'Brazilian Association of Philosophy and History of Biology'),
(39169, 33067, 'no_lang_code', 'name', 'ADTS (Brazil)'),
(39170, 33068, 'no_lang_code', 'name', 'Belver Brasil Instrumentos (Brazil)'),
(39171, 33069, 'no_lang_code', 'name', 'Antares EletrƓnica (Brazil)'),
(39172, 33070, 'no_lang_code', 'name', 'Antoniosi Tecnologia Agroindustrial (Brazil)'),
(39173, 33071, 'no_lang_code', 'name', 'Apis Flora (Brazil)'),
(39174, 33071, 'pt', 'name', 'Apis Flora Industrial e Comercial Ltda'),
(39175, 33072, 'no_lang_code', 'name', 'Beta Telecom (Brazil)'),
(39176, 33073, 'pt', 'name', 'Fundação de Ciência, Aplicações e Tecnologia Espaciais'),
(39177, 33074, 'no_lang_code', 'name', 'Aeroalcool Tecnologia (Brazil)'),
(39178, 33075, 'no_lang_code', 'name', 'Tetra Tech (Brazil)'),
(39179, 33076, 'no_lang_code', 'name', 'Illinois Tool Works (Brazil)'),
(39180, 33077, 'no_lang_code', 'name', 'Betta Tecnologia (Brazil)'),
(39181, 33078, 'no_lang_code', 'name', 'Brascoelma (Brazil)'),
(39182, 33079, 'no_lang_code', 'name', 'Agricef (Brazil)'),
(39183, 33080, 'no_lang_code', 'name', 'Bevi Plastic (Brazil)'),
(39184, 33081, 'no_lang_code', 'name', 'Bf Clay Especialidades (Brazil)'),
(39185, 33082, 'no_lang_code', 'name', 'Agro Lab Plants (Brazil)'),
(39186, 33083, 'pt', 'name', 'Associação Brasileira de InformÔtica'),
(39187, 33084, 'no_lang_code', 'name', 'BrasilOzƓnio (Brazil)'),
(39188, 33085, 'pt', 'name', 'Associação Brasileira de Médicos VeterinÔrios de Equídeos'),
(39189, 33086, 'pt', 'name', 'Associação Brasileira de Oncologia VeterinÔria'),
(39190, 33087, 'no_lang_code', 'name', 'Bio&Green (Brazil)'),
(39191, 33088, 'pt', 'name', 'Arquivo Histórico Judaico Brasileiro'),
(39192, 33089, 'no_lang_code', 'name', 'AGX Tecnologia (Brazil)'),
(39193, 33090, 'no_lang_code', 'name', 'Bio Controle (Brazil)'),
(39194, 33091, 'no_lang_code', 'name', 'Centro Técnico de Automação (Brazil)'),
(39195, 33092, 'no_lang_code', 'name', 'Akaer (Brazil)'),
(39196, 33093, 'pt', 'name', 'Associação Brasileira de Pesquisadores de Comunicação Organizacional e de Relações Públicas'),
(39197, 33094, 'no_lang_code', 'name', 'Altech (Brazil)'),
(39198, 33095, 'pt', 'name', 'Associação Brasileira de Pesquisadores em História EconÓmica'),
(39199, 33096, 'no_lang_code', 'name', 'Bio Soja Group (Brazil)'),
(39200, 33096, 'pt', 'name', 'Grupo Bio Soja'),
(39201, 33097, 'pt', 'name', 'Associação Brasileira de Polímeros'),
(39202, 33098, 'no_lang_code', 'name', 'Camelback (Brazil)'),
(39203, 33099, 'no_lang_code', 'name', 'Asel-Tech (Brazil)'),
(39204, 33099, 'pt', 'name', 'Asel-Tech Tecnologia e AutomaƧăo'),
(39205, 33100, 'no_lang_code', 'name', 'Alchemy (Brazil)'),
(39206, 33101, 'en', 'name', 'Federal Institute of SĆ£o Paulo'),
(39207, 33101, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de São Paulo'),
(39208, 33102, 'no_lang_code', 'name', 'AsGa (Brazil)'),
(39209, 33103, 'no_lang_code', 'name', 'Lucinski (Brazil)'),
(39210, 33104, 'no_lang_code', 'name', 'Algae Biotecnologia (Brazil)'),
(39211, 33105, 'pt', 'name', 'Assembleia Legislativa de SĆ£o Paulo'),
(39212, 33106, 'no_lang_code', 'name', 'Aliança Orgânica Soluções Ambientais (Brazil)'),
(39213, 33107, 'pt', 'name', 'Associação Brasileira de Psicoterapia e Medicina Comportamental'),
(39214, 33108, 'no_lang_code', 'name', 'CBPak (Brazil)'),
(39215, 33109, 'pt', 'name', 'Associação Nacional dos Programas de Pós-graduação em Comunicação'),
(39216, 33109, 'en', 'name', 'Brazilian National Association of Graduate Programs in Communication'),
(39217, 33110, 'pt', 'name', 'Associação Aeroespacial Brasileira'),
(39218, 33111, 'pt', 'name', 'Associação Brasileira de Tratamentos de Superfície'),
(39219, 33112, 'no_lang_code', 'name', 'Biocontrol (Brazil)'),
(39220, 33113, 'pt', 'name', 'Associação Brasileira para a Proteção dos Alimentos'),
(39221, 33114, 'pt', 'name', 'Fundação Escola de Comércio Álvares Penteado'),
(39222, 33115, 'no_lang_code', 'name', 'Centro de Espectrometria de Massas Aplicada (Brazil)'),
(39223, 33116, 'en', 'name', 'Brazilian Internet Steering Committee'),
(39224, 33116, 'pt', 'name', 'ComitĆŖ Gestor da Internet no Brasil'),
(39225, 33117, 'no_lang_code', 'name', 'Cennabras (Brazil)'),
(39226, 33118, 'no_lang_code', 'name', 'Comm Solutions (Brazil)'),
(39227, 33119, 'pt', 'name', 'Faculdade Brasil'),
(39228, 33120, 'no_lang_code', 'name', 'Centagro (Brazil)'),
(39229, 33121, 'no_lang_code', 'name', 'Dínamo Automação Industrial (Brazil)'),
(39230, 33122, 'no_lang_code', 'name', 'Compsis (Brazil)'),
(39231, 33123, 'pt', 'name', 'Faculdade Unida de Suzano'),
(39232, 33124, 'no_lang_code', 'name', 'Dinamo Networks (Brazil)'),
(39233, 33125, 'pt', 'name', 'Associação de Pais e Amigos dos Excepcionais de São Paulo'),
(39234, 33126, 'no_lang_code', 'name', 'DirectLight (Brazil)'),
(39235, 33127, 'pt', 'name', 'Centro Brasileiro de AnƔlise e Planejamento'),
(39236, 33128, 'no_lang_code', 'name', 'DLG Automation (Brazil)'),
(39237, 33129, 'pt', 'name', 'Associação dos Floricultores da Região da Via Dutra'),
(39238, 33130, 'pt', 'name', 'Associação dos Geógrafos Brasileiros'),
(39239, 33131, 'no_lang_code', 'name', 'DMC Equipmentos (Brazil)'),
(39240, 33132, 'pt', 'name', 'Centro Cerâmico do Brasil'),
(39241, 33133, 'no_lang_code', 'name', 'Compuminer Mineração de Dados & BI (Brazil)'),
(39242, 33134, 'no_lang_code', 'name', 'DNA Consult GenƩtica e Biotecnologia (Brazil)'),
(39243, 33135, 'no_lang_code', 'name', 'Dnapta Biotecnologia (Brazil)'),
(39244, 33136, 'pt', 'name', 'Escola da Cidade'),
(39245, 33137, 'no_lang_code', 'name', 'Condor Instruments (Brazil)'),
(39246, 33138, 'no_lang_code', 'name', 'Centro de Genomas (Brazil)'),
(39247, 33139, 'no_lang_code', 'name', 'Dod RobƓs Investidores (Brazil)'),
(39248, 33140, 'no_lang_code', 'name', 'CFlex (Brazil)'),
(39249, 33141, 'pt', 'name', 'Instituto Sedes Sapientiae'),
(39250, 33142, 'no_lang_code', 'name', 'DPR Engenharia (Brazil)'),
(39251, 33143, 'pt', 'name', 'Instituto Irmãs Santa Marcelina'),
(39252, 33144, 'pt', 'name', 'Associação Nacional de História'),
(39253, 33145, 'no_lang_code', 'name', 'Chem4u (Brazil)'),
(39254, 33146, 'no_lang_code', 'name', 'DSPGeo (Brazil)'),
(39255, 33147, 'pt', 'name', 'Conselho de Pesquisas em Educação e Ciências'),
(39256, 33147, 'en', 'name', 'Sciences and Education Research Council'),
(39257, 33148, 'no_lang_code', 'name', 'Chemyunion (Brazil)'),
(39258, 33149, 'pt', 'name', 'Associação Nacional de Pesquisa e Pós-Graduação em Turismo'),
(39259, 33150, 'pt', 'name', 'Conselho de reitores das Universidades Estaduais de SĆ£o Paulo'),
(39260, 33151, 'pt', 'name', 'Coordenadoria Geral da Universidade'),
(39261, 33152, 'no_lang_code', 'name', 'Dýnamis Industry e Commerce (Brazil)'),
(39262, 33153, 'pt', 'name', 'Associação Nacional de Pós-Graduação e Pesquisa em Ciências Sociais'),
(39263, 33154, 'no_lang_code', 'name', 'CHR Cerâmica Técnica (Brazil)'),
(39264, 33155, 'no_lang_code', 'name', 'Corollarium (Brazil)'),
(39265, 33156, 'pt', 'name', 'Faculdade de Agudos'),
(39266, 33157, 'pt', 'name', 'Associação Nacional de Pós-Graduação e Pesquisa em Educação'),
(39267, 33158, 'no_lang_code', 'name', 'Ecco Fibers (Brazil)'),
(39268, 33158, 'pt', 'name', 'Ecco Fibras Ɠpticas e Dispositivos'),
(39269, 33159, 'no_lang_code', 'name', 'Advance SoluƧƵes em InformƔtica (Brazil)'),
(39270, 33160, 'pt', 'name', 'Associação Nacional de Transportes Públicos'),
(39271, 33161, 'pt', 'name', 'Centro de Estudos da Voz'),
(39272, 33162, 'no_lang_code', 'name', 'Eccos IndĆŗstria MetalĆŗrgica (Brazil)'),
(39273, 33163, 'pt', 'name', 'Centro de Estudos do Laboratório de Aptidão Física de São Caetano do Sul'),
(39274, 33164, 'no_lang_code', 'name', 'Coss (Brazil)'),
(39275, 33165, 'pt', 'name', 'Associação Paulista para o Desenvolvimento da Medicina'),
(39276, 33166, 'no_lang_code', 'name', 'Cientistas (Brazil)'),
(39277, 33167, 'pt', 'name', 'Centro de Estudos Educação e Sociedade'),
(39278, 33168, 'no_lang_code', 'name', 'Ecology Glass (Brazil)'),
(39279, 33169, 'no_lang_code', 'name', 'Cotec (Brazil)'),
(39280, 33170, 'pt', 'name', 'Centro de Estudos em Psicologia da SaĆŗde'),
(39281, 33171, 'pt', 'name', 'Federacao Brasileira de Associacoes de Bibliotecarios'),
(39282, 33172, 'no_lang_code', 'name', 'Correias Elo (Brazil)'),
(39283, 33173, 'no_lang_code', 'name', 'CromƔtica (Brazil)'),
(39284, 33174, 'no_lang_code', 'name', 'ClanSoft (Brazil)'),
(39285, 33175, 'no_lang_code', 'name', 'Ecotec Equipment and Systems (Brazil)'),
(39286, 33176, 'no_lang_code', 'name', 'Centre for Research and Development in Telecommunications (Brazil)'),
(39287, 33177, 'no_lang_code', 'name', 'EcoZON (Brazil)'),
(39288, 33178, 'pt', 'name', 'Faculdade SĆ£o Leopoldo Mandic'),
(39289, 33179, 'no_lang_code', 'name', 'EDG Equipamentos e Controles (Brazil)'),
(39290, 33180, 'no_lang_code', 'name', 'Cuesta (Brazil)'),
(39291, 33181, 'no_lang_code', 'name', 'Clave (Brazil)'),
(39292, 33182, 'pt', 'name', 'Centro de Tecnologia Canavieira'),
(39293, 33182, 'no_lang_code', 'name', 'Sugarcane Research Center (Brazil)'),
(39294, 33183, 'no_lang_code', 'name', 'CLB Engenharia Consultiva (Brazil)'),
(39295, 33184, 'no_lang_code', 'name', 'Efix (Brazil)'),
(39296, 33185, 'no_lang_code', 'name', 'Eikonal do Brasil (Brazil)'),
(39297, 33186, 'no_lang_code', 'name', 'Cyrbe (Brazil)'),
(39298, 33187, 'no_lang_code', 'name', 'Ekion Tecnologia de Veƭculos ElƩtricos (Brazil)'),
(39299, 33188, 'pt', 'name', 'Centro de Inovação, Empreendedorismo e Tecnologia'),
(39300, 33189, 'pt', 'name', 'Centro Infantil Boldrini'),
(39301, 33190, 'no_lang_code', 'name', 'Enalta Inovações Tecnológicas (Brazil)'),
(39302, 33191, 'no_lang_code', 'name', 'Elabora Consultoria (Brazil)'),
(39303, 33192, 'no_lang_code', 'name', 'Electric Dreams (Brazil)'),
(39304, 33193, 'no_lang_code', 'name', 'WorleyParsons (Brazil)'),
(39305, 33194, 'no_lang_code', 'name', 'Engemap (Brazil)'),
(39306, 33195, 'no_lang_code', 'name', 'Orbisat (Brazil)'),
(39307, 33196, 'no_lang_code', 'name', 'Cobrasper (Brazil)'),
(39308, 33197, 'pt', 'name', 'ColƩgio Brasileiro de CirurgiƵes'),
(39309, 33198, 'no_lang_code', 'name', 'Engene (Brazil)'),
(39310, 33199, 'no_lang_code', 'name', 'Farmacore (Brazil)'),
(39311, 33200, 'no_lang_code', 'name', 'DeltaCO2 (Brazil)'),
(39312, 33201, 'no_lang_code', 'name', 'Engimplan (Brazil)'),
(39313, 33202, 'pt', 'name', 'Federação Brasileira de Psicodrama'),
(39314, 33203, 'en', 'name', 'Federation of Experimental Biology Societies'),
(39315, 33203, 'pt', 'name', 'Federação de Sociedades de Biologia Experimental'),
(39316, 33204, 'no_lang_code', 'name', 'Dencril (Brazil)'),
(39317, 33205, 'no_lang_code', 'name', 'EQE Tecnologia (Brazil)'),
(39318, 33206, 'no_lang_code', 'name', 'Femto (Brazil)'),
(39319, 33207, 'no_lang_code', 'name', 'Colly (Brazil)'),
(39320, 33208, 'no_lang_code', 'name', 'Equacional (Brazil)'),
(39321, 33209, 'no_lang_code', 'name', 'Deoxi Biotecnologia (Brazil)'),
(39322, 33210, 'no_lang_code', 'name', 'Fermavi (Brazil)'),
(39323, 33211, 'no_lang_code', 'name', 'Fermentec (Brazil)'),
(39324, 33212, 'pt', 'name', 'Departamento Intersindical de Estatƭstica e Estudos SocioeconƓmicos'),
(39325, 33213, 'no_lang_code', 'name', 'Flexmedia (Brazil)'),
(39326, 33214, 'no_lang_code', 'name', 'FiberWork (Brazil)'),
(39327, 33215, 'no_lang_code', 'name', 'Mentor Interactive (Brazil)'),
(39328, 33216, 'no_lang_code', 'name', 'Didai Tecnologia'),
(39329, 33217, 'en', 'name', 'James Cook University Singapore'),
(39330, 33218, 'no_lang_code', 'name', 'DEV Tecnologia (Brazil)'),
(39331, 33219, 'no_lang_code', 'name', 'Fibraforte (Brazil)'),
(39332, 33220, 'no_lang_code', 'name', 'Hytron (Brazil)'),
(39333, 33221, 'pt', 'name', 'Instituto Internacional de Ciencias Sociais'),
(39334, 33222, 'no_lang_code', 'name', 'Devworks Game Technology (Brazil)'),
(39335, 33223, 'no_lang_code', 'name', 'Icra Produtos Para Cerâmica (Brazil)'),
(39336, 33224, 'pt', 'name', 'Fundação Apinco de Ciência e Tecnologia Avícolas'),
(39337, 33225, 'no_lang_code', 'name', 'Idea Electronic Systems (Brazil)'),
(39338, 33225, 'pt', 'name', 'Idea Sistemas EletrƓnicos'),
(39339, 33226, 'pt', 'name', 'Escola Superior de Propaganda e Marketing'),
(39340, 33226, 'en', 'name', 'School of Higher Education in Advertising and Marketing'),
(39341, 33227, 'pt', 'name', 'Fundação Armando Alvares Penteado'),
(39342, 33228, 'no_lang_code', 'name', 'Thomson Reuters (Brazil)'),
(39343, 33229, 'pt', 'name', 'Fundação Bienal de São Paulo'),
(39344, 33230, 'no_lang_code', 'name', 'Fisioatual (Brazil)'),
(39345, 33231, 'no_lang_code', 'name', 'Eudora Energia (Brazil)'),
(39346, 33232, 'no_lang_code', 'name', 'EXA-M Instrumentação Biomédica (Brazil)'),
(39347, 33233, 'no_lang_code', 'name', 'Imag Indústria e Comércio de Componentes EletrÓnicos (Brasil)'),
(39348, 33234, 'no_lang_code', 'name', 'Excelchip (Brazil)'),
(39349, 33235, 'no_lang_code', 'name', 'Expansão Científica (Brazil)'),
(39350, 33236, 'no_lang_code', 'name', 'Flavor Tec (Brazil)'),
(39351, 33237, 'pt', 'name', 'Centro de Tecnologia da Informação Renato Archer'),
(39352, 33238, 'no_lang_code', 'name', 'Finamac (Brazil)'),
(39353, 33239, 'no_lang_code', 'name', 'Fleximedical (Brazil)'),
(39354, 33240, 'no_lang_code', 'name', 'Expertise Engenharia (Brazil)'),
(39355, 33241, 'no_lang_code', 'name', 'Genoa (Brazil)'),
(39356, 33242, 'no_lang_code', 'name', 'Eyetec Equipamentos Oftalmicos (Brazil)'),
(39357, 33243, 'no_lang_code', 'name', 'Flyever (Brazil)'),
(39358, 33244, 'no_lang_code', 'name', 'Genotyping BPI (Brazil)'),
(39359, 33245, 'no_lang_code', 'name', 'Gentros (Brazil)'),
(39360, 33246, 'no_lang_code', 'name', 'Fmaiis (Brazil)'),
(39361, 33247, 'pt', 'name', 'Fundação de Estudos AgrÔrios Luiz de Queiroz'),
(39362, 33248, 'no_lang_code', 'name', 'Formatto (Brazil)'),
(39363, 33249, 'no_lang_code', 'name', 'Geoambiente (Brazil)'),
(39364, 33250, 'pt', 'name', 'Fundação de Rotarianos de São Paulo'),
(39365, 33251, 'no_lang_code', 'name', 'Incon EletrƓnica (Brazil)'),
(39366, 33252, 'no_lang_code', 'name', 'Fortelab (Brazil)'),
(39367, 33253, 'no_lang_code', 'name', 'Eletro MƔquinas ComƩrcio e RepresentaƧƵes (Brazil)'),
(39368, 33254, 'pt', 'name', 'Forum Brasileiro de Segurança Pública'),
(39369, 33255, 'no_lang_code', 'name', 'Royal Fish (Brazil)'),
(39370, 33256, 'pt', 'name', 'Fundação Educacional de Ituverava'),
(39371, 33257, 'pt', 'name', 'Faculdade de Mococa'),
(39372, 33258, 'no_lang_code', 'name', 'Fotonica (Brazil)'),
(39373, 33259, 'no_lang_code', 'name', 'Fosbrasil (Brazil)'),
(39374, 33260, 'no_lang_code', 'name', 'Indústria Brasileira de MÔquinas e Equipamentos (Brazil)'),
(39375, 33261, 'no_lang_code', 'name', 'Fultec Inox (Brazil)'),
(39376, 33262, 'pt', 'name', 'Fundação Faculdade de Medicina'),
(39377, 33263, 'no_lang_code', 'name', 'Geodados (Brazil)'),
(39378, 33264, 'pt', 'name', 'Fundação André Tosello'),
(39379, 33265, 'pt', 'name', 'Faculdades Integradas de SĆ£o Paulo'),
(39380, 33266, 'pt', 'name', 'Fundação Instituto de Pesquisas EconÓmicas'),
(39381, 33266, 'en', 'name', 'Institute of Economic Research Foundation'),
(39382, 33267, 'pt', 'name', 'Faculdades Integradas Teresa D''Ɓvila'),
(39383, 33268, 'no_lang_code', 'name', 'JG Moriya (Brazil)'),
(39384, 33269, 'no_lang_code', 'name', 'Innovatech (Brazil)'),
(39385, 33270, 'no_lang_code', 'name', 'Clorovale Diamantes (Brazil)'),
(39386, 33271, 'no_lang_code', 'name', 'Geotecno (Brazil)'),
(39387, 33272, 'no_lang_code', 'name', 'Gepco (Brazil)'),
(39388, 33273, 'no_lang_code', 'name', 'Innovatech Telecom (Brazil)'),
(39389, 33274, 'pt', 'name', 'Instituto de Estudos do ComƩrcio e NegociaƧƵes Internacionais'),
(39390, 33274, 'en', 'name', 'lnstitute for lnternational Trade Negotiations'),
(39391, 33275, 'no_lang_code', 'name', 'Jotaeme Fitafer (Brazil)'),
(39392, 33276, 'no_lang_code', 'name', 'Kayros Ambiental e AgrĆ­cola (Brazil)'),
(39393, 33277, 'pt', 'name', 'Instituto de NeurociĆŖncias e Comportamento'),
(39394, 33278, 'no_lang_code', 'name', 'Germinal (Brazil)'),
(39395, 33279, 'no_lang_code', 'name', 'Inovamat (Brazil)'),
(39396, 33280, 'no_lang_code', 'name', 'Kehl (Brazil)'),
(39397, 33281, 'pt', 'name', 'Fundação Otorrinolaringologia'),
(39398, 33282, 'en', 'name', 'Forest Science and Research Institute'),
(39399, 33282, 'pt', 'name', 'Instituto de Pesquisas e Estudos Florestais'),
(39400, 33283, 'no_lang_code', 'name', 'Kidopi (Brazil)'),
(39401, 33284, 'pt', 'name', 'Fundação Padre Albino'),
(39402, 33285, 'pt', 'name', 'Instituto de Psicologia Comportamental de SĆ£o Carlos'),
(39403, 33286, 'no_lang_code', 'name', 'Klais SoluƧƵes Consultoria e Desenvolvimento (Brazil)'),
(39404, 33287, 'en', 'name', 'Fernand Braudel Institute of World Economics'),
(39405, 33287, 'pt', 'name', 'Instituto Fernand Braudel de Economia Mundial'),
(39406, 33288, 'no_lang_code', 'name', 'Gisplan (Brazil)'),
(39407, 33289, 'pt', 'name', 'Instituto Histórico e GeogrÔfico de São Paulo'),
(39408, 33290, 'no_lang_code', 'name', 'Instituto Internacional de Ecologia (Brazil)'),
(39409, 33291, 'no_lang_code', 'name', 'Knowledge Networks & Business Solutions (Brazil)'),
(39410, 33292, 'no_lang_code', 'name', 'Global Pet (Brazil)'),
(39411, 33293, 'no_lang_code', 'name', 'GlobalMag (Brazil)'),
(39412, 33294, 'no_lang_code', 'name', 'Insolita Studios (Brazil)'),
(39413, 33295, 'pt', 'name', 'Fundação Faculdade de Odontologia'),
(39414, 33296, 'pt', 'name', 'Instituto Latino Americano da Sepse'),
(39415, 33296, 'en', 'name', 'Latin American Sepsis Institute'),
(39416, 33297, 'no_lang_code', 'name', 'Invel (Brazil)'),
(39417, 33298, 'pt', 'name', 'Instituto Lina Bo e P.M. Bardi'),
(39418, 33299, 'pt', 'name', 'Fundação para o Desenvolvimento Médico e Hospitalar'),
(39419, 33300, 'pt', 'name', 'Instituto Paulista de Ensino e Pesquisa'),
(39420, 33301, 'no_lang_code', 'name', 'Griaule Biometrics (Brazil)'),
(39421, 33302, 'no_lang_code', 'name', 'Koppert (Brazil)'),
(39422, 33303, 'no_lang_code', 'name', 'DWG Arquitetura e Sistemas (Brazil)'),
(39423, 33304, 'pt', 'name', 'Instituto Paulo Freire'),
(39424, 33305, 'pt', 'name', 'Instituto Barretos de Tecnologia'),
(39425, 33306, 'pt', 'name', 'Fundação Energia e Saneamento'),
(39426, 33307, 'no_lang_code', 'name', 'Gtac Solutions (Brazil)'),
(39427, 33308, 'no_lang_code', 'name', 'Korth Rfid (Brazil)'),
(39428, 33309, 'pt', 'name', 'Instituto Penido Burnier'),
(39429, 33310, 'no_lang_code', 'name', 'Guatifer Usinagem e Ferramentaria (Brazil)'),
(39430, 33311, 'pt', 'name', 'Fundação Paulista de Tecnologia e Educação'),
(39431, 33312, 'pt', 'name', 'Instituto Polis'),
(39432, 33313, 'no_lang_code', 'name', 'Kroma Equipamentos Especiais (Brazil)'),
(39433, 33314, 'pt', 'name', 'Fórum de Entidades Nacionais da Psicologia Brasileira'),
(39434, 33315, 'no_lang_code', 'name', 'Kryptus (Brazil)'),
(39435, 33316, 'no_lang_code', 'name', 'Labcom Sistemas (Brazil)'),
(39436, 33317, 'no_lang_code', 'name', 'Hexalab (Brazil)'),
(39437, 33318, 'no_lang_code', 'name', 'Intecmat (Brazil)'),
(39438, 33319, 'no_lang_code', 'name', 'Herbicat (Brazil)'),
(39439, 33320, 'no_lang_code', 'name', 'Gyrofly (Brazil)'),
(39440, 33321, 'no_lang_code', 'name', 'Inter-Metro (Brazil)'),
(39441, 33322, 'en', 'name', 'Labmass Laboratory'),
(39442, 33323, 'pt', 'name', 'Abutua Tecnologia'),
(39443, 33324, 'no_lang_code', 'name', 'Casablanca (Brazil)'),
(39444, 33325, 'pt', 'name', 'Laboratório Biosintesis P&D'),
(39445, 33326, 'en', 'name', 'Brazilian Institute of Neuropsychology and Behaviour'),
(39446, 33326, 'pt', 'name', 'Instituto Brasileiro de Neuropsicologia e Comportamento'),
(39447, 33327, 'it', 'name', 'Fondazione UniversitĆ  Vita Cristiana'),
(39448, 33327, 'pt', 'name', 'Fundação UniversitÔria Vida Cristã'),
(39449, 33328, 'no_lang_code', 'name', 'Invenire Internacional InformƔtica (Brazil)'),
(39450, 33329, 'pt', 'name', 'Fundação Zerbini'),
(39451, 33330, 'no_lang_code', 'name', 'Institute of Integrated Clinical Research (Brazil)'),
(39452, 33330, 'pt', 'name', 'Instituto de Pesquisa ClĆ­nica Integrada Ltda'),
(39453, 33331, 'en', 'name', 'Association of the Technological Integrated Systems Laboratory'),
(39454, 33331, 'pt', 'name', 'Laboratório de Sistemas IntegrÔveis Tecnológico'),
(39455, 33332, 'no_lang_code', 'name', 'Incontrol (Brazil)'),
(39456, 33333, 'no_lang_code', 'name', 'Líbera Tecnologia e Inovação (Brazil)'),
(39457, 33334, 'no_lang_code', 'name', 'Metrolab CalibraƧƵes (Brazil)'),
(39458, 33335, 'no_lang_code', 'name', 'Quimlab (Brazil)'),
(39459, 33336, 'no_lang_code', 'name', 'Ipel - Itibanyl Produtos Especiais (Brazil)'),
(39460, 33337, 'no_lang_code', 'name', 'Ipsos (Brazil)'),
(39461, 33338, 'no_lang_code', 'name', 'Mextra (Brazil)'),
(39462, 33339, 'no_lang_code', 'name', 'Inselli Engenharia e CiĆŖncia Aplicada (Brazil)'),
(39463, 33340, 'no_lang_code', 'name', 'LaserTools Tecnologia (Brazil)'),
(39464, 33341, 'no_lang_code', 'name', 'IQX-Inove Qualyx (Brazil)'),
(39465, 33342, 'no_lang_code', 'name', 'Mhnano (Brazil)'),
(39466, 33343, 'no_lang_code', 'name', 'Multi Vegetal FitocosmƩticos (Brazil)'),
(39467, 33344, 'pt', 'name', 'Santa Casa da Misericórdia de Bragança Paulista'),
(39468, 33345, 'no_lang_code', 'name', 'Lifemed (Brazil)'),
(39469, 33346, 'no_lang_code', 'name', 'Microdesign Informatica Tecnologia Industria e Comerico (Brazil)'),
(39470, 33347, 'no_lang_code', 'name', 'Multicorpos Engenharia (Brazil)'),
(39471, 33348, 'pt', 'name', 'Santa Casa de Misericórdia de São Carlos'),
(39472, 33349, 'no_lang_code', 'name', 'OmniTek (Brazil)'),
(39473, 33350, 'no_lang_code', 'name', 'Light Tech (Brazil)'),
(39474, 33351, 'no_lang_code', 'name', 'Limpgas Tecnologia (Brazil)'),
(39475, 33352, 'no_lang_code', 'name', 'Itabras Mineração (Brazil)'),
(39476, 33353, 'pt', 'name', 'Museu de Arte de SĆ£o Paulo'),
(39477, 33353, 'en', 'name', 'SĆ£o Paulo Museum of Art'),
(39478, 33354, 'no_lang_code', 'name', 'Itatex (Brazil)'),
(39479, 33355, 'no_lang_code', 'name', 'Itera - Inovação e Desenvolvimento Tecnológico (Brazil)'),
(39480, 33356, 'no_lang_code', 'name', 'Eletrovento (Brazil)'),
(39481, 33357, 'no_lang_code', 'name', 'Mwa Automação (Brazil)'),
(39482, 33358, 'no_lang_code', 'name', 'Linax (Brazil)'),
(39483, 33359, 'no_lang_code', 'name', 'Onion Tecnologia (Brazil)'),
(39484, 33360, 'no_lang_code', 'name', 'LinkGen (Brazil)'),
(39485, 33361, 'no_lang_code', 'name', 'Ophthalmos (Brazil)'),
(39486, 33362, 'en', 'name', 'Ministry of Culture'),
(39487, 33362, 'pt', 'name', 'MinistƩrio da Cultura'),
(39488, 33363, 'no_lang_code', 'name', 'Opto EletrƓnica (Brazil)'),
(39489, 33364, 'no_lang_code', 'name', 'OptoLink (Brazil)'),
(39490, 33365, 'no_lang_code', 'name', 'Logtrac (Brazil)'),
(39491, 33366, 'no_lang_code', 'name', 'Nanobionics (Brazil)'),
(39492, 33367, 'no_lang_code', 'name', 'Lucotec (Brazil)'),
(39493, 33368, 'no_lang_code', 'name', 'Nanocore (Brazil)'),
(39494, 33369, 'no_lang_code', 'name', 'Nanofitotec (Brazil)'),
(39495, 33370, 'no_lang_code', 'name', 'Luxtec (Brazil)'),
(39496, 33371, 'no_lang_code', 'name', 'Prombiom Tecnologia (Brazil)'),
(39497, 33372, 'no_lang_code', 'name', 'Nanomed (Brazil)'),
(39498, 33373, 'pt', 'name', 'Processos - SoluƧƵes de Engenharia (Brazil)'),
(39499, 33374, 'no_lang_code', 'name', 'Safran (Brazil)'),
(39500, 33375, 'no_lang_code', 'name', 'Lychnoflora (Brazil)'),
(39501, 33376, 'no_lang_code', 'name', 'Nanophoton (Brazil)'),
(39502, 33377, 'no_lang_code', 'name', 'Optron MicromecĆ¢nica Ɠptica (Brazil)'),
(39503, 33378, 'no_lang_code', 'name', 'Rotogine (Brazil)');
INSERT INTO `ror_settings` VALUES
(39504, 33379, 'en', 'name', 'Ministry of Communications'),
(39505, 33379, 'pt', 'name', 'MinistƩrio das ComunicaƧƵes'),
(39506, 33380, 'no_lang_code', 'name', 'Nanox (Brazil)'),
(39507, 33381, 'en', 'name', 'Ministry of Development, Industry and Foreign Trade'),
(39508, 33381, 'pt', 'name', 'Ministério do Desenvolvimento, Indústria e Comércio Exterior'),
(39509, 33382, 'no_lang_code', 'name', 'KOM Lux Fibras Ɠpticas (Brazil)'),
(39510, 33383, 'no_lang_code', 'name', 'Grupo GuaƧu (Brazil)'),
(39511, 33384, 'no_lang_code', 'name', 'Madeplas (Brazil)'),
(39512, 33385, 'no_lang_code', 'name', 'Optsensys (Brazil)'),
(39513, 33386, 'no_lang_code', 'name', 'Narcissus Pesquisa ClĆ­nica e Biotecnologia (Brazil)'),
(39514, 33387, 'no_lang_code', 'name', 'Promip (Brazil)'),
(39515, 33388, 'no_lang_code', 'name', 'Magnamed (Brazil)'),
(39516, 33389, 'no_lang_code', 'name', 'Opusphere (Brazil)'),
(39517, 33390, 'en', 'name', 'Ministry of Planning, Budget and Management'),
(39518, 33390, 'pt', 'name', 'Ministério do Planejamento, Orçamento, e Gestão'),
(39519, 33391, 'en', 'name', 'Ministry of Labor and Employment'),
(39520, 33391, 'pt', 'name', 'MinistƩrio do Trabalho e Emprego'),
(39521, 33392, 'no_lang_code', 'name', 'Oralls (Brazil)'),
(39522, 33393, 'no_lang_code', 'name', 'Misque (Brazil)'),
(39523, 33394, 'no_lang_code', 'name', 'IT&D Informação Tecnologia e Desenvolvimento (Brazil)'),
(39524, 33395, 'no_lang_code', 'name', 'MMOptics (Brazil)'),
(39525, 33396, 'no_lang_code', 'name', 'Natural Products & Technologies (Brazil)'),
(39526, 33397, 'no_lang_code', 'name', 'Proeletronic (Brazil)'),
(39527, 33398, 'no_lang_code', 'name', 'Proteimax (Brazil)'),
(39528, 33399, 'no_lang_code', 'name', 'Navita (Brazil)'),
(39529, 33400, 'no_lang_code', 'name', 'ProteobrƔs (Brazil)'),
(39530, 33401, 'no_lang_code', 'name', 'BMT Group (Brazil)'),
(39531, 33402, 'no_lang_code', 'name', 'Organia (Brazil)'),
(39532, 33403, 'no_lang_code', 'name', 'PV Prest VƔcuo (Brazil)'),
(39533, 33404, 'no_lang_code', 'name', 'Pullup (Brazil)'),
(39534, 33405, 'pt', 'name', 'Mosteiro de SĆ£o Bento'),
(39535, 33406, 'no_lang_code', 'name', 'Netvmi (Brazil)'),
(39536, 33407, 'no_lang_code', 'name', 'MRA Indústria de Equipamentos EletrÓnicos (Brazil)'),
(39537, 33408, 'no_lang_code', 'name', 'MRE SoluƧƵes (Brazil)'),
(39538, 33409, 'no_lang_code', 'name', 'Neuron EletrƓnica (Brazil)'),
(39539, 33410, 'no_lang_code', 'name', 'Medecell (Brazil)'),
(39540, 33411, 'no_lang_code', 'name', 'Rcasoft InformƔtica (Brazil)'),
(39541, 33412, 'no_lang_code', 'name', 'Partecurae Analysis (Brazil)'),
(39542, 33413, 'no_lang_code', 'name', 'LojaFƔcil (Brazil)'),
(39543, 33414, 'no_lang_code', 'name', 'RC ConstruƧƵes (Brazil)'),
(39544, 33415, 'no_lang_code', 'name', 'Nexus (Brazil)'),
(39545, 33416, 'no_lang_code', 'name', 'R4F Tecnologia (Brazil)'),
(39546, 33417, 'no_lang_code', 'name', 'Meier & Giacaglia Medidores (Brazil)'),
(39547, 33418, 'no_lang_code', 'name', 'Racetronix (Brazil)'),
(39548, 33419, 'no_lang_code', 'name', 'Piacentini (Brazil)'),
(39549, 33420, 'no_lang_code', 'name', 'Metaltech Sorocaba Equipamentos e ServiƧos (Brazil)'),
(39550, 33421, 'no_lang_code', 'name', 'NĆŗcleo de Pesquisas Aplicadas (Brazil)'),
(39551, 33422, 'no_lang_code', 'name', 'Vitrogen (Brazil)'),
(39552, 33423, 'no_lang_code', 'name', 'MEMS (Brazil)'),
(39553, 33424, 'no_lang_code', 'name', 'Mestre Dos Mares (Brazil)'),
(39554, 33425, 'no_lang_code', 'name', 'Reciclapac (Brazil)'),
(39555, 33426, 'pt', 'name', 'NĆŗcleo Paradigma'),
(39556, 33427, 'no_lang_code', 'name', 'Metal Plasma (Brazil)'),
(39557, 33428, 'no_lang_code', 'name', 'Red, Orange and Green Environmental Technologies (Brazil)'),
(39558, 33429, 'no_lang_code', 'name', 'Metalex (Brazil)'),
(39559, 33430, 'no_lang_code', 'name', 'Redealumni (Brazil)'),
(39560, 33431, 'no_lang_code', 'name', 'Reade (Brazil)'),
(39561, 33432, 'no_lang_code', 'name', 'Thales (Brazil)'),
(39562, 33433, 'no_lang_code', 'name', 'Refazenda (Brazil)'),
(39563, 33434, 'no_lang_code', 'name', 'ReaQuim (Brazil)'),
(39564, 33435, 'no_lang_code', 'name', 'Biopcycle (Brazil)'),
(39565, 33436, 'pt', 'name', 'Secretaria Municipal de Desenvolvimento EconÓmico e Negócios de Turismo'),
(39566, 33437, 'no_lang_code', 'name', 'Pedra Agroindustrial (Brazil)'),
(39567, 33438, 'no_lang_code', 'name', 'Odysci (Brazil)'),
(39568, 33439, 'no_lang_code', 'name', 'Recaltech (Brazil)'),
(39569, 33440, 'no_lang_code', 'name', 'Revolugenix (Brazil)'),
(39570, 33441, 'no_lang_code', 'name', 'Siporex (Brazil)'),
(39571, 33442, 'en', 'name', 'Brazilian Society for the Advancement of Science'),
(39572, 33442, 'pt', 'name', 'Sociedade Brasileira para o Progresso da CiĆŖncia'),
(39573, 33443, 'no_lang_code', 'name', 'Rfideas (Brazil)'),
(39574, 33444, 'no_lang_code', 'name', 'SF International (Brazil)'),
(39575, 33445, 'pt', 'name', 'Secretaria de Desenvolvimento EconƓmico e Turƭstico'),
(39576, 33446, 'no_lang_code', 'name', 'SMA Tecnologia (Brazil)'),
(39577, 33447, 'no_lang_code', 'name', 'Brvant (Brazil)'),
(39578, 33448, 'no_lang_code', 'name', 'Macrolog (Brazil)'),
(39579, 33449, 'no_lang_code', 'name', 'SmartBio Tecnologia (Brazil)'),
(39580, 33450, 'pt', 'name', 'Sociedade Brasileira de Medicina Nuclear e Imagem Molecular'),
(39581, 33451, 'pt', 'name', 'Secretaria Municipal do Desenvolvimento EconƓmico e Turismo'),
(39582, 33452, 'no_lang_code', 'name', 'RMF Consultoria (Brazil)'),
(39583, 33453, 'pt', 'name', 'Sucesu Nacional'),
(39584, 33454, 'en', 'name', 'Sobramfa – Medical Education and Humanism'),
(39585, 33455, 'pt', 'name', 'Pia Sociedade de SĆ£o Paulo'),
(39586, 33456, 'no_lang_code', 'name', 'Gerenciamento Tecnologia e Sistemas (Brazil)'),
(39587, 33457, 'pt', 'name', 'Sociedade Brasileira de Psicologia Hospitalar (Brazil)'),
(39588, 33458, 'no_lang_code', 'name', 'Rotar (Brazil)'),
(39589, 33459, 'no_lang_code', 'name', 'Plantech (Brazil)'),
(39590, 33460, 'pt', 'name', 'Sociedade de Nefrologia do Estado de SĆ£o Paulo'),
(39591, 33461, 'pt', 'name', 'Sociedade AstronƓmica Brasileira'),
(39592, 33462, 'no_lang_code', 'name', 'Sollis (Brazil)'),
(39593, 33463, 'no_lang_code', 'name', 'Plasma liits (Brazil)'),
(39594, 33464, 'pt', 'name', 'Sociedade de Botânica de São Paulo'),
(39595, 33464, 'en', 'name', 'SĆ£o Paulo Botanical Society'),
(39596, 33465, 'no_lang_code', 'name', 'SolstĆ­cio Energia (Brazil)'),
(39597, 33466, 'pt', 'name', 'Sociedade Brasileira de Alimentação e Nutrição'),
(39598, 33467, 'pt', 'name', 'Solução Ambiental Assessoria e Consultoria'),
(39599, 33468, 'no_lang_code', 'name', 'Mvisia (Brazil)'),
(39600, 33469, 'no_lang_code', 'name', 'Salt Sea & Limno Technology'),
(39601, 33470, 'en', 'name', 'Brazilian Society of Nuclear Biosciences'),
(39602, 33470, 'pt', 'name', 'Sociedade Brasileira de BiociĆŖncias Nucleares'),
(39603, 33471, 'pt', 'name', 'Sociedade Brasileira de Biologia Celular'),
(39604, 33472, 'no_lang_code', 'name', 'SPPT Pesquisas Tecnológicas (Brazil)'),
(39605, 33473, 'no_lang_code', 'name', 'Salus Group (Brazil)'),
(39606, 33474, 'pt', 'name', 'Secretaria de Gestão Pública'),
(39607, 33475, 'no_lang_code', 'name', 'Suma Indústria e Comércio (Brasil)'),
(39608, 33476, 'pt', 'name', 'Sociedade Brasileira de CatƔlise'),
(39609, 33477, 'pt', 'name', 'Sociedade Brasileira de CiĆŖncia e Tecnologia de Alimentos'),
(39610, 33478, 'no_lang_code', 'name', 'SuperZinco (Brazil)'),
(39611, 33479, 'no_lang_code', 'name', 'Surface (Brazil)'),
(39612, 33480, 'no_lang_code', 'name', 'Scheme Lab (Brazil)'),
(39613, 33481, 'pt', 'name', 'Sociedade Brasileira de Cirurgia Cardiovascular'),
(39614, 33482, 'no_lang_code', 'name', 'SW2 SoluƧƵes em TI (Brazil)'),
(39615, 33483, 'pt', 'name', 'Sociedade Brasileira de Econometria'),
(39616, 33484, 'no_lang_code', 'name', 'Playax Internet (Brazil)'),
(39617, 33485, 'no_lang_code', 'name', 'Novo Mel (Brazil)'),
(39618, 33486, 'no_lang_code', 'name', 'Selaz (Brazil)'),
(39619, 33487, 'no_lang_code', 'name', 'Compass (Brazil)'),
(39620, 33488, 'no_lang_code', 'name', 'Synthon Especialidades QuĆ­micas (Brazil)'),
(39621, 33489, 'no_lang_code', 'name', 'IPS (Brazil)'),
(39622, 33490, 'no_lang_code', 'name', 'Sdc Engenharia (Brazil)'),
(39623, 33491, 'no_lang_code', 'name', 'Selsan Tecnologia Industrial e Comercial (Brazil)'),
(39624, 33492, 'no_lang_code', 'name', 'Sencer (Brazil)'),
(39625, 33493, 'no_lang_code', 'name', 'PluriCell (Brazil)'),
(39626, 33494, 'en', 'name', 'Entomological Society of Brazil'),
(39627, 33494, 'pt', 'name', 'Sociedade Brasileira de Entomologia'),
(39628, 33495, 'no_lang_code', 'name', 'PMEC Sistemas (Brazil)'),
(39629, 33496, 'pt', 'name', 'Sociedade Brasileira de Estudos de Cinema e Audiovisual'),
(39630, 33497, 'no_lang_code', 'name', 'AgriOS (Brazil)'),
(39631, 33498, 'pt', 'name', 'Sociedade Brasileira de Estudos Interdisciplinares da Comunicação'),
(39632, 33499, 'pt', 'name', 'Secretaria da Casa Civil'),
(39633, 33500, 'pt', 'name', 'Sociedade Brasileira de FĆ­sica'),
(39634, 33501, 'en', 'name', 'Brazilian Society of Speech'),
(39635, 33501, 'pt', 'name', 'Sociedade Brasileira de Fonoaudiologia'),
(39636, 33502, 'pt', 'name', 'Secretaria Municipal de Cultura'),
(39637, 33503, 'no_lang_code', 'name', 'Sensoft Automação (Brazil)'),
(39638, 33504, 'pt', 'name', 'Secretaria da Educação'),
(39639, 33505, 'pt', 'name', 'Secretaria da JustiƧa e da Defesa da Cidadania'),
(39640, 33506, 'no_lang_code', 'name', 'Tec3GEO (Brazil)'),
(39641, 33507, 'pt', 'name', 'Sociedade Brasileira de Fruticultura'),
(39642, 33508, 'no_lang_code', 'name', 'Polaris (Brazil)'),
(39643, 33509, 'no_lang_code', 'name', 'Tecam Laboratórios (Brazil)'),
(39644, 33510, 'no_lang_code', 'name', 'Polikem (Brazil)'),
(39645, 33511, 'pt', 'name', 'Sociedade Brasileira de GenƩtica'),
(39646, 33512, 'pt', 'name', 'Secretaria da Segurança Pública'),
(39647, 33513, 'no_lang_code', 'name', 'Tech Chrom (Brazil)'),
(39648, 33514, 'no_lang_code', 'name', 'Techfilter (Brazil)'),
(39649, 33515, 'pt', 'name', 'ServiƧo AutƓnomo de Ɓgua e Esgoto de Jaboticabal'),
(39650, 33516, 'pt', 'name', 'Secretaria de Agricultura e Abastecimento'),
(39651, 33517, 'pt', 'name', 'Sociedade Brasileira de Geologia'),
(39652, 33518, 'no_lang_code', 'name', 'Technes AgrĆ­cola (Brazil)'),
(39653, 33519, 'no_lang_code', 'name', 'Tecnologia e CiĆŖncia Educacional (Brazil)'),
(39654, 33520, 'no_lang_code', 'name', 'SimWorx (Brazil)'),
(39655, 33521, 'pt', 'name', 'Sociedade Brasileira de História da Ciência'),
(39656, 33522, 'no_lang_code', 'name', 'Tecnovip (Brazil)'),
(39657, 33523, 'no_lang_code', 'name', 'Overplay (Brazil)'),
(39658, 33524, 'no_lang_code', 'name', 'Signalcard (Brazil)'),
(39659, 33525, 'no_lang_code', 'name', 'Tecnident (Brazil)'),
(39660, 33526, 'no_lang_code', 'name', 'Tecnima (Brazil)'),
(39661, 33527, 'no_lang_code', 'name', 'Tecnocard (Brazil)'),
(39662, 33528, 'no_lang_code', 'name', 'SST it solutions (Brazil)'),
(39663, 33529, 'no_lang_code', 'name', 'SHS Engenharia SustentƔvel'),
(39664, 33530, 'pt', 'name', 'Sociedade Brasileira de Imunologia'),
(39665, 33531, 'no_lang_code', 'name', 'Terra Azul - Tecnologia de PolĆ­meros Naturais (Brazil)'),
(39666, 33532, 'no_lang_code', 'name', 'Tecnozinco Tratamento Superficial (Brazil)'),
(39667, 33533, 'no_lang_code', 'name', 'Vallitech (Brazil)'),
(39668, 33534, 'en', 'name', 'Brazilian Society of Computational and Applied Mathematics'),
(39669, 33534, 'pt', 'name', 'Sociedade Brasileira de MatemƔtica Aplicada e Computacional'),
(39670, 33535, 'no_lang_code', 'name', 'Terra Viva Consultoria Ambiental (Brazil)'),
(39671, 33536, 'pt', 'name', 'Sociedade Brasileira de Microbiologia'),
(39672, 33537, 'no_lang_code', 'name', 'Tezca (Brazil)'),
(39673, 33538, 'no_lang_code', 'name', 'Uranet (Brazil)'),
(39674, 33539, 'no_lang_code', 'name', 'Urbem Tecnologia Ambiental (Brazil)'),
(39675, 33540, 'no_lang_code', 'name', 'Thema (Brazil)'),
(39676, 33541, 'pt', 'name', 'Sociedade Brasileira de MicroeletrƓnica'),
(39677, 33542, 'no_lang_code', 'name', 'Tecplas Indústria e Comércio (Brazil)'),
(39678, 33543, 'no_lang_code', 'name', 'Verdartis (Brazil)'),
(39679, 33544, 'no_lang_code', 'name', 'Utep (Brazil)'),
(39680, 33545, 'no_lang_code', 'name', 'Themag (Brazil)'),
(39681, 33546, 'no_lang_code', 'name', 'Verdaz (Brazil)'),
(39682, 33547, 'pt', 'name', 'Secretaria de Desenvolvimento EconÓmico, Ciência, Tecnologia e Inovação'),
(39683, 33548, 'no_lang_code', 'name', 'TecSUS Tecnologias para a Sustentabilidade (Brazil)'),
(39684, 33549, 'no_lang_code', 'name', 'Thorus Scisoft (Brazil)'),
(39685, 33550, 'pt', 'name', 'Brazilian Society of Research and Assistance to Craniofacial Rehabilitation'),
(39686, 33550, 'en', 'name', 'Hospital of Sobrapar'),
(39687, 33551, 'pt', 'name', 'Tecnologia Aplicada Watanabe'),
(39688, 33551, 'no_lang_code', 'name', 'Watanabe Applied Technology (Brazil)'),
(39689, 33552, 'no_lang_code', 'name', 'Ticon (Brazil)'),
(39690, 33553, 'pt', 'name', 'Sociedade Brasileira de Pesquisa Odontológica'),
(39691, 33554, 'no_lang_code', 'name', 'Timpel (Brazil)'),
(39692, 33555, 'en', 'name', 'Brazilian Society of Protozoology'),
(39693, 33555, 'pt', 'name', 'Sociedade Brasileira de Protozoologia'),
(39694, 33556, 'no_lang_code', 'name', 'Veritas Life Sciences (Brazil)'),
(39695, 33557, 'no_lang_code', 'name', 'Top in Life Biotecnologia & GenƩtica Animal (Brazil)'),
(39696, 33558, 'no_lang_code', 'name', 'Versis Tecnologia (Brazil)'),
(39697, 33559, 'no_lang_code', 'name', 'Supê Soluções (Brazil)'),
(39698, 33560, 'pt', 'name', 'Sociedade Brasileira de QuĆ­mica'),
(39699, 33561, 'no_lang_code', 'name', 'XMobots (Brazil)'),
(39700, 33562, 'pt', 'name', 'Sociedade Brasileira de Toxicologia'),
(39701, 33563, 'pt', 'name', 'Sociedade Brasileira de VƔcuo'),
(39702, 33564, 'pt', 'name', 'Secretaria do Governo Municipal'),
(39703, 33565, 'pt', 'name', 'Secretaria de Planejamento e Gestão'),
(39704, 33566, 'pt', 'name', 'Sociedade Brasileira Para o Desenvolvimento da Pesquisa em Cirurgia'),
(39705, 33567, 'pt', 'name', 'Secretaria de Saneamento e Recursos HƬdricos'),
(39706, 33568, 'no_lang_code', 'name', 'Toxikón (Brazil)'),
(39707, 33569, 'no_lang_code', 'name', 'Tramppo (Brazil)'),
(39708, 33570, 'no_lang_code', 'name', 'Precifica PreƧo Inteligente (Brazil)'),
(39709, 33571, 'pt', 'name', 'Secretaria do Meio Ambiente'),
(39710, 33572, 'no_lang_code', 'name', 'TransFrigor do Brasil (Brazil)'),
(39711, 33573, 'no_lang_code', 'name', 'Pivotal (Canada)'),
(39712, 33574, 'no_lang_code', 'name', 'Incubadora Tecnológica Univap Revap (Brazil)'),
(39713, 33575, 'no_lang_code', 'name', 'Ultra Hi PlƔsticos Industriais (Brazil)'),
(39714, 33576, 'pt', 'name', 'Secretaria Municipal de Educação de São Paulo'),
(39715, 33577, 'pt', 'name', 'Secretaria Municipal do Verde e do Meio Ambiente'),
(39716, 33578, 'no_lang_code', 'name', 'Oxford Instruments (Germany)'),
(39717, 33579, 'no_lang_code', 'name', 'Unigen Tecnologia pelo DNA (Brazil)'),
(39718, 33580, 'no_lang_code', 'name', 'Versor Inovação Tecnológica (Brazil)'),
(39719, 33581, 'en', 'name', 'Northeast Catholic College'),
(39720, 33582, 'no_lang_code', 'name', 'UniSoma (Brazil)'),
(39721, 33583, 'no_lang_code', 'name', 'Victor Vision (Brazil)'),
(39722, 33584, 'no_lang_code', 'name', 'BP (Spain)'),
(39723, 33585, 'no_lang_code', 'name', 'VISIONBR Tecnologia e Informatica (Brazil)'),
(39724, 33586, 'no_lang_code', 'name', 'Vita Care (Brazil)'),
(39725, 33587, 'no_lang_code', 'name', 'Vitex (Brazil)'),
(39726, 33588, 'no_lang_code', 'name', 'HEICO (France)'),
(39727, 33589, 'no_lang_code', 'name', 'ProQuest (United Kingdom)'),
(39728, 33590, 'no_lang_code', 'name', 'Vocalize (Brazil)'),
(39729, 33591, 'no_lang_code', 'name', 'ZF Friedrichshafen (Belgium)'),
(39730, 33592, 'no_lang_code', 'name', 'Transdata (Brazil)'),
(39731, 33593, 'no_lang_code', 'name', 'Wavetek (Brazil)'),
(39732, 33594, 'no_lang_code', 'name', 'LivaNova (Belgium)'),
(39733, 33595, 'no_lang_code', 'name', 'Alten (Italy)'),
(39734, 33596, 'en', 'name', 'Waseda Bioscience Research Institute in Singapore'),
(39735, 33597, 'en', 'name', 'Epsom Hospital'),
(39736, 33598, 'no_lang_code', 'name', 'Taro Pharmaceuticals (Canada)'),
(39737, 33599, 'no_lang_code', 'name', 'Scenario (Brazil)'),
(39738, 33600, 'no_lang_code', 'name', 'NutriVita Suplementos (Brazil)'),
(39739, 33601, 'no_lang_code', 'name', 'Piaram (Brazil)'),
(39740, 33601, 'pt', 'name', 'Piaram Productos Nanotechnologicos'),
(39741, 33602, 'no_lang_code', 'name', 'Welding Science (Brazil)'),
(39742, 33603, 'no_lang_code', 'name', 'Dantherm Power (Denmark)'),
(39743, 33604, 'en', 'name', 'Alameda County Public Health Department'),
(39744, 33605, 'no_lang_code', 'name', 'Emergo (United States)'),
(39745, 33606, 'no_lang_code', 'name', 'ALIS Engineering and Systems Solutions (Brazil)'),
(39746, 33606, 'pt', 'name', 'ALIS SoluƧƵes em Engenharia e Sistemas'),
(39747, 33607, 'en', 'name', 'Brazilian Institute of Geography and Statistics'),
(39748, 33607, 'pt', 'name', 'Instituto Brasileiro de Geografia e EstatĆ­stica'),
(39749, 33608, 'pt', 'name', 'Instituto Cultural Cravo Albin'),
(39750, 33609, 'pt', 'name', 'Instituto de Engenharia Nuclear'),
(39751, 33609, 'en', 'name', 'Nuclear Engineering Institute'),
(39752, 33610, 'en', 'name', 'American Nonsmokers'' Rights Foundation'),
(39753, 33611, 'en', 'name', 'Institute of Homeopathy James Tyler Kent'),
(39754, 33611, 'pt', 'name', 'Instituto de Homeopatia James Tyler Kent'),
(39755, 33612, 'pt', 'name', 'Arquivo PĆŗblico do Estado do Rio de Janeiro'),
(39756, 33613, 'en', 'name', 'Institute of Applied Economic Research'),
(39757, 33613, 'pt', 'name', 'Instituto de Pesquisa EconƓmica Aplicada'),
(39758, 33614, 'pt', 'name', 'Espaço Ciência Viva'),
(39759, 33615, 'no_lang_code', 'name', 'Artecriação (Brazil)'),
(39760, 33616, 'no_lang_code', 'name', 'Ryjor (Brazil)'),
(39761, 33617, 'pt', 'name', 'Instituto Histórico e GeogrÔfico Brasileiro'),
(39762, 33618, 'pt', 'name', 'Instituto Militar de Engenharia'),
(39763, 33618, 'en', 'name', 'Military Institute of Engineering'),
(39764, 33619, 'pt', 'name', 'AVM Faculdade Integrada'),
(39765, 33620, 'pt', 'name', 'Instituto Nacional da Propriedade Industrial'),
(39766, 33621, 'en', 'name', 'HƩlio Alonso University'),
(39767, 33622, 'en', 'name', 'Unity Fellowship Church Movement'),
(39768, 33623, 'pt', 'name', 'Instituto Nacional de Educação de Surdos'),
(39769, 33624, 'pt', 'name', 'Instituto Brasileiro de Mercado de Capitais'),
(39770, 33625, 'en', 'name', 'Bishop Veterinary Hospital'),
(39771, 33626, 'pt', 'name', 'Instituto Nacional de Tecnologia'),
(39772, 33626, 'en', 'name', 'National Institute of Technology'),
(39773, 33627, 'en', 'name', 'San Francisco Firefighters Cancer Prevention Foundation'),
(39774, 33628, 'pt', 'name', 'Instituto Superior de Educação do Rio de Janeiro'),
(39775, 33629, 'en', 'name', 'Brighter Beginnings'),
(39776, 33630, 'pt', 'name', 'Instituto UniversitƔrio de Pesquisas do Rio de Janeiro'),
(39777, 33631, 'pt', 'name', 'Biblioteca Nacional do Brasil'),
(39778, 33631, 'en', 'name', 'National Library of Brazil'),
(39779, 33632, 'no_lang_code', 'name', 'Calera (United States)'),
(39780, 33633, 'no_lang_code', 'name', 'Instituto Vital Brazil (Brazil)'),
(39781, 33634, 'pt', 'name', 'Fundação Casa de Rui Barbosa'),
(39782, 33635, 'no_lang_code', 'name', 'SillaJen (United States)'),
(39783, 33636, 'pt', 'name', 'Fundação Cesgranrio'),
(39784, 33637, 'pt', 'name', 'Fundação CECIERJ'),
(39785, 33638, 'pt', 'name', 'Pro CrianƧa Cardƭaca'),
(39786, 33639, 'pt', 'name', 'Fundação de Apoio à Escola Técnica'),
(39787, 33640, 'no_lang_code', 'name', 'Lexikon Editora Digital (Brazil)'),
(39788, 33641, 'pt', 'name', 'Centro de Tecnologia Mineral'),
(39789, 33642, 'pt', 'name', 'Fundação Educacional D. André Arcoverde'),
(39790, 33643, 'en', 'name', 'Women of Color Breast Cancer Survivors'' Support Project'),
(39791, 33644, 'fr', 'name', 'Centre fƩdƩral d''Ʃducation technologique celso suckow da fonseca'),
(39792, 33644, 'pt', 'name', 'Centro Federal de Educação Tecnológica Celso Suckow da Fonseca'),
(39793, 33644, 'en', 'name', 'Federal Center for Technological Education Celso Suckow da Fonseca'),
(39794, 33645, 'en', 'name', 'Women of Essence'),
(39795, 33646, 'pt', 'name', 'Museu de Astronomia e CiĆŖncias Afins'),
(39796, 33647, 'en', 'name', 'Social and Environmental Entrepreneurs'),
(39797, 33648, 'en', 'name', 'Clinica de Salud del Valle de Salinas'),
(39798, 33649, 'pt', 'name', 'Bioline - Consultoria e Engenharia Ambiental'),
(39799, 33650, 'pt', 'name', 'Hospital SĆ£o Vicente de Paulo'),
(39800, 33651, 'no_lang_code', 'name', 'Dalvic (Brazil)'),
(39801, 33652, 'pt', 'name', 'Departamento Nacional de Produção Mineral'),
(39802, 33653, 'no_lang_code', 'name', 'Terenzi (Brazil)'),
(39803, 33654, 'no_lang_code', 'name', 'Inovax (Brazil)'),
(39804, 33655, 'en', 'name', 'DESA'),
(39805, 33656, 'pt', 'name', 'Muncipal de Bom Jesus do Itabapoana'),
(39806, 33657, 'pt', 'name', 'Instituto de Estudos do Mar Almirante Paulo Moreira'),
(39807, 33658, 'pt', 'name', 'Secretaria de Ciência, Tecnologia e Inovação da Marinha'),
(39808, 33659, 'pt', 'name', 'Empresa de Pesquisa AgropecuƔria do Estado do Rio de Janeiro'),
(39809, 33660, 'no_lang_code', 'name', 'IBE (Slovenia)'),
(39810, 33661, 'no_lang_code', 'name', 'Abelium (Slovenia)'),
(39811, 33662, 'en', 'name', 'Nova revija Institute for Humanities'),
(39812, 33663, 'no_lang_code', 'name', 'Acer Novo Mesto (Slovenia)'),
(39813, 33664, 'no_lang_code', 'name', 'Acies Bio (Slovenia)'),
(39814, 33665, 'no_lang_code', 'name', 'Acroni (Slovenia)'),
(39815, 33666, 'no_lang_code', 'name', 'IGEA (Slovenia)'),
(39816, 33667, 'no_lang_code', 'name', 'Omega Consult (Slovenia)'),
(39817, 33668, 'no_lang_code', 'name', 'ACROS Security (Slovenia)'),
(39818, 33669, 'no_lang_code', 'name', 'Omega (Slovenia)'),
(39819, 33670, 'no_lang_code', 'name', 'Igmat (Slovenia)'),
(39820, 33671, 'no_lang_code', 'name', 'Adapti (Slovenia)'),
(39821, 33672, 'no_lang_code', 'name', 'OptaCore (Slovenia)'),
(39822, 33673, 'no_lang_code', 'name', 'Impol (Slovenia)'),
(39823, 33674, 'no_lang_code', 'name', 'Optopol Technology (Slovenia)'),
(39824, 33675, 'no_lang_code', 'name', 'Advanced Materials and Technologies (Slovenia)'),
(39825, 33676, 'no_lang_code', 'name', 'Jolly Aero (Slovenia)'),
(39826, 33677, 'no_lang_code', 'name', 'Robert Bosch (Slovenia)'),
(39827, 33678, 'no_lang_code', 'name', 'Pan-Nutri (Slovenia)'),
(39828, 33679, 'no_lang_code', 'name', 'Induktio (Slovenia)'),
(39829, 33680, 'en', 'name', 'Anton Trstenjak Institute'),
(39830, 33681, 'sl', 'name', 'Kmetijsko Gozdarski Zavod Nova Gorica'),
(39831, 33682, 'no_lang_code', 'name', 'Alianta (Slovenia)'),
(39832, 33683, 'no_lang_code', 'name', 'Perutnina Ptuj (Slovenia)'),
(39833, 33684, 'no_lang_code', 'name', 'Alpina (Slovenia)'),
(39834, 33685, 'no_lang_code', 'name', 'Alpineon (Slovenia)'),
(39835, 33686, 'no_lang_code', 'name', 'Amebis (Slovenia)'),
(39836, 33687, 'en', 'name', 'Institute of Metal Constructions'),
(39837, 33688, 'no_lang_code', 'name', 'AMES (Slovenia)'),
(39838, 33689, 'en', 'name', 'Institute for Spatial Policies'),
(39839, 33689, 'sl', 'name', 'InŔtitut za politike prostora'),
(39840, 33690, 'no_lang_code', 'name', 'AMS (Slovenia)'),
(39841, 33691, 'no_lang_code', 'name', 'Pinus TKI (Slovenia)'),
(39842, 33692, 'no_lang_code', 'name', 'Litostroj Group (Slovenia)'),
(39843, 33693, 'en', 'name', 'Institute for developmental and strategic analysis'),
(39844, 33694, 'no_lang_code', 'name', 'Aquarius (Slovenia)'),
(39845, 33695, 'no_lang_code', 'name', 'Arcont (Slovenia)'),
(39846, 33696, 'no_lang_code', 'name', 'Predilnica Litija (Slovenia)'),
(39847, 33697, 'no_lang_code', 'name', 'Arex Defense (Slovenia)'),
(39848, 33698, 'no_lang_code', 'name', 'ATES (Slovenia)'),
(39849, 33699, 'no_lang_code', 'name', 'Atotech (Slovenia)'),
(39850, 33700, 'en', 'name', 'Institute for Hydraulic Research'),
(39851, 33701, 'no_lang_code', 'name', 'Infinita (Slovenia)'),
(39852, 33702, 'no_lang_code', 'name', 'B2 (Slovenia)'),
(39853, 33703, 'en', 'name', 'Institute for Research in Materials and Applications'),
(39854, 33704, 'no_lang_code', 'name', 'BIA (Slovenia)'),
(39855, 33705, 'en', 'name', 'Institute for Sustainable Innovative Technologies'),
(39856, 33706, 'no_lang_code', 'name', 'PUH Team (Slovenia)'),
(39857, 33707, 'en', 'name', 'Institute for Civilization and Culture'),
(39858, 33708, 'en', 'name', 'Bion, Institute for bioelectromagnetics'),
(39859, 33708, 'sl', 'name', 'InŔtitut Bion'),
(39860, 33709, 'sl', 'name', 'BiotehniŔki Center Naklo'),
(39861, 33710, 'en', 'name', 'Institute of Criminology'),
(39862, 33711, 'no_lang_code', 'name', 'Kolektor (Slovenia)'),
(39863, 33712, 'sl', 'name', 'Animal Hospital Postojna'),
(39864, 33713, 'no_lang_code', 'name', 'Radenska (Slovenia)'),
(39865, 33714, 'no_lang_code', 'name', 'CBS InŔtitut (Slovenia)'),
(39866, 33715, 'no_lang_code', 'name', 'Regional Development Agency Mura (Slovenia)'),
(39867, 33716, 'en', 'name', 'Inspectorate of the Republic of Slovenia for the Environment and Spatial Planning'),
(39868, 33717, 'sl', 'name', 'Pomurski muzej Murska Sobota'),
(39869, 33718, 'sl', 'name', 'S&T Slovenija'),
(39870, 33719, 'en', 'name', 'Institute for High Technologies and Systems'),
(39871, 33720, 'no_lang_code', 'name', 'Sadar + Vuga (Slovenia)'),
(39872, 33721, 'en', 'name', 'Centre of Excellence for Integrated Approaches in Chemistry and Biology of Proteins'),
(39873, 33722, 'en', 'name', 'Institute of Mathematics, Physics, and Mechanics'),
(39874, 33723, 'no_lang_code', 'name', 'Institute of Metagenomics and Microbial Technologies (Slovenia)'),
(39875, 33724, 'no_lang_code', 'name', 'Nanocenter'),
(39876, 33725, 'no_lang_code', 'name', 'CenterKontura (Slovenia)'),
(39877, 33726, 'no_lang_code', 'name', 'Salonit Anhovo (Slovenia)'),
(39878, 33727, 'no_lang_code', 'name', 'Sava (Slovenia)'),
(39879, 33728, 'no_lang_code', 'name', 'Savatech (Slovenia)'),
(39880, 33729, 'sl', 'name', 'InŔtituta za Neionizirna Sevanja'),
(39881, 33730, 'en', 'name', 'Scientific Research Centre Bistra Ptu'),
(39882, 33731, 'no_lang_code', 'name', 'Semenarna (Slovenia)'),
(39883, 33732, 'no_lang_code', 'name', 'Sensum (Slovenia)'),
(39884, 33733, 'en', 'name', 'Slovenian Centre of Excellence for Space Sciences and Technologies'),
(39885, 33734, 'sl', 'name', 'InŔtitut za Javno Upravo'),
(39886, 33735, 'en', 'name', 'Centre of Excellence NAMASTE'),
(39887, 33736, 'sl', 'name', 'Sicenter (Slovenia)'),
(39888, 33737, 'no_lang_code', 'name', 'Silkem (Slovenia)'),
(39889, 33738, 'en', 'name', 'Slovenian Institute of Quality and Metrology'),
(39890, 33739, 'no_lang_code', 'name', 'PoliMaT Centre of Excellence (Slovenia)'),
(39891, 33740, 'no_lang_code', 'name', 'Sistemska Tehnika (Slovenia)'),
(39892, 33741, 'en', 'name', 'Slovene Ethnographic Museum'),
(39893, 33742, 'no_lang_code', 'name', 'IRSPIN (Slovenia)'),
(39894, 33743, 'sl', 'name', 'Prirodoslovni muzej Slovenije'),
(39895, 33743, 'en', 'name', 'Slovenian Museum of Natural History'),
(39896, 33744, 'no_lang_code', 'name', 'Cetis (Slovenia)'),
(39897, 33745, 'no_lang_code', 'name', 'Četrta Pot (Slovenia)'),
(39898, 33746, 'no_lang_code', 'name', 'CGS plus (Slovenia)'),
(39899, 33747, 'en', 'name', 'International Tourism Institute'),
(39900, 33748, 'no_lang_code', 'name', 'Slovenska Industrija Jekla (Slovenia)'),
(39901, 33749, 'en', 'name', 'Institute for Environmental Protection and Sensors'),
(39902, 33750, 'no_lang_code', 'name', 'Telekom Slovenije (Slovenia)'),
(39903, 33751, 'no_lang_code', 'name', 'Cimos (Slovenia)'),
(39904, 33752, 'en', 'name', 'Institute for Symbolic analysis and Development of Information Technologies'),
(39905, 33753, 'no_lang_code', 'name', 'Cinkarna (Slovenia)'),
(39906, 33754, 'en', 'name', 'Institute for Project Management and Information Technology'),
(39907, 33755, 'no_lang_code', 'name', 'Helios (Slovenia)'),
(39908, 33756, 'no_lang_code', 'name', 'Iskra Medical (Slovenia)'),
(39909, 33757, 'no_lang_code', 'name', 'Iskra Mehanizmi (Slovenia)'),
(39910, 33758, 'no_lang_code', 'name', 'Iskra Pio (Slovenia)'),
(39911, 33759, 'no_lang_code', 'name', 'SMM production systems (Slovenia)'),
(39912, 33760, 'en', 'name', 'Community Health Centre Ljubljana'),
(39913, 33761, 'no_lang_code', 'name', 'Iskra (Slovenia)'),
(39914, 33762, 'no_lang_code', 'name', 'Svetovalna in Razvojna Dejavnost (Slovenia)'),
(39915, 33763, 'sl', 'name', 'Cosylab'),
(39916, 33764, 'no_lang_code', 'name', 'Iskra ZaŔčite (Slovenia)'),
(39917, 33765, 'en', 'name', 'Counselling Centre for Children, Adolescents and Parents'),
(39918, 33766, 'no_lang_code', 'name', 'CPZ International'),
(39919, 33767, 'no_lang_code', 'name', 'Le-tehnika (Slovenia)'),
(39920, 33768, 'no_lang_code', 'name', 'Elsewedy Electric (Slovenia)'),
(39921, 33769, 'no_lang_code', 'name', 'CVS Mobile (Slovenia)'),
(39922, 33770, 'no_lang_code', 'name', 'Iskratel (Slovenia)'),
(39923, 33771, 'no_lang_code', 'name', 'DFG Consulting (Slovenia)'),
(39924, 33772, 'no_lang_code', 'name', 'Domel (Slovenia)'),
(39925, 33773, 'no_lang_code', 'name', 'Vodovod-Kanalizacija (Slovenia)'),
(39926, 33774, 'no_lang_code', 'name', 'Spica International (Slovenia)'),
(39927, 33775, 'no_lang_code', 'name', 'DARS (Slovenia)'),
(39928, 33776, 'sl', 'name', 'Skupina IRI Ljubljana'),
(39929, 33777, 'no_lang_code', 'name', 'Å tore Steel (Slovenia)'),
(39930, 33778, 'no_lang_code', 'name', 'Keko Equipment (Slovenia)'),
(39931, 33779, 'no_lang_code', 'name', 'ECHO (Slovenia)'),
(39932, 33780, 'no_lang_code', 'name', 'Structum (Slovenia)'),
(39933, 33781, 'no_lang_code', 'name', 'Ecological Engineering Institute'),
(39934, 33782, 'no_lang_code', 'name', 'Gramatex (Slovenia)'),
(39935, 33783, 'no_lang_code', 'name', 'ERICo (Slovenia)'),
(39936, 33784, 'no_lang_code', 'name', 'Svilanit (Slovenia)'),
(39937, 33785, 'en', 'name', 'Educell'),
(39938, 33786, 'en', 'name', 'Chamber of Agriculture and Forestry of Slovenia'),
(39939, 33787, 'no_lang_code', 'name', 'Talum (Slovenia)'),
(39940, 33788, 'no_lang_code', 'name', 'Ekliptik (Slovenia)'),
(39941, 33789, 'no_lang_code', 'name', 'Kolpa (Slovenia)'),
(39942, 33790, 'en', 'name', 'Testing and Certification Laboratories'),
(39943, 33791, 'no_lang_code', 'name', 'TECES'),
(39944, 33792, 'sl', 'name', 'Ekoremediacijski TehnoloŔki Center'),
(39945, 33793, 'sl', 'name', 'TehnoloŔko raziskovalni center JUB'),
(39946, 33794, 'no_lang_code', 'name', 'Krka (Slovenia)'),
(39947, 33795, 'no_lang_code', 'name', 'Ektimo (Slovenia)'),
(39948, 33796, 'no_lang_code', 'name', 'Tekstina (Slovenia)'),
(39949, 33797, 'no_lang_code', 'name', 'Elea iC (Slovenia)'),
(39950, 33798, 'no_lang_code', 'name', 'TMG-BMC (Slovenia)'),
(39951, 33799, 'no_lang_code', 'name', 'TKK'),
(39952, 33800, 'no_lang_code', 'name', 'Em.tronic Elektromehanski Sistemi (Slovenia)'),
(39953, 33801, 'no_lang_code', 'name', 'Labena (Slovenia)'),
(39954, 33802, 'no_lang_code', 'name', 'EMO Orodjarna (Slovenia)'),
(39955, 33803, 'no_lang_code', 'name', 'Novartis (Slovenia)'),
(39956, 33804, 'no_lang_code', 'name', 'TIC-LENS Laser Technologies (Slovenia)'),
(39957, 33805, 'no_lang_code', 'name', 'EN-FIST Centre of Excellence (Slovenia)'),
(39958, 33806, 'no_lang_code', 'name', 'Limnos (Slovenia)'),
(39959, 33807, 'no_lang_code', 'name', 'Energy Restructuring Agency (Slovenia)'),
(39960, 33808, 'en', 'name', 'Coal Mining Museum of Slovenia'),
(39961, 33809, 'no_lang_code', 'name', 'Litostroj Power (Slovenia)'),
(39962, 33810, 'no_lang_code', 'name', 'Envit (Slovenia)'),
(39963, 33811, 'no_lang_code', 'name', 'Logon (Slovenia)'),
(39964, 33812, 'en', 'name', 'National School of Leadership in Education'),
(39965, 33813, 'no_lang_code', 'name', 'Episcenter (Slovenia)'),
(39966, 33814, 'no_lang_code', 'name', 'Esotech (Slovenia)'),
(39967, 33815, 'no_lang_code', 'name', 'Unior (Slovenia)'),
(39968, 33816, 'no_lang_code', 'name', 'ETI Elektroelement (Slovenia)'),
(39969, 33817, 'no_lang_code', 'name', 'Unichem (Slovenia)'),
(39970, 33818, 'no_lang_code', 'name', 'Gorenjska Predilnica (Slovenia)'),
(39971, 33819, 'en', 'name', 'Trojina Institute for Applied Slovene Studies'),
(39972, 33820, 'no_lang_code', 'name', 'Trimo (Slovenia)'),
(39973, 33821, 'no_lang_code', 'name', 'LPKF Group (Slovenia)'),
(39974, 33822, 'no_lang_code', 'name', 'Tosama (Slovenia)'),
(39975, 33823, 'no_lang_code', 'name', 'Mahle Letrika (Slovenia)'),
(39976, 33824, 'sl', 'name', 'Veterinarska Bolnica Maribor'),
(39977, 33825, 'en', 'name', 'Institute of Environmental Biology and Biotechnology'),
(39978, 33825, 'fr', 'name', 'L’Institut de Biologie Environnementale et Biotechnologie'),
(39979, 33826, 'fr', 'name', 'Institut de Biologie et Technologies'),
(39980, 33826, 'en', 'name', 'Institute of Biology and Technology'),
(39981, 33827, 'en', 'name', 'Infectious Disease Models and Innovative Therapies'),
(39982, 33828, 'fr', 'name', 'Institut de Recherches en Technologies et Sciences pour le Vivant'),
(39983, 33829, 'no_lang_code', 'name', 'Marmor Hotavlje Group (Slovenia)'),
(39984, 33830, 'en', 'name', 'Fisheries Research Institute of Slovenia'),
(39985, 33831, 'no_lang_code', 'name', 'Daihen Varstroj (Slovenia)'),
(39986, 33832, 'no_lang_code', 'name', 'Fotona (Slovenia)'),
(39987, 33833, 'no_lang_code', 'name', 'Velana Living (Slovenia)'),
(39988, 33834, 'en', 'name', 'Mediterranean Institute for Advanced Studies'),
(39989, 33835, 'no_lang_code', 'name', 'Veplas (Slovenia)'),
(39990, 33836, 'no_lang_code', 'name', 'Vilpo (Slovenia)'),
(39991, 33837, 'sl', 'name', 'FrančiŔkanski Družinski InŔtitut'),
(39992, 33838, 'sl', 'name', 'MEIS Storitve za Okolje'),
(39993, 33839, 'no_lang_code', 'name', 'Viris (Slovenia)'),
(39994, 33840, 'no_lang_code', 'name', 'Metal Ravne (Slovenia)'),
(39995, 33841, 'no_lang_code', 'name', 'Metrel (Slovenia)'),
(39996, 33842, 'no_lang_code', 'name', 'Metronik (Slovenia)'),
(39997, 33843, 'sl', 'name', 'SploŔna BolniŔnica Slovenj Gradec'),
(39998, 33844, 'no_lang_code', 'name', 'VIsport (Slovenia)'),
(39999, 33845, 'no_lang_code', 'name', 'Mg Soft (Slovenia)'),
(40000, 33846, 'no_lang_code', 'name', 'Geodetski Zavod Celje (Slovenia)'),
(40001, 33847, 'en', 'name', 'Welding Institute (Slovenia)'),
(40002, 33848, 'no_lang_code', 'name', 'Goap (Slovenia)'),
(40003, 33849, 'no_lang_code', 'name', 'MKS Electronic Systems (Slovenia)'),
(40004, 33850, 'no_lang_code', 'name', 'Mlinotest (Slovenia)'),
(40005, 33851, 'no_lang_code', 'name', 'Yaskawa (Slovenia)'),
(40006, 33852, 'en', 'name', 'National Education Institute of the Republic of Slovenia'),
(40007, 33853, 'no_lang_code', 'name', 'Harpha Sea (Slovenia)'),
(40008, 33854, 'no_lang_code', 'name', 'Nigrad (Slovenia)'),
(40009, 33855, 'sl', 'name', 'RogaŔka Medical Centre'),
(40010, 33856, 'no_lang_code', 'name', 'Niko (Slovenia)'),
(40011, 33857, 'no_lang_code', 'name', 'Comtrade (Slovenia)'),
(40012, 33858, 'no_lang_code', 'name', 'Hidria (Slovenia)'),
(40013, 33859, 'no_lang_code', 'name', 'HIPOT-RR (Slovenia)'),
(40014, 33860, 'no_lang_code', 'name', 'I 2 Družba za ZaložniŔtvo Izobraževanje in Raziskovanje'),
(40015, 33861, 'sl', 'name', 'Grm Novo mesto - Center Biotehnike in Turizma'),
(40016, 33862, 'fr', 'name', 'DƩlƩgation Paris 12'),
(40017, 33863, 'en', 'name', 'Lilly Endowment'),
(40018, 33864, 'en', 'name', 'ARC Centre of Excellence in Plant Energy Biology'),
(40019, 33865, 'en', 'name', 'National Kidney Foundation Singapore'),
(40020, 33866, 'en', 'name', 'Department of Scientific and Industrial Research'),
(40021, 33867, 'en', 'name', 'Canada Excellence Research Chairs'),
(40022, 33867, 'fr', 'name', 'Chaires d’Excellence en Recherche du Canada'),
(40023, 33868, 'de', 'name', 'Minerva Stiftung'),
(40024, 33869, 'no_lang_code', 'name', 'Doosan Yonkang Foundation'),
(40025, 33870, 'no_lang_code', 'name', 'ZootFly (Slovenia)'),
(40026, 33871, 'no_lang_code', 'name', 'ZUM urban planning, design (Slovenia)'),
(40027, 33872, 'en', 'name', 'Woosong University'),
(40028, 33872, 'ko', 'name', 'ģš°ģ†”ėŒ€ķ•™źµ'),
(40029, 33873, 'no_lang_code', 'name', 'Metallteknikk (Norway)'),
(40030, 33874, 'no_lang_code', 'name', 'Anteo (Norway)'),
(40031, 33875, 'no_lang_code', 'name', 'Athena Seafoods (Norway)'),
(40032, 33876, 'no_lang_code', 'name', 'Apertus (Norway)'),
(40033, 33877, 'en', 'name', 'Akershus County Council'),
(40034, 33878, 'no_lang_code', 'name', 'APIM Therapeutics (Norway)'),
(40035, 33879, 'no_lang_code', 'name', 'Shell (Norway)'),
(40036, 33879, 'no', 'name', 'Shell i Norge'),
(40037, 33880, 'no_lang_code', 'name', 'Applica Test & Certification (Norway)'),
(40038, 33881, 'no_lang_code', 'name', 'OMBE Plast (Norway)'),
(40039, 33882, 'no_lang_code', 'name', 'Applied Petroleum Technology (Norway)'),
(40040, 33883, 'no_lang_code', 'name', 'Aventa (Norway)'),
(40041, 33884, 'no_lang_code', 'name', 'Aptomar (Norway)'),
(40042, 33885, 'no_lang_code', 'name', 'ƅkrehamn TrĆ„lbĆøteri (Norway)'),
(40043, 33886, 'no_lang_code', 'name', 'Denofa (Norway)'),
(40044, 33887, 'no_lang_code', 'name', 'Aseon (Norway)'),
(40045, 33888, 'no', 'name', 'AksjeNorge'),
(40046, 33889, 'no_lang_code', 'name', 'Avexxin (Norway)'),
(40047, 33890, 'no', 'name', 'AksjonƦrforeningen'),
(40048, 33891, 'no_lang_code', 'name', '2K Tools (Norway)'),
(40049, 33892, 'no_lang_code', 'name', 'AKVA Group (Norway)'),
(40050, 33893, 'no_lang_code', 'name', '3GSolar (Norway)'),
(40051, 33894, 'no_lang_code', 'name', 'Avfall Norge (Norway)'),
(40052, 33895, 'no_lang_code', 'name', 'Aqua Bio Technology (Norway)'),
(40053, 33896, 'no_lang_code', 'name', 'Aspiro (Norway)'),
(40054, 33897, 'no_lang_code', 'name', 'Avinor (Norway)'),
(40055, 33898, 'no_lang_code', 'name', 'Aqua Energy Solutions (Norway)'),
(40056, 33899, 'no_lang_code', 'name', 'Akvaforsk Genetics Center (Norway)'),
(40057, 33900, 'no', 'name', '3T Helse (Norway)'),
(40058, 33901, 'no_lang_code', 'name', 'AquaGen (Norway)'),
(40059, 33902, 'no_lang_code', 'name', 'AXTech (Norway)'),
(40060, 33903, 'no_lang_code', 'name', 'Morenot (Norway)'),
(40061, 33904, 'no_lang_code', 'name', '4Subsea (Norway)'),
(40062, 33905, 'no_lang_code', 'name', 'Ayanda (Norway)'),
(40063, 33906, 'no_lang_code', 'name', 'Aquadyne (Norway)'),
(40064, 33907, 'no_lang_code', 'name', 'Bach Technology (Norway)'),
(40065, 33908, 'no_lang_code', 'name', 'Badger Explorer (Norway)'),
(40066, 33909, 'no_lang_code', 'name', 'BƦrgƄrden Ƙstre Enger (Norway)'),
(40067, 33910, 'no', 'name', 'AT Skog'),
(40068, 33911, 'no_lang_code', 'name', 'Alcoa (Norway)'),
(40069, 33912, 'no_lang_code', 'name', 'Alcontrol Laboratories (Norway)'),
(40070, 33913, 'no_lang_code', 'name', 'Alere (Norway)'),
(40071, 33914, 'no', 'name', '657 Oslo'),
(40072, 33915, 'no_lang_code', 'name', '7Sense Group (Norway)'),
(40073, 33916, 'no_lang_code', 'name', 'Aquafarm Equipment (Norway)'),
(40074, 33917, 'no_lang_code', 'name', 'AquaFence (Norway)'),
(40075, 33918, 'no_lang_code', 'name', 'Alfa (Norway)'),
(40076, 33919, 'no_lang_code', 'name', 'Baker Hughes (Norway)'),
(40077, 33920, 'no_lang_code', 'name', 'Alfsen og Gunderson (Norway)'),
(40078, 33921, 'no_lang_code', 'name', 'Aqualine (Norway)'),
(40079, 33922, 'no_lang_code', 'name', 'A-Lifting (Norway)'),
(40080, 33923, 'no_lang_code', 'name', 'Balter Medical (Norway)'),
(40081, 33924, 'no_lang_code', 'name', 'Bama Gruppen (Norway)'),
(40082, 33925, 'no_lang_code', 'name', 'AquaScan (Norway)'),
(40083, 33926, 'no_lang_code', 'name', 'Bayer (Norway)'),
(40084, 33927, 'no_lang_code', 'name', 'Aquastructures (Norway)'),
(40085, 33928, 'no_lang_code', 'name', 'Infor (Norway)'),
(40086, 33929, 'no_lang_code', 'name', 'Algaetech (Norway)'),
(40087, 33930, 'no_lang_code', 'name', 'Barco (Norway)'),
(40088, 33931, 'no_lang_code', 'name', 'Pelias Norsk Skadedyrkontroll (Norway)'),
(40089, 33932, 'no_lang_code', 'name', 'Atkins (Norway)'),
(40090, 33933, 'no_lang_code', 'name', 'Aquatic Concept group (Norway)'),
(40091, 33934, 'no_lang_code', 'name', 'ATM Brovig (Norway)'),
(40092, 33935, 'no_lang_code', 'name', 'Aanderaa (Norway)'),
(40093, 33936, 'no_lang_code', 'name', 'Aarbakke Innovation (Norway)'),
(40094, 33937, 'no_lang_code', 'name', 'Atmel (Norway)'),
(40095, 33938, 'no_lang_code', 'name', 'Bartec Pixavi (Norway)'),
(40096, 33939, 'no_lang_code', 'name', 'Allskog (Norway)'),
(40097, 33940, 'no_lang_code', 'name', 'Abalonyx (Norway)'),
(40098, 33941, 'en', 'name', 'Association of Vocational Rehabilitation Enterprises'),
(40099, 33942, 'no_lang_code', 'name', 'Bass (Norway)'),
(40100, 33943, 'no_lang_code', 'name', 'AudioPlus (Norway)'),
(40101, 33944, 'no_lang_code', 'name', 'Abbon (Norway)'),
(40102, 33945, 'no', 'name', 'BesteBakken'),
(40103, 33946, 'no', 'name', 'Abelia'),
(40104, 33947, 'en', 'name', 'Norwegian Labour Inspection Authority'),
(40105, 33948, 'no_lang_code', 'name', 'Aurland Naturverkstad (Norway)'),
(40106, 33949, 'no_lang_code', 'name', 'Abilia (Norway)'),
(40107, 33950, 'no', 'name', 'Coperiosenteret'),
(40108, 33951, 'no_lang_code', 'name', 'Archer (Norway)'),
(40109, 33952, 'no_lang_code', 'name', 'Lyse (Norway)'),
(40110, 33953, 'no_lang_code', 'name', 'Abyssus Marine Services (Norway)'),
(40111, 33954, 'no_lang_code', 'name', 'Accenture (Norway)'),
(40112, 33955, 'no_lang_code', 'name', 'BƄtservice (Norway)'),
(40113, 33956, 'no_lang_code', 'name', 'Seagarden (Norway)'),
(40114, 33957, 'no_lang_code', 'name', 'TGS (Norway)'),
(40115, 33958, 'no_lang_code', 'name', 'Beck Engineering (Norway)'),
(40116, 33959, 'no_lang_code', 'name', 'Arctic Nutrition (Norway)'),
(40117, 33960, 'no_lang_code', 'name', 'Arctic Pharma (Norway)'),
(40118, 33961, 'no_lang_code', 'name', 'Ericsson (Norway)'),
(40119, 33962, 'no_lang_code', 'name', 'Amedia (Norway)'),
(40120, 33963, 'no_lang_code', 'name', 'Acona (Norway)'),
(40121, 33964, 'no_lang_code', 'name', 'ArcticZymes (Norway)'),
(40122, 33965, 'no_lang_code', 'name', 'Acoustics (Norway)'),
(40123, 33966, 'no_lang_code', 'name', 'AnaCon (Norway)'),
(40124, 33967, 'no_lang_code', 'name', 'ArcusGruppen (Norway)'),
(40125, 33968, 'en', 'name', 'Bellona Foundation'),
(40126, 33969, 'no_lang_code', 'name', 'ActionPhoto International (Norway)'),
(40127, 33970, 'no', 'name', 'AndĆøya Space Center'),
(40128, 33971, 'no_lang_code', 'name', 'Benteler (Norway)'),
(40129, 33972, 'no_lang_code', 'name', 'Vizrt (Norway)'),
(40130, 33973, 'no_lang_code', 'name', 'Bergen Energi (Norway)'),
(40131, 33974, 'no_lang_code', 'name', 'Adalia Film (Norway)'),
(40132, 33975, 'no_lang_code', 'name', 'Nexans (Norway)'),
(40133, 33976, 'no_lang_code', 'name', 'Argus Remote Systems (Norway)'),
(40134, 33977, 'no_lang_code', 'name', 'Adigo (Norway)'),
(40135, 33978, 'no', 'name', 'Bergen Kommune ByrƄdsavd for Helse og Omsorg'),
(40136, 33979, 'no_lang_code', 'name', 'Arkitektbedriftene (Norway)'),
(40137, 33980, 'no_lang_code', 'name', 'Bergen TeknologioverfĆøring (Norway)'),
(40138, 33981, 'no_lang_code', 'name', 'FelleskjĆøpet Agri (Norway)'),
(40139, 33982, 'no_lang_code', 'name', 'Arkitektskap (Norway)'),
(40140, 33983, 'no_lang_code', 'name', 'Admincontrol (Norway)'),
(40141, 33984, 'no_lang_code', 'name', 'Animaze Technology (Norway)'),
(40142, 33985, 'en', 'name', 'Bergen Science Center'),
(40143, 33986, 'no_lang_code', 'name', 'Arkitektur og Byggteknikk (Norway)'),
(40144, 33987, 'no_lang_code', 'name', 'Anlegg Bolig RĆør & Varme AS (Norway)'),
(40145, 33988, 'no_lang_code', 'name', 'BerGenBio (Norway)'),
(40146, 33989, 'no_lang_code', 'name', 'Autronica Fire and Security (Norway)'),
(40147, 33990, 'en', 'name', 'National Archives Services of Norway'),
(40148, 33991, 'no_lang_code', 'name', 'Admit (Norway)'),
(40149, 33992, 'no_lang_code', 'name', 'Bergene Holm (Norway)'),
(40150, 33993, 'no_lang_code', 'name', 'Jaeder (Norway)'),
(40151, 33994, 'no_lang_code', 'name', 'Geno (Norway)'),
(40152, 33995, 'no_lang_code', 'name', 'Adresseavisen (Norway)'),
(40153, 33996, 'no_lang_code', 'name', 'Biolink Group (Norway)'),
(40154, 33997, 'no', 'name', 'Bergens Rederiforening'),
(40155, 33998, 'no_lang_code', 'name', 'BioMar (Norway)'),
(40156, 33999, 'no_lang_code', 'name', 'Data Respons (Norway)'),
(40157, 34000, 'no_lang_code', 'name', 'BW Group (Norway)'),
(40158, 34001, 'no_lang_code', 'name', 'Aibel (Norway)'),
(40159, 34002, 'no_lang_code', 'name', 'Artec Aqua (Norway)'),
(40160, 34003, 'no_lang_code', 'name', 'Biomega (Norway)'),
(40161, 34004, 'no_lang_code', 'name', 'Biomolex (Norway)'),
(40162, 34005, 'no_lang_code', 'name', 'Norwegian Biochemical (Norway)'),
(40163, 34006, 'no_lang_code', 'name', 'Bionor (Norway)'),
(40164, 34007, 'no_lang_code', 'name', 'Delprodukt (Norway)'),
(40165, 34008, 'no', 'name', 'Aga Halibut'),
(40166, 34009, 'en', 'name', 'Board of European Students of Technology'),
(40167, 34010, 'no_lang_code', 'name', 'Agder Energi (Norway)'),
(40168, 34011, 'no_lang_code', 'name', 'Green Cube Management (Norway)'),
(40169, 34012, 'no_lang_code', 'name', 'Betonmast (Norway)'),
(40170, 34013, 'no_lang_code', 'name', 'Hadeland Glassverk (Norway)'),
(40171, 34014, 'no_lang_code', 'name', 'Bevital (Norway)'),
(40172, 34015, 'no_lang_code', 'name', 'AGR Group (Norway)'),
(40173, 34016, 'no_lang_code', 'name', 'Biosense Laboratories (Norway)'),
(40174, 34017, 'no_lang_code', 'name', 'BEWi (Norway)'),
(40175, 34018, 'en', 'name', 'Norwegian Institute of Emotion-focused Therapy'),
(40176, 34019, 'no_lang_code', 'name', 'AgromiljĆø (Norway)'),
(40177, 34020, 'no_lang_code', 'name', 'Torvald Klaveness (Norway)'),
(40178, 34021, 'no_lang_code', 'name', 'Biblioteksentralen (Norway)'),
(40179, 34022, 'no_lang_code', 'name', 'Biosergen (Norway)'),
(40180, 34023, 'no_lang_code', 'name', 'Marex (Norway)'),
(40181, 34024, 'no_lang_code', 'name', 'AgroNova (Norway)'),
(40182, 34025, 'no_lang_code', 'name', 'Bulldozer Film (Norway)'),
(40183, 34026, 'no', 'name', 'Avdeling for Utdanning Nord-TrĆøndelag Fylkeskommune'),
(40184, 34027, 'no_lang_code', 'name', 'BioBag (Norway)'),
(40185, 34028, 'no_lang_code', 'name', 'Biota Guard (Norway)'),
(40186, 34029, 'en', 'name', 'Business Region Bergen'),
(40187, 34030, 'no_lang_code', 'name', 'Biobe (Norway)'),
(40188, 34031, 'no_lang_code', 'name', 'Ak. Grieg Norge (Norway)'),
(40189, 34032, 'no_lang_code', 'name', 'BiotaTools (Norway)'),
(40190, 34033, 'en', 'name', 'Buskerud County Municipality'),
(40191, 34034, 'no_lang_code', 'name', 'Biochos (Norway)'),
(40192, 34035, 'no_lang_code', 'name', 'Biotec Pharmacon (Norway)'),
(40193, 34036, 'en', 'name', 'Confederation of Norwegian Enterprise'),
(40194, 34037, 'no', 'name', 'Akademika (Norway)'),
(40195, 34038, 'en', 'name', 'Norwegian Biotechnology Advisory Board'),
(40196, 34039, 'no_lang_code', 'name', 'Biovotec (Norway)'),
(40197, 34040, 'no_lang_code', 'name', 'C-NAV (Norway)'),
(40198, 34041, 'no_lang_code', 'name', 'Biogrid (Norway)'),
(40199, 34042, 'no_lang_code', 'name', 'C10 Pharma (Norway)'),
(40200, 34043, 'no_lang_code', 'name', 'Biowater Technology (Norway)'),
(40201, 34044, 'no_lang_code', 'name', 'C6 Technologies (Norway)'),
(40202, 34045, 'no_lang_code', 'name', 'Commitment (Norway)'),
(40203, 34046, 'no_lang_code', 'name', 'C-Feed (Norway)'),
(40204, 34047, 'no_lang_code', 'name', 'Calanus (Norway)'),
(40205, 34048, 'no_lang_code', 'name', 'BjĆørnson (Norway)'),
(40206, 34049, 'no_lang_code', 'name', 'Calcus (Norway)'),
(40207, 34050, 'no_lang_code', 'name', 'Completion Technology Resources (Norway)'),
(40208, 34051, 'en', 'name', 'Norwegian Computer Society'),
(40209, 34052, 'no_lang_code', 'name', 'Calora Subsea (Norway)'),
(40210, 34053, 'no_lang_code', 'name', 'BergenshalvĆøens Kommunale Kraftselskap (Norway)'),
(40211, 34054, 'no_lang_code', 'name', 'Calpro (Norway)'),
(40212, 34055, 'no', 'name', 'Emballasjeforeningen'),
(40213, 34056, 'no_lang_code', 'name', 'Calysta (Norway)'),
(40214, 34057, 'en', 'name', 'Norwegian Medical Association'),
(40215, 34058, 'no_lang_code', 'name', 'Cambi (Norway)'),
(40216, 34059, 'no_lang_code', 'name', 'Hƶegh LNG (Norway)'),
(40217, 34060, 'no_lang_code', 'name', 'BlƄst Film (Norway)'),
(40218, 34061, 'no_lang_code', 'name', 'Doble (Norway)'),
(40219, 34062, 'no_lang_code', 'name', 'Comptel (Norway)'),
(40220, 34063, 'no_lang_code', 'name', 'Docmap (Norway)'),
(40221, 34064, 'no_lang_code', 'name', 'Blue Planet (Norway)'),
(40222, 34065, 'no_lang_code', 'name', 'Rolls-Royce (Norway)'),
(40223, 34066, 'en', 'name', 'Computer Applications and Quantitative Methods in Archaeology'),
(40224, 34067, 'no_lang_code', 'name', 'DOF Subsea (Norway)'),
(40225, 34068, 'no_lang_code', 'name', 'Camo (Norway)'),
(40226, 34069, 'no_lang_code', 'name', 'Con-Form (Norway)'),
(40227, 34070, 'no_lang_code', 'name', 'Dolphin Interconnect Solutions (Norway)'),
(40228, 34071, 'no_lang_code', 'name', 'BNW-Energy (Norway)'),
(40229, 34072, 'no_lang_code', 'name', 'Boa Offshore (Norway)'),
(40230, 34073, 'no_lang_code', 'name', 'CondAlign (Norway)'),
(40231, 34074, 'no_lang_code', 'name', 'Conexus (Norway)'),
(40232, 34075, 'no_lang_code', 'name', 'Domos (Norway)'),
(40233, 34076, 'no_lang_code', 'name', 'Capgemini (Norway)'),
(40234, 34077, 'no_lang_code', 'name', 'Ƙrsted (Norway)'),
(40235, 34078, 'no_lang_code', 'name', 'Connect LNG (Norway)'),
(40236, 34079, 'no_lang_code', 'name', 'Capia (Norway)'),
(40237, 34080, 'en', 'name', 'Connect'),
(40238, 34081, 'no_lang_code', 'name', 'Cappelen Damm (Norway)'),
(40239, 34082, 'en', 'name', 'Norwegian Farmers'' Union'),
(40240, 34083, 'no_lang_code', 'name', 'Dovre (Norway)'),
(40241, 34084, 'no_lang_code', 'name', 'Capwell (Norway)'),
(40242, 34085, 'no_lang_code', 'name', 'Conpart (Norway)'),
(40243, 34086, 'no_lang_code', 'name', 'Dpcom (Norway)'),
(40244, 34087, 'no_lang_code', 'name', 'Borginnovasj (Norway)'),
(40245, 34088, 'no_lang_code', 'name', 'Cardiaccs (Norway)'),
(40246, 34089, 'no_lang_code', 'name', 'Consafe Logistics (Norway)'),
(40247, 34090, 'no_lang_code', 'name', 'Dr.Techn.Olav Olsen (Norway)'),
(40248, 34091, 'no', 'name', 'Drammen Kommune'),
(40249, 34092, 'no_lang_code', 'name', 'Norwegian State Railways (Norway)'),
(40250, 34093, 'no_lang_code', 'name', 'Cautus Geo (Norway)'),
(40251, 34094, 'no_lang_code', 'name', 'Coop Norge (Norway)'),
(40252, 34095, 'no_lang_code', 'name', 'JB Well Solutions (Norway)'),
(40253, 34096, 'no_lang_code', 'name', 'Botngaard (Norway)'),
(40254, 34097, 'no_lang_code', 'name', 'Celerway Communication (Norway)'),
(40255, 34098, 'no_lang_code', 'name', 'CellCura (Norway)'),
(40256, 34099, 'no_lang_code', 'name', 'Sekal (Norway)'),
(40257, 34100, 'no_lang_code', 'name', 'Designit (Norway)'),
(40258, 34101, 'no_lang_code', 'name', 'CoorsTek (Norway)'),
(40259, 34102, 'no_lang_code', 'name', 'BP Norge (Norway)'),
(40260, 34103, 'no_lang_code', 'name', 'Ceragon (Norway)'),
(40261, 34104, 'en', 'name', 'Queen Maud University College'),
(40262, 34105, 'no_lang_code', 'name', 'CoreAll (Norway)'),
(40263, 34106, 'no_lang_code', 'name', 'Brady (Norway)'),
(40264, 34107, 'no_lang_code', 'name', 'Mitsubishi Corporation (Norway)'),
(40265, 34108, 'no', 'name', 'Statped'),
(40266, 34109, 'no_lang_code', 'name', 'Corentium (Norway)'),
(40267, 34110, 'no_lang_code', 'name', 'Drug Discovery Laboratory (Norway)'),
(40268, 34111, 'no_lang_code', 'name', 'Cerpus (Norway)');
INSERT INTO `ror_settings` VALUES
(40269, 34112, 'no_lang_code', 'name', 'Due MiljĆø (Norway)'),
(40270, 34113, 'no_lang_code', 'name', 'Breeze (Norway)'),
(40271, 34114, 'no_lang_code', 'name', 'Duverden (Norway)'),
(40272, 34115, 'no_lang_code', 'name', 'CFD Marine (Norway)'),
(40273, 34116, 'no_lang_code', 'name', 'Cflow Fish Handling (Norway)'),
(40274, 34117, 'no_lang_code', 'name', 'Corticalis (Norway)'),
(40275, 34118, 'no_lang_code', 'name', 'Norges Vel (Norway)'),
(40276, 34119, 'no_lang_code', 'name', 'Dynatec (Norway)'),
(40277, 34120, 'no_lang_code', 'name', 'Dynavec (Norway)'),
(40278, 34121, 'no_lang_code', 'name', 'Changetech (Norway)'),
(40279, 34122, 'no_lang_code', 'name', 'BRI Offshore (Norway)'),
(40280, 34123, 'no_lang_code', 'name', 'Dynea (Norway)'),
(40281, 34124, 'no_lang_code', 'name', 'Cova (Norway)'),
(40282, 34125, 'no_lang_code', 'name', 'Bring (Norway)'),
(40283, 34126, 'no_lang_code', 'name', 'Chiron (Norway)'),
(40284, 34127, 'no_lang_code', 'name', 'E Plug (Norway)'),
(40285, 34128, 'no_lang_code', 'name', 'CrayoNano (Norway)'),
(40286, 34129, 'en', 'name', 'Norwegian Bible Society'),
(40287, 34130, 'no_lang_code', 'name', 'CreoTech (Norway)'),
(40288, 34131, 'no_lang_code', 'name', 'E-CO Energi (Norway)'),
(40289, 34132, 'no_lang_code', 'name', 'Crevi (Norway)'),
(40290, 34133, 'no_lang_code', 'name', 'EAB Engineering (Norway)'),
(40291, 34134, 'no_lang_code', 'name', 'BrĆødrene Dahl (Norway)'),
(40292, 34135, 'no_lang_code', 'name', 'Chriship (Norway)'),
(40293, 34136, 'en', 'name', 'Norwegian Nobel Institute'),
(40294, 34137, 'no_lang_code', 'name', 'Brunvoll (Norway)'),
(40295, 34138, 'en', 'name', 'Oslo Centre for Interdisciplinary Environmental and Social Research'),
(40296, 34139, 'en', 'name', 'Norwegian Forestry Society'),
(40297, 34140, 'no_lang_code', 'name', 'Brusell Communications (Norway)'),
(40298, 34141, 'en', 'name', 'Crisis Training'),
(40299, 34142, 'no_lang_code', 'name', 'City Motion (Norway)'),
(40300, 34143, 'no_lang_code', 'name', 'BrynslĆøkken (Norway)'),
(40301, 34144, 'no_lang_code', 'name', 'Csub (Norway)'),
(40302, 34145, 'no_lang_code', 'name', 'Eco Inhibitors (Norway)'),
(40303, 34146, 'en', 'name', 'Norwegian Trotting Association'),
(40304, 34147, 'no_lang_code', 'name', 'ClampOn (Norway)'),
(40305, 34148, 'no_lang_code', 'name', 'Cubility (Norway)'),
(40306, 34149, 'no_lang_code', 'name', 'BT Signaal (Norway)'),
(40307, 34150, 'no_lang_code', 'name', 'Clarity Water Treatment Systems (Norway)'),
(40308, 34151, 'no', 'name', 'Cultura Bank'),
(40309, 34152, 'no_lang_code', 'name', 'Cupp Computing (Norway)'),
(40310, 34153, 'no_lang_code', 'name', 'Bull Ski & Kajakk (Norway)'),
(40311, 34154, 'no_lang_code', 'name', 'ECOsubsea (Norway)'),
(40312, 34155, 'no_lang_code', 'name', 'Clean Marine (Norway)'),
(40313, 34156, 'no', 'name', 'Boligbygg Oslo KF'),
(40314, 34157, 'no_lang_code', 'name', 'Cybernetica (Norway)'),
(40315, 34158, 'no_lang_code', 'name', 'Ecotone (Norway)'),
(40316, 34159, 'no_lang_code', 'name', 'Clavis Technology (Norway)'),
(40317, 34160, 'no_lang_code', 'name', 'Cytovation (Norway)'),
(40318, 34161, 'no', 'name', 'Praktisk-Teologiske Seminar'),
(40319, 34162, 'no_lang_code', 'name', 'Clean Silicon (Norway)'),
(40320, 34163, 'no_lang_code', 'name', 'Devoteam (Norway)'),
(40321, 34164, 'no_lang_code', 'name', 'Elliptic Labs (Norway)'),
(40322, 34165, 'no_lang_code', 'name', 'Clearwater Group (Norway)'),
(40323, 34166, 'no_lang_code', 'name', 'Compello (Norway)'),
(40324, 34167, 'en', 'name', 'Rogaland County Council'),
(40325, 34168, 'no_lang_code', 'name', 'Evry (Norway)'),
(40326, 34169, 'no_lang_code', 'name', 'CLS Technology (Norway)'),
(40327, 34170, 'no_lang_code', 'name', 'Elop (Norway)'),
(40328, 34171, 'no_lang_code', 'name', 'eDrilling (Norway)'),
(40329, 34172, 'no_lang_code', 'name', 'Co-action Publishing (Norway)'),
(40330, 34173, 'no_lang_code', 'name', 'Elotec (Norway)'),
(40331, 34174, 'no_lang_code', 'name', 'Elretur (Norway)'),
(40332, 34175, 'no_lang_code', 'name', 'Edtech Foundry (Norway)'),
(40333, 34176, 'no_lang_code', 'name', 'CO2-Norway (Norway)'),
(40334, 34177, 'no_lang_code', 'name', 'Cobuilder (Norway)'),
(40335, 34178, 'no_lang_code', 'name', 'Didac (Norway)'),
(40336, 34179, 'no_lang_code', 'name', 'CodeIT (Norway)'),
(40337, 34180, 'en', 'name', 'Trondheim-Fjord Rivers'),
(40338, 34181, 'no', 'name', 'Dans i Skolen'),
(40339, 34182, 'no_lang_code', 'name', 'Colifast (Norway)'),
(40340, 34183, 'no_lang_code', 'name', 'DigiDoc Technologies (Norway)'),
(40341, 34184, 'no_lang_code', 'name', 'Comet Biotech (Norway)'),
(40342, 34185, 'no_lang_code', 'name', 'Dat (Norway)'),
(40343, 34186, 'no_lang_code', 'name', 'Dignio (Norway)'),
(40344, 34187, 'no_lang_code', 'name', 'Electromagnetic Geoservices (Norway)'),
(40345, 34188, 'no_lang_code', 'name', 'Commfides Norge (Norway)'),
(40346, 34189, 'no_lang_code', 'name', 'Dataloy (Norway)'),
(40347, 34190, 'no_lang_code', 'name', 'Emisoft (Norway)'),
(40348, 34191, 'no_lang_code', 'name', 'Davvi Girji (Norway)'),
(40349, 34192, 'no_lang_code', 'name', 'Encap Security (Norway)'),
(40350, 34193, 'no_lang_code', 'name', 'Douchebags (Norway)'),
(40351, 34194, 'no_lang_code', 'name', 'Dinamo (Norway)'),
(40352, 34195, 'en', 'name', 'International Ocean Discovery Program'),
(40353, 34196, 'no_lang_code', 'name', 'Dips (Norway)'),
(40354, 34197, 'en', 'name', 'Energy Norway'),
(40355, 34198, 'en', 'name', 'Energy Farm'),
(40356, 34199, 'en', 'name', 'Norwegian National Research Ethics Committees'),
(40357, 34200, 'no_lang_code', 'name', 'DeAmp (Norway)'),
(40358, 34201, 'en', 'name', 'Division of Grants & Agreements'),
(40359, 34202, 'no_lang_code', 'name', 'DeepOcean (Norway)'),
(40360, 34203, 'en', 'name', 'Inland Norway Energy Agency'),
(40361, 34204, 'en', 'name', 'Directorate for Cultural Heritage'),
(40362, 34204, 'no', 'name', 'Riksantikvaren'),
(40363, 34205, 'no_lang_code', 'name', 'EnergiUnion (Norway)'),
(40364, 34206, 'no_lang_code', 'name', 'Deep Sea Anchors (Norway)'),
(40365, 34207, 'no_lang_code', 'name', 'Nordly Holding (Norway)'),
(40366, 34208, 'en', 'name', 'Division of Biological Infrastructure'),
(40367, 34209, 'no_lang_code', 'name', 'Ener-G (Norway)'),
(40368, 34210, 'en', 'name', 'Division of Environmental Biology'),
(40369, 34211, 'en', 'name', 'Emerging Frontiers Office'),
(40370, 34212, 'no_lang_code', 'name', 'Defa (Norway)'),
(40371, 34213, 'no', 'name', 'Direktoratet for Ćøkonomistyring'),
(40372, 34214, 'en', 'name', 'Oslo Public Library'),
(40373, 34215, 'no_lang_code', 'name', 'Evac (Norway)'),
(40374, 34216, 'no_lang_code', 'name', 'Delitek (Norway)'),
(40375, 34217, 'en', 'name', 'Division of Integrative Organismal Systems'),
(40376, 34218, 'no', 'name', 'Evidensia Oslo dyresykehus'),
(40377, 34219, 'no_lang_code', 'name', 'Deltagruppen (Norway)'),
(40378, 34220, 'no_lang_code', 'name', 'Energy Dynamics (Norway)'),
(40379, 34221, 'en', 'name', 'Division of Molecular & Cellular Biosciences'),
(40380, 34222, 'no_lang_code', 'name', 'Expology (Norway)'),
(40381, 34223, 'no_lang_code', 'name', 'Fredrikstad Energi (Norway)'),
(40382, 34224, 'no_lang_code', 'name', 'Eyasys (Norway)'),
(40383, 34225, 'no_lang_code', 'name', 'Fish Pool (Norway)'),
(40384, 34226, 'no', 'name', 'Eyde-Nettverket'),
(40385, 34227, 'no_lang_code', 'name', 'EyeLife (Norway)'),
(40386, 34228, 'en', 'name', 'Division of Computing and Communication Foundations'),
(40387, 34229, 'en', 'name', 'Division of Computer and Network Systems'),
(40388, 34230, 'no_lang_code', 'name', 'Enhanced Drilling (Norway)'),
(40389, 34231, 'no_lang_code', 'name', 'Fishbones (Norway)'),
(40390, 34232, 'en', 'name', 'Division of Information and Intelligent Systems'),
(40391, 34233, 'no_lang_code', 'name', 'Isola (Norway)'),
(40392, 34234, 'no_lang_code', 'name', 'Fabriscale Technologies (Norway)'),
(40393, 34235, 'en', 'name', 'Norwegian Seafood Federation'),
(40394, 34235, 'no', 'name', 'SjĆømat Norge'),
(40395, 34236, 'no_lang_code', 'name', 'FriskgƄrden (Norway)'),
(40396, 34237, 'no_lang_code', 'name', 'Fiskeriforum Vest (Norway)'),
(40397, 34238, 'no_lang_code', 'name', 'Fronteer Solutions (Norway)'),
(40398, 34239, 'no_lang_code', 'name', 'Fjellstrand (Norway)'),
(40399, 34240, 'no_lang_code', 'name', 'Vigmostad & BjĆørke (Norway)'),
(40400, 34241, 'no_lang_code', 'name', 'Fronter (Norway)'),
(40401, 34242, 'en', 'name', 'Division of Chemical, Bioengineering, Environmental, and Transport Systems'),
(40402, 34243, 'no_lang_code', 'name', 'Faktotum Informasjon (Norway)'),
(40403, 34244, 'no_lang_code', 'name', 'Enoco (Norway)'),
(40404, 34245, 'no_lang_code', 'name', 'Frost Produkt (Norway)'),
(40405, 34246, 'en', 'name', 'Division of Electrical, Communications & Cyber Systems'),
(40406, 34247, 'no_lang_code', 'name', 'Fjord IT (Norway)'),
(40407, 34248, 'no_lang_code', 'name', 'EnĆøk-Senteret (Norway)'),
(40408, 34249, 'en', 'name', 'Division of Engineering Education & Centers'),
(40409, 34250, 'no_lang_code', 'name', 'Fjord Marin (Norway)'),
(40410, 34251, 'no_lang_code', 'name', 'Falck Nutec (Norway)'),
(40411, 34252, 'no_lang_code', 'name', 'ENOVA (Norway)'),
(40412, 34253, 'no_lang_code', 'name', 'Fanbooster (Norway)'),
(40413, 34254, 'no_lang_code', 'name', 'Fjordforsk (Norway)'),
(40414, 34255, 'no_lang_code', 'name', 'Enovate (Norway)'),
(40415, 34256, 'no_lang_code', 'name', 'Fjordland (Norway)'),
(40416, 34257, 'en', 'name', 'Office of Emerging Frontiers and Multidisciplinary Activities'),
(40417, 34258, 'no_lang_code', 'name', 'EnSol (Norway)'),
(40418, 34259, 'no_lang_code', 'name', 'Fatland (Norway)'),
(40419, 34260, 'en', 'name', 'Division of Industrial Innovation & Partnerships'),
(40420, 34261, 'no_lang_code', 'name', 'Environgas (Norway)'),
(40421, 34262, 'no_lang_code', 'name', 'Faveo (Norway)'),
(40422, 34263, 'no', 'name', 'Norsk LandbruksrƄdgiving'),
(40423, 34264, 'no_lang_code', 'name', 'Flapres (Norway)'),
(40424, 34265, 'no_lang_code', 'name', 'Feed Control (Norway)'),
(40425, 34266, 'no_lang_code', 'name', 'Flatsetsund Engineering (Norway)'),
(40426, 34267, 'no_lang_code', 'name', 'Feedback Aquaculture (Norway)'),
(40427, 34268, 'no_lang_code', 'name', 'Made for Movement (Norway)'),
(40428, 34269, 'no_lang_code', 'name', 'Flexit (Norway)'),
(40429, 34270, 'en', 'name', 'Office of Polar Programs'),
(40430, 34271, 'no_lang_code', 'name', 'Flow Design Bureau (Norway)'),
(40431, 34272, 'no_lang_code', 'name', 'Flowtec (Norway)'),
(40432, 34273, 'no_lang_code', 'name', 'Funcom (Norway)'),
(40433, 34274, 'no_lang_code', 'name', 'Danaher (Norway)'),
(40434, 34275, 'no_lang_code', 'name', 'Epsis (Norway)'),
(40435, 34276, 'no_lang_code', 'name', 'FelleskjĆøpet (Norway)'),
(40436, 34277, 'en', 'name', 'Equator Aircraft Norway'),
(40437, 34278, 'no_lang_code', 'name', 'Fupe Systems (Norway)'),
(40438, 34279, 'no_lang_code', 'name', 'Furore film (Norway)'),
(40439, 34280, 'no_lang_code', 'name', 'Eramet (Norway)'),
(40440, 34281, 'no_lang_code', 'name', 'Grieg Seafood (Norway)'),
(40441, 34282, 'no_lang_code', 'name', 'Future Solutions (Norway)'),
(40442, 34283, 'no_lang_code', 'name', 'Erichsen & Horgen (Norway)'),
(40443, 34284, 'no', 'name', 'Halden Kommune'),
(40444, 34285, 'no_lang_code', 'name', 'Future Subsea (Norway)'),
(40445, 34286, 'no', 'name', 'ForbrukerrƄdet'),
(40446, 34287, 'no_lang_code', 'name', 'FORCE Technology (Norway)'),
(40447, 34288, 'en', 'name', 'County Governor of Nordland'),
(40448, 34289, 'no_lang_code', 'name', 'Ernst-B. Johansen (Norway)'),
(40449, 34290, 'no_lang_code', 'name', 'FEM Engineering (Norway)'),
(40450, 34291, 'no_lang_code', 'name', 'Forget-Me-Not (Norway)'),
(40451, 34292, 'no', 'name', 'SĆør-TrĆøndelag County Authority'),
(40452, 34293, 'en', 'name', 'County Governor of Sogn og Fjordane'),
(40453, 34294, 'no_lang_code', 'name', 'Fornebu Consulting (Norway)'),
(40454, 34295, 'no_lang_code', 'name', 'Ferrx (Norway)'),
(40455, 34296, 'en', 'name', 'Division of Astronomical Sciences'),
(40456, 34297, 'no_lang_code', 'name', 'Genderguide (Norway)'),
(40457, 34298, 'no', 'name', 'Forskerfabrikken'),
(40458, 34299, 'en', 'name', 'Gena'),
(40459, 34300, 'no_lang_code', 'name', 'Fesil (Norway)'),
(40460, 34301, 'no_lang_code', 'name', 'Forskning.no (Norway)'),
(40461, 34302, 'en', 'name', 'Division of Chemistry'),
(40462, 34303, 'no_lang_code', 'name', 'Oslotech (Norway)'),
(40463, 34304, 'no_lang_code', 'name', 'Etac (Norway)'),
(40464, 34305, 'en', 'name', 'Center for Selective C–H Functionalization'),
(40465, 34306, 'en', 'name', 'Narvik Science Park'),
(40466, 34307, 'no_lang_code', 'name', 'Figgjo (Norway)'),
(40467, 34308, 'en', 'name', 'Division of Materials Research'),
(40468, 34309, 'en', 'name', 'Division of Mathematical Sciences'),
(40469, 34310, 'en', 'name', 'Division of Physics'),
(40470, 34311, 'en', 'name', 'Finance Norway'),
(40471, 34312, 'no_lang_code', 'name', 'Eurofins (Norway)'),
(40472, 34313, 'no_lang_code', 'name', 'General Electric (Norway)'),
(40473, 34314, 'en', 'name', 'Office of Integrative Activities'),
(40474, 34315, 'no_lang_code', 'name', 'Findus (Norway)'),
(40475, 34316, 'no_lang_code', 'name', 'Fortum (Norway)'),
(40476, 34317, 'en', 'name', 'Office of International Science and Engineering'),
(40477, 34318, 'no_lang_code', 'name', 'Digital Insight (Norway)'),
(40478, 34319, 'no_lang_code', 'name', 'Gce Node Service (Norway)'),
(40479, 34320, 'en', 'name', 'Norwegian Society for Medical Informatics'),
(40480, 34321, 'no_lang_code', 'name', 'Gavita (Norway)'),
(40481, 34322, 'en', 'name', 'Division of Information Systems'),
(40482, 34323, 'no_lang_code', 'name', 'Forus NƦringspark (Norway)'),
(40483, 34324, 'no_lang_code', 'name', 'FinsbrƄten (Norway)'),
(40484, 34325, 'no_lang_code', 'name', 'GKN (Norway)'),
(40485, 34326, 'no_lang_code', 'name', 'Gastronomisk Institutt'),
(40486, 34327, 'no_lang_code', 'name', 'FiReCo (Norway)'),
(40487, 34328, 'no_lang_code', 'name', 'ForzaSys (Norway)'),
(40488, 34329, 'no', 'name', 'GlƄmdal RegionrƄd'),
(40489, 34330, 'en', 'name', 'Division of Behavioral and Cognitive Sciences'),
(40490, 34331, 'en', 'name', 'Division of Social and Economic Sciences'),
(40491, 34332, 'no_lang_code', 'name', 'Glamox (Norway)'),
(40492, 34333, 'en', 'name', 'Science of Learning Centers Program Coordinating Committee'),
(40493, 34334, 'no_lang_code', 'name', 'DrƤger (Norway)'),
(40494, 34335, 'no_lang_code', 'name', 'Glen Dimplex Nordic (Norway)'),
(40495, 34336, 'en', 'name', 'SBE Office of Multidisciplinary Activities'),
(40496, 34337, 'no_lang_code', 'name', 'Gassco (Norway)'),
(40497, 34338, 'no_lang_code', 'name', 'GasPlas (Norway)'),
(40498, 34339, 'no_lang_code', 'name', 'Glencore (Norway)'),
(40499, 34340, 'no_lang_code', 'name', 'Gartnerhallen (Norway)'),
(40500, 34341, 'no_lang_code', 'name', 'Firmenich (Norway)'),
(40501, 34342, 'no_lang_code', 'name', 'Glommen Skog (Norway)'),
(40502, 34343, 'no_lang_code', 'name', 'Torghatten (Norway)'),
(40503, 34344, 'no_lang_code', 'name', 'GlucoSet (Norway)'),
(40504, 34345, 'no_lang_code', 'name', 'GlycaNova (Norway)'),
(40505, 34346, 'no_lang_code', 'name', 'Go Mobile (Norway)'),
(40506, 34347, 'en', 'name', 'First Scandinavia'),
(40507, 34348, 'no_lang_code', 'name', 'FourC (Norway)'),
(40508, 34349, 'no_lang_code', 'name', 'FraktefartĆøyenes Rederiforening (Norway)'),
(40509, 34350, 'no_lang_code', 'name', 'Goodtech (Norway)'),
(40510, 34351, 'no_lang_code', 'name', 'Alfa Laval (Norway)'),
(40511, 34352, 'no_lang_code', 'name', 'Graminor (Norway)'),
(40512, 34353, 'no_lang_code', 'name', 'Gran Tre (Norway)'),
(40513, 34354, 'no_lang_code', 'name', 'Gaidaros Forlag (Norway)'),
(40514, 34355, 'no_lang_code', 'name', 'Hermes Academic Publishing and Bookshop (Norway)'),
(40515, 34356, 'no_lang_code', 'name', 'Graphene Batteries (Norway)'),
(40516, 34357, 'no_lang_code', 'name', 'G3 Ungplanter (Norway)'),
(40517, 34358, 'en', 'name', 'Fredrikstad Dyrehospital'),
(40518, 34359, 'no_lang_code', 'name', 'G&T Septech (Norway)'),
(40519, 34360, 'no_lang_code', 'name', 'Hexagon (Norway)'),
(40520, 34361, 'no_lang_code', 'name', 'Grenland Energy (Norway)'),
(40521, 34362, 'no_lang_code', 'name', 'GeneSeque (Norway)'),
(40522, 34363, 'no_lang_code', 'name', 'Genetic Analysis (Norway)'),
(40523, 34364, 'no_lang_code', 'name', 'High Density Devices (Norway)'),
(40524, 34365, 'no_lang_code', 'name', 'GridSky Software (Norway)'),
(40525, 34366, 'no_lang_code', 'name', 'Genomar (Norway)'),
(40526, 34367, 'no_lang_code', 'name', 'Gentian (Norway)'),
(40527, 34368, 'no_lang_code', 'name', 'Grieg Group (Norway)'),
(40528, 34369, 'no_lang_code', 'name', 'Hydrolift (Norway)'),
(40529, 34370, 'no_lang_code', 'name', 'Hynor LillestrĆøm (Norway)'),
(40530, 34371, 'no_lang_code', 'name', 'GrĆønt Punkt Norge (Norway)'),
(40531, 34372, 'no_lang_code', 'name', 'Hyperthermics (Norway)'),
(40532, 34373, 'no_lang_code', 'name', 'Grove Knutsen (Norway)'),
(40533, 34374, 'no_lang_code', 'name', 'Geograf (Norway)'),
(40534, 34375, 'no_lang_code', 'name', 'Hypet Data (Norway)'),
(40535, 34376, 'no_lang_code', 'name', 'Geomatics (Norway)'),
(40536, 34377, 'no_lang_code', 'name', 'Hystorsys (Norway)'),
(40537, 34378, 'no_lang_code', 'name', 'Geomatikk (Norway)'),
(40538, 34379, 'no_lang_code', 'name', 'I-Sea (Norway)'),
(40539, 34380, 'no_lang_code', 'name', 'GeoPlayGround (Norway)'),
(40540, 34381, 'no_lang_code', 'name', 'Gether (Norway)'),
(40541, 34382, 'no_lang_code', 'name', 'Ibsentelecom (Norway)'),
(40542, 34383, 'no', 'name', 'Gründerskolen Alumni'),
(40543, 34384, 'no_lang_code', 'name', 'Nortura (Norway)'),
(40544, 34385, 'no_lang_code', 'name', 'Eureka Pumps (Norway)'),
(40545, 34386, 'no_lang_code', 'name', 'IC Targets (Norway)'),
(40546, 34387, 'no_lang_code', 'name', 'Gintel (Norway)'),
(40547, 34388, 'no_lang_code', 'name', 'GOE-IP (Norway)'),
(40548, 34389, 'no', 'name', 'Gjemnes Kommune'),
(40549, 34390, 'no', 'name', 'Hermetikken NƦringshage'),
(40550, 34391, 'no_lang_code', 'name', 'Industrial Control Design (Norway)'),
(40551, 34392, 'no', 'name', 'Gjerdrum kommune'),
(40552, 34393, 'en', 'name', 'GS1 Norway'),
(40553, 34394, 'no_lang_code', 'name', 'GjĆøco (Norway)'),
(40554, 34395, 'no_lang_code', 'name', 'ICT Group (Norway)'),
(40555, 34396, 'no_lang_code', 'name', 'Holmens (Norway)'),
(40556, 34397, 'no_lang_code', 'name', 'Gudbrandsdalsmat (Norway)'),
(40557, 34398, 'no_lang_code', 'name', 'HomeControl (Norway)'),
(40558, 34399, 'no_lang_code', 'name', 'Idex (Norway)'),
(40559, 34400, 'no_lang_code', 'name', 'Ko-Aks (Norway)'),
(40560, 34401, 'no_lang_code', 'name', 'Idrettssenteret (Norway)'),
(40561, 34402, 'no_lang_code', 'name', 'Austevoll Seafood (Norway)'),
(40562, 34403, 'no_lang_code', 'name', 'GK (Norway)'),
(40563, 34404, 'no_lang_code', 'name', 'Industriell Design og Teknologi (Norway)'),
(40564, 34405, 'no_lang_code', 'name', 'GurskĆøy (Norway)'),
(40565, 34406, 'no_lang_code', 'name', 'Idteq (Norway)'),
(40566, 34407, 'en', 'name', 'Inspiria Science Center'),
(40567, 34408, 'no_lang_code', 'name', 'iExcel (Norway)'),
(40568, 34409, 'no_lang_code', 'name', 'Aschehoug (Norway)'),
(40569, 34410, 'no_lang_code', 'name', 'H. J. Kyvik (Norway)'),
(40570, 34411, 'en', 'name', 'Hordaland County Council'),
(40571, 34412, 'no_lang_code', 'name', 'H. Henriksen (Norway)'),
(40572, 34413, 'no_lang_code', 'name', 'EFD Induction (Norway)'),
(40573, 34414, 'no_lang_code', 'name', 'Hacienda (Norway)'),
(40574, 34415, 'no_lang_code', 'name', 'Hafenstrom (Norway)'),
(40575, 34416, 'no', 'name', 'Institutt for Grafiske Medier'),
(40576, 34417, 'no_lang_code', 'name', 'Hafslund (Norway)'),
(40577, 34418, 'no_lang_code', 'name', 'IKM Group (Norway)'),
(40578, 34419, 'no', 'name', 'Hornindal Kommune'),
(40579, 34420, 'no_lang_code', 'name', 'Effect Ships International (Norway)'),
(40580, 34421, 'en', 'name', 'Tana Municipality'),
(40581, 34422, 'no', 'name', 'ƅmot Kommune'),
(40582, 34423, 'no', 'name', 'Fjell Kommune'),
(40583, 34424, 'en', 'name', 'Municipality of Andebu'),
(40584, 34425, 'no_lang_code', 'name', 'HĆørselslaben (Norway)'),
(40585, 34426, 'no', 'name', 'Egal Teater'),
(40586, 34427, 'no', 'name', 'Egede Instituttet'),
(40587, 34428, 'no_lang_code', 'name', 'Scandinavian Business Seating (Norway)'),
(40588, 34429, 'no_lang_code', 'name', 'Egersund Group (Norway)'),
(40589, 34430, 'no', 'name', 'Hospital IT'),
(40590, 34431, 'en', 'name', 'Church Educational Centre'),
(40591, 34431, 'no', 'name', 'Kirkelig Pedagogisk Senter'),
(40592, 34432, 'no_lang_code', 'name', 'Eidsiva BredbƄnd (Norway)'),
(40593, 34433, 'no_lang_code', 'name', 'IKT Indre Namdal (Norway)'),
(40594, 34434, 'no', 'name', 'Eidskog Kommune'),
(40595, 34435, 'no_lang_code', 'name', 'IKT-Norge (Norway)'),
(40596, 34436, 'no', 'name', 'Hospital Organiser'),
(40597, 34437, 'en', 'name', 'ICT Telemark'),
(40598, 34438, 'no_lang_code', 'name', 'International technology Alliance (Norway)'),
(40599, 34439, 'no_lang_code', 'name', 'Hagen (Norway)'),
(40600, 34440, 'no_lang_code', 'name', 'Imatis (Norway)'),
(40601, 34441, 'no_lang_code', 'name', 'Ekornes (Norway)'),
(40602, 34442, 'no_lang_code', 'name', 'Halify (Norway)'),
(40603, 34443, 'no_lang_code', 'name', 'Imerso (Norway)'),
(40604, 34444, 'no_lang_code', 'name', 'Elecde (Norway)'),
(40605, 34445, 'no_lang_code', 'name', 'Hotel Ullensvang (Norway)'),
(40606, 34446, 'no_lang_code', 'name', 'Hallingplast (Norway)'),
(40607, 34447, 'no_lang_code', 'name', 'Halogen (Norway)'),
(40608, 34448, 'en', 'name', 'International Society for Ecological Economics'),
(40609, 34449, 'no_lang_code', 'name', 'Electrical Subsea and Drilling (Norway)'),
(40610, 34450, 'no_lang_code', 'name', 'Industry Media Group (Norway)'),
(40611, 34451, 'no_lang_code', 'name', 'Jomar (Norway)'),
(40612, 34452, 'no', 'name', 'LĆøvenskiold Fossum'),
(40613, 34453, 'no_lang_code', 'name', 'Maritime Suppliers (Norway)'),
(40614, 34454, 'no_lang_code', 'name', 'Hammertech (Norway)'),
(40615, 34455, 'no_lang_code', 'name', 'Halvors Tradisjonsfisk (Norway)'),
(40616, 34456, 'no_lang_code', 'name', 'Ipark (Norway)'),
(40617, 34457, 'no_lang_code', 'name', 'Impetro International (Norway)'),
(40618, 34458, 'no_lang_code', 'name', 'IMPETUS Afea (Norway)'),
(40619, 34459, 'no_lang_code', 'name', 'Hans-Petter Brathaug (Norway)'),
(40620, 34460, 'no_lang_code', 'name', 'InterMedium (Norway)'),
(40621, 34461, 'no_lang_code', 'name', 'IMS Group (Norway)'),
(40622, 34462, 'no_lang_code', 'name', 'Inaq (Norway)'),
(40623, 34463, 'no_lang_code', 'name', 'Infrared Clinical Cancer Diagnostics (Norway)'),
(40624, 34464, 'no_lang_code', 'name', 'Hansen Protection (Norway)'),
(40625, 34465, 'no_lang_code', 'name', 'Hrafn (Norway)'),
(40626, 34466, 'no_lang_code', 'name', 'Harald KrogsƦter (Norway)'),
(40627, 34467, 'no', 'name', 'InderĆøy Kommune'),
(40628, 34468, 'no_lang_code', 'name', 'Hardanger Fjordfrukt (Norway)'),
(40629, 34469, 'no_lang_code', 'name', 'Indra Navia (Norway)'),
(40630, 34470, 'no_lang_code', 'name', 'HS News Systems (Norway)'),
(40631, 34471, 'no_lang_code', 'name', 'Huddlestock Capital (Norway)'),
(40632, 34472, 'no_lang_code', 'name', 'Integrated Optoelectronics (Norway)'),
(40633, 34473, 'no_lang_code', 'name', 'Integrated Detector Electronics AS (Norway)'),
(40634, 34474, 'en', 'name', 'Association for Electrotechnics and Automation in Industry'),
(40635, 34475, 'no_lang_code', 'name', 'Human Factors Solutions (Norway)'),
(40636, 34476, 'no_lang_code', 'name', 'L3Harris (Norway)'),
(40637, 34477, 'no', 'name', 'Hattfjelldal Kommune'),
(40638, 34478, 'no_lang_code', 'name', 'Atheno (Norway)'),
(40639, 34479, 'no_lang_code', 'name', 'Human Dialog (Norway)'),
(40640, 34480, 'no_lang_code', 'name', 'Hunton Fiber (Norway)'),
(40641, 34481, 'no_lang_code', 'name', 'Ispas (Norway)'),
(40642, 34482, 'en', 'name', 'Norwegian State Housing Bank'),
(40643, 34483, 'no_lang_code', 'name', 'Insurance Process Management (Norway)'),
(40644, 34484, 'no_lang_code', 'name', 'HV Plast (Norway)'),
(40645, 34485, 'no_lang_code', 'name', 'ITS (Norway)'),
(40646, 34486, 'en', 'name', 'Institute for Comparative Research in Human Culture'),
(40647, 34487, 'no_lang_code', 'name', 'Ineos (Norway)'),
(40648, 34488, 'en', 'name', 'WhaleSafari'),
(40649, 34489, 'en', 'name', 'Hedmark County Council'),
(40650, 34490, 'no_lang_code', 'name', 'Hedmark IKT (Norway)'),
(40651, 34491, 'no_lang_code', 'name', 'IV Group (Norway)'),
(40652, 34492, 'no_lang_code', 'name', 'HyBond (Norway)'),
(40653, 34493, 'no', 'name', 'Hedmark Kunnskapspark'),
(40654, 34494, 'no_lang_code', 'name', 'Hybrid Energy (Norway)'),
(40655, 34495, 'no_lang_code', 'name', 'Heggset Engineering (Norway)'),
(40656, 34496, 'no_lang_code', 'name', 'Interon (Norway)'),
(40657, 34497, 'no_lang_code', 'name', 'Helland MĆøbler (Norway)'),
(40658, 34498, 'no_lang_code', 'name', 'Interwell (Norway)'),
(40659, 34499, 'no_lang_code', 'name', 'Hydal Aluminium Profiler (Norway)'),
(40660, 34500, 'no_lang_code', 'name', 'Intrapoint (Norway)'),
(40661, 34501, 'no_lang_code', 'name', 'TechnipFMC (Norway)'),
(40662, 34502, 'no_lang_code', 'name', 'Intravision Group (Norway)'),
(40663, 34503, 'no', 'name', 'Helse MĆøre og Romsdal HF'),
(40664, 34504, 'no_lang_code', 'name', 'InNano (Norway)'),
(40665, 34505, 'no_lang_code', 'name', 'Inven2 (Norway)'),
(40666, 34506, 'no_lang_code', 'name', 'Invenia (Norway)'),
(40667, 34507, 'no_lang_code', 'name', 'HerbjĆørn Kolstad (Norway)'),
(40668, 34508, 'no_lang_code', 'name', 'Inventas (Norway)'),
(40669, 34509, 'en', 'name', 'Western Norway Regional Health Authority'),
(40670, 34510, 'no_lang_code', 'name', 'Inventi (Norway)'),
(40671, 34511, 'no_lang_code', 'name', 'Kom Forlag (Norway)'),
(40672, 34512, 'no_lang_code', 'name', 'IOR Chemco (Norway)'),
(40673, 34513, 'no_lang_code', 'name', 'Innotech Solar (Norway)'),
(40674, 34514, 'no_lang_code', 'name', 'Innova (Norway)'),
(40675, 34515, 'no', 'name', 'JƦrmuseet'),
(40676, 34516, 'no', 'name', 'Hemne Kommune'),
(40677, 34517, 'no_lang_code', 'name', 'Kongsberg Automotive (Norway)'),
(40678, 34518, 'no_lang_code', 'name', 'Hemnes Mekaniske Verksted (Norway)'),
(40679, 34519, 'no_lang_code', 'name', 'Innovation Performance (Norway)'),
(40680, 34520, 'en', 'name', 'Norwegian National Rail Administration'),
(40681, 34521, 'no_lang_code', 'name', 'Linus (Norway)'),
(40682, 34522, 'no_lang_code', 'name', 'Jets Vacuum (Norway)'),
(40683, 34523, 'no_lang_code', 'name', 'Lipidx (Norway)'),
(40684, 34524, 'no_lang_code', 'name', 'Innoventus SĆør (Norway)'),
(40685, 34525, 'no_lang_code', 'name', 'Heads (Norway)'),
(40686, 34526, 'no_lang_code', 'name', 'Liquiline (Norway)'),
(40687, 34527, 'en', 'name', 'Innovest'),
(40688, 34528, 'no_lang_code', 'name', 'Helly Hansen (Norway)'),
(40689, 34529, 'no_lang_code', 'name', 'InnSep (Norway)'),
(40690, 34530, 'no_lang_code', 'name', 'Lividi (Norway)'),
(40691, 34531, 'no_lang_code', 'name', 'Memscap (Norway)'),
(40692, 34532, 'no_lang_code', 'name', 'Enghouse Systems (Norway)'),
(40693, 34533, 'no_lang_code', 'name', 'Menon Business Economics (Norway)'),
(40694, 34534, 'no_lang_code', 'name', 'Inovyn Norge (Norway)'),
(40695, 34535, 'no', 'name', 'LĆødingen kommune'),
(40696, 34536, 'no_lang_code', 'name', 'JointBiomed (Norway)'),
(40697, 34537, 'no_lang_code', 'name', 'InPhase Solutions (Norway)'),
(40698, 34538, 'no_lang_code', 'name', 'Joma International (Norway)'),
(40699, 34539, 'no_lang_code', 'name', 'Mentum (Norway)'),
(40700, 34540, 'no_lang_code', 'name', 'Inpower (Norway)'),
(40701, 34541, 'no', 'name', 'LofotrƄdet'),
(40702, 34542, 'no_lang_code', 'name', 'Inspirator (Norway)'),
(40703, 34543, 'no_lang_code', 'name', 'Logiq (Norway)'),
(40704, 34544, 'en', 'name', 'Norwegian Centre for Space-related Education'),
(40705, 34545, 'no_lang_code', 'name', 'Jool Capital Partner (Norway)'),
(40706, 34546, 'no_lang_code', 'name', 'Semcon (Norway)'),
(40707, 34547, 'no_lang_code', 'name', 'Mepex Consult (Norway)'),
(40708, 34548, 'no_lang_code', 'name', 'Kongsberg Innovasjon (Norway)'),
(40709, 34549, 'no_lang_code', 'name', 'JĆøtul (Norway)'),
(40710, 34550, 'no_lang_code', 'name', 'Jotun (Norway)'),
(40711, 34551, 'no_lang_code', 'name', 'Konjekt (Norway)'),
(40712, 34552, 'no_lang_code', 'name', 'MESH (Norway)'),
(40713, 34553, 'no', 'name', 'Narvik Sykehus'),
(40714, 34554, 'no_lang_code', 'name', 'Lattix (Norway)'),
(40715, 34555, 'no', 'name', 'NHO Logistikk og Transport'),
(40716, 34556, 'no_lang_code', 'name', 'Mestergruppen (Norway)'),
(40717, 34557, 'en', 'name', 'National Security Authority'),
(40718, 34558, 'en', 'name', 'Kristiansand Municipality'),
(40719, 34559, 'no_lang_code', 'name', 'Kruse Smith (Norway)'),
(40720, 34560, 'en', 'name', 'Norwegian Agency for Quality Assurance in Education'),
(40721, 34561, 'no_lang_code', 'name', 'Metafocus (Norway)'),
(40722, 34562, 'no_lang_code', 'name', 'National Oilwell Varco (Norway)'),
(40723, 34563, 'no_lang_code', 'name', 'Lumex (Norway)'),
(40724, 34564, 'en', 'name', 'LillestrĆøm Centre of Expertise'),
(40725, 34565, 'no_lang_code', 'name', 'K.A. Rasmussen (Norway)'),
(40726, 34566, 'no_lang_code', 'name', 'Metallco (Norway)'),
(40727, 34567, 'no', 'name', 'Nasjonalmuseet'),
(40728, 34567, 'en', 'name', 'National Museum of Art, Architecture and Design'),
(40729, 34568, 'no_lang_code', 'name', 'BodĆø Science Park (Norway)'),
(40730, 34569, 'no', 'name', 'Lundes Gartneri'),
(40731, 34570, 'no_lang_code', 'name', 'Kverneland Aqua (Norway)'),
(40732, 34571, 'no_lang_code', 'name', 'Kverneland Group (Norway)'),
(40733, 34572, 'no_lang_code', 'name', 'Beisfjord Sementvarefabrikk (Norway)'),
(40734, 34573, 'no', 'name', 'Kvinner i Skogbruket'),
(40735, 34574, 'no_lang_code', 'name', 'K & K Designs (Norway)'),
(40736, 34575, 'no_lang_code', 'name', 'Meventus (Norway)'),
(40737, 34576, 'no_lang_code', 'name', 'Luxo (Norway)'),
(40738, 34577, 'en', 'name', 'Norwegian Coastal Administration'),
(40739, 34578, 'no_lang_code', 'name', 'Nattopharma (Norway)'),
(40740, 34579, 'no_lang_code', 'name', 'MHWirth (Norway)'),
(40741, 34580, 'no_lang_code', 'name', 'LABO Mixed Realities (Norway)'),
(40742, 34581, 'no_lang_code', 'name', 'Kahoot (Norway)'),
(40743, 34582, 'no_lang_code', 'name', 'Kaleidoskopet (Norway)'),
(40744, 34583, 'no_lang_code', 'name', 'Naturbilder (Norway)'),
(40745, 34584, 'no_lang_code', 'name', 'MicroA (Norway)'),
(40746, 34585, 'en', 'name', 'Laerdal Global Health'),
(40747, 34586, 'no_lang_code', 'name', 'Kalkulo (Norway)'),
(40748, 34587, 'no_lang_code', 'name', 'Nature Oil & Gas (Norway)'),
(40749, 34588, 'no_lang_code', 'name', 'Laerdal (Norway)'),
(40750, 34589, 'no_lang_code', 'name', 'Microbeads (Norway)'),
(40751, 34590, 'no_lang_code', 'name', 'Kappa Bioscience (Norway)'),
(40752, 34591, 'no', 'name', 'Lyskultur'),
(40753, 34592, 'no_lang_code', 'name', 'Lytix Biopharma (Norway)'),
(40754, 34593, 'no_lang_code', 'name', 'M3 Helse'),
(40755, 34594, 'en', 'name', 'County Governor of SĆør-TrĆøndelag'),
(40756, 34595, 'no_lang_code', 'name', 'MicroTech Innovation (Norway)'),
(40757, 34596, 'no', 'name', 'Karasjok Kommune'),
(40758, 34597, 'no_lang_code', 'name', 'Macgregor Pusnes (Norway)'),
(40759, 34598, 'no_lang_code', 'name', 'Karde (Norway)'),
(40760, 34599, 'no_lang_code', 'name', 'Madshus (Norway)'),
(40761, 34600, 'no_lang_code', 'name', 'Naviaq (Norway)'),
(40762, 34601, 'no', 'name', 'MƦre Landbruksskole'),
(40763, 34602, 'no_lang_code', 'name', 'Langlee Wave Power (Norway)'),
(40764, 34603, 'no_lang_code', 'name', 'Magtech (Norway)'),
(40765, 34604, 'no_lang_code', 'name', 'Making View (Norway)'),
(40766, 34605, 'no_lang_code', 'name', 'NavSys (Norway)'),
(40767, 34606, 'no_lang_code', 'name', 'Kebony (Norway)'),
(40768, 34607, 'no_lang_code', 'name', 'MƄltidets (Norway)'),
(40769, 34608, 'no_lang_code', 'name', 'Lanopro (Norway)'),
(40770, 34609, 'no_lang_code', 'name', 'Keep-it Technologies (Norway)'),
(40771, 34610, 'no_lang_code', 'name', 'Miko Marine (Norway)'),
(40772, 34611, 'en', 'name', 'Other Side Studio'),
(40773, 34612, 'no_lang_code', 'name', 'Kelda Drilling Controls (Norway)'),
(40774, 34613, 'no_lang_code', 'name', 'Navtor (Norway)'),
(40775, 34614, 'en', 'name', 'Institute for Church, Religion, and Worldview Research'),
(40776, 34615, 'no_lang_code', 'name', 'NCC (Norway)'),
(40777, 34616, 'no_lang_code', 'name', 'King Oscar (Norway)'),
(40778, 34617, 'no_lang_code', 'name', 'Marine Constructions (Norway)'),
(40779, 34618, 'no_lang_code', 'name', 'MiljĆøkom (Norway)'),
(40780, 34619, 'no_lang_code', 'name', 'Marine design (Norway)'),
(40781, 34620, 'no_lang_code', 'name', 'Nebb (Norway)'),
(40782, 34621, 'no_lang_code', 'name', 'Kings Bay (Norway)'),
(40783, 34622, 'no_lang_code', 'name', 'MiljĆø-Teknologi (Norway)'),
(40784, 34623, 'no_lang_code', 'name', 'Nel (Norway)'),
(40785, 34624, 'no_lang_code', 'name', 'Mills (Norway)'),
(40786, 34625, 'no_lang_code', 'name', 'Kitemill (Norway)'),
(40787, 34626, 'no', 'name', 'Lebesby kommune'),
(40788, 34627, 'no_lang_code', 'name', 'Lectinect (Norway)'),
(40789, 34628, 'no_lang_code', 'name', 'MiniHydro (Norway)'),
(40790, 34629, 'no_lang_code', 'name', 'Neorad (Norway)'),
(40791, 34630, 'no_lang_code', 'name', 'Kjeldstad (Norway)'),
(40792, 34631, 'no_lang_code', 'name', 'Leif HĆøegh (Norway)'),
(40793, 34632, 'en', 'name', 'Maritime CleanTech West'),
(40794, 34633, 'no_lang_code', 'name', 'NergƄrd (Norway)'),
(40795, 34634, 'no_lang_code', 'name', 'Kjeller Innovasjon (Norway)'),
(40796, 34634, 'en', 'name', 'Kjeller Innovation'),
(40797, 34635, 'no_lang_code', 'name', 'Miriam (Norway)'),
(40798, 34636, 'no_lang_code', 'name', 'Leiv Eiriksson Nyskaping (Norway)'),
(40799, 34637, 'no_lang_code', 'name', 'Kjeller Vindteknikk (Norway)'),
(40800, 34638, 'no_lang_code', 'name', 'Maritime MĆøbler (Norway)'),
(40801, 34639, 'no_lang_code', 'name', 'Miros (Norway)'),
(40802, 34640, 'no', 'name', 'Nes Kommune'),
(40803, 34641, 'no_lang_code', 'name', 'Maritime Robotics (Norway)'),
(40804, 34642, 'no', 'name', 'Nesna Kommune'),
(40805, 34643, 'no', 'name', 'Lenvik kommune'),
(40806, 34644, 'no', 'name', 'MarkedhĆøyskolen'),
(40807, 34645, 'no_lang_code', 'name', 'Kjemi (Norway)'),
(40808, 34646, 'no_lang_code', 'name', 'Mustad Autoline (Norway)'),
(40809, 34647, 'no_lang_code', 'name', 'Nettverk Norge (Norway)'),
(40810, 34648, 'no_lang_code', 'name', 'LerĆøy (Norway)'),
(40811, 34649, 'no_lang_code', 'name', 'Lerum (Norway)'),
(40812, 34650, 'en', 'name', 'KjeĆøy Research & Education Center'),
(40813, 34651, 'en', 'name', 'Network Learning Lab'),
(40814, 34652, 'no_lang_code', 'name', 'Light Emergency Stretcher Systems (Norway)'),
(40815, 34653, 'no_lang_code', 'name', 'MjĆøsen Skog (Norway)'),
(40816, 34654, 'en', 'name', 'MarLife (Norway)'),
(40817, 34655, 'no_lang_code', 'name', 'Marna Motor (Norway)'),
(40818, 34656, 'no_lang_code', 'name', 'Marlo (Norway)'),
(40819, 34657, 'no_lang_code', 'name', 'Nextera (Norway)'),
(40820, 34658, 'no_lang_code', 'name', 'Lid Invest (Norway)'),
(40821, 34659, 'no_lang_code', 'name', 'Masiv Bygg (Norway)'),
(40822, 34660, 'no_lang_code', 'name', 'Nextsys (Norway)'),
(40823, 34661, 'no_lang_code', 'name', 'Liegruppen (Norway)'),
(40824, 34662, 'no_lang_code', 'name', 'Massefabrikken'),
(40825, 34663, 'no_lang_code', 'name', 'MMC Green Technology (Norway)'),
(40826, 34664, 'no_lang_code', 'name', 'Matpartner (Norway)'),
(40827, 34665, 'no_lang_code', 'name', 'Mobilarm (Norway)'),
(40828, 34666, 'no_lang_code', 'name', 'Max Manus (Norway)'),
(40829, 34667, 'no', 'name', 'Norsk Gartnerforbund'),
(40830, 34668, 'en', 'name', 'Lillehammer Municipality'),
(40831, 34669, 'no', 'name', 'Klepp Kommune'),
(40832, 34670, 'no_lang_code', 'name', 'Maxeta (Norway)'),
(40833, 34671, 'no_lang_code', 'name', 'MazeMap (Norway)'),
(40834, 34672, 'no_lang_code', 'name', 'Kleven Maritime (Norway)'),
(40835, 34673, 'no_lang_code', 'name', 'Meawallet (Norway)'),
(40836, 34674, 'no_lang_code', 'name', 'Norsk Geografisk Selskap'),
(40837, 34675, 'no_lang_code', 'name', 'Lindum (Norway)'),
(40838, 34676, 'no_lang_code', 'name', 'Mobiletech (Norway)'),
(40839, 34677, 'no_lang_code', 'name', 'Mechanix Film (Norway)'),
(40840, 34678, 'no_lang_code', 'name', 'Mecmar (Norway)'),
(40841, 34679, 'no_lang_code', 'name', 'Mecsense (Norway)'),
(40842, 34680, 'no_lang_code', 'name', 'Mectro (Norway)'),
(40843, 34681, 'no_lang_code', 'name', 'Kleive Mekaniske and Industriservice (Norway)'),
(40844, 34682, 'no_lang_code', 'name', 'Knowit (Norway)'),
(40845, 34683, 'no_lang_code', 'name', 'Nordic Aquafarms (Norway)'),
(40846, 34684, 'en', 'name', 'MedCoast Scandinavia'),
(40847, 34685, 'no_lang_code', 'name', 'Medema (Norway)'),
(40848, 34686, 'no_lang_code', 'name', 'Moelven (Norway)'),
(40849, 34687, 'no_lang_code', 'name', 'Nordic Mining (Norway)'),
(40850, 34688, 'no_lang_code', 'name', 'Media Lunde Tollefsen (Norway)'),
(40851, 34689, 'no_lang_code', 'name', 'MedieoperatĆørene (Norway)'),
(40852, 34690, 'no_lang_code', 'name', 'Nordic Quantum Computing Group (Norway)'),
(40853, 34691, 'no_lang_code', 'name', 'Knutsen OAS Shipping (Norway)'),
(40854, 34692, 'no', 'name', 'Hvorfor det'),
(40855, 34693, 'no', 'name', 'Molde kommune'),
(40856, 34694, 'en', 'name', 'Learn By Motion'),
(40857, 34695, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Norway)'),
(40858, 34696, 'no_lang_code', 'name', 'Molde Kunnskapspark (Norway)'),
(40859, 34697, 'no_lang_code', 'name', 'Nordic Seal (Norway)'),
(40860, 34698, 'no_lang_code', 'name', 'Norsk Hummer (Norway)'),
(40861, 34699, 'no_lang_code', 'name', 'Nordic Semiconductor (Norway)'),
(40862, 34700, 'no_lang_code', 'name', 'Moltres (Norway)'),
(40863, 34701, 'no_lang_code', 'name', 'Nordic wildfish (Norway)'),
(40864, 34702, 'no_lang_code', 'name', 'Nicarnica Aviation (Norway)'),
(40865, 34703, 'en', 'name', 'Norwegian Hydrogen Forum'),
(40866, 34704, 'no_lang_code', 'name', 'Kontali (Norway)'),
(40867, 34705, 'en', 'name', 'North Cape Municipality'),
(40868, 34706, 'no', 'name', 'Norges IngeniĆør- og Teknologorganisasjon'),
(40869, 34707, 'no_lang_code', 'name', 'Nordlaks (Norway)'),
(40870, 34708, 'en', 'name', 'Nordland County Council'),
(40871, 34709, 'no_lang_code', 'name', 'MedNose (Norway)'),
(40872, 34710, 'no_lang_code', 'name', 'Moods of Norway (Norway)'),
(40873, 34711, 'no', 'name', 'Mektron'),
(40874, 34712, 'no_lang_code', 'name', 'MĆøre Maritime (Norway)'),
(40875, 34713, 'en', 'name', 'North Norwegian Art Center'),
(40876, 34714, 'no_lang_code', 'name', 'Melbu Systems (Norway)'),
(40877, 34715, 'no', 'name', 'Mellomrom Arkitekturpsykologi'),
(40878, 34716, 'no_lang_code', 'name', 'MemfoACT (Norway)'),
(40879, 34717, 'no_lang_code', 'name', 'Norsk Juletre (Norway)'),
(40880, 34718, 'no_lang_code', 'name', 'Memor Software (Norway)'),
(40881, 34719, 'no_lang_code', 'name', 'Novartis (Netherlands)'),
(40882, 34720, 'lt', 'name', 'Vilniaus Šv. Juozapo kunigų seminarija'),
(40883, 34720, 'en', 'name', 'Vilnius St. Joseph Seminary'),
(40884, 34720, 'ru', 'name', 'Š”ŠµŠ¼ŠøŠ½Š°Ń€ŠøŃ Š”Š²ŃŃ‚Š¾Š³Š¾ Š˜Š¾ŃŠøŃ„Š°'),
(40885, 34721, 'en', 'name', 'Virtual High School'),
(40886, 34722, 'en', 'name', 'Canadian Society of Allergy and Clinical Immunology'),
(40887, 34723, 'en', 'name', 'King & Spalding'),
(40888, 34724, 'en', 'name', 'Kaunas County Public Library'),
(40889, 34725, 'en', 'name', 'Lib4RI - Library for the Research Institutes within the ETH Domain: Eawag, Empa, PSI & WSL'),
(40890, 34726, 'en', 'name', 'Aqua (France)'),
(40891, 34727, 'en', 'name', 'Australian Law Reform Commission'),
(40892, 34728, 'en', 'name', 'Addis Continental Institute of Public Health'),
(40893, 34729, 'no_lang_code', 'name', 'Shaklee (United States)'),
(40894, 34730, 'en', 'name', 'Therapeutic Guidelines'),
(40895, 34731, 'en', 'name', 'Alliance for Health Policy and Systems Research'),
(40896, 34732, 'no_lang_code', 'name', 'Wilson Sonsini Goodrich & Rosati'),
(40897, 34733, 'en', 'name', 'American Association of Pharmaceutical Scientists'),
(40898, 34734, 'en', 'name', 'Florida Department of Elder Affairs'),
(40899, 34735, 'en', 'name', 'Department for Employment and Learning'),
(40900, 34736, 'en', 'name', 'Asia Oceania Geosciences Society'),
(40901, 34737, 'en', 'name', 'Swedish Film Institute'),
(40902, 34738, 'en', 'name', 'Ashfield Healthcare'),
(40903, 34739, 'en', 'name', 'Quality Enhancement Research Initiative'),
(40904, 34740, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (United Kingdom)'),
(40905, 34741, 'en', 'name', 'St. Clair College'),
(40906, 34742, 'no_lang_code', 'name', 'Eli Lilly (Singapore)'),
(40907, 34743, 'pt', 'name', 'Sociedade Brasileira de Diabetes'),
(40908, 34744, 'en', 'name', 'Michener Institute'),
(40909, 34745, 'no_lang_code', 'name', 'Morgan Stanley (United States)'),
(40910, 34746, 'en', 'name', 'New Leaf Venture Partners'),
(40911, 34747, 'en', 'name', 'British Veterinary Association'),
(40912, 34748, 'en', 'name', 'European Research Group on Environment and Health in the Transport Sector'),
(40913, 34748, 'de', 'name', 'Europäische Forschungsvereinigung für Umwelt und Gesundheit im Transportsektor e.V.'),
(40914, 34749, 'en', 'name', 'Peninsula HealthCare Connection'),
(40915, 34750, 'no_lang_code', 'name', 'Novamed (Italy)'),
(40916, 34751, 'en', 'name', 'Japanese Society of Physiological Anthropology'),
(40917, 34752, 'en', 'name', 'President''s Emergency Plan for AIDS Relief'),
(40918, 34753, 'en', 'name', 'Kirsch Foundation'),
(40919, 34754, 'en', 'name', 'Brazilian Network Information Center'),
(40920, 34754, 'pt', 'name', 'Núcleo de Informação e Coordenação do Ponto BR'),
(40921, 34755, 'en', 'name', 'Charles Stewart Mott Foundation'),
(40922, 34756, 'en', 'name', 'Orphanet'),
(40923, 34757, 'en', 'name', 'PIH Health'),
(40924, 34758, 'en', 'name', 'Brazilian Dental Materials Group'),
(40925, 34758, 'pt', 'name', 'Grupo Brasileiro de Materiais DentƔrios'),
(40926, 34759, 'en', 'name', 'Lindbergh Foundation'),
(40927, 34760, 'de', 'name', 'Grönemeyer Institut für MikroTherapie'),
(40928, 34760, 'en', 'name', 'Grƶnemeyer Institute for MicroTherapy'),
(40929, 34761, 'en', 'name', 'Japanese Society of Tropical Medicine'),
(40930, 34762, 'en', 'name', 'Association of Schools of Public Health in the European Region'),
(40931, 34763, 'en', 'name', 'Korean Association of Maxillofacial Plastic and Reconstructive Surgery'),
(40932, 34764, 'no_lang_code', 'name', 'Hershey (United States)'),
(40933, 34765, 'en', 'name', 'Korean Society for Quality Management'),
(40934, 34766, 'en', 'name', 'World Allergy Organization'),
(40935, 34767, 'en', 'name', 'International Consortium on Geo-disaster Reduction'),
(40936, 34768, 'en', 'name', 'Winfocus'),
(40937, 34769, 'no_lang_code', 'name', 'Beike Biotechnology (China)'),
(40938, 34769, 'zh', 'name', 'åŒ—ē§‘ē”Ÿē‰©ē§‘ęŠ€'),
(40939, 34770, 'en', 'name', 'International Hereditary Cancer Center'),
(40940, 34771, 'en', 'name', 'Society for Immunotherapy of Cancer'),
(40941, 34772, 'es', 'name', 'Sociedad de BiologĆ­a de Chile'),
(40942, 34773, 'en', 'name', 'College of Podiatry'),
(40943, 34774, 'en', 'name', 'Society of Open Innovation Technology Market & Complexity'),
(40944, 34775, 'en', 'name', 'National Science Library'),
(40945, 34775, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę–‡ēŒ®ęƒ…ęŠ„äø­åæƒ'),
(40946, 34776, 'en', 'name', 'EUR-Oceans Consortium'),
(40947, 34777, 'no_lang_code', 'name', 'Pearson (United Kingdom)'),
(40948, 34778, 'en', 'name', 'Asia-Pacific Society for Computers in Education'),
(40949, 34779, 'no_lang_code', 'name', 'Guangzhou Chemistry (China)'),
(40950, 34779, 'zh', 'name', 'äø­ē§‘é™¢å¹æå·žåŒ–å­¦ęœ‰é™å…¬åø'),
(40951, 34780, 'en', 'name', 'Institute of Subtropical Agriculture'),
(40952, 34780, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äŗšēƒ­åø¦å†œäøšē”Ÿę€ē ”ē©¶ę‰€'),
(40953, 34781, 'en', 'name', 'Windsor Regional Hospital'),
(40954, 34782, 'en', 'name', 'Institute of Tibetan Plateau Research'),
(40955, 34782, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢é’č—é«˜åŽŸē ”ē©¶ę‰€'),
(40956, 34783, 'en', 'name', 'Institute for History of Natural Sciences'),
(40957, 34783, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č‡Ŗē„¶ē§‘å­¦å²ē ”ē©¶ę‰€'),
(40958, 34784, 'it', 'name', 'Azienda Sanitaria UnitĆ  Locale di Reggio Emilia'),
(40959, 34785, 'en', 'name', 'Institute of Vertebrate Paleontology and Paleoanthropology'),
(40960, 34785, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¤č„Šę¤ŽåŠØē‰©äøŽå¤äŗŗē±»ē ”ē©¶ę‰€'),
(40961, 34786, 'en', 'name', 'Institute of Electrical Engineering'),
(40962, 34786, 'zh', 'name', '中国科学院电巄研究所'),
(40963, 34787, 'en', 'name', 'Institute of Electronics'),
(40964, 34787, 'zh', 'name', '中国科学院电子学研究所'),
(40965, 34788, 'en', 'name', 'Institute of Engineering Thermophysics'),
(40966, 34788, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å·„ēØ‹ēƒ­ē‰©ē†ē ”ē©¶ę‰€'),
(40967, 34789, 'en', 'name', 'Xinjiang Astronomical Observatory'),
(40968, 34789, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę–°ē–†å¤©ę–‡å°'),
(40969, 34790, 'en', 'name', 'Beijing Institute of Nanoenergy and Nanosystems'),
(40970, 34790, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŒ—äŗ¬ēŗ³ē±³čƒ½ęŗäøŽē³»ē»Ÿē ”ē©¶ę‰€'),
(40971, 34791, 'en', 'name', 'Nanjing Institute of Astronomical Optics & Technology'),
(40972, 34791, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å—äŗ¬å¤©ę–‡å…‰å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(40973, 34792, 'en', 'name', 'Xishuangbanna Tropical Botanical Garden'),
(40974, 34792, 'zh', 'name', 'č„æåŒē‰ˆēŗ³ēƒ­åø¦ę¤ē‰©å›­'),
(40975, 34793, 'no_lang_code', 'name', 'Yunnan Observatories'),
(40976, 34793, 'zh', 'name', 'äŗ‘å—å¤©ę–‡å°'),
(40977, 34794, 'no_lang_code', 'name', 'Shenyang Institute of Computing Technology (China)'),
(40978, 34794, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę²ˆé˜³č®”ē®—ęŠ€ęœÆē ”ē©¶ę‰€'),
(40979, 34795, 'en', 'name', 'Purple Mountain Observatory'),
(40980, 34795, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē“«é‡‘å±±å¤©ę–‡å°'),
(40981, 34796, 'en', 'name', 'Qingdao Institute of Bioenergy and Bioprocess Technology'),
(40982, 34796, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢é’å²›ē”Ÿē‰©čƒ½ęŗäøŽčæ‡ēØ‹ē ”ē©¶ę‰€'),
(40983, 34797, 'no_lang_code', 'name', 'Novamedia (Italy)'),
(40984, 34798, 'en', 'name', 'Suzhou Institute of Biomedical Engineering and Technology'),
(40985, 34798, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č‹å·žē”Ÿē‰©åŒ»å­¦å·„ēØ‹ęŠ€ęœÆē ”ē©¶ę‰€'),
(40986, 34799, 'en', 'name', 'Institute of Deep-Sea Science and Engineering'),
(40987, 34799, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę·±ęµ·ē§‘å­¦äøŽå·„ēØ‹ē ”ē©¶ę‰€'),
(40988, 34800, 'en', 'name', 'Shanghai Advanced Research Institute'),
(40989, 34800, 'zh', 'name', 'äøŠęµ·é«˜ē­‰ē ”ē©¶é™¢'),
(40990, 34801, 'en', 'name', 'Technology and Engineering Center for Space Utilization'),
(40991, 34801, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē©ŗé—“åŗ”ē”Øå·„ēØ‹äøŽęŠ€ęœÆäø­åæƒ'),
(40992, 34802, 'en', 'name', 'Academy of Opto-Electronics'),
(40993, 34802, 'zh', 'name', '中国科学院光电研究院'),
(40994, 34803, 'en', 'name', 'Guangdong Province Science and Technology Library'),
(40995, 34804, 'en', 'name', 'Tianjin Institute of Industrial Biotechnology'),
(40996, 34804, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¤©ę“„å·„äøšē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(40997, 34805, 'en', 'name', 'Wuhan Botanical Garden'),
(40998, 34805, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę­¦ę±‰ę¤ē‰©å›­'),
(40999, 34806, 'en', 'name', 'Oberlin Group'),
(41000, 34807, 'en', 'name', 'Wuhan Branch of the National Science Library'),
(41001, 34807, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę­¦ę±‰ę–‡ēŒ®ęƒ…ęŠ„äø­åæƒ'),
(41002, 34808, 'en', 'name', 'Norwegian Kennel Club'),
(41003, 34809, 'en', 'name', 'Arendal Municipality'),
(41004, 34810, 'no_lang_code', 'name', 'MĆøreforsking (Norway)'),
(41005, 34811, 'no', 'name', 'Asker kommune'),
(41006, 34812, 'no_lang_code', 'name', 'Norsk KirkegƄrdsservice (Norway)'),
(41007, 34813, 'no', 'name', 'Berg kommune'),
(41008, 34814, 'no', 'name', 'Norwea'),
(41009, 34815, 'no', 'name', 'Oslo Kommune'),
(41010, 34816, 'no_lang_code', 'name', 'Norwegian Crystals (Norway)'),
(41011, 34817, 'no', 'name', 'Finnmark Fylkeskommune'),
(41012, 34818, 'no_lang_code', 'name', 'Norwegian Graphite (Norway)'),
(41013, 34819, 'no', 'name', 'Fredrikstad Kommune'),
(41014, 34820, 'en', 'name', 'Arts Council Norway'),
(41015, 34821, 'no_lang_code', 'name', 'Norwegian Hull Club (Norway)'),
(41016, 34822, 'no_lang_code', 'name', 'Mosaic Solutions (Norway)'),
(41017, 34823, 'no', 'name', 'MĆøre og Romsdal Fylkeskommune'),
(41018, 34824, 'no', 'name', 'Nordnorske EntreprenĆørers Service Organisasjon'),
(41019, 34825, 'en', 'name', 'Center for Innovation'),
(41020, 34826, 'no_lang_code', 'name', 'Norwegian Oilfield Supply'),
(41021, 34827, 'en', 'name', 'Norwegian Institute of Local History'),
(41022, 34828, 'no_lang_code', 'name', 'Norwegian Subsea (Norway)'),
(41023, 34829, 'no_lang_code', 'name', 'Nordox (Norway)'),
(41024, 34830, 'no_lang_code', 'name', 'Norwegian Group (Norway)'),
(41025, 34831, 'no_lang_code', 'name', 'Guangzhou Electronic Technology (China)'),
(41026, 34831, 'zh', 'name', 'äø­ē§‘é™¢å¹æå·žē”µå­ęŠ€ęœÆęœ‰é™å…¬åø'),
(41027, 34832, 'no', 'name', 'Norsk Matematisk Forening'),
(41028, 34833, 'no_lang_code', 'name', 'Norwell (Norway)'),
(41029, 34834, 'no_lang_code', 'name', 'Chengdu Organic Chemicals (China)'),
(41030, 34834, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ęˆéƒ½ęœ‰ęœŗåŒ–å­¦ęœ‰é™å…¬åø'),
(41031, 34835, 'no_lang_code', 'name', 'Norwex (Norway)'),
(41032, 34836, 'no_lang_code', 'name', 'MOTECH Plasma (Norway)'),
(41033, 34837, 'no', 'name', 'Norsk Matraps'),
(41034, 34838, 'no', 'name', 'Norsk Medieforskerlag'),
(41035, 34839, 'no_lang_code', 'name', 'Noryards (Norway)'),
(41036, 34840, 'no_lang_code', 'name', 'SalMar (Norway)'),
(41037, 34841, 'no_lang_code', 'name', 'Norwegian Electro Ceramics (Norway)'),
(41038, 34842, 'no_lang_code', 'name', 'Norsk Medisinsk Syklotronsenter (Norway)'),
(41039, 34843, 'no_lang_code', 'name', 'Movation (Norway)'),
(41040, 34844, 'en', 'name', 'Norwegian Beekeepers Association'),
(41041, 34845, 'no', 'name', 'Norges Blindeforbund'),
(41042, 34846, 'no_lang_code', 'name', 'Move About (Norway)'),
(41043, 34847, 'no_lang_code', 'name', 'NLI Innovation (Norway)'),
(41044, 34848, 'no', 'name', 'Norsk Namnelag'),
(41045, 34849, 'no', 'name', 'Norges Fiskarlag'),
(41046, 34850, 'no_lang_code', 'name', 'Norwegian Hydropower (Norway)'),
(41047, 34851, 'en', 'name', 'Norwegian Golf Federation'),
(41048, 34852, 'en', 'name', 'Norwegian Association of Disabled'),
(41049, 34853, 'no_lang_code', 'name', 'NovaBiotics (Norway)'),
(41050, 34854, 'no_lang_code', 'name', 'Nofi TromsĆø (Norway)'),
(41051, 34855, 'no_lang_code', 'name', 'Nova Sea (Norway)'),
(41052, 34856, 'no_lang_code', 'name', 'NRK (Norway)'),
(41053, 34857, 'en', 'name', 'Institute of Internal Auditors Norway'),
(41054, 34858, 'no_lang_code', 'name', 'Multiconsult (Norway)'),
(41055, 34859, 'no_lang_code', 'name', 'Novelda (Norway)'),
(41056, 34860, 'no', 'name', 'Norsk Sau og Geit'),
(41057, 34861, 'no', 'name', 'Norges Kystfiskarlag'),
(41058, 34862, 'no_lang_code', 'name', 'Hansa Borg Bryggerier (Norway)'),
(41059, 34863, 'no', 'name', 'Nome Kommune'),
(41060, 34864, 'no_lang_code', 'name', 'Head Energy (Norway)'),
(41061, 34865, 'no_lang_code', 'name', 'NorTronic (Norway)'),
(41062, 34866, 'en', 'name', 'Friends of the Earth Norway'),
(41063, 34866, 'no', 'name', 'Naturvernforbundet'),
(41064, 34867, 'no_lang_code', 'name', 'Nord-TrĆøndelag Elektrisitetsverk (Norway)'),
(41065, 34868, 'no_lang_code', 'name', 'Norboat (Norway)'),
(41066, 34869, 'en', 'name', 'Federation of Norwegian Agricultural Co-operatives'),
(41067, 34870, 'en', 'name', 'Munch Museum');
INSERT INTO `ror_settings` VALUES
(41068, 34871, 'no_lang_code', 'name', 'Norskog Consulting (Norway)'),
(41069, 34872, 'no_lang_code', 'name', 'NTNU Technology Transfer (Norway)'),
(41070, 34873, 'no', 'name', 'Norges RĆøde Kors'),
(41071, 34873, 'en', 'name', 'Norwegian Red Cross'),
(41072, 34874, 'no', 'name', 'Norsk Skogmuseum'),
(41073, 34875, 'no_lang_code', 'name', 'Mundal Gruppen (Norway)'),
(41074, 34876, 'no', 'name', 'Norsk Sosiologforening'),
(41075, 34877, 'no', 'name', 'Norges Sildesalgslag'),
(41076, 34877, 'en', 'name', 'Norwegian Herring Sales Association'),
(41077, 34878, 'no_lang_code', 'name', 'Nucleus (Norway)'),
(41078, 34879, 'en', 'name', 'Norwegian Steel Association'),
(41079, 34880, 'no_lang_code', 'name', 'Dolphin Geophysical (Norway)'),
(41080, 34881, 'no', 'name', 'Norsk Sveiseteknisk Forbund'),
(41081, 34882, 'en', 'name', 'Norwegian Seafood Council'),
(41082, 34883, 'en', 'name', 'Norwegian Forest Owners Association'),
(41083, 34884, 'no_lang_code', 'name', 'Mycoteam (Norway)'),
(41084, 34885, 'no_lang_code', 'name', 'Numedalsutvikling (Norway)'),
(41085, 34886, 'no_lang_code', 'name', 'Myhrene (Norway)'),
(41086, 34887, 'no_lang_code', 'name', 'Mylifeproducts (Norway)'),
(41087, 34888, 'no_lang_code', 'name', 'Nunatak (Norway)'),
(41088, 34889, 'no_lang_code', 'name', 'NutraQ (Norway)'),
(41089, 34890, 'no_lang_code', 'name', 'Pemco (Norway)'),
(41090, 34891, 'no_lang_code', 'name', 'Myworkout (Norway)'),
(41091, 34892, 'no_lang_code', 'name', 'Nygon (Norway)'),
(41092, 34893, 'no', 'name', 'Solskjerming'),
(41093, 34894, 'no_lang_code', 'name', 'Mustad (Norway)'),
(41094, 34895, 'en', 'name', 'Norwegian Academy of Technological Sciences'),
(41095, 34896, 'no_lang_code', 'name', 'NorDan (Norway)'),
(41096, 34897, 'no_lang_code', 'name', 'Scatec (Norway)'),
(41097, 34898, 'fi', 'name', 'Kainun Institutti'),
(41098, 34899, 'no_lang_code', 'name', 'Steinsvik (Norway)'),
(41099, 34900, 'no_lang_code', 'name', 'NorgesfƓr (Norway)'),
(41100, 34901, 'no_lang_code', 'name', 'NorgesGruppen (Norway)'),
(41101, 34902, 'en', 'name', 'Norwegian Institute of Wood Technology'),
(41102, 34903, 'no_lang_code', 'name', 'Saint-Gobain (Norway)'),
(41103, 34904, 'no_lang_code', 'name', 'Ocean Energy (Norway)'),
(41104, 34905, 'no_lang_code', 'name', 'OptiNose (Norway)'),
(41105, 34906, 'en', 'name', 'Norwegian Business and Industry Security Council'),
(41106, 34907, 'no_lang_code', 'name', 'NorgesmĆøllene (Norway)'),
(41107, 34908, 'no', 'name', 'Norsk Trevare'),
(41108, 34909, 'no_lang_code', 'name', 'Ocean Visuals (Norway)'),
(41109, 34910, 'no_lang_code', 'name', 'Nammo (Norway)'),
(41110, 34911, 'no_lang_code', 'name', 'Nokia (Norway)'),
(41111, 34912, 'no_lang_code', 'name', 'Norhard (Norway)'),
(41112, 34913, 'en', 'name', 'Norwegian Institute of International Affairs'),
(41113, 34914, 'en', 'name', 'Nansen Neuroscience Network'),
(41114, 34915, 'no_lang_code', 'name', 'Orkana Forlag (Norway)'),
(41115, 34916, 'en', 'name', 'Norwegian Corporate Governance Board'),
(41116, 34917, 'en', 'name', 'Norwegian Water'),
(41117, 34918, 'no_lang_code', 'name', 'Orkel (Norway)'),
(41118, 34919, 'no_lang_code', 'name', 'Plastal (Norway)'),
(41119, 34920, 'no_lang_code', 'name', 'Norinnova (Norway)'),
(41120, 34921, 'no_lang_code', 'name', 'Plasto (Norway)'),
(41121, 34922, 'no_lang_code', 'name', 'OceanSaver (Norway)'),
(41122, 34923, 'no_lang_code', 'name', 'Orthogenics (Norway)'),
(41123, 34924, 'no', 'name', 'Norsk VirkesmƄling'),
(41124, 34925, 'no_lang_code', 'name', 'Oshaug Metall (Norway)'),
(41125, 34926, 'no_lang_code', 'name', 'Pleat (Norway)'),
(41126, 34927, 'no_lang_code', 'name', 'Norsk Wax (Norway)'),
(41127, 34928, 'en', 'name', 'Oslo Stock Exchange'),
(41128, 34929, 'no_lang_code', 'name', 'NorLense (Norway)'),
(41129, 34930, 'en', 'name', 'Oslo Cancer Cluster'),
(41130, 34931, 'en', 'name', 'Co-opertive Housing Federation of Norway'),
(41131, 34932, 'no_lang_code', 'name', 'Norli Libris (Norway)'),
(41132, 34933, 'en', 'name', 'Oslo Chamber of Commerce'),
(41133, 34934, 'no_lang_code', 'name', 'Polarkonsult (Norway)'),
(41134, 34935, 'no_lang_code', 'name', 'NorMedia (Norway)'),
(41135, 34936, 'en', 'name', 'Oslo Port Authority'),
(41136, 34937, 'no_lang_code', 'name', 'Normex (Norway)'),
(41137, 34938, 'no_lang_code', 'name', 'NorrĆønt (Norway)'),
(41138, 34939, 'no_lang_code', 'name', 'Norsafe (Norway)'),
(41139, 34940, 'no_lang_code', 'name', 'Norske Skog (Norway)'),
(41140, 34940, 'en', 'name', 'Norwegian Forest Industries'),
(41141, 34941, 'no_lang_code', 'name', 'poLight (Norway)'),
(41142, 34942, 'no', 'name', 'Norsif'),
(41143, 34943, 'no', 'name', 'Norske Takstolprodusenters Forening'),
(41144, 34944, 'no', 'name', 'Norsk Algeforening'),
(41145, 34945, 'en', 'name', 'Oslo Medtech'),
(41146, 34946, 'no_lang_code', 'name', 'Norsonic (Norway)'),
(41147, 34947, 'no', 'name', 'Norsk Arkeologisk Selskap'),
(41148, 34948, 'no', 'name', 'Politiet'),
(41149, 34949, 'en', 'name', 'NorStella Foundation'),
(41150, 34950, 'no_lang_code', 'name', 'Tomra (Norway)'),
(41151, 34951, 'no_lang_code', 'name', 'NorSun (Norway)'),
(41152, 34952, 'no_lang_code', 'name', 'Norsk Automatisering (Norway)'),
(41153, 34953, 'no_lang_code', 'name', 'Odfjell Drilling (Norway)'),
(41154, 34954, 'no_lang_code', 'name', 'Kvalvik (Norway)'),
(41155, 34955, 'en', 'name', 'Oslo Vest Rotary Klubb'),
(41156, 34956, 'no_lang_code', 'name', 'Nortek (Norway)'),
(41157, 34957, 'no_lang_code', 'name', 'North Energy (Norway)'),
(41158, 34958, 'no_lang_code', 'name', 'NorthSea Container Line (Norway)'),
(41159, 34959, 'no_lang_code', 'name', 'OSO Hotwater (Norway)'),
(41160, 34960, 'en', 'name', 'Norwegian Centre for Design and Architecture'),
(41161, 34961, 'no_lang_code', 'name', 'Østensjø Rederi (Norway)'),
(41162, 34962, 'no_lang_code', 'name', 'Offshore Sensing (Norway)'),
(41163, 34963, 'no_lang_code', 'name', 'Porolon (Norway)'),
(41164, 34964, 'no_lang_code', 'name', 'Nortransport (Norway)'),
(41165, 34965, 'no_lang_code', 'name', 'Nortroll (Norway)'),
(41166, 34966, 'no', 'name', 'Porsanger Kommune'),
(41167, 34967, 'no_lang_code', 'name', 'Portahead (Norway)'),
(41168, 34968, 'en', 'name', 'Norwegian Film Institute'),
(41169, 34969, 'no_lang_code', 'name', 'Ƙsterdalsmia (Norway)'),
(41170, 34970, 'no_lang_code', 'name', 'Portal (Norway)'),
(41171, 34971, 'en', 'name', 'POSC Caesar Association'),
(41172, 34972, 'no', 'name', 'Norsk FjĆørfelag'),
(41173, 34973, 'no_lang_code', 'name', 'Norway Well Solutions'),
(41174, 34974, 'no', 'name', 'Norsk Folkemuseum'),
(41175, 34975, 'no_lang_code', 'name', 'Offshore Simulator Centre (Norway)'),
(41176, 34976, 'no_lang_code', 'name', 'Siemens (Norway)'),
(41177, 34977, 'no_lang_code', 'name', 'Norsk Mineral (Norway)'),
(41178, 34978, 'no_lang_code', 'name', 'Oil Tools Of Norway (Norway)'),
(41179, 34979, 'en', 'name', 'Norwegian Society of Automatic Control'),
(41180, 34980, 'no_lang_code', 'name', 'OilCraft (Norway)'),
(41181, 34981, 'no_lang_code', 'name', 'Poseidon (Norway)'),
(41182, 34982, 'no', 'name', 'Norsk Forening for Bildebehandling og MĆønstergjenkjenning'),
(41183, 34983, 'no_lang_code', 'name', 'Posicom (Norway)'),
(41184, 34984, 'no_lang_code', 'name', 'Oilfield Technology Group (Norway)'),
(41185, 34985, 'no_lang_code', 'name', 'OiW Process (Norway)'),
(41186, 34986, 'en', 'name', 'Eastern Norway Research Institute'),
(41187, 34987, 'no', 'name', 'Tannlege Ole Christian Amundsen'),
(41188, 34988, 'en', 'name', 'Norwegian Association for Development Research'),
(41189, 34989, 'no_lang_code', 'name', 'Posten (Norway)'),
(41190, 34990, 'no_lang_code', 'name', 'Ostomycure (Norway)'),
(41191, 34991, 'no_lang_code', 'name', 'Otech Marine Services (Norway)'),
(41192, 34992, 'no', 'name', 'Norsk Friluftsliv'),
(41193, 34993, 'no_lang_code', 'name', 'Exova Metech (Norway)'),
(41194, 34994, 'no', 'name', 'Ƙksnes Kommune'),
(41195, 34995, 'no_lang_code', 'name', 'Otechos (Norway)'),
(41196, 34996, 'no_lang_code', 'name', 'Otivio (Norway)'),
(41197, 34997, 'no', 'name', 'Overhalla Kommune'),
(41198, 34998, 'no', 'name', 'Ƙvre Eiker Kommune'),
(41199, 34999, 'no', 'name', 'Norsk Fysisk Selskap'),
(41200, 35000, 'no_lang_code', 'name', 'PostNord (Norway)'),
(41201, 35001, 'no_lang_code', 'name', 'OWC Power (Norway)'),
(41202, 35002, 'no_lang_code', 'name', 'Norsk Gjenvinning (Norway)'),
(41203, 35003, 'no_lang_code', 'name', 'Arendals Fossekompani (Norway)'),
(41204, 35004, 'no_lang_code', 'name', 'ƘKOKRIM'),
(41205, 35005, 'en', 'name', 'Norwegian Ports Association'),
(41206, 35006, 'no_lang_code', 'name', 'Rauma Group (Norway)'),
(41207, 35007, 'no', 'name', 'Norsk Hestesenter Stiftelse'),
(41208, 35008, 'no_lang_code', 'name', 'Ƙkologisk Spesialkorn (Norway)'),
(41209, 35009, 'no_lang_code', 'name', 'AFRY (Norway)'),
(41210, 35010, 'no', 'name', 'Re Kommune'),
(41211, 35011, 'no_lang_code', 'name', 'Norsk Hoppemelk (Norway)'),
(41212, 35012, 'no_lang_code', 'name', 'Re-Turn (Norway)'),
(41213, 35013, 'no_lang_code', 'name', 'Reactive Metal Particles (Norway)'),
(41214, 35014, 'no_lang_code', 'name', 'Oxford Research (Norway)'),
(41215, 35015, 'no_lang_code', 'name', 'Rotoboost (Norway)'),
(41216, 35016, 'no_lang_code', 'name', 'Olivita (Norway)'),
(41217, 35017, 'no_lang_code', 'name', 'Prediktor (Norway)'),
(41218, 35018, 'no_lang_code', 'name', 'Omega Media (Norway)'),
(41219, 35019, 'no_lang_code', 'name', 'Omegatri (Norway)'),
(41220, 35020, 'no_lang_code', 'name', 'Prekubator (Norway)'),
(41221, 35021, 'no_lang_code', 'name', 'Emerson (Norway)'),
(41222, 35022, 'no_lang_code', 'name', 'Omex (Norway)'),
(41223, 35023, 'no_lang_code', 'name', 'Real Alloy (Norway)'),
(41224, 35024, 'no_lang_code', 'name', 'OxyVision (Norway)'),
(41225, 35025, 'en', 'name', 'RĆøyken Municipality'),
(41226, 35026, 'no', 'name', 'Realistforeningen'),
(41227, 35027, 'no_lang_code', 'name', 'Preline Fishfarming Systems (Norway)'),
(41228, 35028, 'no_lang_code', 'name', 'RPR Technologies (Norway)'),
(41229, 35029, 'no_lang_code', 'name', 'Oyatel (Norway)'),
(41230, 35030, 'no_lang_code', 'name', 'Oncoinvent (Norway)'),
(41231, 35031, 'no_lang_code', 'name', 'Onsite Treatment Technologies (Norway)'),
(41232, 35032, 'en', 'name', 'Runde Environmental Centre'),
(41233, 35033, 'no_lang_code', 'name', 'Ruter (Norway)'),
(41234, 35034, 'no_lang_code', 'name', 'Preseria (Norway)'),
(41235, 35035, 'no_lang_code', 'name', 'PaleBlue (Norway)'),
(41236, 35036, 'no_lang_code', 'name', 'Panalpina (Norway)'),
(41237, 35037, 'en', 'name', 'Paper and Fibre Research Institute'),
(41238, 35038, 'no_lang_code', 'name', 'Holta Invest (Norway)'),
(41239, 35039, 'no_lang_code', 'name', 'Ryfylke (Norway)'),
(41240, 35040, 'no_lang_code', 'name', 'Papirbredden Innovasjon (Norway)'),
(41241, 35041, 'en', 'name', 'Rygge Municipality'),
(41242, 35042, 'no_lang_code', 'name', 'RED Consulting (Norway)'),
(41243, 35043, 'no_lang_code', 'name', 'PartnerPlast (Norway)'),
(41244, 35044, 'no_lang_code', 'name', 'Viken Skog (Norway)'),
(41245, 35045, 'no_lang_code', 'name', 'Saemien Sijte'),
(41246, 35046, 'no_lang_code', 'name', 'Redcord (Norway)'),
(41247, 35047, 'no_lang_code', 'name', 'Safelink (Norway)'),
(41248, 35048, 'no_lang_code', 'name', 'Opera Software (Norway)'),
(41249, 35049, 'no_lang_code', 'name', 'Saga Welco (Norway)'),
(41250, 35050, 'no_lang_code', 'name', 'Redox (Norway)'),
(41251, 35051, 'no_lang_code', 'name', 'PatoGen (Norway)'),
(41252, 35052, 'no_lang_code', 'name', 'Br. Birkeland (Norway)'),
(41253, 35053, 'no_lang_code', 'name', 'Redpill Linpro (Norway)'),
(41254, 35054, 'no_lang_code', 'name', 'PREZIOSO Linjebygg (Norway)'),
(41255, 35055, 'no_lang_code', 'name', 'Reelwell (Norway)'),
(41256, 35056, 'no_lang_code', 'name', 'Opinion (Norway)'),
(41257, 35057, 'no_lang_code', 'name', 'Pax Forlag (Norway)'),
(41258, 35058, 'no_lang_code', 'name', 'Reemsys (Norway)'),
(41259, 35059, 'no_lang_code', 'name', 'PricewaterhouseCoopers (Norway)'),
(41260, 35060, 'no_lang_code', 'name', 'PCI Biotech (Norway)'),
(41261, 35061, 'no', 'name', 'OppegƄrd Kommune'),
(41262, 35062, 'no_lang_code', 'name', 'Pelagic Power (Norway)'),
(41263, 35063, 'no_lang_code', 'name', 'Sagaplant (Norway)'),
(41264, 35064, 'no', 'name', 'Oppland Fylkeskommune'),
(41265, 35065, 'no_lang_code', 'name', 'Pro Analysis (Norway)'),
(41266, 35066, 'no_lang_code', 'name', 'Vónin Refa (Norway)'),
(41267, 35067, 'no_lang_code', 'name', 'Opplysningskontoret for Meieriprodukter (Norway)'),
(41268, 35068, 'no_lang_code', 'name', 'Regatta (Norway)'),
(41269, 35069, 'no_lang_code', 'name', 'Pro Barents (Norway)'),
(41270, 35070, 'no_lang_code', 'name', 'OptimarStette (Norway)'),
(41271, 35071, 'no_lang_code', 'name', 'Regenics (Norway)'),
(41272, 35072, 'no_lang_code', 'name', 'Optime Subsea Services (Norway)'),
(41273, 35073, 'no_lang_code', 'name', 'Optimeering (Norway)'),
(41274, 35074, 'no_lang_code', 'name', 'Proceda (Norway)'),
(41275, 35075, 'no_lang_code', 'name', 'Benchmark Holdings (Norway)'),
(41276, 35076, 'no_lang_code', 'name', 'Salt (Norway)'),
(41277, 35077, 'no_lang_code', 'name', 'Peterson (Norway)'),
(41278, 35078, 'en', 'name', 'Center for Child and Adolescent Mental Health, Eastern and Southern Norway'),
(41279, 35079, 'no', 'name', 'Salten RegionrƄd'),
(41280, 35080, 'no_lang_code', 'name', 'ProduksjonsTeknologi (Norway)'),
(41281, 35081, 'no_lang_code', 'name', 'Petoro (Norway)'),
(41282, 35082, 'no_lang_code', 'name', 'Produs Aqua (Norway)'),
(41283, 35083, 'no_lang_code', 'name', 'Petrell (Norway)'),
(41284, 35084, 'no_lang_code', 'name', 'Profectum (Norway)'),
(41285, 35085, 'no_lang_code', 'name', 'Petroleum Technology Company (Norway)'),
(41286, 35086, 'no_lang_code', 'name', 'Petroleumsoft (Norway)'),
(41287, 35087, 'no_lang_code', 'name', 'Selfa (Norway)'),
(41288, 35088, 'no_lang_code', 'name', 'Petrolink (Norway)'),
(41289, 35089, 'no_lang_code', 'name', 'Profixio (Norway)'),
(41290, 35090, 'no_lang_code', 'name', 'SelĆøy Undervannsservice (Norway)'),
(41291, 35091, 'no_lang_code', 'name', 'Salto (Norway)'),
(41292, 35092, 'no_lang_code', 'name', 'Profvet (Norway)'),
(41293, 35093, 'no_lang_code', 'name', 'Selvaag Gruppen (Norway)'),
(41294, 35094, 'no_lang_code', 'name', 'Semco Maritime (Norway)'),
(41295, 35095, 'en', 'name', 'Norwegian Association of Economists'),
(41296, 35096, 'no_lang_code', 'name', 'Reichhold (Norway)'),
(41297, 35097, 'en', 'name', 'Norwegian Agency for Development Cooperation'),
(41298, 35098, 'no_lang_code', 'name', 'Sana Pharma Medical (Norway)'),
(41299, 35099, 'no_lang_code', 'name', 'Expro (Norway)'),
(41300, 35100, 'en', 'name', 'Semicolon'),
(41301, 35101, 'no_lang_code', 'name', 'Reime (Norway)'),
(41302, 35102, 'no_lang_code', 'name', 'Maritim Food (Norway)'),
(41303, 35103, 'no_lang_code', 'name', 'Sencel Bioinformatics (Norway)'),
(41304, 35104, 'no_lang_code', 'name', 'Petroleum Geo-Services (Norway)'),
(41305, 35105, 'no_lang_code', 'name', 'Sensocure (Norway)'),
(41306, 35106, 'no_lang_code', 'name', 'Reinertsen (Norway)'),
(41307, 35107, 'no', 'name', 'Sandefjord Kommune'),
(41308, 35108, 'no_lang_code', 'name', 'Remora (Norway)'),
(41309, 35109, 'no_lang_code', 'name', 'RemovAid (Norway)'),
(41310, 35110, 'no_lang_code', 'name', 'Infineon Technologies (Norway)'),
(41311, 35111, 'no_lang_code', 'name', 'Sensorlink (Norway)'),
(41312, 35112, 'no_lang_code', 'name', 'Sandvik (Norway)'),
(41313, 35113, 'no_lang_code', 'name', 'Pharmaq (Norway)'),
(41314, 35114, 'no_lang_code', 'name', 'Sensorteknikk (Norway)'),
(41315, 35115, 'no_lang_code', 'name', 'BASF (Norway)'),
(41316, 35116, 'no_lang_code', 'name', 'Pharmasum Therapeutics (Norway)'),
(41317, 35117, 'no_lang_code', 'name', 'Prophylix Pharma (Norway)'),
(41318, 35118, 'no_lang_code', 'name', 'REN (Norway)'),
(41319, 35119, 'no_lang_code', 'name', 'PRORES (Norway)'),
(41320, 35120, 'no', 'name', 'RegionrƄdet i Nord-Gudbrandsdal'),
(41321, 35121, 'no_lang_code', 'name', 'Sensovann (Norway)'),
(41322, 35122, 'no', 'name', 'Fjellregionen'),
(41323, 35123, 'no', 'name', 'RegionrƄdet for Hallingdal'),
(41324, 35124, 'no_lang_code', 'name', 'Sarsia (Norway)'),
(41325, 35125, 'no_lang_code', 'name', 'ReNorway (Norway)'),
(41326, 35126, 'no_lang_code', 'name', 'Photocure (Norway)'),
(41327, 35127, 'no_lang_code', 'name', 'SAS Cargo (Norway)'),
(41328, 35128, 'no_lang_code', 'name', 'Wienerberger (Norway)'),
(41329, 35129, 'no_lang_code', 'name', 'Glor (Norway)'),
(41330, 35130, 'no_lang_code', 'name', 'Pipetech International (Norway)'),
(41331, 35131, 'no_lang_code', 'name', 'Piql (Norway)'),
(41332, 35132, 'no_lang_code', 'name', 'Res Publica (Norway)'),
(41333, 35133, 'no_lang_code', 'name', 'SAS Institute (Norway)'),
(41334, 35134, 'no_lang_code', 'name', 'Piscada (Norway)'),
(41335, 35135, 'no_lang_code', 'name', 'Centre for Advanced Study'),
(41336, 35136, 'no_lang_code', 'name', 'Protector (Norway)'),
(41337, 35137, 'no_lang_code', 'name', 'Research Management (Norway)'),
(41338, 35138, 'no_lang_code', 'name', 'ReSight (Norway)'),
(41339, 35139, 'no_lang_code', 'name', 'Proteket (Norway)'),
(41340, 35140, 'no_lang_code', 'name', 'Scale Protection (Norway)'),
(41341, 35141, 'no_lang_code', 'name', 'Parker Maritime (Norway)'),
(41342, 35142, 'no_lang_code', 'name', 'Scan4news (Norway)'),
(41343, 35143, 'no_lang_code', 'name', 'Scana (Norway)'),
(41344, 35144, 'no_lang_code', 'name', 'Weatherford (Norway)'),
(41345, 35145, 'no_lang_code', 'name', 'Resman (Norway)'),
(41346, 35146, 'no_lang_code', 'name', 'Provista (Norway)'),
(41347, 35147, 'no_lang_code', 'name', 'Planktonic (Norway)'),
(41348, 35148, 'no_lang_code', 'name', 'Resonator (Norway)'),
(41349, 35149, 'no_lang_code', 'name', 'Plany (Norway)'),
(41350, 35150, 'no_lang_code', 'name', 'Response Nordic (Norway)'),
(41351, 35151, 'no_lang_code', 'name', 'Scanmar (Norway)'),
(41352, 35152, 'no_lang_code', 'name', 'Savo (Norway)'),
(41353, 35153, 'no_lang_code', 'name', 'Prox Dynamics (Norway)'),
(41354, 35154, 'no_lang_code', 'name', 'Scanship (Norway)'),
(41355, 35155, 'no_lang_code', 'name', 'Scantrol (Norway)'),
(41356, 35156, 'no_lang_code', 'name', 'Restrack (Norway)'),
(41357, 35157, 'no_lang_code', 'name', 'ScanVacc (Norway)'),
(41358, 35158, 'no', 'name', 'Psykologica'),
(41359, 35159, 'no', 'name', 'Rettspolitisk Forening'),
(41360, 35160, 'no_lang_code', 'name', 'PubGene (Norway)'),
(41361, 35161, 'no_lang_code', 'name', 'PXO (Norway)'),
(41362, 35162, 'no_lang_code', 'name', 'Retura (Norway)'),
(41363, 35163, 'no_lang_code', 'name', 'Rheumatech (Norway)'),
(41364, 35164, 'no_lang_code', 'name', 'Quality Management Software (Norway)'),
(41365, 35165, 'en', 'name', 'Association of Consulting Engineers'),
(41366, 35166, 'en', 'name', 'Office of the Auditor General of Norway'),
(41367, 35167, 'no_lang_code', 'name', 'ICR (Norway)'),
(41368, 35168, 'no_lang_code', 'name', 'R.J.Rygg International (Norway)'),
(41369, 35169, 'no_lang_code', 'name', 'Sea Urchin Farm (Norway)'),
(41370, 35170, 'no_lang_code', 'name', 'Rimfrost (Norway)'),
(41371, 35171, 'no_lang_code', 'name', 'Rindalshytter (Norway)'),
(41372, 35172, 'en', 'name', 'Norwegian Center of Expertise'),
(41373, 35173, 'no_lang_code', 'name', 'Smartbrain (Norway)'),
(41374, 35174, 'no_lang_code', 'name', 'Rising Star Products (Norway)'),
(41375, 35175, 'no_lang_code', 'name', 'SmartCare (Norway)'),
(41376, 35176, 'no_lang_code', 'name', 'Seacalx (Norway)'),
(41377, 35177, 'en', 'name', 'Council for Mental Health'),
(41378, 35178, 'no_lang_code', 'name', 'Robot Aviation (Norway)'),
(41379, 35179, 'no_lang_code', 'name', 'Radionor Communications (Norway)'),
(41380, 35180, 'no_lang_code', 'name', 'Smartcom:tv (Norway)'),
(41381, 35181, 'no_lang_code', 'name', 'Seadrill (Norway)'),
(41382, 35182, 'no_lang_code', 'name', 'Robotic Drilling Systems (Norway)'),
(41383, 35183, 'en', 'name', 'Norwegain Radium Hospital Research Foundation'),
(41384, 35184, 'no_lang_code', 'name', 'Smartfish (Norway)'),
(41385, 35185, 'no_lang_code', 'name', 'Robotnorge (Norway)'),
(41386, 35186, 'no_lang_code', 'name', 'Ralston & Bau (Norway)'),
(41387, 35187, 'no_lang_code', 'name', 'Rofi (Norway)'),
(41388, 35188, 'no_lang_code', 'name', 'Seamless (Norway)'),
(41389, 35189, 'no_lang_code', 'name', 'Ramboll (Norway)'),
(41390, 35190, 'no_lang_code', 'name', 'Searis (Norway)'),
(41391, 35191, 'no_lang_code', 'name', 'Seram Coatings (Norway)'),
(41392, 35192, 'no_lang_code', 'name', 'Leonhard Nilsen & SĆønner (Norway)'),
(41393, 35193, 'en', 'name', 'Rogaland Training & Education Centre'),
(41394, 35194, 'no_lang_code', 'name', 'Seas Fabrikker (Norway)'),
(41395, 35195, 'no_lang_code', 'name', 'Smart Solution (Norway)'),
(41396, 35196, 'no_lang_code', 'name', 'Seria (Norway)'),
(41397, 35197, 'no_lang_code', 'name', 'Seashell (Norway)'),
(41398, 35198, 'no_lang_code', 'name', 'Smerud Medical Research (Norway)'),
(41399, 35199, 'no_lang_code', 'name', 'Setred (Norway)'),
(41400, 35200, 'no_lang_code', 'name', 'SeaSide (Norway)'),
(41401, 35201, 'no_lang_code', 'name', 'RollerSafe (Norway)'),
(41402, 35202, 'no_lang_code', 'name', 'Smi Human (Norway)'),
(41403, 35203, 'no_lang_code', 'name', 'SES Europe (Norway)'),
(41404, 35204, 'no_lang_code', 'name', 'Rolvsoy Metalindustri (Norway)'),
(41405, 35205, 'no_lang_code', 'name', 'Serodus (Norway)'),
(41406, 35206, 'no_lang_code', 'name', 'Smia Gjerdeprodukter (Norway)'),
(41407, 35207, 'no_lang_code', 'name', 'Seatower (Norway)'),
(41408, 35208, 'no_lang_code', 'name', 'Sero (Norway)'),
(41409, 35209, 'no_lang_code', 'name', 'Seatrans (Norway)'),
(41410, 35210, 'en', 'name', 'Norwegian Directorate of Public Construction and Property'),
(41411, 35211, 'no_lang_code', 'name', 'Seaweed Energy Solutions (Norway)'),
(41412, 35212, 'no_lang_code', 'name', 'Seaworks (Norway)'),
(41413, 35213, 'no_lang_code', 'name', 'Statskog (Norway)'),
(41414, 35214, 'no_lang_code', 'name', 'Snƶball Film (Norway)'),
(41415, 35215, 'no_lang_code', 'name', 'Sway (Norway)'),
(41416, 35216, 'no_lang_code', 'name', 'Securenok (Norway)'),
(41417, 35217, 'no_lang_code', 'name', 'Sheriff Film Company (Norway)'),
(41418, 35218, 'no_lang_code', 'name', 'SnĆøgg (Norway)'),
(41419, 35219, 'no_lang_code', 'name', 'Stavanger Health Research (Norway)'),
(41420, 35220, 'no_lang_code', 'name', 'Securo (Norway)'),
(41421, 35221, 'no_lang_code', 'name', 'Ship Modelling & Simulation Centre'),
(41422, 35222, 'no_lang_code', 'name', 'Swix Sport (Norway)'),
(41423, 35223, 'no_lang_code', 'name', 'SnĆøhetta (Norway)'),
(41424, 35224, 'no_lang_code', 'name', 'BMS Kuhn Steel (Norway)'),
(41425, 35225, 'no_lang_code', 'name', 'Segel (Norway)'),
(41426, 35226, 'no_lang_code', 'name', 'Tieto (Norway)'),
(41427, 35227, 'no_lang_code', 'name', 'Symphonical (Norway)'),
(41428, 35228, 'no_lang_code', 'name', 'Synthetica (Norway)'),
(41429, 35229, 'no_lang_code', 'name', 'Sypress Forlag (Norway)'),
(41430, 35230, 'no_lang_code', 'name', 'Syslab International (Norway)'),
(41431, 35231, 'no_lang_code', 'name', 'Shippingcluster (Norway)'),
(41432, 35232, 'no', 'name', 'Barratt Due'),
(41433, 35233, 'no_lang_code', 'name', 'Sogn Aqua (Norway)'),
(41434, 35234, 'no_lang_code', 'name', 'SystemlĆøsning (Norway)'),
(41435, 35235, 'no_lang_code', 'name', 'T&G Elektro (Norway)'),
(41436, 35236, 'no', 'name', 'Sogn RegionrƄd'),
(41437, 35237, 'no', 'name', 'Stiftelsen Bergensklinikkene'),
(41438, 35238, 'no_lang_code', 'name', 'Tagarno Norge (Norway)'),
(41439, 35239, 'no', 'name', 'Sogndal Fotball'),
(41440, 35240, 'no_lang_code', 'name', 'Talkped (Norway)'),
(41441, 35241, 'no_lang_code', 'name', 'Unifeeder (Norway)'),
(41442, 35242, 'no', 'name', 'Tinn kommune'),
(41443, 35243, 'no_lang_code', 'name', 'Sognefrukt (Norway)'),
(41444, 35244, 'no_lang_code', 'name', 'Targovax (Norway)'),
(41445, 35245, 'no_lang_code', 'name', 'KRONOS (Norway)'),
(41446, 35246, 'no_lang_code', 'name', 'Catch Solar Energy (Norway)'),
(41447, 35247, 'no_lang_code', 'name', 'SolidTech (Norway)'),
(41448, 35248, 'en', 'name', 'Tax Justice Network'),
(41449, 35249, 'no_lang_code', 'name', 'Sigla (Norway)'),
(41450, 35250, 'en', 'name', 'Norwegian Institute of Journalism'),
(41451, 35251, 'no_lang_code', 'name', 'Solstad Offshore (Norway)'),
(41452, 35252, 'no', 'name', 'Kanvas'),
(41453, 35253, 'no_lang_code', 'name', 'Toma Mat (Norway)'),
(41454, 35254, 'no_lang_code', 'name', 'Solum Forlag (Norway)'),
(41455, 35255, 'no_lang_code', 'name', 'Sigurd LĆøkeland (Norway)'),
(41456, 35256, 'no_lang_code', 'name', 'Tomax (Norway)'),
(41457, 35257, 'no_lang_code', 'name', 'Solution Seeker (Norway)'),
(41458, 35258, 'no', 'name', 'Kappabel'),
(41459, 35259, 'no_lang_code', 'name', 'Tommen Gram Folie (Norway)'),
(41460, 35260, 'no_lang_code', 'name', 'TeamTec (Norway)'),
(41461, 35261, 'no_lang_code', 'name', 'Simlink (Norway)'),
(41462, 35262, 'no_lang_code', 'name', 'Sonitor Technologies (Norway)'),
(41463, 35263, 'no_lang_code', 'name', 'Simicon (Norway)'),
(41464, 35264, 'no_lang_code', 'name', 'Sonowand (Norway)'),
(41465, 35265, 'no_lang_code', 'name', 'Klar Tale'),
(41466, 35266, 'no_lang_code', 'name', 'Sima (Norway)'),
(41467, 35267, 'en', 'name', 'Tone Lise Academy'),
(41468, 35268, 'no_lang_code', 'name', 'TECE Norge (Norway)'),
(41469, 35269, 'no_lang_code', 'name', 'Silicon Labs (Norway)'),
(41470, 35270, 'no_lang_code', 'name', 'Sorbwater Technology (Norway)'),
(41471, 35271, 'no', 'name', 'Kunnskapssenter for Laks og VannmiljĆø'),
(41472, 35272, 'no_lang_code', 'name', 'Tech Damper (Norway)'),
(41473, 35273, 'no_lang_code', 'name', 'Tool Tech (Norway)'),
(41474, 35274, 'no_lang_code', 'name', 'Topro (Norway)'),
(41475, 35275, 'no', 'name', 'SĆørlandet Boligbyggelag'),
(41476, 35276, 'no_lang_code', 'name', 'Single-Phase Power (Norway)'),
(41477, 35277, 'en', 'name', 'Simula School'),
(41478, 35278, 'no', 'name', 'SĆørlandet Kunnskapspark'),
(41479, 35279, 'no', 'name', 'Materialisten'),
(41480, 35280, 'no_lang_code', 'name', 'Simula Innovation (Norway)'),
(41481, 35281, 'en', 'name', 'South Norway European Office'),
(41482, 35282, 'no', 'name', 'SĆørlandslisten'),
(41483, 35283, 'no_lang_code', 'name', 'Simrad (Norway)'),
(41484, 35284, 'no_lang_code', 'name', 'SimSea (Norway)'),
(41485, 35285, 'no_lang_code', 'name', 'Techni (Norway)'),
(41486, 35286, 'no', 'name', 'Sikkerhetssenteret RĆørvik'),
(41487, 35287, 'no', 'name', 'Torsken kommune'),
(41488, 35288, 'no_lang_code', 'name', 'Simtronics (Norway)'),
(41489, 35289, 'no_lang_code', 'name', 'siRNAsense (Norway)'),
(41490, 35290, 'no_lang_code', 'name', 'TotAl-gruppen (Norway)'),
(41491, 35291, 'en', 'name', 'Norwegian National Museum of Justice'),
(41492, 35292, 'no_lang_code', 'name', 'Tectonor (Norway)'),
(41493, 35293, 'no', 'name', 'Studentsamskipnaden i Trondheim'),
(41494, 35294, 'no', 'name', 'SpareBank 1 Nord-Norge'),
(41495, 35295, 'no', 'name', 'Norsk SjĆømatsenter'),
(41496, 35296, 'no_lang_code', 'name', 'Teddy TV (Norway)'),
(41497, 35297, 'no_lang_code', 'name', 'Sitma (Norway)'),
(41498, 35298, 'no_lang_code', 'name', 'TraceTracker (Norway)'),
(41499, 35299, 'no', 'name', 'Sparebankforeningen i Norge'),
(41500, 35300, 'no_lang_code', 'name', 'TracID (Norway)'),
(41501, 35301, 'no_lang_code', 'name', 'Teekay (Norway)'),
(41502, 35302, 'no_lang_code', 'name', 'Spartacus Forlag (Norway)'),
(41503, 35303, 'no_lang_code', 'name', 'TEGma (Norway)'),
(41504, 35304, 'en', 'name', 'Norwegian Maritime Authority'),
(41505, 35305, 'en', 'name', 'Museum of Migration'),
(41506, 35306, 'no_lang_code', 'name', 'Tekna (Norway)'),
(41507, 35307, 'no', 'name', 'Polaria'),
(41508, 35308, 'no_lang_code', 'name', 'Spermatech (Norway)'),
(41509, 35309, 'no', 'name', 'Transparency International Norge'),
(41510, 35310, 'no_lang_code', 'name', 'Teknisk Lys (Norway)'),
(41511, 35311, 'en', 'name', 'Seed Forum'),
(41512, 35312, 'no_lang_code', 'name', 'Spesialprodukter SĆør (Norway)'),
(41513, 35313, 'no', 'name', 'Skedsmo kommune'),
(41514, 35314, 'en', 'name', 'Telemark Research Institute'),
(41515, 35315, 'no_lang_code', 'name', 'Trefokus (Norway)'),
(41516, 35316, 'no_lang_code', 'name', 'Spider Solutions (Norway)'),
(41517, 35317, 'no_lang_code', 'name', 'SpinChip Diagnostics (Norway)'),
(41518, 35318, 'no_lang_code', 'name', 'Spiro Medical (Norway)'),
(41519, 35319, 'no_lang_code', 'name', 'Det Norske Samlaget (Norway)'),
(41520, 35320, 'no_lang_code', 'name', 'Treindustrien (Norway)'),
(41521, 35321, 'no', 'name', 'Stiftinga For Folkemusikk og Folkedans'),
(41522, 35322, 'no_lang_code', 'name', 'Stimline (Norway)'),
(41523, 35323, 'no_lang_code', 'name', 'Stinger Technology (Norway)'),
(41524, 35324, 'no_lang_code', 'name', 'SquareHead Technology (Norway)'),
(41525, 35325, 'no_lang_code', 'name', 'Ulstein Group (Norway)'),
(41526, 35326, 'no', 'name', 'Tresenteret'),
(41527, 35327, 'no_lang_code', 'name', 'Triad (Norway)'),
(41528, 35328, 'no_lang_code', 'name', 'Ultimovacs (Norway)'),
(41529, 35329, 'no_lang_code', 'name', 'Teknomedia (Norway)'),
(41530, 35330, 'no_lang_code', 'name', 'Store Norske (Norway)'),
(41531, 35331, 'no_lang_code', 'name', 'Trilobite (Norway)'),
(41532, 35332, 'no', 'name', 'Storfjord Kommune'),
(41533, 35333, 'no_lang_code', 'name', 'Standard Bio (Norway)'),
(41534, 35334, 'no_lang_code', 'name', 'Trollhetta (Norway)'),
(41535, 35335, 'no_lang_code', 'name', 'StormGeo (Norway)'),
(41536, 35336, 'no_lang_code', 'name', 'Troms Kraft (Norway)'),
(41537, 35337, 'no', 'name', 'Teknova'),
(41538, 35338, 'no_lang_code', 'name', 'Stangeskovene (Norway)'),
(41539, 35339, 'no_lang_code', 'name', 'Stranda Prolog (Norway)'),
(41540, 35340, 'no_lang_code', 'name', 'Star Information Systems (Norway)'),
(41541, 35341, 'no', 'name', 'Troms Fylkeskommune'),
(41542, 35342, 'en', 'name', 'StrĆømme Foundation'),
(41543, 35343, 'no_lang_code', 'name', 'Trolltind (Norway)'),
(41544, 35344, 'no', 'name', 'Start Norge'),
(41545, 35345, 'no_lang_code', 'name', 'Baader Food Processing Machinery (Norway)'),
(41546, 35346, 'no_lang_code', 'name', 'Strongpoint (Norway)'),
(41547, 35347, 'no', 'name', 'Studix'),
(41548, 35348, 'no_lang_code', 'name', 'Tidewater (Norway)'),
(41549, 35349, 'no_lang_code', 'name', 'Tele-Com (Norway)'),
(41550, 35350, 'no_lang_code', 'name', 'Statkraft (Norway)'),
(41551, 35351, 'no_lang_code', 'name', 'Subhydro (Norway)'),
(41552, 35352, 'en', 'name', 'Telemark County Council'),
(41553, 35352, 'no', 'name', 'Telemark Fylkeskommune'),
(41554, 35353, 'no_lang_code', 'name', 'Subsea Chokes International (Norway)'),
(41555, 35354, 'no_lang_code', 'name', 'Subsea Smart Solutions (Norway)'),
(41556, 35355, 'no_lang_code', 'name', 'Teleplan Consulting (Norway)'),
(41557, 35356, 'no_lang_code', 'name', 'Ulltveit-Moe Group (Norway)'),
(41558, 35357, 'no_lang_code', 'name', 'TrĆøndelag Forskning og Utvikling (Norway)'),
(41559, 35358, 'no_lang_code', 'name', 'Vaxxinova (Norway)'),
(41560, 35359, 'no_lang_code', 'name', 'Telio (Norway)'),
(41561, 35360, 'no_lang_code', 'name', 'TrĆønderEnergi (Norway)'),
(41562, 35361, 'no_lang_code', 'name', 'Tellu (Norway)'),
(41563, 35362, 'no_lang_code', 'name', 'Vectron Biosolutions (Norway)'),
(41564, 35363, 'no', 'name', 'Suldal Kommune'),
(41565, 35364, 'no_lang_code', 'name', 'Tendeka (Norway)'),
(41566, 35365, 'no', 'name', 'Trondheim Havn IKS'),
(41567, 35366, 'no', 'name', 'TrĆøndelags Europakontor'),
(41568, 35367, 'no_lang_code', 'name', 'Fram Flora (Norway)'),
(41569, 35368, 'no_lang_code', 'name', 'Vedde (Norway)'),
(41570, 35369, 'no_lang_code', 'name', 'Underbakke (Norway)'),
(41571, 35370, 'no_lang_code', 'name', 'SunSense (Norway)'),
(41572, 35371, 'no_lang_code', 'name', 'Tronrud Engineering (Norway)'),
(41573, 35372, 'no_lang_code', 'name', 'Veidekke (Norway)'),
(41574, 35373, 'no_lang_code', 'name', 'SuperOffice (Norway)'),
(41575, 35374, 'no', 'name', 'Unge aksjonƦrer'),
(41576, 35375, 'no', 'name', 'Tenketanken Tau'),
(41577, 35376, 'no_lang_code', 'name', 'Unger Fabrikker (Norway)'),
(41578, 35377, 'no', 'name', 'Ungt EntreprenĆørskap'),
(41579, 35378, 'no_lang_code', 'name', 'Trustper (Norway)'),
(41580, 35379, 'no_lang_code', 'name', 'Trysil Kommune'),
(41581, 35380, 'no_lang_code', 'name', 'Verdal Inspection and Technology Center (Norway)'),
(41582, 35381, 'no_lang_code', 'name', 'Svorka (Norway)'),
(41583, 35382, 'no_lang_code', 'name', 'Unified Messaging Systems (Norway)'),
(41584, 35383, 'no_lang_code', 'name', 'Tsat (Norway)'),
(41585, 35384, 'no_lang_code', 'name', 'Termorens (Norway)'),
(41586, 35385, 'no_lang_code', 'name', 'Svovel (Norway)'),
(41587, 35386, 'en', 'name', 'Norwegian Fund and Asset Management Association'),
(41588, 35387, 'no_lang_code', 'name', 'Warm Systems (Norway)'),
(41589, 35388, 'no_lang_code', 'name', 'TV 2 (Norway)'),
(41590, 35389, 'en', 'name', 'Norwegian Securities Dealers Association'),
(41591, 35390, 'no_lang_code', 'name', 'Typhonix (Norway)'),
(41592, 35391, 'no_lang_code', 'name', 'WƤrtsilƤ (Norway)'),
(41593, 35392, 'no_lang_code', 'name', 'Washington Mills (Norway)'),
(41594, 35393, 'no_lang_code', 'name', 'VS Safety (Norway)'),
(41595, 35394, 'no_lang_code', 'name', 'Ulefos Esco (Norway)'),
(41596, 35395, 'no_lang_code', 'name', 'Terratec (Norway)'),
(41597, 35396, 'no_lang_code', 'name', 'Texas Instruments (Norway)'),
(41598, 35397, 'no_lang_code', 'name', 'VeriSat (Norway)'),
(41599, 35398, 'no_lang_code', 'name', 'Vest i Havet (Norway)'),
(41600, 35399, 'no_lang_code', 'name', 'Wave Propulsion (Norway)'),
(41601, 35400, 'no_lang_code', 'name', 'GGG (Norway)'),
(41602, 35401, 'no', 'name', 'Urban SjĆøfront'),
(41603, 35402, 'en', 'name', 'Norwegian Directorate for Education and Training'),
(41604, 35402, 'no_lang_code', 'name', 'Utdanningsdirektoratet'),
(41605, 35403, 'no_lang_code', 'name', 'Xepto (Norway)'),
(41606, 35404, 'en', 'name', 'Webstudent'),
(41607, 35405, 'no_lang_code', 'name', 'Weifa (Norway)'),
(41608, 35406, 'no_lang_code', 'name', 'Xrgia (Norway)'),
(41609, 35407, 'no', 'name', 'Vest-TelemarkrƄdet'),
(41610, 35408, 'no_lang_code', 'name', 'XTronica (Norway)'),
(41611, 35409, 'no_lang_code', 'name', 'Thales (Norway)'),
(41612, 35410, 'no_lang_code', 'name', 'Vestdavit (Norway)'),
(41613, 35411, 'no', 'name', 'VƄgan kommune'),
(41614, 35412, 'en', 'name', 'Congress-Conference'),
(41615, 35413, 'no_lang_code', 'name', 'Z Energi (Norway)'),
(41616, 35414, 'no_lang_code', 'name', 'Zaptec (Norway)'),
(41617, 35415, 'no_lang_code', 'name', 'Quartz Corp (Norway)'),
(41618, 35416, 'no', 'name', 'Valdres Folkemuseum'),
(41619, 35417, 'no_lang_code', 'name', 'Vallvi (Norway)'),
(41620, 35418, 'no_lang_code', 'name', 'Thelma Biotel (Norway)'),
(41621, 35419, 'no_lang_code', 'name', 'Therma Industri (Norway)'),
(41622, 35420, 'no_lang_code', 'name', 'Thermtech (Norway)'),
(41623, 35421, 'no_lang_code', 'name', 'Thinfilm (Norway)'),
(41624, 35422, 'no_lang_code', 'name', 'ZEG Power (Norway)'),
(41625, 35423, 'no_lang_code', 'name', 'Metas (Norway)'),
(41626, 35424, 'no', 'name', 'Ɓrran JulevsƔme GuovdƔsj Lulesamisk Senter'),
(41627, 35425, 'no_lang_code', 'name', 'ZEM (Norway)'),
(41628, 35426, 'no', 'name', 'Valnesfjord Helsesportssenter'),
(41629, 35427, 'no_lang_code', 'name', 'Wellcem (Norway)'),
(41630, 35428, 'no_lang_code', 'name', 'Zenitel (Norway)'),
(41631, 35429, 'no_lang_code', 'name', 'Wenaas Workwear (Norway)'),
(41632, 35430, 'no', 'name', 'Vestskog'),
(41633, 35431, 'en', 'name', 'Institute of Neurosciences, Mental Health and Addiction'),
(41634, 35432, 'no_lang_code', 'name', 'West Group (Norway)'),
(41635, 35433, 'no', 'name', 'VestvÄgøy Kommune'),
(41636, 35434, 'en', 'name', 'Institute of Human Development, Child and Youth Health'),
(41637, 35435, 'no_lang_code', 'name', 'Olav Thon (Norway)'),
(41638, 35436, 'en', 'name', 'Institute of Gender and Health'),
(41639, 35437, 'en', 'name', 'Institute of Cancer Research'),
(41640, 35438, 'no_lang_code', 'name', 'Thrace Polybulk (Norway)'),
(41641, 35439, 'en', 'name', 'Institute of Health Services and Policy Research'),
(41642, 35440, 'no_lang_code', 'name', 'Tidal Sails (Norway)'),
(41643, 35441, 'no_lang_code', 'name', 'VARD (Norway)'),
(41644, 35442, 'no', 'name', 'Wikimedia Norge'),
(41645, 35443, 'no_lang_code', 'name', 'Wilh. Wilhelmsen (Norway)'),
(41646, 35444, 'no_lang_code', 'name', 'WindSim (Norway)'),
(41647, 35445, 'no_lang_code', 'name', 'Vardar (Norway)'),
(41648, 35446, 'no_lang_code', 'name', 'WindMaster Technologies'),
(41649, 35447, 'en', 'name', 'Institute of Genetics'),
(41650, 35448, 'no_lang_code', 'name', 'VardĆø Barents Base (Norway)'),
(41651, 35449, 'no', 'name', 'VardĆø kommune'),
(41652, 35450, 'en', 'name', 'Institute of Aging'),
(41653, 35451, 'no_lang_code', 'name', 'Hegnar Media (Norway)'),
(41654, 35452, 'no_lang_code', 'name', 'Wireless Instrumentation Systems (Norway)'),
(41655, 35453, 'no_lang_code', 'name', 'Varier (Norway)'),
(41656, 35454, 'no_lang_code', 'name', 'Vartdal Plast (Norway)'),
(41657, 35455, 'no_lang_code', 'name', 'Wirescan (Norway)'),
(41658, 35456, 'no_lang_code', 'name', 'WiSub (Norway)'),
(41659, 35457, 'no_lang_code', 'name', 'Viking Development Group (Norway)'),
(41660, 35458, 'no_lang_code', 'name', 'Wireless Power & Communication (Norway)'),
(41661, 35459, 'no', 'name', 'Vikna Kommune'),
(41662, 35460, 'no_lang_code', 'name', 'TideTec (Norway)'),
(41663, 35461, 'no_lang_code', 'name', 'Timm (Norway)'),
(41664, 35462, 'no_lang_code', 'name', 'Tind Technologies (Norway)'),
(41665, 35463, 'no_lang_code', 'name', 'Viscenario (Norway)'),
(41666, 35464, 'no_lang_code', 'name', 'Vision iO (Norway)'),
(41667, 35465, 'no_lang_code', 'name', 'Visitech (Norway)'),
(41668, 35466, 'no_lang_code', 'name', 'Zeracryl (Norway)'),
(41669, 35467, 'fr', 'name', 'Agence Science Presse'),
(41670, 35468, 'no_lang_code', 'name', 'Visma (Norway)'),
(41671, 35469, 'en', 'name', 'Zero Emissions Resource Organisation'),
(41672, 35470, 'fr', 'name', 'Agence universitaire de la Francophonie'),
(41673, 35470, 'en', 'name', 'Francophone University Association'),
(41674, 35471, 'no_lang_code', 'name', 'Ziebel (Norway)'),
(41675, 35472, 'no_lang_code', 'name', 'Vista Analyse (Norway)'),
(41676, 35473, 'fr', 'name', 'Centres IntƩgrƩ Universitaires de SantƩ et de Services Sociaux'),
(41677, 35474, 'no_lang_code', 'name', 'Zoaring (Norway)'),
(41678, 35475, 'no_lang_code', 'name', 'Vista Utredning (Norway)'),
(41679, 35476, 'fr', 'name', 'Association internationale de science politique'),
(41680, 35476, 'en', 'name', 'International Political Science Association'),
(41681, 35477, 'fr', 'name', 'CollĆØge militaire royal de Saint-Jean'),
(41682, 35477, 'en', 'name', 'Royal Military College Saint-Jean'),
(41683, 35478, 'no_lang_code', 'name', 'Visual Solutions (Norway)'),
(41684, 35479, 'fr', 'name', 'Association Internationale des Ɖtudes QuĆ©bĆ©coises'),
(41685, 35480, 'no_lang_code', 'name', 'Vidarforlaget (Norway)'),
(41686, 35481, 'fr', 'name', 'CollĆØge Montmorency'),
(41687, 35482, 'no_lang_code', 'name', 'Visuray (Norway)'),
(41688, 35483, 'no_lang_code', 'name', 'Vitality Innovation (Norway)'),
(41689, 35484, 'en', 'name', 'Champlain Regional College'),
(41690, 35484, 'fr', 'name', 'Collège régional champlain de saint-lambert'),
(41691, 35485, 'en', 'name', 'Caneus International'),
(41692, 35486, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Beaux-Arts'),
(41693, 35486, 'ca', 'name', 'Ɖcole des Beaux-Arts'),
(41694, 35487, 'no_lang_code', 'name', 'Vitenparken'),
(41695, 35488, 'no_lang_code', 'name', 'CapCOGITO (Canada)'),
(41696, 35489, 'en', 'name', 'Trondheim Science Museum'),
(41697, 35489, 'no', 'name', 'Vitensenteret i Trondheim'),
(41698, 35490, 'fr', 'name', 'CƩgep de l''Outaouais'),
(41699, 35491, 'fr', 'name', 'Institut du Nouveau Monde'),
(41700, 35492, 'en', 'name', 'Science Center of Innlandet'),
(41701, 35492, 'no', 'name', 'Vitensenteret Innlandet'),
(41702, 35493, 'no', 'name', 'Vitensenteret SĆørlandet'),
(41703, 35494, 'fr', 'name', 'RĆ©seau Technoscience Saguenay–Lac-Saint-Jean'),
(41704, 35495, 'fr', 'name', 'CƩgep de Saint-Laurent'),
(41705, 35496, 'fr', 'name', 'CƩgep du Vieux MontrƩal'),
(41706, 35497, 'fr', 'name', 'Centre des Sciences de MontrƩal'),
(41707, 35498, 'no_lang_code', 'name', 'VivID (Norway)'),
(41708, 35499, 'no_lang_code', 'name', 'Voca (Norway)'),
(41709, 35500, 'no_lang_code', 'name', 'VoiceASP (Norway)'),
(41710, 35501, 'no', 'name', 'Voss Kommune'),
(41711, 35502, 'fr', 'name', 'KƩroul'),
(41712, 35503, 'no', 'name', 'VitenWahl Andreas Wahl'),
(41713, 35504, 'fr', 'name', 'Consortium de Recherche en Oncologie Clinique du QuƩbec'),
(41714, 35504, 'en', 'name', 'Quebec - Clinical Research Organization in Cancer'),
(41715, 35505, 'fr', 'name', 'Centre de Liaison Sur l''Intervention et la PrƩvention Psychosociales'),
(41716, 35506, 'fr', 'name', 'Ordre des Psychologues du QuƩbec'),
(41717, 35507, 'fr', 'name', 'Consortium de recherche et d''innovation en technologies mƩdicales du QuƩbec'),
(41718, 35507, 'en', 'name', 'Quebec Consortium for Industrial Research and Innovation in Medical Technology'),
(41719, 35508, 'fr', 'name', 'Le Fresnoy - Studio National des Arts Contemporains'),
(41720, 35509, 'fr', 'name', 'RƩseau QuƩbƩcois en Innovation Sociale'),
(41721, 35510, 'fr', 'name', 'Robotique FIRST QuƩbec'),
(41722, 35511, 'fr', 'name', 'Salon Carrière Formation de Québec'),
(41723, 35512, 'en', 'name', 'Innovation Maritime'),
(41724, 35513, 'fr', 'name', 'MontrƩal InVivo'),
(41725, 35514, 'fr', 'name', 'Institut de la Statistique du QuƩbec'),
(41726, 35514, 'en', 'name', 'Quebec Statistical Institute'),
(41727, 35515, 'en', 'name', 'Museum of Civilization'),
(41728, 35515, 'fr', 'name', 'MusƩe de la Civilisation'),
(41729, 35516, 'fr', 'name', 'MusƩe du Fjord'),
(41730, 35517, 'fr', 'name', 'Centre de SantƩ et de Services Sociaux de la Montagne'),
(41731, 35518, 'fr', 'name', 'Centre de SantƩ et de Services Sociaux de la Vieille-Capitale'),
(41732, 35519, 'en', 'name', 'Danish National Institute of Public Health'),
(41733, 35519, 'da', 'name', 'Statens Institut for Folkesundhed'),
(41734, 35520, 'fr', 'name', 'Centre de santƩ et de services sociaux Institut universitaire de gƩriatrie de Sherbrooke'),
(41735, 35520, 'en', 'name', 'Health and Social Services Centre University Institute of Geriatrics of Sherbrooke'),
(41736, 35521, 'fr', 'name', 'Centre de Transfert Pour la RƩussite Educative du QuƩbec'),
(41737, 35522, 'fr', 'name', 'Service de Recherche et d''EXpertise en Transformation des Produits Forestiers'),
(41738, 35523, 'en', 'name', 'Quebec Society for the Protection of Plants'),
(41739, 35523, 'fr', 'name', 'SociƩtƩ de Protection des Plantes du QuƩbec'),
(41740, 35524, 'en', 'name', 'Society for Arts and Technology'),
(41741, 35524, 'fr', 'name', 'SociƩtƩ des Arts Technologiques'),
(41742, 35525, 'it', 'name', 'Ospedale Cervesi di Cattolica'),
(41743, 35526, 'en', 'name', 'Old Port of Montreal Corporation'),
(41744, 35526, 'fr', 'name', 'SociƩtƩ du Vieux-Port de MontrƩal'),
(41745, 35527, 'en', 'name', 'Novika Solutions'),
(41746, 35528, 'en', 'name', 'Clark Art Institute'),
(41747, 35528, 'es', 'name', 'Instituto de Arte Clark'),
(41748, 35529, 'fr', 'name', 'Centre QuƩbƩcois du P.E.N. International'),
(41749, 35530, 'en', 'name', 'Zone01 Robotics'),
(41750, 35531, 'en', 'name', 'Quebec Television Broadcasting Corporation'),
(41751, 35531, 'fr', 'name', 'TƩlƩ-QuƩbec'),
(41752, 35532, 'no_lang_code', 'name', 'Adaptimmune (United Kingdom)'),
(41753, 35533, 'en', 'name', 'Aditya Birla Memorial Hospital'),
(41754, 35534, 'en', 'name', 'BLK Super Speciality Hospital'),
(41755, 35535, 'es', 'name', 'Hospital Alto Guadalquivir'),
(41756, 35536, 'no_lang_code', 'name', 'Advanced Fiber Resources (China)'),
(41757, 35537, 'no_lang_code', 'name', 'Abcodia (United Kingdom)'),
(41758, 35538, 'no_lang_code', 'name', 'Amarin (United States)'),
(41759, 35539, 'no_lang_code', 'name', 'Advanced Research Systems'),
(41760, 35540, 'it', 'name', 'Ospedale Pesenti Fenaroli'),
(41761, 35541, 'en', 'name', '421 Hospital of PLA'),
(41762, 35542, 'no_lang_code', 'name', 'Advion (United Kingdom)'),
(41763, 35543, 'en', 'name', 'Australian College of Applied Psychology'),
(41764, 35544, 'en', 'name', 'Aerospace Research Institute of Materials and Processing Technology'),
(41765, 35544, 'zh', 'name', 'čˆŖå¤©ęę–™åŠå·„č‰ŗē ”ē©¶ę‰€'),
(41766, 35545, 'en', 'name', 'AMRI Hospitals'),
(41767, 35546, 'en', 'name', 'Shandong Shierming Eye Hospital'),
(41768, 35547, 'de', 'name', 'Krankenhaus der Elisabethinen'),
(41769, 35548, 'en', 'name', 'Affiliated Hospital of Hebei University'),
(41770, 35549, 'en', 'name', 'ACPM Dental College and Hospital'),
(41771, 35550, 'en', 'name', 'Wuhan Sixth Hospital'),
(41772, 35551, 'en', 'name', 'Aviation General Hospital'),
(41773, 35552, 'en', 'name', 'Wuxi Fourth People''s Hospital'),
(41774, 35553, 'en', 'name', 'A.M. Obukhov Institute of Atmospheric Physics'),
(41775, 35553, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики атмосферы им. А.М. ŠžŠ±ŃƒŃ…Š¾Š²Š° Российской акаГемии наук'),
(41776, 35554, 'no_lang_code', 'name', 'Axdev Group (Canada)'),
(41777, 35555, 'no_lang_code', 'name', 'Shimadzu (China)'),
(41778, 35556, 'en', 'name', 'Qinghai University Affiliated Hospital'),
(41779, 35556, 'zh', 'name', 'é’ęµ·å¤§å­¦é™„å±žåŒ»é™¢'),
(41780, 35557, 'en', 'name', 'Affiliated Hospital of Shandong Academy of Medical Sciences'),
(41781, 35558, 'en', 'name', 'Bayi Children''s Hospital'),
(41782, 35559, 'no_lang_code', 'name', 'Ayasdi (United States)'),
(41783, 35560, 'no_lang_code', 'name', 'Biological Consulting Services (United States)'),
(41784, 35561, 'en', 'name', 'Memorial Ankara Hospital'),
(41785, 35562, 'no_lang_code', 'name', 'Bialanx (United States)'),
(41786, 35563, 'en', 'name', 'Tumor Hospital of Xinjiang Medical University'),
(41787, 35564, 'nl', 'name', 'Damiaan Dicht bij het leven'),
(41788, 35565, 'en', 'name', 'Yancheng Third People''s Hospital'),
(41789, 35566, 'it', 'name', 'Azienda Ospedaliera Bolognini Seriate'),
(41790, 35567, 'en', 'name', 'Affiliated Zhongshan Hospital of Dalian University'),
(41791, 35568, 'no_lang_code', 'name', 'BioBee (Israel)'),
(41792, 35569, 'no_lang_code', 'name', 'AhR Pharmaceuticals (United States)'),
(41793, 35570, 'it', 'name', 'Azienda Ospedaliera Pugliese Ciaccio'),
(41794, 35571, 'en', 'name', 'Beijing Fengtai Hospital'),
(41795, 35572, 'no_lang_code', 'name', 'Beijing Biocytogen (China)'),
(41796, 35573, 'no_lang_code', 'name', 'Applied StemCell (United States)'),
(41797, 35574, 'no_lang_code', 'name', 'BioGenex (India)'),
(41798, 35575, 'no_lang_code', 'name', 'Applied Technical Services (United States)'),
(41799, 35576, 'en', 'name', 'Beijing Hospital of Traditional Chinese Medicine'),
(41800, 35576, 'zh', 'name', 'åŒ—äŗ¬åø‚äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(41801, 35577, 'no_lang_code', 'name', 'Aqualex Multimedia Consortium (Ireland)'),
(41802, 35578, 'it', 'name', 'Ospedali Riuniti San Giovanni di Dio e Ruggi d''Aragona'),
(41803, 35579, 'no_lang_code', 'name', 'BioNumerik (United States)'),
(41804, 35580, 'en', 'name', 'Armament Research and Development Establishment'),
(41805, 35580, 'hi', 'name', 'ą¤†ą¤Æą„ą¤§ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾'),
(41806, 35581, 'it', 'name', 'Azienda Ospedaliero-Universitaria Policlinico - Vittorio Emanuele'),
(41807, 35582, 'en', 'name', 'Al-Qasemi Academic College of Education'),
(41808, 35583, 'en', 'name', 'Beijing Open University'),
(41809, 35584, 'en', 'name', 'Alabama College of Osteopathic Medicine'),
(41810, 35585, 'de', 'name', 'Alb Fils Kliniken'),
(41811, 35586, 'no_lang_code', 'name', 'Albany Molecular Research (Singapore)'),
(41812, 35587, 'en', 'name', 'Beijing Royal Integrative Medicine Hospital'),
(41813, 35588, 'en', 'name', 'Askham Bryan College'),
(41814, 35589, 'no_lang_code', 'name', 'BluGlass (Australia)'),
(41815, 35590, 'en', 'name', 'Bakırkƶy Psychiatric Hospital'),
(41816, 35591, 'no_lang_code', 'name', 'Beijing Wantai Biological Pharmacy (China)'),
(41817, 35592, 'en', 'name', 'Aleris Hamlet Hospital'),
(41818, 35593, 'de', 'name', 'Asklepios Klinik St. Georg'),
(41819, 35594, 'en', 'name', 'Ali Osman Sonmez Oncology Hospital'),
(41820, 35595, 'no_lang_code', 'name', 'Bandwidth10 (United States)'),
(41821, 35596, 'pt', 'name', 'Centro UniversitÔrio Fundação Assis Gurgacz'),
(41822, 35597, 'no_lang_code', 'name', 'Boehringer Ingelheim (United Kingdom)'),
(41823, 35598, 'en', 'name', 'Ashwini Hospital'),
(41824, 35599, 'en', 'name', 'Bowen University Teaching Hospital'),
(41825, 35600, 'no_lang_code', 'name', 'AstraZeneca (India)'),
(41826, 35601, 'en', 'name', 'Bestian Medical Center'),
(41827, 35602, 'no_lang_code', 'name', 'Camlin Technologies (United Kingdom)'),
(41828, 35603, 'en', 'name', 'Bapuji Dental College and Hospital'),
(41829, 35603, 'kn', 'name', 'ą²¬ą²¾ą²Ŗą³‚ą²œą²æ ದಂತ ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³‡'),
(41830, 35604, 'en', 'name', 'Babasaheb Bhimrao Ambedkar Bihar University'),
(41831, 35605, 'tr', 'name', 'Beytepe Asker Hastanesi'),
(41832, 35606, 'en', 'name', 'Adana Hospital'),
(41833, 35607, 'no_lang_code', 'name', 'Augmentium Pharma Consulting (Canada)'),
(41834, 35608, 'en', 'name', 'Changsha Environmental Protection College'),
(41835, 35609, 'no_lang_code', 'name', 'CardioDx (United States)'),
(41836, 35610, 'no_lang_code', 'name', 'Cortical Dynamics (Australia)'),
(41837, 35611, 'en', 'name', 'Civil Service Hospital'),
(41838, 35612, 'de', 'name', 'Katholisches Klinikum Essen'),
(41839, 35613, 'no_lang_code', 'name', 'Covance (Australia)'),
(41840, 35614, 'no_lang_code', 'name', 'Bruning (Brazil)'),
(41841, 35615, 'en', 'name', 'Chaohu Hospital of Anhui Medical University'),
(41842, 35616, 'en', 'name', 'Bryansk State Agrarian University'),
(41843, 35616, 'ru', 'name', 'Š‘Ń€ŃŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(41844, 35617, 'en', 'name', 'Center for Autism and Related Disorders'),
(41845, 35618, 'en', 'name', 'Central Hospital Affiliated to Shenyang Medical College'),
(41846, 35619, 'en', 'name', 'Central Institute of Freshwater Aquaculture'),
(41847, 35620, 'no_lang_code', 'name', 'Createc (United Kingdom)'),
(41848, 35621, 'en', 'name', 'Chengdu Fifth People''s Hospital'),
(41849, 35622, 'en', 'name', 'Chenzhou First People''s Hospital'),
(41850, 35623, 'en', 'name', 'College of Applied Sciences- Ibri'),
(41851, 35624, 'en', 'name', 'Central Mental Hospital'),
(41852, 35625, 'no_lang_code', 'name', 'Crown Bioscience (China)'),
(41853, 35626, 'no_lang_code', 'name', 'Chiba Aoba Municipal Hospital'),
(41854, 35626, 'ja', 'name', 'åƒč‘‰åø‚ē«‹é’č‘‰ē—…é™¢'),
(41855, 35627, 'en', 'name', 'Children''s Hospital of Capital Institute of Pediatrics'),
(41856, 35628, 'no_lang_code', 'name', 'Cupron (Israel)'),
(41857, 35629, 'en', 'name', 'Jiangxi Provincial Children''s Hospital'),
(41858, 35630, 'en', 'name', 'Children''s Hospital of San Antonio'),
(41859, 35631, 'en', 'name', 'Daelim University College'),
(41860, 35631, 'ko', 'name', 'ėŒ€ė¦¼ėŒ€ķ•™źµ'),
(41861, 35632, 'de', 'name', 'Kinderklinik Regensburg'),
(41862, 35633, 'en', 'name', 'Chabahar Maritime University'),
(41863, 35634, 'en', 'name', 'College of Industrial Engineering'),
(41864, 35635, 'vi', 'name', 'Bệnh viện ĐƠ Nįŗµng'),
(41865, 35635, 'en', 'name', 'Da Nang Hospital');
INSERT INTO `ror_settings` VALUES
(41866, 35636, 'de', 'name', 'Diakonissenkrankenhaus'),
(41867, 35637, 'en', 'name', 'Daejeon Oriental Hospital'),
(41868, 35638, 'en', 'name', 'Darshan Dental College and Hospital'),
(41869, 35639, 'en', 'name', 'Chongqing Medical and Pharmaceutical College'),
(41870, 35640, 'en', 'name', 'King Khalid University Hospital'),
(41871, 35641, 'de', 'name', 'Christian Doppler Klinik'),
(41872, 35642, 'no_lang_code', 'name', 'Dong-A ST (South Korea)'),
(41873, 35643, 'no_lang_code', 'name', 'ESU-Services (Switzerland)'),
(41874, 35644, 'no_lang_code', 'name', 'Etsy (United States)'),
(41875, 35645, 'en', 'name', 'Dr D Y Patil Dental College & Hospital'),
(41876, 35646, 'no_lang_code', 'name', 'Delfin Technologies (Finland)'),
(41877, 35647, 'pt', 'name', 'Universidade Katyavala Bwila'),
(41878, 35648, 'en', 'name', 'Dr. Rajendra Prasad Government Medical College'),
(41879, 35649, 'no_lang_code', 'name', 'Euromedik'),
(41880, 35650, 'en', 'name', 'Colorectal Surgical Associates'),
(41881, 35651, 'no_lang_code', 'name', 'Dynamic Research (United States)'),
(41882, 35652, 'en', 'name', 'Yanbian University Hospital'),
(41883, 35653, 'en', 'name', 'Federal University Kashere'),
(41884, 35654, 'en', 'name', 'Tangshan People''s Hospital'),
(41885, 35655, 'no_lang_code', 'name', 'Comsol (United States)'),
(41886, 35656, 'nl', 'name', 'Europa Ziekenhuizen'),
(41887, 35656, 'en', 'name', 'Europe Hospitals'),
(41888, 35657, 'no_lang_code', 'name', 'Confocal Science (Japan)'),
(41889, 35658, 'en', 'name', 'Employees'' State Insurance Model Hospital'),
(41890, 35659, 'en', 'name', 'Connecticut Valley Hospital'),
(41891, 35660, 'en', 'name', 'European University of Rome'),
(41892, 35661, 'no_lang_code', 'name', 'Tanggangzi hospital'),
(41893, 35662, 'en', 'name', 'Federal University Lokoja'),
(41894, 35663, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Japan)'),
(41895, 35664, 'en', 'name', 'Shanghai Eighth People Hospital'),
(41896, 35665, 'de', 'name', 'Felix Platter-Hospital'),
(41897, 35666, 'no_lang_code', 'name', 'Fernandez Hospital'),
(41898, 35667, 'no_lang_code', 'name', 'eCoast (New Zealand)'),
(41899, 35668, 'no_lang_code', 'name', 'Punan Hospital'),
(41900, 35669, 'de', 'name', 'Friedrich-Ebert-Krankenhaus'),
(41901, 35670, 'no_lang_code', 'name', 'Educomp Solutions (India)'),
(41902, 35671, 'no_lang_code', 'name', 'GCI Science & Technology (China)'),
(41903, 35672, 'en', 'name', 'Yili Friendship Hospital'),
(41904, 35673, 'en', 'name', 'First People''s Hospital of Jingzhou'),
(41905, 35674, 'no_lang_code', 'name', 'Genbody (South Korea)'),
(41906, 35675, 'no_lang_code', 'name', 'Eli Lilly (India)'),
(41907, 35676, 'en', 'name', 'Shanghai First Maternity and Infant Hospital'),
(41908, 35677, 'no_lang_code', 'name', 'Engineering Systems (United States)'),
(41909, 35678, 'en', 'name', 'The First People''s Hospital of Changde'),
(41910, 35679, 'en', 'name', 'Corfu General Clinic'),
(41911, 35680, 'en', 'name', 'General Hospital of Drama'),
(41912, 35681, 'en', 'name', 'Jining First People''s Hospital'),
(41913, 35681, 'zh', 'name', 'ęµŽå®åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(41914, 35682, 'no_lang_code', 'name', 'Enjet (South Korea)'),
(41915, 35683, 'en', 'name', 'Quzhou City People''s Hospital'),
(41916, 35684, 'en', 'name', 'Xuzhou No.1 People''s Hospital'),
(41917, 35685, 'no_lang_code', 'name', 'Epizyme (United States)'),
(41918, 35686, 'no_lang_code', 'name', 'Genetic Technologies (Australia)'),
(41919, 35687, 'en', 'name', 'Flinders Private Hospital'),
(41920, 35688, 'pt', 'name', 'Hospital Erasto Gaertner'),
(41921, 35689, 'no_lang_code', 'name', 'Forristall Ocean Engineering (United States)'),
(41922, 35690, 'no_lang_code', 'name', 'Furukawa Electric (Japan)'),
(41923, 35690, 'ja', 'name', 'å¤ę²³é›»ę°—å·„ę„­'),
(41924, 35691, 'no_lang_code', 'name', 'Van Drunen Farms (United States)'),
(41925, 35692, 'en', 'name', 'Panzhihua Central Hospital'),
(41926, 35693, 'no_lang_code', 'name', 'Gezhouba Explosive (China)'),
(41927, 35694, 'fr', 'name', 'Sante Montreal'),
(41928, 35695, 'fr', 'name', 'Association pour la Recherche au CollƩgial'),
(41929, 35696, 'en', 'name', 'Guizhou Provincial People''s Hospital'),
(41930, 35696, 'zh', 'name', 'č“µå·žēœäŗŗę°‘åŒ»é™¢'),
(41931, 35697, 'fr', 'name', 'Centre Jeunesse de Quebec'),
(41932, 35698, 'no_lang_code', 'name', 'Fortis Hospital'),
(41933, 35699, 'en', 'name', 'G. Kuppuswamy Naidu Memorial Hospital'),
(41934, 35700, 'no_lang_code', 'name', 'Golder Associates (China)'),
(41935, 35701, 'en', 'name', 'International University MITSO'),
(41936, 35702, 'no_lang_code', 'name', 'Guolian Futures (China)'),
(41937, 35703, 'tr', 'name', 'Hitit Üniversitesi Ƈorum Eğitim ve Araştırma Hastanesi'),
(41938, 35704, 'en', 'name', 'Hobart Private Hospital'),
(41939, 35705, 'no_lang_code', 'name', 'Mitsui Chemicals (Japan)'),
(41940, 35705, 'ja', 'name', 'äø‰äŗ•åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(41941, 35706, 'en', 'name', 'Ganzhou People''s Hospital'),
(41942, 35707, 'en', 'name', 'Hainan General Hospital'),
(41943, 35707, 'zh', 'name', 'ęµ·å—ēœäŗŗę°‘åŒ»é™¢'),
(41944, 35708, 'en', 'name', 'Great North Children''s Hospital'),
(41945, 35709, 'es', 'name', 'Hospital Universitario del Henares'),
(41946, 35710, 'en', 'name', 'Gaochun People''s Hospital'),
(41947, 35711, 'en', 'name', 'Hamedan University of Technology'),
(41948, 35712, 'no_lang_code', 'name', 'Green Pool (Australia)'),
(41949, 35713, 'en', 'name', 'Gateway Technical College'),
(41950, 35714, 'de', 'name', 'Klinikum Weiden'),
(41951, 35715, 'no_lang_code', 'name', 'GridBridge (United States)'),
(41952, 35716, 'en', 'name', 'Hsing Wu University'),
(41953, 35716, 'zh', 'name', 'é†’å¾ē§‘ęŠ€å¤§å­ø'),
(41954, 35717, 'de', 'name', 'Krankenhaus Kƶln-Holweide'),
(41955, 35718, 'en', 'name', 'Huanghe Science and Technology College'),
(41956, 35718, 'zh', 'name', 'é»„ę²³ē§‘ęŠ€å­¦é™¢'),
(41957, 35719, 'no_lang_code', 'name', 'Gritek (China)'),
(41958, 35720, 'no', 'name', 'Haraldsplass Diakonale Sykehus'),
(41959, 35721, 'en', 'name', 'Guangdong University of Petrochemical Technology'),
(41960, 35721, 'zh', 'name', 'å¹æäøœēŸ³ę²¹åŒ–å·„å­¦é™¢'),
(41961, 35722, 'en', 'name', 'Guangdong Province Women and Children Hospital'),
(41962, 35723, 'es', 'name', 'Hospital Base Guillermo Almenara Irigoyen'),
(41963, 35724, 'en', 'name', 'Hubei Urban Construction Vocational and Technological College'),
(41964, 35724, 'zh', 'name', 'ę¹–åŒ—åŸŽåø‚å»ŗč®¾čŒäøšęŠ€ęœÆå­¦é™¢'),
(41965, 35725, 'no_lang_code', 'name', 'Ichimaru Pharcos (Japan)'),
(41966, 35726, 'no_lang_code', 'name', 'Icon (United Kingdom)'),
(41967, 35727, 'no_lang_code', 'name', 'Humanpass (South Korea)'),
(41968, 35728, 'no_lang_code', 'name', 'Idemitsu Kosan (Japan)'),
(41969, 35728, 'ja', 'name', 'å‡ŗå…‰čˆˆē”£'),
(41970, 35729, 'it', 'name', 'Ospedale di Civita Castellana'),
(41971, 35730, 'no_lang_code', 'name', 'Humanwell Healthcare Group (China)'),
(41972, 35731, 'es', 'name', 'Hospital de Manises'),
(41973, 35732, 'en', 'name', 'Heart Life Hospital'),
(41974, 35732, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć‹ć‚Šć‚†ć—ä¼š'),
(41975, 35733, 'en', 'name', 'Guigang City People''s Hospital'),
(41976, 35734, 'es', 'name', 'Hospital de Viladecans'),
(41977, 35735, 'en', 'name', 'Guizhou Cancer Hospital'),
(41978, 35736, 'en', 'name', 'Shenzhen Occupational Disease Prevention Hospital'),
(41979, 35737, 'en', 'name', 'Third People''s Hospital of Hefei'),
(41980, 35738, 'no_lang_code', 'name', 'Intertek (Switzerland)'),
(41981, 35739, 'no_lang_code', 'name', 'Imari Arita Kyoritsu Hospital'),
(41982, 35740, 'es', 'name', 'Hospital General de Almansa'),
(41983, 35741, 'de', 'name', 'Hegau-Bodensee-Klinikum Singen'),
(41984, 35742, 'ro', 'name', 'Universitatea Ioan Slavici'),
(41985, 35743, 'no_lang_code', 'name', 'Altimmune (United Kingdom)'),
(41986, 35744, 'no_lang_code', 'name', 'Intel (Taiwan)'),
(41987, 35745, 'en', 'name', 'Iran University of Industries and Mines'),
(41988, 35746, 'es', 'name', 'Hospital Civil de Guadalajara'),
(41989, 35747, 'en', 'name', 'Indian Institute of Sugarcane Research'),
(41990, 35748, 'en', 'name', 'International Center for Tropical Agriculture'),
(41991, 35749, 'en', 'name', 'Henan Provincial Chest Hospital'),
(41992, 35749, 'zh', 'name', 'ę²³å—ēœčƒøē§‘åŒ»é™¢'),
(41993, 35750, 'en', 'name', 'Islamia College University'),
(41994, 35750, 'ur', 'name', 'Ų§Ų³Ł„Ų§Ł…ŪŒŪ کالج ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(41995, 35751, 'en', 'name', 'Indian Institute of Vegetable Research'),
(41996, 35752, 'es', 'name', 'Hospital La Inmaculada'),
(41997, 35753, 'en', 'name', 'Henan University Huaihe Hospital and Huaihe Clinical Institute'),
(41998, 35754, 'no_lang_code', 'name', 'Isothermal Technology (United Kingdom)'),
(41999, 35755, 'no_lang_code', 'name', 'Isotop (Israel)'),
(42000, 35756, 'no_lang_code', 'name', 'Hermes Microvision (United States)'),
(42001, 35757, 'en', 'name', 'Yantai Infectious Diseases Hospital'),
(42002, 35758, 'de', 'name', 'Krankenhaus Neuwerk "Maria von den Aposteln"'),
(42003, 35759, 'no_lang_code', 'name', 'Information and Mathematical Science and Bioinformatics (Japan)'),
(42004, 35760, 'en', 'name', 'Inha Technical College'),
(42005, 35761, 'no_lang_code', 'name', 'Inner Mongolia Yili Industrial Group (China)'),
(42006, 35761, 'zh', 'name', '伊利集团'),
(42007, 35762, 'no_lang_code', 'name', 'Himgiri Zee University'),
(42008, 35763, 'hu', 'name', 'Jahn Ferenc DĆ©l-Pesti KórhĆ”z Ć©s RendelőintĆ©zet'),
(42009, 35764, 'en', 'name', 'Hippocrateon Private Hospital'),
(42010, 35765, 'it', 'name', 'Ospedale Versilia'),
(42011, 35766, 'no_lang_code', 'name', 'Jordan Valley Semiconductors (China)'),
(42012, 35767, 'en', 'name', 'Institute for Color Science and Technology'),
(42013, 35768, 'no_lang_code', 'name', 'Histoindex (Singapore)'),
(42014, 35769, 'no_lang_code', 'name', 'Jain Irrigation Systems (India)'),
(42015, 35770, 'es', 'name', 'Hospital Psiquiatrico Infantil Juan N Navarro'),
(42016, 35771, 'en', 'name', 'Jammu Hospital'),
(42017, 35772, 'no_lang_code', 'name', 'Japan Aviation Electronics Industry (Japan)'),
(42018, 35772, 'ja', 'name', 'ę—„ęœ¬čˆŖē©ŗé›»å­å·„ę„­'),
(42019, 35773, 'en', 'name', 'Gulu Hospital'),
(42020, 35774, 'es', 'name', 'Hospital Quirón Torrevieja'),
(42021, 35775, 'no_lang_code', 'name', 'Japan Bio Products (Japan)'),
(42022, 35776, 'en', 'name', 'Kailuan General Hospital'),
(42023, 35777, 'en', 'name', 'K.S. Hegde Hospital'),
(42024, 35777, 'kn', 'name', 'ą²œą²øą³ą²Ÿą²æą³•ą²øą³ ಕೆ.ą²Žą²øą³ ą²¹ą³†ą²—ą³ą²”ą³† ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(42025, 35778, 'es', 'name', 'Hospital Universitario Rey Juan Carlos'),
(42026, 35779, 'en', 'name', 'KM Shah Dental College and Hospital'),
(42027, 35780, 'no_lang_code', 'name', 'Aerocosmos'),
(42028, 35780, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ мониторинга ŠŠ­Š ŠžŠšŠžŠ”ŠœŠžŠ”'),
(42029, 35781, 'en', 'name', 'Jilin Vocational College of Industry and Technology'),
(42030, 35782, 'pt', 'name', 'Hospital Samaritano de SĆ£o Paulo'),
(42031, 35783, 'en', 'name', 'Kamla Nehru Memorial Hospital'),
(42032, 35784, 'en', 'name', 'Jaypee Hospital'),
(42033, 35785, 'no_lang_code', 'name', 'JEOL (United States)'),
(42034, 35786, 'ms', 'name', 'Hospital Seberang Jaya'),
(42035, 35787, 'en', 'name', 'Jiading District Central Hospital'),
(42036, 35788, 'en', 'name', 'University of Kang Ning'),
(42037, 35788, 'zh', 'name', '康寧大學'),
(42038, 35789, 'es', 'name', 'Hospital Universitario de Burgos'),
(42039, 35790, 'en', 'name', 'Kang-Ning Junior College of Medical Care and Management'),
(42040, 35791, 'en', 'name', 'Jiangmen Central Hospital'),
(42041, 35792, 'de', 'name', 'Krankenhaus Lindenbrunn'),
(42042, 35793, 'en', 'name', 'JiangSu Armed Police General Hospital'),
(42043, 35794, 'en', 'name', 'Krantisinh Nana Patil College of Veterinary Science'),
(42044, 35795, 'no_lang_code', 'name', 'Asian Star Anchor Chain (China)'),
(42045, 35796, 'no_lang_code', 'name', 'Jiangsu Shengze Hospital'),
(42046, 35797, 'de', 'name', 'Kantonsspital Frauenfeld'),
(42047, 35798, 'de', 'name', 'Kantonsspital Münsterlingen'),
(42048, 35799, 'tr', 'name', 'İstanbul Kanuni Sultan Süleyman Eğitim ve Araştırma Hastanesi'),
(42049, 35800, 'en', 'name', 'Kyanous Stavros Hospital'),
(42050, 35801, 'en', 'name', 'Jilin City Central Hospital'),
(42051, 35802, 'de', 'name', 'Olgahospital'),
(42052, 35803, 'no_lang_code', 'name', 'Kyowa Hakko Kirin (Singapore)'),
(42053, 35804, 'en', 'name', 'Jinan Maternity And Care Hospital'),
(42054, 35805, 'en', 'name', 'Karamay Central Hospital'),
(42055, 35805, 'zh', 'name', 'å…‹ę‹‰ēŽ›ä¾åø‚äø­åæƒåŒ»é™¢Ā·äŗ‘åŒ»é™¢'),
(42056, 35806, 'en', 'name', 'Ling Tung University'),
(42057, 35806, 'zh', 'name', 'å¶ŗę±ē§‘ęŠ€å¤§å­ø'),
(42058, 35807, 'en', 'name', 'M. S. Ramaiah Dental College and Hospital'),
(42059, 35808, 'en', 'name', 'Lipetsk State Pedagogical University'),
(42060, 35809, 'en', 'name', 'Lipetsk State Technical University'),
(42061, 35810, 'de', 'name', 'Katharinenhospital'),
(42062, 35811, 'no_lang_code', 'name', 'Kawamura Hospital'),
(42063, 35812, 'en', 'name', 'Mahsa University'),
(42064, 35813, 'en', 'name', 'Lake–Sumter State College'),
(42065, 35814, 'no_lang_code', 'name', 'Landis International (United States)'),
(42066, 35815, 'no_lang_code', 'name', 'Klohn Crippen Berger (Canada)'),
(42067, 35816, 'no_lang_code', 'name', 'Logos Biosystems (South Korea)'),
(42068, 35817, 'de', 'name', 'Malteser Krankenhaus St. Anna'),
(42069, 35818, 'fi', 'name', 'LƤnsi-Pohjan Sairaanhoitopiirin KuntayhtymƤ'),
(42070, 35819, 'no_lang_code', 'name', 'Manila Consulting Group (United States)'),
(42071, 35820, 'tr', 'name', 'Kocaeli Üniversitesi Araştırma ve Uygulama Hastanesi'),
(42072, 35821, 'no_lang_code', 'name', 'Kennedy Martin Health Outcomes (United Kingdom)'),
(42073, 35822, 'en', 'name', 'Luohe Medical College'),
(42074, 35823, 'no_lang_code', 'name', 'Kokilaben Dhirubhai Ambani Hospital'),
(42075, 35824, 'no_lang_code', 'name', 'Mari Petroleum Company (Pakistan)'),
(42076, 35825, 'en', 'name', 'Leshan Normal University'),
(42077, 35825, 'zh', 'name', 'ä¹å±±åøˆčŒƒå­¦é™¢'),
(42078, 35826, 'en', 'name', 'Maria Fareri Children''s Hospital'),
(42079, 35827, 'de', 'name', 'Marien Hospital Düsseldorf'),
(42080, 35828, 'no_lang_code', 'name', 'Kolon Life Science (South Korea)'),
(42081, 35829, 'no_lang_code', 'name', 'Keysight Technologies (United States)'),
(42082, 35830, 'no_lang_code', 'name', 'Level-5 (Japan)'),
(42083, 35831, 'de', 'name', 'UniversitƤtsklinik Marien Hospital Herne'),
(42084, 35832, 'en', 'name', 'Lviv City Children''s Hospital'),
(42085, 35833, 'de', 'name', 'Marienhospital Stuttgart'),
(42086, 35834, 'no_lang_code', 'name', 'LxRay (Japan)'),
(42087, 35835, 'en', 'name', 'Lianyungang Maternal and Children’s Hospital'),
(42088, 35836, 'en', 'name', 'Mathrusri Ramabai Ambedkar Dental College & Hospital'),
(42089, 35837, 'en', 'name', 'Kharkiv University of Air Force'),
(42090, 35838, 'no_lang_code', 'name', 'Maruwa Foods and Biosciences (Japan)'),
(42091, 35839, 'en', 'name', 'Max Super Speciality Hospital'),
(42092, 35840, 'no_lang_code', 'name', 'Mata Chanan Devi Hospital'),
(42093, 35841, 'no_lang_code', 'name', 'Lilly (China)'),
(42094, 35842, 'en', 'name', 'Mbarara National Referral Hospital'),
(42095, 35843, 'no_lang_code', 'name', 'Kintama (Canada)'),
(42096, 35844, 'en', 'name', 'Changsha Hospital for Maternal and Child Health Care'),
(42097, 35845, 'no_lang_code', 'name', 'Med Data Quest (United States)'),
(42098, 35846, 'no_lang_code', 'name', 'Medsonic (Cyprus)'),
(42099, 35847, 'en', 'name', 'Lillebaelt Academy University of Applied Sciences'),
(42100, 35848, 'no_lang_code', 'name', 'Novocure (United States)'),
(42101, 35849, 'en', 'name', 'Hainan Maternal and Child Health Hospital'),
(42102, 35850, 'no_lang_code', 'name', 'Megafine Pharma (India)'),
(42103, 35851, 'en', 'name', 'Dr. Mehta''s Children''s Hospital'),
(42104, 35852, 'no_lang_code', 'name', 'Misasa Onsen Hospital'),
(42105, 35853, 'en', 'name', 'Meizhou City People''s Hospital'),
(42106, 35853, 'zh', 'name', 'ę¢…å·žåø‚äŗŗę°‘åŒ»é™¢'),
(42107, 35854, 'en', 'name', 'Meliksah University'),
(42108, 35855, 'en', 'name', 'Mediclinic City Hospital'),
(42109, 35856, 'en', 'name', 'KKR ENT Hospital and Research Institute'),
(42110, 35857, 'en', 'name', 'MediHope Super Specialty Hospital'),
(42111, 35858, 'en', 'name', 'Weifang Maternity and Child Care Hospital'),
(42112, 35859, 'en', 'name', 'Mittal hospital'),
(42113, 35860, 'no_lang_code', 'name', 'Medistem (Panama)'),
(42114, 35861, 'no_lang_code', 'name', 'Mizushima Central Hospital'),
(42115, 35862, 'no_lang_code', 'name', 'Pudong Maternal and Child Health Hospital'),
(42116, 35863, 'no_lang_code', 'name', 'Mengchao Hepatobiliary Hospital'),
(42117, 35864, 'no_lang_code', 'name', 'Matsutani America (United States)'),
(42118, 35865, 'en', 'name', 'Anderson Hospital'),
(42119, 35866, 'en', 'name', 'Mohak Hitech Speciality Hospital'),
(42120, 35867, 'en', 'name', 'First People''s Hospital of Nanning'),
(42121, 35868, 'tr', 'name', 'Baltalimanı Kemik Hastalıkları Hastanesi'),
(42122, 35869, 'no_lang_code', 'name', 'Mouse Specifics (United States)'),
(42123, 35870, 'en', 'name', 'Nanjing Maternity and Child Health Care Hospital'),
(42124, 35871, 'en', 'name', 'Tang Hospital'),
(42125, 35872, 'en', 'name', 'Nazareth Hospital'),
(42126, 35873, 'en', 'name', 'Midland Regional Hospital at Tullamore'),
(42127, 35873, 'ga', 'name', 'Ospidéal GinearÔlta Thulach Mhór'),
(42128, 35874, 'en', 'name', 'Muhammad Nawaz Sharif University of Engineering & Technology'),
(42129, 35875, 'en', 'name', 'Nehru Gram Bharti University'),
(42130, 35876, 'no_lang_code', 'name', 'Nema Research (United States)'),
(42131, 35877, 'no_lang_code', 'name', 'Midot (Israel)'),
(42132, 35878, 'en', 'name', 'Noguchi Hospital'),
(42133, 35879, 'no_lang_code', 'name', 'Nanonics Imaging (Israel)'),
(42134, 35880, 'en', 'name', 'Nokami Kousei Sougo Hospital'),
(42135, 35881, 'no_lang_code', 'name', 'NanoPhotonica (United States)'),
(42136, 35882, 'en', 'name', 'Murshidabad Medical College and Hospital'),
(42137, 35883, 'en', 'name', 'ƅlesund Hospital'),
(42138, 35884, 'no_lang_code', 'name', 'Nanosyn (United States)'),
(42139, 35885, 'no_lang_code', 'name', 'Nanosystem (Russia)'),
(42140, 35886, 'no_lang_code', 'name', 'Globus Medical (United States)'),
(42141, 35887, 'no_lang_code', 'name', 'Azumi Hospital'),
(42142, 35888, 'no_lang_code', 'name', 'Nextomics Biosciences (China)'),
(42143, 35888, 'zh', 'name', 'ęœŖę„ē»„ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(42144, 35889, 'en', 'name', 'Ng Teng Fong General Hospital'),
(42145, 35890, 'en', 'name', 'Nantong Maternity and Child Health Hospital'),
(42146, 35891, 'no_lang_code', 'name', 'Oryza (Japan)'),
(42147, 35892, 'en', 'name', 'North China Institute of Aerospace Engineering'),
(42148, 35893, 'no_lang_code', 'name', 'NGC Aerospace (Canada)'),
(42149, 35894, 'no_lang_code', 'name', 'Mytech (Japan)'),
(42150, 35895, 'no_lang_code', 'name', 'Saiseikaisenri Hospital'),
(42151, 35896, 'no_lang_code', 'name', 'Gazprombank'),
(42152, 35897, 'en', 'name', 'Northwest Orthopaedic Specialists'),
(42153, 35898, 'en', 'name', 'Niloufer Hospital'),
(42154, 35899, 'en', 'name', 'Osaki Citizen Hospital'),
(42155, 35899, 'ja', 'name', 'å¤§å“Žåø‚ę°‘ē—…é™¢'),
(42156, 35900, 'en', 'name', 'Azerbaijan National Aerospace Agency'),
(42157, 35900, 'az', 'name', 'Azərbaycan Milli Aerokosmik Agentliyi'),
(42158, 35901, 'no_lang_code', 'name', 'Health Biomed (China)'),
(42159, 35902, 'no', 'name', 'UllevƄl Sykehusapotek'),
(42160, 35903, 'it', 'name', 'Santissima TrinitĆ '),
(42161, 35904, 'en', 'name', 'Overseas Chinese University'),
(42162, 35904, 'zh', 'name', 'åƒ‘å…‰ē§‘ęŠ€å¤§å­ø'),
(42163, 35905, 'no_lang_code', 'name', 'Medfiles (Finland)'),
(42164, 35906, 'it', 'name', 'Ospedale di Latisana'),
(42165, 35907, 'en', 'name', 'National Cancer Institute'),
(42166, 35908, 'en', 'name', 'NU Hospital Group'),
(42167, 35909, 'it', 'name', 'Ospedale dell'' Angelo'),
(42168, 35910, 'en', 'name', 'Peking University Sixth Hospital'),
(42169, 35911, 'no_lang_code', 'name', 'P.E. LaMoreaux & Associates (United States)'),
(42170, 35912, 'en', 'name', 'Humanitas Mater Domini'),
(42171, 35913, 'no_lang_code', 'name', 'Plexision (United States)'),
(42172, 35914, 'en', 'name', 'National Hospital'),
(42173, 35915, 'en', 'name', 'Obafemi Awolowo University Teaching Hospitals Complex'),
(42174, 35916, 'en', 'name', 'Paddington Cat Hospital'),
(42175, 35917, 'no_lang_code', 'name', 'Pluristem Therapeutics (Israel)'),
(42176, 35918, 'en', 'name', 'Changchun Obstetrics and Gynecology Hospital'),
(42177, 35919, 'no_lang_code', 'name', 'Rosetta Genomics (Israel)'),
(42178, 35920, 'no_lang_code', 'name', 'Pammakaristos Hospital'),
(42179, 35921, 'no_lang_code', 'name', 'Olympia Diagnostics (United States)'),
(42180, 35922, 'en', 'name', 'Panyu District Central Hospital'),
(42181, 35923, 'en', 'name', 'Royal College of Surgeons in Ireland - Bahrain'),
(42182, 35923, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„Ų·ŲØŁŠŲ©'),
(42183, 35924, 'en', 'name', 'Presbyterian University and Theological Seminary'),
(42184, 35925, 'no_lang_code', 'name', 'Oncolytics Biotech (Canada)'),
(42185, 35926, 'no_lang_code', 'name', 'Optolink (Russia)'),
(42186, 35927, 'no_lang_code', 'name', 'Ooyo Seibutsu (Japan)'),
(42187, 35928, 'no_lang_code', 'name', 'PriMove Infrastructure Development Consultants (India)'),
(42188, 35929, 'no_lang_code', 'name', 'OP Bio Factory (Japan)'),
(42189, 35930, 'en', 'name', 'National Institute of Technology, Toyama College'),
(42190, 35930, 'ja', 'name', 'åÆŒå±±é«˜ē­‰å°‚é–€å­¦ę ”'),
(42191, 35931, 'de', 'name', 'Rudolfinerhaus Hospital'),
(42192, 35932, 'de', 'name', 'Prosper Hospital'),
(42193, 35933, 'en', 'name', 'National Neurosciences Centre'),
(42194, 35934, 'en', 'name', 'Ruihua Affiliated Hospital of Soochow University'),
(42195, 35935, 'sl', 'name', 'Psihiatrična BolniŔnica Ormož'),
(42196, 35936, 'no_lang_code', 'name', 'Ryoka Systems (Japan)'),
(42197, 35937, 'en', 'name', 'Q.D. Research'),
(42198, 35938, 'no_lang_code', 'name', 'Optibrium (United Kingdom)'),
(42199, 35939, 'no_lang_code', 'name', 'Orchid Pharma (India)'),
(42200, 35940, 'no_lang_code', 'name', 'Mednax (United States)'),
(42201, 35941, 'en', 'name', 'Qingdao Huanghai University'),
(42202, 35942, 'en', 'name', 'Qingzhou City People''s Hospital'),
(42203, 35943, 'en', 'name', 'Orlov State University'),
(42204, 35944, 'en', 'name', 'Qiongtai Teachers College'),
(42205, 35945, 'no_lang_code', 'name', 'Orochem Technologies (United States)'),
(42206, 35946, 'pt', 'name', 'Hospital de Olhos Sadalla Amin Ghanem'),
(42207, 35946, 'en', 'name', 'Sadalla Amin Ghanem Eye Hospital'),
(42208, 35947, 'tr', 'name', 'Sakarya Eğitim ve Araştırma Hastanesi'),
(42209, 35947, 'en', 'name', 'Sakarya Training and Research Hospital'),
(42210, 35948, 'en', 'name', 'Sai Nath University'),
(42211, 35949, 'de', 'name', 'Asklepios Kliniken Bad Abbach'),
(42212, 35950, 'en', 'name', 'Orthopaedic University Hospital Friedrichsheim'),
(42213, 35950, 'de', 'name', 'OrthopƤdische UniversitƤtsklinik Friedrichsheim'),
(42214, 35951, 'en', 'name', 'Saint Mary''s Hospital Luodong'),
(42215, 35952, 'no_lang_code', 'name', 'Tongren Hospital'),
(42216, 35953, 'en', 'name', 'Shanmuganathan Engineering College'),
(42217, 35954, 'no_lang_code', 'name', 'Shutech (Japan)'),
(42218, 35955, 'no_lang_code', 'name', 'San’an Optoelectronics (China)'),
(42219, 35956, 'no_lang_code', 'name', 'Sibanye Gold (South Africa)'),
(42220, 35957, 'en', 'name', 'Sixth Affiliated Hospital of Kunming Medical University'),
(42221, 35958, 'en', 'name', 'Ramin Agriculture and Natural Resources University of Khouzestan'),
(42222, 35959, 'en', 'name', 'Rashid Latif Medical College'),
(42223, 35960, 'en', 'name', 'Sanko University'),
(42224, 35961, 'en', 'name', 'Linzi District People''s Hospital'),
(42225, 35962, 'no_lang_code', 'name', 'Recombinant Antibody Technology (United Kingdom)'),
(42226, 35963, 'cs', 'name', 'SlezskĆ” Nemocnice v Opavě'),
(42227, 35964, 'no_lang_code', 'name', 'Regentis Biomaterials (Israel)'),
(42228, 35965, 'en', 'name', 'Şanlıurfa Mehmet Akif İnan Education and Research Hospital'),
(42229, 35965, 'tr', 'name', 'Şanlıurfa Mehmet Akif İnan Eğitim ve Araştırma Hastanesi'),
(42230, 35966, 'de', 'name', 'Rems-Murr-Klinikum'),
(42231, 35967, 'no_lang_code', 'name', 'Personalis (United States)'),
(42232, 35968, 'en', 'name', 'Sobell House'),
(42233, 35969, 'en', 'name', 'Shenzhen Shajing Affiliated Hospital of Guangzhou Medical University'),
(42234, 35970, 'no_lang_code', 'name', 'Santokba Durlabhji Memorial hospital'),
(42235, 35971, 'en', 'name', 'Fusion UK'),
(42236, 35972, 'en', 'name', 'Phoenix College'),
(42237, 35973, 'no_lang_code', 'name', 'Western Metal Materials (China)'),
(42238, 35974, 'en', 'name', 'Sapporo Toho Hospital'),
(42239, 35975, 'en', 'name', 'Sarah Network of Rehabilitation Hospitals'),
(42240, 35976, 'no_lang_code', 'name', 'Chinese People’s Liberation Army 263 hospital'),
(42241, 35977, 'no_lang_code', 'name', 'Shenzhen Weiguang Biological Products (China)'),
(42242, 35978, 'no_lang_code', 'name', 'Slips Technologies (United States)'),
(42243, 35979, 'de', 'name', 'St.-Johannes-Hospital Dortmund'),
(42244, 35980, 'no_lang_code', 'name', 'Sky Island Alliance (United States)'),
(42245, 35981, 'en', 'name', 'St. Joseph Dental College'),
(42246, 35982, 'no_lang_code', 'name', 'Snowdon (United States)'),
(42247, 35983, 'no_lang_code', 'name', 'Sumitomo Rubber Industries (Japan)'),
(42248, 35983, 'ja', 'name', 'ä½å‹ć‚“ćƒ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(42249, 35984, 'no_lang_code', 'name', 'Selventa (United States)'),
(42250, 35985, 'de', 'name', 'Sophien-und Hufeland Klinikum'),
(42251, 35986, 'no_lang_code', 'name', 'Suzhou Creative Nano-carbon (China)'),
(42252, 35987, 'en', 'name', 'Funabashi Orthopaedic Hospital'),
(42253, 35988, 'no_lang_code', 'name', 'Sotera Wireless (United States)'),
(42254, 35989, 'en', 'name', 'Suzhou Kowloon Hospital'),
(42255, 35990, 'no_lang_code', 'name', 'STATinMED (United States)'),
(42256, 35991, 'en', 'name', 'Central Clinical Hospital No 2 named Semashko'),
(42257, 35991, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š‘Š¾Š»ŃŒŠ½ŠøŃ†Š° имени Демашко'),
(42258, 35992, 'en', 'name', 'Shri Ramswaroop Memorial University'),
(42259, 35993, 'no_lang_code', 'name', 'Senshio Rifu hospital'),
(42260, 35994, 'en', 'name', 'Stony Brook Children''s Hospital'),
(42261, 35995, 'en', 'name', 'Seojeong University'),
(42262, 35995, 'ko', 'name', 'ģ„œģ •ėŒ€ķ•™źµ'),
(42263, 35996, 'no_lang_code', 'name', 'Sparx Group (Japan)'),
(42264, 35997, 'en', 'name', 'State Scientific Research Institute of Aviation Systems'),
(42265, 35997, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных систем'),
(42266, 35998, 'ms', 'name', 'Hospital Taiping'),
(42267, 35998, 'en', 'name', 'Taiping Hospital'),
(42268, 35999, 'en', 'name', 'State University of AmapĆ”'),
(42269, 35999, 'pt', 'name', 'Universidade Estadual do AmapĆ”'),
(42270, 36000, 'no_lang_code', 'name', 'Satguru Partap Singh Hospital'),
(42271, 36001, 'en', 'name', 'Stomatological Hospital of Chongqing Medical University'),
(42272, 36002, 'en', 'name', 'Seven Oaks General Hospital'),
(42273, 36003, 'en', 'name', 'Stony Brook Medicine'),
(42274, 36004, 'en', 'name', 'Taixing People''s Hospital'),
(42275, 36005, 'en', 'name', 'Swiss Leading Hospitals'),
(42276, 36006, 'en', 'name', 'Sri Ramachandra Medical Centre'),
(42277, 36007, 'en', 'name', 'Sugarcane Breeding Institute'),
(42278, 36008, 'en', 'name', 'Sri Sai Super Speciality Hospital'),
(42279, 36008, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ साई ą¤øą„ą¤Ŗą¤° ą¤øą„ą¤Ŗą„‡ą¤¶ą¤²ą¤æą¤Ÿą„€ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(42280, 36009, 'en', 'name', 'Sri Venkateswara Veterinary University'),
(42281, 36009, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°µą±‡ą°‚ą°•ą°Ÿą±‡ą°¶ą±ą°µą°° ą°Ŗą°¶ą±ą°µą±ˆą°¦ą±ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚, తిరుపతి'),
(42282, 36010, 'no_lang_code', 'name', 'Suita Tokushukai Hospital'),
(42283, 36011, 'no_lang_code', 'name', 'Sumitomo Chemical (Japan)'),
(42284, 36011, 'ja', 'name', '住友化学'),
(42285, 36012, 'en', 'name', 'Shalem College'),
(42286, 36013, 'no_lang_code', 'name', 'Shanda Games'),
(42287, 36014, 'no_lang_code', 'name', 'Taoka Hospital'),
(42288, 36015, 'no_lang_code', 'name', 'Sunano (China)'),
(42289, 36016, 'it', 'name', 'Azienda Ospedaliera Nazionale SS. Antonio e Biagio e Cesare Arrigo'),
(42290, 36017, 'no_lang_code', 'name', 'Tata Steel (India)'),
(42291, 36018, 'no_lang_code', 'name', 'Takashimadaira Chuo General Hospital'),
(42292, 36019, 'no_lang_code', 'name', 'St Francis’ Hospital'),
(42293, 36020, 'en', 'name', 'Tang Du Hospital'),
(42294, 36021, 'en', 'name', 'Tatarstan Academy of Sciences'),
(42295, 36022, 'hu', 'name', 'Szent Imre Egyetemi OktatókórhÔz'),
(42296, 36023, 'no_lang_code', 'name', 'Syngenta (China)'),
(42297, 36024, 'tr', 'name', 'Taksim Alman Hastanesi'),
(42298, 36024, 'en', 'name', 'Taksim German Hospital'),
(42299, 36025, 'no_lang_code', 'name', 'Lushang (China)'),
(42300, 36026, 'en', 'name', 'St John of God Hospital'),
(42301, 36027, 'no_lang_code', 'name', 'Shandong Jiaotong Hospital'),
(42302, 36028, 'en', 'name', 'St John of God Subiaco Hospital'),
(42303, 36029, 'en', 'name', 'Shandong Provincial Hospital'),
(42304, 36029, 'zh', 'name', 'å±±äøœēœē«‹åŒ»é™¢'),
(42305, 36030, 'en', 'name', 'John F Finn Institute for Public Safety'),
(42306, 36031, 'hu', 'name', 'Szent BorbÔla KórhÔz'),
(42307, 36032, 'no_lang_code', 'name', 'Ansteel (China)'),
(42308, 36033, 'en', 'name', 'Leon Wiltse Memorial Hospital'),
(42309, 36033, 'ko', 'name', 'ģœŒģŠ¤źø°ė…ė³‘ģ›'),
(42310, 36034, 'no_lang_code', 'name', 'Fujian Tobacco Industry Limited Liability Company (China)'),
(42311, 36035, 'en', 'name', 'Ten Chen Hospital'),
(42312, 36036, 'en', 'name', 'St. Johns Hospital'),
(42313, 36037, 'en', 'name', 'Shenzhen Zhongshan Urological Hospital'),
(42314, 36038, 'no_lang_code', 'name', 'TeraRecon (United States)'),
(42315, 36039, 'de', 'name', 'St. Joseph-Krankenhaus'),
(42316, 36040, 'en', 'name', 'Royal Hospital for Neuro-disability'),
(42317, 36041, 'no_lang_code', 'name', 'Mission Hospital Durgapur'),
(42318, 36042, 'en', 'name', 'National Center for University Entrance Examinations'),
(42319, 36042, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§å­¦å…„č©¦ć‚»ćƒ³ć‚æćƒ¼'),
(42320, 36043, 'en', 'name', 'Second Affiliated Hospital of Inner Mongolia Medical University'),
(42321, 36044, 'en', 'name', '117th Hospital of People''s Liberation Army'),
(42322, 36045, 'en', 'name', 'Toowoomba Hospital'),
(42323, 36046, 'en', 'name', 'Academy of Physiotherapy in Wrocław'),
(42324, 36047, 'en', 'name', 'The Ohio State University Newark'),
(42325, 36048, 'en', 'name', '181st Hospital of Chinese People''s Liberation Army'),
(42326, 36049, 'en', 'name', 'Edmond and Lily Safra Children''s Hospital'),
(42327, 36050, 'en', 'name', 'Second Hospital of Nanchang'),
(42328, 36051, 'no_lang_code', 'name', 'Toshima Manufacturing (Japan)'),
(42329, 36052, 'en', 'name', 'Orentreich Foundation for the Advancement of Science'),
(42330, 36053, 'en', 'name', 'First Affiliated Hospital of Heilongjiang University of Chinese Medicine'),
(42331, 36054, 'en', 'name', 'The Eighth People’s Hospital of Nanning'),
(42332, 36055, 'en', 'name', 'Total Rehab'),
(42333, 36056, 'en', 'name', 'Oxford Educational Institutions'),
(42334, 36057, 'no_lang_code', 'name', 'Tottori Prefectural Kousei Hospital'),
(42335, 36057, 'ja', 'name', 'é³„å–ēœŒē«‹åŽšē”Ÿē—…é™¢'),
(42336, 36058, 'en', 'name', 'First Affiliated Hospital of Henan University'),
(42337, 36059, 'en', 'name', 'Second Hospital of Yichang'),
(42338, 36060, 'en', 'name', 'Second Affiliated Hospital of Luohe Medical College'),
(42339, 36061, 'en', 'name', 'Second People''s Hospital of NanTong'),
(42340, 36061, 'zh', 'name', 'å—é€šåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(42341, 36062, 'de', 'name', 'Unfallkrankenhaus Meidling'),
(42342, 36063, 'en', 'name', 'Wuqing District People''s Hospital'),
(42343, 36064, 'en', 'name', 'Second People’s Hospital of Yibin'),
(42344, 36065, 'en', 'name', 'Wuhan Third Hospital'),
(42345, 36066, 'en', 'name', 'Jiujiang First People''s Hospital'),
(42346, 36067, 'en', 'name', 'The First People''s Hospital of Shunde'),
(42347, 36068, 'en', 'name', 'Zhangqiu City People''s Hospital'),
(42348, 36068, 'zh', 'name', 'ē« äø˜åŒŗäŗŗę°‘åŒ»é™¢'),
(42349, 36069, 'no_lang_code', 'name', 'Truven Health Analytics (United States)'),
(42350, 36070, 'en', 'name', 'Xiaochang People''s Hospital'),
(42351, 36070, 'zh', 'name', 'å­ę˜ŒåŽæē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(42352, 36071, 'en', 'name', 'People''s Hospital of Bishan District'),
(42353, 36072, 'en', 'name', 'Fifth Affiliated Hospital of Zhengzhou University'),
(42354, 36073, 'en', 'name', 'People’s Hospital of Wenshan Prefecture'),
(42355, 36074, 'en', 'name', 'The First People’s Hospital of Lianyungang'),
(42356, 36075, 'en', 'name', 'National Institute of Technology, Tsuruoka College'),
(42357, 36075, 'ja', 'name', 'é¶“å²”å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(42358, 36076, 'en', 'name', 'Affiliated Hospital of Hangzhou Normal University'),
(42359, 36077, 'en', 'name', 'Fourth Affiliated Hospital of Guangxi Medical University'),
(42360, 36078, 'en', 'name', 'Ningbo University Affiliated Hospital'),
(42361, 36078, 'zh', 'name', 'å®ę³¢å¤§å­¦åŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(42362, 36079, 'en', 'name', 'Ufa State University of Economics and Service'),
(42363, 36080, 'en', 'name', 'Fourth People''s Hospital of Sichuan Province'),
(42364, 36081, 'en', 'name', 'Affiliated Hospital of Youjiang Medical University for Nationalities'),
(42365, 36082, 'en', 'name', 'Fourth People’s Hospital of Jinan'),
(42366, 36083, 'de', 'name', 'Universitäres Kinderwunschzentrum Lübeck'),
(42367, 36084, 'no_lang_code', 'name', 'Ultizyme International (Japan)'),
(42368, 36085, 'no_lang_code', 'name', 'Ultrahaptics (United Kingdom)'),
(42369, 36086, 'no_lang_code', 'name', 'Lozenetz Hospital'),
(42370, 36086, 'bg', 'name', 'Университетска болница Лозенец'),
(42371, 36087, 'es', 'name', 'Hospital Regional Rancagua'),
(42372, 36088, 'pt', 'name', 'Real Hospital PortuguĆŖs'),
(42373, 36089, 'no_lang_code', 'name', 'Thync (United States)'),
(42374, 36090, 'en', 'name', 'United Nations University – Maastricht Economic and Social Research Institute on Innovation and Technology'),
(42375, 36091, 'en', 'name', 'United Nations University-International Institute for Global Health'),
(42376, 36092, 'fr', 'name', 'UniversitƩ des Sciences, de Technologie et de MƩdecine'),
(42377, 36093, 'no_lang_code', 'name', 'Tissue Gene (United States)'),
(42378, 36094, 'en', 'name', 'Albstadt-Sigmaringen University'),
(42379, 36094, 'de', 'name', 'Hochschule Albstadt-Sigmaringen'),
(42380, 36095, 'de', 'name', 'Fachhochschule Graubünden'),
(42381, 36095, 'en', 'name', 'University of Applied Sciences of the Grisons'),
(42382, 36096, 'it', 'name', 'Azienda Ospedaliero-Universitaria Cagliari'),
(42383, 36097, 'en', 'name', 'Tokyo College of Environment'),
(42384, 36098, 'pl', 'name', 'Uniwersytecki Szpital Kliniczny w Olsztynie'),
(42385, 36099, 'no_lang_code', 'name', 'Tolero Pharmaceuticals (United States)'),
(42386, 36100, 'en', 'name', 'University Hospital St. Marina'),
(42387, 36101, 'it', 'name', 'Azienda Ospedaliera di Valtellina e Valchiavenna'),
(42388, 36102, 'no_lang_code', 'name', 'Value Frontier (Japan)'),
(42389, 36103, 'no_lang_code', 'name', 'Beijing VDJBio (China)'),
(42390, 36104, 'en', 'name', 'Islamic Azad University of Shahreza'),
(42391, 36105, 'en', 'name', 'VIA University College'),
(42392, 36106, 'no_lang_code', 'name', 'Vibrant Data (United States)'),
(42393, 36107, 'en', 'name', 'LUdeS University'),
(42394, 36107, 'it', 'name', 'Libera Universita degli Studi di Scienze Umane e Tecnologiche di Lugano'),
(42395, 36108, 'en', 'name', 'Villa Torri Hospital'),
(42396, 36109, 'en', 'name', 'Vinzenz Pallotti Hospital Bensberg'),
(42397, 36110, 'no_lang_code', 'name', 'Virttu Biologics (United Kingdom)'),
(42398, 36111, 'de', 'name', 'St. Remigius Krankenhaus Opladen'),
(42399, 36112, 'no_lang_code', 'name', 'Xiamen Tobacco Industry (China)'),
(42400, 36113, 'no_lang_code', 'name', 'Vitacress (United Kingdom)'),
(42401, 36114, 'no_lang_code', 'name', 'Viva Biotech (China)'),
(42402, 36115, 'en', 'name', 'Volgograd State Agricultural University'),
(42403, 36116, 'en', 'name', 'Western Galilee College'),
(42404, 36116, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ גליל ×ž×¢×Ø×‘×™'),
(42405, 36117, 'no_lang_code', 'name', 'Hangzhou Xixi hospital'),
(42406, 36118, 'en', 'name', 'Xuzhou Children Hospital'),
(42407, 36119, 'no_lang_code', 'name', 'Wakaba Hospital'),
(42408, 36120, 'no_lang_code', 'name', 'Detec (Norway)'),
(42409, 36121, 'no_lang_code', 'name', 'Kihoku hospital'),
(42410, 36122, 'no_lang_code', 'name', 'Wired (Japan)'),
(42411, 36123, 'no_lang_code', 'name', 'York Osteoarchaeology (United Kingdom)'),
(42412, 36124, 'no_lang_code', 'name', 'Waters (China)'),
(42413, 36125, 'en', 'name', 'Yangpu Hospital of Tongji University'),
(42414, 36126, 'no_lang_code', 'name', 'WellSeek (United States)'),
(42415, 36127, 'no_lang_code', 'name', 'Welspun (India)'),
(42416, 36128, 'no_lang_code', 'name', 'Yashoda Hospital'),
(42417, 36129, 'tr', 'name', 'Yunus Emre Hastanesi'),
(42418, 36130, 'en', 'name', 'Yemeni Jordanian University'),
(42419, 36131, 'en', 'name', 'Yeungjin College'),
(42420, 36131, 'ko', 'name', 'ģ˜ģ§„ģ „ė¬øėŒ€ķ•™'),
(42421, 36132, 'en', 'name', 'Wuhan Technical College of Communications'),
(42422, 36133, 'no_lang_code', 'name', 'Lee''s Pharmaceutical (China)'),
(42423, 36134, 'en', 'name', 'Zhejiang DongFang Vocational and Technical College'),
(42424, 36135, 'no_lang_code', 'name', 'Zebra Biologics (United States)'),
(42425, 36136, 'no_lang_code', 'name', 'Wuhan YZY Biopharma (China)'),
(42426, 36137, 'no_lang_code', 'name', 'Yonsei Sarang Hospital'),
(42427, 36138, 'no_lang_code', 'name', 'Zhejiang Hisun Pharmaceutical (China)'),
(42428, 36139, 'en', 'name', 'Zefat Academic College'),
(42429, 36140, 'en', 'name', 'Wujiang District People''s Hospital'),
(42430, 36140, 'zh', 'name', 'å“ę±Ÿåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(42431, 36141, 'en', 'name', 'Boai Hospital of Zhongshan'),
(42432, 36141, 'zh', 'name', 'äø­å±±åø‚åšēˆ±åŒ»é™¢'),
(42433, 36142, 'en', 'name', 'Ahmed Bin Mohammed Military College'),
(42434, 36143, 'no_lang_code', 'name', 'AHR (United Kingdom)'),
(42435, 36144, 'no_lang_code', 'name', 'Zhoushan Hospital'),
(42436, 36145, 'en', 'name', 'Wuxi People''s Hospital'),
(42437, 36146, 'no_lang_code', 'name', 'Adaptive Intelligent Systems (United States)'),
(42438, 36147, 'no_lang_code', 'name', 'WuXi AppTec (China)'),
(42439, 36148, 'no_lang_code', 'name', 'WuXiPRA (China)'),
(42440, 36149, 'no_lang_code', 'name', 'Allinea Software (United Kingdom)'),
(42441, 36150, 'no_lang_code', 'name', 'Xeme Biopharma (United States)'),
(42442, 36151, 'en', 'name', 'First Hospital of Xi''an'),
(42443, 36152, 'en', 'name', 'Akron Council of Engineering and Scientific Societies'),
(42444, 36153, 'en', 'name', 'American Society for Eighteenth-Century Studies'),
(42445, 36154, 'no_lang_code', 'name', 'Brook Lyndhurst (United Kingdom)'),
(42446, 36155, 'no_lang_code', 'name', 'BCL Technologies (United States)'),
(42447, 36156, 'fr', 'name', 'CƩgep Marie-Victorin'),
(42448, 36157, 'en', 'name', 'Association of Minority Health Professions Schools'),
(42449, 36158, 'no_lang_code', 'name', 'Chaotic.com (United States)'),
(42450, 36159, 'en', 'name', 'ASCE Foundation'),
(42451, 36160, 'en', 'name', 'Colorado Wyoming Academy of Science'),
(42452, 36161, 'en', 'name', 'Brazilian Agricultural Research Corporation'),
(42453, 36161, 'pt', 'name', 'Empresa Brasileira de Pesquisa AgropecuƔria'),
(42454, 36162, 'en', 'name', 'National Mississippi River Museum & Aquarium'),
(42455, 36163, 'no_lang_code', 'name', 'Imaging Technology Consulting (United States)'),
(42456, 36164, 'en', 'name', 'Energy Agency for Southeast'),
(42457, 36165, 'no_lang_code', 'name', 'EY Technologies (United States)'),
(42458, 36166, 'no_lang_code', 'name', 'Engineering Research & Analysis (United States)'),
(42459, 36167, 'no_lang_code', 'name', 'FlexEnable (United Kingdom)'),
(42460, 36168, 'no_lang_code', 'name', 'Flex (Canada)'),
(42461, 36169, 'no_lang_code', 'name', 'Scott Group Studio (United States)'),
(42462, 36170, 'no_lang_code', 'name', 'Environmental Resources Management (United Kingdom)'),
(42463, 36171, 'en', 'name', 'Fort Ticonderoga Association'),
(42464, 36172, 'en', 'name', 'Friends of Independence National Historical Park'),
(42465, 36173, 'no_lang_code', 'name', 'Retriev Technologies (United States)'),
(42466, 36174, 'no_lang_code', 'name', 'PepsiCo (United Kingdom)'),
(42467, 36175, 'no_lang_code', 'name', 'Ubitech (Greece)'),
(42468, 36176, 'no_lang_code', 'name', 'Fluenta (Norway)'),
(42469, 36177, 'no_lang_code', 'name', 'Fobox (Norway)'),
(42470, 36178, 'en', 'name', 'Atlanta Film Festival'),
(42471, 36179, 'en', 'name', 'Management Research Institute'),
(42472, 36180, 'en', 'name', 'HBCU Library Alliance'),
(42473, 36181, 'en', 'name', 'Processors and Growers Research Organisation'),
(42474, 36182, 'no_lang_code', 'name', 'Rocksource (Norway)'),
(42475, 36183, 'no_lang_code', 'name', 'Matrix Engineering (United States)'),
(42476, 36184, 'en', 'name', 'Garden Organic'),
(42477, 36185, 'no_lang_code', 'name', 'Reliable Software Resources (United States)'),
(42478, 36186, 'en', 'name', 'International Association for Comparative Research on Leukemia and Related Diseases'),
(42479, 36187, 'no_lang_code', 'name', 'Micropply (United Kingdom)'),
(42480, 36188, 'no_lang_code', 'name', 'S2G Biochem (Canada)'),
(42481, 36189, 'en', 'name', 'Northern College'),
(42482, 36190, 'no_lang_code', 'name', 'Simitive (United Kingdom)'),
(42483, 36191, 'en', 'name', 'Rowan College at Burlington County'),
(42484, 36192, 'sk', 'name', 'SlovenskĆ” SpoločnosÅ„ pre Kvalitu'),
(42485, 36193, 'no_lang_code', 'name', 'KLRU-TV'),
(42486, 36194, 'no_lang_code', 'name', 'Ervik & SƦvik (Norway)'),
(42487, 36195, 'en', 'name', 'Offshore Renewable Energy Catapult'),
(42488, 36196, 'en', 'name', 'Small and Medium Enterprises Development Organization'),
(42489, 36197, 'en', 'name', 'Oregon International Council'),
(42490, 36198, 'no_lang_code', 'name', 'Lein Applied Diagnostics (United Kingdom)'),
(42491, 36199, 'no', 'name', 'Foreningen GranittRock'),
(42492, 36200, 'en', 'name', 'Utah Geological Survey'),
(42493, 36201, 'no_lang_code', 'name', 'Tubądzin (Poland)'),
(42494, 36202, 'no_lang_code', 'name', 'Kanazawa Hospital'),
(42495, 36202, 'ja', 'name', '金沢病院'),
(42496, 36203, 'no_lang_code', 'name', 'Danko Hodowla Roślin (Poland)'),
(42497, 36204, 'en', 'name', 'Weisman Art Museum'),
(42498, 36205, 'no_lang_code', 'name', 'A&A Biotechnology (Poland)'),
(42499, 36206, 'no_lang_code', 'name', 'Strainoptics (United States)'),
(42500, 36207, 'no_lang_code', 'name', 'Ogrody Dankiewicz (Poland)'),
(42501, 36208, 'no_lang_code', 'name', 'Abraxas Olgierd Jeremiasz (Poland)'),
(42502, 36209, 'en', 'name', 'Swedish Chemical Society'),
(42503, 36210, 'en', 'name', 'Academic Center of Medicine'),
(42504, 36211, 'no_lang_code', 'name', 'Cybid (Poland)'),
(42505, 36212, 'no_lang_code', 'name', 'Adal (Poland)'),
(42506, 36213, 'no_lang_code', 'name', 'Autocomp Management (Poland)'),
(42507, 36214, 'no_lang_code', 'name', 'TSO Logic (Canada)'),
(42508, 36215, 'no_lang_code', 'name', 'Autosan (Poland)'),
(42509, 36216, 'no_lang_code', 'name', 'D.A. Glass (Poland)'),
(42510, 36217, 'no_lang_code', 'name', 'Adamed (Poland)'),
(42511, 36218, 'no_lang_code', 'name', 'Damel (Poland)'),
(42512, 36219, 'no_lang_code', 'name', 'Agat (Poland)'),
(42513, 36220, 'no_lang_code', 'name', 'Wavefront (United States)'),
(42514, 36221, 'no_lang_code', 'name', 'FinnMedi (Finland)'),
(42515, 36222, 'en', 'name', 'Wayne County Historical Society'),
(42516, 36223, 'no_lang_code', 'name', 'Deep Ocean Technology (Poland)'),
(42517, 36224, 'no_lang_code', 'name', 'Awat (Poland)'),
(42518, 36225, 'en', 'name', 'Polish Wood Cluster'),
(42519, 36226, 'no_lang_code', 'name', 'Polmlek (Poland)'),
(42520, 36227, 'no_lang_code', 'name', 'Demetrix (Poland)'),
(42521, 36228, 'no_lang_code', 'name', 'Balton (Poland)'),
(42522, 36229, 'en', 'name', 'Dream Adaptive Recreation'),
(42523, 36230, 'en', 'name', 'Akces Lab'),
(42524, 36231, 'no_lang_code', 'name', 'Albatros Aluminium (Poland)'),
(42525, 36232, 'no_lang_code', 'name', 'BioMaxima (Poland)'),
(42526, 36233, 'en', 'name', 'Habitat for Humanity'),
(42527, 36234, 'en', 'name', 'Aeris Futuro Foundation'),
(42528, 36235, 'no_lang_code', 'name', 'BioLab Innovative Research Technologies (Poland)'),
(42529, 36236, 'en', 'name', 'Nobody’s Children Foundation'),
(42530, 36237, 'no_lang_code', 'name', 'Alimetrics (Finland)'),
(42531, 36238, 'no_lang_code', 'name', 'Polish Armaments Group (Poland)'),
(42532, 36239, 'no_lang_code', 'name', 'E-Test (Poland)'),
(42533, 36240, 'pl', 'name', 'Fundacja Ewy Błaszczyk Akogo'),
(42534, 36241, 'no_lang_code', 'name', 'Hydromega (Poland)'),
(42535, 36242, 'no_lang_code', 'name', 'Allstar PZL Glider (Poland)'),
(42536, 36243, 'no_lang_code', 'name', 'IMC Engineering Poland (Poland)'),
(42537, 36244, 'pl', 'name', 'Ogród Zoologiczny w Krakowie'),
(42538, 36245, 'no_lang_code', 'name', 'Egovita (Poland)'),
(42539, 36246, 'no_lang_code', 'name', 'Blue Dot Solutions (Poland)'),
(42540, 36247, 'no_lang_code', 'name', 'Alstom (Poland)'),
(42541, 36248, 'no_lang_code', 'name', 'Icopal (Poland)'),
(42542, 36249, 'en', 'name', 'Unit for Social Innovation and Research Shipyard'),
(42543, 36250, 'no_lang_code', 'name', 'Ekopop (Poland)'),
(42544, 36251, 'no_lang_code', 'name', 'Alta (Poland)'),
(42545, 36252, 'no_lang_code', 'name', 'ImagineRT (Poland)'),
(42546, 36253, 'no_lang_code', 'name', 'EL-Automatyka (Poland)'),
(42547, 36254, 'no_lang_code', 'name', 'Ele-DriveCo (Poland)'),
(42548, 36255, 'no_lang_code', 'name', 'Alwernia (Poland)'),
(42549, 36256, 'no_lang_code', 'name', 'AM Technologies (Poland)'),
(42550, 36257, 'pl', 'name', 'Centrum Medyczne iMed24'),
(42551, 36258, 'no_lang_code', 'name', 'Electric System & Laser Technology (Poland)'),
(42552, 36259, 'no_lang_code', 'name', 'Budimex (Poland)'),
(42553, 36260, 'no_lang_code', 'name', 'Impact Clean Power Technology (Poland)'),
(42554, 36261, 'en', 'name', 'Praesterno Foundation'),
(42555, 36262, 'no_lang_code', 'name', 'Budopex (Poland)'),
(42556, 36263, 'no_lang_code', 'name', 'Elektrobudowa (Poland)'),
(42557, 36264, 'en', 'name', 'American Heart of Poland'),
(42558, 36265, 'en', 'name', 'TechSoup'),
(42559, 36266, 'no_lang_code', 'name', 'Elhand Transformatory (Poland)'),
(42560, 36267, 'no_lang_code', 'name', 'Eltcrac System (Poland)'),
(42561, 36268, 'en', 'name', 'Free and Open Source Software Foundation'),
(42562, 36269, 'no_lang_code', 'name', 'AMZ (Poland)'),
(42563, 36270, 'no_lang_code', 'name', 'Polski Holding Obronny (Poland)'),
(42564, 36271, 'no_lang_code', 'name', 'Galwes (Poland)'),
(42565, 36272, 'no_lang_code', 'name', 'Innovations for Heart and Vessels (Poland)'),
(42566, 36273, 'en', 'name', 'Carolinas HealthCare Foundation'),
(42567, 36274, 'no_lang_code', 'name', 'Gascontrol Polska'),
(42568, 36275, 'no_lang_code', 'name', 'Instar (Poland)'),
(42569, 36276, 'no_lang_code', 'name', 'Gemalto (Poland)'),
(42570, 36277, 'no_lang_code', 'name', 'Cemad (Poland)'),
(42571, 36278, 'no_lang_code', 'name', 'Celsa (Poland)'),
(42572, 36279, 'en', 'name', 'Centres for Economic Development, Transport and the Environment'),
(42573, 36279, 'fi', 'name', 'Elinkeino-, liikenne- ja ympƤristƶkeskukset'),
(42574, 36279, 'sv', 'name', 'NƤrings- Trafik- och Miljƶcentralen'),
(42575, 36280, 'no_lang_code', 'name', 'Armada (Poland)'),
(42576, 36281, 'no_lang_code', 'name', 'Enel (Poland)'),
(42577, 36282, 'no_lang_code', 'name', 'Astronika (Poland)'),
(42578, 36283, 'no_lang_code', 'name', 'Enigma Systemy Ochrony Informacji (Poland)'),
(42579, 36284, 'no_lang_code', 'name', 'General Motors (Poland)'),
(42580, 36285, 'en', 'name', 'Institute of Agricultural and Food Biotechnology'),
(42581, 36286, 'no_lang_code', 'name', 'Ente (Poland)'),
(42582, 36287, 'no_lang_code', 'name', 'IBSS BIOMED (Poland)'),
(42583, 36288, 'pl', 'name', 'Centrum Medyczne Aurismed'),
(42584, 36289, 'no_lang_code', 'name', 'Genomed (Poland)'),
(42585, 36290, 'no_lang_code', 'name', 'Auto Galeria (Poland)'),
(42586, 36291, 'no_lang_code', 'name', 'Esri Polska (Poland)'),
(42587, 36292, 'en', 'name', 'Institute of Ceramics and Building Materials'),
(42588, 36293, 'en', 'name', 'Central Finland Health Care District'),
(42589, 36293, 'fi', 'name', 'Keski-Suomen keskussairaala'),
(42590, 36294, 'no_lang_code', 'name', 'Environmental Tectonics (Poland)'),
(42591, 36295, 'en', 'name', 'Institute of Geography and Spatial Organization, Polish Academy of Sciences'),
(42592, 36296, 'pl', 'name', 'Instytut Historii im. Tadeusza Manteuffla'),
(42593, 36296, 'en', 'name', 'Tadeusz Manteuffel Institute of History'),
(42594, 36297, 'en', 'name', 'Institute of Philosophy and Sociology'),
(42595, 36297, 'pl', 'name', 'Instytut Filozofii i Socjologii'),
(42596, 36298, 'no_lang_code', 'name', 'Fabryka Armatur Swarzędz (Poland)'),
(42597, 36299, 'no_lang_code', 'name', 'Global Colors Polska (Poland)'),
(42598, 36300, 'no_lang_code', 'name', 'Sefako (Poland)'),
(42599, 36301, 'pl', 'name', 'Centrum Badań i Dozoru Górnictwa Podziemnego'),
(42600, 36302, 'en', 'name', 'Institute of Theoretical and Applied Informatics'),
(42601, 36302, 'pl', 'name', 'Instytut Informatyki Teoretycznej i Stosowanej Polskiej Akademii Nauk'),
(42602, 36303, 'en', 'name', 'Franciszek Górski Institute of Plant Physiology'),
(42603, 36303, 'pl', 'name', 'Instytut Fizjologii Roślin im. Franciszek Górskiego'),
(42604, 36304, 'pl', 'name', 'Centrum Badań i Innowacji Pro-Akademia'),
(42605, 36305, 'no_lang_code', 'name', 'DMG Mori (Poland)'),
(42606, 36306, 'pl', 'name', 'Instytut Języka Polskiego Polskiej Akademii Nauk'),
(42607, 36306, 'en', 'name', 'The Institute of the Polish Language of the Polish Academy of Sciences'),
(42608, 36307, 'no_lang_code', 'name', 'GMV Innovating Solutions (Poland)'),
(42609, 36308, 'en', 'name', 'Institute of Genetics and Animal Biotechnology of the Polish Academy of Sciences'),
(42610, 36308, 'pl', 'name', 'Instytut Genetyki i Biotechnologii Zwierząt Polskiej Akademii Nauk'),
(42611, 36309, 'pl', 'name', 'Centrum Cyfrowe Projekt'),
(42612, 36310, 'en', 'name', 'Institute of Mediterranean and Oriental Cultures'),
(42613, 36310, 'pl', 'name', 'Instytut Kultur Śródziemnomorskich i Orientalnych Polskiej Akademii Nauk'),
(42614, 36311, 'en', 'name', 'Institute of Mathematical Machines'),
(42615, 36312, 'pl', 'name', 'Centrum Leczenia Oparzeń'),
(42616, 36313, 'pl', 'name', 'Instytut Mechaniki Górotworu'),
(42617, 36313, 'en', 'name', 'Strata Mechanics Research Institute');
INSERT INTO `ror_settings` VALUES
(42618, 36314, 'en', 'name', 'Institute of Security Technologies MORATEX'),
(42619, 36315, 'no_lang_code', 'name', 'TDJ (Poland)'),
(42620, 36316, 'no_lang_code', 'name', 'Gonar (Poland)'),
(42621, 36317, 'no_lang_code', 'name', 'FAS (Poland)'),
(42622, 36318, 'no_lang_code', 'name', 'FCA (Poland)'),
(42623, 36319, 'no_lang_code', 'name', 'Finnish Consulting Group (Finland)'),
(42624, 36320, 'no_lang_code', 'name', 'Górnośląski Park Przemysłowy (Poland)'),
(42625, 36321, 'en', 'name', 'Finnish Society for Nutrition Research'),
(42626, 36322, 'no_lang_code', 'name', 'Grupa Azoty (Poland)'),
(42627, 36323, 'no_lang_code', 'name', 'Mahle (Poland)'),
(42628, 36324, 'pl', 'name', 'Instytut Metalurgii Żelaza im. Stanisława Staszica'),
(42629, 36324, 'en', 'name', 'Stanislaw Staszic Institute for Ferrous Metallurgy'),
(42630, 36325, 'no_lang_code', 'name', 'Group Image (Poland)'),
(42631, 36326, 'en', 'name', 'MaineGeneral Medical Center'),
(42632, 36327, 'no_lang_code', 'name', 'GTM Mobil (Poland)'),
(42633, 36328, 'pl', 'name', 'Łukasiewicz Instytut Napędów i Maszyn Elektrycznych KOMEL'),
(42634, 36328, 'en', 'name', 'Łukasiewicz Research Network - Institute of Electrical Drives & Machines KOMEL'),
(42635, 36329, 'no_lang_code', 'name', 'Inter Metal (Poland)'),
(42636, 36330, 'no_lang_code', 'name', 'Hardsoft Microprocessor Systems (Poland)'),
(42637, 36331, 'pl', 'name', 'Centrum Słuchu i Mowy'),
(42638, 36332, 'en', 'name', 'New Chemical Syntheses Institute'),
(42639, 36333, 'no_lang_code', 'name', 'Medcore (Poland)'),
(42640, 36334, 'no_lang_code', 'name', 'Harpo (Poland)'),
(42641, 36335, 'no_lang_code', 'name', 'Izolacja-Jarocin (Poland)'),
(42642, 36336, 'en', 'name', 'Centre for International Relations'),
(42643, 36337, 'no_lang_code', 'name', 'Medgal (Poland)'),
(42644, 36338, 'no_lang_code', 'name', 'Hart Tech (Poland)'),
(42645, 36339, 'no_lang_code', 'name', 'Ciech (Poland)'),
(42646, 36340, 'no_lang_code', 'name', 'Azet Products (Poland)'),
(42647, 36341, 'no_lang_code', 'name', 'Metal Expert (Poland)'),
(42648, 36342, 'no_lang_code', 'name', 'JAS Technologies (Poland)'),
(42649, 36343, 'en', 'name', 'Metro Area Community Empowerment'),
(42650, 36344, 'no_lang_code', 'name', 'Jastrzębska Spółka Węglowa (Poland)'),
(42651, 36345, 'no_lang_code', 'name', 'Helioenergia (Poland)'),
(42652, 36346, 'en', 'name', 'Maksymilian Pluta Institute of Applied Optics'),
(42653, 36347, 'no_lang_code', 'name', 'Centralny Ośrodek Informatyki Górnictwa'),
(42654, 36348, 'no_lang_code', 'name', 'MetsƤhallitus (Finland)'),
(42655, 36349, 'no_lang_code', 'name', 'Syskon (Poland)'),
(42656, 36350, 'en', 'name', 'Institute of Paleobiology'),
(42657, 36350, 'pl', 'name', 'Instytut Paleobiologii'),
(42658, 36351, 'no_lang_code', 'name', 'Jenox (Poland)'),
(42659, 36352, 'no_lang_code', 'name', 'Mexeo (Poland)'),
(42660, 36353, 'no_lang_code', 'name', 'MGGP Aero (Poland)'),
(42661, 36354, 'en', 'name', 'Witold Stefański Institute of Parasitology'),
(42662, 36354, 'pl', 'name', 'Witolda Stefańskiego Instytut Parazytologii PAN'),
(42663, 36355, 'no_lang_code', 'name', 'JHJ (Poland)'),
(42664, 36356, 'no_lang_code', 'name', 'Miejskie Przedsiebiorstwo Wodociągów i Kanalizacji (Poland)'),
(42665, 36357, 'no_lang_code', 'name', 'Pedmo (Poland)'),
(42666, 36358, 'en', 'name', 'Institute of Environmental Engineering'),
(42667, 36358, 'pl', 'name', 'Instytut Podstaw Inżynierii Środowiska Polskiej Akademii Nauk'),
(42668, 36359, 'no_lang_code', 'name', 'HOBAS (Poland)'),
(42669, 36360, 'no_lang_code', 'name', 'Katowice Coal Holding (Poland)'),
(42670, 36361, 'en', 'name', 'Pellervo Economic Research'),
(42671, 36362, 'no_lang_code', 'name', 'Peszke (Poland)'),
(42672, 36363, 'no_lang_code', 'name', 'KenBIT (Poland)'),
(42673, 36364, 'no_lang_code', 'name', 'Mikanit (Poland)'),
(42674, 36365, 'en', 'name', 'Institute of Industrial Organic Chemistry'),
(42675, 36366, 'no_lang_code', 'name', 'Mine Master (Poland)'),
(42676, 36367, 'pl', 'name', 'Instytut Przemysłu Skórzanego'),
(42677, 36368, 'no_lang_code', 'name', 'KFB Polska (Poland)'),
(42678, 36369, 'en', 'name', 'Institute of Psychology'),
(42679, 36369, 'pl', 'name', 'Instytut Psychologii Polska Akademia Nauk'),
(42680, 36370, 'no_lang_code', 'name', 'Radwag Balances and Scales (Poland)'),
(42681, 36371, 'no_lang_code', 'name', 'Kirchhoff (Poland)'),
(42682, 36372, 'no_lang_code', 'name', 'Pit Radwar (Poland)'),
(42683, 36373, 'no_lang_code', 'name', 'MSP (Poland)'),
(42684, 36374, 'en', 'name', 'Coal Mining Museum in Zabrze'),
(42685, 36375, 'en', 'name', 'Institute of Systematics and Evolution of Animals'),
(42686, 36375, 'pl', 'name', 'Instytut Systematyki i Ewolucji Zwierząt PAN'),
(42687, 36376, 'no_lang_code', 'name', 'Kongsberg Automotive (Poland)'),
(42688, 36377, 'no_lang_code', 'name', 'Rejonowe Przedsiębiorstwo Wodociągów i Kanalizacji W Sosnowcu (Poland)'),
(42689, 36378, 'en', 'name', 'Institute of Art'),
(42690, 36378, 'pl', 'name', 'Instytut Sztuki Polskiej Akademii Nauk'),
(42691, 36379, 'no_lang_code', 'name', 'kopex (Poland)'),
(42692, 36380, 'no_lang_code', 'name', 'Rek Swed (Poland)'),
(42693, 36381, 'pl', 'name', 'Instytut Technik Innowacyjnych EMAG'),
(42694, 36381, 'en', 'name', 'Łukasiewicz Research Network - Institute of Innovative Technologies EMAG'),
(42695, 36382, 'no_lang_code', 'name', 'Korporacja Wschód (Poland)'),
(42696, 36383, 'no_lang_code', 'name', 'Remstat (Poland)'),
(42697, 36384, 'en', 'name', 'Institute of Medical Technology and Equipment'),
(42698, 36385, 'no_lang_code', 'name', 'Krajowa Spółka Cukrowa (Poland)'),
(42699, 36386, 'no_lang_code', 'name', 'PKP Group (Poland)'),
(42700, 36387, 'en', 'name', 'Institute of Technology and Life Sciences'),
(42701, 36388, 'no_lang_code', 'name', 'Nafra Polska (Poland)'),
(42702, 36389, 'en', 'name', 'Institute for the Languages of Finland'),
(42703, 36390, 'no_lang_code', 'name', 'Nano Carbon (Poland)'),
(42704, 36391, 'no_lang_code', 'name', 'Pesa (Poland)'),
(42705, 36392, 'no_lang_code', 'name', 'Krakodlew (Poland)'),
(42706, 36393, 'no_lang_code', 'name', 'NanoVelos (Poland)'),
(42707, 36394, 'no_lang_code', 'name', 'Robotics Inventions (Poland)'),
(42708, 36395, 'no_lang_code', 'name', 'Pol-Nil (Poland)'),
(42709, 36396, 'pl', 'name', 'Stowarzyszenie Nowa Wspólna Droga'),
(42710, 36397, 'en', 'name', 'Krakow Cardiovascular Research Institute'),
(42711, 36398, 'no_lang_code', 'name', 'Pol-Spec-Tech-Service (Poland)'),
(42712, 36399, 'en', 'name', 'Medenta'),
(42713, 36400, 'no_lang_code', 'name', 'Hutton Energy (Poland)'),
(42714, 36401, 'no_lang_code', 'name', 'Studio Promocji MIT (Poland)'),
(42715, 36402, 'en', 'name', 'United Spinal Association'),
(42716, 36403, 'en', 'name', 'National Wheelchair Softball Association'),
(42717, 36404, 'no_lang_code', 'name', 'Krzysztof Kucharczyk Techniki Elektroforetyczne (Poland)'),
(42718, 36405, 'no_lang_code', 'name', 'Ronkowski (Poland)'),
(42719, 36406, 'no_lang_code', 'name', 'Rosomak (Poland)'),
(42720, 36407, 'no_lang_code', 'name', 'Polprek (Poland)'),
(42721, 36408, 'no_lang_code', 'name', 'Kubara Lamina (Poland)'),
(42722, 36409, 'no_lang_code', 'name', 'NeoSentio (Poland)'),
(42723, 36410, 'no_lang_code', 'name', 'Supra Elco (Poland)'),
(42724, 36411, 'no_lang_code', 'name', 'Sweco (Poland)'),
(42725, 36412, 'en', 'name', 'Polish Seed Trade Association'),
(42726, 36413, 'fi', 'name', 'Salla'),
(42727, 36414, 'no_lang_code', 'name', 'Polonia Aero (Poland)'),
(42728, 36415, 'no_lang_code', 'name', 'Neuro Device (Poland)'),
(42729, 36416, 'no_lang_code', 'name', 'Synthos (Poland)'),
(42730, 36417, 'pl', 'name', 'Polskie Forum Osób Niepełnosprawnych'),
(42731, 36418, 'no_lang_code', 'name', 'Zenit (Poland)'),
(42732, 36419, 'no_lang_code', 'name', 'Systherm (Poland)'),
(42733, 36420, 'no_lang_code', 'name', 'Polskie Górnictwo Naftowe i Gazownictwo (Poland)'),
(42734, 36421, 'en', 'name', 'Niilo MƤki institute'),
(42735, 36422, 'en', 'name', 'Laboratory of Molecular Genetics'),
(42736, 36423, 'en', 'name', 'Sami Parliament of Finland'),
(42737, 36424, 'no_lang_code', 'name', 'Tauron (Poland)'),
(42738, 36425, 'pl', 'name', 'Polskie Sieci Elektroenergetyczne'),
(42739, 36426, 'no_lang_code', 'name', 'Nowoczesne Techniki Instalacyjne (Poland)'),
(42740, 36427, 'no_lang_code', 'name', 'Taxus (Poland)'),
(42741, 36428, 'no_lang_code', 'name', 'Seco Warwick (Poland)'),
(42742, 36429, 'no_lang_code', 'name', 'Laboratorium Kosmetyczne Dr Irena Eris (Poland)'),
(42743, 36430, 'no_lang_code', 'name', 'Numerola (Finland)'),
(42744, 36431, 'no_lang_code', 'name', 'Techglass (Poland)'),
(42745, 36432, 'en', 'name', 'Labour Institute for Economic Research'),
(42746, 36433, 'pl', 'name', 'Technika Podwodna (Poland)'),
(42747, 36434, 'no_lang_code', 'name', 'Sensor Tech (Poland)'),
(42748, 36435, 'no_lang_code', 'name', 'Lars (Poland)'),
(42749, 36436, 'no_lang_code', 'name', 'Kawmet (Poland)'),
(42750, 36437, 'pl', 'name', 'Polskie Stowarzyszenie Korozyjne'),
(42751, 36438, 'no_lang_code', 'name', 'Tele-Fonika Kable (Poland)'),
(42752, 36439, 'no_lang_code', 'name', 'Sevitel (Poland)'),
(42753, 36440, 'no_lang_code', 'name', 'Laska Technika Przemysłowa (Poland)'),
(42754, 36441, 'no_lang_code', 'name', 'Le Loch Healthcare (Poland)'),
(42755, 36442, 'no_lang_code', 'name', 'Polwax (Poland)'),
(42756, 36443, 'no_lang_code', 'name', 'Drawski (Poland)'),
(42757, 36444, 'no_lang_code', 'name', 'Telzas (Poland)'),
(42758, 36445, 'no_lang_code', 'name', 'LGC Standards (Poland)'),
(42759, 36446, 'no_lang_code', 'name', 'Tercja Systemy Pomiarowe i Komputerowe (Poland)'),
(42760, 36447, 'no_lang_code', 'name', 'Kulej (Poland)'),
(42761, 36448, 'en', 'name', 'Citizens Network Watchdog'),
(42762, 36449, 'no_lang_code', 'name', 'Termall (Poland)'),
(42763, 36450, 'en', 'name', 'LIKES – Foundation for Sport and Health Sciences'),
(42764, 36451, 'no_lang_code', 'name', 'Łódzki Regionalny Park Naukowo-Technologiczny (Poland)'),
(42765, 36452, 'en', 'name', 'National Federation of Polish NGOs'),
(42766, 36453, 'no_lang_code', 'name', 'TRAK (Poland)'),
(42767, 36454, 'no_lang_code', 'name', 'Sigma (Poland)'),
(42768, 36455, 'no_lang_code', 'name', 'Magister Solutions (Finland)'),
(42769, 36456, 'no_lang_code', 'name', 'Osrodek Konstrukcyjno Badawczy (Poland)'),
(42770, 36457, 'fi', 'name', 'VƤestƶliitto'),
(42771, 36458, 'no_lang_code', 'name', 'Silcare (Poland)'),
(42772, 36459, 'no_lang_code', 'name', 'Oltis Polska (Poland)'),
(42773, 36460, 'no_lang_code', 'name', 'OncoArendi Therapeutics (Poland)'),
(42774, 36461, 'no_lang_code', 'name', 'Silesia Oil (Poland)'),
(42775, 36462, 'en', 'name', 'Finnish Jazz & Pop Archive'),
(42776, 36463, 'en', 'name', 'Adaptive Sports Northwest'),
(42777, 36464, 'no_lang_code', 'name', 'Premium Rosa (Poland)'),
(42778, 36465, 'no_lang_code', 'name', 'Sirc (Poland)'),
(42779, 36466, 'no_lang_code', 'name', 'Promost Consulting (Poland)'),
(42780, 36467, 'no_lang_code', 'name', 'Orlen (Poland)'),
(42781, 36467, 'pl', 'name', 'Polski Koncern Naftowy Orlen'),
(42782, 36468, 'en', 'name', 'Finnish Youth Research Society'),
(42783, 36469, 'no_lang_code', 'name', 'Thermaflex (Poland)'),
(42784, 36470, 'en', 'name', 'USA Boccia'),
(42785, 36471, 'en', 'name', 'Research and Development Centre for Wood-Based Panels'),
(42786, 36472, 'no_lang_code', 'name', 'Innolink (Finland)'),
(42787, 36473, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Finland)'),
(42788, 36474, 'no_lang_code', 'name', 'Thermolab (Poland)'),
(42789, 36475, 'no_lang_code', 'name', 'Ośrodek Badawczo-Rozwojowy Urządzeń Mechanicznych (Poland)'),
(42790, 36476, 'no_lang_code', 'name', 'Vipharm (Poland)'),
(42791, 36477, 'no_lang_code', 'name', 'Polon (Poland)'),
(42792, 36478, 'no_lang_code', 'name', 'VIS Systems (Poland)'),
(42793, 36479, 'no_lang_code', 'name', 'Thoni Alutec (Poland)'),
(42794, 36480, 'no_lang_code', 'name', 'Softhis (Poland)'),
(42795, 36481, 'no_lang_code', 'name', 'ASPA (Poland)'),
(42796, 36482, 'no_lang_code', 'name', 'Transformex (Poland)'),
(42797, 36483, 'no_lang_code', 'name', 'Meaning Processing (Finland)'),
(42798, 36484, 'no_lang_code', 'name', 'TRUMPF (Poland)'),
(42799, 36485, 'no_lang_code', 'name', 'Waldrex (Poland)'),
(42800, 36486, 'no_lang_code', 'name', 'PPUH Bryk Witold Bryk (Poland)'),
(42801, 36487, 'no_lang_code', 'name', 'Wasko (Poland)'),
(42802, 36488, 'no_lang_code', 'name', 'Pachemtech (Poland)'),
(42803, 36489, 'no_lang_code', 'name', 'WB Electronics (Poland)'),
(42804, 36490, 'en', 'name', 'Paradox Sports'),
(42805, 36491, 'no_lang_code', 'name', 'Patentus (Poland)'),
(42806, 36492, 'no_lang_code', 'name', 'Armatura (Poland)'),
(42807, 36493, 'no_lang_code', 'name', 'PB Online (Poland)'),
(42808, 36494, 'no_lang_code', 'name', 'Wodociągi Kłodzkie (Poland)'),
(42809, 36495, 'no_lang_code', 'name', 'Wojas (Poland)'),
(42810, 36496, 'no_lang_code', 'name', 'PBS (Poland)'),
(42811, 36497, 'pl', 'name', 'Wojewódzki Ośrodek Medycyny Pracy'),
(42812, 36498, 'en', 'name', 'USRowing'),
(42813, 36499, 'en', 'name', 'Bialystok School of Economics'),
(42814, 36500, 'no_lang_code', 'name', 'Specodlew (Poland)'),
(42815, 36501, 'no_lang_code', 'name', 'Przedsiębiorstwo Badań Geofizycznych'),
(42816, 36502, 'no_lang_code', 'name', 'Huta Stalowa Wola (Poland)'),
(42817, 36503, 'no_lang_code', 'name', 'Polsat (Poland)'),
(42818, 36504, 'no_lang_code', 'name', 'Wojskowe Zakłady Inżynieryjne (Poland)'),
(42819, 36505, 'no_lang_code', 'name', 'Mesko (Poland)'),
(42820, 36506, 'no_lang_code', 'name', 'Hardkop (Poland)'),
(42821, 36507, 'no', 'name', 'Norsk Kjemisk Selskap'),
(42822, 36507, 'en', 'name', 'Norwegian Chemical Society'),
(42823, 36508, 'en', 'name', 'Institute of Plant Protection'),
(42824, 36509, 'en', 'name', 'Institute of Agricultural and Food Economics'),
(42825, 36510, 'no_lang_code', 'name', 'N2 Applied (Norway)'),
(42826, 36511, 'no_lang_code', 'name', 'Agra (Norway)'),
(42827, 36512, 'no_lang_code', 'name', 'PPM Robotics (Norway)'),
(42828, 36513, 'no', 'name', 'Nord-TrĆøndelag FylkesKommune'),
(42829, 36514, 'no_lang_code', 'name', 'OneCo (Norway)'),
(42830, 36515, 'no_lang_code', 'name', 'Buddy Electric (Norway)'),
(42831, 36516, 'no_lang_code', 'name', 'Skogselskapet i Oppland (Norway)'),
(42832, 36517, 'no_lang_code', 'name', 'Polyform (Norway)'),
(42833, 36518, 'no_lang_code', 'name', 'Scanwatt (Norway)'),
(42834, 36519, 'no_lang_code', 'name', 'Science and Technology Corporation (Norway)'),
(42835, 36520, 'no_lang_code', 'name', 'PetroMarker (Norway)'),
(42836, 36521, 'en', 'name', 'Sector Asset Management'),
(42837, 36522, 'no_lang_code', 'name', 'Military Communication Works No 2 (Poland)'),
(42838, 36523, 'no_lang_code', 'name', 'Military Aviation Works No. 1 (Poland)'),
(42839, 36524, 'no_lang_code', 'name', 'Zakłady Urządzeń Kotłowych Stąporków (Poland)'),
(42840, 36525, 'no_lang_code', 'name', 'Wojskowe Zakłady Motoryzacyjne (Poland)'),
(42841, 36526, 'no_lang_code', 'name', 'Zakład Budowy Urządzeń Spawalniczych (Poland)'),
(42842, 36527, 'no_lang_code', 'name', 'Zetkama (Poland)'),
(42843, 36528, 'no_lang_code', 'name', 'Złotecki (Poland)'),
(42844, 36529, 'pl', 'name', 'Stowarzyszenie Łódzki Klub Amazonka'),
(42845, 36530, 'pl', 'name', 'Wojskowy Instytut Chemii i Radiometrii'),
(42846, 36531, 'no_lang_code', 'name', 'Promar (Poland)'),
(42847, 36532, 'no_lang_code', 'name', 'Ravimed (Poland)'),
(42848, 36533, 'no_lang_code', 'name', 'ZRE Gdańsk (Poland)'),
(42849, 36534, 'en', 'name', 'Aviation Valley'),
(42850, 36535, 'en', 'name', 'Association of Polish Cities'),
(42851, 36536, 'no_lang_code', 'name', 'Przemysłowe Centrum Optyki (Poland)'),
(42852, 36537, 'en', 'name', 'Military Institute of Armament Technology'),
(42853, 36538, 'pl', 'name', 'Sieć Badawcza Łukasiewicz – Przemysłowy Instytut Motoryzacji'),
(42854, 36538, 'en', 'name', 'Łukasiewicz Research Network - Automotive Industry Institute'),
(42855, 36539, 'pl', 'name', 'Wojskowy Instytut Techniki Pancernej i Samochodowej'),
(42856, 36540, 'fi', 'name', 'Hengitysliitto'),
(42857, 36541, 'no_lang_code', 'name', 'INFOKLINIKA (Poland)'),
(42858, 36542, 'en', 'name', 'PyhƤjƤrvi Institute'),
(42859, 36543, 'en', 'name', 'Devon General Hospital'),
(42860, 36544, 'no_lang_code', 'name', 'Radiotechnika Marketing (Poland)'),
(42861, 36545, 'en', 'name', 'American University of Antigua'),
(42862, 36546, 'en', 'name', 'Dr. Everett Chalmers Regional Hospital'),
(42863, 36547, 'en', 'name', 'Eagle Ridge Hospital'),
(42864, 36548, 'en', 'name', 'Eastern Shore Memorial Hospital'),
(42865, 36549, 'en', 'name', 'Sutherland Hospital'),
(42866, 36550, 'en', 'name', 'Upper River Valley Hospital'),
(42867, 36551, 'en', 'name', 'Etobicoke General Hospital'),
(42868, 36552, 'en', 'name', 'Vernon Jubilee Hospital'),
(42869, 36553, 'en', 'name', 'University of Information Technology'),
(42870, 36553, 'pl', 'name', 'Wyższa Szkoła Technologii Informatycznych w Warszawie'),
(42871, 36554, 'en', 'name', 'University College of the Cayman Islands'),
(42872, 36555, 'no_lang_code', 'name', 'Matczak Autonadwozia (Poland)'),
(42873, 36556, 'es', 'name', 'Hospital Carlos Van Buren'),
(42874, 36557, 'no_lang_code', 'name', 'AREX (Poland)'),
(42875, 36558, 'es', 'name', 'Hospital Tobar GarcĆ­a'),
(42876, 36559, 'en', 'name', 'Thomas Embling Hospital'),
(42877, 36560, 'pl', 'name', 'Zakład Doskonalenia Zawodowego w Krakowie'),
(42878, 36561, 'en', 'name', 'Fort Saskatchewan Community Hospital'),
(42879, 36562, 'pl', 'name', 'Zakład Doświadczalny Instytutu Zootechniki'),
(42880, 36563, 'en', 'name', 'Georgetown Hospital'),
(42881, 36564, 'es', 'name', 'Hospital Naval de Puerto Williams'),
(42882, 36564, 'en', 'name', 'Naval Hospital of Puerto Williams'),
(42883, 36565, 'en', 'name', 'Wagga Wagga Base Hospital'),
(42884, 36566, 'no_lang_code', 'name', 'Cantoni (Poland)'),
(42885, 36567, 'en', 'name', 'Guelph General Hospital'),
(42886, 36568, 'en', 'name', 'New Century International Hospital for Children'),
(42887, 36569, 'no_lang_code', 'name', 'Lester (Poland)'),
(42888, 36570, 'en', 'name', 'Hillsborough Hospital'),
(42889, 36570, 'fr', 'name', 'HƓpital hillsborough'),
(42890, 36571, 'en', 'name', 'International Hospital of Bahrain'),
(42891, 36571, 'ar', 'name', 'مستؓفى Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„ŲÆŁˆŁ„ŁŠ'),
(42892, 36572, 'en', 'name', 'Beijing United Family Hospital'),
(42893, 36573, 'no_lang_code', 'name', 'Explomet (Poland)'),
(42894, 36574, 'no_lang_code', 'name', 'Uskom (Poland)'),
(42895, 36575, 'en', 'name', 'Humboldt District Hospital'),
(42896, 36576, 'no_lang_code', 'name', 'Zakład Wodociągów i Kanalizacji (Poland)'),
(42897, 36577, 'no_lang_code', 'name', 'Andre Abrasive Articles (Poland)'),
(42898, 36578, 'no_lang_code', 'name', 'Zakład Automatyki Przemysłowej (Poland)'),
(42899, 36579, 'en', 'name', 'South Bruce Grey Health Centre'),
(42900, 36580, 'en', 'name', 'Belmont Hospital'),
(42901, 36581, 'en', 'name', 'Chattagram Maa-O-Shishu Hospital Medical College'),
(42902, 36582, 'en', 'name', 'Kirkland and District Hospital'),
(42903, 36583, 'en', 'name', 'Fifth Affiliated Hospital of Xinjiang Medical University'),
(42904, 36584, 'en', 'name', 'Bowral & District Hospital'),
(42905, 36585, 'fr', 'name', 'HƓpital gƩnƩral du Lakeshore'),
(42906, 36585, 'en', 'name', 'Lakeshore General Hospital'),
(42907, 36586, 'en', 'name', 'Fuda Cancer Hospital'),
(42908, 36587, 'en', 'name', 'Calvary Hospital'),
(42909, 36588, 'en', 'name', 'Leduc Community Hospital'),
(42910, 36589, 'en', 'name', 'North East University'),
(42911, 36590, 'en', 'name', 'Lloydminster Hospital'),
(42912, 36591, 'en', 'name', 'Haikou City People''s Hospital'),
(42913, 36592, 'en', 'name', 'Medicine Hat Regional Hospital'),
(42914, 36593, 'en', 'name', 'Calvary Wakefield Hospital'),
(42915, 36594, 'en', 'name', 'St John Berchmans University College'),
(42916, 36595, 'en', 'name', 'Milton District Hospital'),
(42917, 36596, 'fr', 'name', 'HƓpital Chinois de MontrƩal,'),
(42918, 36596, 'en', 'name', 'Montreal Chinese Hospital'),
(42919, 36597, 'en', 'name', 'Camden and Campbelltown Hospitals'),
(42920, 36598, 'en', 'name', 'Norfolk General Hospital'),
(42921, 36599, 'en', 'name', 'Ethiopian Police University College'),
(42922, 36600, 'en', 'name', 'Nova Scotia Hospital'),
(42923, 36601, 'en', 'name', 'New Generation University College'),
(42924, 36602, 'en', 'name', 'Oakville-Trafalgar Memorial Hospital'),
(42925, 36603, 'en', 'name', 'Capricorn Coast Hospital'),
(42926, 36604, 'en', 'name', 'Rift Valley University'),
(42927, 36605, 'en', 'name', 'National University of Management'),
(42928, 36605, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž‡įž¶įžįž·įž‚įŸ’įžšįž”įŸ‹įž‚įŸ’įžšįž„'),
(42929, 36606, 'en', 'name', 'Modern Cancer Hospital Guangzhou'),
(42930, 36607, 'en', 'name', 'Peace Arch Hospital'),
(42931, 36608, 'en', 'name', 'Goulburn Base Hospital'),
(42932, 36609, 'en', 'name', 'Penticton Regional Hospital'),
(42933, 36610, 'en', 'name', 'Central Hospital of YaoundƩ'),
(42934, 36610, 'fr', 'name', 'HƓpital Central de YaoundƩ'),
(42935, 36611, 'en', 'name', 'Prince County Hospital'),
(42936, 36612, 'en', 'name', 'Queensway-Carleton Hospital'),
(42937, 36613, 'en', 'name', 'Limbe Provincial Hospital'),
(42938, 36614, 'en', 'name', 'Red Deer Regional Hospital'),
(42939, 36615, 'en', 'name', 'Sixth Affiliated Hospital of Xinjiang Medical University'),
(42940, 36616, 'fr', 'name', 'HƓpital gynƩco-obstƩtrique et pƩdiatrique de YaoundƩ'),
(42941, 36616, 'en', 'name', 'YaoundƩ Gynaecology, Obstetrics and Pediatrics Hospital'),
(42942, 36617, 'en', 'name', 'Richmond Hospital'),
(42943, 36618, 'fr', 'name', 'Centre Hospitalier d''Albi'),
(42944, 36619, 'en', 'name', 'Jessie McPherson Private Hospital'),
(42945, 36620, 'en', 'name', 'Aberdeen Regional Hospital'),
(42946, 36621, 'en', 'name', 'Rockyview General Hospital'),
(42947, 36622, 'es', 'name', 'Hospital San Pedro'),
(42948, 36623, 'en', 'name', 'Katherine Hospital'),
(42949, 36624, 'en', 'name', 'Sackville Memorial Hospital'),
(42950, 36625, 'en', 'name', 'Arrow Lakes Hospital'),
(42951, 36626, 'en', 'name', 'Kenvale College'),
(42952, 36627, 'en', 'name', 'Saskatchewan Hospital'),
(42953, 36628, 'en', 'name', 'Saskatoon City Hospital'),
(42954, 36629, 'en', 'name', 'Booth University College'),
(42955, 36630, 'no_lang_code', 'name', 'Xizang Minzu University'),
(42956, 36630, 'zh', 'name', 'č„æč—ę°‘ę—å­¦é™¢'),
(42957, 36631, 'fr', 'name', 'Centre Hospitalier de Gonesse'),
(42958, 36632, 'en', 'name', 'Lismore Base Hospital'),
(42959, 36633, 'en', 'name', 'Brampton Civic Hospital'),
(42960, 36634, 'en', 'name', 'South Okanagan General Hospital'),
(42961, 36635, 'en', 'name', 'Burnaby Hospital'),
(42962, 36636, 'en', 'name', 'Xinhui People''s Hospital'),
(42963, 36637, 'en', 'name', 'St. John''s Rehab Hospital'),
(42964, 36638, 'en', 'name', 'Campbellford Memorial Hospital'),
(42965, 36639, 'en', 'name', 'Canmore General Hospital'),
(42966, 36640, 'fr', 'name', 'HƓpital Sainte-Anne'),
(42967, 36640, 'en', 'name', 'Ste. Anne''s Hospital'),
(42968, 36641, 'en', 'name', 'Strathcona Community Hospital'),
(42969, 36642, 'en', 'name', 'Sturgeon Community Hospital'),
(42970, 36643, 'en', 'name', 'Surrey Memorial Hospital'),
(42971, 36644, 'en', 'name', 'The Scarborough Hospital'),
(42972, 36645, 'en', 'name', 'Paphos General Hospital'),
(42973, 36646, 'en', 'name', 'Cape Breton Regional Hospital'),
(42974, 36647, 'fr', 'name', 'HƓpital gƩnƩral de kinshasa'),
(42975, 36647, 'en', 'name', 'Kinshasa General Hospital'),
(42976, 36648, 'en', 'name', 'Centracare'),
(42977, 36649, 'en', 'name', 'Mater Misericordiae Hospital'),
(42978, 36650, 'en', 'name', 'Chedoke Hospital'),
(42979, 36651, 'en', 'name', 'Chinook Regional Hospital'),
(42980, 36652, 'en', 'name', 'Tamale Teaching Hospital'),
(42981, 36653, 'en', 'name', 'Milton Ulladulla Hospital'),
(42982, 36654, 'en', 'name', 'Concordia Hospital'),
(42983, 36655, 'en', 'name', 'University College of Agriculture and Environmental Studies'),
(42984, 36656, 'en', 'name', 'Dartmouth General Hospital'),
(42985, 36657, 'en', 'name', 'University College Lillebaelt'),
(42986, 36657, 'da', 'name', 'University College LillebƦlt'),
(42987, 36658, 'en', 'name', 'University of Professional Studies'),
(42988, 36659, 'en', 'name', 'Government Unani and Ayurvedic Degree College and Hospital'),
(42989, 36660, 'en', 'name', 'Monash Children’s Hospital'),
(42990, 36661, 'da', 'name', 'ProfessionshĆøjskolen University College Nordjylland'),
(42991, 36661, 'en', 'name', 'University College of Northern Denmark'),
(42992, 36662, 'en', 'name', 'West End Hospital'),
(42993, 36663, 'en', 'name', 'University College Absalon'),
(42994, 36664, 'en', 'name', 'Queanbeyan District Hospital'),
(42995, 36665, 'es', 'name', 'Hospital de San Bernardo'),
(42996, 36665, 'en', 'name', 'St Bernard''s Hospital'),
(42997, 36666, 'en', 'name', 'Dr. H. Gordon Roberts Hospital'),
(42998, 36667, 'no_lang_code', 'name', 'Agios Pavlos General Hospital'),
(42999, 36668, 'en', 'name', 'Robina Hospital'),
(43000, 36669, 'no_lang_code', 'name', 'Durgabai Deshmukh Hospital'),
(43001, 36670, 'en', 'name', 'Shellharbour Hospital'),
(43002, 36671, 'en', 'name', '37 Military Hospital'),
(43003, 36672, 'en', 'name', 'Shoalhaven District Memorial Hospital'),
(43004, 36673, 'en', 'name', 'African University College of Communications'),
(43005, 36674, 'en', 'name', 'Christian Service University College'),
(43006, 36675, 'en', 'name', 'St John of God Geelong Hospital'),
(43007, 36676, 'en', 'name', 'Data Link Institute of Business and Technology'),
(43008, 36677, 'no_lang_code', 'name', 'Donka Hospital'),
(43009, 36678, 'no_lang_code', 'name', 'Sarojini Devi Eye Hospital'),
(43010, 36679, 'no_lang_code', 'name', 'Evangelical Presbyterian University College'),
(43011, 36680, 'en', 'name', 'Fhrai Institute of Hospitality Management'),
(43012, 36681, 'en', 'name', 'Garden City University College'),
(43013, 36682, 'en', 'name', 'Senate of Serampore College'),
(43014, 36682, 'ne', 'name', 'ą¤øą„€ą¤Øą„‡ą¤Ÿ अफ ą¤øą„‡ą¤°ą¤¾ą¤®ą¤Ŗą„‹ą¤° ą¤•ą¤²ą„‡ą¤œ (ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ)'),
(43015, 36682, 'bn', 'name', 'ą¦øą§‡ą¦Øą§‡ą¦Ÿ অফ ą¦¶ą§ą¦°ą§€ą¦°ą¦¾ą¦®ą¦Ŗą§ą¦° ą¦•ą¦²ą§‡ą¦œ'),
(43016, 36683, 'no_lang_code', 'name', 'New Amsterdam Public Hospital'),
(43017, 36684, 'en', 'name', 'Ford Hospital and Research Centre'),
(43018, 36685, 'en', 'name', 'Islamic University College'),
(43019, 36686, 'en', 'name', 'Seventh day Adventist Hospital'),
(43020, 36687, 'no_lang_code', 'name', 'Mountcrest University College'),
(43021, 36688, 'en', 'name', 'Islamic Azad University Mahshahr'),
(43022, 36688, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ماهؓهر'),
(43023, 36689, 'en', 'name', 'Pentecost University College'),
(43024, 36690, 'en', 'name', 'Silchar Medical College and Hospital'),
(43025, 36691, 'en', 'name', 'Castle Peak Hospital'),
(43026, 36691, 'zh', 'name', '青山醫院'),
(43027, 36692, 'en', 'name', 'Sir Sunderlal Hospital'),
(43028, 36693, 'no_lang_code', 'name', 'Fortis Malar Hospital'),
(43029, 36694, 'en', 'name', 'Hong Kong Adventist Hospital'),
(43030, 36694, 'zh', 'name', '香港港安醫院'),
(43031, 36695, 'no_lang_code', 'name', 'General Hospital Ernakulam'),
(43032, 36696, 'en', 'name', 'Sri Narayani Hospital & Research Centre'),
(43033, 36697, 'en', 'name', 'Islamic Azad University of Parand'),
(43034, 36697, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد پرند'),
(43035, 36698, 'en', 'name', 'St. George Hospital'),
(43036, 36699, 'en', 'name', 'Global Open University'),
(43037, 36700, 'no_lang_code', 'name', 'Tsan Yuk Hospital'),
(43038, 36700, 'zh', 'name', 'č“Šč‚²é†«é™¢'),
(43039, 36701, 'en', 'name', 'St. Theresa’s Multi-Speciality Hospital'),
(43040, 36701, 'te', 'name', 'ą°øą±†ą°Æą°æą°‚ą°Ÿą± తెరెసా ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(43041, 36702, 'en', 'name', 'Mahak Hospital and Rehabilitation Complex'),
(43042, 36702, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł…Ų­Ś©'),
(43043, 36703, 'en', 'name', 'Tsuen Wan Adventist Hospital'),
(43044, 36704, 'en', 'name', 'Government ENT Hospital'),
(43045, 36704, 'te', 'name', 'ą°Ŗą±ą°°ą°­ą±ą°¤ą±ą°µ ą°ˆą°Žą°Øą±ą°Ÿą±€ ą°µą±ˆą°¦ą±ą°Æą°¶ą°¾ą°²'),
(43046, 36705, 'en', 'name', 'Swami Pranavananda Homoeopathic Medical College and Hospital'),
(43047, 36706, 'ur', 'name', '(Ų­Ś©ŁˆŁ…ŲŖ Ł†ŲøŲ§Ł…ŪŒŪ جنرل ہسپتال ( طبی ŲÆŲ§ŁˆŲ§Ś©ŪŲ§Ł†'),
(43048, 36706, 'en', 'name', 'Government Nizamia General Hospital'),
(43049, 36706, 'te', 'name', 'నిజామియా ą°œą°Øą°°ą°²ą± ą°†ą°øą±ą°Ŗą°¤ą±ą°°ą°æ'),
(43050, 36707, 'en', 'name', 'Tamil Nadu Government Multi Super Speciality Hospital'),
(43051, 36707, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ புதிய ą®šą®ŸąÆą®Ÿą®®ą®©ąÆą®±ą®®ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ தலைமை ą®šąÆ†ą®Æą®²ą®• ą®µą®³ą®¾ą®•ą®®ąÆ'),
(43052, 36708, 'en', 'name', 'Government Royapettah Hospital'),
(43053, 36709, 'en', 'name', 'Union Hospital'),
(43054, 36709, 'zh', 'name', '仁安醫院'),
(43055, 36710, 'en', 'name', 'Anugrah Narayan Magadh Medical College & Hospital'),
(43056, 36710, 'hi', 'name', 'ą¤…ą¤Øą„ą¤—ą„ą¤°ą¤¹ नारायण मगध ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(43057, 36711, 'fr', 'name', 'HƓpital delek'),
(43058, 36711, 'no_lang_code', 'name', 'Tibetan Delek Hospital'),
(43059, 36712, 'no_lang_code', 'name', 'Hamidia Hospital'),
(43060, 36713, 'en', 'name', 'Hi-Tech Medical College & Hospital'),
(43061, 36714, 'en', 'name', 'Aditya Jyot Eye Hospital'),
(43062, 36715, 'en', 'name', 'Hindu Mission Hospital'),
(43063, 36716, 'en', 'name', 'Aizawl Adventist Hospital'),
(43064, 36717, 'en', 'name', 'Trichur Heart Hospital'),
(43065, 36718, 'en', 'name', 'Holy Spirit Hospital'),
(43066, 36719, 'en', 'name', 'Tripura Medical College & Dr. B.R. Ambedkar Memorial Teaching Hospital'),
(43067, 36720, 'en', 'name', 'Al-Ameen Pre University College'),
(43068, 36721, 'en', 'name', 'Indian Agricultural Universities Association'),
(43069, 36722, 'en', 'name', 'Baghdad College of Economic Sciences University'),
(43070, 36722, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ŲØŲŗŲÆŲ§ŲÆ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŁŠŲ© الجامعة'),
(43071, 36723, 'no_lang_code', 'name', 'Umrao Hospital'),
(43072, 36724, 'en', 'name', 'Dijlah University College'),
(43073, 36724, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© دجلة الجامعة'),
(43074, 36725, 'no_lang_code', 'name', 'Almas Hospital'),
(43075, 36726, 'en', 'name', 'Universal Engineering College'),
(43076, 36727, 'en', 'name', 'University B.D.T College of Engineering'),
(43077, 36728, 'no_lang_code', 'name', 'Inlaks & Budhrani Hospital'),
(43078, 36729, 'no_lang_code', 'name', 'Anandalok Hospital'),
(43079, 36729, 'hi', 'name', 'ą¤†ą¤Øą¤‚ą¤¦ą¤²ą„‹ą¤• ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(43080, 36730, 'en', 'name', 'University B.T. & Evening College'),
(43081, 36731, 'en', 'name', 'Ansal University'),
(43082, 36732, 'en', 'name', 'Madenat Alelem University College'),
(43083, 36732, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ł…ŲÆŁŠŁ†Ų© العلم الجامعة'),
(43084, 36733, 'en', 'name', 'University College for Women'),
(43085, 36734, 'en', 'name', 'Islamic University of Science and Technology'),
(43086, 36735, 'en', 'name', 'Antara'),
(43087, 36736, 'en', 'name', 'University College of Commerce & Business Management'),
(43088, 36737, 'en', 'name', 'Apollo KH Hospital'),
(43089, 36738, 'en', 'name', 'Alsalam University College'),
(43090, 36738, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų“ŁŠŲ® Ł…Ų­Ł…ŲÆ Ų§Ł„ŁƒŲ³Ł†Ų²Ų§Ł† الجامعة'),
(43091, 36739, 'en', 'name', 'Institute of Medical Sciences and Sum Hospital'),
(43092, 36740, 'en', 'name', 'Arignar Anna Memorial Cancer Hospital & Research Institute'),
(43093, 36740, 'ta', 'name', 'ą®…ą®°ą®šąÆ ą®…ą®±ą®æą®žą®°ąÆ ą®…ą®£ąÆą®£ą®¾ நினைவு ą®ŖąÆą®±ąÆą®±ąÆą®ØąÆ‹ą®ÆąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆą®ÆąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®²ąÆˆą®Æą®®ąÆą®®ąÆ'),
(43094, 36741, 'en', 'name', 'Joshi Hospital'),
(43095, 36741, 'mr', 'name', 'ą¤œą„‹ą¤¶ą„€ ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(43096, 36742, 'en', 'name', 'Aut Even Hospital'),
(43097, 36743, 'en', 'name', 'Bantry General Hospital'),
(43098, 36743, 'ga', 'name', 'OspidƩal GinearƔlta Bheanntraƭ'),
(43099, 36744, 'en', 'name', 'King George Hospital'),
(43100, 36744, 'te', 'name', 'ą°•ą°æą°‚ą°—ą± ą°œą°¾ą°°ą±ą°œą°æ ą°†ą°øą±ą°Ŗą°¤ą±ą°°ą°æ'),
(43101, 36745, 'en', 'name', 'Bon Secours Hospital Cork'),
(43102, 36746, 'en', 'name', 'University of Technology and Management'),
(43103, 36746, 'fr', 'name', 'UniversitƩ de technologie et management'),
(43104, 36746, 'hi', 'name', 'ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(43105, 36747, 'en', 'name', 'Aware Global Hospital'),
(43106, 36748, 'en', 'name', 'Bon Secours Hospital Dublin'),
(43107, 36749, 'en', 'name', 'Bethesda Hospital'),
(43108, 36749, 'ta', 'name', 'ą®ŖąÆ†ą®¤ąÆ†ą®øąÆą®¤ą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(43109, 36750, 'en', 'name', 'Little Flower Hospital & Research Centre'),
(43110, 36751, 'en', 'name', 'Bon Secours Hospital Galway'),
(43111, 36752, 'en', 'name', 'Bon Secours Hospital Tralee'),
(43112, 36753, 'no_lang_code', 'name', 'Maharaja Yeshwantrao Hospital'),
(43113, 36754, 'no_lang_code', 'name', 'Bhabha Hospital'),
(43114, 36755, 'en', 'name', 'Billroth Hospitals'),
(43115, 36756, 'en', 'name', 'Cavan General Hospital'),
(43116, 36756, 'ga', 'name', 'OspidƩal GinearƔlta an ChabhƔin'),
(43117, 36757, 'no_lang_code', 'name', 'Caritas Hospital'),
(43118, 36758, 'ga', 'name', 'OspidƩal Ollscoile Chiarraƭ'),
(43119, 36758, 'en', 'name', 'University Hospital Kerry'),
(43120, 36759, 'en', 'name', 'Maharishi University of Management and Technology'),
(43121, 36760, 'en', 'name', 'Catherine Booth Hospital'),
(43122, 36760, 'ta', 'name', 'ą®•ą®¾ą®¤ą®°ą®æą®©ąÆ ą®ŖąÆ‚ą®¤ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ மனை'),
(43123, 36761, 'en', 'name', 'Malda Medical College and Hospital'),
(43124, 36762, 'en', 'name', 'Kilcreene Orthopaedic Hospital'),
(43125, 36762, 'ga', 'name', 'OspidƩal OrtaipƩideach Kilcreene'),
(43126, 36763, 'en', 'name', 'Vanivilas Women and Children Hospital'),
(43127, 36764, 'en', 'name', 'Mallow General Hospital'),
(43128, 36764, 'ga', 'name', 'OspidƩal GinearƔlta Mhala'),
(43129, 36765, 'en', 'name', 'Manjara Ayurvedic Medical College and Hospital'),
(43130, 36766, 'en', 'name', 'Midland Regional Hospital Mullingar'),
(43131, 36766, 'ga', 'name', 'Ospidéal Réigiúnach an Mhuilinn Chearr'),
(43132, 36767, 'no_lang_code', 'name', 'Victoria Hospital'),
(43133, 36768, 'en', 'name', 'Midland Regional Hospital Portlaoise'),
(43134, 36768, 'ga', 'name', 'Ospidéal Réigiúnach LÔr Tíre, Port Laoise'),
(43135, 36769, 'en', 'name', 'Charnock Hospital'),
(43136, 36770, 'en', 'name', 'Matha Ayurveda Eye Hospital'),
(43137, 36771, 'no_lang_code', 'name', 'Chazhikattu Hospital'),
(43138, 36772, 'no_lang_code', 'name', 'Mathura Das Mathur Hospital'),
(43139, 36772, 'hi', 'name', 'ą¤®ą¤„ą„ą¤°ą¤¾ą¤¦ą¤¾ą¤ø ą¤®ą¤¾ą¤„ą„ą¤° ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(43140, 36773, 'en', 'name', 'Mount Carmel Hospital'),
(43141, 36774, 'en', 'name', 'World Laparoscopy Hospital'),
(43142, 36775, 'en', 'name', 'Christian Hospital Serkawn'),
(43143, 36776, 'no_lang_code', 'name', 'Koyama Fukusei Hospital'),
(43144, 36776, 'ja', 'name', 'ē„žå±±å¾©ē”Ÿē—…é™¢'),
(43145, 36777, 'no_lang_code', 'name', 'Yerwada Mental Hospital'),
(43146, 36778, 'en', 'name', 'College of Medicine & JNM Hospital'),
(43147, 36779, 'en', 'name', 'Mahatma Gandhi Mission Medical College and Hospital'),
(43148, 36780, 'ga', 'name', 'OspidƩal Chontae Ros ComƔin'),
(43149, 36780, 'en', 'name', 'Roscommon University Hospital'),
(43150, 36781, 'en', 'name', 'College of Medicine & Sagore Dutta Hospital'),
(43151, 36782, 'en', 'name', 'Midnapore Medical College and Hospital'),
(43152, 36783, 'en', 'name', 'Dr. Kariadi Hospital'),
(43153, 36783, 'id', 'name', 'Rumah Sakit Dr. Kariadi'),
(43154, 36784, 'en', 'name', 'Isra University'),
(43155, 36784, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ال؄سراؔ'),
(43156, 36785, 'en', 'name', 'Sacred Heart Hospital'),
(43157, 36786, 'en', 'name', 'Panti Rapih Hospital'),
(43158, 36786, 'id', 'name', 'Rumah Sakit Umum Panti Rapih'),
(43159, 36787, 'en', 'name', 'Minto Ophthalmic Hospital'),
(43160, 36788, 'en', 'name', 'Mithila Minority Dental College And Hospital'),
(43161, 36789, 'en', 'name', 'King Abdullah University Hospital'),
(43162, 36789, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ المؤسس Ų¹ŲØŲÆ الله Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(43163, 36790, 'en', 'name', 'Cooper Hospital'),
(43164, 36791, 'en', 'name', 'Mother Hospital'),
(43165, 36792, 'ga', 'name', 'OspidƩal GinearƔlta Thiobraid Ɓrann Theas'),
(43166, 36792, 'en', 'name', 'South Tipperary General Hospital'),
(43167, 36793, 'en', 'name', 'Specialty Hospital, Jordan'),
(43168, 36794, 'no_lang_code', 'name', 'Muthu Hospital'),
(43169, 36795, 'en', 'name', 'Nalanda Medical College and Hospital'),
(43170, 36795, 'hi', 'name', 'ą¤Øą¤¾ą¤²ą¤Øą„ą¤¦ą¤¾ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ और ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(43171, 36796, 'en', 'name', 'Islamic Azad University of Farahan'),
(43172, 36797, 'en', 'name', 'University of Central Asia'),
(43173, 36798, 'en', 'name', 'Darbhanga Medical College and Hospital'),
(43174, 36799, 'en', 'name', 'Islamic Azad University of Kashan'),
(43175, 36799, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کاؓان'),
(43176, 36800, 'ga', 'name', 'OspidƩal Naomh Colm Cille'),
(43177, 36800, 'en', 'name', 'St. Columcille''s Hospital'),
(43178, 36801, 'en', 'name', 'Patna Medical College and Hospital'),
(43179, 36801, 'hi', 'name', 'पटना ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(43180, 36802, 'en', 'name', 'Deccan School of Hospital Management'),
(43181, 36803, 'en', 'name', 'Synod Hospital'),
(43182, 36804, 'ga', 'name', 'OspidƩal Naomh Conaill'),
(43183, 36804, 'en', 'name', 'St. Conal''s Psychiatric Hospital'),
(43184, 36805, 'en', 'name', 'Council of Christian Hospitals'),
(43185, 36806, 'en', 'name', 'Africa International University'),
(43186, 36807, 'ga', 'name', 'OspidƩal Naomh Dympna'),
(43187, 36807, 'en', 'name', 'St. Dympna''s Hospital'),
(43188, 36808, 'en', 'name', 'Prince Aly Khan Hospital'),
(43189, 36809, 'en', 'name', 'Aga Khan Hospital, Kisumu'),
(43190, 36810, 'en', 'name', 'Aga Khan Hospital, Mombasa'),
(43191, 36811, 'no_lang_code', 'name', 'Desun Hospital & Heart Institute'),
(43192, 36812, 'en', 'name', 'Rajarshee Chhatrapati Shahu Maharaj Government Medical College and CPR Hospital Kolhapur'),
(43193, 36813, 'en', 'name', 'Kingsbridge Private Hospital Sligo'),
(43194, 36814, 'en', 'name', 'East Yangon General Hospital'),
(43195, 36814, 'my', 'name', 'ရန်ကုန် နရှေ့ပိုင်း ဆေးရုံ'),
(43196, 36815, 'en', 'name', 'Khawaja Farid Social Security Hospital'),
(43197, 36815, 'ur', 'name', 'خواجہ فرید Ų³ŁˆŲ“Ł„ سیکورٹی ہسپتال'),
(43198, 36816, 'en', 'name', 'Mariakani Cottage Hospital'),
(43199, 36817, 'en', 'name', 'North Okkalapa General Hospital'),
(43200, 36817, 'my', 'name', 'မြောက် į€„į€€į€¹į€€į€œį€¬į€•į€†į€±į€øį€›į€Æį€¶'),
(43201, 36818, 'sw', 'name', 'Hospitali ya Nairobi'),
(43202, 36818, 'en', 'name', 'Nairobi Hospital'),
(43203, 36819, 'en', 'name', 'The Nairobi Women’s Hospital'),
(43204, 36820, 'en', 'name', 'West Yangon General Hospital'),
(43205, 36820, 'my', 'name', 'ရန်ကုန် နနောက်ပိုင်း ဆေးရုံ'),
(43206, 36821, 'en', 'name', 'Yangon Central Women''s Hospital'),
(43207, 36821, 'my', 'name', 'ရန်ကုန် į€—į€Ÿį€­į€Æ į€”į€™į€»į€­į€Æį€øį€žį€™į€®į€ø ဆေးရုံ'),
(43208, 36822, 'en', 'name', 'Services Hospital'),
(43209, 36822, 'ur', 'name', 'سروسز ہسپتال'),
(43210, 36823, 'no_lang_code', 'name', 'Al-Salam Hospital'),
(43211, 36823, 'fr', 'name', 'Hopital de la Paix'),
(43212, 36824, 'en', 'name', 'Yangon Children''s Hospital'),
(43213, 36824, 'my', 'name', 'į€›į€”į€ŗį€€į€Æį€”į€ŗį€€į€œį€±į€øį€†į€±į€øį€›į€Æį€¶į€€į€¼į€®'),
(43214, 36825, 'en', 'name', 'Alyn Hospital'),
(43215, 36826, 'en', 'name', 'Nazareth Hospital EMMS'),
(43216, 36826, 'ar', 'name', 'مستؓفى الناصرة Ų§.Ł….Ł….Ų³'),
(43217, 36827, 'en', 'name', 'Ganta United Methodist Hospital'),
(43218, 36828, 'en', 'name', 'Shaikh Zayed Medical College and Hospital'),
(43219, 36829, 'en', 'name', 'Agriculture and Forestry University'),
(43220, 36829, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą„ƒą¤·ą¤æ तऄा वन ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(43221, 36830, 'no_lang_code', 'name', 'Shalamar Hospital'),
(43222, 36831, 'pt', 'name', 'Centro Hospitalar Conde de São JanuÔrio'),
(43223, 36831, 'no_lang_code', 'name', 'Hospital Conde S. JanuƔrio'),
(43224, 36831, 'zh', 'name', 'ä»ä¼Æēˆµē»¼åˆåŒ»é™¢'),
(43225, 36832, 'en', 'name', 'Jerusalem University College'),
(43226, 36833, 'en', 'name', 'International University College of Turin'),
(43227, 36834, 'no_lang_code', 'name', 'Assunta Hospital'),
(43228, 36834, 'ms', 'name', 'Hospital Assunta'),
(43229, 36834, 'zh', 'name', 'é˜æę¾å¤§åŒ»é™¢'),
(43230, 36835, 'no_lang_code', 'name', 'Sindh Madressatul Islam University'),
(43231, 36835, 'ur', 'name', 'سندھ Ł…ŲÆŲ±Ų³Ūƒ الاسلام'),
(43232, 36835, 'sd', 'name', 'Ų³Ł†ŚŒ مدرسته Ų§Ł„Ų§Ų³Ł„Ų§Ł…ā€Ž'),
(43233, 36836, 'no_lang_code', 'name', 'Baidya and Banskota Hospital'),
(43234, 36837, 'en', 'name', 'Berjaya University College of Hospitality'),
(43235, 36838, 'no_lang_code', 'name', 'Sir Ganga Ram Hospital'),
(43236, 36838, 'ur', 'name', 'Ų³Ų± گنگا Ų±Ų§Ł… ہسپتال'),
(43237, 36839, 'no_lang_code', 'name', 'Bambisana Hospital'),
(43238, 36840, 'ms', 'name', 'Hospital Kajang'),
(43239, 36840, 'en', 'name', 'Kajang Hospital'),
(43240, 36841, 'en', 'name', 'Kuala Lumpur Metropolitan University College'),
(43241, 36842, 'en', 'name', 'St. Elizabeth''s Hospital'),
(43242, 36843, 'en', 'name', 'Bedford Provincial Hospital'),
(43243, 36844, 'no_lang_code', 'name', 'St. Raphael''s Hospital'),
(43244, 36845, 'en', 'name', 'Bhisho Provincial Hospital'),
(43245, 36846, 'en', 'name', 'Surgimed Hospital'),
(43246, 36846, 'ur', 'name', 'Ų³Ų±Ų¬ŪŒŁ…ŪŒŚˆ ہسپتال Ł„Ų§ŪŁˆŲ±'),
(43247, 36847, 'en', 'name', 'Burgersdorp Provincial Hospital'),
(43248, 36848, 'no_lang_code', 'name', 'Dhulikhel Hospital'),
(43249, 36849, 'en', 'name', 'Butterworth Hospital'),
(43250, 36850, 'no_lang_code', 'name', 'Cala Provincial Hospital'),
(43251, 36851, 'en', 'name', 'Arad County Clinical Hospital'),
(43252, 36852, 'no_lang_code', 'name', 'Canzibe Hospital'),
(43253, 36853, 'en', 'name', 'Bedford Orthopedic Hospital'),
(43254, 36854, 'en', 'name', 'Sai Krishna Medical College & Hospital'),
(43255, 36855, 'en', 'name', 'Cathcart Provincial Hospital'),
(43256, 36856, 'en', 'name', 'Amsterdam University College'),
(43257, 36857, 'no_lang_code', 'name', 'Cecilia Makiwane Hospital'),
(43258, 36858, 'en', 'name', 'Cloete Joubert Hospital'),
(43259, 36859, 'en', 'name', 'University College of Islamabad'),
(43260, 36860, 'no_lang_code', 'name', 'Cofimvaba Hospital'),
(43261, 36861, 'en', 'name', 'Cradock Provincial Hospital'),
(43262, 36862, 'en', 'name', 'Denmar Specialist Psychiatric Hospital'),
(43263, 36863, 'ms', 'name', 'Hospital Melaka'),
(43264, 36863, 'en', 'name', 'Malacca General Hospital'),
(43265, 36864, 'no_lang_code', 'name', 'Dora Nginza Hospital'),
(43266, 36865, 'ms', 'name', 'Manipal Hospital Klang'),
(43267, 36866, 'no_lang_code', 'name', 'Dar Al-Shifa Hospital'),
(43268, 36866, 'ar', 'name', 'مستؓفى ŲÆŲ§Ų± Ų§Ł„Ų“ŁŲ§Ų”ā€Ž'),
(43269, 36867, 'no_lang_code', 'name', 'Dordrecht Hospital'),
(43270, 36868, 'en', 'name', 'St Petersburg Psychiatric Hospital of Specialized Type with Intense Observation'),
(43271, 36868, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń ŠæŃŠøŃ…ŠøŠ°Ń‚Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° специализированного типа с интенсивным Š½Š°Š±Š»ŃŽŠ“ением'),
(43272, 36869, 'en', 'name', 'New Era College'),
(43273, 36869, 'ms', 'name', 'ę–°ēŗŖå…ƒå­¦é™¢'),
(43274, 36870, 'en', 'name', 'University College of Applied Science'),
(43275, 36870, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(43276, 36871, 'en', 'name', 'Dr George Mukhari Hospital'),
(43277, 36872, 'en', 'name', 'National Hospital'),
(43278, 36873, 'en', 'name', 'Serdang Hospital'),
(43279, 36874, 'en', 'name', 'Duncan Village Day Hospital'),
(43280, 36875, 'en', 'name', 'Sibu Hospital'),
(43281, 36876, 'en', 'name', 'Elizabeth Donkin Hospital'),
(43282, 36877, 'ms', 'name', 'NƔnfāng DƠxuƩ XuƩyuƠn'),
(43283, 36877, 'en', 'name', 'Southern University College'),
(43284, 36877, 'zh', 'name', 'å—ę–¹å¤§å­¦å­¦é™¢'),
(43285, 36878, 'en', 'name', 'Braemar Hospital'),
(43286, 36879, 'en', 'name', 'Elliot Provincial Hospital'),
(43287, 36880, 'ms', 'name', 'Hospital Sultan Abdul Halim'),
(43288, 36880, 'en', 'name', 'Sultan Abdul Halim Hospital'),
(43289, 36881, 'ms', 'name', 'Hospital Sultan Haji Ahmad Shah'),
(43290, 36881, 'en', 'name', 'Sultan Haji Ahmad Shah Hospital'),
(43291, 36882, 'es', 'name', 'Hospital Punta Pacifica'),
(43292, 36883, 'no_lang_code', 'name', 'Empilisweni District Hospital'),
(43293, 36884, 'en', 'name', 'Sultan Ismail Specialist Hospital'),
(43294, 36885, 'es', 'name', 'Hospital Santo TomƔs'),
(43295, 36885, 'en', 'name', 'Saint Thomas Hospital'),
(43296, 36886, 'en', 'name', 'Wakari Hospital'),
(43297, 36887, 'ms', 'name', 'Kolej Universiti TATI'),
(43298, 36887, 'en', 'name', 'TATI University College'),
(43299, 36888, 'en', 'name', 'International American University'),
(43300, 36889, 'ms', 'name', 'Hospital Tuaran'),
(43301, 36889, 'en', 'name', 'Tuaran Hospital'),
(43302, 36890, 'no_lang_code', 'name', 'ADK Hospital'),
(43303, 36891, 'no_lang_code', 'name', 'Faafu Atoll Hospital'),
(43304, 36892, 'en', 'name', 'Whakatane Hospital'),
(43305, 36893, 'en', 'name', 'Saad Specialist Hospital'),
(43306, 36893, 'ar', 'name', 'مستؓفى Ų³Ų¹ŲÆ Ų§Ł„ŲŖŲ®ŲµŲµŁŠ'),
(43307, 36894, 'en', 'name', 'Fort Beaufort Hospital'),
(43308, 36895, 'en', 'name', 'Asian Hospital and Medical Center'),
(43309, 36896, 'en', 'name', 'Indira Gandhi Memorial Hospital'),
(43310, 36897, 'en', 'name', 'Keiser University Latin American Campus'),
(43311, 36898, 'af', 'name', 'Fort England Psigiatriese hospitaal'),
(43312, 36898, 'en', 'name', 'Fort England Psychiatric Hospital'),
(43313, 36899, 'en', 'name', 'Paul University Awka'),
(43314, 36900, 'en', 'name', 'Association of Christian Schools, Colleges and Universities'),
(43315, 36901, 'en', 'name', 'Fort Grey TB Hospital'),
(43316, 36902, 'no_lang_code', 'name', 'Frontier Hospital'),
(43317, 36903, 'en', 'name', 'Association of Local Colleges and Universities'),
(43318, 36904, 'en', 'name', 'Glen Grey Provincial Hospital'),
(43319, 36905, 'en', 'name', 'St John of God Hospital Sierra Leone'),
(43320, 36906, 'en', 'name', 'Bangued Christian Hospital'),
(43321, 36907, 'en', 'name', 'Bethel Baptist Hospital'),
(43322, 36908, 'en', 'name', 'Grey Provincial Hospital'),
(43323, 36909, 'es', 'name', 'Hospital de JesĆŗs Nazareno'),
(43324, 36910, 'en', 'name', 'Namsos Hospital'),
(43325, 36911, 'en', 'name', 'Parkway East Hospital'),
(43326, 36912, 'en', 'name', 'Hewu Hospital'),
(43327, 36913, 'en', 'name', 'Chinese General Hospital and Medical Center'),
(43328, 36914, 'en', 'name', 'Indwe Hospital'),
(43329, 36915, 'en', 'name', 'Norwegian Universities and Colleges Admission Service'),
(43330, 36916, 'en', 'name', 'Mount Elizabeth Novena Hospital'),
(43331, 36917, 'es', 'name', 'Hospital San Hipólito'),
(43332, 36918, 'en', 'name', 'Chinese General Hospital College of Nursing and Liberal Arts'),
(43333, 36919, 'en', 'name', 'Davao Doctors Hospital'),
(43334, 36920, 'en', 'name', 'Jamestown Hospital'),
(43335, 36921, 'en', 'name', 'Jose Pearson TB Hospital'),
(43336, 36922, 'en', 'name', 'Dr. Jose N. Rodriguez Memorial Hospital'),
(43337, 36923, 'af', 'name', 'Kalafong Hospitaal'),
(43338, 36923, 'en', 'name', 'Kalafong Hospital'),
(43339, 36924, 'en', 'name', 'Rudolf Steiner University College'),
(43340, 36925, 'no_lang_code', 'name', 'Komga Hospital'),
(43341, 36926, 'en', 'name', 'Onderstepoort Veterinary Academic Hospital'),
(43342, 36926, 'af', 'name', 'Onderstepoort-dierehospitaal'),
(43343, 36927, 'en', 'name', 'Lady Grey Hospital'),
(43344, 36928, 'en', 'name', 'St Luke''s Hospital'),
(43345, 36929, 'en', 'name', 'P.Z. Meyer Hospital'),
(43346, 36930, 'en', 'name', 'Iloilo Mission Hospital'),
(43347, 36931, 'en', 'name', 'Livingstone Hospital'),
(43348, 36932, 'en', 'name', 'John B. Lacson Foundation Maritime University'),
(43349, 36933, 'no_lang_code', 'name', 'S.S. Gida Hospital'),
(43350, 36934, 'en', 'name', 'Aga Khan Hospital for Women'),
(43351, 36935, 'en', 'name', 'Å tefan Kukura Hospital in Michalovce'),
(43352, 36936, 'en', 'name', 'Maclear Hospital'),
(43353, 36937, 'en', 'name', 'Settlers Hospital'),
(43354, 36938, 'en', 'name', 'Juan S. Alano Memorial Hospital'),
(43355, 36939, 'en', 'name', 'Allied Hospital'),
(43356, 36940, 'no_lang_code', 'name', 'Madwaleni Hospital'),
(43357, 36941, 'en', 'name', 'Laguna State Polytechnic University'),
(43358, 36942, 'en', 'name', 'Somerset Hospital'),
(43359, 36943, 'en', 'name', 'Madzikane Ka Zulu Memorial Hospital'),
(43360, 36944, 'en', 'name', 'St Barnabas Hospital'),
(43361, 36945, 'en', 'name', 'Abudwak Maternity and Children''s Hospital'),
(43362, 36945, 'so', 'name', 'Isbitaalka Caabudwaaq ee Daryeelka Umulaha iyo Caruurta'),
(43363, 36946, 'en', 'name', 'Medina General Hospital'),
(43364, 36947, 'no_lang_code', 'name', 'Martje Venter Hospital'),
(43365, 36948, 'en', 'name', 'Daud Memorial Hospital'),
(43366, 36949, 'en', 'name', 'Midlands Provincial Hospital'),
(43367, 36950, 'en', 'name', 'St Elizabeth Mission Hospital'),
(43368, 36951, 'en', 'name', 'Divisional Headquarters Teaching Hospital Mirpur'),
(43369, 36952, 'en', 'name', 'St Francis Chronic Hospital'),
(43370, 36953, 'no_lang_code', 'name', 'Mjanyana Hospital'),
(43371, 36954, 'no_lang_code', 'name', 'Molteno Hospital'),
(43372, 36955, 'en', 'name', 'St Lucy''s Hospital'),
(43373, 36956, 'en', 'name', 'District Headquarters Hospital Battagram'),
(43374, 36956, 'ur', 'name', 'Ł…Ų±Ś©Ų²ŪŒ ضلع ہسپتال بٹگرام'),
(43375, 36957, 'en', 'name', 'St Patrick''s Hospital'),
(43376, 36958, 'en', 'name', 'Mindanao Sanitarium and Hospital College'),
(43377, 36959, 'en', 'name', 'Farooq Hospital'),
(43378, 36960, 'en', 'name', 'Mount Ayliff Hospital'),
(43379, 36961, 'en', 'name', 'Mthatha General Hospital'),
(43380, 36962, 'en', 'name', 'Sterkstroom Provincial Hospital'),
(43381, 36963, 'af', 'name', 'Steve Biko Akademiese Hospitaal'),
(43382, 36963, 'en', 'name', 'Steve Biko Hospital'),
(43383, 36964, 'en', 'name', 'Nelson Mandela Academic Hospital'),
(43384, 36965, 'en', 'name', 'Kilinochchi General Hospital'),
(43385, 36966, 'no_lang_code', 'name', 'Banadir Hospital'),
(43386, 36967, 'en', 'name', 'Lanka Hospitals'),
(43387, 36968, 'en', 'name', 'Steynsburg Provincial Hospital'),
(43388, 36969, 'en', 'name', 'East Bardera Mothers and Children''s Hospital'),
(43389, 36970, 'en', 'name', 'Stutterheim Provincial Hospital'),
(43390, 36971, 'en', 'name', 'Nkqubela Chest Hospital');
INSERT INTO `ror_settings` VALUES
(43391, 36972, 'en', 'name', 'Quirino State University'),
(43392, 36973, 'no_lang_code', 'name', 'Tafalofefe Hospital'),
(43393, 36974, 'no_lang_code', 'name', 'Mallavi Hospital'),
(43394, 36975, 'en', 'name', 'Edna Adan Maternity Hospital'),
(43395, 36976, 'en', 'name', 'Tayler Bequest District Hospital'),
(43396, 36977, 'en', 'name', 'San Jose Hospital & Trauma Center'),
(43397, 36978, 'no_lang_code', 'name', 'Nompumelelo Hospital'),
(43398, 36979, 'en', 'name', 'Tower Psychiatric Hospital'),
(43399, 36980, 'no_lang_code', 'name', 'Gardo General Hospital'),
(43400, 36981, 'no_lang_code', 'name', 'Somoso General Hospital'),
(43401, 36982, 'no_lang_code', 'name', 'Umlamli Hospital'),
(43402, 36983, 'en', 'name', 'Mannar Hospital'),
(43403, 36984, 'no_lang_code', 'name', 'Valkenberg Hospital'),
(43404, 36985, 'en', 'name', 'Unciano Colleges and General Hospital'),
(43405, 36986, 'no_lang_code', 'name', 'Victoria Hospital'),
(43406, 36987, 'no_lang_code', 'name', 'Mullaitivu Hospital'),
(43407, 36988, 'en', 'name', 'Aberdeen Provincial Hospital'),
(43408, 36989, 'en', 'name', 'Wilhelm Stahl Provincial Hospital'),
(43409, 36990, 'en', 'name', 'Universal College'),
(43410, 36991, 'en', 'name', 'Zithulele Hospital'),
(43411, 36992, 'en', 'name', 'Adelaide Provincial Hospital'),
(43412, 36993, 'no_lang_code', 'name', 'Nawaloka Hospital'),
(43413, 36993, 'si', 'name', 'ą¶±ą·€ą¶½ą·ą¶š ą¶»ą·ą·„ą¶½'),
(43414, 36994, 'en', 'name', 'Kibuli Hospital'),
(43415, 36995, 'en', 'name', 'Bumin Hospital Group'),
(43416, 36996, 'en', 'name', 'Chung Cheong University'),
(43417, 36996, 'zh', 'name', '忠淸大學'),
(43418, 36996, 'ko', 'name', 'ģ¶©ģ²­ėŒ€ķ•™źµ'),
(43419, 36997, 'en', 'name', 'Dr Neville Fernando Teaching Hospital'),
(43420, 36998, 'en', 'name', 'Kisiizi Hospital'),
(43421, 36999, 'en', 'name', 'Point Pedro Hospital'),
(43422, 37000, 'en', 'name', 'Kitojo Hospital'),
(43423, 37001, 'en', 'name', 'Daewon University College'),
(43424, 37001, 'ko', 'name', 'ėŒ€ģ›ėŒ€ķ•™źµ'),
(43425, 37002, 'en', 'name', 'Aliwal North Hospital'),
(43426, 37003, 'en', 'name', 'Mission Hospital'),
(43427, 37004, 'no_lang_code', 'name', 'Tellippalai Hospital'),
(43428, 37005, 'en', 'name', 'Doowon Technical University College'),
(43429, 37005, 'ko', 'name', 'ė‘ģ›ź³µź³¼ėŒ€ķ•™źµ'),
(43430, 37006, 'en', 'name', 'Kitovu Hospital'),
(43431, 37007, 'en', 'name', 'Trincomalee Hospital'),
(43432, 37007, 'si', 'name', 'ą¶­ą·Šā€ą¶»ą·’ą¶šą·”ą¶«ą·ą¶øą¶½ą¶ŗ ą¶»ą·ą·„ą¶½'),
(43433, 37008, 'en', 'name', 'All Saints Hospital'),
(43434, 37009, 'no_lang_code', 'name', 'Bangkok Christian Hospital'),
(43435, 37009, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøąø£ąøøąø‡ą¹€ąø—ąøžąø„ąø£ąø“ąøŖą¹€ąø•ąøµąø¢ąø™'),
(43436, 37010, 'en', 'name', 'Hallym Polytechnic University'),
(43437, 37010, 'zh', 'name', 'ēæ°ęž—č–åæƒå¤§å­øę ”'),
(43438, 37010, 'ko', 'name', 'ķ•œė¦¼ģ„±ģ‹¬ėŒ€ķ•™źµ'),
(43439, 37011, 'en', 'name', 'Kiwoko Hospital'),
(43440, 37012, 'en', 'name', 'Andries Vosloo Hospital'),
(43441, 37013, 'en', 'name', 'Vavuniya General Hospital'),
(43442, 37014, 'en', 'name', 'B.J. Vorster Hospital'),
(43443, 37015, 'en', 'name', 'Kuluva Hospital'),
(43444, 37016, 'en', 'name', 'Bumrungrad International Hospital'),
(43445, 37016, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøšąø³ąø£ąøøąø‡ąø£ąø²ąø©ąøŽąø£ą¹Œ'),
(43446, 37017, 'en', 'name', 'Lira Hospital'),
(43447, 37018, 'no_lang_code', 'name', 'Manarom Hospital'),
(43448, 37019, 'en', 'name', 'University of Medical Sciences and Technology'),
(43449, 37019, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų£Ł…ŁˆŁ† Ų­Ł…ŁŠŲÆŲ©'),
(43450, 37020, 'en', 'name', 'Masaka Hospital'),
(43451, 37021, 'en', 'name', 'Lanchester Road Hospital'),
(43452, 37022, 'en', 'name', 'Mayo Hospital'),
(43453, 37023, 'en', 'name', 'Matany Hospital'),
(43454, 37024, 'en', 'name', 'Nakornthon Hospital'),
(43455, 37025, 'en', 'name', 'Mbale Hospital'),
(43456, 37026, 'en', 'name', 'Korea National University of Welfare'),
(43457, 37026, 'ko', 'name', 'ķ•œźµ­ė³µģ§€ėŒ€ķ•™źµ'),
(43458, 37027, 'en', 'name', 'Fleming Cottage Hospital'),
(43459, 37028, 'en', 'name', 'Frƶlunda Specialist Hospital'),
(43460, 37028, 'sv', 'name', 'Frƶlunda Specialistsjukhus'),
(43461, 37029, 'no_lang_code', 'name', 'Vejthani Hospital'),
(43462, 37030, 'en', 'name', 'Tongwon University'),
(43463, 37030, 'ko', 'name', 'ė™ģ›ėŒ€ķ•™źµ'),
(43464, 37031, 'no_lang_code', 'name', 'Vibhavadi Hospital'),
(43465, 37032, 'en', 'name', 'Fountain Way'),
(43466, 37033, 'en', 'name', 'Moroto Hospital'),
(43467, 37034, 'en', 'name', 'Yuhan University'),
(43468, 37034, 'ko', 'name', 'ģœ ķ•œėŒ€ķ•™źµ'),
(43469, 37035, 'no_lang_code', 'name', 'Yanhee Hospital'),
(43470, 37035, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø¢ąø±ąø™ąø®ąøµ'),
(43471, 37036, 'en', 'name', 'Galloway Community Hospital'),
(43472, 37037, 'en', 'name', 'Mubende Hospital'),
(43473, 37038, 'en', 'name', 'Mutolere Hospital'),
(43474, 37039, 'en', 'name', 'Gilbert Bain Hospital'),
(43475, 37040, 'es', 'name', 'Hospital general de Puerto EspaƱa'),
(43476, 37040, 'en', 'name', 'Port of Spain General Hospital'),
(43477, 37041, 'en', 'name', 'Naggalama Hospital'),
(43478, 37042, 'en', 'name', 'Glen O''Dee Hospital'),
(43479, 37043, 'no_lang_code', 'name', 'Ampara Hospital'),
(43480, 37043, 'si', 'name', 'ą¶…ą¶øą·Šą¶“ą·ą¶» ą¶»ą·ą·„ą¶½'),
(43481, 37044, 'en', 'name', 'Naguru General Hospital'),
(43482, 37045, 'en', 'name', 'Insch War Memorial Hospital'),
(43483, 37046, 'en', 'name', 'Ashraff Memorial Hospital'),
(43484, 37047, 'sv', 'name', 'Sjukhuset i Lidkƶping'),
(43485, 37048, 'en', 'name', 'Nakaseke Hospital'),
(43486, 37049, 'en', 'name', 'Inverurie Hospital'),
(43487, 37050, 'en', 'name', 'Jubilee Hospital'),
(43488, 37051, 'en', 'name', 'Teaching Hospital Batticaloa'),
(43489, 37051, 'ta', 'name', 'போதனா ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆ ą®®ą®ŸąÆą®Ÿą®•ąÆą®•ą®³ą®ŖąÆą®ŖąÆ'),
(43490, 37052, 'en', 'name', 'Kincardine Community Hospital'),
(43491, 37053, 'en', 'name', 'Nkozi Hospital'),
(43492, 37054, 'tr', 'name', 'Balikli Rum Vakfi Hastanesi'),
(43493, 37054, 'en', 'name', 'Balıklı Greek Hospital'),
(43494, 37055, 'no_lang_code', 'name', 'Chavakachcheri Hospital'),
(43495, 37056, 'en', 'name', 'Nsambya Hospital'),
(43496, 37057, 'en', 'name', 'Swiss Association for Private Schools and Universities'),
(43497, 37058, 'en', 'name', 'Kirklandside Hospital'),
(43498, 37059, 'en', 'name', 'Nyakibale Hospital'),
(43499, 37060, 'en', 'name', 'Kirkwood Hospice'),
(43500, 37061, 'en', 'name', 'Swiss Institute for Management and Hospitality'),
(43501, 37062, 'no_lang_code', 'name', 'Cheddikulam Hospital'),
(43502, 37063, 'en', 'name', 'Lagan Valley Hospital'),
(43503, 37064, 'no_lang_code', 'name', 'Durdans Hospital'),
(43504, 37065, 'en', 'name', 'Rubaga Hospital'),
(43505, 37066, 'en', 'name', 'Leanchoil Hospital'),
(43506, 37067, 'en', 'name', 'Swiss School of Tourism and Hospitality'),
(43507, 37068, 'en', 'name', 'Soroti Hospital'),
(43508, 37069, 'en', 'name', 'Jaffna Teaching Hospital'),
(43509, 37069, 'si', 'name', 'ą¶ŗą·ą¶“ą¶±ą¶ŗ ą·ą·’ą¶šą·Šą·‚ą¶« ą¶»ą·ą·„ą¶½'),
(43510, 37070, 'en', 'name', 'Kalmunai North Hospital'),
(43511, 37070, 'ta', 'name', 'ą®•ą®²ąÆą®®ąÆą®©ąÆˆ ą®µą®Ÿą®•ąÆą®•ąÆ ஆதார ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆ'),
(43512, 37071, 'en', 'name', 'International University for Science and Technology'),
(43513, 37072, 'en', 'name', 'St. Francis Hospital Nkokonjeru'),
(43514, 37073, 'en', 'name', 'Llanfrechfa Grange Hospital'),
(43515, 37074, 'en', 'name', 'Kayts Hospital'),
(43516, 37075, 'en', 'name', 'London Bridge Hospital'),
(43517, 37076, 'en', 'name', 'University of Military Science and Technology'),
(43518, 37077, 'en', 'name', 'Lowestoft Hospital'),
(43519, 37078, 'en', 'name', 'The Mount'),
(43520, 37079, 'en', 'name', 'Turner Memorial Hospital'),
(43521, 37080, 'en', 'name', 'Turriff Cottage Hospital'),
(43522, 37081, 'en', 'name', 'Villa Maria Hospital'),
(43523, 37082, 'en', 'name', 'Suleyman Demirel University Research and Education Hospital'),
(43524, 37083, 'en', 'name', 'Mackinnon Memorial Hospital'),
(43525, 37084, 'en', 'name', 'Virika Hospital'),
(43526, 37085, 'en', 'name', 'Aga Khan Hospital Dar es Salaam'),
(43527, 37086, 'en', 'name', 'Maindiff Court Hospital'),
(43528, 37086, 'cy', 'name', 'Ysbyty Maindiff Court'),
(43529, 37087, 'en', 'name', 'Ugie Hospital'),
(43530, 37088, 'en', 'name', 'Bombo Hospital'),
(43531, 37089, 'en', 'name', 'Uist and Barra Hospital'),
(43532, 37090, 'en', 'name', 'Yedikule Surp PırgiƧ Armenian Hospital'),
(43533, 37090, 'tr', 'name', 'Yedikule Surp PırgiƧ Ermeni Hastanesi'),
(43534, 37091, 'en', 'name', 'Midlothian Community Hospital'),
(43535, 37092, 'en', 'name', 'Haydom Lutheran Hospital'),
(43536, 37093, 'en', 'name', 'Naomi House and Jacksplace'),
(43537, 37094, 'en', 'name', 'Ajman Specialty General Hospital'),
(43538, 37094, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¹Ł…ŁˆŁ…ŪŒ تخصصی عجمان'),
(43539, 37095, 'en', 'name', 'Princess Margaret Hospital'),
(43540, 37096, 'en', 'name', 'Neath Port Talbot Hospital'),
(43541, 37097, 'en', 'name', 'Peterborough Regional College'),
(43542, 37098, 'en', 'name', 'Angal Hospital'),
(43543, 37099, 'en', 'name', 'Peterhead Community Hospital'),
(43544, 37100, 'en', 'name', 'Warwickshire Hospital'),
(43545, 37101, 'en', 'name', 'Western Isles Hospital'),
(43546, 37102, 'en', 'name', 'Arua Regional Referral Hospital'),
(43547, 37103, 'en', 'name', 'Redwood Memorial Hospital'),
(43548, 37104, 'en', 'name', 'Danat Al Emarat Women & Children’s Hospital'),
(43549, 37105, 'en', 'name', 'Buluba Hospital'),
(43550, 37106, 'en', 'name', 'Royal Buckinghamshire Hospital'),
(43551, 37107, 'en', 'name', 'Butabika Hospital'),
(43552, 37108, 'no_lang_code', 'name', 'Dar Al Shifaa Hospital'),
(43553, 37109, 'en', 'name', 'Westminster Memorial Hospital'),
(43554, 37110, 'en', 'name', 'Royal Gwent Hospital'),
(43555, 37110, 'cy', 'name', 'Ysbyty Brenhinol Gwent'),
(43556, 37111, 'en', 'name', 'Wirral Women and Children''s Hospital'),
(43557, 37112, 'en', 'name', 'Royal Hospital Chelsea'),
(43558, 37113, 'en', 'name', 'Cabell Huntington Hospital'),
(43559, 37114, 'en', 'name', 'Woolmanhill Hospital'),
(43560, 37115, 'en', 'name', 'GMC Hospital'),
(43561, 37116, 'en', 'name', 'Caldwell Memorial Hospital'),
(43562, 37117, 'en', 'name', 'CURE Children’s Hospital of Uganda'),
(43563, 37118, 'en', 'name', 'Calvert Memorial Hospital'),
(43564, 37119, 'en', 'name', 'Royal Hospital School'),
(43565, 37120, 'en', 'name', 'Oasis Hospital'),
(43566, 37121, 'en', 'name', 'Alameda Hospital'),
(43567, 37122, 'en', 'name', 'Fort Portal Hospital'),
(43568, 37123, 'en', 'name', 'Carroll Hospital'),
(43569, 37124, 'en', 'name', 'Seafield Hospital'),
(43570, 37125, 'en', 'name', 'Hoima Hospital'),
(43571, 37126, 'en', 'name', 'Centegra Hospital McHenry'),
(43572, 37127, 'en', 'name', 'Holy Innocents Children''s Hospital'),
(43573, 37128, 'en', 'name', 'Centegra Hospital Woodstock'),
(43574, 37129, 'en', 'name', 'Emirates Academy of Hospitality Management'),
(43575, 37130, 'en', 'name', 'Centennial Hills Hospital'),
(43576, 37131, 'en', 'name', 'Central State Hospital'),
(43577, 37132, 'en', 'name', 'Albyn Hospital'),
(43578, 37133, 'en', 'name', 'International Hospital Kampala'),
(43579, 37134, 'en', 'name', 'Adventist Health Community Care-Hanford'),
(43580, 37135, 'en', 'name', 'St Cadoc''s Hospital'),
(43581, 37136, 'en', 'name', 'Ishaka Adventist Hospital'),
(43582, 37137, 'en', 'name', 'Albert B. Chandler Hospital'),
(43583, 37138, 'en', 'name', 'Clark Fork Valley Hospital'),
(43584, 37139, 'en', 'name', 'Basildon and Thurrock University Hospitals NHS Foundation Trust'),
(43585, 37140, 'en', 'name', 'St Woolos Hospital'),
(43586, 37141, 'en', 'name', 'Itojo Hospital'),
(43587, 37142, 'en', 'name', 'Alta View Hospital'),
(43588, 37143, 'en', 'name', 'Coalinga State Hospital'),
(43589, 37144, 'en', 'name', 'Community Hospital of Long Beach'),
(43590, 37145, 'en', 'name', 'Jinja Hospital'),
(43591, 37146, 'en', 'name', 'St. Brendan''s Hospital'),
(43592, 37147, 'en', 'name', 'Community Hospital of San Bernardino'),
(43593, 37148, 'en', 'name', 'Blaenavon Hospital'),
(43594, 37149, 'en', 'name', 'American Fork Hospital'),
(43595, 37150, 'en', 'name', 'Kabale Hospital'),
(43596, 37151, 'en', 'name', 'Stephen Cottage Hospital'),
(43597, 37152, 'en', 'name', 'Campbell Hospital'),
(43598, 37153, 'en', 'name', 'Stracathro Hospital'),
(43599, 37154, 'en', 'name', 'Kagando Hospital'),
(43600, 37155, 'en', 'name', 'Cefn Coed Hospital'),
(43601, 37156, 'en', 'name', 'Ancora Psychiatric Hospital'),
(43602, 37157, 'en', 'name', 'BMI The Meriden Hospital'),
(43603, 37158, 'en', 'name', 'Kalongo Hospital'),
(43604, 37159, 'en', 'name', 'Cottage Grove Community Medical Center'),
(43605, 37160, 'en', 'name', 'Chesterfield Royal Hospital NHS Foundation Trust'),
(43606, 37161, 'en', 'name', 'AnMed Health Women''s & Children''s Hospital'),
(43607, 37162, 'en', 'name', 'Cooper Green Mercy Hospital'),
(43608, 37163, 'en', 'name', 'Kamuli General Hospital'),
(43609, 37164, 'en', 'name', 'Antelope Valley Hospital'),
(43610, 37165, 'en', 'name', 'Cowal Community Hospital'),
(43611, 37166, 'en', 'name', 'Kamuli Mission Hospital'),
(43612, 37167, 'en', 'name', 'ProMedica Fostoria Community Hospital'),
(43613, 37168, 'en', 'name', 'Arroyo Grande Community Hospital'),
(43614, 37169, 'en', 'name', 'Frank R. Howard Memorial Hospital'),
(43615, 37170, 'en', 'name', 'Ashland Community Hospital'),
(43616, 37171, 'en', 'name', 'Desert Springs Hospital'),
(43617, 37172, 'en', 'name', 'Mercy Defiance Hospital'),
(43618, 37173, 'en', 'name', 'Association of Independent Colleges and Universities in Massachusetts'),
(43619, 37174, 'en', 'name', 'Fremont Memorial Hospital'),
(43620, 37175, 'en', 'name', 'Amita Health St. Mary''s Hospital'),
(43621, 37176, 'es', 'name', 'Asociación de Universidades Jesuitas'),
(43622, 37176, 'fr', 'name', 'Association des universitƩs et facultƩs jƩsuites'),
(43623, 37176, 'en', 'name', 'Association of Jesuit Colleges and Universities'),
(43624, 37177, 'en', 'name', 'Mercy Tiffin Hospital'),
(43625, 37178, 'en', 'name', 'Atascadero State Hospital'),
(43626, 37179, 'en', 'name', 'Desert Valley Hospital'),
(43627, 37180, 'en', 'name', 'Providence Milwaukie Hospital'),
(43628, 37181, 'en', 'name', 'Atlantic General Hospital'),
(43629, 37182, 'en', 'name', 'Duplin General Hospital'),
(43630, 37183, 'en', 'name', 'Grace Cottage Hospital'),
(43631, 37184, 'en', 'name', 'Gracie Square Hospital'),
(43632, 37185, 'en', 'name', 'Mercy Willard Hospital'),
(43633, 37186, 'en', 'name', 'Grande Ronde Hospital'),
(43634, 37187, 'en', 'name', 'Randall Children''s Hospital at Legacy Emanuel'),
(43635, 37188, 'en', 'name', 'Bakersfield Heart Hospital'),
(43636, 37189, 'en', 'name', 'Methodist Hospital'),
(43637, 37190, 'en', 'name', 'Barlow Respiratory Hospital'),
(43638, 37191, 'en', 'name', 'Greater Cincinnati Consortium of Colleges and Universities'),
(43639, 37192, 'en', 'name', 'Raulerson Hospital'),
(43640, 37193, 'en', 'name', 'Barstow Community Hospital'),
(43641, 37194, 'en', 'name', 'Rawson-Neal Hospital'),
(43642, 37195, 'en', 'name', 'Metro Health Hospital'),
(43643, 37196, 'en', 'name', 'Bay Park Community Hospital'),
(43644, 37197, 'en', 'name', 'Rebecca Sealy Hospital'),
(43645, 37198, 'en', 'name', 'Eastern Shore Hospital Center'),
(43646, 37199, 'en', 'name', 'El Camino Hospital'),
(43647, 37200, 'en', 'name', 'Miami Valley Hospital South'),
(43648, 37201, 'en', 'name', 'Rideout Memorial Hospital'),
(43649, 37202, 'en', 'name', 'Eleanor Slater Hospital'),
(43650, 37203, 'en', 'name', 'Bayshore Community Hospital'),
(43651, 37204, 'en', 'name', 'Ridgecrest Regional Hospital'),
(43652, 37205, 'en', 'name', 'Mid Coast Hospital'),
(43653, 37206, 'en', 'name', 'Ben Taub Hospital'),
(43654, 37207, 'en', 'name', 'Encino Hospital Medical Center'),
(43655, 37208, 'en', 'name', 'Rocky Vista University'),
(43656, 37209, 'en', 'name', 'Blue Mountain Hospital'),
(43657, 37210, 'en', 'name', 'Blythedale Children''s Hospital'),
(43658, 37211, 'en', 'name', 'Saint Thomas - Rutherford Hospital'),
(43659, 37212, 'en', 'name', 'Helen Newberry Joy Hospital'),
(43660, 37213, 'en', 'name', 'Bon Secours Hospital'),
(43661, 37214, 'en', 'name', 'Falmouth Hospital'),
(43662, 37215, 'en', 'name', 'Samaritan Albany General Hospital'),
(43663, 37216, 'en', 'name', 'Milford Hospital'),
(43664, 37217, 'en', 'name', 'Boulder City Hospital'),
(43665, 37218, 'en', 'name', 'Fawcett Memorial Hospital'),
(43666, 37219, 'en', 'name', 'Hickman Community Hospital'),
(43667, 37220, 'en', 'name', 'Brattleboro Memorial Hospital'),
(43668, 37221, 'en', 'name', 'Feather River Hospital'),
(43669, 37222, 'en', 'name', 'Samaritan Lebanon Community Hospital'),
(43670, 37223, 'en', 'name', 'Holland Hospital'),
(43671, 37224, 'en', 'name', 'Montclair Hospital Medical Center'),
(43672, 37225, 'en', 'name', 'Samaritan North Lincoln Hospital'),
(43673, 37226, 'en', 'name', 'Finley Hospital'),
(43674, 37227, 'en', 'name', 'Howard County General Hospital'),
(43675, 37228, 'en', 'name', 'Broughton Hospital'),
(43676, 37229, 'en', 'name', 'Flagler Hospital'),
(43677, 37230, 'en', 'name', 'Samaritan Pacific Communities Hospital'),
(43678, 37231, 'en', 'name', 'Bryce Hospital'),
(43679, 37232, 'en', 'name', 'Huntsville Hospital'),
(43680, 37233, 'en', 'name', 'San Antonio Regional Hospital'),
(43681, 37234, 'en', 'name', 'LewisGale Hospital Montgomery'),
(43682, 37235, 'en', 'name', 'St. Luke''s Hospital'),
(43683, 37236, 'en', 'name', 'Santa Paula Hospital'),
(43684, 37237, 'en', 'name', 'AdventHealth East Orlando'),
(43685, 37238, 'en', 'name', 'Indiana Orthopaedic Hospital'),
(43686, 37239, 'en', 'name', 'Morton Hospital'),
(43687, 37240, 'en', 'name', 'Intercultural Open University Foundation'),
(43688, 37241, 'en', 'name', 'St. Rose Dominican Hospital'),
(43689, 37242, 'en', 'name', 'Morton Plant North Bay Hospital'),
(43690, 37243, 'en', 'name', 'AdventHealth Sebring'),
(43691, 37244, 'en', 'name', 'Summa St. Thomas Hospital'),
(43692, 37245, 'en', 'name', 'Mt. Washington Pediatric Hospital'),
(43693, 37246, 'en', 'name', 'Santa Ynez Valley Cottage Hospital'),
(43694, 37247, 'en', 'name', 'AdventHealth Lake Placid'),
(43695, 37248, 'en', 'name', 'Summerlin Hospital Medical Center'),
(43696, 37249, 'en', 'name', 'Sunrise Hospital & Medical Center'),
(43697, 37250, 'en', 'name', 'Sherman Oaks Hospital'),
(43698, 37251, 'en', 'name', 'Napa State Hospital'),
(43699, 37252, 'en', 'name', 'The Bristol-Myers Squibb Children''s Hospital'),
(43700, 37253, 'en', 'name', 'National Association of Independent Colleges and Universities'),
(43701, 37254, 'en', 'name', 'Sierra View Medical Center'),
(43702, 37255, 'en', 'name', 'University Press of Florida'),
(43703, 37256, 'en', 'name', 'Nebraska Orthopaedic Hospital'),
(43704, 37257, 'en', 'name', 'Jersey Community Hospital'),
(43705, 37258, 'es', 'name', 'Hospital del estado de Utah'),
(43706, 37258, 'en', 'name', 'Utah State Hospital'),
(43707, 37259, 'en', 'name', 'Silverton Hospital'),
(43708, 37260, 'en', 'name', 'John Sealy Hospital'),
(43709, 37261, 'en', 'name', 'Newport Hospital'),
(43710, 37262, 'en', 'name', 'Adventist Health Simi Valley'),
(43711, 37263, 'en', 'name', 'The Outer Banks Hospital'),
(43712, 37264, 'en', 'name', 'Valley Regional Hospital'),
(43713, 37265, 'en', 'name', 'Skagit Valley Hospital'),
(43714, 37266, 'en', 'name', 'Vermont State Hospital'),
(43715, 37267, 'en', 'name', 'Norman Regional Hospital'),
(43716, 37268, 'en', 'name', 'Kankakee State Hospital'),
(43717, 37269, 'en', 'name', 'Somerville Hospital'),
(43718, 37270, 'en', 'name', 'Torrance State Hospital'),
(43719, 37271, 'en', 'name', 'Via Christi Hospital'),
(43720, 37272, 'en', 'name', 'Sonoma Valley Hospital'),
(43721, 37273, 'en', 'name', 'Kingston University'),
(43722, 37274, 'en', 'name', 'Norristown State Hospital'),
(43723, 37275, 'en', 'name', 'Vision International University'),
(43724, 37276, 'en', 'name', 'South County Hospital'),
(43725, 37277, 'en', 'name', 'La Palma Intercommunity Hospital'),
(43726, 37278, 'en', 'name', 'Walla Walla General Hospital'),
(43727, 37279, 'en', 'name', 'South Seminole Hospital'),
(43728, 37280, 'en', 'name', 'Lake District Hospital'),
(43729, 37281, 'en', 'name', 'WellStar Douglas Hospital'),
(43730, 37282, 'en', 'name', 'Westerly Hospital'),
(43731, 37283, 'en', 'name', 'Lake Taylor Transitional Care Hospital'),
(43732, 37284, 'en', 'name', 'Trinity Hospital of Augusta'),
(43733, 37285, 'en', 'name', 'Spring Valley Hospital'),
(43734, 37286, 'en', 'name', 'Whidden Memorial Hospital'),
(43735, 37287, 'en', 'name', 'Littleton Adventist Hospital'),
(43736, 37288, 'en', 'name', 'Northeastern Vermont Regional Hospital'),
(43737, 37289, 'en', 'name', 'St. Anne Mercy Hospital'),
(43738, 37290, 'en', 'name', 'Logan Regional Hospital'),
(43739, 37291, 'en', 'name', 'Tuality Forest Grove Hospital'),
(43740, 37292, 'en', 'name', 'St. Anthony Hospital'),
(43741, 37293, 'en', 'name', 'Northridge Hospital Medical Center'),
(43742, 37294, 'en', 'name', 'Longmont United Hospital'),
(43743, 37295, 'en', 'name', 'Union General Hospital'),
(43744, 37296, 'en', 'name', 'Los Robles Hospital & Medical Center'),
(43745, 37297, 'en', 'name', 'Norwood Hospital'),
(43746, 37298, 'en', 'name', 'Willingway Hospital'),
(43747, 37299, 'en', 'name', 'Weiss Memorial Hospital'),
(43748, 37300, 'en', 'name', 'Winnie Palmer Hospital for Women & Babies'),
(43749, 37301, 'en', 'name', 'Mercy St. Charles Hospital'),
(43750, 37302, 'en', 'name', 'Wisconsin Association of Independent Colleges and Universities'),
(43751, 37303, 'en', 'name', 'Novant Health Charlotte Orthopedic Hospital'),
(43752, 37304, 'en', 'name', 'Worcester Recovery Center and Hospital'),
(43753, 37305, 'en', 'name', 'Lourdes Hospital'),
(43754, 37306, 'es', 'name', 'Hospital BritƔnico'),
(43755, 37307, 'en', 'name', 'O’Connor Hospital'),
(43756, 37308, 'en', 'name', 'Lowell General Hospital'),
(43757, 37309, 'es', 'name', 'Hospital Vilardebó'),
(43758, 37310, 'en', 'name', 'St. Cloud Hospital'),
(43759, 37311, 'en', 'name', 'Manchester Memorial Hospital'),
(43760, 37312, 'en', 'name', 'Maple Grove Hospital'),
(43761, 37313, 'en', 'name', 'Olean General Hospital'),
(43762, 37314, 'en', 'name', 'PSB College Vietnam'),
(43763, 37315, 'en', 'name', 'Marina Del Rey Hospital'),
(43764, 37316, 'en', 'name', 'University of the Nations'),
(43765, 37317, 'en', 'name', 'Oregon State Hospital'),
(43766, 37318, 'en', 'name', 'Oroville Hospital'),
(43767, 37319, 'en', 'name', 'Osawatomie State Hospital'),
(43768, 37320, 'en', 'name', 'St. Helena Hospital'),
(43769, 37321, 'en', 'name', 'Oswego Community Hospital'),
(43770, 37322, 'en', 'name', 'Hung Yen University of Technology and Education'),
(43771, 37322, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m Kỹ thuįŗ­t Hʰng YĆŖn'),
(43772, 37323, 'en', 'name', 'St. Helena Hospital'),
(43773, 37324, 'en', 'name', 'Thai Nguyen National General Hospital'),
(43774, 37325, 'en', 'name', 'St. John''s Hospital'),
(43775, 37326, 'en', 'name', 'Marquette General Hospital'),
(43776, 37327, 'vi', 'name', 'Bệnh viện Việt Đức'),
(43777, 37327, 'en', 'name', 'Viet Duc Hospital'),
(43778, 37328, 'en', 'name', 'Our Lady of Bellefonte Hospital'),
(43779, 37329, 'en', 'name', 'Martha''s Vineyard Hospital'),
(43780, 37330, 'en', 'name', 'St. John''s Pleasant Valley Hospital'),
(43781, 37331, 'en', 'name', 'Martin Luther King, Jr. Community Hospital'),
(43782, 37332, 'en', 'name', 'Our Lady of Fatima Hospital'),
(43783, 37333, 'en', 'name', 'St. Joseph Hospital'),
(43784, 37334, 'en', 'name', 'Massac Memorial Hospital'),
(43785, 37335, 'en', 'name', 'Palm Springs General Hospital'),
(43786, 37336, 'en', 'name', 'Palms of Pasadena Hospital'),
(43787, 37337, 'en', 'name', 'St. Luke''s Hospital'),
(43788, 37338, 'en', 'name', 'Palo Verde Hospital'),
(43789, 37339, 'no_lang_code', 'name', 'Karanda Mission Hospital'),
(43790, 37340, 'en', 'name', 'Mease Countryside Hospital'),
(43791, 37341, 'no_lang_code', 'name', 'Kwekwe General Hospital'),
(43792, 37342, 'en', 'name', 'Mease Dunedin Hospital'),
(43793, 37343, 'en', 'name', 'Patton State Hospital'),
(43794, 37344, 'en', 'name', 'Melrose-Wakefield Hospital'),
(43795, 37345, 'en', 'name', 'Peace Harbor Hospital'),
(43796, 37346, 'no_lang_code', 'name', 'Mbuma Mission Hospital'),
(43797, 37347, 'en', 'name', 'Piedmont Henry Hospital'),
(43798, 37348, 'no_lang_code', 'name', 'Murambinda Mission Hospital'),
(43799, 37349, 'en', 'name', 'Piedmont Newnan Hospital'),
(43800, 37350, 'en', 'name', 'PIH Health Hospital'),
(43801, 37351, 'en', 'name', 'Pomerado Hospital'),
(43802, 37352, 'en', 'name', 'Preston University'),
(43803, 37353, 'en', 'name', 'Slovak Environmental Agency'),
(43804, 37354, 'tr', 'name', 'Suluova Devlet Hastanesi'),
(43805, 37355, 'en', 'name', 'Beijing Health Vocational College'),
(43806, 37356, 'en', 'name', 'Defence Metallurgical Research Laboratory'),
(43807, 37357, 'da', 'name', 'Hou Maritime IdrƦtsefterskole'),
(43808, 37358, 'cs', 'name', 'Centrum kardiovaskulĆ”rnĆ­ a transplantačnĆ­ chirurgie'),
(43809, 37359, 'en', 'name', 'Skyline University College'),
(43810, 37360, 'en', 'name', 'Montana Department of Corrections'),
(43811, 37361, 'en', 'name', 'Berlin Partner for Business and Technology'),
(43812, 37362, 'en', 'name', 'West Middlesex University Hospital'),
(43813, 37363, 'en', 'name', 'Nuffield Orthopaedic Centre'),
(43814, 37364, 'en', 'name', 'Los Angeles Pierce College'),
(43815, 37365, 'en', 'name', 'Los Angeles City College'),
(43816, 37366, 'en', 'name', 'Los Angeles Trade Technical College'),
(43817, 37366, 'es', 'name', 'Universidad Comunitaria Vocacional–TĆ©cnica de Los Ɓngeles'),
(43818, 37367, 'en', 'name', 'Los Angeles Valley College'),
(43819, 37368, 'en', 'name', 'Academy of Sciences and Literature'),
(43820, 37368, 'de', 'name', 'Akademie der Wissenschaften und der Literatur Mainz'),
(43821, 37369, 'de', 'name', 'Ingenieure für das Bauwesen'),
(43822, 37370, 'no_lang_code', 'name', 'FMP Technology (Germany)'),
(43823, 37371, 'no_lang_code', 'name', 'InnoCentive (United States)'),
(43824, 37372, 'de', 'name', 'Albertus-Magnus-Institut'),
(43825, 37373, 'en', 'name', 'American Federation for Medical Research'),
(43826, 37374, 'en', 'name', 'American Society of Transplantation'),
(43827, 37375, 'no_lang_code', 'name', 'AMO (Germany)'),
(43828, 37376, 'en', 'name', 'Curt Engelhorn Centre Archaeometry'),
(43829, 37376, 'de', 'name', 'Curt-Engelhorn-Zentrum ArchƤometrie'),
(43830, 37377, 'en', 'name', 'Frankfurt School of Finance & Management'),
(43831, 37377, 'de', 'name', 'Hochschule für Bankwirtschaft'),
(43832, 37378, 'en', 'name', 'Duchess Anna Amalia Library'),
(43833, 37378, 'de', 'name', 'Herzogin Anna Amalia Bibliothek'),
(43834, 37379, 'en', 'name', 'Annenberg Center for Health Sciences at Eisenhower'),
(43835, 37380, 'de', 'name', 'Institut für Arbeitsrecht und Arbeitsbeziehungen in der Europäischen Union'),
(43836, 37380, 'en', 'name', 'Institute for Labour Law and Industrial Relations in the European Union'),
(43837, 37381, 'en', 'name', 'Academy of Arts'),
(43838, 37381, 'de', 'name', 'Die Akademie der Künste'),
(43839, 37382, 'de', 'name', 'Institut für die Geschichte der deutschen Juden'),
(43840, 37382, 'en', 'name', 'Institute for the History of the German Jews'),
(43841, 37383, 'en', 'name', 'Association of Organ Procurement Organizations'),
(43842, 37384, 'de', 'name', 'Institut für EnergieTransformation'),
(43843, 37385, 'no_lang_code', 'name', 'Total (Germany)'),
(43844, 37386, 'de', 'name', 'Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen'),
(43845, 37387, 'de', 'name', 'Institut für Grenzgebiete der Psychologie und Psychohygiene'),
(43846, 37388, 'de', 'name', 'Hochschule für Jüdische Studien'),
(43847, 37389, 'de', 'name', 'Frankfurter Goethe Haus – Freies Deutsches Hochstift'),
(43848, 37390, 'de', 'name', 'Hochschule für Musik Franz Liszt Weimar'),
(43849, 37390, 'en', 'name', 'University of Music FRANZ LISZT Weimar'),
(43850, 37391, 'en', 'name', 'Cologne University of Music'),
(43851, 37391, 'de', 'name', 'Hochschule für Musik und Tanz Köln'),
(43852, 37392, 'de', 'name', 'Institut für Luft- und Kältetechnik'),
(43853, 37392, 'en', 'name', 'Institute of Air Handling and Refrigeration'),
(43854, 37393, 'de', 'name', 'Deutsches Forschungsinstitut für öffentliche Verwaltung'),
(43855, 37393, 'en', 'name', 'German Research Institute for Public Administration'),
(43856, 37394, 'no_lang_code', 'name', 'BioCer Entwicklungs (Germany)'),
(43857, 37395, 'de', 'name', 'Leibniz-Zentrum für Literatur- und Kulturforschung'),
(43858, 37396, 'de', 'name', 'Institut für Sächsische Geschichte und Volkskunde'),
(43859, 37397, 'en', 'name', 'General Numerics Research Lab'),
(43860, 37398, 'en', 'name', 'Eglin Air Force Base'),
(43861, 37399, 'de', 'name', 'Brandenburgisches Landesamt für Denkmalpflege und Archäologisches Landesmuseum'),
(43862, 37400, 'en', 'name', 'Hanscom Air Force Base'),
(43863, 37401, 'de', 'name', 'Hochschule Neubrandenburg'),
(43864, 37401, 'en', 'name', 'Neubrandenburg University of Applied Sciences'),
(43865, 37402, 'en', 'name', 'Brandenburg Main State Archive'),
(43866, 37402, 'de', 'name', 'Brandenburgisches Landeshauptarchiv'),
(43867, 37403, 'en', 'name', 'Joint Base San Antonio'),
(43868, 37404, 'de', 'name', 'Deutsches Institut für Kautschuktechnologie'),
(43869, 37404, 'en', 'name', 'German Institute of Rubber Technology'),
(43870, 37405, 'de', 'name', 'Deutsches Literaturarchiv'),
(43871, 37405, 'en', 'name', 'German Literature Archive'),
(43872, 37406, 'en', 'name', 'Ibero-American Institute'),
(43873, 37406, 'de', 'name', 'Ibero-Amerikanisches Institut'),
(43874, 37406, 'es', 'name', 'Instituto Ibero-Americano Patrimonio Cultural Prusiano'),
(43875, 37407, 'en', 'name', 'Georg Kolbe Museum'),
(43876, 37408, 'en', 'name', 'Korea Centre for Atmospheric Environment Research'),
(43877, 37409, 'de', 'name', 'Deutsches Orient-Institut'),
(43878, 37409, 'en', 'name', 'German Orient Foundation'),
(43879, 37410, 'en', 'name', 'Mevlana University Hospital'),
(43880, 37411, 'de', 'name', 'Bundesarchiv'),
(43881, 37411, 'en', 'name', 'German Federal Archives'),
(43882, 37412, 'de', 'name', 'Bundeskanzleramt'),
(43883, 37412, 'en', 'name', 'German Federal Chancellery'),
(43884, 37413, 'no_lang_code', 'name', 'CD-adapco (Germany)'),
(43885, 37414, 'de', 'name', 'Germanisches Nationalmuseum'),
(43886, 37415, 'de', 'name', 'Katholisches Klinikum Bochum'),
(43887, 37416, 'en', 'name', 'Documenta Archive'),
(43888, 37417, 'de', 'name', 'Integrierte Forschungs- und Behandlungszentren'),
(43889, 37418, 'de', 'name', 'Carl Gustav Carus-Institut'),
(43890, 37419, 'en', 'name', 'International Psychoanalytic University Berlin'),
(43891, 37420, 'de', 'name', 'Gesellschaft zur Fƶrderung der Naturwissenschaftlich-Technischen Forschung'),
(43892, 37421, 'de', 'name', 'Kliniken der Stadt Kƶln'),
(43893, 37422, 'de', 'name', 'Endokrinologikum'),
(43894, 37423, 'de', 'name', 'Kliniken Essen-Mitte'),
(43895, 37424, 'de', 'name', 'Gottfried Wilhelm Leibniz Bibliothek'),
(43896, 37425, 'no_lang_code', 'name', 'Climate Risk Analysis (Germany)'),
(43897, 37426, 'de', 'name', 'Joseph Haydn-Institut'),
(43898, 37427, 'en', 'name', 'Leibniz Institute for Plasma Science and Technology'),
(43899, 37427, 'de', 'name', 'Leibniz-Institut für Plasmaforschung und Technologie'),
(43900, 37428, 'en', 'name', 'Jewish Museum Berlin'),
(43901, 37428, 'de', 'name', 'Jüdisches Museum Berlin'),
(43902, 37429, 'de', 'name', 'Klinikum Vest'),
(43903, 37430, 'de', 'name', 'Kommission für Geschichte des Parlamentarismus und der politischen Parteien'),
(43904, 37431, 'la', 'name', 'Monumenta Germaniae Historica'),
(43905, 37432, 'en', 'name', 'European Liaison Office of the German Research Organisations'),
(43906, 37432, 'de', 'name', 'Kooperationsstelle EU der Wissenschaftsorganisationen'),
(43907, 37433, 'de', 'name', 'Polymet Jena'),
(43908, 37434, 'no_lang_code', 'name', 'Polymer Standards Service (Germany)'),
(43909, 37435, 'en', 'name', 'Alliance for European Diabetes Research'),
(43910, 37436, 'de', 'name', 'Münchner Stadtbibliothek'),
(43911, 37437, 'de', 'name', 'Praxis für Humangenetik'),
(43912, 37438, 'no_lang_code', 'name', 'Life Science Center Düsseldorf (Germany)'),
(43913, 37439, 'de', 'name', 'Kunst- und Museumsbibliothek der Stadt Kƶln'),
(43914, 37440, 'de', 'name', 'Praxisklinik für Orthopädie, Unfall- und Neurochirurgie'),
(43915, 37441, 'de', 'name', 'Literaturarchiv'),
(43916, 37442, 'en', 'name', 'Archaeological Heritage Office in Saxony'),
(43917, 37442, 'de', 'name', 'Landesamt für Archäologie Sachsen'),
(43918, 37443, 'de', 'name', 'Landesamt für Denkmalpflege Hessen'),
(43919, 37444, 'de', 'name', 'Landesamt für Denkmalpflege und Archäologie Sachsen-Anhalt'),
(43920, 37445, 'de', 'name', 'LVR-Klinik Kƶln'),
(43921, 37446, 'de', 'name', 'Niedersächsisches Institut für frühkindliche Bildung und Entwicklung'),
(43922, 37447, 'no_lang_code', 'name', 'Senseonics (United States)'),
(43923, 37448, 'de', 'name', 'Niedersächsisches Landesamt für Denkmalpflege'),
(43924, 37449, 'de', 'name', 'Landesarchiv Nordrhein-Westfalen'),
(43925, 37450, 'de', 'name', 'NiedersƤchsisches Landesarchiv'),
(43926, 37451, 'en', 'name', 'Lower Saxony State Museum'),
(43927, 37451, 'de', 'name', 'NiedersƤchsisches Landesmuseum Hannover'),
(43928, 37452, 'de', 'name', 'Martin-Luther-Krankenhaus'),
(43929, 37453, 'de', 'name', 'RegierungsprƤsidium Stuttgart'),
(43930, 37454, 'no_lang_code', 'name', 'Smiths Group (United Kingdom)'),
(43931, 37455, 'en', 'name', 'Reiss Engelhorn Museum'),
(43932, 37455, 'de', 'name', 'Reiss-Engelhorn-Museen'),
(43933, 37456, 'de', 'name', 'Landesarchiv Sachsen-Anhalt'),
(43934, 37457, 'no_lang_code', 'name', 'Research Management Systems (United States)'),
(43935, 37458, 'de', 'name', 'Max Bergmann Zentrum für Biomaterialien'),
(43936, 37459, 'en', 'name', 'Dresden State Art Collections'),
(43937, 37459, 'de', 'name', 'Staatliche Kunstsammlungen Dresden'),
(43938, 37460, 'de', 'name', 'Landesmuseum Württemberg'),
(43939, 37461, 'en', 'name', 'Max Planck Institute for Comparative Public Law and International Law'),
(43940, 37461, 'de', 'name', 'Max-Planck-Institut für ausländisches öffentliches Recht und Völkerrecht'),
(43941, 37462, 'en', 'name', 'Max Planck Institute for Comparative and International Private Law'),
(43942, 37462, 'de', 'name', 'Max-Planck-Institut für Ausländisches und Internationales Privatrecht'),
(43943, 37463, 'en', 'name', 'Pacific Research Institute'),
(43944, 37464, 'no_lang_code', 'name', 'RLP AgroScience (Germany)'),
(43945, 37465, 'de', 'name', 'PƤdagogische Hochschule Freiburg'),
(43946, 37465, 'en', 'name', 'University of Education Freiburg'),
(43947, 37466, 'en', 'name', 'Five Continents Museum'),
(43948, 37466, 'de', 'name', 'Staatliches Museum für Völkerkunde'),
(43949, 37467, 'de', 'name', 'Robert Schumann Hochschule'),
(43950, 37467, 'en', 'name', 'Robert Schumann University of Music and Media'),
(43951, 37468, 'en', 'name', 'Max Planck Institute for Empirical Aesthetics'),
(43952, 37468, 'de', 'name', 'Max-Planck-Institut für Empirische Ƅsthetik'),
(43953, 37469, 'en', 'name', 'Max Planck Institute for Social Anthropology'),
(43954, 37469, 'de', 'name', 'Max-Planck-Institut für Ethnologische Forschung'),
(43955, 37470, 'de', 'name', 'Staatsarchiv Bremen'),
(43956, 37471, 'en', 'name', 'Bamberg State Library'),
(43957, 37471, 'de', 'name', 'Staatsbibliothek Bamberg'),
(43958, 37472, 'en', 'name', 'Leibniz Institute of Vegetable and Ornamental Crops'),
(43959, 37472, 'de', 'name', 'Leibniz-Institut für Gemüse- und Zierpflanzenbau'),
(43960, 37473, 'en', 'name', 'Leibniz Institute for Crystal Growth'),
(43961, 37473, 'de', 'name', 'Leibniz-Institut für Kristallzüchtung'),
(43962, 37474, 'de', 'name', 'Stiftung Schleswig-Holsteinische Landesmuseen'),
(43963, 37475, 'en', 'name', 'Leibniz Institute for Regional Geography'),
(43964, 37475, 'de', 'name', 'Leibniz-Institut für Länderkunde'),
(43965, 37476, 'en', 'name', 'StƤdel Museum'),
(43966, 37476, 'de', 'name', 'StƤdelsches Kunstinstitut und StƤdtische Galerie'),
(43967, 37477, 'en', 'name', 'Max Planck Institute for Molecular Biomedicine'),
(43968, 37477, 'de', 'name', 'Max-Planck-Institut für Molekulare Biomedizin'),
(43969, 37478, 'en', 'name', 'Leibniz Institute of Surface Engineering'),
(43970, 37478, 'de', 'name', 'Leibniz-Institut für Oberflächenmodifizierung'),
(43971, 37479, 'de', 'name', 'Klinikum Bielefeld'),
(43972, 37480, 'de', 'name', 'SƤchsisches Staatsarchiv'),
(43973, 37481, 'de', 'name', 'Stadtarchiv Erfurt'),
(43974, 37482, 'en', 'name', 'Max Planck Institute for Tax Law and Public Finance'),
(43975, 37482, 'de', 'name', 'Max-Planck-Institut für Steuerrecht und Ɩffentliche Finanzen'),
(43976, 37483, 'de', 'name', 'Stadtarchiv Gifhorn'),
(43977, 37484, 'en', 'name', 'T1D Exchange'),
(43978, 37485, 'de', 'name', 'Stadtarchiv Grevesmühlen'),
(43979, 37486, 'de', 'name', 'Stadtarchiv Ibbenbüren'),
(43980, 37487, 'de', 'name', 'Stadtarchiv Mainz'),
(43981, 37488, 'de', 'name', 'Stadtarchiv Worms'),
(43982, 37489, 'de', 'name', 'Stadtbibliothek Nürnberg'),
(43983, 37490, 'en', 'name', 'University Hospital in Halle'),
(43984, 37490, 'de', 'name', 'UniversitƤtsklinikum Halle'),
(43985, 37491, 'de', 'name', 'Thüringisches Hauptstaatsarchiv Weimar'),
(43986, 37492, 'en', 'name', 'Steinbeis University Berlin'),
(43987, 37492, 'de', 'name', 'Steinbeis-Hochschule Berlin'),
(43988, 37493, 'en', 'name', 'The Rogosin Institute'),
(43989, 37494, 'de', 'name', 'Hanseatic Wirtschaftsarchiv'),
(43990, 37495, 'en', 'name', 'Berlin Central and Regional Library'),
(43991, 37495, 'de', 'name', 'Zentral- und Landesbibliothek Berlin'),
(43992, 37496, 'en', 'name', 'Prussian Palaces and Gardens Foundation Berlin Brandenburg'),
(43993, 37496, 'de', 'name', 'Stiftung Preußische Schlösser und Gärten Berlin-Brandenburg'),
(43994, 37497, 'en', 'name', 'Central Institute for Art History'),
(43995, 37497, 'de', 'name', 'Zentralinstitut für Kunstgeschichte'),
(43996, 37498, 'en', 'name', 'Common Library Network'),
(43997, 37498, 'de', 'name', 'Verbundzentrale des GBV'),
(43998, 37499, 'tr', 'name', 'Ankara Mevki Asker Hastanesi'),
(43999, 37500, 'en', 'name', 'Lishui Maternity and Child Health Care Hospital'),
(44000, 37501, 'en', 'name', 'Southampton Children''s Hospital'),
(44001, 37502, 'it', 'name', 'Azienda USL di Pescara'),
(44002, 37503, 'en', 'name', 'Yunnan Forestry Vocational and Technical College'),
(44003, 37504, 'no_lang_code', 'name', 'Bruker (Canada)'),
(44004, 37505, 'no_lang_code', 'name', 'Buchang Pharma (China)'),
(44005, 37506, 'no_lang_code', 'name', 'Gibson Innovations (Belgium)'),
(44006, 37507, 'it', 'name', 'Ospedale Buon Consiglio Fatebenefratelli'),
(44007, 37508, 'en', 'name', 'Dahua Hospital'),
(44008, 37509, 'de', 'name', 'Krankenhaus Oberndorf'),
(44009, 37510, 'en', 'name', 'Airport Shunyi District Hospital'),
(44010, 37511, 'en', 'name', 'North-West State Technical University'),
(44011, 37512, 'en', 'name', 'Shanxi Taiyuan Jinkang Rheumatism Hospital'),
(44012, 37513, 'no_lang_code', 'name', 'Emam Reza Hospital'),
(44013, 37514, 'en', 'name', 'Dalian Jinzhou First People''s Hospital'),
(44014, 37515, 'ro', 'name', 'Spitalul Clinic Dr. C. I. Parhon'),
(44015, 37516, 'en', 'name', 'UPMC Presbyterian'),
(44016, 37517, 'en', 'name', 'West China Second University Hospital of Sichuan University'),
(44017, 37518, 'en', 'name', 'Henan Provincial Eye Hospital'),
(44018, 37518, 'zh', 'name', 'ę²³å—ēœēœ¼ē§‘ē ”ē©¶ę‰€'),
(44019, 37519, 'en', 'name', 'Gansu Provincial Cancer Hospital Gansu Provincial Academic Instiute for Medical Research'),
(44020, 37519, 'zh', 'name', 'ē”˜č‚ƒēœåŒ»å­¦ē§‘å­¦ē ”ē©¶é™¢'),
(44021, 37520, 'tr', 'name', 'Diyarbakır Gazi Yaşargil Eğitim ve Araştırma Hastanesi'),
(44022, 37521, 'en', 'name', 'Nanjing Traditional Chinese Medicine Hospital'),
(44023, 37522, 'en', 'name', 'Scripps Green Hospital'),
(44024, 37523, 'en', 'name', 'Nishikawa Hospital'),
(44025, 37524, 'no_lang_code', 'name', 'Cosmo Bio (Japan)'),
(44026, 37525, 'fr', 'name', 'Centre Hospitalier Universitaire Yalgado OuƩdraogo'),
(44027, 37526, 'en', 'name', 'Priory Hospital Altrincham'),
(44028, 37527, 'no_lang_code', 'name', 'Oida Hospital'),
(44029, 37528, 'no_lang_code', 'name', 'Tianjin Hi-Tech Superconducting Electronic Technology (China)'),
(44030, 37529, 'en', 'name', 'University clinical center of Republika Srpska'),
(44031, 37530, 'no_lang_code', 'name', 'Weifang Chinese Medicine Hospital'),
(44032, 37531, 'en', 'name', 'Shengli Oilfield Central Hospital'),
(44033, 37532, 'no_lang_code', 'name', 'Aquatic Farms (United States)'),
(44034, 37533, 'en', 'name', 'He Eye Hospital'),
(44035, 37534, 'de', 'name', 'Helmholtz-Institut Münster'),
(44036, 37534, 'en', 'name', 'Helmholtz-Institute Münster'),
(44037, 37535, 'en', 'name', 'Helmholtz Institute Mainz'),
(44038, 37535, 'de', 'name', 'Helmholtz-Institut Mainz'),
(44039, 37536, 'en', 'name', 'Helmholtz Institute for Pharmaceutical Research Saarland'),
(44040, 37536, 'de', 'name', 'Helmholtz-Institut für Pharmazeutische Forschung Saarland'),
(44041, 37537, 'no_lang_code', 'name', 'DBV Technologies (France)'),
(44042, 37538, 'es', 'name', 'Centro de Ciencias Penales y PolĆ­tica Criminal'),
(44043, 37539, 'no_lang_code', 'name', 'Ablynx (Belgium)'),
(44044, 37540, 'de', 'name', 'Bayerische Staatssammlung für Paläontologie und Geologie'),
(44045, 37541, 'en', 'name', 'De Lin Institute of Technology'),
(44046, 37541, 'zh', 'name', 'å¾·éœ–ęŠ€č”“å­øé™¢'),
(44047, 37542, 'en', 'name', 'Accra Technical University'),
(44048, 37543, 'en', 'name', 'Defence Research and Development Laboratory'),
(44049, 37543, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(44050, 37544, 'en', 'name', 'Cerro Coso Community College'),
(44051, 37545, 'en', 'name', 'Defense Language Institute Foreign Language Center'),
(44052, 37546, 'en', 'name', 'Adventist International Institute of Advanced Studies'),
(44053, 37547, 'en', 'name', 'Chattahoochee Technical College'),
(44054, 37548, 'en', 'name', 'Evangelical Theological Faculty'),
(44055, 37548, 'de', 'name', 'Evangelische Theologische Faculteit'),
(44056, 37548, 'nl', 'name', 'Evangelische Theologische Faculteit Leuven'),
(44057, 37548, 'fr', 'name', 'FacultƩ de thƩologie ƩvangƩlique de louvain'),
(44058, 37549, 'en', 'name', 'Chesapeake College'),
(44059, 37550, 'en', 'name', 'Agriculture Fisheries and Conservation Department'),
(44060, 37550, 'zh', 'name', '漁農自然護理署'),
(44061, 37551, 'en', 'name', 'Department of Corrections'),
(44062, 37552, 'de', 'name', 'Evangelische Hochschule Ludwigsburg'),
(44063, 37553, 'en', 'name', 'Berlin School of Economics and Law'),
(44064, 37553, 'de', 'name', 'Hochschule für Wirtschaft und Recht'),
(44065, 37554, 'en', 'name', 'Christ the King Seminary'),
(44066, 37555, 'en', 'name', 'Department of Health'),
(44067, 37555, 'zh', 'name', 'č”žē”Ÿē½²'),
(44068, 37556, 'en', 'name', 'Faulkner State Community College'),
(44069, 37557, 'en', 'name', 'Fayetteville Technical Community College'),
(44070, 37558, 'en', 'name', 'Alamance Community College'),
(44071, 37559, 'en', 'name', 'Bible College of South Australia'),
(44072, 37560, 'en', 'name', 'Biblical Theological Seminary'),
(44073, 37561, 'en', 'name', 'All Hallows College'),
(44074, 37562, 'de', 'name', 'Bibliotheca Hertziana - Max-Planck-Institut für Kunstgeschichte'),
(44075, 37562, 'en', 'name', 'Bibliotheca Hertziana – Max Planck Institute for Art History'),
(44076, 37563, 'en', 'name', 'Citrus College'),
(44077, 37564, 'es', 'name', 'Comisión Federal de Comunicaciones'),
(44078, 37564, 'en', 'name', 'Federal Communications Commission'),
(44079, 37565, 'fr', 'name', 'BibliothĆØque Nationale du Royaume du Maroc'),
(44080, 37566, 'en', 'name', 'Technical College System of Georgia'),
(44081, 37567, 'en', 'name', 'City and Islington College'),
(44082, 37568, 'en', 'name', 'Alvin Community College'),
(44083, 37569, 'en', 'name', 'City College Brighton and Hove'),
(44084, 37570, 'en', 'name', 'City College Coventry'),
(44085, 37571, 'en', 'name', 'American College, Madurai'),
(44086, 37572, 'en', 'name', 'American Indian College'),
(44087, 37573, 'en', 'name', 'American School of Classical Studies at Athens'),
(44088, 37573, 'el', 'name', 'Αμερικανική Σχολή ĪšĪ»Ī±ĻƒĪ¹ĪŗĻŽĪ½ Ī£Ļ€ĪæĻ…Ī“ĻŽĪ½ ĻƒĻ„Ī·Ī½ Αθήνα'),
(44089, 37574, 'en', 'name', 'City of Bristol College'),
(44090, 37575, 'en', 'name', 'American School of Milan'),
(44091, 37576, 'en', 'name', 'American School of Warsaw'),
(44092, 37577, 'en', 'name', 'Andover Newton Theological School'),
(44093, 37578, 'en', 'name', 'Angelina College'),
(44094, 37579, 'en', 'name', 'Appalachian Bible College'),
(44095, 37580, 'en', 'name', 'Clover Park Technical College'),
(44096, 37581, 'de', 'name', 'Archäologisches Landesmuseum Baden-Württemberg'),
(44097, 37582, 'en', 'name', 'Clovis Community College'),
(44098, 37583, 'en', 'name', 'Arkansas Public Service Commission'),
(44099, 37584, 'en', 'name', 'Texas Health Arlington Memorial'),
(44100, 37585, 'en', 'name', 'Coahoma Community College'),
(44101, 37586, 'en', 'name', 'Cochise College'),
(44102, 37587, 'en', 'name', 'Kazakh-Russian International University'),
(44103, 37588, 'en', 'name', 'ASA University Bangladesh'),
(44104, 37588, 'bn', 'name', 'আশা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ বাংলাদেশ'),
(44105, 37589, 'en', 'name', 'Asbury Theological Seminary'),
(44106, 37590, 'en', 'name', 'Asheville–Buncombe Technical Community College'),
(44107, 37591, 'en', 'name', 'Asian Development Bank'),
(44108, 37591, 'tl', 'name', 'Bangko sa Pagpapaunlad ng Asya'),
(44109, 37592, 'en', 'name', 'Asnuntuck Community College'),
(44110, 37593, 'en', 'name', 'College of Biblical Studies'),
(44111, 37594, 'en', 'name', 'College of Islamic and Arabic Studies'),
(44112, 37594, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الدراسات Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ŁˆŲ§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(44113, 37595, 'en', 'name', 'College of Southern Idaho'),
(44114, 37596, 'en', 'name', 'College of West Anglia'),
(44115, 37597, 'en', 'name', 'Columbia Bible College'),
(44116, 37598, 'en', 'name', 'Columbia Gorge Community College'),
(44117, 37599, 'en', 'name', 'Atlanta Metropolitan State College'),
(44118, 37600, 'en', 'name', 'Atlantic Cape Community College'),
(44119, 37601, 'en', 'name', 'Community College of Aurora'),
(44120, 37602, 'en', 'name', 'Community College of Denver'),
(44121, 37603, 'en', 'name', 'Confederation College'),
(44122, 37604, 'en', 'name', 'Contra Costa College'),
(44123, 37605, 'de', 'name', 'Augustana-Hochschule Neuendettelsau'),
(44124, 37606, 'en', 'name', 'Austin Presbyterian Theological Seminary'),
(44125, 37607, 'en', 'name', 'Copper Mountain College'),
(44126, 37608, 'en', 'name', 'Coquitlam College'),
(44127, 37609, 'en', 'name', 'Australian Lutheran College'),
(44128, 37610, 'en', 'name', 'Cosumnes River College'),
(44129, 37611, 'no_lang_code', 'name', 'B. Braun (Germany)'),
(44130, 37612, 'en', 'name', 'BA School of Business and Finance'),
(44131, 37612, 'lv', 'name', 'Banku Augstskola'),
(44132, 37613, 'en', 'name', 'Covenant Theological Seminary'),
(44133, 37614, 'en', 'name', 'Bahrain Polytechnic'),
(44134, 37614, 'ar', 'name', 'ŲØŁˆŁ„ŁŠŲŖŁƒŁ†Łƒ Ų§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(44135, 37615, 'en', 'name', 'Crafton Hills College'),
(44136, 37616, 'en', 'name', 'Bainbridge State College'),
(44137, 37617, 'en', 'name', 'Criswell College'),
(44138, 37618, 'en', 'name', 'Bangladesh Agricultural Research Institute'),
(44139, 37618, 'bn', 'name', 'বাংলাদেশ ą¦•ą§ƒą¦·ą¦æ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(44140, 37619, 'es', 'name', 'Banco de la RepĆŗblica Colombia'),
(44141, 37620, 'en', 'name', 'Fourth Paradigm Institute'),
(44142, 37621, 'en', 'name', 'Banner Lassen Medical Center'),
(44143, 37622, 'en', 'name', 'Baptist Bible College'),
(44144, 37623, 'en', 'name', 'Baptist College of Health Sciences'),
(44145, 37624, 'en', 'name', 'Cumberland County College'),
(44146, 37625, 'en', 'name', 'Barton Community College'),
(44147, 37626, 'en', 'name', 'Cyprus College'),
(44148, 37627, 'en', 'name', 'Bay State College'),
(44149, 37628, 'en', 'name', 'Daegu Health College'),
(44150, 37628, 'ko', 'name', 'ėŒ€źµ¬ė³“ź±“ėŒ€ķ•™źµ'),
(44151, 37629, 'de', 'name', 'Bauernmuseum Bamberger Land'),
(44152, 37630, 'en', 'name', 'Birla Institute of Technology and Science, Pilani - Goa Campus'),
(44153, 37631, 'en', 'name', 'Dawson Community College'),
(44154, 37632, 'en', 'name', 'Black Hawk College'),
(44155, 37633, 'en', 'name', 'Department of Public'),
(44156, 37634, 'en', 'name', 'Department of the Treasury'),
(44157, 37635, 'en', 'name', 'Blackhawk Technical College'),
(44158, 37636, 'de', 'name', 'Deutsche Gesellschaft für Auswärtige Politik'),
(44159, 37636, 'en', 'name', 'German Council on Foreign Relations'),
(44160, 37637, 'en', 'name', 'Bladen Community College'),
(44161, 37638, 'en', 'name', 'Blue Ridge Community College'),
(44162, 37639, 'en', 'name', 'Bluegrass Community and Technical College'),
(44163, 37640, 'de', 'name', 'Deutsches Zentrum für Altersfragen'),
(44164, 37640, 'en', 'name', 'German Centre of Gerontology'),
(44165, 37641, 'no_lang_code', 'name', 'Syngenta (Belgium)'),
(44166, 37642, 'en', 'name', 'Dodge City Community College'),
(44167, 37643, 'en', 'name', 'Dominican House of Studies'),
(44168, 37644, 'en', 'name', 'Box Hill Institute'),
(44169, 37645, 'en', 'name', 'Bradford College, England'),
(44170, 37646, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (India)'),
(44171, 37646, 'hi', 'name', 'ą¤”ą„‰. ą¤°ą„‡ą¤”ą„ą¤”ą„€ą¤œ ą¤²ą„‡ą¤¬ą„‹ą¤°ą„‡ą¤Ÿą¤°ą„€ą¤œ'),
(44172, 37646, 'ta', 'name', 'டா. ą®°ąÆ†ą®ŸąÆą®ŸąÆ€ą®šąÆ'),
(44173, 37646, 'te', 'name', 'ఔా. ą°°ą±†ą°”ą±ą°”ą±€ą°øą± ą°²ą±ą°Æą°¾ą°¬ą±ą°øą±'),
(44174, 37646, 'kn', 'name', 'ಔಾ. ą²°ą³†ą²”ą³ą²”ą³€''ą²øą³ ą²²ą³ą²Æą²¾ą²¬ą³‹ą²°ą³‡ą²Ÿą²°ą³€ą²øą³'),
(44175, 37647, 'en', 'name', 'Brazilian Naval School'),
(44176, 37647, 'pt', 'name', 'Escola Naval'),
(44177, 37648, 'en', 'name', 'Dublin Business School'),
(44178, 37649, 'en', 'name', 'Bridgwater College'),
(44179, 37650, 'en', 'name', 'Brigham Young University–Hawaii'),
(44180, 37651, 'en', 'name', 'Durango Institute of Technology'),
(44181, 37651, 'es', 'name', 'Instituto Tecnológico de Durango'),
(44182, 37652, 'en', 'name', 'Britannia Royal Naval College'),
(44183, 37653, 'en', 'name', 'Eastern Idaho Technical College'),
(44184, 37654, 'en', 'name', 'Bryn Athyn College'),
(44185, 37655, 'en', 'name', 'Bucks County Community College'),
(44186, 37656, 'en', 'name', 'Bureau of Land Management'),
(44187, 37657, 'en', 'name', 'Business School Lausanne'),
(44188, 37658, 'en', 'name', 'Butler Community College'),
(44189, 37659, 'en', 'name', 'Calvin Theological Seminary'),
(44190, 37660, 'en', 'name', 'Canadian Forces College'),
(44191, 37661, 'en', 'name', 'Canning College'),
(44192, 37662, 'no_lang_code', 'name', 'Capital Fund Management (France)'),
(44193, 37663, 'en', 'name', 'Carilion New River Valley Medical Center'),
(44194, 37664, 'en', 'name', 'Carroll Community College');
INSERT INTO `ror_settings` VALUES
(44195, 37665, 'en', 'name', 'Casper College'),
(44196, 37666, 'en', 'name', 'Catawba Valley Community College'),
(44197, 37667, 'en', 'name', 'Cedar Valley College'),
(44198, 37668, 'en', 'name', 'Central Alabama Community College'),
(44199, 37669, 'en', 'name', 'Wuhan National Laboratory for Optoelectronics'),
(44200, 37670, 'en', 'name', 'Central Baptist College'),
(44201, 37671, 'en', 'name', 'Central Carolina Community College'),
(44202, 37672, 'en', 'name', 'Central Electronics Engineering Research Institute'),
(44203, 37672, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ ą¤¦ą„ą¤°ą„€ą¤Æ ą¤‡ą¤²ą„‡ą¤•ą„ ą¤Ÿą„ą¤°ą„‹ą¤Øą¤æą¤•ą„€ ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ ऄान (ą¤øą„€ą¤°ą„€)'),
(44204, 37673, 'en', 'name', 'Central Institute of Indian Languages'),
(44205, 37673, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ भाषा ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(44206, 37673, 'or', 'name', 'ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ą¬­ą¬¾ą¬°ą¬¤ą­€ą­Ÿ ଭାଷା ą¬Ŗą­ą¬°ą¬¤ą¬æą¬·ą­ą¬ ą¬¾ą¬Ø'),
(44207, 37673, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆŠą®“ą®æą®•ą®³ą®æą®©ąÆ ą®Øą®ŸąÆą®µą®£ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(44208, 37674, 'en', 'name', 'Central Institute of Technology'),
(44209, 37675, 'en', 'name', 'Central Lakes College'),
(44210, 37676, 'en', 'name', 'School of Business and Management'),
(44211, 37677, 'fr', 'name', 'Institut FranƧais de la Brasserie et de la Malterie'),
(44212, 37678, 'en', 'name', 'Florida Coastal School of Law'),
(44213, 37679, 'de', 'name', 'Focke Museum'),
(44214, 37680, 'no_lang_code', 'name', 'Foley Hoag (United States)'),
(44215, 37681, 'en', 'name', 'Folsom Lake College'),
(44216, 37682, 'en', 'name', 'Emilio Aguinaldo College'),
(44217, 37682, 'tl', 'name', 'Kolehiyong Emilio Aguinaldo'),
(44218, 37683, 'en', 'name', 'Emirates College for Advanced Education'),
(44219, 37684, 'de', 'name', 'AuswƤrtiges Amt'),
(44220, 37684, 'en', 'name', 'Federal Foreign Office'),
(44221, 37685, 'en', 'name', 'Forsyth Technical Community College'),
(44222, 37686, 'en', 'name', 'Frank Phillips College'),
(44223, 37687, 'en', 'name', 'Marienfelde Refugee Center Museum'),
(44224, 37688, 'en', 'name', 'Frobenius Institute for Research in Cultural Anthropology'),
(44225, 37688, 'de', 'name', 'Frobenius-Institut'),
(44226, 37689, 'en', 'name', 'Front Range Community College'),
(44227, 37690, 'en', 'name', 'Eston College'),
(44228, 37691, 'en', 'name', 'Garda SƭochƔna College'),
(44229, 37692, 'en', 'name', 'Gaston College'),
(44230, 37693, 'en', 'name', 'Gratz College'),
(44231, 37694, 'en', 'name', 'Gateway Community and Technical College'),
(44232, 37695, 'en', 'name', 'Gavilan College'),
(44233, 37696, 'en', 'name', 'Great Basin College'),
(44234, 37697, 'de', 'name', 'Geisteswissenschaftliche Zentren Berlin'),
(44235, 37698, 'en', 'name', 'Great Lakes Christian College'),
(44236, 37699, 'en', 'name', 'Hopkinsville Community College'),
(44237, 37700, 'de', 'name', 'Hessisches Landesmuseum Darmstadt'),
(44238, 37701, 'en', 'name', 'Great Plains College'),
(44239, 37702, 'en', 'name', 'Horizon College and Seminary'),
(44240, 37703, 'en', 'name', 'Housatonic Community College'),
(44241, 37704, 'en', 'name', 'Higher Technological Institute'),
(44242, 37704, 'ar', 'name', 'المعهد Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ Ų§Ł„Ų¹Ų§Ł„ŁŠ'),
(44243, 37705, 'en', 'name', 'Howard College'),
(44244, 37706, 'en', 'name', 'Highland Community College - Illinois'),
(44245, 37707, 'en', 'name', 'Hill College'),
(44246, 37708, 'en', 'name', 'Hudson County Community College'),
(44247, 37709, 'en', 'name', 'Hull College'),
(44248, 37710, 'en', 'name', 'Gwangju Health University'),
(44249, 37710, 'ko', 'name', 'ź“‘ģ£¼ė³“ź±“ėŒ€ķ•™źµ'),
(44250, 37711, 'en', 'name', 'Hun School of Princeton'),
(44251, 37712, 'de', 'name', 'Hochschule für bildende Künste'),
(44252, 37712, 'en', 'name', 'University of Fine Arts in Hamburg'),
(44253, 37713, 'en', 'name', 'Hutchinson Community College'),
(44254, 37714, 'en', 'name', 'Dresden Academy of Fine Arts'),
(44255, 37714, 'de', 'name', 'Hochschule für Bildende Künste Dresden'),
(44256, 37715, 'no_lang_code', 'name', 'Hyejeon College'),
(44257, 37715, 'ko', 'name', 'ķ˜œģ „ėŒ€ķ•™źµ'),
(44258, 37716, 'en', 'name', 'Hamburg Institute for Social Research'),
(44259, 37716, 'de', 'name', 'Hamburger Institut für Sozialforschung'),
(44260, 37717, 'en', 'name', 'Academy of Visual Arts Leipzig'),
(44261, 37717, 'de', 'name', 'Hochschule für Grafik und Buchkunst Leipzig'),
(44262, 37718, 'en', 'name', 'Hyogo University'),
(44263, 37718, 'ja', 'name', '兵庫大学'),
(44264, 37719, 'fr', 'name', 'Laboratoire des ProcƩdƩs en Milieux Granulaires Granulaires'),
(44265, 37720, 'de', 'name', 'Hochschule für Künste im Sozialen'),
(44266, 37721, 'en', 'name', 'IBAT College'),
(44267, 37722, 'en', 'name', 'Harcum College'),
(44268, 37723, 'en', 'name', 'Ibn Sina National College for Medical Studies'),
(44269, 37723, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ابن Ų³ŁŠŁ†Ų§'),
(44270, 37724, 'en', 'name', 'Harrogate and District NHS Foundation Trust'),
(44271, 37725, 'en', 'name', 'Holy Apostles College and Seminary'),
(44272, 37726, 'en', 'name', 'French for School of High Studies in Engineering'),
(44273, 37726, 'fr', 'name', 'Hautes Ɖtudes d''IngĆ©nieur'),
(44274, 37727, 'en', 'name', 'Hawaii Tokai International College'),
(44275, 37728, 'en', 'name', 'General Theological Seminary'),
(44276, 37729, 'en', 'name', 'Central Party School of the Communist Party of China'),
(44277, 37729, 'zh', 'name', 'äø­å…±äø­å¤®å…šę ”'),
(44278, 37730, 'en', 'name', 'Central Piedmont Community College'),
(44279, 37731, 'en', 'name', 'George C. Marshall European Center for Security Studies'),
(44280, 37731, 'de', 'name', 'George C. Marshall Europäisches Zentrum für Sicherheitsstudien'),
(44281, 37732, 'en', 'name', 'Central Texas College'),
(44282, 37733, 'en', 'name', 'Georgia Military College'),
(44283, 37734, 'en', 'name', 'Central University of Kashmir'),
(44284, 37734, 'hi', 'name', 'ą¤•ą¤¶ą„ą¤®ą„€ą¤° ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(44285, 37735, 'en', 'name', 'Helderberg College'),
(44286, 37736, 'en', 'name', 'Hellenic College Holy Cross Greek Orthodox School of Theology'),
(44287, 37737, 'en', 'name', 'Central Wyoming College'),
(44288, 37738, 'de', 'name', 'Leibniz-Zentrum Moderner Orient'),
(44289, 37739, 'en', 'name', 'Henan Normal University'),
(44290, 37739, 'zh', 'name', 'ę²³å—åøˆčŒƒå¤§å­¦'),
(44291, 37740, 'es', 'name', 'Biblioteca del Condado de Hennepin'),
(44292, 37740, 'en', 'name', 'Hennepin County Library'),
(44293, 37741, 'fr', 'name', 'Collège héritage'),
(44294, 37741, 'en', 'name', 'Heritage College'),
(44295, 37742, 'en', 'name', 'Centre for Quantum Technologies'),
(44296, 37743, 'en', 'name', 'Glion Institute of Higher Education'),
(44297, 37743, 'fr', 'name', 'Institut de hautes Ʃtudes de glion'),
(44298, 37744, 'en', 'name', 'Global Public Policy Institute'),
(44299, 37745, 'fr', 'name', 'Centre National des Sciences et Technologies NuclƩaires'),
(44300, 37746, 'fr', 'name', 'Centre de RƩfƩrence DƩficits Immunitaires HƩrƩditaires'),
(44301, 37747, 'en', 'name', 'Gateway Seminary'),
(44302, 37748, 'en', 'name', 'Goodwin College'),
(44303, 37749, 'en', 'name', 'Gordon State College'),
(44304, 37750, 'en', 'name', 'Imperial Valley College'),
(44305, 37751, 'fr', 'name', 'Institut d''Ɖconomie Publique'),
(44306, 37752, 'en', 'name', 'Independence Community College'),
(44307, 37753, 'es', 'name', 'Instituto Tecnológico de Nogales'),
(44308, 37754, 'en', 'name', 'Indian Institute of Advanced Study'),
(44309, 37754, 'hi', 'name', 'इंऔियन ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ आफ ą¤ą¤”ą¤µą¤¾ą¤‚ą¤øą„ą¤” ą¤øą„ą¤Ÿą¤”ą„€'),
(44310, 37755, 'es', 'name', 'Instituto Tecnológico de Querétaro'),
(44311, 37755, 'en', 'name', 'Technological Institute of QuerƩtaro'),
(44312, 37756, 'en', 'name', 'Research Centre for Eastern and South Eastern Europe'),
(44313, 37756, 'de', 'name', 'Wissenschaftszentrum Ost- und Südosteuropa Regensburg'),
(44314, 37757, 'es', 'name', 'Instituto Tecnológico de Saltillo'),
(44315, 37757, 'en', 'name', 'Technological Institute of Saltillo'),
(44316, 37758, 'en', 'name', 'ISG Institute for Social Research'),
(44317, 37758, 'de', 'name', 'Institut für Sozialforschung und Gesellschaftspolitik'),
(44318, 37759, 'de', 'name', 'Institut für Sozialforschung und Sozialwirtschaft'),
(44319, 37760, 'fr', 'name', 'Institut de Biochimie et Biophysique MolƩculaire et Cellulaire'),
(44320, 37761, 'en', 'name', 'International Institute of Information Technology'),
(44321, 37761, 'ne', 'name', 'ą¤…ą¤‚ą¤¤ą¤°ą„ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤­ą„ą¤µą¤Øą„‡ą¤¶ą„ą¤µą¤°'),
(44322, 37762, 'en', 'name', 'Indian School of Business'),
(44323, 37762, 'hi', 'name', 'इंऔियन ą¤øą„ą¤•ą„‚ą¤² ऑफ ą¤¬ą¤æą¤œą¤Øą„‡ą¤ø'),
(44324, 37762, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°øą±ą°•ą±‚ą°²ą± ą°†ą°«ą± ą°¬ą°æą°œą°æą°Øą±†ą°øą±'),
(44325, 37762, 'kn', 'name', 'ą²‡ą²‚ą²”ą²æą²Æą²Øą³ ą²øą³ą²•ą³‚ą²²ą³ ą²†ą²«ą³ ą²¬ą²æą²øą²æą²Øą³†ą²øą³'),
(44326, 37763, 'en', 'name', 'International Labour Organization'),
(44327, 37763, 'de', 'name', 'Internationale Arbeitsorganisation'),
(44328, 37763, 'fr', 'name', 'Organisation internationale du travail'),
(44329, 37763, 'it', 'name', 'Organizzazione internazionale del lavoro'),
(44330, 37764, 'en', 'name', 'Inver Hills Community College'),
(44331, 37765, 'en', 'name', 'Irvine Valley College'),
(44332, 37766, 'en', 'name', 'Islamic Azad University of Ahar'),
(44333, 37766, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد اهر'),
(44334, 37767, 'en', 'name', 'Isothermal Community College'),
(44335, 37768, 'en', 'name', 'Institute of Problems of Mechanical Engineering'),
(44336, 37768, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ Российской акаГемии наук'),
(44337, 37769, 'en', 'name', 'Johnston Community College'),
(44338, 37770, 'en', 'name', 'Institute of Mathematics'),
(44339, 37770, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики ŠŠŠ України'),
(44340, 37770, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики ŠŠŠ Украины'),
(44341, 37771, 'en', 'name', 'Jakarta State Polytechnic'),
(44342, 37771, 'id', 'name', 'Politeknik Negeri Jakarta'),
(44343, 37771, 'jv', 'name', 'PolitĆØknik Negri Jakarta'),
(44344, 37772, 'es', 'name', 'Centro Conjunto de Advertencia de Tifones'),
(44345, 37772, 'en', 'name', 'Joint Typhoon Warning Center'),
(44346, 37773, 'en', 'name', 'Jefferson Community and Technical College'),
(44347, 37774, 'en', 'name', 'Jefferson Davis Community College'),
(44348, 37775, 'en', 'name', 'Institute of Radio-Engineering and Electronics'),
(44349, 37775, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиотехники Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø им. Š’. А. ŠšŠ¾Ń‚ŠµŠ»ŃŒŠ½ŠøŠŗŠ¾Š²Š° Š ŠŠ'),
(44350, 37776, 'fr', 'name', 'Institut de Transplantation Urologie en Nephrologie'),
(44351, 37777, 'en', 'name', 'Jubail Industrial College'),
(44352, 37777, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬ŲØŁŠŁ„ Ų§Ł„ŲµŁ†Ų§Ų¹ŁŠŲ©'),
(44353, 37778, 'de', 'name', 'Jura-Museum EichstƤtt'),
(44354, 37779, 'en', 'name', 'Kanagawa Dental University'),
(44355, 37779, 'ja', 'name', 'ē„žå„ˆå·ę­Æē§‘å¤§å­¦'),
(44356, 37780, 'en', 'name', 'Kangan Institute'),
(44357, 37781, 'en', 'name', 'Kansas City Kansas Community College'),
(44358, 37782, 'es', 'name', 'Instituto Nacional de AntropologĆ­a e Historia'),
(44359, 37782, 'en', 'name', 'National Institute of Anthropology and History'),
(44360, 37783, 'en', 'name', 'Lackawanna College'),
(44361, 37784, 'no_lang_code', 'name', 'Kaplan (United States)'),
(44362, 37784, 'fr', 'name', 'Kaplan international colleges'),
(44363, 37785, 'en', 'name', 'Laidlaw College'),
(44364, 37786, 'en', 'name', 'Lake Superior College'),
(44365, 37787, 'en', 'name', 'Lake Washington Institute of Technology'),
(44366, 37788, 'es', 'name', 'Instituto Tecnológico de Jiquilpan'),
(44367, 37788, 'en', 'name', 'Technological Institute of Jiquilpan'),
(44368, 37789, 'es', 'name', 'Instituto Tecnológico de Mérida'),
(44369, 37790, 'en', 'name', 'Kensington College of Business'),
(44370, 37791, 'de', 'name', 'LVR-Industriemuseum'),
(44371, 37792, 'de', 'name', 'Ludwig Forum für Internationale Kunst'),
(44372, 37793, 'en', 'name', 'Laney College'),
(44373, 37794, 'en', 'name', 'Kilgore College'),
(44374, 37795, 'en', 'name', 'Luzerne County Community College'),
(44375, 37796, 'en', 'name', 'King''s Inns'),
(44376, 37796, 'ga', 'name', 'Ɠstaƭ an Rƭ'),
(44377, 37797, 'en', 'name', 'Lanier Technical College'),
(44378, 37798, 'en', 'name', 'Las Positas College'),
(44379, 37799, 'en', 'name', 'Madras Institute of Development Studies'),
(44380, 37799, 'ta', 'name', 'ą®šąÆ†ą®©ąÆą®©ąÆˆ ą®µą®³ą®°ąÆą®šąÆą®šą®æ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(44381, 37800, 'en', 'name', 'Malaysia Theological Seminary'),
(44382, 37801, 'en', 'name', 'Manchester Academic Health Science Centre'),
(44383, 37802, 'en', 'name', 'Lewisham Southwark College'),
(44384, 37803, 'en', 'name', 'Manhattan Christian College'),
(44385, 37804, 'en', 'name', 'Manor College'),
(44386, 37805, 'en', 'name', 'Knox Theological Seminary'),
(44387, 37806, 'en', 'name', 'Lexington Theological Seminary'),
(44388, 37807, 'fr', 'name', 'BibliothĆØque du Parlement'),
(44389, 37807, 'en', 'name', 'Library of Parliament'),
(44390, 37808, 'no_lang_code', 'name', 'MapĆŗa University'),
(44391, 37808, 'tl', 'name', 'Suriang MapĆŗa ng Teknolohiya'),
(44392, 37809, 'en', 'name', 'Korean Intellectual Property Office'),
(44393, 37809, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ķŠ¹ķ—ˆģ²­'),
(44394, 37810, 'en', 'name', 'Criminological Research Institute of Lower Saxony'),
(44395, 37810, 'de', 'name', 'Kriminologisches Forschungsinstitut Niedersachsen'),
(44396, 37811, 'en', 'name', 'Maria College'),
(44397, 37812, 'en', 'name', 'London School of Business and Management'),
(44398, 37813, 'en', 'name', 'Marion Military Institute'),
(44399, 37814, 'de', 'name', 'Kunsthistorisches Institut in Florenz'),
(44400, 37815, 'en', 'name', 'Marymount California University'),
(44401, 37816, 'en', 'name', 'Kuyper College'),
(44402, 37817, 'en', 'name', 'Massasoit Community College'),
(44403, 37818, 'en', 'name', 'Los Angeles Harbor College'),
(44404, 37819, 'en', 'name', 'Los Angeles Mission College'),
(44405, 37820, 'en', 'name', 'Louisiana State University of Alexandria'),
(44406, 37820, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Louisiane Ć  Alexandria'),
(44407, 37821, 'en', 'name', 'Louisville Presbyterian Theological Seminary'),
(44408, 37822, 'en', 'name', 'Max Planck Institute for Social Law and Social Policy'),
(44409, 37822, 'de', 'name', 'Max-Planck-Institut für Sozialrecht und Sozialpolitik'),
(44410, 37823, 'fr', 'name', 'CollĆØge loyaliste'),
(44411, 37823, 'en', 'name', 'Loyalist College'),
(44412, 37824, 'en', 'name', 'McCormick Theological Seminary'),
(44413, 37825, 'en', 'name', 'McLennan Community College'),
(44414, 37826, 'en', 'name', 'Max Planck Research Unit for Enzymology of Protein Folding'),
(44415, 37826, 'de', 'name', 'Max-Planck-Forschungsstelle für Enzymologie der Proteinfaltung'),
(44416, 37827, 'fr', 'name', 'Ecologie & Evolution'),
(44417, 37828, 'en', 'name', 'Memphis Theological Seminary'),
(44418, 37829, 'en', 'name', 'Monroe County Community College'),
(44419, 37830, 'en', 'name', 'Merced College'),
(44420, 37831, 'en', 'name', 'Mercer County Community College'),
(44421, 37832, 'en', 'name', 'Montcalm Community College'),
(44422, 37833, 'en', 'name', 'Merritt College'),
(44423, 37834, 'en', 'name', 'Montgomery High School'),
(44424, 37835, 'en', 'name', 'Mesabi Range College'),
(44425, 37836, 'en', 'name', 'Moreno Valley College'),
(44426, 37837, 'en', 'name', 'Morgan Community College'),
(44427, 37838, 'en', 'name', 'Morristown Beard School'),
(44428, 37839, 'es', 'name', 'Instituto Tecnológico de Mexitali'),
(44429, 37839, 'en', 'name', 'Mexicali Institute of Technology'),
(44430, 37840, 'fr', 'name', 'Abbaye de mount angel'),
(44431, 37840, 'en', 'name', 'Mount Angel Abbey'),
(44432, 37841, 'en', 'name', 'Mid-America Baptist Theological Seminary'),
(44433, 37842, 'en', 'name', 'Mountain View College'),
(44434, 37843, 'en', 'name', 'MRC Mitochondrial Biology Unit'),
(44435, 37844, 'en', 'name', 'National Library Board'),
(44436, 37844, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ நூலக ą®µą®¾ą®°ą®æą®Æą®®ąÆ'),
(44437, 37844, 'zh', 'name', '国家图书馆箔理局'),
(44438, 37845, 'en', 'name', 'Mt. San Jacinto College'),
(44439, 37846, 'en', 'name', 'Midland College'),
(44440, 37847, 'en', 'name', 'Midwestern Baptist Theological Seminary'),
(44441, 37848, 'fr', 'name', 'BibliothĆØque nationale d''inde'),
(44442, 37848, 'en', 'name', 'National Library of India'),
(44443, 37848, 'sa', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æą¤ƒ ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æą¤ƒ'),
(44444, 37848, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æ'),
(44445, 37848, 'bn', 'name', 'ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦—ą§ą¦°ą¦Øą§ą¦„ą¦¾ą¦—ą¦¾ą¦°'),
(44446, 37848, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆ‡ą®šą®æą®Æ ą®ØąÆ‚ą®²ą®•ą®®ąÆ'),
(44447, 37848, 'te', 'name', 'భారత ą°œą°¾ą°¤ą±€ą°Æ ą°—ą±ą°°ą°‚ą°„ą°¾ą°²ą°Æą°‚'),
(44448, 37848, 'ml', 'name', 'ą“­ą“¾ą“°ą“¤ąµ€ą“Æ ą“¦ąµ‡ą“¶ąµ€ą“Æ ą“—ąµą“°ą“Øąµą“„ą“¶ą“¾ą“²'),
(44449, 37849, 'en', 'name', 'Muscatine Community College'),
(44450, 37850, 'de', 'name', 'Museum am Schƶlerberg'),
(44451, 37851, 'en', 'name', 'Mission College'),
(44452, 37852, 'en', 'name', 'National Research Centre on Equines'),
(44453, 37853, 'de', 'name', 'Museumsdorf Cloppenburg'),
(44454, 37854, 'fr', 'name', 'Palais de la Decouverte'),
(44455, 37855, 'en', 'name', 'Museum Foundation Lüneburg'),
(44456, 37855, 'de', 'name', 'Museumsstiftung Lüneburg'),
(44457, 37856, 'it', 'name', 'Area Territoriale di Ricerca del CNR di Bologna'),
(44458, 37856, 'en', 'name', 'Bologna Research Area'),
(44459, 37857, 'en', 'name', 'Muskegon Community College'),
(44460, 37858, 'en', 'name', 'Institute for Applied Mathematics Mauro Picone'),
(44461, 37858, 'it', 'name', 'Istituto per le Applicazioni del Calcolo Mauro Picone'),
(44462, 37859, 'en', 'name', 'Moberly Area Community College'),
(44463, 37860, 'en', 'name', 'Myerscough College'),
(44464, 37861, 'en', 'name', 'Newcastle-under-Lyme College'),
(44465, 37862, 'en', 'name', 'Nanjing Library'),
(44466, 37862, 'zh', 'name', 'å—äŗ¬å›¾ä¹¦é¦†'),
(44467, 37863, 'no_lang_code', 'name', 'Springer Nature (United Kingdom)'),
(44468, 37864, 'en', 'name', 'Napa Valley College'),
(44469, 37865, 'en', 'name', 'Newman Theological College'),
(44470, 37866, 'en', 'name', 'Nash Community College'),
(44471, 37867, 'en', 'name', 'Nashua Community College'),
(44472, 37868, 'en', 'name', 'National Academy of Agricultural Research Management'),
(44473, 37869, 'en', 'name', 'Nicolet Area Technical College'),
(44474, 37870, 'no_lang_code', 'name', 'iThemba Laboratory'),
(44475, 37871, 'en', 'name', 'National Aerospace Laboratories'),
(44476, 37871, 'sa', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æą¤µą„ˆą¤®ą¤¾ą¤Øą¤æą¤•ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾(NAL)'),
(44477, 37871, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤ą¤Æą¤°ą„‹ą¤øą„ą¤Ŗą„‡ą¤ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(44478, 37871, 'kn', 'name', 'ą²Øą³ą²Æą²¾ą²·ą²Øą²²ą³ ą²ą²°ą³‹ą²øą³ą²Ŗą³‡ą²øą³ ą²²ą³ą²Æą²¾ą²¬ą³‹ą²°ą³‡ą²Ÿą²°ą²æ'),
(44479, 37871, 'ml', 'name', 'ą“Øą“¾ą“·ą“£ąµ½ ą“ą“±ąµ‹ą“øąµą“Ŗąµ‡ą“øąµ ą“²ą“¾ą“¬ą“±ą“Ÿąµą“Ÿą“±ąµ€ą“øąµ'),
(44480, 37872, 'en', 'name', 'National Assembly Library'),
(44481, 37872, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ źµ­ķšŒė„ģ„œź“€'),
(44482, 37873, 'en', 'name', 'Naval War College'),
(44483, 37874, 'en', 'name', 'Nazarene Theological College'),
(44484, 37875, 'en', 'name', 'Nazareth Academy'),
(44485, 37876, 'en', 'name', 'Near East School of Theology'),
(44486, 37877, 'en', 'name', 'Norco College'),
(44487, 37878, 'en', 'name', 'NorQuest College'),
(44488, 37879, 'en', 'name', 'New College Durham'),
(44489, 37880, 'en', 'name', 'North Central Missouri College'),
(44490, 37881, 'en', 'name', 'North Central State College'),
(44491, 37882, 'en', 'name', 'North Central Texas College'),
(44492, 37883, 'en', 'name', 'New Hope Christian College'),
(44493, 37884, 'en', 'name', 'New Jersey Turnpike Authority'),
(44494, 37885, 'en', 'name', 'New Orleans Baptist Theological Seminary'),
(44495, 37886, 'en', 'name', 'New River Community College'),
(44496, 37887, 'en', 'name', 'North Florida Community College'),
(44497, 37888, 'en', 'name', 'Oklahoma State University Oklahoma City'),
(44498, 37889, 'en', 'name', 'North Iowa Area Community College'),
(44499, 37890, 'en', 'name', 'Olympic College'),
(44500, 37891, 'no_lang_code', 'name', 'National Sanatorium Ooshima Seishōen'),
(44501, 37891, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€å¤§å³¶é’ę¾åœ’'),
(44502, 37892, 'en', 'name', 'Prairie Bible Institute'),
(44503, 37893, 'en', 'name', 'Princeton Public Schools'),
(44504, 37894, 'en', 'name', 'Providence Newberg Medical Center'),
(44505, 37895, 'en', 'name', 'North Lake College'),
(44506, 37896, 'en', 'name', 'Pueblo Community College'),
(44507, 37897, 'en', 'name', 'North Shore Community College'),
(44508, 37898, 'en', 'name', 'Pulaski Technical College'),
(44509, 37899, 'en', 'name', 'Northeast Alabama Community College'),
(44510, 37900, 'en', 'name', 'Northeast State Community College'),
(44511, 37901, 'en', 'name', 'Northeast Texas Community College'),
(44512, 37902, 'en', 'name', 'Oxnard College'),
(44513, 37903, 'en', 'name', 'Northern (Arctic) Federal University'),
(44514, 37903, 'ru', 'name', 'Деверный (Арктический) Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. Š’. Ломоносова'),
(44515, 37904, 'en', 'name', 'Ozark Christian College'),
(44516, 37905, 'en', 'name', 'Northern Essex Community College'),
(44517, 37906, 'en', 'name', 'Pacific States University'),
(44518, 37907, 'en', 'name', 'Randolph Community College'),
(44519, 37908, 'en', 'name', 'Redcar & Cleveland College'),
(44520, 37909, 'en', 'name', 'Northwest Mississippi Community College'),
(44521, 37910, 'en', 'name', 'Reedley College'),
(44522, 37911, 'en', 'name', 'Northwest–Shoals Community College'),
(44523, 37912, 'en', 'name', 'Northwestern Connecticut Community College'),
(44524, 37913, 'en', 'name', 'Renton Technical College'),
(44525, 37914, 'en', 'name', 'Novant Health'),
(44526, 37915, 'en', 'name', 'Palo Verde College'),
(44527, 37916, 'en', 'name', 'R.O.C Military Academy'),
(44528, 37916, 'zh', 'name', 'äø­čÆę°‘åœ‹é™øč»č»å®˜å­øę ”'),
(44529, 37917, 'en', 'name', 'Panola College'),
(44530, 37918, 'en', 'name', 'NYC Media'),
(44531, 37919, 'en', 'name', 'Republic Polytechnic'),
(44532, 37919, 'zh', 'name', 'å…±å’Œē†å·„å­øé™¢'),
(44533, 37920, 'en', 'name', 'Paradise Valley Community College'),
(44534, 37921, 'en', 'name', 'Oblate School of Theology'),
(44535, 37922, 'en', 'name', 'Odessa College'),
(44536, 37923, 'en', 'name', 'Patrick Henry Community College'),
(44537, 37924, 'en', 'name', 'Rio Hondo College'),
(44538, 37925, 'en', 'name', 'Peddie School'),
(44539, 37926, 'de', 'name', 'Sachverständigenrat deutscher Stiftungen für Integration und Migration'),
(44540, 37926, 'en', 'name', 'The Expert Council of German Foundations on Integration and Migration'),
(44541, 37927, 'en', 'name', 'RMIT Vietnam'),
(44542, 37927, 'vi', 'name', 'ĐẔi hį»c RMIT Việt Nam'),
(44543, 37928, 'en', 'name', 'Rockingham Community College'),
(44544, 37929, 'en', 'name', 'Rogue Community College'),
(44545, 37930, 'en', 'name', 'Saint Joseph Seminary College'),
(44546, 37931, 'en', 'name', 'PFH Private University of Applied Sciences'),
(44547, 37931, 'de', 'name', 'Private Hochschule Gƶttingen'),
(44548, 37932, 'en', 'name', 'Saint Paul College'),
(44549, 37933, 'en', 'name', 'Phillips Theological Seminary'),
(44550, 37934, 'en', 'name', 'Pikes Peak Community College'),
(44551, 37935, 'en', 'name', 'Saint Vincent Health System'),
(44552, 37936, 'en', 'name', 'Rowan-Cabarrus Community College'),
(44553, 37937, 'no_lang_code', 'name', 'Pinsent Masons (United Kingdom)'),
(44554, 37938, 'en', 'name', 'Saint Vladimir''s Orthodox Theological Seminary'),
(44555, 37938, 'fr', 'name', 'SƩminaire saint-vladimir'),
(44556, 37939, 'en', 'name', 'Roxbury Community College'),
(44557, 37940, 'en', 'name', 'Dodowa Health Research Centre'),
(44558, 37941, 'en', 'name', 'Pitt Community College'),
(44559, 37942, 'en', 'name', 'San Bernardino Valley College'),
(44560, 37943, 'en', 'name', 'Pittsburgh Theological Seminary'),
(44561, 37944, 'en', 'name', 'Sher-e-Bangla Agricultural University'),
(44562, 37944, 'bn', 'name', 'শেরে বাংলা ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(44563, 37945, 'en', 'name', 'Southwestern Baptist Theological Seminary'),
(44564, 37946, 'en', 'name', 'San Diego Christian College'),
(44565, 37947, 'no_lang_code', 'name', 'Shigakukan University'),
(44566, 37947, 'ja', 'name', '志學館大学'),
(44567, 37948, 'en', 'name', 'San Diego Miramar College'),
(44568, 37949, 'no_lang_code', 'name', 'Shohoku College'),
(44569, 37949, 'ja', 'name', 'ę¹˜åŒ—ēŸ­ęœŸå¤§å­¦'),
(44570, 37950, 'en', 'name', 'Sidley Austin'),
(44571, 37951, 'en', 'name', 'San Joaquin Delta College'),
(44572, 37952, 'en', 'name', 'Santa Ana College'),
(44573, 37953, 'no_lang_code', 'name', 'Bluestar Silicones (France)'),
(44574, 37954, 'en', 'name', 'Santa Barbara Business College'),
(44575, 37955, 'no_lang_code', 'name', 'Brochier Technologies (France)'),
(44576, 37956, 'de', 'name', 'Sigmund Freud Institut'),
(44577, 37956, 'en', 'name', 'Sigmund Freud Institute'),
(44578, 37957, 'en', 'name', 'Santa Clara County Library District'),
(44579, 37958, 'en', 'name', 'Santiago Canyon College'),
(44580, 37959, 'en', 'name', 'Skadden Arps Slate Meagher & Flom'),
(44581, 37959, 'fr', 'name', 'Skadden, arps, slate, meagher & flom'),
(44582, 37960, 'en', 'name', 'Skagit Valley College'),
(44583, 37961, 'en', 'name', 'Solano Community College'),
(44584, 37962, 'fr', 'name', 'Laboratoire de Recherches VƩtƩrinaires et Zootechniques de Farcha'),
(44585, 37963, 'en', 'name', 'St. Cloud Technical and Community College'),
(44586, 37964, 'en', 'name', 'Sorbian Institute'),
(44587, 37964, 'de', 'name', 'Sorbisches Institut'),
(44588, 37965, 'en', 'name', 'St. John''s Seminary'),
(44589, 37966, 'fr', 'name', 'Centre Suisse de Recherches Scientifiques en CƓte d''Ivoire'),
(44590, 37966, 'en', 'name', 'Swiss Centre for Scientific Research'),
(44591, 37967, 'en', 'name', 'South Arkansas Community College'),
(44592, 37968, 'en', 'name', 'St. Thomas Aquinas College'),
(44593, 37969, 'en', 'name', 'South College'),
(44594, 37970, 'no_lang_code', 'name', 'Serampore College'),
(44595, 37970, 'bn', 'name', 'ą¦¶ą§ą¦°ą§€ą¦°ą¦¾ą¦®ą¦Ŗą§ą¦° ą¦•ą¦²ą§‡ą¦œ'),
(44596, 37971, 'en', 'name', 'Sha''arei Mishpat College'),
(44597, 37971, 'he', 'name', '×ž×›×œ×œ×Ŗ שערי משפט'),
(44598, 37972, 'de', 'name', 'Staatliches Naturhistorisches Museum'),
(44599, 37973, 'de', 'name', 'Staatsgalerie Stuttgart'),
(44600, 37974, 'en', 'name', 'Shanghai Library'),
(44601, 37974, 'zh', 'name', 'äøŠęµ·åœ–ę›øé¤Ø'),
(44602, 37975, 'en', 'name', 'Shasta College'),
(44603, 37976, 'en', 'name', 'Shawnee Mission Medical Center'),
(44604, 37977, 'en', 'name', 'Sussex Downs College'),
(44605, 37978, 'de', 'name', 'Stadtmuseum Penzberg'),
(44606, 37979, 'nl', 'name', 'Swets & Zeitlinger'),
(44607, 37979, 'no_lang_code', 'name', 'Swets (Netherlands)'),
(44608, 37980, 'en', 'name', 'Swindon College'),
(44609, 37981, 'en', 'name', 'Swiss Hotel Management School'),
(44610, 37982, 'en', 'name', 'South Tyneside College'),
(44611, 37983, 'en', 'name', 'South University'),
(44612, 37984, 'en', 'name', 'Sydney Missionary and Bible College'),
(44613, 37985, 'no_lang_code', 'name', 'Crocus Technology (France)'),
(44614, 37986, 'en', 'name', 'Sylhet MAG Osmani Medical College'),
(44615, 37986, 'bn', 'name', 'ą¦ą¦®.ą¦.জি. ওসমানী মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(44616, 37987, 'en', 'name', 'Summit Pacific College'),
(44617, 37988, 'en', 'name', 'Southeast Arkansas College'),
(44618, 37989, 'en', 'name', 'T A Pai Management Institute'),
(44619, 37990, 'en', 'name', 'Sunderland College'),
(44620, 37991, 'en', 'name', 'Tabor College'),
(44621, 37992, 'no_lang_code', 'name', 'Endocontrol (France)'),
(44622, 37993, 'en', 'name', 'Taft College'),
(44623, 37994, 'en', 'name', 'Southeastern University'),
(44624, 37995, 'es', 'name', 'Instituto de Estudios Superiores de Tamaulipas'),
(44625, 37995, 'en', 'name', 'Tamaulipas Institute of Higher Education'),
(44626, 37996, 'en', 'name', 'Technological Educational Institute of the Ionian Islands'),
(44627, 37996, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī±'),
(44628, 37997, 'en', 'name', 'Surry Community College'),
(44629, 37998, 'en', 'name', 'Technological Educational Institute of Thessaly'),
(44630, 37998, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ī›Ī¬ĻĪ¹ĻƒĪ±Ļ‚'),
(44631, 37999, 'en', 'name', 'Trinity School for Ministry'),
(44632, 38000, 'en', 'name', 'Southport College'),
(44633, 38001, 'no_lang_code', 'name', 'Porsolt (France)'),
(44634, 38002, 'en', 'name', 'Southwest Wisconsin Technical College'),
(44635, 38003, 'en', 'name', 'Southwestern Adventist University'),
(44636, 38003, 'fr', 'name', 'UniversitƩ adventiste du sud-ouest'),
(44637, 38004, 'en', 'name', 'National Institute of Technology, Tsuyama College'),
(44638, 38004, 'ja', 'name', 'ę“„å±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44639, 38005, 'en', 'name', 'Tung Fang Design Institute'),
(44640, 38005, 'zh', 'name', 'ę±ę–¹čØ­čØˆå­øé™¢'),
(44641, 38006, 'zh', 'name', 'Tung Wah College'),
(44642, 38007, 'en', 'name', 'Texas College'),
(44643, 38008, 'en', 'name', 'Texas Health and Science University'),
(44644, 38009, 'en', 'name', 'Tunxis Community College'),
(44645, 38010, 'en', 'name', 'The American College'),
(44646, 38011, 'en', 'name', 'The Asiatic Society of Mumbai'),
(44647, 38012, 'en', 'name', 'Agincourt Health and Socio-Demographic Surveillance System'),
(44648, 38013, 'en', 'name', 'The Culinary Institute of America'),
(44649, 38014, 'en', 'name', 'University of Louisiana System'),
(44650, 38015, 'en', 'name', 'International Institute for Strategic Studies'),
(44651, 38016, 'en', 'name', 'Modibbo Adama University of Technology'),
(44652, 38017, 'no_lang_code', 'name', 'Hemarina (France)'),
(44653, 38018, 'en', 'name', 'The Master''s Seminary'),
(44654, 38019, 'en', 'name', 'University of Maine School of Law'),
(44655, 38020, 'fr', 'name', 'FacultƩ de droit thomas jefferson'),
(44656, 38020, 'en', 'name', 'Thomas Jefferson School of Law'),
(44657, 38021, 'no_lang_code', 'name', 'Imagine Optic (France)'),
(44658, 38022, 'de', 'name', 'Till-Eulenspiegel-Museum Schƶppenstedt'),
(44659, 38023, 'en', 'name', 'National Institute of Technology, Toba College'),
(44660, 38023, 'ja', 'name', 'é³„ē¾½å•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(44661, 38024, 'en', 'name', 'University of North Texas at Dallas'),
(44662, 38025, 'no_lang_code', 'name', 'TOKU-E (United States)'),
(44663, 38026, 'en', 'name', 'United Nations Economic Commission for Africa'),
(44664, 38027, 'en', 'name', 'University of Northwestern'),
(44665, 38028, 'en', 'name', 'National Institute of Technology, Toyota College'),
(44666, 38028, 'ja', 'name', 'å›½ē«‹č±Šē”°å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(44667, 38029, 'de', 'name', 'Astronomisches Observatorium Triest'),
(44668, 38029, 'fr', 'name', 'Observatoire astronomique de trieste'),
(44669, 38029, 'it', 'name', 'Osservatorio Astronomico di Trieste'),
(44670, 38029, 'en', 'name', 'Trieste Astronomical Observatory'),
(44671, 38030, 'en', 'name', 'United Theological Seminary'),
(44672, 38031, 'en', 'name', 'Trinity Medical Center'),
(44673, 38032, 'en', 'name', 'United World College of South East Asia'),
(44674, 38032, 'zh', 'name', 'ę±å—äŗžčÆåˆäø–ē•Œę›øé™¢'),
(44675, 38033, 'en', 'name', 'First Affiliated Hospital of Henan University of Science and Technology'),
(44676, 38034, 'en', 'name', 'Aidjan-Lagos Corridor Organization'),
(44677, 38034, 'fr', 'name', 'Organisation du Corridor Abidjan-Lagos'),
(44678, 38035, 'en', 'name', 'Wallace Community College'),
(44679, 38036, 'en', 'name', 'Mvumi Hospital'),
(44680, 38037, 'en', 'name', 'Victor Valley College'),
(44681, 38038, 'en', 'name', 'Academy for Peace and Development'),
(44682, 38038, 'so', 'name', 'Akaademiga Nabadda iyo Horumarka'),
(44683, 38039, 'en', 'name', 'Northern University of Malaysia'),
(44684, 38039, 'ms', 'name', 'Universiti Utara Malaysia'),
(44685, 38039, 'zh', 'name', 'é¦¬ä¾†č„æäŗžåŒ—ę–¹å¤§å­ø'),
(44686, 38040, 'en', 'name', 'Wallace State Community College'),
(44687, 38041, 'en', 'name', 'Victoria College'),
(44688, 38042, 'en', 'name', 'Warren County Community College'),
(44689, 38043, 'en', 'name', 'Africa Groundwater Network'),
(44690, 38044, 'en', 'name', 'Wartburg Theological Seminary'),
(44691, 38045, 'en', 'name', 'Africa Harvest Biotech Foundation International'),
(44692, 38046, 'en', 'name', 'Warwickshire College'),
(44693, 38047, 'en', 'name', 'Achieving Health Nigeria Initiative'),
(44694, 38048, 'en', 'name', 'Wayne Community College'),
(44695, 38049, 'en', 'name', 'Africa Society for Blood Transfusion'),
(44696, 38050, 'en', 'name', 'Weatherford College'),
(44697, 38051, 'en', 'name', 'Wor-Wic Community College'),
(44698, 38052, 'en', 'name', 'Wenatchee Valley College'),
(44699, 38053, 'en', 'name', 'Vinson & Elkins'),
(44700, 38054, 'fr', 'name', 'Wesford'),
(44701, 38055, 'fr', 'name', 'Organisation mondiale du commerce'),
(44702, 38055, 'es', 'name', 'Organización Mundial del Comercio'),
(44703, 38055, 'it', 'name', 'Organizzazione mondiale del commercio'),
(44704, 38055, 'de', 'name', 'Welthandelsorganisation'),
(44705, 38055, 'en', 'name', 'World Trade Organization'),
(44706, 38056, 'en', 'name', 'Lone Star College Kingwood'),
(44707, 38057, 'en', 'name', 'Wesley Biblical Seminary'),
(44708, 38058, 'no_lang_code', 'name', 'ArcelorMittal (Poland)'),
(44709, 38059, 'en', 'name', 'WorldWide Information Services'),
(44710, 38060, 'en', 'name', 'African Association of Remote Sensing of the Environment'),
(44711, 38061, 'en', 'name', 'Lone Star College–North Harris'),
(44712, 38062, 'no_lang_code', 'name', 'ACRI-EC (Morocco)'),
(44713, 38063, 'en', 'name', 'Virginia Highlands Community College'),
(44714, 38064, 'en', 'name', 'Lone Star College–Tomball'),
(44715, 38065, 'en', 'name', 'West Shore Community College'),
(44716, 38066, 'en', 'name', 'West Suffolk College'),
(44717, 38067, 'en', 'name', 'African Center of Meteorological Application for Development'),
(44718, 38068, 'en', 'name', 'African Comprehensive HIV/AIDS Partnerships'),
(44719, 38069, 'en', 'name', 'African Training and Research Centre in Administration for Development'),
(44720, 38069, 'fr', 'name', 'Centre Africain de Formation et de Recherche Administratives pour le DƩveloppement'),
(44721, 38070, 'en', 'name', 'African Conservation Tillage Network'),
(44722, 38071, 'en', 'name', 'African Center for Economic Transformation'),
(44723, 38072, 'en', 'name', 'Western Nebraska Community College'),
(44724, 38073, 'no_lang_code', 'name', 'Adamore (Nigeria)'),
(44725, 38074, 'en', 'name', 'African Union Interafrican Bureau for Animal Resources'),
(44726, 38075, 'en', 'name', 'Xavier School'),
(44727, 38076, 'no_lang_code', 'name', 'African Explosives (South Africa)'),
(44728, 38077, 'en', 'name', 'Western Texas College'),
(44729, 38078, 'en', 'name', 'Western Theological Seminary'),
(44730, 38079, 'no_lang_code', 'name', 'Africare'),
(44731, 38080, 'en', 'name', 'African Forum for Agricultural Advisory Services'),
(44732, 38081, 'en', 'name', 'Addis Ababa City Administration Health Bureau'),
(44733, 38082, 'en', 'name', 'Western Wyoming Community College'),
(44734, 38083, 'en', 'name', 'Westminster Kingsway College'),
(44735, 38084, 'en', 'name', 'African Institute of Biomedical Science and Technology'),
(44736, 38085, 'en', 'name', 'Xavier School of Management'),
(44737, 38086, 'fr', 'name', 'SƩminaire thƩologique de westminster'),
(44738, 38086, 'en', 'name', 'Westminster Theological Seminary'),
(44739, 38087, 'en', 'name', 'Westmoreland County Community College'),
(44740, 38088, 'en', 'name', 'Energy, Environment and Development Network for Africa'),
(44741, 38089, 'en', 'name', 'Africa 2000 Network'),
(44742, 38090, 'en', 'name', 'African Institute for Capacity Development'),
(44743, 38091, 'en', 'name', 'Wharton County Junior College'),
(44744, 38092, 'en', 'name', 'African Network Information Center'),
(44745, 38093, 'no_lang_code', 'name', 'Yong-in Songdam College'),
(44746, 38093, 'ko', 'name', 'ģš©ģøģ†”ė‹“ėŒ€ķ•™źµ'),
(44747, 38094, 'fr', 'name', 'Agence Nationale pour la Promotion des Petites et Moyennes Entreprises'),
(44748, 38095, 'en', 'name', 'Wilkes Community College'),
(44749, 38096, 'en', 'name', 'African Palliative Care Association'),
(44750, 38097, 'fr', 'name', 'Agence Nationale pour la Promotion et la Rationalisation de l''Utilisation de l''Energie'),
(44751, 38098, 'en', 'name', 'York County Community College'),
(44752, 38099, 'en', 'name', 'Williams Baptist College'),
(44753, 38100, 'no_lang_code', 'name', 'Agama Energy (South Africa)'),
(44754, 38101, 'en', 'name', 'Wilson Community College'),
(44755, 38102, 'en', 'name', 'Youngnam Theological University and Seminary'),
(44756, 38102, 'ko', 'name', 'ģ˜ė‚Øģ‹ ķ•™ėŒ€ķ•™źµ'),
(44757, 38103, 'fr', 'name', 'Agence pour le Développement et la Réhabilitation de la Ville de Fès'),
(44758, 38104, 'fr', 'name', 'Agence du Bassin Hydraulique de Sebou'),
(44759, 38105, 'fr', 'name', 'Agence pour la sƩcuritƩ de la Navigation AƩrienne en Afrique et Ơ Madagascar'),
(44760, 38105, 'en', 'name', 'Agency for Aerial Navigation Safety in Africa and Madagascar'),
(44761, 38106, 'en', 'name', 'African Technology Policy Studies Network'),
(44762, 38107, 'no_lang_code', 'name', 'Red Stack Tech (Poland)'),
(44763, 38108, 'en', 'name', 'AIDS Foundation of South Africa'),
(44764, 38109, 'fr', 'name', 'Agence Nationale de l''Aviation Civile et de la MƩtƩorologie'),
(44765, 38110, 'fr', 'name', 'Agence de Bassin Hydrographique Constantinois-Seybousse-Mellegue'),
(44766, 38111, 'en', 'name', 'AIDS Information Centre'),
(44767, 38112, 'en', 'name', 'Agricultural Research Corporation'),
(44768, 38112, 'ar', 'name', 'Ł‡ŁŠŲ¦Ų© Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(44769, 38113, 'no_lang_code', 'name', 'Safran (Poland)'),
(44770, 38114, 'fr', 'name', 'AFRICSantƩ'),
(44771, 38115, 'no_lang_code', 'name', 'WADI Group (Egypt)'),
(44772, 38116, 'fr', 'name', 'Agence de Promotion de l’Industrie et de l''Innovation'),
(44773, 38116, 'en', 'name', 'Agency for the Promotion of Industry and Innovation'),
(44774, 38116, 'ar', 'name', 'ŁˆŁƒŲ§Ł„Ų© Ų§Ł„Ł†Ł‡ŁˆŲ¶ بالصناعة و Ų§Ł„ŲŖŲ¬ŲÆŁŠŲÆ'),
(44775, 38117, 'en', 'name', 'Institute for Soil, Climate and Water'),
(44776, 38118, 'fr', 'name', 'Agence de Protection et d''AmƩnagement du Littoral'),
(44777, 38119, 'en', 'name', 'Abertine Rift Conservation Society'),
(44778, 38120, 'fr', 'name', 'Agro PME Fondation'),
(44779, 38121, 'fr', 'name', 'Association de Recherche de Communication et d’Accompagnement Ć  Domicile de personnes Vivant avec le VIH'),
(44780, 38122, 'en', 'name', 'Aid to Development of Traditional Medicine'),
(44781, 38122, 'fr', 'name', 'Aide au DƩveloppement de la MƩdecine Traditionnelle'),
(44782, 38123, 'fr', 'name', 'Alliance Nationale Contre le SIDA en Cote d''Ivoire'),
(44783, 38123, 'en', 'name', 'Alliance of Health'),
(44784, 38124, 'fr', 'name', 'Agence Nationale de l''Aviation Civile'),
(44785, 38125, 'pt', 'name', 'Fundação Ariel Glaser Contra o SIDA PediÔtrico'),
(44786, 38126, 'no_lang_code', 'name', 'Alliance One Tobacco (Malawi)'),
(44787, 38127, 'en', 'name', 'Bank of Mauritius'),
(44788, 38128, 'en', 'name', 'Elizabeth Glaser Pediatric AIDS Foundation'),
(44789, 38129, 'en', 'name', 'Baobab Health Trust'),
(44790, 38130, 'no_lang_code', 'name', 'Alternative Energy Systems (Tunisia)'),
(44791, 38131, 'en', 'name', 'National Art Gallery of Namibia'),
(44792, 38132, 'fr', 'name', 'Centre Marocain de Production Propre'),
(44793, 38133, 'en', 'name', 'Basel Convention Co-Ordinating Centre'),
(44794, 38134, 'en', 'name', 'Association for Strengthening Agricultural Research in Eastern and Central Africa'),
(44795, 38135, 'en', 'name', 'Arusha City Council'),
(44796, 38136, 'fr', 'name', 'Agence Nationale de la Promotion de la Recherche Scientifique'),
(44797, 38136, 'en', 'name', 'National Agency for Promotion of Research and Innovation'),
(44798, 38136, 'ar', 'name', 'Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł†Ł‡ŁˆŲ¶ بالبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(44799, 38137, 'en', 'name', 'Association of Support in the Development of Activities of Population'),
(44800, 38138, 'en', 'name', 'Amref Health Africa'),
(44801, 38139, 'no_lang_code', 'name', 'Assore (South Africa)'),
(44802, 38140, 'en', 'name', 'Sojagnon Association'),
(44803, 38141, 'no_lang_code', 'name', 'ANADER'),
(44804, 38142, 'en', 'name', 'International Centre for Reproductive Health'),
(44805, 38143, 'fr', 'name', 'Anvredet'),
(44806, 38144, 'no_lang_code', 'name', 'Anglo American (South Africa)'),
(44807, 38145, 'en', 'name', 'Blood Transfusion Service of Namibia'),
(44808, 38146, 'fr', 'name', 'Association Mitsinjo'),
(44809, 38147, 'en', 'name', 'Association Africa AgroEXport'),
(44810, 38148, 'no_lang_code', 'name', 'Bomarts Farms (Ghana)'),
(44811, 38149, 'fr', 'name', 'Agence Nationale pour la MaƮtrise de l''Energie'),
(44812, 38149, 'en', 'name', 'National Agency for Energy Management'),
(44813, 38150, 'fr', 'name', 'ConfƩdƩration GƩnƩrale des Entreprises du Maroc'),
(44814, 38151, 'en', 'name', 'Association of African Universities'),
(44815, 38152, 'fr', 'name', 'Association Marocaine Pour la Recherche DƩveloppement'),
(44816, 38153, 'en', 'name', 'Botswana-Baylor Children''s Clinical Center of Excellence'),
(44817, 38154, 'en', 'name', 'Center for Health, Human Rights and Development'),
(44818, 38155, 'en', 'name', 'Arab and African Research Center'),
(44819, 38156, 'en', 'name', 'The Arab Institute of Navigation'),
(44820, 38157, 'no_lang_code', 'name', 'Assystem (Morocco)'),
(44821, 38158, 'en', 'name', 'Central Laboratory For Agricultural Expert Systems'),
(44822, 38159, 'en', 'name', 'British Council Egypt'),
(44823, 38160, 'fr', 'name', 'Centre Africain de Recherches sur Bananiers et Plantains'),
(44824, 38161, 'pt', 'name', 'Banco de Cabo Verde'),
(44825, 38161, 'no_lang_code', 'name', 'Bank of Cape Verde'),
(44826, 38162, 'fr', 'name', 'Bureau National d''Ɖtudes Techniques et de DĆ©veloppement'),
(44827, 38163, 'en', 'name', 'Center of Arab Woman for Training and Research'),
(44828, 38164, 'en', 'name', 'Institute of Medical Sciences'),
(44829, 38165, 'en', 'name', 'Centre for Coordination of Agricultural Research and Development for Southern Africa'),
(44830, 38166, 'fr', 'name', 'Centre d''Etude Regional pour l''Amelioration de l''Adaptation a la Secheresse'),
(44831, 38167, 'fr', 'name', 'Centre Marocain des Techniques du Cuir'),
(44832, 38168, 'en', 'name', 'Cairo Institute for Human Rights Studies'),
(44833, 38169, 'en', 'name', 'Indian Institute of Social Welfare and Business Management'),
(44834, 38169, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦øą§‹ą¦¶ą§ą¦Æą¦¾ą¦² ওয়েলফেয়ার ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ'),
(44835, 38170, 'en', 'name', 'Research and Studies Telecommunications Centre'),
(44836, 38171, 'fr', 'name', 'Centre de Recherche sur l''Information Scientifique et Technique'),
(44837, 38172, 'en', 'name', 'Cameroon Baptist Convention Health Services'),
(44838, 38173, 'en', 'name', 'Centre for Health Solutions'),
(44839, 38174, 'en', 'name', 'Centre for Schistosomiasis & Parasitology'),
(44840, 38175, 'en', 'name', 'Cameroon Academy of Sciences'),
(44841, 38176, 'en', 'name', 'Uganda Carbon Bureau'),
(44842, 38177, 'en', 'name', 'CareWorks'),
(44843, 38178, 'en', 'name', 'Centre for Sexual Health and HIV AIDS Research'),
(44844, 38179, 'fr', 'name', 'Centre National de Recherches Prehistoriques, Anthropologiques et Historiques'),
(44845, 38180, 'fr', 'name', 'Centre de Calcul El-Khawarizmi'),
(44846, 38181, 'fr', 'name', 'Centre de Recherche et des Technologies de l''Energie'),
(44847, 38181, 'en', 'name', 'Research and Technology Center of Energy'),
(44848, 38182, 'en', 'name', 'Development Centre of the Tensift Region'),
(44849, 38183, 'en', 'name', 'Caritas Nigeria'),
(44850, 38184, 'en', 'name', 'Institute for Advanced Study in the Humanities Essen'),
(44851, 38184, 'de', 'name', 'Kulturwissenschaftliches Institut Essen'),
(44852, 38185, 'pt', 'name', 'Centro de Desenvolvimento SustentƔvel para as Zonas Costeiras'),
(44853, 38186, 'en', 'name', 'Centre for the Study of Adolescence'),
(44854, 38187, 'fr', 'name', 'Centre de DƩveloppement des Technologies AvancƩes'),
(44855, 38188, 'en', 'name', 'Centre of Ticks and Tick-borne diseases'),
(44856, 38189, 'fr', 'name', 'Centre de Recherche en Astronomie Astrophysique et GƩophysique'),
(44857, 38190, 'fr', 'name', 'Centre national du cuir et de la chaussure'),
(44858, 38190, 'en', 'name', 'National Center for Leather and Shoes'),
(44859, 38190, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„Ų¬Ł„ŁˆŲÆ ŁˆŲ§Ł„Ų£Ų­Ų°ŁŠŲ©'),
(44860, 38191, 'fr', 'name', 'Centre des Techniques et MatƩriaux de Construction'),
(44861, 38192, 'en', 'name', 'Milltown Institute of Theology and Philosophy'),
(44862, 38193, 'en', 'name', 'Centre for Educational Development in Health Arusha'),
(44863, 38194, 'fr', 'name', 'Chambre de Commerce et d''Industrie du Centre'),
(44864, 38195, 'en', 'name', 'Chamber of Commerce and Industry of Tunis'),
(44865, 38195, 'fr', 'name', 'Chambre de Commerce et d''Industrie de Tunis'),
(44866, 38196, 'fr', 'name', 'Centre pour l’Environnement et le DĆ©veloppement'),
(44867, 38197, 'fr', 'name', 'Centre de Recherche & DĆ©veloppement de l''ƉlectricitĆ© et du Gaz'),
(44868, 38198, 'en', 'name', 'Department of Research and Specialist Services'),
(44869, 38199, 'fr', 'name', 'Consortium pour la recherche Ʃconomique et sociale'),
(44870, 38200, 'en', 'name', 'Consumer Goods Council of South Africa'),
(44871, 38201, 'en', 'name', 'Children''s AIDS Fund Uganda'),
(44872, 38202, 'en', 'name', 'Center for National Health Development in Ethiopia'),
(44873, 38203, 'fr', 'name', 'Centre Royal de TƩlƩdƩtection Spatiale'),
(44874, 38203, 'en', 'name', 'Royal Centre for Remote Sensing'),
(44875, 38204, 'en', 'name', 'Cooperative Office for Voluntary Organizations'),
(44876, 38205, 'en', 'name', 'Development Aid from People to People'),
(44877, 38206, 'no_lang_code', 'name', 'Chitungwiza Municipality'),
(44878, 38207, 'fr', 'name', 'Centre Technique de l''Agro-Alimentaire'),
(44879, 38208, 'no_lang_code', 'name', 'De Beers (South Africa)'),
(44880, 38209, 'en', 'name', 'Packaging Technical Centre'),
(44881, 38210, 'fr', 'name', 'Coordination Nationale des Organisations Paysannes du Mali'),
(44882, 38211, 'fr', 'name', 'Centre Technique des Industries Agroalimentaires'),
(44883, 38212, 'en', 'name', 'Coordinating Office for Control of Trypanosomiasis in Uganda'),
(44884, 38213, 'en', 'name', 'Chreso Ministries'),
(44885, 38214, 'fr', 'name', 'Centre technique du textile'),
(44886, 38214, 'en', 'name', 'Textile Technical Center'),
(44887, 38215, 'no_lang_code', 'name', 'Cosmos Limited'),
(44888, 38216, 'en', 'name', 'Christian Council of Tanzania'),
(44889, 38217, 'en', 'name', 'National Engineering School of Tunis'),
(44890, 38217, 'fr', 'name', 'Ɖcole Nationale d''IngĆ©nieurs de Tunis'),
(44891, 38217, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† ŲØŲŖŁˆŁ†Ų³'),
(44892, 38218, 'no_lang_code', 'name', 'Deltamune (South Africa)'),
(44893, 38219, 'fr', 'name', 'Ɖcole Nationale d''IngĆ©nieurs de GabĆØs'),
(44894, 38219, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† بقابس'),
(44895, 38220, 'en', 'name', 'Ministry of Health and the Fight against AIDS'),
(44896, 38220, 'fr', 'name', 'Ministère de la Santé et de la Lutte contre le sida'),
(44897, 38221, 'en', 'name', 'Excellence & Friends Management Care Centre'),
(44898, 38222, 'en', 'name', 'Christian Health Association of Kenya'),
(44899, 38223, 'en', 'name', 'Christian Health Association of Malawi'),
(44900, 38224, 'en', 'name', 'e-Waste Association of South Africa'),
(44901, 38225, 'en', 'name', 'Christian Health Association of Nigeria'),
(44902, 38226, 'en', 'name', 'Christian Social Services Commission'),
(44903, 38227, 'en', 'name', 'Churches Health Assoication Of Zambia'),
(44904, 38228, 'en', 'name', 'National Registration, Passport and Citizenship Department'),
(44905, 38229, 'fr', 'name', 'Ɖcole Nationale ForestiĆØre d''IngĆ©nieurs'),
(44906, 38230, 'en', 'name', 'CIAM Public Health Research and Development Centre'),
(44907, 38231, 'en', 'name', 'Desert Research Foundation of Namibia'),
(44908, 38232, 'en', 'name', 'Desmond Tutu HIV Foundation'),
(44909, 38233, 'en', 'name', 'Eastern Deanery AIDS Relief Program'),
(44910, 38234, 'en', 'name', 'Polytechnic School of Algiers'),
(44911, 38234, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© المتعددة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖ بالجزائر'),
(44912, 38235, 'en', 'name', 'Development Aid from People to People in Zambia'),
(44913, 38236, 'en', 'name', 'Citizens for Justice'),
(44914, 38237, 'fr', 'name', 'Commune de Bobo-Dioulasso'),
(44915, 38238, 'fr', 'name', 'Commune de Matam'),
(44916, 38239, 'pt', 'name', 'Direcção Geral de Ensino Superior Ciencia'),
(44917, 38240, 'pt', 'name', 'Ministério da Saúde e da Segurança Social'),
(44918, 38241, 'en', 'name', 'Tunisia Polytechnic School'),
(44919, 38241, 'fr', 'name', 'Ɖcole Polytechnique de Tunisie'),
(44920, 38241, 'ar', 'name', 'المدرسة Ų§Ł„ŲŖŁˆŁ†Ų³ŁŠŲ© Ł„Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖā€Ž'),
(44921, 38242, 'en', 'name', 'Community Development Resource Network'),
(44922, 38243, 'en', 'name', 'Climate Change, Agriculture and Food Security'),
(44923, 38244, 'no_lang_code', 'name', 'Electra- Empresa de Electricidade e Ɓgua (Cape Verde)'),
(44924, 38245, 'en', 'name', 'Community Media Trust'),
(44925, 38246, 'pt', 'name', 'Clƭnica Sagrada EsperanƧa'),
(44926, 38247, 'fr', 'name', 'Enda Sahel et Afrique de l’Ouest'),
(44927, 38248, 'en', 'name', 'National Directorate of Geology'),
(44928, 38249, 'fr', 'name', 'Direction de l’EpidĆ©miologie et de Lutte contre les Maladies'),
(44929, 38250, 'en', 'name', 'Ethiopian Agricultural Transformation Agency'),
(44930, 38251, 'en', 'name', 'Ethiopian Development Research Institute'),
(44931, 38252, 'no_lang_code', 'name', 'Compagnie Africaine des Peintures'),
(44932, 38253, 'en', 'name', 'Ethiopian Economic Association'),
(44933, 38254, 'fr', 'name', 'Direction de la MƩtƩorologie Nationale'),
(44934, 38255, 'fr', 'name', 'Direction de la MƩtƩorologie Nationale du Niger'),
(44935, 38256, 'en', 'name', 'National Water Research Center');
INSERT INTO `ror_settings` VALUES
(44936, 38257, 'en', 'name', 'Ethiopian Medical Association'),
(44937, 38258, 'en', 'name', 'Ethiopian Society of Obstetricians and Gynecologists'),
(44938, 38259, 'en', 'name', 'Environmental Alert'),
(44939, 38260, 'no_lang_code', 'name', 'Etablissements Abdelmoula (Tunisia)'),
(44940, 38261, 'en', 'name', 'Environmental Law Research Institute'),
(44941, 38262, 'fr', 'name', 'Conseil ouest et centre africain pour la recherche et le dƩveloppement agricoles'),
(44942, 38262, 'en', 'name', 'West and Central African Council for Agricultural Research and Development'),
(44943, 38263, 'no_lang_code', 'name', 'Eurofilet (Morocco)'),
(44944, 38264, 'no_lang_code', 'name', 'Environement Quality International (Egypt)'),
(44945, 38265, 'fr', 'name', 'Laboratoire National de SantƩ Publique du Congo'),
(44946, 38266, 'fr', 'name', 'ComitƩ National de TƩlƩdƩtection et d''Information GƩographique'),
(44947, 38267, 'en', 'name', 'Ministry of National Education and Scientific Research'),
(44948, 38268, 'en', 'name', 'Antelope Valley College'),
(44949, 38269, 'en', 'name', 'Family Aids Caring Trust'),
(44950, 38270, 'en', 'name', 'Mateur Higher School of Agriculture'),
(44951, 38271, 'en', 'name', 'Family Guidance Association of Ethiopia'),
(44952, 38272, 'en', 'name', 'Sub-Regional Fisheries Commission'),
(44953, 38273, 'fr', 'name', 'Fondation du Roi Abdul-Aziz Al Saoud'),
(44954, 38274, 'no_lang_code', 'name', 'ETC East Africa (Kenya)'),
(44955, 38275, 'no_lang_code', 'name', 'Farm Africa Kenya'),
(44956, 38276, 'en', 'name', 'Food, Agriculture and Natural Resources Policy Analysis Network'),
(44957, 38277, 'en', 'name', 'Farm Africa Ethiopia'),
(44958, 38278, 'fr', 'name', 'Groupe de Recherche et d’Action sur le Foncier'),
(44959, 38279, 'fr', 'name', 'Ɖcole SupĆ©rieure des IngĆ©nieurs de l''Ɖquipement Rural'),
(44960, 38280, 'en', 'name', 'Federal HIV/AIDS Prevention and Control Office'),
(44961, 38281, 'en', 'name', 'Assiniboine Community College'),
(44962, 38282, 'en', 'name', 'Food, Agriculture and Natural Resources Policy Analysis Network'),
(44963, 38283, 'en', 'name', 'Concern for Development Initiatives in Africa'),
(44964, 38284, 'en', 'name', 'Group For Research and Technology Exchanges'),
(44965, 38284, 'fr', 'name', 'Groupe de Recherches et d''Echanges Technologiques'),
(44966, 38285, 'en', 'name', 'Forestry Research Institute of Nigeria'),
(44967, 38286, 'no_lang_code', 'name', 'EcoMetrix Africa'),
(44968, 38287, 'en', 'name', 'Forestry Commission'),
(44969, 38288, 'no_lang_code', 'name', 'Egyptian Consulting & Trading Co. Ltd'),
(44970, 38289, 'no_lang_code', 'name', 'Grow More Seeds and Chemicals (Uganda)'),
(44971, 38290, 'no_lang_code', 'name', 'Geoterra Image (South Africa)'),
(44972, 38291, 'no_lang_code', 'name', 'Forum For Social Studies'),
(44973, 38292, 'en', 'name', 'Education Labour Relations Council'),
(44974, 38293, 'en', 'name', 'Ghana AIDS Commission'),
(44975, 38294, 'en', 'name', 'Friends of the Earth-Ghana'),
(44976, 38295, 'no_lang_code', 'name', 'Grupo João Ferreira dos Santos (Mozambique)'),
(44977, 38296, 'en', 'name', 'Egypt Exploration Society'),
(44978, 38297, 'en', 'name', 'Friends for Global Health Initiative Nigeria'),
(44979, 38298, 'en', 'name', 'GS1 South Africa'),
(44980, 38299, 'no_lang_code', 'name', 'Ghana-India Kofi Annan Centre of Excellence in ICT'),
(44981, 38300, 'en', 'name', 'Egyptian Information Telecommunications Electronics and Software Alliance'),
(44982, 38301, 'en', 'name', 'Flower Valley Conservation Trust'),
(44983, 38302, 'ar', 'name', 'Ecole SupƩrieure des Industries Alimentaires de Tunis'),
(44984, 38302, 'en', 'name', 'Higher Institute of Food Industries of Tunis'),
(44985, 38303, 'en', 'name', 'Ghana Meteorological Agency'),
(44986, 38304, 'en', 'name', 'Egyptian Museum'),
(44987, 38305, 'en', 'name', 'Fobang Foundation'),
(44988, 38306, 'no_lang_code', 'name', 'Vacsera (Egypt)'),
(44989, 38307, 'fr', 'name', 'Haut-Commissariat aux Eaux et Forêts et à la Lutte Contre la Désertification'),
(44990, 38308, 'en', 'name', 'Elizabeth Glaser Pediatric AIDS Foundation'),
(44991, 38309, 'no_lang_code', 'name', 'Egyptian Solar Research Center'),
(44992, 38310, 'en', 'name', 'Hope Worldwide'),
(44993, 38311, 'en', 'name', 'Hope Worldwide Kenya'),
(44994, 38312, 'en', 'name', 'Egyptian Center for Public Policy Studies'),
(44995, 38313, 'en', 'name', 'IHub'),
(44996, 38314, 'en', 'name', 'Global Water Partnership'),
(44997, 38315, 'no_lang_code', 'name', 'Health Science Academy (South Africa)'),
(44998, 38316, 'en', 'name', 'Golden Valley Agricultural Research Trust'),
(44999, 38317, 'no_lang_code', 'name', 'IBM (Egypt)'),
(45000, 38318, 'no_lang_code', 'name', 'Health Strat (Kenya)'),
(45001, 38319, 'no_lang_code', 'name', 'Golder Associates (South Africa)'),
(45002, 38320, 'en', 'name', 'Government of Equatorial Guinea'),
(45003, 38321, 'en', 'name', 'Government of Ethiopia'),
(45004, 38322, 'en', 'name', 'ICLEI - Local Governments for Sustainability Africa'),
(45005, 38323, 'en', 'name', 'Malawi Government'),
(45006, 38324, 'pt', 'name', 'República de Moçambique'),
(45007, 38325, 'en', 'name', 'Government of Uganda'),
(45008, 38326, 'en', 'name', 'Ministry of Finance and Development Planning'),
(45009, 38327, 'no_lang_code', 'name', 'Illovo Sugar (South Africa)'),
(45010, 38328, 'en', 'name', 'Grand Egyptian Museum'),
(45011, 38329, 'no_lang_code', 'name', 'Graphtech (Tunisia)'),
(45012, 38330, 'no_lang_code', 'name', 'Infusion (South Africa)'),
(45013, 38331, 'fr', 'name', 'Institut National de la Recherche Agronomique du Niger'),
(45014, 38332, 'fr', 'name', 'Institut de Recherche Pour le DƩveloppement'),
(45015, 38333, 'en', 'name', 'French Institute for Research in Africa'),
(45016, 38334, 'fr', 'name', 'Institut Africain de Gestion Urbaine'),
(45017, 38335, 'fr', 'name', 'Institut National de Recherche ForestiĆØre'),
(45018, 38336, 'fr', 'name', 'Institut National de SantƩ Publique'),
(45019, 38337, 'fr', 'name', 'Institut National de Nutrition et de Technologie Alimentaire'),
(45020, 38338, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(45021, 38339, 'fr', 'name', 'Institut Panos Afrique de l''Ouest'),
(45022, 38339, 'en', 'name', 'Panos Institute West Africa'),
(45023, 38340, 'fr', 'name', 'Institut de Recherche Agronomique de GuinƩe'),
(45024, 38341, 'fr', 'name', 'Institut Marocain des Relations Internationales'),
(45025, 38341, 'en', 'name', 'MOROCCAN INSTITUTE OF INTERNATIONAL RELATIONS'),
(45026, 38342, 'no_lang_code', 'name', 'International Consultants (Egypt)'),
(45027, 38343, 'fr', 'name', 'Institut Mauritanien de Recherches Océanographiques et des Pêches'),
(45028, 38344, 'pt', 'name', 'Instituto Nacional de Desenvolvimento das Pescas'),
(45029, 38345, 'en', 'name', 'International Crops Research Institute for the Semi-Arid Tropics'),
(45030, 38346, 'fr', 'name', 'Institut Polytechnique Rural de Formation et de Recherche AppliquƩe'),
(45031, 38347, 'pt', 'name', 'Instituto Nacional de Estudos e Pesquisa'),
(45032, 38348, 'pt', 'name', 'Instituto Nacional de Gestão de Calamidades'),
(45033, 38348, 'en', 'name', 'National Disasters Management Institute'),
(45034, 38349, 'no_lang_code', 'name', 'International Drilling Services (Tunisia)'),
(45035, 38350, 'pt', 'name', 'Instituto Nacional de Meteorologia de MoƧambique'),
(45036, 38350, 'en', 'name', 'Mozambique National Institute of Meteorology'),
(45037, 38351, 'en', 'name', 'Kara Counselling and Training Trust'),
(45038, 38352, 'en', 'name', 'International Partnership for Human Development'),
(45039, 38353, 'fr', 'name', 'Institut SupƩrieur de Gestion et de Planification'),
(45040, 38354, 'en', 'name', 'Kasisi Agricultural Training Centre'),
(45041, 38355, 'fr', 'name', 'Iskane IngƩnierie'),
(45042, 38356, 'en', 'name', 'Integrated Community Based Initiatives'),
(45043, 38357, 'no_lang_code', 'name', 'ISS International (South Africa)'),
(45044, 38358, 'fr', 'name', 'Institut Superieur Des Sciences De La Population'),
(45045, 38359, 'en', 'name', 'Kenya AIDS NGOs Consortium'),
(45046, 38360, 'fr', 'name', 'Institut Technique des Grandes Cultures'),
(45047, 38361, 'en', 'name', 'Italian Institute of Culture'),
(45048, 38362, 'en', 'name', 'Kenya AIDS Vaccine Initiative'),
(45049, 38363, 'fr', 'name', 'Institut Togolais de Recherche Agronomique'),
(45050, 38364, 'en', 'name', 'Kenya Coastal Development Project'),
(45051, 38365, 'fr', 'name', 'Institut Tunisien de la CompetitivitƩ et des Etudes Quantitatives'),
(45052, 38365, 'en', 'name', 'Tunisian Institute of Competitiveness and Quantitative Studies'),
(45053, 38366, 'fr', 'name', 'Commission du Bassin du Lac Tchad'),
(45054, 38366, 'en', 'name', 'Lake Chad Basin Commission'),
(45055, 38367, 'en', 'name', 'Jembi Health Systems'),
(45056, 38368, 'en', 'name', 'Practical Action'),
(45057, 38369, 'en', 'name', 'Kenya Institute for Public Policy Research and Analysis'),
(45058, 38370, 'fr', 'name', 'AutoritƩ du Lac Tanganyika'),
(45059, 38370, 'en', 'name', 'Lake Tanganyika Authority'),
(45060, 38371, 'en', 'name', 'Kenya Institute Of Organic Farming'),
(45061, 38372, 'en', 'name', 'Practical Action'),
(45062, 38373, 'en', 'name', 'Rwanda Meteorological Service'),
(45063, 38374, 'en', 'name', 'Justice Development and Peace Caritas'),
(45064, 38375, 'en', 'name', 'Lake Victoria Fisheries Organization'),
(45065, 38376, 'en', 'name', 'Market Matters'),
(45066, 38377, 'en', 'name', 'Kenya Plant Health Inspectorate Services'),
(45067, 38378, 'fr', 'name', 'Direction GƩnƩrale de la MƩtƩorologie'),
(45068, 38379, 'en', 'name', 'Kenya Psychiatry Association​'),
(45069, 38380, 'en', 'name', 'Maroc Numeric Cluster'),
(45070, 38381, 'en', 'name', 'Grounded Media'),
(45071, 38382, 'en', 'name', 'Methodist Church in Zimbabwe'),
(45072, 38383, 'en', 'name', 'Kalahari Conservation Society'),
(45073, 38384, 'en', 'name', 'Kenya Sea Turtle Conservation Committee'),
(45074, 38385, 'no_lang_code', 'name', 'mHealth (Kenya)'),
(45075, 38386, 'no_lang_code', 'name', 'Kenya Seed Company (Kenya)'),
(45076, 38387, 'en', 'name', 'MICAIA Foundation'),
(45077, 38388, 'en', 'name', 'Kamiesberg Local Municipality'),
(45078, 38389, 'no_lang_code', 'name', 'Microchem (South Africa)'),
(45079, 38390, 'en', 'name', 'Kenyan Medical Women''s Association'),
(45080, 38391, 'no_lang_code', 'name', 'Lesieur Cristal'),
(45081, 38392, 'en', 'name', 'Ministry of Agriculture Livestock and Fisheries'),
(45082, 38393, 'no_lang_code', 'name', 'Kheth’Impilo'),
(45083, 38394, 'fr', 'name', 'Ministère de l''Agriculture, du Développement Rural et de la Pêche'),
(45084, 38395, 'en', 'name', 'Lighthouse Trust'),
(45085, 38396, 'en', 'name', 'Ministry of Agriculture and Fisheries'),
(45086, 38396, 'fr', 'name', 'MinistĆØre de l''Agriculture et de la PĆŖche Maritime'),
(45087, 38397, 'en', 'name', 'Kumi District Local Government'),
(45088, 38398, 'no_lang_code', 'name', 'Mimar Engineering Consultancy (Egypt)'),
(45089, 38399, 'no_lang_code', 'name', 'Kusamotu & Kusamotu'),
(45090, 38400, 'en', 'name', 'Medical Access Uganda'),
(45091, 38401, 'fr', 'name', 'MinistĆØre de l’Enseignement SupĆ©rieur et de la Recherche Scientifique'),
(45092, 38402, 'en', 'name', 'Medical Research Council of Zimbabwe'),
(45093, 38403, 'en', 'name', 'Ministry of Livestock, Fisheries and Animal Industries'),
(45094, 38403, 'fr', 'name', 'MinistĆØre de l''Elevage, des PĆŖches et des Industries Animales'),
(45095, 38404, 'fr', 'name', 'MinistĆØre de l''Ɖquipement'),
(45096, 38405, 'en', 'name', 'LVCT Health'),
(45097, 38406, 'en', 'name', 'Ministry of Mines, Industry and Technological Development'),
(45098, 38406, 'fr', 'name', 'Ministère des Mines, de l''Industrie et du Développement Technologique'),
(45099, 38407, 'en', 'name', 'Ministry of Agriculture, Food Security and Cooperatives'),
(45100, 38407, 'sw', 'name', 'Wizara ya Kilimo, Chakula na Ushirika'),
(45101, 38408, 'fr', 'name', 'MinistĆØre de l’Industrie, du Commerce, de l’Investissement et de l’Economie NumĆ©rique'),
(45102, 38409, 'fr', 'name', 'Laboratoire d''Ɖtudes et de Recherche sur les Dynamiques Sociales et le DĆ©veloppement Local'),
(45103, 38410, 'fr', 'name', 'MinistĆØre de la Culture'),
(45104, 38411, 'pt', 'name', 'Centro Terra Viva'),
(45105, 38412, 'fr', 'name', 'Laboratoire National d''Appui au DƩveloppement Agricole'),
(45106, 38413, 'fr', 'name', 'Ministère de la Santé Publique'),
(45107, 38414, 'fr', 'name', 'Ministre de la SantƩ'),
(45108, 38415, 'fr', 'name', 'Ministère de la Santé'),
(45109, 38416, 'en', 'name', 'Ministry of Health and Sanitation'),
(45110, 38417, 'fr', 'name', 'MinistĆØre de Environnement et de l''Assainissement du Mali'),
(45111, 38418, 'en', 'name', 'Madagascar Biodiversity Partnership'),
(45112, 38419, 'fr', 'name', 'MinistĆØre de l’Environnement et du DĆ©veloppement Durable'),
(45113, 38420, 'en', 'name', 'Ministry of Public Health and Hygiene'),
(45114, 38420, 'fr', 'name', 'Ministère de la Santé et de l''Hygiène Publique'),
(45115, 38421, 'en', 'name', 'Ministry of Information, Communications and Technology'),
(45116, 38422, 'en', 'name', 'Ministry of Lands and Rural Resettlement'),
(45117, 38423, 'en', 'name', 'Ministry of Environment Science Technology and Innovation'),
(45118, 38424, 'en', 'name', 'Ministry of Lands, Housing & Urban Development'),
(45119, 38425, 'no_lang_code', 'name', 'Maison Arabe de Software et de Hardware (Tunisia)'),
(45120, 38426, 'fr', 'name', 'MinistĆØre de l’Éducation Nationale et de l''Enseignement Technique'),
(45121, 38427, 'no_lang_code', 'name', 'MultiMedia InnoVations (South Africa)'),
(45122, 38428, 'en', 'name', 'Ministry of Sea Inland Waters and Fisheries'),
(45123, 38428, 'pt', 'name', 'MinistƩrio do Mar, Ɓguas Interiores e Pescas'),
(45124, 38429, 'no_lang_code', 'name', 'MAKGABANENG'),
(45125, 38430, 'en', 'name', 'Nakuru County Council'),
(45126, 38431, 'en', 'name', 'Ministy of Fisheries and Marine Resources'),
(45127, 38432, 'en', 'name', 'Ministry of Natural Resources and Tourism'),
(45128, 38432, 'sw', 'name', 'Wizara ya Maliasili na Utalii'),
(45129, 38433, 'en', 'name', 'Nama Khoi Local Municipality'),
(45130, 38434, 'en', 'name', 'Ministry of Water and Energy'),
(45131, 38435, 'en', 'name', 'Ministry of Health'),
(45132, 38436, 'en', 'name', 'Malawi Blood Transfusion Service'),
(45133, 38437, 'en', 'name', 'Namibia Institute of Pathology'),
(45134, 38438, 'en', 'name', 'Ministry of Water and Environment'),
(45135, 38439, 'en', 'name', 'Ministry of Food and Agriculture'),
(45136, 38440, 'no_lang_code', 'name', 'Nano Energy (South Africa)'),
(45137, 38441, 'en', 'name', 'Mali Health'),
(45138, 38442, 'en', 'name', 'National Smallholder Farmers Association of Malawi'),
(45139, 38443, 'en', 'name', 'Ministry of Health and Social Welfare'),
(45140, 38444, 'pt', 'name', 'Ministério da Administração Interna'),
(45141, 38445, 'en', 'name', 'National AIDS Council'),
(45142, 38446, 'no_lang_code', 'name', 'Misc (Egypt)'),
(45143, 38447, 'pt', 'name', 'Ministério do Ensino Superior Ciência e Inovação'),
(45144, 38448, 'en', 'name', 'National Blood Service Zimbabwe'),
(45145, 38449, 'en', 'name', 'Kenya National Blood Transfusion Services'),
(45146, 38450, 'en', 'name', 'National Blood Transfusion Service'),
(45147, 38451, 'en', 'name', 'Ministry of Irrigation and Water Development'),
(45148, 38452, 'en', 'name', 'Ministry of Agriculture, Animal Industry and Fisheries'),
(45149, 38453, 'en', 'name', 'Ministry of Health and Social Services'),
(45150, 38454, 'en', 'name', 'Ministry of Agriculture and Land Reclamation'),
(45151, 38454, 'ar', 'name', 'وزارة الزراعة ŁˆŲ§Ų³ŲŖŲµŁ„Ų§Ų­ Ų§Ł„Ų£Ų±Ų§Ų¶ŁŠ Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(45152, 38455, 'en', 'name', 'Ministry of Agriculture'),
(45153, 38456, 'en', 'name', 'National Medical Stores'),
(45154, 38457, 'en', 'name', 'National Veterinary Institute'),
(45155, 38458, 'en', 'name', 'Department of Arts and Culture'),
(45156, 38459, 'en', 'name', 'National Computer Board'),
(45157, 38460, 'en', 'name', 'National Office for Technology Acquisition and Promotion'),
(45158, 38461, 'en', 'name', 'Ministry of Community Development, Mother and Child Health'),
(45159, 38462, 'en', 'name', 'Network of AIDS Researchers of Eastern and Southern Africa'),
(45160, 38463, 'fr', 'name', 'Office National pour l''Environnement'),
(45161, 38464, 'en', 'name', 'National Institute for Scientific and Industrial Research'),
(45162, 38465, 'en', 'name', 'National Organization of Peer Educators'),
(45163, 38466, 'en', 'name', 'Network of Networks of HIV Positives'),
(45164, 38467, 'en', 'name', 'Ministry of Education and Vocation Training'),
(45165, 38467, 'sw', 'name', 'Wizara ya Elimu na Mafunzo ya Ufundi'),
(45166, 38468, 'en', 'name', 'Tropical Pesticides Research Institute'),
(45167, 38469, 'en', 'name', 'National Agricultural Research Institute'),
(45168, 38470, 'en', 'name', 'National Wool Growers Associations of South Africa'),
(45169, 38471, 'en', 'name', 'National Primary Health Care Development Agency'),
(45170, 38472, 'rw', 'name', 'Minisiteri y''Uburezi'),
(45171, 38472, 'en', 'name', 'Ministry of Education'),
(45172, 38472, 'fr', 'name', 'MinistĆØre de l''Ɖducation'),
(45173, 38473, 'en', 'name', 'Department of Correctional Services'),
(45174, 38473, 'af', 'name', 'Suid-Afrikaanse Departement van Korrektiewe Dienste'),
(45175, 38474, 'en', 'name', 'Nature Conservation Research Centre'),
(45176, 38475, 'en', 'name', 'Ministry of Environment and Natural Resources & Regional Development Authorities'),
(45177, 38476, 'en', 'name', 'National Drought Management Authority'),
(45178, 38477, 'en', 'name', 'Network for Water and Sanitation International'),
(45179, 38478, 'en', 'name', 'Netwas Uganda'),
(45180, 38479, 'en', 'name', 'National Environment Management Council'),
(45181, 38480, 'no_lang_code', 'name', 'Philanjalo'),
(45182, 38481, 'fr', 'name', 'PhotoTherme'),
(45183, 38482, 'en', 'name', 'Phyto consulting'),
(45184, 38483, 'no_lang_code', 'name', 'Pikitup'),
(45185, 38484, 'fr', 'name', 'Observatoire Satellital des ForĆŖts d’Afrique Centrale'),
(45186, 38485, 'en', 'name', 'National HIV/AIDS/STI/TB Council'),
(45187, 38486, 'en', 'name', 'Research on Poverty Alleviation'),
(45188, 38487, 'no_lang_code', 'name', 'Nile Valley Engineering (Egypt)'),
(45189, 38488, 'no_lang_code', 'name', 'Research Research (South Africa)'),
(45190, 38489, 'en', 'name', 'Goma Volcanological Observatory'),
(45191, 38489, 'fr', 'name', 'Observatoire Volcanologique de Goma'),
(45192, 38490, 'no_lang_code', 'name', 'Energy Services in Sahelian Environment (Senegal)'),
(45193, 38490, 'fr', 'name', 'Service de l''Ʃnergie en milieu sahƩlien'),
(45194, 38491, 'no_lang_code', 'name', 'Nobex Technology (Nigeria)'),
(45195, 38492, 'no_lang_code', 'name', 'PRASAC'),
(45196, 38492, 'fr', 'name', 'PÓle Régional de Recherche Appliquée au Développement des Systèmes Agricoles d''Afrique Centrale'),
(45197, 38493, 'fr', 'name', 'RĆ©seau des Plateformess d’ONG d’Afrique de l’Ouest et du Centre'),
(45198, 38494, 'en', 'name', 'Seychelles Fishing Authority'),
(45199, 38495, 'no_lang_code', 'name', 'North South Consultants Exchange (Egypt)'),
(45200, 38496, 'en', 'name', 'Resource Conflict Institute'),
(45201, 38497, 'en', 'name', 'Moroccan National Railways Office'),
(45202, 38497, 'fr', 'name', 'Office National des Chemins de Fer du Maroc'),
(45203, 38498, 'en', 'name', 'Shout It Now'),
(45204, 38499, 'no_lang_code', 'name', 'Ressources IngƩnierie (Morocco)'),
(45205, 38500, 'en', 'name', 'Nyanza Reproductive Health Society'),
(45206, 38501, 'fr', 'name', 'Observatoire du Sahara et du Sahel'),
(45207, 38501, 'en', 'name', 'Sahara and Sahel Observatory'),
(45208, 38502, 'no_lang_code', 'name', 'Premiere'),
(45209, 38503, 'fr', 'name', 'Observatoire National de la Jeunesse'),
(45210, 38504, 'en', 'name', 'Social Development and Improvement Agency'),
(45211, 38505, 'fr', 'name', 'Observatoire National des Droits de l''Enfant'),
(45212, 38506, 'en', 'name', 'National Society for Electricity and Gas'),
(45213, 38506, 'fr', 'name', 'Socièté Nationale de l''Electricité et du Gaz'),
(45214, 38506, 'ar', 'name', 'Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„ŁƒŁ‡Ų±ŲØŲ§Ų” ŁˆŲ§Ł„ŲŗŲ§Ų² أو Ų³ŁˆŁ†Ł„ŲŗŲ§Ų²'),
(45215, 38507, 'en', 'name', 'National Sanitation Utility'),
(45216, 38507, 'fr', 'name', 'Office National de l''Assainissement'),
(45217, 38508, 'en', 'name', 'Southern African Clothing & Textile Workers’ Union'),
(45218, 38509, 'en', 'name', 'Pro Health International'),
(45219, 38510, 'en', 'name', 'South African Weather Service'),
(45220, 38511, 'fr', 'name', 'Société de Développement des Forêts'),
(45221, 38512, 'fr', 'name', 'SociƩtƩ GƩnƩrale des Travaux du Maroc'),
(45222, 38513, 'en', 'name', 'Southern African NGO Network'),
(45223, 38514, 'en', 'name', 'Programme for Accessible Health Communication and Education'),
(45224, 38515, 'en', 'name', 'Sahel Eco'),
(45225, 38516, 'en', 'name', 'Southern African Catholic Bishops Conference'),
(45226, 38517, 'fr', 'name', 'Office National de l''Electricite et de l''Eau Potable'),
(45227, 38518, 'en', 'name', 'Sahelian Solutions Foundation'),
(45228, 38519, 'fr', 'name', 'SociĆ©tĆ© Nationale d’Études du DĆ©troit de Gibraltar'),
(45229, 38520, 'en', 'name', 'Southern African Development Community'),
(45230, 38521, 'en', 'name', 'Scripture Union'),
(45231, 38522, 'en', 'name', 'Southern African Research and Innovation Management Association'),
(45232, 38523, 'no_lang_code', 'name', 'Sakhr Software (Egypt)'),
(45233, 38524, 'fr', 'name', 'Office National de la MƩtƩorologie'),
(45234, 38525, 'en', 'name', 'South African Business Coalition'),
(45235, 38526, 'fr', 'name', 'Progamme National Contre le Tuberculose'),
(45236, 38527, 'en', 'name', 'National Office of Hydrocarbons and Mines'),
(45237, 38527, 'fr', 'name', 'Office National des Hydrocarbures et des Mines'),
(45238, 38528, 'no_lang_code', 'name', 'Sanru'),
(45239, 38529, 'fr', 'name', 'SantƩ Espoir Vie CƓte d''Ivoire'),
(45240, 38530, 'fr', 'name', 'Office RƩgional de Mise en Valeur Agricole de Ouarzazate'),
(45241, 38531, 'no_lang_code', 'name', 'Solar23 Tunisie (Tunisia)'),
(45242, 38532, 'no_lang_code', 'name', 'Sappi (South Africa)'),
(45243, 38533, 'en', 'name', 'Somalia Water and Land Information'),
(45244, 38534, 'no_lang_code', 'name', 'Sarost (Tunisia)'),
(45245, 38535, 'no_lang_code', 'name', 'Sonatrach (Algeria)'),
(45246, 38535, 'ar', 'name', 'المؤسسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„ŲŖŁ†Ł‚ŁŠŲØ, صناعة, نقل, ŲŖŲ­ŁˆŁŠŁ„ و ŲŖŲ³ŁˆŁŠŁ‚ Ų§Ł„Ł…Ų­Ų±ŁˆŁ‚Ų§ŲŖ'),
(45247, 38536, 'en', 'name', 'Protecting Families against HIV AIDS'),
(45248, 38537, 'en', 'name', 'St. Mary’s Hospital'),
(45249, 38538, 'no_lang_code', 'name', 'OnApp (Gibraltar)'),
(45250, 38539, 'en', 'name', 'Songhai Health Trust'),
(45251, 38540, 'no_lang_code', 'name', 'Sophumelela Centre'),
(45252, 38541, 'no_lang_code', 'name', 'Flora Pyramids Paper Mills'),
(45253, 38542, 'pt', 'name', 'Radio MoƧambique'),
(45254, 38543, 'no_lang_code', 'name', 'SOS Sahel Ethiopia'),
(45255, 38544, 'en', 'name', 'Ministry of Energy, Mines, Water and Environment'),
(45256, 38544, 'fr', 'name', 'MinistĆØre de l''Energie, des Mines, de l''Eau et de l''Environnement'),
(45257, 38545, 'en', 'name', 'Rainman Landcare Foundation'),
(45258, 38546, 'fr', 'name', 'Organisation Pour la Mise en Valeur du Fleuve SƩnƩgal'),
(45259, 38546, 'en', 'name', 'Senegal River Basin Development Authority'),
(45260, 38547, 'en', 'name', 'South African Democratic Teachers Union'),
(45261, 38548, 'en', 'name', 'Sudan Meteorological Authority'),
(45262, 38549, 'en', 'name', 'Department of Agriculture, Land Reform and Rural Development'),
(45263, 38550, 'no_lang_code', 'name', 'Section27'),
(45264, 38551, 'en', 'name', 'Regional Alliance for Sustainable Development'),
(45265, 38552, 'en', 'name', 'South African Institute of Tax Practitioners'),
(45266, 38553, 'no_lang_code', 'name', 'Sekem'),
(45267, 38554, 'en', 'name', 'Organization for Social Services for AIDS'),
(45268, 38555, 'no_lang_code', 'name', 'REACH ETHIOPIA'),
(45269, 38556, 'en', 'name', 'Southern African Aids Trust'),
(45270, 38557, 'en', 'name', 'South African National Energy Development Institute'),
(45271, 38558, 'en', 'name', 'Panos Eastern Africa'),
(45272, 38559, 'en', 'name', 'Tea Research Foundation of Central Africa'),
(45273, 38560, 'en', 'name', 'Re Action'),
(45274, 38561, 'no_lang_code', 'name', 'Panos Institute Southern Africa'),
(45275, 38562, 'en', 'name', 'Banc d''Arguin National Park'),
(45276, 38562, 'fr', 'name', 'Parc National du Banc d''Arguin'),
(45277, 38563, 'no_lang_code', 'name', 'Technoscene (South Africa)'),
(45278, 38564, 'en', 'name', 'Uganda Episcopal Conference'),
(45279, 38565, 'en', 'name', 'Research for Equity And Community Health Trust'),
(45280, 38566, 'fr', 'name', 'RƩgie Autonome Multi Services D''Agadir'),
(45281, 38567, 'no_lang_code', 'name', 'Syngenta (Zimbabwe)'),
(45282, 38568, 'en', 'name', 'Catholic Development Office'),
(45283, 38569, 'en', 'name', 'Partners for Health and Development in Africa'),
(45284, 38570, 'no_lang_code', 'name', 'Ungweru'),
(45285, 38571, 'en', 'name', 'Partnership for Healthcare Improvement'),
(45286, 38572, 'no_lang_code', 'name', 'Deutsche Telekom (South Africa)'),
(45287, 38573, 'en', 'name', 'South African Holocaust and Genocide Foundation'),
(45288, 38574, 'no_lang_code', 'name', 'Talbot & Talbot (South Africa)'),
(45289, 38575, 'en', 'name', 'Christian Missionary Fellowship International'),
(45290, 38576, 'en', 'name', 'Regional Commissioners Office'),
(45291, 38577, 'no_lang_code', 'name', 'Pearl Seeds (Uganda)'),
(45292, 38578, 'en', 'name', 'South African San Institute'),
(45293, 38579, 'en', 'name', 'African Minerals and Geosciences Centre'),
(45294, 38580, 'en', 'name', 'Nature Kenya The East Africa Natural History Society'),
(45295, 38581, 'en', 'name', 'Tanzania Association of Foresters'),
(45296, 38582, 'no_lang_code', 'name', 'Ssemwanga (Uganda)'),
(45297, 38583, 'en', 'name', 'Pharmacy and Poisons Board'),
(45298, 38584, 'no_lang_code', 'name', 'Umvoto Africa'),
(45299, 38585, 'en', 'name', 'Authorised Association Consortium'),
(45300, 38586, 'en', 'name', 'Surgical Society of Zambia'),
(45301, 38587, 'en', 'name', 'Tanzania Commission for AIDS'),
(45302, 38588, 'en', 'name', 'United Nations Human Settlements Programme'),
(45303, 38589, 'en', 'name', 'Eastern and Southern Africa small scale Farmers’ Forum'),
(45304, 38590, 'en', 'name', 'Egyptian Center for Public Opinion Research Baseera'),
(45305, 38591, 'en', 'name', 'Tanzania Forestry Research Institute'),
(45306, 38592, 'no_lang_code', 'name', 'TogaLabs (South Africa)'),
(45307, 38593, 'en', 'name', 'United Nations Children''s Fund Zambia'),
(45308, 38594, 'en', 'name', 'Tanzania Industrial Research and Development Organization'),
(45309, 38595, 'en', 'name', 'Townhouse Gallery'),
(45310, 38596, 'no_lang_code', 'name', 'T-MARC'),
(45311, 38597, 'en', 'name', 'African Union of Public Transport'),
(45312, 38598, 'en', 'name', 'Ghana Center for Democratic Development'),
(45313, 38599, 'en', 'name', 'Tanzania National Parks'),
(45314, 38600, 'en', 'name', 'Tanzania Natural Resource Forum'),
(45315, 38601, 'fr', 'name', 'Union Economique et MonƩtaire Ouest Africaine'),
(45316, 38602, 'en', 'name', 'Tanzania Red Cross Society'),
(45317, 38603, 'en', 'name', 'Information and Communication Technology Authority'),
(45318, 38604, 'en', 'name', 'Tanzania Traditional Energy Development and Environment Organisation'),
(45319, 38605, 'en', 'name', 'International University of Rabat'),
(45320, 38605, 'fr', 'name', 'UniversitƩ Internationale de Rabat'),
(45321, 38606, 'en', 'name', 'Tunisian Union of Agriculture and Fisheries'),
(45322, 38606, 'fr', 'name', 'Union Tunisienne de l''Agriculture et de la PĆŖche'),
(45323, 38607, 'fr', 'name', 'UniversitƩ des Sciences Juridiques et Politiques de Bamako'),
(45324, 38608, 'sw', 'name', 'Twaweza'),
(45325, 38609, 'en', 'name', 'Ubuntu Education Fund'),
(45326, 38610, 'en', 'name', 'WaterAid'),
(45327, 38611, 'no_lang_code', 'name', 'WaterAid'),
(45328, 38612, 'en', 'name', 'Uganda Blood Transfusion Service'),
(45329, 38613, 'no_lang_code', 'name', 'Zimbabwe AIDS Network'),
(45330, 38614, 'en', 'name', 'Uganda National Association Of the Deaf'),
(45331, 38615, 'no_lang_code', 'name', 'WaterNet Trust'),
(45332, 38616, 'en', 'name', 'Zimbabwe National Water Authority'),
(45333, 38617, 'no_lang_code', 'name', 'Zoomlion Domestic Services (Ghana)'),
(45334, 38618, 'en', 'name', 'Veld Products Research & Development'),
(45335, 38619, 'en', 'name', 'Uganda Wildlife Authority'),
(45336, 38620, 'en', 'name', 'West and Central African Research and Education Network'),
(45337, 38621, 'fr', 'name', 'Vétérinaires Sans Frontières Suisse'),
(45338, 38622, 'en', 'name', 'Uganda National Meteorological Authority'),
(45339, 38623, 'no_lang_code', 'name', 'Victoria Seeds (Uganda)'),
(45340, 38624, 'sw', 'name', 'Chama Cha Uzazi na Malezi Bora Tanzania'),
(45341, 38625, 'no_lang_code', 'name', 'WAM Technology (South Africa)'),
(45342, 38626, 'en', 'name', 'WaterAid'),
(45343, 38627, 'en', 'name', 'Water Resources Commission of Ghana'),
(45344, 38628, 'no_lang_code', 'name', 'WESTERVELD CONSERVATION TRUST'),
(45345, 38629, 'en', 'name', 'World Health Organization Regional Office for Africa'),
(45346, 38630, 'no_lang_code', 'name', 'WR Nyabeze & Associates (South Africa)'),
(45347, 38631, 'en', 'name', 'Writers Project of Ghana'),
(45348, 38632, 'no_lang_code', 'name', 'Alfact Innovation (France)'),
(45349, 38633, 'no_lang_code', 'name', '31 Degrees (France)'),
(45350, 38634, 'no_lang_code', 'name', 'Omnia (South Africa)'),
(45351, 38635, 'no_lang_code', 'name', 'AB Science (France)'),
(45352, 38636, 'en', 'name', 'Youth for Christ South Africa'),
(45353, 38637, 'no_lang_code', 'name', 'Actia Group (France)'),
(45354, 38638, 'no_lang_code', 'name', 'Givaudan (France)'),
(45355, 38639, 'no_lang_code', 'name', 'AECpolymers (France)'),
(45356, 38640, 'no_lang_code', 'name', 'Mauna Kea Technologies (France)'),
(45357, 38641, 'no_lang_code', 'name', 'Nexter (France)'),
(45358, 38642, 'fr', 'name', 'SociƩtƩ de Conseil et de Prospective Scientifique'),
(45359, 38643, 'no_lang_code', 'name', 'AnyGenes (France)'),
(45360, 38644, 'no_lang_code', 'name', 'APEX Technologies (France)'),
(45361, 38645, 'no_lang_code', 'name', 'AriadNEXT (France)'),
(45362, 38646, 'no_lang_code', 'name', 'Arion (France)'),
(45363, 38647, 'fr', 'name', 'Fondation Internet Nouvelle GƩnƩration'),
(45364, 38648, 'no_lang_code', 'name', 'ATLAB Pharma (France)'),
(45365, 38649, 'no_lang_code', 'name', 'AudioGaming (France)'),
(45366, 38650, 'no_lang_code', 'name', 'Audionamix (France)'),
(45367, 38651, 'no_lang_code', 'name', 'AXO Science (France)'),
(45368, 38652, 'no_lang_code', 'name', 'BA SystĆØmes (France)'),
(45369, 38653, 'no_lang_code', 'name', 'Baikowski (France)'),
(45370, 38654, 'no_lang_code', 'name', 'Exactech (France)'),
(45371, 38655, 'no_lang_code', 'name', 'BoostHeat (France)'),
(45372, 38656, 'no_lang_code', 'name', 'Byblos Group (France)'),
(45373, 38657, 'no_lang_code', 'name', 'Groupe Up (France)'),
(45374, 38658, 'no_lang_code', 'name', 'MASA Group (France)'),
(45375, 38659, 'no_lang_code', 'name', 'Biospace Lab (France)'),
(45376, 38660, 'fr', 'name', 'Centre de la MƩditerranƩe Moderne et Contemporaine'),
(45377, 38661, 'fr', 'name', 'Centre d’Expertise National en Stimulation Cognitive'),
(45378, 38662, 'no_lang_code', 'name', 'Erytech Pharma (France)'),
(45379, 38663, 'fr', 'name', 'Puce Muse / Espace Musical'),
(45380, 38664, 'no_lang_code', 'name', 'AlcmƩon (France)'),
(45381, 38665, 'en', 'name', 'Georgia Tech Lorraine'),
(45382, 38666, 'no_lang_code', 'name', 'Genes''ink (France)'),
(45383, 38667, 'no_lang_code', 'name', 'Graftys (France)'),
(45384, 38668, 'fr', 'name', 'Groupe de Musique Electroacoustique d''Albi'),
(45385, 38669, 'fr', 'name', 'Laboratoire de Chimie MolƩculaire et Thioorganique'),
(45386, 38670, 'fr', 'name', 'Laboratoire de Chimie Organique'),
(45387, 38671, 'no_lang_code', 'name', 'Innate Pharma (France)'),
(45388, 38672, 'fr', 'name', 'Laboratory Colloïdes et Matériaux Divisés'),
(45389, 38673, 'no_lang_code', 'name', 'Huntsman (France)'),
(45390, 38674, 'no_lang_code', 'name', 'Surys (France)'),
(45391, 38675, 'fr', 'name', 'GƩnƩtique Humaine des Maladies Infectieuses'),
(45392, 38675, 'en', 'name', 'Human Genetic of Infectious Diseases'),
(45393, 38676, 'fr', 'name', 'Laboratoire des Systèmes Macromoléculaires et Signalisation'),
(45394, 38677, 'fr', 'name', 'Laboratoire d''IngƩnierie Circulation Transports'),
(45395, 38678, 'no_lang_code', 'name', 'LFB (France)'),
(45396, 38679, 'fr', 'name', 'Laboratoire MotricitĆ© Humaine Ɖducation Sport SantĆ©'),
(45397, 38680, 'fr', 'name', 'Institut d''Urbanisme et d''AmƩnagement RƩgional'),
(45398, 38681, 'no_lang_code', 'name', 'Magnisense (France)'),
(45399, 38682, 'no_lang_code', 'name', 'Mecachrome (France)'),
(45400, 38683, 'no_lang_code', 'name', 'MedinCell (France)'),
(45401, 38684, 'no_lang_code', 'name', 'Chronos (France)'),
(45402, 38685, 'no_lang_code', 'name', 'Montupet (France)'),
(45403, 38686, 'no_lang_code', 'name', 'Oligovax (France)'),
(45404, 38687, 'no_lang_code', 'name', 'MSA Gallet (France)'),
(45405, 38688, 'no_lang_code', 'name', 'Mitsubishi Electric (France)'),
(45406, 38689, 'no_lang_code', 'name', 'MNM Consulting (France)'),
(45407, 38690, 'no_lang_code', 'name', 'Leroux & Lotz Technologies (France)'),
(45408, 38691, 'no_lang_code', 'name', 'KMG Ultra Pure Chemicals (France)'),
(45409, 38692, 'no_lang_code', 'name', 'Nagra (France)'),
(45410, 38693, 'no_lang_code', 'name', 'OREGA Biotech (France)'),
(45411, 38694, 'no_lang_code', 'name', 'Limagrain (France)'),
(45412, 38695, 'no_lang_code', 'name', 'Nanobiotix (France)'),
(45413, 38696, 'no_lang_code', 'name', 'Naskeo Environnement (France)'),
(45414, 38697, 'no_lang_code', 'name', 'GroupeOPA (France)'),
(45415, 38698, 'no_lang_code', 'name', 'OTR3 (France)'),
(45416, 38699, 'no_lang_code', 'name', 'Light for Life Technologies (France)'),
(45417, 38700, 'no_lang_code', 'name', 'Naturamole (France)'),
(45418, 38701, 'no_lang_code', 'name', 'OsseoMatrix (France)'),
(45419, 38702, 'no_lang_code', 'name', 'Netris Pharma (France)'),
(45420, 38703, 'no_lang_code', 'name', 'PaxiTech (France)'),
(45421, 38704, 'no_lang_code', 'name', 'Macopharma (France)'),
(45422, 38705, 'no_lang_code', 'name', 'Magellium (France)'),
(45423, 38706, 'no_lang_code', 'name', 'Pharmaleads (France)'),
(45424, 38707, 'no_lang_code', 'name', 'SiaMed’Xpress (France)'),
(45425, 38708, 'en', 'name', 'Relaxnews'),
(45426, 38709, 'no_lang_code', 'name', 'Amdocs (France)'),
(45427, 38710, 'no_lang_code', 'name', 'Smartesting (France)'),
(45428, 38711, 'no_lang_code', 'name', 'ProtNeteomix (France)'),
(45429, 38712, 'no_lang_code', 'name', 'NicƩphore CitƩ (France)'),
(45430, 38713, 'no_lang_code', 'name', 'Medtronic (France)'),
(45431, 38714, 'no_lang_code', 'name', 'QoS Design (France)'),
(45432, 38715, 'no_lang_code', 'name', 'Quantum Genomics (France)'),
(45433, 38716, 'no_lang_code', 'name', 'RSA Cosmos (France)'),
(45434, 38717, 'no_lang_code', 'name', 'Radiall (France)'),
(45435, 38718, 'no_lang_code', 'name', 'Roxel (France)'),
(45436, 38719, 'no_lang_code', 'name', 'Sonic Emotion (France)'),
(45437, 38720, 'no_lang_code', 'name', 'TAMI Industries (France)'),
(45438, 38720, 'fr', 'name', 'Technologie AvancƩe et Membranes Industrielles'),
(45439, 38721, 'no_lang_code', 'name', 'Abilian (France)'),
(45440, 38722, 'no_lang_code', 'name', 'Diafir (France)'),
(45441, 38723, 'no_lang_code', 'name', 'Theravectys (France)'),
(45442, 38724, 'no_lang_code', 'name', 'Asur Plant Breeding (France)'),
(45443, 38725, 'fr', 'name', 'TL & AssociƩs'),
(45444, 38726, 'no_lang_code', 'name', 'Theranexus (France)'),
(45445, 38727, 'no_lang_code', 'name', 'Atys Medical (France)'),
(45446, 38728, 'no_lang_code', 'name', 'NEEL trimarans (France)'),
(45447, 38729, 'no_lang_code', 'name', 'Satimo (France)'),
(45448, 38729, 'fr', 'name', 'SociĆ©tĆ© d’Applications Technologiques de l’Imagerie Micro-Onde'),
(45449, 38730, 'no_lang_code', 'name', 'Physiogenex (France)'),
(45450, 38731, 'no_lang_code', 'name', 'R-Cost (France)'),
(45451, 38732, 'no_lang_code', 'name', 'Nipson Technology (France)'),
(45452, 38733, 'no_lang_code', 'name', 'VirtualDive (France)'),
(45453, 38734, 'no_lang_code', 'name', 'Vision Objects (France)'),
(45454, 38735, 'fr', 'name', 'Vizion’R'),
(45455, 38736, 'no_lang_code', 'name', 'Vocapia Research (France)'),
(45456, 38737, 'fr', 'name', 'Laboratoire de Virologie MolƩculaire et Structurale'),
(45457, 38738, 'no_lang_code', 'name', 'VectraWave (France)'),
(45458, 38739, 'no_lang_code', 'name', 'Vesuvius (France)'),
(45459, 38740, 'no_lang_code', 'name', 'Vilmorin & Cie (France)'),
(45460, 38741, 'no_lang_code', 'name', 'Helion (France)'),
(45461, 38742, 'no_lang_code', 'name', 'Tefal (France)'),
(45462, 38743, 'fr', 'name', 'Union Coopération Forestière Française'),
(45463, 38744, 'no_lang_code', 'name', 'Haption (France)'),
(45464, 38745, 'no_lang_code', 'name', 'Keolis (France)'),
(45465, 38746, 'no_lang_code', 'name', 'Sinequa (France)'),
(45466, 38747, 'en', 'name', 'State Administration of Press, Publication, Radio, Film and Television'),
(45467, 38747, 'zh', 'name', '国家广播电影电视总局'),
(45468, 38748, 'en', 'name', 'Biogas Institute of Ministry of Agriculture'),
(45469, 38748, 'zh', 'name', 'å†œäøšéƒØę²¼ę°”ē§‘å­¦ē ”ē©¶ę‰€'),
(45470, 38749, 'en', 'name', 'Jiangxi Province Forestry Survey Planning Institute'),
(45471, 38749, 'zh', 'name', 'å›½å®¶ęž—äøšå±€č°ƒęŸ„č§„åˆ’č®¾č®”é™¢'),
(45472, 38750, 'en', 'name', 'Beijing Haidian Hospital'),
(45473, 38750, 'zh', 'name', 'åŒ—äŗ¬åø‚ęµ·ę·€åŒ»é™¢'),
(45474, 38751, 'no_lang_code', 'name', 'Chengdu Tool Research Institute (China)'),
(45475, 38751, 'zh', 'name', 'ęˆéƒ½å·„å…·ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(45476, 38752, 'en', 'name', 'Academy of Broadcasting Science'),
(45477, 38752, 'zh', 'name', '国家广播电影电视总局广播科学研究院'),
(45478, 38753, 'en', 'name', 'Children & Youth Science Center of CAST'),
(45479, 38753, 'zh', 'name', 'äø­å›½ē§‘åé’å°‘å¹“ē§‘ęŠ€äø­åæƒ'),
(45480, 38754, 'en', 'name', 'Agricultural Information Institute'),
(45481, 38754, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å†œäøšäæ”ęÆē ”ē©¶ę‰€'),
(45482, 38755, 'en', 'name', 'China National Committee for Terms in Sciences and Technologies'),
(45483, 38755, 'zh', 'name', 'å…Øå›½ē§‘å­¦ęŠ€ęœÆåčÆå®”å®šå§”å‘˜ä¼š'),
(45484, 38756, 'en', 'name', 'Chinese Academy of Civil Aviation Science and Technology'),
(45485, 38756, 'zh', 'name', 'äø­å›½ę°‘čˆŖē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(45486, 38757, 'no_lang_code', 'name', 'China Academy Of Machinery Science & Technology (China)'),
(45487, 38757, 'zh', 'name', 'ęœŗę¢°ē§‘å­¦äøŽęŠ€ęœÆē ”ē©¶é™¢äø­å›½'),
(45488, 38758, 'en', 'name', 'Agro-Environmental Protection Institute'),
(45489, 38758, 'zh', 'name', 'å†œäøšéƒØēŽÆå¢ƒäæęŠ¤ē§‘ē ”ē›‘ęµ‹ę‰€'),
(45490, 38759, 'en', 'name', 'China Academy of Safety Sciences and Technology'),
(45491, 38759, 'zh', 'name', 'äø­å›½å®‰å…Øē”Ÿäŗ§ē§‘å­¦ē ”ē©¶é™¢'),
(45492, 38760, 'en', 'name', 'China National Environmental Monitoring Center'),
(45493, 38760, 'zh', 'name', 'äø­å›½ēŽÆå¢ƒē›‘ęµ‹ę€»ē«™'),
(45494, 38761, 'en', 'name', 'China Nuclear Energy Association'),
(45495, 38761, 'zh', 'name', 'ę øå·„äøščˆŖęµ‹é„ę„Ÿäø­åæƒ'),
(45496, 38762, 'en', 'name', 'Ministry of Education, Science and Technology Development Center'),
(45497, 38762, 'zh', 'name', 'ę•™č‚²éƒØē§‘ęŠ€å‘å±•äø­åæƒ'),
(45498, 38763, 'en', 'name', 'China Academy of Urban Planning and Design'),
(45499, 38763, 'zh', 'name', 'äø­å›½åŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(45500, 38764, 'en', 'name', 'Beijing Machine Tool Research Institute'),
(45501, 38764, 'zh', 'name', 'åŒ—äŗ¬ęœŗåŗŠē ”ē©¶ę‰€'),
(45502, 38765, 'en', 'name', 'China Accounting Standards Committee'),
(45503, 38765, 'zh', 'name', 'ä¼šč®”å‡†åˆ™å§”å‘˜ä¼š'),
(45504, 38766, 'en', 'name', 'China National Research Institute of Food and Fermentation'),
(45505, 38766, 'zh', 'name', 'äø­å›½é£Ÿå“å‘é…µå·„äøšē ”ē©¶é™¢'),
(45506, 38767, 'en', 'name', 'Chinese Academy of Governance'),
(45507, 38767, 'zh', 'name', 'å›½å®¶č”Œę”æå­¦é™¢'),
(45508, 38768, 'en', 'name', 'Beijing Meteorological Bureau'),
(45509, 38768, 'zh', 'name', 'åŒ—äŗ¬åø‚ę°”č±”å±€'),
(45510, 38769, 'en', 'name', 'Changsha Medical University'),
(45511, 38769, 'zh', 'name', 'é•æę²™åŒ»å­¦é™¢'),
(45512, 38770, 'en', 'name', 'China Automotive Technology and Research Center'),
(45513, 38770, 'zh', 'name', 'äø­å›Æę±½č½¦ęŠ€ęœÆē”ē©¶äø­åæƒ'),
(45514, 38771, 'no_lang_code', 'name', 'China Minmetals (China)'),
(45515, 38771, 'zh', 'name', 'é•æę²™ēŸæå†¶ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(45516, 38772, 'en', 'name', 'China Electronic Information Industry Development'),
(45517, 38772, 'zh', 'name', 'äø­å›½ē”µå­äæ”ęÆäŗ§äøšå‘å±•ē ”ē©¶é™¢'),
(45518, 38773, 'no_lang_code', 'name', 'China North Industries Group Corporation (China)'),
(45519, 38773, 'zh', 'name', 'äø­å›½åŒ—ę–¹å·„äøšå…¬åø'),
(45520, 38774, 'en', 'name', 'Institute of Apiculture Research'),
(45521, 38774, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢čœœčœ‚ē ”ē©¶ę‰€'),
(45522, 38775, 'en', 'name', 'Beijing Research Institute of Mechanical and Electrical Technology'),
(45523, 38775, 'zh', 'name', 'åŒ—äŗ¬ęœŗē”µē ”ē©¶ę‰€'),
(45524, 38776, 'en', 'name', 'China Population and Development Research Center'),
(45525, 38776, 'zh', 'name', 'äø­å›½äŗŗå£äøŽå‘å±•ē ”ē©¶äø­åæƒ'),
(45526, 38777, 'no_lang_code', 'name', 'Chengdu Institute of Information Technology (China)'),
(45527, 38777, 'zh', 'name', 'äø­ē§‘é™¢ęˆéƒ½äæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(45528, 38778, 'en', 'name', 'Beijing Research Institute of Uranium Geology'),
(45529, 38778, 'zh', 'name', 'ę øå·„äøšåŒ—äŗ¬åœ°č“Øē ”ē©¶é™¢'),
(45530, 38779, 'en', 'name', 'Beijing Botanical Garden'),
(45531, 38779, 'zh', 'name', 'åŒ—äŗ¬ę¤ē‰©å›­'),
(45532, 38780, 'en', 'name', 'Beijing Solar Energy Research Institute'),
(45533, 38780, 'zh', 'name', 'åŒ—äŗ¬åø‚å¤Ŗé˜³čƒ½ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(45534, 38781, 'en', 'name', 'China Earthquake Disaster Prevention Centre'),
(45535, 38781, 'zh', 'name', 'äø­å›½åœ°éœ‡ē¾å®³é˜²å¾”äø­åæƒ'),
(45536, 38782, 'en', 'name', 'China Research Institute for Science Popularization'),
(45537, 38782, 'zh', 'name', '中国科普研究所'),
(45538, 38783, 'en', 'name', 'China Institute of Daily Chemical Industry'),
(45539, 38783, 'zh', 'name', 'äø­å›½ę—„ē”ØåŒ–å­¦å·„äøšē ”ē©¶é™¢'),
(45540, 38784, 'en', 'name', 'Changjiang Water Resources Commission'),
(45541, 38784, 'zh', 'name', 'é•æę±Ÿę°“åˆ©å§”å‘˜ä¼šę°“ę–‡å±€'),
(45542, 38785, 'en', 'name', 'Beijing Vaccum Electronic Research Institute'),
(45543, 38785, 'zh', 'name', 'åŒ—äŗ¬ēœŸē©ŗē”µå­ęŠ€ęœÆē ”ē©¶ę‰€'),
(45544, 38786, 'en', 'name', 'Feed Research Institute'),
(45545, 38786, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢é„²ę–™ē ”ē©¶ę‰€'),
(45546, 38787, 'en', 'name', 'Beijing Water Science and Technology Institute'),
(45547, 38787, 'zh', 'name', 'åŒ—äŗ¬åø‚ę°“ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(45548, 38788, 'en', 'name', 'Citrus Research Institute'),
(45549, 38788, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ęŸ‘ę””ē ”ē©¶ę‰€'),
(45550, 38789, 'en', 'name', 'Beijing Xuanwu Traditional Chinese Medicine Hospital'),
(45551, 38789, 'zh', 'name', 'åŒ—äŗ¬åø‚å®£ę­¦äø­åŒ»åŒ»é™¢'),
(45552, 38790, 'en', 'name', 'Civil Aviation Flight University of China'),
(45553, 38790, 'zh', 'name', 'äø­å›½ę°‘ē”ØčˆŖē©ŗé£žč”Œå­¦é™¢'),
(45554, 38791, 'en', 'name', 'Civil Aviation Management Institute of China'),
(45555, 38791, 'zh', 'name', 'äø­å›½ę°‘čˆŖē®”ē†å¹²éƒØå­¦é™¢'),
(45556, 38792, 'en', 'name', 'China Center of Advanced Science and Technology'),
(45557, 38792, 'zh', 'name', 'äø­å›½é«˜ē­‰ē§‘å­¦ęŠ€ęœÆäø­åæƒ'),
(45558, 38793, 'en', 'name', 'China Electronics Standardization Institute'),
(45559, 38793, 'zh', 'name', 'äø­å›½ē”µå­ęŠ€ęœÆę ‡å‡†åŒ–ē ”ē©¶é™¢'),
(45560, 38794, 'en', 'name', 'China Tourism Academy'),
(45561, 38794, 'zh', 'name', '中国旅游研究院'),
(45562, 38795, 'en', 'name', 'Fujian Institute of Oceanography'),
(45563, 38795, 'zh', 'name', 'ē¦å»ŗęµ·ę“‹ē ”ē©¶ę‰€'),
(45564, 38796, 'en', 'name', 'China Europe International Business School'),
(45565, 38796, 'zh', 'name', '中欧国际巄商学院'),
(45566, 38797, 'en', 'name', 'China Executive Leadership Academy Pudong'),
(45567, 38797, 'zh', 'name', 'äø­å›½ęµ¦äøœå¹²éƒØå­¦é™¢;'),
(45568, 38798, 'en', 'name', 'Guangxi Academy of Fishery Sciences'),
(45569, 38798, 'zh', 'name', '广脿氓产科学研究院'),
(45570, 38799, 'en', 'name', 'China Information Technology Security Evaluation Center'),
(45571, 38799, 'zh', 'name', 'äø­å›½äæ”ęÆå®‰å…Øęµ‹čÆ„äø­åæƒ'),
(45572, 38800, 'en', 'name', 'Gannan Normal University'),
(45573, 38800, 'zh', 'name', 'čµ£å—åøˆēÆ„å­¦é™¢'),
(45574, 38801, 'en', 'name', 'Chinese Academy for Environmental Planning'),
(45575, 38801, 'zh', 'name', 'äø­å›½ēŽÆå¢ƒäæęŠ¤éƒØēŽÆå¢ƒč§„åˆ’é™¢'),
(45576, 38802, 'en', 'name', 'Gansu Academy of Agricultural Sciences'),
(45577, 38802, 'zh', 'name', 'å†œäøšē§‘å­¦ē”˜č‚ƒēœē§‘å­¦é™¢'),
(45578, 38803, 'en', 'name', 'Gansu Desert Control Research Institute'),
(45579, 38803, 'zh', 'name', 'ē”˜č‚ƒēœę²»ę²™ē ”ē©¶ę‰€'),
(45580, 38804, 'en', 'name', 'Shanxi Academy of Agricultural Sciences'),
(45581, 38804, 'zh', 'name', 'å±±č„æēœå†œäøšē§‘å­¦é™¢ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(45582, 38805, 'en', 'name', 'Guangxi Mangrove Research Center'),
(45583, 38805, 'zh', 'name', 'å¹æč„æēŗ¢ę ‘ęž—ē ”ē©¶äø­åæƒ'),
(45584, 38806, 'en', 'name', 'China Institute of Geological Environmental Monitoring'),
(45585, 38806, 'zh', 'name', 'äø­å›½åœ°č“ØēŽÆå¢ƒē›‘ęµ‹é™¢'),
(45586, 38807, 'en', 'name', 'Chinese Academy of Cultural Heritage'),
(45587, 38807, 'zh', 'name', 'äø­å›½ę–‡åŒ–é—äŗ§ē ”ē©¶é™¢'),
(45588, 38808, 'en', 'name', 'Development Research Center of the State Council'),
(45589, 38808, 'zh', 'name', 'å›½åŠ”é™¢å‘å±•ē ”ē©¶äø­åæƒ'),
(45590, 38809, 'no_lang_code', 'name', 'Gansu Meteorological Bureau'),
(45591, 38809, 'zh', 'name', 'ē”˜č‚ƒēœę°”č±”å±€'),
(45592, 38810, 'en', 'name', 'China Land Surveying and Planning Institute'),
(45593, 38810, 'zh', 'name', 'äø­å›½åœŸåœ°å‹˜ęµ‹č§„åˆ’é™¢'),
(45594, 38811, 'en', 'name', 'Dunhuang Research Academy'),
(45595, 38811, 'zh', 'name', 'ę•¦ē…Œē ”ē©¶é™¢'),
(45596, 38812, 'en', 'name', 'China Leather and Footwear Industry Research Institute'),
(45597, 38812, 'zh', 'name', 'äø­å›½ēš®é©å’Œåˆ¶éž‹å·„äøšē ”ē©¶é™¢'),
(45598, 38813, 'en', 'name', 'China Meat Research Centre'),
(45599, 38813, 'zh', 'name', 'äø­å›½č‚‰ē±»é£Ÿå“ē ”ē©¶äø­åæƒ'),
(45600, 38814, 'en', 'name', 'Institute of Grassland Research'),
(45601, 38814, 'zh', 'name', 'č‰åŽŸē ”ē©¶ę‰€'),
(45602, 38815, 'en', 'name', 'Guangdong University of Finance'),
(45603, 38815, 'zh', 'name', 'å¹æäøœé‡‘čžå­¦é™¢'),
(45604, 38816, 'en', 'name', 'Chinese Academy of Personnel Science'),
(45605, 38816, 'zh', 'name', '中国人事科学研究院'),
(45606, 38817, 'en', 'name', 'Guangzhou HKUST Fok Ying Tung Research Institute'),
(45607, 38817, 'zh', 'name', 'éœč‹±äøœē ”ē©¶é™¢'),
(45608, 38818, 'en', 'name', 'Guang’anmen Hospital'),
(45609, 38818, 'zh', 'name', 'äø­å›½äø­åŒ»ē§‘å­¦é™¢å¹æå®‰é—ØåŒ»é™¢'),
(45610, 38819, 'en', 'name', 'East China Mineral Exploration & Development Bureau'),
(45611, 38819, 'zh', 'name', 'ę±Ÿč‹ēœęœ‰č‰²é‡‘å±žåŽäøœåœ°č“Øå‹˜ęŸ„å±€'),
(45612, 38820, 'en', 'name', 'Chinese Academy of Science and Technology for Development'),
(45613, 38820, 'zh', 'name', 'äø­å›½ē§‘å­¦ęŠ€ęœÆäæƒčæ›å‘å±•'),
(45614, 38821, 'en', 'name', 'Guangdong Academy of Forestry'),
(45615, 38821, 'zh', 'name', 'å¹æäøœēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(45616, 38822, 'en', 'name', 'Guangzhou Institute of Geography'),
(45617, 38822, 'zh', 'name', 'å¹æå·žåœ°ē†ē ”ē©¶ę‰€'),
(45618, 38823, 'en', 'name', 'Chinese Academy of Surveying and Mapping'),
(45619, 38823, 'zh', 'name', 'äø­å›½ęµ‹ē»˜ē§‘å­¦ē ”ē©¶é™¢'),
(45620, 38824, 'en', 'name', 'China Machine Press'),
(45621, 38824, 'zh', 'name', 'äø­å›½ęœŗę¢°å·„äøšå‡ŗē‰ˆē¤¾'),
(45622, 38825, 'en', 'name', 'Guangzhou Marine Geological Survey'),
(45623, 38825, 'zh', 'name', 'å¹æå·žęµ·ę“‹åœ°č“Øč°ƒęŸ„å±€'),
(45624, 38826, 'en', 'name', 'PLA Electronic Engineering Institute'),
(45625, 38826, 'zh', 'name', '中国人民解放军电子巄程学院'),
(45626, 38827, 'en', 'name', 'Chinese National Human Genome Center at Shanghai'),
(45627, 38827, 'zh', 'name', 'å›½å®¶äŗŗē±»åŸŗå› ē»„å—ę–¹ē ”ē©¶äø­åæƒ'),
(45628, 38828, 'en', 'name', 'Guangzhou Maritime College'),
(45629, 38828, 'zh', 'name', 'å¹æå·žčˆŖęµ·é«˜ē­‰äø“ē§‘å­¦ę ”'),
(45630, 38829, 'en', 'name', 'Guangzhou Panyu Polytechnic'),
(45631, 38829, 'zh', 'name', 'å¹æå·žē•Ŗē¦ŗčŒäøšęŠ€ęœÆå­¦é™¢'),
(45632, 38830, 'en', 'name', 'Chinese People''s Armed Police Force Engineering University'),
(45633, 38830, 'zh', 'name', 'äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜Ÿå·„ēØ‹å¤§å­¦'),
(45634, 38831, 'en', 'name', 'Hangzhou Academy of Agricultural Sciences'),
(45635, 38831, 'zh', 'name', 'ę­å·žåø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(45636, 38832, 'en', 'name', 'Farmland Irrigation Research Institute'),
(45637, 38832, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å†œē”°ēŒęŗ‰ē ”ē©¶ę‰€'),
(45638, 38833, 'en', 'name', 'Chongqing Institute of Geology and Mineral Resources'),
(45639, 38833, 'zh', 'name', 'é‡åŗ†åœ°č“ØēŸæäŗ§ē ”ē©¶é™¢'),
(45640, 38834, 'en', 'name', 'Guangdong Laboratory Animals Monitoring Institute'),
(45641, 38834, 'zh', 'name', 'å¹æäøœēœå®žéŖŒåŠØē‰©ē›‘ęµ‹ę‰€'),
(45642, 38835, 'en', 'name', 'Guangdong Police College'),
(45643, 38835, 'zh', 'name', 'å¹æäøœč­¦å®˜å­¦é™¢'),
(45644, 38836, 'en', 'name', 'Hebei Chemical and Pharmaceutical College'),
(45645, 38836, 'zh', 'name', 'ę²³åŒ—åŒ–å·„åŒ»čÆčŒäøšęŠ€ęœÆå­¦é™¢ 地址'),
(45646, 38837, 'en', 'name', 'Guiyang College of Traditional Chinese Medicine'),
(45647, 38837, 'zh', 'name', 'č“µé˜³äø­åŒ»å­¦é™¢'),
(45648, 38838, 'en', 'name', 'Hebei Meteorological Bureau'),
(45649, 38838, 'zh', 'name', 'ę²³åŒ—ēœę°”č±”å±€'),
(45650, 38839, 'en', 'name', 'Institute of Agricultural Economics and Development'),
(45651, 38839, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å†œäøšē»ęµŽäøŽå‘å±•ē ”ē©¶ę‰€'),
(45652, 38840, 'en', 'name', 'Institute of Agricultural Resources and Regional Planning'),
(45653, 38840, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å†œäøščµ„ęŗäøŽå†œäøšåŒŗåˆ’ē ”ē©¶ę‰€'),
(45654, 38841, 'en', 'name', 'Guizhou Academy of Sciences'),
(45655, 38841, 'zh', 'name', 'č“µå·žē§‘å­¦é™¢'),
(45656, 38842, 'en', 'name', 'Institute of Hydroecology'),
(45657, 38842, 'zh', 'name', 'ę°“åˆ©éƒØäø­å›½ē§‘å­¦é™¢ę°“å·„ēØ‹ē”Ÿę€ē ”ē©¶ę‰€'),
(45658, 38843, 'no_lang_code', 'name', 'Henan Communication Science and Technology Research Institute (China)'),
(45659, 38843, 'zh', 'name', 'ę²³å—ēœäŗ¤é€šē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(45660, 38844, 'en', 'name', 'Guizhou Academy of Environmental Science and Design'),
(45661, 38844, 'zh', 'name', 'č“µå·žēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶č®¾č®”é™¢'),
(45662, 38845, 'en', 'name', 'Apiculture Science Institute of Jinlin province'),
(45663, 38845, 'zh', 'name', 'å‰ęž—ēœå…»čœ‚ē§‘å­¦ē ”ē©¶ę‰€'),
(45664, 38846, 'en', 'name', 'Hunan Institute of Science and Technology'),
(45665, 38846, 'zh', 'name', 'ę¹–å—ē†å·„å­¦é™¢'),
(45666, 38847, 'en', 'name', 'Henan Institute of Education'),
(45667, 38847, 'zh', 'name', 'ę²³å—ę•™č‚²å­¦é™¢');
INSERT INTO `ror_settings` VALUES
(45668, 38848, 'en', 'name', 'Guizhou Institute of Plant Protection'),
(45669, 38848, 'zh', 'name', 'č“µå·žēœę¤ē‰©äæęŠ¤ē ”ē©¶ę‰€'),
(45670, 38849, 'en', 'name', 'Bank of China'),
(45671, 38849, 'zh', 'name', 'äø­å›½é“¶č”Œč‚”ä»½ęœ‰é™å…¬åø'),
(45672, 38850, 'en', 'name', 'Institute of Bast Fiber Crops'),
(45673, 38850, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢éŗ»ē±»ē ”ē©¶ę‰€'),
(45674, 38851, 'en', 'name', 'Hainan Provincial Academy of Agricultural Sciences'),
(45675, 38851, 'zh', 'name', 'ęµ·å—ēœå†œäøšē§‘å­¦é™¢'),
(45676, 38852, 'no_lang_code', 'name', 'Hunan Haili Chemical Industry (China)'),
(45677, 38852, 'zh', 'name', 'ę¹–å—åŒ–å·„ē ”ē©¶é™¢'),
(45678, 38853, 'en', 'name', 'Hunan Women''S University'),
(45679, 38853, 'zh', 'name', 'ę¹–å—å„³å­å­¦é™¢'),
(45680, 38854, 'en', 'name', 'Institute of Economic System and Management'),
(45681, 38854, 'zh', 'name', 'å›½å®¶å‘å±•å’Œę”¹é©å§”å‘˜ä¼šē»ęµŽä½“åˆ¶äøŽē®”ē†ē ”ē©¶ę‰€'),
(45682, 38855, 'en', 'name', 'Institute of Environment and Sustainable Development in Agriculture'),
(45683, 38855, 'zh', 'name', 'å†œäøšēŽÆå¢ƒäøŽåÆęŒē»­å‘å±•ē ”ē©¶ę‰€'),
(45684, 38856, 'en', 'name', 'Land Consolidation and Rehabilitation Center'),
(45685, 38856, 'zh', 'name', 'äø­å›½å›½åœŸę•“ę²»ē½‘'),
(45686, 38857, 'en', 'name', 'Institute of Vegetables and Flowers'),
(45687, 38857, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢č”¬čœčŠ±å‰ē ”ē©¶ę‰€'),
(45688, 38858, 'en', 'name', 'Jiangsu Police Officer College'),
(45689, 38858, 'zh', 'name', 'ę±Ÿč‹č­¦å®˜å­¦é™¢'),
(45690, 38859, 'en', 'name', 'Institute of Quality Standards and Testing Technology for Agro Products'),
(45691, 38859, 'zh', 'name', 'äø­å›½å†œē§‘é™¢ē§‘å­¦é™¢å†œē§‘é™¢č“Øé‡ę ‡å‡†äøŽę£€ęµ‹ęŠ€ęœÆē ”ē©¶ę‰€'),
(45692, 38860, 'en', 'name', 'Lanzhou Institute of Husbandry and Pharmaceutical Sciences'),
(45693, 38860, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å…°å·žē•œē‰§äøŽå…½čÆē ”ē©¶ę‰€'),
(45694, 38861, 'en', 'name', 'Institute of Forensic Science'),
(45695, 38861, 'zh', 'name', 'åøę³•éƒØåøę³•é‰“å®šē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(45696, 38862, 'en', 'name', 'Hebei Academy of Agriculture and Forestry Sciences'),
(45697, 38862, 'zh', 'name', 'ę²³åŒ—ēœå†œęž—ē§‘å­¦é™¢é—ä¼ ē”Ÿē†ē ”ē©¶ę‰€'),
(45698, 38863, 'en', 'name', 'Institute of Scientific and Technical Information of China'),
(45699, 38863, 'zh', 'name', 'äø­å›½ē§‘å­¦ęŠ€ęœÆäæ”ęÆē ”ē©¶ę‰€'),
(45700, 38864, 'en', 'name', 'Jiangsu Provincial Party School'),
(45701, 38864, 'zh', 'name', 'ę±Ÿč‹ēœč”Œę”æå­¦é™¢'),
(45702, 38865, 'en', 'name', 'Liaoning Ocean and Fisheries Research Institute'),
(45703, 38865, 'zh', 'name', 'č¾½å®ēœęµ·ę“‹ę°“äŗ§ē§‘å­¦ē ”ē©¶é™¢'),
(45704, 38866, 'en', 'name', 'Guangxi Zhuang Autonomous Region Museum'),
(45705, 38866, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗč‡Ŗē„¶åšē‰©é¦†'),
(45706, 38867, 'en', 'name', 'Jiangsu Institute of Meteorological Sciences'),
(45707, 38867, 'zh', 'name', 'ę±Ÿč‹ēœę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(45708, 38868, 'en', 'name', 'Institute of Special Animal and Plant Sciences'),
(45709, 38868, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ē‰¹äŗ§ē ”ē©¶ę‰€'),
(45710, 38869, 'en', 'name', 'Nanjing Institute of Environmental Sciences'),
(45711, 38869, 'zh', 'name', 'ēŽÆå¢ƒäæęŠ¤éƒØå—äŗ¬ēŽÆå¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(45712, 38870, 'en', 'name', 'Jiangsu Provincial Meteorological Bureau'),
(45713, 38870, 'zh', 'name', 'ę±Ÿč‹ēœę°”č±”å°'),
(45714, 38871, 'en', 'name', 'Nanjing Institute of Agricultural Mechanization'),
(45715, 38871, 'zh', 'name', 'å†œäøšéƒØå—äŗ¬å†œäøšęœŗę¢°åŒ–ē ”ē©¶ę‰€'),
(45716, 38872, 'en', 'name', 'Ningbo Academy of Agricultural Sciences'),
(45717, 38872, 'zh', 'name', 'å®ę³¢åø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(45718, 38873, 'en', 'name', 'Qinghai Meteorological Institute'),
(45719, 38873, 'zh', 'name', 'é’ęµ·ēœę°”č±”å±€'),
(45720, 38874, 'en', 'name', 'Shaanxi Provincial Meteorological Bureau'),
(45721, 38874, 'zh', 'name', 'é™•č„æēœę°”č±”å±€'),
(45722, 38875, 'en', 'name', 'Jiangxi Academy of Environmental Sciences'),
(45723, 38875, 'zh', 'name', 'ę±Ÿč„æēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶é™¢'),
(45724, 38876, 'en', 'name', 'State Council Leading Group of Poverty Alleviation and Development'),
(45725, 38876, 'zh', 'name', 'å›½åŠ”é™¢ę‰¶č“«äøŽå‘å±•é›†å›¢'),
(45726, 38877, 'en', 'name', 'Jilin Meteorological Bureau'),
(45727, 38877, 'zh', 'name', 'å‰ęž—ēœę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(45728, 38878, 'en', 'name', 'People''s Liberation Army 411 Hospital'),
(45729, 38878, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬å››äø€äø€åŒ»é™¢'),
(45730, 38879, 'en', 'name', 'Jilin Academy of Traditional Chinese Medicine'),
(45731, 38879, 'zh', 'name', 'å‰ęž—ēœäø­åŒ»čÆē§‘å­¦é™¢'),
(45732, 38880, 'en', 'name', 'China National Commission for Disaster Reduction'),
(45733, 38880, 'zh', 'name', 'å›½å®¶å‡ē¾å§”å‘˜ä¼šåŠžå…¬å®¤ ęŠ€ęœÆę”ÆęŒ'),
(45734, 38881, 'en', 'name', 'Shandong Province Meteorological Bureau'),
(45735, 38881, 'zh', 'name', 'å±±äøœēœę°”č±”å±€ ꉀ꜉'),
(45736, 38882, 'no_lang_code', 'name', 'China South Industries Group (China)'),
(45737, 38882, 'zh', 'name', 'äø­å›½å…µå™Øå·„äøšē¬¬äŗ”ä¹ē ”ē©¶ę‰€'),
(45738, 38883, 'en', 'name', 'Jilin Weather Modification Office'),
(45739, 38883, 'zh', 'name', 'å‰ęž—ēœäŗŗå·„å½±å“å¤©ę°”åŠžå…¬å®¤'),
(45740, 38884, 'en', 'name', 'North China Research Institute of Electro-optics'),
(45741, 38884, 'zh', 'name', 'åŽåŒ—å…‰ē”µęŠ€ęœÆē ”ē©¶ę‰€'),
(45742, 38885, 'en', 'name', 'Qinghai Meteorological Bureau'),
(45743, 38885, 'zh', 'name', 'é’ęµ·ēœę°”č±”å±€'),
(45744, 38886, 'en', 'name', 'Shandong Provincial Water Resources Research Institute'),
(45745, 38886, 'zh', 'name', 'å±±äøœēœę°“ē§‘é™¢'),
(45746, 38887, 'en', 'name', 'National Earthquake Response Support Service'),
(45747, 38887, 'zh', 'name', 'äø­å›½åœ°éœ‡åŗ”ę€„ęœę•‘äø­åæƒ'),
(45748, 38888, 'no_lang_code', 'name', 'Shanghai Supercomputer Center (China)'),
(45749, 38888, 'zh', 'name', 'äøŠęµ·č¶…ēŗ§č®”ē®—äø­åæƒ'),
(45750, 38889, 'en', 'name', 'Academic Degrees & Graduate Education'),
(45751, 38889, 'zh', 'name', 'å­¦ä½äøŽē ”ē©¶ē”Ÿę•™č‚²ę‚åæ—ē¤¾'),
(45752, 38890, 'en', 'name', 'Shanghai Academy of Quality Management'),
(45753, 38890, 'zh', 'name', 'äøŠęµ·č“Øé‡ē®”ē†ē§‘å­¦ē ”ē©¶é™¢äŗŽ'),
(45754, 38891, 'en', 'name', 'Oil Crops Research Institute'),
(45755, 38891, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ę²¹ę–™ä½œē‰©ē ”ē©¶ę‰€'),
(45756, 38892, 'no_lang_code', 'name', 'Shanghai Genon Biological Products (China)'),
(45757, 38892, 'zh', 'name', 'äøŠęµ·č½¬åŸŗå› ē ”ē©¶äø­åæƒ'),
(45758, 38893, 'en', 'name', 'Research Center for Rural Economy'),
(45759, 38893, 'zh', 'name', 'å†œäøšéƒØå†œę‘ē»ęµŽē ”ē©¶äø­åæƒ'),
(45760, 38894, 'en', 'name', 'Shanghai Botanical Garden'),
(45761, 38894, 'zh', 'name', 'äøŠęµ·ę¤ē‰©å›­'),
(45762, 38895, 'en', 'name', 'Shanghai Veterinary Research Institute'),
(45763, 38895, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢äøŠęµ·å…½åŒ»ē ”ē©¶ę‰€'),
(45764, 38896, 'en', 'name', 'Research Institute of Highway'),
(45765, 38896, 'zh', 'name', 'äŗ¤é€ščæč¾“éƒØå…¬č·Æē§‘å­¦ē ”ē©¶é™¢'),
(45766, 38897, 'no_lang_code', 'name', 'Shanghai CASB Biotechnology (China)'),
(45767, 38897, 'zh', 'name', 'äøŠęµ·äø­ē§‘ä¼ä½°č±Ŗē”Ÿē‰©å·„ēØ‹ęœ‰é™å…¬åø'),
(45768, 38898, 'en', 'name', '305 Hospital of People Liberation Army'),
(45769, 38898, 'zh', 'name', '中国人民解放军第三0äŗ”åŒ»é™¢'),
(45770, 38899, 'en', 'name', 'Shangrao Normal University'),
(45771, 38899, 'zh', 'name', 'äøŠé„¶åøˆčŒƒå­¦é™¢'),
(45772, 38900, 'en', 'name', 'Shanghai Estuarine & Coastal Science Research Center'),
(45773, 38900, 'zh', 'name', 'äøŠęµ·ę²³å£ęµ·å²øē§‘å­¦ē ”ē©¶äø­åæƒ'),
(45774, 38901, 'en', 'name', 'Shanghai Innovative Research Center of Traditional Chinese Medicine'),
(45775, 38901, 'zh', 'name', 'äøŠęµ·äø­čÆåˆ›ę–°ē ”ē©¶äø­åæƒ'),
(45776, 38902, 'en', 'name', 'Shanghai Institute of Disaster Prevention and Relief'),
(45777, 38902, 'zh', 'name', 'äøŠęµ·é˜²ē¾ę•‘ē¾ē ”ē©¶ę‰€'),
(45778, 38903, 'no_lang_code', 'name', 'Sinosteel (China)'),
(45779, 38903, 'zh', 'name', 'äø­å›½äø­é’¢é›†å›¢å…¬åø'),
(45780, 38904, 'en', 'name', 'Shaanxi Provincial People''s Hospital'),
(45781, 38904, 'zh', 'name', 'é™•č„æēœäŗŗę°‘åŒ»é™¢'),
(45782, 38905, 'en', 'name', 'South China Institute Of Environmental Sciences'),
(45783, 38905, 'zh', 'name', 'ēŽÆå¢ƒäæęŠ¤éƒØåŽå—ēŽÆå¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(45784, 38906, 'en', 'name', 'Chinese Society of Theoretical and Applied Mechanics'),
(45785, 38906, 'zh', 'name', 'äø­å›½åŠ›å­¦å­¦ä¼š'),
(45786, 38907, 'en', 'name', 'Fifth Tianjin Central Hospital'),
(45787, 38907, 'zh', 'name', 'å¤©ę“„åø‚ē¬¬äŗ”äø­åæƒåŒ»é™¢'),
(45788, 38908, 'en', 'name', 'Shenyang The Fourth Hospital of People'),
(45789, 38908, 'zh', 'name', 'ę²ˆé˜³åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(45790, 38909, 'en', 'name', 'Southwestern Institute of Physics'),
(45791, 38909, 'zh', 'name', 'ę øå·„äøšč„æå—ē‰©ē†ē ”ē©¶é™¢'),
(45792, 38910, 'en', 'name', 'Geological Museum of China'),
(45793, 38910, 'zh', 'name', 'äø­å›½åœ°č“Øåšē‰©é¦†'),
(45794, 38911, 'en', 'name', 'Shenzhen Academy of Inspection and Quarantine'),
(45795, 38911, 'zh', 'name', 'ę·±åœ³åø‚ę£€éŖŒę£€ē–«ē§‘å­¦ē ”ē©¶é™¢'),
(45796, 38912, 'en', 'name', 'Key Laboratory of Chemistry for Natural Products of Guizhou Province and Chinese Academy of Sciences'),
(45797, 38912, 'zh', 'name', 'č“µå·žēœäø­å›½ē§‘å­¦é™¢å¤©ē„¶äŗ§ē‰©åŒ–å­¦é‡ē‚¹å®žéŖŒå®¤'),
(45798, 38913, 'en', 'name', 'Oil and Gas Center'),
(45799, 38913, 'zh', 'name', 'å›½åœŸčµ„ęŗéƒØę²¹ę°”čµ„ęŗęˆ˜ē•„ē ”ē©¶äø­åæƒ'),
(45800, 38914, 'en', 'name', 'Fairy Lake Botanical Garden'),
(45801, 38914, 'zh', 'name', 'ä»™ę¹–ę¤ē‰©å›­'),
(45802, 38915, 'en', 'name', 'Institute of Sugar Beet'),
(45803, 38915, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ē”œčœē ”ē©¶ę‰€'),
(45804, 38916, 'en', 'name', 'Shenzhen Institute of Information Technology'),
(45805, 38916, 'zh', 'name', 'ę·±åœ³äæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(45806, 38917, 'no_lang_code', 'name', 'Shanghai Biomodel Organism'),
(45807, 38917, 'zh', 'name', 'äøŠęµ·å—ę–¹ęØ”å¼ē”Ÿē‰©ē§‘ęŠ€å‘å±•ęœ‰é™å…¬åø'),
(45808, 38918, 'en', 'name', 'Shenzhen Center for Disease Control and Prevention'),
(45809, 38918, 'zh', 'name', 'ę·±åœ³åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(45810, 38919, 'en', 'name', 'Shanghai Science and Technology Museum'),
(45811, 38919, 'zh', 'name', 'äøŠęµ·ē§‘ęŠ€é¦†'),
(45812, 38920, 'en', 'name', 'Institute of World Economics and Politics'),
(45813, 38920, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢äø–ē•Œē»ęµŽäøŽę”æę²»ē ”ē©¶ę‰€'),
(45814, 38921, 'en', 'name', 'Taiyuan Central Hospital'),
(45815, 38921, 'zh', 'name', 'å¤ŖåŽŸåø‚äø­åæƒåŒ»é™¢'),
(45816, 38922, 'en', 'name', 'Shandong Academy of Social Sciences'),
(45817, 38922, 'zh', 'name', 'å±±äøœē¤¾ä¼šē§‘å­¦é™¢'),
(45818, 38923, 'en', 'name', 'Institute of Industrial Economics'),
(45819, 38923, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å·„äøšē»ęµŽē ”ē©¶ę‰€'),
(45820, 38924, 'en', 'name', 'Shanghai Academy of Social Sciences'),
(45821, 38924, 'zh', 'name', 'äøŠęµ·ē¤¾ä¼šē§‘å­¦é™¢'),
(45822, 38925, 'en', 'name', 'Institute of Economics'),
(45823, 38925, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ē»ęµŽē ”ē©¶ę‰€'),
(45824, 38926, 'en', 'name', 'Tea Research Institute'),
(45825, 38926, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢čŒ¶å¶ē ”ē©¶ę‰€'),
(45826, 38927, 'en', 'name', 'Institute of Quantitative and Technical Economics'),
(45827, 38927, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ę•°é‡ē»ęµŽäøŽęŠ€ęœÆē»ęµŽē ”ē©¶ę‰€'),
(45828, 38928, 'en', 'name', 'Sichuan Academy of Forestry'),
(45829, 38928, 'zh', 'name', 'å››å·ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(45830, 38929, 'en', 'name', 'Xinjiang Entry-Exit Inspection and Quarantine Bureau'),
(45831, 38929, 'zh', 'name', 'ę–°ē–†å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€ę£€éŖŒę£€ē–«ęŠ€ęœÆäø­åæƒ'),
(45832, 38930, 'en', 'name', 'Institute of Sociology'),
(45833, 38930, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ē¤¾ä¼šå­¦ē ”ē©¶ę‰€'),
(45834, 38931, 'en', 'name', 'Wuhan City Chinese Medicine Hospital'),
(45835, 38931, 'zh', 'name', 'ę­¦ę±‰åø‚äø­å›½äø­åŒ»åŒ»é™¢'),
(45836, 38932, 'en', 'name', 'Institute for Urban and Environmental Studies'),
(45837, 38932, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢åŸŽåø‚å‘å±•äøŽēŽÆå¢ƒē ”ē©¶ę‰€'),
(45838, 38933, 'en', 'name', 'Sino-Japan Friendship Center for Environmental Protection'),
(45839, 38933, 'zh', 'name', 'äø­ę—„å‹å„½ēŽÆå¢ƒäæęŠ¤äø­åæƒ'),
(45840, 38934, 'no_lang_code', 'name', 'SinoGenoMax (China)'),
(45841, 38934, 'zh', 'name', 'åŒ—äŗ¬čÆŗčµ›åŸŗå› ē»„ē ”ē©¶äø­åæƒęœ‰é™å…¬åø'),
(45842, 38935, 'en', 'name', 'Tianjin Academy of Agricultural Sciences'),
(45843, 38935, 'zh', 'name', 'å¤©ę“„åø‚å†œäøšē§‘å­¦é™¢ęˆē«‹äŗŽ'),
(45844, 38936, 'en', 'name', 'Rural Development Institute'),
(45845, 38936, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å†œę‘å‘å±•ē ”ē©¶ę‰€'),
(45846, 38937, 'en', 'name', 'Tianjin Centers for Disease Control and Prevention'),
(45847, 38937, 'zh', 'name', 'å¤©ę“„åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(45848, 38938, 'en', 'name', 'Urumqi General Hospital of PLA'),
(45849, 38938, 'zh', 'name', 'å…°å·žå†›åŒŗä¹Œé²ęœØé½ę€»åŒ»é™¢'),
(45850, 38939, 'en', 'name', 'Shandong Marine Resource and Environment Research Institute'),
(45851, 38939, 'zh', 'name', 'å±±äøœēœęµ·ę“‹čµ„ęŗäøŽēŽÆå¢ƒē ”ē©¶é™¢'),
(45852, 38940, 'en', 'name', 'China Waterborne Transport Research Institute'),
(45853, 38940, 'zh', 'name', 'äŗ¤é€ščæč¾“éƒØę°“čæē§‘å­¦ē ”ē©¶ę‰€'),
(45854, 38941, 'en', 'name', 'Tianjin Meteorological Bureau'),
(45855, 38941, 'zh', 'name', '天擄市气豔局 制作'),
(45856, 38942, 'en', 'name', 'Yellow River Institute of Hydraulic Research'),
(45857, 38942, 'zh', 'name', '黄河氓文氓资源科学研究院'),
(45858, 38943, 'en', 'name', 'Xinjiang Institute of Materia Medica'),
(45859, 38943, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗčÆē‰©ē ”ē©¶ę‰€'),
(45860, 38944, 'en', 'name', 'Academy of State Administration of Grain'),
(45861, 38944, 'zh', 'name', 'å›½å®¶ē²®é£Ÿå±€ē§‘å­¦ē ”ē©¶é™¢'),
(45862, 38945, 'en', 'name', 'Tianjin Natural History Museum'),
(45863, 38945, 'zh', 'name', 'å¤©ę“„č‡Ŗē„¶åšē‰©é¦†å§‹å»ŗäŗŽ'),
(45864, 38946, 'en', 'name', 'Yuxi Normal University'),
(45865, 38946, 'zh', 'name', 'ēŽ‰ęŗŖåøˆčŒƒå­¦é™¢'),
(45866, 38947, 'en', 'name', 'Tibet Academy of Agricultural and Animal Husbandry Sciences'),
(45867, 38947, 'zh', 'name', 'č„æč—å†œē‰§ē§‘å­¦é™¢'),
(45868, 38948, 'en', 'name', 'Zhejiang Institute of Hydraulics & Estuary'),
(45869, 38948, 'zh', 'name', 'ęµ™ę±Ÿēœę°“åˆ©ę²³å£ē ”ē©¶é™¢'),
(45870, 38949, 'en', 'name', 'Yunnan Animal Science and Veterinary Institute'),
(45871, 38949, 'zh', 'name', 'äŗ‘å—ēœē•œē‰§å…½åŒ»ē§‘å­¦é™¢'),
(45872, 38950, 'no_lang_code', 'name', 'Tiandi Science & Technology (China)'),
(45873, 38950, 'zh', 'name', '中煤科巄集团脿安研究院'),
(45874, 38951, 'en', 'name', 'Jiangsu Vocational College of Medicine'),
(45875, 38951, 'zh', 'name', 'ę±Ÿč‹åŒ»čÆčŒäøšå­¦é™¢'),
(45876, 38952, 'en', 'name', 'Yunnan Academy of Forestry'),
(45877, 38952, 'zh', 'name', 'äŗ‘å—ēœęž—äøšē§‘å­¦é™¢'),
(45878, 38953, 'en', 'name', 'Tobacco Research Institute'),
(45879, 38953, 'zh', 'name', 'é™¢ēƒŸč‰ē ”ē©¶ę‰€'),
(45880, 38954, 'en', 'name', 'Zhejiang Academy of Forestry'),
(45881, 38954, 'zh', 'name', 'ęµ™ę±Ÿēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(45882, 38955, 'en', 'name', 'Zhejiang Meteorological Bureau'),
(45883, 38955, 'zh', 'name', 'ęµ™ę±Ÿēœę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(45884, 38956, 'en', 'name', 'Yunnan Institute of Endemic Diseases Control and Prevention'),
(45885, 38956, 'zh', 'name', 'äŗ‘å—ēœåœ°ę–¹ē—…é˜²ę²»ē½‘'),
(45886, 38957, 'en', 'name', 'Zhengzhou Fruit Research Institute'),
(45887, 38957, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢éƒ‘å·žęžœę ‘ē ”ē©¶ę‰€'),
(45888, 38958, 'en', 'name', 'Yunnan Institute of Parasitic Diseases'),
(45889, 38958, 'zh', 'name', 'äŗ‘å—åÆ„ē”Ÿč™«ē—…é˜²ę²»ē½‘'),
(45890, 38959, 'en', 'name', 'Al-Farabi College'),
(45891, 38960, 'en', 'name', 'All India Institute of Physical Medicine and Rehabilitation'),
(45892, 38961, 'en', 'name', 'Yunnan Provincial Hospital of Traditional Chinese Medicine'),
(45893, 38961, 'zh', 'name', 'äŗ‘å—ēœäø­åŒ»åŒ»é™¢'),
(45894, 38962, 'en', 'name', 'Asian Institute of Management'),
(45895, 38963, 'es', 'name', 'Asociacion Para Evitar la Ceguera en MƩxico Hospital Dr. Luis SƔnchez Bulnes'),
(45896, 38964, 'en', 'name', 'Atlantic International University'),
(45897, 38965, 'en', 'name', 'De La Salle University – DasmariƱas'),
(45898, 38966, 'en', 'name', 'Brazosport College'),
(45899, 38967, 'en', 'name', 'Brookhaven College'),
(45900, 38968, 'en', 'name', 'American College of Dubai'),
(45901, 38969, 'en', 'name', 'Eastfield College'),
(45902, 38970, 'en', 'name', 'American Military University'),
(45903, 38971, 'en', 'name', 'Richland College'),
(45904, 38972, 'en', 'name', 'Australasian College for Emergency Medicine'),
(45905, 38973, 'en', 'name', 'American University of the Caribbean School of Medicine'),
(45906, 38974, 'en', 'name', 'Central Building Research Institute'),
(45907, 38975, 'en', 'name', 'Aneurin Bevan University Health Board'),
(45908, 38976, 'en', 'name', 'Central Institute for Cotton Research'),
(45909, 38977, 'en', 'name', 'Central Institute of Agricultural Engineering'),
(45910, 38977, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(45911, 38978, 'en', 'name', 'Apollo Hospitals'),
(45912, 38979, 'en', 'name', 'Bangladesh College of Physicians and Surgeons'),
(45913, 38980, 'en', 'name', 'Central Institute of Brackishwater Aquaculture'),
(45914, 38981, 'en', 'name', 'Central Institute of Plastics Engineering and Technology'),
(45915, 38982, 'en', 'name', 'Central Plantation Crops Research Institute'),
(45916, 38983, 'en', 'name', 'Central Sheep and Wool Research Institute'),
(45917, 38983, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤­ą„‡ą¤”ą¤¼ और ऊन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(45918, 38984, 'en', 'name', 'City of Westminster College'),
(45919, 38985, 'en', 'name', 'Indian Institute of Soil and Water Conservation'),
(45920, 38986, 'fr', 'name', 'Clinique Pasteur'),
(45921, 38986, 'en', 'name', 'Pasteur Clinic'),
(45922, 38987, 'en', 'name', 'Central Soil Salinity Research Institute'),
(45923, 38988, 'en', 'name', 'Dudley Group NHS Foundation Trust'),
(45924, 38989, 'en', 'name', 'College of Intensive Care Medicine'),
(45925, 38990, 'pt', 'name', 'Hospital Center of Cova da Beira'),
(45926, 38991, 'en', 'name', 'Colleges of Medicine of South Africa'),
(45927, 38992, 'en', 'name', 'Community College of Beaver County'),
(45928, 38993, 'en', 'name', 'Emmanuel Hospital Association'),
(45929, 38994, 'en', 'name', 'Entrepreneurship Development Institute of India'),
(45930, 38995, 'pt', 'name', 'Centro UniversitƔrio Metodista IPA'),
(45931, 38996, 'en', 'name', 'Chartered Institute of Linguists'),
(45932, 38997, 'en', 'name', 'European School of Molecular Medicine'),
(45933, 38998, 'no_lang_code', 'name', 'FKUZ Stavropol Rospotrebnadzor Anti Institute'),
(45934, 38998, 'ru', 'name', 'Š¤ŠšŠ£Š— Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ ŠæŃ€Š¾Ń‚ŠøŠ²Š¾Ń‡ŃƒŠ¼Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ РоспотребнаГзора'),
(45935, 38999, 'en', 'name', 'Central Research Institute of Structural Materials Prometey'),
(45936, 38999, 'ru', 'name', 'Š“ŠŠ¦ Š¤Š“Š£ŠŸ Ā«Š¦ŠŠ˜Š˜ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ†ŠøŠ¾Š½Š½Ń‹Ń… материалов Ā«ŠŸŃ€Š¾Š¼ŠµŃ‚ŠµŠ¹Ā»'),
(45937, 39000, 'en', 'name', 'Forest Research Institute'),
(45938, 39000, 'hi', 'name', 'वन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(45939, 39001, 'fr', 'name', 'Organisation Ouest Africaine de la SantƩ'),
(45940, 39001, 'en', 'name', 'West African Health Organisation'),
(45941, 39002, 'en', 'name', 'Davao del Norte State College'),
(45942, 39003, 'en', 'name', 'Christian Heritage College'),
(45943, 39004, 'es', 'name', 'Fundación Hospital Manacor'),
(45944, 39005, 'en', 'name', 'Davao Medical School Foundation'),
(45945, 39006, 'en', 'name', 'Gandhi Medical College & Hospital'),
(45946, 39006, 'te', 'name', 'గాంధీ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(45947, 39007, 'no_lang_code', 'name', 'Genesys (United States)'),
(45948, 39008, 'en', 'name', 'Debre Berhan University'),
(45949, 39009, 'no_lang_code', 'name', 'Pelum Association'),
(45950, 39010, 'en', 'name', 'Dongnam Institute of Radiological & Medical Sciences'),
(45951, 39011, 'fr', 'name', 'Institut de PalƩontologie Humaine'),
(45952, 39012, 'es', 'name', 'Hospital Universitario Dr JosƩ Eleuterio Gonzalez'),
(45953, 39013, 'pt', 'name', 'Grupo Hospitalar Conceição'),
(45954, 39014, 'pt', 'name', 'Complexo Hospitalar UniversitƔrio Professor Edgard Santos'),
(45955, 39015, 'es', 'name', 'Hospital Vicente Corral Moscoso'),
(45956, 39016, 'es', 'name', 'Institut Pere Mata'),
(45957, 39017, 'en', 'name', 'Inspiration Innovation Synergy University'),
(45958, 39018, 'en', 'name', 'Institute of Bio-Resources and Sustainable Development'),
(45959, 39019, 'en', 'name', 'Indian Institute of Pulses Research'),
(45960, 39019, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ दलहन ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(45961, 39020, 'es', 'name', 'Instituto Universitario General GutiƩrrez Mellado'),
(45962, 39021, 'en', 'name', 'Jawaharlal Nehru Tropical Botanic Garden and Research Institute'),
(45963, 39022, 'en', 'name', 'Islamic Azad University Boroujerd Branch'),
(45964, 39022, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد بروجرد'),
(45965, 39023, 'en', 'name', 'Islamic Azad University of Hamedan'),
(45966, 39023, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد همدان'),
(45967, 39024, 'en', 'name', 'Islamic Azad University Saveh'),
(45968, 39024, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų³Ų§ŁˆŁ‡'),
(45969, 39025, 'en', 'name', 'Islamic Azad University Semnan'),
(45970, 39025, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سمنان'),
(45971, 39026, 'no_lang_code', 'name', 'Islamic Azad University Tonekabon'),
(45972, 39027, 'en', 'name', 'Jubilee Mission Medical College and Research Institute'),
(45973, 39028, 'en', 'name', 'Islamic Azad University Shabestar'),
(45974, 39028, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“ŲØŲ³ŲŖŲ± صفحه Ų§ŲµŁ„ŪŒ'),
(45975, 39029, 'en', 'name', 'Institute for Research on Combustion'),
(45976, 39029, 'it', 'name', 'Istituto di Ricerche sulla Combustione'),
(45977, 39030, 'en', 'name', 'Institute for Coastal Marine Environment'),
(45978, 39030, 'it', 'name', 'Istituto per l''Ambiente Marino Costiero'),
(45979, 39031, 'fr', 'name', 'LycƩe Louis-le-Grand'),
(45980, 39032, 'tr', 'name', 'Konya Numune Hastanesi'),
(45981, 39033, 'en', 'name', 'Korea Institute of Nuclear Safety'),
(45982, 39033, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ģ•ˆģ „źø°ģˆ ģ›'),
(45983, 39034, 'en', 'name', 'King''s College School'),
(45984, 39035, 'en', 'name', 'Maharaja Engineering College'),
(45985, 39036, 'en', 'name', 'KVG Dental College & Hospital'),
(45986, 39037, 'en', 'name', 'A.V. Dumansky Institute of Colloid and Water Chemistry'),
(45987, 39037, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ колоїГної хімії та хімії воГи ім. А.Š’. Š”ŃƒŠ¼Š°Š½ŃŃŒŠŗŠ¾Š³Š¾'),
(45988, 39038, 'en', 'name', 'Institute of Organic Chemistry'),
(45989, 39038, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органічної хімії'),
(45990, 39039, 'en', 'name', 'National Fisheries Research and Development Institute'),
(45991, 39040, 'hi', 'name', 'Kadi Sarva Vishwavidyalaya'),
(45992, 39041, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(45993, 39041, 'bn', 'name', 'ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°ą§€ą¦Æą¦¼ ą¦­ą§‡ą¦·ą¦œą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¶ą¦æą¦•ą§ą¦·ą¦¾ আৰু গৱেষণা ą¦Ŗą§ą§°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø, ą¦—ą§ą§±ą¦¾ą¦¹ą¦¾ą¦Ÿą§€'),
(45994, 39042, 'en', 'name', 'Meenakshi Medical College Hospital and Research Institute'),
(45995, 39043, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(45996, 39044, 'en', 'name', 'Institute of Finance and Banking'),
(45997, 39044, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢é‡‘čžē ”ē©¶ę‰€'),
(45998, 39045, 'en', 'name', 'Institute of Finance and Trade Economics'),
(45999, 39045, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢č“¢ę”æäøŽč“øę˜“ē»ęµŽē ”ē©¶ę‰€'),
(46000, 39046, 'en', 'name', 'Mid Cheshire Hospitals NHS Foundation Trust'),
(46001, 39047, 'en', 'name', 'Military Technical College'),
(46002, 39048, 'en', 'name', 'New York Chiropractic College'),
(46003, 39049, 'en', 'name', 'Ludwig Cancer Research'),
(46004, 39050, 'en', 'name', 'Project Management Institute'),
(46005, 39051, 'en', 'name', 'Ohio Valley Medical Center'),
(46006, 39052, 'en', 'name', 'Pt. Jawahar Lal Nehru Memorial Medical College'),
(46007, 39053, 'en', 'name', 'North Eastern Indira Gandhi Regional Institute of Health and Medical Sciences'),
(46008, 39054, 'en', 'name', 'Oxford Dental College and Hospital'),
(46009, 39055, 'en', 'name', 'Pacific Dental College and Hospital'),
(46010, 39056, 'en', 'name', 'North Khorasan University of Medical Sciences'),
(46011, 39057, 'en', 'name', 'Dr. D. Y. Patil Medical College, Hospital and Research Centre'),
(46012, 39058, 'en', 'name', 'Rajasthan University of Veterinary and Animal Sciences'),
(46013, 39059, 'en', 'name', 'Research Institute of Industrial Science and Technology'),
(46014, 39060, 'en', 'name', 'Raffles Institution'),
(46015, 39061, 'en', 'name', 'Royal College of Anaesthetists'),
(46016, 39062, 'en', 'name', 'Seema Dental College and Hospital'),
(46017, 39063, 'en', 'name', 'Royal College of Obstetricians and Gynaecologists'),
(46018, 39064, 'en', 'name', 'Ross University School of Medicine'),
(46019, 39065, 'en', 'name', 'Seoul School of Integrated Sciences and Technologies'),
(46020, 39065, 'ko', 'name', 'ģ„œģšøź³¼ķ•™ģ¢…ķ•©ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(46021, 39066, 'en', 'name', 'Seoul Women''s College of Nursing'),
(46022, 39067, 'en', 'name', 'Sherwood Forest Hospitals NHS Foundation Trust'),
(46023, 39068, 'en', 'name', 'Royal College of Ophthalmologists'),
(46024, 39069, 'en', 'name', 'Royal College of Pathologists'),
(46025, 39070, 'en', 'name', 'Royal College of Pathologists of Australasia'),
(46026, 39071, 'en', 'name', 'Royal Australian and New Zealand College of Obstetricians and Gynaecologists'),
(46027, 39072, 'en', 'name', 'Shriram Institute for Industrial Research'),
(46028, 39073, 'en', 'name', 'Royal College of Radiologists'),
(46029, 39074, 'en', 'name', 'Rubber Board'),
(46030, 39075, 'en', 'name', 'Rajamangala University of Technology Krungthep'),
(46031, 39076, 'en', 'name', 'Sri Devaraj Urs Academy of Higher Education and Research'),
(46032, 39077, 'en', 'name', 'St George''s Hospital'),
(46033, 39078, 'pt', 'name', 'Instituto de Novas Tecnologias'),
(46034, 39079, 'en', 'name', 'Thrombosis Research Institute'),
(46035, 39080, 'en', 'name', 'St.Martha''s College Of Nursing'),
(46036, 39081, 'en', 'name', 'Trinity College London'),
(46037, 39082, 'en', 'name', 'Santosh University'),
(46038, 39083, 'en', 'name', 'United World College of the Adriatic'),
(46039, 39084, 'es', 'name', 'Universidad del Papaloapan'),
(46040, 39085, 'en', 'name', 'Technological Institute for Superhard and Novel Carbon Materials'),
(46041, 39085, 'ru', 'name', 'Технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сверхтверГых Šø новых ŃƒŠ³Š»ŠµŃ€Š¾Š“Š½Ń‹Ń… материалов'),
(46042, 39086, 'en', 'name', 'Technological Institute of the Philippines'),
(46043, 39087, 'es', 'name', 'Universidad de La Salle BajĆ­o'),
(46044, 39088, 'es', 'name', 'Universidad PolitƩcnica de Tulancingo'),
(46045, 39089, 'es', 'name', 'Universidad Politecnica del Estado de Morelos'),
(46046, 39090, 'es', 'name', 'Universidad Tecnológica del Sur de Sonora'),
(46047, 39091, 'en', 'name', 'Coffee Research Institute'),
(46048, 39092, 'en', 'name', 'Vinayaka Missions Medical College and Hospitals'),
(46049, 39093, 'en', 'name', 'University of Agricultural Sciences, Dharwad'),
(46050, 39094, 'fr', 'name', 'HƓpital Pasteur'),
(46051, 39095, 'en', 'name', 'State Oil and Gas Board of Alabama'),
(46052, 39096, 'en', 'name', 'Geological Survey of Alabama'),
(46053, 39097, 'no_lang_code', 'name', 'Abhikram (India)'),
(46054, 39098, 'no_lang_code', 'name', 'Caplin Point Laboratories (India)'),
(46055, 39099, 'no_lang_code', 'name', 'Antrix Corporation (India)'),
(46056, 39100, 'en', 'name', 'ACS Medical College and Hospital'),
(46057, 39101, 'no_lang_code', 'name', 'Bharat Electronics (India)'),
(46058, 39101, 'hi', 'name', 'भारत ą¤‡ą¤²ą„‡ą¤•ą„ą¤Ÿą„ą¤°ą„‰ą¤Øą¤æą¤• ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(46059, 39102, 'en', 'name', 'Action for Agricultural Renewal in Maharashtra'),
(46060, 39103, 'en', 'name', 'Career Institute Of Medical & Dental Sciences and Hospital'),
(46061, 39104, 'no_lang_code', 'name', 'Aditya Birla (India)'),
(46062, 39105, 'no_lang_code', 'name', 'Kalyani Group (India)'),
(46063, 39106, 'en', 'name', 'Centre for Environmental Management and Participatory Development'),
(46064, 39107, 'no_lang_code', 'name', 'Bharat Heavy Electricals (India)'),
(46065, 39108, 'no_lang_code', 'name', 'Agilent Technologies (India)'),
(46066, 39109, 'en', 'name', 'Child In Need Institute'),
(46067, 39110, 'en', 'name', 'Appropriate Rural Technology Institute'),
(46068, 39111, 'no_lang_code', 'name', 'AquAgri Processing Private Limited (India)'),
(46069, 39112, 'no_lang_code', 'name', 'Bharat Petroleum (India)'),
(46070, 39113, 'en', 'name', 'Central Arid Zone Research Institute'),
(46071, 39114, 'en', 'name', 'Agri Biotech Foundation'),
(46072, 39115, 'en', 'name', 'Christian Institute of Health Sciences and Research Hospital'),
(46073, 39116, 'en', 'name', 'Central Board of Secondary Education'),
(46074, 39117, 'no_lang_code', 'name', 'Alembic Pharmaceuticals (India)'),
(46075, 39118, 'en', 'name', 'Ali Yavar Jung National Institute for the Hearing Handicapped'),
(46076, 39119, 'no_lang_code', 'name', 'Bristol-Myers Squibb (India)'),
(46077, 39120, 'en', 'name', 'Aryavarta Space Organization'),
(46078, 39121, 'en', 'name', 'Church of South India Hospital'),
(46079, 39122, 'no_lang_code', 'name', 'Biocon (India)'),
(46080, 39123, 'en', 'name', 'Central Ground Water Board'),
(46081, 39124, 'en', 'name', 'All India Management Association'),
(46082, 39125, 'no_lang_code', 'name', 'Ashok Leyland (India)'),
(46083, 39126, 'en', 'name', 'Central Institute for Research on Buffaloes'),
(46084, 39127, 'en', 'name', 'Ashoka Trust for Research in Ecology and the Environment'),
(46085, 39128, 'no_lang_code', 'name', 'Biological E (India)'),
(46086, 39129, 'en', 'name', 'Central Institute of Post-Harvest Engineering and Technology'),
(46087, 39130, 'en', 'name', 'Asia Pacific Institute of Management'),
(46088, 39131, 'en', 'name', 'Central Manufacturing Technology Institute'),
(46089, 39132, 'no_lang_code', 'name', 'Coal India (India)'),
(46090, 39132, 'hi', 'name', 'ą¤•ą„‹ą¤² इंऔिया ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(46091, 39133, 'en', 'name', 'Anchorage'),
(46092, 39134, 'no_lang_code', 'name', 'Cognizant (India)'),
(46093, 39135, 'en', 'name', 'Asian Energy Institute'),
(46094, 39136, 'no_lang_code', 'name', 'Asian Paints (India)'),
(46095, 39137, 'en', 'name', 'Central Pollution Control Board'),
(46096, 39138, 'en', 'name', 'Association for Intelligent Transport Systems'),
(46097, 39139, 'en', 'name', 'DKTE Society''s Textile and Engineering Institute'),
(46098, 39140, 'en', 'name', 'Association for Stimulating Know How'),
(46099, 39141, 'en', 'name', 'Confederation of Indian Industry'),
(46100, 39141, 'hi', 'name', 'ą¤•ą„‰ą¤Øą„ą¤«ą„‡ą¤”ą¤°ą„‡ą¤¶ą¤Ø ऑफ इंऔियन ą¤‡ą¤‚ą¤”ą¤øą„ą¤Ÿą„ą¤°ą„€'),
(46101, 39142, 'en', 'name', 'Central Soil and Materials Research Station'),
(46102, 39143, 'en', 'name', 'C. U. Shah University'),
(46103, 39144, 'en', 'name', 'Central Tobacco Research Institute'),
(46104, 39145, 'en', 'name', 'Critical Art and Media Practice'),
(46105, 39146, 'en', 'name', 'Dr. B.L. Kapur Memorial Hospital'),
(46106, 39147, 'en', 'name', 'Centre For Environment Architecture & Human Settlements'),
(46107, 39148, 'en', 'name', 'Association of State Road Transport Undertakings'),
(46108, 39149, 'en', 'name', 'Central Water and Power Research Station'),
(46109, 39150, 'no_lang_code', 'name', 'Astonfield (India)'),
(46110, 39151, 'no_lang_code', 'name', 'Avantha (India)'),
(46111, 39152, 'no_lang_code', 'name', 'Vedanta Resources (India)'),
(46112, 39153, 'en', 'name', 'Centre For Development Alternatives'),
(46113, 39154, 'no_lang_code', 'name', 'Calyx (India)'),
(46114, 39155, 'en', 'name', 'Atomic Energy Regulatory Board'),
(46115, 39156, 'no_lang_code', 'name', 'Dabur Research Foundation (India)'),
(46116, 39157, 'en', 'name', 'Data Security Council of India'),
(46117, 39158, 'en', 'name', 'Atomic Minerals Directorate for Exploration and Research'),
(46118, 39158, 'hi', 'name', 'ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤–ą¤Øą¤æą¤œ ą¤…ą¤Øą„ą¤µą„‡ą¤·ą¤£ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(46119, 39159, 'en', 'name', 'Centre for Development Economics'),
(46120, 39160, 'en', 'name', 'Defence Laboratory Jodhpur'),
(46121, 39160, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾ ą¤œą„‹ą¤§ą¤Ŗą„ą¤°'),
(46122, 39161, 'no_lang_code', 'name', 'Fresenius Kabi (India)'),
(46123, 39162, 'en', 'name', 'Delhi Integrated Multi-Modal Transit System'),
(46124, 39163, 'en', 'name', 'Frontier Lifeline Hospital'),
(46125, 39164, 'en', 'name', 'Euro-India Research Centre'),
(46126, 39165, 'no_lang_code', 'name', 'Elder Pharmaceuticals (India)'),
(46127, 39166, 'no_lang_code', 'name', 'Emami (India)'),
(46128, 39167, 'no_lang_code', 'name', 'Danish Hydraulic Institute (India)'),
(46129, 39168, 'no_lang_code', 'name', 'Emcure Pharmaceuticals (India)'),
(46130, 39169, 'en', 'name', 'Automotive Research Association of India'),
(46131, 39170, 'en', 'name', 'Centre for Internet and Society'),
(46132, 39171, 'no_lang_code', 'name', 'General Electric (India)'),
(46133, 39172, 'en', 'name', 'Centre for Operations Research and Training'),
(46134, 39173, 'no_lang_code', 'name', 'Engineers India (India)'),
(46135, 39173, 'hi', 'name', 'ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą„ą¤ø इंऔिया ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(46136, 39174, 'en', 'name', 'ESIC Hospital'),
(46137, 39175, 'en', 'name', 'Indian Institute of Oilseeds Research'),
(46138, 39175, 'hi', 'name', 'ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ - ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ तिलहन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(46139, 39176, 'en', 'name', 'Centre for Policy Research'),
(46140, 39177, 'no_lang_code', 'name', 'General Motors (India)'),
(46141, 39178, 'no_lang_code', 'name', 'Evalueserve (India)'),
(46142, 39179, 'no_lang_code', 'name', 'Avesthagen (India)'),
(46143, 39180, 'en', 'name', 'Centre for Science, Development and Media Studies'),
(46144, 39181, 'no_lang_code', 'name', 'Evolva (India)'),
(46145, 39182, 'no_lang_code', 'name', 'Guavus (India)'),
(46146, 39183, 'en', 'name', 'BAIF Development Research Foundation'),
(46147, 39184, 'no_lang_code', 'name', 'Geometric (India)'),
(46148, 39185, 'en', 'name', 'Centre for World Solidarity'),
(46149, 39186, 'en', 'name', 'Flags of Honour Foundation'),
(46150, 39187, 'en', 'name', 'Gujarat Institute of Development Research'),
(46151, 39188, 'en', 'name', 'India International Centre'),
(46152, 39189, 'no_lang_code', 'name', 'FLAME TAO Knoware (India)'),
(46153, 39190, 'en', 'name', 'Indian Air Force'),
(46154, 39190, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤¾ą¤Æą„ ą¤øą„‡ą¤Øą¤¾'),
(46155, 39191, 'en', 'name', 'Fortis Healthcare'),
(46156, 39192, 'en', 'name', 'Indian Army'),
(46157, 39192, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤„ą¤²ą¤øą„‡ą¤Øą¤¾'),
(46158, 39193, 'en', 'name', 'Fortis Memorial Research Institute'),
(46159, 39194, 'en', 'name', 'Forum for Ethics Review Committees in India'),
(46160, 39195, 'en', 'name', 'Indian Institute for Human Settlements'),
(46161, 39196, 'en', 'name', 'Gian Sagar Medical College and Hospital'),
(46162, 39197, 'en', 'name', 'Gian Sagar Dental College and Hospital'),
(46163, 39198, 'en', 'name', 'Foundation for Research in Health Systems'),
(46164, 39199, 'en', 'name', 'Institute of Economic Growth'),
(46165, 39200, 'en', 'name', 'Global ICT Standardization Forum for India'),
(46166, 39201, 'en', 'name', 'Institute of Environmental Studies & Wetland Management'),
(46167, 39202, 'en', 'name', 'Indian Institute Of Bio social Research And Development'),
(46168, 39203, 'en', 'name', 'Global Innovation and Technology Alliance'),
(46169, 39204, 'no_lang_code', 'name', 'GVK (India)'),
(46170, 39205, 'en', 'name', 'Indian Institute of Ecology and Environment'),
(46171, 39206, 'en', 'name', 'Government Dental College and Hospital'),
(46172, 39207, 'no_lang_code', 'name', 'Hardik Fintrade (India)'),
(46173, 39208, 'en', 'name', 'Government Medical College'),
(46174, 39209, 'en', 'name', 'Institute of Molecular Medicine'),
(46175, 39210, 'en', 'name', 'Government Mohan Kumaramangalam Medical College'),
(46176, 39211, 'no_lang_code', 'name', 'HCL Technologies (India)'),
(46177, 39212, 'en', 'name', 'Indian Institute of Management Kashipur'),
(46178, 39212, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤¾ą¤¶ą„€ą¤Ŗą„ą¤°'),
(46179, 39213, 'en', 'name', 'Institute of Nephro Urology'),
(46180, 39214, 'en', 'name', 'Indian Institute of Plantation Management'),
(46181, 39215, 'en', 'name', 'Government of Andhra Pradesh'),
(46182, 39216, 'en', 'name', 'Health Action by People'),
(46183, 39217, 'no_lang_code', 'name', 'Hetero Drugs (India)'),
(46184, 39218, 'en', 'name', 'Government of Gujarat'),
(46185, 39219, 'en', 'name', 'Indian Institute of Soil Science'),
(46186, 39219, 'hi', 'name', 'ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ-ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤®ą„ƒą¤¦ą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(46187, 39220, 'no_lang_code', 'name', 'Hewlett-Packard (India)'),
(46188, 39221, 'en', 'name', 'Institute of Urban Designers – India'),
(46189, 39222, 'no_lang_code', 'name', 'Jaypee Group (India)'),
(46190, 39223, 'en', 'name', 'Indian Jute Industries Research Association'),
(46191, 39224, 'no_lang_code', 'name', 'Hilleman Laboratories (India)'),
(46192, 39225, 'en', 'name', 'Institute of Wood Science and Technology'),
(46193, 39226, 'en', 'name', 'Indian Navy'),
(46194, 39226, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Øą„Œą¤øą„‡ą¤Øą¤¾'),
(46195, 39227, 'en', 'name', 'Government of Haryana'),
(46196, 39228, 'no_lang_code', 'name', 'Hindustan Aeronautics Limited (India)'),
(46197, 39228, 'hi', 'name', 'ą¤¹ą¤æą¤‚ą¤¦ą„ą¤øą„ą¤¤ą¤¾ą¤Ø ą¤ą¤°ą„‹ą¤Øą„‰ą¤Ÿą¤æą¤•ą„ą¤ø ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(46198, 39229, 'en', 'name', 'Jesuit Madurai Province'),
(46199, 39230, 'en', 'name', 'Institution of Electronics and Telecommunication Engineers'),
(46200, 39231, 'en', 'name', 'Government of Karnataka'),
(46201, 39231, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²øą²°ą³ą²•ą²¾ą²°'),
(46202, 39232, 'en', 'name', 'Indian Register of Shipping'),
(46203, 39233, 'no_lang_code', 'name', 'JK Agri Genetics (India)'),
(46204, 39234, 'en', 'name', 'Hindustan Bible Institute & College'),
(46205, 39235, 'en', 'name', 'Indian Society of International Law'),
(46206, 39236, 'en', 'name', 'Government of Kerala'),
(46207, 39236, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“øąµ¼ą“•ąµą“•ą“¾ąµ¼'),
(46208, 39237, 'en', 'name', 'JRE Group of Institutions'),
(46209, 39238, 'en', 'name', 'Government of Maharashtra'),
(46210, 39238, 'mr', 'name', 'ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°.भारत'),
(46211, 39239, 'en', 'name', 'Water Supply and Sanitation Department'),
(46212, 39239, 'mr', 'name', 'ą¤Ŗą¤¾ą¤£ą„€ ą¤Ŗą„ą¤°ą¤µą¤ ą¤¾ व ą¤øą„ą¤µą¤šą„ą¤›ą¤¤ą¤¾ विभाग'),
(46213, 39240, 'en', 'name', 'Government of Sikkim'),
(46214, 39241, 'no_lang_code', 'name', 'Human Factors International (India)'),
(46215, 39242, 'no_lang_code', 'name', 'HHV Solar Technologies (India)'),
(46216, 39243, 'no_lang_code', 'name', 'Intel (India)'),
(46217, 39244, 'en', 'name', 'Institute of Advanced Studies in Education'),
(46218, 39245, 'en', 'name', 'G Pulla Reddy Dental College & Hospital'),
(46219, 39246, 'en', 'name', 'International Collective in Support of Fishworkers'),
(46220, 39247, 'en', 'name', 'ICFAI Business School'),
(46221, 39248, 'en', 'name', 'Government of Tamil Nadu'),
(46222, 39248, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®…ą®°ą®šąÆ'),
(46223, 39249, 'en', 'name', 'ICARE Institute of Medical Sciences and Research & Dr. Bidhan Chandra Roy Hospital'),
(46224, 39250, 'en', 'name', 'Industrial Credit and Investment Corporation of India'),
(46225, 39251, 'no_lang_code', 'name', 'ICICI Lombard (India)'),
(46226, 39252, 'no_lang_code', 'name', 'INHS Asvini'),
(46227, 39253, 'no_lang_code', 'name', 'JSW Group (India)'),
(46228, 39254, 'en', 'name', 'Government of Uttar Pradesh'),
(46229, 39254, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ सरकार'),
(46230, 39255, 'no_lang_code', 'name', 'Jubilant Life Sciences (India)'),
(46231, 39256, 'en', 'name', 'International Management Institute'),
(46232, 39257, 'no_lang_code', 'name', 'Lepra Society'),
(46233, 39258, 'no_lang_code', 'name', 'Ion Exchange (India)'),
(46234, 39259, 'en', 'name', 'Government Medical College Thoothukudi'),
(46235, 39259, 'ta', 'name', 'ą®¤ąÆ‚ą®¤ąÆą®¤ąÆą®•ąÆą®•ąÆą®Ÿą®æ ą®…ą®°ą®šąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(46236, 39260, 'no_lang_code', 'name', 'IIDC (India)'),
(46237, 39261, 'no_lang_code', 'name', 'Jyotirmay Eye Clinic'),
(46238, 39262, 'no_lang_code', 'name', 'Ipca Laboratories (India)'),
(46239, 39263, 'en', 'name', 'International Life Sciences Institute India'),
(46240, 39264, 'en', 'name', 'Krishak Bharati Cooperative'),
(46241, 39265, 'en', 'name', 'Great Lakes Institute of Management'),
(46242, 39266, 'en', 'name', 'IT for Change'),
(46243, 39267, 'en', 'name', 'India China Economic and Cultural Council'),
(46244, 39268, 'en', 'name', 'Karnataka Fisheries Development Corporation'),
(46245, 39269, 'en', 'name', 'India HIV/AIDS Alliance'),
(46246, 39270, 'no_lang_code', 'name', 'ITPEnergised Group (India)'),
(46247, 39271, 'en', 'name', 'GSL Medical College & General Hospital'),
(46248, 39272, 'no_lang_code', 'name', 'Lupin Pharmaceuticals (India)'),
(46249, 39273, 'en', 'name', 'Kasturba Hospital'),
(46250, 39274, 'en', 'name', 'Kerala School of Mathematics'),
(46251, 39275, 'no_lang_code', 'name', 'Narayana Nethralaya'),
(46252, 39276, 'en', 'name', 'M S Ramaiah University of Applied Sciences'),
(46253, 39277, 'no_lang_code', 'name', 'Natco Pharma (India)'),
(46254, 39278, 'en', 'name', 'National Board of Examinations'),
(46255, 39278, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą¤°ą„€ą¤•ą„ą¤·ą¤¾ ą¤¬ą„‹ą¤°ą„ą¤”'),
(46256, 39279, 'no_lang_code', 'name', 'Magbro Healthcare (India)'),
(46257, 39280, 'no_lang_code', 'name', 'Mecpro Heavy Engineering (India)'),
(46258, 39281, 'no_lang_code', 'name', 'Kirloskar Group (India)'),
(46259, 39282, 'en', 'name', 'Netaji Subhas National Institute of Sports'),
(46260, 39283, 'en', 'name', 'National Bureau of Agriculturally Important Microorganisms'),
(46261, 39283, 'hi', 'name', 'ą¤•ą„ƒą¤·ą¤æ ą¤•ą„‡ ą¤²ą¤æą¤ ą¤®ą¤¹ą¤¤ą„ą¤µą¤Ŗą„‚ą¤°ą„ą¤£ ą¤øą„‚ą¤•ą„ą¤·ą„ą¤®ą¤œą„€ą¤µą„‹ą¤‚ ą¤•ą„‡ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤¬ą„ą¤Æą„‚ą¤°ą„‹'),
(46262, 39284, 'en', 'name', 'Network for Preventive Environmental Management'),
(46263, 39285, 'en', 'name', 'KLE Society Hospital'),
(46264, 39286, 'no_lang_code', 'name', 'Nidan'),
(46265, 39287, 'en', 'name', 'Mehrangarh Museum Trust'),
(46266, 39288, 'en', 'name', 'KMCT Group of Educational Institutions'),
(46267, 39289, 'no_lang_code', 'name', 'NIIT (India)'),
(46268, 39290, 'no_lang_code', 'name', 'Niramaya Hospital'),
(46269, 39291, 'en', 'name', 'KVG Medical College & Hospital'),
(46270, 39292, 'en', 'name', 'National Centre for Medium Range Weather Forecasting'),
(46271, 39292, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ मधयम अवधि ą¤®ą„Œą¤øą¤® ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤Øą„ą¤®ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦'),
(46272, 39293, 'no_lang_code', 'name', 'Merck (India)'),
(46273, 39294, 'no_lang_code', 'name', 'Maharashtra Hybrid Seeds (India)'),
(46274, 39295, 'en', 'name', 'National Council for Cement and Building Materials'),
(46275, 39296, 'no_lang_code', 'name', 'Lanco Solar (India)'),
(46276, 39297, 'en', 'name', 'Maharashtra State Board of Technical Education'),
(46277, 39298, 'en', 'name', 'National Dairy Development Board'),
(46278, 39299, 'en', 'name', 'National Institute Of Veterinary Epidemiology And Disease Informatics'),
(46279, 39300, 'en', 'name', 'National Defence Academy'),
(46280, 39300, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤•ą¤¾ą¤¦ą¤®ą„€'),
(46281, 39301, 'en', 'name', 'Noorul Islam College of Dental Science'),
(46282, 39302, 'en', 'name', 'Mahatma Gandhi Mission Institute of Health Sciences'),
(46283, 39303, 'en', 'name', 'National Institute of Construction Management and Research'),
(46284, 39304, 'no_lang_code', 'name', 'Novartis (India)'),
(46285, 39305, 'no_lang_code', 'name', 'Mahindra and Mahindra Limited (India)'),
(46286, 39306, 'no_lang_code', 'name', 'Phoenix Medical Systems (India)'),
(46287, 39307, 'en', 'name', 'Mahindra United World College India'),
(46288, 39308, 'no_lang_code', 'name', 'Malabar Cancer Centre'),
(46289, 39309, 'no_lang_code', 'name', 'NTPC Consultancy (India)'),
(46290, 39310, 'en', 'name', 'National Institute of Open Schooling'),
(46291, 39310, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æą„€ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(46292, 39311, 'en', 'name', 'MNR Medical College and Hospital'),
(46293, 39312, 'no_lang_code', 'name', 'Piramal (India)'),
(46294, 39313, 'no_lang_code', 'name', 'Monsanto (India)'),
(46295, 39314, 'en', 'name', 'Malabar Medical College Hospital and Research Centre'),
(46296, 39314, 'ml', 'name', 'ą“®ą“²ą“¬ą“¾ąµ¼ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‡ą“¾ą“³ą“œąµ'),
(46297, 39315, 'en', 'name', 'National Institution for Transforming India Aayog'),
(46298, 39315, 'bn', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ भारत ą¤Ŗą¤°ą¤æą¤µą¤°ą„ą¤¤ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(46299, 39316, 'en', 'name', 'National Institute of Plant Health Management'),
(46300, 39316, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤Øą¤øą„ā€ą¤Ŗą¤¤ą¤æ ą¤øą„ā€ą¤µą¤¾ą¤øą„ā€ą¤„ą„ā€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(46301, 39317, 'en', 'name', 'Office of the Registrar General & Census Commissioner'),
(46302, 39318, 'no_lang_code', 'name', 'MTEL-KTEI Teleinfra (India)'),
(46303, 39319, 'no_lang_code', 'name', 'Malladi Drugs and Pharmaceuticals Limited (India)'),
(46304, 39320, 'no_lang_code', 'name', 'Power Grid Corporation (India)'),
(46305, 39321, 'en', 'name', 'National Institute of Science, Technology and Development Studies'),
(46306, 39321, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø, ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ और विकास ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(46307, 39322, 'no_lang_code', 'name', 'Oracle (India)'),
(46308, 39323, 'en', 'name', 'Mudra Institute of Communications Ahmedabad'),
(46309, 39324, 'en', 'name', 'Brihanmumbai Municipal Corporation'),
(46310, 39324, 'hi', 'name', 'ą¤¬ą„ƒą¤¹ą¤Øą„ą¤®ą„ą¤‚ą¤¬ą¤ˆ महानगरपालिका'),
(46311, 39325, 'en', 'name', 'National Institute of Technology Meghalaya'),
(46312, 39325, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą„‡ą¤˜ą¤¾ą¤²ą¤Æ'),
(46313, 39326, 'en', 'name', 'Raipur Municipal Corporation'),
(46314, 39326, 'hi', 'name', 'ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤° नगर निगम'),
(46315, 39327, 'no_lang_code', 'name', 'Panacea Biotec (India)'),
(46316, 39328, 'no_lang_code', 'name', 'Murugappa (India)'),
(46317, 39329, 'en', 'name', 'National Research Centre for Banana'),
(46318, 39330, 'en', 'name', 'Mysore Resettlement and Development Agency'),
(46319, 39331, 'en', 'name', 'Project Directorate on Foot and Mouth Disease'),
(46320, 39332, 'en', 'name', 'Nansen Environmental Research Centre India'),
(46321, 39333, 'no_lang_code', 'name', 'Rashtreeya Sikshana Samithi Trust'),
(46322, 39334, 'en', 'name', 'PSG Institute of Advanced Studies'),
(46323, 39335, 'en', 'name', 'National Research Centre for Grapes'),
(46324, 39335, 'hi', 'name', 'ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ-ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤‚ą¤—ą„‚ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(46325, 39336, 'no_lang_code', 'name', 'Sanmar Group (India)'),
(46326, 39337, 'en', 'name', 'Directorate of Groundnut Research'),
(46327, 39337, 'hi', 'name', 'ą¤®ą„‚ą¤ą¤—ą¤«ą¤²ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(46328, 39338, 'en', 'name', 'Centre for the Study of Developing Societies'),
(46329, 39339, 'no_lang_code', 'name', 'Rayat Shikshan Sanstha'),
(46330, 39340, 'en', 'name', 'Micro Insurance Academy'),
(46331, 39341, 'en', 'name', 'Regional Medical Research Centre'),
(46332, 39342, 'en', 'name', 'National Research Centre on Camel'),
(46333, 39342, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤‰ą¤·ą„ą¤Ÿą„ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(46334, 39343, 'no_lang_code', 'name', 'Scope e-Knowledge Center (India)'),
(46335, 39344, 'en', 'name', 'Peerless Hospital & B.K.Roy Research Centre'),
(46336, 39345, 'en', 'name', 'Rajasthan Dental College and Hospital'),
(46337, 39346, 'en', 'name', 'Advanced Materials and Processes Research Institute'),
(46338, 39346, 'hi', 'name', 'ą¤Ŗą„ą¤°ą¤—ą¤¤ ą¤Ŗą¤¦ą¤¾ą¤°ą„ą¤„ तऄा ą¤Ŗą„ą¤°ą¤•ą„ą¤°ą¤® ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(46339, 39347, 'no_lang_code', 'name', 'Sipra Labs (India)'),
(46340, 39348, 'no_lang_code', 'name', 'Reliance Industries (India)'),
(46341, 39349, 'en', 'name', 'National Research Centre on Seed Spices'),
(46342, 39350, 'no_lang_code', 'name', 'Seascape Learning (India)'),
(46343, 39351, 'no_lang_code', 'name', 'Remidio Innovative Solutions (India)'),
(46344, 39352, 'en', 'name', 'Seth Research Foundation'),
(46345, 39353, 'en', 'name', 'National University of Educational Planning and Administration'),
(46346, 39354, 'en', 'name', 'Research Design And Standards Organization'),
(46347, 39354, 'hi', 'name', 'ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤…ą¤­ą¤æą¤•ą¤²ą„ą¤Ŗ ą¤ą¤µą¤‚ मानक संगठन'),
(46348, 39355, 'en', 'name', 'Shadan Hospital and Institute of Medical Sciences'),
(46349, 39356, 'en', 'name', 'Shanti Business School'),
(46350, 39357, 'en', 'name', 'Resource Optimization Initiative'),
(46351, 39358, 'hi', 'name', 'Shramik Bharti'),
(46352, 39359, 'en', 'name', 'SRM Dental College'),
(46353, 39360, 'en', 'name', 'Ayush & Health Sciences University Chhattisgarh'),
(46354, 39360, 'hi', 'name', 'पं. ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤‰ą¤Ŗą¤¾ą¤§ą„ą¤Æą¤¾ą¤Æ ą¤øą„ą¤®ą„ƒą¤¤ą¤æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤†ą¤Æą„ą¤· ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą„'),
(46355, 39361, 'en', 'name', 'Sri Balaji Vidyapeeth University'),
(46356, 39362, 'no_lang_code', 'name', 'Strand Life Sciences (India)'),
(46357, 39363, 'en', 'name', 'Subbaiah Medical College'),
(46358, 39364, 'en', 'name', 'Society for Nutrition Education and Health Action'),
(46359, 39365, 'en', 'name', 'Society for Participatory Research in Asia'),
(46360, 39366, 'no_lang_code', 'name', 'Sify Technologies (India)'),
(46361, 39367, 'en', 'name', 'Society for Research and Initiatives for Sustainable Technologies and Institutions'),
(46362, 39368, 'en', 'name', 'Salim Ali Center for Ornithology and Natural History'),
(46363, 39369, 'no_lang_code', 'name', 'Sami Labs (India)');
INSERT INTO `ror_settings` VALUES
(46364, 39370, 'en', 'name', 'National Institute of Solar Energy'),
(46365, 39371, 'no_lang_code', 'name', 'Mahindra Group (India)'),
(46366, 39372, 'no_lang_code', 'name', 'Sun Pharma Advanced Research (India)'),
(46367, 39373, 'no_lang_code', 'name', 'Techno India Group (India)'),
(46368, 39374, 'no_lang_code', 'name', 'Samsung (India)'),
(46369, 39375, 'en', 'name', 'State Council of Science and Technology for Sikkim'),
(46370, 39376, 'no_lang_code', 'name', 'Suncon Engineers (India)'),
(46371, 39377, 'en', 'name', 'Terna Dental College and Hospital'),
(46372, 39378, 'no_lang_code', 'name', 'RenewSys (India)'),
(46373, 39379, 'no_lang_code', 'name', 'Span Diagnostics (India)'),
(46374, 39380, 'no_lang_code', 'name', 'Sphaera Pharma (India)'),
(46375, 39381, 'en', 'name', 'SVS Medical College'),
(46376, 39382, 'en', 'name', 'India Foundation for the Arts'),
(46377, 39383, 'en', 'name', 'Swami Ramanand Teerth Rural Medical College'),
(46378, 39384, 'en', 'name', 'Centre for Science and Environment'),
(46379, 39385, 'en', 'name', 'Foundation for Research in Community Health'),
(46380, 39386, 'en', 'name', 'Humsafar Trust'),
(46381, 39387, 'en', 'name', 'Vastu Shilpa Foundation'),
(46382, 39388, 'no_lang_code', 'name', 'NovaLead Pharma (India)'),
(46383, 39389, 'en', 'name', 'Nigerian Geological Survey Agency'),
(46384, 39390, 'no_lang_code', 'name', 'Volkswagen Group (India)'),
(46385, 39391, 'en', 'name', 'Tamil Nadu State AIDS Control Society'),
(46386, 39392, 'en', 'name', 'Voluntary Health Association Of India'),
(46387, 39393, 'no_lang_code', 'name', 'Thermax (India)'),
(46388, 39394, 'en', 'name', 'Sri Guru Harkrishan Sahib Charitable Eye Hospital Trust'),
(46389, 39395, 'en', 'name', 'Velammal Educational Trust'),
(46390, 39396, 'en', 'name', 'Department of Higher Education'),
(46391, 39397, 'no_lang_code', 'name', 'West Bengal Electronics Industry Development Corporation Limited (India)'),
(46392, 39397, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦‡ą¦²ą§‡ą¦•ą¦Ÿą§ą¦°ą¦Øą¦æą¦•ą§ą¦ø ą¦¶ą¦æą¦²ą§ą¦Ŗ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ą¦•ą¦°ą§ą¦Ŗą§‹ą¦°ą§‡ą¦¶ą¦Ø ą¦²ą¦æą¦®ą¦æą¦Ÿą§‡ą¦”'),
(46393, 39398, 'no_lang_code', 'name', 'West Bengal Green Energy Development Corporation (India)'),
(46394, 39399, 'no_lang_code', 'name', 'Tata Power Solar (India)'),
(46395, 39400, 'en', 'name', 'Sri Manakula Vinayagar Educational Trust'),
(46396, 39401, 'no_lang_code', 'name', 'Whirlpool (India)'),
(46397, 39402, 'en', 'name', 'Town Planning and Valuation Department'),
(46398, 39403, 'no_lang_code', 'name', 'Tata Chemicals (India)'),
(46399, 39404, 'no_lang_code', 'name', 'Tata Elxsi (India)'),
(46400, 39405, 'no_lang_code', 'name', 'Veolia (India)'),
(46401, 39406, 'no_lang_code', 'name', 'Unilever (India)'),
(46402, 39407, 'en', 'name', 'Unit for Research and Development of Information Products'),
(46403, 39408, 'no_lang_code', 'name', 'Tata Technologies (India)'),
(46404, 39409, 'en', 'name', 'University of Agricultural Sciences Raichur'),
(46405, 39409, 'kn', 'name', 'ą²•ą³ƒą²·ą²æ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ą²°ą²¾ą²Æą²šą³‚ą²°ą³'),
(46406, 39410, 'no_lang_code', 'name', 'Tata Teleservices (India)'),
(46407, 39411, 'hi', 'name', 'Vidya Prathishthan'),
(46408, 39412, 'en', 'name', 'UPASI Tea Research Foundation'),
(46409, 39413, 'en', 'name', 'Urban Management Centre'),
(46410, 39414, 'no_lang_code', 'name', 'ZMQ Software Systems (India)'),
(46411, 39415, 'no_lang_code', 'name', 'Usha Martin (India)'),
(46412, 39416, 'en', 'name', 'Uttarakhand Jal Sansthan'),
(46413, 39417, 'en', 'name', 'Vijaya Medical and Educational Trust'),
(46414, 39418, 'no_lang_code', 'name', 'Cadila Healthcare (India)'),
(46415, 39419, 'no_lang_code', 'name', '21st Century Technologies (United States)'),
(46416, 39420, 'en', 'name', 'Vaatsalya Healthcare'),
(46417, 39421, 'no_lang_code', 'name', 'Tech Mahindra (India)'),
(46418, 39422, 'no_lang_code', 'name', 'Bharat Forge (India)'),
(46419, 39423, 'no_lang_code', 'name', 'British Biocell International (United Kingdom)'),
(46420, 39424, 'no_lang_code', 'name', 'AgriSense (United Kingdom)'),
(46421, 39425, 'no_lang_code', 'name', 'Air Quality Consultants (United Kingdom)'),
(46422, 39426, 'no_lang_code', 'name', '3DT Holdings (United States)'),
(46423, 39427, 'no_lang_code', 'name', '490 BioTech (United States)'),
(46424, 39428, 'no_lang_code', 'name', 'Benbria (Canada)'),
(46425, 39429, 'no_lang_code', 'name', 'Associated British Ports (United Kingdom)'),
(46426, 39430, 'no_lang_code', 'name', 'Allium & Brassica Centre (United Kingdom)'),
(46427, 39431, 'en', 'name', 'Calliope Film Resources'),
(46428, 39432, 'no_lang_code', 'name', 'Paion (United Kingdom)'),
(46429, 39433, 'no_lang_code', 'name', 'A-Team (United States)'),
(46430, 39434, 'en', 'name', 'Political Development Forum'),
(46431, 39435, 'no_lang_code', 'name', 'Advanced Acoustic Concepts (United States)'),
(46432, 39436, 'no_lang_code', 'name', 'Potentia (Namibia)'),
(46433, 39437, 'no_lang_code', 'name', 'Biospyder (United States)'),
(46434, 39438, 'no_lang_code', 'name', 'PNO Consultants (Italy)'),
(46435, 39439, 'no_lang_code', 'name', 'Base4 Innovation (United Kingdom)'),
(46436, 39440, 'no_lang_code', 'name', 'Claritas Genomics (United States)'),
(46437, 39441, 'no_lang_code', 'name', 'Active Ethernet Passive Optical Networks Over Ī» MultipleXing (Canada)'),
(46438, 39442, 'no_lang_code', 'name', 'Blackstar Amplification (United Kingdom)'),
(46439, 39443, 'no_lang_code', 'name', 'Cleanergy (Sweden)'),
(46440, 39444, 'no_lang_code', 'name', 'Climeon (Sweden)'),
(46441, 39445, 'de', 'name', 'Staats- und Stadtbibliothek Augsburg'),
(46442, 39446, 'fr', 'name', 'Programme National Multisectoriel de Lutte contre le sida'),
(46443, 39447, 'en', 'name', 'Commission on Professionals in Science and Technology'),
(46444, 39448, 'no_lang_code', 'name', 'Reliance (United Kingdom)'),
(46445, 39449, 'no_lang_code', 'name', 'For farmers (United Kingdom)'),
(46446, 39450, 'no_lang_code', 'name', 'Ebro Foods (Canada)'),
(46447, 39451, 'pt', 'name', 'Colsan - Associação Beneficente de Coleta de Sangue'),
(46448, 39452, 'no_lang_code', 'name', 'Computational Sciences (United States)'),
(46449, 39453, 'no_lang_code', 'name', 'Britest (United Kingdom)'),
(46450, 39454, 'no_lang_code', 'name', 'Defense Systems (United States)'),
(46451, 39455, 'no_lang_code', 'name', 'Delta Information Systems (United States)'),
(46452, 39456, 'no_lang_code', 'name', 'Deseret Laboratories (United States)'),
(46453, 39457, 'fr', 'name', 'Conseillers en gestion et informatique'),
(46454, 39457, 'no_lang_code', 'name', 'Consultant To Government and Industry (United Kingdom)'),
(46455, 39458, 'en', 'name', 'Consumers Union'),
(46456, 39459, 'de', 'name', 'Deutsche Keramische Gesellschaft'),
(46457, 39459, 'en', 'name', 'German Ceramic Society'),
(46458, 39460, 'no_lang_code', 'name', 'CorticoMetrics (United States)'),
(46459, 39461, 'en', 'name', 'Council on Foreign Relations'),
(46460, 39462, 'no_lang_code', 'name', 'Encapson (Netherlands)'),
(46461, 39463, 'no_lang_code', 'name', 'Grace Bio-Labs (United States)'),
(46462, 39464, 'en', 'name', 'Countryside and Community Research Institute'),
(46463, 39465, 'no_lang_code', 'name', 'Beijing Planetarium'),
(46464, 39465, 'zh', 'name', 'åŒ—äŗ¬å¤©ę–‡é¦†/åŒ—äŗ¬å¤©ę–‡é¤Ø'),
(46465, 39466, 'no_lang_code', 'name', 'Energy International (United States)'),
(46466, 39467, 'no_lang_code', 'name', 'Gmarketing (Pakistan)'),
(46467, 39468, 'no_lang_code', 'name', 'Craft Engineering Associates (United States)'),
(46468, 39469, 'en', 'name', 'Drew Associates'),
(46469, 39470, 'en', 'name', 'Duchy College'),
(46470, 39471, 'no_lang_code', 'name', 'Gencia (United States)'),
(46471, 39472, 'no_lang_code', 'name', 'Exeger Sweden (Sweden)'),
(46472, 39473, 'no_lang_code', 'name', 'Economics for the Environment Consultancy (United Kingdom)'),
(46473, 39474, 'no_lang_code', 'name', 'Helios Global (United States)'),
(46474, 39475, 'no_lang_code', 'name', 'Inova Design Solutions (United Kingdom)'),
(46475, 39476, 'es', 'name', 'Genetaq'),
(46476, 39477, 'no_lang_code', 'name', 'Genetech (Sri Lanka)'),
(46477, 39478, 'de', 'name', 'Institut für Integrative und Experimentelle Genomik'),
(46478, 39478, 'en', 'name', 'Institute for Integrative and Experimental Genomics'),
(46479, 39479, 'no_lang_code', 'name', 'InfoBeyond Technology (United States)'),
(46480, 39480, 'fr', 'name', 'Infor Jeunes Bruxelles'),
(46481, 39481, 'no_lang_code', 'name', 'Medlog Systems (United States)'),
(46482, 39482, 'fr', 'name', 'Institut pour Un Developpement Durable'),
(46483, 39483, 'no_lang_code', 'name', 'Karolinska Institutet Innovations (Sweden)'),
(46484, 39484, 'no_lang_code', 'name', 'Hybu Cig Cymru (United Kingdom)'),
(46485, 39485, 'no_lang_code', 'name', 'Kemetco Research (Canada)'),
(46486, 39486, 'pl', 'name', 'Instytut Badań Systemowych'),
(46487, 39486, 'en', 'name', 'Systems Research Institute'),
(46488, 39487, 'no_lang_code', 'name', 'Knexus Research (United States)'),
(46489, 39488, 'no_lang_code', 'name', 'Mitsubishi Corporation (Japan)'),
(46490, 39488, 'ja', 'name', 'äø‰č±å•†äŗ‹ę Ŗå¼ä¼šē¤¾'),
(46491, 39489, 'en', 'name', 'International Society for Gastrointestinal Hereditary Tumours'),
(46492, 39490, 'no_lang_code', 'name', 'China Nonferrous Metal Mining (China)'),
(46493, 39490, 'zh', 'name', 'äø­å›½ęœ‰č‰²ēŸæäøšé›†å›¢ęœ‰é™å…¬åø'),
(46494, 39491, 'en', 'name', 'International Space University'),
(46495, 39492, 'no_lang_code', 'name', 'Labthermics Technologies (United States)'),
(46496, 39493, 'no_lang_code', 'name', 'Alere (United Kingdom)'),
(46497, 39494, 'no_lang_code', 'name', 'Land Use Consultants (United Kingdom)'),
(46498, 39495, 'no_lang_code', 'name', 'Pacific Shipyards (United States)'),
(46499, 39496, 'no_lang_code', 'name', 'L&E Research (United States)'),
(46500, 39497, 'no_lang_code', 'name', 'Starmet Corporation (United States)'),
(46501, 39498, 'no_lang_code', 'name', 'Just Ecology (United Kingdom)'),
(46502, 39499, 'no_lang_code', 'name', 'FRAUDetect (United States)'),
(46503, 39500, 'no_lang_code', 'name', 'MTG Research (United Kingdom)'),
(46504, 39501, 'no_lang_code', 'name', 'Smiths Power (United States)'),
(46505, 39502, 'no_lang_code', 'name', 'Linguagen (United States)'),
(46506, 39503, 'en', 'name', 'Old Salem Museums and Gardens'),
(46507, 39504, 'no_lang_code', 'name', 'Munin Corporation (United States)'),
(46508, 39505, 'en', 'name', 'Institute of Porous Flow and Fluid Mechanics'),
(46509, 39505, 'zh', 'name', 'ęø—ęµęµä½“åŠ›å­¦ē ”ē©¶ę‰€'),
(46510, 39506, 'no_lang_code', 'name', 'Broadcom (Canada)'),
(46511, 39507, 'en', 'name', 'Open Rights Group'),
(46512, 39508, 'en', 'name', 'M. Tuttle & Associates'),
(46513, 39509, 'en', 'name', 'Sichuan Academy of Agricultural Sciences'),
(46514, 39509, 'zh', 'name', 'å››å·ēœå†œäøšē§‘å­¦é™¢ä½œē‰©ē ”ē©¶ę‰€'),
(46515, 39510, 'no_lang_code', 'name', 'Optigo Networks (Canada)'),
(46516, 39511, 'en', 'name', 'Plant Gene Expression Center'),
(46517, 39512, 'no_lang_code', 'name', 'Nickerson Ltd'),
(46518, 39513, 'no_lang_code', 'name', 'Silicon Chemical (United States)'),
(46519, 39514, 'no_lang_code', 'name', 'Mclean Media (United States)'),
(46520, 39515, 'en', 'name', 'RenewableUK'),
(46521, 39516, 'no_lang_code', 'name', 'Northernchem (Canada)'),
(46522, 39517, 'no_lang_code', 'name', 'Primity Bio (United States)'),
(46523, 39518, 'en', 'name', 'Research Complex at Harwell'),
(46524, 39519, 'en', 'name', 'Northumberland County Council'),
(46525, 39520, 'en', 'name', 'Parker Hughes Cancer Center'),
(46526, 39521, 'en', 'name', 'Aarupadai Veedu Medical College & Hospital'),
(46527, 39522, 'no_lang_code', 'name', 'Pathway Genomics (United States)'),
(46528, 39523, 'pt', 'name', 'Mendelics'),
(46529, 39524, 'en', 'name', 'Holland Chemistry'),
(46530, 39525, 'no_lang_code', 'name', 'Satellite Applications Catapult (United Kingdom)'),
(46531, 39526, 'no_lang_code', 'name', 'TERI'),
(46532, 39527, 'no_lang_code', 'name', 'SNPedia'),
(46533, 39528, 'sv', 'name', 'TransportForsK'),
(46534, 39529, 'en', 'name', 'Institute of Seismological Research'),
(46535, 39530, 'no_lang_code', 'name', 'Syngaschem (Netherlands)'),
(46536, 39531, 'en', 'name', 'Bank of England'),
(46537, 39532, 'no_lang_code', 'name', 'Synthomer (United Kingdom)'),
(46538, 39533, 'en', 'name', 'Scintillon Institute'),
(46539, 39534, 'en', 'name', 'The Independent Games Developers Association'),
(46540, 39535, 'no_lang_code', 'name', 'Albany International (United States)'),
(46541, 39536, 'no_lang_code', 'name', 'Sekab (Sweden)'),
(46542, 39536, 'sv', 'name', 'Svensk Etanolkemi'),
(46543, 39537, 'sv', 'name', 'VƤxjƶ Kommun'),
(46544, 39537, 'en', 'name', 'VƤxjƶ Municipality'),
(46545, 39538, 'no_lang_code', 'name', 'SENSEYE LIMITED'),
(46546, 39539, 'no_lang_code', 'name', 'Video Discovery (United States)'),
(46547, 39540, 'en', 'name', 'Scientific Council for Government Policy'),
(46548, 39540, 'nl', 'name', 'Wetenschappelijke Raad voor het Regeringsbeleid'),
(46549, 39541, 'no_lang_code', 'name', 'WITF (United States)'),
(46550, 39542, 'de', 'name', 'Bibliotheca Augustiniana'),
(46551, 39543, 'no_lang_code', 'name', 'Zaber Technologies (Canada)'),
(46552, 39544, 'en', 'name', 'Standing Rock Indian Reservation'),
(46553, 39545, 'en', 'name', 'Shyam Shah Medical College'),
(46554, 39546, 'no_lang_code', 'name', 'Shell (India)'),
(46555, 39547, 'en', 'name', 'Sree Gokulam Medical College and Research Foundation'),
(46556, 39548, 'en', 'name', 'Institute of World History'),
(46557, 39548, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ всеобщей истории'),
(46558, 39549, 'en', 'name', 'Frumkin Institute of Physical Chemistry and Electrochemistry'),
(46559, 39549, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической химии Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŠø им. А. Š. Š¤Ń€ŃƒŠ¼ŠŗŠøŠ½Š° Российской акаГемии наук'),
(46560, 39550, 'en', 'name', 'Institute of High Current Electronics'),
(46561, 39550, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠøŠ»ŃŒŠ½Š¾Ń‚Š¾Ń‡Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(46562, 39551, 'en', 'name', 'V.S. Sobolev Institute of Geology and Mineralogy'),
(46563, 39551, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø минералогии им. Š’.Š”.Доболева Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук (Š˜Š“Šœ Š”Šž Š ŠŠ)'),
(46564, 39552, 'en', 'name', 'Institute of Sociology'),
(46565, 39552, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ социологии Š ŠŠ'),
(46566, 39553, 'en', 'name', 'Timiryazev Institute of Plant Physiology'),
(46567, 39553, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии растений К.А. Š¢ŠøŠ¼ŠøŃ€ŃŠ·ŠµŠ²Š°'),
(46568, 39554, 'en', 'name', 'G.A. Razuvaev Institute of Organometallic Chemistry'),
(46569, 39554, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металлоорганической химии имени Š“. А. Разуваева'),
(46570, 39555, 'de', 'name', 'Rheinisches Institut für Umweltforschung'),
(46571, 39555, 'en', 'name', 'Rhenish Institute for Environmental Research'),
(46572, 39556, 'pt', 'name', 'Hospital da Senhora da Oliveira Guimarães'),
(46573, 39557, 'de', 'name', 'Knappschaftskrankenhaus Recklinghausen'),
(46574, 39558, 'de', 'name', 'Landesarchiv'),
(46575, 39559, 'en', 'name', 'CU Shah Medical College and Hospital'),
(46576, 39560, 'en', 'name', 'Institute of Numerical Mathematics'),
(46577, 39560, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ математики Российской акаГемии наук'),
(46578, 39561, 'en', 'name', 'Institute of Geology of Ore Deposits Petrography Mineralogy and Geochemistry'),
(46579, 39561, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Ń€ŃƒŠ“Š½Ń‹Ń… месторожГений петрографии минералогии Šø геохимии Российской акаГемии наук'),
(46580, 39562, 'en', 'name', 'Institute of Synthetic Polymeric Materials'),
(46581, 39562, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ синтетических полимерных материалов им.Š.Š”.Ениколопова Российской акаГемии наук'),
(46582, 39563, 'en', 'name', 'Institute of Psychology'),
(46583, 39563, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологии'),
(46584, 39564, 'en', 'name', 'Institute of Physics'),
(46585, 39564, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики им. Š›. Š’. ŠšŠøŃ€ŠµŠ½ŃŠŗŠ¾Š³Š¾'),
(46586, 39565, 'en', 'name', 'Institute of Molecular and Cell Biology'),
(46587, 39565, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ Šø клеточной биологии'),
(46588, 39566, 'en', 'name', 'Central Economics and Mathematics Institute'),
(46589, 39566, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-математический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(46590, 39567, 'en', 'name', 'Institute of Continuous Media Mechanics'),
(46591, 39567, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики ŃŠæŠ»Š¾ŃˆŠ½Ń‹Ń… среГ'),
(46592, 39568, 'en', 'name', 'Institute of Linguistic Studies'),
(46593, 39568, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лингвистических исслеГований'),
(46594, 39569, 'en', 'name', 'Geophysical Center'),
(46595, 39569, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Геофизический центр Российской акаГемии наук'),
(46596, 39570, 'en', 'name', 'Institute of Petroleum Geology and Geophysics'),
(46597, 39570, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефтегазовой геологии Šø геофизики имени А. А. Š¢Ń€Š¾Ń„ŠøŠ¼ŃƒŠŗŠ° Š”Šž Š ŠŠ'),
(46598, 39571, 'en', 'name', 'Research Institute of Medical Genetics of Russian Academy of Medical Sciences'),
(46599, 39571, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинской генетики'),
(46600, 39572, 'en', 'name', 'Institute of Experimental Medicine'),
(46601, 39572, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины'),
(46602, 39573, 'en', 'name', 'Kazan E. K. Zavoisky Physical-Technical Institute'),
(46603, 39573, 'ru', 'name', 'Казанский физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š•. К. Завойского Š ŠŠ'),
(46604, 39574, 'en', 'name', 'Photochemistry Center'),
(46605, 39574, 'ru', 'name', 'Центр фотохимии'),
(46606, 39575, 'en', 'name', 'Federal Scientific Center of the East Asia Terrestrial Biodiversity FEB RAS'),
(46607, 39575, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Биолого-почвенный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(46608, 39576, 'en', 'name', 'Institute of Machines Science'),
(46609, 39576, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ имени А. А. Благонравова Š ŠŠ'),
(46610, 39577, 'en', 'name', 'Sukachev Institute of Forest'),
(46611, 39577, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° леса им. Š’. Š. Š”ŃƒŠŗŠ°Ń‡ŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(46612, 39578, 'en', 'name', 'Institute of History and Archaeology'),
(46613, 39578, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории Šø археологии Š£Ń€Šž Š ŠŠ'),
(46614, 39579, 'en', 'name', 'Institute of Complex Development of Bowels'),
(46615, 39579, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем комплексного Š¾ŃŠ²Š¾ŠµŠ½ŠøŃ неГр Š ŠŠ'),
(46616, 39580, 'en', 'name', 'Institute of Spectroscopy'),
(46617, 39580, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ спектроскопии Российской акаГемии наук'),
(46618, 39581, 'en', 'name', 'Institute of Catalysis and Petrochemistry'),
(46619, 39581, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ катализа Šø нефтехимии'),
(46620, 39582, 'en', 'name', 'Institute of Mathematics with Computer Center'),
(46621, 39582, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики с Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¼ центром Š£ŠŠ¦ Š ŠŠ'),
(46622, 39583, 'en', 'name', 'Southern Scientific Center'),
(46623, 39583, 'ru', 'name', 'Южный Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(46624, 39584, 'en', 'name', 'Institute of Solution Chemistry'),
(46625, 39584, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии растворов им. Š“.А. ŠšŃ€ŠµŃŃ‚Š¾Š²Š° Российской акаГемии наук'),
(46626, 39585, 'en', 'name', 'Institute for System Dynamics and Control Theory'),
(46627, 39585, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гинамики систем Šø теории ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ имени Š’.М. ŠœŠ°Ń‚Ń€Š¾ŃŠ¾Š²Š°'),
(46628, 39586, 'en', 'name', 'Dmitry Rogachev National Research Center of Pediatric Hematology, Oncology and Immunology'),
(46629, 39586, 'ru', 'name', 'Š”Š•Š¢Š”ŠšŠžŠ™ Š“Š•ŠœŠŠ¢ŠžŠ›ŠžŠ“Š˜Š˜, ŠžŠŠšŠžŠ›ŠžŠ“Š˜Š˜ И Š˜ŠœŠœŠ£ŠŠžŠ›ŠžŠ“Š˜Š˜ им. Š”Š¼ŠøŃ‚Ń€ŠøŃ Рогачева'),
(46630, 39587, 'en', 'name', 'Institute of Biochemistry and Physiology of Plants and Microorganisms'),
(46631, 39587, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø физиологии растений Šø микроорганизмов Российской акаГемии наук'),
(46632, 39588, 'en', 'name', 'Chumakov Institute of Poliomyelitis and Viral Encephalitides'),
(46633, 39588, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ полиомиелита Šø Š²ŠøŃ€ŃƒŃŠ½Ń‹Ń… ŃŠ½Ń†ŠµŃ„Š°Š»ŠøŃ‚Š¾Š²'),
(46634, 39589, 'en', 'name', 'Institute of Astronomy'),
(46635, 39589, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ астрономии Š ŠŠ'),
(46636, 39590, 'en', 'name', 'Institute of Chemistry of High-Purity Substances them. G.G.Devyatyh'),
(46637, 39590, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии высокочистых веществ им'),
(46638, 39591, 'en', 'name', 'Institute of Anthropology and Ethnography'),
(46639, 39591, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠžŃ€Š“ена Š”Ń€ŃƒŠ¶Š±Ń‹ нароГов Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ‚Š½Š¾Š»Š¾Š³ŠøŠø Šø антропологии им. Š.Š. ŠœŠøŠŗŠ»ŃƒŃ…Š¾-ŠœŠ°ŠŗŠ»Š°Ń Российской акаГемии наук'),
(46640, 39592, 'en', 'name', 'Institute of Molecular Biology and Biophysics'),
(46641, 39592, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ биологии Šø биофизики'),
(46642, 39593, 'en', 'name', 'Institute of Physiologically Active Compounds'),
(46643, 39593, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологически активных веществ'),
(46644, 39594, 'en', 'name', 'A.E. Favorsky Irkutsk Institute of Chemistry'),
(46645, 39594, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии им. А.Š•.Фаворского Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(46646, 39595, 'en', 'name', 'Institute of the Earth’s Crust'),
(46647, 39595, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ земной коры Š”Šž Š ŠŠ'),
(46648, 39596, 'en', 'name', 'Institute of Macromolecular Compounds'),
(46649, 39596, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Ń‹Ń… соеГинений Российской акаГемии наук'),
(46650, 39597, 'en', 'name', 'Institute of Electrophysics'),
(46651, 39597, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŠŗŠø'),
(46652, 39598, 'en', 'name', 'Ufa Institute of Chemistry'),
(46653, 39598, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Уфимский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Российской акаГемии наук'),
(46654, 39599, 'en', 'name', 'Research Institute of Therapy and Preventive Medicine'),
(46655, 39599, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ терапии Šø профилактической меГицины'),
(46656, 39600, 'en', 'name', 'Institute of Philosophy'),
(46657, 39600, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ философии'),
(46658, 39601, 'en', 'name', 'Institute of Chemistry and Chemical Technology'),
(46659, 39601, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Šø химической технологии'),
(46660, 39602, 'en', 'name', 'Institute of Computational Mathematics and Mathematical Geophysics'),
(46661, 39602, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ математики Šø математической геофизики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(46662, 39603, 'en', 'name', 'Institute of Systematics and Ecology of Animals'),
(46663, 39603, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систематики Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø животных Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(46664, 39604, 'en', 'name', 'Institute of Geosphere Dynamics'),
(46665, 39604, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гинамики геосфер Российской акаГемии наук'),
(46666, 39605, 'en', 'name', 'Sergeev Institute of Environmental Geoscience'),
(46667, 39605, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŠµŠ¾ŃŠŗŠ¾Š»Š¾Š³ŠøŠø им.Š•.М.Дергеева Российской акаГемии наук'),
(46668, 39606, 'en', 'name', 'Institute of History, Archaeology and Ethnography of the Peoples of Far-East'),
(46669, 39606, 'ru', 'name', 'ВлаГивостоке Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° истории, археологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø нароГов Š”Š°Š»ŃŒŠ½ŠµŠ³Š¾ Востока'),
(46670, 39607, 'en', 'name', 'Institute for Computer Aided Design'),
(46671, 39607, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматизации ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃ Российской акаГемии наук'),
(46672, 39608, 'en', 'name', 'Institute of Mining'),
(46673, 39608, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного Гела Š”Šž Š ŠŠ'),
(46674, 39609, 'en', 'name', 'Institute of Socio-Economic Development of Territories'),
(46675, 39609, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ территорий Российской акаГемии наук'),
(46676, 39610, 'en', 'name', 'Mining Institute'),
(46677, 39610, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного'),
(46678, 39611, 'en', 'name', 'Institute of Metallurgy'),
(46679, 39611, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Š£Ń€Šž Š ŠŠ'),
(46680, 39612, 'en', 'name', 'Moscow School of Social and Economic Sciences'),
(46681, 39612, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š²Ń‹ŃŃˆŠ°Ń школа ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŃ… наук'),
(46682, 39613, 'ru', 'name', 'G Š‘ŠµŠ»ŃŠŗŠ¾Š² Тихоокеанский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биоорганической химии'),
(46683, 39613, 'en', 'name', 'Pacific Institute of Bioorganic Chemistry. GB Elyakova Far Eastern Branch of the Russian Academy of Sciences'),
(46684, 39614, 'en', 'name', 'Institute of the Human Brain'),
(46685, 39614, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мозга человека Š ŠŠ'),
(46686, 39615, 'en', 'name', 'Institute of Applied Mathematics'),
(46687, 39615, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной математики Š”Š’Šž Š ŠŠ'),
(46688, 39616, 'en', 'name', 'Gorbatov''s All-Russian Meat Research Institute'),
(46689, 39616, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŃŃŠ½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø им. Š’.М. Горбатова'),
(46690, 39617, 'en', 'name', 'Institute of Clinical and Experimental Lymphology'),
(46691, 39617, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ клинической Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ лимфологии'),
(46692, 39618, 'en', 'name', 'Institute of Mongolian Buddhist and Tibetan Studies'),
(46693, 39618, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š½Š³Š¾Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ, буГГологии Šø тибетологии Š”Šž Š ŠŠ'),
(46694, 39619, 'en', 'name', 'Institute of Steppe'),
(46695, 39619, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ степи Š£Ń€Šž Š ŠŠ'),
(46696, 39620, 'en', 'name', 'Institute of Engineering Science'),
(46697, 39620, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(46698, 39621, 'en', 'name', 'Institute of Economics'),
(46699, 39621, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Š£Ń€Šž Š ŠŠ'),
(46700, 39622, 'en', 'name', 'National Research Institute for Veterinary Virology and Microbiology of Russia'),
(46701, 39622, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ ветеринарной Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(46702, 39623, 'en', 'name', 'Institute of Geophysics'),
(46703, 39623, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геофизики'),
(46704, 39624, 'en', 'name', 'Institute of Archaeology and Ethnography'),
(46705, 39624, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° археологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø Š”Šž Š ŠŠ'),
(46706, 39625, 'en', 'name', 'Institute of Precambrian Geology and Geochronology'),
(46707, 39625, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø геохронологии Š“Š¾ŠŗŠµŠ¼Š±Ń€ŠøŃ'),
(46708, 39626, 'en', 'name', 'All-Russian Scientific Research Institute of Radiology and AgroEcology'),
(46709, 39626, 'ru', 'name', 'All-Ń€ŃƒŃŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиологии Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(46710, 39627, 'en', 'name', 'Archive of the Russian Academy of Sciences'),
(46711, 39627, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ филиал Архива Š ŠŠ'),
(46712, 39628, 'en', 'name', 'Institute of Russian Literature'),
(46713, 39628, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŃƒŃŃŠŗŠ¾Š¹ Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹'),
(46714, 39629, 'en', 'name', 'Physico-Technical Institute'),
(46715, 39629, 'ru', 'name', 'Физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской АкаГемии наук'),
(46716, 39630, 'no_lang_code', 'name', 'DYNAMICS Scientific and Production Center (Russia)'),
(46717, 39630, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный центр Динамика'),
(46718, 39631, 'en', 'name', 'Pacific Institute of Geography, Far Eastern Branch of the Russian Academy of Sciences'),
(46719, 39631, 'ru', 'name', 'Тихоокеанский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географи'),
(46720, 39632, 'en', 'name', 'Institute of Slavic Studies'),
(46721, 39632, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»Š°Š²ŃŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(46722, 39633, 'en', 'name', 'Research Institute of Pharmacology and Regenerative Medicine named ED Goldberg'),
(46723, 39633, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фармакологии Šø регенеративной меГицины имени Š•.Š”. Š“Š¾Š»ŃŒŠ“Š±ŠµŃ€Š³Š°'),
(46724, 39634, 'no_lang_code', 'name', 'Economic Expert Group (Russia)'),
(46725, 39634, 'ru', 'name', 'Š­ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń ŃŠŗŃŠæŠµŃ€Ń‚Š½Š°Ń Š³Ń€ŃƒŠæŠæŠ°'),
(46726, 39635, 'en', 'name', 'Peter the Great''s Museum of Anthropology and Ethnography'),
(46727, 39635, 'ru', 'name', 'ŠŸŠµŃ‚Ń€Š° Великого Музей антропологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø'),
(46728, 39636, 'en', 'name', 'Center for Theoretical Problems of Physicochemical Pharmacology'),
(46729, 39636, 'ru', 'name', 'Центр теоретических проблем физико-химической фармакологии Š ŠŠ'),
(46730, 39637, 'en', 'name', 'Knipovich Polar Research Institute of Marine Fisheries and Oceanography'),
(46731, 39637, 'ru', 'name', 'ŠšŠ½ŠøŠæŠ¾Š²ŠøŃ‡ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠ¾Š»ŃŃ€Š½Ń‹Ń… исслеГований морского рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø океанографии'),
(46732, 39638, 'en', 'name', 'Institute of Physical Materials Science'),
(46733, 39638, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š˜Š—Š˜Š§Š•Š”ŠšŠžŠ“Šž ŠœŠŠ¢Š•Š Š˜ŠŠ›ŠžŠ’Š•Š”Š•ŠŠ˜ŠÆ'),
(46734, 39639, 'en', 'name', 'Institute of Metal Superplasticity Problems'),
(46735, 39639, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем сверхпластичности металлов Š ŠŠ'),
(46736, 39640, 'no_lang_code', 'name', 'Scientific Center of RAS in Chernogolovka'),
(46737, 39640, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук в Черноголовке'),
(46738, 39641, 'en', 'name', 'Institute of History'),
(46739, 39641, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории Š”Šž Š ŠŠ'),
(46740, 39642, 'en', 'name', 'Fiber Optics Research Center'),
(46741, 39642, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр волоконной оптики Российской акаГемии наук'),
(46742, 39643, 'en', 'name', 'Institute of Mining'),
(46743, 39643, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(46744, 39644, 'en', 'name', 'Institute for African Studies'),
(46745, 39644, 'ru', 'name', 'науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Африки Российской акаГемии наук'),
(46746, 39645, 'en', 'name', 'Institute of Experimental Mineralogy'),
(46747, 39645, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ минералогии'),
(46748, 39646, 'en', 'name', 'Forestry Research Institute of Karelian Research Centre'),
(46749, 39646, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ леса ŠšŠ°Ń€ŠŠ¦'),
(46750, 39647, 'en', 'name', 'Nuclear Safety Institute'),
(46751, 39647, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ безопасности'),
(46752, 39648, 'en', 'name', 'V.I.Shumakov Federal Research Center of Transplantology and Artificial Organs'),
(46753, 39648, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр трансплантологии Šø ŠøŃŠŗŃƒŃŃŃ‚Š²ŠµŠ½Š½Ń‹Ń… органов имени акаГемика Š’.И. Шумакова'),
(46754, 39649, 'en', 'name', 'Russian Research Institute for Phytopathology'),
(46755, 39649, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фитопатологии России'),
(46756, 39650, 'en', 'name', 'Institute of Developmental Physiology'),
(46757, 39650, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ возрастной физиологии'),
(46758, 39651, 'no_lang_code', 'name', '3D Bioprinting Solutions (Russia)'),
(46759, 39651, 'ru', 'name', '3Š” Биопринтинг Š”Š¾Š»ŃŽŃˆŠµŠ½Ń'),
(46760, 39652, 'en', 'name', 'Institute of Tectonics and Geophysics named after Y.A. Kosygin'),
(46761, 39652, 'ru', 'name', 'Š”Š’Šž Š ŠŠ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Тектоники Šø Геофизики им. Š®.А.ŠšŠ¾ŃŃ‹Š³ŠøŠ½Š°'),
(46762, 39653, 'en', 'name', 'Melentiev Energy Systems Institute'),
(46763, 39653, 'ru', 'name', 'ŠœŠµŠ»ŠµŠ½Ń‚ŃŒŠµŠ² Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систем ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠø'),
(46764, 39654, 'en', 'name', 'Institute of Applied Astronomy'),
(46765, 39654, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной астрономии'),
(46766, 39655, 'no_lang_code', 'name', 'Imtek (Russia)'),
(46767, 39655, 'ru', 'name', 'Š˜Š¼Ń‚ŠµŠŗ'),
(46768, 39656, 'en', 'name', 'Russian Railways'),
(46769, 39656, 'ru', 'name', 'Российские железные Гороги'),
(46770, 39657, 'en', 'name', 'Institute of Coal of the Siberian Branch of the RAS'),
(46771, 39657, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠ³Š»Ń Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(46772, 39658, 'en', 'name', 'Baikal Institute of Nature Management'),
(46773, 39658, 'ru', 'name', 'ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(46774, 39659, 'en', 'name', 'Scientific Research Institute of Experimental and Clinical Medicine'),
(46775, 39659, 'ru', 'name', 'Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠžŠ• Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠžŠ• Š‘Š®Š”Š–Š•Š¢ŠŠžŠ• ŠŠŠ£Š§ŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š­ŠšŠ”ŠŸŠ•Š Š˜ŠœŠ•ŠŠ¢ŠŠ›Š¬ŠŠžŠ™ И ŠšŠ›Š˜ŠŠ˜Š§Š•Š”ŠšŠžŠ™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ«'),
(46776, 39660, 'no_lang_code', 'name', 'Giredmet (Russia)'),
(46777, 39660, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ реГких Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(46778, 39661, 'en', 'name', 'Institute of Economics and Industrial Engineering'),
(46779, 39661, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø организации ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š³Š¾ произвоГства Š”Šž Š ŠŠ'),
(46780, 39662, 'en', 'name', 'Diamond and Precious Metal Geology Institute'),
(46781, 39662, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии алмаза Šø благороГных металлов Š”Šž Š ŠŠ'),
(46782, 39663, 'en', 'name', 'Central Siberian Botanical Garden'),
(46783, 39663, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ сибирский ботанический саГ'),
(46784, 39664, 'en', 'name', 'Institute of Agrarian Problems'),
(46785, 39664, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрных проблем'),
(46786, 39665, 'en', 'name', 'Centre for Forest Ecology and Productivity'),
(46787, 39665, 'ru', 'name', 'Центр по проблемам ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø ŠæŃ€Š¾Š“ŃƒŠŗŃ‚ŠøŠ²Š½Š¾ŃŃ‚Šø лесов Š ŠŠ'),
(46788, 39666, 'en', 'name', 'All-Russian Scientific Research Institute of Records Management and Archival'),
(46789, 39666, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Šø архивного Гела'),
(46790, 39667, 'en', 'name', 'Geophysical Survey'),
(46791, 39667, 'ru', 'name', 'Š“ŠµŠ¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń служба Российской АкаГемии ŠŠ°ŃƒŠŗ'),
(46792, 39668, 'en', 'name', 'Research Institute of Emergency Care'),
(46793, 39668, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ скорой помощи им. Š.Š’. Дклифосовского'),
(46794, 39669, 'no_lang_code', 'name', 'Krasnoyarsk Scientific Center'),
(46795, 39669, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(46796, 39670, 'en', 'name', 'Institute of Cosmophysical Research and Radio Wave Propagation'),
(46797, 39670, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космофизических исслеГований Šø Ń€Š°ŃŠæŃ€Š¾ŃŃ‚Ń€Š°Š½ŠµŠ½ŠøŃ раГиоволн'),
(46798, 39671, 'en', 'name', 'Institute of Petroleum Chemistry'),
(46799, 39671, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Єимии ŠŠµŃ„ти До Š ŠŠ'),
(46800, 39672, 'en', 'name', 'All-Russian Research Institute Fisheries and Oceanography'),
(46801, 39672, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° России Šø океанографии'),
(46802, 39673, 'en', 'name', 'Institute of Mineralogy'),
(46803, 39673, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ минералогии'),
(46804, 39674, 'en', 'name', 'Udmurt Institute of History, Language and Literature'),
(46805, 39674, 'ru', 'name', 'Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории, ŃŠ·Ń‹ŠŗŠ° Šø Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ Š£Ń€Šž Š ŠŠ'),
(46806, 39675, 'en', 'name', 'Institute of Oriental Manuscripts'),
(46807, 39675, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ восточных Ń€ŃƒŠŗŠ¾ŠæŠøŃŠµŠ¹ Российской акаГемии наук'),
(46808, 39676, 'no_lang_code', 'name', 'Research Center for Surface and Vacuum (Russia)'),
(46809, 39676, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр по ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃŽ свойств поверхности Šø вакуума'),
(46810, 39677, 'en', 'name', 'Institute of Archaeology'),
(46811, 39677, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ археологии Российской акаГемии наук'),
(46812, 39678, 'en', 'name', 'Saint-Petersburg Institute of History'),
(46813, 39678, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории'),
(46814, 39679, 'no_lang_code', 'name', 'SertiNK'),
(46815, 39679, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ автономное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŃƒŃ‡ŠµŠ±Š½Ń‹Š¹ центр Дварка Šø ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŒ при ŠœŠ“ТУ им. Š.Š­. Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(46816, 39680, 'en', 'name', 'All-Russian Scientific Research Institute of Food Biotechnology'),
(46817, 39680, 'ru', 'name', 'Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ˜Š©Š•Š’ŠžŠ™ Š‘Š˜ŠžŠ¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š˜'),
(46818, 39681, 'en', 'name', 'Oil and Gas Research Institute'),
(46819, 39681, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем нефти Šø газа Российской акаГемии наук'),
(46820, 39682, 'en', 'name', 'GƁLDU Resource Centre for the Rights of Indigenous Peoples'),
(46821, 39682, 'no', 'name', 'GƔldu-et Kompetansesenter for Urfolks Rettigheter'),
(46822, 39683, 'en', 'name', 'Institute for Educational Development and Training'),
(46823, 39683, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø ŠæŠ¾Š²Ń‹ŃˆŠµŠ½ŠøŃ квалификации'),
(46824, 39684, 'en', 'name', 'Kalmyk Institute for Humanities Research'),
(46825, 39684, 'ru', 'name', 'ŠšŠ°Š»Š¼Ń‹Ń†ŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… исслеГований'),
(46826, 39685, 'en', 'name', 'Research Institute of National Schools of the Republic of Sakha'),
(46827, 39685, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… школ Республики Даха'),
(46828, 39686, 'en', 'name', 'Institute of the North'),
(46829, 39687, 'en', 'name', 'International Centre for Reindeer Husbandry'),
(46830, 39688, 'en', 'name', 'Stefansson Arctic Institute'),
(46831, 39688, 'is', 'name', 'Stofnun VilhjƔlms StefƔnssonar'),
(46832, 39689, 'en', 'name', 'Institute of Hydrocarbon Processing'),
(46833, 39689, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем переработки ŃƒŠ³Š»ŠµŠ²Š¾Š“Š¾Ń€Š¾Š“Š¾Š²'),
(46834, 39690, 'de', 'name', 'BTK - Hochschule für Kunst & Design'),
(46835, 39690, 'en', 'name', 'BTK University of Arts & Design'),
(46836, 39691, 'en', 'name', 'V.A. Negovsky Scientific Research Institute of General Reanimatology'),
(46837, 39691, 'ru', 'name', 'ŠŠ˜Š˜ общей реаниматологии Š ŠŠœŠ'),
(46838, 39692, 'fi', 'name', 'Saamelaisalueen Koulutuskeskus'),
(46839, 39692, 'en', 'name', 'SƔmi Education Institute'),
(46840, 39693, 'sv', 'name', 'Samernas Utbildningscentrum'),
(46841, 39693, 'en', 'name', 'SƔmi Educational Centre'),
(46842, 39694, 'en', 'name', 'Makivik Corporation'),
(46843, 39694, 'iu', 'name', 'Makivvik Kuapuriisat'),
(46844, 39694, 'fr', 'name', 'SociƩtƩ Makivik'),
(46845, 39695, 'no_lang_code', 'name', 'Mekhanobr Appliances (Russia)'),
(46846, 39695, 'ru', 'name', 'ŠœŠµŃ…Š°Š½Š¾Š±Ń€-техника'),
(46847, 39696, 'no_lang_code', 'name', 'Taimyr College'),
(46848, 39696, 'ru', 'name', 'Таймырский коллеГж'),
(46849, 39697, 'en', 'name', 'Latin American Institute'),
(46850, 39697, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Латинской Америки'),
(46851, 39698, 'en', 'name', 'Naryan-Mar Social and Humanitarian College'),
(46852, 39698, 'ru', 'name', 'ŠŠ°Ń€ŃŒŃŠ½-ŠœŠ°Ń€ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ коллеГж имени И.П. Š’Ń‹ŃƒŃ‡ŠµŠ¹ŃŠŗŠ¾Š³Š¾'),
(46853, 39699, 'en', 'name', 'Hydrometeorological Research Centre of Russian Federation'),
(46854, 39699, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ГиГрометеорологический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Российской ФеГерации'),
(46855, 39700, 'en', 'name', 'Nenets Agro-Economic College'),
(46856, 39701, 'fr', 'name', 'Wilp Wilxo’oskwhl Nisga’a Institute'),
(46857, 39702, 'en', 'name', 'Institute of Applied Mechanics'),
(46858, 39702, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной механики'),
(46859, 39703, 'en', 'name', 'Arctic College of the Peoples of the North'),
(46860, 39703, 'ru', 'name', 'ŠŠ ŠšŠ¢Š˜Š§Š•Š”ŠšŠ˜Š™ ŠšŠžŠ›Š›Š•Š”Š– ŠŠŠ ŠžŠ”ŠžŠ’ ДЕВЕРА'),
(46861, 39704, 'en', 'name', 'Yamal Multidisciplinary College'),
(46862, 39704, 'ru', 'name', 'ŠÆŠœŠŠ›Š¬Š”ŠšŠ˜Š™ ŠœŠŠžŠ“ŠžŠŸŠ ŠžŠ¤Š˜Š›Š¬ŠŠ«Š™ ŠšŠžŠ›Š›Š•Š”Š–'),
(46863, 39705, 'en', 'name', 'Yamal Polar Agro-Economic College'),
(46864, 39705, 'ru', 'name', 'Ямальский ŠæŠ¾Š»ŃŃ€Š½Ń‹Š¹ Š°Š³Ń€Š¾ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ Ń‚ŠµŃ…Š½ŠøŠŗŃƒŠ¼'),
(46865, 39706, 'en', 'name', 'Circumpolar Agricultural Association'),
(46866, 39707, 'en', 'name', 'Northern National College'),
(46867, 39707, 'ru', 'name', 'Деверный ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ коллеГж'),
(46868, 39708, 'no_lang_code', 'name', 'Arctic Portal'),
(46869, 39709, 'en', 'name', 'International Polar Foundation'),
(46870, 39710, 'fr', 'name', 'Association des Ɖtudes canadiennes aux Ɖtats-Unis'),
(46871, 39710, 'en', 'name', 'Association for Canadian Studies in the United States'),
(46872, 39711, 'en', 'name', 'Council of Yukon First Nations'),
(46873, 39712, 'en', 'name', 'Northern Teacher Education Program'),
(46874, 39713, 'en', 'name', 'Austrian Polar Research Institute'),
(46875, 39714, 'en', 'name', 'Northlands College'),
(46876, 39715, 'en', 'name', 'Greenland Government'),
(46877, 39716, 'no', 'name', 'Norges Vitenskapsakademi for Polarforskning'),
(46878, 39716, 'en', 'name', 'Norwegian Scientific Academy for Polar Research'),
(46879, 39717, 'en', 'name', 'Center for Circumpolar Studies'),
(46880, 39718, 'iu', 'name', 'Nunavut Sivuniksavut'),
(46881, 39719, 'en', 'name', 'National Research Institute of Public Health named after N.A. Semashko'),
(46882, 39719, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общественного Š·Š“Š¾Ń€Š¾Š²ŃŒŃ имени Š.А. Демашко'),
(46883, 39720, 'en', 'name', 'Institute for Humanities Research and Indigenous Studies of the North'),
(46884, 39720, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… исслеГований Šø коренных нароГов Девера'),
(46885, 39721, 'en', 'name', 'Center for Support of Indigenous Peoples of the North'),
(46886, 39722, 'en', 'name', 'Cold Climate Housing Research Center'),
(46887, 39723, 'en', 'name', 'Institute of Volcanology and Seismology'),
(46888, 39723, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вулканологии Šø сейсмологии'),
(46889, 39724, 'en', 'name', 'Gwich''in Council International'),
(46890, 39725, 'en', 'name', 'Ministry of Education and Youth Policy of the Republic of Komi'),
(46891, 39725, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Республики Коми'),
(46892, 39726, 'en', 'name', 'Icelandic Tourism Research Centre'),
(46893, 39726, 'is', 'name', 'Rannsóknamiðstöð FerðamÔla'),
(46894, 39727, 'en', 'name', 'International Institute for Sustainable Development'),
(46895, 39728, 'en', 'name', 'Russian Association of Indigenous Peoples of the North'),
(46896, 39728, 'ru', 'name', 'ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ коренных, малочисленных нароГов Девера, Дибири Šø Š”Š°Š»ŃŒŠ½ŠµŠ³Š¾ Востока Российской ФеГерации'),
(46897, 39729, 'en', 'name', 'Uummannaq Polar Institute'),
(46898, 39730, 'en', 'name', 'Ministry of Natural Resources and Environmental Protection of the Komi Republic'),
(46899, 39730, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ ŠŸŃ€ŠøŃ€Š¾Š“Š½Ń‹Ń… Š ŠµŃŃƒŃ€ŃŠ¾Š² И ŠžŃ…Ń€Š°Š½Ń‹ ŠžŠŗŃ€ŃƒŠ¶Š°ŃŽŃ‰ŠµŠ¹ ДреГы Республики Коми'),
(46900, 39731, 'en', 'name', 'Council of State'),
(46901, 39731, 'fi', 'name', 'Valtioneuvosto'),
(46902, 39731, 'sv', 'name', 'statsrƄdet'),
(46903, 39732, 'en', 'name', 'Nordland Research Institute'),
(46904, 39732, 'no', 'name', 'Nordlandsforskning'),
(46905, 39733, 'en', 'name', 'Yukon Agricultural Association'),
(46906, 39734, 'no_lang_code', 'name', 'Meridian (Russia)'),
(46907, 39734, 'ru', 'name', 'ŠœŠµŃ€ŠøŠ“ŠøŠ°Š½'),
(46908, 39735, 'en', 'name', 'State Duma'),
(46909, 39735, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Гу́ма'),
(46910, 39736, 'en', 'name', 'Saami Council'),
(46911, 39737, 'en', 'name', 'Murmansk Academy of Economics and Management'),
(46912, 39737, 'ru', 'name', 'ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(46913, 39738, 'en', 'name', 'Legislative Assembly of Saskatchewan'),
(46914, 39739, 'no_lang_code', 'name', 'Zabaykalsky National Park');
INSERT INTO `ror_settings` VALUES
(46915, 39739, 'ru', 'name', 'Š—Š°Š±Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк'),
(46916, 39740, 'en', 'name', 'National Museum of the Finnish SƔmi'),
(46917, 39741, 'en', 'name', 'All Russian Research Institute of Geology and Mineral Resources of the World Ocean'),
(46918, 39741, 'ru', 'name', 'Š’ŠŠ˜Š˜ŠžŠŗŠµŠ°Š½Š³ŠµŠ¾Š»Š¾Š³ŠøŃ'),
(46919, 39742, 'no_lang_code', 'name', 'Genomic Vision (France)'),
(46920, 39743, 'de', 'name', 'Archiv der Hansestadt Wismar'),
(46921, 39744, 'en', 'name', 'Father Muller Homoeopathic Medical College'),
(46922, 39745, 'de', 'name', 'UniversitƤtsklinikum Knappschaftskrankenhaus Bochum'),
(46923, 39746, 'en', 'name', 'Bavarian State Painting Collections'),
(46924, 39746, 'de', 'name', 'Bayerische StaatsgemƤldesammlungen'),
(46925, 39747, 'en', 'name', 'College of the Siskiyous'),
(46926, 39748, 'en', 'name', 'Copiah-Lincoln Community College'),
(46927, 39749, 'en', 'name', 'Cowley Community College'),
(46928, 39750, 'en', 'name', 'Davidson County Community College'),
(46929, 39751, 'en', 'name', 'Davis Applied Technology College'),
(46930, 39752, 'en', 'name', 'Academy for Five Element Acupuncture'),
(46931, 39753, 'en', 'name', 'Academy for Jewish Religion California'),
(46932, 39754, 'en', 'name', 'Bon Secours Memorial College of Nursing'),
(46933, 39755, 'en', 'name', 'Academy of Chinese Culture and Health Sciences'),
(46934, 39756, 'en', 'name', 'Academy of Vocal Arts'),
(46935, 39757, 'en', 'name', 'Boston Baptist College'),
(46936, 39758, 'en', 'name', 'Acupuncture & Integrative Medicine College'),
(46937, 39759, 'en', 'name', 'Episcopal Divinity School'),
(46938, 39760, 'en', 'name', 'Adler Graduate School'),
(46939, 39761, 'en', 'name', 'Peirce College'),
(46940, 39762, 'en', 'name', 'Boston Graduate School of Psychoanalysis'),
(46941, 39763, 'en', 'name', 'Pennsylvania College of Art and Design'),
(46942, 39764, 'en', 'name', 'Manhattan School of Music'),
(46943, 39765, 'en', 'name', 'Ex''pression College for Digital Arts'),
(46944, 39766, 'no_lang_code', 'name', '3-Sigma Research (United States)'),
(46945, 39767, 'en', 'name', 'AIB College of Business'),
(46946, 39768, 'en', 'name', 'Phoenix Institute of Herbal Medicine and Acupuncture'),
(46947, 39769, 'en', 'name', 'Faith Evangelical College & Seminary'),
(46948, 39770, 'en', 'name', 'Maple Springs Baptist Bible College and Seminary'),
(46949, 39771, 'en', 'name', 'Phoenix Seminary'),
(46950, 39772, 'en', 'name', 'Family of Faith College'),
(46951, 39773, 'en', 'name', 'Platt College Aurora'),
(46952, 39774, 'en', 'name', 'Martin Luther College'),
(46953, 39775, 'en', 'name', 'Five Towns College'),
(46954, 39776, 'en', 'name', 'American Academy of Acupuncture and Oriental Medicine'),
(46955, 39777, 'en', 'name', 'Massachusetts School of Law'),
(46956, 39778, 'en', 'name', 'Florida College of Integrative Medicine'),
(46957, 39779, 'en', 'name', 'American Baptist College'),
(46958, 39780, 'en', 'name', 'Bryan College of Health Sciences'),
(46959, 39781, 'en', 'name', 'American College of Acupuncture & Oriental Medicine'),
(46960, 39782, 'en', 'name', 'Polytechnic University of Puerto Rico Miami'),
(46961, 39783, 'en', 'name', 'Burlington College'),
(46962, 39784, 'en', 'name', 'McNally Smith College of Music'),
(46963, 39785, 'en', 'name', 'American College of Education'),
(46964, 39786, 'en', 'name', 'Polytechnic University of Puerto Rico Orlando'),
(46965, 39787, 'en', 'name', 'Frank Lloyd Wright School of Architecture'),
(46966, 39788, 'en', 'name', 'Pontifical John Paul II Institute for Studies on Marriage and Family'),
(46967, 39789, 'en', 'name', 'American College of Financial Services'),
(46968, 39790, 'en', 'name', 'American College of Traditional Chinese Medicine'),
(46969, 39791, 'en', 'name', 'Pope St. John XXIII National Seminary'),
(46970, 39792, 'en', 'name', 'Byzantine Catholic Seminary of Saints Cyril and Methodius'),
(46971, 39793, 'en', 'name', 'AOMA Graduate School of Integrative Medicine'),
(46972, 39794, 'en', 'name', 'Memphis College of Art'),
(46973, 39795, 'en', 'name', 'Providence Christian College'),
(46974, 39796, 'en', 'name', 'Apex School of Theology'),
(46975, 39797, 'en', 'name', 'Utah College of Dental Hygiene'),
(46976, 39798, 'en', 'name', 'Carolina Christian College'),
(46977, 39799, 'en', 'name', 'God''s Bible School and College'),
(46978, 39800, 'en', 'name', 'Rabbi Jacob Joseph School'),
(46979, 39801, 'en', 'name', 'Arizona School of Acupuncture and Oriental Medicine'),
(46980, 39802, 'en', 'name', 'Carver Bible College'),
(46981, 39803, 'en', 'name', 'Messenger College'),
(46982, 39804, 'no_lang_code', 'name', 'Adaptix (United Kingdom)'),
(46983, 39805, 'en', 'name', 'Arizona Summit Law School'),
(46984, 39806, 'en', 'name', 'Center for Advanced Legal Studies'),
(46985, 39807, 'en', 'name', 'Art Academy of Cincinnati'),
(46986, 39808, 'en', 'name', 'Grace Mission University'),
(46987, 39809, 'en', 'name', 'Midwest College of Oriental Medicine'),
(46988, 39810, 'en', 'name', 'Atlanta’s John Marshall Law School'),
(46989, 39811, 'en', 'name', 'Rabbinical College of America'),
(46990, 39812, 'en', 'name', 'Grace School of Theology'),
(46991, 39813, 'en', 'name', 'Atlantic Institute of Oriental Medicine'),
(46992, 39814, 'en', 'name', 'Hazelden Betty Ford Graduate School of Addiction Studies'),
(46993, 39815, 'en', 'name', 'Heritage Bible College'),
(46994, 39816, 'en', 'name', 'Millennia Atlantic University'),
(46995, 39817, 'en', 'name', 'Hobe Sound Bible College'),
(46996, 39818, 'no_lang_code', 'name', 'Bais HaMedrash and Mesivta of Baltimore'),
(46997, 39819, 'en', 'name', 'Milwaukee Institute of Art & Design'),
(46998, 39820, 'en', 'name', 'Horizon University'),
(46999, 39821, 'en', 'name', 'Rabbinical College Ohr Yisroel'),
(47000, 39822, 'en', 'name', 'Houston Graduate School of Theology'),
(47001, 39823, 'en', 'name', 'Charlotte Christian College and Theological Seminary'),
(47002, 39824, 'en', 'name', 'Humphreys College'),
(47003, 39825, 'en', 'name', 'Charlotte School of Law'),
(47004, 39826, 'en', 'name', 'Bais Medrash Toras Chesed'),
(47005, 39827, 'en', 'name', 'Relay Graduate School of Education'),
(47006, 39828, 'en', 'name', 'Montana Bible College'),
(47007, 39829, 'en', 'name', 'Christie''s Education'),
(47008, 39830, 'en', 'name', 'IGlobal University'),
(47009, 39831, 'en', 'name', 'Church Divinity School of the Pacific'),
(47010, 39832, 'en', 'name', 'Beacon College'),
(47011, 39833, 'en', 'name', 'Institute for Doctoral Studies in the Visual Arts'),
(47012, 39834, 'en', 'name', 'City Vision University'),
(47013, 39835, 'en', 'name', 'Becker College'),
(47014, 39836, 'en', 'name', 'Resurrection University'),
(47015, 39837, 'en', 'name', 'Clarkson College'),
(47016, 39838, 'en', 'name', 'Institute for the Psychological Sciences'),
(47017, 39839, 'en', 'name', 'Richmont Graduate University'),
(47018, 39840, 'en', 'name', 'Rio Grande Bible Institute'),
(47019, 39841, 'en', 'name', 'Rocky Mountain College of Art and Design'),
(47020, 39842, 'en', 'name', 'Colgate Rochester Crozer Divinity School'),
(47021, 39843, 'en', 'name', 'Montessori Institute of Milwaukee'),
(47022, 39844, 'en', 'name', 'Rudolf Steiner College'),
(47023, 39845, 'en', 'name', 'Montserrat College of Art'),
(47024, 39846, 'en', 'name', 'Collins College'),
(47025, 39847, 'en', 'name', 'St. Catharine College'),
(47026, 39848, 'en', 'name', 'Colorado School of Traditional Chinese Medicine'),
(47027, 39849, 'en', 'name', 'Moore College of Art and Design'),
(47028, 39850, 'en', 'name', 'Saint Charles Borromeo Seminary'),
(47029, 39851, 'en', 'name', 'Institute of World Politics'),
(47030, 39852, 'en', 'name', 'Bexley Hall'),
(47031, 39853, 'en', 'name', 'Interdenominational Theological Center'),
(47032, 39854, 'en', 'name', 'Morthland College'),
(47033, 39855, 'en', 'name', 'Saint John Vianney College Seminary'),
(47034, 39856, 'en', 'name', 'Birthingway College of Midwifery'),
(47035, 39857, 'en', 'name', 'Saint Luke''s College of Health Sciences'),
(47036, 39858, 'en', 'name', 'International Academy of Design & Technology'),
(47037, 39859, 'en', 'name', 'St. Vincent de Paul Regional Seminary'),
(47038, 39860, 'en', 'name', 'Blessing-Rieman College of Nursing'),
(47039, 39861, 'en', 'name', 'Columbia College of Nursing'),
(47040, 39862, 'en', 'name', 'Saint Vincent Seminary'),
(47041, 39863, 'en', 'name', 'Boise Bible College'),
(47042, 39864, 'en', 'name', 'International Academy of Design & Technology'),
(47043, 39865, 'en', 'name', 'San Francisco Conservatory of Music'),
(47044, 39866, 'en', 'name', 'Concordia College Alabama'),
(47045, 39867, 'en', 'name', 'National American University'),
(47046, 39868, 'en', 'name', 'International Baptist College and Seminary'),
(47047, 39869, 'en', 'name', 'Cox College'),
(47048, 39870, 'en', 'name', 'Nebraska Christian College'),
(47049, 39871, 'en', 'name', 'International Institute for Restorative Practices'),
(47050, 39872, 'en', 'name', 'Shiloh University'),
(47051, 39873, 'en', 'name', 'Savannah Law School'),
(47052, 39874, 'en', 'name', 'Cranbrook Academy of Art'),
(47053, 39875, 'en', 'name', 'Seattle Institute of Oriental Medicine'),
(47054, 39876, 'no_lang_code', 'name', 'Peregrine Power (United States)'),
(47055, 39877, 'en', 'name', 'Sioux Falls Seminary'),
(47056, 39878, 'en', 'name', 'New England College of Business'),
(47057, 39879, 'en', 'name', 'Sentara College of Health Sciences'),
(47058, 39880, 'en', 'name', 'Curtis Institute of Music'),
(47059, 39881, 'en', 'name', 'Kenrick–Glennon Seminary'),
(47060, 39882, 'en', 'name', 'Dallas Christian College'),
(47061, 39883, 'en', 'name', 'New Hampshire Institute of Art'),
(47062, 39884, 'en', 'name', 'Seattle School of Theology and Psychology'),
(47063, 39885, 'en', 'name', 'Daoist Traditions College of Chinese Medical Arts'),
(47064, 39886, 'en', 'name', 'Kentucky Mountain Bible College'),
(47065, 39887, 'en', 'name', 'DellArte International School of Physical Theatre'),
(47066, 39888, 'en', 'name', 'Reformed Episcopal Seminary'),
(47067, 39889, 'en', 'name', 'Sotheby''s Institute of Art'),
(47068, 39890, 'en', 'name', 'Laguna College of Art and Design'),
(47069, 39891, 'en', 'name', 'Design Institute of San Diego'),
(47070, 39892, 'en', 'name', 'New York College of Traditional Chinese Medicine'),
(47071, 39893, 'en', 'name', 'South Florida Bible College & Theological Seminary'),
(47072, 39894, 'en', 'name', 'New York School of Interior Design'),
(47073, 39895, 'en', 'name', 'Thomas More College of Liberal Arts'),
(47074, 39896, 'en', 'name', 'DeVry College'),
(47075, 39897, 'en', 'name', 'Tri-State Bible College'),
(47076, 39898, 'en', 'name', 'Newbury College'),
(47077, 39899, 'en', 'name', 'Tri-State College of Acupuncture'),
(47078, 39900, 'en', 'name', 'Northpoint Bible College'),
(47079, 39901, 'en', 'name', 'Trinity Bible College'),
(47080, 39902, 'en', 'name', 'Trinity Lutheran College'),
(47081, 39903, 'en', 'name', 'Southern California Seminary'),
(47082, 39904, 'en', 'name', 'Northwest Institute of Literary Arts'),
(47083, 39905, 'en', 'name', 'Southwest Acupuncture College - Boulder'),
(47084, 39906, 'en', 'name', 'Southwest Acupuncture College - Santa Fe'),
(47085, 39907, 'en', 'name', 'Notre Dame Seminary'),
(47086, 39908, 'en', 'name', 'Ecclesia College'),
(47087, 39909, 'en', 'name', 'O''More College of Design'),
(47088, 39910, 'en', 'name', 'Truett-McConnell College'),
(47089, 39911, 'en', 'name', 'St. Bernard’s School of Theology and Ministry'),
(47090, 39912, 'en', 'name', 'Union Presbyterian Seminary'),
(47091, 39913, 'en', 'name', 'Emperors College'),
(47092, 39914, 'en', 'name', 'Oak Hills Christian College'),
(47093, 39915, 'en', 'name', 'Epic Bible College'),
(47094, 39916, 'en', 'name', 'St. John''s College of Nursing'),
(47095, 39917, 'en', 'name', 'Oregon College of Art and Craft'),
(47096, 39918, 'en', 'name', 'Upper Valley Educators Institute'),
(47097, 39919, 'en', 'name', 'University of Fort Lauderdale'),
(47098, 39920, 'en', 'name', 'Urshan Graduate School of Theology'),
(47099, 39921, 'en', 'name', 'Longy School of Music of Bard College'),
(47100, 39922, 'en', 'name', 'Talmudic University'),
(47101, 39923, 'en', 'name', 'Oxford Graduate School'),
(47102, 39924, 'en', 'name', 'Paier College of Art Inc'),
(47103, 39925, 'en', 'name', 'World Medicine Institute'),
(47104, 39926, 'en', 'name', 'Vermont College of Fine Arts'),
(47105, 39927, 'en', 'name', 'Virginia Baptist College'),
(47106, 39928, 'en', 'name', 'World Mission University'),
(47107, 39929, 'en', 'name', 'Talmudical Seminary Oholei Torah'),
(47108, 39930, 'en', 'name', 'Yeshiva Toras Chaim Talmudic Seminary'),
(47109, 39931, 'en', 'name', 'Visible Music College'),
(47110, 39932, 'en', 'name', 'Western Seminary'),
(47111, 39933, 'en', 'name', 'Art Institute of Atlanta'),
(47112, 39934, 'en', 'name', 'Yeshiva of Greater Washington'),
(47113, 39935, 'en', 'name', 'Lubavitch Educational Center'),
(47114, 39936, 'en', 'name', 'Yeshiva and Kollel Be''er Yitzchok of Elizabeth'),
(47115, 39937, 'en', 'name', 'Williamson College'),
(47116, 39938, 'en', 'name', 'Yeshivat Mikdash Melech'),
(47117, 39939, 'en', 'name', 'Wolford College'),
(47118, 39940, 'en', 'name', 'Won Institute of Graduate Studies'),
(47119, 39941, 'en', 'name', 'Young Harris College'),
(47120, 39942, 'en', 'name', 'Art Institute of Houston'),
(47121, 39943, 'en', 'name', 'Yeshiva of Nitra Rabbinical College'),
(47122, 39944, 'en', 'name', 'The King''s College'),
(47123, 39945, 'en', 'name', 'Yeshiva Ohr Elchonon Chabad West Coast Talmudical Seminary'),
(47124, 39946, 'en', 'name', 'State Hospital'),
(47125, 39947, 'no_lang_code', 'name', 'Cyber-Dynamics (United States)'),
(47126, 39948, 'en', 'name', 'Brno International Business School'),
(47127, 39949, 'tr', 'name', 'Adana Bilim ve Teknloji Üniversitesi'),
(47128, 39949, 'en', 'name', 'Adana Science and Technology University'),
(47129, 39950, 'en', 'name', 'Dania Academy of Higher Education'),
(47130, 39951, 'no_lang_code', 'name', 'B & B'),
(47131, 39952, 'en', 'name', 'Danube Private University'),
(47132, 39953, 'en', 'name', 'Academy of Cosmetics and Health Care in Warsaw'),
(47133, 39953, 'pl', 'name', 'Wyższa Szkoła Zawodowa Kosmetyki'),
(47134, 39954, 'en', 'name', 'Baltic Methodist Theological Seminary'),
(47135, 39955, 'en', 'name', 'Akcent International House Prague'),
(47136, 39955, 'cs', 'name', 'JazykovÔ Ŕkola AKCENT IH Prague'),
(47137, 39956, 'en', 'name', 'Daugavpils Medical College'),
(47138, 39956, 'lv', 'name', 'Daugavpils medicinas koledza'),
(47139, 39957, 'en', 'name', 'Academy of Fine Arts Nuremberg'),
(47140, 39957, 'de', 'name', 'Akademie der Bildenden Künste Nürnberg'),
(47141, 39958, 'en', 'name', 'Baptist Theological Academy'),
(47142, 39959, 'lv', 'name', 'Grāmatvedības un finanŔu koledža'),
(47143, 39959, 'en', 'name', 'Riga College of Accounting and Finance'),
(47144, 39960, 'de', 'name', 'bbw Hochschule'),
(47145, 39960, 'en', 'name', 'bbw University of Applied Sciences'),
(47146, 39961, 'en', 'name', 'College of Applied Psychology'),
(47147, 39961, 'cs', 'name', 'VysokÔ Ŕkola aplikované psychologie'),
(47148, 39962, 'en', 'name', 'Academy of Fine Arts of Bologna'),
(47149, 39962, 'it', 'name', 'Accademia di Belle Arti di Bologna'),
(47150, 39963, 'it', 'name', 'Accademia di Belle Arti di Carrara'),
(47151, 39964, 'en', 'name', 'Alberta College'),
(47152, 39964, 'lv', 'name', 'Alberta Koledža'),
(47153, 39965, 'en', 'name', 'Alexander College'),
(47154, 39966, 'en', 'name', 'College of Communications and Management in Poznan'),
(47155, 39966, 'pl', 'name', 'Wyższa Szkoła Komunikacji i Zarządzania w Poznaniu'),
(47156, 39967, 'en', 'name', 'Alexander Technological Educational Institute of Thessaloniki'),
(47157, 39967, 'el', 'name', 'ΑλεξάνΓρειο Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(47158, 39968, 'en', 'name', 'Academy of Fine Arts of Florence'),
(47159, 39968, 'it', 'name', 'Accademia di Belle Arti di Firenze'),
(47160, 39969, 'it', 'name', 'Accademia di Belle Arti di Foggia'),
(47161, 39970, 'en', 'name', 'Białystok Institute of Cosmetology and Healthcare'),
(47162, 39970, 'pl', 'name', 'Wyższa Szkoła Kosmetologii i Ochrony Zdrowia w Białymstoku'),
(47163, 39971, 'it', 'name', 'Accademia di Belle Arti di Frosinone'),
(47164, 39972, 'hr', 'name', 'Američka Visoka Skola za Menadžment i Tehnologiju'),
(47165, 39972, 'en', 'name', 'Rochester Institute of Technology Croatia'),
(47166, 39973, 'en', 'name', 'University of Security and Economics'),
(47167, 39973, 'bg', 'name', 'Š’ŠøŃŃˆŠµ Училище по Š”ŠøŠ³ŃƒŃ€Š½Š¾ŃŃ‚ Šø Икономика'),
(47168, 39974, 'it', 'name', 'Accademia di Belle Arti di Lecce'),
(47169, 39975, 'de', 'name', 'EBC Hochschule'),
(47170, 39976, 'en', 'name', 'Biotechnical Educational Centre Ljubljana'),
(47171, 39977, 'it', 'name', 'Accademia di Belle Arti di Macerata'),
(47172, 39978, 'it', 'name', 'Accademia di Belle Arti di Brera'),
(47173, 39978, 'en', 'name', 'Brera Academy'),
(47174, 39979, 'en', 'name', 'College of Tourism'),
(47175, 39980, 'it', 'name', 'Accademia di Belle Arti di Napoli'),
(47176, 39980, 'en', 'name', 'Naples Academy of Fine Arts'),
(47177, 39981, 'en', 'name', 'Architectural Institute in Prague'),
(47178, 39982, 'en', 'name', 'Academy of Fine Arts of Palermo'),
(47179, 39982, 'it', 'name', 'Accademia di Belle Arti di Palermo'),
(47180, 39983, 'it', 'name', 'Accademia di Belle Arti di Reggio Calabria'),
(47181, 39984, 'en', 'name', 'College for Management in Tourism and Informatics in Virovitica'),
(47182, 39984, 'hr', 'name', 'Visoka Ŕkola za menadžment u turizmu i informatici'),
(47183, 39985, 'it', 'name', 'Accademia di Belle Arti di Roma'),
(47184, 39986, 'it', 'name', 'Accademia di Belle Arti di Sassari'),
(47185, 39987, 'en', 'name', 'College of Nursing in Celje'),
(47186, 39987, 'sl', 'name', 'Visoka zdravstvena Ŕola v Celju'),
(47187, 39988, 'en', 'name', 'College of Management ā€œEdukacjaā€'),
(47188, 39988, 'pl', 'name', 'Wyższa Szkoła Zarządzania "Edukacja"'),
(47189, 39989, 'it', 'name', 'Accademia di Belle Arti di Urbino'),
(47190, 39990, 'en', 'name', 'College of Occupational Safety and Health'),
(47191, 39990, 'hr', 'name', 'Visoka Ŕkola za sigurnost'),
(47192, 39991, 'it', 'name', 'Accademia di Belle Arti di Venezia'),
(47193, 39992, 'de', 'name', 'Burg Giebichenstein Kunsthochschule Halle'),
(47194, 39992, 'en', 'name', 'Burg Giebichenstein University of Art and Design Halle'),
(47195, 39993, 'en', 'name', 'College of Physical Education and Sport Palestra'),
(47196, 39993, 'cs', 'name', 'VysokÔ Ŕkola telesné výchovy a sportu Palestra'),
(47197, 39994, 'en', 'name', 'European University'),
(47198, 39994, 'sr', 'name', 'Evropski Univerzitet'),
(47199, 39995, 'en', 'name', 'Business Academy Aarhus'),
(47200, 39996, 'sl', 'name', 'Izobraževalni Center Piramida Maribor'),
(47201, 39997, 'en', 'name', 'College of Business and Hotel Management'),
(47202, 39997, 'cs', 'name', 'VysokÔ Ŕkola obchodní a hotelovÔ'),
(47203, 39998, 'en', 'name', 'Faculty for Business Management'),
(47204, 39998, 'hr', 'name', 'Fakultet za Poslovni Menadžment u Baru'),
(47205, 39999, 'cs', 'name', 'VysokĆ” Å kola RealitnĆ­ Institut Franka Dysona'),
(47206, 40000, 'en', 'name', 'Hanns Eisler College or Academy of Music'),
(47207, 40000, 'de', 'name', 'Hochschule für Musik Hanns Eisler'),
(47208, 40001, 'en', 'name', 'Collegium Varsoviense'),
(47209, 40002, 'hr', 'name', 'Baltazar ZapreÅ”ić University of Applied Sciences'),
(47210, 40003, 'en', 'name', 'Latvia Business College'),
(47211, 40003, 'lv', 'name', 'Latvijas Biznesa Koledža'),
(47212, 40004, 'en', 'name', 'Holy Cross University'),
(47213, 40005, 'en', 'name', 'Cracow School of Health Promotion'),
(47214, 40005, 'pl', 'name', 'Krakowska Wyższa Szkoła Promocji Zdrowia'),
(47215, 40006, 'de', 'name', 'Fachhochschule Erfurt'),
(47216, 40006, 'en', 'name', 'University of Applied Sciences Erfurt'),
(47217, 40007, 'hr', 'name', 'Visoka Poslovna Skola Zagreb'),
(47218, 40007, 'en', 'name', 'Zagreb School of Business'),
(47219, 40008, 'pl', 'name', 'Gliwicka Wyższa Szkoła Przedsiębiorczości'),
(47220, 40009, 'en', 'name', 'Casa College'),
(47221, 40010, 'en', 'name', 'Global College'),
(47222, 40011, 'cs', 'name', 'Film Academy of Miroslav OndÅ™Ć­Äek'),
(47223, 40012, 'pl', 'name', 'Wyższa Szkoła Bezpieczeństwa i Securities Services w Warszawie'),
(47224, 40013, 'no_lang_code', 'name', 'Smart Separations (United Kingdom)'),
(47225, 40014, 'en', 'name', 'Hellenic Military Academy'),
(47226, 40014, 'el', 'name', 'Στρατιωτική Σχολή ΕυελπίΓων'),
(47227, 40015, 'en', 'name', 'University of Security in Poznań'),
(47228, 40015, 'pl', 'name', 'Wyższa Szkoła Bezpieczeństwa w Poznaniu'),
(47229, 40016, 'en', 'name', 'Catholic University of Applied Social Sciences'),
(47230, 40016, 'de', 'name', 'Katholische Hochschule für Sozialwesen Berlin'),
(47231, 40017, 'pl', 'name', 'Europejska Uczelnia Społeczno-Techniczna w Radomiu'),
(47232, 40017, 'en', 'name', 'Radom Academy of Social and Technical Sciences'),
(47233, 40018, 'cs', 'name', 'Evropský Polytechnický Institut'),
(47234, 40019, 'pl', 'name', 'Wyższa Szkoła Nauk Społecznych z Siedzibą w Lublinie'),
(47235, 40020, 'en', 'name', 'European Polytechnical University'),
(47236, 40020, 'bg', 'name', 'Š•Š²Ń€Š¾ŠæŠµŠ¹ŃŠŗŠøŃ политехнически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(47237, 40021, 'pl', 'name', 'Wyższa Szkoła Planowania Strategicznego'),
(47238, 40022, 'en', 'name', 'G. S. Rakovski National Defence College'),
(47239, 40022, 'bg', 'name', 'Военна Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š“. Š”. Раковски'),
(47240, 40023, 'en', 'name', 'Higher Ecclesiastical Academy of Athens'),
(47241, 40023, 'el', 'name', 'Ī‘Ī½ĻŽĻ„Ī±Ļ„Ī· Ī•ĪŗĪŗĪ»Ī·ĻƒĪ¹Ī±ĻƒĻ„Ī¹ĪŗĪ® ΑκαΓημία Αθήνας'),
(47242, 40024, 'en', 'name', 'University College of Tourism and Ecology'),
(47243, 40024, 'pl', 'name', 'Wyższa Szkoła Turystyki i Ekologii w Suchej Beskidzkiej'),
(47244, 40025, 'en', 'name', 'Gdansk School of Higher Education'),
(47245, 40025, 'pl', 'name', 'Gdańska Szkoła Wyższa'),
(47246, 40026, 'en', 'name', 'International School of Law and Business'),
(47247, 40026, 'lt', 'name', 'Tarptautinė teisės ir verslo aukÅ”toji mokykla'),
(47248, 40027, 'en', 'name', 'Higher Vocational College for Hospitality and Tourism Bled'),
(47249, 40027, 'sl', 'name', 'ViŔja Strokovna Šola za Gostinstvo in Turizem Bled'),
(47250, 40028, 'en', 'name', 'Gdansk Management College'),
(47251, 40028, 'pl', 'name', 'Wyższa Szkoła Zarządzania w Gdańsku'),
(47252, 40029, 'sl', 'name', 'ViŔja Strokovna Šola za Gostinstvo in Turizem Maribor'),
(47253, 40030, 'en', 'name', 'Gedik University'),
(47254, 40030, 'tr', 'name', 'Gedik Üniversitesi'),
(47255, 40031, 'pl', 'name', 'Uczelnia Zawodowa Zagłębia Miedziowego w Lubinie'),
(47256, 40032, 'lt', 'name', 'Kauno MiŔku ir Aplinkos Inžinerijos Kolegija'),
(47257, 40033, 'en', 'name', 'Malopolska Higher Vocational School of J. Dietl in Kraków'),
(47258, 40033, 'pl', 'name', 'Małopolska Wyższa Szkoła im. Józefa Dietla'),
(47259, 40034, 'en', 'name', 'Kaunas University of Applied Engineering Sciences'),
(47260, 40034, 'lt', 'name', 'Kauno technikos kolegijos'),
(47261, 40035, 'de', 'name', 'Deutsche Hochschule der Polizei'),
(47262, 40035, 'en', 'name', 'German Police University'),
(47263, 40036, 'de', 'name', 'Hochschule der Deutschen Bundesbank'),
(47264, 40037, 'en', 'name', 'Ipek University'),
(47265, 40038, 'pl', 'name', 'Dolnośląska Wyższa Szkoła Przedsiębiorczości i Techniki w Polkowicach'),
(47266, 40039, 'en', 'name', 'KES College'),
(47267, 40039, 'el', 'name', 'Κολλέγιο ĪšĪ•Ī£'),
(47268, 40040, 'en', 'name', 'University Ecclesiastical Academy of Thessaloniki'),
(47269, 40040, 'el', 'name', 'Ī‘Ī½ĻŽĻ„Ī±Ļ„Ī· Ī•ĪŗĪŗĪ»Ī·ĻƒĪ¹Ī±ĻƒĻ„Ī¹ĪŗĪ® ΑκαΓημία Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(47270, 40041, 'en', 'name', 'LUCA School of Arts'),
(47271, 40042, 'en', 'name', 'Higher School of Humanities in Leszno'),
(47272, 40042, 'pl', 'name', 'Wyższa Szkoła Humanistyczna'),
(47273, 40043, 'en', 'name', 'Higher Institute for Artistic Industries Faenza'),
(47274, 40043, 'it', 'name', 'Istituto Superiore per le Industrie Artistiche'),
(47275, 40044, 'en', 'name', 'School of Administration in Bielsko-Biala'),
(47276, 40044, 'pl', 'name', 'Wyższa Szkoła Administracji w Bielsku-Białej'),
(47277, 40045, 'en', 'name', 'Higher Institute for Artistic Industries Firenze'),
(47278, 40045, 'it', 'name', 'Istituto Superiore per le Industrie Artistiche'),
(47279, 40046, 'pl', 'name', 'GnieÅŗnieńska Szkoła Wyższa Milenium'),
(47280, 40047, 'en', 'name', 'Higher Institute for Artistic Industries Urbino'),
(47281, 40047, 'it', 'name', 'Istituto Superiore per le Industrie Artistiche'),
(47282, 40048, 'en', 'name', 'Institute and Academy of Multimedia'),
(47283, 40048, 'sl', 'name', 'InŔtitut in Akademija za Multimedije'),
(47284, 40049, 'en', 'name', 'Theatre College Luben Groys'),
(47285, 40049, 'bg', 'name', 'Театрален колеж Š›ŃŽŠ±ŠµŠ½ Гройс'),
(47286, 40050, 'en', 'name', 'Academy of Business and Health Sciences in Lodz'),
(47287, 40050, 'pl', 'name', 'Wyższa Szkoła Biznesu i Nauk o Zdrowiu'),
(47288, 40051, 'pl', 'name', 'Wyższa Szkoła Biznesu w Gorzowie Wielkopolskim'),
(47289, 40052, 'en', 'name', 'Design School Kolding'),
(47290, 40052, 'da', 'name', 'Designskolen Kolding'),
(47291, 40053, 'de', 'name', 'Hochschule Mainz'),
(47292, 40053, 'en', 'name', 'University of Applied Sciences Mainz'),
(47293, 40054, 'da', 'name', 'IBA Erhvervsakademi'),
(47294, 40054, 'en', 'name', 'International Business Academy'),
(47295, 40055, 'en', 'name', 'Kolping University of Applied Sciences'),
(47296, 40056, 'lv', 'name', 'Malnavas koledža'),
(47297, 40057, 'pl', 'name', 'Sopocka Szkoła Wyższa'),
(47298, 40057, 'en', 'name', 'Sopot University of Applied Science'),
(47299, 40058, 'en', 'name', 'Music and Arts University of the City of Vienna'),
(47300, 40058, 'de', 'name', 'Musik und Kunst PrivatuniversitƤt der Stadt Wien'),
(47301, 40059, 'en', 'name', 'Jan Amos Komeński State School of Higher Vocational Education'),
(47302, 40059, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Jana Amosa Komeńskiego w Lesznie'),
(47303, 40060, 'en', 'name', 'Mannheim University of Music and Performing Arts'),
(47304, 40060, 'de', 'name', 'Staatliche Hochschule für Musik und Darstellende Kunst Mannheim'),
(47305, 40061, 'en', 'name', 'Radom College'),
(47306, 40061, 'pl', 'name', 'Radomska Szkoła Wyższa'),
(47307, 40062, 'en', 'name', 'Marijampole College'),
(47308, 40062, 'lt', 'name', 'Marijampoles Kolejia'),
(47309, 40063, 'lv', 'name', 'Jēkabpils Agrobiznesa Koledža'),
(47310, 40063, 'en', 'name', '​​​Jekabpils Agrobusiness College'),
(47311, 40064, 'en', 'name', 'Academy of Hotel Management and Catering Industry'),
(47312, 40064, 'pl', 'name', 'Wyższa Szkoła Hotelarstwa i Gastronomii'),
(47313, 40065, 'en', 'name', 'LƤƤne-Viru College'),
(47314, 40065, 'et', 'name', 'LƤƤne-Viru RakenduskƵrgkool'),
(47315, 40066, 'en', 'name', 'University of Finance, Business and Entrepreneurship'),
(47316, 40066, 'bg', 'name', 'Š’ŠøŃŃˆŠµ ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ по застраховане Šø финанси'),
(47317, 40067, 'nl', 'name', 'Marnix Academie'),
(47318, 40068, 'pl', 'name', 'Uczelnia Jańskiego w Łomży'),
(47319, 40069, 'en', 'name', 'Larnaca College'),
(47320, 40070, 'pl', 'name', 'Wyższa Szkoła Zarządzania Środowiskiem w Tucholi'),
(47321, 40071, 'en', 'name', 'Media Design University for Design and Computer Science'),
(47322, 40071, 'de', 'name', 'Mediadesign Hochschule für Design und Informatik'),
(47323, 40072, 'hr', 'name', 'Međimursko VeleučiliÅ”te u Čakovcu'),
(47324, 40072, 'en', 'name', 'Polytechnic of Međimurje in Čakovec'),
(47325, 40073, 'en', 'name', 'MEF International School'),
(47326, 40074, 'en', 'name', 'Institute of Structural Macrokinetics and Materials Science'),
(47327, 40074, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€Š½Š¾Š¹ макрокинетики Šø проблем Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(47328, 40075, 'en', 'name', 'Energy Research Institute'),
(47329, 40075, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований Российской акаГемии наук'),
(47330, 40076, 'it', 'name', 'Conservatorio Statale di Musica Nicola Sala - Benevento'),
(47331, 40077, 'cs', 'name', 'Karel Englis College'),
(47332, 40078, 'en', 'name', 'Merchant Marine Academy'),
(47333, 40078, 'el', 'name', 'ΑκαΓημίες Ī•Ī¼Ļ€ĪæĻĪ¹ĪŗĪæĻ ĪĪ±Ļ…Ļ„Ī¹ĪŗĪæĻ'),
(47334, 40079, 'pl', 'name', 'Kaszubsko-Pomorska Szkoła Wyższa'),
(47335, 40080, 'it', 'name', 'Conservatorio di Musica "G.B. Martini"'),
(47336, 40081, 'de', 'name', 'Geschichte des Internationalen Hochschulinstituts (IHI) Zittau'),
(47337, 40081, 'en', 'name', 'International University Institute'),
(47338, 40082, 'en', 'name', 'Metropolitan University'),
(47339, 40082, 'sr', 'name', 'Univerzitet Metropolitan'),
(47340, 40083, 'it', 'name', 'Conservatorio di Musica Nino Rota'),
(47341, 40084, 'it', 'name', 'Istituto di Alta Formazione Musicale Conservatorio "Claudio Monteverdi"'),
(47342, 40085, 'it', 'name', 'Conservatorio di Musica "Luca Marenzio"'),
(47343, 40086, 'it', 'name', 'Conservatorio di Musica Pierluigi da Palestrina'),
(47344, 40087, 'pl', 'name', 'Wyższa Szkoła Pedagogiki i Administracji im. Mieszka I w Poznaniu'),
(47345, 40088, 'it', 'name', 'Conservatorio di Musica San Pietro a Majella'),
(47346, 40089, 'it', 'name', 'Conservatorio di Musica Lorenzo Perosi'),
(47347, 40090, 'en', 'name', 'Arte Institute'),
(47348, 40091, 'ro', 'name', 'Academia Tehnică Militară'),
(47349, 40091, 'en', 'name', 'Military Technical Academy'),
(47350, 40092, 'it', 'name', 'Conservatorio di Musica Agostino Steffani'),
(47351, 40093, 'en', 'name', 'M.N. Mikheev Institute of Metal Physics'),
(47352, 40093, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики металлов имени М.Š. ŠœŠøŃ…ŠµŠµŠ²Š° Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(47353, 40094, 'it', 'name', 'Conservatorio Guido Cantelli di Novara'),
(47354, 40095, 'it', 'name', 'Conservatorio di Musica Cesare Pollini'),
(47355, 40096, 'it', 'name', 'Conservatorio di Musica "Giuseppe Verdi"'),
(47356, 40097, 'it', 'name', 'Conservatorio Statale di Musica A. Buzzolla'),
(47357, 40098, 'it', 'name', 'Accademia Nazionale di Arte Drammatica Silvio DAmico'),
(47358, 40098, 'en', 'name', 'Silvio d''Amico National Academy of Dramatic Arts'),
(47359, 40099, 'ro', 'name', 'Academia Naţională de Educaţie Fizică şi Sport Bucureşti'),
(47360, 40099, 'en', 'name', 'National Academy of Physical Education and Sport'),
(47361, 40100, 'it', 'name', 'Conservatorio di Musica Stanislao Giacomantonio'),
(47362, 40101, 'en', 'name', 'Conservatorio Antonio Vivaldi'),
(47363, 40101, 'it', 'name', 'Conservatorio Di Musica A. Vivaldi'),
(47364, 40102, 'en', 'name', 'Community of Professional Sociologists'),
(47365, 40102, 'ru', 'name', 'Дообщество ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… социологов'),
(47366, 40103, 'it', 'name', 'Conservatorio di Musica G.F. Ghedini'),
(47367, 40104, 'lt', 'name', 'Lietuvos aukstoji jureivystes mokykla'),
(47368, 40104, 'en', 'name', 'Lithuanian Maritime Academy'),
(47369, 40105, 'it', 'name', 'Conservatorio Statale di Musica Domenico Cimarosa di Avellino'),
(47370, 40106, 'it', 'name', 'Conservatorio di Musica Arrigo Boito'),
(47371, 40107, 'it', 'name', 'Conservatorio di Musica N. Piccinni'),
(47372, 40107, 'en', 'name', 'Conservatory of Bari'),
(47373, 40108, 'it', 'name', 'Conservatorio di Musica Giovambattista Pergolesi'),
(47374, 40109, 'it', 'name', 'Conservatorio di Musica Girolamo Frescobaldi'),
(47375, 40110, 'it', 'name', 'Conservatorio di Musica Luigi Cherubini'),
(47376, 40111, 'it', 'name', 'Conservatorio di Musica di Perugia'),
(47377, 40112, 'en', 'name', 'Private College of Economic Studies Znojmo'),
(47378, 40112, 'cs', 'name', 'SoukromĆ” VysokĆ” Skola EkonomickĆ” Znojmo'),
(47379, 40113, 'it', 'name', 'Conservatorio Statale di Musica Gioachino Rossini'),
(47380, 40114, 'it', 'name', 'Conservatorio di Musica Umberto Giordano'),
(47381, 40115, 'en', 'name', 'Private University of Environmental Sciences in Radom'),
(47382, 40115, 'pl', 'name', 'Prywatna Wyższa Szkoła Ochrony Środowiska w Radomiu'),
(47383, 40116, 'it', 'name', 'Conservatorio di Musica Licinio Refice'),
(47384, 40117, 'it', 'name', 'Conservatorio di Musica Niccolò Paganini'),
(47385, 40118, 'it', 'name', 'Conservatorio statale di Musica Alfredo Casella'),
(47386, 40119, 'en', 'name', 'Panevėžys College'),
(47387, 40120, 'it', 'name', 'Conservatorio di Musica Giacomo Puccini'),
(47388, 40121, 'it', 'name', 'Conservatorio di Musica Carlo Gesualdo da Venosa Potenza'),
(47389, 40122, 'it', 'name', 'Conservatorio di Musica Francesco Cilea'),
(47390, 40123, 'it', 'name', 'Conservatorio di Musica Ottorino Respighi'),
(47391, 40124, 'da', 'name', 'Kriminalforsorgen'),
(47392, 40125, 'en', 'name', 'Pawel Wlodkowic University College in Płock'),
(47393, 40125, 'pl', 'name', 'Szkola Wyzsza im. Pawla Wlodkowica w Plocku'),
(47394, 40126, 'it', 'name', 'Conservatorio di Musica Tito Schipa'),
(47395, 40127, 'it', 'name', 'Conservatorio di Musica ''Francesco Venezze'' di Rovigo'),
(47396, 40128, 'it', 'name', 'Conservatorio di Musica "Lucio Campiani"'),
(47397, 40128, 'en', 'name', 'Music Conservatory of Mantova'),
(47398, 40129, 'it', 'name', 'Conservatorio di Musica G. Martucci'),
(47399, 40130, 'it', 'name', 'Conservatorio di Musica Luigi Canepa'),
(47400, 40131, 'pl', 'name', 'Państwowa Medyczna Wyższa Szkoła Zawodowa'),
(47401, 40131, 'en', 'name', 'Public Higher Medical Professional School in Opole'),
(47402, 40132, 'it', 'name', 'Conservatorio di Musica Egidio R. Duni'),
(47403, 40133, 'lt', 'name', 'Lietuvos Verslo Kolegija'),
(47404, 40133, 'en', 'name', 'Lithuania Business University of Applied Science'),
(47405, 40134, 'it', 'name', 'Conservatorio State Di Musica Giuseppe Verdi'),
(47406, 40135, 'it', 'name', 'Conservatorio di Musica Giuseppe Verdi'),
(47407, 40136, 'it', 'name', 'Conservatorio di Musica Antonio Scontrino Trapani'),
(47408, 40137, 'en', 'name', 'Radom Academy of Economics'),
(47409, 40137, 'pl', 'name', 'Wyższa Szkoła Handlowa w Radomiu'),
(47410, 40138, 'it', 'name', 'Conservatorio di Musica FA Bonporti Trento'),
(47411, 40139, 'sl', 'name', 'Šolski Center za PoŔto, Ekonomijo in Telekomunikacije'),
(47412, 40140, 'sl', 'name', 'Å olski Center Postojna'),
(47413, 40141, 'it', 'name', 'Conservatorio Statale di Musica Jacopo Tomadini Udine'),
(47414, 40142, 'pl', 'name', 'Staropolska Szkoła Wyższa w Kielcach'),
(47415, 40143, 'en', 'name', 'Northern Lithuania College'),
(47416, 40143, 'lt', 'name', 'Šiaurės Lietuvos kolegija'),
(47417, 40144, 'en', 'name', 'Hellenic Police Academy'),
(47418, 40144, 'el', 'name', 'Ī‘ĻƒĻ„Ļ…Ī½ĪæĪ¼Ī¹ĪŗĪ® ΑκαΓημία'),
(47419, 40145, 'en', 'name', 'Institute of Automation and Control Processes'),
(47420, 40145, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø процессов ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(47421, 40146, 'de', 'name', 'Evangelische Hochschule Rheinland-Westfalen-Lippe'),
(47422, 40146, 'en', 'name', 'Protestant University of Applied Sciences Rhineland-Westphalia-Lippe'),
(47423, 40147, 'en', 'name', 'Police Academy'),
(47424, 40147, 'tr', 'name', 'Polis Akademisi'),
(47425, 40148, 'en', 'name', 'Riga Building College'),
(47426, 40148, 'lv', 'name', 'Rīgas Celtniecības koledža'),
(47427, 40149, 'it', 'name', 'Conservatorio di Musica Benedetto Marcello di Venezia'),
(47428, 40150, 'sl', 'name', 'Å olski Center Å entjur'),
(47429, 40151, 'sl', 'name', 'Å olski Center Å kofja Loka'),
(47430, 40152, 'it', 'name', 'Conservatorio di Verona Evaristo Felice Dall Abaco'),
(47431, 40153, 'en', 'name', 'Riga Technical College'),
(47432, 40153, 'lv', 'name', 'Rigas Tehniska Koledza'),
(47433, 40154, 'de', 'name', 'Hochschule für Musik Nürnberg'),
(47434, 40154, 'en', 'name', 'Nuremberg University of Music'),
(47435, 40155, 'it', 'name', 'Conservatorio Torrefranca Vibo Valentia'),
(47436, 40156, 'it', 'name', 'Conservatorio Di Musica di Vicenza'),
(47437, 40156, 'en', 'name', 'Conservatory of Vicenza'),
(47438, 40157, 'en', 'name', 'Department of Energy, Engineering, Mechanics and Control Processes'),
(47439, 40157, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… проблем химической физики'),
(47440, 40158, 'en', 'name', 'Department of Chemistry and Material Sciences'),
(47441, 40159, 'en', 'name', 'Department of Physiological Sciences'),
(47442, 40160, 'en', 'name', 'Department of Social Sciences'),
(47443, 40161, 'en', 'name', 'Department of Global Issues and International Relations'),
(47444, 40162, 'en', 'name', 'Division of Historical and Philological Sciences'),
(47445, 40163, 'en', 'name', 'Department of Agricultural Sciences'),
(47446, 40164, 'de', 'name', 'Hochschule für Gestaltung Offenbach'),
(47447, 40164, 'en', 'name', 'University of Art and Design Offenbach'),
(47448, 40165, 'sl', 'name', 'Å olski center Slovenj Gradec'),
(47449, 40166, 'sl', 'name', 'Å olski Center Velenje'),
(47450, 40167, 'hr', 'name', 'VeleučiliÅ”te "Nikola Tesla" u Gospiću'),
(47451, 40168, 'en', 'name', 'San Raffaele University of Rome'),
(47452, 40168, 'it', 'name', 'UniversitĆ  telematica San Raffaele'),
(47453, 40169, 'en', 'name', 'Celje School of Economics'),
(47454, 40169, 'sl', 'name', 'Ekonomska Å ola Celje'),
(47455, 40170, 'sl', 'name', 'School Centre Celje'),
(47456, 40171, 'sl', 'name', 'Ekonomska Å ola Murska Sobota'),
(47457, 40172, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Chełmie'),
(47458, 40172, 'en', 'name', 'State School of Higher Education in Chełm'),
(47459, 40173, 'en', 'name', 'Kranj School Centre'),
(47460, 40173, 'sl', 'name', 'Å olski center Kranj'),
(47461, 40174, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Ciechanowie'),
(47462, 40175, 'sl', 'name', 'TehniŔki Solski Center Maribor'),
(47463, 40176, 'en', 'name', 'School Centre Nova Gorica'),
(47464, 40176, 'sl', 'name', 'Å olski center Nova Gorica'),
(47465, 40177, 'en', 'name', 'State Police College'),
(47466, 40177, 'lv', 'name', 'Valsts Policijas Koledza'),
(47467, 40178, 'hr', 'name', 'Visoka Å kola za Informacijske Tehnologije Zagreb'),
(47468, 40179, 'pl', 'name', 'Wielkopolska Wyższa Szkoła Społeczno-Ekonomiczna'),
(47469, 40180, 'en', 'name', 'Academy of Tourism and Hotel Management in Gdansk'),
(47470, 40180, 'pl', 'name', 'Wyższa Szkoła Turystyki i Hotelarstwa w Gdańsku'),
(47471, 40181, 'en', 'name', 'Tartu Academy of Theology'),
(47472, 40181, 'et', 'name', 'Tartu Teoloogia Akadeemia'),
(47473, 40182, 'pl', 'name', 'Wyższa Szkoła Humanistyczno-Przyrodnicza w Sandomierzu'),
(47474, 40183, 'en', 'name', 'Süleyman Şah University'),
(47475, 40183, 'tr', 'name', 'Süleyman Şah Üniversitesi'),
(47476, 40184, 'no', 'name', 'Forsvarets HĆøgskoler'),
(47477, 40184, 'en', 'name', 'Norwegian Defence University College'),
(47478, 40185, 'en', 'name', 'Polytechnic Pula'),
(47479, 40186, 'en', 'name', 'Westerdals Oslo School of Arts, Communication and Technology'),
(47480, 40187, 'en', 'name', 'Technological Educational Institute of Central Greece'),
(47481, 40187, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Στερεάς ΕλλάΓας'),
(47482, 40188, 'en', 'name', 'Turkish-German University'),
(47483, 40188, 'tr', 'name', 'Türk-Alman Üniversitesi'),
(47484, 40188, 'de', 'name', 'Türkisch-Deutsche Universität'),
(47485, 40189, 'pt', 'name', 'Instituto Superior de Gestão BancÔria'),
(47486, 40189, 'en', 'name', 'Portuguese School of Bank Management'),
(47487, 40190, 'en', 'name', 'Social Integration State Agency'),
(47488, 40190, 'lv', 'name', 'Sociālās Integrācijas Valsts Aģentūrā'),
(47489, 40191, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Koninie'),
(47490, 40191, 'en', 'name', 'State University of Applied Sciences in Konin'),
(47491, 40192, 'cs', 'name', 'VysokĆ” Å kola SociĆ”lně SprĆ”vnĆ­'),
(47492, 40193, 'en', 'name', 'Technological Educational Institute of Central Macedonia'),
(47493, 40193, 'el', 'name', 'ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ®Ļ‚ ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(47494, 40194, 'en', 'name', 'Police Academy'),
(47495, 40194, 'hr', 'name', 'Policijska akademija'),
(47496, 40195, 'de', 'name', 'SRH Hochschule Berlin'),
(47497, 40195, 'en', 'name', 'SRH University Berlin'),
(47498, 40196, 'de', 'name', 'SRH Hochschule Heidelberg'),
(47499, 40197, 'de', 'name', 'SRH Hochschule für Gesundheit Gera'),
(47500, 40198, 'en', 'name', 'Natural Science and Technical Academy Isny'),
(47501, 40198, 'de', 'name', 'Naturwissenschaftlich-Technische Akademie Isny'),
(47502, 40199, 'et', 'name', 'KƵrgem Usuteaduslik Seminar'),
(47503, 40199, 'en', 'name', 'Tartu Theological Seminary'),
(47504, 40200, 'en', 'name', 'Artevelde University College Ghent'),
(47505, 40201, 'en', 'name', 'Lübeck Academy of Music'),
(47506, 40201, 'de', 'name', 'Musikhochschule Lübeck'),
(47507, 40202, 'de', 'name', 'Hochschule für Agrar- und Umweltpädagogik'),
(47508, 40202, 'en', 'name', 'University College for Agrarian and Environmental Pedagogy'),
(47509, 40203, 'de', 'name', 'Hochschule für Musik Saar'),
(47510, 40204, 'en', 'name', 'Higher School of Agribusiness'),
(47511, 40204, 'pl', 'name', 'Wyższa Szkoła Agrobiznesu w Łomży'),
(47512, 40204, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń Школа Агробизнеса в Ломже'),
(47513, 40205, 'de', 'name', 'Hochschule für Musik Würzburg'),
(47514, 40205, 'en', 'name', 'University of Music Würzburg'),
(47515, 40206, 'de', 'name', 'PƤdagogische Hochschule Viktor Frankl Hochschule'),
(47516, 40207, 'en', 'name', 'Baltic Psychology and Management University College'),
(47517, 40207, 'lv', 'name', 'Baltijas Psiholoģijas un Menedžmenta Augstskola'),
(47518, 40207, 'ru', 'name', 'Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń ŠŸŃŠøŃ…Š¾Š»Š¾Š³ŠøŃ Šø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента'),
(47519, 40208, 'en', 'name', 'SMK University of Applied Social Sciences'),
(47520, 40208, 'lt', 'name', 'Socialiniu mokslu kolegija'),
(47521, 40209, 'nl', 'name', 'Katholieke Pabo Zwolle'),
(47522, 40209, 'en', 'name', 'University of Professional Teacher Education PABO Zwolle'),
(47523, 40210, 'pl', 'name', 'Wyższa Szkoła Przedsiębiorczości i Marketingu w Chrzanowie'),
(47524, 40211, 'de', 'name', 'Staatliche Hochschule für Musik Trossingen'),
(47525, 40211, 'en', 'name', 'Trossingen University of Music'),
(47526, 40212, 'pl', 'name', 'Bydgoska Szkoła Wyższa'),
(47527, 40212, 'en', 'name', 'University of Bydgoszcz'),
(47528, 40213, 'de', 'name', 'Hochschule der Bundesagentur für Arbeit'),
(47529, 40213, 'en', 'name', 'University of Applied Labour Studies of the Federal Employment Agency'),
(47530, 40214, 'en', 'name', 'Georgia Christian University'),
(47531, 40215, 'cs', 'name', 'VysokƔ Skola AplikovanƩho PrƔva'),
(47532, 40216, 'fr', 'name', 'Haute Ɖcole PĆ©dagogique du Valais'),
(47533, 40216, 'de', 'name', 'PƤdagogische Hochschule Wallis'),
(47534, 40217, 'de', 'name', 'Hochschule der Wirtschaft für Management'),
(47535, 40217, 'en', 'name', 'University of Applied Management Studies'),
(47536, 40218, 'et', 'name', 'Eesti Infotehnoloogia Kolledž'),
(47537, 40218, 'en', 'name', 'Estonian Information Technology College'),
(47538, 40219, 'de', 'name', 'Hochschule für Angewandtes Management'),
(47539, 40219, 'en', 'name', 'University of Applied Management'),
(47540, 40220, 'fr', 'name', 'Haute Ɖcole PĆ©dagogique du Canton de Vaud'),
(47541, 40221, 'lt', 'name', 'Vilniaus Verslo Kolegija'),
(47542, 40221, 'en', 'name', 'Vilnius Business College'),
(47543, 40222, 'lt', 'name', 'Vilniaus Kooperacijos Kolegija'),
(47544, 40222, 'en', 'name', 'Vilnius Cooperative College'),
(47545, 40223, 'lt', 'name', 'Vilniaus Kolegija'),
(47546, 40223, 'en', 'name', 'Vilnius University of Applied Sciences'),
(47547, 40224, 'de', 'name', 'Fachhochschule für Management & Kommunikation'),
(47548, 40225, 'lt', 'name', 'Vilniaus Dizaino Kolegija'),
(47549, 40225, 'en', 'name', 'Vilnius College of Design'),
(47550, 40226, 'lt', 'name', 'V. A. Graičiūno AukŔtoji Vadybos Mokykla'),
(47551, 40227, 'lt', 'name', 'Vilniaus technologijų ir dizaino kolegija'),
(47552, 40227, 'en', 'name', 'Vilnius College of Technologies and Design'),
(47553, 40228, 'de', 'name', 'PƤdagogische Hochschule Burgenland'),
(47554, 40228, 'en', 'name', 'University of Education in Burgenland'),
(47555, 40229, 'pl', 'name', 'Szczecińska Szkoła Wyższa Collegium Balticum'),
(47556, 40230, 'en', 'name', 'VƵru County Vocational Training Centre'),
(47557, 40230, 'et', 'name', 'VƵrumaa Kutsehariduskeskus'),
(47558, 40231, 'de', 'name', 'Philosophisch-Theologische Hochschule Benediktbeuern'),
(47559, 40232, 'pl', 'name', 'Wyższa Szkoła Zarządzania i Przedsiębiorczości'),
(47560, 40233, 'de', 'name', 'Philosophisch-Theologische Hochschule SVD St. Augustin'),
(47561, 40234, 'en', 'name', 'Brussels Management School'),
(47562, 40235, 'en', 'name', 'Warsaw Academy of Computer Science, Management and Administration'),
(47563, 40235, 'pl', 'name', 'Wyższa Szkoła Informatyki, Zarządzania i Administracji'),
(47564, 40236, 'en', 'name', 'Academy of Fine Arts Karlsruhe'),
(47565, 40236, 'de', 'name', 'Staatliche Akademie der Bildenden Künste Karlsruhe'),
(47566, 40237, 'fr', 'name', 'Haute Ɖcole en Hainaut'),
(47567, 40238, 'en', 'name', 'Warsaw Management University'),
(47568, 40238, 'pl', 'name', 'Wyższa Szkoła Menedżerska'),
(47569, 40239, 'en', 'name', 'Yeshiva Derech Chaim'),
(47570, 40240, 'en', 'name', 'Academy of Fine Arts Munich'),
(47571, 40240, 'de', 'name', 'Akademie der Bildenden Künste München'),
(47572, 40241, 'de', 'name', 'Fachhochschule Westküste'),
(47573, 40241, 'en', 'name', 'West Coast University of Applied Sciences'),
(47574, 40242, 'en', 'name', 'Cuiavian University'),
(47575, 40242, 'pl', 'name', 'Kujawska Szkoła Wyższa we Włocławku'),
(47576, 40243, 'cs', 'name', 'Westmoravian College Třebƭč'),
(47577, 40244, 'en', 'name', 'Berlin-Weissensee Art Academy'),
(47578, 40244, 'de', 'name', 'Kunsthochschule Berlin-Weißensee'),
(47579, 40245, 'en', 'name', 'Ernst Busch Academy of Dramatic Arts'),
(47580, 40245, 'de', 'name', 'Hochschule für Schauspielkunst Ernst Busch'),
(47581, 40246, 'da', 'name', 'Erhvervsakademi SjƦlland'),
(47582, 40246, 'en', 'name', 'Zealand Institute of Business and Technology'),
(47583, 40247, 'no_lang_code', 'name', 'Zlatarna Celje (Slovenia)'),
(47584, 40248, 'fr', 'name', 'Haute Ɖcole de la Province de LiĆØge'),
(47585, 40249, 'de', 'name', 'Fachhochschule für öffentliche Verwaltung, Polizei und Rechtspflege des Landes Mecklenburg-Vorpommern'),
(47586, 40250, 'en', 'name', 'Zemaitija College'),
(47587, 40250, 'lt', 'name', 'Žemaitijos Kolegija'),
(47588, 40251, 'fr', 'name', 'AcadƩmie des Beaux-Arts de Tournai'),
(47589, 40252, 'de', 'name', 'PƤdagogische Hochschule Zug'),
(47590, 40252, 'en', 'name', 'University of Teacher Education Zug'),
(47591, 40253, 'fr', 'name', 'AcadƩmie Royale des Beaux-Arts'),
(47592, 40253, 'nl', 'name', 'Koninklijke Academie voor Schone Kunsten van Brussel'),
(47593, 40254, 'de', 'name', 'Hochschule der Bildenden Künste Saar'),
(47594, 40255, 'de', 'name', 'Norddeutsche Hochschule für Rechtspflege'),
(47595, 40256, 'fr', 'name', 'Académie Royale des Beaux-Arts de Liège'),
(47596, 40257, 'de', 'name', 'Fachhochschule für Rechtspflege Nordrhein Westfalen'),
(47597, 40258, 'de', 'name', 'SRH Hochschule für Wirtschaft und Medien Calw'),
(47598, 40259, 'de', 'name', 'Fachhochschule für Finanzen Nordrhein Westfalen'),
(47599, 40260, 'de', 'name', 'Hochschule für Gesundheit & Sport, Technik & Kunst'),
(47600, 40261, 'de', 'name', 'Hochschule für Kunsttherapie Nürtingen'),
(47601, 40262, 'fr', 'name', 'Conservatoire Royal de LiĆØge'),
(47602, 40262, 'nl', 'name', 'Koninklijk Conservatorium Luik'),
(47603, 40262, 'en', 'name', 'Royal Conservatory of LiĆØge'),
(47604, 40263, 'hr', 'name', 'Fakultet za Mediteranske Poslovne Studije'),
(47605, 40264, 'hr', 'name', 'Fakultet za menadžment Herceg Novi'),
(47606, 40265, 'de', 'name', 'Fachhochschule für öffentliche Verwaltung Nordrhein-Westfalen'),
(47607, 40265, 'en', 'name', 'University of Applied Sciences for Public Administration and Management'),
(47608, 40266, 'fr', 'name', 'Ɖcole de Recherche Graphique'),
(47609, 40267, 'de', 'name', 'IB Hochschule'),
(47610, 40268, 'de', 'name', 'Hochschule für Finanzen Rheinland Pfalz'),
(47611, 40269, 'fr', 'name', 'La Cambre'),
(47612, 40270, 'en', 'name', 'AMD Academy of Fashion and Design'),
(47613, 40270, 'de', 'name', 'Akademie Mode & Design'),
(47614, 40271, 'en', 'name', 'AKAD University'),
(47615, 40272, 'fr', 'name', 'Ɖcole SupĆ©rieure des Arts de l''Image Le 75'),
(47616, 40273, 'de', 'name', 'Merz Akademie'),
(47617, 40274, 'en', 'name', 'European Fernhochschule Hamburg'),
(47618, 40274, 'de', 'name', 'EuropƤische Fernhochschule Hamburg'),
(47619, 40275, 'de', 'name', 'Hamburger Fern-Hochschule'),
(47620, 40276, 'fr', 'name', 'Ɖcole SupĆ©rieure des Arts Saint-Luc de LiĆØge'),
(47621, 40277, 'pl', 'name', 'Wyższa Szkoła Zdrowia Urody i Edukacji'),
(47622, 40278, 'pl', 'name', 'Toruńska Wyższa Szkoła Przedsiębiorczości'),
(47623, 40279, 'fr', 'name', 'Institut des Arts de Diffusion'),
(47624, 40280, 'de', 'name', 'Fachhochschule für Verwaltung des Saarlandes'),
(47625, 40281, 'de', 'name', 'Fachhochschule der Sächsischen Verwaltung Meißen'),
(47626, 40282, 'fr', 'name', 'Institut National SupƩrieur des Arts du Spectacle et des Techniques de Diffusion'),
(47627, 40283, 'fr', 'name', 'Institut SupƩrieur de Musique et de PƩdagogie'),
(47628, 40284, 'de', 'name', 'Hochschule der SƤchsischen Polizei'),
(47629, 40284, 'en', 'name', 'Saxon Police Force'),
(47630, 40285, 'de', 'name', 'Accadis Hochschule Bad Homburg'),
(47631, 40286, 'fr', 'name', 'Ɖcole d''Enseignement SupĆ©rieur d''Art de Bordeaux'),
(47632, 40287, 'en', 'name', 'Arts²'),
(47633, 40288, 'de', 'name', 'PƤdagogische Hochschule Thurgau'),
(47634, 40288, 'en', 'name', 'Thurgau University of Teacher Education'),
(47635, 40289, 'de', 'name', 'Wilhelm Büchner Hochschule'),
(47636, 40290, 'ro', 'name', 'Universitatea Avram Iancu'),
(47637, 40291, 'de', 'name', 'Provadis Hochschule'),
(47638, 40291, 'en', 'name', 'Provadis School of International Management and Technology'),
(47639, 40292, 'de', 'name', 'Fachhochschule Polizei Sachsen-Anhalt'),
(47640, 40292, 'en', 'name', 'University of Applied Police Sciences Saxony Anhalt'),
(47641, 40293, 'de', 'name', 'Diploma Hochschule'),
(47642, 40293, 'en', 'name', 'Diploma University'),
(47643, 40294, 'de', 'name', 'Fachhochschule für Verwaltung und Dienstleistung');
INSERT INTO `ror_settings` VALUES
(47644, 40295, 'fr', 'name', 'Haute Ɖcole de la Province de Namur'),
(47645, 40296, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Bretagne'),
(47646, 40297, 'fr', 'name', 'Haute Ɖcole de la Ville de LiĆØge'),
(47647, 40298, 'fr', 'name', 'Institut RĆ©gional d’Administration de Lille'),
(47648, 40299, 'fr', 'name', 'Ɖcole Pratique des Hautes Ɖtudes Commerciales'),
(47649, 40300, 'fr', 'name', 'Haute Ɖcole Francisco Ferrer'),
(47650, 40301, 'fr', 'name', 'Ɖcole EuropĆ©enne SupĆ©rieure d''Art de Bretagne'),
(47651, 40302, 'fr', 'name', 'Haute Ɖcole GalilĆ©e'),
(47652, 40303, 'de', 'name', 'Private Hochschule für Wirtschaft und Technik'),
(47653, 40304, 'de', 'name', 'Hochschule für Medien, Kommunikation und Wirtschaft'),
(47654, 40304, 'en', 'name', 'University of Applied Sciences for Media Communication and Business'),
(47655, 40305, 'fr', 'name', 'Haute Ɖcole Libre de Bruxelles Ilya Prigogine'),
(47656, 40306, 'fr', 'name', 'ECAM Rennes Louis de Broglie'),
(47657, 40307, 'fr', 'name', 'Haute Ɖcole Libre Mosane'),
(47658, 40308, 'de', 'name', 'Dekra Hochschule für Medien'),
(47659, 40309, 'fr', 'name', 'Ɖcole des Avocats Nord-Ouest'),
(47660, 40310, 'de', 'name', 'Fachhochschule des Mittelstands'),
(47661, 40311, 'fr', 'name', 'Ɖcole des Avocats du Grand Ouest'),
(47662, 40312, 'fr', 'name', 'Haute Ɖcole de Namur-LiĆØge-Luxembourg'),
(47663, 40313, 'fr', 'name', 'Institut SupĆ©rieur d''Ɖlectronique de Paris'),
(47664, 40314, 'de', 'name', 'CVJM-Hochschule'),
(47665, 40314, 'en', 'name', 'International YMCA University of Applied Sciences'),
(47666, 40315, 'en', 'name', 'International School of Management'),
(47667, 40316, 'de', 'name', 'Hochschule Weserbergland'),
(47668, 40317, 'de', 'name', 'SRH Hochschule für Logistik und Wirtschaft'),
(47669, 40318, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art et Design de Saint-Ɖtienne'),
(47670, 40319, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art des PyrĆ©nĆ©es'),
(47671, 40320, 'fr', 'name', 'Ɖcole de Formation Professionnelle des Barreaux de la Cour d''Appel de Paris'),
(47672, 40321, 'en', 'name', 'University of Applied Sciences Europe'),
(47673, 40322, 'de', 'name', 'Fachhochschule der Wirtschaft'),
(47674, 40323, 'fr', 'name', 'PƓle SupƩrieur d''Enseignement Artistique of Paris Boulogne-Billancourt'),
(47675, 40324, 'fr', 'name', 'Haute Ɖcole des Arts du Rhin'),
(47676, 40325, 'fr', 'name', 'Institut RƩgional d''Administration'),
(47677, 40326, 'de', 'name', 'Deutsche Hochschule für Prävention und Gesundheitsmanagement'),
(47678, 40327, 'en', 'name', 'Federal University of Applied Administrative Sciences'),
(47679, 40327, 'de', 'name', 'Hochschule des Bundes für öffentliche Verwaltung'),
(47680, 40327, 'fr', 'name', 'Ɖcole supĆ©rieure fĆ©dĆ©rale d’administration publique'),
(47681, 40328, 'fr', 'name', 'Ɖcole des Officiers de la Gendarmerie Nationale'),
(47682, 40329, 'de', 'name', 'PƤdagogische Hochschule Niederƶsterreich'),
(47683, 40330, 'fr', 'name', 'Ɖcole SupĆ©rieure du Bois'),
(47684, 40331, 'de', 'name', 'Kirchliche PƤdagogische Hochschule Edith Stein'),
(47685, 40332, 'de', 'name', 'Hochschule für Telekommunikation Leipzig'),
(47686, 40333, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art et de Design d''OrlĆ©ans'),
(47687, 40334, 'fr', 'name', 'Institut RƩgional d''Administration de Lyon'),
(47688, 40335, 'fr', 'name', 'Ɖcole Nationale d''Administration PĆ©nitentiaire'),
(47689, 40336, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art et de Design Tours-Angers-Le Mans'),
(47690, 40337, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Arts & MĆ©dias de Caen/Cherbourg'),
(47691, 40338, 'fr', 'name', 'Ɖcole SupĆ©rieure Angevine d''Informatique et de Productique'),
(47692, 40339, 'fr', 'name', 'Institut Textile et Chimique'),
(47693, 40340, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art et de Design de Reims'),
(47694, 40341, 'fr', 'name', 'Ɖcole des Avocats RhĆ“ne-Alpes'),
(47695, 40342, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Art et de Design de Nancy'),
(47696, 40343, 'en', 'name', 'Special Military School of Saint-Cyr'),
(47697, 40343, 'fr', 'name', 'Ɖcole SpĆ©ciale Militaire de Saint-Cyr'),
(47698, 40344, 'fr', 'name', 'Ɖcole Militaire Interarmes'),
(47699, 40345, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Art'),
(47700, 40346, 'de', 'name', 'Hochschule für Polizei Baden-Württemberg'),
(47701, 40347, 'fr', 'name', 'Institut RƩgional d''Administration de Metz'),
(47702, 40348, 'en', 'name', 'International and European Law School'),
(47703, 40349, 'de', 'name', 'Hochschule für den öffentlichen Dienst in Bayern'),
(47704, 40350, 'fr', 'name', 'Ɖcole SupĆ©rieure d''IngĆ©nieurs des Travaux de la Construction de Metz'),
(47705, 40351, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Paris-Belleville'),
(47706, 40352, 'fr', 'name', 'Ɖcole Nationale des Greffes'),
(47707, 40353, 'fr', 'name', 'Ɖcole SupĆ©rieure d''IngĆ©nieurs des Travaux de la Construction de Cachan'),
(47708, 40354, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art du Nord-Pas-de-Calais'),
(47709, 40355, 'de', 'name', 'Fachhochschule für Finanzen Brandenburg'),
(47710, 40356, 'de', 'name', 'Hochschule für Musik Freiburg'),
(47711, 40357, 'fr', 'name', 'Institut Polytechnique Saint-Louis'),
(47712, 40358, 'de', 'name', 'Hochschule für Ɩffentliche Verwaltung Bremen'),
(47713, 40359, 'fr', 'name', 'Ɖcole de Biologie Industrielle'),
(47714, 40360, 'fr', 'name', 'Institut RƩgional d''Administration de Bastia'),
(47715, 40361, 'de', 'name', 'Akademie der Polizei Hamburg'),
(47716, 40362, 'en', 'name', 'German open Business School'),
(47717, 40362, 'de', 'name', 'Hochschule für Wirtschaft und Verwaltung'),
(47718, 40363, 'de', 'name', 'Hessische Hochschule für Finanzen und Rechtspflege'),
(47719, 40364, 'en', 'name', 'European University of Applied Sciences'),
(47720, 40364, 'de', 'name', 'EuropƤische Fachhochschule Rhein/Erft'),
(47721, 40365, 'de', 'name', 'SRH Hochschule der Populären Künste'),
(47722, 40366, 'en', 'name', 'Higher and Technical Education Department'),
(47723, 40367, 'en', 'name', 'All-Russian Research Institute of Agricultural Microbiology'),
(47724, 40368, 'en', 'name', 'Institute of Chemistry, Far Eastern Branch of the Russian Academy of Sciences'),
(47725, 40369, 'en', 'name', 'Research Institute of General Pathology and Pathophysiology, the Russian Academy of Medical Sciences'),
(47726, 40369, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей патологии Šø патофизиологии'),
(47727, 40370, 'en', 'name', 'Mental Health Research Center of Russian Academy of Medical Sciences'),
(47728, 40370, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр ŠŸŃŠøŃ…ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š—Š“Š¾Ń€Š¾Š²ŃŒŃ Š ŠŠœŠ'),
(47729, 40371, 'en', 'name', 'V.V. Dokuchaev Soil Science Institute'),
(47730, 40372, 'en', 'name', 'All-Russian Scientific Research and Technological Institute of Poultry Russian Academy of Agricultural Sciences'),
(47731, 40372, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ птицевоГства Российской акаГемии ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Ń… наук'),
(47732, 40373, 'en', 'name', 'Research Institute of Fundamental and Clinical Immunology'),
(47733, 40373, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ Šø клинической иммунологии'),
(47734, 40374, 'en', 'name', 'Research Institute of Physiology and Fundamental Medicine of the Siberian Branch of the Russian Academy of Medical Sciences'),
(47735, 40374, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии Šø Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины»'),
(47736, 40375, 'en', 'name', 'Russian Research Institute of Fruit Crop Breeding'),
(47737, 40375, 'ru', 'name', 'Всероссийского Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° селекции плоГовых ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€'),
(47738, 40376, 'en', 'name', 'All-Russian Research Institute of Agricultural Biotechnology Russian Academy of Agricultural Sciences'),
(47739, 40376, 'ru', 'name', 'Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ биотехнологии [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(47740, 40377, 'en', 'name', 'Federal Research Centre of Nutrition and Biotechnology'),
(47741, 40377, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠøŃ‚Š°Š½ŠøŃ'),
(47742, 40378, 'en', 'name', 'Academy of Music Vincenzo Bellini'),
(47743, 40378, 'it', 'name', 'Conservatorio di Musica Vincenzo Bellini di Palermo'),
(47744, 40379, 'en', 'name', 'North West Boroughs Healthcare NHS Foundation Trust'),
(47745, 40380, 'pt', 'name', 'Associação Desportiva e Cultural da Escola Preparatória Diogo Cão'),
(47746, 40381, 'no_lang_code', 'name', 'American Journal Experts (United States)'),
(47747, 40382, 'no_lang_code', 'name', 'Celfinet (Portugal)'),
(47748, 40383, 'pl', 'name', 'Śląska Wyższa Szkoła Informatyczno-Medyczna'),
(47749, 40384, 'no_lang_code', 'name', 'Argos Cement (Colombia)'),
(47750, 40384, 'es', 'name', 'Cementos Argos'),
(47751, 40385, 'en', 'name', 'Austrian Archeological Institute'),
(47752, 40385, 'de', 'name', 'Ɩsterreichisches ArchƤologisches Institut'),
(47753, 40386, 'no_lang_code', 'name', 'Amway (United States)'),
(47754, 40387, 'es', 'name', 'Biblioteca Nacional de Colombia'),
(47755, 40387, 'en', 'name', 'National Library of Colombia'),
(47756, 40388, 'es', 'name', 'Ayuntamiento De Tomelloso'),
(47757, 40389, 'it', 'name', 'Accademia Nazionale dei Lincei'),
(47758, 40390, 'en', 'name', 'B. V. Patel Pharmaceutical Education and Research Development Centre'),
(47759, 40391, 'en', 'name', 'Birla Institute of Technology and Science - Hyderabad Campus'),
(47760, 40392, 'en', 'name', 'Center for Global Development'),
(47761, 40393, 'en', 'name', 'Birla Institute of Technology and Science, Pilani - Dubai Campus'),
(47762, 40393, 'hi', 'name', 'बिरला ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤Ŗą¤æą¤²ą¤¾ą¤Øą„€-ą¤¦ą„ą¤¬ą¤ˆ ą¤•ą„ˆą¤‚ą¤Ŗą¤ø'),
(47763, 40394, 'en', 'name', 'Pure Earth'),
(47764, 40395, 'no_lang_code', 'name', 'Accenture (Spain)'),
(47765, 40396, 'pt', 'name', 'Banco Central do Brasil'),
(47766, 40396, 'en', 'name', 'Central Bank of Brazil'),
(47767, 40397, 'en', 'name', 'Central Bank of the Republic of Turkey'),
(47768, 40397, 'tr', 'name', 'Türkiye Cumhuriyet Merkez Bankası'),
(47769, 40398, 'en', 'name', 'Anna Freud Centre'),
(47770, 40399, 'pt', 'name', 'Administração Regional de Saúde de Lisboa e Vale do Tejo'),
(47771, 40400, 'en', 'name', 'Bodoland University'),
(47772, 40400, 'hi', 'name', 'बऔ''ą¤²ą„‡ą¤£ą„ą¤” ą¤¬ą„ą¤¹ą„ą¤®ą¤«ą¤°ą¤¾ą¤Æą¤øą¤¾ą¤²ą¤æ'),
(47773, 40401, 'en', 'name', 'Bangladesh Centre for Advanced Studies'),
(47774, 40402, 'en', 'name', 'Central Mindanao Colleges'),
(47775, 40403, 'en', 'name', 'Bangladesh Council of Scientific and Industrial Research'),
(47776, 40403, 'bn', 'name', 'বাংলাদেশ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦¶ą¦æą¦²ą§ą¦Ŗ গবেষণা পরিষদ'),
(47777, 40404, 'en', 'name', 'Bronx High School of Science'),
(47778, 40405, 'de', 'name', 'Bank für Tirol und Vorarlberg'),
(47779, 40406, 'no_lang_code', 'name', 'Cniitmash (Russia)'),
(47780, 40406, 'ru', 'name', 'Ń†Š½ŠøŠøŃ‚Š¼Š°Ńˆ'),
(47781, 40407, 'fr', 'name', 'Banque de France'),
(47782, 40408, 'en', 'name', 'Base Training'),
(47783, 40409, 'en', 'name', 'Animal Health Training and Consultancy Service'),
(47784, 40410, 'en', 'name', 'Busan Institute of Science and Technology'),
(47785, 40410, 'ko', 'name', 'ė¶€ģ‚°ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(47786, 40411, 'en', 'name', 'Asian Institute of Public Health'),
(47787, 40412, 'pt', 'name', 'Caixa Cultural'),
(47788, 40413, 'no_lang_code', 'name', 'Centre d''Higiene Mental Les Corts (Spain)'),
(47789, 40414, 'pt', 'name', 'Associação Cultural de Arte e Comunicação Oficinas do Convento'),
(47790, 40415, 'pt', 'name', 'Associação Empresarial de Paços de Ferreira'),
(47791, 40416, 'en', 'name', 'Associated Board of the Royal Schools of Music'),
(47792, 40417, 'no_lang_code', 'name', 'Beginning (Bangladesh)'),
(47793, 40418, 'ro', 'name', 'Universitatea Alma Mater Sibiu'),
(47794, 40419, 'en', 'name', 'Association of Chartered Certified Accountants'),
(47795, 40420, 'en', 'name', 'Association of Corporate Treasurers'),
(47796, 40421, 'en', 'name', 'Belarusian Medical Academy of Post-Graduate Education'),
(47797, 40421, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š¼ŠµŠ“Ń‹Ń†Ń‹Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń ŠæŠ°ŃŠ»ŃŠ“Ń‹ŠæŠ»Š¾Š¼Š½Š°Š¹ Š°Š“ŃƒŠŗŠ°Ń†Ń‹Ń–'),
(47798, 40422, 'en', 'name', 'Centre for the Rehabilitation of the Paralysed'),
(47799, 40423, 'en', 'name', 'Cambridge School'),
(47800, 40424, 'en', 'name', 'Royal Brisbane and Women''s Hospital Foundation'),
(47801, 40425, 'pt', 'name', 'Centro Cultural Vila Flor'),
(47802, 40426, 'ca', 'name', 'Unió Catalana de Centres de Desenvolupament Infantil i Atenció Precoç'),
(47803, 40427, 'pt', 'name', 'Centro de Formação Profissional para a Indústria Cerâmica'),
(47804, 40428, 'en', 'name', 'Chinese Students and Scholars Association of Ireland'),
(47805, 40428, 'ga', 'name', 'ēˆ±å°”å…°äø­å›½å­¦ē”Ÿå­¦č€…č”åˆč°Šä¼š'),
(47806, 40429, 'es', 'name', 'Centro de AnÔlisis y Difusión de la Economía Paraguya'),
(47807, 40430, 'pt', 'name', 'ColƩgio Pedro II'),
(47808, 40431, 'pt', 'name', 'ColƩgio Teresiano de Braga'),
(47809, 40432, 'es', 'name', 'Centro de Investigación Biomédica en Red de Epidemiología y Salud Pública'),
(47810, 40433, 'en', 'name', 'Australian Bureau of Statistics'),
(47811, 40434, 'en', 'name', 'Royal College of Emergency Medicine'),
(47812, 40435, 'no_lang_code', 'name', 'Cummins (United States)'),
(47813, 40436, 'en', 'name', 'Dong Thap University'),
(47814, 40437, 'no_lang_code', 'name', 'Cedar Fair (United States)'),
(47815, 40438, 'no_lang_code', 'name', 'Vale (Brazil)'),
(47816, 40439, 'pt', 'name', 'Centro de Medicina de Reabilitacao do Alcoitão'),
(47817, 40440, 'pt', 'name', 'Citeforma'),
(47818, 40441, 'es', 'name', 'Davara & Davara Asesores JurĆ­dicos'),
(47819, 40442, 'en', 'name', 'Computational Intelligence and Information Systems Lab'),
(47820, 40443, 'en', 'name', 'Dryad Digital Repository'),
(47821, 40444, 'pt', 'name', 'Centro DramĆ”tico de Ɖvora'),
(47822, 40445, 'en', 'name', 'Citigroup'),
(47823, 40446, 'no_lang_code', 'name', 'Dryas Arqueologia (Portugal)'),
(47824, 40447, 'en', 'name', 'City of Cape Town'),
(47825, 40447, 'xh', 'name', 'IsiXeko SaseKapa'),
(47826, 40447, 'af', 'name', 'Stad Kaapstad'),
(47827, 40448, 'pt', 'name', 'Centro Hospitalar do TĆ¢mega e Sousa'),
(47828, 40449, 'en', 'name', 'Ear Science Institute Australia'),
(47829, 40450, 'es', 'name', 'Centro Nacional de Investigación y Desarrollo Tecnológico'),
(47830, 40451, 'en', 'name', 'East Avenue Medical Center'),
(47831, 40452, 'en', 'name', 'Clear Passage Physical Therapy'),
(47832, 40453, 'pt', 'name', 'Centro UniversitƔrio Cesmac'),
(47833, 40454, 'pt', 'name', 'Confraria de Santa Luzia'),
(47834, 40455, 'en', 'name', 'Deen Dayal Upadhyay Hospital'),
(47835, 40456, 'pt', 'name', 'Conservatório de Música de Coimbra'),
(47836, 40457, 'no_lang_code', 'name', 'Turner Broadcasting System (United States)'),
(47837, 40458, 'pt', 'name', 'Conservatório de Música do Porto'),
(47838, 40459, 'en', 'name', 'Defense Information Systems Agency'),
(47839, 40460, 'en', 'name', 'Del Valle Independent School District'),
(47840, 40461, 'en', 'name', 'Center for Economic Research and Graduate Education – Economics Institute'),
(47841, 40462, 'es', 'name', 'Consorci Sanitari del Maresme'),
(47842, 40462, 'en', 'name', 'Maresme Health Consortium'),
(47843, 40463, 'en', 'name', 'Cheetah Conservation Fund'),
(47844, 40464, 'no_lang_code', 'name', 'Eesti Energia (Estonia)'),
(47845, 40465, 'en', 'name', 'Cooperative Institute for Climate and Satellites'),
(47846, 40466, 'en', 'name', 'Denizli Special Provincial Administration'),
(47847, 40466, 'tr', 'name', 'Denizli Yatırım İzleme ve Koordinasyon Başkanlığı'),
(47848, 40467, 'en', 'name', 'Chemistry and Chemical Engineering Research Center of Iran'),
(47849, 40468, 'sv', 'name', 'Statens jordbruksverk'),
(47850, 40468, 'en', 'name', 'Swedish Board of Agriculture'),
(47851, 40469, 'en', 'name', 'Child Health Research Foundation'),
(47852, 40470, 'en', 'name', 'Department of Education Cagayan de Oro'),
(47853, 40471, 'es', 'name', 'Confederación Estatal de Personas Sordas'),
(47854, 40472, 'en', 'name', 'Department of Education Pagadian'),
(47855, 40473, 'ro', 'name', 'Camera de Comerț Industrie și Agricultură Timișoara'),
(47856, 40474, 'en', 'name', 'Desert Research Center'),
(47857, 40475, 'no_lang_code', 'name', 'ESiOR Oy (Finland)'),
(47858, 40476, 'no_lang_code', 'name', 'Companhia de Eletricidade do Estado da Bahia (Brazil)'),
(47859, 40477, 'no_lang_code', 'name', 'Deurali Janta Pharmaceuticals (Nepal)'),
(47860, 40478, 'en', 'name', 'Culham Centre for Fusion Energy'),
(47861, 40479, 'no_lang_code', 'name', 'Deutsche Bank (Germany)'),
(47862, 40480, 'en', 'name', 'European Central Bank'),
(47863, 40480, 'de', 'name', 'EuropƤischen Zentralbank'),
(47864, 40481, 'pt', 'name', 'Faculdade de Itaituba'),
(47865, 40482, 'en', 'name', 'European Graduate School'),
(47866, 40483, 'pt', 'name', 'Faculdade de Medicina de JundiaĆ­'),
(47867, 40484, 'no_lang_code', 'name', 'Dhaka Regency Hotel and Resort (Bangladesh)'),
(47868, 40485, 'en', 'name', 'European Parliament'),
(47869, 40485, 'nl', 'name', 'Europees Parlement'),
(47870, 40485, 'de', 'name', 'EuropƤisches Parlament'),
(47871, 40485, 'fr', 'name', 'Parlement EuropƩen'),
(47872, 40486, 'en', 'name', 'Federal Reserve Bank of New York'),
(47873, 40487, 'no_lang_code', 'name', 'Epic Systems (United States)'),
(47874, 40488, 'en', 'name', 'European Patent Organisation'),
(47875, 40489, 'pt', 'name', 'Faculdade Redentor'),
(47876, 40490, 'pt', 'name', 'Faculdade Ruy Barbosa'),
(47877, 40491, 'pt', 'name', 'Faculdade SĆ£o Lucas'),
(47878, 40492, 'pt', 'name', 'Faculdade SumarƩ'),
(47879, 40493, 'en', 'name', 'European Union of Medical Specialists'),
(47880, 40493, 'nl', 'name', 'Union EuropƩenne des MƩdecins SpƩcialistes'),
(47881, 40494, 'pt', 'name', 'Faculdades EST'),
(47882, 40495, 'pt', 'name', 'Faculdades Integradas AparĆ­cio Carvalho'),
(47883, 40496, 'pt', 'name', 'Faculdades Integradas de Cacoal'),
(47884, 40497, 'ca', 'name', 'Fidmag Germanes HospitalĆ ries'),
(47885, 40497, 'es', 'name', 'Fidmag Hermanas Hospitalarias'),
(47886, 40497, 'en', 'name', 'Fidmag Sisters Hospitallers'),
(47887, 40498, 'pt', 'name', 'Faculdades Integradas de Taquara'),
(47888, 40499, 'pt', 'name', 'Faculdades Integradas do Vale do IvaĆ­'),
(47889, 40500, 'pt', 'name', 'Fundação Técnico Educacional Souza Marques'),
(47890, 40501, 'no_lang_code', 'name', 'Fleury S.A. (Brazil)'),
(47891, 40502, 'pt', 'name', 'Escola BƔsica Integrada da Horta'),
(47892, 40503, 'pt', 'name', 'Fundo para a Protecção dos Animais Selvagens'),
(47893, 40504, 'no_lang_code', 'name', 'Return on Intelligence (Latvia)'),
(47894, 40505, 'pt', 'name', 'Escola de Mar'),
(47895, 40505, 'en', 'name', 'School of Sea'),
(47896, 40506, 'it', 'name', 'Fondazione Antonio Ratti'),
(47897, 40507, 'no_lang_code', 'name', 'Faculty of 1000 (United Kingdom)'),
(47898, 40508, 'pt', 'name', 'Externato da Luz'),
(47899, 40509, 'pt', 'name', 'Faculdade CƔsper Lƭbero'),
(47900, 40510, 'en', 'name', 'Faculty of Public Health'),
(47901, 40511, 'pt', 'name', 'Faculdade Novos Horizontes'),
(47902, 40512, 'pt', 'name', 'Faculdade da Serra GaĆŗcha'),
(47903, 40513, 'pt', 'name', 'Escola Profissional Profitecla'),
(47904, 40514, 'it', 'name', 'Fondazione Luigi Einaudi'),
(47905, 40514, 'en', 'name', 'Luigi Einaudi Foundation'),
(47906, 40515, 'pt', 'name', 'Faculdade de Administração Ciências Educação e Letras'),
(47907, 40516, 'pt', 'name', 'Faculdade de Desenvolvimento do Rio Grande do Sul'),
(47908, 40517, 'pt', 'name', 'João Pinheiro Foundation'),
(47909, 40518, 'pt', 'name', 'Agrupamento de Escolas Nuno Ɓlvares'),
(47910, 40519, 'pt', 'name', 'Faculdades Milton Campos'),
(47911, 40520, 'pt', 'name', 'Escola SecundÔria Quinta do Marquês'),
(47912, 40521, 'pt', 'name', 'Fundacao Joaquim Nabuco'),
(47913, 40522, 'fr', 'name', 'AcadƩmie de droit international de La Haye'),
(47914, 40522, 'en', 'name', 'Hague Academy of International Law'),
(47915, 40523, 'pt', 'name', 'Escola Superior Aberta do Brasil'),
(47916, 40524, 'pt', 'name', 'For Mar Centro de Formação Profissional das Pescas e do Mar'),
(47917, 40525, 'en', 'name', 'Ghana Education Service'),
(47918, 40526, 'pt', 'name', 'Escola Superior de Ciências da Santa Casa de Misericórdia de Vitória'),
(47919, 40527, 'en', 'name', 'Health Education North West'),
(47920, 40528, 'es', 'name', 'Fundación Ciencias de la Documentación'),
(47921, 40529, 'en', 'name', 'Healthcare in Sweden'),
(47922, 40530, 'en', 'name', 'Gokula Krishna College of Pharmacy'),
(47923, 40531, 'eu', 'name', 'Osasun Ikaskuntza Fundazioa'),
(47924, 40532, 'es', 'name', 'Hospital Militar Central'),
(47925, 40533, 'en', 'name', 'Government Medical College'),
(47926, 40534, 'no_lang_code', 'name', 'Freelancer (Portugal)'),
(47927, 40535, 'no_lang_code', 'name', 'Hiep Phuoc Power (Vietnam)'),
(47928, 40536, 'no_lang_code', 'name', 'Hovione (Portugal)'),
(47929, 40537, 'en', 'name', 'Government of Khyber Pakhtunkhwa'),
(47930, 40537, 'ur', 'name', 'Ų­Ś©ŁˆŁ…ŲŖŁ Ų®ŪŒŲØŲ±Ł¾Ų®ŲŖŁˆŁ†Ų®ŁˆŲ§'),
(47931, 40537, 'ps', 'name', 'دخیبر Ł¾ŚšŲŖŁˆā€ŒŁ†Ų®ŁˆŲ§Ų­Ś©ŁˆŁ…ŲŖ'),
(47932, 40538, 'en', 'name', 'Information Technology Institute'),
(47933, 40539, 'en', 'name', 'Government of Nepal'),
(47934, 40539, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² सरकार'),
(47935, 40540, 'en', 'name', 'G.S. Science, Arts And Commerce College'),
(47936, 40541, 'no_lang_code', 'name', 'Genelux (United States)'),
(47937, 40542, 'no_lang_code', 'name', 'IBM (Denmark)'),
(47938, 40543, 'no_lang_code', 'name', 'IBM (Portugal)'),
(47939, 40544, 'pt', 'name', 'Governo do Estado de Mato Grosso'),
(47940, 40545, 'pt', 'name', 'Instituto Cuiabano de Educação'),
(47941, 40546, 'no_lang_code', 'name', 'Honeywell (India)'),
(47942, 40547, 'en', 'name', 'ICFAI Foundation for Higher Education'),
(47943, 40548, 'en', 'name', 'Hong Kong Academy of Medicine'),
(47944, 40549, 'fr', 'name', 'Institut National des Sciences AppliquƩes et de Technologie'),
(47945, 40549, 'en', 'name', 'National Institute of Applied Science and Technology'),
(47946, 40550, 'no_lang_code', 'name', 'Grameenphone (Bangladesh)'),
(47947, 40550, 'bn', 'name', 'ą¦—ą§ą¦°ą¦¾ą¦®ą§€ą¦£ą¦«ą§‹ą¦Ø'),
(47948, 40551, 'en', 'name', 'Institute of Advanced Studies in Administration'),
(47949, 40551, 'es', 'name', 'Instituto de Estudios Superiores de Administración'),
(47950, 40552, 'es', 'name', 'Instituto Nacional de Cooperación Educativa Socialista'),
(47951, 40553, 'pt', 'name', 'Instituição Toledo de Ensino'),
(47952, 40554, 'pt', 'name', 'Instituto Federal do Rio Grande do Norte'),
(47953, 40555, 'pt', 'name', 'Grupo Ibmec Educacional'),
(47954, 40556, 'en', 'name', 'Institute for Scintillation Materials'),
(47955, 40556, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ†ŠøŠ½Ń‚ŠøŠ»ŃŃ†Ń–Š¹Š½ŠøŃ… матеріалів'),
(47956, 40557, 'es', 'name', 'Institut de Medicina Predictiva i Personalitzada del Cancer'),
(47957, 40557, 'en', 'name', 'Institute of Predictive and Personalized Medicine of Cancer'),
(47958, 40558, 'en', 'name', 'Institute for the International Education of Students'),
(47959, 40559, 'en', 'name', 'International Centre for Education in Islamic Finance'),
(47960, 40560, 'en', 'name', 'Institute of Animal Sciences'),
(47961, 40561, 'no_lang_code', 'name', 'Genmab (Netherlands)'),
(47962, 40562, 'en', 'name', 'Institute of Cell Biology'),
(47963, 40563, 'en', 'name', 'Independent Dance'),
(47964, 40564, 'en', 'name', 'Institute of Chartered Accountants of India'),
(47965, 40565, 'en', 'name', 'Indian Institute of Management Indore'),
(47966, 40565, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‡ą¤‚ą¤¦ą„Œą¤°'),
(47967, 40566, 'en', 'name', 'Institute of Ecology and Genetics of Microorganisms'),
(47968, 40567, 'en', 'name', 'Institute of Magnetism'),
(47969, 40568, 'en', 'name', 'Indian Institute of Remote Sensing'),
(47970, 40569, 'en', 'name', 'Geological Survey of Japan'),
(47971, 40569, 'ja', 'name', 'åœ°č³ŖčŖæęŸ»ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(47972, 40570, 'pt', 'name', 'Instituto da Defesa Nacional'),
(47973, 40570, 'en', 'name', 'National Defense Institute'),
(47974, 40571, 'no_lang_code', 'name', 'Indian Oil Corporation (India)'),
(47975, 40572, 'pt', 'name', 'Instituto de Ensinos Superiores da AmazƓnia'),
(47976, 40573, 'no_lang_code', 'name', 'Thieme Medical Publishers (Germany)'),
(47977, 40574, 'en', 'name', 'V.E. Lashkaryov Institute of Semiconductor Physics'),
(47978, 40574, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізики напівпровіГників ім. Š’.Š„. Š›Š°ŃˆŠŗŠ°Ń€ŃŒŠ¾Š²'),
(47979, 40575, 'en', 'name', 'Institute of Solid State Physics and Semiconductors'),
(47980, 40575, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ фізікі цвёрГага цела і ŠæŠ°ŃžŠæŃ€Š°Š²Š°Š“Š½Ń–ŠŗŠ¾Ńž'),
(47981, 40576, 'en', 'name', 'Institute of Technical Chemistry'),
(47982, 40577, 'fr', 'name', 'Institut PrĆ©paratoire aux Ɖtudes d''IngĆ©nieurs de Monastir'),
(47983, 40578, 'es', 'name', 'Instituto de Investigaciones ElƩctricas'),
(47984, 40579, 'en', 'name', 'Institute of Technology of Cambodia'),
(47985, 40580, 'no_lang_code', 'name', 'Iran Khodro (Iran)'),
(47986, 40580, 'fa', 'name', 'Ų§ŪŒŲ±Ų§Ł† Ų®ŁˆŲÆŲ±Łˆā€Žā€Ž'),
(47987, 40581, 'pt', 'name', 'Instituto AgronƓmico do ParanƔ'),
(47988, 40582, 'es', 'name', 'Instituto Superior de Estudios Psicológicos'),
(47989, 40583, 'pt', 'name', 'Instituto Alergoimuno de Americana'),
(47990, 40584, 'pt', 'name', 'Instituto de Pesquisas EnergƩticas e Nucleares'),
(47991, 40584, 'en', 'name', 'Nuclear Energy Research Institute'),
(47992, 40585, 'en', 'name', 'Jawaharlal Nehru Medical College Hospital'),
(47993, 40586, 'es', 'name', 'Instituto Andaluz del Patrimonio Histórico'),
(47994, 40587, 'no_lang_code', 'name', 'ZOSP RP Wytwórnia Umundurowania Strażackiego (Poland)'),
(47995, 40588, 'pt', 'name', 'ColƩgio Sinodal'),
(47996, 40589, 'no_lang_code', 'name', 'Joaquim Peixoto Azevedo and Sons (Portugal)'),
(47997, 40590, 'pt', 'name', 'Instituto Superior de Teologia Aplicada'),
(47998, 40591, 'pt', 'name', 'Instituto TƩcnico Artƭstico e Profissional de Coimbra'),
(47999, 40592, 'en', 'name', 'Islamic Azad University Kerman'),
(48000, 40592, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کرمان'),
(48001, 40593, 'es', 'name', 'Instituto Católico Chileno de Migración'),
(48002, 40594, 'no_lang_code', 'name', 'JPMorgan Chase & Co (United States)'),
(48003, 40595, 'en', 'name', 'Islamic Azad University of Urmia'),
(48004, 40595, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(48005, 40596, 'es', 'name', 'Instituto Tecnológico de Celaya'),
(48006, 40596, 'en', 'name', 'Technological Institute of Celaya'),
(48007, 40597, 'en', 'name', 'Islamic Azad University, Yazd'),
(48008, 40597, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ یزد'),
(48009, 40598, 'pt', 'name', 'Jornal de NotĆ­cias'),
(48010, 40599, 'es', 'name', 'Instituto Tecnológico de CuliacÔn'),
(48011, 40600, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Mato Grosso'),
(48012, 40601, 'en', 'name', 'Institute for Space Astrophysics and Planetology'),
(48013, 40601, 'it', 'name', 'Istituto Di Astrofisica E Planetologia Spaziali'),
(48014, 40602, 'it', 'name', 'Istituto di Fisica Applicata Nello Carrara'),
(48015, 40602, 'en', 'name', 'Nello Carrara Institute of Applied Physics'),
(48016, 40603, 'en', 'name', 'Kazan State Medical Academy'),
(48017, 40604, 'es', 'name', 'Instituto Tecnologico de Orizaba'),
(48018, 40605, 'en', 'name', 'Kamineni Institute of Dental Sciences'),
(48019, 40606, 'es', 'name', 'Instituto Tecnológico de Tepic'),
(48020, 40607, 'no_lang_code', 'name', 'Agtes (Poland)'),
(48021, 40608, 'es', 'name', 'Instituto Tecnológico de Toluca'),
(48022, 40609, 'es', 'name', 'Instituto Tecnológico de Tuxtla Gutiérrez'),
(48023, 40609, 'en', 'name', 'Tuxtla Gutierrez Institute of Technology'),
(48024, 40610, 'en', 'name', 'IMDEA Energy Institute'),
(48025, 40610, 'es', 'name', 'Instituto IMDEA EnergĆ­a'),
(48026, 40611, 'es', 'name', 'Instituto Tecnologico de Veracruz'),
(48027, 40612, 'de', 'name', 'Kantonsspital Baselland Standort Bruderholz'),
(48028, 40613, 'es', 'name', 'Instituto Nacional de Investigaciones Agricolas'),
(48029, 40614, 'en', 'name', 'Board of Intermediate Education Karachi'),
(48030, 40615, 'no_lang_code', 'name', 'Itron (United States)'),
(48031, 40616, 'nl', 'name', 'Conservatoire royal de Bruxelles'),
(48032, 40616, 'en', 'name', 'Royal Conservatory of Brussels'),
(48033, 40617, 'en', 'name', 'Korea Air Force Academy'),
(48034, 40617, 'ko', 'name', '공군사꓀학교'),
(48035, 40618, 'no_lang_code', 'name', 'Intel (Malaysia)'),
(48036, 40619, 'en', 'name', 'International Advanced Research Centre for Powder Metallurgy and New Materials'),
(48037, 40620, 'en', 'name', 'International Center for Biosaline Agriculture'),
(48038, 40621, 'it', 'name', 'Fondo Internazionale per lo Sviluppo Agricolo'),
(48039, 40621, 'fr', 'name', 'Fonds International de DƩveloppement Agricole'),
(48040, 40621, 'en', 'name', 'International Fund for Agricultural Development'),
(48041, 40622, 'sv', 'name', 'KungƤlvs Sjukhus'),
(48042, 40623, 'en', 'name', 'London Postgraduate Medical and Dental Education'),
(48043, 40624, 'en', 'name', 'International Humanitarian University'),
(48044, 40624, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½Š¾Š³Š¾ Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(48045, 40625, 'en', 'name', 'Marine Hydrophysical Institute'),
(48046, 40625, 'ru', 'name', 'ŠœŠ¾Ń€ŃŠŗŠ¾Š¹ ГиГрофизический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(48047, 40626, 'en', 'name', 'Military Geographical Institute'),
(48048, 40626, 'sr', 'name', 'Vojnogeografski institut'),
(48049, 40627, 'no_lang_code', 'name', 'Laboratório Edol (Portugal)'),
(48050, 40628, 'en', 'name', 'M S Swaminathan Research Foundation'),
(48051, 40629, 'es', 'name', 'Ministerio de Educación Pública'),
(48052, 40630, 'no_lang_code', 'name', 'Mahle (Portugal)'),
(48053, 40631, 'en', 'name', 'Ministry of Foreign Affairs'),
(48054, 40631, 'pt', 'name', 'Ministério dos Negócios Estrangeiros'),
(48055, 40632, 'pt', 'name', 'Museu Nacional de Arte Contemporânea do Chiado'),
(48056, 40633, 'de', 'name', 'Landesschulrat für Tirol'),
(48057, 40634, 'en', 'name', 'Ministry of Education, Science, Technology and Sports'),
(48058, 40635, 'en', 'name', 'Ministry of Education'),
(48059, 40635, 'fa', 'name', 'وزارت Ų¢Ł…ŁˆŲ²Ų“ و پرورؓ Ų§ŪŒŲ±Ų§Ł†ā€Žā€Ž'),
(48060, 40636, 'en', 'name', 'Management Development Institute'),
(48061, 40637, 'fr', 'name', 'Muséum d''Histoire Naturelle de Genève'),
(48062, 40637, 'en', 'name', 'Natural History Museum of Geneva'),
(48063, 40638, 'en', 'name', 'Medway School of Pharmacy'),
(48064, 40639, 'no_lang_code', 'name', 'MAPNA Group (Iran)'),
(48065, 40640, 'en', 'name', 'MOH Holdings'),
(48066, 40641, 'sv', 'name', 'Lasarettet i Ystad'),
(48067, 40642, 'hr', 'name', 'Ministarstvo zdravstva'),
(48068, 40642, 'en', 'name', 'Ministry of Health'),
(48069, 40643, 'en', 'name', 'Ministry of Public Administration'),
(48070, 40643, 'bn', 'name', 'ą¦œą¦Øą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦øą¦Ø ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(48071, 40644, 'en', 'name', 'Mental Health Services'),
(48072, 40644, 'da', 'name', 'Region Hovedstadens psykiatriske hospital'),
(48073, 40645, 'en', 'name', 'Thailand National Metal and Materials Technology Center'),
(48074, 40645, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹‚ąø„ąø«ąø°ą¹ąø„ąø°ąø§ąø±ąøŖąø”ąøøą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(48075, 40646, 'no_lang_code', 'name', 'Mir Technology Holdings (Turkey)'),
(48076, 40647, 'en', 'name', 'Livestock Improvement Corporation'),
(48077, 40648, 'no_lang_code', 'name', 'Siemens (Hungary)'),
(48078, 40649, 'en', 'name', 'National Center for Technology Management'),
(48079, 40650, 'no_lang_code', 'name', 'Mitsubishi Electric (United States)'),
(48080, 40651, 'no_lang_code', 'name', 'L&S Consulting (South Africa)'),
(48081, 40652, 'en', 'name', 'National Centre for Sustainable Coastal Management'),
(48082, 40653, 'en', 'name', 'National Postgraduate Medical College of Nigeria'),
(48083, 40654, 'no_lang_code', 'name', 'Mobica (Egypt)'),
(48084, 40655, 'en', 'name', 'National Centre of Excellence in Analytical Chemistry'),
(48085, 40656, 'en', 'name', 'Life Science Zurich'),
(48086, 40657, 'en', 'name', 'Lifespan'),
(48087, 40658, 'no_lang_code', 'name', 'Metav (Romania)'),
(48088, 40659, 'en', 'name', 'National Research Centre on Plant Biotechnology'),
(48089, 40659, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ पादप ą¤œą„ˆą¤µą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ā€ą¤¦ą„ą¤°'),
(48090, 40660, 'en', 'name', 'Moscow Institute of Energy and Energy Saving'),
(48091, 40661, 'es', 'name', 'Instituto GeogrƔfico Nacional'),
(48092, 40662, 'no_lang_code', 'name', 'MicroMass Communications (United States)'),
(48093, 40663, 'en', 'name', 'National Institute of Cardiovascular Diseases'),
(48094, 40664, 'en', 'name', 'National Institute of Technical Teachers Training and Research'),
(48095, 40665, 'no_lang_code', 'name', 'Microsoft Research (India)'),
(48096, 40666, 'pt', 'name', 'Ordem dos MƩdicos'),
(48097, 40667, 'no_lang_code', 'name', 'Nissan (Japan)'),
(48098, 40667, 'ja', 'name', 'ę—„ē”£č‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(48099, 40668, 'en', 'name', 'Niuvanniemi Hospital'),
(48100, 40668, 'fi', 'name', 'Nuvanniemen Sairala'),
(48101, 40669, 'en', 'name', 'Astronomical Observatory of Capodimonte'),
(48102, 40669, 'it', 'name', 'Osservatorio Astronomico di Capodimonte'),
(48103, 40670, 'en', 'name', 'National Trust for Nature Conservation'),
(48104, 40670, 'ne', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æ ą¤Ŗą„ą¤°ą¤•ą„ƒą¤¤ą¤æ ą¤øą¤‚ą¤°ą¤•ą„ą¤·ą¤£ ą¤•ą„‹ą¤·'),
(48105, 40671, 'en', 'name', 'Giuseppe Salvatore Vaiana'),
(48106, 40671, 'it', 'name', 'Osservatorio Astronomico di Palermo'),
(48107, 40672, 'en', 'name', 'Pukhov Institute for Modelling in Energy Engineering'),
(48108, 40672, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š¼Š¾Š“ŠµŠ»ŃŽŠ²Š°Š½Š½Ń в енергетиці ім. Š“.Š„. ŠŸŃƒŃ…Š¾Š²Š°'),
(48109, 40672, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š¼Š¾Š“ŠµŠ»ŠøŃ€Š¾Š²Š°Š½ŠøŃ в ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠµ им. Š“.Š•. ŠŸŃƒŃ…Š¾Š²Š°'),
(48110, 40673, 'no_lang_code', 'name', 'Novabase (Portugal)'),
(48111, 40674, 'pt', 'name', 'Observatório Político'),
(48112, 40674, 'en', 'name', 'Political Observatory'),
(48113, 40675, 'en', 'name', 'Pakistan Army'),
(48114, 40675, 'ur', 'name', 'پاک ŁŁˆŲ¬ā€Ž'),
(48115, 40676, 'en', 'name', 'Queensland Centre for Mental Health Research'),
(48116, 40677, 'no_lang_code', 'name', 'Holtzbrinck Publishing Group (United States)'),
(48117, 40678, 'en', 'name', 'Pakistan Space and Upper Atmosphere Research Commission'),
(48118, 40678, 'ur', 'name', 'Ų®Ł„Ų§Ų¦ŪŒ و ŲØŲ§Ł„Ų§Ų¦ŪŒ فضائی ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖŪŒ Ł…Ų£Ł…ŁˆŲ±ŪŒŪ'),
(48119, 40679, 'no_lang_code', 'name', 'Porto Editora (Portugal)'),
(48120, 40680, 'en', 'name', 'Korea Naval Academy'),
(48121, 40680, 'ko', 'name', '핓군사꓀학교'),
(48122, 40681, 'no_lang_code', 'name', 'Pakistan Telecommunication Company (Pakistan)'),
(48123, 40681, 'ur', 'name', 'پی ٹی سی Ų§ŪŒŁ„'),
(48124, 40682, 'en', 'name', 'Energy Services Regulatory Authority'),
(48125, 40682, 'pt', 'name', 'Entidade Reguladora dos ServiƧos EnergƩticos'),
(48126, 40683, 'da', 'name', 'Odense Kommune'),
(48127, 40683, 'en', 'name', 'Odense Municipality'),
(48128, 40684, 'pt', 'name', 'Fundação Centro de Hematologia e Hemoterapia de Minas Gerais'),
(48129, 40685, 'pt', 'name', 'Prefeitura do MunicĆ­pio de SĆ£o Paulo'),
(48130, 40686, 'pt', 'name', 'Prefeitura Municipal de Belo Horizonte'),
(48131, 40687, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Nysie'),
(48132, 40687, 'en', 'name', 'University of Applied Sciences in Nysas'),
(48133, 40688, 'pt', 'name', 'Prefeitura Municipal de Curitiba'),
(48134, 40689, 'pt', 'name', 'Prefeitura Municipal do Natal'),
(48135, 40690, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Szymona Szymonowica w Zamościu'),
(48136, 40690, 'en', 'name', 'State Higher School of Vocational Education in Zamość'),
(48137, 40691, 'pt', 'name', 'Prefeitura Municipal de Vitória'),
(48138, 40692, 'en', 'name', 'Paichai Chinese Primary School'),
(48139, 40693, 'en', 'name', 'Prevention Alzheimer International Foundation'),
(48140, 40694, 'en', 'name', 'Scientific Centre for Aerospace Research of the Earth'),
(48141, 40694, 'uk', 'name', 'ŠŠŠ£Š§ŠŠ«Š™ Š¦Š•ŠŠ¢Š  ŠŠ­Š ŠžŠšŠžŠ”ŠœŠ˜Š§Š•Š”ŠšŠ˜Š„ Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠŠ˜Š™ Š—Š•ŠœŠ›Š˜ Š˜Š-ТА Š“Š•ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š„ ŠŠŠ£Šš ŠŠŠ Š£ŠšŠ ŠŠ˜ŠŠ«, ГУ'),
(48142, 40695, 'en', 'name', 'Robert Kennedy College'),
(48143, 40696, 'en', 'name', 'University of Economics and Management'),
(48144, 40696, 'cs', 'name', 'VysokÔ Ŕkola ekonomie a managementu'),
(48145, 40697, 'en', 'name', 'International School of Trieste'),
(48146, 40697, 'it', 'name', 'Scuola Internazionale di Trieste'),
(48147, 40698, 'en', 'name', 'Perpetual Succour Hospital'),
(48148, 40699, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Elblągu'),
(48149, 40699, 'en', 'name', 'State University of Applied Sciences in Elbląg'),
(48150, 40700, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Głogowie'),
(48151, 40700, 'en', 'name', 'State Higher Vocational School in Głogów'),
(48152, 40701, 'pt', 'name', 'Associação de Municípios do Vale do Sousa'),
(48153, 40702, 'en', 'name', 'Hipolit Cegielski State University of Applied Sciences in Gniezno'),
(48154, 40702, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Hipolita Cegielskiego w GnieÅŗnie'),
(48155, 40703, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Koszalinie'),
(48156, 40703, 'en', 'name', 'State Higher Vocational School in Koszalin'),
(48157, 40704, 'en', 'name', 'Republic of Korea Army'),
(48158, 40704, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ 윔군'),
(48159, 40705, 'pt', 'name', 'Secretaria da Educação do Estado da Bahia'),
(48160, 40706, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Stanisława Pigonia w Krośnie'),
(48161, 40706, 'en', 'name', 'State Higher Vocational School in Krosno'),
(48162, 40707, 'en', 'name', 'Society of Exploration Geophysicists'),
(48163, 40708, 'en', 'name', 'Republican Scientific and Practical Center of Neurology and Neurosurgery'),
(48164, 40708, 'ru', 'name', 'Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр неврологии Šø Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(48165, 40708, 'be', 'name', 'Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŠ°Š½ŃŠŗŃ– навукова-практычны Ń†ŃŠ½Ń‚Ń€ Š½ŠµŃžŃ€Š°Š»Š¾Š³Ń–Ń– і Š½ŠµŠ¹Ń€Š°Ń…Ń–Ń€ŃƒŃ€Š³Ń–Ń–'),
(48166, 40709, 'pl', 'name', 'Pastwowa Wysza Szkoa Zawodowa im. Witelona w Legnicy'),
(48167, 40709, 'en', 'name', 'Witelon State University of Applied Sciences in Legnica'),
(48168, 40710, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. rotmistrza Witolda Pileckiego w Oświęcimiu'),
(48169, 40710, 'en', 'name', 'State School of Higher Education in Oświęcim'),
(48170, 40711, 'en', 'name', 'Soil Conservation and Watershed Management Research'),
(48171, 40711, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ حفاظت Ų®Ų§Ś© و آبخیزداری'),
(48172, 40712, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Stanisława Staszica w Pile'),
(48173, 40712, 'en', 'name', 'Stanisław Staszic University of Applied Sciences in Piła'),
(48174, 40713, 'es', 'name', 'Instituto de Investigaciones en Fruticultura Tropical'),
(48175, 40714, 'no_lang_code', 'name', 'Sonae (Portugal)'),
(48176, 40715, 'es', 'name', 'SecretarĆ­a de Salud de Jalisco'),
(48177, 40716, 'en', 'name', 'Shamnur Shivashankarappa Institute of Medical Sciences & Research Centre'),
(48178, 40716, 'kn', 'name', 'ಶಾಮನೂರು ą²¶ą²æą²µą²¶ą²‚ą²•ą²°ą²Ŗą³ą²Ŗ ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ಸಂಶೋದನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(48179, 40717, 'no_lang_code', 'name', 'Research Square (United States)'),
(48180, 40718, 'en', 'name', 'SA Health'),
(48181, 40719, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Raciborzu'),
(48182, 40720, 'es', 'name', 'Revista Conamed'),
(48183, 40721, 'en', 'name', 'Jan Grodek State Vocational Academy in Sanok'),
(48184, 40721, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Jana Grodka w Sanoku'),
(48185, 40722, 'en', 'name', 'National Training Service'),
(48186, 40722, 'es', 'name', 'Servicio Nacional de Aprendizaje'),
(48187, 40723, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Skierniewicach'),
(48188, 40723, 'en', 'name', 'State Higher Vocational School in Skierniewice'),
(48189, 40724, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Sulechowie'),
(48190, 40725, 'en', 'name', 'South Eastern Railway'),
(48191, 40726, 'en', 'name', 'Edward F. Szczepanik State School of Higher Professional Education in Suwalki'),
(48192, 40726, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. prof. E. Szczepanika w Suwałkach'),
(48193, 40727, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. prof. Stanisława Tarnowskiego w Tarnobrzegu'),
(48194, 40727, 'en', 'name', 'State Higher Vocational School Memorial of Prof. Stanislaw Tarnowski in Tarnobrzeg'),
(48195, 40728, 'no_lang_code', 'name', 'Sugal Group (Portugal)'),
(48196, 40729, 'en', 'name', 'South Tyneside and Sunderland NHS Foundation Trust'),
(48197, 40730, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa we Włocławku'),
(48198, 40731, 'es', 'name', 'Servicio Canario de la Salud'),
(48199, 40732, 'no_lang_code', 'name', 'Sunrise Communications AG (Switzerland)'),
(48200, 40733, 'no_lang_code', 'name', 'Sutol (Portugal)'),
(48201, 40734, 'pt', 'name', 'Santa Casa da Misericórdia de Almeirim'),
(48202, 40735, 'pl', 'name', 'Podhalańska Państwowa Wyższa Szkoła Zawodowa w Nowym Targu'),
(48203, 40735, 'en', 'name', 'Podhale State Higher Vocational School in Nowy Targ'),
(48204, 40736, 'en', 'name', 'Saudi Commission for Health Specialties'),
(48205, 40736, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© للتخصصات Ų§Ł„ŲµŲ­ŁŠŲ©'),
(48206, 40737, 'en', 'name', 'Southern Health NHS Foundation Trust'),
(48207, 40738, 'pt', 'name', 'Serviço Social da Indústria de Santa Catarina'),
(48208, 40739, 'en', 'name', 'Space Research Institute'),
(48209, 40739, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(48210, 40740, 'no_lang_code', 'name', 'SGS (Portugal)'),
(48211, 40740, 'pt', 'name', 'Sociedade Geral de SuperintendĆŖncia'),
(48212, 40741, 'en', 'name', 'SPIE Europe'),
(48213, 40742, 'no_lang_code', 'name', 'Vodafone (Portugal)'),
(48214, 40743, 'tr', 'name', 'Turk Silahli Kuvvetlerini Guclendirme Vakfi'),
(48215, 40743, 'en', 'name', 'Turkish Armed Forces Foundation'),
(48216, 40744, 'pt', 'name', 'Sporting Clube Vasco da Gama'),
(48217, 40745, 'nl', 'name', 'Tactus Verslavingszorg'),
(48218, 40746, 'no_lang_code', 'name', 'Springer Publishing Company (United States)'),
(48219, 40747, 'en', 'name', 'Ternopil Institute for Social and Information Technologies'),
(48220, 40748, 'en', 'name', 'Takestan Islamic Azad University'),
(48221, 40749, 'et', 'name', 'TALLINNA ƄRIPANGA AS'),
(48222, 40749, 'en', 'name', 'Tallinn Business Bank'),
(48223, 40750, 'en', 'name', 'Texas A&M University School of Law'),
(48224, 40751, 'en', 'name', 'Turkish Armed Forces'),
(48225, 40751, 'tr', 'name', 'Türk Silahlı Kuvvetleri'),
(48226, 40752, 'en', 'name', 'Silsbee Independent School District'),
(48227, 40753, 'en', 'name', 'College of Dental Surgeons of Hong Kong'),
(48228, 40754, 'no_lang_code', 'name', 'Portuguese Air Transportations (Portugal)'),
(48229, 40754, 'pt', 'name', 'Transportes AƩreos Portugueses'),
(48230, 40755, 'en', 'name', 'Department of Education Tasmania'),
(48231, 40756, 'pt', 'name', 'Teledifusão de Macau'),
(48232, 40756, 'zh', 'name', '澳廣視'),
(48233, 40757, 'en', 'name', 'Korean Society of Speech Sciences'),
(48234, 40758, 'no_lang_code', 'name', 'Statisticon (Sweden)'),
(48235, 40759, 'en', 'name', 'National Theatre D. Maria II'),
(48236, 40759, 'pt', 'name', 'Teatro Nacional D. Maria II'),
(48237, 40760, 'pt', 'name', 'Teatro Nacional São João'),
(48238, 40761, 'en', 'name', 'UmeƄ Plant Science Centre'),
(48239, 40762, 'no_lang_code', 'name', 'Strathmore Company (United States)'),
(48240, 40763, 'en', 'name', 'Stockholm Health Care Services'),
(48241, 40763, 'sv', 'name', 'Stockholms lƤns sjukvƄrdsomrƄde'),
(48242, 40764, 'pt', 'name', 'Municipal de Ɠbidos'),
(48243, 40765, 'pt', 'name', 'União Dinâmica de Faculdades Cataratas'),
(48244, 40766, 'es', 'name', 'Universidad Católica Cecilio Acosta'),
(48245, 40767, 'en', 'name', 'Union Christian College'),
(48246, 40768, 'no_lang_code', 'name', 'United Space Alliance (USA)'),
(48247, 40769, 'en', 'name', 'United States Army Reserve'),
(48248, 40770, 'es', 'name', 'Universidad Dr. JosƩ Gregorio HernƔndez'),
(48249, 40771, 'en', 'name', 'Gause Institute of New Antibiotics Russian Academy of Medical Sciences'),
(48250, 40771, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠøŠ·Ń‹ŃŠŗŠ°Š½ŠøŃŽ новых антибиотиков им. Š“. Ф. Š“Š°ŃƒŠ·Šµ'),
(48251, 40772, 'en', 'name', 'Research Institute of Complex Problems of Cardiovascular Disease Russian Academy of Medical Sciences'),
(48252, 40773, 'en', 'name', 'Institute of Strength Physics and Materials Science'),
(48253, 40773, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики прочности Šø Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Š”Šž Š ŠŠ'),
(48254, 40774, 'en', 'name', 'Institute of Mechanics and Engineering'),
(48255, 40774, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики Šø Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ ŠšŠ°Š·ŠŠ¦ Š ŠŠ'),
(48256, 40775, 'en', 'name', 'Research Institute of Obstetrics and Gynecology named after D.O. Ott'),
(48257, 40775, 'ru', 'name', 'ŠŠ˜Š˜ Š°ŠŗŃƒŃˆŠµŃ€ŃŃ‚Š²Š° Šø гинекологии имени Š”. Šž. ŠžŃ‚Ń‚Š°'),
(48258, 40776, 'en', 'name', 'Scientific Center of Family Health Problems and Human Reproduction'),
(48259, 40777, 'en', 'name', 'Institute of Pharmacology Russian Academy of Medical Sciences'),
(48260, 40777, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фармакологии имени Š’.Š’.Š—Š°ŠŗŃƒŃŠ¾Š²Š°Ā» ... Российской акаГемии'),
(48261, 40778, 'en', 'name', 'Central Scientific Research Institute of Tuberculosis Russian Academy of Medical Sciences'),
(48262, 40778, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»ŠµŠ·Š° Российской акаГемии меГицинских наук'),
(48263, 40779, 'en', 'name', 'Federal Research Centre Coal and Coal Chemistry'),
(48264, 40779, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр ŃƒŠ³Š»Ń Šø ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŠø Š”Šž Š ŠŠ'),
(48265, 40780, 'en', 'name', 'Bakulev Scientific Center for Cardiovascular Surgery Russian Academy of Medical Sciences'),
(48266, 40780, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр серГечно-ŃŠ¾ŃŃƒŠ“ŠøŃŃ‚Š¾Š¹ Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø им. А.Š. Š‘Š°ŠŗŃƒŠ»ŠµŠ²Š°'),
(48267, 40781, 'en', 'name', 'Saratov Research Center'),
(48268, 40781, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Даратовский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук'),
(48269, 40782, 'en', 'name', 'Kazan Scientific Center'),
(48270, 40782, 'ru', 'name', 'Казанский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š ŠŠ'),
(48271, 40783, 'en', 'name', 'Institute of Ecological Problems of the North'),
(48272, 40783, 'ru', 'name', 'Š£Ń€Šž Š ŠŠ. Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… проблем Девера Š£Ń€Šž Š ŠŠ в соответствии с приказом Š¤ŠŠŠž'),
(48273, 40784, 'en', 'name', 'Polar Geophysical Institute'),
(48274, 40784, 'ru', 'name', 'ŠŸŠ¾Š»ŃŃ€Š½Ń‹Š¹ геофизический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(48275, 40785, 'en', 'name', 'Institute of Biology of Karelian Research Centre'),
(48276, 40785, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии ŠšŠ°Ń€ŠŠ¦ Š ŠŠ'),
(48277, 40786, 'en', 'name', 'Far Eastern Scientific Centre of Physiology and Pathology of Respiration Russian Academy of Medical Sciences'),
(48278, 40786, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр физиологии Šø патологии Š“Ń‹Ń…Š°Š½ŠøŃ'),
(48279, 40787, 'no_lang_code', 'name', 'Vaisala (United States)'),
(48280, 40788, 'en', 'name', 'West African College of Physicians'),
(48281, 40789, 'en', 'name', 'Urban Unit'),
(48282, 40790, 'en', 'name', 'West Midlands Deanery'),
(48283, 40791, 'en', 'name', 'World Intellectual Property Organization'),
(48284, 40792, 'no_lang_code', 'name', 'WSO2 (Sri Lanka)'),
(48285, 40793, 'en', 'name', 'D.I. Mendeleyev All-Russian Institute for Metrology'),
(48286, 40793, 'ru', 'name', 'Š’ŠŠ˜Š˜ метрологии им. Š”.И.МенГелеева, ломоносовское отГеление'),
(48287, 40794, 'en', 'name', 'Western Cape Department of Health'),
(48288, 40795, 'no_lang_code', 'name', 'VSL Korea (South Korea)'),
(48289, 40796, 'en', 'name', 'United States Global Change Research Program'),
(48290, 40797, 'no_lang_code', 'name', 'Walgreens (United States)'),
(48291, 40798, 'no_lang_code', 'name', 'John Wiley & Sons (Germany)'),
(48292, 40799, 'en', 'name', 'Virginia Tech Services'),
(48293, 40800, 'en', 'name', 'Dr Maliso Mphele Hospital'),
(48294, 40801, 'no_lang_code', 'name', 'Advanced Photon Sciences (United States)'),
(48295, 40802, 'no_lang_code', 'name', 'American International Group (United States)'),
(48296, 40803, 'no_lang_code', 'name', 'Aegon (Netherlands)'),
(48297, 40804, 'en', 'name', 'Aaron Copland Fund for Music'),
(48298, 40805, 'no_lang_code', 'name', 'Array BioPharma (United States)'),
(48299, 40806, 'en', 'name', 'inVentiv Health Clinical'),
(48300, 40807, 'no_lang_code', 'name', 'Arthrex (United States)'),
(48301, 40808, 'en', 'name', 'Central Bank of Uzbekistan'),
(48302, 40808, 'uz', 'name', 'O''zbekiston Respublikasi Markaziy banki'),
(48303, 40808, 'tg', 'name', 'ŠŽŠ·Š±ŠµŠŗŠøŃŃ‚Š¾Š½ Республикаси ŠœŠ°Ń€ŠŗŠ°Š·ŠøŠ¹ Банки');
INSERT INTO `ror_settings` VALUES
(48304, 40809, 'no_lang_code', 'name', 'Alltech (United States)'),
(48305, 40810, 'hu', 'name', 'BM Központi KórhÔz'),
(48306, 40811, 'no_lang_code', 'name', 'Arthrex (Germany)'),
(48307, 40812, 'no_lang_code', 'name', 'AES (Brazil)'),
(48308, 40813, 'no_lang_code', 'name', 'Abbott (Japan)'),
(48309, 40813, 'ja', 'name', 'ć‚¢ćƒœćƒƒćƒˆ'),
(48310, 40814, 'no_lang_code', 'name', 'Abbott (South Korea)'),
(48311, 40815, 'no_lang_code', 'name', 'Amerisure Insurance (United States)'),
(48312, 40816, 'no_lang_code', 'name', 'AbbVie (Germany)'),
(48313, 40817, 'no_lang_code', 'name', 'Ashland (United States)'),
(48314, 40818, 'no_lang_code', 'name', 'Aesculap (United States)'),
(48315, 40819, 'no_lang_code', 'name', 'Aboca (Italy)'),
(48316, 40820, 'no_lang_code', 'name', 'Harman (United States)'),
(48317, 40821, 'en', 'name', 'Asian Center for Theological Studies and Mission'),
(48318, 40821, 'ko', 'name', 'ģ•„ģ„øģ•„ģ—°ķ•©ģ‹ ķ•™ėŒ€ķ•™źµ'),
(48319, 40822, 'no_lang_code', 'name', 'Abu Dhabi National Oil (United Arab Emirates)'),
(48320, 40822, 'ar', 'name', 'ؓركة ŲØŲŖŲ±ŁˆŁ„ أبوظبي Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(48321, 40823, 'no_lang_code', 'name', 'Andersen (United States)'),
(48322, 40824, 'no_lang_code', 'name', 'DuPont (Brazil)'),
(48323, 40825, 'en', 'name', 'Academy of Medical Royal Colleges'),
(48324, 40826, 'no_lang_code', 'name', 'Amdocs (United States)'),
(48325, 40827, 'no_lang_code', 'name', 'Africagrowth Institute (South Africa)'),
(48326, 40828, 'no_lang_code', 'name', 'Ameren (United States)'),
(48327, 40829, 'en', 'name', 'American Academy in Berlin'),
(48328, 40830, 'no_lang_code', 'name', 'Anecova (Switzerland)'),
(48329, 40831, 'no_lang_code', 'name', 'AspenTech (United States)'),
(48330, 40832, 'en', 'name', 'American Academy of Fixed Prosthodontics'),
(48331, 40833, 'en', 'name', 'Agfa HealthCare'),
(48332, 40834, 'en', 'name', 'American Academy of Nursing'),
(48333, 40835, 'no_lang_code', 'name', 'Angelini Pharma (Italy)'),
(48334, 40836, 'no_lang_code', 'name', 'ASSAB Pacific (Singapore)'),
(48335, 40837, 'en', 'name', 'Accident Compensation Corporation'),
(48336, 40837, 'mi', 'name', 'Te Kaporeihana Āwhina Hunga Whara'),
(48337, 40838, 'en', 'name', 'American Academy of Psychiatry and the Law'),
(48338, 40839, 'nl', 'name', 'Vereniging Achmea'),
(48339, 40840, 'en', 'name', 'American College of Neuropsychopharmacology'),
(48340, 40841, 'no_lang_code', 'name', 'Assurant (United States)'),
(48341, 40842, 'en', 'name', 'American College of Psychiatrists'),
(48342, 40843, 'no_lang_code', 'name', 'Agram (Poland)'),
(48343, 40844, 'no_lang_code', 'name', 'Allergan (Germany)'),
(48344, 40845, 'no_lang_code', 'name', 'AOL (United States)'),
(48345, 40846, 'no_lang_code', 'name', 'Honda (United States)'),
(48346, 40847, 'no_lang_code', 'name', 'Actualis (France)'),
(48347, 40848, 'no_lang_code', 'name', 'AstraZeneca (Australia)'),
(48348, 40849, 'no_lang_code', 'name', 'Apex Innovations (United States)'),
(48349, 40850, 'no_lang_code', 'name', 'Acxiom (United States)'),
(48350, 40851, 'no_lang_code', 'name', 'Koch Agronomic Services (United States)'),
(48351, 40852, 'no_lang_code', 'name', 'Adecco (Switzerland)'),
(48352, 40853, 'no_lang_code', 'name', 'AstraZeneca (South Korea)'),
(48353, 40853, 'ko', 'name', 'ķ•œźµ­ģ•„ģŠ¤ķŠøė¼ģ œė„¤ģ¹“'),
(48354, 40854, 'no_lang_code', 'name', 'Adivit (Spain)'),
(48355, 40855, 'no_lang_code', 'name', 'Adobe Systems (United States)'),
(48356, 40856, 'en', 'name', 'Arkansas Agricultural Experiment Station'),
(48357, 40857, 'no_lang_code', 'name', 'Alabama Power (United States)'),
(48358, 40858, 'en', 'name', 'Rama Dental College Hospital & Research Centre'),
(48359, 40859, 'no_lang_code', 'name', 'Advanced Fiber Technologies (United States)'),
(48360, 40860, 'no_lang_code', 'name', 'Baker Hughes (United States)'),
(48361, 40861, 'en', 'name', 'Alberta Foundation for the Arts'),
(48362, 40862, 'en', 'name', 'Australian College of Rural and Remote Medicine'),
(48363, 40863, 'no_lang_code', 'name', 'Berthold (Australia)'),
(48364, 40864, 'es', 'name', 'Banco Central de Venezuela'),
(48365, 40864, 'en', 'name', 'Central Bank of Venezuela'),
(48366, 40865, 'tr', 'name', 'Selçuk Üniversitesi Tıp Fakültesi Hastanesi'),
(48367, 40866, 'en', 'name', 'Australian Mathematical Sciences Institute'),
(48368, 40867, 'no_lang_code', 'name', 'Biognos (Sweden)'),
(48369, 40868, 'en', 'name', 'Bank of America'),
(48370, 40869, 'en', 'name', 'Shura Council'),
(48371, 40870, 'no_lang_code', 'name', 'Australian Wool Innovation (Australia)'),
(48372, 40871, 'en', 'name', 'Water and Power Development Authority'),
(48373, 40871, 'ur', 'name', 'واٹر Ų§ŪŒŁ†Śˆ پاور ŚˆŪŒŁˆŁ„Ł¾Ł…Ł†Ł¹ اتھارٹی'),
(48374, 40872, 'no_lang_code', 'name', 'Borsa Istanbul (Turkey)'),
(48375, 40873, 'no_lang_code', 'name', 'Avaya (United States)'),
(48376, 40874, 'no_lang_code', 'name', 'Bupa'),
(48377, 40875, 'no_lang_code', 'name', 'Avisonic (Taiwan)'),
(48378, 40876, 'no_lang_code', 'name', 'Bank of New York Mellon'),
(48379, 40877, 'no_lang_code', 'name', 'Barnes & Noble (United States)'),
(48380, 40878, 'no_lang_code', 'name', 'AxisCades (India)'),
(48381, 40879, 'no_lang_code', 'name', 'C-M Concrete Products (Australia)'),
(48382, 40880, 'no_lang_code', 'name', 'BASIS International (United States)'),
(48383, 40881, 'no_lang_code', 'name', 'Britannia University'),
(48384, 40882, 'no_lang_code', 'name', 'Stanley Black & Decker (United States)'),
(48385, 40883, 'no_lang_code', 'name', 'Bausch Health (Ireland)'),
(48386, 40884, 'en', 'name', 'Islamic Azad University of Ayatollah Amoli'),
(48387, 40884, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ آیت الله Ų¢Ł…Ł„ŪŒ'),
(48388, 40885, 'en', 'name', 'Azad University in Oxford'),
(48389, 40886, 'no_lang_code', 'name', 'Cablevision (United States)'),
(48390, 40887, 'no_lang_code', 'name', 'Baxalta (United States)'),
(48391, 40888, 'en', 'name', 'British Institute for the Study of Iraq'),
(48392, 40889, 'no_lang_code', 'name', 'B. Braun (United States)'),
(48393, 40890, 'en', 'name', 'Blue Cross Blue Shield of Massachusetts'),
(48394, 40891, 'en', 'name', 'British Institute of Persian Studies'),
(48395, 40892, 'no_lang_code', 'name', 'Cabot (United States)'),
(48396, 40893, 'no_lang_code', 'name', 'BMC Software (United States)'),
(48397, 40894, 'en', 'name', 'British School at Athens'),
(48398, 40894, 'el', 'name', 'Βρετανική Σχολή Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(48399, 40895, 'no_lang_code', 'name', 'Cadence Design Systems (United States)'),
(48400, 40896, 'no_lang_code', 'name', 'Casappa (Italy)'),
(48401, 40897, 'en', 'name', 'British Universities North America Club'),
(48402, 40898, 'no_lang_code', 'name', 'BMW of North America (United States)'),
(48403, 40899, 'no_lang_code', 'name', 'Brother International (United States)'),
(48404, 40900, 'no_lang_code', 'name', 'Benteler (Germany)'),
(48405, 40901, 'no_lang_code', 'name', 'BNP Paribas (France)'),
(48406, 40902, 'en', 'name', 'Catholic Biblical Association'),
(48407, 40903, 'de', 'name', 'Sparkassen-Finanzgruppe'),
(48408, 40904, 'no_lang_code', 'name', 'CellGenix (Germany)'),
(48409, 40905, 'no_lang_code', 'name', 'Canon (United States)'),
(48410, 40906, 'no_lang_code', 'name', 'Chemtrix (Netherlands)'),
(48411, 40907, 'es', 'name', 'Comisión Sectorial de Investigación Científica'),
(48412, 40908, 'no_lang_code', 'name', 'Capital One (United States)'),
(48413, 40909, 'no_lang_code', 'name', 'Chiesi (Italy)'),
(48414, 40910, 'no_lang_code', 'name', 'Companhia EnergƩtica de Pernambuco'),
(48415, 40911, 'no_lang_code', 'name', 'Computational Diagnostics (United States)'),
(48416, 40912, 'no_lang_code', 'name', 'China United Network Communications Group (China)'),
(48417, 40912, 'zh', 'name', 'äø­å›½č”åˆē½‘ē»œé€šäæ”é›†å›¢ęœ‰é™å…¬åø'),
(48418, 40913, 'no_lang_code', 'name', 'Xura (United States)'),
(48419, 40914, 'no_lang_code', 'name', 'China Power Engineering Consulting Group (China)'),
(48420, 40915, 'no_lang_code', 'name', 'Consolidated Contractors Company (Greece)'),
(48421, 40915, 'ar', 'name', 'ؓركة Ų§ŲŖŲ­Ų§ŲÆ Ų§Ł„Ł…Ł‚Ų§ŁˆŁ„ŁŠŁ†'),
(48422, 40916, 'pt', 'name', 'Faculdade de Tecnologia e CiĆŖncias'),
(48423, 40917, 'no_lang_code', 'name', 'Depomed (United States)'),
(48424, 40918, 'no_lang_code', 'name', 'United Continental (United States)'),
(48425, 40919, 'no_lang_code', 'name', 'Embraco (Brazil)'),
(48426, 40920, 'no_lang_code', 'name', 'Groupe ArtƩmis (France)'),
(48427, 40921, 'no_lang_code', 'name', 'Convergys (United States)'),
(48428, 40922, 'no_lang_code', 'name', 'Devon Energy (United States)'),
(48429, 40923, 'en', 'name', 'Institute of Advanced Study in Science and Technology'),
(48430, 40924, 'no_lang_code', 'name', 'Converse (United States)'),
(48431, 40925, 'no_lang_code', 'name', 'DHL (United States)'),
(48432, 40926, 'no_lang_code', 'name', 'CoreQuest (Switzerland)'),
(48433, 40927, 'no_lang_code', 'name', 'Chubu Electric Power (Japan)'),
(48434, 40927, 'ja', 'name', 'äø­éƒØé›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(48435, 40928, 'no_lang_code', 'name', 'Discovery Communications (United States)'),
(48436, 40929, 'no_lang_code', 'name', 'Chugoku Marine Paints (Japan)'),
(48437, 40929, 'ja', 'name', 'äø­å›½å”—ę–™ę Ŗå¼ä¼šē¤¾'),
(48438, 40930, 'no_lang_code', 'name', 'EMS (Canada)'),
(48439, 40931, 'no_lang_code', 'name', 'Cornerstone Specialty Wood Products (United States)'),
(48440, 40932, 'no_lang_code', 'name', 'Cigna (United States)'),
(48441, 40933, 'no_lang_code', 'name', 'Endo (Ireland)'),
(48442, 40934, 'no_lang_code', 'name', 'eNeura (United States)'),
(48443, 40935, 'en', 'name', 'Council for British Research in the Levant'),
(48444, 40936, 'no_lang_code', 'name', 'Mubadala (United Arab Emirates)'),
(48445, 40937, 'en', 'name', 'Clarity Centre for Sensor Web Technologies'),
(48446, 40938, 'no_lang_code', 'name', 'FedEx (United States)'),
(48447, 40939, 'no_lang_code', 'name', 'News Corp (United States)'),
(48448, 40940, 'en', 'name', 'Canadian Council of Professional Engineers'),
(48449, 40940, 'fr', 'name', 'IngƩnieurs Canada'),
(48450, 40941, 'no_lang_code', 'name', 'Ferrotec (United States)'),
(48451, 40942, 'no_lang_code', 'name', 'Enreco 2000 (Spain)'),
(48452, 40943, 'en', 'name', 'CRC Health Group'),
(48453, 40944, 'no_lang_code', 'name', 'Clyde Bergemann Power Group'),
(48454, 40945, 'no_lang_code', 'name', 'Fidelity Investments (United States)'),
(48455, 40946, 'en', 'name', 'Enterprise Community Partners'),
(48456, 40947, 'no_lang_code', 'name', 'Duke Energy (United States)'),
(48457, 40948, 'no_lang_code', 'name', 'Environmental Systems Research Institute (United States)'),
(48458, 40949, 'no_lang_code', 'name', 'Goodyear (United States)'),
(48459, 40950, 'no_lang_code', 'name', 'Epistar (Taiwan)'),
(48460, 40951, 'no_lang_code', 'name', 'Coffey International (Australia)'),
(48461, 40952, 'no_lang_code', 'name', 'Cognizant (United States)'),
(48462, 40953, 'en', 'name', 'Daejeon Theological University'),
(48463, 40954, 'no_lang_code', 'name', 'Foxnum Technology (Taiwan)'),
(48464, 40955, 'no_lang_code', 'name', 'Low & Bonar (Netherlands)'),
(48465, 40956, 'no_lang_code', 'name', 'Daewoo Shipbuilding and Marine Engineering (South Korea)'),
(48466, 40956, 'ko', 'name', 'ėŒ€ģš°ģ”°ģ„ ķ•“ģ–‘'),
(48467, 40957, 'no_lang_code', 'name', 'ERAS Labo (France)'),
(48468, 40958, 'no_lang_code', 'name', 'Dynegy (United States)'),
(48469, 40959, 'no_lang_code', 'name', 'Ecolab (United States)'),
(48470, 40960, 'no_lang_code', 'name', 'Ernst & Young (United Kingdom)'),
(48471, 40961, 'no_lang_code', 'name', 'Freddie Mac (United States)'),
(48472, 40962, 'no_lang_code', 'name', 'Edwards Lifesciences (United States)'),
(48473, 40963, 'no_lang_code', 'name', 'Effigis (Canada)'),
(48474, 40964, 'no_lang_code', 'name', 'Neovii Biotech (Germany)'),
(48475, 40965, 'no_lang_code', 'name', 'HollyFrontier (United States)'),
(48476, 40966, 'no_lang_code', 'name', 'Delta Air Lines (United States)'),
(48477, 40967, 'no_lang_code', 'name', 'Eisai (South Korea)'),
(48478, 40967, 'ko', 'name', 'ķ•œźµ­ģ—ģžģ“'),
(48479, 40968, 'no_lang_code', 'name', 'Perrigo (Ireland)'),
(48480, 40969, 'no_lang_code', 'name', 'J-Power (Japan)'),
(48481, 40969, 'ja', 'name', 'é›»ęŗé–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(48482, 40970, 'no_lang_code', 'name', 'Global Green Synergy (Malaysia)'),
(48483, 40971, 'no_lang_code', 'name', 'Hannover Re (Germany)'),
(48484, 40971, 'de', 'name', 'Hannover Rück'),
(48485, 40972, 'no_lang_code', 'name', 'Volkswagen Group (United States)'),
(48486, 40973, 'no_lang_code', 'name', 'Element Six (Luxembourg)'),
(48487, 40974, 'no_lang_code', 'name', 'Fujifilm (United States)'),
(48488, 40975, 'no_lang_code', 'name', 'Goldman Sachs (United States)'),
(48489, 40976, 'en', 'name', 'Hanyoung Theological University'),
(48490, 40976, 'ko', 'name', 'ķ•œģ˜ģ‹ ķ•™ėŒ€ķ•™źµ'),
(48491, 40977, 'no_lang_code', 'name', 'ELITech Group (France)'),
(48492, 40978, 'no_lang_code', 'name', 'Evenflo (United States)'),
(48493, 40979, 'no_lang_code', 'name', 'Caesars Entertainment (United States)'),
(48494, 40980, 'no_lang_code', 'name', 'Colgate-Palmolive (Switzerland)'),
(48495, 40981, 'no_lang_code', 'name', 'HistoGenetics (United States)'),
(48496, 40982, 'no_lang_code', 'name', 'Histogenics (United States)'),
(48497, 40983, 'no_lang_code', 'name', 'Grape King (Taiwan)'),
(48498, 40983, 'zh', 'name', 'č‘”č„ēŽ‹ē”ŸęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(48499, 40984, 'no_lang_code', 'name', 'Hiwin Technologies (Taiwan)'),
(48500, 40985, 'no_lang_code', 'name', 'Hokuriku Electric Power Company (Japan)'),
(48501, 40985, 'ja', 'name', 'åŒ—é™øé›»åŠ›'),
(48502, 40986, 'en', 'name', 'Scandinavian Seminar'),
(48503, 40987, 'no_lang_code', 'name', 'Hormel (United States)'),
(48504, 40988, 'sv', 'name', 'Greta och Johan Kocks stiftelser'),
(48505, 40989, 'no_lang_code', 'name', 'Helixor Heilmittel (Germany)'),
(48506, 40990, 'en', 'name', 'HSBC'),
(48507, 40991, 'no_lang_code', 'name', 'Imedex (United States)'),
(48508, 40992, 'no_lang_code', 'name', 'Guardian Life Insurance Company of America (United States)'),
(48509, 40993, 'en', 'name', 'Helpmann Academy'),
(48510, 40994, 'no_lang_code', 'name', 'Gene Bridges (Germany)'),
(48511, 40995, 'no_lang_code', 'name', 'Immediate Post Concussion Assessment and Cognitive Testing (United States)'),
(48512, 40996, 'no_lang_code', 'name', 'HEB Grocery Company (United States)'),
(48513, 40997, 'no_lang_code', 'name', 'Helsinn (Switzerland)'),
(48514, 40998, 'no_lang_code', 'name', 'Huvepharma (Bulgaria)'),
(48515, 40999, 'no_lang_code', 'name', 'Helsinn Therapeutics (United States)'),
(48516, 41000, 'no_lang_code', 'name', 'General Mills (United States)'),
(48517, 41001, 'no_lang_code', 'name', 'Hyosung Corporation (South Korea)'),
(48518, 41001, 'ko', 'name', 'ķšØģ„±'),
(48519, 41002, 'en', 'name', 'ING Direct'),
(48520, 41003, 'no_lang_code', 'name', 'M S Jacovides (Greece)'),
(48521, 41004, 'no_lang_code', 'name', 'H.B. Fuller (United States)'),
(48522, 41005, 'no_lang_code', 'name', 'Hess (United States)'),
(48523, 41006, 'no_lang_code', 'name', 'Hyundai Motors (United States)'),
(48524, 41007, 'no_lang_code', 'name', 'Hill Holliday (United States)'),
(48525, 41008, 'no_lang_code', 'name', 'Genomic Health (United States)'),
(48526, 41009, 'no_lang_code', 'name', 'Hasbro (United States)'),
(48527, 41010, 'no_lang_code', 'name', 'Cerberus Capital Management (United States)'),
(48528, 41011, 'fr', 'name', 'Institut FranƧais de Finlande'),
(48529, 41012, 'en', 'name', 'IC Design Education Center'),
(48530, 41012, 'ko', 'name', 'ė°˜ė„ģ²“ģ„¤ź³„ źµģœ”ģ„¼ķ„°'),
(48531, 41013, 'no_lang_code', 'name', 'Hallmark Cards (United States)'),
(48532, 41014, 'no_lang_code', 'name', 'Gentronix (United Kingdom)'),
(48533, 41015, 'no_lang_code', 'name', 'NBCUniversal (United States)'),
(48534, 41016, 'no_lang_code', 'name', 'Handok (South Korea)'),
(48535, 41016, 'ko', 'name', 'ķ•œė…'),
(48536, 41017, 'no_lang_code', 'name', 'JCPenney (United States)'),
(48537, 41018, 'no_lang_code', 'name', 'Landsvirkjun (Iceland)'),
(48538, 41019, 'no_lang_code', 'name', 'Georgia Power (United States)'),
(48539, 41020, 'no_lang_code', 'name', 'Lantheus Medical Imaging (United States)'),
(48540, 41021, 'no_lang_code', 'name', 'MediaTek (Taiwan)'),
(48541, 41021, 'zh', 'name', 'čÆē™¼ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(48542, 41022, 'no_lang_code', 'name', 'Leco Corporation (United States)'),
(48543, 41023, 'no_lang_code', 'name', 'Medical Insurance Group Australia'),
(48544, 41024, 'no_lang_code', 'name', 'Medicure (Canada)'),
(48545, 41025, 'no_lang_code', 'name', 'Getra (Italy)'),
(48546, 41026, 'no_lang_code', 'name', 'JetBlue (United States)'),
(48547, 41027, 'no_lang_code', 'name', 'Ghelfi Ondulati (Italy)'),
(48548, 41028, 'no_lang_code', 'name', 'Lexmark (United States)'),
(48549, 41029, 'no_lang_code', 'name', 'John Deere (United States)'),
(48550, 41030, 'no_lang_code', 'name', 'Ahold Delhaize (United States)'),
(48551, 41031, 'no_lang_code', 'name', 'Johnson Controls (United States)'),
(48552, 41032, 'en', 'name', 'Millennium Challenge Corporation'),
(48553, 41033, 'no_lang_code', 'name', 'Glasbau Hahn (Germany)'),
(48554, 41034, 'no_lang_code', 'name', 'Milliman (United States)'),
(48555, 41035, 'en', 'name', 'Global Cardiovascular Innovation Center'),
(48556, 41036, 'en', 'name', 'LighterLife'),
(48557, 41037, 'no_lang_code', 'name', 'Mitsui & Co (Japan)'),
(48558, 41037, 'ja', 'name', '三井物産'),
(48559, 41038, 'no_lang_code', 'name', 'Mochida Pharmaceutical (Japan)'),
(48560, 41038, 'ja', 'name', 'ęŒē”°č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(48561, 41039, 'no_lang_code', 'name', 'Nintendo (United States)'),
(48562, 41040, 'no_lang_code', 'name', 'Moog (United States)'),
(48563, 41041, 'en', 'name', 'Louisiana Sea Grant'),
(48564, 41042, 'no_lang_code', 'name', 'Kalgoorlie Consolidated Gold Mines (Australia)'),
(48565, 41043, 'en', 'name', 'Niskamoon Corporation'),
(48566, 41044, 'no_lang_code', 'name', 'Motley Fool (United States)'),
(48567, 41045, 'no_lang_code', 'name', 'Nonin Medical (United States)'),
(48568, 41046, 'no_lang_code', 'name', 'Motorola (United States)'),
(48569, 41047, 'no_lang_code', 'name', 'M&T Bank (United States)'),
(48570, 41048, 'no_lang_code', 'name', 'Macy''s (United States)'),
(48571, 41049, 'no_lang_code', 'name', 'Mount Sylvia Diatomite (Australia)'),
(48572, 41050, 'no_lang_code', 'name', 'MTS Systems (United States)'),
(48573, 41051, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia para Engenharia de Software'),
(48574, 41051, 'en', 'name', 'National Institute of Science and Technology for Software Engineering'),
(48575, 41052, 'no_lang_code', 'name', 'China Energy Engineering Corporation (China)'),
(48576, 41052, 'zh', 'name', 'äø­å›½čƒ½ęŗå»ŗč®¾č‚”ä»½ęœ‰é™å…¬åø'),
(48577, 41053, 'en', 'name', 'Maine Sea Grant'),
(48578, 41054, 'no_lang_code', 'name', 'Kellogg''s (United States)'),
(48579, 41055, 'en', 'name', 'Major League Baseball'),
(48580, 41056, 'no_lang_code', 'name', 'Kiadis Pharma (Netherlands)'),
(48581, 41057, 'no_lang_code', 'name', 'Micro Focus (United States)'),
(48582, 41058, 'no_lang_code', 'name', 'NanoFlex Power (United States)'),
(48583, 41059, 'no_lang_code', 'name', 'NuVasive (United States)'),
(48584, 41060, 'en', 'name', 'Kings Health Partners'),
(48585, 41061, 'en', 'name', 'National Academy of Social Insurance'),
(48586, 41062, 'no_lang_code', 'name', 'Interacoustics (Denmark)'),
(48587, 41063, 'no_lang_code', 'name', 'Oerlikon (Switzerland)'),
(48588, 41064, 'no_lang_code', 'name', 'Kingston Technology (United States)'),
(48589, 41065, 'no_lang_code', 'name', 'PNC Financial Services (United States)'),
(48590, 41066, 'no_lang_code', 'name', 'Office Depot (United States)'),
(48591, 41067, 'no_lang_code', 'name', 'Interface (United States)'),
(48592, 41068, 'no_lang_code', 'name', 'International Paper (United States)'),
(48593, 41069, 'no_lang_code', 'name', 'Omnitek Engineering (United States)'),
(48594, 41070, 'no_lang_code', 'name', 'OncoMed (United States)'),
(48595, 41071, 'no_lang_code', 'name', 'Mastercard (United States)'),
(48596, 41072, 'no_lang_code', 'name', 'Nationwide Mutual Insurance Company (United States)'),
(48597, 41073, 'no_lang_code', 'name', 'Kronotex (Germany)'),
(48598, 41074, 'no_lang_code', 'name', 'Mattel (United States)'),
(48599, 41075, 'no_lang_code', 'name', 'McDermott International (United States)'),
(48600, 41076, 'no_lang_code', 'name', 'McDonald''s (United States)'),
(48601, 41077, 'no_lang_code', 'name', 'Orica (Australia)'),
(48602, 41078, 'no_lang_code', 'name', 'iRhythm (United States)'),
(48603, 41079, 'no_lang_code', 'name', 'New Balance (United States)'),
(48604, 41080, 'en', 'name', 'New South Wales Institute of Psychiatry'),
(48605, 41081, 'en', 'name', 'Kyungwoon University'),
(48606, 41081, 'ko', 'name', 'ź²½ģš“ėŒ€ķ•™źµ'),
(48607, 41082, 'en', 'name', 'McNeil Center for Early American Studies'),
(48608, 41083, 'no_lang_code', 'name', 'New York Life Insurance Company (United States)'),
(48609, 41084, 'en', 'name', 'Manpower Development Corporation'),
(48610, 41085, 'no_lang_code', 'name', 'LF Driscoll'),
(48611, 41086, 'no_lang_code', 'name', 'Otter Tail Corporation (United States)'),
(48612, 41087, 'no_lang_code', 'name', 'Mead Johnson (United States)'),
(48613, 41088, 'no_lang_code', 'name', 'Lam Research (United States)'),
(48614, 41089, 'en', 'name', 'Royal Anthropological Institute'),
(48615, 41090, 'no_lang_code', 'name', 'Newcrest Mining (Australia)'),
(48616, 41091, 'en', 'name', 'Islamic Azad University of Shahrekord'),
(48617, 41091, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓهرکرد'),
(48618, 41092, 'en', 'name', 'Porticus'),
(48619, 41093, 'no_lang_code', 'name', 'Newsweek (United States)'),
(48620, 41094, 'no_lang_code', 'name', 'Newman''s Own (United States)'),
(48621, 41095, 'no_lang_code', 'name', 'Royal Caribbean Cruises (United States)'),
(48622, 41096, 'no_lang_code', 'name', 'Pantarhei Bioscience (Netherlands)'),
(48623, 41097, 'en', 'name', 'Royal College of Midwives'),
(48624, 41098, 'en', 'name', 'Qaemshahr Islamic Azad University'),
(48625, 41098, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد قائمؓهر'),
(48626, 41099, 'no_lang_code', 'name', 'Safeco Insurance'),
(48627, 41100, 'no_lang_code', 'name', 'Israel Ports Development and Assets (Israel)'),
(48628, 41101, 'no_lang_code', 'name', 'Cargill (Netherlands)'),
(48629, 41102, 'no_lang_code', 'name', 'Prudential Financial (United States)'),
(48630, 41103, 'no_lang_code', 'name', 'Sprint (United States)'),
(48631, 41104, 'no_lang_code', 'name', 'Pfizer (Australia)'),
(48632, 41105, 'no_lang_code', 'name', 'Sanofi (South Korea)'),
(48633, 41105, 'ko', 'name', '사노피-ģ•„ė²¤ķ‹°ģŠ¤ 코리아'),
(48634, 41106, 'no_lang_code', 'name', 'Stanvac Superon Group (India)'),
(48635, 41107, 'no_lang_code', 'name', 'Sears Holdings (United States)'),
(48636, 41108, 'no_lang_code', 'name', 'QuikTrip (United States)'),
(48637, 41109, 'no_lang_code', 'name', 'Sanwa Hydrotech (Japan)'),
(48638, 41109, 'ja', 'name', 'äø‰å’Œćƒć‚¤ćƒ‰ćƒ­ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(48639, 41110, 'en', 'name', 'Phi Beta Kappa Society'),
(48640, 41111, 'no_lang_code', 'name', 'Senko Medical Instrument Manufacturing (Japan)'),
(48641, 41112, 'no_lang_code', 'name', 'Pitney Bowes (United States)'),
(48642, 41113, 'no_lang_code', 'name', 'Starbucks (United States)'),
(48643, 41114, 'no_lang_code', 'name', 'Systems, Applications & Products in Data Processing (United States)'),
(48644, 41115, 'no_lang_code', 'name', 'Target (United States)'),
(48645, 41116, 'no_lang_code', 'name', 'Saudi Arabia Basic Industries (Saudi Arabia)'),
(48646, 41116, 'ar', 'name', 'Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© للصناعات Ų§Ł„Ų£Ų³Ų§Ų³ŁŠŲ© ، سابك'),
(48647, 41117, 'no_lang_code', 'name', 'Tarix Orphan (United States)'),
(48648, 41118, 'no_lang_code', 'name', 'State Farm (United States)'),
(48649, 41119, 'no_lang_code', 'name', 'RefleXion Medical (United States)'),
(48650, 41120, 'no_lang_code', 'name', 'Tasly Holding Group (China)'),
(48651, 41121, 'no_lang_code', 'name', 'SCG Chemicals (Thailand)'),
(48652, 41122, 'no_lang_code', 'name', 'Steelcase (United States)'),
(48653, 41123, 'no_lang_code', 'name', 'TD Bank'),
(48654, 41124, 'en', 'name', 'Rhode Island Sea Grant'),
(48655, 41125, 'no_lang_code', 'name', 'Subway (United States)'),
(48656, 41126, 'en', 'name', 'Sino-Swedish Centre for Tree-Ring Research'),
(48657, 41127, 'no_lang_code', 'name', 'Ricoh (United States)'),
(48658, 41128, 'no_lang_code', 'name', 'WestRock (United States)'),
(48659, 41129, 'no_lang_code', 'name', 'Slack Incorporated (United States)'),
(48660, 41130, 'en', 'name', 'United States Institute for Theatre Technology'),
(48661, 41131, 'en', 'name', 'Teachers Insurance and Annuity Association of America'),
(48662, 41132, 'no_lang_code', 'name', 'Sun Nuclear (United States)'),
(48663, 41133, 'no_lang_code', 'name', 'Tidewater (United States)'),
(48664, 41134, 'no_lang_code', 'name', 'Time Warner (United States)'),
(48665, 41135, 'no_lang_code', 'name', 'Sunoco (United States)'),
(48666, 41136, 'en', 'name', 'Southern California Clinical and Translational Science Institute'),
(48667, 41137, 'no_lang_code', 'name', 'SurveyMonkey (United States)'),
(48668, 41138, 'en', 'name', 'University and College Union'),
(48669, 41139, 'no_lang_code', 'name', 'Folha (Brazil)'),
(48670, 41140, 'no_lang_code', 'name', 'Svenska Cellulosa (Sweden)'),
(48671, 41141, 'no_lang_code', 'name', 'Southwest Airlines (United States)'),
(48672, 41142, 'no_lang_code', 'name', 'Toagosei (Japan)'),
(48673, 41142, 'ja', 'name', 'ę±äŗžåˆęˆę Ŗå¼ä¼šē¤¾'),
(48674, 41143, 'no_lang_code', 'name', 'Unum Group (United States)'),
(48675, 41144, 'no_lang_code', 'name', 'Spirit AeroSystems (United States)'),
(48676, 41145, 'no_lang_code', 'name', 'American Airlines (United States)'),
(48677, 41146, 'no_lang_code', 'name', 'Swisse (Australia)'),
(48678, 41147, 'no_lang_code', 'name', 'Aegon (United States)'),
(48679, 41148, 'no_lang_code', 'name', 'TransUnion (United States)'),
(48680, 41149, 'en', 'name', 'United Services Automobile Association'),
(48681, 41150, 'no_lang_code', 'name', 'Valley National Bank (United States)'),
(48682, 41151, 'no_lang_code', 'name', 'Tupperware Brands (United States)'),
(48683, 41152, 'no_lang_code', 'name', 'Vargƶn Alloys (Sweden)'),
(48684, 41153, 'no_lang_code', 'name', 'Graham Holdings (United States)'),
(48685, 41154, 'no_lang_code', 'name', 'Tyson Foods (United States)'),
(48686, 41155, 'no_lang_code', 'name', 'Whirlpool (United States)'),
(48687, 41156, 'no_lang_code', 'name', 'Vifor Pharma (Switzerland)'),
(48688, 41157, 'no_lang_code', 'name', 'WD-40 (United States)'),
(48689, 41158, 'no_lang_code', 'name', 'WSFS Financial Corporation (United States)'),
(48690, 41159, 'no_lang_code', 'name', 'Webster Bank (United States)'),
(48691, 41160, 'no_lang_code', 'name', 'Virtual Materials Group (Canada)'),
(48692, 41161, 'no_lang_code', 'name', 'Vivus (United States)'),
(48693, 41162, 'en', 'name', 'Daeshin University'),
(48694, 41162, 'ko', 'name', 'ėŒ€ģ‹ ėŒ€ķ•™źµ'),
(48695, 41163, 'no_lang_code', 'name', 'Anthem (United States)'),
(48696, 41164, 'no_lang_code', 'name', 'Vulcan (United States)'),
(48697, 41165, 'en', 'name', 'National Science Digital Library'),
(48698, 41166, 'no_lang_code', 'name', 'W.W Grainger (United States)'),
(48699, 41167, 'no_lang_code', 'name', 'Takasago (Japan)'),
(48700, 41167, 'ja', 'name', 'é«˜ē ‚é¦™ę–™å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(48701, 41168, 'no_lang_code', 'name', 'Yamaha (United States)'),
(48702, 41169, 'no_lang_code', 'name', 'Wells Fargo (United States)'),
(48703, 41170, 'en', 'name', 'Division of Antarctic Infrastructure and Logistics'),
(48704, 41171, 'no_lang_code', 'name', 'Tampieri Financial Group (Italy)'),
(48705, 41172, 'en', 'name', 'Polar Environment, Safety and Health Section'),
(48706, 41173, 'en', 'name', 'Division of Acquisition and Cooperative Support'),
(48707, 41174, 'no_lang_code', 'name', 'Zyvex (United States)'),
(48708, 41175, 'en', 'name', 'Division of Institution and Award Support'),
(48709, 41176, 'en', 'name', 'Division of Human Resource Management'),
(48710, 41177, 'en', 'name', 'New Jersey Department of Labor and Workforce Development'),
(48711, 41178, 'en', 'name', 'Dormitory Authority of the State of New York'),
(48712, 41179, 'en', 'name', 'United States Commission of Fine Arts'),
(48713, 41180, 'en', 'name', 'United States Election Assistance Commission'),
(48714, 41181, 'en', 'name', 'State Justice Institute'),
(48715, 41182, 'en', 'name', 'National Telecommunication Regulatory Authority'),
(48716, 41183, 'en', 'name', 'Office of Public Health Genomics'),
(48717, 41184, 'en', 'name', 'Center for Global Health'),
(48718, 41185, 'en', 'name', 'Tertiary Education Commission'),
(48719, 41186, 'en', 'name', 'Office of Multidisciplinary Activities'),
(48720, 41187, 'ga', 'name', 'An Roinn Fiontar, TrƔdƔla agus Fostaƭochta'),
(48721, 41187, 'en', 'name', 'Department of Enterprise, Trade and Employment'),
(48722, 41188, 'en', 'name', 'Canadian Nuclear Safety Commission'),
(48723, 41188, 'fr', 'name', 'Commission Canadienne de SƻretƩ NuclƩaire'),
(48724, 41189, 'en', 'name', 'Nambucca Shire Council'),
(48725, 41190, 'en', 'name', 'Indian National Science Academy'),
(48726, 41191, 'en', 'name', 'Clarence Valley Council'),
(48727, 41192, 'en', 'name', 'Office of Management'),
(48728, 41193, 'en', 'name', 'National Academy of Agricultural Sciences'),
(48729, 41194, 'ga', 'name', 'An Roinn Gnóthaí Eachtracha agus TrÔdÔla'),
(48730, 41194, 'en', 'name', 'Department of Foreign Affairs and Trade'),
(48731, 41195, 'en', 'name', 'Confederated Tribes of Siletz Indians'),
(48732, 41196, 'en', 'name', 'National Museum of American History'),
(48733, 41197, 'no_lang_code', 'name', 'Springer Nature (United States)'),
(48734, 41198, 'en', 'name', 'National Research Council'),
(48735, 41199, 'da', 'name', 'Markedsmodningsfonden'),
(48736, 41199, 'en', 'name', 'Market Development Fund'),
(48737, 41200, 'en', 'name', 'Gerald R. Ford Presidential Library and Museum'),
(48738, 41201, 'en', 'name', 'Savannah River Operations Office'),
(48739, 41202, 'en', 'name', 'Office of Economic Impact and Diversity'),
(48740, 41203, 'en', 'name', 'Ministry of Education and Science'),
(48741, 41203, 'hy', 'name', 'ŌæÖ€Õ©ÕøÖ‚Õ©ÕµÕ”Õ¶ և Õ£Õ«ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ Õ¶Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(48742, 41204, 'ms', 'name', 'Pasukan Polis Singapura'),
(48743, 41204, 'en', 'name', 'Singapore Police Force'),
(48744, 41204, 'ta', 'name', 'ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®•ą®¾ą®µą®²ąÆ துறை'),
(48745, 41204, 'zh', 'name', 'ę–°åŠ å”č­¦åÆŸéƒØé˜Ÿ'),
(48746, 41205, 'en', 'name', 'Fund for Armenian Relief'),
(48747, 41206, 'no_lang_code', 'name', 'Novartis (Germany)'),
(48748, 41207, 'en', 'name', 'Creative New Zealand'),
(48749, 41208, 'en', 'name', 'Korea Human Resource Development Institute for Health and Welfare'),
(48750, 41209, 'en', 'name', 'Korea Health Personnel Licensing Examination Institute'),
(48751, 41209, 'ko', 'name', 'ķ•œźµ­ė³“ź±“ģ˜ė£Œģøźµ­ź°€ģ‹œķ—˜ģ›'),
(48752, 41210, 'en', 'name', 'Institute of Circulatory and Respiratory Health'),
(48753, 41211, 'en', 'name', 'National Pension Service'),
(48754, 41211, 'ko', 'name', 'źµ­ėÆ¼ģ—°źøˆź³µė‹Ø'),
(48755, 41212, 'mi', 'name', 'Manatū Mō Te Taiao'),
(48756, 41212, 'en', 'name', 'Ministry for the Environment'),
(48757, 41213, 'en', 'name', 'Institute of Infection and Immunity'),
(48758, 41214, 'en', 'name', 'Australian Federal Police'),
(48759, 41215, 'en', 'name', 'Department of Internal Affairs'),
(48760, 41215, 'mi', 'name', 'Te Tari Taiwhenua'),
(48761, 41216, 'pt', 'name', 'Agência Nacional de Águas'),
(48762, 41216, 'en', 'name', 'National Water Agency'),
(48763, 41217, 'en', 'name', 'National Institute of Food and Drug Safety Evaluation'),
(48764, 41218, 'mi', 'name', 'Kaitohutohu Kaupapa Rawa'),
(48765, 41218, 'en', 'name', 'Treasury'),
(48766, 41219, 'en', 'name', 'Jeju International University'),
(48767, 41220, 'en', 'name', 'Institute of Musculoskeletal Health and Arthritis'),
(48768, 41221, 'en', 'name', 'Institute of Nutrition, Metabolism and Diabetes'),
(48769, 41222, 'en', 'name', 'Institute of Population and Public Health'),
(48770, 41223, 'en', 'name', 'Reserve Bank of New Zealand'),
(48771, 41224, 'ga', 'name', 'An Chomhairle EalaĆ­on'),
(48772, 41224, 'en', 'name', 'Arts Council'),
(48773, 41225, 'ga', 'name', 'An Roinn Oideachais agus Scileanna'),
(48774, 41225, 'en', 'name', 'Department of Education and Skills'),
(48775, 41226, 'nl', 'name', 'FOD Buitenlandse Zaken, Buitenlandse Handel en Ontwikkelingssamenwerking'),
(48776, 41226, 'en', 'name', 'FPS Foreign Affairs, Foreign Trade and Development Cooperation'),
(48777, 41226, 'de', 'name', 'FƖD AuswƤrtige Angelegenheiten, AuƟenhandel und Entwicklungszusammenarbeit'),
(48778, 41226, 'fr', 'name', 'SPF Affaires étrangères, Commerce extérieur et Coopération au Développement'),
(48779, 41227, 'en', 'name', 'National Academy of Sciences'),
(48780, 41227, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ķ•™ģˆ ģ›'),
(48781, 41228, 'en', 'name', 'Technology Information, Forecasting and Assessment Council'),
(48782, 41228, 'hi', 'name', 'ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą„‚ą¤šą¤Øą¤¾, ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤Øą„ą¤®ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤®ą„‚ą¤²ą„ą¤Æą¤¾ą¤‚ą¤•ą¤Ø परिषद'),
(48783, 41229, 'en', 'name', 'Taiwan Food and Drug Administration'),
(48784, 41230, 'en', 'name', 'National Quarantine Station'),
(48785, 41231, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia em Toxinas'),
(48786, 41232, 'en', 'name', 'Western Integrated Pest Management Center'),
(48787, 41233, 'fr', 'name', 'Direction Générale-Affaires économiques et financières'),
(48788, 41233, 'en', 'name', 'Directorate-General for Economic and Financial Affairs'),
(48789, 41233, 'de', 'name', 'General Direktion-Wirtschaft und Finanzen'),
(48790, 41234, 'fr', 'name', 'Eurostat'),
(48791, 41234, 'de', 'name', 'Statistische Amt der EuropƤischen Union'),
(48792, 41235, 'en', 'name', 'Beijing Cultural Development Foundation'),
(48793, 41235, 'zh', 'name', 'åŒ—äŗ¬ę–‡åŒ–å‘å±•åŸŗé‡‘ä¼š'),
(48794, 41236, 'fr', 'name', 'Direction GĆ©nĆ©rale de l’interprĆ©tation'),
(48795, 41236, 'en', 'name', 'Directorate-General for Interpretation'),
(48796, 41236, 'de', 'name', 'Generaldirektion Dolmetschen'),
(48797, 41237, 'en', 'name', 'Air Navigation and Weather Services'),
(48798, 41238, 'hr', 'name', 'Ministarstvo kulture'),
(48799, 41238, 'en', 'name', 'Ministry of Culture of the Republic of Croatia'),
(48800, 41239, 'en', 'name', 'Teaching Learning & Research Initiative'),
(48801, 41240, 'no_lang_code', 'name', 'Excellerate (Australia)'),
(48802, 41241, 'fr', 'name', 'Direction Générale Affaires maritimes et pêche'),
(48803, 41241, 'en', 'name', 'Directorate-General for Maritime Affairs and Fisheries'),
(48804, 41241, 'de', 'name', 'Generaldirektion Maritime Angelegenheiten und Fischerei'),
(48805, 41242, 'en', 'name', 'National Bureau of Statistics of China'),
(48806, 41242, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶ē»Ÿč®”å±€'),
(48807, 41243, 'en', 'name', 'China Atomic Energy Authority'),
(48808, 41243, 'zh', 'name', 'å›½å®¶åŽŸå­čƒ½ęœŗęž„'),
(48809, 41244, 'en', 'name', 'General Organization for Social Insurance'),
(48810, 41244, 'ar', 'name', 'المؤسسة العامة Ł„Ł„ŲŖŲ£Ł…ŁŠŁ†Ų§ŲŖ Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(48811, 41245, 'en', 'name', 'Israel National Road Safety Authority'),
(48812, 41246, 'en', 'name', 'Australian e-Health Research Centre'),
(48813, 41247, 'fr', 'name', 'Direction Générale Fiscalité et union douanière'),
(48814, 41247, 'en', 'name', 'Directorate-General for Taxation and Customs Union'),
(48815, 41247, 'de', 'name', 'Generaldirektion Steuern und Zollunion'),
(48816, 41248, 'en', 'name', 'Bureau of International Cooperation'),
(48817, 41248, 'zh', 'name', '国际合作局'),
(48818, 41249, 'en', 'name', 'Ministry of Unification'),
(48819, 41249, 'ko', 'name', 'ķ†µģ¼ė¶€'),
(48820, 41250, 'en', 'name', 'Directorate-General for Neighbourhood and Enlargement Negotiations'),
(48821, 41250, 'de', 'name', 'EuropƤische Nachbarschaftspolitik und Erweiterungsverhandlungen'),
(48822, 41250, 'fr', 'name', 'Politique europƩenne de voisinage et nƩgociations d''Ʃlargissement'),
(48823, 41251, 'en', 'name', 'Ministry of Economic Development and Technology'),
(48824, 41252, 'en', 'name', 'Ministry of Government Legislation'),
(48825, 41252, 'ko', 'name', 'ė²•ģ œģ²˜'),
(48826, 41253, 'en', 'name', 'Department of Environment and Conservation'),
(48827, 41254, 'fr', 'name', 'Direction GƩnƩrale Commerce'),
(48828, 41254, 'en', 'name', 'Directorate-General for Trade'),
(48829, 41254, 'de', 'name', 'Generaldirektion Handel'),
(48830, 41255, 'en', 'name', 'Islamic Azad University Central Tehran Branch'),
(48831, 41255, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران Ł…Ų±Ś©Ų²ŪŒ'),
(48832, 41256, 'en', 'name', 'National Intelligence Service'),
(48833, 41256, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­źµ­ź°€ģ •ė³“ģ›'),
(48834, 41257, 'fr', 'name', 'Agence de la BiomƩdecine'),
(48835, 41258, 'en', 'name', 'Department of Social Services'),
(48836, 41259, 'en', 'name', 'Board of Audit and Inspection'),
(48837, 41259, 'ko', 'name', '감사원'),
(48838, 41260, 'en', 'name', 'Department of the Prime Minister and Cabinet'),
(48839, 41261, 'en', 'name', 'National Human Rights Commission of Korea'),
(48840, 41261, 'ko', 'name', 'źµ­ź°€ģøź¶Œģœ„ģ›ķšŒ'),
(48841, 41262, 'en', 'name', 'Ministry of Health and Social Affairs'),
(48842, 41262, 'sv', 'name', 'Socialdepartementet'),
(48843, 41263, 'sv', 'name', 'Centrum fƶr Idrottsforskning'),
(48844, 41263, 'en', 'name', 'Swedish Research Council for Sport Science'),
(48845, 41264, 'en', 'name', 'Korea Fair Trade Commission'),
(48846, 41264, 'ko', 'name', 'ź³µģ •ź±°ėž˜ģœ„ģ›ķšŒ'),
(48847, 41265, 'en', 'name', 'Ministry of Foreign Affairs of Denmark'),
(48848, 41265, 'da', 'name', 'Udenrigsministeriet'),
(48849, 41266, 'fr', 'name', 'Commissariat GƩnƩral Ơ l''Investissement'),
(48850, 41267, 'da', 'name', 'BeskƦftigelsesministeriet'),
(48851, 41267, 'en', 'name', 'Danish Ministry of Employment'),
(48852, 41268, 'en', 'name', 'Ministry of Infrastructure, Transport and Networks'),
(48853, 41268, 'el', 'name', '΄πουργείο Ī„Ļ€ĪæĪ“ĪæĪ¼ĻŽĪ½, ĪœĪµĻ„Ī±Ļ†ĪæĻĻŽĪ½ και Ī”Ī¹ĪŗĻ„ĻĻ‰Ī½'),
(48854, 41269, 'en', 'name', 'Ministry of Defence'),
(48855, 41269, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(48856, 41270, 'en', 'name', 'Aeronautical Development Agency'),
(48857, 41271, 'en', 'name', 'Anti Corruption and Civil Rights Commission'),
(48858, 41271, 'ko', 'name', 'źµ­ėÆ¼ź¶Œģµģœ„ģ›ķšŒ'),
(48859, 41272, 'en', 'name', 'Saxon State Ministry for Science and the Arts'),
(48860, 41272, 'de', 'name', 'Sächsisches Staatsministerium für Wissenschaft und Kunst'),
(48861, 41273, 'en', 'name', 'Supreme Court of Korea'),
(48862, 41273, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ėŒ€ė²•ģ›'),
(48863, 41274, 'de', 'name', 'Bundesamt für Bevölkerungsschutz und Katastrophenhilfe'),
(48864, 41274, 'en', 'name', 'Federal Office of Civil protection and Disaster Assistance'),
(48865, 41275, 'en', 'name', 'Korea Customs Service'),
(48866, 41275, 'ko', 'name', '꓀세청'),
(48867, 41276, 'es', 'name', 'Fundación Pablo García'),
(48868, 41277, 'de', 'name', 'Fonds Gesundes Ɩsterreich'),
(48869, 41278, 'en', 'name', 'Public Procurement Service'),
(48870, 41278, 'ko', 'name', '씰달청'),
(48871, 41279, 'en', 'name', 'Florida Sea Grant'),
(48872, 41280, 'ms', 'name', 'Kementerian Sumber Asli dan Alam Sekitar'),
(48873, 41280, 'en', 'name', 'Ministry of Natural Resources and Environment'),
(48874, 41281, 'pt', 'name', 'Fundação de Apoio à Pesquisa do Rio Grande do Norte'),
(48875, 41282, 'en', 'name', 'Statistics Korea'),
(48876, 41282, 'ko', 'name', '통계청'),
(48877, 41283, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Espírito Santo'),
(48878, 41284, 'en', 'name', 'Supreme Prosecutors Office of the Republic of Korea'),
(48879, 41284, 'ko', 'name', '검찰청'),
(48880, 41285, 'en', 'name', 'Parliament of Australia'),
(48881, 41286, 'ms', 'name', 'Kementerian Tenaga, Teknologi Hijau dan Air'),
(48882, 41286, 'en', 'name', 'Ministry of Energy Green Technology and Water'),
(48883, 41287, 'en', 'name', 'Military Manpower Administration'),
(48884, 41287, 'ko', 'name', '병묓청'),
(48885, 41288, 'ms', 'name', 'Kementerian Kebudayaan, Masyarakat dan Belia'),
(48886, 41288, 'en', 'name', 'Ministry of Culture, Community and Youth'),
(48887, 41288, 'ta', 'name', 'ą®•ą®²ą®¾ą®šą®¾ą®°, ą®šą®®ąÆ‚ą®•, ą®‡ą®³ąÆˆą®Æą®°ąÆą®¤ąÆą®±ąÆˆ ą®…ą®®ąÆˆą®šąÆą®šąÆ'),
(48888, 41288, 'zh', 'name', 'ę–‡åŒ–ć€ē¤¾åŒŗåŠé’å¹“éƒØ'),
(48889, 41289, 'en', 'name', 'Gauteng Department of Agriculture and Rural Development'),
(48890, 41290, 'ms', 'name', 'Majlis Kebudayaan Kebangsaan Singapura'),
(48891, 41290, 'en', 'name', 'National Arts Council'),
(48892, 41290, 'zh', 'name', 'å›½å®¶č‰ŗęœÆē†äŗ‹ä¼š'),
(48893, 41291, 'ro', 'name', 'Ministerul Muncii, Familiei, Protecţiei Sociale şi Persoanelor Vârstnice'),
(48894, 41292, 'fr', 'name', 'Observatoire National sur les Effets du RƩchauffement Climatique'),
(48895, 41293, 'en', 'name', 'Ministry for Foreign Affairs, Education and Culture'),
(48896, 41294, 'en', 'name', 'JTC Corporation'),
(48897, 41294, 'zh', 'name', 'č£•å»Šé›†å›¢'),
(48898, 41295, 'de', 'name', 'Bundesministerium für wirtschaftliche Zusammenarbeit und Entwicklung'),
(48899, 41295, 'en', 'name', 'Federal Ministry of Economic Cooperation and Development'),
(48900, 41296, 'hu', 'name', 'Emberi ErőforrĆ”sok MinisztĆ©rium'),
(48901, 41296, 'en', 'name', 'Ministry of Human Capacities'),
(48902, 41297, 'en', 'name', 'Korean National Police Agency'),
(48903, 41297, 'ko', 'name', '경찰청'),
(48904, 41298, 'en', 'name', 'Land Transport Authority'),
(48905, 41298, 'ms', 'name', 'Penguasa Pengangkutan Darat'),
(48906, 41298, 'ta', 'name', 'ą®Øą®æą®²ą®ŖąÆ ą®ŖąÆ‹ą®•ąÆą®•ąÆą®µą®°ą®¤ąÆą®¤ąÆ ą®µą®¾ą®°ą®æą®Æą®®ąÆ'),
(48907, 41298, 'zh', 'name', 'é™†č·Æäŗ¤é€šē®”ē†å±€'),
(48908, 41299, 'en', 'name', 'Overseas Koreans Foundation'),
(48909, 41300, 'es', 'name', 'Centro Nacional de Investigaciones Cardiovasculares Carlos III'),
(48910, 41300, 'en', 'name', 'Spanish National Centre for Cardiovascular Research'),
(48911, 41301, 'ms', 'name', 'Kementerian Ehwal Dalam Negeri'),
(48912, 41301, 'en', 'name', 'Ministry of Home Affairs'),
(48913, 41301, 'ta', 'name', 'ą®‰ą®³ąÆą®¤ąÆą®±ąÆˆ ą®…ą®®ąÆˆą®šąÆą®šąÆ'),
(48914, 41301, 'zh', 'name', 'å†…ę”æéƒØ'),
(48915, 41302, 'en', 'name', 'Office of the Civil Service Commission'),
(48916, 41302, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø„ąø“ąø°ąøąø£ąø£ąø”ąøąø²ąø£ąø‚ą¹‰ąø²ąø£ąø²ąøŠąøąø²ąø£ąøžąø„ą¹€ąø£ąø·ąø­ąø™'),
(48917, 41303, 'en', 'name', 'National Parks Board'),
(48918, 41304, 'en', 'name', 'Korea Creative Content Agency'),
(48919, 41305, 'en', 'name', 'Ministry of Sports, Youth, Popular Education and Community Life'),
(48920, 41305, 'fr', 'name', 'MinistĆØre de la Ville, de la Jeunesse et des Sports'),
(48921, 41306, 'es', 'name', 'Secretaría de Educación Superior, Ciencia, Tecnología e Innovación'),
(48922, 41307, 'en', 'name', 'Ministry of National Development'),
(48923, 41307, 'hu', 'name', 'Nemzeti FejlesztƩsi MinisztƩrium'),
(48924, 41308, 'en', 'name', 'Ministry for Foreign Affairs of Iceland'),
(48925, 41308, 'is', 'name', 'UtanrƭkisrƔưuneytiư'),
(48926, 41309, 'es', 'name', 'Ministerio de Ciencia, TecnologĆ­a y Telecomunicaciones'),
(48927, 41310, 'pt', 'name', 'Agência Nacional do Petróleo, GÔs Natural e Biocombustíveis'),
(48928, 41310, 'en', 'name', 'National Agency of Petroleum, Natural Gas and Biofuels'),
(48929, 41311, 'en', 'name', 'National Agency for Administrative City Construction'),
(48930, 41311, 'ko', 'name', 'ķ–‰ģ •ģ¤‘ģ‹¬ė³µķ•©ė„ģ‹œź±“ģ„¤ģ²­'),
(48931, 41312, 'en', 'name', 'Icelandic International Development Agency'),
(48932, 41312, 'is', 'name', 'Próunarsamvinnustofnun ƍslands'),
(48933, 41313, 'en', 'name', 'Academy of Sciences Malaysia'),
(48934, 41313, 'ms', 'name', 'Akademi Sains Malaysia'),
(48935, 41314, 'en', 'name', 'Anhui Institute of Optics and Fine Mechanics'),
(48936, 41314, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å®‰å¾½å…‰å­¦ē²¾åÆ†ęœŗę¢°ē ”ē©¶ę‰€'),
(48937, 41315, 'en', 'name', 'Health Insurance Review and Assessment Service'),
(48938, 41315, 'ko', 'name', '걓강 ė³“ķ—˜ 심사 ķ‰ź°€ģ›'),
(48939, 41316, 'en', 'name', 'Ministry of Economy'),
(48940, 41316, 'he', 'name', '×ž×©×Ø×“ הכלכלה'),
(48941, 41317, 'en', 'name', 'Institute of Plasma Physics'),
(48942, 41317, 'zh', 'name', '中国科学院等离子体物理研究所'),
(48943, 41318, 'en', 'name', 'Korea Disabled People s Development Institute'),
(48944, 41318, 'ko', 'name', 'ķ•œźµ­ģž„ģ• ģøź°œė°œģ›'),
(48945, 41319, 'pt', 'name', 'Secretaria de Desenvolvimento EconÓmico Ciência Tecnologia e Ensino Superior'),
(48946, 41320, 'en', 'name', 'Institute of Solid State Physics'),
(48947, 41320, 'zh', 'name', '固体物理研究所'),
(48948, 41321, 'en', 'name', 'Pennsylvania Office of Attorney General'),
(48949, 41322, 'en', 'name', 'Institute of Intelligent Machines'),
(48950, 41322, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åˆč‚„ę™ŗčƒ½ęœŗę¢°ē ”ē©¶ę‰€'),
(48951, 41323, 'en', 'name', 'Ministry of Finance'),
(48952, 41323, 'ja', 'name', 'č²”å‹™ēœ'),
(48953, 41324, 'en', 'name', 'Pennsylvania Department of Labor and Industry'),
(48954, 41325, 'en', 'name', 'High Magnetic Field Laboratory'),
(48955, 41325, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¼ŗē£åœŗē§‘å­¦äø­åæƒ'),
(48956, 41326, 'en', 'name', 'IDA Ireland'),
(48957, 41327, 'en', 'name', 'Lake Champlain Sea Grant'),
(48958, 41328, 'en', 'name', 'Pennsylvania Department of Aging'),
(48959, 41329, 'en', 'name', 'Pennsylvania Department of Community and Economic Development'),
(48960, 41330, 'en', 'name', 'Institute of Applied Technology'),
(48961, 41330, 'zh', 'name', 'åŗ”ē”ØęŠ€ęœÆē ”ē©¶ę‰€'),
(48962, 41331, 'en', 'name', 'Department of Economic and Community Development'),
(48963, 41332, 'en', 'name', 'Pennsylvania Sea Grant'),
(48964, 41333, 'en', 'name', 'Pennsylvania Department of Military and Veterans Affairs'),
(48965, 41334, 'pt', 'name', 'Agência Nacional de Energia Elétrica'),
(48966, 41335, 'en', 'name', 'Pennsylvania Higher Education Assistance Agency'),
(48967, 41336, 'en', 'name', 'Pennsylvania Housing Finance Agency'),
(48968, 41337, 'pt', 'name', 'Centro de Tecnologias EstratƩgicas do Nordeste'),
(48969, 41338, 'no_lang_code', 'name', 'Vectec Solutions (United States)'),
(48970, 41339, 'en', 'name', 'Connecticut Department of Agriculture'),
(48971, 41340, 'en', 'name', 'Pennsylvania Public Utility Commission'),
(48972, 41341, 'en', 'name', 'Virginia Economic Development Partnership'),
(48973, 41342, 'ms', 'name', 'Jabatan Perkhidmatan Awam Malaysia'),
(48974, 41342, 'en', 'name', 'Public Service Department'),
(48975, 41343, 'en', 'name', 'Texas State Affordable Housing Corporation'),
(48976, 41344, 'en', 'name', 'State Corporation Commission'),
(48977, 41345, 'en', 'name', 'Texas Department of Aging and Disability Services'),
(48978, 41346, 'en', 'name', 'Texas Animal Health Commission'),
(48979, 41347, 'en', 'name', 'Connecticut Department of Labor'),
(48980, 41348, 'en', 'name', 'Connecticut Department of Transportation'),
(48981, 41349, 'en', 'name', 'Texas Commission on the Arts'),
(48982, 41350, 'en', 'name', 'Ohio Arts Council'),
(48983, 41351, 'en', 'name', 'Office of the Attorney General'),
(48984, 41352, 'en', 'name', 'Office of Policy and Management'),
(48985, 41353, 'en', 'name', 'Ohio Emergency Management Agency'),
(48986, 41354, 'en', 'name', 'Council on Competitive Government'),
(48987, 41355, 'en', 'name', 'Texas Council for Developmental Disabilities'),
(48988, 41356, 'en', 'name', 'New Jersey Commission on Science, Innovation and Technology'),
(48989, 41357, 'en', 'name', 'China National Administration of Coal Geology'),
(48990, 41358, 'en', 'name', 'Texas Education Agency'),
(48991, 41359, 'en', 'name', 'Department of Agriculture & Co-operation'),
(48992, 41360, 'en', 'name', 'New Jersey Council on Developmental Disabilities'),
(48993, 41361, 'en', 'name', 'Texas Department of Family and Protective Services'),
(48994, 41362, 'en', 'name', 'New Jersey Department of Children and Families'),
(48995, 41363, 'en', 'name', 'New Jersey Economic Development Authority'),
(48996, 41364, 'en', 'name', 'Ohio Department of Education'),
(48997, 41365, 'en', 'name', 'Ministry of Science and Environmental Protection'),
(48998, 41365, 'sr', 'name', 'ŠœŠøŠ½ŠøŃŃ‚Š°Ń€ŃŃ‚Š²Š¾ науке Šø Š·Š°ŃˆŃ‚ŠøŃ‚Šµ животне среГине'),
(48999, 41366, 'en', 'name', 'New Jersey Department of Community Affairs'),
(49000, 41367, 'en', 'name', 'Bio-oriented Technology Research Advancement Institution'),
(49001, 41367, 'ja', 'name', 'ē”Ÿē‰©ē³»ē‰¹å®šē”£ę„­ęŠ€č”“ē ”ē©¶ę”Æę“ć‚»ćƒ³ć‚æ'),
(49002, 41368, 'no', 'name', 'Det kongelige Utenriksdepartement'),
(49003, 41368, 'en', 'name', 'Ministry of Foreign Affairs'),
(49004, 41369, 'en', 'name', 'Texas Groundwater Protection Committee'),
(49005, 41370, 'no_lang_code', 'name', 'Mars (France)'),
(49006, 41371, 'en', 'name', 'Texas Medical Board'),
(49007, 41372, 'en', 'name', 'Arkansas Arts Council'),
(49008, 41373, 'fr', 'name', 'Agence Nationale des Parcs Nationaux'),
(49009, 41373, 'en', 'name', 'National Agency for National Parks'),
(49010, 41374, 'en', 'name', 'New Hampshire State Council on the Arts'),
(49011, 41375, 'en', 'name', 'Texas Board of Nursing'),
(49012, 41376, 'en', 'name', 'State Preservation Board'),
(49013, 41377, 'en', 'name', 'New Jersey Department of Law and Public Safety'),
(49014, 41378, 'pt', 'name', 'Centro de Excelência em BioinformÔtica'),
(49015, 41379, 'en', 'name', 'Delaware Division of the Arts'),
(49016, 41380, 'en', 'name', 'Texas Water Development Board'),
(49017, 41381, 'en', 'name', 'New Mexico Legislature'),
(49018, 41382, 'en', 'name', 'Ministry for Foreign Affairs'),
(49019, 41382, 'sv', 'name', 'Utrikesdepartementet'),
(49020, 41383, 'en', 'name', 'Texas Juvenile Justice Department'),
(49021, 41384, 'en', 'name', 'Environmental Protection Agency'),
(49022, 41384, 'da', 'name', 'MiljĆøstyrelsen'),
(49023, 41385, 'en', 'name', 'Office of the Attorney General'),
(49024, 41386, 'en', 'name', 'New York State Council on the Arts'),
(49025, 41387, 'en', 'name', 'Danish Ministry of Health'),
(49026, 41387, 'da', 'name', 'Sundheds- og Ɔldreministeriet'),
(49027, 41388, 'en', 'name', 'Michigan Community Service Commission'),
(49028, 41389, 'pt', 'name', 'Comissão Interministerial para os Recursos do Mar'),
(49029, 41389, 'en', 'name', 'Interministerial Commission for Sea Resources'),
(49030, 41390, 'en', 'name', 'New York State Department of Transportation'),
(49031, 41391, 'en', 'name', 'Centre for Interdisciplinary Research in Music Media and Technology'),
(49032, 41392, 'en', 'name', 'Texas Workforce Commission'),
(49033, 41393, 'pt', 'name', 'Fundo para o Desenvolvimento Tecnológico das Telecomunicações'),
(49034, 41394, 'en', 'name', 'Missouri Department of Transportation'),
(49035, 41395, 'en', 'name', 'New York State Governor''s Traffic Safety Committee'),
(49036, 41396, 'en', 'name', 'Michigan Department of Military and Veterans Affairs');
INSERT INTO `ror_settings` VALUES
(49037, 41397, 'en', 'name', 'New York State Developmental Disabilities Planning Council'),
(49038, 41398, 'en', 'name', 'Colorado Traumatic Brain Injury Trust Fund'),
(49039, 41399, 'no_lang_code', 'name', 'Eni (Kazakhstan)'),
(49040, 41400, 'en', 'name', 'Michigan State Housing Development Authority'),
(49041, 41401, 'en', 'name', 'Mecklenburg County Government'),
(49042, 41402, 'en', 'name', 'New York State Office of Temporary and Disability Assistance'),
(49043, 41403, 'en', 'name', 'Michigan Department of Health and Human Services'),
(49044, 41404, 'en', 'name', 'Minnesota Department of Commerce'),
(49045, 41405, 'en', 'name', 'Arizona Department of Economic Security'),
(49046, 41406, 'en', 'name', 'Minnesota Department of Transportation'),
(49047, 41407, 'de', 'name', 'Bundesinstitut für Sportwissenschaft'),
(49048, 41408, 'en', 'name', 'Nassau County Department of Social Services'),
(49049, 41409, 'en', 'name', 'Minnesota Office of Higher Education'),
(49050, 41410, 'en', 'name', 'Minnesota Housing Finance Agency'),
(49051, 41411, 'en', 'name', 'Executive Office of Housing and Economic Development'),
(49052, 41412, 'fr', 'name', 'Agence de l''eau Adour-Garonne'),
(49053, 41413, 'en', 'name', 'Minnesota State Arts Board'),
(49054, 41414, 'da', 'name', 'Forsvarsakademiet'),
(49055, 41414, 'en', 'name', 'Royal Danish Defence College'),
(49056, 41415, 'en', 'name', 'Saint Louis County Department of Health'),
(49057, 41416, 'en', 'name', 'Maryland State Arts Council'),
(49058, 41417, 'en', 'name', 'Illinois Department of Children and Family Services'),
(49059, 41418, 'en', 'name', 'Maryland Historical Trust'),
(49060, 41419, 'en', 'name', 'Mid Atlantic Arts Foundation'),
(49061, 41420, 'en', 'name', 'Massachusetts Department of Agricultural Resources'),
(49062, 41421, 'en', 'name', 'Massachusetts Department of Environmental Protection'),
(49063, 41422, 'en', 'name', 'Virginia Commission for the Arts'),
(49064, 41423, 'en', 'name', 'New York State Council on Graduate Medical Education'),
(49065, 41424, 'no_lang_code', 'name', 'Bremerhaven Economic Development (Germany)'),
(49066, 41424, 'de', 'name', 'Bremerhavener Gesellschaft für Investitionsförderung und Stadtentwicklung mbH'),
(49067, 41425, 'en', 'name', 'Office of the Attorney General Virginia'),
(49068, 41426, 'en', 'name', 'Virginia BioTechnology Research Park'),
(49069, 41427, 'en', 'name', 'Regional Secretariat for the Sea, Science and Technology'),
(49070, 41427, 'pt', 'name', 'SecretÔrio Regional do Mar, Ciência e Tecnologia'),
(49071, 41428, 'en', 'name', 'Chesapeake Bay Program'),
(49072, 41429, 'en', 'name', 'Virginia Department of Social Services'),
(49073, 41430, 'en', 'name', 'Georgia Department of Transportation'),
(49074, 41431, 'en', 'name', 'Virginia Commission on Youth'),
(49075, 41432, 'en', 'name', 'Virginia Information Technologies Agency'),
(49076, 41433, 'en', 'name', 'Heartland Center for Occupational Safety and Health'),
(49077, 41434, 'en', 'name', 'Recycled Materials Resource Center'),
(49078, 41435, 'en', 'name', 'Florida Department of Military Affairs'),
(49079, 41436, 'sv', 'name', 'Kungliga Fysiografiska SƤllskapet i Lund'),
(49080, 41436, 'en', 'name', 'Royal Physiographic Society of Lund'),
(49081, 41437, 'en', 'name', 'Ministry of Agriculture'),
(49082, 41438, 'en', 'name', 'Children''s Trust'),
(49083, 41439, 'en', 'name', 'Research Manitoba'),
(49084, 41440, 'en', 'name', 'Tennessee Wildlife Resources Agency'),
(49085, 41441, 'en', 'name', 'Highlands and Islands Enterprise'),
(49086, 41442, 'en', 'name', 'Saskatchewan Ministry of Agriculture'),
(49087, 41443, 'en', 'name', 'British Columbia Arts Council'),
(49088, 41444, 'en', 'name', 'Department of Local Government and Communities'),
(49089, 41445, 'en', 'name', 'Department of Culture and the Arts'),
(49090, 41446, 'en', 'name', 'Arkansas Economic Development Commission'),
(49091, 41447, 'en', 'name', 'Department for Child Protection and Family Support'),
(49092, 41448, 'fr', 'name', 'Bruxelles Environnemont'),
(49093, 41448, 'nl', 'name', 'Leefmilieu Brussel'),
(49094, 41449, 'en', 'name', 'Agriculture Food and Rural Development'),
(49095, 41450, 'en', 'name', 'South Dakota Board of Regents'),
(49096, 41451, 'en', 'name', 'Municipality of Tai''an'),
(49097, 41451, 'zh', 'name', '泰安'),
(49098, 41452, 'en', 'name', 'Department of the Premier and Cabinet'),
(49099, 41453, 'en', 'name', 'French Community of Belgium'),
(49100, 41453, 'fr', 'name', 'FƩdƩration Wallonie-Bruxelles'),
(49101, 41454, 'en', 'name', 'Center for Information Technology Research in the Interest of Society'),
(49102, 41455, 'en', 'name', 'Department of Education'),
(49103, 41456, 'pt', 'name', 'Empresa de Pesquisa AgropecuƔria do Rio Grande do Norte'),
(49104, 41457, 'en', 'name', 'National Climate Change Adaptation Research Facility'),
(49105, 41458, 'en', 'name', 'Queensland Academy of Sport'),
(49106, 41459, 'en', 'name', 'Montana Department of Transportation'),
(49107, 41460, 'en', 'name', 'ACT Department of Treasury'),
(49108, 41461, 'en', 'name', 'Australian Water Recycling Centre of Excellence'),
(49109, 41462, 'en', 'name', 'Foshan Municipal Government'),
(49110, 41463, 'en', 'name', 'Sƶdra Ƅlvsborg Hospital'),
(49111, 41463, 'sv', 'name', 'Sƶdra Ƅlvsborgs Sjukhus'),
(49112, 41464, 'en', 'name', 'Manitoba Labour and Immigration'),
(49113, 41465, 'en', 'name', 'Department of State Growth'),
(49114, 41466, 'de', 'name', 'Senatsverwaltung für Bildung, Jugend und Wissenschaft'),
(49115, 41467, 'en', 'name', 'Ministry of Children, Community and Social Services'),
(49116, 41467, 'fr', 'name', 'MinistĆØre des Services Sociaux et Communautaires'),
(49117, 41468, 'en', 'name', 'National Insurance Institute of Israel'),
(49118, 41468, 'he', 'name', 'המוהד לביטוח לאומי'),
(49119, 41469, 'en', 'name', 'Islamic Development Bank'),
(49120, 41469, 'ar', 'name', 'Ų§Ł„ŲØŁ†Łƒ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ Ł„Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(49121, 41470, 'en', 'name', 'Shetland Islands Council'),
(49122, 41471, 'fi', 'name', 'EtelƤ-Pohjanmaan Sairaanhoitopiiri'),
(49123, 41472, 'fr', 'name', 'Conseil RĆ©gional d''Ǝle-de-France'),
(49124, 41473, 'en', 'name', 'Chief Minister Treasury and Economic Development Directorate'),
(49125, 41474, 'fr', 'name', 'Bibliothèque et Archives nationales du Québec'),
(49126, 41474, 'en', 'name', 'National Library and Archives of QuƩbec'),
(49127, 41475, 'en', 'name', 'Department of Communities, Culture and Heritage'),
(49128, 41476, 'en', 'name', 'Act Health'),
(49129, 41477, 'en', 'name', 'Guangxi Zhuang Autonomous Region Health and Family Planning'),
(49130, 41477, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(49131, 41478, 'en', 'name', 'Saskatchewan Arts Board'),
(49132, 41479, 'en', 'name', 'Bureau of Agriculture of Guangzhou Municipality'),
(49133, 41479, 'zh', 'name', 'å¹æå·žåø‚å†œäøšå±€'),
(49134, 41480, 'en', 'name', 'HealthForceOntario'),
(49135, 41481, 'en', 'name', 'Research Institute for Astronomy and Astrophysics of Maragh'),
(49136, 41482, 'en', 'name', 'Bugok National Hospital'),
(49137, 41482, 'ko', 'name', '국립부곔병원'),
(49138, 41483, 'en', 'name', 'Newfoundland and Labrador Arts Council'),
(49139, 41484, 'en', 'name', 'Chuncheon National Hospital'),
(49140, 41484, 'ko', 'name', 'źµ­ė¦½ģ¶˜ģ²œė³‘ģ›'),
(49141, 41485, 'en', 'name', 'Lowitja Institute'),
(49142, 41486, 'en', 'name', 'Masan National Tuberculosis Hospital'),
(49143, 41487, 'fr', 'name', 'Conseil des arts de l''Ontario'),
(49144, 41487, 'en', 'name', 'Ontario Arts Council'),
(49145, 41488, 'en', 'name', 'Ministry of Advanced Education'),
(49146, 41489, 'en', 'name', 'Melbourne Water'),
(49147, 41490, 'en', 'name', 'Mokpo National Tuberculosis Hospital'),
(49148, 41490, 'ko', 'name', 'źµ­ė¦½ėŖ©ķ¬ė³‘ģ›'),
(49149, 41491, 'en', 'name', 'Naju National Hospital'),
(49150, 41491, 'ko', 'name', 'źµ­ė¦½ė‚˜ģ£¼ė³‘ģ›'),
(49151, 41492, 'de', 'name', 'Ministerium für Wissenschaft, Forschung und Kultur'),
(49152, 41493, 'en', 'name', 'Sorokdo National Hospital'),
(49153, 41493, 'ko', 'name', 'źµ­ė¦½ģ†Œė”ė„ė³‘ģ›'),
(49154, 41494, 'pt', 'name', 'Companhia Energética de São Paulo'),
(49155, 41495, 'en', 'name', 'Gambling Awareness Nova Scotia'),
(49156, 41496, 'en', 'name', 'Port of Melbourne Corporation'),
(49157, 41497, 'en', 'name', 'Territory and Municipal Services'),
(49158, 41498, 'en', 'name', 'Canadian Mental Health Association'),
(49159, 41499, 'en', 'name', 'Wellington City Council'),
(49160, 41500, 'en', 'name', 'Office of the First Minister and deputy First Minister'),
(49161, 41501, 'es', 'name', 'Consejo Superior Universitario Centroamericano'),
(49162, 41502, 'en', 'name', 'County Administrative Board'),
(49163, 41502, 'sv', 'name', 'LƤnsstyrelsen Ɩstergƶtland'),
(49164, 41503, 'pt', 'name', 'Secretaria de Estado da Ciência, Tecnologia e Inovação'),
(49165, 41504, 'no_lang_code', 'name', 'Qatar Petroleum (Qatar)'),
(49166, 41504, 'ar', 'name', 'Ų¹Ł…Ł„ŁŠŲ§ŲŖ قطر Ł„Ł„ŲØŲŖŲ±ŁˆŁ„'),
(49167, 41505, 'pt', 'name', 'Secretaria de Estado de Ciência Tecnologia e Inovação'),
(49168, 41506, 'en', 'name', 'Innoviris'),
(49169, 41507, 'en', 'name', 'Department of Arts and Museums'),
(49170, 41508, 'hr', 'name', 'Drzavni zavod za zastitu prirode'),
(49171, 41508, 'en', 'name', 'State Institute for Nature Protection'),
(49172, 41509, 'en', 'name', 'Department of Sport and Recreation'),
(49173, 41510, 'no_lang_code', 'name', 'Wenzhou Municipal Sci-Tech Bureau'),
(49174, 41510, 'zh', 'name', 'ęø©å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(49175, 41511, 'en', 'name', 'Ministry of Technology, Innovation & Citizens'' Services'),
(49176, 41512, 'en', 'name', 'Uttarakhand State Council for Science and Technology'),
(49177, 41513, 'en', 'name', 'Department of Education and Training'),
(49178, 41514, 'es', 'name', 'Secretaría de Investigación, Innovación y Educación Superior'),
(49179, 41515, 'en', 'name', 'Cambridge–MIT Institute'),
(49180, 41516, 'en', 'name', 'Nova Scotia Department of Health and Wellness'),
(49181, 41517, 'en', 'name', 'Chhattisgarh Council of Science and Technology'),
(49182, 41517, 'hi', 'name', 'ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ परिषद'),
(49183, 41518, 'it', 'name', 'Collegio Ghislieri'),
(49184, 41519, 'en', 'name', 'Brazilian Institute of Environment and Renewable Natural Resources'),
(49185, 41519, 'pt', 'name', 'Instituto Brasileiro do Meio Ambiente e dos Recursos Naturais RenovƔveis'),
(49186, 41520, 'no_lang_code', 'name', 'China Tobacco Guangxi Industrial (China)'),
(49187, 41520, 'zh', 'name', 'å¹æč„æäø­ēƒŸå·„äøšęœ‰é™č“£ä»»å…¬åø'),
(49188, 41521, 'no_lang_code', 'name', 'Mechanics Electronics Computer Corporation (Japan)'),
(49189, 41521, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ”ćƒƒć‚Æ'),
(49190, 41522, 'fr', 'name', 'Institut suisse de mƩdecine Ʃquine'),
(49191, 41522, 'en', 'name', 'Swiss Institute of Equine Medicine'),
(49192, 41523, 'fr', 'name', 'Fondation Sciences et Technologies pour l''AƩronautique et l''Espace'),
(49193, 41524, 'es', 'name', 'Oficina Regional de Coordinación de Salud Mental'),
(49194, 41525, 'pt', 'name', 'Fundação de Estudo e Pesquisa em Medicina VeterinÔria e Zootecnia'),
(49195, 41526, 'en', 'name', 'Competence Centre for Materials Science and Technology'),
(49196, 41527, 'de', 'name', 'Bayerisch-Franzƶsische Hochschulzentrum'),
(49197, 41527, 'fr', 'name', 'Centre de CoopƩration Universitaire Franco-Bavarois'),
(49198, 41528, 'es', 'name', 'Ministerio de Ciencia y TecnologĆ­a'),
(49199, 41529, 'no_lang_code', 'name', 'Companhia EnergƩtica de Minas Gerais (Brazil)'),
(49200, 41530, 'en', 'name', 'Electricity Generating Authority of Thailand'),
(49201, 41530, 'th', 'name', 'ąøąø²ąø£ą¹„ąøŸąøŸą¹‰ąø²ąøą¹ˆąø²ąø¢ąøœąø„ąø“ąø•ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(49202, 41531, 'en', 'name', 'Einstein Foundation'),
(49203, 41531, 'de', 'name', 'Einstein Stiftung'),
(49204, 41532, 'en', 'name', 'Development Bank of Southern Africa'),
(49205, 41533, 'en', 'name', 'Bellingen Shire Council'),
(49206, 41534, 'es', 'name', 'Secretaría de Ciencia Tecnología e Innovación'),
(49207, 41535, 'en', 'name', 'Development Bank of Saxony'),
(49208, 41535, 'de', 'name', 'SƤchsische Aufbaubank'),
(49209, 41536, 'en', 'name', 'Community Research and Development Information Service'),
(49210, 41536, 'de', 'name', 'Forschungs- und Entwicklungsinformationsdienst der Gemeinschaft'),
(49211, 41536, 'fr', 'name', 'Service communautaire d''information sur la recherche et le dƩveloppement'),
(49212, 41536, 'it', 'name', 'Servizio Comunitario di Informazione in materia di Ricerca e Sviluppo'),
(49213, 41536, 'pl', 'name', 'Wspólnotowy Serwis Informacyjny Badań i Rozwoju'),
(49214, 41537, 'es', 'name', 'Ministerio de Producción, Ciencia y Tecnología'),
(49215, 41538, 'es', 'name', 'Secretaría de Innovación, Ciencia y Educación Superior'),
(49216, 41539, 'es', 'name', 'Agencia de Desarrollo Económico de La Rioja'),
(49217, 41539, 'en', 'name', 'Economic Development Agency for La Rioja'),
(49218, 41540, 'en', 'name', 'Mornington Peninsula Shire'),
(49219, 41541, 'es', 'name', 'Dirección de Investigación y Desarrollo'),
(49220, 41542, 'en', 'name', 'Pennsylvania Department Of State'),
(49221, 41543, 'sv', 'name', 'Landstinget Dalarna'),
(49222, 41544, 'en', 'name', 'Center for Clinical Research Dalarna'),
(49223, 41544, 'sv', 'name', 'Centrum fƶr Klinisk Forskning'),
(49224, 41545, 'no_lang_code', 'name', 'Abiant (United States)'),
(49225, 41546, 'en', 'name', 'Foundation for Advancing Veterans Health Research'),
(49226, 41547, 'en', 'name', 'Accelerated Cure Project for Multiple Sclerosis'),
(49227, 41548, 'en', 'name', 'Biotechnology Research Center'),
(49228, 41549, 'no_lang_code', 'name', 'AgeneBio (United States)'),
(49229, 41550, 'cs', 'name', 'Ministerstvo dopravy České republiky'),
(49230, 41550, 'en', 'name', 'Ministry of Transport'),
(49231, 41551, 'en', 'name', 'Boston Children''s at Waltham'),
(49232, 41552, 'en', 'name', 'ALD Connect'),
(49233, 41553, 'no_lang_code', 'name', 'Gliacure (United States)'),
(49234, 41554, 'en', 'name', 'Global Healthy Living Foundation'),
(49235, 41555, 'en', 'name', 'Dr. A. Ramachandran''s Diabetes Hospitals'),
(49236, 41556, 'sv', 'name', 'Polarforskningssekretariatet'),
(49237, 41556, 'en', 'name', 'Swedish Polar Research Secretariat'),
(49238, 41557, 'no_lang_code', 'name', 'Allegro Ophthalmics (United States)'),
(49239, 41558, 'en', 'name', 'Southern Maine Health Care'),
(49240, 41559, 'no_lang_code', 'name', 'Gramercy Research Group (United States)'),
(49241, 41560, 'no_lang_code', 'name', 'DualAlign (United States)'),
(49242, 41561, 'en', 'name', 'Agri-Food and Veterinary Authority of Singapore'),
(49243, 41562, 'en', 'name', 'Hartford Food System'),
(49244, 41563, 'no_lang_code', 'name', 'Rosa (United States)'),
(49245, 41564, 'en', 'name', 'Headwaters Health Care Centre'),
(49246, 41565, 'en', 'name', 'Anchor Center for Blind Children'),
(49247, 41566, 'no_lang_code', 'name', 'Health Advances (United States)'),
(49248, 41567, 'no_lang_code', 'name', 'Close Concerns (United States)'),
(49249, 41568, 'en', 'name', 'Prevent Alzheimer’s Disease 2020'),
(49250, 41569, 'en', 'name', 'Fair Haven Community Health Center'),
(49251, 41570, 'en', 'name', 'Felton Institute'),
(49252, 41571, 'no_lang_code', 'name', 'CohBar (United States)'),
(49253, 41572, 'no_lang_code', 'name', 'Asceneuron (Switzerland)'),
(49254, 41573, 'en', 'name', 'National Archives of Australia'),
(49255, 41574, 'en', 'name', 'Arkansas Autism Resource & Outreach Center'),
(49256, 41575, 'en', 'name', 'Communities for a Better Environment'),
(49257, 41576, 'en', 'name', 'Dallas VA Research Corporation'),
(49258, 41577, 'no_lang_code', 'name', 'Behavior Imaging Solutions (United States)'),
(49259, 41578, 'de', 'name', 'Krankenhaus Nordwest'),
(49260, 41579, 'no_lang_code', 'name', 'LEK Consulting (United States)'),
(49261, 41580, 'en', 'name', 'Lakeridge Health'),
(49262, 41581, 'en', 'name', 'Office of the Chief Scientist'),
(49263, 41581, 'he', 'name', '×œ×©×›×Ŗ המדען הראשי'),
(49264, 41582, 'en', 'name', 'Levine Cancer Institute'),
(49265, 41583, 'en', 'name', 'Louisiana Public Health Institute'),
(49266, 41584, 'no_lang_code', 'name', 'Osta Bio Technologies (Canada)'),
(49267, 41585, 'no_lang_code', 'name', 'Kenes Group (Switzerland)'),
(49268, 41586, 'en', 'name', 'Mid Michigan Autism Association'),
(49269, 41587, 'no_lang_code', 'name', 'Remegenix (United States)'),
(49270, 41588, 'no_lang_code', 'name', 'SGC Pharma (United States)'),
(49271, 41589, 'en', 'name', 'Tanzania Public health Association'),
(49272, 41590, 'no_lang_code', 'name', 'Madera BioSciences (United States)'),
(49273, 41591, 'no_lang_code', 'name', 'Sharp Edge Labs (United States)'),
(49274, 41592, 'en', 'name', 'Maine Medical Center'),
(49275, 41593, 'en', 'name', 'Alliance for Clinical Trials in Oncology'),
(49276, 41594, 'en', 'name', 'St. Helena Hospital Foundation'),
(49277, 41595, 'no_lang_code', 'name', 'Rodin Therapeutics (United States)'),
(49278, 41596, 'en', 'name', 'Center for Advancing Innovation'),
(49279, 41597, 'en', 'name', 'Chicago Community Trust'),
(49280, 41598, 'en', 'name', 'National Biomedical Research Ethics Council'),
(49281, 41599, 'en', 'name', 'Third Sector New England'),
(49282, 41600, 'en', 'name', 'Safe Kids Worldwide'),
(49283, 41601, 'en', 'name', 'Tidepool'),
(49284, 41602, 'en', 'name', 'Groden Network'),
(49285, 41603, 'en', 'name', 'University of Iowa Foundation'),
(49286, 41604, 'en', 'name', 'Triangle'),
(49287, 41605, 'en', 'name', 'Sanford Consortium for Regenerative Medicine'),
(49288, 41606, 'en', 'name', 'University of Cape Town Fund'),
(49289, 41607, 'en', 'name', 'VisionTree'),
(49290, 41608, 'no_lang_code', 'name', 'Yuma Therapeutics (United States)'),
(49291, 41609, 'en', 'name', 'UPMC Center for High Value Health Care'),
(49292, 41610, 'en', 'name', 'UsAgainstAlzheimer'),
(49293, 41611, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia de FÔrmacos e Medicamentos'),
(49294, 41611, 'en', 'name', 'National Institute of Science and Technology of Drugs and Medicines'),
(49295, 41612, 'en', 'name', 'AACC International'),
(49296, 41613, 'pt', 'name', 'Instituto Nacional de GenƩtica MƩdica Populacional'),
(49297, 41613, 'en', 'name', 'National Institute on Population Medical Genetics'),
(49298, 41614, 'no_lang_code', 'name', 'China Construction Eighth Engineering Division (China)'),
(49299, 41615, 'en', 'name', 'Delaney AIDS Research Enterprise'),
(49300, 41616, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia de Toxicologia AquÔtica'),
(49301, 41616, 'en', 'name', 'National Institute of Aquatic Toxicology'),
(49302, 41617, 'en', 'name', 'World Federation for Mental Health'),
(49303, 41618, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia de NeurociĆŖncia Translacional'),
(49304, 41619, 'en', 'name', 'Common Fund for Commodities'),
(49305, 41620, 'en', 'name', 'MacDowell Colony'),
(49306, 41621, 'en', 'name', 'United Way'),
(49307, 41622, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia de Obesidade e Diabetes'),
(49308, 41623, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia de Adaptações da Biota AquÔtica da AmazÓnia'),
(49309, 41624, 'it', 'name', 'Fondazione Internazionale Balzan'),
(49310, 41624, 'en', 'name', 'International Balzan Prize Foundation'),
(49311, 41625, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia em EletrÓnica Orgânica'),
(49312, 41626, 'en', 'name', 'Society of Environmental Toxicology and Chemistry'),
(49313, 41627, 'en', 'name', 'Atlantic Philanthropies'),
(49314, 41628, 'en', 'name', 'American Council on Germany'),
(49315, 41629, 'en', 'name', 'International Association for Great Lakes Research'),
(49316, 41630, 'en', 'name', 'Organization for Women in Science for the Developing World'),
(49317, 41631, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia de Processos Redox em Biomedicina'),
(49318, 41632, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia de CiĆŖncia Animal'),
(49319, 41633, 'en', 'name', 'European Council of International Schools'),
(49320, 41634, 'en', 'name', 'Eurasia Foundation'),
(49321, 41635, 'en', 'name', 'International Tropical Timber Organization'),
(49322, 41636, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia em Excitotoxicidade e Neuroproteção'),
(49323, 41637, 'en', 'name', 'Graduate Women International'),
(49324, 41638, 'no_lang_code', 'name', 'Astellas Pharma (United Kingdom)'),
(49325, 41639, 'en', 'name', 'OPEC Fund for International Development'),
(49326, 41640, 'en', 'name', 'American Institute of Pakistan Studies'),
(49327, 41641, 'en', 'name', 'Association of California Community College Administrators'),
(49328, 41642, 'en', 'name', 'American Institute of Ultrasound in Medicine'),
(49329, 41643, 'en', 'name', 'European Investment Bank'),
(49330, 41644, 'en', 'name', 'European Observatory on Health Systems and Policies'),
(49331, 41645, 'en', 'name', 'Americans for Medical Progress'),
(49332, 41646, 'en', 'name', 'Architectural League of New York'),
(49333, 41647, 'de', 'name', 'Christoffel Blinden Mission'),
(49334, 41648, 'en', 'name', 'European Tropical Forest Research Network'),
(49335, 41649, 'no_lang_code', 'name', 'Toa Pharmaceutical (Japan)'),
(49336, 41650, 'en', 'name', 'Freedom House'),
(49337, 41651, 'en', 'name', 'European Society for Sexual Medicine'),
(49338, 41652, 'en', 'name', 'Wilbur and Hilda Glenn Family Foundation'),
(49339, 41653, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia FotĆ“nica para ComunicaƧƵes Ɠpticas'),
(49340, 41653, 'en', 'name', 'National Institute of Photonic Science and Technology for Optical Communication'),
(49341, 41654, 'en', 'name', 'Organisation for the Prohibition of Chemical Weapons'),
(49342, 41654, 'es', 'name', 'Organización para la Prohibición de Armas Químicas'),
(49343, 41655, 'en', 'name', 'Commonwealth Forestry Association'),
(49344, 41656, 'en', 'name', 'Granger Foundation'),
(49345, 41657, 'en', 'name', 'Catching the Dream'),
(49346, 41658, 'en', 'name', 'Arts Midwest'),
(49347, 41659, 'en', 'name', 'CEC ArtsLink'),
(49348, 41660, 'en', 'name', 'National Institute of Science and Mathematics Technology'),
(49349, 41661, 'en', 'name', 'European Bank for Reconstruction and Development'),
(49350, 41662, 'en', 'name', 'Arizona Space Grant Consortium'),
(49351, 41663, 'en', 'name', 'Mary Baker Eddy Library'),
(49352, 41664, 'en', 'name', 'Clay Mathematics Institute'),
(49353, 41665, 'en', 'name', 'Bemis Center for Contemporary Arts'),
(49354, 41666, 'en', 'name', 'Schott Foundation for Public Education'),
(49355, 41667, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia para o Controle das Intoxicações por Plantas'),
(49356, 41668, 'en', 'name', 'North Carolina Space Grant Consortium'),
(49357, 41669, 'en', 'name', 'Georgia Space Grant Consortium'),
(49358, 41670, 'en', 'name', 'Schuler Scholar Program'),
(49359, 41671, 'en', 'name', 'Josephine De Karman Fellowship Trust'),
(49360, 41672, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia de Doenças Tropicais'),
(49361, 41673, 'en', 'name', 'Harry J. Lloyd Charitable Trust'),
(49362, 41674, 'en', 'name', 'Illinois Space Grant Consortium'),
(49363, 41675, 'en', 'name', 'Louisville Institute'),
(49364, 41676, 'no_lang_code', 'name', 'Armstrong World Industries (United States)'),
(49365, 41677, 'en', 'name', 'MacPhail Center for Music'),
(49366, 41678, 'en', 'name', 'Kansas Space Grant Consortium'),
(49367, 41679, 'en', 'name', 'Ovarian Awareness Walk'),
(49368, 41680, 'en', 'name', 'National Operating Committee on Standards for Athletic Equipment'),
(49369, 41681, 'en', 'name', 'Kentucky Space Grant Consortium'),
(49370, 41682, 'en', 'name', 'World Forestry Center'),
(49371, 41683, 'en', 'name', 'Children’s Charities Foundation'),
(49372, 41684, 'en', 'name', 'Maryland Space Grant Consortium'),
(49373, 41685, 'en', 'name', 'Heart Failure Society of America'),
(49374, 41686, 'en', 'name', 'Congressional Hispanic Caucus Institute'),
(49375, 41687, 'en', 'name', 'Women''s Research & Education Institute'),
(49376, 41688, 'en', 'name', 'Congressional Hunger Center'),
(49377, 41689, 'en', 'name', 'Whatcom Museum'),
(49378, 41690, 'en', 'name', 'Van Alen Institute'),
(49379, 41691, 'en', 'name', 'Montana Space Grant Consortium'),
(49380, 41692, 'en', 'name', 'Council of Independent Colleges'),
(49381, 41693, 'en', 'name', 'Nebraska Space Grant Consortium'),
(49382, 41694, 'en', 'name', 'Medical Letter'),
(49383, 41695, 'en', 'name', 'Early Learning Coalition of Miami Dade Monroe'),
(49384, 41696, 'en', 'name', 'Nevada Space Grant Consortium'),
(49385, 41697, 'en', 'name', 'Delaware Space Grant Consortium'),
(49386, 41698, 'en', 'name', 'American Institute for Economic Research'),
(49387, 41699, 'en', 'name', 'Truman Library Institute'),
(49388, 41700, 'en', 'name', 'United Way for Southeastern Michigan'),
(49389, 41701, 'en', 'name', 'Eisenhower Fellowships'),
(49390, 41702, 'en', 'name', 'Paul & Daisy Soros Fellowships for New Americans'),
(49391, 41703, 'en', 'name', 'New York Space Grant Consortium'),
(49392, 41704, 'en', 'name', 'North Dakota Space Grant Consortium'),
(49393, 41705, 'en', 'name', 'Ohio Space Grant Consortium'),
(49394, 41706, 'en', 'name', 'American Theatre Wing'),
(49395, 41707, 'en', 'name', 'Oklahoma Space Grant Consortium'),
(49396, 41708, 'en', 'name', 'Pennsylvania Space Grant Consortium'),
(49397, 41709, 'en', 'name', 'PEN American Center'),
(49398, 41710, 'en', 'name', 'Kosair Charities'),
(49399, 41711, 'en', 'name', 'Rhode Island Space Grant Consortium'),
(49400, 41712, 'en', 'name', 'Leonard Wood Institute'),
(49401, 41713, 'en', 'name', 'South Carolina Space Grant Consortium'),
(49402, 41714, 'en', 'name', 'South Dakota Space Grant Consortium'),
(49403, 41715, 'en', 'name', 'Vermont Space Grant Consortium'),
(49404, 41716, 'en', 'name', 'West Virginia Space Grant Consortium'),
(49405, 41717, 'en', 'name', 'Long Island League to Abolish Cancer'),
(49406, 41718, 'en', 'name', 'Wisconsin Space Grant Consortium'),
(49407, 41719, 'en', 'name', 'Canadian Institute of Mining, Metallurgy and Petroleum'),
(49408, 41719, 'fr', 'name', 'Institut Canadien des Mines, de la MƩtallurgie et du PƩtrole'),
(49409, 41720, 'en', 'name', 'Denver Botanic Gardens'),
(49410, 41721, 'en', 'name', 'Wyoming Space Grant Consortium'),
(49411, 41722, 'en', 'name', 'New York City Economic Development Corporation'),
(49412, 41723, 'en', 'name', 'Nick Kot Charity For TBI'),
(49413, 41724, 'en', 'name', 'Daniels Fund'),
(49414, 41725, 'en', 'name', 'International Center for Journalists'),
(49415, 41726, 'en', 'name', 'Fine Arts Work Center'),
(49416, 41727, 'no_lang_code', 'name', 'Nutricia Research (Netherlands)'),
(49417, 41728, 'en', 'name', 'Friends for an Earlier Breast Cancer Test'),
(49418, 41729, 'en', 'name', 'AlloSource'),
(49419, 41730, 'en', 'name', 'Civitan International'),
(49420, 41731, 'en', 'name', 'Health Volunteers Overseas'),
(49421, 41732, 'en', 'name', 'Brotherhood of St Laurence'),
(49422, 41733, 'en', 'name', 'Junior League of Des Moines'),
(49423, 41734, 'en', 'name', 'Horticultural Research Institute'),
(49424, 41735, 'en', 'name', 'Bowel and Cancer Research'),
(49425, 41736, 'en', 'name', 'Royal British Legion'),
(49426, 41737, 'en', 'name', 'Hudson Institute'),
(49427, 41738, 'en', 'name', 'Great Bay Stewards'),
(49428, 41739, 'en', 'name', 'Center for Health Design'),
(49429, 41740, 'en', 'name', 'Johns Hopkins Children''s Center'),
(49430, 41741, 'en', 'name', 'European Committee for Treatment and Research in Multiple Sclerosis'),
(49431, 41742, 'en', 'name', 'Albert Ellis Institute'),
(49432, 41743, 'en', 'name', 'Intercollegiate Studies Institute'),
(49433, 41744, 'en', 'name', 'Welding Research Council'),
(49434, 41745, 'en', 'name', 'Prairie Improvement Network'),
(49435, 41746, 'en', 'name', 'Jewish Board of Family and Children''s Services'),
(49436, 41747, 'en', 'name', 'Irish American Cultural Institute'),
(49437, 41748, 'en', 'name', 'CRC for Rail Innovation'),
(49438, 41749, 'en', 'name', 'British Ornithologists Union'),
(49439, 41750, 'en', 'name', 'Jewish Child Care Association'),
(49440, 41751, 'en', 'name', 'AdventHealth for Children'),
(49441, 41752, 'en', 'name', 'A Night For Sight'),
(49442, 41753, 'en', 'name', 'ALS Society of Canada'),
(49443, 41754, 'en', 'name', 'Royal National Lifeboat Institution'),
(49444, 41755, 'en', 'name', 'National Cancer Center'),
(49445, 41756, 'en', 'name', 'Pacific Institute for the Mathematical Sciences'),
(49446, 41757, 'en', 'name', 'Health Care Foundation'),
(49447, 41758, 'en', 'name', 'Healthy Waterways'),
(49448, 41759, 'no_lang_code', 'name', 'State Nuclear Power Technology Company (China)'),
(49449, 41760, 'en', 'name', 'Energy Biosciences Institute'),
(49450, 41761, 'en', 'name', 'Heart Kids'),
(49451, 41762, 'en', 'name', 'Dairy Management'),
(49452, 41763, 'en', 'name', 'American Partnership for Eosinophilic Disorders'),
(49453, 41764, 'en', 'name', 'Northern Gulf Institute'),
(49454, 41765, 'en', 'name', 'National Vulvodynia Association'),
(49455, 41766, 'en', 'name', 'Buckminster Fuller Institute'),
(49456, 41767, 'en', 'name', 'International Society for the Study of the Lumbar Spine'),
(49457, 41768, 'en', 'name', 'Saskatchewan Flax Development Commission'),
(49458, 41769, 'en', 'name', 'Advanced Foods and Materials Network'),
(49459, 41770, 'en', 'name', 'Alexander Graham Bell Association for the Deaf and Hard of Hearing'),
(49460, 41771, 'en', 'name', 'Centre for Biomedical Engineering and Physics'),
(49461, 41772, 'en', 'name', 'American Institute of Bangladesh Studies'),
(49462, 41773, 'en', 'name', 'African Safari Club Of Florida'),
(49463, 41774, 'fr', 'name', 'Centre d’Excellence de l’Ontario en SantĆ© Mentale des Enfants et des Adolescents'),
(49464, 41774, 'en', 'name', 'Ontario Centre of Excellence for Child and Youth Mental Health'),
(49465, 41775, 'en', 'name', 'Citrus Growers Association'),
(49466, 41776, 'en', 'name', 'Office of Diversity and Inclusion'),
(49467, 41777, 'en', 'name', 'Petroleum Research Newfoundland and Labrador'),
(49468, 41778, 'en', 'name', 'Cancer League of Colorado'),
(49469, 41779, 'en', 'name', 'Association of British Paediatric Nurses'),
(49470, 41780, 'en', 'name', 'Hyundai Hope On Wheels'),
(49471, 41781, 'en', 'name', 'Workers Compensation Board of British Columbia'),
(49472, 41782, 'en', 'name', 'Center for Enabling New Technologies Through Catalysis'),
(49473, 41783, 'en', 'name', 'Playford Trust'),
(49474, 41784, 'en', 'name', 'Workplace Health, Safety and Compensation Commission'),
(49475, 41785, 'en', 'name', 'Design and Art Direction'),
(49476, 41786, 'en', 'name', 'Commonwealth Education Trust'),
(49477, 41787, 'fr', 'name', 'Centre pour la santƩ des Inuits et les Changements Environnementaux'),
(49478, 41787, 'en', 'name', 'Nasivvik Centre for Inuit Health and Changing Environments'),
(49479, 41788, 'en', 'name', 'Australian Communications Consumer Action Network'),
(49480, 41789, 'en', 'name', 'Australian Institute of Policy and Science'),
(49481, 41790, 'en', 'name', 'English Speaking Union'),
(49482, 41791, 'en', 'name', 'Fisheries Society of the British Isles'),
(49483, 41792, 'en', 'name', 'Carclew Youth Arts'),
(49484, 41793, 'en', 'name', 'Great Britain China Centre'),
(49485, 41794, 'en', 'name', 'Migraine Trust'),
(49486, 41795, 'en', 'name', 'Solid Wood Innovation'),
(49487, 41796, 'en', 'name', 'Iolanthe Midwifery Trust'),
(49488, 41797, 'da', 'name', 'Scleroseforeningen'),
(49489, 41798, 'en', 'name', 'Hypertension Trust'),
(49490, 41799, 'en', 'name', 'Human Resources Professionals Association'),
(49491, 41800, 'en', 'name', 'Beatson Cancer Charity'),
(49492, 41801, 'en', 'name', 'British Federation of Women Graduates'),
(49493, 41802, 'en', 'name', 'European External Action Service'),
(49494, 41802, 'nl', 'name', 'Europese Dienst voor extern optreden'),
(49495, 41802, 'de', 'name', 'EuropƤischer AuswƤrtiger Dienst'),
(49496, 41802, 'fr', 'name', 'Service europĆ©en pour l’action extĆ©rieure'),
(49497, 41803, 'en', 'name', 'Action Duchenne'),
(49498, 41804, 'en', 'name', 'National Anti-Vivisection Society'),
(49499, 41805, 'en', 'name', 'Abbey Awards'),
(49500, 41806, 'en', 'name', 'Boston Area Research Initiative'),
(49501, 41807, 'en', 'name', 'Action Cancer'),
(49502, 41808, 'en', 'name', 'Melissa Institute for Violence Prevention and Treatment'),
(49503, 41809, 'en', 'name', 'Chartered Institute of Management Accountants'),
(49504, 41810, 'no_lang_code', 'name', 'Mercers’ Company (United Kingdom)'),
(49505, 41811, 'en', 'name', 'Coeliac UK'),
(49506, 41812, 'en', 'name', 'Myotubular Trust'),
(49507, 41813, 'en', 'name', 'Spinal Research'),
(49508, 41814, 'en', 'name', 'Arts Council of Wales'),
(49509, 41814, 'cy', 'name', 'Cyngor Celfyddydau Cymru'),
(49510, 41815, 'en', 'name', 'Queen’s Nursing Institute Scotland'),
(49511, 41816, 'en', 'name', 'National Association of Social Workers'),
(49512, 41817, 'en', 'name', 'Ataxia UK'),
(49513, 41818, 'en', 'name', 'Breakthrough Institute'),
(49514, 41819, 'en', 'name', 'Union of Arab Chemists'),
(49515, 41819, 'ar', 'name', 'Ų„ŲŖŲ­Ų§ŲÆ Ų§Ł„ŁƒŁŠŁ…ŁŠŲ§Ų¦ŁŠŁŠŁ† العرب'),
(49516, 41820, 'en', 'name', 'RCVS Knowledge'),
(49517, 41821, 'en', 'name', 'Overseas Press Club of America'),
(49518, 41822, 'cy', 'name', 'Remedi'),
(49519, 41823, 'en', 'name', 'Scientific Committee on Antarctic Research'),
(49520, 41824, 'en', 'name', 'Arts Council of Northern Ireland'),
(49521, 41825, 'en', 'name', 'British Council For Prevention of Blindness'),
(49522, 41826, 'en', 'name', 'Headley Trust'),
(49523, 41827, 'en', 'name', 'American Egg Board'),
(49524, 41828, 'en', 'name', 'U.S. Green Building Council'),
(49525, 41829, 'en', 'name', 'Stapledon Memorial Trust'),
(49526, 41830, 'en', 'name', 'Royal Norwegian Embassy in London'),
(49527, 41831, 'en', 'name', 'Cancer Association of South Africa'),
(49528, 41832, 'en', 'name', 'Children’s Discovery Institute'),
(49529, 41833, 'en', 'name', 'EMF Biological Research Trust'),
(49530, 41834, 'en', 'name', 'Henry Smith Charity'),
(49531, 41835, 'en', 'name', 'Society for Endocrinology'),
(49532, 41836, 'en', 'name', 'Sparks'),
(49533, 41837, 'en', 'name', 'Winter Cereal Trust'),
(49534, 41838, 'en', 'name', 'Centre for Transportation Engineering and Planning'),
(49535, 41839, 'en', 'name', 'National Heritage Council'),
(49536, 41840, 'en', 'name', 'Ohio Department of Transportation'),
(49537, 41841, 'en', 'name', 'Entrust'),
(49538, 41842, 'no_lang_code', 'name', 'Asian Civilisations Museum'),
(49539, 41842, 'ms', 'name', 'Muzium Tamadun Asia'),
(49540, 41842, 'zh', 'name', 'äŗšę“²ę–‡ę˜Žåšē‰©é¦†'),
(49541, 41843, 'en', 'name', 'Safari Club International'),
(49542, 41844, 'en', 'name', 'Arthritis Australia'),
(49543, 41845, 'en', 'name', 'Duchenne Research Fund'),
(49544, 41846, 'en', 'name', 'China Youth Development Foundation'),
(49545, 41846, 'zh', 'name', 'äø­å›½é’å°‘å¹“å‘å±•åŸŗé‡‘ä¼š'),
(49546, 41847, 'en', 'name', 'Mental Health Australia'),
(49547, 41848, 'en', 'name', 'Arkleton Trust'),
(49548, 41849, 'en', 'name', 'Beit Trust'),
(49549, 41850, 'en', 'name', 'Community Arts Network'),
(49550, 41851, 'en', 'name', 'Solve ME/CFS Initiative'),
(49551, 41852, 'en', 'name', 'Nehru Trust'),
(49552, 41853, 'en', 'name', 'Pasold Research Fund'),
(49553, 41854, 'en', 'name', 'Australian Rotary Health'),
(49554, 41855, 'en', 'name', 'Indian Council of Philosophical Research'),
(49555, 41856, 'en', 'name', 'Frankfurt Zoological Society'),
(49556, 41856, 'de', 'name', 'Zoologische Gesellschaft Frankfurt'),
(49557, 41857, 'en', 'name', 'Australian American Fulbright Commission'),
(49558, 41858, 'en', 'name', 'Kidney Health New Zealand'),
(49559, 41859, 'en', 'name', 'Fraser Institute'),
(49560, 41860, 'en', 'name', 'Social Policy Evaluation and Research Unit'),
(49561, 41861, 'en', 'name', 'Grand Lodge of Western Australia'),
(49562, 41862, 'en', 'name', 'Australian Housing and Urban Research Institute'),
(49563, 41863, 'de', 'name', 'Aus- und Weiterbildungseinrichtung für Klinische Verhaltenstherapie'),
(49564, 41864, 'en', 'name', 'New Zealand Council for Educational Research'),
(49565, 41865, 'en', 'name', 'Leukemia & Lymphoma Society of Canada'),
(49566, 41866, 'en', 'name', 'China Social Welfare Foundation'),
(49567, 41866, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē¦åˆ©åŸŗé‡‘ä¼š'),
(49568, 41867, 'en', 'name', 'Fulbright New Zealand'),
(49569, 41868, 'en', 'name', 'Petplan Charitable Trust'),
(49570, 41869, 'nl', 'name', 'GGZ Rivierduinen'),
(49571, 41870, 'en', 'name', 'Centre for Ageing Research and Development in Ireland'),
(49572, 41871, 'en', 'name', 'Ontario Stroke Network'),
(49573, 41872, 'en', 'name', 'Australian War Memorial'),
(49574, 41873, 'ga', 'name', 'An Comhairle Oidhreachta'),
(49575, 41873, 'en', 'name', 'Heritage Council'),
(49576, 41874, 'en', 'name', 'Winston Churchill Memorial Trust'),
(49577, 41875, 'nl', 'name', 'Lentis'),
(49578, 41876, 'fr', 'name', 'Conseil FranƧais de l''Ɖnergie'),
(49579, 41877, 'nl', 'name', 'GGZ Friesland'),
(49580, 41878, 'en', 'name', 'Agricultural Adaptation Council'),
(49581, 41879, 'en', 'name', 'Astronomical Society of Australia'),
(49582, 41880, 'en', 'name', 'Institute and Faculty of Actuaries'),
(49583, 41881, 'en', 'name', 'Hong Kong Institute of Surveyors'),
(49584, 41881, 'zh', 'name', 'é¦™ęøÆęø¬é‡åø«å­øęœƒ'),
(49585, 41882, 'no', 'name', 'Helse Nord RHF'),
(49586, 41882, 'en', 'name', 'Northern Norway Regional Health Authority'),
(49587, 41883, 'es', 'name', 'Asociación para la Conservación de la Cuenca Amazónica'),
(49588, 41884, 'en', 'name', 'Fresh Science'),
(49589, 41885, 'en', 'name', 'Irish Institute of Clinical Neuroscience'),
(49590, 41886, 'en', 'name', 'Australian Institute of Physics'),
(49591, 41887, 'es', 'name', 'MPS EspaƱa'),
(49592, 41888, 'en', 'name', 'Pharmaceutical and Medical Device Regulatory Science Society of Japan'),
(49593, 41888, 'ja', 'name', 'åŒ»č–¬å“åŒ»ē™‚ę©Ÿå™Øćƒ¬ć‚®ćƒ„ćƒ©ćƒˆćƒŖćƒ¼ć‚µć‚¤ć‚Øćƒ³ć‚¹č²”å›£'),
(49594, 41889, 'en', 'name', 'Central Board of Irrgation and Power'),
(49595, 41890, 'en', 'name', 'Bolton Sixth Form College'),
(49596, 41891, 'en', 'name', 'Boonton Public Schools'),
(49597, 41892, 'en', 'name', 'Bossier Parish Community College'),
(49598, 41893, 'en', 'name', 'Assumption College San Lorenzo'),
(49599, 41894, 'en', 'name', 'Chatfield College'),
(49600, 41895, 'en', 'name', 'Botswana Accountancy College'),
(49601, 41896, 'en', 'name', 'Accrington and Rossendale College'),
(49602, 41897, 'en', 'name', 'Bournville College'),
(49603, 41898, 'en', 'name', 'Acsenda School of Management'),
(49604, 41899, 'en', 'name', 'Bracknell and Wokingham College'),
(49605, 41900, 'en', 'name', 'Bradford School - Pittsburgh'),
(49606, 41901, 'en', 'name', 'Bradford School - Columbus'),
(49607, 41902, 'en', 'name', 'Chetham''s School of Music'),
(49608, 41903, 'en', 'name', 'Australian College of Physical Education'),
(49609, 41904, 'en', 'name', 'Cheung Kong Graduate School of Business'),
(49610, 41904, 'zh', 'name', 'é•æę±Ÿå•†å­¦é™¢'),
(49611, 41905, 'en', 'name', 'Bramson ORT College'),
(49612, 41906, 'en', 'name', 'Columbia College - California'),
(49613, 41907, 'en', 'name', 'Admas University'),
(49614, 41908, 'en', 'name', 'Chichester College'),
(49615, 41909, 'en', 'name', 'China Graduate School of Theology'),
(49616, 41909, 'zh', 'name', 'äø­åœ‹ē„žå­øē ”ē©¶é™¢'),
(49617, 41910, 'en', 'name', 'Utah College of Applied Technology'),
(49618, 41911, 'en', 'name', 'Aichi Konan College'),
(49619, 41911, 'ja', 'name', 'ę„›ēŸ„ę±Ÿå—ēŸ­ęœŸå¤§å­¦'),
(49620, 41912, 'en', 'name', 'China University of Technology'),
(49621, 41912, 'zh', 'name', 'äø­åœ‹ē§‘ęŠ€å¤§å­ø'),
(49622, 41913, 'en', 'name', 'Columbia College Hollywood'),
(49623, 41914, 'en', 'name', 'BridgeValley Community and Technical College'),
(49624, 41915, 'en', 'name', 'Aiken Technical College'),
(49625, 41916, 'en', 'name', 'Australian Defence College'),
(49626, 41917, 'en', 'name', 'Columbus Technical College'),
(49627, 41918, 'en', 'name', 'Christ the King Sixth Form College'),
(49628, 41919, 'en', 'name', 'Albany Technical College'),
(49629, 41920, 'en', 'name', 'British College of Osteopathic Medicine'),
(49630, 41921, 'en', 'name', 'Comilla Medical College'),
(49631, 41921, 'bn', 'name', 'ą¦•ą§ą¦®ą¦æą¦²ą§ą¦²ą¦¾ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(49632, 41922, 'en', 'name', 'Aventis School of Management'),
(49633, 41923, 'en', 'name', 'University College of Osteopathy'),
(49634, 41924, 'en', 'name', 'Cincinnati College of Mortuary Science'),
(49635, 41925, 'en', 'name', 'Bromley College of Further and Higher Education'),
(49636, 41926, 'en', 'name', 'Community Care College'),
(49637, 41927, 'en', 'name', 'Alberta Bible College'),
(49638, 41928, 'en', 'name', 'Circle in the Square Theatre School'),
(49639, 41929, 'en', 'name', 'Azrieli College of Engineering Jerusalem'),
(49640, 41929, 'he', 'name', '×¢×–×Ø×™××œ×™-המכללה להנדהה ×™×Ø×•×©×œ×™×'),
(49641, 41930, 'en', 'name', 'Allen Community College'),
(49642, 41931, 'en', 'name', 'Cisco College'),
(49643, 41932, 'az', 'name', 'Baki Ali Neft Məktəbi'),
(49644, 41932, 'en', 'name', 'Baku Higher Oil School'),
(49645, 41933, 'en', 'name', 'Community College of Vermont'),
(49646, 41934, 'en', 'name', 'Allentown High School'),
(49647, 41935, 'en', 'name', 'Concordia College - New York'),
(49648, 41936, 'en', 'name', 'City College'),
(49649, 41937, 'en', 'name', 'Connors State College'),
(49650, 41938, 'en', 'name', 'Civil Service College'),
(49651, 41939, 'en', 'name', 'Bangladesh Air Force Shaheen College'),
(49652, 41939, 'bn', 'name', 'ą¦¬ą¦æą¦ą¦ą¦« শাহীন ą¦•ą¦²ą§‡ą¦œ ঢাকা'),
(49653, 41940, 'en', 'name', 'Alliance College of Australia'),
(49654, 41941, 'en', 'name', 'Clarendon College'),
(49655, 41942, 'en', 'name', 'Butler County Community College'),
(49656, 41943, 'en', 'name', 'Baptist Theological College of Southern Africa'),
(49657, 41944, 'en', 'name', 'Craven College'),
(49658, 41945, 'en', 'name', 'North Carolina Community College System'),
(49659, 41946, 'en', 'name', 'Coastal Pines Technical College'),
(49660, 41947, 'en', 'name', 'Clinton College'),
(49661, 41948, 'en', 'name', 'California Christian College'),
(49662, 41949, 'en', 'name', 'Cloud County Community College'),
(49663, 41950, 'en', 'name', 'American Career College'),
(49664, 41951, 'en', 'name', 'California Coast University'),
(49665, 41952, 'en', 'name', 'Crossroads Bible College'),
(49666, 41953, 'en', 'name', 'California College San Diego'),
(49667, 41954, 'en', 'name', 'Craven Community College'),
(49668, 41955, 'en', 'name', 'American River College'),
(49669, 41956, 'en', 'name', 'Barstow Community College'),
(49670, 41957, 'en', 'name', 'CNI College'),
(49671, 41958, 'en', 'name', 'Crowleys Ridge College'),
(49672, 41959, 'en', 'name', 'California Community Colleges System'),
(49673, 41960, 'en', 'name', 'Coastal Bend College'),
(49674, 41961, 'en', 'name', 'California Miramar University'),
(49675, 41962, 'en', 'name', 'Barton Peveril College'),
(49676, 41963, 'en', 'name', 'Cuyamaca College'),
(49677, 41964, 'en', 'name', 'Coastal Carolina Community College'),
(49678, 41965, 'en', 'name', 'Bates Technical College'),
(49679, 41966, 'en', 'name', 'New College Lanarkshire'),
(49680, 41967, 'en', 'name', 'Daegu Future College'),
(49681, 41967, 'zh', 'name', 'å¤§é‚±ęœŖä¾†å¤§å­ø'),
(49682, 41967, 'ko', 'name', 'ėŒ€źµ¬ėÆøėž˜ėŒ€ķ•™'),
(49683, 41968, 'en', 'name', 'Bath College'),
(49684, 41969, 'en', 'name', 'CaƱada College'),
(49685, 41970, 'en', 'name', 'Coffeyville Community College'),
(49686, 41971, 'en', 'name', 'Canton City School District'),
(49687, 41972, 'en', 'name', 'Darton State College'),
(49688, 41973, 'en', 'name', 'Andrew College'),
(49689, 41974, 'en', 'name', 'Korea Agency for Infrastructure Technology Advancement'),
(49690, 41975, 'en', 'name', 'Cardinal Tien College of Healthcare and Management'),
(49691, 41975, 'zh', 'name', 'č€•čŽ˜å„åŗ·ē®”ē†å°ˆē§‘å­øę ”'),
(49692, 41976, 'en', 'name', 'Beal College'),
(49693, 41977, 'en', 'name', 'Carey Baptist College'),
(49694, 41978, 'en', 'name', 'College of Business and Technology'),
(49695, 41979, 'en', 'name', 'Angliss International Hotel School'),
(49696, 41980, 'en', 'name', 'Carl Albert State College'),
(49697, 41981, 'en', 'name', 'Berk Trade and Business School'),
(49698, 41982, 'en', 'name', 'Dundee and Angus College'),
(49699, 41983, 'en', 'name', 'Davis College - Ohio'),
(49700, 41984, 'en', 'name', 'Carrington College'),
(49701, 41985, 'en', 'name', 'College of Coastal Georgia'),
(49702, 41986, 'en', 'name', 'Daymar College'),
(49703, 41987, 'no_lang_code', 'name', 'Bermuda College'),
(49704, 41988, 'en', 'name', 'Anoka Technical College'),
(49705, 41989, 'en', 'name', 'Carteret Community College'),
(49706, 41990, 'en', 'name', 'Anoka-Ramsey Community College'),
(49707, 41991, 'en', 'name', 'Cavendish University Zambia'),
(49708, 41992, 'en', 'name', 'College of North West London'),
(49709, 41993, 'en', 'name', 'Truman Bodden Law School'),
(49710, 41994, 'en', 'name', 'Defense Information School'),
(49711, 41995, 'en', 'name', 'Antonelli College'),
(49712, 41996, 'en', 'name', 'Central Ohio Technical College'),
(49713, 41997, 'en', 'name', 'College of San Mateo'),
(49714, 41998, 'en', 'name', 'Bicton College'),
(49715, 41999, 'en', 'name', 'Delaware College of Art and Design'),
(49716, 42000, 'en', 'name', 'Big Bend Community College'),
(49717, 42001, 'en', 'name', 'Aquinas College - Tennessee'),
(49718, 42002, 'en', 'name', 'Big Sandy Community and Technical College'),
(49719, 42003, 'en', 'name', 'Delbarton School'),
(49720, 42004, 'en', 'name', 'College of Southern Nevada'),
(49721, 42005, 'en', 'name', 'Arizona Christian University'),
(49722, 42006, 'en', 'name', 'College of St. Joseph'),
(49723, 42007, 'en', 'name', 'Denmark Technical College'),
(49724, 42008, 'en', 'name', 'Bishop Burton College'),
(49725, 42009, 'pt', 'name', 'Fundação de Tecnologia do Estado do Acre'),
(49726, 42010, 'en', 'name', 'National Institute of Technology, Matsue College'),
(49727, 42010, 'ja', 'name', 'ę¾ę±Ÿå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(49728, 42011, 'en', 'name', 'DuBois Business College'),
(49729, 42012, 'en', 'name', 'Black River Technical College'),
(49730, 42013, 'en', 'name', 'Dunwoody College of Technology'),
(49731, 42014, 'en', 'name', 'Arkansas Baptist College'),
(49732, 42015, 'en', 'name', 'National Institute of Technology, Miyakonojo College'),
(49733, 42015, 'ja', 'name', 'éƒ½åŸŽå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(49734, 42016, 'en', 'name', 'Arkansas State University Mountain Home'),
(49735, 42017, 'en', 'name', 'Blue Ridge Community and Technical College'),
(49736, 42018, 'en', 'name', 'Eagle Gate College'),
(49737, 42019, 'en', 'name', 'National Institute of Technology, Numazu College'),
(49738, 42019, 'ja', 'name', 'ę²¼ę“„é«˜å°‚'),
(49739, 42020, 'en', 'name', 'Divine Word College'),
(49740, 42021, 'en', 'name', 'Bolton College'),
(49741, 42022, 'en', 'name', 'East Arkansas Community College'),
(49742, 42023, 'en', 'name', 'Armed Forces Academies Preparatory School'),
(49743, 42023, 'th', 'name', 'โรงเรียนเตรียดทหาร'),
(49744, 42024, 'en', 'name', 'National Institute of Technology, Tomakomai College'),
(49745, 42024, 'ja', 'name', 'č‹«å°ē‰§å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(49746, 42025, 'en', 'name', 'Armed Forces Medical College'),
(49747, 42025, 'bn', 'name', 'ą¦œą§ą¦žą¦¾ą¦Øą¦‡ ą¦¶ą¦•ą§ą¦¤ą¦æ,সেবাই ą¦§ą¦°ą§ą¦®'),
(49748, 42026, 'en', 'name', 'Dongnam Health University'),
(49749, 42026, 'zh', 'name', 'ę±å—äæå„å¤§å­ø'),
(49750, 42026, 'ko', 'name', 'ė™ė‚Øė³“ź±“ėŒ€ķ•™'),
(49751, 42027, 'en', 'name', 'College of the Resurrection'),
(49752, 42028, 'en', 'name', 'ASA College'),
(49753, 42029, 'en', 'name', 'East Central Community College'),
(49754, 42030, 'en', 'name', 'Ashkelon Academic College'),
(49755, 42030, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ אשקלון'),
(49756, 42031, 'hi', 'name', 'Chhattisgarh Kamdhenu Vishwavidyalaya'),
(49757, 42032, 'en', 'name', 'College of Westchester'),
(49758, 42033, 'en', 'name', 'CollegeAmerica'),
(49759, 42034, 'en', 'name', 'Eastern Arizona College'),
(49760, 42035, 'en', 'name', 'Eastern Medical College and Hospital'),
(49761, 42035, 'bn', 'name', 'ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦Ø মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(49762, 42036, 'en', 'name', 'Good Shepherd College'),
(49763, 42037, 'en', 'name', 'Eastern West Virginia Community and Technical College'),
(49764, 42038, 'en', 'name', 'Henderson Community College'),
(49765, 42039, 'en', 'name', 'Eastern Wyoming College'),
(49766, 42040, 'en', 'name', 'Feather River College'),
(49767, 42041, 'en', 'name', 'Goodenough College'),
(49768, 42042, 'en', 'name', 'International Business College - Fort Wayne'),
(49769, 42043, 'en', 'name', 'Henley College'),
(49770, 42044, 'en', 'name', 'Paterson Public Schools'),
(49771, 42045, 'en', 'name', 'Hennepin Technical College'),
(49772, 42046, 'en', 'name', 'Federal College of Fisheries and Marine Technology'),
(49773, 42047, 'en', 'name', 'Eastwick College and the HoHoKus Schools'),
(49774, 42048, 'en', 'name', 'Edison Community College'),
(49775, 42049, 'en', 'name', 'Scottish School of Christian Mission'),
(49776, 42050, 'en', 'name', 'Fisher College'),
(49777, 42051, 'en', 'name', 'Government College for Women Anantnag'),
(49778, 42051, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ کالج Ų®ŁˆŲ§ŲŖŪŒŁ† اننت ناگ'),
(49779, 42052, 'en', 'name', 'Hibbing Community College'),
(49780, 42053, 'en', 'name', 'Compton Community College District'),
(49781, 42054, 'en', 'name', 'Hickey College'),
(49782, 42055, 'en', 'name', 'Flint Hills Technical College'),
(49783, 42056, 'en', 'name', 'Government College of Science'),
(49784, 42057, 'en', 'name', 'International Graduate School of English'),
(49785, 42057, 'ko', 'name', 'źµ­ģ œģ˜ģ–“ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(49786, 42058, 'en', 'name', 'Florida Gateway College'),
(49787, 42059, 'en', 'name', 'El Centro College'),
(49788, 42060, 'en', 'name', 'International Islamic College'),
(49789, 42060, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(49790, 42061, 'no_lang_code', 'name', 'Maharaja Chhatrasal Bundelkhand University'),
(49791, 42061, 'hi', 'name', 'महाराजा ą¤›ą¤¤ą„ą¤°ą¤øą¤¾ą¤² ą¤¬ą„ą¤‚ą¤¦ą„‡ą¤²ą¤–ą¤‚ą¤” ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(49792, 42062, 'en', 'name', 'Elizabethtown Community and Technical College'),
(49793, 42063, 'en', 'name', 'National Institute of Technology, Hiroshima College'),
(49794, 42063, 'ja', 'name', 'åŗƒå³¶å•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(49795, 42064, 'en', 'name', 'Ellsworth Community College'),
(49796, 42065, 'en', 'name', 'Florida Keys Community College'),
(49797, 42066, 'en', 'name', 'International School of Management'),
(49798, 42067, 'en', 'name', 'Hiwassee College'),
(49799, 42068, 'en', 'name', 'Emerson School District'),
(49800, 42069, 'en', 'name', 'Fort Scott Community College'),
(49801, 42070, 'en', 'name', 'Emily Griffith Technical College'),
(49802, 42071, 'en', 'name', 'International Yacht Restoration School'),
(49803, 42072, 'en', 'name', 'Emmanuel Bible College');
INSERT INTO `ror_settings` VALUES
(49804, 42073, 'en', 'name', 'Government Medical College and Hospital'),
(49805, 42074, 'en', 'name', 'Fox College'),
(49806, 42075, 'en', 'name', 'Nurses'' Training College, Ho'),
(49807, 42076, 'en', 'name', 'Emmanuel College - Georgia'),
(49808, 42077, 'en', 'name', 'Iowa Western Community College'),
(49809, 42078, 'en', 'name', 'Emmaus Bible College'),
(49810, 42079, 'en', 'name', 'Government Vellore Medical College'),
(49811, 42080, 'en', 'name', 'Empire College'),
(49812, 42081, 'en', 'name', 'Irish Baptist College'),
(49813, 42082, 'en', 'name', 'Venerable English College'),
(49814, 42083, 'en', 'name', 'Holy Spirit High School'),
(49815, 42084, 'en', 'name', 'Grace Bible College'),
(49816, 42085, 'en', 'name', 'French School at Athens'),
(49817, 42085, 'fr', 'name', 'Ɖcole franƧaise d’AthĆØnes'),
(49818, 42085, 'el', 'name', 'Γαλλική Σχολή Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(49819, 42086, 'en', 'name', 'Graduate School for the Creation of New Photonics Industries'),
(49820, 42086, 'ja', 'name', 'å…‰ē”£ę„­å‰µęˆå¤§å­¦é™¢å¤§å­¦'),
(49821, 42087, 'en', 'name', 'Estrella Mountain Community College'),
(49822, 42088, 'en', 'name', 'Hong Kong College of Technology'),
(49823, 42088, 'zh', 'name', 'é¦™ęøÆå°ˆę„­é€²äæ®å­øę ”'),
(49824, 42089, 'en', 'name', 'Etobicoke School of the Arts'),
(49825, 42090, 'no_lang_code', 'name', 'Fukushima College'),
(49826, 42090, 'ja', 'name', 'ē¦å³¶å­¦é™¢å¤§å­¦'),
(49827, 42091, 'en', 'name', 'National Institute Of Technology, Ishikawa College'),
(49828, 42091, 'ja', 'name', 'ēŸ³å·å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(49829, 42092, 'en', 'name', 'Fukuyama City University'),
(49830, 42092, 'ja', 'name', 'ē¦å±±åø‚ē«‹å¤§å­¦'),
(49831, 42093, 'es', 'name', 'Hospital Universitario Araba'),
(49832, 42094, 'en', 'name', 'European Business School Paris'),
(49833, 42095, 'en', 'name', 'Islamic Azad University of Najafabad'),
(49834, 42095, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł†Ų¬Łā€ŒŲ¢ŲØŲ§ŲÆ'),
(49835, 42096, 'en', 'name', 'European College of Business and Management'),
(49836, 42097, 'en', 'name', 'Furness College'),
(49837, 42098, 'en', 'name', 'Grays Harbor College'),
(49838, 42099, 'en', 'name', 'Hsin Sheng College of Medical Care and Management'),
(49839, 42099, 'zh', 'name', 'ę–°ē”Ÿé†«č­·ē®”ē†å°ˆē§‘å­øę ”'),
(49840, 42100, 'en', 'name', 'Grayson College'),
(49841, 42101, 'en', 'name', 'Evelyn Hone College'),
(49842, 42102, 'en', 'name', 'J F Ingram State Technical College'),
(49843, 42103, 'en', 'name', 'Garden City Community College'),
(49844, 42104, 'en', 'name', 'Garrett College'),
(49845, 42105, 'en', 'name', 'Hugh Wooding Law School'),
(49846, 42106, 'en', 'name', 'Jacksonville College'),
(49847, 42107, 'en', 'name', 'Grossmont College'),
(49848, 42108, 'en', 'name', 'King''s College - North Carolina'),
(49849, 42109, 'en', 'name', 'Hussian College'),
(49850, 42110, 'en', 'name', 'Montpellier Business School'),
(49851, 42110, 'fr', 'name', 'Ɖcole SupĆ©rieure de Commerce de Montpellier'),
(49852, 42111, 'en', 'name', 'Gateway Community College'),
(49853, 42112, 'en', 'name', 'Kingston College'),
(49854, 42113, 'en', 'name', 'Jamestown Business College'),
(49855, 42114, 'en', 'name', 'Georgia Highlands College'),
(49856, 42115, 'en', 'name', 'Japanese Red Cross Hokkaido College of Nursing'),
(49857, 42115, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—åŒ—ęµ·é“ēœ‹č­·å¤§å­¦'),
(49858, 42116, 'en', 'name', 'Klamath Community College'),
(49859, 42117, 'en', 'name', 'Guntur Medical College'),
(49860, 42118, 'en', 'name', 'Guyana School of Agriculture'),
(49861, 42119, 'en', 'name', 'Kobe Women''s Junior College'),
(49862, 42119, 'ja', 'name', 'ē„žęˆøå„³å­ēŸ­ęœŸå¤§å­¦'),
(49863, 42120, 'en', 'name', 'Georgia Northwestern Technical College'),
(49864, 42121, 'en', 'name', 'Atlanta Technical College'),
(49865, 42122, 'en', 'name', 'Koran Women''s Junior College'),
(49866, 42122, 'ja', 'name', 'é¦™č˜­å„³å­ēŸ­ęœŸå¤§å­¦'),
(49867, 42123, 'en', 'name', 'Gwinnett Technical College'),
(49868, 42124, 'en', 'name', 'Augusta Technical College'),
(49869, 42125, 'en', 'name', 'Georgia Piedmont Technical College'),
(49870, 42126, 'en', 'name', 'Kunming Metallurgy College'),
(49871, 42126, 'zh', 'name', 'ę˜†ę˜Žå†¶é‡‘é«˜ē­‰äø“ē§‘å­¦ę ”'),
(49872, 42127, 'en', 'name', 'Halifax Community College'),
(49873, 42128, 'en', 'name', 'John A Gupton College'),
(49874, 42129, 'en', 'name', 'Hamilton Technical College'),
(49875, 42130, 'en', 'name', 'Immanuel Lutheran College'),
(49876, 42131, 'en', 'name', 'Labette Community College'),
(49877, 42132, 'en', 'name', 'Glen Oaks Community College'),
(49878, 42133, 'en', 'name', 'Defence Academy of the United Kingdom'),
(49879, 42134, 'en', 'name', 'Lakes College'),
(49880, 42135, 'en', 'name', 'Lamar Community College'),
(49881, 42136, 'en', 'name', 'Lamar State College–Port Arthur'),
(49882, 42137, 'en', 'name', 'Lambeth College'),
(49883, 42138, 'en', 'name', 'Hartlepool College of Further Education'),
(49884, 42139, 'no_lang_code', 'name', 'Infonet College'),
(49885, 42140, 'en', 'name', 'Kagawa Junior College'),
(49886, 42140, 'ja', 'name', 'é¦™å·ēŸ­ęœŸå¤§å­¦'),
(49887, 42141, 'en', 'name', 'Kagoshima Prefectural College'),
(49888, 42141, 'ja', 'name', 'é¹æå…å³¶ēœŒē«‹ēŸ­ęœŸå¤§å­¦'),
(49889, 42142, 'en', 'name', 'Hawaii Community College'),
(49890, 42143, 'en', 'name', 'Lassen Community College'),
(49891, 42144, 'en', 'name', 'LDS Business College'),
(49892, 42145, 'en', 'name', 'Mineral Area College'),
(49893, 42146, 'en', 'name', 'Haywood Community College'),
(49894, 42147, 'en', 'name', 'Madisonville Community College'),
(49895, 42148, 'en', 'name', 'Kanawha County Schools'),
(49896, 42149, 'en', 'name', 'Kanyakumari Government Medical College'),
(49897, 42149, 'ta', 'name', 'ą®•ą®©ąÆą®©ą®æą®Æą®¾ą®•ąÆą®®ą®°ą®æ ą®…ą®°ą®šąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(49898, 42150, 'en', 'name', 'Le Cordon Bleu College of Culinary Arts'),
(49899, 42151, 'en', 'name', 'Hazard Community and Technical College'),
(49900, 42152, 'en', 'name', 'Minnesota State College-Southeast Technical'),
(49901, 42153, 'en', 'name', 'Minnesota West Community & Technical College'),
(49902, 42154, 'en', 'name', 'Karachi School for Business and Leadership'),
(49903, 42155, 'en', 'name', 'Heartland Baptist Bible College'),
(49904, 42156, 'tl', 'name', 'Dalubhasaang Miriam'),
(49905, 42156, 'en', 'name', 'Miriam College'),
(49906, 42157, 'en', 'name', 'Kathmandu College of Management'),
(49907, 42158, 'en', 'name', 'Lenoir Community College'),
(49908, 42159, 'en', 'name', 'Mississippi Delta Community College'),
(49909, 42160, 'en', 'name', 'Leo Baeck College'),
(49910, 42161, 'en', 'name', 'Missouri College'),
(49911, 42162, 'en', 'name', 'Missouri State University–West Plains'),
(49912, 42163, 'en', 'name', 'Queen of the Valley Medical Center'),
(49913, 42164, 'en', 'name', 'Manhattan Area Technical College'),
(49914, 42165, 'en', 'name', 'LIM College'),
(49915, 42166, 'no_lang_code', 'name', 'Osaka Chiyoda Junior College'),
(49916, 42166, 'ja', 'name', 'å¤§é˜Ŗåƒä»£ē”°ēŸ­ęœŸå¤§å­¦'),
(49917, 42167, 'en', 'name', 'Mitchell Community College'),
(49918, 42168, 'en', 'name', 'Marion Technical College'),
(49919, 42169, 'en', 'name', 'Osaka Jonan Womens Junior College'),
(49920, 42169, 'ja', 'name', 'å¤§é˜ŖåŸŽå—å„³å­ēŸ­ęœŸå¤§å­¦'),
(49921, 42170, 'en', 'name', 'Lincoln College of New England'),
(49922, 42171, 'en', 'name', 'Martin College'),
(49923, 42172, 'en', 'name', 'Modesto Junior College'),
(49924, 42173, 'en', 'name', 'Nipawin Bible College'),
(49925, 42174, 'en', 'name', 'Lincoln University - California'),
(49926, 42175, 'no_lang_code', 'name', 'Otemae College'),
(49927, 42175, 'ja', 'name', 'å¤§ę‰‹å‰ēŸ­ęœŸå¤§å­¦'),
(49928, 42176, 'en', 'name', 'Little Priest Tribal College'),
(49929, 42177, 'en', 'name', 'Mater Dei High School'),
(49930, 42178, 'no_lang_code', 'name', 'Moneague College'),
(49931, 42179, 'en', 'name', 'London School of Business and Finance'),
(49932, 42180, 'en', 'name', 'Maysville Community and Technical College'),
(49933, 42181, 'en', 'name', 'London School of Commerce'),
(49934, 42182, 'en', 'name', 'North Bennet Street School'),
(49935, 42183, 'en', 'name', 'Morristown High School'),
(49936, 42184, 'en', 'name', 'North Central Michigan College'),
(49937, 42185, 'en', 'name', 'Ozarka College'),
(49938, 42186, 'en', 'name', 'Lower Columbia College'),
(49939, 42187, 'en', 'name', 'Moultrie Technical College'),
(49940, 42188, 'en', 'name', 'Melbourne School of Theology'),
(49941, 42189, 'en', 'name', 'Queensland Theological College'),
(49942, 42190, 'en', 'name', 'Palo Alto College'),
(49943, 42191, 'en', 'name', 'Raffles College of Design and Commerce'),
(49944, 42192, 'en', 'name', 'Mountain Lakes High School'),
(49945, 42193, 'en', 'name', 'Rainy River Community College'),
(49946, 42194, 'en', 'name', 'MTI College'),
(49947, 42195, 'en', 'name', 'West New York School District'),
(49948, 42196, 'en', 'name', 'Paris Junior College'),
(49949, 42197, 'en', 'name', 'Randolph Township Schools'),
(49950, 42198, 'en', 'name', 'North Kent College'),
(49951, 42199, 'en', 'name', 'Ranger College'),
(49952, 42200, 'en', 'name', 'Mendocino College'),
(49953, 42201, 'en', 'name', 'Ranney School'),
(49954, 42202, 'en', 'name', 'Pasco–Hernando State College'),
(49955, 42203, 'en', 'name', 'Mesalands Community College'),
(49956, 42204, 'en', 'name', 'Redcliffe College'),
(49957, 42205, 'en', 'name', 'Redlands Community College'),
(49958, 42206, 'en', 'name', 'Paul D. Camp Community College'),
(49959, 42207, 'en', 'name', 'Reformed Theological College'),
(49960, 42208, 'en', 'name', 'Metropolitan Community College - Kansas City'),
(49961, 42209, 'en', 'name', 'Regents Theological College'),
(49962, 42210, 'en', 'name', 'North Warwickshire and Hinckley College'),
(49963, 42211, 'en', 'name', 'Reid State Technical College'),
(49964, 42212, 'en', 'name', 'Miami Ad School'),
(49965, 42213, 'en', 'name', 'Pearl River Community College'),
(49966, 42214, 'en', 'name', 'National Law University, Delhi'),
(49967, 42215, 'en', 'name', 'Michigan School of Professional Psychology'),
(49968, 42216, 'en', 'name', 'Rich Mountain Community College'),
(49969, 42217, 'en', 'name', 'Ridley College'),
(49970, 42218, 'en', 'name', 'Mid Michigan Community College'),
(49971, 42219, 'en', 'name', 'Rio Salado College'),
(49972, 42220, 'en', 'name', 'National Park College'),
(49973, 42221, 'en', 'name', 'Mid-Atlantic Christian University'),
(49974, 42222, 'en', 'name', 'Northeast Mississippi Community College'),
(49975, 42223, 'en', 'name', 'Ripon College Cuddesdon'),
(49976, 42224, 'en', 'name', 'Northeastern Junior College'),
(49977, 42225, 'en', 'name', 'Pennsylvania Highlands Community College'),
(49978, 42226, 'en', 'name', 'Joseph Rowntree Charitable Trust'),
(49979, 42227, 'en', 'name', 'National School of Leadership'),
(49980, 42228, 'en', 'name', 'River Parishes Community College'),
(49981, 42229, 'en', 'name', 'Midwives College of Utah'),
(49982, 42230, 'en', 'name', 'Pensacola State College'),
(49983, 42231, 'en', 'name', 'Miles Community College'),
(49984, 42232, 'en', 'name', 'Riverside City College'),
(49985, 42233, 'en', 'name', 'Millar College of the Bible'),
(49986, 42234, 'en', 'name', 'National Tainan Institute of Nursing'),
(49987, 42234, 'zh', 'name', 'åœ‹ē«‹č‡ŗå—č­·ē†å°ˆē§‘å­øę ”'),
(49988, 42235, 'en', 'name', 'Northern Lakes College'),
(49989, 42236, 'en', 'name', 'Riverside College'),
(49990, 42237, 'en', 'name', 'National Taipei University'),
(49991, 42237, 'zh', 'name', 'åœ‹ē«‹č‡ŗåŒ—å¤§å­ø'),
(49992, 42238, 'en', 'name', 'Miller College'),
(49993, 42239, 'en', 'name', 'Roberto-Venn School of Luthiery'),
(49994, 42240, 'en', 'name', 'Phillips Community College of the University of Arkansas'),
(49995, 42241, 'en', 'name', 'Northern Oklahoma College'),
(49996, 42242, 'en', 'name', 'Pierce College'),
(49997, 42243, 'no_lang_code', 'name', 'Saniku Gakuin College'),
(49998, 42243, 'ja', 'name', '三育学院大学'),
(49999, 42244, 'en', 'name', 'Rocky Mountain College'),
(50000, 42245, 'en', 'name', 'Pine Technical and Community College'),
(50001, 42246, 'en', 'name', 'Pingry School'),
(50002, 42247, 'en', 'name', 'Rome International School'),
(50003, 42248, 'en', 'name', 'Sarum College'),
(50004, 42249, 'en', 'name', 'Native American Bible College'),
(50005, 42250, 'en', 'name', 'Pioneer Pacific College'),
(50006, 42251, 'no_lang_code', 'name', 'Satriwitthaya 2 School'),
(50007, 42251, 'th', 'name', 'โรงเรียนสตรีวณทยา 2 ą¹ƒąø™ąøžąø£ąø°ąø£ąø²ąøŠąø¹ąø›ąø–ąø±ąø”ąø ą¹ŒąøŖąø”ą¹€ąø”ą¹‡ąøˆąøžąø£ąø°ąøØąø£ąøµąø™ąø„ąø£ąø“ąø™ąø—ąø£ąø²ąøšąø£ąø”ąø£ąø²ąøŠąøŠąø™ąø™ąøµ'),
(50008, 42252, 'en', 'name', 'Rosedale Bible College'),
(50009, 42253, 'en', 'name', 'Sault College'),
(50010, 42254, 'en', 'name', 'Northwest Iowa Community College'),
(50011, 42255, 'en', 'name', 'Royal Air Force College Cranwell'),
(50012, 42256, 'en', 'name', 'Neath Port Talbot College'),
(50013, 42257, 'en', 'name', 'School of Advertising Art'),
(50014, 42258, 'en', 'name', 'Northwest Technical College'),
(50015, 42259, 'en', 'name', 'Neighborhood Playhouse School of the Theatre'),
(50016, 42260, 'en', 'name', 'Porterville College'),
(50017, 42261, 'en', 'name', 'Neosho County Community College'),
(50018, 42262, 'en', 'name', 'Royal Drawing School'),
(50019, 42263, 'en', 'name', 'Presbyterian Theological College'),
(50020, 42264, 'en', 'name', 'Northeast Lakeview College'),
(50021, 42265, 'en', 'name', 'Northwestern Oklahoma State University'),
(50022, 42266, 'en', 'name', 'Provo College'),
(50023, 42267, 'en', 'name', 'Northwestern Polytechnic University'),
(50024, 42268, 'en', 'name', 'New England Bible College'),
(50025, 42269, 'en', 'name', 'Scott Community College'),
(50026, 42270, 'en', 'name', 'Notre Dame High School'),
(50027, 42271, 'en', 'name', 'New England School of Photography'),
(50028, 42272, 'en', 'name', 'Sacramento City College'),
(50029, 42273, 'en', 'name', 'New Mexico Junior College'),
(50030, 42274, 'en', 'name', 'Seacoast Career Schools'),
(50031, 42275, 'en', 'name', 'South Georgia Technical College'),
(50032, 42276, 'en', 'name', 'Saint John''s School'),
(50033, 42277, 'en', 'name', 'Seevic College'),
(50034, 42278, 'en', 'name', 'Salem Community College'),
(50035, 42279, 'en', 'name', 'South Louisiana Community College'),
(50036, 42280, 'en', 'name', 'Salter School'),
(50037, 42281, 'en', 'name', 'Oconee Fall Line Technical College'),
(50038, 42282, 'en', 'name', 'Stanly Community College'),
(50039, 42283, 'no_lang_code', 'name', 'Seiwa Gakuen College'),
(50040, 42283, 'ja', 'name', 'č–å’Œå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(50041, 42284, 'en', 'name', 'South Mountain Community College'),
(50042, 42285, 'en', 'name', 'Ogden–Weber Applied Technology College'),
(50043, 42286, 'en', 'name', 'South Orange County Community College District'),
(50044, 42287, 'en', 'name', 'Stanmore College'),
(50045, 42288, 'en', 'name', 'South Piedmont Community College'),
(50046, 42289, 'en', 'name', 'San Bernardino Community College District'),
(50047, 42290, 'en', 'name', 'San Joaquin Valley College'),
(50048, 42291, 'en', 'name', 'Lenape Regional High School District'),
(50049, 42292, 'en', 'name', 'Seton Hall Preparatory School'),
(50050, 42293, 'en', 'name', 'South Seattle College'),
(50051, 42294, 'en', 'name', 'Steinbach Bible College'),
(50052, 42295, 'en', 'name', 'South Texas College'),
(50053, 42296, 'en', 'name', 'Ohio Business College'),
(50054, 42297, 'en', 'name', 'Three Rivers College'),
(50055, 42298, 'en', 'name', 'Stella Mann College of Performing Arts'),
(50056, 42299, 'en', 'name', 'Sterling College - Kansas'),
(50057, 42300, 'en', 'name', 'Tillamook Bay Community College'),
(50058, 42301, 'en', 'name', 'Shanxi University of Traditional Chinese Medicine'),
(50059, 42301, 'zh', 'name', 'å±±č„æäø­åŒ»å­¦é™¢'),
(50060, 42302, 'en', 'name', 'Southcentral Kentucky Community and Technical College'),
(50061, 42303, 'no_lang_code', 'name', 'Tirunelveli Medical College'),
(50062, 42303, 'ta', 'name', 'ą®¤ą®æą®°ąÆą®ØąÆ†ą®²ąÆą®µąÆ‡ą®²ą®æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(50063, 42304, 'en', 'name', 'Sterling High School'),
(50064, 42305, 'en', 'name', 'Tohono O''odham Community College'),
(50065, 42306, 'en', 'name', 'Southeast Kentucky Community and Technical College'),
(50066, 42307, 'en', 'name', 'Toronto Baptist Seminary and Bible College'),
(50067, 42308, 'en', 'name', 'Stockholm School of Economics in Russia'),
(50068, 42308, 'ru', 'name', 'Š”Ń‚Š¾ŠŗŠ³Š¾Š»ŃŒŠ¼ŃŠŗŠ°Ń школа ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø в России'),
(50069, 42309, 'en', 'name', 'Southeastern Baptist College'),
(50070, 42310, 'en', 'name', 'Southeastern Technical College'),
(50071, 42311, 'en', 'name', 'Oklahoma State University at Tulsa'),
(50072, 42312, 'en', 'name', 'Shrewsbury College'),
(50073, 42313, 'en', 'name', 'Southern Arkansas University Tech'),
(50074, 42314, 'en', 'name', 'Southern Crescent Technical College'),
(50075, 42315, 'en', 'name', 'Southern Maine Community College'),
(50076, 42316, 'en', 'name', 'Strayer University'),
(50077, 42317, 'en', 'name', 'Siddhartha Medical College'),
(50078, 42318, 'en', 'name', 'Southern Regional Technical College'),
(50079, 42319, 'en', 'name', 'Strode College'),
(50080, 42320, 'en', 'name', 'Trinidad State Junior College'),
(50081, 42321, 'en', 'name', 'Southern States University'),
(50082, 42322, 'en', 'name', 'Southern Union State Community College'),
(50083, 42323, 'en', 'name', 'Orangeburg–Calhoun Technical College'),
(50084, 42324, 'en', 'name', 'Southern Virginia University'),
(50085, 42325, 'en', 'name', 'Sir John Deane''s College'),
(50086, 42326, 'en', 'name', 'Sullivan College of Technology and Design'),
(50087, 42327, 'en', 'name', 'Southern West Virginia Community and Technical College'),
(50088, 42328, 'en', 'name', 'SKANS School of Accountancy'),
(50089, 42329, 'en', 'name', 'Summit Christian College'),
(50090, 42330, 'en', 'name', 'Trinity Theological College'),
(50091, 42330, 'zh', 'name', 'äø‰äø€ē„žå­¦é™¢'),
(50092, 42331, 'en', 'name', 'Skolkovo Moscow School of Management'),
(50093, 42331, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń школа ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Дколково'),
(50094, 42332, 'en', 'name', 'Southside Virginia Community College'),
(50095, 42333, 'en', 'name', 'Trinity Theological College'),
(50096, 42334, 'en', 'name', 'Southwest Mississippi Community College'),
(50097, 42335, 'en', 'name', 'Summit Public Schools'),
(50098, 42336, 'en', 'name', 'Trocaire College'),
(50099, 42337, 'en', 'name', 'Snead State Community College'),
(50100, 42338, 'en', 'name', 'Southwestern College - New Mexico'),
(50101, 42339, 'en', 'name', 'Sowela Technical Community College'),
(50102, 42340, 'en', 'name', 'University of Arkansas Community College at Hope'),
(50103, 42341, 'en', 'name', 'Tyler Junior College'),
(50104, 42342, 'en', 'name', 'Spartan College of Aeronautics and Technology'),
(50105, 42343, 'en', 'name', 'Spartanburg Community College'),
(50106, 42344, 'en', 'name', 'Somerset Community College'),
(50107, 42345, 'en', 'name', 'Uintah Basin Applied Technology College'),
(50108, 42346, 'en', 'name', 'Specs Howard School of Media Arts'),
(50109, 42347, 'en', 'name', 'Tainan Theological College and Seminary'),
(50110, 42347, 'zh', 'name', 'å°å—ē„žå­øé™¢'),
(50111, 42348, 'en', 'name', 'South and City College Birmingham'),
(50112, 42349, 'en', 'name', 'Ulsan College'),
(50113, 42349, 'ko', 'name', 'ģšøģ‚°ź³¼ķ•™ėŒ€ķ•™źµ'),
(50114, 42350, 'en', 'name', 'Spurgeons College'),
(50115, 42351, 'en', 'name', 'South Central College'),
(50116, 42352, 'en', 'name', 'University of Dental Medicine at Mandalay'),
(50117, 42353, 'en', 'name', 'Union Catholic Regional High School'),
(50118, 42354, 'en', 'name', 'Taylor College and Seminary'),
(50119, 42355, 'en', 'name', 'South Coast College'),
(50120, 42356, 'en', 'name', 'Sri Lanka Law College'),
(50121, 42357, 'en', 'name', 'South Country Central School District'),
(50122, 42358, 'en', 'name', 'TCA College'),
(50123, 42359, 'en', 'name', 'TCI College of Technology'),
(50124, 42360, 'en', 'name', 'Union Theological College'),
(50125, 42361, 'en', 'name', 'Technical College of the Lowcountry'),
(50126, 42362, 'en', 'name', 'North Carolina Exploring Cultural Heritage Online'),
(50127, 42363, 'en', 'name', 'Temple University Ambler'),
(50128, 42364, 'en', 'name', 'South Downs College'),
(50129, 42365, 'en', 'name', 'South Essex College'),
(50130, 42366, 'en', 'name', 'St Anthonys Senior Secondary School'),
(50131, 42367, 'en', 'name', 'Tennessee College of Applied Technology'),
(50132, 42368, 'en', 'name', 'South Florida State College'),
(50133, 42369, 'en', 'name', 'Tennessee College of Applied Technology - Pulaski'),
(50134, 42370, 'en', 'name', 'South Georgia State College'),
(50135, 42371, 'en', 'name', 'University College of Estate Management'),
(50136, 42372, 'en', 'name', 'University of Northwestern Ohio'),
(50137, 42373, 'en', 'name', 'St Johns River State College'),
(50138, 42374, 'en', 'name', 'Tennessee College of Applied Technology - Shelbyville'),
(50139, 42375, 'en', 'name', 'University of the Southwest'),
(50140, 42376, 'en', 'name', 'Texarkana College'),
(50141, 42377, 'en', 'name', 'Virginia College'),
(50142, 42378, 'no_lang_code', 'name', 'Weifang University'),
(50143, 42378, 'zh', 'name', 'ę½åŠå­¦é™¢'),
(50144, 42379, 'en', 'name', 'Urban College of Boston'),
(50145, 42380, 'en', 'name', 'Vision West Nottinghamshire College'),
(50146, 42381, 'en', 'name', 'Wentworth Military Academy and College'),
(50147, 42382, 'en', 'name', 'Thaddeus Stevens College of Technology'),
(50148, 42383, 'en', 'name', 'Wabash Valley College'),
(50149, 42384, 'en', 'name', 'University of Shizuoka'),
(50150, 42384, 'ja', 'name', 'é™å²”ēœŒē«‹å¤§å­¦'),
(50151, 42385, 'en', 'name', 'Wade College'),
(50152, 42386, 'en', 'name', 'Utica School of Commerce'),
(50153, 42387, 'en', 'name', 'University of South Carolina Union'),
(50154, 42388, 'en', 'name', 'Vance-Granville Community College'),
(50155, 42389, 'en', 'name', 'West Cheshire College'),
(50156, 42390, 'en', 'name', 'North Shropshire College'),
(50157, 42391, 'en', 'name', 'The Restaurant School at Walnut Hill College'),
(50158, 42392, 'en', 'name', 'Wallace Community College Selma'),
(50159, 42393, 'en', 'name', 'Vanguard College'),
(50160, 42394, 'en', 'name', 'Walters State Community College'),
(50161, 42395, 'en', 'name', 'Theodore Roosevelt High School'),
(50162, 42396, 'no_lang_code', 'name', 'Vatterott College'),
(50163, 42397, 'en', 'name', 'Washington County Community College'),
(50164, 42398, 'en', 'name', 'University of the Philippines Cebu'),
(50165, 42399, 'en', 'name', 'Vermilion Community College'),
(50166, 42400, 'en', 'name', 'William Booth College'),
(50167, 42401, 'en', 'name', 'Vernon College'),
(50168, 42402, 'en', 'name', 'Yamano College of Aesthetics'),
(50169, 42402, 'ja', 'name', 'å±±é‡Žē¾Žå®¹čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(50170, 42403, 'en', 'name', 'Williamson College of the Trades'),
(50171, 42404, 'en', 'name', 'Yellowstone Christian College'),
(50172, 42405, 'en', 'name', 'Williston State College'),
(50173, 42406, 'en', 'name', 'Wichita Area Technical College'),
(50174, 42407, 'en', 'name', 'Yokohama Soei University'),
(50175, 42407, 'ja', 'name', 'ęØŖęµœå‰µč‹±ēŸ­ęœŸå¤§å­¦'),
(50176, 42408, 'en', 'name', 'Westminster College - Missouri'),
(50177, 42409, 'en', 'name', 'Zanjan University of Medical Sciences'),
(50178, 42409, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی زنجان'),
(50179, 42410, 'en', 'name', 'University of Garden City'),
(50180, 42411, 'no_lang_code', 'name', 'Zaytuna College'),
(50181, 42412, 'en', 'name', 'Wiregrass Georgia Technical College'),
(50182, 42413, 'en', 'name', 'Wisconsin School of Professional Psychology'),
(50183, 42414, 'en', 'name', 'Yuba College'),
(50184, 42415, 'en', 'name', 'Duval County Public Schools'),
(50185, 42416, 'en', 'name', 'National Centre for Groundwater Research and Training'),
(50186, 42417, 'en', 'name', 'Wood TobƩ-Coburn School'),
(50187, 42418, 'en', 'name', 'Japan Center for Economic Research'),
(50188, 42418, 'ja', 'name', 'ę—„ęœ¬ēµŒęøˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(50189, 42419, 'en', 'name', 'Zhejiang University of Science and Technology'),
(50190, 42419, 'zh', 'name', 'ęµ™ę±Ÿē§‘ęŠ€å­¦é™¢'),
(50191, 42420, 'fr', 'name', 'ComitƩ international olympique'),
(50192, 42420, 'en', 'name', 'International Olympic Committee'),
(50193, 42421, 'en', 'name', 'Xaverian College'),
(50194, 42422, 'fr', 'name', 'Conseil pour le dƩveloppement de la recherche en sciences sociales en Afrique'),
(50195, 42422, 'pt', 'name', 'Conselho para o Desenvolvimento da Pesquisa em Ciências Sociais em África'),
(50196, 42422, 'en', 'name', 'Council for the Development of Social Science Research in Africa'),
(50197, 42422, 'ar', 'name', 'مجلس ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų„Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© في Ų£ŁŲ±ŁŠŁ‚ŁŠ'),
(50198, 42423, 'en', 'name', 'AAIR Charity'),
(50199, 42424, 'en', 'name', 'Action for ME'),
(50200, 42425, 'en', 'name', 'Indian National Trust for Art and Cultural Heritage'),
(50201, 42426, 'de', 'name', 'Krebsliga Beider Basel'),
(50202, 42427, 'en', 'name', 'Medical Advances Without Animals Trust'),
(50203, 42428, 'en', 'name', 'Construction Research Institute of Malaysia'),
(50204, 42429, 'en', 'name', 'Ceramic Society of Japan'),
(50205, 42429, 'ja', 'name', 'ę—„ęœ¬ć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹å”ä¼š'),
(50206, 42430, 'en', 'name', 'Smart Water Fund'),
(50207, 42431, 'en', 'name', 'Shaheed Rajaei Cardiovascular Medical and Research Center'),
(50208, 42432, 'en', 'name', 'International Association for the Study of Lung Cancer'),
(50209, 42433, 'nl', 'name', 'Koninklijke Hollandsche Maatschappij der Wetenschappen'),
(50210, 42433, 'en', 'name', 'Royal Holland Society of Sciences and Humanities'),
(50211, 42434, 'en', 'name', 'International Association for the Study of Pain'),
(50212, 42435, 'en', 'name', 'Islamic Society of North America'),
(50213, 42436, 'en', 'name', 'International Trauma Anesthesia and Critical Care Society'),
(50214, 42437, 'en', 'name', 'Korea Society'),
(50215, 42438, 'en', 'name', 'Gates Cambridge Trust'),
(50216, 42439, 'en', 'name', 'Birla Institute of Scientific Research'),
(50217, 42440, 'de', 'name', 'Fƶrdergemeinschaft Kinderkrebs-Zentrum Hamburg'),
(50218, 42441, 'en', 'name', 'Center for Massive Data Algorithmics'),
(50219, 42442, 'pt', 'name', 'Instituto de Tecnologia de Alimentos'),
(50220, 42443, 'en', 'name', 'San Pedro College'),
(50221, 42444, 'en', 'name', 'United States Indonesia Society'),
(50222, 42445, 'en', 'name', 'United States Golf Association'),
(50223, 42446, 'en', 'name', 'Information-Technology Promotion Agency'),
(50224, 42446, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗęƒ…å ±å‡¦ē†ęŽØé€²ę©Ÿę§‹'),
(50225, 42447, 'en', 'name', 'United States Capitol Historical Society'),
(50226, 42448, 'fr', 'name', 'Caisse nationale suisse d''assurance en cas d''accidents'),
(50227, 42448, 'it', 'name', 'Istituto nazionale svizzero di assicurazione contro gli infortuni'),
(50228, 42448, 'de', 'name', 'Schweizerische Unfallversicherungsanstalt'),
(50229, 42448, 'no_lang_code', 'name', 'Suva'),
(50230, 42449, 'en', 'name', 'Asian American Journalists Association'),
(50231, 42450, 'en', 'name', 'Indonesian Coral Reef Foundation'),
(50232, 42450, 'id', 'name', 'Yayasan Terumbu Karang Indonesia'),
(50233, 42451, 'en', 'name', 'Korea Green Promotion Agency'),
(50234, 42452, 'en', 'name', 'South Arts'),
(50235, 42453, 'en', 'name', 'Society of Teachers of Family Medicine'),
(50236, 42454, 'en', 'name', 'Panchajanya Vidya Peetha Welfare Trust'),
(50237, 42455, 'es', 'name', 'Instituto Millenium'),
(50238, 42455, 'en', 'name', 'Millennium Institute'),
(50239, 42456, 'de', 'name', 'Akademie für Tiergesundheit'),
(50240, 42457, 'en', 'name', 'Austin Graduate School of Theology'),
(50241, 42458, 'en', 'name', 'Cure Childhood Cancer Association'),
(50242, 42459, 'en', 'name', 'Sightsavers'),
(50243, 42460, 'en', 'name', 'HOPE Cape Town Trust'),
(50244, 42461, 'en', 'name', 'Society of Gastroenterology Nurses and Associates'),
(50245, 42462, 'no_lang_code', 'name', 'Structural Timber Innovation Company (New Zealand)'),
(50246, 42463, 'en', 'name', 'Bexley College'),
(50247, 42464, 'it', 'name', 'Sistema Bibliotecario di Udine e dell''Hinterland Udinese'),
(50248, 42465, 'it', 'name', 'Camera dei Deputati'),
(50249, 42465, 'en', 'name', 'Chamber of Deputies'),
(50250, 42466, 'en', 'name', 'Baltimore County Public Schools'),
(50251, 42467, 'it', 'name', 'Istituzione Bologna Musei'),
(50252, 42468, 'en', 'name', 'Owensboro Community and Technical College'),
(50253, 42469, 'fr', 'name', 'Fondation Bodmer'),
(50254, 42469, 'de', 'name', 'Fondation Martin Bodmer'),
(50255, 42470, 'es', 'name', 'Real Academia EspaƱola'),
(50256, 42470, 'en', 'name', 'Royal Spanish Academy'),
(50257, 42471, 'fr', 'name', 'Centre de Recherche sur l''Environnement Alpin'),
(50258, 42472, 'fr', 'name', 'HÓpital Cardiologique du Haut-Lévêque'),
(50259, 42473, 'de', 'name', 'Biotechnologie Institut Thurgau'),
(50260, 42473, 'en', 'name', 'Biotechnology Institute Thurgau'),
(50261, 42474, 'en', 'name', 'Malayan Colleges Laguna'),
(50262, 42475, 'en', 'name', 'Sandhills Community College'),
(50263, 42476, 'en', 'name', 'North Georgia Technical College'),
(50264, 42477, 'en', 'name', 'Cossatot Community College'),
(50265, 42478, 'en', 'name', 'Skyline College'),
(50266, 42479, 'en', 'name', 'Fairview School District'),
(50267, 42480, 'en', 'name', 'St Patrick''s College'),
(50268, 42481, 'en', 'name', 'West Kentucky Community and Technical College'),
(50269, 42482, 'en', 'name', 'All Nations University'),
(50270, 42483, 'it', 'name', 'Dipartimento dell Educazione della Cultura e dello Sport'),
(50271, 42484, 'fr', 'name', 'Ɖcole Biblique et ArchĆ©ologique FranƧaise de JĆ©rusalem'),
(50272, 42485, 'en', 'name', 'Gwinnett College'),
(50273, 42486, 'en', 'name', 'Caldwell Community College & Technical Institute'),
(50274, 42487, 'en', 'name', 'Platt College'),
(50275, 42488, 'en', 'name', 'Northeastern Technical College'),
(50276, 42489, 'en', 'name', 'University of Arkansas Community College at Morrilton'),
(50277, 42490, 'en', 'name', 'Swiss School of Archaeology in Greece'),
(50278, 42490, 'el', 'name', 'Ελβετική Αρχαιολογική Σχολή ĻƒĻ„Ī·Ī½ ΕλλάΓα'),
(50279, 42491, 'en', 'name', 'Gemological Institute of America'),
(50280, 42492, 'fr', 'name', 'Fondation Hardt'),
(50281, 42493, 'fr', 'name', 'Fondation Le Corbusier'),
(50282, 42494, 'fr', 'name', 'Haute Ɖcole PĆ©dagogique BEJUNE'),
(50283, 42495, 'it', 'name', 'Fondazione Lanza'),
(50284, 42496, 'fr', 'name', 'Haute Ɖcole PĆ©dagogique Fribourg'),
(50285, 42497, 'en', 'name', 'Bancroft School of Massage Therapy'),
(50286, 42498, 'it', 'name', 'Istituto Ricerche Solari Locarno'),
(50287, 42499, 'it', 'name', 'Istituto Svizzero di Roma'),
(50288, 42500, 'fr', 'name', 'INSEAD'),
(50289, 42501, 'fr', 'name', 'Institut international pour l''unification du droit privƩ'),
(50290, 42501, 'it', 'name', 'UNIDROIT'),
(50291, 42502, 'de', 'name', 'Kunstmuseum Basel'),
(50292, 42503, 'en', 'name', 'Marshalltown Community College'),
(50293, 42504, 'de', 'name', 'Kunstmuseum Bern'),
(50294, 42504, 'en', 'name', 'Museum of Fine Arts Bern'),
(50295, 42505, 'de', 'name', 'Institut für Kulturforschung Graubünden'),
(50296, 42506, 'fr', 'name', 'Institut Suisse de SpƩlƩologie et de Karstologie'),
(50297, 42507, 'de', 'name', 'Marie Meierhofer Institut für das Kind'),
(50298, 42508, 'en', 'name', 'Sanyo-Onoda City University'),
(50299, 42508, 'ja', 'name', 'å±±å£ę±äŗ¬ē†ē§‘å¤§å­¦'),
(50300, 42509, 'en', 'name', 'Ventura College'),
(50301, 42510, 'en', 'name', 'Dabney S Lancaster Community College'),
(50302, 42511, 'en', 'name', 'International Business College - Indianapolis'),
(50303, 42512, 'en', 'name', 'Max Planck Unit for Structural Molecular Biology'),
(50304, 42512, 'de', 'name', 'Max-Planck-Arbeitsgruppen für Strukturelle Molekularbiologie'),
(50305, 42513, 'it', 'name', 'Pro Grigioni Italiano'),
(50306, 42514, 'de', 'name', 'Max Planck Institut für Innovation und Wettbewerb'),
(50307, 42514, 'en', 'name', 'Max Planck Institute for Innovation and Competition'),
(50308, 42515, 'en', 'name', 'Spokane Falls Community College'),
(50309, 42516, 'it', 'name', 'Museo Cantonale di Storia Naturale di Lugano'),
(50310, 42517, 'de', 'name', 'Schweizerisches Idiotikon'),
(50311, 42517, 'en', 'name', 'Swiss idioticon'),
(50312, 42518, 'en', 'name', 'Lambeth Palace Library'),
(50313, 42519, 'de', 'name', 'StaatsunabhƤngige Theologische Hochschule Basel'),
(50314, 42520, 'rm', 'name', 'Archiv Federal Svizzer'),
(50315, 42520, 'fr', 'name', 'Archives FƩdƩrales Suisses'),
(50316, 42520, 'it', 'name', 'Archivio Federale Svizzero'),
(50317, 42520, 'de', 'name', 'Schweizerischen Bundesarchiv'),
(50318, 42520, 'en', 'name', 'Swiss Federal Archives'),
(50319, 42521, 'en', 'name', 'Addiction Switzerland'),
(50320, 42521, 'de', 'name', 'Sucht Schweiz'),
(50321, 42522, 'no_lang_code', 'name', 'Nokia (United States)'),
(50322, 42523, 'en', 'name', 'Open University of China'),
(50323, 42523, 'zh', 'name', '国家开放大学'),
(50324, 42524, 'en', 'name', 'Academic Swiss Caucasus Net'),
(50325, 42525, 'en', 'name', 'Carinthian Economic Promotion Fund'),
(50326, 42525, 'de', 'name', 'KƤrntner Wirtschaftsfƶrderungs Fonds'),
(50327, 42526, 'en', 'name', 'Association for Library and Information Science Education'),
(50328, 42527, 'en', 'name', 'Collaborative Centre for Applied Nanotechnology'),
(50329, 42528, 'de', 'name', 'Schweizerische Herzstiftung'),
(50330, 42528, 'en', 'name', 'Swiss Heart Foundation'),
(50331, 42529, 'en', 'name', 'Acoustical Society of America'),
(50332, 42530, 'en', 'name', 'Society for the Advancement of Scandinavian Study'),
(50333, 42531, 'en', 'name', 'Division of Parasitic Diseases and Malaria'),
(50334, 42532, 'fr', 'name', 'Instituts FranƧais de Recherche Ơ L''Ɖtranger'),
(50335, 42533, 'fr', 'name', 'Centre Jacques Berque pour le DƩveloppement des Sciences Humaines et Sociales'),
(50336, 42534, 'de', 'name', 'Centre Marc Bloch'),
(50337, 42535, 'en', 'name', 'Northwest Vista College'),
(50338, 42536, 'en', 'name', 'Hangzhou Hospital of Traditional Chinese Medicine'),
(50339, 42537, 'en', 'name', 'Jiaxing Vocational Technical College'),
(50340, 42537, 'zh', 'name', 'å˜‰å…“čŒäøšęŠ€ęœÆå­¦é™¢'),
(50341, 42538, 'en', 'name', 'Hubei Academy of Forestry'),
(50342, 42538, 'zh', 'name', 'ę¹–åŒ—ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(50343, 42539, 'en', 'name', 'Chinese People''s Armed Police General Hospital'),
(50344, 42539, 'zh', 'name', 'ę­¦č­¦ę€»åŒ»é™¢'),
(50345, 42540, 'en', 'name', 'Jilin Provincial Academy of Forestry Science'),
(50346, 42540, 'zh', 'name', 'å‰ęž—ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(50347, 42541, 'no_lang_code', 'name', 'Aluminum Corporation of China (China)'),
(50348, 42541, 'zh', 'name', 'äø­å›½é“äøšå…¬åø'),
(50349, 42542, 'en', 'name', 'Ningxia Hui Autonomous Region Peoples Hospital'),
(50350, 42542, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(50351, 42543, 'en', 'name', 'Chongqing Academy of Chinese Materia Medica'),
(50352, 42543, 'zh', 'name', 'é‡åŗ†åø‚äø­čÆē ”ē©¶é™¢'),
(50353, 42544, 'en', 'name', 'Jinhua Municipal Science and Technology Bureau'),
(50354, 42544, 'zh', 'name', 'é‡‘åŽåø‚ē§‘ęŠ€å±€'),
(50355, 42545, 'en', 'name', 'Chuxiong Normal University'),
(50356, 42545, 'aa', 'name', 'ę„šé›„åøˆčŒƒå­¦é™¢'),
(50357, 42546, 'en', 'name', 'Anhui Provincial Meteorological Bureau'),
(50358, 42546, 'zh', 'name', 'å®‰å¾½ēœę°”č±”å±€'),
(50359, 42547, 'en', 'name', 'Anshan Normal University'),
(50360, 42547, 'zh', 'name', 'éžå±±åøˆčŒƒå­¦é™¢'),
(50361, 42548, 'no_lang_code', 'name', 'Hunan Mawangdui Hospital'),
(50362, 42549, 'en', 'name', 'Guangdong Provincial Occupational Disease Prevention Hospital'),
(50363, 42549, 'zh', 'name', 'å¹æäøœēœčŒäøšē—…é˜²ę²»é™¢'),
(50364, 42550, 'en', 'name', 'Huzhou Vocational and Technical College'),
(50365, 42551, 'en', 'name', 'CPC Heilongjiang Provincial Committee Party School'),
(50366, 42551, 'zh', 'name', 'äø­å…±é»‘é¾™ę±Ÿēœå§”å…šę ”'),
(50367, 42552, 'en', 'name', 'Inner Mongolia Institute of Hydraulic Research'),
(50368, 42552, 'zh', 'name', 'å†…č’™å¤č‡Ŗę²»åŒŗę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(50369, 42553, 'en', 'name', 'Liaoning Jianzhu Vocational University'),
(50370, 42553, 'zh', 'name', 'č¾½å®äæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(50371, 42554, 'en', 'name', 'Zhejiang Party School'),
(50372, 42554, 'zh', 'name', 'ęµ™ę±Ÿēœå§”å…šę ”'),
(50373, 42555, 'en', 'name', 'Liaoning Provincial Food and Drug Administration'),
(50374, 42555, 'zh', 'name', 'č¾½å®ēœé£Ÿå“čÆå“ē›‘ē£ē®”ē†å±€'),
(50375, 42556, 'en', 'name', 'Institute of Archaeology'),
(50376, 42556, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢č€ƒå¤ē ”ē©¶ę‰€ę˜Æ'),
(50377, 42557, 'no_lang_code', 'name', 'Lishui Central Hospital'),
(50378, 42557, 'zh', 'name', 'äø½ę°“åø‚äø­åæƒåŒ»é™¢'),
(50379, 42558, 'en', 'name', 'Qinghai Institute for Endemic Diease Prevention and Control'),
(50380, 42559, 'en', 'name', 'Entry Exit Inspection and Quarantine Bureau'),
(50381, 42559, 'zh', 'name', 'å¹æäøœå‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(50382, 42560, 'en', 'name', 'Lishui Vocational and Technical College'),
(50383, 42560, 'zh', 'name', 'äø½ę°“čŒäøšęŠ€ęœÆå­¦é™¢'),
(50384, 42561, 'en', 'name', 'Lishui Academy of Forestry'),
(50385, 42561, 'zh', 'name', 'äø½ę°“åø‚ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(50386, 42562, 'en', 'name', 'Bureau of Hydrology Tibet'),
(50387, 42562, 'zh', 'name', 'č„æč—č‡Ŗę²»åŒŗę°“ę–‡ę°“čµ„ęŗå‹˜ęµ‹å±€'),
(50388, 42563, 'no_lang_code', 'name', 'China National Chemical Corporation (China)'),
(50389, 42563, 'zh', 'name', 'äø­å›½åŒ–å·„é›†å›¢å…¬åø'),
(50390, 42564, 'en', 'name', 'Institute of Endemic Disease Control in Shandong Province'),
(50391, 42564, 'zh', 'name', 'å±±äøœēœåœ°ę–¹ē—…é˜²ę²»ē ”ē©¶ę‰€'),
(50392, 42565, 'en', 'name', 'Institute of Ethnology and Anthropology'),
(50393, 42565, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ę°‘ę—å­¦äøŽäŗŗē±»å­¦ē ”ē©¶ę‰€'),
(50394, 42566, 'en', 'name', 'Fujian Institute of Subtropical Botany'),
(50395, 42566, 'zh', 'name', 'ē¦å»ŗēœäŗšēƒ­åø¦ę¤ē‰©ē ”ē©¶ę‰€'),
(50396, 42567, 'en', 'name', 'Institute of Linguistics'),
(50397, 42567, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢čÆ­čØ€ē ”ē©¶ę‰€'),
(50398, 42568, 'en', 'name', 'Fujian Research Institute of Light Industry'),
(50399, 42568, 'zh', 'name', 'ē¦å»ŗēœč½»å·„äøšē ”ē©¶ę‰€'),
(50400, 42569, 'en', 'name', 'Institute of Population and Labor Economics'),
(50401, 42569, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢äŗŗå£äøŽåŠ³åŠØē»ęµŽē ”ē©¶ę‰€'),
(50402, 42570, 'en', 'name', 'Poultry Research Institute'),
(50403, 42570, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å®¶ē¦½ē ”ē©¶ę‰€'),
(50404, 42571, 'en', 'name', 'Qingdao Municipal Center for Disease Control and Prevention'),
(50405, 42571, 'zh', 'name', 'é’å²›åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(50406, 42572, 'en', 'name', 'Guangdong Provincial Family Planning Hospital'),
(50407, 42572, 'zh', 'name', 'å¹æäøœēœč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(50408, 42573, 'en', 'name', 'NARI Group (China)'),
(50409, 42573, 'zh', 'name', 'å—äŗ¬č‡ŖåŠØåŒ–ē ”ē©¶ę‰€'),
(50410, 42574, 'en', 'name', 'China Academy of Traditional Chinese Medicine Hospital of Ophthalmology'),
(50411, 42574, 'zh', 'name', 'äø­å›½äø­åŒ»ē§‘å­¦é™¢ēœ¼ē§‘åŒ»é™¢'),
(50412, 42575, 'no_lang_code', 'name', 'Guangxi Institute of Botany'),
(50413, 42575, 'zh', 'name', 'äø­ē§‘é™¢å¹æč„æę¤ē‰©ē ”ē©¶ę‰€'),
(50414, 42576, 'en', 'name', 'Chinese Academy of Agricultural Engineering'),
(50415, 42576, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å†œäøšå·„ēØ‹'),
(50416, 42577, 'en', 'name', 'Guangxi Subtropical Crops Research Institute'),
(50417, 42577, 'zh', 'name', 'å¹æč„æäŗšēƒ­åø¦ä½œē‰©ē ”ē©¶ę‰€'),
(50418, 42578, 'en', 'name', 'Jiangsu Provincial Seismological Bureau'),
(50419, 42578, 'zh', 'name', 'ę±Ÿč‹ēœåœ°éœ‡å±€'),
(50420, 42579, 'en', 'name', 'Qinghai Provincial Peoples Hospital'),
(50421, 42579, 'zh', 'name', 'é’ęµ·ēœäŗŗę°‘åŒ»é™¢'),
(50422, 42580, 'en', 'name', 'Sweet Potato Research Institute'),
(50423, 42581, 'en', 'name', 'China Federation of Supply and Marketing Cooperatives'),
(50424, 42581, 'zh', 'name', 'äø­åŽå…Øå›½ä¾›é”€åˆä½œę€»ē¤¾'),
(50425, 42582, 'en', 'name', 'Guangzhou Municipal Engineering Design and Research Institute'),
(50426, 42582, 'zh', 'name', 'å¹æå·žåø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(50427, 42583, 'en', 'name', 'National Engineering Research Center for Compounding and Modification of Polymer Materials'),
(50428, 42583, 'zh', 'name', 'å›½å®¶å¤åˆę”¹ę€§čšåˆē‰©ęę–™å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(50429, 42584, 'en', 'name', 'China National Bamboo Research Center'),
(50430, 42584, 'zh', 'name', 'å›½å®¶ęž—äøšå±€ē«¹å­ē ”ē©¶å¼€å‘äø­åæƒ'),
(50431, 42585, 'en', 'name', 'Jiangxi Maternal and Child Health Hospital'),
(50432, 42585, 'zh', 'name', 'ę±Ÿč„æēœå¦‡å¹¼äæå„é™¢'),
(50433, 42586, 'en', 'name', 'Qinghai Tibetan Hospital'),
(50434, 42586, 'zh', 'name', 'é’ęµ·ēœč—åŒ»é™¢'),
(50435, 42587, 'en', 'name', 'National Institute of Education Sciences'),
(50436, 42587, 'zh', 'name', '中国教育科学研究院'),
(50437, 42588, 'en', 'name', 'Lushan Botanical Garden'),
(50438, 42588, 'zh', 'name', 'ę±Ÿč„æēœäø­å›½ē§‘å­¦é™¢åŗå±±ę¤ē‰©å›­'),
(50439, 42589, 'en', 'name', 'Guizhou Provincial Meteorological Bureau'),
(50440, 42589, 'zh', 'name', 'č“µå·žę°”č±”åœØēŗæ'),
(50441, 42590, 'en', 'name', 'Shandong Geological Sciences Institute'),
(50442, 42590, 'zh', 'name', 'å±±äøœēœåœ°č“Øē§‘å­¦å®žéŖŒē ”ē©¶é™¢'),
(50443, 42591, 'en', 'name', 'National Engineering Research Center for Wheat'),
(50444, 42591, 'zh', 'name', 'å›½å®¶å°éŗ¦å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(50445, 42592, 'no_lang_code', 'name', 'Quzhou University'),
(50446, 42592, 'zh', 'name', 'č”¢å·žå­¦é™¢'),
(50447, 42593, 'en', 'name', 'Hangzhou Vocational and Technical College'),
(50448, 42593, 'zh', 'name', 'ę­å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(50449, 42594, 'en', 'name', 'Chinese Academy of International Trade and Economic Cooperation'),
(50450, 42594, 'zh', 'name', 'å•†åŠ”éƒØå›½é™…č“øę˜“ē»ęµŽåˆä½œē ”ē©¶é™¢'),
(50451, 42595, 'en', 'name', 'Shanghai Institute of Landscape Gardening'),
(50452, 42595, 'zh', 'name', 'äøŠęµ·åø‚å›­ęž—ē§‘å­¦č§„åˆ’ē ”ē©¶é™¢'),
(50453, 42596, 'en', 'name', 'China Banking Regulatory Commission'),
(50454, 42596, 'zh', 'name', 'äø­å›½é“¶č”Œäøšē›‘ē£ē®”ē†å§”å‘˜ä¼š'),
(50455, 42597, 'en', 'name', 'Tibetan Traditional Medical College'),
(50456, 42597, 'zh', 'name', 'č„æč—ä¼ ē»ŸåŒ»å­¦é™¢'),
(50457, 42598, 'en', 'name', 'Institute of Pomology'),
(50458, 42598, 'zh', 'name', 'ęžœę ‘ē ”ē©¶ę‰€'),
(50459, 42599, 'en', 'name', 'Tourism College of Zhejiang'),
(50460, 42599, 'zh', 'name', 'ęµ™ę±Ÿę—…ęøøčŒäøšå­¦é™¢'),
(50461, 42600, 'en', 'name', 'Shaoxing City Women and Children Hospital'),
(50462, 42600, 'zh', 'name', 'ē»å…“åø‚å¦‡å¹¼äæå„é™¢'),
(50463, 42601, 'en', 'name', 'Shenzhen Blood Center'),
(50464, 42601, 'zh', 'name', 'ę·±åœ³åø‚č”€ę¶²äø­åæƒ'),
(50465, 42602, 'en', 'name', 'National Center for Science and Technology Evaluation'),
(50466, 42602, 'zh', 'name', 'å›½å®¶äø­åæƒēš„ē§‘å­¦ęŠ€ęœÆčÆ„ä»·'),
(50467, 42603, 'en', 'name', 'Gansu Provincial Hospital of TCM'),
(50468, 42603, 'zh', 'name', 'ē”˜č‚ƒēœäø­åŒ»é™¢'),
(50469, 42604, 'en', 'name', 'Shenzhen Maternity and Child Healthcare Hospital'),
(50470, 42604, 'zh', 'name', 'ę·±åœ³åø‚å¦‡å¹¼äæå„é™¢'),
(50471, 42605, 'en', 'name', 'Chinese Society for Tropical Crops'),
(50472, 42605, 'zh', 'name', 'äø­å›½ēƒ­åø¦ä½œē‰©å­¦ä¼š'),
(50473, 42606, 'en', 'name', 'Twelfth Guangzhou City People''s Hospital'),
(50474, 42606, 'zh', 'name', 'å¹æå·žåø‚ē¬¬åäŗŒäŗŗę°‘åŒ»é™¢'),
(50475, 42607, 'en', 'name', 'Seismological Bureau of Shanghai'),
(50476, 42607, 'zh', 'name', 'äøŠęµ·åø‚åœ°éœ‡å±€'),
(50477, 42608, 'en', 'name', 'Ningbo Polytechnic'),
(50478, 42608, 'zh', 'name', 'å®ę³¢čŒäøšęŠ€ęœÆå­¦é™¢'),
(50479, 42609, 'en', 'name', 'Wenzhou City People''s Hospital'),
(50480, 42609, 'zh', 'name', 'ęø©å·žåø‚äŗŗę°‘åŒ»é™¢'),
(50481, 42610, 'en', 'name', 'Wenzhou Institute of Industrial Science'),
(50482, 42610, 'zh', 'name', 'ęø©å·žåø‚å·„äøšē§‘å­¦ē ”ē©¶é™¢'),
(50483, 42611, 'en', 'name', 'Taizhou First People''s Hospital'),
(50484, 42611, 'zh', 'name', 'å°å·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(50485, 42612, 'en', 'name', 'Taizhou Vocational and Technical College'),
(50486, 42612, 'zh', 'name', 'å°å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(50487, 42613, 'en', 'name', 'Hangzhou Seventh Peoples Hospital'),
(50488, 42613, 'zh', 'name', 'ę­å·žåø‚ē¬¬äøƒäŗŗę°‘åŒ»é™¢'),
(50489, 42614, 'en', 'name', 'Zhejiang Academy of Medical Sciences'),
(50490, 42614, 'zh', 'name', 'ęµ™ę±ŸēœåŒ»å­¦ē§‘å­¦é™¢'),
(50491, 42615, 'en', 'name', 'Shaanxi Institute of Zoology'),
(50492, 42615, 'zh', 'name', 'é™•č„æēœåŠØē‰©ē ”ē©¶ę‰€'),
(50493, 42616, 'en', 'name', 'Zhejiang Business Technology Institute'),
(50494, 42616, 'zh', 'name', 'ęµ™ę±Ÿå·„å•†čŒäøšęŠ€ęœÆå­¦é™¢'),
(50495, 42617, 'en', 'name', 'Academy of Military Transportation'),
(50496, 42617, 'zh', 'name', 'å†›äŗ‹äŗ¤é€šå­¦é™¢'),
(50497, 42618, 'en', 'name', 'Ningxia Academy of Agriculture and Forestry Sciences'),
(50498, 42618, 'zh', 'name', 'å†œęž—ē§‘å­¦é™¢å®å¤ē§‘å­¦é™¢'),
(50499, 42619, 'en', 'name', 'Microbiology Institute of Shaanxi'),
(50500, 42619, 'zh', 'name', 'é™•č„æēœå¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(50501, 42620, 'no_lang_code', 'name', 'Zhejiang Zanyu Technology (China)'),
(50502, 42620, 'zh', 'name', 'ęµ™ę±Ÿčµžå®‡ē§‘ęŠ€'),
(50503, 42621, 'en', 'name', 'Zhejiang Changzheng Vocational and Technical College'),
(50504, 42621, 'zh', 'name', 'ęµ™ę±Ÿé•æå¾čŒäøšęŠ€ęœÆå­¦é™¢'),
(50505, 42622, 'no_lang_code', 'name', 'Zhejiang Chem-tech Group (China)'),
(50506, 42622, 'zh', 'name', 'ęµ™ę±ŸåŒ–å·„ē§‘ęŠ€é›†å›¢ęœ‰é™å…¬åøē²¾ē»†åŒ–å·„åŽ‚'),
(50507, 42623, 'en', 'name', 'Shandong Academy of Chinese Medicine'),
(50508, 42623, 'zh', 'name', 'å±±äøœēœäø­åŒ»čÆē ”ē©¶é™¢'),
(50509, 42624, 'en', 'name', 'Zhejiang International Studies University'),
(50510, 42624, 'zh', 'name', 'ęµ™ę±Ÿå¤–å›½čÆ­å­¦é™¢'),
(50511, 42625, 'en', 'name', 'Zhejiang Entry-Exit Inspection and Quarantine Bureau'),
(50512, 42625, 'zh', 'name', 'ę­å·žå‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(50513, 42626, 'en', 'name', 'Zhejiang Marine Fisheries Research Institute'),
(50514, 42626, 'zh', 'name', 'ęµ™ę±Ÿēœęµ·ę“‹ę°“äŗ§ē ”ē©¶ę‰€'),
(50515, 42627, 'en', 'name', 'Xinjiang Academy of Agricultural and Reclamation Science'),
(50516, 42627, 'zh', 'name', 'ę–°ē–†å†œåž¦ē§‘å­¦é™¢'),
(50517, 42628, 'en', 'name', 'Zhejiang Mariculture Research Institute'),
(50518, 42628, 'zh', 'name', 'ęµ™ę±Ÿēœęµ·ę“‹ę°“äŗ§å…»ę®–ē ”ē©¶ę‰€'),
(50519, 42629, 'en', 'name', 'ZheJiang Economic and Trade Polytechnic'),
(50520, 42629, 'zh', 'name', 'ęµ™ę±Ÿē»č“øčŒäøšęŠ€ęœÆå­¦é™¢'),
(50521, 42630, 'en', 'name', 'Zhejiang Museum of Natural History'),
(50522, 42630, 'zh', 'name', 'ęµ™ę±Ÿč‡Ŗē„¶åšē‰©é¦†'),
(50523, 42631, 'en', 'name', 'Zhejiang Institute of Mechanical and Electrical Engineering'),
(50524, 42631, 'zh', 'name', 'ęµ™ę±Ÿęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(50525, 42632, 'en', 'name', 'Zhejiang Environmental Monitoring Center'),
(50526, 42632, 'zh', 'name', 'ęµ™ę±ŸēœēŽÆå¢ƒē›‘ęµ‹äø­åæƒ'),
(50527, 42633, 'en', 'name', 'Zhejiang Provincial Environmental Protection Scientific Research Institute'),
(50528, 42633, 'zh', 'name', 'ęµ™ę±ŸēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦č®¾č®”ē ”ē©¶é™¢'),
(50529, 42634, 'en', 'name', 'Zhejiang Ocean Development Institute'),
(50530, 42634, 'zh', 'name', 'ęµ™ę±Ÿēœęµ·ę“‹å¼€å‘ē ”ē©¶é™¢'),
(50531, 42635, 'en', 'name', 'Zhejiang Financial College'),
(50532, 42635, 'zh', 'name', 'ęµ™ę±Ÿé‡‘čžčŒäøšå­¦é™¢'),
(50533, 42636, 'en', 'name', 'Zhejiang Institute of Metrology'),
(50534, 42636, 'zh', 'name', 'č®”é‡ęµ™ę±Ÿē†å·„å¤§å­¦'),
(50535, 42637, 'en', 'name', 'Zhejiang Pharmaceutical College'),
(50536, 42637, 'zh', 'name', 'ęµ™ę±ŸåŒ»čÆé«˜ē­‰äø“ē§‘å­¦ę ”'),
(50537, 42638, 'en', 'name', 'ZheJiang Institute For Food and Drug Control'),
(50538, 42638, 'zh', 'name', 'ęµ™ę±Ÿēœé£Ÿå“čÆå“ę£€éŖŒę‰€'),
(50539, 42639, 'en', 'name', 'Xinjiang Institute of Water Resources and Hydropower Research'),
(50540, 42639, 'zh', 'name', 'ę–°ē–†ę°“åˆ©ę°“ē”µē§‘å­¦ē ”ē©¶é™¢'),
(50541, 42640, 'en', 'name', 'Tianjin University of Sport'),
(50542, 42640, 'zh', 'name', '天擄体育学院'),
(50543, 42641, 'en', 'name', 'Zhejiang Taizhou Hospital'),
(50544, 42641, 'zh', 'name', 'ęµ™ę±Ÿēœå°å·žåŒ»é™¢'),
(50545, 42642, 'en', 'name', 'Zhejiang Provincial Health Information Center'),
(50546, 42642, 'zh', 'name', 'ęµ™ę±Ÿēœå«ē”Ÿäæ”ęÆäø­åæƒ'),
(50547, 42643, 'en', 'name', 'Zhoushan Institute of Calibration for Quality and Technology Supervision'),
(50548, 42644, 'en', 'name', 'Zhejiang Tongji Vocational College of Science and Technology'),
(50549, 42644, 'zh', 'name', 'ē§‘ęŠ€ēš„åŒęµŽå¤§å­¦ęµ™ę±ŸčŒäøšęŠ€ęœÆå­¦é™¢'),
(50550, 42645, 'en', 'name', 'Tianjin Research Institute of Water Transport Engineering'),
(50551, 42645, 'zh', 'name', 'å¤©ē§‘é™¢å®˜ę–¹ē½‘ē«™'),
(50552, 42646, 'en', 'name', 'North Carolina Soybean Association'),
(50553, 42647, 'en', 'name', 'Mushroom Council'),
(50554, 42648, 'en', 'name', 'Institute of General and Experimental Biology'),
(50555, 42648, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ биологии Š”Šž Š ŠŠ'),
(50556, 42649, 'en', 'name', 'Swiss Museum of Transport'),
(50557, 42649, 'de', 'name', 'Verkehrshaus der Schweiz'),
(50558, 42650, 'en', 'name', 'Zhejiang Science and Technology Information Institute'),
(50559, 42650, 'zh', 'name', 'ęµ™ę±Ÿēœē§‘ęŠ€äæ”ęÆē ”ē©¶é™¢'),
(50560, 42651, 'en', 'name', 'Global Environmental Outreach Centre'),
(50561, 42652, 'en', 'name', 'Vitamin D Society'),
(50562, 42653, 'en', 'name', 'American Association of Family and Consumer Sciences'),
(50563, 42654, 'en', 'name', 'American Association of Law Libraries'),
(50564, 42655, 'fr', 'name', 'Association Belge Contre les Maladies Neuro-Musculaires'),
(50565, 42656, 'en', 'name', 'Korea Foundation Of Nuclear Safety'),
(50566, 42656, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ģ•ˆģ „ģž¬ė‹Ø'),
(50567, 42657, 'en', 'name', 'Danish Energy Association'),
(50568, 42657, 'da', 'name', 'Dansk Energi'),
(50569, 42658, 'en', 'name', 'Society for Surgery of the Alimentary Tract'),
(50570, 42659, 'en', 'name', 'Association for Geographic Information'),
(50571, 42660, 'en', 'name', 'Alpha Omega Alpha Medical Honor Society'),
(50572, 42661, 'en', 'name', 'American Association for Thoracic Surgery'),
(50573, 42662, 'it', 'name', 'Associazione Italiana Di Oncologia Medica'),
(50574, 42663, 'en', 'name', 'American Association of Colleges of Pharmacy'),
(50575, 42664, 'en', 'name', 'Association for Surgical Education'),
(50576, 42665, 'da', 'name', 'TandlƦgeforeningen'),
(50577, 42666, 'en', 'name', 'American Parkinson Disease Association'),
(50578, 42667, 'en', 'name', 'Danish Lung Association'),
(50579, 42667, 'da', 'name', 'Lungeforening'),
(50580, 42668, 'en', 'name', 'Association for Academic Surgery'),
(50581, 42669, 'es', 'name', 'Centro de Investigación Biomédica en Red de Salud Mental'),
(50582, 42670, 'en', 'name', 'Council for Christian Colleges and Universities'),
(50583, 42671, 'en', 'name', 'Association for Public Policy Analysis and Management'),
(50584, 42672, 'en', 'name', 'American Association of Directors of Psychiatric Residency Training'),
(50585, 42673, 'en', 'name', 'American Society for Quality'),
(50586, 42674, 'en', 'name', 'International Parkinson and Movement Disorder Society');
INSERT INTO `ror_settings` VALUES
(50587, 42675, 'en', 'name', 'Blue Cross Blue Shield Association'),
(50588, 42676, 'en', 'name', 'American Association for Geriatric Psychiatry'),
(50589, 42677, 'en', 'name', 'American Psychoanalytic Association'),
(50590, 42678, 'en', 'name', 'American Psychosomatic Society'),
(50591, 42679, 'en', 'name', 'Changzhou Science and Technology Bureau'),
(50592, 42679, 'zh', 'name', 'åøøå·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(50593, 42680, 'en', 'name', 'Western History Association'),
(50594, 42681, 'en', 'name', 'American Society for Surgery of the Hand'),
(50595, 42682, 'en', 'name', 'Illinois School Psychologists Association'),
(50596, 42683, 'en', 'name', 'American Society of Maxillofacial Surgeons'),
(50597, 42684, 'en', 'name', 'Pskov State University'),
(50598, 42685, 'en', 'name', 'Swedish Movement Disorder Society'),
(50599, 42686, 'de', 'name', 'Bundesverband der Deutschen Industrie'),
(50600, 42686, 'en', 'name', 'Federation of German Industries'),
(50601, 42687, 'en', 'name', 'Alberta Conservation Association'),
(50602, 42688, 'sv', 'name', 'ParkinsonFƶrbundet'),
(50603, 42689, 'da', 'name', 'Parkinsonforeningen'),
(50604, 42690, 'en', 'name', 'Society of American Gastrointestinal and Endoscopic Surgeons'),
(50605, 42691, 'en', 'name', 'Copper Development Association'),
(50606, 42692, 'en', 'name', 'Association for the Advancement of Baltic Studies'),
(50607, 42693, 'en', 'name', 'Canadian Association of Radiation Oncology'),
(50608, 42694, 'en', 'name', 'Canadian Urological Association'),
(50609, 42695, 'en', 'name', 'American Orthopsychiatric Association'),
(50610, 42696, 'en', 'name', 'Association for Women Geoscientists'),
(50611, 42697, 'en', 'name', 'American Rhododendron Society'),
(50612, 42698, 'en', 'name', 'Mental Health Association of Westchester County'),
(50613, 42699, 'en', 'name', 'American Urogynecologic Society'),
(50614, 42700, 'en', 'name', 'California Women Lawyers'),
(50615, 42701, 'en', 'name', 'American Welding Society'),
(50616, 42702, 'en', 'name', 'Canadian Friends Of Tel-Aviv University'),
(50617, 42703, 'en', 'name', 'American Society for Public Administration'),
(50618, 42704, 'en', 'name', 'Society of Critical Care Medicine'),
(50619, 42705, 'en', 'name', 'Academy of Osseointegration'),
(50620, 42706, 'no_lang_code', 'name', 'Halogenated Solvents Industry Alliance (United States)'),
(50621, 42707, 'en', 'name', 'American Association of Neurological Surgeons'),
(50622, 42708, 'en', 'name', 'Arthroscopy Association of North America'),
(50623, 42709, 'en', 'name', 'Association of Zoo Veterinary Technicians'),
(50624, 42710, 'en', 'name', 'Almond Board of California'),
(50625, 42711, 'fr', 'name', 'Association des MƩdecins VƩtƩrinaires du QuƩbec'),
(50626, 42712, 'en', 'name', 'Nebraska Bankers Association'),
(50627, 42713, 'en', 'name', 'California Library Association'),
(50628, 42714, 'en', 'name', 'European Hematology Association'),
(50629, 42715, 'en', 'name', 'American Society of Heating, Refrigerating, and Air-Conditioning Engineers'),
(50630, 42716, 'en', 'name', 'American Society of Primatologists'),
(50631, 42717, 'en', 'name', 'American College of Veterinary Internal Medicine'),
(50632, 42718, 'en', 'name', 'Illinois Ornithological Society'),
(50633, 42719, 'en', 'name', 'Central Society for Clinical and Translational Research'),
(50634, 42720, 'en', 'name', 'St. Louis American Parkinson Disease Association'),
(50635, 42721, 'en', 'name', 'American Nephrology Nurses Association'),
(50636, 42722, 'en', 'name', 'Kansas Grain Sorghum Commission and Producers Association'),
(50637, 42723, 'en', 'name', 'Regional Studies Association'),
(50638, 42724, 'en', 'name', 'American Association of University Professors'),
(50639, 42725, 'en', 'name', 'Progressive Osseous Heteroplasia Association'),
(50640, 42726, 'en', 'name', 'National Association of Broadcasters'),
(50641, 42727, 'en', 'name', 'British Orthopaedic Association'),
(50642, 42728, 'en', 'name', 'Sexual Medicine Society of North America'),
(50643, 42729, 'en', 'name', 'Canadian Society for Vascular Surgery'),
(50644, 42730, 'en', 'name', 'Society of Actuaries'),
(50645, 42731, 'en', 'name', 'Eye Bank Association of America'),
(50646, 42732, 'en', 'name', 'Essex Disabled People''s Association'),
(50647, 42733, 'en', 'name', 'Oklahoma Biological Survey'),
(50648, 42734, 'en', 'name', 'Association of Academic Physiatrists'),
(50649, 42735, 'en', 'name', 'Administrative Sciences Association of Canada'),
(50650, 42736, 'en', 'name', 'Association of Military Surgeons of the United States'),
(50651, 42737, 'en', 'name', 'Society for Marine Mammalogy'),
(50652, 42738, 'en', 'name', 'New York State Psychological Association'),
(50653, 42739, 'en', 'name', 'Boston Society of Architects'),
(50654, 42740, 'en', 'name', 'Australian Acoustical Society'),
(50655, 42741, 'en', 'name', 'Agricultural & Applied Economics Association'),
(50656, 42742, 'en', 'name', 'Australian Society of Orthodontists'),
(50657, 42743, 'en', 'name', 'Filson Historical Society'),
(50658, 42744, 'en', 'name', 'Society for Human Resource Management'),
(50659, 42745, 'en', 'name', 'Saving Tiny Hearts Society'),
(50660, 42746, 'en', 'name', 'ACT Herpetological Association'),
(50661, 42747, 'en', 'name', 'American Cleft Palate-Craniofacial Association'),
(50662, 42748, 'en', 'name', 'Sleep Research Society'),
(50663, 42749, 'en', 'name', 'American Medical Women''s Association'),
(50664, 42750, 'es', 'name', 'Asociación Española para el Estudio del Hígado'),
(50665, 42751, 'en', 'name', 'Heart Rhythm Society'),
(50666, 42752, 'en', 'name', 'American Society for Theatre Research'),
(50667, 42753, 'sv', 'name', 'Kungl. Vetenskaps- och Vitterhets-samhƤllet i Gƶteborg'),
(50668, 42753, 'en', 'name', 'Royal Society of Sciences and Letters in Gothenburg'),
(50669, 42754, 'en', 'name', 'Canadian Library Association'),
(50670, 42755, 'en', 'name', 'Japanese Society of Clinical Neuropsychopharmacology'),
(50671, 42755, 'ja', 'name', 'ę—„ęœ¬č‡ØåŗŠē²¾ē„žē„žēµŒč–¬ē†å­¦ä¼š'),
(50672, 42756, 'it', 'name', 'Associazione Italiana Lotta al Neuroblastoma'),
(50673, 42757, 'fr', 'name', 'Sidaction'),
(50674, 42758, 'en', 'name', 'Canadian Association of University Teachers'),
(50675, 42759, 'en', 'name', 'American Pharmacists Association'),
(50676, 42760, 'en', 'name', 'British Deer Society'),
(50677, 42761, 'en', 'name', 'Australasian Speech Science and Technology Association'),
(50678, 42762, 'en', 'name', 'Canadian Society of Petroleum Geologists'),
(50679, 42763, 'en', 'name', 'International Bone Research Association'),
(50680, 42764, 'en', 'name', 'Manuscript Society'),
(50681, 42765, 'en', 'name', 'NBIA Disorders Association'),
(50682, 42766, 'en', 'name', 'Anglo-Israel Association'),
(50683, 42767, 'sv', 'name', 'Svenska JƤgarefƶrbundet'),
(50684, 42768, 'en', 'name', 'Arthritis Society'),
(50685, 42769, 'en', 'name', 'Jamestowne Society'),
(50686, 42770, 'en', 'name', 'Art Libraries Society'),
(50687, 42771, 'en', 'name', 'North Carolina Nursery and Landscape Association'),
(50688, 42772, 'en', 'name', 'Japan China Medical Association'),
(50689, 42772, 'ja', 'name', 'ę—„ęœ¬äø­å›½åŒ»å­¦å”ä¼š'),
(50690, 42773, 'en', 'name', 'Children’s Literature Association'),
(50691, 42774, 'en', 'name', 'Association for the Study of Animal Behaviour'),
(50692, 42775, 'en', 'name', 'National Association for Armenian Studies and Research'),
(50693, 42776, 'ca', 'name', 'Societat Catalana d''Oftalmologia'),
(50694, 42777, 'en', 'name', 'Pi Gamma Mu'),
(50695, 42778, 'en', 'name', 'Association of Medical Research Charities'),
(50696, 42779, 'fr', 'name', 'La SociƩtƩ gƩographique royale du Canada'),
(50697, 42779, 'en', 'name', 'Royal Canadian Geographical Society'),
(50698, 42780, 'en', 'name', 'Bibliographical Society'),
(50699, 42781, 'en', 'name', 'Entomological Society of Canada'),
(50700, 42781, 'fr', 'name', 'SociĆ©tĆ© d’Entomologie du Canada'),
(50701, 42782, 'en', 'name', 'Association of Management Consulting Firms'),
(50702, 42783, 'en', 'name', 'Canadian Pain Society'),
(50703, 42784, 'en', 'name', 'Beijing Institute of Geology for Mineral Resources'),
(50704, 42784, 'zh', 'name', 'åŒ—äŗ¬ēŸæäŗ§åœ°č“Øē ”ē©¶é™¢ äŗ¬I'),
(50705, 42785, 'en', 'name', 'Academy of Sciences and Humanities in Hamburg'),
(50706, 42785, 'de', 'name', 'Akademie der Wissenschaften in Hamburg'),
(50707, 42786, 'de', 'name', 'Deutsches Schiffahrtsmuseum'),
(50708, 42786, 'en', 'name', 'German Maritime Museum'),
(50709, 42787, 'no_lang_code', 'name', 'BioTez (Germany)'),
(50710, 42788, 'en', 'name', 'Xinjiang Uygur Autonomous Region Uygur Medicine Hospital'),
(50711, 42788, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē»“å¾å°”åŒ»åŒ»é™¢'),
(50712, 42789, 'de', 'name', 'Gottfried-Wilhelm-Leibniz-Gesellschaft'),
(50713, 42790, 'en', 'name', 'Zhejiang Industry Polytechnic College'),
(50714, 42790, 'zh', 'name', 'ęµ™ę±Ÿå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(50715, 42791, 'en', 'name', 'Halle Institute for Economic Research'),
(50716, 42791, 'de', 'name', 'Leibniz-Institut für Wirtschaftsforschung Halle'),
(50717, 42792, 'en', 'name', 'Ashland Community and Technical College'),
(50718, 42793, 'en', 'name', 'Maricopa Community Colleges - Glendale Community College'),
(50719, 42794, 'de', 'name', 'Institut für Lebensmittel- und Umweltforschung'),
(50720, 42794, 'en', 'name', 'Institute for Food and Environmental Research'),
(50721, 42795, 'en', 'name', 'Fraunhofer Institute for Integrated Circuits IIS, Division Engineering of Adaptive Systems EAS'),
(50722, 42795, 'de', 'name', 'Fraunhofer-Institut für Integrierte Schaltungen IIS, Institutsteil Entwicklung Adaptiver Systeme EAS'),
(50723, 42796, 'en', 'name', 'Hunan Sports Bureau'),
(50724, 42796, 'zh', 'name', 'ę¹–å—ēœä½“č‚²å±€'),
(50725, 42797, 'de', 'name', 'Union der deutschen Akademien der Wissenschaften'),
(50726, 42797, 'en', 'name', 'Union of the German Academies of Sciences and Humanities'),
(50727, 42798, 'no_lang_code', 'name', 'OAO VNIPIneft (Russia)'),
(50728, 42798, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠµŃ„Ń‚ŠµŠæŠµŃ€ŠµŃ€Š°Š±Š°Ń‚Ń‹Š²Š°ŃŽŃ‰ŠµŠ¹ Šø нефтехимической ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø ŠžŠŠž "Š’ŠŠ˜ŠŸŠ˜Š½ŠµŃ„Ń‚ŃŒ"'),
(50729, 42799, 'en', 'name', 'Aaron Marcus and Associates'),
(50730, 42800, 'no_lang_code', 'name', 'Center for Information and Numerical Data Analysis and Synthesis (United States)'),
(50731, 42801, 'en', 'name', 'Academy of Marketing Science'),
(50732, 42802, 'no_lang_code', 'name', 'Landesgewerbeanstalt Bayern (Germany)'),
(50733, 42803, 'de', 'name', 'Akademie für Technikfolgenabschätzung'),
(50734, 42804, 'no_lang_code', 'name', 'Becton Dickinson (Germany)'),
(50735, 42805, 'de', 'name', 'Chirurgische UniversitƤtsklinik Heidelberg'),
(50736, 42806, 'de', 'name', 'Berufsgenossenschaft Rohstoffe und chemische Industrie'),
(50737, 42807, 'en', 'name', 'Jiangsu Provincial Institute of Geological Survey'),
(50738, 42807, 'zh', 'name', 'ę±Ÿč‹ēœåœ°č“Øč°ƒęŸ„ē ”ē©¶é™¢'),
(50739, 42808, 'en', 'name', 'All-Russian Electrotechnical Institute named after V.I.Lenin'),
(50740, 42808, 'ru', 'name', 'Всероссийский ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.И. Ленина'),
(50741, 42809, 'no_lang_code', 'name', 'Clinical Investigation Support (Austria)'),
(50742, 42810, 'en', 'name', 'All-Russian Research Institute for Optical and Physical Measurements'),
(50743, 42810, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптико-физических измерений'),
(50744, 42811, 'en', 'name', 'Blended Solutions'),
(50745, 42812, 'en', 'name', 'Chicago Neuropsychology Group'),
(50746, 42813, 'no_lang_code', 'name', 'Bohn Stafleu van Loghum (Netherlands)'),
(50747, 42814, 'en', 'name', 'All-Russia Thermal Engineering Institute'),
(50748, 42814, 'ru', 'name', 'Всероссийский Теплотехнический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(50749, 42815, 'en', 'name', 'China Academy of Printing Technology'),
(50750, 42815, 'zh', 'name', 'äø­å›½å°åˆ·ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(50751, 42816, 'en', 'name', 'Cook County Sheriff''s Office'),
(50752, 42817, 'no_lang_code', 'name', 'Covance (Germany)'),
(50753, 42818, 'en', 'name', 'Broome County Health Department'),
(50754, 42819, 'no_lang_code', 'name', 'SK Communications (South Korea)'),
(50755, 42819, 'ko', 'name', 'ģ—ģŠ¤ģ¼€ģ“ģ»¤ė®¤ė‹ˆģ¼€ģ“ģ…˜ģ¦ˆ'),
(50756, 42820, 'no_lang_code', 'name', 'Gad Consulting Services (United States)'),
(50757, 42821, 'en', 'name', 'Herzberg Institute of Astrophysics'),
(50758, 42822, 'de', 'name', 'Deutsche Gesellschaft für Chirurgie'),
(50759, 42822, 'en', 'name', 'German Society of Surgery'),
(50760, 42823, 'en', 'name', 'German Informatics Society'),
(50761, 42823, 'de', 'name', 'Gesellschaft für Informatik'),
(50762, 42824, 'de', 'name', 'Forschungsinstitut für Kraftfahrwesen und Fahrzeugmotoren Stuttgart'),
(50763, 42824, 'en', 'name', 'Research Institute of Automotive Engineering and Vehicle Engines Stuttgart'),
(50764, 42825, 'en', 'name', 'European Space Policy Institute'),
(50765, 42825, 'de', 'name', 'Europäisches Institut für Weltraumpolitik'),
(50766, 42826, 'no_lang_code', 'name', 'Exascale (United Kingdom)'),
(50767, 42827, 'no_lang_code', 'name', 'Galapagos (Croatia)'),
(50768, 42828, 'no_lang_code', 'name', 'Francotyp Postalia (Germany)'),
(50769, 42829, 'en', 'name', 'Fujian Provincial Administration of Press, Publication, Radio, Film and Television'),
(50770, 42829, 'zh', 'name', 'ē¦å»ŗēœę–°é—»å‡ŗē‰ˆå¹æē”µ'),
(50771, 42830, 'en', 'name', 'International Training Centre of the ILO'),
(50772, 42831, 'en', 'name', 'International University in Germany'),
(50773, 42832, 'de', 'name', 'Bergmann und Partner RechtsanwƤlte'),
(50774, 42833, 'de', 'name', 'Blanke Meier Evers RechtsanwƤlte in Partnerschaft'),
(50775, 42834, 'en', 'name', 'Islamic Azad University, Lahijan Branch'),
(50776, 42834, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد Ł„Ų§Ł‡ŁŠŲ¬Ų§Ł†'),
(50777, 42835, 'no_lang_code', 'name', 'Kerkhoff Consulting (Germany)'),
(50778, 42836, 'en', 'name', 'KES International'),
(50779, 42837, 'no_lang_code', 'name', 'Jain PharmaBiotech (Switzerland)'),
(50780, 42838, 'en', 'name', 'Institute for Expressive Analysis'),
(50781, 42839, 'en', 'name', 'Japan Association for International Chemical Information'),
(50782, 42839, 'ja', 'name', 'åŒ–å­¦ęƒ…å ±å”ä¼š'),
(50783, 42840, 'en', 'name', 'Institute for Futures Studies'),
(50784, 42840, 'sv', 'name', 'Institutet fƶr Framtidsstudier'),
(50785, 42841, 'en', 'name', 'International Association of Engineers'),
(50786, 42842, 'nl', 'name', 'Maatschappij tot Redding van Drenkelingen'),
(50787, 42843, 'en', 'name', 'Machine Intelligence Research Labs'),
(50788, 42844, 'en', 'name', 'Mansoura University Hospital'),
(50789, 42845, 'en', 'name', 'Michalski Huettermann and Partner'),
(50790, 42845, 'de', 'name', 'Michalski Hüttermann & Partner Patentanwälte'),
(50791, 42846, 'no_lang_code', 'name', 'Metallurgical Corporation of China (China)'),
(50792, 42846, 'zh', 'name', 'äø­å›½å†¶é‡‘ē§‘å·„č‚”ä»½ęœ‰é™å…¬åø'),
(50793, 42847, 'en', 'name', 'International Laboratory of High Magnetic Fields and Low Temperatures'),
(50794, 42847, 'pl', 'name', 'Międzynarodowego Laboratorium Silnych Pól Magnetycznych i Niskich Temperatur'),
(50795, 42848, 'de', 'name', 'Flughafen Leipzig/Halle'),
(50796, 42848, 'en', 'name', 'Leipzig/Halle Airport'),
(50797, 42849, 'en', 'name', 'National Institute for Educational Policy Research'),
(50798, 42849, 'ja', 'name', '国立教育政策研究所'),
(50799, 42850, 'no_lang_code', 'name', 'McKinsey & Company (Germany)'),
(50800, 42851, 'en', 'name', 'National Institute for the Psychotherapies'),
(50801, 42852, 'no_lang_code', 'name', 'MPDV Mikrolab (Germany)'),
(50802, 42853, 'en', 'name', 'Pittsburgh Psychoanalytic Center'),
(50803, 42854, 'en', 'name', 'MUFG Union Bank'),
(50804, 42855, 'no_lang_code', 'name', 'Rail Vision (United Kingdom)'),
(50805, 42856, 'no_lang_code', 'name', 'GlaxoSmithKline (Croatia)'),
(50806, 42857, 'no_lang_code', 'name', 'Neoanalysis (Greece)'),
(50807, 42857, 'el', 'name', 'ĪĪ•ĪŸĪ‘ĪĪ‘Ī›Ī„Ī£Ī™Ī£'),
(50808, 42858, 'de', 'name', 'Arbeitsgruppe Friedensforschung und EuropƤische Sicherheitspolitik'),
(50809, 42858, 'en', 'name', 'Peace Research and European Security Studies'),
(50810, 42859, 'en', 'name', 'All-Russian Research Institute for Oil Refining'),
(50811, 42859, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по переработке нефти'),
(50812, 42860, 'no_lang_code', 'name', 'Magnezit (Russia)'),
(50813, 42860, 'ru', 'name', 'ŠœŠ°Š³Š½ŠµŠ·ŠøŃ‚Š°'),
(50814, 42861, 'no_lang_code', 'name', 'East Institute Refractories (Russia)'),
(50815, 42861, 'ru', 'name', 'Восточный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Š³Š½ŠµŃƒŠæŠ¾Ń€Š¾Š²'),
(50816, 42862, 'uz', 'name', 'C.Yu.Yunusov Nomidagi O’simlik Moddalari Kimyosi Instituti'),
(50817, 42862, 'en', 'name', 'Yunusov Institute of the Chemistry of Plant Substances'),
(50818, 42862, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Ń€Š°ŃŃ‚ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… веществ им. акаГ. Š”.Š®. Юнусова АкаГемии ŠŠ°ŃƒŠŗ Республики Узбекистан'),
(50819, 42863, 'en', 'name', 'L.V. Pisarzhevskii Institute of Physical Chemistry'),
(50820, 42863, 'uk', 'name', 'Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š†Š—Š˜Š§ŠŠžŠ‡ Š„Š†ŠœŠ†Š‡ Š†ŠœŠ•ŠŠ† Š›. Š’. ŠŸŠ˜Š”ŠŠ Š–Š•Š’Š”Š¬ŠšŠžŠ“Šž ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠžŠ‡ ŠŠšŠŠ”Š•ŠœŠ†Š‡ ŠŠŠ£Šš Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(50821, 42864, 'en', 'name', 'Search Institute'),
(50822, 42865, 'no_lang_code', 'name', 'Nomad Bioscience (Germany)'),
(50823, 42866, 'it', 'name', 'Associazione Italiana Arbitri'),
(50824, 42867, 'en', 'name', 'Solid State Physics Laboratory'),
(50825, 42867, 'hi', 'name', 'ą¤ ą„‹ą¤øą¤¾ą¤µą¤øą„ą¤„ą¤¾ ą¤­ą„Œą¤¤ą¤æą¤•ą„€ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(50826, 42868, 'no_lang_code', 'name', 'SGS (China)'),
(50827, 42869, 'de', 'name', 'Sukkulenten-Sammlung Zürich'),
(50828, 42870, 'de', 'name', 'Schweizerischer Versicherungsverband'),
(50829, 42870, 'en', 'name', 'Swiss Insurance Association'),
(50830, 42871, 'en', 'name', 'Indian Institute of Metals'),
(50831, 42872, 'en', 'name', 'Marienhospital Arnsberg'),
(50832, 42873, 'de', 'name', 'Barmherzige Schwestern vom heiligen Kreuz'),
(50833, 42874, 'en', 'name', 'The Ohio State University at Marion'),
(50834, 42875, 'de', 'name', 'Klinikum Hanau'),
(50835, 42876, 'no_lang_code', 'name', 'Right Way (Germany)'),
(50836, 42877, 'en', 'name', 'Research Institute of Ceramics'),
(50837, 42877, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠšŠ•Š ŠŠœŠ˜ŠšŠ˜'),
(50838, 42878, 'en', 'name', 'Gersevanov Research Institute of Bases and Underground Structures'),
(50839, 42878, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠøŠ·Ń‹ŃŠŗŠ°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оснований Šø поГземных ŃŠ¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠ¹'),
(50840, 42879, 'no_lang_code', 'name', 'NIIGrafit'),
(50841, 42879, 'ru', 'name', 'ŠŠ˜Š˜Š³Ń€Š°Ń„ŠøŃ‚'),
(50842, 42880, 'fr', 'name', 'Institut de Recherche des Nations Unies pour le DƩveloppement Social'),
(50843, 42880, 'en', 'name', 'United Nations Research Institute for Social Development'),
(50844, 42881, 'en', 'name', 'State Research Institute of Organic Chemistry and Technology'),
(50845, 42881, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Ā«Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органической химии Šø технологии»'),
(50846, 42882, 'en', 'name', 'American Committee for the Weizmann Institute of Science'),
(50847, 42883, 'no_lang_code', 'name', 'Beijing Seismological Bureau'),
(50848, 42883, 'zh', 'name', 'åŒ—äŗ¬åø‚åœ°éœ‡å±€'),
(50849, 42884, 'en', 'name', 'World Phenomenology Institute'),
(50850, 42885, 'de', 'name', 'Augenklinik Heidelberg'),
(50851, 42886, 'en', 'name', 'House of Representatives'),
(50852, 42886, 'nl', 'name', 'Tweede Kamer der Staten-Generaal'),
(50853, 42887, 'en', 'name', 'Twin Cities Orthopedics'),
(50854, 42888, 'de', 'name', 'Frauenklinik Heidelberg'),
(50855, 42889, 'de', 'name', 'Hautklinik Heidelberg'),
(50856, 42890, 'de', 'name', 'Hals- Nasen- und Ohrenklinik Gießen'),
(50857, 42891, 'en', 'name', 'Ukrainian Research Institute of Refractories named after A.S. Berezhnoy'),
(50858, 42891, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вогнетривів'),
(50859, 42892, 'de', 'name', 'Universitätsklinik für Hals-, Nasen- und Ohrenheilkunde'),
(50860, 42893, 'en', 'name', 'Universal Management Services'),
(50861, 42894, 'en', 'name', 'Volgograd Institute of Business'),
(50862, 42894, 'ru', 'name', 'ВолгограГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(50863, 42895, 'de', 'name', 'Zentrum für Kinderheilkunde'),
(50864, 42896, 'de', 'name', 'Klinik und Poliklinik für Hals-, Nasen-, Ohrenheilkunde'),
(50865, 42897, 'no_lang_code', 'name', 'Wireilla Scientific Publications (Australia)'),
(50866, 42898, 'de', 'name', 'Zentralklinik Bad Berka'),
(50867, 42899, 'en', 'name', 'NRAD Medical Associates'),
(50868, 42900, 'de', 'name', 'Tumor- und Brustzentrum ZeTuP Silberturm'),
(50869, 42901, 'en', 'name', 'Traditional Chinese Medicine Hospital of Kunshan'),
(50870, 42902, 'en', 'name', 'Jung Tao School of Classical Chinese Medicine'),
(50871, 42903, 'en', 'name', 'University of Maryland University College Europe'),
(50872, 42904, 'en', 'name', 'Villa Maria College'),
(50873, 42905, 'en', 'name', 'Philips College'),
(50874, 42906, 'fr', 'name', 'Centre Hospitalier de Lens'),
(50875, 42907, 'en', 'name', 'Sh''or Yoshuv Institute'),
(50876, 42908, 'en', 'name', 'Hospital Agioi Anargyroi'),
(50877, 42909, 'en', 'name', 'Second Affiliated Hospital of Xuzhou Medical College'),
(50878, 42909, 'zh', 'name', 'å¾å·žåŒ»å­¦é™¢ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(50879, 42910, 'en', 'name', 'International Cosmetology College'),
(50880, 42910, 'lv', 'name', 'Starptautiskā Kosmetoloģijas koledža'),
(50881, 42911, 'en', 'name', 'Southwestern Christian College'),
(50882, 42912, 'en', 'name', 'Shanxi Province Hospital of Traditional Chinese Medicine'),
(50883, 42913, 'en', 'name', 'Daqing City People''s Hospital'),
(50884, 42914, 'et', 'name', 'Informaatika ja Arvutustehnika Instituut'),
(50885, 42914, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информатики Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники'),
(50886, 42915, 'vi', 'name', 'Bệnh viện Phổi HĆ Nį»™i'),
(50887, 42915, 'en', 'name', 'Hanoi Lung Hospital'),
(50888, 42916, 'en', 'name', 'Hegang People''s Hospital'),
(50889, 42916, 'zh', 'name', 'é¹¤å²—åø‚äŗŗę°‘åŒ»é™¢'),
(50890, 42917, 'no', 'name', 'Revmatismesykehuset'),
(50891, 42918, 'en', 'name', 'The School of Higher Education in Humanities of the Association for Adult Education'),
(50892, 42918, 'pl', 'name', 'Wyższa Szkoła Humanistyczna Towarzystwa Wiedzy Powszechnej'),
(50893, 42919, 'en', 'name', 'Rabindranath Tagore Medical College'),
(50894, 42920, 'en', 'name', 'Gyeongsan Science High School'),
(50895, 42920, 'ko', 'name', '경산과학고등학교'),
(50896, 42921, 'en', 'name', 'GISMA Business School'),
(50897, 42922, 'lt', 'name', 'Klaipėdos Verslo AukÅ”toji Mokykla'),
(50898, 42923, 'pl', 'name', 'Niepubliczna Wyższa Szkoła Medyczna'),
(50899, 42924, 'en', 'name', 'Zhukovsky Air Force Engineering Academy'),
(50900, 42924, 'ru', 'name', 'Военно-Š²Š¾Š·Š“ŃƒŃˆŠ½Š°Ń ŠøŠ½Š¶ŠµŠ½ŠµŃ€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени профессора Š. Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾'),
(50901, 42925, 'en', 'name', 'Union School of Theology'),
(50902, 42926, 'en', 'name', 'Association of University Centers on Disabilities'),
(50903, 42927, 'en', 'name', 'Turku Centre for Computer Science'),
(50904, 42927, 'fi', 'name', 'Turun tietotekniikan tutkimus- ja koulutuskeskus'),
(50905, 42927, 'sv', 'name', 'ƅbo datatekniska forsknings- och utbildningscentrum'),
(50906, 42928, 'en', 'name', 'GrAT - Center for Appropriate Technology'),
(50907, 42928, 'de', 'name', 'Gruppe zur Fƶrderung der Angepasste Technologie'),
(50908, 42929, 'it', 'name', 'Consorzio per il Centro Interuniversitario di Biologia Marina ed Ecologia Applicata G. Bacci'),
(50909, 42930, 'en', 'name', 'Changchun Children''s Hospital'),
(50910, 42930, 'zh', 'name', 'é•æę˜„åø‚å„æē«„åŒ»é™¢'),
(50911, 42931, 'tr', 'name', 'Manisa Celal Bayar Üniversitesi Hafsa Sultan Hastanesi'),
(50912, 42932, 'fr', 'name', 'Commission gƩologique du Canada'),
(50913, 42932, 'en', 'name', 'Geological Survey of Canada'),
(50914, 42933, 'en', 'name', 'Comfenalco Technological University Foundation'),
(50915, 42933, 'es', 'name', 'Fundación Universitaria Tecnológico Comfenalco Cartagena'),
(50916, 42934, 'es', 'name', 'Instituto Nicaragüense de Estudios Territoriales'),
(50917, 42935, 'en', 'name', 'Kandilli Observatory and Earthquake Research Institute'),
(50918, 42935, 'tr', 'name', 'Kandilli Rasathanesi ve Deprem Araştırma Enstitüsü'),
(50919, 42936, 'en', 'name', 'National Tsunami Warning Center'),
(50920, 42937, 'de', 'name', 'Oberlandesgericht Stuttgart'),
(50921, 42938, 'no_lang_code', 'name', 'Maharaj Nakorn Chiang Mai Hospital'),
(50922, 42938, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø£ąø²ąøŠąø™ąø„ąø£ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(50923, 42939, 'en', 'name', 'Fatih University Medical Faculty Hospital'),
(50924, 42939, 'tr', 'name', 'Fatih Üniversitesi Tıp Fakültesi Hastanesi'),
(50925, 42940, 'en', 'name', 'Hirosaki University Hospital'),
(50926, 42940, 'ja', 'name', 'å¼˜å‰å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(50927, 42941, 'en', 'name', 'Hiroshima University Hospital'),
(50928, 42941, 'ja', 'name', 'åŗƒå³¶å¤§å­¦ē—…é™¢'),
(50929, 42942, 'en', 'name', 'Seismological Society of America'),
(50930, 42943, 'en', 'name', 'Cascades Volcano Observatory'),
(50931, 42944, 'en', 'name', 'The Jikei University Hospital'),
(50932, 42944, 'ja', 'name', 'ę±äŗ¬ę…ˆęµä¼šåŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(50933, 42945, 'tr', 'name', 'Gazi Hastanesi'),
(50934, 42946, 'en', 'name', 'Northern Maine Community College'),
(50935, 42947, 'en', 'name', 'Sapporo Medical University Hospital'),
(50936, 42947, 'ja', 'name', 'ęœ­å¹ŒåŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(50937, 42948, 'en', 'name', 'Stanground Academy'),
(50938, 42949, 'en', 'name', 'Nippon Dental University Hospital'),
(50939, 42949, 'ja', 'name', 'ę—„ęœ¬ę­Æē§‘å¤§å­¦é™„å±žē—…é™¢'),
(50940, 42950, 'en', 'name', 'Shanghai Public Health Clinical Center'),
(50941, 42950, 'zh', 'name', 'å…¬å…±å«ē”Ÿäø“åŗŠäø­åæƒ'),
(50942, 42951, 'en', 'name', 'Nnamdi Azikiwe University Teaching Hospital'),
(50943, 42952, 'no_lang_code', 'name', 'Kowsar Hospital'),
(50944, 42952, 'fa', 'name', 'کوثر ؓیراز'),
(50945, 42953, 'en', 'name', 'Toho University Ohashi Medical Center'),
(50946, 42953, 'ja', 'name', 'ę±é‚¦å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼å¤§ę©‹ē—…é™¢'),
(50947, 42954, 'en', 'name', 'Toho University Medical Center Sakura Hospital'),
(50948, 42954, 'ja', 'name', 'ę±é‚¦å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ä½å€‰ē—…é™¢'),
(50949, 42955, 'en', 'name', 'Pushchino State Institute of Natural Sciences'),
(50950, 42955, 'ru', 'name', 'ŠŸŃƒŃ‰ŠøŠ½ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(50951, 42956, 'en', 'name', 'Drammen Hospital'),
(50952, 42956, 'no', 'name', 'Drammen Sykehus'),
(50953, 42957, 'en', 'name', 'Rockefeller University Hospital'),
(50954, 42958, 'en', 'name', 'Maputo Central Hospital'),
(50955, 42959, 'en', 'name', 'Hara Eye Hospital'),
(50956, 42959, 'ja', 'name', 'åŽŸēœ¼ē§‘ē—…é™¢'),
(50957, 42960, 'en', 'name', 'State Optical Institute named after SI Vavilov'),
(50958, 42960, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ оптический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”.И. Вавилова'),
(50959, 42961, 'en', 'name', 'First Affiliated Hospital of Guangzhou Medical University'),
(50960, 42961, 'zh', 'name', 'å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(50961, 42962, 'en', 'name', 'University Medical Center New Orleans'),
(50962, 42963, 'en', 'name', 'Kurume University Hospital'),
(50963, 42963, 'ja', 'name', '久留米大学病院'),
(50964, 42964, 'en', 'name', 'Kurume University Medical Center'),
(50965, 42964, 'ja', 'name', 'ä¹…ē•™ē±³å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(50966, 42965, 'en', 'name', 'Essex County Hospital'),
(50967, 42966, 'pt', 'name', 'Hospital de Magalhães Lemos'),
(50968, 42967, 'no_lang_code', 'name', 'Danone (Morocco)'),
(50969, 42968, 'en', 'name', 'Second People’s Hospital of Huai’an'),
(50970, 42968, 'zh', 'name', 'ę·®å®‰åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(50971, 42969, 'no_lang_code', 'name', 'Johnson & Johnson (Switzerland)'),
(50972, 42970, 'en', 'name', 'United Nations University'),
(50973, 42970, 'de', 'name', 'UniversitƤt der Vereinten Nationen'),
(50974, 42971, 'pt', 'name', 'Hospital Padre AmƩrico'),
(50975, 42972, 'tr', 'name', 'Aydın Adnan Menderes Üniversitesi Uygulama ve Araştırma Hastanesi'),
(50976, 42973, 'en', 'name', 'Jintan People''s Hospital'),
(50977, 42973, 'zh', 'name', 'é‡‘å›åø‚äŗŗę°‘åŒ»é™¢'),
(50978, 42974, 'en', 'name', 'Columbia St. Mary''s Hospital'),
(50979, 42975, 'en', 'name', 'Fukuoka City Hospital'),
(50980, 42975, 'ja', 'name', 'ē¦å²”åø‚ę°‘ē—…é™¢'),
(50981, 42976, 'no_lang_code', 'name', 'Misato Junshin General Hospital'),
(50982, 42976, 'ja', 'name', 'äø‰éƒ·äø­å¤®ē·åˆē—…é™¢'),
(50983, 42977, 'en', 'name', 'Air Force Institute of Aviation Medicine Affiliated Hospital'),
(50984, 42977, 'zh', 'name', 'čˆŖē©ŗåŒ»å­¦ē ”ē©¶ę‰€é™„å±žåŒ»é™¢'),
(50985, 42978, 'en', 'name', 'Velindre Cancer Centre'),
(50986, 42979, 'en', 'name', 'Semmelweis Museum'),
(50987, 42979, 'hu', 'name', 'Semmelweis Orvostörténeti Múzeum'),
(50988, 42980, 'no_lang_code', 'name', 'Bristol Laboratories (United Kingdom)'),
(50989, 42981, 'en', 'name', 'National Yang Ming University Hospital'),
(50990, 42981, 'zh', 'name', 'å›½ē«‹é˜³ę˜Žå¤§å­¦é™„č®¾åŒ»é™¢'),
(50991, 42982, 'en', 'name', 'Murmansk Regional Clinical Hospital'),
(50992, 42982, 'ru', 'name', 'ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚ŃŒ Š±Š¾Š»ŃŒŠ½ŠøŃ†Šµ P.A.Bayandina'),
(50993, 42983, 'en', 'name', 'Whiteville City Schools'),
(50994, 42984, 'en', 'name', 'Dryden Road Clinic'),
(50995, 42985, 'en', 'name', 'Priory Hospital Chelmsford'),
(50996, 42986, 'en', 'name', 'The Duchy Hospital'),
(50997, 42987, 'en', 'name', 'Ashurst Hospital'),
(50998, 42988, 'en', 'name', 'Avenue Day Hospital'),
(50999, 42989, 'en', 'name', 'Guildford Hospital'),
(51000, 42990, 'en', 'name', 'Beeches Hospital'),
(51001, 42991, 'en', 'name', 'Bickley Day Hospital'),
(51002, 42992, 'en', 'name', 'Bronllys Hospital'),
(51003, 42993, 'en', 'name', 'Assumption Parish Public Library'),
(51004, 42994, 'en', 'name', 'Ilkley Coronation Hospital'),
(51005, 42995, 'en', 'name', 'Jawaharlal Nehru Cancer Hospital and Research Centre'),
(51006, 42996, 'en', 'name', 'Cw Private Hospital'),
(51007, 42997, 'en', 'name', 'Walkergate Park Hospital'),
(51008, 42998, 'en', 'name', 'Children''s Hospital of Oklahoma'),
(51009, 42999, 'en', 'name', 'St Michael’s Hospital'),
(51010, 43000, 'en', 'name', 'Phillips University'),
(51011, 43001, 'en', 'name', 'Chongqing Dazu District People''s Hospital'),
(51012, 43001, 'zh', 'name', 'å¤§č¶³åŒŗäŗŗę°‘åŒ»é™¢'),
(51013, 43002, 'en', 'name', 'National Specialized Hospital for Active Treatment of Hematologic Diseases'),
(51014, 43002, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° специализирана болница за активно лечение на хематологични Š·Š°Š±Š¾Š»ŃŠ²Š°Š½ŠøŃ'),
(51015, 43003, 'en', 'name', 'ARL – Academy for Territorial Development in the Leibniz Association'),
(51016, 43003, 'de', 'name', 'ARL – Akademie für Raumentwicklung in der Leibniz-Gemeinschaft'),
(51017, 43004, 'tr', 'name', 'Bayburt Devlet Hastanesi'),
(51018, 43004, 'en', 'name', 'Bayburt State Hospital'),
(51019, 43005, 'en', 'name', 'Leibniz Institute for Psychology'),
(51020, 43005, 'de', 'name', 'Leibniz-Institut für Psychologie'),
(51021, 43006, 'en', 'name', 'Bharti Hospital'),
(51022, 43007, 'tr', 'name', 'Ƈamlıca Erdem Hastahanesi'),
(51023, 43008, 'en', 'name', 'Firoozgar General Hospital'),
(51024, 43008, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¢Ł…ŁˆŲ²Ų“ŪŒ و ŲÆŲ±Ł…Ų§Ł†ŪŒ فیروزگر'),
(51025, 43009, 'en', 'name', 'First Hospital of Shijiazhuang'),
(51026, 43009, 'zh', 'name', 'ēŸ³å®¶åŗ„åø‚ē¬¬äø€åŒ»é™¢'),
(51027, 43010, 'en', 'name', 'People''s Liberation Army 401 Hospital'),
(51028, 43010, 'zh', 'name', '中国人民解放军第401医院'),
(51029, 43011, 'no_lang_code', 'name', 'Amfissa General Hospital'),
(51030, 43011, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ''Ī‘Ī¼Ļ†Ī¹ĻƒĻƒĪ±Ļ‚'),
(51031, 43012, 'en', 'name', 'Guang Fu Hospital'),
(51032, 43012, 'zh', 'name', 'ęµ™ę±Ÿé‡‘åŽå¹æē¦åŒ»é™¢'),
(51033, 43013, 'en', 'name', 'Colombo North Teaching Hospital'),
(51034, 43014, 'en', 'name', 'Changchun 208 Hospital'),
(51035, 43014, 'zh', 'name', 'å‰ęž—é•æę˜„208医院'),
(51036, 43015, 'en', 'name', 'Gunma Chuo Hospital'),
(51037, 43015, 'ja', 'name', '群馬中央病院'),
(51038, 43016, 'en', 'name', 'Fraunhofer USA Center for Manufacturing Innovation'),
(51039, 43017, 'en', 'name', 'Puer University'),
(51040, 43017, 'zh', 'name', '普擱学院'),
(51041, 43018, 'en', 'name', 'Queen Elizabeth Hospital King''s Lynn NHS Foundation Trust'),
(51042, 43019, 'en', 'name', 'Max Planck Research Unit for Neurogenetics'),
(51043, 43019, 'de', 'name', 'Max-Planck-Forschungsstelle für Neurogenetik'),
(51044, 43020, 'en', 'name', 'Hospital of Hebei Province'),
(51045, 43020, 'zh', 'name', 'ę²³åŒ—ēœäø­åŒ»é™¢'),
(51046, 43021, 'no_lang_code', 'name', 'Kensei Hospital'),
(51047, 43021, 'ja', 'name', 'å„ē”Ÿē—…é™¢'),
(51048, 43022, 'es', 'name', 'Hospital General de Tomelloso'),
(51049, 43023, 'en', 'name', 'Large Vale Hospital'),
(51050, 43023, 'cy', 'name', 'Ysbyty Ystrad Fawr'),
(51051, 43024, 'en', 'name', 'Shenzhen Pingle Orthopedic Hospital'),
(51052, 43024, 'zh', 'name', 'ę·±åœ³å¹³ä¹éŖØä¼¤ē§‘åŒ»é™¢'),
(51053, 43025, 'en', 'name', 'Luoyang Orthopedic-Traumatological Hospital of Henan Province'),
(51054, 43025, 'zh', 'name', 'ę²³å—ēœę“›é˜³ę­£éŖØåŒ»é™¢'),
(51055, 43026, 'es', 'name', 'Universidad Autónoma Monterrey'),
(51056, 43027, 'fr', 'name', 'Centre Hospitalo-Universitaire Dr Benbadis Constantine'),
(51057, 43028, 'es', 'name', 'Universidad de Matamoros'),
(51058, 43029, 'es', 'name', 'Universidad Abierta y a Distancia'),
(51059, 43030, 'no_lang_code', 'name', 'Eboo Pharmaceuticals (United States)'),
(51060, 43031, 'no_lang_code', 'name', 'CisThera (United States)'),
(51061, 43032, 'no_lang_code', 'name', 'Advisory Board Company (United States)'),
(51062, 43033, 'en', 'name', 'Bent Creek Institute'),
(51063, 43034, 'no_lang_code', 'name', 'Empire Genomics (United States)'),
(51064, 43035, 'no_lang_code', 'name', 'Imbio (United States)'),
(51065, 43036, 'no_lang_code', 'name', 'CivaTech Oncology (United States)'),
(51066, 43037, 'no_lang_code', 'name', 'BioChain Institute (United States)'),
(51067, 43038, 'no_lang_code', 'name', '3D Biomatrix (United States)'),
(51068, 43039, 'no_lang_code', 'name', 'CiVentiChem (United States)'),
(51069, 43040, 'no_lang_code', 'name', 'ImmunoChemistry Technologies (United States)'),
(51070, 43041, 'no_lang_code', 'name', 'EntoGenetics (United States)'),
(51071, 43042, 'no_lang_code', 'name', 'ClariTrac (United States)'),
(51072, 43043, 'no_lang_code', 'name', 'Epiphany Biosciences (United States)'),
(51073, 43044, 'no_lang_code', 'name', 'Clearside Biomedical (United States)'),
(51074, 43045, 'no_lang_code', 'name', 'Aadi (United States)'),
(51075, 43046, 'no_lang_code', 'name', 'Clinacuity (United States)'),
(51076, 43047, 'no_lang_code', 'name', 'BioFortis (United States)'),
(51077, 43048, 'no_lang_code', 'name', 'Clinical Sensors (United States)'),
(51078, 43049, 'no_lang_code', 'name', 'BioKier (United States)'),
(51079, 43050, 'no_lang_code', 'name', 'Eppin Pharma (United States)'),
(51080, 43051, 'no_lang_code', 'name', 'bioMASON (United States)'),
(51081, 43052, 'no_lang_code', 'name', 'Exmoor Plastics (United Kingdom)'),
(51082, 43053, 'no_lang_code', 'name', 'Accium Biosciences (United States)'),
(51083, 43054, 'no_lang_code', 'name', 'Extend Biosciences (United States)'),
(51084, 43055, 'no_lang_code', 'name', 'Achelios Therapeutics (United States)'),
(51085, 43056, 'no_lang_code', 'name', 'BioNano Genomics (United States)'),
(51086, 43057, 'no_lang_code', 'name', 'Bionix Development (United States)'),
(51087, 43058, 'no_lang_code', 'name', 'Coare Biotechnology (United States)'),
(51088, 43059, 'no_lang_code', 'name', 'Actinobac Biomed (United States)'),
(51089, 43060, 'no_lang_code', 'name', 'Colby Pharmaceutical (United States)'),
(51090, 43061, 'en', 'name', 'First Flight Venture Center'),
(51091, 43062, 'no_lang_code', 'name', 'Biosettia (United States)'),
(51092, 43063, 'no_lang_code', 'name', 'Flag Therapeutics (United States)'),
(51093, 43064, 'no_lang_code', 'name', 'Integrated Technologies & Services International (United States)'),
(51094, 43065, 'en', 'name', 'Action on Smoking and Health'),
(51095, 43066, 'en', 'name', 'Colorado Cancer Research Program'),
(51096, 43067, 'en', 'name', 'Inter Tribal Council of Arizona'),
(51097, 43068, 'en', 'name', 'InterAmerican Heart Foundation'),
(51098, 43069, 'no_lang_code', 'name', 'AcuityBio (United States)'),
(51099, 43070, 'no_lang_code', 'name', 'Confluence Life Sciences (United States)'),
(51100, 43071, 'no_lang_code', 'name', 'BioTheryX (United States)'),
(51101, 43072, 'no_lang_code', 'name', 'Contego Medical (United States)'),
(51102, 43073, 'no_lang_code', 'name', 'Adheren (United States)'),
(51103, 43074, 'hu', 'name', 'BÔcs-Kiskun Megyei CsillagvizsgÔló Intézet'),
(51104, 43075, 'no_lang_code', 'name', 'BioZyme (United States)'),
(51105, 43076, 'no_lang_code', 'name', 'Gabriel Entertainment (United States)'),
(51106, 43077, 'no_lang_code', 'name', 'Advanced Animal Diagnostics (United States)'),
(51107, 43078, 'no_lang_code', 'name', 'Galaxy Diagnostics (United States)'),
(51108, 43079, 'no_lang_code', 'name', 'Bluegrass Advanced Materials (United States)'),
(51109, 43080, 'no_lang_code', 'name', 'Invivo Sciences (United States)'),
(51110, 43081, 'en', 'name', 'Faringdon Day Hospital'),
(51111, 43082, 'en', 'name', 'Cook Children''s Health Care System'),
(51112, 43083, 'en', 'name', 'Iowa Oncology Research Association'),
(51113, 43084, 'no_lang_code', 'name', 'Mi Corporation (United States)'),
(51114, 43085, 'no_lang_code', 'name', 'IsoTherapeutics Group (United States)'),
(51115, 43086, 'en', 'name', 'Gaston Day School'),
(51116, 43087, 'en', 'name', 'Cancer Research UK Clinical Trials Unit'),
(51117, 43088, 'en', 'name', 'Breast Cancer Over Time'),
(51118, 43089, 'en', 'name', 'Creative Research'),
(51119, 43090, 'no_lang_code', 'name', 'Advanced Immune Therapeutics (United States)'),
(51120, 43091, 'en', 'name', 'Breastscreen Victoria'),
(51121, 43092, 'no_lang_code', 'name', 'GEM Tox Consultants & Labs (United States)'),
(51122, 43093, 'no_lang_code', 'name', 'Creo Medical (United Kingdom)'),
(51123, 43094, 'no_lang_code', 'name', 'Advanced Radiation Therapy (United States)'),
(51124, 43095, 'no_lang_code', 'name', 'Everist Health (United States)'),
(51125, 43096, 'no_lang_code', 'name', 'IVDiagnostics (United States)'),
(51126, 43097, 'no_lang_code', 'name', 'C4 Imaging (United States)'),
(51127, 43098, 'no_lang_code', 'name', 'Genus Oncology (United States)'),
(51128, 43099, 'no_lang_code', 'name', 'Concept Life Sciences (United Kingdom)'),
(51129, 43100, 'no_lang_code', 'name', 'J&J Solutions (United States)'),
(51130, 43101, 'en', 'name', 'Cambridge Memorial Hospital'),
(51131, 43102, 'no_lang_code', 'name', 'CytImmune (United States)'),
(51132, 43103, 'no_lang_code', 'name', 'EG Gilero (United States)'),
(51133, 43104, 'no_lang_code', 'name', 'Aerial BioPharma'),
(51134, 43105, 'en', 'name', 'Canadian Urology Research Consortium'),
(51135, 43106, 'en', 'name', 'Cancer Care Nova Scotia'),
(51136, 43107, 'no_lang_code', 'name', 'Gravity Bio (United States)'),
(51137, 43108, 'no_lang_code', 'name', 'Kaio Therapy (United States)'),
(51138, 43109, 'en', 'name', 'David H. Murdock Research Institute'),
(51139, 43110, 'en', 'name', 'Sault Area Hospital'),
(51140, 43111, 'en', 'name', 'Winston-Salem Chamber of Commerce'),
(51141, 43112, 'en', 'name', 'Dayton Clinical Oncology Program'),
(51142, 43113, 'no_lang_code', 'name', 'Almen Laboratories (United States)'),
(51143, 43114, 'no_lang_code', 'name', 'Kentucky imaging Technologies (United States)'),
(51144, 43115, 'no_lang_code', 'name', 'American BioOptics (United States)'),
(51145, 43116, 'no_lang_code', 'name', 'KindHeart (United States)'),
(51146, 43117, 'no_lang_code', 'name', 'Cascade Thermal Solutions (United States)'),
(51147, 43118, 'en', 'name', 'American Physician Scientists Association'),
(51148, 43119, 'no_lang_code', 'name', 'High Precision Devices (United States)'),
(51149, 43120, 'en', 'name', 'American Society For Nanomedicine'),
(51150, 43121, 'no_lang_code', 'name', 'Diagnologix (United States)'),
(51151, 43122, 'no_lang_code', 'name', 'Celula (United States)'),
(51152, 43123, 'no_lang_code', 'name', 'Cempra Pharmaceuticals (United States)'),
(51153, 43124, 'no_lang_code', 'name', 'Lexitek (United States)'),
(51154, 43125, 'no_lang_code', 'name', 'Liquidia Technologies (United States)'),
(51155, 43126, 'no_lang_code', 'name', 'Optimisa Research (United Kingdom)'),
(51156, 43127, 'en', 'name', 'Dr. H. Bliss Murphy Cancer Centre'),
(51157, 43128, 'no_lang_code', 'name', 'Lucerno Dynamics (United States)'),
(51158, 43129, 'no_lang_code', 'name', 'Fluidigm (Canada)'),
(51159, 43130, 'no_lang_code', 'name', 'Apoplogic Pharmaceuticals (United States)'),
(51160, 43131, 'en', 'name', 'Eastern North American Region International Biometric Society'),
(51161, 43132, 'en', 'name', 'Comprehensive Oncological Center – Veliko Turnovo'),
(51162, 43132, 'bg', 'name', 'Комплексен онкологичен Ń†ŠµŠ½Ń‚ŃŠŃ€ – Велико Š¢ŃŠŃ€Š½Š¾Š²Š¾'),
(51163, 43133, 'no_lang_code', 'name', 'LumaMed (United States)'),
(51164, 43134, 'no_lang_code', 'name', 'Oakwood Laboratories (United States)'),
(51165, 43135, 'en', 'name', 'National Hospital Organization Kyushu Cancer Center'),
(51166, 43135, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ä¹å·žćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(51167, 43136, 'no_lang_code', 'name', 'Cernostics (United States)'),
(51168, 43137, 'en', 'name', 'National Lymphedema Network'),
(51169, 43138, 'no_lang_code', 'name', 'CertiRx (United States)'),
(51170, 43139, 'en', 'name', 'Battle Creek Public Schools'),
(51171, 43140, 'no_lang_code', 'name', 'OCT Medical Imaging (United States)'),
(51172, 43141, 'no_lang_code', 'name', 'ArcticDx (Canada)'),
(51173, 43142, 'en', 'name', 'North Carolina Biosciences Organization'),
(51174, 43143, 'en', 'name', 'Provata Health'),
(51175, 43144, 'en', 'name', 'Marine Bio-Technologies Center of Innovation'),
(51176, 43145, 'it', 'name', 'Istituto Ramazzini'),
(51177, 43146, 'no_lang_code', 'name', 'Ardent Sound (United States)'),
(51178, 43147, 'en', 'name', 'NCEast Alliance'),
(51179, 43148, 'no_lang_code', 'name', 'Ohmx (United States)'),
(51180, 43149, 'no_lang_code', 'name', 'NĒRx BioSciences (United States)'),
(51181, 43150, 'no_lang_code', 'name', 'Chiesi (United States)'),
(51182, 43151, 'en', 'name', 'Research Institute in Oncology and Hematology'),
(51183, 43152, 'en', 'name', 'Asbestos Diseases Research Institute'),
(51184, 43153, 'no_lang_code', 'name', 'Onconome (United States)'),
(51185, 43154, 'no_lang_code', 'name', 'Spectra Science (United States)'),
(51186, 43155, 'en', 'name', 'Chordoma Foundation'),
(51187, 43156, 'no_lang_code', 'name', 'OncoTab (United States)'),
(51188, 43157, 'en', 'name', 'Nevus Outreach'),
(51189, 43158, 'en', 'name', 'Association of Clinical Research Professionals'),
(51190, 43159, 'no_lang_code', 'name', 'New Horizons Diagnostics (United States)'),
(51191, 43160, 'fr', 'name', 'Alliance pour le PrƩvention des maladies Chroniques au Canada'),
(51192, 43160, 'en', 'name', 'Chronic Disease Prevention Alliance of Canada'),
(51193, 43161, 'no_lang_code', 'name', 'Chrono Therapeutics (United States)'),
(51194, 43162, 'en', 'name', 'Opinion Leader Research'),
(51195, 43163, 'no_lang_code', 'name', 'Quanterix (United States)'),
(51196, 43164, 'en', 'name', 'Central Manchester Clinical Commissioning Group'),
(51197, 43165, 'no_lang_code', 'name', 'Medgene Labs (United States)'),
(51198, 43166, 'en', 'name', 'Avery County Schools'),
(51199, 43167, 'no_lang_code', 'name', 'QuantuMDx (United Kingdom)'),
(51200, 43168, 'en', 'name', 'Cancer Research UK Oxford Centre'),
(51201, 43169, 'no_lang_code', 'name', 'Nirvana Sciences (United States)'),
(51202, 43170, 'no_lang_code', 'name', 'Nonagen Bioscience (United States)'),
(51203, 43171, 'no_lang_code', 'name', 'Huntsworth Health (United States)'),
(51204, 43172, 'en', 'name', 'North Carolina Association for Biomedical Research'),
(51205, 43173, 'en', 'name', 'Oxford Centre for Diabetes, Endocrinology and Metabolism'),
(51206, 43174, 'no_lang_code', 'name', 'Radar (United States)'),
(51207, 43175, 'en', 'name', 'North Carolina Center of Innovation Network'),
(51208, 43176, 'en', 'name', 'Cancer Research for the Ozarks'),
(51209, 43177, 'no_lang_code', 'name', 'Medical Cyberworlds (United States)'),
(51210, 43178, 'no_lang_code', 'name', 'ReacTech (United States)'),
(51211, 43179, 'no_lang_code', 'name', 'Medical Device Innovations (United Kingdom)'),
(51212, 43180, 'no_lang_code', 'name', 'Medomics (United States)'),
(51213, 43181, 'no_lang_code', 'name', 'Research Triangle Environmental Health Collaborative (United States)'),
(51214, 43182, 'no_lang_code', 'name', 'Banner Life Sciences (United States)'),
(51215, 43183, 'no_lang_code', 'name', 'BaseTrace (United States)'),
(51216, 43184, 'en', 'name', 'Pharmatech (United States)'),
(51217, 43185, 'no_lang_code', 'name', 'Benson Hill Biosystems (United States)'),
(51218, 43186, 'no_lang_code', 'name', 'RG Biopharma (United States)'),
(51219, 43187, 'no_lang_code', 'name', 'Rheomics (United States)'),
(51220, 43188, 'no_lang_code', 'name', 'Photolitec (United States)'),
(51221, 43189, 'en', 'name', 'Northern Ireland Hospice'),
(51222, 43190, 'no_lang_code', 'name', 'Ringful Health (United States)'),
(51223, 43191, 'no_lang_code', 'name', 'MicroDysis (United States)'),
(51224, 43192, 'no_lang_code', 'name', 'Phusis Therapeutics (United States)'),
(51225, 43193, 'no_lang_code', 'name', 'Physcient (United States)'),
(51226, 43194, 'no_lang_code', 'name', 'Rogers Sciences (United States)'),
(51227, 43195, 'no_lang_code', 'name', 'NovaRx (United States)'),
(51228, 43196, 'no_lang_code', 'name', 'Russell Biotech (United States)'),
(51229, 43197, 'en', 'name', 'Southeast Clinical Oncology Research Consortium'),
(51230, 43198, 'en', 'name', 'Loyola Medicine'),
(51231, 43199, 'no_lang_code', 'name', 'SafeRay Spine (United States)'),
(51232, 43200, 'no_lang_code', 'name', 'Cellectar Biosciences (United States)'),
(51233, 43201, 'en', 'name', 'Missouri Valley Cancer Consortium'),
(51234, 43202, 'no_lang_code', 'name', 'Sage Science (United States)'),
(51235, 43203, 'no_lang_code', 'name', 'Novocor Medical Systems (United States)'),
(51236, 43204, 'no_lang_code', 'name', 'Specific Technologies (United States)'),
(51237, 43205, 'no_lang_code', 'name', 'NuVue Therapeutics (United States)'),
(51238, 43206, 'en', 'name', 'Pitt County Development Commission'),
(51239, 43207, 'no_lang_code', 'name', 'Salgomed (United States)'),
(51240, 43208, 'no_lang_code', 'name', 'Nvigen (United States)'),
(51241, 43209, 'no_lang_code', 'name', 'SphingoGene (United States)'),
(51242, 43210, 'en', 'name', 'Rowan Works Economic Development'),
(51243, 43211, 'no_lang_code', 'name', 'Spyryx Biosciences (United States)'),
(51244, 43212, 'no_lang_code', 'name', 'Presage Biosciences (United States)'),
(51245, 43213, 'no_lang_code', 'name', 'Privacy Analytics (Canada)'),
(51246, 43214, 'en', 'name', 'San Francisco Fire Department'),
(51247, 43215, 'no_lang_code', 'name', 'Standard Imaging (United States)'),
(51248, 43216, 'en', 'name', 'Health PEI'),
(51249, 43217, 'en', 'name', 'Santa Rosa Memorial Hospital'),
(51250, 43218, 'no_lang_code', 'name', 'ProKyma Technologies (United Kingdom)'),
(51251, 43219, 'no_lang_code', 'name', 'Protec Laboratories (United States)'),
(51252, 43220, 'no_lang_code', 'name', 'CritiTech (United States)'),
(51253, 43221, 'no_lang_code', 'name', 'Transtria (United States)'),
(51254, 43222, 'no_lang_code', 'name', 'Quadriga Biosciences (United States)'),
(51255, 43223, 'en', 'name', 'Montana Cancer Consortium'),
(51256, 43224, 'no_lang_code', 'name', 'SciKon Innovation (United States)'),
(51257, 43225, 'no_lang_code', 'name', 'Shure Foods (United States)'),
(51258, 43226, 'no_lang_code', 'name', 'Signosis (United States)'),
(51259, 43227, 'no_lang_code', 'name', 'SilaGene (United States)'),
(51260, 43228, 'no_lang_code', 'name', 'Motility (United States)'),
(51261, 43229, 'no_lang_code', 'name', 'T3D Therapeutics (United States)'),
(51262, 43230, 'no_lang_code', 'name', 'SimulTel (United States)'),
(51263, 43231, 'en', 'name', 'Singing River Health System'),
(51264, 43232, 'no_lang_code', 'name', 'SixOne Solutions (United States)'),
(51265, 43233, 'no_lang_code', 'name', 'Tartis (United States)'),
(51266, 43234, 'en', 'name', 'Vancouver Native Health Society'),
(51267, 43235, 'no_lang_code', 'name', 'Aratana Therapeutics (United States)'),
(51268, 43236, 'en', 'name', 'Technology Partnership of Nagoya University'),
(51269, 43237, 'no_lang_code', 'name', 'Solers (United States)'),
(51270, 43238, 'no_lang_code', 'name', 'MRI Robotics (United States)'),
(51271, 43239, 'tr', 'name', 'Korgan Devlet Hastanesi'),
(51272, 43240, 'no_lang_code', 'name', 'BioTelemetry (United States)'),
(51273, 43241, 'no_lang_code', 'name', 'XLV Diagnostics (Canada)'),
(51274, 43242, 'en', 'name', 'Yukon Health and Social Services'),
(51275, 43243, 'no_lang_code', 'name', 'Visiscience (United States)'),
(51276, 43244, 'no_lang_code', 'name', 'Cloud Pharmaceuticals (United States)'),
(51277, 43245, 'en', 'name', 'Women Of Color Salon'),
(51278, 43246, 'no_lang_code', 'name', 'Umlaut Software (United States)'),
(51279, 43247, 'no_lang_code', 'name', 'Imam Reza Hospital'),
(51280, 43248, 'no_lang_code', 'name', 'Vital Access (United States)'),
(51281, 43249, 'en', 'name', 'Woodlawn School'),
(51282, 43250, 'en', 'name', 'Marie Curie Palliative Care Institute Liverpool'),
(51283, 43251, 'no_lang_code', 'name', 'Multivariate Software (United States)'),
(51284, 43252, 'no_lang_code', 'name', 'Vivonoetics (United States)'),
(51285, 43253, 'no_lang_code', 'name', 'Muzzy Lane Software (United States)'),
(51286, 43254, 'no_lang_code', 'name', 'Xcision Medical Systems (United States)'),
(51287, 43255, 'no_lang_code', 'name', 'Thermal Gradient (United States)'),
(51288, 43256, 'no_lang_code', 'name', 'Xfibra (United States)'),
(51289, 43257, 'no_lang_code', 'name', 'NanoCytomics (United States)');
INSERT INTO `ror_settings` VALUES
(51290, 43258, 'en', 'name', 'Watauga County Office of Economic Development'),
(51291, 43259, 'no_lang_code', 'name', 'NanoMedica (United States)'),
(51292, 43260, 'no_lang_code', 'name', 'Oxonica (United States)'),
(51293, 43261, 'no_lang_code', 'name', 'Wellspring Biosciences (United States)'),
(51294, 43262, 'es', 'name', 'Universidad Braulio Carrillo'),
(51295, 43263, 'en', 'name', 'International Christian University'),
(51296, 43263, 'es', 'name', 'Universidad Cristiana Internacional'),
(51297, 43264, 'en', 'name', 'Aga Khan University Nairobi'),
(51298, 43265, 'no_lang_code', 'name', 'Wilex (Germany)'),
(51299, 43266, 'en', 'name', 'Willow Breast and Hereditary Cancer Support'),
(51300, 43267, 'pl', 'name', 'Samodzielny Publiczny Wojewódzki Szpital Zespolony im. Marii Skłodowskiej – Curie'),
(51301, 43268, 'es', 'name', 'Universidad MotolinĆ­a del Pedregal'),
(51302, 43269, 'fr', 'name', 'UniversitƩ Jean Price Mars'),
(51303, 43270, 'es', 'name', 'Universidad EspaƱol'),
(51304, 43271, 'es', 'name', 'Universidad del PacĆ­fico de Chiapas'),
(51305, 43272, 'es', 'name', 'Universidad Particular de Iquitos'),
(51306, 43273, 'es', 'name', 'Centro Cultural Universitario de Ciudad Juarez'),
(51307, 43274, 'es', 'name', 'Universidad Angelópolis'),
(51308, 43275, 'en', 'name', 'Bethany University'),
(51309, 43276, 'es', 'name', 'Centro Universitario de Educación Física'),
(51310, 43277, 'en', 'name', 'African University of Technology and Management'),
(51311, 43277, 'fr', 'name', 'UniversitƩ Africaine de Technologie et de Management'),
(51312, 43278, 'es', 'name', 'Universidad Bancaria de MƩxico'),
(51313, 43279, 'es', 'name', 'Universidad del Sol'),
(51314, 43280, 'es', 'name', 'Universidad Privada del Estado de Morelos'),
(51315, 43281, 'en', 'name', 'DMC University Laboratories'),
(51316, 43282, 'id', 'name', 'Universitas Indonesia Timur'),
(51317, 43283, 'en', 'name', 'Arab Open University'),
(51318, 43283, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(51319, 43284, 'rw', 'name', 'Universite Laique Adventiste de Kigali'),
(51320, 43284, 'en', 'name', 'University of Lay Adventists of Kigali'),
(51321, 43285, 'id', 'name', 'Universitas Nahdlatul Wathan Mataram'),
(51322, 43286, 'id', 'name', 'Universitas Amir Hamzah'),
(51323, 43287, 'no_lang_code', 'name', 'Agile EndoSurgery (United States)'),
(51324, 43288, 'no_lang_code', 'name', 'Cim Systems (United States)'),
(51325, 43289, 'no_lang_code', 'name', 'Eles (Slovenia)'),
(51326, 43290, 'no_lang_code', 'name', 'HeidelbergCement (Germany)'),
(51327, 43291, 'no_lang_code', 'name', 'Atlas Scientific (United States)'),
(51328, 43292, 'no_lang_code', 'name', 'Engineered Coatings (United States)'),
(51329, 43293, 'no_lang_code', 'name', 'Atmospheric Plasma Solutions (United States)'),
(51330, 43294, 'no_lang_code', 'name', 'Envergex (United States)'),
(51331, 43295, 'no_lang_code', 'name', 'Integrated Oncology (United States)'),
(51332, 43296, 'no_lang_code', 'name', 'Advanced Composite Products (United States)'),
(51333, 43297, 'no_lang_code', 'name', 'QT Ultrasound (United States)'),
(51334, 43298, 'no_lang_code', 'name', 'EpiCypher (United States)'),
(51335, 43299, 'en', 'name', 'Consortium of European Research Libraries'),
(51336, 43300, 'no_lang_code', 'name', 'Arizona Cancer Therapeutics (United States)'),
(51337, 43301, 'en', 'name', 'European Crowdfunding Network'),
(51338, 43302, 'no_lang_code', 'name', 'Myocardial Solutions (United States)'),
(51339, 43303, 'en', 'name', 'Durham Technical Community College'),
(51340, 43304, 'no_lang_code', 'name', 'Advanced Materials Corporation (United States)'),
(51341, 43305, 'en', 'name', 'European Regions Research and Innovation Network'),
(51342, 43306, 'no_lang_code', 'name', 'i2C Solutions (United States)'),
(51343, 43307, 'no_lang_code', 'name', 'Faradion (United Kingdom)'),
(51344, 43308, 'en', 'name', 'Marie Curie Hospice'),
(51345, 43309, 'no_lang_code', 'name', 'Fastman (United States)'),
(51346, 43310, 'no_lang_code', 'name', 'Agile RF (United States)'),
(51347, 43311, 'no_lang_code', 'name', 'CryptoExperts (France)'),
(51348, 43312, 'no_lang_code', 'name', 'Mind Matters Research (United States)'),
(51349, 43313, 'en', 'name', 'IEEE France section'),
(51350, 43314, 'en', 'name', 'Mobile Infirmary'),
(51351, 43315, 'en', 'name', 'Catalan Government Railways'),
(51352, 43315, 'no_lang_code', 'name', 'Ferrocarrils de la Generalitat de Catalunya (Spain)'),
(51353, 43316, 'no_lang_code', 'name', 'Fincons Group (Italy)'),
(51354, 43317, 'no_lang_code', 'name', 'Datapixel (Spain)'),
(51355, 43318, 'no_lang_code', 'name', 'Aero Corporation (United States)'),
(51356, 43319, 'no_lang_code', 'name', 'Fon (United Kingdom)'),
(51357, 43320, 'no_lang_code', 'name', 'Infraestruturas de Portugal (Portugal)'),
(51358, 43321, 'no_lang_code', 'name', 'Brainlike (United States)'),
(51359, 43322, 'no_lang_code', 'name', 'Synthomics (United States)'),
(51360, 43323, 'no_lang_code', 'name', 'Brembo (Italy)'),
(51361, 43324, 'no_lang_code', 'name', 'Applied Research in Acoustics (United States)'),
(51362, 43325, 'no_lang_code', 'name', 'Insero E-Mobility (Denmark)'),
(51363, 43326, 'no_lang_code', 'name', 'Archarithms (United States)'),
(51364, 43327, 'es', 'name', 'Fundacion Instituto de Investigacion Innaxis'),
(51365, 43327, 'en', 'name', 'Innaxis Foundation & Research Institute'),
(51366, 43328, 'da', 'name', 'Aarhus Kommune'),
(51367, 43328, 'en', 'name', 'Aarhus Municipality'),
(51368, 43329, 'no_lang_code', 'name', 'Arizona Optical Systems (United States)'),
(51369, 43330, 'no_lang_code', 'name', 'DfR Solutions (United States)'),
(51370, 43331, 'no_lang_code', 'name', 'Gaertner (United States)'),
(51371, 43332, 'no_lang_code', 'name', 'Arquimea (Spain)'),
(51372, 43333, 'no_lang_code', 'name', 'Aspire Solutions (United States)'),
(51373, 43334, 'no_lang_code', 'name', 'Distributed Infinity (United States)'),
(51374, 43335, 'en', 'name', 'Institute of Clinical Research'),
(51375, 43336, 'no_lang_code', 'name', 'Gavin and Doherty Geosolutions (Ireland)'),
(51376, 43337, 'no_lang_code', 'name', 'Panacea Solution (United States)'),
(51377, 43338, 'no_lang_code', 'name', 'General Electric (Switzerland)'),
(51378, 43339, 'en', 'name', 'Padres Contra El CƔncer'),
(51379, 43340, 'no_lang_code', 'name', 'Draxis Environmental Technologies (Greece)'),
(51380, 43340, 'el', 'name', 'Ī”Ī”Ī‘ĪžĪ™Ī£ Ī¤Ī•Ī§ĪĪŸĪ›ĪŸĪ“Ī™Ī•Ī£ Ī Ī•Ī”Ī™Ī’Ī‘Ī›Ī›ĪŸĪĪ¤ĪŸĪ£'),
(51381, 43341, 'no_lang_code', 'name', 'Cemex (Switzerland)'),
(51382, 43342, 'no_lang_code', 'name', 'ATG Europe (Netherlands)'),
(51383, 43343, 'no_lang_code', 'name', 'e-Therapeutics (United Kingdom)'),
(51384, 43344, 'no_lang_code', 'name', 'ProTechSure Scientific (United States)'),
(51385, 43345, 'no_lang_code', 'name', 'Intelligent Software Solutions (United States)'),
(51386, 43346, 'no_lang_code', 'name', 'Intelligent Fusion Technology (United States)'),
(51387, 43347, 'no_lang_code', 'name', 'Eden Park Illumination (United States)'),
(51388, 43348, 'de', 'name', 'Internationales Institut für Wald und Holz'),
(51389, 43349, 'en', 'name', 'Edisto Island Historic Preservation Society'),
(51390, 43350, 'en', 'name', 'Centre for Regional and International STI Studies and Support'),
(51391, 43351, 'no_lang_code', 'name', 'Eijkelkamp SonicSampDrill (Netherlands)'),
(51392, 43352, 'no_lang_code', 'name', 'Great Lakes Sound and Vibration (United States)'),
(51393, 43353, 'no_lang_code', 'name', 'Element Six (United States)'),
(51394, 43354, 'no_lang_code', 'name', 'Scio Diamond Technology Corporation (United States)'),
(51395, 43355, 'no_lang_code', 'name', 'Liquifer Systems Group (Austria)'),
(51396, 43356, 'no_lang_code', 'name', 'Moai Technologies (United States)'),
(51397, 43357, 'no_lang_code', 'name', 'Proprs (United Kingdom)'),
(51398, 43358, 'no_lang_code', 'name', 'Prozomix (United Kingdom)'),
(51399, 43359, 'en', 'name', 'Montana Department of Environmental Quality'),
(51400, 43360, 'no_lang_code', 'name', 'Przedsiębiorstwo Robót Elewacyjnych (Poland)'),
(51401, 43361, 'no_lang_code', 'name', 'Kestrel Technology (United States)'),
(51402, 43362, 'en', 'name', 'Montgomery Museum & Lewis Miller Regional Art Center'),
(51403, 43363, 'de', 'name', 'Open Knowledge Foundation Deutschland'),
(51404, 43364, 'no_lang_code', 'name', 'Kuehne + Nagel (Greece)'),
(51405, 43365, 'no_lang_code', 'name', 'Accenture (Luxembourg)'),
(51406, 43366, 'no_lang_code', 'name', 'RadiaSoft (United States)'),
(51407, 43367, 'no_lang_code', 'name', 'Radiation Detection Technologies (United States)'),
(51408, 43368, 'no_lang_code', 'name', 'Optosignal (United Kingdom)'),
(51409, 43369, 'it', 'name', 'Ospedale di Spoleto'),
(51410, 43370, 'no_lang_code', 'name', 'Ottobock (Austria)'),
(51411, 43371, 'no_lang_code', 'name', 'Seascape Consultants (United Kingdom)'),
(51412, 43372, 'en', 'name', 'Pohang SeMyeong Christianity Hospital'),
(51413, 43373, 'en', 'name', 'Museum of African American History'),
(51414, 43374, 'no_lang_code', 'name', 'Quorn (United Kingdom)'),
(51415, 43375, 'en', 'name', 'Marquette Regional History Center'),
(51416, 43376, 'no_lang_code', 'name', 'Mars Space (United Kingdom)'),
(51417, 43377, 'no_lang_code', 'name', 'Percuros (Netherlands)'),
(51418, 43378, 'en', 'name', 'Research in Advanced Medical Informatics and Telematics'),
(51419, 43379, 'en', 'name', 'Mayor''s Office for Policing and Crime'),
(51420, 43380, 'no_lang_code', 'name', 'Media Deals (France)'),
(51421, 43381, 'id', 'name', 'Universitas Teknologi Nusantara'),
(51422, 43382, 'no_lang_code', 'name', 'SimPlan (Germany)'),
(51423, 43383, 'id', 'name', 'Universitas Sutomo'),
(51424, 43384, 'no_lang_code', 'name', 'Metrarc (United Kingdom)'),
(51425, 43385, 'es', 'name', 'Hospital General Universitari de Castelló'),
(51426, 43386, 'no_lang_code', 'name', 'Smart Component Technologies (United Kingdom)'),
(51427, 43387, 'no_lang_code', 'name', 'Sciaky (United States)'),
(51428, 43388, 'en', 'name', 'Police and Crime Commissioner for West Yorkshire'),
(51429, 43389, 'no_lang_code', 'name', 'SolMateS (Netherlands)'),
(51430, 43390, 'no_lang_code', 'name', 'Sandia Research (United States)'),
(51431, 43391, 'no_lang_code', 'name', 'Prodevelop (Spain)'),
(51432, 43392, 'no_lang_code', 'name', 'TeraSys Technologies (United States)'),
(51433, 43393, 'no_lang_code', 'name', 'Spectral Labs (United States)'),
(51434, 43394, 'no_lang_code', 'name', 'N.Bazigos (Greece)'),
(51435, 43395, 'no_lang_code', 'name', 'Texas High Energy Materials (United States)'),
(51436, 43396, 'no_lang_code', 'name', 'Sydor Technologies (United States)'),
(51437, 43397, 'no_lang_code', 'name', 'Nanocomp Technologies (United States)'),
(51438, 43398, 'no_lang_code', 'name', 'nanoPrecision Products (United States)'),
(51439, 43399, 'en', 'name', 'United Nations Institute for Training and Research'),
(51440, 43400, 'en', 'name', 'Netherlands Maritime Technology'),
(51441, 43401, 'no_lang_code', 'name', 'NanoSynTex (United States)'),
(51442, 43402, 'en', 'name', 'Brussels Office of Helmholtz Association'),
(51443, 43403, 'no_lang_code', 'name', 'Irida Labs (Greece)'),
(51444, 43404, 'no_lang_code', 'name', 'Subsurface Insights (United States)'),
(51445, 43405, 'no_lang_code', 'name', 'Tecnic (Italy)'),
(51446, 43406, 'en', 'name', 'Black Archives of Mid-America'),
(51447, 43407, 'no_lang_code', 'name', 'Unparallel Innovation (Portugal)'),
(51448, 43408, 'no_lang_code', 'name', 'Tech4Imaging (United States)'),
(51449, 43409, 'en', 'name', 'Vienna Centre for Societal Security'),
(51450, 43409, 'de', 'name', 'Wiener Zentrum für sozialwissenschaftliche Sicherheitsforschung'),
(51451, 43410, 'no_lang_code', 'name', 'Virtual Power Solutions (Portugal)'),
(51452, 43411, 'no_lang_code', 'name', 'WFS Technologies (United Kingdom)'),
(51453, 43412, 'en', 'name', 'Vishwamitra Research Institute'),
(51454, 43413, 'no_lang_code', 'name', 'WHYY (United States)'),
(51455, 43414, 'en', 'name', 'Wichita-Sedgwick County Historical Museum'),
(51456, 43415, 'no_lang_code', 'name', 'Technical Solutions (United States)'),
(51457, 43416, 'no_lang_code', 'name', 'Xdot Engineering and Analysis (United States)'),
(51458, 43417, 'en', 'name', 'University of Battambang'),
(51459, 43418, 'en', 'name', 'Chea Sim University of Kamchaymear'),
(51460, 43419, 'id', 'name', 'Universitas Pekalongan'),
(51461, 43420, 'id', 'name', 'Universitas Panca Marga'),
(51462, 43421, 'es', 'name', 'Centro Universitario Didaskalos'),
(51463, 43422, 'id', 'name', 'Universitas Victory Sorong'),
(51464, 43423, 'id', 'name', 'Universitas Merdeka Surabaya'),
(51465, 43424, 'id', 'name', 'Universitas Tabanan'),
(51466, 43425, 'en', 'name', 'National University'),
(51467, 43425, 'ar', 'name', 'الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(51468, 43426, 'en', 'name', 'Katanga Methodist University'),
(51469, 43426, 'fr', 'name', 'UniversitƩ MƩthodiste au Katanga'),
(51470, 43427, 'id', 'name', 'Universitas Gajah Putih'),
(51471, 43428, 'en', 'name', 'American Society of Naval Engineers'),
(51472, 43429, 'en', 'name', 'Association of Clinical Pathologists'),
(51473, 43430, 'en', 'name', 'American Association of Critical-Care Nurses'),
(51474, 43431, 'en', 'name', 'Canadian Astronomical Society'),
(51475, 43431, 'fr', 'name', 'SociĆ©tĆ© Canadienne d’Astronomie'),
(51476, 43432, 'en', 'name', 'British Society of Periodontology'),
(51477, 43433, 'fr', 'name', 'Association du Barreau Canadien'),
(51478, 43433, 'en', 'name', 'Canadian Bar Association'),
(51479, 43434, 'en', 'name', 'British Toxicology Society'),
(51480, 43435, 'en', 'name', 'RP Fighting Blindness'),
(51481, 43436, 'en', 'name', 'British Society for Oral and Dental Research'),
(51482, 43437, 'en', 'name', 'Tuberous Sclerosis Association'),
(51483, 43438, 'en', 'name', 'Economic History Society'),
(51484, 43439, 'en', 'name', 'British Society for Antimicrobial Chemotherapy'),
(51485, 43440, 'en', 'name', 'British Association for Japanese Studies'),
(51486, 43441, 'en', 'name', 'Humane Slaughter Association'),
(51487, 43442, 'pt', 'name', 'Sociedade Brasileira de Ortopedia e Traumatologia'),
(51488, 43443, 'en', 'name', 'Chartered Institute of Library and Information Professionals'),
(51489, 43444, 'en', 'name', 'British Blood Transfusion Society'),
(51490, 43445, 'en', 'name', 'Institute of Materials, Minerals and Mining'),
(51491, 43446, 'en', 'name', 'Healthcare Infection Society'),
(51492, 43447, 'en', 'name', 'Association of Surgeons of Great Britain and Ireland'),
(51493, 43448, 'en', 'name', 'Cardiac Society of Australia and New Zealand'),
(51494, 43449, 'en', 'name', 'BCS — The Chartered Institute for IT'),
(51495, 43450, 'en', 'name', 'Australian Orthopaedic Association'),
(51496, 43451, 'en', 'name', 'Obstetric Anaesthetists'' Association'),
(51497, 43452, 'en', 'name', 'British Educational Research Association'),
(51498, 43453, 'en', 'name', 'Chest Heart and Stroke Scotland'),
(51499, 43454, 'en', 'name', 'Egyptian College of Critical Care Physicians'),
(51500, 43455, 'en', 'name', 'British Association for Cancer Research'),
(51501, 43456, 'en', 'name', 'Egyptian German Society of Zoology'),
(51502, 43457, 'en', 'name', 'Royal Australian Chemical Institute'),
(51503, 43458, 'es', 'name', 'Universidad Pedagógica de Durango'),
(51504, 43459, 'en', 'name', 'Association for Clinical Biochemistry and Laboratory Medicine'),
(51505, 43460, 'en', 'name', 'British Nuclear Medicine Society'),
(51506, 43461, 'de', 'name', 'BUND Naturschutz'),
(51507, 43462, 'en', 'name', 'Society for Endocrinology, Metabolism and Diabetes of South Africa'),
(51508, 43463, 'en', 'name', 'Egyptian Society of Radiology and Nuclear Medicine'),
(51509, 43464, 'en', 'name', 'Prehistoric Society'),
(51510, 43465, 'en', 'name', 'Mitutoyo Association for Science and Technology'),
(51511, 43465, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ äø‰č±Šē§‘å­¦ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(51512, 43466, 'en', 'name', 'South African Association of Women Graduates'),
(51513, 43467, 'en', 'name', 'Australian Society of Anaesthetists'),
(51514, 43468, 'en', 'name', 'Saudi Chemical Society'),
(51515, 43468, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„ŁƒŁŠŁ…ŁŠŲ§Ų¦ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ©'),
(51516, 43469, 'en', 'name', 'Egyptian Society of Chest Diseases and Tuberculosis'),
(51517, 43470, 'en', 'name', 'British Association for Slavonic and East European Studies'),
(51518, 43471, 'en', 'name', 'Southern Africa Association for the Advancement of Science'),
(51519, 43472, 'en', 'name', 'Association of universities in the Netherlands'),
(51520, 43472, 'nl', 'name', 'Vereniging van Samenwerkende Nederlandse Universiteiten'),
(51521, 43473, 'en', 'name', 'British Psychological Society'),
(51522, 43474, 'en', 'name', 'Japanese Circulation Society'),
(51523, 43474, 'ja', 'name', 'ę—„ęœ¬å¾Ŗē’°å™Øå­¦ä¼š'),
(51524, 43475, 'en', 'name', 'Society for Experimental Biology'),
(51525, 43476, 'en', 'name', 'Canadian Association of Thoracic Surgeons'),
(51526, 43477, 'en', 'name', 'British Society for Middle Eastern Studies'),
(51527, 43478, 'en', 'name', 'New Zealand Educational Administration and Leadership Society'),
(51528, 43479, 'en', 'name', 'British Society for Plant Pathology'),
(51529, 43480, 'en', 'name', 'Accounting and Finance Association of Australia and New Zealand'),
(51530, 43481, 'en', 'name', 'Japanese Physical Therapy Association'),
(51531, 43481, 'ja', 'name', 'ę—„ęœ¬ē†å­¦ē™‚ę³•å£«å”ä¼š'),
(51532, 43482, 'en', 'name', 'Society for the Promotion of Roman Studies'),
(51533, 43483, 'en', 'name', 'Japanese Society of Nephrology'),
(51534, 43483, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗ ę—„ęœ¬č…Žč‡“å­¦ä¼š'),
(51535, 43484, 'de', 'name', 'Fƶrdergemeinschaft Deutsche Kinderherzzentren'),
(51536, 43485, 'sv', 'name', 'Gƶteborgs TandlƤkare SƤllskap'),
(51537, 43486, 'en', 'name', 'Society for Theatre Research'),
(51538, 43487, 'en', 'name', 'Engineering Advancement Association of Japan'),
(51539, 43487, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°å”ä¼š'),
(51540, 43488, 'sv', 'name', 'Sveriges TandlƤkarfƶrbund'),
(51541, 43488, 'en', 'name', 'Swedish Dental Association'),
(51542, 43489, 'en', 'name', 'New Zealand Plant Protection Society'),
(51543, 43490, 'de', 'name', 'Forschungsvereinigung Verbrennungskraftmaschinen'),
(51544, 43490, 'en', 'name', 'Research Association for Combustion Engines'),
(51545, 43491, 'de', 'name', 'Christian Doppler Forschungsgesellschaft'),
(51546, 43491, 'en', 'name', 'Christian Doppler Research Association'),
(51547, 43492, 'en', 'name', 'Royal Dublin Society'),
(51548, 43493, 'en', 'name', 'World Veterinary Poultry Association'),
(51549, 43494, 'fi', 'name', 'Lounais-Suomen SyƶpƤyhdistys'),
(51550, 43495, 'en', 'name', 'Institute of Biomedical Science'),
(51551, 43496, 'fr', 'name', 'SociĆ©tĆ© FranƧaise d''Exportation des Ressources Ɖducatives'),
(51552, 43497, 'en', 'name', 'Association of Anaesthetists of Great Britain and Ireland'),
(51553, 43498, 'de', 'name', 'Deutsche Ophthalmologische Gesellschaft'),
(51554, 43499, 'en', 'name', 'Japanese Association of University Women'),
(51555, 43499, 'ja', 'name', 'ćƒ‘ćƒˆćƒŖć‚·ć‚¢äæ”ęæƒē”ŗćƒ†ćƒ©ć‚¹'),
(51556, 43500, 'en', 'name', 'British HIV Association'),
(51557, 43501, 'en', 'name', 'British Transplantation Society'),
(51558, 43502, 'en', 'name', 'Wildlife Preservation Society of Australia'),
(51559, 43503, 'en', 'name', 'Australian Rheumatology Association'),
(51560, 43504, 'en', 'name', 'Speech Pathology Australia'),
(51561, 43505, 'en', 'name', 'Australian Society for Medical Research'),
(51562, 43506, 'de', 'name', 'Deutsche Gesellschaft für Urologie'),
(51563, 43507, 'en', 'name', 'Gƶteborg Medical Society'),
(51564, 43507, 'sv', 'name', 'Gƶteborgs LƤkaresƤllskap'),
(51565, 43508, 'en', 'name', 'Hellenic Cardiological Society'),
(51566, 43508, 'el', 'name', 'Ελληνική ΚαρΓιολογική Εταιρεία'),
(51567, 43509, 'en', 'name', 'Hellenic Society for the Study of Bone Metabolism'),
(51568, 43509, 'el', 'name', 'Ελληνική Εταιρεία ĪœĪµĪ»Ī­Ļ„Ī·Ļ‚ ĪœĪµĻ„Ī±Ī²ĪæĪ»Ī¹ĻƒĪ¼ĪæĻ των ĪŸĻƒĻ„ĻŽĪ½'),
(51569, 43510, 'en', 'name', 'Australian Federation of University Women – South Australia'),
(51570, 43511, 'en', 'name', 'Service Science Society of Taiwan'),
(51571, 43511, 'zh', 'name', 'å°ē£ęœå‹™ē§‘å­øå­øęœƒ'),
(51572, 43512, 'pt', 'name', 'Associação Brasileira de Metalurgia, Materiais e Mineração'),
(51573, 43513, 'fr', 'name', 'SociƩtƩ FranƧaise de Dermatologie et de Pathologie Sexuellement Transmissible'),
(51574, 43514, 'en', 'name', 'Australian Psychological Society'),
(51575, 43515, 'fr', 'name', 'SociƩtƩ FranƧaise de MƩdecine Vasculaire'),
(51576, 43516, 'ga', 'name', 'Cumann LĆŗthchleas Gael'),
(51577, 43516, 'en', 'name', 'Gaelic Athletic Association'),
(51578, 43517, 'en', 'name', 'Asian Transportation Research Society'),
(51579, 43518, 'en', 'name', 'Australian Dental Association'),
(51580, 43519, 'pt', 'name', 'Sociedade Brasileira de Anestesiologia'),
(51581, 43520, 'en', 'name', 'Association for Progressive Communications'),
(51582, 43521, 'en', 'name', 'Korea International Trade Association'),
(51583, 43521, 'ko', 'name', 'ķ•œźµ­ė¬“ģ—­ķ˜‘ķšŒ'),
(51584, 43522, 'en', 'name', 'Hong Kong Health Care Association'),
(51585, 43523, 'en', 'name', 'Australian Diabetes Society'),
(51586, 43524, 'en', 'name', 'Chinese Materials Research Society'),
(51587, 43524, 'zh', 'name', 'äø­å›½ęę–™ē ”ē©¶å­¦ä¼š'),
(51588, 43525, 'en', 'name', 'Society of Hong Kong Scholars'),
(51589, 43526, 'fr', 'name', 'Vaincre la Mucoviscidose'),
(51590, 43527, 'en', 'name', 'Australian Association for Academic Primary Care'),
(51591, 43528, 'sv', 'name', 'Stiftelsen Bergteknisk Forskning'),
(51592, 43529, 'en', 'name', 'Pharmacy Guild of Australia'),
(51593, 43530, 'nl', 'name', 'Koninklijke Nederlandse Voetbalbond'),
(51594, 43530, 'en', 'name', 'Royal Dutch Football Association'),
(51595, 43531, 'en', 'name', 'Clinical Oncological Society of Australia'),
(51596, 43532, 'es', 'name', 'Asociación Universitaria Iberoamericana de Postgrado'),
(51597, 43533, 'en', 'name', 'Australian Physiotherapy Association'),
(51598, 43534, 'en', 'name', 'World Association of Zoos and Aquariums'),
(51599, 43535, 'en', 'name', 'Society of Instrument and Control Engineers'),
(51600, 43535, 'ja', 'name', 'čØˆęø¬č‡Ŗå‹•åˆ¶å¾”å­¦ä¼š'),
(51601, 43536, 'en', 'name', 'Association for Canadian Studies in Australia and New Zealand'),
(51602, 43537, 'fr', 'name', 'Association FranƧaise pour l''Etude du Foie'),
(51603, 43538, 'sv', 'name', 'Svensk Fƶrening fƶr Sƶmnforskning och Sƶmnmedicin'),
(51604, 43539, 'en', 'name', 'Australasian Institute of Mining and Metallurgy'),
(51605, 43540, 'en', 'name', 'Saudi Heart Association'),
(51606, 43541, 'en', 'name', 'Saudi Ophthalmological Society'),
(51607, 43541, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© لطب Ų§Ł„Ų¹ŁŠŁˆŁ†'),
(51608, 43542, 'en', 'name', 'Australasian Sleep Association'),
(51609, 43543, 'en', 'name', 'Saudi Pharmaceutical Society'),
(51610, 43544, 'fr', 'name', 'Association pour la recherche sur la SclƩrose LatƩrale Amyotrophique'),
(51611, 43545, 'en', 'name', 'Saudi Society of Dermatology and Dermatologic Surgery'),
(51612, 43545, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© لأمراض وجراحة الجلد'),
(51613, 43546, 'en', 'name', 'Austrian Society of Dermatology and Venereology'),
(51614, 43546, 'de', 'name', 'Ɩsterreichischen Gesellschaft für Dermatologie und Venerologie'),
(51615, 43547, 'en', 'name', 'Australian Library and Information Association'),
(51616, 43548, 'en', 'name', 'Shine'),
(51617, 43549, 'no_lang_code', 'name', 'Karachaevo-Cherkessk State University'),
(51618, 43549, 'ru', 'name', 'ŠšŠ°Ń€Š°Ń‡Š°ŠµŠ²Š¾-Черкесский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(51619, 43550, 'no_lang_code', 'name', 'Toho Gakuen'),
(51620, 43551, 'es', 'name', 'Universidad IndĆ­gena Boliviana Aymara Tupak Katari'),
(51621, 43552, 'no_lang_code', 'name', 'Rubicon Labs (United States)'),
(51622, 43553, 'en', 'name', 'Turkish Society of Nephrology'),
(51623, 43553, 'tr', 'name', 'Türk Nefroloji Derneği'),
(51624, 43554, 'de', 'name', 'Fachgruppe für Untertagbau'),
(51625, 43554, 'en', 'name', 'Swiss Tunnelling Society'),
(51626, 43555, 'en', 'name', 'Society for Mental Health Research'),
(51627, 43556, 'de', 'name', 'Arbeitsgemeinschaft Dermatologische Forschung'),
(51628, 43557, 'it', 'name', 'Associazione Cristina Bassi Onlus'),
(51629, 43558, 'en', 'name', 'Chinese Pharmaceutical Association'),
(51630, 43558, 'zh', 'name', 'äø­å›½čÆå­¦ä¼š'),
(51631, 43559, 'sv', 'name', 'Sveriges LƤkarfƶrbund'),
(51632, 43559, 'en', 'name', 'Swedish Medical Association'),
(51633, 43560, 'en', 'name', 'Agri-Futures Nova Scotia Association'),
(51634, 43561, 'it', 'name', 'Associazione Italiana Contro le Leucemie Linfomi e Mieloma'),
(51635, 43562, 'en', 'name', 'Japanese Society of Medical Oncology'),
(51636, 43562, 'ja', 'name', 'č…«ē˜å†…ē§‘å­¦ä¼š'),
(51637, 43563, 'en', 'name', 'Japanese Urological Association'),
(51638, 43563, 'ja', 'name', 'ę—„ęœ¬ę³Œå°æå™Øē§‘å­¦ä¼š'),
(51639, 43564, 'en', 'name', 'Advanced Machining Technology and Development Association'),
(51640, 43564, 'ja', 'name', 'å…ˆē«ÆåŠ å·„ę©Ÿę¢°ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(51641, 43565, 'de', 'name', 'Forschungsvereinigung für Luft- und Trocknungstechnik'),
(51642, 43566, 'pt', 'name', 'Sociedade Portuguesa de Nefrologia'),
(51643, 43567, 'en', 'name', 'Blanchette Rockefeller Neurosciences Institute'),
(51644, 43568, 'en', 'name', 'Korean Society of Neurogastroenterology and Motility'),
(51645, 43568, 'ko', 'name', 'ėŒ€ķ•œģ†Œķ™”źø°źø°ėŠ„ģ„±ģ§ˆķ™˜Ā·ģš“ė™ķ•™ķšŒ'),
(51646, 43569, 'it', 'name', 'Associazione Malattie Autoimmuni Mario Rossi'),
(51647, 43570, 'en', 'name', 'European Association of Environmental and Resource Economists'),
(51648, 43571, 'fr', 'name', 'Entretiens de RƩƩducation et RƩadaptation Fonctionnelles'),
(51649, 43572, 'de', 'name', 'Schweizerische Gesellschaft für Radiologie'),
(51650, 43572, 'en', 'name', 'Swiss Society of Radiology'),
(51651, 43573, 'de', 'name', 'Elternverein für Leukämie- und Krebskranke Kinder Gießen'),
(51652, 43574, 'da', 'name', 'Nyreforeningen'),
(51653, 43575, 'en', 'name', 'Alberta Medical Association'),
(51654, 43576, 'no_lang_code', 'name', 'CNH Industrial (Italy)'),
(51655, 43577, 'en', 'name', 'Association of Danish Physiotherapists'),
(51656, 43577, 'da', 'name', 'Danske Fysioterapeuter'),
(51657, 43578, 'en', 'name', 'Central Coast Orthopedic Medical Group'),
(51658, 43579, 'de', 'name', 'Ɩsterreichische Gesellschaft für HƤmatologie & Medizinische Onkologie'),
(51659, 43580, 'fr', 'name', 'NephroCare Tassin-Charcot'),
(51660, 43581, 'en', 'name', 'Abramson Center for Jewish Life'),
(51661, 43582, 'en', 'name', 'Center for Advancing Health'),
(51662, 43583, 'en', 'name', 'Dawkins Dermatology'),
(51663, 43584, 'en', 'name', 'Australian Marine Sciences Association'),
(51664, 43585, 'en', 'name', 'Australian Publishers Association'),
(51665, 43586, 'en', 'name', 'Australian Society for Biochemistry and Molecular Biology'),
(51666, 43587, 'en', 'name', 'Australian Society For Fish Biology'),
(51667, 43588, 'en', 'name', 'Australian Society for Microbiology'),
(51668, 43589, 'en', 'name', 'Centre for Inflammation Research'),
(51669, 43590, 'en', 'name', 'Department of Medical Sciences'),
(51670, 43590, 'th', 'name', 'ąøąø£ąø”ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąøąø²ąø£ą¹ąøžąø—ąø¢ą¹Œ'),
(51671, 43591, 'no_lang_code', 'name', 'Donawa Lifescience Consulting (Italy)'),
(51672, 43592, 'no_lang_code', 'name', 'Alliance Protein Laboratories (United States)'),
(51673, 43593, 'en', 'name', 'Harborview Injury Prevention and Research Center'),
(51674, 43594, 'en', 'name', 'McGowan Institute for Regenerative Medicine'),
(51675, 43595, 'de', 'name', 'Sana Kliniken Duisburg'),
(51676, 43596, 'en', 'name', 'Miami Heart Research Institute'),
(51677, 43597, 'fr', 'name', 'Programme PAC-CI'),
(51678, 43598, 'en', 'name', 'Turku PET Centre'),
(51679, 43599, 'no_lang_code', 'name', 'Paion (United States)'),
(51680, 43600, 'no_lang_code', 'name', 'Pure Protein (United States)'),
(51681, 43601, 'en', 'name', 'Wellcome/MRC Institute of Metabolic Science'),
(51682, 43602, 'en', 'name', 'Minnesota Institute of Public Health'),
(51683, 43603, 'en', 'name', 'National Institute of Health'),
(51684, 43603, 'hy', 'name', 'ՀՀ Ō±Õ† Ō±Õ¼ÕøÕ²Õ»Õ”ÕŗÕ”Õ°ÕøÖ‚Õ©ÕµÕ”Õ¶ Ō±Õ¦Õ£Õ”ÕµÕ«Õ¶ Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(51685, 43604, 'en', 'name', 'Middle Tennessee Research Institute'),
(51686, 43605, 'en', 'name', 'New York Child Learning Institute'),
(51687, 43606, 'en', 'name', 'Central Sericultural Research and Training Institute'),
(51688, 43606, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤°ą„‡ą¤¶ą¤® ą¤‰ą¤¤ą„ā€ą¤Ŗą¤¾ą¤¦ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¶ą¤æą¤•ą„ą¤·ą¤£ ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(51689, 43607, 'en', 'name', 'Galveston Island Research Community Research Advisory Committee'),
(51690, 43608, 'no_lang_code', 'name', 'Antibiotic (Bulgaria)'),
(51691, 43609, 'en', 'name', 'Global Viral'),
(51692, 43610, 'en', 'name', 'Institute of Applied Physiology & Medicine'),
(51693, 43611, 'en', 'name', 'Institute for the Advanced Study of Black Family Life and Culture'),
(51694, 43612, 'en', 'name', 'Higher Institute of Advanced Studies'),
(51695, 43613, 'en', 'name', 'Institute of Water and Sanitation Development'),
(51696, 43614, 'en', 'name', 'Cardiovascular Innovation Institute'),
(51697, 43615, 'en', 'name', 'High Institute For Computers and Management Information Systems'),
(51698, 43616, 'de', 'name', 'Gesundheitszentrum Bitterfeld'),
(51699, 43617, 'en', 'name', 'National College'),
(51700, 43618, 'en', 'name', 'Southwestern Community College - Iowa'),
(51701, 43619, 'en', 'name', 'Canadian University Music Society'),
(51702, 43619, 'fr', 'name', 'SociƩtƩ de musique des universitƩs canadiennes'),
(51703, 43620, 'en', 'name', 'Trinity Valley Community College'),
(51704, 43621, 'en', 'name', 'The 180th Hospital of PLA'),
(51705, 43621, 'zh', 'name', '中国人民解放军第180医院'),
(51706, 43622, 'en', 'name', 'Zhenjiang City Fourth People''s Hospital'),
(51707, 43622, 'zh', 'name', 'é•‡ę±Ÿåø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(51708, 43623, 'en', 'name', 'Shaoxing No.6 People''s Hospital'),
(51709, 43623, 'zh', 'name', 'ē»å…“åø‚ē«‹åŒ»é™¢'),
(51710, 43624, 'it', 'name', 'Ospedale Santa Maria di Loreto Nuovo'),
(51711, 43625, 'en', 'name', 'Eastern Gateway Community College'),
(51712, 43626, 'en', 'name', 'Sanya City Women and Children Hospital'),
(51713, 43627, 'no_lang_code', 'name', 'Electronic Sensor Technology (United States)'),
(51714, 43628, 'en', 'name', 'Luoyang Central Hospital Affiliated to Zhengzhou University'),
(51715, 43629, 'no_lang_code', 'name', 'MSP Analytics (United States)'),
(51716, 43630, 'en', 'name', 'Walker County Red Cross Hospital'),
(51717, 43630, 'zh', 'name', 'čŽ·å˜‰åŽæēŗ¢åå­—åŒ»é™¢'),
(51718, 43631, 'fr', 'name', 'Laboratoire de Neurobiologie Cellulaire et MolƩculaire'),
(51719, 43632, 'en', 'name', 'Riverside Hospital of Guangxi Zhuang Autonomous Region'),
(51720, 43632, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗę±Ÿę»ØåŒ»é™¢'),
(51721, 43633, 'no_lang_code', 'name', 'Megara Resins (Greece)'),
(51722, 43634, 'en', 'name', 'People''s Liberation Army No. 150 Hospital'),
(51723, 43635, 'en', 'name', 'The Third People''s Hospital of Dalian City'),
(51724, 43635, 'zh', 'name', 'å¤§čæžåø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(51725, 43636, 'en', 'name', 'TCM-Intigrated Cancer Center of Southern Medical University'),
(51726, 43636, 'zh', 'name', 'å—ę–¹åŒ»ē§‘å¤§å­¦äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(51727, 43637, 'en', 'name', 'Hajera Taju University College'),
(51728, 43638, 'en', 'name', 'Virginia Intermont College'),
(51729, 43639, 'en', 'name', 'North Orange County Community College District'),
(51730, 43640, 'en', 'name', 'City Clinical Hospital No 31'),
(51731, 43640, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 31 (Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³)'),
(51732, 43641, 'en', 'name', 'University of Kivu'),
(51733, 43641, 'fr', 'name', 'UniversitƩ du Kivu'),
(51734, 43642, 'en', 'name', 'Northeast Community College'),
(51735, 43643, 'en', 'name', 'West Virginia Northern Community College'),
(51736, 43644, 'en', 'name', 'Colorado Northwestern Community College'),
(51737, 43645, 'en', 'name', 'Kampala International University'),
(51738, 43646, 'sl', 'name', 'ViŔja prometna Ŕola Maribor'),
(51739, 43646, 'en', 'name', 'Vocational College of Traffic and Transport'),
(51740, 43647, 'en', 'name', 'Highland Community College - Kansas'),
(51741, 43648, 'en', 'name', 'Tianjin Fourth Hospital'),
(51742, 43648, 'zh', 'name', 'å¤©ę“„åø‚ē¬¬å››åŒ»é™¢'),
(51743, 43649, 'sv', 'name', 'Bjƶrneborgs universitetscenter'),
(51744, 43649, 'fi', 'name', 'Porin yliopistokeskus'),
(51745, 43649, 'en', 'name', 'University Consortium of Pori'),
(51746, 43650, 'is', 'name', 'BarnaspĆ­tali'),
(51747, 43651, 'en', 'name', 'Shanxi Academy of Medical Sciences'),
(51748, 43651, 'zh', 'name', 'åŒ»å­¦ē§‘å­¦ē ”ē©¶é™¢å±±č„æ'),
(51749, 43652, 'en', 'name', 'University of Iranians'),
(51750, 43652, 'fa', 'name', 'دانؓگاه Ų¬Ų§Ł…Ų¹ ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ Ų§ŪŒŲ±Ų§Ł†ŪŒŲ§Ł†'),
(51751, 43653, 'no_lang_code', 'name', 'Aurobindo Pharma (United States)'),
(51752, 43654, 'en', 'name', 'Yingkou Institute of Technology'),
(51753, 43654, 'zh', 'name', 'č„å£ē†å·„å­¦é™¢'),
(51754, 43655, 'en', 'name', 'Russian Scientific Research Institute Microbe'),
(51755, 43656, 'fr', 'name', 'Association Canadienne des Ɖtudes Asiatiques'),
(51756, 43656, 'en', 'name', 'Canadian Asian Studies Association'),
(51757, 43657, 'en', 'name', 'Scleroderma and Raynaud''s UK'),
(51758, 43658, 'en', 'name', 'British Thoracic Society'),
(51759, 43659, 'en', 'name', 'South African Heart Association'),
(51760, 43660, 'en', 'name', 'Cultural Relics Institute Hebei Province'),
(51761, 43660, 'zh', 'name', 'ę²³åŒ—ēœę–‡ē‰©ē ”ē©¶ę‰€'),
(51762, 43661, 'en', 'name', 'Washington State University Spokane'),
(51763, 43662, 'en', 'name', 'Washington State University Tri-Cities'),
(51764, 43663, 'en', 'name', 'Linyi City Chinese Medicine Hospital'),
(51765, 43664, 'en', 'name', 'West Georgia Technical College'),
(51766, 43665, 'de', 'name', 'Institut für Bioinformatik und Systembiologie'),
(51767, 43665, 'en', 'name', 'Institute of Bioinformatics and Systems Biology'),
(51768, 43666, 'en', 'name', 'St. Mary''s University'),
(51769, 43666, 'am', 'name', 'į‰…į‹µįˆµį‰µ įˆ›įˆ­į‹«įˆ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(51770, 43667, 'no_lang_code', 'name', 'Anzai (Japan)'),
(51771, 43667, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å®‰č„æč£½ä½œę‰€'),
(51772, 43668, 'no_lang_code', 'name', 'Universal Alloy (United States)'),
(51773, 43669, 'no_lang_code', 'name', 'Universal Trim Supply (Taiwan)'),
(51774, 43670, 'no_lang_code', 'name', 'Columbus McKinnon (United States)'),
(51775, 43671, 'no_lang_code', 'name', 'Luye Pharma (China)'),
(51776, 43671, 'zh', 'name', 'ē»æå¶åˆ¶čÆ'),
(51777, 43672, 'no_lang_code', 'name', 'Universal Beauty Products (United States)'),
(51778, 43673, 'no_lang_code', 'name', 'Universal Biologics (United States)'),
(51779, 43674, 'no_lang_code', 'name', 'BMG (Japan)'),
(51780, 43674, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ“ćƒ¼ć‚Øćƒ ć‚øćƒ¼'),
(51781, 43675, 'no_lang_code', 'name', 'Matsui Universal Joint Corporation (Japan)'),
(51782, 43675, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę¾äŗ•č£½ä½œę‰€'),
(51783, 43676, 'no_lang_code', 'name', 'Universal Biosensors (Australia)'),
(51784, 43677, 'no_lang_code', 'name', 'Universal Woods (United States)'),
(51785, 43678, 'no_lang_code', 'name', 'Comar (United States)'),
(51786, 43679, 'no_lang_code', 'name', 'Piovan (Canada)'),
(51787, 43680, 'no_lang_code', 'name', 'Nikki-Universal (Japan)'),
(51788, 43680, 'ja', 'name', 'ę—„ę®ćƒ¦ćƒ‹ćƒćƒ¼ć‚µćƒ«ę Ŗå¼ä¼šē¤¾ćÆ'),
(51789, 43681, 'no_lang_code', 'name', 'Universal Engraving (United States)'),
(51790, 43682, 'no_lang_code', 'name', 'Prima Alloy Steel Universal (Indonesia)'),
(51791, 43683, 'no_lang_code', 'name', 'Universal Entertainment (Japan)'),
(51792, 43683, 'ja', 'name', 'ćƒ¦ćƒ‹ćƒćƒ¼ć‚µćƒ«ć‚Øćƒ³ć‚æćƒ¼ćƒ†ć‚¤ćƒ³ćƒ”ćƒ³ćƒˆ'),
(51793, 43684, 'no_lang_code', 'name', 'Universal Environmental Technologies (United States)'),
(51794, 43685, 'no_lang_code', 'name', 'Sangath'),
(51795, 43686, 'is', 'name', 'Stofnun Árna Magnússonar í íslenskum fræðum'),
(51796, 43686, 'en', 'name', 'Árni Magnússon Institute for Icelandic Studies'),
(51797, 43687, 'no_lang_code', 'name', 'UFI Filters (Italy)'),
(51798, 43688, 'en', 'name', 'INCLEN Trust International'),
(51799, 43689, 'en', 'name', 'May Institute'),
(51800, 43690, 'no_lang_code', 'name', 'Universal Fibers (United States)'),
(51801, 43691, 'no_lang_code', 'name', 'Univar (United States)'),
(51802, 43692, 'no_lang_code', 'name', 'Universal Photonics (United States)'),
(51803, 43693, 'en', 'name', 'Nordic Centre for Welfare and Social Issues'),
(51804, 43693, 'fi', 'name', 'Nordic Centre for Welfare ja sosiaaliset kysymykset'),
(51805, 43694, 'no_lang_code', 'name', 'Sensient Technologies (United States)'),
(51806, 43695, 'no_lang_code', 'name', 'Universal Scientific Industrial (China)'),
(51807, 43695, 'zh', 'name', 'ēŽÆę—­ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(51808, 43696, 'no_lang_code', 'name', 'Avnet (United States)'),
(51809, 43697, 'no_lang_code', 'name', 'United Shield (United Kingdom)'),
(51810, 43698, 'en', 'name', 'London Cancer'),
(51811, 43699, 'no_lang_code', 'name', 'Foremost (Canada)'),
(51812, 43700, 'no_lang_code', 'name', 'Universal Instruments (United States)'),
(51813, 43701, 'no_lang_code', 'name', 'Universal Master Products (United Kingdom)'),
(51814, 43702, 'no_lang_code', 'name', 'Johnson Matthey (France)'),
(51815, 43703, 'no_lang_code', 'name', 'Universal Filters (United States)'),
(51816, 43704, 'no_lang_code', 'name', 'Sonitu Pharmaceuticals (United States)'),
(51817, 43705, 'no_lang_code', 'name', 'Tecan (United States)'),
(51818, 43706, 'no_lang_code', 'name', 'Univera (United States)'),
(51819, 43707, 'no_lang_code', 'name', 'Universal Products (United States)'),
(51820, 43708, 'no_lang_code', 'name', 'SmartSkim (United States)'),
(51821, 43709, 'no_lang_code', 'name', 'Them (United States)'),
(51822, 43710, 'no_lang_code', 'name', 'Hitachi Maxell (Japan)'),
(51823, 43710, 'ja', 'name', 'ę—„ē«‹ćƒžć‚Æć‚»ćƒ«ę Ŗå¼ä¼šē¤¾'),
(51824, 43711, 'no_lang_code', 'name', 'Accenture (Ireland)'),
(51825, 43712, 'no_lang_code', 'name', 'eBay (United States)'),
(51826, 43713, 'no_lang_code', 'name', 'Acer (Taiwan)'),
(51827, 43713, 'zh', 'name', 'å®ē¢'),
(51828, 43714, 'no_lang_code', 'name', 'Canon Anelva (Japan)'),
(51829, 43714, 'ja', 'name', 'ć‚­ćƒ¤ćƒŽćƒ³ć‚¢ćƒćƒ«ćƒ'),
(51830, 43715, 'no_lang_code', 'name', 'EchoStar (United States)'),
(51831, 43716, 'no_lang_code', 'name', 'Lincoln Electric (United States)'),
(51832, 43717, 'no_lang_code', 'name', 'Foxconn (Taiwan)'),
(51833, 43717, 'zh', 'name', 'é“»ęµ·ē§‘ęŠ€é›†åœ˜'),
(51834, 43718, 'no_lang_code', 'name', 'Lintec Corporation (Japan)'),
(51835, 43718, 'ja', 'name', 'ćƒŖćƒ³ćƒ†ćƒƒć‚Æ'),
(51836, 43719, 'no_lang_code', 'name', 'Advantest (Japan)'),
(51837, 43719, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒćƒ³ćƒ†ć‚¹ćƒˆ'),
(51838, 43720, 'no_lang_code', 'name', 'Honda (Japan)'),
(51839, 43720, 'ja', 'name', 'ęœ¬ē”°ęŠ€ē ”å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(51840, 43721, 'no_lang_code', 'name', 'Lite-On Technology Corporation (Taiwan)'),
(51841, 43721, 'zh', 'name', 'å»ŗå…“ē§‘ęŠ€å…¬åø'),
(51842, 43722, 'no_lang_code', 'name', 'Los Alamos National Security (United States)'),
(51843, 43723, 'no_lang_code', 'name', 'Hoya (Japan)'),
(51844, 43723, 'ja', 'name', 'Hoyaę Ŗå¼ä¼šē¤¾'),
(51845, 43724, 'no_lang_code', 'name', 'HTC (Taiwan)'),
(51846, 43724, 'zh', 'name', 'å®é”åœ‹éš›é›»å­č‚”ä»½ęœ‰é™å…¬åø'),
(51847, 43725, 'no_lang_code', 'name', 'Empire Technical Development (United States)'),
(51848, 43726, 'no_lang_code', 'name', 'Agfa-Gevaert (Germany)'),
(51849, 43727, 'no_lang_code', 'name', 'LSIS (South Korea)'),
(51850, 43727, 'ko', 'name', 'ģ‚°ģ „'),
(51851, 43728, 'no_lang_code', 'name', 'Hubbell (United States)'),
(51852, 43729, 'no_lang_code', 'name', 'TDK-EPC (Germany)'),
(51853, 43730, 'no_lang_code', 'name', 'Albemarle (United States)'),
(51854, 43731, 'no_lang_code', 'name', 'Central Glass (Japan)'),
(51855, 43731, 'ja', 'name', 'ć‚»ćƒ³ćƒˆćƒ©ćƒ«ē”å­ę Ŗå¼ä¼šē¤¾'),
(51856, 43732, 'no_lang_code', 'name', 'Essilor (France)'),
(51857, 43733, 'no_lang_code', 'name', 'LuK Lamellen und Kupplungsbau (Germany)'),
(51858, 43734, 'no_lang_code', 'name', 'Lutron Electronics (United States)'),
(51859, 43735, 'no_lang_code', 'name', 'Hyundai Mobis (South Korea)'),
(51860, 43735, 'ko', 'name', 'ķ˜„ėŒ€ėŖØė¹„ģŠ¤ ģ£¼ģ‹ķšŒģ‚¬'),
(51861, 43736, 'no_lang_code', 'name', 'Alps Electric (Japan)'),
(51862, 43736, 'ja', 'name', 'ć‚¢ćƒ«ćƒ—ć‚¹é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(51863, 43737, 'no_lang_code', 'name', 'Macronix International (Taiwan)'),
(51864, 43738, 'no_lang_code', 'name', 'Ibiden (Japan)'),
(51865, 43738, 'ja', 'name', 'ć‚¤ćƒ“ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(51866, 43739, 'no_lang_code', 'name', 'Foxlink (Taiwan)'),
(51867, 43739, 'zh', 'name', 'ę­£å““ē²¾åÆ†å·„äøš'),
(51868, 43740, 'no_lang_code', 'name', 'Energizer (United States)'),
(51869, 43741, 'no_lang_code', 'name', 'Chevron Phillips Chemical (United States)'),
(51870, 43742, 'no_lang_code', 'name', 'Makita Corporation (Japan)'),
(51871, 43742, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžć‚­ć‚æ'),
(51872, 43743, 'no_lang_code', 'name', 'International Game Technology (United States)'),
(51873, 43744, 'no_lang_code', 'name', 'Stihl (Germany)'),
(51874, 43745, 'no_lang_code', 'name', 'Chi Mei Communication Systems (Taiwan)'),
(51875, 43745, 'zh', 'name', 'å„‡ē¾Žé€ščØŠ'),
(51876, 43746, 'no_lang_code', 'name', 'Mando Corporation (South Korea)'),
(51877, 43746, 'ko', 'name', 'ė§Œė„'),
(51878, 43747, 'no_lang_code', 'name', 'Mann+Hummel (Germany)'),
(51879, 43748, 'no_lang_code', 'name', 'Fairchild Semiconductor (United States)'),
(51880, 43749, 'no_lang_code', 'name', 'Manroland (Germany)'),
(51881, 43750, 'no_lang_code', 'name', 'Aristocrat (Australia)'),
(51882, 43751, 'no_lang_code', 'name', 'Husky Injection Molding Systems (Canada)'),
(51883, 43752, 'no_lang_code', 'name', 'Marvell (Bermuda)'),
(51884, 43753, 'no_lang_code', 'name', 'Cirrus Logic (United States)'),
(51885, 43754, 'no_lang_code', 'name', 'Soft99 (Japan)'),
(51886, 43754, 'ja', 'name', 'ć‚½ćƒ•ćƒˆ99ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(51887, 43755, 'no_lang_code', 'name', 'Ingersoll Rand (United States)'),
(51888, 43756, 'no_lang_code', 'name', 'Citizen (Japan)'),
(51889, 43756, 'ja', 'name', 'ć‚·ćƒć‚ŗćƒ³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(51890, 43757, 'no_lang_code', 'name', 'Maxim Integrated (United States)'),
(51891, 43758, 'no_lang_code', 'name', 'Intellectual Ventures (United States)'),
(51892, 43759, 'no_lang_code', 'name', 'Asus (Taiwan)'),
(51893, 43759, 'zh', 'name', 'čÆē¢©é›»č…¦č‚”ä»½ęœ‰é™å…¬åø'),
(51894, 43760, 'no_lang_code', 'name', 'Finisar (United States)'),
(51895, 43761, 'no_lang_code', 'name', 'First Data (United States)'),
(51896, 43762, 'no_lang_code', 'name', 'CNH Industrial (United States)'),
(51897, 43763, 'no_lang_code', 'name', 'Mazda Motor Corporation (Japan)'),
(51898, 43763, 'ja', 'name', 'ćƒžćƒ„ćƒ€ę Ŗå¼ä¼šē¤¾'),
(51899, 43764, 'no_lang_code', 'name', 'Advanced Micro Devices (Canada)'),
(51900, 43765, 'no_lang_code', 'name', 'Intermolecular (United States)'),
(51901, 43766, 'no_lang_code', 'name', 'International Flavors & Fragrances (United States)'),
(51902, 43767, 'no_lang_code', 'name', 'Commvault (United States)'),
(51903, 43768, 'no_lang_code', 'name', 'NXP (United States)'),
(51904, 43769, 'no_lang_code', 'name', 'Infineon Technologies (Canada)'),
(51905, 43770, 'no_lang_code', 'name', 'AutoNetworks Technologies (Japan)'),
(51906, 43770, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ćƒˆćƒćƒƒćƒˆćƒÆćƒ¼ć‚ÆęŠ€č”“ē ”ē©¶ę‰€'),
(51907, 43771, 'no_lang_code', 'name', 'Broadcom (Singapore)'),
(51908, 43772, 'no_lang_code', 'name', 'Intersil (United States)'),
(51909, 43773, 'no_lang_code', 'name', 'Foxconn (China)'),
(51910, 43773, 'zh', 'name', 'é“»ęµ·ē§‘ęŠ€é›†åœ˜'),
(51911, 43774, 'no_lang_code', 'name', 'Avery Dennison (United States)'),
(51912, 43775, 'no_lang_code', 'name', 'Intuit (United States)'),
(51913, 43776, 'no_lang_code', 'name', 'Michelin (Switzerland)'),
(51914, 43777, 'no_lang_code', 'name', 'Scientific Games (United States)'),
(51915, 43778, 'no_lang_code', 'name', 'Schneider Electric (United States)'),
(51916, 43779, 'no_lang_code', 'name', 'Unilever (United States)'),
(51917, 43780, 'no_lang_code', 'name', 'Inventec (Taiwan)'),
(51918, 43780, 'zh', 'name', 'č‹±ę„­é”å…¬åø'),
(51919, 43781, 'no_lang_code', 'name', 'Fuji Electric (Japan)'),
(51920, 43781, 'ja', 'name', 'åÆŒå£«é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(51921, 43782, 'de', 'name', 'Battelle'),
(51922, 43783, 'no_lang_code', 'name', 'Microchip Technology (United States)'),
(51923, 43784, 'no_lang_code', 'name', 'Schindler (Switzerland)'),
(51924, 43785, 'no_lang_code', 'name', 'Baxter (Switzerland)'),
(51925, 43786, 'no_lang_code', 'name', 'Conversant (Canada)'),
(51926, 43787, 'no_lang_code', 'name', 'Cook Medical (United States)'),
(51927, 43788, 'no_lang_code', 'name', 'MinebeaMitsumi (Japan)'),
(51928, 43788, 'ja', 'name', 'ćƒŸćƒćƒ™ć‚¢ćƒŸćƒ„ćƒŸę Ŗå¼ä¼šē¤¾'),
(51929, 43789, 'no_lang_code', 'name', 'Isuzu Motors (Japan)'),
(51930, 43789, 'ja', 'name', 'ć„ć™ć‚žč‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(51931, 43790, 'no_lang_code', 'name', 'Fuji Xerox (Japan)'),
(51932, 43790, 'ja', 'name', 'åÆŒå£«ć‚¼ćƒ­ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(51933, 43791, 'no_lang_code', 'name', 'BOE Technology Group (China)'),
(51934, 43792, 'no_lang_code', 'name', 'Japan Display (Japan)'),
(51935, 43792, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ£ćƒ‘ćƒ³ćƒ‡ć‚£ć‚¹ćƒ—ćƒ¬ć‚¤'),
(51936, 43793, 'no_lang_code', 'name', 'Fujikura (Japan)'),
(51937, 43793, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚øć‚Æćƒ©'),
(51938, 43794, 'no_lang_code', 'name', 'JFE Holdings (Japan)'),
(51939, 43794, 'ja', 'name', 'ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(51940, 43795, 'no_lang_code', 'name', 'Kyocera (Japan)'),
(51941, 43795, 'ja', 'name', 'äŗ¬ć‚»ćƒ©ę Ŗå¼ä¼šē¤¾'),
(51942, 43796, 'no_lang_code', 'name', 'Fujitsu Ten (Japan)'),
(51943, 43796, 'ja', 'name', 'åÆŒå£«é€šćƒ†ćƒ³ę Ŗå¼ä¼šē¤¾'),
(51944, 43797, 'no_lang_code', 'name', 'SC Johnson (United States)'),
(51945, 43798, 'no_lang_code', 'name', 'Mitsubishi Gas Chemical (Japan)'),
(51946, 43798, 'ja', 'name', 'äø‰č±ć‚¬ć‚¹åŒ–å­¦'),
(51947, 43799, 'no_lang_code', 'name', 'Qisda (Taiwan)'),
(51948, 43799, 'zh', 'name', 'ä½³äø–č¾¾å…¬åø'),
(51949, 43800, 'no_lang_code', 'name', 'Funai Electric (Japan)'),
(51950, 43800, 'ja', 'name', 'čˆ¹äŗ•é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(51951, 43801, 'no_lang_code', 'name', 'JTEKT (Japan)'),
(51952, 43801, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ†ć‚Æćƒˆ'),
(51953, 43802, 'no_lang_code', 'name', 'Juniper Networks (United States)'),
(51954, 43803, 'no_lang_code', 'name', 'BorgWarner (United States)'),
(51955, 43804, 'no_lang_code', 'name', 'Mitsubishi Materials (Japan)'),
(51956, 43804, 'ja', 'name', 'äø‰č±ćƒžćƒ†ćƒŖć‚¢ćƒ«ę Ŗå¼ä¼šē¤¾'),
(51957, 43805, 'no_lang_code', 'name', 'JVC Kenwood (Japan)'),
(51958, 43805, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ JVCć‚±ćƒ³ć‚¦ćƒƒćƒ‰'),
(51959, 43806, 'no_lang_code', 'name', 'Huawei Technologies (United States)'),
(51960, 43807, 'no_lang_code', 'name', 'Robert Bosch (Japan)'),
(51961, 43807, 'ja', 'name', 'ćƒœćƒƒć‚·ćƒ„ļ¼ˆę Ŗļ¼‰'),
(51962, 43808, 'no_lang_code', 'name', 'Kansai Paint (Japan)'),
(51963, 43808, 'ja', 'name', 'é–¢č„æćƒšć‚¤ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(51964, 43809, 'no_lang_code', 'name', 'Bose (United States)'),
(51965, 43810, 'no_lang_code', 'name', 'Ping (United States)'),
(51966, 43811, 'no_lang_code', 'name', 'Arris (United States)'),
(51967, 43812, 'no_lang_code', 'name', 'Mitsubishi Motors (Japan)'),
(51968, 43812, 'ja', 'name', 'äø‰č±č‡Ŗå‹•č»Šå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(51969, 43813, 'no_lang_code', 'name', 'Cypress Semiconductor Corporation (Belgium)'),
(51970, 43814, 'no_lang_code', 'name', 'Procter & Gamble (Germany)'),
(51971, 43815, 'no_lang_code', 'name', 'Kawasaki Heavy Industries (Japan)'),
(51972, 43815, 'ja', 'name', 'å·å“Žé‡å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(51973, 43816, 'no_lang_code', 'name', 'Mitsui Mining & Smelting (Japan)'),
(51974, 43816, 'ja', 'name', 'äø‰äŗ•é‡‘å±žé‰±ę„­ę Ŗå¼ä¼šē¤¾'),
(51975, 43817, 'no_lang_code', 'name', 'Bridgestone (Japan)'),
(51976, 43817, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ–ćƒŖćƒ‚ć‚¹ćƒˆćƒ³'),
(51977, 43818, 'no_lang_code', 'name', 'Kia Motors (South Korea)'),
(51978, 43818, 'ko', 'name', 'źø°ģ•„ģžė™ģ°Ø'),
(51979, 43819, 'no_lang_code', 'name', 'Dai Nippon Printing (Japan)'),
(51980, 43819, 'ja', 'name', 'å¤§ę—„ęœ¬å°åˆ·'),
(51981, 43820, 'no_lang_code', 'name', 'Brocade (United States)'),
(51982, 43821, 'no_lang_code', 'name', 'Brother Industries (Japan)'),
(51983, 43821, 'ja', 'name', 'ćƒ–ćƒ©ć‚¶ćƒ¼å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(51984, 43822, 'no_lang_code', 'name', 'Daikin (Japan)'),
(51985, 43822, 'ja', 'name', 'ćƒ€ć‚¤ć‚­ćƒ³å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(51986, 43823, 'no_lang_code', 'name', 'GlobalFoundries (United Kingdom)'),
(51987, 43824, 'no_lang_code', 'name', 'Brunswick (United States)'),
(51988, 43825, 'no_lang_code', 'name', 'Kobe Steel (Japan)'),
(51989, 43825, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē„žęˆøč£½é‹¼ę‰€'),
(51990, 43826, 'no_lang_code', 'name', 'Dana (United States)'),
(51991, 43827, 'no_lang_code', 'name', 'Mitutoyo Corporation (Japan)'),
(51992, 43827, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŸćƒ„ćƒˆćƒØ'),
(51993, 43828, 'no_lang_code', 'name', 'Kohler (United States)'),
(51994, 43829, 'no_lang_code', 'name', 'Callaway Golf (United States)'),
(51995, 43830, 'no_lang_code', 'name', 'Acushnet (United States)'),
(51996, 43831, 'no_lang_code', 'name', 'ExxonMobil (Norway)'),
(51997, 43832, 'no_lang_code', 'name', 'Nintendo (Japan)'),
(51998, 43832, 'ja', 'name', 'ä»»å¤©å ‚ę Ŗå¼ä¼šē¤¾'),
(51999, 43833, 'no_lang_code', 'name', 'Grace (United States)'),
(52000, 43834, 'no_lang_code', 'name', 'Murata Machinery (Japan)'),
(52001, 43834, 'ja', 'name', 'ę‘ē”°ę©Ÿę¢°ę Ŗå¼ä¼šē¤¾'),
(52002, 43835, 'no_lang_code', 'name', 'Nippon Paint (Japan)'),
(52003, 43835, 'ja', 'name', 'ę—„ęœ¬ćƒšć‚¤ćƒ³ćƒˆćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(52004, 43836, 'no_lang_code', 'name', 'Graphic Packaging (United States)'),
(52005, 43837, 'no_lang_code', 'name', 'Murata (Japan)'),
(52006, 43837, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę‘ē”°č£½ä½œę‰€'),
(52007, 43838, 'no_lang_code', 'name', 'Nippon Sheet Glass (Japan)'),
(52008, 43838, 'ja', 'name', 'ę—„ęœ¬ęæē”å­ę Ŗå¼ä¼šē¤¾'),
(52009, 43839, 'no_lang_code', 'name', 'DIC (Japan)'),
(52010, 43839, 'ja', 'name', 'ćƒ‡ć‚£ćƒ¼ć‚¢ć‚¤ć‚·ćƒ¼'),
(52011, 43840, 'no_lang_code', 'name', 'Kubota (Japan)'),
(52012, 43840, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒœć‚æ'),
(52013, 43841, 'no_lang_code', 'name', 'Nanya Technology (Taiwan)'),
(52014, 43841, 'zh', 'name', 'å—äŗžē§‘ęŠ€'),
(52015, 43842, 'no_lang_code', 'name', 'Nippon Soken (Japan)'),
(52016, 43842, 'ja', 'name', 'ę—„ęœ¬ē·ē ”'),
(52017, 43843, 'no_lang_code', 'name', 'Guardian Industries (United States)'),
(52018, 43844, 'no_lang_code', 'name', 'Diebold Nixdorf (United States)'),
(52019, 43845, 'no_lang_code', 'name', 'Nitto (Japan)'),
(52020, 43845, 'ja', 'name', 'ę—„ę±é›»å·„ę Ŗå¼ä¼šē¤¾'),
(52021, 43846, 'no_lang_code', 'name', 'HannStar Display (Taiwan)');
INSERT INTO `ror_settings` VALUES
(52022, 43846, 'zh', 'name', 'ē€šå®‡å½©ę™¶č‚”ä»½ęœ‰é™å…¬åø'),
(52023, 43847, 'no_lang_code', 'name', 'Kuraray (Japan)'),
(52024, 43847, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒ©ćƒ¬'),
(52025, 43848, 'no_lang_code', 'name', 'Digimarc (United States)'),
(52026, 43849, 'no_lang_code', 'name', 'Nordson (United States)'),
(52027, 43850, 'no_lang_code', 'name', 'Novatek Microelectronics (Taiwan)'),
(52028, 43850, 'zh', 'name', 'čÆč© ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(52029, 43851, 'no_lang_code', 'name', 'NGK Spark Plug (Japan)'),
(52030, 43851, 'ja', 'name', 'ę—„ęœ¬ē‰¹ę®Šé™¶ę„­ę Ŗå¼ä¼šē¤¾'),
(52031, 43852, 'en', 'name', 'Heidelberg Printing Machines AG'),
(52032, 43852, 'no_lang_code', 'name', 'Heidelberger Druckmaschinen (Germany)'),
(52033, 43853, 'no_lang_code', 'name', 'NHK Spring (Japan)'),
(52034, 43853, 'ja', 'name', 'ę—„ęœ¬ē™ŗę”ę Ŗå¼ä¼šē¤¾'),
(52035, 43854, 'no_lang_code', 'name', 'Lattice Semiconductor (United States)'),
(52036, 43855, 'no_lang_code', 'name', 'Nichia Corporation (Japan)'),
(52037, 43855, 'ja', 'name', 'ę—„äŗœåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(52038, 43856, 'no_lang_code', 'name', 'NSK (Japan)'),
(52039, 43856, 'ja', 'name', 'ę—„ęœ¬ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(52040, 43857, 'no_lang_code', 'name', 'Heidenhain (Germany)'),
(52041, 43858, 'no_lang_code', 'name', 'DirecTV (United States)'),
(52042, 43859, 'no_lang_code', 'name', 'NTN (Japan)'),
(52043, 43859, 'ja', 'name', 'NTNę Ŗå¼ä¼šē¤¾'),
(52044, 43860, 'no_lang_code', 'name', 'Nidec (Japan)'),
(52045, 43860, 'ja', 'name', 'ę—„ęœ¬é›»ē”£ę Ŗå¼ä¼šē¤¾'),
(52046, 43861, 'no_lang_code', 'name', 'Henkel (United States)'),
(52047, 43862, 'no_lang_code', 'name', 'Lear (Germany)'),
(52048, 43863, 'no_lang_code', 'name', 'Disco (japan)'),
(52049, 43863, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‡ć‚£ć‚¹ć‚³'),
(52050, 43864, 'no_lang_code', 'name', 'Oki Electric Industry (Japan)'),
(52051, 43864, 'ja', 'name', 'ę²–é›»ę°—å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(52052, 43865, 'no_lang_code', 'name', 'Nidek (Japan)'),
(52053, 43865, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ‡ćƒƒć‚Æ'),
(52054, 43866, 'no_lang_code', 'name', 'Lenovo (Singapore)'),
(52055, 43867, 'no_lang_code', 'name', 'Dolby (United States)'),
(52056, 43868, 'no_lang_code', 'name', 'Leviton (United States)'),
(52057, 43869, 'no_lang_code', 'name', 'Nifco (Japan)'),
(52058, 43869, 'ja', 'name', 'ćƒ‹ćƒ•ć‚³'),
(52059, 43870, 'no_lang_code', 'name', 'Nihon Dempa Kogyo (Japan)'),
(52060, 43870, 'ja', 'name', 'ę—„ęœ¬é›»ę³¢å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(52061, 43871, 'no_lang_code', 'name', 'Western Digital (Netherlands)'),
(52062, 43872, 'no_lang_code', 'name', 'Nikon (Japan)'),
(52063, 43872, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ć‚³ćƒ³'),
(52064, 43873, 'no_lang_code', 'name', 'OSRAM (United States)'),
(52065, 43874, 'no_lang_code', 'name', 'ResMed (Australia)'),
(52066, 43875, 'no_lang_code', 'name', 'Dongbu HiTek (South Korea)'),
(52067, 43875, 'ko', 'name', 'ė™ė¶€ ķ•˜ģ“ķ…'),
(52068, 43876, 'no_lang_code', 'name', 'Himax (Taiwan)'),
(52069, 43876, 'zh', 'name', '儇景光電'),
(52070, 43877, 'no_lang_code', 'name', 'Silicon Labs (United States)'),
(52071, 43878, 'no_lang_code', 'name', 'Qorvo (United States)'),
(52072, 43879, 'no_lang_code', 'name', 'Siliconware Precision Industries (Taiwan)'),
(52073, 43879, 'zh', 'name', 'ę­”čæŽä¾†åˆ°ēŸ½å“'),
(52074, 43880, 'no_lang_code', 'name', 'Magna International (United States)'),
(52075, 43881, 'no_lang_code', 'name', 'Richtek Technology (Taiwan)'),
(52076, 43881, 'zh', 'name', 'ē«‹éŒ”ē§‘ęŠ€'),
(52077, 43882, 'no_lang_code', 'name', 'Panduit (United States)'),
(52078, 43883, 'no_lang_code', 'name', 'Ricoh (Japan)'),
(52079, 43883, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŖć‚³ćƒ¼'),
(52080, 43884, 'no_lang_code', 'name', 'Solid (South Korea)'),
(52081, 43884, 'ko', 'name', 'ģ£¼ģ‹ķšŒģ‚¬ ģ ė¦¬ķ…Œķ¬ 설립'),
(52082, 43885, 'no_lang_code', 'name', 'Skyworks Solutions (United States)'),
(52083, 43886, 'no_lang_code', 'name', 'SMC Corporation (Japan)'),
(52084, 43886, 'ja', 'name', 'SMC ę Ŗå¼ä¼šē¤¾'),
(52085, 43887, 'no_lang_code', 'name', 'Tokyo Ohka Kogyo (Japan)'),
(52086, 43887, 'ja', 'name', 'ę±äŗ¬åæœåŒ–å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(52087, 43888, 'no_lang_code', 'name', 'Smith & Nephew (United States)'),
(52088, 43889, 'no_lang_code', 'name', 'Round Rock Research (United States)'),
(52089, 43890, 'no_lang_code', 'name', 'Topcon (Japan)'),
(52090, 43890, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ—ć‚³ćƒ³'),
(52091, 43891, 'no_lang_code', 'name', 'RPX (United States)'),
(52092, 43892, 'no_lang_code', 'name', 'Pioneer (Japan)'),
(52093, 43892, 'ja', 'name', 'ćƒ‘ć‚¤ć‚Ŗćƒ‹ć‚¢ę Ŗå¼ä¼šē¤¾'),
(52094, 43893, 'no_lang_code', 'name', 'Toshiba Machine (Japan)'),
(52095, 43893, 'ja', 'name', 'ę±čŠę©Ÿę¢°'),
(52096, 43894, 'no_lang_code', 'name', 'Saudi Arabia Basic Industries (Netherlands)'),
(52097, 43895, 'no_lang_code', 'name', 'Cypress Semiconductor Corporation (United States)'),
(52098, 43896, 'no_lang_code', 'name', 'PixArt (Taiwan)'),
(52099, 43896, 'zh', 'name', 'åŽŸē›øęˆåƒå…¬åø'),
(52100, 43897, 'no_lang_code', 'name', 'TDK (China)'),
(52101, 43897, 'zh', 'name', 'TDKę Ŗå¼ä¼šē¤¾'),
(52102, 43898, 'no_lang_code', 'name', 'Polaroid (United States)'),
(52103, 43899, 'no_lang_code', 'name', 'Amer Sports (France)'),
(52104, 43900, 'no_lang_code', 'name', 'SPX Corporation (United States)'),
(52105, 43901, 'no_lang_code', 'name', 'Toyo Tire and Rubber (Japan)'),
(52106, 43901, 'ja', 'name', 'ę±ę“‹ć‚“ćƒ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(52107, 43902, 'no_lang_code', 'name', 'Power Integrations (United States)'),
(52108, 43903, 'no_lang_code', 'name', 'Sanden (Japan)'),
(52109, 43903, 'ja', 'name', 'ć‚µćƒ³ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(52110, 43904, 'no_lang_code', 'name', 'Victor (Japan)'),
(52111, 43904, 'ja', 'name', 'ę—„ęœ¬ćƒ“ć‚Æć‚æćƒ¼ę Ŗå¼ä¼šē¤¾'),
(52112, 43905, 'no_lang_code', 'name', 'Primax Electronics (Taiwan)'),
(52113, 43906, 'no_lang_code', 'name', 'Toyoda Gosei (Japan)'),
(52114, 43906, 'ja', 'name', 'č±Šē”°åˆęˆ'),
(52115, 43907, 'no_lang_code', 'name', 'Visteon (United States)'),
(52116, 43908, 'no_lang_code', 'name', 'Rambus (United States)'),
(52117, 43909, 'no_lang_code', 'name', 'Toyota Industries (Japan)'),
(52118, 43909, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č±Šē”°č‡Ŗå‹•ē¹”ę©Ÿ,'),
(52119, 43910, 'no_lang_code', 'name', 'Voith (Germany)'),
(52120, 43911, 'no_lang_code', 'name', 'Stanley Electric (Japan)'),
(52121, 43911, 'ja', 'name', 'ć‚¹ć‚æćƒ³ćƒ¬ćƒ¼é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(52122, 43912, 'no_lang_code', 'name', 'RCA (United States)'),
(52123, 43913, 'no_lang_code', 'name', 'Realtek (Taiwan)'),
(52124, 43913, 'zh', 'name', 'ē‘žę˜±åŠå°Žé«”č‚”ä»½ęœ‰é™å…¬åø'),
(52125, 43914, 'no_lang_code', 'name', 'STATS ChipPAC (Singapore)'),
(52126, 43915, 'no_lang_code', 'name', 'Trading Technologies (United States)'),
(52127, 43916, 'no_lang_code', 'name', 'Trimble (United States)'),
(52128, 43917, 'no_lang_code', 'name', 'Stine Seed (United States)'),
(52129, 43918, 'no_lang_code', 'name', 'STMicroelectronics (Netherlands)'),
(52130, 43919, 'no_lang_code', 'name', 'Tsubakimoto Chain (Japan)'),
(52131, 43919, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę¤æęœ¬ćƒć‚Øć‚¤ćƒ³'),
(52132, 43920, 'no_lang_code', 'name', 'STMicroelectronics (United States)'),
(52133, 43921, 'no_lang_code', 'name', 'Adidas (United States)'),
(52134, 43922, 'no_lang_code', 'name', 'Sumco Corporation (Japan)'),
(52135, 43922, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾SUMCO'),
(52136, 43923, 'no_lang_code', 'name', 'Winbond (Taiwan)'),
(52137, 43923, 'zh', 'name', 'čÆé‚¦é›»å­å…¬åø'),
(52138, 43924, 'no_lang_code', 'name', 'Sumitomo Heavy Industries (Japan)'),
(52139, 43924, 'ja', 'name', 'ä½å‹é‡ę©Ÿę¢°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(52140, 43925, 'no_lang_code', 'name', 'Whitaker House'),
(52141, 43926, 'no_lang_code', 'name', 'TDK (Japan)'),
(52142, 43926, 'ja', 'name', 'TDKę Ŗå¼ä¼šē¤¾'),
(52143, 43927, 'no_lang_code', 'name', 'ON Semiconductor (United States)'),
(52144, 43928, 'no_lang_code', 'name', 'Unicharm (Japan)'),
(52145, 43928, 'ja', 'name', 'ćƒ¦ćƒ‹Ā·ćƒćƒ£ćƒ¼ćƒ ę Ŗå¼ä¼šē¤¾'),
(52146, 43929, 'no_lang_code', 'name', 'Sumitomo Riko (Japan)'),
(52147, 43929, 'ja', 'name', 'ä½å‹ē†å·„ę Ŗå¼ä¼šē¤¾'),
(52148, 43930, 'no_lang_code', 'name', 'Wistron (Taiwan)'),
(52149, 43930, 'zh', 'name', 'ē·Æå‰µč³‡é€šč‚”ä»½ęœ‰é™å…¬åø'),
(52150, 43931, 'no_lang_code', 'name', 'TEAC (Japan)'),
(52151, 43931, 'ja', 'name', 'ćƒ†ć‚£ć‚¢ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(52152, 43932, 'no_lang_code', 'name', 'Semiconductor Energy Laboratory (Japan)'),
(52153, 43932, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åŠå°Žä½“ć‚Øćƒćƒ«ć‚®ćƒ¼ē ”ē©¶ę‰€'),
(52154, 43933, 'no_lang_code', 'name', 'Yahoo (United States)'),
(52155, 43934, 'no_lang_code', 'name', 'Semiconductor Manufacturing International (China)'),
(52156, 43934, 'zh', 'name', 'äø­čŠÆå›½é™…é›†ęˆē”µč·Æåˆ¶é€ ęœ‰é™å…¬åø'),
(52157, 43935, 'no_lang_code', 'name', 'Fortive (United States)'),
(52158, 43936, 'no_lang_code', 'name', 'Yamaha (Japan)'),
(52159, 43936, 'ja', 'name', 'ćƒ¤ćƒžćƒę Ŗå¼ä¼šē¤¾'),
(52160, 43937, 'no_lang_code', 'name', 'Suzuki (Japan)'),
(52161, 43937, 'ja', 'name', 'ć‚¹ć‚ŗć‚­ę Ŗå¼ä¼šē¤¾'),
(52162, 43938, 'no_lang_code', 'name', 'United Microelectronics (Taiwan)'),
(52163, 43938, 'zh', 'name', 'čÆčÆé›»å­'),
(52164, 43939, 'no_lang_code', 'name', 'Yaskawa Electric (Japan)'),
(52165, 43939, 'ja', 'name', 'å®‰å·é›»ę©Ÿ'),
(52166, 43940, 'no_lang_code', 'name', 'Taiyo Yuden (Japan)'),
(52167, 43940, 'ja', 'name', 'å¤Ŗé™½čŖ˜é›»ę Ŗå¼ä¼šē¤¾'),
(52168, 43941, 'no_lang_code', 'name', 'Yazaki (Japan)'),
(52169, 43941, 'ja', 'name', 'ēŸ¢å“Žē·ę„­ę Ŗå¼ä¼šē¤¾'),
(52170, 43942, 'no_lang_code', 'name', 'Yeda Research and Development (Israel)'),
(52171, 43942, 'he', 'name', 'ידע חברה ×œ×ž×—×§×Ø ופתוח'),
(52172, 43943, 'no_lang_code', 'name', 'TCL (China)'),
(52173, 43943, 'zh', 'name', 'TCLē§‘ęŠ€é›†å›¢'),
(52174, 43944, 'no_lang_code', 'name', 'Tetra Laval (Switzerland)'),
(52175, 43945, 'no_lang_code', 'name', 'YKK (Japan)'),
(52176, 43945, 'ja', 'name', 'å‰ē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(52177, 43946, 'no_lang_code', 'name', 'Shimano (Japan)'),
(52178, 43946, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ćƒžćƒŽ'),
(52179, 43947, 'no_lang_code', 'name', 'ShinEtsu Chemical (Japan)'),
(52180, 43947, 'ja', 'name', 'äæ”č¶ŠåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(52181, 43948, 'no_lang_code', 'name', 'Yokogawa Electric (Japan)'),
(52182, 43948, 'ja', 'name', 'ęØŖę²³é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(52183, 43949, 'no_lang_code', 'name', 'Shinko Electric Industries (Japan)'),
(52184, 43949, 'ja', 'name', '新光電気巄愭'),
(52185, 43950, 'en', 'name', 'Kamehameha Schools'),
(52186, 43951, 'no_lang_code', 'name', 'AccessTR'),
(52187, 43952, 'no_lang_code', 'name', 'Advocates for Human Potential (United States)'),
(52188, 43953, 'no_lang_code', 'name', 'KRA (United States)'),
(52189, 43954, 'en', 'name', 'American School for the Deaf'),
(52190, 43955, 'en', 'name', 'Lee Countys Department of Public Safety'),
(52191, 43956, 'no_lang_code', 'name', 'Applied Sciences Laboratory (United States)'),
(52192, 43957, 'no_lang_code', 'name', 'Aspen Professional Services (United States)'),
(52193, 43958, 'en', 'name', 'Baylor Institute for Rehabilitation'),
(52194, 43959, 'no_lang_code', 'name', 'FIH Mobile (China)'),
(52195, 43960, 'en', 'name', 'San Diego Association of Governments'),
(52196, 43961, 'en', 'name', 'Connecticut Department of Rehabilitation Services'),
(52197, 43962, 'en', 'name', 'Mississippi Youth Wheelchair League'),
(52198, 43963, 'en', 'name', 'Center for Independent Living'),
(52199, 43964, 'en', 'name', 'Missouri Assistive Technology'),
(52200, 43965, 'en', 'name', 'Center for Career and Community Research'),
(52201, 43966, 'no_lang_code', 'name', 'GlobalFoundries (Cayman Islands)'),
(52202, 43967, 'en', 'name', 'Mount Sinai Beth Israel'),
(52203, 43968, 'en', 'name', 'Southwest Educational Development Center'),
(52204, 43969, 'en', 'name', 'National Council on Rehabilitation Education'),
(52205, 43970, 'en', 'name', 'Spinal Cord Injury Association'),
(52206, 43971, 'no_lang_code', 'name', 'Garrett Technologies (United States)'),
(52207, 43972, 'en', 'name', 'Virginia Assistive Technology System'),
(52208, 43973, 'en', 'name', 'Brain Injury Association of New York State'),
(52209, 43974, 'en', 'name', 'Institute for Community Inclusion'),
(52210, 43975, 'en', 'name', 'North Dakota Protection and Advocacy Project'),
(52211, 43976, 'en', 'name', 'Disability Rights New Jersey'),
(52212, 43977, 'en', 'name', 'Georgia Tech Tools for Life'),
(52213, 43978, 'en', 'name', 'World Rehabilitation Fund'),
(52214, 43979, 'en', 'name', 'Advocado Press'),
(52215, 43980, 'en', 'name', 'Association for the Severely Handicapped'),
(52216, 43981, 'en', 'name', 'Western New York Independent Living'),
(52217, 43982, 'en', 'name', 'Boston Center for Independent Living'),
(52218, 43983, 'no_lang_code', 'name', 'Alpha and Omega Semiconductor (Bermuda)'),
(52219, 43984, 'no_lang_code', 'name', 'ON Semiconductor (United Kingdom)'),
(52220, 43985, 'en', 'name', 'National Association of the Deaf'),
(52221, 43986, 'en', 'name', 'Emory Rehabilitation Hospital'),
(52222, 43987, 'no_lang_code', 'name', 'Farus (United States)'),
(52223, 43988, 'no_lang_code', 'name', 'PureTech (United States)'),
(52224, 43989, 'no_lang_code', 'name', 'Akikusa Gakuen Junior College'),
(52225, 43989, 'ja', 'name', 'ē§‹č‰å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(52226, 43990, 'en', 'name', 'Akita Nutrition Junior College'),
(52227, 43990, 'ja', 'name', 'ē§‹ē”°ę „é¤ŠēŸ­ęœŸå¤§å­¦'),
(52228, 43991, 'en', 'name', 'Uwajima Fisheries High school'),
(52229, 43991, 'ja', 'name', 'ę„›åŖ›ēœŒē«‹å®‡å’Œå³¶ę°“ē”£é«˜ē­‰å­¦ę ”'),
(52230, 43992, 'en', 'name', 'Ehime Prefectural Education Center'),
(52231, 43992, 'ja', 'name', 'ę„›åŖ›ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52232, 43993, 'en', 'name', 'Asia Center for Air Pollution Research'),
(52233, 43993, 'ja', 'name', 'ć‚¢ć‚øć‚¢å¤§ę°—ę±šęŸ“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(52234, 43994, 'en', 'name', 'Niihama City Sumino Elementary School'),
(52235, 43994, 'ja', 'name', 'ę–°å±…ęµœåø‚ē«‹č§’é‡Žå°å­¦ę ”'),
(52236, 43995, 'no_lang_code', 'name', 'Chiba Keiai Junior College'),
(52237, 43995, 'ja', 'name', 'åƒč‘‰ę•¬ę„›ēŸ­ęœŸå¤§å­¦'),
(52238, 43996, 'en', 'name', 'Advanced Science, Technology & Management Research Institute of Kyoto'),
(52239, 43996, 'ja', 'name', 'äŗ¬éƒ½é«˜åŗ¦ęŠ€č”“ē ”ē©¶ę‰€'),
(52240, 43997, 'en', 'name', 'International Pacific University Women''s College'),
(52241, 43997, 'ja', 'name', 'ē’°å¤Ŗå¹³ę“‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(52242, 43998, 'en', 'name', 'Chiba Museum of Science and Industry'),
(52243, 43998, 'ja', 'name', 'åƒč‘‰ēœŒē«‹ē¾ä»£ē”£ę„­ē§‘å­¦é¤Ø'),
(52244, 43999, 'no_lang_code', 'name', 'Akita Prefectural Museum'),
(52245, 43999, 'ja', 'name', 'ē§‹ē”°ēœŒē«‹åšē‰©é¤Ø'),
(52246, 44000, 'en', 'name', 'Chiba Prefectural Education Center'),
(52247, 44000, 'ja', 'name', 'åƒč‘‰ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52248, 44001, 'en', 'name', 'Agency for Cultural Affairs'),
(52249, 44001, 'ja', 'name', 'ę–‡åŒ–åŗ'),
(52250, 44002, 'en', 'name', 'Research Institute of Environment, Agriculture and Fisheries, Osaka Prefecture'),
(52251, 44002, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹ē’°å¢ƒč¾²ęž—ę°“ē”£ē·åˆē ”ē©¶ę‰€'),
(52252, 44003, 'en', 'name', 'Akita Prefectural Education Center'),
(52253, 44003, 'ja', 'name', 'ē§‹ē”°ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52254, 44004, 'en', 'name', 'Funabashi Keimei High School'),
(52255, 44004, 'ja', 'name', 'åƒč‘‰ēœŒē«‹čˆ¹ę©‹å•“ę˜Žé«˜ē­‰å­¦ę ”'),
(52256, 44005, 'en', 'name', 'Aichi Bunkyo Women''s College'),
(52257, 44005, 'ja', 'name', 'ę„›ēŸ„ę–‡ę•™å„³å­ēŸ­ęœŸå¤§å­¦'),
(52258, 44006, 'en', 'name', 'Akita Research Institute for Food and Brewing'),
(52259, 44006, 'ja', 'name', 'ē§‹ē”°ēœŒē·åˆé£Ÿå“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(52260, 44007, 'en', 'name', 'Foundation Diamond Aging Society Research Foundation'),
(52261, 44007, 'ja', 'name', 'ćƒ€ć‚¤ćƒ¤é«˜é½¢ē¤¾ä¼šē ”ē©¶č²”å›£'),
(52262, 44008, 'en', 'name', 'Chiba prefectural Matsudo international high school'),
(52263, 44008, 'ja', 'name', 'ę¾ęˆøå›½éš›é«˜ē­‰å­¦ę ”'),
(52264, 44009, 'no_lang_code', 'name', 'Aichi Gakusen College'),
(52265, 44009, 'ja', 'name', 'ę„›ēŸ„å­¦ę³‰ēŸ­ęœŸå¤§å­¦'),
(52266, 44010, 'en', 'name', 'Akita Industrial Technology Center'),
(52267, 44010, 'ja', 'name', 'ē§‹ē”°ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(52268, 44011, 'en', 'name', 'Chiba Prefectural Sawara High School'),
(52269, 44011, 'ja', 'name', 'åƒč‘‰ēœŒē«‹ä½åŽŸé«˜ē­‰å­¦ę ”'),
(52270, 44012, 'en', 'name', 'Chiba Prefectural Institute of Public Health'),
(52271, 44012, 'ja', 'name', 'åƒč‘‰ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(52272, 44013, 'en', 'name', 'Aichi Prefectural Higashiura High School'),
(52273, 44013, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ę±ęµ¦é«˜ē­‰å­¦ę ”'),
(52274, 44014, 'en', 'name', 'Katori City Higashiodo Elementary School'),
(52275, 44014, 'ja', 'name', 'é¦™å–åø‚ē«‹ę±å¤§ęˆøå°å­¦ę ”'),
(52276, 44015, 'en', 'name', 'Chiba Prefectural Kimitsu Aoba High School'),
(52277, 44015, 'ja', 'name', 'åƒč‘‰ēœŒē«‹å›ę“„é’č‘‰é«˜ē­‰å­¦ę ”'),
(52278, 44016, 'en', 'name', 'Aichi Medical College for Physical and Occupational Therapy'),
(52279, 44016, 'ja', 'name', 'ę„›ēŸ„åŒ»ē™‚å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(52280, 44017, 'en', 'name', 'Japan Chemical Analysis Center'),
(52281, 44017, 'ja', 'name', 'ę—„ęœ¬åˆ†ęžć‚»ćƒ³ć‚æćƒ¼'),
(52282, 44018, 'en', 'name', 'Ancient Orient Museum'),
(52283, 44018, 'ja', 'name', 'å¤ä»£ć‚ŖćƒŖć‚Øćƒ³ćƒˆåšē‰©é¤Ø'),
(52284, 44019, 'en', 'name', 'Makino Botanical Garden'),
(52285, 44019, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹ē‰§é‡Žę¤ē‰©åœ’'),
(52286, 44020, 'en', 'name', 'Aomori Akenohoshi Junior College'),
(52287, 44020, 'ja', 'name', 'é’ę£®ę˜Žć®ę˜ŸēŸ­ęœŸå¤§å­¦'),
(52288, 44021, 'en', 'name', 'Aichi Prefectural Nisshin West High School'),
(52289, 44021, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ę—„é€²č„æé«˜ē­‰å­¦ę ”'),
(52290, 44022, 'en', 'name', 'Institute of Systems, Information Technologies and Nanotechnologies'),
(52291, 44022, 'ja', 'name', 'ä¹å·žå…ˆē«Æē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(52292, 44023, 'en', 'name', 'Aomori Chuo Junior College'),
(52293, 44023, 'ja', 'name', 'é’ę£®äø­å¤®ēŸ­ęœŸå¤§å­¦'),
(52294, 44024, 'en', 'name', 'Okazaki Senior High School'),
(52295, 44024, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å²”å“Žé«˜ē­‰å­¦ę ”'),
(52296, 44025, 'en', 'name', 'Foundation Learning Software Information Research Center'),
(52297, 44025, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å­¦ēæ’ć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢ęƒ…å ±ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(52298, 44026, 'en', 'name', 'Aomori High School'),
(52299, 44026, 'ja', 'name', 'é’ę£®ēœŒē«‹é’ę£®é«˜ē­‰å­¦ę ”'),
(52300, 44027, 'en', 'name', 'Fukuoka Women''s Junior College'),
(52301, 44027, 'ja', 'name', 'ē¦å²”å„³å­ēŸ­ęœŸå¤§å­¦'),
(52302, 44028, 'en', 'name', 'College of Healthcare Management'),
(52303, 44028, 'ja', 'name', 'äæå„åŒ»ē™‚ēµŒå–¶å¤§å­¦'),
(52304, 44029, 'no_lang_code', 'name', 'Mitsui Bunko'),
(52305, 44029, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ 三井文庫'),
(52306, 44030, 'en', 'name', 'Aomori Prefectural Industrial Technology Center'),
(52307, 44030, 'ja', 'name', 'é’ę£®ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(52308, 44031, 'en', 'name', 'Fukushima Prefectural Aizu Technical High School'),
(52309, 44031, 'ja', 'name', 'ē¦å³¶ēœŒē«‹ä¼šę“„å·„ę„­é«˜ē­‰å­¦ę ”'),
(52310, 44032, 'en', 'name', 'Foundation Nerve Institute'),
(52311, 44032, 'aa', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žēµŒē ”ē©¶ę‰€'),
(52312, 44033, 'en', 'name', 'Aichi Prefectural Chiryu East Koto School'),
(52313, 44033, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ēŸ„ē«‹ę±é«˜ē­‰å­¦ę ”'),
(52314, 44034, 'en', 'name', 'Fukushima Prefectural Asaka High School'),
(52315, 44034, 'ja', 'name', 'ē¦å³¶ēœŒē«‹å®‰ē©é«˜ē­‰å­¦ę ”'),
(52316, 44035, 'en', 'name', 'Sendai Municipal Sendai Commercial High School'),
(52317, 44035, 'ja', 'name', 'ä»™å°å•†ę„­é«˜ē­‰å­¦ę ”'),
(52318, 44036, 'en', 'name', 'Aomori Prefectural Local Museum'),
(52319, 44036, 'aa', 'name', 'é’ę£®ēœŒē«‹éƒ·åœŸé¤Ø'),
(52320, 44037, 'en', 'name', 'Kyoto Human Rights Research Institute'),
(52321, 44037, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ äø–ē•ŒäŗŗęØ©å•é”Œē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(52322, 44038, 'en', 'name', 'Fukushima Medical University Hospital'),
(52323, 44038, 'ja', 'name', 'ē¦å³¶ēœŒē«‹åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(52324, 44039, 'en', 'name', 'Fukuoka Junior College for Kindergarten Teachers'),
(52325, 44039, 'ja', 'name', 'ē¦å²”ć“ć©ć‚‚ēŸ­ęœŸå¤§å­¦'),
(52326, 44040, 'en', 'name', 'Fukushima Prefectural Museum of Art'),
(52327, 44040, 'ja', 'name', 'ē¦å³¶ēœŒē«‹ē¾Žč”“é¤Ø'),
(52328, 44041, 'en', 'name', 'Foundation Osaka City Museum Association'),
(52329, 44041, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗåø‚åšē‰©é¤Øå”ä¼š'),
(52330, 44042, 'en', 'name', 'Fukushima Prefectural Police'),
(52331, 44042, 'ja', 'name', 'ē¦å³¶ēœŒč­¦åÆŸęœ¬éƒØ'),
(52332, 44043, 'en', 'name', 'Institute of Politics and Economy'),
(52333, 44043, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę”æę²»ēµŒęøˆē ”ē©¶ę‰€'),
(52334, 44044, 'en', 'name', 'Aichi Prefectural Education Center'),
(52335, 44044, 'ja', 'name', 'ę„›ēŸ„ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52336, 44045, 'en', 'name', 'Railway Technical Research Institute'),
(52337, 44045, 'ja', 'name', 'é‰„é“ē·åˆęŠ€č”“ē ”ē©¶ę‰€'),
(52338, 44046, 'en', 'name', 'Fukushima Prefectural Culture Center'),
(52339, 44046, 'ja', 'name', 'ē¦å³¶ēœŒę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(52340, 44047, 'en', 'name', 'Aoyama Gakuin Women''s Junior College'),
(52341, 44047, 'ja', 'name', 'é’å±±å­¦é™¢å„³å­ēŸ­ęœŸå¤§å­¦'),
(52342, 44048, 'en', 'name', 'Denenchofu Lutheran Kindergarten'),
(52343, 44049, 'en', 'name', 'Architectural Institute of Japan'),
(52344, 44049, 'ja', 'name', 'ę—„ęœ¬å»ŗēÆ‰å­¦ä¼š'),
(52345, 44050, 'en', 'name', 'Hekinan Technical High School'),
(52346, 44050, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ē¢§å—å·„ę„­é«˜ē­‰å­¦ę ”'),
(52347, 44051, 'en', 'name', 'Japan Economic Research Institute'),
(52348, 44052, 'en', 'name', 'Aichi Prefectural Narumi High School'),
(52349, 44052, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹é³“ęµ·é«˜ē­‰å­¦ę ”'),
(52350, 44053, 'en', 'name', 'Fukushima Prefecture History Museum'),
(52351, 44053, 'ja', 'name', 'ē¦å³¶ēœŒę­“å²č³‡ę–™é¤ØćÆ'),
(52352, 44054, 'en', 'name', 'Statistical Information Institute for Consulting Analysis'),
(52353, 44054, 'ja', 'name', 'ēµ±čØˆęƒ…å ±ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(52354, 44055, 'en', 'name', 'Doshisha International Junior and Senior High School'),
(52355, 44056, 'no_lang_code', 'name', 'Fukushima Technology Centre (Japan)'),
(52356, 44056, 'ja', 'name', 'ē¦å³¶ēœŒćƒć‚¤ćƒ†ć‚Æćƒ—ćƒ©ć‚¶'),
(52357, 44057, 'en', 'name', 'National Institute of Technology, Ariake College'),
(52358, 44057, 'ja', 'name', 'ęœ‰ę˜Žå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(52359, 44058, 'en', 'name', 'Foundation Wakasa Wan Energy Research Center'),
(52360, 44058, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ č‹„ē‹­ę¹¾ć‚Øćƒćƒ«ć‚®ćƒ¼ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(52361, 44059, 'en', 'name', 'Gunma Prefectural Museum of History'),
(52362, 44060, 'en', 'name', 'Doshisha Kaori Junior and Senior High School'),
(52363, 44061, 'en', 'name', 'Osaka City Cultural Properties Association'),
(52364, 44061, 'ja', 'name', 'å¤§é˜Ŗę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(52365, 44062, 'en', 'name', 'Asahi City Board of Education'),
(52366, 44062, 'ja', 'name', 'ę—­åø‚ę•™č‚²å§”å“”ä¼š'),
(52367, 44063, 'en', 'name', 'Aichi Prefectural Ichinomiya Nishi High School'),
(52368, 44063, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹äø€å®®č„æé«˜ē­‰å­¦ę ”'),
(52369, 44064, 'en', 'name', 'Fuzzy Systems Institute'),
(52370, 44064, 'ja', 'name', 'ćƒ•ć‚”ć‚øć‚£ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę‰€'),
(52371, 44065, 'en', 'name', 'Aicihi Prefectural Kariya High School'),
(52372, 44065, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹åˆˆč°·é«˜ē­‰å­¦ę ”'),
(52373, 44066, 'en', 'name', 'Asahikawa Museum of Sculpture'),
(52374, 44066, 'ja', 'name', 'äø­åŽŸę‚ŒäŗŒéƒŽčØ˜åæµę—­å·åø‚å½«åˆ»ē¾Žč”“é¤Ø'),
(52375, 44067, 'en', 'name', 'Gakushuin Primary School'),
(52376, 44067, 'ja', 'name', 'å­¦ēæ’é™¢åˆē­‰ē§‘'),
(52377, 44068, 'en', 'name', 'Ehime Prefectural Matsuyama Technical High School'),
(52378, 44068, 'ja', 'name', 'ę„›åŖ›ēœŒē«‹ę¾å±±å·„ę„­é«˜ē­‰å­¦ę ”'),
(52379, 44069, 'en', 'name', 'Fukui City Museum of Natural History'),
(52380, 44070, 'en', 'name', 'Aichi Prefectural Mitsu High School'),
(52381, 44070, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å¾”ę“„é«˜ē­‰å­¦ę ”'),
(52382, 44071, 'en', 'name', 'Gangoji Institute for Research of Cultural Property'),
(52383, 44071, 'ja', 'name', 'å…ƒčˆˆåÆŗę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(52384, 44072, 'en', 'name', 'Asahikawa, Hokkaido Nishi High School'),
(52385, 44072, 'ja', 'name', 'åŒ—ęµ·é“ę—­å·č„æé«˜ē­‰å­¦ę ”'),
(52386, 44073, 'en', 'name', 'Fukui Prefectural Dinosaur Museum'),
(52387, 44073, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹ęē«œåšē‰©é¤Ø'),
(52388, 44074, 'en', 'name', 'Hachinohe Technical High School'),
(52389, 44074, 'ja', 'name', 'é’ę£®ēœŒē«‹å…«ęˆøå·„ę„­é«˜ē­‰å­¦ę ”'),
(52390, 44075, 'en', 'name', 'Okazaki Higashi High School'),
(52391, 44075, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å²”å“Žę±é«˜ē­‰å­¦ę ”'),
(52392, 44076, 'en', 'name', 'Fukui Prefectural Fujishima High School'),
(52393, 44076, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹č—¤å³¶é«˜ē­‰å­¦ę ”'),
(52394, 44077, 'en', 'name', 'Fukui Prefectural Maruoka High School'),
(52395, 44077, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹äøøå²”é«˜ē­‰å­¦ę ”'),
(52396, 44078, 'en', 'name', 'Hakodate Junior College'),
(52397, 44078, 'ja', 'name', 'å‡½é¤ØēŸ­ęœŸå¤§å­¦'),
(52398, 44079, 'en', 'name', 'Ashikaga Junior College'),
(52399, 44079, 'ja', 'name', '足利短期大学'),
(52400, 44080, 'en', 'name', 'Geospatial Information Authority of Japan'),
(52401, 44080, 'ja', 'name', 'å›½åœŸåœ°ē†é™¢'),
(52402, 44081, 'en', 'name', 'Hakodate Otani College'),
(52403, 44081, 'ja', 'name', 'å‡½é¤Øå¤§č°·ēŸ­ęœŸå¤§å­¦'),
(52404, 44082, 'en', 'name', 'Fukui Prefecture Special Education Center'),
(52405, 44082, 'ja', 'name', 'ē¦äŗ•ēœŒē‰¹åˆ„ę”Æę“ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52406, 44083, 'en', 'name', 'Fukuoka College of Health Sciences'),
(52407, 44083, 'ja', 'name', 'ē¦å²”åŒ»ē™‚ēŸ­ęœŸå¤§å­¦'),
(52408, 44084, 'en', 'name', 'Hakuho Women''s College'),
(52409, 44084, 'ja', 'name', 'ē™½é³³å„³å­ēŸ­ęœŸå¤§å­¦'),
(52410, 44085, 'en', 'name', 'Aichi Prefectural Kasugai Higashi High School'),
(52411, 44085, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ę˜„ę—„äŗ•ę±é«˜ē­‰å­¦ę ”'),
(52412, 44086, 'en', 'name', 'Fukuoka Institute of Technology Junior College'),
(52413, 44086, 'ja', 'name', 'ē¦å²”å·„ę„­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(52414, 44087, 'no_lang_code', 'name', 'Fukuoka Jo Gakuin Nursing University'),
(52415, 44087, 'ja', 'name', 'ē¦å²”å„³å­¦é™¢ēœ‹č­·å¤§å­¦'),
(52416, 44088, 'en', 'name', 'Kanagawa Institute of Technology Atsugi Children''s Science Museum'),
(52417, 44088, 'ja', 'name', 'åŽšęœØåø‚å­ć©ć‚‚ē§‘å­¦é¤Ø'),
(52418, 44089, 'en', 'name', 'Komaki Technical High School'),
(52419, 44089, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å°ē‰§å·„ę„­é«˜ē­‰å­¦ę ”'),
(52420, 44090, 'en', 'name', 'Fukuoka Technical High School'),
(52421, 44090, 'ja', 'name', 'ē¦å²”ēœŒē«‹ē¦å²”å·„ę„­é«˜ē­‰å­¦ę ”'),
(52422, 44091, 'en', 'name', 'Meiwa High School'),
(52423, 44091, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ę˜Žå’Œé«˜ē­‰å­¦ę ”'),
(52424, 44092, 'en', 'name', 'National Institute of Technology, Gifu College'),
(52425, 44092, 'ja', 'name', 'å²é˜œå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(52426, 44093, 'en', 'name', 'Fukuoka Prefectural Kokura High School'),
(52427, 44093, 'ja', 'name', 'ē¦å²”ēœŒē«‹å°å€‰é«˜ē­‰å­¦ę ”'),
(52428, 44094, 'en', 'name', 'Hamamatsu University Hospital'),
(52429, 44094, 'ja', 'name', 'ęµœę¾å¤§å­¦ 病院'),
(52430, 44095, 'en', 'name', 'Fukuoka Prefectural Board of Education'),
(52431, 44095, 'ja', 'name', 'ę•™č‚²ć®ē¦å²”ēœŒäŗ‹å‹™ę‰€'),
(52432, 44096, 'en', 'name', 'Akita Prefectural Akita High School'),
(52433, 44096, 'ja', 'name', 'ē§‹ē”°ēœŒē«‹ē§‹ē”°é«˜ē­‰å­¦ę ”'),
(52434, 44097, 'en', 'name', 'Gifu Prefectural Research Institute for Fisheries and Aquatic Environments'),
(52435, 44097, 'ja', 'name', 'å²é˜œēœŒę°“ē”£ē ”ē©¶ę‰€'),
(52436, 44098, 'en', 'name', 'Yabe Junior High School'),
(52437, 44098, 'ja', 'name', '矢部中学栔'),
(52438, 44099, 'en', 'name', 'Aichi Prefectural Okazaki School for the Deaf'),
(52439, 44099, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å²”å“Žč¾å­¦ę ”'),
(52440, 44100, 'en', 'name', 'Gifu Prefectural Gifu Technical High School'),
(52441, 44100, 'ja', 'name', 'å²é˜œēœŒē«‹å²é˜œå·„ę„­é«˜ē­‰å­¦ę ”'),
(52442, 44101, 'en', 'name', 'Benesse Educational Research and Development Institute'),
(52443, 44101, 'ja', 'name', 'ćƒ™ćƒćƒƒć‚»ę•™č‚²ē·åˆē ”ē©¶ę‰€'),
(52444, 44102, 'no_lang_code', 'name', 'Beppu Mizobe Gakuen College'),
(52445, 44102, 'ja', 'name', 'åˆ„åŗœęŗéƒØå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(52446, 44103, 'en', 'name', 'Aichi Prefectural Tsurugi hill high school'),
(52447, 44103, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹é¶“åŸŽäø˜é«˜ē­‰å­¦ę ”'),
(52448, 44104, 'en', 'name', 'Hiroshima Prefectural Police'),
(52449, 44104, 'ja', 'name', '広島県警察'),
(52450, 44105, 'en', 'name', 'Hattori Botanical Laboratory'),
(52451, 44105, 'ja', 'name', 'ęœéƒØę¤ē‰©ē ”ē©¶ę‰€'),
(52452, 44106, 'en', 'name', 'Aichi Prefectural Jishukan Senior High School'),
(52453, 44106, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ę™‚ēæ’é¤Øé«˜ē­‰å­¦ę ”'),
(52454, 44107, 'en', 'name', 'Hiroshima Prefectural Education Center'),
(52455, 44107, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52456, 44108, 'en', 'name', 'Heisei College of Health Sciences'),
(52457, 44108, 'ja', 'name', 'å¹³ęˆåŒ»ē™‚ēŸ­ęœŸå¤§å­¦'),
(52458, 44109, 'en', 'name', 'Higashi Chikushi Junior College'),
(52459, 44109, 'ja', 'name', 'ę±ē­‘ē“«ēŸ­ęœŸå¤§å­¦'),
(52460, 44110, 'en', 'name', 'Gifu Prefectural Research Institute for Forests'),
(52461, 44110, 'ja', 'name', 'å²é˜œēœŒę£®ęž—ē ”ē©¶ę‰€'),
(52462, 44111, 'en', 'name', 'Building Research Institute'),
(52463, 44111, 'ja', 'name', 'ē­‘ę³¢ē ”ē©¶å­¦åœ’éƒ½åø‚äŗ¤ęµå”č­°ä¼š'),
(52464, 44112, 'en', 'name', 'Gifu Prefectural Yaotsu High School'),
(52465, 44112, 'ja', 'name', 'å²é˜œēœŒē«‹å…«ē™¾ę“„é«˜ē­‰å­¦ę ”'),
(52466, 44113, 'no_lang_code', 'name', 'Hokkaido Museum'),
(52467, 44113, 'ja', 'name', 'åŒ—ęµ·é“åšē‰©é¤Ø'),
(52468, 44114, 'en', 'name', 'Gifu Prefecture General Education Center'),
(52469, 44114, 'ja', 'name', 'å²é˜œēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52470, 44115, 'en', 'name', 'Hokkaido Ainu Culture Research Center'),
(52471, 44115, 'ja', 'name', 'åŒ—ęµ·é“åŗåŒ—ęµ·é“ē«‹ć‚¢ć‚¤ćƒŒę°‘ę—ę–‡åŒ–ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(52472, 44116, 'en', 'name', 'Aomori Prefectural Mito High School'),
(52473, 44116, 'ja', 'name', 'é’ę£®ēœŒē«‹äø‰ęˆøé«˜ē­‰å­¦ę ”'),
(52474, 44117, 'en', 'name', 'Hokkaido Archaeological Center'),
(52475, 44117, 'ja', 'name', 'åŒ—ęµ·é“åŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(52476, 44118, 'en', 'name', 'Aoyama Gakuin Senior High School'),
(52477, 44118, 'ja', 'name', 'é’å±±å­¦é™¢äø­ē­‰éƒØćƒ»é«˜ē­‰éƒØ'),
(52478, 44119, 'en', 'name', 'Kani City Sunan Junior High School'),
(52479, 44119, 'ja', 'name', 'č˜‡å—äø­å­¦ę ”'),
(52480, 44120, 'en', 'name', 'Tokyo Metropolitan Aoyama High School'),
(52481, 44120, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹é’å±±é«˜ē­‰å­¦ę ”'),
(52482, 44121, 'en', 'name', 'Hokkaido Dental Technical College'),
(52483, 44121, 'ja', 'name', 'åŒ—ęµ·é“ę­Æē§‘ęŠ€č”“å°‚é–€å­¦ę ”'),
(52484, 44122, 'en', 'name', 'Museum of Fine Arts, Gifu'),
(52485, 44122, 'ja', 'name', 'å²é˜œēœŒē¾Žč”“é¤Ø'),
(52486, 44123, 'en', 'name', 'Center for Environmental Science in Saitama'),
(52487, 44123, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē’°å¢ƒē§‘å­¦å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(52488, 44124, 'no_lang_code', 'name', 'Hokuriku Gakuin University'),
(52489, 44124, 'ja', 'name', 'åŒ—é™øå­¦é™¢å¤§å­¦'),
(52490, 44125, 'en', 'name', 'Imakane Board of Education'),
(52491, 44125, 'ja', 'name', 'ä»Šé‡‘ē”ŗę•™č‚²å§”å“”ä¼š'),
(52492, 44126, 'en', 'name', 'Center for National University Finance and Management'),
(52493, 44126, 'ja', 'name', 'å›½ē«‹å¤§å­¦č²”å‹™ćƒ»ēµŒå–¶ć‚»ćƒ³ć‚æćƒ¼'),
(52494, 44127, 'no_lang_code', 'name', 'Motosu Shoyo High School'),
(52495, 44127, 'ja', 'name', 'å²é˜œēœŒē«‹ęœ¬å·£ę¾é™½é«˜ē­‰å­¦ę ”'),
(52496, 44128, 'en', 'name', 'Hokkaido Musashi Women''s Junior College'),
(52497, 44128, 'ja', 'name', 'åŒ—ęµ·é“ę­¦č”µå„³å­ēŸ­ęœŸå¤§å­¦'),
(52498, 44129, 'en', 'name', 'Hollywood Graduate School Of Beauty Business'),
(52499, 44129, 'ja', 'name', 'ē¾Žå®¹äŗ‹ę„­ć®ćƒćƒŖć‚¦ćƒƒćƒ‰å¤§å­¦é™¢'),
(52500, 44130, 'en', 'name', 'Hokkaido Museum of Northern Peoples'),
(52501, 44130, 'ja', 'name', 'åŒ—ęµ·é“ē«‹åŒ—ę–¹ę°‘ę—åšē‰©é¤Ø'),
(52502, 44131, 'en', 'name', 'Himeji University'),
(52503, 44131, 'ja', 'name', '姫路大学'),
(52504, 44132, 'en', 'name', 'National Heavy Snow Youth Exchange House'),
(52505, 44132, 'ja', 'name', 'å›½ē«‹å¤§é›Ŗé’å°‘å¹“äŗ¤ęµć®å®¶'),
(52506, 44133, 'en', 'name', 'Hokkaido Board of Education'),
(52507, 44133, 'ja', 'name', 'åŒ—ęµ·é“ę•™č‚²å§”å“”ä¼š'),
(52508, 44134, 'en', 'name', 'Hosen College of Childhood Education'),
(52509, 44134, 'ja', 'name', 'ć“ć©ć‚‚ę•™č‚²å®ä»™å¤§å­¦'),
(52510, 44135, 'no_lang_code', 'name', 'Himeji Hinomoto College'),
(52511, 44135, 'ja', 'name', 'å§«č·Æę—„ćƒŽęœ¬ēŸ­ęœŸå¤§å­¦'),
(52512, 44136, 'en', 'name', 'Hokkaido Education Research Institute'),
(52513, 44136, 'ja', 'name', 'åŒ—ęµ·é“ē«‹ę•™č‚²ē ”ē©¶ę‰€'),
(52514, 44137, 'en', 'name', 'Hokkaido Sapporo Kaisei High School'),
(52515, 44137, 'ja', 'name', 'åŒ—ęµ·é“ęœ­å¹Œé–‹ęˆé«˜ē­‰å­¦ę ”'),
(52516, 44138, 'en', 'name', 'Hot Springs Research Institute of Kanagawa Prefecture'),
(52517, 44138, 'ja', 'name', 'ē„žå„ˆå·ēœŒęø©ę³‰åœ°å­¦ē ”ē©¶ę‰€'),
(52518, 44139, 'en', 'name', 'Himeji High School'),
(52519, 44139, 'ja', 'name', 'å§«č·Æåø‚ē«‹å§«č·Æé«˜ē­‰å­¦ę ”'),
(52520, 44140, 'en', 'name', 'Takezono Higashi Elementary School'),
(52521, 44140, 'ja', 'name', 'ć¤ćć°åø‚ē«‹ē«¹åœ’ę±å°å­¦ę ”'),
(52522, 44141, 'en', 'name', 'Hokkaido Sapporo Kita High School'),
(52523, 44141, 'ja', 'name', 'åŒ—ęµ·é“ęœ­å¹ŒåŒ—é«˜ē­‰å­¦ę ”'),
(52524, 44142, 'no_lang_code', 'name', 'Gumma Paz College'),
(52525, 44142, 'ja', 'name', 'ē¾¤é¦¬ćƒ‘ćƒ¼ć‚¹å¤§å­¦'),
(52526, 44143, 'en', 'name', 'Hokkaido Sapporo Kiyota High School'),
(52527, 44143, 'ja', 'name', 'åŒ—ęµ·é“ęœ­å¹Œęø…ē”°é«˜ē­‰å­¦ę ”'),
(52528, 44144, 'en', 'name', 'Gunma Museum of Natural History'),
(52529, 44144, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹č‡Ŗē„¶å²åšē‰©é¤Ø'),
(52530, 44145, 'en', 'name', 'Ibaraki Womens Junior College'),
(52531, 44145, 'ja', 'name', 'čŒØåŸŽå„³å­ēŸ­ęœŸå¤§å­¦'),
(52532, 44146, 'en', 'name', 'Hokkaido Sapporo Shinkawa High School'),
(52533, 44146, 'ja', 'name', 'åŒ—ęµ·é“ęœ­å¹Œę–°å·é«˜ē­‰å­¦ę ”'),
(52534, 44147, 'en', 'name', 'Gunma Nikken Polytechnic College'),
(52535, 44147, 'ja', 'name', '群馬旄建巄科専門学栔'),
(52536, 44148, 'en', 'name', 'Hyogo Prefectural Police'),
(52537, 44148, 'ja', 'name', 'å…µåŗ«ēœŒč­¦åÆŸ'),
(52538, 44149, 'en', 'name', 'Gunma Prefectural Institute of Agriculture and Forestry'),
(52539, 44149, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹č¾²ęž—å¤§å­¦ę ”'),
(52540, 44150, 'en', 'name', 'Gunma Prefectural Board of Education'),
(52541, 44150, 'ja', 'name', 'ē¾¤é¦¬ēœŒę•™č‚²å§”å“”ä¼šćƒ›'),
(52542, 44151, 'no_lang_code', 'name', 'Hiroshima Cosmopolitan University'),
(52543, 44151, 'ja', 'name', 'åŗƒå³¶éƒ½åø‚å­¦åœ’å¤§å­¦'),
(52544, 44152, 'en', 'name', 'Ikenobo Junior College'),
(52545, 44152, 'ja', 'name', 'ę± åŠēŸ­ęœŸå¤§å­¦'),
(52546, 44153, 'en', 'name', 'Gunma Prefectural Fisheries Experimental Station'),
(52547, 44153, 'ja', 'name', '群馬県 - 氓産試験堓'),
(52548, 44154, 'en', 'name', 'Ikuei Junior College'),
(52549, 44154, 'ja', 'name', 'č‚²č‹±ēŸ­ęœŸå¤§å­¦'),
(52550, 44155, 'en', 'name', 'Gunma Industrial Technology Center'),
(52551, 44155, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹ē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(52552, 44156, 'en', 'name', 'Hyogo Prefectural Institute of Technology'),
(52553, 44156, 'ja', 'name', 'å…µåŗ«ēœŒē«‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(52554, 44157, 'no_lang_code', 'name', 'Imabari Meitoku Junior College'),
(52555, 44157, 'ja', 'name', 'ä»Šę²»ę˜Žå¾³ēŸ­ęœŸå¤§å­¦'),
(52556, 44158, 'en', 'name', 'Hiroshima Minami High School'),
(52557, 44158, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹åŗƒå³¶ēš†å®Ÿé«˜ē­‰å­¦ę ”'),
(52558, 44159, 'no_lang_code', 'name', 'Imagineering (Japan)'),
(52559, 44159, 'ja', 'name', 'ć‚¤ćƒžć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(52560, 44160, 'en', 'name', 'Gunma Archaeological Research Foundation'),
(52561, 44160, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ē¾¤é¦¬ēœŒåŸ‹č”µę–‡åŒ–č²”čŖæęŸ»äŗ‹ę„­å›£'),
(52562, 44161, 'en', 'name', 'Imperial Household Agency'),
(52563, 44161, 'ja', 'name', '宮内庁'),
(52564, 44162, 'en', 'name', 'Japan Transport Research Institute'),
(52565, 44162, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ é‹č¼øē·åˆē ”ē©¶ę‰€'),
(52566, 44163, 'en', 'name', 'Japan Color Research Institute'),
(52567, 44163, 'ja', 'name', 'ę—„ęœ¬č‰²å½©ē ”ē©¶ę‰€'),
(52568, 44164, 'en', 'name', 'Civil Engineering Research Institute for Cold Region'),
(52569, 44164, 'ja', 'name', 'åÆ’åœ°åœŸęœØē ”ē©¶ę‰€'),
(52570, 44165, 'en', 'name', 'Japan Private School Education Research Institute'),
(52571, 44165, 'ja', 'name', 'ę—„ęœ¬ē§å­¦ę•™č‚²ē ”ē©¶ę‰€'),
(52572, 44166, 'en', 'name', 'Japan External Trade Organization'),
(52573, 44166, 'ja', 'name', 'ę—„ęœ¬č²æę˜“ęŒÆčˆˆę©Ÿę§‹'),
(52574, 44167, 'en', 'name', 'National Institutes for Cultural Heritage'),
(52575, 44167, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ę–‡åŒ–č²”'),
(52576, 44168, 'en', 'name', 'Port and Airport Research Institute'),
(52577, 44168, 'ja', 'name', 'ęøÆę¹¾ē©ŗęøÆęŠ€č”“ē ”ē©¶ę‰€'),
(52578, 44169, 'en', 'name', 'Japan Society for Occupational Health'),
(52579, 44169, 'ja', 'name', 'ę—„ęœ¬ē”£ę„­č”›ē”Ÿå­¦ä¼š'),
(52580, 44170, 'en', 'name', 'The Kagawa Museum'),
(52581, 44170, 'ja', 'name', 'é¦™å·ēœŒē«‹ćƒŸćƒ„ćƒ¼ć‚øć‚¢ćƒ '),
(52582, 44171, 'en', 'name', 'Ibaraki National College of Technology'),
(52583, 44171, 'ja', 'name', 'čŒØåŸŽå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(52584, 44172, 'en', 'name', 'Ishikawa Prefectural Technical High School'),
(52585, 44172, 'ja', 'name', 'ēŸ³å·ēœŒē«‹å·„ę„­é«˜ē­‰å­¦ę ”'),
(52586, 44173, 'en', 'name', 'Takamatsu High School'),
(52587, 44173, 'ja', 'name', 'é¦™å·ēœŒē«‹é«˜ę¾é«˜ē­‰å­¦ę ”'),
(52588, 44174, 'en', 'name', 'Ishikawa Prefectural Nursing School'),
(52589, 44174, 'ja', 'name', 'ēŸ³å·ēœŒē«‹ē·åˆēœ‹č­·å°‚é–€å­¦ę ”'),
(52590, 44175, 'en', 'name', 'Ishikawa Prefectural Police'),
(52591, 44175, 'ja', 'name', 'ēŸ³å·ēœŒč­¦åÆŸęœ¬éƒØ'),
(52592, 44176, 'en', 'name', 'Ibaraki Nature Museum'),
(52593, 44176, 'ja', 'name', 'čŒØåŸŽēœŒč‡Ŗē„¶åšē‰©é¤Ø'),
(52594, 44177, 'en', 'name', 'Japan Kinoko Research Center Foundation'),
(52595, 44177, 'ja', 'name', 'ę—„ęœ¬ćć®ć“ć‚»ćƒ³ć‚æ'),
(52596, 44178, 'en', 'name', 'Japan Monkey Centre'),
(52597, 44178, 'ja', 'name', 'ę—„ęœ¬ćƒ¢ćƒ³ć‚­ćƒ¼ćƒ‘ćƒ¼ć‚Æ'),
(52598, 44179, 'no_lang_code', 'name', 'Education software (Japan)'),
(52599, 44179, 'ja', 'name', 'ę•™č‚²ć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢'),
(52600, 44180, 'en', 'name', 'Ibaraki Prefecture Education Training Center'),
(52601, 44180, 'ja', 'name', 'čŒØåŸŽēœŒę•™č‚²ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(52602, 44181, 'en', 'name', 'Japan Spaceguard Association'),
(52603, 44181, 'ja', 'name', 'ę—„ęœ¬ć‚¹ćƒšćƒ¼ć‚¹ć‚¬ćƒ¼ćƒ‰å”ä¼š'),
(52604, 44182, 'en', 'name', 'Ishikawa Prefectural Institute for Educational Research and In-Service Training'),
(52605, 44182, 'ja', 'name', 'ēŸ³å·ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52606, 44183, 'en', 'name', 'Ibaraki Prefectural Museum of History'),
(52607, 44183, 'ja', 'name', 'ćƒŠćƒćƒ„ćƒ©ćƒ«čŒØåŸŽēœŒē«‹ę­“å²é¤Ø'),
(52608, 44184, 'en', 'name', 'National Institute of Technology, Kagoshima College'),
(52609, 44184, 'ja', 'name', 'é¹æå…å³¶å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(52610, 44185, 'en', 'name', 'Ibaraki Prefectural Police'),
(52611, 44185, 'ja', 'name', 'čŒØåŸŽēœŒč­¦åÆŸęœ¬éƒØ'),
(52612, 44186, 'en', 'name', 'Institute of Brain and Blood Vessels'),
(52613, 44186, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ 脳蔀箔研究所'),
(52614, 44187, 'en', 'name', 'Institute of Environment and Resource System'),
(52615, 44187, 'ja', 'name', 'ē’°å¢ƒč³‡ęŗć‚·ć‚¹ćƒ†ćƒ ē·åˆē ”ē©¶ę‰€'),
(52616, 44188, 'en', 'name', 'Ibaraki Prefectural Mito First High School'),
(52617, 44188, 'ja', 'name', 'čŒØåŸŽēœŒē«‹ę°“ęˆøē¬¬äø€é«˜ē­‰å­¦ę ”'),
(52618, 44189, 'en', 'name', 'Kagoshima Prefectural Institute For Education Research'),
(52619, 44189, 'ja', 'name', 'é¹æå…å³¶ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52620, 44190, 'en', 'name', 'Kagoshima Women''s Junior College'),
(52621, 44190, 'ja', 'name', 'é¹æå…å³¶å„³å­ēŸ­ęœŸå¤§å­¦'),
(52622, 44191, 'en', 'name', 'Ibaraki Prefecture Joso City Sugawara Elementary School'),
(52623, 44191, 'ja', 'name', 'åøøē·åø‚ē«‹č…åŽŸå°å­¦ę ”'),
(52624, 44192, 'en', 'name', 'Pearl Science Laboratory'),
(52625, 44192, 'ja', 'name', 'ēœŸē ē§‘å­¦ē ”ē©¶ę‰€'),
(52626, 44193, 'en', 'name', 'Kanagawa Prefectural Shonan High School'),
(52627, 44193, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ę¹˜å—é«˜ē­‰å­¦ę ”'),
(52628, 44194, 'en', 'name', 'Kanagawa Prefectural Yokohama Hiranuma High School'),
(52629, 44194, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ęØŖęµœå¹³ę²¼é«˜ē­‰å­¦ę ”'),
(52630, 44195, 'en', 'name', 'Japan University of Health Sciences'),
(52631, 44195, 'ja', 'name', 'ę—„ęœ¬äæå„åŒ»ē™‚å¤§å­¦'),
(52632, 44196, 'en', 'name', 'Kanagawa Prefectural Youth Center'),
(52633, 44196, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹é’å°‘å¹“ć‚»ćƒ³ć‚æćƒ¼'),
(52634, 44197, 'en', 'name', 'Japanese Center for International Studies in Ecology'),
(52635, 44197, 'ja', 'name', 'å›½éš›ē”Ÿę…‹å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(52636, 44198, 'no_lang_code', 'name', 'Kajima Corporation (Japan)'),
(52637, 44198, 'ja', 'name', 'é¹æå³¶å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(52638, 44199, 'en', 'name', 'Iwakuni Junior College'),
(52639, 44199, 'ja', 'name', 'å²©å›½ēŸ­ęœŸå¤§å­¦'),
(52640, 44200, 'en', 'name', 'Kanagawa Prefecture Education Center'),
(52641, 44200, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52642, 44201, 'en', 'name', 'Jin-ai Women''s College'),
(52643, 44201, 'ja', 'name', 'ä»ę„›å„³å­ēŸ­ęœŸå¤§å­¦'),
(52644, 44202, 'en', 'name', 'General Education Center of Iwate'),
(52645, 44202, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52646, 44203, 'en', 'name', 'Kameda College of Health Sciences'),
(52647, 44203, 'ja', 'name', 'äŗ€ē”°åŒ»ē™‚å¤§å­¦'),
(52648, 44204, 'en', 'name', 'Kanagawa Prefectural Miura Seaside High School'),
(52649, 44204, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹äø‰ęµ¦č‡Øęµ·é«˜ē­‰å­¦ę ”'),
(52650, 44205, 'en', 'name', 'Kihara Institute for Biological Research'),
(52651, 44205, 'ja', 'name', 'ęØŖęµœåø‚ē«‹å¤§å­¦ęœØåŽŸē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(52652, 44206, 'en', 'name', 'Ichinohe High School'),
(52653, 44206, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹äø€ęˆøé«˜ē­‰å­¦ę ”'),
(52654, 44207, 'en', 'name', 'Kanagawa Prefectural Kanagawa Comprehensive Industry High School'),
(52655, 44207, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ē„žå„ˆå·ē·åˆē”£ę„­é«˜ē­‰å­¦ę ”'),
(52656, 44208, 'en', 'name', 'Ichinoseki Daiichi Senior High School'),
(52657, 44208, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹äø€é–¢ē¬¬äø€é«˜ē­‰å­¦ę ”ćƒ»é™„å±žäø­å­¦ę ”'),
(52658, 44209, 'en', 'name', 'Kanazawa Municipal Technical High School'),
(52659, 44209, 'ja', 'name', 'é‡‘ę²¢åø‚ē«‹å·„ę„­é«˜ē­‰å­¦ę ”'),
(52660, 44210, 'en', 'name', 'Iwate Agricultural Junior College'),
(52661, 44210, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹č¾²ę„­å¤§å­¦ę ”'),
(52662, 44211, 'en', 'name', 'Morioka First High School'),
(52663, 44211, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ē››å²”ē¬¬äø€é«˜ē­‰å­¦ę ”'),
(52664, 44212, 'en', 'name', 'Kanagawa Industrial Technology Center'),
(52665, 44212, 'ja', 'name', 'ē„žå„ˆå·ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(52666, 44213, 'en', 'name', 'Iwate Museum of Art'),
(52667, 44213, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ē¾Žč”“é¤Ø'),
(52668, 44214, 'en', 'name', 'Iwate Prefectural Shizukuishi High School'),
(52669, 44214, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹é›«ēŸ³é«˜ē­‰å­¦ę ”'),
(52670, 44215, 'en', 'name', 'Kitakyushu Museum of Natural History and Human History'),
(52671, 44215, 'ja', 'name', 'åŒ—ä¹å·žåø‚ē«‹ć„ć®ć”ć®ćŸć³åšē‰©é¤Ø[č‡Ŗē„¶å²ćƒ»ę­“å²åšē‰©é¤Ø'),
(52672, 44216, 'en', 'name', 'Kansai High School'),
(52673, 44216, 'ja', 'name', 'é–¢č„æé«˜ē­‰å­¦ę ”'),
(52674, 44217, 'en', 'name', 'Iwate Prefectural Taneichi High School'),
(52675, 44217, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ēØ®åø‚é«˜ē­‰å­¦ę ”'),
(52676, 44218, 'en', 'name', 'Junshin Junior College'),
(52677, 44218, 'ja', 'name', 'ē“”ēœŸēŸ­ęœŸå¤§å­¦'),
(52678, 44219, 'ja', 'name', 'Hakodate Shirayuri Gakuen'),
(52679, 44220, 'en', 'name', 'Kanagawa prefectural Atsugi high school'),
(52680, 44220, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹åŽšęœØé«˜ē­‰å­¦ę ”'),
(52681, 44221, 'en', 'name', 'Kacho College'),
(52682, 44221, 'ja', 'name', 'čÆé ‚ēŸ­ęœŸå¤§å­¦'),
(52683, 44222, 'en', 'name', 'Ehime Prefecture Iyo Agricultural High School'),
(52684, 44222, 'ja', 'name', 'ę„›åŖ›ēœŒē«‹ä¼Šäŗˆč¾²ę„­é«˜ē­‰å­¦ę ”'),
(52685, 44223, 'en', 'name', 'Kansai Women''s College'),
(52686, 44223, 'ja', 'name', 'é–¢č„æå„³å­ēŸ­ęœŸå¤§å­¦'),
(52687, 44224, 'en', 'name', 'Kanagawa Prefectural Ayase High School'),
(52688, 44224, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ē¶¾ē€¬é«˜ē­‰å­¦ę ”'),
(52689, 44225, 'en', 'name', 'Izumi Junior College'),
(52690, 44225, 'ja', 'name', 'å’Œę³‰ēŸ­ęœŸå¤§å­¦'),
(52691, 44226, 'en', 'name', 'Ability Development Training Center'),
(52692, 44226, 'ja', 'name', 'čƒ½åŠ›é–‹ē™ŗē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(52693, 44227, 'en', 'name', 'Kanto Junior College'),
(52694, 44227, 'ja', 'name', 'é–¢ę±ēŸ­ęœŸå¤§å­¦'),
(52695, 44228, 'en', 'name', 'National Institute of Technology, Kagawa College'),
(52696, 44228, 'ja', 'name', 'é¦™å·é«˜ē­‰å°‚é–€å­¦ę ”'),
(52697, 44229, 'en', 'name', 'Archaeological Institute of Kashihara'),
(52698, 44229, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹ę©æåŽŸč€ƒå¤å­¦ē ”ē©¶ę‰€'),
(52699, 44230, 'en', 'name', 'Koganei Daiichi Elementary School'),
(52700, 44230, 'ja', 'name', 'å°é‡‘äŗ•åø‚ē«‹å°é‡‘äŗ•ē¬¬äø€å°å­¦ę ”'),
(52701, 44231, 'en', 'name', 'Tokyo Metropolitan Koishikawa Secondary Education School'),
(52702, 44231, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å°ēŸ³å·äø­ē­‰ę•™č‚²å­¦ę ”'),
(52703, 44232, 'en', 'name', 'Isogo Technical High School'),
(52704, 44232, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ē£Æå­å·„ę„­é«˜ē­‰å­¦ę ”'),
(52705, 44233, 'no_lang_code', 'name', 'Kashihara Insectarium'),
(52706, 44233, 'ja', 'name', 'ę©æåŽŸåø‚ę˜†č™«é¤Ø'),
(52707, 44234, 'no_lang_code', 'name', 'Kokugakuin Junior College'),
(52708, 44234, 'ja', 'name', 'åœ‹å­øé™¢å¤§å­øåŒ—ęµ·é“ēŸ­ęœŸå¤§å­¦éƒØ'),
(52709, 44235, 'en', 'name', 'Kanagawa prefectural Kanagawa Technical High School'),
(52710, 44235, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ē„žå„ˆå·å·„ę„­é«˜ē­‰å­¦ę ”'),
(52711, 44236, 'no_lang_code', 'name', 'Kokusai Gakuin Saitama Junior College'),
(52712, 44236, 'ja', 'name', 'å›½éš›å­¦é™¢åŸ¼ēŽ‰ēŸ­ęœŸå¤§å­¦'),
(52713, 44237, 'en', 'name', 'Kokusai Junior College'),
(52714, 44237, 'ja', 'name', 'å›½éš›ēŸ­ęœŸå¤§å­¦'),
(52715, 44238, 'en', 'name', 'Niigata Prefectural Kashiwazaki Technical High School'),
(52716, 44238, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ęŸå“Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(52717, 44239, 'en', 'name', 'Kagawa Prefectural School for the Blind'),
(52718, 44239, 'ja', 'name', 'é¦™å·ēœŒē«‹ē›²å­¦ę ”'),
(52719, 44240, 'en', 'name', 'Komatsu College'),
(52720, 44240, 'ja', 'name', 'å°ę¾ēŸ­ęœŸå¤§å­¦'),
(52721, 44241, 'en', 'name', 'Kanagawa Prefectural Kanazawa-Bunko Museum'),
(52722, 44241, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹é‡‘ę²¢ę–‡åŗ«'),
(52723, 44242, 'en', 'name', 'Kawagoe Technical High School'),
(52724, 44242, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹å·č¶Šå·„ę„­é«˜ē­‰å­¦ę ”'),
(52725, 44243, 'no_lang_code', 'name', 'Hachinohe Gakuin Junior College'),
(52726, 44243, 'ja', 'name', 'å…«ęˆøå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(52727, 44244, 'en', 'name', 'Kawaguchi Junior College'),
(52728, 44244, 'ja', 'name', 'å·å£ēŸ­ęœŸå¤§å­¦'),
(52729, 44245, 'en', 'name', 'Koshien Junior College'),
(52730, 44245, 'ja', 'name', 'ē”²å­åœ’ēŸ­ęœŸå¤§å­¦'),
(52731, 44246, 'en', 'name', 'Kanagawa Prefectural Museum of Cultural History'),
(52732, 44246, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(52733, 44247, 'en', 'name', 'Kanagawa Prefectural Museum of Natural History'),
(52734, 44247, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ē”Ÿå‘½ć®ę˜Ÿ'),
(52735, 44248, 'en', 'name', 'Kanagawa Prefecture Natural Environment Conservation Center'),
(52736, 44248, 'ja', 'name', 'ē„žå„ˆå·ēœŒč‡Ŗē„¶ē’°å¢ƒäæå…Øć‚»ćƒ³ć‚æćƒ¼'),
(52737, 44249, 'en', 'name', 'Kawasaki City College of Nursing'),
(52738, 44249, 'ja', 'name', 'å·å“Žåø‚ē«‹ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(52739, 44250, 'en', 'name', 'Kyoto Bunkyo Junior College'),
(52740, 44250, 'ja', 'name', 'äŗ¬éƒ½ę–‡ę•™ēŸ­ęœŸå¤§å­¦'),
(52741, 44251, 'en', 'name', 'Kanagawa Prefectural Odawara Johoku Technical High School'),
(52742, 44251, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹å°ē”°åŽŸåŸŽåŒ—å·„ę„­é«˜ē­‰å­¦ę ”'),
(52743, 44252, 'en', 'name', 'Kyoto Municipal Fushimi Technical High School'),
(52744, 44252, 'ja', 'name', 'äŗ¬éƒ½åø‚ē«‹ä¼č¦‹å·„ę„­é«˜ē­‰å­¦ę ”'),
(52745, 44253, 'en', 'name', 'Kumamoto Industrial Research Institute'),
(52746, 44253, 'ja', 'name', 'ē†Šęœ¬ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(52747, 44254, 'en', 'name', 'Kawasaki College of Allied Health Professions'),
(52748, 44254, 'ja', 'name', 'å·å“ŽåŒ»ē™‚ēŸ­ęœŸå¤§å­¦'),
(52749, 44255, 'en', 'name', 'Kanagawa Prefectural Police Department'),
(52750, 44255, 'ja', 'name', 'ē„žå„ˆå·ēœŒč­¦åÆŸęœ¬éƒØ'),
(52751, 44256, 'en', 'name', 'Kyoto Municipal Uzumasa Elementary School'),
(52752, 44256, 'ja', 'name', 'äŗ¬éƒ½åø‚ē«‹å¤Ŗē§¦å°å­¦ę ”'),
(52753, 44257, 'en', 'name', 'Kochi Gakuen College'),
(52754, 44257, 'ja', 'name', 'é«˜ēŸ„å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(52755, 44258, 'en', 'name', 'Kyushu Economic Research Center'),
(52756, 44258, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ä¹å·žēµŒęøˆčŖæęŸ»å”ä¼š'),
(52757, 44259, 'en', 'name', 'National Institute of Technology, Kumamoto College'),
(52758, 44259, 'ja', 'name', 'ē†Šęœ¬é«˜ē­‰å°‚é–€å­¦ę ”'),
(52759, 44260, 'en', 'name', 'Kawasaki Municipal Kawasaki Science High School'),
(52760, 44260, 'ja', 'name', 'å·å“Žåø‚ē«‹å·å“Žē·åˆē§‘å­¦é«˜ē­‰å­¦ę ”'),
(52761, 44261, 'en', 'name', 'Kochi Technical High School'),
(52762, 44261, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹é«˜ēŸ„å·„ę„­é«˜ē­‰å­¦ę ”'),
(52763, 44262, 'en', 'name', 'Kumamoto Prefectural Arao High School'),
(52764, 44262, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹č’å°¾é«˜ē­‰å­¦ę ”'),
(52765, 44263, 'en', 'name', 'Kyushu Historical Museum'),
(52766, 44263, 'ja', 'name', 'ä¹å·žę­“å²č³‡ę–™é¤Ø'),
(52767, 44264, 'en', 'name', 'Kyoto City Zoo'),
(52768, 44264, 'ja', 'name', 'äŗ¬éƒ½åø‚å‹•ē‰©åœ’'),
(52769, 44265, 'en', 'name', 'Keio Shiki Senior High School'),
(52770, 44265, 'ja', 'name', 'ę…¶ę‡‰ē¾©å”¾åæ—ęœØé«˜ē­‰å­¦ę ”'),
(52771, 44266, 'en', 'name', 'Kyushu National Museum'),
(52772, 44266, 'ja', 'name', 'ä¹å·žå›½ē«‹åšē‰©é¤Ø'),
(52773, 44267, 'en', 'name', 'Kumamoto Prefectural Police'),
(52774, 44267, 'ja', 'name', 'ē†Šęœ¬ēœŒč­¦åÆŸ'),
(52775, 44268, 'en', 'name', 'Kyushu Otani Junior College'),
(52776, 44268, 'ja', 'name', 'ä¹å·žå¤§č°·ēŸ­ęœŸå¤§å­¦'),
(52777, 44269, 'en', 'name', 'Kumamoto Prefectural Matsubase High School'),
(52778, 44269, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹ę¾ę©‹é«˜ē­‰å­¦ę ”'),
(52779, 44270, 'en', 'name', 'Kyushu Ryukoku Junior College'),
(52780, 44270, 'ja', 'name', 'ä¹å·žé¾č°·ēŸ­ęœŸå¤§å­¦'),
(52781, 44271, 'en', 'name', 'Kurashiki City College'),
(52782, 44271, 'ja', 'name', 'å€‰ę•·åø‚ē«‹ēŸ­ęœŸå¤§å­¦'),
(52783, 44272, 'en', 'name', 'Kyoto Architecture University'),
(52784, 44272, 'ja', 'name', 'äŗ¬éƒ½å»ŗēÆ‰å¤§å­¦ę ”'),
(52785, 44273, 'en', 'name', 'Okayama Prefectural Kurashiki Chuo High School'),
(52786, 44273, 'ja', 'name', 'å²”å±±ēœŒē«‹å€‰ę•·äø­å¤®é«˜ē­‰å­¦ę ”'),
(52787, 44274, 'en', 'name', 'Japanese La Salle Academy'),
(52788, 44274, 'ja', 'name', 'ćƒ©ćƒ»ć‚µćƒ¼ćƒ«äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(52789, 44275, 'en', 'name', 'Minatogawa College'),
(52790, 44275, 'ja', 'name', 'ę¹Šå·ēŸ­ęœŸå¤§å­¦'),
(52791, 44276, 'en', 'name', 'Kyoto City Youth Science Center'),
(52792, 44276, 'ja', 'name', 'äŗ¬éƒ½åø‚é’å°‘å¹“ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(52793, 44277, 'no_lang_code', 'name', 'Meguro Parasitological Museum'),
(52794, 44277, 'ja', 'name', 'ē›®é»’åÆ„ē”Ÿč™«é¤Ø'),
(52795, 44278, 'no_lang_code', 'name', 'Minerva Light lab (Japan)'),
(52796, 44278, 'ja', 'name', 'ćƒŸćƒćƒ«ćƒćƒ©ć‚¤ćƒˆćƒ©ćƒœ');
INSERT INTO `ror_settings` VALUES
(52797, 44279, 'en', 'name', 'National Institute of Technology, Kurume College'),
(52798, 44279, 'ja', 'name', 'ä¹…ē•™ē±³å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(52799, 44280, 'en', 'name', 'Kyoto National Museum'),
(52800, 44280, 'ja', 'name', 'äŗ¬éƒ½å›½ē«‹åšē‰©é¤Ø'),
(52801, 44281, 'no_lang_code', 'name', 'Software Research Associates (Japan)'),
(52802, 44281, 'ja', 'name', 'ćˆć™ć‚ćƒ¼ć‚‹ćˆćƒ¼'),
(52803, 44282, 'en', 'name', 'Fukuoka College of Agriculture'),
(52804, 44282, 'ja', 'name', 'ē¦å²”ēœŒč¾²ę„­å¤§å­¦ę ”'),
(52805, 44283, 'en', 'name', 'Kyoto Prefectural Suzaku High School'),
(52806, 44283, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹ęœ±é›€é«˜ē­‰å­¦ę ”'),
(52807, 44284, 'en', 'name', 'National Institute of Technology, Maizuru College'),
(52808, 44284, 'ja', 'name', 'čˆžé¶“å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(52809, 44285, 'en', 'name', 'Meirin College'),
(52810, 44285, 'ja', 'name', 'ę˜Žå€«ēŸ­ęœŸå¤§å­¦'),
(52811, 44286, 'en', 'name', 'National Institute of Technology, Kushiro College'),
(52812, 44286, 'ja', 'name', 'é‡§č·Æå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(52813, 44287, 'en', 'name', 'Kyoto Prefectural Institute of Public Health and Environment'),
(52814, 44287, 'ja', 'name', 'äŗ¬éƒ½åŗœäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(52815, 44288, 'en', 'name', 'Meiwa Gakuen Junior College'),
(52816, 44288, 'ja', 'name', 'ę˜Žå’Œå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(52817, 44289, 'no_lang_code', 'name', 'PLUX - Wireless Biosignals (Portugal)'),
(52818, 44290, 'en', 'name', 'Aichi Prefectural Xincheng East High School'),
(52819, 44290, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ę–°åŸŽę±é«˜ē­‰å­¦ę ”'),
(52820, 44291, 'en', 'name', 'Gunma Prefectural Isesaki Koyokotogakko'),
(52821, 44291, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹ä¼Šå‹¢å“Žčˆˆé™½é«˜ē­‰å­¦ę ”'),
(52822, 44292, 'en', 'name', 'Anjo Chubu Elementary School'),
(52823, 44292, 'ja', 'name', 'å®‰åŸŽåø‚ē«‹å®‰åŸŽäø­éƒØå°å­¦ę ”'),
(52824, 44293, 'en', 'name', 'Shimane Prefectural Matsue Technical High School'),
(52825, 44293, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹ę¾ę±Ÿå·„ę„­é«˜ē­‰å­¦ę ”'),
(52826, 44294, 'en', 'name', 'Kitakyushu National College of Technology'),
(52827, 44294, 'ja', 'name', 'åŒ—ä¹å·žå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(52828, 44295, 'en', 'name', 'Kobe Rokko Island High School'),
(52829, 44295, 'ja', 'name', 'ē„žęˆøåø‚ē«‹å…­ē”²ć‚¢ć‚¤ćƒ©ćƒ³ćƒ‰é«˜ē­‰å­¦ę ”'),
(52830, 44296, 'en', 'name', 'Fukushima Iwaki Agricultural High School'),
(52831, 44296, 'ja', 'name', 'ē¦å³¶ēœŒē«‹ē£åŸŽč¾²ę„­é«˜ē­‰å­¦ę ”'),
(52832, 44297, 'en', 'name', 'Kanagawa Prefectural Atsugi Kiyoshiminami High School'),
(52833, 44297, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹åŽšęœØęø…å—é«˜ę ”'),
(52834, 44298, 'en', 'name', 'Kobe Municipal Nishiwaki Elementary School'),
(52835, 44299, 'en', 'name', 'Kyoto Municipal Saikyokotogakko-Junior High School'),
(52836, 44300, 'en', 'name', 'Japan Graduate School of Education University'),
(52837, 44300, 'ja', 'name', 'ę—„ęœ¬ę•™č‚²å¤§å­¦é™¢å¤§å­¦'),
(52838, 44301, 'no_lang_code', 'name', 'Mitsubishi Chemical Group Science and Technology Research Center (Japan)'),
(52839, 44301, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äø‰č±åŒ–å­¦ē§‘å­¦ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(52840, 44302, 'en', 'name', 'Kyoto Kacho University'),
(52841, 44302, 'ja', 'name', 'äŗ¬éƒ½čÆé ‚å¤§å­¦'),
(52842, 44303, 'en', 'name', 'Mathematical Assist Design Laboratory'),
(52843, 44303, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę•°ē†čØ­čØˆē ”ē©¶ę‰€'),
(52844, 44304, 'no_lang_code', 'name', 'Tsutsujigaoka Elementary School'),
(52845, 44304, 'ja', 'name', 'åå¼µåø‚ć¤ć¤ć˜ćŒćŠć‹å°å­¦ę ”'),
(52846, 44305, 'no_lang_code', 'name', 'Matsudo Museum'),
(52847, 44305, 'ja', 'name', 'ę¾ęˆøåø‚ē«‹åšē‰©é¤Ø'),
(52848, 44306, 'no_lang_code', 'name', 'Mitsui Engineering and Shipbuilding (Japan)'),
(52849, 44306, 'ja', 'name', 'äø‰äŗ•é€ čˆ¹'),
(52850, 44307, 'en', 'name', 'Nagasaki Prefectural Education Center'),
(52851, 44307, 'ja', 'name', 'é•·å“ŽēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52852, 44308, 'en', 'name', 'Matsumoto Junior College'),
(52853, 44308, 'ja', 'name', 'ę¾ęœ¬ēŸ­ęœŸå¤§å­¦'),
(52854, 44309, 'en', 'name', 'Ibaraki Prefectural Mitsukaido First High School'),
(52855, 44309, 'ja', 'name', 'čŒØåŸŽēœŒē«‹å¤Ŗē”°ē¬¬äŗŒé«˜ē­‰å­¦ę ”'),
(52856, 44310, 'en', 'name', 'Ibaraki Prefectural Ota second high school'),
(52857, 44310, 'ja', 'name', 'čŒØåŸŽēœŒē«‹å¤Ŗē”°ē¬¬äŗŒé«˜ē­‰å­¦ę ”'),
(52858, 44311, 'en', 'name', 'International Institute for Childrens Literature Osaka'),
(52859, 44311, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹å›½éš›å…ē«„ę–‡å­¦é¤Ø'),
(52860, 44312, 'en', 'name', 'Museum of Kyoto'),
(52861, 44313, 'en', 'name', 'Tokyo Metropolitan Fuchu High School'),
(52862, 44313, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹åŗœäø­é«˜ē­‰å­¦ę ”'),
(52863, 44314, 'en', 'name', 'Matsumoto Meat Hygienic Inspection Center of Nagano Prefecture'),
(52864, 44314, 'ja', 'name', 'é•·é‡ŽēœŒę¾ęœ¬é£Ÿč‚‰č”›ē”Ÿę¤œęŸ»ę‰€'),
(52865, 44315, 'en', 'name', 'Koyo Schools'),
(52866, 44315, 'ja', 'name', '向陽学園'),
(52867, 44316, 'en', 'name', 'Syusaku Endo Literature Museum'),
(52868, 44316, 'ja', 'name', 'é č—¤å‘Øä½œę–‡å­¦é¤Ø'),
(52869, 44317, 'en', 'name', 'Tokyo Metropolitan Nerima High School'),
(52870, 44317, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ē·“é¦¬é«˜ē­‰å­¦ę ”'),
(52871, 44318, 'en', 'name', 'Nagasaki Women''s Junior College'),
(52872, 44318, 'ja', 'name', 'é•·å“Žå„³å­ēŸ­ęœŸå¤§å­¦'),
(52873, 44319, 'en', 'name', 'Ryogoku High School'),
(52874, 44319, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹äø”å›½é«˜ē­‰å­¦ę ”ćƒ»é™„å±žäø­å­¦ę ”'),
(52875, 44320, 'no_lang_code', 'name', 'Nagoya College'),
(52876, 44320, 'ja', 'name', 'åå¤å±‹ēŸ­ęœŸå¤§å­¦'),
(52877, 44321, 'no_lang_code', 'name', 'Nagashima Hospital'),
(52878, 44321, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗé•·å…‰ä¼š 長島病院'),
(52879, 44322, 'en', 'name', 'Tokyo Metropolitan Shakujii High School'),
(52880, 44322, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ēŸ³ē„žäŗ•é«˜ē­‰å­¦ę ”'),
(52881, 44323, 'en', 'name', 'Nagoya Industrial Science Research Institute'),
(52882, 44323, 'ja', 'name', 'åå¤å±‹ē”£ę„­ē§‘å­¦ē ”ē©¶ę‰€'),
(52883, 44324, 'en', 'name', 'Tokyo Metropolitan Tachikawa High School'),
(52884, 44324, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ē«‹å·é«˜ē­‰å­¦ę ”'),
(52885, 44325, 'en', 'name', 'Mie Prefectural School for the Blind'),
(52886, 44325, 'ja', 'name', 'äø‰é‡ēœŒē«‹ē›²å­¦ę ”'),
(52887, 44326, 'en', 'name', 'Nagoya Management Junior College'),
(52888, 44326, 'ja', 'name', 'åå¤å±‹ēµŒå–¶ēŸ­ęœŸå¤§å­¦'),
(52889, 44327, 'en', 'name', 'Kyoto Prefectural Nishimaizuru High School'),
(52890, 44327, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹č„æčˆžé¶“é«˜ē­‰å­¦ę ”'),
(52891, 44328, 'en', 'name', 'Mie Prefectural Education Center'),
(52892, 44328, 'ja', 'name', 'äø‰é‡ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52893, 44329, 'en', 'name', 'Miyagi Advanced Dental Hygienist College'),
(52894, 44329, 'ja', 'name', 'å®®åŸŽé«˜ē­‰ę­Æē§‘č”›ē”Ÿå£«å­¦é™¢'),
(52895, 44330, 'en', 'name', 'Kyoto Prefectural Sagano High School'),
(52896, 44330, 'ja', 'name', 'åµÆå³Øé‡Žé«˜ē­‰å­¦ę ”'),
(52897, 44331, 'en', 'name', 'Mie Prefectural Hisai High School'),
(52898, 44331, 'ja', 'name', 'äø‰é‡ēœŒē«‹ä¹…å±…é«˜ē­‰å­¦ę ”'),
(52899, 44332, 'en', 'name', 'Kagawa University Hospital'),
(52900, 44332, 'ja', 'name', 'é¦™å·å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(52901, 44333, 'en', 'name', 'Hyogo Prefectural Hyogo Agricultural University'),
(52902, 44333, 'ja', 'name', 'å…µåŗ«ēœŒē«‹č¾²ę„­å¤§å­¦'),
(52903, 44334, 'en', 'name', 'Mie Prefectural Kobe High School'),
(52904, 44334, 'ja', 'name', 'äø‰é‡ēœŒē«‹ē„žęˆøé«˜ę ”'),
(52905, 44335, 'en', 'name', 'Kyoto Prefectural Tanabe High School'),
(52906, 44335, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹ē”°č¾ŗé«˜ē­‰å­¦ę ”'),
(52907, 44336, 'en', 'name', 'Kyoto Prefectural Rakuhoku High School'),
(52908, 44336, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹ę“›åŒ—é«˜ē­‰å­¦ę ”'),
(52909, 44337, 'en', 'name', 'Nagano City Museum'),
(52910, 44337, 'ja', 'name', 'é•·é‡Žåø‚ē«‹åšē‰©é¤Ø'),
(52911, 44338, 'en', 'name', 'Miyagi Prefectural Fisheries High School'),
(52912, 44338, 'ja', 'name', 'å®®åŸŽēœŒę°“ē”£é«˜ē­‰å­¦ę ”'),
(52913, 44339, 'en', 'name', 'Mie prefectural Matsusaka Technical High School'),
(52914, 44339, 'aa', 'name', 'äø‰é‡ēœŒē«‹ę¾é˜Ŗå·„ę„­é«˜ē­‰å­¦ę ”'),
(52915, 44340, 'en', 'name', 'Nagano Prefectural Board of Education'),
(52916, 44340, 'ja', 'name', 'é•·é‡ŽēœŒę•™č‚²å§”å“”ä¼š'),
(52917, 44341, 'en', 'name', 'Mie Prefectural Police'),
(52918, 44341, 'ja', 'name', 'äø‰é‡ēœŒč­¦åÆŸ'),
(52919, 44342, 'en', 'name', 'Mie Prefecture TatsuTsu Commercial High School'),
(52920, 44342, 'ja', 'name', 'äø‰é‡ēœŒē«‹ę“„å•†ę„­é«˜ē­‰å­¦ę ”'),
(52921, 44343, 'en', 'name', 'Nagano Prefectural Comprehensive Education Center'),
(52922, 44343, 'ja', 'name', 'é•·é‡ŽēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52923, 44344, 'en', 'name', 'Miyagi Prefectural Police Forensic Science Laboratory'),
(52924, 44344, 'ja', 'name', 'å®®åŸŽēœŒč­¦åÆŸ ē§‘å­¦ęœęŸ»ē ”ē©¶ę‰€'),
(52925, 44345, 'en', 'name', 'Mie Prefectural Yokkaichi Technical High School'),
(52926, 44345, 'ja', 'name', 'äø‰é‡ēœŒē«‹å››ę—„åø‚å·„ę„­é«˜ē­‰å­¦ę ”'),
(52927, 44346, 'en', 'name', 'Nagano Prefecture Forestry Research Center'),
(52928, 44346, 'ja', 'name', 'é•·é‡ŽēœŒęž—ę„­ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(52929, 44347, 'en', 'name', 'Miyagi Prefectural visual support school'),
(52930, 44347, 'ja', 'name', 'å®®åŸŽēœŒē«‹č¦–č¦šę”Æę“å­¦ę ”'),
(52931, 44348, 'no_lang_code', 'name', 'Horyuji Kokusai High School'),
(52932, 44348, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹ę³•éš†åÆŗå›½éš›é«˜ē­‰å­¦ę ”'),
(52933, 44349, 'en', 'name', 'Nagano Prefecture Inariyama Nursing School'),
(52934, 44349, 'ja', 'name', 'ēØ²č·å±±é¤Šč­·å­¦ę ”'),
(52935, 44350, 'en', 'name', 'Mie Prefectural Yokkaichi Nishi High School'),
(52936, 44350, 'ja', 'name', 'äø‰é‡ēœŒē«‹å››ę—„åø‚č„æé«˜ē­‰å­¦ę ”'),
(52937, 44351, 'en', 'name', 'Miyagi Prefectural Hearing Support School'),
(52938, 44351, 'ja', 'name', 'å®®åŸŽēœŒē«‹č“č¦šę”Æę“å­¦ę ”'),
(52939, 44352, 'en', 'name', 'Nara Prefectural Nara High School'),
(52940, 44352, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹å„ˆč‰ÆåŒ—é«˜ē­‰å­¦ę ”'),
(52941, 44353, 'en', 'name', 'Miyagi Prefectural General Education Center'),
(52942, 44353, 'ja', 'name', 'å®®åŸŽēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(52943, 44354, 'en', 'name', 'Nara Prefectural Takada Senior High School'),
(52944, 44354, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹é«˜ē”°é«˜ē­‰å­¦ę ”'),
(52945, 44355, 'en', 'name', 'Nara Prefectural Unebi Senior High School'),
(52946, 44355, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹ē•å‚é«˜ē­‰å­¦ę ”'),
(52947, 44356, 'en', 'name', 'Nara Saho College'),
(52948, 44356, 'ja', 'name', 'å„ˆč‰Æä½äæēŸ­ęœŸå¤§å­¦'),
(52949, 44357, 'en', 'name', 'Miyagi Prefecture Furukawa Technical High School'),
(52950, 44357, 'ja', 'name', 'å®®åŸŽēœŒå¤å·å·„ę„­é«˜ē­‰å­¦ę ”'),
(52951, 44358, 'en', 'name', 'Mie Prefecture Board of Education'),
(52952, 44358, 'ja', 'name', 'ę•™č‚²ć®äø‰é‡ēœŒå§”å“”ä¼š'),
(52953, 44359, 'en', 'name', 'Toyoshina High School'),
(52954, 44359, 'ja', 'name', 'č±Šē§‘é«˜ē­‰å­¦ę ”'),
(52955, 44360, 'en', 'name', 'Narashino Municipal Narashino High School'),
(52956, 44360, 'ja', 'name', 'ēæ’åæ—é‡Žåø‚ē«‹ēæ’åæ—é‡Žé«˜ē­‰å­¦ę ”'),
(52957, 44361, 'en', 'name', 'Miyagi Prefecture Furukawa dawn High School'),
(52958, 44361, 'ja', 'name', 'å®®åŸŽēœŒå¤å·é»Žę˜Žäø­å­¦ę ”'),
(52959, 44362, 'en', 'name', 'Nagano Prefectural Ueda Senior High School'),
(52960, 44362, 'ja', 'name', 'é•·é‡ŽēœŒäøŠē”°é«˜ē­‰å­¦ę ”'),
(52961, 44363, 'no_lang_code', 'name', 'NasunokeHara Animal Clinic'),
(52962, 44363, 'ja', 'name', 'é‚£é ˆé‡Žćƒ¶åŽŸć‚¢ćƒ‹ćƒžćƒ«ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(52963, 44364, 'en', 'name', 'Nakakyusyu Junior College'),
(52964, 44364, 'ja', 'name', 'äø­ä¹å·žēŸ­ęœŸå¤§å­¦'),
(52965, 44365, 'en', 'name', 'Nagano Technical High School'),
(52966, 44365, 'ja', 'name', 'é•·é‡Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(52967, 44366, 'en', 'name', 'Nakanihon Automotive College'),
(52968, 44366, 'ja', 'name', 'äø­ę—„ęœ¬č‡Ŗå‹•č»ŠēŸ­ęœŸå¤§å­¦'),
(52969, 44367, 'en', 'name', 'Miyagi Prefecture Natori High School'),
(52970, 44367, 'ja', 'name', 'å®®åŸŽēœŒåå–é«˜ē­‰å­¦ę ”'),
(52971, 44368, 'en', 'name', 'National Akagi of Youth Exchange House'),
(52972, 44368, 'ja', 'name', 'å›½ē«‹čµ¤åŸŽé’å°‘å¹“äŗ¤ęµć®å®¶'),
(52973, 44369, 'en', 'name', 'Nagaoka Institute of Design'),
(52974, 44369, 'ja', 'name', '長岔造形大学'),
(52975, 44370, 'en', 'name', 'Miyagi Prefecture Ishinomaki Technical High School'),
(52976, 44370, 'ja', 'name', 'å®®åŸŽēœŒēŸ³å·»å·„ę„­é«˜ē­‰å­¦ę ”'),
(52977, 44371, 'en', 'name', 'Miyagi Prefecture Sendai Higashi High School'),
(52978, 44371, 'ja', 'name', 'å®®åŸŽēœŒä»™å°ę±é«˜ē­‰å­¦ę ”'),
(52979, 44372, 'en', 'name', 'Nagasaki Prefectural Nagasaki Technical High School'),
(52980, 44372, 'ja', 'name', 'é•·å“ŽēœŒē«‹é•·å“Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(52981, 44373, 'en', 'name', 'Miyagi Seishin Junior College'),
(52982, 44373, 'ja', 'name', 'å®®åŸŽčŖ ēœŸēŸ­ęœŸå¤§å­¦'),
(52983, 44374, 'en', 'name', 'Nagasaki Junior College'),
(52984, 44374, 'ja', 'name', 'é•·å“ŽēŸ­ęœŸå¤§å­¦'),
(52985, 44375, 'en', 'name', 'Nara City Board of Education'),
(52986, 44375, 'ja', 'name', 'å„ˆč‰Æåø‚ę•™č‚²å§”å“”ä¼š'),
(52987, 44376, 'no_lang_code', 'name', 'Mikasa City Museum'),
(52988, 44376, 'ja', 'name', 'äø‰ē¬ åø‚ē«‹åšē‰©é¤Ø'),
(52989, 44377, 'en', 'name', 'Miyazaki Prefectural Wood Utilization Research Center'),
(52990, 44377, 'ja', 'name', 'å®®å“ŽēœŒęœØęåˆ©ē”ØęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(52991, 44378, 'en', 'name', 'Nara National Research Institute for Cultural Properties'),
(52992, 44378, 'ja', 'name', 'å„ˆč‰Æę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(52993, 44379, 'en', 'name', 'Nagasaki Prefectural Shimabara High School'),
(52994, 44379, 'ja', 'name', 'é•·å“ŽēœŒē«‹å³¶åŽŸé«˜ē­‰å­¦ę ”'),
(52995, 44380, 'en', 'name', 'Nara National Museum'),
(52996, 44380, 'ja', 'name', 'å„ˆč‰Æå›½ē«‹åšē‰©é¤Ø'),
(52997, 44381, 'en', 'name', 'Miyazaki Gakuen Junior College'),
(52998, 44381, 'ja', 'name', 'å®®å“Žå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(52999, 44382, 'en', 'name', 'Kumamoto Prefectural Minamata Technical High School'),
(53000, 44382, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹ę°“äæ£å·„ę„­é«˜ē­‰å­¦ę ”'),
(53001, 44383, 'en', 'name', 'Mizunami Fossil Museum'),
(53002, 44383, 'ja', 'name', 'ē‘žęµŖåø‚åŒ–ēŸ³åšē‰©é¤Ø'),
(53003, 44384, 'en', 'name', 'Minami Kyushu Junior College'),
(53004, 44384, 'ja', 'name', 'å—ä¹å·žēŸ­ęœŸå¤§å­¦'),
(53005, 44385, 'en', 'name', 'Hakodate National Hospital'),
(53006, 44385, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å‡½é¤Øē—…é™¢'),
(53007, 44386, 'en', 'name', 'Niijima Gakuen Junior College'),
(53008, 44386, 'ja', 'name', 'ę–°å³¶å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(53009, 44387, 'en', 'name', 'Nagano Prefecural Nagano Senior High School'),
(53010, 44387, 'ja', 'name', 'é•·é‡ŽēœŒé•·é‡Žé«˜ē­‰å­¦ę ”'),
(53011, 44388, 'en', 'name', 'Niimi College'),
(53012, 44388, 'ja', 'name', 'ę–°č¦‹å…¬ē«‹ēŸ­ęœŸå¤§å­¦'),
(53013, 44389, 'en', 'name', 'National Hospital Organization Hanamaki Hospital'),
(53014, 44389, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹čŠ±å·»ē—…é™¢'),
(53015, 44390, 'en', 'name', 'National Institute for Land and Infrastructure Management'),
(53016, 44390, 'ja', 'name', 'å›½åœŸäŗ¤é€šēœå›½åœŸęŠ€č”“ę”æē­–ē·åˆē ”ē©¶ę‰€'),
(53017, 44391, 'en', 'name', 'Independent Administrative Institution National Research Institute for Cultural Properties'),
(53018, 44391, 'ja', 'name', 'ę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(53019, 44392, 'en', 'name', 'Iwate Prefectural Morioka Agricultural High School'),
(53020, 44392, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ē››å²”č¾²ę„­é«˜ē­‰å­¦ę ”'),
(53021, 44393, 'en', 'name', 'National Research Institute of Fire and Disaster'),
(53022, 44393, 'ja', 'name', '消防庁 消防大学栔 ę¶ˆé˜²ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(53023, 44394, 'en', 'name', 'Nishi-Nippon Junior College'),
(53024, 44394, 'ja', 'name', 'č„æę—„ęœ¬ēŸ­ęœŸå¤§å­¦'),
(53025, 44395, 'en', 'name', 'Musashi Junior and Senior High School'),
(53026, 44395, 'ja', 'name', 'ę­¦č”µé«˜ē­‰å­¦ę ” 中学栔'),
(53027, 44396, 'en', 'name', 'Nishinomiya Municipal Takagi Elementary School'),
(53028, 44396, 'ja', 'name', 'č„æå®®åø‚ē«‹é«˜ęœØå°å­¦ę ”'),
(53029, 44397, 'no_lang_code', 'name', 'Osaka Minami Medical Center'),
(53030, 44397, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å¤§é˜Ŗå—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(53031, 44398, 'no_lang_code', 'name', 'Musashigaoka College'),
(53032, 44398, 'ja', 'name', 'ę­¦č”µäø˜ēŸ­ęœŸå¤§å­¦'),
(53033, 44399, 'en', 'name', 'National Traffic Safety and Environment Laboratory'),
(53034, 44399, 'ja', 'name', 'äŗ¤é€šå®‰å…Øē’°å¢ƒē ”ē©¶ę‰€'),
(53035, 44400, 'no_lang_code', 'name', 'Tokushima Hospital'),
(53036, 44400, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å¾³å³¶ē—…é™¢'),
(53037, 44401, 'en', 'name', 'Noma Institute Of Educational Reserch'),
(53038, 44401, 'ja', 'name', 'é‡Žé–“ę•™č‚²ē ”ē©¶ę‰€'),
(53039, 44402, 'en', 'name', 'Okayama Prefectural Mizushima Technical High School'),
(53040, 44402, 'ja', 'name', 'å²”å±±ēœŒē«‹ę°“å³¶å·„ę„­é«˜ē­‰å­¦ę ”'),
(53041, 44403, 'en', 'name', 'National Institute of Population and Social Security Research'),
(53042, 44403, 'ja', 'name', 'å›½ē«‹ē¤¾ä¼šäæéšœćƒ»äŗŗå£å•é”Œē ”ē©¶ę‰€'),
(53043, 44404, 'en', 'name', 'Okayama Prefectural Okayama Asahi High School'),
(53044, 44404, 'ja', 'name', 'å²”å±±ēœŒē«‹å²”å±±ęœę—„é«˜ē­‰å­¦ę ”'),
(53045, 44405, 'en', 'name', 'National Institute of Special Education'),
(53046, 44405, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē‰¹åˆ„ę”Æę“ę•™č‚²ē·åˆē ”ē©¶ę‰€'),
(53047, 44406, 'en', 'name', 'Okayama Prefectural Katsumata High School'),
(53048, 44406, 'ja', 'name', 'å²”å±±ēœŒē«‹å‹é–“ē”°é«˜ē­‰å­¦ę ”'),
(53049, 44407, 'no_lang_code', 'name', 'Osaka Yuhigaoka Gakuen Junior College'),
(53050, 44407, 'ja', 'name', 'å¤§é˜Ŗå¤•é™½äø˜å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(53051, 44408, 'en', 'name', 'Okayama Prefectural Okayama Technical High School'),
(53052, 44408, 'ja', 'name', 'å²”å±±ēœŒē«‹å²”å±±å·„ę„­é«˜ē­‰å­¦ę ”'),
(53053, 44409, 'en', 'name', 'Okayama Prefectural Police'),
(53054, 44409, 'ja', 'name', '岔山県警察'),
(53055, 44410, 'en', 'name', 'Osaka College of Social Health and Welfare'),
(53056, 44410, 'ja', 'name', 'å¤§é˜Ŗå„åŗ·ē¦ē„‰ēŸ­ęœŸå¤§å­¦'),
(53057, 44411, 'en', 'name', 'Okayama Prefecture Education Center'),
(53058, 44411, 'ja', 'name', 'å²”å±±ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53059, 44412, 'en', 'name', 'National Livestock Breeding Center'),
(53060, 44412, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ å®¶ē•œę”¹č‰Æć‚»ćƒ³ć‚æćƒ¼'),
(53061, 44413, 'no_lang_code', 'name', 'Neyagawa High School'),
(53062, 44413, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹åÆå±‹å·é«˜ē­‰å­¦ę ”'),
(53063, 44414, 'en', 'name', 'Okayama City Ishii Elementary School'),
(53064, 44414, 'ja', 'name', 'å²”å±±åø‚ē«‹ēŸ³äŗ•å°å­¦ę ”'),
(53065, 44415, 'en', 'name', 'National Maritime Research Institute'),
(53066, 44415, 'ja', 'name', 'ęµ·äøŠęŠ€č”“å®‰å…Øē ”ē©¶ę‰€ćÆ'),
(53067, 44416, 'en', 'name', 'Okayama Prefectural Tsuyama High School'),
(53068, 44416, 'ja', 'name', 'å²”å±±ēœŒē«‹ę“„å±±äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(53069, 44417, 'no_lang_code', 'name', 'Osaka Science Museum'),
(53070, 44417, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹ē§‘å­¦é¤Ø'),
(53071, 44418, 'en', 'name', 'Natural History Museum and Institute'),
(53072, 44418, 'ja', 'name', 'åƒč‘‰ēœŒē«‹äø­å¤®åšē‰©é¤Ø'),
(53073, 44419, 'en', 'name', 'National Muroto Youth Outdoor Learning Center'),
(53074, 44419, 'ja', 'name', 'å›½ē«‹å®¤ęˆøé’å°‘å¹“č‡Ŗē„¶ć®å®¶'),
(53075, 44420, 'en', 'name', 'Osaka City Museum of Fine Arts'),
(53076, 44420, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹ē¾Žč”“é¤Ø'),
(53077, 44421, 'en', 'name', 'Osaka Municipal Toyosaki Junior High School'),
(53078, 44421, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹č±Šå“Žäø­å­¦ę ”'),
(53079, 44422, 'en', 'name', 'Osaka Museum of Natural History'),
(53080, 44422, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹č‡Ŗē„¶å²åšē‰©é¤Ø'),
(53081, 44423, 'en', 'name', 'Oita Industrial Research Institute'),
(53082, 44423, 'ja', 'name', 'å¤§åˆ†ēœŒē”£ę„­ē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(53083, 44424, 'en', 'name', 'Nihon Institute of Medical Science'),
(53084, 44424, 'ja', 'name', 'ę—„ęœ¬åŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(53085, 44425, 'en', 'name', 'Niigata Prefectural Niigata Central High School'),
(53086, 44425, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę–°ę½Ÿäø­å¤®é«˜ē­‰å­¦ę ”'),
(53087, 44426, 'en', 'name', 'Osaka Prefecture Hannan Visual Support School'),
(53088, 44426, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹å¤§é˜Ŗå—č¦–č¦šę”Æę“å­¦ę ”'),
(53089, 44427, 'en', 'name', 'National Institution For Youth Education'),
(53090, 44427, 'ja', 'name', 'å›½ē«‹é’å°‘å¹“ę•™č‚²ęŒÆčˆˆę©Ÿę§‹'),
(53091, 44428, 'en', 'name', 'Okazaki Womens Junior College'),
(53092, 44428, 'ja', 'name', 'å²”å“Žå„³å­ēŸ­ęœŸå¤§å­¦'),
(53093, 44429, 'no_lang_code', 'name', 'Niigata Chuoh Junior College'),
(53094, 44429, 'ja', 'name', 'ę–°ę½Ÿäø­å¤®ēŸ­ęœŸå¤§å­¦'),
(53095, 44430, 'en', 'name', 'Osaka Prefectural Board of Education'),
(53096, 44430, 'ja', 'name', 'å¤§é˜Ŗåŗœę•™č‚²å§”å“”ä¼š'),
(53097, 44431, 'en', 'name', 'Niigata College of Technology'),
(53098, 44431, 'ja', 'name', 'ę–°ę½Ÿå·„ę„­ēŸ­ęœŸå¤§å­¦'),
(53099, 44432, 'no_lang_code', 'name', 'Obayashi (Japan)'),
(53100, 44432, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¤§ęž—ēµ„'),
(53101, 44433, 'en', 'name', 'Okazaki Womens University'),
(53102, 44433, 'ja', 'name', '岔哎儳子大学'),
(53103, 44434, 'en', 'name', 'Obihiro Otani Junior College'),
(53104, 44434, 'ja', 'name', '帯広大谷短期大学'),
(53105, 44435, 'en', 'name', 'Niigata Prefectural Niigata MidoriKo High School'),
(53106, 44435, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę–°ę½Ÿēæ ę±Ÿé«˜ē­‰å­¦ę ”'),
(53107, 44436, 'en', 'name', 'Osaka Prefectural Education Center'),
(53108, 44436, 'ja', 'name', 'å¤§é˜Ŗåŗœę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53109, 44437, 'en', 'name', 'Niigata Medical Technology Specialist School'),
(53110, 44437, 'ja', 'name', 'ę–°ę½ŸåŒ»ē™‚ęŠ€č”“å°‚é–€å­¦ę ”'),
(53111, 44438, 'en', 'name', 'Odawara Women''s Junior College'),
(53112, 44438, 'ja', 'name', 'å°ē”°åŽŸå„³å­ēŸ­ęœŸå¤§å­¦'),
(53113, 44439, 'en', 'name', 'Osaka Prefectural Hirakata High School'),
(53114, 44439, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹ęžšę–¹é«˜ē­‰å­¦ę ”'),
(53115, 44440, 'en', 'name', 'Niigata Prefectural Niigata Minami High School'),
(53116, 44440, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę–°ę½Ÿå—é«˜ē­‰å­¦ę ”'),
(53117, 44441, 'en', 'name', 'Ogaki Women''s College'),
(53118, 44441, 'ja', 'name', 'å¤§åž£å„³å­ēŸ­ęœŸå¤§å­¦'),
(53119, 44442, 'no_lang_code', 'name', 'Osaka Ibaraki High School'),
(53120, 44442, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹čŒØęœØé«˜ē­‰å­¦ę ”'),
(53121, 44443, 'en', 'name', 'Ogori City Board of Education'),
(53122, 44443, 'ja', 'name', 'å°éƒ”åø‚ ę•™č‚²å§”å“”ä¼š'),
(53123, 44444, 'en', 'name', 'Niigata Prefectural Education Center'),
(53124, 44444, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53125, 44445, 'en', 'name', 'Niigata Prefectural Naoetsu Secondary School'),
(53126, 44445, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ē›“ę±Ÿę“„é«˜ē­‰å­¦ę ”'),
(53127, 44446, 'en', 'name', 'Niigata Prefectural Nagaoka High School'),
(53128, 44446, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹é•·å²”é«˜ē­‰å­¦ę ”'),
(53129, 44447, 'en', 'name', 'National Institute of Technology Okinawa College'),
(53130, 44447, 'ja', 'name', 'ę²–ēø„å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(53131, 44448, 'en', 'name', 'Ohtsuki City College'),
(53132, 44448, 'ja', 'name', '大月短期大学'),
(53133, 44449, 'en', 'name', 'Niigata Prefectural Niigata High School'),
(53134, 44449, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę–°ę½Ÿé«˜ē­‰å­¦ę ”'),
(53135, 44450, 'en', 'name', 'Oita Prefectural Board of Education'),
(53136, 44450, 'ja', 'name', 'å¤§åˆ†ēœŒę•™č‚²å§”å“”ä¼š'),
(53137, 44451, 'en', 'name', 'Okinawa Prefectural Education Center'),
(53138, 44451, 'ja', 'name', 'ę²–ēø„ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53139, 44452, 'en', 'name', 'Sakai Technology High School'),
(53140, 44452, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹å ŗå·„ē§‘é«˜ē­‰å­¦ę ”'),
(53141, 44453, 'en', 'name', 'Osaka Prefectural Kitano High School'),
(53142, 44453, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹åŒ—é‡Žé«˜ē­‰å­¦ę ”'),
(53143, 44454, 'en', 'name', 'Oita Junior College'),
(53144, 44454, 'ja', 'name', 'å¤§åˆ†ēŸ­ęœŸå¤§å­¦'),
(53145, 44455, 'en', 'name', 'Osaka Prefectural Makino high school'),
(53146, 44455, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹ē‰§é‡Žé«˜ē­‰å­¦ę ”'),
(53147, 44456, 'en', 'name', 'Oita Prefectural College of Arts and Culture'),
(53148, 44456, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹čŠøč”“ę–‡åŒ–ēŸ­ęœŸå¤§å­¦'),
(53149, 44457, 'en', 'name', 'Niigata Prefectural Kamo Agriculture and Forestry High School'),
(53150, 44457, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹åŠ čŒ‚č¾²ęž—é«˜ē­‰å­¦ę ”'),
(53151, 44458, 'en', 'name', 'Okinawa Prefectural Koroku High School'),
(53152, 44458, 'ja', 'name', 'ę²–ēø„ēœŒē«‹å°ē¦„é«˜ē­‰å­¦ę ”'),
(53153, 44459, 'en', 'name', 'Niigata Prefectural Ojiya Nishi High School'),
(53154, 44459, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹å°åƒč°·č„æé«˜ē­‰å­¦ę ”'),
(53155, 44460, 'en', 'name', 'Okinawa Prefectural Museum'),
(53156, 44460, 'ja', 'name', 'ę²–ēø„ēœŒē«‹åšē‰©é¤Øćƒ»ē¾Žč”“é¤Ø'),
(53157, 44461, 'en', 'name', 'Osaka Prefectural Police Department'),
(53158, 44461, 'ja', 'name', '大阪府警察'),
(53159, 44462, 'en', 'name', 'Oita Prefectural Hiji support school'),
(53160, 44462, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹ę—„å‡ŗę”Æę“å­¦ę ”'),
(53161, 44463, 'en', 'name', 'Ōita Prefectural Museum of History'),
(53162, 44463, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(53163, 44464, 'en', 'name', 'Niigata City Kohshi Secondary School'),
(53164, 44464, 'ja', 'name', 'ę–°ę½Ÿåø‚ē«‹é«˜åæ—äø­ē­‰ę•™č‚²å­¦ę ”'),
(53165, 44465, 'en', 'name', 'Seibi High School'),
(53166, 44465, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹ęˆē¾Žé«˜ē­‰å­¦ę ”'),
(53167, 44466, 'en', 'name', 'Okinawa Womens Junior College'),
(53168, 44466, 'ja', 'name', 'ę²–ēø„å„³å­ēŸ­ęœŸå¤§å­¦'),
(53169, 44467, 'en', 'name', 'Osaka Prefectural Sano Polytechnic High School'),
(53170, 44467, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹ä½é‡Žå·„ē§‘é«˜ē­‰å­¦ę ”'),
(53171, 44468, 'en', 'name', 'Oita Prefectural School for the Blind'),
(53172, 44468, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹ē›²å­¦ę ”'),
(53173, 44469, 'en', 'name', 'Osaka Prefectural Toyonaka Support School'),
(53174, 44469, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹č±Šäø­ę”Æę“å­¦ę ”'),
(53175, 44470, 'en', 'name', 'Osaka Yukioka Medical University'),
(53176, 44470, 'ja', 'name', 'å¤§é˜Ŗč”Œå²”åŒ»ē™‚å¤§å­¦'),
(53177, 44471, 'en', 'name', 'National Institute of Technology, Oshima College'),
(53178, 44471, 'ja', 'name', 'å¤§å³¶å•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(53179, 44472, 'en', 'name', 'Osaka Prefectural Agricultural High School'),
(53180, 44472, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹č¾²čŠøé«˜ē­‰å­¦ę ”'),
(53181, 44473, 'en', 'name', 'Sugayadai Elementary School'),
(53182, 44473, 'ja', 'name', 'č…č°·å°å°å­¦ę ”'),
(53183, 44474, 'no_lang_code', 'name', 'Osaka Aoyama University'),
(53184, 44474, 'ja', 'name', 'å¤§é˜Ŗé’å±±å¤§å­¦'),
(53185, 44475, 'en', 'name', 'Osaka Center For Cultural Heritage'),
(53186, 44475, 'ja', 'name', 'å¤§é˜Ŗåŗœę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(53187, 44476, 'en', 'name', 'Fujiidera Technical High School'),
(53188, 44476, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹č—¤äŗ•åÆŗå·„ē§‘é«˜ē­‰å­¦ę ”'),
(53189, 44477, 'en', 'name', 'Okayama Prefectural Kurashiki Technical High School'),
(53190, 44477, 'ja', 'name', 'å²”å±±ēœŒē«‹å€‰ę•·å·„ę„­é«˜ē­‰å­¦ę ”'),
(53191, 44478, 'no_lang_code', 'name', 'Osaka Christian College'),
(53192, 44478, 'ja', 'name', 'å¤§é˜Ŗć‚­ćƒŖć‚¹ćƒˆę•™ēŸ­ęœŸå¤§å­¦'),
(53193, 44479, 'no_lang_code', 'name', 'Osaka Prefectural Shiroyama High School'),
(53194, 44479, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹åŸŽå±±é«˜ē­‰å­¦ę ”'),
(53195, 44480, 'en', 'name', 'Saitama Cultural Deposits Research Corporation'),
(53196, 44480, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ åŸ¼ēŽ‰ēœŒåŸ‹č”µę–‡åŒ–č²”čŖæęŸ»äŗ‹ę„­å›£'),
(53197, 44481, 'en', 'name', 'Takaishi High School'),
(53198, 44481, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹é«˜ēŸ³é«˜ē­‰å­¦ę ”'),
(53199, 44482, 'en', 'name', 'Ritsumeikan Junior and Senior High School'),
(53200, 44482, 'aa', 'name', 'ē«‹å‘½é¤Øäø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(53201, 44483, 'en', 'name', 'Osaka Municipal College of Design'),
(53202, 44483, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹ćƒ‡ć‚¶ć‚¤ćƒ³ę•™č‚²ē ”ē©¶ę‰€'),
(53203, 44484, 'en', 'name', 'Saitama Prefectural Education Center'),
(53204, 44484, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53205, 44485, 'en', 'name', 'Osaka Municipal Nishi High School'),
(53206, 44485, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹č„æé«˜ē­‰å­¦ę ”'),
(53207, 44486, 'en', 'name', 'Our Lady Academy of Sakura'),
(53208, 44486, 'ja', 'name', 'ē§ē«‹ę”œć®č–ęÆå­¦é™¢é«˜ę ”'),
(53209, 44487, 'en', 'name', 'National Institute of Technology, Oyama College'),
(53210, 44487, 'ja', 'name', 'å°å±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(53211, 44488, 'no_lang_code', 'name', 'Osaka Shin-ai College'),
(53212, 44488, 'ja', 'name', 'å¤§é˜Ŗäæ”ę„›å„³å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(53213, 44489, 'en', 'name', 'Saitama Women''s Junior College'),
(53214, 44489, 'ja', 'name', 'åŸ¼ēŽ‰å„³å­ēŸ­ęœŸå¤§å­¦'),
(53215, 44490, 'en', 'name', 'Osaka Municipal Miyakojima Technical High School'),
(53216, 44490, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹éƒ½å³¶å·„ę„­é«˜ē­‰å­¦ę ”'),
(53217, 44491, 'en', 'name', 'Seika Women''s Junior College'),
(53218, 44491, 'ja', 'name', 'ē²¾čÆå„³å­ēŸ­ęœŸå¤§å­¦'),
(53219, 44492, 'en', 'name', 'Seirei Women''s Junior College'),
(53220, 44492, 'ja', 'name', 'č–éœŠå„³å­ēŸ­ęœŸå¤§å­¦'),
(53221, 44493, 'en', 'name', 'Osaka Prefectural Horticulture High School'),
(53222, 44493, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹åœ’čŠøé«˜ē­‰å­¦ę ”'),
(53223, 44494, 'en', 'name', 'Sakai Women''s Junior College'),
(53224, 44494, 'ja', 'name', '堺儳子短期大学'),
(53225, 44495, 'en', 'name', 'Saga Prefectural Imari Agriculture and Forestry High School'),
(53226, 44495, 'ja', 'name', 'ä½č³€ēœŒē«‹ä¼Šäø‡é‡Œč¾²ęž—é«˜ē­‰å­¦ę ”'),
(53227, 44496, 'no_lang_code', 'name', 'Tokyo Seiei College'),
(53228, 44496, 'ja', 'name', 'ę±äŗ¬č–ę „å¤§å­¦'),
(53229, 44497, 'en', 'name', 'Parks and Recreation Foundation'),
(53230, 44497, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗ å…¬åœ’č²”å›£'),
(53231, 44498, 'en', 'name', 'Sakura no Seibo Junior College'),
(53232, 44498, 'ja', 'name', 'ę”œć®č–ęÆēŸ­ęœŸå¤§å­¦'),
(53233, 44499, 'en', 'name', 'Saga Prefectural Education Center'),
(53234, 44499, 'ja', 'name', 'ä½č³€ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53235, 44500, 'en', 'name', 'Kyoto Seizan College'),
(53236, 44500, 'ja', 'name', '京都脿山短期大学'),
(53237, 44501, 'en', 'name', 'Philatelic Museum'),
(53238, 44501, 'ja', 'name', 'åˆ‡ę‰‹ć®åšē‰©é¤Ø'),
(53239, 44502, 'en', 'name', 'Osaka Municipal Ikuno Technical High School'),
(53240, 44502, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹ē”Ÿé‡Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(53241, 44503, 'en', 'name', 'Salesian Polytechnic'),
(53242, 44503, 'ja', 'name', 'ć‚µćƒ¬ć‚øć‚Ŗé«˜å°‚ 惛'),
(53243, 44504, 'en', 'name', 'Sanjo Municipal Tsukioka Elementary School'),
(53244, 44504, 'ja', 'name', 'äø‰ę”åø‚ē«‹ęœˆå²”å°å­¦ę ”'),
(53245, 44505, 'no_lang_code', 'name', 'Sendai Seiyo Gakuin College'),
(53246, 44505, 'ja', 'name', 'ä»™å°é’č‘‰å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(53247, 44506, 'no_lang_code', 'name', 'Sendai Tateyama Tanaka School'),
(53248, 44506, 'ja', 'name', 'ä»™å°åø‚ē«‹å±±ē”°äø­å­¦ę ”'),
(53249, 44507, 'en', 'name', 'Sanyo Women''s College'),
(53250, 44507, 'ja', 'name', 'å±±é™½å„³å­ēŸ­ęœŸå¤§å­¦'),
(53251, 44508, 'en', 'name', 'Shizuoka Prefectural Science and Technology High School'),
(53252, 44508, 'ja', 'name', 'é™å²”ēœŒē«‹ē§‘å­¦ęŠ€č”“é«˜ē­‰å­¦ę ”'),
(53253, 44509, 'en', 'name', 'Saitama Junshin Junior College'),
(53254, 44509, 'ja', 'name', 'åŸ¼ēŽ‰ē“”ēœŸēŸ­ęœŸå¤§å­¦'),
(53255, 44510, 'en', 'name', 'Shizuoka Prefectural Central Library'),
(53256, 44510, 'ja', 'name', 'é™å²”ēœŒē«‹äø­å¤®å›³ę›øé¤Ø'),
(53257, 44511, 'en', 'name', 'Shizuoka Prefectural Education Center'),
(53258, 44511, 'ja', 'name', 'é™å²”ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53259, 44512, 'en', 'name', 'Saitama Prefectural Omiya Chuo Senior High School'),
(53260, 44512, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹å¤§å®®äø­å¤®é«˜ē­‰å­¦ę ”'),
(53261, 44513, 'en', 'name', 'Saitama Prefectural Omiya High School'),
(53262, 44513, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹å¤§å®®é«˜ē­‰å­¦ę ”'),
(53263, 44514, 'no_lang_code', 'name', 'Showagakuin Junior College'),
(53264, 44514, 'ja', 'name', 'ę˜­å’Œå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(53265, 44515, 'no_lang_code', 'name', 'Shizuoka Prefectural Gotemba Minami High School'),
(53266, 44515, 'ja', 'name', 'é™å²”ēœŒē«‹å¾”ę®æå “å—é«˜ē­‰å­¦ę ”'),
(53267, 44516, 'no_lang_code', 'name', 'Shiretoko Museum'),
(53268, 44516, 'ja', 'name', 'ę–œé‡Œē”ŗē«‹ēŸ„åŗŠåšē‰©é¤Ø'),
(53269, 44517, 'en', 'name', 'Industrial Research Institute of Shizuoka Prefecture'),
(53270, 44517, 'ja', 'name', 'é™å²”ēœŒå·„ę„­ęŠ€č”“ē ”ē©¶ę‰€'),
(53271, 44518, 'en', 'name', 'Shuko Junior College'),
(53272, 44518, 'ja', 'name', 'äæ®ē“…ēŸ­ęœŸå¤§å­¦'),
(53273, 44519, 'en', 'name', 'Ohara Memorial Institute for Science of Labour'),
(53274, 44519, 'ja', 'name', 'å¤§åŽŸčØ˜åæµåŠ“åƒē§‘å­¦ē ”ē©¶ę‰€'),
(53275, 44520, 'en', 'name', 'Shizuoka Prefectural Kakegawanishi High School'),
(53276, 44520, 'ja', 'name', 'é™å²”ēœŒē«‹ęŽ›å·č„æé«˜ē­‰å­¦ę ”'),
(53277, 44521, 'no_lang_code', 'name', 'Shukutoku Junior College'),
(53278, 44521, 'ja', 'name', 'ę·‘å¾³ēŸ­ęœŸå¤§å­¦'),
(53279, 44522, 'en', 'name', 'Saitama Prefectural Miyashiro High School'),
(53280, 44522, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒå®®ä»£é«˜ē­‰å­¦ę ”'),
(53281, 44523, 'en', 'name', 'Shiga Bunkyo Junior College'),
(53282, 44523, 'ja', 'name', 'ę»‹č³€ę–‡ę•™ēŸ­ęœŸå¤§å­¦'),
(53283, 44524, 'en', 'name', 'Shizuoka Prefectural Police'),
(53284, 44524, 'ja', 'name', 'é™å²”ēœŒč­¦åÆŸ'),
(53285, 44525, 'en', 'name', 'Lion Foundation for Dental Health'),
(53286, 44525, 'ja', 'name', 'ćƒ©ć‚¤ć‚Ŗćƒ³ę­Æē§‘č”›ē”Ÿē ”ē©¶ę‰€'),
(53287, 44526, 'no_lang_code', 'name', 'Fuchu Hospital'),
(53288, 44526, 'ja', 'name', 'åŗœäø­ē—…é™¢'),
(53289, 44527, 'en', 'name', 'Shiga Junior College'),
(53290, 44527, 'ja', 'name', 'ę»‹č³€ēŸ­ęœŸå¤§å­¦'),
(53291, 44528, 'en', 'name', 'Shizuoka Prefecture Agricultural and Forestry Research Institute'),
(53292, 44528, 'ja', 'name', 'é™å²”ēœŒ/č¾²ęž—ęŠ€č”“ē ”ē©¶ę‰€'),
(53293, 44529, 'en', 'name', 'Inagakuen Public High School'),
(53294, 44529, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒä¼Šå„ˆå­¦åœ’ē·åˆé«˜ę ”'),
(53295, 44530, 'en', 'name', 'Saitama Prefectural Industrial Technology Center'),
(53296, 44530, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(53297, 44531, 'en', 'name', 'Shiga Prefectural Education Center'),
(53298, 44531, 'ja', 'name', 'ę»‹č³€ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53299, 44532, 'en', 'name', 'Saitama Prefectural Kodama High School'),
(53300, 44532, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒå…ēŽ‰é«˜ę ”'),
(53301, 44533, 'en', 'name', 'Sophia School of Social Welfare'),
(53302, 44533, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ć®ć‚½ćƒ•ć‚£ć‚¢ćƒ»ć‚¹ć‚Æćƒ¼ćƒ«'),
(53303, 44534, 'en', 'name', 'Quantum Chemistry Research Institute'),
(53304, 44534, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗ é‡å­åŒ–å­¦ē ”ē©¶å”ä¼šē ”ē©¶ę‰€'),
(53305, 44535, 'en', 'name', 'Saitama Prefectural Kumagaya Girls High School'),
(53306, 44535, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ē†Šč°·å„³å­é«˜ē­‰å­¦ę ”'),
(53307, 44536, 'en', 'name', 'Shizuoka Prefectural Board of Education'),
(53308, 44536, 'ja', 'name', 'é™å²”ēœŒę•™č‚²å§”å“”ä¼š'),
(53309, 44537, 'en', 'name', 'Saitama Prefectural Museum of History and Folklore'),
(53310, 44537, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ę­“å²ćØę°‘äæ—ć®åšē‰©é¤Ø'),
(53311, 44538, 'en', 'name', 'St. Cecilia Women''s Junior College'),
(53312, 44538, 'ja', 'name', 'č–ć‚»ć‚·ćƒŖć‚¢ēŸ­ęœŸå¤§å­¦'),
(53313, 44539, 'no_lang_code', 'name', 'Nippon Koei (Japan)'),
(53314, 44539, 'ja', 'name', 'ę—„ęœ¬å·„å–¶'),
(53315, 44540, 'en', 'name', 'Saitama Prefectural Museum of Natural History'),
(53316, 44540, 'ja', 'name', 'č‡Ŗē„¶å²ć®åŸ¼ēŽ‰ēœŒē«‹ē¾Žč”“é¤Ø'),
(53317, 44541, 'en', 'name', 'Okinawa Prefectural Board of Education'),
(53318, 44541, 'ja', 'name', 'ę²–ēø„ēœŒę•™č‚²å§”å“”ä¼š'),
(53319, 44542, 'en', 'name', 'Saitama Prefectural Tokorozawa Nishi High School'),
(53320, 44542, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ę‰€ę²¢č„æé«˜ē­‰å­¦ę ”'),
(53321, 44543, 'en', 'name', 'Ohda High School'),
(53322, 44543, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹å¤§ē”°é«˜ē­‰å­¦ę ”'),
(53323, 44544, 'en', 'name', 'St. Margaret''s Junior College'),
(53324, 44544, 'ja', 'name', 'ē«‹ę•™å„³å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(53325, 44545, 'en', 'name', 'Hamamatsu City High School'),
(53326, 44545, 'ja', 'name', 'ęµœę¾åø‚é«˜ē­‰å­¦ę ”'),
(53327, 44546, 'en', 'name', 'Saitama Prefectural Toyooka High School'),
(53328, 44546, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹č±Šå²”é«˜ē­‰å­¦ę ”'),
(53329, 44547, 'en', 'name', 'St. Mary''s College'),
(53330, 44547, 'ja', 'name', 'åå¤å±‹ęŸ³åŸŽēŸ­ęœŸå¤§å­¦'),
(53331, 44548, 'en', 'name', 'Saitama Prefectural Urawa first Girls'' High School'),
(53332, 44548, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ęµ¦å’Œē¬¬äø€å„³å­é«˜ē­‰å­¦ę ”'),
(53333, 44549, 'en', 'name', 'Shimane Prefectural Daito High School'),
(53334, 44549, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹å¤§ę±é«˜ē­‰å­¦ę ”'),
(53335, 44550, 'en', 'name', 'Saitama Prefectural Urawa High School'),
(53336, 44550, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ęµ¦å’Œé«˜ę ”'),
(53337, 44551, 'en', 'name', 'Research Institute for Electromagnetic Materials'),
(53338, 44551, 'ja', 'name', 'é›»ē£ęę–™ē ”ē©¶ę‰€'),
(53339, 44552, 'en', 'name', 'National Institute of Technology, Suzuka College'),
(53340, 44552, 'ja', 'name', 'éˆ“é¹æå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(53341, 44553, 'en', 'name', 'Research Institute for Environmental Sciences and Public Health of Iwate Prefecture'),
(53342, 44553, 'ja', 'name', 'å²©ę‰‹ēœŒē’°å¢ƒäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(53343, 44554, 'no_lang_code', 'name', 'Takada Junior College'),
(53344, 44554, 'ja', 'name', 'é«˜ē”°ēŸ­ęœŸå¤§å­¦'),
(53345, 44555, 'en', 'name', 'Shoei Junior College'),
(53346, 44555, 'ja', 'name', 'é Œę „ēŸ­ęœŸå¤§å­¦'),
(53347, 44556, 'en', 'name', 'Research Institute for Peace and Security'),
(53348, 44556, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¹³å’Œćƒ»å®‰å…Øäæéšœē ”ē©¶ę‰€'),
(53349, 44557, 'en', 'name', 'Miyazaki Prefecture Takanabe Agricultural High School'),
(53350, 44557, 'ja', 'name', 'å®®å“ŽēœŒē«‹é«˜é‹č¾²ę„­é«˜ē­‰å­¦ę ”'),
(53351, 44558, 'en', 'name', 'Shogen Junior College'),
(53352, 44558, 'ja', 'name', '正眼短期大学'),
(53353, 44559, 'en', 'name', 'Shiminkatsudou Information Center'),
(53354, 44560, 'en', 'name', 'Takarazuka University of Medical and Health Care'),
(53355, 44560, 'ja', 'name', 'å®å”šåŒ»ē™‚å¤§å­¦'),
(53356, 44561, 'en', 'name', 'Takayama College of Car Technology'),
(53357, 44561, 'ja', 'name', 'é«˜å±±č‡Ŗå‹•č»ŠēŸ­ęœŸå¤§å­¦'),
(53358, 44562, 'en', 'name', 'Shinshu Honan Junior College'),
(53359, 44562, 'ja', 'name', 'äæ”å·žč±Šå—ēŸ­ęœŸå¤§å­¦'),
(53360, 44563, 'no_lang_code', 'name', 'Takenaka (Japan)'),
(53361, 44563, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē«¹äø­å·„å‹™åŗ—'),
(53362, 44564, 'en', 'name', 'Osaka Municipal Museum of Oriental Ceramics'),
(53363, 44565, 'no_lang_code', 'name', 'Yokosuka City Museum'),
(53364, 44565, 'ja', 'name', 'ęØŖé ˆč³€åø‚č‡Ŗē„¶ćƒ»äŗŗę–‡åšē‰©é¤Ø'),
(53365, 44566, 'en', 'name', 'Tobu College of Medical Technology'),
(53366, 44566, 'ja', 'name', 'ę±ę­¦åŒ»å­¦ęŠ€č”“å°‚é–€å­¦ę ”'),
(53367, 44567, 'en', 'name', 'Disaster Reduction and Human Renovation Institution'),
(53368, 44567, 'ja', 'name', 'é˜Ŗē„žćƒ»ę·”č·Æå¤§éœ‡ē½čØ˜åæµ äŗŗćØé˜²ē½ęœŖę„ć‚»ćƒ³ć‚æćƒ¼'),
(53369, 44568, 'en', 'name', 'Tokyo Metropolitan Saginomiya High School'),
(53370, 44568, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹é·ŗå®®é«˜ē­‰å­¦ę ”'),
(53371, 44569, 'en', 'name', 'Tochigi Prefectural Utsunomiya Commercial and Business High School'),
(53372, 44569, 'ja', 'name', 'ę ƒęœØēœŒē«‹å®‡éƒ½å®®å•†ę„­é«˜ē­‰å­¦ę ”'),
(53373, 44570, 'no_lang_code', 'name', 'Tokyo Metropolitan Musashigaoka High School'),
(53374, 44570, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę­¦č”µäø˜é«˜ē­‰å­¦ę ”'),
(53375, 44571, 'en', 'name', 'Institute for Future Engineering'),
(53376, 44571, 'ja', 'name', 'ęœŖę„å·„å­¦ē ”ē©¶ę‰€'),
(53377, 44572, 'en', 'name', 'Tochigi Prefectural Museum of Fine Arts'),
(53378, 44572, 'ja', 'name', 'ę ƒęœØēœŒē«‹ē¾Žč”“é¤Ø'),
(53379, 44573, 'en', 'name', 'Tokyo Hygiene Gakuen College'),
(53380, 44573, 'ja', 'name', 'ę±äŗ¬č”›ē”Ÿå­¦åœ’å°‚é–€å­¦ę ”'),
(53381, 44574, 'en', 'name', 'Tokyo Metropolitan Board of Education'),
(53382, 44574, 'ja', 'name', 'ę±äŗ¬éƒ½ę•™č‚²äŗ‹å‹™ę‰€'),
(53383, 44575, 'en', 'name', 'Tokyo Metropolitan Police Department'),
(53384, 44575, 'ja', 'name', '警視庁'),
(53385, 44576, 'en', 'name', 'Institute for Research on Household Economics'),
(53386, 44576, 'ja', 'name', 'å®¶čØˆēµŒęøˆē ”ē©¶ę‰€'),
(53387, 44577, 'no_lang_code', 'name', 'Shinjuku Yamabuki High School'),
(53388, 44577, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę–°å®æå±±å¹é«˜ē­‰å­¦ę ”'),
(53389, 44578, 'en', 'name', 'Toyama Prefectural Education Center'),
(53390, 44578, 'ja', 'name', 'åÆŒå±±ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53391, 44579, 'en', 'name', 'Tokyo College of Transport Studies'),
(53392, 44579, 'ja', 'name', 'ę±äŗ¬äŗ¤é€šēŸ­ęœŸå¤§å­¦'),
(53393, 44580, 'en', 'name', 'Tateyama Elementary School'),
(53394, 44580, 'ja', 'name', 'ē«‹å±±å°å­¦ę ”'),
(53395, 44581, 'en', 'name', 'The Institute of Buraku Problem'),
(53396, 44581, 'ja', 'name', 'éƒØč½å•é”Œē ”ē©¶ę‰€'),
(53397, 44582, 'en', 'name', 'Tokyo Metropolitan Musashi High School'),
(53398, 44582, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę­¦č”µé«˜ē­‰å­¦ę ”'),
(53399, 44583, 'en', 'name', 'Toyo College of Food Technology'),
(53400, 44583, 'ja', 'name', 'ę±ę“‹é£Ÿå“å·„ę„­ēŸ­ęœŸå¤§å­¦'),
(53401, 44584, 'en', 'name', 'National Institute of Technology, Tokyo College'),
(53402, 44584, 'ja', 'name', 'å›½ē«‹ę±äŗ¬å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(53403, 44585, 'en', 'name', 'Tokyo Metropolitan Kuramae Technical High School'),
(53404, 44585, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹č”µå‰å·„ę„­é«˜ē­‰å­¦ę ”'),
(53405, 44586, 'en', 'name', 'Toita Women''s College'),
(53406, 44586, 'ja', 'name', 'ęˆøęæå„³å­ēŸ­ęœŸå¤§å­¦'),
(53407, 44587, 'en', 'name', 'Tokyo National Museum'),
(53408, 44587, 'ja', 'name', 'ę±äŗ¬å›½ē«‹åšē‰©é¤Ø'),
(53409, 44588, 'en', 'name', 'Foundation of Global Life Learning Center'),
(53410, 44588, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ ē”Ÿę¶Æå­¦ēæ’é–‹ē™ŗč²”å›£ 事務局'),
(53411, 44589, 'en', 'name', 'Japan Snake Institute'),
(53412, 44589, 'ja', 'name', 'ę—„ęœ¬ć‚¹ćƒćƒ¼ć‚Æē ”ē©¶ę‰€'),
(53413, 44590, 'en', 'name', 'Tokyo Management College'),
(53414, 44590, 'ja', 'name', 'ę±äŗ¬ēµŒå–¶ēŸ­ęœŸå¤§å­¦'),
(53415, 44591, 'en', 'name', 'Tokyo Rissho Junior College'),
(53416, 44591, 'ja', 'name', 'ę±äŗ¬ē«‹ę­£ēŸ­ęœŸå¤§å­¦'),
(53417, 44592, 'en', 'name', 'Japanese Red Cross Akita College of Nursing'),
(53418, 44592, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē§‹ē”°ēœ‹č­·å¤§å­¦'),
(53419, 44593, 'en', 'name', 'Japanese Red Cross Hiroshima College of Nursing'),
(53420, 44593, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—åŗƒå³¶ēœ‹č­·å¤§å­¦'),
(53421, 44594, 'en', 'name', 'Toyota Transportation Research Institute'),
(53422, 44594, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč±Šē”°éƒ½åø‚äŗ¤é€šē ”ē©¶ę‰€'),
(53423, 44595, 'en', 'name', 'Tokyo Metropolitan Nogyo High School'),
(53424, 44596, 'en', 'name', 'Gifu Prefectural Toki Commercial High School'),
(53425, 44596, 'ja', 'name', 'å²é˜œēœŒē«‹åœŸå²å•†ę„­é«˜ē­‰å­¦ę ”'),
(53426, 44597, 'en', 'name', 'Tokyo Union Theological Seminary'),
(53427, 44597, 'ja', 'name', 'ę±äŗ¬ē„žå­¦å¤§å­¦'),
(53428, 44598, 'en', 'name', 'Tokyo Metropolitan Agriculture and Forestry Research Center'),
(53429, 44598, 'ja', 'name', 'ę±äŗ¬éƒ½č¾²ęž—ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(53430, 44599, 'en', 'name', 'Tsu City College'),
(53431, 44599, 'ja', 'name', 'äø‰é‡ēŸ­ęœŸå¤§å­¦'),
(53432, 44600, 'en', 'name', 'Nishigaoka Elementary School'),
(53433, 44600, 'ja', 'name', 'ę“„åø‚ē«‹č„æćŒäø˜å°å­¦ę ”'),
(53434, 44601, 'no_lang_code', 'name', 'Tokyo Metropolitan Archives'),
(53435, 44601, 'ja', 'name', 'ę±äŗ¬éƒ½å…¬ę–‡ę›øé¤Ø'),
(53436, 44602, 'en', 'name', 'Middle Eastern Culture Center in Japan'),
(53437, 44602, 'ja', 'name', 'ę—„ęœ¬ć§ćÆäø­čæ‘ę±ę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(53438, 44603, 'no_lang_code', 'name', 'Toyama Prefectural Takaoka High School'),
(53439, 44603, 'ja', 'name', 'åÆŒå±±ēœŒē«‹é«˜å²”é«˜ē­‰å­¦ę ”'),
(53440, 44604, 'en', 'name', 'Mitsubishi Economic Research Institute'),
(53441, 44604, 'ja', 'name', 'äø‰č±ēµŒęøˆē ”ē©¶ę‰€'),
(53442, 44605, 'en', 'name', 'Tokyo Metropolitan Bunkyo High School'),
(53443, 44605, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę–‡äŗ¬é«˜ē­‰å­¦ę ”'),
(53444, 44606, 'no_lang_code', 'name', 'Museum of Modern Art Kamakura and Hayama'),
(53445, 44606, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹čæ‘ä»£ē¾Žč”“é¤Øč‘‰å±±'),
(53446, 44607, 'no_lang_code', 'name', 'Tottori College'),
(53447, 44607, 'ja', 'name', 'é³„å–ēŸ­ęœŸå¤§å­¦'),
(53448, 44608, 'en', 'name', 'Tottori Prefectural Museum'),
(53449, 44608, 'ja', 'name', 'é³„å–ēœŒē«‹åšē‰©é¤Ø'),
(53450, 44609, 'en', 'name', 'Tokyo Metropolitan East High School'),
(53451, 44609, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę±é«˜ē­‰å­¦ę ”'),
(53452, 44610, 'en', 'name', 'Paleological Association of Japan'),
(53453, 44610, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤ä»£å­¦å”ä¼š'),
(53454, 44611, 'en', 'name', 'Museum of Nature and Human Activities Hyogo'),
(53455, 44611, 'ja', 'name', 'č‡Ŗē„¶ć®åšē‰©é¤ØćØäŗŗé–“ę“»å‹•å…µåŗ«'),
(53456, 44612, 'en', 'name', 'Tottori Prefectural Chizu Agriculture and Forestry High School'),
(53457, 44612, 'ja', 'name', 'é³„å–ēœŒē«‹ę™ŗé ­č¾²ęž—é«˜ē­‰å­¦ę ”'),
(53458, 44613, 'en', 'name', 'Tokushima College of Technology'),
(53459, 44613, 'ja', 'name', '徳島巄愭短期大学'),
(53460, 44614, 'en', 'name', 'Tsukuba Municipal Azuma Elementary School'),
(53461, 44614, 'ja', 'name', 'ć¤ćć°åø‚ē«‹å¾å¦»å°å­¦ę ”'),
(53462, 44615, 'en', 'name', 'Toyama Industrial Technology Center'),
(53463, 44615, 'ja', 'name', 'åÆŒå±±ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(53464, 44616, 'en', 'name', 'Museum of Japanese Art Yamato Bunkakan'),
(53465, 44616, 'ja', 'name', 'å¤§å’Œę–‡čÆé¤Ø'),
(53466, 44617, 'en', 'name', 'Toyama Prefectural Toyama Minami High School'),
(53467, 44617, 'ja', 'name', 'åÆŒå±±ēœŒē«‹åÆŒå±±å—é«˜ē­‰å­¦ę ”'),
(53468, 44618, 'en', 'name', 'Tokushima Prefectural Museum'),
(53469, 44618, 'ja', 'name', 'å¾³å³¶ēœŒē«‹åšē‰©é¤Ø'),
(53470, 44619, 'en', 'name', 'Tsuruoka Technical High School'),
(53471, 44619, 'ja', 'name', 'å±±å½¢ēœŒē«‹é¶“å²”å·„ę„­é«˜ē­‰å­¦ę ”'),
(53472, 44620, 'en', 'name', 'Tokushima Prefectural Police'),
(53473, 44620, 'ja', 'name', '徳島県警察本部'),
(53474, 44621, 'no_lang_code', 'name', 'Toyama College'),
(53475, 44621, 'ja', 'name', '富山短期大学'),
(53476, 44622, 'en', 'name', 'National Institute of Technology, Ube College'),
(53477, 44622, 'ja', 'name', 'å®‡éƒØå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(53478, 44623, 'en', 'name', 'Toyama Prefectural Institute for Pharmaceutical Research'),
(53479, 44623, 'ja', 'name', 'åÆŒå±±ēœŒč–¬äŗ‹ē·åˆē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(53480, 44624, 'en', 'name', 'Tokushima Prefectural General Education Center'),
(53481, 44624, 'ja', 'name', 'å¾³å³¶ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53482, 44625, 'en', 'name', 'National Museum of Art Osaka'),
(53483, 44625, 'ja', 'name', 'å›½ē«‹å›½éš›ē¾Žč”“é¤Ø'),
(53484, 44626, 'en', 'name', 'Ueda Womens Junior College'),
(53485, 44626, 'ja', 'name', 'äøŠē”°å„³å­ēŸ­ęœŸå¤§å­¦'),
(53486, 44627, 'en', 'name', 'Toyama Prefectural Namerikawa High School'),
(53487, 44627, 'ja', 'name', 'åÆŒå±±ēœŒē«‹ę»‘å·é«˜ē­‰å­¦ę ”'),
(53488, 44628, 'en', 'name', 'Tokyo Metropolitan Hiroo High School'),
(53489, 44628, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹åŗƒå°¾é«˜ē­‰å­¦ę ”'),
(53490, 44629, 'en', 'name', 'Toyama Prefectural Sakurai High School'),
(53491, 44629, 'ja', 'name', 'åÆŒå±±ēœŒē«‹ę”œäŗ•é«˜ē­‰å­¦ę ”'),
(53492, 44630, 'en', 'name', 'National Institute of Technology, Tokuyama College'),
(53493, 44630, 'ja', 'name', 'å¾³å±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(53494, 44631, 'en', 'name', 'National Museum of Modern Art Kyoto'),
(53495, 44631, 'ja', 'name', 'äŗ¬éƒ½å›½ē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(53496, 44632, 'en', 'name', 'Tokyo Metropolitan Industrial Technology Research Institute'),
(53497, 44632, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ē”£ę„­ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(53498, 44633, 'en', 'name', 'Tokyo Sport Benefits Corporation'),
(53499, 44633, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę±äŗ¬éƒ½ć‚¹ćƒćƒ¼ćƒ„ę–‡åŒ–äŗ‹ę„­å›£'),
(53500, 44634, 'en', 'name', 'National Museum of Modern Art Tokyo'),
(53501, 44634, 'ja', 'name', 'ę±äŗ¬å›½ē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(53502, 44635, 'en', 'name', 'Tokyo High School'),
(53503, 44635, 'ja', 'name', 'ę±äŗ¬é«˜ē­‰å­¦ę ”'),
(53504, 44636, 'en', 'name', 'National Museum of Western Art'),
(53505, 44636, 'ja', 'name', 'å›½ē«‹č„æę“‹ē¾Žč”“é¤Ø'),
(53506, 44637, 'en', 'name', 'Tokyo Metropolitan Koganei Industrial High School'),
(53507, 44637, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å°é‡‘äŗ•å·„ę„­é«˜ē­‰å­¦ę ”'),
(53508, 44638, 'en', 'name', 'Noguchi Institute'),
(53509, 44638, 'ja', 'name', 'č²”å›£ę³•äŗŗé‡Žå£ē ”ē©¶ę‰€'),
(53510, 44639, 'en', 'name', 'Nitobe Bunka College'),
(53511, 44639, 'ja', 'name', 'ę–°ęø”ęˆøę–‡åŒ–ēŸ­ęœŸå¤§å­¦'),
(53512, 44640, 'en', 'name', 'Kyoto Prefecture Archaeological Research Center'),
(53513, 44640, 'ja', 'name', 'äŗ¬éƒ½åŗœåŸ‹č”µę–‡åŒ–č²”čŖæęŸ»ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(53514, 44641, 'en', 'name', 'Tokyo Metropolitan Komaba High School'),
(53515, 44641, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹é§’å “é«˜ē­‰å­¦ę ”'),
(53516, 44642, 'en', 'name', 'Wakayama Prefectural Board of Education'),
(53517, 44642, 'ja', 'name', 'å’Œę­Œå±±ēœŒę•™č‚²å§”å“”ä¼š'),
(53518, 44643, 'en', 'name', 'Foundation Wakayama Prefecture Cultural Property Center'),
(53519, 44643, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå’Œę­Œå±±ēœŒę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(53520, 44644, 'en', 'name', 'Wakayama Prefectural Educational Center'),
(53521, 44644, 'ja', 'name', 'å’Œę­Œå±±ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼å­¦ć³ć®äø˜'),
(53522, 44645, 'en', 'name', 'Research Institutue of Evolutionary Biology'),
(53523, 44645, 'ja', 'name', 'é€²åŒ–ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(53524, 44646, 'en', 'name', 'Wakayama Shin-Ai Women''s Junior College'),
(53525, 44646, 'ja', 'name', 'å’Œę­Œå±±äæ”ę„›å„³å­ēŸ­ęœŸå¤§å­¦'),
(53526, 44647, 'en', 'name', 'Wakayama Prefectural Tanabe High School'),
(53527, 44647, 'ja', 'name', 'å’Œę­Œå±±ēœŒē«‹ ē”°č¾ŗé«˜ē­‰å­¦ę ”'),
(53528, 44648, 'en', 'name', 'Japan Society of Chemotherapy'),
(53529, 44648, 'ja', 'name', 'åŒ–å­¦ē™‚ę³•å­¦ä¼š'),
(53530, 44649, 'no_lang_code', 'name', 'Yamamura Gakuen College'),
(53531, 44649, 'ja', 'name', 'å±±ę‘å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(53532, 44650, 'en', 'name', 'Minabe Senior High School'),
(53533, 44650, 'ja', 'name', 'å’Œę­Œå±±ēœŒē«‹å—éƒØé«˜ē­‰å­¦ę ”'),
(53534, 44651, 'en', 'name', 'Tohoku Bunkyo University'),
(53535, 44651, 'ja', 'name', 'ę±åŒ—ę–‡ę•™å¤§å­¦'),
(53536, 44652, 'en', 'name', 'Yamanashi Prefecture Forestry and Forest Products Research Institute'),
(53537, 44652, 'ja', 'name', 'å±±ę¢ØēœŒę£®ęž—ē·åˆē ”ē©¶ę‰€ ę£®ęž—äæč­·ē§‘'),
(53538, 44653, 'en', 'name', 'Yamagata Prefectural Sagae High School'),
(53539, 44653, 'ja', 'name', 'å±±å½¢ēœŒē«‹åÆ’ę²³ę±Ÿé«˜ē­‰å­¦ę ”'),
(53540, 44654, 'en', 'name', 'Yamagata Prefectural Mamurogawa High School'),
(53541, 44654, 'ja', 'name', 'å±±å½¢ēœŒē«‹ę–°åŗ„ē„žå®¤ē”£ę„­é«˜ē­‰å­¦ę ”ēœŸå®¤å·ę ”'),
(53542, 44655, 'no_lang_code', 'name', 'Yamagata Prefectural Police'),
(53543, 44655, 'ja', 'name', '山形県警察'),
(53544, 44656, 'en', 'name', 'University of Yamanashi Hospital'),
(53545, 44656, 'ja', 'name', 'å±±ę¢Øå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(53546, 44657, 'en', 'name', 'Yokohama College of Art and Design'),
(53547, 44657, 'ja', 'name', 'ęØŖęµœē¾Žč”“ēŸ­ęœŸå¤§å­¦'),
(53548, 44658, 'en', 'name', 'Norin High School'),
(53549, 44658, 'ja', 'name', 'å±±ę¢ØēœŒē«‹č¾²ęž—é«˜ē­‰å­¦ę ”'),
(53550, 44659, 'en', 'name', 'Yamanashi Prefectural School for the Visually Impaired'),
(53551, 44659, 'ja', 'name', 'å±±ę¢ØēœŒē«‹ē›²å­¦ę ”'),
(53552, 44660, 'en', 'name', 'Yamaguchi Junior College'),
(53553, 44660, 'ja', 'name', 'å±±å£ēŸ­ęœŸå¤§å­¦'),
(53554, 44661, 'en', 'name', 'Yamanashi Prefectural Education Center'),
(53555, 44661, 'ja', 'name', 'å±±ę¢ØēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53556, 44662, 'en', 'name', 'National Institute of Technology, Yonago College'),
(53557, 44662, 'ja', 'name', 'å›½ē«‹ē±³å­å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(53558, 44663, 'en', 'name', 'Yamagata Prefectural Education Institute'),
(53559, 44663, 'ja', 'name', 'å±±å½¢ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53560, 44664, 'en', 'name', 'Yamaguchi Prefectural Asa High School');
INSERT INTO `ror_settings` VALUES
(53561, 44664, 'ja', 'name', 'å±±å£ēœŒē«‹åŽšē‹­é«˜ē­‰å­¦ę ”'),
(53562, 44665, 'en', 'name', 'Yamanashi Prefectural Fisheries Technology Center'),
(53563, 44665, 'ja', 'name', 'ę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(53564, 44666, 'en', 'name', 'Tottori Prefectural Yonago High School'),
(53565, 44666, 'ja', 'name', 'é³„å–ēœŒē«‹ē±³å­é«˜ē­‰å­¦ę ”'),
(53566, 44667, 'en', 'name', 'Yamanashi Prefectural Museum'),
(53567, 44667, 'ja', 'name', 'å±±ę¢ØēœŒē«‹åšē‰©é¤Ø'),
(53568, 44668, 'en', 'name', 'Yamanashi Prefectural Museum of Archaeology'),
(53569, 44668, 'ja', 'name', 'å±±ę¢ØēœŒē«‹č€ƒå¤åšē‰©é¤Ø'),
(53570, 44669, 'en', 'name', 'Yamaguchi Prefecture Archives'),
(53571, 44669, 'ja', 'name', 'å±±å£ēœŒę–‡ę›øé¤Ø'),
(53572, 44670, 'en', 'name', 'Yonezawa Chuo Senior High School'),
(53573, 44670, 'ja', 'name', 'ē±³ę²¢äø­å¤®é«˜ē­‰å­¦ę ”'),
(53574, 44671, 'en', 'name', 'Yamaguchi Education Support Center'),
(53575, 44671, 'ja', 'name', 'ć‚„ć¾ćć”ē·åˆę•™č‚²ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(53576, 44672, 'en', 'name', 'Yonezawa Technical High School'),
(53577, 44672, 'ja', 'name', 'ē±³ę²¢å·„ę„­é«˜ē­‰å­¦ę ”'),
(53578, 44673, 'en', 'name', 'Yonezawa Women''s Junior College'),
(53579, 44673, 'ja', 'name', 'å±±å½¢ēœŒē«‹ē±³ę²¢å„³å­ēŸ­ęœŸå¤§å­¦'),
(53580, 44674, 'en', 'name', 'Yamato University'),
(53581, 44674, 'ja', 'name', '大和大学'),
(53582, 44675, 'en', 'name', 'Yoshida Biological Laboratry'),
(53583, 44675, 'ja', 'name', 'å‰ē”°ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(53584, 44676, 'en', 'name', 'National Institute of Technology, Yuge College'),
(53585, 44676, 'ja', 'name', 'å¼“å‰Šå•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(53586, 44677, 'en', 'name', 'Yamaguchi Prefectural Shimonoseki Industrial School'),
(53587, 44677, 'ja', 'name', 'å±±å£ēœŒē«‹äø‹é–¢å·„ę„­é«˜ē­‰å­¦ę ”'),
(53588, 44678, 'en', 'name', 'Kanagawa Prefectural Zushi High School'),
(53589, 44678, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹é€—å­é«˜ē­‰å­¦ę ”'),
(53590, 44679, 'en', 'name', 'Hokkaido Pharmaceutical University'),
(53591, 44679, 'ja', 'name', 'åŒ—ęµ·é“č–¬ē§‘å¤§å­¦'),
(53592, 44680, 'de', 'name', 'Wikimedia Deutschland'),
(53593, 44681, 'no_lang_code', 'name', 'Wikimedia Israel'),
(53594, 44681, 'he', 'name', 'ויקימדיה ×™×©×Ø××œ'),
(53595, 44682, 'en', 'name', 'Wikimedia Belgium'),
(53596, 44682, 'nl', 'name', 'WikimƩdia Belgique'),
(53597, 44683, 'en', 'name', 'Wikimedia Argentina'),
(53598, 44684, 'no_lang_code', 'name', 'Wikimedia Ukraine'),
(53599, 44684, 'uk', 'name', 'ВікімеГіа Україна'),
(53600, 44685, 'en', 'name', 'Wikimedia Australia'),
(53601, 44686, 'en', 'name', 'Wikimedia Ɩsterreich'),
(53602, 44687, 'no_lang_code', 'name', 'Wikimedia Hong Kong'),
(53603, 44687, 'zh', 'name', 'é¦™ęøÆē¶­åŸŗåŖ’é«”å”ęœƒ'),
(53604, 44688, 'no_lang_code', 'name', 'Wikimedia Bangladesh'),
(53605, 44688, 'bn', 'name', 'উইকিমিঔিয়া বাংলাদেশ'),
(53606, 44689, 'en', 'name', 'Wikimedia UK'),
(53607, 44690, 'fr', 'name', 'WikimƩdia France'),
(53608, 44691, 'pl', 'name', 'Wikimedia Polska'),
(53609, 44692, 'es', 'name', 'Wikimedia Chile'),
(53610, 44693, 'no_lang_code', 'name', 'Wikimedia District of Columbia'),
(53611, 44694, 'pt', 'name', 'Wikimedia Portugal'),
(53612, 44695, 'da', 'name', 'Wikimedia Danmark'),
(53613, 44696, 'no_lang_code', 'name', 'Wikimedia Taiwan'),
(53614, 44696, 'zh', 'name', 'äø­čÆę°‘åœ‹ē¶­åŸŗåŖ’é«”å”ęœƒ'),
(53615, 44697, 'et', 'name', 'Wikimedia Eesti'),
(53616, 44698, 'en', 'name', 'Wikimedia Macedonia'),
(53617, 44698, 'mk', 'name', 'Š’ŠøŠŗŠøŠ¼ŠµŠ“ŠøŃ˜Š° МакеГонија'),
(53618, 44699, 'no_lang_code', 'name', 'Wikimedia India'),
(53619, 44700, 'id', 'name', 'Wikimedia Indonesia'),
(53620, 44701, 'no_lang_code', 'name', 'Wikimedia Hungary'),
(53621, 44701, 'hu', 'name', 'Wikimédia MagyarorszÔg Egyesület'),
(53622, 44702, 'es', 'name', 'Wikimedia MƩxico'),
(53623, 44703, 'en', 'name', 'Wikimedia Philippines'),
(53624, 44704, 'it', 'name', 'Wikimedia Italia'),
(53625, 44705, 'no_lang_code', 'name', 'Wikimedia Serbia'),
(53626, 44705, 'sr', 'name', 'Š’ŠøŠŗŠøŠ¼ŠµŠ“ŠøŃ˜Š° Š”Ń€Š±ŠøŃ˜Šµ'),
(53627, 44706, 'de', 'name', 'Wikimedia CH'),
(53628, 44707, 'sv', 'name', 'Wikimedia Sverige'),
(53629, 44708, 'no_lang_code', 'name', 'Wikimedia ZA'),
(53630, 44709, 'fr', 'name', 'Wikimedia Canada'),
(53631, 44710, 'cs', 'name', 'Wikimedia Czech Republic'),
(53632, 44711, 'fi', 'name', 'Wikimedia Suomi'),
(53633, 44712, 'es', 'name', 'Wikimedia Uruguay'),
(53634, 44713, 'es', 'name', 'Wikimedia Venezuela'),
(53635, 44714, 'en', 'name', 'Wikimedia New York City'),
(53636, 44715, 'no_lang_code', 'name', 'Wikimedia Armenia'),
(53637, 44715, 'hy', 'name', 'ÕŽÕ«Ö„Õ«Õ“Õ„Õ¤Õ«Õ” Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶'),
(53638, 44716, 'en', 'name', 'Shizuoka Prefectural Numazu Technical High School'),
(53639, 44716, 'ja', 'name', 'é™å²”ēœŒē«‹ę²¼ę“„å·„ę„­é«˜ē­‰å­¦ę ”'),
(53640, 44717, 'no_lang_code', 'name', 'Tokugawa Reimeikai Foundation'),
(53641, 44717, 'ja', 'name', 'å¾³å·é»Žę˜Žä¼š'),
(53642, 44718, 'en', 'name', 'Tokushima Municipal High School'),
(53643, 44718, 'ja', 'name', 'å¾³å³¶åø‚ē«‹é«˜ē­‰å­¦ę ”'),
(53644, 44719, 'en', 'name', 'Oita Prefectural Oita Technical High School'),
(53645, 44719, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹å¤§åˆ†å·„ę„­é«˜ē­‰å­¦ę ”'),
(53646, 44720, 'en', 'name', 'Shikoku Medical Center for Children and Adults'),
(53647, 44720, 'ja', 'name', 'å››å›½ć“ć©ć‚‚ćØćŠćØćŖć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(53648, 44721, 'en', 'name', 'Bircham International University'),
(53649, 44722, 'en', 'name', 'ABM University College'),
(53650, 44723, 'en', 'name', 'Botho University'),
(53651, 44724, 'en', 'name', 'Arab Open University'),
(53652, 44724, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(53653, 44725, 'en', 'name', 'City University College of Science and Technology'),
(53654, 44726, 'en', 'name', 'Addis Ababa Science and Technology University'),
(53655, 44726, 'am', 'name', 'į‹ØįŠ į‹²įˆµ įŠ į‰ į‰£ įˆ³į‹­įŠ•įˆµįŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(53656, 44727, 'en', 'name', 'British Royal University'),
(53657, 44727, 'ar', 'name', 'الجامعة Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ©'),
(53658, 44728, 'en', 'name', 'Central America Health Sciences University'),
(53659, 44729, 'en', 'name', 'Asossa University'),
(53660, 44729, 'am', 'name', 'አሶሳ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(53661, 44730, 'en', 'name', 'Espam Formation University'),
(53662, 44731, 'en', 'name', 'Al Mamon University College'),
(53663, 44731, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł…Ų£Ł…ŁˆŁ† الجامعة'),
(53664, 44732, 'no_lang_code', 'name', 'Cubidor (Switzerland)'),
(53665, 44733, 'en', 'name', 'Middlemore Clinical Trials'),
(53666, 44734, 'en', 'name', 'Carolus Magnus University'),
(53667, 44735, 'no_lang_code', 'name', 'Auckland UniServices (New Zealand)'),
(53668, 44736, 'en', 'name', 'Euclid University'),
(53669, 44737, 'en', 'name', 'Al-Buraimi University College'),
(53670, 44737, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ±ŁŠŁ…ŁŠ'),
(53671, 44738, 'en', 'name', 'Lebanese-French University of Technology and Applied Sciences'),
(53672, 44738, 'fr', 'name', 'UniversitƩ de Technologie et de Sciences AppliquƩes Libano-FranƧaise'),
(53673, 44738, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ©'),
(53674, 44739, 'es', 'name', 'Centro Universitario Ciudad Vieja'),
(53675, 44740, 'en', 'name', 'Charisma University'),
(53676, 44741, 'en', 'name', 'Bakhtar University'),
(53677, 44741, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲØŲ§Ų®ŲŖŲ±'),
(53678, 44742, 'en', 'name', 'Alhamd Islamic University'),
(53679, 44743, 'en', 'name', 'Baku Business University'),
(53680, 44743, 'az', 'name', 'Bakı Biznes Universiteti'),
(53681, 44743, 'ru', 'name', 'Бакинский Университет Бизнеса'),
(53682, 44744, 'en', 'name', 'Donald Beasley Institute'),
(53683, 44745, 'en', 'name', 'Ballsbridge University'),
(53684, 44746, 'en', 'name', 'Al-Mustafa Open University'),
(53685, 44746, 'fa', 'name', 'Ų§Ł„Ł…ŲµŲ·ŁŪŒ دانؓگاه Ų¢Ų²Ų§ŲÆ'),
(53686, 44747, 'en', 'name', 'Bamenda University of Science and Technology'),
(53687, 44748, 'en', 'name', 'Huaihua Radio and Television University'),
(53688, 44748, 'zh', 'name', 'ę€€åŒ–å¹æę’­ē”µč§†å¤§å­¦'),
(53689, 44749, 'en', 'name', 'Dutch University Institute for Art History'),
(53690, 44749, 'it', 'name', 'Istituto Universitario Olandese di Storia dell’Arte'),
(53691, 44750, 'en', 'name', 'Hue University of Agriculture and Forestry'),
(53692, 44750, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c NĆ“ng LĆ¢m – ĐẔi hį»c Huįŗæ'),
(53693, 44751, 'en', 'name', 'Gaborone University College Of Law and Professional Studies'),
(53694, 44752, 'en', 'name', 'Gemsville Technical University'),
(53695, 44753, 'bs', 'name', 'Internacionalni univerzitet Travnik'),
(53696, 44753, 'en', 'name', 'International University of Travnik'),
(53697, 44754, 'en', 'name', 'Guangdong Open University'),
(53698, 44754, 'zh', 'name', 'å¹æäøœå¼€ę”¾å¤§å­¦'),
(53699, 44755, 'en', 'name', 'Iraq University College'),
(53700, 44755, 'ar', 'name', 'دانؓگاه کالج Ų¹Ų±Ų§Ł‚'),
(53701, 44756, 'en', 'name', 'Ittihad Private University'),
(53702, 44756, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الاتحاد الخاصة'),
(53703, 44757, 'en', 'name', 'Isles International University'),
(53704, 44757, 'ga', 'name', 'Isles Ollscoil IdirnÔisiúnta'),
(53705, 44758, 'pt', 'name', 'Universidade Politecnica'),
(53706, 44759, 'en', 'name', 'BƬnh Dʰʔng University'),
(53707, 44759, 'vi', 'name', 'ĐẔi hį»c BƬnh Dʰʔng'),
(53708, 44760, 'no_lang_code', 'name', 'Rafik Hariri University'),
(53709, 44760, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© Ų±ŁŁŠŁ‚ Ų§Ł„Ų­Ų±ŁŠŲ±ŁŠ'),
(53710, 44761, 'en', 'name', 'Islamic Azad University Ardabil'),
(53711, 44761, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ų±ŲÆŲØŪŒŁ„'),
(53712, 44762, 'en', 'name', 'Jewish University in Moscow'),
(53713, 44762, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń школа имени Š”. Š”ŃƒŠ±Š½Š¾Š²Š°'),
(53714, 44763, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬ŲØŁŠŁ„ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(53715, 44763, 'en', 'name', '​​Jubail University College'),
(53716, 44764, 'en', 'name', 'Islamic Azad University Bandar Abbas'),
(53717, 44764, 'fa', 'name', 'ساختمان ادارى دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ بندرعباس'),
(53718, 44765, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Hįŗ£i Dʰʔng'),
(53719, 44765, 'en', 'name', 'University of Hai Duong'),
(53720, 44766, 'en', 'name', 'Islamic Azad University, Boukan'),
(53721, 44766, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲØŁˆŚ©Ų§Ł†'),
(53722, 44767, 'ms', 'name', 'Kolej Universiti Islam Melaka'),
(53723, 44767, 'en', 'name', 'University College of Islam Melaka'),
(53724, 44768, 'en', 'name', 'Islamic Azad University Dehaghan'),
(53725, 44768, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ دهاقان Ų§Ų³Ł„Ų§Ł…ŪŒ'),
(53726, 44769, 'en', 'name', 'Duraspace'),
(53727, 44770, 'en', 'name', 'Merrell University of Beauty Arts and Science'),
(53728, 44771, 'en', 'name', 'Mid-Continent University'),
(53729, 44772, 'no_lang_code', 'name', 'Yamagata Prefectural Yonezawa Kojokan High School'),
(53730, 44772, 'ja', 'name', 'å±±å½¢ēœŒē«‹ē±³ę²¢čˆˆč­²é¤Øé«˜ē­‰å­¦ę ”'),
(53731, 44773, 'fr', 'name', 'Groupe AFI'),
(53732, 44774, 'en', 'name', 'Karelian State Pedagogical Academy'),
(53733, 44774, 'ru', 'name', 'ŠšŠ°Ń€ŠµŠ»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(53734, 44775, 'en', 'name', 'International Culture University'),
(53735, 44776, 'en', 'name', 'Islamic Azad University Janah'),
(53736, 44776, 'fa', 'name', 'Ų§Ų³Ł„Ų§Ł…ŪŒ ŪŒŲ§Ł†Ų§ دانؓگاه Ų¢Ų²Ų§ŲÆ'),
(53737, 44777, 'en', 'name', 'International East-European University'),
(53738, 44777, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Восточно-Европейский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(53739, 44778, 'en', 'name', 'Lancaster University Ghana'),
(53740, 44779, 'en', 'name', 'Islamic Azad University Kazeron'),
(53741, 44779, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŲŒ Ś©Ų§Ų²Ų±ŁˆŁ†'),
(53742, 44780, 'en', 'name', 'International University for Graduate Studies'),
(53743, 44781, 'en', 'name', 'International University of Fundamental Studies'),
(53744, 44781, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠžŠ±ŃƒŃ‡ŠµŠ½ŠøŃ'),
(53745, 44782, 'en', 'name', 'Islamic Azad University Maybod'),
(53746, 44782, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…ŪŒŲØŲÆ یزد'),
(53747, 44783, 'en', 'name', 'Islamic Azad University Mehriz'),
(53748, 44783, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ł‡Ų±ŪŒŲ²'),
(53749, 44784, 'en', 'name', 'Islamic Azad University Mobarakeh'),
(53750, 44784, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد مبارکه'),
(53751, 44785, 'en', 'name', 'NTI University'),
(53752, 44786, 'en', 'name', 'Islamic Azad University Bostanabad'),
(53753, 44786, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŲŒ بستان Ų¢ŲØŲ§ŲÆ'),
(53754, 44787, 'en', 'name', 'Islamic Azad University Quchan'),
(53755, 44787, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł‚ŁˆŚ†Ų§Ł†'),
(53756, 44788, 'en', 'name', 'Nawroz University'),
(53757, 44788, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†ŁˆŲ±ŁˆŲ²'),
(53758, 44788, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ Ł†Ū•ŁˆŲ±Ū†Ų²'),
(53759, 44789, 'en', 'name', 'New World University'),
(53760, 44790, 'en', 'name', 'Open International University for Alternative Medicines'),
(53761, 44791, 'en', 'name', 'Proactive Molecular Research'),
(53762, 44792, 'en', 'name', 'Busan Women''s College'),
(53763, 44792, 'ko', 'name', 'ė¶€ģ‚°ģ—¬ģžėŒ€ķ•™źµ'),
(53764, 44793, 'en', 'name', 'Oriental University'),
(53765, 44793, 'ru', 'name', 'Восточный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(53766, 44794, 'en', 'name', 'Islamic Azad University Shirvan Branch'),
(53767, 44794, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“ŪŒŲ±ŁˆŲ§Ł†'),
(53768, 44795, 'en', 'name', 'Islamic Azad University Medical Branch of Tehran'),
(53769, 44795, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد پزؓکی تهران'),
(53770, 44796, 'en', 'name', 'New Covenant International'),
(53771, 44797, 'no_lang_code', 'name', 'Quigley and Watts (New Zealand)'),
(53772, 44798, 'en', 'name', 'Orkhon University'),
(53773, 44799, 'en', 'name', 'Newcastle University Medicine Malaysia'),
(53774, 44800, 'en', 'name', 'Raffles University Iskandar'),
(53775, 44801, 'no_lang_code', 'name', 'Ragheb Esfahani Institute'),
(53776, 44801, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų±Ų§ŲŗŲØ Ų§ŲµŁŁ‡Ų§Ł†ŪŒ'),
(53777, 44802, 'en', 'name', 'Islamic Azad University of Varamin'),
(53778, 44802, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŁˆŲ±Ų§Ł…ŪŒŁ†'),
(53779, 44803, 'en', 'name', 'Pan African Christian University College'),
(53780, 44804, 'en', 'name', 'Islamic University of Rotterdam'),
(53781, 44804, 'nl', 'name', 'Islamitische Universiteit Rotterdam'),
(53782, 44805, 'en', 'name', 'Universal Technical Institute of Illinois'),
(53783, 44806, 'en', 'name', 'Universal Technical Institute Dallas-Fort Worth'),
(53784, 44807, 'en', 'name', 'Pioneer International University'),
(53785, 44808, 'en', 'name', 'Bangladesh University'),
(53786, 44808, 'bn', 'name', 'বাংলাদেশ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(53787, 44809, 'en', 'name', 'RKDF University'),
(53788, 44810, 'en', 'name', 'Universal Therapeutic Massage Institute'),
(53789, 44811, 'no_lang_code', 'name', 'Planwel'),
(53790, 44812, 'en', 'name', 'Shridhar University'),
(53791, 44813, 'en', 'name', 'Technological University Kyaing Tong'),
(53792, 44813, 'my', 'name', 'į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(ကျိုင်းတုံ)'),
(53793, 44814, 'en', 'name', 'Russian State Geological Prospecting University'),
(53794, 44814, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный геологоразвеГочный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(53795, 44815, 'en', 'name', 'Technological University Mawlamyaing'),
(53796, 44815, 'my', 'name', 'į€”į€Šį€ŗį€øį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ (į€™į€±į€¬į€ŗį€œį€™į€¼į€­į€Æį€„į€ŗ)'),
(53797, 44816, 'en', 'name', 'International Prague University'),
(53798, 44817, 'en', 'name', 'Technological University Panglong'),
(53799, 44817, 'my', 'name', 'į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(į€•į€„į€ŗį€œį€Æį€¶)'),
(53800, 44818, 'no_lang_code', 'name', 'Smolny University'),
(53801, 44818, 'ru', 'name', 'Š”Š¼Š¾Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(53802, 44819, 'es', 'name', 'Universidad Albert Einstein'),
(53803, 44820, 'en', 'name', 'Sadra Institute Of Higher Education'),
(53804, 44820, 'fa', 'name', 'دانؓگاه ŲµŲÆŲ±Ų§'),
(53805, 44821, 'en', 'name', 'Quest International University Perak'),
(53806, 44822, 'en', 'name', 'Thanlyin Technological University'),
(53807, 44822, 'my', 'name', 'į€”į€Šį€ŗį€øį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ (į€žį€”į€ŗį€œį€»į€„į€ŗ)'),
(53808, 44823, 'en', 'name', 'Southeast Asia University'),
(53809, 44823, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø­ą¹€ąøŠąøµąø¢ąø•ąø°ąø§ąø±ąø™ąø­ąø­ąøą¹€ąø‰ąøµąø¢ąø‡ą¹ƒąø•ą¹‰'),
(53810, 44824, 'en', 'name', 'Thai Nguyen University of Agriculture and Forestry'),
(53811, 44824, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c NĆ“ng lĆ¢m, ĐẔi hį»c ThĆ”i NguyĆŖn'),
(53812, 44825, 'en', 'name', 'American University in London'),
(53813, 44826, 'es', 'name', 'Universidad Franciscana de MƩxico'),
(53814, 44827, 'en', 'name', 'Government Sadiq College Women University'),
(53815, 44827, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ ŲµŲ§ŲÆŁ‚ کالج ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŪŲ§ŁˆŁ„Ł¾ŁˆŲ±'),
(53816, 44828, 'en', 'name', 'St Clements University Higher Education School'),
(53817, 44829, 'en', 'name', 'Schiller International University'),
(53818, 44830, 'en', 'name', 'Schiller International University'),
(53819, 44831, 'en', 'name', 'Schiller International University'),
(53820, 44832, 'en', 'name', 'Schiller International University'),
(53821, 44833, 'en', 'name', 'Tiffin University Prague'),
(53822, 44834, 'es', 'name', 'Universidad La Concordia'),
(53823, 44835, 'en', 'name', 'Tricoci University of Beauty Culture'),
(53824, 44836, 'es', 'name', 'Universidad Los Leones'),
(53825, 44837, 'en', 'name', 'Sunrise University'),
(53826, 44838, 'es', 'name', 'Universidad Cristiana de las Asambleas de Dios'),
(53827, 44839, 'en', 'name', 'Trinity School of Medicine'),
(53828, 44840, 'en', 'name', 'Mexico International University'),
(53829, 44841, 'en', 'name', 'Turin Polytechnic University'),
(53830, 44841, 'uz', 'name', 'Š¢ŃƒŃ€ŠøŠ½ŃŠŗŠøŠ¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(53831, 44842, 'es', 'name', 'Universidad de Lambayeque'),
(53832, 44843, 'es', 'name', 'Universidad Modular Abierta'),
(53833, 44844, 'es', 'name', 'Universidad Tecnológica de El Salvador'),
(53834, 44845, 'en', 'name', 'Universal Barber College'),
(53835, 44846, 'es', 'name', 'Universidad MonseƱor Oscar Arnulfo Romero'),
(53836, 44847, 'en', 'name', 'Universal College of Healing Arts'),
(53837, 44848, 'es', 'name', 'Universidad de Sonsonate'),
(53838, 44849, 'es', 'name', 'Universidad Tecnológica de Nezahualcóyotl'),
(53839, 44850, 'en', 'name', 'Daejeon Institute of Science and Technology'),
(53840, 44850, 'ko', 'name', '기술 ėŒ€ģ „ ėŒ€ķ•™źµ'),
(53841, 44851, 'es', 'name', 'Universidad Don Bosco'),
(53842, 44852, 'es', 'name', 'Universidad Nueva San Salvador'),
(53843, 44853, 'es', 'name', 'Universidad Dr. AndrƩs Bello'),
(53844, 44854, 'en', 'name', 'Taft University System'),
(53845, 44855, 'es', 'name', 'Universidad Obrera de Mexico'),
(53846, 44856, 'en', 'name', 'Universal Technical Institute'),
(53847, 44857, 'es', 'name', 'Universidad Panamericana de El Salvador'),
(53848, 44858, 'es', 'name', 'Universidad PolitƩcnica de El Salvador'),
(53849, 44859, 'es', 'name', 'Universidad Regional Miguel Hidalgo'),
(53850, 44860, 'pt', 'name', 'Universidade LusĆ­ada de Angola'),
(53851, 44861, 'pt', 'name', 'Instituto Superior PolitƩcnico Metropolitano de Angola'),
(53852, 44862, 'es', 'name', 'Universidad TƩcnica Latinoamericana'),
(53853, 44863, 'en', 'name', 'Bule Hora University'),
(53854, 44864, 'en', 'name', 'Islamic Azad University of Malard'),
(53855, 44864, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد ملارد'),
(53856, 44865, 'en', 'name', 'Islamic Azad University Pharmaceutical Sciences Branch'),
(53857, 44865, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų¹Ł„ŁˆŁ… دارویی'),
(53858, 44866, 'en', 'name', 'Islamic Azad University of Khomeynishahr'),
(53859, 44866, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų®Ł…ŪŒŁ†ŪŒ ؓهر'),
(53860, 44867, 'en', 'name', 'Islamic Azad University North Tehran Branch'),
(53861, 44867, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ, واحد تهران Ų“Ł…Ų§Ł„ā€Žā€Ž'),
(53862, 44868, 'en', 'name', 'Islamic Azad University South Tehran Branch'),
(53863, 44868, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران Ų“Ł…Ų§Ł„'),
(53864, 44869, 'en', 'name', 'Islamic Azad University Dental Branch of Tehran'),
(53865, 44869, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲÆŁ†ŲÆŲ§Ł†Ł¾Ų²Ų“Ś©ŪŒ تهران'),
(53866, 44870, 'fr', 'name', 'UniversitĆ© Ɖpiscopale d''Haiti'),
(53867, 44871, 'fr', 'name', 'UniversitƩ Euro-Afrique'),
(53868, 44872, 'fr', 'name', 'UniversitƩ Kofi Annan de GuinƩe'),
(53869, 44873, 'fr', 'name', 'UniversitƩ Shalom de Bunia'),
(53870, 44874, 'en', 'name', 'Urumqi Vocational University'),
(53871, 44875, 'en', 'name', 'Trilogi University'),
(53872, 44875, 'id', 'name', 'Universitas Trilogi'),
(53873, 44876, 'en', 'name', 'University of International Business'),
(53874, 44876, 'kk', 'name', 'Єалықаралық бизнес ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(53875, 44877, 'en', 'name', 'Uzima University College'),
(53876, 44878, 'en', 'name', 'University of Jazeera'),
(53877, 44879, 'en', 'name', 'Victoria International University'),
(53878, 44880, 'fr', 'name', 'UniversitƩ Amadou HampatƩ Ba'),
(53879, 44881, 'no_lang_code', 'name', 'Wellington UniVentures (New Zealand)'),
(53880, 44882, 'en', 'name', 'University of Science, Art and Technology'),
(53881, 44883, 'fr', 'name', 'UniversitƩ de Fianarantsoa'),
(53882, 44884, 'en', 'name', 'Waikato-Tainui College for Research and Development'),
(53883, 44885, 'en', 'name', 'Asian Academy of Film and Television'),
(53884, 44886, 'en', 'name', 'University of Modern Sciences'),
(53885, 44886, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(53886, 44887, 'so', 'name', 'Jaamacada Soomaaliya'),
(53887, 44887, 'en', 'name', 'University of Somalia'),
(53888, 44887, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲµŁˆŁ…Ų§Ł„ā€Žā€Ž'),
(53889, 44888, 'no_lang_code', 'name', 'Whakauae Research (New Zealand)'),
(53890, 44889, 'en', 'name', 'University of Cagayan Valley'),
(53891, 44890, 'en', 'name', 'Windsor University School of Medicine'),
(53892, 44891, 'en', 'name', 'Yarmouk Private University'),
(53893, 44891, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŲ±Ł…ŁˆŁƒ الخاصة'),
(53894, 44892, 'en', 'name', 'Islamic Azad University, Science and Research Branch'),
(53895, 44892, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų¹Ł„ŁˆŁ… و ŲŖŲ­Ł‚ŁŠŁ‚Ų§ŲŖā€Žā€Ž'),
(53896, 44893, 'en', 'name', 'American College of Radiology Imaging Network'),
(53897, 44894, 'en', 'name', 'American University of Integrative Sciences'),
(53898, 44895, 'es', 'name', 'Universidad JosƩ Vasconcelos'),
(53899, 44896, 'es', 'name', 'Instituto Universitario BIOS'),
(53900, 44897, 'en', 'name', 'Coimbatore Medical College and Hospital'),
(53901, 44898, 'en', 'name', 'Clock View Hospital'),
(53902, 44899, 'es', 'name', 'Academia PolitƩcnica AeronƔutica'),
(53903, 44900, 'no_lang_code', 'name', 'Dassault SystĆØmes (United Kingdom)'),
(53904, 44901, 'en', 'name', 'Central Florida Regional Planning Council'),
(53905, 44902, 'en', 'name', 'Central Kitsap School District'),
(53906, 44903, 'en', 'name', 'Engineering and Science University Magnet School'),
(53907, 44904, 'en', 'name', 'Central Visayan Institute Foundation'),
(53908, 44905, 'en', 'name', 'Insurance Claims Auditing and Professional Services'),
(53909, 44906, 'de', 'name', 'Erich Schmid Institut für Materialwissenschaft'),
(53910, 44906, 'en', 'name', 'Erich Schmid Institute of Materials Science'),
(53911, 44907, 'en', 'name', 'Centre for Theoretical Physics and Astrophysics'),
(53912, 44907, 'ru', 'name', 'Центр теоретической физики Šø астрофизики'),
(53913, 44908, 'en', 'name', 'IEEE OES Japan Chapter'),
(53914, 44909, 'en', 'name', 'Academy of Sciences of the Republic of Bashkortostan'),
(53915, 44909, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°ŃƒŠŗ Республики Š‘Š°ŃˆŠŗŠ¾Ń€Ń‚Š¾ŃŃ‚Š°Š½'),
(53916, 44910, 'en', 'name', 'Institute for Advanced Energy Technologies'),
(53917, 44910, 'it', 'name', 'Istituto di Tecnologie Avanzate per l''Energia "Nicola Giordano"'),
(53918, 44911, 'en', 'name', 'European Conference for AeroSpace Sciences'),
(53919, 44912, 'en', 'name', 'Alabama Department of Commerce'),
(53920, 44913, 'no_lang_code', 'name', 'Aisin (United States)'),
(53921, 44913, 'ja', 'name', 'ć‚¢ć‚¤ć‚·ćƒ³ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(53922, 44914, 'no_lang_code', 'name', 'Ceracomp (South Korea)'),
(53923, 44915, 'en', 'name', 'Changji University'),
(53924, 44915, 'zh', 'name', 'ę˜Œå‰å­¦é™¢'),
(53925, 44916, 'en', 'name', 'Fairbanks North Star Borough School District'),
(53926, 44917, 'en', 'name', 'Farallon Institute'),
(53927, 44918, 'en', 'name', 'Chesapeake Public Schools'),
(53928, 44919, 'no_lang_code', 'name', 'Anne Arundel Economic Development (United States)'),
(53929, 44920, 'en', 'name', 'Indian River Central School District'),
(53930, 44921, 'en', 'name', 'Indiana Office of Defense Development'),
(53931, 44922, 'en', 'name', 'Christian County Public Schools'),
(53932, 44923, 'no_lang_code', 'name', 'Fio Corporation (Canada)'),
(53933, 44924, 'en', 'name', 'Association for Unmanned Vehicle Systems International'),
(53934, 44925, 'en', 'name', 'Flint Hills Regional Council'),
(53935, 44926, 'en', 'name', 'Vietnam Atomic Energy Instiute'),
(53936, 44926, 'vi', 'name', 'Viện Năng lượng nguyĆŖn tį»­ Việt Nam'),
(53937, 44927, 'en', 'name', 'Kaysinger Basin Regional Planning Commission'),
(53938, 44928, 'no_lang_code', 'name', 'EarthTech International (United States)'),
(53939, 44929, 'en', 'name', 'Kentucky Commission on Military Affairs'),
(53940, 44930, 'no_lang_code', 'name', 'Kerecis (Iceland)'),
(53941, 44931, 'en', 'name', 'Bahamas Marine Mammal Research Organisation'),
(53942, 44932, 'en', 'name', 'Danish Defence Acquisition and Logistics Organization'),
(53943, 44932, 'da', 'name', 'Forsvarets Materiel- og IndkĆøbsstyrelse'),
(53944, 44933, 'en', 'name', 'Riverbank Local Redevelopment Authority'),
(53945, 44934, 'no_lang_code', 'name', 'CIVIDEC Instrumentation (Austria)'),
(53946, 44935, 'en', 'name', 'Fort Leavenworth Unified School District 207'),
(53947, 44936, 'en', 'name', 'Clover Park School District'),
(53948, 44937, 'no_lang_code', 'name', 'Nokia (Ireland)'),
(53949, 44938, 'en', 'name', 'Killeen Independent School District'),
(53950, 44939, 'en', 'name', 'Fort Mac LRA'),
(53951, 44940, 'en', 'name', 'Fort Monmouth Economic Revitalization Authority'),
(53952, 44941, 'en', 'name', 'Colorado Springs School District 11'),
(53953, 44942, 'en', 'name', 'Fort Monroe Authority'),
(53954, 44943, 'no_lang_code', 'name', 'Institute For Smart Monitoring (United States)'),
(53955, 44944, 'ro', 'name', 'Biblioteca Centrală Universitară'),
(53956, 44944, 'en', 'name', 'Central University Library'),
(53957, 44945, 'en', 'name', 'Institute of Applied Physics'),
(53958, 44945, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГної фізики ŠŠŠ України'),
(53959, 44946, 'pt', 'name', 'Fundação de Estudos e Pesquisas AquÔticas'),
(53960, 44947, 'en', 'name', 'Korea Nano Technology Research Society'),
(53961, 44947, 'ko', 'name', 'ė‚˜ė…øźø°ģˆ ģ—°źµ¬ķ˜‘ģ˜ķšŒ'),
(53962, 44948, 'pt', 'name', 'Fundacao Padre Leonel Franca'),
(53963, 44949, 'no_lang_code', 'name', 'Convergent Science (United States)'),
(53964, 44950, 'en', 'name', 'Copperas Cove Independent School District'),
(53965, 44951, 'en', 'name', 'Bossier Parish School Board'),
(53966, 44952, 'pt', 'name', 'Fundação de Apoio à Universidade de São Paulo'),
(53967, 44953, 'en', 'name', 'Building Engineering and Science Talent'),
(53968, 44954, 'en', 'name', 'Coronado Unified School District'),
(53969, 44955, 'en', 'name', 'Geary County Schools USD 475'),
(53970, 44956, 'en', 'name', 'Cache Public Schools'),
(53971, 44957, 'no_lang_code', 'name', 'Netsil (United States)'),
(53972, 44958, 'en', 'name', 'Craven County Schools'),
(53973, 44959, 'es', 'name', 'Instituto de CibernƩtica MatemƔtica y Fƭsica'),
(53974, 44960, 'en', 'name', 'Central Savannah River Area Regional Commission'),
(53975, 44961, 'no_lang_code', 'name', 'Gentherm (United States)'),
(53976, 44962, 'en', 'name', 'Carthage Central School District'),
(53977, 44963, 'no_lang_code', 'name', 'CellMosaic (United States)'),
(53978, 44964, 'en', 'name', 'Central Office of Measures'),
(53979, 44964, 'pl', 'name', 'Główny Urząd Miar'),
(53980, 44965, 'en', 'name', 'Center for a New American Security'),
(53981, 44966, 'no_lang_code', 'name', 'Google (Switzerland)'),
(53982, 44967, 'en', 'name', 'Daqing Normal University'),
(53983, 44967, 'zh', 'name', 'å¤§åŗ†åøˆčŒƒå­¦é™¢'),
(53984, 44968, 'no_lang_code', 'name', 'Maxwell Technologies (United States)'),
(53985, 44969, 'en', 'name', 'Lackland Independent School District'),
(53986, 44970, 'no_lang_code', 'name', 'Lawrenceville Plasma Physics (United States)'),
(53987, 44971, 'en', 'name', 'MBN Research Center'),
(53988, 44972, 'en', 'name', 'Medical Lake School District'),
(53989, 44973, 'en', 'name', 'Lawton Public Schools'),
(53990, 44974, 'en', 'name', 'Government of the District of Columbia'),
(53991, 44975, 'en', 'name', 'Lemon Grove School District'),
(53992, 44976, 'en', 'name', 'Delta Greely School District'),
(53993, 44977, 'en', 'name', 'Institute of Scientific and Technical Research for Defense'),
(53994, 44977, 'es', 'name', 'Instituto de Investigaciones Cientƭficas y TƩcnicas para la Defensa'),
(53995, 44978, 'no_lang_code', 'name', 'Medizinisches Laserzentrum Lübeck (Germany)'),
(53996, 44979, 'en', 'name', 'Development Authority of the North Country'),
(53997, 44980, 'en', 'name', 'Great Plains Industrial Park'),
(53998, 44981, 'en', 'name', 'Midcoast Regional Redevelopment Authority'),
(53999, 44982, 'en', 'name', 'Directed Energy Professional Society'),
(54000, 44983, 'en', 'name', 'Gulf Regional Planning Commission'),
(54001, 44984, 'en', 'name', 'East Bay Educational Collaborative'),
(54002, 44985, 'en', 'name', 'Gyeonggi College of Science and Technology'),
(54003, 44985, 'ko', 'name', 'ź²½źø°ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(54004, 44986, 'en', 'name', 'Modus Health'),
(54005, 44987, 'en', 'name', 'East Central Wisconsin Regional Planning Commission'),
(54006, 44988, 'en', 'name', 'Harford County Government'),
(54007, 44989, 'en', 'name', 'International Biodeterioration Biodegradation Society'),
(54008, 44990, 'en', 'name', 'Montgomery County Office of the County Executive'),
(54009, 44991, 'en', 'name', 'Lincoln Trail Area Development District'),
(54010, 44992, 'no_lang_code', 'name', 'Immunomic Therapeutics (United States)'),
(54011, 44993, 'en', 'name', 'Harry S Truman Coordinating Council'),
(54012, 44994, 'en', 'name', 'Mountain Home School District'),
(54013, 44995, 'en', 'name', 'Municipality of Anchorage'),
(54014, 44996, 'en', 'name', 'Municipality of MedellĆ­n'),
(54015, 44996, 'es', 'name', 'Municipio de MedellĆ­n'),
(54016, 44997, 'en', 'name', 'International Financial Cryptography Association'),
(54017, 44998, 'en', 'name', 'Lowcountry Council of Governments'),
(54018, 44999, 'no_lang_code', 'name', 'National Security Technologies (United States)'),
(54019, 45000, 'en', 'name', 'International Institute for Strategic Studies'),
(54020, 45001, 'en', 'name', 'Madison City Schools'),
(54021, 45002, 'en', 'name', 'National Academy of Sciences of the Republic of Kyrgyzstan'),
(54022, 45002, 'ky', 'name', 'АкаГемии наук ŠšŃ‹Ń€Š³Ń‹Š·ŃŃ‚ана'),
(54023, 45003, 'en', 'name', 'Stimson Center'),
(54024, 45004, 'en', 'name', 'International University of Grand Bassam'),
(54025, 45005, 'en', 'name', 'National Centre for Compositional Characterisation of Materials'),
(54026, 45006, 'en', 'name', 'National Trauma Institute'),
(54027, 45007, 'en', 'name', 'National Guard Youth Foundation'),
(54028, 45008, 'en', 'name', 'National Institute for Public Policy'),
(54029, 45009, 'de', 'name', 'IOT Labs'),
(54030, 45010, 'en', 'name', 'United States Naval Sea Cadet Corps'),
(54031, 45011, 'en', 'name', 'National Math and Science Initiative'),
(54032, 45012, 'en', 'name', 'MassDevelopment'),
(54033, 45013, 'no_lang_code', 'name', 'Hitachi Engineering (Japan)'),
(54034, 45013, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ ę—„ē«‹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(54035, 45014, 'pl', 'name', 'Krajowe Centrum Informatyki Kwantowej w Gdańsku'),
(54036, 45014, 'en', 'name', 'National Quantum Information Centre in Gdansk'),
(54037, 45015, 'en', 'name', 'Islamic Azad University of Kermanshah'),
(54038, 45015, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کرمانؓاه'),
(54039, 45016, 'en', 'name', 'Horsham Land Redevelopment Authority'),
(54040, 45017, 'en', 'name', 'New Hampshire Department of Resources and Economic Development'),
(54041, 45018, 'en', 'name', 'Islamic Azad University of Mahabad'),
(54042, 45018, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد مهاباد'),
(54043, 45019, 'no_lang_code', 'name', 'Tagworks Pharmaceuticals (Netherlands)'),
(54044, 45020, 'en', 'name', 'Centre for Social Sciences'),
(54045, 45020, 'hu', 'name', 'TÔrsadalomtudomÔnyi Kutatóközpont'),
(54046, 45021, 'es', 'name', 'Universidad Yachay Tech'),
(54047, 45022, 'it', 'name', 'Istituto Officina dei Materiali'),
(54048, 45023, 'en', 'name', 'Rhode Island Commerce Corporation'),
(54049, 45024, 'en', 'name', 'Richland School District Two'),
(54050, 45025, 'en', 'name', 'Institute of Crystallography'),
(54051, 45025, 'it', 'name', 'Istituto di Cristallografia'),
(54052, 45026, 'en', 'name', 'Newport Chemical Depot'),
(54053, 45027, 'no_lang_code', 'name', 'Japan Broadcasting Corporation (Japan)'),
(54054, 45027, 'ja', 'name', 'ę—„ęœ¬ę”¾é€å”ä¼š'),
(54055, 45028, 'en', 'name', 'TexAmericas Center'),
(54056, 45029, 'en', 'name', 'Royal Institute of Navigation'),
(54057, 45030, 'it', 'name', 'Istituto di Fotonica e Nanotecnologie'),
(54058, 45031, 'no_lang_code', 'name', 'Nitride Crystals (United States)'),
(54059, 45032, 'en', 'name', 'Nonproliferation Policy Education Center'),
(54060, 45033, 'en', 'name', 'Norfolk Public Schools'),
(54061, 45034, 'no_lang_code', 'name', 'Valley Partnership (United States)'),
(54062, 45035, 'en', 'name', 'San Francisco University High School'),
(54063, 45036, 'en', 'name', 'North Central Texas Council of Governments'),
(54064, 45037, 'en', 'name', 'Ventura County Transportation Commission'),
(54065, 45038, 'en', 'name', 'Saudi Center for Theoretical Physics'),
(54066, 45039, 'en', 'name', 'Peac Institute of Multiscale Sciences'),
(54067, 45039, 'zh', 'name', 'é”¶å³°å¤šå°ŗåŗ¦ē§‘å­¦ē ”ē©¶ę‰€'),
(54068, 45040, 'en', 'name', 'Japan Underwater Robot Network'),
(54069, 45040, 'ja', 'name', 'ę—„ęœ¬ę°“äø­ćƒ­ćƒœćƒćƒƒćƒˆ'),
(54070, 45041, 'en', 'name', 'Dr Vijay Kumar Foundation'),
(54071, 45042, 'en', 'name', 'Ocean Exploration Trust'),
(54072, 45043, 'en', 'name', 'Royal United Services Institute'),
(54073, 45044, 'en', 'name', 'All Russia Research Institute of Automatics'),
(54074, 45044, 'ru', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики та енергетики'),
(54075, 45045, 'en', 'name', 'Oceanwide Science Institute'),
(54076, 45046, 'en', 'name', 'Escambia County School District'),
(54077, 45047, 'no_lang_code', 'name', 'Semi Conductor Devices (Israel)'),
(54078, 45048, 'no_lang_code', 'name', 'SeQureNet (France)'),
(54079, 45049, 'en', 'name', 'Watertown City School District'),
(54080, 45050, 'en', 'name', 'University School of Milwaukee'),
(54081, 45051, 'en', 'name', 'Web Science Trust'),
(54082, 45052, 'en', 'name', 'Patuxent Partnership'),
(54083, 45053, 'en', 'name', 'Wichita Falls Independent School District'),
(54084, 45054, 'no_lang_code', 'name', 'Wildlife Computers (United States)'),
(54085, 45055, 'en', 'name', 'Pennyrile Area Development District'),
(54086, 45056, 'en', 'name', 'Wisconsin Economic Development Corporation'),
(54087, 45057, 'en', 'name', 'Pikes Peak Area Council of Governments'),
(54088, 45058, 'en', 'name', 'Travis Unified School District'),
(54089, 45059, 'en', 'name', 'Polar Scientific'),
(54090, 45060, 'en', 'name', 'Workforce Solutions Northeast Texas'),
(54091, 45061, 'en', 'name', 'State Special Communications Service of Ukraine'),
(54092, 45061, 'uk', 'name', 'Державна служба ŃŠæŠµŃ†Ń–Š°Š»ŃŒŠ½Š¾Š³Š¾ зв''ŃŠ·ŠŗŃƒ та Š·Š°Ń…ŠøŃŃ‚Ńƒ інформації України'),
(54093, 45062, 'no_lang_code', 'name', 'Soliton Ocean Services (United States)'),
(54094, 45063, 'en', 'name', 'Sumter County Planning Department'),
(54095, 45064, 'en', 'name', 'Tri-County Council for Southern Maryland'),
(54096, 45065, 'en', 'name', 'South Carolina Department of Employment and Workforce'),
(54097, 45066, 'en', 'name', 'Yelm Community Schools'),
(54098, 45067, 'en', 'name', 'Udupi Shri Admar Mutt Education Council'),
(54099, 45068, 'en', 'name', 'Poquoson City Public Schools'),
(54100, 45069, 'no_lang_code', 'name', 'Southall Environmental Associates (United States)'),
(54101, 45070, 'en', 'name', 'Port of Morrow'),
(54102, 45071, 'en', 'name', 'Prince George County Public Schools'),
(54103, 45072, 'en', 'name', 'York County School Division'),
(54104, 45073, 'no_lang_code', 'name', 'Protemics (Germany)'),
(54105, 45074, 'en', 'name', 'Sparta Area School District'),
(54106, 45075, 'en', 'name', 'Yuma Elementary School District'),
(54107, 45076, 'no_lang_code', 'name', 'QuantumWise (Denmark)'),
(54108, 45077, 'en', 'name', 'Randolph Field Independent School District'),
(54109, 45078, 'en', 'name', 'Rayat Institute of Engineering & Information Technology'),
(54110, 45078, 'hi', 'name', 'रयात ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(54111, 45079, 'en', 'name', 'Center for European Policy Analysis'),
(54112, 45080, 'en', 'name', 'Institute of Marine Geology and Geophysics'),
(54113, 45080, 'vi', 'name', 'Viện Địa chįŗ„t vĆ  Địa vįŗ­t lý biển'),
(54114, 45081, 'en', 'name', 'Institute of Mathematics'),
(54115, 45081, 'vi', 'name', 'Viện ToĆ”n hį»c'),
(54116, 45082, 'no_lang_code', 'name', 'Locus Pharmacy (United States)'),
(54117, 45083, 'no_lang_code', 'name', 'Mera Pharmaceuticals (United states)'),
(54118, 45084, 'en', 'name', 'Church World Service'),
(54119, 45085, 'en', 'name', 'Institute of Structure of Matter'),
(54120, 45085, 'it', 'name', 'Istituto di Struttura della Materia'),
(54121, 45086, 'en', 'name', 'Office of Technology Transfer'),
(54122, 45087, 'en', 'name', 'World Water and Climate Foundation'),
(54123, 45088, 'no_lang_code', 'name', 'Avaya (United Kingdom)'),
(54124, 45089, 'no_lang_code', 'name', 'Abengoa Bioenergy (United States)'),
(54125, 45090, 'no_lang_code', 'name', 'Volvo (Germany)'),
(54126, 45091, 'no_lang_code', 'name', 'AbbVie (Bermuda)'),
(54127, 45092, 'no_lang_code', 'name', 'Emerson (Germany)'),
(54128, 45093, 'no_lang_code', 'name', 'Abiomed (Germany)'),
(54129, 45094, 'no_lang_code', 'name', 'Microsoft (Israel)'),
(54130, 45095, 'no_lang_code', 'name', 'Yazaki (Australia)'),
(54131, 45096, 'no_lang_code', 'name', 'AbbVie (Bahamas)'),
(54132, 45097, 'de', 'name', 'B.A.T Cigarettenfabriken'),
(54133, 45097, 'no_lang_code', 'name', 'British American Tobacco (Germany)'),
(54134, 45098, 'fi', 'name', 'Ab LƄsfabriken-Lukkotehdas Oy'),
(54135, 45098, 'no_lang_code', 'name', 'Abloy (Finland)'),
(54136, 45099, 'no_lang_code', 'name', 'Amdocs (Germany)'),
(54137, 45100, 'no_lang_code', 'name', 'Scientific Games (United Kingdom)'),
(54138, 45101, 'no_lang_code', 'name', 'Autoliv (Germany)'),
(54139, 45102, 'no_lang_code', 'name', 'Autoliv (Japan)'),
(54140, 45103, 'no_lang_code', 'name', 'AES (United Kingdom)'),
(54141, 45104, 'no_lang_code', 'name', 'Marel (United Kingdom)'),
(54142, 45105, 'no_lang_code', 'name', 'Atlas Copco (United States)'),
(54143, 45106, 'no_lang_code', 'name', 'Dover (Germany)'),
(54144, 45107, 'no_lang_code', 'name', 'Assa Abloy (Australia)'),
(54145, 45108, 'no_lang_code', 'name', 'Atlas Copco (Austria)'),
(54146, 45109, 'no_lang_code', 'name', 'Assa Abloy (New Zealand)'),
(54147, 45110, 'no_lang_code', 'name', 'Advantest (Singapore)'),
(54148, 45111, 'no_lang_code', 'name', 'Agilent Technologies (Australia)'),
(54149, 45112, 'no_lang_code', 'name', 'Assa Abloy (Germany)'),
(54150, 45113, 'no_lang_code', 'name', 'Agilent Technologies (Germany)'),
(54151, 45114, 'no_lang_code', 'name', 'BASF (United Kingdom)'),
(54152, 45115, 'no_lang_code', 'name', 'Atlas Elektronik (United Kingdom)'),
(54153, 45116, 'no_lang_code', 'name', 'Fujikura (United States)'),
(54154, 45117, 'no_lang_code', 'name', 'Amdocs (United Kingdom)'),
(54155, 45118, 'no_lang_code', 'name', 'Ametek (Germany)'),
(54156, 45119, 'no_lang_code', 'name', 'Whirlpool (Germany)'),
(54157, 45120, 'no_lang_code', 'name', 'Autoliv (United Kingdom)'),
(54158, 45121, 'no_lang_code', 'name', 'Avaya (Bermuda)'),
(54159, 45122, 'no_lang_code', 'name', 'Becton Dickinson (Ireland)'),
(54160, 45123, 'no_lang_code', 'name', 'Amdocs (Israel)'),
(54161, 45124, 'de', 'name', 'Deutsches Textilforschungszentrum Nord-West'),
(54162, 45125, 'no_lang_code', 'name', 'Coloplast (Germany)'),
(54163, 45126, 'no_lang_code', 'name', 'Bayer (New Zealand)'),
(54164, 45127, 'de', 'name', 'Salomon Ludwig Steinheim-Institut'),
(54165, 45128, 'no_lang_code', 'name', 'Stryker (Germany)'),
(54166, 45129, 'no_lang_code', 'name', 'Airbus (India)'),
(54167, 45130, 'no_lang_code', 'name', 'Becton Dickinson (United Kingdom)'),
(54168, 45131, 'no_lang_code', 'name', 'AkzoNobel (Germany)'),
(54169, 45132, 'no_lang_code', 'name', 'Alcoa (Germany)'),
(54170, 45133, 'no_lang_code', 'name', 'Faurecia (Canada)'),
(54171, 45134, 'no_lang_code', 'name', 'Bio-Rad (Israel)'),
(54172, 45135, 'no_lang_code', 'name', 'Nordson (Germany)'),
(54173, 45136, 'no_lang_code', 'name', 'Unilever (Germany)'),
(54174, 45137, 'no_lang_code', 'name', 'Biolitec (Malaysia)'),
(54175, 45138, 'no_lang_code', 'name', 'Foton Motors (China)'),
(54176, 45138, 'zh', 'name', 'åŒ—ę±½ē¦ē”°'),
(54177, 45139, 'no_lang_code', 'name', 'Zimmer Biomet (Germany)'),
(54178, 45140, 'no_lang_code', 'name', 'Zimmer Biomet (United Kingdom)'),
(54179, 45141, 'no_lang_code', 'name', 'AMF Bakery Systems (United States)'),
(54180, 45142, 'no_lang_code', 'name', 'Medtronic (Italy)'),
(54181, 45143, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Canada)'),
(54182, 45144, 'no_lang_code', 'name', 'ProAmpac (United States)'),
(54183, 45145, 'no_lang_code', 'name', 'American Superconductor (Austria)'),
(54184, 45146, 'no_lang_code', 'name', 'National Oilwell Varco (United Kingdom)'),
(54185, 45147, 'no_lang_code', 'name', 'Ashima (Taiwan)'),
(54186, 45148, 'no_lang_code', 'name', 'Andritz (Germany)'),
(54187, 45149, 'no_lang_code', 'name', 'Robert Bosch (China)'),
(54188, 45150, 'no_lang_code', 'name', 'Medicure (United States)'),
(54189, 45151, 'no_lang_code', 'name', 'Arkema (Germany)'),
(54190, 45152, 'no_lang_code', 'name', 'Broadcom (Israel)'),
(54191, 45153, 'no_lang_code', 'name', 'AT&T (United Kingdom)'),
(54192, 45154, 'no_lang_code', 'name', 'Brooks Automation (Germany)'),
(54193, 45155, 'no_lang_code', 'name', 'Motorola (South Korea)'),
(54194, 45156, 'no_lang_code', 'name', 'Applied Materials (Singapore)'),
(54195, 45157, 'no_lang_code', 'name', 'Meritor (Brazil)'),
(54196, 45158, 'no_lang_code', 'name', 'Otsuka (United Kingdom)'),
(54197, 45159, 'no_lang_code', 'name', 'BorgWarner (Germany)'),
(54198, 45160, 'no_lang_code', 'name', 'Legrand (United Kingdom)'),
(54199, 45161, 'no_lang_code', 'name', 'Mondelēz International (United States)'),
(54200, 45162, 'no_lang_code', 'name', 'Mondelēz International (Singapore)'),
(54201, 45163, 'no_lang_code', 'name', 'Capcom (Japan)'),
(54202, 45163, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ćƒ—ć‚³ćƒ³'),
(54203, 45164, 'no_lang_code', 'name', 'Robert Bosch (United Kingdom)'),
(54204, 45165, 'no_lang_code', 'name', 'Safran (Singapore)'),
(54205, 45166, 'no_lang_code', 'name', 'Caterpillar (United Kingdom)'),
(54206, 45167, 'no_lang_code', 'name', 'Caterpillar (Germany)'),
(54207, 45168, 'no_lang_code', 'name', 'British American Tobacco (Japan)'),
(54208, 45168, 'ja', 'name', 'ćƒ–ćƒŖćƒ†ć‚£ćƒƒć‚·ćƒ„ćƒ»ć‚¢ćƒ”ćƒŖć‚«ćƒ³ćƒ»ć‚æćƒć‚³'),
(54209, 45169, 'no_lang_code', 'name', 'TE Connectivity (United Kingdom)'),
(54210, 45170, 'no_lang_code', 'name', 'Bühler (United Kingdom)'),
(54211, 45171, 'no_lang_code', 'name', '3M (Israel)'),
(54212, 45172, 'no_lang_code', 'name', 'Bharat Forge (Germany)'),
(54213, 45173, 'no_lang_code', 'name', 'Gleason (Germany)'),
(54214, 45174, 'no_lang_code', 'name', 'Microsoft (United Kingdom)'),
(54215, 45175, 'no_lang_code', 'name', 'Broadcom (United Kingdom)'),
(54216, 45176, 'no_lang_code', 'name', 'Qualcomm (United Kingdom)'),
(54217, 45177, 'no_lang_code', 'name', 'Schlumberger (Ireland)'),
(54218, 45178, 'no_lang_code', 'name', 'Vitec (Germany)'),
(54219, 45179, 'no_lang_code', 'name', 'Chemring Countermeasures (United Kingdom)'),
(54220, 45180, 'no_lang_code', 'name', 'Carl Zeiss (Israel)'),
(54221, 45181, 'no_lang_code', 'name', 'Ceragon (Israel)'),
(54222, 45182, 'no_lang_code', 'name', 'Carl Zeiss (Australia)'),
(54223, 45183, 'no_lang_code', 'name', 'Gemalto (Germany)'),
(54224, 45184, 'no_lang_code', 'name', 'Abbott (Germany)'),
(54225, 45184, 'de', 'name', 'Abbott Deutschland'),
(54226, 45185, 'no_lang_code', 'name', 'Citrix (Switzerland)'),
(54227, 45186, 'no_lang_code', 'name', 'CNH Industrial (Germany)'),
(54228, 45187, 'no_lang_code', 'name', 'CJ CGV (South Korea)'),
(54229, 45187, 'ko', 'name', 'ģ”Øģ œģ“ ģ”Øģ§€ėøŒģ“'),
(54230, 45188, 'no_lang_code', 'name', 'CNH Industrial (Austria)'),
(54231, 45189, 'no_lang_code', 'name', 'Imerys (Austria)'),
(54232, 45190, 'no_lang_code', 'name', 'Hewlett-Packard (Australia)'),
(54233, 45191, 'en', 'name', 'People’s Hospital of Linqing'),
(54234, 45191, 'zh', 'name', 'äø“ęø…åø‚äŗŗę°‘åŒ»é™¢'),
(54235, 45192, 'en', 'name', 'Mercury Optoelectronics Research Institute'),
(54236, 45192, 'zh', 'name', 'å¢Øå…‹ē‘žå…‰ē”µå­ē ”ē©¶é™¢'),
(54237, 45193, 'no_lang_code', 'name', 'Intel (Israel)'),
(54238, 45194, 'no_lang_code', 'name', 'TechnipFMC (United Kingdom)'),
(54239, 45195, 'no_lang_code', 'name', 'Schneider Electric (Australia)'),
(54240, 45196, 'no_lang_code', 'name', 'Hexagon (Israel)'),
(54241, 45197, 'no_lang_code', 'name', 'Alere (Germany)'),
(54242, 45198, 'no_lang_code', 'name', 'Herman Miller (United Kingdom)'),
(54243, 45199, 'no_lang_code', 'name', 'Valeo (Ireland)'),
(54244, 45200, 'no_lang_code', 'name', 'GlobalFoundries (Singapore)'),
(54245, 45201, 'no_lang_code', 'name', 'Toshiba (United States)'),
(54246, 45202, 'no_lang_code', 'name', 'Cook Medical (Ireland)'),
(54247, 45203, 'no_lang_code', 'name', 'Eaton (Germany)'),
(54248, 45204, 'no_lang_code', 'name', 'Colt International (United States)'),
(54249, 45205, 'no_lang_code', 'name', 'Albemarle (Germany)'),
(54250, 45206, 'no_lang_code', 'name', 'Nortek (United States)'),
(54251, 45207, 'no_lang_code', 'name', 'Spectrum Brands (United Kingdom)'),
(54252, 45208, 'no_lang_code', 'name', 'Corning (Israel)'),
(54253, 45209, 'no_lang_code', 'name', 'Corning (South Korea)'),
(54254, 45210, 'no_lang_code', 'name', 'Cryptomathic (United Kingdom)'),
(54255, 45211, 'no_lang_code', 'name', 'Cadence Design Systems (India)'),
(54256, 45212, 'no_lang_code', 'name', 'Nordson (United Kingdom)'),
(54257, 45213, 'pt', 'name', 'Associação Brasileira de Águas Subterrâneas'),
(54258, 45214, 'pt', 'name', 'Instituto de Pesca'),
(54259, 45215, 'pt', 'name', 'Fundação Estadual de Pesquisa AgropecuÔria'),
(54260, 45216, 'pt', 'name', 'Agende Guarulhos'),
(54261, 45217, 'pt', 'name', 'Fundação Estadual de Proteção Ambiental Henrique Luiz Roessler'),
(54262, 45218, 'pt', 'name', 'Associação Brasileira de Engenharia Agrícola'),
(54263, 45219, 'en', 'name', 'Ezequiel Dias Foundation'),
(54264, 45219, 'pt', 'name', 'Fundação Ezequiel Dias'),
(54265, 45220, 'pt', 'name', 'Centrus Diagnósticos por Imagem'),
(54266, 45221, 'pt', 'name', 'Associação Brasileira de Engenharia de Produção'),
(54267, 45222, 'en', 'name', 'Institute for Research and Innovation in Irrigated Agriculture'),
(54268, 45223, 'en', 'name', 'Chicago Zoological Society'),
(54269, 45224, 'pt', 'name', 'Associação Brasileira de Ensaios não Destrutivos e Inspeção'),
(54270, 45225, 'en', 'name', 'Brazilian College of Animal Reproduction'),
(54271, 45225, 'pt', 'name', 'Colégio Brasileiro de Reprodução Animal'),
(54272, 45226, 'pt', 'name', 'Fundação Hemopa'),
(54273, 45227, 'pt', 'name', 'Associação Brasileira de Literatura Comparada'),
(54274, 45228, 'en', 'name', 'Research Institute for Innovation and Technology'),
(54275, 45229, 'pt', 'name', 'Associação Brasileira de PlanetÔrios'),
(54276, 45230, 'pt', 'name', 'Associação Brasileira de Química'),
(54277, 45231, 'pt', 'name', 'Laboratório Nacional de Astrofísica'),
(54278, 45231, 'en', 'name', 'National Astrophysics Laboratory'),
(54279, 45232, 'pt', 'name', 'Associação Brasileira de Recursos Hídricos'),
(54280, 45233, 'pt', 'name', 'Conselho Nacional de Pesquisa e Pós-graduação em Direito'),
(54281, 45234, 'pt', 'name', 'Instituto de SaĆŗde'),
(54282, 45235, 'en', 'name', 'SUPERA Park of Innovation and Technology of Ribeirão Preto'),
(54283, 45235, 'pt', 'name', 'Supera Parque de Inovação e Tecnologia de Ribeirão Preto'),
(54284, 45236, 'de', 'name', 'MAS Alzheimerhilfe'),
(54285, 45237, 'pt', 'name', 'Associação Brasileira de Relações Internacionais'),
(54286, 45238, 'de', 'name', 'Mediacult'),
(54287, 45239, 'no_lang_code', 'name', 'DCS Computing (Austria)'),
(54288, 45240, 'pt', 'name', 'Associação Brasileira de Rorschach e Métodos Projetivos'),
(54289, 45241, 'pt', 'name', 'Associação Brasileira de Terapia Celular'),
(54290, 45242, 'en', 'name', 'Institute of Animal Science and Pastures'),
(54291, 45242, 'pt', 'name', 'Instituto de Zootecnia'),
(54292, 45243, 'pt', 'name', 'Fundação Jorge Duprat Figueiredo de Segurança e Medicina do Trabalho'),
(54293, 45244, 'en', 'name', 'Memorial'),
(54294, 45244, 'ru', 'name', 'ŠžŠ±Ń‰ŠµŃŃ‚Š²Š¾ ŠœŠµŠ¼Š¾Ń€ŠøŠ°Š»'),
(54295, 45245, 'pt', 'name', 'Associação Brasileira do Alumínio'),
(54296, 45245, 'en', 'name', 'Brazilian Aluminum Association'),
(54297, 45246, 'pt', 'name', 'Minas Jr'),
(54298, 45247, 'pt', 'name', 'Fundação Meridional de Apoio à Pesquisa AgropecuÔria'),
(54299, 45248, 'pt', 'name', 'Associação de Leitura do Brasil');
INSERT INTO `ror_settings` VALUES
(54300, 45249, 'pt', 'name', 'Fundação Museu do Homem Americano'),
(54301, 45250, 'no_lang_code', 'name', 'Durango Multimedia (United States)'),
(54302, 45251, 'pt', 'name', 'Fundação Parque Tecnológico da Paraíba'),
(54303, 45252, 'pt', 'name', 'Associação Nacional de Biossegurança'),
(54304, 45253, 'pt', 'name', 'Associação Nacional dos Centros de Pós-Graduação em Economia'),
(54305, 45253, 'en', 'name', 'Brazilian Association of Graduate Programs in Economic'),
(54306, 45254, 'en', 'name', 'Ocean Lakes High School'),
(54307, 45255, 'pt', 'name', 'Fundação PlanetÔrio da Cidade do Rio de Janeiro'),
(54308, 45256, 'pt', 'name', 'Associação Nacional de Entidades Promotoras de Empreendimentos de Tecnologias Avançadas'),
(54309, 45256, 'en', 'name', 'Brazilian Association of Science Parks and Business Incubators'),
(54310, 45257, 'pt', 'name', 'Instituto Federal do Amazonas'),
(54311, 45258, 'pt', 'name', 'Empresa de Pesquisa AgropecuÔria e Extensão Rural de Santa Catarina'),
(54312, 45259, 'pt', 'name', 'Governo do Estado de Alagoas'),
(54313, 45260, 'no_lang_code', 'name', 'Porto Digital (Brazil)'),
(54314, 45261, 'pt', 'name', 'Associação Nacional de Pesquisadores e Professores de História das Américas'),
(54315, 45262, 'pt', 'name', 'Governo do ParĆ”'),
(54316, 45263, 'pt', 'name', 'Empresa Mato-grossense de Pesquisa, Assistência e Extensão Rural'),
(54317, 45264, 'pt', 'name', 'Instituto Federal do Sul de Minas'),
(54318, 45265, 'pt', 'name', 'Prefeitura Municipal de Alto Alegre'),
(54319, 45266, 'pt', 'name', 'Associação Nacional de Política e Administração da Educação'),
(54320, 45267, 'pt', 'name', 'Prefeitura Municipal de Anapolis'),
(54321, 45268, 'pt', 'name', 'Escola de Comando e Estado-Maior do ExƩrcito'),
(54322, 45269, 'pt', 'name', 'Prefeitura Municipal de Barra Mansa'),
(54323, 45270, 'pt', 'name', 'Prefeitura Municipal de Campos dos Goytacazes'),
(54324, 45271, 'en', 'name', 'University Association for Research in Fundamental Psychopathology'),
(54325, 45272, 'pt', 'name', 'Instituto Federal do Tocantins'),
(54326, 45273, 'pt', 'name', 'Prefeitura Municipal de Esteio'),
(54327, 45274, 'pt', 'name', 'Prefeitura Municipal de IgarapƩ'),
(54328, 45275, 'no_lang_code', 'name', 'ASV (United States)'),
(54329, 45276, 'pt', 'name', 'Instituto Federal do Acre'),
(54330, 45277, 'pt', 'name', 'Prefeitura Municipal de Rio das Ostras'),
(54331, 45278, 'pt', 'name', 'Prefeitura Municipal de Sapiranga'),
(54332, 45279, 'no_lang_code', 'name', 'Teccampos (Brazil)'),
(54333, 45280, 'no_lang_code', 'name', 'Atkins (United States)'),
(54334, 45281, 'pt', 'name', 'Instituto Federal do AmapĆ”'),
(54335, 45282, 'pt', 'name', 'Prefeitura Municipal de TauĆ”'),
(54336, 45283, 'pt', 'name', 'Célia Helena Centro de Artes e Educação'),
(54337, 45284, 'pt', 'name', 'Inesc P&D Brasil'),
(54338, 45285, 'pt', 'name', 'Instituto Federal do Maranhão'),
(54339, 45286, 'pt', 'name', 'Escola Superior Dom Helder CĆ¢mara'),
(54340, 45287, 'pt', 'name', 'Instituto Federal do PiauĆ­'),
(54341, 45288, 'no_lang_code', 'name', 'International Baby Food Action Network'),
(54342, 45289, 'en', 'name', 'Biodiversity Research Institute'),
(54343, 45290, 'pt', 'name', 'Departamento de CiĆŖncia e Tecnologia'),
(54344, 45291, 'pt', 'name', 'Instituto Brasileiro de Museus'),
(54345, 45292, 'pt', 'name', 'Centro de Direito Internacional'),
(54346, 45293, 'no_lang_code', 'name', 'Biominas (Brazil)'),
(54347, 45294, 'pt', 'name', 'Fundação Cearense de Meteorologia e Recursos Hídricos'),
(54348, 45295, 'pt', 'name', 'Instituto Brasileiro de Tecnologia do Couro, CalƧado e Artefatos'),
(54349, 45296, 'pt', 'name', 'Secretaria de Ciência, Tecnologia e Inovação'),
(54350, 45297, 'pt', 'name', 'Instituto Florestal'),
(54351, 45298, 'pt', 'name', 'Secretaria de Educação de Pernambuco'),
(54352, 45299, 'pt', 'name', 'Instituto By Brasil'),
(54353, 45300, 'pt', 'name', 'Fundação CERTI'),
(54354, 45300, 'en', 'name', 'Reference Center Foundation for Innovative Technologies'),
(54355, 45301, 'pt', 'name', 'Centro de Estudos e Sistemas AvanƧados do Recife'),
(54356, 45302, 'pt', 'name', 'Secretaria de Estado de Educação do Distrito Federal'),
(54357, 45303, 'pt', 'name', 'Instituto Capixaba de Pesquisa, Assistência Técnica e Extensão Rural'),
(54358, 45304, 'pt', 'name', 'Instituto Geológico'),
(54359, 45305, 'pt', 'name', 'Centro Internacional de Semiótica e Comunicação'),
(54360, 45306, 'pt', 'name', 'Fundação de Ciência e Tecnologia'),
(54361, 45307, 'pt', 'name', 'Instituto de Biologia Molecular do ParanĆ”'),
(54362, 45308, 'pt', 'name', 'Instituto Nacional do SemiƔrido'),
(54363, 45309, 'pt', 'name', 'Fundação de Economia e Estatística Siegfried Emanuel Heuser'),
(54364, 45310, 'pt', 'name', 'Sociedade Brasileira de BiofĆ­sica'),
(54365, 45311, 'pt', 'name', 'Instituto de Controle do EspaƧo AƩreo'),
(54366, 45312, 'pt', 'name', 'Instituto Rio Grandense do Arroz'),
(54367, 45313, 'en', 'name', 'Brazilian Computer Society'),
(54368, 45313, 'pt', 'name', 'Sociedade Brasileira de Computação'),
(54369, 45314, 'no_lang_code', 'name', 'UNIFAVIP'),
(54370, 45315, 'pt', 'name', 'Sociedade Brasileira de Economia Administração e Sociologia Rural'),
(54371, 45316, 'pt', 'name', 'Escola TƩcnica de eletrƓnic'),
(54372, 45317, 'pt', 'name', 'Sociedade Brasileira de Educação MatemÔtica'),
(54373, 45318, 'pt', 'name', 'Fundação Liberato'),
(54374, 45319, 'pt', 'name', 'Sociedade Brasileira de Recursos GenƩticos'),
(54375, 45320, 'pt', 'name', 'Instituto de Ensino e Pesquisa Santa Casa'),
(54376, 45321, 'pt', 'name', 'Sociedade de Anestesiologia do Rio Grande do Sul'),
(54377, 45322, 'pt', 'name', 'Sociedade Brasileira de Ensino de Biologia'),
(54378, 45323, 'pt', 'name', 'Faculdade Única'),
(54379, 45324, 'pt', 'name', 'Sociedade Brasileira de GeofĆ­sica'),
(54380, 45325, 'pt', 'name', 'Sociedade Latino Americana de Biomateriais e ƓrgĆ£os Artificiais'),
(54381, 45326, 'pt', 'name', 'Sociedade Brasileira de História da MatemÔtica'),
(54382, 45327, 'de', 'name', 'Arge Ɩkologie'),
(54383, 45328, 'pt', 'name', 'Sociedade Brasileira de Pesquisa Operacional'),
(54384, 45329, 'en', 'name', 'Statistics Austria'),
(54385, 45329, 'de', 'name', 'Statistik Austria'),
(54386, 45330, 'pt', 'name', 'Sociedade Brasileira de Cardiologia'),
(54387, 45331, 'no_lang_code', 'name', 'DuPont (Finland)'),
(54388, 45332, 'pt', 'name', 'Centro Nacional de Monitoramento e Alertas de Desastres Naturais'),
(54389, 45333, 'no_lang_code', 'name', 'Medtronic (Germany)'),
(54390, 45334, 'no_lang_code', 'name', 'EchoStar (United Kingdom)'),
(54391, 45335, 'no_lang_code', 'name', 'DenseLight Semiconductors (Singapore)'),
(54392, 45336, 'no_lang_code', 'name', 'De Beers (United Kingdom)'),
(54393, 45337, 'no_lang_code', 'name', 'DMG Mori (Germany)'),
(54394, 45338, 'no_lang_code', 'name', 'Johnson Controls (Canada)'),
(54395, 45339, 'no_lang_code', 'name', 'Dana (United Kingdom)'),
(54396, 45340, 'no_lang_code', 'name', 'Danfoss (China)'),
(54397, 45341, 'no_lang_code', 'name', 'Danfoss (Germany)'),
(54398, 45342, 'no_lang_code', 'name', 'Danfoss (United States)'),
(54399, 45343, 'no_lang_code', 'name', 'Deutsche Telekom (United Kingdom)'),
(54400, 45344, 'no_lang_code', 'name', 'Doosan Machine Tools (United States)'),
(54401, 45345, 'no_lang_code', 'name', 'Dornier (United States)'),
(54402, 45346, 'no_lang_code', 'name', 'DuPont (China)'),
(54403, 45347, 'no_lang_code', 'name', 'Diageo (United Kingdom)'),
(54404, 45348, 'no_lang_code', 'name', 'Dynea (Austria)'),
(54405, 45349, 'no_lang_code', 'name', 'Bridgepoint (United States)'),
(54406, 45350, 'no_lang_code', 'name', 'Dow Chemical (Brasil)'),
(54407, 45351, 'no_lang_code', 'name', 'Dow Chemical (China)'),
(54408, 45352, 'no_lang_code', 'name', 'EagleBurgmann (Japan)'),
(54409, 45353, 'no_lang_code', 'name', 'Rambus (United Kingdom)'),
(54410, 45354, 'no_lang_code', 'name', 'Echostar (Ukraine)'),
(54411, 45355, 'no_lang_code', 'name', 'DrƤger (United Kingdom)'),
(54412, 45356, 'no_lang_code', 'name', 'Ecolab (Germany)'),
(54413, 45357, 'no_lang_code', 'name', 'Eaton (United Kingdom)'),
(54414, 45358, 'no_lang_code', 'name', 'Eaton (Austria)'),
(54415, 45359, 'no_lang_code', 'name', 'Pirelli (Germany)'),
(54416, 45360, 'no_lang_code', 'name', 'EnerSys (Switzerland)'),
(54417, 45361, 'no_lang_code', 'name', 'Eaton (Switzerland)'),
(54418, 45362, 'no_lang_code', 'name', 'EcoSynthetix (United States)'),
(54419, 45363, 'no_lang_code', 'name', 'General Electric (Israel)'),
(54420, 45364, 'no_lang_code', 'name', 'Nortek (United Kingdom)'),
(54421, 45365, 'no_lang_code', 'name', 'eBay (South Korea)'),
(54422, 45366, 'no_lang_code', 'name', 'Honeywell (Germany)'),
(54423, 45367, 'no_lang_code', 'name', 'Eli Lilly (Ireland)'),
(54424, 45368, 'no_lang_code', 'name', 'Illinois Tool Works (Germany)'),
(54425, 45369, 'no_lang_code', 'name', 'EFD Induction (Germany)'),
(54426, 45370, 'no_lang_code', 'name', 'Arotech (Israel)'),
(54427, 45371, 'no_lang_code', 'name', 'Electrolux (Australia)'),
(54428, 45372, 'no_lang_code', 'name', 'Steris (United Kingdom)'),
(54429, 45373, 'no_lang_code', 'name', 'Electrolux (United Kingdom)'),
(54430, 45374, 'no_lang_code', 'name', 'Electrolux (Germany)'),
(54431, 45375, 'no_lang_code', 'name', 'Emergent BioSolutions (United Kingdom)'),
(54432, 45376, 'no_lang_code', 'name', 'Emerson (China)'),
(54433, 45377, 'no_lang_code', 'name', 'Elekta (United Kingdom)'),
(54434, 45378, 'no_lang_code', 'name', 'Electrovaya (Germany)'),
(54435, 45379, 'no_lang_code', 'name', 'TDK (Singapore)'),
(54436, 45380, 'no_lang_code', 'name', 'Element Six (South Africa)'),
(54437, 45381, 'no_lang_code', 'name', 'Element Six (Germany)'),
(54438, 45382, 'no_lang_code', 'name', 'Excelitas Technologies (Singapore)'),
(54439, 45383, 'no_lang_code', 'name', 'Asus (China)'),
(54440, 45383, 'zh', 'name', 'čÆē¢©é›»č…¦č‚”ä»½ęœ‰é™å…¬åø'),
(54441, 45384, 'no_lang_code', 'name', 'Expro (United States)'),
(54442, 45385, 'no_lang_code', 'name', 'Sandvik (Germany)'),
(54443, 45386, 'no_lang_code', 'name', 'Faurecia (United States)'),
(54444, 45387, 'no_lang_code', 'name', 'Cadence Design Systems (United Kingdom)'),
(54445, 45388, 'en', 'name', 'Faurecia (Germany)'),
(54446, 45389, 'no_lang_code', 'name', 'Flex (Germany)'),
(54447, 45390, 'no_lang_code', 'name', 'Flex (Mauritius)'),
(54448, 45391, 'no_lang_code', 'name', 'MACOM (Japan)'),
(54449, 45392, 'no_lang_code', 'name', 'Frequentis (Germany)'),
(54450, 45393, 'no_lang_code', 'name', 'Fresenius Kabi (United States)'),
(54451, 45394, 'no_lang_code', 'name', 'Freudenberg (United States)'),
(54452, 45395, 'no_lang_code', 'name', 'Federal Mogul (Germany)'),
(54453, 45396, 'no_lang_code', 'name', 'Federal Mogul (United Kingdom)'),
(54454, 45397, 'no_lang_code', 'name', 'Flow International Corporation (Germany)'),
(54455, 45398, 'no_lang_code', 'name', 'Fujitsu (Germany)'),
(54456, 45398, 'ja', 'name', 'åÆŒå£«é€šę Ŗå¼ä¼šē¤¾'),
(54457, 45399, 'no_lang_code', 'name', 'Sulzer (Germany)'),
(54458, 45400, 'no_lang_code', 'name', 'Gemalto (United Kingdom)'),
(54459, 45401, 'no_lang_code', 'name', 'Kaiam Corporation (United Kingdom)'),
(54460, 45402, 'no_lang_code', 'name', 'Mahindra Forgings (Germany)'),
(54461, 45403, 'no_lang_code', 'name', 'ThyssenKrupp (Liechtenstein)'),
(54462, 45404, 'no_lang_code', 'name', 'Exide Technologies (Germany)'),
(54463, 45405, 'no_lang_code', 'name', 'AT&T (Israel)'),
(54464, 45406, 'no_lang_code', 'name', 'Baxter (Germany)'),
(54465, 45407, 'no_lang_code', 'name', 'GKN (United States)'),
(54466, 45408, 'no_lang_code', 'name', 'Merck (United Kingdom)'),
(54467, 45409, 'no_lang_code', 'name', 'Nidec (Germany)'),
(54468, 45410, 'no_lang_code', 'name', 'Glen Dimplex (Germany)'),
(54469, 45411, 'no_lang_code', 'name', 'W. L. Gore & Associates (Japan)'),
(54470, 45412, 'no_lang_code', 'name', 'International Game Technology (Germany)'),
(54471, 45413, 'no_lang_code', 'name', 'Engie (United States)'),
(54472, 45414, 'no_lang_code', 'name', 'TE Connectivity (Denmark)'),
(54473, 45415, 'no_lang_code', 'name', 'Halliburton (United Kingdom)'),
(54474, 45416, 'no_lang_code', 'name', 'Gold Peak Industries (United Kingdom)'),
(54475, 45417, 'no_lang_code', 'name', 'Harman (China)'),
(54476, 45418, 'no_lang_code', 'name', 'Harman (United Kingdom)'),
(54477, 45419, 'no_lang_code', 'name', 'Stryker (United Kingdom)'),
(54478, 45420, 'no_lang_code', 'name', 'Seoyon E-Hwa (South Korea)'),
(54479, 45421, 'no_lang_code', 'name', 'Heraeus (United States)'),
(54480, 45422, 'no_lang_code', 'name', 'Hillrom (Singapore)'),
(54481, 45423, 'no_lang_code', 'name', 'Honeywell (Australia)'),
(54482, 45424, 'no_lang_code', 'name', 'Dover (Canada)'),
(54483, 45425, 'no_lang_code', 'name', 'Hoerbiger (Germany)'),
(54484, 45426, 'no_lang_code', 'name', 'Hoerbiger (Austria)'),
(54485, 45427, 'no_lang_code', 'name', 'Horiba (Germany)'),
(54486, 45428, 'no_lang_code', 'name', 'Hewlett-Packard (Israel)'),
(54487, 45429, 'no_lang_code', 'name', 'Hovione (China)'),
(54488, 45430, 'no_lang_code', 'name', 'Hexagon (Germany)'),
(54489, 45431, 'no_lang_code', 'name', 'Hexagon (Switzerland)'),
(54490, 45432, 'no_lang_code', 'name', 'Hewlett-Packard (Austria)'),
(54491, 45433, 'no_lang_code', 'name', 'Legrand (Australia)'),
(54492, 45434, 'no_lang_code', 'name', 'Hitachi (Germany)'),
(54493, 45435, 'no_lang_code', 'name', 'Hyundai Motors (South Korea)'),
(54494, 45435, 'ko', 'name', 'ķ˜„ėŒ€ģžė™ģ°Ø'),
(54495, 45436, 'no_lang_code', 'name', 'Hyundai Card (South Korea)'),
(54496, 45436, 'ko', 'name', 'ķ˜„ėŒ€ģ¹“ė“œ'),
(54497, 45437, 'no_lang_code', 'name', 'SK Group (Japan)'),
(54498, 45438, 'no_lang_code', 'name', 'Newron Pharmaceuticals (United States)'),
(54499, 45439, 'no_lang_code', 'name', 'Hyundai Steel (South Korea)'),
(54500, 45439, 'ko', 'name', 'ķ˜„ėŒ€ģ œģ² '),
(54501, 45440, 'no_lang_code', 'name', 'International Game Technology (United Kingdom)'),
(54502, 45441, 'no_lang_code', 'name', 'Hubbell (United Kingdom)'),
(54503, 45442, 'no_lang_code', 'name', 'IHI Corporation (Germany)'),
(54504, 45443, 'no_lang_code', 'name', 'Toshiba (South Korea)'),
(54505, 45443, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±čŠ'),
(54506, 45444, 'no_lang_code', 'name', 'IHS Markit (Australia)'),
(54507, 45445, 'no_lang_code', 'name', 'Husqvarna (United Kingdom)'),
(54508, 45446, 'no_lang_code', 'name', 'Innospec (United States)'),
(54509, 45447, 'no_lang_code', 'name', 'Ineos (Switzerland)'),
(54510, 45448, 'no_lang_code', 'name', 'General Electric (Argentina)'),
(54511, 45449, 'no_lang_code', 'name', 'Zodiac Aerospace (United Kingdom)'),
(54512, 45450, 'no_lang_code', 'name', 'Intellectual Ventures (Singapore)'),
(54513, 45451, 'no_lang_code', 'name', 'British American Tobacco (Canada)'),
(54514, 45452, 'no_lang_code', 'name', 'Inventec (China)'),
(54515, 45452, 'zh', 'name', '英ꄭ達'),
(54516, 45453, 'no_lang_code', 'name', 'ITT (United Kingdom)'),
(54517, 45454, 'no_lang_code', 'name', 'Illinois Tool Works (Australia)'),
(54518, 45455, 'no_lang_code', 'name', 'Sunstar (Germany)'),
(54519, 45456, 'no_lang_code', 'name', 'Integra LifeSciences (Ireland)'),
(54520, 45457, 'no_lang_code', 'name', 'Magna International (Germany)'),
(54521, 45458, 'no_lang_code', 'name', 'Ipsen (Ireland)'),
(54522, 45459, 'no_lang_code', 'name', 'Johnson & Johnson (Brazil)'),
(54523, 45460, 'no_lang_code', 'name', 'Johnson & Johnson (Australia)'),
(54524, 45461, 'no_lang_code', 'name', 'Johnson Controls (Switzerland)'),
(54525, 45462, 'no_lang_code', 'name', 'Krüger (Germany)'),
(54526, 45463, 'no_lang_code', 'name', 'Johnson Matthey (Germany)'),
(54527, 45464, 'no_lang_code', 'name', 'Japan Aviation Electronics Industry (Taiwan)'),
(54528, 45465, 'no_lang_code', 'name', 'Sosei Group (Japan)'),
(54529, 45466, 'no_lang_code', 'name', 'Jordan Valley Semiconductors (Israel)'),
(54530, 45467, 'no_lang_code', 'name', 'Isra Vision (Germany)'),
(54531, 45468, 'no_lang_code', 'name', 'ITT (Germany)'),
(54532, 45469, 'no_lang_code', 'name', 'Olympus (United Kingdom)'),
(54533, 45470, 'no_lang_code', 'name', 'Keysight Technologies (Singapore)'),
(54534, 45471, 'no_lang_code', 'name', 'Kaneka (United States)'),
(54535, 45472, 'no_lang_code', 'name', 'Desma (Germany)'),
(54536, 45473, 'no_lang_code', 'name', 'KME (United States)'),
(54537, 45474, 'no_lang_code', 'name', 'Kao Corporation (Germany)'),
(54538, 45475, 'no_lang_code', 'name', 'Kao Corporation (United States)'),
(54539, 45476, 'no_lang_code', 'name', 'Knorr-Bremse (Austria)'),
(54540, 45477, 'no_lang_code', 'name', 'Komet Group (Germany)'),
(54541, 45478, 'no_lang_code', 'name', 'Knorr-Bremse (United Kingdom)'),
(54542, 45479, 'no_lang_code', 'name', 'KRONOS (Germany)'),
(54543, 45480, 'no_lang_code', 'name', 'Kodak (Israel)'),
(54544, 45481, 'no_lang_code', 'name', 'Kodak (Japan)'),
(54545, 45482, 'no_lang_code', 'name', 'Kohler (China)'),
(54546, 45482, 'zh', 'name', 'ē§‘å‹’'),
(54547, 45483, 'no_lang_code', 'name', 'JTEKT (United States)'),
(54548, 45484, 'no_lang_code', 'name', 'Kohler (New Zealand)'),
(54549, 45485, 'no_lang_code', 'name', 'KUKA (United States)'),
(54550, 45486, 'no_lang_code', 'name', 'MBDA (Germany)'),
(54551, 45487, 'no_lang_code', 'name', 'Ericsson LG (South Korea)'),
(54552, 45488, 'no_lang_code', 'name', 'Leuco (United States)'),
(54553, 45489, 'no_lang_code', 'name', 'Legrand (Germany)'),
(54554, 45490, 'no_lang_code', 'name', 'Agfa-Gevaert (United States)'),
(54555, 45491, 'no_lang_code', 'name', 'Liebherr (Austria)'),
(54556, 45492, 'no_lang_code', 'name', 'Toshiba (Germany)'),
(54557, 45493, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Israel)'),
(54558, 45494, 'no_lang_code', 'name', 'Leo Pharma (Ireland)'),
(54559, 45495, 'no_lang_code', 'name', 'Lite-On Technology Corporation (Singapore)'),
(54560, 45496, 'en', 'name', 'China Agricultural Museum'),
(54561, 45497, 'fr', 'name', 'Institut National Polytechnique FƩlix Houphouƫt-Boigny'),
(54562, 45498, 'en', 'name', 'Department of Agricultural Research & Technical Services'),
(54563, 45499, 'en', 'name', 'Department of Environment and Natural Resources'),
(54564, 45500, 'es', 'name', 'Academia Nacional de Ciencias de Bolivia'),
(54565, 45501, 'en', 'name', 'Federal Institute for Education Development'),
(54566, 45501, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ автономное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(54567, 45502, 'no_lang_code', 'name', 'Aerospace Testing Alliance (United States)'),
(54568, 45503, 'no_lang_code', 'name', 'Abbott (United Kingdom)'),
(54569, 45504, 'fr', 'name', 'Centre d''Ɖtude et de Recherche de Djibouti'),
(54570, 45505, 'es', 'name', 'Conferencia Episcopal Boliviana'),
(54571, 45506, 'en', 'name', 'Food and Agricultural Research and Extension Institute'),
(54572, 45507, 'es', 'name', 'Consejo Estatal Del Azucar'),
(54573, 45508, 'en', 'name', 'Environment and Public Health Organisation'),
(54574, 45509, 'en', 'name', 'Environmental Protection Agency'),
(54575, 45510, 'es', 'name', 'Corporación Autónoma Regional de Los Valles del Sinu y del San Jorge'),
(54576, 45511, 'en', 'name', 'Mongolian Nature and Environment Consortium'),
(54577, 45512, 'en', 'name', 'Alameda County Library'),
(54578, 45513, 'es', 'name', 'Corporación para el Desarrollo Sostenible del UrabÔ'),
(54579, 45514, 'fr', 'name', 'Centre National d''Applications des Recherches Pharmaceutiques'),
(54580, 45514, 'en', 'name', 'National Application Center for Pharmaceutical Research'),
(54581, 45515, 'en', 'name', 'Annapurna Neurological Institute and Allied Sciences'),
(54582, 45515, 'ne', 'name', 'ą¤…ą¤Øą„ą¤Øą¤Ŗą„‚ą¤°ą„ą¤£ ą¤Øą„ą¤Æą„‚ą¤°ą„‹ą¤²ą„‹ą¤œą¤æą¤•ą¤² ą¤ˆą¤Øą„ą¤øą„ą¤Ÿą„€ą¤šą„ą¤Æą„ą¤Ÿ ą¤ą¤£ą„ą¤” ą¤ą¤²ą¤¾ą¤ˆą¤” ą¤øą¤¾ą¤ˆą¤Øą„ą¤øą„‡ą¤ø'),
(54583, 45516, 'en', 'name', 'Arannayk Foundation'),
(54584, 45517, 'no_lang_code', 'name', 'Mycofarm (Singapore)'),
(54585, 45518, 'en', 'name', 'Austin Public Library'),
(54586, 45519, 'en', 'name', 'Asia Network for Sustainable Agriculture and Bioresources'),
(54587, 45520, 'no_lang_code', 'name', 'IDEX Corporation (Germany)'),
(54588, 45521, 'en', 'name', 'Dairy Farming Promotion Organization'),
(54589, 45522, 'en', 'name', 'Associated Press'),
(54590, 45523, 'en', 'name', 'Dambari Wildlife Trust'),
(54591, 45524, 'en', 'name', 'Danish Agency for Culture and Palaces'),
(54592, 45525, 'es', 'name', 'Centro Cooperativista Uruguayo'),
(54593, 45526, 'en', 'name', 'Department of Agriculture'),
(54594, 45527, 'es', 'name', 'Centro de Excelencia en Procesos y Productos de Córdoba'),
(54595, 45528, 'en', 'name', 'Bangladesh Livestock Research Institute'),
(54596, 45529, 'en', 'name', 'Department of Fisheries'),
(54597, 45530, 'en', 'name', 'Basque Center for Materials, Applications and Nanostructures'),
(54598, 45531, 'de', 'name', 'Deutsches Patent- und Markenamt'),
(54599, 45531, 'no_lang_code', 'name', 'German Patent and Trade Mark Office (Germany)'),
(54600, 45532, 'no_lang_code', 'name', 'Dexin (Uruguay)'),
(54601, 45533, 'en', 'name', 'Beijing Institute of Education'),
(54602, 45533, 'zh', 'name', 'åŒ—äŗ¬ę•™č‚²å­¦é™¢'),
(54603, 45534, 'de', 'name', 'Bibliothek des Wissenschaftsparks Albert Einstein'),
(54604, 45535, 'en', 'name', 'Institute of Chemistry, Komi Science Center'),
(54605, 45535, 'ru', 'name', 'Коми Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š£Ń€Šž Š ŠŠ'),
(54606, 45536, 'en', 'name', 'BirdLife International'),
(54607, 45537, 'en', 'name', 'Institute of Economic Forecasting'),
(54608, 45537, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°Ń€Š¾Š“Š½Š¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Š½ŠøŃ Российской АкаГемии ŠŠ°ŃƒŠŗ'),
(54609, 45538, 'en', 'name', 'Donetsk Institute for Physics and Engineering named after O.O. Galkin'),
(54610, 45538, 'uk', 'name', 'Донецкий физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. А.А.Галкина'),
(54611, 45539, 'en', 'name', 'Institute of Forest Science'),
(54612, 45539, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š»ŠµŃŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(54613, 45540, 'en', 'name', 'Vinogradov Institute of Geochemistry'),
(54614, 45540, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геохимии им. А.П. ВинограГова Š”Šž Š ŠŠ'),
(54615, 45541, 'en', 'name', 'Center for the Advancement of Natural Discoveries using Light Emission'),
(54616, 45542, 'en', 'name', 'Zavaritsky Institute of Geology and Geochemistry'),
(54617, 45542, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° геологии Šø геохимии им. акаГемика А.Š. Заварицкого'),
(54618, 45543, 'en', 'name', 'Ministry of Environment'),
(54619, 45544, 'en', 'name', 'Catholic University Institute of Buea'),
(54620, 45545, 'en', 'name', 'Center for Environmental and Geographic Information Services'),
(54621, 45546, 'en', 'name', 'Institute of Geology Ufa Scientific Center'),
(54622, 45546, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Уфимского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Š ŠŠ'),
(54623, 45547, 'es', 'name', 'ecOceƔnica'),
(54624, 45548, 'es', 'name', 'Centro para la Investigación en Sistemas Sostenibles de Producción Agropecuaria'),
(54625, 45549, 'en', 'name', 'Institute of History of Material Culture'),
(54626, 45549, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»ŃŒŠ½Š¾Š¹ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Š ŠŠ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(54627, 45550, 'en', 'name', 'Institute of Immunology and Physiology'),
(54628, 45550, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иммунологии Šø физиологии Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(54629, 45551, 'en', 'name', 'Department of Food Technology and Quality Control'),
(54630, 45552, 'en', 'name', 'Market Economy Institute'),
(54631, 45552, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒĢŃ‚ пробле́м ры́нка Российской АкаГемии наук'),
(54632, 45553, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Agriculture'),
(54633, 45554, 'fr', 'name', 'Institut de Technologie Alimentaire'),
(54634, 45555, 'es', 'name', 'Fundación para la Educación y el Desarrollo Social'),
(54635, 45556, 'en', 'name', 'Institute of Natural Resources, Ecology and Cryology'),
(54636, 45556, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ прироГных Ń€ŠµŃŃƒŃ€ŃŠ¾Š², ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø криологии Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(54637, 45557, 'es', 'name', 'Fundacion Hondureña de Investigación Agricola'),
(54638, 45557, 'en', 'name', 'Honduras Foundation for Agricultural Research'),
(54639, 45558, 'es', 'name', 'Instituto de Ecologia y SistemƔtica'),
(54640, 45559, 'es', 'name', 'Fundación Oikos'),
(54641, 45560, 'es', 'name', 'Fundación para el Desarrollo de la Ecología'),
(54642, 45561, 'en', 'name', 'Institute of Precision Mechanics and Control'),
(54643, 45561, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем точной механики Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(54644, 45562, 'fr', 'name', 'Institute Malgache De Recherches AppliquƩes'),
(54645, 45563, 'en', 'name', 'Foundation for Integral Development Pacific'),
(54646, 45563, 'es', 'name', 'Fundación para el Desarrollo Integral del Pacífico'),
(54647, 45564, 'en', 'name', 'Kenya Agricultural and Livestock Research Organization'),
(54648, 45565, 'en', 'name', 'Institute of Socio-Political Research'),
(54649, 45565, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-политических исслеГований'),
(54650, 45566, 'pt', 'name', 'Instituto Nacional de Investigação Pesqueira'),
(54651, 45567, 'es', 'name', 'Fundación Pro Salud y Medio Ambiente'),
(54652, 45568, 'en', 'name', 'Institute of Theoretical and Applied Electrodynamics'),
(54653, 45568, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø приклаГной ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š“ŠøŠ½Š°Š¼ŠøŠŗŠø Š ŠŠ'),
(54654, 45569, 'en', 'name', 'Keystone Foundation'),
(54655, 45570, 'es', 'name', 'Instituto de Investigaciones AvĆ­colas'),
(54656, 45571, 'en', 'name', 'Coconut Research Institute'),
(54657, 45572, 'en', 'name', 'Research Station of the Russian Academy of Sciences in Bishkek'),
(54658, 45572, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š°Ń ŃŃ‚Š°Š½Ń†ŠøŃ Российской акаГемии наук в Š‘ŠøŃˆŠŗŠµŠŗŠµ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(54659, 45573, 'en', 'name', 'Ghana Wildlife Society'),
(54660, 45574, 'en', 'name', 'King County Library System'),
(54661, 45575, 'en', 'name', 'V.V. Vinogradov Russian Language Institute'),
(54662, 45575, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŃƒŃŃŠŗŠ¾Š³Š¾ ŃŠ·Ń‹ŠŗŠ° имени Š’. Š’. ВинограГова Š ŠŠ'),
(54663, 45576, 'en', 'name', 'Glendale Public Library'),
(54664, 45577, 'en', 'name', 'Government Chemist Laboratory Agency'),
(54665, 45578, 'pt', 'name', 'Instituto de Pesquisas Ecológicas'),
(54666, 45579, 'en', 'name', 'Research and Production Complex Technological Centre'),
(54667, 45579, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный комплекс «Технологический центр'),
(54668, 45580, 'en', 'name', 'State Research Institute for Restoration'),
(54669, 45580, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ реставрации'),
(54670, 45581, 'en', 'name', 'All-Russian Research Institute of Genetics and Farm Animal Breeding'),
(54671, 45581, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетики Šø Ń€Š°Š·Š²ŠµŠ“ŠµŠ½ŠøŃ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Ń… животных'),
(54672, 45582, 'en', 'name', 'Institute for Sustainable Development'),
(54673, 45583, 'no_lang_code', 'name', 'Gweru Polytechnic Institute'),
(54674, 45584, 'es', 'name', 'Instituto de Investigaciones en Ciencia y TecnologĆ­a de Materiales'),
(54675, 45585, 'en', 'name', 'Gwinnett County Public Library'),
(54676, 45586, 'pt', 'name', 'Instituto MarƩs'),
(54677, 45587, 'fr', 'name', 'Laboratoire de Recherche et d’Analyses MĆ©dicales de la Fraternelle de la Gendarmerie Royale'),
(54678, 45588, 'es', 'name', 'Instituto Nacional de Ciencias AgrĆ­colas'),
(54679, 45589, 'en', 'name', 'Russian Scientific Center of Surgery'),
(54680, 45589, 'ru', 'name', 'Российский ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр Š„ŠøŃ€ŃƒŃ€Š³ŠøŠø им. акаГ. Š‘.Š’. ŠŸŠµŃ‚Ń€Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(54681, 45590, 'en', 'name', 'Heilongjiang Academy of Land Reclamation Sciences'),
(54682, 45590, 'zh', 'name', 'é»‘é¾™ę±Ÿå†œęž—ē§‘ęŠ€å¤§å­¦'),
(54683, 45591, 'en', 'name', 'Institute of Materials for Electronics and Magnetism'),
(54684, 45592, 'en', 'name', 'Povolzhsky Research Institute of Production and Processing of Meat and Dairy Products'),
(54685, 45592, 'ru', 'name', 'Поволжский ŠŠ˜Š˜ произвоГства Šø переработки Š¼ŃŃŠ¾Š¼Š¾Š»Š¾Ń‡Š½Š¾Š¹ ŠæŃ€Š¾Š“ŃƒŠŗŃ†ŠøŠø'),
(54686, 45593, 'en', 'name', 'Herrick District Library'),
(54687, 45594, 'en', 'name', 'Malaysian Cocoa Board'),
(54688, 45595, 'en', 'name', 'Federal University Otuoke'),
(54689, 45596, 'en', 'name', 'Higher Institute of Technologies and Applied Sciences'),
(54690, 45596, 'es', 'name', 'Instituto Superior de TecnologĆ­as y Ciencias Aplicadas'),
(54691, 45597, 'en', 'name', 'Library System of Lancaster County'),
(54692, 45598, 'en', 'name', 'Field Crops Research Institute'),
(54693, 45599, 'en', 'name', 'BARKA Foundation'),
(54694, 45600, 'no_lang_code', 'name', 'Imation (United States)'),
(54695, 45601, 'mg', 'name', 'Madagasikara Voakajy'),
(54696, 45602, 'en', 'name', 'Institute of Micro and Nanotechnology'),
(54697, 45602, 'es', 'name', 'Instituto de Micro y NanotecnologĆ­a'),
(54698, 45603, 'es', 'name', 'Instituto Boliviano de Ciencia y TecnologĆ­a Nuclear'),
(54699, 45604, 'en', 'name', 'Forest Industry Research Institute'),
(54700, 45604, 'vi', 'name', 'Viện NghiĆŖn cứu CĆ“ng nghiệp rừng'),
(54701, 45605, 'es', 'name', 'Instituto Colombiano Agropecuario'),
(54702, 45606, 'no_lang_code', 'name', 'Mfantsiman Girls Secondary School'),
(54703, 45607, 'en', 'name', 'Japan Patent Office'),
(54704, 45607, 'ja', 'name', '特許庁'),
(54705, 45608, 'en', 'name', 'Jesuit Service Cambodia'),
(54706, 45609, 'ms', 'name', 'INFOFISH'),
(54707, 45610, 'en', 'name', 'Montgomery County Memorial Library System'),
(54708, 45611, 'en', 'name', 'Moscow Technological Institute'),
(54709, 45612, 'en', 'name', 'Fortune Institute of Technology'),
(54710, 45612, 'zh', 'name', 'å’Œę˜„ęŠ€č”“å­øé™¢'),
(54711, 45613, 'en', 'name', 'Foundation for Environment Climate and Technology'),
(54712, 45614, 'en', 'name', 'Mount Prospect Public Library'),
(54713, 45615, 'es', 'name', 'Ministerio de Agricultura y GanaderĆ­a de Costa Rica'),
(54714, 45616, 'es', 'name', 'Ministerio de Desarrollo Agropecuario'),
(54715, 45617, 'pt', 'name', 'Fundação ApolÓnio Salles de Desenvolvimento Educacional'),
(54716, 45618, 'en', 'name', 'Mpala Research Center and Wildlife Foundation'),
(54717, 45619, 'en', 'name', 'Kalamazoo Public Library'),
(54718, 45620, 'pt', 'name', 'Fundação de Amparo à Pesquisa e Extensão UniversitÔria'),
(54719, 45621, 'en', 'name', 'Ministry of Agriculture Mechanisation and Irrigation Development'),
(54720, 45622, 'en', 'name', 'Ministry of Agriculture and Forestry and Food'),
(54721, 45623, 'en', 'name', 'Ministry of Agro Industry and Food Security'),
(54722, 45624, 'pt', 'name', 'Fundação Instituto de Pesca do Estado do Rio de Janeiro'),
(54723, 45625, 'es', 'name', 'Fundacion Biodiversa Colombia'),
(54724, 45626, 'en', 'name', 'Nigerian Institute For Oil Palm Reasearch'),
(54725, 45627, 'en', 'name', 'Ministry of Agriculture and Livestock'),
(54726, 45628, 'en', 'name', 'Ministry of Agriculture and Forests'),
(54727, 45629, 'en', 'name', 'Museum of Malawi'),
(54728, 45630, 'en', 'name', 'Myanmar Timber Enterprise'),
(54729, 45631, 'en', 'name', 'Nigerian Stored Products Research Institute'),
(54730, 45632, 'en', 'name', 'NM Sadguru Water and Development Foundation'),
(54731, 45633, 'en', 'name', 'IGAD Sheikh Technical Veterinary School and Reference Centre'),
(54732, 45634, 'es', 'name', 'Ministerio de GanaderĆ­a Agricultura y Pesca'),
(54733, 45635, 'en', 'name', 'Ministry of Agriculture Forestry and Fisheries'),
(54734, 45635, 'km', 'name', 'įž€įŸ’įžšįžŸįž½įž„įž€įžŸįž·įž€įž˜įŸ’įž˜ įžšįž»įž€įŸ’įžįž¶įž”įŸ’įžšįž˜įž¶įž‰įŸ‹ įž“įž·įž„įž“įŸįžŸįž¶įž‘'),
(54735, 45636, 'en', 'name', 'Nimbkar Agricultural Research Institute'),
(54736, 45637, 'en', 'name', 'Bangladesh Sericulture Research and Training Institute'),
(54737, 45638, 'en', 'name', 'Small Industries Development Organisation'),
(54738, 45639, 'en', 'name', 'Nashua Public Library'),
(54739, 45640, 'en', 'name', 'National Agricultural Research Institute'),
(54740, 45641, 'fr', 'name', 'Institut de Recherches Géologiques et Minières'),
(54741, 45641, 'en', 'name', 'Institute of Geological and Mining Research'),
(54742, 45642, 'en', 'name', 'Ministry of Natural Resources'),
(54743, 45643, 'en', 'name', 'National Archives and Library of Ethiopia'),
(54744, 45644, 'fr', 'name', 'Office de l''elevage et des pâturages'),
(54745, 45644, 'en', 'name', 'Office of Livestock and Pasture'),
(54746, 45645, 'en', 'name', 'National Centre for Genetic Resources and Biotechnology'),
(54747, 45646, 'en', 'name', 'Monmouth County Library'),
(54748, 45647, 'en', 'name', 'Operation Wallacea Trust'),
(54749, 45648, 'en', 'name', 'Montgomery City County Public Library'),
(54750, 45649, 'en', 'name', 'National Cereals Research Institute'),
(54751, 45650, 'en', 'name', 'Center for Speech Pathology and Neurorehabilitation'),
(54752, 45650, 'ru', 'name', 'Центр паталогии речи Šø нейрореабилитации. Разработка сайта'),
(54753, 45651, 'fr', 'name', 'UniversitƩ d''Agriculture de KƩtou'),
(54754, 45652, 'en', 'name', 'Pakistan Nuclear Regulatory Authority'),
(54755, 45652, 'ur', 'name', 'پاکستان Ł†ŁŠŲ¤ŁƒŁ„Ų± Ų±ŁŠŚÆŁŠŁ„Ų±Ł¹ŁˆŁ‰ اثھارٹى'),
(54756, 45653, 'en', 'name', 'Central Laboratory of the National Veterinary Sanitation'),
(54757, 45653, 'mn', 'name', 'Улсын Мал Š­Š¼Š½ŃŠ»ŃŠ³ ŠŃ€ŠøŃƒŠ½ Š¦ŃŠ²Ń€ŠøŠ¹Š½ Төв Лаборатори.'),
(54758, 45654, 'en', 'name', 'National Defence College Kenya'),
(54759, 45655, 'en', 'name', 'Palm Beach County Library System'),
(54760, 45656, 'en', 'name', 'State Intellectual Property Office'),
(54761, 45656, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶ēŸ„čÆ†äŗ§ęƒå±€'),
(54762, 45657, 'en', 'name', 'National Food Technology Research Centre'),
(54763, 45658, 'en', 'name', 'Sunnyvale Public Library'),
(54764, 45659, 'en', 'name', 'Peter White Public Library'),
(54765, 45660, 'en', 'name', 'Tamil Nadu Forest Plantation (India)'),
(54766, 45661, 'en', 'name', 'National Institute of Animal Sciences'),
(54767, 45661, 'vi', 'name', 'Viện Chăn NuĆ“i'),
(54768, 45662, 'fr', 'name', 'UniversitƩ Libre du Congo'),
(54769, 45663, 'en', 'name', 'Acapulco Institute of Technology'),
(54770, 45663, 'es', 'name', 'Instituto Tecnológico de Acapulco'),
(54771, 45664, 'es', 'name', 'Instituto Tecnológico de Apizaco'),
(54772, 45665, 'es', 'name', 'Planta Piloto de Procesos Industriales Microbiológicos'),
(54773, 45666, 'en', 'name', 'National Library of Namibia'),
(54774, 45667, 'en', 'name', 'Poornaprajna Institute of Scientific Research'),
(54775, 45668, 'en', 'name', 'Kenya National Library Service'),
(54776, 45669, 'es', 'name', 'Instituto Tecnológico de Cerro Azul'),
(54777, 45670, 'en', 'name', 'Prince George''s County Memorial Library System'),
(54778, 45671, 'en', 'name', 'Centre for Economic and Social Studies'),
(54779, 45672, 'es', 'name', 'Instituto Tecnológico de Hermosillo'),
(54780, 45673, 'es', 'name', 'Pro Cosara'),
(54781, 45674, 'es', 'name', 'Instituto Tecnológico de Matamoros'),
(54782, 45675, 'en', 'name', 'Belize Zoo'),
(54783, 45676, 'en', 'name', 'National Zoonoses and Food Hygiene Research Centre'),
(54784, 45677, 'en', 'name', 'Wildlife Conservation Society Laos'),
(54785, 45678, 'en', 'name', 'Uganda National Health Research Organisation'),
(54786, 45679, 'id', 'name', 'Pusat Penelitian dan Pengembangan Peternakan'),
(54787, 45680, 'en', 'name', 'Tompkins County Public Library'),
(54788, 45681, 'en', 'name', 'Ethiopian Environment Protection Authority'),
(54789, 45682, 'en', 'name', 'Radford University College'),
(54790, 45683, 'en', 'name', 'Nature Conservation Foundation'),
(54791, 45684, 'en', 'name', 'Nature Uganda'),
(54792, 45685, 'no_lang_code', 'name', 'New Britain Palm Oil (Papua New Guinea)'),
(54793, 45686, 'en', 'name', 'Nehru Foundation for Development'),
(54794, 45687, 'en', 'name', 'Reading Public Library'),
(54795, 45688, 'en', 'name', 'Nepal Development Research Institute'),
(54796, 45688, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² विकास ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(54797, 45689, 'en', 'name', 'Regional Information Center for Science and Technology'),
(54798, 45689, 'fa', 'name', 'مرکز منطقه ای اطلاع Ų±Ų³Ų§Ł†ŪŒ Ų¹Ł„ŁˆŁ… و ŁŁ†Ų§ŁˆŲ±ŪŒ'),
(54799, 45690, 'en', 'name', 'Nigeria Agricultural Quarantine Service'),
(54800, 45691, 'no_lang_code', 'name', 'Unilever (Philippines)'),
(54801, 45692, 'en', 'name', 'Research Institute for Bioscience and Biotechnology'),
(54802, 45693, 'en', 'name', 'Research Institute of Animal Husbandry'),
(54803, 45694, 'fr', 'name', 'RƩseau MARP'),
(54804, 45695, 'en', 'name', 'Round Rock Public Library'),
(54805, 45696, 'no_lang_code', 'name', 'WaterNet Trust'),
(54806, 45697, 'en', 'name', 'A. Alfred Taubman Health Care Center'),
(54807, 45698, 'en', 'name', 'Waukegan Public Library'),
(54808, 45699, 'en', 'name', 'Rubber Research Institute of Sri Lanka'),
(54809, 45700, 'en', 'name', 'Westfield Memorial Library'),
(54810, 45701, 'en', 'name', 'Rushford Public Library'),
(54811, 45702, 'en', 'name', 'Wildlife Conservation Society Democratic Republic of the Congo'),
(54812, 45703, 'de', 'name', 'Aachener Institut für Bauschadensforschung und Angewandte Bauphysik'),
(54813, 45704, 'no_lang_code', 'name', 'S. P. Korolev Rocket and Space Corporation Energia (Russia)'),
(54814, 45704, 'ru', 'name', 'Ракетно-ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŗŠ¾Ń€ŠæŠ¾Ń€Š°Ń†ŠøŃ Ā«Š­Š½ŠµŃ€Š³ŠøŃĀ» им. Š”. П. ŠšŠ¾Ń€Š¾Š»Ń‘Š²Š°'),
(54815, 45705, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Mines de Nancy'),
(54816, 45706, 'en', 'name', 'Yakub Kolas Central Scientific Library'),
(54817, 45707, 'en', 'name', 'Schlow Centre Region Library'),
(54818, 45708, 'en', 'name', 'Ventura County Library'),
(54819, 45709, 'no_lang_code', 'name', 'BioAxis DNA Research Centre (India)'),
(54820, 45710, 'en', 'name', 'Gastro Obeso Center'),
(54821, 45711, 'en', 'name', 'Advanced Center for Orthopedics'),
(54822, 45712, 'en', 'name', 'Sam Moyo African Institute for Agrarian Studies'),
(54823, 45713, 'en', 'name', 'Birmingham Research Park'),
(54824, 45714, 'en', 'name', 'Centre for Systems Philosophy'),
(54825, 45715, 'en', 'name', 'Center for Business Studies'),
(54826, 45716, 'en', 'name', 'Bon Secours DePaul Medical Center'),
(54827, 45717, 'de', 'name', 'Akademie für Gesundheitsberufe'),
(54828, 45718, 'en', 'name', 'Almishkat Centre for Research'),
(54829, 45718, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ų“ŁƒŲ§Ų© للبحث'),
(54830, 45719, 'de', 'name', 'Amedes MVZ Hamburg'),
(54831, 45720, 'en', 'name', 'American School of Kuwait'),
(54832, 45721, 'en', 'name', 'East Asia Research'),
(54833, 45722, 'de', 'name', 'Analytisches Laboratorium'),
(54834, 45723, 'en', 'name', 'Animals and Society Institute'),
(54835, 45724, 'de', 'name', 'StƤdtisches Klinikum Dessau'),
(54836, 45725, 'en', 'name', 'Institute of Philosophy'),
(54837, 45725, 'zh', 'name', '哲学研究所'),
(54838, 45726, 'de', 'name', 'Anton Proksch Institut'),
(54839, 45727, 'en', 'name', 'Bryn Mawr Skin & Cancer Institute'),
(54840, 45728, 'en', 'name', 'BTI Biotechnology Institute'),
(54841, 45729, 'en', 'name', 'Emerge'),
(54842, 45730, 'no_lang_code', 'name', 'Applied Academics (United States)'),
(54843, 45731, 'en', 'name', 'Emirates Diplomatic Academy'),
(54844, 45732, 'en', 'name', 'Institute of Law'),
(54845, 45732, 'zh', 'name', '中国法学网'),
(54846, 45733, 'no_lang_code', 'name', 'ProCure (United States)'),
(54847, 45734, 'en', 'name', 'Episcopal School of Dallas'),
(54848, 45735, 'en', 'name', 'Arab League Educational, Cultural and Scientific Organization'),
(54849, 45735, 'ar', 'name', 'المنظمة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ…'),
(54850, 45736, 'fr', 'name', 'CIRP'),
(54851, 45737, 'en', 'name', 'Cambodia Development Resource Institute'),
(54852, 45738, 'en', 'name', 'Asian Development Bank Institute'),
(54853, 45738, 'ja', 'name', 'ć‚¢ć‚øć‚¢é–‹ē™ŗéŠ€č”Œē ”ē©¶ę‰€'),
(54854, 45739, 'en', 'name', 'Department of Ocean Development'),
(54855, 45740, 'en', 'name', 'Climate Resilience Infrastructure Development Facility'),
(54856, 45741, 'en', 'name', 'Australian Institute of Business'),
(54857, 45742, 'no_lang_code', 'name', 'EVRAZ (Canada)'),
(54858, 45743, 'de', 'name', 'Institut für Stadt- und Regionalforschung'),
(54859, 45743, 'en', 'name', 'Institute for Urban and Regional Research'),
(54860, 45744, 'pt', 'name', 'Espregueira Mendes Clinic'),
(54861, 45745, 'ca', 'name', 'ClĆ­nica Girona'),
(54862, 45746, 'en', 'name', 'Foetal Alcohol Spectrum Disorders Clinic'),
(54863, 45747, 'en', 'name', 'Clinical Solutions'),
(54864, 45748, 'de', 'name', 'Forschungsinstitut für Logistik'),
(54865, 45749, 'fr', 'name', 'Clinique Saint Jean Languedoc'),
(54866, 45750, 'en', 'name', 'Institute of Applied Science and Intelligent Systems'),
(54867, 45750, 'it', 'name', 'Istituto di Scienze Applicate e Sistemi Intelligenti "Eduardo Caianiello"'),
(54868, 45751, 'en', 'name', 'Collective Leadership Institute'),
(54869, 45752, 'en', 'name', 'Professional Examination Service'),
(54870, 45753, 'fr', 'name', 'CollĆØge de Physique et de Philosophie'),
(54871, 45754, 'en', 'name', 'Berlin Graduate School for Transnational Studies'),
(54872, 45755, 'en', 'name', 'Center for Integrated Smart Sensors'),
(54873, 45756, 'de', 'name', 'Frankfurter Institut für Nachhaltige Entwicklung'),
(54874, 45757, 'en', 'name', 'Concordia Hospital'),
(54875, 45758, 'de', 'name', 'Deutsche PalliativStiftung'),
(54876, 45759, 'it', 'name', 'Istituzione delle Biblioteche di Roma'),
(54877, 45760, 'es', 'name', 'Fundación Miguel Lillo'),
(54878, 45761, 'de', 'name', 'Deutsche Schmerzgesellschaft'),
(54879, 45762, 'en', 'name', 'Center for Studies on Sustainable Luxury'),
(54880, 45762, 'es', 'name', 'Centro de Estudios para el Lujo Sustentable'),
(54881, 45763, 'de', 'name', 'Deutsches Beratungszentrum für Hygiene'),
(54882, 45764, 'de', 'name', 'Deutsches Kupferinstitut Berufsverband'),
(54883, 45765, 'en', 'name', 'Control Union Academy'),
(54884, 45766, 'en', 'name', 'Development Bank of Japan'),
(54885, 45766, 'ja', 'name', 'ę—„ęœ¬ę”æē­–ęŠ•č³‡éŠ€č”Œ'),
(54886, 45767, 'en', 'name', 'Central State Medical Academy'),
(54887, 45767, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(54888, 45768, 'en', 'name', 'Florida Craniofacial Institute'),
(54889, 45769, 'de', 'name', 'Forschungsgemeinschaft Werkzeuge und Werkstoffe'),
(54890, 45770, 'en', 'name', 'Cyprus Pedagogical Institute'),
(54891, 45770, 'el', 'name', 'Ī Ī‘Ī™Ī”Ī‘Ī“Ī©Ī“Ī™ĪšĪŸ Ī™ĪĪ£Ī¤Ī™Ī¤ĪŸĪ„Ī¤ĪŸ Κ΄ΠΔΟ΄'),
(54892, 45771, 'de', 'name', 'Franziskushospital Aachen'),
(54893, 45772, 'id', 'name', 'Rumah Sakit Dokter Soetomo'),
(54894, 45773, 'en', 'name', 'Show-Me Institute'),
(54895, 45774, 'en', 'name', 'Centre for Remote Health'),
(54896, 45775, 'en', 'name', 'De Borda Institute'),
(54897, 45776, 'fr', 'name', 'Fondation Travail-UniversitƩ'),
(54898, 45777, 'no_lang_code', 'name', 'GD Goenka University'),
(54899, 45778, 'no_lang_code', 'name', 'Gazprom (Germany)'),
(54900, 45779, 'de', 'name', 'Hochschule der Polizei Rheinland Pfalz'),
(54901, 45780, 'de', 'name', 'Malteser Zentrale'),
(54902, 45781, 'fr', 'name', 'Centre d''Ɖchographie de la Femme et du Fœtus'),
(54903, 45782, 'en', 'name', 'Immunotherapy Centre for Prevention of Repeated Miscarriages'),
(54904, 45783, 'en', 'name', 'Institute for Systems and Technologies of Information, Control and Communication'),
(54905, 45784, 'en', 'name', 'German Graduate School of Management and Law'),
(54906, 45785, 'en', 'name', 'Dr Youth Clinic'),
(54907, 45785, 'ko', 'name', '박사 ģ²­ģ†Œė…„ 큓리닉'),
(54908, 45786, 'en', 'name', 'Drylands Research'),
(54909, 45787, 'en', 'name', 'Institute of Public Enterprise'),
(54910, 45788, 'no_lang_code', 'name', 'Apex Tool Group (Taiwan)'),
(54911, 45789, 'de', 'name', 'Institut für angewandte Arbeitswissenschaft'),
(54912, 45790, 'de', 'name', 'Institut für Krankenhaushygiene & Infektionsprävention'),
(54913, 45791, 'en', 'name', 'Institute of Town Planners India'),
(54914, 45792, 'de', 'name', 'Klinik Friedenweiler'),
(54915, 45793, 'en', 'name', 'Global Institute for Quality Education'),
(54916, 45794, 'en', 'name', 'Global Science and Technology Forum'),
(54917, 45795, 'de', 'name', 'Institut für Medien- und Kommunikationspolitik'),
(54918, 45796, 'de', 'name', 'Institut für Nachhaltiges Management'),
(54919, 45797, 'de', 'name', 'Klinik Preetz'),
(54920, 45798, 'es', 'name', 'Servicio Geológico Minero Argentino'),
(54921, 45799, 'pt', 'name', 'Hospital do Servidor PĆŗblico Municipal'),
(54922, 45800, 'en', 'name', 'Green Infrastructure Center'),
(54923, 45801, 'de', 'name', 'Klinikum Dortmund'),
(54924, 45802, 'de', 'name', 'Klinikum Itzehoe'),
(54925, 45803, 'de', 'name', 'Institut für Salutogenese'),
(54926, 45804, 'de', 'name', 'Institut für Stadtforschung und Strukturpolitik'),
(54927, 45805, 'en', 'name', 'HPO Research Group'),
(54928, 45806, 'en', 'name', 'Guangzhou Vocational College of Science and Technology'),
(54929, 45806, 'zh', 'name', 'å¹æå·žē§‘ęŠ€čŒäøšęŠ€ęœÆå­¦é™¢'),
(54930, 45807, 'de', 'name', 'Regionalverbund kirchlicher KrankenhƤuser'),
(54931, 45808, 'en', 'name', 'Institute for Altitude Medicine'),
(54932, 45809, 'en', 'name', 'International Institute of Advanced Islamic Studies'),
(54933, 45810, 'en', 'name', 'Hans Bƶckler Foundation'),
(54934, 45810, 'de', 'name', 'Hans-Bƶckler-Stiftung'),
(54935, 45811, 'en', 'name', 'Integrative Medicine Institute'),
(54936, 45812, 'de', 'name', 'Agaplesion Bethesda Krankenhaus'),
(54937, 45813, 'de', 'name', 'Krankenhaus der Augustinerinnen'),
(54938, 45814, 'en', 'name', 'Institute for Resource Analysis and Policy'),
(54939, 45815, 'hr', 'name', 'Institut za DruŔtvena Istraživanja SveučiliŔta u Zagrebu'),
(54940, 45815, 'en', 'name', 'Institute for Social Research'),
(54941, 45816, 'en', 'name', 'International University of Cooperative Education'),
(54942, 45816, 'de', 'name', 'Internationale Berufsakademie'),
(54943, 45817, 'en', 'name', 'Central Institute for Research on Cattle'),
(54944, 45818, 'en', 'name', 'International Food Protection Training Institute'),
(54945, 45819, 'en', 'name', 'International Institute for Child Rights and Development'),
(54946, 45820, 'it', 'name', 'Consiglio Nazionale delle Ricerche - Istituto di Chimica dei Composti OrganoMetallici'),
(54947, 45820, 'en', 'name', 'Institute for the Chemistry of OrganoMetallic Compounds'),
(54948, 45821, 'en', 'name', 'Hemalata Hospitals and Research Centre'),
(54949, 45822, 'en', 'name', 'Waterloo Institute for Disaster Management'),
(54950, 45823, 'en', 'name', 'International School of Europe'),
(54951, 45824, 'en', 'name', 'Institute for Competitive Recruiting'),
(54952, 45825, 'de', 'name', 'Institut für Handelsforschung'),
(54953, 45826, 'en', 'name', 'IPAG Business School'),
(54954, 45826, 'fr', 'name', 'Institut de PrƩparation Ơ l''Administration et Ơ la Gestion'),
(54955, 45827, 'en', 'name', 'Institute of Ethnology and Folklore Studies with Ethnographic Museum'),
(54956, 45827, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ за ŠµŃ‚Š½Š¾Š»Š¾Š³ŠøŃ Šø фолклористика с Етнографски музей при Š‘ŠŠ'),
(54957, 45828, 'en', 'name', 'Institute of Sciences of Food Production'),
(54958, 45828, 'it', 'name', 'Istituto di Scienze delle Produzioni Alimentari'),
(54959, 45829, 'th', 'name', 'Institut de Recherche sur l''Asie du Sud-Est Contemporaine'),
(54960, 45829, 'en', 'name', 'Research Institute on Contemporary Southeast Asia'),
(54961, 45830, 'en', 'name', 'Menasseh Ben Israel Institute'),
(54962, 45831, 'de', 'name', 'Immanuel Krankenhaus'),
(54963, 45832, 'en', 'name', 'Institute for Electromagnetic Sensing of the Environment'),
(54964, 45832, 'it', 'name', 'Istituto per il Rilevamento Elettromagnetico dell''Ambiente'),
(54965, 45833, 'en', 'name', 'Institute of Informatics and Telematics'),
(54966, 45833, 'it', 'name', 'Istituto di Informatica e Telematica'),
(54967, 45834, 'de', 'name', 'Immunologie-Zentrum Zürich'),
(54968, 45835, 'es', 'name', 'Instituto Mexicano de TecnologĆ­a del Agua'),
(54969, 45836, 'en', 'name', 'London Studio Centre'),
(54970, 45837, 'en', 'name', 'Jersey Shore University Medical Center'),
(54971, 45838, 'en', 'name', 'Institute of Microbiology and Biotechnology'),
(54972, 45838, 'ro', 'name', 'Institutul de Microbiologie si Biotehnologie'),
(54973, 45839, 'de', 'name', 'Institut für Mikroökologie'),
(54974, 45840, 'it', 'name', 'Istituto di Istruzione Superiore I.T.C. Di Vittorio'),
(54975, 45841, 'en', 'name', 'Institute of National Economy'),
(54976, 45842, 'en', 'name', 'Jon Peddie Research'),
(54977, 45843, 'en', 'name', 'Indian Institute of Business Management Patna'),
(54978, 45844, 'en', 'name', 'Most Sacred Heart of Jesus Cardiology and Valvular Institute'),
(54979, 45845, 'en', 'name', 'Indian Institute of Management Shillong'),
(54980, 45845, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, शिलांग'),
(54981, 45846, 'no_lang_code', 'name', 'Oberon (Netherlands)'),
(54982, 45847, 'en', 'name', 'Queen Jadwiga Foundation'),
(54983, 45848, 'es', 'name', 'Instituto Oncologico Nacional'),
(54984, 45848, 'en', 'name', 'National Oncologic Institute'),
(54985, 45849, 'no_lang_code', 'name', 'Rafael Advanced Defense Systems (Israel)'),
(54986, 45849, 'he', 'name', 'רפאל - ×ž×¢×Ø×›×•×Ŗ לחימה ×ž×Ŗ×§×“×ž×•×Ŗ בע"מ'),
(54987, 45850, 'en', 'name', 'Ontario Forest Research Institute'),
(54988, 45851, 'de', 'name', 'Archiv der Jugendkulturen'),
(54989, 45852, 'en', 'name', 'Oral Facial Surgery Institution'),
(54990, 45853, 'no_lang_code', 'name', 'Muse Research and Development (United States)');
INSERT INTO `ror_settings` VALUES
(54991, 45854, 'no_lang_code', 'name', 'Orient Capital (China)'),
(54992, 45855, 'de', 'name', 'REFA Bundesverband'),
(54993, 45856, 'en', 'name', 'National Council of Applied Economic Research'),
(54994, 45857, 'es', 'name', 'Unidad de Cirugía Artroscópica'),
(54995, 45858, 'en', 'name', 'Sri Dharmasthala Manjunatheshwara Educational Society'),
(54996, 45858, 'kn', 'name', 'ą²Žą²øą³.ಔಿ.ą²Žą²‚ ą²¶ą³†ą³–ą²•ą³ą²·ą²£ą²æą²• ą²øą²‚ą²øą³ą²„ą³†'),
(54997, 45859, 'en', 'name', 'National Democratic Institute'),
(54998, 45860, 'en', 'name', 'National Environmental Agency'),
(54999, 45860, 'ka', 'name', 'įƒ’įƒįƒ įƒ”įƒ›įƒįƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒ”įƒįƒįƒ’įƒ”įƒœįƒ¢įƒ'),
(55000, 45861, 'en', 'name', 'National Institute of Urban Affairs'),
(55001, 45862, 'en', 'name', 'National Maritime Foundation'),
(55002, 45863, 'de', 'name', 'Ostalb-Klinikum Aalen'),
(55003, 45864, 'de', 'name', 'Klinik für Psychosomatik'),
(55004, 45865, 'en', 'name', 'Agricultural Research & Education Organization'),
(55005, 45866, 'en', 'name', 'National Institute of Integrative Medicine'),
(55006, 45867, 'en', 'name', 'Oxford Research Group'),
(55007, 45868, 'en', 'name', 'Shenandoah Astronomical Society'),
(55008, 45869, 'de', 'name', 'LVR-Klinik für Orthopädie Viersen'),
(55009, 45870, 'en', 'name', 'Pain and Headache Center'),
(55010, 45871, 'en', 'name', 'Shoreline Public Schools'),
(55011, 45872, 'en', 'name', 'Australia and New Zealand School of Government'),
(55012, 45873, 'en', 'name', 'National Power Training Institute'),
(55013, 45873, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤§ą„ą¤¤ ą¤Ŗą„ą¤°ą¤¶ą¤æą¤•ą„ą¤·ą¤£ ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(55014, 45874, 'no_lang_code', 'name', 'Xperi (Ireland)'),
(55015, 45875, 'en', 'name', 'Institute of Biosciences and Bioresources'),
(55016, 45875, 'it', 'name', 'Istituto di Bioscienze e Biorisorse'),
(55017, 45876, 'en', 'name', 'Russian Academy of Education'),
(55018, 45876, 'ru', 'name', 'России Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(55019, 45877, 'en', 'name', 'Parkinson''s Clinic of Eastern Toronto & Movement Disorders Centre'),
(55020, 45878, 'en', 'name', 'Pontifical Academy of Sciences'),
(55021, 45878, 'la', 'name', 'Pontificia Academia Scientiarum'),
(55022, 45878, 'it', 'name', 'Pontificia accademia delle scienze'),
(55023, 45879, 'en', 'name', 'Netherlands Defence Academy'),
(55024, 45880, 'en', 'name', 'Physiology Educational Research Consortium'),
(55025, 45881, 'en', 'name', 'New York Institute of Technology'),
(55026, 45882, 'no_lang_code', 'name', 'Samsung (Brazil)'),
(55027, 45883, 'en', 'name', 'New York University Florence'),
(55028, 45884, 'en', 'name', 'Newcastle University Singapore'),
(55029, 45885, 'en', 'name', 'Sarvodaya Fertility & IVF Centre'),
(55030, 45886, 'en', 'name', 'Theodor Fliedner Foundation'),
(55031, 45886, 'de', 'name', 'Theodor Fliedner Stiftung'),
(55032, 45887, 'en', 'name', 'Practical Robotics Institute Austria'),
(55033, 45888, 'de', 'name', 'Thüringer Landesanstalt für Landwirtschaft'),
(55034, 45889, 'sr', 'name', 'Sportska Akademija Beograd'),
(55035, 45890, 'en', 'name', 'Trust Management Institut'),
(55036, 45891, 'en', 'name', 'Sri Aurobindo Institute of Technology'),
(55037, 45892, 'en', 'name', 'Toorak College'),
(55038, 45893, 'en', 'name', 'Science Teachers Association of Nigeria'),
(55039, 45894, 'no_lang_code', 'name', 'Tobu Ryoiku Center'),
(55040, 45894, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę±éƒØē™‚č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(55041, 45895, 'fr', 'name', 'UniversitƩ Constantine 2'),
(55042, 45896, 'fr', 'name', 'UniversitƩ d''Oran 2'),
(55043, 45897, 'en', 'name', 'Foreign Service Institute'),
(55044, 45898, 'no_lang_code', 'name', 'Nikita Botanical Gardens'),
(55045, 45898, 'ru', 'name', 'ŠŠøŠŗŠøŃ‚ŃŠŗŠøŠ¹ ботанический саГ'),
(55046, 45899, 'no_lang_code', 'name', 'Dart NeuroScience (United States)'),
(55047, 45900, 'en', 'name', 'AlzeCure Foundation'),
(55048, 45901, 'en', 'name', 'Government of the Czech Republic'),
(55049, 45901, 'cs', 'name', 'VlÔda České republiky'),
(55050, 45902, 'en', 'name', 'Israel Brain Technologies'),
(55051, 45903, 'en', 'name', 'American Epilepsy Society'),
(55052, 45904, 'en', 'name', 'Pancreatic Cancer UK'),
(55053, 45905, 'no_lang_code', 'name', 'AmyCard (Russia)'),
(55054, 45906, 'no_lang_code', 'name', 'Prime Behavior Testing Laboratories (United States)'),
(55055, 45907, 'en', 'name', 'Ragnar Sƶderberg Foundation'),
(55056, 45908, 'en', 'name', 'Alzheimer''s Association of Israel'),
(55057, 45909, 'en', 'name', 'Research, Design and Technology Institute Cable'),
(55058, 45909, 'ru', 'name', 'Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ Šø технологический ŠŗŠ°Š±ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(55059, 45910, 'en', 'name', 'Mesothelioma Applied Research Foundation'),
(55060, 45911, 'no_lang_code', 'name', 'Corcept Therapeutics (United States)'),
(55061, 45912, 'en', 'name', 'State Office for Nuclear Safety'),
(55062, 45912, 'cs', 'name', 'StĆ”tnĆ­ Uřad pro Jadernou Bezpečnost'),
(55063, 45913, 'en', 'name', 'State Mining Administration'),
(55064, 45913, 'cs', 'name', 'Český bÔňský ĆŗÅ™ad'),
(55065, 45914, 'cs', 'name', 'Ministerstvo pro místní rozvoj České republiky'),
(55066, 45914, 'en', 'name', 'Ministry of Regional Development'),
(55067, 45915, 'cs', 'name', 'Ministerstvo zahraničnĆ­ch věcĆ­ ČeskĆ© republiky'),
(55068, 45915, 'en', 'name', 'Ministry of Foreign Affairs'),
(55069, 45916, 'cs', 'name', 'Ministerstvo spravedlnosti České republiky'),
(55070, 45916, 'en', 'name', 'Ministry of Justice'),
(55071, 45917, 'no_lang_code', 'name', 'Doka-Gene (Russia)'),
(55072, 45918, 'en', 'name', 'Moscow Center For Continuous Mathematical Education'),
(55073, 45918, 'ru', 'name', 'Московский центр непрерывного математического Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(55074, 45919, 'en', 'name', 'Institute of Physiology and Basic Medicine'),
(55075, 45919, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š°Ń Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾ физиологии Šø Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины'),
(55076, 45920, 'en', 'name', 'Institute of Biochemical Physics NM Emanuel'),
(55077, 45920, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимической физики Š ŠŠ'),
(55078, 45921, 'en', 'name', 'Centre for Arctic Gas Hydrate, Environment and Climate'),
(55079, 45921, 'no', 'name', 'Senter for arktisk gasshydrat, miljĆø og klima'),
(55080, 45922, 'en', 'name', 'Institute of Thermal Physics'),
(55081, 45922, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплофизики Š£Ń€Šž Š ŠŠ'),
(55082, 45923, 'no_lang_code', 'name', 'Vivreon Biosciences (United States)'),
(55083, 45924, 'en', 'name', 'Institute for Systems Analysis'),
(55084, 45924, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ФГУ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ системного анализа Š ŠŠ'),
(55085, 45925, 'no_lang_code', 'name', 'CoMentis (United States)'),
(55086, 45926, 'en', 'name', 'Supply Chain Competence Center (Germany)'),
(55087, 45927, 'en', 'name', 'Central Geological Survey, MOEA'),
(55088, 45927, 'zh', 'name', 'ē¶“ęæŸéƒØäø­å¤®åœ°č³ŖčŖæęŸ„ę‰€'),
(55089, 45928, 'en', 'name', 'Sydney Orthopaedic Research Institute'),
(55090, 45929, 'en', 'name', 'University of the West Indies'),
(55091, 45930, 'en', 'name', 'University Centre Saint-Ignatius Antwerp'),
(55092, 45931, 'fr', 'name', 'Centre Interdisciplinaire de DƩveloppement en Cartographie des OcƩans'),
(55093, 45931, 'en', 'name', 'The Interdisciplinary Centre for the Development of Ocean Mapping'),
(55094, 45932, 'en', 'name', 'Marine Advanced Technology Education'),
(55095, 45933, 'en', 'name', 'National Transportation Safety Board'),
(55096, 45934, 'en', 'name', 'National Mapping and Resource Information Authority'),
(55097, 45934, 'tl', 'name', 'Pambansang Pangasiwaan sa Pagmamapa at Impormasyon sa Yaman'),
(55098, 45935, 'en', 'name', 'Video Pool Media Arts Centre'),
(55099, 45936, 'en', 'name', 'Vietnam Academy of Social Sciences'),
(55100, 45936, 'vi', 'name', 'Viện HĆ n lĆ¢m Khoa hį»c xĆ£ hį»™i Việt Nam'),
(55101, 45937, 'no_lang_code', 'name', 'Vivekananda Parvatiya Krishi Anusandhan Sansthan'),
(55102, 45938, 'en', 'name', 'O.Ya. Usikov Institute for Radiophysics and Electronics'),
(55103, 45938, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГіофізики та електроніки ім. Šž. ŠÆ Усикова ŠŠŠ України'),
(55104, 45939, 'de', 'name', 'Werner-Wicker-Klinik'),
(55105, 45940, 'en', 'name', 'University Hospitals Seidman Cancer Center'),
(55106, 45941, 'en', 'name', 'Uttar Pradesh Council of sugarcane research'),
(55107, 45942, 'en', 'name', 'United Nations University Institute for Water, Environment, and Health'),
(55108, 45943, 'en', 'name', 'Wildlife Conservation Society India'),
(55109, 45944, 'de', 'name', 'Wirtschaftspsychologische Gesellschaft'),
(55110, 45945, 'no_lang_code', 'name', 'Yahoo (United Kingdom)'),
(55111, 45946, 'en', 'name', 'Worldwatch Institute'),
(55112, 45947, 'en', 'name', 'Leibniz-Centre General Linguistics'),
(55113, 45947, 'de', 'name', 'Leibniz-Zentrum Allgemeine Sprachwissenschaft'),
(55114, 45948, 'no_lang_code', 'name', 'Rostec (Russia)'),
(55115, 45948, 'ru', 'name', 'Ростех'),
(55116, 45949, 'de', 'name', 'Zentrum für Psychotherapie Wiesbaden'),
(55117, 45950, 'fr', 'name', 'Marine Royale Canadienne'),
(55118, 45950, 'en', 'name', 'Royal Canadian Navy'),
(55119, 45951, 'no_lang_code', 'name', 'Dana (Canada)'),
(55120, 45952, 'no_lang_code', 'name', 'Lite-On Technology Corporation (China)'),
(55121, 45952, 'zh', 'name', 'å»ŗå…“ē§‘ęŠ€å…¬åø'),
(55122, 45953, 'no_lang_code', 'name', 'Lonza (Germany)'),
(55123, 45954, 'no_lang_code', 'name', 'Light Prescriptions Innovators (United States)'),
(55124, 45955, 'no_lang_code', 'name', 'MacGregor (Germany)'),
(55125, 45956, 'no_lang_code', 'name', 'Mahle (United Kingdom)'),
(55126, 45957, 'no_lang_code', 'name', 'LuK (United Kingdom)'),
(55127, 45958, 'no_lang_code', 'name', 'Dover (United Kingdom)'),
(55128, 45959, 'no_lang_code', 'name', 'Maxim Integrated (Germany)'),
(55129, 45960, 'en', 'name', 'Center for Research on Political Economy'),
(55130, 45961, 'no_lang_code', 'name', '3v Geomatics (Canada)'),
(55131, 45962, 'en', 'name', 'Australian Human Rights Commission'),
(55132, 45963, 'no_lang_code', 'name', 'Carbon Engineering (Canada)'),
(55133, 45964, 'no_lang_code', 'name', 'Toshiba (Austria)'),
(55134, 45965, 'no_lang_code', 'name', 'Ƅlvdalens FastbrƤnsleteknik Aktiebolag (Sweden)'),
(55135, 45966, 'en', 'name', 'Australian Water Quality Centre'),
(55136, 45967, 'no_lang_code', 'name', 'CarbonCure Technologies (Canada)'),
(55137, 45968, 'no_lang_code', 'name', 'AV&R (Canada)'),
(55138, 45969, 'no_lang_code', 'name', 'FDC Composites (Canada)'),
(55139, 45970, 'no_lang_code', 'name', 'Award Rubber & Plastic Industries (Canada)'),
(55140, 45971, 'no_lang_code', 'name', 'Feiro Marine Life Center'),
(55141, 45972, 'no_lang_code', 'name', 'Acceleware (Canada)'),
(55142, 45973, 'no_lang_code', 'name', 'Accucaps (Canada)'),
(55143, 45974, 'no_lang_code', 'name', 'BAE Systems (Sweden)'),
(55144, 45975, 'no_lang_code', 'name', 'Firebird Biomolecular Sciences (United States)'),
(55145, 45976, 'no_lang_code', 'name', 'BAH Enterprises (Canada)'),
(55146, 45977, 'en', 'name', 'Baltic Development Forum'),
(55147, 45978, 'no_lang_code', 'name', 'Advanced Electrophoresis Solutions (Canada)'),
(55148, 45979, 'fr', 'name', 'CƩgep de Baie-Comeau'),
(55149, 45980, 'fr', 'name', 'DƩveloppement Economique Longueuil'),
(55150, 45981, 'no_lang_code', 'name', 'Central City Brewers and Distillers (Canada)'),
(55151, 45982, 'no_lang_code', 'name', 'Fontis (Czechia)'),
(55152, 45983, 'en', 'name', 'Central United States Earthquake Consortium'),
(55153, 45984, 'no_lang_code', 'name', 'Doug Bragg Enterprises (Canada)'),
(55154, 45985, 'no_lang_code', 'name', 'dPoint Technologies (Canada)'),
(55155, 45986, 'it', 'name', 'Agenzia Regionale per la Tecnologia e l''Innovazione'),
(55156, 45987, 'en', 'name', 'Office of the South Australian Chief Entrepreneur'),
(55157, 45988, 'en', 'name', 'Collaboration for Australian Weather and Climate Research'),
(55158, 45989, 'no_lang_code', 'name', 'Bio-Rad (Canada)'),
(55159, 45990, 'no_lang_code', 'name', 'Agri-Neo (Canada)'),
(55160, 45991, 'en', 'name', 'Mining Institute of the Ural Branch of the Russian Academy of Sciences'),
(55161, 45991, 'ru', 'name', 'Горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(55162, 45992, 'en', 'name', 'Forestry Tasmania'),
(55163, 45993, 'no_lang_code', 'name', 'Bishop Water Technologies (Canada)'),
(55164, 45994, 'no_lang_code', 'name', 'Durham Foods (United Kingdom)'),
(55165, 45995, 'no_lang_code', 'name', 'BitCan (Canada)'),
(55166, 45996, 'en', 'name', 'Agro Business Park'),
(55167, 45997, 'no_lang_code', 'name', 'Dŵr Cymru Welsh Water (United Kingdom)'),
(55168, 45998, 'no_lang_code', 'name', 'Forge Life Science (United States)'),
(55169, 45999, 'no_lang_code', 'name', 'Airex Industries (Canada)'),
(55170, 46000, 'no_lang_code', 'name', 'Dyverga Energy (Canada)'),
(55171, 46001, 'no_lang_code', 'name', 'Akita Innovation (United States)'),
(55172, 46002, 'no_lang_code', 'name', 'Bluewater Power Distribution (Canada)'),
(55173, 46003, 'no_lang_code', 'name', 'Frontier Agriculture (United Kingdom)'),
(55174, 46004, 'no_lang_code', 'name', 'Alacris (Germany)'),
(55175, 46005, 'no_lang_code', 'name', 'ChemCentre'),
(55176, 46006, 'en', 'name', 'Alaka`ina Foundation'),
(55177, 46007, 'no_lang_code', 'name', 'FTL Labs (United States)'),
(55178, 46008, 'no_lang_code', 'name', 'Alcoa (Australia)'),
(55179, 46009, 'no_lang_code', 'name', 'Alectos (Canada)'),
(55180, 46010, 'no_lang_code', 'name', 'Boise Cascade (Canada)'),
(55181, 46011, 'no_lang_code', 'name', 'Cimetrix Solutions (Canada)'),
(55182, 46012, 'no_lang_code', 'name', 'BorƩa (Sweden)'),
(55183, 46013, 'no_lang_code', 'name', 'Altranex (Canada)'),
(55184, 46014, 'no_lang_code', 'name', 'Boschman Technologies (Netherlands)'),
(55185, 46015, 'no_lang_code', 'name', 'EirGrid (Ireland)'),
(55186, 46016, 'en', 'name', 'Botanic Gardens and Parks Authority'),
(55187, 46017, 'no_lang_code', 'name', 'Alu Group (Spain)'),
(55188, 46018, 'no_lang_code', 'name', 'Ekodenge (Turkey)'),
(55189, 46019, 'en', 'name', 'Innovation Plasturgie Composites'),
(55190, 46019, 'fr', 'name', 'PƓle EuropƩen de Plasturgie'),
(55191, 46020, 'no_lang_code', 'name', 'Future Access (Canada)'),
(55192, 46021, 'no_lang_code', 'name', 'Brainport (Netherlands)'),
(55193, 46022, 'no_lang_code', 'name', 'Answare (Spain)'),
(55194, 46023, 'no_lang_code', 'name', 'Future Cities Catapult (United Kingdom)'),
(55195, 46024, 'fr', 'name', 'Brest''aim'),
(55196, 46025, 'en', 'name', 'Aquila Theatre'),
(55197, 46026, 'no_lang_code', 'name', 'Centrum Průmyslového Výzkumu Techlab (Czechia)'),
(55198, 46027, 'fr', 'name', 'Bretagne DƩveloppement Innovation'),
(55199, 46028, 'no_lang_code', 'name', 'ElringKlinger (Germany)'),
(55200, 46029, 'no_lang_code', 'name', 'Arbressence (Canada)'),
(55201, 46030, 'no_lang_code', 'name', 'Helbio (Greece)'),
(55202, 46031, 'no_lang_code', 'name', 'ARC Resources (Canada)'),
(55203, 46032, 'no_lang_code', 'name', 'Collingwood Environmental Planning (United Kingdom)'),
(55204, 46033, 'no_lang_code', 'name', 'Genetec (Canada)'),
(55205, 46034, 'sv', 'name', 'Arkitektur- och designcentrum'),
(55206, 46034, 'en', 'name', 'Swedish Centre for Architecture and Design'),
(55207, 46035, 'en', 'name', 'British Grassland Society'),
(55208, 46036, 'no_lang_code', 'name', 'GEO-HAZ Consulting (United States)'),
(55209, 46037, 'en', 'name', 'Art Gallery of New South Wales'),
(55210, 46038, 'es', 'name', 'Empresa Municipal de la Vivienda y Suelo de Madrid'),
(55211, 46039, 'no_lang_code', 'name', 'Geomechanica (Canada)'),
(55212, 46040, 'en', 'name', 'Artemis One Health Research Foundation'),
(55213, 46041, 'no_lang_code', 'name', 'Geotechnical Consulting Group (United Kingdom)'),
(55214, 46042, 'no_lang_code', 'name', 'Arup Group (Canada)'),
(55215, 46043, 'no_lang_code', 'name', 'Giatec Scientific (Canada)'),
(55216, 46044, 'no_lang_code', 'name', 'Bruker (Israel)'),
(55217, 46045, 'no_lang_code', 'name', 'ASM International (Belgium)'),
(55218, 46046, 'no_lang_code', 'name', 'EnergyAustralia (Australia)'),
(55219, 46047, 'no_lang_code', 'name', 'ASM Terni (Italy)'),
(55220, 46048, 'no_lang_code', 'name', 'Neurio Technology (Canada)'),
(55221, 46049, 'no_lang_code', 'name', 'Engenuics (Canada)'),
(55222, 46050, 'no_lang_code', 'name', 'C4i (Canada)'),
(55223, 46051, 'no_lang_code', 'name', 'Broadcom (Spain)'),
(55224, 46052, 'no_lang_code', 'name', 'Enviro Neptune (Canada)'),
(55225, 46053, 'no_lang_code', 'name', 'Eomap (Germany)'),
(55226, 46054, 'no_lang_code', 'name', 'Cook Medical (Australia)'),
(55227, 46055, 'no_lang_code', 'name', 'Gnowit (Canada)'),
(55228, 46056, 'no_lang_code', 'name', 'Ergon Energy (Australia)'),
(55229, 46057, 'en', 'name', 'Gold Coast City Council'),
(55230, 46058, 'no_lang_code', 'name', 'eSenso (Canada)'),
(55231, 46059, 'no_lang_code', 'name', 'Canada Bread (Canada)'),
(55232, 46060, 'no_lang_code', 'name', 'Esri (Canada)'),
(55233, 46061, 'no_lang_code', 'name', 'CorPower Ocean (Sweden)'),
(55234, 46062, 'no_lang_code', 'name', 'Covaris (United States)'),
(55235, 46063, 'no_lang_code', 'name', 'EYDAP (Greece)'),
(55236, 46063, 'el', 'name', 'Εταιρεία ĪŽĪ“ĻĪµĻ…ĻƒĪ·Ļ‚ και Ī‘Ļ€ĪæĻ‡Ī­Ļ„ĪµĻ…ĻƒĪ·Ļ‚ Ī ĻĻ‰Ļ„ĪµĻĪæĻ…ĻƒĪ±Ļ‚'),
(55237, 46064, 'fr', 'name', 'Association pour le DƩveloppement et l''Innovation en Chimie au QuƩbec'),
(55238, 46065, 'en', 'name', 'Canadian Sport Centre Pacific'),
(55239, 46066, 'en', 'name', 'Goulburn Broken Catchment Management Authority'),
(55240, 46067, 'no_lang_code', 'name', 'Ethos (United Kingdom)'),
(55241, 46068, 'en', 'name', 'Government of Prince Edward Island'),
(55242, 46069, 'no_lang_code', 'name', 'Produce Investments (United Kingdom)'),
(55243, 46070, 'en', 'name', 'Gov2u'),
(55244, 46071, 'no_lang_code', 'name', 'Eureka Lighting (Canada)'),
(55245, 46072, 'no_lang_code', 'name', 'Athletigen (Canada)'),
(55246, 46073, 'no_lang_code', 'name', 'GRi Simulations (Canada)'),
(55247, 46074, 'no_lang_code', 'name', 'Attodyne (Canada)'),
(55248, 46075, 'no_lang_code', 'name', 'Palette (Canada)'),
(55249, 46076, 'no_lang_code', 'name', 'NanoXplore (Canada)'),
(55250, 46077, 'no_lang_code', 'name', 'Attollo Engineering (United States)'),
(55251, 46078, 'en', 'name', 'European Network for Smoking and Tobacco Prevention'),
(55252, 46079, 'no_lang_code', 'name', 'Stryker (Canada)'),
(55253, 46080, 'en', 'name', 'Chartered Accountants Australia and New Zealand'),
(55254, 46081, 'en', 'name', 'Australia Zoo'),
(55255, 46082, 'no_lang_code', 'name', 'Fabmatics (Germany)'),
(55256, 46083, 'en', 'name', 'Water Supply and Sanitation Technology Platform'),
(55257, 46084, 'no_lang_code', 'name', 'H2Flow Equipment (Canada)'),
(55258, 46085, 'no_lang_code', 'name', 'Evernia (Czechia)'),
(55259, 46086, 'no_lang_code', 'name', 'Hartley McMaster (United Kingdom)'),
(55260, 46087, 'no_lang_code', 'name', 'Exciton Technologies (Canada)'),
(55261, 46088, 'en', 'name', 'Australian Centre for the Moving Image'),
(55262, 46089, 'en', 'name', 'Economic Development Agency of the Principality of Asturias'),
(55263, 46089, 'es', 'name', 'Instituto de Desarrollo Económico del Principado de Asturias'),
(55264, 46090, 'no_lang_code', 'name', 'AlphaSIP (Spain)'),
(55265, 46091, 'en', 'name', 'Mission Australia'),
(55266, 46092, 'no_lang_code', 'name', 'Mission Bio (United States)'),
(55267, 46093, 'no_lang_code', 'name', 'Lalema (Canada)'),
(55268, 46094, 'no_lang_code', 'name', 'Royal HaskoningDHV (United Kingdom)'),
(55269, 46095, 'no_lang_code', 'name', 'Lam Research (Austria)'),
(55270, 46096, 'no_lang_code', 'name', 'EXUS (United Kingdom)'),
(55271, 46097, 'no_lang_code', 'name', 'Mission Management Information Systems (Canada)'),
(55272, 46098, 'no_lang_code', 'name', 'Eyeball (Canada)'),
(55273, 46099, 'no_lang_code', 'name', 'Mondelēz International (Canada)'),
(55274, 46100, 'no_lang_code', 'name', 'Laserax (Canada)'),
(55275, 46101, 'no_lang_code', 'name', 'Monodraught (United Kingdom)'),
(55276, 46102, 'en', 'name', 'Ministry of the Interior and Administrative Reconstruction'),
(55277, 46102, 'el', 'name', '΄πουργείο Ī•ĻƒĻ‰Ļ„ĪµĻĪ¹ĪŗĻŽĪ½ και Διοικητικής Ī‘Ī½Ī±ĻƒĻ…Ī³ĪŗĻĻŒĻ„Ī·ĻƒĪ·Ļ‚'),
(55278, 46103, 'en', 'name', 'Max Planck Innovation'),
(55279, 46104, 'no_lang_code', 'name', 'Henriksson Salix (Sweden)'),
(55280, 46105, 'en', 'name', 'Moreland City Council'),
(55281, 46106, 'no_lang_code', 'name', 'Serres Sagami (Canada)'),
(55282, 46107, 'no_lang_code', 'name', 'Ontario Drive & Gear (Canada)'),
(55283, 46108, 'en', 'name', 'Homarus'),
(55284, 46109, 'no_lang_code', 'name', 'Instream Energy Systems (Canada)'),
(55285, 46110, 'no_lang_code', 'name', 'Motor Coach Industries (United States)'),
(55286, 46111, 'no_lang_code', 'name', 'Optina Diagnostics (Canada)'),
(55287, 46112, 'en', 'name', 'Institute of Slavic Studies'),
(55288, 46112, 'pl', 'name', 'Instytut Slawistyki PAN'),
(55289, 46113, 'no_lang_code', 'name', 'Moulton Bulb (United Kingdom)'),
(55290, 46114, 'no_lang_code', 'name', 'MunEDA (Germany)'),
(55291, 46115, 'no_lang_code', 'name', 'Integrated Nonclinical Development Solutions (United States)'),
(55292, 46116, 'no_lang_code', 'name', 'Semiconductor Manufacturing International (Italy)'),
(55293, 46117, 'no_lang_code', 'name', 'LightComp (Czechia)'),
(55294, 46118, 'no_lang_code', 'name', 'Hamilton Utilities Corporation'),
(55295, 46119, 'no_lang_code', 'name', 'Material Change (United KIngdom)'),
(55296, 46120, 'no_lang_code', 'name', 'Intrinsik (Canada)'),
(55297, 46121, 'en', 'name', 'Livestock & Meat Commission'),
(55298, 46122, 'no_lang_code', 'name', 'Introhive (Canada)'),
(55299, 46123, 'no_lang_code', 'name', 'Inversa Systems (Canada)'),
(55300, 46124, 'no_lang_code', 'name', 'Nanium (Portugal)'),
(55301, 46125, 'no_lang_code', 'name', 'Skeleton Technologies (Estonia)'),
(55302, 46126, 'no_lang_code', 'name', 'Ozymes (Canada)'),
(55303, 46127, 'no_lang_code', 'name', 'InvestorNet-Gate2Growth (Denmark)'),
(55304, 46128, 'fr', 'name', 'Banque Nationale du Canada'),
(55305, 46128, 'en', 'name', 'National Bank of Canada'),
(55306, 46129, 'en', 'name', 'London Hydro'),
(55307, 46130, 'en', 'name', 'Hydro Tasmania'),
(55308, 46131, 'no_lang_code', 'name', 'Luxmux Technology (Canada)'),
(55309, 46132, 'no_lang_code', 'name', 'Icy Waters (Canada)'),
(55310, 46133, 'en', 'name', 'Parks Victoria'),
(55311, 46134, 'en', 'name', 'National Foundation for Australian Women'),
(55312, 46135, 'no_lang_code', 'name', 'MAAX Bath (Canada)'),
(55313, 46136, 'no_lang_code', 'name', 'IDP IngenierĆ­a y Arquitectura Iberia (Spain)'),
(55314, 46137, 'no_lang_code', 'name', 'Ixion (Spain)'),
(55315, 46138, 'en', 'name', 'Main Roads Western Australia'),
(55316, 46139, 'no_lang_code', 'name', 'Imense (United Kingdom)'),
(55317, 46140, 'no_lang_code', 'name', 'Immune Biosolutions (Canada)'),
(55318, 46141, 'en', 'name', 'Jobs Australia'),
(55319, 46142, 'en', 'name', 'Imperial College of Toronto'),
(55320, 46143, 'no_lang_code', 'name', 'Mantex (Sweden)'),
(55321, 46144, 'en', 'name', 'National Society of Black Engineers'),
(55322, 46145, 'no_lang_code', 'name', 'Mantra Energy Alternatives (Canada)'),
(55323, 46146, 'no_lang_code', 'name', 'Mara Renewables (Canada)'),
(55324, 46147, 'no_lang_code', 'name', 'Marbes Consulting'),
(55325, 46148, 'no_lang_code', 'name', 'iNano Medical (Canada)'),
(55326, 46149, 'en', 'name', 'Marine Mammals of Maine'),
(55327, 46150, 'no_lang_code', 'name', 'Katan Kitchens (Canada)'),
(55328, 46151, 'en', 'name', 'Industrial Plankton'),
(55329, 46152, 'no_lang_code', 'name', 'Marinvent (Canada)'),
(55330, 46153, 'en', 'name', 'Nature Foundation SA'),
(55331, 46154, 'no_lang_code', 'name', 'Infineum (United Kingdom)'),
(55332, 46155, 'en', 'name', 'Maritsa Vegetable Crops Research Institute'),
(55333, 46156, 'no_lang_code', 'name', 'PlanEnergi (Denmark)'),
(55334, 46157, 'no_lang_code', 'name', 'Cooke Aquaculture (Canada)'),
(55335, 46158, 'no_lang_code', 'name', 'Nemaska Lithium (Canada)'),
(55336, 46159, 'no_lang_code', 'name', 'Pleiades Robotics (Canada)'),
(55337, 46160, 'en', 'name', 'Plunkett Foundation'),
(55338, 46161, 'no_lang_code', 'name', 'Matamec Explorations (Canada)'),
(55339, 46162, 'no_lang_code', 'name', 'Mavi Innovations (Canada)'),
(55340, 46163, 'no_lang_code', 'name', 'Kodak (Canada)'),
(55341, 46164, 'no_lang_code', 'name', 'Inland Technologies (Canada)'),
(55342, 46165, 'no_lang_code', 'name', 'Staples (Canada)'),
(55343, 46166, 'no_lang_code', 'name', 'PNO Consultants (Netherlands)'),
(55344, 46167, 'no_lang_code', 'name', 'Alchemy (Canada)'),
(55345, 46168, 'en', 'name', 'Innovation and Economic Development Trois RiviĆØres'),
(55346, 46169, 'no_lang_code', 'name', 'KanEnergi (Sweden)'),
(55347, 46170, 'no_lang_code', 'name', 'Polymer Source (Canada)'),
(55348, 46171, 'no_lang_code', 'name', 'Medella Health (Canada)'),
(55349, 46172, 'no_lang_code', 'name', 'Medosome Biotec (United States)'),
(55350, 46173, 'en', 'name', 'Freshwater Habitats Trust'),
(55351, 46174, 'cs', 'name', 'KrajskƔ HygienickƔ Stanice MoravskoslezskƩho Kraje'),
(55352, 46174, 'en', 'name', 'Regional Public Health Authority of Moravian - Silesian Region'),
(55353, 46175, 'en', 'name', 'International Centre for Sustainable Development of Energy, Water and Environment Systems'),
(55354, 46176, 'no_lang_code', 'name', 'Insplorion (Sweden)'),
(55355, 46177, 'sv', 'name', 'Kungliga Gustav Adolfs Akademien'),
(55356, 46177, 'en', 'name', 'Royal Gustavus Adolphus Academy'),
(55357, 46178, 'no_lang_code', 'name', 'Powerlink Queensland (Australia)'),
(55358, 46179, 'es', 'name', 'Institut d''Arquitectura AvanƧada de Catalunya'),
(55359, 46179, 'en', 'name', 'Institute for Advanced Architecture of Catalonia'),
(55360, 46180, 'en', 'name', 'Queensland Department of Education'),
(55361, 46181, 'no_lang_code', 'name', 'Meloche (Canada)'),
(55362, 46182, 'en', 'name', 'Mental Health Foundation'),
(55363, 46183, 'no_lang_code', 'name', 'Quaternion Aerospace (Canada)'),
(55364, 46184, 'no_lang_code', 'name', 'MetaOptima Technology (Canada)'),
(55365, 46185, 'no_lang_code', 'name', 'Nommon Solutions and Technologies (Spain)'),
(55366, 46186, 'no_lang_code', 'name', 'Precision for Medicine (United States)'),
(55367, 46187, 'no_lang_code', 'name', 'Precision Nanosystems (Canada)'),
(55368, 46188, 'en', 'name', 'Queensland Police Service'),
(55369, 46189, 'en', 'name', 'Queensland Rail'),
(55370, 46190, 'no_lang_code', 'name', 'Northern Powergrid (United Kingdom)'),
(55371, 46191, 'en', 'name', 'Queensland Curriculum and Assessment Authority'),
(55372, 46192, 'en', 'name', 'Methodology Centre for Environment Assessment'),
(55373, 46193, 'no_lang_code', 'name', 'Prodrive Technologies (Netherlands)'),
(55374, 46194, 'no_lang_code', 'name', 'Nova Measuring Instruments (Israel)'),
(55375, 46195, 'no_lang_code', 'name', 'Novateur Research Solutions (United States)'),
(55376, 46196, 'no_lang_code', 'name', 'Mimetas (Netherlands)'),
(55377, 46197, 'no_lang_code', 'name', 'MineSense Technologies (Canada)'),
(55378, 46198, 'no_lang_code', 'name', 'Raven Telemetry (Canada)'),
(55379, 46199, 'no_lang_code', 'name', 'Promethean Particles (United Kingdom)'),
(55380, 46200, 'en', 'name', 'Nueta Hidatsa Sahnish College'),
(55381, 46201, 'no_lang_code', 'name', 'Mirexus (Canada)'),
(55382, 46202, 'no_lang_code', 'name', 'Promoscience (Italy)'),
(55383, 46203, 'no_lang_code', 'name', 'Nufarm (Australia)'),
(55384, 46204, 'no_lang_code', 'name', 'Protec-Style (Canada)'),
(55385, 46205, 'no_lang_code', 'name', 'Recif Technologies (France)'),
(55386, 46206, 'no_lang_code', 'name', 'NutriAg (Canada)'),
(55387, 46207, 'no_lang_code', 'name', 'Sigma Energy Storage (Canada)'),
(55388, 46208, 'no_lang_code', 'name', 'Sigray (United States)'),
(55389, 46209, 'en', 'name', 'Stone Soup Productions'),
(55390, 46210, 'en', 'name', 'Whale Center of New England'),
(55391, 46211, 'no_lang_code', 'name', 'Recyc PHP (Canada)'),
(55392, 46212, 'no_lang_code', 'name', 'Red Hat (United Kingdom)'),
(55393, 46213, 'no_lang_code', 'name', 'Street Contxt (Canada)'),
(55394, 46214, 'en', 'name', 'Silsoe Spray Application Unit'),
(55395, 46215, 'no_lang_code', 'name', 'Reden (Netherlands)'),
(55396, 46216, 'no_lang_code', 'name', 'Redlen Technologies (Canada)'),
(55397, 46217, 'no_lang_code', 'name', 'Tronox (Australia)'),
(55398, 46218, 'no_lang_code', 'name', 'Singulus (Germany)'),
(55399, 46219, 'it', 'name', 'Studio Associato Gaia'),
(55400, 46220, 'en', 'name', 'Torino e-district'),
(55401, 46221, 'no_lang_code', 'name', 'SITAEL (Italy)'),
(55402, 46222, 'sv', 'name', 'Svenskt Gastekniskt Center'),
(55403, 46222, 'en', 'name', 'Swedish Gas Technology Centre'),
(55404, 46223, 'no_lang_code', 'name', 'Transtech Innovations (Canada)'),
(55405, 46224, 'en', 'name', 'Slovak Innovation and Energy Agency'),
(55406, 46224, 'sk', 'name', 'SlovenskĆ” inovačnĆ” a energetickĆ” agentĆŗra'),
(55407, 46225, 'no_lang_code', 'name', 'TravelAI (United Kingdom)'),
(55408, 46226, 'en', 'name', 'WaterNSW'),
(55409, 46227, 'no_lang_code', 'name', 'Trilogis (Italy)'),
(55410, 46228, 'en', 'name', 'Sydney Olympic Park Authority'),
(55411, 46229, 'no_lang_code', 'name', 'Smallmatek (Portugal)'),
(55412, 46230, 'no_lang_code', 'name', 'Symbio FCell (France)'),
(55413, 46231, 'no_lang_code', 'name', 'Smarter Alloys (Canada)'),
(55414, 46232, 'no_lang_code', 'name', 'Turbo Power Systems (United Kingdom)'),
(55415, 46233, 'en', 'name', 'Tweed Shire Council'),
(55416, 46234, 'no_lang_code', 'name', 'SYNERGX Technologies (Canada)'),
(55417, 46235, 'no_lang_code', 'name', 'Ubiwhere (Portugal)'),
(55418, 46236, 'no_lang_code', 'name', 'T2 Systems (Canada)'),
(55419, 46237, 'en', 'name', 'Smith Institute'),
(55420, 46238, 'no_lang_code', 'name', 'Umano Medical (Canada)'),
(55421, 46239, 'no_lang_code', 'name', 'S2e Technologies (Canada)'),
(55422, 46240, 'no_lang_code', 'name', 'TechnipFMC (Italy)'),
(55423, 46241, 'no_lang_code', 'name', 'TechnoRem (Canada)'),
(55424, 46242, 'no_lang_code', 'name', 'Teldio (Canada)'),
(55425, 46243, 'no_lang_code', 'name', 'TeleConsult Austria (Austria)'),
(55426, 46244, 'en', 'name', 'Soil Association'),
(55427, 46245, 'no_lang_code', 'name', 'Veolia (Australia)'),
(55428, 46246, 'no_lang_code', 'name', 'Temple Group (United Kingdom)'),
(55429, 46247, 'no_lang_code', 'name', 'Tenneco (Belgium)'),
(55430, 46248, 'no_lang_code', 'name', 'Solar Ship (Canada)'),
(55431, 46249, 'no_lang_code', 'name', 'Terramera (Canada)'),
(55432, 46250, 'no_lang_code', 'name', 'Soleno (Canada)'),
(55433, 46251, 'no_lang_code', 'name', 'TerraVerdae BioWorks (Canada)'),
(55434, 46252, 'no_lang_code', 'name', 'Solmax (Canada)'),
(55435, 46253, 'en', 'name', 'Seqwater'),
(55436, 46254, 'en', 'name', 'Salford City Council'),
(55437, 46255, 'en', 'name', 'Benevolent Society'),
(55438, 46256, 'no_lang_code', 'name', 'South East Water (Australia)'),
(55439, 46257, 'no_lang_code', 'name', 'Spinologics (Canada)'),
(55440, 46258, 'no_lang_code', 'name', 'Sumitomo Precision Products (Canada)'),
(55441, 46258, 'ja', 'name', 'ä½å‹ē²¾åÆ†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(55442, 46259, 'no_lang_code', 'name', 'Systems, Applications & Products in Data Processing (Australia)'),
(55443, 46260, 'no_lang_code', 'name', 'Ventix (Canada)'),
(55444, 46261, 'en', 'name', 'Water Security Agency'),
(55445, 46262, 'no_lang_code', 'name', 'Science City York (United Kingdom)'),
(55446, 46263, 'en', 'name', 'State Treasurer of South Carolina'),
(55447, 46264, 'no_lang_code', 'name', 'VesmĆ­r (Czechia)'),
(55448, 46265, 'no_lang_code', 'name', 'Stillwater (Canada)'),
(55449, 46266, 'en', 'name', 'Western Australia Police'),
(55450, 46267, 'no_lang_code', 'name', 'Seastar Chemicals (Canada)'),
(55451, 46268, 'no_lang_code', 'name', 'Vibra Finish (Canada)'),
(55452, 46269, 'en', 'name', 'Yakama Nation Tribal Council'),
(55453, 46270, 'en', 'name', 'Zeta Phi Beta Sorority'),
(55454, 46271, 'no_lang_code', 'name', 'ZF Screens (Netherlands)'),
(55455, 46272, 'pt', 'name', 'Secretaria de Estado de Segurança Pública'),
(55456, 46273, 'no_lang_code', 'name', 'ZincNyx Energy Solutions (Canada)'),
(55457, 46274, 'no_lang_code', 'name', 'Winterthur Gas & Diesel (Switzerland)'),
(55458, 46275, 'en', 'name', 'Victorian Curriculum and Assessment Authority'),
(55459, 46276, 'en', 'name', 'Saga Prefectural Regional Industry Support Center'),
(55460, 46276, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ä½č³€ēœŒåœ°åŸŸē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(55461, 46277, 'en', 'name', 'Victorian Institute of Teaching'),
(55462, 46278, 'no_lang_code', 'name', 'Woodmere Nursery (Canada)'),
(55463, 46279, 'en', 'name', 'Victorian Multicultural Commission'),
(55464, 46280, 'no_lang_code', 'name', 'Vivid Economics (United Kingdom)'),
(55465, 46281, 'no_lang_code', 'name', 'Vivienda y Suelo de Euskadi (Spain)'),
(55466, 46282, 'no_lang_code', 'name', 'ViVitro Labs (Canada)'),
(55467, 46283, 'en', 'name', 'Chiba Prefectural Museum of Art'),
(55468, 46284, 'en', 'name', 'Chiba Prefectural Police'),
(55469, 46284, 'ja', 'name', 'åƒč‘‰ēœŒč­¦åÆŸ'),
(55470, 46285, 'no_lang_code', 'name', 'Chiba Prefectural Sekiyado-jo Museum'),
(55471, 46286, 'en', 'name', 'Fujimoto Dental and Oral Surgery Clinic'),
(55472, 46286, 'ja', 'name', 'č—¤ęœ¬ę­Æē§‘å£č…”å¤–ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(55473, 46287, 'en', 'name', 'Otaki Castle Museum'),
(55474, 46288, 'no_lang_code', 'name', 'Chiba Hospital'),
(55475, 46289, 'en', 'name', 'Aichi Arts Center'),
(55476, 46289, 'ja', 'name', 'ę„›ēŸ„čŠøč”“ę–‡åŒ–ć‚»ćƒ³ć‚æ'),
(55477, 46290, 'en', 'name', 'Fukui Prefectural Museum of Cultural History'),
(55478, 46290, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(55479, 46291, 'en', 'name', 'Aichi Prefectural Police'),
(55480, 46291, 'ja', 'name', 'ę„›ēŸ„ēœŒč­¦åÆŸ'),
(55481, 46292, 'en', 'name', 'Aomori Prefectural Police'),
(55482, 46292, 'ja', 'name', 'é’ę£®ēœŒč­¦åÆŸ'),
(55483, 46293, 'en', 'name', 'Aichi Prefectural Toyohashi School for the Deaf'),
(55484, 46293, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹č±Šę©‹č¾å­¦ę ”'),
(55485, 46294, 'no_lang_code', 'name', 'Aoyama Gakuin Kindergarten'),
(55486, 46294, 'ja', 'name', 'é’å±±å­¦é™¢å¹¼ēØšåœ’'),
(55487, 46295, 'no_lang_code', 'name', 'Fukuoka Art Museum'),
(55488, 46295, 'ja', 'name', 'ē¦å²”åø‚ē¾Žč”“é¤Ø'),
(55489, 46296, 'no_lang_code', 'name', 'Asahide Gakuen'),
(55490, 46296, 'ja', 'name', 'ę—­å‡ŗå­¦åœ’'),
(55491, 46297, 'en', 'name', 'Fukuoka City Archaeological Center'),
(55492, 46297, 'ja', 'name', 'ē¦å²”åø‚åŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(55493, 46298, 'en', 'name', 'Kariya City Board of Education'),
(55494, 46298, 'ja', 'name', 'åˆˆč°·åø‚ę•™č‚²å§”å“”ä¼šå§”å“”åē°æ'),
(55495, 46299, 'en', 'name', 'Chiyoda-ku Board of Education'),
(55496, 46300, 'en', 'name', 'Fukuoka Prefectural Museum of Art'),
(55497, 46300, 'ja', 'name', 'ē¦å²”ēœŒē«‹ē¾Žč”“é¤Ø'),
(55498, 46301, 'en', 'name', 'Kurashiki Archaeological Museum'),
(55499, 46302, 'en', 'name', 'Orio Aishin Junior College'),
(55500, 46302, 'ja', 'name', 'ęŠ˜å°¾ę„›ēœŸēŸ­ęœŸå¤§å­¦'),
(55501, 46303, 'en', 'name', 'Choju Medical Institute'),
(55502, 46303, 'ja', 'name', 'é•·åÆæåŒ»å­¦ē ”ē©¶ę‰€'),
(55503, 46304, 'en', 'name', 'Fukuoka Prefecture Education Center'),
(55504, 46304, 'ja', 'name', 'ē¦å²”ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(55505, 46305, 'en', 'name', 'Hakodate City Museum'),
(55506, 46305, 'ja', 'name', 'åø‚ē«‹å‡½é¤Øåšē‰©é¤Ø'),
(55507, 46306, 'en', 'name', 'Association for the Advancement of Educational Research'),
(55508, 46307, 'en', 'name', 'Date City Institute of Funnkawann Culture'),
(55509, 46308, 'en', 'name', 'Fukushima Prefectural Education Center'),
(55510, 46308, 'ja', 'name', 'ē¦å³¶ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(55511, 46309, 'en', 'name', 'Fukushima Prefectural Board of Education'),
(55512, 46309, 'ja', 'name', 'ē¦å³¶ēœŒę•™č‚²å§”å“”ä¼šć®ćƒ›ćƒ¼'),
(55513, 46310, 'no_lang_code', 'name', 'Fukuyama City Zoo'),
(55514, 46310, 'ja', 'name', 'ē¦å±±åø‚ē«‹å‹•ē‰©åœ’'),
(55515, 46311, 'en', 'name', 'Breastopia Namba Hospital'),
(55516, 46312, 'en', 'name', 'Flower And Green Bank'),
(55517, 46312, 'ja', 'name', 'čŠ±ćØē·‘ć®éŠ€č”Œ'),
(55518, 46313, 'en', 'name', 'International Institute for the Study of Religions'),
(55519, 46313, 'ja', 'name', 'å›½éš›å®—ę•™ē ”ē©¶ę‰€č²”å›£'),
(55520, 46314, 'en', 'name', 'Hyogo Institute for Traumatic Stress'),
(55521, 46315, 'en', 'name', 'Gifu Prefectural Board of Education'),
(55522, 46315, 'ja', 'name', 'å²é˜œēœŒę•™č‚²å§”å“”ä¼š'),
(55523, 46316, 'en', 'name', 'Suzuka City Library'),
(55524, 46316, 'ja', 'name', 'éˆ“é¹æåø‚ē«‹å›³ę›øé¤Ø'),
(55525, 46317, 'en', 'name', 'Tokyo School for the Deaf'),
(55526, 46318, 'en', 'name', 'Tokyo Institute for Municipal Research'),
(55527, 46318, 'ja', 'name', 'åø‚å–¶ē ”ē©¶ę±äŗ¬å·„ę„­å¤§å­¦'),
(55528, 46319, 'en', 'name', 'Edogawa Girls'' Junior & Senior High School'),
(55529, 46319, 'ja', 'name', 'ę±Ÿęˆøå·å„³å­äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(55530, 46320, 'en', 'name', 'International Institute for Advanced Studies'),
(55531, 46320, 'ja', 'name', 'é«˜ē­‰ē ”ē©¶č²”å›£ć®å›½éš›ē ”ē©¶ę‰€'),
(55532, 46321, 'en', 'name', 'Chiba City Museum of Art'),
(55533, 46321, 'ja', 'name', 'åƒč‘‰åø‚ē¾Žč”“é¤Ø'),
(55534, 46322, 'en', 'name', 'Gifu International Academy of Horticulture'),
(55535, 46322, 'ja', 'name', 'å²é˜œēœŒē«‹å›½éš›åœ’čŠøć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(55536, 46323, 'en', 'name', 'International Institute for Digital Humanities'),
(55537, 46323, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ äŗŗę–‡ęƒ…å ±å­¦ē ”ē©¶ę‰€'),
(55538, 46324, 'en', 'name', 'Ehime Prefectural College of Agriculture'),
(55539, 46324, 'ja', 'name', 'ę„›åŖ›ēœŒē«‹č¾²ę„­å¤§å­¦ę ”'),
(55540, 46325, 'en', 'name', 'Research Institute for Policies on Pension and Aging'),
(55541, 46325, 'ja', 'name', 'å¹“é‡‘ćØé«˜é½¢åŒ–ć«é–¢ć™ć‚‹ę”æē­–ē ”ē©¶ę‰€'),
(55542, 46326, 'en', 'name', 'Institute of Applied Energy'),
(55543, 46326, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚Øćƒćƒ«ć‚®ćƒ¼ē·åˆå·„å­¦ē ”ē©¶ę‰€'),
(55544, 46327, 'no_lang_code', 'name', 'Tateyama Caldera Sabo Museum'),
(55545, 46327, 'ja', 'name', 'ē«‹å±±ć‚«ćƒ«ćƒ‡ćƒ©ē ‚é˜²åšē‰©é¤Ø'),
(55546, 46328, 'en', 'name', 'Institute for International Policy Studies'),
(55547, 46328, 'ja', 'name', 'č²”å›£äø–ē•Œå¹³å’Œē ”ē©¶ę‰€'),
(55548, 46329, 'en', 'name', 'Chiba Prefectural Government'),
(55549, 46329, 'ja', 'name', 'åƒå¶åŽæę”æåŗœ'),
(55550, 46330, 'en', 'name', 'Gifu City Museum of History'),
(55551, 46330, 'ja', 'name', 'å²é˜œåø‚ę­“å²åšē‰©é¤Ø'),
(55552, 46331, 'en', 'name', 'Hirosaki Central Hospital'),
(55553, 46331, 'ja', 'name', 'å¼˜å‰äø­å¤®ē—…é™¢'),
(55554, 46332, 'en', 'name', 'Hokkaido Science Education Center'),
(55555, 46332, 'ja', 'name', 'åŒ—ęµ·é“ē«‹ē†ē§‘ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(55556, 46333, 'en', 'name', 'Kitakyushu City Foundation For Promoting Arts And Culture'),
(55557, 46333, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ åŒ—ä¹å·žåø‚čŠøč”“ę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(55558, 46334, 'en', 'name', 'Ichikawa City Rehabilitation Hospital'),
(55559, 46334, 'ja', 'name', 'åø‚å·åø‚ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(55560, 46335, 'en', 'name', 'Hiroshima Children''s Museum'),
(55561, 46336, 'en', 'name', 'Japan Place Name Research Center'),
(55562, 46336, 'ja', 'name', 'ę—„ęœ¬åœ°åē ”ē©¶ę‰€'),
(55563, 46337, 'en', 'name', 'Ichikawa Junior and Senior High School'),
(55564, 46337, 'ja', 'name', 'åø‚å·äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(55565, 46338, 'en', 'name', 'Hiroshima City Museum of Contemporary Art'),
(55566, 46339, 'en', 'name', 'Ichinomiya Municipal City Hospital'),
(55567, 46339, 'ja', 'name', '一宮市立市民病院'),
(55568, 46340, 'no_lang_code', 'name', 'Ichinomiya City Museum'),
(55569, 46340, 'ja', 'name', 'äø€å®®åø‚åšē‰©é¤Ø'),
(55570, 46341, 'en', 'name', 'Japan Securities Research Institute'),
(55571, 46341, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ęœ¬čØ¼åˆøēµŒęøˆē ”ē©¶ę‰€'),
(55572, 46342, 'en', 'name', 'Japan Small Animal Medical Center'),
(55573, 46342, 'ja', 'name', 'ę—„ęœ¬å°å‹•ē‰©ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(55574, 46343, 'en', 'name', 'Japan University Accreditation Association'),
(55575, 46343, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å¤§å­¦åŸŗęŗ–å”ä¼š'),
(55576, 46344, 'en', 'name', 'Ishikawa Prefecture Archaeological Center'),
(55577, 46344, 'ja', 'name', 'ēŸ³å·ēœŒåŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æ'),
(55578, 46345, 'en', 'name', 'Iida City Museum of Art'),
(55579, 46345, 'ja', 'name', 'é£Æē”°åø‚ē¾Žč”“åšē‰©é¤Ø'),
(55580, 46346, 'en', 'name', 'National Museum of Emerging Science and Innovation'),
(55581, 46346, 'ja', 'name', 'ę—„ęœ¬ē§‘å­¦ęœŖę„é¤Ø'),
(55582, 46347, 'en', 'name', 'Nagano Prefectural Agricultural University'),
(55583, 46347, 'ja', 'name', 'č¾²ę„­å¤§å­¦ć«é•·é‡ŽēœŒ'),
(55584, 46348, 'en', 'name', 'Jiseikai Welfare Kyusyu Hospital'),
(55585, 46348, 'ja', 'name', 'ē¦ē„‰ 九州 病院'),
(55586, 46349, 'en', 'name', 'Jiyu Gakuen Girls School'),
(55587, 46349, 'ja', 'name', 'č‡Ŗē”±å­¦åœ’ę˜Žę—„é¤Ø'),
(55588, 46350, 'en', 'name', 'Hiroshima Prefectural Archives'),
(55589, 46350, 'ja', 'name', 'åŗƒå³¶ēœŒåŗēœŒē«‹ę–‡ę›øé¤Ø'),
(55590, 46351, 'en', 'name', 'Akita Museum of Art'),
(55591, 46351, 'ja', 'name', 'ē§‹ē”°ēœŒē«‹ē¾Žč”“é¤Ø'),
(55592, 46352, 'en', 'name', 'Museum of Modern Art'),
(55593, 46352, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(55594, 46353, 'en', 'name', 'Hiroshima Prefectural Rehabilitation Center'),
(55595, 46353, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹éšœå®³č€…ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(55596, 46354, 'no_lang_code', 'name', 'Mann+Hummel (United States)'),
(55597, 46355, 'no_lang_code', 'name', 'Roche (Israel)'),
(55598, 46355, 'he', 'name', 'רוש ×™×©×Ø××œ'),
(55599, 46356, 'en', 'name', 'British Geological Survey'),
(55600, 46357, 'en', 'name', 'Mexican Geological Survey'),
(55601, 46357, 'es', 'name', 'Servicio Geológico Mexicano'),
(55602, 46358, 'no_lang_code', 'name', 'Mƶlnlycke Health Care (United Kingdom)'),
(55603, 46359, 'no_lang_code', 'name', 'Meritor (United Kingdom)'),
(55604, 46360, 'no_lang_code', 'name', 'Medtronic (Israel)'),
(55605, 46361, 'no_lang_code', 'name', 'WestRock (Germany)'),
(55606, 46362, 'no_lang_code', 'name', 'TE Connectivity (Germany)'),
(55607, 46363, 'no_lang_code', 'name', 'Mersen (United States)'),
(55608, 46364, 'no_lang_code', 'name', 'Miba (Austria)'),
(55609, 46365, 'no_lang_code', 'name', 'Nokia (Australia)'),
(55610, 46366, 'no_lang_code', 'name', 'Microchip Technology (Germany)'),
(55611, 46367, 'no_lang_code', 'name', 'Mellanox Technologies (Israel)'),
(55612, 46367, 'he', 'name', 'מלאנוקה ×˜×›× ×•×œ×•×’×™×•×Ŗ בע"מ'),
(55613, 46368, 'no_lang_code', 'name', 'SunEdison (Singapore)'),
(55614, 46369, 'no_lang_code', 'name', 'Apple (Germany)'),
(55615, 46370, 'no_lang_code', 'name', 'Monsanto (Brazil)'),
(55616, 46371, 'no_lang_code', 'name', 'Mitsubishi Chemical (Germany)'),
(55617, 46372, 'no_lang_code', 'name', 'Moog (Germany)'),
(55618, 46373, 'no_lang_code', 'name', 'Modine (South Korea)'),
(55619, 46374, 'no_lang_code', 'name', 'Toyoda Gosei (Germany)'),
(55620, 46375, 'no_lang_code', 'name', 'OSI Systems (Germany)'),
(55621, 46376, 'no_lang_code', 'name', 'Coloplast (United States)'),
(55622, 46377, 'no_lang_code', 'name', 'Mitsubishi Heavy Industries (Germany)'),
(55623, 46378, 'no_lang_code', 'name', 'BlackBerry (United Kingdom)'),
(55624, 46379, 'no_lang_code', 'name', 'Mastercard (United Kingdom)'),
(55625, 46380, 'no_lang_code', 'name', 'Brunswick International Freight Terminal (United Kingdom)'),
(55626, 46381, 'no_lang_code', 'name', 'Knorr-Bremse (United States)'),
(55627, 46382, 'no_lang_code', 'name', 'Netzsch (Germany)'),
(55628, 46383, 'no_lang_code', 'name', 'Petroleum Geo-Services (United Kingdom)'),
(55629, 46384, 'no_lang_code', 'name', 'Nexans (United Kingdom)'),
(55630, 46385, 'no_lang_code', 'name', 'Ingredion (United Kingdom)'),
(55631, 46386, 'no_lang_code', 'name', 'Jain Irrigation Systems (Israel)'),
(55632, 46387, 'no_lang_code', 'name', 'Oerlikon (Germany)'),
(55633, 46388, 'no_lang_code', 'name', 'Lenovo (Japan)'),
(55634, 46389, 'no_lang_code', 'name', 'Nidec (United Kingdom)'),
(55635, 46390, 'no_lang_code', 'name', 'NEC (Germany)'),
(55636, 46390, 'ja', 'name', 'ę—„ęœ¬é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(55637, 46391, 'no_lang_code', 'name', 'Salzgitter Group (Singapore)'),
(55638, 46392, 'no_lang_code', 'name', 'Canon (United Kingdom)'),
(55639, 46393, 'no_lang_code', 'name', 'Nuance Communications (Austria)'),
(55640, 46394, 'no_lang_code', 'name', 'Westinghouse Electric (Japan)'),
(55641, 46395, 'no_lang_code', 'name', 'Takeda (Germany)'),
(55642, 46396, 'no_lang_code', 'name', 'IHI Corporation (United States)'),
(55643, 46397, 'no_lang_code', 'name', 'Northrop Grumman (Germany)'),
(55644, 46398, 'no_lang_code', 'name', 'Opera Software (Ireland)'),
(55645, 46399, 'no_lang_code', 'name', 'Olympus (Germany)'),
(55646, 46400, 'no_lang_code', 'name', 'Sulzer (United Kingdom)'),
(55647, 46401, 'no_lang_code', 'name', 'OmniVision Technologies (China)'),
(55648, 46402, 'no_lang_code', 'name', 'New Technology (Israel)'),
(55649, 46403, 'no_lang_code', 'name', 'Oracle (Israel)'),
(55650, 46404, 'no_lang_code', 'name', 'Avid (Israel)'),
(55651, 46405, 'no_lang_code', 'name', 'Arris (United Kingdom)'),
(55652, 46406, 'no_lang_code', 'name', 'Wikov (United Kingdom)'),
(55653, 46407, 'no_lang_code', 'name', 'Naval Group (Ireland)'),
(55654, 46408, 'no_lang_code', 'name', 'Ottobock (United States)'),
(55655, 46409, 'no_lang_code', 'name', 'Parker Hannifin (Germany)'),
(55656, 46410, 'no_lang_code', 'name', 'Orica (Singapore)'),
(55657, 46411, 'no_lang_code', 'name', 'Paion (Germany)'),
(55658, 46412, 'no_lang_code', 'name', 'Ormazabal (Germany)'),
(55659, 46413, 'no_lang_code', 'name', 'Valeo (Germany)'),
(55660, 46414, 'no_lang_code', 'name', 'Weatherford (United Kingdom)'),
(55661, 46415, 'no_lang_code', 'name', 'Curtiss-Wright (United Kingdom)'),
(55662, 46416, 'no_lang_code', 'name', 'Nippon Sheet Glass (United States)'),
(55663, 46417, 'no_lang_code', 'name', 'eBay (Ireland)'),
(55664, 46418, 'no_lang_code', 'name', 'Pfeiffer Vacuum (Germany)'),
(55665, 46419, 'no_lang_code', 'name', 'Perkinelmer (Singapore)'),
(55666, 46420, 'no_lang_code', 'name', 'Pitney Bowes (Germany)'),
(55667, 46421, 'no_lang_code', 'name', 'Pitney Bowes (United Kingdom)'),
(55668, 46422, 'no_lang_code', 'name', 'Apple (Israel)'),
(55669, 46423, 'no_lang_code', 'name', 'Perrigo (Israel)'),
(55670, 46424, 'no_lang_code', 'name', 'Plasan (Israel)'),
(55671, 46424, 'he', 'name', 'פלהן'),
(55672, 46425, 'no_lang_code', 'name', 'Morgan Advanced Materials (Germany)'),
(55673, 46426, 'no_lang_code', 'name', 'Phoenix Contact (United States)'),
(55674, 46427, 'no_lang_code', 'name', 'Oerlikon (United States)'),
(55675, 46428, 'no_lang_code', 'name', 'BMT Group (United States)'),
(55676, 46429, 'no_lang_code', 'name', 'Nifco (China)'),
(55677, 46430, 'no_lang_code', 'name', 'BlueGreen Geophysics (United States)'),
(55678, 46431, 'no_lang_code', 'name', 'Ultra Electronics 3 Phoenix (United States)'),
(55679, 46432, 'en', 'name', 'University-National Oceanographic Laboratory System'),
(55680, 46433, 'en', 'name', 'United States Coast Guard'),
(55681, 46434, 'no_lang_code', 'name', 'Eaton (Taiwan)'),
(55682, 46435, 'no_lang_code', 'name', 'Postnova Analytics (Germany)'),
(55683, 46436, 'no_lang_code', 'name', 'Chelyabinskiy Gosudarstvennyy Institut Lazernoy Khirurgii'),
(55684, 46436, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лазерной Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(55685, 46437, 'en', 'name', 'Great Lakes Aquarium'),
(55686, 46438, 'no_lang_code', 'name', 'Microsemi (Israel)'),
(55687, 46439, 'no_lang_code', 'name', 'Maxim Integrated (United Kingdom)'),
(55688, 46440, 'no_lang_code', 'name', 'MACOM (United Kingdom)'),
(55689, 46441, 'no_lang_code', 'name', 'Qisda (China)'),
(55690, 46442, 'no_lang_code', 'name', 'PROTO Manufacturing (Canada)'),
(55691, 46443, 'no_lang_code', 'name', 'QRxPharma (Australia)'),
(55692, 46444, 'no_lang_code', 'name', 'Kirchhoff (Germany)'),
(55693, 46445, 'no_lang_code', 'name', 'Prysmian Group (Germany)'),
(55694, 46446, 'no_lang_code', 'name', 'Prysmian Group (United States)'),
(55695, 46447, 'no_lang_code', 'name', 'ResMed (Germany)'),
(55696, 46448, 'no_lang_code', 'name', 'Seco Warwick (United States)'),
(55697, 46449, 'en', 'name', 'Harbor Branch Oceanographic Institute'),
(55698, 46450, 'en', 'name', 'Department for Exiting the European Union'),
(55699, 46451, 'en', 'name', 'Qingdao Institute of Marine Geology'),
(55700, 46451, 'zh', 'name', 'äø­å›½åœ°č“Øč°ƒęŸ„å±€ é’å²›ęµ·ę“‹åœ°č“Øē ”ē©¶ę‰€'),
(55701, 46452, 'no_lang_code', 'name', 'Thomson Reuters (United Kingdom)'),
(55702, 46453, 'no_lang_code', 'name', 'Mallinckrodt (Japan)'),
(55703, 46454, 'no_lang_code', 'name', 'Reliance Industries (United States)'),
(55704, 46455, 'no_lang_code', 'name', 'Qiagen (United Kingdom)'),
(55705, 46456, 'no_lang_code', 'name', 'Ball (United Kingdom)'),
(55706, 46457, 'no_lang_code', 'name', 'Excelitas Technologies (Germany)'),
(55707, 46458, 'no_lang_code', 'name', 'Rieter (Germany)'),
(55708, 46459, 'no_lang_code', 'name', 'Rockwell Automation (Singapore)'),
(55709, 46460, 'no_lang_code', 'name', 'Rockwell Automation (Germany)'),
(55710, 46461, 'no_lang_code', 'name', 'Lhoist (Germany)'),
(55711, 46462, 'no_lang_code', 'name', 'Rieter (Switzerland)'),
(55712, 46463, 'no_lang_code', 'name', 'Renesas Electronics (United Kingdom)'),
(55713, 46463, 'ja', 'name', 'ćƒ«ćƒć‚µć‚¹ ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(55714, 46464, 'no_lang_code', 'name', 'Saint-Gobain (Germany)'),
(55715, 46465, 'no_lang_code', 'name', 'Solvay (China)'),
(55716, 46466, 'no_lang_code', 'name', 'Renishaw (Ireland)'),
(55717, 46467, 'no_lang_code', 'name', 'Dow Chemical (South Korea)'),
(55718, 46468, 'no_lang_code', 'name', 'Rohm (Germany)'),
(55719, 46469, 'no_lang_code', 'name', 'Gemalto (Israel)'),
(55720, 46470, 'no_lang_code', 'name', 'Sandvik (Austria)'),
(55721, 46471, 'no_lang_code', 'name', 'Sandvik (South Africa)'),
(55722, 46472, 'no_lang_code', 'name', 'Lockheed Martin (Australia)'),
(55723, 46473, 'no_lang_code', 'name', 'RUAG (Germany)'),
(55724, 46474, 'no_lang_code', 'name', 'Robert Bosch (India)'),
(55725, 46475, 'no_lang_code', 'name', 'Robert Bosch (Brazil)'),
(55726, 46476, 'no_lang_code', 'name', 'Sandvik (Switzerland)'),
(55727, 46477, 'no_lang_code', 'name', 'Saint-Gobain (Canada)'),
(55728, 46478, 'no_lang_code', 'name', 'Saint-Gobain (United Kingdom)'),
(55729, 46479, 'no_lang_code', 'name', 'Teleflex (Germany)'),
(55730, 46480, 'no_lang_code', 'name', 'Eni (United Kingdom)'),
(55731, 46481, 'no_lang_code', 'name', 'Sartorius (United States)'),
(55732, 46482, 'no_lang_code', 'name', 'MinebeaMitsumi (Germany)'),
(55733, 46483, 'no_lang_code', 'name', 'Sasol (Germany)'),
(55734, 46484, 'no_lang_code', 'name', 'Essilor (Germany)'),
(55735, 46485, 'no_lang_code', 'name', 'Saab (Switzerland)');
INSERT INTO `ror_settings` VALUES
(55736, 46486, 'no_lang_code', 'name', 'Saurer (Germany)'),
(55737, 46487, 'no_lang_code', 'name', 'Schauenburg (Germany)'),
(55738, 46488, 'no_lang_code', 'name', 'Samsung (Israel)'),
(55739, 46489, 'no_lang_code', 'name', 'Schenck Process (Germany)'),
(55740, 46490, 'no_lang_code', 'name', 'Western Digital (Israel)'),
(55741, 46491, 'no_lang_code', 'name', 'Western Digital (China)'),
(55742, 46492, 'no_lang_code', 'name', 'Assa Abloy (United Kingdom)'),
(55743, 46493, 'no_lang_code', 'name', 'Svenska Cellulosa (United Kingdom)'),
(55744, 46493, 'sv', 'name', 'Svenska Cellulosa Aktiebolaget'),
(55745, 46494, 'no_lang_code', 'name', 'Shimadzu (United Kingdom)'),
(55746, 46495, 'no_lang_code', 'name', 'Shimano (Singapore)'),
(55747, 46496, 'no_lang_code', 'name', 'Johnson Controls (United Kingdom)'),
(55748, 46497, 'no_lang_code', 'name', 'Kimberly-Clark (Canada)'),
(55749, 46498, 'no_lang_code', 'name', 'Zodiac Aerospace (Germany)'),
(55750, 46499, 'no_lang_code', 'name', 'Balfour Beatty (Germany)'),
(55751, 46500, 'no_lang_code', 'name', 'Joyson Safety Systems (Germany)'),
(55752, 46501, 'no_lang_code', 'name', 'Danaher (China)'),
(55753, 46502, 'no_lang_code', 'name', 'Semikron (Germany)'),
(55754, 46503, 'no_lang_code', 'name', 'Megger (Germany)'),
(55755, 46504, 'no_lang_code', 'name', 'Siemens (Israel)'),
(55756, 46505, 'no_lang_code', 'name', 'Sensient Technologies (Germany)'),
(55757, 46506, 'no_lang_code', 'name', 'Danone (United Kingdom)'),
(55758, 46507, 'no_lang_code', 'name', 'Scientific Games (Austria)'),
(55759, 46508, 'no_lang_code', 'name', 'First Sensor (Germany)'),
(55760, 46509, 'no_lang_code', 'name', 'Siemens (Australia)'),
(55761, 46510, 'no_lang_code', 'name', 'Siemens (Brazil)'),
(55762, 46511, 'no_lang_code', 'name', 'Sequans Communications (United Kingdom)'),
(55763, 46512, 'no_lang_code', 'name', 'Eastman Chemical Company (Germany)'),
(55764, 46513, 'no_lang_code', 'name', 'GlaxoSmithKline (Ireland)'),
(55765, 46514, 'no_lang_code', 'name', 'Somfy (Germany)'),
(55766, 46515, 'no_lang_code', 'name', 'Meyer Burger Technology (Germany)'),
(55767, 46516, 'no_lang_code', 'name', 'Sony (China)'),
(55768, 46516, 'zh', 'name', '瓢尼'),
(55769, 46517, 'no_lang_code', 'name', 'Sony (Spain)'),
(55770, 46518, 'no_lang_code', 'name', 'Sony (Taiwan)'),
(55771, 46519, 'no_lang_code', 'name', 'Skyworks Solutions (Japan)'),
(55772, 46520, 'no_lang_code', 'name', 'EchoStar (India)'),
(55773, 46521, 'no_lang_code', 'name', 'Sumitomo Precision Products (Japan)'),
(55774, 46521, 'ja', 'name', 'ä½å‹ē²¾åÆ†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(55775, 46522, 'no_lang_code', 'name', 'Silence Therapeutics (Germany)'),
(55776, 46523, 'no_lang_code', 'name', '3D Systems (Israel)'),
(55777, 46524, 'no_lang_code', 'name', 'STMicroelectronics (China)'),
(55778, 46525, 'no_lang_code', 'name', 'Cypress Semiconductor Corporation (Israel)'),
(55779, 46526, 'no_lang_code', 'name', 'STMicroelectronics (Malta)'),
(55780, 46527, 'no_lang_code', 'name', 'STMicroelectronics (Germany)'),
(55781, 46528, 'no_lang_code', 'name', 'Cypress Semiconductor Corporation (Japan)'),
(55782, 46529, 'no_lang_code', 'name', 'STMicroelectronics (Singapore)'),
(55783, 46530, 'no_lang_code', 'name', 'STMicroelectronics (India)'),
(55784, 46531, 'no_lang_code', 'name', 'Stanley Black & Decker (Switzerland)'),
(55785, 46532, 'no_lang_code', 'name', 'Scientific Games (Australia)'),
(55786, 46533, 'no_lang_code', 'name', 'Sphaera Pharma (Singapore)'),
(55787, 46534, 'no_lang_code', 'name', 'Karl Storz (Switzerland)'),
(55788, 46535, 'no_lang_code', 'name', 'Stratasys (Israel)'),
(55789, 46536, 'no_lang_code', 'name', 'Philips (Israel)'),
(55790, 46537, 'no_lang_code', 'name', 'Covestro (Japan)'),
(55791, 46538, 'no_lang_code', 'name', '525 Solutions (United States)'),
(55792, 46539, 'no_lang_code', 'name', 'Tau Science (United States)'),
(55793, 46540, 'no_lang_code', 'name', 'Temper (United States)'),
(55794, 46541, 'no_lang_code', 'name', 'FPoliSolutions (United States)'),
(55795, 46542, 'no_lang_code', 'name', 'Nhu Energy (United States)'),
(55796, 46543, 'no_lang_code', 'name', 'Adroit Materials (United States)'),
(55797, 46544, 'no_lang_code', 'name', 'Free Form Fibers (United States)'),
(55798, 46545, 'no_lang_code', 'name', 'Freestone Environmental Services (United States)'),
(55799, 46546, 'no_lang_code', 'name', 'TetraVue (United States)'),
(55800, 46547, 'no_lang_code', 'name', 'Advanced Research Corporation (United States)'),
(55801, 46548, 'no_lang_code', 'name', 'OLEDWorks (United States)'),
(55802, 46549, 'no_lang_code', 'name', 'Afingen (United States)'),
(55803, 46550, 'no_lang_code', 'name', 'Samraksh (United States)'),
(55804, 46551, 'no_lang_code', 'name', 'General Engineering and Research (United States)'),
(55805, 46552, 'no_lang_code', 'name', 'Air Squared (United States)'),
(55806, 46553, 'no_lang_code', 'name', 'Opti O2 (United States)'),
(55807, 46554, 'no_lang_code', 'name', 'Akonia Holographics (United States)'),
(55808, 46555, 'no_lang_code', 'name', 'Transcend Engineering (United States)'),
(55809, 46556, 'no_lang_code', 'name', 'OptiFuel Technology (United States)'),
(55810, 46557, 'no_lang_code', 'name', 'Alphacore (United States)'),
(55811, 46558, 'no_lang_code', 'name', 'American Ecotech (United States)'),
(55812, 46559, 'no_lang_code', 'name', 'Global Power Technologies Group (United States)'),
(55813, 46560, 'no_lang_code', 'name', 'Analytical Instrument Systems (United States)'),
(55814, 46561, 'no_lang_code', 'name', 'Transient Plasma Systems (United States)'),
(55815, 46562, 'no_lang_code', 'name', 'Gnosys Systems (United States)'),
(55816, 46563, 'no_lang_code', 'name', 'Oregon Physics (United States)'),
(55817, 46564, 'no_lang_code', 'name', 'Apeak (United States)'),
(55818, 46565, 'no_lang_code', 'name', 'GroundMetrics (United States)'),
(55819, 46566, 'no_lang_code', 'name', 'Pacific Microchip (United States)'),
(55820, 46567, 'no_lang_code', 'name', 'Packet Digital (United States)'),
(55821, 46568, 'no_lang_code', 'name', 'Trimeric (United States)'),
(55822, 46569, 'no_lang_code', 'name', 'Paisano Labs (United States)'),
(55823, 46570, 'no_lang_code', 'name', 'APS Technology (United States)'),
(55824, 46571, 'no_lang_code', 'name', 'H3D (United States)'),
(55825, 46572, 'no_lang_code', 'name', 'Partow Technologies (United States)'),
(55826, 46573, 'no_lang_code', 'name', 'Tucker Innovations (United States)'),
(55827, 46574, 'no_lang_code', 'name', 'Perma Works (United States)'),
(55828, 46575, 'no_lang_code', 'name', 'Aquaneers (United States)'),
(55829, 46576, 'no_lang_code', 'name', 'Handix Scientific (United States)'),
(55830, 46577, 'no_lang_code', 'name', 'Tungsten Heavy Powder & Parts (United States)'),
(55831, 46578, 'no_lang_code', 'name', 'Forge Nano (United States)'),
(55832, 46579, 'no_lang_code', 'name', 'Integrated Dynamic Electron Solutions (United States)'),
(55833, 46580, 'no_lang_code', 'name', 'Power Info (United States)'),
(55834, 46581, 'no_lang_code', 'name', 'Helios-NRG (United States)'),
(55835, 46582, 'no_lang_code', 'name', 'Integrated Sensors (United States)'),
(55836, 46583, 'no_lang_code', 'name', 'Ayar Labs (United States)'),
(55837, 46584, 'no_lang_code', 'name', 'Prescient Weather (United states)'),
(55838, 46585, 'no_lang_code', 'name', 'Prime Solutions Group (United States)'),
(55839, 46586, 'no_lang_code', 'name', 'Bailey Tool & Manufacturing (United States)'),
(55840, 46587, 'no_lang_code', 'name', 'PrimeNano (united States)'),
(55841, 46588, 'no_lang_code', 'name', 'Introspective Systems (United States)'),
(55842, 46589, 'no_lang_code', 'name', 'Princeton Power Systems (United states)'),
(55843, 46590, 'no_lang_code', 'name', 'ION Engineering (United States)'),
(55844, 46591, 'no_lang_code', 'name', 'Hewlett Packard Enterprise (United States)'),
(55845, 46592, 'no_lang_code', 'name', 'Boulder Environmental Sciences and Technology (United States)'),
(55846, 46593, 'no_lang_code', 'name', 'k-Space Associates (United States)'),
(55847, 46594, 'no_lang_code', 'name', 'Hyperv Technologies (United States)'),
(55848, 46595, 'no_lang_code', 'name', 'Broala (United States)'),
(55849, 46596, 'no_lang_code', 'name', 'Industrial Microbes (United States)'),
(55850, 46597, 'no_lang_code', 'name', 'Keystone Tower Systems (United States)'),
(55851, 46598, 'en', 'name', 'Provision Healthcare'),
(55852, 46599, 'no_lang_code', 'name', 'InnoCit (United States)'),
(55853, 46600, 'no_lang_code', 'name', 'Quantum Technology Sciences (United States)'),
(55854, 46601, 'no_lang_code', 'name', 'Knite (United States)'),
(55855, 46602, 'no_lang_code', 'name', 'Catalina Scientific (United States)'),
(55856, 46603, 'no_lang_code', 'name', 'InnoSepra (United States)'),
(55857, 46604, 'no_lang_code', 'name', 'NovaTech (United States)'),
(55858, 46605, 'no_lang_code', 'name', 'Reaction35 (United States)'),
(55859, 46606, 'no_lang_code', 'name', 'Magneto-Inertial Fusion Technologies (United States)'),
(55860, 46607, 'no_lang_code', 'name', 'Charmworks (United States)'),
(55861, 46608, 'no_lang_code', 'name', 'Chemical Semantics (United States)'),
(55862, 46609, 'no_lang_code', 'name', 'Lightwave Photonics (United States)'),
(55863, 46610, 'no_lang_code', 'name', 'Rivis (United States)'),
(55864, 46611, 'no_lang_code', 'name', 'Citrine Informatics (United States)'),
(55865, 46612, 'no_lang_code', 'name', 'CM Technologies (United States)'),
(55866, 46613, 'en', 'name', 'Royal Association for Deaf people'),
(55867, 46614, 'no_lang_code', 'name', 'Lucent Optics (United States)'),
(55868, 46615, 'no_lang_code', 'name', 'Vadient Optics (United States)'),
(55869, 46616, 'no_lang_code', 'name', 'Lumisyn (United States)'),
(55870, 46617, 'en', 'name', 'St. Petersburg Department of Steklov Institute of Mathematics'),
(55871, 46617, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Šµ отГеление ŠœŠ°Ń‚ематического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° им. Š’. А. Дтеклова Š ŠŠ, abbreviated ŠŸŠžŠœŠ˜'),
(55872, 46618, 'no_lang_code', 'name', 'Cool Energy (United States)'),
(55873, 46619, 'no_lang_code', 'name', 'VLNComm (United States)'),
(55874, 46620, 'no_lang_code', 'name', 'Coulometrics (United States)'),
(55875, 46621, 'no_lang_code', 'name', 'VoltServer (United States)'),
(55876, 46622, 'no_lang_code', 'name', 'Machfu (United States)'),
(55877, 46623, 'no_lang_code', 'name', 'Saratoga Energy Research Partners (United States)'),
(55878, 46624, 'no_lang_code', 'name', 'D-Tech (United States)'),
(55879, 46625, 'no_lang_code', 'name', 'Dawn Research (United States)'),
(55880, 46626, 'no_lang_code', 'name', 'Vuronyx Technologies (United States)'),
(55881, 46627, 'no_lang_code', 'name', 'Scuba Probe Technologies (United states)'),
(55882, 46628, 'no_lang_code', 'name', 'Maidana Research (United States)'),
(55883, 46629, 'no_lang_code', 'name', 'Dirac Solutions (United States)'),
(55884, 46630, 'no_lang_code', 'name', 'Dorodnitsyn Computing Centre'),
(55885, 46630, 'ru', 'name', 'Š’Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ центр им. А. А. ДороГницына Š ŠŠ'),
(55886, 46631, 'no_lang_code', 'name', 'Sensor Creations (United States)'),
(55887, 46632, 'no_lang_code', 'name', 'Wang NMR (United States)'),
(55888, 46633, 'no_lang_code', 'name', 'Manta Biofuel (United States)'),
(55889, 46634, 'en', 'name', 'Institute of Industrial Ecology'),
(55890, 46634, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š¹ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Š£Ń€Šž Š ŠŠ'),
(55891, 46635, 'no_lang_code', 'name', 'Dymenso (United States)'),
(55892, 46636, 'no_lang_code', 'name', 'Woodruff Scientific (United States)'),
(55893, 46637, 'no_lang_code', 'name', 'E-Motors Consulting (United States)'),
(55894, 46638, 'no_lang_code', 'name', 'Flash Bainite (United States)'),
(55895, 46639, 'no_lang_code', 'name', 'E-Spectrum Technologies (United States)'),
(55896, 46640, 'no_lang_code', 'name', 'Xelera Research (United States)'),
(55897, 46641, 'no_lang_code', 'name', 'Sheeta (United states)'),
(55898, 46642, 'no_lang_code', 'name', 'Xergy (United States)'),
(55899, 46643, 'no_lang_code', 'name', 'XG Sciences (United States)'),
(55900, 46644, 'no_lang_code', 'name', 'E3Tec (United States)'),
(55901, 46645, 'no_lang_code', 'name', 'MicroBio Engineering (United States)'),
(55902, 46646, 'no_lang_code', 'name', 'Ecovia Renewables (United States)'),
(55903, 46647, 'no_lang_code', 'name', 'ZymoChem (United States)'),
(55904, 46648, 'no_lang_code', 'name', 'SiILion (United states)'),
(55905, 46649, 'no_lang_code', 'name', 'Sironix Renewables (United States)'),
(55906, 46650, 'no_lang_code', 'name', 'eIQ Energy (United States)'),
(55907, 46651, 'no_lang_code', 'name', 'MoJo Labs (United States)'),
(55908, 46652, 'no_lang_code', 'name', 'Solid Material Solutions (United States)'),
(55909, 46653, 'no_lang_code', 'name', 'Stryker (Israel)'),
(55910, 46654, 'no_lang_code', 'name', 'Mold Dynamics (United States)'),
(55911, 46655, 'no_lang_code', 'name', 'Solid Power (United States)'),
(55912, 46656, 'no_lang_code', 'name', 'Stryker (Ireland)'),
(55913, 46657, 'no_lang_code', 'name', 'Emissol (United States)'),
(55914, 46658, 'no_lang_code', 'name', 'Montana Emergent Technologies (United States)'),
(55915, 46659, 'no_lang_code', 'name', 'Solution Spray Technologies (United states)'),
(55916, 46660, 'no_lang_code', 'name', 'Munro & Associates (United States)'),
(55917, 46661, 'no_lang_code', 'name', 'Energy Sense Finance (United States)'),
(55918, 46662, 'no_lang_code', 'name', 'Sonata (United States)'),
(55919, 46663, 'no_lang_code', 'name', 'Spero Energy (United States)'),
(55920, 46664, 'no_lang_code', 'name', 'Samsung (Switzerland)'),
(55921, 46665, 'no_lang_code', 'name', 'Engineering Mechanics Corporation of Columbus (United States)'),
(55922, 46666, 'no_lang_code', 'name', 'Ennetix (United States)'),
(55923, 46667, 'no_lang_code', 'name', 'EntryPoint (United States)'),
(55924, 46668, 'no_lang_code', 'name', 'Flexsurface (United States)'),
(55925, 46669, 'no_lang_code', 'name', 'Ineos (Germany)'),
(55926, 46670, 'de', 'name', 'Fondazione per la ricerca e la cura dei linfomi'),
(55927, 46670, 'en', 'name', 'Foundation for the Research and Cure of Lymphoma in Ticino'),
(55928, 46671, 'no_lang_code', 'name', 'Amresco (United States)'),
(55929, 46672, 'no_lang_code', 'name', 'Extensible Energy (United States)'),
(55930, 46673, 'no_lang_code', 'name', 'Mitsubishi Corporation (Germany)'),
(55931, 46674, 'no_lang_code', 'name', 'TECE (Germany)'),
(55932, 46675, 'no_lang_code', 'name', 'Micron (Singapore)'),
(55933, 46676, 'no_lang_code', 'name', 'Dynacast (Canada)'),
(55934, 46677, 'no_lang_code', 'name', 'SunEdison (United States)'),
(55935, 46678, 'no_lang_code', 'name', 'Deutsche Telekom (Singapore)'),
(55936, 46679, 'no_lang_code', 'name', 'Deutsche Telekom (Austria)'),
(55937, 46680, 'no_lang_code', 'name', 'Tellabs (Canada)'),
(55938, 46681, 'no_lang_code', 'name', 'Tata Technologies (Singapore)'),
(55939, 46682, 'no_lang_code', 'name', 'Tektronix (Switzerland)'),
(55940, 46683, 'no_lang_code', 'name', 'Tektronix (Germany)'),
(55941, 46684, 'no_lang_code', 'name', 'Tektronix (Japan)'),
(55942, 46685, 'no_lang_code', 'name', 'Tektronix (United States)'),
(55943, 46686, 'no_lang_code', 'name', 'Tenneco (Germany)'),
(55944, 46687, 'no_lang_code', 'name', 'Teledyne Technologies (Australia)'),
(55945, 46688, 'no_lang_code', 'name', 'Teledyne e2v (United Kingdom)'),
(55946, 46689, 'no_lang_code', 'name', 'Taiwan Semiconductor Manufacturing Company (China)'),
(55947, 46689, 'zh', 'name', 'å°ē£ē©é«”é›»č·Æč£½é€ å…¬åø'),
(55948, 46690, 'no_lang_code', 'name', 'Telefonica (Germany)'),
(55949, 46691, 'no_lang_code', 'name', 'TDK (United Kingdom)'),
(55950, 46692, 'no_lang_code', 'name', 'ThyssenKrupp (United Kingdom)'),
(55951, 46693, 'no_lang_code', 'name', 'Johnson & Johnson (Ireland)'),
(55952, 46694, 'no_lang_code', 'name', 'Texas Instruments (Ireland)'),
(55953, 46695, 'no_lang_code', 'name', 'TGS (United Kingdom)'),
(55954, 46696, 'no_lang_code', 'name', 'Stanley Black & Decker (Taiwan)'),
(55955, 46697, 'no_lang_code', 'name', 'Thorlabs (Germany)'),
(55956, 46698, 'no_lang_code', 'name', 'Trapeze (United States)'),
(55957, 46699, 'no_lang_code', 'name', 'Tsubaki (Germany)'),
(55958, 46699, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę¤æęœ¬ćƒć‚Øć‚¤ćƒ³'),
(55959, 46700, 'no_lang_code', 'name', 'Trimble (Germany)'),
(55960, 46701, 'no_lang_code', 'name', 'Trelleborg (Germany)'),
(55961, 46702, 'no_lang_code', 'name', 'Trelleborg (United Kingdom)'),
(55962, 46703, 'no_lang_code', 'name', 'Ɩssur (Germany)'),
(55963, 46704, 'no_lang_code', 'name', 'Furukawa Electric (Germany)'),
(55964, 46705, 'no_lang_code', 'name', 'Stanley Black & Decker (United Kingdom)'),
(55965, 46706, 'no_lang_code', 'name', 'TRUMPF (Austria)'),
(55966, 46707, 'no_lang_code', 'name', 'Varian Medical Systems (Germany)'),
(55967, 46708, 'no_lang_code', 'name', 'TE Connectivity (China)'),
(55968, 46709, 'no_lang_code', 'name', 'Amdocs (Philippines)'),
(55969, 46710, 'no_lang_code', 'name', 'TE Connectivity (South Korea)'),
(55970, 46711, 'no_lang_code', 'name', 'TE Connectivity (Austria)'),
(55971, 46712, 'no_lang_code', 'name', 'TE Connectivity (Brazil)'),
(55972, 46713, 'no_lang_code', 'name', 'ZF Friedrichshafen (Japan)'),
(55973, 46714, 'no_lang_code', 'name', 'Teleflex (United States)'),
(55974, 46715, 'no_lang_code', 'name', 'Robert Bosch (Taiwan)'),
(55975, 46716, 'no_lang_code', 'name', 'Valeo (South Korea)'),
(55976, 46717, 'no_lang_code', 'name', 'Valeo (Japan)'),
(55977, 46718, 'no_lang_code', 'name', 'Mitsubishi Electric (Germany)'),
(55978, 46719, 'no_lang_code', 'name', 'Valeo (Brazil)'),
(55979, 46720, 'no_lang_code', 'name', 'Valeo (United States)'),
(55980, 46721, 'no_lang_code', 'name', 'Voith (United States)'),
(55981, 46722, 'no_lang_code', 'name', 'Volvo (United States)'),
(55982, 46723, 'no_lang_code', 'name', 'Volvo (Canada)'),
(55983, 46724, 'no_lang_code', 'name', 'Visa (United Kingdom)'),
(55984, 46725, 'no_lang_code', 'name', 'Danaher (Australia)'),
(55985, 46726, 'no_lang_code', 'name', 'Vossloh (Germany)'),
(55986, 46727, 'no_lang_code', 'name', 'Open Text (United Kingdom)'),
(55987, 46728, 'no_lang_code', 'name', 'Greenhouse Gas Industries (United States)'),
(55988, 46729, 'no_lang_code', 'name', 'BorgWarner (Brazil)'),
(55989, 46730, 'no_lang_code', 'name', 'Visteon (Japan)'),
(55990, 46731, 'no_lang_code', 'name', 'Visuray (Malta)'),
(55991, 46732, 'no_lang_code', 'name', 'Gentherm (Germany)'),
(55992, 46733, 'no_lang_code', 'name', 'John Deere (New Zealand)'),
(55993, 46734, 'no_lang_code', 'name', 'ProjectEconomics (United states)'),
(55994, 46735, 'no_lang_code', 'name', 'Wipro (Singapore)'),
(55995, 46736, 'no_lang_code', 'name', 'Allergan (India)'),
(55996, 46737, 'no_lang_code', 'name', 'Solid Cell (United States)'),
(55997, 46738, 'no_lang_code', 'name', 'West Pharmaceuticals (Germany)'),
(55998, 46739, 'no_lang_code', 'name', 'Foxconn (United Kingdom)'),
(55999, 46740, 'no_lang_code', 'name', 'Weatherford (Switzerland)'),
(56000, 46741, 'no_lang_code', 'name', 'Westinghouse Electric (Germany)'),
(56001, 46742, 'no_lang_code', 'name', 'NanoAl (United States)'),
(56002, 46743, 'no_lang_code', 'name', 'Yazaki (United Kingdom)'),
(56003, 46744, 'no_lang_code', 'name', 'YIT (Germany)'),
(56004, 46745, 'no_lang_code', 'name', 'Bausch Health (Germany)'),
(56005, 46746, 'no_lang_code', 'name', 'Woodward (Germany)'),
(56006, 46747, 'no_lang_code', 'name', 'YKK (United Kingdom)'),
(56007, 46748, 'en', 'name', 'Access Computer College'),
(56008, 46749, 'en', 'name', 'Brainerd Public Library'),
(56009, 46750, 'en', 'name', 'Gordon College'),
(56010, 46751, 'en', 'name', 'Santa Clara City Library'),
(56011, 46752, 'no_lang_code', 'name', 'Stanley Black & Decker (Israel)'),
(56012, 46753, 'en', 'name', 'Tampa–Hillsborough County Public Library System'),
(56013, 46754, 'en', 'name', 'National Assembly of Zambia'),
(56014, 46755, 'no_lang_code', 'name', 'Zumtobel Group (Austria)'),
(56015, 46756, 'no_lang_code', 'name', 'Stihl (Japan)'),
(56016, 46756, 'ja', 'name', 'ć‚¹ćƒćƒ¼ćƒ«'),
(56017, 46757, 'en', 'name', 'Harris County Public Library'),
(56018, 46758, 'no_lang_code', 'name', 'Zumtobel Group (Germany)'),
(56019, 46759, 'ga', 'name', 'OspidƩal Mhuire'),
(56020, 46759, 'en', 'name', 'Our Lady''s Hospital'),
(56021, 46760, 'en', 'name', 'Kagawa Buried Cultural Property Center'),
(56022, 46760, 'ja', 'name', 'é¦™å·ēœŒåŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(56023, 46761, 'en', 'name', 'St Michael’s Hospital'),
(56024, 46762, 'en', 'name', 'Kagawa Prefectural Board of Education'),
(56025, 46762, 'ja', 'name', 'é¦™å·ēœŒę•™č‚²å§”å“”ä¼š'),
(56026, 46763, 'en', 'name', 'Miyakoda Elementary School'),
(56027, 46763, 'ja', 'name', 'éƒ½ē”°å°å­¦ę ”'),
(56028, 46764, 'no_lang_code', 'name', 'Johnson Controls (Australia)'),
(56029, 46765, 'en', 'name', 'Hiroshima Prefectural Museum of History'),
(56030, 46765, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(56031, 46766, 'en', 'name', 'Kagoshima Prefectural Museum'),
(56032, 46766, 'ja', 'name', 'é¹æå…å³¶ēœŒē«‹åšē‰©é¤Ø'),
(56033, 46767, 'no_lang_code', 'name', 'Hikone Central Hospital'),
(56034, 46767, 'ja', 'name', '彦根中央病院'),
(56035, 46768, 'en', 'name', 'Kagoshima University Hospital'),
(56036, 46768, 'ja', 'name', '鹿児島大学病院'),
(56037, 46769, 'en', 'name', 'Ishikawa Prefectural Museum of Art'),
(56038, 46769, 'ja', 'name', 'ēŸ³å·ēœŒē«‹ē¾Žč”“é¤Ø'),
(56039, 46770, 'no_lang_code', 'name', 'Ishikawa Prefectural Takamatsu Hospital'),
(56040, 46770, 'ja', 'name', 'ēŸ³å·ēœŒē«‹é«˜ę¾ē—…é™¢'),
(56041, 46771, 'en', 'name', 'Kanazawa Municipal Kenrokuen Elementary School'),
(56042, 46771, 'ja', 'name', 'é‡‘ę²¢åø‚ē«‹å…¼å…­å°å­¦ę ”'),
(56043, 46772, 'en', 'name', 'Museum of Modern Art'),
(56044, 46772, 'ja', 'name', 'čŒØåŸŽēœŒčæ‘ä»£ē¾Žč”“é¤Ø'),
(56045, 46773, 'en', 'name', 'Niigata Prefectural Board of Education'),
(56046, 46774, 'en', 'name', 'Fujisawa Institute of Technology High School'),
(56047, 46774, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹č—¤ę²¢å·„ē§‘é«˜ē­‰å­¦ę ”'),
(56048, 46775, 'en', 'name', 'Kanagawa Odawara Nursing School'),
(56049, 46775, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹å°ē”°åŽŸé¤Šč­·å­¦ę ”'),
(56050, 46776, 'en', 'name', 'Ibaraki Prefectural Board of Education'),
(56051, 46776, 'ja', 'name', 'čŒØåŸŽēœŒę•™č‚²å§”å“”ä¼š'),
(56052, 46777, 'en', 'name', 'Hokkaido Kitami Hokuto High School'),
(56053, 46777, 'ja', 'name', 'åŒ—ęµ·é“åŒ—č¦‹åŒ—ę–—é«˜ē­‰å­¦ę ”'),
(56054, 46778, 'no_lang_code', 'name', 'Izu Nirayama Onsen Hospital'),
(56055, 46778, 'ja', 'name', 'ä¼Šč±†éŸ®å±±ęø©ę³‰ē—…é™¢'),
(56056, 46779, 'en', 'name', 'Kochi Prefectural Education Center'),
(56057, 46779, 'ja', 'name', 'é«˜ēŸ„ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(56058, 46780, 'en', 'name', 'Kawasaki Univ Yato Elementary School'),
(56059, 46780, 'ja', 'name', 'å·å“Žåø‚ē«‹å¤§č°·ęˆøå°å­¦ę ”'),
(56060, 46781, 'en', 'name', 'Hokkaidō Museum of Literature'),
(56061, 46782, 'en', 'name', 'Hokkaido Orthopedic Surgery Memorial Hospital'),
(56062, 46783, 'en', 'name', 'Japan Institute of Lifelong Learning'),
(56063, 46783, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗ ę—„ęœ¬ē”Ÿę¶Æå­¦ēæ’ē·åˆē ”ē©¶ę‰€'),
(56064, 46784, 'en', 'name', 'Kochi Rehabilitation Institute'),
(56065, 46784, 'ja', 'name', 'é«˜ēŸ„ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å­¦é™¢'),
(56066, 46785, 'en', 'name', 'Kanagawa Prefecture Policy Bureau'),
(56067, 46785, 'ja', 'name', 'ē„žå„ˆå·ēœŒę”æē­–å±€'),
(56068, 46786, 'en', 'name', 'Kawasaki Municipal Science Museum'),
(56069, 46786, 'ja', 'name', 'å·å“Žåø‚é’å°‘å¹“ē§‘å­¦é¤Ø'),
(56070, 46787, 'en', 'name', 'Kyoto Prefectural Board of Education'),
(56071, 46788, 'en', 'name', 'Miyazaki Prefectural Museum of Nature and History'),
(56072, 46788, 'aa', 'name', 'å®®å“ŽēœŒē·åˆåšē‰©é¤Ø'),
(56073, 46789, 'en', 'name', 'Kitakyushu Yahata Special Needs Schools'),
(56074, 46789, 'ja', 'name', 'åŒ—ä¹å·žåø‚ē«‹å…«å¹”ē‰¹åˆ„ę”Æę“å­¦ę ”'),
(56075, 46790, 'en', 'name', 'Kumamoto Educational Center'),
(56076, 46790, 'ja', 'name', 'ē†Šęœ¬åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(56077, 46791, 'en', 'name', 'Iwate Prefectural Mizusawa Agricultural High School'),
(56078, 46792, 'en', 'name', 'Kobe City Fire Department'),
(56079, 46792, 'ja', 'name', 'ē„žęˆøåø‚ę¶ˆé˜²å±€'),
(56080, 46793, 'en', 'name', 'Kumamoto Prefectural Board of Education'),
(56081, 46793, 'ja', 'name', 'ē†Šęœ¬ēœŒę•™č‚²å§”å“”ä¼š'),
(56082, 46794, 'en', 'name', 'Kobe City Museum'),
(56083, 46794, 'ja', 'name', 'ē„žęˆøåø‚ē«‹åšē‰©é¤Ø'),
(56084, 46795, 'en', 'name', 'Kumamoto Prefectural Museum of Art'),
(56085, 46795, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹ē¾Žč”“é¤Ø'),
(56086, 46796, 'en', 'name', 'Nagano City Board of Education'),
(56087, 46796, 'ja', 'name', 'é•·é‡Žåø‚ę•™č‚²å§”å“”ä¼š'),
(56088, 46797, 'en', 'name', 'Fujita Animal Hospital'),
(56089, 46797, 'ja', 'name', '藤田動物病院'),
(56090, 46798, 'no_lang_code', 'name', 'Nojiri Naumanni Museum'),
(56091, 46799, 'en', 'name', 'Matsudo City Board of Education'),
(56092, 46799, 'ja', 'name', 'ę¾ęˆøåø‚ę•™č‚²å§”å“”ä¼š'),
(56093, 46800, 'en', 'name', 'Board of Education Mino Education Office'),
(56094, 46801, 'en', 'name', 'Nagaoka Municipal Science Museum'),
(56095, 46802, 'no_lang_code', 'name', 'Tamashima Hospital'),
(56096, 46802, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ 弘仁会 ēŽ‰å³¶ē—…é™¢'),
(56097, 46803, 'en', 'name', 'Naha City Hospital'),
(56098, 46803, 'ja', 'name', '那覇市立病院'),
(56099, 46804, 'en', 'name', 'Miwa Internal Medicine Clinic'),
(56100, 46804, 'ja', 'name', 'ćæć‚å†…ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(56101, 46805, 'en', 'name', 'Matsuyama Gakuen Matsuyama welfare College'),
(56102, 46805, 'ja', 'name', 'ę¾å±±å­¦åœ’ę¾å±±ē¦ē„‰å°‚é–€å­¦ę ”'),
(56103, 46806, 'en', 'name', 'Nagasaki Museum of History and Culture'),
(56104, 46806, 'ja', 'name', 'é•·å“Žę­“å²ę–‡åŒ–åšē‰©é¤Ø'),
(56105, 46807, 'en', 'name', 'Kanetsu Hospital'),
(56106, 46807, 'ja', 'name', 'é–¢č¶Šē—…é™¢'),
(56107, 46808, 'en', 'name', 'Nagasaki Prefectural Tsushima Museum of History and Folklore'),
(56108, 46808, 'ja', 'name', 'é•·å“ŽēœŒē«‹åÆ¾é¦¬ę­“å²ę°‘äæ—å²ę–™é¤Ø'),
(56109, 46809, 'en', 'name', 'Miyagi Prefectural Ishinomaki Support School'),
(56110, 46809, 'ja', 'name', 'å®®åŸŽēœŒē«‹ēŸ³å·»ę”Æę“å­¦ę ”'),
(56111, 46810, 'en', 'name', 'Plateau Medical Center'),
(56112, 46811, 'en', 'name', 'Matsura Historical Museum'),
(56113, 46811, 'ja', 'name', 'ę¾ęµ¦å²ę–™åšē‰©é¤Ø'),
(56114, 46812, 'en', 'name', 'Nara Prefectural Board of Education'),
(56115, 46812, 'ja', 'name', 'å„ˆč‰ÆēœŒę•™č‚²å§”å“”ä¼š'),
(56116, 46813, 'en', 'name', 'Medical Corporation River Mizuma hospital'),
(56117, 46813, 'ja', 'name', 'ćƒŸć‚ŗćƒžē—…é™¢'),
(56118, 46814, 'no_lang_code', 'name', 'Kyoto Computer Gakuin'),
(56119, 46814, 'ja', 'name', 'äŗ¬éƒ½ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æå­¦é™¢'),
(56120, 46815, 'en', 'name', 'Nara Medical University Hospital'),
(56121, 46815, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(56122, 46816, 'en', 'name', 'Yamamoto Hospital'),
(56123, 46816, 'ja', 'name', 'å±±ęœ¬ē—…é™¢'),
(56124, 46817, 'en', 'name', 'Nara Prefectural Institute for Educational Research'),
(56125, 46817, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹ę•™č‚²ē ”ē©¶ę‰€'),
(56126, 46818, 'en', 'name', 'Kyoto Institute of Culture and Language'),
(56127, 46818, 'ja', 'name', 'äŗ¬éƒ½ę–‡åŒ–ę—„ęœ¬čŖžå­¦ę ”'),
(56128, 46819, 'en', 'name', 'Miyagi Prefecture Shibata Agriculture and Forestry High School'),
(56129, 46819, 'ja', 'name', 'å®®åŸŽēœŒęŸ“ē”°č¾²ęž—é«˜ē­‰å­¦ę ”'),
(56130, 46820, 'en', 'name', 'Nagoya City Science Museum'),
(56131, 46820, 'ja', 'name', 'åå¤å±‹åø‚ē§‘å­¦é¤Ø'),
(56132, 46821, 'en', 'name', 'Tohoku History Museum'),
(56133, 46821, 'ja', 'name', 'ę±åŒ—ę­“å²åšē‰©é¤Ø'),
(56134, 46822, 'en', 'name', 'Kyoto Municipal Junior College of Nursing'),
(56135, 46822, 'ja', 'name', 'äŗ¬éƒ½åø‚ē«‹ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(56136, 46823, 'en', 'name', 'Kyoto Prefectural Education Center'),
(56137, 46823, 'ja', 'name', 'äŗ¬éƒ½åŗœē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(56138, 46824, 'en', 'name', 'Kyoto Prefectural Police'),
(56139, 46824, 'ja', 'name', '京都府警察'),
(56140, 46825, 'en', 'name', 'National Hospital Organization Hokkaido Medical Center'),
(56141, 46825, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē—…é™¢ę©Ÿę§‹ åŒ—ęµ·é“åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(56142, 46826, 'en', 'name', 'National Hospital Organization Takasaki Medical Center'),
(56143, 46826, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹é«˜å“Žē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(56144, 46827, 'en', 'name', 'Okinaka Memorial Adult Disease Research Institute'),
(56145, 46827, 'ja', 'name', 'å†²äø­čØ˜åæµęˆäŗŗē—…ē ”ē©¶ę‰€'),
(56146, 46828, 'en', 'name', 'National Consumer Affairs Center of Japan'),
(56147, 46828, 'ja', 'name', 'å›½ę°‘ē”Ÿę“»ć‚»ćƒ³ć‚æćƒ¼'),
(56148, 46829, 'en', 'name', 'Okinawa Prefecture Ohira Special School School'),
(56149, 46829, 'ja', 'name', 'ę²–ēø„ēœŒē«‹å¤§å¹³ē‰¹åˆ„ę”Æę“å­¦ę ”'),
(56150, 46830, 'en', 'name', 'Okinawa Prefectural Yaeyama Hospital'),
(56151, 46830, 'ja', 'name', 'ę²–ēø„ēœŒē«‹å…«é‡å±±ē—…é™¢'),
(56152, 46831, 'en', 'name', 'Okinawa Red Cross Hospital'),
(56153, 46831, 'ja', 'name', 'ę²–ēø„čµ¤åå­—ē—…é™¢'),
(56154, 46832, 'en', 'name', 'National Hospital Organization Iobyoin'),
(56155, 46832, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹åŒ»ēŽ‹ē—…é™¢'),
(56156, 46833, 'no_lang_code', 'name', 'Osaka Butsuryo University'),
(56157, 46833, 'ja', 'name', 'å¤§é˜Ŗē‰©ē™‚å¤§å­¦'),
(56158, 46834, 'en', 'name', 'National Hospital Organization Takamatsu Medical Center'),
(56159, 46834, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹é«˜ę¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(56160, 46835, 'en', 'name', 'Neyagawa City Board of Education'),
(56161, 46835, 'ja', 'name', 'åÆå±‹å·åø‚ę•™č‚²å§”å“”ä¼š'),
(56162, 46836, 'en', 'name', 'Oita Prefectural Nascent Support School'),
(56163, 46836, 'ja', 'name', 'å¤§åˆ†ēœŒē‰¹åˆ„ę”Æę“å­¦ę ”'),
(56164, 46837, 'en', 'name', 'Niigata Agricultural Research Institute'),
(56165, 46837, 'ja', 'name', 'ę–°ę½ŸēœŒåœ’čŠøē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(56166, 46838, 'en', 'name', 'Neyagaya School for Special Needs Education'),
(56167, 46838, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹åÆå±‹å·ę”Æę“å­¦ę ”'),
(56168, 46839, 'en', 'name', 'Oita Prefectural Yufu Support School'),
(56169, 46839, 'ja', 'name', 'å¤§åˆ†ēœŒē”±åøƒé™¢ę”Æę“å­¦ę ”'),
(56170, 46840, 'no_lang_code', 'name', 'Oji Holdings (Japan)'),
(56171, 46840, 'ja', 'name', 'ēŽ‹å­ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(56172, 46841, 'en', 'name', 'Japan Association for Development of Community Medicine'),
(56173, 46841, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗ åœ°åŸŸåŒ»ē™‚ęŒÆčˆˆå”ä¼š'),
(56174, 46842, 'en', 'name', 'Okayama Prefectural Museum'),
(56175, 46842, 'ja', 'name', 'å²”å±±ēœŒē«‹åšē‰©é¤Ø'),
(56176, 46843, 'en', 'name', 'Okayama Psychiatric Medical Center'),
(56177, 46843, 'ja', 'name', 'å²”å±±ēœŒē²¾ē„žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(56178, 46844, 'en', 'name', 'Sakai City Board of Education'),
(56179, 46844, 'ja', 'name', 'ę•™č‚²å§”å“”ä¼š - å ŗåø‚'),
(56180, 46845, 'en', 'name', 'Industrial Technology Center of SAGA'),
(56181, 46845, 'ja', 'name', 'ä½č³€ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(56182, 46846, 'en', 'name', 'Sakai City Education Center'),
(56183, 46846, 'ja', 'name', 'å ŗåø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(56184, 46847, 'en', 'name', 'Sakura Walnut Kindergarten'),
(56185, 46848, 'no_lang_code', 'name', 'Hyōgo Prefectural Museum of Art'),
(56186, 46848, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ē¾Žč”“é¤Ø'),
(56187, 46849, 'en', 'name', 'Sapporo Science Center'),
(56188, 46849, 'ja', 'name', 'ęœ­å¹Œåø‚é’å°‘å¹“ē§‘å­¦é¤Ø'),
(56189, 46850, 'en', 'name', 'Sagamihara City Museum'),
(56190, 46850, 'ja', 'name', 'ē›øęØ”åŽŸåø‚ē«‹åšē‰©é¤Ø'),
(56191, 46851, 'no_lang_code', 'name', 'Kitamurayama Hospital'),
(56192, 46851, 'ja', 'name', 'åŒ—ę‘å±±å…¬ē«‹ē—…é™¢'),
(56193, 46852, 'en', 'name', 'Saitama Board of Education'),
(56194, 46852, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒę•™č‚²å§”å“”ä¼š'),
(56195, 46853, 'en', 'name', 'Otaru City General Museum'),
(56196, 46853, 'ja', 'name', 'å°ęØ½åø‚ē·åˆåšē‰©é¤Ø'),
(56197, 46854, 'en', 'name', 'Museum of Modern Art'),
(56198, 46854, 'ja', 'name', 'ę»‹č³€ēœŒē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(56199, 46855, 'en', 'name', 'Tokyo Metropolitan Art Museum'),
(56200, 46855, 'ja', 'name', 'ę±äŗ¬éƒ½ē¾Žč”“é¤Ø'),
(56201, 46856, 'en', 'name', 'Shimane Institute for Industrial Technology'),
(56202, 46856, 'ja', 'name', 'å³¶ę ¹ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(56203, 46857, 'no_lang_code', 'name', 'Sendai City Museum'),
(56204, 46857, 'ja', 'name', 'ä»™å°åø‚åšē‰©é¤Ø'),
(56205, 46858, 'en', 'name', 'Shimane Museum of Ancient Izumo'),
(56206, 46858, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹å¤ä»£å‡ŗé›²ę­“å²åšē‰©é¤Ø'),
(56207, 46859, 'en', 'name', 'Sendai Science Museum'),
(56208, 46859, 'ja', 'name', 'ä»™å°åø‚ē§‘å­¦é¤Ø'),
(56209, 46860, 'en', 'name', 'Tokyo Metropolitan School Personnel in Service Training Center'),
(56210, 46860, 'ja', 'name', 'ę±äŗ¬éƒ½ę•™č·å“”ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(56211, 46861, 'no_lang_code', 'name', 'Sendai City Tomizawa Site Museum'),
(56212, 46861, 'ja', 'name', 'åœ°åŗ•ć®ę£®ćƒŸćƒ„ćƒ¼ć‚øć‚¢ćƒ '),
(56213, 46862, 'en', 'name', 'Suzuka Junior College'),
(56214, 46862, 'ja', 'name', '鈓鹿短期大学'),
(56215, 46863, 'en', 'name', 'Shinjuku Ward Shinjuku Historical Museum'),
(56216, 46863, 'ja', 'name', 'ę–°å®æę­“å²åšē‰©é¤Ø'),
(56217, 46864, 'en', 'name', 'Takayanagi Dental Clinic'),
(56218, 46864, 'ja', 'name', 'é«˜ęŸ³ę­Æē§‘ē—…é™¢'),
(56219, 46865, 'en', 'name', 'Toyonaka City Board of Education'),
(56220, 46865, 'ja', 'name', 'ę•™č‚²å§”å“”ä¼š č±Šäø­åø‚'),
(56221, 46866, 'en', 'name', 'Tsuchiura City Museum'),
(56222, 46866, 'ja', 'name', 'åœŸęµ¦åø‚ē«‹åšē‰©é¤Ø'),
(56223, 46867, 'en', 'name', 'The Institute of Energy Economics, Japan'),
(56224, 46867, 'ja', 'name', 'ć‚Øćƒćƒ«ć‚®ćƒ¼ēµŒęøˆē ”ē©¶ę‰€'),
(56225, 46868, 'en', 'name', 'Tokyo College of Welfare'),
(56226, 46868, 'ja', 'name', 'ę±äŗ¬ē¦ē„‰å°‚é–€å­¦ę ”'),
(56227, 46869, 'no_lang_code', 'name', 'Uji Hospital'),
(56228, 46869, 'ja', 'name', '宇治病院'),
(56229, 46870, 'en', 'name', 'Edo Tokyo Museum'),
(56230, 46870, 'ja', 'name', 'ę±Ÿęˆøę±äŗ¬åšē‰©é¤Ø'),
(56231, 46871, 'no_lang_code', 'name', 'Tomakomai Art Museum'),
(56232, 46871, 'ja', 'name', 'č‹«å°ē‰§åø‚ē¾Žč”“åšē‰©é¤Ø'),
(56233, 46872, 'no_lang_code', 'name', 'Mitsuwadai General Hospital'),
(56234, 46872, 'ja', 'name', 'ćæć¤ć‚å°ē·åˆē—…é™¢'),
(56235, 46873, 'en', 'name', 'National Archives of Japan'),
(56236, 46873, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹å…¬ę–‡ę›øé¤Ø'),
(56237, 46874, 'en', 'name', 'Yamanashi Prefectural Board of Education'),
(56238, 46874, 'ja', 'name', 'å±±ę¢ØēœŒę•™č‚²å§”å“”ä¼š'),
(56239, 46875, 'en', 'name', 'Yuki Animal Hospital'),
(56240, 46876, 'no_lang_code', 'name', 'Utsunomiya Museum of Art'),
(56241, 46877, 'en', 'name', 'Yanagawa Rehabilitation Hospital'),
(56242, 46877, 'ja', 'name', 'ęŸ³å·ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(56243, 46878, 'en', 'name', 'Wakayama City Culture and Sports Promotion Foundation'),
(56244, 46878, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å’Œę­Œå±±åø‚ę–‡åŒ–ć‚¹ćƒćƒ¼ćƒ„ęŒÆčˆˆč²”å›£'),
(56245, 46879, 'en', 'name', 'Vocational School YIC Rehabilitation College'),
(56246, 46880, 'no_lang_code', 'name', 'Wakayama City Museum'),
(56247, 46880, 'ja', 'name', 'å’Œę­Œå±±åø‚ē«‹åšē‰©é¤Ø'),
(56248, 46881, 'en', 'name', 'Yamaguchi Prefectural Museum'),
(56249, 46881, 'ja', 'name', 'å±±å£ēœŒē«‹å±±å£åšē‰©é¤Ø'),
(56250, 46882, 'en', 'name', 'Yokohama City Furusato History Foundation'),
(56251, 46882, 'ja', 'name', 'ęØŖęµœåø‚ćµć‚‹ć•ćØę­“å²č²”å›£'),
(56252, 46883, 'en', 'name', 'Wakayama Prefectural Museum of Natural History'),
(56253, 46883, 'ja', 'name', 'å’Œę­Œå±±ēœŒē«‹č‡Ŗē„¶åšē‰©é¤Ø'),
(56254, 46884, 'en', 'name', 'Wakayama Prefecture Wakayama School for the Blind'),
(56255, 46884, 'aa', 'name', 'å’Œę­Œå±±ēœŒē«‹å’Œę­Œå±±ē›²å­¦ę ”'),
(56256, 46885, 'en', 'name', 'Baker County Library District'),
(56257, 46886, 'en', 'name', 'ACCESS Health International'),
(56258, 46887, 'en', 'name', 'Carnegie Foundation for the Advancement of Teaching'),
(56259, 46888, 'en', 'name', 'Baltimore County Public Library'),
(56260, 46889, 'en', 'name', 'Access to Medicine Index'),
(56261, 46890, 'en', 'name', 'American Evaluation Association'),
(56262, 46891, 'no_lang_code', 'name', 'Batavia Biosciences (Netherlands)'),
(56263, 46892, 'en', 'name', 'Cascade Bicycle Club Education Foundation'),
(56264, 46893, 'en', 'name', 'American India Foundation'),
(56265, 46894, 'en', 'name', 'Access to Nutrition Foundation'),
(56266, 46895, 'en', 'name', 'American Indian Institute'),
(56267, 46896, 'en', 'name', 'Cascade Mental Healthcare'),
(56268, 46897, 'en', 'name', 'Access to Seeds Index'),
(56269, 46898, 'en', 'name', 'Catalysis Foundation for Health'),
(56270, 46899, 'en', 'name', 'Future Forum'),
(56271, 46900, 'en', 'name', 'Children’s AIDS Fund International'),
(56272, 46901, 'en', 'name', 'Catholic Health Association of India'),
(56273, 46902, 'en', 'name', 'Children''s Trust Foundation'),
(56274, 46903, 'en', 'name', 'Achievement Rewards for College Scientists Foundation'),
(56275, 46904, 'en', 'name', 'ACT Foundation'),
(56276, 46905, 'en', 'name', 'CHIME Institute'),
(56277, 46906, 'en', 'name', 'Belgrade Community Library'),
(56278, 46907, 'en', 'name', 'Admiral Theatre'),
(56279, 46908, 'en', 'name', 'China Chamber of Commerce for Import and Export of Medicines and Health Products'),
(56280, 46908, 'zh', 'name', 'äø­å›½åŒ»čÆäæå„å“čæ›å‡ŗå£å•†ä¼š'),
(56281, 46909, 'en', 'name', 'American Society of News Editors'),
(56282, 46910, 'no_lang_code', 'name', 'Bellwether Education Partners (United States)'),
(56283, 46911, 'en', 'name', 'Catholic Bishops Conference of India'),
(56284, 46912, 'en', 'name', 'American Society of Tropical Medicine and Hygiene'),
(56285, 46913, 'en', 'name', 'China Foundation'),
(56286, 46914, 'no_lang_code', 'name', 'Benchmark Education (United States)'),
(56287, 46915, 'en', 'name', 'Africa Harvest Biotech Foundation International'),
(56288, 46916, 'en', 'name', 'China Friendship Foundation for Peace and Development'),
(56289, 46917, 'en', 'name', 'Ames Free Library'),
(56290, 46918, 'en', 'name', 'Benton Foundation'),
(56291, 46919, 'en', 'name', 'Center for Collaborative Education'),
(56292, 46920, 'en', 'name', 'Bertha Voyer Memorial Library'),
(56293, 46921, 'en', 'name', 'Africa Progress Panel'),
(56294, 46922, 'en', 'name', 'Anaheim Public Library'),
(56295, 46923, 'en', 'name', 'African Agricultural Technology Foundation'),
(56296, 46924, 'en', 'name', 'Christian Connections for International Health'),
(56297, 46925, 'en', 'name', 'Ancient Egypt Research Associates'),
(56298, 46926, 'en', 'name', 'Center for Education Reform'),
(56299, 46927, 'en', 'name', 'Climate Foundation'),
(56300, 46928, 'en', 'name', 'African Capacity Building Foundation'),
(56301, 46929, 'es', 'name', 'Biblioteca del Congreso de la Nación'),
(56302, 46930, 'en', 'name', 'College for All Texans Foundation'),
(56303, 46931, 'en', 'name', 'Center for Effective Philanthropy'),
(56304, 46932, 'en', 'name', 'Big Rapids Community Library'),
(56305, 46933, 'en', 'name', 'College Success Foundation'),
(56306, 46934, 'en', 'name', 'BIO Ventures for Global Health'),
(56307, 46935, 'en', 'name', 'African Comprehensive HIV/AIDS Partnerships'),
(56308, 46936, 'es', 'name', 'Ministerio de Cultura'),
(56309, 46936, 'en', 'name', 'Ministry of Culture'),
(56310, 46937, 'en', 'name', 'Arab Foundations Forum'),
(56311, 46937, 'ar', 'name', 'ملتقى المؤسسات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© الداعمة'),
(56312, 46938, 'en', 'name', 'Yawata Medical Center'),
(56313, 46938, 'ja', 'name', 'åŠ č³€å…«å¹”ęø©ę³‰ē—…é™¢'),
(56314, 46939, 'en', 'name', 'Colorado Department of Higher Education'),
(56315, 46940, 'en', 'name', 'African Field Epidemiology Network'),
(56316, 46941, 'en', 'name', 'Arizona State Library, Archives and Public Records'),
(56317, 46942, 'en', 'name', 'Center for Law and Social Policy'),
(56318, 46943, 'en', 'name', 'African Health Economics and Policy Association'),
(56319, 46944, 'en', 'name', 'Colorado Education Initiative'),
(56320, 46945, 'en', 'name', 'Colorado Library Consortium'),
(56321, 46946, 'en', 'name', 'African Leaders Malaria Alliance'),
(56322, 46947, 'en', 'name', 'Arkansas Department of Higher Education'),
(56323, 46948, 'en', 'name', 'Black Alliance for Educational Options'),
(56324, 46949, 'en', 'name', 'Colorado River Indian Tribes Library'),
(56325, 46950, 'en', 'name', 'Arkansas State Library'),
(56326, 46951, 'en', 'name', 'Committee for Economic Development'),
(56327, 46952, 'en', 'name', 'Arlington Public Library'),
(56328, 46953, 'en', 'name', 'Common Heritage Foundation'),
(56329, 46954, 'en', 'name', 'ASEAN Foundation'),
(56330, 46955, 'en', 'name', 'Asian Counseling and Referral Service'),
(56331, 46956, 'en', 'name', 'Center for Teaching Quality'),
(56332, 46957, 'en', 'name', 'East, Central and Southern Africa Health Community'),
(56333, 46958, 'en', 'name', 'Asian University for Women Support Foundation'),
(56334, 46959, 'en', 'name', 'Road Map Project'),
(56335, 46960, 'en', 'name', 'African Ministers'' Council on Water'),
(56336, 46961, 'en', 'name', 'Association for Research on Nonprofit Organizations and Voluntary Action'),
(56337, 46962, 'en', 'name', 'Boulder Institute of Microfinance'),
(56338, 46963, 'en', 'name', 'U.S. Global Leadership Coalition'),
(56339, 46964, 'en', 'name', 'African Virtual University'),
(56340, 46965, 'en', 'name', 'Association for the Study of Higher Education'),
(56341, 46966, 'en', 'name', 'African Women Education and Development Forum'),
(56342, 46967, 'en', 'name', 'Center on Budget and Policy Priorities'),
(56343, 46968, 'en', 'name', 'Association of African Business Schools'),
(56344, 46969, 'en', 'name', 'PowerMyLearning'),
(56345, 46970, 'en', 'name', 'Association of Charitable Foundations'),
(56346, 46971, 'en', 'name', 'Bremen Overseas Research & Development Association'),
(56347, 46972, 'en', 'name', 'Concept Foundation'),
(56348, 46973, 'en', 'name', 'Association of Community College Trustees'),
(56349, 46974, 'en', 'name', 'Center on Education Policy'),
(56350, 46975, 'en', 'name', 'Afrivac'),
(56351, 46976, 'en', 'name', 'Congressional Black Caucus Foundation'),
(56352, 46977, 'en', 'name', 'Congressional Coalition on Adoption Institute'),
(56353, 46978, 'en', 'name', 'Central Kentucky Educational Cooperative'),
(56354, 46979, 'en', 'name', 'Association of Fundraising Professionals Advancement Northwest'),
(56355, 46980, 'en', 'name', 'Association of Governing Boards of Universities and Colleges'),
(56356, 46981, 'en', 'name', 'Consortium for Educational Change'),
(56357, 46982, 'en', 'name', 'Central Savannah River Area Regional Educational Service Agency'),
(56358, 46983, 'en', 'name', 'Consortium for School Networking'),
(56359, 46984, 'en', 'name', 'Exponent Philanthropy'),
(56360, 46985, 'en', 'name', 'Consortium of Florida Education Foundations'),
(56361, 46986, 'en', 'name', 'Aid for Aids'),
(56362, 46987, 'en', 'name', 'Brownsville Public Library'),
(56363, 46988, 'en', 'name', 'Bucks County Free Library'),
(56364, 46989, 'en', 'name', 'Atlanta Research and Education Foundation'),
(56365, 46990, 'en', 'name', 'Centre for Advocacy and Research'),
(56366, 46991, 'nl', 'name', 'Aidsfonds'),
(56367, 46992, 'en', 'name', 'Greater Austin Hispanic Chamber of Commerce'),
(56368, 46993, 'en', 'name', 'Contra Costa County Library'),
(56369, 46994, 'en', 'name', 'George W. Bush Presidential Center'),
(56370, 46995, 'en', 'name', 'Austin Voices for Education and Youth'),
(56371, 46996, 'en', 'name', 'Business-Higher Education Forum'),
(56372, 46997, 'en', 'name', 'AIDS Society of India'),
(56373, 46998, 'en', 'name', 'AIDS Vaccine Advocacy Coalition'),
(56374, 46999, 'en', 'name', 'Confederation of Oregon School Administrators'),
(56375, 47000, 'en', 'name', 'Australian Respiratory and Sleep Medicine Institute'),
(56376, 47001, 'en', 'name', 'Council for Aid to Education'),
(56377, 47002, 'en', 'name', 'Centre for Innovation in Regulatory Science'),
(56378, 47003, 'en', 'name', 'Council of Michigan Foundations'),
(56379, 47004, 'en', 'name', 'Council on Foundations'),
(56380, 47005, 'en', 'name', 'Avenir Health'),
(56381, 47006, 'en', 'name', 'California County Superintendents Educational Services Association'),
(56382, 47007, 'en', 'name', 'Centre for Remote Sensing and Geographic Information Services'),
(56383, 47008, 'en', 'name', 'County of Los Angeles Public Library'),
(56384, 47009, 'en', 'name', 'California State Library'),
(56385, 47010, 'en', 'name', 'Cross Plains Public Library'),
(56386, 47011, 'en', 'name', 'California State Library Foundation'),
(56387, 47012, 'en', 'name', 'Albert Wisner Public Library'),
(56388, 47013, 'en', 'name', 'Californians Dedicated to Education Foundation'),
(56389, 47014, 'en', 'name', 'European Foundation Centre'),
(56390, 47015, 'en', 'name', 'Alberta Library'),
(56391, 47016, 'no_lang_code', 'name', 'Ceres Nanosciences'),
(56392, 47017, 'en', 'name', 'Cumberland County Public Library and Information Center'),
(56393, 47018, 'en', 'name', 'Eurovacc Foundation'),
(56394, 47019, 'en', 'name', 'Calvert Foundation'),
(56395, 47020, 'no_lang_code', 'name', 'M-Changa'),
(56396, 47021, 'en', 'name', 'Cambridge in America'),
(56397, 47022, 'en', 'name', 'AllAfrica Foundation'),
(56398, 47023, 'en', 'name', 'Chapel Hill Breast Cancer Foundation'),
(56399, 47024, 'en', 'name', 'Excelencia in Education'),
(56400, 47025, 'en', 'name', 'Allegheny County Library Association'),
(56401, 47026, 'en', 'name', 'Executive Development Institute'),
(56402, 47027, 'en', 'name', 'Carbondale Public Library'),
(56403, 47028, 'en', 'name', 'Charities Aid Foundation'),
(56404, 47029, 'en', 'name', 'Executive Office of Education'),
(56405, 47030, 'en', 'name', 'Alliance for Education'),
(56406, 47031, 'en', 'name', 'Davenport Public Library'),
(56407, 47032, 'en', 'name', 'Chelsea District Library'),
(56408, 47033, 'en', 'name', 'Cherie Blair Foundation for Women'),
(56409, 47034, 'en', 'name', 'Dawliffe Hall Education Foundation'),
(56410, 47035, 'en', 'name', 'Chess Mates Foundation'),
(56411, 47036, 'en', 'name', 'District of Columbia Public Education Fund'),
(56412, 47037, 'en', 'name', 'Chester County Library System'),
(56413, 47038, 'en', 'name', 'Alliance for Excellent Education'),
(56414, 47039, 'en', 'name', 'Family Online Safety Institute'),
(56415, 47040, 'en', 'name', 'Deepam Educational Society for Health'),
(56416, 47041, 'en', 'name', 'Farm Foundation'),
(56417, 47042, 'en', 'name', 'Chicago International Charter School'),
(56418, 47043, 'en', 'name', 'GBCHealth'),
(56419, 47044, 'en', 'name', 'Farm Journal Foundation'),
(56420, 47045, 'en', 'name', 'Delaware County Libraries'),
(56421, 47046, 'en', 'name', 'Global Business School Network'),
(56422, 47047, 'en', 'name', 'Aman Foundation'),
(56423, 47048, 'en', 'name', 'British Fashion Council'),
(56424, 47049, 'en', 'name', 'Delaware Division of Libraries'),
(56425, 47050, 'en', 'name', 'Global Child Nutrition Foundation'),
(56426, 47051, 'en', 'name', 'Federal Employee Education and Assistance Fund'),
(56427, 47052, 'en', 'name', 'Amarillo Area Foundation'),
(56428, 47053, 'en', 'name', 'Chicago Public Library Foundation'),
(56429, 47054, 'en', 'name', 'Chief Officers of State Library Agencies'),
(56430, 47055, 'en', 'name', 'Global Health Corps'),
(56431, 47056, 'en', 'name', 'American Association of School Administrators'),
(56432, 47057, 'en', 'name', 'Denise Louie Education Center'),
(56433, 47058, 'en', 'name', 'Fiorello H. LaGuardia Foundation'),
(56434, 47059, 'en', 'name', 'DSST Public Schools'),
(56435, 47060, 'en', 'name', 'Florida Association of District School Superintendents'),
(56436, 47061, 'en', 'name', 'Florida Association of School Administrators'),
(56437, 47062, 'en', 'name', 'Child Health Foundation'),
(56438, 47063, 'en', 'name', 'Florida Chamber of Commerce'),
(56439, 47064, 'en', 'name', 'Florida College System'),
(56440, 47065, 'en', 'name', 'Desmond and Leah Tutu Legacy Foundation'),
(56441, 47066, 'en', 'name', 'Flowminder Foundation'),
(56442, 47066, 'sv', 'name', 'Stiftelsen Flowminder'),
(56443, 47067, 'en', 'name', 'KnowledgeWorks'),
(56444, 47068, 'en', 'name', 'Desmond Tutu Peace Foundation'),
(56445, 47069, 'no_lang_code', 'name', 'Global Health Strategies (United States)'),
(56446, 47070, 'en', 'name', 'Fontes Foundation'),
(56447, 47071, 'de', 'name', 'Deutsche AIDS-Stiftung'),
(56448, 47072, 'en', 'name', 'Farm Africa'),
(56449, 47073, 'en', 'name', 'Global Libraries - Bulgaria Foundation'),
(56450, 47074, 'en', 'name', 'Knox County Public Library'),
(56451, 47075, 'en', 'name', 'Deutsche Bank'),
(56452, 47076, 'en', 'name', 'Global Virus Network'),
(56453, 47077, 'en', 'name', 'Fort Bend County Libraries'),
(56454, 47078, 'de', 'name', 'Deutsche Stiftung Weltbevoelkerung'),
(56455, 47078, 'en', 'name', 'German Foundation for World Population'),
(56456, 47079, 'en', 'name', 'GlobalGiving'),
(56457, 47080, 'en', 'name', 'Fort Vancouver Regional Library District'),
(56458, 47081, 'en', 'name', 'Development Initiatives'),
(56459, 47082, 'en', 'name', 'Fort Worth Library'),
(56460, 47083, 'en', 'name', 'Government of Japan'),
(56461, 47084, 'en', 'name', 'Kofi Annan Foundation'),
(56462, 47085, 'rw', 'name', 'Ministeri y''Ibikorwaremezo'),
(56463, 47085, 'en', 'name', 'Ministry of Infrastructure'),
(56464, 47085, 'fr', 'name', 'MinistĆØre des Infrastructures'),
(56465, 47086, 'en', 'name', 'League of United Latin American Citizens'),
(56466, 47087, 'en', 'name', 'Foundation Center'),
(56467, 47088, 'en', 'name', 'DigiLearn Digital Learning Institute'),
(56468, 47089, 'en', 'name', 'Digital Empowerment Foundation'),
(56469, 47090, 'en', 'name', 'Foundation Financial Officers Group'),
(56470, 47091, 'pt', 'name', 'Instituto Kairós'),
(56471, 47092, 'en', 'name', 'Digital Public Library of America'),
(56472, 47093, 'en', 'name', 'Grameen Foundation'),
(56473, 47094, 'en', 'name', 'LaConner Regional Library'),
(56474, 47095, 'en', 'name', 'Grameen Research'),
(56475, 47096, 'es', 'name', 'Instituto Trabajo y Familia'),
(56476, 47097, 'no_lang_code', 'name', 'DNA Medicine Institute (United States)'),
(56477, 47098, 'en', 'name', 'New Jersey Principals and Supervisors Association'),
(56478, 47099, 'en', 'name', 'International AIDS Society'),
(56479, 47100, 'en', 'name', 'Lancaster Education Foundation'),
(56480, 47101, 'en', 'name', 'Grantmakers for Education'),
(56481, 47102, 'en', 'name', 'Doctors of the World'),
(56482, 47103, 'en', 'name', 'Foundation for Excellence in Education'),
(56483, 47104, 'en', 'name', 'Foundation for Healthy Generations'),
(56484, 47105, 'en', 'name', 'International Alliance for Biological Standardization'),
(56485, 47106, 'en', 'name', 'Douglas Public Library'),
(56486, 47107, 'no_lang_code', 'name', 'GSMA (United States)'),
(56487, 47108, 'en', 'name', 'Dover Town Library'),
(56488, 47109, 'en', 'name', 'International Center for Not-for-Profit Law'),
(56489, 47110, 'en', 'name', 'Leadership Florida'),
(56490, 47111, 'en', 'name', 'Dream Builders Foundation'),
(56491, 47112, 'fr', 'name', 'Fondation pour la SantƩ Reproductrice et l''Education Familiale'),
(56492, 47113, 'en', 'name', 'Haines Borough Public Library'),
(56493, 47114, 'en', 'name', 'New York State Council of School Superintendents'),
(56494, 47115, 'en', 'name', 'Foundation For The Carolinas'),
(56495, 47116, 'en', 'name', 'Augusta-Richmond County Public Library System'),
(56496, 47117, 'en', 'name', 'Hamilton County Department of Education');
INSERT INTO `ror_settings` VALUES
(56497, 47118, 'en', 'name', 'International Community Health Services'),
(56498, 47119, 'en', 'name', 'League For Innovation in the Community College'),
(56499, 47120, 'en', 'name', 'Memphis Library Foundation'),
(56500, 47121, 'en', 'name', 'LearnLaunch Institute'),
(56501, 47122, 'en', 'name', 'East Lake Foundation'),
(56502, 47123, 'en', 'name', 'Foundation for the Mid South'),
(56503, 47124, 'en', 'name', 'International Confederation of Midwives'),
(56504, 47125, 'en', 'name', 'Hanseatic Institute of Technology'),
(56505, 47126, 'en', 'name', 'Lee County Library System'),
(56506, 47127, 'en', 'name', 'International Council Of Aids Service Organizations'),
(56507, 47128, 'en', 'name', 'Seattle Colleges'),
(56508, 47129, 'en', 'name', 'Leping Social Entrepreneur Foundation'),
(56509, 47129, 'zh', 'name', 'åŒ—äŗ¬ä¹å¹³å…¬ē›ŠåŸŗé‡‘ä¼š'),
(56510, 47130, 'en', 'name', 'Harney Education Service District'),
(56511, 47131, 'en', 'name', 'LEV Foundation'),
(56512, 47132, 'en', 'name', 'Economic Opportunity Institute'),
(56513, 47133, 'en', 'name', 'Hartford Public Library'),
(56514, 47134, 'en', 'name', 'Dustin Michael Sekula Memorial Library'),
(56515, 47135, 'en', 'name', 'Hawaii State Public Library System'),
(56516, 47136, 'en', 'name', 'International Development Law Organization'),
(56517, 47137, 'en', 'name', 'Inland Northwest Community Foundation'),
(56518, 47138, 'en', 'name', 'Library Foundation of Los Angeles'),
(56519, 47139, 'en', 'name', 'Health & Development International'),
(56520, 47140, 'fr', 'name', 'FƩdƩration Internationale de GynƩcologie et d''ObstƩtrique'),
(56521, 47140, 'en', 'name', 'International Federation of Gynaecology and Obstetrics'),
(56522, 47141, 'en', 'name', 'Health and Global Policy Institute'),
(56523, 47142, 'en', 'name', 'Library of Michigan Foundation'),
(56524, 47143, 'en', 'name', 'Education Cities'),
(56525, 47144, 'en', 'name', 'Stand for Children'),
(56526, 47145, 'en', 'name', 'International HIV/AIDS Alliance'),
(56527, 47146, 'en', 'name', 'International Initiative for Impact Evaluation'),
(56528, 47147, 'en', 'name', 'Chalkboard Project'),
(56529, 47148, 'en', 'name', 'Foundations for Farming'),
(56530, 47149, 'en', 'name', 'Life Sciences Discovery Fund'),
(56531, 47150, 'en', 'name', 'Gere Foundation'),
(56532, 47151, 'en', 'name', 'Education Leaders of Color'),
(56533, 47152, 'en', 'name', 'International Institute of Rural Reconstruction'),
(56534, 47153, 'en', 'name', 'Lifebox'),
(56535, 47154, 'en', 'name', 'Education Pioneers'),
(56536, 47155, 'en', 'name', 'FrameWorks Institute'),
(56537, 47156, 'en', 'name', 'International Peace Institute'),
(56538, 47157, 'en', 'name', 'Education Resource Strategies'),
(56539, 47158, 'en', 'name', 'Health Systems Global'),
(56540, 47159, 'en', 'name', 'Lifelong AIDS Alliance'),
(56541, 47160, 'nl', 'name', 'FƩdƩration Internationale Pharmaceutique'),
(56542, 47160, 'en', 'name', 'International Pharmaceutical Federation'),
(56543, 47161, 'en', 'name', 'HealthforAnimals'),
(56544, 47162, 'en', 'name', 'Lilac Services for the Blind'),
(56545, 47163, 'en', 'name', 'Education Service Center Region 13'),
(56546, 47164, 'en', 'name', 'International Planned Parenthood Federation'),
(56547, 47165, 'en', 'name', 'HealthRock'),
(56548, 47166, 'en', 'name', 'International Planned Parenthood Federation'),
(56549, 47167, 'en', 'name', 'Healthy Families of Clallam County'),
(56550, 47168, 'en', 'name', 'Education Trust'),
(56551, 47169, 'en', 'name', 'International Society for Developmental Origins of Health and Disease'),
(56552, 47170, 'en', 'name', 'Lions Clubs International'),
(56553, 47171, 'en', 'name', 'Hearing, Speech & Deaf Center'),
(56554, 47172, 'en', 'name', 'Education Writers Association'),
(56555, 47173, 'en', 'name', 'Freedom Writers Foundation'),
(56556, 47174, 'en', 'name', 'Educational Policy Improvement Center'),
(56557, 47175, 'en', 'name', 'Live & Learn Environmental Education'),
(56558, 47176, 'en', 'name', 'Fresno County Office of Education'),
(56559, 47177, 'en', 'name', 'International Society for Equity in Health'),
(56560, 47178, 'en', 'name', 'Educational Results Partnership'),
(56561, 47179, 'en', 'name', 'Live Oak Public Libraries'),
(56562, 47180, 'en', 'name', 'Educational Service District 105'),
(56563, 47181, 'en', 'name', 'Hillsborough Education Foundation'),
(56564, 47182, 'en', 'name', 'Friends of the Global Fight'),
(56565, 47183, 'en', 'name', 'Educational Service District 113'),
(56566, 47184, 'en', 'name', 'Hinton Area Foundation'),
(56567, 47185, 'en', 'name', 'Long Beach Public Library'),
(56568, 47186, 'en', 'name', 'Educational Service District 123'),
(56569, 47187, 'en', 'name', 'International Society for Influenza and other Respiratory Virus Diseases'),
(56570, 47188, 'en', 'name', 'EducationSuperHighway'),
(56571, 47189, 'en', 'name', 'Friends of the New York State Library'),
(56572, 47190, 'en', 'name', 'Edvance Foundation'),
(56573, 47191, 'en', 'name', 'Lotus Innovative Sciences'),
(56574, 47192, 'en', 'name', 'Edward Charles Foundation'),
(56575, 47193, 'en', 'name', 'Friends of the Seattle Public Library'),
(56576, 47194, 'en', 'name', 'Foundation for Louisiana'),
(56577, 47195, 'en', 'name', 'eHealth Africa'),
(56578, 47196, 'en', 'name', 'National Center for Public Policy and Higher Education'),
(56579, 47197, 'en', 'name', 'Fund for Educational Excellence'),
(56580, 47198, 'en', 'name', 'International Society for Vaccines'),
(56581, 47199, 'en', 'name', 'Eisenhower Foundation'),
(56582, 47200, 'en', 'name', 'HJF Medical Research International'),
(56583, 47201, 'en', 'name', 'Low Income Housing Institute'),
(56584, 47202, 'en', 'name', 'Lowy Institute for International Policy'),
(56585, 47203, 'en', 'name', 'Lumina Foundation'),
(56586, 47204, 'en', 'name', 'Funders Concerned About AIDS'),
(56587, 47205, 'en', 'name', 'Human Rights Campaign'),
(56588, 47206, 'en', 'name', 'Luzerne County Libraries'),
(56589, 47207, 'en', 'name', 'International Union of Immunological Societies'),
(56590, 47208, 'en', 'name', 'Rotary Club of Emerald City'),
(56591, 47209, 'en', 'name', 'Funders Network on Population, Reproductive Health and Rights'),
(56592, 47210, 'en', 'name', 'Internationals Network For Public Schools'),
(56593, 47211, 'en', 'name', 'Magic Johnson Foundation'),
(56594, 47212, 'en', 'name', 'Iowa City Public Library'),
(56595, 47213, 'en', 'name', 'Future Library'),
(56596, 47214, 'en', 'name', 'Parents’ Action for Children'),
(56597, 47215, 'en', 'name', 'GAIA Vaccine Foundation'),
(56598, 47216, 'en', 'name', 'Ivory Coast Medical Relief Team'),
(56599, 47217, 'en', 'name', 'Engineers Without Borders Canada'),
(56600, 47217, 'fr', 'name', 'Ingénieurs sans Frontières Canada'),
(56601, 47218, 'en', 'name', 'Jacaranda Health'),
(56602, 47219, 'en', 'name', 'Idaho Association of School Administrators'),
(56603, 47220, 'en', 'name', 'Jacksonville Public Education Fund'),
(56604, 47221, 'en', 'name', 'Idaho Business for Education'),
(56605, 47222, 'en', 'name', 'Jamaica Library Service'),
(56606, 47223, 'en', 'name', 'Malaria No More'),
(56607, 47224, 'en', 'name', 'Idaho Commission for Libraries'),
(56608, 47225, 'en', 'name', 'Summer Advantage USA'),
(56609, 47226, 'en', 'name', 'Hunt Institute'),
(56610, 47227, 'en', 'name', 'Environment and Population Research Centre'),
(56611, 47228, 'en', 'name', 'Gary Public Library'),
(56612, 47229, 'en', 'name', 'Envision Education'),
(56613, 47230, 'en', 'name', 'Management Education & Research Consortium'),
(56614, 47231, 'en', 'name', 'European Parliamentary Forum on Population & Development'),
(56615, 47232, 'en', 'name', 'Impact India'),
(56616, 47233, 'en', 'name', 'Gateway Health Institute'),
(56617, 47234, 'en', 'name', 'Manhattan Institute for Policy Research'),
(56618, 47235, 'en', 'name', 'Independence Public Library'),
(56619, 47236, 'en', 'name', 'Gateway to College National Network'),
(56620, 47237, 'en', 'name', 'Esperanza International'),
(56621, 47238, 'en', 'name', 'Gay City Health Project'),
(56622, 47239, 'en', 'name', 'Manufacturing Institute'),
(56623, 47240, 'en', 'name', 'Discovery Behavioral Healthcare'),
(56624, 47241, 'en', 'name', 'Ethel L. Whipple Memorial Library'),
(56625, 47242, 'no_lang_code', 'name', 'Genocea (United States)'),
(56626, 47243, 'en', 'name', 'Maple Street School'),
(56627, 47244, 'en', 'name', 'Ministry of Agriculture and Natural Resource'),
(56628, 47245, 'en', 'name', 'India Heritage Research Foundation'),
(56629, 47246, 'en', 'name', 'Indian Council for Research on International Economic Relations'),
(56630, 47247, 'en', 'name', 'Joan Ganz Cooney Center'),
(56631, 47248, 'en', 'name', 'Maricopa County Library District'),
(56632, 47249, 'en', 'name', 'Mill Valley Public Library'),
(56633, 47250, 'en', 'name', 'Pike Place Market Foundation'),
(56634, 47251, 'en', 'name', 'Indiana Commission for Higher Education'),
(56635, 47252, 'en', 'name', 'Johar Health Maintenance Organization'),
(56636, 47253, 'lt', 'name', 'Martynas Mažvydas National Library'),
(56637, 47254, 'en', 'name', 'Georgia Chamber of Commerce'),
(56638, 47255, 'en', 'name', 'Ministry of Culture'),
(56639, 47256, 'en', 'name', 'Mass Insight Education'),
(56640, 47257, 'en', 'name', 'John N. Gardner Institute for Excellence in Undergraduate Education'),
(56641, 47258, 'en', 'name', 'ICCO'),
(56642, 47259, 'en', 'name', 'Georgia Public Library Service'),
(56643, 47260, 'en', 'name', 'Ministry of Culture of the Republic of Latvia'),
(56644, 47261, 'en', 'name', 'Massachusetts Board of Library Commissioners'),
(56645, 47262, 'en', 'name', 'Massachusetts Business Alliance for Education'),
(56646, 47263, 'en', 'name', 'Glen Carbon Centennial Library'),
(56647, 47264, 'en', 'name', 'IFMR Finance Foundation'),
(56648, 47265, 'lt', 'name', 'Lietuvos Respublikos kultūros ministerija'),
(56649, 47265, 'en', 'name', 'Ministry of Culture'),
(56650, 47266, 'en', 'name', 'Glide Foundation'),
(56651, 47267, 'en', 'name', 'McCallum Theatre'),
(56652, 47268, 'en', 'name', 'Indigenous Language Institute'),
(56653, 47269, 'en', 'name', 'Global Alliance for Improved Nutrition'),
(56654, 47270, 'en', 'name', 'State Library of Kansas'),
(56655, 47271, 'en', 'name', 'Medic One Foundation'),
(56656, 47272, 'en', 'name', 'Clayton Christensen Institute'),
(56657, 47273, 'en', 'name', 'Global Alliance for Livestock Veterinary Medicines'),
(56658, 47274, 'en', 'name', 'Global Burn Care and Reconstructive Institute'),
(56659, 47275, 'en', 'name', 'Innovative Medicines for Tuberculosis Foundation'),
(56660, 47276, 'vi', 'name', 'Bį»™ ThĆ“ng tin vĆ  Truyền thĆ“ng'),
(56661, 47276, 'en', 'name', 'Ministry of Information and Communications'),
(56662, 47277, 'en', 'name', 'Medical Library Association'),
(56663, 47278, 'en', 'name', 'Inspired Practices in Early Education'),
(56664, 47279, 'en', 'name', 'Kappa Kappa Gamma'),
(56665, 47280, 'en', 'name', 'Ministry of Urban Development,Housing and Construction'),
(56666, 47281, 'en', 'name', 'Medical Teams International'),
(56667, 47282, 'fr', 'name', 'Institut Bouisson Bertrand'),
(56668, 47283, 'en', 'name', 'Ministry of Urban Development'),
(56669, 47283, 'ne', 'name', 'ą¤øą¤¹ą¤°ą„€ विकास ą¤®ą¤Øą„ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ | ą¤Øą¤æą¤œą¤¾ą¤®ą¤¤ą„€ ą¤øą„‡ą¤µą¤¾ą¤•ą„‹ सपना'),
(56670, 47284, 'en', 'name', 'Karma Healthcare'),
(56671, 47285, 'en', 'name', 'United States Chamber of Commerce'),
(56672, 47286, 'en', 'name', 'Ministry OF City Planning and Water Supply'),
(56673, 47286, 'ta', 'name', 'ą®Øą®•ą®°ą®®ąÆ ą®¤ą®æą®ŸąÆą®Ÿą®®ą®æą®Ÿą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®ØąÆ€ą®°ąÆ ą®µą®“ą®™ąÆą®•ą®²ąÆ ą®…ą®®ąÆˆą®šąÆą®šąÆ'),
(56674, 47286, 'si', 'name', 'නගරය ą·ƒą·ą¶½ą·ƒą·”ą¶øą·Š ą·„ą· ජල ą·ƒą¶øą·Šą¶“ą·ą¶Æą¶± ą¶…ą¶øą·ą¶­ą·Šą¶ŗą·ą¶‚ą·ą¶ŗ'),
(56675, 47287, 'hi', 'name', 'Bharatiya Vidya Bhavan'),
(56676, 47288, 'en', 'name', 'Institute for Advanced Journalism Studies'),
(56677, 47289, 'en', 'name', 'Gapminder Foundation'),
(56678, 47289, 'sv', 'name', 'Stiftelsen Gapminder'),
(56679, 47290, 'en', 'name', 'Meridian Institute'),
(56680, 47291, 'en', 'name', 'Kentucky Chamber of Commerce'),
(56681, 47292, 'en', 'name', 'Institute for Community Leadership'),
(56682, 47293, 'en', 'name', 'Mesa Public Library'),
(56683, 47294, 'en', 'name', 'Institute for Educational Leadership'),
(56684, 47295, 'en', 'name', 'New Paradigm for Education'),
(56685, 47296, 'en', 'name', 'Metropolitan Library System'),
(56686, 47297, 'en', 'name', 'Mexican American Legal Defense and Educational Fund'),
(56687, 47298, 'en', 'name', 'NewTech Network'),
(56688, 47299, 'en', 'name', 'Kern County Library'),
(56689, 47300, 'en', 'name', 'Maisha Meds'),
(56690, 47301, 'en', 'name', 'Niswonger Foundation'),
(56691, 47302, 'en', 'name', 'Institute for Family Development'),
(56692, 47303, 'en', 'name', 'Michigan Institute for Educational Management'),
(56693, 47304, 'en', 'name', 'North Carolina Association of Community College Trustees'),
(56694, 47305, 'en', 'name', 'Public Law Library of King County'),
(56695, 47306, 'en', 'name', 'Michigan Virtual University'),
(56696, 47307, 'en', 'name', 'North Central Educational Service District'),
(56697, 47308, 'no_lang_code', 'name', 'MomsRising'),
(56698, 47309, 'en', 'name', 'King County Library System Foundation'),
(56699, 47310, 'en', 'name', 'NorthEast Washington Educational Service District'),
(56700, 47311, 'en', 'name', 'Institute for Research and Reform in Education'),
(56701, 47312, 'en', 'name', 'KIPP Foundation'),
(56702, 47313, 'en', 'name', 'Institute for Stem Cell Biology and Regenerative Medicine'),
(56703, 47314, 'en', 'name', 'Montana State Library'),
(56704, 47315, 'en', 'name', 'Northwest African American Museum'),
(56705, 47316, 'en', 'name', 'Kitsap Mental Health Services'),
(56706, 47317, 'no_lang_code', 'name', 'MicroSave'),
(56707, 47318, 'en', 'name', 'California Teachers Association'),
(56708, 47319, 'en', 'name', 'Institute for the Study of Knowledge Management in Education'),
(56709, 47320, 'en', 'name', 'Plexus Institute'),
(56710, 47321, 'en', 'name', 'Monterey Institute for Technology and Education'),
(56711, 47322, 'en', 'name', 'Middle Georgia Regional Library'),
(56712, 47323, 'en', 'name', 'Points of Light'),
(56713, 47324, 'en', 'name', 'Northwest Association For Biomedical Research'),
(56714, 47325, 'en', 'name', 'Midwestern Higher Education Compact'),
(56715, 47326, 'en', 'name', 'Policy Cures'),
(56716, 47327, 'en', 'name', 'Municipal League Foundatio'),
(56717, 47328, 'en', 'name', 'Migration Policy Institute'),
(56718, 47329, 'en', 'name', 'PIE Network'),
(56719, 47330, 'en', 'name', 'Rotary Club of Seattle'),
(56720, 47331, 'en', 'name', 'Northwest Parkinson’s Foundation'),
(56721, 47332, 'en', 'name', 'Museum of Flight'),
(56722, 47333, 'en', 'name', 'Northwest Territories Public Library Services'),
(56723, 47334, 'en', 'name', 'Population Foundation of India'),
(56724, 47335, 'en', 'name', 'Mali Health'),
(56725, 47336, 'en', 'name', 'Auction of Washington Wines'),
(56726, 47337, 'en', 'name', 'See Forever Foundation'),
(56727, 47338, 'en', 'name', 'Swiss Philanthropy Foundation'),
(56728, 47339, 'en', 'name', 'Nargis Dutt Memorial Foundation'),
(56729, 47340, 'en', 'name', 'Postsecondary National Policy Institute'),
(56730, 47341, 'en', 'name', 'Mitchell Institute'),
(56731, 47342, 'en', 'name', 'Synergos Institute'),
(56732, 47343, 'en', 'name', 'Nova Scotia Provincial Library'),
(56733, 47344, 'en', 'name', 'Nashville Public Education Foundation'),
(56734, 47345, 'en', 'name', 'Tavis Smiley Foundation'),
(56735, 47346, 'no_lang_code', 'name', 'Praekelt Foundation'),
(56736, 47347, 'no_lang_code', 'name', 'Transport Corporation of India (India)'),
(56737, 47348, 'no_lang_code', 'name', 'Pratham'),
(56738, 47349, 'en', 'name', 'NASSCOM Foundation'),
(56739, 47350, 'en', 'name', 'Preeclampsia Foundation'),
(56740, 47351, 'en', 'name', 'Team Pennsylvania Foundation'),
(56741, 47352, 'en', 'name', 'National Academy Foundation'),
(56742, 47353, 'en', 'name', 'NYSUT Education and Learning Trust'),
(56743, 47354, 'en', 'name', 'Preston Healthcare Consulting'),
(56744, 47355, 'en', 'name', 'Oakland Public Education Fund'),
(56745, 47356, 'en', 'name', 'National Agency for the Control of AIDS'),
(56746, 47357, 'en', 'name', 'Seton Education Partners'),
(56747, 47358, 'en', 'name', 'Pride Foundation'),
(56748, 47359, 'en', 'name', 'Tech Foundation'),
(56749, 47360, 'en', 'name', 'Ohio Association of Community Colleges'),
(56750, 47361, 'en', 'name', 'Technet Foundation'),
(56751, 47362, 'no_lang_code', 'name', 'Shanghai Chengtou (China)'),
(56752, 47363, 'en', 'name', 'Technology Access Foundation'),
(56753, 47364, 'en', 'name', 'Business Roundtable'),
(56754, 47365, 'en', 'name', 'Prince Edward Island Library Service'),
(56755, 47366, 'en', 'name', 'Oklahoma Department of Libraries'),
(56756, 47367, 'en', 'name', 'Shanghai Institutes for International Studies'),
(56757, 47367, 'zh', 'name', 'äøŠęµ·å›½é™…é—®é¢˜ē ”ē©¶é™¢'),
(56758, 47368, 'en', 'name', 'National Aids Control Council'),
(56759, 47369, 'en', 'name', 'National Association for the Education of Young Children'),
(56760, 47370, 'en', 'name', 'Olympic Educational Service District'),
(56761, 47371, 'en', 'name', 'Shasta County Office of Education'),
(56762, 47372, 'en', 'name', 'National Association of Charter School Authorizers'),
(56763, 47373, 'en', 'name', 'National Association of College and University Business Officers'),
(56764, 47374, 'en', 'name', 'Ondo State Primary Health Care Development Board'),
(56765, 47375, 'en', 'name', 'NALEO Educational Fund'),
(56766, 47376, 'en', 'name', 'Televisa Foundation'),
(56767, 47377, 'en', 'name', 'Sickle Cell Cure Foundation'),
(56768, 47378, 'en', 'name', 'National Association of Student Financial Aid Administrators'),
(56769, 47379, 'en', 'name', 'Tennessee Business Roundtable'),
(56770, 47380, 'en', 'name', 'Simha Foundation'),
(56771, 47381, 'en', 'name', 'Opportunity Institute'),
(56772, 47382, 'no_lang_code', 'name', 'Oquirr Marketing Institute (United States)'),
(56773, 47383, 'en', 'name', 'SKS Foundation'),
(56774, 47384, 'en', 'name', 'State Collaborative on Reforming Education'),
(56775, 47385, 'en', 'name', 'National Center for Higher Education Management Systems'),
(56776, 47386, 'en', 'name', 'Digital Promise'),
(56777, 47387, 'en', 'name', 'Brazilian Society of Tropical Medicine'),
(56778, 47387, 'pt', 'name', 'Sociedade Brasileira de Medicina Tropical'),
(56779, 47388, 'fr', 'name', 'Terre des Hommes'),
(56780, 47389, 'en', 'name', 'Society for International Development'),
(56781, 47390, 'en', 'name', 'Center for Assessment'),
(56782, 47391, 'en', 'name', 'Texas Association of Community Colleges'),
(56783, 47392, 'en', 'name', 'Society for Research on Educational Effectiveness'),
(56784, 47393, 'en', 'name', 'Texas Public Policy Foundation'),
(56785, 47394, 'en', 'name', 'Society of Gynaecology and Obstetrics of Nigeria'),
(56786, 47395, 'en', 'name', 'National Center on Addiction and Substance Abuse at Columbia University'),
(56787, 47396, 'en', 'name', 'Private Sector Health Alliance of Nigeria'),
(56788, 47397, 'en', 'name', 'Oregon Department of Education'),
(56789, 47398, 'en', 'name', 'National Center on Education and the Economy'),
(56790, 47399, 'en', 'name', 'Agora Foundation'),
(56791, 47400, 'en', 'name', 'Professional Educator Standards Board'),
(56792, 47401, 'en', 'name', 'Solano County Library'),
(56793, 47402, 'en', 'name', 'Antara Foundation'),
(56794, 47403, 'en', 'name', 'Asan Institute for Policy Studies'),
(56795, 47403, 'ko', 'name', '아산정책연구원'),
(56796, 47404, 'en', 'name', 'Progressive Policy Institute'),
(56797, 47405, 'no_lang_code', 'name', 'Solina Group (Nigeria)'),
(56798, 47406, 'en', 'name', 'Mobility Outreach International'),
(56799, 47407, 'en', 'name', 'South Africa Development Fund'),
(56800, 47408, 'en', 'name', 'Association of Educational Publishers'),
(56801, 47409, 'en', 'name', 'Boston Educational Development Foundation'),
(56802, 47410, 'en', 'name', 'Proteus Digital Health'),
(56803, 47411, 'en', 'name', 'Boston Foundation'),
(56804, 47412, 'es', 'name', 'Probigua'),
(56805, 47413, 'en', 'name', 'Federation of Infectious Diseases Societies of Southern Africa'),
(56806, 47414, 'en', 'name', 'Public Agenda'),
(56807, 47415, 'en', 'name', 'Broad Center'),
(56808, 47416, 'en', 'name', 'South Carolina State Library'),
(56809, 47417, 'en', 'name', 'California Education Partners'),
(56810, 47418, 'en', 'name', 'National Council on Teacher Quality'),
(56811, 47419, 'en', 'name', 'Osburn Public Library'),
(56812, 47420, 'en', 'name', 'Chicago Council on Global Affairs'),
(56813, 47421, 'en', 'name', 'South Dakota Department Of Education'),
(56814, 47422, 'en', 'name', 'National Foundation for India'),
(56815, 47423, 'en', 'name', 'PAST Foundation'),
(56816, 47424, 'en', 'name', 'Southeastern Council of Foundations'),
(56817, 47425, 'en', 'name', 'Puget Sound Educational Service District'),
(56818, 47426, 'en', 'name', 'PICO National Network'),
(56819, 47427, 'en', 'name', 'Edcamp Foundation'),
(56820, 47428, 'en', 'name', 'National Foundation for Infectious Diseases'),
(56821, 47429, 'en', 'name', 'Southern Africa Trust'),
(56822, 47430, 'en', 'name', 'Southern Area Library'),
(56823, 47431, 'en', 'name', 'Efficacy Institute'),
(56824, 47432, 'en', 'name', 'Qualis Health'),
(56825, 47433, 'en', 'name', 'Pact'),
(56826, 47434, 'en', 'name', 'Page Public Library'),
(56827, 47435, 'en', 'name', 'Southwest Georgia Regional Educational Service Agency'),
(56828, 47436, 'en', 'name', 'Quantitative BioSciences'),
(56829, 47437, 'en', 'name', 'Pahara Institute'),
(56830, 47438, 'no_lang_code', 'name', 'Spot On Sciences (United States)'),
(56831, 47439, 'en', 'name', 'Rajiv Gandhi Foundation'),
(56832, 47440, 'en', 'name', 'Foundation for Vaccine Research'),
(56833, 47441, 'en', 'name', 'Squaxin Island Tribe Museum Library and Research Center'),
(56834, 47442, 'en', 'name', 'Fund for Transforming Education in Kentucky'),
(56835, 47443, 'en', 'name', 'National Indian Education Association'),
(56836, 47444, 'en', 'name', 'St. Helena Public Library'),
(56837, 47445, 'en', 'name', 'Palouse Discovery Science Center'),
(56838, 47446, 'en', 'name', 'Global Network of People Living with HIV/AIDS'),
(56839, 47447, 'en', 'name', 'National Institute for Staff and Organizational Development'),
(56840, 47448, 'en', 'name', 'Oklahoma State University Medical Center'),
(56841, 47449, 'en', 'name', 'Greater New Orleans Foundation'),
(56842, 47450, 'en', 'name', 'Henry Ford Learning Institute'),
(56843, 47451, 'en', 'name', 'St Stephen’s AIDS Trust'),
(56844, 47452, 'en', 'name', 'PAHO Foundation'),
(56845, 47453, 'en', 'name', 'Hesperian Health Guides'),
(56846, 47454, 'en', 'name', 'Stanislaus County Library'),
(56847, 47455, 'en', 'name', 'Highlander Institute'),
(56848, 47456, 'en', 'name', 'Panzi Foundation'),
(56849, 47457, 'en', 'name', 'Parent Institute for Quality Education'),
(56850, 47458, 'en', 'name', 'National Laboratory for Education Transformation'),
(56851, 47459, 'en', 'name', 'State Educational Technology Directors Association'),
(56852, 47460, 'en', 'name', 'Red Cross Society of China'),
(56853, 47460, 'zh', 'name', 'äø­å›½ēŗ¢åå­—ä¼š'),
(56854, 47461, 'en', 'name', 'Institute for College Access and Success'),
(56855, 47462, 'en', 'name', 'Parenting Matters Foundation'),
(56856, 47463, 'en', 'name', 'Red Hook Public Library'),
(56857, 47464, 'en', 'name', 'National Library of South Africa'),
(56858, 47465, 'en', 'name', 'Parents United for Responsible Education'),
(56859, 47466, 'en', 'name', 'State Higher Education Executive Officers'),
(56860, 47467, 'en', 'name', 'Research for Action'),
(56861, 47468, 'en', 'name', 'State Library of Iowa'),
(56862, 47469, 'en', 'name', 'RESULTS and RESULTS Educational Fund'),
(56863, 47470, 'en', 'name', 'Library Network'),
(56864, 47471, 'en', 'name', 'Partnership for Child Health'),
(56865, 47472, 'en', 'name', 'National Press Foundation'),
(56866, 47473, 'en', 'name', 'Revenue Watch Institute'),
(56867, 47474, 'no_lang_code', 'name', 'Liya Kebede Foundation'),
(56868, 47475, 'sv', 'name', 'Riksfƶrbundet fƶr sexuell upplysning'),
(56869, 47475, 'en', 'name', 'Swedish Association for Sexuality Education'),
(56870, 47476, 'en', 'name', 'National Public Education Support Fund'),
(56871, 47477, 'en', 'name', 'MTV Staying Alive'),
(56872, 47478, 'en', 'name', 'Pasteur Foundation'),
(56873, 47479, 'en', 'name', 'Rice Institute'),
(56874, 47480, 'en', 'name', 'Massachusetts Institute for a New Commonwealth'),
(56875, 47481, 'en', 'name', 'National Office for Sanitation of Senegal'),
(56876, 47482, 'en', 'name', 'Penda Health'),
(56877, 47483, 'en', 'name', 'Richland Library'),
(56878, 47484, 'en', 'name', 'Match Education'),
(56879, 47485, 'en', 'name', 'National Student Clearinghouse Research Center'),
(56880, 47486, 'en', 'name', 'Rigpe Dorje Foundation'),
(56881, 47487, 'en', 'name', 'Pennsylvania Chamber of Business and Industry'),
(56882, 47488, 'en', 'name', 'NEA Foundation'),
(56883, 47489, 'en', 'name', 'Natural Resource Governance Institute'),
(56884, 47490, 'en', 'name', 'Riverside County Library System'),
(56885, 47491, 'en', 'name', 'Stuart C Dodd Institute for Social Innovation'),
(56886, 47492, 'en', 'name', 'Riverside County Office of Education'),
(56887, 47493, 'en', 'name', 'Physicians for Human Rights'),
(56888, 47494, 'en', 'name', 'Pittsburgh Promise Foundation'),
(56889, 47495, 'en', 'name', 'Rocketship Education'),
(56890, 47496, 'en', 'name', 'Pikes Peak Library District'),
(56891, 47497, 'en', 'name', 'Rodel Foundation of Delaware'),
(56892, 47498, 'en', 'name', 'Poynter Institute for Media Studies'),
(56893, 47499, 'en', 'name', 'Pine River Public Library District'),
(56894, 47500, 'en', 'name', 'Navajo Nation Library'),
(56895, 47501, 'en', 'name', 'Health Center'),
(56896, 47502, 'en', 'name', 'Pinellas Public Library Cooperative'),
(56897, 47503, 'en', 'name', 'Landesa Rural Development Institute'),
(56898, 47504, 'en', 'name', 'Pioneer Library System'),
(56899, 47505, 'en', 'name', 'Sacramento County Office of Education'),
(56900, 47506, 'en', 'name', 'First Candle'),
(56901, 47507, 'en', 'name', 'Sacramento Public Library'),
(56902, 47508, 'en', 'name', 'Plan International'),
(56903, 47509, 'en', 'name', 'Safe Crossings Foundation'),
(56904, 47510, 'en', 'name', 'Phoenix Public Library'),
(56905, 47511, 'en', 'name', 'Sundance Institute'),
(56906, 47512, 'en', 'name', 'Salt Lake County Library Services'),
(56907, 47513, 'en', 'name', 'Neighborcare Health'),
(56908, 47514, 'en', 'name', 'World Health Organization - Lyon Office'),
(56909, 47515, 'en', 'name', 'SEED Foundation'),
(56910, 47516, 'no_lang_code', 'name', 'Windmill Health Technologies (India)'),
(56911, 47517, 'en', 'name', 'Winston Churchill Foundation'),
(56912, 47518, 'en', 'name', 'New Brunswick Public Library Service'),
(56913, 47519, 'en', 'name', 'Small Enterprise Education and Promotion Network'),
(56914, 47520, 'en', 'name', 'New England Foundation for the Arts'),
(56915, 47521, 'en', 'name', 'World Affairs Council'),
(56916, 47522, 'en', 'name', 'Samaritan Healthcare'),
(56917, 47523, 'en', 'name', 'Sambodhi Research and Communications'),
(56918, 47524, 'en', 'name', 'World Affairs Council of Northern California'),
(56919, 47525, 'en', 'name', 'Smallholders Foundation'),
(56920, 47526, 'en', 'name', 'New Mexico Business Roundtable'),
(56921, 47527, 'en', 'name', 'Surge Institute'),
(56922, 47528, 'en', 'name', 'San Diego County Library'),
(56923, 47529, 'en', 'name', 'University Prep'),
(56924, 47530, 'en', 'name', 'New Mexico State Library'),
(56925, 47531, 'en', 'name', 'Santa Ana Public Library'),
(56926, 47532, 'en', 'name', 'Thomson Foundation'),
(56927, 47533, 'en', 'name', 'World Cocoa Foundation'),
(56928, 47534, 'en', 'name', 'Santa Cruz County Office of Education'),
(56929, 47535, 'en', 'name', 'Uplift Education'),
(56930, 47536, 'en', 'name', 'Santa Rosa County Library System'),
(56931, 47537, 'en', 'name', 'Vellore Christian Medical College Foundation'),
(56932, 47538, 'en', 'name', 'World Economic Forum'),
(56933, 47539, 'en', 'name', 'ReadWorks'),
(56934, 47540, 'en', 'name', 'World Federation of Public Health Associations'),
(56935, 47541, 'en', 'name', 'Ursuline Academy of Dallas'),
(56936, 47542, 'en', 'name', 'Therapeutic Health Services'),
(56937, 47543, 'en', 'name', 'World Health Organization - Nigeria'),
(56938, 47544, 'en', 'name', 'Saskatchewan Library Association'),
(56939, 47545, 'en', 'name', 'World Health Organization - Pakistan'),
(56940, 47546, 'en', 'name', 'Third Way'),
(56941, 47547, 'en', 'name', 'Thomas B. Fordham Institute'),
(56942, 47548, 'en', 'name', 'Val Verde County Library'),
(56943, 47549, 'no_lang_code', 'name', 'VaxTrac'),
(56944, 47550, 'en', 'name', 'Tiger Woods Foundation'),
(56945, 47551, 'en', 'name', 'World Health Partners'),
(56946, 47552, 'en', 'name', 'Save the Children'),
(56947, 47553, 'en', 'name', 'World Health Partners'),
(56948, 47554, 'en', 'name', 'School for Ethics and Global Leadership'),
(56949, 47555, 'en', 'name', 'Schools, Health & Libraries Broadband'),
(56950, 47556, 'en', 'name', 'Timberland Regional Library'),
(56951, 47557, 'en', 'name', 'Vera Institute of Justice'),
(56952, 47558, 'en', 'name', 'Tony Blair Africa Governance Initiative'),
(56953, 47559, 'en', 'name', 'Seattle Academy of Arts and Sciences'),
(56954, 47560, 'en', 'name', 'Training Programs in Epidemiology and Public Health Interventions Network'),
(56955, 47561, 'en', 'name', 'Seattle Center Foundation'),
(56956, 47562, 'en', 'name', 'Uongozi Institute'),
(56957, 47563, 'en', 'name', 'Utah Department of Heritage and Arts'),
(56958, 47564, 'en', 'name', 'Seattle Central College Foundation'),
(56959, 47565, 'en', 'name', 'World Savings and Retail Banking Institute'),
(56960, 47566, 'en', 'name', 'Ute Mountain Ute Tribe''s Environmental Programs Department'),
(56961, 47567, 'en', 'name', 'Seattle Education Access'),
(56962, 47568, 'en', 'name', 'Seattle Indian Health Board'),
(56963, 47569, 'en', 'name', 'World Trade Club'),
(56964, 47570, 'en', 'name', 'Trust for Advancement of Agricultural Sciences'),
(56965, 47571, 'en', 'name', 'Seattle International Foundation'),
(56966, 47572, 'en', 'name', 'First Tee of Greater Seattle'),
(56967, 47573, 'en', 'name', 'Trust for Vaccines & Immunization'),
(56968, 47574, 'en', 'name', 'World University Service of Canada'),
(56969, 47575, 'en', 'name', 'Vicente Ferrer Foundation'),
(56970, 47576, 'en', 'name', 'TrustAfrica'),
(56971, 47577, 'en', 'name', 'Seattle Parks Foundation'),
(56972, 47578, 'en', 'name', 'Virginia Beach Public Library'),
(56973, 47579, 'en', 'name', 'Tulalip Foundation'),
(56974, 47580, 'en', 'name', 'World Council of Credit Unions'),
(56975, 47581, 'en', 'name', 'Union Carnegie Library'),
(56976, 47582, 'en', 'name', 'United Federation of Teachers'),
(56977, 47583, 'en', 'name', 'Wyoming State Library'),
(56978, 47584, 'en', 'name', 'Virology Education'),
(56979, 47585, 'en', 'name', 'XPRIZE Foundation'),
(56980, 47586, 'en', 'name', 'Viva Hispanic Foundation NW'),
(56981, 47587, 'en', 'name', 'United General Hospital'),
(56982, 47588, 'en', 'name', 'United Indians of All Tribes'),
(56983, 47589, 'no_lang_code', 'name', 'Xenetic Biosciences (United States)'),
(56984, 47590, 'en', 'name', 'Volusia County Public Library'),
(56985, 47591, 'en', 'name', 'Washington Area Women’s Foundation'),
(56986, 47592, 'en', 'name', 'United Nations Association of the United States of America'),
(56987, 47593, 'en', 'name', 'United Nations Capital Development Fund'),
(56988, 47594, 'en', 'name', 'York County Libraries'),
(56989, 47595, 'en', 'name', 'Washington Association of School Administrators'),
(56990, 47596, 'en', 'name', 'United Nations Department of Economic and Social Affairs'),
(56991, 47597, 'en', 'name', 'Washington Global Health Alliance'),
(56992, 47598, 'en', 'name', 'Washington Health Foundation'),
(56993, 47599, 'en', 'name', 'Youth Leadership Institute'),
(56994, 47600, 'en', 'name', 'Washington News Council'),
(56995, 47601, 'en', 'name', 'Washington State Budget and Policy Center'),
(56996, 47602, 'en', 'name', 'Bolder Giving'),
(56997, 47603, 'en', 'name', 'Washington State Grange'),
(56998, 47604, 'en', 'name', 'Washington State Institute for Public Policy'),
(56999, 47605, 'en', 'name', 'Global Call to Action Against Poverty'),
(57000, 47606, 'en', 'name', 'United States Student Association'),
(57001, 47607, 'en', 'name', 'Courage360'),
(57002, 47608, 'de', 'name', 'Universal Postal Union'),
(57003, 47609, 'en', 'name', 'Washington Women''s Foundation'),
(57004, 47610, 'en', 'name', 'Summit Institute'),
(57005, 47611, 'en', 'name', 'Water Services Trust Fund'),
(57006, 47612, 'en', 'name', 'University Child Development School'),
(57007, 47613, 'en', 'name', 'Water Sanitation and Hygiene Institute'),
(57008, 47614, 'en', 'name', 'Rutgers Sexual and Reproductive Health and Rights'),
(57009, 47615, 'en', 'name', 'Yukon Department of Education'),
(57010, 47616, 'en', 'name', 'Way Back Inn'),
(57011, 47617, 'en', 'name', 'Wegene Ethiopian Foundation'),
(57012, 47618, 'en', 'name', 'Weippe Public Library'),
(57013, 47619, 'en', 'name', 'West Florida Public Libraries'),
(57014, 47620, 'en', 'name', 'West Virginia Library Commission'),
(57015, 47621, 'en', 'name', 'Australia Bioinformatics Resource'),
(57016, 47622, 'de', 'name', 'Institut für Vergleichende Medien und Kommunikationsforschung'),
(57017, 47622, 'en', 'name', 'Institute for Comparative Media and Communication Studies'),
(57018, 47623, 'de', 'name', 'Institut für Europäisches Schadenersatzrecht'),
(57019, 47623, 'en', 'name', 'Institute for European Tort Law'),
(57020, 47624, 'de', 'name', 'Institut für Interdisziplinäre Gebirgsforschung'),
(57021, 47624, 'en', 'name', 'Institute for Interdisciplinary Mountain Research'),
(57022, 47625, 'en', 'name', 'Harbage Consulting'),
(57023, 47626, 'de', 'name', 'Institut für Mittelalterforschung'),
(57024, 47626, 'en', 'name', 'Institute for Medieval Research'),
(57025, 47627, 'en', 'name', '1199SEIU Funds'),
(57026, 47628, 'de', 'name', 'Institut für die Erforschung der Habsburgermonarchie und des Balkanraumes'),
(57027, 47628, 'en', 'name', 'Institute for Habsburg and Balkan Studies'),
(57028, 47629, 'de', 'name', 'Institut für Orientalische und Europäische Archäologie'),
(57029, 47629, 'en', 'name', 'Institute for Oriental and European Archaeology'),
(57030, 47630, 'en', 'name', 'Leapfrog Group'),
(57031, 47631, 'de', 'name', 'Institut für Sozialanthropologie'),
(57032, 47631, 'en', 'name', 'Institute for Social Anthropology'),
(57033, 47632, 'de', 'name', 'Institut für Kulturgeschichte der Antike'),
(57034, 47632, 'en', 'name', 'Institute for the Study of Ancient Culture'),
(57035, 47633, 'pl', 'name', 'Glówny Urzad Geodezji i Kartografii'),
(57036, 47633, 'en', 'name', 'Head Office of Geodesy and Cartography'),
(57037, 47634, 'de', 'name', 'Institut für Kulturwissenschaften und Theatergeschichte'),
(57038, 47634, 'en', 'name', 'Institute of Culture Studies and Theatre History'),
(57039, 47635, 'no_lang_code', 'name', 'Leavitt Partners (United States)'),
(57040, 47636, 'de', 'name', 'Institut für Kunst- und Musikhistorische Forschungen'),
(57041, 47636, 'en', 'name', 'Institute of History of Art and Musicology'),
(57042, 47637, 'de', 'name', 'Institut für Iranistik'),
(57043, 47637, 'en', 'name', 'Institute of Iranian Studies'),
(57044, 47638, 'en', 'name', 'International Centre for Art and New Technologies'),
(57045, 47638, 'cs', 'name', 'MezinĆ”rodnĆ­ Centrum Pro UměnĆ­ a NovĆ© Technologie'),
(57046, 47639, 'lt', 'name', 'Lietuvos ornitologų draugija'),
(57047, 47639, 'en', 'name', 'Lithuanian Ornithological Society'),
(57048, 47640, 'de', 'name', 'Institut für Technikfolgen-Abschätzung'),
(57049, 47640, 'en', 'name', 'Institute of Technology Assessment'),
(57050, 47641, 'hu', 'name', 'Affektív Pszichológia Tanszék'),
(57051, 47642, 'de', 'name', 'Johann Radon Institut für Angewandte Mathematik'),
(57052, 47642, 'en', 'name', 'Johann Radon Institute for Computational and Applied Mathematics'),
(57053, 47643, 'en', 'name', 'Long Term Care Community Coalition'),
(57054, 47644, 'en', 'name', 'Stefan Meyer Institute for Subatomic Physics'),
(57055, 47644, 'de', 'name', 'Stefan-Meyer-Institut'),
(57056, 47645, 'en', 'name', 'Actors Fund of America'),
(57057, 47646, 'en', 'name', 'Citizens Budget Commission'),
(57058, 47647, 'de', 'name', 'Institut für Demographie'),
(57059, 47647, 'en', 'name', 'Vienna Institute of Demography'),
(57060, 47648, 'en', 'name', 'Romanian Intelligence Service'),
(57061, 47648, 'ro', 'name', 'Serviciul RomĆ¢n de Informații'),
(57062, 47649, 'en', 'name', 'Lown Cardiovascular Group'),
(57063, 47650, 'en', 'name', 'Health Services Research Association of Australia & New Zealand'),
(57064, 47651, 'no_lang_code', 'name', 'Manatt, Phelps & Phillips (United States)'),
(57065, 47652, 'en', 'name', 'Coalition to Transform Advanced Care'),
(57066, 47653, 'en', 'name', 'Alka Wildlife'),
(57067, 47654, 'en', 'name', 'Pacific Business Group on Health'),
(57068, 47655, 'en', 'name', 'Meadowlark Hills'),
(57069, 47656, 'en', 'name', 'Coleman Associates'),
(57070, 47657, 'en', 'name', 'Health Tech Strategies'),
(57071, 47658, 'en', 'name', 'Parkland Center For Clinical Innovation'),
(57072, 47659, 'en', 'name', 'Massachusetts Health Data Consortium'),
(57073, 47660, 'en', 'name', 'Partnership for Drug-Free Kids'),
(57074, 47661, 'en', 'name', 'Alliance for Aging Research'),
(57075, 47662, 'en', 'name', 'Massachusetts Health Quality Partners'),
(57076, 47663, 'en', 'name', 'Alliance for Health Reform'),
(57077, 47664, 'en', 'name', 'Massachusetts Senior Care Foundation'),
(57078, 47665, 'en', 'name', 'Pennsylvania Health Law Project'),
(57079, 47666, 'en', 'name', 'Persephone Productions'),
(57080, 47667, 'no_lang_code', 'name', 'Greenwald & Associates (United States)'),
(57081, 47668, 'en', 'name', 'Battery Park'),
(57082, 47669, 'en', 'name', 'Why Foundation'),
(57083, 47670, 'en', 'name', 'Promundo'),
(57084, 47671, 'en', 'name', 'Phipps Houses'),
(57085, 47672, 'en', 'name', 'Council of Accountable Physician Practices'),
(57086, 47673, 'en', 'name', 'American Association of Nurse Assessment Coordination'),
(57087, 47674, 'en', 'name', 'Money, Crime, and Health Policy Initiative'),
(57088, 47675, 'en', 'name', 'Crime Prevention Center'),
(57089, 47676, 'en', 'name', 'Illinois Department of Healthcare and Family Services'),
(57090, 47677, 'no_lang_code', 'name', 'MDS Associates (United States)'),
(57091, 47678, 'en', 'name', 'American College of Healthcare'),
(57092, 47679, 'no_lang_code', 'name', 'Smetumet'),
(57093, 47680, 'en', 'name', 'Medical Society of the State of New York'),
(57094, 47681, 'pl', 'name', 'Podlaska Regionalna Organizacja Turystyczna'),
(57095, 47682, 'no_lang_code', 'name', 'Inno-Water (Hungary)'),
(57096, 47683, 'en', 'name', 'Polish Dance Theatre'),
(57097, 47683, 'pl', 'name', 'Polski Teatr Tańca'),
(57098, 47684, 'en', 'name', 'Medicare Rights Center'),
(57099, 47685, 'en', 'name', 'American Public Human Services Association'),
(57100, 47686, 'en', 'name', 'Czech Society for Butterfly and Moth Conservation'),
(57101, 47687, 'en', 'name', 'American Society of Health Economists'),
(57102, 47688, 'en', 'name', 'Institute for Environmental Solutions'),
(57103, 47688, 'lv', 'name', 'Institūts Vides risinājumu'),
(57104, 47689, 'en', 'name', 'American Youth Policy Forum'),
(57105, 47690, 'no_lang_code', 'name', 'Politico (United States)'),
(57106, 47691, 'en', 'name', 'Czech Womens Lobby'),
(57107, 47691, 'cs', 'name', 'ČeskÔ ženskÔ lobby'),
(57108, 47692, 'en', 'name', 'Asian American Federation'),
(57109, 47693, 'en', 'name', 'MetroPlus Health Plan'),
(57110, 47694, 'en', 'name', 'ASPEA - Portuguese Association for Environmental Education'),
(57111, 47695, 'en', 'name', 'Institute for Health Policy Solutions'),
(57112, 47696, 'en', 'name', 'Midwest Business Group on Health'),
(57113, 47697, 'no_lang_code', 'name', 'Datastat'),
(57114, 47698, 'en', 'name', 'Prevent Child Abuse America'),
(57115, 47699, 'en', 'name', 'Ministry of Environmental Protection and Regional Development'),
(57116, 47700, 'en', 'name', 'Latvian Centre for Contemporary Art'),
(57117, 47701, 'en', 'name', 'Ministry of Labour, Family, Social Affairs and Equal Opportunities'),
(57118, 47702, 'en', 'name', 'Princeton Survey Research Associates International'),
(57119, 47703, 'en', 'name', 'Institute for Literature'),
(57120, 47703, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ за Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Š°'),
(57121, 47704, 'no_lang_code', 'name', 'ProDSP Technologies (Hungary)'),
(57122, 47705, 'en', 'name', 'Median Research Centre'),
(57123, 47706, 'pl', 'name', 'Uroczysko'),
(57124, 47707, 'en', 'name', 'State Innovation Exchange'),
(57125, 47708, 'en', 'name', 'Multicultural Center Prague'),
(57126, 47708, 'cs', 'name', 'MultikulturnĆ­ centrum Praha'),
(57127, 47709, 'en', 'name', 'DMA Health Strategies'),
(57128, 47710, 'pl', 'name', 'Wojewódzki Inspektorat Ochrony Środowiska w Warszawie'),
(57129, 47711, 'en', 'name', 'Association for Historical Dialogue and Research'),
(57130, 47712, 'en', 'name', 'Ecological Foundation Green Action'),
(57131, 47712, 'pl', 'name', 'Fundacja Ekologiczna "Zielona Akcja"'),
(57132, 47713, 'en', 'name', 'Association Horizons'),
(57133, 47714, 'en', 'name', 'Healthcentric Advisors'),
(57134, 47715, 'en', 'name', 'Association for Regional Development and Mental Health'),
(57135, 47716, 'en', 'name', 'Pro Carpathia'),
(57136, 47717, 'en', 'name', 'General Directorate for Environmental Protection'),
(57137, 47717, 'pl', 'name', 'Generalny Dyrektor Ochrony Środowiska'),
(57138, 47718, 'es', 'name', 'Asociación para el Progreso de la Mujer en el Mundo Rural'),
(57139, 47719, 'en', 'name', 'Association of Clinicians for the Underserved'),
(57140, 47720, 'en', 'name', 'Municipality of Kardzhali'),
(57141, 47720, 'bg', 'name', 'ŠžŠ±Ń‰ŠøŠ½Š° ŠšŃŠŃ€Š“Š¶Š°Š»Šø'),
(57142, 47721, 'en', 'name', 'Sofia Municipality'),
(57143, 47721, 'bg', 'name', 'Дтолична община'),
(57144, 47722, 'en', 'name', 'Regional History Museum Gabrovo'),
(57145, 47722, 'bg', 'name', 'Регионален исторически музей, Габрово'),
(57146, 47723, 'no_lang_code', 'name', 'Enviroinvest Environmental and Biotechnological Corp'),
(57147, 47724, 'no_lang_code', 'name', 'Sozopol Municipality'),
(57148, 47724, 'bg', 'name', 'ŠžŠ±Ń‰ŠøŠ½Š° Дозопол'),
(57149, 47725, 'et', 'name', 'Eesti Avatud Noortekeskuste Ühendus'),
(57150, 47726, 'en', 'name', 'Latino/a Educational Achievement Project'),
(57151, 47727, 'no_lang_code', 'name', 'Reos Production (Romania)'),
(57152, 47728, 'en', 'name', 'Topolovgrad Municipality'),
(57153, 47728, 'bg', 'name', 'ŠžŠ±Ń‰ŠøŠ½Š° ТополовграГ'),
(57154, 47729, 'en', 'name', 'Institute of the Republic of Slovenia for Nature Conservation'),
(57155, 47729, 'sl', 'name', 'Zavod republike Slovenije za varstvo narave'),
(57156, 47730, 'en', 'name', 'Museum of History Iskra'),
(57157, 47730, 'bg', 'name', 'Š˜ŃŃ‚Š¾Ń€ŠøŃ‡ŠµŃŠŗŠø музей Š˜ŃŠŗŃ€Š°'),
(57158, 47731, 'en', 'name', 'Estonian Union for Child Welfare'),
(57159, 47732, 'en', 'name', 'RK Evaluation and Strategies'),
(57160, 47733, 'en', 'name', 'ASTRA National Museum Complex'),
(57161, 47733, 'aa', 'name', 'Complexul Naţional Muzeal "ASTRA"'),
(57162, 47734, 'no_lang_code', 'name', 'AUS (United States)'),
(57163, 47735, 'ro', 'name', 'Administrația Națională Apele RomĆ¢ne'),
(57164, 47735, 'en', 'name', 'Romanian Waters National Administration'),
(57165, 47736, 'en', 'name', 'International Health Economics Association'),
(57166, 47737, 'en', 'name', 'Bailit Health'),
(57167, 47738, 'en', 'name', 'Executive Environment Agency'),
(57168, 47739, 'en', 'name', 'National Association of Medicaid Directors'),
(57169, 47740, 'en', 'name', 'Executive Forests Agency'),
(57170, 47741, 'en', 'name', 'International Longevity Centre'),
(57171, 47742, 'lv', 'name', 'Balteneko'),
(57172, 47743, 'en', 'name', 'National Consumer Voice for Quality Long-Term Care'),
(57173, 47744, 'en', 'name', 'International Society for Quality in Health Care'),
(57174, 47745, 'en', 'name', 'Rockefeller Archive Center'),
(57175, 47746, 'no_lang_code', 'name', 'Fermentia (Hungary)'),
(57176, 47747, 'en', 'name', 'National Coalition for Cancer Survivorship'),
(57177, 47748, 'no_lang_code', 'name', 'Inwatech (Hungary)'),
(57178, 47748, 'hu', 'name', 'Inwatech KƶrnyezetvƩdelmi Kft'),
(57179, 47749, 'no_lang_code', 'name', 'ROSA'),
(57180, 47750, 'en', 'name', 'Iowa Policy Project'),
(57181, 47751, 'no_lang_code', 'name', 'EagleDream Health'),
(57182, 47752, 'en', 'name', 'National Council on Interpreting in Health Care'),
(57183, 47753, 'en', 'name', 'BirdLife Cyprus'),
(57184, 47753, 'el', 'name', 'Ī Ļ„Ī·Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒĻ‚ Ī£ĻĪ½Ī“ĪµĻƒĪ¼ĪæĻ‚'),
(57185, 47754, 'en', 'name', 'Black Sea Energy Cluster'),
(57186, 47754, 'bg', 'name', 'Š§Š•Š ŠŠžŠœŠžŠ Š”ŠšŠ˜ Š•ŠŠ•Š Š“Š˜Š•Š ŠšŠ›ŠŖŠ”Š¢Š•Š '),
(57187, 47755, 'pl', 'name', 'Kostrzyca Forest Gene Bank'),
(57188, 47756, 'el', 'name', 'SciFY'),
(57189, 47757, 'en', 'name', 'Bratya Daskalovi Municipality'),
(57190, 47757, 'bg', 'name', 'ŠžŠ±Ń‰ŠøŠ½Š° Š‘Ń€Š°Ń‚Ń Даскалови'),
(57191, 47758, 'en', 'name', 'Forest Research Institute'),
(57192, 47758, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за гората'),
(57193, 47759, 'en', 'name', 'Jewish Healthcare Foundation'),
(57194, 47760, 'no_lang_code', 'name', 'Forum 50%'),
(57195, 47761, 'en', 'name', 'National Health Law Program'),
(57196, 47762, 'no_lang_code', 'name', 'Bulgarian Ports Infrastructure (Bulgaria)'),
(57197, 47762, 'bg', 'name', 'Š”ŠŖŠ Š–ŠŠ’ŠŠž ŠŸŠ Š•Š”ŠŸŠ Š˜ŠÆŠ¢Š˜Š• ŠŸŠ Š˜Š”Š¢ŠŠŠ˜Š©ŠŠ Š˜ŠŠ¤Š ŠŠ”Š¢Š Š£ŠšŠ¢Š£Š Š'),
(57198, 47763, 'no_lang_code', 'name', 'SeqOmics Biotechnology (Hungary)'),
(57199, 47764, 'en', 'name', 'National Hispanic Health Foundation'),
(57200, 47765, 'en', 'name', 'Johnson Group Consulting'),
(57201, 47766, 'en', 'name', 'National Hispanic Medical Association'),
(57202, 47767, 'en', 'name', 'Bulgarian Society for the Protection of Birds'),
(57203, 47768, 'en', 'name', 'Joint Center for Political and Economic Studies'),
(57204, 47769, 'en', 'name', 'eHealth Initiative'),
(57205, 47770, 'en', 'name', 'Slovinski National Park'),
(57206, 47770, 'pl', 'name', 'Słowiński Park Narodowy'),
(57207, 47771, 'en', 'name', 'Buzau County Museum'),
(57208, 47771, 'ro', 'name', 'Muzeul Județean Buzău'),
(57209, 47772, 'en', 'name', 'Small Business Majority'),
(57210, 47773, 'en', 'name', 'National Medical Fellowships'),
(57211, 47774, 'pl', 'name', 'Centrum Aktywności Społecznej Pryzmat'),
(57212, 47775, 'pl', 'name', 'Muzeum Narodowe w Gdańsku'),
(57213, 47775, 'en', 'name', 'National Museum in Gdansk'),
(57214, 47776, 'no_lang_code', 'name', 'Social Science Research Solutions (United States)'),
(57215, 47777, 'en', 'name', 'National Partnership for Women & Families'),
(57216, 47778, 'no_lang_code', 'name', 'KNG Health Consulting (United States)'),
(57217, 47779, 'en', 'name', 'Canadian Association for Health Services and Policy Research'),
(57218, 47780, 'en', 'name', 'Friends of the National Library of Medicine'),
(57219, 47781, 'sl', 'name', 'DruŔtvo Ključ'),
(57220, 47782, 'no_lang_code', 'name', 'GfK (United States)'),
(57221, 47783, 'en', 'name', 'Catalyst for Payment Reform'),
(57222, 47784, 'no_lang_code', 'name', 'Spragens and Associates (United States)'),
(57223, 47785, 'en', 'name', 'Justice in Aging'),
(57224, 47786, 'no_lang_code', 'name', 'Gender Studies'),
(57225, 47787, 'en', 'name', 'Center for Evaluation Innovation'),
(57226, 47788, 'en', 'name', 'Krzysztof Kluk Museum of Agriculture'),
(57227, 47788, 'pl', 'name', 'Muzeum Rolnictwa im. ks. Krzysztofa Kluka'),
(57228, 47789, 'en', 'name', 'National Women''s Law Center'),
(57229, 47790, 'en', 'name', 'Center For Medicare Advocacy'),
(57230, 47791, 'en', 'name', 'State Protected Areas Service'),
(57231, 47791, 'lt', 'name', 'Valstybine Saugomu Teritoriju Tarnyba'),
(57232, 47792, 'en', 'name', 'Lake Research Partners'),
(57233, 47793, 'en', 'name', 'Nebraska Press Association'),
(57234, 47794, 'en', 'name', 'Network for Excellence in Health Innovation'),
(57235, 47795, 'en', 'name', 'Gift of Life Foundation'),
(57236, 47796, 'en', 'name', 'Statistics Estonia'),
(57237, 47796, 'et', 'name', 'Statistikaamet'),
(57238, 47797, 'no_lang_code', 'name', 'Global Strategy Group'),
(57239, 47798, 'en', 'name', 'New Mexico Hospital Association'),
(57240, 47799, 'hu', 'name', 'Fiatal KĆ©pzőművĆ©szek StĆŗdiója'),
(57241, 47799, 'en', 'name', 'Studio of Young Artists Association'),
(57242, 47800, 'no_lang_code', 'name', 'Szuro Trade (Hungary)'),
(57243, 47801, 'en', 'name', 'Summit Health Institute for Research and Education'),
(57244, 47802, 'en', 'name', 'New York eHealth Collaborative'),
(57245, 47803, 'en', 'name', 'Grantmakers In Aging'),
(57246, 47804, 'en', 'name', 'Truman Center for National Policy'),
(57247, 47805, 'en', 'name', 'TDX Construction'),
(57248, 47806, 'en', 'name', 'Grantmakers In Health'),
(57249, 47807, 'en', 'name', 'New York Lawyers for the Public Interest'),
(57250, 47808, 'en', 'name', 'Grazute Regional Park'),
(57251, 47809, 'ro', 'name', 'Tehimpuls'),
(57252, 47810, 'en', 'name', 'Foundation for Health Leadership & Innovation'),
(57253, 47811, 'en', 'name', 'Chief Inspectorate of Environmental Protection'),
(57254, 47812, 'en', 'name', 'Child Health and Development Institute'),
(57255, 47813, 'en', 'name', 'The Century Foundation'),
(57256, 47814, 'no_lang_code', 'name', 'NuStats (United States)'),
(57257, 47815, 'en', 'name', 'Nuffield Trust'),
(57258, 47816, 'cs', 'name', 'ObčanskĆ© sdruženĆ­ Ametyst'),
(57259, 47817, 'en', 'name', 'Rocky Mountain PBS'),
(57260, 47818, 'en', 'name', 'Fryderyk Chopin Institute'),
(57261, 47818, 'pl', 'name', 'Narodowy Instytut Fryderyka Chopina'),
(57262, 47819, 'en', 'name', 'Zemaitija National Park'),
(57263, 47819, 'lt', 'name', 'Žemaitijos Nacionalinio Parko'),
(57264, 47820, 'en', 'name', 'Picker Institute Europe'),
(57265, 47821, 'en', 'name', 'Oikos – Cooperation and Development'),
(57266, 47821, 'pt', 'name', 'Oikos – Cooperação e Desenvolvimento'),
(57267, 47822, 'en', 'name', 'Jewish community Brno'),
(57268, 47823, 'en', 'name', 'Oklahoma Health Care Authority'),
(57269, 47824, 'pl', 'name', 'Ogród Zoologiczny we Wrocławiu'),
(57270, 47824, 'en', 'name', 'Wrocław Zoo'),
(57271, 47825, 'en', 'name', 'Serfenta Association'),
(57272, 47826, 'en', 'name', 'Surveying and Mapping Authority of the Republic of Slovenia'),
(57273, 47827, 'en', 'name', 'National Association of Community Health Centers'),
(57274, 47828, 'en', 'name', 'Vermont State House'),
(57275, 47829, 'en', 'name', 'National Research and Development Institute on Occupational Safety'),
(57276, 47830, 'no_lang_code', 'name', 'UAVision (Portugal)'),
(57277, 47831, 'en', 'name', 'Universal Health Care Action Network'),
(57278, 47832, 'en', 'name', 'Wildlife Society Alauda'),
(57279, 47833, 'en', 'name', 'Women''s Prison Association'),
(57280, 47834, 'pl', 'name', 'Warsztat Innowacji Społecznych'),
(57281, 47834, 'en', 'name', 'Workshop for Social Innovation');
INSERT INTO `ror_settings` VALUES
(57282, 47835, 'de', 'name', 'Arbeitsgemeinschaft medikamentƶse Tumortherapie'),
(57283, 47836, 'de', 'name', 'AGO Research GmbH'),
(57284, 47837, 'no_lang_code', 'name', 'Ab Analitica (Italy)'),
(57285, 47838, 'it', 'name', 'Associazione Italiana Ematologia Oncologia Pediatrica'),
(57286, 47839, 'no_lang_code', 'name', 'Otsuka Pharmaceutical (Spain)'),
(57287, 47840, 'it', 'name', 'Associazione Nazionale Medici Cardiologi Ospedalieri'),
(57288, 47841, 'no_lang_code', 'name', 'Keilir Academy'),
(57289, 47842, 'no_lang_code', 'name', 'Air Liquide (United Kingdom)'),
(57290, 47843, 'no_lang_code', 'name', 'AstraZeneca (Italy)'),
(57291, 47844, 'hu', 'name', 'Borsod-Abaúj-Zemplén Megyei KórhÔz és Egyetemi Oktató KórhÔz'),
(57292, 47845, 'no_lang_code', 'name', 'AstraZeneca (Spain)'),
(57293, 47846, 'no_lang_code', 'name', 'AB2 Bio (Switzerland)'),
(57294, 47847, 'it', 'name', 'Associazione Italiana per lo Studio del Fegato'),
(57295, 47848, 'no_lang_code', 'name', 'Anthera Pharmaceuticals (United States)'),
(57296, 47849, 'no_lang_code', 'name', 'Abbott (Netherlands)'),
(57297, 47850, 'no_lang_code', 'name', 'AntibioTx (Denmark)'),
(57298, 47851, 'no_lang_code', 'name', 'AbbVie (United Kingdom)'),
(57299, 47852, 'en', 'name', 'Belgian Society of Medical Oncology'),
(57300, 47853, 'no_lang_code', 'name', 'Antisense Therapeutics (Australia)'),
(57301, 47854, 'no_lang_code', 'name', 'AbbVie (Spain)'),
(57302, 47855, 'sv', 'name', 'Beroendecentrum Stockholm'),
(57303, 47856, 'no_lang_code', 'name', 'Chiesi (United Kingdom)'),
(57304, 47857, 'no_lang_code', 'name', 'Apceth Biopharma (Germany)'),
(57305, 47858, 'en', 'name', 'Austrian Breast & Colorectal Cancer Study Group'),
(57306, 47859, 'de', 'name', 'Berufsverband Niedergelassener GynƤkologischer Onkologen'),
(57307, 47860, 'no_lang_code', 'name', 'Apeptico (Austria)'),
(57308, 47861, 'no_lang_code', 'name', 'Betagenon (Sweden)'),
(57309, 47862, 'no_lang_code', 'name', 'Apocare Pharma (Germany)'),
(57310, 47863, 'no_lang_code', 'name', 'Apodemus (Sweden)'),
(57311, 47864, 'no_lang_code', 'name', 'Besins Healthcare (Belgium)'),
(57312, 47865, 'no_lang_code', 'name', 'Apogenix (Germany)'),
(57313, 47866, 'no_lang_code', 'name', 'Apogepha Arzneimittel (Germany)'),
(57314, 47867, 'no_lang_code', 'name', 'Ability Pharmaceuticals (Spain)'),
(57315, 47868, 'de', 'name', 'Augenklinik UniversitƤtsallee'),
(57316, 47869, 'it', 'name', 'Abiogen Pharma (Italy)'),
(57317, 47870, 'no_lang_code', 'name', 'Auris Medical (Switzerland)'),
(57318, 47871, 'no_lang_code', 'name', 'Auris Medical (United States)'),
(57319, 47872, 'no_lang_code', 'name', 'Alexion Pharmaceuticals (France)'),
(57320, 47873, 'no_lang_code', 'name', 'Abivax (France)'),
(57321, 47874, 'it', 'name', 'Azienda Unita'' Sanitaria Locale Di Modena'),
(57322, 47875, 'no_lang_code', 'name', 'Biofrontera (Germany)'),
(57323, 47876, 'en', 'name', 'Abnoba (Germany)'),
(57324, 47877, 'no_lang_code', 'name', 'Anges MG (United Kingdom)'),
(57325, 47878, 'no_lang_code', 'name', 'Biogen (Germany)'),
(57326, 47879, 'it', 'name', 'Azienda UnitĆ  Sanitaria Locale Rimini'),
(57327, 47880, 'no_lang_code', 'name', 'Apotex (Canada)'),
(57328, 47881, 'it', 'name', 'Azienda Sanitaria Locale Viterbo'),
(57329, 47882, 'no_lang_code', 'name', 'Alfa Wassermann (Poland)'),
(57330, 47883, 'no_lang_code', 'name', 'Biocon (Switzerland)'),
(57331, 47884, 'no_lang_code', 'name', 'Autifony Therapeutics (United Kingdom)'),
(57332, 47885, 'no_lang_code', 'name', 'Acacia Pharma (United Kingdom)'),
(57333, 47886, 'no_lang_code', 'name', 'Auxilium Engineering Services (United Kingdom)'),
(57334, 47887, 'no_lang_code', 'name', 'Allergan (France)'),
(57335, 47888, 'no_lang_code', 'name', 'Biogen (Italy)'),
(57336, 47889, 'no_lang_code', 'name', 'Aptevo Therapeutics (United Kingdom)'),
(57337, 47890, 'no_lang_code', 'name', 'Neoleukin Therapeutics (United States)'),
(57338, 47891, 'es', 'name', 'Alianza EspaƱola de Familias de Von Hippel Lindau'),
(57339, 47892, 'no_lang_code', 'name', 'Biogen (United Kingdom)'),
(57340, 47893, 'no_lang_code', 'name', 'Avillion (United Kingdom)'),
(57341, 47894, 'no_lang_code', 'name', 'Alio Medica (Poland)'),
(57342, 47895, 'no_lang_code', 'name', 'Accenture (United Kingdom)'),
(57343, 47896, 'no_lang_code', 'name', 'Avizorex Pharma (Spain)'),
(57344, 47897, 'no_lang_code', 'name', 'Accord (United Kingdom)'),
(57345, 47898, 'no_lang_code', 'name', 'Avraham Pharmaceuticals (Israel)'),
(57346, 47899, 'no_lang_code', 'name', 'Neoleukin Therapeutics (United Kingdom)'),
(57347, 47900, 'no_lang_code', 'name', 'Jazz Pharmaceuticals (France)'),
(57348, 47901, 'no_lang_code', 'name', 'Accord Healthcare (Poland)'),
(57349, 47902, 'no_lang_code', 'name', 'Biogen (Netherlands)'),
(57350, 47903, 'no_lang_code', 'name', 'Arafarma Group (Spain)'),
(57351, 47904, 'no_lang_code', 'name', 'AXON Neuroscience (Slovakia)'),
(57352, 47905, 'no_lang_code', 'name', 'Roivant Sciences (United States)'),
(57353, 47906, 'no_lang_code', 'name', 'ALK-Abelló (Spain)'),
(57354, 47907, 'no_lang_code', 'name', 'AstraZeneca (Netherlands)'),
(57355, 47908, 'no_lang_code', 'name', 'ALK-Abelló (Germany)'),
(57356, 47909, 'no_lang_code', 'name', 'BioibƩrica (Spain)'),
(57357, 47910, 'no_lang_code', 'name', 'Bioinova (Czechia)'),
(57358, 47911, 'fr', 'name', 'Arcagy Gineco'),
(57359, 47912, 'no_lang_code', 'name', 'Heel (Germany)'),
(57360, 47913, 'nl', 'name', 'AZ Turnhout'),
(57361, 47914, 'no_lang_code', 'name', 'Archigen Biotech (United Kingdom)'),
(57362, 47915, 'no_lang_code', 'name', 'BioMarin (Ireland)'),
(57363, 47916, 'it', 'name', 'Azienda-Unita'' Sanitaria Locale Di Cesena'),
(57364, 47917, 'no_lang_code', 'name', 'Achillion Pharmaceuticals (United States)'),
(57365, 47918, 'no_lang_code', 'name', 'AZAD Pharma (Switzerland)'),
(57366, 47919, 'no_lang_code', 'name', 'Acino International (Germany)'),
(57367, 47920, 'no_lang_code', 'name', 'BioMarin (Netherlands)'),
(57368, 47921, 'no_lang_code', 'name', 'Azellon (United Kingdom)'),
(57369, 47922, 'no_lang_code', 'name', 'BioMarin (United Kingdom)'),
(57370, 47923, 'it', 'name', 'Allegria'),
(57371, 47924, 'no_lang_code', 'name', 'Perrigo (Sweden)'),
(57372, 47925, 'no_lang_code', 'name', 'Vector Oncology (United States)'),
(57373, 47926, 'no_lang_code', 'name', 'Allergan (United Kingdom)'),
(57374, 47927, 'no_lang_code', 'name', 'Bionomics (Australia)'),
(57375, 47928, 'no_lang_code', 'name', 'Arno Therapeutics (United States)'),
(57376, 47929, 'no_lang_code', 'name', 'Bionor (Denmark)'),
(57377, 47930, 'no_lang_code', 'name', 'Bionorica (Germany)'),
(57378, 47931, 'no_lang_code', 'name', 'Allergan (Belgium)'),
(57379, 47932, 'it', 'name', 'Ospedali Riuniti Marche Nord'),
(57380, 47933, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Hungary)'),
(57381, 47934, 'no_lang_code', 'name', 'Almirall (Germany)'),
(57382, 47935, 'no_lang_code', 'name', 'Actelion (Netherlands)'),
(57383, 47936, 'fr', 'name', 'Association pour la Recherche de ThƩrapeutiques Innovantes en CancƩrologie'),
(57384, 47937, 'no_lang_code', 'name', 'Acucela (United States)'),
(57385, 47938, 'no_lang_code', 'name', 'Aviragen Therapeutics (Australia)'),
(57386, 47939, 'no_lang_code', 'name', 'Asacpharma (Spain)'),
(57387, 47940, 'no_lang_code', 'name', 'Addmedica (France)'),
(57388, 47941, 'no_lang_code', 'name', 'ASIT Biotech (Belgium)'),
(57389, 47942, 'no_lang_code', 'name', 'Adenovir Pharma (Sweden)'),
(57390, 47943, 'no_lang_code', 'name', 'Adienne (Switzerland)'),
(57391, 47944, 'no_lang_code', 'name', 'Biotest (Austria)'),
(57392, 47945, 'it', 'name', 'Azienda Ospedaliera Universitaria UniversitĆ  degli Studi della Campania Luigi Vanvitelli'),
(57393, 47946, 'no_lang_code', 'name', 'Adocia (France)'),
(57394, 47947, 'no_lang_code', 'name', 'advanceCOR (Germany)'),
(57395, 47948, 'no_lang_code', 'name', 'Acorda Therapeutics (Switzerland)'),
(57396, 47949, 'no_lang_code', 'name', 'Asklepion Pharmaceuticals (United States)'),
(57397, 47950, 'no_lang_code', 'name', 'Bioven (United Kingdom)'),
(57398, 47951, 'de', 'name', 'Asklepios Fachkliniken München-Gauting'),
(57399, 47952, 'de', 'name', 'Asklepios Klinik Sankt Augustin'),
(57400, 47953, 'no_lang_code', 'name', 'Advicenne Pharma (France)'),
(57401, 47954, 'no_lang_code', 'name', 'Adyton (Czechia)'),
(57402, 47955, 'de', 'name', 'Asklepios Kliniken Hamburg'),
(57403, 47956, 'no_lang_code', 'name', 'Novelion (United Kingdom)'),
(57404, 47957, 'no_lang_code', 'name', 'Aesculapius Farmaceutici (Italy)'),
(57405, 47958, 'no_lang_code', 'name', 'Blue Earth Diagnostics (United Kingdom)'),
(57406, 47959, 'no_lang_code', 'name', 'Aeterna Zentaris (Germany)'),
(57407, 47960, 'no_lang_code', 'name', 'Bluebird Bio (France)'),
(57408, 47961, 'es', 'name', 'Asociación Galega de Investigación na Enfermidade Inflamatoria Intestinal'),
(57409, 47962, 'no_lang_code', 'name', 'Amarantus Bioscience (United States)'),
(57410, 47963, 'no_lang_code', 'name', 'Amgen (Switzerland)'),
(57411, 47964, 'no_lang_code', 'name', 'Aflofarm (Poland)'),
(57412, 47965, 'it', 'name', 'Azienda Unita'' Sanitaria Locale di Parma'),
(57413, 47966, 'no_lang_code', 'name', 'AFT Pharmaceuticals (New Zealand)'),
(57414, 47967, 'no_lang_code', 'name', 'Boehringer Ingelheim (Belgium)'),
(57415, 47968, 'ca', 'name', 'Associació per la Recerca Oncològica'),
(57416, 47969, 'no_lang_code', 'name', 'Amicus Therapeutics (United Kingdom)'),
(57417, 47970, 'it', 'name', 'Azienda UnitĆ  Sanitaria Locale Della Romagna'),
(57418, 47971, 'no_lang_code', 'name', 'AMO Pharma (United Kingdom)'),
(57419, 47972, 'it', 'name', 'Associazione Italiana Pneumologi Ospedalieri'),
(57420, 47973, 'no_lang_code', 'name', 'Boehringer Ingelheim (Latvia)'),
(57421, 47974, 'no_lang_code', 'name', 'CellAct Pharma (Germany)'),
(57422, 47975, 'no_lang_code', 'name', 'Boiron (France)'),
(57423, 47976, 'no_lang_code', 'name', 'AZTherapies (United States)'),
(57424, 47977, 'no_lang_code', 'name', 'Bombastus-Werke (Germany)'),
(57425, 47978, 'no_lang_code', 'name', 'Bone Therapeutics'),
(57426, 47979, 'no_lang_code', 'name', 'Koncentra (Sweden)'),
(57427, 47980, 'no_lang_code', 'name', 'Celyad (Belgium)'),
(57428, 47981, 'nl', 'name', 'Borstkanker Onderzoek Groep'),
(57429, 47982, 'no_lang_code', 'name', 'Clinipace (United Kingdom)'),
(57430, 47983, 'no_lang_code', 'name', 'Anergis (Switzerland)'),
(57431, 47984, 'en', 'name', 'CliniRx Tangent Research'),
(57432, 47985, 'en', 'name', 'BASilar artery International Cooperation Study'),
(57433, 47986, 'no_lang_code', 'name', 'Clinuvel Pharmaceuticals (Switzerland)'),
(57434, 47987, 'en', 'name', 'Mech-Sense'),
(57435, 47988, 'en', 'name', 'Barcelona IVI Clinic'),
(57436, 47988, 'es', 'name', 'Clinica IVI Barcelona'),
(57437, 47989, 'no_lang_code', 'name', 'Clovis Oncology (United Kingdom)'),
(57438, 47990, 'no_lang_code', 'name', 'Bavarian Nordic (United States)'),
(57439, 47991, 'no_lang_code', 'name', 'Dance Biopharm (United States)'),
(57440, 47992, 'no_lang_code', 'name', 'CMC Contrast (Sweden)'),
(57441, 47993, 'no_lang_code', 'name', 'Codon (Germany)'),
(57442, 47994, 'no_lang_code', 'name', 'Coherus BioSciences (United States)'),
(57443, 47995, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Belgium)'),
(57444, 47996, 'en', 'name', 'Danish Breast Cancer Cooperative Group'),
(57445, 47997, 'no_lang_code', 'name', 'CoLucid Pharmaceuticals (United States)'),
(57446, 47998, 'en', 'name', 'Danish Head and Neck Cancer Group'),
(57447, 47999, 'no_lang_code', 'name', 'Combat Medical (Spain)'),
(57448, 48000, 'en', 'name', 'Danish Myeloma Study Group'),
(57449, 48001, 'no_lang_code', 'name', 'Bruno Farmaceutici (Italy)'),
(57450, 48002, 'no_lang_code', 'name', 'Dr. Franz Kƶhler Chemie (Germany)'),
(57451, 48003, 'no_lang_code', 'name', 'Bruschettini (Italy)'),
(57452, 48004, 'no_lang_code', 'name', 'Conatus Pharmaceuticals (United States)'),
(57453, 48005, 'no_lang_code', 'name', 'C4Pain (Denmark)'),
(57454, 48006, 'no_lang_code', 'name', 'Debiopharm (Switzerland)'),
(57455, 48007, 'no_lang_code', 'name', 'Teva Pharmaceuticals (France)'),
(57456, 48008, 'no_lang_code', 'name', 'Cerenis Therapeutics (France)'),
(57457, 48009, 'no_lang_code', 'name', 'Delcath Systems (United States)'),
(57458, 48010, 'no_lang_code', 'name', 'Sandberg Development (Sweden)'),
(57459, 48011, 'no_lang_code', 'name', 'Delenex (Switzerland)'),
(57460, 48012, 'no_lang_code', 'name', 'Can-Fite BioPharma (Israel)'),
(57461, 48013, 'es', 'name', 'Consorci Sanitari de Terrassa'),
(57462, 48014, 'no_lang_code', 'name', 'Canbex Therapeutics (United Kingdom)'),
(57463, 48015, 'no_lang_code', 'name', 'Kreussler (Germany)'),
(57464, 48016, 'it', 'name', 'Consorzio Oncotech'),
(57465, 48017, 'no_lang_code', 'name', 'Cardiorentis (Switzerland)'),
(57466, 48018, 'no_lang_code', 'name', 'Cook Medical (Denmark)'),
(57467, 48019, 'no_lang_code', 'name', 'Diomed (United Kingdom)'),
(57468, 48020, 'no_lang_code', 'name', 'Chemo (France)'),
(57469, 48021, 'no_lang_code', 'name', 'Dermapharm (Germany)'),
(57470, 48022, 'no_lang_code', 'name', 'CytoTools (Germany)'),
(57471, 48023, 'it', 'name', 'Policlinico Abano Terme'),
(57472, 48024, 'no_lang_code', 'name', 'Chiesi (France)'),
(57473, 48025, 'no_lang_code', 'name', 'TiGenix (Spain)'),
(57474, 48026, 'no_lang_code', 'name', 'Klosterfrau Healthcare Group (Germany)'),
(57475, 48027, 'de', 'name', 'Deutsche Homƶopathie-Union'),
(57476, 48028, 'en', 'name', 'Children''s Oncology Group'),
(57477, 48029, 'no_lang_code', 'name', 'Celimmune (United States)'),
(57478, 48030, 'no_lang_code', 'name', 'Develco Pharma (Switzerland)'),
(57479, 48031, 'no_lang_code', 'name', 'Cosmo Pharmaceuticals (Ireland)'),
(57480, 48032, 'no_lang_code', 'name', 'Dexcel Pharma (United Kingdom)'),
(57481, 48033, 'no_lang_code', 'name', 'Dextech Medical (Sweden)'),
(57482, 48034, 'no_lang_code', 'name', 'Diagram (Netherlands)'),
(57483, 48035, 'no_lang_code', 'name', 'Dr. Kade Pharmazeutische Fabrik (Germany)'),
(57484, 48036, 'de', 'name', 'DIAKO'),
(57485, 48037, 'no_lang_code', 'name', 'Cidara Therapeutics (United States)'),
(57486, 48038, 'no_lang_code', 'name', 'Crolll (Germany)'),
(57487, 48039, 'no_lang_code', 'name', 'Dr Ritsert Pharma (Germany)'),
(57488, 48040, 'no_lang_code', 'name', 'Croma Pharma (Austria)'),
(57489, 48041, 'no_lang_code', 'name', 'Dr Willmar Schwabe (Germany)'),
(57490, 48042, 'no_lang_code', 'name', 'Cipla (Belgium)'),
(57491, 48043, 'no_lang_code', 'name', 'Johnson & Johnson (Italy)'),
(57492, 48044, 'no_lang_code', 'name', 'CSL (Russia)'),
(57493, 48045, 'no_lang_code', 'name', 'Dicerna Pharmaceuticals (United States)'),
(57494, 48046, 'no_lang_code', 'name', 'DS Biopharma (Ireland)'),
(57495, 48047, 'no_lang_code', 'name', 'Citospin (Spain)'),
(57496, 48048, 'no_lang_code', 'name', 'CTI BioPharma (Italy)'),
(57497, 48049, 'no_lang_code', 'name', 'Modus Therapeutics (Sweden)'),
(57498, 48050, 'no_lang_code', 'name', 'Dimension Therapeutics (United States)'),
(57499, 48051, 'no_lang_code', 'name', 'Clarus Therapeutics (United States)'),
(57500, 48052, 'no_lang_code', 'name', 'Clementia Pharmaceuticals (France)'),
(57501, 48053, 'no_lang_code', 'name', 'CureTech (Israel)'),
(57502, 48054, 'no_lang_code', 'name', 'CureVac (Germany)'),
(57503, 48055, 'no_lang_code', 'name', 'Diurnal (United Kingdom)'),
(57504, 48056, 'es', 'name', 'Sociedad EspaƱola de Farmacologƭa Clƭnica'),
(57505, 48057, 'en', 'name', 'Clinical Research Center for Hair and Skin Science'),
(57506, 48058, 'no_lang_code', 'name', 'Maruho (United States)'),
(57507, 48059, 'no_lang_code', 'name', 'Dolorgiet (Germany)'),
(57508, 48060, 'en', 'name', 'HOVON – the Haemato Oncology Foundation for Adults in the Netherlands'),
(57509, 48060, 'nl', 'name', 'Hovon'),
(57510, 48061, 'no_lang_code', 'name', 'Cyathus Exquirere (Austria)'),
(57511, 48062, 'no_lang_code', 'name', 'Cyclacel Pharmaceuticals (United States)'),
(57512, 48063, 'nl', 'name', 'Stichting Kind en Groei'),
(57513, 48064, 'no_lang_code', 'name', 'Kuros Biosciences (Switzerland)'),
(57514, 48065, 'it', 'name', 'Fondazione Melanoma Onlus'),
(57515, 48066, 'no_lang_code', 'name', 'Cytovac (Denmark)'),
(57516, 48067, 'nl', 'name', 'Pancreatitis Werkgroep Nederland'),
(57517, 48068, 'it', 'name', 'Fondazione Michelangelo'),
(57518, 48069, 'no_lang_code', 'name', 'Dr. August Wolff (Germany)'),
(57519, 48070, 'no_lang_code', 'name', 'Ergomed Clinical Research (United Kingdom)'),
(57520, 48071, 'no_lang_code', 'name', 'Genera (Croatia)'),
(57521, 48072, 'no_lang_code', 'name', 'Dynavax Technologies (Germany)'),
(57522, 48073, 'no_lang_code', 'name', 'Erydel (Italy)'),
(57523, 48074, 'no_lang_code', 'name', 'Genkyotex (France)'),
(57524, 48075, 'no_lang_code', 'name', 'Genmab (Denmark)'),
(57525, 48076, 'it', 'name', 'Fondazione Neureca Onlus'),
(57526, 48077, 'no_lang_code', 'name', 'GenSight Biologics (France)'),
(57527, 48078, 'en', 'name', 'EB House Austria'),
(57528, 48079, 'it', 'name', 'Network Italiano Per la Bioterapia Dei Tumori'),
(57529, 48080, 'no_lang_code', 'name', 'Essa Pharma (United States)'),
(57530, 48081, 'no_lang_code', 'name', 'Echo Pharmaceuticals (Netherlands)'),
(57531, 48082, 'no_lang_code', 'name', 'Navitas Life Sciences (Germany)'),
(57532, 48083, 'no_lang_code', 'name', 'Mithra Pharmaceuticals (Belgium)'),
(57533, 48084, 'no_lang_code', 'name', 'Genticel (France)'),
(57534, 48085, 'no_lang_code', 'name', 'GWT-TUD (Germany)'),
(57535, 48086, 'no_lang_code', 'name', 'Eiger Biopharmaceuticals (United States)'),
(57536, 48087, 'en', 'name', 'European Thoracic Oncology Platform'),
(57537, 48088, 'no_lang_code', 'name', 'Lundbeck (Spain)'),
(57538, 48089, 'no_lang_code', 'name', 'Sanofi (Netherlands)'),
(57539, 48090, 'it', 'name', 'Fondazione Ricerca Traslazionale'),
(57540, 48091, 'no_lang_code', 'name', 'Eisai (Italy)'),
(57541, 48092, 'it', 'name', 'Fondazione Sandro Pitigliani'),
(57542, 48093, 'no_lang_code', 'name', 'Halozyme Therapeutics (United States)'),
(57543, 48094, 'en', 'name', 'European Society for Blood and Marrow Transplantation'),
(57544, 48095, 'no_lang_code', 'name', 'Eli Lilly (Switzerland)'),
(57545, 48096, 'no_lang_code', 'name', 'Eli Lilly (Netherlands)'),
(57546, 48097, 'en', 'name', 'European Uro Oncology Group'),
(57547, 48098, 'de', 'name', 'Gesellschaft für Pädiatrische Onkologie und Hämatologie'),
(57548, 48098, 'en', 'name', 'Society of Paediatric Oncology and Haematology'),
(57549, 48099, 'no_lang_code', 'name', 'Gerolsteiner Brunnen (Germany)'),
(57550, 48100, 'fr', 'name', 'Groupe d''Ɖtude ThĆ©rapeutique des Affections Inflammatoires du Tube Digestif'),
(57551, 48101, 'no_lang_code', 'name', 'Elpen Pharmaceutical (Greece)'),
(57552, 48102, 'no_lang_code', 'name', 'Evestra (Germany)'),
(57553, 48103, 'no_lang_code', 'name', 'ImmuPharma (France)'),
(57554, 48104, 'nl', 'name', 'GGZ Oost Brabant'),
(57555, 48105, 'no_lang_code', 'name', 'Hannover Clinical Trial Center (Germany)'),
(57556, 48106, 'no_lang_code', 'name', 'Forward Pharma (Germany)'),
(57557, 48107, 'no_lang_code', 'name', 'Emotional Brain (Netherlands)'),
(57558, 48108, 'es', 'name', 'Grup d''Investigació i Divulgació Oncológica'),
(57559, 48109, 'no_lang_code', 'name', 'Harras Pharma (Germany)'),
(57560, 48110, 'no_lang_code', 'name', 'Empros Pharma (Sweden)'),
(57561, 48111, 'no_lang_code', 'name', 'Evgen Pharma (United Kingdom)'),
(57562, 48112, 'no_lang_code', 'name', 'Enceladus Pharmaceuticals (Netherlands)'),
(57563, 48113, 'no_lang_code', 'name', 'Strathspey Crown (United States)'),
(57564, 48114, 'no_lang_code', 'name', 'Evolva (Switzerland)'),
(57565, 48115, 'no_lang_code', 'name', 'Ewopharma (Slovakia)'),
(57566, 48116, 'it', 'name', 'Gruppo Italiano di Oncologia Geriatrica'),
(57567, 48117, 'no_lang_code', 'name', 'Exalenz Bioscience (Israel)'),
(57568, 48118, 'it', 'name', 'SocietĆ  Italiana di Cardiologia Interventistica'),
(57569, 48119, 'it', 'name', 'Gruppo Italiano per il Trapianto di Midollo Osseo'),
(57570, 48120, 'no_lang_code', 'name', 'Ensinger Mineral-Heilquellen (Germany)'),
(57571, 48121, 'no_lang_code', 'name', 'Mineralbrunnen Überkingen Teinach Beteiligungs'),
(57572, 48122, 'en', 'name', 'Hellenic Cardiovascular Research Society'),
(57573, 48123, 'no_lang_code', 'name', 'Hellenic Cooperative Oncology Group'),
(57574, 48124, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (Netherlands)'),
(57575, 48125, 'no_lang_code', 'name', 'Faron Pharmaceutical (Finland)'),
(57576, 48126, 'en', 'name', 'Hellenic Oncology Research Group'),
(57577, 48127, 'no_lang_code', 'name', 'FF Pharma (Netherlands)'),
(57578, 48128, 'es', 'name', 'Fundación Hospital Provincial de Castellón'),
(57579, 48129, 'en', 'name', 'Hellenic Society of Medical Education'),
(57580, 48129, 'el', 'name', 'Ī•Ī›Ī›Ī—ĪĪ™ĪšĪ— ΕΤΑΙΔΕΙΑ Ī™Ī‘Ī¤Ī”Ī™ĪšĪ—Ī£ Ī•ĪšĪ Ī‘Ī™Ī”Ī•Ī„Ī£Ī—Ī£'),
(57581, 48130, 'fr', 'name', 'FƩdƩration Francophone de CancƩrologie Digestive'),
(57582, 48131, 'no_lang_code', 'name', 'Glenmark Pharmaceuticals (Switzerland)'),
(57583, 48132, 'no_lang_code', 'name', 'Gliknik (United States)'),
(57584, 48133, 'no_lang_code', 'name', 'Glycotope (Germany)'),
(57585, 48134, 'it', 'name', 'Gruppo Oncologico dell''Italia Meridionale'),
(57586, 48134, 'en', 'name', 'Oncology Group of Southern Italy'),
(57587, 48135, 'it', 'name', 'Gruppo Oncologico del Nord Ovest'),
(57588, 48136, 'no_lang_code', 'name', 'Hennig Arzneimittel (Germany)'),
(57589, 48137, 'no_lang_code', 'name', 'hVIVO (United Kingdom)'),
(57590, 48138, 'de', 'name', 'Grachtenhaus-Apotheke'),
(57591, 48139, 'no_lang_code', 'name', 'Herantis Pharma (Finland)'),
(57592, 48140, 'no_lang_code', 'name', 'Flamel (Ireland)'),
(57593, 48141, 'no_lang_code', 'name', 'Fluidda (Belgium)'),
(57594, 48142, 'no_lang_code', 'name', 'FluoroPharma Medical (United States)'),
(57595, 48143, 'no_lang_code', 'name', 'Hevert Arzneimittel (Germany)'),
(57596, 48144, 'no_lang_code', 'name', 'Grifols (United States)'),
(57597, 48145, 'no_lang_code', 'name', 'IBSA Institut Biochimique (Switzerland)'),
(57598, 48146, 'en', 'name', 'Lymphoma Study Association'),
(57599, 48147, 'no_lang_code', 'name', 'Futura Medical (United Kingdom)'),
(57600, 48148, 'fr', 'name', 'Groupe Francophone des MyƩlodysplasies'),
(57601, 48149, 'no_lang_code', 'name', 'Gerot Lannach (Austria)'),
(57602, 48150, 'no_lang_code', 'name', 'Green Cross (United States)'),
(57603, 48151, 'no_lang_code', 'name', 'Galena Biopharma (United States)'),
(57604, 48152, 'it', 'name', 'Gruppo Italiano per lo Studio dei Carcinomi dell’Apparato Digerente'),
(57605, 48153, 'no_lang_code', 'name', 'Grunenthal (Spain)'),
(57606, 48154, 'no_lang_code', 'name', 'GALENpharma (Germany)'),
(57607, 48155, 'no_lang_code', 'name', 'HolsboerMaschmeyer NeuroChemie (Germany)'),
(57608, 48156, 'no_lang_code', 'name', 'Galmed Pharmaceuticals (Israel)'),
(57609, 48157, 'en', 'name', 'International Extranodal Lymphoma Study Group'),
(57610, 48158, 'it', 'name', 'Fondazione Istituto G. Giglio di Cefalù'),
(57611, 48159, 'no_lang_code', 'name', 'Homviora (Germany)'),
(57612, 48160, 'no_lang_code', 'name', 'Gamida Cell (Israel)'),
(57613, 48161, 'es', 'name', 'Grupo de Tratamiento de los Tumores Digestivos'),
(57614, 48162, 'no_lang_code', 'name', 'Astellas Pharma (Germany)'),
(57615, 48163, 'no_lang_code', 'name', 'İlkogen (Turkey)'),
(57616, 48164, 'es', 'name', 'Grupo Español de Investigación en Neurooncología'),
(57617, 48165, 'no_lang_code', 'name', 'Iltoo Pharma (France)'),
(57618, 48166, 'no_lang_code', 'name', 'Pfizer (Germany)'),
(57619, 48167, 'es', 'name', 'Grupo EspaƱol de Trasplante HematopoyƩtico y Terapia Celular'),
(57620, 48168, 'no_lang_code', 'name', 'ImCyse (Belgium)'),
(57621, 48169, 'en', 'name', 'Gateshead Health NHS Foundation Trust'),
(57622, 48170, 'es', 'name', 'Grupo EspaƱol Multidisciplinar de Melanoma'),
(57623, 48171, 'no_lang_code', 'name', 'Immodulon Therapeutics (United Kingdom)'),
(57624, 48172, 'it', 'name', 'Gruppo Oncologico Italiano di Ricerca Clinica'),
(57625, 48172, 'en', 'name', 'Italian Oncology Group of Clinical Research'),
(57626, 48173, 'no_lang_code', 'name', 'GlaxoSmithKline (Poland)'),
(57627, 48174, 'no_lang_code', 'name', 'Immungenetics (Germany)'),
(57628, 48175, 'no_lang_code', 'name', 'ImmunoCellular Therapeutics (United States)'),
(57629, 48176, 'no_lang_code', 'name', 'Gebro Pharma (Austria)'),
(57630, 48177, 'es', 'name', 'Hospital Universitari de Vic'),
(57631, 48178, 'no_lang_code', 'name', 'GTx (United States)'),
(57632, 48179, 'no_lang_code', 'name', 'Immunocore (United States)'),
(57633, 48180, 'no_lang_code', 'name', 'Guerbet (France)'),
(57634, 48181, 'no_lang_code', 'name', 'Immunomedics (Germany)'),
(57635, 48182, 'no_lang_code', 'name', 'Gene PreDiT (Portugal)'),
(57636, 48183, 'no_lang_code', 'name', 'Amgen (United Kingdom)'),
(57637, 48184, 'no_lang_code', 'name', 'Isofol (Sweden)'),
(57638, 48185, 'no_lang_code', 'name', 'Kamada (Israel)'),
(57639, 48186, 'no_lang_code', 'name', 'ImunomedicA (Czechia)'),
(57640, 48187, 'no_lang_code', 'name', 'InDex Pharmaceuticals (Sweden)'),
(57641, 48188, 'en', 'name', 'Italian Sarcoma Group'),
(57642, 48189, 'no_lang_code', 'name', 'Institut für Biomedizinische Analytik und NMR Imaging (Germany)'),
(57643, 48190, 'it', 'name', 'Trials Italiani in Oncologia Medica'),
(57644, 48191, 'no_lang_code', 'name', 'InfectoPharm (Germany)'),
(57645, 48192, 'en', 'name', 'IVI Madrid Clinic'),
(57646, 48193, 'en', 'name', 'Institute of Molecular Medicine and Biomedical Research'),
(57647, 48193, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪœĪæĻĪ¹Ī±ĪŗĪ®Ļ‚ Ιατρικής και Ī’Ī¹ĪæĻŠĪ±Ļ„ĻĪ¹ĪŗĪ®Ļ‚ ĪˆĻĪµĻ…Ī½Ī±Ļ‚'),
(57648, 48194, 'en', 'name', 'IVI Sevilla Clinic'),
(57649, 48195, 'no_lang_code', 'name', 'Indukern (Spain)'),
(57650, 48196, 'en', 'name', 'IVI Valencia Clinic'),
(57651, 48197, 'no_lang_code', 'name', 'Servier (Spain)'),
(57652, 48198, 'no_lang_code', 'name', 'Infirst Healthcare (United Kingdom)'),
(57653, 48199, 'no_lang_code', 'name', 'Khondrion (Netherlands)'),
(57654, 48200, 'no_lang_code', 'name', 'Laguna Pharmaceuticals (United States)'),
(57655, 48201, 'no_lang_code', 'name', 'Inmunal (Spain)'),
(57656, 48202, 'no_lang_code', 'name', 'Inmunotek (Spain)'),
(57657, 48203, 'es', 'name', 'Instituto de Investigaciones del SueƱo'),
(57658, 48204, 'no_lang_code', 'name', 'Kitov Pharmaceuticals (Israel)'),
(57659, 48205, 'de', 'name', 'Katholisches Klinikum Ruhrgebiet Nord GmbH'),
(57660, 48206, 'no_lang_code', 'name', 'Laves-Arzneimittel (Germany)'),
(57661, 48207, 'es', 'name', 'Instituto Palacios'),
(57662, 48208, 'es', 'name', 'Instituto Tecnológico PET'),
(57663, 48209, 'no_lang_code', 'name', 'Leo Pharma (France)'),
(57664, 48210, 'no_lang_code', 'name', 'Intec Pharma (Israel)'),
(57665, 48211, 'no_lang_code', 'name', 'Insmed (United Kingdom)'),
(57666, 48212, 'no_lang_code', 'name', 'Valneva (United States)'),
(57667, 48213, 'no_lang_code', 'name', 'LETI Pharma (Germany)'),
(57668, 48214, 'fr', 'name', 'Intergroupe Francophone du MyƩlome'),
(57669, 48215, 'no_lang_code', 'name', 'LFB (United States)'),
(57670, 48216, 'no_lang_code', 'name', 'Light Sciences Oncology (United States)'),
(57671, 48217, 'de', 'name', 'Therapeutische Drug Monitoring Kinder-und Jugendpsychiatrie'),
(57672, 48218, 'no_lang_code', 'name', 'Maruho (United Kingdom)'),
(57673, 48219, 'no_lang_code', 'name', 'Promore Pharma (Sweden)'),
(57674, 48220, 'no_lang_code', 'name', 'Intermed Pharmaceutical Laboratories (Greece)'),
(57675, 48221, 'no_lang_code', 'name', 'Pfizer (France)'),
(57676, 48222, 'no_lang_code', 'name', 'Matrizyme (Canada)'),
(57677, 48223, 'no_lang_code', 'name', 'IPPMed (Germany)'),
(57678, 48223, 'de', 'name', 'Institut für Pharmakologie und Präventive Medizin'),
(57679, 48224, 'no_lang_code', 'name', 'Ipsen (Netherlands)'),
(57680, 48225, 'no_lang_code', 'name', 'Merck Serono (Italy)'),
(57681, 48226, 'no_lang_code', 'name', 'Johnson & Johnson (Sweden)'),
(57682, 48227, 'no_lang_code', 'name', 'Ipsen (Germany)'),
(57683, 48228, 'no_lang_code', 'name', 'Ipsen (Spain)'),
(57684, 48229, 'no_lang_code', 'name', 'LukƔcs Ʃs TƔrsa (Hungary)'),
(57685, 48230, 'no_lang_code', 'name', 'Merck (Spain)'),
(57686, 48231, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Germany)'),
(57687, 48232, 'no_lang_code', 'name', 'Luzitin (Portugal)'),
(57688, 48233, 'no_lang_code', 'name', 'Mesoestetic Pharma (Spain)'),
(57689, 48234, 'no_lang_code', 'name', 'Lycera (United States)'),
(57690, 48235, 'no_lang_code', 'name', 'MetrioPharm (Germany)'),
(57691, 48236, 'no_lang_code', 'name', 'Medical Developments (United Kingdom)'),
(57692, 48237, 'no_lang_code', 'name', 'MIB (Germany)'),
(57693, 48238, 'no_lang_code', 'name', 'Kura Oncology (United States)'),
(57694, 48239, 'no_lang_code', 'name', 'Kyowa Kirin International (United Kingdom)'),
(57695, 48240, 'no_lang_code', 'name', 'Shield Therapeutics (Switzerland)'),
(57696, 48241, 'no_lang_code', 'name', 'Medice (Germany)'),
(57697, 48242, 'no_lang_code', 'name', 'GlaxoSmithKline (France)'),
(57698, 48243, 'no_lang_code', 'name', 'Mabion (Poland)'),
(57699, 48244, 'no_lang_code', 'name', 'HRA Pharma (United Kingdom)'),
(57700, 48245, 'no_lang_code', 'name', 'Innothera (France)'),
(57701, 48246, 'no_lang_code', 'name', 'Mologen (Germany)'),
(57702, 48247, 'no_lang_code', 'name', 'Recordati (France)'),
(57703, 48248, 'no_lang_code', 'name', 'Ethypharm (France)'),
(57704, 48249, 'no_lang_code', 'name', 'Montavit (Austria)'),
(57705, 48250, 'no_lang_code', 'name', 'Mediolanum Farmaceutici (Italy)'),
(57706, 48251, 'no_lang_code', 'name', 'Mayoly Spindler (France)'),
(57707, 48252, 'no_lang_code', 'name', 'Motif BioSciences (United States)'),
(57708, 48253, 'no_lang_code', 'name', 'SMB (Belgium)'),
(57709, 48254, 'no_lang_code', 'name', 'Thea (France)'),
(57710, 48255, 'no_lang_code', 'name', 'MUC Research (Germany)'),
(57711, 48256, 'nl', 'name', 'Nederlandse Vereniging van Artsen voor Longziekten en Tuberculose'),
(57712, 48257, 'no_lang_code', 'name', 'Laboratorio De Aplicaciones Farmacodinamicas (Spain)'),
(57713, 48258, 'no_lang_code', 'name', 'Nektar Therapeutics (United States)'),
(57714, 48259, 'no_lang_code', 'name', 'Meditop (Hungary)'),
(57715, 48260, 'no_lang_code', 'name', 'Mucos Pharma (Germany)'),
(57716, 48261, 'no_lang_code', 'name', 'Neovacs (France)'),
(57717, 48262, 'no_lang_code', 'name', 'MediWound (Germany)'),
(57718, 48263, 'de', 'name', 'Mukoviszidose - Bundesverband Cystische Fibrose'),
(57719, 48263, 'en', 'name', 'The Cystic Fibrosis Institute'),
(57720, 48264, 'no_lang_code', 'name', 'Novartis (Hungary)'),
(57721, 48265, 'no_lang_code', 'name', 'Mundipharma (Sweden)'),
(57722, 48266, 'no_lang_code', 'name', 'NeRRe Therapeutics (United Kingdom)'),
(57723, 48267, 'no_lang_code', 'name', 'Mundipharma (Netherlands)'),
(57724, 48268, 'no_lang_code', 'name', 'Farmalder (Spain)'),
(57725, 48269, 'no_lang_code', 'name', 'Mundipharma (Germany)'),
(57726, 48270, 'no_lang_code', 'name', 'NeuroDerm (Israel)'),
(57727, 48271, 'no_lang_code', 'name', 'Osmotica Pharmaceutical (United States)'),
(57728, 48272, 'no_lang_code', 'name', 'Myelo Therapeutics (Germany)'),
(57729, 48273, 'no_lang_code', 'name', 'Neurophyxia (Netherlands)'),
(57730, 48274, 'no_lang_code', 'name', 'Hisamitsu Pharmaceutical (United States)'),
(57731, 48275, 'no_lang_code', 'name', 'NeuroVive Pharmaceutical (Sweden)'),
(57732, 48276, 'no_lang_code', 'name', 'Newron Pharmaceuticals (Italy)'),
(57733, 48277, 'no_lang_code', 'name', 'Nabriva Therapeutics (Austria)'),
(57734, 48278, 'no_lang_code', 'name', 'Otsuka (Germany)'),
(57735, 48279, 'no_lang_code', 'name', 'Pierre Fabre (United Kingdom)'),
(57736, 48280, 'no_lang_code', 'name', 'PIQUR Therapeutics (Switzerland)'),
(57737, 48281, 'no_lang_code', 'name', 'Piramal (Germany)'),
(57738, 48282, 'no_lang_code', 'name', 'Otsuka (France)'),
(57739, 48283, 'en', 'name', 'Nordic MDS Group'),
(57740, 48284, 'no_lang_code', 'name', 'Plazmaferezis'),
(57741, 48285, 'no_lang_code', 'name', 'OxThera (Sweden)'),
(57742, 48286, 'no_lang_code', 'name', 'PledPharma (Sweden)'),
(57743, 48287, 'no_lang_code', 'name', 'Nuvo Pharmaceuticals (Germany)'),
(57744, 48288, 'no_lang_code', 'name', 'Pliva (Croatia)'),
(57745, 48289, 'no_lang_code', 'name', 'Roche (Belgium)'),
(57746, 48290, 'no_lang_code', 'name', 'Noorik Biopharmaceuticals (Switzerland)'),
(57747, 48291, 'en', 'name', 'PodřipskĆ” Hospital and Polyclinic'),
(57748, 48292, 'no_lang_code', 'name', 'Takeda (Denmark)'),
(57749, 48293, 'no_lang_code', 'name', 'Polaris Group (United States)'),
(57750, 48294, 'no_lang_code', 'name', 'Polichem (Switzerland)'),
(57751, 48295, 'no_lang_code', 'name', 'Vyne Therapeutics (United States)'),
(57752, 48296, 'no_lang_code', 'name', 'Oasmia Pharmaceutical (Sweden)'),
(57753, 48297, 'en', 'name', 'Nordic Myeloma Study Group'),
(57754, 48298, 'no_lang_code', 'name', 'ObsEva (Switzerland)'),
(57755, 48299, 'no_lang_code', 'name', 'Mensia (France)'),
(57756, 48300, 'no_lang_code', 'name', 'PannonPharma (Hungary)'),
(57757, 48301, 'no_lang_code', 'name', 'Nordic Pharma (Czechia)'),
(57758, 48302, 'en', 'name', 'Parent Project Onlus'),
(57759, 48303, 'no_lang_code', 'name', 'Octapharma (United Kingdom)'),
(57760, 48304, 'en', 'name', 'Nordic Society of Gynecologic Oncology'),
(57761, 48305, 'no_lang_code', 'name', 'PARI (Germany)'),
(57762, 48306, 'no_lang_code', 'name', 'Octapharma (Austria)'),
(57763, 48307, 'no_lang_code', 'name', 'Nordmark (Germany)'),
(57764, 48308, 'no_lang_code', 'name', 'Oculis (Iceland)'),
(57765, 48309, 'no_lang_code', 'name', 'Pascoe (Germany)'),
(57766, 48310, 'no_lang_code', 'name', 'Ogeda (Belgium)'),
(57767, 48311, 'no_lang_code', 'name', 'Norgine (Germany)'),
(57768, 48312, 'no_lang_code', 'name', 'Patara Pharma (United States)'),
(57769, 48313, 'no_lang_code', 'name', 'Norgine (United Kingdom)'),
(57770, 48314, 'no_lang_code', 'name', 'Vifor Pharma (Germany)'),
(57771, 48315, 'no_lang_code', 'name', 'PregLem (Switzerland)'),
(57772, 48316, 'no', 'name', 'Norsk Gastrointestinal Cancer Gruppe'),
(57773, 48317, 'no_lang_code', 'name', 'PrEP Biopharm (United Kingdom)'),
(57774, 48318, 'no_lang_code', 'name', 'Novadip (Belgium)'),
(57775, 48319, 'no_lang_code', 'name', 'PellePharm (United States)'),
(57776, 48320, 'no_lang_code', 'name', 'Presurgy (Spain)'),
(57777, 48321, 'no_lang_code', 'name', 'OmniVision Technologies (Germany)'),
(57778, 48322, 'no_lang_code', 'name', 'Peptonic Medical (Sweden)'),
(57779, 48323, 'no_lang_code', 'name', 'Immutep (Germany)'),
(57780, 48324, 'no_lang_code', 'name', 'Principia Biopharma (United States)'),
(57781, 48325, 'no_lang_code', 'name', 'Peptcell (United Kingdom)'),
(57782, 48326, 'no_lang_code', 'name', 'Santen (United Kingdom)'),
(57783, 48326, 'ja', 'name', 'å‚å¤©č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(57784, 48327, 'no_lang_code', 'name', 'RDD Pharma (Israel)'),
(57785, 48328, 'de', 'name', 'Schƶn Klinik Roseneck'),
(57786, 48329, 'no_lang_code', 'name', 'Probelte Pharma (Spain)'),
(57787, 48330, 'no_lang_code', 'name', 'Reckitt Benckiser (Germany)'),
(57788, 48331, 'no_lang_code', 'name', 'OncoGenex Pharmaceuticals (United States)'),
(57789, 48332, 'hu', 'name', 'Pozitron-Diagnosztika Kft'),
(57790, 48333, 'no_lang_code', 'name', 'Profile Pharma (United Kingdom)'),
(57791, 48334, 'no_lang_code', 'name', 'Oncopeptides (Sweden)'),
(57792, 48335, 'no_lang_code', 'name', 'Recordati (Italy)'),
(57793, 48336, 'no_lang_code', 'name', 'Promethera Biosciences (Belgium)'),
(57794, 48337, 'no_lang_code', 'name', 'Novartis (Norway)'),
(57795, 48338, 'no_lang_code', 'name', 'Liminal BioSciences (United Kingdom)'),
(57796, 48339, 'no_lang_code', 'name', 'Novartis (Denmark)'),
(57797, 48340, 'no_lang_code', 'name', 'Only For Children Pharmaceuticals (France)'),
(57798, 48341, 'no_lang_code', 'name', 'ProNAi Therapeutics (United States)'),
(57799, 48342, 'no_lang_code', 'name', 'Ono Pharmaceutical (United Kingdom)'),
(57800, 48343, 'no_lang_code', 'name', 'Circassia Pharmaceuticals (United Kingdom)'),
(57801, 48344, 'no_lang_code', 'name', 'Ophthotech (United States)'),
(57802, 48345, 'no_lang_code', 'name', 'Novartis (Belgium)'),
(57803, 48346, 'no_lang_code', 'name', 'Protalix BioTherapeutics (Israel)'),
(57804, 48347, 'no_lang_code', 'name', 'Regenmedtx (United States)'),
(57805, 48348, 'no_lang_code', 'name', 'Pfizer (Belgium)'),
(57806, 48349, 'no_lang_code', 'name', 'PHARM (Italy)'),
(57807, 48350, 'no_lang_code', 'name', 'Novartis (Sweden)'),
(57808, 48351, 'no_lang_code', 'name', 'OptiNose (United States)'),
(57809, 48352, 'no_lang_code', 'name', 'Pharma Patent (Hungary)'),
(57810, 48353, 'no_lang_code', 'name', 'Upsher-Smith Laboratories (United Kingdom)'),
(57811, 48354, 'no_lang_code', 'name', 'ORASIS Pharmaceuticals (Israel)'),
(57812, 48355, 'no_lang_code', 'name', 'Pharma Stulln (Germany)'),
(57813, 48356, 'no_lang_code', 'name', 'Romark (United States)'),
(57814, 48357, 'no_lang_code', 'name', 'PsiOxus Therapeutics (United Kingdom)'),
(57815, 48358, 'no_lang_code', 'name', 'Regulon (Greece)'),
(57816, 48359, 'no_lang_code', 'name', 'Orion Corporation (United Kingdom)'),
(57817, 48360, 'da', 'name', 'Psykiatrien i Region Syddanmark'),
(57818, 48361, 'no_lang_code', 'name', 'Vifor Pharma (United Kingdom)'),
(57819, 48362, 'no_lang_code', 'name', 'Pharmalink (Sweden)'),
(57820, 48363, 'no_lang_code', 'name', 'Orphazyme (Denmark)'),
(57821, 48364, 'no_lang_code', 'name', 'Renapharma (Sweden)'),
(57822, 48365, 'no_lang_code', 'name', 'Pulmagen Therapeutics (United Kingdom)'),
(57823, 48366, 'no_lang_code', 'name', 'Renovo (United Kingdom)'),
(57824, 48367, 'no_lang_code', 'name', 'Pharmanest (Sweden)'),
(57825, 48368, 'no_lang_code', 'name', 'Repha (Germany)'),
(57826, 48369, 'no_lang_code', 'name', 'Roxall (Germany)'),
(57827, 48370, 'no_lang_code', 'name', 'Getinge (Germany)'),
(57828, 48371, 'no_lang_code', 'name', 'Pharmathen (Greece)'),
(57829, 48372, 'no_lang_code', 'name', 'NestlƩ (Sweden)'),
(57830, 48373, 'no_lang_code', 'name', 'Pharming Group (Netherlands)'),
(57831, 48374, 'no_lang_code', 'name', 'ORYX (Germany)'),
(57832, 48375, 'no_lang_code', 'name', 'R-Pharm (Russia)'),
(57833, 48376, 'no_lang_code', 'name', 'Resverlogix (Canada)'),
(57834, 48377, 'no_lang_code', 'name', 'RSPR Pharma (Sweden)'),
(57835, 48378, 'no_lang_code', 'name', 'RadioMedic (Czechia)'),
(57836, 48379, 'no_lang_code', 'name', 'Revalesio (United states)'),
(57837, 48380, 'no_lang_code', 'name', 'Photonamic (Germany)'),
(57838, 48381, 'no_lang_code', 'name', 'Rexgenero (United Kingdom)'),
(57839, 48382, 'no_lang_code', 'name', 'Scandinavian Sarcoma Group (Sweden)'),
(57840, 48383, 'no_lang_code', 'name', 'Rheacell (Germany)'),
(57841, 48384, 'de', 'name', 'Rheumazentrum Ruhrgebiet'),
(57842, 48385, 'no_lang_code', 'name', 'Pierre Fabre (Germany)'),
(57843, 48386, 'no_lang_code', 'name', 'Synphora (Sweden)'),
(57844, 48387, 'no_lang_code', 'name', 'Synthetic Biologics (United States)'),
(57845, 48388, 'es', 'name', 'Sociedad Espaola de retina y Vtreo'),
(57846, 48389, 'no_lang_code', 'name', 'Rhythm (United states)'),
(57847, 48390, 'no_lang_code', 'name', 'Sager Pharma (Hungary)'),
(57848, 48391, 'no_lang_code', 'name', 'Synthon (Czechia)'),
(57849, 48392, 'it', 'name', 'SocietĆ  Italiana di Nefrologia'),
(57850, 48393, 'da', 'name', 'Hospitalsenhed Midt'),
(57851, 48393, 'en', 'name', 'Regional Hospital Central Jutland'),
(57852, 48394, 'no_lang_code', 'name', 'SIT Pharmaceutical (Italy)'),
(57853, 48395, 'en', 'name', 'Spanish Oncology Genitourinary Group'),
(57854, 48396, 'no_lang_code', 'name', 'Solenne (Netherlands)'),
(57855, 48397, 'no_lang_code', 'name', 'SciencePharma (Poland)'),
(57856, 48398, 'no_lang_code', 'name', 'Bausch Health (United Kingdom)'),
(57857, 48399, 'no_lang_code', 'name', 'Solvotrin Innovations (Ireland)'),
(57858, 48400, 'en', 'name', 'Scottish National Blood Transfusion Service'),
(57859, 48401, 'no_lang_code', 'name', 'Taiho Oncology (United States)'),
(57860, 48402, 'no_lang_code', 'name', 'SOM Biotech (Spain)'),
(57861, 48403, 'no_lang_code', 'name', 'scPharmaceuticals (United States)'),
(57862, 48404, 'no_lang_code', 'name', 'Takeda (Belgium)'),
(57863, 48405, 'no_lang_code', 'name', 'Sopharma (Bulgaria)'),
(57864, 48406, 'no_lang_code', 'name', 'Sophiris (United States)'),
(57865, 48407, 'no_lang_code', 'name', 'Takeda (Netherlands)'),
(57866, 48408, 'no_lang_code', 'name', 'Bouty (Italy)'),
(57867, 48409, 'no_lang_code', 'name', 'Seahorse Scientific Services (United Kingdom)'),
(57868, 48410, 'no_lang_code', 'name', 'Targovax (Finland)'),
(57869, 48411, 'no_lang_code', 'name', 'Sanochemia Pharmazeutika (Austria)'),
(57870, 48412, 'no_lang_code', 'name', 'TauRx (United Kingdom)'),
(57871, 48413, 'no_lang_code', 'name', 'Robugen (Germany)'),
(57872, 48414, 'no_lang_code', 'name', 'Novartis (Australia)'),
(57873, 48415, 'no_lang_code', 'name', 'Roche (Denmark)'),
(57874, 48416, 'no_lang_code', 'name', 'Roche (Austria)'),
(57875, 48417, 'no_lang_code', 'name', 'Sanofi (United Kingdom)'),
(57876, 48418, 'no_lang_code', 'name', 'Roche (Spain)'),
(57877, 48419, 'no_lang_code', 'name', 'Roche (Portugal)'),
(57878, 48420, 'no_lang_code', 'name', 'Sanofi (Italy)'),
(57879, 48421, 'no_lang_code', 'name', 'Roche (Greece)'),
(57880, 48422, 'en', 'name', 'Section of Transfusion Medicine Capital Region Blood Bank & Department of Clinical Immunology'),
(57881, 48423, 'no_lang_code', 'name', 'Roche (Netherlands)'),
(57882, 48424, 'no_lang_code', 'name', 'TC Biopharm (United Kingdom)'),
(57883, 48425, 'no_lang_code', 'name', 'Sanofi (Belgium)'),
(57884, 48426, 'no_lang_code', 'name', 'Seqirus (United States)'),
(57885, 48427, 'no_lang_code', 'name', 'Sanofi (Japan)'),
(57886, 48427, 'ja', 'name', 'ć‚µćƒŽćƒ•ć‚£'),
(57887, 48428, 'no_lang_code', 'name', 'Serumwerk Bernburg (Germany)'),
(57888, 48429, 'no_lang_code', 'name', 'Stealth BioTherapeutics (United States)'),
(57889, 48430, 'no_lang_code', 'name', 'Tesaro (United States)'),
(57890, 48431, 'no_lang_code', 'name', 'TETEC Tissue Engineering Technologies (Germany)'),
(57891, 48432, 'no_lang_code', 'name', 'Servier (United Kingdom)'),
(57892, 48433, 'no_lang_code', 'name', 'Tetraphase Pharmaceuticals (United States)'),
(57893, 48434, 'no_lang_code', 'name', 'Stelic (Japan)'),
(57894, 48435, 'no_lang_code', 'name', 'Oxurion (Ireland)'),
(57895, 48436, 'nl', 'name', 'Werkgroep Immunotherapie Nederland voor Oncologie'),
(57896, 48437, 'no_lang_code', 'name', 'Thrombotargets (Spain)'),
(57897, 48438, 'no_lang_code', 'name', 'Shield Therapeutics (United Kingdom)'),
(57898, 48439, 'no_lang_code', 'name', 'Sterna Biologicals (Germany)'),
(57899, 48440, 'no_lang_code', 'name', 'Sanofi (Finland)'),
(57900, 48441, 'no_lang_code', 'name', 'Sanofi (Spain)'),
(57901, 48442, 'de', 'name', 'Sterreichisches Akromegalie Register'),
(57902, 48443, 'en', 'name', 'Heartbeat Trust'),
(57903, 48444, 'no_lang_code', 'name', 'Sanofi (Hungary)'),
(57904, 48445, 'no_lang_code', 'name', 'Tikomed (Sweden)'),
(57905, 48446, 'en', 'name', 'London Clinic'),
(57906, 48447, 'no_lang_code', 'name', 'BBB Therapeutics (Netherlands)'),
(57907, 48448, 'no_lang_code', 'name', 'Strathmann (Germany)'),
(57908, 48449, 'nl', 'name', 'Streeklab Haarlem'),
(57909, 48450, 'no_lang_code', 'name', 'Strekin (Switzerland)'),
(57910, 48451, 'no_lang_code', 'name', 'Allergan (Finland)'),
(57911, 48452, 'no_lang_code', 'name', 'Tokai Pharmaceuticals (United States)'),
(57912, 48453, 'no_lang_code', 'name', 'Sucampo (Switzerland)'),
(57913, 48454, 'no_lang_code', 'name', 'Topivert (United Kingdom)'),
(57914, 48455, 'no_lang_code', 'name', 'Onxeo (Denmark)'),
(57915, 48456, 'no_lang_code', 'name', 'Sanol (Germany)'),
(57916, 48457, 'no_lang_code', 'name', 'Santen (United States)'),
(57917, 48458, 'no_lang_code', 'name', 'Sintetica (Switzerland)'),
(57918, 48459, 'no_lang_code', 'name', 'Savara (Denmark)'),
(57919, 48460, 'no_lang_code', 'name', 'Sirtex (Germany)'),
(57920, 48461, 'no_lang_code', 'name', 'Trevi Therapeutics (United States)'),
(57921, 48462, 'no_lang_code', 'name', 'Sunovion (United Kingdom)'),
(57922, 48463, 'no_lang_code', 'name', 'TrichoCare (United Kingdom)'),
(57923, 48464, 'sv', 'name', 'Svettmottagningen'),
(57924, 48465, 'no_lang_code', 'name', 'Trio Medicines (United Kingdom)'),
(57925, 48466, 'en', 'name', 'Swedish CLL group'),
(57926, 48467, 'no_lang_code', 'name', 'SmartPractice (United States)'),
(57927, 48468, 'no_lang_code', 'name', 'Txcell (France)'),
(57928, 48469, 'no_lang_code', 'name', 'Swedish Orphan Biovitrum (Switzerland)'),
(57929, 48470, 'no', 'name', 'Smerteklinikken'),
(57930, 48471, 'no_lang_code', 'name', 'Swiss Cardio Technologies (Switzerland)'),
(57931, 48472, 'no_lang_code', 'name', 'Smith & Nephew (Germany)'),
(57932, 48473, 'no_lang_code', 'name', 'SymbioPharm (Germany)'),
(57933, 48474, 'no_lang_code', 'name', 'GlaxoSmithKline (Sri Lanka)'),
(57934, 48475, 'es', 'name', 'Sociedad Andaluza de Trasplantes de Ɠrganos y Tejidos'),
(57935, 48476, 'no_lang_code', 'name', 'Asarina Pharma (Sweden)'),
(57936, 48477, 'de', 'name', 'Unfallkrankenhaus Salzburg'),
(57937, 48478, 'no_lang_code', 'name', 'Rohto Pharmaceutical (United Kingdom)'),
(57938, 48479, 'no_lang_code', 'name', 'UniQure (Netherlands)'),
(57939, 48480, 'no_lang_code', 'name', 'Themis Bioscience (Austria)'),
(57940, 48481, 'no_lang_code', 'name', 'Therabel (Belgium)'),
(57941, 48482, 'no_lang_code', 'name', 'United Therapeutics (United Kingdom)'),
(57942, 48483, 'no_lang_code', 'name', 'Univar (United Kingdom)'),
(57943, 48484, 'no_lang_code', 'name', 'Theracos (United States)'),
(57944, 48485, 'no_lang_code', 'name', 'URSAPHARM (Germany)'),
(57945, 48486, 'no_lang_code', 'name', 'ViiV Healthcare (Spain)'),
(57946, 48487, 'no_lang_code', 'name', 'Viking Therapeutics (United States)'),
(57947, 48488, 'no_lang_code', 'name', 'Clinipace (Italy)'),
(57948, 48489, 'no_lang_code', 'name', 'Visterra (United States)'),
(57949, 48490, 'no_lang_code', 'name', 'Pfizer (South Korea)'),
(57950, 48491, 'no_lang_code', 'name', 'Vital Therapies (United States)'),
(57951, 48492, 'no_lang_code', 'name', 'VL-Medi Oy (Finland)'),
(57952, 48493, 'no_lang_code', 'name', 'Vasopharm (Germany)'),
(57953, 48494, 'no_lang_code', 'name', 'Vaxon Biotech (France)'),
(57954, 48495, 'no_lang_code', 'name', 'Vectura (Germany)'),
(57955, 48496, 'no_lang_code', 'name', 'Xcovery (United States)'),
(57956, 48497, 'no_lang_code', 'name', 'Vtesse (United States)'),
(57957, 48498, 'no_lang_code', 'name', 'Vectura (United Kingdom)'),
(57958, 48499, 'no_lang_code', 'name', 'Xellia (Croatia)'),
(57959, 48500, 'en', 'name', '174th hospital of the People''s Liberation Army'),
(57960, 48500, 'zh', 'name', '解放军第174医院'),
(57961, 48501, 'no_lang_code', 'name', 'Xenikos (Netherlands)'),
(57962, 48502, 'no_lang_code', 'name', '21st Century Oncology (United States)'),
(57963, 48503, 'no_lang_code', 'name', 'Assembly Biosciences (United States)'),
(57964, 48504, 'no_lang_code', 'name', 'Zambon (Italy)'),
(57965, 48505, 'no_lang_code', 'name', 'Zambon (Spain)'),
(57966, 48506, 'no_lang_code', 'name', 'Weber and Weber (Germany)'),
(57967, 48507, 'no_lang_code', 'name', 'Weleda (Germany)'),
(57968, 48508, 'en', 'name', 'Dutch Network for Cardiovascular Research'),
(57969, 48508, 'nl', 'name', 'Werkgroep Cardiologische centra Nederland'),
(57970, 48509, 'no_lang_code', 'name', 'Verisfield (Greece)'),
(57971, 48510, 'de', 'name', 'Westdeutsche Studiengruppe'),
(57972, 48510, 'en', 'name', 'Womenā€˜s Healthcare Group'),
(57973, 48511, 'no_lang_code', 'name', 'Zambon (Belgium)'),
(57974, 48512, 'nl', 'name', 'Westfriesgasthuis'),
(57975, 48513, 'no_lang_code', 'name', 'Versartis (United States)'),
(57976, 48514, 'no_lang_code', 'name', 'Wilson Therapeutics (United States)'),
(57977, 48515, 'en', 'name', 'Tinker Air Force Base'),
(57978, 48516, 'en', 'name', 'Attention Deficit Disorder Treatment Center'),
(57979, 48517, 'no_lang_code', 'name', 'Zelmic (Sweden)'),
(57980, 48518, 'no_lang_code', 'name', 'Vertex Pharmaceuticals (United Kingdom)'),
(57981, 48519, 'it', 'name', 'ASST Melegnano e della Martesana'),
(57982, 48520, 'no_lang_code', 'name', 'Ziarco (United Kingdom)'),
(57983, 48521, 'no_lang_code', 'name', 'Ziopharm Oncology (United States)'),
(57984, 48522, 'en', 'name', 'Vienna Institute for Research in Ocular Surgery'),
(57985, 48523, 'en', 'name', 'Advanced Dermatology & Cosmetic Surgery'),
(57986, 48524, 'en', 'name', 'Corrective Eye Center'),
(57987, 48525, 'en', 'name', 'Anaheim Clinical Trials'),
(57988, 48526, 'no_lang_code', 'name', 'Zymenex (Denmark)'),
(57989, 48527, 'en', 'name', 'Academic and Community Cancer Research United'),
(57990, 48528, 'no_lang_code', 'name', 'Zytoprotec (Austria)'),
(57991, 48529, 'en', 'name', 'Academic Dermatology Associates'),
(57992, 48530, 'en', 'name', 'Andover Eye Associates'),
(57993, 48531, 'en', 'name', 'Ang Mo Kio Thye Hua Kwan Hospital'),
(57994, 48532, 'no_lang_code', 'name', 'Accelovance (United States)'),
(57995, 48533, 'en', 'name', 'Angioma Alliance'),
(57996, 48534, 'en', 'name', 'Ankang City Central Hospital'),
(57997, 48534, 'zh', 'name', 'å®‰åŗ·åø‚äø­åæƒåŒ»é™¢'),
(57998, 48535, 'en', 'name', 'Access Behavioral Health'),
(57999, 48536, 'id', 'name', 'Rumah Sakit Jantung Binawaluya'),
(58000, 48537, 'en', 'name', 'Accumed Research Associates'),
(58001, 48538, 'en', 'name', 'Binzhou People''s Hospital'),
(58002, 48538, 'zh', 'name', 'ę»Øå·žäŗŗę°‘åŒ»é™¢'),
(58003, 48539, 'no_lang_code', 'name', 'BioKinetic Europe (United Kingdom)'),
(58004, 48540, 'en', 'name', 'Action in the Community Environment'),
(58005, 48541, 'no_lang_code', 'name', 'ApniCure (United States)'),
(58006, 48542, 'en', 'name', 'Adult and Pediatric Dermatology'),
(58007, 48543, 'en', 'name', 'Bioscience Research'),
(58008, 48544, 'en', 'name', 'Bamberg County Hospital'),
(58009, 48545, 'en', 'name', 'Cancer Treatment Centers of America'),
(58010, 48546, 'no_lang_code', 'name', 'BioVirtus (Poland)'),
(58011, 48547, 'en', 'name', 'Capalaba Medical Centre'),
(58012, 48548, 'no_lang_code', 'name', 'Bamrasnaradura Infectious Diseases Institute'),
(58013, 48549, 'en', 'name', 'Capital Nephrology Associates'),
(58014, 48550, 'es', 'name', 'Instituto Argentino de Diagnóstico y Tratamiento'),
(58015, 48551, 'no_lang_code', 'name', 'Advanced Biological Laboratories (Luxembourg)'),
(58016, 48552, 'en', 'name', 'Bangalore Diabetes Centre'),
(58017, 48553, 'en', 'name', 'Cardiac And Vascular Research Center Of Northern Michigan'),
(58018, 48554, 'en', 'name', 'Advanced Breast Care'),
(58019, 48555, 'en', 'name', 'Aristocrat Plastic Surgery & MedAesthetics'),
(58020, 48556, 'en', 'name', 'Cardiac Study Center'),
(58021, 48557, 'en', 'name', 'Arizona Heart Hospital'),
(58022, 48558, 'en', 'name', 'Orthopedic One'),
(58023, 48559, 'en', 'name', 'Cardiology Associates of Savannah'),
(58024, 48560, 'en', 'name', 'Blue Ridge Physical Therapy'),
(58025, 48561, 'en', 'name', 'Advanced Dialysis Center'),
(58026, 48562, 'en', 'name', 'Arkansas Cardiology'),
(58027, 48563, 'en', 'name', 'Bobath memorial hospital'),
(58028, 48563, 'ko', 'name', 'ė³“ė°”ģŠ¤źø°ė…ė³‘ģ›'),
(58029, 48564, 'en', 'name', 'Arlington Center for Dermatology'),
(58030, 48565, 'en', 'name', 'Advanced Neurology Specialists'),
(58031, 48566, 'en', 'name', 'Advanced Neurosciences Institute'),
(58032, 48567, 'no_lang_code', 'name', 'BRCR Global (United States)');
INSERT INTO `ror_settings` VALUES
(58033, 48568, 'en', 'name', 'Barlow Medical Centre'),
(58034, 48569, 'en', 'name', 'Advanced Pharma'),
(58035, 48570, 'en', 'name', 'Bonutti Clinic'),
(58036, 48571, 'en', 'name', 'Advanced Research Institute'),
(58037, 48572, 'de', 'name', 'CardioVasculƤres Centrum Frankfurt'),
(58038, 48572, 'en', 'name', 'Cardiovascular Center Frankfurt'),
(58039, 48573, 'en', 'name', 'Boston Center for Memory'),
(58040, 48574, 'no_lang_code', 'name', 'Arthur Asirvatham Hospital'),
(58041, 48575, 'en', 'name', 'Boston Children''s Health Physicians'),
(58042, 48576, 'en', 'name', 'Boston IVF'),
(58043, 48577, 'en', 'name', 'Carmel Mountain Vision Care'),
(58044, 48578, 'en', 'name', 'Bastian Voice Institute'),
(58045, 48579, 'en', 'name', 'Asheville Cardiology Associates'),
(58046, 48580, 'en', 'name', 'Bozeman Urgent Care Center'),
(58047, 48581, 'en', 'name', 'Bateman Horne Center'),
(58048, 48582, 'no_lang_code', 'name', 'Bradenton Neurology'),
(58049, 48583, 'en', 'name', 'The Affiliated Hospital to Changchun University of Chinese Medicine'),
(58050, 48583, 'zh', 'name', 'é•æę˜„äø­åŒ»čÆå¤§å­¦é™„å±žåŒ»é™¢'),
(58051, 48584, 'en', 'name', 'Carolina Clinical Research Services'),
(58052, 48585, 'en', 'name', 'Bath and North East Somerset Clinical Commissioning Group'),
(58053, 48586, 'en', 'name', 'Westmead Institute'),
(58054, 48587, 'en', 'name', 'Carolina Ear, Nose and Throat Clinic'),
(58055, 48588, 'en', 'name', 'Baumann Cosmetic Dermatology'),
(58056, 48589, 'en', 'name', 'Carolina Eyecare Physicians'),
(58057, 48590, 'de', 'name', 'Asklepios Fachklinikum Brandenburg'),
(58058, 48591, 'en', 'name', 'Brain Resource Center'),
(58059, 48592, 'en', 'name', 'Carolina Neurosurgery and Spine Associates'),
(58060, 48593, 'en', 'name', 'Bay State Clinical Trials'),
(58061, 48594, 'de', 'name', 'Asklepios Klinik Weißenfels'),
(58062, 48595, 'en', 'name', 'Comprehensive Urology'),
(58063, 48596, 'en', 'name', 'Carolina Retina Center'),
(58064, 48597, 'no_lang_code', 'name', 'Iomedico (Germany)'),
(58065, 48598, 'en', 'name', 'Carolina Urologic Research Center'),
(58066, 48599, 'en', 'name', 'Carolina Women''s Research and Wellness Center'),
(58067, 48600, 'en', 'name', 'Baylor Scott & White All Saints Medical Center'),
(58068, 48601, 'en', 'name', 'Associated Eyecare'),
(58069, 48602, 'en', 'name', 'Brainclinics'),
(58070, 48603, 'en', 'name', 'Associates in Neurology'),
(58071, 48604, 'en', 'name', 'Carrick Institute'),
(58072, 48605, 'en', 'name', 'Heart Hospital Baylor Plano'),
(58073, 48606, 'en', 'name', 'Atlanta Center for Medical Research'),
(58074, 48607, 'sv', 'name', 'Akademikliniken'),
(58075, 48608, 'en', 'name', 'Brentwood Hospital'),
(58076, 48609, 'en', 'name', 'Hamilton Dermatology'),
(58077, 48610, 'en', 'name', 'Atlanta Gastroenterology Associates'),
(58078, 48611, 'en', 'name', 'Signature Healthcare Brockton Hospital'),
(58079, 48612, 'en', 'name', 'Beacon Clinical Research'),
(58080, 48613, 'en', 'name', 'Cataract and Refractive Institute of Florida'),
(58081, 48614, 'en', 'name', 'Beaver Medical Group'),
(58082, 48615, 'en', 'name', 'Albany House Medical Centre'),
(58083, 48616, 'en', 'name', 'Brooks Rehabilitation Clinical Research Center'),
(58084, 48617, 'en', 'name', 'Behavioral Medical Research'),
(58085, 48618, 'pt', 'name', 'Alergo Dermatologia Integrada'),
(58086, 48619, 'en', 'name', 'Beijing Geriatric Hospital'),
(58087, 48619, 'zh', 'name', 'åŒ—äŗ¬č€å¹“åŒ»é™¢'),
(58088, 48620, 'en', 'name', 'Aurora Medical Center'),
(58089, 48621, 'no_lang_code', 'name', 'Buddhachinaraj Hospital'),
(58090, 48622, 'en', 'name', 'Monash Alfred Psychiatry Research centre'),
(58091, 48623, 'en', 'name', 'Hematology Oncology Associates of Central New York'),
(58092, 48624, 'en', 'name', 'Buena Vista Eye Care'),
(58093, 48625, 'en', 'name', 'Autism & Developmental Medicine Institute'),
(58094, 48626, 'en', 'name', 'Metro-Minnesota Community Oncology Research Consortium'),
(58095, 48627, 'en', 'name', 'Buffalo Psychiatric Center'),
(58096, 48628, 'en', 'name', 'Buffalo Spine Surgery'),
(58097, 48629, 'en', 'name', 'Avail Clinical Research'),
(58098, 48630, 'en', 'name', 'Henry Ford Allegiance Health'),
(58099, 48631, 'en', 'name', 'Michigan Cancer Research Consortium'),
(58100, 48632, 'en', 'name', 'Burke Pharmaceutical Research'),
(58101, 48633, 'de', 'name', 'Allergiezentrum Wien West'),
(58102, 48634, 'en', 'name', 'Burrell Behavioral Health'),
(58103, 48635, 'en', 'name', 'Axiom Clinical Research of Florida'),
(58104, 48636, 'no_lang_code', 'name', 'Celerion (United Kingdom)'),
(58105, 48637, 'no_lang_code', 'name', 'Celerion (United States)'),
(58106, 48638, 'en', 'name', 'Allergy Associates of the Palm Beaches'),
(58107, 48639, 'no_lang_code', 'name', 'Cellex Cell Professionals (Germany)'),
(58108, 48640, 'ro', 'name', 'Spitalul Universitar de Urgenţă Militar Central Dr. Carol Davila'),
(58109, 48641, 'en', 'name', 'Cairo University hospitals'),
(58110, 48641, 'ar', 'name', 'Ł…Ų³ŲŖŲ“ŁŁŠŲ§ŲŖ Ų¬Ų§Ł…Ų¹Ų© القاهرة'),
(58111, 48642, 'en', 'name', 'Centennial Heart Cardiovascular Consultants'),
(58112, 48643, 'en', 'name', 'California Cancer Associates for Research and Excellence'),
(58113, 48644, 'en', 'name', 'Allergy Associates Research Center'),
(58114, 48645, 'en', 'name', 'Centennial Medical Group'),
(58115, 48646, 'nl', 'name', 'AZ Sint-Lucas'),
(58116, 48647, 'en', 'name', 'Balboa Nephrology Medical Group'),
(58117, 48648, 'en', 'name', 'Center for Anxiety and Depression'),
(58118, 48649, 'en', 'name', 'AlphaNet'),
(58119, 48650, 'en', 'name', 'Center for Cancers and Blood Disorders'),
(58120, 48651, 'en', 'name', 'Alpine Clinical Research Center'),
(58121, 48652, 'en', 'name', 'California Medical Clinic for Headache'),
(58122, 48653, 'en', 'name', 'California Retina Consultants'),
(58123, 48654, 'en', 'name', 'Donor Network West'),
(58124, 48655, 'en', 'name', 'Center for Digestive and Liver Diseases'),
(58125, 48656, 'en', 'name', 'Arlington Dermatology'),
(58126, 48657, 'en', 'name', 'Center for Orthopaedics'),
(58127, 48658, 'en', 'name', 'Troy Gastroenterology'),
(58128, 48659, 'en', 'name', 'Lothian Sexual Health'),
(58129, 48660, 'en', 'name', 'Saint Francis Hospital'),
(58130, 48661, 'en', 'name', 'Altoona Arthritis and Osteoporosis Center'),
(58131, 48662, 'en', 'name', 'Calvary Health Care Bethlehem'),
(58132, 48663, 'en', 'name', 'Altoona Center for Clinical Research'),
(58133, 48664, 'en', 'name', 'Center for Prevention and Treatment of Infections'),
(58134, 48665, 'en', 'name', 'Ambulance Victoria'),
(58135, 48666, 'en', 'name', 'Partners HealthCare Connected Health'),
(58136, 48667, 'en', 'name', 'Centers for Behavioral Health'),
(58137, 48668, 'en', 'name', 'AMCR Institute'),
(58138, 48669, 'en', 'name', 'Central Coast Nephrology'),
(58139, 48670, 'en', 'name', 'Charlottesville Medical Research'),
(58140, 48671, 'en', 'name', 'Central Dermatology'),
(58141, 48672, 'en', 'name', 'American Health Network'),
(58142, 48673, 'fr', 'name', 'Centre Hospitalier DƩpartemental VendƩe'),
(58143, 48674, 'en', 'name', 'Canandaigua VA Medical Center'),
(58144, 48675, 'en', 'name', 'Central Florida Eye Institute'),
(58145, 48676, 'en', 'name', 'American Institute of Research'),
(58146, 48677, 'en', 'name', 'Central Hospital of Zibo'),
(58147, 48677, 'zh', 'name', 'ę·„åšåø‚äø­åæƒåŒ»é™¢'),
(58148, 48678, 'en', 'name', 'Cancer Care Northwest'),
(58149, 48679, 'en', 'name', 'American Heart Institute'),
(58150, 48680, 'en', 'name', 'American Medical Research'),
(58151, 48681, 'en', 'name', 'Central Indiana Gastroenterology Group'),
(58152, 48682, 'en', 'name', 'Cancer Center of Kansas'),
(58153, 48683, 'en', 'name', 'Central Kentucky Research Associates'),
(58154, 48684, 'en', 'name', 'Clinic of Hope'),
(58155, 48684, 'nl', 'name', 'Clinique de l''EspƩrance'),
(58156, 48685, 'en', 'name', 'Chesapeake Research Group'),
(58157, 48686, 'en', 'name', 'Cancer Care South East'),
(58158, 48687, 'en', 'name', 'Central People''s Hospital of Zhanjiang'),
(58159, 48687, 'zh', 'name', 'ę¹›ę±Ÿäø­åæƒäŗŗę°‘åŒ»é™¢'),
(58160, 48688, 'fr', 'name', 'Clinique Les Fontaines'),
(58161, 48689, 'en', 'name', 'Cancer Foundation of India'),
(58162, 48690, 'en', 'name', 'Central Texas Neurology Consultants'),
(58163, 48691, 'fr', 'name', 'Clinique Jules Verne'),
(58164, 48692, 'en', 'name', 'City Clinical Hospital'),
(58165, 48692, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 57'),
(58166, 48693, 'fr', 'name', 'Centre AzurƩen de CancƩrologie'),
(58167, 48694, 'fr', 'name', 'Clinique Mutualiste Chirurgicale'),
(58168, 48695, 'en', 'name', 'Cheyenne Regional Medical Center'),
(58169, 48696, 'fr', 'name', 'Centre de Haute Energie'),
(58170, 48697, 'fr', 'name', 'Clinique Paro Excellence'),
(58171, 48698, 'en', 'name', 'Claghorn Lesem Research Clinic'),
(58172, 48699, 'en', 'name', 'Clark and Watson Family Dental Practice'),
(58173, 48700, 'fr', 'name', 'Centre de RadiothƩrapie Bayard'),
(58174, 48701, 'fr', 'name', 'Centre de Recherche Dermatologique du QuƩbec MƩtropolitain'),
(58175, 48702, 'de', 'name', 'Landesfachhochschule für Gesundheitsberufe Claudiana'),
(58176, 48703, 'en', 'name', 'Clayton Eye Center'),
(58177, 48704, 'fr', 'name', 'Centre IntƩgrƩ de SantƩ et de Services Sociaux des Laurentides'),
(58178, 48705, 'en', 'name', 'ChiangRai Prachanukroh Hospital'),
(58179, 48705, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ ą¹€ąøŠąøµąø¢ąø‡ąø£ąø²ąø¢ąø›ąø£ąø°ąøŠąø²ąø™ąøøą¹€ąø„ąø£ąø²ąø°ąø«ą¹Œ'),
(58180, 48706, 'en', 'name', 'Clayton Sleep Institute'),
(58181, 48707, 'en', 'name', 'Cumberland Medical Center'),
(58182, 48708, 'fr', 'name', 'Clinique Saint-Joseph'),
(58183, 48709, 'no_lang_code', 'name', 'Dado Medical'),
(58184, 48710, 'en', 'name', 'Dalian Maternal and Child Health Hospital'),
(58185, 48710, 'zh', 'name', 'å¤§čæžåø‚å¦‡äŗ§åŒ»é™¢'),
(58186, 48711, 'no_lang_code', 'name', 'Chicago Cornea Consultants (United States)'),
(58187, 48712, 'en', 'name', 'Cleveland Eye Clinic'),
(58188, 48713, 'en', 'name', 'Children''s Advocacy Center'),
(58189, 48714, 'en', 'name', 'Seventh People''s Hospital of Dalian'),
(58190, 48714, 'zh', 'name', 'å¤§čæžåø‚ē¬¬äøƒäŗŗę°‘åŒ»é™¢'),
(58191, 48715, 'en', 'name', 'Dallas Surgical Group'),
(58192, 48716, 'fr', 'name', 'Cliniques du Sud Luxembourg'),
(58193, 48717, 'en', 'name', 'GI Care for Kids'),
(58194, 48718, 'no_lang_code', 'name', 'Clinilabs (United States)'),
(58195, 48719, 'fr', 'name', 'Hopitaux Civils de Colmar'),
(58196, 48720, 'fr', 'name', 'Centre Hospitalier de Rochefort'),
(58197, 48721, 'en', 'name', 'Davidorf Eye Group'),
(58198, 48722, 'no_lang_code', 'name', 'Clinvest (United States)'),
(58199, 48723, 'en', 'name', 'St. Bernards Clopton Clinic'),
(58200, 48724, 'en', 'name', 'Davidson County Health Department'),
(58201, 48725, 'fr', 'name', 'Centre Hospitalier Esquirol de Limoges'),
(58202, 48726, 'es', 'name', 'ClĆ­nica CES'),
(58203, 48727, 'no_lang_code', 'name', 'CNS Research (United States)'),
(58204, 48728, 'fr', 'name', 'Centre Hospitalier Gabriel-Martin'),
(58205, 48729, 'es', 'name', 'Clinica Chicamocha'),
(58206, 48730, 'en', 'name', 'Dean Health Plan'),
(58207, 48731, 'en', 'name', 'Coastal Carolina Research Center'),
(58208, 48732, 'fr', 'name', 'Centre Hospitalier Henri Laborit'),
(58209, 48733, 'en', 'name', 'DaVita Clinical Research (United States)'),
(58210, 48734, 'en', 'name', 'Dawes Fretzin Clinical Research Group'),
(58211, 48735, 'no_lang_code', 'name', 'Coastal Connecticut Research (United States)'),
(58212, 48736, 'it', 'name', 'Clinica Mediterranea'),
(58213, 48737, 'en', 'name', 'Children''s Hospital of Illinois'),
(58214, 48738, 'en', 'name', 'Michigan Center for Skin Care Research'),
(58215, 48739, 'en', 'name', 'Coborn Cancer Center'),
(58216, 48740, 'es', 'name', 'ClĆ­nica Subiza'),
(58217, 48741, 'fr', 'name', 'Centre Jean Bernard'),
(58218, 48742, 'en', 'name', 'Coeur d Alene Arthritis Clinic'),
(58219, 48743, 'en', 'name', 'Deaconess Clinic'),
(58220, 48744, 'no_lang_code', 'name', 'Zemun Hospital'),
(58221, 48745, 'en', 'name', 'Dearborn Orthopedics and Sports Medicine'),
(58222, 48746, 'en', 'name', 'Deer Lodge Centre'),
(58223, 48747, 'en', 'name', 'Collaborative Neuroscience Network'),
(58224, 48748, 'no_lang_code', 'name', 'Clinical Inquest Center (United States)'),
(58225, 48749, 'en', 'name', 'Clinical Insights'),
(58226, 48750, 'en', 'name', 'Denver Arthritis Clinic'),
(58227, 48751, 'en', 'name', 'Infectious Disease Consultants'),
(58228, 48752, 'no_lang_code', 'name', 'Chilton Medical Center'),
(58229, 48753, 'en', 'name', 'Colon and Rectal Surgery Associates'),
(58230, 48754, 'en', 'name', 'Colorado Kidney Care'),
(58231, 48755, 'en', 'name', 'Colorado Joint Replacement'),
(58232, 48756, 'en', 'name', 'Denver Public Health'),
(58233, 48757, 'en', 'name', 'Clinical Investigation Specialists'),
(58234, 48758, 'en', 'name', 'Chonburi Cancer Hospital'),
(58235, 48758, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąøŠąø„ąøšąøøąø£ąøµ'),
(58236, 48759, 'en', 'name', 'Clinical Investigations of Texas'),
(58237, 48760, 'en', 'name', 'Colorado Medical Research Center'),
(58238, 48761, 'es', 'name', 'Centro de Retina Médica y Quirúrgica'),
(58239, 48762, 'en', 'name', 'CNS Healthcare'),
(58240, 48763, 'en', 'name', 'Colorado Orthopedic Consultants'),
(58241, 48764, 'en', 'name', 'Colorado Retina Center'),
(58242, 48765, 'es', 'name', 'Centro Oftalmológico Moreiras'),
(58243, 48766, 'en', 'name', 'Clinical Research Associates of Tidewater'),
(58244, 48767, 'en', 'name', 'Columbia Orthopaedic Group'),
(58245, 48768, 'pl', 'name', 'InterLab Poznan'),
(58246, 48769, 'en', 'name', 'Clinical Research Associates'),
(58247, 48770, 'en', 'name', 'Century Health'),
(58248, 48771, 'en', 'name', 'Chongqing Jiulongpo People''s Hospital'),
(58249, 48772, 'fr', 'name', 'Centre Hospitalier Annecy Genevois'),
(58250, 48773, 'en', 'name', 'People''s Hospital of Kaizhou District'),
(58251, 48773, 'zh', 'name', 'é‡åŗ†å¼€åŽæäŗŗę°‘åŒ»é™¢'),
(58252, 48774, 'en', 'name', 'Meridien Research'),
(58253, 48775, 'en', 'name', 'OrthoVirginia'),
(58254, 48776, 'en', 'name', 'Chongqing Three Gorges Central Hospital'),
(58255, 48776, 'zh', 'name', 'äø‰å³”äø­åæƒåŒ»é™¢'),
(58256, 48777, 'en', 'name', 'Community Clinical Research'),
(58257, 48778, 'en', 'name', 'Clinical Research Center of Nevada'),
(58258, 48779, 'fr', 'name', 'Centre Hospitalier de La Rochelle'),
(58259, 48780, 'en', 'name', 'Christian Family Service Centre'),
(58260, 48781, 'fr', 'name', 'Centre Hospitalier Saint-Nazaire'),
(58261, 48782, 'en', 'name', 'Community Research Initiative'),
(58262, 48783, 'en', 'name', 'Christie''s Place'),
(58263, 48784, 'en', 'name', 'Clinical Research Consortium'),
(58264, 48785, 'en', 'name', 'Clinical Research Consulting'),
(58265, 48786, 'da', 'name', 'Marselisborgcentret'),
(58266, 48787, 'en', 'name', 'Compass Research'),
(58267, 48788, 'en', 'name', 'Clinical Research Institute'),
(58268, 48789, 'en', 'name', 'Complete Eye Care of Medina'),
(58269, 48790, 'en', 'name', 'Clinical Research of South Florida'),
(58270, 48791, 'en', 'name', 'Clinical Research of West Florida'),
(58271, 48792, 'en', 'name', 'Compliant Clinical Research'),
(58272, 48793, 'en', 'name', 'Comprehensive Clinical Research'),
(58273, 48794, 'en', 'name', 'Clinical Research Solutions'),
(58274, 48795, 'en', 'name', 'Center for Aesthetic Dermatology & Laser Surgery'),
(58275, 48796, 'no_lang_code', 'name', 'DermResearch (United States)'),
(58276, 48797, 'en', 'name', 'Clinical Science Institute'),
(58277, 48798, 'en', 'name', 'Comprehensive Clinical Trials'),
(58278, 48799, 'en', 'name', 'Clinical Study Center of Asheville'),
(58279, 48800, 'en', 'name', 'Comprehensive Eye Care'),
(58280, 48801, 'en', 'name', 'Clinical Trial Network'),
(58281, 48802, 'en', 'name', 'Dermatology Associates of Seattle'),
(58282, 48803, 'en', 'name', 'Clinical Trials New Zealand'),
(58283, 48804, 'en', 'name', 'Clinical Trials of Texas'),
(58284, 48805, 'en', 'name', 'Contraception Research and Development'),
(58285, 48806, 'en', 'name', 'Doctors Community Hospital'),
(58286, 48807, 'en', 'name', 'Consultants in Neurology'),
(58287, 48808, 'en', 'name', 'Dermatology Associates of Tallahassee'),
(58288, 48809, 'no_lang_code', 'name', 'Consumer Product Testing Company (United States)'),
(58289, 48810, 'en', 'name', 'Doctors @ Carindale Mall'),
(58290, 48811, 'en', 'name', 'COPD Foundation'),
(58291, 48812, 'en', 'name', 'Dermatology Clinical Research Center of San Antonio'),
(58292, 48813, 'pt', 'name', 'Coris Medicina AvanƧada'),
(58293, 48814, 'en', 'name', 'Don Monti Memorial Research Foundation'),
(58294, 48815, 'fr', 'name', 'Clinique Ambroise ParƩ'),
(58295, 48816, 'fr', 'name', 'Clinique Charcot'),
(58296, 48817, 'fr', 'name', 'Clinique ClƩmentville'),
(58297, 48818, 'en', 'name', 'Cornea Associates of Texas'),
(58298, 48819, 'en', 'name', 'Corneal Consultants of Colorado'),
(58299, 48820, 'en', 'name', 'Downtown Women''s Health Care'),
(58300, 48821, 'en', 'name', 'Cosmetic Laser Dermatology'),
(58301, 48822, 'en', 'name', 'Dermatology Institute of Victoria'),
(58302, 48823, 'en', 'name', 'Dermatology Research Center'),
(58303, 48824, 'nl', 'name', 'Instituut Verbeeten'),
(58304, 48825, 'en', 'name', 'Cosmedica'),
(58305, 48826, 'en', 'name', 'Essex Cardiothoracic Centre'),
(58306, 48827, 'en', 'name', 'Prism Eye Institute'),
(58307, 48828, 'en', 'name', 'Clinical Physiology Associates'),
(58308, 48829, 'nl', 'name', 'Dr Kolbach Kliniek'),
(58309, 48830, 'en', 'name', 'Phoenix Medical Research'),
(58310, 48831, 'it', 'name', 'Humanitas Gavazzeni'),
(58311, 48832, 'en', 'name', 'Crystal Clinic Orthopedic Center'),
(58312, 48833, 'en', 'name', 'Dr V Seshiah Diabetes Research Institute'),
(58313, 48834, 'en', 'name', 'Gift of Hope Organ and Tissue Donor Network'),
(58314, 48835, 'en', 'name', 'Dermatology Specialists'),
(58315, 48836, 'de', 'name', 'DIAKO'),
(58316, 48837, 'en', 'name', 'Gift of Life Michigan'),
(58317, 48838, 'en', 'name', 'Dr. Kovil''s Diabetes Care Centre'),
(58318, 48839, 'en', 'name', 'Dermatology Surgery & Laser Center'),
(58319, 48840, 'en', 'name', 'Glaucoma Associates of New York'),
(58320, 48841, 'en', 'name', 'Drs. Quinn, Foster & Associates'),
(58321, 48842, 'en', 'name', 'Dermatology Treatment & Research Center'),
(58322, 48843, 'en', 'name', 'Glaucoma Associates of Texas'),
(58323, 48844, 'en', 'name', 'University Foot & Ankle Institute'),
(58324, 48845, 'en', 'name', 'Drug Studies America'),
(58325, 48846, 'en', 'name', 'Foothill Family Clinic'),
(58326, 48847, 'en', 'name', 'Drug Trials America'),
(58327, 48848, 'en', 'name', 'Global Scientific Innovations'),
(58328, 48849, 'en', 'name', 'Excel Diagnostics Imaging'),
(58329, 48850, 'en', 'name', 'Good Samaritan Regional Medical Center'),
(58330, 48851, 'de', 'name', 'Diabetes-Akademie'),
(58331, 48852, 'en', 'name', 'Dermatology, Laser & Vein Specialists of the Carolinas'),
(58332, 48853, 'en', 'name', 'Good Samaritan Society'),
(58333, 48854, 'no_lang_code', 'name', 'Great Lakes Research Group (United States)'),
(58334, 48855, 'no_lang_code', 'name', 'Excell Research (United States)'),
(58335, 48856, 'en', 'name', 'Greater Pittsburgh Orthopaedic Associates'),
(58336, 48857, 'en', 'name', 'DuPage Mental Health Services'),
(58337, 48858, 'no_lang_code', 'name', 'Green Beat (Austria)'),
(58338, 48858, 'de', 'name', 'Green Beat - Institut für Nährstoff-Forschung und Sporternährung'),
(58339, 48859, 'fr', 'name', 'Centre Hospitalier de FougĆØres'),
(58340, 48860, 'en', 'name', 'Grekin Skin Institute'),
(58341, 48861, 'en', 'name', 'Durrie Vision'),
(58342, 48862, 'en', 'name', 'Four Seasons'),
(58343, 48863, 'no_lang_code', 'name', 'Extendicare (Canada)'),
(58344, 48864, 'en', 'name', 'Dermatrials Research'),
(58345, 48865, 'en', 'name', 'Dynamed Clinical Research'),
(58346, 48866, 'no_lang_code', 'name', 'Grunberger Diabetes Institute'),
(58347, 48867, 'hu', 'name', 'Fourmed Kft GyógyhÔz'),
(58348, 48868, 'en', 'name', 'Ear Consultants of Georgia'),
(58349, 48869, 'en', 'name', 'Eye Care Associates'),
(58350, 48870, 'en', 'name', 'GSA Research'),
(58351, 48871, 'en', 'name', 'Ear Institute of Chicago'),
(58352, 48872, 'en', 'name', 'Eye Center of Southern Connecticut'),
(58353, 48873, 'en', 'name', 'Eye Centers Of Florida'),
(58354, 48874, 'en', 'name', 'Ear Medical Group'),
(58355, 48875, 'en', 'name', 'Liuzhou Maternal and Child Health Hospital'),
(58356, 48875, 'zh', 'name', 'ęŸ³å·žåø‚å¦‡å¹¼äæå„é™¢'),
(58357, 48876, 'en', 'name', 'Nanxi Mountain Hospital'),
(58358, 48876, 'zh', 'name', 'å¹æč„æēŗ³č„æå±±åŒ»é™¢'),
(58359, 48877, 'en', 'name', 'Eye Surgeons of Indiana'),
(58360, 48878, 'en', 'name', 'East Valley Hematology & Oncology'),
(58361, 48879, 'en', 'name', 'DermDox Dermatology Centers'),
(58362, 48880, 'en', 'name', 'East Wellington Family Health Team'),
(58363, 48881, 'en', 'name', 'Smith Clinic'),
(58364, 48882, 'en', 'name', 'Chinese Academy of Medical Sciences Dermatology Hospital'),
(58365, 48883, 'en', 'name', 'Desert Regional Medical Center'),
(58366, 48884, 'en', 'name', 'Fairfield Behavioral Health Services'),
(58367, 48885, 'en', 'name', 'Family Allergy and Asthma Research Institute'),
(58368, 48886, 'no_lang_code', 'name', 'Fukuoka Kinen Hospital'),
(58369, 48886, 'ja', 'name', 'ē¦å²”čØ˜åæµē—…é™¢'),
(58370, 48887, 'en', 'name', 'Eastside Comprehensive Medical Center'),
(58371, 48888, 'en', 'name', 'Ecclesfield GP'),
(58372, 48889, 'en', 'name', 'Diabetes Care & Hormone Clinic'),
(58373, 48890, 'es', 'name', 'Fundació ACE'),
(58374, 48891, 'en', 'name', 'Lucas Research'),
(58375, 48892, 'en', 'name', 'Diabetes & Endocrinology Specialists'),
(58376, 48893, 'es', 'name', 'Foscal Hospital'),
(58377, 48894, 'en', 'name', 'Diabetes & Endocrine Associates'),
(58378, 48895, 'en', 'name', 'Meadows Dental Clinic'),
(58379, 48896, 'en', 'name', 'Diabetes Care and Research Foundation'),
(58380, 48897, 'es', 'name', 'Fundación Reina Isabel'),
(58381, 48898, 'no_lang_code', 'name', 'Futaba clinic'),
(58382, 48898, 'ja', 'name', 'åŒč‘‰ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(58383, 48899, 'en', 'name', 'State Budget Institution of Health St. Petersburg Clinical Research Center Specialized Types of Medical Care'),
(58384, 48899, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ «Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ клинический Š½Š°ŃƒŃ‡Š½Š¾-практический центр специализированных виГов меГицинской помощи (онкологический)Ā»'),
(58385, 48900, 'en', 'name', 'Future Search Trials'),
(58386, 48901, 'en', 'name', 'FXM Research'),
(58387, 48902, 'en', 'name', 'El Camino Urology Medical Group'),
(58388, 48903, 'en', 'name', 'Gabrail Cancer Center'),
(58389, 48904, 'en', 'name', 'Diabetes Thyroid Hormone Research Institute'),
(58390, 48905, 'en', 'name', 'Gainesville Obstetrics & Gynecology'),
(58391, 48906, 'en', 'name', 'Diablo Clinical Research'),
(58392, 48907, 'de', 'name', 'Diabetes-Zentrum Quakenbrück'),
(58393, 48908, 'en', 'name', 'Gastroenterology Associates Of Western Michigan'),
(58394, 48909, 'no_lang_code', 'name', 'Diacon Hospital'),
(58395, 48910, 'de', 'name', 'Elisabeth-Krankenhaus Essen'),
(58396, 48911, 'en', 'name', 'Diagnostics Research Group'),
(58397, 48912, 'de', 'name', 'Diakonie-Klinikum Stuttgart'),
(58398, 48913, 'de', 'name', 'Dialysezentrum Potsdam'),
(58399, 48914, 'en', 'name', 'Emory Johns Creek Hospital'),
(58400, 48915, 'no_lang_code', 'name', 'Pierian Biosciences (United States)'),
(58401, 48916, 'pt', 'name', 'Hospital Fernandes TƔvora'),
(58402, 48917, 'en', 'name', 'Empire Eye Physicians'),
(58403, 48918, 'no_lang_code', 'name', 'Endocrine Research Solutions (United States)'),
(58404, 48919, 'en', 'name', 'Gulfcoast Clinical Research Center'),
(58405, 48920, 'en', 'name', 'Fertility Care Multan'),
(58406, 48921, 'en', 'name', 'Discover Vision Centers'),
(58407, 48922, 'en', 'name', 'Endocrinology Northwest'),
(58408, 48923, 'en', 'name', 'Dishler Laser Institute'),
(58409, 48924, 'en', 'name', 'Fertility Center of San Antonio'),
(58410, 48925, 'en', 'name', 'Gwinnett Dermatology'),
(58411, 48926, 'no_lang_code', 'name', 'Epi-Q (United States)'),
(58412, 48927, 'ro', 'name', 'Spitalul Clinic Judetean de Urgenta Târgu Mureş'),
(58413, 48928, 'fr', 'name', 'Centre Hospitalier de Roubaix'),
(58414, 48929, 'no_lang_code', 'name', 'Stem Cell Technology (Taiwan)'),
(58415, 48930, 'en', 'name', 'Harvard Eye Associates'),
(58416, 48931, 'no_lang_code', 'name', 'Epic Imaging (United States)'),
(58417, 48932, 'sv', 'name', 'HƤssleholms Sjukhus'),
(58418, 48933, 'de', 'name', 'Evangelisches Krankenhaus Alsterdorf'),
(58419, 48934, 'en', 'name', 'Doctors at the Skin and Laser Centre'),
(58420, 48934, 'de', 'name', 'Haut- und Lasercentrum Potsdam'),
(58421, 48935, 'no_lang_code', 'name', 'Finnair (Finland)'),
(58422, 48936, 'no_lang_code', 'name', 'Haber Dermatology and Cosmetic Surgery (United States)'),
(58423, 48937, 'nl', 'name', 'Havenziekenhuis Rotterdam'),
(58424, 48938, 'en', 'name', 'Horizons Clinical Research Center'),
(58425, 48939, 'en', 'name', 'Shearwater Health'),
(58426, 48940, 'en', 'name', 'Hammoud Hospital University Medical Center'),
(58427, 48940, 'ar', 'name', 'مستؓفى Ų­Ł…ŁˆŲÆ'),
(58428, 48941, 'en', 'name', 'Georgia Cancer Specialists'),
(58429, 48942, 'pl', 'name', 'Hospicjum im. Ks. Eugeniusza Dutkiewicza SAC'),
(58430, 48943, 'no_lang_code', 'name', 'Health Awareness (United States)'),
(58431, 48944, 'en', 'name', 'Fleming Island Center For Clinical Research'),
(58432, 48945, 'en', 'name', 'Georgia Center for Women'),
(58433, 48946, 'en', 'name', 'Health Intervention and Technology Assessment Program'),
(58434, 48946, 'th', 'name', 'ą¹‚ąø„ąø£ąø‡ąøąø²ąø£ąø›ąø£ąø°ą¹€ąø”ąø“ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹ąø„ąø°ąø™ą¹‚ąø¢ąøšąø²ąø¢ąø”ą¹‰ąø²ąø™ąøŖąøøąø‚ąø ąø²ąøž'),
(58435, 48947, 'en', 'name', 'Hamzavi Dermatology'),
(58436, 48948, 'en', 'name', 'Health Protection and Research Organisation'),
(58437, 48949, 'en', 'name', 'Florida Center for Gastroenterology'),
(58438, 48950, 'en', 'name', 'Georgia Clinical Research'),
(58439, 48951, 'en', 'name', 'Florida Fertility Institute'),
(58440, 48952, 'en', 'name', 'Hear and Say'),
(58441, 48953, 'en', 'name', 'Harbin Clinic'),
(58442, 48954, 'en', 'name', 'Georgia Institute for Plastic Surgery'),
(58443, 48955, 'en', 'name', 'Downie Harper and Shanks Dental Practice'),
(58444, 48956, 'no_lang_code', 'name', 'Hospital Bandeirantes'),
(58445, 48957, 'en', 'name', 'AdventHealth Daytona Beach'),
(58446, 48958, 'en', 'name', 'Private Hospital & Heart Center Varde'),
(58447, 48959, 'en', 'name', 'Avera Heart Hospital'),
(58448, 48960, 'en', 'name', 'Georgia Urology'),
(58449, 48961, 'en', 'name', 'Heartland Clinical Research'),
(58450, 48962, 'en', 'name', 'Blanca Paloma Hospital'),
(58451, 48963, 'no_lang_code', 'name', 'Kingmed Diagnostics'),
(58452, 48964, 'en', 'name', 'Heartland Research Associates'),
(58453, 48965, 'en', 'name', 'Roosevelt Hospital'),
(58454, 48966, 'en', 'name', 'Getwell Hospital and Research Institute'),
(58455, 48967, 'es', 'name', 'Hospital ClĆ­nica Benidorm'),
(58456, 48968, 'ca', 'name', 'Hospital Sant Jaume de Calella'),
(58457, 48969, 'en', 'name', 'IGO Medical Group'),
(58458, 48970, 'en', 'name', 'SĆ£o Camilo Hospital'),
(58459, 48971, 'en', 'name', 'Hejian People''s Hospital'),
(58460, 48971, 'zh', 'name', 'ę²³é—“åø‚äŗŗę°‘åŒ»é™¢'),
(58461, 48972, 'de', 'name', 'Ihre-Radiologen'),
(58462, 48973, 'de', 'name', 'HELIOS Albert-Schweitzer-Klinik Northeim'),
(58463, 48974, 'en', 'name', 'Illinois Bone and Joint Institute'),
(58464, 48975, 'pt', 'name', 'Instituto de Medicina AvanƧada'),
(58465, 48976, 'en', 'name', 'International Clinical Research Institute'),
(58466, 48977, 'pt', 'name', 'Hospital de Base'),
(58467, 48978, 'en', 'name', 'International Dermatology Research'),
(58468, 48979, 'en', 'name', 'Indiana Clinical Trials Center'),
(58469, 48980, 'en', 'name', 'Henderson Behavioral Health'),
(58470, 48981, 'en', 'name', 'Indiana Spine Group'),
(58471, 48982, 'en', 'name', 'International Rescue Committee'),
(58472, 48983, 'es', 'name', 'Hospital Jerez Puerta del Sur'),
(58473, 48984, 'en', 'name', 'Iowa Orthopaedic Center'),
(58474, 48985, 'es', 'name', 'Hospital Universitario Dexeus'),
(58475, 48986, 'es', 'name', 'Hospital Universitario de Santander'),
(58476, 48987, 'en', 'name', 'Robert Cizik Eye Clinic'),
(58477, 48988, 'pt', 'name', 'Hospital Vila Franca de Xira'),
(58478, 48989, 'es', 'name', 'Hospital Universitario del Tajo'),
(58479, 48990, 'fr', 'name', 'Infirmerie Protestante'),
(58480, 48991, 'no_lang_code', 'name', 'Inflamax Research (Canada)'),
(58481, 48992, 'en', 'name', 'Hermitage Medicentres'),
(58482, 48993, 'pt', 'name', 'Hospital do Coração'),
(58483, 48994, 'en', 'name', 'Infusion Associates'),
(58484, 48995, 'en', 'name', 'Heze Municipal Hospital'),
(58485, 48996, 'en', 'name', 'Injury Care Medical Center'),
(58486, 48997, 'no_lang_code', 'name', 'Higashi Takarazuka Satoh Hospital'),
(58487, 48998, 'en', 'name', 'Houston Eye Associates'),
(58488, 48999, 'es', 'name', 'Hospital Doctor JosƩ Molina Orosa'),
(58489, 49000, 'no_lang_code', 'name', 'Innovaderm (Canada)'),
(58490, 49001, 'en', 'name', 'Highmark Blue Cross Blue Shield'),
(58491, 49002, 'en', 'name', 'Houston Foot and Ankle Care'),
(58492, 49003, 'en', 'name', 'Innovations for Poverty Action'),
(58493, 49004, 'fr', 'name', 'HƓpital Joseph-Ducuing'),
(58494, 49005, 'en', 'name', 'Houston Perinatal Associates'),
(58495, 49006, 'no_lang_code', 'name', 'Hill Top Research (United States)'),
(58496, 49007, 'en', 'name', 'Hillcrest Clinical Research'),
(58497, 49008, 'en', 'name', 'Innovations for Poverty Action'),
(58498, 49009, 'no_lang_code', 'name', 'Hospital e Maternidade Celso Pierro'),
(58499, 49010, 'en', 'name', 'Hillcrest Family Practice'),
(58500, 49011, 'en', 'name', 'Huai''an City Fourth People''s Hospital'),
(58501, 49011, 'zh', 'name', 'ę·®å®‰åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(58502, 49012, 'en', 'name', 'Innovative Clinical Research'),
(58503, 49013, 'no_lang_code', 'name', 'Isomark (United States)'),
(58504, 49014, 'en', 'name', 'Innovative Research of West Florida'),
(58505, 49015, 'en', 'name', 'Hubei Provincial Hospital of Traditional Chinese Medicine'),
(58506, 49015, 'zh', 'name', 'ę¹–åŒ—ēœäø­é†«é™¢'),
(58507, 49016, 'de', 'name', 'HNO-Praxis'),
(58508, 49017, 'es', 'name', 'Hospital General Dr Aurelio Valdivieso'),
(58509, 49018, 'en', 'name', 'Insight Therapeutics'),
(58510, 49019, 'es', 'name', 'Hospital General Universitario Los Arcos del Mar Menor'),
(58511, 49020, 'en', 'name', 'Hubei Zhongshan Hospital'),
(58512, 49020, 'zh', 'name', 'ę¹–åŒ—ēœäø­å±±åŒ»é™¢'),
(58513, 49021, 'da', 'name', 'Hudklinikken'),
(58514, 49022, 'en', 'name', 'Hudson Dermatology'),
(58515, 49023, 'en', 'name', 'Hoopes Vision'),
(58516, 49024, 'en', 'name', 'Family Beginnings'),
(58517, 49025, 'fr', 'name', 'Institut Hospitalier Franco Britannique'),
(58518, 49026, 'en', 'name', 'Hope Research Institute'),
(58519, 49027, 'en', 'name', 'IVI Murcia Clinic'),
(58520, 49028, 'es', 'name', 'Hospital Laboral Solimat'),
(58521, 49029, 'no_lang_code', 'name', 'Clinlogix (Germany)'),
(58522, 49030, 'pt', 'name', 'Hospital Leforte'),
(58523, 49031, 'en', 'name', 'Institute for Female Pelvic Medicine and Reconstructive Surgery'),
(58524, 49032, 'fr', 'name', 'HƓpital de Morges'),
(58525, 49033, 'no_lang_code', 'name', 'J&S Studies'),
(58526, 49034, 'fr', 'name', 'HƓpital PrivƩ Jacques Cartier'),
(58527, 49035, 'es', 'name', 'Hospital General Nuestra SeƱora del Prado'),
(58528, 49036, 'de', 'name', 'Klinikum Arnsberg'),
(58529, 49037, 'en', 'name', 'Little Company of Mary Hospital'),
(58530, 49038, 'en', 'name', 'JƦren District Psychiatric Centre'),
(58531, 49038, 'no', 'name', 'JƦren distriktspsykiatriske senter'),
(58532, 49039, 'en', 'name', 'Little Rock Family Practice Clinic'),
(58533, 49040, 'en', 'name', 'Institute Of Perinatology Obstetrics And Gynaecology'),
(58534, 49040, 'hy', 'name', 'ՀՀ Ō±Õ† ÕŗÕ„Ö€Õ«Õ¶Õ”ÕæÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ«, Õ“Õ”Õ¶ÕÆÕ”Õ¢Õ”Ö€Õ±ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ„Ö‚ Õ£Õ«Õ¶Õ„ÕÆÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ«'),
(58535, 49041, 'en', 'name', 'Liuyang City Maternal and Child Health Hospital'),
(58536, 49041, 'zh', 'name', 'ęµé˜³åø‚å¦‡å¹¼äæå„é™¢'),
(58537, 49042, 'en', 'name', 'Liuzhou General Hospital'),
(58538, 49042, 'zh', 'name', 'ęŸ³å·žåø‚äŗŗę°‘åŒ»é™¢'),
(58539, 49043, 'pt', 'name', 'Instituo CUF Porto'),
(58540, 49044, 'en', 'name', 'Japan Breast Cancer Research Group'),
(58541, 49044, 'ja', 'name', 'ę—„ęœ¬ä¹³ē™Œē ”ē©¶ć‚°ćƒ«ćƒ¼ćƒ—'),
(58542, 49045, 'es', 'name', 'Hospital Quirónsalud Sagrado Corazón'),
(58543, 49046, 'pt', 'name', 'Instituto de Cardiologia de Santa Catarina'),
(58544, 49047, 'en', 'name', 'Jean Brown Research'),
(58545, 49048, 'pt', 'name', 'Hospital Regional de São José Dr. Homero de Miranda Gomes'),
(58546, 49049, 'en', 'name', 'Jehangir Clinical development Centre'),
(58547, 49050, 'es', 'name', 'Instituto de Ciencia y Medicina Genómica'),
(58548, 49051, 'en', 'name', 'Neurological Surgery'),
(58549, 49052, 'en', 'name', 'Long Island Skin Cancer and Dermatologic Surgery'),
(58550, 49053, 'en', 'name', 'KNI Southwest Michigan Imaging Center'),
(58551, 49054, 'en', 'name', 'Jewell Plastic Surgery Center'),
(58552, 49055, 'en', 'name', 'Cancer Hospital Lopburi'),
(58553, 49055, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąø„ąøžąøšąøøąø£ąøµ'),
(58554, 49056, 'en', 'name', 'Jining Traditional Chinese Medicine Hospital'),
(58555, 49056, 'zh', 'name', 'ęµŽå®åø‚äø­åŒ»é™¢'),
(58556, 49057, 'en', 'name', 'Jewett Orthopaedic Clinic'),
(58557, 49058, 'en', 'name', 'Jewish Association Serving the Aging'),
(58558, 49059, 'fr', 'name', 'Centre Hospitalier de Bretagne Sud'),
(58559, 49060, 'en', 'name', 'Jilin Maternity and Child Health Care Hospital'),
(58560, 49060, 'zh', 'name', 'å‰ęž—åø‚å¦‡å¹¼äæå„é™¢'),
(58561, 49061, 'en', 'name', 'Los Alamitos Medical Center'),
(58562, 49062, 'en', 'name', 'Jinzhou Central Hospital'),
(58563, 49063, 'en', 'name', 'Korean Society of Critical Care Medicine'),
(58564, 49063, 'ko', 'name', 'ėŒ€ķ•œģ¤‘ķ™˜ģžģ˜ķ•™ķšŒ'),
(58565, 49064, 'es', 'name', 'Instituto de Radiomedicina'),
(58566, 49065, 'es', 'name', 'Fundación Kovacs'),
(58567, 49066, 'en', 'name', 'Jewish Child & Family Services'),
(58568, 49067, 'en', 'name', 'Lotus Clinical Research'),
(58569, 49068, 'en', 'name', 'Kozlovsky Delay & Winter Eye Consultants'),
(58570, 49069, 'en', 'name', 'Samatvam Endocrinology Diabetes Centre'),
(58571, 49070, 'ms', 'name', 'KPJ Ampang Puteri Specialist Hospital'),
(58572, 49071, 'en', 'name', 'Kraff Eye Institute'),
(58573, 49072, 'de', 'name', 'Johannes Wesling Klinikum Minden'),
(58574, 49073, 'no_lang_code', 'name', 'Jianan Mental Hospital'),
(58575, 49074, 'en', 'name', 'John-Kenyon'),
(58576, 49075, 'de', 'name', 'Krankenhaus vom Roten Kreuz'),
(58577, 49075, 'en', 'name', 'Red Cross Hospital'),
(58578, 49076, 'en', 'name', 'Jiangmen Wuyi Traditional Chinese Medicine Hospital'),
(58579, 49076, 'zh', 'name', 'äŗ”é‚‘äø­åŒ»é™¢'),
(58580, 49077, 'no_lang_code', 'name', 'Johnson County Clin-Trials (United States)'),
(58581, 49078, 'en', 'name', 'Jiangning District of Nanjing Chinese Medicine Hospital'),
(58582, 49078, 'zh', 'name', 'ę±Ÿå®åŒŗäø­åŒ»é™¢'),
(58583, 49079, 'en', 'name', 'Kresge Eye Institute'),
(58584, 49080, 'en', 'name', 'Jothydev''s Diabetes and Research Center'),
(58585, 49081, 'pt', 'name', 'Hospital Haroldo JuaƧaba'),
(58586, 49082, 'en', 'name', 'Shalby Hospitals'),
(58587, 49083, 'en', 'name', 'Centro Comunitario Juan Diego'),
(58588, 49084, 'en', 'name', 'Kurosawa Hospital'),
(58589, 49084, 'ja', 'name', '黒澤病院'),
(58590, 49085, 'en', 'name', 'Juvenile Bipolar Research Foundation'),
(58591, 49086, 'en', 'name', 'Kyungpook National University Medical Center'),
(58592, 49087, 'de', 'name', 'Klinik Schongau'),
(58593, 49088, 'en', 'name', 'Metro Urology'),
(58594, 49089, 'de', 'name', 'Krankenhaus Reinbek - Startseite'),
(58595, 49090, 'en', 'name', 'PMG Research'),
(58596, 49091, 'en', 'name', 'Taiyuan Maternity and Child Care Hospital'),
(58597, 49091, 'zh', 'name', 'å¤ŖåŽŸåø‚å¦‡å¹¼äæå„é™¢'),
(58598, 49092, 'de', 'name', 'Krankenhaus Brixen'),
(58599, 49093, 'en', 'name', 'Lutheran Medical Group'),
(58600, 49094, 'en', 'name', 'Metroplex Clinical Research Center'),
(58601, 49095, 'de', 'name', 'Krankenhaus Meran'),
(58602, 49096, 'en', 'name', 'Maternal and Child Health Hospital of Sichuan Province'),
(58603, 49096, 'zh', 'name', 'å››å·ēœå¦‡å¹¼äæå„é™¢'),
(58604, 49097, 'en', 'name', 'Metropolitan Asian Family Services'),
(58605, 49098, 'en', 'name', 'Lynde Centre for Dermatology'),
(58606, 49099, 'en', 'name', 'Lyndhurst Gynecologic Associates'),
(58607, 49100, 'en', 'name', 'Maternal and Child Health Hospital of Xinjiang Uygur Autonomous Region'),
(58608, 49100, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗå¦‡å¹¼äæå„é™¢'),
(58609, 49101, 'en', 'name', 'Maternal and Child Health Hospital of Xuzhou'),
(58610, 49101, 'zh', 'name', 'å¾å·žåø‚å¦‡å¹¼äæå„é™¢'),
(58611, 49102, 'en', 'name', 'Kaiser Permanente Roseville Medical Center'),
(58612, 49103, 'en', 'name', 'Michigan CardioVascular Institute'),
(58613, 49104, 'en', 'name', 'M.V. Hospital for Diabetes and Diabetes Research Centre'),
(58614, 49105, 'en', 'name', 'Yunnan Maternal and Child Health'),
(58615, 49105, 'zh', 'name', 'äŗ‘å—ēœå¦‡å¹¼äæå„é™¢'),
(58616, 49106, 'en', 'name', 'Matthew''s Friends'),
(58617, 49107, 'en', 'name', 'Lampang Cancer Hospital'),
(58618, 49108, 'en', 'name', 'M S Ramaiah Memorial Hospital'),
(58619, 49108, 'kn', 'name', 'ą²°ą²¾ą²®ą²Æą³ą²Æ ą²øą³ą²®ą²¾ą²°ą²• ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(58620, 49109, 'no_lang_code', 'name', 'Lampang Hospital'),
(58621, 49110, 'en', 'name', 'Karl Bremer Hospital'),
(58622, 49111, 'no_lang_code', 'name', 'Kamineni Hospitals'),
(58623, 49112, 'fr', 'name', 'Centre Hospitalier Lannion Trestel'),
(58624, 49113, 'en', 'name', 'Mid Illinois Hematology and Oncology Associates'),
(58625, 49114, 'en', 'name', 'Main Line Health'),
(58626, 49115, 'en', 'name', 'Lawrence General Hospital'),
(58627, 49116, 'en', 'name', 'Barbara Bush Children’s Hospital'),
(58628, 49117, 'en', 'name', 'Middle Country Endocrinology'),
(58629, 49118, 'en', 'name', 'Maine Research Associates'),
(58630, 49119, 'fr', 'name', 'Centre de RƩadaptation Cardiaque Les Grands PrƩs'),
(58631, 49120, 'en', 'name', 'Maloney Vision Institute'),
(58632, 49121, 'no_lang_code', 'name', 'ERG Holding Company (United States)'),
(58633, 49122, 'en', 'name', 'Manhattan Medical Research'),
(58634, 49123, 'en', 'name', 'Affiliated Hospital of Liaoning University of Traditional Chinese Medicine'),
(58635, 49123, 'zh', 'name', 'č¾½å®ēœäø­åŒ»é™¢'),
(58636, 49124, 'en', 'name', 'Manna Research'),
(58637, 49125, 'de', 'name', 'Solothurner SpitƤler'),
(58638, 49126, 'en', 'name', 'Mansfield Orthopaedics'),
(58639, 49127, 'en', 'name', 'Midwest Eye Center'),
(58640, 49128, 'en', 'name', 'Maple Leaf Medical Clinic'),
(58641, 49129, 'en', 'name', 'Juravinski Cancer Centre'),
(58642, 49130, 'en', 'name', 'Liberty Laser Eye Center'),
(58643, 49131, 'en', 'name', 'Midwest Fertility Specialists'),
(58644, 49132, 'en', 'name', 'Maria Eleonora Hospital'),
(58645, 49133, 'no_lang_code', 'name', 'Med Center'),
(58646, 49134, 'en', 'name', 'Midwest Institute for Clinical Research'),
(58647, 49135, 'nl', 'name', 'Libra Revalidatie & Audiologie'),
(58648, 49136, 'en', 'name', 'Midwest Therapeutic Endoscopy'),
(58649, 49137, 'pl', 'name', 'Szpital Kliniczny Dzieciątka Jezus'),
(58650, 49138, 'en', 'name', 'Lice Solutions Resource Network'),
(58651, 49139, 'ro', 'name', 'Spitalului Clinic de Urgență pentru Copii Maria Sklodowska Curie'),
(58652, 49140, 'de', 'name', 'MigrƤne Klinik Kƶnigstein'),
(58653, 49141, 'en', 'name', 'Life Quality Resources'),
(58654, 49142, 'en', 'name', 'MedaPhase'),
(58655, 49143, 'en', 'name', 'LifeWorks Northwest'),
(58656, 49144, 'pl', 'name', 'Wojewódzki Szpital Obserwacyjno-Zakaźny im. Tadeusza Browicza w Bydgoszczy'),
(58657, 49145, 'en', 'name', 'Mike O''Callaghan Federal Medical Center'),
(58658, 49146, 'en', 'name', 'Medex Healthcare Research'),
(58659, 49147, 'en', 'name', 'Katzen Eye Care & Laser Center'),
(58660, 49148, 'en', 'name', 'America’s Job Center of California'),
(58661, 49149, 'en', 'name', 'Lighthouse Guild'),
(58662, 49150, 'en', 'name', 'Mind Australia'),
(58663, 49151, 'en', 'name', 'Medical Advanced Pain Specialists'),
(58664, 49152, 'en', 'name', 'Lincoln County Health Department'),
(58665, 49153, 'en', 'name', 'Martin Diagnostic Clinic'),
(58666, 49154, 'en', 'name', 'Keiki O Ka ā€˜ Āina Family Learning Centers'),
(58667, 49155, 'sv', 'name', 'Lindesbergs lasarett'),
(58668, 49156, 'en', 'name', 'Medical Center Ophthalmology Associates'),
(58669, 49157, 'en', 'name', 'Bon Secours Mary Immaculate Hospital'),
(58670, 49158, 'en', 'name', 'N.N. Alexandrov National Cancer Centre'),
(58671, 49159, 'en', 'name', 'Minnesota Orthopedic Sports Medicine Institute'),
(58672, 49160, 'en', 'name', 'Maryland Dermatology Laser Skin and Vein Institute'),
(58673, 49161, 'en', 'name', 'North Central Organized Regionally For Total Health'),
(58674, 49162, 'en', 'name', 'Maryland Brain, Spine + Pain'),
(58675, 49163, 'no_lang_code', 'name', 'NRR Hospital'),
(58676, 49164, 'en', 'name', 'Nakornping Hospital'),
(58677, 49164, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø™ąø„ąø£ąøžąø“ąø‡ąø„ą¹Œ ąøˆąø±ąø‡ąø«ąø§ąø±ąø”ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(58678, 49165, 'no_lang_code', 'name', 'KGK Synergize (Canada)'),
(58679, 49166, 'en', 'name', 'Naples Anesthesia & Physician Associates'),
(58680, 49167, 'en', 'name', 'Medical Park Gaziantep Hospital'),
(58681, 49168, 'en', 'name', 'New England Organ Bank'),
(58682, 49169, 'en', 'name', 'MNJ Institute Of Oncology and Regional Cancer Centre'),
(58683, 49170, 'en', 'name', 'Medical Research Associates'),
(58684, 49171, 'en', 'name', 'New Hope Clinical Research'),
(58685, 49172, 'en', 'name', 'New Mexico Cancer Care Alliance'),
(58686, 49173, 'en', 'name', 'New River Valley Research Institute'),
(58687, 49174, 'en', 'name', 'New West Sports Medicine and Orthopedic Surgery'),
(58688, 49175, 'en', 'name', 'Model Clinical Research'),
(58689, 49176, 'en', 'name', 'Nash County Health Department'),
(58690, 49177, 'en', 'name', 'Molokai Community Health Center'),
(58691, 49178, 'no_lang_code', 'name', 'KiloCoach (Austria)'),
(58692, 49179, 'en', 'name', 'New York Laser and Skin Care'),
(58693, 49180, 'en', 'name', 'Nashville Medical Research Institute'),
(58694, 49181, 'en', 'name', 'Nashville Oncology Associates'),
(58695, 49182, 'no_lang_code', 'name', 'King-Maceyko Dermatology Associates'),
(58696, 49183, 'en', 'name', 'Mood Disorders Association of British Columbia'),
(58697, 49184, 'en', 'name', 'Medicines Evaluation Unit'),
(58698, 49185, 'en', 'name', 'New York Oncology Hematology'),
(58699, 49186, 'en', 'name', 'Leeds, Grenville & Lanark District Health Unit'),
(58700, 49187, 'en', 'name', 'National Clinical Research'),
(58701, 49188, 'en', 'name', 'MaxCure Hospitals'),
(58702, 49189, 'sv', 'name', 'Mora lasarett'),
(58703, 49190, 'en', 'name', 'Central Ohio Radiation Oncology'),
(58704, 49191, 'en', 'name', 'Mortimer Surgery'),
(58705, 49192, 'en', 'name', 'National Foundation for Fertility Research'),
(58706, 49193, 'no_lang_code', 'name', 'Nexus Clinical Research (Canada)'),
(58707, 49194, 'en', 'name', 'Moscow Clinical Scientific Center'),
(58708, 49194, 'ru', 'name', 'Москва Центра клинических исслеГований'),
(58709, 49195, 'no_lang_code', 'name', 'NewEnergy'),
(58710, 49196, 'en', 'name', 'Medicort Sports & Orthopedic Care'),
(58711, 49197, 'no_lang_code', 'name', 'NVision Eye Centers (United States)'),
(58712, 49198, 'en', 'name', 'Nightingale Hospital'),
(58713, 49199, 'en', 'name', 'Northwest Medical Rehabilitation'),
(58714, 49200, 'hu', 'name', 'Mediroyal Prevenciós Központ'),
(58715, 49200, 'en', 'name', 'Mediroyal Prevention Center'),
(58716, 49201, 'no_lang_code', 'name', 'Nini Hospital'),
(58717, 49202, 'en', 'name', 'MedSol Clinical Research Center'),
(58718, 49203, 'no_lang_code', 'name', 'Osaka Nishi Clinic'),
(58719, 49203, 'ja', 'name', 'å¤§é˜Ŗč„æć‚ÆćƒŖćƒ‹ćƒƒ'),
(58720, 49204, 'en', 'name', 'Mott Childrens Health Center'),
(58721, 49205, 'en', 'name', 'MedVadis Research'),
(58722, 49206, 'en', 'name', 'Moundview Memorial Hospital and Clinics'),
(58723, 49207, 'pl', 'name', 'NZOZ Centrum Alergologii'),
(58724, 49208, 'en', 'name', 'Mount Farm Surgery'),
(58725, 49209, 'pl', 'name', 'NZOZ Medi-Spatz'),
(58726, 49210, 'en', 'name', 'Nordic Lymphoma Group'),
(58727, 49211, 'en', 'name', 'Mount Medical Centre'),
(58728, 49212, 'no_lang_code', 'name', 'O&O Alpan (United States)'),
(58729, 49213, 'en', 'name', 'Memorial Hermann The Woodlands Hospital'),
(58730, 49214, 'en', 'name', 'Memorial Orthopaedic Surgical Group'),
(58731, 49215, 'en', 'name', 'National Retail Federation'),
(58732, 49216, 'en', 'name', 'Norman Regional Health System'),
(58733, 49217, 'en', 'name', 'Mount Vernon Cancer Centre'),
(58734, 49218, 'en', 'name', 'OASIS Clinic'),
(58735, 49219, 'en', 'name', 'Mount Vernon Clinical Research'),
(58736, 49220, 'en', 'name', 'Lake OB/GYN Associates of Mid-Florida'),
(58737, 49221, 'en', 'name', 'MARS Memory-Health Network'),
(58738, 49222, 'es', 'name', 'Ocumed Clinica Oftalmologica'),
(58739, 49223, 'en', 'name', 'Memory Enhancement Center of America'),
(58740, 49224, 'en', 'name', 'Northeast Medical Research Associates'),
(58741, 49225, 'en', 'name', 'Mount Carmel East'),
(58742, 49226, 'en', 'name', 'North Carolina Clinical Research'),
(58743, 49227, 'en', 'name', 'Memphis Health Center'),
(58744, 49228, 'en', 'name', 'Neami National'),
(58745, 49229, 'en', 'name', 'Ohnishi Neurological Center'),
(58746, 49229, 'ja', 'name', 'å¤§č„æč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(58747, 49230, 'en', 'name', 'North East Ambulance Service NHS Foundation Trust'),
(58748, 49231, 'en', 'name', 'Mental Illness Fellowship'),
(58749, 49232, 'en', 'name', 'North Jersey Endocrine Consultants'),
(58750, 49233, 'en', 'name', 'Oklahoma Heart Hospital'),
(58751, 49234, 'en', 'name', 'Mercy Angiography Unit'),
(58752, 49235, 'en', 'name', 'International Network of Health Promoting Hospitals & Health Services'),
(58753, 49236, 'en', 'name', 'Multiple Sclerosis Center Of Northeastern New York'),
(58754, 49237, 'en', 'name', 'North Shore Diabetes and Endocrine Associates'),
(58755, 49238, 'en', 'name', 'Oklahoma Otolaryngology Associates'),
(58756, 49239, 'en', 'name', 'Mercy Hospital'),
(58757, 49240, 'en', 'name', 'Fairfield Hospital'),
(58758, 49241, 'en', 'name', 'Omega Medical Research'),
(58759, 49242, 'en', 'name', 'Meridian Clinical Research'),
(58760, 49243, 'en', 'name', 'Myers Street Family Medical Practice'),
(58761, 49244, 'en', 'name', 'North Toronto Eye Care'),
(58762, 49245, 'en', 'name', 'Mesa Fire and Medical Department'),
(58763, 49246, 'en', 'name', 'Omni Eye Services'),
(58764, 49247, 'en', 'name', 'St. David’s HealthCare'),
(58765, 49248, 'en', 'name', 'Peters Medical Research'),
(58766, 49249, 'en', 'name', 'North Central Cancer Treatment Group'),
(58767, 49250, 'en', 'name', 'Pflugerville Independent School District'),
(58768, 49251, 'no_lang_code', 'name', 'Oncocare (Switzerland)'),
(58769, 49252, 'it', 'name', 'Ospedali Riuniti di Foggia'),
(58770, 49253, 'en', 'name', 'North Valley Eye Medical Group'),
(58771, 49254, 'no_lang_code', 'name', 'New Life Scientific (United States)'),
(58772, 49255, 'en', 'name', 'Netcare Unitas Hospital'),
(58773, 49256, 'en', 'name', 'Philadelphia Institute of Dermatology'),
(58774, 49257, 'en', 'name', 'NeuroDevelopment Center'),
(58775, 49258, 'en', 'name', 'Oncology Specialists'),
(58776, 49259, 'en', 'name', 'King Mongkut Memorial Hospital'),
(58777, 49259, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ąøˆąø±ąø‡ąø«ąø§ąø±ąø”ą¹€ąøžąøŠąø£ąøšąøøąø£ąøµ'),
(58778, 49260, 'no_lang_code', 'name', 'Oncotherapeutics (United States)'),
(58779, 49261, 'en', 'name', 'Northeast Baptist Hospital'),
(58780, 49262, 'en', 'name', 'Physician Care Clinical Research'),
(58781, 49263, 'en', 'name', 'University Cancer and Blood Center'),
(58782, 49264, 'de', 'name', 'Klinikum Altenburger Land'),
(58783, 49265, 'eu', 'name', 'Onkologikoa'),
(58784, 49266, 'en', 'name', 'Northeastern Eye Institute'),
(58785, 49267, 'en', 'name', 'Neurology Associates'),
(58786, 49268, 'en', 'name', 'Neurology, Inc'),
(58787, 49269, 'en', 'name', 'McLaren Northern Michigan'),
(58788, 49270, 'en', 'name', 'Ophthalmic Consultants of Long Island'),
(58789, 49271, 'en', 'name', 'Owensboro Dermatology Associates'),
(58790, 49272, 'en', 'name', 'Ophthalmology Associates (United States)'),
(58791, 49273, 'en', 'name', 'Northwest Behavioral Medicine'),
(58792, 49274, 'en', 'name', 'Northwest Clinical Trials'),
(58793, 49275, 'en', 'name', 'Ophthalmology Consultants'),
(58794, 49276, 'en', 'name', 'Northwest Eye Surgeons'),
(58795, 49277, 'en', 'name', 'Oxford Fertility'),
(58796, 49278, 'en', 'name', 'Neurospine Institute Medical Group'),
(58797, 49279, 'en', 'name', 'Optimed Eye and Laser Clinic'),
(58798, 49280, 'en', 'name', 'New England Center for Clinical Research'),
(58799, 49281, 'en', 'name', 'Pinnacle Orthopedics'),
(58800, 49282, 'en', 'name', 'Orange Coast Memorial Medical Center'),
(58801, 49283, 'en', 'name', 'Pacific Clinical Research'),
(58802, 49284, 'no_lang_code', 'name', 'Pinnacle Trials (United States)'),
(58803, 49285, 'en', 'name', 'Pittsburgh Ear Associates'),
(58804, 49286, 'ca', 'name', 'Pius Hospital de Valls'),
(58805, 49287, 'en', 'name', 'Pacific Coast Imaging'),
(58806, 49288, 'en', 'name', 'Pius Hospital Oldenburg'),
(58807, 49289, 'en', 'name', 'Pulmonary and Allergy Associates'),
(58808, 49290, 'en', 'name', 'Oregon Center for Clinical Investigation'),
(58809, 49291, 'en', 'name', 'Pulmonary Associates'),
(58810, 49292, 'en', 'name', 'Pacific Heart Institute'),
(58811, 49293, 'en', 'name', 'Planned Parenthood'),
(58812, 49294, 'en', 'name', 'Oregon Dermatology & Research Center'),
(58813, 49295, 'en', 'name', 'Qihe People''s Hospital'),
(58814, 49295, 'zh', 'name', 'é½ę²³äŗŗę°‘åŒ»é™¢'),
(58815, 49296, 'en', 'name', 'Quality Research'),
(58816, 49297, 'en', 'name', 'Advanced Sleep Medicine Services'),
(58817, 49298, 'en', 'name', 'Pact Atlanta'),
(58818, 49299, 'no_lang_code', 'name', 'Quantum Experimental (Spain)'),
(58819, 49300, 'en', 'name', 'Oregon Medical Research Center'),
(58820, 49301, 'en', 'name', 'Parish Dermatology'),
(58821, 49302, 'en', 'name', 'Oregon Weight Loss Surgery'),
(58822, 49303, 'en', 'name', 'Nuhr Medical Center'),
(58823, 49304, 'en', 'name', 'Queens Medical Associates'),
(58824, 49305, 'en', 'name', 'Nova Scotia Cancer Centre'),
(58825, 49306, 'en', 'name', 'Pakistan Institute of Learning and Living'),
(58826, 49307, 'en', 'name', 'Quest Research Institute'),
(58827, 49308, 'en', 'name', 'Orenburg Regional Clinical Hospital ā„–2'),
(58828, 49309, 'en', 'name', 'Palm Beach Research Center'),
(58829, 49310, 'en', 'name', 'Orlando Clinical Research Center'),
(58830, 49311, 'fr', 'name', 'Centre Hospitalier de Cornouaille'),
(58831, 49312, 'en', 'name', 'Orlando Immunology Center'),
(58832, 49313, 'en', 'name', 'Palmetto Clinical Trial Services');
INSERT INTO `ror_settings` VALUES
(58833, 49314, 'en', 'name', 'OrthoGeorgia'),
(58834, 49315, 'no_lang_code', 'name', 'Quotient Clinical (United Kingdom)'),
(58835, 49316, 'fr', 'name', 'Saint Laurent Polyclinique'),
(58836, 49317, 'en', 'name', 'Palmetto Hematology Oncology'),
(58837, 49318, 'en', 'name', 'Rheumatology Theraputics Medical Center'),
(58838, 49319, 'en', 'name', 'OrthoMaryland'),
(58839, 49320, 'fr', 'name', 'MaternitƩ Port Royal'),
(58840, 49321, 'en', 'name', 'Rhode Island Blood Center'),
(58841, 49322, 'en', 'name', 'Richard H. Weisler M.D P.A. and Associates'),
(58842, 49323, 'en', 'name', 'Palmetto Retina Center'),
(58843, 49324, 'en', 'name', 'Orthopaedic Associates of Michigan'),
(58844, 49325, 'en', 'name', 'Richmond Vascular Center'),
(58845, 49326, 'en', 'name', 'Orthopaedic Center of Vero Beach'),
(58846, 49327, 'en', 'name', 'Orthopaedic Innovation Centre'),
(58847, 49328, 'pl', 'name', 'Specjalistyczny Szpital im.E.Szczeklika w Tarnowie'),
(58848, 49329, 'en', 'name', 'Orthopaedic Institute of Henderson'),
(58849, 49330, 'en', 'name', 'Panyu Hospital of Chinese Medicine'),
(58850, 49330, 'zh', 'name', 'ē•Ŗē¦ŗäø­åŒ»é™¢'),
(58851, 49331, 'en', 'name', 'RTOG Foundation'),
(58852, 49332, 'en', 'name', 'Prairie Education and Research Cooperative'),
(58853, 49333, 'en', 'name', 'Ridgeview Medical Center'),
(58854, 49334, 'de', 'name', 'Praxis für Hämatologie und Onkologie'),
(58855, 49335, 'en', 'name', 'Radiology Associates of Albuquerque'),
(58856, 49336, 'da', 'name', 'Ringsted Sygehus'),
(58857, 49337, 'de', 'name', 'Praxiszentrum OrthopƤdie Unfallchirurgie Nordrhein'),
(58858, 49338, 'nl', 'name', 'Radiotherapeutisch Instituut Friesland'),
(58859, 49339, 'en', 'name', 'Rivergate Dermatology Clinical Research Center'),
(58860, 49340, 'en', 'name', 'Riverhills Healthcare'),
(58861, 49341, 'en', 'name', 'Osceola Regional Medical Center'),
(58862, 49342, 'en', 'name', 'Riverside Clinical Research'),
(58863, 49343, 'no_lang_code', 'name', 'Premier Clinical Research (United States)'),
(58864, 49344, 'en', 'name', 'Rainier Clinical Research Center'),
(58865, 49345, 'en', 'name', 'RML Specialty Hospital'),
(58866, 49346, 'en', 'name', 'Premier Research Group'),
(58867, 49347, 'en', 'name', 'Premiere Research Institute'),
(58868, 49348, 'en', 'name', 'Rockwood Clinic'),
(58869, 49349, 'en', 'name', 'Rocky Mountain Cancer Centers'),
(58870, 49350, 'en', 'name', 'Rocky Mountain Diabetes and Osteoporosis Center'),
(58871, 49351, 'es', 'name', 'Centro MƩdico Recoletas Paracelso'),
(58872, 49352, 'en', 'name', 'Price Vision Group'),
(58873, 49353, 'en', 'name', 'Rocky Mountain Orthopedics'),
(58874, 49354, 'de', 'name', 'RoMed Kliniken'),
(58875, 49355, 'en', 'name', 'Raleigh Neurology Associates'),
(58876, 49356, 'no_lang_code', 'name', 'PAREXEL International (United Kingdom)'),
(58877, 49357, 'en', 'name', 'Park Avenue Dermatology'),
(58878, 49358, 'en', 'name', 'Prism Clinical Research'),
(58879, 49359, 'no', 'name', 'Aleris Rosenborgklinikken'),
(58880, 49360, 'en', 'name', 'San Fernando Valley Urological Associates'),
(58881, 49361, 'en', 'name', 'Kindred Hospital Rancho'),
(58882, 49362, 'no_lang_code', 'name', 'Frauenshuh Cancer Center'),
(58883, 49363, 'tr', 'name', 'Gƶzde Hastanesi Malatya'),
(58884, 49364, 'en', 'name', 'Rapid Medical Research'),
(58885, 49365, 'en', 'name', 'Employment Development Department'),
(58886, 49366, 'no_lang_code', 'name', 'Cutest Systems (United Kingdom)'),
(58887, 49367, 'en', 'name', 'Rowden Medical Partnership'),
(58888, 49368, 'en', 'name', 'San Juan Oncology Associates'),
(58889, 49369, 'en', 'name', 'Yenişehir Hospital'),
(58890, 49369, 'tr', 'name', 'Ɩzel Yenişehir Hastanesi'),
(58891, 49370, 'en', 'name', 'Rebound Orthopedics and Neurosurgery'),
(58892, 49371, 'fr', 'name', 'Centre Hospitalier de Redon'),
(58893, 49372, 'en', 'name', 'Professional Education and Research Institute'),
(58894, 49373, 'en', 'name', 'Passport Health'),
(58895, 49374, 'en', 'name', 'Redwood Family Dermatology'),
(58896, 49375, 'en', 'name', 'PRN of Kansas'),
(58897, 49376, 'en', 'name', 'Patel Hospital'),
(58898, 49377, 'en', 'name', 'Regional Clinical Research'),
(58899, 49378, 'en', 'name', 'Sanford Heart Hospital'),
(58900, 49379, 'en', 'name', 'Patient Priority Clinical Sites'),
(58901, 49380, 'en', 'name', 'Regional Urology'),
(58902, 49381, 'no_lang_code', 'name', 'SanPaTong Hospital'),
(58903, 49381, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąø±ąø™ąø›ą¹ˆąø²ąø•ąø­ąø‡'),
(58904, 49382, 'en', 'name', 'Ruth M. Rothstein CORE Center'),
(58905, 49383, 'it', 'name', 'Pavia nel Cuore'),
(58906, 49384, 'en', 'name', 'Profil Institute for Clinical Research'),
(58907, 49385, 'da', 'name', 'Regionshospitalet Silkeborg'),
(58908, 49386, 'en', 'name', 'Piedmont Cancer Institute'),
(58909, 49387, 'en', 'name', 'Progressive Clinical Research'),
(58910, 49388, 'de', 'name', 'Reha Rheinfelden'),
(58911, 49389, 'pt', 'name', 'Grupo Santa Casa de Belo Horizonte'),
(58912, 49390, 'en', 'name', 'Remington-Davis Clinical Research'),
(58913, 49391, 'pt', 'name', 'Santa Casa de Votuporanga'),
(58914, 49392, 'en', 'name', 'Pediatric Brain Tumor Consortium'),
(58915, 49393, 'en', 'name', 'Rwanda Zambia HIV Research Group'),
(58916, 49394, 'de', 'name', 'SAPHIR Radiochirurgie'),
(58917, 49395, 'pt', 'name', 'Sport Club Corinthians Paulista'),
(58918, 49396, 'en', 'name', 'Reproductive & Genetic Hospital CITIC-Xiangya'),
(58919, 49396, 'zh', 'name', 'äø­äæ”ę¹˜é›…ē”Ÿę®–äøŽé—ä¼ äø“ē§‘åŒ»é™¢ęœ‰é™å…¬åø'),
(58920, 49397, 'en', 'name', 'S3 Clinical Research Centers'),
(58921, 49398, 'en', 'name', 'Reproductive Science Center'),
(58922, 49399, 'en', 'name', 'Sacco Eye Group'),
(58923, 49400, 'en', 'name', 'Saint Joseph Medical Center Joliet'),
(58924, 49401, 'en', 'name', 'Sadick Dermatology'),
(58925, 49402, 'en', 'name', 'Sadick Research Group'),
(58926, 49403, 'en', 'name', 'Reprogenetics'),
(58927, 49404, 'en', 'name', 'Providence Clinical Research'),
(58928, 49405, 'en', 'name', 'Peninsula Orthopedic Associates'),
(58929, 49406, 'no_lang_code', 'name', 'Sahyadri Hospital'),
(58930, 49407, 'en', 'name', 'Peninsula Research'),
(58931, 49408, 'no_lang_code', 'name', 'Synexus (United States)'),
(58932, 49409, 'en', 'name', 'Provision Center for Proton Therapy'),
(58933, 49410, 'no_lang_code', 'name', 'Oncolab (Romania)'),
(58934, 49411, 'en', 'name', 'St. Luke''s Hospital'),
(58935, 49412, 'no_lang_code', 'name', 'Scheck & Siress (United States)'),
(58936, 49413, 'en', 'name', 'Psychiatric Medicine Associates'),
(58937, 49414, 'en', 'name', 'Psych Recovery'),
(58938, 49415, 'fr', 'name', 'Centre Hospitalier de Saint-Brieuc'),
(58939, 49416, 'en', 'name', 'Shenzhen Luohu People''s Hospital'),
(58940, 49416, 'zh', 'name', 'ę·±åœ³ē½—ę¹–åŒŗäŗŗę°‘åŒ»é™¢'),
(58941, 49417, 'en', 'name', 'People''s Hospital of Cangzhou'),
(58942, 49417, 'zh', 'name', 'ę²§å·žäŗŗę°‘åŒ»é™¢'),
(58943, 49418, 'fr', 'name', 'Centre Hospitalier privƩ Saint GrƩgoire'),
(58944, 49419, 'en', 'name', 'Sheepcot Medical Centre'),
(58945, 49420, 'en', 'name', 'Wuhan Dongxihu District People Hospital'),
(58946, 49420, 'zh', 'name', 'äøœč„æę¹–åŒŗäŗŗę°‘åŒ»é™¢'),
(58947, 49421, 'en', 'name', 'Oyster Point Family Health Center'),
(58948, 49422, 'no_lang_code', 'name', 'Shenyang 242 Hospital'),
(58949, 49422, 'zh', 'name', 'ę²ˆé˜³äŗŒå››äŗŒåŒ»é™¢'),
(58950, 49423, 'no_lang_code', 'name', 'Shenyang Anorectal Hospital'),
(58951, 49423, 'zh', 'name', 'ę²‰é˜³č‚›é—ØåŒ»é™¢'),
(58952, 49424, 'en', 'name', 'SeaView Research'),
(58953, 49425, 'en', 'name', 'Shenzhen Sixth People''s Hospital'),
(58954, 49425, 'zh', 'name', 'ę·±åœ³åø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(58955, 49426, 'en', 'name', 'Sall Research Medical Center'),
(58956, 49427, 'pl', 'name', 'NZOZ Dom Sue Ryder'),
(58957, 49428, 'en', 'name', 'Respiratory Clinical Trials'),
(58958, 49429, 'en', 'name', 'Rongcheng City People''s Hospital'),
(58959, 49429, 'zh', 'name', 'č£ęˆäŗŗę°‘åŒ»é™¢'),
(58960, 49430, 'en', 'name', 'Shepherds Care Foundation'),
(58961, 49431, 'pl', 'name', 'Samodzielny Publiczny Zakład Opieki Zdrowotnej w Lubartowie'),
(58962, 49432, 'en', 'name', 'Retina Associates of Kentucky'),
(58963, 49433, 'en', 'name', 'Retina Associates of Western New York'),
(58964, 49434, 'en', 'name', 'Retina Health Center'),
(58965, 49435, 'en', 'name', 'Pepose Vision Institute'),
(58966, 49436, 'en', 'name', 'San Diego Cardiac Center'),
(58967, 49437, 'en', 'name', 'Retina Institute of Hawaii'),
(58968, 49438, 'en', 'name', 'Retina Partners'),
(58969, 49439, 'en', 'name', 'Perinatal Associates of New Mexico'),
(58970, 49440, 'en', 'name', 'San Diego Fertility Center'),
(58971, 49441, 'en', 'name', 'Perio Health Professionals'),
(58972, 49442, 'en', 'name', 'Retina Specialists'),
(58973, 49443, 'en', 'name', 'Retina Specialists of Michigan'),
(58974, 49444, 'en', 'name', 'Aurora Periodontics and Implant Dentistry'),
(58975, 49445, 'en', 'name', 'Sterling Research Group'),
(58976, 49446, 'en', 'name', 'Peripheral Vascular Associates'),
(58977, 49447, 'no_lang_code', 'name', 'Revant (Netherlands)'),
(58978, 49448, 'en', 'name', 'Research Institute of Dallas'),
(58979, 49449, 'en', 'name', 'Personal Enhancement Center'),
(58980, 49450, 'no_lang_code', 'name', 'Ambulance Care (Sweden)'),
(58981, 49450, 'sv', 'name', 'AmbulanssjukvƄrden i Storstockholm'),
(58982, 49451, 'en', 'name', 'Setshaba Research Centre'),
(58983, 49452, 'en', 'name', 'Texas Diabetes & Endocrinology'),
(58984, 49453, 'en', 'name', 'Spaulding Hospital'),
(58985, 49454, 'en', 'name', 'Sinclair Dermatology'),
(58986, 49455, 'en', 'name', 'Stuart Oncology Associates'),
(58987, 49456, 'en', 'name', 'Gabba Dermatology'),
(58988, 49457, 'en', 'name', 'Specialized Dentistry of New York'),
(58989, 49458, 'en', 'name', 'Texas Diabetes Institute'),
(58990, 49459, 'en', 'name', 'Suburban Psychiatric Associates'),
(58991, 49460, 'en', 'name', 'Texas ENT and Allergy'),
(58992, 49461, 'en', 'name', 'Suburban Research Associates'),
(58993, 49462, 'en', 'name', 'Texas Oncology'),
(58994, 49463, 'en', 'name', 'Sioux Falls VA Health Care System'),
(58995, 49464, 'de', 'name', 'Spital Uster'),
(58996, 49465, 'en', 'name', 'Children’s Foundation'),
(58997, 49466, 'ro', 'name', 'Spitalul Clinic de Urgență pentru Copii Cluj-Napoca'),
(58998, 49467, 'en', 'name', 'Skin Care and Laser Physicians of Beverly Hills'),
(58999, 49468, 'en', 'name', 'Summit Research Network'),
(59000, 49469, 'en', 'name', 'Second Peoples Hospital of Shaanxi Province'),
(59001, 49469, 'zh', 'name', 'é™•č„æēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(59002, 49470, 'en', 'name', 'Sprim Advanced Life Sciences'),
(59003, 49471, 'en', 'name', 'Chinese People ''s Liberation Army No. 85 Hospital'),
(59004, 49471, 'zh', 'name', '第85医院'),
(59005, 49472, 'en', 'name', 'Shanghai Changning Maternity and Infant Health Hospital'),
(59006, 49472, 'zh', 'name', 'äøŠęµ·é•æå®åŒŗå¦‡å¹¼äæå„é™¢'),
(59007, 49473, 'en', 'name', 'Springfield Neurology Clinical Trials'),
(59008, 49474, 'de', 'name', 'Institut für Psychogerontologie'),
(59009, 49475, 'no_lang_code', 'name', 'Skin Specialty Dermatology (United States)'),
(59010, 49476, 'en', 'name', 'Suncoast Clinical Research'),
(59011, 49477, 'en', 'name', 'Southern Sports Leagues'),
(59012, 49478, 'en', 'name', 'Skin Surgery Medical Group'),
(59013, 49479, 'en', 'name', 'Center For Balanced Living'),
(59014, 49480, 'en', 'name', 'St Andrew’s Hospital'),
(59015, 49481, 'en', 'name', 'Sundance Clinical Research'),
(59016, 49482, 'en', 'name', 'Sky Ridge Medical Center'),
(59017, 49483, 'en', 'name', 'S.L. Raheja Hospital'),
(59018, 49484, 'en', 'name', 'Center for Clinical and Cosmetic Research'),
(59019, 49485, 'no_lang_code', 'name', 'Center for Clinical Research (United States)'),
(59020, 49486, 'en', 'name', 'Sleep Center of Greater Pittsburgh'),
(59021, 49487, 'en', 'name', 'Center for Dermatology, Cosmetic & Laser Surgery'),
(59022, 49488, 'en', 'name', 'Sleep Therapy and Research Center'),
(59023, 49489, 'en', 'name', 'Center for Excellence in Eye Care'),
(59024, 49490, 'en', 'name', 'Sleep Management Institute'),
(59025, 49491, 'en', 'name', 'Pudong Medical Center'),
(59026, 49491, 'zh', 'name', 'äøŠęµ·åø‚ęµ¦äøœåŒ»é™¢'),
(59027, 49492, 'no_lang_code', 'name', 'SleepMed'),
(59028, 49493, 'en', 'name', 'The Spine & Nerve Centers of the Virginias'),
(59029, 49494, 'en', 'name', 'Central Hospital of Putuo District'),
(59030, 49494, 'zh', 'name', 'ę™®é™€åŒŗäø­åæƒåŒ»é™¢'),
(59031, 49495, 'en', 'name', 'St. Bonifatius Hospital'),
(59032, 49496, 'en', 'name', 'Slocum Center for Orthopedics and Sports Medicine'),
(59033, 49497, 'en', 'name', 'Center for Rheumatology'),
(59034, 49498, 'en', 'name', 'Surin Hospital'),
(59035, 49498, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąøøąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(59036, 49499, 'en', 'name', 'Shuozhou Central Hospital'),
(59037, 49499, 'zh', 'name', 'ęœ”å·žäø­åæƒåŒ»é™¢'),
(59038, 49500, 'en', 'name', 'OneBlood'),
(59039, 49501, 'en', 'name', 'Sutter Roseville Medical Center'),
(59040, 49502, 'en', 'name', 'St. Cloud Orthopedic Associates'),
(59041, 49503, 'en', 'name', 'Suzhou Traditional Chinese Medicine Hospital'),
(59042, 49503, 'zh', 'name', 'č‹å·žäø­åŒ»åŒ»é™¢'),
(59043, 49504, 'en', 'name', 'Somdet Chaopraya Institute of Psychiatry'),
(59044, 49504, 'th', 'name', 'ąøŖąø”ą¹€ąø”ą¹‡ąøˆąøŖąø–ąø²ąøšąø±ąø™ąøˆąø“ąø•ą¹€ąø§ąøŠąøØąø²ąøŖąø•ąø£ą¹Œ'),
(59045, 49505, 'sv', 'name', 'Svensk Onkologisk Fƶrening'),
(59046, 49505, 'en', 'name', 'Swedish Society of Oncology'),
(59047, 49506, 'en', 'name', 'Somerset Skin Centre'),
(59048, 49507, 'en', 'name', 'Shanxi Dayi Hospital'),
(59049, 49507, 'zh', 'name', 'å±±č„æå¤§åŒ»é™¢'),
(59050, 49508, 'en', 'name', 'St. Francis Community Hospital'),
(59051, 49509, 'en', 'name', 'Center Orthopedic & Neurosurgical Care & Research'),
(59052, 49510, 'en', 'name', 'Shaoxing Second Hospital'),
(59053, 49510, 'zh', 'name', 'ē»å…“åø‚ē¬¬äŗŒåŒ»é™¢'),
(59054, 49511, 'en', 'name', 'Sylvana Research'),
(59055, 49512, 'en', 'name', 'St. Johns Center for Clinical Research'),
(59056, 49513, 'en', 'name', 'South African Tuberculosis Vaccine Initiative'),
(59057, 49514, 'en', 'name', 'St. Joseph''s Care Group'),
(59058, 49515, 'en', 'name', 'Center for Autisme'),
(59059, 49516, 'en', 'name', 'Telethon Foundation'),
(59060, 49517, 'en', 'name', 'Synergy Research Centers'),
(59061, 49518, 'en', 'name', 'Horsley Medical Practice'),
(59062, 49519, 'en', 'name', 'South Carolina Oncology Associates'),
(59063, 49520, 'en', 'name', 'Medical Research Network'),
(59064, 49521, 'en', 'name', 'Education & Research Foundation'),
(59065, 49522, 'no_lang_code', 'name', 'Synexus (Germany)'),
(59066, 49523, 'en', 'name', 'Columbus Eye Surgery Center'),
(59067, 49524, 'no_lang_code', 'name', 'Synexus (United Kingdom)'),
(59068, 49525, 'en', 'name', 'Melbourne Clinic'),
(59069, 49526, 'en', 'name', 'Eye Institute of West Florida'),
(59070, 49527, 'en', 'name', 'South Eastern Health and Social Care Trust'),
(59071, 49528, 'en', 'name', 'St. Louis Medical Clinic'),
(59072, 49529, 'en', 'name', 'Multiple Sclerosis Center of Atlanta'),
(59073, 49530, 'en', 'name', 'South Florida Medical Research'),
(59074, 49531, 'en', 'name', 'First Affiliated Hospital of Guangdong Pharmaceutical University'),
(59075, 49531, 'zh', 'name', 'å¹æäøœčÆå­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(59076, 49532, 'en', 'name', 'Syracuse Orthopedic Specialists'),
(59077, 49533, 'en', 'name', 'First Affiliated Hospital of Hunan University of Traditional Chinese Medicine'),
(59078, 49533, 'zh', 'name', 'ę¹–å—äø­åŒ»čÆå¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(59079, 49534, 'en', 'name', 'South Shore Eye Care'),
(59080, 49535, 'en', 'name', 'Inner Mongolia Maternal and Child Health'),
(59081, 49535, 'zh', 'name', 'å†…č’™å¤å¦‡å¹¼äæå„'),
(59082, 49536, 'en', 'name', 'Ninth Hospital of Nanchang'),
(59083, 49536, 'zh', 'name', 'å—ę˜Œåø‚ē¬¬ä¹åŒ»é™¢å®˜ę–¹ē½‘ē«™'),
(59084, 49537, 'en', 'name', 'First Affiliated Hospital of Henan University of Traditional Chinese Medicine'),
(59085, 49537, 'zh', 'name', 'ę²³å—äø­åŒ»å­¦é™¢ē¬¬äø€åŒ»é™¢'),
(59086, 49538, 'en', 'name', 'Hohhot First Hospital'),
(59087, 49538, 'zh', 'name', 'å‘¼å’Œęµ©ē‰¹ē¬¬äø€åŒ»é™¢'),
(59088, 49539, 'en', 'name', 'St. Mary Medical Center'),
(59089, 49540, 'en', 'name', 'Hefei First People''s Hospital'),
(59090, 49540, 'zh', 'name', 'åˆč‚„ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(59091, 49541, 'en', 'name', 'Office of Adolescent Health'),
(59092, 49542, 'en', 'name', 'Fourth People''s Hospital of Taiyuan'),
(59093, 49542, 'zh', 'name', 'å¤ŖåŽŸåø‚ē¬¬å››äŗŗę°‘åŒ»é™¢_百度百科'),
(59094, 49543, 'en', 'name', 'South Texas Accelerated Research Therapeutics'),
(59095, 49544, 'en', 'name', 'Orthopedic Center'),
(59096, 49545, 'en', 'name', 'Yinchuan First People''s Hospital'),
(59097, 49545, 'zh', 'name', 'é“¶å·ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(59098, 49546, 'en', 'name', 'South Texas Blood and Tissue Center'),
(59099, 49547, 'en', 'name', 'Hospital 463 People''s Liberation Army'),
(59100, 49547, 'zh', 'name', 'č§£ę”¾å†›å››å…­äø‰åŒ»é™¢'),
(59101, 49548, 'en', 'name', 'Tampa Bay Medical Research'),
(59102, 49549, 'en', 'name', 'Saint-Petersburg Medico-Social Institute'),
(59103, 49549, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ МеГико'),
(59104, 49550, 'en', 'name', 'Jordan Valley Dermatology'),
(59105, 49551, 'en', 'name', 'Fourth Hospital of Changsha'),
(59106, 49551, 'zh', 'name', 'é•æę²™åø‚ē¬¬å››åŒ»é™¢'),
(59107, 49552, 'en', 'name', 'Fourth Hospital of Inner Mongolia'),
(59108, 49552, 'zh', 'name', 'å†…č’™å¤ē¬¬å››åŒ»é™¢'),
(59109, 49553, 'nl', 'name', 'Tandartspraktijk Bocht Oosterdiep'),
(59110, 49554, 'en', 'name', 'Guenther Dermatology Research Centre'),
(59111, 49555, 'en', 'name', 'Gaozhou People''s Hospital'),
(59112, 49555, 'zh', 'name', 'é«˜å·žäŗŗę°‘åŒ»é™¢'),
(59113, 49556, 'en', 'name', 'Tanzania Women Research Foundation'),
(59114, 49557, 'en', 'name', 'Southbay Pharma Research'),
(59115, 49558, 'en', 'name', 'St. Vladimir Children''s Moscow Clinical Hospital'),
(59116, 49558, 'ru', 'name', 'Š”Š²ŃŃ‚Š¾-ВлаГимирский Š”ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° Москва'),
(59117, 49559, 'en', 'name', 'Nargis Dutt Memorial Cancer Hospital'),
(59118, 49560, 'en', 'name', 'Southeastern Fertility Center'),
(59119, 49561, 'nl', 'name', 'St.Jans Gasthuis Weert'),
(59120, 49562, 'en', 'name', 'Tauber Eye Center'),
(59121, 49563, 'en', 'name', 'Taustine Eye Center'),
(59122, 49564, 'en', 'name', 'Southeastern Retina Associates'),
(59123, 49565, 'en', 'name', 'TEDA International Cardiovascular Hospital'),
(59124, 49565, 'zh', 'name', 'ę³°č¾¾å›½é™…åæƒč”€ē®”ē—…åŒ»é™¢'),
(59125, 49566, 'en', 'name', 'Second Affiliated Hospital of Hunan University of Traditional Chinese Medicine'),
(59126, 49567, 'de', 'name', 'Stadtkrankenhaus Schwabach'),
(59127, 49568, 'no_lang_code', 'name', 'Tekwani Vision Center'),
(59128, 49569, 'en', 'name', 'Beijing Luhe Hospital Affiliated to Capital Medical University'),
(59129, 49569, 'zh', 'name', 'é¦–éƒ½åŒ»ē§‘å¤§å­¦é™„å±žåŒ—äŗ¬ę½žę²³åŒ»é™¢'),
(59130, 49570, 'en', 'name', 'Maas Clinic'),
(59131, 49571, 'en', 'name', 'Southern California Desert Retina Consultants'),
(59132, 49572, 'en', 'name', 'Southern Eye Associates'),
(59133, 49573, 'en', 'name', 'Second People ''s Hospital of Jinzhong'),
(59134, 49573, 'zh', 'name', 'ę™‹äø­åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(59135, 49574, 'en', 'name', 'Temple Lung Center'),
(59136, 49575, 'en', 'name', 'TOTALL Diabetes Hormone Institute'),
(59137, 49576, 'en', 'name', 'Tower Cancer Research Foundation'),
(59138, 49577, 'en', 'name', 'Tennessee Clinical Research Center'),
(59139, 49578, 'en', 'name', 'Staploe Medical Centre'),
(59140, 49579, 'en', 'name', 'Tower Urology Medical Group'),
(59141, 49580, 'en', 'name', 'Tennessee Orthopaedic Alliance'),
(59142, 49581, 'en', 'name', 'Segal Institute for Clinical Research'),
(59143, 49582, 'en', 'name', 'Texan Eye'),
(59144, 49583, 'en', 'name', 'Dali Traditional Chinese Medicine Hospital'),
(59145, 49583, 'zh', 'name', 'å¤§ē†ē™½ę—č‡Ŗę²»å·žäø­åŒ»åŒ»é™¢'),
(59146, 49584, 'no_lang_code', 'name', 'Siesta Group (Austria)'),
(59147, 49585, 'en', 'name', 'Affiliated Hospital of Jiangxi University of Traditional Chinese Medicine'),
(59148, 49585, 'zh', 'name', 'ę±Ÿč„æēœäø­åŒ»é™¢'),
(59149, 49586, 'en', 'name', 'Sparrow Health System'),
(59150, 49587, 'en', 'name', 'Moscow City Oncology Hospital ā„–62'),
(59151, 49588, 'en', 'name', 'TRIA Orthopaedic Center'),
(59152, 49589, 'en', 'name', 'Volgograd Regional Clinical Oncology Center'),
(59153, 49589, 'ru', 'name', 'ВолгограГский областной клинический онкологический Гиспансер ā„– 1'),
(59154, 49590, 'en', 'name', 'Triad Clinical Trials'),
(59155, 49591, 'en', 'name', 'Skin Wellness Center'),
(59156, 49592, 'de', 'name', 'UniversitƤts HNO Klinik Mannheim'),
(59157, 49593, 'en', 'name', 'Third Affiliated Hospital of Inner Mongolia Medical College'),
(59158, 49594, 'en', 'name', 'Centre for Prevention and Control of AIDS and Infectious Diseases'),
(59159, 49594, 'ru', 'name', 'Центр по профилактике Šø Š±Š¾Ń€ŃŒŠ±Šµ со Š”ŠŸŠ˜Š”Š¾Š¼ Šø инфекционными Š·Š°Š±Š¾Š»ŠµŠ²Š°Š½ŠøŃŠ¼Šø,'),
(59160, 49595, 'en', 'name', 'Third Hospital of Changsha'),
(59161, 49596, 'en', 'name', 'Regional Center for Prevention and Control of AIDS and Infectious Diseases'),
(59162, 49596, 'ru', 'name', 'ŠžŠ±Š»Š°ŃŃ‚Š½Š¾Š¹ меГицинский центр по Š±Š¾Ń€ŃŒŠ±Šµ с инфекционными Š·Š°Š±Š¾Š»ŠµŠ²Š°Š½ŠøŃŠ¼Šø'),
(59163, 49597, 'en', 'name', 'Third People ''s Hospital of Chongqing'),
(59164, 49597, 'zh', 'name', 'é‡åŗ†åø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(59165, 49598, 'en', 'name', 'Nizhny Novgorod Regional Clinical Oncology Center'),
(59166, 49598, 'ru', 'name', 'ŠŠøŠ¶Š½ŠøŠ¹ ŠŠ¾Š²Š³Š¾Ń€Š¾Š“ областной онкологический Гиспансер'),
(59167, 49599, 'en', 'name', 'Urology Team'),
(59168, 49600, 'en', 'name', 'Ulyanovsk Regional Oncology Center'),
(59169, 49600, 'ru', 'name', 'Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ клинический онкологический Гиспансер'),
(59170, 49601, 'en', 'name', 'Westbourne Centre'),
(59171, 49602, 'en', 'name', 'Ubonratchathani Cancer Hospital'),
(59172, 49602, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(59173, 49603, 'ro', 'name', 'Spitalul Clinic CF Cluj-Napoca'),
(59174, 49604, 'en', 'name', 'Therafirst Medical Center'),
(59175, 49605, 'en', 'name', 'University Hospital and Clinics'),
(59176, 49606, 'nl', 'name', 'AZ Delta'),
(59177, 49607, 'de', 'name', 'Therapiezentrum Burgau'),
(59178, 49608, 'en', 'name', 'Stedman Clinical Trials'),
(59179, 49609, 'en', 'name', 'Udon Thani Hospital'),
(59180, 49610, 'en', 'name', 'Third People ''s Hospital of Liaoyang'),
(59181, 49611, 'en', 'name', 'Uganda Chartered Health Net'),
(59182, 49612, 'no_lang_code', 'name', 'Universal Court Reporting (United States)'),
(59183, 49613, 'en', 'name', 'University Diabetes and Endocrine Consultants'),
(59184, 49614, 'en', 'name', 'Johnson Center for Child Health and Development'),
(59185, 49615, 'en', 'name', 'Tianjin Infectious Diseases Hospital'),
(59186, 49615, 'zh', 'name', 'å¤©ę“„åø‚ä¼ ęŸ“ē—…åŒ»é™¢'),
(59187, 49616, 'en', 'name', 'Tianjin Tanggu Women and Child Health'),
(59188, 49616, 'aa', 'name', 'å”˜ę²½åŒŗå¦‡å¹¼äæå„é™¢'),
(59189, 49617, 'no_lang_code', 'name', 'AlterG (United States)'),
(59190, 49618, 'en', 'name', 'Tidewater Kidney Specialists'),
(59191, 49619, 'en', 'name', 'University of Zimbabwe-University of California San Francisco'),
(59192, 49620, 'en', 'name', 'Tokeidai Memorial Hospital'),
(59193, 49621, 'en', 'name', 'University of Iowa Health Alliance'),
(59194, 49622, 'en', 'name', 'United Heart and Vascular Clinic'),
(59195, 49623, 'en', 'name', 'NIHR Wellcome Trust Southampton Clinical Research Facility'),
(59196, 49624, 'en', 'name', 'TKL Research'),
(59197, 49625, 'en', 'name', 'Universal Biopharma Research Institute'),
(59198, 49626, 'nl', 'name', 'Tolbrug Specialistische Revalidatie'),
(59199, 49627, 'fr', 'name', 'Centre Hospitalier de VitrƩ'),
(59200, 49628, 'no_lang_code', 'name', 'Vivus Heart Hospital'),
(59201, 49629, 'nl', 'name', 'Franciscus Vlietland'),
(59202, 49630, 'en', 'name', 'Willamette Valley Cancer Institute and Research Center'),
(59203, 49631, 'en', 'name', 'Volunteer Research Group and New Orleans Center for Clinical Research'),
(59204, 49632, 'en', 'name', 'University Physicians Group'),
(59205, 49633, 'en', 'name', 'Wake Research'),
(59206, 49634, 'en', 'name', 'Windsor Clinical Research'),
(59207, 49635, 'en', 'name', 'Windsor Dermatology'),
(59208, 49636, 'de', 'name', 'Winghofer Medicum'),
(59209, 49637, 'en', 'name', 'Warren County Health Department'),
(59210, 49638, 'en', 'name', 'Upper Grand Family Health Team'),
(59211, 49639, 'en', 'name', 'VA Nebraska Western Iowa Health Care System'),
(59212, 49640, 'en', 'name', 'Zhejiang Provincial Hospital of TCM'),
(59213, 49640, 'zh', 'name', 'ęµ™ę±Ÿēœäø­åŒ»é™¢'),
(59214, 49641, 'en', 'name', 'AMC Neurology Group Clinical Research Center'),
(59215, 49642, 'en', 'name', 'Washington Center for Weight Management and Research'),
(59216, 49643, 'en', 'name', 'Moss Memorial Health Clinic'),
(59217, 49644, 'en', 'name', 'VA New England Healthcare System'),
(59218, 49645, 'en', 'name', 'Ural Institute of Cardiology'),
(59219, 49645, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карГиологии'),
(59220, 49646, 'en', 'name', 'Woburn & North Andover Pediatric Associates'),
(59221, 49647, 'en', 'name', 'Wolstan & Goldberg Eye Associates'),
(59222, 49648, 'nl', 'name', 'Waterlandziekenhuis'),
(59223, 49649, 'en', 'name', 'Valdosta Psychiatric Associates'),
(59224, 49650, 'en', 'name', 'Women’s Health Care'),
(59225, 49651, 'fi', 'name', 'Validia Kuntoutus'),
(59226, 49651, 'en', 'name', 'Validia Rehabilitation'),
(59227, 49652, 'de', 'name', 'Maria Hilf Krankenhaus'),
(59228, 49653, 'en', 'name', 'Urology Associates of North Texas'),
(59229, 49654, 'en', 'name', 'College Station Medical Center'),
(59230, 49655, 'en', 'name', 'Urology Bay of Plenty'),
(59231, 49656, 'en', 'name', 'Zhongshan City Second People''s Hospital'),
(59232, 49656, 'zh', 'name', 'äø­å±±åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(59233, 49657, 'en', 'name', 'Valley Retina Institute'),
(59234, 49658, 'en', 'name', 'Weihai Municipal Hospital'),
(59235, 49658, 'zh', 'name', 'åØęµ·åø‚ē«‹åŒ»é™¢'),
(59236, 49659, 'en', 'name', 'Wuzhou Red Cross Hospital'),
(59237, 49659, 'zh', 'name', 'ę¢§å·žåø‚ēŗ¢åå­—ä¼šåŒ»é™¢'),
(59238, 49660, 'en', 'name', 'Wyndhurst Counseling Center'),
(59239, 49661, 'en', 'name', 'Urology San Antonio'),
(59240, 49662, 'en', 'name', 'Xian Central Hospital'),
(59241, 49662, 'zh', 'name', 'č„æå®‰åø‚äø­åæƒåŒ»é™¢'),
(59242, 49663, 'en', 'name', 'Villa Pineta Hospital'),
(59243, 49664, 'no_lang_code', 'name', 'Well Pharma Medical Research (United States)'),
(59244, 49665, 'no_lang_code', 'name', 'Cogentix Medical (United States)'),
(59245, 49666, 'en', 'name', 'Virginia Clinical Research'),
(59246, 49667, 'en', 'name', 'Virginia Eye Consultants'),
(59247, 49668, 'en', 'name', 'Xingtai People''s Hospital'),
(59248, 49668, 'zh', 'name', 'é‚¢å°åø‚äŗŗę°‘åŒ»é™¢'),
(59249, 49669, 'en', 'name', 'Virginia Oncology Associates'),
(59250, 49670, 'en', 'name', 'WellSpan York Hospital'),
(59251, 49671, 'no_lang_code', 'name', 'Vanak Eye Center'),
(59252, 49672, 'en', 'name', 'Vance Thompson Vision'),
(59253, 49673, 'en', 'name', 'Virginia Research Institute'),
(59254, 49674, 'en', 'name', 'Xintai People''s Hospital'),
(59255, 49674, 'zh', 'name', 'ę–°ę³°åø‚äŗŗę°‘åŒ»é™¢'),
(59256, 49675, 'en', 'name', 'Virginia Spine Research Institute'),
(59257, 49676, 'en', 'name', 'Yantai Laiyang Central Hospital'),
(59258, 49676, 'zh', 'name', 'ēƒŸå°čŽ±é˜³äø­åæƒåŒ»é™¢'),
(59259, 49677, 'no_lang_code', 'name', 'Atlantic Clinical Research Collaborative (United States)'),
(59260, 49678, 'en', 'name', 'Wenatchee Valley Hospital & Clinics'),
(59261, 49679, 'en', 'name', 'West Coast Retina'),
(59262, 49680, 'en', 'name', 'Westover Heights Clinic'),
(59263, 49681, 'en', 'name', 'ENT and Allergy'),
(59264, 49682, 'en', 'name', 'Yue Bei People''s Hospital'),
(59265, 49682, 'zh', 'name', 'ē²¤åŒ—äŗŗę°‘åŒ»é™¢'),
(59266, 49683, 'en', 'name', 'Westside Center for Clinical Research'),
(59267, 49684, 'sv', 'name', 'PraktikertjƤnst'),
(59268, 49685, 'no_lang_code', 'name', 'Wenzhou Hospital of Traditional Chinese Medicine'),
(59269, 49685, 'zh', 'name', 'ęø©å·žåø‚äø­åŒ»é™¢'),
(59270, 49686, 'en', 'name', 'West German Heart and Vascular Center Essen'),
(59271, 49686, 'de', 'name', 'Westdeutsche Herz- und Gefäßzentrum Essen'),
(59272, 49687, 'no_lang_code', 'name', 'Yueqing People''s Hospital'),
(59273, 49687, 'zh', 'name', 'ä¹ęø…äŗŗę°‘åŒ»é™¢'),
(59274, 49688, 'en', 'name', 'Whitsett Vision Group'),
(59275, 49689, 'en', 'name', '8020 Promotion Foundation'),
(59276, 49689, 'ja', 'name', '8020ęŽØé€²č²”å›£'),
(59277, 49690, 'en', 'name', 'Venice Family Clinic'),
(59278, 49691, 'en', 'name', 'Western Health and Social Care Trust'),
(59279, 49692, 'en', 'name', 'Veracity Clinical Research'),
(59280, 49693, 'en', 'name', 'Western Maryland Health System'),
(59281, 49694, 'en', 'name', 'American Academy of Periodontology Foundation'),
(59282, 49695, 'en', 'name', 'A-T Children''s Project'),
(59283, 49696, 'en', 'name', 'Agriculture, Forestry and Fisheries Research Council'),
(59284, 49696, 'ja', 'name', 'č¾²ęž—ę°“ē”£ęŠ€č”“ä¼šč­°'),
(59285, 49697, 'en', 'name', 'American Academy of Sleep Medicine'),
(59286, 49698, 'en', 'name', 'American Wildlife Conservation Foundation'),
(59287, 49699, 'en', 'name', 'Society of Health and Physical Educators'),
(59288, 49700, 'en', 'name', 'Asian Association for Dynamic Osteosynthesis'),
(59289, 49701, 'en', 'name', 'American Italian Cancer Foundation'),
(59290, 49702, 'en', 'name', 'American Association for the Surgery of Trauma'),
(59291, 49703, 'en', 'name', 'A. E. Finley Foundation'),
(59292, 49704, 'en', 'name', 'People ''s Hospital of Jilin Province'),
(59293, 49704, 'zh', 'name', 'å‰ęž—ēœäŗŗę°‘åŒ»é™¢'),
(59294, 49705, 'no_lang_code', 'name', 'AgroFresh (United States)'),
(59295, 49706, 'en', 'name', 'ASIS Foundation'),
(59296, 49707, 'no_lang_code', 'name', 'Amgen (Netherlands)'),
(59297, 49708, 'en', 'name', 'American Association of Avian Pathologists'),
(59298, 49709, 'en', 'name', 'Foundation for Health in Aging'),
(59299, 49710, 'en', 'name', 'American Association of Bovine Practitioners'),
(59300, 49711, 'en', 'name', 'American Association of Clinical Endocrinologists'),
(59301, 49712, 'fr', 'name', 'Amis de l''Institut Bordet'),
(59302, 49713, 'en', 'name', 'American Association of Endocrine Surgeons'),
(59303, 49714, 'en', 'name', 'A.P. Giannini Foundation'),
(59304, 49715, 'en', 'name', 'Amon G. Carter Foundation'),
(59305, 49716, 'en', 'name', 'Assisi Foundation of Memphis'),
(59306, 49717, 'en', 'name', 'AAA Foundation for Traffic Safety'),
(59307, 49718, 'en', 'name', 'Aicardi Syndrome Foundation'),
(59308, 49719, 'en', 'name', 'Amyloidosis Foundation'),
(59309, 49720, 'en', 'name', 'American Association of Equine Practitioners'),
(59310, 49721, 'en', 'name', 'Associated Oregon Loggers'),
(59311, 49722, 'en', 'name', 'Anandamahidol foundation'),
(59312, 49723, 'en', 'name', 'American Association of Plastic Surgeons'),
(59313, 49724, 'en', 'name', 'AADC Research Trust'),
(59314, 49725, 'da', 'name', 'Aage V. Jensens Fonde'),
(59315, 49726, 'fr', 'name', 'Association du Syndrome de Lowe'),
(59316, 49727, 'en', 'name', 'American Association of Teachers of Korean'),
(59317, 49728, 'en', 'name', 'American Association of Zoo Veterinarians'),
(59318, 49729, 'en', 'name', 'Aichi Science & Technology Foundation'),
(59319, 49729, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē§‘å­¦ęŠ€č”“äŗ¤ęµč²”å›£'),
(59320, 49730, 'en', 'name', 'Andrea and Charles Bronfman Philanthropies'),
(59321, 49731, 'en', 'name', 'American Asthma Foundation'),
(59322, 49732, 'en', 'name', 'Association for Academic Surgery Foundation'),
(59323, 49733, 'en', 'name', 'American Astronautical Society'),
(59324, 49734, 'en', 'name', 'Andrea Mennen Family Foundation'),
(59325, 49735, 'en', 'name', 'Association for Glycogen Storage Disease'),
(59326, 49736, 'da', 'name', 'AIDS Fondet'),
(59327, 49737, 'en', 'name', 'Association for Prevention Teaching and Research'),
(59328, 49738, 'en', 'name', 'Abell Foundation'),
(59329, 49739, 'en', 'name', 'Andy Warhol Foundation for the Visual Arts'),
(59330, 49740, 'en', 'name', 'American Autoimmune Related Diseases Association'),
(59331, 49741, 'en', 'name', 'Abell-Hanger Foundation'),
(59332, 49742, 'en', 'name', 'American Brain Tumor Association'),
(59333, 49743, 'en', 'name', 'AIM at Melanoma Foundation'),
(59334, 49744, 'en', 'name', 'Anesthesia Patient Safety Foundation'),
(59335, 49745, 'en', 'name', 'Foundation for Child Development'),
(59336, 49746, 'en', 'name', 'Aims2Cure'),
(59337, 49747, 'en', 'name', 'Association for the Study of Medical Education'),
(59338, 49748, 'en', 'name', 'American College of Veterinary Surgeons'),
(59339, 49749, 'en', 'name', 'Angelman Syndrome Foundation'),
(59340, 49750, 'en', 'name', 'Association for the Study of the Middle East and Africa'),
(59341, 49751, 'en', 'name', 'Abney Foundation'),
(59342, 49752, 'fr', 'name', 'Association France Ekbom'),
(59343, 49753, 'en', 'name', 'American Concrete Institute'),
(59344, 49754, 'en', 'name', 'Association for Iron & Steel Technology'),
(59345, 49755, 'en', 'name', 'Association of American Railroads'),
(59346, 49756, 'en', 'name', 'Association of Management Development Institutions in South Asia'),
(59347, 49757, 'en', 'name', 'Association of Migraine Disorders'),
(59348, 49758, 'en', 'name', 'American Dental Hygienists'' Association'),
(59349, 49759, 'en', 'name', 'Ann Arbor Area Community Foundation'),
(59350, 49760, 'it', 'name', 'Associazione Angela Serra per la Ricerca sul Cancro'),
(59351, 49761, 'en', 'name', 'Academy of Architecture for Health Foundation'),
(59352, 49762, 'en', 'name', 'Anna Needs Neuroblastoma Answers'),
(59353, 49763, 'it', 'name', 'Associazione Bianca Garavaglia Onlus'),
(59354, 49764, 'en', 'name', 'American Dysautonomia Institute'),
(59355, 49765, 'en', 'name', 'Anna-Monika-Foundation'),
(59356, 49766, 'en', 'name', 'Vittorio Tison Association'),
(59357, 49767, 'en', 'name', 'Akiyama Life Science Foundation'),
(59358, 49767, 'ja', 'name', 'ē§‹å±±čØ˜åæµē”Ÿå‘½ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(59359, 49768, 'it', 'name', 'Associazione Italiana Rett'),
(59360, 49769, 'en', 'name', 'American Fibromyalgia Syndrome Association'),
(59361, 49770, 'en', 'name', 'Anne and Harry Zarrow Foundation'),
(59362, 49771, 'no_lang_code', 'name', 'AcelRx Pharmaceuticals (United States)'),
(59363, 49772, 'it', 'name', 'Associazione Sammarinese per la Lotta contro le Leucemie e Emopatie Maligne'),
(59364, 49773, 'en', 'name', 'Akron Community Foundation'),
(59365, 49774, 'no_lang_code', 'name', 'Acerde (France)'),
(59366, 49775, 'en', 'name', 'American Fidelity Foundation'),
(59367, 49776, 'en', 'name', 'Achelis and Bodman Foundation'),
(59368, 49777, 'en', 'name', 'Annie E. Casey Foundation'),
(59369, 49778, 'en', 'name', 'American Floral Endowment'),
(59370, 49779, 'no_lang_code', 'name', 'Actinium Pharmaceuticals (United States)'),
(59371, 49780, 'en', 'name', 'Al-Saeed Foundation for Science and Culture'),
(59372, 49780, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© Ų§Ł„Ų³Ų¹ŁŠŲÆ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ©'),
(59373, 49781, 'en', 'name', 'Anthony Rothe Memorial Trust'),
(59374, 49782, 'en', 'name', 'Anxiety and Depression Association of America'),
(59375, 49783, 'en', 'name', 'Alaska Conservation Foundation'),
(59376, 49784, 'en', 'name', 'Asthma Foundation of Tasmania'),
(59377, 49785, 'da', 'name', 'Albani Fonden'),
(59378, 49785, 'en', 'name', 'Albani Foundation'),
(59379, 49786, 'en', 'name', 'AO North America'),
(59380, 49787, 'en', 'name', 'AIMS Education Foundation'),
(59381, 49788, 'en', 'name', 'Association of Perioperative Registered Nurses'),
(59382, 49789, 'en', 'name', 'American Friends of Laniado Hospital'),
(59383, 49790, 'en', 'name', 'Albert and Margaret Alkek Foundation'),
(59384, 49791, 'en', 'name', 'Actuarial Foundation'),
(59385, 49792, 'en', 'name', 'Asthma and Respiratory Foundation New Zealand'),
(59386, 49793, 'en', 'name', 'ACVO Vision for Animals Foundation'),
(59387, 49794, 'en', 'name', 'Albert G. and Olive H. Schlink Foundation'),
(59388, 49795, 'en', 'name', 'American Hand Therapy Foundation'),
(59389, 49796, 'en', 'name', 'Albert J. Ryan Foundation'),
(59390, 49797, 'en', 'name', 'Adam Taliaferro Foundation'),
(59391, 49798, 'en', 'name', 'American Head & Neck Society'),
(59392, 49799, 'en', 'name', 'American Healthcare Professionals and Friends for Medicine in Israel'),
(59393, 49800, 'en', 'name', 'Alberta Emerald Foundation'),
(59394, 49801, 'en', 'name', 'Appalachian Stewardship Foundation'),
(59395, 49802, 'no_lang_code', 'name', 'Astute Medical (United States)'),
(59396, 49803, 'en', 'name', 'American Hellenic Educational Progressive Association'),
(59397, 49804, 'en', 'name', 'Atherton Family Foundation'),
(59398, 49805, 'en', 'name', 'Apple University Consortium'),
(59399, 49806, 'en', 'name', 'American Hungarian Foundation'),
(59400, 49807, 'en', 'name', 'Alberta Science and Technology Leadership Foundation'),
(59401, 49808, 'en', 'name', 'Appraisers Research Foundation'),
(59402, 49809, 'en', 'name', 'Atkinson Foundation'),
(59403, 49810, 'en', 'name', 'Alborada Trust'),
(59404, 49811, 'no_lang_code', 'name', 'Aso Group (Japan)'),
(59405, 49812, 'no_lang_code', 'name', 'Aspirus'),
(59406, 49813, 'en', 'name', 'Alcorso Foundation'),
(59407, 49814, 'en', 'name', 'Arab American Pharmacist Association'),
(59408, 49815, 'en', 'name', 'Atlanta Women’s Foundation'),
(59409, 49816, 'en', 'name', 'Adenoid Cystic Carcinoma Research Foundation'),
(59410, 49817, 'en', 'name', 'Adessium Foundation'),
(59411, 49818, 'en', 'name', 'Arab Science and Technology Foundation'),
(59412, 49818, 'ar', 'name', 'المؤسسة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(59413, 49819, 'en', 'name', 'American Medical Student Association'),
(59414, 49820, 'en', 'name', 'Adhesive and Sealant Council'),
(59415, 49821, 'en', 'name', 'American Music Therapy Association'),
(59416, 49822, 'en', 'name', 'Arab British Chamber of Commerce'),
(59417, 49822, 'ar', 'name', 'غرفة التجارة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ©'),
(59418, 49823, 'en', 'name', 'American Occupational Therapy Foundation'),
(59419, 49824, 'en', 'name', 'Alexander Foundation for Orthodontic Research and Education'),
(59420, 49825, 'en', 'name', 'Arai Science and Technology Promotion Foundation'),
(59421, 49825, 'ja', 'name', 'ę–°äŗ•ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(59422, 49826, 'en', 'name', 'Atsumi International Scholarship Foundation'),
(59423, 49826, 'ja', 'name', 'ęø„ē¾Žå›½éš›äŗ¤ęµč²”å›£'),
(59424, 49827, 'en', 'name', 'American Orchid Society'),
(59425, 49828, 'en', 'name', 'AuDA Foundation'),
(59426, 49829, 'en', 'name', 'Alexia Foundation'),
(59427, 49830, 'fr', 'name', 'Adolphe Merkle Institute'),
(59428, 49831, 'da', 'name', 'Augustinus Fonden'),
(59429, 49831, 'en', 'name', 'Augustinus Foundation'),
(59430, 49832, 'en', 'name', 'Archival Education and Research Institute'),
(59431, 49833, 'no', 'name', 'Aust-Agder Utviklings- og Kompetansefond'),
(59432, 49834, 'en', 'name', 'Ardmore Foundation'),
(59433, 49835, 'en', 'name', 'Austin Community Foundation'),
(59434, 49836, 'en', 'name', 'American Orthopaedic Foot and Ankle Society'),
(59435, 49837, 'en', 'name', 'Alfred Benzon Foundation'),
(59436, 49838, 'en', 'name', 'Australasian Blistering Diseases Foundation'),
(59437, 49839, 'en', 'name', 'Australasian Centre for Italian Studies'),
(59438, 49840, 'en', 'name', 'American Osteopathic Foundation'),
(59439, 49841, 'en', 'name', 'Alfred Friendly Press Partners'),
(59440, 49842, 'en', 'name', 'Urological Society of Australia and New Zealand'),
(59441, 49843, 'en', 'name', 'Argosy Foundation'),
(59442, 49844, 'en', 'name', 'American Otological Society'),
(59443, 49845, 'en', 'name', 'ARISE The Scoliosis Research Trust'),
(59444, 49846, 'en', 'name', 'Arizona Community Foundation'),
(59445, 49847, 'en', 'name', 'American Pain Foundation'),
(59446, 49848, 'en', 'name', 'Allan Wilson Centre'),
(59447, 49849, 'en', 'name', 'Australian Centre for HIV and Hepatitis Virology Research'),
(59448, 49850, 'en', 'name', 'Australian College of Critical Care Nurses'),
(59449, 49851, 'en', 'name', 'Allard Foundation'),
(59450, 49852, 'en', 'name', 'Arizona Cotton Growers Association'),
(59451, 49853, 'en', 'name', 'Allen Foundation'),
(59452, 49854, 'en', 'name', 'Australian Dental Industry Association'),
(59453, 49855, 'en', 'name', 'Arizona Cotton Research and Protection Council'),
(59454, 49856, 'en', 'name', 'Dingo Discovery and Research Centre'),
(59455, 49857, 'en', 'name', 'Alliance for Cancer Gene Therapy'),
(59456, 49858, 'en', 'name', 'Aesthetic Surgery Education and Research Foundation'),
(59457, 49859, 'en', 'name', 'American Pharmacists Association Foundation'),
(59458, 49860, 'en', 'name', 'Alliance for Epilepsy Research'),
(59459, 49861, 'en', 'name', 'Armed Forces Communications and Electronics Association'),
(59460, 49862, 'en', 'name', 'Australian Flora Foundation'),
(59461, 49863, 'en', 'name', 'Arkansas Community Foundation'),
(59462, 49864, 'en', 'name', 'Arkansas Research Alliance'),
(59463, 49865, 'en', 'name', 'American Psychiatric Association Publishing'),
(59464, 49866, 'en', 'name', 'Australian Geographic Society'),
(59465, 49867, 'en', 'name', 'Arkansas State Highway and Transportation Department'),
(59466, 49868, 'en', 'name', 'Australian Institute of Family Studies'),
(59467, 49869, 'en', 'name', 'Aga Khan Foundation'),
(59468, 49870, 'en', 'name', 'Arkay Foundation'),
(59469, 49871, 'en', 'name', 'Alpha Omega Foundation'),
(59470, 49872, 'fr', 'name', 'Agence de l''Eau Seine Normandie'),
(59471, 49873, 'en', 'name', 'American Public Power Association'),
(59472, 49874, 'en', 'name', 'Alpha Omicron Pi Foundation'),
(59473, 49875, 'fr', 'name', 'Agence de l''Oriental'),
(59474, 49876, 'en', 'name', 'Armstrong McDonald Foundation'),
(59475, 49877, 'en', 'name', 'Australian Liver Foundation'),
(59476, 49878, 'en', 'name', 'Alpha Phi Foundation'),
(59477, 49879, 'it', 'name', 'Fondazione Italiana di Ricerca per la Sclerosi Laterale Amiotrofica'),
(59478, 49879, 'en', 'name', 'Italian research Foundation for ALS'),
(59479, 49880, 'en', 'name', 'American Research Center in Sofia Foundation'),
(59480, 49881, 'en', 'name', 'Alphawood Foundation'),
(59481, 49882, 'en', 'name', 'American Research Institute for Policy Development'),
(59482, 49883, 'en', 'name', 'Alport Syndrome Foundation'),
(59483, 49884, 'en', 'name', 'Australian Orchid Foundation'),
(59484, 49885, 'en', 'name', 'ALS Hope Foundation'),
(59485, 49886, 'en', 'name', 'American Respiratory Care Foundation'),
(59486, 49887, 'it', 'name', 'Agenzia Regionale Parchi'),
(59487, 49888, 'en', 'name', 'Australian Society of Periodontology'),
(59488, 49889, 'en', 'name', 'American Academy of Otolaryngic Allergy'),
(59489, 49890, 'en', 'name', 'American Rhinologic Society'),
(59490, 49891, 'en', 'name', 'Australian Prime Ministers Centre'),
(59491, 49892, 'it', 'name', 'Agenzia Sanitaria Regionale Abruzzo'),
(59492, 49893, 'en', 'name', 'Arthur Vining Davis Foundations'),
(59493, 49894, 'en', 'name', 'Australian Society of Exploration Geophysicists'),
(59494, 49895, 'fr', 'name', 'Agir Pour les Maladies Chroniques'),
(59495, 49896, 'en', 'name', 'Alternatives Research & Development Foundation'),
(59496, 49897, 'en', 'name', 'American Society for Radiation Oncology'),
(59497, 49898, 'de', 'name', 'Alzheimer Forschung Initiative'),
(59498, 49899, 'en', 'name', 'Australian Society of Plant Scientists'),
(59499, 49900, 'en', 'name', 'Alzheimer Society of Manitoba'),
(59500, 49901, 'en', 'name', 'Agricultural Technology Adoption Initiative'),
(59501, 49902, 'en', 'name', 'Australian Spinal Research Foundation'),
(59502, 49903, 'en', 'name', 'American Society of Composers, Authors and Publishers'),
(59503, 49904, 'en', 'name', 'Alzheimer''s Australia Dementia Research Foundation'),
(59504, 49905, 'no_lang_code', 'name', 'Avery Design Systems (United States)'),
(59505, 49906, 'en', 'name', 'American Society of Consultant Pharmacists'),
(59506, 49907, 'en', 'name', 'Alzheimer''s Foundation of America'),
(59507, 49908, 'en', 'name', 'Australian Women and Children''s Research Foundation'),
(59508, 49909, 'en', 'name', 'Awesome Foundation'),
(59509, 49910, 'en', 'name', 'Autism Research Foundation'),
(59510, 49911, 'sv', 'name', 'Alzheimerfonden'),
(59511, 49912, 'en', 'name', 'American Society of Genealogists'),
(59512, 49913, 'sv', 'name', 'Arvid Carlsson Fonden'),
(59513, 49914, 'no_lang_code', 'name', 'Baxter (Netherlands)'),
(59514, 49915, 'da', 'name', 'Axel Muusfeldts Fond'),
(59515, 49916, 'en', 'name', 'American Society of Interior Designers Foundation'),
(59516, 49917, 'en', 'name', 'Bay and Paul Foundations'),
(59517, 49918, 'da', 'name', 'Arvid Nilssons Fond'),
(59518, 49919, 'en', 'name', 'Ambrose Monell Foundation'),
(59519, 49920, 'en', 'name', 'American Society of Mammalogists'),
(59520, 49921, 'en', 'name', 'As You Sow'),
(59521, 49922, 'en', 'name', 'Amelia Peabody Charitable Fund'),
(59522, 49923, 'en', 'name', 'Beaver County Foundation'),
(59523, 49924, 'en', 'name', 'Azrieli Foundation'),
(59524, 49925, 'en', 'name', 'American Society of Naturalist'),
(59525, 49926, 'en', 'name', 'Beckman Coulter Foundation'),
(59526, 49927, 'en', 'name', 'American Academy for Jewish Research'),
(59527, 49928, 'en', 'name', 'ASAE Foundation'),
(59528, 49929, 'en', 'name', 'American Society of Pediatric Nephrology'),
(59529, 49930, 'en', 'name', 'Beez Foundation'),
(59530, 49931, 'en', 'name', 'American Academy of Audiology'),
(59531, 49932, 'en', 'name', 'American Society of Pediatric Otolaryngology'),
(59532, 49933, 'de', 'name', 'B. Braun Stiftung'),
(59533, 49934, 'en', 'name', 'American Society of Pharmacognosy'),
(59534, 49935, 'en', 'name', 'Beijing NGO Association for International Exchanges'),
(59535, 49935, 'zh', 'name', 'åŒ—äŗ¬åø‚ę°‘é—“ē»„ē»‡å›½é™…äŗ¤ęµåä¼š'),
(59536, 49936, 'en', 'name', 'American Academy of Implant Dentistry'),
(59537, 49937, 'en', 'name', 'American Society of Plant Taxonomists'),
(59538, 49938, 'en', 'name', 'Beveridge Family Foundation'),
(59539, 49939, 'en', 'name', 'ASHP Research and Education Foundation'),
(59540, 49940, 'no_lang_code', 'name', 'Babes in Arms (Canada)'),
(59541, 49941, 'en', 'name', 'Asia New Zealand Foundation'),
(59542, 49942, 'en', 'name', 'Bharti Centre for Communication'),
(59543, 49943, 'en', 'name', 'Bader Philanthropies'),
(59544, 49944, 'en', 'name', 'Asia Pacific Foundation of Canada'),
(59545, 49945, 'en', 'name', 'Bharti Foundation'),
(59546, 49946, 'en', 'name', 'Bailey Family Foundation'),
(59547, 49947, 'en', 'name', 'American Thyroid Association'),
(59548, 49948, 'en', 'name', 'Ball Brothers Foundation'),
(59549, 49949, 'en', 'name', 'Belgian Brain Tumor Support'),
(59550, 49950, 'en', 'name', 'American Tinnitus Association'),
(59551, 49951, 'en', 'name', 'Ben and Maytee Fisch Foundation'),
(59552, 49952, 'en', 'name', 'American Veterinary Medical Foundation'),
(59553, 49953, 'en', 'name', 'Baltimore Community Foundation'),
(59554, 49954, 'en', 'name', 'Boomer Esiason Foundation'),
(59555, 49955, 'en', 'name', 'American Vineyard Foundation'),
(59556, 49956, 'en', 'name', 'BioFuelNet Canada'),
(59557, 49957, 'en', 'name', 'Bangladesh Fisheries Research Institute'),
(59558, 49957, 'bn', 'name', 'বাংলাদেশ ą¦®ą§Žą¦øą§ą¦Æ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(59559, 49958, 'en', 'name', 'Beneficial Bank'),
(59560, 49959, 'en', 'name', 'Banting Research Foundation'),
(59561, 49960, 'en', 'name', 'British Dietetic Association'),
(59562, 49961, 'no_lang_code', 'name', 'Benesse Holdings (Japan)'),
(59563, 49961, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ™ćƒćƒƒć‚»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(59564, 49962, 'en', 'name', 'Binational Industrial Research and Development Foundation'),
(59565, 49963, 'no_lang_code', 'name', 'Borealis (Austria)'),
(59566, 49964, 'en', 'name', 'Benign Essential Blepharospasm Research Foundation'),
(59567, 49965, 'en', 'name', 'British Herpetological Society'),
(59568, 49966, 'en', 'name', 'Barakat Trust'),
(59569, 49967, 'en', 'name', 'British International Studies Association'),
(59570, 49968, 'en', 'name', 'British Microcirculation Society'),
(59571, 49969, 'no_lang_code', 'name', 'Bird Technologies (United States)'),
(59572, 49970, 'en', 'name', 'British Mycological Society'),
(59573, 49971, 'en', 'name', 'BirdLife Australia'),
(59574, 49972, 'en', 'name', 'British Occupational Health Research Foundation'),
(59575, 49973, 'en', 'name', 'Bently Foundation'),
(59576, 49974, 'en', 'name', 'Bergen Research Foundation'),
(59577, 49974, 'no', 'name', 'Bergens Forskningsstiftelse'),
(59578, 49975, 'en', 'name', 'British Scoliosis Research Foundation'),
(59579, 49976, 'en', 'name', 'British Small Animal Veterinary Association'),
(59580, 49977, 'en', 'name', 'Barker Welfare Foundation'),
(59581, 49978, 'en', 'name', 'British Society for Cell Biology'),
(59582, 49979, 'en', 'name', 'Blakemore Foundation'),
(59583, 49980, 'sv', 'name', 'Barndiabetesfondens'),
(59584, 49981, 'en', 'name', 'Berks County Community Foundation'),
(59585, 49982, 'en', 'name', 'Berkshire Taconic Community Foundation'),
(59586, 49983, 'en', 'name', 'Barr Foundation'),
(59587, 49984, 'en', 'name', 'Barra Foundation'),
(59588, 49985, 'en', 'name', 'Barrett Bateman Foundation'),
(59589, 49986, 'en', 'name', 'British Society for Eighteenth-Century Studies'),
(59590, 49987, 'en', 'name', 'Brad Kamisky Foundation'),
(59591, 49988, 'en', 'name', 'Blanche Davis Moore Foundation'),
(59592, 49989, 'en', 'name', 'Bradshaw Knight Foundation'),
(59593, 49990, 'en', 'name', 'Barry Community Foundation'),
(59594, 49991, 'en', 'name', 'Bernard Osher Foundation'),
(59595, 49992, 'en', 'name', 'British Society For Parasitology'),
(59596, 49993, 'en', 'name', 'Brady Education Foundation'),
(59597, 49994, 'en', 'name', 'Bernard van Leer Foundation'),
(59598, 49995, 'en', 'name', 'Blazeman Foundation for ALS'),
(59599, 49996, 'en', 'name', 'British Society for the History of Science'),
(59600, 49997, 'en', 'name', 'Bernice E Holland Foundation'),
(59601, 49998, 'en', 'name', 'British Society for the Philosophy of Science'),
(59602, 49999, 'de', 'name', 'Bernische Krebsliga'),
(59603, 50000, 'en', 'name', 'British Society of Audiology'),
(59604, 50001, 'en', 'name', 'British Society of Gerontology'),
(59605, 50002, 'en', 'name', 'Batten Disease Family Association'),
(59606, 50003, 'en', 'name', 'British Thyroid Foundation'),
(59607, 50004, 'sv', 'name', 'Berth of Kantzows Stiftelse'),
(59608, 50004, 'en', 'name', 'Berth von Kantzows Foundation'),
(59609, 50005, 'en', 'name', 'Battle Creek Community Foundation'),
(59610, 50006, 'de', 'name', 'Berthold Leibinger Stiftung'),
(59611, 50007, 'en', 'name', 'Brookdale Foundation Group'),
(59612, 50008, 'de', 'name', 'Baugarten Zürich Stiftung'),
(59613, 50009, 'en', 'name', 'Brain Tumor Funders Collaborative'),
(59614, 50010, 'en', 'name', 'Cades Schutte');
INSERT INTO `ror_settings` VALUES
(59615, 50011, 'en', 'name', 'Brain Tumour Foundation of Canada'),
(59616, 50012, 'en', 'name', 'Cadillac Area Community Foundation'),
(59617, 50013, 'en', 'name', 'Bruner Foundation'),
(59618, 50014, 'no_lang_code', 'name', 'BrainScope (United States)'),
(59619, 50015, 'en', 'name', 'Bryan Area Foundation'),
(59620, 50016, 'en', 'name', 'John Cain Foundation'),
(59621, 50017, 'en', 'name', 'Blowitz-Ridgeway Foundation'),
(59622, 50018, 'en', 'name', 'California Cherry Board'),
(59623, 50019, 'en', 'name', 'Braitmayer Foundation'),
(59624, 50020, 'en', 'name', 'California Consumer Protection Foundation'),
(59625, 50021, 'en', 'name', 'California Dairy Research Foundation'),
(59626, 50022, 'en', 'name', 'Blue Cross and Blue Shield of Florida Foundation'),
(59627, 50023, 'en', 'name', 'California Dental Association Foundation'),
(59628, 50024, 'en', 'name', 'Blue Shield of California Foundation'),
(59629, 50025, 'en', 'name', 'Healthy Minds Canada'),
(59630, 50026, 'en', 'name', 'Canadian Society of Pharmacology and Therapeutics'),
(59631, 50027, 'en', 'name', 'BlueCross BlueShield of South Carolina Foundation'),
(59632, 50028, 'en', 'name', 'California Psychological Association'),
(59633, 50029, 'en', 'name', 'Buckeye Career Center Foundation'),
(59634, 50030, 'en', 'name', 'California State Beekeepers Association'),
(59635, 50031, 'en', 'name', 'Canadian Thoracic Society'),
(59636, 50032, 'en', 'name', 'National Cancer Coalition'),
(59637, 50033, 'no_lang_code', 'name', 'Shanxi Fenyang Hospital'),
(59638, 50033, 'zh', 'name', 'å±±č„æēœę±¾é˜³åŒ»é™¢'),
(59639, 50034, 'en', 'name', 'Lambda Therapeutic Research'),
(59640, 50035, 'en', 'name', 'Canary Foundation'),
(59641, 50036, 'en', 'name', 'Blumenthal Foundation'),
(59642, 50037, 'en', 'name', 'California Urological Association'),
(59643, 50038, 'en', 'name', 'BMI Foundation'),
(59644, 50039, 'en', 'name', 'Breast Cancer and Womens Health Institute'),
(59645, 50040, 'en', 'name', 'Canavan Research Foundation'),
(59646, 50041, 'en', 'name', 'California Wellness Foundation'),
(59647, 50042, 'en', 'name', 'Bodossaki Foundation'),
(59648, 50042, 'el', 'name', 'ĪŠĪ“ĻĻ…Ī¼Ī± ĪœĻ€ĪæĪ“ĪæĻƒĪ¬ĪŗĪ·'),
(59649, 50043, 'en', 'name', 'Bhare Foundation'),
(59650, 50044, 'en', 'name', 'Cancer Aid and Research Fund'),
(59651, 50045, 'en', 'name', 'Brentwood Foundation'),
(59652, 50046, 'en', 'name', 'Boehringer Ingelheim Foundation'),
(59653, 50046, 'de', 'name', 'Boehringer Ingelheim Stiftung'),
(59654, 50047, 'en', 'name', 'Calvert K Collins Family Foundation'),
(59655, 50048, 'en', 'name', 'Brewers Association of Australia and New Zealand'),
(59656, 50049, 'en', 'name', 'Camargo Foundation'),
(59657, 50050, 'en', 'name', 'Boettcher Foundation'),
(59658, 50051, 'en', 'name', 'Cancer and Polio Research Fund'),
(59659, 50052, 'en', 'name', 'Brewster Place'),
(59660, 50053, 'en', 'name', 'Buffalo Bills Foundation'),
(59661, 50054, 'en', 'name', 'Bogliasco Foundation'),
(59662, 50055, 'en', 'name', 'Brian Mercer Charitable Trust'),
(59663, 50056, 'en', 'name', 'Cancer Research Foundation'),
(59664, 50057, 'en', 'name', 'Cameron Brooks Foundation'),
(59665, 50058, 'en', 'name', 'Buhl Foundation'),
(59666, 50059, 'en', 'name', 'Bohemian Foundation'),
(59667, 50060, 'en', 'name', 'Campbell Foundation'),
(59668, 50061, 'en', 'name', 'Cancer Research Wales'),
(59669, 50062, 'en', 'name', 'Building and Social Housing Foundation'),
(59670, 50063, 'en', 'name', 'BrickStreet Foundation'),
(59671, 50064, 'en', 'name', 'Campbell Institute'),
(59672, 50065, 'en', 'name', 'Australian National Kennel Council'),
(59673, 50066, 'en', 'name', 'BrightSpark Foundation'),
(59674, 50067, 'en', 'name', 'Bullitt Foundation'),
(59675, 50068, 'en', 'name', 'Cannon Foundation'),
(59676, 50069, 'en', 'name', 'Rata Foundation'),
(59677, 50070, 'en', 'name', 'Iris & B. Gerald Cantor Foundation'),
(59678, 50071, 'en', 'name', 'Canadian Allergy, Asthma and Immunology Foundation'),
(59679, 50071, 'fr', 'name', 'Fondation Canadienne d''Allergie, d''Asthme et d''Immunologie'),
(59680, 50072, 'en', 'name', 'Capita Foundation'),
(59681, 50073, 'en', 'name', 'Brinson Foundation'),
(59682, 50074, 'en', 'name', 'Canadian Anesthesia Research Foundation'),
(59683, 50075, 'en', 'name', 'Buoniconti Fund'),
(59684, 50076, 'en', 'name', 'Bolyai Foundation'),
(59685, 50077, 'en', 'name', 'CapitalCare Foundation'),
(59686, 50078, 'en', 'name', 'British Antarctic Survey'),
(59687, 50079, 'en', 'name', 'Bonfils-Stanton Foundation'),
(59688, 50080, 'en', 'name', 'Canadian Bee Research Fund'),
(59689, 50081, 'fr', 'name', 'Association Canadienne de la Maladie Coeliaque'),
(59690, 50081, 'en', 'name', 'Canadian Celiac Association'),
(59691, 50082, 'en', 'name', 'Captain Planet Foundation'),
(59692, 50083, 'en', 'name', 'British Association for American Studies'),
(59693, 50084, 'en', 'name', 'Carol M. Baldwin Breast Cancer Research Fund'),
(59694, 50085, 'en', 'name', 'Carcinoid Cancer Foundation'),
(59695, 50086, 'en', 'name', 'Cardiovascular Institute of Philadelphia'),
(59696, 50087, 'en', 'name', 'British Association for Chinese Studies'),
(59697, 50088, 'no_lang_code', 'name', 'Carroll & Meynell Transformers (United Kingdom)'),
(59698, 50089, 'en', 'name', 'Canadian Foundation for AIDS Research'),
(59699, 50089, 'fr', 'name', 'Fondation Canadienne de Recherche sur le Sida'),
(59700, 50090, 'en', 'name', 'Care-for-Rare Foundation'),
(59701, 50090, 'de', 'name', 'Care-for-Rare-Stiftung'),
(59702, 50091, 'en', 'name', 'Canadian Foundation for Dietetic Research'),
(59703, 50091, 'fr', 'name', 'Fondation Canadienne de la Recherche en DiƩtƩtique'),
(59704, 50092, 'en', 'name', 'Casio Science Promotion Foundation'),
(59705, 50092, 'ja', 'name', 'ć‚«ć‚·ć‚Ŗē§‘å­¦ęŒÆčˆˆč²”å›£'),
(59706, 50093, 'en', 'name', 'British Association for Irish Studies'),
(59707, 50094, 'en', 'name', 'Cares Foundation'),
(59708, 50095, 'en', 'name', 'Burke Foundation'),
(59709, 50096, 'en', 'name', 'British Association of Endocrine and Thyroid Surgeons'),
(59710, 50097, 'en', 'name', 'Canadian Intensive Care Foundation'),
(59711, 50098, 'en', 'name', 'Neuroendocrine Tumor Research Foundation'),
(59712, 50099, 'no_lang_code', 'name', 'Burton D. Morgan Foundation'),
(59713, 50100, 'en', 'name', 'British Biophysical Society'),
(59714, 50101, 'en', 'name', 'Canadian Nurses Foundation'),
(59715, 50101, 'fr', 'name', 'La Fondation des InfirmiĆØres et Infirmiers du Canada'),
(59716, 50102, 'en', 'name', 'Catalyst Foundation'),
(59717, 50103, 'en', 'name', 'Canadian Physiotherapy Association'),
(59718, 50104, 'en', 'name', 'Carl & Emily Fuchs Foundation'),
(59719, 50105, 'en', 'name', 'British Columbia Environmental and Occupational Health Research Network'),
(59720, 50106, 'en', 'name', 'Bush Foundation'),
(59721, 50107, 'de', 'name', 'Carl Friedrich von Siemens Stiftung'),
(59722, 50108, 'en', 'name', 'Butz Foundation'),
(59723, 50109, 'en', 'name', 'Chicago Society for Coatings Technology'),
(59724, 50110, 'en', 'name', 'Collaborative Spine Research Foundation'),
(59725, 50111, 'en', 'name', 'Carl Gellert and Celia Berta Gellert Foundation'),
(59726, 50112, 'en', 'name', 'Witter Bynner Foundation for Poetry'),
(59727, 50113, 'en', 'name', 'Cave Research Foundation'),
(59728, 50114, 'en', 'name', 'Carl M. Freeman Foundation'),
(59729, 50115, 'en', 'name', 'Carl Marshall and Mildred Almen Reeves Foundation'),
(59730, 50116, 'en', 'name', 'Cedar Tree Foundation'),
(59731, 50117, 'en', 'name', 'Chiesi Foundation'),
(59732, 50118, 'en', 'name', 'Cellmark Forensic Services'),
(59733, 50119, 'en', 'name', 'Carl Wilson Foundation'),
(59734, 50120, 'en', 'name', 'Child Cancer Foundation'),
(59735, 50121, 'en', 'name', 'Child Development Associate'),
(59736, 50122, 'en', 'name', 'Child Health Foundation'),
(59737, 50123, 'en', 'name', 'Carl Zeiss Foundation'),
(59738, 50123, 'de', 'name', 'Carl-Zeiss-Stiftung'),
(59739, 50124, 'en', 'name', 'Celma Mastry Ovarian Cancer Foundation'),
(59740, 50125, 'en', 'name', 'Covenant Foundation'),
(59741, 50126, 'en', 'name', 'Child Neurology Foundation'),
(59742, 50127, 'en', 'name', 'College Spark Washington'),
(59743, 50128, 'en', 'name', 'Collins Foundation'),
(59744, 50129, 'en', 'name', 'Apraxia KIDS'),
(59745, 50130, 'en', 'name', 'Collins Medical Trust'),
(59746, 50131, 'en', 'name', 'Cranberry Institute'),
(59747, 50132, 'en', 'name', 'Childhood Brain Tumor Foundation'),
(59748, 50133, 'ga', 'name', 'An Roinn LeanaĆ­ agus GnóthaĆ­ Ɠige'),
(59749, 50133, 'en', 'name', 'Department of Children and Youth Affairs'),
(59750, 50134, 'en', 'name', 'Colorado Health Foundation'),
(59751, 50135, 'en', 'name', 'Childrens Brittle Bone Foundation'),
(59752, 50136, 'en', 'name', 'Crawford Heritage Community Foundation'),
(59753, 50137, 'en', 'name', 'Childrens Cancer Foundation'),
(59754, 50138, 'en', 'name', 'Childrens Cardiomyopathy Foundation'),
(59755, 50139, 'en', 'name', 'Colorado Parks and Wildlife'),
(59756, 50140, 'en', 'name', 'Childrens Fund for Glycogen Storage Disease Research'),
(59757, 50141, 'en', 'name', 'Colorado Trust'),
(59758, 50142, 'en', 'name', 'Creative Capital Foundation'),
(59759, 50143, 'en', 'name', 'Cricket Island Foundation'),
(59760, 50144, 'en', 'name', 'Columbia Foundation'),
(59761, 50145, 'en', 'name', 'Childrens Heart Foundation'),
(59762, 50146, 'en', 'name', 'Crohn''s & Colitis Australia'),
(59763, 50147, 'en', 'name', 'Columbus Foundation'),
(59764, 50148, 'en', 'name', 'Crohn''s and Colitis Canada'),
(59765, 50149, 'en', 'name', 'Comanis Foundation'),
(59766, 50150, 'en', 'name', 'Childrens Leukemia Foundation of Michigan'),
(59767, 50151, 'en', 'name', 'Childrens Liver Disease Foundation'),
(59768, 50152, 'en', 'name', 'Center for Land Use Interpretation'),
(59769, 50153, 'en', 'name', 'Crown Property Bureau'),
(59770, 50154, 'en', 'name', 'Children''s Neuroblastoma Cancer Foundation'),
(59771, 50155, 'en', 'name', 'Communities Foundation of Texas'),
(59772, 50156, 'en', 'name', 'Department of Trade, Industry and Competition'),
(59773, 50157, 'en', 'name', 'Community Broadcasting Foundation'),
(59774, 50158, 'en', 'name', 'Community Foundation for Greater Atlanta'),
(59775, 50159, 'en', 'name', 'Community Foundation for Greater Buffalo'),
(59776, 50160, 'en', 'name', 'Institute for National Strategic Studies'),
(59777, 50161, 'en', 'name', 'China Foundation for Poverty Alleviation'),
(59778, 50161, 'zh', 'name', 'äø­å›½ę‰¶č“«åŸŗé‡‘ä¼š'),
(59779, 50162, 'en', 'name', 'Desmoid Tumor Research Foundation'),
(59780, 50163, 'en', 'name', 'Community Foundation for Muskegon County'),
(59781, 50164, 'en', 'name', 'CSY China-International Hepatitis Research Foundation'),
(59782, 50165, 'en', 'name', 'Community Foundation of Greater Des Moine'),
(59783, 50166, 'da', 'name', 'Det Obelske Familiefond'),
(59784, 50166, 'en', 'name', 'Obel Family Foundation'),
(59785, 50167, 'en', 'name', 'Community Foundation of Broward'),
(59786, 50168, 'no_lang_code', 'name', 'CTS Forex (Canada)'),
(59787, 50169, 'en', 'name', 'Deupree Family Foundation'),
(59788, 50170, 'en', 'name', 'Culinary Trust'),
(59789, 50171, 'en', 'name', 'Community Foundation of Northeast Alabama'),
(59790, 50172, 'de', 'name', 'Deutsche Bundesbank'),
(59791, 50172, 'en', 'name', 'German Federal Bank'),
(59792, 50173, 'en', 'name', 'Community Foundation of Central Wisconsin'),
(59793, 50174, 'de', 'name', 'Deutsche Dystonie Gesellschaft'),
(59794, 50175, 'en', 'name', 'Cullen Foundation'),
(59795, 50176, 'de', 'name', 'Deutsche Kinderkrebsstiftung'),
(59796, 50177, 'en', 'name', 'Community Foundation of Elmira Corning and the Finger Lakes'),
(59797, 50178, 'en', 'name', 'Cummings Foundation'),
(59798, 50179, 'en', 'name', 'Community Foundation Grand Forks East Grand Forks and Region'),
(59799, 50180, 'en', 'name', 'Community Foundation of Greater Memphis'),
(59800, 50181, 'en', 'name', 'Cure Brain Cancer Foundation'),
(59801, 50182, 'en', 'name', 'CHOC Foundation'),
(59802, 50183, 'en', 'name', 'Community Foundation of Greater New Britain'),
(59803, 50184, 'en', 'name', 'CURE Childhood Cancer'),
(59804, 50185, 'en', 'name', 'Community Foundation of Greene County'),
(59805, 50186, 'en', 'name', 'Community Foundation of Jackson Hole'),
(59806, 50187, 'en', 'name', 'Community Foundation of Louisville'),
(59807, 50188, 'en', 'name', 'Community Foundation of Monroe County'),
(59808, 50189, 'en', 'name', 'Cure HHT'),
(59809, 50190, 'en', 'name', 'Community Foundation of Northern Illinois'),
(59810, 50191, 'en', 'name', 'Central New York Community Foundation'),
(59811, 50192, 'en', 'name', 'Drum Foundation'),
(59812, 50193, 'en', 'name', 'Cure Kids'),
(59813, 50194, 'en', 'name', 'North Carolina Community Foundation'),
(59814, 50195, 'en', 'name', 'Chrest Foundation'),
(59815, 50196, 'en', 'name', 'Cure Starts Now Foundation'),
(59816, 50197, 'en', 'name', 'Dew Foundation'),
(59817, 50198, 'en', 'name', 'Community Foundation of the Ozarks'),
(59818, 50199, 'en', 'name', 'Central Policy Unit'),
(59819, 50199, 'zh', 'name', '中央政策組'),
(59820, 50200, 'en', 'name', 'CurePSP'),
(59821, 50201, 'en', 'name', 'Christie''s'),
(59822, 50202, 'en', 'name', 'Centre County Community Foundation'),
(59823, 50203, 'en', 'name', 'Community Foundation of Will County'),
(59824, 50204, 'en', 'name', 'Diabetes Technology Society'),
(59825, 50205, 'sv', 'name', 'Diabetesfonden'),
(59826, 50206, 'en', 'name', 'Cushman Foundation for Foraminiferal Research'),
(59827, 50207, 'en', 'name', 'Christopher Columbus Fellowship Foundation'),
(59828, 50208, 'en', 'name', 'Finnish Diabetes Association'),
(59829, 50208, 'fi', 'name', 'Suomen Diabetesliitto'),
(59830, 50209, 'en', 'name', 'Christopher D. Smithers Foundation'),
(59831, 50210, 'en', 'name', 'Compton Foundation'),
(59832, 50211, 'en', 'name', 'Cynthia and George Mitchell Foundation'),
(59833, 50212, 'en', 'name', 'Con Alma Health Foundation'),
(59834, 50213, 'en', 'name', 'Christopher Reynolds Foundation'),
(59835, 50214, 'en', 'name', 'Diamond Blackfan Anemia Foundation'),
(59836, 50215, 'en', 'name', 'Cystinosis Foundation'),
(59837, 50216, 'en', 'name', 'Christopher Ricardo Cystic Fibrosis Foundation'),
(59838, 50217, 'en', 'name', 'Cerebral Palsy Foundation'),
(59839, 50218, 'en', 'name', 'Connecticut Community Foundation'),
(59840, 50219, 'en', 'name', 'Diane and Bruce Halle Foundation'),
(59841, 50220, 'en', 'name', 'Connecticut Health Foundation'),
(59842, 50221, 'de', 'name', 'Dietmar Hopp Stiftung'),
(59843, 50222, 'en', 'name', 'Dimbleby Cancer Care'),
(59844, 50223, 'en', 'name', 'Cystinosis Research Foundation'),
(59845, 50224, 'no_lang_code', 'name', 'Chromasens (Germany)'),
(59846, 50225, 'en', 'name', 'Conservation, Food and Health Foundation'),
(59847, 50226, 'en', 'name', 'Chromosome 18 Registry & Research Society'),
(59848, 50227, 'en', 'name', 'Dimmer Family Foundation'),
(59849, 50228, 'en', 'name', 'Cervical Spine Research Society'),
(59850, 50229, 'fr', 'name', 'Direction GƩnƩrale SantƩ et sƩcuritƩ alimentaire'),
(59851, 50229, 'en', 'name', 'Directorate-General for Health and Food Safety'),
(59852, 50229, 'de', 'name', 'Generaldirektion der Gesundheit und Lebensmittelsicherheit'),
(59853, 50230, 'no_lang_code', 'name', 'Cooley’s Anemia Foundation'),
(59854, 50231, 'en', 'name', 'Cooper Foundation'),
(59855, 50232, 'fr', 'name', 'Direction GƩnƩrale CoopƩration internationale et dƩveloppement'),
(59856, 50232, 'en', 'name', 'Directorate-General for International Cooperation and Development'),
(59857, 50232, 'de', 'name', 'Generaldirektion Internationale Zusammenarbeit und Entwicklung'),
(59858, 50233, 'en', 'name', 'Cooper Trewin Memorial SUDC Research Fund'),
(59859, 50234, 'fr', 'name', 'Direction GƩnƩrale Justice et Consommateurs'),
(59860, 50234, 'en', 'name', 'Directorate-General for Justice and Consumers'),
(59861, 50234, 'de', 'name', 'Generaldirektion Justiz und Verbraucher'),
(59862, 50235, 'en', 'name', 'Dirk Nowitzki Foundation'),
(59863, 50236, 'en', 'name', 'Daiichi Sankyo Foundation of Life Science'),
(59864, 50237, 'en', 'name', 'CH Foundation'),
(59865, 50238, 'en', 'name', 'Doctors Cancer Foundation'),
(59866, 50239, 'en', 'name', 'Chrysalis'),
(59867, 50240, 'en', 'name', 'Corina Higginson Trust'),
(59868, 50241, 'en', 'name', 'ChadTough Foundation'),
(59869, 50242, 'en', 'name', 'DAISY Foundation'),
(59870, 50243, 'en', 'name', 'Dominic Barker Trust'),
(59871, 50244, 'en', 'name', 'Chain of Love Foundation'),
(59872, 50245, 'en', 'name', 'Cosmopolitan International'),
(59873, 50246, 'no_lang_code', 'name', 'Chaipattana Foundation'),
(59874, 50246, 'th', 'name', 'ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ąøŠąø±ąø¢ąøžąø±ąø’ąø™ąø²'),
(59875, 50247, 'en', 'name', 'Cosmos Club Foundation'),
(59876, 50248, 'en', 'name', 'Cianna Medical'),
(59877, 50249, 'en', 'name', 'Dan Jansen Foundation'),
(59878, 50250, 'no_lang_code', 'name', 'Chaparral Energy (United States)'),
(59879, 50251, 'en', 'name', 'Donald W. Reynolds Foundation'),
(59880, 50252, 'en', 'name', 'The Char and Chuck Fowler Family Foundation'),
(59881, 50253, 'en', 'name', 'International Association for Counterterrorism and Security Professionals'),
(59882, 50254, 'en', 'name', 'Daniel Heumann Fund for Spinal Cord Research'),
(59883, 50255, 'en', 'name', 'Donnell-Kay Foundation'),
(59884, 50256, 'en', 'name', 'Charles and Lynn Schusterman Family Foundation'),
(59885, 50257, 'en', 'name', 'Donner Canadian Foundation'),
(59886, 50257, 'fr', 'name', 'Fondation canadienne Donner'),
(59887, 50258, 'en', 'name', 'Danish Movement Disorder Society'),
(59888, 50258, 'da', 'name', 'Dansk Selskab For BevƦgeforstyrrelser'),
(59889, 50259, 'no_lang_code', 'name', 'DonorsTrust'),
(59890, 50260, 'en', 'name', 'Dannon Institute'),
(59891, 50261, 'en', 'name', 'CINTAS Foundation'),
(59892, 50262, 'en', 'name', 'Dorothea Haus Ross Foundation'),
(59893, 50263, 'en', 'name', 'Charles and Mildred Schnurmacher Foundation'),
(59894, 50264, 'en', 'name', 'Circulation Foundation'),
(59895, 50265, 'en', 'name', 'Danny Fund'),
(59896, 50266, 'en', 'name', 'Dorothy Rider Pool Health Care Trust'),
(59897, 50267, 'no_lang_code', 'name', 'Danone (Canada)'),
(59898, 50268, 'en', 'name', 'Dorothy Russell Havemeyer Foundation'),
(59899, 50269, 'en', 'name', 'Charles D. Jacobus Family Foundation'),
(59900, 50270, 'en', 'name', 'Dr. Robert C. and Veronica Atkins Foundation'),
(59901, 50271, 'en', 'name', 'Danish Chiropractors’ Association'),
(59902, 50271, 'da', 'name', 'Dansk Kiropraktor Forening'),
(59903, 50272, 'en', 'name', 'CIRI Foundation'),
(59904, 50273, 'en', 'name', 'Dr. Scholl Foundation'),
(59905, 50274, 'de', 'name', 'Dr. Walter und Luise Freundlich Stiftung'),
(59906, 50275, 'en', 'name', 'Doug Flutie. Jr Foundation for Autism'),
(59907, 50276, 'en', 'name', 'Dougherty Foundation'),
(59908, 50277, 'en', 'name', 'Charles Edison Fund'),
(59909, 50278, 'en', 'name', 'Draper Richards Kaplan Foundation'),
(59910, 50279, 'en', 'name', 'Douglas B. Marshall Jr. Family Foundation'),
(59911, 50280, 'en', 'name', 'Darrell Gwynn Foundation'),
(59912, 50281, 'en', 'name', 'LuMind Research Down Syndrome Foundation'),
(59913, 50282, 'en', 'name', 'City West Water'),
(59914, 50283, 'en', 'name', 'Dart Foundation'),
(59915, 50284, 'en', 'name', 'DSF Charitable Foundation'),
(59916, 50285, 'en', 'name', 'Down Syndrome Research Foundation'),
(59917, 50286, 'en', 'name', 'CityBridge Education'),
(59918, 50287, 'en', 'name', 'Charles Lee Powell Foundation'),
(59919, 50288, 'en', 'name', 'Daughters of Charity Foundation of Saint Louis'),
(59920, 50289, 'en', 'name', 'Duke Endowment'),
(59921, 50290, 'en', 'name', 'Charles Pankow Foundation'),
(59922, 50291, 'en', 'name', 'CJ Foundation for SIDS'),
(59923, 50292, 'en', 'name', 'Dr. Herbert & Nicole Wertheim Family Foundation'),
(59924, 50293, 'en', 'name', 'Duluth Superior Area Community Foundation'),
(59925, 50294, 'en', 'name', 'Claneil Foundation'),
(59926, 50295, 'en', 'name', 'Davis Foundations'),
(59927, 50296, 'en', 'name', 'Clarence E. Heller Charitable Foundation'),
(59928, 50297, 'en', 'name', 'Davis Phinney Foundation'),
(59929, 50298, 'en', 'name', 'Dupar Foundation'),
(59930, 50299, 'en', 'name', 'Dr. John T. Macdonald Foundation'),
(59931, 50300, 'en', 'name', 'de Beaumont Foundation'),
(59932, 50301, 'de', 'name', 'Claussen Simon Stiftung'),
(59933, 50302, 'en', 'name', 'Dr. Josef Steiner Cancer Foundation'),
(59934, 50303, 'en', 'name', 'Cleft Palate Foundation'),
(59935, 50304, 'en', 'name', 'Durfee Foundation'),
(59936, 50305, 'en', 'name', 'Dean Witter Foundation'),
(59937, 50306, 'de', 'name', 'Dr. med. Arthur und Estella Hirzel-Callegari Stiftung'),
(59938, 50307, 'no_lang_code', 'name', 'Chemotecnica (Argentina)'),
(59939, 50308, 'en', 'name', 'Edward E. Ford Foundation'),
(59940, 50309, 'en', 'name', 'Death Valley Natural History Association'),
(59941, 50310, 'en', 'name', 'Dysautonomia Foundation'),
(59942, 50311, 'en', 'name', 'Dyslexia Foundation'),
(59943, 50312, 'en', 'name', 'Chemotherapy Foundation'),
(59944, 50313, 'en', 'name', 'Edward F. Albee Foundation'),
(59945, 50314, 'en', 'name', 'Dedalus Foundation'),
(59946, 50315, 'en', 'name', 'Edward Lowe Foundation'),
(59947, 50316, 'en', 'name', 'E. Matilda Ziegler Foundation for the Blind'),
(59948, 50317, 'en', 'name', 'Edward P. Evans Foundation'),
(59949, 50318, 'en', 'name', 'Chest Wall and Spine Deformity Research Foundation'),
(59950, 50319, 'en', 'name', 'E. Rhodes and Leona B. Carpenter Foundation'),
(59951, 50320, 'en', 'name', 'CLL Global Research Foundation'),
(59952, 50321, 'en', 'name', 'Chi Omega Foundation'),
(59953, 50322, 'en', 'name', 'Defense Equal Opportunity Management Institute'),
(59954, 50323, 'no_lang_code', 'name', 'Chiari & Syringomyelia Foundation'),
(59955, 50324, 'no_lang_code', 'name', 'E.O. Wilson Biodiversity Foundation'),
(59956, 50325, 'en', 'name', 'Defense Human Resources Activity'),
(59957, 50326, 'en', 'name', 'Coalition for Pulmonary Fibrosis'),
(59958, 50327, 'en', 'name', 'Coastal Community Foundation'),
(59959, 50328, 'en', 'name', 'Epidermolysis Bullosa Medical Research Foundation'),
(59960, 50329, 'en', 'name', 'East-West Management Institute'),
(59961, 50330, 'en', 'name', 'Epilepsy Foundation'),
(59962, 50331, 'en', 'name', 'Coffs Harbour City Council'),
(59963, 50332, 'en', 'name', 'Eastern Association for the Surgery of Trauma'),
(59964, 50333, 'en', 'name', 'El Paso Community Foundation'),
(59965, 50334, 'en', 'name', 'Episcopal Church Foundation'),
(59966, 50335, 'en', 'name', 'Electri International'),
(59967, 50336, 'en', 'name', 'Defense Technical Information Center'),
(59968, 50337, 'no_lang_code', 'name', 'Chugoku Electric Power (Japan)'),
(59969, 50337, 'ja', 'name', 'äø­å›½é›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(59970, 50338, 'en', 'name', 'Eppley Foundation for Research'),
(59971, 50339, 'en', 'name', 'Defense Technology Security Administration'),
(59972, 50340, 'en', 'name', 'Eau Claire Community Foundation'),
(59973, 50341, 'no_lang_code', 'name', 'COFRA (Switzerland)'),
(59974, 50342, 'en', 'name', 'Equipment Leasing & Finance Foundation'),
(59975, 50343, 'de', 'name', 'Ebnet Stiftung'),
(59976, 50344, 'en', 'name', 'DeGregorio Family Foundation'),
(59977, 50345, 'en', 'name', 'Cogito Foundation'),
(59978, 50346, 'en', 'name', 'Elias Foundation'),
(59979, 50347, 'de', 'name', 'Erich Und Gertrud Roggenbuck Stiftung'),
(59980, 50348, 'en', 'name', 'Elisabeth Severance Prentiss Foundation'),
(59981, 50349, 'en', 'name', 'Elizabeth Taylor AIDS Foundation'),
(59982, 50350, 'en', 'name', 'Delta Dental Plans Association'),
(59983, 50351, 'en', 'name', 'Eden Hall Foundation'),
(59984, 50352, 'en', 'name', 'Cohoes Savings Foundation'),
(59985, 50353, 'en', 'name', 'Elmina B. Sewall Foundation'),
(59986, 50354, 'no_lang_code', 'name', 'Ernst & Young (United States)'),
(59987, 50355, 'en', 'name', 'Delta Electronics Foundation'),
(59988, 50356, 'en', 'name', 'Elsa U. Pardee Foundation'),
(59989, 50357, 'en', 'name', 'Colcom Foundation'),
(59990, 50358, 'da', 'name', 'Elsass Fonden'),
(59991, 50358, 'en', 'name', 'Elsass Foundation'),
(59992, 50359, 'en', 'name', 'Coleman Foundation'),
(59993, 50360, 'de', 'name', 'Ernst-Abbe-Stiftung'),
(59994, 50361, 'en', 'name', 'Edna McConnell Clark Foundation'),
(59995, 50362, 'en', 'name', 'Esping Family Foundation'),
(59996, 50363, 'en', 'name', 'Falck Foundation'),
(59997, 50364, 'en', 'name', 'East Morgan County Hospital'),
(59998, 50365, 'en', 'name', 'Education and Research Foundation for Nuclear Medicine and Molecular Imaging'),
(59999, 50366, 'en', 'name', 'Esther B. Kahn Charitable Foundation'),
(60000, 50367, 'en', 'name', 'Dental Foundation of Oregon'),
(60001, 50368, 'en', 'name', 'EMDR Research Foundation'),
(60002, 50369, 'en', 'name', 'Emergency Medicine Foundation'),
(60003, 50370, 'en', 'name', 'Educational Foundation for Women in Accounting'),
(60004, 50371, 'en', 'name', 'Emergency Nurses Association'),
(60005, 50372, 'en', 'name', 'Educational Foundation of America'),
(60006, 50373, 'da', 'name', 'Familien Hede Nielsens Fond'),
(60007, 50374, 'en', 'name', 'Emily Davie and Joseph S. Kornfeld Foundation'),
(60008, 50375, 'en', 'name', 'Emily Dorfman Foundation for Children'),
(60009, 50376, 'no_lang_code', 'name', 'Eduserv'),
(60010, 50377, 'en', 'name', 'Emirates Foundation'),
(60011, 50378, 'en', 'name', 'Eye Disease Foundation'),
(60012, 50378, 'fr', 'name', 'Fondation des maladies de l''oeil'),
(60013, 50379, 'fr', 'name', 'Fondation du CHUM'),
(60014, 50380, 'en', 'name', 'Family Care Foundation'),
(60015, 50381, 'en', 'name', 'Employee Assistance Research Foundation'),
(60016, 50382, 'it', 'name', 'Fondazione Umberto Veronesi'),
(60017, 50383, 'en', 'name', 'Rippel Foundation'),
(60018, 50384, 'fr', 'name', 'Fondation Ernst et Lucie Schmidheiny'),
(60019, 50385, 'en', 'name', 'Fashion Group International'),
(60020, 50386, 'en', 'name', 'Fats and Proteins Research Foundation'),
(60021, 50387, 'fr', 'name', 'Fondation Hans Wilsdorf'),
(60022, 50388, 'de', 'name', 'Fazit-Stiftung'),
(60023, 50389, 'de', 'name', 'Stiftung Endoprothetik'),
(60024, 50390, 'en', 'name', 'European Brain and Behaviour Society'),
(60025, 50391, 'en', 'name', 'Endowment for Health'),
(60026, 50392, 'nl', 'name', 'Fonds Sluyterman van Loo'),
(60027, 50392, 'en', 'name', 'Sluyterman van Loo Foundation'),
(60028, 50393, 'en', 'name', 'Food Allergy Research and Education'),
(60029, 50394, 'en', 'name', 'Danish Ministry of Climate, Energy and Utilities'),
(60030, 50394, 'da', 'name', 'Energi-, Forsynings- og Klimaministeriet'),
(60031, 50395, 'en', 'name', 'Forbes Funds'),
(60032, 50396, 'en', 'name', 'Felix Scholarship'),
(60033, 50397, 'en', 'name', 'Engineering Information Foundation'),
(60034, 50398, 'en', 'name', 'Ford Family Foundation'),
(60035, 50399, 'en', 'name', 'Fellowship Fund Inc'),
(60036, 50400, 'en', 'name', 'Environment and Conservation Fund'),
(60037, 50400, 'zh', 'name', 'ē’°å¢ƒåŠč‡Ŗē„¶äæč‚²åŸŗé‡‘'),
(60038, 50401, 'en', 'name', 'Ferree Foundation'),
(60039, 50402, 'en', 'name', 'European Neuroendocrine Association'),
(60040, 50403, 'en', 'name', 'Environment and Health Fund'),
(60041, 50403, 'he', 'name', '×”×§×Ø×Ÿ ×œ×‘×Ø×™××•×Ŗ ההביבה'),
(60042, 50404, 'fr', 'name', 'Fondation Marie et Alain Philippson'),
(60043, 50405, 'fr', 'name', 'Fondation Max van Berchem'),
(60044, 50406, 'en', 'name', 'Fibrolamellar Cancer Foundation'),
(60045, 50407, 'en', 'name', 'Environmental Protection Administration'),
(60046, 50407, 'zh', 'name', 'č”Œę”æé™¢ē’°å¢ƒäæč­·ē½²'),
(60047, 50408, 'en', 'name', 'Fidelity Foundation'),
(60048, 50409, 'en', 'name', 'European Society for Paediatric Endocrinology'),
(60049, 50410, 'en', 'name', 'Environmental Research and Education Foundation'),
(60050, 50411, 'fr', 'name', 'Fondation Medic'),
(60051, 50412, 'en', 'name', 'Field Foundation'),
(60052, 50413, 'en', 'name', 'Rabbit Free Australia'),
(60053, 50414, 'en', 'name', 'Foundation Milena Carvajal - Pro-Kartagener'),
(60054, 50415, 'fr', 'name', 'Fondation Motrice'),
(60055, 50416, 'en', 'name', 'Field Neurosciences Institute'),
(60056, 50417, 'en', 'name', 'European Society of Cataract and Refractive Surgeons'),
(60057, 50418, 'fr', 'name', 'Fondation Nanosciences'),
(60058, 50419, 'no_lang_code', 'name', 'FightSMA'),
(60059, 50420, 'en', 'name', 'European Society of Endocrinology'),
(60060, 50421, 'en', 'name', 'Finnish Lung Health Association'),
(60061, 50422, 'en', 'name', 'Foundation and Footings Society'),
(60062, 50423, 'en', 'name', 'Foundation for a Healthy Kentucky'),
(60063, 50424, 'fr', 'name', 'Fondation Roger de Spoelberch'),
(60064, 50425, 'en', 'name', 'Foundation for the Advancement in Research in Medicine'),
(60065, 50426, 'en', 'name', 'Financial Markets Foundation for Children'),
(60066, 50427, 'en', 'name', 'Foundation for Advancement in Cancer Therapy'),
(60067, 50428, 'en', 'name', 'EuroQol Research Foundation'),
(60068, 50429, 'fr', 'name', 'Fondation Rose et Jean Hoguet'),
(60069, 50430, 'en', 'name', 'Financial Services Authority'),
(60070, 50431, 'en', 'name', 'Future Foundation'),
(60071, 50432, 'en', 'name', 'FINRA Investor Education Foundation'),
(60072, 50433, 'en', 'name', 'Fionia Fond'),
(60073, 50434, 'en', 'name', 'Foundation for Agronomic Research'),
(60074, 50435, 'en', 'name', 'McKnight Brain Research Foundation'),
(60075, 50436, 'en', 'name', 'Foundation for Angelman Syndrome Therapeutics'),
(60076, 50437, 'fr', 'name', 'Fondation Thierry Latran'),
(60077, 50438, 'en', 'name', 'Foundation for Arable Research'),
(60078, 50439, 'fr', 'name', 'Fondation Tuck'),
(60079, 50440, 'en', 'name', 'First Fruit'),
(60080, 50441, 'en', 'name', 'Everychild Foundation'),
(60081, 50442, 'it', 'name', 'Fondazione Antonio Carlo Monzino'),
(60082, 50443, 'en', 'name', 'Foundation for Women’s Wellness'),
(60083, 50444, 'en', 'name', 'FISA Foundation'),
(60084, 50445, 'it', 'name', 'Fondazione ART per la Ricerca sui Trapianti'),
(60085, 50446, 'en', 'name', 'Fistula Foundation'),
(60086, 50447, 'de', 'name', 'Evonik Stiftung'),
(60087, 50448, 'en', 'name', 'Fleishhacker Foundation'),
(60088, 50449, 'it', 'name', 'Fondazione Audiologica Varese'),
(60089, 50450, 'en', 'name', 'Fletcher Jones Foundation'),
(60090, 50451, 'it', 'name', 'Fondazioni Casali'),
(60091, 50452, 'en', 'name', 'Explorers Club'),
(60092, 50453, 'en', 'name', 'Flinders Medical Centre Foundation'),
(60093, 50454, 'en', 'name', 'Foundation for Community Association Research'),
(60094, 50455, 'it', 'name', 'Fondazione Cariparma'),
(60095, 50456, 'en', 'name', 'Foundation To Eradicate Duchenne'),
(60096, 50457, 'en', 'name', 'Foundation for Economic Education'),
(60097, 50458, 'en', 'name', 'Foellinger Foundation'),
(60098, 50459, 'en', 'name', 'EyeSight Foundation of Alabama'),
(60099, 50460, 'en', 'name', 'Foundation for End of Life Care'),
(60100, 50461, 'it', 'name', 'Fondazione Carical - Cassa di Risparmio di Calabria e di Lucania'),
(60101, 50462, 'it', 'name', 'Fondazione Cassa Di Risparmio Di Cento'),
(60102, 50463, 'fr', 'name', 'Fondation Acteria'),
(60103, 50464, 'it', 'name', 'Fondazione Cassa di Risparmio Civitavecchia'),
(60104, 50465, 'en', 'name', 'F. M. Kirby Foundation'),
(60105, 50466, 'en', 'name', 'Foundation for Global Scholars'),
(60106, 50467, 'it', 'name', 'Fondazione Cassa di Risparmio di Foligno'),
(60107, 50468, 'en', 'name', 'Frances P. Bunnelle Foundation'),
(60108, 50469, 'it', 'name', 'Fondazione Cassa di Risparmio di Genova e Imperia'),
(60109, 50470, 'en', 'name', 'Foundation for Iranian Studies'),
(60110, 50471, 'en', 'name', 'FACE Foundation'),
(60111, 50472, 'it', 'name', 'Fondazione di Piacenza e Vigevano'),
(60112, 50473, 'en', 'name', 'Foundation for Middle East Peace'),
(60113, 50474, 'it', 'name', 'Fondazione Pisa'),
(60114, 50475, 'en', 'name', 'Foundation for National Parks and Wildlife'),
(60115, 50476, 'it', 'name', 'Fondazione Cassa di Risparmio di Pistoia e Pescia'),
(60116, 50477, 'fr', 'name', 'Fondation Arthritis'),
(60117, 50478, 'en', 'name', 'Francis Family Foundation'),
(60118, 50479, 'en', 'name', 'Fahs-Beck Fund for Research and Experimentation'),
(60119, 50480, 'it', 'name', 'Fondazione Cariverona'),
(60120, 50481, 'fr', 'name', 'Fondation Bertarelli'),
(60121, 50482, 'it', 'name', 'Fondazione CON IL SUD'),
(60122, 50483, 'en', 'name', 'Frank H and Eva B Buck Foundation'),
(60123, 50484, 'en', 'name', 'Wild Sheep Foundation'),
(60124, 50485, 'fr', 'name', 'Fondation Bettencourt Schueller'),
(60125, 50486, 'it', 'name', 'UniversitĆ  a Vicenza'),
(60126, 50487, 'en', 'name', 'Frank Hadley Ginn and Cornelia Root Ginn Charitable Trust'),
(60127, 50488, 'en', 'name', 'Frankel Family Foundation'),
(60128, 50489, 'en', 'name', 'Fuji Foundation for Protein Research'),
(60129, 50489, 'ja', 'name', 'ćƒ•ć‚”ć‚¦ć‚øćƒ¼ć‚æćƒ³ćƒ‘ć‚Æč³Ŗē ”ē©¶č²”å›£'),
(60130, 50490, 'it', 'name', 'Fondazione Europea Ricerca Biomedica'),
(60131, 50491, 'it', 'name', 'Fondazione Alazio'),
(60132, 50492, 'en', 'name', 'Fraxa Research Foundation'),
(60133, 50493, 'en', 'name', 'Foundation for Personality and Social Psychology'),
(60134, 50494, 'it', 'name', 'Fondazione Grigioni per il Morbo di Parkinson'),
(60135, 50494, 'en', 'name', 'Grigioni Foundation for Parkinson''s disease'),
(60136, 50495, 'en', 'name', 'Fred and Mary Koch Foundation'),
(60137, 50496, 'en', 'name', 'Parenteral Drug Association'),
(60138, 50497, 'it', 'name', 'Fondazione Guido Berlucchi'),
(60139, 50498, 'en', 'name', 'Fujiwara Natural History Foundation'),
(60140, 50498, 'ja', 'name', 'č—¤åŽŸč‡Ŗē„¶ę­“å²č²”å›£'),
(60141, 50499, 'en', 'name', 'Fred J Brotherton Charitable Foundation'),
(60142, 50500, 'en', 'name', 'Brain Canada Foundation'),
(60143, 50501, 'en', 'name', '100 Black Men of America'),
(60144, 50502, 'en', 'name', 'Fred L Emerson Foundation'),
(60145, 50503, 'en', 'name', 'Encore'),
(60146, 50504, 'en', 'name', 'Great Minds'),
(60147, 50505, 'en', 'name', 'Aspire Public Schools'),
(60148, 50506, 'en', 'name', 'Cato Institute'),
(60149, 50507, 'en', 'name', 'Accion International'),
(60150, 50508, 'en', 'name', 'Common Ground Research Networks'),
(60151, 50509, 'en', 'name', 'Enhancing Financial Innovation & Access'),
(60152, 50510, 'en', 'name', 'People ''s Liberation Army 451 Hospital'),
(60153, 50510, 'zh', 'name', '解放军451医院'),
(60154, 50511, 'en', 'name', 'Association of Theological Schools'),
(60155, 50512, 'en', 'name', 'Common Sense Media'),
(60156, 50513, 'en', 'name', 'Consortium of Christian Relief and Development Associations'),
(60157, 50514, 'no_lang_code', 'name', 'Enviu (Netherlands)'),
(60158, 50515, 'en', 'name', 'AchieveMpls'),
(60159, 50516, 'no_lang_code', 'name', 'Epsilon Therapeutics (United States)'),
(60160, 50517, 'en', 'name', 'Center for Educational Leadership and Technology'),
(60161, 50518, 'en', 'name', 'Communities in Schools of Renton'),
(60162, 50519, 'en', 'name', 'Achievement First'),
(60163, 50520, 'no_lang_code', 'name', 'Eram Scientific Solutions (India)'),
(60164, 50521, 'en', 'name', 'Achievement School District'),
(60165, 50522, 'en', 'name', 'Communities in School'),
(60166, 50523, 'en', 'name', 'Achieving the Dream'),
(60167, 50524, 'en', 'name', 'Community for Youth'),
(60168, 50525, 'no_lang_code', 'name', 'eSpark Learning (United States)'),
(60169, 50526, 'en', 'name', 'Center for Community Change'),
(60170, 50527, 'en', 'name', 'Acrobatiq'),
(60171, 50528, 'en', 'name', 'Act One'),
(60172, 50529, 'no_lang_code', 'name', 'Athena Infonomics (India)'),
(60173, 50530, 'en', 'name', 'Community Foundation of North Central Washington'),
(60174, 50531, 'en', 'name', 'European Scientific Working group on Influenza'),
(60175, 50532, 'en', 'name', 'Community Foundation of South Puget Sound'),
(60176, 50533, 'en', 'name', 'Atlanta Public Schools'),
(60177, 50534, 'en', 'name', 'Ethnic Arts Council of Los Angeles'),
(60178, 50535, 'en', 'name', 'Center for Curriculum Redesign'),
(60179, 50536, 'en', 'name', 'Atlantic Street Center'),
(60180, 50537, 'en', 'name', 'Community Initiatives'),
(60181, 50538, 'en', 'name', 'Center for Energy Workforce Development'),
(60182, 50539, 'en', 'name', 'Center for Financial Services Innovation'),
(60183, 50540, 'en', 'name', 'Community Youth Services'),
(60184, 50541, 'en', 'name', 'ActionAid'),
(60185, 50542, 'en', 'name', 'Acton Institute'),
(60186, 50543, 'en', 'name', 'Center for Inspired Teaching'),
(60187, 50544, 'no_lang_code', 'name', 'Acuitus (United States)'),
(60188, 50545, 'no_lang_code', 'name', 'Atomo Diagnostics'),
(60189, 50546, 'en', 'name', 'European Network on Debt and Development'),
(60190, 50547, 'en', 'name', 'Acumen'),
(60191, 50548, 'en', 'name', 'Center for Pastor Theologians'),
(60192, 50549, 'en', 'name', 'Battelle For Kids'),
(60193, 50550, 'en', 'name', 'Every Mother Counts'),
(60194, 50551, 'en', 'name', 'Adam Smith Institute'),
(60195, 50552, 'en', 'name', 'Center for Public Justice'),
(60196, 50553, 'en', 'name', 'Complete College America'),
(60197, 50554, 'en', 'name', 'Beacon Center of Tennessee'),
(60198, 50555, 'en', 'name', 'Concern Worldwide US'),
(60199, 50556, 'en', 'name', 'Center for Reform of School Systems'),
(60200, 50557, 'pt', 'name', 'Fundação de Apoio ao Desenvolvimento da Computação Científica'),
(60201, 50558, 'en', 'name', 'Connected Nation'),
(60202, 50559, 'en', 'name', 'Center for Strengthening the Teaching Profession'),
(60203, 50560, 'en', 'name', 'Children Youth and Family Collaborative'),
(60204, 50561, 'en', 'name', 'Faith in Public Life'),
(60205, 50562, 'en', 'name', 'Becket Fund for Religious Liberty'),
(60206, 50563, 'en', 'name', 'Family Care International'),
(60207, 50564, 'no_lang_code', 'name', 'Advenio TecnoSys (India)'),
(60208, 50565, 'en', 'name', 'Center for the Study of Technology and Society'),
(60209, 50566, 'en', 'name', 'Aerosan'),
(60210, 50567, 'en', 'name', 'Consortium for DEWATS Dissemination Society'),
(60211, 50568, 'no_lang_code', 'name', 'AfricaBio'),
(60212, 50569, 'en', 'name', 'CUTS International'),
(60213, 50570, 'en', 'name', 'Farm Concern International'),
(60214, 50571, 'en', 'name', 'African Development Bank Group'),
(60215, 50572, 'en', 'name', 'Center for Theology and the Natural Sciences'),
(60216, 50573, 'en', 'name', 'African Evaluation Association'),
(60217, 50574, 'no_lang_code', 'name', 'Context Network (United States)'),
(60218, 50575, 'en', 'name', 'Fighting Infectious Diseases in Emerging Countries'),
(60219, 50576, 'no_lang_code', 'name', 'African Fertilizer and Agribusiness Partnership'),
(60220, 50577, 'no_lang_code', 'name', 'African Water Association'),
(60221, 50578, 'en', 'name', 'Centre for Budget and Governance Accountability'),
(60222, 50579, 'no_lang_code', 'name', 'AgBiome (United States)'),
(60223, 50580, 'en', 'name', 'Corporation for Public Broadcasting'),
(60224, 50581, 'en', 'name', 'Financial Sector Deepening Trust'),
(60225, 50582, 'no_lang_code', 'name', 'AIM Group (Tanzania)'),
(60226, 50583, 'en', 'name', 'Finca International'),
(60227, 50584, 'en', 'name', 'Communities United'),
(60228, 50585, 'en', 'name', 'Boys and Girls Clubs'),
(60229, 50586, 'en', 'name', 'Council of the Great City Schools'),
(60230, 50587, 'en', 'name', 'Albuquerque Public Schools'),
(60231, 50588, 'no_lang_code', 'name', 'FinMark Trust'),
(60232, 50589, 'no_lang_code', 'name', 'Coxswain Social Investment Plus (Tunisia)'),
(60233, 50590, 'en', 'name', 'All Hands Raised'),
(60234, 50591, 'en', 'name', 'Firstline Schools'),
(60235, 50592, 'en', 'name', 'Allegheny Intermediate Unit'),
(60236, 50593, 'no_lang_code', 'name', 'Craft Technologies (United States)'),
(60237, 50594, 'no_lang_code', 'name', 'Bempu'),
(60238, 50595, 'en', 'name', 'Florida Immigrant Coalition'),
(60239, 50596, 'en', 'name', 'Cerego'),
(60240, 50597, 'en', 'name', 'Day1'),
(60241, 50598, 'en', 'name', 'Cristo Rey Network'),
(60242, 50599, 'en', 'name', 'Change the Equation'),
(60243, 50600, 'no_lang_code', 'name', 'Alma Sana'),
(60244, 50601, 'en', 'name', 'Critical Review Foundation'),
(60245, 50602, 'no_lang_code', 'name', 'EurActiv (Belgium)'),
(60246, 50603, 'en', 'name', 'America Abroad Media'),
(60247, 50604, 'no_lang_code', 'name', 'Cupron (United States)'),
(60248, 50605, 'en', 'name', 'Fons Vitae'),
(60249, 50606, 'en', 'name', 'Character Counts Mid Shore'),
(60250, 50607, 'no_lang_code', 'name', 'VFO (United States)'),
(60251, 50608, 'en', 'name', 'Czech Christian Academy'),
(60252, 50608, 'cs', 'name', 'ČeskĆ” KřesÅ„anskĆ” Akademie'),
(60253, 50609, 'en', 'name', 'Benjamin Franklin Tercentenary'),
(60254, 50610, 'en', 'name', 'Dalberg Global Development Advisors'),
(60255, 50611, 'en', 'name', 'Character'),
(60256, 50612, 'en', 'name', 'Feeding America'),
(60257, 50613, 'en', 'name', 'Berks County Public Libraries'),
(60258, 50614, 'en', 'name', 'Daviess County Public Schools'),
(60259, 50615, 'en', 'name', 'Character Scotland'),
(60260, 50616, 'no_lang_code', 'name', 'Better People (United States)'),
(60261, 50617, 'en', 'name', 'Developing Countries Vaccine Manufactures Network'),
(60262, 50618, 'no_lang_code', 'name', 'Free to Choose Network (United States)'),
(60263, 50619, 'en', 'name', 'Charter School Growth Fund'),
(60264, 50620, 'en', 'name', 'American International Health Alliance'),
(60265, 50621, 'en', 'name', 'Forsyth County Schools'),
(60266, 50622, 'en', 'name', 'American Islamic Congress'),
(60267, 50623, 'en', 'name', 'Center for Children & Youth Justice'),
(60268, 50624, 'en', 'name', 'Bidwell Memorial Presbyterian Church'),
(60269, 50625, 'en', 'name', 'American Public Media'),
(60270, 50626, 'en', 'name', 'Children Now'),
(60271, 50627, 'en', 'name', 'Youth Today'),
(60272, 50628, 'en', 'name', 'Foundation for Teaching Economics'),
(60273, 50629, 'en', 'name', 'Cradle of Liberty Council Boy Scouts of America'),
(60274, 50630, 'en', 'name', 'Free the Slaves'),
(60275, 50631, 'en', 'name', 'Biologos Foundation'),
(60276, 50632, 'en', 'name', 'Demos'),
(60277, 50633, 'en', 'name', 'Children''s Home Society of Washington'),
(60278, 50634, 'en', 'name', 'Denver Public Schools'),
(60279, 50635, 'en', 'name', 'America''s Promise Alliance'),
(60280, 50636, 'en', 'name', 'Biomass Controls'),
(60281, 50637, 'en', 'name', 'Department of Housing and Community Development'),
(60282, 50638, 'no_lang_code', 'name', 'AMT (United States)'),
(60283, 50639, 'en', 'name', 'FreedomWorks'),
(60284, 50640, 'en', 'name', 'China International Center for Economic and Technical Exchanges'),
(60285, 50640, 'zh', 'name', 'äø­å›½å›½é™…ē»ęµŽęŠ€ęœÆäŗ¤ęµäø­åæƒ'),
(60286, 50641, 'no_lang_code', 'name', 'Apeel Sciences (United States)'),
(60287, 50642, 'en', 'name', 'Apex Medical Technologies (United States)'),
(60288, 50643, 'en', 'name', 'Blue Mountain Community Foundation'),
(60289, 50644, 'no_lang_code', 'name', 'Apprise Bio (United States)'),
(60290, 50645, 'en', 'name', 'Design without Borders'),
(60291, 50646, 'en', 'name', 'Friends of Children of Walla Walla'),
(60292, 50647, 'no_lang_code', 'name', 'Body Surface Translations (United States)'),
(60293, 50648, 'en', 'name', 'Christianity Today'),
(60294, 50649, 'en', 'name', 'Digital Learning Department'),
(60295, 50650, 'en', 'name', 'Citizen Schools'),
(60296, 50651, 'en', 'name', 'Austrian Economics Center'),
(60297, 50652, 'en', 'name', 'District of Columbia College Access Program'),
(60298, 50653, 'en', 'name', 'DKT International'),
(60299, 50654, 'no_lang_code', 'name', 'Frontier Environmental Technology (United States)'),
(60300, 50655, 'no_lang_code', 'name', 'Arcady Group (United States)'),
(60301, 50656, 'en', 'name', 'Durbar Mahila Samanwaya Committee'),
(60302, 50656, 'bn', 'name', 'ą¦¦ą§ą¦°ą§ą¦¬ą¦¾ą¦° মহিলা ą¦øą¦®ą¦Øą§ą¦¬ą¦Æą¦¼ সমিতি'),
(60303, 50657, 'en', 'name', 'FSG'),
(60304, 50658, 'en', 'name', 'Civic Builders'),
(60305, 50659, 'en', 'name', 'Boston Schools Fund'),
(60306, 50660, 'no_lang_code', 'name', 'Dushtha Shasthya Kendra'),
(60307, 50661, 'no', 'name', 'CIVITA'),
(60308, 50662, 'no_lang_code', 'name', 'Arsenal Medical (United States)'),
(60309, 50663, 'en', 'name', 'E3 Alliance'),
(60310, 50664, 'en', 'name', 'BRAC USA'),
(60311, 50665, 'en', 'name', 'National Jewish Center for Learning and Leadership'),
(60312, 50666, 'no_lang_code', 'name', 'Brandtone (Ireland)'),
(60313, 50667, 'en', 'name', 'East Bay Community Foundation'),
(60314, 50668, 'en', 'name', 'Ashoka'),
(60315, 50669, 'en', 'name', 'Fund for Public Schools'),
(60316, 50670, 'no_lang_code', 'name', 'EdSurge (United States)'),
(60317, 50671, 'en', 'name', 'Clallam County YMCA'),
(60318, 50672, 'es', 'name', 'Fundación In Terris'),
(60319, 50673, 'en', 'name', 'Education Reform Now'),
(60320, 50674, 'en', 'name', 'Asian Americans Advancing Justice'),
(60321, 50675, 'en', 'name', 'Funders Together to End Homelessness'),
(60322, 50676, 'en', 'name', 'Educurious'),
(60323, 50677, 'en', 'name', 'Brooke Charter Schools'),
(60324, 50678, 'no_lang_code', 'name', 'Clarke (United States)'),
(60325, 50679, 'en', 'name', 'Missouri Heart Center'),
(60326, 50680, 'en', 'name', 'GameDesk'),
(60327, 50681, 'no_lang_code', 'name', 'Edumetrics (United States)'),
(60328, 50682, 'no_lang_code', 'name', 'Clinvet'),
(60329, 50683, 'en', 'name', 'El Centro de la Raza'),
(60330, 50684, 'en', 'name', 'Bull City Learning'),
(60331, 50685, 'no_lang_code', 'name', 'Cloud Tiger Media (United States)'),
(60332, 50686, 'en', 'name', 'Busara Center for Behavioral Economics'),
(60333, 50687, 'en', 'name', 'Global Alliance for Rabies Control'),
(60334, 50688, 'no_lang_code', 'name', 'CogBooks (United Kingdom)'),
(60335, 50689, 'en', 'name', 'Cade Museum'),
(60336, 50690, 'en', 'name', 'Georgia Budget & Policy Institute'),
(60337, 50691, 'en', 'name', 'Ellipsis'),
(60338, 50692, 'no_lang_code', 'name', 'Camber Collective (United States)'),
(60339, 50693, 'en', 'name', 'Collaborative Africa Budget Reform Initiative'),
(60340, 50694, 'en', 'name', 'Emerald Cities Collaborative'),
(60341, 50695, 'en', 'name', 'Cambridge Muslim College'),
(60342, 50696, 'en', 'name', 'College Summit'),
(60343, 50697, 'en', 'name', 'Global Communities'),
(60344, 50698, 'en', 'name', 'Colorado Children''s Campaign'),
(60345, 50699, 'no_lang_code', 'name', 'Enclude (United States)'),
(60346, 50700, 'en', 'name', 'Global Development Analytics'),
(60347, 50701, 'en', 'name', 'Camp Fire Inland Northwest'),
(60348, 50702, 'en', 'name', 'Columbia Global Center'),
(60349, 50703, 'en', 'name', 'Global Development Incubator'),
(60350, 50704, 'en', 'name', 'Montreal Economic Institute'),
(60351, 50705, 'en', 'name', 'Khan Academy'),
(60352, 50706, 'en', 'name', 'Columbia Legal Services'),
(60353, 50707, 'en', 'name', 'Campaign for College Opportunity'),
(60354, 50708, 'en', 'name', 'Institute for American Values'),
(60355, 50709, 'no_lang_code', 'name', 'Khanyisa Projects'),
(60356, 50710, 'en', 'name', 'Campus Compact'),
(60357, 50711, 'en', 'name', 'KickStart International'),
(60358, 50712, 'no_lang_code', 'name', 'Mesa Biotech (United States)'),
(60359, 50713, 'en', 'name', 'KidsOhio'),
(60360, 50714, 'en', 'name', 'Caribou Digital'),
(60361, 50715, 'no_lang_code', 'name', 'GOAL'),
(60362, 50716, 'no_lang_code', 'name', 'Metabolistics (Canada)'),
(60363, 50717, 'en', 'name', 'Institute for Excellence and Ethics'),
(60364, 50718, 'en', 'name', 'Casa Latina'),
(60365, 50719, 'en', 'name', 'Kindering'),
(60366, 50720, 'no_lang_code', 'name', 'MetaMetrics (United States)'),
(60367, 50721, 'en', 'name', 'Institute for Global Engagement'),
(60368, 50722, 'en', 'name', 'Catapult Design'),
(60369, 50723, 'en', 'name', 'King County Department of Community and Human Services'),
(60370, 50724, 'en', 'name', 'Grantmakers Concerned with Immigrants and Refugees'),
(60371, 50725, 'en', 'name', 'Institute for Humane Studies'),
(60372, 50726, 'en', 'name', 'King County Sexual Assault Resource Center'),
(60373, 50727, 'en', 'name', 'Grays Harbor Community Foundation'),
(60374, 50728, 'es', 'name', 'Mexfam'),
(60375, 50729, 'en', 'name', 'Great Schools Partnership'),
(60376, 50730, 'en', 'name', 'KIPP Bay Area Schools'),
(60377, 50731, 'en', 'name', 'Northwest Resource Associates'),
(60378, 50732, 'en', 'name', 'Community Foundation of Snohomish County'),
(60379, 50733, 'en', 'name', 'KIPP Chicago Schools'),
(60380, 50734, 'en', 'name', 'KIPP LA Schools'),
(60381, 50735, 'en', 'name', 'Greater Houston Community Foundation'),
(60382, 50736, 'en', 'name', 'Institute for Jewish Spirituality'),
(60383, 50737, 'en', 'name', 'Microfinance Information Exchange'),
(60384, 50738, 'en', 'name', 'GreatNonprofits'),
(60385, 50739, 'en', 'name', 'GreatSchools'),
(60386, 50740, 'en', 'name', 'Kitsap Community Foundation'),
(60387, 50741, 'en', 'name', 'Green Dot Public Schools'),
(60388, 50742, 'en', 'name', 'Knox County Schools'),
(60389, 50743, 'en', 'name', 'Kurt Gƶdel Society'),
(60390, 50743, 'de', 'name', 'Kurt-Gƶdel-Gesellschaft'),
(60391, 50744, 'no_lang_code', 'name', 'Guaranteach (United States)'),
(60392, 50745, 'en', 'name', 'Office of Superintendent of Public Instruction'),
(60393, 50746, 'no_lang_code', 'name', 'Micron Biomedical (United States)'),
(60394, 50747, 'no_lang_code', 'name', 'Kymab (United Kingdom)'),
(60395, 50748, 'en', 'name', 'Lake County Schools'),
(60396, 50749, 'de', 'name', 'Hanns R. Neumann Stiftung'),
(60397, 50750, 'en', 'name', 'Institute on Religion and Public Life'),
(60398, 50751, 'en', 'name', 'Hartley Film Foundation'),
(60399, 50752, 'en', 'name', 'Learning Forward'),
(60400, 50753, 'vi', 'name', 'Văn phòng ban chỉ đẔo 33'),
(60401, 50754, 'en', 'name', 'Learning Games Network'),
(60402, 50755, 'en', 'name', 'Intellectual Virtues Academy'),
(60403, 50756, 'it', 'name', 'Villa Melitta'),
(60404, 50757, 'en', 'name', 'InterAction'),
(60405, 50758, 'en', 'name', 'Mindwires Consulting'),
(60406, 50759, 'no_lang_code', 'name', 'HCM Strategists (United States)'),
(60407, 50760, 'en', 'name', 'HealthCare Chaplaincy Network'),
(60408, 50761, 'en', 'name', 'Editorial Projects in Education'),
(60409, 50762, 'no_lang_code', 'name', 'Mobile Assay (United States)'),
(60410, 50763, 'en', 'name', 'Philanthropy Ohio'),
(60411, 50764, 'en', 'name', 'Mobilize'),
(60412, 50765, 'no_lang_code', 'name', 'LearnZillion (United States)'),
(60413, 50766, 'en', 'name', 'International Interfaith Peace Corps'),
(60414, 50767, 'no_lang_code', 'name', 'Hervana (Israel)'),
(60415, 50768, 'no_lang_code', 'name', 'OneAmerica'),
(60416, 50769, 'en', 'name', 'Opportunity International'),
(60417, 50770, 'no_lang_code', 'name', 'Publicis Groupe (United States)'),
(60418, 50771, 'en', 'name', 'International Justice Mission'),
(60419, 50772, 'no_lang_code', 'name', 'MTN (Uganda)'),
(60420, 50773, 'en', 'name', 'Hillsborough County Public Schools'),
(60421, 50774, 'en', 'name', 'Hindustan Latex Family Planning Promotion Trust'),
(60422, 50775, 'en', 'name', 'International Planned Parenthood Federation'),
(60423, 50776, 'en', 'name', 'Museum of the American Revolution'),
(60424, 50777, 'en', 'name', 'Outward Bound'),
(60425, 50778, 'en', 'name', 'Let it Ripple'),
(60426, 50779, 'en', 'name', 'Community-Minded Enterprises'),
(60427, 50780, 'no_lang_code', 'name', 'NanoBio (United States)'),
(60428, 50781, 'en', 'name', 'International Society for Science and Religion'),
(60429, 50782, 'no_lang_code', 'name', 'Rosetta Stone (United States)'),
(60430, 50783, 'no_lang_code', 'name', 'HLL Lifecare (India)'),
(60431, 50784, 'en', 'name', 'National Association for the Advancement of Colored People');
INSERT INTO `ror_settings` VALUES
(60432, 50785, 'en', 'name', 'LibForAll Foundation'),
(60433, 50786, 'en', 'name', 'International Telecommunication Union'),
(60434, 50786, 'fr', 'name', 'Union Internationale des TƩlƩcommunications'),
(60435, 50787, 'en', 'name', 'Hope Through Healing Hands'),
(60436, 50788, 'en', 'name', 'Internews'),
(60437, 50789, 'en', 'name', 'National Association of Secondary School Principals'),
(60438, 50790, 'en', 'name', 'Horn of Africa Services'),
(60439, 50791, 'es', 'name', 'Oxfam Intermón'),
(60440, 50792, 'en', 'name', 'National Association of State Budget Officers'),
(60441, 50793, 'no_lang_code', 'name', 'Inventprise (United States)'),
(60442, 50794, 'en', 'name', 'Housing Development Consortium'),
(60443, 50795, 'no_lang_code', 'name', 'Turnitin (United States)'),
(60444, 50796, 'fr', 'name', 'Oxfam SolidaritƩ'),
(60445, 50797, 'en', 'name', 'National Center for State Courts'),
(60446, 50798, 'en', 'name', 'Houston Area Urban League'),
(60447, 50799, 'en', 'name', 'Human Network International'),
(60448, 50800, 'en', 'name', 'National Center on Time & Learning'),
(60449, 50801, 'no_lang_code', 'name', 'Itad (United Kingdom)'),
(60450, 50802, 'en', 'name', 'Oxford Policy Management'),
(60451, 50803, 'en', 'name', 'National College Access Network'),
(60452, 50804, 'en', 'name', 'LIMR Chemical Genomics Center'),
(60453, 50805, 'en', 'name', 'National Council for the Social Studies'),
(60454, 50806, 'en', 'name', 'Lindsay Unified School District'),
(60455, 50807, 'en', 'name', 'Pacific Charter School Development'),
(60456, 50808, 'en', 'name', 'Council for Economic Education'),
(60457, 50809, 'en', 'name', 'Jal Seva Charitable Foundation'),
(60458, 50810, 'en', 'name', 'Human Rights Foundation'),
(60459, 50811, 'en', 'name', 'Parent Trust for Washington Children'),
(60460, 50812, 'no_lang_code', 'name', 'Lipotek (Australia)'),
(60461, 50813, 'en', 'name', 'National Equity Project'),
(60462, 50814, 'no_lang_code', 'name', 'Humanitarian OpenStreetMap Team'),
(60463, 50815, 'en', 'name', 'Liquid Interactive'),
(60464, 50816, 'no_lang_code', 'name', 'Janicki Bioenergy (United States)'),
(60465, 50817, 'en', 'name', 'Information and Communication Technology Agency'),
(60466, 50818, 'en', 'name', 'Japan ICU Foundation'),
(60467, 50819, 'en', 'name', 'Community and Parents for Public Schools'),
(60468, 50820, 'en', 'name', 'National Liberty Museum'),
(60469, 50821, 'en', 'name', 'Literacy Design Collaborative'),
(60470, 50822, 'en', 'name', 'Partnership for Learning'),
(60471, 50823, 'en', 'name', 'National Newspaper Publishers Association'),
(60472, 50824, 'en', 'name', 'Partnership for Public Service'),
(60473, 50825, 'en', 'name', 'IDEA Public Schools'),
(60474, 50826, 'en', 'name', 'PUC Schools'),
(60475, 50827, 'en', 'name', 'National Paideia Center'),
(60476, 50828, 'no_lang_code', 'name', 'Jefferson Education Accelerator (United States)'),
(60477, 50829, 'en', 'name', 'Institute for Advanced Medical Research'),
(60478, 50830, 'no_lang_code', 'name', 'Idee e Prodotti (Italy)'),
(60479, 50831, 'en', 'name', 'Pat Graney'),
(60480, 50832, 'en', 'name', 'National Peace Corps Association'),
(60481, 50833, 'en', 'name', 'Jessamine County Schools'),
(60482, 50834, 'en', 'name', 'Jewish Family Service of Seattle'),
(60483, 50835, 'en', 'name', 'National Philanthropic Trust'),
(60484, 50836, 'lt', 'name', 'Lietuvos laisvosios rinkos institutas'),
(60485, 50836, 'en', 'name', 'Lithuanian Free Market Institute'),
(60486, 50837, 'en', 'name', 'Pennsylvania Partnerships for Children'),
(60487, 50838, 'no_lang_code', 'name', 'IDEO (United States)'),
(60488, 50839, 'no_lang_code', 'name', 'Livvon (United States)'),
(60489, 50840, 'en', 'name', 'National Speech and Debate Association'),
(60490, 50841, 'en', 'name', 'Perspectives Charter School'),
(60491, 50842, 'en', 'name', 'Local Initiatives Support Corporation'),
(60492, 50843, 'en', 'name', 'Institute of Leadership & Institutional Development'),
(60493, 50844, 'en', 'name', 'Illustrative Mathematics'),
(60494, 50845, 'en', 'name', 'PharmaTrain Federation'),
(60495, 50846, 'en', 'name', 'National Student Clearinghouse'),
(60496, 50847, 'en', 'name', 'Junior Achievement'),
(60497, 50848, 'no_lang_code', 'name', 'Logistimo (India)'),
(60498, 50849, 'en', 'name', 'National Summer Learning Association'),
(60499, 50850, 'no_lang_code', 'name', 'Loowatt (United Kingdom)'),
(60500, 50851, 'en', 'name', 'Junior Achievement'),
(60501, 50852, 'en', 'name', 'Imaging the World'),
(60502, 50853, 'en', 'name', 'National Writing Project'),
(60503, 50854, 'en', 'name', 'Junior Achievement of Delaware'),
(60504, 50855, 'en', 'name', 'Native American Youth and Family Center'),
(60505, 50856, 'en', 'name', 'iMentor'),
(60506, 50857, 'en', 'name', 'Pinyon Foundation'),
(60507, 50858, 'no_lang_code', 'name', 'Just Biotherapeutics (United States)'),
(60508, 50859, 'no_lang_code', 'name', 'Lumen Learning (United States)'),
(60509, 50860, 'no_lang_code', 'name', 'Natural Synergies (United Kingdom)'),
(60510, 50861, 'en', 'name', 'Kalam Research and Media'),
(60511, 50862, 'en', 'name', 'Nature Healing Nature'),
(60512, 50863, 'en', 'name', 'INMED Partnerships for Children'),
(60513, 50864, 'en', 'name', 'Kampala Capital City Authority'),
(60514, 50865, 'no_lang_code', 'name', 'Innolytics (United States)'),
(60515, 50866, 'en', 'name', 'Nautilus Ventures'),
(60516, 50867, 'en', 'name', 'Innovations for Poverty Action'),
(60517, 50868, 'en', 'name', 'Kenya Muslim Youth Alliance'),
(60518, 50869, 'no_lang_code', 'name', 'Nautilus (United States)'),
(60519, 50870, 'en', 'name', 'Mahila Abhivruddhi Society, Andhra Pradesh'),
(60520, 50871, 'en', 'name', 'Rainforest Alliance'),
(60521, 50872, 'no_lang_code', 'name', 'NetHope'),
(60522, 50873, 'en', 'name', 'Marie Stopes International'),
(60523, 50874, 'en', 'name', 'St. Monica Catholic School'),
(60524, 50875, 'en', 'name', 'Rajiv Gandhi Charitable Trust'),
(60525, 50876, 'en', 'name', 'Policy Exchange'),
(60526, 50877, 'en', 'name', 'Network For Teaching Entrepreneurship'),
(60527, 50878, 'en', 'name', 'Rare Genomics Institute'),
(60528, 50879, 'en', 'name', 'Market Matters'),
(60529, 50880, 'en', 'name', 'Washington State Department of Early Learning'),
(60530, 50881, 'en', 'name', 'RE Today Services'),
(60531, 50882, 'en', 'name', 'New Classrooms Innovation Partners'),
(60532, 50883, 'en', 'name', 'PolicyLink'),
(60533, 50884, 'no_lang_code', 'name', 'ReadCoor (United States)'),
(60534, 50885, 'en', 'name', 'Real Impact Analytics'),
(60535, 50886, 'en', 'name', 'Southwest Seattle Youth & Family Services'),
(60536, 50887, 'no_lang_code', 'name', 'Regenex Pharmaceuticals (China)'),
(60537, 50887, 'zh', 'name', 'å¹æå·žęœ—åœ£čÆäøšęœ‰é™å…¬åø ē‰ˆęƒę‰€ęœ‰'),
(60538, 50888, 'en', 'name', 'Statistical Assessment Service'),
(60539, 50889, 'en', 'name', 'New Haven Public Schools'),
(60540, 50890, 'no_lang_code', 'name', 'StelaGenomics (United States)'),
(60541, 50891, 'en', 'name', 'Relief International'),
(60542, 50892, 'en', 'name', 'Population Action International'),
(60543, 50893, 'en', 'name', 'Restless Development'),
(60544, 50894, 'en', 'name', 'New Leaders'),
(60545, 50895, 'no_lang_code', 'name', 'Rommelag (Switzerland)'),
(60546, 50896, 'no_lang_code', 'name', 'Rhize'),
(60547, 50897, 'en', 'name', 'Population Matters'),
(60548, 50898, 'en', 'name', 'New Life International'),
(60549, 50899, 'en', 'name', 'Potlatch Fund'),
(60550, 50900, 'en', 'name', 'New Philanthropy Capital'),
(60551, 50901, 'en', 'name', 'McGill-Toolen Catholic High School'),
(60552, 50902, 'no_lang_code', 'name', 'Precise Consult International (Ethiopia)'),
(60553, 50903, 'en', 'name', 'Strive Preparatory Schools'),
(60554, 50904, 'en', 'name', 'New Schools for Chicago'),
(60555, 50905, 'no_lang_code', 'name', 'Premise Data (United States)'),
(60556, 50906, 'en', 'name', 'South African Institute for Distance Education'),
(60557, 50907, 'en', 'name', 'Sanford Burnham Prebys Medical Discovery Institute'),
(60558, 50908, 'en', 'name', 'New Schools for New Orleans'),
(60559, 50909, 'en', 'name', 'Student Achievement Partners'),
(60560, 50910, 'en', 'name', 'Scalabrini International Migration Network'),
(60561, 50911, 'en', 'name', 'Measured Progress'),
(60562, 50912, 'en', 'name', 'Prichard Committee for Academic Excellence'),
(60563, 50913, 'en', 'name', 'Media Impact Funders'),
(60564, 50914, 'en', 'name', 'New Schools Venture Fund'),
(60565, 50915, 'en', 'name', 'Media Trust'),
(60566, 50916, 'en', 'name', 'School for Ethical Education'),
(60567, 50917, 'en', 'name', 'New Teacher Center'),
(60568, 50918, 'en', 'name', 'Memphis Urban League'),
(60569, 50919, 'en', 'name', 'successful practices network'),
(60570, 50920, 'en', 'name', 'Schoolzilla'),
(60571, 50921, 'en', 'name', 'New Visions for Public Schools'),
(60572, 50922, 'en', 'name', 'Mennonite Economic Development Associates'),
(60573, 50923, 'en', 'name', 'Professional Assistance for Development Action'),
(60574, 50924, 'en', 'name', 'New York City Charter School Center'),
(60575, 50925, 'en', 'name', 'Science Friday Initiative'),
(60576, 50926, 'en', 'name', 'Mercy Corps'),
(60577, 50927, 'en', 'name', 'ScienceSites'),
(60578, 50928, 'en', 'name', 'Nexleaf Analytics'),
(60579, 50929, 'en', 'name', 'Project Everyone'),
(60580, 50930, 'no_lang_code', 'name', 'Axcella Health (United States)'),
(60581, 50931, 'no_lang_code', 'name', 'Next Dimension Technologies (United States)'),
(60582, 50932, 'no_lang_code', 'name', 'ProSocial (United States)'),
(60583, 50933, 'en', 'name', 'Global Social Observatory'),
(60584, 50934, 'en', 'name', 'Noble Network of Charter Schools'),
(60585, 50935, 'no_lang_code', 'name', 'Seagull BioSolutions (India)'),
(60586, 50936, 'en', 'name', 'Nonprofit Assistance Center'),
(60587, 50937, 'en', 'name', 'Seattle Housing Authority'),
(60588, 50938, 'en', 'name', 'Tacoma Housing Authority'),
(60589, 50939, 'no_lang_code', 'name', 'Quackenworth (United States)'),
(60590, 50940, 'en', 'name', 'Nonprofit Quarterly'),
(60591, 50941, 'no_lang_code', 'name', 'Sensor Development Corporation (United States)'),
(60592, 50942, 'en', 'name', 'Greater Tacoma Community Foundation'),
(60593, 50943, 'no_lang_code', 'name', 'Sentinext Therapeutics (Malaysia)'),
(60594, 50944, 'no_lang_code', 'name', 'Radio One (United States)'),
(60595, 50945, 'en', 'name', 'Tanzania Social Action Fund'),
(60596, 50946, 'en', 'name', 'ImagineNations'),
(60597, 50947, 'en', 'name', 'International Association for K-12 Online Learning'),
(60598, 50948, 'en', 'name', 'Institute for Research on Unlimited Love'),
(60599, 50949, 'no_lang_code', 'name', 'Serviceplan (Germany)'),
(60600, 50949, 'de', 'name', 'Serviceplan Gruppe für innovative Kommunikation GmbH & Co. KG'),
(60601, 50950, 'no_lang_code', 'name', 'Seventh Sense Biosystems (United States)'),
(60602, 50951, 'no_lang_code', 'name', 'Temptime (United States)'),
(60603, 50952, 'en', 'name', 'Sevenzo'),
(60604, 50953, 'en', 'name', 'Jack Miller Center'),
(60605, 50954, 'en', 'name', 'Treatment Action Group'),
(60606, 50955, 'en', 'name', 'Tennessee College Access and Success Network'),
(60607, 50956, 'en', 'name', 'Share Our Strength'),
(60608, 50957, 'no_lang_code', 'name', 'TerraFrame (United States)'),
(60609, 50958, 'en', 'name', 'King Center Charter School'),
(60610, 50959, 'en', 'name', 'Treehouse'),
(60611, 50960, 'no_lang_code', 'name', 'Ustar Biotechnologies (China)'),
(60612, 50961, 'no_lang_code', 'name', 'TetraGenetics (United States)'),
(60613, 50962, 'en', 'name', 'National Alliance to End Homelessness'),
(60614, 50963, 'no_lang_code', 'name', 'Sirenas (United States)'),
(60615, 50964, 'en', 'name', 'The New Teacher Project'),
(60616, 50965, 'en', 'name', 'Texas Tribune'),
(60617, 50966, 'en', 'name', 'Sister Cities International'),
(60618, 50967, 'en', 'name', 'The Philanthropic Initiative'),
(60619, 50968, 'en', 'name', 'Skillpoint Alliance'),
(60620, 50969, 'no_lang_code', 'name', 'Triumph Learning (United States)'),
(60621, 50970, 'no_lang_code', 'name', 'Smart Sparrow (United States)'),
(60622, 50971, 'en', 'name', 'Right Question Institute'),
(60623, 50972, 'en', 'name', 'Vatican Observatory Foundation'),
(60624, 50973, 'no_lang_code', 'name', 'Q2 (United States)'),
(60625, 50974, 'en', 'name', 'Tulsa Public Schools'),
(60626, 50975, 'ro', 'name', 'Institutul RomĆ¢n de Ştiinţă şi Tehnologie'),
(60627, 50975, 'en', 'name', 'Romanian Institute of Science and Technology'),
(60628, 50976, 'no_lang_code', 'name', 'VaxTrials (Panama)'),
(60629, 50977, 'no_lang_code', 'name', 'Vaxxas (Australia)'),
(60630, 50978, 'no_lang_code', 'name', 'TÜV SÜD (Singapore)'),
(60631, 50979, 'en', 'name', 'Big Picture Learning'),
(60632, 50980, 'en', 'name', 'Social Venture Partners'),
(60633, 50981, 'no_lang_code', 'name', 'Sure Chill (United Kingdom)'),
(60634, 50982, 'en', 'name', 'Solar Electric Light Fund'),
(60635, 50983, 'no_lang_code', 'name', 'Vedantra Pharmaceuticals (United States)'),
(60636, 50984, 'no_lang_code', 'name', 'Thinkcerca.com (United States)'),
(60637, 50985, 'en', 'name', 'Tyton Partners'),
(60638, 50986, 'en', 'name', 'Three Bird Swan Consulting Group'),
(60639, 50987, 'fr', 'name', 'SociƩtƩ Nationale des TƩlƩcommunications du Senegal'),
(60640, 50987, 'no_lang_code', 'name', 'Sonatel (Senegal)'),
(60641, 50988, 'en', 'name', 'Bridgespan Group'),
(60642, 50989, 'en', 'name', 'Three Rivers Community Foundation'),
(60643, 50990, 'en', 'name', 'VentureWell'),
(60644, 50991, 'en', 'name', 'Veritas Forum'),
(60645, 50992, 'no_lang_code', 'name', 'Umande Trust'),
(60646, 50993, 'en', 'name', 'VillageReach'),
(60647, 50994, 'no_lang_code', 'name', 'Vista Therapeutics (United States)'),
(60648, 50995, 'en', 'name', 'United Way of Benton and Franklin Counties'),
(60649, 50996, 'en', 'name', 'St. Gregory the Theologian Charity Foundation'),
(60650, 50996, 'ru', 'name', 'Š‘Š»Š°Š³Š¾Ń‚Š²Š¾Ń€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ фонГ имени ŃŠ²ŃŃ‚ŠøŃ‚ŠµŠ»Ń Š“Ń€ŠøŠ³Š¾Ń€ŠøŃ Богослова'),
(60651, 50997, 'en', 'name', 'United Way of Central Washington'),
(60652, 50998, 'no_lang_code', 'name', 'Tideline (United States)'),
(60653, 50999, 'en', 'name', 'Vital Pakistan Trust'),
(60654, 51000, 'en', 'name', 'St. Bernard Parish School District'),
(60655, 51001, 'en', 'name', 'Vital Voices'),
(60656, 51002, 'en', 'name', 'What Kids Can Do'),
(60657, 51003, 'en', 'name', 'McCord Hospital'),
(60658, 51004, 'en', 'name', 'United Way of King County'),
(60659, 51005, 'en', 'name', 'Colossian Forum'),
(60660, 51006, 'en', 'name', 'Whatcom Community Foundation'),
(60661, 51007, 'en', 'name', 'Association of Washington School Principals'),
(60662, 51008, 'en', 'name', 'United Way of Snohomish County'),
(60663, 51009, 'en', 'name', 'White Ribbon Alliance'),
(60664, 51010, 'nl', 'name', 'Vredeseilanden'),
(60665, 51011, 'en', 'name', 'Washington Student Achievement Council'),
(60666, 51012, 'en', 'name', 'Conversation Africa'),
(60667, 51013, 'en', 'name', 'United Way of Southern Cameron County'),
(60668, 51014, 'no_lang_code', 'name', 'Wieden+Kennedy (United States)'),
(60669, 51015, 'no_lang_code', 'name', 'Vsolvit (United States)'),
(60670, 51016, 'en', 'name', 'United Way of Spokane County'),
(60671, 51017, 'en', 'name', 'Wajir County Government'),
(60672, 51018, 'en', 'name', 'United Way of the Columbia-Willamette'),
(60673, 51019, 'en', 'name', 'Windrider Institute'),
(60674, 51020, 'en', 'name', 'Water & Sanitation for the Urban Poor'),
(60675, 51021, 'en', 'name', 'Federalist Society'),
(60676, 51022, 'no_lang_code', 'name', 'Unitus Labs'),
(60677, 51023, 'en', 'name', 'Women Moving Millions'),
(60678, 51024, 'en', 'name', 'Warren County Public Schools'),
(60679, 51025, 'en', 'name', 'Women''s Policy'),
(60680, 51026, 'en', 'name', 'World Neighbors'),
(60681, 51027, 'en', 'name', 'WaterAid America'),
(60682, 51028, 'en', 'name', 'Women''s World Banking'),
(60683, 51029, 'en', 'name', 'Worcester Public Schools'),
(60684, 51030, 'no_lang_code', 'name', 'Univercells (Belgium)'),
(60685, 51031, 'en', 'name', 'Workforce Snohomish'),
(60686, 51032, 'en', 'name', 'Worldwide Documentaries'),
(60687, 51033, 'no_lang_code', 'name', 'Well Told Story (Kenya)'),
(60688, 51034, 'en', 'name', 'YWCA USA'),
(60689, 51035, 'en', 'name', 'Interdisciplinary University of Paris'),
(60690, 51035, 'fr', 'name', 'UniversitƩ interdisciplinaire de Paris'),
(60691, 51036, 'en', 'name', 'Young Women''s Leadership Network'),
(60692, 51037, 'en', 'name', 'Yakima Valley Community Foundation'),
(60693, 51038, 'no_lang_code', 'name', 'Wetlands Work (Cambodia)'),
(60694, 51039, 'en', 'name', 'YouthBuild'),
(60695, 51040, 'en', 'name', 'Youth Development Labs'),
(60696, 51041, 'en', 'name', 'Youth Service America'),
(60697, 51042, 'no_lang_code', 'name', 'Zagaya'),
(60698, 51043, 'en', 'name', 'Youth Venture'),
(60699, 51044, 'en', 'name', 'ZanaAfrica Group'),
(60700, 51045, 'en', 'name', 'YES Prep Public Schools'),
(60701, 51046, 'no_lang_code', 'name', 'Zipline International (United States)'),
(60702, 51047, 'en', 'name', 'Young Invincibles'),
(60703, 51048, 'en', 'name', 'Zygon Center for Religion and Science'),
(60704, 51049, 'no_lang_code', 'name', 'Art Innovation (Netherlands)'),
(60705, 51050, 'en', 'name', 'CMH Lahore Medical College and Institute of Dentistry'),
(60706, 51051, 'no_lang_code', 'name', 'Tokuda Hospital'),
(60707, 51051, 'bg', 'name', 'ТокуГа Болница Š”Š¾Ń„ŠøŃ'),
(60708, 51052, 'no_lang_code', 'name', 'Aava Medical Centre'),
(60709, 51053, 'nl', 'name', 'Kempenhaeghe'),
(60710, 51054, 'pt', 'name', 'Hospital Central da PolĆ­cia Militar'),
(60711, 51055, 'en', 'name', 'AXIS Clinical Trials'),
(60712, 51056, 'es', 'name', 'Hospital la Serena'),
(60713, 51057, 'en', 'name', 'Advanced Dermatology'),
(60714, 51058, 'en', 'name', 'Shunyi Hospital of Beijing Traditional Chinese Medicine Hospital'),
(60715, 51058, 'zh', 'name', 'åŒ—äŗ¬äø­åŒ»åŒ»é™¢é”ŗä¹‰åŒ»é™¢'),
(60716, 51059, 'en', 'name', 'Affiliated Hospital of Shandong University of Traditional Chinese Medicine'),
(60717, 51059, 'zh', 'name', 'å±±äøœäø­åŒ»čÆå¤§å­¦é™„å±žåŒ»é™¢'),
(60718, 51060, 'en', 'name', 'Northern California Research'),
(60719, 51061, 'en', 'name', 'Adult Anxiety Clinic of Temple'),
(60720, 51062, 'en', 'name', 'Forest Research'),
(60721, 51063, 'ro', 'name', 'Spitalul Clinic C.F. Iasi'),
(60722, 51064, 'en', 'name', 'New Mexico State University Grants'),
(60723, 51065, 'no_lang_code', 'name', 'Intelligent Decision Systems (Spain)'),
(60724, 51066, 'en', 'name', 'Hellenic Oceanographers Association'),
(60725, 51066, 'el', 'name', 'Ī£ĻĪ»Ī»ĪæĪ³ĪæĻ‚ Ελλήνων Ωκεανογράφων'),
(60726, 51067, 'tr', 'name', 'Marmara Üniversitesi Eğitim ve Araştırma Hastanesi'),
(60727, 51068, 'en', 'name', 'National Academy of Engineering'),
(60728, 51069, 'en', 'name', 'Baltic Studies Centre'),
(60729, 51070, 'en', 'name', 'Oromiyaa Regional Health Bureau'),
(60730, 51071, 'no_lang_code', 'name', 'Sierra BioMedical (United States)'),
(60731, 51072, 'no_lang_code', 'name', 'Tècniques de Gestió de la Informació'),
(60732, 51073, 'en', 'name', 'Taizhou People''s Hospital'),
(60733, 51074, 'en', 'name', 'Tanta University Hospital'),
(60734, 51075, 'en', 'name', 'New England Institute for Neurology and Headache'),
(60735, 51076, 'en', 'name', 'Inner Mongolia Autonomous Region Hospital of Traditional Chinese Medicine'),
(60736, 51076, 'zh', 'name', 'å†…č’™å¤č‡Ŗę²»åŒŗäø­åŒ»åŒ»é™¢'),
(60737, 51077, 'en', 'name', 'Fukuda Foundation for Medical Technology'),
(60738, 51077, 'ja', 'name', 'č²”å›£ę³•äŗŗē¦ē”°čØ˜åæµåŒ»ē™‚ęŠ€č”“ęŒÆčˆˆč²”å›£ćÆ'),
(60739, 51078, 'it', 'name', 'Fondazione Internazionale Menarini'),
(60740, 51079, 'en', 'name', 'Foundation for Promotion of Cancer Research'),
(60741, 51079, 'ja', 'name', 'ćŒć‚“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(60742, 51080, 'en', 'name', 'Free To Breathe'),
(60743, 51081, 'en', 'name', 'Foundation for Psychocultural Research'),
(60744, 51082, 'en', 'name', 'Fulbright Canada'),
(60745, 51083, 'fr', 'name', 'Fondation Centaure'),
(60746, 51084, 'en', 'name', 'Gamma Mu Foundation'),
(60747, 51085, 'da', 'name', 'Gangstedfonden'),
(60748, 51086, 'fr', 'name', 'Fondation Charcot'),
(60749, 51087, 'de', 'name', 'Freiwilligen Akademischen Gesellschaft'),
(60750, 51088, 'fr', 'name', 'Fondation Denis Guichard'),
(60751, 51089, 'it', 'name', 'Fondazione Monte dei Paschi di Siena'),
(60752, 51090, 'de', 'name', 'Fondation des Fondateurs'),
(60753, 51090, 'en', 'name', 'Foundation of the Founders'),
(60754, 51091, 'en', 'name', 'Fremont Bank'),
(60755, 51092, 'en', 'name', 'Garden Club of Honolulu'),
(60756, 51093, 'en', 'name', 'Fund For New Jersey'),
(60757, 51094, 'en', 'name', 'Gardiner Foundation'),
(60758, 51095, 'it', 'name', 'Fondazione per la Ricerca sulla Fibrosi Cistica'),
(60759, 51096, 'en', 'name', 'Frey Foundation'),
(60760, 51097, 'en', 'name', 'Garfield Foundation'),
(60761, 51098, 'en', 'name', 'Garrett B Smith Foundation'),
(60762, 51099, 'en', 'name', 'Funeral Service Foundation'),
(60763, 51100, 'it', 'name', 'Fondazione Pezcoller'),
(60764, 51101, 'de', 'name', 'Friede Springer Stiftung'),
(60765, 51102, 'no_lang_code', 'name', 'Roper Technologies (United States)'),
(60766, 51103, 'en', 'name', 'George A. and Eliza Gardner Howard Foundation'),
(60767, 51104, 'en', 'name', 'Futaba Electronics Memorial Foundation'),
(60768, 51104, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ åŒč‘‰é›»å­čØ˜åæµč²”å›£'),
(60769, 51105, 'en', 'name', 'Gateway for Cancer Research'),
(60770, 51106, 'it', 'name', 'Fondazione Pierfranco e Luisa Mariani'),
(60771, 51107, 'de', 'name', 'Gebauer Stiftung'),
(60772, 51108, 'en', 'name', 'G. Unger Vetlesen Foundation'),
(60773, 51109, 'en', 'name', 'George Alexander Foundation'),
(60774, 51110, 'en', 'name', 'George and Mary Josephine Hamman Foundation'),
(60775, 51111, 'de', 'name', 'Friedrich Baur Stiftung'),
(60776, 51112, 'de', 'name', 'Gottfried und Julia Bangerter-Rhyner-Stiftung'),
(60777, 51113, 'no_lang_code', 'name', 'Ribbon Communications (United States)'),
(60778, 51114, 'en', 'name', 'Gallipoli Medical Research Foundation'),
(60779, 51115, 'en', 'name', 'Grable Foundation'),
(60780, 51116, 'en', 'name', 'Friends United'),
(60781, 51117, 'en', 'name', 'Metcalf Foundation'),
(60782, 51118, 'da', 'name', 'Frimodt-Heineke Fonden'),
(60783, 51119, 'en', 'name', 'Generation Foundation'),
(60784, 51120, 'de', 'name', 'Fritz Bender Stiftung'),
(60785, 51121, 'en', 'name', 'Grace J. Fippinger Foundation'),
(60786, 51122, 'en', 'name', 'Frontiers Foundation'),
(60787, 51123, 'en', 'name', 'George Gund Foundation'),
(60788, 51124, 'en', 'name', 'Geological Society of Australia'),
(60789, 51125, 'en', 'name', 'Georgia Forestry Association'),
(60790, 51126, 'en', 'name', 'FSH Society'),
(60791, 51127, 'en', 'name', 'Georgia Health Foundation'),
(60792, 51128, 'en', 'name', 'Gerald R. Ford Presidential Foundation'),
(60793, 51129, 'en', 'name', 'Graham Foundation'),
(60794, 51130, 'en', 'name', 'Geraldine R. Dodge Foundation'),
(60795, 51131, 'en', 'name', 'Healthcare Foundation of New Jersey'),
(60796, 51132, 'de', 'name', 'Gerhard C. Starck Stiftung'),
(60797, 51133, 'en', 'name', 'Grant Healthcare Foundation'),
(60798, 51134, 'en', 'name', 'German Marshall Fund of the United States'),
(60799, 51135, 'en', 'name', 'FSHD Global Research Foundation'),
(60800, 51136, 'en', 'name', 'Heart Foundation'),
(60801, 51137, 'en', 'name', 'Grantsmanship Center'),
(60802, 51138, 'en', 'name', 'Guthy-Jackson Charitable Foundation'),
(60803, 51139, 'en', 'name', 'Graphic Arts Education and Research Foundation'),
(60804, 51140, 'en', 'name', 'Heckscher Foundation for Children'),
(60805, 51141, 'sv', 'name', 'Hans Bang Stiftelsen'),
(60806, 51142, 'en', 'name', 'Getty Foundation'),
(60807, 51143, 'en', 'name', 'Grass Foundation'),
(60808, 51144, 'en', 'name', 'Help For Children'),
(60809, 51145, 'en', 'name', 'Gheens Foundation'),
(60810, 51146, 'en', 'name', 'H. L. Snyder Medical Foundation'),
(60811, 51147, 'de', 'name', 'Hans Eggenberger Stiftung'),
(60812, 51148, 'en', 'name', 'Heed Ophthalmic Foundation'),
(60813, 51149, 'da', 'name', 'Harboefonden'),
(60814, 51150, 'no_lang_code', 'name', 'Kraft Heinz (United States)'),
(60815, 51151, 'en', 'name', 'Gratiot County Community Foundation'),
(60816, 51152, 'de', 'name', 'Heidehof Stiftung'),
(60817, 51153, 'en', 'name', 'H.W. Durham Foundation'),
(60818, 51154, 'de', 'name', 'Heimer Stiftung'),
(60819, 51155, 'en', 'name', 'Great Valley Center'),
(60820, 51156, 'en', 'name', 'Gift of the Givers Foundation'),
(60821, 51157, 'en', 'name', 'Greater Boston Council on Alcoholism'),
(60822, 51158, 'en', 'name', 'Greater Cincinnati Foundation'),
(60823, 51159, 'en', 'name', 'Harold Mitchell Foundation'),
(60824, 51160, 'no_lang_code', 'name', 'Haberdashers (United Kingdom)'),
(60825, 51161, 'en', 'name', 'Harold Whitworth Pierce Charitable Trust'),
(60826, 51162, 'en', 'name', 'Greater Greenbrier Valley Community Foundation'),
(60827, 51163, 'en', 'name', 'Gill Bergska Foundation'),
(60828, 51164, 'en', 'name', 'Harriet H. Samuelsson Foundation'),
(60829, 51165, 'en', 'name', 'Girard Foundation'),
(60830, 51166, 'en', 'name', 'Greater Kanawha Valley Foundation'),
(60831, 51167, 'en', 'name', 'Gladys Krieble Delmas Foundation'),
(60832, 51168, 'en', 'name', 'Glaser Progress Foundation'),
(60833, 51169, 'sv', 'name', 'Helge Ax:son Johnsons Stiftelse'),
(60834, 51170, 'en', 'name', 'Greater Kansas City Community Foundation'),
(60835, 51171, 'en', 'name', 'Greater Milwaukee Foundation'),
(60836, 51172, 'en', 'name', 'Glens Falls Foundation'),
(60837, 51173, 'en', 'name', 'Green Lane Research and Educational Fund'),
(60838, 51174, 'en', 'name', 'Harrison County Community Foundation'),
(60839, 51175, 'en', 'name', 'Greenwall Foundation'),
(60840, 51176, 'en', 'name', 'Harry Frank Guggenheim Foundation'),
(60841, 51177, 'en', 'name', 'Grieg Foundation'),
(60842, 51178, 'en', 'name', 'Global Association of Risk Professionals'),
(60843, 51179, 'en', 'name', 'Global Down Syndrome Foundation'),
(60844, 51180, 'en', 'name', 'Grigg Lewis Foundation'),
(60845, 51181, 'en', 'name', 'Harry W. Bass, Jr. Foundation'),
(60846, 51182, 'en', 'name', 'Hemophilia Association of New York'),
(60847, 51183, 'en', 'name', 'Global Foundation for Peroxisomal Disorders'),
(60848, 51184, 'en', 'name', 'Hendricks County Community Foundation'),
(60849, 51185, 'no_lang_code', 'name', 'Haruv Institute'),
(60850, 51185, 'he', 'name', 'מכון חרוב'),
(60851, 51186, 'en', 'name', 'Harvard Travellers Club'),
(60852, 51187, 'en', 'name', 'Henry County Community Foundation'),
(60853, 51188, 'en', 'name', 'Global Risk Institute in Financial Services'),
(60854, 51189, 'en', 'name', 'EduInnovation'),
(60855, 51190, 'en', 'name', 'Henry P Kendall Foundation'),
(60856, 51191, 'en', 'name', 'Harvard-Yenching Institute'),
(60857, 51192, 'no_lang_code', 'name', 'GN Store Nord (Denmark)'),
(60858, 51193, 'en', 'name', 'Harvey L. Neiman Health Policy Institute'),
(60859, 51194, 'en', 'name', 'Herb Society of America'),
(60860, 51195, 'en', 'name', 'The Herbert H. and Grace A. Dow Foundation'),
(60861, 51196, 'en', 'name', 'Goizueta Foundation'),
(60862, 51197, 'en', 'name', 'Herbert W. Hoover Foundation'),
(60863, 51198, 'en', 'name', 'Goldhirsh Foundation'),
(60864, 51199, 'de', 'name', 'Homann-Stiftung'),
(60865, 51200, 'en', 'name', 'Hasler Foundation'),
(60866, 51200, 'de', 'name', 'Hasler Stiftung'),
(60867, 51201, 'en', 'name', 'Goldman Philanthropic Partnerships'),
(60868, 51202, 'en', 'name', 'Heritage Fund'),
(60869, 51203, 'en', 'name', 'Haemophilia Foundation Australia'),
(60870, 51204, 'en', 'name', 'Goldsmith Family Foundation'),
(60871, 51205, 'en', 'name', 'Honjo International Scholarship Foundation'),
(60872, 51206, 'en', 'name', 'Honorable Tina Brozman Foundation'),
(60873, 51207, 'en', 'name', 'Good Samaritan Foundation'),
(60874, 51208, 'en', 'name', 'Hairy Cell Leukemia Foundation'),
(60875, 51209, 'en', 'name', 'Hayao Nakayama Foundation for Science & Technology and Culture'),
(60876, 51209, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­å±±éš¼é›„ē§‘å­¦ęŠ€č”“ę–‡åŒ–č²”å›£'),
(60877, 51210, 'en', 'name', 'Hazel K. Goddess Fund for Stroke Research in Women'),
(60878, 51211, 'en', 'name', 'Hyde Family Foundations'),
(60879, 51212, 'no_lang_code', 'name', 'Hospitals Contribution Fund (Australia)'),
(60880, 51213, 'de', 'name', 'Hamburgische Wissenschaftliche Stiftung'),
(60881, 51214, 'en', 'name', 'Hermansky Pudlak Syndrome Network'),
(60882, 51215, 'en', 'name', 'Hope Foundation for Research on Ageing'),
(60883, 51216, 'en', 'name', 'Hamdard National Foundation'),
(60884, 51217, 'en', 'name', 'Hope Happens for Neurological Disorders'),
(60885, 51218, 'en', 'name', 'Hydrogen Education Foundation'),
(60886, 51219, 'en', 'name', 'Hampton Roads Community Foundation'),
(60887, 51220, 'de', 'name', 'HOPE-Kapstadt-Stiftung'),
(60888, 51221, 'en', 'name', 'Hand Foundation'),
(60889, 51222, 'en', 'name', 'Hyogo Prefecture Health Foundation'),
(60890, 51222, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å…µåŗ«ēœŒå„åŗ·č²”å›£'),
(60891, 51223, 'en', 'name', 'I. A. O''Shaughnessy Foundation'),
(60892, 51224, 'en', 'name', 'Health Care Foundation of Greater Kansas City'),
(60893, 51225, 'en', 'name', 'Hannah''s Heroes Foundation'),
(60894, 51226, 'en', 'name', 'Health Foundation of South Florida'),
(60895, 51227, 'no_lang_code', 'name', 'Hori Sciences and Arts Foundation'),
(60896, 51227, 'ja', 'name', 'å €ē§‘å­¦čŠøč”“ęŒÆčˆˆč²”å›£'),
(60897, 51228, 'de', 'name', 'Herzstiftung Olten'),
(60898, 51229, 'en', 'name', 'Ian''s Friends Foundation'),
(60899, 51230, 'da', 'name', 'Hesteafgiftsfondens'),
(60900, 51231, 'en', 'name', 'Horizon Foundation'),
(60901, 51232, 'en', 'name', 'Innovating Worthy Projects Foundation'),
(60902, 51233, 'en', 'name', 'Health Research Foundation'),
(60903, 51234, 'en', 'name', 'Horizon Blue Cross Blue Shield of New Jersey'),
(60904, 51235, 'en', 'name', 'International Headache Society'),
(60905, 51236, 'en', 'name', 'International Order of Alhambra'),
(60906, 51237, 'en', 'name', 'Innovation Center for U.S. Dairy'),
(60907, 51238, 'en', 'name', 'HHV-6 Foundation'),
(60908, 51239, 'en', 'name', 'Illinois Childrens Healthcare Foundation'),
(60909, 51240, 'en', 'name', 'Horowitz Foundation for Social Policy'),
(60910, 51241, 'en', 'name', 'Innovative Structural Materials Association'),
(60911, 51242, 'en', 'name', 'Illinois Critical Access Hospital Network'),
(60912, 51243, 'en', 'name', 'Sasaki Associates'),
(60913, 51244, 'en', 'name', 'Inoue Foundation for Science'),
(60914, 51244, 'ja', 'name', 'äŗ•äøŠē§‘å­¦ęŒÆčˆˆč²”å›£'),
(60915, 51245, 'en', 'name', 'Hospital Research Foundation'),
(60916, 51246, 'en', 'name', 'International Society for Peritoneal Dialysis'),
(60917, 51247, 'en', 'name', 'IMB Bank'),
(60918, 51248, 'en', 'name', 'Hille Foundation'),
(60919, 51249, 'en', 'name', 'Impact Fund'),
(60920, 51250, 'en', 'name', 'Impact on Education'),
(60921, 51251, 'fr', 'name', 'Institut Louis Bachelier'),
(60922, 51252, 'en', 'name', 'Hirshberg Foundation for Pancreatic Cancer Research'),
(60923, 51253, 'en', 'name', 'Houston Endowment'),
(60924, 51254, 'en', 'name', 'Independent Sector'),
(60925, 51255, 'en', 'name', 'Independent Social Research Foundation'),
(60926, 51256, 'en', 'name', 'Howard Gilman Foundation'),
(60927, 51257, 'en', 'name', 'India Diabetes Research Foundation'),
(60928, 51258, 'id', 'name', 'Institut Penyelidikan dan Kemajuan Pertanian Malaysia'),
(60929, 51258, 'en', 'name', 'Malaysian Agricultural Research and Development Institute'),
(60930, 51259, 'en', 'name', 'International Transactional Analysis Association'),
(60931, 51260, 'en', 'name', 'Indian Academy of Neurosciences'),
(60932, 51261, 'en', 'name', 'International Transplant Nurses Society'),
(60933, 51262, 'en', 'name', 'Institute for Aegean Prehistory'),
(60934, 51263, 'en', 'name', 'Indian Land Tenure Foundation'),
(60935, 51264, 'en', 'name', 'Indian Rheumatology Association'),
(60936, 51265, 'en', 'name', 'International Union of Basic and Clinical Pharmacology'),
(60937, 51266, 'en', 'name', 'Indiana State University Foundation'),
(60938, 51267, 'en', 'name', 'Hoglund Foundation'),
(60939, 51268, 'en', 'name', 'International Union of Biochemistry and Molecular Biology'),
(60940, 51269, 'en', 'name', 'Huisking Foundation'),
(60941, 51270, 'en', 'name', 'International Urogynecological Association'),
(60942, 51271, 'en', 'name', 'Institute of Mental Hygiene'),
(60943, 51272, 'en', 'name', 'International Waldenstrom''s Macroglobulinemia Foundation'),
(60944, 51273, 'no_lang_code', 'name', 'Hokuto (Japan)'),
(60945, 51273, 'ja', 'name', 'ćƒ›ć‚Æćƒˆę Ŗå¼ä¼šē¤¾'),
(60946, 51274, 'de', 'name', 'Internationale Bodensee-Hochschule'),
(60947, 51275, 'en', 'name', 'Indonesia Toray Science Foundation'),
(60948, 51276, 'en', 'name', 'Humana Foundation'),
(60949, 51277, 'en', 'name', 'Euvaldo Lodi Institute'),
(60950, 51277, 'pt', 'name', 'Instituto Euvaldo Lodi'),
(60951, 51278, 'en', 'name', 'Izumi Foundation'),
(60952, 51279, 'en', 'name', 'Interstitial Cystitis Association'),
(60953, 51280, 'en', 'name', 'J. E. and L. E. Mabee Foundation'),
(60954, 51281, 'en', 'name', 'Intensive Care Foundation'),
(60955, 51282, 'en', 'name', 'J. Marion Sims Foundation'),
(60956, 51283, 'en', 'name', 'Gallmann Memorial Foundation'),
(60957, 51284, 'en', 'name', 'Pritzker Traubert Family Foundation'),
(60958, 51285, 'sv', 'name', 'IngaBritt och Arne Lundbergs Forskningsstiftelse'),
(60959, 51286, 'en', 'name', 'J. F Maddox Foundation'),
(60960, 51287, 'en', 'name', 'Interleukin Foundation'),
(60961, 51288, 'en', 'name', 'Intermedia Arts'),
(60962, 51289, 'en', 'name', 'Hunter''s Dream for a Cure'),
(60963, 51290, 'en', 'name', 'Hunter''s Hope Foundation'),
(60964, 51291, 'en', 'name', 'Jack Kent Cooke Foundation'),
(60965, 51292, 'en', 'name', 'Invergowrie Foundation'),
(60966, 51293, 'en', 'name', 'Jackson Foundation'),
(60967, 51294, 'en', 'name', 'International Association for the Evaluation of Educational Achievement'),
(60968, 51295, 'en', 'name', 'Hunting Retriever Club'),
(60969, 51296, 'en', 'name', 'International Association of Fire Fighters Charitable Foundation'),
(60970, 51297, 'en', 'name', 'IPEC-Americas'),
(60971, 51298, 'en', 'name', 'Huntington Society of Canada'),
(60972, 51299, 'en', 'name', 'Huntington''s Disease Society of America'),
(60973, 51300, 'en', 'name', 'Blaustein Philanthropic Group'),
(60974, 51301, 'en', 'name', 'International Association of Hydrological Sciences'),
(60975, 51302, 'en', 'name', 'Initial Teaching Alphabet Foundation'),
(60976, 51303, 'en', 'name', 'Jacob and Valeria Langeloth Foundation'),
(60977, 51304, 'en', 'name', 'Civil Society Legislative Advocacy Centre'),
(60978, 51305, 'en', 'name', 'Arkansas State University System'),
(60979, 51306, 'en', 'name', 'Emergency University'),
(60980, 51307, 'en', 'name', 'Institute of Chemical Technology'),
(60981, 51308, 'en', 'name', 'NDSU Research Foundation'),
(60982, 51309, 'en', 'name', 'Norwich University Applied Research Institute'),
(60983, 51310, 'en', 'name', 'Western Research Institute'),
(60984, 51311, 'fr', 'name', 'Interaction UniversitĆ© Ɖconomie'),
(60985, 51312, 'fr', 'name', 'Le Petit Monde'),
(60986, 51313, 'en', 'name', 'Peking University Stomatological Hospital'),
(60987, 51314, 'en', 'name', 'Huaian First People’s Hospital'),
(60988, 51314, 'zh', 'name', 'ę·®å®‰åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(60989, 51315, 'en', 'name', 'Sheffield Children''s University'),
(60990, 51316, 'en', 'name', 'University Bank'),
(60991, 51317, 'es', 'name', 'Universidad de IngenierĆ­a y TecnologĆ­a'),
(60992, 51317, 'en', 'name', 'University of Engineering & Technology'),
(60993, 51318, 'en', 'name', 'New York University Paris'),
(60994, 51319, 'en', 'name', 'Yueyang Hospital'),
(60995, 51319, 'zh', 'name', 'äøŠęµ·äø­åŒ»čÆå¤§å­¦é™„å±žå²³é˜³äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(60996, 51320, 'no_lang_code', 'name', 'ARaymond (France)'),
(60997, 51321, 'no_lang_code', 'name', 'Asia Vital Components (Taiwan)'),
(60998, 51321, 'zh', 'name', 'äŗšę“²ē”Ÿå‘½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(60999, 51322, 'no_lang_code', 'name', 'Assa Abloy (Sweden)'),
(61000, 51323, 'no_lang_code', 'name', 'American Standard (United States)'),
(61001, 51324, 'no_lang_code', 'name', 'Acuity Brands (United states)'),
(61002, 51325, 'no_lang_code', 'name', 'LyondellBasell (Italy)'),
(61003, 51326, 'no_lang_code', 'name', 'Accenture (Switzerland)'),
(61004, 51327, 'no_lang_code', 'name', 'Actuant (United States)'),
(61005, 51328, 'no_lang_code', 'name', 'Alibaba Group (Cayman Islands)'),
(61006, 51329, 'en', 'name', 'Byblos Bank'),
(61007, 51330, 'no_lang_code', 'name', 'Autoliv (United States)'),
(61008, 51331, 'no_lang_code', 'name', 'Amphenol (United States)'),
(61009, 51332, 'no_lang_code', 'name', 'Covestro (United States)'),
(61010, 51333, 'no_lang_code', 'name', 'Amphenol (Germany)'),
(61011, 51334, 'no_lang_code', 'name', 'Fiat Chrysler Automobiles (Germany)'),
(61012, 51335, 'no_lang_code', 'name', 'CommScope (United States)'),
(61013, 51336, 'no_lang_code', 'name', 'Brembo (United Kingdom)'),
(61014, 51337, 'no_lang_code', 'name', 'Access Energy (United Kingdom)'),
(61015, 51338, 'no_lang_code', 'name', 'Amada (Japan)'),
(61016, 51338, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒžćƒ€'),
(61017, 51339, 'no_lang_code', 'name', 'Anritsu (Japan)'),
(61018, 51339, 'ja', 'name', 'ć‚¢ćƒ³ćƒŖćƒ„ę Ŗå¼ä¼šē¤¾'),
(61019, 51340, 'no_lang_code', 'name', 'Amazonen-Werke (Germany)'),
(61020, 51341, 'no_lang_code', 'name', 'American Axle & Manufacturing (United States)'),
(61021, 51342, 'no_lang_code', 'name', 'AGA (Sweden)'),
(61022, 51343, 'no_lang_code', 'name', 'Danaher (Canada)'),
(61023, 51344, 'no_lang_code', 'name', 'Asahi Glass (Belgium)'),
(61024, 51345, 'no_lang_code', 'name', 'Bobst (Switzerland)'),
(61025, 51346, 'no_lang_code', 'name', 'Kyocera (United States)'),
(61026, 51347, 'no_lang_code', 'name', 'Applied Medical Resources (United States)'),
(61027, 51348, 'no_lang_code', 'name', 'AGCO (United States)'),
(61028, 51349, 'no_lang_code', 'name', 'Core Competence'),
(61029, 51350, 'no_lang_code', 'name', 'Axcelis Technologies (United States)'),
(61030, 51351, 'no_lang_code', 'name', 'Linde (United States)'),
(61031, 51352, 'no_lang_code', 'name', 'Ahlstrom-Munksjƶ (Finland)'),
(61032, 51353, 'en', 'name', 'ARCH Development Corporation'),
(61033, 51354, 'no_lang_code', 'name', 'Borealis (Finland)'),
(61034, 51355, 'no_lang_code', 'name', 'LyondellBasell (United States)'),
(61035, 51356, 'no_lang_code', 'name', 'BOS (Germany)'),
(61036, 51357, 'no_lang_code', 'name', 'Von Ardenne (Germany)'),
(61037, 51358, 'no_lang_code', 'name', 'J C Bamford Excavators (United Kingdom)'),
(61038, 51359, 'no_lang_code', 'name', 'Meritor (France)'),
(61039, 51360, 'no_lang_code', 'name', 'CarboTech (Germany)'),
(61040, 51361, 'no_lang_code', 'name', 'Boston Scientific (Barbados)'),
(61041, 51362, 'no_lang_code', 'name', 'Celanese (United States)'),
(61042, 51363, 'no_lang_code', 'name', 'BIC (France)'),
(61043, 51364, 'no_lang_code', 'name', 'TrĆØves (France)'),
(61044, 51365, 'no_lang_code', 'name', 'Dainichiseika (Japan)'),
(61045, 51365, 'ja', 'name', 'å¤§ę—„ē²¾åŒ–å·„'),
(61046, 51366, 'no_lang_code', 'name', 'Bissell (United States)'),
(61047, 51367, 'no_lang_code', 'name', 'Joyson Safety Systems (United States)'),
(61048, 51368, 'no_lang_code', 'name', 'Briggs & Stratton (United States)'),
(61049, 51369, 'no_lang_code', 'name', 'Danieli (Italy)'),
(61050, 51370, 'no_lang_code', 'name', 'CenturyLink (United States)'),
(61051, 51371, 'no_lang_code', 'name', 'Cera Engineering (France)'),
(61052, 51372, 'no_lang_code', 'name', 'DAV (France)'),
(61053, 51373, 'en', 'name', 'Compal Electronics (Taiwan)'),
(61054, 51373, 'zh', 'name', 'ä»å®ē”µč„‘å·„äøšč‚”ä»½ęœ‰é™å…¬åø'),
(61055, 51374, 'no_lang_code', 'name', 'Julius Blum (Austria)'),
(61056, 51375, 'no_lang_code', 'name', 'CCL Industries (United States)'),
(61057, 51376, 'no_lang_code', 'name', 'Conair (United States)'),
(61058, 51377, 'no_lang_code', 'name', 'Brose Fahrzeugteile (Germany)'),
(61059, 51378, 'no_lang_code', 'name', 'Eagle Industry (Japan)'),
(61060, 51378, 'ja', 'name', 'ć‚¤ćƒ¼ć‚°ćƒ«å·„ę„­'),
(61061, 51379, 'no_lang_code', 'name', 'Endress Hauser Messtechnik (Germany)'),
(61062, 51380, 'no_lang_code', 'name', 'DEKA (United States)'),
(61063, 51381, 'no_lang_code', 'name', 'Lanxess (United States)'),
(61064, 51382, 'no_lang_code', 'name', 'EberspƤcher (Germany)'),
(61065, 51383, 'no_lang_code', 'name', 'Consort Medical (United Kingdom)'),
(61066, 51384, 'no_lang_code', 'name', 'ebm-papst'),
(61067, 51385, 'no_lang_code', 'name', 'DeLaval (Sweden)'),
(61068, 51386, 'no_lang_code', 'name', 'BSH Home Appliances (United States)'),
(61069, 51387, 'no_lang_code', 'name', 'Edwards (United Kingdom)'),
(61070, 51388, 'no_lang_code', 'name', 'E.G.O (Germany)'),
(61071, 51389, 'no_lang_code', 'name', 'Delta Faucet (United States)'),
(61072, 51390, 'no_lang_code', 'name', 'Buckman Laboratories (United States)'),
(61073, 51391, 'no_lang_code', 'name', 'Denka (Japan)'),
(61074, 51391, 'ja', 'name', 'é›»ę°—åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(61075, 51392, 'no_lang_code', 'name', 'Chervon (Hongkong)'),
(61076, 51393, 'no_lang_code', 'name', 'Deutsche Post (Germany)'),
(61077, 51394, 'no_lang_code', 'name', 'Electrolux (Sweden)'),
(61078, 51395, 'no_lang_code', 'name', 'BYD (China)'),
(61079, 51395, 'zh', 'name', 'ęÆ”äŗščæŖč‚”ä»½ęœ‰é™å…¬åø'),
(61080, 51396, 'no_lang_code', 'name', 'Electrolux (Belgium)'),
(61081, 51397, 'no_lang_code', 'name', 'Deutz (Germany)'),
(61082, 51398, 'no_lang_code', 'name', 'InnoLux (Taiwan)'),
(61083, 51398, 'zh', 'name', 'ē¾¤å‰µå…‰é›»č‚”ä»½ęœ‰é™å…¬åø'),
(61084, 51399, 'no_lang_code', 'name', 'Electrolux (United States)'),
(61085, 51400, 'no_lang_code', 'name', 'Cosmo Oil (Japan)'),
(61086, 51400, 'ja', 'name', 'ć‚³ć‚¹ćƒ¢ēŸ³ę²¹ę Ŗå¼ä¼šē¤¾'),
(61087, 51401, 'no_lang_code', 'name', 'Campagnolo (Italy)'),
(61088, 51402, 'no_lang_code', 'name', 'Creative Technology (Singapore)'),
(61089, 51403, 'no_lang_code', 'name', 'Crown Holdings (United States)'),
(61090, 51404, 'no_lang_code', 'name', 'Dialog Semiconductor (Germany)'),
(61091, 51405, 'no_lang_code', 'name', 'Crown Holdings (United Kingdom)'),
(61092, 51406, 'no_lang_code', 'name', 'Sealed Air (United States)'),
(61093, 51407, 'no_lang_code', 'name', 'Bucher Emhart Glass (Switzerland)'),
(61094, 51408, 'no_lang_code', 'name', 'Faro Technologies (United States)'),
(61095, 51409, 'no_lang_code', 'name', 'Bucher Emhart Glass (United States)'),
(61096, 51410, 'no_lang_code', 'name', 'Faure Equipements (France)'),
(61097, 51411, 'no_lang_code', 'name', 'Cummins Allison (United States)'),
(61098, 51412, 'no_lang_code', 'name', 'Pioneer (United States)'),
(61099, 51413, 'no_lang_code', 'name', 'Ciena (United States)'),
(61100, 51414, 'no_lang_code', 'name', 'Solvay (Austria)'),
(61101, 51415, 'no_lang_code', 'name', 'Dolby (Netherlands)'),
(61102, 51416, 'no_lang_code', 'name', 'Federal Mogul (United States)'),
(61103, 51417, 'no_lang_code', 'name', 'Continental Emitec (Germany)'),
(61104, 51418, 'no_lang_code', 'name', 'ConvergeOne (United States)'),
(61105, 51419, 'no_lang_code', 'name', 'Dorma (Germany)'),
(61106, 51420, 'no_lang_code', 'name', 'Endress+Hauser (Switzerland)'),
(61107, 51421, 'no_lang_code', 'name', 'Walter Reist Holding (Switzerland)'),
(61108, 51422, 'no_lang_code', 'name', 'Daewoo Electronics (South Korea)'),
(61109, 51423, 'no_lang_code', 'name', 'CJ CheilJedang (South Korea)'),
(61110, 51423, 'ko', 'name', 'ģ”Øģ œģ“ģ œģ¼ģ œė‹¹ ģ£¼ģ‹ķšŒģ‚¬'),
(61111, 51424, 'no_lang_code', 'name', 'MaxLinear (United States)'),
(61112, 51425, 'no_lang_code', 'name', 'Gretsch-Unitas (France)'),
(61113, 51426, 'no_lang_code', 'name', 'Daiichi Kogyo Seiyaku (Japan)'),
(61114, 51426, 'ja', 'name', 'ē¬¬äø€å·„ę„­č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(61115, 51427, 'no_lang_code', 'name', 'Claas (Germany)'),
(61116, 51428, 'no_lang_code', 'name', 'DrƤxlmaier (Germany)'),
(61117, 51429, 'no_lang_code', 'name', 'Eppendorf (Germany)'),
(61118, 51430, 'no_lang_code', 'name', 'Daicel (Japan)'),
(61119, 51430, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ć‚»ćƒ«'),
(61120, 51431, 'no_lang_code', 'name', 'Ferro (United States)'),
(61121, 51432, 'no_lang_code', 'name', 'Prysmian Group (Netherlands)'),
(61122, 51433, 'no_lang_code', 'name', 'Clariant (United Kingdom)'),
(61123, 51434, 'no_lang_code', 'name', 'Erbe Elektromedizin (Germany)'),
(61124, 51435, 'no_lang_code', 'name', 'Daido Steel (Japan)'),
(61125, 51435, 'ja', 'name', 'å¤§åŒē‰¹ę®Šé‹¼'),
(61126, 51436, 'no_lang_code', 'name', 'Doosan (United States)'),
(61127, 51437, 'no_lang_code', 'name', 'Goodyear (United Kingdom)'),
(61128, 51438, 'no_lang_code', 'name', 'Fischer (Germany)'),
(61129, 51439, 'no_lang_code', 'name', 'Georg Fischer (Switzerland)'),
(61130, 51440, 'no_lang_code', 'name', 'Novasep (Germany)'),
(61131, 51441, 'no_lang_code', 'name', 'Groz Beckert (Germany)'),
(61132, 51442, 'no_lang_code', 'name', 'Fives (France)'),
(61133, 51443, 'no_lang_code', 'name', 'DyStar (Germany)'),
(61134, 51444, 'no_lang_code', 'name', 'Evoqua Water Technologies (United States)'),
(61135, 51445, 'no_lang_code', 'name', 'Flex (United States)'),
(61136, 51446, 'no_lang_code', 'name', 'E Ink (United States)'),
(61137, 51447, 'no_lang_code', 'name', 'GS Yuasa (Japan)'),
(61138, 51447, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ć‚Øć‚¹ćƒ»ćƒ¦ć‚¢ć‚µ ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(61139, 51448, 'no_lang_code', 'name', 'Futaba (Japan)'),
(61140, 51448, 'ja', 'name', 'åŒč‘‰é›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(61141, 51449, 'no_lang_code', 'name', 'Extreme Networks (United States)'),
(61142, 51450, 'no_lang_code', 'name', 'GC Corporation (Japan)'),
(61143, 51451, 'no_lang_code', 'name', 'TechnipFMC (United States)'),
(61144, 51452, 'no_lang_code', 'name', 'Hosiden (Japan)'),
(61145, 51452, 'ja', 'name', 'ćƒ›ć‚·ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(61146, 51453, 'no_lang_code', 'name', 'NestlƩ (France)'),
(61147, 51454, 'no_lang_code', 'name', 'Focke & Co (Germany)'),
(61148, 51455, 'no_lang_code', 'name', 'Haier (United States)'),
(61149, 51456, 'no_lang_code', 'name', 'Ford Motor Company (France)'),
(61150, 51457, 'no_lang_code', 'name', 'Gates (United States)'),
(61151, 51458, 'no_lang_code', 'name', 'FormFactor (United States)'),
(61152, 51459, 'no_lang_code', 'name', 'Amec Foster Wheeler (United States)'),
(61153, 51460, 'no_lang_code', 'name', 'Huf Hülsbeck & Fürst (Germany)'),
(61154, 51461, 'no_lang_code', 'name', 'Visteon (South Korea)'),
(61155, 51462, 'no_lang_code', 'name', 'Oras (Germany)'),
(61156, 51463, 'no_lang_code', 'name', 'IAC Group (United States)'),
(61157, 51464, 'no_lang_code', 'name', 'Hunter Douglas (United States)'),
(61158, 51465, 'no_lang_code', 'name', 'Hunter Douglas (Netherlands)'),
(61159, 51466, 'no_lang_code', 'name', 'Invacare (United States)'),
(61160, 51467, 'no_lang_code', 'name', 'Hartmann Group (Germany)'),
(61161, 51468, 'no_lang_code', 'name', 'Heckler and Koch (Germany)'),
(61162, 51469, 'no_lang_code', 'name', 'EMS (Switzerland)'),
(61163, 51470, 'no_lang_code', 'name', 'Getrag (Germany)'),
(61164, 51471, 'no_lang_code', 'name', 'Koch Industries (Switzerland)'),
(61165, 51472, 'no_lang_code', 'name', 'Mitsui Chemicals (Germany)'),
(61166, 51473, 'no_lang_code', 'name', 'Geze (Germany)'),
(61167, 51474, 'no_lang_code', 'name', 'Iscar (Israel)'),
(61168, 51475, 'no_lang_code', 'name', 'Fujikin (Japan)'),
(61169, 51476, 'no_lang_code', 'name', 'Masco (Germany)'),
(61170, 51477, 'no_lang_code', 'name', 'Ifm electronic (Germany)'),
(61171, 51478, 'no_lang_code', 'name', 'Happich (Germany)'),
(61172, 51479, 'no_lang_code', 'name', 'Ishida Seisakusho (Japan)'),
(61173, 51479, 'ja', 'name', 'ēŸ³ē”°č£½ä½œę‰€'),
(61174, 51480, 'no_lang_code', 'name', 'Givaudan (Switzerland)'),
(61175, 51481, 'no_lang_code', 'name', 'Hettich (Germany)'),
(61176, 51482, 'no_lang_code', 'name', 'Kanzaki (Japan)'),
(61177, 51483, 'no_lang_code', 'name', 'Hewlett-Packard (Netherlands)'),
(61178, 51484, 'no_lang_code', 'name', 'Western Digital (Japan)'),
(61179, 51485, 'no_lang_code', 'name', 'Kathrein (Germany)'),
(61180, 51486, 'no_lang_code', 'name', 'Huisman (Netherlands)'),
(61181, 51487, 'no_lang_code', 'name', 'Imerys (United Kingdom)'),
(61182, 51488, 'no_lang_code', 'name', 'Metalsa (Germany)'),
(61183, 51489, 'no_lang_code', 'name', 'Kayaba Industry (Japan)'),
(61184, 51489, 'ja', 'name', 'ć‚«ćƒ¤ćƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(61185, 51490, 'no_lang_code', 'name', 'Hirose Electric (Japan)'),
(61186, 51490, 'ja', 'name', 'ćƒ’ćƒ­ć‚»é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(61187, 51491, 'no_lang_code', 'name', 'Hisamitsu Pharmaceutical (Japan)'),
(61188, 51491, 'ja', 'name', 'ä¹…å…‰č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(61189, 51492, 'no_lang_code', 'name', 'JST Mfg(Japan)'),
(61190, 51493, 'no_lang_code', 'name', 'Keihin (Japan)'),
(61191, 51493, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚±ćƒ¼ćƒ’ćƒ³'),
(61192, 51494, 'no_lang_code', 'name', 'Indena (Italy)'),
(61193, 51495, 'no_lang_code', 'name', 'Hitachi (United States)'),
(61194, 51496, 'no_lang_code', 'name', 'Japan Steel Works (Japan)'),
(61195, 51496, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—„ęœ¬č£½é‹¼ę‰€'),
(61196, 51497, 'no_lang_code', 'name', 'W. L. Gore & Associates (Germany)'),
(61197, 51498, 'no_lang_code', 'name', 'Goss (United States)'),
(61198, 51499, 'no_lang_code', 'name', 'Infineon Technologies (United States)'),
(61199, 51500, 'no_lang_code', 'name', 'Plastic Omnium (Belgium)'),
(61200, 51501, 'no_lang_code', 'name', 'JNC (Japan)'),
(61201, 51502, 'no_lang_code', 'name', 'Newell Brands (United States)'),
(61202, 51503, 'no_lang_code', 'name', 'Kiekert (Germany)'),
(61203, 51504, 'no_lang_code', 'name', 'Johnson Electric (Switzerland)'),
(61204, 51505, 'no_lang_code', 'name', 'Muller Martini (Switzerland)'),
(61205, 51506, 'no_lang_code', 'name', 'Grieshaber (Germany)'),
(61206, 51507, 'no_lang_code', 'name', 'Joled (Japan)'),
(61207, 51508, 'no_lang_code', 'name', 'Bucher Industries (France)'),
(61208, 51509, 'no_lang_code', 'name', 'Kobelco Construction Machinery (Japan)'),
(61209, 51510, 'ja', 'name', 'JUKIę Ŗå¼ä¼šē¤¾'),
(61210, 51510, 'no_lang_code', 'name', 'Juki (Japan)'),
(61211, 51511, 'no_lang_code', 'name', 'Kurita Water Industries (Japan)'),
(61212, 51511, 'ja', 'name', 'ę —ē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(61213, 51512, 'no_lang_code', 'name', 'Koenig & Bauer (Germany)'),
(61214, 51513, 'no_lang_code', 'name', 'Grohe (Germany)'),
(61215, 51514, 'no_lang_code', 'name', 'Jungheinrich (Germany)'),
(61216, 51515, 'no_lang_code', 'name', 'KƤrcher (Germany)'),
(61217, 51516, 'no_lang_code', 'name', 'Kyorin Holdings (Japan)'),
(61218, 51517, 'no_lang_code', 'name', 'Kolon Industries (South Korea)'),
(61219, 51518, 'no_lang_code', 'name', 'Konami (Japan)'),
(61220, 51518, 'ja', 'name', 'ć‚³ćƒŠćƒŸćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(61221, 51519, 'no_lang_code', 'name', 'LTS Lohmann Therapie-Systeme (Germany)'),
(61222, 51520, 'no_lang_code', 'name', 'KaVo Dental (Germany)'),
(61223, 51521, 'no_lang_code', 'name', 'Leggett and Platt (United States)'),
(61224, 51522, 'no_lang_code', 'name', 'Kudelski (Switzerland)'),
(61225, 51523, 'no_lang_code', 'name', 'Microsoft (Finland)'),
(61226, 51524, 'no_lang_code', 'name', 'Laitram (United States)'),
(61227, 51525, 'no_lang_code', 'name', 'National Oilwell Varco (United States)'),
(61228, 51526, 'no_lang_code', 'name', 'LVMH (France)'),
(61229, 51527, 'no_lang_code', 'name', 'Ingredion (United States)'),
(61230, 51528, 'no_lang_code', 'name', 'Lely (Netherlands)');
INSERT INTO `ror_settings` VALUES
(61231, 51529, 'en', 'name', 'National Research Development Corporation'),
(61232, 51530, 'no_lang_code', 'name', 'Techtronic Industries (United States)'),
(61233, 51531, 'no_lang_code', 'name', 'Kostal (Germany)'),
(61234, 51532, 'no_lang_code', 'name', 'MagnaChip (South Korea)'),
(61235, 51533, 'no_lang_code', 'name', 'Lear (United States)'),
(61236, 51534, 'no_lang_code', 'name', 'Mannesmann (Germany)'),
(61237, 51535, 'no_lang_code', 'name', 'Navistar International (United States)'),
(61238, 51536, 'no_lang_code', 'name', 'Mitel (Canada)'),
(61239, 51537, 'no_lang_code', 'name', 'Danaher (Germany)'),
(61240, 51538, 'no_lang_code', 'name', 'NCR (United States)'),
(61241, 51539, 'no_lang_code', 'name', 'Mitsuba (Japan)'),
(61242, 51539, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŸćƒ„ćƒ'),
(61243, 51540, 'no_lang_code', 'name', 'Leifheit (Germany)'),
(61244, 51541, 'no_lang_code', 'name', 'Baader Food Processing Machinery (Germany)'),
(61245, 51542, 'no_lang_code', 'name', 'Noritsu (Japan)'),
(61246, 51542, 'ja', 'name', 'ćƒŽćƒ¼ćƒŖćƒ„é‹¼ę©Ÿę Ŗå¼ä¼šē¤¾'),
(61247, 51543, 'no_lang_code', 'name', 'Neoperl (Germany)'),
(61248, 51544, 'no_lang_code', 'name', 'WiLAN (United States)'),
(61249, 51545, 'no_lang_code', 'name', 'Mitsubishi Pencil (Japan)'),
(61250, 51545, 'ja', 'name', 'äø‰č±é‰›ē­†ę Ŗå¼ä¼šē¤¾'),
(61251, 51546, 'no_lang_code', 'name', 'Quadient (France)'),
(61252, 51547, 'no_lang_code', 'name', 'Mitsubishi Plastics (Japan)'),
(61253, 51547, 'ja', 'name', 'äø‰č±ęØ¹č„‚ę Ŗå¼ä¼šē¤¾'),
(61254, 51548, 'no_lang_code', 'name', 'Maschinenfabrik Reinhausen (Germany)'),
(61255, 51549, 'no_lang_code', 'name', 'Masco (United States)'),
(61256, 51550, 'no_lang_code', 'name', 'MAX Automation (Germany)'),
(61257, 51551, 'no_lang_code', 'name', 'Fortune Brands Home and Security (United States)'),
(61258, 51552, 'no_lang_code', 'name', 'Nihon Kohden (Japan)'),
(61259, 51552, 'ja', 'name', 'ę—„ęœ¬å…‰é›»å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(61260, 51553, 'no_lang_code', 'name', 'Nuctech (China)'),
(61261, 51553, 'zh', 'name', '威视肔份'),
(61262, 51554, 'no_lang_code', 'name', 'Licentia IT (Germany)'),
(61263, 51555, 'no_lang_code', 'name', 'Karl Mayer (Germany)'),
(61264, 51556, 'no_lang_code', 'name', 'Nippon Electric Glass (Japan)'),
(61265, 51556, 'ja', 'name', 'ę—„ęœ¬é›»ę°—ē”å­ę Ŗå¼ä¼šē¤¾'),
(61266, 51557, 'no_lang_code', 'name', 'Canon (Germany)'),
(61267, 51558, 'no_lang_code', 'name', 'Mƶlnlycke Health Care (Sweden)'),
(61268, 51559, 'no_lang_code', 'name', 'MediaTek (Singapore)'),
(61269, 51560, 'no_lang_code', 'name', 'Milacron (Canada)'),
(61270, 51561, 'no_lang_code', 'name', 'Molins (United Kingdom)'),
(61271, 51562, 'no_lang_code', 'name', 'Meidensha (Japan)'),
(61272, 51562, 'ja', 'name', 'ę˜Žé›»čˆŽę Ŗå¼ä¼šē¤¾'),
(61273, 51563, 'no_lang_code', 'name', 'Littelfuse (United States)'),
(61274, 51564, 'no_lang_code', 'name', 'Momentive (United States)'),
(61275, 51565, 'no_lang_code', 'name', 'Nippon Soda (Japan)'),
(61276, 51565, 'ja', 'name', 'ę—„ęœ¬ę›¹é”ę Ŗå¼ä¼šē¤¾'),
(61277, 51566, 'no_lang_code', 'name', 'Menicon (Japan)'),
(61278, 51567, 'no_lang_code', 'name', 'Logitech (Switzerland)'),
(61279, 51568, 'no_lang_code', 'name', 'Omya (Switzerland)'),
(61280, 51569, 'no_lang_code', 'name', 'Open Invention Network (United States)'),
(61281, 51570, 'no_lang_code', 'name', 'OpenText (Luxembourg)'),
(61282, 51571, 'no_lang_code', 'name', 'Moulinex (France)'),
(61283, 51572, 'no_lang_code', 'name', 'Nisshinbo Holdings (Japan)'),
(61284, 51572, 'ja', 'name', 'ę—„ęø…ē“”ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(61285, 51573, 'no_lang_code', 'name', 'Osaka Gas (Japan)'),
(61286, 51573, 'ja', 'name', 'å¤§é˜Ŗē“¦ę–Æę Ŗå¼ä¼šē¤¾'),
(61287, 51574, 'no_lang_code', 'name', 'Belden (United States)'),
(61288, 51575, 'no_lang_code', 'name', 'Rosenberger (Germany)'),
(61289, 51576, 'no_lang_code', 'name', 'Paul Wurth (Luxembourg)'),
(61290, 51577, 'no_lang_code', 'name', 'Roto Frank (Germany)'),
(61291, 51578, 'no_lang_code', 'name', 'Valhi (United States)'),
(61292, 51579, 'no_lang_code', 'name', 'PayPal (United States)'),
(61293, 51580, 'no_lang_code', 'name', 'NLT Technologies (Japan)'),
(61294, 51581, 'no_lang_code', 'name', 'Preh (Germany)'),
(61295, 51582, 'no_lang_code', 'name', 'TiVo (United States)'),
(61296, 51583, 'no_lang_code', 'name', 'Primetals Technologies (Austria)'),
(61297, 51584, 'no_lang_code', 'name', 'Fabio Perini (Italy)'),
(61298, 51585, 'no_lang_code', 'name', 'Owens-Illinois (United States)'),
(61299, 51586, 'no_lang_code', 'name', 'Rütgers (Germany)'),
(61300, 51587, 'no_lang_code', 'name', 'ProMOS Technologies (Taiwan)'),
(61301, 51588, 'no_lang_code', 'name', 'Perstorp (Sweden)'),
(61302, 51589, 'no_lang_code', 'name', 'Owens Corning (United States)'),
(61303, 51590, 'fr', 'name', 'Groupe SEB'),
(61304, 51591, 'no_lang_code', 'name', 'Sacmi (Italy)'),
(61305, 51592, 'no_lang_code', 'name', 'Philip Morris International (Switzerland)'),
(61306, 51593, 'no_lang_code', 'name', 'Singer (United States)'),
(61307, 51594, 'no_lang_code', 'name', 'Rational (Germany)'),
(61308, 51595, 'no_lang_code', 'name', 'Philips (Sweden)'),
(61309, 51596, 'no_lang_code', 'name', 'Sennheiser (Germany)'),
(61310, 51597, 'no_lang_code', 'name', 'Sivantos (Singapore)'),
(61311, 51598, 'no_lang_code', 'name', 'Reckitt Benckiser (United States)'),
(61312, 51599, 'no_lang_code', 'name', 'Reckitt Benckiser (Netherlands)'),
(61313, 51600, 'no_lang_code', 'name', 'Seoul Semiconductor (South Korea)'),
(61314, 51601, 'no_lang_code', 'name', 'Oostrotex (Belgium)'),
(61315, 51602, 'no_lang_code', 'name', 'SEW Eurodrive (Germany)'),
(61316, 51603, 'no_lang_code', 'name', 'Rehau (Germany)'),
(61317, 51604, 'no_lang_code', 'name', 'Rehrig Pacific (United States)'),
(61318, 51605, 'no_lang_code', 'name', 'Skis Rossignol (France)'),
(61319, 51606, 'no_lang_code', 'name', 'Sandvik (Finland)'),
(61320, 51607, 'no_lang_code', 'name', 'Research Corporation Technologies (United States)'),
(61321, 51608, 'no_lang_code', 'name', 'Smiths Group (United States)'),
(61322, 51609, 'no_lang_code', 'name', 'Sherwin Williams (United States)'),
(61323, 51610, 'no_lang_code', 'name', 'Sherwood Services (United States)'),
(61324, 51611, 'no_lang_code', 'name', 'Plasser and Theurer (Austria)'),
(61325, 51612, 'no_lang_code', 'name', 'Shima Seiki (Japan)'),
(61326, 51612, 'ja', 'name', 'å³¶ē²¾ę©Ÿč£½ä½œę‰€'),
(61327, 51613, 'no_lang_code', 'name', 'Jacobs Douwe Egberts (Netherlands)'),
(61328, 51614, 'no_lang_code', 'name', 'Plastipak Holdings (United States)'),
(61329, 51615, 'no_lang_code', 'name', 'Socionext (Japan)'),
(61330, 51615, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚½ć‚·ć‚Ŗćƒć‚Æć‚¹ćƒˆ'),
(61331, 51616, 'no_lang_code', 'name', 'Shop Vac (United States)'),
(61332, 51617, 'no_lang_code', 'name', 'Showa Corporation'),
(61333, 51617, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ćƒ§ćƒ¼ćƒÆ'),
(61334, 51618, 'no_lang_code', 'name', 'Sicpa (Switzerland)'),
(61335, 51619, 'no_lang_code', 'name', 'Rite-Hite (United States)'),
(61336, 51620, 'no_lang_code', 'name', 'Sidel (France)'),
(61337, 51621, 'no_lang_code', 'name', 'Rittal (Germany)'),
(61338, 51622, 'no_lang_code', 'name', 'Somfy (France)'),
(61339, 51623, 'no_lang_code', 'name', 'Siegenia (Germany)'),
(61340, 51624, 'no_lang_code', 'name', 'Sonoco (United States)'),
(61341, 51625, 'no_lang_code', 'name', 'Pohang Iron and Steel (South Korea)'),
(61342, 51625, 'ko', 'name', 'ķ¬ķ•­ģ¢…ķ•©ģ œģ²  ģ£¼ģ‹ķšŒģ‚¬'),
(61343, 51626, 'no_lang_code', 'name', 'Rockwool (Denmark)'),
(61344, 51627, 'no_lang_code', 'name', 'Southco (United States)'),
(61345, 51628, 'no_lang_code', 'name', 'Spectrum Brands (United States)'),
(61346, 51629, 'no_lang_code', 'name', 'Siemens (Singapore)'),
(61347, 51630, 'no_lang_code', 'name', 'Roehm (Germany)'),
(61348, 51631, 'no_lang_code', 'name', 'Siemens (Switzerland)'),
(61349, 51632, 'no_lang_code', 'name', 'Abbott (Sweden)'),
(61350, 51633, 'no_lang_code', 'name', 'Sunonwealth Electric Machine Industry (Taiwan)'),
(61351, 51634, 'no_lang_code', 'name', 'Sig Holding (Switzerland)'),
(61352, 51634, 'it', 'name', 'Societa Industriale Svizzera'),
(61353, 51634, 'fr', 'name', 'SociƩtƩ Industrielle Suisse'),
(61354, 51635, 'no_lang_code', 'name', 'Stabilus (Germany)'),
(61355, 51636, 'no_lang_code', 'name', 'Teradyne (United States)'),
(61356, 51637, 'no_lang_code', 'name', 'Total (United States)'),
(61357, 51638, 'no_lang_code', 'name', 'Maire Tecnimont (Netherlands)'),
(61358, 51639, 'no_lang_code', 'name', 'United States Gypsum (United States)'),
(61359, 51640, 'no_lang_code', 'name', 'Toyo Seikan (Japan)'),
(61360, 51640, 'ja', 'name', 'ę±ę“‹č£½ē½ć‚°ćƒ«ćƒ¼ćƒ—ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(61361, 51641, 'no_lang_code', 'name', 'Synaptics (United States)'),
(61362, 51642, 'no_lang_code', 'name', 'Unitika (Japan)'),
(61363, 51642, 'ja', 'name', 'ćƒ¦ćƒ‹ćƒć‚«ę Ŗå¼ä¼šē¤¾'),
(61364, 51643, 'no_lang_code', 'name', 'Universal Electronics (United States)'),
(61365, 51644, 'no_lang_code', 'name', 'Starkey Hearing Technologies (United States)'),
(61366, 51645, 'no_lang_code', 'name', 'Texas Instruments (Germany)'),
(61367, 51646, 'no_lang_code', 'name', 'T-Mobile (United States)'),
(61368, 51647, 'no_lang_code', 'name', 'Uponor (Sweden)'),
(61369, 51648, 'no_lang_code', 'name', 'Tachi S (Japan)'),
(61370, 51649, 'no_lang_code', 'name', 'THK (Japan)'),
(61371, 51649, 'ja', 'name', 'ćƒ†ć‚£ć‚Øćƒć‚±ćƒ¼'),
(61372, 51650, 'no_lang_code', 'name', 'Taiwan Semiconductor Manufacturing Company (United States)'),
(61373, 51651, 'no_lang_code', 'name', 'Tracto-Technik (Germany)'),
(61374, 51652, 'no_lang_code', 'name', 'Trend Micro (Japan)'),
(61375, 51652, 'ja', 'name', 'ćƒˆćƒ¬ćƒ³ćƒ‰ćƒžć‚¤ć‚Æćƒ­ę Ŗå¼ä¼šē¤¾'),
(61376, 51653, 'no_lang_code', 'name', 'Usui (Japan)'),
(61377, 51654, 'no_lang_code', 'name', 'Stiebel Eltron (Germany)'),
(61378, 51655, 'no_lang_code', 'name', 'Kion Group (Germany)'),
(61379, 51656, 'no_lang_code', 'name', 'Technicolor (United States)'),
(61380, 51657, 'no_lang_code', 'name', 'Tanaka Holdings (Japan)'),
(61381, 51657, 'ja', 'name', 'ē”°äø­č²“é‡‘å±žć‚°ćƒ«ćƒ¼ćƒ—'),
(61382, 51658, 'no_lang_code', 'name', 'Truetzschler (Germany)'),
(61383, 51658, 'de', 'name', 'Trützschler'),
(61384, 51659, 'no_lang_code', 'name', 'Tanita (Japan)'),
(61385, 51659, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æćƒ‹ć‚æ'),
(61386, 51660, 'no_lang_code', 'name', 'Strix (Isle of Man)'),
(61387, 51661, 'no_lang_code', 'name', 'TS Tech (Japan)'),
(61388, 51662, 'no_lang_code', 'name', 'Valmet Automotive (Finland)'),
(61389, 51663, 'no_lang_code', 'name', 'Sumitomo Osaka Cement (Japan)'),
(61390, 51663, 'ja', 'name', 'ä½å‹å¤§é˜Ŗć‚»ćƒ”ćƒ³ćƒˆ'),
(61391, 51664, 'no_lang_code', 'name', 'Timex (United States)'),
(61392, 51665, 'no_lang_code', 'name', 'Tecumseh Products (United States)'),
(61393, 51666, 'no_lang_code', 'name', 'Comtech Telecommunications (United States)'),
(61394, 51667, 'no_lang_code', 'name', 'Valspar (United States)'),
(61395, 51668, 'no_lang_code', 'name', 'Toda Kogyo (Japan)'),
(61396, 51668, 'ja', 'name', 'ęˆøē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(61397, 51669, 'no_lang_code', 'name', 'Sun Chemical (United States)'),
(61398, 51670, 'no_lang_code', 'name', 'TE Connectivity (Belgium)'),
(61399, 51671, 'no_lang_code', 'name', 'Tokuyama (Japan)'),
(61400, 51671, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆć‚Æćƒ¤ćƒž'),
(61401, 51672, 'no_lang_code', 'name', 'Viessmann (Germany)'),
(61402, 51673, 'no_lang_code', 'name', 'VDO (Germany)'),
(61403, 51674, 'no_lang_code', 'name', 'VKR Holding (Denmark)'),
(61404, 51675, 'no_lang_code', 'name', 'Veritas (United States)'),
(61405, 51676, 'no_lang_code', 'name', 'Tomy (Japan)'),
(61406, 51676, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚«ćƒ©ćƒˆćƒŸćƒ¼'),
(61407, 51677, 'no_lang_code', 'name', 'Toro (United States)'),
(61408, 51678, 'no_lang_code', 'name', 'Victaulic (United States)'),
(61409, 51679, 'no_lang_code', 'name', 'Wabtec (United States)'),
(61410, 51680, 'no_lang_code', 'name', 'Wabco (Germany)'),
(61411, 51681, 'no_lang_code', 'name', 'Tenneco (United States)'),
(61412, 51682, 'no_lang_code', 'name', 'Wacom (Japan)'),
(61413, 51682, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒÆć‚³ćƒ '),
(61414, 51683, 'no_lang_code', 'name', 'Teradata (United States)'),
(61415, 51684, 'no_lang_code', 'name', 'United Parcel Service (United States)'),
(61416, 51685, 'no_lang_code', 'name', 'Wonderland Nurserygoods (Taiwan)'),
(61417, 51686, 'no_lang_code', 'name', 'Whirlpool (Brazil)'),
(61418, 51687, 'no_lang_code', 'name', 'Memjet (Ireland)'),
(61419, 51688, 'no_lang_code', 'name', 'Walker Digital (United States)'),
(61420, 51689, 'no_lang_code', 'name', 'WiLAN (Canada)'),
(61421, 51690, 'no_lang_code', 'name', 'Microsemi (Canada)'),
(61422, 51691, 'no_lang_code', 'name', 'Wanzl (Germany)'),
(61423, 51692, 'no_lang_code', 'name', 'Widex (Denmark)'),
(61424, 51693, 'en', 'name', 'Nahda College'),
(61425, 51693, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© النهضة'),
(61426, 51694, 'no_lang_code', 'name', 'Xiaomi (China)'),
(61427, 51695, 'no_lang_code', 'name', 'Windmoeller & Hoelscher (Germany)'),
(61428, 51696, 'no_lang_code', 'name', 'Wavin (Netherlands)'),
(61429, 51697, 'no_lang_code', 'name', 'Winkhaus (Germany)'),
(61430, 51698, 'no_lang_code', 'name', 'Webasto (Germany)'),
(61431, 51699, 'no_lang_code', 'name', 'Yakult Honsha (Japan)'),
(61432, 51699, 'ja', 'name', 'ćƒ¤ć‚Æćƒ«ćƒˆ'),
(61433, 51700, 'no_lang_code', 'name', 'Wintek (Taiwan)'),
(61434, 51701, 'no_lang_code', 'name', 'Weidmüller (Germany)'),
(61435, 51702, 'no_lang_code', 'name', 'Wirtgen (Germany)'),
(61436, 51703, 'no_lang_code', 'name', 'Yanmar (Japan)'),
(61437, 51703, 'ja', 'name', 'ćƒ¤ćƒ³ćƒžćƒ¼ę Ŗå¼ä¼šē¤¾'),
(61438, 51704, 'no_lang_code', 'name', 'Wolverine Worldwide (United States)'),
(61439, 51705, 'no_lang_code', 'name', 'Welch Allyn (United States)'),
(61440, 51706, 'en', 'name', 'Jon Bon Jovi Soul Foundation'),
(61441, 51707, 'en', 'name', 'Irene W. and C.B. Pennington Foundation'),
(61442, 51708, 'en', 'name', 'Inlaks Shivdasani Foundation'),
(61443, 51709, 'no_lang_code', 'name', 'Melaka Manipal Medical College'),
(61444, 51710, 'en', 'name', 'Irish Heart Foundation'),
(61445, 51711, 'en', 'name', 'Irish Hospice Foundation'),
(61446, 51712, 'en', 'name', 'Irish Youth Justice Service'),
(61447, 51713, 'en', 'name', 'Jeffrey Modell Foundation'),
(61448, 51714, 'en', 'name', 'Kinetic Foundation'),
(61449, 51715, 'no_lang_code', 'name', 'Jegs (United States)'),
(61450, 51716, 'en', 'name', 'Irvine Health Foundation'),
(61451, 51717, 'en', 'name', 'JEHT Foundation'),
(61452, 51718, 'en', 'name', 'Kato Foundation for Promotion of Science'),
(61453, 51718, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ åŠ č—¤ē§‘å­¦ęŒÆčˆˆä¼š'),
(61454, 51719, 'en', 'name', 'ISEF Foundation'),
(61455, 51720, 'en', 'name', 'Jerome Foundation'),
(61456, 51721, 'en', 'name', 'Jerusalem Fund'),
(61457, 51722, 'no_lang_code', 'name', 'Kaytee Avian Foundation'),
(61458, 51723, 'no_lang_code', 'name', 'AMEN'),
(61459, 51724, 'en', 'name', 'Jessie Ball duPont Fund'),
(61460, 51725, 'en', 'name', 'Keep A Breast Foundation'),
(61461, 51726, 'en', 'name', 'Kelley Foundation'),
(61462, 51727, 'en', 'name', 'Italian Scientists and Scholars in North America Foundation'),
(61463, 51728, 'en', 'name', 'Jacob Randall Foundation for Morquio'),
(61464, 51729, 'en', 'name', 'ITP Foundation'),
(61465, 51730, 'en', 'name', 'Jewish Community Foundation of Greater Kansas City'),
(61466, 51731, 'en', 'name', 'Kellner Family Foundation'),
(61467, 51732, 'en', 'name', 'Jacques and Gloria Gossweiler Foundation'),
(61468, 51732, 'de', 'name', 'Jacques und Gloria Gossweiler - Stiftung'),
(61469, 51733, 'en', 'name', 'Ittleson Foundation'),
(61470, 51734, 'en', 'name', 'Hyams Foundation'),
(61471, 51735, 'en', 'name', 'Kempe Foundation'),
(61472, 51735, 'sv', 'name', 'Kempestiftelserna'),
(61473, 51736, 'en', 'name', 'Jewish United Fund of Metropolitan Chicago'),
(61474, 51737, 'en', 'name', 'James H. Cummings Foundation'),
(61475, 51738, 'en', 'name', 'International Association of Sedimentologists'),
(61476, 51739, 'en', 'name', 'James H. Hall Eye Center'),
(61477, 51740, 'en', 'name', 'James Jones Literary Society'),
(61478, 51741, 'en', 'name', 'International Cancer Imaging Society'),
(61479, 51742, 'en', 'name', 'Jewish Women’s Foundation of Metropolitan Detroit'),
(61480, 51743, 'en', 'name', 'Kennedys Disease Association'),
(61481, 51744, 'no_lang_code', 'name', 'International Council of Ophthalmology'),
(61482, 51745, 'en', 'name', 'Jewish Women''s Foundation of New York'),
(61483, 51746, 'en', 'name', 'International Dragonfly Fund'),
(61484, 51747, 'en', 'name', 'JGW Patterson Foundation'),
(61485, 51748, 'en', 'name', 'James Pantyfedwen Foundation'),
(61486, 51749, 'en', 'name', 'International Education Research Foundation'),
(61487, 51750, 'en', 'name', 'Kent Richard Hofmann Foundation'),
(61488, 51751, 'en', 'name', 'International Essential Tremor Foundation'),
(61489, 51752, 'en', 'name', 'International Foundation for Electoral Systems'),
(61490, 51753, 'en', 'name', 'International Foundation for Ethical Research'),
(61491, 51754, 'en', 'name', 'Japan Cassis Association'),
(61492, 51754, 'ja', 'name', 'ę—„ęœ¬ć‚«ć‚·ć‚¹å”ä¼š'),
(61493, 51755, 'en', 'name', 'Veterans of Foreign Wars'),
(61494, 51756, 'en', 'name', 'Japan Ecology Foundation'),
(61495, 51756, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒč²”å›£'),
(61496, 51757, 'en', 'name', 'International Foundation for Functional Gastrointestinal Disorders'),
(61497, 51758, 'en', 'name', 'Kettering Family Foundation'),
(61498, 51759, 'en', 'name', 'International Foundation for Research in Experimental Economics'),
(61499, 51760, 'en', 'name', 'Laidlaw Foundation'),
(61500, 51761, 'en', 'name', 'Japan Foundation for Aging and Health'),
(61501, 51761, 'ja', 'name', 'é«˜é½¢åŒ–ćØå„åŗ·ć®ćŸć‚ć®å›½éš›äŗ¤ęµåŸŗé‡‘'),
(61502, 51762, 'en', 'name', 'Jiren Charity Foundation'),
(61503, 51763, 'en', 'name', 'International Franchise Association'),
(61504, 51764, 'en', 'name', 'Japan Foundation for Applied Enzymology'),
(61505, 51764, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ęœ¬åæœē”Øé…µē“ å”ä¼š'),
(61506, 51765, 'en', 'name', 'JM Foundation'),
(61507, 51766, 'en', 'name', 'International Furnishings and Design Association'),
(61508, 51767, 'en', 'name', 'Japan Foundation London'),
(61509, 51768, 'en', 'name', 'Kidneeds'),
(61510, 51769, 'de', 'name', 'Joachim Herz Stiftung'),
(61511, 51770, 'en', 'name', 'International Game Developers Association Foundation'),
(61512, 51771, 'en', 'name', 'Joan Rothenberg Family Foundation'),
(61513, 51772, 'en', 'name', 'Kidney Foundation of Central Pennsylvania'),
(61514, 51773, 'no', 'name', 'Landbruks- og matdepartementet'),
(61515, 51773, 'en', 'name', 'Ministry of Agriculture and Food'),
(61516, 51774, 'en', 'name', 'Japan Foundation Manila'),
(61517, 51775, 'en', 'name', 'Landscape Alberta Nursery Trades Association'),
(61518, 51776, 'en', 'name', 'Lungs for Life'),
(61519, 51777, 'en', 'name', 'Japan Foundation Sydney'),
(61520, 51778, 'en', 'name', 'Landscape Architecture Foundation'),
(61521, 51779, 'en', 'name', 'Lupina Foundation'),
(61522, 51780, 'en', 'name', 'Joe Andruzzi Foundation'),
(61523, 51781, 'en', 'name', 'Landsteiner Foundation for Blood Transfusion Research'),
(61524, 51781, 'nl', 'name', 'Landsteiner Stichting voor Bloedtransfusieresearch'),
(61525, 51782, 'en', 'name', 'LankellyChase Foundation'),
(61526, 51783, 'en', 'name', 'Lyme Disease Association'),
(61527, 51784, 'en', 'name', 'Kilo Diabetes and Vascular Research Foundation'),
(61528, 51785, 'no_lang_code', 'name', 'Johnson Controls (Japan)'),
(61529, 51786, 'en', 'name', 'Japanese Society of Clinical Pharmacology and Therapeutics'),
(61530, 51787, 'en', 'name', 'Japan Securities Scholarship Foundation'),
(61531, 51787, 'ja', 'name', 'ę—„ęœ¬čØ¼åˆøå„Øå­¦č²”å›£'),
(61532, 51788, 'en', 'name', 'King Faisal Foundation'),
(61533, 51789, 'en', 'name', 'Lanzhou Science and Technology Bureau'),
(61534, 51789, 'zh', 'name', 'å…°å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(61535, 51790, 'en', 'name', 'Japan Society of Ultrasonics in Medicine'),
(61536, 51790, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č¶…éŸ³ę³¢åŒ»å­¦ä¼š'),
(61537, 51791, 'en', 'name', 'John E. Fogarty Foundation'),
(61538, 51792, 'en', 'name', 'Lymphoma Foundation'),
(61539, 51793, 'en', 'name', 'Japan North America Medical Exchange Foundation'),
(61540, 51793, 'ja', 'name', 'å›½éš›äŗ¤ęµåŸŗé‡‘ ę—„ē±³ć‚»ćƒ³ć‚æćƒ¼'),
(61541, 51794, 'en', 'name', 'Japan United States Friendship Commission'),
(61542, 51795, 'no_lang_code', 'name', 'Kinik (Taiwan)'),
(61543, 51796, 'en', 'name', 'Lynch Foundation'),
(61544, 51797, 'en', 'name', 'John F. Kennedy Presidential Library and Museum'),
(61545, 51798, 'en', 'name', 'Bradley Foundation'),
(61546, 51799, 'en', 'name', 'Japan Dental Association'),
(61547, 51799, 'ja', 'name', 'ę—„ęœ¬ę­Æē§‘åŒ»åø«ä¼š'),
(61548, 51800, 'en', 'name', 'Kinsman Foundation'),
(61549, 51801, 'no_lang_code', 'name', 'Lynn Chase Designs (United States)'),
(61550, 51802, 'en', 'name', 'John Merck Fund'),
(61551, 51803, 'en', 'name', 'Lynn Sage Cancer Research Foundation'),
(61552, 51804, 'da', 'name', 'Kirsten og Freddy Johansens Fond'),
(61553, 51805, 'da', 'name', 'Jascha Fonden'),
(61554, 51806, 'en', 'name', 'Mcnulty Foundation'),
(61555, 51807, 'en', 'name', 'Laura Moore Cunningham Foundation'),
(61556, 51808, 'en', 'name', 'Lynne Cohen Foundation'),
(61557, 51809, 'en', 'name', 'Law Foundation of Nova Scotia'),
(61558, 51810, 'en', 'name', 'Jawaharlal Nehru Memorial Fund'),
(61559, 51811, 'en', 'name', 'Patricia Cronin Foundation'),
(61560, 51812, 'en', 'name', 'John P. Murphy Foundation'),
(61561, 51813, 'en', 'name', 'Lawrence Foundation'),
(61562, 51814, 'en', 'name', 'John R. Oishei Foundation'),
(61563, 51815, 'da', 'name', 'Aarhus Stadsarkiv'),
(61564, 51816, 'no_lang_code', 'name', 'Blue Planet Innovation (Denmark)'),
(61565, 51817, 'no_lang_code', 'name', 'Bonus'),
(61566, 51818, 'en', 'name', 'Borean Innovation'),
(61567, 51819, 'no_lang_code', 'name', 'Danaher (Singapore)'),
(61568, 51820, 'no_lang_code', 'name', 'Candofilm (Denmark)'),
(61569, 51821, 'no_lang_code', 'name', 'Capnova (Denmark)'),
(61570, 51822, 'da', 'name', 'Selskabet for Skole- og Uddannelseshistorie'),
(61571, 51823, 'no_lang_code', 'name', 'Chilbal Film (Denmark)'),
(61572, 51824, 'da', 'name', 'Selskabet til Forskning i ArbejderbevƦgelsens Historie'),
(61573, 51824, 'no_lang_code', 'name', 'Sfah (Denmark)'),
(61574, 51825, 'no_lang_code', 'name', 'Kunstgreb (Denmark)'),
(61575, 51826, 'no_lang_code', 'name', 'Mitsubishi Paper Mills (Japan)'),
(61576, 51826, 'ja', 'name', 'äø‰č±č£½ē“™ę Ŗå¼ä¼šē¤¾'),
(61577, 51827, 'no_lang_code', 'name', 'Initiatives (Denmark)'),
(61578, 51828, 'en', 'name', 'Connect Denmark'),
(61579, 51829, 'en', 'name', 'Danish Cattle Research Centre'),
(61580, 51829, 'da', 'name', 'Danmarks KvƦgforskningscenter'),
(61581, 51830, 'en', 'name', 'Innovation Center Denmark'),
(61582, 51831, 'en', 'name', 'Innovation Center Denmark'),
(61583, 51832, 'en', 'name', 'Innovation Center Denmark'),
(61584, 51833, 'no_lang_code', 'name', 'Sorbisense (Denmark)'),
(61585, 51834, 'en', 'name', 'Innovation Center Denmark'),
(61586, 51835, 'no_lang_code', 'name', 'Labster (Denmark)'),
(61587, 51836, 'no_lang_code', 'name', 'ACCO Brands (United States)'),
(61588, 51837, 'en', 'name', 'Innovation Center Denmark'),
(61589, 51838, 'en', 'name', 'Innovation Center Denmark'),
(61590, 51839, 'no_lang_code', 'name', 'Damvad (Denmark)'),
(61591, 51840, 'da', 'name', 'Danmarks Radio'),
(61592, 51841, 'no_lang_code', 'name', 'Afa Jcdecaux (Denmark)'),
(61593, 51842, 'no_lang_code', 'name', 'JazzDanmark (Denmark)'),
(61594, 51843, 'da', 'name', 'Moesgaard Museum'),
(61595, 51844, 'da', 'name', 'Science Museerne'),
(61596, 51844, 'en', 'name', 'Science Museums'),
(61597, 51845, 'no_lang_code', 'name', 'Mortensen Film (Denmark)'),
(61598, 51846, 'da', 'name', 'Albertslund Kommune'),
(61599, 51847, 'no_lang_code', 'name', 'Alphafilm and Kommunikation (Denmark)'),
(61600, 51848, 'no_lang_code', 'name', 'STV Production (Denmark)'),
(61601, 51849, 'en', 'name', 'Danish Centre for Marine Research'),
(61602, 51850, 'da', 'name', 'Arktisk Institut'),
(61603, 51850, 'en', 'name', 'Danish Arctic Institute'),
(61604, 51851, 'da', 'name', 'Dansk Historisk FƦllesforening'),
(61605, 51852, 'no_lang_code', 'name', 'Monday Media (Denmark)'),
(61606, 51853, 'no_lang_code', 'name', 'Syddansk Innovation (Denmark)'),
(61607, 51854, 'da', 'name', 'Dansk SprognƦvn'),
(61608, 51855, 'da', 'name', 'Naturvidenskabernes Hus'),
(61609, 51856, 'en', 'name', 'Science Theatre'),
(61610, 51856, 'da', 'name', 'Videnskabsteatret'),
(61611, 51857, 'no_lang_code', 'name', 'Team Production (Denmark)'),
(61612, 51858, 'da', 'name', 'Ny Carlsberg Glyptotek'),
(61613, 51859, 'no_lang_code', 'name', 'Zebra Media (Denmark)'),
(61614, 51860, 'en', 'name', 'Macula Vision Research Foundation'),
(61615, 51861, 'da', 'name', 'Det GrĆønlandske Selskab'),
(61616, 51862, 'en', 'name', 'Macular Disease Foundation Australia'),
(61617, 51863, 'en', 'name', 'Danish Youth Association of Science'),
(61618, 51863, 'da', 'name', 'Ungdommens Naturvidenskabelige Forening'),
(61619, 51864, 'da', 'name', 'Universitets-JubilƦets Danske Samfund'),
(61620, 51865, 'en', 'name', 'Meath Foundation'),
(61621, 51866, 'no_lang_code', 'name', 'Paradis (Denmark)'),
(61622, 51867, 'en', 'name', 'Mebane Charitable Foundation'),
(61623, 51868, 'no_lang_code', 'name', 'Videnskab (Denmark)'),
(61624, 51869, 'no_lang_code', 'name', 'DK4'),
(61625, 51870, 'no_lang_code', 'name', 'Pre-Seed Innovation (Denmark)'),
(61626, 51871, 'en', 'name', 'Lawrence T. & Janet T. Dee Foundation'),
(61627, 51872, 'en', 'name', 'Lawson Foundation'),
(61628, 51873, 'en', 'name', 'Lea''s Foundation for Leukemia Research'),
(61629, 51874, 'en', 'name', 'European Peacebuilding Liaison Office'),
(61630, 51875, 'sv', 'name', 'Magnus Bergvalls Stiftelse'),
(61631, 51876, 'en', 'name', 'John Randolph Foundation'),
(61632, 51877, 'en', 'name', 'Express TV Production'),
(61633, 51878, 'en', 'name', 'John Rex Endowment'),
(61634, 51879, 'en', 'name', 'Malaysia Toray Science Foundation'),
(61635, 51880, 'en', 'name', 'Meghan Rose Bradley Foundation'),
(61636, 51881, 'en', 'name', 'John T. Reid Charitable Trusts'),
(61637, 51882, 'en', 'name', 'Kitty M. Perkins Foundation'),
(61638, 51883, 'en', 'name', 'Danish Dairy Research Foundation'),
(61639, 51884, 'en', 'name', 'John Thomas Schroeder Foundation'),
(61640, 51885, 'en', 'name', 'Malone Family Foundation'),
(61641, 51886, 'en', 'name', 'Legler Benbough Foundation'),
(61642, 51887, 'en', 'name', 'Mellam Family Foundation'),
(61643, 51888, 'en', 'name', 'Kiwanis Club of Rockford'),
(61644, 51889, 'en', 'name', 'John Tracy Clinic'),
(61645, 51890, 'no_lang_code', 'name', 'Klabzuba (United States)'),
(61646, 51891, 'en', 'name', 'Mama Mare Breast Cancer Foundation'),
(61647, 51892, 'en', 'name', 'Melville Charitable Trust'),
(61648, 51893, 'en', 'name', 'Klaus Tschira Foundation'),
(61649, 51894, 'de', 'name', 'Leibniz Publik'),
(61650, 51895, 'en', 'name', 'John Wayne Cancer Foundation'),
(61651, 51896, 'en', 'name', 'KLS Foundation'),
(61652, 51897, 'en', 'name', 'Manitoba Beekeepers'' Association'),
(61653, 51898, 'en', 'name', 'Johnson Family Foundation'),
(61654, 51899, 'en', 'name', 'Memorial Foundation for Jewish Culture'),
(61655, 51900, 'no_lang_code', 'name', 'Nexus (Italy)'),
(61656, 51901, 'en', 'name', 'Johnson Foundation'),
(61657, 51902, 'da', 'name', 'Knud og Dagny Gad Andresens Fond'),
(61658, 51903, 'en', 'name', 'Manitoba Medical Service Foundation'),
(61659, 51904, 'en', 'name', 'Kobayashi Foundation for Cancer Research'),
(61660, 51904, 'ja', 'name', 'å°ęž—ćŒć‚“ē ”ē©¶č²”å›£'),
(61661, 51905, 'en', 'name', 'Leo S. Guthman Fund'),
(61662, 51906, 'en', 'name', 'Kobayashi International Scholarship Foundation'),
(61663, 51906, 'ja', 'name', 'å°ęž—å›½éš›å„Øå­¦č²”å›£'),
(61664, 51907, 'en', 'name', 'Leon Levy Foundation'),
(61665, 51908, 'en', 'name', 'Mensa Education and Research Foundation'),
(61666, 51909, 'en', 'name', 'Jonathan Powell Hope Foundation'),
(61667, 51910, 'en', 'name', 'Mental Health Research UK'),
(61668, 51911, 'en', 'name', 'Leopold Schepp Foundation'),
(61669, 51912, 'en', 'name', 'Kobe College Corporation and Japan Education Exchange'),
(61670, 51913, 'en', 'name', 'Lester Fund'),
(61671, 51914, 'en', 'name', 'Manpei Suzuki Diabetes Foundation'),
(61672, 51915, 'en', 'name', 'Jim Joseph Foundation'),
(61673, 51916, 'en', 'name', 'Koby Mandell Foundation'),
(61674, 51917, 'en', 'name', 'Leukaemia and Blood Cancer New Zealand'),
(61675, 51918, 'en', 'name', 'Koch Cultural Trust'),
(61676, 51919, 'no_lang_code', 'name', 'Maple Syrup Urine Disease Family Support Group'),
(61677, 51920, 'en', 'name', 'UnityPoint Health Meriter'),
(61678, 51921, 'en', 'name', 'Koch Foundation'),
(61679, 51922, 'en', 'name', 'Joseph P. Kennedy Jr. Foundation'),
(61680, 51923, 'en', 'name', 'Marbrook Foundation'),
(61681, 51924, 'en', 'name', 'March of Dimes Canada'),
(61682, 51925, 'en', 'name', 'Joshua Frase Foundation'),
(61683, 51926, 'en', 'name', 'MetroWest Health Foundation'),
(61684, 51927, 'da', 'name', 'Kongeriget Danmarks Hesteforsikring'),
(61685, 51928, 'en', 'name', 'Meyer Foundation'),
(61686, 51929, 'en', 'name', 'Joshua Tree National Park Association'),
(61687, 51930, 'da', 'name', 'Lida og Oskar Nielsens Fond'),
(61688, 51931, 'en', 'name', 'Michael Reese Health Trust'),
(61689, 51932, 'en', 'name', 'Jovid Foundation'),
(61690, 51933, 'en', 'name', 'Margaret A. Cargill Philanthropies'),
(61691, 51934, 'en', 'name', 'Margaret Clark Morgan Foundation'),
(61692, 51935, 'en', 'name', 'Joyce Foundation'),
(61693, 51936, 'en', 'name', 'Margaret S. Mahler Child Development Foundation'),
(61694, 51937, 'en', 'name', 'Konrad Adenauer Foundation'),
(61695, 51937, 'de', 'name', 'Konrad-Adenauer-Stiftung'),
(61696, 51938, 'en', 'name', 'Michelson Prize and Grants'),
(61697, 51939, 'en', 'name', 'Marguerite Casey Foundation'),
(61698, 51940, 'en', 'name', 'Judith Rothschild Foundation'),
(61699, 51941, 'en', 'name', 'Microfinance Opportunities'),
(61700, 51942, 'en', 'name', 'Korea Foundation for Advanced Studies'),
(61701, 51943, 'sv', 'name', 'Marie-Claire Cronstedts Stiftelse'),
(61702, 51944, 'en', 'name', 'Marietta Community Foundation'),
(61703, 51945, 'en', 'name', 'Linnean Society of London'),
(61704, 51946, 'en', 'name', 'Marin Community Foundation'),
(61705, 51947, 'en', 'name', 'Community Foundation of Middlesex County'),
(61706, 51948, 'en', 'name', 'Marine Corps Warfighting Laboratory'),
(61707, 51949, 'en', 'name', 'Korea Foundation for International Healthcare'),
(61708, 51950, 'no_lang_code', 'name', 'Korea Gas Corporation (South Korea)'),
(61709, 51951, 'en', 'name', 'Juvenile Diabetes Research Foundation'),
(61710, 51952, 'en', 'name', 'Marion Community Foundation'),
(61711, 51953, 'en', 'name', 'Marion E. Kenworthy-Sarah H. Swift Foundation'),
(61712, 51954, 'en', 'name', 'Korea Institute of Sport Science'),
(61713, 51954, 'ko', 'name', 'ķ•œźµ­ģŠ¤ķ¬ģø ź°œė°œģ›'),
(61714, 51955, 'da', 'name', 'Kai Lange og Gunhild Kai Langes Fond'),
(61715, 51956, 'en', 'name', 'Migraine Research Foundation'),
(61716, 51957, 'en', 'name', 'Korean Academy of Medical Sciences'),
(61717, 51958, 'en', 'name', 'Little Giraffe Foundation'),
(61718, 51959, 'en', 'name', 'Kaibara Morikazu Medical Science Promotion Foundation'),
(61719, 51959, 'ja', 'name', 'ęµ·åŽŸē››å’ŒåŒ»å­¦ęŒÆčˆˆč²”å›£'),
(61720, 51960, 'no_lang_code', 'name', 'Kalliopeia Foundation'),
(61721, 51961, 'en', 'name', 'Live Love and Laugh Foundation'),
(61722, 51962, 'en', 'name', 'Korean American Scholarship Foundation'),
(61723, 51963, 'en', 'name', 'Mike Utley Foundation'),
(61724, 51964, 'en', 'name', 'Rivkin Center for Ovarian Cancer'),
(61725, 51965, 'en', 'name', 'Korean Dermatological Association'),
(61726, 51965, 'ko', 'name', 'ėŒ€ķ•œķ”¼ė¶€ź³¼ķ•™ķšŒ'),
(61727, 51966, 'en', 'name', 'Living Stones Foundation Charitable Trust'),
(61728, 51967, 'no_lang_code', 'name', 'Kamenori Foundation'),
(61729, 51967, 'ja', 'name', 'ć‹ć‚ć®ć‚Šč²”å›£'),
(61730, 51968, 'en', 'name', 'Milbank Foundation'),
(61731, 51969, 'en', 'name', 'Marubun Research Promotion Foundation'),
(61732, 51969, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ 丸文貔団'),
(61733, 51970, 'en', 'name', 'Liz Claiborne and Art Ortenberg Foundation'),
(61734, 51971, 'en', 'name', 'Mary E Bivins Foundation'),
(61735, 51972, 'en', 'name', 'Korean Society of Echocardiography'),
(61736, 51972, 'ko', 'name', 'ķ•œźµ­ģ‹¬ģ“ˆģŒķŒŒķ•™ķšŒ'),
(61737, 51973, 'en', 'name', 'Chapman Foundations'),
(61738, 51974, 'en', 'name', 'Milbank Memorial Fund'),
(61739, 51975, 'en', 'name', 'Kansas Masonic Foundation'),
(61740, 51976, 'en', 'name', 'Koret Foundation'),
(61741, 51977, 'en', 'name', 'Korle Bu Neuroscience Foundation'),
(61742, 51978, 'en', 'name', 'Milken Family Foundation'),
(61743, 51979, 'no_lang_code', 'name', 'Providence Service Corporation (United States)'),
(61744, 51980, 'en', 'name', 'Kortney Rose Foundation'),
(61745, 51981, 'en', 'name', 'Maryland Ornithological Society'),
(61746, 51982, 'en', 'name', 'London International Development Centre'),
(61747, 51983, 'en', 'name', 'Kappa Alpha Theta Foundation'),
(61748, 51984, 'en', 'name', 'Mind Science Foundation'),
(61749, 51985, 'en', 'name', 'Kowa Life Science Foundation'),
(61750, 51985, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ čˆˆå’Œē”Ÿå‘½ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(61751, 51986, 'en', 'name', 'Longview Foundation'),
(61752, 51987, 'en', 'name', 'Krembil Foundation'),
(61753, 51988, 'en', 'name', 'Karen Brown Scleroderma Foundation'),
(61754, 51989, 'en', 'name', 'Kresge Foundation'),
(61755, 51990, 'en', 'name', 'Ministerial Standing Committee on Scientific and Technological Cooperation of the Organization of Islamic Cooperation'),
(61756, 51991, 'en', 'name', 'Los Angeles Rubber Group'),
(61757, 51992, 'en', 'name', 'Always Dream Foundation'),
(61758, 51993, 'nl', 'name', 'Ministerie van Buitenlandse Zaken'),
(61759, 51993, 'en', 'name', 'Ministry of Foreign Affairs'),
(61760, 51994, 'da', 'name', 'Karen Elise Jensens Fond'),
(61761, 51995, 'en', 'name', 'Lotex Foundation'),
(61762, 51995, 'de', 'name', 'Lotex Stiftung'),
(61763, 51996, 'en', 'name', 'Masonic Foundation of Utah'),
(61764, 51997, 'it', 'name', 'Ministero dello Sviluppo Economico'),
(61765, 51997, 'en', 'name', 'Ministry of Economic Development'),
(61766, 51998, 'en', 'name', 'Karl Kirchgessner Foundation'),
(61767, 51999, 'en', 'name', 'Massage Therapy Foundation'),
(61768, 52000, 'en', 'name', 'Louis-Jeantet Foundation'),
(61769, 52001, 'de', 'name', 'Karl und Veronica Carstens-Stiftung'),
(61770, 52002, 'en', 'name', 'Lowe Syndrome Association'),
(61771, 52003, 'en', 'name', 'Kwanjeong Educational Foundation'),
(61772, 52004, 'en', 'name', 'Loyola Foundation'),
(61773, 52005, 'en', 'name', 'Lucas Foundation'),
(61774, 52006, 'en', 'name', 'Lucy Daniels Foundation'),
(61775, 52007, 'en', 'name', 'National Alopecia Areata Foundation'),
(61776, 52008, 'es', 'name', 'Navarra de Infraestructuras Locales'),
(61777, 52009, 'en', 'name', 'National Association of Chain Drug Stores'),
(61778, 52010, 'en', 'name', 'Ministry of Women and Child Development'),
(61779, 52011, 'en', 'name', 'Matthew Larson Foundation'),
(61780, 52012, 'en', 'name', 'NCMIC Foundation'),
(61781, 52013, 'en', 'name', 'Beyond Batten Disease Foundation'),
(61782, 52014, 'no_lang_code', 'name', 'Mauna Kea Technologies (United States)'),
(61783, 52015, 'en', 'name', 'Max Bell Foundation'),
(61784, 52016, 'en', 'name', 'Minnesota Colon and Rectal Foundation'),
(61785, 52017, 'en', 'name', 'Minnesota Lions Eye Bank'),
(61786, 52018, 'en', 'name', 'Minnesota Ovarian Cancer Alliance'),
(61787, 52019, 'en', 'name', 'Dutch Blood Transfusion Society'),
(61788, 52019, 'nl', 'name', 'Nederlandse Vereniging voor Bloedtransfusie'),
(61789, 52020, 'no_lang_code', 'name', 'AdminiTrust'),
(61790, 52021, 'nl', 'name', 'Nederlandse Vereniging voor Trombose en Hemostase'),
(61791, 52022, 'en', 'name', 'Mayday Fund'),
(61792, 52023, 'no_lang_code', 'name', 'Neelan Tiruchelvam Trust'),
(61793, 52024, 'en', 'name', 'National Centre for Advanced Studies in Humanities and Social Sciences'),
(61794, 52025, 'en', 'name', 'Northern California DX Foundation'),
(61795, 52026, 'en', 'name', 'Nephcure Foundation'),
(61796, 52027, 'en', 'name', 'McCarthy Family Foundation'),
(61797, 52028, 'en', 'name', 'Netherland-America Foundation'),
(61798, 52029, 'no_lang_code', 'name', 'Mitsubishi Corporation (United States)'),
(61799, 52030, 'en', 'name', 'McGraw Foundation'),
(61800, 52031, 'en', 'name', 'Netherlands Leprosy Relief'),
(61801, 52032, 'en', 'name', 'National Community Pharmacists Association'),
(61802, 52033, 'en', 'name', 'Mitte Foundation'),
(61803, 52034, 'en', 'name', 'Miyakawa Memorial Research Foundation'),
(61804, 52034, 'ja', 'name', 'å®®å·åŗšå­čØ˜åæµē ”ē©¶č²”å›£'),
(61805, 52035, 'en', 'name', 'SightLife'),
(61806, 52036, 'en', 'name', 'National Council for Tertiary Education'),
(61807, 52037, 'en', 'name', 'McGregor Foundation'),
(61808, 52038, 'en', 'name', 'Mclean Foundation'),
(61809, 52039, 'en', 'name', 'National Court Reporters Association'),
(61810, 52040, 'en', 'name', 'Northwest Minnesota Foundation'),
(61811, 52041, 'en', 'name', 'National Critical Care and Trauma Response Centre'),
(61812, 52042, 'en', 'name', 'McPherson County Community Foundation'),
(61813, 52043, 'en', 'name', 'Neuroscience Nursing Foundation'),
(61814, 52044, 'en', 'name', 'Northwest Osteopathic Medical Foundation'),
(61815, 52045, 'en', 'name', 'Molly Towell Perinatal Research Foundation'),
(61816, 52046, 'en', 'name', 'ME Association'),
(61817, 52047, 'en', 'name', 'Meadows Foundation'),
(61818, 52048, 'en', 'name', 'National Eczema Association'),
(61819, 52049, 'en', 'name', 'Nevada Department of Wildlife'),
(61820, 52050, 'en', 'name', 'National Endowment for Democracy'),
(61821, 52051, 'de', 'name', 'OPO-Stiftung'),
(61822, 52052, 'en', 'name', 'Moody Foundation'),
(61823, 52053, 'en', 'name', 'New England Biolabs Foundation'),
(61824, 52054, 'en', 'name', 'National Endowment for Financial Education'),
(61825, 52055, 'en', 'name', 'Morgan Family Foundation'),
(61826, 52056, 'en', 'name', 'New Hampshire Bar Foundation'),
(61827, 52057, 'en', 'name', 'Oprah''s Angel Network'),
(61828, 52058, 'no_lang_code', 'name', 'Northwestern Mutual Life Insurance (United States)'),
(61829, 52059, 'en', 'name', 'New Horizons Foundation'),
(61830, 52060, 'en', 'name', 'Moritani Scholarship Foundation'),
(61831, 52060, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗ å®ˆč°·č‚²č‹±ä¼š'),
(61832, 52061, 'en', 'name', 'National Foundation for Ectodermal Dysplasias'),
(61833, 52062, 'en', 'name', 'Or Yarok Association'),
(61834, 52062, 'he', 'name', 'אור ירוק'),
(61835, 52063, 'en', 'name', 'New India Foundation'),
(61836, 52064, 'en', 'name', 'Oral and Maxillofacial Surgery Foundation'),
(61837, 52065, 'en', 'name', 'Nova Scotia Research and Innovation Trust'),
(61838, 52066, 'en', 'name', 'Morris Stulsaft Foundation'),
(61839, 52067, 'en', 'name', 'Fund for the Environment & Urban Life'),
(61840, 52068, 'en', 'name', 'Noyce Foundation'),
(61841, 52069, 'en', 'name', 'Orange County Community Foundation'),
(61842, 52070, 'en', 'name', 'National Foundation for Medical Research and Innovation'),
(61843, 52071, 'en', 'name', 'Morton Cure Paralysis Fund'),
(61844, 52072, 'nl', 'name', 'Oranje Fonds'),
(61845, 52073, 'en', 'name', 'National Foundation for the Deaf'),
(61846, 52074, 'en', 'name', 'Nurture Foundation for Reproductive Research'),
(61847, 52075, 'en', 'name', 'Organic Farming Research Foundation'),
(61848, 52076, 'en', 'name', 'New York City Police Foundation'),
(61849, 52077, 'en', 'name', 'National Genealogical Society'),
(61850, 52078, 'en', 'name', 'Mount Zion Health Fund'),
(61851, 52079, 'en', 'name', 'New York Community Trust'),
(61852, 52080, 'en', 'name', 'Orthopaedic Research Society'),
(61853, 52081, 'en', 'name', 'Movember Foundation'),
(61854, 52082, 'no_lang_code', 'name', 'National Grid (United States)'),
(61855, 52083, 'en', 'name', 'New York Foundation'),
(61856, 52084, 'no_lang_code', 'name', 'CME Group (United States)'),
(61857, 52085, 'en', 'name', 'National Headache Foundation'),
(61858, 52086, 'en', 'name', 'New Zealand Breast Cancer Foundation'),
(61859, 52087, 'en', 'name', 'MPN Research Foundation'),
(61860, 52088, 'sv', 'name', 'O. E. och Edla Johanssons Vetenskapliga Stiftelse'),
(61861, 52089, 'en', 'name', 'Osteopathic Heritage Foundation'),
(61862, 52090, 'en', 'name', 'Mt. Pleasant Area Commuity Foundation'),
(61863, 52091, 'en', 'name', 'O. J. Noer Research Foundation'),
(61864, 52092, 'en', 'name', 'National Housing Endowment'),
(61865, 52093, 'en', 'name', 'Mucolipidosis IV Foundation'),
(61866, 52094, 'en', 'name', 'Osteosynthesis and Trauma Care Foundation'),
(61867, 52095, 'en', 'name', 'Obayashi Foundation'),
(61868, 52095, 'ja', 'name', 'å¤§ęž—č²”å›£'),
(61869, 52096, 'en', 'name', 'Otho S. A. Sprague Memorial Institute'),
(61870, 52097, 'en', 'name', 'Obici Healthcare Foundation'),
(61871, 52098, 'en', 'name', 'Multiple Sclerosis Foundation'),
(61872, 52099, 'en', 'name', 'National Infrastructure for Microbiological Resources'),
(61873, 52099, 'zh', 'name', 'å›½å®¶å¾®ē”Ÿē‰©čµ„ęŗåŸŗē”€č®¾ę–½'),
(61874, 52100, 'no_lang_code', 'name', 'Newmont Mining (United States)'),
(61875, 52101, 'en', 'name', 'Otto Bremer Trust'),
(61876, 52102, 'nl', 'name', 'ODAS Stichting'),
(61877, 52103, 'en', 'name', 'Ovarian Cancer Research Foundation'),
(61878, 52104, 'en', 'name', 'Musella Foundation For Brain Tumor Research and Information'),
(61879, 52105, 'en', 'name', 'National Institute of Public Cooperation and Child Development'),
(61880, 52106, 'en', 'name', 'Overseas Press Club Foundation'),
(61881, 52107, 'en', 'name', 'Museum of Vertebrate Zoology'),
(61882, 52108, 'no_lang_code', 'name', 'Oxalosis and Hyperoxaluria Foundation'),
(61883, 52109, 'en', 'name', 'Muskingum County Community Foundation'),
(61884, 52110, 'en', 'name', 'Oxford Optronix'),
(61885, 52111, 'en', 'name', 'Mustard Seed Foundation'),
(61886, 52112, 'en', 'name', 'Muttart Foundation'),
(61887, 52113, 'en', 'name', 'P.E.F. Israel Endowment Funds'),
(61888, 52114, 'en', 'name', 'PA Research Foundation'),
(61889, 52115, 'en', 'name', 'Myasthenia Gravis Foundation of America'),
(61890, 52116, 'en', 'name', 'Myelin Project'),
(61891, 52117, 'en', 'name', 'Pacific Pioneer Fund'),
(61892, 52118, 'en', 'name', 'Pacific Vision Foundation'),
(61893, 52119, 'en', 'name', 'Myer Foundation'),
(61894, 52120, 'en', 'name', 'Public Utilities Office'),
(61895, 52121, 'no_lang_code', 'name', 'Marquardt (Germany)'),
(61896, 52122, 'en', 'name', 'Nicholas and Elizabeth Slezak Super Center'),
(61897, 52123, 'en', 'name', 'Myocarditis Foundation'),
(61898, 52124, 'en', 'name', 'Nineveh Charitable Trust'),
(61899, 52125, 'en', 'name', 'Pain Relief Foundation'),
(61900, 52126, 'en', 'name', 'Myotonic Dystrophy Foundation'),
(61901, 52127, 'en', 'name', 'Ningbo Municipal Education Bureau'),
(61902, 52127, 'zh', 'name', '宁波市教育局'),
(61903, 52128, 'en', 'name', 'National Kidney Foundation of South Africa'),
(61904, 52129, 'no_lang_code', 'name', 'Nacey Maggioncalda Foundation'),
(61905, 52130, 'en', 'name', 'Palaeontological Association'),
(61906, 52131, 'en', 'name', 'NAMM Foundation'),
(61907, 52132, 'en', 'name', 'Pan-Mass Challenge'),
(61908, 52133, 'no_lang_code', 'name', 'Berry (India)'),
(61909, 52134, 'en', 'name', 'Nancy Lurie Marks Family Foundation'),
(61910, 52135, 'en', 'name', 'Nancy Owens Memorial Foundation'),
(61911, 52136, 'en', 'name', 'Office of the State Inspector General'),
(61912, 52137, 'en', 'name', 'National Organization for Hearing Research Foundation'),
(61913, 52138, 'en', 'name', 'Park Foundation'),
(61914, 52139, 'en', 'name', 'Park Nicollet Foundation'),
(61915, 52140, 'sv', 'name', 'Njurfonden'),
(61916, 52141, 'en', 'name', 'National Pork Producers Council'),
(61917, 52142, 'en', 'name', 'Noah Worcester Dermatological Society'),
(61918, 52143, 'en', 'name', 'Parker Foundation'),
(61919, 52144, 'no_lang_code', 'name', 'Nasdaq (United States)'),
(61920, 52145, 'en', 'name', 'National Sculpture Society'),
(61921, 52146, 'en', 'name', 'Parkes Foundation'),
(61922, 52147, 'en', 'name', 'NOK Foundation'),
(61923, 52148, 'en', 'name', 'NATA Research and Education Foundation'),
(61924, 52149, 'en', 'name', 'Parkinson Research Foundation'),
(61925, 52150, 'en', 'name', 'Nokia Foundation'),
(61926, 52151, 'en', 'name', 'Nathans Battle Foundation'),
(61927, 52152, 'en', 'name', 'Nomis Foundation'),
(61928, 52153, 'en', 'name', 'Parkinson''s Association of Ireland'),
(61929, 52154, 'en', 'name', 'Norcliffe Foundation'),
(61930, 52155, 'en', 'name', 'National Tay-Sachs and Allied Diseases Association'),
(61931, 52156, 'en', 'name', 'Nordic Culture Fund'),
(61932, 52157, 'en', 'name', 'Parkinson''s Australia'),
(61933, 52158, 'en', 'name', 'Parkinson''s Association'),
(61934, 52159, 'en', 'name', 'Petco Foundation'),
(61935, 52160, 'en', 'name', 'Parkinson''s NSW'),
(61936, 52161, 'en', 'name', 'Peter Michael Foundation'),
(61937, 52162, 'sv', 'name', 'Norrbacka Eugeniastiftelsen'),
(61938, 52163, 'en', 'name', 'Parkinson''s Queensland'),
(61939, 52164, 'en', 'name', 'Swedish Parkinson’s Disease Association'),
(61940, 52165, 'no', 'name', 'Norske Kvinners Sanitetsforening'),
(61941, 52165, 'en', 'name', 'Norwegian Womens Public Health Association'),
(61942, 52166, 'en', 'name', 'Petroleum Conservation Research Association'),
(61943, 52167, 'en', 'name', 'Connecticut Office of the Governor'),
(61944, 52168, 'sv', 'name', 'Petrus och Augusta Hedlunds Stiftelse'),
(61945, 52169, 'en', 'name', 'National Association of Television Program Executives Educational Foundation'),
(61946, 52170, 'en', 'name', 'North American Membrane Society'),
(61947, 52171, 'en', 'name', 'North American Menopause Society'),
(61948, 52172, 'en', 'name', 'Pasadena Child Health Foundation'),
(61949, 52173, 'no_lang_code', 'name', 'NATSO'),
(61950, 52174, 'en', 'name', 'North American Spine Society'),
(61951, 52175, 'en', 'name', 'Passano Foundation'),
(61952, 52176, 'en', 'name', 'Past Global Changes'),
(61953, 52177, 'en', 'name', 'North American Strawberry Growers Association'),
(61954, 52178, 'en', 'name', 'Ogawa Science and Technology Foundation'),
(61955, 52178, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å°å·ē§‘å­¦ęŠ€č”“č²”å›£'),
(61956, 52179, 'en', 'name', 'PDK International'),
(61957, 52180, 'en', 'name', 'Ohio Academy of Family Physicians'),
(61958, 52181, 'no_lang_code', 'name', 'Phi Gamma Delta'),
(61959, 52182, 'en', 'name', 'North Carolina GlaxoSmithKline Foundation'),
(61960, 52183, 'en', 'name', 'Phil Hardin Foundation'),
(61961, 52184, 'en', 'name', 'Philadelphia Foundation'),
(61962, 52185, 'en', 'name', 'Patron Saints Foundation'),
(61963, 52186, 'en', 'name', 'Philippine American Educational Foundation'),
(61964, 52187, 'en', 'name', 'Ralph C. Wilson, Jr. Foundation'),
(61965, 52188, 'en', 'name', 'North Carolina Pork Council'),
(61966, 52189, 'en', 'name', 'Ohio News Media Association'),
(61967, 52190, 'en', 'name', 'Paul & Carol David Foundation'),
(61968, 52191, 'en', 'name', 'Paul Hamlyn Foundation'),
(61969, 52192, 'en', 'name', 'Ralph M. Parsons Foundation'),
(61970, 52193, 'en', 'name', 'Okawa Foundation for Information and Telecommunications'),
(61971, 52193, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å¤§å·ęƒ…å ±é€šäæ”åŸŗé‡‘'),
(61972, 52194, 'en', 'name', 'North Dakota Community Foundation'),
(61973, 52195, 'no_lang_code', 'name', 'Perpetual (Australia)'),
(61974, 52196, 'en', 'name', 'Nitsch Foundation'),
(61975, 52197, 'en', 'name', 'Physiology Society of Southern Africa'),
(61976, 52198, 'en', 'name', 'North Valley Community Foundation'),
(61977, 52199, 'en', 'name', 'Peace Stone Foundation'),
(61978, 52200, 'no_lang_code', 'name', 'Ran Naor Institute'),
(61979, 52201, 'en', 'name', 'Physiotherapy New Zealand'),
(61980, 52202, 'en', 'name', 'Pediatric Brain Tumor Foundation'),
(61981, 52203, 'de', 'name', 'Oncosuisse'),
(61982, 52204, 'en', 'name', 'Horonobe Research Institute for the Subsurface Environment'),
(61983, 52205, 'en', 'name', 'Pediatric Cancer Research Foundation'),
(61984, 52206, 'no_lang_code', 'name', 'Penguin Random House (United States)'),
(61985, 52207, 'fr', 'name', 'Fondation Pierre Elliott Trudeau'),
(61986, 52207, 'en', 'name', 'Pierre Elliott Trudeau Foundation'),
(61987, 52208, 'en', 'name', 'One in Five Association'),
(61988, 52209, 'en', 'name', 'Pediatric Epilepsy Research Foundation'),
(61989, 52210, 'en', 'name', 'Pikes Peak Community Foundation'),
(61990, 52211, 'no_lang_code', 'name', 'OneBreath (United States)'),
(61991, 52212, 'en', 'name', 'Pediatric Infectious Diseases Society'),
(61992, 52213, 'en', 'name', 'OneSight'),
(61993, 52214, 'en', 'name', 'Pilot International'),
(61994, 52215, 'en', 'name', 'Raptor Research Foundation'),
(61995, 52216, 'en', 'name', 'Ontario Fruit and Vegetable Growers'' Association'),
(61996, 52217, 'en', 'name', 'Pinkerton Foundation'),
(61997, 52218, 'en', 'name', 'Ray Thomas Edwards Foundation'),
(61998, 52219, 'no_lang_code', 'name', 'Hua Yuan Group (China)'),
(61999, 52219, 'zh', 'name', 'åŽčæœé›†å›¢'),
(62000, 52220, 'en', 'name', 'Royal Literary Fund'),
(62001, 52221, 'en', 'name', 'Raymond Educational Foundation'),
(62002, 52222, 'en', 'name', 'Pitt Hopkins Research Foundation'),
(62003, 52223, 'en', 'name', 'Pittsburgh Child Guidance Foundation'),
(62004, 52224, 'en', 'name', 'Royal Project Foundation'),
(62005, 52224, 'th', 'name', 'ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ą¹‚ąø„ąø£ąø‡ąøąø²ąø£ąø«ąø„ąø§ąø‡'),
(62006, 52225, 'en', 'name', 'Ontario Institute for Regenerative Medicine'),
(62007, 52226, 'en', 'name', 'Pencil Foundation'),
(62008, 52227, 'en', 'name', 'Raymond J. and Mary C. Reisert Foundation'),
(62009, 52228, 'en', 'name', 'RSF Social Finance'),
(62010, 52229, 'en', 'name', 'Pittsburgh Emergency Medicine Foundation'),
(62011, 52230, 'en', 'name', 'Ontario Trillium Foundation'),
(62012, 52231, 'en', 'name', 'Pendleton and Elisabeth Carey Miller Charitable Foundation'),
(62013, 52232, 'en', 'name', 'Rural Women New Zealand'),
(62014, 52233, 'en', 'name', 'Plumbing Heating Cooling Contractors National Association Educational Foundation'),
(62015, 52234, 'en', 'name', 'PLUS Foundation'),
(62016, 52235, 'en', 'name', 'Ready Mixed Concrete Research and Education Foundation'),
(62017, 52236, 'en', 'name', 'Open Society Foundation for South Africa'),
(62018, 52237, 'en', 'name', 'Pennington Biomedical Research Foundation'),
(62019, 52238, 'en', 'name', 'Reflections of Grace Foundation'),
(62020, 52239, 'en', 'name', 'Open Source Drug Discovery'),
(62021, 52240, 'no_lang_code', 'name', 'PNM Resources (United States)'),
(62022, 52241, 'en', 'name', 'Wisconsin Association for Perinatal Care'),
(62023, 52242, 'en', 'name', 'Podiatry Foundation of Pittsburgh'),
(62024, 52243, 'en', 'name', 'Russian Science Support Foundation'),
(62025, 52243, 'ru', 'name', 'Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ общественный ФонГ ŃŠ¾Š“ŠµŠ¹ŃŃ‚Š²ŠøŃ отечественной науке'),
(62026, 52244, 'no_lang_code', 'name', 'Scripps (United States)'),
(62027, 52245, 'en', 'name', 'Scurlock Foundation'),
(62028, 52246, 'no', 'name', 'Regionale forskningsfond Oslofjordfondet'),
(62029, 52247, 'en', 'name', 'Rutlish School');
INSERT INTO `ror_settings` VALUES
(62030, 52248, 'en', 'name', 'Registered Nurses'' Association of Ontario'),
(62031, 52249, 'en', 'name', 'Sea World'),
(62032, 52250, 'en', 'name', 'Reinberger Foundation'),
(62033, 52251, 'en', 'name', 'Posen Foundation'),
(62034, 52251, 'he', 'name', 'קרן פוזן'),
(62035, 52252, 'en', 'name', 'Ryan Licht Sang Bipolar Foundation'),
(62036, 52253, 'en', 'name', 'Sean Costello Memorial Fund for Bipolar Research'),
(62037, 52254, 'en', 'name', 'Persian Scholarship Foundation'),
(62038, 52255, 'en', 'name', 'RYR 1 Foundation'),
(62039, 52256, 'en', 'name', 'Reinhold Beitlich Foundation'),
(62040, 52256, 'de', 'name', 'Reinhold Beitlich Stiftung'),
(62041, 52257, 'en', 'name', 'Potts Family Foundation'),
(62042, 52258, 'en', 'name', 'S. D. Bechtel, Jr. Foundation'),
(62043, 52259, 'en', 'name', 'S. Mark Taper Foundation'),
(62044, 52260, 'en', 'name', 'Pottstown Area Health and Wellness Foundation'),
(62045, 52261, 'en', 'name', 'Pet Care Trust'),
(62046, 52262, 'it', 'name', 'Repubblica e Cantone Ticino'),
(62047, 52263, 'en', 'name', 'Saccomanno Higher Education Foundation'),
(62048, 52264, 'en', 'name', 'Poverty and Race Research Action Council'),
(62049, 52265, 'en', 'name', 'Society for the Preservation of American Modernists'),
(62050, 52266, 'en', 'name', 'Prayers from Maria'),
(62051, 52267, 'en', 'name', 'Saigh Foundation'),
(62052, 52268, 'en', 'name', 'Presbyterian Health Foundation'),
(62053, 52269, 'en', 'name', 'Secure World Foundation'),
(62054, 52270, 'en', 'name', 'Prevent Blindness'),
(62055, 52271, 'en', 'name', 'Saint Lukes Foundation'),
(62056, 52272, 'en', 'name', 'Society of Canadian Ornithologists'),
(62057, 52272, 'aa', 'name', 'SociƩtƩ des Ornithologistes du Canada'),
(62058, 52273, 'en', 'name', 'Sendzimir Foundation'),
(62059, 52274, 'en', 'name', 'Severns Family Foundation'),
(62060, 52275, 'en', 'name', 'Resources Legacy Fund'),
(62061, 52276, 'en', 'name', 'Samberg Family Foundation'),
(62062, 52277, 'en', 'name', 'Sexually Transmitted Infection Research Foundation'),
(62063, 52278, 'en', 'name', 'SME Education Foundation'),
(62064, 52279, 'en', 'name', 'Respiratory Health Association'),
(62065, 52280, 'en', 'name', 'Samis Foundation'),
(62066, 52281, 'en', 'name', 'Perth Childrens Hospital Foundation'),
(62067, 52282, 'en', 'name', 'Society of Systematic Biologists'),
(62068, 52283, 'en', 'name', 'Samuel H. Kress Foundation'),
(62069, 52284, 'en', 'name', 'Society of Urologic Nurses and Associates'),
(62070, 52285, 'en', 'name', 'Sociological Initiatives Foundation'),
(62071, 52286, 'en', 'name', 'Shanghai Association for Science and Technology'),
(62072, 52287, 'en', 'name', 'Resthaven Incorporated'),
(62073, 52288, 'en', 'name', 'Sonnenfeld Foundation'),
(62074, 52288, 'de', 'name', 'Sonnenfeld Stiftung'),
(62075, 52289, 'en', 'name', 'San Angelo Health Foundation'),
(62076, 52290, 'en', 'name', 'Restless Legs Syndrome Foundation'),
(62077, 52291, 'en', 'name', 'San Francisco Foundation'),
(62078, 52292, 'en', 'name', 'Rett Syndrome Association of Australia'),
(62079, 52293, 'en', 'name', 'Order Sons of Italy in America'),
(62080, 52294, 'en', 'name', 'San Francisco General Hospital Foundation'),
(62081, 52295, 'en', 'name', 'Rett Syndrome Association of Illinois'),
(62082, 52296, 'en', 'name', 'Sons of Norway'),
(62083, 52297, 'en', 'name', 'Sand County Foundation'),
(62084, 52298, 'en', 'name', 'Sosland Foundation'),
(62085, 52299, 'no_lang_code', 'name', 'Shangluo University'),
(62086, 52299, 'zh', 'name', '商擛学院'),
(62087, 52300, 'en', 'name', 'Promotional Products Education Foundation'),
(62088, 52301, 'en', 'name', 'JLK Sanfilippo Research Foundation'),
(62089, 52302, 'en', 'name', 'Shared Earth Foundation'),
(62090, 52303, 'en', 'name', 'Frisbee Foundation'),
(62091, 52304, 'en', 'name', 'South Asian Health Foundation'),
(62092, 52305, 'en', 'name', 'Ivey Foundation'),
(62093, 52306, 'no_lang_code', 'name', 'Dai-ichi Life Insurance (United States)'),
(62094, 52307, 'en', 'name', 'Richard K. and Shirley S. Hemingway Foundation'),
(62095, 52308, 'en', 'name', 'Proteus Fund'),
(62096, 52309, 'en', 'name', 'Richard M. Fairbanks Foundation'),
(62097, 52310, 'en', 'name', 'Richard M. Schulze Family Foundation'),
(62098, 52311, 'en', 'name', 'Shenyang Science and Technology Bureau'),
(62099, 52311, 'zh', 'name', 'ę²ˆé˜³åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(62100, 52312, 'en', 'name', 'Right to Care'),
(62101, 52313, 'en', 'name', 'Scaife Foundations'),
(62102, 52314, 'en', 'name', 'South Dakota Community Foundation'),
(62103, 52315, 'en', 'name', 'Sarcoma UK'),
(62104, 52316, 'en', 'name', 'PSC Partners Seeking a Cure'),
(62105, 52317, 'no_lang_code', 'name', 'Riisfort (Denmark)'),
(62106, 52318, 'en', 'name', 'Sarkeys Foundation'),
(62107, 52319, 'en', 'name', 'Public Life Foundation of Owensboro'),
(62108, 52320, 'de', 'name', 'Sarkoidose Stiftung'),
(62109, 52321, 'en', 'name', 'Riverbanks Zoo and Garden'),
(62110, 52322, 'en', 'name', 'Southeastern Brain Tumor Foundation'),
(62111, 52323, 'en', 'name', 'Rob and Bessie Welder Wildlife Foundation'),
(62112, 52324, 'en', 'name', 'Purple Martin Conservation Association'),
(62113, 52325, 'en', 'name', 'Sasakawa Memorial Health Foundation'),
(62114, 52325, 'ja', 'name', 'ē¬¹å·čØ˜åæµäæå„å”åŠ›č²”å›£'),
(62115, 52326, 'en', 'name', 'Shurl and Kay Curci Foundation'),
(62116, 52327, 'en', 'name', 'Shwachman Diamond Syndrome Foundation'),
(62117, 52328, 'en', 'name', 'Save Our Seas Foundation'),
(62118, 52329, 'en', 'name', 'Qinhuangdao Science and Technology Bureau'),
(62119, 52329, 'zh', 'name', 'ē§¦ēš‡å²›åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(62120, 52330, 'en', 'name', 'Southern Appalachian Botanical Society'),
(62121, 52331, 'en', 'name', 'Save the Redwoods League'),
(62122, 52332, 'en', 'name', 'Robert and Janice McNair Foundation'),
(62123, 52333, 'en', 'name', 'Southern Medical Association'),
(62124, 52334, 'en', 'name', 'Savoy Foundation'),
(62125, 52335, 'en', 'name', 'Sid W Richardson Foundation'),
(62126, 52336, 'en', 'name', 'Southern Taiwan Science Park'),
(62127, 52336, 'zh', 'name', 'å—éƒØē§‘å­øå·„ę„­åœ’å€'),
(62128, 52337, 'en', 'name', 'Sidgmore Family Foundation'),
(62129, 52338, 'en', 'name', 'Scan Foundation'),
(62130, 52339, 'en', 'name', 'Quixote Foundation'),
(62131, 52340, 'en', 'name', 'Scan Design Foundation'),
(62132, 52341, 'en', 'name', 'Sidney R Baer Jr Foundation'),
(62133, 52342, 'en', 'name', 'Robert Bowne Foundation'),
(62134, 52343, 'en', 'name', 'Sparkplug Foundation'),
(62135, 52344, 'en', 'name', 'R Baby Foundation'),
(62136, 52345, 'en', 'name', 'Robert E. and Evelyn McKee Foundation'),
(62137, 52346, 'en', 'name', 'SIDS Calgary Society'),
(62138, 52347, 'en', 'name', 'R. Harold Burton Foundation'),
(62139, 52348, 'en', 'name', 'Schenectady Foundation'),
(62140, 52349, 'en', 'name', 'R. J. Taylor, Jr. Foundation'),
(62141, 52350, 'en', 'name', 'Schizophrenia Research Fund'),
(62142, 52351, 'en', 'name', 'RJ McElroy Trust'),
(62143, 52352, 'en', 'name', 'Sierra Club'),
(62144, 52353, 'en', 'name', 'Robert R. McCormick Foundation'),
(62145, 52354, 'en', 'name', 'Racing Victoria'),
(62146, 52355, 'en', 'name', 'Sierra Health Foundation'),
(62147, 52356, 'en', 'name', 'Robert Mapplethorpe Foundation'),
(62148, 52357, 'en', 'name', 'Robert Toigo Foundation'),
(62149, 52358, 'no_lang_code', 'name', 'Sigma-Tau Pharmaceuticals (United States)'),
(62150, 52359, 'en', 'name', 'Robert W. Woodruff Foundation'),
(62151, 52360, 'en', 'name', 'Sport Foundation'),
(62152, 52361, 'no_lang_code', 'name', 'Standard General (United States)'),
(62153, 52362, 'en', 'name', 'Sports Medicine Australia'),
(62154, 52363, 'en', 'name', 'Robina Foundation'),
(62155, 52364, 'en', 'name', 'Springboard Foundation'),
(62156, 52365, 'en', 'name', 'Rockefeller Brothers Fund'),
(62157, 52366, 'en', 'name', 'Springfield Foundation'),
(62158, 52367, 'en', 'name', 'Sikh Foundation'),
(62159, 52368, 'en', 'name', 'Raine Medical Research Foundation'),
(62160, 52369, 'en', 'name', 'Simmons Family Foundation'),
(62161, 52370, 'en', 'name', 'Rockfall Foundation'),
(62162, 52371, 'en', 'name', 'Singapore Heart Foundation'),
(62163, 52372, 'en', 'name', 'Roddenberry Foundation'),
(62164, 52373, 'en', 'name', 'Singapore International Foundation'),
(62165, 52373, 'ms', 'name', 'Yayasan Antarabangsa Singapura'),
(62166, 52373, 'zh', 'name', 'ę–°åŠ å”å›½é™…åŸŗé‡‘ä¼š'),
(62167, 52374, 'en', 'name', 'Singapore Millennium Foundation'),
(62168, 52375, 'nl', 'name', 'Stichting Rotterdams Kinderrevalidatie Fonds Adriaanstichting'),
(62169, 52376, 'de', 'name', 'Schweizerische Multiple Sklerose Gesellschaft'),
(62170, 52376, 'it', 'name', 'SocietĆ  Svizzera Sclerosi Multipla'),
(62171, 52376, 'fr', 'name', 'SociƩtƩ Suisse de la SclƩrose en Plaques'),
(62172, 52377, 'en', 'name', 'Siouxland Community Foundation'),
(62173, 52378, 'en', 'name', 'Rollie R. Kelley Family Foundation'),
(62174, 52379, 'en', 'name', 'Stichting Sem Presser Archief'),
(62175, 52380, 'en', 'name', 'St David''s Medical Foundation'),
(62176, 52381, 'de', 'name', 'Schweizerischen Neurologischen Gesellschaft'),
(62177, 52381, 'fr', 'name', 'SociƩtƩ Suisse de Neurologie'),
(62178, 52382, 'en', 'name', 'Science and Industry Endowment Fund'),
(62179, 52383, 'en', 'name', 'St Giles Foundation'),
(62180, 52384, 'en', 'name', 'Rome Foundation'),
(62181, 52385, 'en', 'name', 'Science and Technology Center in Ukraine'),
(62182, 52386, 'en', 'name', 'Ronald McDonald House Charities of Eastern New England'),
(62183, 52387, 'nl', 'name', 'Stichting tot Steun VCVGZ'),
(62184, 52388, 'en', 'name', 'Ronald McDonald House Charities of Northeastern Ohio'),
(62185, 52389, 'en', 'name', 'Siragusa Family Foundation'),
(62186, 52390, 'en', 'name', 'St. Joe Community Foundation'),
(62187, 52391, 'nl', 'name', 'Stichting Vrienden Beatrix Kinderziekenhuis'),
(62188, 52392, 'en', 'name', 'Sisters of Charity Health System'),
(62189, 52393, 'en', 'name', 'Ronald McDonald House of Houston'),
(62190, 52394, 'sv', 'name', 'Stiftelsen Folke Bernadottes Minnesfond'),
(62191, 52395, 'en', 'name', 'SciFund Challenge'),
(62192, 52396, 'en', 'name', 'St. Jude Medical Foundation'),
(62193, 52397, 'sv', 'name', 'Stiftelsen Clas Groschinskys Minnesfond'),
(62194, 52398, 'en', 'name', 'Scleroderma Research Foundation'),
(62195, 52399, 'en', 'name', 'Rosalinde and Arthur Gilbert Foundation'),
(62196, 52400, 'sv', 'name', 'Stiftelsen Emilie och Rudolf Gesellius fond'),
(62197, 52401, 'en', 'name', 'Vitalyst Health Foundation'),
(62198, 52402, 'en', 'name', 'Sitka Center for Art and Ecology'),
(62199, 52403, 'en', 'name', 'Scoliosis Research Society'),
(62200, 52404, 'en', 'name', 'Gifford Foundation'),
(62201, 52405, 'en', 'name', 'St Marys Community Foundation'),
(62202, 52406, 'en', 'name', 'Rose Community Foundation'),
(62203, 52407, 'en', 'name', 'St. Paul’s Foundation'),
(62204, 52408, 'en', 'name', 'Rose Foundation for Communities and the Environment'),
(62205, 52409, 'sv', 'name', 'Stiftelsen Erik and Lily Philipsons Minnesfond'),
(62206, 52410, 'en', 'name', 'Skylark Foundation'),
(62207, 52411, 'en', 'name', 'Rosenberg Foundation'),
(62208, 52412, 'no_lang_code', 'name', 'Staedtler (Germany)'),
(62209, 52413, 'en', 'name', 'Roshan Cultural Heritage Institute'),
(62210, 52414, 'en', 'name', 'Society for Ambulatory Anesthesia'),
(62211, 52415, 'en', 'name', 'Rothschild Caesarea Foundation'),
(62212, 52416, 'en', 'name', 'Society for Analytical Chemists of Pittsburgh'),
(62213, 52417, 'en', 'name', 'T.J. Martell Foundation'),
(62214, 52418, 'sv', 'name', 'Stiftelsen Oscar och Lili Lamms Minne'),
(62215, 52419, 'en', 'name', 'Society for Applied Microbiology'),
(62216, 52420, 'en', 'name', 'Stark Community Foundation'),
(62217, 52421, 'en', 'name', 'Tag Institute for Social Development'),
(62218, 52422, 'en', 'name', 'Taiho Kogyo Tribology Research Foundation'),
(62219, 52423, 'en', 'name', 'Starr Foundation'),
(62220, 52424, 'sv', 'name', 'Stiftelsen Professor Lars Erik Gelins Minnesfond'),
(62221, 52425, 'en', 'name', 'Taipei Tzu Chi Hospital'),
(62222, 52425, 'zh', 'name', 'å°åŒ—ę…ˆęµŽåŒ»é™¢'),
(62223, 52426, 'en', 'name', 'Promobilia Foundation'),
(62224, 52426, 'sv', 'name', 'Stiftelsen Promobilia'),
(62225, 52427, 'en', 'name', 'Society for Industrial and Organizational Psychology'),
(62226, 52428, 'sv', 'name', 'Stiftelsen Samariten'),
(62227, 52429, 'en', 'name', 'Tan Kah Kee Foundation'),
(62228, 52430, 'en', 'name', 'Society for Psychical Research'),
(62229, 52431, 'en', 'name', 'Udall Foundation'),
(62230, 52432, 'en', 'name', 'Society for Psychotherapy Research'),
(62231, 52433, 'en', 'name', 'Uehara Memorial Foundation'),
(62232, 52433, 'ja', 'name', 'äøŠåŽŸčØ˜åæµč²”å›£'),
(62233, 52434, 'en', 'name', 'Shevchenko Foundation'),
(62234, 52435, 'en', 'name', 'HSC Health Care System'),
(62235, 52436, 'en', 'name', 'Society for Renaissance Studies'),
(62236, 52437, 'en', 'name', 'Society for Research into Higher Education'),
(62237, 52438, 'sv', 'name', 'Stiftelsen Solstickan'),
(62238, 52439, 'en', 'name', 'Society for the AnthroĀ­pology of North AmerĀ­ica'),
(62239, 52440, 'en', 'name', 'Tawani Foundation'),
(62240, 52441, 'sv', 'name', 'Stiftelsen Sunnerdahls Handikappfond'),
(62241, 52442, 'en', 'name', 'Taylor’s Tale'),
(62242, 52443, 'en', 'name', 'Team Sanfilippo Foundation'),
(62243, 52444, 'no_lang_code', 'name', 'Ulverscroft (United Kingdom)'),
(62244, 52445, 'sv', 'name', 'Stiftelsen Tornspiran'),
(62245, 52446, 'en', 'name', 'UniHealth Foundation'),
(62246, 52447, 'sv', 'name', 'Stiftelsen Tysta Skolan'),
(62247, 52448, 'en', 'name', 'Sterling-Turner Foundation'),
(62248, 52449, 'en', 'name', 'United Mitochondrial Disease Foundation'),
(62249, 52450, 'en', 'name', 'A Sister''s Hope'),
(62250, 52451, 'en', 'name', 'Species Conservation Foundation'),
(62251, 52451, 'de', 'name', 'Stiftung Artenschutz'),
(62252, 52452, 'en', 'name', 'United States African Development Foundation'),
(62253, 52453, 'en', 'name', 'Technology Academy Finland'),
(62254, 52453, 'fi', 'name', 'Tekniikan Akatemia'),
(62255, 52454, 'en', 'name', 'United States Equestrian Federation'),
(62256, 52455, 'no_lang_code', 'name', 'Telkom (South Africa)'),
(62257, 52456, 'en', 'name', '3R Research Foundation'),
(62258, 52456, 'de', 'name', 'Stiftung Forschung 3R'),
(62259, 52457, 'en', 'name', 'United States-Japan Foundation'),
(62260, 52458, 'de', 'name', 'Stiftung Mercator Schweiz'),
(62261, 52459, 'no_lang_code', 'name', 'Telstra (Australia)'),
(62262, 52460, 'en', 'name', 'Combined Ophthalmic Research Rotterdam'),
(62263, 52461, 'en', 'name', 'Michael Foundation'),
(62264, 52461, 'de', 'name', 'Stiftung Michael'),
(62265, 52462, 'de', 'name', 'Stiftung Oskar Helene Heim'),
(62266, 52463, 'en', 'name', 'United Way of Gratiot & Isabella Counties'),
(62267, 52464, 'en', 'name', 'United Way of Santa Barbara County'),
(62268, 52465, 'en', 'name', 'Stillbirth Foundation'),
(62269, 52466, 'nl', 'name', 'Stichting Euregio Maas-Rijn'),
(62270, 52467, 'en', 'name', 'Stimson Miller Foundation'),
(62271, 52468, 'en', 'name', 'University of Maryland Extension'),
(62272, 52469, 'en', 'name', 'Texas Department of Agriculture'),
(62273, 52470, 'en', 'name', 'United Way of Smith County'),
(62274, 52471, 'en', 'name', 'Stony Wold Herbert Fund'),
(62275, 52472, 'en', 'name', 'Stop Cancer'),
(62276, 52473, 'en', 'name', 'Stop! Children''s Cancer of Palm Beach County'),
(62277, 52474, 'en', 'name', 'Stuart Foundation'),
(62278, 52475, 'en', 'name', 'Unity Through Knowledge Fund'),
(62279, 52476, 'en', 'name', 'Students Supporting Brain Tumor Research'),
(62280, 52477, 'de', 'name', 'Vereinigung Analytischer Kinder- und Jugendlichen-Psychotherapeuten'),
(62281, 52478, 'en', 'name', 'Universal Health Care Foundation of Connecticut'),
(62282, 52479, 'en', 'name', 'Sudbury Foundation'),
(62283, 52480, 'en', 'name', 'Vetiver Network International'),
(62284, 52481, 'en', 'name', 'SIL International'),
(62285, 52482, 'en', 'name', 'Summerlee Foundation'),
(62286, 52483, 'en', 'name', 'Elizabeth Greenshields Foundation'),
(62287, 52484, 'en', 'name', 'Sun Health Foundation'),
(62288, 52485, 'en', 'name', 'Sunbeam Foundation'),
(62289, 52486, 'en', 'name', 'Sunflower Foundation'),
(62290, 52487, 'en', 'name', 'Sungmo Eye Hospital'),
(62291, 52488, 'sv', 'name', 'Victoriastiftelsen'),
(62292, 52489, 'en', 'name', 'Vidda Foundation'),
(62293, 52490, 'en', 'name', 'Vietnam Education Foundation'),
(62294, 52491, 'en', 'name', 'Finnish Society of Anaesthesiologists'),
(62295, 52491, 'fi', 'name', 'Suomen Anestesiologiyhdistys'),
(62296, 52492, 'en', 'name', 'Womens Foundation'),
(62297, 52492, 'zh', 'name', 'å©¦å„³åŸŗé‡‘ęœƒęœ‰é™å…¬åø'),
(62298, 52493, 'en', 'name', 'Radiological Society of Finland'),
(62299, 52493, 'fi', 'name', 'Suomen Radiologiyhdistys'),
(62300, 52494, 'en', 'name', 'Vilcek Foundation'),
(62301, 52495, 'en', 'name', 'Finnish Society of Sciences and Letters'),
(62302, 52495, 'sv', 'name', 'Finska Vetenskaps-Societeten'),
(62303, 52495, 'fi', 'name', 'Suomen Tiedeseura'),
(62304, 52496, 'da', 'name', 'Ville Heises Legat'),
(62305, 52497, 'en', 'name', 'Support Center for Advanced Telecommunications Technology Research Foundation'),
(62306, 52497, 'ja', 'name', '一貔)ćƒ†ćƒ¬ć‚³ćƒ å…ˆē«ÆęŠ€č”“ē ”ē©¶ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(62307, 52498, 'en', 'name', 'Surdna Foundation'),
(62308, 52499, 'en', 'name', 'Thomas Foundation'),
(62309, 52500, 'en', 'name', 'Virginia Hodgkins Somers Foundation'),
(62310, 52501, 'en', 'name', 'Thomas Wilson Foundation'),
(62311, 52502, 'en', 'name', 'Thoracic Surgery Foundation'),
(62312, 52503, 'en', 'name', 'Susan Thompson Buffett Foundation'),
(62313, 52504, 'en', 'name', 'Thorsten and Elsa Segerfalk Foundation'),
(62314, 52504, 'sv', 'name', 'Torsten och Elsa Segerfalks stiftelse'),
(62315, 52505, 'en', 'name', 'Vision of Children Foundation'),
(62316, 52506, 'en', 'name', 'Threshold Foundation'),
(62317, 52507, 'en', 'name', 'Sustainable Development Technology Canada'),
(62318, 52507, 'fr', 'name', 'Technologies du DƩveloppement Durable du Canada'),
(62319, 52508, 'da', 'name', 'Svend Andersen Fonden'),
(62320, 52509, 'en', 'name', 'Voice Foundation'),
(62321, 52510, 'da', 'name', 'Svend Beck Peter Holm og Vagn Jacobsens Almene Fond'),
(62322, 52511, 'en', 'name', 'Volvo Environment Prize'),
(62323, 52512, 'sv', 'name', 'Svenska Kennelklubben'),
(62324, 52512, 'en', 'name', 'Swedish Kennel Club'),
(62325, 52513, 'no_lang_code', 'name', 'Thumbay Group (United Arab Emirates)'),
(62326, 52514, 'en', 'name', 'University Film and Video Association'),
(62327, 52515, 'en', 'name', 'Volvo Research and Education Foundations'),
(62328, 52516, 'sv', 'name', 'Svenska Parkinsonstiftelsen'),
(62329, 52517, 'en', 'name', 'Telecommunication an Electronics Associaton'),
(62330, 52517, 'fi', 'name', 'Tietotekniikan ja Elektroniikan Seura'),
(62331, 52518, 'nl', 'name', 'VSBfonds'),
(62332, 52519, 'no_lang_code', 'name', 'Sweden and Martina (Italy)'),
(62333, 52520, 'sv', 'name', 'Sverige Amerikastiftelsen'),
(62334, 52520, 'en', 'name', 'Sweden America Foundation'),
(62335, 52521, 'en', 'name', 'Swedish Brain Power'),
(62336, 52522, 'en', 'name', 'Tom Coughlin Jay Fund Foundation'),
(62337, 52523, 'en', 'name', 'Waikato Medical Research Foundation'),
(62338, 52524, 'en', 'name', 'Tommy Fuss Fund'),
(62339, 52525, 'no_lang_code', 'name', 'Until There’s A Cure'),
(62340, 52526, 'en', 'name', 'Tony Elumelu Foundation'),
(62341, 52527, 'en', 'name', 'Swiss Continence Foundation'),
(62342, 52528, 'en', 'name', 'Waksman Foundation for Microbiology'),
(62343, 52529, 'en', 'name', 'Wallace Genetic Foundation'),
(62344, 52530, 'en', 'name', 'The Toyota Foundation'),
(62345, 52530, 'ja', 'name', 'ćƒˆćƒØć‚æč²”å›£'),
(62346, 52531, 'en', 'name', 'Sylvia and Charles Viertel Charitable Foundation'),
(62347, 52532, 'en', 'name', 'Tracy Jo Wilson Ovarian Cancer Foundation'),
(62348, 52533, 'en', 'name', 'Travis Roy Foundation'),
(62349, 52534, 'en', 'name', 'Driskill Foundation'),
(62350, 52535, 'en', 'name', 'Syngenta Foundation for Sustainable Agriculture'),
(62351, 52536, 'en', 'name', 'Walton Family Foundation'),
(62352, 52537, 'en', 'name', 'T. Boone Pickens Foundation'),
(62353, 52538, 'en', 'name', 'Washington Square Health Foundation'),
(62354, 52539, 'no_lang_code', 'name', 'Usibelli Coal Mine (United States)'),
(62355, 52540, 'en', 'name', 'Triangle Community Foundation'),
(62356, 52541, 'en', 'name', 'Wasie Foundation'),
(62357, 52542, 'en', 'name', 'Warren Alpert Foundation'),
(62358, 52543, 'en', 'name', 'William Caspar Graustein Memorial Fund'),
(62359, 52544, 'da', 'name', 'Trigon Fonden'),
(62360, 52545, 'en', 'name', 'Wasserman Foundation'),
(62361, 52546, 'en', 'name', 'William G McGowan Charitable Fund'),
(62362, 52547, 'en', 'name', 'William K Bowes Jr Foundation'),
(62363, 52548, 'en', 'name', 'William K. Warren Foundation'),
(62364, 52549, 'en', 'name', 'Water Environment and Reuse Foundation'),
(62365, 52550, 'en', 'name', 'William P. Wharton Trust'),
(62366, 52551, 'en', 'name', 'World Food Prize Foundation'),
(62367, 52552, 'sv', 'name', 'Trygg Hansas Forskningsstiftelse'),
(62368, 52553, 'en', 'name', 'World-India Diabetes Foundation'),
(62369, 52554, 'en', 'name', 'William T Morris Foundation'),
(62370, 52555, 'no_lang_code', 'name', 'V. Kann Rasmussen Foundation'),
(62371, 52556, 'en', 'name', 'Wuhan Donghu University'),
(62372, 52556, 'zh', 'name', 'ę­¦ę±‰äøœę¹–å­¦é™¢'),
(62373, 52557, 'en', 'name', 'Lishman Health Foundation'),
(62374, 52558, 'en', 'name', 'Webber Family Foundation'),
(62375, 52559, 'no_lang_code', 'name', 'Williams (United States)'),
(62376, 52560, 'en', 'name', 'Val Skinner Foundation'),
(62377, 52561, 'en', 'name', 'Wuxi Municipal Bureau on Science and Technology'),
(62378, 52561, 'zh', 'name', 'ę— é””åø‚ē§‘ęŠ€å±€'),
(62379, 52562, 'en', 'name', 'Webster Groves Nature Study Society'),
(62380, 52563, 'en', 'name', 'Wyncote Foundation'),
(62381, 52564, 'en', 'name', 'Weeden Foundation'),
(62382, 52565, 'en', 'name', 'Vallee Foundation'),
(62383, 52566, 'en', 'name', 'Wilson Foundation'),
(62384, 52567, 'en', 'name', 'Weitz Family Foundation'),
(62385, 52568, 'no_lang_code', 'name', 'Van Lƶben Sels/RembeRock Foundation'),
(62386, 52569, 'en', 'name', 'Van Wert County Foundation'),
(62387, 52570, 'en', 'name', 'Winds of Peace Foundation'),
(62388, 52571, 'en', 'name', 'Xi''an Science Technology Bureau'),
(62389, 52571, 'zh', 'name', 'č„æå®‰åø‚ē§‘ęŠ€å±€'),
(62390, 52572, 'en', 'name', 'Wender Weis Foundation for Children'),
(62391, 52573, 'en', 'name', 'Varkey Foundation'),
(62392, 52574, 'en', 'name', 'Vascular Birthmarks Foundation'),
(62393, 52575, 'en', 'name', 'Wipe Out Kids Cancer'),
(62394, 52576, 'en', 'name', 'Vegetables New Zealand'),
(62395, 52577, 'no_lang_code', 'name', 'Yarra Valley Water (Australia)'),
(62396, 52578, 'en', 'name', 'Zhengzhou City Science and Technology Bureau'),
(62397, 52578, 'zh', 'name', 'éƒ‘å·žåø‚ē§‘ęŠ€å±€'),
(62398, 52579, 'en', 'name', 'Veolia Environmental Trust'),
(62399, 52580, 'en', 'name', 'West Central Initiative'),
(62400, 52581, 'en', 'name', 'Vera Bradley Foundation for Breast Cancer'),
(62401, 52582, 'en', 'name', 'Westchester Community Foundation'),
(62402, 52583, 'en', 'name', 'Wisconsin Public Service'),
(62403, 52584, 'de', 'name', 'ZNS Hannelore Kohl Stiftung'),
(62404, 52585, 'en', 'name', 'Islamic Azad University, Firoozkooh Branch'),
(62405, 52585, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد ŁŁŠŲ±ŁˆŲ²ŁƒŁˆŁ‡'),
(62406, 52586, 'en', 'name', 'Wisconsin Turfgrass Association'),
(62407, 52587, 'en', 'name', 'Wishlist'),
(62408, 52588, 'en', 'name', 'Womens Foundation of Minnesota'),
(62409, 52589, 'en', 'name', 'Western Australian Genealogical Society'),
(62410, 52590, 'en', 'name', 'Western Surgical Association'),
(62411, 52591, 'en', 'name', 'Womens Foundation of Southern Arizona'),
(62412, 52592, 'en', 'name', 'Womens Fund of Central Ohio'),
(62413, 52593, 'en', 'name', 'Westfield Foundation'),
(62414, 52594, 'en', 'name', 'Z.Smith Reynolds Foundation'),
(62415, 52595, 'en', 'name', 'Women and Children’s Health Research Institute'),
(62416, 52596, 'nl', 'name', 'Wetenschappelijk Onderzoek- en Documentatiecentrum'),
(62417, 52597, 'en', 'name', 'Womens Fund of Hawaii'),
(62418, 52598, 'en', 'name', 'Women''s Foundation of Colorado'),
(62419, 52599, 'en', 'name', 'Whiteman Foundation'),
(62420, 52600, 'en', 'name', 'Womens Sports Foundation'),
(62421, 52601, 'en', 'name', 'Wildlife Conservation Society Argentina'),
(62422, 52602, 'en', 'name', 'Whitley Fund for Nature'),
(62423, 52603, 'en', 'name', 'Wildlife Forever'),
(62424, 52604, 'en', 'name', 'Whitley Wildlife Conservation Trust'),
(62425, 52605, 'en', 'name', 'Woodruff Foundation'),
(62426, 52606, 'en', 'name', 'Woods Fund of Chicago'),
(62427, 52607, 'en', 'name', 'Willard L. Eccles Charitable Foundation'),
(62428, 52608, 'en', 'name', 'Whaleman Foundation'),
(62429, 52609, 'en', 'name', 'Whole Systems Foundation'),
(62430, 52610, 'en', 'name', 'Wieboldt Foundation'),
(62431, 52611, 'en', 'name', 'WHAS Crusade for Children'),
(62432, 52612, 'no_lang_code', 'name', 'Johnson Controls (Germany)'),
(62433, 52613, 'en', 'name', 'IBM Research - India'),
(62434, 52614, 'en', 'name', 'IBM Research - Almaden'),
(62435, 52615, 'en', 'name', 'IBM Research - Austin'),
(62436, 52616, 'en', 'name', 'IBM Research - Australia'),
(62437, 52617, 'en', 'name', 'IBM Research - Brazil'),
(62438, 52618, 'en', 'name', 'IBM Research - Africa'),
(62439, 52619, 'no_lang_code', 'name', 'Alibaba Group (United States)'),
(62440, 52620, 'no_lang_code', 'name', 'AGCO (Germany)'),
(62441, 52621, 'no_lang_code', 'name', 'ABB (Japan)'),
(62442, 52622, 'no_lang_code', 'name', 'AGCO (France)'),
(62443, 52623, 'no_lang_code', 'name', 'Abbott (Ireland)'),
(62444, 52624, 'no_lang_code', 'name', 'Honeywell (France)'),
(62445, 52625, 'no_lang_code', 'name', 'AkzoNobel (United States)'),
(62446, 52626, 'no_lang_code', 'name', 'Adidas (Netherlands)'),
(62447, 52627, 'no_lang_code', 'name', 'Andritz (United States)'),
(62448, 52628, 'no_lang_code', 'name', 'Alpha and Omega Semiconductor (United States)'),
(62449, 52629, 'no_lang_code', 'name', 'Newell Brands (France)'),
(62450, 52630, 'no_lang_code', 'name', 'Albemarle (Netherlands)'),
(62451, 52631, 'no_lang_code', 'name', 'Berry (United States)'),
(62452, 52632, 'no_lang_code', 'name', 'Ballard Power Systems (Germany)'),
(62453, 52633, 'no_lang_code', 'name', 'Amdocs (Cyprus)'),
(62454, 52634, 'no_lang_code', 'name', 'Schneider Electric (Denmark)'),
(62455, 52635, 'no_lang_code', 'name', 'Alere (Switzerland)'),
(62456, 52636, 'no_lang_code', 'name', 'Robert Bosch (France)'),
(62457, 52637, 'no_lang_code', 'name', 'Robert Bosch (Netherlands)'),
(62458, 52638, 'no_lang_code', 'name', 'Atos (United States)'),
(62459, 52639, 'no_lang_code', 'name', 'BIC (United States)'),
(62460, 52640, 'no_lang_code', 'name', 'BASF (China)'),
(62461, 52641, 'no_lang_code', 'name', 'Bracco (Netherlands)'),
(62462, 52642, 'no_lang_code', 'name', 'Biotronik (Switzerland)'),
(62463, 52643, 'no_lang_code', 'name', 'ASM (Japan)'),
(62464, 52644, 'no_lang_code', 'name', 'AstenJohnson (United States)'),
(62465, 52645, 'no_lang_code', 'name', 'Atlas Copco (Sweden)'),
(62466, 52646, 'no_lang_code', 'name', 'Atlas Copco (Belgium)'),
(62467, 52647, 'no_lang_code', 'name', 'Amer Sports (Austria)'),
(62468, 52648, 'no_lang_code', 'name', 'HeidelbergCement (United States)'),
(62469, 52649, 'no_lang_code', 'name', 'Kuraray (United States)'),
(62470, 52650, 'no_lang_code', 'name', 'Becton Dickinson (France)'),
(62471, 52651, 'no_lang_code', 'name', 'Oclaro (United States)'),
(62472, 52652, 'no_lang_code', 'name', 'Bruker (Switzerland)'),
(62473, 52653, 'no_lang_code', 'name', 'Bruker (France)'),
(62474, 52654, 'no_lang_code', 'name', 'Metso (United States)'),
(62475, 52655, 'no_lang_code', 'name', 'Avid (United States)'),
(62476, 52656, 'no_lang_code', 'name', 'Boehringer Ingelheim (Mexico)'),
(62477, 52657, 'no_lang_code', 'name', 'Caterpillar (Switzerland)'),
(62478, 52658, 'no_lang_code', 'name', 'Continental (Canada)'),
(62479, 52659, 'no_lang_code', 'name', 'Entrust Datacard (United States)'),
(62480, 52660, 'no_lang_code', 'name', 'Dean Foods (United States)'),
(62481, 52661, 'no_lang_code', 'name', 'Cyclacel Pharmaceuticals (United Kingdom)'),
(62482, 52662, 'no_lang_code', 'name', 'Rheinmetall (Switzerland)'),
(62483, 52663, 'no_lang_code', 'name', 'Milacron (United States)'),
(62484, 52664, 'no_lang_code', 'name', 'Koenig & Bauer (Switzerland)'),
(62485, 52665, 'no_lang_code', 'name', 'CoorsTek (Japan)'),
(62486, 52666, 'no_lang_code', 'name', 'Conversant (Luxembourg)'),
(62487, 52667, 'no_lang_code', 'name', 'Makita (Germany)'),
(62488, 52668, 'no_lang_code', 'name', 'Kion Group (United States)'),
(62489, 52669, 'no_lang_code', 'name', 'Denso (United States)'),
(62490, 52670, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Netherlands)'),
(62491, 52671, 'no_lang_code', 'name', 'Gestamp (Germany)'),
(62492, 52672, 'no_lang_code', 'name', 'Doosan (South Korea)'),
(62493, 52672, 'ko', 'name', '두산그룹'),
(62494, 52673, 'no_lang_code', 'name', 'Federal Mogul (Belgium)'),
(62495, 52674, 'no_lang_code', 'name', 'Rockwool International (Germany)'),
(62496, 52675, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (United States)'),
(62497, 52676, 'no_lang_code', 'name', 'DrƤger (United States)'),
(62498, 52677, 'no_lang_code', 'name', 'Elopak (Switzerland)'),
(62499, 52678, 'no_lang_code', 'name', 'E Ink (Taiwan)'),
(62500, 52679, 'no_lang_code', 'name', 'Furukawa Electric (United States)'),
(62501, 52680, 'no_lang_code', 'name', 'GAF (United States)'),
(62502, 52681, 'no_lang_code', 'name', 'Garmin (United Kingdom)'),
(62503, 52682, 'no_lang_code', 'name', 'Saudi Arabia Basic Industries (United States)'),
(62504, 52683, 'no_lang_code', 'name', 'Foxconn (Cayman Islands)'),
(62505, 52684, 'no_lang_code', 'name', 'Expro (United Kingdom)'),
(62506, 52685, 'no_lang_code', 'name', 'Garmin (Switzerland)'),
(62507, 52686, 'no_lang_code', 'name', 'Procter & Gamble (Canada)'),
(62508, 52687, 'no_lang_code', 'name', 'Stanley Black & Decker (France)'),
(62509, 52688, 'no_lang_code', 'name', 'Acer (United States)'),
(62510, 52689, 'no_lang_code', 'name', 'General Electric (Japan)'),
(62511, 52690, 'no_lang_code', 'name', 'GKN (France)'),
(62512, 52691, 'no_lang_code', 'name', 'ON Semiconductor (South Korea)'),
(62513, 52692, 'no_lang_code', 'name', 'Gleason (United States)'),
(62514, 52693, 'no_lang_code', 'name', 'Heraeus (Belgium)'),
(62515, 52694, 'no_lang_code', 'name', 'Hexcel (United States)'),
(62516, 52695, 'no_lang_code', 'name', 'Belden (Germany)'),
(62517, 52696, 'no_lang_code', 'name', 'Goss International (France)'),
(62518, 52697, 'no_lang_code', 'name', 'Semtech (Canada)'),
(62519, 52698, 'no_lang_code', 'name', 'Hitachi (Netherlands)'),
(62520, 52699, 'no_lang_code', 'name', 'Techtronic Industries (United Kingdom)'),
(62521, 52700, 'no_lang_code', 'name', 'Koch Industries (France)'),
(62522, 52701, 'no_lang_code', 'name', 'Hottinger Baldwin Messtechnik (Germany)'),
(62523, 52702, 'no_lang_code', 'name', 'Hottinger Baldwin Messtechnik (United States)'),
(62524, 52703, 'no_lang_code', 'name', 'Hitachi (South Korea)'),
(62525, 52703, 'ko', 'name', 'ķžˆķƒ€ģ¹˜'),
(62526, 52704, 'no_lang_code', 'name', 'Gretsch-Unitas (Germany)'),
(62527, 52705, 'no_lang_code', 'name', 'Dover (France)'),
(62528, 52706, 'no_lang_code', 'name', 'Vale (United Kingdom)'),
(62529, 52707, 'no_lang_code', 'name', 'JDA Software (United States)'),
(62530, 52708, 'no_lang_code', 'name', 'Foxconn (United States)'),
(62531, 52709, 'en', 'name', 'ITRI International'),
(62532, 52710, 'no_lang_code', 'name', 'Honeywell (Netherlands)'),
(62533, 52711, 'no_lang_code', 'name', 'Honeywell (Switzerland)'),
(62534, 52712, 'no_lang_code', 'name', 'Husky (Luxembourg)'),
(62535, 52713, 'no_lang_code', 'name', 'Ahlstrom-Munksjƶ (United States)'),
(62536, 52714, 'no_lang_code', 'name', 'E Ink (South Korea)'),
(62537, 52715, 'no_lang_code', 'name', 'INFICON (Switzerland)'),
(62538, 52716, 'no_lang_code', 'name', 'INFICON (Germany)'),
(62539, 52717, 'no_lang_code', 'name', 'Johnson & Johnson (Canada)'),
(62540, 52718, 'no_lang_code', 'name', 'Infineum (United States)'),
(62541, 52719, 'no_lang_code', 'name', 'Kao Corporation (Spain)'),
(62542, 52720, 'no_lang_code', 'name', 'Johnson Controls (France)'),
(62543, 52721, 'no_lang_code', 'name', 'Hydrogenics (Canada)'),
(62544, 52722, 'no_lang_code', 'name', 'InnoLux (China)'),
(62545, 52723, 'no_lang_code', 'name', 'SK Group (United States)'),
(62546, 52724, 'no_lang_code', 'name', 'Illinois Tool Works (France)'),
(62547, 52725, 'no_lang_code', 'name', 'Illinois Tool Works (United Kingdom)'),
(62548, 52726, 'no_lang_code', 'name', 'KBR (United States)'),
(62549, 52727, 'no_lang_code', 'name', 'Mondelēz International (Germany)'),
(62550, 52728, 'no_lang_code', 'name', 'JTEKT (France)'),
(62551, 52729, 'no_lang_code', 'name', 'John Deere (Germany)'),
(62552, 52730, 'no_lang_code', 'name', 'Kodak (Germany)'),
(62553, 52731, 'no_lang_code', 'name', 'Kodak (France)'),
(62554, 52732, 'no_lang_code', 'name', 'Kohler (United Kingdom)'),
(62555, 52733, 'no_lang_code', 'name', 'Kuraray (Germany)'),
(62556, 52734, 'no_lang_code', 'name', 'Konami (United States)'),
(62557, 52735, 'no_lang_code', 'name', 'Nidec (France)'),
(62558, 52736, 'no_lang_code', 'name', 'Kone (Switzerland)'),
(62559, 52737, 'no_lang_code', 'name', 'Konica Minolta (United States)'),
(62560, 52738, 'no_lang_code', 'name', 'Atotech (United States)'),
(62561, 52739, 'no_lang_code', 'name', 'LGL Electronics (Italy)'),
(62562, 52740, 'no_lang_code', 'name', 'LafargeHolcim (France)'),
(62563, 52741, 'no_lang_code', 'name', 'Marel (United States)'),
(62564, 52742, 'no_lang_code', 'name', 'Newell Brands (Germany)'),
(62565, 52743, 'no_lang_code', 'name', 'Bayer (India)'),
(62566, 52744, 'no_lang_code', 'name', 'Medtronic (Luxembourg)'),
(62567, 52745, 'no_lang_code', 'name', 'Marvell (Israel)'),
(62568, 52746, 'no_lang_code', 'name', 'Parker Hannifin (France)'),
(62569, 52747, 'no_lang_code', 'name', 'Nidec (United States)'),
(62570, 52748, 'no_lang_code', 'name', 'MKS Instruments (Japan)'),
(62571, 52749, 'no_lang_code', 'name', 'Imagination Technologies (United States)'),
(62572, 52750, 'no_lang_code', 'name', 'AGCO (United Kingdom)'),
(62573, 52751, 'no_lang_code', 'name', 'AGCO (Netherlands)'),
(62574, 52752, 'no_lang_code', 'name', 'Bausch Health (France)'),
(62575, 52753, 'no_lang_code', 'name', 'Metso (Sweden)'),
(62576, 52754, 'no_lang_code', 'name', 'MediaTek (China)'),
(62577, 52754, 'zh', 'name', 'čÆē™¼ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(62578, 52755, 'no_lang_code', 'name', 'Nikon (United States)'),
(62579, 52756, 'no_lang_code', 'name', 'Quadient (United Kingdom)'),
(62580, 52757, 'no_lang_code', 'name', 'Quadient (Netherlands)'),
(62581, 52758, 'no_lang_code', 'name', 'GEA Group (Denmark)'),
(62582, 52759, 'no_lang_code', 'name', 'Danaher (Switzerland)'),
(62583, 52760, 'no_lang_code', 'name', 'Terumo (United States)'),
(62584, 52761, 'no_lang_code', 'name', 'Red Hat (Israel)'),
(62585, 52762, 'no_lang_code', 'name', 'Adidas (United Kingdom)'),
(62586, 52763, 'no_lang_code', 'name', 'RHI Magnesita (Austria)'),
(62587, 52764, 'no_lang_code', 'name', 'Rehau (France)'),
(62588, 52765, 'no_lang_code', 'name', 'Novo Nordisk (Switzerland)'),
(62589, 52766, 'no_lang_code', 'name', 'Renesas Electronics (United States)'),
(62590, 52767, 'no_lang_code', 'name', 'NSK (United States)'),
(62591, 52768, 'no_lang_code', 'name', 'P-D Refractories (Germany)'),
(62592, 52769, 'no_lang_code', 'name', 'Oclaro (Japan)'),
(62593, 52770, 'no_lang_code', 'name', 'Ball (Sweden)'),
(62594, 52771, 'no_lang_code', 'name', 'Ball (France)'),
(62595, 52772, 'no_lang_code', 'name', 'SPX Corporation (United Kingdom)'),
(62596, 52773, 'no_lang_code', 'name', 'Kudelski (United States)'),
(62597, 52774, 'no_lang_code', 'name', 'Solid (United States)'),
(62598, 52775, 'no_lang_code', 'name', 'Toyota Industries (United States)'),
(62599, 52776, 'no_lang_code', 'name', 'RealNetworks (United States)'),
(62600, 52777, 'no_lang_code', 'name', 'Legrand (United States)'),
(62601, 52778, 'no_lang_code', 'name', 'Rockwell Automation (Switzerland)'),
(62602, 52779, 'no_lang_code', 'name', 'Emerson (Sweden)'),
(62603, 52780, 'no_lang_code', 'name', 'Aptar (Germany)'),
(62604, 52781, 'no_lang_code', 'name', 'Pitney Bowes (France)'),
(62605, 52782, 'no_lang_code', 'name', 'Croda (France)'),
(62606, 52783, 'no_lang_code', 'name', 'Shell (Japan)'),
(62607, 52784, 'no_lang_code', 'name', 'Sidel (Italy)'),
(62608, 52785, 'no_lang_code', 'name', 'Huntsman (Germany)'),
(62609, 52786, 'no_lang_code', 'name', 'Nippon Sheet Glass (Italy)'),
(62610, 52787, 'no_lang_code', 'name', 'Valmet (Sweden)'),
(62611, 52788, 'no_lang_code', 'name', 'Microsoft (Ireland)'),
(62612, 52789, 'no_lang_code', 'name', 'Solvay (United Kingdom)'),
(62613, 52790, 'no_lang_code', 'name', 'Amer Sports (Finland)'),
(62614, 52791, 'no_lang_code', 'name', 'Northrop Grumman (France)'),
(62615, 52792, 'no_lang_code', 'name', 'Blackberry (United States)'),
(62616, 52793, 'no_lang_code', 'name', 'Tecan (Switzerland)'),
(62617, 52794, 'no_lang_code', 'name', 'Technology Partnership (United Kingdom)'),
(62618, 52795, 'no_lang_code', 'name', 'Techtronic Industries (China)'),
(62619, 52796, 'no_lang_code', 'name', 'Synthon (Netherlands)'),
(62620, 52797, 'no_lang_code', 'name', 'RHI Magnesita (Switzerland)'),
(62621, 52798, 'no_lang_code', 'name', 'ON Semiconductor (Taiwan)'),
(62622, 52799, 'no_lang_code', 'name', 'Amphenol (France)'),
(62623, 52800, 'no_lang_code', 'name', 'Straumann (Switzerland)'),
(62624, 52801, 'no_lang_code', 'name', 'Strix (United Kingdom)'),
(62625, 52802, 'no_lang_code', 'name', 'ON Semiconductor (Japan)'),
(62626, 52803, 'no_lang_code', 'name', 'Stryker (France)'),
(62627, 52804, 'no_lang_code', 'name', 'Thomson Reuters (Switzerland)'),
(62628, 52805, 'no_lang_code', 'name', 'Adidas (Canada)'),
(62629, 52806, 'no_lang_code', 'name', 'Tesla (United States)'),
(62630, 52807, 'no_lang_code', 'name', 'Texas Instruments (France)'),
(62631, 52808, 'no_lang_code', 'name', 'Sumitomo Electric Industries (United States)'),
(62632, 52809, 'no_lang_code', 'name', 'Cisco Systems (Norway)'),
(62633, 52810, 'no_lang_code', 'name', 'Juki (United States)'),
(62634, 52811, 'no_lang_code', 'name', 'Michelin (United States)'),
(62635, 52812, 'no_lang_code', 'name', 'United Microelectronics (United States)'),
(62636, 52813, 'no_lang_code', 'name', 'Vivendi (United States)'),
(62637, 52814, 'no_lang_code', 'name', 'Toyota Motor Corporation (Switzerland)'),
(62638, 52815, 'no_lang_code', 'name', 'Schlumberger (British Virgin Islands)'),
(62639, 52816, 'no_lang_code', 'name', 'TE Connectivity (Japan)'),
(62640, 52817, 'no_lang_code', 'name', 'Vaillant (United States)'),
(62641, 52818, 'no_lang_code', 'name', 'Woodward (United States)'),
(62642, 52819, 'no_lang_code', 'name', 'Whirlpool (Netherlands)'),
(62643, 52820, 'no_lang_code', 'name', 'Würth (Germany)'),
(62644, 52821, 'no_lang_code', 'name', 'Kennametal (Germany)'),
(62645, 52822, 'no_lang_code', 'name', 'Veeco (United States)'),
(62646, 52823, 'no_lang_code', 'name', 'Wacker (United States)'),
(62647, 52824, 'no_lang_code', 'name', 'X-Fab (Germany)'),
(62648, 52825, 'no_lang_code', 'name', 'Yazaki (United States)'),
(62649, 52826, 'no_lang_code', 'name', 'Amer Sports (United States)'),
(62650, 52827, 'no_lang_code', 'name', 'TechnipFMC (Germany)'),
(62651, 52828, 'no_lang_code', 'name', 'Züblin (United States)'),
(62652, 52829, 'no_lang_code', 'name', 'Amarin (United Kingdom)'),
(62653, 52830, 'no_lang_code', 'name', 'B. Braun (France)'),
(62654, 52831, 'no_lang_code', 'name', 'Ecolab (France)'),
(62655, 52832, 'no_lang_code', 'name', 'Bio-Rad (France)'),
(62656, 52833, 'no_lang_code', 'name', 'Bio-Rad (United Kingdom)'),
(62657, 52834, 'hu', 'name', 'Fƶldtani Ʃs GeokƩmiai IntƩzet'),
(62658, 52834, 'en', 'name', 'Institute for Geological and Geochemical Research'),
(62659, 52835, 'no_lang_code', 'name', 'Canon (Australia)'),
(62660, 52836, 'no_lang_code', 'name', 'Canon (France)'),
(62661, 52836, 'ja', 'name', 'ć‚­ćƒ¤ćƒŽćƒ³ę Ŗå¼ä¼šē¤¾'),
(62662, 52837, 'no_lang_code', 'name', 'Cardinal Health (Australia)'),
(62663, 52838, 'en', 'name', 'Danube Research Institute'),
(62664, 52838, 'hu', 'name', 'Duna-Kutató Intézet'),
(62665, 52839, 'en', 'name', 'Institute for Legal Studies'),
(62666, 52839, 'hu', 'name', 'MTA TÔrsadalomtudomÔnyi Kutatóközpont JogtudomÔnyi Intézet'),
(62667, 52840, 'en', 'name', 'Institute for Minority Studies'),
(62668, 52840, 'hu', 'name', 'MTA TÔrsadalomtudomÔnyi Kutatóközpont Kisebbségkutató Intézet'),
(62669, 52841, 'no_lang_code', 'name', 'Kraft Heinz (United Kingdom)'),
(62670, 52842, 'no_lang_code', 'name', 'Qiagen (Australia)'),
(62671, 52843, 'hu', 'name', 'ErdƩszeti TudomƔnyos IntƩzet'),
(62672, 52843, 'en', 'name', 'Forest Research Institute'),
(62673, 52844, 'en', 'name', 'Institute of Agricultural Engineering'),
(62674, 52844, 'hu', 'name', 'MezőgazdasĆ”gi GĆ©pesĆ­tĆ©si IntĆ©zet'),
(62675, 52845, 'no_lang_code', 'name', 'Johnson & Johnson (France)'),
(62676, 52846, 'no_lang_code', 'name', 'Evonik (France)'),
(62677, 52847, 'no_lang_code', 'name', 'Hologic (United Kingdom)'),
(62678, 52848, 'no_lang_code', 'name', 'Integra LifeSciences (France)'),
(62679, 52849, 'no_lang_code', 'name', 'Sonoco (United Kingdom)'),
(62680, 52850, 'no_lang_code', 'name', 'Zimmer Biomet (France)'),
(62681, 52851, 'no_lang_code', 'name', 'Bristol-Myers Squibb (France)'),
(62682, 52852, 'no_lang_code', 'name', 'Besins Healthcare (France)'),
(62683, 52853, 'no_lang_code', 'name', 'Abbott (France)'),
(62684, 52854, 'no_lang_code', 'name', 'Takeda (France)'),
(62685, 52855, 'no_lang_code', 'name', 'BASF (France)'),
(62686, 52856, 'no_lang_code', 'name', 'Hillrom (Australia)'),
(62687, 52857, 'no_lang_code', 'name', 'Medical Developments International (Australia)'),
(62688, 52858, 'no_lang_code', 'name', 'Cochlear (France)'),
(62689, 52859, 'no_lang_code', 'name', 'Coloplast (United Kingdom)'),
(62690, 52860, 'no_lang_code', 'name', 'Teva Pharmaceuticals (United Kingdom)'),
(62691, 52861, 'no_lang_code', 'name', 'Leo Pharma (Australia)'),
(62692, 52862, 'no_lang_code', 'name', 'Mirion Technologies (France)'),
(62693, 52863, 'no_lang_code', 'name', 'Michell Instruments (United Kingdom)'),
(62694, 52864, 'no_lang_code', 'name', 'Nitto Chemical Industry (Japan)'),
(62695, 52865, 'no_lang_code', 'name', 'EyePoint Pharmaceuticals (United Kingdom)'),
(62696, 52866, 'no_lang_code', 'name', 'OSI Systems (Australia)'),
(62697, 52867, 'no_lang_code', 'name', 'Perrigo (United Kingdom)'),
(62698, 52868, 'no_lang_code', 'name', 'Prediction Sciences (France)'),
(62699, 52869, 'no_lang_code', 'name', 'Sanofi (Australia)'),
(62700, 52870, 'no_lang_code', 'name', 'Steris (France)'),
(62701, 52871, 'no_lang_code', 'name', 'Teradata (United Kingdom)'),
(62702, 52872, 'no_lang_code', 'name', 'Integra LifeSciences (United Kingdom)'),
(62703, 52873, 'no_lang_code', 'name', 'Baxter (Australia)'),
(62704, 52874, 'no_lang_code', 'name', 'Therabel (France)'),
(62705, 52875, 'no_lang_code', 'name', 'Ecolab (United Kingdom)'),
(62706, 52876, 'no_lang_code', 'name', 'Teleflex (Australia)'),
(62707, 52877, 'no_lang_code', 'name', 'Gilead Sciences (Australia)'),
(62708, 52878, 'no_lang_code', 'name', 'Edwards Lifesciences (United Kingdom)'),
(62709, 52879, 'no_lang_code', 'name', 'Bio Nutrition Health Products (United Kingdom)'),
(62710, 52880, 'no_lang_code', 'name', 'ASC Instrument (France)'),
(62711, 52881, 'en', 'name', 'Carilene'),
(62712, 52882, 'no_lang_code', 'name', 'Bioderma (France)'),
(62713, 52883, 'no_lang_code', 'name', 'Aspide Medical (France)'),
(62714, 52884, 'no_lang_code', 'name', 'Laboratoire CCD (France)'),
(62715, 52885, 'no_lang_code', 'name', 'Comptoir Pharmaceutique & MƩdical (France)'),
(62716, 52886, 'no_lang_code', 'name', 'Ab Medica (France)'),
(62717, 52887, 'no_lang_code', 'name', 'Compumedics (Australia)'),
(62718, 52888, 'no_lang_code', 'name', 'ACM Instruments (United Kingdom)'),
(62719, 52889, 'no_lang_code', 'name', 'CSInstruments (France)'),
(62720, 52890, 'no_lang_code', 'name', 'Acteon (United Kingdom)'),
(62721, 52891, 'no_lang_code', 'name', 'Aston Medical (France)'),
(62722, 52892, 'no_lang_code', 'name', 'Merit Medical (France)'),
(62723, 52893, 'en', 'name', 'Biosystems Informatics Institute'),
(62724, 52894, 'no_lang_code', 'name', 'Cidelec (France)'),
(62725, 52895, 'no_lang_code', 'name', 'Bjl Laboratoires (France)'),
(62726, 52896, 'no_lang_code', 'name', 'Aeronautical and General Instruments'),
(62727, 52897, 'no_lang_code', 'name', 'Blue Industry and Science (France)'),
(62728, 52898, 'en', 'name', 'Coopers Animal Health'),
(62729, 52899, 'no_lang_code', 'name', 'Cosmalia (France)'),
(62730, 52900, 'no_lang_code', 'name', 'AG Medical (France)'),
(62731, 52901, 'no_lang_code', 'name', 'Institut Oenologique de Champagne (France)'),
(62732, 52902, 'en', 'name', 'Charlton Installation Services'),
(62733, 52903, 'no_lang_code', 'name', 'Halma (United Kingdom)'),
(62734, 52904, 'fr', 'name', 'Institut de Biotechnologies Jacques Boy'),
(62735, 52905, 'no_lang_code', 'name', 'Cryonic Medical (France)'),
(62736, 52906, 'fr', 'name', 'Centre Médico Chirurgical de Tronquières'),
(62737, 52907, 'no_lang_code', 'name', 'Sanitarium Health and Wellbeing (Australia)'),
(62738, 52908, 'no_lang_code', 'name', 'Aveni (France)'),
(62739, 52909, 'no_lang_code', 'name', 'TraceTag (France)'),
(62740, 52910, 'en', 'name', 'Australian Road Research Board'),
(62741, 52911, 'no_lang_code', 'name', 'Brothier (France)'),
(62742, 52912, 'no_lang_code', 'name', 'Bioxis Pharmaceuticals (France)'),
(62743, 52913, 'no_lang_code', 'name', 'Woolmark (Australia)'),
(62744, 52914, 'no_lang_code', 'name', 'Alliance Instruments (France)'),
(62745, 52915, 'no_lang_code', 'name', 'Allibert Medical (France)'),
(62746, 52916, 'en', 'name', 'Cityzen Sciences'),
(62747, 52917, 'fr', 'name', 'Cizeta Medicali'),
(62748, 52918, 'no_lang_code', 'name', 'CAD Instruments (France)'),
(62749, 52919, 'en', 'name', 'Avon Medical Centre'),
(62750, 52920, 'no_lang_code', 'name', 'CL Medical (France)'),
(62751, 52921, 'no_lang_code', 'name', 'Sela Light (France)'),
(62752, 52922, 'no_lang_code', 'name', 'Caerbont Automotive Instruments (United Kingdom)'),
(62753, 52923, 'no_lang_code', 'name', 'Vossloh (France)'),
(62754, 52924, 'no_lang_code', 'name', 'Cambridge Nutritional Sciences (United Kingdom)'),
(62755, 52925, 'no_lang_code', 'name', 'Ana Laboratoire'),
(62756, 52926, 'no_lang_code', 'name', 'Bastion (United Kingdom)'),
(62757, 52927, 'en', 'name', 'AMR Centre'),
(62758, 52928, 'no_lang_code', 'name', 'DKD mƩdical (France)'),
(62759, 52929, 'no_lang_code', 'name', 'Deltamedics (France)'),
(62760, 52930, 'no_lang_code', 'name', 'Nuance Communications (United Kingdom)'),
(62761, 52931, 'no_lang_code', 'name', 'DSM (France)'),
(62762, 52932, 'no_lang_code', 'name', 'Duckworth & Kent (United Kingdom)'),
(62763, 52933, 'no_lang_code', 'name', 'AR2i'),
(62764, 52934, 'no_lang_code', 'name', 'Bentley Instruments (France)'),
(62765, 52935, 'fr', 'name', 'Evaux Laboratoires'),
(62766, 52936, 'no_lang_code', 'name', 'DuPont (France)'),
(62767, 52937, 'no_lang_code', 'name', 'Dynamic Digital Depth (Australia)'),
(62768, 52938, 'no_lang_code', 'name', 'Arkopharma (France)'),
(62769, 52939, 'fr', 'name', 'Laboratoires Expanscience'),
(62770, 52940, 'no_lang_code', 'name', 'DMS Imaging (France)'),
(62771, 52941, 'fr', 'name', 'BFA Laboratoires'),
(62772, 52942, 'no_lang_code', 'name', 'Paradigm (France)'),
(62773, 52943, 'no_lang_code', 'name', 'ExxonMobil (France)'),
(62774, 52944, 'en', 'name', 'Arplay Medical'),
(62775, 52945, 'no_lang_code', 'name', 'ExxonMobil (United Kingdom)'),
(62776, 52946, 'fr', 'name', 'France Chirurgie Instrumentation'),
(62777, 52947, 'fr', 'name', 'Association de Recherche en Soins Infirmiers'),
(62778, 52948, 'no_lang_code', 'name', 'Bio Composants MƩdicaux (France)'),
(62779, 52949, 'no_lang_code', 'name', 'Elice (France)'),
(62780, 52950, 'no_lang_code', 'name', 'Eclair (France)'),
(62781, 52951, 'no_lang_code', 'name', 'ALP (France)'),
(62782, 52951, 'fr', 'name', 'Articles De Laboratoire De Precision'),
(62783, 52952, 'no_lang_code', 'name', 'Genoscience Pharma (France)'),
(62784, 52953, 'fr', 'name', 'Association de Recherche pour la Technologie et les Sciences'),
(62785, 52954, 'no_lang_code', 'name', 'Geotechnical Instruments (United Kingdom)'),
(62786, 52955, 'no_lang_code', 'name', 'Advance Product Services (United Kingdom)'),
(62787, 52956, 'no_lang_code', 'name', 'Edra MƩdical (France)'),
(62788, 52957, 'no_lang_code', 'name', 'Isomed (France)'),
(62789, 52958, 'no_lang_code', 'name', 'Arysta LifeScience (France)'),
(62790, 52959, 'no_lang_code', 'name', 'Gilson (United Kingdom)'),
(62791, 52960, 'no_lang_code', 'name', 'Gilson (France)'),
(62792, 52961, 'en', 'name', 'Innovative Medical Partners (France)'),
(62793, 52962, 'no_lang_code', 'name', 'FEV (France)'),
(62794, 52963, 'no_lang_code', 'name', 'TE Connectivity (France)'),
(62795, 52964, 'no_lang_code', 'name', 'FIM Medical (France)'),
(62796, 52965, 'no_lang_code', 'name', 'Laboratoires ABIA (France)'),
(62797, 52966, 'no_lang_code', 'name', 'Grant Instruments (United Kingdom)'),
(62798, 52967, 'no_lang_code', 'name', 'Stada Arzneimittel (United Kingdom)'),
(62799, 52968, 'no_lang_code', 'name', 'Sofralab (France)'),
(62800, 52969, 'no_lang_code', 'name', 'Biophytis (France)'),
(62801, 52970, 'fr', 'name', 'Laboratoires i2m'),
(62802, 52971, 'no_lang_code', 'name', 'Funktion One Research (United Kingdom)'),
(62803, 52972, 'no_lang_code', 'name', 'Furukawa Electric (United Kingdom)'),
(62804, 52973, 'no_lang_code', 'name', 'Embody (France)'),
(62805, 52974, 'no_lang_code', 'name', 'Ransom Naturals (United Kingdom)'),
(62806, 52975, 'no_lang_code', 'name', 'Sefam (France)'),
(62807, 52976, 'no_lang_code', 'name', 'Gecko Biomedical (France)'),
(62808, 52977, 'fr', 'name', 'Entreprise de Fournitures et d''Assistance MƩdicale'),
(62809, 52978, 'fr', 'name', 'Institut Clinident'),
(62810, 52979, 'no_lang_code', 'name', 'Helioscreen (France)'),
(62811, 52980, 'en', 'name', 'Environmental Earth Sciences'),
(62812, 52981, 'fr', 'name', 'Groupe ICV'),
(62813, 52982, 'no_lang_code', 'name', 'Illuminate Group (Australia)'),
(62814, 52983, 'no_lang_code', 'name', 'Ereie (France)'),
(62815, 52984, 'no_lang_code', 'name', 'Espiner Medical (United Kingdom)'),
(62816, 52985, 'no_lang_code', 'name', 'Holiste (France)'),
(62817, 52986, 'no_lang_code', 'name', 'HMS-Vilgo (France)'),
(62818, 52987, 'no_lang_code', 'name', 'Institut Esthederm (France)'),
(62819, 52988, 'no_lang_code', 'name', 'Impeto Medical (France)'),
(62820, 52989, 'fr', 'name', 'Institut EuropƩen de Gestion'),
(62821, 52990, 'en', 'name', 'Laboratoire Phytoceutic'),
(62822, 52991, 'fr', 'name', 'Institut Maupertuis'),
(62823, 52992, 'no_lang_code', 'name', 'Instruments MƩdecine VƩtƩrinaire (France)'),
(62824, 52993, 'no_lang_code', 'name', 'In''Tech Medical (France)'),
(62825, 52994, 'no_lang_code', 'name', 'InFlectis BioScience'),
(62826, 52995, 'fr', 'name', 'Institut de Recherche Fondamentale en Technologies Solaire');
INSERT INTO `ror_settings` VALUES
(62827, 52996, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Australia)'),
(62828, 52997, 'no_lang_code', 'name', 'Sanofi (Austria)'),
(62829, 52998, 'no_lang_code', 'name', 'OrthoD (United Kingdom)'),
(62830, 52999, 'no_lang_code', 'name', 'Oceaneering International (United States)'),
(62831, 53000, 'fr', 'name', 'Institut des Neurosciences Cliniques de Rennes'),
(62832, 53001, 'fr', 'name', 'Institut Georges Lopez'),
(62833, 53002, 'fr', 'name', 'Institut National de Police Scientifique'),
(62834, 53003, 'en', 'name', 'Academy of the bran'),
(62835, 53003, 'it', 'name', 'Accademia della Crusca'),
(62836, 53004, 'fr', 'name', 'Institut Regional Des Materiaux Avance'),
(62837, 53005, 'en', 'name', 'Astro Space Center'),
(62838, 53006, 'en', 'name', 'Institute Of Science De La Vision'),
(62839, 53007, 'no_lang_code', 'name', 'Instant Access Technologies (United Kingdom)'),
(62840, 53008, 'no_lang_code', 'name', 'Hendrix Genetics (France)'),
(62841, 53009, 'fr', 'name', 'Institut SupƩrieur de Plasturgie d''AlenƧon'),
(62842, 53010, 'en', 'name', 'Courant Institute of Mathematical Sciences'),
(62843, 53011, 'en', 'name', 'Institute for Applied Science'),
(62844, 53012, 'fr', 'name', 'Institut SupƩrieur des MatƩriaux du Mans'),
(62845, 53013, 'fr', 'name', 'Institut de Recherche en HƩmatologie et Transplantation'),
(62846, 53014, 'fr', 'name', 'Institut Technique de DƩveloppement des Produits de la Mer'),
(62847, 53015, 'no_lang_code', 'name', 'International Flavors & Fragrances (France)'),
(62848, 53016, 'de', 'name', 'Amt für Veröffentlichungen der Europäischen Union'),
(62849, 53016, 'fr', 'name', 'L''Office des Publications de l’Union EuropĆ©enne'),
(62850, 53016, 'en', 'name', 'Publications Office of the European Union'),
(62851, 53017, 'de', 'name', 'Arbeitsgemeinschaft der Wissenschaftlichen Medizinischen Fachgesellschaften e.V.'),
(62852, 53017, 'en', 'name', 'Association of the Scientific Medical Societies'),
(62853, 53018, 'en', 'name', 'International Committee of the Red Cross'),
(62854, 53019, 'no_lang_code', 'name', 'Stago (France)'),
(62855, 53020, 'en', 'name', 'Bureau of Economic Analysis'),
(62856, 53021, 'fr', 'name', 'MƩthode Jeanne Piaubert institute'),
(62857, 53022, 'en', 'name', 'VeDeCoM Institute'),
(62858, 53023, 'no_lang_code', 'name', 'InstaGroup (United Kingdom)'),
(62859, 53024, 'en', 'name', 'Scottish Intercollegiate Guidelines Network'),
(62860, 53025, 'en', 'name', 'Intergovernmental Panel on Climate Change'),
(62861, 53026, 'no_lang_code', 'name', 'KCI (United Kingdom)'),
(62862, 53027, 'no_lang_code', 'name', 'PAC (France)'),
(62863, 53028, 'en', 'name', 'Healthcare Improvement Scotland'),
(62864, 53029, 'no_lang_code', 'name', 'Int''Air Medical (France)'),
(62865, 53030, 'no_lang_code', 'name', 'InGen (France)'),
(62866, 53031, 'fr', 'name', 'Installations Magasins Gerard Rocquet'),
(62867, 53032, 'no_lang_code', 'name', 'Intelligence in Medical Technologies (France)'),
(62868, 53033, 'fr', 'name', 'SociĆ©tĆ© d’Installation TĆ©lĆ©phonique et Signalisation'),
(62869, 53034, 'en', 'name', 'Innovascience'),
(62870, 53034, 'fr', 'name', 'Laboratoire Innovascience'),
(62871, 53035, 'no_lang_code', 'name', 'Safe Patient Systems (United Kingdom)'),
(62872, 53036, 'no_lang_code', 'name', 'Advanced Medical Institute (Australia)'),
(62873, 53037, 'no_lang_code', 'name', 'Nuxe (France)'),
(62874, 53038, 'no_lang_code', 'name', 'Oenobiol (France)'),
(62875, 53039, 'no_lang_code', 'name', 'LEA Networks (France)'),
(62876, 53040, 'no_lang_code', 'name', 'Symatese (France)'),
(62877, 53041, 'no_lang_code', 'name', 'INTER.MED (France)'),
(62878, 53042, 'no_lang_code', 'name', 'Precilens (France)'),
(62879, 53043, 'no_lang_code', 'name', 'Laboratoire Sicobel (France)'),
(62880, 53044, 'no_lang_code', 'name', 'Intermark Medical Innovations (United Kingdom)'),
(62881, 53045, 'fr', 'name', 'Laboratoire Excell'),
(62882, 53046, 'no_lang_code', 'name', 'Klinger (United Kingdom)'),
(62883, 53047, 'no_lang_code', 'name', 'Laboratoires Genevrier (France)'),
(62884, 53048, 'no_lang_code', 'name', 'L3 MƩdical (France)'),
(62885, 53049, 'no_lang_code', 'name', 'Tradiphar (France)'),
(62886, 53050, 'no_lang_code', 'name', 'Laboratoires Aditec (France)'),
(62887, 53051, 'no_lang_code', 'name', 'HRA Pharma (France)'),
(62888, 53052, 'no_lang_code', 'name', 'Alere (Australia)'),
(62889, 53053, 'no_lang_code', 'name', 'AkzoNobel (France)'),
(62890, 53054, 'no_lang_code', 'name', 'Laphal (France)'),
(62891, 53055, 'fr', 'name', 'Institut de Prise en Charge de l''ObƩsitƩ en Alsace'),
(62892, 53056, 'no_lang_code', 'name', 'Thalgo (France)'),
(62893, 53057, 'no_lang_code', 'name', 'IRIS Instruments (France)'),
(62894, 53058, 'en', 'name', 'Ceres Laboratory'),
(62895, 53058, 'fr', 'name', 'Laboratoire Ceres'),
(62896, 53059, 'no_lang_code', 'name', 'Effik (France)'),
(62897, 53060, 'no_lang_code', 'name', 'Chemineau Labs (France)'),
(62898, 53060, 'fr', 'name', 'Laboratoires Chemineau'),
(62899, 53061, 'no_lang_code', 'name', 'Riga (France)'),
(62900, 53062, 'no_lang_code', 'name', 'Laboratoires M. Richard (France)'),
(62901, 53063, 'no_lang_code', 'name', 'Eurobio (France)'),
(62902, 53064, 'no_lang_code', 'name', 'Groupe Clarins (France)'),
(62903, 53065, 'no_lang_code', 'name', 'SurgiMedia (France)'),
(62904, 53066, 'no_lang_code', 'name', 'Ceraver (France)'),
(62905, 53067, 'no_lang_code', 'name', 'Cyclopharma (France)'),
(62906, 53068, 'no_lang_code', 'name', 'Laboratoire France BƩbƩ Nutrition (France)'),
(62907, 53069, 'no_lang_code', 'name', 'Laboratoires d''Anjou (France)'),
(62908, 53070, 'no_lang_code', 'name', 'G-Pharm (France)'),
(62909, 53071, 'no_lang_code', 'name', 'Laboratory Supplies and Instruments (United Kingdom)'),
(62910, 53072, 'no_lang_code', 'name', 'Laboratoires Gilbert (France)'),
(62911, 53073, 'no_lang_code', 'name', 'IST Medical (France)'),
(62912, 53074, 'no_lang_code', 'name', 'Yves Rocher (France)'),
(62913, 53075, 'no_lang_code', 'name', 'Procter & Gamble (France)'),
(62914, 53076, 'no_lang_code', 'name', 'Memscap (France)'),
(62915, 53077, 'no_lang_code', 'name', 'Puig (France)'),
(62916, 53078, 'en', 'name', 'Ludwig Cancer Research'),
(62917, 53079, 'no_lang_code', 'name', 'Braas Monier (United Kingdom)'),
(62918, 53080, 'no_lang_code', 'name', 'Payot (France)'),
(62919, 53081, 'en', 'name', 'Ludwig Cancer Research'),
(62920, 53082, 'no_lang_code', 'name', 'Setec (France)'),
(62921, 53083, 'no_lang_code', 'name', 'Rodael (France)'),
(62922, 53084, 'no_lang_code', 'name', 'Medicalex (France)'),
(62923, 53085, 'no_lang_code', 'name', 'Laboratoires PhodƩ (France)'),
(62924, 53086, 'no_lang_code', 'name', 'Phytocos (France)'),
(62925, 53087, 'no_lang_code', 'name', 'Laboratoire de Dermo-CosmƩtique Animale (France)'),
(62926, 53088, 'fr', 'name', 'Institution Nationale des Invalides'),
(62927, 53089, 'no_lang_code', 'name', 'Medicamat (France)'),
(62928, 53090, 'fr', 'name', 'Laboratoire de Physique du Rayonnement et de la LumiĆØre'),
(62929, 53091, 'no_lang_code', 'name', 'Dodie (France)'),
(62930, 53092, 'en', 'name', 'Marble Arch Medical Centre'),
(62931, 53093, 'no_lang_code', 'name', 'Gojo (France)'),
(62932, 53094, 'no_lang_code', 'name', 'Laurane Medical (France)'),
(62933, 53095, 'no_lang_code', 'name', 'Laboratoires Rivadis (France)'),
(62934, 53096, 'no_lang_code', 'name', 'Groupe Winncare (France)'),
(62935, 53097, 'no_lang_code', 'name', 'Laboratoires Sebbin (France)'),
(62936, 53098, 'no_lang_code', 'name', 'Sequenom (United Kingdom)'),
(62937, 53099, 'no_lang_code', 'name', 'Sebia (France)'),
(62938, 53100, 'no_lang_code', 'name', 'Medicodose Systems (France)'),
(62939, 53101, 'no_lang_code', 'name', 'Synerlab (France)'),
(62940, 53102, 'no_lang_code', 'name', 'Medicold (France)'),
(62941, 53103, 'fr', 'name', 'Laboratoire Saint Martin'),
(62942, 53104, 'no_lang_code', 'name', 'Laboratoires Standa (France)'),
(62943, 53105, 'no_lang_code', 'name', 'Medicrea (France)'),
(62944, 53106, 'no_lang_code', 'name', 'Laboratoires SVR (France)'),
(62945, 53107, 'no_lang_code', 'name', 'Laboratories Synth Innove (France)'),
(62946, 53108, 'en', 'name', 'Melbourn Science Park'),
(62947, 53109, 'no_lang_code', 'name', 'Lavipharm (France)'),
(62948, 53110, 'no_lang_code', 'name', 'Laboratoires Vivacy (France)'),
(62949, 53111, 'fr', 'name', 'Enilia Ensmic'),
(62950, 53112, 'no_lang_code', 'name', 'Melet Schloesing Laboratoires (France)'),
(62951, 53113, 'no_lang_code', 'name', 'MatƩriel MƩdical (France)'),
(62952, 53114, 'no_lang_code', 'name', 'Biocodex (France)'),
(62953, 53115, 'no_lang_code', 'name', 'Life Medical Control (France)'),
(62954, 53116, 'en', 'name', 'Metabrain Research'),
(62955, 53117, 'no_lang_code', 'name', 'Wockhardt (France)'),
(62956, 53118, 'no_lang_code', 'name', 'Maxi-Steam (Australia)'),
(62957, 53119, 'no_lang_code', 'name', 'Microsoft (France)'),
(62958, 53120, 'no_lang_code', 'name', 'Mdoloris Medical Systems (France)'),
(62959, 53121, 'no_lang_code', 'name', 'Midas Mediscience (United Kingdom)'),
(62960, 53122, 'no_lang_code', 'name', 'MinMaxMedical (France)'),
(62961, 53123, 'fr', 'name', 'Nextep'),
(62962, 53124, 'no_lang_code', 'name', 'Ormihl (France)'),
(62963, 53125, 'no_lang_code', 'name', 'Molecular Engines Laboratories (France)'),
(62964, 53126, 'no_lang_code', 'name', 'LSO Medical (France)'),
(62965, 53127, 'no_lang_code', 'name', 'Nintendo (France)'),
(62966, 53128, 'no_lang_code', 'name', 'Prince Medical (France)'),
(62967, 53129, 'no_lang_code', 'name', 'Laboratoires Nogues (France)'),
(62968, 53130, 'no_lang_code', 'name', 'Presi (France)'),
(62969, 53131, 'no_lang_code', 'name', 'Fruits DƩlice (France)'),
(62970, 53132, 'no_lang_code', 'name', 'Pi (United Kingdom)'),
(62971, 53133, 'no_lang_code', 'name', 'Moria (France)'),
(62972, 53134, 'no_lang_code', 'name', 'Medical Process (France)'),
(62973, 53135, 'no_lang_code', 'name', 'MƩdical Innovation DƩveloppement (France)'),
(62974, 53136, 'en', 'name', 'Northern Sydney Local Health District'),
(62975, 53137, 'no_lang_code', 'name', 'Ella BachƩ (France)'),
(62976, 53138, 'no_lang_code', 'name', 'Medical innovation (France)'),
(62977, 53139, 'no_lang_code', 'name', 'Platinum Equity (United Kingdom)'),
(62978, 53140, 'no_lang_code', 'name', 'Laboratoires Prod''Hyg (France)'),
(62979, 53141, 'no_lang_code', 'name', 'Laboratoires Spiral (France)'),
(62980, 53142, 'no_lang_code', 'name', 'Robotik Technology (France)'),
(62981, 53143, 'no_lang_code', 'name', 'Medical Production (France)'),
(62982, 53144, 'no_lang_code', 'name', 'SEE Laborde JP (France)'),
(62983, 53145, 'no_lang_code', 'name', 'NTX Research (France)'),
(62984, 53146, 'en', 'name', 'Medical Solutions'),
(62985, 53147, 'no_lang_code', 'name', 'Protip Medical (France)'),
(62986, 53148, 'no_lang_code', 'name', 'P2A Medical (France)'),
(62987, 53149, 'no_lang_code', 'name', 'NVH Medicinal (France)'),
(62988, 53150, 'no_lang_code', 'name', 'Psychometric Research & Development (United Kingdom)'),
(62989, 53151, 'fr', 'name', 'Laboratoire Dr Renaud'),
(62990, 53152, 'no_lang_code', 'name', 'Sapphire Research & Electronics (United Kingdom)'),
(62991, 53153, 'fr', 'name', 'Herbarom Laboratoire'),
(62992, 53154, 'no_lang_code', 'name', 'Quantum (Australia)'),
(62993, 53155, 'no_lang_code', 'name', 'Setaram Instrumentation (France)'),
(62994, 53156, 'no_lang_code', 'name', 'Baker Hughes (United Kingdom)'),
(62995, 53157, 'no_lang_code', 'name', 'Dermscan Group (France)'),
(62996, 53158, 'no_lang_code', 'name', 'Aurea Agrosciences (France)'),
(62997, 53159, 'no_lang_code', 'name', 'Parburch Medical Developments (United Kingdom)'),
(62998, 53160, 'no_lang_code', 'name', 'Laboratoire Odost (France)'),
(62999, 53161, 'no_lang_code', 'name', 'Scaleo Medical (France)'),
(63000, 53162, 'no_lang_code', 'name', 'Shell (France)'),
(63001, 53163, 'en', 'name', 'Cancer Research UK Manchester Institute'),
(63002, 53164, 'no_lang_code', 'name', 'Oncomedics (France)'),
(63003, 53165, 'no_lang_code', 'name', 'OneFit Medical (France)'),
(63004, 53166, 'no_lang_code', 'name', 'Scalzo Automotive Research (Australia)'),
(63005, 53167, 'no_lang_code', 'name', 'A3IP (France)'),
(63006, 53168, 'no_lang_code', 'name', 'Cegedim (France)'),
(63007, 53169, 'no_lang_code', 'name', 'Schiller (France)'),
(63008, 53170, 'no_lang_code', 'name', 'Strainstall (United Kingdom)'),
(63009, 53171, 'no_lang_code', 'name', 'Structural Science Composites (United Kingdom)'),
(63010, 53172, 'no_lang_code', 'name', 'Resonance Health (Australia)'),
(63011, 53173, 'no_lang_code', 'name', 'Perrigo (France)'),
(63012, 53174, 'no_lang_code', 'name', 'Science et MƩdecine (France)'),
(63013, 53175, 'no_lang_code', 'name', 'SLB MƩdical (France)'),
(63014, 53176, 'no_lang_code', 'name', 'Rhopoint Instruments (United Kingdom)'),
(63015, 53177, 'no_lang_code', 'name', 'Jules Richard Instruments (France)'),
(63016, 53178, 'fr', 'name', 'PhagogĆØne'),
(63017, 53179, 'fr', 'name', 'SociĆ©tĆ© franƧaise d’instruments de chirurgie'),
(63018, 53179, 'no_lang_code', 'name', 'Sofic (France)'),
(63019, 53180, 'no_lang_code', 'name', 'SurgiQual Institute (France)'),
(63020, 53181, 'no_lang_code', 'name', 'SoftFil (France)'),
(63021, 53182, 'no_lang_code', 'name', 'Photonic Research Systems (United Kingdom)'),
(63022, 53183, 'no_lang_code', 'name', 'Nutreov Laboratoires (France)'),
(63023, 53184, 'no_lang_code', 'name', 'SCL International'),
(63024, 53185, 'no_lang_code', 'name', 'Scot Young Research (United Kingdom)'),
(63025, 53186, 'no_lang_code', 'name', 'Sopac Medical (France)'),
(63026, 53187, 'en', 'name', 'Scottish Health Services'),
(63027, 53188, 'no_lang_code', 'name', 'Synchro Medical (France)'),
(63028, 53189, 'no_lang_code', 'name', 'Sotec MƩdical (France)'),
(63029, 53190, 'no_lang_code', 'name', 'Selenium Medical (France)'),
(63030, 53191, 'en', 'name', 'South West Thames Institute for Renal Research'),
(63031, 53192, 'no_lang_code', 'name', 'Total Security Installations (United Kingdom)'),
(63032, 53193, 'no_lang_code', 'name', 'Spenco Medical (United Kingdom)'),
(63033, 53194, 'fr', 'name', 'Technologie MƩdicale (France)'),
(63034, 53195, 'no_lang_code', 'name', 'Wessex Lifts (United Kingdom)'),
(63035, 53196, 'no_lang_code', 'name', 'EDAP TMS (France)'),
(63036, 53197, 'no_lang_code', 'name', 'West Pharmaceutical Services (United Kingdom)'),
(63037, 53198, 'no_lang_code', 'name', 'Urgo Laboratories (France)'),
(63038, 53199, 'no_lang_code', 'name', 'Trendrail (United KIngdom)'),
(63039, 53200, 'no_lang_code', 'name', 'Boskalis (United Kingdom)'),
(63040, 53201, 'no_lang_code', 'name', 'Trewavis Surgical (Australia)'),
(63041, 53202, 'no_lang_code', 'name', 'Trod Medical (France)'),
(63042, 53203, 'no_lang_code', 'name', 'Tethys Instruments (France)'),
(63043, 53204, 'en', 'name', 'Westminster Guarantee Protection Trustees'),
(63044, 53205, 'en', 'name', 'Vanguard Healthcare'),
(63045, 53206, 'no_lang_code', 'name', 'UCB Pharma (France)'),
(63046, 53207, 'fr', 'name', 'Centre d''Orthro-Podologie & d''OrthopƩdie'),
(63047, 53207, 'no_lang_code', 'name', 'Thion Medical (France)'),
(63048, 53208, 'no_lang_code', 'name', 'Thomas Sinclair Laboratories (France)'),
(63049, 53209, 'no_lang_code', 'name', 'Invisio (Germany)'),
(63050, 53210, 'no_lang_code', 'name', 'Isotopx (United Kingdom)'),
(63051, 53211, 'no_lang_code', 'name', 'Thames Medical (United Kingdom)'),
(63052, 53212, 'en', 'name', 'Joint European Torus'),
(63053, 53213, 'en', 'name', 'Palo Alto Research Center'),
(63054, 53214, 'en', 'name', 'Dr. Reddy''s Foundation'),
(63055, 53215, 'en', 'name', 'Central Institute of Temperate Horticulture'),
(63056, 53216, 'no_lang_code', 'name', 'Edwards Lifesciences (Switzerland)'),
(63057, 53217, 'en', 'name', 'Institute of Astronomy and Astrophysics, Academia Sinica'),
(63058, 53218, 'en', 'name', 'Institute of Physics, Academia Sinica'),
(63059, 53218, 'zh', 'name', '中央研究院物理研究所'),
(63060, 53219, 'en', 'name', 'Institute of Atomic and Molecular Sciences, Academia Sinica'),
(63061, 53219, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢åŽŸå­čˆ‡åˆ†å­ē§‘å­øē ”ē©¶ę‰€'),
(63062, 53220, 'en', 'name', 'Research Center for Applied Science, Academia Sinica'),
(63063, 53220, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ę‡‰ē”Øē§‘å­øē ”ē©¶äø­åæƒ'),
(63064, 53221, 'no_lang_code', 'name', 'Electro Automation (Ireland)'),
(63065, 53222, 'de', 'name', 'Fachkommission für Hochspannungsfragen'),
(63066, 53223, 'no_lang_code', 'name', 'Algae Health (Ireland)'),
(63067, 53223, 'ga', 'name', 'Slainte Alga Teoranta'),
(63068, 53224, 'it', 'name', 'Istituto Superconduttori, Materiali Innovativi e Dispositivi'),
(63069, 53224, 'en', 'name', 'Superconducting and other Innovative Materials and Devices Institute'),
(63070, 53225, 'no_lang_code', 'name', 'Laboratoire Pino Aliprandini (Switzerland)'),
(63071, 53226, 'en', 'name', 'Chinese Culinary Institute'),
(63072, 53227, 'en', 'name', 'Asia Pacific Center for Theoretical Physics'),
(63073, 53228, 'en', 'name', 'Alpinia Institute'),
(63074, 53229, 'en', 'name', 'Institute of Physics Rosario'),
(63075, 53229, 'es', 'name', 'Instituto de FĆ­sica Rosario'),
(63076, 53230, 'en', 'name', 'Environmental Research Instruments'),
(63077, 53231, 'en', 'name', 'TIFR Centre for Interdisciplinary Sciences'),
(63078, 53232, 'en', 'name', 'Daresbury Laboratory'),
(63079, 53233, 'en', 'name', 'Hair Science Institute'),
(63080, 53234, 'en', 'name', 'Variable Energy Cyclotron Centre'),
(63081, 53235, 'en', 'name', 'Applied Research Associates'),
(63082, 53236, 'no_lang_code', 'name', 'Hanlun Information (China)'),
(63083, 53236, 'zh', 'name', 'å…“ä¼¦äæ”ęÆęœ‰é™å…¬åø'),
(63084, 53237, 'no_lang_code', 'name', 'Argomedical (Switzerland)'),
(63085, 53238, 'no_lang_code', 'name', 'Harry Winston (Switzerland)'),
(63086, 53239, 'de', 'name', 'MSA Schweiz GmbH'),
(63087, 53239, 'no_lang_code', 'name', 'Mine Safety Appliances (Switzerland)'),
(63088, 53240, 'no_lang_code', 'name', 'Artificial Sensing Instruments (Switzerland)'),
(63089, 53241, 'en', 'name', 'Healthcare Technology Innovation Centre'),
(63090, 53242, 'no_lang_code', 'name', 'Schaeffer (Switzerland)'),
(63091, 53243, 'no_lang_code', 'name', 'Elekta (Switzerland)'),
(63092, 53244, 'no_lang_code', 'name', 'Atheris Laboratories (Switzerland)'),
(63093, 53245, 'en', 'name', 'Dalmia Institute of Scientific & Industrial Research'),
(63094, 53246, 'de', 'name', 'Institut für Biomedizinische Technik'),
(63095, 53246, 'en', 'name', 'Institute for Biomedical Engineering'),
(63096, 53247, 'no_lang_code', 'name', 'ELEQ (Netherlands)'),
(63097, 53248, 'en', 'name', 'Institut Icare'),
(63098, 53249, 'en', 'name', 'Basko Healthcare'),
(63099, 53250, 'no_lang_code', 'name', 'Digitech Services (New Zealand)'),
(63100, 53251, 'en', 'name', 'Central Institute for Women in Agriculture'),
(63101, 53252, 'de', 'name', 'Aron Vajna Historischer Blechblasinstrumentenbau'),
(63102, 53253, 'no_lang_code', 'name', 'Boskalis (Netherlands)'),
(63103, 53253, 'nl', 'name', 'Koninklijke Boskalis Westminster N.V.'),
(63104, 53254, 'no_lang_code', 'name', 'AOMB Intellectual Property (Netherlands)'),
(63105, 53255, 'no_lang_code', 'name', 'B. Braun (Switzerland)'),
(63106, 53256, 'no_lang_code', 'name', 'MJ Group (India)'),
(63107, 53257, 'en', 'name', 'B.Well Swiss'),
(63108, 53258, 'en', 'name', 'Mahatma Gandhi Institute for Rural Industrialization'),
(63109, 53259, 'no_lang_code', 'name', 'Integrated Chinese Medicine (China)'),
(63110, 53260, 'no_lang_code', 'name', 'Maisey (New Zealand)'),
(63111, 53261, 'de', 'name', 'Büchi Labortechnik'),
(63112, 53262, 'no_lang_code', 'name', 'Dentsply Sirona (Switzerland)'),
(63113, 53263, 'no_lang_code', 'name', 'Burnside Autocyl (Ireland)'),
(63114, 53264, 'no_lang_code', 'name', 'Mankind Pharma (India)'),
(63115, 53265, 'no_lang_code', 'name', 'IRDAM (Switzerland)'),
(63116, 53266, 'no_lang_code', 'name', 'Rebnok (India)'),
(63117, 53267, 'no_lang_code', 'name', 'RPG Life Sciences (India)'),
(63118, 53268, 'no_lang_code', 'name', 'CNH Industrial (Switzerland)'),
(63119, 53269, 'en', 'name', 'Medical Biobank Swiss Institute'),
(63120, 53270, 'no_lang_code', 'name', 'Medical Dispensing Systems (Netherlands)'),
(63121, 53271, 'en', 'name', 'Clayton Foundation'),
(63122, 53272, 'no_lang_code', 'name', 'Medical Technology Transfer (Netherlands)'),
(63123, 53273, 'no_lang_code', 'name', 'Celtrak (Ireland)'),
(63124, 53274, 'no_lang_code', 'name', 'Medicel (Switzerland)'),
(63125, 53275, 'no_lang_code', 'name', 'SMT (India)'),
(63126, 53276, 'no_lang_code', 'name', 'Medicoat (Switzerland)'),
(63127, 53277, 'no_lang_code', 'name', 'Schmizo (Switzerland)'),
(63128, 53278, 'no_lang_code', 'name', 'Nypro (Ireland)'),
(63129, 53279, 'en', 'name', 'National Digital Research Centre'),
(63130, 53280, 'no_lang_code', 'name', 'SIS Medical (Switzerland)'),
(63131, 53281, 'no_lang_code', 'name', 'Meteolabor (Switzerland)'),
(63132, 53282, 'en', 'name', 'Kerala Institute for Research, Training and Development Studies of Scheduled Castes and Tribes'),
(63133, 53283, 'de', 'name', 'Mintaka Fondation Pour la Recherche Medicale'),
(63134, 53283, 'no_lang_code', 'name', 'Mintaka Foundation for Medical Research'),
(63135, 53284, 'no_lang_code', 'name', 'Becton Dickinson (Netherlands)'),
(63136, 53285, 'de', 'name', 'Labor Spiez'),
(63137, 53285, 'rm', 'name', 'Labor Spiez'),
(63138, 53285, 'fr', 'name', 'Spiez Laboratory'),
(63139, 53285, 'it', 'name', 'Laboratorio Spiez'),
(63140, 53286, 'no_lang_code', 'name', 'Kingspan (Ireland)'),
(63141, 53287, 'no_lang_code', 'name', 'Mitsui & Co (Ireland)'),
(63142, 53288, 'no_lang_code', 'name', 'Institute for Sustainable Process Technology'),
(63143, 53289, 'no_lang_code', 'name', 'Mallinckrodt (Ireland)'),
(63144, 53290, 'no_lang_code', 'name', 'Kuiper Medical Instruments (Netherlands)'),
(63145, 53290, 'nl', 'name', 'Kuiper Medische Instrumenten'),
(63146, 53291, 'no_lang_code', 'name', 'Oertli Instrumente (Switzerland)'),
(63147, 53292, 'no_lang_code', 'name', 'Portasol (Ireland)'),
(63148, 53293, 'no_lang_code', 'name', 'Shellfish Ireland (Ireland)'),
(63149, 53294, 'no_lang_code', 'name', 'Mane (India)'),
(63150, 53295, 'no_lang_code', 'name', 'Labomatic Instruments (Switzerland)'),
(63151, 53296, 'no_lang_code', 'name', 'Ziemer Ophthalmic Systems (Switzerland)'),
(63152, 53297, 'no_lang_code', 'name', 'Metabo (Switzerland)'),
(63153, 53298, 'no_lang_code', 'name', 'L.A.C. (Switzerland)'),
(63154, 53299, 'no_lang_code', 'name', 'Radiometer (Switzerland)'),
(63155, 53300, 'nl', 'name', 'Promens Care'),
(63156, 53301, 'no_lang_code', 'name', 'VAF Instruments (Netherlands)'),
(63157, 53302, 'no_lang_code', 'name', 'Luciol Instruments (Switzerland)'),
(63158, 53303, 'no_lang_code', 'name', 'Abbott (Switzerland)'),
(63159, 53304, 'no_lang_code', 'name', 'Varian Medical Systems (Switzerland)'),
(63160, 53305, 'en', 'name', 'Ludwig Cancer Research'),
(63161, 53306, 'no_lang_code', 'name', 'Storz Medical (Switzerland)'),
(63162, 53307, 'no_lang_code', 'name', 'Lutz Medical Engineering (Switzerland)'),
(63163, 53308, 'nl', 'name', 'Vinitex Laboratoriuminrichtingen'),
(63164, 53308, 'no_lang_code', 'name', 'Vinitex Laboratory Systems (Netherlands)'),
(63165, 53309, 'de', 'name', 'Pro Pferd'),
(63166, 53310, 'no_lang_code', 'name', 'Vita Green Health Products (China)'),
(63167, 53310, 'zh', 'name', 'ē¶­ē‰¹å„éˆ'),
(63168, 53311, 'no_lang_code', 'name', 'Straub Medical (Switzerland)'),
(63169, 53312, 'en', 'name', 'Van Vliet Medical Supply'),
(63170, 53313, 'no_lang_code', 'name', 'Vyome Biosciences (India)'),
(63171, 53314, 'no_lang_code', 'name', 'Willson Band Instruments (Switzerland)'),
(63172, 53315, 'no_lang_code', 'name', 'Texas Instruments (Netherlands)'),
(63173, 53316, 'no_lang_code', 'name', 'Waitaki Biosciences (New Zealand)'),
(63174, 53317, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (Switzerland)'),
(63175, 53318, 'no_lang_code', 'name', 'Abbott (India)'),
(63176, 53319, 'de', 'name', 'Zentrum für Labormedizin'),
(63177, 53320, 'de', 'name', 'Schweizerische Stiftung für Edelstein-Forschung'),
(63178, 53320, 'en', 'name', 'Swiss Foundation for the Research of Gemstones'),
(63179, 53321, 'en', 'name', 'Thommen Medical (Switzerland)'),
(63180, 53322, 'no_lang_code', 'name', 'PerkinElmer (Netherlands)'),
(63181, 53323, 'no_lang_code', 'name', 'Twente Medical Systems International (Netherlands)'),
(63182, 53324, 'no_lang_code', 'name', 'Portmann Instruments (Switzerland)'),
(63183, 53325, 'no_lang_code', 'name', 'Allergan (Switzerland)'),
(63184, 53326, 'no_lang_code', 'name', 'Precisa Gravimetrics (Switzerland)'),
(63185, 53327, 'no_lang_code', 'name', 'Theranostics (New Zealand)'),
(63186, 53328, 'en', 'name', 'G. M. Reddy Research Foundation'),
(63187, 53329, 'no_lang_code', 'name', 'Natus (New Zealand)'),
(63188, 53330, 'en', 'name', 'Regional Research Institute of Unani Medicine'),
(63189, 53331, 'no_lang_code', 'name', 'Biogen (Switzerland)'),
(63190, 53332, 'no_lang_code', 'name', 'PerkinElmer (Ireland)'),
(63191, 53333, 'no_lang_code', 'name', 'Richcore Lifesciences (India)'),
(63192, 53334, 'no_lang_code', 'name', 'Danaher (Ireland)'),
(63193, 53335, 'no_lang_code', 'name', 'Bellus Health (Switzerland)'),
(63194, 53336, 'no_lang_code', 'name', 'Combilift (Ireland)'),
(63195, 53337, 'no_lang_code', 'name', 'General Electric (New Zealand)'),
(63196, 53338, 'no_lang_code', 'name', 'Cardinal Health (Switzerland)'),
(63197, 53339, 'no_lang_code', 'name', 'AbbVie (Netherlands)'),
(63198, 53340, 'no_lang_code', 'name', 'Cell Medica (Switzerland)'),
(63199, 53341, 'no_lang_code', 'name', 'Dow Chemical (India)'),
(63200, 53342, 'no_lang_code', 'name', 'DrƤger (Netherlands)'),
(63201, 53343, 'no_lang_code', 'name', 'Cook Medical (India)'),
(63202, 53344, 'no_lang_code', 'name', 'AbbVie (Ireland)'),
(63203, 53345, 'no_lang_code', 'name', 'Enzo Life Sciences (Switzerland)'),
(63204, 53346, 'no_lang_code', 'name', 'KCI (Ireland)'),
(63205, 53347, 'no_lang_code', 'name', 'Hendrix Genetics (Netherlands)'),
(63206, 53348, 'no_lang_code', 'name', 'Chevron (Netherlands)'),
(63207, 53349, 'no_lang_code', 'name', 'Sanofi (Switzerland)'),
(63208, 53350, 'no_lang_code', 'name', 'OmniActive Health Technologies (India)'),
(63209, 53351, 'no_lang_code', 'name', 'National Instruments (Ireland)'),
(63210, 53352, 'no_lang_code', 'name', 'Prothena (Ireland)'),
(63211, 53353, 'no_lang_code', 'name', 'Millar (New Zealand)'),
(63212, 53354, 'no_lang_code', 'name', 'Qiagen (Switzerland)'),
(63213, 53355, 'no_lang_code', 'name', 'Fresenius Kabi (Netherlands)'),
(63214, 53356, 'no_lang_code', 'name', 'Barco (Netherlands)'),
(63215, 53357, 'no_lang_code', 'name', 'Sigma-Tau (Switzerland)'),
(63216, 53358, 'no_lang_code', 'name', 'Texas Instruments (India)'),
(63217, 53359, 'no_lang_code', 'name', 'Texas Instruments (Switzerland)'),
(63218, 53360, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Ireland)'),
(63219, 53361, 'en', 'name', 'Taiwan Textile Research Institute'),
(63220, 53361, 'zh', 'name', 'ē“”ē¹”ē”¢ę„­ē¶œåˆē ”ē©¶ę‰€'),
(63221, 53362, 'en', 'name', 'Institute of Medicinal Molecular Design'),
(63222, 53362, 'ja', 'name', 'åŒ»č–¬åˆ†å­čØ­čØˆē ”ē©¶ę‰€'),
(63223, 53363, 'en', 'name', 'Advanced Life Science Institute'),
(63224, 53363, 'ja', 'name', 'å…ˆē«Æē”Ÿå‘½ē§‘å­¦ē ”ē©¶ę‰€'),
(63225, 53364, 'en', 'name', 'Nordic Institute of Asian Studies'),
(63226, 53364, 'da', 'name', 'Nordisk Institut for Asien Studier'),
(63227, 53365, 'en', 'name', 'Asai Germanium Research Institute'),
(63228, 53365, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęµ…äŗ•ć‚²ćƒ«ćƒžćƒ‹ć‚¦ćƒ ē ”ē©¶ę‰€'),
(63229, 53366, 'en', 'name', 'Japan Institute for Advanced Dentistry'),
(63230, 53366, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę­Æē§‘å…ˆē«ÆęŠ€č”“ē ”ē©¶ę‰€'),
(63231, 53367, 'en', 'name', 'IMI TAMI Institute for Research and Development'),
(63232, 53368, 'no_lang_code', 'name', 'Zetetic Institute'),
(63233, 53369, 'en', 'name', 'Shikoku Research Institute'),
(63234, 53369, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å››å›½ē·åˆē ”ē©¶ę‰€'),
(63235, 53370, 'de', 'name', 'ITW'),
(63236, 53371, 'no_lang_code', 'name', 'Biotest (United States)'),
(63237, 53372, 'en', 'name', 'Jilin Zixin Pharmaceutical Industrial'),
(63238, 53372, 'zh', 'name', 'å‰ęž—ē“«é‘«čÆäøšč‚”ä»½ęœ‰é™å…¬åøå®˜ę–¹ē½‘ē«™'),
(63239, 53373, 'en', 'name', 'Conaris'),
(63240, 53374, 'de', 'name', 'IFF Weimar'),
(63241, 53375, 'no_lang_code', 'name', 'Atlas Copco (Switzerland)'),
(63242, 53376, 'no_lang_code', 'name', 'Stratec (Switzerland)'),
(63243, 53377, 'no_lang_code', 'name', 'D. Western Therapeutics Institute (Japan)'),
(63244, 53378, 'en', 'name', 'Physical and Technical Institute'),
(63245, 53378, 'be', 'name', 'Физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63246, 53379, 'en', 'name', 'Sri Lanka Institute of Nanotechnology'),
(63247, 53380, 'en', 'name', 'Central Silk Technological Research Institute'),
(63248, 53381, 'en', 'name', 'GlyTech'),
(63249, 53381, 'ja', 'name', 'ē³–éŽ–å·„å­¦ē ”ē©¶ę‰€ć«'),
(63250, 53382, 'en', 'name', 'Life Science Patents'),
(63251, 53383, 'no_lang_code', 'name', 'Jiangsu Huadong Institute Of Li-Ion Battery'),
(63252, 53384, 'en', 'name', 'Institute of Rheological Functions of Food'),
(63253, 53384, 'ja', 'name', 'ćƒ¬ć‚Ŗćƒ­ć‚øćƒ¼ę©Ÿčƒ½é£Ÿå“ē ”ē©¶ę‰€'),
(63254, 53385, 'en', 'name', 'Changchun Institute of Biological Products'),
(63255, 53385, 'zh', 'name', 'é•æę˜„ē”Ÿē‰©åˆ¶å“ē ”ē©¶ę‰€ 编辑'),
(63256, 53386, 'en', 'name', 'Institute of Applied Physics'),
(63257, 53386, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной физики ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(63258, 53387, 'de', 'name', 'Institut Virion\\Serion'),
(63259, 53388, 'en', 'name', 'Coir Board of India'),
(63260, 53389, 'de', 'name', 'Institut für Prävention und Nachsorge'),
(63261, 53390, 'en', 'name', 'Central Tasar Research & Training Institute'),
(63262, 53391, 'en', 'name', 'Institute Of Pesticides Formulation Technology'),
(63263, 53392, 'en', 'name', 'National Captioning Institute'),
(63264, 53393, 'en', 'name', 'Illinois Back Institute'),
(63265, 53394, 'de', 'name', 'Institut für Produktqualität'),
(63266, 53395, 'en', 'name', 'Japan Institute of Wastewater Engineering Technology'),
(63267, 53395, 'ja', 'name', 'ę—„ęœ¬äø‹ę°“é“ę–°ęŠ€č”“ę©Ÿę§‹'),
(63268, 53396, 'en', 'name', 'L.V. Gromashevsky Institute of Epidemiology and Infectious Diseases of the National Academy of Medical Sciences of Ukraine'),
(63269, 53396, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ епіГеміології та інфекційних хвороб Š›.Š’. Š“Ń€Š¾Š¼Š°ŃˆŠµŠ²ŃŃŒŠ½Š¾Š³Š¾ŠŠŠœŠ України'),
(63270, 53397, 'en', 'name', 'All-Russian Scientific and Research Institute for Medical Engineering'),
(63271, 53397, 'ru', 'name', 'Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И Š˜Š”ŠŸŠ«Š¢ŠŠ¢Š•Š›Š¬ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠžŠ™ Š¢Š•Š„ŠŠ˜ŠšŠ˜'),
(63272, 53398, 'en', 'name', 'Research Institute of Synthetic Fiber with the Pilot Plant'),
(63273, 53398, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾ - ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ синтетического волокна с ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¼ завоГом'),
(63274, 53399, 'en', 'name', 'State Titanium Research and Design Institute'),
(63275, 53399, 'ru', 'name', 'Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š˜Š¢ŠŠŠ'),
(63276, 53400, 'en', 'name', 'Institute of Engineering Thermophysics'),
(63277, 53400, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технічної теплофізики ŠŠŠ України'),
(63278, 53401, 'de', 'name', 'KVB Institut für Konstruktion und Verbundbauweisen'),
(63279, 53402, 'de', 'name', 'Schweißtechnische Lehr- und Versuchsanstalt'),
(63280, 53403, 'en', 'name', 'Veterinary Diagnostics Institute'),
(63281, 53404, 'en', 'name', 'Experimental Scientific Research Institute of Forging and Press Engineering'),
(63282, 53404, 'ru', 'name', 'Š­ŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ·Š½ŠµŃ‡Š½Š¾-прессового Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(63283, 53405, 'en', 'name', 'Experimental Research Institute of Metal-Cutting Machine Tools'),
(63284, 53405, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»Š¾Ń€ŠµŠ¶ŃƒŃ‰ŠøŃ… станков'),
(63285, 53406, 'en', 'name', 'Synthetic Rubber Research Institute named after S. V. Lebedeva'),
(63286, 53406, 'ru', 'name', 'ŠŠ˜Š˜ синтетического ŠŗŠ°ŃƒŃ‡ŃƒŠŗŠ° имени Š”. Š’. ЛебеГева'),
(63287, 53407, 'en', 'name', 'East West Medical Research Institute'),
(63288, 53408, 'en', 'name', 'Institute of Cytochemistry and Molecular Pharmacology'),
(63289, 53408, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цитохимии Šø Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ фармакологии'),
(63290, 53409, 'en', 'name', 'National Institute of Research on Jute and Allied Fibre Technology'),
(63291, 53410, 'de', 'name', 'Friedrich-Wilhelm-Bessel-Institut Forschungsgesellschaft'),
(63292, 53411, 'en', 'name', 'Powder Metallurgy Institute'),
(63293, 53411, 'be', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠžŠ ŠžŠØŠšŠžŠ’ŠžŠ™ ŠœŠ•Š¢ŠŠ›Š›Š£Š Š“Š˜Š˜'),
(63294, 53412, 'en', 'name', 'Federal Agency for Legal Protection of Military Results, Special and Dual Purpose'),
(63295, 53412, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ агентство по правовой защите Ń€ŠµŠ·ŃƒŠ»ŃŒŃ‚Š°Ń‚Š¾Š² ŠøŠ½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Š¾Š¹ Š“ŠµŃŃ‚ŠµŠ»ŃŒŠ½Š¾ŃŃ‚Šø военного'),
(63296, 53413, 'aa', 'name', 'Centro de Salud Miguel de Cervantes'),
(63297, 53413, 'en', 'name', 'Miguel de Cervantes Health Care Centre'),
(63298, 53414, 'de', 'name', 'Institut für Automatisierung und Informatik'),
(63299, 53415, 'en', 'name', 'Institute of Medical Polymers'),
(63300, 53416, 'en', 'name', 'Institute of Mechanics of Metal-Polymer Systems'),
(63301, 53416, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики металлополимерных систем им. Š’.А. Белого'),
(63302, 53417, 'en', 'name', 'Carter BloodCare'),
(63303, 53418, 'en', 'name', '1Globe Health Institute'),
(63304, 53419, 'ro', 'name', 'Institutul Naţional de Cercetare-Dezvoltare pentru Fizică Tehnică'),
(63305, 53419, 'en', 'name', 'National Institute of Research and Development for Technical Physics'),
(63306, 53420, 'en', 'name', 'St. Petersburg Institute of Bioregulation and Gerontology'),
(63307, 53420, 'ru', 'name', 'ŠšŠ›Š˜ŠŠ˜ŠšŠ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢Š Š‘Š˜ŠžŠ Š•Š“Š£Š›ŠÆŠ¦Š˜Š˜ И Š“Š•Š ŠžŠŠ¢ŠžŠ›ŠžŠ“Š˜Š˜'),
(63308, 53421, 'en', 'name', 'Gujarat Matikam Kalakari & Rural Technology Institute'),
(63309, 53422, 'en', 'name', 'Walker Cancer Research Institute'),
(63310, 53423, 'en', 'name', 'Russian State Archive of Scientific and Technical Documentation'),
(63311, 53423, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾Š³Š¾ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š¾Š±Š¾Ń€ŃƒŠ“Š¾Š²Š°Š½ŠøŃ Šø автоприборов'),
(63312, 53424, 'en', 'name', 'MED Institute'),
(63313, 53425, 'en', 'name', 'Scientific Research Institute of the Cable Industry'),
(63314, 53425, 'ru', 'name', 'был созГан ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кабельной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63315, 53426, 'en', 'name', 'Korea Institute of Maritime and Fisheries Technology'),
(63316, 53427, 'en', 'name', 'Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry'),
(63317, 53427, 'hy', 'name', 'Ō³Ō±Ō± Õ•Ö€Õ£Õ”Õ¶Õ”ÕÆÕ”Õ¶ և Õ¤Õ„Õ²Õ”Õ£ÕøÖ€Õ®Õ”ÕÆÕ”Õ¶ Ö„Õ«Õ“Õ«Õ”ÕµÕ« Õ£Õ«ÕæÕ”ÕæÕ„Õ­Õ¶ÕøÕ¬ÕøÕ£Õ«Õ”ÕÆÕ”Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(63318, 53428, 'de', 'name', 'Institut für Bioanalytik, Umwelt-Toxikologie und Biotechnologie Halle'),
(63319, 53429, 'de', 'name', 'Günter-Köhler-Institut für Fügetechnik und Werkstoffprüfung'),
(63320, 53430, 'de', 'name', 'Institut für Implantattechnologie und Biomaterialien'),
(63321, 53430, 'en', 'name', 'Institute for ImplantTechnology and Biomaterials'),
(63322, 53431, 'de', 'name', 'Institut für Lacke und Farben'),
(63323, 53432, 'en', 'name', 'Agladze Inorganic Chemistry and Electrochemistry'),
(63324, 53432, 'ka', 'name', 'რ.įƒįƒ’įƒšįƒįƒ«įƒ˜įƒ” įƒįƒ įƒįƒįƒ įƒ’įƒįƒœįƒ£įƒšįƒ˜ įƒ„įƒ˜įƒ›įƒ˜įƒ˜įƒ”įƒ'),
(63325, 53433, 'en', 'name', 'Agricultural Genetic Engineering Research Institute'),
(63326, 53434, 'en', 'name', 'Institute for Radiological Image Sciences'),
(63327, 53435, 'en', 'name', 'Agricultural Technology Research Institute'),
(63328, 53436, 'en', 'name', 'Korea Automotive Technology Institute'),
(63329, 53436, 'ko', 'name', 'ķ•œźµ­ ģžė™ģ°Ø 기술 연구원'),
(63330, 53437, 'en', 'name', 'Institute of Geotechnics and Engineering Survey in Construction'),
(63331, 53437, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геотехники Šø инженерных изысканий в ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Šµ'),
(63332, 53438, 'en', 'name', 'Korea Institute of Atmospheric Prediction Systems'),
(63333, 53438, 'ko', 'name', 'ķ•œźµ­ ėŒ€źø° 예츔 ģ‹œģŠ¤ķ…œ ķ•™ķšŒ'),
(63334, 53439, 'en', 'name', 'Korea Institute of Robot and Convergence'),
(63335, 53439, 'ko', 'name', 'ķ•œźµ­ė”œė“‡ģœµķ•©ģ—°źµ¬ģ›'),
(63336, 53440, 'en', 'name', 'Austen BioInnovation Institute in Akron'),
(63337, 53441, 'en', 'name', 'West Health'),
(63338, 53442, 'en', 'name', 'Korea Photonics Technology Institute'),
(63339, 53443, 'en', 'name', 'Bangladesh Jute Research Institute'),
(63340, 53443, 'bn', 'name', 'বাংলাদেশ পাট গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(63341, 53444, 'en', 'name', 'Krylov State Research Center'),
(63342, 53444, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр им.'),
(63343, 53445, 'en', 'name', 'Beijing Research Institute of Automation for Machinery Industry (China)'),
(63344, 53445, 'zh', 'name', 'åŒ—äŗ¬ęœŗę¢°å·„äøšč‡ŖåŠØåŒ–ē ”ē©¶ę‰€č½Æä»¶å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(63345, 53446, 'en', 'name', 'China Academy of Launch Vehicle Technology'),
(63346, 53446, 'zh', 'name', 'äø­å›½čæč½½ē«ē®­ęŠ€ęœÆē ”ē©¶é™¢'),
(63347, 53447, 'en', 'name', 'Kyoto Municipal Institute of Industrial Technology and Culture'),
(63348, 53447, 'ja', 'name', 'äŗ¬éƒ½åø‚ē«‹čŠøč”“å·„ē§‘å¤§å­¦å·„ę„­ęŠ€č”“ę–‡åŒ–ē ”ē©¶ę‰€'),
(63349, 53448, 'no_lang_code', 'name', 'Medical Prognosis Institute (Denmark)'),
(63350, 53449, 'no_lang_code', 'name', 'CHA Vaccine Institute (South Korea)'),
(63351, 53450, 'hr', 'name', 'Mediteranski institut za istraživanje života'),
(63352, 53450, 'en', 'name', 'Mediterranean Institute for Life Sciences'),
(63353, 53451, 'no_lang_code', 'name', 'CIS Pharma (Switzerland)'),
(63354, 53452, 'en', 'name', 'Mercy Research'),
(63355, 53453, 'en', 'name', 'Cheorwon Plasma Research Institute'),
(63356, 53454, 'no_lang_code', 'name', 'Fosun Pharma (China)'),
(63357, 53455, 'no_lang_code', 'name', 'MR&D (Italy)'),
(63358, 53456, 'no_lang_code', 'name', 'China Ocean Shipping (China)'),
(63359, 53456, 'zh', 'name', 'äø­å›½čæœę“‹čæč¾“'),
(63360, 53457, 'en', 'name', 'Nano and Advanced Materials Institute'),
(63361, 53458, 'en', 'name', 'National Disaster Management Research Institute'),
(63362, 53458, 'ko', 'name', 'ģ „źµ­ ģž¬ė‚œ ꓀리 ģ—°źµ¬ģ†Œ'),
(63363, 53459, 'no_lang_code', 'name', 'ECO Environmental Investments (China)'),
(63364, 53460, 'es', 'name', 'Instituto Químico Biológico'),
(63365, 53461, 'no_lang_code', 'name', 'Buhmwoo Institute of Technology Research (South Korea)'),
(63366, 53462, 'pt', 'name', 'Institutos Lactec'),
(63367, 53463, 'no_lang_code', 'name', 'Anhui Conch Design and Research Institute of Building Materials (China)'),
(63368, 53464, 'en', 'name', 'China Electronic Product Reliability and Environmental Test Institute'),
(63369, 53464, 'zh', 'name', 'å·„äøšå’Œäæ”ęÆåŒ–éƒØē¬¬äŗ”ē”µå­ē ”ē©¶ę‰€'),
(63370, 53465, 'id', 'name', 'Badan Penelitian dan Pengembangan Kesehatan'),
(63371, 53466, 'en', 'name', 'Footwear & Recreation Technology Research Institute'),
(63372, 53467, 'en', 'name', 'Fujian Metrology Institute'),
(63373, 53468, 'en', 'name', 'Textile Research Institute Thuringia-Vogtland'),
(63374, 53468, 'de', 'name', 'Textilforschungsinstitut Thüringen-Vogtland'),
(63375, 53469, 'en', 'name', 'Gaia Medical Institute'),
(63376, 53470, 'en', 'name', 'Central Research Institute of Geological Prospecting for Base and Precious Metals'),
(63377, 53471, 'en', 'name', 'Girvan Institute of Technology'),
(63378, 53472, 'en', 'name', 'National Institute of Biomedical Innovation, Health and Nutrition'),
(63379, 53472, 'ja', 'name', '国立研究開発法人 åŒ»č–¬åŸŗē›¤ 偄康 ę „é¤Šē ”ē©¶ę‰€'),
(63380, 53473, 'en', 'name', 'Gulf South Research Corporation'),
(63381, 53474, 'en', 'name', 'KIST Europe'),
(63382, 53475, 'en', 'name', 'National Taiwan Craft Research and Development Institute'),
(63383, 53475, 'zh', 'name', 'å›½ē«‹å°ę¹¾å·„č‰ŗē ”ē©¶å‘å±•ē ”ē©¶ę‰€'),
(63384, 53476, 'en', 'name', 'Research and Design Institute of Urea and Organic Synthesis Products'),
(63385, 53476, 'ru', 'name', 'ŠžŃ‚ŠŗŃ€Ń‹Ń‚Š¾Šµ Акционирское ŠžŠ±Ń‰ŠµŃŃ‚во. ИсслеГование. И проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мочевины Šø органического синтеза'),
(63386, 53477, 'en', 'name', 'Helmholtz Moscow Research Institute of Eye Diseases'),
(63387, 53477, 'ru', 'name', 'Московский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ глазных болезней им. Š“ŠµŠ»ŃŒŠ¼Š³Š¾Š»ŃŒŃ†Š°'),
(63388, 53478, 'en', 'name', 'Power Tool Institute'),
(63389, 53479, 'en', 'name', 'High Pressure Gas Safety Institute of Japan'),
(63390, 53479, 'ja', 'name', 'é«˜åœ§åŠ›ć‚¬ć‚¹å®‰å…Øē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(63391, 53480, 'en', 'name', 'Hisayama Research Institute For Lifestyle Diseases'),
(63392, 53480, 'ja', 'name', 'ćƒ’ć‚µćƒ¤ćƒžćƒ©ć‚¤ćƒ•ć‚¹ć‚æć‚¤ćƒ«ē ”ē©¶ę‰€'),
(63393, 53481, 'no_lang_code', 'name', 'Prous Institute for Biomedical Research (Spain)'),
(63394, 53482, 'en', 'name', 'Ophthalmos Eye Research & Therapeutic Institute'),
(63395, 53483, 'en', 'name', 'Institute for Independent Studies Zürich'),
(63396, 53484, 'en', 'name', 'Saika Technological Institute Foundation'),
(63397, 53484, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ é›‘č³€ęŠ€č”“ē ”ē©¶ę‰€'),
(63398, 53485, 'en', 'name', 'Civilisations Matter'),
(63399, 53486, 'no_lang_code', 'name', 'Foerster (Germany)'),
(63400, 53487, 'en', 'name', 'ChildCare Education Institute'),
(63401, 53488, 'no_lang_code', 'name', 'Saline Water Conversion Corporation'),
(63402, 53489, 'en', 'name', 'Institute for Biotechnology and Medicine Industry'),
(63403, 53490, 'en', 'name', 'Institute for Sustainable Communication'),
(63404, 53491, 'en', 'name', 'Scientific Research Institute of Goznak'),
(63405, 53491, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гознака'),
(63406, 53492, 'no_lang_code', 'name', 'Systena (Japan)'),
(63407, 53493, 'en', 'name', 'Scripps Korea Antibody Institute'),
(63408, 53493, 'ko', 'name', 'ģŠ¤ķ¬ė¦½ģŠ¤ģ½”ė¦¬ģ•„ķ•­ģ²“ģ—°źµ¬ģ›'),
(63409, 53494, 'lv', 'name', 'Elektronikas un datorzinātņu institūts'),
(63410, 53494, 'en', 'name', 'Institute of Electronics and Computer Science'),
(63411, 53495, 'en', 'name', 'Seasteading Institute'),
(63412, 53496, 'no_lang_code', 'name', 'Gazprom (Russia)'),
(63413, 53496, 'ru', 'name', 'ŠŸŃƒŠ±Š»ŠøŃ‡Š½Š¾Šµ Акционерное ŠžŠ±Ń‰ŠµŃŃ‚во Газпром'),
(63414, 53497, 'en', 'name', 'Serum IVF'),
(63415, 53498, 'en', 'name', 'Institute of Laboratory Animal Science'),
(63416, 53499, 'en', 'name', 'Shanghai Chemical Reagent Research Institute'),
(63417, 53500, 'no_lang_code', 'name', 'Institute of Musculoskeletal Science & Education (United States)'),
(63418, 53501, 'en', 'name', 'Institute of Orthopedic Research and Education'),
(63419, 53502, 'no_lang_code', 'name', 'International Drug Development Institute (Belgium)'),
(63420, 53503, 'no_lang_code', 'name', 'Institute of Super Compression Technologies (Japan)'),
(63421, 53504, 'en', 'name', 'South African Sugar Association'),
(63422, 53505, 'en', 'name', 'Orthodontic World Institute'),
(63423, 53506, 'en', 'name', 'Azerbaijan Scientific-Research & Design-Prospecting Power Engineering Institute'),
(63424, 53506, 'az', 'name', 'Azərbaycan Elmi–Tədqiqat və Layihə Axtarış Energetika İnstitutu'),
(63425, 53507, 'no_lang_code', 'name', 'Sports Turf Research Institute (United Kingdom)'),
(63426, 53508, 'no_lang_code', 'name', 'Institute Po Zavaryavane (Bulgaria)'),
(63427, 53508, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š·Š°Š²Š°Ń€ŃŠ²Š°Š½Šµ'),
(63428, 53509, 'no_lang_code', 'name', 'Stelic Institute (Japan)'),
(63429, 53510, 'no_lang_code', 'name', 'Nanopolis Suzhou (China)'),
(63430, 53510, 'zh', 'name', 'č‹å·žēŗ³ē±³ē§‘ęŠ€å‘å±•ęœ‰é™å…¬åø'),
(63431, 53511, 'en', 'name', 'Research Institute of Mine Rescue'),
(63432, 53511, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š“ŠžŠ ŠŠžŠ”ŠŸŠŠ”ŠŠ¢Š•Š›Š¬ŠŠžŠ“Šž ДЕЛА'),
(63433, 53512, 'sv', 'name', 'Svenska Ɩrtmedicinska Institute'),
(63434, 53513, 'en', 'name', 'Tianjin Municipal Research Institute for Family Planning'),
(63435, 53513, 'zh', 'name', 'å¤©ę“„åø‚č®”åˆ’ē”Ÿč‚²ē ”ē©¶ę‰€'),
(63436, 53514, 'en', 'name', 'Taiwan Agricultural Chemicals and Toxic Substances Research Institute'),
(63437, 53515, 'en', 'name', 'Eastern Mining-and-Metallurgical Research Institute for Nonferrous Metals'),
(63438, 53515, 'kk', 'name', 'Восточный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цветных металлов [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(63439, 53516, 'no_lang_code', 'name', 'Tsumura Research Institute (Japan)'),
(63440, 53516, 'ja', 'name', 'ę“„ę‘ē·åˆē ”ē©¶ę‰€'),
(63441, 53517, 'no_lang_code', 'name', 'Nauchno-issledovatelskiy Institut Tekhnologii Avtomobilnoy Promyshlennosti'),
(63442, 53517, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технологии Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63443, 53518, 'en', 'name', 'All-Russian Scientific Research Institute of metallurgical heat'),
(63444, 53518, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¹ теплотехники'),
(63445, 53519, 'en', 'name', 'Scientific-Research Institute of Electric Power Transmission'),
(63446, 53519, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠžŠ”Š¢ŠžŠÆŠŠŠžŠ“Šž Š¢ŠžŠšŠ'),
(63447, 53520, 'en', 'name', 'Institute for Problems of Cryobiology and Cryomedicine'),
(63448, 53520, 'ru', 'name', 'Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠ‘Š›Š•Šœ ŠšŠ Š†ŠžŠ‘Š†ŠžŠ›ŠžŠ“Š†Š‡ І ŠšŠ Š†ŠžŠœŠ•Š”Š˜Š¦Š˜ŠŠ˜ ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠžŠ‡ ŠŠšŠŠ”Š•ŠœŠ†Š‡ ŠŠŠ£Šš Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(63449, 53521, 'de', 'name', 'Sächsisches Institut für die Druckindustrie'),
(63450, 53522, 'en', 'name', 'Institute for applied Biology and Landscape Planning'),
(63451, 53522, 'de', 'name', 'nstitut für angewandte Biologie und Landschaftsplanung'),
(63452, 53523, 'en', 'name', 'Center for Interdisciplinary Studies of Molecular Interactions'),
(63453, 53524, 'en', 'name', 'All-Russian Scientific Research Institute of Fats'),
(63454, 53524, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ жиров'),
(63455, 53525, 'en', 'name', 'British Institute of Technology and E-commerce'),
(63456, 53526, 'en', 'name', 'Acquisition, Technology & Logistics Agency'),
(63457, 53526, 'ja', 'name', 'é˜²č”›č£…å‚™åŗ'),
(63458, 53527, 'en', 'name', 'Mammendorf Insitute for Physics and Medicine'),
(63459, 53527, 'de', 'name', 'Mammendorfer Institut für Physik und Medizin'),
(63460, 53528, 'ru', 'name', 'Cаксонский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной биотехнологии'),
(63461, 53528, 'es', 'name', 'Instituto Sajón de Biotecnología Aplicada anexo'),
(63462, 53528, 'en', 'name', 'Saxon Institute for Applied Biotechnology'),
(63463, 53528, 'de', 'name', 'Sächsisches Institut für Angewandte Biotechnologie'),
(63464, 53529, 'en', 'name', 'Rostov Research Institute of Oncology'),
(63465, 53529, 'ru', 'name', 'Ростовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ онкологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63466, 53530, 'de', 'name', 'Staatliches Weinbauinstitut Freiburg'),
(63467, 53531, 'en', 'name', 'Scientific Research Institute of Technical Physics and Automation'),
(63468, 53532, 'en', 'name', 'American Institute of Taxidermy'),
(63469, 53533, 'en', 'name', 'Institute of the Meat and Dairy Industry'),
(63470, 53534, 'de', 'name', 'AWA-Institut'),
(63471, 53535, 'en', 'name', 'Vostochniy Research Institute for Mining Safety'),
(63472, 53535, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Š’Š¾ŃŃ‚ŠŠ˜Š˜ по безопасности работ в горной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63473, 53536, 'en', 'name', 'Eastern Research Institute of Coal Chemistry'),
(63474, 53536, 'ru', 'name', 'Восточный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(63475, 53537, 'no_lang_code', 'name', 'Nexira (France)'),
(63476, 53538, 'en', 'name', 'Australian Export Grains Innovation Centre'),
(63477, 53539, 'en', 'name', 'All-Russian Scientific Research Institute of Viticulture and Winemaking behalf of JI Potapenko'),
(63478, 53539, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ винограГарства Šø Š²ŠøŠ½Š¾Š“ŠµŠ»ŠøŃ имени ŠÆ.И. ŠŸŠ¾Ń‚Š°ŠæŠµŠ½ŠŗŠ¾'),
(63479, 53540, 'en', 'name', 'Burzynski Research Institute'),
(63480, 53541, 'en', 'name', 'California Institute of Computer-Assisted Surgery'),
(63481, 53542, 'en', 'name', 'Institute of Electronic Control Machines'),
(63482, 53543, 'en', 'name', 'Russian State Scientific Center for Robotics and Technical Cybernetics'),
(63483, 53543, 'ru', 'name', 'Š¦ŠŠ˜Š˜ робототехники Šø технической кибернетики'),
(63484, 53544, 'en', 'name', 'Scientific Research Institute of Steel'),
(63485, 53544, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š”Š¢ŠŠ›Š˜'),
(63486, 53545, 'en', 'name', 'Research Institute of Chemicals for Polymeric Materials'),
(63487, 53546, 'en', 'name', 'Federal State Scientific Institution Research Institute of Eye Diseases'),
(63488, 53546, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ глазных болезней'),
(63489, 53547, 'en', 'name', 'Scientific Research and Design Institute of Technology Equipment Refining and Petrochemical Industries');
INSERT INTO `ror_settings` VALUES
(63490, 53547, 'ru', 'name', 'Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠšŠžŠŠ”Š¢Š Š£ŠšŠ¢ŠžŠ Š”ŠšŠž-Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠžŠ‘ŠžŠ Š£Š”ŠžŠ’ŠŠŠ˜ŠÆ ŠŠ•Š¤Š¢Š•ŠŸŠ•Š Š•Š ŠŠ‘ŠŠ¢Š«Š’ŠŠ®Š©Š•Š™ И ŠŠ•Š¤Š¢Š•Š„Š˜ŠœŠ˜Š§Š•Š”ŠšŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(63491, 53548, 'en', 'name', 'Research and Technological Institute of Biological Industry'),
(63492, 53548, 'ru', 'name', 'Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологической ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63493, 53549, 'en', 'name', 'Rain Forest Research Institute'),
(63494, 53550, 'en', 'name', 'Ufa Eye Research Institute'),
(63495, 53551, 'en', 'name', 'Hari Shankar Singhania Elastomer And Tyre Research Institute'),
(63496, 53552, 'en', 'name', 'The Research Institute for Fertilizers and Insectofungicides'),
(63497, 53552, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠ“Š¾Š±Ń€ŠµŠ½ŠøŠ¹ Šø ŠøŠ½ŃŠµŠŗŃ‚Š¾Ń„ŃƒŠ½Š³ŠøŃ†ŠøŠ“Š¾Š² имени ŠÆ. Š’. Дамойлова'),
(63498, 53553, 'en', 'name', 'Life Science Institute'),
(63499, 53554, 'en', 'name', 'Technological Design Institute of Scientific Instrument Engineering'),
(63500, 53555, 'en', 'name', 'Heidelberg Institute for Stem Cell Technology and Experimental Medicine'),
(63501, 53556, 'en', 'name', 'Scientific Research Institute of the Rubber Industry'),
(63502, 53556, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ резиновой ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(63503, 53557, 'en', 'name', 'Himalayan Institute of Yoga Science and Philosophy'),
(63504, 53558, 'en', 'name', 'Juntendo University Shizuoka Hospital'),
(63505, 53558, 'ja', 'name', 'é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žé™å²”ē—…é™¢'),
(63506, 53559, 'en', 'name', 'Juntendo University Nerima Hospital'),
(63507, 53559, 'ja', 'name', 'é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žē·“é¦¬ē—…é™¢'),
(63508, 53560, 'en', 'name', 'Juntendo University Urayasu Hospital'),
(63509, 53560, 'ja', 'name', 'é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žęµ¦å®‰ē—…é™¢'),
(63510, 53561, 'en', 'name', 'Royal Jubilee Maternity Services'),
(63511, 53562, 'en', 'name', 'Royal Victoria Hospital'),
(63512, 53563, 'en', 'name', 'Mohawk Valley Psychiatric Center'),
(63513, 53564, 'en', 'name', 'Pilgrim Psychiatric Center'),
(63514, 53565, 'en', 'name', 'Carilion Roanoke Community Hospital'),
(63515, 53566, 'de', 'name', 'Donauspital'),
(63516, 53567, 'en', 'name', 'Chattahoochee Valley Community College'),
(63517, 53568, 'no_lang_code', 'name', 'Rosogneupor (Russia)'),
(63518, 53568, 'ru', 'name', 'Š Š¾ŃŠ¾Š³Š½ŠµŃƒŠæŠ¾Ń€'),
(63519, 53569, 'no_lang_code', 'name', 'Gateway Group (India)'),
(63520, 53570, 'no_lang_code', 'name', 'Addgene'),
(63521, 53571, 'en', 'name', 'Developmental Studies Hybridoma Bank'),
(63522, 53572, 'en', 'name', 'Roslin Institute'),
(63523, 53573, 'en', 'name', 'NeuroMab'),
(63524, 53574, 'en', 'name', 'NIMH Repository and Genomics Resource'),
(63525, 53575, 'es', 'name', 'Instituto de Investigaciones Biológicas Clemente Estable'),
(63526, 53576, 'no_lang_code', 'name', 'Fonterra (United States)'),
(63527, 53577, 'en', 'name', 'Ural Institute of Metals'),
(63528, 53578, 'en', 'name', 'Institute for Information Recording'),
(63529, 53578, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем реєстрації інформації ŠŠŠ України'),
(63530, 53579, 'en', 'name', 'Groundwater Center'),
(63531, 53579, 'de', 'name', 'Grundwasser-Zentrum'),
(63532, 53580, 'en', 'name', 'Kazakh Scientific Research Veterinary Institute'),
(63533, 53581, 'no_lang_code', 'name', 'Niip Gradostroitelstva'),
(63534, 53581, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по разработке Š³ŠµŠ½ŠµŃ€Š°Š»ŃŒŠ½Ń‹Ń… планов Šø проектов застройки гороГов'),
(63535, 53582, 'it', 'name', 'Ospedale San Raffaele Arcangelo'),
(63536, 53583, 'en', 'name', 'Hyaluronan Research Institute'),
(63537, 53583, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ ćƒ’ć‚¢ćƒ«ćƒ­ćƒ³é…øē ”ē©¶ę‰€'),
(63538, 53584, 'de', 'name', 'Keramikinstitut'),
(63539, 53585, 'no_lang_code', 'name', 'Canfield Scientific (United States)'),
(63540, 53586, 'fr', 'name', 'VitalitƩ Health Network'),
(63541, 53587, 'en', 'name', 'Shandong Food Fermentation Industry Research and Design Institute'),
(63542, 53587, 'zh', 'name', 'å±±äøœēœé£Ÿå“å‘é…µå·„äøšē ”ē©¶č®¾č®”é™¢'),
(63543, 53588, 'en', 'name', 'Central Research Institute for Jute and Allied Fibres'),
(63544, 53589, 'de', 'name', 'Forschungsinstitut für Anorganische Werkstoffe -Glas/Keramik'),
(63545, 53590, 'en', 'name', 'Institute of Formulation, Analysis and Quality Control Research'),
(63546, 53591, 'en', 'name', 'Institute of Geology of the Karelian Research Center'),
(63547, 53591, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии ŠšŠ°Ń€ŠŠ¦ Š ŠŠ'),
(63548, 53592, 'en', 'name', 'Institut Dr Schrader Creachem'),
(63549, 53593, 'en', 'name', 'Research Institute of Natural and Synthetic Diamonds'),
(63550, 53594, 'en', 'name', 'Physics and Technology Institute of Metals and Alloys'),
(63551, 53594, 'uk', 'name', 'Физико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металлов Šø сплавов'),
(63552, 53595, 'en', 'name', 'Indian Plywood Industries Research and Training Institute'),
(63553, 53596, 'en', 'name', 'Jangheung Mushroom Industry Research'),
(63554, 53596, 'ko', 'name', 'ģž„ķ„źµ°ė²„ģ„Æģ‚°ģ—…ģ—°źµ¬ģ›'),
(63555, 53597, 'ro', 'name', 'Institutul National De Cercetare Dezvoltare Chimico Farmaceutica'),
(63556, 53597, 'en', 'name', 'National Institute For Chemical Pharmaceutical Research and Development'),
(63557, 53598, 'en', 'name', 'Seamester'),
(63558, 53599, 'de', 'name', 'Mandat International'),
(63559, 53600, 'en', 'name', 'State Scientific Production Association of Industrial Ecology'),
(63560, 53601, 'en', 'name', 'IndraStra Global'),
(63561, 53602, 'en', 'name', 'Bansal Institute Of Research Technology & Science'),
(63562, 53603, 'en', 'name', 'Institute for Rural Engineering'),
(63563, 53603, 'ja', 'name', 'č¾²ę‘å·„å­¦ē ”ē©¶éƒØé–€'),
(63564, 53604, 'en', 'name', 'Tropical Forest Research Institute'),
(63565, 53605, 'en', 'name', 'St. John''s National Academy of Health Sciences'),
(63566, 53606, 'no_lang_code', 'name', 'Micromun'),
(63567, 53607, 'en', 'name', 'Xiamen Institute of Rare-earth Materials'),
(63568, 53607, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ęµ·č„æē ”ē©¶é™¢åŽ¦é—ØēØ€åœŸęę–™ē ”ē©¶ę‰€'),
(63569, 53608, 'en', 'name', 'Geological Exploration Institute of Shandong Zhengyuan'),
(63570, 53608, 'zh', 'name', 'å±±äøœę­£å…ƒåœ°č“Øå‹˜ęŸ„é™¢'),
(63571, 53609, 'en', 'name', 'Bioengineering Center'),
(63572, 53609, 'ru', 'name', 'Š‘ŠøŠ¾ŠøŠ½Š¶ŠµŠ½ŠµŃ€ŠøŃ'),
(63573, 53610, 'en', 'name', 'Kitasato University East Hospital'),
(63574, 53610, 'ja', 'name', 'åŒ—é‡Œå¤§å­¦ę±ē—…é™¢'),
(63575, 53611, 'en', 'name', 'Interuniversity Institute for High Energies'),
(63576, 53612, 'en', 'name', 'Institute of Chemistry of Silicates named after I.V. Grebenshchikov'),
(63577, 53612, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии силикатов имени И. Š’. Гребенщикова Š ŠŠ'),
(63578, 53613, 'en', 'name', 'G.V. Karpenko Physical-Mechanical Institute'),
(63579, 53613, 'uk', 'name', 'Š¤Š†Š—Š˜ŠšŠž-ŠœŠ•Š„ŠŠŠ†Š§ŠŠ˜Š™ Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ Š†Šœ. Š“.Š’. ŠšŠŠ ŠŸŠ•ŠŠšŠ ŠAH Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(63580, 53614, 'en', 'name', 'Kyushu Okinawa Agricultural Research Center'),
(63581, 53614, 'ja', 'name', 'ä¹å·žę²–ēø„č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(63582, 53615, 'en', 'name', 'Institute for Polymer Mechanics'),
(63583, 53616, 'no_lang_code', 'name', 'R.T. Vanderbilt Holding (United States)'),
(63584, 53617, 'en', 'name', 'Reproductive Medicine Associates of New York'),
(63585, 53618, 'no_lang_code', 'name', 'Sofradir (France)'),
(63586, 53619, 'en', 'name', 'ASI Consulting Group (United States)'),
(63587, 53620, 'en', 'name', 'BMJ Careers'),
(63588, 53621, 'en', 'name', 'Institute of Paleontology A A Borisyak'),
(63589, 53621, 'ru', 'name', 'ŠŸŠ°Š»ŠµŠ¾Š½Ń‚Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени А. А. Š‘Š¾Ń€ŠøŃŃŠŗŠ° Š ŠŠ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(63590, 53622, 'en', 'name', 'American College of Veterinary Ophthalmologists'),
(63591, 53623, 'en', 'name', 'Institute of Plant and Animal Ecology'),
(63592, 53623, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø растений Šø животных Š£Ń€Šž Š ŠŠ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(63593, 53624, 'en', 'name', 'CPCL Polytechnic College'),
(63594, 53625, 'en', 'name', 'Palm Beach Gardens Medical Center'),
(63595, 53626, 'en', 'name', 'Abbey of the Holy Trinity'),
(63596, 53627, 'no_lang_code', 'name', 'IQVIA (United Kingdom)'),
(63597, 53628, 'no_lang_code', 'name', 'Steuler (Germany)'),
(63598, 53629, 'no_lang_code', 'name', 'FWRadiology'),
(63599, 53630, 'en', 'name', 'Industrial Technology Center of Okayama Prefecture'),
(63600, 53630, 'ja', 'name', 'å²”å±±ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(63601, 53631, 'en', 'name', 'Reid Veterinary Hospital'),
(63602, 53632, 'en', 'name', 'Florida State Collection of Arthropods'),
(63603, 53633, 'en', 'name', 'Imaging Center'),
(63604, 53634, 'en', 'name', 'Tonbridge School'),
(63605, 53635, 'en', 'name', 'Institute of Vegetable and Floriculture Science'),
(63606, 53635, 'ja', 'name', 'é‡ŽčœčŠ±ćē ”ē©¶éƒØé–€'),
(63607, 53636, 'en', 'name', 'Sri Lanka College of Paediatricians'),
(63608, 53637, 'en', 'name', 'Village Veterinary Medical Center'),
(63609, 53638, 'en', 'name', 'American Board of Veterinary Practitioners'),
(63610, 53639, 'en', 'name', 'Beijing Radiation Center'),
(63611, 53639, 'zh', 'name', 'åŒ—äŗ¬åø‚č¾å°„äø­åæƒ'),
(63612, 53640, 'no_lang_code', 'name', 'Chondrometrics (Germany)'),
(63613, 53641, 'en', 'name', 'Western Region Agricultural Research Center'),
(63614, 53641, 'ja', 'name', 'č„æę—„ęœ¬č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(63615, 53642, 'en', 'name', 'Blue Marble Space Institute of Science'),
(63616, 53643, 'no_lang_code', 'name', 'Clariant (United States)'),
(63617, 53644, 'en', 'name', 'DermSurgery Associates'),
(63618, 53645, 'no_lang_code', 'name', 'Forsthoffer Associates (United States)'),
(63619, 53646, 'no_lang_code', 'name', 'Toppan (United States)'),
(63620, 53647, 'en', 'name', 'Harris Birthright Research Centre for Fetal Medicine'),
(63621, 53648, 'en', 'name', 'Dominion Astrophysical Observatory'),
(63622, 53649, 'en', 'name', 'Walsall Academy'),
(63623, 53650, 'en', 'name', 'Institute of Bioorganic Chemistry'),
(63624, 53650, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° биоорганической химии ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(63625, 53651, 'en', 'name', 'Japan Society for Laser Surgery and Medicine'),
(63626, 53651, 'ja', 'name', 'ę—„ęœ¬ćƒ¬ćƒ¼ć‚¶ćƒ¼åŒ»å­¦ä¼š'),
(63627, 53652, 'en', 'name', 'Institute for Cognitive Science Studies'),
(63628, 53652, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… Ų“Ł†Ų§Ų®ŲŖŪŒ'),
(63629, 53653, 'en', 'name', 'Kauffman Physical Therapy'),
(63630, 53654, 'en', 'name', 'Defense Contract Audit Agency'),
(63631, 53655, 'en', 'name', 'International Civil Aviation Organization'),
(63632, 53656, 'no_lang_code', 'name', 'NationalRad (United States)'),
(63633, 53657, 'en', 'name', 'Central Region Agricultural Research Center'),
(63634, 53657, 'ja', 'name', 'äø­å¤®č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼:åŒ—é™øē ”ē©¶ę‹ ē‚¹'),
(63635, 53658, 'en', 'name', 'Japan Institute of Leather Research'),
(63636, 53658, 'ja', 'name', 'ę—„ęœ¬ēš®é©ē ”ē©¶ę‰€'),
(63637, 53659, 'en', 'name', 'Bytown Cat Hospital'),
(63638, 53660, 'en', 'name', 'Paws & Claws Animal Hospital and Holistic Pet Center'),
(63639, 53661, 'no_lang_code', 'name', 'Pharmerit (United States)'),
(63640, 53662, 'no_lang_code', 'name', 'Pharmerit (Netherlands)'),
(63641, 53663, 'no_lang_code', 'name', 'Photronics (United States)'),
(63642, 53664, 'no_lang_code', 'name', 'Plant Lipids (India)'),
(63643, 53665, 'en', 'name', 'Platte Valley Medical Center'),
(63644, 53666, 'en', 'name', 'Marathon Veterinary Hospital'),
(63645, 53667, 'en', 'name', 'Wellcome Trust Centre for the History of Medicine'),
(63646, 53668, 'en', 'name', 'Sedgwick Museum of Earth Sciences'),
(63647, 53669, 'no_lang_code', 'name', 'United BioSource Corporation (United Kingdom)'),
(63648, 53670, 'en', 'name', 'Regional Center for Poison Control and Prevention'),
(63649, 53671, 'pt', 'name', 'Sociedade Brasileira de Cirurgia PlƔstica'),
(63650, 53672, 'en', 'name', 'Society of Analytical Psychology'),
(63651, 53673, 'no_lang_code', 'name', 'Advanced Mask Technology Center (Germany)'),
(63652, 53674, 'en', 'name', 'BresMed'),
(63653, 53675, 'en', 'name', 'Brown-Spath & Associates'),
(63654, 53676, 'en', 'name', 'American Institute for Psychoanalysis'),
(63655, 53677, 'en', 'name', 'Institute of Physics. HI Amirkhanova'),
(63656, 53677, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики им. Š„.И. Амирханова'),
(63657, 53678, 'no_lang_code', 'name', 'Sanas (Japan)'),
(63658, 53678, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒŠć‚¹'),
(63659, 53679, 'no_lang_code', 'name', 'Central Japan Railway (Japan)'),
(63660, 53679, 'ja', 'name', 'ę±ęµ·ę—…å®¢é‰„é“ę Ŗå¼ä¼šē¤¾'),
(63661, 53680, 'en', 'name', 'CEP America'),
(63662, 53681, 'en', 'name', 'Bell Equine Veterinary Clinic'),
(63663, 53682, 'de', 'name', 'BG Klinik Tübingen'),
(63664, 53683, 'no_lang_code', 'name', 'BMW Group (Germany)'),
(63665, 53684, 'en', 'name', 'Michigan Hand & Wrist'),
(63666, 53685, 'en', 'name', 'IMDEA Networks'),
(63667, 53685, 'es', 'name', 'Instituto IMDEA Networks'),
(63668, 53686, 'no_lang_code', 'name', 'Galaxy Advanced Engineering (United States)'),
(63669, 53687, 'en', 'name', 'IMDEA Nanoscience'),
(63670, 53687, 'es', 'name', 'Instituto IMDEA Nanociencia'),
(63671, 53688, 'es', 'name', 'IMDEA Water'),
(63672, 53689, 'en', 'name', 'IMDEA Food'),
(63673, 53689, 'es', 'name', 'Instituto IMDEA Alimentación'),
(63674, 53690, 'fr', 'name', 'HƓpital La Porte Verte'),
(63675, 53691, 'no_lang_code', 'name', 'Envigo (United Kingdom)'),
(63676, 53692, 'it', 'name', 'SDN Istituto di Ricerca Diagnostica e Nucleare'),
(63677, 53693, 'en', 'name', 'Goulburn Valley Equine Hospital'),
(63678, 53694, 'en', 'name', 'Institute of Chemistry, Academia Sinica'),
(63679, 53695, 'en', 'name', 'Japan Radioisotope Association'),
(63680, 53695, 'ja', 'name', 'ę—„ęœ¬ć‚¢ć‚¤ć‚½ćƒˆćƒ¼ćƒ—å”ä¼š'),
(63681, 53696, 'en', 'name', 'Kanagawa Environmental Research Center'),
(63682, 53696, 'ja', 'name', 'ē„žå„ˆå·ēœŒē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(63683, 53697, 'no_lang_code', 'name', 'Oblikue Consulting (Spain)'),
(63684, 53698, 'en', 'name', 'Tohoku Agricultural Research Center'),
(63685, 53698, 'ja', 'name', 'ę±åŒ—č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(63686, 53699, 'fr', 'name', 'LycƩe Pierre-de-Fermat'),
(63687, 53700, 'de', 'name', 'Kliniken des Landkreises Lƶrrach'),
(63688, 53701, 'en', 'name', 'Diocese of Ely'),
(63689, 53702, 'en', 'name', 'Okinawa Prefectural Agricultural Research Center'),
(63690, 53702, 'ja', 'name', 'ę²–ēø„ēœŒč¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(63691, 53703, 'en', 'name', 'Kumamoto Orthopedic Surgery Hospital'),
(63692, 53704, 'en', 'name', 'Ordnance Engineering College'),
(63693, 53704, 'zh', 'name', '中国人民解放军军械巄程学院'),
(63694, 53705, 'de', 'name', 'Krebsregister Saarland'),
(63695, 53706, 'en', 'name', 'San Diego Center for Spinal Disorders'),
(63696, 53707, 'no_lang_code', 'name', 'Nokia (China)'),
(63697, 53708, 'no_lang_code', 'name', 'PAGEPress (Italy)'),
(63698, 53709, 'nl', 'name', 'Cicero Zorggroep'),
(63699, 53710, 'no_lang_code', 'name', 'Sutherland HDL (United States)'),
(63700, 53711, 'no_lang_code', 'name', 'Novel Health Strategies (United States)'),
(63701, 53712, 'en', 'name', 'Siberian Institute of Plant Physiology and Biochemistry'),
(63702, 53712, 'ru', 'name', 'Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии Šø биохимии растений Š”Šž Š ŠŠ'),
(63703, 53713, 'en', 'name', 'Siloam Eye Hospital'),
(63704, 53713, 'ko', 'name', 'ģ‹¤ė”œģ•”ģ•ˆź³¼ė³‘ģ›'),
(63705, 53714, 'de', 'name', 'TCM-Klinik Bad Kƶtzting'),
(63706, 53715, 'en', 'name', 'Population Council'),
(63707, 53716, 'en', 'name', 'Postgraduate Center for Mental Health'),
(63708, 53717, 'en', 'name', 'Princess Alexandra Eye Pavilion'),
(63709, 53718, 'en', 'name', 'Parrott Equine Associates'),
(63710, 53719, 'it', 'name', 'Ospedale San Paolo'),
(63711, 53720, 'en', 'name', 'University Vascular Associates'),
(63712, 53721, 'en', 'name', 'University School'),
(63713, 53722, 'no_lang_code', 'name', 'AmerisourceBergen (United States)'),
(63714, 53723, 'no_lang_code', 'name', 'GREEN Tox (Switzerland)'),
(63715, 53724, 'de', 'name', 'Conservatoire et Jardin botaniques de la Ville de GenĆØve'),
(63716, 53724, 'en', 'name', 'Conservatory and Botanical Garden of the City of Geneva'),
(63717, 53725, 'en', 'name', 'Natural History Museum of Basel'),
(63718, 53725, 'aa', 'name', 'Naturhistorisches Museum Basel'),
(63719, 53726, 'en', 'name', 'Centre for Applied Studies in International Negotiations'),
(63720, 53727, 'en', 'name', 'National Agriculture in the Classroom'),
(63721, 53728, 'en', 'name', 'Alpine Biology Center'),
(63722, 53728, 'de', 'name', 'Centro Biologia Alpina'),
(63723, 53729, 'de', 'name', 'Stiftung für Forschung in Spätantike und Mittelalter HR. Sennhauser'),
(63724, 53730, 'de', 'name', 'Gesellschaft für Schweizerische Kunstgeschichte'),
(63725, 53731, 'de', 'name', 'Aargauer Kantonsbibliothek'),
(63726, 53732, 'no_lang_code', 'name', 'ADR-AC (Switzerland)'),
(63727, 53733, 'de', 'name', 'Stiftung Bibliothek Werner Oechslin'),
(63728, 53733, 'en', 'name', 'Werner Oechslin Library Foundation'),
(63729, 53734, 'no_lang_code', 'name', 'Interlifescience (Switzerland)'),
(63730, 53735, 'en', 'name', 'Cantonal Archives of the Grisons'),
(63731, 53735, 'de', 'name', 'Staatsarchiv Graubünden'),
(63732, 53736, 'it', 'name', 'Archivio di Stato del canton Ticino'),
(63733, 53737, 'de', 'name', 'State Archives Basel-Stadt'),
(63734, 53738, 'de', 'name', 'Staatsarchiv des Kantons Zürich'),
(63735, 53739, 'de', 'name', 'Global Risk Forum GRF Davos'),
(63736, 53740, 'fr', 'name', 'HƓpital NestlƩ'),
(63737, 53741, 'de', 'name', 'Sprachatlas der Deutschen Schweiz'),
(63738, 53742, 'fr', 'name', 'HƓpital de Beaumont'),
(63739, 53743, 'no_lang_code', 'name', 'Sigmaplan (Switzerland)'),
(63740, 53744, 'en', 'name', 'Umbricht Attorneys'),
(63741, 53745, 'fr', 'name', 'MusƩe Cantonal d''ArchƩologie et d''Histoire'),
(63742, 53746, 'fr', 'name', 'Vitrocentre Romont'),
(63743, 53747, 'de', 'name', 'Natur Museum Luzern'),
(63744, 53748, 'de', 'name', 'Antikenmuseum Basel und Sammlung Ludwig'),
(63745, 53749, 'no_lang_code', 'name', 'BHP - Hanser und Partner (Switzerland)'),
(63746, 53750, 'de', 'name', 'Kantonsspital Baden'),
(63747, 53751, 'fr', 'name', 'Centre RƩgional d''Etudes des Populations Alpines'),
(63748, 53752, 'fr', 'name', 'Service de la recherche Ʃducation'),
(63749, 53753, 'no_lang_code', 'name', 'Interface Politikstudien (Switzerland)'),
(63750, 53753, 'de', 'name', 'Interface Politikstudien Forschung Beratung'),
(63751, 53754, 'fr', 'name', 'Cabinet Gastroenterology La Source-Beaulieu'),
(63752, 53755, 'no_lang_code', 'name', 'GeoExpert (Switzerland)'),
(63753, 53756, 'en', 'name', 'Institute for Work Research and Organizational Consultancy'),
(63754, 53757, 'no_lang_code', 'name', 'Econcept (Switzerland)'),
(63755, 53758, 'it', 'name', 'Librairie Droz'),
(63756, 53759, 'fr', 'name', 'Archives d''Ɖtat de GenĆØve'),
(63757, 53760, 'fr', 'name', 'DƩpartement des Finances et des Relations ExtƩrieures'),
(63758, 53761, 'it', 'name', 'Augusta Raurica'),
(63759, 53762, 'fr', 'name', 'Archives de l''Ɖtat de NeuchĆ¢tel'),
(63760, 53763, 'no_lang_code', 'name', 'Arcadis (Switzerland)'),
(63761, 53764, 'de', 'name', 'Berner Kantonalbank'),
(63762, 53765, 'fr', 'name', 'Institut de Recherche et de Documentation PƩdagogique'),
(63763, 53766, 'de', 'name', 'Institut für Ɩkologisch Systemische Therapie'),
(63764, 53767, 'de', 'name', 'ViaStoria'),
(63765, 53768, 'fr', 'name', 'HƓpital de l''enfance'),
(63766, 53769, 'fr', 'name', 'Laboratoire Romand de Dendrochronologie'),
(63767, 53770, 'fr', 'name', 'MusƩe Romain d''Avenches'),
(63768, 53771, 'fr', 'name', 'LatƩnium'),
(63769, 53772, 'de', 'name', 'Staatsarchiv Freiburg'),
(63770, 53773, 'it', 'name', 'Liceo Cantonale'),
(63771, 53774, 'de', 'name', 'Stadtbibliothek Schaffhausen'),
(63772, 53775, 'no_lang_code', 'name', 'MFB-GeoConsulting (Switzerland)'),
(63773, 53776, 'en', 'name', 'Abbey library of Saint Gall'),
(63774, 53776, 'de', 'name', 'Stiftsbibliothek St. Gallen'),
(63775, 53777, 'en', 'name', 'International Museum of Horology'),
(63776, 53777, 'fr', 'name', 'MusƩe international d''horlogerie'),
(63777, 53778, 'de', 'name', 'Center Pro Natura of Champ-Pittet'),
(63778, 53779, 'en', 'name', 'Museum of Art and History'),
(63779, 53779, 'fr', 'name', 'MusƩe d''Art et d''Histoire'),
(63780, 53780, 'de', 'name', 'Museum der Kulturen Basel'),
(63781, 53780, 'en', 'name', 'Museum of Cultures'),
(63782, 53781, 'de', 'name', 'Kloster St. Johann Müstair'),
(63783, 53782, 'fr', 'name', 'Bureau fƩdƩral de l''ƩgalitƩ entre femmes et hommes'),
(63784, 53782, 'de', 'name', 'Eidgenössisches Büro für die Gleichstellung von Frau und Mann'),
(63785, 53782, 'en', 'name', 'Federal Office for Gender Equality'),
(63786, 53782, 'it', 'name', 'Ufficio federale per l''uguaglianza fra donna e uomo'),
(63787, 53783, 'it', 'name', 'Organizzazione Sociopsichiatrica Cantonale'),
(63788, 53784, 'fr', 'name', 'Clinique Valmont'),
(63789, 53785, 'no_lang_code', 'name', 'TK Consult (Switzerland)'),
(63790, 53786, 'de', 'name', 'Bundesgericht'),
(63791, 53786, 'en', 'name', 'Federal Supreme Court of Switzerland'),
(63792, 53786, 'rm', 'name', 'Tribunal federal'),
(63793, 53786, 'fr', 'name', 'Tribunal fƩdƩral'),
(63794, 53786, 'it', 'name', 'Tribunale federale'),
(63795, 53787, 'de', 'name', 'Robert Walser-Zentrum'),
(63796, 53788, 'de', 'name', 'Stockalperstiftung'),
(63797, 53789, 'de', 'name', 'Psychiatrie Baselland'),
(63798, 53789, 'en', 'name', 'Psychiatry Baselland'),
(63799, 53790, 'en', 'name', 'Center for Systems Biology'),
(63800, 53791, 'no_lang_code', 'name', 'Rütter Soceco (Switzerland)'),
(63801, 53792, 'no_lang_code', 'name', 'Flury and Giuliani (Switzerland)'),
(63802, 53793, 'en', 'name', 'Clinica Luganese Moncucco'),
(63803, 53794, 'en', 'name', 'Center for Nutrition Policy and Promotion'),
(63804, 53795, 'en', 'name', 'Grain Inspection, Packers and Stockyards Administration'),
(63805, 53796, 'de', 'name', 'Forum Ost West'),
(63806, 53797, 'en', 'name', 'National Agricultural Library'),
(63807, 53798, 'en', 'name', 'USDA Rural Development'),
(63808, 53799, 'de', 'name', 'Institut für Urheber- und Medienrecht'),
(63809, 53800, 'de', 'name', 'Amt für Archäologie'),
(63810, 53801, 'it', 'name', 'Archeologia Svizzera'),
(63811, 53801, 'de', 'name', 'ArchƤologie Schweiz'),
(63812, 53801, 'fr', 'name', 'ArchƩologie Suisse'),
(63813, 53801, 'en', 'name', 'Swiss Archaeology'),
(63814, 53802, 'de', 'name', 'ArchƤologie Baselland'),
(63815, 53803, 'de', 'name', 'Archäologischen Dienst Graubünden'),
(63816, 53803, 'it', 'name', 'Servizio archeologico dei Grigioni'),
(63817, 53803, 'rm', 'name', 'servetsch archeologic dal Grischun'),
(63818, 53804, 'de', 'name', 'INURA Zürich Institut'),
(63819, 53805, 'fr', 'name', 'HƓpital Beau-SƩjour'),
(63820, 53806, 'de', 'name', 'Lamprecht und Stamm Sozialforschung und Beratung'),
(63821, 53807, 'fr', 'name', 'HƓpital de Cery'),
(63822, 53808, 'no_lang_code', 'name', 'Japan Tobacco (Switzerland)'),
(63823, 53809, 'no_lang_code', 'name', 'Sottas Formative Works (Switzerland)'),
(63824, 53810, 'it', 'name', 'Memoriav'),
(63825, 53811, 'fr', 'name', 'Hospital Neuchâtel'),
(63826, 53812, 'de', 'name', 'KantonsarchƤologie Aargau'),
(63827, 53813, 'de', 'name', 'Kantonsarchäologie des Kantons Zürich'),
(63828, 53814, 'de', 'name', 'Klinik Sonnenhof'),
(63829, 53815, 'de', 'name', 'Kantonsschule Enge'),
(63830, 53816, 'de', 'name', 'Kantonsschule Sargans'),
(63831, 53817, 'en', 'name', 'University of Veterinary Medicine'),
(63832, 53817, 'hu', 'name', 'ƁllatorvostudomƔnyi Egyetem'),
(63833, 53818, 'no_lang_code', 'name', 'Neurotune (Switzerland)'),
(63834, 53819, 'no_lang_code', 'name', 'Novo Business Consultants (Switzerland)'),
(63835, 53820, 'de', 'name', 'Paul Sacher Stiftung'),
(63836, 53821, 'de', 'name', 'Eidgenössisches Institut für Geistiges Eigentum'),
(63837, 53821, 'rm', 'name', 'Institut Federal da Proprietad Intellectuala'),
(63838, 53821, 'fr', 'name', 'Institut FƩdƩral de la PropriƩtƩ Intellectuelle'),
(63839, 53821, 'it', 'name', 'Istituto Federale della ProprietĆ  Intellettuale'),
(63840, 53821, 'en', 'name', 'Swiss Federal Institute of Intellectual Property'),
(63841, 53822, 'no_lang_code', 'name', 'Planconsult (Switzerland)'),
(63842, 53823, 'no_lang_code', 'name', 'Urbaplan (Switzerland)'),
(63843, 53824, 'de', 'name', 'RISM Digital Center'),
(63844, 53824, 'fr', 'name', 'Bureau suisse du RISM'),
(63845, 53824, 'it', 'name', 'Ufficio svizzero RISM'),
(63846, 53825, 'no_lang_code', 'name', 'Bedag Informatik (Switzerland)'),
(63847, 53826, 'de', 'name', 'Library Am Guisanplatz'),
(63848, 53827, 'de', 'name', 'Schweizerisches Institut für Kinder- und Jugendmedien'),
(63849, 53828, 'no_lang_code', 'name', 'Academia Raetica'),
(63850, 53829, 'fr', 'name', 'BibliothĆØque Cantonale Jurassienne'),
(63851, 53830, 'no_lang_code', 'name', 'Bioanalytica (Switzerland)'),
(63852, 53831, 'de', 'name', 'Biologie Labor'),
(63853, 53832, 'en', 'name', 'Museum of Art and History'),
(63854, 53832, 'fr', 'name', 'Musée d''Art et d''Histoire de Neuchâtel'),
(63855, 53833, 'rm', 'name', 'Departament federal da finanzas'),
(63856, 53833, 'it', 'name', 'Dipartimento federale delle finanze'),
(63857, 53833, 'fr', 'name', 'DƩpartement fƩdƩral des finances'),
(63858, 53833, 'de', 'name', 'Eidgenƶssisches Finanzdepartement'),
(63859, 53833, 'en', 'name', 'Federal Department of Finance'),
(63860, 53834, 'no_lang_code', 'name', 'AGRIDEA'),
(63861, 53834, 'en', 'name', 'Agricultural Advisory and Extension Services'),
(63862, 53834, 'de', 'name', 'Entwicklung der Landwirtschaft und des LƤndlichen Raums'),
(63863, 53834, 'it', 'name', 'La Centrale di consulenza agricola'),
(63864, 53835, 'de', 'name', 'Dialog Ethik'),
(63865, 53836, 'no_lang_code', 'name', 'Von Roll (Switzerland)'),
(63866, 53837, 'en', 'name', 'Federal Office of Information Technology Systems and Telecommunication'),
(63867, 53837, 'fr', 'name', 'Office fĆ©dĆ©ral de l’informatique et de la tĆ©lĆ©communication'),
(63868, 53837, 'it', 'name', 'Ufficio federale dell’informatica e della telecomunicazione'),
(63869, 53837, 'rm', 'name', 'Uffizi federal d’informatica e da telecommunicaziun'),
(63870, 53838, 'de', 'name', 'Bundesamt für Kultur'),
(63871, 53838, 'it', 'name', 'Ufficio federale della cultura'),
(63872, 53838, 'rm', 'name', 'Uffizi federal da cultura'),
(63873, 53839, 'no_lang_code', 'name', 'CSS (Switzerland)'),
(63874, 53840, 'en', 'name', 'Federal Criminal Court'),
(63875, 53840, 'rm', 'name', 'Tribunal penal federal'),
(63876, 53840, 'fr', 'name', 'Tribunal pƩnal fƩdƩral'),
(63877, 53840, 'it', 'name', 'Tribunale penale federale'),
(63878, 53841, 'de', 'name', 'Bündner Kunstmuseum'),
(63879, 53842, 'fr', 'name', 'PrƩparation aux Examens PrƩalables'),
(63880, 53843, 'en', 'name', 'Albrecht von Haller Foundation'),
(63881, 53843, 'de', 'name', 'Albrecht von Haller-Stiftung'),
(63882, 53844, 'fr', 'name', 'BibliothĆØque de la Bourgeoisie de Berne'),
(63883, 53844, 'de', 'name', 'Burgerbibliothek of Berne'),
(63884, 53845, 'de', 'name', 'Kompetenzzentrum Gesundheit und Alter'),
(63885, 53846, 'de', 'name', 'Büro für Arbeits und Sozialpolitische Studien'),
(63886, 53847, 'de', 'name', 'Amt für Umwelt'),
(63887, 53848, 'no_lang_code', 'name', 'Oliva (Switzerland)'),
(63888, 53849, 'no_lang_code', 'name', 'eHealth Consulting (United States)'),
(63889, 53850, 'fr', 'name', 'Caisse de PrƩvoyance du Personnel de l''Etat de Fribourg'),
(63890, 53851, 'fr', 'name', 'Gymnase de La CitƩ Lausanne'),
(63891, 53852, 'de', 'name', 'Amt für Raumentwicklung'),
(63892, 53853, 'de', 'name', 'Fachstelle für Gleichstellung von Frau und Mann'),
(63893, 53853, 'en', 'name', 'Office for the Equality of Men and Women'),
(63894, 53854, 'de', 'name', 'ArchƤologische Bodenforschung des Kantons Basel-Stadt'),
(63895, 53855, 'de', 'name', 'Archiv für Agrargeschichte'),
(63896, 53855, 'en', 'name', 'Archives of Rural History'),
(63897, 53856, 'fr', 'name', 'Archives de l''ancien ƉvĆŖchĆ© de BĆ¢le'),
(63898, 53857, 'en', 'name', 'Cardiovascular Medicine at Klinik Im Park'),
(63899, 53857, 'de', 'name', 'HerzgefƤss Medizin Klinik Im Park'),
(63900, 53858, 'en', 'name', 'Centre for Training and Integrated Research In ASAL Development'),
(63901, 53859, 'de', 'name', 'Amt für Städtebau'),
(63902, 53860, 'de', 'name', 'ArchƤologischer Dienst des Kantons Bern'),
(63903, 53861, 'fr', 'name', 'Centre Alpien de PhytogƩographie'),
(63904, 53862, 'fr', 'name', 'Centre International d''Etude du Sport'),
(63905, 53862, 'en', 'name', 'International Centre for Sports Studies'),
(63906, 53863, 'de', 'name', 'Fondation Suisse pour la Recherche en Microtechnique'),
(63907, 53863, 'en', 'name', 'Swiss Foundation for Research in Microtechnology'),
(63908, 53864, 'de', 'name', 'Holbein-Gymnasium Augsburg'),
(63909, 53865, 'de', 'name', 'Pro Vistiliaco'),
(63910, 53866, 'de', 'name', 'Schweizerische Gesellschaft für Soziologie'),
(63911, 53866, 'en', 'name', 'Swiss Sociological Association'),
(63912, 53867, 'fr', 'name', 'HƓpital intercantonal de la Broye'),
(63913, 53868, 'de', 'name', 'Hospiz im Park'),
(63914, 53869, 'no_lang_code', 'name', 'INFRAS (Switzerland)'),
(63915, 53870, 'no_lang_code', 'name', 'GEO Partner (Switzerland)'),
(63916, 53871, 'no_lang_code', 'name', 'GEOTEST (Switzerland)'),
(63917, 53872, 'de', 'name', 'GeschƤftsstelle SVIAL'),
(63918, 53873, 'de', 'name', 'Gesundheitsdepartement des Kantons Basel-Stadt'),
(63919, 53874, 'de', 'name', 'Institut für Sozialwissenschaftliche Analysen und Beratung'),
(63920, 53875, 'la', 'name', 'Foederatio Medicorum Helveticorum'),
(63921, 53876, 'fr', 'name', 'Orthodontie MC20'),
(63922, 53877, 'de', 'name', 'Gelenkzentrum Zürich'),
(63923, 53878, 'en', 'name', 'Center for Pediatric Endocrinology Zurich'),
(63924, 53878, 'de', 'name', 'Pädiatrisch-Endokrinologisches Zentrum Zürich'),
(63925, 53879, 'de', 'name', 'Technische Fachschule Bern'),
(63926, 53880, 'no_lang_code', 'name', 'Itopia (Switzerland)'),
(63927, 53881, 'de', 'name', 'Liechtenstein Institute'),
(63928, 53882, 'en', 'name', 'Geneva Finance Research Institute'),
(63929, 53883, 'no_lang_code', 'name', 'Axon Active (Switzerland)'),
(63930, 53884, 'en', 'name', 'Institute of Archeology'),
(63931, 53884, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ археології ŠŠŠ України'),
(63932, 53885, 'no_lang_code', 'name', 'Madep (Switzerland)'),
(63933, 53886, 'no_lang_code', 'name', 'Jean-Marc Blanc Consultant (Switzerland)'),
(63934, 53887, 'no_lang_code', 'name', 'Mat-Tec (Switzerland)'),
(63935, 53888, 'en', 'name', 'Institute of Ecology and Geography'),
(63936, 53888, 'ro', 'name', 'Institutul de Ecologie și Geografie'),
(63937, 53889, 'de', 'name', 'Kantonale Planungsgruppe'),
(63938, 53890, 'de', 'name', 'Kantonale Psychiatrische Dienste St Gallen'),
(63939, 53891, 'no_lang_code', 'name', 'Planar (Switzerland)'),
(63940, 53892, 'no_lang_code', 'name', 'Metron (Switzerland)'),
(63941, 53893, 'no_lang_code', 'name', 'Planval (Switzerland)'),
(63942, 53894, 'no_lang_code', 'name', 'Microscan Service (Switzerland)'),
(63943, 53895, 'en', 'name', 'Bethesda Spital'),
(63944, 53896, 'no_lang_code', 'name', 'MOR Informatik (Switzerland)'),
(63945, 53897, 'de', 'name', 'Karl Jaspers Stiftung'),
(63946, 53898, 'en', 'name', 'Cantonal Museum of Fine Arts'),
(63947, 53898, 'fr', 'name', 'MusƩe cantonal des beaux-arts'),
(63948, 53899, 'de', 'name', 'Privatbüro Plus'),
(63949, 53900, 'en', 'name', 'Art and History Museum of Fribourg'),
(63950, 53900, 'fr', 'name', 'MusƩe d''Art et d''Histoire de Fribourg'),
(63951, 53901, 'de', 'name', 'Privatklinik Meiringen'),
(63952, 53902, 'en', 'name', 'Geneva Ethnography Museum'),
(63953, 53902, 'fr', 'name', 'Musée d''Ethnographie de Genève'),
(63954, 53903, 'de', 'name', 'Pro Familia Schweiz'),
(63955, 53904, 'de', 'name', 'MusƩe suisse du jeu'),
(63956, 53904, 'en', 'name', 'Swiss Museum of Games'),
(63957, 53905, 'de', 'name', 'Psychiatriezentrum Münsingen'),
(63958, 53906, 'de', 'name', 'Kollegium für Hausarztmedizin'),
(63959, 53907, 'de', 'name', 'Schweizerisches Institut für öffentliches Management'),
(63960, 53907, 'en', 'name', 'Swiss Institute for Public Management'),
(63961, 53908, 'de', 'name', 'Schweizerisches Sozialarchiv'),
(63962, 53908, 'en', 'name', 'Swiss Social Archives'),
(63963, 53909, 'it', 'name', 'Scuola Cantonale di Commercio Bellinzona'),
(63964, 53910, 'en', 'name', 'Federation of Swiss Protestant Churches'),
(63965, 53911, 'en', 'name', 'Bellikon Rehabilitation Clinic'),
(63966, 53911, 'de', 'name', 'Rehaklinik Bellikon'),
(63967, 53912, 'fr', 'name', 'Service de la SantƩ Publique'),
(63968, 53913, 'de', 'name', 'Sozialwissenschaftliche Forschung und Beratung'),
(63969, 53914, 'de', 'name', 'Schweizerische Vereinigung Industrie und Landwirtschaft'),
(63970, 53915, 'de', 'name', 'Stiftung Landschaftsschutz Schweiz'),
(63971, 53916, 'de', 'name', 'Stiftung Zürcher Kinder- und Jugendheime'),
(63972, 53917, 'de', 'name', 'Ausbildungs- und Tagungszentrum Bienenberg'),
(63973, 53917, 'en', 'name', 'Theological Seminary Bienenberg'),
(63974, 53918, 'de', 'name', 'Gfs-Zürich'),
(63975, 53919, 'de', 'name', 'Schweizerische Pastoralsoziologische Institut'),
(63976, 53920, 'no_lang_code', 'name', 'Treeze (Switzerland)'),
(63977, 53921, 'de', 'name', 'Spital STS'),
(63978, 53922, 'de', 'name', 'Neue Galerie Luzern'),
(63979, 53923, 'de', 'name', 'Fotostiftung Schweiz'),
(63980, 53924, 'de', 'name', 'Schweizerische Akademie der Pharmazeutische Wissenschaften'),
(63981, 53924, 'en', 'name', 'Swiss Academy of Pharmaceutical Sciences'),
(63982, 53925, 'de', 'name', 'Schweizerische Gesellschaft für Volkskunde'),
(63983, 53926, 'it', 'name', 'Archivio di Stato di Firenze'),
(63984, 53927, 'no_lang_code', 'name', 'Wenger Plattner (Switzerland)'),
(63985, 53928, 'no_lang_code', 'name', 'Arcoplan (Switzerland)'),
(63986, 53929, 'de', 'name', 'Wohnstadt'),
(63987, 53930, 'en', 'name', 'ARGO Foundation'),
(63988, 53930, 'de', 'name', 'ARGO Stiftung'),
(63989, 53931, 'en', 'name', 'Unitectra'),
(63990, 53932, 'de', 'name', 'Zentrum für Gefässkrankheiten'),
(63991, 53933, 'en', 'name', 'Swiss Conference of Cantonal Ministers of Education'),
(63992, 53934, 'en', 'name', 'Armenian National Survey for Seismic Protection'),
(63993, 53935, 'en', 'name', 'Art as Foundation'),
(63994, 53936, 'de', 'name', 'Arud'),
(63995, 53937, 'de', 'name', 'Abwasserverband Altenrhein'),
(63996, 53938, 'de', 'name', 'Universitätsklinik für Diabetologie, Endokrinologie, Ernährungsmedizin & Metabolismus'),
(63997, 53939, 'en', 'name', 'International Center for Astronomical, Medical and Ecological Research'),
(63998, 53940, 'no_lang_code', 'name', 'Beratungsdienste für Ausbildung und Beruf Aargau (Switzerland)'),
(63999, 53941, 'de', 'name', 'Ad Baumgartner Sozialforschung'),
(64000, 53942, 'en', 'name', 'Association of Ukrainian Cities'),
(64001, 53942, 'uk', 'name', 'ŠŃŠ¾Ń†Ń–Š°Ń†Ń–Ń міст України та громаГ'),
(64002, 53943, 'no_lang_code', 'name', 'Agriforest (Switzerland)'),
(64003, 53944, 'de', 'name', 'Aebli-NƤf-Stiftung'),
(64004, 53945, 'en', 'name', 'Belgrade Centre for Security Policy'),
(64005, 53946, 'fr', 'name', 'Association Fribourgeoise des Psychologues'),
(64006, 53947, 'it', 'name', 'Fondazione Alpina per le Scienze della Vita'),
(64007, 53948, 'de', 'name', 'Association Internationale de la SƩcuritƩ Sociale'),
(64008, 53948, 'en', 'name', 'International Social Security Association'),
(64009, 53949, 'de', 'name', 'Kantonsschule Baden'),
(64010, 53950, 'de', 'name', 'Berlinische Galerie'),
(64011, 53951, 'en', 'name', 'Agrophysical Research Institute'),
(64012, 53951, 'ru', 'name', 'Агрофизический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(64013, 53952, 'no_lang_code', 'name', 'BSS Architekten (Switzerland)'),
(64014, 53953, 'no_lang_code', 'name', 'Emmi (Switzerland)'),
(64015, 53954, 'no_lang_code', 'name', 'Buchhofer (Switzerland)'),
(64016, 53955, 'de', 'name', 'Kunsthalle Marcel Duchamp'),
(64017, 53956, 'no_lang_code', 'name', 'Akanthus (Switzerland)'),
(64018, 53957, 'no_lang_code', 'name', 'Mobsya'),
(64019, 53958, 'it', 'name', 'Biblioteca Cantonale di Lugano'),
(64020, 53959, 'en', 'name', 'BFF Bern'),
(64021, 53960, 'fr', 'name', 'Association Savoir Patient'),
(64022, 53961, 'de', 'name', 'Kantonsschule Alpenquai Luzern'),
(64023, 53962, 'fr', 'name', 'Association Suisse pour le Service aux RƩgions et Communes'),
(64024, 53963, 'en', 'name', 'Cedar Grove Institute for Sustainable Communities'),
(64025, 53964, 'de', 'name', 'Schweizerische Bundeskanzlei'),
(64026, 53965, 'de', 'name', 'Bildungsdirektion Volksschulamt'),
(64027, 53965, 'en', 'name', 'Office of Elementary Education'),
(64028, 53966, 'fr', 'name', 'Alimentarium'),
(64029, 53967, 'no_lang_code', 'name', 'Bioengineering (Switzerland)'),
(64030, 53968, 'de', 'name', 'Allgemeine Berufsschule Zürich'),
(64031, 53969, 'no_lang_code', 'name', 'Atenisi Institute'),
(64032, 53970, 'en', 'name', 'Dr. Lisbeth Hurni Coaching & Consulting'),
(64033, 53970, 'de', 'name', 'Inhaberin Büro für Laufbahnpsychologie'),
(64034, 53971, 'de', 'name', 'Allgemeine Gewerbeschule Basel'),
(64035, 53972, 'no_lang_code', 'name', 'Büro Vatter (Switzerland)'),
(64036, 53973, 'no_lang_code', 'name', 'CABI Kenya'),
(64037, 53974, 'no_lang_code', 'name', 'AWK (Switzerland)'),
(64038, 53975, 'no_lang_code', 'name', 'Axone (Switzerland)'),
(64039, 53976, 'fr', 'name', 'Cabinet de Psychiatrie et PsychothƩrapie'),
(64040, 53977, 'en', 'name', 'Anatolia College'),
(64041, 53977, 'el', 'name', 'Κολλέγιο Ī‘Ī½Ī±Ļ„ĻŒĪ»Ī¹Ī±'),
(64042, 53978, 'no_lang_code', 'name', 'Büro für Altlasten, Boden und Umwelt (Switzerland)'),
(64043, 53979, 'no_lang_code', 'name', 'Bioterra (Switzerland)'),
(64044, 53980, 'no_lang_code', 'name', 'Ammann (Switzerland)'),
(64045, 53981, 'no_lang_code', 'name', 'Bachem (Switzerland)'),
(64046, 53982, 'de', 'name', 'Amt für Gemeinden und Raumordnung'),
(64047, 53983, 'no_lang_code', 'name', 'BAK Basel Economics (Switzerland)'),
(64048, 53984, 'de', 'name', 'Amt für Wald und Naturgefahren'),
(64049, 53985, 'en', 'name', 'Swiss Institute for Regenerative Medicine'),
(64050, 53986, 'en', 'name', 'Charles Humbert 8'),
(64051, 53987, 'en', 'name', 'Basel Institute on Governance'),
(64052, 53988, 'de', 'name', 'Basler Afrika Bibliographien'),
(64053, 53989, 'en', 'name', 'Albanian National Training and Technical Assistance Resource Center'),
(64054, 53990, 'de', 'name', 'Museum Kleines Klingental'),
(64055, 53991, 'no_lang_code', 'name', 'Basys (Germany)'),
(64056, 53992, 'en', 'name', 'Center for Liberal Democratic Studies'),
(64057, 53993, 'no_lang_code', 'name', 'Batrec (Switzerland)'),
(64058, 53994, 'no_lang_code', 'name', 'Batumi Botanical Garden'),
(64059, 53994, 'ka', 'name', 'įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒ‘įƒįƒ¢įƒįƒœįƒ˜įƒ™įƒ£įƒ įƒ˜ įƒ‘įƒįƒ¦įƒ˜'),
(64060, 53995, 'en', 'name', 'Caucasus Institute for Peace, Democracy and Development'),
(64061, 53996, 'en', 'name', 'Berenson Allen Center for Noninvasive Brain Stimulation'),
(64062, 53997, 'no_lang_code', 'name', 'Bau-, Verkehrs- und Energiedirektion (Switzerland)'),
(64063, 53998, 'fr', 'name', 'Centre InterrƩgional de Perfectionnement'),
(64064, 53999, 'fr', 'name', 'Alliance Sud'),
(64065, 54000, 'de', 'name', 'Baudirektion Kanton Zürich'),
(64066, 54001, 'fr', 'name', 'Centre National de Recherches sur l''Environnement'),
(64067, 54002, 'en', 'name', 'Center for Social and Economic Research'),
(64068, 54002, 'uk', 'name', 'Центр ŃŠ¾Ń†Ń–Š°Š»ŃŒŠ½Š¾-економічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(64069, 54003, 'no_lang_code', 'name', 'Center for Social Research Analitika'),
(64070, 54004, 'en', 'name', 'Centre for Advanced Study'),
(64071, 54005, 'en', 'name', 'Vive Zene'),
(64072, 54005, 'bs', 'name', 'Vive Zene Centar za terapiju i rehabilitaciju'),
(64073, 54006, 'en', 'name', 'Center for Vascular Biology Research'),
(64074, 54007, 'fr', 'name', 'Archives Cantonales Vaudoises'),
(64075, 54008, 'en', 'name', 'Chemical Synthesis Lab'),
(64076, 54009, 'fr', 'name', 'Institut des Sciences du VƩgƩtal'),
(64077, 54010, 'it', 'name', 'Associazione Frantz Fanon'),
(64078, 54011, 'en', 'name', 'Centre for Political Courage'),
(64079, 54012, 'it', 'name', 'Associazione della Croce Rossa Italiana'),
(64080, 54013, 'en', 'name', 'Centre for Regional Policy Research and Cooperation Studiorum'),
(64081, 54014, 'en', 'name', 'Centre for Socio-Eco-Nomic Development'),
(64082, 54015, 'no_lang_code', 'name', 'Crossject (France)'),
(64083, 54016, 'en', 'name', 'Columbia Global Centers'),
(64084, 54017, 'de', 'name', 'Christlicher Friedensdienst'),
(64085, 54018, 'de', 'name', 'ch Stiftung für Eidgenössische Zusammenarbeit'),
(64086, 54019, 'fr', 'name', 'ConfƩrence Intercantonale de l''Instruction Publique de la Suisse Romande et du Tessin'),
(64087, 54020, 'no_lang_code', 'name', 'Elcotherm (Switzerland)'),
(64088, 54021, 'no_lang_code', 'name', 'Dadar Athornan Institute'),
(64089, 54022, 'no_lang_code', 'name', 'Circuit Therapeutics (United States)'),
(64090, 54023, 'en', 'name', 'Dangoria Charitable Trust'),
(64091, 54024, 'it', 'name', 'Archivio Segreto Vaticano'),
(64092, 54024, 'la', 'name', 'Archivum Secretum Apostolicum Vaticanum'),
(64093, 54024, 'en', 'name', 'Vatican Secret Archives'),
(64094, 54025, 'en', 'name', 'Centre for Higher Education'),
(64095, 54025, 'de', 'name', 'Centrum für Hochschulentwicklung'),
(64096, 54026, 'es', 'name', 'CIUDAD'),
(64097, 54027, 'no_lang_code', 'name', 'CLAC (Switzerland)'),
(64098, 54028, 'fr', 'name', 'Institution de Lavigny'),
(64099, 54029, 'no_lang_code', 'name', 'Dartfish (Switzerland)'),
(64100, 54030, 'en', 'name', 'Corpus Vitrearum International'),
(64101, 54030, 'de', 'name', 'Recherche Internationale sur le Vitrail'),
(64102, 54031, 'de', 'name', 'Departement für Erziehung und Kultur'),
(64103, 54032, 'de', 'name', 'Centre de ProcrƩation MƩdicalement AssistƩe'),
(64104, 54032, 'en', 'name', 'Centre for Medically Assisted Procreation'),
(64105, 54033, 'no_lang_code', 'name', 'Debiotech (Switzerland)'),
(64106, 54034, 'de', 'name', 'Debrunner Sozialforschung und Projekte'),
(64107, 54035, 'no_lang_code', 'name', 'Sunstar (Switzerland)'),
(64108, 54036, 'en', 'name', 'Delegation of the European Union to Guinea'),
(64109, 54036, 'fr', 'name', 'DĆ©lĆ©gation de l’Union EuropĆ©enne en RĆ©publique de GuinĆ©e'),
(64110, 54037, 'de', 'name', 'Denkmalpflege und ArchƤologie'),
(64111, 54038, 'fr', 'name', 'Hirslanden Clinique des Grangettes'),
(64112, 54039, 'fr', 'name', 'Clinique de La Source'),
(64113, 54040, 'de', 'name', 'Clinique Montbrillant'),
(64114, 54041, 'de', 'name', 'Club Bel Etage'),
(64115, 54042, 'en', 'name', 'Institute for Regional Economics'),
(64116, 54042, 'ru', 'name', 'Библиотека Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° проблем Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(64117, 54043, 'en', 'name', 'Ministry of Health of Kyrgyzstan'),
(64118, 54043, 'ky', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾Š¹ Республики'),
(64119, 54044, 'no_lang_code', 'name', 'Dionea (Switzerland)'),
(64120, 54045, 'fr', 'name', 'Office MƩdico PƩdagogique'),
(64121, 54046, 'de', 'name', 'Forschungs und Dokumentationsstelle Kind und Umwelt'),
(64122, 54047, 'no_lang_code', 'name', 'Ecosens (Switzerland)'),
(64123, 54048, 'no_lang_code', 'name', 'Ɖditions Gallimard (France)'),
(64124, 54049, 'de', 'name', 'Egger Kommunikation'),
(64125, 54050, 'en', 'name', 'Egypt Nanotechnology Center'),
(64126, 54050, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ł…ŲµŲ± Ł„Ł„Ł†Ų§Ł†Łˆ ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(64127, 54051, 'fr', 'name', 'MusĆ©e d’histoire du Valais'),
(64128, 54052, 'de', 'name', 'Eidgenössische Fachkommission für Biologische Sicherheit'),
(64129, 54052, 'en', 'name', 'Swiss Expert Committee for Biosafety'),
(64130, 54053, 'no_lang_code', 'name', 'Dr Heinrich JƤckli (Switzerland)'),
(64131, 54054, 'no_lang_code', 'name', 'Drolshammer Strategy and Law (Switzerland)'),
(64132, 54055, 'de', 'name', 'Dialog N'),
(64133, 54056, 'fr', 'name', 'Ambassade de Suisse aux Etats-Unis d’AmĆ©rique'),
(64134, 54056, 'en', 'name', 'Embassy of Switzerland in Washington'),
(64135, 54057, 'no_lang_code', 'name', 'E2A Architects (Switzerland)'),
(64136, 54058, 'en', 'name', 'Australian Resources Research Centre'),
(64137, 54059, 'de', 'name', 'Engeriedspital'),
(64138, 54060, 'no_lang_code', 'name', 'Enter (Switzerland)'),
(64139, 54061, 'de', 'name', 'Haute Ɖcole d''ingĆ©nierie et d''architecture de Fribourg'),
(64140, 54061, 'en', 'name', 'School of Engineering and Architecture of Fribourg'),
(64141, 54062, 'no_lang_code', 'name', 'Skat Consulting (Switzerland)'),
(64142, 54063, 'de', 'name', 'Amt für Hochbauten'),
(64143, 54064, 'de', 'name', 'Abteilung Bildungsplanung und Evaluation'),
(64144, 54065, 'fr', 'name', 'Ɖcole Secondaire de Nyon Marens'),
(64145, 54066, 'fr', 'name', 'Etablissement Primaire et Secondaire Vevey'),
(64146, 54067, 'en', 'name', 'Euro Balkan University'),
(64147, 54067, 'mk', 'name', 'Универзитет Евро-Балкан'),
(64148, 54068, 'en', 'name', 'European Institute for Legal Psychology'),
(64149, 54068, 'de', 'name', 'Europäisches Institut für Rechtspsychologie'),
(64150, 54069, 'en', 'name', 'European Platform of Women Scientists'),
(64151, 54070, 'fr', 'name', 'Affidea'),
(64152, 54071, 'it', 'name', 'Inclusione Andicap Ticino'),
(64153, 54072, 'no_lang_code', 'name', 'Ferarihs'),
(64154, 54073, 'de', 'name', 'Gesundheits- und Fürsorgedirektion des Kantons Bern'),
(64155, 54074, 'de', 'name', 'Forum für Zeitfragen'),
(64156, 54075, 'de', 'name', 'Departement Gesundheit und Soziales'),
(64157, 54076, 'de', 'name', 'Gesundheitsdienst'),
(64158, 54077, 'en', 'name', 'Foundation for promoting Information and Communication Technology'),
(64159, 54077, 'ro', 'name', 'Fundaţia Pentru Promovarea Tehnologiei Informaţiei şi Comunicaţiei'),
(64160, 54078, 'de', 'name', 'Departement Bildung, Kultur und Sport'),
(64161, 54079, 'en', 'name', 'Foundation for Research and Socio Ecological Harmony'),
(64162, 54080, 'fr', 'name', 'HƓpital du Jura Bernois'),
(64163, 54081, 'fr', 'name', 'Fondation de Nant'),
(64164, 54082, 'fr', 'name', 'Fondation Gandur pour l’Art'),
(64165, 54083, 'no_lang_code', 'name', 'Hosoya Schaefer Architects (Switzerland)'),
(64166, 54084, 'de', 'name', 'Fondation Pierre du Bois'),
(64167, 54084, 'en', 'name', 'Pierre du Bois Foundation'),
(64168, 54085, 'de', 'name', 'Ballenberg Freilichtmuseum der Schweiz'),
(64169, 54085, 'en', 'name', 'Ballenberg Swiss Open-Air Museum'),
(64170, 54086, 'fr', 'name', 'Fondation Suisse pour les Téléthèses'),
(64171, 54087, 'en', 'name', 'Fruit Growing Institute'),
(64172, 54087, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠžŠ²Š¾Ń‰Š°Ń€ŃŃ‚во'),
(64173, 54088, 'en', 'name', 'Hydrobiological Institute'),
(64174, 54088, 'mk', 'name', 'Š„ŠøŠ“Ń€Š¾Š±ŠøŠ¾Š»Š¾ŃˆŠŗŠø Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(64175, 54089, 'it', 'name', 'Fondazione Bolle di Magadino'),
(64176, 54090, 'it', 'name', 'Fondazione Pellegrini Canevascini'),
(64177, 54091, 'de', 'name', 'Sozialamt des Kantons Thurgau'),
(64178, 54092, 'de', 'name', 'Forel Klinik'),
(64179, 54093, 'no_lang_code', 'name', 'Hier und Jetzt (Switzerland)'),
(64180, 54094, 'no_lang_code', 'name', 'IC Infraconsult (Switzerland)'),
(64181, 54095, 'no_lang_code', 'name', 'HighDim (Switzerland)'),
(64182, 54096, 'ro', 'name', 'Institutul de Cercetari Metalurgice'),
(64183, 54096, 'en', 'name', 'Metallurgical Research Institute'),
(64184, 54097, 'en', 'name', 'Formation Continue UNIL-EPFL'),
(64185, 54098, 'de', 'name', 'Historischer Verein des Kantons Schwyz'),
(64186, 54099, 'de', 'name', 'Stadtbibliothek Winterthur'),
(64187, 54100, 'no_lang_code', 'name', 'Guagliardi Ruoss (Switzerland)'),
(64188, 54101, 'de', 'name', 'Historisches Museum Olten'),
(64189, 54102, 'fr', 'name', 'Gymnase de la rue des Alpes'),
(64190, 54103, 'fr', 'name', 'Gymnase du Bugnon'),
(64191, 54104, 'de', 'name', 'Gymnasien Kirchenfeld'),
(64192, 54105, 'de', 'name', 'Gymnasium am Münsterplatz'),
(64193, 54106, 'de', 'name', 'Stadt Zürich Hochbaudepartement'),
(64194, 54107, 'de', 'name', 'Hochgebirgsklinik Davos'),
(64195, 54108, 'no_lang_code', 'name', 'Geo7 (Switzerland)'),
(64196, 54109, 'de', 'name', 'ForschungsstƤtte der Evangelischen Studiengemeinschaft'),
(64197, 54110, 'de', 'name', 'Gerichte Zürich'),
(64198, 54111, 'de', 'name', 'Gesellschaft für Hochschulforschung'),
(64199, 54112, 'de', 'name', 'Hartmann Dreyer'),
(64200, 54113, 'no_lang_code', 'name', 'Infrastructure Management Consultants (Switzerland)'),
(64201, 54114, 'de', 'name', 'Spital Lachen'),
(64202, 54115, 'no_lang_code', 'name', 'HƤssig Sustech (Switzerland)'),
(64203, 54116, 'no_lang_code', 'name', 'Inser (Switzerland)'),
(64204, 54117, 'fr', 'name', 'IMACTIS'),
(64205, 54118, 'de', 'name', 'Imamed Radiologie Nordwest'),
(64206, 54119, 'fr', 'name', 'Institut et MusƩe des Suisses dans le monde'),
(64207, 54120, 'en', 'name', 'World Health Organization Regional Office for the Eastern Mediterranean'),
(64208, 54121, 'en', 'name', 'World Health Organization Regional Office for the Western Pacific'),
(64209, 54122, 'en', 'name', 'World Health Organization - Zimbabwe'),
(64210, 54123, 'en', 'name', 'Institute of Archaeology and Ethnography'),
(64211, 54123, 'hy', 'name', 'Ō³Ō±Ō± Õ€Õ†Ō±Ō³Ō»ÕÕˆÕ’Ō¹Õ…Ō±Õ† ŌµÕŽ Ō±Ō¶Ō³Ō±Ō³ÕÕˆÕ’Ō¹Õ…Ō±Õ† Ō»Õ†ÕÕŌ»ÕÕˆÕ’Õ'),
(64212, 54124, 'fr', 'name', 'Institut et MusƩe Voltaire'),
(64213, 54125, 'fr', 'name', 'Clinique Romande de RƩadaptation'),
(64214, 54126, 'en', 'name', 'Office of the Assistant Secretary for Planning and Evaluation'),
(64215, 54127, 'it', 'name', 'Academia Engiadina'),
(64216, 54128, 'de', 'name', 'Institut für Kommunikation & Führung'),
(64217, 54128, 'en', 'name', 'Institute for Communication and Leadership'),
(64218, 54129, 'de', 'name', 'Medizin Campus Bodensee'),
(64219, 54130, 'de', 'name', 'Institut für Wirtschaftsstudien Basel'),
(64220, 54131, 'fr', 'name', 'Institut National de la Statistique'),
(64221, 54132, 'en', 'name', 'Institute of Hydrobiology'),
(64222, 54132, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ГіГробіології'),
(64223, 54133, 'hr', 'name', 'Institut za poljoprivredu i turizam Poreč'),
(64224, 54133, 'en', 'name', 'Institute of Agriculture and Tourism'),
(64225, 54134, 'de', 'name', 'Institut Mathildenhƶhe Darmstadt'),
(64226, 54135, 'de', 'name', 'Institut Montana Zugerberg'),
(64227, 54136, 'fr', 'name', 'Institut SupƩrieur de Biotechnologie de Sfax');
INSERT INTO `ror_settings` VALUES
(64228, 54137, 'en', 'name', 'Institute of Biology of Komi Scientific Centre'),
(64229, 54137, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° биологии Коми ŠŠ¦ Š£Ń€Šž Š ŠŠ'),
(64230, 54138, 'en', 'name', 'International Society of Electrochemistry'),
(64231, 54139, 'en', 'name', 'Institute of Botany'),
(64232, 54139, 'hy', 'name', 'ՀՀ Ō³Ō±Ō± Ō²ÕøÖ‚Õ½Õ”Õ¢Õ”Õ¶ÕøÖ‚Õ©ÕµÕ”Õ¶ Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(64233, 54140, 'en', 'name', 'Carnegie Endowment for International Peace'),
(64234, 54141, 'en', 'name', 'Institute of Cryobiology and Food Technology'),
(64235, 54142, 'en', 'name', 'Prime Minister''s Office Finland'),
(64236, 54142, 'fi', 'name', 'StatsrƄdets Kansli'),
(64237, 54142, 'sv', 'name', 'Valtioneuvoston Kanslia'),
(64238, 54143, 'en', 'name', 'National Association of Development Organizations'),
(64239, 54144, 'en', 'name', 'Institute of Ecology of Mountain Territories'),
(64240, 54144, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø горных территорий Š ŠŠ'),
(64241, 54145, 'en', 'name', 'Institute for Balkan Studies and Centre for Thracology'),
(64242, 54145, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за балканистика с Ń†ŠµŠ½Ń‚ŃŠŃ€ по Ń‚Ń€Š°ŠŗŠ¾Š»Š¾Š³ŠøŃ'),
(64243, 54146, 'en', 'name', 'Institute of Occupational Medicine'),
(64244, 54147, 'en', 'name', 'Institute for Biomedical Diagnostics and Research NALAZ'),
(64245, 54148, 'en', 'name', 'Institute for Conflict Transformation and Peacebuilding'),
(64246, 54149, 'az', 'name', 'Coğrafiya İnstitutu'),
(64247, 54149, 'en', 'name', 'Institute of Geography'),
(64248, 54150, 'en', 'name', 'Institute for Economic Research and Policy Consulting'),
(64249, 54150, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ та політичних ŠŗŠ¾Š½ŃŃƒŠ»ŃŒŃ‚Š°Ń†Ń–Š¹'),
(64250, 54151, 'en', 'name', 'Institute of Geological Sciences'),
(64251, 54151, 'hy', 'name', 'ŌµÖ€ÕÆÖ€Õ”Õ¢Õ”Õ¶Õ”ÕÆÕ”Õ¶ Õ£Õ«ÕæÕøÖ‚Õ©ÕµÕøÖ‚Õ¶Õ¶Õ„Ö€Õ«'),
(64252, 54152, 'it', 'name', 'Istituto di Ortofonologia'),
(64253, 54153, 'it', 'name', 'Istituto Trapianti d''Organo e Immunocitologia'),
(64254, 54153, 'en', 'name', 'Organ Transplantation and Immunology Institute'),
(64255, 54154, 'en', 'name', 'Institute for Soil Science and Agrochemistry Research'),
(64256, 54154, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ņ‘Ń€ŃƒŠ½Ń‚Š¾Š·Š½Š°Š²ŃŃ‚Š²Š° та агрохімії імені Šž.Š. Доколовського'),
(64257, 54155, 'en', 'name', 'Institute for Soil Science and Agricultural Chemistry'),
(64258, 54155, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠ¾Ń‡Š²Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Šø агрохимии Š”Šž Š ŠŠ'),
(64259, 54156, 'de', 'name', 'Justiz Gemeinde und Kirchendirektion'),
(64260, 54157, 'en', 'name', 'International Dialogue Centre'),
(64261, 54158, 'en', 'name', 'Jinja Municipal Council'),
(64262, 54159, 'de', 'name', 'Staatsarchiv Nidwalden'),
(64263, 54160, 'en', 'name', 'Spital Linth'),
(64264, 54161, 'de', 'name', 'KantonsarchƤologie'),
(64265, 54162, 'de', 'name', 'KantonsarchƤologie'),
(64266, 54163, 'de', 'name', 'Kantonsbibliothek von Appenzell Ausserrhoden'),
(64267, 54164, 'de', 'name', 'Kantonsbibliothek Vadiana St.Gallen'),
(64268, 54165, 'de', 'name', 'Kantonsschule am Burggraben'),
(64269, 54166, 'de', 'name', 'Kantonsschule Freudenberg'),
(64270, 54167, 'de', 'name', 'Kantonsschule Olten'),
(64271, 54168, 'de', 'name', 'Kantonsschule Schaffhausen'),
(64272, 54169, 'de', 'name', 'Kollegium Spiritus Sanctus Brig'),
(64273, 54170, 'de', 'name', 'IFB AdipositasErkrankungen'),
(64274, 54170, 'en', 'name', 'IFB Adiposity Diseases'),
(64275, 54171, 'de', 'name', 'Kantonsschule Stadelhofen'),
(64276, 54172, 'de', 'name', 'Kantonsschule Zug'),
(64277, 54173, 'de', 'name', 'Interbion'),
(64278, 54174, 'en', 'name', 'Reagan-Udall Foundation'),
(64279, 54175, 'de', 'name', 'SpitƤler Schaffhausen'),
(64280, 54176, 'en', 'name', 'International Center for Agribusiness Research and Education'),
(64281, 54177, 'no_lang_code', 'name', 'Urangeologorazvedka'),
(64282, 54177, 'ru', 'name', 'УрангеологоразвеГка'),
(64283, 54178, 'de', 'name', 'MVZ Labor Ravensburg'),
(64284, 54179, 'en', 'name', 'Kazakh Scientific Reseach Institute for Ecology and Climate'),
(64285, 54179, 'kk', 'name', 'ŠšŠ¾Š¾Ń€Š“ŠøŠ½Š°Ń†ŠøŠ¾Š½Š½Š¾Š³Š¾ центра по ŠøŠ·Š¼ŠµŠ½ŠµŠ½ŠøŃŽ климата'),
(64286, 54180, 'en', 'name', 'Kosovar Centre for Security Studies'),
(64287, 54180, 'sq', 'name', 'Qendra Kosovare pƫr Studime tƫ Sigurisƫ'),
(64288, 54181, 'de', 'name', 'Klinik Bethesda'),
(64289, 54182, 'de', 'name', 'Spital Muri'),
(64290, 54183, 'es', 'name', 'Instituto Universitario de Profesiones Gerenciales'),
(64291, 54184, 'de', 'name', 'Krisenintervention Schweiz'),
(64292, 54185, 'no_lang_code', 'name', 'Laboratory of Glass Properties (Russia)'),
(64293, 54186, 'de', 'name', 'Kulturamt Appenzell'),
(64294, 54187, 'de', 'name', 'Kunsthaus Zug'),
(64295, 54188, 'en', 'name', 'Center for Drug Evaluation and Research'),
(64296, 54189, 'en', 'name', 'Center for Food Safety and Applied Nutrition'),
(64297, 54190, 'en', 'name', 'Center for Veterinary Medicine'),
(64298, 54191, 'en', 'name', 'National Center for Toxicological Research'),
(64299, 54192, 'no_lang_code', 'name', 'Kutch Mahila Vikas Sanghatan'),
(64300, 54193, 'en', 'name', 'Kyiv School of Economics'),
(64301, 54193, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠ° школа економіки'),
(64302, 54194, 'de', 'name', 'Landesdenkmalamt Baden Württemberg'),
(64303, 54195, 'en', 'name', 'Kyiv Mohyla Business School'),
(64304, 54195, 'uk', 'name', 'ŠšŠøŃ”Š²Š¾-ŠœŠ¾Š³ŠøŠ»ŃŠ½ŃŃŒŠŗŠ° Бізнес Школа'),
(64305, 54196, 'de', 'name', 'Landwirtschaftliches Zentrum Liebegg'),
(64306, 54197, 'fr', 'name', 'Laboratoire de Sciences de la Terre'),
(64307, 54198, 'no_lang_code', 'name', 'Lenz & Staehelin (Switzerland)'),
(64308, 54199, 'en', 'name', 'Lauener Foundation for Analytical Philosophy'),
(64309, 54199, 'de', 'name', 'Lauener-Stiftung'),
(64310, 54200, 'fr', 'name', 'Lausanne Natation'),
(64311, 54201, 'it', 'name', 'Lega Ticinese Contro il Reumatismo'),
(64312, 54202, 'no_lang_code', 'name', 'Malik Management (Switzerland)'),
(64313, 54203, 'en', 'name', 'Mary Rose Trust'),
(64314, 54204, 'de', 'name', 'Memory-Klinik Entlisberg'),
(64315, 54205, 'en', 'name', 'Meyerlustenberger Lachenal Attorneys at Law'),
(64316, 54206, 'no_lang_code', 'name', 'Y-Parc (Switzerland)'),
(64317, 54207, 'no_lang_code', 'name', 'Microsynth (Switzerland)'),
(64318, 54208, 'fr', 'name', 'MusƩe cantonal de zoologie de Lausanne'),
(64319, 54209, 'fr', 'name', 'MusƩe des beaux-arts de La Chaux-de-Fonds'),
(64320, 54210, 'de', 'name', 'Mittelschul- und Berufsbildungsamt'),
(64321, 54211, 'ro', 'name', 'Muzeul Național al Ţăranului RomĆ¢n'),
(64322, 54211, 'en', 'name', 'Romanian Peasant Museum'),
(64323, 54212, 'no_lang_code', 'name', 'MME Legal (Switzerland)'),
(64324, 54213, 'it', 'name', 'Museo di Valmaggia'),
(64325, 54214, 'it', 'name', 'Museo Vincenzo Vela'),
(64326, 54215, 'no_lang_code', 'name', 'Mobility Carsharing (Switzerland)'),
(64327, 54216, 'no_lang_code', 'name', 'MCE Avocats (Switzerland)'),
(64328, 54217, 'it', 'name', 'Museo Civico Villa dei Cedri'),
(64329, 54218, 'es', 'name', 'Nes Naturaleza'),
(64330, 54219, 'no_lang_code', 'name', 'NBE Therapeutics (Switzerland)'),
(64331, 54220, 'de', 'name', 'Museum Appenzell'),
(64332, 54221, 'no_lang_code', 'name', 'Med Discovery (Switzerland)'),
(64333, 54222, 'no_lang_code', 'name', 'Med-Consilium (Switzerland)'),
(64334, 54223, 'de', 'name', 'Museum im Lagerhaus'),
(64335, 54224, 'en', 'name', 'Museum of Yugoslav History'),
(64336, 54224, 'sr', 'name', 'Muzej Jugoslavije'),
(64337, 54225, 'it', 'name', 'Museo retico'),
(64338, 54225, 'rm', 'name', 'Museum retic'),
(64339, 54225, 'de', 'name', 'RƤtisches Museum'),
(64340, 54226, 'en', 'name', 'Nepal Centre for Contemporary Research'),
(64341, 54227, 'no_lang_code', 'name', 'Philips (China)'),
(64342, 54228, 'de', 'name', 'Rietberg Museum'),
(64343, 54229, 'en', 'name', 'Mountain Research Initiative'),
(64344, 54230, 'de', 'name', 'NET Metrix'),
(64345, 54231, 'de', 'name', 'Museum zu Allerheiligen'),
(64346, 54232, 'de', 'name', 'Museumsgesellschaft Zürich'),
(64347, 54233, 'no_lang_code', 'name', 'Myx (Switzerland)'),
(64348, 54234, 'no_lang_code', 'name', 'Oekoscience (Switzerland)'),
(64349, 54235, 'no_lang_code', 'name', 'RhySearch (Switzerland)'),
(64350, 54236, 'de', 'name', 'Medienboard Berlin-Brandenburg'),
(64351, 54237, 'no_lang_code', 'name', 'Medignition (Switzerland)'),
(64352, 54238, 'de', 'name', 'Mediplant'),
(64353, 54239, 'de', 'name', 'ƖKK (Switzerland)'),
(64354, 54240, 'en', 'name', 'Institute of Philosophy, Sociology and Law'),
(64355, 54241, 'en', 'name', 'National Center of Space Research and Technology'),
(64356, 54242, 'no_lang_code', 'name', 'Planair (Switzerland)'),
(64357, 54243, 'de', 'name', 'Ostkirchliches Institut Regensburg'),
(64358, 54244, 'en', 'name', 'Plant and Fungi Biotechnology Laboratory'),
(64359, 54245, 'en', 'name', 'Evelina London Children''s Healthcare'),
(64360, 54246, 'fr', 'name', 'Police Cantonale de GenĆØve'),
(64361, 54247, 'de', 'name', 'Pestalozzianum'),
(64362, 54248, 'de', 'name', 'Pflege-und Adoptivkinder Schweiz'),
(64363, 54249, 'no_lang_code', 'name', 'New Guinea Binatang Research Center'),
(64364, 54250, 'no_lang_code', 'name', 'Polynomics (Switzerland)'),
(64365, 54251, 'it', 'name', 'Pontificio Istituto di Archeologia Cristiana'),
(64366, 54252, 'en', 'name', 'Aigine Cultural Research Center'),
(64367, 54253, 'en', 'name', 'Pushkin Museum'),
(64368, 54253, 'ru', 'name', 'Музей ŠøŠ·Š¾Š±Ń€Š°Š·ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… ŠøŃŠŗŃƒŃŃŃ‚Š² им. А.Š”. Пушкина'),
(64369, 54254, 'de', 'name', 'Neues Museum Biel'),
(64370, 54255, 'de', 'name', 'Praktischer Umweltschutz'),
(64371, 54256, 'fr', 'name', 'RƩseau Fribourgeois de SantƩ Mentale'),
(64372, 54257, 'en', 'name', 'Cochrane'),
(64373, 54258, 'no_lang_code', 'name', 'R + R Burger Und Partner (Switzerland)'),
(64374, 54259, 'no_lang_code', 'name', 'Ringier (Switzerland)'),
(64375, 54260, 'no_lang_code', 'name', 'Robert-Grandpierre et Rapp (Switzerland)'),
(64376, 54261, 'en', 'name', 'Geological Survey of Kyrgyzstan'),
(64377, 54261, 'ky', 'name', 'Š“ŠµŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń служба ŠšŃ‹Ń€Š³Ń‹Š·ŃŃ‚ана'),
(64378, 54262, 'de', 'name', 'Rƶmisches Institut der Gƶrres-Gesellschaft'),
(64379, 54263, 'no_lang_code', 'name', 'Rosenthaler + Partner (Switzerland)'),
(64380, 54264, 'en', 'name', 'Research Center of Maternal and Child Health Protection'),
(64381, 54265, 'de', 'name', 'Departementssekretariat Schul- und Sportdepartement'),
(64382, 54266, 'no_lang_code', 'name', 'Sampark'),
(64383, 54267, 'de', 'name', 'Die Schweizer Fachstelle'),
(64384, 54268, 'no_lang_code', 'name', 'St.Galler Stadtwerke (Switzerland)'),
(64385, 54269, 'de', 'name', 'Schweizerische Gesellschaft für Ländliche Geschichte'),
(64386, 54270, 'de', 'name', 'Schweizerischer Gewerkschaftsbund'),
(64387, 54270, 'fr', 'name', 'Union syndicale suisse'),
(64388, 54270, 'it', 'name', 'Unione sindacale svizzera'),
(64389, 54271, 'de', 'name', 'NZZ am Sonntag'),
(64390, 54272, 'no_lang_code', 'name', 'Scanco Medical (Switzerland)'),
(64391, 54273, 'de', 'name', 'Schweizerische Koordinationsstelle für Bildungsforschung'),
(64392, 54274, 'no_lang_code', 'name', 'Schaffner (Switzerland)'),
(64393, 54275, 'no_lang_code', 'name', 'Scherrer (Switzerland)'),
(64394, 54276, 'it', 'name', 'Conferenza dei Vescovi svizzeri'),
(64395, 54276, 'fr', 'name', 'Conférence des évêques suisses'),
(64396, 54276, 'de', 'name', 'Schweizer Bischofskonferenz'),
(64397, 54276, 'en', 'name', 'Swiss Bishops Conference'),
(64398, 54277, 'de', 'name', 'Schweizer Presserat'),
(64399, 54278, 'en', 'name', 'Competition Commission Secretariat'),
(64400, 54278, 'de', 'name', 'Wettbewerbskommission'),
(64401, 54279, 'de', 'name', 'Schweizer Zither-Kulturzentrum'),
(64402, 54280, 'en', 'name', 'Office of Infectious Diseases'),
(64403, 54281, 'de', 'name', 'Schweizerische Akademie für Entwicklung'),
(64404, 54281, 'en', 'name', 'Swiss Academy for Development'),
(64405, 54282, 'de', 'name', 'Schweizer Allianz Gentechfrei'),
(64406, 54283, 'fr', 'name', 'SociƩtƩ d''Etudes TƶpffƩriennes'),
(64407, 54284, 'no_lang_code', 'name', 'Credit Suisse (Switzerland)'),
(64408, 54285, 'es', 'name', 'Servicio Nacional de MeteorologĆ­a e HidrologĆ­a del PerĆŗ'),
(64409, 54286, 'es', 'name', 'Servicio Nacional de HidrologĆ­a y MeteorologĆ­a'),
(64410, 54287, 'en', 'name', 'International Society for Military Law and the Law of War'),
(64411, 54287, 'nl', 'name', 'SociƩtƩ Internationale de Droit Militaire et de Droit de la Guerre'),
(64412, 54288, 'de', 'name', 'Schweizerischer Juristenverein'),
(64413, 54289, 'fr', 'name', 'Parc National Suisse'),
(64414, 54289, 'rm', 'name', 'Parc Naziunal Svizzer'),
(64415, 54289, 'it', 'name', 'Parco Nazionale Svizzero'),
(64416, 54289, 'de', 'name', 'Schweizerischer Nationalpark'),
(64417, 54289, 'en', 'name', 'Swiss National Park'),
(64418, 54290, 'en', 'name', 'Institute of Ecosystem Study'),
(64419, 54290, 'it', 'name', 'Istituto per lo Studio degli Ecosistemi'),
(64420, 54291, 'de', 'name', 'Schweizerisches Gesundheitsobservatorium'),
(64421, 54291, 'en', 'name', 'Swiss Health Observatory'),
(64422, 54292, 'no_lang_code', 'name', 'Schwery Consulting (Switzerland)'),
(64423, 54293, 'de', 'name', 'Statistische Amt Basel-Stadt'),
(64424, 54294, 'fr', 'name', 'Direction de la SƩcuritƩ et de la Justice'),
(64425, 54295, 'no_lang_code', 'name', 'Soudronic (Switzerland)'),
(64426, 54296, 'no_lang_code', 'name', 'Soundtherm (Switzerland)'),
(64427, 54297, 'de', 'name', 'Pro Helvetia'),
(64428, 54298, 'no_lang_code', 'name', 'Scimetrica (Switzerland)'),
(64429, 54299, 'fr', 'name', 'Service de l''Enfance et de la Jeunesse'),
(64430, 54300, 'de', 'name', 'Sozialversicherungsgericht des Kantons Zürich'),
(64431, 54301, 'no_lang_code', 'name', 'Strittmatter Partner (Switzerland)'),
(64432, 54302, 'no_lang_code', 'name', 'Studi Associati (Switzerland)'),
(64433, 54303, 'fr', 'name', 'Office de la Culture Section d''archƩologie et PalƩontologie'),
(64434, 54304, 'no_lang_code', 'name', 'Suisag (Switzerland)'),
(64435, 54305, 'no_lang_code', 'name', 'Suiselectra Consulting Engineers (Switzerland)'),
(64436, 54305, 'de', 'name', 'Suiselectra Ingenieurunternehmung AG'),
(64437, 54306, 'en', 'name', 'Fribourg Development Agency'),
(64438, 54306, 'de', 'name', 'Promotion Ʃconomique du canton de Fribourg'),
(64439, 54307, 'no_lang_code', 'name', 'Supercomputing Systems (Switzerland)'),
(64440, 54308, 'de', 'name', 'Schweizerische Gesellschaft für Kardiologie'),
(64441, 54309, 'fr', 'name', 'Direction GƩnƩrale de l''Enseignement Obligatoire - Enseignement Primaire'),
(64442, 54310, 'de', 'name', 'Schweizerische Radio- und Fernsehgesellschaft'),
(64443, 54310, 'rm', 'name', 'Societad Svizra da Radio e Televisiun'),
(64444, 54310, 'it', 'name', 'SocietĆ  svizzera di radiotelevisione'),
(64445, 54310, 'fr', 'name', 'SociƩtƩ suisse de radiodiffusion et tƩlƩvision'),
(64446, 54310, 'en', 'name', 'Swiss Broadcasting Corporation'),
(64447, 54311, 'fr', 'name', 'DƩpartement de la SantƩ et de l''Action Sociale'),
(64448, 54312, 'fr', 'name', 'Service de SantƩ de la Jeunesse'),
(64449, 54313, 'en', 'name', 'Swiss Integrative Center for Human Health'),
(64450, 54314, 'en', 'name', 'Court of Arbitration for Sport'),
(64451, 54314, 'fr', 'name', 'Tribunal arbitral du sport'),
(64452, 54315, 'de', 'name', 'Staatsarchiv des Kantons Bern'),
(64453, 54315, 'en', 'name', 'State Archive of Bern'),
(64454, 54316, 'no_lang_code', 'name', 'Trimarca (Switzerland)'),
(64455, 54317, 'en', 'name', 'Swiss Stem Cell Foundation'),
(64456, 54318, 'de', 'name', 'Staatsarchiv Luzern'),
(64457, 54319, 'en', 'name', 'Tuba City Regional Health Care'),
(64458, 54320, 'de', 'name', 'Staatsarchiv des Kantons Solothurn'),
(64459, 54321, 'no_lang_code', 'name', 'Symbios OrthopƩdie (Switzerland)'),
(64460, 54322, 'de', 'name', 'Staatskanzlei des Kantons Zürich'),
(64461, 54323, 'no_lang_code', 'name', 'Syndicom (Switzerland)'),
(64462, 54324, 'it', 'name', 'Ufficio di Statistica'),
(64463, 54325, 'de', 'name', 'Stadtarchiv Bern'),
(64464, 54326, 'de', 'name', 'Theologische Hochschule Chur'),
(64465, 54327, 'de', 'name', 'Stadtgalerie Bern'),
(64466, 54328, 'no_lang_code', 'name', 'Tamedia (Switzerland)'),
(64467, 54329, 'en', 'name', 'P.S. Pasternak Research Institute for Mountain Forestry'),
(64468, 54329, 'ru', 'name', 'Украинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного лесовоГства'),
(64469, 54330, 'no_lang_code', 'name', 'Burckhardt+Partner (Switzerland)'),
(64470, 54331, 'en', 'name', 'Ulugh Beg Astronomical Institute'),
(64471, 54332, 'fr', 'name', 'Touring Club Suisse'),
(64472, 54333, 'en', 'name', 'Independent Commission of Experts Switzerland – Second World War'),
(64473, 54333, 'de', 'name', 'UnabhƤngige Expertenkommission Schweiz'),
(64474, 54334, 'no_lang_code', 'name', 'Tornos (Switzerland)'),
(64475, 54335, 'es', 'name', 'Universidad Católica Lumen Gentium'),
(64476, 54336, 'no_lang_code', 'name', 'SKK Landschaftsarchitekten (Switzerland)'),
(64477, 54337, 'en', 'name', 'MRC Centre for Regenerative Medicine'),
(64478, 54338, 'no_lang_code', 'name', 'SNZ Ingenieure und Planer (Switzerland)'),
(64479, 54339, 'no_lang_code', 'name', 'SociĆ©tĆ© d''Ɖtude de l''Environnement (Switzerland)'),
(64480, 54340, 'de', 'name', 'Verwaltungsgericht Kantons Aargau'),
(64481, 54341, 'de', 'name', 'Swisslex'),
(64482, 54342, 'de', 'name', 'Vereinigung der Walliser Museen'),
(64483, 54343, 'en', 'name', 'Women''s Right to Education Programme'),
(64484, 54344, 'de', 'name', 'Verwaltungsgericht Kantons Zürich'),
(64485, 54345, 'fr', 'name', 'Verzone Woods Architectes'),
(64486, 54346, 'en', 'name', 'Department of Education, Youth and Culture'),
(64487, 54346, 'fr', 'name', 'DƩpartement de la Formation, de la Jeunesse et de la Culture'),
(64488, 54347, 'de', 'name', 'WiederkƤuerklinik'),
(64489, 54348, 'no_lang_code', 'name', 'Wüest Partner (Switzerland)'),
(64490, 54349, 'de', 'name', 'VIA AudioVideoFotoKunst'),
(64491, 54350, 'en', 'name', 'Virtu Public Affairs'),
(64492, 54351, 'no_lang_code', 'name', 'Velobüro (Switzerland)'),
(64493, 54352, 'no_lang_code', 'name', 'Vischer (Switzerland)'),
(64494, 54353, 'en', 'name', 'Foundation for People with Rare Diseases'),
(64495, 54353, 'de', 'name', 'Stiftung für Menschen mit seltenen Krankheiten'),
(64496, 54354, 'en', 'name', 'Zürich Zoological Garden'),
(64497, 54354, 'de', 'name', 'Zürich Zoologischer Garten'),
(64498, 54355, 'de', 'name', 'Schweizerische Vereinigung für Landesplanung'),
(64499, 54356, 'en', 'name', 'Berlin Zoological Garden'),
(64500, 54356, 'de', 'name', 'Zoologischer Garten Berlin'),
(64501, 54357, 'de', 'name', 'Vorarlberg Museum'),
(64502, 54358, 'no_lang_code', 'name', 'Verlagsvertretung Susan Filges (Germany)'),
(64503, 54359, 'en', 'name', 'Zurich Chamber of Commerce'),
(64504, 54359, 'de', 'name', 'Zürcher Handelskammer'),
(64505, 54360, 'de', 'name', 'Zentrum für Sprachtherapie'),
(64506, 54361, 'de', 'name', 'Zürcher RehaZentrum Davos'),
(64507, 54362, 'no_lang_code', 'name', 'Zurich Insurance Group (Switzerland)'),
(64508, 54362, 'de', 'name', 'Zürich Versicherungen'),
(64509, 54363, 'en', 'name', 'Women''s International League for Peace and Freedom'),
(64510, 54364, 'no_lang_code', 'name', 'Zwahlen et Mayr (Switzerland)'),
(64511, 54365, 'es', 'name', 'Fundación Alfonso Martín Escudero'),
(64512, 54366, 'es', 'name', 'CaixaBank'),
(64513, 54367, 'no_lang_code', 'name', 'Roemmers Laboratories (Argentina)'),
(64514, 54368, 'no_lang_code', 'name', 'Bayer (Switzerland)'),
(64515, 54369, 'da', 'name', 'BĆørnecancerfonden'),
(64516, 54370, 'en', 'name', 'Foundation for Alcohol Research'),
(64517, 54371, 'da', 'name', 'A.P. MĆøller og Hustru Chastine Mc-Kinney MĆøllers Fond'),
(64518, 54372, 'en', 'name', 'Alfred Kordelin Foundation'),
(64519, 54373, 'fr', 'name', 'Direction gĆ©nĆ©rale de l’éducation, de la jeunesse, du sport et de la culture'),
(64520, 54373, 'en', 'name', 'Directorate-General for Education, Youth, Sport and Culture'),
(64521, 54373, 'de', 'name', 'Generaldirektion Bildung, Jugend, Sport und Kultur'),
(64522, 54374, 'de', 'name', 'Departement für Wirtschaft, Soziales und Umwelt'),
(64523, 54375, 'sv', 'name', 'Alfred Ɩsterlunds Stiftelse'),
(64524, 54376, 'fr', 'name', 'Direction GƩnƩrale Recherche et innovation'),
(64525, 54376, 'en', 'name', 'Directorate-General for Research and Innovation'),
(64526, 54376, 'de', 'name', 'Generaldirektion Forschung und Innovation'),
(64527, 54377, 'es', 'name', 'Fundación Alicia Koplowitz'),
(64528, 54378, 'sv', 'name', 'Direktƶr Albert PƄhlssons Stiftelse fƶr VƤlgƶrenhet'),
(64529, 54379, 'fr', 'name', 'Association pour l''Assistance Ć  Domicile aux Insuffisants Respiratoire Chroniques'),
(64530, 54380, 'en', 'name', 'Bunge & Born Foundation'),
(64531, 54381, 'en', 'name', 'Caesars Foundation'),
(64532, 54382, 'en', 'name', 'Donald Woods Foundation'),
(64533, 54383, 'fr', 'name', 'Angers Loire MƩtropole'),
(64534, 54384, 'en', 'name', 'California Dried Plum Board'),
(64535, 54385, 'da', 'name', 'Dansk KrƦftforsknings Fond'),
(64536, 54386, 'de', 'name', 'JackstƤdt Stiftung'),
(64537, 54387, 'es', 'name', 'Agencia Canaria de Investigación, Innovación y Sociedad de la Información'),
(64538, 54388, 'fr', 'name', 'Agence de l''eau RhƓne MƩditerranƩe Corse'),
(64539, 54389, 'fr', 'name', 'Agence des Aires Marines ProtƩgƩes'),
(64540, 54390, 'en', 'name', 'Atlanta Clinical and Translational Science Institute'),
(64541, 54391, 'de', 'name', 'Deutsche JosƩ Carreras LeukƤmie-Stiftung'),
(64542, 54392, 'no_lang_code', 'name', 'LƤnsfƶrsƤkringar (Sweden)'),
(64543, 54393, 'en', 'name', 'Agrisus Foundation – Sustainable Agriculture'),
(64544, 54393, 'pt', 'name', 'Fundação Agrisus'),
(64545, 54394, 'en', 'name', 'Austrian Marshall Plan Foundation'),
(64546, 54394, 'de', 'name', 'Marshallplan JubilƤumsstiftung'),
(64547, 54395, 'en', 'name', 'Directorate General of Commercial Intelligence and Statistics'),
(64548, 54396, 'en', 'name', 'Diabetes Research and Wellness Foundation'),
(64549, 54397, 'fi', 'name', 'ElƤinlƤƤketieteen Tutkimuksen TukisƤƤtiƶ'),
(64550, 54397, 'en', 'name', 'Finnish Veterinary Foundation'),
(64551, 54398, 'en', 'name', 'Azm & Saade Association'),
(64552, 54399, 'sv', 'name', 'ƅhlĆ©n-Stiftelsen'),
(64553, 54400, 'de', 'name', 'Baden-Württemberg Stiftung'),
(64554, 54401, 'da', 'name', 'Eva og Henry FrƦnkels Mindefond'),
(64555, 54402, 'es', 'name', 'Fundacion Florencio Fiorini'),
(64556, 54403, 'de', 'name', 'Fondation pour la mƩdecine de laboratoire'),
(64557, 54403, 'en', 'name', 'Foundation for laboratory medicine'),
(64558, 54404, 'en', 'name', 'Foundation for the Promotion of Applied Scientific Research and Technology in Asturias'),
(64559, 54404, 'es', 'name', 'Fundación para el Fomento en Asturias de la Investigación Científica Aplicada y la Tecnología'),
(64560, 54405, 'en', 'name', 'National Centre for Research Methods'),
(64561, 54406, 'en', 'name', 'Comic Relief'),
(64562, 54407, 'no_lang_code', 'name', 'Planergemeinschaft für Stadt und Raum'),
(64563, 54408, 'es', 'name', 'Fundación para la Innovación y la Prospectiva en Salud en España'),
(64564, 54409, 'es', 'name', 'Fundación Ramón Areces'),
(64565, 54410, 'en', 'name', 'Commonwealth Scholarship Commission'),
(64566, 54411, 'es', 'name', 'Fundación Merck Salud'),
(64567, 54412, 'de', 'name', 'Beilstein-Institut'),
(64568, 54413, 'en', 'name', 'Brazilian Metallurgy and Mining Company'),
(64569, 54413, 'no_lang_code', 'name', 'Companhia Brasileira de Metalurgia e Mineração (Brazil)'),
(64570, 54414, 'en', 'name', 'Gabrielle’s Angel Foundation for Cancer Research'),
(64571, 54415, 'de', 'name', 'Gebert Rüf Stiftung'),
(64572, 54416, 'en', 'name', 'Finnish Foundation for Cardiovascular Research'),
(64573, 54416, 'fi', 'name', 'SydƤntutkimussƤƤtiƶ'),
(64574, 54417, 'fi', 'name', 'Tekniikan EdistƤmissƤƤtiƶ'),
(64575, 54418, 'en', 'name', 'Finnish Foundation of Veterinary Research'),
(64576, 54418, 'fi', 'name', 'Suomen elƤinlƤƤketieteen sƤƤtiƶ'),
(64577, 54419, 'en', 'name', 'Finnish Medical Foundation'),
(64578, 54419, 'fi', 'name', 'Suomen LƤƤketieteen SƤƤtiƶ'),
(64579, 54420, 'no_lang_code', 'name', 'IRT Group (Australia)'),
(64580, 54421, 'fr', 'name', 'Fondation Innovations en Infectiologie'),
(64581, 54422, 'en', 'name', 'Greek Society of Rheumatology'),
(64582, 54423, 'en', 'name', 'Isaac Newton Trust'),
(64583, 54424, 'en', 'name', 'Hellenic Thoracic Society'),
(64584, 54424, 'el', 'name', 'Ελληνική Πνευμονολογική Εταιρεία'),
(64585, 54425, 'fr', 'name', 'Fondation Gustave & Simone PrƩvot'),
(64586, 54426, 'da', 'name', 'Helsefonden'),
(64587, 54427, 'no_lang_code', 'name', 'ISIS Medical (France)'),
(64588, 54428, 'fr', 'name', 'Fondation MathƩmatiques Jacques Hadamard'),
(64589, 54429, 'en', 'name', 'Ministry of Defense'),
(64590, 54429, 'he', 'name', '×žÖ“×©Ö°×‚×ØÖ·×“ ×”Ö·×‘Ö“Ö¼×˜ÖøÖ¼×—×•Ö¹×Ÿ'),
(64591, 54430, 'fi', 'name', 'Lastentautien TutkimussƤƤtiƶ'),
(64592, 54431, 'en', 'name', 'Edmond J. Safra Philanthropic Foundation'),
(64593, 54431, 'de', 'name', 'Fondation Philanthropique Edmond J Safra'),
(64594, 54432, 'en', 'name', 'Jacobs Foundation'),
(64595, 54433, 'nl', 'name', 'Fondation Philippe Wiener - Maurice Anspach'),
(64596, 54433, 'en', 'name', 'Wiener - Anspach Foundation'),
(64597, 54434, 'fr', 'name', 'Fondation Sécurité Routière'),
(64598, 54435, 'en', 'name', 'Jalmari and Rauha Ahokas Foundation'),
(64599, 54435, 'fi', 'name', 'Jalmari ja Rauha Ahokkaan SƤƤtiƶ'),
(64600, 54436, 'en', 'name', 'CittĆ  della Speranza Foundation'),
(64601, 54437, 'en', 'name', 'Hope for Vision'),
(64602, 54438, 'en', 'name', 'Ettore and Valeria Rossi Foundation'),
(64603, 54438, 'de', 'name', 'Fondazione Ettore e Valeria Rossi'),
(64604, 54439, 'it', 'name', 'Fondazione Oronzio e Niccolò De Nora'),
(64605, 54440, 'da', 'name', 'HĆørslev-Fonden'),
(64606, 54441, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(64607, 54441, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(64608, 54442, 'en', 'name', 'Jeansson Foundations'),
(64609, 54442, 'sv', 'name', 'Jeanssons Stiftelser'),
(64610, 54443, 'sv', 'name', 'Gƶranssonska Stiftelserna'),
(64611, 54444, 'sv', 'name', 'LinnƩa och Josef Carlssons Stiftelse'),
(64612, 54445, 'no_lang_code', 'name', 'Check-Cap (Israel)'),
(64613, 54446, 'en', 'name', 'Ministry of Industries and Innovation'),
(64614, 54447, 'fi', 'name', 'Ida Montinin SƤƤtiƶ'),
(64615, 54448, 'en', 'name', 'Forest Genetics Council'),
(64616, 54449, 'en', 'name', 'Iketani Science and Technology Foundation'),
(64617, 54449, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę± č°·ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(64618, 54450, 'de', 'name', 'Forschungskreis der ErnƤhrungsindustrie'),
(64619, 54450, 'en', 'name', 'Research Association of the German Food Industry'),
(64620, 54451, 'en', 'name', 'Foulkes Foundation'),
(64621, 54452, 'no_lang_code', 'name', 'Juho Vainio Foundation'),
(64622, 54452, 'fi', 'name', 'Juho Vainion SƤƤtiƶ'),
(64623, 54453, 'fr', 'name', 'Institut National de PrĆ©vention et d’Education pour la SantĆ©'),
(64624, 54454, 'en', 'name', 'Jung Foundation for Science and Research'),
(64625, 54454, 'de', 'name', 'Jung-Stiftung für Wissenschaft und Forschung'),
(64626, 54455, 'en', 'name', 'Maud Kuistila Memorial Foundation'),
(64627, 54455, 'fi', 'name', 'Maud Kuistilan MuistosƤƤtiƶ'),
(64628, 54456, 'en', 'name', 'Instrumentarium Science Foundation'),
(64629, 54456, 'fi', 'name', 'Instrumentariumin tiedesƤƤtiƶ'),
(64630, 54457, 'en', 'name', 'Hartmann Müller Foundation'),
(64631, 54458, 'en', 'name', 'Foundation for Education and European Culture'),
(64632, 54458, 'el', 'name', 'Το ĪŠĪ“ĻĻ…Ī¼Ī± ΠαιΓείας και Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĪæĻ Ī ĪæĪ»Ī¹Ļ„Ī¹ĻƒĪ¼ĪæĻ'),
(64633, 54459, 'en', 'name', 'International Association for the Study of Dreams'),
(64634, 54460, 'en', 'name', 'International Psychoanalytical Association'),
(64635, 54461, 'fi', 'name', 'KAUTE-sƤƤtiƶ'),
(64636, 54461, 'en', 'name', 'Kaute Foundation'),
(64637, 54462, 'en', 'name', 'MƩditerranƩe Infection Foundation'),
(64638, 54463, 'en', 'name', 'NestlƩ Foundation'),
(64639, 54464, 'en', 'name', 'Kenneth Rainin Foundation'),
(64640, 54465, 'en', 'name', 'Cambridge Innovation Institute'),
(64641, 54466, 'en', 'name', 'Foundation for Urban and Regional Studies'),
(64642, 54467, 'sv', 'name', 'Neurofƶrbundet'),
(64643, 54468, 'en', 'name', 'Neuromuscular Research Association Basel'),
(64644, 54469, 'sv', 'name', 'Kjell och MƤrta Beijers Stiftelse'),
(64645, 54470, 'fr', 'name', 'Mutuelle GĆ©nĆ©rale de l''Ɖducation Nationale'),
(64646, 54471, 'en', 'name', 'New Zealand wine'),
(64647, 54472, 'en', 'name', 'Kone Foundation'),
(64648, 54472, 'fi', 'name', 'Koneen SƤƤtiƶ'),
(64649, 54473, 'en', 'name', 'Kƶrber Foundation'),
(64650, 54473, 'de', 'name', 'Kƶrber Stiftung'),
(64651, 54474, 'en', 'name', 'Friedrich Naumann Foundation'),
(64652, 54474, 'de', 'name', 'Friedrich-Naumann-Stiftung für die Freiheit'),
(64653, 54475, 'en', 'name', 'Nordic Co-operation'),
(64654, 54475, 'da', 'name', 'Nordiske Samarbejde'),
(64655, 54476, 'en', 'name', 'Kumagai Foundation for Science and Technology'),
(64656, 54476, 'ja', 'name', 'ē†Šč°·ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(64657, 54477, 'en', 'name', 'Parkinson’s Disease Foundation of India'),
(64658, 54478, 'en', 'name', 'Virginia-Carolinas Peanut Promotions'),
(64659, 54479, 'fr', 'name', 'Fondation du Nord en cancƩrologie'),
(64660, 54479, 'en', 'name', 'Northern Cancer Foundation'),
(64661, 54480, 'pt', 'name', 'Fundação Gorceix'),
(64662, 54481, 'pt', 'name', 'BoticƔrio Group Foundation'),
(64663, 54482, 'en', 'name', 'Northwest Scientific Association'),
(64664, 54483, 'es', 'name', 'Fundación Sandra Ibarra de Solidaridad Frente al CÔncer'),
(64665, 54484, 'es', 'name', 'Fundación Caja Navarra'),
(64666, 54485, 'en', 'name', 'Radium Hemmets Research Funds'),
(64667, 54485, 'sv', 'name', 'Radiumhemmets forskningsfonder'),
(64668, 54486, 'en', 'name', 'Office of Postsecondary Education'),
(64669, 54487, 'fr', 'name', 'Direction GƩnƩrale des Entreprises'),
(64670, 54488, 'no_lang_code', 'name', 'Equiservices Publishing (United States)'),
(64671, 54489, 'en', 'name', 'Falk Foundation'),
(64672, 54490, 'en', 'name', 'Office of Special Education and Rehabilitative Services'),
(64673, 54491, 'sv', 'name', 'Sveriges ƶgonlƤkarfƶrening'),
(64674, 54491, 'en', 'name', 'Swedish Ophthalmological Society'),
(64675, 54492, 'fr', 'name', 'SecrƩtariat GƩnƩral pour les Affaires RƩgionales'),
(64676, 54493, 'en', 'name', 'Foundation Blanceflor'),
(64677, 54494, 'en', 'name', 'Senri Life Science Foundation'),
(64678, 54494, 'ja', 'name', 'åƒé‡Œćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(64679, 54495, 'en', 'name', 'SENSHIN Medical Research Foundation'),
(64680, 54495, 'ja', 'name', 'ę–°ęƒ…å ±å‡¦ē†ęŒÆčˆˆč²”å›£'),
(64681, 54496, 'sv', 'name', 'Stiftelsen Kronprinsessan Margaretas ArbetsnƤmnd fƶr Synskadade'),
(64682, 54497, 'en', 'name', 'Rosa Luxemburg Foundation'),
(64683, 54497, 'de', 'name', 'Rosa-Luxemburg-Stiftung'),
(64684, 54498, 'sv', 'name', 'Stiftelsen LƤngmanska Kulturfonden'),
(64685, 54499, 'en', 'name', 'Shanghai Education Development Foundation'),
(64686, 54499, 'zh', 'name', 'äøŠęµ·åø‚ę•™č‚²å‘å±•åŸŗé‡‘ä¼š'),
(64687, 54500, 'en', 'name', 'Oskar Ɩflund Foundation'),
(64688, 54500, 'fi', 'name', 'Oskar Ɩflunds Stiftelse'),
(64689, 54501, 'sv', 'name', 'STROKE-Riksfƶrbundet'),
(64690, 54501, 'en', 'name', 'Swedish Stroke Association'),
(64691, 54502, 'de', 'name', 'Nationalstiftung für Forschung Technologie und Entwicklung'),
(64692, 54503, 'en', 'name', 'Russian Humanitarian Foundation'),
(64693, 54503, 'ru', 'name', 'Российский Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ ФонГ'),
(64694, 54504, 'da', 'name', 'Otto MĆønsteds Fond'),
(64695, 54505, 'fi', 'name', 'Paavo Nurmen SƤƤtiƶ'),
(64696, 54506, 'en', 'name', 'Finnish Brain Foundation'),
(64697, 54506, 'fi', 'name', 'Suomen AivosƤƤtiƶ'),
(64698, 54507, 'en', 'name', 'PƤivikki and Sakari Sohlberg Foundation'),
(64699, 54507, 'fi', 'name', 'PƤivikki ja Sakari Sohlbergin sƤƤtiƶ'),
(64700, 54508, 'sv', 'name', 'VƄrdal Stiftelsen'),
(64701, 54509, 'en', 'name', 'Kusudohara Memorial Foundation'),
(64702, 54509, 'ja', 'name', 'åÆæåŽŸčØ˜åæµč²”å›£'),
(64703, 54510, 'hu', 'name', 'Pallas AthƩnƩ Domus Animae AlapƭtvƔny'),
(64704, 54511, 'sv', 'name', 'Stiftelsen Forska Utan Djurfƶrsƶk'),
(64705, 54511, 'en', 'name', 'Swedish Fund for Research Without Animal Experiments'),
(64706, 54512, 'sv', 'name', 'Stiftelsen Sveriges Sjƶmanshus'),
(64707, 54512, 'en', 'name', 'Swedish Mercantile Marine Foundation'),
(64708, 54513, 'en', 'name', 'Fujichiro Iijima Memorial Food Science Promotion Foundation'),
(64709, 54513, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ é£Æå³¶č—¤åéƒŽčØ˜åæµé£Ÿå“ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(64710, 54514, 'en', 'name', 'Vehicle Games Public Utility Foundation Memorial Foundation'),
(64711, 54514, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ č»Šäø”ē«¶ęŠ€å…¬ē›Šč³‡é‡‘čØ˜åæµč²”å›£'),
(64712, 54515, 'fi', 'name', 'Tampereen TuberkuloosisƤƤtiƶ'),
(64713, 54516, 'fi', 'name', 'Tauno Tƶnningin SƤƤtiƶ'),
(64714, 54517, 'en', 'name', 'Thermal and Electric Energy Technology Foundation'),
(64715, 54517, 'ja', 'name', 'ē†±ćƒ»é›»ę°—ć‚Øćƒćƒ«ć‚®ćƒ¼ęŠ€č”“č²”å›£'),
(64716, 54518, 'en', 'name', 'Thrivent Financial'),
(64717, 54519, 'en', 'name', 'Shorai Foundation For Science And Technology'),
(64718, 54519, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę¾ē±Ÿē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(64719, 54520, 'en', 'name', 'Technology Industries of Finland'),
(64720, 54521, 'fi', 'name', 'Satakunnan Korkean Teknologian SƤƤtiƶ'),
(64721, 54522, 'nl', 'name', 'Stichting Vanderes'),
(64722, 54522, 'en', 'name', 'Vanderes Foundation'),
(64723, 54523, 'en', 'name', 'Signe and Ane Gyllenberg Foundation'),
(64724, 54523, 'fi', 'name', 'Signe ja Ane Gyllenbergin sƤƤtiƶ'),
(64725, 54524, 'fi', 'name', 'Lasten syƶpƤsƤƤtiƶ VƤre'),
(64726, 54524, 'en', 'name', 'VƤre Foundation for Pediatric Cancer Research'),
(64727, 54525, 'fi', 'name', 'Sigrid JusƩliuksen sƤƤtiƶ'),
(64728, 54525, 'en', 'name', 'Sigrid JusƩlius Foundation'),
(64729, 54526, 'en', 'name', 'Virginia Lakes and Watersheds Association'),
(64730, 54527, 'en', 'name', 'Yrjƶ Jahnsson Foundation'),
(64731, 54527, 'fi', 'name', 'Yrjƶ Jahnssonin sƤƤtiƶ'),
(64732, 54528, 'sv', 'name', 'SkogssƤllskapet'),
(64733, 54528, 'en', 'name', 'Swedish Forest Society Foundation'),
(64734, 54529, 'de', 'name', 'Von Behring-Rƶntgen-Stiftung'),
(64735, 54530, 'en', 'name', 'Stanley Thomas Johnson Foundation'),
(64736, 54530, 'de', 'name', 'Stanley Thomas Johnson Stiftung'),
(64737, 54531, 'en', 'name', 'Ulla Tuominen Foundation'),
(64738, 54531, 'fi', 'name', 'Ulla Tuomisen SƤƤtiƶ'),
(64739, 54532, 'de', 'name', 'Steirische Wirtschaftsfƶrderung'),
(64740, 54533, 'fr', 'name', 'Société Académique de Genève'),
(64741, 54534, 'en', 'name', 'Yamaguchi Endocrine Research Foundation'),
(64742, 54535, 'en', 'name', 'Belgorod State University of Arts and Culture'),
(64743, 54535, 'ru', 'name', 'БелгороГский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(64744, 54536, 'en', 'name', 'Ministry of Emergency Situations'),
(64745, 54536, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ по Гелам гражГанской обороны, чрезвычайным ŃŠøŃ‚ŃƒŠ°Ń†ŠøŃŠ¼ Šø ликвиГации послеГствий стихийных беГствий'),
(64746, 54537, 'en', 'name', 'Institute for the Humanities and Information Technologies'),
(64747, 54537, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø информационных технологий'),
(64748, 54538, 'en', 'name', 'Far Eastern State Institute of Arts'),
(64749, 54538, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(64750, 54539, 'en', 'name', 'University of Technology'),
(64751, 54539, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Московской области Технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(64752, 54540, 'en', 'name', 'Nevsky Institute of Language and Culture'),
(64753, 54540, 'ru', 'name', 'ŠŠµŠ²ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ·Ń‹ŠŗŠ° Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(64754, 54541, 'en', 'name', 'Institute of Social Sciences'),
(64755, 54541, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… наук'),
(64756, 54542, 'en', 'name', 'St. Petersburg University of the Humanities and Social Sciences'),
(64757, 54542, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃ€Š¾Ń„ŃŠ¾ŃŽŠ·Š¾Š² [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(64758, 54543, 'en', 'name', 'Volga Region State Academy of Physical Culture, Sports and Tourism'),
(64759, 54543, 'ru', 'name', 'ŠŸŠ¾Š²Š¾Š»Š¶ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(64760, 54544, 'en', 'name', 'V.V. Lukianov Orel Law Institute of the Ministry of Internal Affairs'),
(64761, 54544, 'ru', 'name', 'ŠžŠ Š›ŠžŠ’Š”ŠšŠ˜Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(64762, 54545, 'en', 'name', 'Voronezh State Institute of Physical Culture'),
(64763, 54545, 'ru', 'name', 'Воронежский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(64764, 54546, 'en', 'name', 'Vyatka State University of Humanities'),
(64765, 54546, 'ru', 'name', 'Š’ŃŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(64766, 54547, 'en', 'name', 'Zabaikalsky State Humanitarian and Pedagogical University'),
(64767, 54547, 'ru', 'name', 'Š—Š°Š±Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š“. Š§ŠµŃ€Š½Ń‹ŃˆŠµŠ²ŃŠŗŠ¾Š³Š¾'),
(64768, 54548, 'es', 'name', 'Academia Nacional de Ciencia y TecnologĆ­a'),
(64769, 54549, 'fi', 'name', 'Arvo ja Lea Ylppƶ SƤƤtiƶ'),
(64770, 54550, 'en', 'name', 'Atapuerca Foundation'),
(64771, 54550, 'es', 'name', 'Fundación Atapuerca'),
(64772, 54551, 'en', 'name', 'Minerals Council of Australia'),
(64773, 54552, 'en', 'name', 'Biobanking and BioMolecular resources Research Infrastructure The Netherlands'),
(64774, 54553, 'en', 'name', 'Bonn-Cologne Graduate School of Physics and Astronomy'),
(64775, 54554, 'no_lang_code', 'name', 'Nova Insurance Services (China)'),
(64776, 54555, 'fr', 'name', 'Association chiropratique canadienne'),
(64777, 54555, 'en', 'name', 'Canadian Chiropractic Association'),
(64778, 54556, 'no_lang_code', 'name', 'BetaCat Pharmaceuticals (United States)'),
(64779, 54557, 'en', 'name', 'Brian Mason Scientific & Technical Trust'),
(64780, 54558, 'no_lang_code', 'name', 'Capital Group (United States)'),
(64781, 54559, 'es', 'name', 'Gobierno de Chile'),
(64782, 54560, 'en', 'name', 'China Environmental Protection Foundation'),
(64783, 54561, 'en', 'name', 'Cicely Saunders International'),
(64784, 54562, 'es', 'name', 'Centro Mexicano de Innovación en Energía Solar'),
(64785, 54563, 'en', 'name', 'Computational Materials Science Initiative'),
(64786, 54564, 'en', 'name', 'CRC for Spatial information'),
(64787, 54565, 'no_lang_code', 'name', 'Clayton Biotechnologies (United States)'),
(64788, 54566, 'fr', 'name', 'Conseil DƩpartemental de la Haute-Savoie'),
(64789, 54567, 'fr', 'name', 'Conseil DƩpartemental des Vosges'),
(64790, 54568, 'fr', 'name', 'Conseil Interprofessionnel du Vin de Bordeaux'),
(64791, 54569, 'fr', 'name', 'Conseil RƩgional de Basse-Normandie'),
(64792, 54570, 'en', 'name', 'Charlotte Metro Credit Union'),
(64793, 54571, 'en', 'name', 'Legislative Council of Hong Kong'),
(64794, 54571, 'zh', 'name', 'é¦™ęøÆē‰¹åˆ„č”Œę”æå€ē«‹ę³•ęœƒ'),
(64795, 54572, 'en', 'name', 'CRC CARE'),
(64796, 54573, 'en', 'name', 'Consortium for the Advanced Simulation of Light Water Reactors'),
(64797, 54574, 'it', 'name', 'Fondazione CRT'),
(64798, 54575, 'it', 'name', 'Consorzio per la Fisica Trieste'),
(64799, 54576, 'no_lang_code', 'name', 'Digiteo'),
(64800, 54577, 'da', 'name', 'Svineafgiftsfonden'),
(64801, 54578, 'en', 'name', 'Denver Zoo'),
(64802, 54579, 'en', 'name', 'Northeast Climate Science Center'),
(64803, 54580, 'es', 'name', 'Consejería de Educación y Empleo'),
(64804, 54581, 'en', 'name', 'Department of Space'),
(64805, 54582, 'en', 'name', 'Duchenne Now'),
(64806, 54583, 'en', 'name', 'Egyptian Government'),
(64807, 54584, 'en', 'name', 'Einhorn Family Charitable Trust'),
(64808, 54585, 'en', 'name', 'Hebei Provincial Department of Education'),
(64809, 54585, 'zh', 'name', 'ę²³åŒ—ēœę•™č‚²åŽ…'),
(64810, 54586, 'en', 'name', 'Energy Pipelines CRC'),
(64811, 54587, 'en', 'name', 'Environment Canterbury'),
(64812, 54588, 'en', 'name', 'Environmental Investment Centre'),
(64813, 54588, 'et', 'name', 'Keskkonnainvesteeringute Keskus'),
(64814, 54589, 'en', 'name', 'Government of Estonia'),
(64815, 54589, 'et', 'name', 'Vabariigi Valitsus'),
(64816, 54590, 'en', 'name', 'Epilepsy Study Consortium'),
(64817, 54591, 'en', 'name', 'European Copper Institute'),
(64818, 54592, 'no_lang_code', 'name', 'Sitra'),
(64819, 54592, 'fi', 'name', 'Suomen itsenƤisyyden juhlarahasto'),
(64820, 54593, 'en', 'name', 'Finnish Parkinson Foundation'),
(64821, 54593, 'fi', 'name', 'Suomen Parkinson-sƤƤtiƶ'),
(64822, 54594, 'en', 'name', 'Federation of European Biochemical Societies'),
(64823, 54595, 'it', 'name', 'UBI Banca'),
(64824, 54596, 'fr', 'name', 'Renatech'),
(64825, 54597, 'en', 'name', 'Foundation for Growth Science'),
(64826, 54597, 'ja', 'name', 'ęˆé•·ē§‘å­¦å”ä¼š'),
(64827, 54598, 'no_lang_code', 'name', 'Jazz Pharmaceuticals (Italy)'),
(64828, 54599, 'de', 'name', 'Deutsch-Israelische Zusammenarbeit'),
(64829, 54599, 'en', 'name', 'German-Israeli Cooperation'),
(64830, 54600, 'en', 'name', 'Global Core Research Center for Ships and Offshore Plants'),
(64831, 54600, 'ko', 'name', 'ģ„ ė°• ė° ķ•“ģ–‘ ķ”ŒėžœķŠø źø€ė”œė²Œ 핵심 연구 센터'),
(64832, 54601, 'en', 'name', 'Federal Government of Germany'),
(64833, 54602, 'de', 'name', 'Deutsche Stiftung für Herzforschung'),
(64834, 54602, 'en', 'name', 'German Heart Research Foundation'),
(64835, 54603, 'en', 'name', 'East University Of Heilongjiang'),
(64836, 54603, 'zh', 'name', 'é»‘é¾ę±Ÿę±ę–¹å­øé™¢'),
(64837, 54604, 'pt', 'name', 'Gabinete de Relações Internacionais da Ciência e do Ensino Superior'),
(64838, 54605, 'en', 'name', 'GridPP'),
(64839, 54606, 'es', 'name', 'Gobierno de La Rioja'),
(64840, 54607, 'en', 'name', 'Government of Ireland'),
(64841, 54608, 'fr', 'name', 'Gouvernement Princier'),
(64842, 54609, 'en', 'name', 'Viet Nam Government'),
(64843, 54610, 'en', 'name', 'Key Laboratory of Guangdong Province'),
(64844, 54610, 'zh', 'name', 'å¹æäøœēœé‡ē‚¹å®žéŖŒå®¤'),
(64845, 54611, 'en', 'name', 'Goyder Institute for Water Research'),
(64846, 54612, 'en', 'name', 'Hastings Community Foundation'),
(64847, 54613, 'en', 'name', 'Ministry of Economy, Development and Tourism'),
(64848, 54613, 'el', 'name', '΄πουργείο ĪŸĪ¹ĪŗĪæĪ½ĪæĪ¼ĪÆĪ±Ļ‚, Ανάπτυξης και Ī¤ĪæĻ…ĻĪ¹ĻƒĪ¼ĪæĻ'),
(64849, 54614, 'en', 'name', 'Ministry of Health'),
(64850, 54614, 'el', 'name', '΄πουργείο ΄γείας'),
(64851, 54615, 'en', 'name', 'Guangzhou Education Bureau'),
(64852, 54615, 'zh', 'name', 'å¹æå·žåø‚ę•™č‚²å±€'),
(64853, 54616, 'en', 'name', 'Helmholtz Alliance Imaging and Curing Environmental Metabolic Diseases'),
(64854, 54617, 'en', 'name', 'Drug Enforcement Administration'),
(64855, 54618, 'en', 'name', 'Bureau of Labor Statistics'),
(64856, 54619, 'en', 'name', 'U.S. Embassy and Consulates in India'),
(64857, 54620, 'en', 'name', 'Iowa Department on Aging'),
(64858, 54621, 'en', 'name', 'Ability Connection Colorado'),
(64859, 54622, 'en', 'name', 'About Special Kids'),
(64860, 54623, 'en', 'name', 'Aging In New York Fund'),
(64861, 54624, 'en', 'name', 'Colorado Latino Leadership, Advocacy & Research Organization'),
(64862, 54625, 'en', 'name', 'Aleutian Pribilof Islands Association'),
(64863, 54626, 'en', 'name', 'Logansport State Hospital'),
(64864, 54627, 'en', 'name', 'Volpe National Transportation Systems Center'),
(64865, 54628, 'en', 'name', 'Louisiana Department of Insurance'),
(64866, 54629, 'en', 'name', 'Madison County Urban league'),
(64867, 54630, 'en', 'name', 'Bureau of the Fiscal Service'),
(64868, 54631, 'en', 'name', 'Maryland State Office Of The Governor'),
(64869, 54632, 'en', 'name', 'Parents Let''s Unite for Kids'),
(64870, 54633, 'en', 'name', 'Family Health Council of Central Pennsylvania'),
(64871, 54634, 'en', 'name', 'Michigan Department of Technology, Management & Budget'),
(64872, 54635, 'en', 'name', 'Family Ties of Nevada'),
(64873, 54636, 'en', 'name', 'Montachusett Opportunity Council'),
(64874, 54637, 'en', 'name', 'Mississippi Department of Human Services'),
(64875, 54638, 'en', 'name', 'Fishing Partnership Support Services'),
(64876, 54639, 'en', 'name', 'Ramah Navajo School Board'),
(64877, 54640, 'en', 'name', 'Agency for Persons with Disabilities'),
(64878, 54641, 'en', 'name', 'National Association of Community Health Representatives'),
(64879, 54642, 'en', 'name', 'National Family Planning & Reproductive Health Association'),
(64880, 54643, 'en', 'name', 'Concerned Black Men National'),
(64881, 54644, 'en', 'name', 'North Dakota Office of the Governor'),
(64882, 54645, 'en', 'name', 'Central District Health Department'),
(64883, 54646, 'en', 'name', 'New Mexico Alliance of Health Councils'),
(64884, 54647, 'en', 'name', 'New Hampshire State Office of the Governor'),
(64885, 54648, 'en', 'name', 'New Jersey State Office of the Governor'),
(64886, 54649, 'en', 'name', 'Ohio Department of Aging'),
(64887, 54650, 'en', 'name', 'Department of Medical Assistance Services'),
(64888, 54651, 'en', 'name', 'Illinois Office of the Governor'),
(64889, 54652, 'en', 'name', 'Ohio State Office of the Governor'),
(64890, 54653, 'en', 'name', 'Westchester Institute for Human Development'),
(64891, 54654, 'en', 'name', 'Oregon Department of Consumer and Business Services'),
(64892, 54655, 'en', 'name', 'South Dakota Parent Connection'),
(64893, 54656, 'en', 'name', 'Wyoming Office of the Governor'),
(64894, 54657, 'en', 'name', 'Oregon Family Support Network'),
(64895, 54658, 'en', 'name', 'Indiana Office of the Governor'),
(64896, 54659, 'en', 'name', 'Boys and Girls Clubs of Metro Los Angeles'),
(64897, 54660, 'en', 'name', 'Parents'' Place of Maryland'),
(64898, 54661, 'en', 'name', 'Childrens Hospice International'),
(64899, 54662, 'en', 'name', 'Statewide Parent Advocacy Network'),
(64900, 54663, 'no_lang_code', 'name', 'Chitina Native Corporation (United States)'),
(64901, 54664, 'en', 'name', 'Stockbridge Munsee Tribal Council'),
(64902, 54665, 'en', 'name', 'United States Customs and Border Protection'),
(64903, 54666, 'en', 'name', 'Tennessee Commission on Aging and Disability'),
(64904, 54667, 'en', 'name', 'Texas Parent to Parent'),
(64905, 54668, 'en', 'name', 'Arc of Kentucky'),
(64906, 54669, 'en', 'name', 'Office of the Comptroller of the Currency'),
(64907, 54670, 'en', 'name', 'Clifton T. Perkins Hospital Center'),
(64908, 54671, 'en', 'name', 'Community Health Centers of Benton and Linn Counties'),
(64909, 54672, 'en', 'name', 'Habitat International Coalition'),
(64910, 54673, 'en', 'name', 'New York/New Jersey VA Health Care Network'),
(64911, 54674, 'en', 'name', 'Atlanta VA Health Care System'),
(64912, 54675, 'en', 'name', 'VA Eastern Kansas Health Care System'),
(64913, 54676, 'no_lang_code', 'name', 'Innovative Research Group (Canada)'),
(64914, 54677, 'en', 'name', 'VA Mid-Atlantic Health Care Network'),
(64915, 54678, 'en', 'name', 'Innovative Research Institute for Cell Therapy'),
(64916, 54679, 'en', 'name', 'VA Great Lakes Health Care System'),
(64917, 54680, 'en', 'name', 'South Central VA Health Care Network'),
(64918, 54681, 'en', 'name', 'VA Sunshine Healthcare Network'),
(64919, 54682, 'en', 'name', 'VA Heartland Network'),
(64920, 54683, 'en', 'name', 'VA MidSouth Healthcare Network'),
(64921, 54684, 'en', 'name', 'VA Midwest Health Care Network'),
(64922, 54685, 'en', 'name', 'VA Desert Pacific Healthcare Network'),
(64923, 54686, 'en', 'name', 'Oklahoma City VA Health Care System'),
(64924, 54687, 'en', 'name', 'VA Portland Health Care System'),
(64925, 54688, 'pt', 'name', 'Instituto Nacional de CiĆŖncias dos Materiais em Nanotecnologia'),
(64926, 54689, 'en', 'name', 'VA Southeast Network'),
(64927, 54690, 'en', 'name', 'VA Office of Research and Development'),
(64928, 54691, 'en', 'name', 'VA Heart of Texas Health Care Network'),
(64929, 54692, 'en', 'name', 'Japan Arteriosclerosis Prevention Fund'),
(64930, 54692, 'ja', 'name', 'ę—„ęœ¬å‹•č„ˆē”¬åŒ–äŗˆé˜²ē ”ē©¶åŸŗé‡‘'),
(64931, 54693, 'en', 'name', 'VA Rocky Mountain Network'),
(64932, 54694, 'en', 'name', 'VA Capitol Health Care Network'),
(64933, 54695, 'en', 'name', 'VA Northwest Network'),
(64934, 54696, 'en', 'name', 'Iran Nanohealth Committee Food and Drug Organization'),
(64935, 54697, 'no_lang_code', 'name', 'Japan Space Forum'),
(64936, 54697, 'ja', 'name', 'ę—„ęœ¬å®‡å®™ćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(64937, 54698, 'en', 'name', 'Jiangsu Provincial Key Laboratory of Network and Information Security'),
(64938, 54698, 'zh', 'name', 'ę±Ÿč‹ēœē½‘ē»œäæ”ęÆå®‰å…Øé‡ē‚¹å®žéŖŒå®¤'),
(64939, 54699, 'en', 'name', 'VA Healthcare System Serving Ohio, Indiana and Michigan'),
(64940, 54700, 'no_lang_code', 'name', 'Irish Life (Ireland)'),
(64941, 54701, 'no_lang_code', 'name', 'HBIS (China)'),
(64942, 54701, 'zh', 'name', 'ę²³åŒ—é’¢é“é›†å›¢ęœ‰é™å…¬åø'),
(64943, 54702, 'en', 'name', 'Jeff Gordon Children''s Foundation'),
(64944, 54703, 'de', 'name', 'Association Cartographique Internationale'),
(64945, 54703, 'en', 'name', 'International Cartographic Association'),
(64946, 54704, 'en', 'name', 'International Geographical Union'),
(64947, 54704, 'fr', 'name', 'Union GƩographique Internationale'),
(64948, 54705, 'en', 'name', 'International Union of Anthropological and Ethnological Sciences'),
(64949, 54706, 'en', 'name', 'International Union of Biological Sciences'),
(64950, 54707, 'en', 'name', 'International Union of Food Science and Technology'),
(64951, 54708, 'en', 'name', 'International Union of Geological Sciences'),
(64952, 54709, 'en', 'name', 'International Union of Immunological Societies'),
(64953, 54710, 'en', 'name', 'International Union of Materials Research Societies');
INSERT INTO `ror_settings` VALUES
(64954, 54711, 'en', 'name', 'Jiangsu Key Laboratory of 3D Printing Equipment and Manufacturing'),
(64955, 54711, 'zh', 'name', 'ę±Ÿč‹ēœäø‰ē»“ę‰“å°č£…å¤‡äøŽåˆ¶é€ é‡ē‚¹å®žéŖŒå®¤'),
(64956, 54712, 'en', 'name', 'Office of Patient Care Services'),
(64957, 54713, 'en', 'name', 'International Union for Pure and Applied Biophysics'),
(64958, 54714, 'en', 'name', 'International Union for Physical and Engineering Sciences in Medicine'),
(64959, 54715, 'en', 'name', 'Israel National Nanotechnology Initiative'),
(64960, 54716, 'en', 'name', 'C.W. Bill Young VA Medical Center'),
(64961, 54717, 'en', 'name', 'Israel Water Authority'),
(64962, 54717, 'he', 'name', '×ž×•×¢×¦×Ŗ רשות המים'),
(64963, 54718, 'en', 'name', 'Kennel Club Charitable Trust'),
(64964, 54719, 'en', 'name', 'Weihai Science and Technology Bureau'),
(64965, 54719, 'zh', 'name', 'åØęµ·åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(64966, 54720, 'nl', 'name', 'Kennisnet'),
(64967, 54721, 'en', 'name', 'John L. McClellan Memorial Veterans Hospital'),
(64968, 54722, 'en', 'name', 'Olin E. Teague Veterans Medical Center'),
(64969, 54723, 'fi', 'name', 'KH Renlundin sƤƤtiƶ'),
(64970, 54724, 'en', 'name', 'Kansas Board of Regents'),
(64971, 54725, 'en', 'name', 'Joint Graduate School of Energy and Environment'),
(64972, 54725, 'th', 'name', 'ąøšąø±ąø“ąø‘ąø“ąø•ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ą¹ˆąø§ąø”ąø”ą¹‰ąø²ąø™ąøžąø„ąø±ąø‡ąø‡ąø²ąø™ą¹ąø„ąø°ąøŖąø“ą¹ˆąø‡ą¹ąø§ąø”ąø„ą¹‰ąø­ąø”'),
(64973, 54726, 'en', 'name', 'Joseph Drown Foundation'),
(64974, 54727, 'en', 'name', 'Khaled bin Sultan Living Oceans Foundation'),
(64975, 54728, 'en', 'name', 'Kurdistan Regional Government'),
(64976, 54728, 'ar', 'name', 'Ų­ŁƒŁˆŁ…Ų© Ų§Ł‚Ł„ŁŠŁ… ŁƒŲ±ŲÆŲ³ŲŖŲ§Ł†ā€Žā€Ž'),
(64977, 54728, 'ku', 'name', 'Ų­Ś©ŁˆŁˆŁ…Ū•ŲŖŪŒ Ł‡Ū•Ų±ŪŽŁ…ŪŒ Ś©ŁˆŲ±ŲÆŲ³ŲŖŲ§Ł†'),
(64978, 54729, 'en', 'name', 'Korea National Park Service'),
(64979, 54730, 'fr', 'name', 'Labex Action'),
(64980, 54731, 'fr', 'name', 'Labex Synorg'),
(64981, 54732, 'en', 'name', 'Korean Chemical Society'),
(64982, 54733, 'en', 'name', 'Korean Endocrine Society'),
(64983, 54733, 'ko', 'name', 'ėŒ€ķ•œė‚“ė¶„ė¹„ķ•™ķšŒ'),
(64984, 54734, 'en', 'name', 'Bruce W. Carter VA Medical Center'),
(64985, 54735, 'en', 'name', 'Lancaster Royal Grammar School'),
(64986, 54736, 'en', 'name', 'Korean Society of Radiology'),
(64987, 54737, 'en', 'name', 'Korean Society of Medical Ultrasound'),
(64988, 54738, 'en', 'name', 'Magnetic Health Science Foundation'),
(64989, 54738, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ē£ę°—å„åŗ·ē§‘å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(64990, 54739, 'en', 'name', 'A*STAR Joint Council Office'),
(64991, 54740, 'en', 'name', 'Max Planck Center for Visual Computing and Communication'),
(64992, 54741, 'en', 'name', 'Metanexus Institute'),
(64993, 54742, 'en', 'name', 'Federal Government of Mexico'),
(64994, 54742, 'es', 'name', 'Gobierno de la RepĆŗblica'),
(64995, 54743, 'no_lang_code', 'name', 'MEC'),
(64996, 54744, 'en', 'name', 'Central New York Research Corporation'),
(64997, 54745, 'en', 'name', 'Nutrition International'),
(64998, 54746, 'en', 'name', 'International Fistball Association'),
(64999, 54747, 'en', 'name', 'Martinez VA Medical Center'),
(65000, 54748, 'en', 'name', 'AIMS@JCU'),
(65001, 54749, 'pl', 'name', 'Ministerstwo Rolnictwa i Rozwoju Wsi'),
(65002, 54749, 'en', 'name', 'Ministry of Agriculture and Rural Development'),
(65003, 54750, 'en', 'name', 'Ministry of Commerce of the People''s Republic of China'),
(65004, 54750, 'zh', 'name', 'åÆ¹å¤–č“øę˜“ē»ęµŽåˆä½œéƒØ'),
(65005, 54751, 'en', 'name', 'Office of Research Services'),
(65006, 54752, 'en', 'name', 'Office of Minority Health'),
(65007, 54753, 'en', 'name', 'Office of Minority Health and Health Equity'),
(65008, 54754, 'en', 'name', 'John Cochran VA Medical Center'),
(65009, 54755, 'en', 'name', 'National Academy of Sciences India'),
(65010, 54755, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤…ą¤•ą¤¾ą¤¦ą¤®ą„€, भारत'),
(65011, 54756, 'en', 'name', 'Minnesota Partnership for Biotechnology and Medical Genomics'),
(65012, 54757, 'fr', 'name', 'Banque nationale de Belgique'),
(65013, 54757, 'de', 'name', 'Belgische Nationalbank'),
(65014, 54757, 'en', 'name', 'National Bank of Belgium'),
(65015, 54757, 'nl', 'name', 'Nationale Bank van Belgiƫ'),
(65016, 54758, 'en', 'name', 'Laboratory for Social and Neural Systems Research'),
(65017, 54759, 'en', 'name', 'Northwell Health Orthopaedic Institute'),
(65018, 54760, 'en', 'name', 'Arthur Smith Institute for Urology'),
(65019, 54761, 'en', 'name', 'Institute for Social and Environmental Research-Nepal'),
(65020, 54762, 'en', 'name', 'Lumbini Eye Institute'),
(65021, 54763, 'en', 'name', 'Municipality De Malargue'),
(65022, 54764, 'en', 'name', 'Muscular Dystrophy Ireland'),
(65023, 54765, 'en', 'name', 'Benson-Henry Institute'),
(65024, 54766, 'no_lang_code', 'name', 'Nagase (Japan)'),
(65025, 54766, 'ja', 'name', 'é•·ē€¬ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(65026, 54767, 'en', 'name', 'Nanjing Health and Health Commission'),
(65027, 54767, 'zh', 'name', 'å—äŗ¬åø‚å«ē”Ÿå±€'),
(65028, 54768, 'en', 'name', 'Nanocem'),
(65029, 54769, 'en', 'name', 'VA Sepulveda Ambulatory Care Center'),
(65030, 54770, 'no_lang_code', 'name', 'Narishige (Japan)'),
(65031, 54771, 'en', 'name', 'National Research Institute of Cultural Heritage'),
(65032, 54771, 'ko', 'name', 'źµ­ė¦½ė¬øķ™”ģž¬ģ—°źµ¬ģ†Œ'),
(65033, 54772, 'en', 'name', 'Canadian Automotive Partnership Council'),
(65034, 54772, 'fr', 'name', 'Conseil du Partenariat du Secteur Canadien de l''Automobile'),
(65035, 54773, 'en', 'name', 'BIGCCS'),
(65036, 54774, 'en', 'name', 'The Synergetic Innovation Center for Advanced Materials'),
(65037, 54774, 'zh', 'name', 'ę±Ÿč‹å…ˆčæ›ē”Ÿē‰©äøŽåŒ–å­¦åˆ¶é€ ååŒåˆ›ę–°äø­åæƒ'),
(65038, 54775, 'no_lang_code', 'name', 'Neurotrack Technologies (United States)'),
(65039, 54776, 'en', 'name', 'Nebraska Game and Parks Commission'),
(65040, 54777, 'en', 'name', 'California Native Plant Society'),
(65041, 54778, 'no_lang_code', 'name', 'China Ningbo International Cooperation (China)'),
(65042, 54778, 'zh', 'name', 'äø­å›½å®ę³¢å›½é™…åˆä½œ'),
(65043, 54779, 'en', 'name', 'Nissay Culture Foundation'),
(65044, 54779, 'ja', 'name', 'ę—„ęœ¬ē”Ÿå‘½äæé™ŗē›øäŗ’ä¼šē¤¾'),
(65045, 54780, 'en', 'name', 'North Carolina Department of Public Safety'),
(65046, 54781, 'en', 'name', 'New Huadu Business School'),
(65047, 54781, 'zh', 'name', 'ę–°åŽéƒ½å•†å­¦é™¢'),
(65048, 54782, 'no_lang_code', 'name', 'Nexen (Canada)'),
(65049, 54783, 'en', 'name', 'Next Generation Infrastructures'),
(65050, 54783, 'nl', 'name', 'Stichting Next Generation Infrastructures'),
(65051, 54784, 'en', 'name', 'Changchun Bureau of Science and Technology'),
(65052, 54784, 'zh', 'name', 'é•æę˜„åø‚ē§‘ęŠ€å±€'),
(65053, 54785, 'en', 'name', 'Ohio Water Development Authority'),
(65054, 54786, 'no_lang_code', 'name', 'Oil India (India)'),
(65055, 54787, 'en', 'name', 'Oil Industry Development Board'),
(65056, 54788, 'en', 'name', 'Oklahoma Center for Adult Stem Cell Research'),
(65057, 54789, 'fr', 'name', 'Direction gƩnƩrale Statistique'),
(65058, 54789, 'en', 'name', 'Statistics Belgium'),
(65059, 54790, 'en', 'name', 'Pacific Alzheimer Research Foundation'),
(65060, 54791, 'no_lang_code', 'name', 'Bodycote (Canada)'),
(65061, 54792, 'en', 'name', 'Port Authority of New York and New Jersey'),
(65062, 54793, 'no_lang_code', 'name', 'OP Financial Group (Finland)'),
(65063, 54794, 'en', 'name', 'Pittsburgh Supercomputing Center'),
(65064, 54795, 'en', 'name', 'National Engineering Research Center of Electromagnetic Radiation Control Materials'),
(65065, 54795, 'zh', 'name', 'å›½å®¶ē”µē£č¾å°„ęŽ§åˆ¶ęę–™å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(65066, 54796, 'en', 'name', 'Penn Center for AIDS Research'),
(65067, 54797, 'en', 'name', 'Pennsylvania Commission on Crime and Delinquency'),
(65068, 54798, 'nl', 'name', 'Prins Bernhard Cultuurfonds'),
(65069, 54799, 'es', 'name', 'Fundación Pro CNIC'),
(65070, 54800, 'en', 'name', 'Project ALS'),
(65071, 54801, 'en', 'name', 'Alabama Department of Senior Services'),
(65072, 54802, 'en', 'name', 'R and D Center for Valuable Recycling'),
(65073, 54803, 'en', 'name', 'Royal Canadian Military Institute'),
(65074, 54804, 'en', 'name', 'Renewable Energy and Energy Efficiency Organization'),
(65075, 54804, 'fa', 'name', 'به ŲŖŲ§Ų±Ł†Ł…Ų§ŪŒ سازمان Ų§Ł†Ų±Ś˜ŪŒ Ł‡Ų§ŪŒ تجدیدپذیر و بهره وری Ų§Ł†Ų±Ś˜ŪŒ برق خوؓ Ų¢Ł…ŲÆŪŒŲÆ.'),
(65076, 54805, 'en', 'name', 'Research Partnership to Secure Energy for America'),
(65077, 54806, 'en', 'name', 'Reservoir Engineering Research Institute'),
(65078, 54807, 'nl', 'name', 'Revalidatiefonds'),
(65079, 54808, 'en', 'name', 'World Bank Group'),
(65080, 54809, 'ms', 'name', 'Universiti Tenaga Nasional'),
(65081, 54810, 'en', 'name', 'Heilongjiang Institute of Technology'),
(65082, 54811, 'en', 'name', 'Robert W Deutsch Foundation'),
(65083, 54812, 'de', 'name', 'Schweizerische Hochschulkonferen'),
(65084, 54812, 'en', 'name', 'Swiss University Conference'),
(65085, 54813, 'no_lang_code', 'name', 'Zeal (United Kingdom)'),
(65086, 54814, 'en', 'name', 'Scientific Research Support Fund'),
(65087, 54814, 'ar', 'name', 'ŲµŁ†ŲÆŁˆŁ‚ دعم البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(65088, 54815, 'en', 'name', 'Shepherd Foundation'),
(65089, 54816, 'en', 'name', 'Shanghai Nanotechnology Promotion Center'),
(65090, 54816, 'zh', 'name', 'äøŠęµ·åø‚ēŗ³ē±³ē§‘ęŠ€äøŽäŗ§äøšå‘å±•äæƒčæ›äø­åæƒ'),
(65091, 54817, 'en', 'name', 'Shandong Provincial Agriculture Department'),
(65092, 54817, 'zh', 'name', 'å±±äøœēœå†œäøšåŽ… ę‰æåŠž'),
(65093, 54818, 'en', 'name', 'Singapore Centre for Environmental Life Sciences Engineering'),
(65094, 54819, 'fr', 'name', 'SociƩtƩ AcadƩmique Vaudoise'),
(65095, 54820, 'en', 'name', 'Sino-Danish Centre for Education and Research'),
(65096, 54820, 'zh', 'name', 'äø­å›½äø¹éŗ¦ē§‘ē ”ę•™č‚²äø­åæƒ'),
(65097, 54821, 'en', 'name', 'Sophia Foundation for Children'),
(65098, 54822, 'fr', 'name', 'Onco Lille'),
(65099, 54823, 'en', 'name', 'Government of Austria'),
(65100, 54823, 'de', 'name', 'Ɩsterreichische Bundesregierung'),
(65101, 54824, 'es', 'name', 'Universidad Latinoamericana'),
(65102, 54825, 'es', 'name', 'Universidad UNIACC'),
(65103, 54826, 'en', 'name', 'Norwegian Agriculture Agency'),
(65104, 54827, 'en', 'name', 'Foundation for Japanese Chemical Research'),
(65105, 54827, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åŒ–å­¦ē ”ē©¶ä¼š'),
(65106, 54828, 'en', 'name', 'STandUP for Energy'),
(65107, 54829, 'no_lang_code', 'name', 'BBMG (China)'),
(65108, 54829, 'zh', 'name', 'åŒ—äŗ¬é‡‘éš…ęŽ§č‚”ęœ‰é™å…¬åø'),
(65109, 54830, 'en', 'name', 'State and Federal Contractors Water Agency'),
(65110, 54831, 'cs', 'name', 'Ministerstvo financí České republiky'),
(65111, 54831, 'en', 'name', 'Ministry of Finance of the Czech Republic'),
(65112, 54832, 'no_lang_code', 'name', 'Hong Kong Standards and Testing Centre (China)'),
(65113, 54832, 'zh', 'name', 'é¦™ęøÆę ‡å‡†åŠę£€å®šäø­åæƒ'),
(65114, 54833, 'no_lang_code', 'name', 'StemSoft Software (Canada)'),
(65115, 54834, 'nl', 'name', 'Stichting Achmea Slachtoffer en Samenleving'),
(65116, 54835, 'en', 'name', 'Strategic Initiative Materials in Flanders'),
(65117, 54836, 'en', 'name', 'State Committee on Science and Technology'),
(65118, 54837, 'en', 'name', 'Swedish Rheumatism Association'),
(65119, 54838, 'sv', 'name', 'Stiftelsen HƤstforskning'),
(65120, 54838, 'en', 'name', 'Swedish Norwegian Foundation for Equine Research'),
(65121, 54839, 'en', 'name', 'St Andrews Community Hospital'),
(65122, 54840, 'en', 'name', 'SYSU-CMU International Joint Research Institute'),
(65123, 54841, 'en', 'name', 'Government of Ghana'),
(65124, 54842, 'en', 'name', 'Swartz Foundation'),
(65125, 54843, 'no_lang_code', 'name', 'Taiwan Power (Taiwan)'),
(65126, 54843, 'zh', 'name', 'å°ē£é›»åŠ›å…¬åø'),
(65127, 54844, 'en', 'name', 'Bureau of Energy'),
(65128, 54844, 'zh', 'name', 'ē¶“ęæŸéƒØčƒ½ęŗå±€'),
(65129, 54845, 'en', 'name', 'Tenovus Scotland'),
(65130, 54846, 'en', 'name', 'Tamkin Foundation'),
(65131, 54847, 'en', 'name', 'Hefei Material Science and Technology Center'),
(65132, 54847, 'zh', 'name', 'åˆč‚„ē‰©č“Øē§‘å­¦ęŠ€ęœÆäø­åæƒ'),
(65133, 54848, 'de', 'name', 'Thüringer Ministerium für Bildung, Jugend und Sport'),
(65134, 54849, 'en', 'name', 'Fok Ying Tung Foundation'),
(65135, 54850, 'en', 'name', 'Victorian Responsible Gambling Foundation'),
(65136, 54851, 'en', 'name', 'Vietnam International Education Cooperation Department'),
(65137, 54852, 'no_lang_code', 'name', 'Winetech (South Africa)'),
(65138, 54853, 'en', 'name', 'Wisconsin Institutes for Discovery'),
(65139, 54854, 'en', 'name', 'WonKwang Health Science University'),
(65140, 54855, 'en', 'name', 'Wales Institute of Cognitive Neuroscience'),
(65141, 54856, 'en', 'name', 'Department of Information Technology, Biotechnology and Science and Technology'),
(65142, 54857, 'en', 'name', 'World Federation of Scientists'),
(65143, 54858, 'en', 'name', 'World Horse Welfare'),
(65144, 54859, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia em Entomologia Molecular'),
(65145, 54860, 'en', 'name', 'Wyoming Water Development Commission'),
(65146, 54861, 'en', 'name', 'Jilin Province Youth Development Foundation'),
(65147, 54861, 'zh', 'name', 'å‰ęž—ēœé’å°‘å¹“å‘å±•åŸŗé‡‘ä¼š'),
(65148, 54862, 'no_lang_code', 'name', 'Wesco (Japan)'),
(65149, 54862, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¦ć‚Øć‚¹ć‚³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(65150, 54863, 'en', 'name', 'Shanxi Province Youth Development Foundation'),
(65151, 54863, 'zh', 'name', 'å±±č„æēœé’å°‘å¹“å‘å±•åŸŗé‡‘ä¼š'),
(65152, 54864, 'no_lang_code', 'name', 'Yandex (Russia)'),
(65153, 54864, 'ru', 'name', 'ЯнГекс'),
(65154, 54865, 'no_lang_code', 'name', 'Armatury Group (Czechia)'),
(65155, 54866, 'no_lang_code', 'name', 'Lukrom (Czechia)'),
(65156, 54867, 'no_lang_code', 'name', 'Air Jihlava Service (Czechia)'),
(65157, 54868, 'no_lang_code', 'name', 'Arming (Czechia)'),
(65158, 54869, 'en', 'name', 'Society for the History of Czechoslovak Jews'),
(65159, 54869, 'cs', 'name', 'Společnost pro dějiny židÅÆ v ČeskoslovenskĆ© republice'),
(65160, 54870, 'no_lang_code', 'name', 'Air Technic (Czechia)'),
(65161, 54871, 'no_lang_code', 'name', 'Aroma Praha (Czechia)'),
(65162, 54872, 'no_lang_code', 'name', 'AirshipClub (Czechia)'),
(65163, 54873, 'no_lang_code', 'name', 'AIS (Czechia)'),
(65164, 54874, 'no_lang_code', 'name', 'FCC Austria Abfall Service AG'),
(65165, 54875, 'no_lang_code', 'name', 'Arthrocentrum'),
(65166, 54876, 'no_lang_code', 'name', 'Artinel (Czechia)'),
(65167, 54877, 'no_lang_code', 'name', 'AK signal Brno (Czechia)'),
(65168, 54878, 'cs', 'name', 'Agentura regionƔlnƭho rozvoje'),
(65169, 54878, 'en', 'name', 'Regional Development Agency'),
(65170, 54879, 'no_lang_code', 'name', 'Artisys (Czechia)'),
(65171, 54880, 'no_lang_code', 'name', 'AK Svejkovský, KabelkovÔ, Šlauf (Czechia)'),
(65172, 54881, 'no_lang_code', 'name', 'M Plus (Czechia)'),
(65173, 54882, 'no_lang_code', 'name', 'Pokorný (Czechia)'),
(65174, 54883, 'cs', 'name', 'Asociace Českých a Slovenských Zinkoven'),
(65175, 54884, 'no_lang_code', 'name', 'Asekol (Czechia)'),
(65176, 54885, 'no_lang_code', 'name', 'AteliƩry TapisƩriƭ sro'),
(65177, 54886, 'no_lang_code', 'name', 'Asipo (Czechia)'),
(65178, 54887, 'no_lang_code', 'name', 'Asistenčnƭ Centrum (Czechia)'),
(65179, 54888, 'no_lang_code', 'name', 'Akzo Nobel (Czechia)'),
(65180, 54889, 'no_lang_code', 'name', 'Asklepion'),
(65181, 54890, 'no_lang_code', 'name', 'ALB expert (Czechia)'),
(65182, 54891, 'cs', 'name', 'Centrum LĆ©ÄebnĆ© Rehabilitace Liberec'),
(65183, 54892, 'cs', 'name', 'Asociace FinancovƔnƭ Infrastruktury Pro Mobilitu'),
(65184, 54893, 'no_lang_code', 'name', 'Albertina icome Praha (Czechia)'),
(65185, 54894, 'en', 'name', 'Czech Scientific Society for Mycology'),
(65186, 54894, 'cs', 'name', 'ČeskĆ” VědeckĆ” Společnost Pro Mykologii'),
(65187, 54895, 'no_lang_code', 'name', 'Asociace GumƔrenskƩ Technologie Zlƭn (Czechia)'),
(65188, 54896, 'cs', 'name', 'Asociace hotelů a restaurací České republiky'),
(65189, 54896, 'en', 'name', 'Czech Association of Hotels and Restaurants'),
(65190, 54897, 'no_lang_code', 'name', 'Alcoma (Czechia)'),
(65191, 54898, 'cs', 'name', 'Asociace Korozních Inženýrů'),
(65192, 54899, 'no_lang_code', 'name', 'Ales (Czechia)'),
(65193, 54900, 'cs', 'name', 'Asociace leteckých výrobců'),
(65194, 54900, 'en', 'name', 'Association of the Czech AeroSpace Industry'),
(65195, 54901, 'no_lang_code', 'name', 'Alfarma (Czechia)'),
(65196, 54902, 'cs', 'name', 'Asociace Pedagogů ZÔkladního Školství České Republiky'),
(65197, 54903, 'cs', 'name', 'Expresnƭ AstronomickƩ Informace'),
(65198, 54904, 'cs', 'name', 'Asociace Poskytovatelů SociÔlních Služeb České Republiky'),
(65199, 54905, 'en', 'name', 'Kolin Institute of Technology'),
(65200, 54905, 'cs', 'name', 'Kolínský Technologický Institut'),
(65201, 54906, 'cs', 'name', 'Asociace Pro MlĆ”dež Vědu a Techniku'),
(65202, 54907, 'no_lang_code', 'name', 'Sady KlÔŔterec nad Ohří (Czechia)'),
(65203, 54908, 'no_lang_code', 'name', 'Alginit (Czechia)'),
(65204, 54909, 'cs', 'name', 'Asociace Pro Vodu ČR'),
(65205, 54909, 'en', 'name', 'Czech Water Association'),
(65206, 54910, 'cs', 'name', 'Svaz ChovatelÅÆ Prasat v ČechĆ”ch a na Moravě'),
(65207, 54911, 'no_lang_code', 'name', 'Algon (Czechia)'),
(65208, 54912, 'no_lang_code', 'name', 'Alimpex Food (Czechia)'),
(65209, 54913, 'no_lang_code', 'name', '1 - Cube (Czechia)'),
(65210, 54914, 'en', 'name', 'Alliance Forum Foundation'),
(65211, 54915, 'cs', 'name', 'Obnovitelných Zdrojů Energie'),
(65212, 54916, 'no_lang_code', 'name', '2EL (Czechia)'),
(65213, 54917, 'no_lang_code', 'name', 'Allowance (Czechia)'),
(65214, 54918, 'no_lang_code', 'name', '2VV (Czechia)'),
(65215, 54919, 'cs', 'name', 'Asociace Svazů Chovatelů Koní České Republiky'),
(65216, 54920, 'no_lang_code', 'name', '3E Praha Engineering (Czechia)'),
(65217, 54921, 'no_lang_code', 'name', 'Alpiq Generation (Czechia)'),
(65218, 54922, 'no_lang_code', 'name', '3Dim Laboratory (Czechia)'),
(65219, 54923, 'no_lang_code', 'name', 'ASPK'),
(65220, 54924, 'no_lang_code', 'name', '3G Consulting Engineers (Czechia)'),
(65221, 54925, 'no_lang_code', 'name', 'Asseco (Czechia)'),
(65222, 54926, 'no_lang_code', 'name', 'Altech (Czechia)'),
(65223, 54927, 'no_lang_code', 'name', '3S Sedlak (Czechia)'),
(65224, 54928, 'no_lang_code', 'name', 'Altron (Czechia)'),
(65225, 54929, 'no_lang_code', 'name', 'Alucast (Czechia)'),
(65226, 54930, 'no_lang_code', 'name', 'Alumistr (Czechia)'),
(65227, 54931, 'en', 'name', 'JGC-S Scholarship Foundation'),
(65228, 54931, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ę®ćƒ»å®Ÿå‰å„Øå­¦ä¼š'),
(65229, 54932, 'no_lang_code', 'name', 'Ataco (Czechia)'),
(65230, 54933, 'no_lang_code', 'name', 'A-Spektrum (Czechia)'),
(65231, 54934, 'no_lang_code', 'name', 'ATE (Czechia)'),
(65232, 54935, 'no_lang_code', 'name', 'Amati-Denak (Czechia)'),
(65233, 54936, 'no_lang_code', 'name', 'Atea Praha (Czechia)'),
(65234, 54937, 'no_lang_code', 'name', 'A. KTI (Czechia)'),
(65235, 54938, 'no_lang_code', 'name', 'Atega (Czechia)'),
(65236, 54939, 'no_lang_code', 'name', 'Atelier Fontes (Czechia)'),
(65237, 54940, 'no_lang_code', 'name', 'Amberg (Czechia)'),
(65238, 54941, 'no_lang_code', 'name', 'Atelier T plan (Czechia)'),
(65239, 54942, 'no_lang_code', 'name', 'Amec Foster Wheeler (Czechia)'),
(65240, 54943, 'no_lang_code', 'name', 'Abegu (Czechia)'),
(65241, 54944, 'no_lang_code', 'name', 'Amest (Czechia)'),
(65242, 54945, 'no_lang_code', 'name', 'Abitec (Czechia)'),
(65243, 54946, 'no_lang_code', 'name', 'Atro Rýmařov (Czechia)'),
(65244, 54947, 'no_lang_code', 'name', 'ABM Architekti (Czechia)'),
(65245, 54948, 'no_lang_code', 'name', 'ATS Telcom Praha (Czechia)'),
(65246, 54949, 'no_lang_code', 'name', 'AMI Communications (Czechia)'),
(65247, 54950, 'no_lang_code', 'name', 'ABS Jets (Czechia)'),
(65248, 54951, 'no_lang_code', 'name', 'AMT (Czechia)'),
(65249, 54952, 'no_lang_code', 'name', 'Amtek (Czechia)'),
(65250, 54953, 'cs', 'name', 'ACCENDO – Centrum pro vědu a výzkum'),
(65251, 54954, 'no_lang_code', 'name', 'Amylon (Czechia)'),
(65252, 54955, 'no_lang_code', 'name', 'Aura (Czechia)'),
(65253, 54956, 'no_lang_code', 'name', 'ANAKAN (Czechia)'),
(65254, 54957, 'no_lang_code', 'name', 'Aura (Czechia)'),
(65255, 54958, 'no_lang_code', 'name', 'ACRE (Czechia)'),
(65256, 54959, 'no_lang_code', 'name', 'Analytika (Czechia)'),
(65257, 54960, 'en', 'name', 'Australian Regenerative Medicine Institute'),
(65258, 54961, 'no_lang_code', 'name', 'Acrea (Czechia)'),
(65259, 54962, 'no_lang_code', 'name', 'Anapartners (Czechia)'),
(65260, 54963, 'no_lang_code', 'name', 'ANC Components (Czechia)'),
(65261, 54964, 'no_lang_code', 'name', 'Activair (Czechia)'),
(65262, 54965, 'no_lang_code', 'name', 'Angermeier (Czechia)'),
(65263, 54966, 'no_lang_code', 'name', 'ADA AkustickĆ” Emise (Czechia)'),
(65264, 54967, 'no_lang_code', 'name', 'Autel (Czechia)'),
(65265, 54968, 'no_lang_code', 'name', 'AutoCont (Czechia)'),
(65266, 54969, 'no_lang_code', 'name', 'Anita B (Czechia)'),
(65267, 54970, 'no_lang_code', 'name', 'AdamovskƩ Strojƭrny (Czechia)'),
(65268, 54971, 'no_lang_code', 'name', 'Ankara (Czechia)'),
(65269, 54972, 'no_lang_code', 'name', 'ADP (Czechia)'),
(65270, 54973, 'no_lang_code', 'name', 'Anopress IT (Czechia)'),
(65271, 54974, 'no_lang_code', 'name', 'Advacam (Czechia)'),
(65272, 54975, 'no_lang_code', 'name', 'Apex (Czechia)'),
(65273, 54976, 'no_lang_code', 'name', 'Advanced World Transport (Czechia)'),
(65274, 54977, 'cs', 'name', 'Autoklub České Republiky'),
(65275, 54978, 'no_lang_code', 'name', 'ADW (Czechia)'),
(65276, 54979, 'no_lang_code', 'name', 'Autometal (Czechia)'),
(65277, 54980, 'no_lang_code', 'name', 'Av Engineering (Czechia)'),
(65278, 54981, 'no_lang_code', 'name', 'APPLIC (Czechia)'),
(65279, 54982, 'no_lang_code', 'name', 'AEV (Czechia)'),
(65280, 54983, 'no_lang_code', 'name', 'Applycon (Czechia)'),
(65281, 54984, 'no_lang_code', 'name', 'AVE (Czechia)'),
(65282, 54985, 'no_lang_code', 'name', 'Aveflor (Czechia)'),
(65283, 54986, 'no_lang_code', 'name', 'ƅF (Czechia)'),
(65284, 54987, 'no_lang_code', 'name', 'Aveko Servomotory (Czechia)'),
(65285, 54988, 'no_lang_code', 'name', 'Aproks (Czechia)'),
(65286, 54989, 'no_lang_code', 'name', 'AG COM (Czechia)'),
(65287, 54990, 'no_lang_code', 'name', 'AVG Technologies (Czechia)'),
(65288, 54991, 'no_lang_code', 'name', 'AG Info (Czechia)'),
(65289, 54992, 'no_lang_code', 'name', 'Avia Propeller (Czechia)'),
(65290, 54993, 'no_lang_code', 'name', 'Apronex (Czechia)'),
(65291, 54994, 'en', 'name', 'Japan National Society for the Prevent of Blindness'),
(65292, 54994, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ęœ¬å¤±ę˜Žäŗˆé˜²å”ä¼š'),
(65293, 54995, 'no_lang_code', 'name', 'APT (Czechia)'),
(65294, 54996, 'no_lang_code', 'name', 'AWIK House Production (Czechia)'),
(65295, 54997, 'no_lang_code', 'name', 'AGC Flat Glass Czech (Czechia)'),
(65296, 54998, 'no_lang_code', 'name', 'Agenda (Czechia)'),
(65297, 54999, 'no_lang_code', 'name', 'Axys Varilab (Czechia)'),
(65298, 55000, 'no_lang_code', 'name', 'AQ SPOL (Czechia)'),
(65299, 55001, 'no_lang_code', 'name', 'AZ Consult (Czechia)'),
(65300, 55002, 'no_lang_code', 'name', 'Agentura Motiv P (Czechia)'),
(65301, 55003, 'no_lang_code', 'name', 'AQD-envitest (Czechia)'),
(65302, 55004, 'no_lang_code', 'name', 'Azacycles (Czechia)'),
(65303, 55005, 'no_lang_code', 'name', 'Aqua Procon (Czechia)'),
(65304, 55006, 'no_lang_code', 'name', 'AZS 98 (Czechia)'),
(65305, 55007, 'no_lang_code', 'name', 'Agentura Pro RegionƔlnƭ Rozvoj (Czechia)'),
(65306, 55008, 'no_lang_code', 'name', 'Aqua-contact (Czechia)'),
(65307, 55009, 'no_lang_code', 'name', 'Ageris (Czechia)'),
(65308, 55010, 'no_lang_code', 'name', 'BeHo (Czechia)'),
(65309, 55011, 'no_lang_code', 'name', 'KovofiniÅ” (Czechia)'),
(65310, 55012, 'no_lang_code', 'name', 'Agico (Czechia)'),
(65311, 55013, 'no_lang_code', 'name', 'AQUAdem (Czechia)'),
(65312, 55014, 'no_lang_code', 'name', 'Aquamonitoring (Czechia)'),
(65313, 55015, 'no_lang_code', 'name', 'Agra Group (Czechia)'),
(65314, 55016, 'no_lang_code', 'name', 'B. Braun (Czechia)'),
(65315, 55016, 'cs', 'name', 'B. Braun Avitum'),
(65316, 55017, 'no_lang_code', 'name', 'AgriKomp Bohemia (Czechia)'),
(65317, 55018, 'no_lang_code', 'name', 'Aquion (Czechia)'),
(65318, 55019, 'no_lang_code', 'name', 'BFP Lesy a statky TomÔŔe Bati'),
(65319, 55020, 'no_lang_code', 'name', 'Agrio (Czechia)'),
(65320, 55021, 'no_lang_code', 'name', 'Arcdata (Czechia)'),
(65321, 55022, 'no_lang_code', 'name', 'AGRO-Merin (Czechia)'),
(65322, 55023, 'cs', 'name', 'ArcheologickƩ Centrum Olomouc'),
(65323, 55024, 'no_lang_code', 'name', 'Agro Chomutice (Czechia)'),
(65324, 55025, 'cs', 'name', 'ArchitektonickĆ” KancelÔř Burian Křivinka'),
(65325, 55026, 'no_lang_code', 'name', 'Ardeapharma (Czechia)'),
(65326, 55027, 'no_lang_code', 'name', 'Agro (Czechia)'),
(65327, 55028, 'no_lang_code', 'name', 'Backer Elektro (Czechia)'),
(65328, 55029, 'no_lang_code', 'name', 'Argo-Hytos (Czechia)'),
(65329, 55030, 'no_lang_code', 'name', 'Agro PodlesĆ­ (Czechia)'),
(65330, 55031, 'no_lang_code', 'name', 'Argus Geo SystƩm (Czechia)'),
(65331, 55032, 'no_lang_code', 'name', 'BaHa (Czechia)'),
(65332, 55033, 'no_lang_code', 'name', 'Agro RubĆ­n (Czechia)'),
(65333, 55034, 'no_lang_code', 'name', 'Aries (Czechia)'),
(65334, 55035, 'no_lang_code', 'name', 'Benes A Lat (Czechia)'),
(65335, 55036, 'no_lang_code', 'name', 'AGRO StoŔíkovice (Czechia)'),
(65336, 55037, 'no_lang_code', 'name', 'ARKO Consult (Czechia)'),
(65337, 55038, 'no_lang_code', 'name', 'Balak (Czechia)'),
(65338, 55039, 'no_lang_code', 'name', 'BÔňské projekty Teplice'),
(65339, 55040, 'no_lang_code', 'name', 'AGRO-Partner (Czechia)'),
(65340, 55041, 'no_lang_code', 'name', 'BBT-Materials Processing (Czechia)'),
(65341, 55042, 'no_lang_code', 'name', 'BCS Engineering (Czechia)'),
(65342, 55043, 'no_lang_code', 'name', 'AgroBio Opava (Czechia)'),
(65343, 55044, 'no_lang_code', 'name', 'Barco (Czechia)'),
(65344, 55045, 'no_lang_code', 'name', 'BDO Audit (Czechia)'),
(65345, 55046, 'no_lang_code', 'name', 'Agroeko Žamberk (Czechia)'),
(65346, 55047, 'no_lang_code', 'name', 'Barekol (Czechia)'),
(65347, 55048, 'no_lang_code', 'name', 'Agroel (Czechia)'),
(65348, 55049, 'no_lang_code', 'name', 'Bednar Fmt (Czechia)'),
(65349, 55050, 'no_lang_code', 'name', 'Baroza (Czechia)'),
(65350, 55051, 'no_lang_code', 'name', 'Agrofarm (Czechia)'),
(65351, 55052, 'no_lang_code', 'name', 'Barvy a laky Hostivař (Czechia)'),
(65352, 55053, 'no_lang_code', 'name', 'Agrogen (Czechia)'),
(65353, 55054, 'no_lang_code', 'name', 'Beleco (Czechia)'),
(65354, 55055, 'no_lang_code', 'name', 'Agrointeg (Czechia)'),
(65355, 55056, 'no_lang_code', 'name', 'Bemagro (Czechia)'),
(65356, 55057, 'no_lang_code', 'name', 'Agrokomplex Ohře (Czechia)'),
(65357, 55058, 'no_lang_code', 'name', 'Basaltex (Czechia)'),
(65358, 55059, 'no_lang_code', 'name', 'BASF (Czechia)'),
(65359, 55060, 'no_lang_code', 'name', 'Benefit CZ (Czechia)'),
(65360, 55061, 'no_lang_code', 'name', 'AgroKonzulta Žamberk (Czechia)'),
(65361, 55062, 'no_lang_code', 'name', 'Agromont Vimperk (Czechia)'),
(65362, 55063, 'no_lang_code', 'name', 'BENEKOVterm (Czechia)'),
(65363, 55064, 'no_lang_code', 'name', 'Benet Gold (Czechia)'),
(65364, 55065, 'no_lang_code', 'name', 'Bańa (Czechia)'),
(65365, 55066, 'no_lang_code', 'name', 'Agropodnik Kosetice (Czechia)'),
(65366, 55067, 'no_lang_code', 'name', 'Bentglass (Czechia)'),
(65367, 55068, 'no_lang_code', 'name', 'Agroprojekce LitomyŔl (Czechia)'),
(65368, 55069, 'no_lang_code', 'name', 'Bentley Czech (Czechia)'),
(65369, 55070, 'no_lang_code', 'name', 'Bauer Technics'),
(65370, 55071, 'no_lang_code', 'name', 'BENZ-HMB CZECH (Czechia)'),
(65371, 55072, 'no_lang_code', 'name', 'Agroprojekt (Czechia)'),
(65372, 55073, 'no_lang_code', 'name', 'Berman Group (Czechia)'),
(65373, 55074, 'no_lang_code', 'name', 'Bayer (Czechia)'),
(65374, 55075, 'no_lang_code', 'name', 'Berry Servis (Czechia)'),
(65375, 55076, 'no_lang_code', 'name', 'AGROSAD VelkƩ Bƭlovice (Czechia)'),
(65376, 55077, 'no_lang_code', 'name', 'Beskyd Fryčovice (Czechia)'),
(65377, 55078, 'no_lang_code', 'name', 'Bestex (Czechia)'),
(65378, 55079, 'no_lang_code', 'name', 'Agrosoft TƔbor (Czechia)'),
(65379, 55080, 'no_lang_code', 'name', 'Beton TěŔovice (Czechia)'),
(65380, 55081, 'no_lang_code', 'name', 'Bazar strojÅÆ (Czechia)'),
(65381, 55082, 'no_lang_code', 'name', 'Agrospol VelkĆ” Bystřice (Czechia)'),
(65382, 55083, 'no_lang_code', 'name', 'Betonconsult (Czechia)'),
(65383, 55084, 'no_lang_code', 'name', 'Buzuluk (Czechia)'),
(65384, 55085, 'no_lang_code', 'name', 'Betonika Spol (Czechia)'),
(65385, 55086, 'no_lang_code', 'name', 'ŽDB DrÔtovna (Czechia)'),
(65386, 55087, 'no_lang_code', 'name', 'Agrospol AgrÔrní Družstvo (Czechia)'),
(65387, 55088, 'no_lang_code', 'name', 'Betotech (Czechia)'),
(65388, 55089, 'no_lang_code', 'name', 'Agrostis TrƔvnƭky (Czechia)'),
(65389, 55090, 'no_lang_code', 'name', 'Betula Pendula (Czechia)'),
(65390, 55091, 'cs', 'name', 'BEZK'),
(65391, 55092, 'no_lang_code', 'name', 'C Modul (Czechia)'),
(65392, 55093, 'no_lang_code', 'name', 'C and D (Czechia)'),
(65393, 55094, 'en', 'name', 'Czech Society of Biomechanics'),
(65394, 55095, 'no_lang_code', 'name', 'BG Sys HT (Czechia)'),
(65395, 55096, 'no_lang_code', 'name', 'Bilfinger MCE (Czechia)'),
(65396, 55097, 'en', 'name', 'Czech Society for Quality'),
(65397, 55097, 'cs', 'name', 'ČeskĆ” Společnost pro Jakost'),
(65398, 55098, 'no_lang_code', 'name', 'Bioconsult (Czechia)'),
(65399, 55099, 'en', 'name', 'Biocom'),
(65400, 55100, 'en', 'name', 'Czech Society Of International Law'),
(65401, 55100, 'cs', 'name', 'ČeskĆ” společnost pro mezinĆ”rodnĆ­ prĆ”vo'),
(65402, 55101, 'no_lang_code', 'name', 'Calimmune (United States)'),
(65403, 55102, 'no_lang_code', 'name', 'Continuous Acquisition and Lifecycle Support (Czechia)'),
(65404, 55103, 'no_lang_code', 'name', 'Biocont Laboratory (Czechia)'),
(65405, 55104, 'no_lang_code', 'name', 'Biodegradace (Czechia)'),
(65406, 55105, 'no_lang_code', 'name', 'Can Superconductors (Czechia)'),
(65407, 55106, 'no_lang_code', 'name', 'BioEnviro (Czechia)'),
(65408, 55107, 'en', 'name', 'Czech Bat Conservation Society'),
(65409, 55107, 'cs', 'name', 'ČeskĆ” společnost pro ochranu netopýrÅÆ'),
(65410, 55108, 'no_lang_code', 'name', 'Nutreco (Czechia)'),
(65411, 55109, 'no_lang_code', 'name', 'Biofarm Dora (Czechia)'),
(65412, 55110, 'no_lang_code', 'name', 'BioFish (Czechia)'),
(65413, 55111, 'en', 'name', 'Czech Society for Building Law'),
(65414, 55112, 'no_lang_code', 'name', 'Capricor Therapeutics (United States)'),
(65415, 55113, 'no_lang_code', 'name', 'Bioinstitut'),
(65416, 55114, 'cs', 'name', 'ČeskĆ” Spořitelna'),
(65417, 55115, 'no_lang_code', 'name', 'AeskuLab (Czechia)'),
(65418, 55116, 'no_lang_code', 'name', 'Biologicals (Czechia)'),
(65419, 55117, 'en', 'name', 'Czech Welding Society'),
(65420, 55117, 'cs', 'name', 'ČeskĆ” SvÔřečskĆ” Společnost ANB'),
(65421, 55118, 'no_lang_code', 'name', 'Biomedica (Czechia)'),
(65422, 55119, 'no_lang_code', 'name', 'Tyrolit (Czechia)'),
(65423, 55120, 'no_lang_code', 'name', 'Cardion (Czechia)'),
(65424, 55121, 'no_lang_code', 'name', 'Biopol Paints (Czechia)'),
(65425, 55122, 'no_lang_code', 'name', 'ČAS Service (Czechia)'),
(65426, 55123, 'no_lang_code', 'name', 'BiopreparƔty (Czechia)'),
(65427, 55124, 'no_lang_code', 'name', 'Cayman Chemical (United States)'),
(65428, 55125, 'en', 'name', 'Czech Forum for Development Cooperation'),
(65429, 55125, 'cs', 'name', 'České fórum pro rozvojovou spoluprÔci'),
(65430, 55126, 'no_lang_code', 'name', 'Bios Služby VýpočetnĆ­ Techniky (Czechia)'),
(65431, 55127, 'no_lang_code', 'name', 'CCS (Czechia)'),
(65432, 55128, 'cs', 'name', 'ČeskĆ© Loděnice'),
(65433, 55129, 'no_lang_code', 'name', 'ČD InformačnĆ­ SystĆ©my (Czechia)'),
(65434, 55130, 'no_lang_code', 'name', 'Czech Radiocommunications (Czechia)'),
(65435, 55130, 'cs', 'name', 'České Radiokomunikace'),
(65436, 55131, 'no_lang_code', 'name', 'iBioTech (Czechia)'),
(65437, 55132, 'no_lang_code', 'name', 'ČD Telematika (Czechia)'),
(65438, 55133, 'no_lang_code', 'name', 'CE Traffic (Czechia)'),
(65439, 55134, 'no_lang_code', 'name', 'BioVendor (Czechia)'),
(65440, 55135, 'en', 'name', 'Electrotechnical Association of the Czech Republic'),
(65441, 55135, 'cs', 'name', 'ČeskomoravskÔ elektrotechnickÔ asociace'),
(65442, 55136, 'no_lang_code', 'name', 'Cech Engineering (Czechia)'),
(65443, 55137, 'en', 'name', 'Czech Moravian Commodity Exchange Kladno'),
(65444, 55137, 'cs', 'name', 'ČeskomoravskÔ komoditní burza Kladno'),
(65445, 55138, 'no_lang_code', 'name', 'Cecho Bohumil CempĆ­rek (Czechia)'),
(65446, 55139, 'no_lang_code', 'name', 'Blata (Czechia)'),
(65447, 55140, 'cs', 'name', 'DiecĆ©ze litoměřickĆ”'),
(65448, 55141, 'cs', 'name', 'ČeskomoravskĆ” Společnost ChovatelÅÆ'),
(65449, 55142, 'no_lang_code', 'name', 'BlatenskĆ” ryba (Czechia)'),
(65450, 55143, 'no_lang_code', 'name', 'Českomoravský Cement (Czechia)'),
(65451, 55144, 'cs', 'name', 'Českomoravský Svaz MlékÔrenský'),
(65452, 55145, 'no_lang_code', 'name', 'Blue Ray (Czechia)'),
(65453, 55146, 'cs', 'name', 'ČeskoslovenskÔ Obchodní Banka'),
(65454, 55147, 'no_lang_code', 'name', 'Good Sailors (Czechia)'),
(65455, 55148, 'no_lang_code', 'name', 'ČeskoslovenskÔ Plavba LabskÔ (Czechia)'),
(65456, 55148, 'cs', 'name', 'ČeskoslovenskĆ” PlavebnĆ­ AkciovĆ” Společnost LabskĆ”'),
(65457, 55149, 'no_lang_code', 'name', 'Bmto Group (Czechia)'),
(65458, 55150, 'no_lang_code', 'name', 'AB Neo (Czechia)'),
(65459, 55151, 'no_lang_code', 'name', 'Bodycote (Czechia)'),
(65460, 55152, 'no_lang_code', 'name', 'Cellular Biomedicine Group (United States)'),
(65461, 55153, 'no_lang_code', 'name', 'Bogges (Czechia)'),
(65462, 55154, 'no_lang_code', 'name', 'Czechoslovak Society for Microbiology (Czechia)'),
(65463, 55154, 'cs', 'name', 'ČeskoslovenskĆ” společnost mikrobiologickĆ”'),
(65464, 55155, 'en', 'name', 'Czechoslovak Society for Forensic Genetics'),
(65465, 55155, 'cs', 'name', 'ČeskoslovenskĆ© společnosti pro forenznĆ­ genetiku'),
(65466, 55156, 'no_lang_code', 'name', 'Bohemian Software Consulting (Czechia)'),
(65467, 55157, 'no_lang_code', 'name', 'Cemex (Czechia)'),
(65468, 55158, 'no_lang_code', 'name', 'Bohemiaseed (Czechia)'),
(65469, 55159, 'no_lang_code', 'name', 'Bohemilk (Czechia)'),
(65470, 55160, 'no_lang_code', 'name', 'Československý Lloyd (Czechia)'),
(65471, 55161, 'no_lang_code', 'name', 'Centaurea (Czechia)'),
(65472, 55162, 'no_lang_code', 'name', 'BohuŔovickÔ MlékÔrna (Czechia)'),
(65473, 55163, 'no_lang_code', 'name', 'Centec (Czechia)'),
(65474, 55164, 'no_lang_code', 'name', 'GHH-Bonatrans (Czechia)'),
(65475, 55165, 'no_lang_code', 'name', 'Český MÔk (Czechia)'),
(65476, 55166, 'no_lang_code', 'name', 'Central European Biosystems (Czechia)'),
(65477, 55167, 'no_lang_code', 'name', 'Bonnel Technologie (Czechia)'),
(65478, 55168, 'en', 'name', 'Czech Otter Foundation Fund'),
(65479, 55168, 'cs', 'name', 'Český nadačnĆ­ fond pro vydru'),
(65480, 55169, 'en', 'name', 'Czech Olympic Committee'),
(65481, 55169, 'cs', 'name', 'Český Olympijský Výbor'),
(65482, 55170, 'no_lang_code', 'name', 'Bosch Rexroth (Czechia)'),
(65483, 55171, 'en', 'name', 'Czech Radio'),
(65484, 55171, 'cs', 'name', 'Český rozhlas'),
(65485, 55172, 'en', 'name', 'Central European Advisory Group'),
(65486, 55173, 'en', 'name', 'Czech Fishing Union'),
(65487, 55173, 'cs', 'name', 'Český rybÔřský svaz'),
(65488, 55174, 'en', 'name', 'Czech Statistical Office'),
(65489, 55174, 'cs', 'name', 'Český statistický ĆŗÅ™ad'),
(65490, 55175, 'no_lang_code', 'name', 'BOVA Březnice (Czechia)'),
(65491, 55176, 'no_lang_code', 'name', 'Suez (Czechia)'),
(65492, 55177, 'en', 'name', 'Czech Beef Breeders Association'),
(65493, 55177, 'cs', 'name', 'Český svaz chovatelů masného skotu'),
(65494, 55178, 'no_lang_code', 'name', 'Bratři HorĆ”kovĆ© (Czechia)'),
(65495, 55179, 'no_lang_code', 'name', 'Centro de Calculo Igs Software (Czechia)'),
(65496, 55180, 'no_lang_code', 'name', 'Brazzale Moravia (Czechia)'),
(65497, 55181, 'cs', 'name', 'ČeskÔ Unie Sportu'),
(65498, 55182, 'no_lang_code', 'name', 'Briklis (Czechia)'),
(65499, 55183, 'cs', 'name', 'Český Svaz Včelařů'),
(65500, 55184, 'no_lang_code', 'name', 'BrněnskĆ© VodĆ”rny a Kanalizace (Czechia)'),
(65501, 55185, 'en', 'name', 'Czech Proof House for Arms and Ammunition'),
(65502, 55185, 'cs', 'name', 'Český ĆŗÅ™ad pro zkouÅ”enĆ­ zbranĆ­ a střeliva'),
(65503, 55186, 'en', 'name', 'Centre For Innovation And Development'),
(65504, 55186, 'cs', 'name', 'Centrum InovacĆ­ a Rozvoje'),
(65505, 55187, 'en', 'name', 'Centre for Investment Development and Innovation'),
(65506, 55187, 'cs', 'name', 'Centrum investic, rozvoje a inovacĆ­'),
(65507, 55188, 'no_lang_code', 'name', 'Appecastro (Czechia)'),
(65508, 55189, 'cs', 'name', 'Centrum PasivnĆ­ho Domu'),
(65509, 55190, 'en', 'name', 'Korea Meteorological Institute'),
(65510, 55191, 'cs', 'name', 'Centrum pro Bezpečný StĆ”t'),
(65511, 55192, 'no_lang_code', 'name', 'Cezea - Å lechtitelskĆ” Stanice (Czechia)'),
(65512, 55193, 'no_lang_code', 'name', 'Junker (Czechia)'),
(65513, 55194, 'no_lang_code', 'name', 'CIMTO (Czechia)'),
(65514, 55194, 'cs', 'name', 'Centrum pro informace a mechanické testovÔní obalů'),
(65515, 55195, 'en', 'name', 'CGB Laboratory'),
(65516, 55195, 'cs', 'name', 'CGB laboratoř'),
(65517, 55196, 'en', 'name', 'Centre for Mental Health Care Development'),
(65518, 55196, 'cs', 'name', 'Centrum pro rozvoj pĆ©Äe o duÅ”evnĆ­ zdravĆ­'),
(65519, 55197, 'no_lang_code', 'name', 'CGI (Czechia)'),
(65520, 55198, 'no_lang_code', 'name', 'Atos (Czechia)'),
(65521, 55199, 'en', 'name', 'Kansas Department of Commerce'),
(65522, 55200, 'no_lang_code', 'name', 'Chaps (Czechia)'),
(65523, 55201, 'no_lang_code', 'name', 'Charvat AXL (Czechia)'),
(65524, 55202, 'no_lang_code', 'name', 'BurgSys (Czechia)'),
(65525, 55203, 'no_lang_code', 'name', 'Chateau Bzenec (Czechia)'),
(65526, 55204, 'no_lang_code', 'name', 'Sportas (Czechia)'),
(65527, 55205, 'no_lang_code', 'name', 'Chemcosport (Czechia)'),
(65528, 55206, 'no_lang_code', 'name', 'Clutex (Czechia)'),
(65529, 55207, 'no_lang_code', 'name', 'CNC Technology (Czechia)'),
(65530, 55208, 'no_lang_code', 'name', 'Chemispol (Czechia)'),
(65531, 55209, 'no_lang_code', 'name', 'CNS (Czechia)'),
(65532, 55210, 'no_lang_code', 'name', 'Code Creator (Czechia)'),
(65533, 55211, 'en', 'name', 'Centre for the Study of Democracy and Culture'),
(65534, 55211, 'cs', 'name', 'Centrum pro Studium Demokracie a Kultury'),
(65535, 55212, 'en', 'name', 'Centre for Research Development and Innovation'),
(65536, 55212, 'cs', 'name', 'Centrum pro výzkum, vývoj a inovace'),
(65537, 55213, 'no_lang_code', 'name', 'Codep (Czechia)'),
(65538, 55214, 'no_lang_code', 'name', 'Cisco Systems (Czechia)'),
(65539, 55215, 'no_lang_code', 'name', 'Čepro (Czechia)'),
(65540, 55216, 'no_lang_code', 'name', 'Color Spectrum (Czechia)'),
(65541, 55217, 'no_lang_code', 'name', 'Chemopharma (Austria)'),
(65542, 55218, 'no_lang_code', 'name', 'Cernin (Czechia)'),
(65543, 55219, 'no_lang_code', 'name', 'Casale Project (Czechia)'),
(65544, 55220, 'no_lang_code', 'name', 'Colorlak (Czechia)'),
(65545, 55221, 'no_lang_code', 'name', 'Colosseum (Czechia)'),
(65546, 55222, 'no_lang_code', 'name', 'Colsys (Czechia)'),
(65547, 55223, 'no_lang_code', 'name', 'Chemoprojekt (Czechia)'),
(65548, 55224, 'en', 'name', 'CzechTrade'),
(65549, 55224, 'cs', 'name', 'ČeskÔ Agentura na Podporu Obchodu'),
(65550, 55225, 'no_lang_code', 'name', 'CHemProtect (Czechia)'),
(65551, 55226, 'no_lang_code', 'name', 'Columna Centrum'),
(65552, 55227, 'no_lang_code', 'name', 'Com-Sys Trade (Czechia)'),
(65553, 55228, 'no_lang_code', 'name', 'Comet System (Czechia)'),
(65554, 55229, 'en', 'name', 'Czech Association of Fire Officers'),
(65555, 55229, 'cs', 'name', 'ČeskĆ” Asociace Hasičských DÅÆstojnĆ­kÅÆ'),
(65556, 55230, 'no_lang_code', 'name', 'ChipInvest (Czechia)'),
(65557, 55231, 'no_lang_code', 'name', 'Chirana (Czechia)'),
(65558, 55232, 'no_lang_code', 'name', 'Comimpex (Czechia)'),
(65559, 55233, 'cs', 'name', 'ČeskÔ Asociace Pedagogického Výzkumu'),
(65560, 55234, 'en', 'name', 'Czech Association of Petroleum Industry and Trade'),
(65561, 55234, 'cs', 'name', 'ČeskĆ” asociace petrolejÔřskĆ©ho prÅÆmyslu a obchodu'),
(65562, 55235, 'no_lang_code', 'name', 'Chirastar KDT (Czechia)'),
(65563, 55236, 'en', 'name', 'Czech ICT Alliance'),
(65564, 55236, 'cs', 'name', 'ČeskÔ asociace pro IT služby'),
(65565, 55237, 'no_lang_code', 'name', 'Compact Bohemia (Czechia)'),
(65566, 55238, 'no_lang_code', 'name', 'Brantner Walter (Czechia)'),
(65567, 55239, 'no_lang_code', 'name', 'Chmelarstvi Druzstvo Žatec (Czechia)'),
(65568, 55240, 'cs', 'name', 'ČeskÔ Asociace Steeplachase'),
(65569, 55241, 'cs', 'name', 'Academia NakladatelstvĆ­'),
(65570, 55242, 'no_lang_code', 'name', 'Compas Automatizace (Czechia)'),
(65571, 55243, 'en', 'name', 'Czech Biogas Association'),
(65572, 55243, 'cs', 'name', 'ČeskÔ BioplynovÔ Asociace'),
(65573, 55244, 'no_lang_code', 'name', 'ChoceňskÔ MlékÔrn (Czechia)'),
(65574, 55245, 'no_lang_code', 'name', 'F.P.S. Arco (Czechia)'),
(65575, 55246, 'no_lang_code', 'name', 'Breeding Cooperative Impuls (Czechia)'),
(65576, 55246, 'cs', 'name', 'Chovatelské Družstvo Impuls'),
(65577, 55247, 'no_lang_code', 'name', 'Chovservis (Czechia)'),
(65578, 55248, 'cs', 'name', 'ČeskÔ EnergetickÔ Asociace'),
(65579, 55249, 'no_lang_code', 'name', 'Compotech (Czechia)'),
(65580, 55250, 'no_lang_code', 'name', 'Chryso (United States)'),
(65581, 55251, 'no_lang_code', 'name', 'CI2'),
(65582, 55252, 'cs', 'name', 'ČeskĆ” GeografickĆ” Společnost'),
(65583, 55253, 'no_lang_code', 'name', 'Composite Components (Czechia)'),
(65584, 55254, 'no_lang_code', 'name', 'Cicero (Czechia)'),
(65585, 55255, 'no_lang_code', 'name', 'Compuplast International (Czechia)'),
(65586, 55256, 'no_lang_code', 'name', 'CID International (Czechia)'),
(65587, 55257, 'no_lang_code', 'name', 'Cidem Hranice (Czechia)'),
(65588, 55258, 'cs', 'name', 'ČeskÔ Hlava'),
(65589, 55259, 'no_lang_code', 'name', 'CĆ­gler Software (Czechia)'),
(65590, 55260, 'no_lang_code', 'name', 'ČIP Plus (Czechia)'),
(65591, 55261, 'cs', 'name', 'ČeskĆ” HutnickĆ” Společnost'),
(65592, 55262, 'no_lang_code', 'name', 'Tec 21'),
(65593, 55263, 'no_lang_code', 'name', 'CIUR (Czechia)'),
(65594, 55264, 'no_lang_code', 'name', 'Civitas per Populi'),
(65595, 55265, 'no_lang_code', 'name', 'Comtes DFM (Czechia)'),
(65596, 55266, 'no_lang_code', 'name', 'ČKD Blansko (Czechia)'),
(65597, 55267, 'cs', 'name', 'ČeskĆ” KinantropologickĆ” Společnost'),
(65598, 55268, 'no_lang_code', 'name', 'Consultest (Czechia)'),
(65599, 55269, 'en', 'name', 'Chamber and Offices Authorized Persons Engineering'),
(65600, 55269, 'cs', 'name', 'ČeskĆ” Komora Autorizovaných InženýrÅÆ a TechnikÅÆ Činných ve Výstavbě'),
(65601, 55270, 'no_lang_code', 'name', 'Clasic (Czechia)'),
(65602, 55271, 'cs', 'name', 'ČeskÔ Krajina'),
(65603, 55272, 'no_lang_code', 'name', 'Consulting Company Novasoft (Czechia)'),
(65604, 55273, 'no_lang_code', 'name', 'Classic Oil (Czechia)'),
(65605, 55274, 'en', 'name', 'Czech Medical Chamber'),
(65606, 55274, 'cs', 'name', 'ČeskĆ” lĆ©kařskĆ” komora'),
(65607, 55275, 'no_lang_code', 'name', 'Consygen CZ (Czechia)'),
(65608, 55276, 'no_lang_code', 'name', 'Cleantex (Czechia)'),
(65609, 55277, 'cs', 'name', 'ČeskÔ MembrÔnovÔ Platforma'),
(65610, 55278, 'no_lang_code', 'name', 'CleverMaps (Czechia)'),
(65611, 55279, 'no_lang_code', 'name', 'Conte Energy (Czechia)'),
(65612, 55280, 'no_lang_code', 'name', 'CleverTech (Czechia)'),
(65613, 55281, 'cs', 'name', 'ČeskĆ” NĆ”rodopisnĆ” Společnost'),
(65614, 55282, 'no_lang_code', 'name', 'Conteg (Czechia)'),
(65615, 55283, 'no_lang_code', 'name', 'Denas Color (Czechia)'),
(65616, 55284, 'no_lang_code', 'name', 'Dendera (Czechia)'),
(65617, 55285, 'no_lang_code', 'name', 'Dendria (Czechia)'),
(65618, 55286, 'cs', 'name', 'HutnickĆ” zaměstnaneckĆ” pojiŔńovna'),
(65619, 55286, 'no_lang_code', 'name', 'ČeskÔ PrůmyslovÔ Zdravotní PojiŔńovna (Czechia)'),
(65620, 55287, 'no_lang_code', 'name', 'Veolia (Czechia)'),
(65621, 55288, 'no_lang_code', 'name', 'Coprosys-LVI (Czechia)'),
(65622, 55289, 'no_lang_code', 'name', 'Ders (Czechia)'),
(65623, 55290, 'no_lang_code', 'name', 'Descent (Czechia)'),
(65624, 55291, 'cs', 'name', 'KancelÔř PoslaneckĆ© sněmovny'),
(65625, 55291, 'en', 'name', 'Office of the Chamber of Deputies'),
(65626, 55292, 'no_lang_code', 'name', 'Designfoods (Czechia)'),
(65627, 55293, 'cs', 'name', 'ČeskÔ RozvojovÔ Agentura'),
(65628, 55294, 'no_lang_code', 'name', 'Cortis Consulting'),
(65629, 55295, 'no_lang_code', 'name', 'Despa ok (Czechia)'),
(65630, 55296, 'no_lang_code', 'name', 'Destrux (Czechia)'),
(65631, 55297, 'no_lang_code', 'name', 'Detas (Czechia)'),
(65632, 55298, 'cs', 'name', 'ČeskĆ” SpeleologickĆ” Společnost'),
(65633, 55299, 'no_lang_code', 'name', 'Crea Hydro&Energy (Czechia)'),
(65634, 55300, 'cs', 'name', 'DětskĆ© Centrum Paprsek'),
(65635, 55301, 'no_lang_code', 'name', 'Creative Connections (Czechia)'),
(65636, 55302, 'cs', 'name', 'DětskĆ© KrizovĆ© Centrum'),
(65637, 55303, 'no_lang_code', 'name', 'Czech Credit Bureau (Czechia)'),
(65638, 55304, 'en', 'name', 'Children’s Centre Little House'),
(65639, 55304, 'sk', 'name', 'Dzieckie Centrum Domeczek'),
(65640, 55304, 'cs', 'name', 'DětskĆ© Centrum Domeček'),
(65641, 55305, 'cs', 'name', 'ČeskĆ” Společnost ChemickĆ©ho InženýrstvĆ­'),
(65642, 55306, 'no_lang_code', 'name', 'DevCom (Czechia)'),
(65643, 55307, 'no_lang_code', 'name', 'Augur Consulting (Czechia)'),
(65644, 55308, 'no_lang_code', 'name', 'Devimex (Czechia)'),
(65645, 55309, 'no_lang_code', 'name', 'Crystalex (Czechia)'),
(65646, 55310, 'no_lang_code', 'name', 'CS Plasting (Czechia)'),
(65647, 55311, 'no_lang_code', 'name', 'DFC Design (Czechia)'),
(65648, 55312, 'cs', 'name', 'ČeskĆ” Společnost EntomologickĆ”'),
(65649, 55313, 'no_lang_code', 'name', 'CS Soft (Czechia)'),
(65650, 55314, 'no_lang_code', 'name', 'CS-Beton (Czechia)'),
(65651, 55315, 'no_lang_code', 'name', 'CS-Project (Czechia)'),
(65652, 55316, 'en', 'name', 'Czech Society of Experimental Plant Biology'),
(65653, 55316, 'cs', 'name', 'ČeskĆ” společnost experimentĆ”lnĆ­ biologie rostlin'),
(65654, 55317, 'en', 'name', 'Czech Society for Histo and Cytochemistry'),
(65655, 55317, 'cs', 'name', 'ČeskĆ” společnost histo-a cytochemickĆ”'),
(65656, 55318, 'no_lang_code', 'name', 'Diamo (Czechia)'),
(65657, 55319, 'no_lang_code', 'name', 'Czech Space Research Centre (Czechia)'),
(65658, 55320, 'no_lang_code', 'name', 'DT VýhybkÔrna a Strojírna (Czechia)'),
(65659, 55321, 'no_lang_code', 'name', 'DTO (Czechia)'),
(65660, 55322, 'no_lang_code', 'name', 'DTZ (Czechia)'),
(65661, 55323, 'no_lang_code', 'name', 'Cubespace (Czechia)'),
(65662, 55324, 'cs', 'name', 'ArmƔda SpƔsy'),
(65663, 55325, 'no_lang_code', 'name', 'Grupo Dibaq (Spain)'),
(65664, 55326, 'no_lang_code', 'name', 'CVP Galvanika (Czechia)'),
(65665, 55327, 'no_lang_code', 'name', 'DvořÔk (Czechia)'),
(65666, 55328, 'no_lang_code', 'name', 'Dinel (Czechia)'),
(65667, 55329, 'no_lang_code', 'name', 'Dynamic Future (Czechia)'),
(65668, 55330, 'no_lang_code', 'name', 'Unicorn (Czechia)'),
(65669, 55331, 'no_lang_code', 'name', 'Dynex (Czechia)'),
(65670, 55332, 'no_lang_code', 'name', 'CZ Bijo (Czechia)'),
(65671, 55333, 'cs', 'name', 'CZ Biom'),
(65672, 55334, 'no_lang_code', 'name', 'Diram (Czechia)'),
(65673, 55335, 'no_lang_code', 'name', 'CZ Fruit (Czechia)'),
(65674, 55336, 'no_lang_code', 'name', 'Disam RT (Czechia)'),
(65675, 55337, 'no_lang_code', 'name', 'Dyntec (Czechia)'),
(65676, 55338, 'no_lang_code', 'name', 'Dystiff (Czechia)'),
(65677, 55339, 'no_lang_code', 'name', 'ESL (Czechia)'),
(65678, 55340, 'no_lang_code', 'name', 'Dispechem (Czechia)'),
(65679, 55341, 'no_lang_code', 'name', 'Ditana (Czechia)'),
(65680, 55342, 'no_lang_code', 'name', 'E therm TZ (Czechia)'),
(65681, 55343, 'no_lang_code', 'name', 'DIZ Bohemia (Czechia)'),
(65682, 55344, 'no_lang_code', 'name', 'Czech Aeroholding (Czechia)'),
(65683, 55344, 'cs', 'name', 'Český Aeroholding'),
(65684, 55345, 'no_lang_code', 'name', 'E and H Services (Czechia)'),
(65685, 55346, 'no_lang_code', 'name', 'E4t Electronics for Transportation (Czechia)'),
(65686, 55347, 'no_lang_code', 'name', 'Czech Industry Group (Czechia)'),
(65687, 55348, 'no_lang_code', 'name', 'Eago Systems (Czechia)'),
(65688, 55349, 'no_lang_code', 'name', 'DLF Trifolium Hladké Životice (Czechia)'),
(65689, 55350, 'no_lang_code', 'name', 'Electronic Control and Measurement (Czechia)'),
(65690, 55351, 'no_lang_code', 'name', 'Eco Building Brno (Czechia)'),
(65691, 55352, 'no_lang_code', 'name', 'ECO (Czechia)'),
(65692, 55353, 'no_lang_code', 'name', 'ECO Management (Czechia)'),
(65693, 55354, 'no_lang_code', 'name', 'Czech Machines (Czechia)'),
(65694, 55355, 'cs', 'name', 'Domov Na JaroÅ”ce, PříspěvkovĆ” Organizace'),
(65695, 55356, 'no_lang_code', 'name', 'Ecofer (Czechia)'),
(65696, 55357, 'no_lang_code', 'name', 'Ecofuel Laboratories (Czechia)'),
(65697, 55358, 'no_lang_code', 'name', 'Orbital 2 (Czechia)'),
(65698, 55359, 'no_lang_code', 'name', 'Ecolab Znojmo (Czechia)'),
(65699, 55360, 'no_lang_code', 'name', 'DopravnĆ­ akademie (Czechia)'),
(65700, 55361, 'no_lang_code', 'name', 'Czech Precision Forge (Czechia)'),
(65701, 55362, 'no_lang_code', 'name', 'Ecological Consulting (Czechia)'),
(65702, 55363, 'no_lang_code', 'name', 'Ecoprogress (Czechia)'),
(65703, 55364, 'en', 'name', 'Czech River Restoration Centre'),
(65704, 55365, 'no_lang_code', 'name', 'Ecoprotect (Czechia)'),
(65705, 55366, 'cs', 'name', 'DopravnĆ­ Podnik Hlavniho Mesta Prahy'),
(65706, 55367, 'no_lang_code', 'name', 'Ecowasteenergy (Czechia)'),
(65707, 55368, 'no_lang_code', 'name', 'Ecosoft (Czechia)'),
(65708, 55369, 'no_lang_code', 'name', 'DopravnĆ­ podnik Karlovy Vary (Czechia)'),
(65709, 55370, 'no_lang_code', 'name', 'Dopravnƭ Podnik Měst Liberce a Jablonce nad Nisou (Czechia)'),
(65710, 55370, 'cs', 'name', 'Dopravnƭ podnik města Liberce'),
(65711, 55371, 'no_lang_code', 'name', 'Ecotex (Czechia)'),
(65712, 55372, 'no_lang_code', 'name', 'DSK (Czechia)'),
(65713, 55373, 'no_lang_code', 'name', 'D3Soft (Czechia)'),
(65714, 55374, 'cs', 'name', 'Editio JanĆ”Äek'),
(65715, 55375, 'no_lang_code', 'name', 'Dopravnƭ podnik města ƚstƭ nad Labem (Czechia)'),
(65716, 55376, 'no_lang_code', 'name', 'Dako Brno (Czechia)'),
(65717, 55377, 'cs', 'name', 'DopravnĆ­ Podnik Ostrava'),
(65718, 55377, 'no_lang_code', 'name', 'Transport Company Ostrava (Czechia)'),
(65719, 55378, 'no_lang_code', 'name', 'Dako-CZ (Czechia)'),
(65720, 55379, 'no_lang_code', 'name', 'Edscha (Czechia)'),
(65721, 55380, 'en', 'name', 'Wuxi Municipal Health Bureau'),
(65722, 55380, 'zh', 'name', 'ę— é””åø‚å«č®”å§”'),
(65723, 55381, 'no_lang_code', 'name', 'Dopravoprojekt (Czechia)'),
(65724, 55382, 'no_lang_code', 'name', 'Eduard Model Accessories (Czechia)');
INSERT INTO `ror_settings` VALUES
(65725, 55383, 'no_lang_code', 'name', 'DĆ”lničnĆ­ Stavby Praha (Czechia)'),
(65726, 55384, 'no_lang_code', 'name', 'Dosing - Dopravoprojekt Brno Group (Czechia)'),
(65727, 55385, 'no_lang_code', 'name', 'EG Expert (Czechia)'),
(65728, 55386, 'no_lang_code', 'name', 'Danone (Czechia)'),
(65729, 55387, 'no_lang_code', 'name', 'Dosting (Czechia)'),
(65730, 55388, 'no_lang_code', 'name', 'EGE (Czechia)'),
(65731, 55389, 'no_lang_code', 'name', 'Ego Zlin (Czechia)'),
(65732, 55390, 'no_lang_code', 'name', 'DAP Services (Czechia)'),
(65733, 55391, 'no_lang_code', 'name', 'EGÚ Brno (Czechia)'),
(65734, 55392, 'no_lang_code', 'name', 'Dasfos (Czechia)'),
(65735, 55393, 'no_lang_code', 'name', 'Tech Aid Czech Branch (Czechia)'),
(65736, 55394, 'no_lang_code', 'name', 'Datacon (Czechia)'),
(65737, 55395, 'no_lang_code', 'name', 'Druchema (Czechia)'),
(65738, 55396, 'no_lang_code', 'name', 'DSA (Czechia)'),
(65739, 55397, 'no_lang_code', 'name', 'EGÚ Praha Engineering (Czechia)'),
(65740, 55398, 'no_lang_code', 'name', 'Bech Akku Power Batteries (Czechia)'),
(65741, 55399, 'no_lang_code', 'name', 'Dsd - DostƔl (Czechia)'),
(65742, 55400, 'no_lang_code', 'name', 'ENBRA (Czechia)'),
(65743, 55401, 'no_lang_code', 'name', 'Dega (Czechia)'),
(65744, 55402, 'no_lang_code', 'name', 'EkoBio (Czechia)'),
(65745, 55403, 'no_lang_code', 'name', 'SusChem'),
(65746, 55403, 'cs', 'name', 'České Technologické Platformy pro Udržitelnou Chemii'),
(65747, 55404, 'no_lang_code', 'name', 'Eko-Kom (Czechia)'),
(65748, 55405, 'no_lang_code', 'name', 'DEL (Czechia)'),
(65749, 55406, 'cs', 'name', 'EnergetickĆ© Třebƭčsko'),
(65750, 55407, 'no_lang_code', 'name', 'Delacon Biotechnik (Czechia)'),
(65751, 55408, 'no_lang_code', 'name', 'Energocentrum (Czechia)'),
(65752, 55409, 'no_lang_code', 'name', 'Ekogalva (Czechia)'),
(65753, 55410, 'no_lang_code', 'name', 'F Air (Czechia)'),
(65754, 55411, 'no_lang_code', 'name', 'FMP (Czechia)'),
(65755, 55412, 'no_lang_code', 'name', 'Ekogroup Czech (Czechia)'),
(65756, 55413, 'no_lang_code', 'name', 'Focam (Czechia)'),
(65757, 55414, 'no_lang_code', 'name', 'Energoservis (Czechia)'),
(65758, 55415, 'no_lang_code', 'name', 'Ekohydrogeo Žitný (Czechia)'),
(65759, 55416, 'no_lang_code', 'name', 'FSC Bezpečnostnƭ Poradenstvƭ (Czechia)'),
(65760, 55417, 'no_lang_code', 'name', 'Ekoles Projekt (Czechia)'),
(65761, 55418, 'no_lang_code', 'name', 'Energostav (Czechia)'),
(65762, 55419, 'no_lang_code', 'name', 'Fabconworks (Czechia)'),
(65763, 55420, 'no_lang_code', 'name', 'Factorio Solutions (Czechia)'),
(65764, 55421, 'no_lang_code', 'name', 'FaF Top-Color (Czechia)'),
(65765, 55422, 'no_lang_code', 'name', 'Ekomor (Czechia)'),
(65766, 55423, 'no_lang_code', 'name', 'Entracon (Czechia)'),
(65767, 55424, 'no_lang_code', 'name', 'Ekopanely Servis (Czechia)'),
(65768, 55425, 'no_lang_code', 'name', 'Faiveley Transport (Czechia)'),
(65769, 55426, 'no_lang_code', 'name', 'Ekomont Litoměřice (Czechia)'),
(65770, 55427, 'no_lang_code', 'name', 'Ekoplant (Slovakia)'),
(65771, 55428, 'no_lang_code', 'name', 'Ekoport'),
(65772, 55429, 'no_lang_code', 'name', 'ENVI (Czechia)'),
(65773, 55430, 'no_lang_code', 'name', 'Fapros družstvo (Czechia)'),
(65774, 55431, 'no_lang_code', 'name', 'Envi-Pur (Czechia)'),
(65775, 55432, 'no_lang_code', 'name', 'Farma Žiro (Czechia)'),
(65776, 55433, 'no_lang_code', 'name', 'Ekopron Metal (Czechia)'),
(65777, 55434, 'no_lang_code', 'name', 'Farmak Moravia (Czechia)'),
(65778, 55435, 'no_lang_code', 'name', 'Farmak (Czechia)'),
(65779, 55436, 'no_lang_code', 'name', 'Agrofert (Czechia)'),
(65780, 55437, 'no_lang_code', 'name', 'Enviconsult (Slovakia)'),
(65781, 55438, 'no_lang_code', 'name', 'Ekostavby Brno (Czechia)'),
(65782, 55439, 'no_lang_code', 'name', 'Ekosystem (Czechia)'),
(65783, 55440, 'no_lang_code', 'name', 'Envipor (Czechia)'),
(65784, 55441, 'no_lang_code', 'name', 'FEM Consulting (Czechia)'),
(65785, 55442, 'no_lang_code', 'name', 'Ekotechnika (Czechia)'),
(65786, 55443, 'cs', 'name', 'Envirex'),
(65787, 55444, 'no_lang_code', 'name', 'Ekozink Praha (Czechia)'),
(65788, 55445, 'no_lang_code', 'name', 'Envirmine (Czechia)'),
(65789, 55446, 'no_lang_code', 'name', 'Femma (Czechia)'),
(65790, 55447, 'no_lang_code', 'name', 'Feramat Cybernetics (Czechia)'),
(65791, 55448, 'no_lang_code', 'name', 'Envirmine-Energo (Czechia)'),
(65792, 55449, 'no_lang_code', 'name', 'Elcom (Czechia)'),
(65793, 55450, 'no_lang_code', 'name', 'Elektrometall (Czechia)'),
(65794, 55451, 'no_lang_code', 'name', 'Fermat (Czechia)'),
(65795, 55452, 'no_lang_code', 'name', 'Elfe (Czechia)'),
(65796, 55453, 'no_lang_code', 'name', 'Elisa Development (Czechia)'),
(65797, 55454, 'no_lang_code', 'name', 'ENVItech Bohemia (Czechia)'),
(65798, 55455, 'no_lang_code', 'name', 'Elisabeth Pharmacon (Czechia)'),
(65799, 55456, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Czechia)'),
(65800, 55457, 'no_lang_code', 'name', 'Ferro OK (Czechia)'),
(65801, 55458, 'no_lang_code', 'name', 'Enzymix (Czechia)'),
(65802, 55459, 'no_lang_code', 'name', 'Elmet (Czechia)'),
(65803, 55460, 'no_lang_code', 'name', 'Festool (Czechia)'),
(65804, 55461, 'no_lang_code', 'name', 'Elsklo (Czechia)'),
(65805, 55462, 'no_lang_code', 'name', 'Fiedler Zdeněk (Czechia)'),
(65806, 55463, 'no_lang_code', 'name', 'FilƔk (Czechia)'),
(65807, 55464, 'no_lang_code', 'name', 'ERGOWORK (Czechia)'),
(65808, 55465, 'no_lang_code', 'name', 'Mesit (Czechia)'),
(65809, 55466, 'no_lang_code', 'name', 'Eltek (Czechia)'),
(65810, 55467, 'no_lang_code', 'name', 'Erilens (Czechia)'),
(65811, 55468, 'no_lang_code', 'name', 'Firel (Czechia)'),
(65812, 55469, 'no_lang_code', 'name', 'Fish Farm Bohemia (Czechia)'),
(65813, 55470, 'no_lang_code', 'name', 'Flash Steel Power (Czechia)'),
(65814, 55471, 'no_lang_code', 'name', 'Elzaco (Czechia)'),
(65815, 55472, 'no_lang_code', 'name', 'EM Brno (Czechia)'),
(65816, 55473, 'no_lang_code', 'name', 'Escape Therapeutics (United States)'),
(65817, 55474, 'no_lang_code', 'name', 'Flaveko (Czechia)'),
(65818, 55475, 'no_lang_code', 'name', 'Em Test ČR (Czechia)'),
(65819, 55476, 'no_lang_code', 'name', 'Flexisander (Czechia)'),
(65820, 55477, 'no_lang_code', 'name', 'Espace Morava (Czechia)'),
(65821, 55478, 'no_lang_code', 'name', 'Essa (Czechia)'),
(65822, 55479, 'no_lang_code', 'name', 'Flowmon Networks (Czechia)'),
(65823, 55480, 'no_lang_code', 'name', 'Essence Line (Czechia)'),
(65824, 55481, 'no_lang_code', 'name', 'FLSmidth (Czechia)'),
(65825, 55482, 'no_lang_code', 'name', 'Emerson (Czechia)'),
(65826, 55483, 'no_lang_code', 'name', 'Emg ZlĆ­n (Czechia)'),
(65827, 55484, 'no_lang_code', 'name', 'Elektro-System-Technik (Slovakia)'),
(65828, 55485, 'no_lang_code', 'name', 'Fluxamat (Czechia)'),
(65829, 55486, 'no_lang_code', 'name', 'Empo Praha (Czechia)'),
(65830, 55487, 'no_lang_code', 'name', 'Estcom (Czechia)'),
(65831, 55488, 'no_lang_code', 'name', 'FMP Lignum (Czechia)'),
(65832, 55489, 'no_lang_code', 'name', 'Esto Cheb (Czechia)'),
(65833, 55490, 'no_lang_code', 'name', 'Enantis (Czechia)'),
(65834, 55491, 'no_lang_code', 'name', 'Fokus (Czechia)'),
(65835, 55492, 'no_lang_code', 'name', 'Frentech Aerospace (Czechia)'),
(65836, 55493, 'no_lang_code', 'name', 'ETD Transformatory (Czechia)'),
(65837, 55493, 'cs', 'name', 'Výkonové TransformÔtory'),
(65838, 55494, 'no_lang_code', 'name', 'Eteria (Czechia)'),
(65839, 55495, 'no_lang_code', 'name', 'Fritagro Nížkov (Czechia)'),
(65840, 55496, 'no_lang_code', 'name', 'Foller (Czechia)'),
(65841, 55497, 'no_lang_code', 'name', 'Fomex Team (Czechia)'),
(65842, 55498, 'no_lang_code', 'name', 'Froněk (Czechia)'),
(65843, 55499, 'cs', 'name', 'Fond DalŔího VzdělĆ”vĆ”nĆ­'),
(65844, 55500, 'no_lang_code', 'name', 'Fruko Schulz (Czechia)'),
(65845, 55501, 'no_lang_code', 'name', 'Fytovita (Czechia)'),
(65846, 55502, 'no_lang_code', 'name', 'ETK KolĆ­n (Czechia)'),
(65847, 55503, 'no_lang_code', 'name', 'Forensic DNA Service (Czechia)'),
(65848, 55503, 'cs', 'name', 'ForenznĆ­ DNA servis'),
(65849, 55504, 'no_lang_code', 'name', 'Eurofins (Czechia)'),
(65850, 55505, 'cs', 'name', 'FyzikĆ”lně Technický ZkuÅ”ebnĆ­ Ústav'),
(65851, 55505, 'en', 'name', 'Physical Technical Testing Institute'),
(65852, 55506, 'no_lang_code', 'name', 'Forest - Agro (Czechia)'),
(65853, 55507, 'no_lang_code', 'name', 'G Mar Plus (Czechia)'),
(65854, 55508, 'no_lang_code', 'name', 'Eurogas (Czechia)'),
(65855, 55509, 'no_lang_code', 'name', 'Foresta (Czechia)'),
(65856, 55510, 'no_lang_code', 'name', 'GDK (Czechia)'),
(65857, 55511, 'no_lang_code', 'name', 'Eurom (Czechia)'),
(65858, 55512, 'no_lang_code', 'name', 'EuroMISE (Czechia)'),
(65859, 55513, 'no_lang_code', 'name', 'Form (Czechia)'),
(65860, 55514, 'cs', 'name', 'G E M A, s.r.o. Automatizace Technologických Procesů'),
(65861, 55514, 'no_lang_code', 'name', 'General Engineering Measurement and Automation (Czechia)'),
(65862, 55515, 'no_lang_code', 'name', 'Forsapi (Czechia)'),
(65863, 55516, 'no_lang_code', 'name', 'Euronics Engineering (Czechia)'),
(65864, 55517, 'no_lang_code', 'name', 'Gesko (Czechia)'),
(65865, 55518, 'no_lang_code', 'name', 'Europanel (Czechia)'),
(65866, 55519, 'no_lang_code', 'name', 'Fortex-AGS (Czechia)'),
(65867, 55520, 'no_lang_code', 'name', 'European Business Enterprise (Czechia)'),
(65868, 55521, 'no_lang_code', 'name', 'G M Chemie (Czechia)'),
(65869, 55522, 'no_lang_code', 'name', 'Fosfa (Czechia)'),
(65870, 55523, 'en', 'name', 'GEP Clinic'),
(65871, 55524, 'no_lang_code', 'name', 'Gaben (Czechia)'),
(65872, 55525, 'no_lang_code', 'name', 'Euroseal (Czechia)'),
(65873, 55526, 'no_lang_code', 'name', 'Gabriel Chemie Bohemia (Czechia)'),
(65874, 55527, 'no_lang_code', 'name', 'Eurosignal (Czechia)'),
(65875, 55528, 'no_lang_code', 'name', 'EuroTec JKR (Czechia)'),
(65876, 55529, 'no_lang_code', 'name', 'FPOS (Czechia)'),
(65877, 55530, 'no_lang_code', 'name', 'Eutit (Czechia)'),
(65878, 55531, 'no_lang_code', 'name', 'Gala (Czechia)'),
(65879, 55532, 'no_lang_code', 'name', 'EVC Group (Czechia)'),
(65880, 55533, 'no_lang_code', 'name', 'Eveco (Czechia)'),
(65881, 55534, 'no_lang_code', 'name', 'Free Energy (Slovakia)'),
(65882, 55535, 'no_lang_code', 'name', 'Galatek (Czechia)'),
(65883, 55536, 'cs', 'name', 'Galerie Klatovy'),
(65884, 55537, 'no_lang_code', 'name', 'NXP (Czechia)'),
(65885, 55538, 'no_lang_code', 'name', 'Exact Control System (Czechia)'),
(65886, 55539, 'cs', 'name', 'Galerie Modernƭho Uměnƭ v Roudnici nad Labem'),
(65887, 55539, 'en', 'name', 'Gallery of Modern Art Roudnice nad Labem'),
(65888, 55540, 'no_lang_code', 'name', 'Excalibur Army (Czechia)'),
(65889, 55541, 'no_lang_code', 'name', 'Gallopro (Czechia)'),
(65890, 55542, 'no_lang_code', 'name', 'EVPÚ Defence (Czechia)'),
(65891, 55543, 'no_lang_code', 'name', 'Úsporné Bydlení (Czechia)'),
(65892, 55544, 'no_lang_code', 'name', 'Garmin (Czechia)'),
(65893, 55545, 'no_lang_code', 'name', 'Gas Komplet (Czechia)'),
(65894, 55546, 'no_lang_code', 'name', 'Eyedea Recognition (Czechia)'),
(65895, 55547, 'no_lang_code', 'name', 'H1.cz (Czechia)'),
(65896, 55548, 'no_lang_code', 'name', 'Gascontrol Plast (Czechia)'),
(65897, 55549, 'no_lang_code', 'name', 'Excon (Czechia)'),
(65898, 55550, 'no_lang_code', 'name', 'Haal Elektro (Czechia)'),
(65899, 55551, 'no_lang_code', 'name', 'Kelvion (Czechia)'),
(65900, 55552, 'no_lang_code', 'name', 'Habena (Czechia)'),
(65901, 55553, 'no_lang_code', 'name', 'Gemec Union (Czechia)'),
(65902, 55554, 'no_lang_code', 'name', 'HalĆ­Å™ A DiviÅ” (Czechia)'),
(65903, 55555, 'no_lang_code', 'name', 'HanĆ”ckĆ” ZemědělskĆ” Společnost Jevƭčko (Czechia)'),
(65904, 55556, 'en', 'name', 'Gemini Eye Clinic'),
(65905, 55556, 'cs', 'name', 'Očnƭ klinika Gemini'),
(65906, 55557, 'no_lang_code', 'name', 'Explat (Czechia)'),
(65907, 55558, 'no_lang_code', 'name', 'Gemos (Czechia)'),
(65908, 55559, 'no_lang_code', 'name', 'Gen Trend (Czechia)'),
(65909, 55560, 'no_lang_code', 'name', 'Extrudo Bečice (Czechia)'),
(65910, 55561, 'no_lang_code', 'name', 'Hanka Mochov (Czechia)'),
(65911, 55562, 'no_lang_code', 'name', 'Hansen Electric (Czechia)'),
(65912, 55563, 'no_lang_code', 'name', 'Immobiliser Central Europe (Czechia)'),
(65913, 55564, 'no_lang_code', 'name', 'Genetrac (Czechia)'),
(65914, 55565, 'no_lang_code', 'name', 'Balakryl (Czechia)'),
(65915, 55566, 'no_lang_code', 'name', 'Danaher (Czechia)'),
(65916, 55567, 'no_lang_code', 'name', 'HaSaM (Czechia)'),
(65917, 55568, 'no_lang_code', 'name', 'Geniczech M (Czechia)'),
(65918, 55569, 'no_lang_code', 'name', 'Gennet'),
(65919, 55570, 'no_lang_code', 'name', 'Heat Transfer Systems (Czechia)'),
(65920, 55571, 'no_lang_code', 'name', 'IMPS (Czechia)'),
(65921, 55572, 'no_lang_code', 'name', 'Genomac'),
(65922, 55573, 'no_lang_code', 'name', 'IMS-DraŔnar (Czechia)'),
(65923, 55574, 'en', 'name', 'Genservice'),
(65924, 55575, 'no_lang_code', 'name', 'In-Eko Team (Czechia)'),
(65925, 55576, 'no_lang_code', 'name', 'Gentop Engineering (Czechia)'),
(65926, 55577, 'no_lang_code', 'name', 'Indel (Slovakia)'),
(65927, 55578, 'no_lang_code', 'name', 'Hedva (Czechia)'),
(65928, 55579, 'no_lang_code', 'name', 'Help Forest (Czechia)'),
(65929, 55580, 'no_lang_code', 'name', 'Geo Vision (Czechia)'),
(65930, 55581, 'no_lang_code', 'name', 'Indet Safety Systems (Czechia)'),
(65931, 55582, 'no_lang_code', 'name', 'Industrial Technology Systems (Czechia)'),
(65932, 55583, 'no_lang_code', 'name', 'Inekon Group (Czechia)'),
(65933, 55584, 'no_lang_code', 'name', 'Geocart (Czechia)'),
(65934, 55585, 'no_lang_code', 'name', 'Heltos (Czechia)'),
(65935, 55586, 'no_lang_code', 'name', 'Inflex (Czechia)'),
(65936, 55587, 'no_lang_code', 'name', 'GeodƩzie Topos (Czechia)'),
(65937, 55588, 'no_lang_code', 'name', 'Geodézie ČS (Czechia)'),
(65938, 55589, 'no_lang_code', 'name', 'InfoScience (Czechia)'),
(65939, 55590, 'no_lang_code', 'name', 'GeodĆ©zie Ledeč nad SĆ”zavou (Czechia)'),
(65940, 55591, 'no_lang_code', 'name', 'Hemp Production (Czechia)'),
(65941, 55592, 'no_lang_code', 'name', 'Herbacos Recordati (Czechia)'),
(65942, 55593, 'no_lang_code', 'name', 'Hestego (Czechia)'),
(65943, 55594, 'no_lang_code', 'name', 'Hestia (Czechia)'),
(65944, 55595, 'no_lang_code', 'name', 'HET (Czechia)'),
(65945, 55596, 'no_lang_code', 'name', 'Synthomer (Czechia)'),
(65946, 55597, 'no_lang_code', 'name', 'HF-Czechforge (Czechia)'),
(65947, 55598, 'no_lang_code', 'name', 'Geodrill (Czechia)'),
(65948, 55599, 'no_lang_code', 'name', 'Hillex (Czechia)'),
(65949, 55600, 'no_lang_code', 'name', 'Geodyn (Czechia)'),
(65950, 55601, 'no_lang_code', 'name', 'GEOline (Czechia)'),
(65951, 55602, 'no_lang_code', 'name', 'Hit Hofman (Czechia)'),
(65952, 55603, 'no_lang_code', 'name', 'Geomin (Czechia)'),
(65953, 55604, 'no_lang_code', 'name', 'Inomech (Czechia)'),
(65954, 55605, 'no_lang_code', 'name', 'HOBAS (Czechia)'),
(65955, 55606, 'no_lang_code', 'name', 'Georadis (Czechia)'),
(65956, 55607, 'no_lang_code', 'name', 'Hobl & Pech (Czechia)'),
(65957, 55608, 'no_lang_code', 'name', 'DodƔvky Automatizace (Czechia)'),
(65958, 55609, 'no_lang_code', 'name', 'Hobra Å kolnĆ­k (Czechia)'),
(65959, 55610, 'no_lang_code', 'name', 'Hochtief (Czechia)'),
(65960, 55611, 'no_lang_code', 'name', 'Inpek (Czechia)'),
(65961, 55612, 'no_lang_code', 'name', 'HolĆ­k International (Czechia)'),
(65962, 55613, 'no_lang_code', 'name', 'Georeal (Czechia)'),
(65963, 55614, 'no_lang_code', 'name', 'Holzbecher (Czechia)'),
(65964, 55615, 'no_lang_code', 'name', 'Geostar (Czechia)'),
(65965, 55616, 'en', 'name', 'Czech Chamber of Commerce'),
(65966, 55616, 'cs', 'name', 'HospodÔřskĆ” komora ČeskĆ© republiky'),
(65967, 55617, 'no_lang_code', 'name', 'GeoTec GS (Czechia)'),
(65968, 55618, 'no_lang_code', 'name', 'Inset (Czechia)'),
(65969, 55619, 'cs', 'name', 'Geova'),
(65970, 55620, 'no_lang_code', 'name', 'Instar ITS (Czechia)'),
(65971, 55621, 'no_lang_code', 'name', 'Hostýnské Papírny (Czechia)'),
(65972, 55622, 'no_lang_code', 'name', 'Institute of Bohuslav MartinÅÆ (Czechia)'),
(65973, 55623, 'no_lang_code', 'name', 'Geovap (Czechia)'),
(65974, 55624, 'no_lang_code', 'name', 'Houfek (Czechia)'),
(65975, 55625, 'no_lang_code', 'name', 'Gepro (Czechia)'),
(65976, 55626, 'no_lang_code', 'name', 'Howden (Czechia)'),
(65977, 55627, 'no_lang_code', 'name', 'Institut Ocelových Konstrukcí (Czechia)'),
(65978, 55628, 'no_lang_code', 'name', 'GfK (Czechia)'),
(65979, 55629, 'no_lang_code', 'name', 'HST TechnoLogic (Czechia)'),
(65980, 55630, 'no_lang_code', 'name', 'GGC Energy (Czechia)'),
(65981, 55631, 'no_lang_code', 'name', 'Huddy Diamonds (Czechia)'),
(65982, 55632, 'no_lang_code', 'name', 'Cemvin (Czechia)'),
(65983, 55633, 'no_lang_code', 'name', 'Gist (Czechia)'),
(65984, 55634, 'no_lang_code', 'name', 'RybÔřstvĆ­ Třeboň (Czechia)'),
(65985, 55635, 'no_lang_code', 'name', 'Glass Atelier Morava (Czechia)'),
(65986, 55636, 'no_lang_code', 'name', 'Glass Service (Czechia)'),
(65987, 55637, 'en', 'name', 'Human Organ Project'),
(65988, 55638, 'cs', 'name', 'Institut plĆ”novĆ”nĆ­ a rozvoje hlavnĆ­ho města Prahy'),
(65989, 55638, 'en', 'name', 'Prague Institute of Planning and Development'),
(65990, 55639, 'no_lang_code', 'name', 'Glentor (Czechia)'),
(65991, 55640, 'no_lang_code', 'name', 'Hutní MontÔže (Czechia)'),
(65992, 55641, 'no_lang_code', 'name', 'GME (Czechia)'),
(65993, 55642, 'no_lang_code', 'name', 'Hutní Projekt Frýdek-Místek (Czechia)'),
(65994, 55643, 'en', 'name', 'Brno Observatory and Planetarium'),
(65995, 55643, 'cs', 'name', 'HvězdĆ”rna a planetĆ”rium Brno'),
(65996, 55644, 'no_lang_code', 'name', 'GNSS Centre of Excellence'),
(65997, 55645, 'no_lang_code', 'name', 'HydraulickĆ© Stroje A ZařízenĆ­ (Czechia)'),
(65998, 55646, 'cs', 'name', 'Institut pro testovƔnƭ a certifikaci'),
(65999, 55646, 'no_lang_code', 'name', 'Institute for Testing and Certification (Czechia)'),
(66000, 55647, 'no_lang_code', 'name', 'Hydroma (Czechia)'),
(66001, 55648, 'no_lang_code', 'name', 'GoodMills Česko'),
(66002, 55649, 'no_lang_code', 'name', 'Hydrosoft VeleslavĆ­n (Czechia)'),
(66003, 55650, 'no_lang_code', 'name', 'Hydrostatika (Czechia)'),
(66004, 55651, 'no_lang_code', 'name', 'Grade Medical (Czechia)'),
(66005, 55652, 'cs', 'name', 'Institut regionƔlnƭch informacƭ'),
(66006, 55652, 'en', 'name', 'Institute for Regional Information'),
(66007, 55653, 'no_lang_code', 'name', 'S&T (Czechia)'),
(66008, 55654, 'no_lang_code', 'name', 'Institut StrategickƩ Podpory (Czechia)'),
(66009, 55655, 'no_lang_code', 'name', 'Fosil Partner (Czechia)'),
(66010, 55656, 'cs', 'name', 'Domov pro Seniory ĎƔblice'),
(66011, 55657, 'no_lang_code', 'name', 'Ernst Leopold (Czechia)'),
(66012, 55658, 'no_lang_code', 'name', 'Ingredia (Czechia)'),
(66013, 55659, 'cs', 'name', 'Institut Evaluací a SociÔlních Analýz'),
(66014, 55659, 'en', 'name', 'Institute for Evaluation and Social Analyses'),
(66015, 55660, 'no_lang_code', 'name', 'Benteler (Czechia)'),
(66016, 55661, 'no_lang_code', 'name', 'DopravnĆ­ Podnik Města ČeskĆ© Budějovice'),
(66017, 55662, 'no_lang_code', 'name', 'Hytech (Czechia)'),
(66018, 55663, 'no_lang_code', 'name', 'ITA Intertact (Czechia)'),
(66019, 55664, 'no_lang_code', 'name', 'I2L Research (Czechia)'),
(66020, 55665, 'no_lang_code', 'name', 'ib1.cz (Czechia)'),
(66021, 55666, 'no_lang_code', 'name', 'IBM (Czechia)'),
(66022, 55667, 'no_lang_code', 'name', 'Institute of Applied Biotechnologies (Czechia)'),
(66023, 55668, 'no_lang_code', 'name', 'Green Solution (Czechia)'),
(66024, 55669, 'no_lang_code', 'name', 'Iconics (Czechia)'),
(66025, 55670, 'no_lang_code', 'name', 'GreyCortex (Czechia)'),
(66026, 55671, 'no_lang_code', 'name', 'GRYF (Czechia)'),
(66027, 55672, 'no_lang_code', 'name', 'ICT Unie'),
(66028, 55673, 'no_lang_code', 'name', 'ICZ (Czechia)'),
(66029, 55674, 'en', 'name', 'INstrategy'),
(66030, 55675, 'en', 'name', 'GS1 Czech Republic'),
(66031, 55676, 'no_lang_code', 'name', 'GSP (Czechia)'),
(66032, 55677, 'no_lang_code', 'name', 'INT-Informace a Technologie (Czechia)'),
(66033, 55678, 'no_lang_code', 'name', 'IDEA StatiCa (Czechia)'),
(66034, 55679, 'no_lang_code', 'name', 'Integrated Micro-Electronics (Czechia)'),
(66035, 55680, 'no_lang_code', 'name', 'Idea-Envi (Czechia)'),
(66036, 55681, 'no_lang_code', 'name', 'IntellMed (Czechia)'),
(66037, 55682, 'no_lang_code', 'name', 'Intemac Solutions (Czechia)'),
(66038, 55683, 'no_lang_code', 'name', 'Fresenius Kabi (Czechia)'),
(66039, 55684, 'no_lang_code', 'name', 'Deutsche Telekom (Czechia)'),
(66040, 55685, 'no_lang_code', 'name', 'Knorr-Bremse (Czechia)'),
(66041, 55686, 'no_lang_code', 'name', 'InterEco (Czechia)'),
(66042, 55687, 'no_lang_code', 'name', 'Iguassu Software Systems (Czechia)'),
(66043, 55688, 'no_lang_code', 'name', 'GTW Bearings (Czechia)'),
(66044, 55689, 'no_lang_code', 'name', 'Interfluid (Czechia)'),
(66045, 55690, 'no_lang_code', 'name', 'GumĆ”rny Zubří (Czechia)'),
(66046, 55691, 'no_lang_code', 'name', 'IKE (Slovakia)'),
(66047, 55692, 'no_lang_code', 'name', 'Gumotex (Czechia)'),
(66048, 55693, 'cs', 'name', 'GymnƔzium Jana Palacha'),
(66049, 55693, 'en', 'name', 'Jan Palach Private High School'),
(66050, 55694, 'no_lang_code', 'name', 'IKP Consulting Engineers (Czechia)'),
(66051, 55695, 'cs', 'name', 'GymnÔzium Žamberk'),
(66052, 55696, 'no_lang_code', 'name', 'Gypstrend (Czechia)'),
(66053, 55697, 'no_lang_code', 'name', 'IKT Advanced Technologies (Czechia)'),
(66054, 55698, 'no_lang_code', 'name', 'GZ Media (Czechia)'),
(66055, 55699, 'no_lang_code', 'name', 'ILD (Czechia)'),
(66056, 55700, 'no_lang_code', 'name', 'Ircon (Czechia)'),
(66057, 55701, 'no_lang_code', 'name', 'Ireks Enzyma (Czechia)'),
(66058, 55702, 'no_lang_code', 'name', 'INTOS (Czechia)'),
(66059, 55703, 'no_lang_code', 'name', 'Intriple (Czechia)'),
(66060, 55704, 'no_lang_code', 'name', 'Imatech (Czechia)'),
(66061, 55705, 'no_lang_code', 'name', 'Iscare I.V.F'),
(66062, 55705, 'cs', 'name', 'KlinickƩ Centrum ISCARE'),
(66063, 55706, 'no_lang_code', 'name', 'INTV (Czechia)'),
(66064, 55707, 'no_lang_code', 'name', 'Kaiser (Czechia)'),
(66065, 55708, 'no_lang_code', 'name', 'Invaz (Czechia)'),
(66066, 55709, 'no_lang_code', 'name', 'Institut pro SociÔlní a Ekonomické Analýzy'),
(66067, 55710, 'no_lang_code', 'name', 'Invelt Industry International (Czechia)'),
(66068, 55711, 'cs', 'name', 'ISES'),
(66069, 55712, 'no_lang_code', 'name', 'Kalma (Czechia)'),
(66070, 55713, 'no_lang_code', 'name', 'Ish Pumps Olomouc (Czechia)'),
(66071, 55714, 'no_lang_code', 'name', 'Km - KƔmen (Czechia)'),
(66072, 55715, 'no_lang_code', 'name', 'Isolit-Bravo (Czechia)'),
(66073, 55716, 'no_lang_code', 'name', 'Kapa ZlĆ­n (Czechia)'),
(66074, 55717, 'en', 'name', 'International Organization for Migration'),
(66075, 55717, 'cs', 'name', 'MezinƔrodnƭ organizace pro migraci'),
(66076, 55718, 'no_lang_code', 'name', 'Isotra (Czechia)'),
(66077, 55719, 'no_lang_code', 'name', 'IHI Corporation (Czechia)'),
(66078, 55720, 'no_lang_code', 'name', 'Issa Czech (Czechia)'),
(66079, 55721, 'no_lang_code', 'name', 'Kapsch (Czechia)'),
(66080, 55722, 'no_lang_code', 'name', 'ITA (Czechia)'),
(66081, 55723, 'no_lang_code', 'name', 'IQ Structures (Czechia)'),
(66082, 55724, 'no_lang_code', 'name', 'ITAB'),
(66083, 55725, 'no_lang_code', 'name', 'Karel ŘehÔk (Czechia)'),
(66084, 55726, 'cs', 'name', 'Institut pro Udržitelný Rozvoj Sídel'),
(66085, 55726, 'en', 'name', 'Institute for Sustainable Development of Settlements'),
(66086, 55727, 'no_lang_code', 'name', 'IQLANDIA'),
(66087, 55728, 'no_lang_code', 'name', 'IVAR (Czechia)'),
(66088, 55729, 'cs', 'name', 'KarlovarskĆ” KrajskĆ” Nemocnice'),
(66089, 55730, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Czechia)'),
(66090, 55731, 'no_lang_code', 'name', 'Irbis (Czechia)'),
(66091, 55732, 'no_lang_code', 'name', 'CNH Industrial (Czechia)'),
(66092, 55733, 'cs', 'name', 'Muzeum Karlovy Vary'),
(66093, 55734, 'no_lang_code', 'name', 'IVEP (Czechia)'),
(66094, 55735, 'no_lang_code', 'name', 'Ivitas (Czechia)'),
(66095, 55736, 'no_lang_code', 'name', 'Thun 1794 (Czechia)'),
(66096, 55737, 'no_lang_code', 'name', 'KSK Precise Motion (Czechia)'),
(66097, 55738, 'no_lang_code', 'name', 'IVV Engineering (Czechia)'),
(66098, 55739, 'no_lang_code', 'name', 'Karned Tools (Czechia)'),
(66099, 55740, 'no_lang_code', 'name', 'Kaspe (Czechia)'),
(66100, 55741, 'no_lang_code', 'name', 'Kunst (Czechia)'),
(66101, 55742, 'no_lang_code', 'name', 'J-VST (Czechia)'),
(66102, 55743, 'no_lang_code', 'name', 'KB - Blok (Czechia)'),
(66103, 55744, 'no_lang_code', 'name', 'Kvados (Czechia)'),
(66104, 55745, 'no_lang_code', 'name', 'J. Jindra (Czechia)'),
(66105, 55746, 'no_lang_code', 'name', 'KVS Ekodivize (Czechia)'),
(66106, 55747, 'no_lang_code', 'name', 'Koenig & Bauer (Czechia)'),
(66107, 55748, 'no_lang_code', 'name', 'L.E.T. Optomechanika (Czechia)'),
(66108, 55749, 'no_lang_code', 'name', 'JabloneckƔ NƔstrojƔrna (Czechia)'),
(66109, 55750, 'no_lang_code', 'name', 'L.K. Engineering (Czechia)'),
(66110, 55751, 'no_lang_code', 'name', 'Kell (Czechia)'),
(66111, 55752, 'no_lang_code', 'name', 'LabMediaServis (Czechia)'),
(66112, 55753, 'no_lang_code', 'name', 'Kemwater ProChemie (Czechia)'),
(66113, 55754, 'no_lang_code', 'name', 'Keramost (Czechia)'),
(66114, 55755, 'no_lang_code', 'name', 'Keramtech (Czechia)'),
(66115, 55756, 'no_lang_code', 'name', 'Kerima (Czechia)'),
(66116, 55757, 'no_lang_code', 'name', 'Kessl (Czechia)'),
(66117, 55758, 'no_lang_code', 'name', 'KHSanace (Czechia)'),
(66118, 55759, 'no_lang_code', 'name', 'Laboratory Imaging (Czechia)'),
(66119, 55760, 'en', 'name', 'Carbon Cycle and Ecosystems'),
(66120, 55761, 'no_lang_code', 'name', 'Labrys'),
(66121, 55762, 'no_lang_code', 'name', 'Kitl (Czechia)'),
(66122, 55763, 'cs', 'name', 'KlasickĆ© a Å”panělskĆ© GymnĆ”zium, Brno-Bystrc'),
(66123, 55764, 'cs', 'name', 'Labyrint'),
(66124, 55765, 'cs', 'name', 'KlÔŔter ChotěŔov'),
(66125, 55766, 'no_lang_code', 'name', 'LAC (Czechia)'),
(66126, 55767, 'no_lang_code', 'name', 'KlatovskĆ© RybÔřstvĆ­ (Czechia)'),
(66127, 55768, 'no_lang_code', 'name', 'KM Beta (Czechia)'),
(66128, 55769, 'no_lang_code', 'name', 'KMC Group (Czechia)'),
(66129, 55770, 'no_lang_code', 'name', 'Lach-Ner (Czechia)'),
(66130, 55771, 'no_lang_code', 'name', 'Jakape (Czechia)'),
(66131, 55772, 'no_lang_code', 'name', 'Lacrum VelkĆ© MeziÅ™Ć­ÄĆ­ (Czechia)'),
(66132, 55773, 'no_lang_code', 'name', 'Knauf (Czechia)'),
(66133, 55774, 'no_lang_code', 'name', 'Knitva (Czechia)'),
(66134, 55775, 'no_lang_code', 'name', 'KNZ (Czechia)'),
(66135, 55776, 'no_lang_code', 'name', 'Lammb Systems (Czechia)'),
(66136, 55777, 'no_lang_code', 'name', 'Kobra Údlice (Czechia)'),
(66137, 55778, 'no_lang_code', 'name', 'Sincon (Czechia)'),
(66138, 55779, 'no_lang_code', 'name', 'Lanex (Czechia)'),
(66139, 55780, 'no_lang_code', 'name', 'Koh-I-Noor (Czechia)'),
(66140, 55781, 'no_lang_code', 'name', 'LAO - Průmyslové Systémy (Czechia)'),
(66141, 55782, 'no_lang_code', 'name', 'JaP Jacina (Czechia)'),
(66142, 55783, 'no_lang_code', 'name', 'Laser-Tech (Czechia)'),
(66143, 55784, 'no_lang_code', 'name', 'Kolejconsult & Servis (Czechia)'),
(66144, 55785, 'no_lang_code', 'name', 'LaserTherm (Czechia)'),
(66145, 55786, 'no_lang_code', 'name', 'Lasvit (Czechia)'),
(66146, 55787, 'no_lang_code', 'name', 'Koma (Czechia)'),
(66147, 55788, 'no_lang_code', 'name', 'Lavaris (Czechia)'),
(66148, 55789, 'cs', 'name', 'LĆ”zně Poděbrady (Czechia)'),
(66149, 55790, 'no_lang_code', 'name', 'Masoma (Czechia)'),
(66150, 55791, 'no_lang_code', 'name', 'KomerčnĆ­ ŽelezničnĆ­ Výzkum (Czechia)'),
(66151, 55792, 'no_lang_code', 'name', 'Lec (Czechia)'),
(66152, 55793, 'no_lang_code', 'name', 'Komfort (Czechia)'),
(66153, 55794, 'cs', 'name', 'JazykovědnĆ© SdruženĆ­ ČeskĆ© Republiky'),
(66154, 55795, 'no_lang_code', 'name', 'jCyte (United States)'),
(66155, 55796, 'no_lang_code', 'name', 'Komix (Czechia)'),
(66156, 55797, 'no_lang_code', 'name', 'Komutex (Czechia)'),
(66157, 55798, 'no_lang_code', 'name', 'Lena Chemical (Czechia)'),
(66158, 55799, 'no_lang_code', 'name', 'Koneko (Czechia)'),
(66159, 55800, 'cs', 'name', 'Jednota HudebnĆ­ho Divadla'),
(66160, 55801, 'no_lang_code', 'name', 'Jeku (Czechia)'),
(66161, 55802, 'no_lang_code', 'name', 'LentiKat''s (Czechia)'),
(66162, 55803, 'no_lang_code', 'name', 'KonekTel (Czechia)'),
(66163, 55804, 'no_lang_code', 'name', 'Kontron (Czechia)'),
(66164, 55805, 'no_lang_code', 'name', 'Jet Company (Czechia)'),
(66165, 55806, 'no_lang_code', 'name', 'JHV Engineering'),
(66166, 55807, 'no_lang_code', 'name', 'Lescus Cetkovice (Czechia)'),
(66167, 55808, 'no_lang_code', 'name', 'LesoŔkolky (Czechia)'),
(66168, 55809, 'cs', 'name', 'JIC'),
(66169, 55810, 'cs', 'name', 'JihočeskĆ” agentura pro podporu inovačnĆ­ho podnikĆ”nĆ­ o.p.s'),
(66170, 55810, 'en', 'name', 'South Bohemian Agency for Support to Innovative Enterprising'),
(66171, 55811, 'no_lang_code', 'name', 'Lesprojekt Východní Čechy (Czechia)'),
(66172, 55812, 'cs', 'name', 'KoordinačnĆ­ Středisko pro ResortnĆ­ ZdravotnickĆ© InformačnĆ­ SystĆ©my'),
(66173, 55813, 'cs', 'name', 'Lesy JƔchymov'),
(66174, 55814, 'de', 'name', 'Grundinformationen über Südböhmische Wirtschaftskammer'),
(66175, 55814, 'cs', 'name', 'JihočeskĆ” hospodÔřskĆ” komora'),
(66176, 55814, 'en', 'name', 'South Bohemian Chamber of Commerce'),
(66177, 55815, 'no_lang_code', 'name', 'Heidenhain (Slovakia)'),
(66178, 55816, 'en', 'name', 'Forests of the Town of Jirkov'),
(66179, 55816, 'cs', 'name', 'Lesy Města Jirkova'),
(66180, 55817, 'cs', 'name', 'JihočeskĆ© Muzeum v Českých BudějovicĆ­ch'),
(66181, 55818, 'no_lang_code', 'name', 'Lets Fly (Czechia)'),
(66182, 55819, 'no_lang_code', 'name', 'Kornet (Czechia)'),
(66183, 55820, 'cs', 'name', 'LetiÅ”tě Ostrava'),
(66184, 55820, 'no_lang_code', 'name', 'Ostrava Airport (Czechia)'),
(66185, 55821, 'no_lang_code', 'name', 'Jimi (Czechia)'),
(66186, 55822, 'no_lang_code', 'name', 'LetiÅ”tě Vodochody (Czechia)'),
(66187, 55822, 'en', 'name', 'Vodochody Airport'),
(66188, 55823, 'no_lang_code', 'name', 'Korund BenƔtky (Czechia)'),
(66189, 55824, 'no_lang_code', 'name', 'Jinpo Plus (Czechia)'),
(66190, 55825, 'no_lang_code', 'name', 'Kotouč Štramberk (Czechia)'),
(66191, 55826, 'no_lang_code', 'name', 'Kotrbatý (Czechia)'),
(66192, 55827, 'no_lang_code', 'name', 'Koutný (Czechia)'),
(66193, 55828, 'no_lang_code', 'name', 'JizerskƩ PekƔrny (Czechia)'),
(66194, 55829, 'no_lang_code', 'name', 'Kovo Novak (Czechia)'),
(66195, 55830, 'no_lang_code', 'name', 'JK envi (Czechia)'),
(66196, 55831, 'no_lang_code', 'name', 'Kovolis Hedvikov (Czechia)'),
(66197, 55832, 'cs', 'name', 'LiberƔlnƭ institut'),
(66198, 55833, 'no_lang_code', 'name', 'Kovolit (Czechia)'),
(66199, 55834, 'no_lang_code', 'name', 'Johnson Controls (Czechia)'),
(66200, 55835, 'no_lang_code', 'name', 'Josa (Czechia)'),
(66201, 55836, 'no_lang_code', 'name', 'Koyo Bearings (Czechia)'),
(66202, 55837, 'no_lang_code', 'name', 'LibereckƩ KotlƔrny Hƶlter (Czechia)'),
(66203, 55838, 'no_lang_code', 'name', 'LibereckƩ Strojƭrny (Czechia)'),
(66204, 55839, 'no_lang_code', 'name', 'KP Projekt (Czechia)'),
(66205, 55840, 'no_lang_code', 'name', 'Licolor (Czechia)'),
(66206, 55841, 'no_lang_code', 'name', 'KR Důlní služby (Czechia)'),
(66207, 55842, 'no_lang_code', 'name', 'Licon Heat (Czechia)'),
(66208, 55843, 'cs', 'name', 'KrajskĆ” HygienickĆ” Stanice Olomouci'),
(66209, 55844, 'cs', 'name', 'KrajskĆ” nemocnice T. Bati'),
(66210, 55845, 'no_lang_code', 'name', 'Lifetech (Czechia)'),
(66211, 55846, 'cs', 'name', 'Sokolov Muzeum'),
(66212, 55847, 'no_lang_code', 'name', 'Lift Servis (Czechia)'),
(66213, 55848, 'no_lang_code', 'name', 'JV Projekt (Czechia)'),
(66214, 55849, 'no_lang_code', 'name', 'LightGate (Czechia)'),
(66215, 55850, 'cs', 'name', 'Strahov Monastery'),
(66216, 55851, 'no_lang_code', 'name', 'KrampeHarex (Czechia)'),
(66217, 55852, 'no_lang_code', 'name', 'Krill (Czechia)'),
(66218, 55853, 'no_lang_code', 'name', 'Central European Media Enterprises (Czechia)'),
(66219, 55854, 'no_lang_code', 'name', 'Kappa-P (Czechia)'),
(66220, 55855, 'no_lang_code', 'name', 'KMB systems (Czechia)'),
(66221, 55856, 'no_lang_code', 'name', 'K Profi (Czechia)'),
(66222, 55857, 'cs', 'name', 'Kristina Colloredo-MansfeldovĆ”'),
(66223, 55858, 'no_lang_code', 'name', 'Ligranit (Czechia)'),
(66224, 55859, 'no_lang_code', 'name', 'KBK fire (Czechia)'),
(66225, 55860, 'no_lang_code', 'name', 'K and K Technology (Czechia)'),
(66226, 55861, 'cs', 'name', 'KrkonoŔskÔ Realitní'),
(66227, 55862, 'no_lang_code', 'name', 'K2pharm (Czechia)'),
(66228, 55863, 'no_lang_code', 'name', 'Kromilk (Czechia)'),
(66229, 55864, 'no_lang_code', 'name', 'Kabelovna Kabex (Czechia)'),
(66230, 55865, 'no_lang_code', 'name', 'Lihovar Lžín (Czechia)'),
(66231, 55866, 'no_lang_code', 'name', 'Slovacke Strojirny (Czechia)'),
(66232, 55867, 'no_lang_code', 'name', 'Kaipan (Czechia)'),
(66233, 55868, 'no_lang_code', 'name', 'KÅ  Prefa (Czechia)'),
(66234, 55869, 'no_lang_code', 'name', 'Limagrain (Czechia)'),
(66235, 55870, 'no_lang_code', 'name', 'Lime Business Consulting (Czechia)'),
(66236, 55871, 'no_lang_code', 'name', 'KSM Castings (Czechia)'),
(66237, 55872, 'no_lang_code', 'name', 'Lineq (Czechia)'),
(66238, 55873, 'no_lang_code', 'name', 'Lingea (Czechia)'),
(66239, 55874, 'no_lang_code', 'name', 'Metra Blansko (Czechia)'),
(66240, 55875, 'no_lang_code', 'name', 'Lintech (Czechia)'),
(66241, 55876, 'no_lang_code', 'name', 'Lisi Automotive Form (Czechia)'),
(66242, 55877, 'no_lang_code', 'name', 'Lyckeby Amylex (Czechia)'),
(66243, 55878, 'no_lang_code', 'name', 'Metroprojekt Praha (Czechia)'),
(66244, 55879, 'no_lang_code', 'name', 'Logis (Czechia)'),
(66245, 55880, 'no_lang_code', 'name', 'LogopedickĆ” společnost MiloÅ”e SovĆ”ka (Czechia)'),
(66246, 55881, 'no_lang_code', 'name', 'M Silnice (Czechia)'),
(66247, 55882, 'no_lang_code', 'name', 'Metrostav (Czechia)'),
(66248, 55883, 'no_lang_code', 'name', 'BrainScope (Czechia)'),
(66249, 55884, 'no_lang_code', 'name', 'Lovochemie (Czechia)'),
(66250, 55885, 'no_lang_code', 'name', 'Elvia (Czechia)'),
(66251, 55886, 'no_lang_code', 'name', 'MEZ (Czechia)'),
(66252, 55887, 'no_lang_code', 'name', 'Mavel (Czechia)'),
(66253, 55888, 'cs', 'name', 'MezinÔrodní TestovÔní Drůbeže'),
(66254, 55889, 'no_lang_code', 'name', 'MGE Data (Czechia)'),
(66255, 55890, 'no_lang_code', 'name', 'MIA Studio (Czechia)'),
(66256, 55891, 'no_lang_code', 'name', 'Mefi (Czechia)'),
(66257, 55892, 'no_lang_code', 'name', 'MICo (Czechia)'),
(66258, 55893, 'en', 'name', 'Museum of the Bohemian Paradise in Turnov'),
(66259, 55893, 'cs', 'name', 'Muzeum ČeskĆ©ho rĆ”je v Turnově'),
(66260, 55894, 'no_lang_code', 'name', 'M line (Czechia)'),
(66261, 55895, 'no_lang_code', 'name', 'Micos (Czechia)'),
(66262, 55896, 'cs', 'name', 'Muzeum Cheb'),
(66263, 55897, 'no_lang_code', 'name', 'Mikroelektronika (Czechia)'),
(66264, 55898, 'no_lang_code', 'name', 'Mikroklima (Czechia)'),
(66265, 55899, 'cs', 'name', 'Muzeum Jana Amose KomenskƩho'),
(66266, 55900, 'cs', 'name', 'Muzeum jihovýchodnĆ­ Moravy ve ZlĆ­ně'),
(66267, 55901, 'no_lang_code', 'name', 'Mikrop Čebín (Czechia)'),
(66268, 55902, 'no_lang_code', 'name', 'Madeta (Czechia)'),
(66269, 55903, 'cs', 'name', 'Museum of Kroměříž'),
(66270, 55904, 'no_lang_code', 'name', 'Mikrotechna Praha (Czechia)'),
(66271, 55905, 'no_lang_code', 'name', 'MaDeX (Czechia)'),
(66272, 55906, 'en', 'name', 'Museum of the City of Usti nad Labem'),
(66273, 55907, 'cs', 'name', 'Muzeum Novojičƭnska'),
(66274, 55908, 'no_lang_code', 'name', 'Mvb Opava (Czechia)'),
(66275, 55909, 'no_lang_code', 'name', 'Magna Exteriors (Czechia)'),
(66276, 55910, 'no_lang_code', 'name', 'Milcom Servis (Czechia)'),
(66277, 55911, 'no_lang_code', 'name', 'Mvvs (Czechia)'),
(66278, 55912, 'no_lang_code', 'name', 'Malina Safety (Czechia)'),
(66279, 55913, 'no_lang_code', 'name', 'Mycroft Mind (Czechia)'),
(66280, 55914, 'no_lang_code', 'name', 'MydlÔřka (Czechia)'),
(66281, 55915, 'no_lang_code', 'name', 'Malus (Czechia)'),
(66282, 55916, 'no_lang_code', 'name', 'MZ Liberec (Czechia)'),
(66283, 55917, 'no_lang_code', 'name', 'MAP Systems (Czechia)'),
(66284, 55918, 'no_lang_code', 'name', 'Foundation of the Baroque Theater in Český Krumlov'),
(66285, 55918, 'cs', 'name', 'Nadace barokního divadla zÔmku Český Krumlov'),
(66286, 55919, 'no_lang_code', 'name', 'Minerva Boskovice (Czechia)'),
(66287, 55920, 'no_lang_code', 'name', 'MARAT Engineering (Czechia)'),
(66288, 55921, 'no_lang_code', 'name', 'Markent (Czechia)'),
(66289, 55922, 'no_lang_code', 'name', 'Marshal Logistic (Czechia)'),
(66290, 55923, 'cs', 'name', 'Bohuslav Martinu Foundation'),
(66291, 55924, 'no_lang_code', 'name', 'MP KrƔsno (Czechia)'),
(66292, 55925, 'no_lang_code', 'name', 'Minova Bohemia (Czechia)'),
(66293, 55926, 'no_lang_code', 'name', 'Materialise (Czechia)'),
(66294, 55927, 'cs', 'name', 'LeoÅ” JanĆ”Äek Foundation'),
(66295, 55928, 'cs', 'name', 'MAS DolnĆ­ Morava'),
(66296, 55929, 'cs', 'name', 'MÅ  Na Smetance'),
(66297, 55930, 'cs', 'name', 'MateřskĆ” Å”kolka SokolovskĆ”'),
(66298, 55931, 'no_lang_code', 'name', 'Mitas (Czechia)'),
(66299, 55932, 'en', 'name', 'Czech Environmental Partnership Foundation'),
(66300, 55932, 'cs', 'name', 'Nadace PartnerstvĆ­'),
(66301, 55933, 'no_lang_code', 'name', 'Matex PM (Czechia)'),
(66302, 55934, 'no_lang_code', 'name', 'MJM Litovel (Czechia)'),
(66303, 55935, 'no_lang_code', 'name', 'Mavet (Czechia)'),
(66304, 55936, 'cs', 'name', 'Nadace pro rozvoj architektury a stavitelstvĆ­'),
(66305, 55937, 'cs', 'name', 'OleŔnice Dairy'),
(66306, 55938, 'no_lang_code', 'name', 'Nadop-výroba NÔbytku (Czechia)'),
(66307, 55939, 'no_lang_code', 'name', 'MB Pharma (Czechia)'),
(66308, 55940, 'no_lang_code', 'name', 'MND Drilling & Services (Czechia)'),
(66309, 55941, 'no_lang_code', 'name', 'Mc Velox (Czechia)'),
(66310, 55942, 'no_lang_code', 'name', 'Nafigate Corporation (Czechia)'),
(66311, 55943, 'no_lang_code', 'name', 'Modeco (Czechia)'),
(66312, 55944, 'no_lang_code', 'name', 'MEAS Prog (Czechia)'),
(66313, 55945, 'no_lang_code', 'name', 'Mechanical Design (Czechia)'),
(66314, 55946, 'no_lang_code', 'name', 'PlastovƩ Stavebnƭ (Czechia)'),
(66315, 55947, 'no_lang_code', 'name', 'Měď Povrly (Czechia)'),
(66316, 55948, 'no_lang_code', 'name', 'Medetron (Czechia)'),
(66317, 55949, 'no_lang_code', 'name', 'ModemTec (Czechia)'),
(66318, 55950, 'no_lang_code', 'name', 'Fraus Publishing (Czechia)'),
(66319, 55950, 'cs', 'name', 'NakladatelstvĆ­ Fraus'),
(66320, 55951, 'no_lang_code', 'name', 'Modřany Power (Czechia)'),
(66321, 55952, 'no_lang_code', 'name', 'Nakladatelstvƭ TriƔda (Czechia)'),
(66322, 55953, 'no_lang_code', 'name', 'NAM System (Czechia)'),
(66323, 55954, 'no_lang_code', 'name', 'ModularTest (Czechia)'),
(66324, 55955, 'no_lang_code', 'name', 'NanoTrade (Czechia)'),
(66325, 55956, 'no_lang_code', 'name', 'Median (Czechia)'),
(66326, 55957, 'no_lang_code', 'name', 'Mediap (Czechia)'),
(66327, 55958, 'no_lang_code', 'name', 'Medicalc Software (Czechia)'),
(66328, 55959, 'cs', 'name', 'Medico'),
(66329, 55960, 'no_lang_code', 'name', 'MediCom (Czechia)'),
(66330, 55961, 'no_lang_code', 'name', 'Molaris (Czechia)'),
(66331, 55962, 'no_lang_code', 'name', 'Medicprogress (Czechia)'),
(66332, 55963, 'no_lang_code', 'name', 'Nanovia (Czechia)'),
(66333, 55964, 'no_lang_code', 'name', 'Narex Sat (Czechia)'),
(66334, 55965, 'no_lang_code', 'name', 'Medicton (Czechia)'),
(66335, 55966, 'no_lang_code', 'name', 'Laboratoř Monitoring Praha (Czechia)'),
(66336, 55967, 'no_lang_code', 'name', 'Mood International (Czechia)'),
(66337, 55968, 'cs', 'name', 'NƔrodnƭ Akademie RegionƔlnƭho Managementu'),
(66338, 55969, 'no_lang_code', 'name', 'Moraprim (Czechia)'),
(66339, 55970, 'no_lang_code', 'name', 'MediGEN'),
(66340, 55971, 'cs', 'name', 'National Stud at Kladruby nad Labem'),
(66341, 55972, 'cs', 'name', 'NÔrodní Rada Osob se Zdravotním Postižením'),
(66342, 55973, 'no_lang_code', 'name', 'Medihope (Czechia)'),
(66343, 55974, 'no_lang_code', 'name', 'Moravia Cans (Czechia)'),
(66344, 55975, 'no_lang_code', 'name', 'Interlacto (Czechia)'),
(66345, 55976, 'no_lang_code', 'name', 'Moravoseed (Czechia)'),
(66346, 55977, 'no_lang_code', 'name', 'MeDiLa'),
(66347, 55978, 'cs', 'name', 'NĆ”rodnĆ­ ReferenčnĆ­ Centrum'),
(66348, 55979, 'en', 'name', 'National Network of Healthy Cities'),
(66349, 55979, 'cs', 'name', 'NĆ”rodnĆ­ SĆ­Å„ Zdravých Měst'),
(66350, 55980, 'no_lang_code', 'name', 'Mediware (Czechia)'),
(66351, 55981, 'cs', 'name', 'NÔrodní Ústav Lidové Kultury'),
(66352, 55982, 'en', 'name', 'EUC Group'),
(66353, 55983, 'no_lang_code', 'name', 'Medkonsult (Czechia)'),
(66354, 55984, 'no_lang_code', 'name', 'Native PR (Czechia)'),
(66355, 55985, 'no_lang_code', 'name', 'Agrana (Czechia)'),
(66356, 55986, 'no_lang_code', 'name', 'Natura (Czechia)'),
(66357, 55987, 'no_lang_code', 'name', 'Megat (Czechia)'),
(66358, 55988, 'no_lang_code', 'name', 'Moravian-Silesian Energy Cluster (Czechia)'),
(66359, 55989, 'no_lang_code', 'name', 'Natural (Czechia)'),
(66360, 55990, 'no_lang_code', 'name', 'NaturaServis (Czechia)'),
(66361, 55991, 'no_lang_code', 'name', 'More (Czechia)'),
(66362, 55992, 'no_lang_code', 'name', 'NAUPO (Czechia)'),
(66363, 55993, 'no_lang_code', 'name', 'NAV Flight Services (Czechia)'),
(66364, 55994, 'no_lang_code', 'name', 'Mosaic Event Management (United States)'),
(66365, 55995, 'no_lang_code', 'name', 'Mepatek (Czechia)'),
(66366, 55996, 'no_lang_code', 'name', 'Navertica (Czechia)'),
(66367, 55997, 'no_lang_code', 'name', 'NELAN (Czechia)'),
(66368, 55998, 'no_lang_code', 'name', 'Moser (Czechia)'),
(66369, 55999, 'no_lang_code', 'name', 'Merci (Czechia)'),
(66370, 56000, 'no_lang_code', 'name', 'SCIA (Czechia)'),
(66371, 56001, 'no_lang_code', 'name', 'Merica (Czechia)'),
(66372, 56002, 'cs', 'name', 'Nemocnice Atlas'),
(66373, 56003, 'en', 'name', 'Blansko Hospital'),
(66374, 56003, 'cs', 'name', 'Nemocnice Blansko'),
(66375, 56004, 'no_lang_code', 'name', 'FGR Factory (Czechia)'),
(66376, 56005, 'cs', 'name', 'Nemocnice Břeclav'),
(66377, 56006, 'no_lang_code', 'name', 'Merko'),
(66378, 56007, 'no_lang_code', 'name', 'Motor Jikov (Czechia)'),
(66379, 56008, 'no_lang_code', 'name', 'Motorpal (Czechia)'),
(66380, 56009, 'en', 'name', 'HavlƭčkÅÆv Brod Hospital'),
(66381, 56009, 'cs', 'name', 'Nemocnice HavlƭčkÅÆv Brod'),
(66382, 56010, 'no_lang_code', 'name', 'Motran Research (Czechia)'),
(66383, 56011, 'no_lang_code', 'name', 'Merkurtoys (Czechia)'),
(66384, 56012, 'cs', 'name', 'Nemocnice Jablonec nad Nisou'),
(66385, 56013, 'no_lang_code', 'name', 'Mero Čr (Czechia)'),
(66386, 56014, 'no_lang_code', 'name', 'MPD Plus (Czechia)'),
(66387, 56015, 'cs', 'name', 'OblastnĆ­ nemocnice Kladno'),
(66388, 56016, 'no_lang_code', 'name', 'MPower (Czechia)'),
(66389, 56017, 'no_lang_code', 'name', 'MrƔz Agro (Czechia)'),
(66390, 56018, 'cs', 'name', 'Nemocnice Milosrdných bratří'),
(66391, 56019, 'no_lang_code', 'name', 'MRB Sazovice (Czechia)'),
(66392, 56020, 'en', 'name', 'Church of the Merciful Sisters of Sts. Karel Boromejský'),
(66393, 56021, 'cs', 'name', 'MěstskĆ” Nemocnice ČÔslav'),
(66394, 56022, 'cs', 'name', 'Nemocnice Na PleŔi'),
(66395, 56023, 'no_lang_code', 'name', 'MSA (Czechia)'),
(66396, 56024, 'cs', 'name', 'MěstskĆ” Nemocnice Ostrava'),
(66397, 56025, 'no_lang_code', 'name', 'MSV Metal StudƩnka (Czechia)'),
(66398, 56026, 'cs', 'name', 'Nemocnice Prachatice'),
(66399, 56027, 'no_lang_code', 'name', 'MTMP (Czechia)'),
(66400, 56028, 'cs', 'name', 'MěstskĆ© lesy Chomutov'),
(66401, 56029, 'cs', 'name', 'MěstskĆ© lesy Doksy'),
(66402, 56030, 'no_lang_code', 'name', 'Murus (Czechia)'),
(66403, 56031, 'cs', 'name', 'Nemocnice Sokolov'),
(66404, 56032, 'cs', 'name', 'MěstskĆ© lesy Hradec KrĆ”lovĆ©'),
(66405, 56033, 'en', 'name', 'Municipal Museum in Celakovice'),
(66406, 56033, 'cs', 'name', 'MěstskĆ© muzeum v ČelĆ”kovicĆ­ch'),
(66407, 56034, 'cs', 'name', 'Nemocnice Třebƭč'),
(66408, 56035, 'cs', 'name', 'Nemocnice u Sv. Jiří'),
(66409, 56036, 'cs', 'name', 'Nemocnice VyŔkov'),
(66410, 56037, 'no_lang_code', 'name', 'Nicolet (Czechia)'),
(66411, 56038, 'cs', 'name', 'Nemocnice Znojmo'),
(66412, 56039, 'no_lang_code', 'name', 'Nakladatelstvƭ LidovƩ Noviny (Czechia)'),
(66413, 56040, 'no_lang_code', 'name', 'NMS Market Research (Czechia)'),
(66414, 56041, 'no_lang_code', 'name', 'Ness Technologies'),
(66415, 56042, 'no_lang_code', 'name', 'Nodus (Norway)'),
(66416, 56043, 'no_lang_code', 'name', 'CTS Corporation (Czechia)'),
(66417, 56044, 'no_lang_code', 'name', 'Net-system'),
(66418, 56045, 'no_lang_code', 'name', 'Nortech (Czechia)'),
(66419, 56046, 'no_lang_code', 'name', 'Net4gas (Czechia)'),
(66420, 56047, 'no_lang_code', 'name', 'Netcope Technologies (Czechia)'),
(66421, 56048, 'no_lang_code', 'name', 'Nethost (Czechia)'),
(66422, 56049, 'no_lang_code', 'name', 'Network Group (Czechia)'),
(66423, 56050, 'no_lang_code', 'name', 'New Gen (Czechia)'),
(66424, 56051, 'no_lang_code', 'name', 'Newton Media (Czechia)'),
(66425, 56052, 'no_lang_code', 'name', 'OstravskĆ© MěstskĆ© Lesy a Zeleň (Czechia)'),
(66426, 56053, 'no_lang_code', 'name', 'Ostroj (Czechia)'),
(66427, 56054, 'no_lang_code', 'name', 'Newton Technologies (Czechia)'),
(66428, 56055, 'no_lang_code', 'name', 'Valbek (Czechia)'),
(66429, 56056, 'no_lang_code', 'name', 'Osvětlenƭ Černoch (Czechia)'),
(66430, 56057, 'no_lang_code', 'name', 'Novatisk (Czechia)'),
(66431, 56058, 'no_lang_code', 'name', 'Obchodnƭ TiskƔrny Kolƭn'),
(66432, 56059, 'no_lang_code', 'name', 'Noventis (Czechia)'),
(66433, 56060, 'no_lang_code', 'name', 'Nexum Trilog (Czechia)'),
(66434, 56061, 'no_lang_code', 'name', 'Noza (Czechia)'),
(66435, 56062, 'no_lang_code', 'name', 'Ovus (Czechia)'),
(66436, 56063, 'no_lang_code', 'name', 'NTD Group (Czechia)'),
(66437, 56064, 'no_lang_code', 'name', 'OZM Research (Czechia)'),
(66438, 56065, 'no_lang_code', 'name', 'NutriVet (Czechia)'),
(66439, 56066, 'no_lang_code', 'name', 'PolabskƩ MlƩkƔrny (Czechia)'),
(66440, 56067, 'no_lang_code', 'name', 'Nuvia (Czechia)'),
(66441, 56068, 'no_lang_code', 'name', 'P and L (Czechia)'),
(66442, 56069, 'no_lang_code', 'name', 'NWT (Czechia)'),
(66443, 56070, 'no_lang_code', 'name', 'P and S (Czechia)'),
(66444, 56071, 'no_lang_code', 'name', 'Nyklƭček (Czechia)'),
(66445, 56072, 'no_lang_code', 'name', 'Pardam (Czechia)'),
(66446, 56073, 'cs', 'name', 'PolabskƩ Muzeum'),
(66447, 56074, 'cs', 'name', 'Poliklinika BudějovickĆ”'),
(66448, 56075, 'no_lang_code', 'name', 'O.K. Servis Plus (Czechia)'),
(66449, 56076, 'no_lang_code', 'name', 'Poll (Czechia)'),
(66450, 56077, 'no_lang_code', 'name', 'PPF (Czechia)'),
(66451, 56078, 'no_lang_code', 'name', 'Polpur (Czechia)'),
(66452, 56079, 'no_lang_code', 'name', 'Polycase (Czechia)'),
(66453, 56080, 'no_lang_code', 'name', 'Polycom (Czechia)'),
(66454, 56081, 'no_lang_code', 'name', 'Palivový KombinÔt Ústí (Czechia)'),
(66455, 56082, 'no_lang_code', 'name', 'Polyos (Czechia)'),
(66456, 56083, 'cs', 'name', 'ObchodnĆ­ Akademie'),
(66457, 56084, 'no_lang_code', 'name', 'Polypress (Czechia)'),
(66458, 56085, 'no_lang_code', 'name', 'Panasonic (Czechia)'),
(66459, 56086, 'no_lang_code', 'name', 'Ponast (Czechia)'),
(66460, 56087, 'en', 'name', 'Regional Art Gallery Liberec'),
(66461, 56088, 'no_lang_code', 'name', 'Papouch (Czechia)'),
(66462, 56089, 'cs', 'name', 'Vysočina Regional Gallery in Jihlava'),
(66463, 56090, 'cs', 'name', 'Oblastnƭ muzeum v Chomutově'),
(66464, 56091, 'no_lang_code', 'name', 'Paramo (Czechia)'),
(66465, 56092, 'cs', 'name', 'OblastnĆ­ muzeum v LitoměřicĆ­ch'),
(66466, 56093, 'no_lang_code', 'name', 'PooslavĆ­ NovĆ” Ves (Slovakia)'),
(66467, 56094, 'no_lang_code', 'name', 'Parkservis (Czechia)'),
(66468, 56095, 'cs', 'name', 'OblastnĆ­ nemocnice KolĆ­n'),
(66469, 56096, 'no_lang_code', 'name', 'Parma Technik (Czechia)'),
(66470, 56097, 'no_lang_code', 'name', 'Porfix (Czechia)'),
(66471, 56098, 'no_lang_code', 'name', 'Pars Komponenty (Czechia)'),
(66472, 56099, 'cs', 'name', 'Ochrana fauny ČR'),
(66473, 56100, 'no_lang_code', 'name', 'Pars Nova (Czechia)'),
(66474, 56101, 'no_lang_code', 'name', 'Porsenna (Czechia)'),
(66475, 56102, 'no_lang_code', 'name', 'Ochrana PodzemnĆ­ch Vod (Czechia)'),
(66476, 56103, 'no_lang_code', 'name', 'Patria KobylĆ­ (Czechia)'),
(66477, 56104, 'no_lang_code', 'name', 'PositronLabs (Czechia)'),
(66478, 56105, 'en', 'name', 'Ocular Research Symposia Foundation'),
(66479, 56106, 'no_lang_code', 'name', 'Patriot (Czechia)'),
(66480, 56107, 'no_lang_code', 'name', 'PovodĆ­ Labe (Czechia)'),
(66481, 56108, 'cs', 'name', 'Odborový Svaz Pracovníků Hornictví, Geologie a Naftového Průmyslu'),
(66482, 56109, 'no_lang_code', 'name', 'PavEx (Czechia)'),
(66483, 56110, 'no_lang_code', 'name', 'Rheinmetall (Czechia)'),
(66484, 56111, 'no_lang_code', 'name', 'AFRY (Czechia)'),
(66485, 56112, 'no_lang_code', 'name', 'PPG Deco Czech (Czechia)'),
(66486, 56113, 'no_lang_code', 'name', 'OGResearch (Czechia)'),
(66487, 56114, 'no_lang_code', 'name', 'Pavus (Czechia)'),
(66488, 56115, 'cs', 'name', 'Prachatice Museum'),
(66489, 56116, 'no_lang_code', 'name', 'Oikoymenh (Czechia)'),
(66490, 56117, 'no_lang_code', 'name', 'Peter Brett Associates (Czechia)'),
(66491, 56118, 'no_lang_code', 'name', 'Pragis (Czechia)'),
(66492, 56119, 'no_lang_code', 'name', 'Pragochema (Czechia)'),
(66493, 56120, 'no_lang_code', 'name', 'Pragoimex (Czechia)'),
(66494, 56121, 'no_lang_code', 'name', 'PBS Power Equipment (Czechia)'),
(66495, 56122, 'no_lang_code', 'name', 'Pragolab (Czechia)'),
(66496, 56123, 'no_lang_code', 'name', 'PBT Rožnov (Czechia)'),
(66497, 56124, 'no_lang_code', 'name', 'OKD (Czechia)'),
(66498, 56124, 'cs', 'name', 'Ostravsko-karvinskƩ doly'),
(66499, 56125, 'no_lang_code', 'name', 'Pragolet (Czechia)'),
(66500, 56126, 'no_lang_code', 'name', 'Pragometal (Czechia)'),
(66501, 56127, 'no_lang_code', 'name', 'Pragoprojekt (Czechia)'),
(66502, 56128, 'no_lang_code', 'name', 'OKF (Czechia)'),
(66503, 56129, 'no_lang_code', 'name', 'Prague Casting Services (Czechia)'),
(66504, 56130, 'no_lang_code', 'name', 'Pegas Gonda (Czechia)'),
(66505, 56131, 'no_lang_code', 'name', 'Ɩkoplant International (Czechia)'),
(66506, 56132, 'en', 'name', 'Prague Security Studies Institute'),
(66507, 56133, 'cs', 'name', 'OkresnĆ­ HospodÔřskĆ” Komora'),
(66508, 56134, 'cs', 'name', 'PelÄĆ”k a Partner Architekti'),
(66509, 56135, 'no_lang_code', 'name', 'Prakab Prazska Kabelovna (Czechia)'),
(66510, 56136, 'no_lang_code', 'name', 'Pramacom-Ht (Czechia)'),
(66511, 56137, 'no_lang_code', 'name', 'Pražské služby (Czechia)'),
(66512, 56138, 'no_lang_code', 'name', 'Pražské Vodovody a Kanalizace'),
(66513, 56139, 'no_lang_code', 'name', 'PernĆ­k (Czechia)'),
(66514, 56140, 'no_lang_code', 'name', 'Preciosa Beauty (Czechia)'),
(66515, 56141, 'en', 'name', 'JindřichÅÆv Hradec Hospital'),
(66516, 56141, 'cs', 'name', 'Nemocnice JindřichÅÆv Hradec'),
(66517, 56142, 'no_lang_code', 'name', 'PREdistribuce (Czechia)'),
(66518, 56143, 'no_lang_code', 'name', 'OlChemIm (Czechia)'),
(66519, 56144, 'no_lang_code', 'name', 'Preditest (Czechia)'),
(66520, 56145, 'no_lang_code', 'name', 'Pexidr (Czechia)'),
(66521, 56146, 'no_lang_code', 'name', 'Pharmaceutical Biotechnology (Czechia)');
INSERT INTO `ror_settings` VALUES
(66522, 56147, 'no_lang_code', 'name', 'Phoenix Air (Czechia)'),
(66523, 56148, 'no_lang_code', 'name', 'Prefa Praha (Czechia)'),
(66524, 56149, 'no_lang_code', 'name', 'Photon Energy (Czechia)'),
(66525, 56150, 'no_lang_code', 'name', 'Olma (Czechia)'),
(66526, 56151, 'no_lang_code', 'name', 'Prikner - Tepelné zpracovÔní kovů (Czechia)'),
(66527, 56152, 'no_lang_code', 'name', 'Primis (Czechia)'),
(66528, 56153, 'no_lang_code', 'name', 'Phonexia (Czechia)'),
(66529, 56154, 'no_lang_code', 'name', 'Perrigo (Czechia)'),
(66530, 56155, 'no_lang_code', 'name', 'Pro-Aqua (Czechia)'),
(66531, 56156, 'no_lang_code', 'name', 'Pilana (Czechia)'),
(66532, 56157, 'en', 'name', 'PRO-BIO Association of Organic Farmers'),
(66533, 56158, 'no_lang_code', 'name', 'PRO-BIO (Czechia)'),
(66534, 56159, 'no_lang_code', 'name', 'PRO.MED.CS Praha (Czechia)'),
(66535, 56160, 'no_lang_code', 'name', 'Pinkerton (Czechia)'),
(66536, 56161, 'no_lang_code', 'name', 'Procter & Gamble - Rakona (Czechia)'),
(66537, 56162, 'no_lang_code', 'name', 'Pipelife (Czechia)'),
(66538, 56163, 'no_lang_code', 'name', 'OptimSys (Czechia)'),
(66539, 56164, 'no_lang_code', 'name', 'Prodeco (Czechia)'),
(66540, 56165, 'no_lang_code', 'name', 'Orange Controls (Czechia)'),
(66541, 56166, 'no_lang_code', 'name', 'Pivo Praha (Czechia)'),
(66542, 56167, 'cs', 'name', 'Profesní Komora SociÔlních Pracovníků'),
(66543, 56168, 'no_lang_code', 'name', 'Organa (Czechia)'),
(66544, 56169, 'no_lang_code', 'name', 'PROFiber Networking (Czechia)'),
(66545, 56170, 'no_lang_code', 'name', 'Proficomms (Czechia)'),
(66546, 56171, 'no_lang_code', 'name', 'Pivovar KƔcov (Czechia)'),
(66547, 56172, 'cs', 'name', 'Akademie Jana Amose KomenskƩho'),
(66548, 56173, 'cs', 'name', 'Orlické Muzeum Choceň'),
(66549, 56174, 'no_lang_code', 'name', 'Profinit (Czechia)'),
(66550, 56175, 'no_lang_code', 'name', 'Orlik (Czechia)'),
(66551, 56176, 'no_lang_code', 'name', 'Progeo (Czechia)'),
(66552, 56177, 'no_lang_code', 'name', 'PKS holding (Czechia)'),
(66553, 56178, 'no_lang_code', 'name', 'Progres Ekotech (Czechia)'),
(66554, 56179, 'no_lang_code', 'name', 'Plasmametal (Czechia)'),
(66555, 56180, 'no_lang_code', 'name', 'Ortotika (Czechia)'),
(66556, 56181, 'no_lang_code', 'name', 'Projekt HTL (Czechia)'),
(66557, 56182, 'cs', 'name', 'Projekt Odyssea'),
(66558, 56183, 'no_lang_code', 'name', 'ACL Anodizing (Czechia)'),
(66559, 56184, 'no_lang_code', 'name', 'Project Design and Development Agency (Czechia)'),
(66560, 56185, 'no_lang_code', 'name', 'Plastmetal Engineering (Czechia)'),
(66561, 56186, 'no_lang_code', 'name', 'Projekty Vodam (Czechia)'),
(66562, 56187, 'no_lang_code', 'name', 'PTV (Czechia)'),
(66563, 56188, 'no_lang_code', 'name', 'Pure Bohemia (Czechia)'),
(66564, 56189, 'no_lang_code', 'name', 'Puruplast (Czechia)'),
(66565, 56190, 'no_lang_code', 'name', 'Plosab (Czechia)'),
(66566, 56191, 'no_lang_code', 'name', 'EP Energy (Czechia)'),
(66567, 56192, 'no_lang_code', 'name', 'Prokop Rail (Czechia)'),
(66568, 56193, 'no_lang_code', 'name', 'Proma Reha (Czechia)'),
(66569, 56194, 'no_lang_code', 'name', 'PZP Komplet (Czechia)'),
(66570, 56195, 'no_lang_code', 'name', 'QIP (Czechia)'),
(66571, 56196, 'no_lang_code', 'name', 'Quality Quantity Time (Czechia)'),
(66572, 56197, 'no_lang_code', 'name', 'Prometheus (Czechia)'),
(66573, 56198, 'no_lang_code', 'name', 'FCC (Czechia)'),
(66574, 56199, 'no_lang_code', 'name', 'PlzeňskĆ© MěstskĆ© DopravnĆ­ Podniky (Czechia)'),
(66575, 56200, 'no_lang_code', 'name', 'Qualiform (Czechia)'),
(66576, 56201, 'no_lang_code', 'name', 'Protean (Czechia)'),
(66577, 56202, 'no_lang_code', 'name', 'Plzensky Prazdroj (Czechia)'),
(66578, 56203, 'no_lang_code', 'name', 'Quinta Analytica (Czechia)'),
(66579, 56204, 'no_lang_code', 'name', 'ProTyS (Czechia)'),
(66580, 56205, 'no_lang_code', 'name', 'R-Princip (Czechia)'),
(66581, 56206, 'no_lang_code', 'name', 'Provisco CS (Czechia)'),
(66582, 56207, 'cs', 'name', 'PodjeÅ”tědskĆ© Museum'),
(66583, 56208, 'no_lang_code', 'name', 'Huawei Technologies (France)'),
(66584, 56209, 'no_lang_code', 'name', 'Provod (Czechia)'),
(66585, 56210, 'no_lang_code', 'name', 'Podravka (Czechia)'),
(66586, 56211, 'no_lang_code', 'name', 'Pohorelec (Czechia)'),
(66587, 56212, 'no_lang_code', 'name', 'Air Navigation Services (Czechia)'),
(66588, 56212, 'cs', 'name', 'Řízení letového provozu České republiky'),
(66589, 56213, 'en', 'name', 'Institute of Plasma Physics'),
(66590, 56213, 'it', 'name', 'Istituto di Fisica del Plasma "Piero Caldirola"'),
(66591, 56214, 'no_lang_code', 'name', 'Prvni Brnenska Strojirna (Czechia)'),
(66592, 56215, 'no_lang_code', 'name', 'Prvnƭ regionƔlnƭ rozvojovƔ (Czechia)'),
(66593, 56216, 'no_lang_code', 'name', 'RobotSystem (Czechia)'),
(66594, 56217, 'no_lang_code', 'name', 'Prvnƭ SignƔlnƭ (Czechia)'),
(66595, 56218, 'no_lang_code', 'name', 'RDS-CZ (Czechia)'),
(66596, 56219, 'en', 'name', 'Indo Korea Science and Technology'),
(66597, 56220, 'no_lang_code', 'name', 'PS Profi (Czechia)'),
(66598, 56221, 'no_lang_code', 'name', 'RSC Spol (Czechia)'),
(66599, 56222, 'no_lang_code', 'name', 'Rabbit ChotýŔany (Czechia)'),
(66600, 56223, 'no_lang_code', 'name', 'Rabbit (Czechia)'),
(66601, 56224, 'no_lang_code', 'name', 'Roko (Czechia)'),
(66602, 56225, 'no_lang_code', 'name', 'PSP Pohony (Czechia)'),
(66603, 56226, 'no_lang_code', 'name', 'Rolnické Družstvo Bezno (Czechia)'),
(66604, 56227, 'cs', 'name', 'PsychiatrickĆ” Nemocnice Bohnice'),
(66605, 56228, 'no_lang_code', 'name', 'Racom (Czechia)'),
(66606, 56229, 'no_lang_code', 'name', 'Romill (Czechia)'),
(66607, 56230, 'no_lang_code', 'name', 'Rosomac (Czechia)'),
(66608, 56231, 'en', 'name', 'Ceramic Synthesis and Functionalization Laboratory'),
(66609, 56231, 'fr', 'name', 'Laboratoire de Synthèse et Fonctionnalisation des Céramiques'),
(66610, 56232, 'en', 'name', 'Czech Council on Foreign Relations'),
(66611, 56232, 'cs', 'name', 'Rada pro mezinƔrodnƭ vztahy'),
(66612, 56233, 'no_lang_code', 'name', 'Sellier & Bellot (Czechia)'),
(66613, 56234, 'no_lang_code', 'name', 'Rotana (Czechia)'),
(66614, 56235, 'no_lang_code', 'name', 'Rotas StrojĆ­rny (Czechia)'),
(66615, 56236, 'no_lang_code', 'name', 'Semix Pluso (Czechia)'),
(66616, 56237, 'no_lang_code', 'name', 'Prokop (Czechia)'),
(66617, 56238, 'no_lang_code', 'name', 'Radanal (Czechia)'),
(66618, 56239, 'no_lang_code', 'name', 'Materials Design (France)'),
(66619, 56240, 'no_lang_code', 'name', 'Semma Therapeutics (United States)'),
(66620, 56241, 'no_lang_code', 'name', 'Radioterapie HoleŔov (Czechia)'),
(66621, 56242, 'no_lang_code', 'name', 'RPIC ViP (Czechia)'),
(66622, 56243, 'no_lang_code', 'name', 'Semo (Czechia)'),
(66623, 56244, 'no_lang_code', 'name', 'Rigetti Computing (United States)'),
(66624, 56245, 'no_lang_code', 'name', 'RPS Ostrava (Czechia)'),
(66625, 56246, 'en', 'name', 'Singapore Institute of Technology'),
(66626, 56247, 'no_lang_code', 'name', 'Radom (Czechia)'),
(66627, 56248, 'no_lang_code', 'name', 'Skill (Czechia)'),
(66628, 56249, 'no_lang_code', 'name', 'Radon vos (Czechia)'),
(66629, 56250, 'no_lang_code', 'name', 'Rumi Scientific (United States)'),
(66630, 56251, 'no_lang_code', 'name', 'Ruml (Czechia)'),
(66631, 56252, 'no_lang_code', 'name', 'Senagro (Czechia)'),
(66632, 56253, 'no_lang_code', 'name', 'Rumpold (Czechia)'),
(66633, 56254, 'no_lang_code', 'name', 'Rajmont (Czechia)'),
(66634, 56255, 'no_lang_code', 'name', 'Innogy (Czechia)'),
(66635, 56256, 'no_lang_code', 'name', 'Ramet (Czechia)'),
(66636, 56257, 'no_lang_code', 'name', 'RybÔřstvĆ­ HlubokĆ” (Czechia)'),
(66637, 56258, 'cs', 'name', 'RybÔřstvĆ­ KardaÅ”ova Řečice'),
(66638, 56259, 'no_lang_code', 'name', 'Sev Litovel (Czechia)'),
(66639, 56260, 'no_lang_code', 'name', 'RaŔelina (Czechia)'),
(66640, 56261, 'no_lang_code', 'name', 'Rataj (Czechia)'),
(66641, 56262, 'no_lang_code', 'name', 'Seva – Flora (Czechia)'),
(66642, 56263, 'no_lang_code', 'name', 'Sevaron (Czechia)'),
(66643, 56264, 'no_lang_code', 'name', 'RybÔřstvĆ­ LitomyÅ”l (RybÔřstvĆ­ LitomyÅ”l)'),
(66644, 56265, 'cs', 'name', 'RybÔřstvĆ­ MariĆ”nskĆ© LĆ”zně'),
(66645, 56266, 'no_lang_code', 'name', 'RybÔřstvĆ­ NovĆ© Hrady (Czechia)'),
(66646, 56267, 'no_lang_code', 'name', 'RybnĆ­kÔřstvĆ­ Pohořelice'),
(66647, 56268, 'no_lang_code', 'name', 'Severofrukt (Czechia)'),
(66648, 56269, 'no_lang_code', 'name', 'Rawat Consulting (Czechia)'),
(66649, 56270, 'no_lang_code', 'name', 'RCS Kladno (Czechia)'),
(66650, 56271, 'no_lang_code', 'name', 'SeveromoravskƩ Vodovody a Kanalizace Ostrava (Czechia)'),
(66651, 56272, 'no_lang_code', 'name', 'Ryor (Czechia)'),
(66652, 56273, 'no_lang_code', 'name', 'RD Rýmařov (Czechia)'),
(66653, 56274, 'no_lang_code', 'name', 'Sewaco (Czechia)'),
(66654, 56275, 'no_lang_code', 'name', 'Sewio Networks (Czechia)'),
(66655, 56276, 'no_lang_code', 'name', 'Reacont (Czechia)'),
(66656, 56277, 'no_lang_code', 'name', 'SG - Geoinenring (Czechia)'),
(66657, 56278, 'no_lang_code', 'name', 'SG-Geoprojekt (Czechia)'),
(66658, 56279, 'no_lang_code', 'name', 'SGS (Czechia)'),
(66659, 56280, 'no_lang_code', 'name', 'Real Eco Technik (Czechia)'),
(66660, 56281, 'no_lang_code', 'name', 'Sherlog Trace (Czechia)'),
(66661, 56282, 'no_lang_code', 'name', 'Sicar (Czechia)'),
(66662, 56283, 'no_lang_code', 'name', 'Realistic (Czechia)'),
(66663, 56284, 'no_lang_code', 'name', 'Sido (Czechia)'),
(66664, 56285, 'no_lang_code', 'name', 'S.A.M. Metalizačnƭ společnost'),
(66665, 56286, 'no_lang_code', 'name', 'Siga (Czechia)'),
(66666, 56287, 'no_lang_code', 'name', 'SAM Holding (Czechia)'),
(66667, 56288, 'no_lang_code', 'name', 'Saar Gummi (Czechia)'),
(66668, 56289, 'no_lang_code', 'name', 'Ricardo Prague (Czechia)'),
(66669, 56290, 'no_lang_code', 'name', 'Signal Projekt (Czechia)'),
(66670, 56291, 'no_lang_code', 'name', 'Sady (Czechia)'),
(66671, 56292, 'no_lang_code', 'name', 'Recutech (Czechia)'),
(66672, 56293, 'no_lang_code', 'name', 'Sage Energo (Czechia)'),
(66673, 56294, 'no_lang_code', 'name', 'Silmos (Czechia)'),
(66674, 56295, 'no_lang_code', 'name', 'Sagittaria'),
(66675, 56296, 'no_lang_code', 'name', 'Silnice Group (Czechia)'),
(66676, 56297, 'no_lang_code', 'name', 'Redam (Czechia)'),
(66677, 56298, 'no_lang_code', 'name', 'Silvi Nova (Czechia)'),
(66678, 56299, 'cs', 'name', 'Ředitelství Silnic a DÔlnic'),
(66679, 56300, 'no_lang_code', 'name', 'Šimeček (Czechia)'),
(66680, 56301, 'no_lang_code', 'name', 'Simgeo (Czechia)'),
(66681, 56302, 'no_lang_code', 'name', 'Regent Plus Žlutice (Czechia)'),
(66682, 56303, 'no_lang_code', 'name', 'Saint-Gobain (Czechia)'),
(66683, 56304, 'no_lang_code', 'name', 'Sindat (Czechia)'),
(66684, 56305, 'no_lang_code', 'name', 'Sindlar (Czechia)'),
(66685, 56306, 'no_lang_code', 'name', 'Sinpol (Czechia)'),
(66686, 56307, 'no_lang_code', 'name', 'Samumed (United States)'),
(66687, 56308, 'en', 'name', 'Regional Museum and Gallery Jicin'),
(66688, 56309, 'no_lang_code', 'name', 'Sitel (Czechia)'),
(66689, 56310, 'no_lang_code', 'name', 'Regional Museum of K. A. Polanek'),
(66690, 56311, 'cs', 'name', 'RegionĆ”lnĆ­ muzeum v KolĆ­ně'),
(66691, 56312, 'no_lang_code', 'name', 'RegionƔlnƭ PoradenskƔ Agentura (Czechia)'),
(66692, 56313, 'no_lang_code', 'name', 'Sanborn (Czechia)'),
(66693, 56314, 'cs', 'name', 'SjednocenÔ Organizace Nevidomých a Slabozrakých'),
(66694, 56315, 'en', 'name', 'Czech Association of Development Agencies'),
(66695, 56315, 'cs', 'name', 'ČeskÔ asociace rozvojových agentur'),
(66696, 56316, 'no_lang_code', 'name', 'Skd Trade (Czechia)'),
(66697, 56317, 'no_lang_code', 'name', 'Regutec (Czechia)'),
(66698, 56318, 'no_lang_code', 'name', 'Sangreen (Czechia)'),
(66699, 56319, 'no_lang_code', 'name', 'Kavalier (Czechia)'),
(66700, 56320, 'no_lang_code', 'name', 'Sat (Czechia)'),
(66701, 56321, 'no_lang_code', 'name', 'SklÔřský Ústav Hradec KrĆ”lovĆ© (Czechia)'),
(66702, 56322, 'no_lang_code', 'name', 'RekultivačnĆ­ Výstavba Most (Czechia)'),
(66703, 56323, 'no_lang_code', 'name', 'Reliant (Czechia)'),
(66704, 56324, 'no_lang_code', 'name', 'Sklopan Liberec (Czechia)'),
(66705, 56325, 'no_lang_code', 'name', 'Rema SystƩm (Czechia)'),
(66706, 56326, 'cs', 'name', 'Sativa Keřkov'),
(66707, 56327, 'no_lang_code', 'name', 'Remedis (Czechia)'),
(66708, 56328, 'no_lang_code', 'name', 'Satra (Czechia)'),
(66709, 56329, 'no_lang_code', 'name', 'Remerx (Czechia)'),
(66710, 56330, 'no_lang_code', 'name', 'Sklostroj Turnov (Czechia)'),
(66711, 56331, 'no_lang_code', 'name', 'Å koda JS (Czechia)'),
(66712, 56332, 'no_lang_code', 'name', 'Saurer (Czechia)'),
(66713, 56333, 'no_lang_code', 'name', 'Rent-Pharm (Czechia)'),
(66714, 56334, 'no_lang_code', 'name', 'Skoda Machine Tool (Czechia)'),
(66715, 56335, 'no_lang_code', 'name', 'SBA-Expert (Czechia)'),
(66716, 56336, 'no_lang_code', 'name', 'Rentel (Czechia)'),
(66717, 56337, 'no_lang_code', 'name', 'SC & C (Czechia)'),
(66718, 56338, 'no_lang_code', 'name', 'Scaled Biolabs (United States)'),
(66719, 56339, 'no_lang_code', 'name', 'Reprogen (Czechia)'),
(66720, 56340, 'cs', 'name', 'Socioklub'),
(66721, 56341, 'no_lang_code', 'name', 'Scriptorium'),
(66722, 56342, 'en', 'name', 'Regional Development Agency of South Bohemia'),
(66723, 56343, 'no_lang_code', 'name', 'Resec (Czechia)'),
(66724, 56344, 'no_lang_code', 'name', 'Å kola Welding (Czechia)'),
(66725, 56345, 'no_lang_code', 'name', 'Resim (Czechia)'),
(66726, 56346, 'cs', 'name', 'SdruženĆ© ambulantnĆ­ zařízenĆ­'),
(66727, 56347, 'en', 'name', 'Automotive Industry Association'),
(66728, 56347, 'cs', 'name', 'Sdružení Automobilového Průmyslu'),
(66729, 56348, 'cs', 'name', 'Česmad Bohemia'),
(66730, 56349, 'cs', 'name', 'Sdružení Celiaků České Republiky'),
(66731, 56350, 'no_lang_code', 'name', 'Skrivanek (Czechia)'),
(66732, 56351, 'cs', 'name', 'Sdružení CEPAC'),
(66733, 56352, 'cs', 'name', 'Asociace Nemocnic ČR'),
(66734, 56353, 'en', 'name', 'National Laboratory for High Performance Computing'),
(66735, 56354, 'cs', 'name', 'Sdružení Historiků České Republiky'),
(66736, 56355, 'no_lang_code', 'name', 'Sky Paragliders (Czechia)'),
(66737, 56356, 'en', 'name', 'Forest Nursery Association'),
(66738, 56356, 'cs', 'name', 'SdruženĆ­ lesnĆ­ch Å”kolkařů'),
(66739, 56357, 'cs', 'name', 'SlĆ”deček Museum of Local History'),
(66740, 56358, 'cs', 'name', 'Linka bezpečƭ'),
(66741, 56358, 'en', 'name', 'Safety Line Helpline'),
(66742, 56359, 'cs', 'name', 'Sdružení obcí Orlicko'),
(66743, 56360, 'cs', 'name', 'SdruženĆ­ Ozdravoven A LĆ©Äeben Okresu Trutnov'),
(66744, 56361, 'no_lang_code', 'name', 'Sladovny Soufflet (Czechia)'),
(66745, 56362, 'en', 'name', 'Association of Grass and Legumes Seed Growers'),
(66746, 56362, 'cs', 'name', 'SdruženĆ­ pěstitelÅÆ travnĆ­ch a jetelových semen'),
(66747, 56363, 'no_lang_code', 'name', 'Slavona (Czechia)'),
(66748, 56364, 'no_lang_code', 'name', 'Resta (Czechia)'),
(66749, 56365, 'no_lang_code', 'name', 'Retap (Czechia)'),
(66750, 56366, 'no_lang_code', 'name', 'SlƩvƔrna a ModelƔrna NovƩ Ransko'),
(66751, 56367, 'no_lang_code', 'name', 'Retex (Czechia)'),
(66752, 56368, 'no_lang_code', 'name', 'SlƩvƔrna Chomutov (Czechia)'),
(66753, 56369, 'no_lang_code', 'name', 'Rex Controls (Czechia)'),
(66754, 56370, 'no_lang_code', 'name', 'RFspin (Czechia)'),
(66755, 56371, 'no_lang_code', 'name', 'Sofigen (Czechia)'),
(66756, 56372, 'no_lang_code', 'name', 'Heunisch Brno (Czechia)'),
(66757, 56373, 'no_lang_code', 'name', 'Soft Targets Protection Institute (Czechia)'),
(66758, 56374, 'no_lang_code', 'name', 'SokolovskƩ Strojƭrny (Czechia)'),
(66759, 56375, 'en', 'name', 'American Comparative Literature Association'),
(66760, 56376, 'en', 'name', 'American Oil Chemists Society'),
(66761, 56377, 'en', 'name', 'Association for Information Science and Technology'),
(66762, 56378, 'en', 'name', 'Association of Fire and Safety Engineering'),
(66763, 56378, 'cs', 'name', 'SdruženĆ­ požÔrnĆ­ho a bezpečnostnĆ­ho inženýrstvĆ­'),
(66764, 56379, 'en', 'name', 'ITS and S'),
(66765, 56379, 'cs', 'name', 'Sdružení pro dopravní telematiku'),
(66766, 56380, 'en', 'name', 'American Society of Church History'),
(66767, 56381, 'en', 'name', 'The American Society of Criminology'),
(66768, 56382, 'en', 'name', 'Agricultural And Forestry Machinery Association'),
(66769, 56383, 'no_lang_code', 'name', 'SDS Exmost (Czechia)'),
(66770, 56384, 'en', 'name', 'Association for Jewish Studies'),
(66771, 56385, 'no_lang_code', 'name', 'Secar Bohemia (Czechia)'),
(66772, 56386, 'no_lang_code', 'name', 'Seco Group (Czechia)'),
(66773, 56387, 'en', 'name', 'Association of Clinical Scientists'),
(66774, 56388, 'no_lang_code', 'name', 'Sedium (Czechia)'),
(66775, 56389, 'no_lang_code', 'name', 'Sedlecký kaolin (Czechia)'),
(66776, 56390, 'en', 'name', 'Behavior Genetics Association'),
(66777, 56391, 'no_lang_code', 'name', 'SEEIF Ceramic (Czechia)'),
(66778, 56392, 'no_lang_code', 'name', 'SEKO Brno (Czechia)'),
(66779, 56393, 'cs', 'name', 'Selekta Pacov'),
(66780, 56394, 'no_lang_code', 'name', 'Stƶri Mantel (Czechia)'),
(66781, 56395, 'en', 'name', 'Dictionary Society of North America'),
(66782, 56396, 'no_lang_code', 'name', 'Strabag Rail (Czechia)'),
(66783, 56397, 'en', 'name', 'German Studies Association'),
(66784, 56398, 'no_lang_code', 'name', 'Strasky Husty and Partners (Czechia)'),
(66785, 56399, 'en', 'name', 'Immigration and Ethnic History Society'),
(66786, 56400, 'cs', 'name', 'StřednĆ­ PrÅÆmyslovĆ” Å”kola a ObchodnĆ­ Akademie Uherský Brod'),
(66787, 56401, 'en', 'name', 'Central Bohemian Research Library'),
(66788, 56401, 'cs', 'name', 'StředočeskĆ” vědeckĆ” knihovka v Kladně'),
(66789, 56402, 'en', 'name', 'Whiting Foundation'),
(66790, 56403, 'no_lang_code', 'name', 'StrojĆ­renskĆ© InovačnĆ­ Centrum (Czechia)'),
(66791, 56404, 'no_lang_code', 'name', 'Smart Software (Czechia)'),
(66792, 56405, 'cs', 'name', 'Strojírenský ZkuŔební Ústav'),
(66793, 56406, 'no_lang_code', 'name', 'Smart Technik (Czechia)'),
(66794, 56407, 'no_lang_code', 'name', 'Strojírna Novotný (Czechia)'),
(66795, 56408, 'no_lang_code', 'name', 'SmartMotion (Czechia)'),
(66796, 56409, 'en', 'name', 'Latin American Studies Association'),
(66797, 56410, 'no_lang_code', 'name', 'SMP (Czechia)'),
(66798, 56411, 'no_lang_code', 'name', 'StrojĆ­rna Tyc (Czechia)'),
(66799, 56412, 'no_lang_code', 'name', 'StrojĆ­rny Bohdalice (Czechia)'),
(66800, 56413, 'en', 'name', 'National Book Critics Circle'),
(66801, 56414, 'no_lang_code', 'name', 'SMTplus (Czechia)'),
(66802, 56415, 'no_lang_code', 'name', 'Strojírny OlŔovec (Czechia)'),
(66803, 56416, 'cs', 'name', 'SociƔlnƭ Agentura'),
(66804, 56417, 'no_lang_code', 'name', 'SocioFactor (Czechia)'),
(66805, 56418, 'no_lang_code', 'name', 'StrojĆ­rny Podzimek (Czechia)'),
(66806, 56419, 'en', 'name', 'National Inventors Hall of Fame'),
(66807, 56420, 'no_lang_code', 'name', 'StrojĆ­rny a stavby Třinec (Czechia)'),
(66808, 56421, 'no_lang_code', 'name', 'Strojmetal Aluminium Forging (Czechia)'),
(66809, 56422, 'no_lang_code', 'name', 'Tenez (Czechia)'),
(66810, 56423, 'en', 'name', 'National Organization for the Professional Advancement of Black Chemists and Chemical Engineers'),
(66811, 56424, 'no_lang_code', 'name', 'TenzovƔhy (Czechia)'),
(66812, 56425, 'no_lang_code', 'name', 'STS Prachatice (Czechia)'),
(66813, 56426, 'no_lang_code', 'name', 'Teramed (Czechia)'),
(66814, 56427, 'no_lang_code', 'name', 'Terezia (Czechia)'),
(66815, 56428, 'en', 'name', 'National Science and Technology Medals Foundation'),
(66816, 56429, 'en', 'name', 'Pen-Faulkner Foundation'),
(66817, 56430, 'no_lang_code', 'name', 'STÚ K (Czechia)'),
(66818, 56431, 'no_lang_code', 'name', 'Styl Plzeň (Czechia)'),
(66819, 56432, 'no_lang_code', 'name', 'Sudop Group (Czechia)'),
(66820, 56433, 'en', 'name', 'Population Association of America'),
(66821, 56434, 'en', 'name', 'Poultry Science Association'),
(66822, 56435, 'no_lang_code', 'name', 'SvÔrovský (Czechia)'),
(66823, 56436, 'cs', 'name', 'Svaz českých a moravských výrobnĆ­ch družstev'),
(66824, 56436, 'en', 'name', 'Union of Czech Production Co-operatives'),
(66825, 56437, 'cs', 'name', 'Svaz Chovatelů Českého Strakatého Skotu'),
(66826, 56438, 'cs', 'name', 'Svaz Chovatelů HolŔtýnského Skotu ČR'),
(66827, 56439, 'cs', 'name', 'Svaz ChovatelÅÆ OvcĆ­ a Koz'),
(66828, 56440, 'cs', 'name', 'Unie Geologických Asociací'),
(66829, 56441, 'no_lang_code', 'name', 'Solar Monitor (Czechia)'),
(66830, 56442, 'no_lang_code', 'name', 'Union Lesnƭ BrƔna (Czechia)'),
(66831, 56443, 'cs', 'name', 'Svaz PěstitelÅÆ A ZpracovatelÅÆ Olejnin'),
(66832, 56444, 'no_lang_code', 'name', 'SolarEnvi (Czechia)'),
(66833, 56445, 'no_lang_code', 'name', 'Fujirebio (Czechia)'),
(66834, 56446, 'no_lang_code', 'name', 'Uniplast Pardubice (Czechia)'),
(66835, 56447, 'en', 'name', 'Association of Foundries'),
(66836, 56448, 'no_lang_code', 'name', 'Sonberk (Czechia)'),
(66837, 56449, 'no_lang_code', 'name', 'Vamet (Czechia)'),
(66838, 56450, 'no_lang_code', 'name', 'Unique Textiles (Czechia)'),
(66839, 56451, 'no_lang_code', 'name', 'Vanessa air (Czechia)'),
(66840, 56452, 'cs', 'name', 'Svaz Vinařů ČeskĆ© Republiky'),
(66841, 56453, 'no_lang_code', 'name', 'VÔpenka VitoŔov (Czechia)'),
(66842, 56454, 'no_lang_code', 'name', 'Unites Systems (Czechia)'),
(66843, 56455, 'cs', 'name', 'Svaz Výrobců Cementu'),
(66844, 56456, 'no_lang_code', 'name', 'Universal Production Partners (Czechia)'),
(66845, 56457, 'no_lang_code', 'name', 'SOR Libchavy (Czechia)'),
(66846, 56458, 'no_lang_code', 'name', 'Vapos (Czechia)'),
(66847, 56459, 'no_lang_code', 'name', 'Space Devices (Czechia)'),
(66848, 56460, 'no_lang_code', 'name', 'Svit (Czechia)'),
(66849, 56461, 'no_lang_code', 'name', 'Varroc Lighting Systems (United States)'),
(66850, 56462, 'no_lang_code', 'name', 'SpeechTech (Czechia)'),
(66851, 56463, 'no_lang_code', 'name', 'Svoboda (Czechia)'),
(66852, 56464, 'cs', 'name', 'SpektroskopickĆ” Společnost Jana Marka Marci'),
(66853, 56465, 'no_lang_code', 'name', 'Spel (Czechia)'),
(66854, 56466, 'no_lang_code', 'name', 'SVS FEM (Czechia)'),
(66855, 56467, 'no_lang_code', 'name', 'Speltronic (Czechia)'),
(66856, 56468, 'en', 'name', 'Science & Technology Park (Czechia)'),
(66857, 56468, 'cs', 'name', 'Vědecko Technologický Park'),
(66858, 56469, 'no_lang_code', 'name', 'Swietelsky (Austria)'),
(66859, 56470, 'no_lang_code', 'name', 'Security Paper Mill (Czechia)'),
(66860, 56471, 'no_lang_code', 'name', 'Vega (Czechia)'),
(66861, 56472, 'no_lang_code', 'name', 'S Group Holding (Czechia)'),
(66862, 56473, 'cs', 'name', 'Společenstvo KominĆ­kÅÆ ČeskĆ© republiky'),
(66863, 56474, 'cs', 'name', 'SpolečnĆ” Vize'),
(66864, 56475, 'no_lang_code', 'name', 'Libri Prohibiti'),
(66865, 56476, 'no_lang_code', 'name', 'Synlab Czech (Czechia)'),
(66866, 56477, 'no_lang_code', 'name', 'Vejce (Czechia)'),
(66867, 56478, 'no_lang_code', 'name', 'Velaz (Czechia)'),
(66868, 56479, 'no_lang_code', 'name', 'Velvana (Czechia)'),
(66869, 56480, 'no_lang_code', 'name', 'Glasiert (Czechia)'),
(66870, 56481, 'no_lang_code', 'name', 'Solitea (Czechia)'),
(66871, 56482, 'no_lang_code', 'name', 'Ventura-Venkov (Czechia)'),
(66872, 56483, 'no_lang_code', 'name', 'Technika Pro MěřenĆ­ a Automatizaci (Czechia)'),
(66873, 56484, 'en', 'name', 'Museum of Romani Culture'),
(66874, 56484, 'cs', 'name', 'Muzeum romskƩ kultury'),
(66875, 56485, 'no_lang_code', 'name', 'DivadelnĆ­ Noviny (Czechia)'),
(66876, 56486, 'no_lang_code', 'name', 'Vepaspol Olomouc (Czechia)'),
(66877, 56487, 'no_lang_code', 'name', 'T-string Pardubice (Czechia)'),
(66878, 56488, 'no_lang_code', 'name', 'Vesa Velhartice (Czechia)'),
(66879, 56489, 'no_lang_code', 'name', 'TFA (Czechia)'),
(66880, 56490, 'cs', 'name', 'Společnost pro Studium Sekt a Nových NĆ”boženských SměrÅÆ'),
(66881, 56491, 'no_lang_code', 'name', 'Veskom (Czechia)'),
(66882, 56492, 'no_lang_code', 'name', 'TCC (Czechia)'),
(66883, 56493, 'no_lang_code', 'name', 'Vestado (Czechia)'),
(66884, 56494, 'cs', 'name', 'Společnost pro Technologie Ochrany PamĆ”tek'),
(66885, 56495, 'no_lang_code', 'name', 'Tatra (Czechia)'),
(66886, 56496, 'cs', 'name', 'Společnost pro Trvale Udržitelný Život'),
(66887, 56497, 'en', 'name', 'Prison Service of the Czech Republic'),
(66888, 56497, 'cs', 'name', 'VězeňskĆ” služba ČeskĆ© republiky'),
(66889, 56498, 'en', 'name', 'Czechoslovak Society of Arts and Sciences'),
(66890, 56499, 'no_lang_code', 'name', 'Tagro (Czechia)'),
(66891, 56500, 'no_lang_code', 'name', 'Takt (Czechia)'),
(66892, 56501, 'no_lang_code', 'name', 'VHS Brno (Czechia)'),
(66893, 56502, 'cs', 'name', 'Společnost pro Veřejnou Dopravu'),
(66894, 56503, 'no_lang_code', 'name', 'Taktici (Czechia)'),
(66895, 56504, 'no_lang_code', 'name', 'Via Alta (Czechia)'),
(66896, 56505, 'en', 'name', 'Czech Society for Nutrition'),
(66897, 56505, 'cs', 'name', 'Společnost pro výživu'),
(66898, 56506, 'cs', 'name', 'Společnost pro Výzkum a VzdělĆ”vĆ”nĆ­'),
(66899, 56507, 'no_lang_code', 'name', 'Viapont (Czechia)'),
(66900, 56508, 'no_lang_code', 'name', 'Vibrom (Czechia)'),
(66901, 56509, 'no_lang_code', 'name', 'Taranis Invest (Czechia)'),
(66902, 56510, 'en', 'name', 'Science and Technology Parks Association'),
(66903, 56510, 'cs', 'name', 'Společnost Vědeckotechnických ParkÅÆ'),
(66904, 56511, 'no_lang_code', 'name', 'Tarpo (Czechia)'),
(66905, 56512, 'no_lang_code', 'name', 'Viditech (Czechia)'),
(66906, 56513, 'cs', 'name', 'Spolek PRO BIO PoradenstvĆ­'),
(66907, 56514, 'no_lang_code', 'name', 'Tatsuno Europe (Czechia)'),
(66908, 56515, 'no_lang_code', 'name', 'Wine cellars KutnĆ” Hora (Czechia)'),
(66909, 56516, 'no_lang_code', 'name', 'SportovnĆ­ Centrum Atlas (Czechia)'),
(66910, 56517, 'no_lang_code', 'name', 'Teaz (Czechia)'),
(66911, 56518, 'en', 'name', 'Cave Administration of the Czech Republic'),
(66912, 56518, 'cs', 'name', 'SprÔva Jeskyní České Republiky'),
(66913, 56519, 'cs', 'name', 'Administration of the National Park České Švýcarsko'),
(66914, 56520, 'no_lang_code', 'name', 'Techem (Czechia)'),
(66915, 56521, 'cs', 'name', 'SprƔva NƔrodnƭho Parku Podyjƭ'),
(66916, 56522, 'no_lang_code', 'name', 'Techmix (Czechia)'),
(66917, 56523, 'cs', 'name', 'VĆ­tkovickĆ” Nemocnice'),
(66918, 56524, 'cs', 'name', 'SprĆ”va ŽelezničnĆ­ DopravnĆ­ Cesty'),
(66919, 56525, 'en', 'name', 'Institute of Theoretical Physics'),
(66920, 56525, 'zh', 'name', '中国科学院理论物理研究所'),
(66921, 56526, 'no_lang_code', 'name', 'Viton (Czechia)'),
(66922, 56527, 'no_lang_code', 'name', 'Spyron (Czechia)'),
(66923, 56528, 'no_lang_code', 'name', 'VKV Praha (Czechia)'),
(66924, 56529, 'en', 'name', 'Technical and Test Institute for Construction Prague'),
(66925, 56529, 'cs', 'name', 'Technický a zkuŔební ústav stavební Praha, s.p.'),
(66926, 56530, 'no_lang_code', 'name', 'Techniserv (Czechia)'),
(66927, 56531, 'no_lang_code', 'name', 'Technistone (Czechia)'),
(66928, 56532, 'no_lang_code', 'name', 'StavebnĆ­ Geologie - GeoprÅÆzkum ČeskĆ© Budějovice (Czechia)'),
(66929, 56533, 'no_lang_code', 'name', 'Technofiber (Czechia)'),
(66930, 56534, 'cs', 'name', 'VlastivědnĆ© Muzeum v Å umperku'),
(66931, 56535, 'no_lang_code', 'name', 'Stap (Czechia)'),
(66932, 56536, 'no_lang_code', 'name', 'Vlnovice Å pĆ­s (Czechia)'),
(66933, 56537, 'cs', 'name', 'TechnologickĆ” platforma EnergetickĆ” bezpečnost ČR'),
(66934, 56537, 'en', 'name', 'Technology Platform Energy Security'),
(66935, 56538, 'no_lang_code', 'name', 'Stapro (Czechia)'),
(66936, 56539, 'cs', 'name', 'TechnologickÔ Platforma UdržitelnÔ energetika'),
(66937, 56539, 'en', 'name', 'Technology Platform Sustainable Energy for the Czech Republic'),
(66938, 56540, 'no_lang_code', 'name', 'Starmon (Czechia)'),
(66939, 56541, 'no_lang_code', 'name', 'Statek HornĆ­ Dvorce (Czechia)'),
(66940, 56542, 'no_lang_code', 'name', 'VýrobnĆ­ družstvo SlezskĆ” Hořina (Czechia)'),
(66941, 56543, 'en', 'name', 'State Regional Archives Litomerice'),
(66942, 56543, 'cs', 'name', 'StĆ”tnĆ­ oblastnĆ­ archiv v LitoměřicĆ­ch'),
(66943, 56544, 'no_lang_code', 'name', 'VodĆ”renskĆ” AkciovĆ” Společnost (Czechia)'),
(66944, 56545, 'en', 'name', 'National Technology Platform for Road Transport'),
(66945, 56545, 'cs', 'name', 'TechnologickĆ” platforma silničnĆ­ doprava'),
(66946, 56546, 'cs', 'name', 'TechnologickƩ centrum Pƭsek'),
(66947, 56547, 'en', 'name', 'Regional State Archives in Trebon'),
(66948, 56547, 'cs', 'name', 'StĆ”tnĆ­ oblastnĆ­ archiv v Třeboni'),
(66949, 56548, 'no_lang_code', 'name', 'VodĆ”renskĆ” Společnost Chrudim (Czechia)'),
(66950, 56549, 'no_lang_code', 'name', 'TechTest (Czechia)'),
(66951, 56550, 'no_lang_code', 'name', 'VodÔrna KÔraný (Czechia)'),
(66952, 56551, 'no_lang_code', 'name', 'VodnĆ­ Cesty (Czechia)'),
(66953, 56552, 'no_lang_code', 'name', 'Teknia (Czechia)'),
(66954, 56553, 'no_lang_code', 'name', 'VODNI DILA - TBD (Czechia)'),
(66955, 56554, 'no_lang_code', 'name', 'O2 Czech Republic (Czechia)'),
(66956, 56555, 'no_lang_code', 'name', 'VodnĆ­ zdroje Chrudim (Czechia)'),
(66957, 56556, 'en', 'name', 'State Veterinary Administration'),
(66958, 56557, 'no_lang_code', 'name', 'VodnĆ­ Zdroje Ekomonitor (Czechia)'),
(66959, 56558, 'no_lang_code', 'name', 'VodnĆ­ Zdroje GLS Praha (Czechia)'),
(66960, 56559, 'no_lang_code', 'name', 'Vyrtych TPI (Czechia)'),
(66961, 56560, 'no_lang_code', 'name', 'Vodní zdroje HoleŔov (Czechia)'),
(66962, 56561, 'no_lang_code', 'name', 'VodohospodÔřský podnik (Czechia)'),
(66963, 56562, 'no_lang_code', 'name', 'StÔtní Výzkumný Ústav pro Stavbu Strojů (Czechia)'),
(66964, 56563, 'en', 'name', 'College of Information Management Business Administration and Law'),
(66965, 56563, 'cs', 'name', 'VysokÔ Ŕkola manažerské informatiky, ekonomiky a prÔva'),
(66966, 56564, 'no_lang_code', 'name', 'Government Testing Laboratory of Machines (Czechia)'),
(66967, 56564, 'cs', 'name', 'StÔtní zkuŔebna strojů'),
(66968, 56565, 'no_lang_code', 'name', 'Vojenské Lesy a Statky ČR (Czechia)'),
(66969, 56566, 'no_lang_code', 'name', 'Vp Agro (Czechia)'),
(66970, 56567, 'cs', 'name', 'VyŔŔí OdbornĆ” Å kola InformačnĆ­ch Služeb'),
(66971, 56568, 'cs', 'name', 'VyŔŔí OdbornĆ” Å kola PedagogickĆ” a SociĆ”lnĆ­ StřednĆ­ OdbornĆ” Å kola PedagogickĆ” a GymnĆ”zium Praha 6'),
(66972, 56569, 'no_lang_code', 'name', 'Vrsanska Uhelna (Czechia)'),
(66973, 56570, 'no_lang_code', 'name', 'Stavoprojekta (Czechia)'),
(66974, 56571, 'no_lang_code', 'name', 'Stavos Brno (Czechia)'),
(66975, 56572, 'no_lang_code', 'name', 'Vrtný a Geologický Průzkum (Czechia)'),
(66976, 56573, 'no_lang_code', 'name', 'VTL Blansko (Czechia)'),
(66977, 56574, 'cs', 'name', 'VyŔŔí OdbornĆ” Å kola StřednĆ­ PrÅÆmyslovĆ” Å kola'),
(66978, 56575, 'en', 'name', 'Stein Resort'),
(66979, 56576, 'no_lang_code', 'name', 'Vuchz (Czechia)'),
(66980, 56577, 'no_lang_code', 'name', 'Steinhauser (Czechia)'),
(66981, 56578, 'cs', 'name', 'VýzkumnÔ Stanice VinohradnickÔ'),
(66982, 56579, 'no_lang_code', 'name', 'Vums Legend (Czechia)'),
(66983, 56580, 'no_lang_code', 'name', 'Vupek - Economy (Czechia)'),
(66984, 56581, 'no_lang_code', 'name', 'Vuste - Apis (Czechia)'),
(66985, 56582, 'no_lang_code', 'name', 'Stinchcombe Technology (Czechia)'),
(66986, 56583, 'cs', 'name', 'VzdělĆ”vacĆ­ centrum pro veřejnou SprĆ”vu'),
(66987, 56584, 'no_lang_code', 'name', 'Vuvl (Czechia)'),
(66988, 56585, 'no_lang_code', 'name', 'STMicroelectronics (Czechia)'),
(66989, 56586, 'no_lang_code', 'name', 'Vws Memsep (Czechia)'),
(66990, 56587, 'en', 'name', 'Society for Ethnomusicology'),
(66991, 56588, 'no_lang_code', 'name', 'Výrobně ObchodnĆ­ Družstvo Zdislavice (Czechia)'),
(66992, 56589, 'no_lang_code', 'name', 'TESCO SW (Czechia)'),
(66993, 56590, 'no_lang_code', 'name', 'TESLA Electrontubes (Czechia)'),
(66994, 56591, 'en', 'name', 'Society for the Study of Social Problems'),
(66995, 56592, 'no_lang_code', 'name', 'Testima (Czechia)'),
(66996, 56593, 'en', 'name', 'Southern Historical Association'),
(66997, 56594, 'no_lang_code', 'name', 'Maspex (Czechia)'),
(66998, 56595, 'sv', 'name', 'Svenska Akademien'),
(66999, 56595, 'en', 'name', 'Swedish Academy'),
(67000, 56596, 'no_lang_code', 'name', 'Walramcom (Czechia)'),
(67001, 56597, 'en', 'name', 'Theatre Library Association'),
(67002, 56598, 'no_lang_code', 'name', 'TG Drives (Czechia)'),
(67003, 56599, 'no_lang_code', 'name', 'Watrex (Czechia)'),
(67004, 56600, 'en', 'name', 'Weed Science Society of America'),
(67005, 56601, 'no_lang_code', 'name', 'TGS Nastroje-Stroje-Technologicke Sluzby (Czechia)'),
(67006, 56602, 'no_lang_code', 'name', 'Wekus (Czechia)'),
(67007, 56603, 'en', 'name', 'Prague Castle'),
(67008, 56603, 'cs', 'name', 'SprÔva Pražského Hradu'),
(67009, 56604, 'no_lang_code', 'name', 'Thermona (Czechia)'),
(67010, 56605, 'no_lang_code', 'name', 'Welltest (Czechia)'),
(67011, 56606, 'no_lang_code', 'name', 'TovĆ”rna HasicĆ­ Techniky Polička (Czechia)'),
(67012, 56607, 'no_lang_code', 'name', 'Wienerberger (Czechia)'),
(67013, 56608, 'no_lang_code', 'name', 'Wiesner Hager (Czechia)'),
(67014, 56609, 'no_lang_code', 'name', 'TIRSO (Czechia)'),
(67015, 56610, 'no_lang_code', 'name', 'TiĆŗ-Plast (Czechia)'),
(67016, 56611, 'no_lang_code', 'name', 'TLP (Czechia)'),
(67017, 56612, 'no_lang_code', 'name', 'Wista (Czechia)'),
(67018, 56613, 'no_lang_code', 'name', 'Wolf and Danniel (Czechia)'),
(67019, 56614, 'no_lang_code', 'name', 'Wolfsberg LeteckƔ TovƔrna (Czechia)'),
(67020, 56615, 'no_lang_code', 'name', 'Univerza (Czechia)'),
(67021, 56616, 'no_lang_code', 'name', 'Wombat (Czechia)'),
(67022, 56617, 'no_lang_code', 'name', 'Woodcomp (Czechia)'),
(67023, 56618, 'no_lang_code', 'name', 'TNS Servis (Czechia)'),
(67024, 56619, 'no_lang_code', 'name', 'Workswell (Czechia)'),
(67025, 56620, 'no_lang_code', 'name', 'UPS Technology (Czechia)'),
(67026, 56621, 'no_lang_code', 'name', 'X Com Base (Czechia)'),
(67027, 56622, 'no_lang_code', 'name', 'Tocoen (Czechia)'),
(67028, 56623, 'no_lang_code', 'name', 'UpVision (Czechia)'),
(67029, 56624, 'no_lang_code', 'name', 'X Therma'),
(67030, 56625, 'no_lang_code', 'name', 'Toma (Czechia)'),
(67031, 56626, 'no_lang_code', 'name', 'Urbanismus Architektura Design Studio (Czechia)'),
(67032, 56627, 'no_lang_code', 'name', 'XT Card (Czechia)'),
(67033, 56628, 'no_lang_code', 'name', 'Tomst (Czechia)'),
(67034, 56629, 'no_lang_code', 'name', 'Ybux (Czechia)'),
(67035, 56630, 'no_lang_code', 'name', 'Top - Modern (Czechia)'),
(67036, 56631, 'no_lang_code', 'name', 'Top Alulit (Czechia)'),
(67037, 56632, 'no_lang_code', 'name', 'Top-Bio (Czechia)'),
(67038, 56633, 'no_lang_code', 'name', 'Zepo Bělohrad (Czechia)'),
(67039, 56634, 'no_lang_code', 'name', 'Z Group Steel Holding (Czechia)'),
(67040, 56635, 'no_lang_code', 'name', 'ZaklƔdƔnƭ Staveb (Czechia)'),
(67041, 56636, 'no_lang_code', 'name', 'TOS Svitavy (Czechia)'),
(67042, 56637, 'no_lang_code', 'name', 'Toseda (Czechia)'),
(67043, 56638, 'cs', 'name', 'ZĆ”kladnĆ­ Å kola a MateřskĆ” Å kola Angel'),
(67044, 56639, 'no_lang_code', 'name', 'Total (Czechia)'),
(67045, 56640, 'en', 'name', 'Institute for State Control of Veterinary Biologicals and Medicines'),
(67046, 56640, 'cs', 'name', 'Ústav pro stĆ”tnĆ­ kontrolu veterinĆ”rnĆ­ch biopreparĆ”tÅÆ a lĆ©Äiv'),
(67047, 56641, 'cs', 'name', 'ToulcÅÆv DvÅÆr'),
(67048, 56642, 'no_lang_code', 'name', 'Tovek (Czechia)'),
(67049, 56643, 'cs', 'name', 'ZÔkladní Ŕkola Brno'),
(67050, 56644, 'en', 'name', 'Institute for the Study of Totalitarian Regimes'),
(67051, 56644, 'cs', 'name', 'Ústav pro Studium Totalitních Režimů'),
(67052, 56645, 'cs', 'name', 'ZÔkladní Škola Vachkova'),
(67053, 56646, 'no_lang_code', 'name', 'Tpa Čr (Czechia)'),
(67054, 56647, 'cs', 'name', 'Ústav Sportovní Medicíny'),
(67055, 56648, 'no_lang_code', 'name', 'Transcon Electronic Systems (Czechia)'),
(67056, 56649, 'cs', 'name', 'ZĆ”padočeskĆ” Galerie v Plzni'),
(67057, 56650, 'no_lang_code', 'name', 'ZAS Věž (Czechia)'),
(67058, 56651, 'cs', 'name', 'Ústav T. G. Masaryka'),
(67059, 56652, 'no_lang_code', 'name', 'Trask Solutions (Czechia)'),
(67060, 56653, 'en', 'name', 'Institute for Spatial Development'),
(67061, 56653, 'cs', 'name', 'Ústav územního rozvoje'),
(67062, 56654, 'no_lang_code', 'name', 'Tratec (Czechia)'),
(67063, 56655, 'no_lang_code', 'name', 'Trendex Nova (Czechia)'),
(67064, 56656, 'no_lang_code', 'name', 'Žatec (Czechia)'),
(67065, 56657, 'no_lang_code', 'name', 'Trevos Kostalov (Czechia)'),
(67066, 56658, 'no_lang_code', 'name', 'Ústav Využití Plynu (Czechia)'),
(67067, 56659, 'no_lang_code', 'name', 'Trevos (Czechia)'),
(67068, 56660, 'cs', 'name', 'ZD KrƔsnƔ Hora Nad Vltavou (Czechia)'),
(67069, 56661, 'no_lang_code', 'name', 'Triangolo (Czechia)'),
(67070, 56662, 'en', 'name', 'Central Institute for Supervising and Testing in Agriculture'),
(67071, 56662, 'cs', 'name', 'ÚstřednĆ­ kontrolnĆ­ a zkuÅ”ebnĆ­ Ćŗstav zemědělský'),
(67072, 56663, 'no_lang_code', 'name', 'TriFoil Imaging (United States)'),
(67073, 56664, 'no_lang_code', 'name', 'Triga (Czechia)'),
(67074, 56665, 'no_lang_code', 'name', 'Trigad (Czechia)'),
(67075, 56666, 'no_lang_code', 'name', 'V-Projekt (Czechia)'),
(67076, 56667, 'no_lang_code', 'name', 'ViDiS (Czechia)'),
(67077, 56668, 'no_lang_code', 'name', 'TriloByte Statistical Software (Czechia)'),
(67078, 56669, 'no_lang_code', 'name', 'Trimill (Czechia)'),
(67079, 56670, 'no_lang_code', 'name', 'Vial (Norway)'),
(67080, 56671, 'no_lang_code', 'name', 'VMK (Czechia)'),
(67081, 56672, 'cs', 'name', 'Zdravotní Ústav Se Sídlem v Ústí nad Labem'),
(67082, 56673, 'no_lang_code', 'name', 'Třinecký Inženýring (Czechia)'),
(67083, 56674, 'no_lang_code', 'name', 'Trios (Czechia)'),
(67084, 56675, 'cs', 'name', 'ZdravotnickĆ” ZĆ”chrannĆ” Služba HlavnĆ­ho Města Prahy'),
(67085, 56676, 'cs', 'name', 'ZdravotnickĆ” ZĆ”chrannĆ” Služba JihočeskĆ©ho Kraje'),
(67086, 56677, 'no_lang_code', 'name', 'Vafo Praha (Czechia)'),
(67087, 56678, 'no_lang_code', 'name', 'Triton Turnov (Czechia)'),
(67088, 56679, 'cs', 'name', 'ZdravotnickÔ ZÔchrannÔ Služba KrÔlovéhradeckého Kraje'),
(67089, 56680, 'no_lang_code', 'name', 'Vakabrnocz (Czechia)'),
(67090, 56681, 'no_lang_code', 'name', 'Trs (Czechia)'),
(67091, 56682, 'no_lang_code', 'name', 'Vaklima (Czechia)'),
(67092, 56683, 'en', 'name', 'Institute of Industrial Engineering'),
(67093, 56684, 'no_lang_code', 'name', 'ZEAS Lysice (Czechia)'),
(67094, 56685, 'no_lang_code', 'name', 'TSI System (Czechia)'),
(67095, 56686, 'no_lang_code', 'name', 'VƔlcovna Trub (Czechia)'),
(67096, 56687, 'no_lang_code', 'name', 'Zebr (Czechia)'),
(67097, 56688, 'no_lang_code', 'name', 'Valeo (Czechia)'),
(67098, 56689, 'no_lang_code', 'name', 'TT Servis (Czechia)'),
(67099, 56690, 'no_lang_code', 'name', 'Zeelandia (Czechia)'),
(67100, 56691, 'cs', 'name', 'ZelinÔřskĆ” unie Čech a Moravy'),
(67101, 56692, 'no_lang_code', 'name', 'Walmark (Czechia)'),
(67102, 56693, 'no_lang_code', 'name', 'Želivka (Czechia)'),
(67103, 56694, 'no_lang_code', 'name', 'TTC Marconi (Czechia)'),
(67104, 56695, 'no_lang_code', 'name', 'ZemědělskĆ© Družstvo Å itbořice (Czechia)'),
(67105, 56696, 'no_lang_code', 'name', 'Termosondy Kladno (Czechia)'),
(67106, 56697, 'no_lang_code', 'name', 'Zemcheba (Czechia)'),
(67107, 56698, 'no_lang_code', 'name', 'TM Jesenice (Czechia)'),
(67108, 56699, 'no_lang_code', 'name', 'TTS Group (Czechia)'),
(67109, 56700, 'no_lang_code', 'name', 'ZemědělskĆ” a DopravnĆ­ Technika (Czechia)'),
(67110, 56701, 'en', 'name', 'Prague Zoo'),
(67111, 56701, 'cs', 'name', 'ZoologickĆ” Zahrada'),
(67112, 56702, 'no_lang_code', 'name', 'ZP Otice (Czechia)'),
(67113, 56703, 'no_lang_code', 'name', 'ZemědělskĆ” Agentura (Czechia)'),
(67114, 56704, 'no_lang_code', 'name', 'Sloveč (Czechia)'),
(67115, 56705, 'no_lang_code', 'name', 'ZPA Smart Energy (Czechia)'),
(67116, 56706, 'no_lang_code', 'name', 'ZPA Ekoreg (Czechia)'),
(67117, 56707, 'no_lang_code', 'name', 'Turnex (Czechia)'),
(67118, 56708, 'no_lang_code', 'name', 'ZPA Pecky (Czechia)'),
(67119, 56709, 'no_lang_code', 'name', 'TÜV Nord (Czechia)'),
(67120, 56710, 'no_lang_code', 'name', 'TVD TechnickÔ Výroba (Czechia)'),
(67121, 56711, 'no_lang_code', 'name', 'SlezskĆ” Dubina (Czechia)'),
(67122, 56712, 'cs', 'name', 'TyfloCentrum Brno'),
(67123, 56713, 'no_lang_code', 'name', 'Agroholding (Czechia)'),
(67124, 56714, 'no_lang_code', 'name', 'Tylex Letovice (Czechia)'),
(67125, 56715, 'no_lang_code', 'name', 'ZemědělskĆ© družstvo BaÅ”nice (Czechia)'),
(67126, 56716, 'no_lang_code', 'name', 'ŽPSV (Czechia)'),
(67127, 56717, 'no_lang_code', 'name', 'ZPT Vigantice (Czechia)'),
(67128, 56718, 'no_lang_code', 'name', 'ZPV Rožnov (Czechia)'),
(67129, 56719, 'no_lang_code', 'name', 'ŽSD (Czechia)'),
(67130, 56720, 'no_lang_code', 'name', 'ZUD (Czechia)'),
(67131, 56721, 'no_lang_code', 'name', 'ZVU (Czechia)'),
(67132, 56722, 'no_lang_code', 'name', 'ZVU KovƔrna (Czechia)'),
(67133, 56723, 'no_lang_code', 'name', 'ZVVZ (Czechia)'),
(67134, 56724, 'cs', 'name', 'TýmovÔ iniciativa pro místní udržitelný rozvoj'),
(67135, 56725, 'no_lang_code', 'name', 'U-24 (Czechia)'),
(67136, 56726, 'no_lang_code', 'name', 'Unex (Czechia)'),
(67137, 56727, 'no_lang_code', 'name', 'ZZN Pelhřimov (Czechia)'),
(67138, 56728, 'no_lang_code', 'name', 'Unica Technologies (Czechia)'),
(67139, 56729, 'no_lang_code', 'name', 'Unidataz (Czechia)'),
(67140, 56730, 'cs', 'name', 'ZemědělskĆ© Družstvo Čechtice'),
(67141, 56731, 'no_lang_code', 'name', 'ZemědělskĆ” a ekologickĆ” regionĆ”lnĆ­ agentura (Czechia)'),
(67142, 56732, 'cs', 'name', 'ZemědělskĆ© Družstvo Dolany'),
(67143, 56733, 'cs', 'name', 'ZemědělskĆ© Družstvo JesenĆ­k'),
(67144, 56734, 'no_lang_code', 'name', 'ZEZ Praha (Czechia)'),
(67145, 56735, 'no_lang_code', 'name', 'ZF Engineering (Czechia)'),
(67146, 56736, 'cs', 'name', 'ZemědělskĆ© Družstvo Kojčice'),
(67147, 56737, 'no_lang_code', 'name', 'Živa (Czechia)'),
(67148, 56738, 'cs', 'name', 'Život90'),
(67149, 56739, 'cs', 'name', 'ZemědělskĆ© družstvo LiběŔice'),
(67150, 56740, 'cs', 'name', 'ZkuŔebna Kamene a Kameniva'),
(67151, 56741, 'cs', 'name', 'ZemědělskĆ© Družstvo Maleč'),
(67152, 56742, 'no_lang_code', 'name', 'ZlĆ­n Precision (Czechia)'),
(67153, 56743, 'no_lang_code', 'name', 'Značky Plzeň (Czechia)'),
(67154, 56744, 'en', 'name', 'Adriatic Research Institute'),
(67155, 56745, 'cs', 'name', 'Znalecký Ústav Bezpečnosti a Ochrany ZdravĆ­'),
(67156, 56746, 'cs', 'name', 'ZemědělskĆ© Družstvo VlastnĆ­kÅÆ MrĆ”kotĆ­n'),
(67157, 56747, 'cs', 'name', 'Český Svaz OchrĆ”ncÅÆ Přírody VlaÅ”im'),
(67158, 56748, 'no_lang_code', 'name', 'ZemědělskĆ© Družstvo Vrchovina (Czechia)'),
(67159, 56749, 'cs', 'name', 'ZemědělskĆ© ObchodnĆ­ Družstvo KĆ”men'),
(67160, 56750, 'no_lang_code', 'name', 'ZONER software (Czechia)'),
(67161, 56751, 'en', 'name', 'Joint Laboratory for Extreme Conditions Matter Properties'),
(67162, 56751, 'zh', 'name', 'č„æå—ē§‘ęŠ€å¤§å­¦ęžē«Æę”ä»¶ē‰©č“Øē‰¹ę€§č”åˆå®žéŖŒå®¤'),
(67163, 56752, 'no_lang_code', 'name', 'Zemos (Czechia)'),
(67164, 56753, 'no_lang_code', 'name', 'Sanofi (Czechia)'),
(67165, 56754, 'en', 'name', 'Avraham Y. Goldratt Institute'),
(67166, 56755, 'en', 'name', 'Designability'),
(67167, 56756, 'de', 'name', 'Beckmann-Institut für Technologieentwicklung'),
(67168, 56757, 'en', 'name', 'Animal Health Institute'),
(67169, 56758, 'en', 'name', 'Board Institute'),
(67170, 56759, 'en', 'name', 'Asbestos Institute'),
(67171, 56760, 'en', 'name', 'Canadian Energy Research Institute'),
(67172, 56761, 'en', 'name', 'The Cancer Institute Hospital'),
(67173, 56761, 'ja', 'name', 'ćŒć‚“ē ”ęœ‰ę˜Žē—…é™¢'),
(67174, 56762, 'no_lang_code', 'name', 'Daikin (United States)'),
(67175, 56762, 'ja', 'name', 'ćƒ€ć‚¤ć‚­ćƒ³å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(67176, 56763, 'en', 'name', 'DermaCare Neuroscience Institute'),
(67177, 56764, 'de', 'name', 'Deutsches Institut für Zell und Gewebeersatz'),
(67178, 56764, 'en', 'name', 'German Institute for Cell and Tissue Replacement'),
(67179, 56765, 'en', 'name', 'JSC Scientific Research Institute of Motor Transport'),
(67180, 56765, 'ru', 'name', 'ŠžŠŠž ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾Š³Š¾ транспорта'),
(67181, 56766, 'no_lang_code', 'name', 'Foerster (United States)'),
(67182, 56767, 'en', 'name', 'Gravure Association of the Americas'),
(67183, 56768, 'en', 'name', 'Guangzhou Special Pressure Equipment Testing and Research Institute'),
(67184, 56768, 'zh', 'name', 'å¹æå·žē‰¹ē§ę‰æåŽ‹č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(67185, 56769, 'de', 'name', 'Senatsverwaltung für Wirtschaft, Energie und Betriebe'),
(67186, 56770, 'de', 'name', 'Institut für Industrielle Pharmazie'),
(67187, 56771, 'en', 'name', 'Institute for Advanced Engineering'),
(67188, 56771, 'ko', 'name', 'ź³ źø‰ 공학 ģ—°źµ¬ģ†Œ'),
(67189, 56772, 'de', 'name', 'Institut Kardiale Diagnostik und Therapie'),
(67190, 56773, 'de', 'name', 'Institut für Korrosionsschutz Dresden'),
(67191, 56774, 'de', 'name', 'ICM Chemnitz'),
(67192, 56775, 'en', 'name', 'Institute of Electrodynamics'),
(67193, 56775, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ електроГинаміки ŠŠŠ України'),
(67194, 56776, 'en', 'name', 'Institute for Environmental Management'),
(67195, 56777, 'es', 'name', 'Instituto HologrƔfico Terrasun'),
(67196, 56777, 'en', 'name', 'Terrasun Holographic Institute'),
(67197, 56778, 'en', 'name', 'Fesenkov Astrophysical Institute'),
(67198, 56778, 'kk', 'name', 'Астрофизический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š’. Š“. Фесенкова'),
(67199, 56779, 'az', 'name', 'Neft Kimya Prosesləri Institutu'),
(67200, 56780, 'no_lang_code', 'name', 'Liaison Technologies (United States)'),
(67201, 56781, 'en', 'name', 'Inha University in Tashkent'),
(67202, 56781, 'uz', 'name', 'Toshkent Shahridagi Inha Universiteti'),
(67203, 56782, 'en', 'name', 'Islamic Azad University, Dezful Branch'),
(67204, 56782, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŲŒ ŲÆŲ²ŁŁˆŁ„'),
(67205, 56783, 'pl', 'name', 'Instytut Innowacji Przemysłu Mleczarskiego'),
(67206, 56784, 'en', 'name', 'Beijing Dongfang Hongsheng New Energy Application Technology Research Institute'),
(67207, 56784, 'zh', 'name', 'åŒ—äŗ¬äøœę–¹ēŗ¢å‡ę–°čƒ½ęŗåŗ”ē”ØęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åøē®€ä»‹'),
(67208, 56785, 'no_lang_code', 'name', 'Čisté Kovy (Czechia)'),
(67209, 56786, 'no_lang_code', 'name', 'Bernard (Czechia)'),
(67210, 56787, 'no_lang_code', 'name', 'Ipra (Czechia)'),
(67211, 56788, 'no_lang_code', 'name', 'VH Pharma (Czechia)'),
(67212, 56789, 'pt', 'name', 'Instituto Sapientia'),
(67213, 56790, 'de', 'name', 'Institut für Telematik'),
(67214, 56790, 'en', 'name', 'Institute for Telematics'),
(67215, 56791, 'en', 'name', 'Brick and Tile Research Institute'),
(67216, 56791, 'de', 'name', 'Institut für Ziegelforschung Essen e. V.'),
(67217, 56792, 'en', 'name', 'The International Heart Institute of Montana'),
(67218, 56793, 'pt', 'name', 'Instituto de Pesquisas da Marinha'),
(67219, 56794, 'en', 'name', 'Laser Spine Institute'),
(67220, 56795, 'en', 'name', 'Korea Testing & Research Institute'),
(67221, 56795, 'ko', 'name', 'ķ•œźµ­ķ™”ķ•™ģœµķ•©ģ‹œķ—˜ģ—°źµ¬ģ›'),
(67222, 56796, 'en', 'name', 'Korean Institute of Footwear and Leather Technology'),
(67223, 56796, 'ko', 'name', 'ķ•œźµ­ģ‹ ė°œķ”¼ķ˜ģ—°źµ¬ģ›'),
(67224, 56797, 'en', 'name', 'Ludwig Cancer Research'),
(67225, 56798, 'no_lang_code', 'name', 'Mitsubishi Research Institute (Japan)'),
(67226, 56798, 'ja', 'name', 'äø‰č±ē·åˆē ”ē©¶ę‰€'),
(67227, 56799, 'en', 'name', 'Molecular Medicine Research Institute'),
(67228, 56800, 'en', 'name', 'Medipolis Medical Research Institute'),
(67229, 56801, 'en', 'name', 'Northeast Maritime Institute'),
(67230, 56802, 'en', 'name', 'Southern African Institute of Mining and Metallurgy'),
(67231, 56803, 'en', 'name', 'Ukrainian Oil and Gas Institute'),
(67232, 56803, 'uk', 'name', 'Ukrainsky neftegazovy institut'),
(67233, 56804, 'no_lang_code', 'name', 'Kemira (Germany)'),
(67234, 56805, 'en', 'name', 'Shazhou Professional Institute Of Technology'),
(67235, 56805, 'zh', 'name', 'ę²™ę“²čŒäøšå·„å­¦é™¢'),
(67236, 56806, 'no_lang_code', 'name', 'Takasago (United States)'),
(67237, 56807, 'no_lang_code', 'name', 'ArcelorMittal (United States)'),
(67238, 56808, 'en', 'name', 'Steel Tank Institute'),
(67239, 56809, 'en', 'name', 'Huaneng Clean Energy Research Institute'),
(67240, 56809, 'zh', 'name', 'ęø…ę“čƒ½ęŗęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(67241, 56810, 'no_lang_code', 'name', 'Business Innovation Center (Bulgaria)'),
(67242, 56811, 'no_lang_code', 'name', '3Bar Biologics (United States)'),
(67243, 56812, 'no_lang_code', 'name', 'Accelerated Ag Technologies (United States)'),
(67244, 56813, 'no_lang_code', 'name', 'Aging Community Coordinated Enterprises and Supportive Services (United States)'),
(67245, 56814, 'no_lang_code', 'name', 'Access Sensor Technologies (United States)'),
(67246, 56815, 'en', 'name', 'State Key Laboratory of Oncogene and Related Genes'),
(67247, 56815, 'zh', 'name', 'ē™ŒåŸŗå› åŠē›øå…³åŸŗå› å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(67248, 56816, 'en', 'name', 'Advanced Heliophysics'),
(67249, 56817, 'no_lang_code', 'name', 'Aeolis Research (United States)'),
(67250, 56818, 'no_lang_code', 'name', 'AgraTek (United States)'),
(67251, 56819, 'no_lang_code', 'name', 'Agren (United States)'),
(67252, 56820, 'no_lang_code', 'name', 'Airfoils (United States)'),
(67253, 56821, 'en', 'name', 'State Key Laboratory of Plant Genomics'),
(67254, 56821, 'zh', 'name', 'ę¤ē‰©åŸŗå› ē»„å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(67255, 56822, 'no_lang_code', 'name', 'AlgaXperts (United States)'),
(67256, 56823, 'en', 'name', 'Alliance of Community Assistance Ministries'),
(67257, 56824, 'en', 'name', 'Calypso Farm and Ecology Center'),
(67258, 56825, 'en', 'name', 'Carolina Farm Stewardship Association'),
(67259, 56826, 'no_lang_code', 'name', 'Allyke (United States)'),
(67260, 56827, 'no_lang_code', 'name', 'Catalina Sea Ranch (United States)'),
(67261, 56828, 'no_lang_code', 'name', 'Alpha Space Test and Research Alliance (United States)'),
(67262, 56829, 'en', 'name', 'The American Chestnut Foundation'),
(67263, 56830, 'en', 'name', 'American Olive Oil Producers Association'),
(67264, 56831, 'no_lang_code', 'name', 'American Solar (United States)'),
(67265, 56832, 'no_lang_code', 'name', 'AmeriQual Group (United States)'),
(67266, 56833, 'en', 'name', 'Ear and Balance Institute'),
(67267, 56834, 'en', 'name', 'Center of Southwest Culture'),
(67268, 56835, 'nl', 'name', 'Nederlands Oogheelkundig Onderzoek'),
(67269, 56836, 'en', 'name', 'Center Of Theological Inquiry'),
(67270, 56837, 'no_lang_code', 'name', 'Annidis (Canada)'),
(67271, 56838, 'no_lang_code', 'name', 'EarthDance'),
(67272, 56839, 'no_lang_code', 'name', 'Antimicrobial Materials (United States)'),
(67273, 56840, 'no_lang_code', 'name', 'Applied Coherent Technology (United States)'),
(67274, 56841, 'no_lang_code', 'name', 'Aptimmune Biologics (United States)'),
(67275, 56842, 'no_lang_code', 'name', 'Cereon Biotechnology (United States)'),
(67276, 56843, 'no_lang_code', 'name', 'Ceres Imaging (United States)'),
(67277, 56844, 'en', 'name', 'Arcadia');
INSERT INTO `ror_settings` VALUES
(67278, 56845, 'en', 'name', 'Arkansas Hunger Relief Alliance'),
(67279, 56846, 'en', 'name', 'Economic Development Commission of Floridas Space Coast'),
(67280, 56847, 'en', 'name', 'McAuliffe-Shepard Discovery Center'),
(67281, 56848, 'no_lang_code', 'name', 'Asilomar Bio (United States)'),
(67282, 56849, 'en', 'name', 'EdVenture'),
(67283, 56850, 'en', 'name', 'City Schoolyard Garden'),
(67284, 56851, 'no_lang_code', 'name', 'Clairvoyant Technology (United States)'),
(67285, 56852, 'no_lang_code', 'name', 'Eloret (United States)'),
(67286, 56853, 'no_lang_code', 'name', 'Clean Energy (United States)'),
(67287, 56854, 'no_lang_code', 'name', 'ClearSign Combustion (United States)'),
(67288, 56855, 'en', 'name', 'Association of Africans Living in Vermont'),
(67289, 56856, 'no_lang_code', 'name', 'CBS Corporation (United States)'),
(67290, 56857, 'no_lang_code', 'name', 'Eltopia Communications (United States)'),
(67291, 56858, 'no_lang_code', 'name', 'Enterade (United States)'),
(67292, 56859, 'en', 'name', 'Community EnCompass'),
(67293, 56860, 'en', 'name', 'College of the Muscogee Nation'),
(67294, 56861, 'no_lang_code', 'name', 'Bilcare Research (United States)'),
(67295, 56862, 'no_lang_code', 'name', 'BioChemInsights (United States)'),
(67296, 56863, 'no_lang_code', 'name', 'Epicrop Technologies (United States)'),
(67297, 56864, 'en', 'name', 'Community Action Agency of St. Louis County'),
(67298, 56865, 'en', 'name', 'Community Action of Skagit County'),
(67299, 56866, 'en', 'name', 'Community Alliance with Family Farmers'),
(67300, 56867, 'sv', 'name', 'Sven och Dagmar SalƩn Stiftelse'),
(67301, 56868, 'en', 'name', 'Community Food and Agriculture Coalition'),
(67302, 56869, 'sv', 'name', 'Jerringfonden'),
(67303, 56870, 'no_lang_code', 'name', 'BotaniPharm (United States)'),
(67304, 56871, 'en', 'name', 'Comparative Aircraft Flight Efficiency Foundation'),
(67305, 56872, 'no_lang_code', 'name', 'Concurrent Solutions (United States)'),
(67306, 56873, 'no_lang_code', 'name', 'BrioBiotech (United States)'),
(67307, 56874, 'sv', 'name', 'LƤkemedelsakademin'),
(67308, 56874, 'en', 'name', 'Swedish Academy of Pharmaceutical Sciences'),
(67309, 56875, 'en', 'name', 'Conference of Research Workers in Animal Diseases'),
(67310, 56876, 'no_lang_code', 'name', 'Connecting Health Innovations (United States)'),
(67311, 56877, 'no_lang_code', 'name', 'eWind Solutions (United States)'),
(67312, 56878, 'no_lang_code', 'name', 'Exosome Diagnostics (United States)'),
(67313, 56879, 'en', 'name', 'Cornell Cooperative Extension Association of Jefferson County'),
(67314, 56880, 'no_lang_code', 'name', 'ExoTerra Resources (United States)'),
(67315, 56881, 'en', 'name', 'Experimental Station'),
(67316, 56882, 'no_lang_code', 'name', 'Impact Instruments (South Africa)'),
(67317, 56883, 'en', 'name', 'Cornell Cooperative Extension Sullivan County'),
(67318, 56884, 'en', 'name', 'Exploration Place'),
(67319, 56885, 'no_lang_code', 'name', 'Harry Saul Minnow Farm (United States)'),
(67320, 56886, 'no_lang_code', 'name', 'Cottage Systems (United States)'),
(67321, 56887, 'no_lang_code', 'name', 'Roche (China)'),
(67322, 56888, 'en', 'name', 'Hart Community Homes'),
(67323, 56889, 'no_lang_code', 'name', 'Crabtree (United States)'),
(67324, 56890, 'en', 'name', 'Farmer Veteran Coalition'),
(67325, 56891, 'no_lang_code', 'name', 'Craig Technologies (United States)'),
(67326, 56892, 'en', 'name', 'Fayette County Community Action Agency'),
(67327, 56893, 'en', 'name', 'Harvest Home Farmer’s Market'),
(67328, 56894, 'en', 'name', 'Crossroads Community Food Network'),
(67329, 56895, 'en', 'name', 'Field and Fork Network'),
(67330, 56896, 'en', 'name', 'Hawthorne Valley Association'),
(67331, 56897, 'en', 'name', 'DC Central Kitchen'),
(67332, 56898, 'no_lang_code', 'name', 'Florida Maxima (United States)'),
(67333, 56899, 'no_lang_code', 'name', 'Hazel Technologies (United States)'),
(67334, 56900, 'en', 'name', 'Food Bank of Northeast Georgia'),
(67335, 56901, 'en', 'name', 'Food Basket (United States)'),
(67336, 56902, 'no_lang_code', 'name', 'Heartland Plant Innovations (United States)'),
(67337, 56903, 'en', 'name', 'The Food Group'),
(67338, 56904, 'no_lang_code', 'name', 'Deep Space Industries (United States)'),
(67339, 56905, 'no_lang_code', 'name', 'Foodlink'),
(67340, 56906, 'en', 'name', 'Hebron Theological College'),
(67341, 56907, 'en', 'name', 'Foundation for Agricultural and Rural Resource Management and Sustainability'),
(67342, 56908, 'no_lang_code', 'name', 'Foundation Instruments (United States)'),
(67343, 56909, 'en', 'name', 'Delta Water Management Research Unit'),
(67344, 56910, 'en', 'name', 'Franklinton Gardens'),
(67345, 56911, 'no_lang_code', 'name', 'Kellogg’s Research Labs (United States)'),
(67346, 56912, 'en', 'name', 'Gagarin Research and Test Cosmonaut Training Center'),
(67347, 56912, 'ru', 'name', 'Центр поГготовки космонавтов имени Š®. А. Гагарина'),
(67348, 56913, 'en', 'name', 'Dunn''s Fish Farm'),
(67349, 56914, 'en', 'name', 'Kona Pacific Public Charter School'),
(67350, 56915, 'no_lang_code', 'name', 'Garner Industries (United States)'),
(67351, 56916, 'en', 'name', 'Gateway Greening'),
(67352, 56917, 'no_lang_code', 'name', 'ePaint (United States)'),
(67353, 56918, 'en', 'name', 'Lantern Community Services'),
(67354, 56919, 'no_lang_code', 'name', 'Larad (United States)'),
(67355, 56920, 'no_lang_code', 'name', 'GeoControl Systems (United States)'),
(67356, 56921, 'en', 'name', 'Arkansas Land and Community Development'),
(67357, 56922, 'no_lang_code', 'name', 'Latitude Engineering (United States)'),
(67358, 56923, 'no_lang_code', 'name', 'Hill Manufacturing (United States)'),
(67359, 56924, 'en', 'name', 'Leadership for Urban Renewal Network'),
(67360, 56925, 'en', 'name', 'Hmong American Farmers Association'),
(67361, 56926, 'en', 'name', 'Gleaners Food Bank of Indiana'),
(67362, 56927, 'no_lang_code', 'name', 'Global Algae Innovations (United States)'),
(67363, 56928, 'en', 'name', 'Ho Chunk Community Development Corporation'),
(67364, 56929, 'en', 'name', 'Level Playing Field Institute'),
(67365, 56930, 'en', 'name', 'Honey Bee Research Institute and Nature Center'),
(67366, 56931, 'en', 'name', 'Global Growers'),
(67367, 56932, 'no_lang_code', 'name', 'GMEP Engineers (United States)'),
(67368, 56933, 'en', 'name', 'Live Well Colorado'),
(67369, 56934, 'en', 'name', 'Horizon Performance'),
(67370, 56935, 'no_lang_code', 'name', 'Grafted Growers (United States)'),
(67371, 56936, 'en', 'name', 'The Local Crowd'),
(67372, 56937, 'en', 'name', 'Horn Canna Farm'),
(67373, 56938, 'en', 'name', 'Greening of Detroit'),
(67374, 56939, 'no_lang_code', 'name', 'Gross Wen Technologies (United States)'),
(67375, 56940, 'en', 'name', 'Huerta del Valle'),
(67376, 56941, 'en', 'name', 'Local Food Hub'),
(67377, 56942, 'en', 'name', 'Local Matters'),
(67378, 56943, 'en', 'name', 'The Harley School'),
(67379, 56944, 'no_lang_code', 'name', 'Malin Space Science Systems (United States)'),
(67380, 56945, 'fr', 'name', 'TƩlƩvie'),
(67381, 56946, 'en', 'name', 'Hunger Task Force'),
(67382, 56947, 'en', 'name', 'Department of Early Education and Care'),
(67383, 56948, 'en', 'name', 'MEF Associates'),
(67384, 56949, 'no_lang_code', 'name', 'ILC Dover (United States)'),
(67385, 56950, 'no_lang_code', 'name', 'MEI Technologies (United States)'),
(67386, 56951, 'no_lang_code', 'name', 'Membrane Protective Technologies (United States)'),
(67387, 56952, 'no_lang_code', 'name', 'MEP Equine Solutions (United States)'),
(67388, 56953, 'no_lang_code', 'name', 'Indigo Information Services (United States)'),
(67389, 56954, 'no_lang_code', 'name', 'LZ Technology (United States)'),
(67390, 56955, 'no_lang_code', 'name', 'Merrill (United States)'),
(67391, 56956, 'no_lang_code', 'name', 'Infinite Eversole Specialty Crop Services (United states)'),
(67392, 56957, 'no_lang_code', 'name', 'mAbDx (United States)'),
(67393, 56958, 'no_lang_code', 'name', 'InnovaSea Systems (United States)'),
(67394, 56959, 'no_lang_code', 'name', 'Made In Space (United States)'),
(67395, 56960, 'no_lang_code', 'name', 'Inquiry Technologies (United States)'),
(67396, 56961, 'no_lang_code', 'name', 'Magnetic Development (United States)'),
(67397, 56962, 'en', 'name', 'Mid Ohio Foodbank'),
(67398, 56963, 'no_lang_code', 'name', 'Integrated Concurrent Systems Associates (United States)'),
(67399, 56964, 'no_lang_code', 'name', 'Phytosynthetix (United States)'),
(67400, 56965, 'en', 'name', 'Niagara County'),
(67401, 56966, 'en', 'name', 'Pinnacle Prevention'),
(67402, 56967, 'en', 'name', 'Presbyterian Healthcare Services'),
(67403, 56968, 'en', 'name', 'Central Scientific Research Diesel Institute'),
(67404, 56968, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š“ŠøŠ·ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(67405, 56969, 'en', 'name', 'Professional Beef Services'),
(67406, 56970, 'no_lang_code', 'name', 'IRISNDT (United States)'),
(67407, 56971, 'no_lang_code', 'name', 'Professional Solutions (United States)'),
(67408, 56972, 'no_lang_code', 'name', 'Isuzu Motors (United States)'),
(67409, 56973, 'en', 'name', 'The Nurture Nature Center'),
(67410, 56974, 'no_lang_code', 'name', 'NWB Sensors (United States)'),
(67411, 56975, 'en', 'name', 'Spark Imagination and Science Center'),
(67412, 56976, 'no_lang_code', 'name', 'J M Malone and Son (United States)'),
(67413, 56977, 'no_lang_code', 'name', 'Oculogica (United States)'),
(67414, 56978, 'no_lang_code', 'name', 'SciGlob (United States)'),
(67415, 56979, 'no_lang_code', 'name', 'Odysea (United States)'),
(67416, 56980, 'no_lang_code', 'name', 'Seattle Photonics Associates (United States)'),
(67417, 56981, 'en', 'name', 'Ohio Ecological Food and Farm Association'),
(67418, 56982, 'no_lang_code', 'name', 'Chart Industries (United States)'),
(67419, 56983, 'no_lang_code', 'name', 'JES Tech (United States)'),
(67420, 56984, 'no_lang_code', 'name', 'Smart Vision Works International (United States)'),
(67421, 56985, 'en', 'name', 'Ola Grimsby Institute'),
(67422, 56986, 'no_lang_code', 'name', 'One Resonance Sensors (United States)'),
(67423, 56987, 'no_lang_code', 'name', 'Solidtech Animal Health (United States)'),
(67424, 56988, 'en', 'name', 'Rochester Roots'),
(67425, 56989, 'en', 'name', 'Somali Bantu Community Association of Maine'),
(67426, 56990, 'en', 'name', 'Open Source Robotics Foundation'),
(67427, 56991, 'en', 'name', 'Rodale Institute'),
(67428, 56992, 'no_lang_code', 'name', 'Sonomotion (United States)'),
(67429, 56993, 'en', 'name', 'Opportunity Link'),
(67430, 56994, 'en', 'name', 'South Central Community Action Programs'),
(67431, 56995, 'en', 'name', 'Southeast Island School District'),
(67432, 56996, 'en', 'name', 'Southern Appalachian Highlands Conservancy'),
(67433, 56997, 'en', 'name', 'Southwest Badger Resource Conservation and Development Council'),
(67434, 56998, 'no_lang_code', 'name', 'STS International'),
(67435, 56999, 'en', 'name', 'Southwestern Community College - North Carolina'),
(67436, 57000, 'no_lang_code', 'name', 'ORB Studio (United States)'),
(67437, 57001, 'en', 'name', 'Sacramento Food Bank and Family Services'),
(67438, 57002, 'no_lang_code', 'name', 'Kairosys (United States)'),
(67439, 57003, 'no_lang_code', 'name', 'Oregon Tilth'),
(67440, 57004, 'no_lang_code', 'name', 'Stony Creek Colors (United States)'),
(67441, 57005, 'no_lang_code', 'name', 'Stratacor (United States)'),
(67442, 57006, 'no_lang_code', 'name', 'Sunhai Bioadhesive Technologies (United States)'),
(67443, 57007, 'en', 'name', 'Sustainable Molokai'),
(67444, 57008, 'no_lang_code', 'name', 'Abzena (United States)'),
(67445, 57009, 'en', 'name', 'Organization for Refugee and Immigrant Success'),
(67446, 57010, 'no_lang_code', 'name', 'San Miguel Produce (United States)'),
(67447, 57011, 'en', 'name', 'Sustainable Aviation Foundation'),
(67448, 57012, 'no_lang_code', 'name', 'SyncThink (United States)'),
(67449, 57013, 'no_lang_code', 'name', 'PathSensors (United States)'),
(67450, 57014, 'en', 'name', 'Sciencenter'),
(67451, 57015, 'no_lang_code', 'name', 'System Science Applications (United States)'),
(67452, 57016, 'en', 'name', 'Thunder Valley Community Development Corporation'),
(67453, 57017, 'en', 'name', 'Thundermist Health Center'),
(67454, 57018, 'no_lang_code', 'name', 'Tea Hawaii (United States)'),
(67455, 57019, 'en', 'name', 'Town and Country Veterinary Clinic'),
(67456, 57020, 'no_lang_code', 'name', 'TeamScape (United States)'),
(67457, 57021, 'en', 'name', 'Tenagra Observatories'),
(67458, 57022, 'es', 'name', 'Ministerio del Poder Popular para la Educación Universitaria, Ciencia y Tecnología'),
(67459, 57023, 'en', 'name', 'Texas Organic Farmers and Gardeners Association'),
(67460, 57024, 'no_lang_code', 'name', 'XploSafe (United States)'),
(67461, 57025, 'no_lang_code', 'name', 'Trotti and Associates (United States)'),
(67462, 57026, 'en', 'name', 'Trumbull Neighborhood Partnership'),
(67463, 57027, 'en', 'name', 'Young Men''s Christian Association Of Greater Grand Rapids'),
(67464, 57028, 'en', 'name', 'Trust for Conservation Innovation'),
(67465, 57029, 'en', 'name', 'Youth Policy Institute'),
(67466, 57030, 'en', 'name', 'Youthprise'),
(67467, 57031, 'no_lang_code', 'name', 'ZetrOZ Systems (United States)'),
(67468, 57032, 'no_lang_code', 'name', 'Tubs (United States)'),
(67469, 57033, 'no_lang_code', 'name', 'Valeo Physical Therapy (United States)'),
(67470, 57034, 'no_lang_code', 'name', 'Visolis (United States)'),
(67471, 57035, 'no_lang_code', 'name', 'Unmanned Experts (United States)'),
(67472, 57036, 'no_lang_code', 'name', 'VisuGen Global (United States)'),
(67473, 57037, 'en', 'name', 'TLC Foundation'),
(67474, 57038, 'no_lang_code', 'name', 'VRM Labs (United States)'),
(67475, 57039, 'no_lang_code', 'name', 'Waste Hub (United States)'),
(67476, 57040, 'no_lang_code', 'name', 'Web Vision Centers (United States)'),
(67477, 57041, 'en', 'name', 'Wholesome Wave Foundation Charitable Ventures'),
(67478, 57042, 'no_lang_code', 'name', 'Windcall Manufacturing (United States)'),
(67479, 57043, 'en', 'name', 'Windham Regional Community Council'),
(67480, 57044, 'en', 'name', 'Wings of Eagles Discovery Center'),
(67481, 57045, 'en', 'name', 'Wisconsin Cheese Makers Association'),
(67482, 57046, 'en', 'name', 'Wisconsin Veterinary Medical Association'),
(67483, 57047, 'en', 'name', 'Working Landscapes'),
(67484, 57048, 'en', 'name', 'World Farmers'),
(67485, 57049, 'no_lang_code', 'name', 'Mill City Grows (United States)'),
(67486, 57050, 'no_lang_code', 'name', 'N&R Engineering Management & Services (United States)'),
(67487, 57051, 'en', 'name', 'Minorities in Agriculture, Natural Resources and Related Sciences'),
(67488, 57052, 'en', 'name', 'National Sustainable Agriculture Coalition'),
(67489, 57053, 'no_lang_code', 'name', 'Mirtech (United States)'),
(67490, 57054, 'en', 'name', 'National Young Farmers Coalition'),
(67491, 57055, 'en', 'name', 'The Wild Ramp'),
(67492, 57056, 'no_lang_code', 'name', 'Metabolic Modeling Services (New Zealand)'),
(67493, 57057, 'en', 'name', 'Missouri Department of Agriculture'),
(67494, 57058, 'en', 'name', 'Mitchell School District'),
(67495, 57059, 'no_lang_code', 'name', 'Model Software (United States)'),
(67496, 57060, 'no_lang_code', 'name', 'NBD Nanotechnologies (United States)'),
(67497, 57061, 'en', 'name', 'Mountain Comprehensive Health'),
(67498, 57062, 'no_lang_code', 'name', 'Crew Services (United States)'),
(67499, 57063, 'en', 'name', 'National Farmers Organization'),
(67500, 57064, 'en', 'name', 'New Mexico Farmers’ Marketing Association'),
(67501, 57065, 'no_lang_code', 'name', 'Next Generation Technology (United States)'),
(67502, 57066, 'en', 'name', 'Wolfe’s Neck Farm'),
(67503, 57067, 'en', 'name', 'Matthew 25'),
(67504, 57068, 'cs', 'name', 'PovodĆ­ Moravy'),
(67505, 57069, 'cs', 'name', 'PovodĆ­ Ohře'),
(67506, 57070, 'cs', 'name', 'PovodĆ­ Vltavy'),
(67507, 57071, 'en', 'name', 'Yokohama Foundation for Advancement of Medical Science'),
(67508, 57071, 'ja', 'name', 'ęØŖęµœē·åˆåŒ»å­¦ęŒÆčˆˆč²”å›£'),
(67509, 57072, 'en', 'name', 'Head of Government of the Republic of Tunisia'),
(67510, 57073, 'no_lang_code', 'name', 'Soair (United States)'),
(67511, 57074, 'en', 'name', 'North South Institute'),
(67512, 57075, 'en', 'name', 'Organic Farm School'),
(67513, 57076, 'no_lang_code', 'name', 'XtendWave (United States)'),
(67514, 57077, 'en', 'name', 'Alzheimer Disease International'),
(67515, 57078, 'no_lang_code', 'name', 'Abbott (Belgium)'),
(67516, 57079, 'en', 'name', 'East Midlands Academic Health Science Network'),
(67517, 57080, 'en', 'name', 'H&M Foundation'),
(67518, 57081, 'en', 'name', 'Clinica Valle Giulia'),
(67519, 57082, 'no_lang_code', 'name', 'CryoLife (United Kingdom)'),
(67520, 57083, 'en', 'name', 'Aid Health and Development Onlus'),
(67521, 57084, 'no_lang_code', 'name', 'Cultech (United Kingdom)'),
(67522, 57085, 'en', 'name', 'ALERTAsia Foundation'),
(67523, 57086, 'en', 'name', 'Bolton NHS Foundation Trust'),
(67524, 57087, 'ca', 'name', 'Servei de Salut de les Illes Balears'),
(67525, 57088, 'no_lang_code', 'name', 'EndoSphere (United States)'),
(67526, 57089, 'en', 'name', 'CURE International UK'),
(67527, 57090, 'no_lang_code', 'name', 'All American Pharmaceutical (United States)'),
(67528, 57091, 'no_lang_code', 'name', 'Enteromed (United Kingdom)'),
(67529, 57092, 'es', 'name', 'Fundación Cerebro y Mente'),
(67530, 57093, 'no_lang_code', 'name', 'Alliance Pharmaceuticals (United Kingdom)'),
(67531, 57094, 'no_lang_code', 'name', 'Bio-Competence Centre of Healthy Dairy Products (Estonia)'),
(67532, 57094, 'et', 'name', 'Tervisliku Piima Biotehnoloogiate Arenduskeskus'),
(67533, 57095, 'en', 'name', 'Cwm Taf University Health Board'),
(67534, 57095, 'cy', 'name', 'Ymddiriedolaeth GIG Cwm Taf'),
(67535, 57096, 'no_lang_code', 'name', 'EpiPharm (Switzerland)'),
(67536, 57097, 'nl', 'name', 'Hartcentrum Hasselt'),
(67537, 57098, 'no_lang_code', 'name', 'Altana (Netherlands)'),
(67538, 57099, 'no_lang_code', 'name', 'AM–Pharma (Netherlands)'),
(67539, 57100, 'fi', 'name', 'Helsingin Diakonissalaitos'),
(67540, 57100, 'en', 'name', 'Helsinki Deaconess Institute'),
(67541, 57101, 'no_lang_code', 'name', 'Herba Naturalle (United Kingdom)'),
(67542, 57102, 'no_lang_code', 'name', 'Cycleurope (Sweden)'),
(67543, 57103, 'es', 'name', 'Federación Alba Andalucía'),
(67544, 57104, 'en', 'name', 'Hong Kong Council on Smoking and Health'),
(67545, 57104, 'zh', 'name', 'é¦™ęøÆåøē…™čˆ‡å„åŗ·å§”å“”ęœƒ'),
(67546, 57105, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Germany)'),
(67547, 57106, 'fr', 'name', 'HƓpital de Saint-Loup'),
(67548, 57107, 'no_lang_code', 'name', 'Horphag Research (Switzerland)'),
(67549, 57108, 'en', 'name', 'Accredited Private Hospital Villa Regina'),
(67550, 57108, 'it', 'name', 'Ospedale Privato Accreditato Villa Regina'),
(67551, 57109, 'no_lang_code', 'name', 'Europastry (Spain)'),
(67552, 57110, 'tr', 'name', 'Ankara Fıtık Merkezi'),
(67553, 57111, 'pt', 'name', 'Hospital Estadual MƔrio Covas'),
(67554, 57112, 'no_lang_code', 'name', 'Applied Pharma Research (Switzerland)'),
(67555, 57113, 'en', 'name', 'The European Academy of Gynaecological Surgery'),
(67556, 57114, 'no_lang_code', 'name', 'Getinge (United States)'),
(67557, 57115, 'no_lang_code', 'name', 'TheraTears (United States)'),
(67558, 57116, 'no_lang_code', 'name', 'Daval International (United Kingdom)'),
(67559, 57117, 'fr', 'name', 'AlterSantƩ'),
(67560, 57118, 'no_lang_code', 'name', 'Archemix (United States)'),
(67561, 57119, 'no_lang_code', 'name', 'Imam Hossein Hospital'),
(67562, 57120, 'no_lang_code', 'name', 'Dentaid (Spain)'),
(67563, 57121, 'no_lang_code', 'name', 'ALK-Abelló (Netherlands)'),
(67564, 57122, 'it', 'name', 'Studio Odontoiatrico Mangano'),
(67565, 57123, 'no_lang_code', 'name', 'Eurosets (Italy)'),
(67566, 57124, 'en', 'name', 'Department of Health Canton of Zurich'),
(67567, 57124, 'de', 'name', 'Gesundheitsdirektion Kanton Zürich'),
(67568, 57125, 'no_lang_code', 'name', 'AstraZeneca (Germany)'),
(67569, 57126, 'en', 'name', 'Calderdale and Huddersfield NHS Foundation Trust'),
(67570, 57127, 'es', 'name', 'Innpulsa'),
(67571, 57128, 'no_lang_code', 'name', 'DiagNodus (United Kingdom)'),
(67572, 57129, 'no_lang_code', 'name', 'Atrium Medical (Australia)'),
(67573, 57130, 'en', 'name', 'Exeter Primary Care'),
(67574, 57131, 'no_lang_code', 'name', 'Difa Cooper (Italy)'),
(67575, 57132, 'no_lang_code', 'name', 'Nuvo Pharmaceuticals (Canada)'),
(67576, 57133, 'no_lang_code', 'name', 'IBSA Farmaceutici (Italy)'),
(67577, 57134, 'nl', 'name', 'Aveleijn'),
(67578, 57135, 'en', 'name', 'German Doctors'),
(67579, 57136, 'no_lang_code', 'name', 'DOCxcellence (Germany)'),
(67580, 57137, 'en', 'name', 'Dolan Park Hospital'),
(67581, 57138, 'no_lang_code', 'name', 'Cambridge Weight Plan (United Kingdom)'),
(67582, 57139, 'no_lang_code', 'name', 'AXA Health (United Kingdom)'),
(67583, 57140, 'en', 'name', 'Eyehope'),
(67584, 57141, 'no_lang_code', 'name', 'B. Braun (Spain)'),
(67585, 57142, 'no_lang_code', 'name', 'MedSkin Solutions (Germany)'),
(67586, 57143, 'no_lang_code', 'name', 'Barry Callebaut (Belgium)'),
(67587, 57144, 'no_lang_code', 'name', 'Dr. Peithner KG (Austria)'),
(67588, 57145, 'en', 'name', 'DSC Services'),
(67589, 57146, 'en', 'name', 'Canadian Foundation for Women’s Health'),
(67590, 57147, 'no_lang_code', 'name', 'Baxter (Italy)'),
(67591, 57148, 'no_lang_code', 'name', 'Dukat (Croatia)'),
(67592, 57149, 'no_lang_code', 'name', 'EyeSonix (United States)'),
(67593, 57150, 'en', 'name', 'Irish Pharmacy Union'),
(67594, 57151, 'no_lang_code', 'name', 'Fazer (Finland)'),
(67595, 57152, 'en', 'name', 'Bergman Clinics'),
(67596, 57153, 'no_lang_code', 'name', 'Isdin (Spain)'),
(67597, 57154, 'de', 'name', 'Berliner Krebsgesellschaft'),
(67598, 57155, 'no_lang_code', 'name', 'BHR Pharmaceuticals (United Kingdom)'),
(67599, 57156, 'no_lang_code', 'name', 'Bifodan (Denmark)'),
(67600, 57157, 'de', 'name', 'Bundeszentrale für Gesundheitliche Aufklärung'),
(67601, 57157, 'en', 'name', 'Federal Centre for Health Education'),
(67602, 57158, 'en', 'name', 'Isle of Wight NHS Trust'),
(67603, 57159, 'no_lang_code', 'name', 'Epiim (Estonia)'),
(67604, 57160, 'it', 'name', 'Casa di Cura San Michele'),
(67605, 57161, 'no_lang_code', 'name', 'ISO Arzneimittel (Germany)'),
(67606, 57162, 'no_lang_code', 'name', 'Nutrition & SantƩ (Spain)'),
(67607, 57163, 'no_lang_code', 'name', 'CasaLuker (Colombia)'),
(67608, 57164, 'no_lang_code', 'name', 'Efamol (United Kingdom)'),
(67609, 57165, 'no_lang_code', 'name', 'U.S. Stem Cell (United States)'),
(67610, 57166, 'fr', 'name', 'FƩdƩration Internationale de Football Association'),
(67611, 57167, 'en', 'name', 'Effective Intervention'),
(67612, 57168, 'no_lang_code', 'name', 'Bioline Products (Czechia)'),
(67613, 57169, 'no_lang_code', 'name', 'Joimax (Germany)'),
(67614, 57170, 'no_lang_code', 'name', 'GDI Integrated Facility Services (Canada)'),
(67615, 57171, 'no_lang_code', 'name', 'Femeda (United Kingdom)'),
(67616, 57172, 'no_lang_code', 'name', 'Biosignatures (United Kingdom)'),
(67617, 57173, 'no_lang_code', 'name', 'Froceth (Lithuania)'),
(67618, 57174, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (France)'),
(67619, 57175, 'no_lang_code', 'name', 'Biotropics Malaysia (Malaysia)'),
(67620, 57176, 'it', 'name', 'Istituto Europeo di Microchirurgia Oculare'),
(67621, 57177, 'it', 'name', 'Associaizone per lo Studio della Sclerosi Sistemica e delle Malattie'),
(67622, 57178, 'it', 'name', 'Associazione Medici Diabetologi'),
(67623, 57179, 'no_lang_code', 'name', 'Mannatech (United States)'),
(67624, 57180, 'en', 'name', 'Central Council for Research in Yoga & Naturopathy'),
(67625, 57181, 'it', 'name', 'Associazione Italiana Vulvodinia Onlus'),
(67626, 57182, 'no_lang_code', 'name', 'Jafco (Japan)'),
(67627, 57183, 'no_lang_code', 'name', 'Marigot (Ireland)'),
(67628, 57184, 'no_lang_code', 'name', 'Marinomed Biotech (Austria)'),
(67629, 57185, 'no_lang_code', 'name', 'Mastelli (Italy)'),
(67630, 57186, 'en', 'name', 'Chios Mastiha Growers Association'),
(67631, 57187, 'no_lang_code', 'name', 'Nordic Sugar (Finland)'),
(67632, 57188, 'en', 'name', 'Kindercare Pediatrics'),
(67633, 57189, 'no_lang_code', 'name', 'Maywufa (Taiwan)'),
(67634, 57190, 'it', 'name', 'Federazione Ordini Farmacisti Italiani'),
(67635, 57191, 'no_lang_code', 'name', 'Medical CaƱada (Spain)'),
(67636, 57192, 'en', 'name', 'Medicor Foundation'),
(67637, 57193, 'no_lang_code', 'name', 'Medigene (Germany)'),
(67638, 57194, 'en', 'name', 'Food for Health Ireland'),
(67639, 57195, 'es', 'name', 'Cerveceros de EspaƱa'),
(67640, 57195, 'en', 'name', 'The Brewers of Spain'),
(67641, 57196, 'de', 'name', 'Stiftung Chance'),
(67642, 57197, 'en', 'name', 'Food Ingredient and Health Research Institute'),
(67643, 57198, 'no_lang_code', 'name', 'Nobilis Therapeutics (United States)'),
(67644, 57199, 'en', 'name', 'North Central London Research Consortium'),
(67645, 57200, 'en', 'name', 'Warrington and Halton Teaching Hospitals NHS Foundation Trust'),
(67646, 57201, 'no_lang_code', 'name', 'Knop Laboratories (Chile)'),
(67647, 57202, 'no_lang_code', 'name', 'Meril Life Sciences (India)'),
(67648, 57203, 'en', 'name', 'North Tees and Hartlepool NHS Foundation Trust'),
(67649, 57204, 'no_lang_code', 'name', 'Konpharma (Italy)'),
(67650, 57205, 'nl', 'name', 'Stichting Kinderpostzegels Nederland'),
(67651, 57206, 'no_lang_code', 'name', 'Danone (Germany)'),
(67652, 57207, 'es', 'name', 'Fundación para la Fibromialgia y el Síndrome de Fatiga Crónica'),
(67653, 57208, 'en', 'name', 'Kumasi Centre for Collaborative Research in Tropical Medicine'),
(67654, 57209, 'fr', 'name', 'Direction GƩnƩrale de la Pharmacie, du MƩdicament et des Laboratoires'),
(67655, 57210, 'en', 'name', 'Chinese Association for the Study of Pain'),
(67656, 57211, 'it', 'name', 'Centro per il Controllo e la Prevenzione delle Malattie'),
(67657, 57211, 'en', 'name', 'National Centre for Disease Prevention and Control'),
(67658, 57212, 'no_lang_code', 'name', 'Northern Therapeutics (Canada)'),
(67659, 57213, 'nl', 'name', 'Stichting Wetenschappelijk Onderzoek het Oogziekenhuis'),
(67660, 57214, 'no_lang_code', 'name', 'Bausch & Lomb (France)'),
(67661, 57215, 'no', 'name', 'Norsk Ergoterapeutforbund'),
(67662, 57215, 'en', 'name', 'Norwegian Occupational Therapist Association - Occupational Therapists'),
(67663, 57216, 'no_lang_code', 'name', 'Medtronic (Singapore)'),
(67664, 57217, 'en', 'name', 'Mother and Child Foundation'),
(67665, 57218, 'no_lang_code', 'name', 'Moximed (United States)'),
(67666, 57219, 'no_lang_code', 'name', 'Novintethical Pharma (Switzerland)'),
(67667, 57220, 'en', 'name', 'Dr. National Center General Hospital Cipto Mangunkusumo'),
(67668, 57220, 'id', 'name', 'Rumah Sakit Umum Pusat Nasional Dr. Cipto Mangunkusumo'),
(67669, 57221, 'no_lang_code', 'name', 'Elea (Argentina)'),
(67670, 57222, 'no_lang_code', 'name', 'Nuga Medical (South Korea)'),
(67671, 57223, 'en', 'name', 'Nutraveris'),
(67672, 57224, 'no_lang_code', 'name', 'Fulltec (Switzerland)'),
(67673, 57225, 'no_lang_code', 'name', 'Nutricia (United Kingdom)'),
(67674, 57226, 'en', 'name', 'Civil Service Council'),
(67675, 57226, 'ar', 'name', 'مجلس الخدمة Ų§Ł„Ł…ŲÆŁ†ŁŠŲ©'),
(67676, 57227, 'no_lang_code', 'name', 'Obalon (United States)'),
(67677, 57228, 'no_lang_code', 'name', 'Octapharma (France)'),
(67678, 57229, 'no_lang_code', 'name', 'Laboratorios Sophia (Mexico)'),
(67679, 57230, 'no_lang_code', 'name', 'Clasado BioSciences (United Kingdom)'),
(67680, 57231, 'no_lang_code', 'name', 'Ocutec (United Kingdom)'),
(67681, 57232, 'de', 'name', 'OH DO KWAN Stiftung Ludmilla Pankofer und Carl Wiedmeier'),
(67682, 57233, 'no_lang_code', 'name', 'Laccure (Sweden)'),
(67683, 57234, 'no_lang_code', 'name', 'Okhotsk Kai Hospital'),
(67684, 57234, 'ja', 'name', 'ć‚Ŗćƒ›ćƒ¼ćƒ„ć‚Æęµ·ē—…é™¢'),
(67685, 57235, 'en', 'name', 'Olberon (United Kingdom)'),
(67686, 57236, 'no_lang_code', 'name', 'GAIA (Germany)'),
(67687, 57237, 'no_lang_code', 'name', 'Laila Impex (India)'),
(67688, 57238, 'en', 'name', 'Clinic for Sleep Medicine'),
(67689, 57238, 'de', 'name', 'Klinik für Schlafmedizin'),
(67690, 57239, 'it', 'name', 'Clinica Odontoiatrica Salzano Tirone'),
(67691, 57240, 'en', 'name', 'Orchid'),
(67692, 57241, 'en', 'name', 'Netherlands Center for Occupational Diseases'),
(67693, 57241, 'nl', 'name', 'Netherlands Centrum for Occupational Diseases'),
(67694, 57242, 'nl', 'name', 'Nederlandse Hoofdpijn Vereniging'),
(67695, 57243, 'no_lang_code', 'name', 'OrganOx (United Kingdom)'),
(67696, 57244, 'no_lang_code', 'name', 'Origin BioMed (Canada)'),
(67697, 57245, 'no_lang_code', 'name', 'Baxter (France)'),
(67698, 57246, 'no_lang_code', 'name', 'Neuren Pharmaceuticals (New Zealand)'),
(67699, 57247, 'es', 'name', 'Instituto Neurológico de Colombia'),
(67700, 57248, 'en', 'name', 'Oslo Sports Trauma Research Center'),
(67701, 57248, 'no', 'name', 'Senter for Idrettsskadeforskning'),
(67702, 57249, 'no_lang_code', 'name', 'Baxter (South Korea)'),
(67703, 57250, 'no_lang_code', 'name', 'Neurotechnics (United Kingdom)'),
(67704, 57251, 'no_lang_code', 'name', 'Otsuka (Indonesia)'),
(67705, 57252, 'no_lang_code', 'name', 'Lead Chemical (Japan)'),
(67706, 57253, 'no_lang_code', 'name', 'Leiber (Germany)'),
(67707, 57254, 'no_lang_code', 'name', 'OBS Medical (United Kingdom)'),
(67708, 57255, 'no_lang_code', 'name', 'Gehrlicher (Germany)'),
(67709, 57256, 'gd', 'name', 'Bòrd SSN Dùn Phris agus an Gall-Ghaidhealaibh'),
(67710, 57256, 'en', 'name', 'NHS Dumfries and Galloway'),
(67711, 57257, 'no_lang_code', 'name', 'Libbs (Brazil)'),
(67712, 57258, 'no_lang_code', 'name', 'Remedial Centre Hospital'),
(67713, 57259, 'de', 'name', 'Gelenkpunkt'),
(67714, 57260, 'no_lang_code', 'name', 'Verman (Finland)'),
(67715, 57261, 'no_lang_code', 'name', 'Baxter (Colombia)'),
(67716, 57262, 'fr', 'name', 'Ligue Pulmonaire Genevoise'),
(67717, 57263, 'no_lang_code', 'name', 'Origin Sciences (United Kingdom)'),
(67718, 57264, 'en', 'name', 'London Eye Hospital'),
(67719, 57265, 'no_lang_code', 'name', 'Advanced Medical Solutions (Germany)'),
(67720, 57266, 'no_lang_code', 'name', 'Paladin Pharma (Italy)'),
(67721, 57267, 'no_lang_code', 'name', 'Panin (Italy)'),
(67722, 57268, 'en', 'name', 'Community Information, Empowerment and Transparency'),
(67723, 57269, 'no_lang_code', 'name', 'LiveLeaf (United States)'),
(67724, 57270, 'no_lang_code', 'name', 'Perseus PCI (United States)'),
(67725, 57271, 'no_lang_code', 'name', 'Competence Centre on Health Technologies (Estonia)'),
(67726, 57271, 'et', 'name', 'Tervisetehnoloogiate Arenduskeskus'),
(67727, 57272, 'no_lang_code', 'name', 'Lombard Medical (United Kingdom)'),
(67728, 57273, 'en', 'name', 'Concept Foundation'),
(67729, 57274, 'de', 'name', 'Verwaltungs-Berufsgenossenschaft'),
(67730, 57275, 'no_lang_code', 'name', 'PharmaFGP (Germany)'),
(67731, 57276, 'no_lang_code', 'name', 'Pharma Nord (United Kingdom)'),
(67732, 57277, 'en', 'name', 'Royal Belgian Society for Surgery'),
(67733, 57278, 'no_lang_code', 'name', 'PharmEcosse (United Kingdom)'),
(67734, 57279, 'no_lang_code', 'name', 'Cool Down (Switzerland)'),
(67735, 57280, 'no_lang_code', 'name', 'Lycotec (United Kingdom)'),
(67736, 57281, 'en', 'name', 'Lymphoma Research Trust'),
(67737, 57282, 'no_lang_code', 'name', 'Phoenix (Italy)'),
(67738, 57283, 'no_lang_code', 'name', 'TRB Chemedica International (Switzerland)'),
(67739, 57284, 'it', 'name', 'Fondazione Crescere Insieme al Sant''Anna'),
(67740, 57285, 'no_lang_code', 'name', 'SMART Medical Systems (Israel)'),
(67741, 57286, 'de', 'name', 'Deutsche Gesellschaft für Psychoanalyse, Psychotherapie, Psychosomatik und Tiefenpsychologie'),
(67742, 57287, 'en', 'name', 'Samnium Medica'),
(67743, 57288, 'no_lang_code', 'name', 'Smart Salt (United States)'),
(67744, 57289, 'no_lang_code', 'name', 'Snap40 (United Kingdom)'),
(67745, 57290, 'pt', 'name', 'Hospital Municipal São José'),
(67746, 57291, 'no_lang_code', 'name', 'Social Security Office (Thailand)'),
(67747, 57292, 'sv', 'name', 'Skandinaviska Kiropraktorhƶgskolan'),
(67748, 57293, 'no_lang_code', 'name', 'Inversago Pharma (Canada)'),
(67749, 57294, 'en', 'name', 'The Egyptian IVF-ET Center'),
(67750, 57294, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł…ŲµŲ±ŁŠ لأطفال Ų§Ł„Ų£Ł†Ų§ŲØŁŠŲØ'),
(67751, 57295, 'fr', 'name', 'EurasantƩ'),
(67752, 57296, 'en', 'name', 'The Eve Appeal'),
(67753, 57297, 'no_lang_code', 'name', 'GILUPI (Germany)'),
(67754, 57298, 'en', 'name', 'The Farah Hospital'),
(67755, 57299, 'no_lang_code', 'name', 'Valid International (United Kingdom)'),
(67756, 57300, 'de', 'name', 'GKV Spitzenverband'),
(67757, 57301, 'en', 'name', 'Great Orchestra of Christmas Charity'),
(67758, 57301, 'pl', 'name', 'Wielka Orkiestra Świątecznej Pomocy'),
(67759, 57302, 'en', 'name', 'South Asian Clinical Toxicology Research Collaboration'),
(67760, 57303, 'no_lang_code', 'name', 'Vaximm (Germany)'),
(67761, 57304, 'no_lang_code', 'name', 'Servier (China)'),
(67762, 57305, 'no_lang_code', 'name', 'Vectorite Biomedical (Taiwan)'),
(67763, 57305, 'zh', 'name', 'é‘«å“ē”ŸåŒ»ē§‘ęŠ€'),
(67764, 57306, 'no_lang_code', 'name', 'Servier (Germany)'),
(67765, 57307, 'no_lang_code', 'name', 'Servier (Egypt)'),
(67766, 57308, 'en', 'name', 'The Howard Foundation'),
(67767, 57309, 'no_lang_code', 'name', 'Vestergaard (Switzerland)'),
(67768, 57310, 'en', 'name', 'Changhua County Public Health Bureau'),
(67769, 57310, 'zh', 'name', 'å½°åŒ–ēø£č”›ē”Ÿå±€'),
(67770, 57311, 'no_lang_code', 'name', 'SilverCloud (Ireland)'),
(67771, 57312, 'no_lang_code', 'name', 'Winclove Probiotics (Netherlands)'),
(67772, 57313, 'no_lang_code', 'name', 'KSL Consulting (Denmark)'),
(67773, 57314, 'en', 'name', 'Viewpoint Vision'),
(67774, 57315, 'en', 'name', 'Southern Health and Social Care Trust'),
(67775, 57316, 'en', 'name', 'Wrightington, Wigan and Leigh NHS Foundation Trust'),
(67776, 57317, 'en', 'name', 'Vision Impact Institute'),
(67777, 57318, 'en', 'name', 'Hyderabad Cleft Society'),
(67778, 57319, 'no_lang_code', 'name', 'Vivostat (Denmark)'),
(67779, 57320, 'no_lang_code', 'name', 'Zija International (United States)'),
(67780, 57321, 'no_lang_code', 'name', 'Guna (Italy)'),
(67781, 57322, 'no_lang_code', 'name', 'Soylent (United States)'),
(67782, 57323, 'no_lang_code', 'name', 'Zambon (Switzerland)'),
(67783, 57324, 'en', 'name', 'Zankli Medical Centre'),
(67784, 57325, 'en', 'name', 'Spectrum Community Health CIC'),
(67785, 57326, 'en', 'name', 'War Child'),
(67786, 57327, 'en', 'name', 'GynePro Medical'),
(67787, 57328, 'no_lang_code', 'name', 'Water-Jel Technologies (United Kingdom)'),
(67788, 57329, 'no_lang_code', 'name', 'Brf (Brazil)'),
(67789, 57330, 'no_lang_code', 'name', 'Zhejiang Yongning Pharma (China)'),
(67790, 57331, 'no_lang_code', 'name', 'Wepa Apothekenbedarf (Germany)'),
(67791, 57332, 'no_lang_code', 'name', 'Gynius (Sweden)'),
(67792, 57333, 'no_lang_code', 'name', 'Quantum Pharmaceutical (United Kingdom)'),
(67793, 57334, 'nl', 'name', 'Omring'),
(67794, 57335, 'en', 'name', 'White Clinic'),
(67795, 57336, 'no_lang_code', 'name', 'Kazahstanskoe Obshchestvo Bariatricheskih i Metabolicheskih Hirurgov'),
(67796, 57336, 'kk', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾Šµ общество бариатрических Šø метаболических Ń…ŠøŃ€ŃƒŃ€Š³Š¾Š² Š ŠžŠž'),
(67797, 57337, 'no_lang_code', 'name', 'Stryker (Netherlands)'),
(67798, 57338, 'no_lang_code', 'name', 'Plethora Solutions (United Kingdom)'),
(67799, 57339, 'no_lang_code', 'name', 'Recuperat-ion (Spain)'),
(67800, 57340, 'no_lang_code', 'name', 'Synairgen (United Kingdom)'),
(67801, 57341, 'no_lang_code', 'name', 'Stryker (Switzerland)'),
(67802, 57342, 'no_lang_code', 'name', 'Redax (Italy)'),
(67803, 57343, 'no_lang_code', 'name', 'Thornton and Ross (United Kingdom)'),
(67804, 57344, 'no_lang_code', 'name', 'Synapse (Greece)'),
(67805, 57345, 'de', 'name', 'Refonet'),
(67806, 57346, 'da', 'name', 'Regionshospital Nordjylland'),
(67807, 57347, 'sv', 'name', 'KriminalvƄrden'),
(67808, 57347, 'en', 'name', 'Swedish Prison and Probation Service'),
(67809, 57348, 'es', 'name', 'Fundación para La Investigación del Vino y La Nutrición'),
(67810, 57349, 'no_lang_code', 'name', 'Kyowa Kirin (France)'),
(67811, 57350, 'no_lang_code', 'name', 'Provexis (United Kingdom)'),
(67812, 57351, 'sv', 'name', 'Probi'),
(67813, 57352, 'no_lang_code', 'name', 'Psicon (United Kingdom)'),
(67814, 57353, 'de', 'name', 'Schweizerische Gesellschaft für Pulmonale Hypertonie'),
(67815, 57354, 'en', 'name', 'Protexin'),
(67816, 57355, 'de', 'name', 'Stiftung Mandacaru'),
(67817, 57356, 'no_lang_code', 'name', 'Terumo (Belgium)'),
(67818, 57357, 'en', 'name', 'Texas Life Science Foundation'),
(67819, 57358, 'no_lang_code', 'name', 'PROGAL (Colombia)'),
(67820, 57359, 'no_lang_code', 'name', 'Purdue Pharma (Canada)'),
(67821, 57360, 'en', 'name', 'Aim Foundation'),
(67822, 57361, 'no_lang_code', 'name', 'PROGE FARM (Italy)'),
(67823, 57362, 'en', 'name', 'Academic Health Science Partnership'),
(67824, 57363, 'no_lang_code', 'name', 'Laxdale Foodservice (United Kingdom)'),
(67825, 57364, 'en', 'name', 'Bionomics International'),
(67826, 57365, 'en', 'name', 'Biotechnology Institute'),
(67827, 57366, 'en', 'name', 'Council of State Governments Midwest'),
(67828, 57367, 'en', 'name', 'National Association of Attorneys General'),
(67829, 57368, 'en', 'name', 'Ahtna Heritage Foundation'),
(67830, 57369, 'en', 'name', 'Building Child and Family Initiatives'),
(67831, 57370, 'en', 'name', 'American Water Resources Association'),
(67832, 57371, 'no_lang_code', 'name', 'Blue Sky Research (United States)'),
(67833, 57372, 'en', 'name', 'AI Access Foundation'),
(67834, 57373, 'en', 'name', 'Chaminade College Preparatory School'),
(67835, 57374, 'en', 'name', 'Broome-Tioga Board of Cooperative Educational Services'),
(67836, 57375, 'en', 'name', 'Amiq Institute'),
(67837, 57376, 'en', 'name', 'Monroe 2-Orleans BOCES'),
(67838, 57377, 'no_lang_code', 'name', 'Creative Research Enterprises (United States)'),
(67839, 57378, 'en', 'name', 'Boston Partners in Education'),
(67840, 57379, 'en', 'name', 'Alabama School of Fine Arts'),
(67841, 57380, 'en', 'name', 'Chicago Children’s Museum'),
(67842, 57381, 'en', 'name', 'Alaska Geological Society'),
(67843, 57382, 'en', 'name', 'Alaska Institute for Justice'),
(67844, 57383, 'en', 'name', 'Alaska Native Heritage Center'),
(67845, 57384, 'en', 'name', 'Alaska Native Science Commission'),
(67846, 57385, 'en', 'name', 'Brunswick Community College'),
(67847, 57386, 'en', 'name', 'Center for the Advancement of Hispanics in Science and Engineering Education'),
(67848, 57387, 'en', 'name', 'Aleut International Association'),
(67849, 57388, 'en', 'name', 'Buehler Challenger & Science Center'),
(67850, 57389, 'en', 'name', 'Appalachia-Science in the Public Interest'),
(67851, 57390, 'en', 'name', 'Bunker Hill Elementary School'),
(67852, 57391, 'no_lang_code', 'name', 'Applied Dynamics International (United States)'),
(67853, 57392, 'en', 'name', 'North Texas Regional Center for Innovation and Commercialization'),
(67854, 57393, 'en', 'name', 'Cyber Innovation Center'),
(67855, 57394, 'no_lang_code', 'name', 'Applied Scientific Research (United States)'),
(67856, 57395, 'no_lang_code', 'name', 'Dansk Sundhedssikring'),
(67857, 57396, 'en', 'name', 'American Academy of Political and Social Science'),
(67858, 57397, 'en', 'name', 'American Academy of Underwater Sciences'),
(67859, 57398, 'en', 'name', 'California Indian Museum and Cultural Center'),
(67860, 57399, 'en', 'name', 'American Arbitration Association'),
(67861, 57400, 'en', 'name', 'Grace Hudson Museum and Sun House'),
(67862, 57401, 'en', 'name', 'Perot Museum of Nature and Science'),
(67863, 57402, 'en', 'name', 'California Public Interest Research Group'),
(67864, 57403, 'en', 'name', 'American Association of Physical Anthropologists'),
(67865, 57404, 'en', 'name', 'The Clay Minerals Society'),
(67866, 57405, 'no_lang_code', 'name', 'Cambridge Collaborative (United States)'),
(67867, 57406, 'en', 'name', 'Carter County Museum'),
(67868, 57407, 'no_lang_code', 'name', 'Cellulose Sciences International (United States)'),
(67869, 57408, 'en', 'name', 'Dawson Education Cooperative'),
(67870, 57409, 'en', 'name', 'Center for Accessible Technology'),
(67871, 57410, 'en', 'name', 'Council for Advancement and Support of Education'),
(67872, 57411, 'en', 'name', 'Center for Excellence in Education'),
(67873, 57412, 'no_lang_code', 'name', 'Cleveland-Cliffs (United States)'),
(67874, 57413, 'en', 'name', 'Center for International Environmental Law'),
(67875, 57414, 'en', 'name', 'Island Press'),
(67876, 57415, 'en', 'name', 'Center for Snow and Avalanche Studies'),
(67877, 57416, 'en', 'name', 'American Foundry Society'),
(67878, 57417, 'en', 'name', 'Defense Contract Management Agency'),
(67879, 57418, 'en', 'name', 'Coastal Marine Biolabs'),
(67880, 57419, 'en', 'name', 'Governor''s Office of Planning and Research'),
(67881, 57420, 'en', 'name', 'Cognitive Medical Systems'),
(67882, 57421, 'en', 'name', 'American Institute of Hydrology'),
(67883, 57422, 'en', 'name', 'Associated Colleges of Central Kansas'),
(67884, 57423, 'en', 'name', 'Delmarva Advisory Council'),
(67885, 57424, 'en', 'name', 'Associated Colleges of the Twin Cities'),
(67886, 57425, 'en', 'name', 'American Institute of Professional Geologists'),
(67887, 57426, 'en', 'name', 'Metal Powder Industries Federation'),
(67888, 57427, 'en', 'name', 'American Public Works Association'),
(67889, 57428, 'en', 'name', 'Digital Harbor Foundation'),
(67890, 57429, 'en', 'name', 'American Society for Clinical Investigation'),
(67891, 57430, 'en', 'name', 'National Finance Center'),
(67892, 57431, 'en', 'name', 'Milton J. Rubenstein Museum of Science and Technology'),
(67893, 57432, 'en', 'name', 'Discovery Museum and Planetarium'),
(67894, 57433, 'en', 'name', 'Don Harrington Discovery Center'),
(67895, 57434, 'en', 'name', 'Holloman Air Force Base'),
(67896, 57435, 'en', 'name', 'Colorado Community College System'),
(67897, 57436, 'en', 'name', 'DuPage Children''s Museum'),
(67898, 57437, 'en', 'name', 'Patrick Air Force Base'),
(67899, 57438, 'en', 'name', 'Four Corners School of Outdoor Education'),
(67900, 57439, 'en', 'name', 'Future of Privacy Forum'),
(67901, 57440, 'en', 'name', 'The Astronauts Memorial Foundation'),
(67902, 57441, 'en', 'name', 'Eastern Maine Community College'),
(67903, 57442, 'en', 'name', 'Atomic Heritage Foundation'),
(67904, 57443, 'en', 'name', 'The Econometric Society'),
(67905, 57444, 'en', 'name', 'New Hampshire Audubon'),
(67906, 57445, 'en', 'name', 'Edgecombe Community College'),
(67907, 57446, 'en', 'name', 'Thinkery'),
(67908, 57447, 'en', 'name', 'Autodesk Foundation'),
(67909, 57448, 'en', 'name', 'Information Systems Audit and Control Association'),
(67910, 57449, 'en', 'name', 'Metropolitan Educational Cooperative Service Unit'),
(67911, 57450, 'en', 'name', 'Bay Area Discovery Museum'),
(67912, 57451, 'en', 'name', 'Eidos Education'),
(67913, 57452, 'en', 'name', 'Giant Screen Cinema Association'),
(67914, 57453, 'en', 'name', 'Girl Scouts of NE Kansas and NW Missouri'),
(67915, 57454, 'en', 'name', 'Global Environment and Technology Foundation'),
(67916, 57455, 'en', 'name', 'Elementary Institute of Science'),
(67917, 57456, 'it', 'name', 'Fondazione ISAL'),
(67918, 57457, 'en', 'name', 'The Connecticut Audubon Society'),
(67919, 57458, 'en', 'name', 'California Governor’s Office of Emergency Services'),
(67920, 57459, 'en', 'name', 'Vermont Natural Resources Council'),
(67921, 57460, 'en', 'name', 'HighScope'),
(67922, 57461, 'en', 'name', 'Essex Westford School District'),
(67923, 57462, 'en', 'name', 'Hilton Pond Center for Piedmont Natural History'),
(67924, 57463, 'no_lang_code', 'name', 'Holtec International (United States)'),
(67925, 57464, 'en', 'name', 'Federal Law Enforcement Training Centers'),
(67926, 57465, 'en', 'name', 'Corning Museum of Glass'),
(67927, 57466, 'en', 'name', 'Ignited'),
(67928, 57467, 'en', 'name', 'Huntsville Madison County Chamber'),
(67929, 57468, 'no_lang_code', 'name', 'Insite Medical Technologies (United States)'),
(67930, 57469, 'en', 'name', 'InSites'),
(67931, 57470, 'en', 'name', 'Fiber Optic Association'),
(67932, 57471, 'en', 'name', 'California Institute Of Medical Science'),
(67933, 57472, 'en', 'name', 'First Alaskans Institute'),
(67934, 57473, 'en', 'name', 'Council for Opportunity in Education'),
(67935, 57474, 'no_lang_code', 'name', 'Innovative Technology Laboratories (United States)'),
(67936, 57475, 'en', 'name', 'Florida Council of Teachers of Mathematics'),
(67937, 57476, 'en', 'name', 'The Bureau of Overseas Buildings Operations'),
(67938, 57477, 'en', 'name', 'International Community for Auditory Display'),
(67939, 57478, 'en', 'name', 'Council of Athabascan Tribal Governments'),
(67940, 57479, 'en', 'name', 'TerrainWorks'),
(67941, 57480, 'en', 'name', 'International Foundation for Entrepreneurship, Science, and Technology'),
(67942, 57481, 'en', 'name', 'Madison Children''s Museum'),
(67943, 57482, 'en', 'name', 'Maine Discovery Museum'),
(67944, 57483, 'en', 'name', 'Sericultural Research Institute'),
(67945, 57483, 'zh', 'name', '养殖研究所'),
(67946, 57484, 'en', 'name', 'State Technical College of Missouri'),
(67947, 57485, 'en', 'name', 'Nevin Scrimshaw International Nutrition Foundation'),
(67948, 57486, 'en', 'name', 'Institute for Educational Inquiry'),
(67949, 57487, 'en', 'name', 'Malheur Field Station'),
(67950, 57488, 'en', 'name', 'Institute for Environmental Research and Education'),
(67951, 57489, 'en', 'name', 'Living Tongues Institute for Endangered Languages'),
(67952, 57490, 'en', 'name', 'International Society for Chronobiology'),
(67953, 57491, 'en', 'name', 'National Academy of Public Administration'),
(67954, 57492, 'en', 'name', 'International Society of Service Innovation Professionals'),
(67955, 57493, 'en', 'name', 'Maryland Department of Legislative Services'),
(67956, 57494, 'en', 'name', 'The Loka Institute'),
(67957, 57495, 'no_lang_code', 'name', 'Inslaw (United States)'),
(67958, 57496, 'en', 'name', 'Institute for Learning Innovation'),
(67959, 57497, 'en', 'name', 'Los Angeles Council of Black Professional Engineers'),
(67960, 57498, 'en', 'name', 'Island Resources Foundation'),
(67961, 57499, 'en', 'name', 'Mathematics Education Collaborative'),
(67962, 57500, 'en', 'name', 'NACE International'),
(67963, 57501, 'en', 'name', 'Association for Tropical Biology and Conservation'),
(67964, 57502, 'en', 'name', 'National Association of Counties'),
(67965, 57503, 'no_lang_code', 'name', 'MEI Asset Protection (United States)'),
(67966, 57504, 'en', 'name', 'Mendocino Coast District Hospital'),
(67967, 57505, 'en', 'name', 'Mental Research Institute'),
(67968, 57506, 'en', 'name', 'Kalamazoo Psychiatric Hospital'),
(67969, 57507, 'en', 'name', 'National Association of Home Builders'),
(67970, 57508, 'en', 'name', 'Mesa Public Schools'),
(67971, 57509, 'en', 'name', 'Kawaiisu Language and Cultural Center'),
(67972, 57510, 'en', 'name', 'Kentucky Department of Revenue'),
(67973, 57511, 'en', 'name', 'National Board for Professional Teaching Standards'),
(67974, 57512, 'en', 'name', 'Keystone Initiative for Network Based Education and Research'),
(67975, 57513, 'en', 'name', 'Newfound Harbor Marine Institute'),
(67976, 57514, 'en', 'name', 'Peoria Hospital'),
(67977, 57515, 'no_lang_code', 'name', 'Klar Scientific (United States)'),
(67978, 57516, 'en', 'name', 'Center for Teaching Thinking'),
(67979, 57517, 'en', 'name', 'Metropolitan Washington Council of Governments'),
(67980, 57518, 'en', 'name', 'Mid-Pacific Institute'),
(67981, 57519, 'en', 'name', 'The Institute for Advanced Physics'),
(67982, 57520, 'en', 'name', 'Middle East Institute'),
(67983, 57521, 'en', 'name', 'Joint Interoperability Test Command'),
(67984, 57522, 'en', 'name', 'Midtown Educational Foundation'),
(67985, 57523, 'en', 'name', 'National Council for Advanced Manufacturing'),
(67986, 57524, 'en', 'name', 'Laguna Research'),
(67987, 57525, 'en', 'name', 'Land Information Access Association'),
(67988, 57526, 'en', 'name', 'Minnesota''s Private Colleges'),
(67989, 57527, 'en', 'name', 'Langley Porter Psychiatric Hospital and Clinics'),
(67990, 57528, 'en', 'name', 'Minnesota Science Teachers Association'),
(67991, 57529, 'en', 'name', 'National Congress of American Indians'),
(67992, 57530, 'en', 'name', 'Lawrence Semiconductor Research Laboratory'),
(67993, 57531, 'en', 'name', 'Mississippi Museum of Natural Science'),
(67994, 57532, 'en', 'name', 'National Council on Crime and Delinquency'),
(67995, 57533, 'en', 'name', 'Nebraska Council on Economic Education'),
(67996, 57534, 'en', 'name', 'Legacy International'),
(67997, 57535, 'en', 'name', 'Missouri Academy of Science'),
(67998, 57536, 'en', 'name', 'Organizations Concerned About Rural Education'),
(67999, 57537, 'en', 'name', 'Mobile Area Education Foundation'),
(68000, 57538, 'en', 'name', 'Orlando Science Center'),
(68001, 57539, 'en', 'name', 'Modoc County Office of Education'),
(68002, 57540, 'en', 'name', 'Oshkosh Public Museum'),
(68003, 57541, 'en', 'name', 'Nebraska State College System'),
(68004, 57542, 'en', 'name', 'GC Media'),
(68005, 57543, 'en', 'name', 'Montana Science Teachers Association'),
(68006, 57544, 'en', 'name', 'Montgomery Botanical Center'),
(68007, 57545, 'en', 'name', 'Morrison Tech'),
(68008, 57546, 'no_lang_code', 'name', 'Network Foundation Technologies (United States)'),
(68009, 57547, 'no_lang_code', 'name', 'Motion Scientific (United States)'),
(68010, 57548, 'en', 'name', 'Pacific Sociological Association'),
(68011, 57549, 'en', 'name', 'Nebraska Independent College Foundation'),
(68012, 57550, 'en', 'name', 'Mountain Studies Institute'),
(68013, 57551, 'en', 'name', 'PaleoCultural Research Group'),
(68014, 57552, 'en', 'name', 'RNA Society'),
(68015, 57553, 'en', 'name', 'Neutron Scattering Society of America'),
(68016, 57554, 'en', 'name', 'Roanoke-Chowan Community College'),
(68017, 57555, 'en', 'name', 'National Gardening Association'),
(68018, 57556, 'it', 'name', 'Agenzia Sanitaria e Sociale Regionale'),
(68019, 57557, 'en', 'name', 'Neville Public Museum'),
(68020, 57558, 'en', 'name', 'Rocky Mountain Institute'),
(68021, 57559, 'en', 'name', 'Virginia Living Museum'),
(68022, 57560, 'en', 'name', 'Rocky Mountain School of Expeditionary Learning'),
(68023, 57561, 'en', 'name', 'National Health Council'),
(68024, 57562, 'en', 'name', 'Center for Aquatic Sciences'),
(68025, 57563, 'en', 'name', 'Intercultural Center for Research in Education'),
(68026, 57564, 'en', 'name', 'RUTE Foundations'),
(68027, 57565, 'en', 'name', 'NTL Institute for Applied Behavioral Science'),
(68028, 57566, 'en', 'name', 'New Renaissance Institute'),
(68029, 57567, 'es', 'name', 'Centro Intercultural de Estudios de Desiertos y OcƩanos'),
(68030, 57567, 'en', 'name', 'Intercultural Center for the Study of Deserts and Oceans'),
(68031, 57568, 'en', 'name', 'Intercultural Development Research Association'),
(68032, 57569, 'en', 'name', 'Saginaw Chippewa Tribal College');
INSERT INTO `ror_settings` VALUES
(68033, 57570, 'no_lang_code', 'name', 'Polaris Research and Development (United States)'),
(68034, 57571, 'en', 'name', 'New York City Police Department'),
(68035, 57572, 'en', 'name', 'Polish Institute of Arts and Sciences of America'),
(68036, 57573, 'en', 'name', 'Saint Mary''s School'),
(68037, 57574, 'en', 'name', 'NewPath Research'),
(68038, 57575, 'en', 'name', 'Salvadori Center'),
(68039, 57576, 'no_lang_code', 'name', 'Prescient Surgical (United States)'),
(68040, 57577, 'en', 'name', 'San Francisco Zoo'),
(68041, 57578, 'en', 'name', 'Program Support Center'),
(68042, 57579, 'en', 'name', 'National Parks Conservation Association'),
(68043, 57580, 'en', 'name', 'Sanibel-Captiva Conservation Foundation'),
(68044, 57581, 'en', 'name', 'National Recreation and Park Association'),
(68045, 57582, 'en', 'name', 'Public Laboratory for Open Technology and Science'),
(68046, 57583, 'en', 'name', 'Public Responsibility in Medicine and Research'),
(68047, 57584, 'en', 'name', 'Southwestern Vermont Health Care'),
(68048, 57585, 'en', 'name', 'Southeast Career Technical Academy'),
(68049, 57586, 'en', 'name', 'North Carolina Department of Administration'),
(68050, 57587, 'en', 'name', 'Central Carolina Technical College'),
(68051, 57588, 'en', 'name', 'School for Field Studies'),
(68052, 57589, 'en', 'name', 'Southeast Tech'),
(68053, 57590, 'en', 'name', 'North Carolina Office of the Governor'),
(68054, 57591, 'en', 'name', 'Southeastern Regional Education Service Center'),
(68055, 57592, 'en', 'name', 'Science Club'),
(68056, 57593, 'en', 'name', 'Science Museum of Western Virginia'),
(68057, 57594, 'en', 'name', 'Science Museum of Virginia'),
(68058, 57595, 'en', 'name', 'Levin Institute'),
(68059, 57596, 'en', 'name', 'Scientists Center for Animal Welfare'),
(68060, 57597, 'en', 'name', 'Technology Student Association'),
(68061, 57598, 'en', 'name', 'Rhode Island Department of Elementary and Secondary Education'),
(68062, 57599, 'en', 'name', 'Southwest Center for Educational Excellence'),
(68063, 57600, 'en', 'name', 'Ridgewater College'),
(68064, 57601, 'no_lang_code', 'name', 'Rivanna Medical (United States)'),
(68065, 57602, 'en', 'name', 'River Valley Community College'),
(68066, 57603, 'en', 'name', 'Siskiyou County Office of Education'),
(68067, 57604, 'en', 'name', 'Instructional Research Group'),
(68068, 57605, 'no_lang_code', 'name', 'SmalTec International (United States)'),
(68069, 57606, 'en', 'name', 'Sustainable Horizons Institute'),
(68070, 57607, 'en', 'name', 'Thorne Nature Experience'),
(68071, 57608, 'en', 'name', 'National Consumer Law Center'),
(68072, 57609, 'en', 'name', 'Society For Applied Spectroscopy'),
(68073, 57610, 'en', 'name', 'Tahoe Regional Planning Agency'),
(68074, 57611, 'en', 'name', 'Society for Biomaterials'),
(68075, 57612, 'en', 'name', 'Tarkio College'),
(68076, 57613, 'en', 'name', 'TMT Observatory'),
(68077, 57614, 'en', 'name', 'Society for Modeling and Simulation International'),
(68078, 57615, 'en', 'name', 'Community Frameworks'),
(68079, 57616, 'en', 'name', 'Trenholm State Community College'),
(68080, 57617, 'en', 'name', 'Tau Beta Pi Association'),
(68081, 57618, 'en', 'name', 'St. Mark''s School of Texas'),
(68082, 57619, 'en', 'name', 'The Nurture Nature Foundation'),
(68083, 57620, 'en', 'name', 'Tribal Nations Research Group'),
(68084, 57621, 'en', 'name', 'Teachers Development Group'),
(68085, 57622, 'en', 'name', 'Teaching Channel'),
(68086, 57623, 'en', 'name', 'Ocean Institute'),
(68087, 57624, 'en', 'name', 'Oceanic Research Group'),
(68088, 57625, 'en', 'name', 'Space Foundation'),
(68089, 57626, 'en', 'name', 'OCTANE FOUNDATION'),
(68090, 57627, 'en', 'name', 'Stonewall Learning Center'),
(68091, 57628, 'en', 'name', 'Strategic Education Research Partnership'),
(68092, 57629, 'en', 'name', 'U.S. Space and Rocket Center'),
(68093, 57630, 'en', 'name', 'Success for All Foundation'),
(68094, 57631, 'en', 'name', 'Undersea and Hyperbaric Medical Society'),
(68095, 57632, 'en', 'name', 'Urban Land Institute'),
(68096, 57633, 'en', 'name', 'West Virginia Research Technology Park'),
(68097, 57634, 'en', 'name', 'Oklahoma State Regents for Higher Education'),
(68098, 57635, 'en', 'name', 'OSU-University Multispectral Laboratories'),
(68099, 57636, 'en', 'name', 'Usenix Association'),
(68100, 57637, 'en', 'name', 'Old Colorado City Historical Society'),
(68101, 57638, 'en', 'name', 'Utah Society for Environmental Education'),
(68102, 57639, 'en', 'name', 'Telluride Science Research Center'),
(68103, 57640, 'en', 'name', 'Vision Education and Media'),
(68104, 57641, 'en', 'name', 'Orange County Department of Education'),
(68105, 57642, 'en', 'name', 'United Negro College Fund'),
(68106, 57643, 'en', 'name', 'United States Postal Service Office of Inspector General'),
(68107, 57644, 'en', 'name', 'US Virtual Astronomical Observatory'),
(68108, 57645, 'en', 'name', 'The 21st Century Partnership for STEM Education'),
(68109, 57646, 'no_lang_code', 'name', 'ZSX Medical (United States)'),
(68110, 57647, 'en', 'name', 'The White Oak Institute'),
(68111, 57648, 'en', 'name', 'The Baum Foundation'),
(68112, 57649, 'en', 'name', 'Wyoming Outdoor Council'),
(68113, 57650, 'en', 'name', 'Wild Salmon Center'),
(68114, 57651, 'en', 'name', 'Xerces Society'),
(68115, 57652, 'en', 'name', 'University of Hawaii Maui College'),
(68116, 57653, 'en', 'name', 'Yellowstone Forever'),
(68117, 57654, 'en', 'name', 'Science Factory'),
(68118, 57655, 'en', 'name', 'BioBricks Foundation'),
(68119, 57656, 'en', 'name', 'Northcentral Arkansas Education Cooperative'),
(68120, 57657, 'en', 'name', 'New York City Foundation for Computer Science Education'),
(68121, 57658, 'en', 'name', 'San Diego Archaeological Center'),
(68122, 57659, 'en', 'name', 'Society for Organizational Learning'),
(68123, 57660, 'en', 'name', 'Union City Public Schools'),
(68124, 57661, 'en', 'name', 'Virtual Reality Medical Center'),
(68125, 57662, 'en', 'name', 'Williamsburg Technical College'),
(68126, 57663, 'en', 'name', 'Children’s Museum of Houston'),
(68127, 57664, 'en', 'name', 'Wildlands Network'),
(68128, 57665, 'en', 'name', 'Council for Adult and Experiential Learning'),
(68129, 57666, 'en', 'name', 'Latin School of Chicago'),
(68130, 57667, 'en', 'name', 'Long Now Foundation'),
(68131, 57668, 'en', 'name', 'Western Foundation of Vertebrate Zoology'),
(68132, 57669, 'en', 'name', 'Wisconsin Legislative Council'),
(68133, 57670, 'en', 'name', 'Foundation for Human Potential'),
(68134, 57671, 'en', 'name', 'National Science & Technology Education Partnership'),
(68135, 57672, 'en', 'name', 'West Virginia Network'),
(68136, 57673, 'en', 'name', 'Work Opportunity Center'),
(68137, 57674, 'en', 'name', 'World Future Society'),
(68138, 57675, 'en', 'name', 'Whitaker Center for Science and the Arts'),
(68139, 57676, 'no_lang_code', 'name', 'Cory Laboratories'),
(68140, 57677, 'no_lang_code', 'name', 'Abcombi Biosciences (United States)'),
(68141, 57678, 'no_lang_code', 'name', 'Alaska Biological Research (United States)'),
(68142, 57679, 'no_lang_code', 'name', 'InsightFinder (United States)'),
(68143, 57680, 'en', 'name', 'Fraser Research'),
(68144, 57681, 'en', 'name', 'Community Living'),
(68145, 57682, 'no_lang_code', 'name', 'Acadia Harvest (United States)'),
(68146, 57683, 'en', 'name', 'Benjamin Banneker Association'),
(68147, 57684, 'no_lang_code', 'name', 'Activated Research Company (United States)'),
(68148, 57685, 'en', 'name', 'Council of the Inspectors General on Integrity and Efficiency'),
(68149, 57686, 'no_lang_code', 'name', 'CSD Nano (United States)'),
(68150, 57687, 'en', 'name', 'Addiction Research Foundation'),
(68151, 57688, 'no_lang_code', 'name', 'TechSolve (United States)'),
(68152, 57689, 'no_lang_code', 'name', 'Fujitsu (United States)'),
(68153, 57690, 'en', 'name', 'CueThink'),
(68154, 57691, 'en', 'name', 'French River Education Center'),
(68155, 57692, 'en', 'name', 'Better Education Inc'),
(68156, 57693, 'en', 'name', 'American Distance Education Consortium'),
(68157, 57694, 'en', 'name', 'Adirondack Area Network'),
(68158, 57695, 'no_lang_code', 'name', 'Adnoviv (United States)'),
(68159, 57696, 'en', 'name', 'Intelecom Learning'),
(68160, 57697, 'en', 'name', 'Discovery Center of Idaho'),
(68161, 57698, 'en', 'name', 'Bijhem Scientific'),
(68162, 57699, 'no_lang_code', 'name', 'Inter-Mountain Laboratories (United States)'),
(68163, 57700, 'en', 'name', 'Delaware Valley Industrial Resource Center'),
(68164, 57701, 'no_lang_code', 'name', 'Advantageous Systems (United States)'),
(68165, 57702, 'no_lang_code', 'name', 'BioInspira (United States)'),
(68166, 57703, 'en', 'name', 'Aegean Conferences'),
(68167, 57704, 'no_lang_code', 'name', 'BioMat Sciences (United States)'),
(68168, 57705, 'en', 'name', 'Interlochen Center for the Arts'),
(68169, 57706, 'no_lang_code', 'name', 'Aerospace Testing (United States)'),
(68170, 57707, 'en', 'name', 'East Bay Consortium of Educational Institutions'),
(68171, 57708, 'no_lang_code', 'name', 'Akervall Technologies (United States)'),
(68172, 57709, 'en', 'name', 'International Adsorption Society'),
(68173, 57710, 'no_lang_code', 'name', 'Biorasis (United States)'),
(68174, 57711, 'no_lang_code', 'name', 'Edison Agrosciences (United States)'),
(68175, 57712, 'en', 'name', 'International Archaeological Research Institute'),
(68176, 57713, 'en', 'name', 'Alignment Nashville'),
(68177, 57714, 'no_lang_code', 'name', 'Genoverde Biosciences (United States)'),
(68178, 57715, 'en', 'name', 'Educational Media Resources'),
(68179, 57716, 'no_lang_code', 'name', 'SteelCloud (United States)'),
(68180, 57717, 'no_lang_code', 'name', 'AmebaGone (United States)'),
(68181, 57718, 'no_lang_code', 'name', 'BiotecEra (United States)'),
(68182, 57719, 'no_lang_code', 'name', 'Educational Solutions (United States)'),
(68183, 57720, 'no_lang_code', 'name', 'IntellADAPT (United States)'),
(68184, 57721, 'no_lang_code', 'name', 'GeoEngineers (United States)'),
(68185, 57722, 'no_lang_code', 'name', 'International Isotopes (United States)'),
(68186, 57723, 'no_lang_code', 'name', 'Electrocon International (United States)'),
(68187, 57724, 'en', 'name', 'Palynological Society'),
(68188, 57725, 'en', 'name', 'Eli Whitney Museum'),
(68189, 57726, 'no_lang_code', 'name', 'Embedded Research Solutions (United States)'),
(68190, 57727, 'no_lang_code', 'name', 'Enable Biosciences (United States)'),
(68191, 57728, 'en', 'name', 'International Science and Technology Institute'),
(68192, 57729, 'no_lang_code', 'name', 'Glauconix (United States)'),
(68193, 57730, 'en', 'name', 'Amerind Museum'),
(68194, 57731, 'no_lang_code', 'name', 'enEvolv (United States)'),
(68195, 57732, 'no_lang_code', 'name', 'Amriton (United States)'),
(68196, 57733, 'no_lang_code', 'name', 'Bluewater International (United States)'),
(68197, 57734, 'no_lang_code', 'name', 'Anchor Science (United States)'),
(68198, 57735, 'en', 'name', 'Angstron Materials (United States)'),
(68199, 57736, 'en', 'name', 'Inuit Circumpolar Council'),
(68200, 57737, 'no_lang_code', 'name', 'Equinosis (United States)'),
(68201, 57738, 'no_lang_code', 'name', 'Bountiful Applied Research Corporation (United States)'),
(68202, 57739, 'en', 'name', 'Anoka-Hennepin School District'),
(68203, 57740, 'no_lang_code', 'name', 'Great Minds in STEM (United States)'),
(68204, 57741, 'no_lang_code', 'name', 'Essentium Materials (United States)'),
(68205, 57742, 'no_lang_code', 'name', 'Invictus Medical (United States)'),
(68206, 57743, 'no_lang_code', 'name', 'Apama Medical (United States)'),
(68207, 57744, 'no_lang_code', 'name', 'Buck Research Instruments (United States)'),
(68208, 57745, 'no_lang_code', 'name', 'Apollo Medical Devices (United States)'),
(68209, 57746, 'no_lang_code', 'name', 'H-Tech Laboratories (United States)'),
(68210, 57747, 'no_lang_code', 'name', 'Factory Physics (United States)'),
(68211, 57748, 'no_lang_code', 'name', 'IONEX Research Corporation (United States)'),
(68212, 57749, 'no_lang_code', 'name', 'Far Eastern Shipping (United States)'),
(68213, 57750, 'en', 'name', 'Iridescent'),
(68214, 57751, 'no_lang_code', 'name', 'Applied LifeSciences & Systems (United States)'),
(68215, 57752, 'no_lang_code', 'name', 'Caduceus Intelligence Corporation (United States)'),
(68216, 57753, 'no_lang_code', 'name', 'iSono Health (United States)'),
(68217, 57754, 'no_lang_code', 'name', 'Filament Games (United States)'),
(68218, 57755, 'en', 'name', 'Calista Education and Culture'),
(68219, 57756, 'no_lang_code', 'name', 'Fossil Energy Research (United States)'),
(68220, 57757, 'no_lang_code', 'name', 'Applied Science Associates (United States)'),
(68221, 57758, 'no_lang_code', 'name', 'AppScale (United States)'),
(68222, 57759, 'no_lang_code', 'name', 'Health Fidelity (United States)'),
(68223, 57760, 'no_lang_code', 'name', 'HealthMyne (United States)'),
(68224, 57761, 'no_lang_code', 'name', 'Cardiac Motion (United States)'),
(68225, 57762, 'en', 'name', 'Apri Health'),
(68226, 57763, 'en', 'name', 'Jackson Hole Wildlife Film Festival'),
(68227, 57764, 'no_lang_code', 'name', 'Heat Transfer Research & Development (United States)'),
(68228, 57765, 'no_lang_code', 'name', 'Caribou Biosciences (United States)'),
(68229, 57766, 'no_lang_code', 'name', 'AquaMatrix International (United States)'),
(68230, 57767, 'no_lang_code', 'name', 'Heat Transfer Research (United States)'),
(68231, 57768, 'en', 'name', 'JES & Co'),
(68232, 57769, 'no_lang_code', 'name', 'MaxQ (United States)'),
(68233, 57770, 'no_lang_code', 'name', 'Heavystone Laboratory (United States)'),
(68234, 57771, 'no_lang_code', 'name', 'Carthago International Solutions (United States)'),
(68235, 57772, 'no_lang_code', 'name', 'Art & Science Productions (United States)'),
(68236, 57773, 'no_lang_code', 'name', 'Splitvane Engineers (United States)'),
(68237, 57774, 'no_lang_code', 'name', 'Media Health Technologies (United States)'),
(68238, 57775, 'no_lang_code', 'name', 'OESH Shoes (United States)'),
(68239, 57776, 'no_lang_code', 'name', 'Arytha Biosciences (United States)'),
(68240, 57777, 'no_lang_code', 'name', 'Ascent Bio-Nano Technologies (United States)'),
(68241, 57778, 'en', 'name', 'Joint Educational Facilities'),
(68242, 57779, 'no_lang_code', 'name', 'Higher Education Services (United States)'),
(68243, 57780, 'no_lang_code', 'name', 'CCI Reprographics (United States)'),
(68244, 57781, 'no_lang_code', 'name', 'Histogen (United States)'),
(68245, 57782, 'no_lang_code', 'name', 'Mental Canvas (United States)'),
(68246, 57783, 'en', 'name', 'Asset Stem Education'),
(68247, 57784, 'no_lang_code', 'name', 'Metcut Research (United States)'),
(68248, 57785, 'en', 'name', 'Associated Scientists at Woods Hole'),
(68249, 57786, 'no_lang_code', 'name', 'Mid Michigan Research (United States)'),
(68250, 57787, 'no_lang_code', 'name', 'Horizon Communications (United States)'),
(68251, 57788, 'en', 'name', 'K2 Communications'),
(68252, 57789, 'no_lang_code', 'name', 'Minnesota HealthSolutions (United States)'),
(68253, 57790, 'no_lang_code', 'name', 'Miromatrix Medical (United States)'),
(68254, 57791, 'en', 'name', 'Kawerak'),
(68255, 57792, 'en', 'name', 'Autonomous Healthcare'),
(68256, 57793, 'no_lang_code', 'name', 'KelaHealth (United States)'),
(68257, 57794, 'no_lang_code', 'name', 'Chemsultants International (United States)'),
(68258, 57795, 'no_lang_code', 'name', 'Ketron Optimization (United States)'),
(68259, 57796, 'no_lang_code', 'name', 'HXI (United States)'),
(68260, 57797, 'en', 'name', 'Baltimore Symphony Orchestra'),
(68261, 57798, 'en', 'name', 'Kieve-Wavus Education'),
(68262, 57799, 'no_lang_code', 'name', 'Hobi Instrument Services (United States)'),
(68263, 57800, 'no_lang_code', 'name', 'MSTM (United States)'),
(68264, 57801, 'en', 'name', 'Minorities in Mathematics, Science & Engineering'),
(68265, 57802, 'en', 'name', 'Kinema Research & Software'),
(68266, 57803, 'no_lang_code', 'name', 'MTPV Power (United States)'),
(68267, 57804, 'no_lang_code', 'name', 'BBC Worldwide (United States)'),
(68268, 57805, 'no_lang_code', 'name', 'MultiModel Research (United States)'),
(68269, 57806, 'no_lang_code', 'name', 'Knox Medical Diagnostics (United States)'),
(68270, 57807, 'no_lang_code', 'name', 'ACR Electronics (United States)'),
(68271, 57808, 'no_lang_code', 'name', 'Nano Hydrophobics (United States)'),
(68272, 57809, 'en', 'name', 'Koliber Biosciences'),
(68273, 57810, 'no_lang_code', 'name', 'Nano3D Biosciences (United States)'),
(68274, 57811, 'en', 'name', 'Ocean Research & Conservation Association'),
(68275, 57812, 'no_lang_code', 'name', 'NanoAffix Science (United States)'),
(68276, 57813, 'no_lang_code', 'name', 'Odorcept (United States)'),
(68277, 57814, 'no_lang_code', 'name', 'NanoSynth Materials and Sensors (United States)'),
(68278, 57815, 'en', 'name', 'National Black Graduate Student Association'),
(68279, 57816, 'no_lang_code', 'name', 'Ideum (United States)'),
(68280, 57817, 'en', 'name', 'National Committee on United States China Relations'),
(68281, 57818, 'en', 'name', 'Las Vegas Academy of the Arts'),
(68282, 57819, 'no_lang_code', 'name', 'Imbed Biosciences (United States)'),
(68283, 57820, 'no_lang_code', 'name', 'Launchpad Central (United States)'),
(68284, 57821, 'no_lang_code', 'name', 'Optical Polymer Research (United States)'),
(68285, 57822, 'no_lang_code', 'name', 'TRC Companies (United States)'),
(68286, 57823, 'no_lang_code', 'name', 'Independence Science (United States)'),
(68287, 57824, 'en', 'name', 'Navajo Language Academy'),
(68288, 57825, 'en', 'name', 'Indiana State Museum'),
(68289, 57826, 'no_lang_code', 'name', 'OtoNexus Medical Technologies (United States)'),
(68290, 57827, 'en', 'name', 'Corporation for Research and Educational Networking'),
(68291, 57828, 'no_lang_code', 'name', 'NeuraMedica (United States)'),
(68292, 57829, 'no_lang_code', 'name', 'Lena Biosciences (United States)'),
(68293, 57830, 'en', 'name', 'New England Council'),
(68294, 57831, 'no_lang_code', 'name', 'Infinitesimal (United States)'),
(68295, 57832, 'no_lang_code', 'name', 'PAX Scientific (United States)'),
(68296, 57833, 'no_lang_code', 'name', 'Infinity HealthCare (United States)'),
(68297, 57834, 'no_lang_code', 'name', 'Rao Research and Consulting (United States)'),
(68298, 57835, 'no_lang_code', 'name', 'LighTopTech (United States)'),
(68299, 57836, 'no_lang_code', 'name', 'Nexmatix (United States)'),
(68300, 57837, 'no_lang_code', 'name', 'List Biological Laboratories (United States)'),
(68301, 57838, 'no_lang_code', 'name', 'Ratrix Technologies (United States)'),
(68302, 57839, 'no_lang_code', 'name', 'PhylloTech (United States)'),
(68303, 57840, 'no_lang_code', 'name', 'Leighton (United States)'),
(68304, 57841, 'no_lang_code', 'name', 'Physical Devices (United States)'),
(68305, 57842, 'no_lang_code', 'name', 'TerraFly (United States)'),
(68306, 57843, 'no_lang_code', 'name', 'Picosense (United States)'),
(68307, 57844, 'en', 'name', 'Haitian American Community Development Corporation'),
(68308, 57845, 'en', 'name', 'Nona Research Foundation'),
(68309, 57846, 'no_lang_code', 'name', 'LogicMill Technology (United States)'),
(68310, 57847, 'no_lang_code', 'name', 'Pioneer Valley Books (United States)'),
(68311, 57848, 'no_lang_code', 'name', 'nView Medical (United States)'),
(68312, 57849, 'en', 'name', 'O’Donnell Associates'),
(68313, 57850, 'no_lang_code', 'name', 'Plymouth Grating Laboratory (United States)'),
(68314, 57851, 'en', 'name', 'National Association of Conservation Districts'),
(68315, 57852, 'no_lang_code', 'name', 'Lumenware (United States)'),
(68316, 57853, 'no_lang_code', 'name', 'Polnox (United States)'),
(68317, 57854, 'no_lang_code', 'name', 'Brainly (United States)'),
(68318, 57855, 'no_lang_code', 'name', 'Solinas Medical (United States)'),
(68319, 57856, 'en', 'name', 'LXD Research & Display'),
(68320, 57857, 'no_lang_code', 'name', 'Tethys Research (United States)'),
(68321, 57858, 'no_lang_code', 'name', 'SolRayo (United States)'),
(68322, 57859, 'no_lang_code', 'name', 'Prevail Health Solutions (United States)'),
(68323, 57860, 'no_lang_code', 'name', 'Thalchemy (United States)'),
(68324, 57861, 'no_lang_code', 'name', 'McCormick Environmental (United States)'),
(68325, 57862, 'no_lang_code', 'name', 'Occipital (United States)'),
(68326, 57863, 'no_lang_code', 'name', 'SonoVol (United States)'),
(68327, 57864, 'no_lang_code', 'name', 'M4 Sciences (United States)'),
(68328, 57865, 'en', 'name', 'South Bronx Overall Economic Development'),
(68329, 57866, 'no_lang_code', 'name', 'MAA Laboratories (United States)'),
(68330, 57867, 'no_lang_code', 'name', 'Chedd Angier Production (United States)'),
(68331, 57868, 'no_lang_code', 'name', 'Provivi (United States)'),
(68332, 57869, 'en', 'name', 'Children’s Museum of Atlanta'),
(68333, 57870, 'no_lang_code', 'name', 'Revolution Research'),
(68334, 57871, 'no_lang_code', 'name', 'Proximity Biosciences (United States)'),
(68335, 57872, 'en', 'name', 'Southern Oregon Public Television'),
(68336, 57873, 'no_lang_code', 'name', 'PuraCath Medical (United States)'),
(68337, 57874, 'no_lang_code', 'name', 'Fred Rogers (United States)'),
(68338, 57875, 'en', 'name', 'Rochester Engineering Society'),
(68339, 57876, 'no_lang_code', 'name', 'Pyrochem Catalyst Company (United States)'),
(68340, 57877, 'no_lang_code', 'name', 'Spectral MD (United States)'),
(68341, 57878, 'no_lang_code', 'name', 'VesselTek Biomedical (United States)'),
(68342, 57879, 'no_lang_code', 'name', 'Spectrum Research (United States)'),
(68343, 57880, 'no_lang_code', 'name', 'Video Collaboratory (United States)'),
(68344, 57881, 'no_lang_code', 'name', 'Expedeon (United States)'),
(68345, 57882, 'no_lang_code', 'name', 'Spectrum Scientific (United States)'),
(68346, 57883, 'no_lang_code', 'name', 'Madison Group (United States)'),
(68347, 57884, 'no_lang_code', 'name', 'SpringActive (United States)'),
(68348, 57885, 'no_lang_code', 'name', 'Quintara Biosciences (United States)'),
(68349, 57886, 'en', 'name', 'Virginia Cooperative Extension'),
(68350, 57887, 'no_lang_code', 'name', 'StabiLux Biosciences (United States)'),
(68351, 57888, 'en', 'name', 'The Tor Project'),
(68352, 57889, 'no_lang_code', 'name', 'Virta Laboratories (United States)'),
(68353, 57890, 'en', 'name', 'Rainbow Research'),
(68354, 57891, 'no_lang_code', 'name', 'TheBeamer (United States)'),
(68355, 57892, 'no_lang_code', 'name', 'Vistex Composites (United States)'),
(68356, 57893, 'en', 'name', 'Stark Education Partnership'),
(68357, 57894, 'en', 'name', 'Workit Health'),
(68358, 57895, 'no_lang_code', 'name', 'Vortex Hydro Energy (United States)'),
(68359, 57896, 'no_lang_code', 'name', 'Stasys Medical (United States)'),
(68360, 57897, 'no_lang_code', 'name', 'Topasol (United States)'),
(68361, 57898, 'en', 'name', 'Institute for Science and Human Values'),
(68362, 57899, 'no_lang_code', 'name', 'TutorGen (United States)'),
(68363, 57900, 'no_lang_code', 'name', 'Zenwa (United States)'),
(68364, 57901, 'no_lang_code', 'name', 'Sterling International (United States)'),
(68365, 57902, 'no_lang_code', 'name', 'Yosemite International Consultants (United States)'),
(68366, 57903, 'en', 'name', 'Science Center of Pinellas'),
(68367, 57904, 'no_lang_code', 'name', 'ZeroUI (United States)'),
(68368, 57905, 'no_lang_code', 'name', 'Universal Dialog (United States)'),
(68369, 57906, 'en', 'name', 'Zoo Miami'),
(68370, 57907, 'no_lang_code', 'name', 'ScienceMedia (United States)'),
(68371, 57908, 'no_lang_code', 'name', 'V&R Energy Systems Research (United States)'),
(68372, 57909, 'en', 'name', 'zyBooks'),
(68373, 57910, 'no_lang_code', 'name', 'Varigen Biosciences (United States)'),
(68374, 57911, 'no_lang_code', 'name', 'Scientific Imaging and Visualization (United States)'),
(68375, 57912, 'no_lang_code', 'name', 'Yes Technologies (United States)'),
(68376, 57913, 'no_lang_code', 'name', 'TAO Connect (United States)'),
(68377, 57914, 'no_lang_code', 'name', 'Sunstream Scientific (United States)'),
(68378, 57915, 'no_lang_code', 'name', 'Screenscope (United States)'),
(68379, 57916, 'no_lang_code', 'name', 'DDC-I (United States)'),
(68380, 57917, 'no_lang_code', 'name', 'Finn Partners (United States)'),
(68381, 57918, 'no_lang_code', 'name', 'SoundRocket (United States)'),
(68382, 57919, 'no_lang_code', 'name', 'MacKichan Software (United States)'),
(68383, 57920, 'no_lang_code', 'name', 'Seismic Isolation Engineering (United States)'),
(68384, 57921, 'en', 'name', 'Techbridge (United States)'),
(68385, 57922, 'no_lang_code', 'name', 'Sintact Medical Systems (United States)'),
(68386, 57923, 'no_lang_code', 'name', 'SHINE Medical Technologies (United States)'),
(68387, 57924, 'no_lang_code', 'name', 'T3 Scientific (United States)'),
(68388, 57925, 'no_lang_code', 'name', 'Sepragen Corporation (United States)'),
(68389, 57926, 'no_lang_code', 'name', 'Solarmer Energy (United States)'),
(68390, 57927, 'no_lang_code', 'name', 'Solarno (United States)'),
(68391, 57928, 'en', 'name', 'Gansu Provincial Agriculture and Animal Husbandry'),
(68392, 57929, 'en', 'name', 'Kunming Metallurgical Research Institute'),
(68393, 57929, 'zh', 'name', 'ę˜†ę˜Žå†¶é‡‘ē ”ē©¶ę‰€'),
(68394, 57930, 'en', 'name', 'Shenzhen Entry-Exit Inspection and Quarantine Bureau'),
(68395, 57931, 'en', 'name', 'Creedmoor Psychiatric Center'),
(68396, 57932, 'en', 'name', 'Anhui and Huaihe River Institute of Hydraulic Research'),
(68397, 57932, 'zh', 'name', 'å®‰å¾½ēœę°“åˆ©éƒØę·®å§”ę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(68398, 57933, 'en', 'name', 'Lanzhou Petrochemical Polytechnic'),
(68399, 57933, 'zh', 'name', 'å…°å·žēŸ³åŒ–čŒäøšęŠ€ęœÆå­¦é™¢'),
(68400, 57934, 'en', 'name', 'Beijing Academy of Social Sciences'),
(68401, 57934, 'zh', 'name', 'åŒ—äŗ¬åø‚ē¤¾ä¼šē§‘å­¦é™¢'),
(68402, 57935, 'en', 'name', 'Marine Biology Institute of Shandong Province'),
(68403, 57935, 'zh', 'name', 'å±±äøœēœęµ·ę“‹ē”Ÿē‰©ē ”ē©¶é™¢ 地址'),
(68404, 57936, 'en', 'name', 'Chinese People ''s Liberation Army No.455 Hospital'),
(68405, 57936, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬å››äŗ”äŗ”åŒ»é™¢'),
(68406, 57937, 'en', 'name', 'Fujian Academy of Medical Sciences'),
(68407, 57937, 'zh', 'name', 'ē¦å»ŗēœåŒ»å­¦ē§‘å­¦é™¢'),
(68408, 57938, 'en', 'name', 'Changzhi University'),
(68409, 57938, 'zh', 'name', '长治学院'),
(68410, 57939, 'en', 'name', 'Chemical Industry Press'),
(68411, 57939, 'zh', 'name', 'åŒ–å­¦å·„äøšå‡ŗē‰ˆē¤¾'),
(68412, 57940, 'en', 'name', 'Baoshan College'),
(68413, 57940, 'zh', 'name', '宝山学院'),
(68414, 57941, 'en', 'name', 'State Radio Regulation Of China'),
(68415, 57941, 'zh', 'name', 'å›½å®¶ę— ēŗæē”µē›‘ęµ‹äø­åæƒ'),
(68416, 57942, 'en', 'name', 'Qilu Normal University'),
(68417, 57942, 'zh', 'name', 'é½é²åøˆčŒƒå­¦é™¢'),
(68418, 57943, 'en', 'name', 'China Guangzhou Analysis and Testing Center'),
(68419, 57943, 'zh', 'name', 'äø­å›½å¹æå·žåˆ†ęžęµ‹čÆ•äø­åæƒ'),
(68420, 57944, 'en', 'name', 'China Institute of Electronics'),
(68421, 57944, 'zh', 'name', 'äø­å›½ē”µå­å­¦ä¼š'),
(68422, 57945, 'en', 'name', 'The Environmental Literacy Council'),
(68423, 57946, 'en', 'name', 'Planning and Conservation League'),
(68424, 57947, 'en', 'name', 'Gansu Research Academy of Forestry Science and Technology'),
(68425, 57947, 'zh', 'name', 'ē”˜č‚ƒęž—äøšē§‘ęŠ€ē ”ē©¶é™¢'),
(68426, 57948, 'en', 'name', 'Beijing Institute of Labor Protection Science'),
(68427, 57948, 'zh', 'name', 'åŒ—äŗ¬åø‚åŠ³åŠØäæęŠ¤ē§‘å­¦ē ”ē©¶ę‰€'),
(68428, 57949, 'en', 'name', 'Shaanxi Blood Center'),
(68429, 57949, 'zh', 'name', 'é™•č„æēœč”€ę¶²äø­åæƒ'),
(68430, 57950, 'en', 'name', 'Beijing Urban Systems Engineering Research Center'),
(68431, 57950, 'zh', 'name', 'åŒ—äŗ¬åŸŽåø‚ē³»ē»Ÿå·„ēØ‹ē ”ē©¶äø­åæƒ'),
(68432, 57951, 'no_lang_code', 'name', 'Guangdong Inspection and Quarantine Technology Center (China)'),
(68433, 57952, 'en', 'name', 'Shandong Binzhou Pasturage Veterinary Academy'),
(68434, 57952, 'zh', 'name', 'å±±äøœēœę»Øå·žē•œē‰§å…½åŒ»ē ”ē©¶é™¢'),
(68435, 57953, 'en', 'name', 'Beijing Municipal Commission of Urban Planning'),
(68436, 57953, 'zh', 'name', 'åŒ—äŗ¬åø‚č§„åˆ’å’Œå›½åœŸčµ„ęŗē®”ē†å§”å‘˜ä¼š'),
(68437, 57954, 'en', 'name', 'Shandong Entry-Exit Inspection and Quarantine Bureau'),
(68438, 57954, 'zh', 'name', 'å±±äøœå‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(68439, 57955, 'en', 'name', 'Tianjin International Joint Academy of Biomedicine'),
(68440, 57955, 'zh', 'name', 'å¤©ę“„å›½é™…č”åˆē”Ÿē‰©åŒ»å­¦ē ”ē©¶ę‰€'),
(68441, 57956, 'en', 'name', 'Shandong University of Political Science and Law'),
(68442, 57956, 'zh', 'name', 'å±±äøœę”æę³•å­¦é™¢'),
(68443, 57957, 'en', 'name', 'Guangdong Provincial Academy of Environmental Science'),
(68444, 57958, 'en', 'name', 'Shandong Yingcai University'),
(68445, 57958, 'zh', 'name', 'å±±äøœč‹±ę‰å­¦é™¢'),
(68446, 57959, 'en', 'name', 'Shanghai Entry-Exit Inspection and Quarantine Bureau'),
(68447, 57959, 'zh', 'name', 'äøŠęµ·å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(68448, 57960, 'en', 'name', 'Guangxi Buffalo Research Institute'),
(68449, 57961, 'en', 'name', 'Shanghai Institute of Measurement and Testing Technology'),
(68450, 57961, 'zh', 'name', 'äøŠęµ·ęµ‹é‡äøŽęµ‹čÆ•ęŠ€ęœÆē ”ē©¶ę‰€'),
(68451, 57962, 'en', 'name', 'Yunnan Earthquake Prevention and Disaster Reduction'),
(68452, 57962, 'zh', 'name', 'äŗ‘å—ēœåœ°éœ‡å±€'),
(68453, 57963, 'en', 'name', 'Shaanxi Provincial Seismological Bureau'),
(68454, 57963, 'zh', 'name', 'é™•č„æēœåœ°éœ‡å±€'),
(68455, 57964, 'en', 'name', 'Environmental Protection Research Institute of Light Industry'),
(68456, 57964, 'zh', 'name', 'č½»å·„äøšēŽÆå¢ƒäæęŠ¤ē ”ē©¶ę‰€'),
(68457, 57965, 'en', 'name', 'Shanghai Research Center for Wireless Communications'),
(68458, 57965, 'zh', 'name', 'äøŠęµ·ę— ēŗæé€šäæ”ē ”ē©¶äø­åæƒ'),
(68459, 57966, 'en', 'name', 'Hebei University of Environmental Engineering'),
(68460, 57966, 'zh', 'name', 'ę²³åŒ—ēŽÆå¢ƒå·„ēØ‹å­¦é™¢'),
(68461, 57967, 'en', 'name', 'Guangxi Normal University for Nationalities'),
(68462, 57968, 'en', 'name', 'Sichuan Entry-Exit Inspection and Quarantine Bureau'),
(68463, 57968, 'zh', 'name', 'å››å·å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€ę£€éŖŒę£€ē–«ęŠ€ęœÆäø­åæƒ'),
(68464, 57969, 'en', 'name', 'Gansu Qilian Mountains Water Conservation Forest Research Institute'),
(68465, 57969, 'zh', 'name', 'ē„čæžå±±ę°“ęŗę¶µå…»ęž—ē ”ē©¶é™¢'),
(68466, 57970, 'en', 'name', 'Guangzhou Institute of Advanced Technology'),
(68467, 57970, 'zh', 'name', 'å¹æå·žäø­å›½ē§‘å­¦é™¢å…ˆčæ›ęŠ€ęœÆē ”ē©¶ę‰€'),
(68468, 57971, 'en', 'name', 'Shenzhen Habitat Environment Committee'),
(68469, 57971, 'zh', 'name', 'ę·±åœ³åø‚äŗŗå±…ēŽÆå¢ƒå§”å‘˜ä¼š'),
(68470, 57972, 'en', 'name', 'Qinghai Red Cross Hospital'),
(68471, 57973, 'en', 'name', 'China Academy of Fiscal Science'),
(68472, 57973, 'zh', 'name', '中国蓢政科学研究院'),
(68473, 57974, 'en', 'name', 'Xi''an Botanical Garden of Shaanxi Province'),
(68474, 57974, 'zh', 'name', 'é™•č„æč„æå®‰ę¤ē‰©å›­'),
(68475, 57975, 'en', 'name', 'Guizhou Forestry Science Research Institute'),
(68476, 57975, 'zh', 'name', 'č“µå·žēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(68477, 57976, 'en', 'name', 'Nanjing Product Quality Supervision and Inspection Institute'),
(68478, 57977, 'en', 'name', 'Chongqing Population and Family Planning Science and Technology Research Institute'),
(68479, 57977, 'zh', 'name', 'é‡åŗ†åø‚äŗŗå£å’Œč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(68480, 57978, 'en', 'name', 'Xiamen Maternal and Child Health Hospital'),
(68481, 57978, 'zh', 'name', 'åŽ¦é—Øå¦‡å¹¼äæå„é™¢'),
(68482, 57979, 'en', 'name', 'Fruit Research Institute'),
(68483, 57979, 'zh', 'name', 'å¹æäøœēœå†œäøšē§‘å­¦é™¢ęžœę ‘ē ”ē©¶ę‰€'),
(68484, 57980, 'en', 'name', 'Wuhan Applied Science and Technology School'),
(68485, 57980, 'zh', 'name', 'ę­¦ę±‰åŗ”ē”Øē§‘ęŠ€å­¦é™¢'),
(68486, 57981, 'en', 'name', 'Rice Research Institute'),
(68487, 57981, 'zh', 'name', 'å¹æäøœēœå†œäøšē§‘å­¦é™¢ę°“ēØ»ē ”ē©¶ę‰€'),
(68488, 57982, 'en', 'name', 'Sericulture and Agricultural Products Research Institute'),
(68489, 57982, 'zh', 'name', 'å¹æäøœēœå†œäøšē§‘å­¦é™¢čš•äøšäøŽå†œäŗ§å“åŠ å·„ē ”ē©¶ę‰€'),
(68490, 57983, 'en', 'name', 'China Metallurgical Geology Bureau'),
(68491, 57984, 'en', 'name', 'Guangdong Province Environmental Monitoring Center'),
(68492, 57984, 'zh', 'name', 'å¹æäøœēœēŽÆå¢ƒē›‘ęµ‹äø­åæƒ'),
(68493, 57985, 'en', 'name', 'Jiangsu Province Blood Center'),
(68494, 57985, 'zh', 'name', 'ę±Ÿč‹ēœč”€ę¶²äø­åæƒ'),
(68495, 57986, 'en', 'name', 'Jiangsu Provincial Academy of Environmental Science'),
(68496, 57986, 'zh', 'name', 'ę±Ÿč‹ēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(68497, 57987, 'en', 'name', 'Jiangsu Provincial Quality Supervision and Inspection Institute'),
(68498, 57988, 'en', 'name', 'Nanchang Normal University'),
(68499, 57988, 'zh', 'name', 'å—ę˜ŒåøˆčŒƒå­¦é™¢'),
(68500, 57989, 'en', 'name', 'Jiangxi Province Soil and Water Conservation Science Research Institute'),
(68501, 57989, 'zh', 'name', 'ę±Ÿč„æēœę°“åœŸäæęŒē§‘å­¦ē ”ē©¶é™¢'),
(68502, 57990, 'en', 'name', 'Jinan Municipal Environmental Protection Bureau'),
(68503, 57990, 'zh', 'name', 'ęµŽå—åø‚ēŽÆäæå±€'),
(68504, 57991, 'en', 'name', 'Hubei Provincial Hospital of Integrative Medicine'),
(68505, 57992, 'en', 'name', 'Animal Science Research Institute'),
(68506, 57992, 'zh', 'name', 'å¹æäøœēœå†œäøšē§‘å­¦é™¢åŠØē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(68507, 57993, 'en', 'name', 'Danish Pain Research Center'),
(68508, 57994, 'no_lang_code', 'name', 'Boehringer Ingelheim (Italy)'),
(68509, 57995, 'no_lang_code', 'name', 'Boehringer Ingelheim (Netherlands)'),
(68510, 57996, 'no_lang_code', 'name', 'Across (Spain)'),
(68511, 57997, 'no_lang_code', 'name', 'Boehringer Ingelheim (Finland)'),
(68512, 57998, 'no_lang_code', 'name', 'Bracco (Germany)'),
(68513, 57999, 'no_lang_code', 'name', 'Luye Pharma (Switzerland)'),
(68514, 58000, 'no_lang_code', 'name', 'Addex Therapeutics (Switzerland)'),
(68515, 58001, 'en', 'name', 'Fujian Entry - Exit Inspection and Quarantine Bureau'),
(68516, 58002, 'en', 'name', 'Central European Cooperative Oncology Group'),
(68517, 58003, 'es', 'name', 'Fundación Teknon'),
(68518, 58004, 'no_lang_code', 'name', 'Japan Tobacco (United States)'),
(68519, 58005, 'it', 'name', 'Fondazione Italiana Sindromi Mielodisplastiche'),
(68520, 58005, 'en', 'name', 'Italian Foundation of Myelodysplastic Syndromes'),
(68521, 58006, 'no_lang_code', 'name', 'Alexion Pharma (Switzerland)'),
(68522, 58007, 'no_lang_code', 'name', 'General Electric (Finland)'),
(68523, 58008, 'no_lang_code', 'name', 'ALK-Abelló (Italy)'),
(68524, 58009, 'no_lang_code', 'name', 'Chiasma (United States)'),
(68525, 58010, 'no_lang_code', 'name', 'Mertiva (Sweden)'),
(68526, 58011, 'no_lang_code', 'name', 'Immunogenics (United States)'),
(68527, 58012, 'no_lang_code', 'name', 'Aqualis (Norway)'),
(68528, 58013, 'en', 'name', 'The Lymphoma Academic Research Organisation'),
(68529, 58014, 'en', 'name', 'Clinical Evaluation Research Unit'),
(68530, 58015, 'no_lang_code', 'name', 'AMW (Germany)'),
(68531, 58016, 'no_lang_code', 'name', 'Allergan (Netherlands)'),
(68532, 58017, 'no_lang_code', 'name', 'Clinuvel Pharmaceuticals (Australia)'),
(68533, 58018, 'no_lang_code', 'name', 'Genexine (South Korea)'),
(68534, 58019, 'no_lang_code', 'name', 'Kowa (United States)'),
(68535, 58020, 'no_lang_code', 'name', 'Eli Lilly (Italy)'),
(68536, 58021, 'no_lang_code', 'name', 'CSL (Japan)'),
(68537, 58022, 'no_lang_code', 'name', 'CSL (Switzerland)'),
(68538, 58023, 'no_lang_code', 'name', 'GERCOR (France)'),
(68539, 58024, 'no_lang_code', 'name', 'Engelhard Arzneimittel (Germany)'),
(68540, 58025, 'no_lang_code', 'name', 'LABCATAL (France)'),
(68541, 58026, 'no_lang_code', 'name', 'Daacro (Germany)'),
(68542, 58027, 'no_lang_code', 'name', 'Ardeypharm (Germany)'),
(68543, 58028, 'no_lang_code', 'name', 'LIDDS (Sweden)'),
(68544, 58029, 'no_lang_code', 'name', 'Ethicare (Germany)'),
(68545, 58030, 'no_lang_code', 'name', 'Gilead Sciences (Germany)'),
(68546, 58031, 'no_lang_code', 'name', 'Gilead Sciences (Spain)'),
(68547, 58032, 'no_lang_code', 'name', 'Gilead Sciences (Italy)'),
(68548, 58033, 'it', 'name', 'Associazione QOL-ONE'),
(68549, 58033, 'en', 'name', 'QOL-ONE Association'),
(68550, 58034, 'en', 'name', 'Danish Multiple Sclerosis Center'),
(68551, 58035, 'no_lang_code', 'name', 'AstraZeneca (Finland)'),
(68552, 58036, 'no_lang_code', 'name', 'Farmaceutici Damor (Italy)'),
(68553, 58037, 'no_lang_code', 'name', 'Lofarma (Italy)'),
(68554, 58038, 'no_lang_code', 'name', 'Allergan (Canada)'),
(68555, 58039, 'no_lang_code', 'name', 'Glaxosmithkline (Finland)'),
(68556, 58040, 'no_lang_code', 'name', 'AXON Neuroscience (Cyprus)'),
(68557, 58041, 'no_lang_code', 'name', 'GlaxoSmithKline (Sweden)'),
(68558, 58042, 'no_lang_code', 'name', 'Roivant Sciences (Bermuda)'),
(68559, 58043, 'no_lang_code', 'name', 'Associated Management Services (United States)'),
(68560, 58044, 'no_lang_code', 'name', 'GlaxoSmithKline (India)'),
(68561, 58045, 'de', 'name', 'Institut für Atemwegsforschung GmbH'),
(68562, 58045, 'en', 'name', 'Respiratory Research Institute'),
(68563, 58046, 'no_lang_code', 'name', 'Lundbeck (Italy)'),
(68564, 58047, 'no_lang_code', 'name', 'Lusofarmaco (Italy)'),
(68565, 58048, 'de', 'name', 'St. Hedwig-Krankenhaus'),
(68566, 58049, 'it', 'name', 'Azienda Usl 8 Arezzo'),
(68567, 58050, 'fr', 'name', 'Groupe d''Oncologie Radiothérapie Tête et Cou'),
(68568, 58051, 'no_lang_code', 'name', 'Baxter (Belgium)'),
(68569, 58052, 'no_lang_code', 'name', 'Bayer (Italy)'),
(68570, 58053, 'es', 'name', 'Grupo Español de CÔncer de Pulmón'),
(68571, 58054, 'no_lang_code', 'name', 'Bionorica (Austria)'),
(68572, 58055, 'es', 'name', 'Grupo Español de Investigación en Sarcomas'),
(68573, 58055, 'en', 'name', 'Spanish Research Group on Sarcomas'),
(68574, 58056, 'es', 'name', 'Grupo EspaƱol de Tratamiento de Tumores de Cabeza y Cuello'),
(68575, 58056, 'en', 'name', 'Spanish Head & Neck Cancer Cooperative Group'),
(68576, 58057, 'en', 'name', 'Andalusian Institute of Sexology and Psychology'),
(68577, 58057, 'es', 'name', 'Instituto Andaluz de SexologĆ­a y PsicologĆ­a'),
(68578, 58058, 'no_lang_code', 'name', 'N-Gene (United States)'),
(68579, 58059, 'no_lang_code', 'name', 'NanoCarrier (Japan)'),
(68580, 58059, 'ja', 'name', 'ćƒŠćƒŽć‚­ćƒ£ćƒŖć‚¢ę Ŗå¼ä¼šē¤¾'),
(68581, 58060, 'no_lang_code', 'name', 'Napp Pharmaceuticals (United Kingdom)'),
(68582, 58061, 'no_lang_code', 'name', 'MediWound (Israel)'),
(68583, 58062, 'en', 'name', 'Hammersmith Medicines Research'),
(68584, 58063, 'en', 'name', 'Agricultural Genomics Institute at Shenzhen'),
(68585, 58063, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ę·±åœ³å†œäøšåŸŗå› ē»„ē ”ē©¶ę‰€'),
(68586, 58064, 'no_lang_code', 'name', 'Hanmi Pharmaceutical (South Korea)'),
(68587, 58064, 'ko', 'name', 'ķ•œėÆøģ•½ķ’ˆ'),
(68588, 58065, 'no_lang_code', 'name', 'Leo Pharma (United States)'),
(68589, 58066, 'no_lang_code', 'name', 'Novasep (Belgium)'),
(68590, 58067, 'no_lang_code', 'name', 'Roche (Sweden)'),
(68591, 58068, 'no_lang_code', 'name', 'Roche (Hungary)'),
(68592, 58069, 'no_lang_code', 'name', 'Roche (Finland)'),
(68593, 58070, 'no_lang_code', 'name', 'Takeda (Italy)'),
(68594, 58071, 'no_lang_code', 'name', 'Roche (Romania)'),
(68595, 58072, 'no_lang_code', 'name', 'Roche (Czechia)'),
(68596, 58073, 'no_lang_code', 'name', 'Minerva Neurosciences (United States)'),
(68597, 58074, 'no_lang_code', 'name', 'IDEA (Germany)'),
(68598, 58075, 'no_lang_code', 'name', 'Mipharm (Italy)'),
(68599, 58076, 'no_lang_code', 'name', 'Morphotek (United States)'),
(68600, 58077, 'no_lang_code', 'name', 'Sanofi (Brazil)'),
(68601, 58078, 'no_lang_code', 'name', 'Novo Nordisk (Italy)'),
(68602, 58079, 'no_lang_code', 'name', 'Novo Nordisk (Finland)'),
(68603, 58080, 'no_lang_code', 'name', 'M’s Science Corporation (Japan)'),
(68604, 58081, 'no_lang_code', 'name', 'Immunodiagnostic Systems (Denmark)'),
(68605, 58082, 'no_lang_code', 'name', 'Luye Pharma (Germany)'),
(68606, 58083, 'no_lang_code', 'name', 'Santen (Finland)'),
(68607, 58084, 'en', 'name', 'Inamed'),
(68608, 58085, 'no_lang_code', 'name', 'Santhera Pharmaceuticals (Switzerland)'),
(68609, 58086, 'no_lang_code', 'name', 'Innovacell Biotechnologie (Austria)'),
(68610, 58087, 'en', 'name', 'Office of the Secretary of Health and Human Services'),
(68611, 58088, 'no_lang_code', 'name', 'Myovant Sciences (United States)'),
(68612, 58089, 'no_lang_code', 'name', 'Bayer (Finland)'),
(68613, 58090, 'no_lang_code', 'name', 'Theraclone Sciences (United States)'),
(68614, 58091, 'no_lang_code', 'name', 'Valeas (Italy)'),
(68615, 58092, 'no_lang_code', 'name', 'CSL (United Kingdom)'),
(68616, 58093, 'no_lang_code', 'name', 'Shionogi (United States)'),
(68617, 58094, 'no_lang_code', 'name', 'Pharmacosmos (Denmark)'),
(68618, 58095, 'no_lang_code', 'name', 'Pharmaxis (United Kingdom)'),
(68619, 58096, 'de', 'name', 'Vinforce'),
(68620, 58097, 'no_lang_code', 'name', 'UCB Pharma (Japan)'),
(68621, 58097, 'ja', 'name', 'ćƒ¦ćƒ¼ć‚·ćƒ¼ćƒ“ćƒ¼ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(68622, 58098, 'no_lang_code', 'name', 'Actigen (Denmark)'),
(68623, 58099, 'no_lang_code', 'name', 'SLA Pharma (United Kingdom)'),
(68624, 58100, 'no_lang_code', 'name', 'Oncoscience (Germany)'),
(68625, 58101, 'no_lang_code', 'name', 'Sofar (Italy)'),
(68626, 58102, 'no_lang_code', 'name', 'Zogenix (United Kingdom)'),
(68627, 58103, 'no_lang_code', 'name', 'Stragen (France)'),
(68628, 58104, 'en', 'name', 'Afeka College of Engineering'),
(68629, 58104, 'he', 'name', 'אפקה - המכללה ×”××§×“×ž×™×Ŗ להנדהה ×‘×Ŗ×œ אביב'),
(68630, 58105, 'de', 'name', 'AGO Austria'),
(68631, 58106, 'en', 'name', 'Sichuan Provincial Hospital of Traditional Chinese Medicine'),
(68632, 58106, 'zh', 'name', 'å››å·ēœäø­åŒ»é™¢'),
(68633, 58107, 'de', 'name', 'UniversitƤtszahnklinik Wien'),
(68634, 58108, 'en', 'name', 'American College of Allergy, Asthma and Immunology'),
(68635, 58109, 'en', 'name', 'American College of Nurse-Midwives'),
(68636, 58110, 'en', 'name', 'American College of Phlebology'),
(68637, 58111, 'de', 'name', 'BrustGesundheitZentrum Tirol'),
(68638, 58112, 'en', 'name', 'University Radiology'),
(68639, 58113, 'en', 'name', 'European Optical Society'),
(68640, 58114, 'no_lang_code', 'name', 'Alfasigma (Italy)'),
(68641, 58115, 'en', 'name', 'Acıbadem University Atakent Hospital'),
(68642, 58116, 'en', 'name', 'BAU International University'),
(68643, 58117, 'en', 'name', 'Chicago College of Oriental Medicine'),
(68644, 58118, 'en', 'name', 'Antoni Jurasz University Hospital'),
(68645, 58118, 'pl', 'name', 'Szpital Uniwersytecki im. A. Jurasza'),
(68646, 58119, 'en', 'name', 'Chirayu Medical College & Hospital'),
(68647, 58120, 'fr', 'name', 'Centre Hospitalo-Universitaire Bab El Oued'),
(68648, 58121, 'en', 'name', 'Chitwan Medical College'),
(68649, 58122, 'en', 'name', 'Children''s Hospital of Chongqing Medical University'),
(68650, 58123, 'en', 'name', 'Canadian College of Osteopathy'),
(68651, 58124, 'es', 'name', 'Hospital Universitario HM Puerta del Sur'),
(68652, 58124, 'en', 'name', 'University Hospital HM Puerta del Sur'),
(68653, 58125, 'en', 'name', 'Canadian College of Massage and Hydrotherapy'),
(68654, 58126, 'en', 'name', 'Danish College of General Practitioners'),
(68655, 58126, 'da', 'name', 'Dansk Selskab for Almen Medicin'),
(68656, 58127, 'en', 'name', 'College & Association of Registered Nurses of Alberta'),
(68657, 58128, 'fr', 'name', 'CollĆØge d''Ɖtudes OstĆ©opathiques de MontrĆ©al'),
(68658, 58129, 'en', 'name', 'Guangxi Academy of Special Crops'),
(68659, 58129, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗęŸ‘ę””ē ”ē©¶ę‰€'),
(68660, 58130, 'en', 'name', 'College of Pharmacists of British Columbia'),
(68661, 58131, 'en', 'name', 'College of Physicians and Surgeons of Ontario'),
(68662, 58132, 'no_lang_code', 'name', 'Shanghai Han Guan Bio Chip (China)'),
(68663, 58132, 'zh', 'name', 'äøŠęµ·åŽå† ē”Ÿē‰©čŠÆē‰‡ęœ‰é™å…¬åøē®€ä»‹'),
(68664, 58133, 'en', 'name', 'Qingdao Party School of CPC'),
(68665, 58133, 'zh', 'name', 'äø­å›½å…±äŗ§å…šé’å²›åø‚å§”å‘˜ä¼šå…šę ”'),
(68666, 58134, 'en', 'name', 'Shenzhen International Travel Health Care Center'),
(68667, 58134, 'zh', 'name', 'ę·±åœ³å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€ ę·±åœ³å›½é™…ę—…č”Œå«ē”Ÿäæå„äø­åæƒ'),
(68668, 58135, 'en', 'name', 'Council of Colleges of Acupuncture and Oriental Medicine'),
(68669, 58136, 'en', 'name', 'Tianjin Product Quality Supervision and Testing Technology Institute'),
(68670, 58136, 'zh', 'name', 'å¤©ę“„äŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒęŠ€ęœÆē ”ē©¶ę‰€'),
(68671, 58137, 'en', 'name', 'University of Bojnord'),
(68672, 58137, 'fa', 'name', 'دانؓگاه ŲØŲ¬Ł†ŁˆŲ±ŲÆ'),
(68673, 58138, 'id', 'name', 'Rumah Sakit Umum Pusat Sanglah Denpasar'),
(68674, 58139, 'en', 'name', 'Doctors with Africa Cuamm'),
(68675, 58139, 'it', 'name', 'Medici con l’Africa Cuamm'),
(68676, 58140, 'en', 'name', 'D.A.V Centenary Dental College'),
(68677, 58141, 'en', 'name', 'Dunsan Korean Medicine Hospital'),
(68678, 58141, 'ko', 'name', '단산 ķ•œģ˜ģ› 병원'),
(68679, 58142, 'en', 'name', 'He University'),
(68680, 58142, 'zh', 'name', 'č¾½å®ä½•ę°åŒ»å­¦é™¢'),
(68681, 58143, 'en', 'name', 'Heliodor Swiecicki Clinical Hospital'),
(68682, 58143, 'pl', 'name', 'Szpital Kliniczny im. Heliodora Święcickiego w Poznaniu'),
(68683, 58144, 'en', 'name', 'Hellenic College of Treatment of Atherosclerosis'),
(68684, 58144, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Κολέγιο Ī˜ĪµĻĪ±Ļ€ĪµĪÆĪ±Ļ‚ της Ī‘ĪøĪ·ĻĪæĻƒĪŗĪ»Ī®ĻĻ‰ĻƒĪ·Ļ‚'),
(68685, 58145, 'en', 'name', 'Ain Shams University Hospital'),
(68686, 58146, 'en', 'name', 'Hanoi Medical University Hospital'),
(68687, 58147, 'en', 'name', 'Hainan Eye Hospital'),
(68688, 58148, 'en', 'name', 'European School of Osteopathy'),
(68689, 58149, 'fr', 'name', 'HƓpitaux Universitaires Grand Ouest'),
(68690, 58150, 'es', 'name', 'Hospital Universitario del Sureste'),
(68691, 58151, 'es', 'name', 'Hospital Universitario del Vinalopó'),
(68692, 58152, 'pt', 'name', 'Hospital das ClĆ­nicas da Universidade Federal de Pernambuco'),
(68693, 58153, 'es', 'name', 'Los Comuneros Hospital Universitario de Bucaramanga'),
(68694, 58154, 'no_lang_code', 'name', 'Chemo (Spain)'),
(68695, 58155, 'pt', 'name', 'Hospital UniversitƔrio Oswaldo Cruz'),
(68696, 58156, 'pl', 'name', 'Szpital Kliniczny Nr 1 we Wrocławiu'),
(68697, 58157, 'es', 'name', 'Hospital Universitario Quirónsalud Madrid'),
(68698, 58158, 'en', 'name', 'ESE University Hospital San Jorge Pereira'),
(68699, 58159, 'no_lang_code', 'name', 'Kedrion (Italy)'),
(68700, 58160, 'pt', 'name', 'Hospital UniversitƔrio - Universidade Federal de Juiz de Fora'),
(68701, 58161, 'pt', 'name', 'Hospital UniversitƔrio Walter Cantƭdio'),
(68702, 58162, 'en', 'name', 'Islamic Azad University, Marvdasht'),
(68703, 58162, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ų±ŁˆŲÆŲ“ŲŖ'),
(68704, 58163, 'no_lang_code', 'name', 'Sarossa (Jersey)'),
(68705, 58164, 'en', 'name', 'Clinical Investigation Center Plurithematic Tours'),
(68706, 58165, 'pt', 'name', 'Hospital UniversitƔrio Lauro Wanderley'),
(68707, 58165, 'en', 'name', 'Lauro Wanderley University Hospital'),
(68708, 58166, 'it', 'name', 'SIOTEMA'),
(68709, 58167, 'en', 'name', 'Huazhong University of Science and Technology Hospital'),
(68710, 58168, 'en', 'name', 'Krishnadevaraya College of Dental Sciences and Hospital'),
(68711, 58168, 'kn', 'name', 'ą²•ą³ƒą²·ą³ą²£ą²¦ą³‡ą²µą²°ą²¾ą²Æ ದಂತ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(68712, 58169, 'fr', 'name', 'AcadƩmie de Nancy-Metz'),
(68713, 58170, 'en', 'name', 'Mae Fah Luang University Hospital'),
(68714, 58170, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąø”ą¹ˆąøŸą¹‰ąø²ąø«ąø„ąø§ąø‡'),
(68715, 58171, 'en', 'name', 'Mahesh Bhattacharyya Homeopathic Medical College and Hospital'),
(68716, 58172, 'en', 'name', 'National University Heart Centre Singapore'),
(68717, 58173, 'en', 'name', 'Orygen'),
(68718, 58174, 'no_lang_code', 'name', 'Johnson & Johnson (Hungary)'),
(68719, 58175, 'no_lang_code', 'name', 'N-Gene (Hungary)'),
(68720, 58176, 'no_lang_code', 'name', 'Clinipace (United States)'),
(68721, 58177, 'en', 'name', 'William P. Clements Jr. University Hospital'),
(68722, 58178, 'no_lang_code', 'name', 'Akupunkturforeningen'),
(68723, 58179, 'en', 'name', 'University of Ottawa Skills and Simulation Centre'),
(68724, 58180, 'en', 'name', 'New York School of Regional Anesthesia'),
(68725, 58181, 'en', 'name', 'Minia University Hospital'),
(68726, 58181, 'ar', 'name', 'ŲÆŁ„ŁŠŁ„ الصحة Ų§Ł„Ł…ŲµŲ±ŁŠ'),
(68727, 58182, 'en', 'name', 'Nam Dinh University of Nursing'),
(68728, 58183, 'en', 'name', 'Shanghai Third People''s Hospital'),
(68729, 58183, 'zh', 'name', 'äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(68730, 58184, 'en', 'name', 'Scottish School of Primary Care'),
(68731, 58185, 'en', 'name', 'Riga East University Hospital'),
(68732, 58185, 'lv', 'name', 'Rīgas Austrumu klīniskā universitātes slimnīca'),
(68733, 58186, 'en', 'name', 'Riverside University Health System - Medical Center'),
(68734, 58187, 'es', 'name', 'Hospital Universitario San Rafael'),
(68735, 58187, 'en', 'name', 'San Rafael University Hospital'),
(68736, 58188, 'en', 'name', 'Singapore College of Traditional Chinese Medicine'),
(68737, 58189, 'en', 'name', 'The Royal College Of Anesthesiologists Of Thailand'),
(68738, 58189, 'th', 'name', 'ąø£ąø²ąøŠąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø§ąø“ąøŖąø±ąøąøąøµąø§ąø“ąø—ąø¢ąø²ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(68739, 58190, 'en', 'name', 'Reidman College'),
(68740, 58191, 'en', 'name', 'Sixth Affiliated Hospital of Sun Yat-sen University'),
(68741, 58191, 'zh', 'name', 'äø­å±±å¤§å­¦é™„å±žē¬¬å…­åŒ»é™¢'),
(68742, 58192, 'en', 'name', 'Lagos State Health Service Commission'),
(68743, 58193, 'ro', 'name', 'Spitalul Universitar de Urgență Elias'),
(68744, 58194, 'en', 'name', 'Sri Lanka College of Obstetricians & Gynaecologists'),
(68745, 58195, 'en', 'name', 'Sutherland Cranial College of Osteopathy'),
(68746, 58196, 'no_lang_code', 'name', 'Suyash Hospital'),
(68747, 58197, 'en', 'name', 'Chinese People''s Armed Police Force Medical College Affiliated Hospital'),
(68748, 58197, 'zh', 'name', 'äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜ŸåŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(68749, 58198, 'en', 'name', 'Taiwan College of Healthcare Executive'),
(68750, 58199, 'en', 'name', 'West Cancer Center'),
(68751, 58200, 'en', 'name', 'Tatyasaheb Kore Dental College and Research Centre'),
(68752, 58201, 'en', 'name', 'THIM van der Laan University College Physiotherapy'),
(68753, 58202, 'pt', 'name', 'Unidade Integrada de Farmacologia e Gastroenterologia'),
(68754, 58203, 'en', 'name', 'The Third Affiliated Hospital of Guangzhou University of Traditional Chinese Medicine'),
(68755, 58203, 'zh', 'name', 'å¹æå·žäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äø‰åŒ»é™¢'),
(68756, 58204, 'en', 'name', 'Second Affiliated Hospital of Fujian Medical University'),
(68757, 58204, 'zh', 'name', 'ē¦å»ŗåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(68758, 58205, 'en', 'name', 'Second Affiliated Hospital of Jiangxi University of TCM'),
(68759, 58205, 'zh', 'name', 'ę±Ÿč„æäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(68760, 58206, 'en', 'name', 'Second Affiliated Hospital of Shandong University of TCM'),
(68761, 58206, 'zh', 'name', 'å±±äøœäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(68762, 58207, 'en', 'name', 'First Affiliated Hospital of Shihezi University Medical College');
INSERT INTO `ror_settings` VALUES
(68763, 58207, 'zh', 'name', 'ēŸ³ę²³å­å¤§å­¦åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(68764, 58208, 'en', 'name', 'University MRI & Diagnostic Imaging Centers'),
(68765, 58209, 'de', 'name', 'Kinderklinik Tübingen'),
(68766, 58209, 'en', 'name', 'University Children''s Hospital Tübingen'),
(68767, 58210, 'de', 'name', 'Klinik für Frauenheilkunde'),
(68768, 58211, 'de', 'name', 'Universitätsklinik für Frauenheilkunde und Geburtshilfe'),
(68769, 58212, 'ga', 'name', 'OspidƩal MƔithreachais na hOllscoile, Luimneach'),
(68770, 58212, 'en', 'name', 'University Maternity Hospital Limerick'),
(68771, 58213, 'en', 'name', 'Tokyo Women''s Medical University Hospital'),
(68772, 58213, 'ja', 'name', 'ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(68773, 58214, 'it', 'name', 'Azienda Universitaria Ospedaliera Consorziale - Policlinico Bari'),
(68774, 58215, 'es', 'name', 'Hospital General Universitario Santa LucĆ­a'),
(68775, 58215, 'en', 'name', 'Santa LucĆ­a University General Hospital'),
(68776, 58216, 'da', 'name', 'Universitetshospitalernes Center for Sundhedsfaglig Forskning'),
(68777, 58217, 'en', 'name', 'University General Surgeons'),
(68778, 58218, 'en', 'name', 'University and Rehabilitation Clinics Ulm'),
(68779, 58218, 'de', 'name', 'UniversitƤts und Rehabilitationskliniken Ulm'),
(68780, 58219, 'en', 'name', 'University Hospital Medical Center Bezanijska kosa'),
(68781, 58220, 'en', 'name', 'University Health Conway'),
(68782, 58221, 'en', 'name', 'Bach & Godofsky Infectious Diseases'),
(68783, 58222, 'de', 'name', 'UniversitƤts Kinder Frauenzentrum'),
(68784, 58223, 'en', 'name', 'University Dermatology'),
(68785, 58224, 'en', 'name', 'University Diagnostic Institute'),
(68786, 58225, 'sl', 'name', 'Očesna Klinika UKC Ljubljana'),
(68787, 58226, 'de', 'name', 'Klinik und Poliklinik für Augenheilkunde am Universitätsklinikum Carl Gustav Carus'),
(68788, 58227, 'de', 'name', 'UniversitƤtsaugenklinik Magdeburg'),
(68789, 58228, 'de', 'name', 'Universitätsklinik für Augenheilkunde'),
(68790, 58229, 'de', 'name', 'Klinik und Poliklinik für Augenheilkunde Universitätsklinikum Regensburg'),
(68791, 58230, 'en', 'name', 'University Gastroenterology'),
(68792, 58231, 'en', 'name', 'University Clinical Hospital In Bialystok'),
(68793, 58231, 'pl', 'name', 'Uniwersyteckim Szpitalu Klinicznym w Białymstoku'),
(68794, 58232, 'en', 'name', 'University Multipurpose Hospital for Active Treatment "Sveti Georgi"'),
(68795, 58232, 'bg', 'name', 'Университетската многопрофилна болница за активно лечение ā€žŠ”Š²ŠµŃ‚Šø Š“ŠµŠ¾Ń€Š³Šøā€œ'),
(68796, 58233, 'en', 'name', 'University hospital Medical Information Network'),
(68797, 58233, 'ja', 'name', 'å¤§å­¦ē—…é™¢åŒ»ē™‚ęƒ…å ±ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(68798, 58234, 'en', 'name', 'University Hospital Dr. Georgi Stranski'),
(68799, 58234, 'bg', 'name', 'Университетската болница за активно лечение ā€œŠ”-р Георги Š”Ń‚Ń€Š°Š½ŃŠŗŠøā€'),
(68800, 58235, 'no_lang_code', 'name', 'Scientific Centre of Personalized Psychiatry'),
(68801, 58235, 'ru', 'name', 'Š—ŠŠž "ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр персонализированной психиатрии"'),
(68802, 58236, 'sk', 'name', 'FakultnĆ” Nemocnica Trnava'),
(68803, 58237, 'fr', 'name', 'FrontiĆØre humaine'),
(68804, 58237, 'en', 'name', 'International Human Frontier Science Program Organization'),
(68805, 58238, 'vi', 'name', 'Trung tĆ¢m Y tįŗæ ĐẔi hį»c Hồ ChĆ­ Minh'),
(68806, 58238, 'en', 'name', 'University Medical Center HCMC'),
(68807, 58239, 'no_lang_code', 'name', 'Australian Coal Research (Australia)'),
(68808, 58240, 'en', 'name', 'Orygen Youth Health'),
(68809, 58241, 'en', 'name', 'University Hospitals Sharon Health Center'),
(68810, 58242, 'en', 'name', 'Foundation for Glacier and Environmental Research'),
(68811, 58243, 'pt', 'name', 'Hospital UniversitƔrio de Santa Maria'),
(68812, 58244, 'es', 'name', 'Hospital Universitario de Torrejón'),
(68813, 58245, 'en', 'name', 'UNM Children''s Hospital'),
(68814, 58246, 'de', 'name', 'UniversitƤts Frauenklinik'),
(68815, 58247, 'nl', 'name', 'Militaire Geestelijke Gezondheidszorg'),
(68816, 58248, 'en', 'name', 'University Orthopaedic Associates'),
(68817, 58249, 'sv', 'name', 'Akademiska Barnsjukhuset'),
(68818, 58250, 'en', 'name', 'University Orthopedics Center'),
(68819, 58251, 'en', 'name', 'Specialized Hospital for Active Treatment of Children''s Diseases'),
(68820, 58251, 'bg', 'name', 'Дпециализирана болница за активно лечение по Гетски болести'),
(68821, 58252, 'en', 'name', 'Marshall Health'),
(68822, 58253, 'en', 'name', 'Vienna School of Clinical Research'),
(68823, 58254, 'en', 'name', 'University Reproductive Associates'),
(68824, 58255, 'en', 'name', 'Higher Specialization University'),
(68825, 58255, 'tr', 'name', 'Yüksek İhtisas Üniversitesi'),
(68826, 58256, 'en', 'name', 'University Surgical Associates'),
(68827, 58257, 'en', 'name', 'Altius Institute for Biomedical Sciences'),
(68828, 58258, 'en', 'name', 'Milwaukee Health Department'),
(68829, 58259, 'en', 'name', 'Herrin Hospital'),
(68830, 58260, 'en', 'name', 'PeaceHealth St. Joseph Medical Center'),
(68831, 58261, 'en', 'name', 'Orange County Global Medical Center'),
(68832, 58262, 'en', 'name', 'Orange Regional Medical Center'),
(68833, 58263, 'en', 'name', 'Johnson City Medical Center'),
(68834, 58264, 'en', 'name', 'Children''s Hospital at Saint Francis'),
(68835, 58265, 'en', 'name', 'Angeline Elizabeth Kirby Memorial Health Center'),
(68836, 58266, 'en', 'name', 'Elmhurst Memorial Hospital'),
(68837, 58267, 'en', 'name', 'Miami Serpentarium Laboratories'),
(68838, 58268, 'en', 'name', 'Foundation for Biomedical Research'),
(68839, 58269, 'no_lang_code', 'name', 'Safety Management Systems Aotearoa (New Zealand)'),
(68840, 58270, 'en', 'name', 'Mental Health Foundation'),
(68841, 58271, 'en', 'name', 'Motu Economic and Public Policy Research'),
(68842, 58272, 'en', 'name', 'Edith Kanaka''ole Foundation'),
(68843, 58273, 'en', 'name', 'Museum of New Zealand Te Papa Tongarewa'),
(68844, 58274, 'en', 'name', 'Hokotehi Moriori Trust'),
(68845, 58275, 'en', 'name', 'Clinical Infectious Disease Hospital named after S.P. Botkin'),
(68846, 58275, 'ru', 'name', 'ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠøŠ½Ń„ŠµŠŗŃ†ŠøŠ¾Š½Š½Š°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° имени Š”. П. Боткина'),
(68847, 58276, 'en', 'name', 'Bon Secours Heart & Vascular Institute'),
(68848, 58277, 'en', 'name', 'Bon Secours Liver Institute of Richmond'),
(68849, 58278, 'en', 'name', 'Asian Institute of Medical Sciences'),
(68850, 58279, 'en', 'name', 'Bon Secours Liver Institute of Hampton Roads'),
(68851, 58280, 'en', 'name', 'Ablon Skin Institute and Research Center'),
(68852, 58281, 'en', 'name', 'Catalina Research Institute'),
(68853, 58282, 'en', 'name', 'Abrams Eye Institute'),
(68854, 58283, 'no_lang_code', 'name', 'Healthycell (United States)'),
(68855, 58284, 'en', 'name', 'Boucher Institute of Naturopathic Medicine'),
(68856, 58285, 'en', 'name', 'Assil Eye Institute'),
(68857, 58286, 'en', 'name', 'Boulder Institute for Sports Medicine'),
(68858, 58287, 'en', 'name', 'Academic Medical Research Institute'),
(68859, 58288, 'en', 'name', 'Association of Microfinance Institutions in Rwanda'),
(68860, 58289, 'no_lang_code', 'name', 'BQS Institut für Qualität und Patientensicherheit (Germany)'),
(68861, 58290, 'en', 'name', 'Access to Wholistic and Productive Living Institute'),
(68862, 58291, 'en', 'name', 'Institute of Mind Control & Brain Development'),
(68863, 58292, 'en', 'name', 'ADD Centre'),
(68864, 58293, 'en', 'name', 'Brazosport Eye Institute'),
(68865, 58294, 'en', 'name', 'Advanced Medical Research Institute'),
(68866, 58295, 'en', 'name', 'Australian Institute of Tropical Health and Medicine'),
(68867, 58296, 'lt', 'name', 'Centro poliklinika'),
(68868, 58297, 'en', 'name', 'Health First'),
(68869, 58298, 'en', 'name', 'Central Florida Neurosurgery Institute'),
(68870, 58299, 'en', 'name', 'Advanced Heart and Vascular Institute of Hunterdon'),
(68871, 58300, 'en', 'name', 'Advanced Memory Research Institute of New Jersey'),
(68872, 58301, 'en', 'name', 'Brisbane Hand & Upper Limb Research Institute'),
(68873, 58302, 'en', 'name', 'Advanced Vision Institute'),
(68874, 58303, 'en', 'name', 'Central Texas Spine Institute'),
(68875, 58304, 'en', 'name', 'Adventist Heart Institute'),
(68876, 58305, 'en', 'name', 'Bucci Laser Vision Institute'),
(68877, 58306, 'en', 'name', 'African Institute for Health and Development'),
(68878, 58307, 'en', 'name', 'Ayurvedic Institute'),
(68879, 58308, 'en', 'name', 'Bacharach Institute for Rehabilitation'),
(68880, 58309, 'en', 'name', 'Budgetary Healthcare Institution of Omsk Region Regional Clinical Hospital'),
(68881, 58310, 'en', 'name', 'Bulgarian Cardiac Institute'),
(68882, 58311, 'en', 'name', 'Adelaide Institute for Sleep Health'),
(68883, 58312, 'en', 'name', 'The Advanced IVF Institute'),
(68884, 58313, 'en', 'name', 'The Ageless Aesthetic Institute'),
(68885, 58314, 'en', 'name', 'Ainsworth Institute of Pain Management'),
(68886, 58315, 'en', 'name', 'California Life Sciences Association'),
(68887, 58316, 'en', 'name', 'Baim Institute for Clinical Research'),
(68888, 58317, 'en', 'name', 'California Liver Research Institute'),
(68889, 58318, 'en', 'name', 'Alberta Bone and Joint Health Institute'),
(68890, 58319, 'en', 'name', 'Chan Heart Rhythm Institute'),
(68891, 58320, 'en', 'name', 'Canadian Institute of Natural and Integrative Medicine'),
(68892, 58321, 'en', 'name', 'Charleston Research Institute'),
(68893, 58322, 'en', 'name', 'Canadian Sugar Institute'),
(68894, 58323, 'en', 'name', 'Charlotte Sports Medicine Institute'),
(68895, 58324, 'en', 'name', 'Connecticut Skin Institute'),
(68896, 58325, 'en', 'name', 'Chattanooga Eye Institute'),
(68897, 58326, 'pt', 'name', 'Instituto do CĆ¢ncer do Estado de SĆ£o Paulo'),
(68898, 58327, 'en', 'name', 'Allergy Asthma Research Institute'),
(68899, 58328, 'en', 'name', 'Cooper Institute for Reproductive Hormonal Disorders'),
(68900, 58329, 'en', 'name', 'Alliance Integrative Medicine'),
(68901, 58330, 'sk', 'name', 'Východoslovenský Onkologický Ústav'),
(68902, 58331, 'en', 'name', 'Allied Biomedical Research Institute'),
(68903, 58332, 'en', 'name', 'Cornea and Laser Eye Institute - Hersh Vision Group'),
(68904, 58333, 'en', 'name', 'Bariatric Medical Institute of Texas'),
(68905, 58334, 'en', 'name', 'Cornea Eye Institute'),
(68906, 58335, 'en', 'name', 'Chhattisgarh Dental College & Research Institute'),
(68907, 58336, 'lt', 'name', 'Alytaus Apskrities S. Kudirkos Ligoninė'),
(68908, 58337, 'en', 'name', 'Coyle Institute'),
(68909, 58338, 'en', 'name', 'Child Psychopharmacology Institute'),
(68910, 58339, 'en', 'name', 'Cantor Spine Institute'),
(68911, 58340, 'en', 'name', 'American SIDS Institute'),
(68912, 58341, 'en', 'name', 'Canyon Ranch Institute'),
(68913, 58342, 'en', 'name', 'Capital Region Special Surgery'),
(68914, 58343, 'en', 'name', 'The Cardiac and Vascular Institute'),
(68915, 58344, 'en', 'name', 'Children’s Institute'),
(68916, 58345, 'en', 'name', 'Dallas Ear Institute'),
(68917, 58346, 'pt', 'name', 'Instituto de Cardiologia do Distrito Federal'),
(68918, 58347, 'en', 'name', 'Beals institute'),
(68919, 58348, 'en', 'name', 'Angeles Clinic and Research Institute'),
(68920, 58349, 'en', 'name', 'Cardiovascular Institute of Central Florida'),
(68921, 58350, 'fr', 'name', 'Centre Hospitalier InterrƩgional Edith Cavell'),
(68922, 58351, 'no_lang_code', 'name', 'Danone (China)'),
(68923, 58352, 'en', 'name', 'Cardiovascular Institute of Michigan P.C'),
(68924, 58353, 'en', 'name', 'Chongqing Institute of Genetics and Reproduction'),
(68925, 58354, 'en', 'name', 'Apex Heart Institute'),
(68926, 58355, 'no_lang_code', 'name', 'DARTNet Institute'),
(68927, 58356, 'en', 'name', 'Academic Research in Complementary and Integrative Medicine'),
(68928, 58357, 'en', 'name', 'Cardiovascular Institute of Northwest Florida'),
(68929, 58358, 'en', 'name', 'Christiana Institute of Advanced Surgery'),
(68930, 58359, 'en', 'name', 'CHRISTUS Transplant Institute'),
(68931, 58360, 'en', 'name', 'Care Institute of Medical Sciences'),
(68932, 58361, 'en', 'name', 'Dattoli Cancer Center and Brachytherapy Research Institute'),
(68933, 58362, 'en', 'name', 'Chu Vision Institute'),
(68934, 58363, 'en', 'name', 'Dearborn-Sah Institute For Joint Restoration'),
(68935, 58364, 'en', 'name', 'Carolina BioOncology Institute'),
(68936, 58365, 'en', 'name', 'DeClaire LaMacchia Orthopaedic Institute'),
(68937, 58366, 'en', 'name', 'Carolina Headache Institute'),
(68938, 58367, 'en', 'name', 'DeGarmo Institute of Medical Research'),
(68939, 58368, 'en', 'name', 'Carolina Musculoskeletal Institute'),
(68940, 58369, 'en', 'name', 'Clearview Cancer Institute'),
(68941, 58370, 'en', 'name', 'Phelps County Regional Medical Center'),
(68942, 58371, 'en', 'name', 'Full Plate Living'),
(68943, 58372, 'en', 'name', 'Digestive Health Associates of Texas'),
(68944, 58373, 'sk', 'name', 'NÔrodný Endokrinologický a Diabetologický Ústav'),
(68945, 58374, 'en', 'name', 'Carolinas Pain Institute'),
(68946, 58375, 'de', 'name', 'Diabetesinstitut Heidelberg'),
(68947, 58376, 'en', 'name', 'Clinical Institute of Brain'),
(68948, 58377, 'en', 'name', 'Clinical Hospital No 122 named after. L.G.Sokolova'),
(68949, 58378, 'no_lang_code', 'name', 'Clinstile (Mexico)'),
(68950, 58379, 'en', 'name', 'CODET Vision Institute'),
(68951, 58380, 'en', 'name', 'Central Clinical Hospital of Civil Aviation'),
(68952, 58381, 'en', 'name', 'Sheth M. L. Vaduwala Charitable Eye Hospital and Dr. Thakorbhai V. Patel Eye Institute'),
(68953, 58382, 'en', 'name', 'Colorado Blood Cancer Institute'),
(68954, 58383, 'en', 'name', 'State Scientific Center of Coloproctology'),
(68955, 58384, 'en', 'name', 'Grand Rapids Women''s Health'),
(68956, 58385, 'en', 'name', 'DuPage Medical Group'),
(68957, 58386, 'en', 'name', 'Fetal Diagnostic Institute of the Pacific'),
(68958, 58387, 'en', 'name', 'Desert Institute For Spine Care'),
(68959, 58388, 'en', 'name', 'The Few Institute'),
(68960, 58389, 'en', 'name', 'Gene Therapy Research Institution'),
(68961, 58389, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾éŗä¼å­ē ”ē©¶ę‰€'),
(68962, 58390, 'en', 'name', 'First Coast Cardiovascular Institute'),
(68963, 58391, 'en', 'name', 'Bel-Rea Institute'),
(68964, 58392, 'de', 'name', 'Deutsches Institut für Telemedizin und Gesundheitsförderung'),
(68965, 58393, 'en', 'name', 'Chongqing Maternal and Child Health Hospital'),
(68966, 58394, 'en', 'name', 'Florida Cancer Care'),
(68967, 58395, 'nl', 'name', 'Nederlands Paramedisch Instituut'),
(68968, 58396, 'en', 'name', 'George Huntington Institute'),
(68969, 58396, 'de', 'name', 'George-Huntington-Institut'),
(68970, 58397, 'en', 'name', 'Florida Digestive Health Specialists'),
(68971, 58398, 'en', 'name', 'Georgia Arrhythmia Consultants'),
(68972, 58399, 'en', 'name', 'Florida Eye Microsurgical Institute'),
(68973, 58400, 'no_lang_code', 'name', 'Non-Surgical Orthopaedics (United States)'),
(68974, 58401, 'en', 'name', 'Rajamangala Institute of kidney disease'),
(68975, 58401, 'th', 'name', 'ąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøŖąø–ąø²ąøšąø±ąø™ą¹‚ąø£ąø„ą¹„ąø•ą¹‚ąø£ąø„'),
(68976, 58402, 'en', 'name', 'Georgia Nasal and Sinus Institute'),
(68977, 58403, 'en', 'name', 'Biomed Research Institute'),
(68978, 58404, 'en', 'name', 'East Florida Eye Institute'),
(68979, 58405, 'en', 'name', 'Florida Pain Institute'),
(68980, 58406, 'en', 'name', 'Amita Health'),
(68981, 58407, 'en', 'name', 'Floridian Research Institute'),
(68982, 58408, 'no_lang_code', 'name', 'Earlogic (South Korea)'),
(68983, 58409, 'en', 'name', 'HealthCare Partners Institute for Applied Research and Education'),
(68984, 58410, 'es', 'name', 'Instituto Ecuatoriano de Enfermedades Digestivas'),
(68985, 58411, 'en', 'name', 'EEC Institute'),
(68986, 58412, 'en', 'name', 'Elite Research Institute'),
(68987, 58413, 'en', 'name', 'Heart & Vascular Institute of Florida'),
(68988, 58414, 'en', 'name', 'Gibson Institute of Cognitive Research'),
(68989, 58415, 'en', 'name', 'ELZA Institute'),
(68990, 58416, 'en', 'name', 'Heart & Vascular Outcomes Research Institute'),
(68991, 58417, 'en', 'name', 'Black Hills Regional Eye Institute'),
(68992, 58418, 'de', 'name', 'Forschungsinstitut Havelhƶhe'),
(68993, 58419, 'en', 'name', 'Kalispell Regional Healthcare'),
(68994, 58420, 'en', 'name', 'Bleeding & Clotting Disorders Institute'),
(68995, 58421, 'en', 'name', 'Glendale Heart Institute'),
(68996, 58422, 'en', 'name', 'Fort Wayne Medical Institute'),
(68997, 58423, 'en', 'name', 'Boise Kidney & Hypertension Institute'),
(68998, 58424, 'en', 'name', 'Fox Valley Orthopedics'),
(68999, 58425, 'en', 'name', 'Heart Institute'),
(69000, 58426, 'it', 'name', 'Istituto Europeo per la Medicina Osteopatica'),
(69001, 58427, 'no_lang_code', 'name', 'Global Medical Institutes (United States)'),
(69002, 58428, 'en', 'name', 'Gordon Schanzlin New Vision Institute'),
(69003, 58429, 'pt', 'name', 'Grupo de Apoio ao Adolescente e à Criança com Câncer'),
(69004, 58429, 'en', 'name', 'Support group for adolescents and children with cancer'),
(69005, 58430, 'en', 'name', 'Heekin Clinic'),
(69006, 58431, 'en', 'name', 'Farzan Knowledge Development, Research and Technology Institute'),
(69007, 58432, 'en', 'name', 'Farr Institute'),
(69008, 58433, 'en', 'name', 'Immunology Research Institute in Gifu'),
(69009, 58433, 'ja', 'name', 'å²é˜œåŽæå…ē–«å­¦ē ”ē©¶ę‰€'),
(69010, 58434, 'es', 'name', 'Fecunditas Instituto de Medicina Reproductiva'),
(69011, 58435, 'de', 'name', 'Heidelberger Institut für Radioonkologie'),
(69012, 58436, 'en', 'name', 'Chelyabinsk Regional Clinical Oncology Center'),
(69013, 58436, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ областной клинический онкологический Гиспансер'),
(69014, 58437, 'en', 'name', 'Institute of Ophthalmology'),
(69015, 58438, 'es', 'name', 'Fundacion Instituto de Reumatologia Fernando Chalem'),
(69016, 58439, 'en', 'name', 'Gruter Institute'),
(69017, 58440, 'no_lang_code', 'name', 'Institute for Quality Indicators (Sweden)'),
(69018, 58440, 'sv', 'name', 'Institutet fƶr kvalitetsindikatorer'),
(69019, 58441, 'en', 'name', 'Gantt Clinical Research Institute'),
(69020, 58442, 'en', 'name', 'Guangdong Institute of Biological Products and Drugs'),
(69021, 58443, 'en', 'name', 'Gateway Aesthetic Institute and Laser Center'),
(69022, 58444, 'no_lang_code', 'name', 'Burning Rock Biotech (China)'),
(69023, 58445, 'en', 'name', 'GVK Emergency Management and Research Institute'),
(69024, 58446, 'en', 'name', 'Hernando Eye Institute'),
(69025, 58447, 'es', 'name', 'El Instituto Hero de Nutrición Infantil'),
(69026, 58447, 'no_lang_code', 'name', 'Hero Institute for Infant Nutrition (Spain)'),
(69027, 58448, 'en', 'name', 'Herzig Eye Institute'),
(69028, 58449, 'es', 'name', 'Halitus Instituto MƩdico'),
(69029, 58450, 'en', 'name', 'Hamburg Institute for Therapy Research'),
(69030, 58450, 'de', 'name', 'Hamburger Institut für Therapieforschung'),
(69031, 58451, 'fr', 'name', 'Groupe Hospitalier de l''Institut Catholique de Lille'),
(69032, 58452, 'en', 'name', 'Catalan Retina Institute'),
(69033, 58452, 'ca', 'name', 'Institut CatalĆ  de Retina'),
(69034, 58453, 'fr', 'name', 'Institut Emergences'),
(69035, 58454, 'en', 'name', 'Catalan Institute of Traumatology and Sports Medicine'),
(69036, 58454, 'ca', 'name', 'Institut CatalĆ  de Traumatologia i Medicina de l''Esport'),
(69037, 58455, 'en', 'name', 'Hassman Research Institute'),
(69038, 58456, 'en', 'name', 'Oncology Institute of Vojvodina'),
(69039, 58456, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за онкологију Š’Š¾Ń˜Š²Š¾Š“ŠøŠ½Šµ'),
(69040, 58457, 'en', 'name', 'Institute for Pulmonary Diseases of Vojvodina'),
(69041, 58458, 'en', 'name', 'Havana Research Institute'),
(69042, 58459, 'en', 'name', 'Houston Fertility Institute'),
(69043, 58460, 'en', 'name', 'Institute for Advanced Laser Dentistry'),
(69044, 58461, 'en', 'name', 'HCA Midwest Division'),
(69045, 58462, 'en', 'name', 'Institute for Advanced Reconstruction'),
(69046, 58463, 'en', 'name', 'Institute for Asthma and Allergy'),
(69047, 58464, 'de', 'name', 'Institut für Klinisch Onkologische Forschung'),
(69048, 58464, 'en', 'name', 'Institute of Clinical Cancer Research'),
(69049, 58465, 'en', 'name', 'Vienna Challenge Chamber'),
(69050, 58466, 'no_lang_code', 'name', 'Hubei Bio Pharmaceutical Industry Technology Institute (China)'),
(69051, 58467, 'es', 'name', 'Instituto Privado de Hematología e Investigación Clínica'),
(69052, 58468, 'en', 'name', 'Institute of Applied Economics and Health Research ApS'),
(69053, 58469, 'de', 'name', 'Institut für Lungenforschung'),
(69054, 58470, 'no_lang_code', 'name', 'Human Stem Cells Institute PJSC (Russia)'),
(69055, 58470, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дтволовых ŠšŠ»ŠµŃ‚Š¾Šŗ Человека'),
(69056, 58471, 'de', 'name', 'Institut für Medizinische Diagnostik Berlin-Potsdam'),
(69057, 58472, 'en', 'name', 'Institute for Human Reproduction'),
(69058, 58473, 'en', 'name', 'Hunan Province Chest Hospital'),
(69059, 58473, 'zh', 'name', 'ę¹–å—ēœčƒøē§‘åŒ»é™¢'),
(69060, 58474, 'de', 'name', 'Helios Klinik Hagen Ambrock'),
(69061, 58475, 'fr', 'name', 'Oncolie'),
(69062, 58476, 'en', 'name', 'Institute for Interdisciplinary Medicine'),
(69063, 58476, 'de', 'name', 'ifi–Institut für interdisziplinƤre Medizin'),
(69064, 58477, 'sr', 'name', 'Zavod ''''Konzilijum'''''),
(69065, 58478, 'en', 'name', 'Hypertension Institute'),
(69066, 58479, 'en', 'name', 'Institute For European Expertise in Physiology'),
(69067, 58480, 'es', 'name', 'Insituto de Asistencia Reumatólogica Integral'),
(69068, 58481, 'en', 'name', 'Institute for Food Safety and Health'),
(69069, 58482, 'en', 'name', 'Institute for Orthopaedic Surgery & Sports Medicine'),
(69070, 58483, 'en', 'name', 'Institute of Health Management Pachod'),
(69071, 58484, 'en', 'name', 'Institute for Personal Excellence'),
(69072, 58485, 'sl', 'name', 'InŔtitut za preventivno medicino'),
(69073, 58486, 'de', 'name', 'Institut für Mikrobiologie und Hygiene'),
(69074, 58486, 'en', 'name', 'Institute of Medical Microbiology and Hygiene'),
(69075, 58487, 'en', 'name', 'Institute of Virology, Vaccines and Sera ā€œTorlakā€'),
(69076, 58488, 'en', 'name', 'ICARE Eye Hospital & Postgraduate Institute'),
(69077, 58489, 'en', 'name', 'Institute of Mental Health'),
(69078, 58489, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ментално зГравље'),
(69079, 58490, 'en', 'name', 'Circle of Care'),
(69080, 58491, 'en', 'name', 'Danish Institute for Quality and Accreditation in Healthcare'),
(69081, 58491, 'da', 'name', 'Institut for Kvalitet og Akkreditering i Sundhedsvaesenet'),
(69082, 58492, 'en', 'name', 'Idaho Urologic Institute'),
(69083, 58493, 'no_lang_code', 'name', 'Vantage View (United States)'),
(69084, 58494, 'en', 'name', 'The Institute for Scientific Information on Coffee'),
(69085, 58495, 'en', 'name', 'Institute of Cosmetic and Laser Surgery'),
(69086, 58496, 'pt', 'name', 'Instituto de Implantologia'),
(69087, 58497, 'no_lang_code', 'name', 'Institute for Skin Research (Israel)'),
(69088, 58498, 'es', 'name', 'Instituto de Investigación Biomédica de A Coruña'),
(69089, 58499, 'en', 'name', 'Geneva home care institution'),
(69090, 58499, 'fr', 'name', 'Institution Genevoise de Maintien Ć  Domicile'),
(69091, 58500, 'en', 'name', 'Institute for the Study of Urologic Diseases'),
(69092, 58500, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪœĪµĪ»Ī­Ļ„Ī·Ļ‚ ĪŸĻ…ĻĪæĪ»ĪæĪ³Ī¹ĪŗĻŽĪ½ Ī Ī±ĪøĪ®ĻƒĪµĻ‰Ī½'),
(69093, 58501, 'en', 'name', 'Institute for Transformative Technologies'),
(69094, 58502, 'es', 'name', 'Hospital de Especialidades JosƩ Carrasco Arteaga'),
(69095, 58503, 'en', 'name', 'Social Insurance Institute'),
(69096, 58503, 'el', 'name', 'ĪŠĪ“ĻĻ…Ī¼Ī± ĪšĪæĪ¹Ī½Ļ‰Ī½Ī¹ĪŗĻŽĪ½ Ī‘ĻƒĻ†Ī±Ī»ĪÆĻƒĪµĻ‰Ī½'),
(69097, 58504, 'pt', 'name', 'Instituto de CiĆŖncias FarmacĆŖuticas'),
(69098, 58505, 'pt', 'name', 'Institut National de la SantƩ Publique'),
(69099, 58505, 'en', 'name', 'National Institute of Public Health'),
(69100, 58506, 'es', 'name', 'Instituto Oncológico Dr. Rosell'),
(69101, 58507, 'ro', 'name', 'Spitalul Clinic Judeţean de Urgenţe "Sf. Spiridon" Iaşi'),
(69102, 58508, 'en', 'name', 'ABCD Institute'),
(69103, 58508, 'pt', 'name', 'Instituto ABCD'),
(69104, 58509, 'en', 'name', 'Institute of Health Visiting'),
(69105, 58510, 'en', 'name', 'The Institute of Addiction Medicine'),
(69106, 58511, 'en', 'name', 'Institute of Population, Health and Development'),
(69107, 58512, 'en', 'name', 'Brazilian Institute of Osteopathy'),
(69108, 58512, 'pt', 'name', 'Instituto Brasileiro de Osteopatia'),
(69109, 58513, 'en', 'name', 'Institute of Kidney Lifescience Technologies'),
(69110, 58514, 'en', 'name', 'The Institute of Aesthetic Surgery'),
(69111, 58515, 'en', 'name', 'Institute for Progressive Medicine'),
(69112, 58516, 'de', 'name', 'Institut für alternative und nachhaltige Ernährung'),
(69113, 58517, 'en', 'name', 'Institute for Regenerative and Cellular Medicine'),
(69114, 58518, 'pt', 'name', 'Instituto Brasiliense de Otorrinolaringologia'),
(69115, 58519, 'sr', 'name', 'Institut za Reumatologiju'),
(69116, 58520, 'pt', 'name', 'Instituto do Sono'),
(69117, 58521, 'en', 'name', 'Cardiovascular Institute of Rosario'),
(69118, 58521, 'es', 'name', 'Instituto Cardiovascular de Rosario'),
(69119, 58522, 'en', 'name', 'Institute of Skin and Product Evaluation'),
(69120, 58523, 'pt', 'name', 'Fundação Saúde'),
(69121, 58524, 'en', 'name', 'Regenerative Medicine Institute'),
(69122, 58525, 'fr', 'name', 'Institut SupĆ©rieur du Sport et de l’Éducation Physique de Sfax'),
(69123, 58526, 'pt', 'name', 'Instituto Financeiro para o Desenvolvimento Regional'),
(69124, 58527, 'es', 'name', 'Instituto MƩdico DAMIC'),
(69125, 58528, 'pt', 'name', 'Instituto de Gastroenterologia de Goiânia'),
(69126, 58529, 'en', 'name', 'International Renal Research Institute of Vicenza'),
(69127, 58530, 'es', 'name', 'Instituto Hispalense de Pediatria'),
(69128, 58531, 'en', 'name', 'International Spine and Pain Institute'),
(69129, 58532, 'en', 'name', 'Institute of Vaccine and Medical Biologicals'),
(69130, 58533, 'es', 'name', 'Instituto de Cancerologƭa Las AmƩricas'),
(69131, 58534, 'es', 'name', 'Instituto Dr. Jaime Slullitel'),
(69132, 58535, 'de', 'name', 'Institut für Versorgungsforschung in der Onkologie'),
(69133, 58536, 'es', 'name', 'Instituto Jalisciense de CancerologĆ­a'),
(69134, 58537, 'pt', 'name', 'ClĆ­nica e Instituto de Oftalmologia Ivo CorrĆŖa Meyer'),
(69135, 58538, 'pt', 'name', 'Instituto Paulista de Estudos e Pesquisas em Oftalmologia'),
(69136, 58539, 'en', 'name', 'Canary Institute of Cancer Research'),
(69137, 58539, 'es', 'name', 'Instituto Canario de Investigación del CÔncer'),
(69138, 58540, 'en', 'name', 'Knight Dermatology Institute'),
(69139, 58541, 'en', 'name', 'Irish Nutrition & Dietetic Institute'),
(69140, 58542, 'es', 'name', 'Hospital Recoletas Campo Grande'),
(69141, 58543, 'en', 'name', 'The Irvine Institute of Medicine & Cosmetic Surgery'),
(69142, 58544, 'es', 'name', 'Instituto de OncologĆ­a de Rosario'),
(69143, 58545, 'no_lang_code', 'name', 'Instituto Lala (Mexico)'),
(69144, 58546, 'en', 'name', 'Kochan Institute for Healing Arts Research'),
(69145, 58547, 'en', 'name', 'Kuwait Institute for Medical Specialization'),
(69146, 58548, 'en', 'name', 'National Cancer Institute'),
(69147, 58549, 'es', 'name', 'Instituto MƩdico Platense'),
(69148, 58550, 'pt', 'name', 'Instituto Ivo Pitanguy'),
(69149, 58551, 'es', 'name', 'Instituto de OncologĆ­a y RadiobiologĆ­a'),
(69150, 58552, 'en', 'name', 'Heart Institute Bucaramanga'),
(69151, 58552, 'es', 'name', 'Instituto del Corazón de Bucaramanga'),
(69152, 58553, 'en', 'name', 'Dermatological Center Dona Libânia'),
(69153, 58553, 'pt', 'name', 'Instituto de Dermatologia Dona Libania'),
(69154, 58554, 'es', 'name', 'Instituto MƩdico TinerfeƱo'),
(69155, 58555, 'en', 'name', 'Institut Jaques-Dalcroze'),
(69156, 58556, 'en', 'name', 'Lake Erie Research Institute'),
(69157, 58557, 'en', 'name', 'JEM Research Institute'),
(69158, 58558, 'es', 'name', 'Instituto Mexicano de OftalmologĆ­a IAP'),
(69159, 58559, 'pt', 'name', 'Instituto de Medicina AvanƧada'),
(69160, 58560, 'en', 'name', 'Institute of Hematology and Immunology'),
(69161, 58560, 'es', 'name', 'Instituto de HematologĆ­a e InmunologĆ­a'),
(69162, 58561, 'es', 'name', 'Hospital General De Zona'),
(69163, 58562, 'es', 'name', 'Instituto Milenio para la Investigación en Depresión y Personalidad'),
(69164, 58562, 'en', 'name', 'Millennium Institute for Research in Depression and Personality'),
(69165, 58563, 'en', 'name', 'The Milton H. Erickson Foundation'),
(69166, 58564, 'en', 'name', 'LCC Medical Research Institute'),
(69167, 58565, 'en', 'name', 'Joint Replacement Institute'),
(69168, 58566, 'es', 'name', 'Instituto de Salud de Bucaramanga'),
(69169, 58567, 'en', 'name', 'Jordan-Young Institute'),
(69170, 58568, 'es', 'name', 'Instituto de Salud del Estado de MƩxico'),
(69171, 58569, 'es', 'name', 'Instituto de Salud MusculoesquelƩtica'),
(69172, 58570, 'en', 'name', 'Mandya Institute of Medical Sciences'),
(69173, 58570, 'kn', 'name', 'ą²®ą²‚ą²”ą³ą²Æ ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²«ą³ ą²®ą³†ą²”ą²æą²•ą²²ą³ ą²øą³ˆą²Øą³ą²øą³'),
(69174, 58571, 'en', 'name', 'Liberian Institute for Biomedical Research'),
(69175, 58572, 'pt', 'name', 'Instituto de Terapia Integrada e Oriental'),
(69176, 58573, 'en', 'name', 'Manitoba Institute for Patient Safety'),
(69177, 58574, 'en', 'name', 'Justin Parker Neurological Institute'),
(69178, 58575, 'en', 'name', 'Libin Cardiovascular Institute of Alberta'),
(69179, 58576, 'no_lang_code', 'name', 'Kaali Institute'),
(69180, 58576, 'hu', 'name', 'Kaali Intezet'),
(69181, 58577, 'en', 'name', 'Life Care Institute of Medical Sciences & Research'),
(69182, 58578, 'it', 'name', 'Istituto di Ematologia di Bologna'),
(69183, 58579, 'en', 'name', 'Kansas City Area Life Sciences Institute'),
(69184, 58580, 'en', 'name', 'Kansas City Research Institute'),
(69185, 58581, 'pt', 'name', 'Instituto do CƩrebro de Brasƭlia'),
(69186, 58582, 'en', 'name', 'Michigan Institute of Urology'),
(69187, 58583, 'es', 'name', 'Liga Nacional Contra el CƔncer'),
(69188, 58584, 'en', 'name', 'KaRaMinds'),
(69189, 58585, 'pt', 'name', 'Instituto de Oncologia do ParanĆ”'),
(69190, 58586, 'en', 'name', 'Castanera Institute of Ophthalmology'),
(69191, 58586, 'es', 'name', 'Instituto de OftalmologĆ­a Castanera'),
(69192, 58587, 'en', 'name', 'Karachi Institute of Heart Diseases'),
(69193, 58588, 'en', 'name', 'Mayfield Brain & Spine'),
(69194, 58589, 'en', 'name', 'Los Angeles Neurological Institute'),
(69195, 58590, 'eu', 'name', 'Clinic IMQ Zorrotzaurre'),
(69196, 58591, 'en', 'name', 'OpenBiome'),
(69197, 58592, 'en', 'name', 'McGuire Institute'),
(69198, 58593, 'es', 'name', 'Instituto para la Atención y Prevención de las Adicciones'),
(69199, 58594, 'es', 'name', 'Instituto para NiƱos Ciegos y Sordos del Valle del Cauca'),
(69200, 58595, 'pt', 'name', 'Hospital IPO'),
(69201, 58596, 'en', 'name', 'Rowe Neurology Institute'),
(69202, 58597, 'en', 'name', 'Midas Multispeciality Hospital'),
(69203, 58598, 'en', 'name', 'Midwest Aortic & Vascular Institute'),
(69204, 58599, 'en', 'name', 'Keogh Institute for Medical Research'),
(69205, 58600, 'en', 'name', 'Midwest Institute for Minimally Invasive Therapies'),
(69206, 58601, 'pt', 'name', 'Instituto Scribner'),
(69207, 58602, 'en', 'name', 'The Hospital of Central Connecticut'),
(69208, 58603, 'es', 'name', 'Instituto Sexológico Murciano'),
(69209, 58604, 'en', 'name', 'Midwest Stone Institute'),
(69210, 58605, 'es', 'name', 'Somdex Ginecologia Dr. Santiago Dexeus'),
(69211, 58606, 'en', 'name', 'Lung Institute'),
(69212, 58607, 'pt', 'name', 'Instituto Tropical de Medicina Reprodutiva'),
(69213, 58608, 'en', 'name', 'Lymphatic Malformation Institute'),
(69214, 58609, 'pt', 'name', 'Medcin Dermatologia'),
(69215, 58610, 'es', 'name', 'ClĆ­nica IVI Alicante'),
(69216, 58611, 'en', 'name', 'Minimally Invasive Pain Institute'),
(69217, 58612, 'pt', 'name', 'Instituto Vascular BH'),
(69218, 58613, 'en', 'name', 'National Cancer Institute of Sri Lanka'),
(69219, 58614, 'ro', 'name', 'Institutul Regional de Gastroenterologie Prof. Dr. Octavian Fodor'),
(69220, 58615, 'en', 'name', 'National Institute of Lymphology'),
(69221, 58616, 'en', 'name', 'Medical Mission Institute'),
(69222, 58616, 'de', 'name', 'Missionsärztliches Institut Würzburg'),
(69223, 58617, 'en', 'name', 'National Institute of Neurosciences & Hospital'),
(69224, 58618, 'en', 'name', 'National Heart Foundation Hospital & Research Institute'),
(69225, 58619, 'en', 'name', 'National Heart Institute'),
(69226, 58620, 'en', 'name', 'Metropolitan Jewish Health System'),
(69227, 58621, 'en', 'name', 'Montana Health Research Institute'),
(69228, 58622, 'en', 'name', 'MedStar Heart & Vascular Institute'),
(69229, 58623, 'vi', 'name', 'Cổng thĆ“ng tin điện tį»­ Viện Kiểm Định Quốc Gia VįŗÆc Xin VĆ  Sinh'),
(69230, 58623, 'en', 'name', 'National Institute for Control of Vaccines and Biologicals'),
(69231, 58624, 'en', 'name', 'National Institute of Public Health'),
(69232, 58624, 'lo', 'name', 'ąŗŖąŗ°ąŗ–ąŗ²ąŗšąŗ±ąŗ™ąŗŖąŗ²ąŗ—ąŗ²ąŗ„ąŗ°ąŗ™ąŗ°ąŗŖąŗøąŗą»ąŗ«ą»ˆąŗ‡ąŗŠąŗ²ąŗ”'),
(69233, 58625, 'en', 'name', 'National Institute for Health Care Reform'),
(69234, 58626, 'en', 'name', 'Morrison Vein Institute'),
(69235, 58627, 'en', 'name', 'Memorial Healthcare System'),
(69236, 58628, 'en', 'name', 'New Mexico Heart Institute'),
(69237, 58629, 'en', 'name', 'New York Glaucoma Research Institute'),
(69238, 58630, 'en', 'name', 'National Institute for Public Safety Health'),
(69239, 58631, 'en', 'name', 'Hunan Institute of Mental Health'),
(69240, 58631, 'zh', 'name', 'ę¹–å—ēœåæƒē†å«ē”Ÿē ”ē©¶ę‰€'),
(69241, 58632, 'no_lang_code', 'name', 'Masih Daneshvari Hospital'),
(69242, 58632, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ł…Ł„ŪŒ سل و ŲØŪŒŁ…Ų§Ų±ŪŒŁ‡Ų§ŪŒ ریوی'),
(69243, 58633, 'en', 'name', 'Mercy NeuroScience Institute'),
(69244, 58634, 'no_lang_code', 'name', 'Muhimbili Orthopaedic Institute'),
(69245, 58635, 'en', 'name', 'National Research Institute'),
(69246, 58636, 'en', 'name', 'NZ Respiratory & Sleep Institute'),
(69247, 58637, 'es', 'name', 'Instituto Nacional de las Mujeres'),
(69248, 58637, 'en', 'name', 'National Institute of Women'),
(69249, 58638, 'en', 'name', 'Miami Dermatology and Laser Institute'),
(69250, 58639, 'en', 'name', 'National Scientific Center "M.D. Strazhesko Institute of Cardiology"'),
(69251, 58639, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр ''М.Š”. Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карГіології ім. Дтражеска'),
(69252, 58640, 'en', 'name', 'NKP Salve Institute of Medical Sciences and Lata Mangeshkar Hospital'),
(69253, 58641, 'en', 'name', 'Multiple Sclerosis Research Institute'),
(69254, 58642, 'en', 'name', 'Michigan Head and Spine Institute'),
(69255, 58643, 'en', 'name', 'Ohio Gastroenterology and Liver Institute'),
(69256, 58644, 'en', 'name', 'Naples Community Hospital Healthcare System'),
(69257, 58645, 'en', 'name', 'North American Family Institute'),
(69258, 58646, 'en', 'name', 'Ohio Sinus Institute'),
(69259, 58647, 'en', 'name', 'Municipal Autonomous Healthcare Institution'),
(69260, 58648, 'en', 'name', 'Sonoma West Medical Center'),
(69261, 58649, 'en', 'name', 'National Institute of Emergency Medicine "Pirogov"'),
(69262, 58650, 'en', 'name', 'Oklahoma Cancer Specialists and Research Institute'),
(69263, 58651, 'en', 'name', 'Children''s City Clinical Hospital ā„–11'),
(69264, 58652, 'en', 'name', 'Municipal Budgetary Health care Institution "Clinical and Diagnostic Center" Health'),
(69265, 58653, 'en', 'name', 'Northern Cancer Institute'),
(69266, 58654, 'es', 'name', 'Instituto de GastroenterologĆ­a'),
(69267, 58655, 'en', 'name', 'Oklahoma Heart Institute'),
(69268, 58656, 'no_lang_code', 'name', 'NestlƩ (South Africa)'),
(69269, 58657, 'en', 'name', 'Penny George Institute for Health and Healing'),
(69270, 58658, 'be', 'name', '17-я Š³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń поликлиника'),
(69271, 58658, 'en', 'name', '17th City Children''s Clinical Polyclinic'),
(69272, 58659, 'en', 'name', 'Hospital at Smolensk Station'),
(69273, 58659, 'ru', 'name', 'ŠŠ£Š— ŠžŃ‚Š“ŠµŠ»ŠµŠ½Ń‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° на ст. Дмоленск ŠžŠŠž «РЖД»'),
(69274, 58660, 'en', 'name', 'Peregrine Eye and Laser Institute'),
(69275, 58661, 'no_lang_code', 'name', 'pfm medical (Germany)'),
(69276, 58662, 'en', 'name', 'NOVO Cellular Medicine Institute'),
(69277, 58663, 'en', 'name', 'The state budgetary institution of public health of the Perm Krai "City Children''s Clinical Polyclinic No. 5"'),
(69278, 58664, 'en', 'name', 'Neurogen Brain & Spine Institute'),
(69279, 58665, 'no_lang_code', 'name', 'Novum Pharmaceutical Research Services (United States)'),
(69280, 58666, 'en', 'name', 'Oncology Institute of Hope and Innovation'),
(69281, 58667, 'en', 'name', 'Pharmacology Research Institute'),
(69282, 58668, 'en', 'name', 'Neurological Research Institute'),
(69283, 58669, 'en', 'name', 'City Hospital ā„– 1 named after. ON. Semashko'),
(69284, 58670, 'en', 'name', 'Palm Beach Neurology'),
(69285, 58671, 'en', 'name', 'Pharmalog (Germany)'),
(69286, 58672, 'en', 'name', 'NeuroModulation Technique'),
(69287, 58673, 'en', 'name', 'Ocean Road Cancer Institute'),
(69288, 58674, 'no_lang_code', 'name', 'National Bioproducts Institute (South Africa)'),
(69289, 58675, 'it', 'name', 'Istituto Tumori Bari'),
(69290, 58676, 'en', 'name', 'ProCare Odessa Heart Institute'),
(69291, 58677, 'en', 'name', 'Saratov City Clinical Hospital ā„– 2 named. IN AND. Razumovsky'),
(69292, 58678, 'en', 'name', 'Open Medicine Institute'),
(69293, 58679, 'en', 'name', 'Cypress Pointe Pain Management'),
(69294, 58680, 'en', 'name', 'Vinnytsya Regional Psychoneurological Hospital named after Academician O.I. Yushchenko'),
(69295, 58681, 'en', 'name', 'Philippines Tuberculosis Society'),
(69296, 58682, 'en', 'name', 'NeuroSpine Institute'),
(69297, 58683, 'en', 'name', 'Oregon Urology Institute'),
(69298, 58684, 'en', 'name', 'Regional Clinical Hospital named after II Mechnikov'),
(69299, 58685, 'en', 'name', 'Physician’s Hair Institute'),
(69300, 58686, 'en', 'name', 'Physicians Laser and Dermatology Institute'),
(69301, 58687, 'en', 'name', 'Bharath Hospital & Institute of Oncology'),
(69302, 58688, 'en', 'name', 'OrthoCarolina Research Institute'),
(69303, 58689, 'en', 'name', 'Plano Cancer Institute'),
(69304, 58690, 'en', 'name', 'Plastic Surgery Institute of San Francisco'),
(69305, 58691, 'pt', 'name', 'Instituto Salgado de SaĆŗde Integral'),
(69306, 58691, 'en', 'name', 'Salgado Institute of Integral Health'),
(69307, 58692, 'en', 'name', 'Orthopaedic Institute for Children'),
(69308, 58693, 'en', 'name', 'Port Macquarie Base Hospital'),
(69309, 58694, 'en', 'name', 'Orthopaedic Institute of Western Kentucky'),
(69310, 58695, 'en', 'name', 'Regional Public Health Care Institution "City Hospital No. 5, Barnaul"'),
(69311, 58695, 'ru', 'name', 'ŠšŃ€Š°ŠµŠ²Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Ā«Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–5, г. Š‘Š°Ń€Š½Š°ŃƒŠ»Ā»'),
(69312, 58696, 'en', 'name', 'Orthopaedic Specialty Institute'),
(69313, 58697, 'en', 'name', 'Regional State Budget Health Care Institution "Regional Clinical Hospital"'),
(69314, 58697, 'ru', 'name', 'ŠšŃ€Š°ŠµŠ²Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Ā«ŠšŃ€Š°ŠµŠ²Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°Ā»'),
(69315, 58698, 'en', 'name', 'San Antonio Endovascular & Heart Institute'),
(69316, 58699, 'no_lang_code', 'name', 'MusclePharm Sports Science Institute (United States)'),
(69317, 58700, 'en', 'name', 'Regional State Budgetary Healthcare Institution "Smolensk Regional Clinical Hospital"'),
(69318, 58700, 'ru', 'name', 'ŠžŠ±Š»Š°ŃŃ‚Š½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Ā«Š”Š¼Š¾Š»ŠµŠ½ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°Ā»'),
(69319, 58701, 'en', 'name', 'Prairie Vascular Institute'),
(69320, 58702, 'en', 'name', 'Colorado Sleep Institute'),
(69321, 58703, 'en', 'name', 'Sanyu Africa Research Institute'),
(69322, 58704, 'en', 'name', 'Orthopedic Sports Medicine & Spine Care Institute'),
(69323, 58705, 'en', 'name', 'Dallas Nephrology Associates'),
(69324, 58706, 'en', 'name', 'Precision Research Institute'),
(69325, 58707, 'de', 'name', 'Medizinisches Wirtschaftsinstitut'),
(69326, 58708, 'en', 'name', 'Premier Clinical Research Institute'),
(69327, 58709, 'lt', 'name', 'Respublikinės Kauno Ligoninės'),
(69328, 58710, 'en', 'name', 'Research & Development Institute'),
(69329, 58711, 'en', 'name', 'HealthONE'),
(69330, 58712, 'en', 'name', 'Sarasota Retina Institute'),
(69331, 58713, 'en', 'name', 'Princeton Medical Institute'),
(69332, 58714, 'en', 'name', 'Saroj Gupta Cancer Centre & Research Institute'),
(69333, 58715, 'en', 'name', 'Research Institute for Child Psychology and Pathopsychology'),
(69334, 58715, 'sk', 'name', 'Vyskumny Ustav Detskej Psychologie a Patopsychologie'),
(69335, 58716, 'no_lang_code', 'name', 'Proderm (Germany)'),
(69336, 58717, 'en', 'name', 'Nasser Institute hospital'),
(69337, 58718, 'en', 'name', 'CalNeuro Research Group'),
(69338, 58719, 'no_lang_code', 'name', 'Shenzhen Hanke Bioengineering (China)'),
(69339, 58720, 'en', 'name', 'Pacific Rim Electrophysiology Research Institute'),
(69340, 58721, 'en', 'name', 'Research Institute of South Florida'),
(69341, 58722, 'en', 'name', 'Shenzhen Genoimmune Medical Institute'),
(69342, 58723, 'en', 'name', 'Michigan Healthcare Professionals'),
(69343, 58724, 'en', 'name', 'Pain Management Institute'),
(69344, 58725, 'en', 'name', 'Prostate Institute of America'),
(69345, 58726, 'en', 'name', 'Shenzhen Inno Translational Medicine Institute'),
(69346, 58727, 'en', 'name', 'Royal Dutch Pharmacists Association'),
(69347, 58728, 'en', 'name', 'Public institution Respublikinė Šiauliai Hospital'),
(69348, 58729, 'en', 'name', 'Retina Institute'),
(69349, 58730, 'en', 'name', 'Retina Macula Institute'),
(69350, 58731, 'en', 'name', 'Retina Research Institute of Texas'),
(69351, 58732, 'en', 'name', 'Retina Specialty Institute'),
(69352, 58733, 'en', 'name', 'Public Health Research Institute Of India'),
(69353, 58734, 'no_lang_code', 'name', 'Institut MƩrieux (United States)'),
(69354, 58735, 'en', 'name', 'Kharkiv Regional Clinical Psychiatric Hospital No 3'),
(69355, 58735, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° обласна клінічна психіатрична Š»Ń–ŠŗŠ°Ń€Š½Ń'),
(69356, 58736, 'de', 'name', 'Institut für Pathologie Celle'),
(69357, 58736, 'en', 'name', 'Institute of Pathology Celle'),
(69358, 58737, 'en', 'name', 'Sleep to Live Institute'),
(69359, 58738, 'en', 'name', 'Rhode Island Mood and Memory Research Institute'),
(69360, 58739, 'de', 'name', 'Dr. h.c. Robert Mathys Stiftung für Forschung'),
(69361, 58739, 'en', 'name', 'RMS Foundation'),
(69362, 58740, 'en', 'name', 'Palomar Health'),
(69363, 58741, 'en', 'name', 'State Clinical Hospital "Clinical Oncology Center No. 1'),
(69364, 58742, 'no_lang_code', 'name', 'Scottsdale Research Institute (United States)'),
(69365, 58743, 'no_lang_code', 'name', 'Dermatrendz'),
(69366, 58744, 'ru', 'name', 'Arkhangel''skiy Klinicheskiy Onkologicheskiy Dispanser'),
(69367, 58745, 'en', 'name', 'Ruane Medical'),
(69368, 58746, 'en', 'name', 'Pyatigorsk Oncology Center'),
(69369, 58746, 'ru', 'name', 'ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ онкологический Гиспансер'),
(69370, 58747, 'en', 'name', 'Pelvic & Sexual Health Institute'),
(69371, 58748, 'en', 'name', 'The Seattle Institute for Cardiac Research'),
(69372, 58749, 'en', 'name', 'Stavropol Regional Clinical Oncology Center'),
(69373, 58749, 'ru', 'name', 'Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ областной клинический онкологический Гиспансер'),
(69374, 58750, 'en', 'name', 'South Coast Dermatology Institute'),
(69375, 58751, 'en', 'name', 'Leningrad Regional Cancer Center'),
(69376, 58751, 'ru', 'name', 'ЛенинграГский областной онкологический Гиспансер'),
(69377, 58752, 'en', 'name', 'Arkhangelsk Children''s Clinical Hospital named P.G.Vyzhletsova'),
(69378, 58752, 'ru', 'name', 'ŠŃ€Ń…Š°Š½Š³ŠµŠ»ŃŒŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° им. П.Š“. Выжцовой'),
(69379, 58753, 'en', 'name', 'Texas Institute for Hip & Knee Surgery'),
(69380, 58754, 'en', 'name', 'Maharaj Institute of Immune Regenerative Medicine'),
(69381, 58755, 'en', 'name', 'Sentara CarePlex Hospital'),
(69382, 58756, 'en', 'name', 'Scientific Research Institute of First Aid to them. N.V. Sklifosovsky'),
(69383, 58756, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ чрезвычайных ŃŠøŃ‚ŃƒŠ°Ń†ŠøŠ¹. Š. Š’. Дклифосовский'),
(69384, 58757, 'en', 'name', 'Southeast Renal Research Institute'),
(69385, 58758, 'en', 'name', 'City Clinical Hospital No15 named. O. M. Filatova'),
(69386, 58758, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–15 n.a O.M. Филатов'),
(69387, 58759, 'en', 'name', 'Sinus & Respiratory Disease Center'),
(69388, 58760, 'en', 'name', 'Southeastern Spine Center & Research Institute'),
(69389, 58761, 'en', 'name', 'Texas Institute of Dermatology Laser and Cosmetic Surgery'),
(69390, 58762, 'en', 'name', 'Texas Liver Institute'),
(69391, 58763, 'en', 'name', 'Sentara Heart Hospital'),
(69392, 58764, 'en', 'name', 'Republican Clinical Hospital named after G.G. Kuvatova'),
(69393, 58764, 'ru', 'name', 'Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–. G.G. ŠšŃƒŠ²Š°Ń‚Š¾Š²'),
(69394, 58765, 'no_lang_code', 'name', 'Tower Clinical Trials (United States)'),
(69395, 58766, 'no_lang_code', 'name', 'Thanyarak Institute'),
(69396, 58766, 'th', 'name', 'ąø§ąø±ąø•ąø“ąøŖąø–ąø²ąøšąø±ąø™ąø˜ąø±ąøąøąø²ąø£ąø±ąøąø©ą¹Œ'),
(69397, 58767, 'en', 'name', 'Riverside Transplantation Institute'),
(69398, 58768, 'en', 'name', 'Sage Bariatric Institute'),
(69399, 58769, 'en', 'name', 'SerenaGroup Research Institute'),
(69400, 58770, 'en', 'name', 'Regional Children''s Hospital No1'),
(69401, 58771, 'en', 'name', 'Nizhny Novgorod Regional Clinical Hospital named after Semashko'),
(69402, 58771, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° им. Š.А.Демашко'),
(69403, 58772, 'en', 'name', 'Southwest Kidney Institute'),
(69404, 58773, 'en', 'name', 'Servy Institute for Reproductive Endocrinology'),
(69405, 58774, 'en', 'name', 'Samara City Children''s Clinical Hospital No. 1 named after NN Ivanova'),
(69406, 58774, 'ru', 'name', 'Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–1 им. Š.Š. Иванов'),
(69407, 58775, 'en', 'name', 'City Children''s Hospital No. 22'),
(69408, 58775, 'ru', 'name', 'Š”ŠµŃ‚ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–22'),
(69409, 58776, 'en', 'name', 'San Diego Spine Institute'),
(69410, 58777, 'en', 'name', 'Oncological Dispensary No. 2'),
(69411, 58777, 'ru', 'name', 'ŠžŠ½ŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Гиспансер ā„– 2'),
(69412, 58778, 'en', 'name', 'National Retina Institute'),
(69413, 58779, 'en', 'name', 'Orenburg Regional Clinical Oncology Center'),
(69414, 58779, 'ru', 'name', 'ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ областной клинический онкологический Гиспансер'),
(69415, 58780, 'en', 'name', 'NeuroCognitive Institute'),
(69416, 58781, 'en', 'name', 'Sports Concussion Institute'),
(69417, 58782, 'en', 'name', 'Perm Regional Oncology Center'),
(69418, 58782, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(69419, 58783, 'en', 'name', 'The Neurological Institute'),
(69420, 58784, 'en', 'name', 'Tyumen Regional Oncological Dispensary'),
(69421, 58784, 'ru', 'name', 'Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(69422, 58785, 'en', 'name', 'Shandong Provincial Institute of Dermatology and Venereology'),
(69423, 58785, 'zh', 'name', 'å±±äøœēœēš®č‚¤ę€§ē—…ē ”ē©¶ę‰€'),
(69424, 58786, 'en', 'name', 'Ulyanovsk Regional Clinical Hospital'),
(69425, 58786, 'ru', 'name', 'Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(69426, 58787, 'en', 'name', 'Regional Center for the Prevention and Control of AIDS Volgograd'),
(69427, 58787, 'ru', 'name', 'ВолгограГский областной центр профилактики Šø Š±Š¾Ń€ŃŒŠ±Ń‹ со Š”ŠŸŠ˜Š”Š¾Š¼'),
(69428, 58788, 'en', 'name', 'The Orthopaedic Institute'),
(69429, 58789, 'en', 'name', 'Tula Regional Clinical Hospital'),
(69430, 58789, 'ru', 'name', 'Š¢ŃƒŠ»ŃŒŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(69431, 58790, 'en', 'name', 'Shanghai Cell Therapy Research Institute'),
(69432, 58791, 'en', 'name', 'Institute of Early Childhood Research'),
(69433, 58791, 'de', 'name', 'Staatsinstitut für Frühpädagogik'),
(69434, 58792, 'en', 'name', 'St. Petersburg State Medical Academy "City Hospital No. 26"'),
(69435, 58793, 'en', 'name', 'The Pelvic Floor Institute'),
(69436, 58794, 'en', 'name', 'St. Francis Sleep, Allergy, and Lung Institute'),
(69437, 58795, 'en', 'name', 'The Prompt Institute'),
(69438, 58796, 'en', 'name', 'Republican Scientific and Practical Centre for Traumatology and Orthopedics'),
(69439, 58797, 'en', 'name', 'Cleveland Shoulder Institute'),
(69440, 58798, 'en', 'name', 'ShangHai JiAi Genetics & IVF Institute'),
(69441, 58798, 'zh', 'name', 'äøŠęµ·å‰ēˆ±é—ä¼ äøŽä½“å¤–å—ē²¾ē ”ē©¶ę‰€'),
(69442, 58799, 'en', 'name', 'Zaporizhzhia Medical Academy of Post-Graduate Education Ministry of Health of Ukraine'),
(69443, 58799, 'uk', 'name', 'Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ° меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŠæŃ–ŃŠ»ŃŠ“ŠøŠæŠ»Š¾Š¼Š½Š¾Ń— освіти ŠœŃ–ністерства охорони Š·Š“Š¾Ń€Š¾Š²ā€™Ń України'),
(69444, 58800, 'en', 'name', 'Shanghai Pudong Institute of Education Development'),
(69445, 58801, 'en', 'name', 'Shanxi Institute of Endemic Diseases'),
(69446, 58802, 'en', 'name', 'Infectious Diseases and the Research Institute'),
(69447, 58803, 'en', 'name', 'Stem Cell Institute'),
(69448, 58804, 'en', 'name', 'National Institute of Brain and Rehabilitation Sciences'),
(69449, 58805, 'en', 'name', 'The Core Institute'),
(69450, 58806, 'en', 'name', 'The Roxbury Institute'),
(69451, 58807, 'en', 'name', 'Stiles Eyecare Excellence'),
(69452, 58808, 'en', 'name', 'Stockholm Environment Institute'),
(69453, 58809, 'en', 'name', 'The Eye Care Institute');
INSERT INTO `ror_settings` VALUES
(69454, 58810, 'en', 'name', 'St. Petersburg State Medical Academy "City Polyclinic ā„–44"'),
(69455, 58810, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ "Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń поликлиника ā„–44"'),
(69456, 58811, 'en', 'name', 'Female Pelvic Medicine Institute of Virginia'),
(69457, 58812, 'en', 'name', 'Consultative and Diagnostic Center'),
(69458, 58813, 'en', 'name', 'Kursk Regional Clinical Oncology Center'),
(69459, 58813, 'ru', 'name', 'ŠŗŃƒŃ€ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(69460, 58814, 'en', 'name', 'Nikiforov Russian Center of Emergency and Radiation Medicine'),
(69461, 58814, 'ru', 'name', 'ŠŠøŠŗŠøŃ„Š¾Ń€Š¾Š² Российский центр ŃŠŗŃŃ‚Ń€ŠµŠ½Š½Š¾Š¹ Šø раГиационной меГицины'),
(69462, 58815, 'en', 'name', 'St. Petersburg State Health Care Institution "Elizabethan Hospital"'),
(69463, 58815, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Š•Š»ŠøŠ·Š°Š²ŠµŃ‚ŠøŠ½ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(69464, 58816, 'en', 'name', 'The Speech and Stuttering Institute'),
(69465, 58817, 'en', 'name', 'Voronezh Regional Clinical Oncology Center'),
(69466, 58817, 'ru', 'name', 'Воронежский областной клинический онкологический Гиспансер'),
(69467, 58818, 'en', 'name', 'St. Petersburg State Budgetary Healthcare Institution "City Polyclinic No. 106"'),
(69468, 58819, 'en', 'name', 'The Spine Institute'),
(69469, 58820, 'en', 'name', 'Spine Institute on the Emerald Coast'),
(69470, 58821, 'en', 'name', 'St. Petersburg State Health Care Foundation "Mariinsky City Hospital"'),
(69471, 58822, 'en', 'name', 'State Autonomous Institution of Health Interregional Clinical Diagnostic Center'),
(69472, 58822, 'ru', 'name', 'ŠŸŠ¾Š»ŠøŃ‚ŠøŠŗŠ° ŠŗŠ¾Š½Ń„ŠøŠ“ŠµŠ½Ń†ŠøŠ°Š»ŃŒŠ½Š¾ŃŃ‚Šø ŠæŠµŃ€ŃŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… Ганных сайта'),
(69473, 58823, 'en', 'name', 'Murmansk Regional Oncology Center'),
(69474, 58823, 'ru', 'name', 'ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(69475, 58824, 'en', 'name', 'Samara City N.I. Pirogov Clinical Hospital ā„–1'),
(69476, 58824, 'ru', 'name', 'Дамара Š.И. ŠŸŠøŃ€Š¾Š³Š¾Š²ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–1'),
(69477, 58825, 'en', 'name', 'Unimed Medical Institute'),
(69478, 58826, 'en', 'name', 'Children''s City Policlinic No. 45'),
(69479, 58827, 'en', 'name', 'Moscow City Clinical Hospital after V.M. Buyanov'),
(69480, 58827, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° им. Š’. М. Š‘ŃƒŃŠ½Š¾Š²Š°'),
(69481, 58828, 'en', 'name', 'Republican Center for the Prevention and Control of AIDS and Infectious Diseases'),
(69482, 58829, 'en', 'name', 'Healing Institute'),
(69483, 58830, 'en', 'name', 'Regional Clinical Hospital No 4'),
(69484, 58830, 'ru', 'name', 'ГБУЗ ŠžŠ±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–4'),
(69485, 58831, 'en', 'name', 'Strimling Dermatology, Laser & Vein Institute'),
(69486, 58832, 'en', 'name', 'Specialized Clinical Psychiatric Hospital No. 1'),
(69487, 58832, 'ru', 'name', 'Š”ŠæŠµŃ†ŠøŠ°Š»ŠøŠ·ŠøŃ€Š¾Š²Š°Š½Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠæŃŠøŃ…ŠøŠ°Ń‚Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 1'),
(69488, 58833, 'en', 'name', 'City Clinical Oncology Center'),
(69489, 58833, 'ru', 'name', 'ГороГской клинический онкологический Гиспансер'),
(69490, 58834, 'en', 'name', 'Woolfson Eye Institute'),
(69491, 58835, 'en', 'name', 'United Medical Research Institute'),
(69492, 58836, 'en', 'name', 'Sun Research Institute'),
(69493, 58837, 'en', 'name', 'Regional Children''s Clinical Hospital No. 1'),
(69494, 58837, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ ДверГловской области ŠžŠ±Š»Š°ŃŃ‚Š½Š°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–1'),
(69495, 58838, 'en', 'name', 'Republican Clinical Hospital of the Ministry of Health of the Republic of Tatarstan'),
(69496, 58839, 'en', 'name', 'SurgOne Foregut Institute'),
(69497, 58840, 'en', 'name', 'State Autonomous Healthcare Institution of the Novosibirsk Region "City Clinical Polyclinic No. 1"'),
(69498, 58841, 'fr', 'name', 'Brides-les-Bains'),
(69499, 58842, 'en', 'name', 'Thomas John Vision Institute'),
(69500, 58843, 'en', 'name', 'Institute for Respiratory Health'),
(69501, 58844, 'en', 'name', 'TobaccoFree Research Institute'),
(69502, 58845, 'en', 'name', 'Institute for Liver Health'),
(69503, 58846, 'en', 'name', 'Institute for Patient- and Family-Centered Care'),
(69504, 58847, 'en', 'name', 'Tallahassee Cancer Institute'),
(69505, 58848, 'en', 'name', 'Moscow Research and Clinical Center for Neuropsychiatry'),
(69506, 58849, 'en', 'name', 'Institute for the Blind and Partially Sighted'),
(69507, 58849, 'da', 'name', 'Instituttet for Blinde og Svagsynede'),
(69508, 58850, 'en', 'name', 'Institute for Exercise and Environmental Medicine'),
(69509, 58851, 'en', 'name', 'Budgetary Health Care Institution of the Omsk Region "Clinical Oncology Center"'),
(69510, 58852, 'en', 'name', 'Territory Neurology & Research Institute'),
(69511, 58853, 'no_lang_code', 'name', 'Guz "Tul''skiy Oblastnoy Onkologicheskiy Dispanser'),
(69512, 58854, 'en', 'name', 'Institute for Diabetes Discovery'),
(69513, 58855, 'en', 'name', 'Translational Research Institute for Metabolism and Diabetes'),
(69514, 58856, 'en', 'name', 'Institute of Molecular and Translational Medicine'),
(69515, 58856, 'cs', 'name', 'Ústav molekulĆ”rnĆ­ a translačnĆ­ medicĆ­ny'),
(69516, 58857, 'en', 'name', 'GOUZ YaO "Solovyov NV Clinical Emergency Hospital"'),
(69517, 58858, 'ro', 'name', 'Institutul Oncologic din Republica Moldova'),
(69518, 58858, 'en', 'name', 'Oncological Institute of the Republic of Moldova'),
(69519, 58859, 'de', 'name', 'Wissenschaftliches Institut der AOK'),
(69520, 58860, 'fr', 'name', 'Centre commun de recherche'),
(69521, 58860, 'en', 'name', 'Directorate-General Joint Research Centre'),
(69522, 58860, 'de', 'name', 'Gemeinsame Forschungsstelle'),
(69523, 58861, 'en', 'name', 'Women''s Pelvic Health Institute'),
(69524, 58862, 'en', 'name', 'International Heart and Lung Institute'),
(69525, 58863, 'en', 'name', 'Triple O Medical Services'),
(69526, 58864, 'en', 'name', 'Inspired Spine'),
(69527, 58865, 'no_lang_code', 'name', 'The Johrei Institute'),
(69528, 58866, 'no_lang_code', 'name', 'Würzburg Institute for Traffic Sciences (Germany)'),
(69529, 58866, 'de', 'name', 'Würzburger Institut für Verkehrswissenschaften'),
(69530, 58867, 'en', 'name', 'Turner Eye Institute'),
(69531, 58868, 'en', 'name', 'Jones Institute'),
(69532, 58869, 'en', 'name', 'Vascular Institute of Virginia'),
(69533, 58870, 'es', 'name', 'Centro Común de Investigación'),
(69534, 58870, 'en', 'name', 'Joint Research Center'),
(69535, 58871, 'en', 'name', 'Yunnan Institute For Drug Abuse'),
(69536, 58871, 'zh', 'name', 'äŗ‘å—ēœčÆē‰©ę»„ē”Øē ”ē©¶ę‰€'),
(69537, 58872, 'en', 'name', 'Kotsanis Institute'),
(69538, 58873, 'en', 'name', 'Vimhans PrimaMed Super Speciality Hospital'),
(69539, 58874, 'en', 'name', 'Krongrad Institute'),
(69540, 58875, 'de', 'name', 'Zydolab - Institut für Zytologie und Immunzytochemie'),
(69541, 58876, 'en', 'name', 'Vinmec International Hospital'),
(69542, 58877, 'en', 'name', 'The Mayer Institute'),
(69543, 58878, 'en', 'name', 'Virginia Cancer Institute'),
(69544, 58879, 'en', 'name', 'Virginia Gastroenterology Institute'),
(69545, 58880, 'en', 'name', 'Virginia Spine Institute'),
(69546, 58881, 'en', 'name', 'Westwood Institute for Anxiety Disorders'),
(69547, 58882, 'en', 'name', 'Wellish Vision Institute'),
(69548, 58883, 'en', 'name', 'Werlhof Institute'),
(69549, 58884, 'fi', 'name', 'Virpiniemen liikuntaopisto'),
(69550, 58884, 'en', 'name', 'Virpiniemi Sports Institute'),
(69551, 58885, 'no_lang_code', 'name', 'VRR Diagnostic Services (India)'),
(69552, 58886, 'en', 'name', 'Vitality Institute'),
(69553, 58887, 'en', 'name', 'VitalStrategic Research Institute'),
(69554, 58888, 'fr', 'name', 'Association de MusicothƩrapie Applications et Recherches Cliniques'),
(69555, 58889, 'en', 'name', 'China Anti-Aging Association'),
(69556, 58889, 'zh', 'name', 'äø­å›½ęŠ—č”°č€äæƒčæ›ä¼š'),
(69557, 58890, 'fr', 'name', 'Association des Neuro-Oncologues d’Expression FranƧaise'),
(69558, 58891, 'en', 'name', 'Coalition of Asian-American Independent Practice Association'),
(69559, 58892, 'en', 'name', 'Acid Maltase Deficiency Association'),
(69560, 58893, 'fr', 'name', 'Association FranƧaise de Lutte Anti-Rhumastismale'),
(69561, 58894, 'en', 'name', 'Toronto Sleep Institute'),
(69562, 58895, 'fr', 'name', 'Association des MƩdecins d''Urgence du QuƩbec'),
(69563, 58896, 'en', 'name', 'Chinese Anti-Cancer Association'),
(69564, 58896, 'zh', 'name', 'äø­å›½ęŠ—ē™Œåä¼š'),
(69565, 58897, 'rw', 'name', 'Association Rwandaise Des Diabetiques'),
(69566, 58897, 'en', 'name', 'Rwanda Diabetes Association'),
(69567, 58898, 'en', 'name', 'Orlovsky Oncology Dispensary'),
(69568, 58899, 'fr', 'name', 'Association Clinique et ThƩrapeutique Infantile du Val de Marne'),
(69569, 58900, 'fr', 'name', 'Association SahƩlienne de Recherche AppliquƩe pour le DƩveloppement Durable'),
(69570, 58901, 'en', 'name', 'Acute Leukemia French Association'),
(69571, 58902, 'fr', 'name', 'Association Schizo Oui'),
(69572, 58903, 'en', 'name', 'ADIR Association'),
(69573, 58904, 'en', 'name', 'Chinese Medical Doctor Association'),
(69574, 58904, 'zh', 'name', 'äø­å›½åŒ»åøˆåä¼š'),
(69575, 58905, 'fr', 'name', 'Association FranƧaise de Chirurgie'),
(69576, 58906, 'en', 'name', 'Interdisciplinary Dental Education Academy'),
(69577, 58907, 'fr', 'name', 'Association FranƧaise pour le DĆ©pistage et la PrĆ©vention des Handicaps de l’Enfant'),
(69578, 58908, 'fr', 'name', 'Association Tunisienne Contre le Cancer'),
(69579, 58909, 'en', 'name', 'Cardiovascular and Interventional Radiological Society of Europe'),
(69580, 58910, 'en', 'name', 'Asthma Society of Ireland'),
(69581, 58911, 'en', 'name', 'Association for Children at Risk'),
(69582, 58911, 'he', 'name', '×”×¢×ž×•×Ŗ×” לילדים בהיכון'),
(69583, 58912, 'de', 'name', 'Augenstern'),
(69584, 58913, 'fr', 'name', 'Ages et Vie'),
(69585, 58914, 'en', 'name', 'Alberta Pharmacists Association'),
(69586, 58915, 'fr', 'name', 'Association pour l''Utilisation du Rein Artificiel'),
(69587, 58916, 'en', 'name', 'Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine'),
(69588, 58917, 'en', 'name', 'The Korean Society of Blood and Marrow Transplantation'),
(69589, 58917, 'ko', 'name', 'ėŒ€ķ•œ ķ˜ˆģ•” ģˆœķ™˜ ķ•™ķšŒ'),
(69590, 58918, 'id', 'name', 'Ikatan Dokter Anak Indonesia'),
(69591, 58918, 'en', 'name', 'Indonesian Pediatric Society'),
(69592, 58919, 'en', 'name', 'Australian and New Zealand Intensive Care Society'),
(69593, 58920, 'en', 'name', 'Allied Research Society'),
(69594, 58921, 'en', 'name', 'Association for Pediatric Pulmonary Hypertension'),
(69595, 58922, 'en', 'name', 'Australian and New Zealand Society of Palliative Medicine'),
(69596, 58923, 'en', 'name', 'Association for the Advancement of Medical Instrumentation'),
(69597, 58924, 'de', 'name', 'Arbeitsgemeinschaft für Klinische Ernährung'),
(69598, 58925, 'en', 'name', 'American Academy of Orthopaedic Manual Physical Therapists'),
(69599, 58926, 'de', 'name', 'Ɩsterreichische Gesellschaft für Hypertensiologie'),
(69600, 58927, 'en', 'name', 'Jinan Disabled Persons Federation'),
(69601, 58928, 'en', 'name', 'American Academy of Osteopathy'),
(69602, 58929, 'de', 'name', 'Ɩsterreichische Gesellschaft für Parodontologie'),
(69603, 58930, 'en', 'name', 'Beacon Hill Academy'),
(69604, 58931, 'en', 'name', 'Belgian Hematological Society'),
(69605, 58932, 'en', 'name', 'American Association for Bronchology and Interventional Pulmonology'),
(69606, 58933, 'en', 'name', 'Japanese Academy of Maxillofacial Implants'),
(69607, 58934, 'en', 'name', 'American Association of Chairs of Departments of Psychiatry'),
(69608, 58935, 'en', 'name', 'Belgian Society for Pneumology'),
(69609, 58935, 'nl', 'name', 'Belgische Vereniging voor Pneumologie'),
(69610, 58936, 'en', 'name', 'American Association of Gynecologic Laparoscopists'),
(69611, 58937, 'en', 'name', 'American Association of Kidney Patients'),
(69612, 58938, 'fr', 'name', 'Adema 80'),
(69613, 58939, 'en', 'name', 'Finnish Mass Spectrometry Society'),
(69614, 58939, 'fi', 'name', 'Suomen Massaspektrometrian Seura'),
(69615, 58940, 'en', 'name', 'Finnish Society of Obstetrics and Gynaecology'),
(69616, 58940, 'fi', 'name', 'Suomen Gynekologiyhdistys'),
(69617, 58941, 'en', 'name', 'Belgian Society for Pediatric Gastroenterology Hepatology and Nutrition'),
(69618, 58942, 'en', 'name', 'Copenhagen Academy for Medical Education and Simulation'),
(69619, 58942, 'da', 'name', 'KĆøbenhavns Akademi for Medicinsk Uddannelse og Simulation'),
(69620, 58943, 'fr', 'name', 'Association des Familles de Traumatisés Crâniens d''Alsace'),
(69621, 58944, 'en', 'name', 'Benelux Society of Phlebology'),
(69622, 58944, 'nl', 'name', 'Secretariat of the Benelux Society of Phlebology'),
(69623, 58945, 'en', 'name', 'Finnish Society of Surgery'),
(69624, 58945, 'fi', 'name', 'Suomen Kirurgiyhdistys'),
(69625, 58946, 'en', 'name', 'Bethlehem Arab Society for Rehabilitation'),
(69626, 58946, 'ar', 'name', 'Ų¬Ł…Ų¹ŁŠŲ© بيت لحم Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„ŲŖŲ£Ł‡ŁŠŁ„'),
(69627, 58947, 'en', 'name', 'Croatian Society of Regional Anaesthesia and Analgesia'),
(69628, 58947, 'hr', 'name', 'Hrvatsko druŔtvo regionalne anestezije i analgezije'),
(69629, 58948, 'pt', 'name', 'Instituto Nefrológico de Campinas'),
(69630, 58949, 'en', 'name', 'American Medical Group Association'),
(69631, 58950, 'fr', 'name', 'Association FranƧaise pour la Recherche Thermale'),
(69632, 58951, 'en', 'name', 'Czech Society for Hypertension'),
(69633, 58951, 'cs', 'name', 'ČeskĆ” Společnost pro Hypertenzi'),
(69634, 58952, 'fr', 'name', 'SociĆ©tĆ© Francophone d’Arthroscopie'),
(69635, 58953, 'en', 'name', 'American Orthotic and Prosthetic Association'),
(69636, 58954, 'pt', 'name', 'Sociedade Brasileira de Cirurgia de CabeƧa e PescoƧo'),
(69637, 58955, 'fr', 'name', 'GƩrontopƓle Pierre Pfitzenmeyer'),
(69638, 58956, 'pt', 'name', 'Sociedade Brasileira de Cirurgia TorƔcica'),
(69639, 58957, 'fr', 'name', 'SociƩtƩ FranƧaise d''Allergologie'),
(69640, 58958, 'en', 'name', 'American Pulse Association'),
(69641, 58959, 'en', 'name', 'British Association of Urological Surgeons'),
(69642, 58960, 'fr', 'name', 'SociƩtƩ Nationale FranƧaise de Colo-Proctologie'),
(69643, 58961, 'fr', 'name', 'SociƩtƩ FranƧaise d''Endoscopie Digestive'),
(69644, 58962, 'en', 'name', 'British Cardiovascular Intervention Society'),
(69645, 58963, 'fr', 'name', 'Association Keoogo'),
(69646, 58964, 'fr', 'name', 'Association Francophone pour les Soins Oncologiques de Support'),
(69647, 58965, 'en', 'name', 'Obesity Medicine Association'),
(69648, 58966, 'en', 'name', 'British Columbia Dental Hygienists'' Association'),
(69649, 58967, 'fr', 'name', 'Association Mucoviscidose - ABCF2'),
(69650, 58968, 'nl', 'name', 'Galactosemie Vereniging Nederland'),
(69651, 58969, 'en', 'name', 'Danish Society of Cardiology'),
(69652, 58969, 'da', 'name', 'Dansk Cardiologisk Selskab'),
(69653, 58970, 'en', 'name', 'Kidney Care UK'),
(69654, 58971, 'fr', 'name', 'Association Nationale d’Aide aux personnes HandicapĆ©es'),
(69655, 58972, 'es', 'name', 'Sociedad EspaƱola de Patologƭa Digestiva'),
(69656, 58973, 'en', 'name', 'The Dementia Association of Thailand'),
(69657, 58973, 'th', 'name', 'ąøŖąø”ąø²ąø„ąø”ą¹‚ąø£ąø„ąøŖąø”ąø­ąø‡ą¹€ąøŖąø·ą¹ˆąø­ąø”ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(69658, 58974, 'en', 'name', 'British Tinnitus Association'),
(69659, 58975, 'en', 'name', 'Bulgarian Neuromuscular Diseases Association'),
(69660, 58975, 'bg', 'name', 'Š‘ŠŖŠ›Š“ŠŠ Š”ŠšŠ ŠŠ”ŠžŠ¦Š˜ŠŠ¦Š˜ŠÆ ЗА ŠŠ•Š’Š ŠžŠœŠ£Š”ŠšŠ£Š›ŠŠ˜ Š—ŠŠ‘ŠžŠ›ŠÆŠ’ŠŠŠ˜ŠÆ'),
(69661, 58976, 'fr', 'name', 'Association Nationale des HƩpato-GastroentƩrologues des HƓpitaux GƩnƩraux de France'),
(69662, 58977, 'de', 'name', 'Bundesverband Medizintechnologie'),
(69663, 58977, 'en', 'name', 'German Medical Technology Association'),
(69664, 58978, 'en', 'name', 'Dermatological Society of Thailand'),
(69665, 58978, 'th', 'name', 'ąøŖąø”ąø²ąø„ąø”ą¹ąøžąø—ąø¢ą¹Œąøœąø“ąø§ąø«ąø™ąø±ąø‡ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(69666, 58979, 'de', 'name', 'Arbeitsgemeinschaft Urologische Onkologie'),
(69667, 58980, 'no_lang_code', 'name', 'CHO America (Canada)'),
(69668, 58981, 'es', 'name', 'Asociación Argentina de Tenis'),
(69669, 58982, 'en', 'name', 'Dermatology Society of South Africa'),
(69670, 58983, 'fr', 'name', 'Association Nationale pour le Developpement de la QualitƩ Dans les HƓpitaux et Les Cliniques'),
(69671, 58984, 'de', 'name', 'BundesƤrztekammer'),
(69672, 58984, 'en', 'name', 'German Medical Association'),
(69673, 58985, 'de', 'name', 'Deutsche Gesellschaft für Pneumologie und Beatmungsmedizin'),
(69674, 58985, 'en', 'name', 'German Respiratory Society'),
(69675, 58986, 'en', 'name', 'Cameroon Nutritional Science Society'),
(69676, 58987, 'fr', 'name', 'FƩdƩration Antadir'),
(69677, 58988, 'en', 'name', 'Diabetes Association of Thailand'),
(69678, 58988, 'th', 'name', 'ąøŖąø”ąø²ąø„ąø”ą¹‚ąø£ąø„ą¹€ąøšąø²ąø«ąø§ąø²ąø™ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(69679, 58989, 'de', 'name', 'Deutsche Gesellschaft für Neurogastroenterologie und Motilität'),
(69680, 58990, 'de', 'name', 'Deutsche Gesellschaft für Thorax-, Herz- und Gefäßchirurgie'),
(69681, 58990, 'en', 'name', 'German Society for Thoracic and Cardiovascular Surgery'),
(69682, 58991, 'en', 'name', 'Down Syndrome Association of Greater Toledo'),
(69683, 58992, 'en', 'name', 'Asia Cornea Society'),
(69684, 58993, 'de', 'name', 'Deutsche Stiftung Organtransplantation'),
(69685, 58993, 'en', 'name', 'German Organ Transplantation Foundation'),
(69686, 58994, 'de', 'name', 'Deutsche Gesellschaft für Angiologie Gesellschaft für Gefäßmedizin e.V.'),
(69687, 58995, 'fr', 'name', 'Association Canadienne des Chirurgiens GƩnƩraux'),
(69688, 58995, 'en', 'name', 'Canadian Association of General Surgeons'),
(69689, 58996, 'de', 'name', 'Deutsche Krebsgesellschaft'),
(69690, 58996, 'en', 'name', 'German Cancer Society'),
(69691, 58997, 'fr', 'name', 'Association Canadienne de Protection MƩdicale'),
(69692, 58997, 'en', 'name', 'Canadian Medical Protective Association'),
(69693, 58998, 'en', 'name', 'Chinese Gerontology Society'),
(69694, 58998, 'zh', 'name', 'äø­å›½č€å¹“å­¦å’Œč€å¹“åŒ»å­¦å­¦ä¼š'),
(69695, 58999, 'en', 'name', 'American Association of Sensory Electrodiagnostic Medicine'),
(69696, 59000, 'en', 'name', 'Canadian Orthopaedic Foot and Ankle Society'),
(69697, 59001, 'en', 'name', 'Dutch Society for Obstetrics and Gynecology'),
(69698, 59001, 'nl', 'name', 'Nederlandse Vereniging voor Obstetrie en Gynaecologie'),
(69699, 59002, 'en', 'name', 'Gifu Prefecture Medical Association'),
(69700, 59002, 'ja', 'name', '岐阜県医師会'),
(69701, 59003, 'da', 'name', 'Ƙjenforeningen'),
(69702, 59004, 'en', 'name', 'Global Health Association of Miami'),
(69703, 59005, 'en', 'name', 'Canadian Society of Colon and Rectal Surgeons'),
(69704, 59006, 'en', 'name', 'Government Medical Officers Association'),
(69705, 59007, 'en', 'name', 'Canadian Society of Intestinal Research'),
(69706, 59008, 'nl', 'name', 'Ergotherapie Nederland'),
(69707, 59009, 'fr', 'name', 'Association Pharmaceutique Belge'),
(69708, 59010, 'en', 'name', 'The Memory Clinic'),
(69709, 59011, 'fr', 'name', 'Association Canadienne des Greffes'),
(69710, 59011, 'en', 'name', 'Canadian Transplant Association'),
(69711, 59012, 'en', 'name', 'Association of British Clinical Diabetologists'),
(69712, 59013, 'fr', 'name', 'AMIS FSH'),
(69713, 59014, 'en', 'name', 'Association of Cancer Online Resources'),
(69714, 59015, 'en', 'name', 'Pathway'),
(69715, 59016, 'en', 'name', 'Arthritis Associates of Southern California'),
(69716, 59017, 'en', 'name', 'Academy of Cardiovascular Society'),
(69717, 59017, 'tr', 'name', 'Kardiyovasküler Akademi Derneği'),
(69718, 59018, 'en', 'name', 'Guelph Wellington Seniors Association'),
(69719, 59019, 'en', 'name', 'Association of Extremity Nerve Surgeons'),
(69720, 59020, 'en', 'name', 'Gulf Heart Association'),
(69721, 59021, 'en', 'name', 'Association of Gynaecologists and Obstetricians'),
(69722, 59022, 'da', 'name', 'Dansk Selskab For Klassisk HomĆøopati'),
(69723, 59023, 'en', 'name', 'Asthma Association'),
(69724, 59023, 'bg', 'name', 'ŠŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ Астма'),
(69725, 59024, 'en', 'name', 'Children’s Aid Society of Hamilton'),
(69726, 59025, 'en', 'name', 'Alliance Against Diabetes'),
(69727, 59026, 'en', 'name', 'Association of Brazilian Intensive Medicine'),
(69728, 59026, 'pt', 'name', 'Associação de Medicina Intensiva Brasileira'),
(69729, 59027, 'en', 'name', 'Charleston Hematology Oncology Associates'),
(69730, 59028, 'en', 'name', 'Health Informatics Society of Ireland'),
(69731, 59029, 'en', 'name', 'Association of Children and Preventive Dentists of Serbia'),
(69732, 59030, 'en', 'name', 'International Hyperbarics Association'),
(69733, 59031, 'es', 'name', 'Sociedad EspaƱola de Medicina Interna'),
(69734, 59032, 'en', 'name', 'Association of Pediatric Program Directors'),
(69735, 59033, 'en', 'name', 'Chest Wall Injury Society'),
(69736, 59034, 'en', 'name', 'Turkish Emergency Medical Association'),
(69737, 59034, 'tr', 'name', 'Türkiye Acil Tıp Derneği'),
(69738, 59035, 'en', 'name', 'Hellenic Cancer Society'),
(69739, 59035, 'el', 'name', 'Ελληνική Αντικαρκινική Εταιρεία'),
(69740, 59036, 'en', 'name', 'Association of Academic Professionals in Obstetrics and Gynaecology'),
(69741, 59037, 'en', 'name', 'International Piezoelectric Surgery Academy'),
(69742, 59038, 'en', 'name', 'Children’s Aid Society'),
(69743, 59039, 'en', 'name', 'Hellenic Food Industries Association'),
(69744, 59039, 'el', 'name', 'Ī£ĻĪ½Ī“ĪµĻƒĪ¼ĪæĻ‚ Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŽĪ½ Ī’Ī¹ĪæĪ¼Ī·Ļ‡Ī±Ī½Ī¹ĻŽĪ½ Τροφίμων'),
(69745, 59040, 'en', 'name', 'Association of Specialty Physicians'),
(69746, 59041, 'en', 'name', 'Chimes Society'),
(69747, 59042, 'en', 'name', 'Senologic Hellenic Society'),
(69748, 59042, 'el', 'name', 'Ελληνική Εταιρεία ĪœĪ±ĻƒĻ„ĪæĪ»ĪæĪ³ĪÆĪ±'),
(69749, 59043, 'en', 'name', 'Hellenic Society for Chemotherapy'),
(69750, 59043, 'el', 'name', 'Ελληνική Εταιρεία Χημειοθεραπείας'),
(69751, 59044, 'en', 'name', 'National Association of Area Agencies on Aging'),
(69752, 59045, 'en', 'name', 'ELEPAP-Rehabilitation for The Disabled'),
(69753, 59045, 'el', 'name', 'Ελληνική Εταιρία Ī ĻĪæĻƒĻ„Ī±ĻƒĪÆĪ±Ļ‚ & Ī‘Ļ€ĪæĪŗĪ±Ļ„Ī±ĻƒĻ„Ī¬ĻƒĪµĻ‰Ļ‚ Αναπήρων Ī ĻĪæĻƒĻŽĻ€Ļ‰Ī½-ΕΛΕΠΑΠ'),
(69754, 59046, 'en', 'name', 'National Association for Black Veterans'),
(69755, 59047, 'en', 'name', 'National Asociation of General Practitioners in Bulgaria'),
(69756, 59048, 'en', 'name', 'Xinhua Translational Institute for Cancer Pain'),
(69757, 59048, 'zh', 'name', 'äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žę–°åŽåŒ»é™¢'),
(69758, 59049, 'et', 'name', 'Eesti Reumatoloogia Selts'),
(69759, 59049, 'en', 'name', 'Estonian Rheumatology Society'),
(69760, 59050, 'en', 'name', 'National Association of People with HIV Australia'),
(69761, 59051, 'en', 'name', 'National Association of Statutory Health Insurance Physicians'),
(69762, 59052, 'en', 'name', 'Hellenic Society of Hypertension'),
(69763, 59052, 'el', 'name', 'Ελληνική Εταιρεία Ī„Ļ€Ī­ĻĻ„Ī±ĻƒĪ·Ļ‚'),
(69764, 59053, 'en', 'name', 'International Thyroid Eye Disease Society'),
(69765, 59054, 'en', 'name', 'Association of European Ayurvedic Physicians & Therapists'),
(69766, 59054, 'de', 'name', 'Verband EuropƤischer Ayurveda-Mediziner & Therapeuten'),
(69767, 59055, 'en', 'name', 'International WAGR Syndrome Association'),
(69768, 59056, 'en', 'name', 'Association of the British Pharmaceutical Industry'),
(69769, 59057, 'en', 'name', 'National Hematology Society'),
(69770, 59057, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Šµ гематологическое общество'),
(69771, 59058, 'en', 'name', 'Russian Respiratory Society'),
(69772, 59058, 'ru', 'name', 'ŠœŠµŠ¶Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š¾Š±Ń‰ŠµŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Российское Респираторное ŠžŠ±Ń‰ŠµŃŃ‚во'),
(69773, 59059, 'en', 'name', 'National Pecan Shellers Association'),
(69774, 59060, 'en', 'name', 'Conemaugh Health System'),
(69775, 59061, 'en', 'name', 'Hong Kong Island Women''s Association'),
(69776, 59061, 'zh', 'name', '香 ęøÆ å³¶ 婦 儳 聯 會'),
(69777, 59062, 'en', 'name', 'National Stroke Association of Malaysia'),
(69778, 59063, 'en', 'name', 'European Dairy Association'),
(69779, 59064, 'en', 'name', 'National Stroke Association'),
(69780, 59065, 'en', 'name', 'Humboldt Independent Practice Association'),
(69781, 59066, 'fr', 'name', 'Association pour l''Information et la Recherche sur les maladies rƩnales GƩnƩtiques'),
(69782, 59067, 'en', 'name', 'European Neuroendocrine Tumor Society'),
(69783, 59068, 'en', 'name', 'Hunan Academy of Traditional Chinese Medicine'),
(69784, 59068, 'zh', 'name', 'ę¹–å—ēœäø­åŒ»čÆē ”ē©¶é™¢'),
(69785, 59069, 'en', 'name', 'European Pathway Association'),
(69786, 59070, 'is', 'name', 'Icelandic Félag sjúkraþjÔlfara'),
(69787, 59070, 'en', 'name', 'The Icelandic Physiotherapy Association'),
(69788, 59071, 'en', 'name', 'Irish Society of Chartered Physiotherapists'),
(69789, 59072, 'nl', 'name', 'Nederlandse Internisten Vereniging'),
(69790, 59073, 'fr', 'name', 'Association de Cardiologie - Ile de France'),
(69791, 59074, 'en', 'name', 'Neighbourhood Pharmacy Association of Canada'),
(69792, 59075, 'en', 'name', 'European Society for Intravenous Anaesthesia'),
(69793, 59076, 'en', 'name', 'International Association for Human Values'),
(69794, 59077, 'en', 'name', 'Israel Medical Association'),
(69795, 59078, 'en', 'name', 'European Society for Surgical Research'),
(69796, 59079, 'en', 'name', 'Indian Society of Critical Care Medicine'),
(69797, 59080, 'fr', 'name', 'Association pour la Promotion du Sport chez l''Enfant Malade'),
(69798, 59081, 'en', 'name', 'Nepal Red Cross Society'),
(69799, 59082, 'en', 'name', 'Nepalese Psychological Association'),
(69800, 59083, 'en', 'name', 'Israel Diabetes Association'),
(69801, 59083, 'he', 'name', 'אגודה ×™×©×Ø××œ×™×Ŗ ×œ×”×•×›×Ø×Ŗ'),
(69802, 59084, 'en', 'name', 'European Society of Cutaneous Lupus Erythematosus'),
(69803, 59084, 'de', 'name', 'Europäische Gesellschaft für kutanen Lupus erythematodes'),
(69804, 59085, 'en', 'name', 'Indiana Athletic Trainers Association'),
(69805, 59086, 'en', 'name', 'European Society of Gynaecological Oncology'),
(69806, 59087, 'en', 'name', 'Israeli Yoga Teachers Association'),
(69807, 59087, 'he', 'name', '××Ø×’×•×Ÿ ×ž×•×Ø×™ היוגה ×‘×™×©×Ø××œ'),
(69808, 59088, 'fr', 'name', 'Association pour la Recherche en Physiologie de l’Environnement'),
(69809, 59089, 'en', 'name', 'Kidney Disease Association of Thailand'),
(69810, 59090, 'en', 'name', 'Israeli Association for Cardiovascular Trials'),
(69811, 59091, 'nl', 'name', 'Nederlandse Vereniging voor Radiologie'),
(69812, 59092, 'en', 'name', 'New Brunswick Pharmacists’ Association'),
(69813, 59093, 'en', 'name', 'New Jersey Psychological Association'),
(69814, 59094, 'en', 'name', 'International CTEPH Association'),
(69815, 59095, 'ro', 'name', 'Societatea Română de Anestezie şi Terapie Intensivă'),
(69816, 59096, 'en', 'name', 'Nigerian Cardiac Society'),
(69817, 59097, 'en', 'name', 'Romanian Society of Nephrology'),
(69818, 59097, 'ro', 'name', 'Societatii Romane de Nefrologie'),
(69819, 59098, 'en', 'name', 'Italian Society of Physiotherapy'),
(69820, 59098, 'it', 'name', 'SocietĆ  Italiana Fisioterapia'),
(69821, 59099, 'en', 'name', 'Family Life Association of Swaziland'),
(69822, 59100, 'en', 'name', 'Royal Health Awareness Society'),
(69823, 59101, 'ca', 'name', 'Departament de Benestar i Drets Socials'),
(69824, 59102, 'en', 'name', 'Nordic Society for Pediatric Hematology and Oncology'),
(69825, 59103, 'en', 'name', 'Russian Society of Clinical Oncology'),
(69826, 59103, 'ru', 'name', 'Российское общество клинической онкологии'),
(69827, 59104, 'en', 'name', 'Russian Society of Cardiology'),
(69828, 59104, 'ru', 'name', 'Российское карГиологическое общество'),
(69829, 59105, 'en', 'name', 'North American Skull Base Society'),
(69830, 59106, 'en', 'name', 'Russian Phlebology Association'),
(69831, 59106, 'ru', 'name', 'ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ флебологов России'),
(69832, 59107, 'en', 'name', 'Italian Society of Periodontology and Implantology'),
(69833, 59107, 'it', 'name', 'SocietĆ  Italiana di Parodontologia e Implantologia'),
(69834, 59108, 'en', 'name', 'Rwanda Pediatric Association'),
(69835, 59109, 'en', 'name', 'Austrian Society of Pneumology'),
(69836, 59109, 'de', 'name', 'Ɩsterreichische Gesellschaft für Pneumologie'),
(69837, 59110, 'de', 'name', 'Nord-Ostdeutsche Gesellschaft für Gynäkologische Onkologie'),
(69838, 59111, 'en', 'name', 'Sadir Assistance'),
(69839, 59112, 'en', 'name', 'North Suffolk Mental Health Association'),
(69840, 59113, 'no_lang_code', 'name', 'Rahnuma'),
(69841, 59114, 'no', 'name', 'Norsk Kiropraktorforening'),
(69842, 59115, 'de', 'name', 'Bundesverband Deutscher ApothekerverbƤnde'),
(69843, 59115, 'en', 'name', 'Federal Union of German Associations of Pharmacists'),
(69844, 59116, 'sv', 'name', 'Svenska Fotbollfƶrbundet'),
(69845, 59116, 'en', 'name', 'Swedish Football Association'),
(69846, 59117, 'en', 'name', 'Scandinavian College of Neuropsychopharmacology'),
(69847, 59118, 'en', 'name', 'Swiss Ankylosing Spondylitis Association'),
(69848, 59119, 'en', 'name', 'Schizophrenia Society of Ontario'),
(69849, 59120, 'no_lang_code', 'name', 'Veikkaus (Finland)'),
(69850, 59121, 'de', 'name', 'Balgrist Beteiligungs AG'),
(69851, 59122, 'no', 'name', 'Norsk Smerteforening'),
(69852, 59122, 'en', 'name', 'Norwegian Pain Society'),
(69853, 59123, 'en', 'name', 'Japan Society of Laparoscopic Colorectal Surgery'),
(69854, 59123, 'ja', 'name', '第6å›žč…¹č…”é”äø‹å¤§č…øåˆ‡é™¤ē ”ē©¶ä¼š'),
(69855, 59124, 'en', 'name', 'European Society of Hypertension'),
(69856, 59124, 'it', 'name', 'SocietĆ  europea di ipertensione'),
(69857, 59125, 'de', 'name', 'Schweizerische Gesellschaft für Cystische Fibrose'),
(69858, 59125, 'it', 'name', 'SocietĆ  Svizzera per la fFbrosi Cisitica'),
(69859, 59125, 'fr', 'name', 'SociƩtƩ Suisse pour la Mucoviscidose'),
(69860, 59126, 'no', 'name', 'Apotekforeningen'),
(69861, 59126, 'en', 'name', 'Norwegian Pharmacy Association'),
(69862, 59127, 'en', 'name', 'Japanese Society of CT Screening'),
(69863, 59127, 'ja', 'name', 'ę—„ęœ¬CT検診学会'),
(69864, 59128, 'en', 'name', 'Iranian Orthopedic Association'),
(69865, 59128, 'fa', 'name', 'انجمن جراحان ارتوپدی Ų§ŪŒŲ±Ų§Ł†'),
(69866, 59129, 'no', 'name', 'Landsforeningen Uventet BarnedĆød'),
(69867, 59130, 'en', 'name', 'The Japanese Society of Intensive Care Medicine'),
(69868, 59130, 'ja', 'name', 'ę—„ęœ¬é›†äø­ę²»ē™‚åŒ»å­¦ä¼š'),
(69869, 59131, 'en', 'name', 'Czech Surgical Society'),
(69870, 59131, 'cs', 'name', 'ČeskĆ” ChirurgickĆ” Společnost'),
(69871, 59132, 'en', 'name', 'Kanagawa Prefecture Medical Association'),
(69872, 59132, 'ja', 'name', 'ē„žå„ˆå·ēœŒåŒ»åø«ä¼š'),
(69873, 59133, 'fr', 'name', 'PharmaSuisse'),
(69874, 59134, 'en', 'name', 'Nurse Maude Association'),
(69875, 59135, 'en', 'name', 'Kaohsiung Breast Cancer Promotion and Education Society'),
(69876, 59135, 'zh', 'name', 'ē¤¾åœ˜ę³•äŗŗé«˜é›„åø‚ä¹³ē™Œé˜²ę²»č”›ę•™å­øęœƒ'),
(69877, 59136, 'en', 'name', 'Turkish Ophthalmological Association'),
(69878, 59136, 'tr', 'name', 'Türk Oftalmoloji Derneği'),
(69879, 59137, 'en', 'name', 'Sickle Cell Disease Association of America'),
(69880, 59138, 'en', 'name', 'Kazakhstan Academy of Preventive Medicine'),
(69881, 59138, 'kk', 'name', 'АкаГемии профилактической меГицины'),
(69882, 59139, 'en', 'name', 'Oakland Colon and Rectal Associates'),
(69883, 59140, 'en', 'name', 'Psychiatric Association of Turkey'),
(69884, 59140, 'tr', 'name', 'Türkiye Psikiyatri Derneği'),
(69885, 59141, 'en', 'name', 'Lions Eye Bank at Albany'),
(69886, 59142, 'en', 'name', 'Kazakhstan Association on Sexual and Reproductive Health'),
(69887, 59142, 'kk', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ°Ń Š°ŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ по половому Šø Ń€ŠµŠæŃ€Š¾Š“ŃƒŠŗŃ‚ŠøŠ²Š½Š¾Š¼Ńƒ Š·Š“Š¾Ń€Š¾Š²ŃŒŃŽ'),
(69888, 59143, 'de', 'name', 'Schweizerische Ƅrztegesellschaft für Manuelle Medizin'),
(69889, 59144, 'en', 'name', 'Sjƶgren’s Society of Canada'),
(69890, 59145, 'ca', 'name', 'Collegi Oficial d''Infermeres i Infermers de Barcelona'),
(69891, 59146, 'en', 'name', 'Skin of Color Society'),
(69892, 59147, 'en', 'name', 'Ohio Dermatological Association'),
(69893, 59148, 'en', 'name', 'Ohio Pediatric Research Association'),
(69894, 59149, 'en', 'name', 'Ohio Physical Therapy Association'),
(69895, 59150, 'en', 'name', 'Korea Pharmaceutical and Bio-Pharma Manufacturers Association'),
(69896, 59150, 'ko', 'name', 'ķ•œźµ­ģ œģ•½ė°”ģ“ģ˜¤ķ˜‘ķšŒ'),
(69897, 59151, 'en', 'name', 'Ontario Association of Optometrists'),
(69898, 59152, 'en', 'name', 'Ontario Ginseng Growers Association'),
(69899, 59153, 'en', 'name', 'Swiss Society of Hypertension'),
(69900, 59154, 'en', 'name', 'Korean Association for the Study of Targeted Therapy'),
(69901, 59154, 'ko', 'name', 'ķ‘œģ ģ¹˜ė£Œģ—°źµ¬ķšŒ ź°€ģž…'),
(69902, 59155, 'en', 'name', 'Society for Cardiovascular Angiography and Interventions'),
(69903, 59156, 'en', 'name', 'Turkish Society of Hypertension and Renal Diseases'),
(69904, 59156, 'tr', 'name', 'Türk Hipertansiyon ve Böbrek Hastalıkları Derneği'),
(69905, 59157, 'en', 'name', 'Korean Association of Thyroid and Endocrine Surgeons'),
(69906, 59157, 'ko', 'name', 'ėŒ€ķ•œź°‘ģƒģ„ ė‚“ė¶„ė¹„ģ™øź³¼ķ•™ķšŒ'),
(69907, 59158, 'en', 'name', 'Taiwan Association of Gynecologic Oncologists'),
(69908, 59159, 'en', 'name', 'Korean Glaucoma Society'),
(69909, 59159, 'ko', 'name', 'ķ•œźµ­ė…¹ė‚“ģž„ķ•™ķšŒ'),
(69910, 59160, 'no_lang_code', 'name', 'Population Services International'),
(69911, 59161, 'en', 'name', 'Korean Society of Coloproctology'),
(69912, 59161, 'ko', 'name', 'ėŒ€ķ•œėŒ€ģž„ķ•­ė¬øķ•™ķšŒ'),
(69913, 59162, 'en', 'name', 'Turkish Thoracic Society'),
(69914, 59162, 'tr', 'name', 'Türk Toraks Derneği'),
(69915, 59163, 'en', 'name', 'Taiwan Lung Cancer Society'),
(69916, 59164, 'en', 'name', 'Ontario Rheumatology Association'),
(69917, 59165, 'en', 'name', 'Society for Minimally Invasive Spine Surgery'),
(69918, 59166, 'en', 'name', 'US Apple Association'),
(69919, 59167, 'en', 'name', 'Society For Pediatric Dermatology'),
(69920, 59168, 'en', 'name', 'Taiwan Society of Cardiology'),
(69921, 59169, 'en', 'name', 'Taiwan Society of Thrombosis and Hemostasis'),
(69922, 59170, 'en', 'name', 'Korean Society of Interventional Cardiology'),
(69923, 59170, 'ko', 'name', 'ėŒ€ķ•œģ‹¬ķ˜ˆź“€ģ¤‘ģž¬ķ•™ķšŒ'),
(69924, 59171, 'en', 'name', 'Society for Technology in Anesthesia'),
(69925, 59172, 'fr', 'name', 'France Alzheimer et maladies apparentƩes'),
(69926, 59172, 'en', 'name', 'France Alzheimer''s and related diseases'),
(69927, 59173, 'en', 'name', 'Korean Society of Lipidology and Atherosclerosis'),
(69928, 59173, 'ko', 'name', 'ķ•œźµ­ģ§€ģ§ˆĀ·ė™ė§„ź²½ķ™”ķ•™ķšŒ'),
(69929, 59174, 'en', 'name', 'Society for the Advancement of Blood Management'),
(69930, 59175, 'en', 'name', 'Society for Promoting Participative Ecosystem Management'),
(69931, 59176, 'en', 'name', 'Union Settlement'),
(69932, 59177, 'en', 'name', 'Outpatient Endovascular and Interventional Society'),
(69933, 59178, 'en', 'name', 'Tennessee Physical Therapy Association'),
(69934, 59179, 'en', 'name', 'Society for Vascular Surgery'),
(69935, 59180, 'en', 'name', 'Texas Academy of Family Physicians Foundation'),
(69936, 59181, 'en', 'name', 'Society Hill Reproductive Medicine'),
(69937, 59182, 'en', 'name', 'Texas Physical Therapy Association'),
(69938, 59183, 'en', 'name', 'The Lung Association Saskatchewan'),
(69939, 59184, 'en', 'name', 'Palestinian Family Planning and Protection Association'),
(69940, 59185, 'en', 'name', 'Malaysian Endocrine and Metabolic Society'),
(69941, 59186, 'en', 'name', 'Texas Society of Allied Health Professions'),
(69942, 59187, 'fr', 'name', 'AcadƩmie de Paris'),
(69943, 59188, 'en', 'name', 'Society of Alcoholism and other Addictions'),
(69944, 59189, 'en', 'name', 'Malaysian Oil Scientists and Technologists Association'),
(69945, 59190, 'vi', 'name', 'Hį»™i Tim mįŗ”ch hį»c Việt Nam'),
(69946, 59190, 'en', 'name', 'Vietnam Heart Association'),
(69947, 59191, 'en', 'name', 'Malaysian Society of Anaesthesiologists'),
(69948, 59192, 'en', 'name', 'Thai Dietetic Association'),
(69949, 59193, 'vi', 'name', 'Hį»™i Gastroenterology Việt Nam'),
(69950, 59193, 'en', 'name', 'Vietnam Association of Gastroenterology'),
(69951, 59194, 'en', 'name', 'Alzheimer Society London Middlesex'),
(69952, 59195, 'en', 'name', 'Massage Therapist Association of Alberta'),
(69953, 59196, 'en', 'name', 'Massage Therapists Association of British Columbia'),
(69954, 59197, 'de', 'name', 'Freiwillige Akademische Gesellschaft'),
(69955, 59197, 'en', 'name', 'Voluntary Academic Society'),
(69956, 59198, 'en', 'name', 'Philippine Medical Association'),
(69957, 59199, 'en', 'name', 'Voluntary Health Association of Goa'),
(69958, 59200, 'en', 'name', 'American Professional Society of ADHD and Related Disorders'),
(69959, 59201, 'en', 'name', 'Society of Military Orthopaedic Surgeons'),
(69960, 59202, 'en', 'name', 'Medicon Valley Alliance'),
(69961, 59203, 'en', 'name', 'Society of Musculoskeletal Medicine'),
(69962, 59204, 'en', 'name', 'Medirex Group Academy'),
(69963, 59205, 'en', 'name', 'American Pistachio Growers'),
(69964, 59206, 'en', 'name', 'Western Trauma Association'),
(69965, 59207, 'en', 'name', 'Wisconsin Elks Association'),
(69966, 59208, 'en', 'name', 'Wisconsin Parkinson Association'),
(69967, 59209, 'es', 'name', 'Asociación Mexicana para la Investigación Clínica'),
(69968, 59209, 'en', 'name', 'Mexican Association for the Clinical Research'),
(69969, 59210, 'en', 'name', 'World Molecular Imaging Society'),
(69970, 59211, 'pt', 'name', 'Associação Portuguesa de Fertilidade'),
(69971, 59212, 'pt', 'name', 'Associação Portuguesa de Hemofilia e de outras Coagulopatias Congénitas'),
(69972, 59213, 'en', 'name', 'Somali Association of Arizona'),
(69973, 59214, 'en', 'name', 'Himalayan Rescue Association'),
(69974, 59215, 'en', 'name', 'Prader Willi Syndrome Association'),
(69975, 59216, 'en', 'name', 'Society for Pediatric Anesthesia'),
(69976, 59217, 'en', 'name', 'Primary Care Diabetes Society'),
(69977, 59218, 'da', 'name', 'Psoriasisforeningen'),
(69978, 59219, 'en', 'name', 'South African Society of Anaesthesiologists'),
(69979, 59220, 'de', 'name', 'Schweizerische Ƅrztegesellschaft für Psycholytische Therapie'),
(69980, 59221, 'en', 'name', 'Vascular Society of Southern Africa'),
(69981, 59222, 'en', 'name', 'Medical Group of the Carolinas'),
(69982, 59223, 'en', 'name', 'European Society for Diseases of the Esophagus'),
(69983, 59224, 'es', 'name', 'Asociación Española de Psiquiatría del Niño y el Adolescente'),
(69984, 59225, 'en', 'name', 'Professional Footballers'' Association'),
(69985, 59226, 'en', 'name', 'Family Planning Association of Hong Kong'),
(69986, 59227, 'en', 'name', 'Difficult Airways Society'),
(69987, 59228, 'en', 'name', 'New York Society for the Prevention of Cruelty to Children'),
(69988, 59229, 'es', 'name', 'Sociedad EspaƱola de Cuidados Intensivos PediƔtricos'),
(69989, 59230, 'en', 'name', 'Qatar Diabetes Association'),
(69990, 59231, 'en', 'name', 'Mountain Medicine Society of Nepal'),
(69991, 59232, 'en', 'name', 'Finnish Association of People with Physical Disabilities'),
(69992, 59233, 'es', 'name', 'Sociedad EspaƱola de Endoscopia Digestiva'),
(69993, 59234, 'en', 'name', 'Western Michigan Society of Health Systems Pharmacists'),
(69994, 59235, 'en', 'name', 'Yin Huo Health Association'),
(69995, 59235, 'zh', 'name', 'é“¶ē«å„åŗ·åä¼š'),
(69996, 59236, 'no', 'name', 'Norsk CĆøliakiforening'),
(69997, 59237, 'en', 'name', 'The Radiosurgery Society'),
(69998, 59238, 'en', 'name', 'The Korean Society of Pediatric Hematology-Oncology'),
(69999, 59239, 'es', 'name', 'Sociedad EspaƱola de Cirugƭa PediƔtrica'),
(70000, 59240, 'en', 'name', 'The Society for the Relief of Disabled Children'),
(70001, 59240, 'zh', 'name', 'é¦™ęøÆå¼±čƒ½å…’ē«„č­·åŠ©ęœƒ'),
(70002, 59241, 'en', 'name', 'The Korean Urological Oncology Society'),
(70003, 59241, 'ko', 'name', 'ķ•œźµ­ 비뇨기 종양 ķ•™ķšŒ'),
(70004, 59242, 'en', 'name', 'The Lok Sin Tong Benevolent Society Kowloon'),
(70005, 59242, 'zh', 'name', 'ä¹é¾ęØ‚å–„å ‚'),
(70006, 59243, 'en', 'name', 'The Taiwanese Osteoporosis Association'),
(70007, 59243, 'zh', 'name', 'äø­čÆę°‘åœ‹éŖØč³Ŗē–é¬†ē—‡å­øęœƒ'),
(70008, 59244, 'en', 'name', 'UK Thalassaemia Society'),
(70009, 59245, 'en', 'name', 'Phoenix Society for Burn Survivors'),
(70010, 59246, 'es', 'name', 'Sociedad Española de Periodoncia y Osteointegración'),
(70011, 59247, 'es', 'name', 'Sociedad EspaƱola de Trombosis y Hemostasia'),
(70012, 59248, 'en', 'name', 'Sutherland Society'),
(70013, 59249, 'en', 'name', 'The Korean Academy of Tuberculosis and Respiratory Diseases'),
(70014, 59250, 'en', 'name', 'Sport Medicine Council of Alberta'),
(70015, 59251, 'en', 'name', 'Canadian Heart Research Centre'),
(70016, 59252, 'en', 'name', 'IMMUNOe Research Center'),
(70017, 59253, 'fr', 'name', 'Centre Hospitalier Charles Perrens'),
(70018, 59254, 'en', 'name', 'Canadian VIGOUR Centre'),
(70019, 59255, 'en', 'name', 'Israeli Society for the Prevention of Heart Attacks'),
(70020, 59256, 'en', 'name', 'Island Hospital'),
(70021, 59257, 'en', 'name', '404 General Military Hospital'),
(70022, 59257, 'el', 'name', '404 Ī“ĪµĪ½Ī¹ĪŗĻŒ Ī£Ļ„ĻĪ±Ļ„Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(70023, 59258, 'en', 'name', 'Clinical Research Organization'),
(70024, 59259, 'fr', 'name', 'Centre Hospitalier du Pays d''Aix'),
(70025, 59260, 'en', 'name', 'Cancer Care Specialists of Illinois'),
(70026, 59261, 'ro', 'name', 'Spitalul Clinic Judetean de Urgenta Sibiu'),
(70027, 59262, 'fr', 'name', 'Les HƓpitaux de Chartres'),
(70028, 59263, 'en', 'name', 'Acadia Hospital'),
(70029, 59264, 'fr', 'name', 'Centre Hospitalier RƩgional de Metz-Thionville'),
(70030, 59265, 'no_lang_code', 'name', 'Accurate Clinical Management (United States)'),
(70031, 59266, 'en', 'name', 'KSK Medical'),
(70032, 59267, 'no_lang_code', 'name', 'Accurate Clinical Research (United States)'),
(70033, 59268, 'en', 'name', 'Adam International Hospital'),
(70034, 59269, 'en', 'name', 'Clinical Trial Center Maastricht'),
(70035, 59270, 'en', 'name', 'Adena Regional Medical Center'),
(70036, 59271, 'en', 'name', 'Cancer Center of Western Wisconsin'),
(70037, 59272, 'en', 'name', 'Clinical Trials of South Carolina'),
(70038, 59273, 'fr', 'name', 'Clinique du Pont Saint-Vaast'),
(70039, 59274, 'en', 'name', 'Advanced Radiation Centers of New York'),
(70040, 59275, 'en', 'name', 'Advocate Center for Pediatric Research'),
(70041, 59276, 'fr', 'name', 'Imagerie Médicale et Radiothérapie DrÓme Ardèche'),
(70042, 59277, 'en', 'name', 'Cancer Centers of Southwest Oklahoma'),
(70043, 59278, 'no_lang_code', 'name', 'CM Hospital'),
(70044, 59279, 'fr', 'name', 'Clinique du Sport'),
(70045, 59280, 'no_lang_code', 'name', 'Baoji City Central Hospital'),
(70046, 59280, 'zh', 'name', 'å®éø”åø‚äø­åæƒåŒ»é™¢'),
(70047, 59281, 'no_lang_code', 'name', 'Agunco'),
(70048, 59282, 'en', 'name', 'The Centre of Chinese Medicine'),
(70049, 59283, 'no_lang_code', 'name', 'Baotou Central Hospital'),
(70050, 59283, 'zh', 'name', 'åŒ…å¤“åø‚äø­åæƒåŒ»é™¢'),
(70051, 59284, 'en', 'name', 'Chinese Medical Center'),
(70052, 59285, 'en', 'name', 'Adventist Health Bakersfield'),
(70053, 59286, 'fr', 'name', 'Institut de CancƩrologie de Bourgogne'),
(70054, 59287, 'en', 'name', 'Capital Health Medical Center Hopewell'),
(70055, 59288, 'en', 'name', 'Commonwealth Cancer Center'),
(70056, 59289, 'no_lang_code', 'name', 'Centrexion Therapeutics (United States)'),
(70057, 59290, 'en', 'name', 'Cardiovascular Clinical Science Foundation'),
(70058, 59291, 'pt', 'name', 'Centro Hospitalar do Baixo Vouga'),
(70059, 59292, 'pt', 'name', 'Centro Hospitalar Tondela-Viseu'),
(70060, 59293, 'en', 'name', 'Chaitanya Hospital And Nursing Home'),
(70061, 59294, 'en', 'name', 'Cardiovascular Research Center'),
(70062, 59295, 'en', 'name', 'Alabama Clincal Therapeutics'),
(70063, 59296, 'en', 'name', 'Community Health Center of Franklin County'),
(70064, 59297, 'en', 'name', 'Chang Hua Hospital'),
(70065, 59297, 'zh', 'name', 'č”›ē”Ÿē¦åˆ©éƒØå½°åŒ–é†«é™¢'),
(70066, 59298, 'en', 'name', 'Oncology Hematology Associates of Saginaw Valley'),
(70067, 59299, 'en', 'name', 'Community Hospital of Anaconda'),
(70068, 59300, 'en', 'name', 'Aljazeera Hospital'),
(70069, 59301, 'en', 'name', 'Charlotte Hungerford Hospital'),
(70070, 59302, 'no_lang_code', 'name', 'All Sum Research Center (Canada)'),
(70071, 59303, 'en', 'name', 'Carolinas Center for Advanced Management of Pain'),
(70072, 59304, 'en', 'name', 'Chengdu Women''s and Children''s Central Hospital'),
(70073, 59304, 'zh', 'name', 'ęˆéƒ½åø‚å¦‡å„³å„æē«„äø­åæƒåŒ»é™¢'),
(70074, 59305, 'en', 'name', 'Carson Tahoe Regional Medical Center'),
(70075, 59306, 'no_lang_code', 'name', 'CCM Clinical Research Group (United States)'),
(70076, 59307, 'en', 'name', 'Altru Health System'),
(70077, 59308, 'en', 'name', 'Comprehensive Blood & Cancer Center'),
(70078, 59309, 'en', 'name', 'Behman Hospital'),
(70079, 59310, 'en', 'name', 'Centeno-Schultz Clinic'),
(70080, 59311, 'en', 'name', 'Bendigo Hospital'),
(70081, 59312, 'en', 'name', 'Anchorage and Valley Radiation Therapy Centers'),
(70082, 59313, 'pt', 'name', 'Androfert'),
(70083, 59314, 'en', 'name', 'European Society for Hyperthermic Oncology'),
(70084, 59315, 'en', 'name', 'Center for Child and Family Health'),
(70085, 59316, 'en', 'name', 'CHRISTUS Highland Medical Center'),
(70086, 59317, 'en', 'name', 'Bernstein Clinical Research Center'),
(70087, 59318, 'en', 'name', 'Andros Clinica Day Surgery'),
(70088, 59319, 'en', 'name', 'CHRISTUS St. Frances Cabrini Hospital'),
(70089, 59320, 'en', 'name', 'Anhui Provincial Children''s Hospital'),
(70090, 59320, 'zh', 'name', 'å®‰å¾½ēœå„æē«„åŒ»é™¢'),
(70091, 59321, 'en', 'name', 'Beverly Hills Cancer Center'),
(70092, 59322, 'en', 'name', 'AnMed Health'),
(70093, 59323, 'en', 'name', 'CHRISTUS St. Vincent Regional Cancer Center'),
(70094, 59324, 'en', 'name', 'Annie Penn Hospital'),
(70095, 59325, 'it', 'name', 'Casa di Cura CittĆ  di Roma'),
(70096, 59326, 'en', 'name', 'Berlin Center for Epidemiology and Health Research'),
(70097, 59327, 'en', 'name', 'Clackamas Radiation Oncology Center'),
(70098, 59328, 'en', 'name', 'Big Horn Basin Regional Cancer Center'),
(70099, 59329, 'en', 'name', 'Arkansas Heart Hospital'),
(70100, 59330, 'en', 'name', 'Billings Clinic Cody'),
(70101, 59331, 'no_lang_code', 'name', 'QPS (United States)'),
(70102, 59332, 'en', 'name', 'Coram Clinical Trials'),
(70103, 59333, 'en', 'name', 'Cleveland Sleep Research Center'),
(70104, 59334, 'en', 'name', 'Bloom Fertility Centre'),
(70105, 59335, 'sr', 'name', 'Klinika za Psihijatrijske Bolesti Dr Laza Lazarević'),
(70106, 59336, 'en', 'name', 'Blanchard Valley Health System'),
(70107, 59337, 'en', 'name', 'Armstrong Center for Medicine & Health'),
(70108, 59338, 'fr', 'name', 'Espoir pour la Sante'),
(70109, 59339, 'en', 'name', 'Stormont Vail Health'),
(70110, 59340, 'no_lang_code', 'name', 'QPS (India)'),
(70111, 59341, 'no_lang_code', 'name', 'Twist Bioscience (United States)'),
(70112, 59342, 'en', 'name', 'Scientific Medical School Dr. Synergetic'),
(70113, 59343, 'en', 'name', 'Clinica Gastrobese'),
(70114, 59344, 'en', 'name', 'Arthritis Treatment Center'),
(70115, 59345, 'en', 'name', 'Clinical Alliance for Research and Education-Infectious Diseases'),
(70116, 59346, 'en', 'name', 'Bone and Joint Clinic of Baton Rouge'),
(70117, 59347, 'en', 'name', 'Athens Orthopedic Clinic'),
(70118, 59348, 'en', 'name', 'Borland Groover Clinic'),
(70119, 59349, 'en', 'name', 'Atlantia Food Clinical Trials'),
(70120, 59350, 'en', 'name', 'Center for Neurosciences'),
(70121, 59351, 'en', 'name', 'Center for Atlantic Oral Surgery'),
(70122, 59352, 'no_lang_code', 'name', 'ATP Clinical Research (United States)'),
(70123, 59353, 'en', 'name', 'Atrium Medical Cente'),
(70124, 59354, 'en', 'name', 'Boushahri Clinic'),
(70125, 59355, 'en', 'name', 'Center for Psychiatry and Behavioral Medicine'),
(70126, 59356, 'en', 'name', 'Clinical Pharmacology of Miami'),
(70127, 59357, 'es', 'name', 'Complejo Hospitalario Dr. Arnulfo Arias Madrid'),
(70128, 59358, 'en', 'name', 'Aurora BayCare Medical Center'),
(70129, 59359, 'en', 'name', 'Clinical Research Atlanta'),
(70130, 59360, 'en', 'name', 'Bronx Psychiatric Center'),
(70131, 59361, 'en', 'name', 'Brooklyn Chest Hospital'),
(70132, 59362, 'no_lang_code', 'name', 'Clinical Research Consultants (United States)'),
(70133, 59363, 'en', 'name', 'California Center for Sleep Disorders'),
(70134, 59364, 'en', 'name', 'Genesis Healthcare'),
(70135, 59365, 'es', 'name', 'Centro de ImplantologĆ­a CirugĆ­a Oral y Maxilofacial'),
(70136, 59366, 'en', 'name', 'ProHealth Care'),
(70137, 59367, 'en', 'name', 'Aurora Medical Center in Summit'),
(70138, 59368, 'en', 'name', 'Damascus Hospital'),
(70139, 59368, 'ar', 'name', 'مستؓفى ŲÆŁ…Ų“Ł‚'),
(70140, 59369, 'en', 'name', 'Centerpoint Medical Center'),
(70141, 59370, 'no_lang_code', 'name', 'Dar AlMaraa Center'),
(70142, 59371, 'en', 'name', 'Central Vermont Medical Center'),
(70143, 59372, 'en', 'name', 'Delaware Clinical & Laboratory Physicians'),
(70144, 59373, 'en', 'name', 'Delos Clinical'),
(70145, 59374, 'en', 'name', 'Delray Medical Center'),
(70146, 59375, 'en', 'name', 'Alberta Hip and Knee Clinic'),
(70147, 59376, 'en', 'name', 'Moriggia Pelascini Hospital'),
(70148, 59376, 'it', 'name', 'Ospedale Moriggia Pelascini'),
(70149, 59377, 'en', 'name', 'Riyadh Fertility and Reproductive Health Center'),
(70150, 59377, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ų±ŁŠŲ§Ų¶ للصحة Ų§Ł„Ų§Ł†Ų¬Ų§ŲØŁŠŲ©'),
(70151, 59378, 'en', 'name', 'Deyang Stomatological Hospital'),
(70152, 59378, 'zh', 'name', 'å¾·é˜³å£č…”åŒ»é™¢'),
(70153, 59379, 'fr', 'name', 'Centre d''Etudes et de Recherches pour l''Intensification du Traitement du DiabĆØte'),
(70154, 59380, 'no_lang_code', 'name', 'Shahid Kamyab Hospital');
INSERT INTO `ror_settings` VALUES
(70155, 59380, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ Ś©Ų§Ł…ŪŒŲ§ŲØ'),
(70156, 59381, 'en', 'name', 'Marshfield Clinic Weston Center'),
(70157, 59382, 'no_lang_code', 'name', 'Eminence Clinical Research (United States)'),
(70158, 59383, 'nl', 'name', 'Dianet'),
(70159, 59384, 'en', 'name', 'Digestive Health Center of Louisiana'),
(70160, 59385, 'en', 'name', 'Emory University Orthopaedics and Spine Hospital'),
(70161, 59386, 'no_lang_code', 'name', 'Empire Clinical Research (United States)'),
(70162, 59387, 'it', 'name', 'Centro Medicina della Riproduzione'),
(70163, 59388, 'en', 'name', 'Doctors Hospital at Renaissance'),
(70164, 59389, 'en', 'name', 'Doctors Without Borders'),
(70165, 59389, 'fr', 'name', 'Médecins Sans Frontières'),
(70166, 59390, 'en', 'name', 'Fuzhou Pulmonary Hospital of Fujian'),
(70167, 59391, 'en', 'name', 'eSwiss Medical and Surgical Center'),
(70168, 59392, 'en', 'name', 'University Hospitals Geauga Medical Center'),
(70169, 59393, 'no_lang_code', 'name', 'Ethica (Canada)'),
(70170, 59394, 'en', 'name', 'Euromedic'),
(70171, 59395, 'en', 'name', 'Holy Family Memorial Hospital'),
(70172, 59396, 'en', 'name', 'Cardiovascular European Research Center'),
(70173, 59397, 'en', 'name', 'General Hospital of Filiates'),
(70174, 59397, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ – Κ.Ī„. Ī¦Ī¹Ī»Ī¹Ī±Ļ„ĻŽĪ½'),
(70175, 59398, 'en', 'name', 'Hong Kong Eye Hospital'),
(70176, 59398, 'zh', 'name', 'é¦™ęøÆēœ¼ē§‘é†«é™¢'),
(70177, 59399, 'en', 'name', 'Evergreen General Hospital'),
(70178, 59400, 'en', 'name', 'Hope Cancer Clinic'),
(70179, 59401, 'de', 'name', 'Tauern Hospital Zell am See'),
(70180, 59402, 'en', 'name', 'Eye Center of North Florida'),
(70181, 59403, 'en', 'name', 'Genesee Cancer & Blood Disease'),
(70182, 59404, 'en', 'name', 'Hope Women''s Cancer Centers'),
(70183, 59405, 'en', 'name', 'Genuine Research Center'),
(70184, 59406, 'en', 'name', 'Tidelands Health'),
(70185, 59407, 'pt', 'name', 'Hospital Alvorada'),
(70186, 59408, 'de', 'name', 'Deutsches Zentrum für Musiktherapieforschung'),
(70187, 59409, 'pt', 'name', 'Hospital Ana Nery'),
(70188, 59410, 'pt', 'name', 'Hospital Beatriz Ƃngelo'),
(70189, 59411, 'fr', 'name', 'Centre Hospitalier d''AngoulĆŖme'),
(70190, 59412, 'no_lang_code', 'name', 'Global BioClinical (United States)'),
(70191, 59413, 'en', 'name', 'Good Samaritan Hospital'),
(70192, 59414, 'en', 'name', 'Kennedy Clinic Hospital'),
(70193, 59415, 'es', 'name', 'Hospital Comarcal de Inca'),
(70194, 59416, 'pt', 'name', 'CUF Porto Hospital'),
(70195, 59417, 'en', 'name', 'Grandview Medical Center'),
(70196, 59418, 'en', 'name', 'Graves Gilbert Clinic'),
(70197, 59419, 'en', 'name', 'Great Falls Clinic'),
(70198, 59420, 'en', 'name', 'Great Lakes Cancer Management Specialists'),
(70199, 59421, 'en', 'name', 'Great Lakes Clinical Trials'),
(70200, 59422, 'pt', 'name', 'Hospital de Messejana'),
(70201, 59423, 'en', 'name', 'Great Plains Regional Medical Center'),
(70202, 59424, 'en', 'name', 'Fertility Centers of Illinois'),
(70203, 59425, 'es', 'name', 'Hospital de Nens de Barcelona'),
(70204, 59426, 'en', 'name', 'Florida Academic Dermatology Center'),
(70205, 59427, 'en', 'name', 'Greater Regional Medical Center'),
(70206, 59428, 'en', 'name', 'St. Mary''s Hospital Medical Center'),
(70207, 59429, 'en', 'name', 'Group Health Centre'),
(70208, 59430, 'es', 'name', 'Hospital El Escorial'),
(70209, 59431, 'pt', 'name', 'Hospital Ernesto Dornelles'),
(70210, 59432, 'en', 'name', 'Footscray Hospital'),
(70211, 59433, 'fr', 'name', 'Groupe Hospitalier de la RƩgion de Mulhouse et Sud Alsace'),
(70212, 59434, 'pt', 'name', 'Hospital Estadual Centra'),
(70213, 59435, 'en', 'name', 'Forbes Hospital'),
(70214, 59436, 'es', 'name', 'Hospital Pedro de Elizalde'),
(70215, 59437, 'en', 'name', 'Fortius Clinic'),
(70216, 59438, 'fr', 'name', 'Groupe Hospitalier Diaconesses Croix Saint-Simon'),
(70217, 59439, 'es', 'name', 'Hospital de Guadarrama'),
(70218, 59440, 'en', 'name', 'Guangdong 999 Brain Hospital'),
(70219, 59440, 'zh', 'name', '广东999č„‘ē§‘åŒ»é™¢'),
(70220, 59441, 'es', 'name', 'Hospital Regional de Concepción'),
(70221, 59442, 'es', 'name', 'Hospital Dr. Gustavo Fricke'),
(70222, 59443, 'pt', 'name', 'Hospital Infantil Albert Sabin'),
(70223, 59444, 'en', 'name', 'NEA Baptist Memorial Hospital'),
(70224, 59445, 'en', 'name', 'Ruikang Affiliated Hospital of Guangxi Medical University'),
(70225, 59445, 'zh', 'name', 'å¹æč„æäø­åŒ»čÆå¤§å­¦é™„å±žē‘žåŗ·åŒ»é™¢'),
(70226, 59446, 'es', 'name', 'Hospital General Mateu Orfila'),
(70227, 59447, 'en', 'name', 'Gwinnett Medical Center'),
(70228, 59448, 'es', 'name', 'Hospital HLA MediterrƔneo'),
(70229, 59449, 'en', 'name', 'Firma Clinical Research'),
(70230, 59450, 'en', 'name', 'US Cancer Management Corporation'),
(70231, 59451, 'pt', 'name', 'Hospital OrtopƩdico de Passo Fundo'),
(70232, 59452, 'en', 'name', 'Hand and Upper Limb Clinic'),
(70233, 59453, 'pt', 'name', 'Hospital Pitangueiras'),
(70234, 59454, 'no_lang_code', 'name', 'Hanzhong Central Hospital'),
(70235, 59454, 'zh', 'name', 'ę±‰äø­åø‚äø­åæƒåŒ»é™¢'),
(70236, 59455, 'es', 'name', 'Hospital Plató'),
(70237, 59456, 'en', 'name', 'Fuling Center Hospital of Chongqing'),
(70238, 59456, 'zh', 'name', 'é‡åŗ†åø‚ę¶Ŗé™µäø­åæƒåŒ»é™¢'),
(70239, 59457, 'en', 'name', 'Hattiesburg Clinic'),
(70240, 59458, 'es', 'name', 'Hospitales Regionales de Alta Especialidad'),
(70241, 59459, 'pt', 'name', 'Hospital Regional de Presidente Prudente'),
(70242, 59460, 'en', 'name', 'Healthpoint'),
(70243, 59461, 'pt', 'name', 'Hospital Regional Publico do Araguaia'),
(70244, 59462, 'pt', 'name', 'Hospital Risoleta Tolentino Neves'),
(70245, 59463, 'es', 'name', 'Hospital San Juan de la Cruz'),
(70246, 59464, 'es', 'name', 'Hospital Universitari de Santa Maria'),
(70247, 59465, 'en', 'name', 'Hebei Yiling Hospital'),
(70248, 59466, 'pt', 'name', 'Hospital SĆ£o Domingos'),
(70249, 59467, 'no_lang_code', 'name', 'Imam Abdulrahman Al Faisal Hospital'),
(70250, 59468, 'de', 'name', 'Helios UniversitƤtsklinikum Wuppertal'),
(70251, 59469, 'pt', 'name', 'Hospital São José do Avaí'),
(70252, 59470, 'en', 'name', 'Hematology\\Oncology Clinic'),
(70253, 59471, 'pt', 'name', 'Hospital TotalCor'),
(70254, 59472, 'en', 'name', 'Henry Ford Macomb Hospital'),
(70255, 59473, 'de', 'name', 'Hernienzentrum Rottenburg am Neckar'),
(70256, 59474, 'es', 'name', 'Hospital Viamed Valvanera'),
(70257, 59475, 'es', 'name', 'Hospitales Nisa'),
(70258, 59476, 'en', 'name', 'Inner Mongolia International Mongolian Hospital'),
(70259, 59476, 'zh', 'name', 'å†…č’™å¤å›½é™…č’™åŒ»é™¢å®˜ē½‘'),
(70260, 59477, 'en', 'name', 'Hillcrest Hospital'),
(70261, 59478, 'en', 'name', 'Houston Methodist Sugar Land Hospital'),
(70262, 59479, 'en', 'name', 'Innovation Research Center'),
(70263, 59480, 'en', 'name', 'HSHS St. Nicholas Hospital'),
(70264, 59481, 'no_lang_code', 'name', 'Hiroshima Kyoritsu Hospital'),
(70265, 59481, 'ja', 'name', 'åŗƒå³¶å…±ē«‹ē—…é™¢'),
(70266, 59482, 'en', 'name', 'Inspira Medical Center Vineland'),
(70267, 59483, 'en', 'name', 'Inspira Medical Center Woodbury'),
(70268, 59484, 'en', 'name', 'Humanity & Health'),
(70269, 59485, 'en', 'name', 'Integrative Clinical Trials'),
(70270, 59486, 'en', 'name', 'Jingzhou Central Hospital'),
(70271, 59486, 'zh', 'name', 'č†å·žåø‚äø­åæƒåŒ»é™¢'),
(70272, 59487, 'el', 'name', 'Iakentro'),
(70273, 59488, 'fr', 'name', 'HƓpital d''Instruction des ArmƩes Clermont-Tonnerre'),
(70274, 59489, 'en', 'name', 'JosƩ R. Reyes Memorial Medical Center'),
(70275, 59490, 'en', 'name', 'Mack Eye Center'),
(70276, 59491, 'en', 'name', 'Magrabi Hospitals and Centers'),
(70277, 59492, 'en', 'name', 'Kadlec Clinic'),
(70278, 59493, 'en', 'name', 'Main Line Center for Laser Surgery'),
(70279, 59494, 'en', 'name', 'Kaiping Central Hospital'),
(70280, 59494, 'zh', 'name', 'å¼€å¹³åø‚äø­åæƒåŒ»é™¢'),
(70281, 59495, 'en', 'name', 'Main Line Fertility'),
(70282, 59496, 'en', 'name', 'Kaiser Permanente Vacaville Medical Center'),
(70283, 59497, 'en', 'name', 'International Clinic of Rehabilitation'),
(70284, 59498, 'en', 'name', 'Kaiser Permanente Tysons Corner Medical Center'),
(70285, 59499, 'en', 'name', 'International Spine, Pain & Performance'),
(70286, 59500, 'en', 'name', 'Kaiser Permanente Burke Medical Center'),
(70287, 59501, 'en', 'name', 'Kaiser Permanente Capitol Hill Medical Center'),
(70288, 59502, 'en', 'name', 'Kaiser Permanente Gaithersburg Medical Center'),
(70289, 59503, 'en', 'name', 'Iowa Lutheran Hospital'),
(70290, 59504, 'en', 'name', 'Kaiser Permanente Rancho Cordova Medical Offices'),
(70291, 59505, 'en', 'name', 'Manhattan Psychiatric Center'),
(70292, 59506, 'en', 'name', 'Kaiser Permanente Woodlawn Medical Center'),
(70293, 59507, 'en', 'name', 'Kalispell Regional Medical Center'),
(70294, 59508, 'en', 'name', 'University Hospitals Landerbrook Health Center'),
(70295, 59509, 'en', 'name', 'Rwanda Military Hospital'),
(70296, 59510, 'en', 'name', 'Israel Sports Center for the Disabled'),
(70297, 59510, 'he', 'name', '×ž×Ø×›×– ×”×”×¤×•×Ø×˜ לנכים ×‘×™×©×Ø××œ'),
(70298, 59511, 'en', 'name', 'Pardee Hospital'),
(70299, 59512, 'it', 'name', 'Istituto Clinico Sant''Ambrogio'),
(70300, 59513, 'en', 'name', 'IVI Middle East Fertility Clinic'),
(70301, 59514, 'tr', 'name', 'Ɩzel Ankara Umut Hastanesi'),
(70302, 59515, 'en', 'name', 'Maria Parham Hospital'),
(70303, 59516, 'en', 'name', 'Jackson-Madison County General Hospital'),
(70304, 59517, 'en', 'name', 'Jacksonville Center for Clinical Research'),
(70305, 59518, 'en', 'name', 'Key-Whitman Eye Center'),
(70306, 59519, 'de', 'name', 'Marienhospital Osnabrück'),
(70307, 59520, 'en', 'name', 'Kim''s Eye Hospital'),
(70308, 59520, 'ko', 'name', 'é‡‘ēœ¼ē§‘ē—…é™¢'),
(70309, 59521, 'en', 'name', 'Vidant Beaufort Hospital'),
(70310, 59522, 'da', 'name', 'Kong Christian X''s Gigthospital'),
(70311, 59523, 'en', 'name', 'King''s Daughters Medical Center'),
(70312, 59524, 'en', 'name', 'Jefferson County Health Center'),
(70313, 59525, 'en', 'name', 'KKT Orthopedic Spine Center'),
(70314, 59526, 'en', 'name', 'Jefferson Hospital'),
(70315, 59527, 'en', 'name', 'Marshfield Clinic'),
(70316, 59528, 'en', 'name', 'Knox Community Hospital'),
(70317, 59529, 'en', 'name', 'Maruyama Memorial General Hospital'),
(70318, 59529, 'ja', 'name', 'äøøå±±čØ˜åæµē·åˆē—…é™¢'),
(70319, 59530, 'en', 'name', 'Japan Clinical Cancer Research Organization'),
(70320, 59530, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗ ę—„ęœ¬ćŒć‚“č‡ØåŗŠč©¦éØ“ęŽØé€²ę©Ÿę§‹'),
(70321, 59531, 'en', 'name', 'Methodist West Hospital'),
(70322, 59532, 'no_lang_code', 'name', 'Mianyang Central Hospital'),
(70323, 59532, 'zh', 'name', 'ē»µé˜³åø‚äø­åæƒåŒ»é™¢'),
(70324, 59533, 'en', 'name', 'Mary Greeley Medical Center'),
(70325, 59534, 'en', 'name', 'Microclinic International'),
(70326, 59535, 'en', 'name', 'Korea National Enterprise for Clinical Trials'),
(70327, 59535, 'ko', 'name', 'ķ•œźµ­ģž„ģƒģ‹œķ—˜ģ‚°ģ—…ė³øė¶€'),
(70328, 59536, 'en', 'name', 'Catalan Society of Family and Community Medicine'),
(70329, 59537, 'en', 'name', 'Mary Washington Hospital'),
(70330, 59538, 'en', 'name', 'MidMichigan Medical Center - Midland'),
(70331, 59539, 'en', 'name', 'Midstate Medical Center'),
(70332, 59540, 'en', 'name', 'VA National Center of Oncology after Fanarjyan'),
(70333, 59540, 'hy', 'name', 'Վ.Ō±. Õ–Õ”Õ¶Õ”Ö€Õ»ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ուռուցքՔբՔնությՔն Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(70334, 59541, 'no', 'name', 'Kristiansund Sykehus'),
(70335, 59542, 'no_lang_code', 'name', 'MB Clinical Research and Consulting (United States)'),
(70336, 59543, 'en', 'name', 'Kuala Lumpur Sports Medicine Centre'),
(70337, 59544, 'en', 'name', 'Foshan Maternity and Child Health Care Hospital'),
(70338, 59544, 'zh', 'name', 'ä½›å±±åø‚å¦‡å¹¼äæå„é™¢'),
(70339, 59545, 'no_lang_code', 'name', 'Kunming Tongren Hospital'),
(70340, 59545, 'zh', 'name', 'ę˜†ę˜ŽåŒä»åŒ»é™¢'),
(70341, 59546, 'es', 'name', 'Maternal Perinatal Hospital Mónica Pretelini'),
(70342, 59547, 'en', 'name', 'Nebraska Cancer Research Center'),
(70343, 59548, 'en', 'name', 'Los Angeles Clinical Trials'),
(70344, 59549, 'en', 'name', 'Lake Huron Medical Center'),
(70345, 59550, 'en', 'name', 'Southeast Radiation Oncology Group'),
(70346, 59551, 'en', 'name', 'Lakeland Community Hospital'),
(70347, 59552, 'en', 'name', 'Neuro Pain Medical Center'),
(70348, 59553, 'en', 'name', 'Lakeview Hospital'),
(70349, 59554, 'en', 'name', 'Larue Carter Hospital'),
(70350, 59555, 'id', 'name', 'Rumah Sakit Umum Haji Surabaya'),
(70351, 59556, 'en', 'name', 'NeuroVita Clinic'),
(70352, 59556, 'ru', 'name', 'Клиника ŠŠµŠ¹Ń€Š¾Š²ŠøŃ‚а'),
(70353, 59557, 'en', 'name', 'Smilow Cancer Hospital Care Center'),
(70354, 59558, 'en', 'name', 'McNeel Eye Center'),
(70355, 59559, 'en', 'name', 'Legacy Meridian Park Medical Center'),
(70356, 59560, 'en', 'name', 'Legacy Mount Hood Medical Center'),
(70357, 59561, 'en', 'name', 'Legacy Salmon Creek Medical Center'),
(70358, 59562, 'en', 'name', 'Lehigh Center for Clinical Research'),
(70359, 59563, 'de', 'name', 'Medalp Imst - Zentrum für ambulante Chirurgie Betriebs'),
(70360, 59564, 'en', 'name', 'Geisinger Lewistown Hospital'),
(70361, 59565, 'no_lang_code', 'name', 'Worldwide Clinical Trials (United States)'),
(70362, 59566, 'no_lang_code', 'name', 'Lianyungang Oriental Hospital'),
(70363, 59566, 'zh', 'name', 'čæžäŗ‘ęøÆåø‚äøœę–¹åŒ»é™¢'),
(70364, 59567, 'en', 'name', 'Lifecenter Hospital'),
(70365, 59568, 'de', 'name', 'Medizinisches Versorgungszentrum Prof. Mathey, Prof. Schofer'),
(70366, 59569, 'en', 'name', 'Lindner Center of HOPE'),
(70367, 59570, 'az', 'name', 'Akademik Zərifə ʏliyeva adına Milli Oftalmologiya Mərkəzi'),
(70368, 59571, 'en', 'name', 'Medical Center of South Arkansas'),
(70369, 59572, 'en', 'name', 'Linear Clinical Research'),
(70370, 59573, 'en', 'name', 'London Vision Clinic'),
(70371, 59574, 'en', 'name', 'Lung Center of the Philippines'),
(70372, 59575, 'en', 'name', 'Melbourne Sexual Health Centre'),
(70373, 59576, 'de', 'name', 'Lungenklinik Hemer'),
(70374, 59577, 'en', 'name', 'Memorial Hermann Memorial City Medical Center'),
(70375, 59578, 'en', 'name', 'Centra Health'),
(70376, 59579, 'en', 'name', 'Fairbanks Memorial Hospital'),
(70377, 59580, 'en', 'name', 'Memorial Hospital of Carbondale'),
(70378, 59581, 'en', 'name', 'Noran Neurological Clinic'),
(70379, 59582, 'en', 'name', 'Sovah Health Martinsville'),
(70380, 59583, 'fr', 'name', 'Centre de fertilitƩ d''Ottawa'),
(70381, 59583, 'en', 'name', 'Ottawa Fertility Centre'),
(70382, 59584, 'en', 'name', 'Memorial Sisli Hospital'),
(70383, 59585, 'en', 'name', 'Ottumwa Regional Health Center'),
(70384, 59586, 'fr', 'name', 'Etablissements de SantƩ Mentale'),
(70385, 59587, 'en', 'name', 'Northeast Center for Rehabilitation and Brain Injury'),
(70386, 59588, 'en', 'name', 'UC Irvine Health'),
(70387, 59589, 'en', 'name', 'Pacific Centre for Reproductive Medicine'),
(70388, 59590, 'en', 'name', 'Northeast Radiation Oncology Center'),
(70389, 59591, 'en', 'name', 'Pacific Fertility Center'),
(70390, 59592, 'en', 'name', 'Northern California Melanoma Center'),
(70391, 59593, 'en', 'name', 'Pain Cure Center'),
(70392, 59594, 'en', 'name', 'McFarland Clinic - Boone'),
(70393, 59595, 'en', 'name', 'Pali Momi Medical Center'),
(70394, 59596, 'en', 'name', 'McFarland Clinic - Jefferson'),
(70395, 59597, 'en', 'name', 'CHI Health Mercy Council Bluffs'),
(70396, 59598, 'en', 'name', 'McFarland Clinic - Marshalltown'),
(70397, 59599, 'en', 'name', 'McFarland Clinic - Fort Dodge'),
(70398, 59600, 'en', 'name', 'Palm Beach Neurological Center'),
(70399, 59601, 'en', 'name', 'Northwest Cancer Clinic'),
(70400, 59602, 'en', 'name', 'Pamoja Tunaweza Women''s Centre'),
(70401, 59603, 'en', 'name', 'Mercy Hospital Springfield'),
(70402, 59604, 'en', 'name', 'Pan Am Clinic'),
(70403, 59605, 'en', 'name', 'Mercy Regional Medical Center'),
(70404, 59606, 'en', 'name', 'Paoli Hospital'),
(70405, 59607, 'en', 'name', 'Northwestern Medicine Lake Forest Hospital'),
(70406, 59608, 'en', 'name', 'Merrion Fertility Clinic'),
(70407, 59609, 'en', 'name', 'Methodist Children’s Hospital'),
(70408, 59610, 'en', 'name', 'Parker Adventist Hospital'),
(70409, 59611, 'pl', 'name', 'Samodzielny Publiczny Szpital Specjalistyczny Chorób Płuc im. dr O. Sokołowskiego'),
(70410, 59612, 'en', 'name', 'Rocky Mountain Multiple Sclerosis Clinic'),
(70411, 59613, 'en', 'name', 'Parkland Health Center'),
(70412, 59614, 'en', 'name', 'Parkview Hospital Randallia'),
(70413, 59615, 'no_lang_code', 'name', 'Novindiet Clinic'),
(70414, 59616, 'en', 'name', 'City Clinical Hospital No. 2'),
(70415, 59616, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š‘Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 2'),
(70416, 59617, 'en', 'name', 'Rogers Behavioral Health'),
(70417, 59618, 'en', 'name', 'Rogue Regional Medical Center'),
(70418, 59619, 'no_lang_code', 'name', 'Rose Research Center (United States)'),
(70419, 59620, 'en', 'name', 'Nutrition Center of the Philippines'),
(70420, 59621, 'en', 'name', 'Radiation Oncology Centers of Nevada'),
(70421, 59622, 'en', 'name', 'Peninsula Cancer Center'),
(70422, 59623, 'ru', 'name', '9-я клиника Минска'),
(70423, 59623, 'en', 'name', '9th City Clinical Hospital'),
(70424, 59624, 'en', 'name', 'Running Injury Clinic'),
(70425, 59625, 'en', 'name', 'Randolph Health'),
(70426, 59626, 'en', 'name', 'Pen Bay Medical Center'),
(70427, 59627, 'en', 'name', 'Ophtalmological Center After S.V.Malayan'),
(70428, 59628, 'en', 'name', 'Sacred Heart Hospital'),
(70429, 59629, 'en', 'name', 'Phoenixville Hospital'),
(70430, 59630, 'en', 'name', 'OhioHealth Mansfield Hospital'),
(70431, 59631, 'en', 'name', 'Olathe Medical Center'),
(70432, 59632, 'en', 'name', 'RSUD Prof. Dr. Saiful Anwar Malang'),
(70433, 59633, 'en', 'name', 'St. Agnes Hospital'),
(70434, 59634, 'en', 'name', 'Physicians'' Clinic of Iowa'),
(70435, 59635, 'en', 'name', 'Academic Alliance in Dermatology'),
(70436, 59636, 'en', 'name', 'Olympic Medical Center'),
(70437, 59637, 'en', 'name', 'SOUSEIKAI Global Clinical Research Center'),
(70438, 59638, 'en', 'name', 'Saint Alphonsus Health System'),
(70439, 59639, 'en', 'name', 'UPMC Central Pa'),
(70440, 59640, 'no_lang_code', 'name', 'Oliak Center'),
(70441, 59641, 'en', 'name', 'Saint Alphonsus Medical Center'),
(70442, 59642, 'no_lang_code', 'name', 'Hospital Pitas'),
(70443, 59643, 'en', 'name', 'Sanford Broadway Medical Center'),
(70444, 59644, 'en', 'name', 'Saint Alphonsus Medical Center'),
(70445, 59645, 'en', 'name', 'Saint Alphonsus Medical Center'),
(70446, 59646, 'en', 'name', 'Lehigh Valley Hospital-Pocono'),
(70447, 59647, 'en', 'name', 'Patras Olympian Hospital'),
(70448, 59647, 'el', 'name', 'ĪŸĪ»ĻĪ¼Ļ€Ī¹ĪæĪ½ Ī˜ĪµĻĪ±Ļ€ĪµĻ…Ļ„Ī®ĻĪ¹Īæ Πάτρας'),
(70449, 59648, 'fr', 'name', 'Clinique Mutualiste de l''Estuaire'),
(70450, 59649, 'en', 'name', 'Sanford Health'),
(70451, 59650, 'en', 'name', 'Omid Fertility Clinic'),
(70452, 59650, 'fa', 'name', 'Ś©Ł„ŪŒŁ†ŪŒŚ© باروری Ų§Ł…ŪŒŲÆ'),
(70453, 59651, 'es', 'name', 'Policlinica Metropolitana'),
(70454, 59652, 'en', 'name', 'Mount Carmel St. Ann''s'),
(70455, 59653, 'en', 'name', 'MISH Hospital and Clinics'),
(70456, 59654, 'en', 'name', 'St. Anthony Hospital'),
(70457, 59655, 'en', 'name', 'St. Catherine Hospital'),
(70458, 59656, 'en', 'name', 'Portsmouth Regional Hospital'),
(70459, 59657, 'en', 'name', 'Ontario Clinical Oncology Group'),
(70460, 59658, 'en', 'name', 'Jon J van Rood Centre for Clinical Transfusion Research'),
(70461, 59659, 'en', 'name', 'Presbyterian Kaseman Hospital'),
(70462, 59660, 'en', 'name', 'Presbyterian Rust Medical Center'),
(70463, 59661, 'en', 'name', 'Optimus Clinical Research'),
(70464, 59662, 'no_lang_code', 'name', 'Sapporo Higashi Tokushukai Hospital'),
(70465, 59662, 'ja', 'name', 'ęœ­å¹Œę±ę€„ē™¾č²Øåŗ—'),
(70466, 59663, 'en', 'name', 'Rasool Akram Hospital'),
(70467, 59663, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų­Ų¶Ų±ŲŖ Ų±Ų³ŁˆŁ„ اکرم'),
(70468, 59664, 'en', 'name', 'Missouri Baptist Sullivan Hospital'),
(70469, 59665, 'en', 'name', 'Saud Al-babtain Cardiac Centre'),
(70470, 59665, 'ar', 'name', 'Ł…Ų±ŁƒŲ² سعود Ų§Ł„ŲØŲ§ŲØŲ·ŁŠŁ† للقلب'),
(70471, 59666, 'en', 'name', 'Saviour Hospital'),
(70472, 59667, 'en', 'name', 'St. Francis Regional Medical Center'),
(70473, 59668, 'nl', 'name', 'Revalidatieziekenhuis RevArte'),
(70474, 59669, 'en', 'name', 'Moorabbin Hospital'),
(70475, 59670, 'no_lang_code', 'name', 'Clinic Asklepio Larissa'),
(70476, 59670, 'el', 'name', 'Ī˜ĪµĻĪ±Ļ€ĪµĻ…Ļ„Ī®ĻĪ¹Īæ Ī‘ĻƒĪŗĪ»Ī·Ļ€Ī¹ĪµĪÆĪæ Ī›Ī¬ĻĪ¹ĻƒĪ±Ļ‚ ΕΠΕ'),
(70477, 59671, 'de', 'name', 'Rehaklinik Zihlschlacht'),
(70478, 59672, 'de', 'name', 'Schƶn Klinik Bad Aibling'),
(70479, 59673, 'en', 'name', 'Schwartz Laser Eye Center'),
(70480, 59674, 'en', 'name', 'St. James Healthcare'),
(70481, 59675, 'no_lang_code', 'name', 'Procare Riaya Hospital'),
(70482, 59675, 'ar', 'name', 'مستؓفى بروكار ريايا'),
(70483, 59676, 'en', 'name', 'Mon Health Medical Center'),
(70484, 59677, 'en', 'name', 'Prostate Cancer Clinical Trials Consortium'),
(70485, 59678, 'en', 'name', 'Providence Holy Cross Medical Center'),
(70486, 59679, 'en', 'name', 'Providence Regional Medical Center Everett'),
(70487, 59680, 'en', 'name', 'Mercy Clinic Cancer and Hematology'),
(70488, 59681, 'en', 'name', 'Retina Clinic'),
(70489, 59682, 'en', 'name', 'Mount Sinai Rehabilitation Hospital'),
(70490, 59683, 'en', 'name', 'Rice Memorial Hospital'),
(70491, 59684, 'en', 'name', 'Saint Joseph Hospital East'),
(70492, 59685, 'en', 'name', 'Providence Saint Joseph Medical Center'),
(70493, 59686, 'en', 'name', 'Mountain Blue Cancer Care Center'),
(70494, 59687, 'en', 'name', 'Providence Willamette Falls Medical Center'),
(70495, 59688, 'en', 'name', 'OSF St. Joseph Medical Center'),
(70496, 59689, 'en', 'name', 'Sentara Virginia Beach General Hospital'),
(70497, 59690, 'en', 'name', 'Riverton Hospital'),
(70498, 59691, 'en', 'name', 'Mountain Diabetes and Endocrine Center'),
(70499, 59692, 'en', 'name', 'Rochester Center for Behavioral Medicine'),
(70500, 59693, 'en', 'name', 'St. Joseph Mercy Canton'),
(70501, 59694, 'en', 'name', 'Shaanxi Provincial Hospital of Traditional Chinese Medicine'),
(70502, 59695, 'en', 'name', 'SoutheastHEALTH'),
(70503, 59696, 'en', 'name', 'Shafran Gastroenterology Center'),
(70504, 59697, 'en', 'name', 'MultiCare Auburn Medical Center'),
(70505, 59698, 'en', 'name', 'Charlotte Eye Ear Nose & Throat Associates'),
(70506, 59699, 'en', 'name', 'Reproductive Science Medical Center'),
(70507, 59700, 'en', 'name', 'Shahid Gangalal National Heart Centre'),
(70508, 59701, 'no_lang_code', 'name', 'Musculoskeletal Clinical Regulatory Advisers (United States)'),
(70509, 59702, 'en', 'name', 'Southeast Nebraska Cancer Center'),
(70510, 59703, 'fr', 'name', 'Sheikh Ragheb Harb Hospital'),
(70511, 59704, 'en', 'name', 'Southeast Retina Center'),
(70512, 59705, 'en', 'name', 'Shandong Eye Hospital'),
(70513, 59706, 'en', 'name', 'Southeastern Medical Oncology Center'),
(70514, 59707, 'en', 'name', 'Cancer Clinic'),
(70515, 59708, 'es', 'name', 'Nueva Opción'),
(70516, 59709, 'en', 'name', 'Shanghai International Medical Center'),
(70517, 59710, 'en', 'name', 'Swanson Center'),
(70518, 59711, 'en', 'name', 'Southeastern Health'),
(70519, 59712, 'en', 'name', 'St. Luke''s Hospital'),
(70520, 59713, 'en', 'name', 'Saint Luke''s South Hospital'),
(70521, 59714, 'en', 'name', 'St. Mary-Corwin Medical Center'),
(70522, 59715, 'en', 'name', 'Syrentis Clinical Research'),
(70523, 59716, 'en', 'name', 'Sheltering Arms Physical Rehabilitation Centers'),
(70524, 59717, 'en', 'name', 'Southern Cross Fertility & IVF Centre'),
(70525, 59718, 'en', 'name', 'St. Mary Mercy Livonia'),
(70526, 59719, 'en', 'name', 'Southern Ocean Medical Center'),
(70527, 59720, 'en', 'name', 'National Center of Cardiology and Internal Medicine'),
(70528, 59721, 'en', 'name', 'Children’s Hospital at Erlanger'),
(70529, 59722, 'en', 'name', 'Southern Ohio Medical Center'),
(70530, 59723, 'en', 'name', 'St. Mary''s Medical Center'),
(70531, 59724, 'en', 'name', 'Saint Mary''s Regional Medical Center'),
(70532, 59725, 'en', 'name', 'Southwest Regional Wound Care Center'),
(70533, 59726, 'en', 'name', 'Taizhou Fourth People''s Hospital'),
(70534, 59726, 'zh', 'name', 'ęø©å²­åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(70535, 59727, 'en', 'name', 'Tallahassee Orthopedic Clinic'),
(70536, 59728, 'en', 'name', 'Pediatric Hospital of Sinaloa'),
(70537, 59729, 'en', 'name', 'St. Rita''s Medical Center'),
(70538, 59730, 'en', 'name', 'Sparta Cancer Center'),
(70539, 59731, 'en', 'name', 'SingHealth Polyclinics'),
(70540, 59732, 'en', 'name', 'Kirklin Clinic'),
(70541, 59733, 'en', 'name', 'St. Peter''s Hospital'),
(70542, 59734, 'en', 'name', 'June E. Nylen Cancer Center'),
(70543, 59735, 'no_lang_code', 'name', 'Spaulding Clinical Research (United States)'),
(70544, 59736, 'en', 'name', 'Mark H. Zangmeister Cancer Center'),
(70545, 59737, 'en', 'name', 'Sirindhorn National Medical Rehabilitation Institute'),
(70546, 59737, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąøŖąø“ąø£ąø“ąø™ąø˜ąø£ą¹€ąøžąø·ą¹ˆąø­ąøąø²ąø£ąøŸąø·ą¹‰ąø™ąøŸąø¹ąøŖąø”ąø£ąø£ąø–ąø ąø²ąøžąø—ąø²ąø‡ąøąø²ąø£ą¹ąøžąø—ąø¢ą¹Œą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(70547, 59738, 'en', 'name', 'Tennessee Orthopaedic Clinics'),
(70548, 59739, 'en', 'name', 'The Medical Center of Aurora'),
(70549, 59740, 'en', 'name', 'Specialized Arab Hospital'),
(70550, 59740, 'ar', 'name', 'مستؓفى عربي Ł…ŲŖŲ®ŲµŲµ'),
(70551, 59741, 'sv', 'name', 'Ryggkirurgiska Kliniken i StrƤngnƤs'),
(70552, 59742, 'en', 'name', 'Ste. Genevieve County Memorial Hospital'),
(70553, 59743, 'en', 'name', 'Sts. Mary & Elizabeth Hospital'),
(70554, 59744, 'en', 'name', 'Orthopaedic Specialty Clinic'),
(70555, 59745, 'en', 'name', 'Salina Regional Health Center'),
(70556, 59746, 'en', 'name', 'Qinhuangdao Second Hospital'),
(70557, 59747, 'en', 'name', 'Second Hospital of Tangshan'),
(70558, 59748, 'en', 'name', 'UW Cancer Center Johnson Creek'),
(70559, 59749, 'en', 'name', 'Sydney Hernia Specialists Clinic'),
(70560, 59750, 'en', 'name', 'Springfield Clinic'),
(70561, 59751, 'en', 'name', 'Cancer Center of Hawaii'),
(70562, 59752, 'en', 'name', 'Springfield Regional Medical Center'),
(70563, 59753, 'en', 'name', 'The Center for Mind-Body Medicine'),
(70564, 59754, 'en', 'name', 'Woman’s Hospital of Texas'),
(70565, 59755, 'no_lang_code', 'name', 'Shin Nippon Biomedical Laboratories (United States)'),
(70566, 59756, 'en', 'name', 'The Women’s Imaging Center'),
(70567, 59757, 'en', 'name', 'Vachira Phuket Hospital'),
(70568, 59757, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøØąø¹ąø™ąø¢ą¹Œąø§ąøŠąø“ąø£ąø°ąø ąø¹ą¹€ąøą¹‡ąø•'),
(70569, 59758, 'no_lang_code', 'name', 'SocraTec R&D (Germany)'),
(70570, 59759, 'en', 'name', 'Arthritis and Rheumatism Associates'),
(70571, 59760, 'en', 'name', 'Valmontone Hospital'),
(70572, 59761, 'de', 'name', 'St.-Antonius-Hospital Gronau'),
(70573, 59762, 'en', 'name', 'Charleston County''s Department of Alcohol and Other Drug Abuse Services'),
(70574, 59763, 'de', 'name', 'OncoRay'),
(70575, 59764, 'en', 'name', 'Vancouver Clinic'),
(70576, 59765, 'en', 'name', 'Children’s Hospital at TriStar Centennial'),
(70577, 59766, 'no_lang_code', 'name', 'ThedaCare'),
(70578, 59767, 'no_lang_code', 'name', 'Vanderbilt Health'),
(70579, 59768, 'en', 'name', 'Vanderbilt Psychiatric Hospital'),
(70580, 59769, 'en', 'name', 'Asante Three Rivers Medical Center'),
(70581, 59770, 'en', 'name', 'St. Vincent Carmel Hospital'),
(70582, 59771, 'en', 'name', 'The Fifth People’s Hospital of Suzhou'),
(70583, 59771, 'zh', 'name', 'č‹å·žåø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(70584, 59772, 'hr', 'name', 'Opća Bolnica Varaždin'),
(70585, 59773, 'en', 'name', 'Vasan Eye Care Hospital'),
(70586, 59774, 'en', 'name', 'South Jordan Health Center'),
(70587, 59775, 'en', 'name', 'First People''s Hospital of Yuhang District'),
(70588, 59775, 'zh', 'name', 'ę­å·žåø‚ä½™ę­åŒŗē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(70589, 59776, 'en', 'name', 'South Pointe Hospital'),
(70590, 59777, 'en', 'name', 'Fuzhou Second Hospital'),
(70591, 59777, 'zh', 'name', 'ē¦å·žåø‚ē¬¬äŗŒåŒ»é™¢'),
(70592, 59778, 'en', 'name', 'Stanford Health Care'),
(70593, 59779, 'no_lang_code', 'name', 'Tomitahama Hospital'),
(70594, 59780, 'en', 'name', 'Stanger Hospital'),
(70595, 59781, 'no_lang_code', 'name', 'Veeda Clinical Research (India)'),
(70596, 59782, 'en', 'name', 'Toledo Clinic Cancer Center'),
(70597, 59783, 'en', 'name', 'START Clinic'),
(70598, 59784, 'en', 'name', 'Toledo Clinic Cancer Center'),
(70599, 59785, 'en', 'name', 'Chagrin Highlands Health Center'),
(70600, 59786, 'en', 'name', 'Queen Square Radiosurgery Centre'),
(70601, 59787, 'en', 'name', 'Westlake Health Center'),
(70602, 59788, 'en', 'name', 'Memorial Health System'),
(70603, 59789, 'en', 'name', 'Altasciences Clinical Research Vince & Associates'),
(70604, 59790, 'en', 'name', 'Tƶƶlƶ Hospital'),
(70605, 59791, 'en', 'name', 'Suburban Community Hospital'),
(70606, 59792, 'en', 'name', 'Vince Lombardi Cancer Clinic'),
(70607, 59793, 'en', 'name', 'Vince Lombardi Cancer Clinic'),
(70608, 59794, 'en', 'name', 'Vince Lombardi Cancer Clinic'),
(70609, 59795, 'en', 'name', 'Wuhou District People''s Hospital, Chengdu'),
(70610, 59795, 'zh', 'name', 'ęˆéƒ½åø‚ę­¦ä¾ÆåŒŗäŗŗę°‘åŒ»é™¢'),
(70611, 59796, 'en', 'name', 'Virginia Center for Reproductive Medicine'),
(70612, 59797, 'en', 'name', 'West Suburban Medical Center'),
(70613, 59798, 'en', 'name', 'Western Illinois Cancer Treatment Center'),
(70614, 59799, 'en', 'name', 'Trinity Health'),
(70615, 59800, 'en', 'name', 'Uniontown Hospital Radiation Oncology'),
(70616, 59801, 'no_lang_code', 'name', 'Yuli Hospital'),
(70617, 59801, 'zh', 'name', 'ēŽ‰é‡Œé†«é™¢ęœ¬éƒØ'),
(70618, 59802, 'en', 'name', 'Tseung Kwan O Hospital'),
(70619, 59802, 'zh', 'name', 'å°‡č»ę¾³é†«é™¢'),
(70620, 59803, 'nl', 'name', 'Hart voor Research Aalst'),
(70621, 59804, 'en', 'name', 'Yulin Orthopedics Hospital of Chinese and Western Medicine'),
(70622, 59804, 'zh', 'name', 'ēŽ‰ęž—åø‚äø­č„æåŒ»ē»“åˆéŖØē§‘åŒ»é™¢ę˜Æ'),
(70623, 59805, 'en', 'name', 'Upper Valley Medical Center'),
(70624, 59806, 'en', 'name', 'Yuma Oncology Center'),
(70625, 59807, 'en', 'name', 'Williams Plastic Surgery Specialists'),
(70626, 59808, 'en', 'name', 'Zhangzhou Municipal Hospital of Fujian Province'),
(70627, 59808, 'zh', 'name', 'ē¦å»ŗēœę¼³å·žåø‚åŒ»é™¢'),
(70628, 59809, 'en', 'name', 'Women''s Cancer Center of Nevada'),
(70629, 59810, 'en', 'name', 'Valor Health'),
(70630, 59811, 'en', 'name', 'Zhengzhou Children''s Hospital'),
(70631, 59811, 'zh', 'name', 'ę²³å—ēœå„æē«„åŒ»é™¢'),
(70632, 59812, 'en', 'name', 'Bristol Regional Medical Center'),
(70633, 59813, 'en', 'name', 'Zhengzhou City Hospital'),
(70634, 59813, 'zh', 'name', 'éƒ‘å·žåø‚äø­åŒ»é™¢'),
(70635, 59814, 'en', 'name', 'Holston Valley Medical Center'),
(70636, 59815, 'en', 'name', 'Piramal Clinical Research'),
(70637, 59816, 'en', 'name', 'Sheridan Memorial Hospital'),
(70638, 59817, 'en', 'name', 'Japan Petroleum Energy Center'),
(70639, 59817, 'ja', 'name', 'ēŸ³ę²¹ć‚Øćƒćƒ«ć‚®ćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(70640, 59818, 'en', 'name', 'Samsung Life Public Welfare Foundation'),
(70641, 59818, 'ko', 'name', '삼성 ģƒėŖ… 복지 ģž¬ė‹Ø'),
(70642, 59819, 'no_lang_code', 'name', 'Biosearch Life (Spain)'),
(70643, 59820, 'en', 'name', 'Agency for Community Treatment Services'),
(70644, 59821, 'en', 'name', 'Agency for Integrated Care'),
(70645, 59822, 'en', 'name', 'Fatmawati Hospital'),
(70646, 59822, 'id', 'name', 'Rumah Sakit Umum Pusat Fatmawati'),
(70647, 59823, 'en', 'name', 'Psychiatry Region Zealand'),
(70648, 59823, 'da', 'name', 'Psykiatrien Region SjƦlland'),
(70649, 59824, 'en', 'name', 'Northern Area Armed Forces Hospital'),
(70650, 59825, 'en', 'name', 'Ministry of Economy and Finance'),
(70651, 59826, 'en', 'name', 'Intermutualist Agency'),
(70652, 59827, 'en', 'name', 'Bell County Public Health District'),
(70653, 59828, 'no_lang_code', 'name', 'International Drug Agency for Pharmaceutical Industry (Egypt)'),
(70654, 59829, 'en', 'name', 'Capital Health'),
(70655, 59830, 'en', 'name', 'Detroit Area Agency on Aging'),
(70656, 59831, 'en', 'name', 'Ministry of Local Government, Rural Development and Co-operatives'),
(70657, 59831, 'bn', 'name', 'ą¦øą§ą¦„ą¦¾ą¦Øą§€ą¦Æą¦¼ সরকার, ą¦Ŗą¦²ą§ą¦²ą§€ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ও সমবায় ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(70658, 59832, 'de', 'name', 'Knappschaftsklinikum Saar'),
(70659, 59833, 'en', 'name', 'Department of Health & Family Welfare'),
(70660, 59834, 'en', 'name', 'Centre of Excellence for Health, Immunity and Infections'),
(70661, 59835, 'en', 'name', 'Department of Health'),
(70662, 59835, 'tl', 'name', 'Kagawaran ng Kalusugan'),
(70663, 59836, 'en', 'name', 'Maricopa County Department of Public Health'),
(70664, 59837, 'es', 'name', 'ClĆ­nica Diagonal'),
(70665, 59838, 'en', 'name', 'Cnopf Children''s Hospital'),
(70666, 59838, 'de', 'name', 'Cnopf“sche Kinderklinik'),
(70667, 59839, 'en', 'name', 'Community Ministry of Prince George’s County'),
(70668, 59840, 'en', 'name', 'Ministry of Health and Quality of Life'),
(70669, 59841, 'no_lang_code', 'name', 'Vabiotech (Vietnam)'),
(70670, 59842, 'no_lang_code', 'name', 'Eisai (Taiwan)'),
(70671, 59843, 'de', 'name', 'KRH Klinikum Agnes Karll Laatzen'),
(70672, 59844, 'en', 'name', 'Environmental Health'),
(70673, 59845, 'no_lang_code', 'name', '"Hadji Dimitar" Hospital'),
(70674, 59845, 'en', 'name', 'MHAT ā€œHadji Dimitarā€'),
(70675, 59845, 'bg', 'name', 'ŠœŠ‘ŠŠ› "ЄаГжи Š”ŠøŠ¼ŠøŃ‚ŃŠŃ€"'),
(70676, 59846, 'no_lang_code', 'name', 'St.Caridad Hospital'),
(70677, 59847, 'en', 'name', 'Ministry of Health'),
(70678, 59848, 'tr', 'name', 'Erzincan Mengücek Gazi Eğitim ve Araştırma Hastanesi'),
(70679, 59849, 'en', 'name', 'Niger State Ministry of Health'),
(70680, 59850, 'en', 'name', 'Family Service Agency of the Central Coast'),
(70681, 59851, 'en', 'name', 'Ministry for Social Equality'),
(70682, 59851, 'he', 'name', '×”×ž×©×Ø×“ לשוויון חברתי'),
(70683, 59852, 'en', 'name', 'Finnish Medicines Agency Fimea'),
(70684, 59853, 'pl', 'name', 'Uniwersytecki Szpital Kliniczny w Opolu'),
(70685, 59854, 'en', 'name', 'Ministry of Public Health'),
(70686, 59854, 'fa', 'name', 'وزارت ŲµŲ­ŲŖ عامه'),
(70687, 59855, 'en', 'name', 'Finnish Safety and Chemicals Agency'),
(70688, 59855, 'sv', 'name', 'SƤkerhets- och kemikalieverket'),
(70689, 59855, 'fi', 'name', 'Turvallisuus- ja kemikaalivirasto'),
(70690, 59856, 'de', 'name', 'Ministerium für Wirtschaft, Verkehr, Landwirtschaft und Weinbau'),
(70691, 59856, 'en', 'name', 'Ministry of Economy, Transport, Agriculture and Viticulture'),
(70692, 59857, 'en', 'name', 'Florida Department of Citrus'),
(70693, 59858, 'en', 'name', 'Ministry of Education and Skills Development'),
(70694, 59859, 'en', 'name', 'Ministry of Foreign and European Affairs'),
(70695, 59859, 'fr', 'name', 'Ministère des Affaires étrangères et européennes'),
(70696, 59860, 'et', 'name', 'Eesti Siseministeerium'),
(70697, 59860, 'en', 'name', 'Ministry of the Interior'),
(70698, 59861, 'en', 'name', 'Ministry of Tourism, Sport and the Arts'),
(70699, 59862, 'en', 'name', 'Ministry of Foreign Affairs'),
(70700, 59862, 'zh', 'name', 'äø­čÆę°‘åœ‹å¤–äŗ¤éƒØ'),
(70701, 59863, 'en', 'name', 'National Nutrition Agency'),
(70702, 59864, 'en', 'name', 'Osaka Prefectural Government'),
(70703, 59864, 'ja', 'name', '大阪府'),
(70704, 59865, 'fr', 'name', 'Clinique Saint Jean'),
(70705, 59866, 'en', 'name', 'New York City Department for the Aging'),
(70706, 59867, 'en', 'name', 'Ministry of Health'),
(70707, 59868, 'de', 'name', 'Schƶn Klinik Berchtesgadener Land'),
(70708, 59869, 'es', 'name', 'Ministerio de Salud'),
(70709, 59870, 'en', 'name', 'New York City Department of Correction'),
(70710, 59871, 'en', 'name', 'Ministry of Public Health'),
(70711, 59871, 'fr', 'name', 'Ministère de la Santé Publique'),
(70712, 59872, 'en', 'name', 'Ministry of National Health Services Regulation and Coordination'),
(70713, 59872, 'ur', 'name', 'وزارت ŲµŲ­ŲŖā€Žā€Ž'),
(70714, 59873, 'en', 'name', 'Hawaii Department of Human Services'),
(70715, 59874, 'en', 'name', 'Ministry Of Health'),
(70716, 59875, 'it', 'name', 'Ospedale Pediatrico Giovanni XXIII'),
(70717, 59876, 'en', 'name', 'Ministry of Public Health and Social Assistance'),
(70718, 59877, 'de', 'name', 'Johanna-Etienne-Krankenhaus'),
(70719, 59878, 'en', 'name', 'Ministry of Health, Community Development, Gender, Elderly and Children'),
(70720, 59879, 'en', 'name', 'Ministry of Health and Social Welfare'),
(70721, 59880, 'en', 'name', 'The American Legion Department of Wisconsin'),
(70722, 59881, 'en', 'name', 'Redmond Fire Department'),
(70723, 59882, 'en', 'name', 'Ministry of Public Health'),
(70724, 59883, 'no_lang_code', 'name', 'Hennepin County'),
(70725, 59884, 'en', 'name', 'UnaSource Health'),
(70726, 59885, 'en', 'name', 'Beat Nb'),
(70727, 59886, 'en', 'name', 'The Stern Cardiovascular Foundation'),
(70728, 59887, 'en', 'name', 'A Step Ahead Foundation'),
(70729, 59888, 'en', 'name', 'Jack Jablonski BEL13VE in Miracles Foundation'),
(70730, 59889, 'it', 'name', 'Fondazione A.R. Card Onlus'),
(70731, 59890, 'en', 'name', 'Belgian Burn Foundation'),
(70732, 59891, 'en', 'name', 'Foundation for Cardiac Surgery'),
(70733, 59892, 'en', 'name', 'Columbus Ophthalmology Associates'),
(70734, 59893, 'en', 'name', 'Absenger Cancer Education Foundation'),
(70735, 59894, 'en', 'name', 'European Foundation for the Study of Chronic Liver Failure'),
(70736, 59895, 'en', 'name', 'Colombian Foundation Center for Epilepsy and Neurological Diseases'),
(70737, 59895, 'es', 'name', 'Fundacion Centro Colombiano de Epilepsia y en Enfermedades Neurologicas'),
(70738, 59896, 'en', 'name', 'Auto Dealers Caring for Kids Foundation'),
(70739, 59897, 'en', 'name', 'Colorado Springs Osteopathic Foundation'),
(70740, 59898, 'it', 'name', 'Fondazione FADOI'),
(70741, 59899, 'en', 'name', 'Africa Mental Health Foundation'),
(70742, 59900, 'en', 'name', 'Community Eye Care Foundation'),
(70743, 59901, 'en', 'name', 'Aidan Foundation'),
(70744, 59902, 'en', 'name', 'AIDS Healthcare Foundation'),
(70745, 59903, 'en', 'name', 'Community Pharmacy Foundation'),
(70746, 59904, 'en', 'name', 'Foundation for Cardiovascular Biomedical Research and Gene and Cell Therapy'),
(70747, 59905, 'nl', 'name', 'Continentie Stichting Nederland'),
(70748, 59906, 'en', 'name', 'Alana''s Foundation'),
(70749, 59907, 'de', 'name', 'Albert und Barbara von Metzler-Stiftung'),
(70750, 59908, 'en', 'name', 'The Alberta Paraplegic Foundation'),
(70751, 59909, 'no_lang_code', 'name', 'Cool Sorption (Denmark)'),
(70752, 59910, 'en', 'name', 'Brain and Cognition Discovery Foundation'),
(70753, 59911, 'it', 'name', 'Fondazione Farmacogenomica FiorGen'),
(70754, 59912, 'en', 'name', 'Foundation for Spinal Cord Research'),
(70755, 59912, 'fr', 'name', 'Moelle Epinière et Motricité Québec'),
(70756, 59913, 'en', 'name', 'Bridgewater Community Healthcare NHS Foundation Trust'),
(70757, 59914, 'en', 'name', 'Alliance Foundation Trials'),
(70758, 59915, 'en', 'name', 'AlterMed Research Foundation'),
(70759, 59916, 'en', 'name', 'Cure Foundation'),
(70760, 59917, 'en', 'name', 'Alternating Hemiplegia of Childhood Foundation'),
(70761, 59918, 'en', 'name', 'American Foundation for Addiction Research'),
(70762, 59919, 'en', 'name', 'Foundation for Faces of Children'),
(70763, 59920, 'en', 'name', 'American Legion of Iowa Foundation'),
(70764, 59921, 'no_lang_code', 'name', 'Damien Foundation'),
(70765, 59922, 'en', 'name', 'Foundation for Education and Musculoskeletal Research'),
(70766, 59923, 'no_lang_code', 'name', 'Byrraju Foundation'),
(70767, 59924, 'en', 'name', 'De Cavel Family SIDS Foundation'),
(70768, 59925, 'en', 'name', 'Paradigm Foundation'),
(70769, 59926, 'en', 'name', 'Andrews Research & Education Foundation'),
(70770, 59927, 'en', 'name', 'Canadian Foundation for Dental Hygiene Research and Education'),
(70771, 59928, 'en', 'name', 'Dean Foundation'),
(70772, 59929, 'en', 'name', 'Foundation for Southwest Orthopedic Research'),
(70773, 59930, 'en', 'name', 'Arab Foundation For Freedoms And Equality'),
(70774, 59931, 'en', 'name', 'Capio Research Foundation'),
(70775, 59932, 'en', 'name', 'Arizona Oncology Foundation'),
(70776, 59933, 'it', 'name', 'Fondazione per la Ricerca Farmacologica Gianni Benzi'),
(70777, 59933, 'en', 'name', 'Gianni Benzi Pharmacological Research Foundation'),
(70778, 59934, 'no_lang_code', 'name', 'Admin Partners (Switzerland)'),
(70779, 59935, 'en', 'name', 'Dignity Health'),
(70780, 59936, 'en', 'name', 'The Goldfarb Foundation'),
(70781, 59937, 'en', 'name', 'Goldseker Foundation'),
(70782, 59938, 'sv', 'name', 'Gorthonstiftelsen'),
(70783, 59939, 'en', 'name', 'Graham Boeckh Foundation'),
(70784, 59940, 'en', 'name', 'Dolfinger-McMahon Foundation'),
(70785, 59941, 'en', 'name', 'Gujarat Kidney Foundation'),
(70786, 59942, 'en', 'name', 'The Challenging Behaviour Foundation'),
(70787, 59943, 'en', 'name', 'Gwendolyn Strong Foundation'),
(70788, 59944, 'en', 'name', 'Asia Diabetes Foundation'),
(70789, 59944, 'zh', 'name', 'äŗšę“²ē³–å°æē—…åŸŗé‡‘ä¼š'),
(70790, 59945, 'en', 'name', 'Foundation Children with Spinal Muscular Atrophy'),
(70791, 59946, 'en', 'name', '"Woman Health & Family Planning" Charity Foundation'),
(70792, 59946, 'uk', 'name', 'БлагоГійний фонГ "Жінка зГоров''я та сімейного ŠæŠ»Š°Š½ŃƒŠ²Š°Š½Š½Ń"'),
(70793, 59947, 'en', 'name', 'Charles H. Hood Foundation'),
(70794, 59948, 'no_lang_code', 'name', 'Walder Wyss (Switzerland)'),
(70795, 59949, 'en', 'name', 'Australian Childhood Foundation'),
(70796, 59950, 'en', 'name', 'Healing Touch Worldwide Foundation'),
(70797, 59951, 'en', 'name', 'Health and Social Development Foundation'),
(70798, 59951, 'bg', 'name', 'Š¤Š¾Š½Š“Š°Ń†ŠøŃ "ЗГраве Šø социално развитие"'),
(70799, 59952, 'en', 'name', 'Fragile X Research Foundation Of Canada'),
(70800, 59953, 'en', 'name', 'China Soong Ching Ling Foundation'),
(70801, 59954, 'en', 'name', 'Hellenic Osteoporosis Foundation'),
(70802, 59954, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪŸĻƒĻ„ĪµĪæĻ€ĻŒĻĻ‰ĻƒĪ·Ļ‚'),
(70803, 59955, 'fr', 'name', 'Fondation FranƧaise pour la Recherche sur l''Epilepsie'),
(70804, 59956, 'en', 'name', 'Australasian Gastro Intestinal Research Foundation'),
(70805, 59957, 'es', 'name', 'Fundación Hermano Miguel'),
(70806, 59958, 'en', 'name', 'Hildegard Grunow Foundation'),
(70807, 59958, 'de', 'name', 'Hildegard-Grunow-Stiftung'),
(70808, 59959, 'en', 'name', 'The Hubbard Foundation'),
(70809, 59960, 'en', 'name', 'HipKnee Arkansas Foundation'),
(70810, 59961, 'pt', 'name', 'Fundação Edson Queiroz'),
(70811, 59962, 'en', 'name', 'Human Development Research Foundation'),
(70812, 59963, 'en', 'name', 'Interventional Orthopedics Foundation'),
(70813, 59964, 'pt', 'name', 'Fundação Ataulpho de Paiva'),
(70814, 59965, 'en', 'name', 'Holistic Health Research Centre'),
(70815, 59966, 'en', 'name', 'The O.P. and W.E. Edwards Foundation'),
(70816, 59967, 'en', 'name', 'Italian Network for Tumor Biotherapy Foundation'),
(70817, 59967, 'it', 'name', 'Network Italiano per la Bioterapia dei Tumori Fondazione'),
(70818, 59968, 'en', 'name', 'IWK Foundation'),
(70819, 59969, 'da', 'name', 'Ensomme Gamles Vaern'),
(70820, 59970, 'en', 'name', 'Egyptian Foundation for Cancer Research'),
(70821, 59971, 'fr', 'name', 'HƓpital Libanais Geitaoui - CHU'),
(70822, 59971, 'en', 'name', 'Lebanese Hospital Geitaoui-University Medical Center'),
(70823, 59971, 'ar', 'name', 'المستؓفى Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠ Ų§Ł„Ų¬Ų¹ŁŠŲŖŲ§ŁˆŁŠ'),
(70824, 59972, 'en', 'name', 'Electrophysiology Research Foundation'),
(70825, 59973, 'en', 'name', 'James B. and Lois R. Archer Charitable Foundation'),
(70826, 59974, 'en', 'name', 'Hypersomnia Foundation'),
(70827, 59975, 'en', 'name', 'British Columbia Rehabilitation Foundation'),
(70828, 59976, 'en', 'name', 'Cure CP'),
(70829, 59977, 'en', 'name', 'Nambudripad''s Allergy Research Foundation'),
(70830, 59978, 'en', 'name', 'Life Extension Foundation'),
(70831, 59979, 'en', 'name', 'Lifelong Vision Foundation'),
(70832, 59980, 'en', 'name', 'JH Rahn Foundation'),
(70833, 59981, 'en', 'name', 'Nashville Public Library'),
(70834, 59982, 'en', 'name', 'Inflammation Research Foundation'),
(70835, 59983, 'en', 'name', 'National Foundation for Autism Research'),
(70836, 59984, 'nl', 'name', 'Nationale Intensive Care Evaluatie Stichting'),
(70837, 59985, 'en', 'name', 'The IBC Network Foundation'),
(70838, 59986, 'en', 'name', 'The Living Legacy Foundation'),
(70839, 59987, 'en', 'name', 'Lloyd A. Fry Foundation'),
(70840, 59988, 'en', 'name', 'NEGES Foundation'),
(70841, 59989, 'en', 'name', 'Nepal Family Development Foundation'),
(70842, 59990, 'en', 'name', 'Inland Empire Liver Foundation'),
(70843, 59991, 'en', 'name', 'Joseph M. Still Research Foundation'),
(70844, 59992, 'no_lang_code', 'name', 'Luther Marketing Group (United Kingdom)'),
(70845, 59993, 'en', 'name', 'The Lynn Sage Foundation'),
(70846, 59994, 'en', 'name', 'M.S.I. Foundation'),
(70847, 59995, 'en', 'name', 'Network of European Foundations'),
(70848, 59996, 'en', 'name', 'Neurologique Foundation'),
(70849, 59997, 'en', 'name', 'Interventional Stroke Therapy Outcomes Registry'),
(70850, 59998, 'en', 'name', 'Neys-van Hoogstraten Foundation'),
(70851, 59999, 'es', 'name', 'Fundación Andrés Marcio'),
(70852, 59999, 'en', 'name', 'Marcio Andres Foundation'),
(70853, 60000, 'en', 'name', 'Her Many Voices Foundation'),
(70854, 60001, 'en', 'name', 'International Brain Research Foundation'),
(70855, 60002, 'en', 'name', 'Marine Corps – Law Enforcement Foundation'),
(70856, 60003, 'en', 'name', 'North Georgia Heart Foundation'),
(70857, 60004, 'en', 'name', 'Keloid Research Foundation'),
(70858, 60005, 'en', 'name', 'International Hyperbaric Medical Foundation'),
(70859, 60006, 'en', 'name', 'Northwest Oklahoma Osteopathic Foundation'),
(70860, 60007, 'en', 'name', 'Kigezi Healthcare Foundation'),
(70861, 60008, 'da', 'name', 'FĆødselsstiftelsen'),
(70862, 60008, 'en', 'name', 'Maternity Foundation'),
(70863, 60009, 'en', 'name', 'Kulas Foundation'),
(70864, 60010, 'en', 'name', 'Fisheries Administration'),
(70865, 60010, 'km', 'name', 'įžšįžŠįŸ’įž‹įž”įž¶įž› įž‡įž›įž•įž›'),
(70866, 60011, 'en', 'name', 'Mats Uldal Humanitarian Foundation'),
(70867, 60012, 'en', 'name', 'Nurses for Newborns'),
(70868, 60013, 'en', 'name', 'Nursing Science Foundation Switzerland'),
(70869, 60013, 'de', 'name', 'Stiftung Pflegewissenschaften Schweiz'),
(70870, 60014, 'en', 'name', 'Qualitouch-HC Foundation'),
(70871, 60015, 'en', 'name', 'Nutritional Research Foundation'),
(70872, 60016, 'en', 'name', 'Landon Pediatric Foundation'),
(70873, 60017, 'en', 'name', 'American College of Osteopathic Obstetricians & Gynecologists'),
(70874, 60018, 'en', 'name', 'Medica Foundation'),
(70875, 60019, 'en', 'name', 'OASI Bioresearch Foundation'),
(70876, 60020, 'en', 'name', 'Medarva Healthcare'),
(70877, 60021, 'en', 'name', 'Paul Ruby Foundation for Parkinson’s Research'),
(70878, 60022, 'en', 'name', 'Barbara Lee Family Foundation'),
(70879, 60023, 'en', 'name', 'The Lee Spark NF Foundation'),
(70880, 60024, 'en', 'name', 'Ocular Immunology and Uveitis Foundation'),
(70881, 60025, 'en', 'name', 'Leiomyosarcoma Direct Research Foundation'),
(70882, 60026, 'en', 'name', 'Omair Sana Foundation'),
(70883, 60027, 'en', 'name', 'Michigan Pharmacists Association'),
(70884, 60028, 'en', 'name', 'Jesse & Julie Rasch Foundation'),
(70885, 60029, 'en', 'name', 'Ronan Thompson Foundation'),
(70886, 60030, 'en', 'name', 'Miina SillanpƤƤ Foundation'),
(70887, 60030, 'fi', 'name', 'Miina SillanpƤƤn SƤƤtiƶ'),
(70888, 60031, 'en', 'name', 'Rashi Foundation'),
(70889, 60031, 'he', 'name', 'קרן רש"י'),
(70890, 60032, 'en', 'name', 'ALS Finding a Cure'),
(70891, 60033, 'en', 'name', 'Pediatric Blood and Marrow Transplant Foundation'),
(70892, 60034, 'en', 'name', 'Institute for Rehabilitation and Research Foundation'),
(70893, 60035, 'en', 'name', 'Mitsukoshi Health and Welfare Foundation'),
(70894, 60035, 'ja', 'name', 'č²”å›£ę³•äŗŗäø‰č¶ŠåŽšē”Ÿäŗ‹ę„­å›£'),
(70895, 60036, 'en', 'name', 'Pedorthic Research Foundation of Canada'),
(70896, 60037, 'fi', 'name', 'InvalidisƤƤtiƶ'),
(70897, 60038, 'en', 'name', 'Pennsylvania Allergy and Asthma Association'),
(70898, 60039, 'en', 'name', 'The Sandra A. Daugherty Foundation'),
(70899, 60040, 'en', 'name', 'Musculoskeletal Orthopedic Research and Education Foundation'),
(70900, 60041, 'en', 'name', 'Michael Reese Research and Education Foundation'),
(70901, 60042, 'en', 'name', 'Osteopathic Founders Foundation'),
(70902, 60043, 'en', 'name', 'Choroideremia Research Foundation'),
(70903, 60044, 'da', 'name', 'Edgar Schnohr og hustru Gilberte Schnohr''s Fond'),
(70904, 60045, 'en', 'name', 'Solveig and Johan P. Sommer''s foundation'),
(70905, 60045, 'no', 'name', 'Solveig og Johan P. Sommers stiftelse'),
(70906, 60046, 'en', 'name', 'Maier Foundation'),
(70907, 60047, 'en', 'name', 'ResOrtho Foundation'),
(70908, 60047, 'de', 'name', 'ResOrtho Stiftung'),
(70909, 60048, 'en', 'name', 'Sceptor Pain Foundation'),
(70910, 60049, 'en', 'name', 'Texas Cardiac Arrhythmia'),
(70911, 60050, 'en', 'name', 'South Sound Care Foundation'),
(70912, 60051, 'en', 'name', 'The Peter and Elizabeth C. Tower Foundation'),
(70913, 60052, 'no_lang_code', 'name', 'Deichmann (Germany)'),
(70914, 60053, 'es', 'name', 'Fundación Pethema'),
(70915, 60054, 'en', 'name', 'Respiratory Clinical Trials'),
(70916, 60055, 'en', 'name', 'St. Hope Foundation'),
(70917, 60056, 'en', 'name', 'Stavanger Acute Medicine Foundation for Education and Research'),
(70918, 60056, 'no', 'name', 'Stavanger Akuttmedisinfond for utdanning og forskning'),
(70919, 60057, 'en', 'name', 'The Asper Foundation'),
(70920, 60058, 'no_lang_code', 'name', 'Seguros Caracas Liberty Mutual (Venezuela)'),
(70921, 60059, 'de', 'name', 'Rexrodt von Fircks Stiftung'),
(70922, 60060, 'en', 'name', 'Semmes Murphey Foundation'),
(70923, 60061, 'en', 'name', 'Setting Scoliosis Straight Foundation'),
(70924, 60062, 'en', 'name', 'Bowmen Family Foundation'),
(70925, 60063, 'en', 'name', 'Strabismus Research Foundation'),
(70926, 60064, 'en', 'name', 'Sun Protection Foundation'),
(70927, 60065, 'en', 'name', 'The Chopra Foundation'),
(70928, 60066, 'en', 'name', 'Side-Out Foundation'),
(70929, 60067, 'en', 'name', 'Slocum Research and Education Foundation'),
(70930, 60068, 'en', 'name', 'Small Enterprise Foundation'),
(70931, 60069, 'en', 'name', 'Surya Chest Foundation'),
(70932, 60070, 'en', 'name', 'Pine Street Foundation'),
(70933, 60071, 'en', 'name', 'Susan L. Bader Foundation of Hope'),
(70934, 60072, 'en', 'name', 'River Styx Foundation'),
(70935, 60073, 'en', 'name', 'The Piton Foundation'),
(70936, 60074, 'en', 'name', 'Early Childhood Initiative Foundation'),
(70937, 60075, 'en', 'name', 'Swedish Nutrition Foundation'),
(70938, 60076, 'en', 'name', 'Planet Water Foundation'),
(70939, 60077, 'en', 'name', 'Golden Helix Foundation'),
(70940, 60078, 'en', 'name', 'The Eisner Foundation'),
(70941, 60079, 'de', 'name', 'Stiftung Swiss Foundation for Excellence and Talent in Biomedical Research');
INSERT INTO `ror_settings` VALUES
(70942, 60079, 'en', 'name', 'Swiss Foundation for Excellence and Talent in Biomedical Research'),
(70943, 60080, 'en', 'name', 'The Heartburn Foundation'),
(70944, 60081, 'en', 'name', 'Planet Wheeler Foundation'),
(70945, 60082, 'en', 'name', 'Saving Faces'),
(70946, 60083, 'en', 'name', 'Perinatal Quality Foundation'),
(70947, 60084, 'en', 'name', 'Hoffberger Family Philanthropies'),
(70948, 60085, 'en', 'name', 'The Fan Fox and Leslie R. Samuels Foundation'),
(70949, 60086, 'en', 'name', 'Feminist Majority Foundation'),
(70950, 60087, 'en', 'name', 'Hong Kong Blood Cancer Foundation'),
(70951, 60087, 'zh', 'name', 'é¦™ęøÆč”€ē™ŒåŸŗé‡‘'),
(70952, 60088, 'en', 'name', 'Fetal Medicine Foundation Belgium'),
(70953, 60088, 'nl', 'name', 'Foetale Geneeskunde'),
(70954, 60089, 'en', 'name', 'Hong Kong Lung Foundation'),
(70955, 60090, 'en', 'name', 'Pothecary Witham Weld Solicitors'),
(70956, 60091, 'es', 'name', 'Fundación Huésped'),
(70957, 60092, 'en', 'name', 'Finnish Research Foundation for Orthopaedics and Traumatology'),
(70958, 60092, 'fi', 'name', 'Ortopedian ja traumatologian tutkimussƤƤtiƶ'),
(70959, 60093, 'en', 'name', 'Plough Foundation'),
(70960, 60094, 'en', 'name', 'Taipei Fubon Bank Philanthropy Foundation'),
(70961, 60094, 'zh', 'name', 'å°åŒ—åÆŒé‚¦éŠ€č”Œå…¬ē›Šę…ˆå–„åŸŗé‡‘ęœƒ'),
(70962, 60095, 'en', 'name', 'Polk Bros. Foundation'),
(70963, 60096, 'en', 'name', 'Peter G. Dodge Foundation'),
(70964, 60097, 'en', 'name', 'TargetCancer Foundation'),
(70965, 60098, 'en', 'name', 'Task Applied Science'),
(70966, 60099, 'en', 'name', 'Mulago Foundation'),
(70967, 60100, 'en', 'name', 'Triodos Bank'),
(70968, 60101, 'en', 'name', 'The Stop ALD Foundation'),
(70969, 60102, 'en', 'name', 'The Kidney Foundation of Thailand'),
(70970, 60102, 'th', 'name', 'ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ą¹‚ąø£ąø„ą¹„ąø•ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(70971, 60103, 'en', 'name', 'Yayasan Tahija'),
(70972, 60104, 'en', 'name', 'Turkish Metabolic Surgery Foundation'),
(70973, 60105, 'en', 'name', 'Thistle Foundation'),
(70974, 60106, 'fr', 'name', 'Fondation Sandra Schmirler'),
(70975, 60106, 'en', 'name', 'Sandra Schmirler Foundation'),
(70976, 60107, 'en', 'name', 'Ben''s Dream'),
(70977, 60108, 'en', 'name', 'Wayne D Kuni & Joan E Kuni Foundation'),
(70978, 60109, 'en', 'name', 'The Sashbear Foundation'),
(70979, 60110, 'en', 'name', 'Winnicott Foundation'),
(70980, 60111, 'en', 'name', 'Shade Foundation'),
(70981, 60112, 'en', 'name', 'The SHM Foundation'),
(70982, 60113, 'en', 'name', 'National Urea Cycle Disorders Foundation'),
(70983, 60114, 'en', 'name', 'Thomas & Jeanne Elmezzi Foundation'),
(70984, 60115, 'en', 'name', 'Progressive Agriculture Foundation'),
(70985, 60116, 'en', 'name', 'The Ojai Foundation'),
(70986, 60117, 'en', 'name', 'The Solomon Foundation'),
(70987, 60118, 'en', 'name', 'Sparrow Thoracic Cardiovascular Institute'),
(70988, 60119, 'en', 'name', 'United Healthcare Children''s Foundation'),
(70989, 60120, 'en', 'name', 'Thought Field Therapy Foundation'),
(70990, 60121, 'en', 'name', 'Urological Research Foundation'),
(70991, 60122, 'en', 'name', 'Danish Agency for Institutions and Educational Grants'),
(70992, 60123, 'en', 'name', 'Veterans for America'),
(70993, 60124, 'en', 'name', 'Vietnamese Voluntary Foundation'),
(70994, 60125, 'en', 'name', 'Windward Islands Research and Education Foundation'),
(70995, 60126, 'en', 'name', 'Pure North'),
(70996, 60127, 'en', 'name', 'Proliance Orthopedic Associates'),
(70997, 60128, 'no_lang_code', 'name', 'Wadsworth Golf Construction Company (United States)'),
(70998, 60129, 'en', 'name', 'Watching Over Mothers & Babies'),
(70999, 60130, 'en', 'name', 'Yoga Science Foundation'),
(71000, 60131, 'en', 'name', 'Foundation Van Goethem-Brichant'),
(71001, 60132, 'en', 'name', 'WellMed Charitable Foundation'),
(71002, 60133, 'en', 'name', 'Western States Endurance Run Foundation'),
(71003, 60134, 'en', 'name', 'Western Orthopedics Foundation'),
(71004, 60135, 'no_lang_code', 'name', 'A-SKIN (Netherlands)'),
(71005, 60136, 'en', 'name', 'White Clover Wellness and Research Center'),
(71006, 60137, 'no_lang_code', 'name', 'Cromsource (Netherlands)'),
(71007, 60138, 'no_lang_code', 'name', 'A.S. Watson (Netherlands)'),
(71008, 60139, 'en', 'name', 'Eat2Move'),
(71009, 60140, 'no_lang_code', 'name', 'Crospon (Ireland)'),
(71010, 60141, 'no_lang_code', 'name', 'Bühlmann (Switzerland)'),
(71011, 60142, 'nl', 'name', 'Arbo Unie'),
(71012, 60143, 'nl', 'name', 'Centrum Verslavings Onderzoek'),
(71013, 60144, 'no_lang_code', 'name', 'Archipel Zorggroep (Netherlands)'),
(71014, 60145, 'nl', 'name', 'CED Groep'),
(71015, 60146, 'en', 'name', 'Expertise Center Vocational Education'),
(71016, 60146, 'nl', 'name', 'Expertisecentrum Beroepsonderwijs'),
(71017, 60147, 'en', 'name', 'Academic Center for Evidence-Based Sports Medicine'),
(71018, 60148, 'nl', 'name', 'D.H. Heijne Stichting'),
(71019, 60149, 'nl', 'name', 'Capri Hartrevalidatie'),
(71020, 60150, 'no_lang_code', 'name', 'CameraPil (Netherlands)'),
(71021, 60151, 'nl', 'name', 'Virenze'),
(71022, 60152, 'en', 'name', 'Carbohydrate Competence Center'),
(71023, 60153, 'nl', 'name', 'De Forensische Zorgspecialisten'),
(71024, 60154, 'en', 'name', 'Reach-Aut Academic Centre for Autism'),
(71025, 60155, 'no_lang_code', 'name', 'De Friesland Zorgverzekeraar (Netherlands)'),
(71026, 60156, 'no_lang_code', 'name', 'Arteg (Netherlands)'),
(71027, 60157, 'nl', 'name', 'Stichting De Opbouw'),
(71028, 60158, 'no_lang_code', 'name', 'Elfi-Tech (Israel)'),
(71029, 60159, 'nl', 'name', 'De Twentse Zorgcentra'),
(71030, 60160, 'no_lang_code', 'name', 'PronoKal Group (Spain)'),
(71031, 60161, 'nl', 'name', 'Stichting Artrose Zorg'),
(71032, 60162, 'no_lang_code', 'name', 'Embedded Fitness (Netherlands)'),
(71033, 60163, 'en', 'name', 'C Care Orthopedics'),
(71034, 60164, 'no_lang_code', 'name', 'AEGEA Medical (United States)'),
(71035, 60165, 'nl', 'name', 'Deltaplan Dementie'),
(71036, 60165, 'en', 'name', 'Deltaplan dementia'),
(71037, 60166, 'no_lang_code', 'name', 'The eNose (Netherlands)'),
(71038, 60167, 'no_lang_code', 'name', 'Dentaid (Netherlands)'),
(71039, 60168, 'no_lang_code', 'name', 'Centraal Ziekenfonds (Netherlands)'),
(71040, 60169, 'nl', 'name', 'Depressie Vereniging'),
(71041, 60170, 'no_lang_code', 'name', 'Hemics (Netherlands)'),
(71042, 60171, 'nl', 'name', 'Entrea'),
(71043, 60172, 'nl', 'name', 'Apotheek Haagse Ziekenhuizen'),
(71044, 60172, 'aa', 'name', 'Pharmacy Hague Hospital'),
(71045, 60173, 'en', 'name', 'Alan Turing Institute Almere'),
(71046, 60174, 'nl', 'name', 'Epilepsiefonds'),
(71047, 60175, 'nl', 'name', 'Koninklijke Nederlandse Atletiek Unie'),
(71048, 60175, 'en', 'name', 'Royal Dutch Athletics Federation'),
(71049, 60176, 'nl', 'name', 'Atria'),
(71050, 60177, 'nl', 'name', 'Stichting Erasmus Trustfonds'),
(71051, 60178, 'nl', 'name', 'Diapriva'),
(71052, 60179, 'nl', 'name', 'Erfelijke Stofwisselingsziekten Nederland'),
(71053, 60180, 'nl', 'name', 'Dimence'),
(71054, 60181, 'nl', 'name', 'Alexander Monro Ziekenhuis'),
(71055, 60182, 'en', 'name', 'Avans+'),
(71056, 60183, 'en', 'name', 'Dutch Lung Cancer Research Group'),
(71057, 60184, 'nl', 'name', 'DOH Zorggroep'),
(71058, 60185, 'nl', 'name', 'Dokter Izak Wessel Stichting'),
(71059, 60186, 'nl', 'name', 'Dokter Wittenberg Stichting'),
(71060, 60187, 'en', 'name', 'CityLab010'),
(71061, 60188, 'no_lang_code', 'name', 'B. Braun (Netherlands)'),
(71062, 60189, 'nl', 'name', 'AmbulanceZorg Rotterdam-Rijnmond'),
(71063, 60190, 'nl', 'name', 'Amstelland Fysiotherapie'),
(71064, 60191, 'en', 'name', 'Dutch Association for Regional Anesthesia'),
(71065, 60192, 'no_lang_code', 'name', 'Bauerfeind (Netherlands)'),
(71066, 60193, 'nl', 'name', 'VeiligheidNL'),
(71067, 60194, 'nl', 'name', 'Bavo Stichting Heemstede'),
(71068, 60195, 'no_lang_code', 'name', 'AngioDynamics (Netherlands)'),
(71069, 60196, 'nl', 'name', 'Dystonie Vereniging'),
(71070, 60197, 'en', 'name', 'Dutch Endovascular Alliance'),
(71071, 60198, 'no_lang_code', 'name', 'Evalan (Netherlands)'),
(71072, 60199, 'no_lang_code', 'name', 'Bayer (Netherlands)'),
(71073, 60200, 'nl', 'name', 'Evean'),
(71074, 60201, 'de', 'name', 'Technologiestiftung Berlin'),
(71075, 60202, 'en', 'name', 'Dutch Healthcare Authority'),
(71076, 60202, 'nl', 'name', 'Nederlandse Zorgautoriteit'),
(71077, 60203, 'nl', 'name', 'Stichting Bergh in het Zadel'),
(71078, 60204, 'en', 'name', 'Netherlands Nutrition Centre'),
(71079, 60204, 'nl', 'name', 'Stichting Voedingscentrum'),
(71080, 60205, 'en', 'name', 'Parkwood Institute'),
(71081, 60206, 'nl', 'name', 'Nederlandse Vereniging voor Hepatologie'),
(71082, 60207, 'no_lang_code', 'name', 'BioClin (Netherlands)'),
(71083, 60208, 'nl', 'name', 'Nederlandse Vereniging van Podotherapeuten'),
(71084, 60209, 'en', 'name', 'The Microsoft Research - University of Trento Centre for Computational and Systems Biology'),
(71085, 60210, 'no_lang_code', 'name', 'AQLANE Medical (Netherlands)'),
(71086, 60211, 'nl', 'name', 'Fietsersbond'),
(71087, 60212, 'no_lang_code', 'name', 'Zimmer Biomet (Netherlands)'),
(71088, 60213, 'en', 'name', 'Fit Kids Foundation'),
(71089, 60214, 'no_lang_code', 'name', 'EarlySense (Israel)'),
(71090, 60215, 'nl', 'name', 'Antes'),
(71091, 60216, 'no_lang_code', 'name', 'FluxPlus (Netherlands)'),
(71092, 60217, 'no_lang_code', 'name', 'Focal Meditech (Netherlands)'),
(71093, 60218, 'no_lang_code', 'name', 'GD Medical Pharma (Netherlands)'),
(71094, 60219, 'no_lang_code', 'name', 'BIRR (Netherlands)'),
(71095, 60220, 'en', 'name', 'Foundation Centrum ''45'),
(71096, 60220, 'nl', 'name', 'Stichting Centrum ''45'),
(71097, 60221, 'nl', 'name', 'Geriant'),
(71098, 60222, 'en', 'name', 'Influenza Foundation of Thailand'),
(71099, 60222, 'th', 'name', 'ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ąøŖą¹ˆąø‡ą¹€ąøŖąø“ąø£ąø”ąøąø²ąø£ąøØąø¶ąøąø©ąø²ą¹„ąø‚ą¹‰ąø«ąø§ąø±ąø”ą¹ƒąø«ąøą¹ˆ'),
(71100, 60223, 'nl', 'name', 'Vlaams Agentschap Zorg en Gezondheid'),
(71101, 60224, 'fr', 'name', 'Ministère De La Santé'),
(71102, 60225, 'de', 'name', 'Deutsche Lepra- und Tuberkulosehilfe'),
(71103, 60226, 'nl', 'name', 'Stichting FORCE'),
(71104, 60227, 'nl', 'name', 'Fonds de Gavere'),
(71105, 60228, 'nl', 'name', 'GGD Rotterdam-Rijnmond'),
(71106, 60229, 'nl', 'name', 'GGD Zeeland'),
(71107, 60230, 'nl', 'name', 'Dienst Gezondheid & Jeugd'),
(71108, 60231, 'nl', 'name', 'GGD West-Brabant'),
(71109, 60232, 'nl', 'name', 'Fonds voor het Hart'),
(71110, 60233, 'en', 'name', 'Department of Disease Control'),
(71111, 60234, 'nl', 'name', 'Robuust'),
(71112, 60235, 'nl', 'name', 'Stichting Zonnige Jeugd'),
(71113, 60236, 'nl', 'name', 'Fonds Verstandelijk Gehandicapten'),
(71114, 60237, 'nl', 'name', 'GGZ Delfland'),
(71115, 60238, 'nl', 'name', 'Kijvelanden'),
(71116, 60239, 'nl', 'name', 'Amstelring'),
(71117, 60240, 'nl', 'name', 'Oostvaarderskliniek'),
(71118, 60241, 'nl', 'name', 'GGZ Noord-Holland-Noord'),
(71119, 60242, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Netherlands)'),
(71120, 60243, 'no_lang_code', 'name', 'Fractyl (United States)'),
(71121, 60244, 'nl', 'name', 'GGZ Westelijk Noord-Brabant'),
(71122, 60245, 'no_lang_code', 'name', 'GlaxoSmithKline (Netherlands)'),
(71123, 60246, 'en', 'name', 'CR2O'),
(71124, 60247, 'nl', 'name', 'Zeeuws Hand & Pols Centrum'),
(71125, 60248, 'en', 'name', 'Vision Research ROPARD Foundation'),
(71126, 60249, 'en', 'name', 'Go4children'),
(71127, 60250, 'no_lang_code', 'name', 'Goodlife (Netherlands)'),
(71128, 60251, 'no_lang_code', 'name', 'Frisian Flag (Indonesia)'),
(71129, 60252, 'nl', 'name', 'Gouverneur Kremers Centrum'),
(71130, 60253, 'en', 'name', 'Health & Motion'),
(71131, 60254, 'nl', 'name', 'Fysio Schambergen'),
(71132, 60255, 'no_lang_code', 'name', 'Boston Scientific (Belgium)'),
(71133, 60256, 'en', 'name', 'Food & Nutrition'),
(71134, 60257, 'en', 'name', 'Commit'),
(71135, 60258, 'no_lang_code', 'name', 'Fyzzio (Netherlands)'),
(71136, 60259, 'no_lang_code', 'name', 'Haemonetics (Netherlands)'),
(71137, 60260, 'no_lang_code', 'name', 'Gadeta (Netherlands)'),
(71138, 60261, 'nl', 'name', 'OHRA'),
(71139, 60262, 'nl', 'name', 'Condite'),
(71140, 60263, 'nl', 'name', 'Conrisq Groep'),
(71141, 60264, 'nl', 'name', 'Kenniscentrum Sport'),
(71142, 60264, 'en', 'name', 'Knowledge Centre for Sport Netherlands'),
(71143, 60265, 'no_lang_code', 'name', 'Kellogg’s (Belgium)'),
(71144, 60266, 'no_lang_code', 'name', 'Mammoet (Netherlands)'),
(71145, 60267, 'nl', 'name', 'GGD Haaglanden'),
(71146, 60268, 'en', 'name', 'Danish Agency for Labour Market and Recruitment'),
(71147, 60268, 'da', 'name', 'Styrelsen for Arbejdsmarked og Rekruttering'),
(71148, 60269, 'no_lang_code', 'name', 'Heelkunde Friesland (Netherlands)'),
(71149, 60270, 'nl', 'name', 'Orthopedie Groot Eindhoven'),
(71150, 60271, 'nl', 'name', 'Marti-Keuning Eckhardt Stichting'),
(71151, 60272, 'nl', 'name', 'Kennisinstituut Bier'),
(71152, 60273, 'no_lang_code', 'name', 'Nano-Ditech (United States)'),
(71153, 60274, 'no_lang_code', 'name', 'Hero Benelux (Netherlands)'),
(71154, 60275, 'nl', 'name', 'Cordaid'),
(71155, 60276, 'nl', 'name', 'Kenter Jeugdhulp'),
(71156, 60277, 'no_lang_code', 'name', 'Mathys (Netherlands)'),
(71157, 60278, 'nl', 'name', 'Nationaal Initiatief Hersenen & Cognitie'),
(71158, 60278, 'en', 'name', 'National Initiative Brain & Cognition'),
(71159, 60279, 'nl', 'name', 'Maurits en Anna de Kock Stichting'),
(71160, 60280, 'nl', 'name', 'Cornelia-Stichting'),
(71161, 60281, 'nl', 'name', 'HilverZorg'),
(71162, 60282, 'nl', 'name', 'Medisch Coƶrdinerend Centrum Omnes'),
(71163, 60283, 'no_lang_code', 'name', 'Hollister (Germany)'),
(71164, 60284, 'no_lang_code', 'name', 'Halyard (United Kingdom)'),
(71165, 60285, 'en', 'name', 'National Foundation for the Elderly'),
(71166, 60285, 'nl', 'name', 'Stichting Nationaal Ouderenfonds'),
(71167, 60286, 'no_lang_code', 'name', 'Cristal Therapeutics (Netherlands)'),
(71168, 60287, 'no_lang_code', 'name', 'NestlƩ (Netherlands)'),
(71169, 60288, 'nl', 'name', 'Kliniek ViaSana'),
(71170, 60289, 'nl', 'name', 'MeanderGroep Zuid-Limburg'),
(71171, 60290, 'nl', 'name', 'HSK Groep'),
(71172, 60291, 'nl', 'name', 'Kliniek voor Parodontologie Rotterdam'),
(71173, 60292, 'nl', 'name', 'Stichting OFOM'),
(71174, 60293, 'nl', 'name', 'Oogvereniging'),
(71175, 60293, 'en', 'name', 'The Eye Association Netherlands'),
(71176, 60294, 'nl', 'name', 'Natuur- en GezondheidsProducten Nederland'),
(71177, 60295, 'no_lang_code', 'name', 'Ophtec (Netherlands)'),
(71178, 60296, 'no_lang_code', 'name', 'Hu-Friedy (United States)'),
(71179, 60297, 'no_lang_code', 'name', 'Nea International (Netherlands)'),
(71180, 60298, 'nl', 'name', 'Mediant Geestelijke Gezondheidszorg'),
(71181, 60299, 'nl', 'name', 'Nederlands Astmacentrum Davos'),
(71182, 60300, 'nl', 'name', 'Koninklijke Nederlandse Organisatie van Verloskundigen'),
(71183, 60300, 'en', 'name', 'Royal Dutch Organization of Midwives'),
(71184, 60301, 'nl', 'name', 'Huis voor de Zorg'),
(71185, 60302, 'no_lang_code', 'name', 'N. V. Pharma (India)'),
(71186, 60303, 'no_lang_code', 'name', 'Medimate (Netherlands)'),
(71187, 60304, 'nl', 'name', 'Huisartsen Oostelijk Zuid Limburg'),
(71188, 60305, 'nl', 'name', 'Federatie Medisch Specialisten'),
(71189, 60306, 'nl', 'name', 'Koninklijke Nederlandse Klim- en Bergsport Vereniging'),
(71190, 60307, 'no_lang_code', 'name', 'Orthica (Netherlands)'),
(71191, 60308, 'no_lang_code', 'name', 'Brocacef Groep (Netherlands)'),
(71192, 60309, 'no_lang_code', 'name', 'MediRisk (Netherlands)'),
(71193, 60310, 'nl', 'name', 'Merem'),
(71194, 60311, 'nl', 'name', 'Nederlandse Obesitas Kliniek'),
(71195, 60312, 'no_lang_code', 'name', 'Medivis (Italy)'),
(71196, 60313, 'nl', 'name', 'Eurocept Groep'),
(71197, 60313, 'no_lang_code', 'name', 'Eurocept Group (Netherlands)'),
(71198, 60314, 'nl', 'name', 'Nederlandse Vereniging van Orthodontisten'),
(71199, 60315, 'no_lang_code', 'name', 'Medspray (Netherlands)'),
(71200, 60316, 'nl', 'name', 'Nederlandse Vereniging voor Acupunctuur'),
(71201, 60317, 'nl', 'name', 'Nederlandse Vereniging voor Heelkunde'),
(71202, 60318, 'nl', 'name', 'Mentaal Beter'),
(71203, 60319, 'en', 'name', 'KSYOS TeleMedical Centre'),
(71204, 60319, 'nl', 'name', 'KSYOS TeleMedisch Centrum'),
(71205, 60320, 'nl', 'name', 'Nederlandse Vereniging voor Reumatologie'),
(71206, 60321, 'no_lang_code', 'name', 'Menzis (Netherlands)'),
(71207, 60322, 'nl', 'name', 'Innofeet'),
(71208, 60323, 'en', 'name', 'Dutch Hospital Association'),
(71209, 60324, 'no_lang_code', 'name', 'Merck (Netherlands)'),
(71210, 60325, 'no_lang_code', 'name', 'Nemo Healthcare (Netherlands)'),
(71211, 60326, 'no_lang_code', 'name', 'Innopastry (Netherlands)'),
(71212, 60327, 'no_lang_code', 'name', 'Innospense (Netherlands)'),
(71213, 60328, 'en', 'name', 'Pension Fund for Care and Well-Being'),
(71214, 60328, 'nl', 'name', 'Stichting Pensioenfonds Zorg en Welzijn'),
(71215, 60329, 'no_lang_code', 'name', 'Lamepro Benelux (Netherlands)'),
(71216, 60330, 'no_lang_code', 'name', 'Metrisquare (Netherlands)'),
(71217, 60331, 'en', 'name', 'Stoke Mandeville Spinal Research'),
(71218, 60332, 'no_lang_code', 'name', 'PharmaJet (United States)'),
(71219, 60333, 'en', 'name', 'Dutch Expert Centre for Screening'),
(71220, 60333, 'nl', 'name', 'Landelijk ReferentieCentrum voor Bevolkingsonderzoek'),
(71221, 60334, 'en', 'name', 'InnoSportLab'),
(71222, 60335, 'nl', 'name', 'Phelps Stichting voor Spastici'),
(71223, 60336, 'no_lang_code', 'name', 'Landsbond der Christelijke Mutualiteiten (Belgium)'),
(71224, 60337, 'nl', 'name', 'Nederlandse Vereniging van Artsen voor Musculoskeletale Geneeskunde'),
(71225, 60338, 'nl', 'name', 'Laurens'),
(71226, 60339, 'nl', 'name', 'Gemeente Leiden'),
(71227, 60340, 'no_lang_code', 'name', 'Physeon (Switzerland)'),
(71228, 60341, 'no_lang_code', 'name', 'Physiol (Belgium)'),
(71229, 60342, 'en', 'name', 'InSpine'),
(71230, 60343, 'nl', 'name', 'Lelie Zorggroep'),
(71231, 60344, 'en', 'name', 'Nijmegen Institute for Scientist Practitioners in Addiction'),
(71232, 60345, 'nl', 'name', 'NIM Maatschappelijk Werk'),
(71233, 60346, 'no_lang_code', 'name', 'NinePoint Medical (United States)'),
(71234, 60347, 'nl', 'name', 'Movisie'),
(71235, 60348, 'no_lang_code', 'name', 'Pluryn'),
(71236, 60349, 'en', 'name', 'MS4 Research Institute'),
(71237, 60350, 'nl', 'name', 'Instituut voor Positieve Psychologie'),
(71238, 60351, 'nl', 'name', 'Podocentrum Alkmaar'),
(71239, 60352, 'no_lang_code', 'name', 'Multi Electrical System (Suriname)'),
(71240, 60353, 'nl', 'name', 'Treant Zorggroep'),
(71241, 60354, 'no_lang_code', 'name', 'InterMed (United States)'),
(71242, 60355, 'nl', 'name', 'Multiple Sclerose Vereniging Nederland'),
(71243, 60356, 'nl', 'name', 'Departement Cultuur, Jeugd en Media'),
(71244, 60357, 'no_lang_code', 'name', 'Polyganics (Netherlands)'),
(71245, 60358, 'no_lang_code', 'name', 'MDxHealth (Netherlands)'),
(71246, 60359, 'nl', 'name', 'Postmaster Psychologie Opleidingen'),
(71247, 60360, 'nl', 'name', 'Praktijkondersteuning Zuidoost-Brabant'),
(71248, 60361, 'nl', 'name', 'Praktikon'),
(71249, 60362, 'no_lang_code', 'name', 'LINK (Netherlands)'),
(71250, 60363, 'nl', 'name', 'Stichting Stimuleringsfonds Rouw'),
(71251, 60364, 'no_lang_code', 'name', 'Interpolis (Netherlands)'),
(71252, 60365, 'nl', 'name', 'Stichting Artsenlaboratorium en Trombosedienst'),
(71253, 60366, 'no_lang_code', 'name', 'NutriLeads (Netherlands)'),
(71254, 60367, 'nl', 'name', 'Proteion'),
(71255, 60368, 'de', 'name', 'Salus Klinik'),
(71256, 60369, 'nl', 'name', 'Ipse de Bruggen'),
(71257, 60370, 'en', 'name', 'Psychotherapy & Movement'),
(71258, 60371, 'no_lang_code', 'name', 'IQ Medical Ventures (Netherlands)'),
(71259, 60372, 'en', 'name', 'Save by Seva Foundation'),
(71260, 60372, 'nl', 'name', 'Stichting Save by Seva'),
(71261, 60373, 'nl', 'name', 'Nederlandse Vereniging voor Plastische Chirurgie'),
(71262, 60374, 'nl', 'name', 'PsyQ'),
(71263, 60375, 'nl', 'name', 'Nederlandse Ski Vereniging'),
(71264, 60376, 'no_lang_code', 'name', 'Lysosomal Therapeutics (United States)'),
(71265, 60377, 'no_lang_code', 'name', 'Pulmonx (United States)'),
(71266, 60378, 'nl', 'name', 'Instituut voor Verantwoord Medicijngebruik'),
(71267, 60379, 'no_lang_code', 'name', 'OIM Orthopedie (Netherlands)'),
(71268, 60380, 'no_lang_code', 'name', 'Score (Netherlands)'),
(71269, 60381, 'no_lang_code', 'name', 'Olympus (Netherlands)'),
(71270, 60382, 'nl', 'name', 'Sint Maartenskliniek'),
(71271, 60383, 'no_lang_code', 'name', 'Ferring LƤkemedel (Sweden)'),
(71272, 60384, 'no_lang_code', 'name', 'Sense Textile (Netherlands)'),
(71273, 60385, 'en', 'name', 'IVO Addiction Research Institute'),
(71274, 60386, 'nl', 'name', 'Stichting Adriaan Metius'),
(71275, 60387, 'nl', 'name', 'SIDN Fonds'),
(71276, 60388, 'nl', 'name', 'Stichting Afasie Nederland'),
(71277, 60389, 'en', 'name', 'Sight and Life'),
(71278, 60390, 'no_lang_code', 'name', 'SilverFit (Netherlands)'),
(71279, 60391, 'nl', 'name', 'Regio Gooi en Vechtstreek'),
(71280, 60392, 'nl', 'name', 'Stichting Agis Zorginnovatiefonds'),
(71281, 60393, 'nl', 'name', 'AO Nederland'),
(71282, 60394, 'no_lang_code', 'name', 'SkƄnemejerier (Sweden)'),
(71283, 60395, 'nl', 'name', 'Stichting Semmy'),
(71284, 60396, 'nl', 'name', 'Agora'),
(71285, 60397, 'en', 'name', 'Roessingh Concern'),
(71286, 60398, 'no_lang_code', 'name', 'Slow Control (France)'),
(71287, 60399, 'no_lang_code', 'name', 'Smith & Nephew (Switzerland)'),
(71288, 60400, 'en', 'name', 'AGIS'),
(71289, 60401, 'no_lang_code', 'name', 'Surgimab (France)'),
(71290, 60402, 'no_lang_code', 'name', 'Happiest Baby (United States)'),
(71291, 60403, 'en', 'name', 'SPRINT'),
(71292, 60404, 'nl', 'name', 'Surinaamse Postspaarbank'),
(71293, 60405, 'nl', 'name', 'Stichting Apotheek der Haarlemse Ziekenhuizen'),
(71294, 60406, 'nl', 'name', 'Stichting Urologisch Wetenschappelijk Onderzoek'),
(71295, 60407, 'fr', 'name', 'SociƩtƩ Francophone Posture Equilibre Locomotion'),
(71296, 60408, 'no_lang_code', 'name', 'Solace Therapeutics (United States)'),
(71297, 60409, 'no_lang_code', 'name', 'ResMed (Netherlands)'),
(71298, 60410, 'nl', 'name', 'Nationaal MS Fonds'),
(71299, 60411, 'nl', 'name', 'Centrum Aquamarijn'),
(71300, 60412, 'nl', 'name', 'Revalidatie Nederland'),
(71301, 60413, 'nl', 'name', 'Volandis'),
(71302, 60414, 'en', 'name', 'Asklepios Foundation'),
(71303, 60415, 'nl', 'name', 'Sophia Revalidatie'),
(71304, 60416, 'nl', 'name', 'Tante Louise'),
(71305, 60417, 'nl', 'name', 'Stichting Bio Kinderrevalidatie'),
(71306, 60418, 'no_lang_code', 'name', 'TeamAlert'),
(71307, 60419, 'nl', 'name', 'Revant medisch specialistische revalidatie'),
(71308, 60420, 'nl', 'name', 'Centrum Oosterwal'),
(71309, 60421, 'no_lang_code', 'name', 'Revive Therapeutics (Canada)'),
(71310, 60422, 'nl', 'name', 'Lange Land Ziekenhuis'),
(71311, 60423, 'nl', 'name', 'Sport Medisch Centrum Papendal'),
(71312, 60424, 'nl', 'name', 'Stichting Vooruit'),
(71313, 60425, 'nl', 'name', 'Rijnlands Revalidatie Centrum'),
(71314, 60426, 'en', 'name', 'Team Westland'),
(71315, 60427, 'nl', 'name', 'RINO Zuid'),
(71316, 60428, 'nl', 'name', 'Stichting de Verre Bergen'),
(71317, 60429, 'nl', 'name', 'ROC Leeuwenborgh'),
(71318, 60430, 'nl', 'name', 'Star Medisch Diagnostisch Centrum'),
(71319, 60431, 'nl', 'name', 'Roessingh, Centrum voor Revalidatie'),
(71320, 60432, 'nl', 'name', 'Stichting Roomsch Catholyk Oude Armen kantoor'),
(71321, 60433, 'en', 'name', 'Roparun Foundation'),
(71322, 60433, 'nl', 'name', 'Stichting Roparun'),
(71323, 60434, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Netherlands)'),
(71324, 60435, 'nl', 'name', 'Brijder'),
(71325, 60436, 'nl', 'name', 'STECR'),
(71326, 60437, 'nl', 'name', 'Stichting Zorgondersteuningsfonds'),
(71327, 60438, 'nl', 'name', 'Stichting Gereformeerd of Burgerweeshuis te Haarlem'),
(71328, 60439, 'nl', 'name', 'Stichting Emmafonds'),
(71329, 60440, 'nl', 'name', 'Vrienden van het Sophia'),
(71330, 60441, 'nl', 'name', 'Stichting Gezondheidscentra Eindhoven'),
(71331, 60442, 'nl', 'name', 'Stichting Vrienden van het Hart'),
(71332, 60443, 'no_lang_code', 'name', 'RR Mechatronics (Netherlands)'),
(71333, 60444, 'no_lang_code', 'name', 'Achmea (Netherlands)'),
(71334, 60445, 'nl', 'name', 'Stichting Warande'),
(71335, 60446, 'no_lang_code', 'name', 'Stichting Handbike Events'),
(71336, 60447, 'nl', 'name', 'Stichting Westelijke Tuinsteden'),
(71337, 60448, 'nl', 'name', 'Stichting Hartcentrum Twente'),
(71338, 60449, 'nl', 'name', 'Stichting Hartekind'),
(71339, 60450, 'nl', 'name', 'Stichting HemoBase'),
(71340, 60451, 'nl', 'name', 'Stichting Hofje Codde en Van Beresteyn'),
(71341, 60452, 'nl', 'name', 'Uitvoeringsinstituut Werknemersverzekeringen'),
(71342, 60453, 'nl', 'name', 'IZZ Zorgverzekering'),
(71343, 60454, 'nl', 'name', 'Thebe'),
(71344, 60455, 'nl', 'name', 'Stichting Kenniscentrum Dementie op Jonge Leeftijd'),
(71345, 60456, 'nl', 'name', 'Stichting Kinderen en Kansen'),
(71346, 60457, 'nl', 'name', 'Vanboeijen'),
(71347, 60458, 'en', 'name', 'TKI Agri & Food'),
(71348, 60459, 'nl', 'name', 'Lyvore'),
(71349, 60460, 'en', 'name', 'Dutch Health Care Inspectorate'),
(71350, 60460, 'nl', 'name', 'Inspectie voor de Gezondheidszorg'),
(71351, 60461, 'no_lang_code', 'name', 'Vascular Insights (United States)'),
(71352, 60462, 'no_lang_code', 'name', 'VDL Groep (Netherlands)'),
(71353, 60463, 'nl', 'name', 'TKI Treco'),
(71354, 60464, 'nl', 'name', 'Vereniging EMDR'),
(71355, 60465, 'nl', 'name', 'Maatschap Friese Longartsen'),
(71356, 60466, 'nl', 'name', 'Stichting LOOP'),
(71357, 60467, 'nl', 'name', 'Vereniging Nederland-Davos'),
(71358, 60468, 'no_lang_code', 'name', 'Procter & Gamble (Netherlands)'),
(71359, 60469, 'nl', 'name', 'Vereniging Nederlandse Cateringorganisaties'),
(71360, 60470, 'en', 'name', 'Transcare'),
(71361, 60471, 'nl', 'name', 'Stichting Mitialto'),
(71362, 60472, 'nl', 'name', 'Vereniging van Zorgaanbieders voor Zorgcommunicatie'),
(71363, 60473, 'en', 'name', 'Lunar and Planetary Institute'),
(71364, 60474, 'no_lang_code', 'name', 'Meda (Germany)'),
(71365, 60475, 'nl', 'name', 'Nieuwegein Fonds'),
(71366, 60476, 'nl', 'name', 'Wantveld'),
(71367, 60477, 'nl', 'name', 'Vereniging van Groothandelaren in Bloemkwekerijprodukten'),
(71368, 60478, 'nl', 'name', 'Jellinek'),
(71369, 60479, 'no_lang_code', 'name', 'Tricolast (Belgium)'),
(71370, 60480, 'en', 'name', 'Defence Against Cancer Foundation'),
(71371, 60481, 'no_lang_code', 'name', 'Coƶperatie VGZ (Netherlands)'),
(71372, 60482, 'nl', 'name', 'Stichting Weeshuis der Doopsgezinden'),
(71373, 60483, 'no_lang_code', 'name', 'Vion Food Group (Netherlands)'),
(71374, 60484, 'no_lang_code', 'name', 'Vision2Health (Netherlands)'),
(71375, 60485, 'en', 'name', 'U-center'),
(71376, 60486, 'no_lang_code', 'name', 'Welzijnservices (Netherlands)'),
(71377, 60487, 'nl', 'name', 'Stichting Nationaal Fonds Het Gehandicapte Kind'),
(71378, 60488, 'no_lang_code', 'name', 'UCB Pharma (Netherlands)'),
(71379, 60489, 'en', 'name', 'Pactive Motion'),
(71380, 60490, 'nl', 'name', 'Stofberg Preventie & Coaching'),
(71381, 60491, 'en', 'name', 'VitalinQ'),
(71382, 60492, 'no_lang_code', 'name', 'Umenz (Netherlands)'),
(71383, 60493, 'fr', 'name', 'Loterie Nationale'),
(71384, 60493, 'nl', 'name', 'Nationale loterij'),
(71385, 60493, 'de', 'name', 'Nationallotterie'),
(71386, 60494, 'en', 'name', 'Vitalis WoonZorg Group'),
(71387, 60495, 'no_lang_code', 'name', 'UnivƩ (Netherlands)'),
(71388, 60496, 'nl', 'name', 'Landsteiner Instituut'),
(71389, 60497, 'nl', 'name', 'Willem Meindert de Hoop Stichting'),
(71390, 60498, 'nl', 'name', 'Stichting Panta Rhei'),
(71391, 60499, 'no_lang_code', 'name', 'Vitromics (Netherlands)'),
(71392, 60500, 'nl', 'name', 'IJsselheem'),
(71393, 60501, 'no_lang_code', 'name', 'Vivisol (Netherlands)'),
(71394, 60502, 'nl', 'name', 'Stichting Physico'),
(71395, 60503, 'nl', 'name', 'ZorgKeuzeLab'),
(71396, 60504, 'nl', 'name', 'Zorg in Ontwikkeling'),
(71397, 60505, 'nl', 'name', 'Vlaamse Vereniging voor Obstetrie en Gynaecolo'),
(71398, 60506, 'no_lang_code', 'name', 'Xendo (Netherlands)'),
(71399, 60507, 'nl', 'name', 'Stichting Rehabilitatie ā€˜92'),
(71400, 60508, 'nl', 'name', 'Verslavingszorg Noord Nederland'),
(71401, 60509, 'no_lang_code', 'name', 'Yakult (Netherlands)'),
(71402, 60510, 'nl', 'name', 'de Posten'),
(71403, 60511, 'nl', 'name', 'Stichting RevaZorg'),
(71404, 60512, 'nl', 'name', 'Zorgverzekeraars Nederland'),
(71405, 60513, 'nl', 'name', 'Middelbaar Beroeps Onderwijs'),
(71406, 60514, 'nl', 'name', 'Zorggroep Kans'),
(71407, 60515, 'nl', 'name', 'Zorggroep Meander'),
(71408, 60516, 'no_lang_code', 'name', 'Zambon (Netherlands)'),
(71409, 60517, 'nl', 'name', 'Zorggroep Sint Maarten'),
(71410, 60518, 'no_lang_code', 'name', 'Novamedia (Netherlands)'),
(71411, 60519, 'nl', 'name', 'Zorggroep Solis'),
(71412, 60520, 'nl', 'name', 'Vrienden WKZ'),
(71413, 60521, 'nl', 'name', 'Vrienden van Heideheuvel'),
(71414, 60522, 'nl', 'name', 'ZZG zorggroep'),
(71415, 60523, 'nl', 'name', 'Zorg voor innoveren'),
(71416, 60524, 'nl', 'name', 'Werk-Goed Bedrijfskleding alle rechten voorbehouden'),
(71417, 60524, 'no_lang_code', 'name', 'Werkgoed (Netherlands)'),
(71418, 60525, 'de', 'name', 'Akademie Für Osteopathie'),
(71419, 60526, 'de', 'name', 'Aturo'),
(71420, 60527, 'no_lang_code', 'name', '480 Biomedical (United States)'),
(71421, 60528, 'nl', 'name', 'Stichting Zorgdraad'),
(71422, 60529, 'no_lang_code', 'name', 'Analyze & Realize (Germany)'),
(71423, 60530, 'de', 'name', 'Bundesverwaltungsamt'),
(71424, 60530, 'en', 'name', 'FedĀ­erĀ­al OfĀ­fice of AdĀ­minĀ­isĀ­traĀ­tion'),
(71425, 60531, 'de', 'name', 'Aktion Benni'),
(71426, 60532, 'no_lang_code', 'name', 'Abbott (Austria)'),
(71427, 60533, 'de', 'name', 'Aktion Mensch'),
(71428, 60534, 'de', 'name', 'Bundeswehrkrankenhaus'),
(71429, 60535, 'de', 'name', 'Asklepios Klinik Langen'),
(71430, 60536, 'en', 'name', 'Minneapolis VA Medical Center'),
(71431, 60537, 'no_lang_code', 'name', 'C-RAD (Sweden)'),
(71432, 60538, 'en', 'name', 'CS Diagnostics'),
(71433, 60539, 'no_lang_code', 'name', 'CA DIGITAL (Germany)'),
(71434, 60540, 'de', 'name', 'Augencentrum Rosenheim'),
(71435, 60541, 'de', 'name', 'Geriatrische Gesundheitszentren'),
(71436, 60542, 'de', 'name', 'Klinik für Augenheilkunde'),
(71437, 60542, 'en', 'name', 'Ophthalmology Clinic'),
(71438, 60543, 'de', 'name', 'Evangelisches Krankenhaus Hamm'),
(71439, 60544, 'no_lang_code', 'name', 'Alder (United States)'),
(71440, 60545, 'no_lang_code', 'name', 'Cancer Prevention Pharmaceuticals (United States)'),
(71441, 60546, 'pl', 'name', 'Centralny Szpital Kliniczny'),
(71442, 60547, 'de', 'name', 'Evangelische Kliniken Gelsenkirchen'),
(71443, 60548, 'de', 'name', 'Klinik Blankenstein'),
(71444, 60549, 'en', 'name', 'Capio Clinic in the Park'),
(71445, 60549, 'de', 'name', 'Capio Klinik im Park'),
(71446, 60550, 'no_lang_code', 'name', 'axios Pharma (Germany)'),
(71447, 60551, 'en', 'name', 'Alesco Concepts'),
(71448, 60552, 'no_lang_code', 'name', 'CTI BioPharma (United Kingdom)'),
(71449, 60553, 'no_lang_code', 'name', 'Alexion (Germany)'),
(71450, 60554, 'no_lang_code', 'name', 'Cardialysis (Netherlands)'),
(71451, 60555, 'no_lang_code', 'name', 'Curacyte (Germany)'),
(71452, 60556, 'no_lang_code', 'name', 'Alimera Sciences (Germany)'),
(71453, 60557, 'no_lang_code', 'name', 'Curaden (Switzerland)'),
(71454, 60558, 'no_lang_code', 'name', 'Alvotech (Germany)'),
(71455, 60559, 'de', 'name', 'Helios Amper-Klinikum Dachau'),
(71456, 60560, 'no_lang_code', 'name', 'Korian (Germany)'),
(71457, 60561, 'no_lang_code', 'name', 'CardioSec (Germany)'),
(71458, 60562, 'no_lang_code', 'name', 'Curetis (Germany)'),
(71459, 60563, 'de', 'name', 'BARMER GEK'),
(71460, 60564, 'de', 'name', 'Gemeinschaftskrankenhaus Herdecke'),
(71461, 60565, 'no_lang_code', 'name', 'CVRx (United States)'),
(71462, 60566, 'en', 'name', 'Herford Hospital'),
(71463, 60566, 'de', 'name', 'Klinikum Herford'),
(71464, 60567, 'de', 'name', 'Caritas-Krankenhaus St. Josef'),
(71465, 60568, 'no_lang_code', 'name', 'Bauerfeind (Germany)'),
(71466, 60569, 'de', 'name', 'Schƶn Klinik Hamburg Eilbek'),
(71467, 60570, 'no_lang_code', 'name', 'Alloheim (Germany)'),
(71468, 60571, 'en', 'name', 'Cyclomed medical services & consulting'),
(71469, 60572, 'no_lang_code', 'name', 'Alphamade (Berlin)'),
(71470, 60573, 'de', 'name', 'Asklepios Klinikum Harburg'),
(71471, 60574, 'no_lang_code', 'name', 'Almased (Germany)'),
(71472, 60575, 'de', 'name', 'Kompetenznetz Darmerkrankungen'),
(71473, 60576, 'no_lang_code', 'name', 'Cefak (Germany)'),
(71474, 60577, 'de', 'name', 'BDH Bundesverband Rehabilitation'),
(71475, 60578, 'no_lang_code', 'name', 'BEGO Implant Systems (Germany)'),
(71476, 60579, 'de', 'name', 'Ambulantes Reha-Zentrum Berlin Adlershof'),
(71477, 60579, 'en', 'name', 'Ambulatory Rehabilitation Center Berlin Adlershof'),
(71478, 60580, 'de', 'name', 'Centrum für Integrierte Onkologie'),
(71479, 60581, 'de', 'name', 'Deutsche Neurodermitis Stiftung'),
(71480, 60582, 'de', 'name', 'Behandlungszentrum Aschau'),
(71481, 60583, 'no_lang_code', 'name', 'Amedon (Germany)'),
(71482, 60584, 'de', 'name', 'Zentrum Überleben'),
(71483, 60585, 'no_lang_code', 'name', 'ABX-CRO Advanced Pharmaceutical Services (Germany)'),
(71484, 60586, 'de', 'name', 'Centrum für Operative Urologie Bremen'),
(71485, 60587, 'no_lang_code', 'name', 'Bemer (Liechtenstein)'),
(71486, 60588, 'no_lang_code', 'name', 'Acandis (Germany)'),
(71487, 60589, 'no_lang_code', 'name', 'Amedrix (Germany)'),
(71488, 60590, 'no_lang_code', 'name', 'Acarix (Denmark)'),
(71489, 60591, 'de', 'name', 'Arbeiterwohlfahrt München'),
(71490, 60592, 'de', 'name', 'Acqua Klinik'),
(71491, 60593, 'en', 'name', 'Karen Horney Institut'),
(71492, 60594, 'no_lang_code', 'name', 'Cerbomed (Germany)'),
(71493, 60595, 'de', 'name', 'Stiftung Berliner Sparkasse'),
(71494, 60596, 'de', 'name', 'Berner Augenklinik am Lindenhofspital'),
(71495, 60597, 'de', 'name', 'Deutsche Parkinson Vereinigung e.V'),
(71496, 60598, 'de', 'name', 'Berufsgenossenschaft für Gesundheitsdienst und Wohlfahrtspflege'),
(71497, 60599, 'no_lang_code', 'name', 'Certmedica (Germany)'),
(71498, 60600, 'de', 'name', 'Berufsgenossenschaftliche Unfallklinik Frankfurt am Main'),
(71499, 60601, 'no_lang_code', 'name', 'Cesra (Germany)'),
(71500, 60602, 'no_lang_code', 'name', 'Actelion (Germany)'),
(71501, 60603, 'no_lang_code', 'name', 'HumanTotalCare (Netherlands)'),
(71502, 60604, 'de', 'name', 'Berufsverband der FrauenƤrzte'),
(71503, 60605, 'nl', 'name', 'Rugpoli'),
(71504, 60606, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (Germany)'),
(71505, 60607, 'no_lang_code', 'name', 'Active Bio Life Science (Germany)'),
(71506, 60608, 'no_lang_code', 'name', 'Chemie³ (Germany)'),
(71507, 60609, 'de', 'name', 'Bethlehem Gesundheitszentrum Stolberg'),
(71508, 60610, 'de', 'name', 'Acura Kliniken'),
(71509, 60611, 'de', 'name', 'BG Klinikum Duisburg'),
(71510, 60612, 'no_lang_code', 'name', 'Andair AG (Switzerland)'),
(71511, 60613, 'de', 'name', 'BG Klinikum Bergmannstrost Halle'),
(71512, 60614, 'no_lang_code', 'name', 'Chiesi (Germany)'),
(71513, 60615, 'de', 'name', 'Adipositas Zentrum Oberhausen'),
(71514, 60616, 'no_lang_code', 'name', 'Biebertaler Blutegelzucht (Germany)'),
(71515, 60617, 'de', 'name', 'BIG Direkt Gesund'),
(71516, 60618, 'nl', 'name', 'Andros Mannenkliniek'),
(71517, 60619, 'en', 'name', 'Anfomed Society for Applied Research in Medicine'),
(71518, 60620, 'de', 'name', 'Arbeitsgemeinschaft Dermatologische Onkologie'),
(71519, 60621, 'no_lang_code', 'name', 'ClinAssess (Germany)'),
(71520, 60622, 'no_lang_code', 'name', 'Adtec Plasma Technology (United Kingdom)'),
(71521, 60623, 'de', 'name', 'Klinik für Herzchirurgie Karlsruhe'),
(71522, 60624, 'de', 'name', 'Allgemeiner Deutscher Tanzlehrerverband'),
(71523, 60625, 'no_lang_code', 'name', 'BioTeSys (Germany)'),
(71524, 60626, 'no_lang_code', 'name', 'Bitop (Germany)'),
(71525, 60627, 'de', 'name', 'Anna Mueller Grocholski-Stiftung'),
(71526, 60628, 'en', 'name', 'Clinical Research Center Kiel'),
(71527, 60629, 'de', 'name', 'Aenne Speck Stiftung'),
(71528, 60630, 'en', 'name', 'ANOA'),
(71529, 60631, 'de', 'name', 'Agaplesion Bethesda Klinik'),
(71530, 60632, 'de', 'name', 'Age Stiftung'),
(71531, 60633, 'de', 'name', 'Deutsche Rheuma-Liga'),
(71532, 60634, 'no_lang_code', 'name', 'Boehringer Ingelheim (Denmark)'),
(71533, 60635, 'de', 'name', 'RheiĀ­nisch-BerĀ­giĀ­sche VerĀ­lagsĀ­geĀ­sellĀ­schaft'),
(71534, 60636, 'de', 'name', 'Reproduktionsmedizin München'),
(71535, 60637, 'no_lang_code', 'name', 'Boston Scientific (Germany)'),
(71536, 60638, 'no_lang_code', 'name', 'Boston Scientific (Netherlands)'),
(71537, 60639, 'no_lang_code', 'name', 'Columbia Shipmanagement (Germany)'),
(71538, 60640, 'en', 'name', 'Compliant Concept'),
(71539, 60641, 'en', 'name', 'Flemish Taekwondo Association'),
(71540, 60641, 'nl', 'name', 'Vlaamse Taekwondo Bond'),
(71541, 60642, 'de', 'name', 'Deutscher Berufsverband der Hals-Nasen-OhrenƤrzte e. V'),
(71542, 60643, 'de', 'name', 'Brost Stiftung'),
(71543, 60644, 'de', 'name', 'D•A•CH-Gesellschaft'),
(71544, 60645, 'no_lang_code', 'name', 'Credentis (Switzerland)'),
(71545, 60646, 'no_lang_code', 'name', 'AOK'),
(71546, 60646, 'de', 'name', 'Allgemeine Ortskrankenkasse'),
(71547, 60647, 'de', 'name', 'Bund gegen Alkohol und Drogen im Straßenverkehr'),
(71548, 60648, 'de', 'name', 'Deutscher Berufsverband Rettungsdienst e.V'),
(71549, 60649, 'no_lang_code', 'name', 'Shell (Germany)'),
(71550, 60650, 'de', 'name', 'Deutscher Psoriasis Bund'),
(71551, 60651, 'de', 'name', 'Bundesverband der HƶrgerƤte-Industrie'),
(71552, 60652, 'de', 'name', 'Bundesverband SelbststƤndiger Physiotherapeuten'),
(71553, 60653, 'de', 'name', 'Evangelisches Krankenhaus Kƶnigin Elisabeth Herzberge'),
(71554, 60654, 'de', 'name', 'Evangelisches Krankenhaus Gƶttingen-Weende'),
(71555, 60655, 'de', 'name', 'Evangelische Lungenklinik Berlin'),
(71556, 60656, 'de', 'name', 'Diakonie Baden'),
(71557, 60657, 'de', 'name', 'Fachklinik 360°'),
(71558, 60658, 'es', 'name', 'Fundación Neumosur'),
(71559, 60659, 'nl', 'name', 'EspƩrance'),
(71560, 60660, 'no_lang_code', 'name', 'Apomedica (Austria)'),
(71561, 60661, 'no_lang_code', 'name', 'Devicia (Sweden)'),
(71562, 60662, 'no_lang_code', 'name', 'NestlƩ (Germany)'),
(71563, 60663, 'de', 'name', 'Deutsche Gesellschaft für Ultraschall in der Medizin'),
(71564, 60664, 'de', 'name', 'Apothekerstiftung Westfalen-Lippe'),
(71565, 60665, 'de', 'name', 'Evangelisches Krankenhaus Mettmann'),
(71566, 60666, 'no_lang_code', 'name', 'Dentium (South Korea)'),
(71567, 60667, 'no_lang_code', 'name', 'AppPeople (Germany)'),
(71568, 60668, 'no_lang_code', 'name', 'KLS Martin (Germany)'),
(71569, 60669, 'en', 'name', 'AAB College'),
(71570, 60669, 'sq', 'name', 'Kolegji AAB'),
(71571, 60670, 'no_lang_code', 'name', 'Gelita (Germany)'),
(71572, 60671, 'de', 'name', 'Stiftung Empiris'),
(71573, 60672, 'no_lang_code', 'name', 'E&L Medical Systems (Germany)'),
(71574, 60673, 'de', 'name', 'Gemeinschaftskrankenhaus Havelhƶhe'),
(71575, 60674, 'no_lang_code', 'name', 'K-Implant (Germany)'),
(71576, 60675, 'de', 'name', 'Dƶpfer Schulen Regensburg'),
(71577, 60676, 'nl', 'name', 'Dokter Bosman'),
(71578, 60677, 'no_lang_code', 'name', 'Serag-Wiessner (Germany)'),
(71579, 60678, 'en', 'name', 'Mikaelyan Institute of Surgery'),
(71580, 60678, 'hy', 'name', 'Õ„Ō»Õ”Ō±Õ…ŌµŌ¼Õ…Ō±Õ† ÕŽŌ»ÕŌ±Ō²ÕˆÕ’ŌŗÕˆÕ’Ō¹Õ…Ō±Õ† Ō»Õ†ÕÕŌ»ÕÕˆÕ’Õ'),
(71581, 60679, 'no_lang_code', 'name', 'Derma Consult (Germany)'),
(71582, 60680, 'de', 'name', 'Dermatologie Freiburg'),
(71583, 60681, 'de', 'name', 'Arbeitsgemeinschaft für Krebsbekämpfung'),
(71584, 60682, 'de', 'name', 'Fachklinik St. Marienstift Dammer Berge'),
(71585, 60683, 'de', 'name', 'Fachklinik Weinbƶhla'),
(71586, 60684, 'de', 'name', 'Deutsche AIDS-Gesellschaft'),
(71587, 60685, 'de', 'name', 'Deutschen Akademie für Flug- und Reisemedizin'),
(71588, 60685, 'en', 'name', 'German Academy for Aviation and Travel Medicine'),
(71589, 60686, 'en', 'name', 'German Inflammatory Bowel Diseases Study Group'),
(71590, 60687, 'de', 'name', 'Fachkrankenhaus Hubertusburg'),
(71591, 60688, 'de', 'name', 'Fachverband SAPV Hessen'),
(71592, 60689, 'de', 'name', 'Albert Schweitzer Klinik'),
(71593, 60690, 'nl', 'name', 'Bouman GGZ'),
(71594, 60691, 'de', 'name', 'Deutsche Gesellschaft für Anästhesiologie und Intensivmedizin'),
(71595, 60692, 'de', 'name', 'Verband Deutscher Mineralbrunnen'),
(71596, 60693, 'de', 'name', 'Feuerwehr Brühl'),
(71597, 60694, 'de', 'name', 'Deutsche Gesellschaft für Transaktionsanalyse'),
(71598, 60695, 'de', 'name', 'Diakonie Klinikum Jung-Stilling'),
(71599, 60696, 'no_lang_code', 'name', 'Gesundes Kinzigtal (Germany)'),
(71600, 60697, 'de', 'name', 'Deutsche Interdisziplinäre Vereinigung für Intensiv- und Notfallmedizin'),
(71601, 60698, 'de', 'name', 'ARCUS Sportkliniken'),
(71602, 60698, 'en', 'name', 'ARCUS Sports Clinic'),
(71603, 60699, 'de', 'name', 'Deutsche Gesellschaft für Internationale Zusammenarbeit'),
(71604, 60699, 'en', 'name', 'German Corporation for International Cooperation'),
(71605, 60700, 'no_lang_code', 'name', 'Fine Treatment (United Kingdom)'),
(71606, 60701, 'de', 'name', 'Gesundheitsnetz Rhein-Neckar'),
(71607, 60702, 'no_lang_code', 'name', 'Bentley (Germany)'),
(71608, 60703, 'de', 'name', 'GOIN Gesundheitsorganisation'),
(71609, 60704, 'no_lang_code', 'name', 'Nielsen (Germany)'),
(71610, 60705, 'no_lang_code', 'name', 'Diamed Medizintechnik (Germany)'),
(71611, 60706, 'de', 'name', 'Die ZahnƤrzte.ch'),
(71612, 60707, 'no_lang_code', 'name', 'Nuvisan (Germany)'),
(71613, 60708, 'de', 'name', 'Ƅrztliche Akademie für Psychotherapie von Kindern und Jugendlichen'),
(71614, 60709, 'no_lang_code', 'name', 'GHD GesundHeits GmbH Deutschland (Germany)'),
(71615, 60710, 'de', 'name', 'Ria & Arthur Dietschweiler Stiftung'),
(71616, 60711, 'en', 'name', 'Diagnostic and Treatment Centre Berlin'),
(71617, 60711, 'de', 'name', 'Diagnostisch Therapeutisches Zentrum'),
(71618, 60712, 'de', 'name', 'Ƅrztliche Gesellschaft zur Gesundheitsfƶrderung e.V'),
(71619, 60713, 'de', 'name', 'Förderkreis Hilfe für krebskranke Kinder'),
(71620, 60714, 'no_lang_code', 'name', 'Disphar International (Netherlands)'),
(71621, 60715, 'no_lang_code', 'name', 'Dürr Dental (Germany)'),
(71622, 60716, 'no_lang_code', 'name', 'DJO Global (Germany)'),
(71623, 60717, 'no_lang_code', 'name', 'Given Imaging (Germany)'),
(71624, 60718, 'de', 'name', 'Vitos'),
(71625, 60719, 'no_lang_code', 'name', 'Glaukos (United States)'),
(71626, 60720, 'no_lang_code', 'name', 'EDAP TMS (Germany)'),
(71627, 60721, 'de', 'name', 'Fƶrderverein Hilfe bei Prostatakrebs'),
(71628, 60722, 'no_lang_code', 'name', 'DMG (Germany)'),
(71629, 60723, 'de', 'name', 'Asklepios Fachklinikum Tiefenbrunn'),
(71630, 60724, 'no_lang_code', 'name', 'Glycemicon (Switzerland)'),
(71631, 60725, 'de', 'name', 'Edel + weiss ZahnƤrzte'),
(71632, 60726, 'no_lang_code', 'name', 'Dr. Ausbüttel (Germany)'),
(71633, 60727, 'de', 'name', 'Forschungsgesellschaft Atemwegerkrankungen'),
(71634, 60728, 'en', 'name', 'Dr.Heiko Pult Optometry and Vision Research'),
(71635, 60729, 'de', 'name', 'Eifelklinik Manderscheid'),
(71636, 60730, 'de', 'name', 'Asklepios OrthopƤdische Klinik Lindenlohe'),
(71637, 60731, 'no_lang_code', 'name', 'Eisai (Germany)'),
(71638, 60732, 'de', 'name', 'Lesmüller-Stiftung'),
(71639, 60733, 'de', 'name', 'Kompetenznetz LeukƤmien'),
(71640, 60734, 'de', 'name', 'Asklepios Kliniken Schildautal'),
(71641, 60735, 'en', 'name', 'Dr. Becker Rhein-Sieg Clinic'),
(71642, 60735, 'de', 'name', 'Dr. Becker Rhein-Sieg-Klinik'),
(71643, 60736, 'no_lang_code', 'name', 'GP Pharm (Spain)'),
(71644, 60737, 'no_lang_code', 'name', 'Grifols (Germany)'),
(71645, 60738, 'de', 'name', 'Hauschka Stiftung'),
(71646, 60739, 'de', 'name', 'Elefanten Apotheke'),
(71647, 60740, 'de', 'name', 'Asklepios Neurologische Klinik Falkenstein'),
(71648, 60741, 'no_lang_code', 'name', 'Dr. Loges (Germany)'),
(71649, 60742, 'de', 'name', 'Asklepios'),
(71650, 60743, 'no_lang_code', 'name', 'Hasomed (Germany)'),
(71651, 60744, 'no_lang_code', 'name', 'GS Elektromed. GerƤte G. Stemple (Germany)'),
(71652, 60745, 'no_lang_code', 'name', 'Dr. Mattiola & Partner AG (Switzerland)'),
(71653, 60746, 'de', 'name', 'HausƤrzteverband Sachsen-Anhalt'),
(71654, 60747, 'no_lang_code', 'name', 'Guangdong Junfeng Spectrum (China)'),
(71655, 60748, 'no_lang_code', 'name', 'Elixir Medical (United States)'),
(71656, 60749, 'no_lang_code', 'name', 'Dr. Niedermaier Pharma (Germany)'),
(71657, 60750, 'no_lang_code', 'name', 'Haider Bioswing (Germany)'),
(71658, 60751, 'nl', 'name', 'Janusz Korczak Stichting'),
(71659, 60752, 'no_lang_code', 'name', 'HausMed (Germany)'),
(71660, 60753, 'no_lang_code', 'name', 'Dr. Pfleger Arzneimittel (Germany)'),
(71661, 60754, 'de', 'name', 'Elterninitiative Krebskranker Kinder im Saarland'),
(71662, 60755, 'de', 'name', 'IKK Classic'),
(71663, 60756, 'de', 'name', 'Stiftung Depressionsforschung'),
(71664, 60757, 'en', 'name', 'Hautok + Hautok Cosmetics'),
(71665, 60758, 'de', 'name', 'Immanuel Klinikum Bernau'),
(71666, 60759, 'no_lang_code', 'name', 'Immundiagnostik (Germany)'),
(71667, 60760, 'no_lang_code', 'name', 'Implandata Ophthalmic Products (Germany)'),
(71668, 60761, 'no_lang_code', 'name', 'Emmedi (Italy)'),
(71669, 60762, 'no_lang_code', 'name', 'Emotra (Sweden)'),
(71670, 60763, 'no_lang_code', 'name', 'INC Research (United Kingdom)'),
(71671, 60764, 'de', 'name', 'Emovis'),
(71672, 60765, 'no_lang_code', 'name', 'Indena (France)'),
(71673, 60766, 'no_lang_code', 'name', 'Heimomed Heinze (Germany)'),
(71674, 60767, 'en', 'name', 'Atos Medical'),
(71675, 60768, 'de', 'name', 'Integrierte Psychiatrie Winterthur'),
(71676, 60769, 'no_lang_code', 'name', 'Ingredia (France)'),
(71677, 60770, 'no_lang_code', 'name', 'Lƶwenstein Medical (Germany)'),
(71678, 60771, 'no_lang_code', 'name', 'Helbo Photodynamic Systems (Germany)'),
(71679, 60772, 'de', 'name', 'Diakonie Kork'),
(71680, 60773, 'de', 'name', 'Werner und Erika Messmer Stiftung'),
(71681, 60774, 'de', 'name', 'Buchinger Wilhelmi'),
(71682, 60775, 'no_lang_code', 'name', 'Innomedis (Germany)'),
(71683, 60776, 'de', 'name', 'Helios Klinik Kipfenberg'),
(71684, 60777, 'de', 'name', 'Klinik Bavaria'),
(71685, 60778, 'de', 'name', 'Helios Kliniken Mittelweser'),
(71686, 60779, 'de', 'name', 'Helios Klinikum Erfurt'),
(71687, 60780, 'en', 'name', 'Helios Hospital Schwerin'),
(71688, 60780, 'de', 'name', 'Helios Kliniken Schwerin'),
(71689, 60781, 'en', 'name', 'Helios Hospital Berlin-Buch'),
(71690, 60781, 'de', 'name', 'Helios Klinikum Berlin-Buch'),
(71691, 60782, 'de', 'name', 'Erwin Rƶver Stiftung'),
(71692, 60783, 'en', 'name', 'International Maitland Teacher Association'),
(71693, 60784, 'de', 'name', 'Helios Vogtland Klinikum Plauen'),
(71694, 60785, 'de', 'name', 'Hospital Krefeld-Düsseldorf'),
(71695, 60786, 'no_lang_code', 'name', 'Inspire Medical Systems (United States)'),
(71696, 60787, 'fr', 'name', 'Institut Aguettant'),
(71697, 60788, 'de', 'name', 'HELIOS Klinikum Bad Saarow'),
(71698, 60788, 'en', 'name', 'Helios Hospital Bad Saarow'),
(71699, 60789, 'de', 'name', 'Institut Dr. Schauerte'),
(71700, 60790, 'en', 'name', 'Hermann Buhl Institut'),
(71701, 60791, 'de', 'name', 'Helios Hospital Siegburg'),
(71702, 60792, 'no_lang_code', 'name', 'Hermes Arzneimittel (Germany)'),
(71703, 60793, 'no_lang_code', 'name', 'Intersurgical (Germany)'),
(71704, 60794, 'de', 'name', 'HIZ Berlin'),
(71705, 60795, 'de', 'name', 'Helios Klinikum Emil von Behring'),
(71706, 60796, 'no_lang_code', 'name', 'Intuitive Surgical (Switzerland)'),
(71707, 60797, 'de', 'name', 'Marienhaus Klinikum Hetzelstift Neustadt'),
(71708, 60798, 'no_lang_code', 'name', 'Hikma Pharmaceuticals (Germany)'),
(71709, 60799, 'de', 'name', 'Institut für Medizinische Informatik, Biometrie und Epidemiologie'),
(71710, 60800, 'en', 'name', 'Histiocyte Society'),
(71711, 60801, 'de', 'name', 'INVADE Institut für Versorgungsforschung'),
(71712, 60802, 'en', 'name', 'Hessian Ministry for Social Affairs and Integration'),
(71713, 60802, 'de', 'name', 'Hessisches Ministerium für Soziales und Integration'),
(71714, 60803, 'de', 'name', 'UniversitƤts-HNO-Klinik Heidelberg'),
(71715, 60804, 'fr', 'name', 'Conseil EuropƩen'),
(71716, 60804, 'en', 'name', 'European Council'),
(71717, 60804, 'de', 'name', 'EuropƤischer Rat'),
(71718, 60805, 'de', 'name', 'Klinik und Poliklinik für Hals-Nasen-Ohren-Heilkunde'),
(71719, 60806, 'de', 'name', 'Hochschule für Gesundheitsorientierte Wissenschaften Rhein-Neckar'),
(71720, 60807, 'de', 'name', 'Institut für Palliative Care'),
(71721, 60808, 'de', 'name', 'Klinik Lüneburger Heide'),
(71722, 60809, 'de', 'name', 'Hoffnungsbaum'),
(71723, 60810, 'no_lang_code', 'name', 'Hologic (Germany)'),
(71724, 60811, 'de', 'name', 'KrankenhƤuser Landkreis Freudenstadt'),
(71725, 60812, 'de', 'name', 'Klinik Niederrhein'),
(71726, 60813, 'no_lang_code', 'name', 'Hoya Surgical Optics (Germany)'),
(71727, 60814, 'de', 'name', 'Klinikum Sindelfingen-Bƶblingen'),
(71728, 60815, 'de', 'name', 'Klinik Roderbirke'),
(71729, 60816, 'no_lang_code', 'name', 'Kreiskrankenhaus Gummersbach'),
(71730, 60817, 'no_lang_code', 'name', 'Humedics (Germany)'),
(71731, 60818, 'de', 'name', 'Klinik Rosenberg'),
(71732, 60819, 'en', 'name', 'Hospital MƤrkisch-Oderland'),
(71733, 60819, 'de', 'name', 'Krankenhaus MƤrkisch-Oderland'),
(71734, 60820, 'de', 'name', 'St. Elisabeth-Krankenhaus Leipzig'),
(71735, 60821, 'de', 'name', 'Infektionsmedizinisches Centrum Hamburg'),
(71736, 60822, 'de', 'name', 'Netzwerk der Rehabilitationsforschung in Nordrhein-Westfalen'),
(71737, 60823, 'en', 'name', 'Competence Network Multiple Sclerosis'),
(71738, 60823, 'de', 'name', 'Kompetenznetz Multiple Sklerose'),
(71739, 60824, 'de', 'name', 'Institut für Ganzheitliche Medizin und Wissenschaft'),
(71740, 60825, 'de', 'name', 'Krebsgesellschaft Nordrhein-Westfalen'),
(71741, 60826, 'de', 'name', 'Kreiskrankenhaus Emmendingen'),
(71742, 60827, 'de', 'name', 'Institut für Therapie- und Gesundheitsforschung'),
(71743, 60827, 'en', 'name', 'Institute for Therapy and Health Research'),
(71744, 60828, 'de', 'name', 'Deutsche WirbelsƤulengesellschaft'),
(71745, 60829, 'no_lang_code', 'name', 'Elektror Airsystems (Germany)'),
(71746, 60830, 'de', 'name', 'Institut für Verhaltenstherapie-Ausbildung Hamburg'),
(71747, 60831, 'de', 'name', 'Marienkrankenhaus Kassel'),
(71748, 60832, 'de', 'name', 'Marienkrankenhaus Hamburg'),
(71749, 60833, 'de', 'name', 'Klinik und Poliklinik für Frauenheilkunde und Fortpflanzungsmedizin'),
(71750, 60834, 'de', 'name', 'Martini-Klinik'),
(71751, 60835, 'no_lang_code', 'name', 'Molteni Farmaceutici (Italy)'),
(71752, 60836, 'de', 'name', 'Klinikum Rheine'),
(71753, 60837, 'de', 'name', 'Monika Kutzner Stiftung'),
(71754, 60838, 'de', 'name', 'Klinik und Poliklinik für Hals-, Nasen-, Ohrenheilkunde'),
(71755, 60839, 'no_lang_code', 'name', 'Mathys (Switzerland)'),
(71756, 60840, 'no_lang_code', 'name', 'Mathys (Germany)'),
(71757, 60841, 'de', 'name', 'Lahntalklinik'),
(71758, 60842, 'no_lang_code', 'name', 'Max Zeller Sƶhne (Switzerland)'),
(71759, 60843, 'de', 'name', 'Moritz Klinik'),
(71760, 60844, 'en', 'name', 'Agaplesion Markus Hospital');
INSERT INTO `ror_settings` VALUES
(71761, 60844, 'de', 'name', 'Agaplesion Markus Krankenhaus'),
(71762, 60845, 'de', 'name', 'Klinik und Poliklinik für Kinder- und Jugendmedizin'),
(71763, 60846, 'de', 'name', 'Landesuntersuchungsanstalt Sachsen'),
(71764, 60847, 'de', 'name', 'Sana Kliniken Leipziger Land'),
(71765, 60848, 'no_lang_code', 'name', 'Lapharm (Germany)'),
(71766, 60849, 'de', 'name', 'Klinik und Poliklinik für Kinder- und Jugendpsychiatrie'),
(71767, 60850, 'de', 'name', 'Ministerium für Soziales, Arbeit, Gesundheit und Demografie'),
(71768, 60851, 'de', 'name', 'Laserklinik Karlsruhe'),
(71769, 60852, 'no_lang_code', 'name', 'Philips (Finland)'),
(71770, 60852, 'fi', 'name', 'Philips Oy'),
(71771, 60853, 'de', 'name', 'Klinik und Poliklinik für Mund-, Kiefer- und Gesichtschirurgie'),
(71772, 60854, 'de', 'name', 'NBank'),
(71773, 60855, 'no_lang_code', 'name', 'Medartis (Switzerland)'),
(71774, 60856, 'de', 'name', 'Klinik Kƶnig-Ludwig Haus'),
(71775, 60857, 'no_lang_code', 'name', 'Neomedic International (Spain)'),
(71776, 60858, 'de', 'name', 'Klinik und Poliklinik für Neurologie'),
(71777, 60859, 'en', 'name', 'Medbase'),
(71778, 60860, 'de', 'name', 'Klinik und Poliklinik für Nuklearmedizin'),
(71779, 60861, 'no_lang_code', 'name', 'Medi (Germany)'),
(71780, 60862, 'en', 'name', 'Leipzig Heart Institute'),
(71781, 60863, 'no_lang_code', 'name', 'Leo Pharma (Germany)'),
(71782, 60864, 'en', 'name', 'Leonardis Foundation'),
(71783, 60865, 'no_lang_code', 'name', 'Medi-Tate (Israel)'),
(71784, 60866, 'no_lang_code', 'name', 'Lipogen (Israel)'),
(71785, 60867, 'no_lang_code', 'name', 'Medico-Academic Consultings (Germany)'),
(71786, 60868, 'de', 'name', 'Schön Klinik München Schwabing'),
(71787, 60869, 'no_lang_code', 'name', 'LIV Pharma (Germany)'),
(71788, 60870, 'en', 'name', 'Department of Education'),
(71789, 60871, 'de', 'name', 'Neurologisches Fachkrankenhaus für Bewegungsstörungen/Parkinson'),
(71790, 60872, 'no_lang_code', 'name', 'Lophius Biosciences (Germany)'),
(71791, 60873, 'de', 'name', 'Klinik und Poliklinik für Psychiatrie und Psychotherapie des Kindes- und Jugendalters'),
(71792, 60874, 'de', 'name', 'Neurologisches Rehabilitationszentrum Leipzig'),
(71793, 60875, 'de', 'name', 'MVZ - Kurfürstendamm'),
(71794, 60876, 'de', 'name', 'Klinik und Poliklinik für Psychosomatik und Psychotherapie'),
(71795, 60877, 'de', 'name', 'Sana Klinikum'),
(71796, 60878, 'en', 'name', 'Aesthetico'),
(71797, 60879, 'en', 'name', 'Medical Genetics Center'),
(71798, 60879, 'de', 'name', 'Medizinisch Genetisches Zentrum'),
(71799, 60880, 'de', 'name', 'Luisenkrankenhaus'),
(71800, 60881, 'de', 'name', 'Klinik und Poliklinik für Psychosomatische Medizin und Psychotherapie'),
(71801, 60882, 'no_lang_code', 'name', 'NewConceptOncology (Germany)'),
(71802, 60883, 'no_lang_code', 'name', 'Lundbeck (Germany)'),
(71803, 60884, 'de', 'name', 'Lungenheilkunde München-Pasing'),
(71804, 60885, 'de', 'name', 'Niedersächsisches Landesamt für Soziales, Jugend und Familie'),
(71805, 60886, 'de', 'name', 'Klinik und Poliklinik für Psychosomatische Medizin und Psychotherapie'),
(71806, 60887, 'de', 'name', 'Lungenklinik Kƶln-Merheim'),
(71807, 60888, 'de', 'name', 'Nierenzentrum Heidelberg'),
(71808, 60889, 'de', 'name', 'LVR-Klinik Bonn'),
(71809, 60890, 'de', 'name', 'Klinik und Poliklinik für Urologie'),
(71810, 60891, 'no_lang_code', 'name', 'Optana (Germany)'),
(71811, 60892, 'de', 'name', 'Niederƶsterreichischer Gesundheits- und Sozialfond'),
(71812, 60893, 'nl', 'name', 'Stichting Toegepast Wetenschappelijk Instituut voor Neuromodulatie'),
(71813, 60894, 'no_lang_code', 'name', 'Novaliq (Germany)'),
(71814, 60895, 'de', 'name', 'Klinik und Poliklinik für Urologie, Kinderurologie und Andrologie'),
(71815, 60896, 'no_lang_code', 'name', 'Novatex (Germany)'),
(71816, 60897, 'no_lang_code', 'name', 'Novel (Germany)'),
(71817, 60898, 'no_lang_code', 'name', 'Novitas BKK (Germany)'),
(71818, 60899, 'de', 'name', 'Familie Mehdorn Stiftung'),
(71819, 60900, 'no_lang_code', 'name', 'Novo Nordisk (Germany)'),
(71820, 60901, 'no_lang_code', 'name', 'Nucleix (Israel)'),
(71821, 60902, 'de', 'name', 'Klinik und Poliklinik für Mund-, Kiefer- und Plastische Gesichtschirurgie'),
(71822, 60903, 'pl', 'name', 'Fundacja NUTRICIA'),
(71823, 60903, 'en', 'name', 'NUTRICIA Foundation'),
(71824, 60904, 'no_lang_code', 'name', 'MetaX - Institut für Diätetik (Germany)'),
(71825, 60905, 'no_lang_code', 'name', 'Nutricia (Germany)'),
(71826, 60906, 'no_lang_code', 'name', 'New Valve Technology (Germany)'),
(71827, 60907, 'de', 'name', 'Kliniken des Bezirks Oberbayern'),
(71828, 60908, 'de', 'name', 'Medprevent Ottobrunn'),
(71829, 60909, 'no_lang_code', 'name', 'Optima Pharmazeutische (Germany)'),
(71830, 60910, 'no_lang_code', 'name', 'Migros (Switzerland)'),
(71831, 60911, 'de', 'name', 'Oberberg Stiftung'),
(71832, 60912, 'no_lang_code', 'name', 'MicroPort Orthopedics (Netherlands)'),
(71833, 60913, 'en', 'name', 'Committee of Good Will - Olga Havel Foundation'),
(71834, 60913, 'cs', 'name', 'Výbor dobré vůle Nadace Olgy Havlové'),
(71835, 60914, 'no_lang_code', 'name', 'Organ Recovery Systems (Belgium)'),
(71836, 60915, 'no_lang_code', 'name', 'Terumo (Germany)'),
(71837, 60916, 'no_lang_code', 'name', 'Miha Bodytec (Germany)'),
(71838, 60917, 'no_lang_code', 'name', 'Orochemie (Germany)'),
(71839, 60918, 'no_lang_code', 'name', 'Perrigo (Germany)'),
(71840, 60919, 'no_lang_code', 'name', 'Orthofix (Italy)'),
(71841, 60920, 'no_lang_code', 'name', 'Omnicare Pharma (Germany)'),
(71842, 60921, 'no_lang_code', 'name', 'Orthogen (Germany)'),
(71843, 60922, 'no_lang_code', 'name', 'oncgnostics (Germany)'),
(71844, 60923, 'en', 'name', 'Square Hospitals'),
(71845, 60924, 'de', 'name', 'Ministerium für Arbeit, Gesundheit und Soziales des Landes Nordrhein-Westfalen'),
(71846, 60925, 'de', 'name', 'Klinikum am Weissenhof'),
(71847, 60926, 'de', 'name', 'Ministerium für Heimat, Kommunales, Bau und Gleichstellung des Landes Nordrhein-Westfalen'),
(71848, 60927, 'de', 'name', 'Klinikum Konstanz'),
(71849, 60928, 'en', 'name', 'Osteopathie Plus'),
(71850, 60929, 'no_lang_code', 'name', 'OnkoDataMed (Germany)'),
(71851, 60930, 'de', 'name', 'Ɩsterreichische Gesellschaft für AnƤsthesiologie, Reanimation und Intensivmedizin'),
(71852, 60931, 'de', 'name', 'Klinikverbund Südwest'),
(71853, 60932, 'de', 'name', 'Misereor'),
(71854, 60933, 'de', 'name', 'Psychologische Praxengemeinschaft'),
(71855, 60934, 'no_lang_code', 'name', 'Oystershell (Belgium)'),
(71856, 60935, 'de', 'name', 'Sächsisches Staatsministerium für Soziales und Verbraucherschutz'),
(71857, 60936, 'de', 'name', 'Das Onkologische und Palliativmedizinische Netzwerk Landshut'),
(71858, 60937, 'no_lang_code', 'name', 'Sachtleben (Germany)'),
(71859, 60938, 'de', 'name', 'Park-Klinik Birkenwerder'),
(71860, 60939, 'de', 'name', 'Sana Klinikum Lichtenberg'),
(71861, 60940, 'de', 'name', 'Park-Klinik Weißensee'),
(71862, 60941, 'no_lang_code', 'name', 'Storch und Beller'),
(71863, 60942, 'de', 'name', 'Krankenhaus Jerusalem'),
(71864, 60943, 'de', 'name', 'Parkinson-Klinik Ortenau'),
(71865, 60944, 'no_lang_code', 'name', 'Pulmonx (Switzerland)'),
(71866, 60945, 'de', 'name', 'Parkklinik Wiesbaden Schlangenbad'),
(71867, 60946, 'no_lang_code', 'name', 'Pentracor (Germany)'),
(71868, 60947, 'no_lang_code', 'name', 'Onkotrakt (Germany)'),
(71869, 60948, 'de', 'name', 'Physiotherapie und Lauftherapie Zentrum'),
(71870, 60949, 'no_lang_code', 'name', 'Onkovis (Germany)'),
(71871, 60950, 'no_lang_code', 'name', 'Schaper & Brümmer (Germany)'),
(71872, 60951, 'no_lang_code', 'name', 'Kona Medical (United States)'),
(71873, 60952, 'no_lang_code', 'name', 'Osypka (Germany)'),
(71874, 60953, 'de', 'name', 'Onkozentrum Dresden'),
(71875, 60954, 'no_lang_code', 'name', 'Diamant (Germany)'),
(71876, 60955, 'no_lang_code', 'name', 'QD Laser (Germany)'),
(71877, 60956, 'de', 'name', 'Krankenhaus Agatharied'),
(71878, 60957, 'no_lang_code', 'name', 'PharmaCept (Germany)'),
(71879, 60958, 'de', 'name', 'Schƶn Klinik Neustadt'),
(71880, 60959, 'de', 'name', 'Klinikum Würzburg Mitte'),
(71881, 60960, 'de', 'name', 'Alzheimer Schweiz'),
(71882, 60961, 'de', 'name', 'Investitionsbank Sachsen-Anhalt'),
(71883, 60962, 'it', 'name', 'Istituto delle Scienze Neurologiche di Bologna'),
(71884, 60963, 'no_lang_code', 'name', 'SCHWIND eye-tech-solutions (Germany)'),
(71885, 60964, 'no_lang_code', 'name', 'Isarna Therapeutics (Germany)'),
(71886, 60965, 'de', 'name', 'Informationszentrum für Sexualität und Gesundheit'),
(71887, 60966, 'de', 'name', 'Senatsverwaltung für Gesundheit, Pflege und Gleichstellung'),
(71888, 60967, 'no_lang_code', 'name', 'Itamar Medical (Israel)'),
(71889, 60968, 'no_lang_code', 'name', 'SeneCura Kliniken und Heime (Austria)'),
(71890, 60969, 'no_lang_code', 'name', 'Isotopen Technologien München (Germany)'),
(71891, 60970, 'no_lang_code', 'name', 'Septodont (France)'),
(71892, 60971, 'en', 'name', 'IVF Centers Prof. Zech'),
(71893, 60971, 'de', 'name', 'Willkommen in den IVF Zentren Prof. Zech'),
(71894, 60972, 'no_lang_code', 'name', 'Ivoclar Vivadent (Germany)'),
(71895, 60973, 'no_lang_code', 'name', 'Sevika Medical (Switzerland)'),
(71896, 60974, 'no_lang_code', 'name', 'KPMG (Australia)'),
(71897, 60975, 'no_lang_code', 'name', 'SIGNUS Medizintechnik (Germany)'),
(71898, 60976, 'no_lang_code', 'name', 'Qualissima (France)'),
(71899, 60977, 'no_lang_code', 'name', 'Agrokor (Croatia)'),
(71900, 60978, 'no_lang_code', 'name', 'SIGVARIS Group (Switzerland)'),
(71901, 60979, 'nl', 'name', 'ALS Centrum Nederland'),
(71902, 60980, 'no_lang_code', 'name', 'Sinclair Pharma'),
(71903, 60981, 'en', 'name', 'QUIRIS Healthcare'),
(71904, 60982, 'no_lang_code', 'name', 'novacare (Germany)'),
(71905, 60983, 'de', 'name', 'Jüdisches Krankenhaus Berlin'),
(71906, 60984, 'no_lang_code', 'name', 'Phonak (Germany)'),
(71907, 60985, 'de', 'name', 'SƤchsisches Krankenhaus Rodewisch'),
(71908, 60986, 'no_lang_code', 'name', 'Radiometer (Germany)'),
(71909, 60987, 'de', 'name', 'Raphaelsklinik Münster'),
(71910, 60988, 'no_lang_code', 'name', 'Juzo (Germany)'),
(71911, 60989, 'no_lang_code', 'name', 'Reck Technik (Germany)'),
(71912, 60990, 'en', 'name', 'Juliusspital Foundation'),
(71913, 60990, 'de', 'name', 'Stiftung Juliusspital'),
(71914, 60991, 'de', 'name', 'Sozialversicherung für Landwirtschaft, Forsten und Gartenbau'),
(71915, 60992, 'no_lang_code', 'name', 'Piramal (United Kingdom)'),
(71916, 60993, 'no_lang_code', 'name', 'K2M (United States)'),
(71917, 60994, 'no_lang_code', 'name', 'PlantTec Medical (Germany)'),
(71918, 60995, 'no_lang_code', 'name', 'Regedent (Switzerland)'),
(71919, 60996, 'no_lang_code', 'name', 'KA Medical (United States)'),
(71920, 60997, 'de', 'name', 'DRK Kamillus Klinik'),
(71921, 60998, 'en', 'name', 'Institute for Sports Medicine'),
(71922, 60998, 'de', 'name', 'Sportmedizinische Institut'),
(71923, 60999, 'de', 'name', 'Regio Kliniken'),
(71924, 61000, 'no_lang_code', 'name', 'Kaneka (Germany)'),
(71925, 61001, 'de', 'name', 'Poliklinik für Endokrinologie, Diabetologie und Präventivmedizin'),
(71926, 61002, 'de', 'name', 'Rehaklinik Glotterbad'),
(71927, 61003, 'de', 'name', 'Poliklinik für Präventive Zahnheilkunde und Kinderzahnheilkunde'),
(71928, 61004, 'de', 'name', 'SRH Wald-Klinikum Gera'),
(71929, 61005, 'de', 'name', 'Poliklinik für Zahnärztliche Prothetik'),
(71930, 61006, 'no_lang_code', 'name', 'Rehaptix'),
(71931, 61007, 'de', 'name', 'Karl Schlecht Stiftung'),
(71932, 61008, 'de', 'name', 'Poliklinik für Zahnärztliche Prothetik mit Propädeutik'),
(71933, 61009, 'de', 'name', 'Poliklinik für Zahnärztliche Prothetik und Werkstoffkunde'),
(71934, 61010, 'de', 'name', 'Rehazentrum Wilhelmshaven'),
(71935, 61011, 'no_lang_code', 'name', 'RelaxBogen (Germany)'),
(71936, 61012, 'en', 'name', 'German Insurance Association'),
(71937, 61012, 'de', 'name', 'Gesamtverband der Deutschen Versicherungswirtschaft'),
(71938, 61013, 'de', 'name', 'St. Elisabethen-Krankenhaus Frankfurt'),
(71939, 61014, 'de', 'name', 'Poliklinik für Zahnerhaltung und Parodontologie'),
(71940, 61015, 'no_lang_code', 'name', 'Karr Dental (Switzerland)'),
(71941, 61016, 'de', 'name', 'St. Marien- und St. Annastiftskrankenhaus'),
(71942, 61017, 'de', 'name', 'Kassenärztliche Vereinigung Baden-Württemberg'),
(71943, 61018, 'de', 'name', 'Post Apotheke'),
(71944, 61019, 'en', 'name', 'Republican Scientific and Practical Centre of Pulmonology and Tuberculosis'),
(71945, 61019, 'ru', 'name', 'Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр пульмонологии Šø Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»ŠµŠ·Š°'),
(71946, 61019, 'be', 'name', 'Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŠ°Š½ŃŠŗŃ– навукова-практычны Ń†ŃŠ½Ń‚Ń€ ŠæŃƒŠ»ŃŒŠ¼Š°Š½Š°Š»Š¾Š³Ń–Ń– і Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»Ń‘Š·Ńƒ'),
(71947, 61020, 'de', 'name', 'KassenƤrztliche Vereinigung Sachsen-Anhalt'),
(71948, 61021, 'de', 'name', 'St. Josefskrankenhaus Freiburg'),
(71949, 61022, 'de', 'name', 'St. Vinzenz Kliniken Pfronten im AllgƤu'),
(71950, 61023, 'no_lang_code', 'name', 'Precisis (Germany)'),
(71951, 61024, 'de', 'name', 'Katholisches Krankenhaus St. Johann Nepomuk'),
(71952, 61025, 'en', 'name', 'St. Josefs-Hospital Cloppenburg'),
(71953, 61026, 'de', 'name', 'KaufmƤnnische Krankenkasse'),
(71954, 61027, 'no_lang_code', 'name', 'Juno Therapeutics (Germany)'),
(71955, 61028, 'no_lang_code', 'name', 'Procon (Germany)'),
(71956, 61029, 'no_lang_code', 'name', 'Profound Medical (Canada)'),
(71957, 61030, 'no_lang_code', 'name', 'SteadySense (Austria)'),
(71958, 61031, 'no_lang_code', 'name', 'KCI (Germany)'),
(71959, 61032, 'no_lang_code', 'name', 'Provascular (Germany)'),
(71960, 61033, 'de', 'name', 'St. Mauritius Therapieklinik'),
(71961, 61034, 'de', 'name', 'rgb Onkologisches Management'),
(71962, 61035, 'no_lang_code', 'name', 'SteriPharm (Germany)'),
(71963, 61036, 'no_lang_code', 'name', 'KCI (Netherlands)'),
(71964, 61037, 'de', 'name', 'Landesbank Baden-Württemberg'),
(71965, 61038, 'no_lang_code', 'name', 'Merz (United States)'),
(71966, 61039, 'de', 'name', 'Universitätsklinik für Kinder und Jugendpsychiatrie'),
(71967, 61040, 'de', 'name', 'Stiftung Deutsche Depressionshilfe'),
(71968, 61041, 'de', 'name', 'Deutsche Stiftung Eierstockkrebs'),
(71969, 61042, 'no_lang_code', 'name', 'PSI CRO (United Kingdom)'),
(71970, 61043, 'de', 'name', 'KfH Kuratorium für Dialyse und Nierentransplantation'),
(71971, 61044, 'en', 'name', 'German Council for Scientific Information Infrastructures'),
(71972, 61044, 'de', 'name', 'Rat für Informationsinfrastrukturen'),
(71973, 61045, 'sv', 'name', 'Riddargatan 1'),
(71974, 61046, 'de', 'name', 'Deutsches Zentrum für Hochschul- und Wissenschaftsforschung'),
(71975, 61046, 'en', 'name', 'German Centre for Higher Education Research and Science Studies'),
(71976, 61047, 'no_lang_code', 'name', 'Unfallkasse Rheinland-Pfalz (Germany)'),
(71977, 61048, 'de', 'name', 'Rheinhessen-Fachklinik Mainz'),
(71978, 61049, 'en', 'name', 'University Clinic for Nephrology and Hypertension, Diabetology and Endocrinology'),
(71979, 61049, 'de', 'name', 'Universitätsklinik für Nieren- und Hochdruckkrankheiten, Diabetologie und Endokrinologie'),
(71980, 61050, 'de', 'name', 'Stiftung Irene'),
(71981, 61051, 'de', 'name', 'OrthopƤdische UniversitƤtsklinik'),
(71982, 61052, 'en', 'name', 'Reference Institute for Bioanalytics'),
(71983, 61052, 'de', 'name', 'Referenzinstitut für Bioanalytik'),
(71984, 61053, 'de', 'name', 'Vestische Caritas-Kliniken'),
(71985, 61054, 'de', 'name', 'Leppermühle'),
(71986, 61055, 'de', 'name', 'Vinzenzkrankenhaus Hannover'),
(71987, 61056, 'de', 'name', 'Rosenpark Klinik'),
(71988, 61057, 'de', 'name', 'Rotkreuzklinikum München'),
(71989, 61058, 'de', 'name', 'Rückenzentrum am Michel'),
(71990, 61059, 'de', 'name', 'Universitätsklinik für Stereotaktische Neurochirurgie'),
(71991, 61060, 'de', 'name', 'Universitätsklinik für Strahlentherapie'),
(71992, 61061, 'de', 'name', 'Rut- und Klaus-Bahlsen-Stiftung'),
(71993, 61062, 'no_lang_code', 'name', 'VITA (Germany)'),
(71994, 61063, 'no_lang_code', 'name', 'S-Biomedic (Germany)'),
(71995, 61064, 'en', 'name', 'Lucamed'),
(71996, 61065, 'de', 'name', 'SƤchsische Krebsgesellschaft'),
(71997, 61066, 'de', 'name', 'Stiftung Leben mit Krebs'),
(71998, 61067, 'en', 'name', 'Vitos Orthopedic Clinic Kassel'),
(71999, 61067, 'de', 'name', 'Vitos OrthopƤdische Klinik Kassel'),
(72000, 61068, 'de', 'name', 'MEDIAN Klaus-Miehlke-Klinik Wiesbaden'),
(72001, 61069, 'de', 'name', 'Klinik und Poliklinik für Psychotherapie und Psychosomatik'),
(72002, 61070, 'no_lang_code', 'name', 'VOCO (Germany)'),
(72003, 61071, 'de', 'name', 'Vogtland-Klinik'),
(72004, 61072, 'de', 'name', 'Stiftung Tumorforschung Kopf-Hals'),
(72005, 61073, 'no_lang_code', 'name', 'Vygon (Germany)'),
(72006, 61074, 'de', 'name', 'UniversitƤts-Frauenklinik des Saarlandes'),
(72007, 61075, 'no_lang_code', 'name', 'World of Medicine (Germany)'),
(72008, 61076, 'de', 'name', 'UniversitƤtskinderklinik'),
(72009, 61077, 'no_lang_code', 'name', 'Fujifilm (Germany)'),
(72010, 61078, 'de', 'name', 'Union zur Fƶrderung von Oel- und Proteinpflanzen e.V.'),
(72011, 61079, 'de', 'name', 'Theo und Friedl Schƶller-Stiftung'),
(72012, 61080, 'de', 'name', 'Waldburg-Zeil Kliniken'),
(72013, 61081, 'de', 'name', 'Schön Klinik Nürnberg Fürth'),
(72014, 61082, 'de', 'name', 'Waldkrankenhaus Rudolf Elle'),
(72015, 61083, 'de', 'name', 'Klinik Bad Bergzabern'),
(72016, 61084, 'de', 'name', 'Therapiezentrum Harburg'),
(72017, 61085, 'no_lang_code', 'name', 'TherapySelect (Germany)'),
(72018, 61086, 'en', 'name', 'Sudan Medical Specialization Board'),
(72019, 61087, 'de', 'name', 'Urologische Klinik München'),
(72020, 61088, 'no_lang_code', 'name', 'Ypsomed (Switzerland)'),
(72021, 61089, 'no_lang_code', 'name', 'Ypsomed (Germany)'),
(72022, 61090, 'no_lang_code', 'name', 'Süddeutsche Zuckerrübenverwertungs-Genossenschaft (Germany)'),
(72023, 61091, 'no_lang_code', 'name', 'Weleda (Switzerland)'),
(72024, 61092, 'de', 'name', 'ZahnƤrzte an der Kleinmachnower Schleuse Stahnsdorf'),
(72025, 61093, 'de', 'name', 'St. Maria-Hilf-Krankenhaus'),
(72026, 61094, 'no_lang_code', 'name', 'Top Caredent (Switzerland)'),
(72027, 61095, 'en', 'name', 'Dental Clinic of Bochum'),
(72028, 61095, 'de', 'name', 'Zahnklinik Bochum'),
(72029, 61096, 'no_lang_code', 'name', 'Zambon (Germany)'),
(72030, 61097, 'no_lang_code', 'name', 'Tƶpfer (Germany)'),
(72031, 61098, 'de', 'name', 'Aktion Pink'),
(72032, 61099, 'de', 'name', 'Verbundkrankenhaus Bernkastel'),
(72033, 61100, 'de', 'name', 'gesetzlichen Krankenversicherungen'),
(72034, 61100, 'no_lang_code', 'name', 'gkv informatik (Germany)'),
(72035, 61101, 'no_lang_code', 'name', 'WH Pharmawerk (Germany)'),
(72036, 61102, 'no_lang_code', 'name', 'Swisstom (Switzerland)'),
(72037, 61103, 'en', 'name', 'Starnberg Hospital'),
(72038, 61104, 'en', 'name', 'Labor Pachmann'),
(72039, 61105, 'de', 'name', 'Willi Drache Stiftung'),
(72040, 61106, 'no_lang_code', 'name', 'Remedent (Belgium)'),
(72041, 61107, 'de', 'name', 'Wirbelsäulen-Institut München'),
(72042, 61108, 'de', 'name', 'Wissenschaftliche Gesellschaft Freiburg'),
(72043, 61109, 'de', 'name', 'Klinik für Neuropädiatrie und Muskelerkrankungen'),
(72044, 61110, 'no_lang_code', 'name', 'Techniker Krankenkasse (Germany)'),
(72045, 61111, 'no_lang_code', 'name', 'Synimmune (Germany)'),
(72046, 61112, 'no_lang_code', 'name', 'TransTissue (Germany)'),
(72047, 61113, 'de', 'name', 'HNO Bad Bramstedt'),
(72048, 61114, 'de', 'name', 'Zentrum für Psychiatrie Emmendingen'),
(72049, 61115, 'no_lang_code', 'name', 'Syntellix (Germany)'),
(72050, 61116, 'de', 'name', 'Zentrum für Psychiatrie Südwürttemberg'),
(72051, 61117, 'no_lang_code', 'name', 'Trautwein (Germany)'),
(72052, 61118, 'en', 'name', 'World Childhood Foundation'),
(72053, 61119, 'de', 'name', 'Verband der Privaten Krankenversicherung'),
(72054, 61120, 'no_lang_code', 'name', 'Sysmex (Germany)'),
(72055, 61121, 'de', 'name', 'Zentrum für Therapeutisches Reiten Johannisberg e.V.'),
(72056, 61122, 'en', 'name', 'Slovenian Society of Anaesthesiology and Intensive Care Medicine'),
(72057, 61122, 'sl', 'name', 'Slovensko združenje za anesteziologijo in intenzivno medicino'),
(72058, 61123, 'no_lang_code', 'name', 'Zimmer Biomet (Switzerland)'),
(72059, 61124, 'de', 'name', 'Frauenklinik an der Elbe'),
(72060, 61125, 'no_lang_code', 'name', 'Asahi Kasei (Germany)'),
(72061, 61126, 'de', 'name', 'Zentrum für Zahn-, Mund- und Kieferheilkunde Poliklinik für Zahnerhaltung und Parodontologie'),
(72062, 61127, 'de', 'name', 'Poliklinik für Zahnärztliche Prothetik'),
(72063, 61128, 'en', 'name', 'Aboriginal Health and Medical Research Council of New South Wales'),
(72064, 61129, 'de', 'name', 'Zentrum für Pathologie und Zytodiagnostik'),
(72065, 61130, 'en', 'name', 'Central and North West Queensland Medicare Local'),
(72066, 61131, 'en', 'name', 'Adventist HealthCare'),
(72067, 61132, 'no_lang_code', 'name', 'Zur Rose Pharma (Germany)'),
(72068, 61133, 'en', 'name', 'Central Australian Remote Health Development Services'),
(72069, 61134, 'en', 'name', 'Maari Ma Health'),
(72070, 61135, 'en', 'name', 'Malabam Health Board Aboriginal Corporation'),
(72071, 61136, 'en', 'name', 'Rare Cancers Australia'),
(72072, 61137, 'en', 'name', 'GI Cancer Institute'),
(72073, 61138, 'en', 'name', 'Bloomhill Cancer Care'),
(72074, 61139, 'en', 'name', 'Cooperative Trials Group for Neuro-Oncology'),
(72075, 61140, 'en', 'name', 'Arts OutWest'),
(72076, 61141, 'en', 'name', 'MiiMi Aboriginal Corporation'),
(72077, 61142, 'en', 'name', 'Dandenong Ranges Music Council'),
(72078, 61143, 'en', 'name', 'Boronia Multicultural Services'),
(72079, 61144, 'en', 'name', 'South Coast Medical Service Aboriginal Corporation'),
(72080, 61145, 'en', 'name', 'Brain Tumour Alliance Australia'),
(72081, 61146, 'en', 'name', 'Far West Local Health District'),
(72082, 61147, 'en', 'name', 'Australia and New Zealand Melanoma Trials Group'),
(72083, 61148, 'en', 'name', 'Counterpart'),
(72084, 61149, 'en', 'name', 'Australia New Zealand Gynaecological Oncology Group'),
(72085, 61150, 'en', 'name', 'ANZCHOG'),
(72086, 61151, 'en', 'name', 'Breast Cancer Network Australia'),
(72087, 61152, 'en', 'name', 'Goulburn Valley Health'),
(72088, 61153, 'en', 'name', 'Bulgarr Ngaru Medical Aboriginal Corporation'),
(72089, 61154, 'en', 'name', 'Illawarra Women''s Health Centre'),
(72090, 61155, 'en', 'name', 'Maralinga Tjarutja'),
(72091, 61156, 'en', 'name', 'Tharawal Aboriginal'),
(72092, 61157, 'en', 'name', 'Indigenous Wellbeing Centre'),
(72093, 61158, 'en', 'name', 'Paediatric Integrated Cancer Service'),
(72094, 61159, 'en', 'name', 'Ishar Multicultural Women''s Health Centre'),
(72095, 61160, 'en', 'name', 'Jacaranda Community Centre'),
(72096, 61161, 'da', 'name', 'Dansk Centralbibliotek for Sydslesvig'),
(72097, 61162, 'no_lang_code', 'name', 'Kalwun (Australia)'),
(72098, 61163, 'en', 'name', 'Kildonan UnitingCare'),
(72099, 61164, 'en', 'name', 'CanRevive'),
(72100, 61165, 'en', 'name', 'Kimberley Aboriginal Medical Services'),
(72101, 61166, 'en', 'name', 'Kurranulla Aboriginal Corporation'),
(72102, 61167, 'en', 'name', 'Liverpool Women''s Health Centre'),
(72103, 61168, 'en', 'name', 'Aboriginal Health Council of South Australia'),
(72104, 61169, 'en', 'name', 'Walgett Aboriginal Medical Service'),
(72105, 61170, 'en', 'name', 'Wellington Aboriginal Corporation Health Service'),
(72106, 61171, 'en', 'name', 'Western Sydney Community Forum'),
(72107, 61172, 'en', 'name', 'Western NSW Local Health District'),
(72108, 61173, 'no_lang_code', 'name', 'Winanga-Li'),
(72109, 61174, 'en', 'name', 'Bear Valley'),
(72110, 61175, 'en', 'name', 'Center for the Improvement of Child Caring'),
(72111, 61176, 'en', 'name', 'Gemstone Foundation'),
(72112, 61177, 'en', 'name', 'Divya Shanthi Christian Association and Trust'),
(72113, 61178, 'en', 'name', 'Genetic Information Research Institute'),
(72114, 61179, 'en', 'name', 'Center for the Study of State and Society'),
(72115, 61179, 'es', 'name', 'Centro para el Estudio del Estado y la Sociedad'),
(72116, 61180, 'en', 'name', 'Alice Hamilton Occupational Health Center'),
(72117, 61181, 'en', 'name', 'Dominican Women''s Development Center'),
(72118, 61182, 'en', 'name', 'Center for World Indigenous Studies'),
(72119, 61183, 'en', 'name', 'Penn Highlands DuBois'),
(72120, 61184, 'en', 'name', 'Global Alzheimer''s Platform Foundation'),
(72121, 61185, 'no_lang_code', 'name', 'Centerline Digital (United States)'),
(72122, 61186, 'en', 'name', 'Global Biological Standards Institute'),
(72123, 61187, 'en', 'name', 'MidMichigan Medical Center - Alpena'),
(72124, 61188, 'en', 'name', 'Bioelectromagnetics Society'),
(72125, 61189, 'en', 'name', 'Central Brain Tumor Registry of the United States'),
(72126, 61190, 'en', 'name', 'American Academy of Health Behavior'),
(72127, 61191, 'en', 'name', 'Aspirus Ironwood Hospital'),
(72128, 61192, 'en', 'name', 'Central Park West Health Center'),
(72129, 61193, 'en', 'name', 'Great Lakes Environmental Center'),
(72130, 61194, 'en', 'name', 'Centre For Digestive Diseases'),
(72131, 61195, 'en', 'name', 'Lakewood Health System'),
(72132, 61196, 'en', 'name', 'Grinnell Regional Medical Center'),
(72133, 61197, 'en', 'name', 'American Association for Cancer Education'),
(72134, 61198, 'en', 'name', 'Gritman Medical Center'),
(72135, 61199, 'en', 'name', 'Gulf Marine Institute of Technology'),
(72136, 61200, 'en', 'name', 'American Health Research Institute'),
(72137, 61201, 'en', 'name', 'Chesterfield Family Practice Center'),
(72138, 61202, 'en', 'name', 'St. Francis Foundation'),
(72139, 61203, 'en', 'name', 'Everglades Area Health Education Center'),
(72140, 61204, 'en', 'name', 'Hayward Area Memorial Hospital'),
(72141, 61205, 'en', 'name', 'American Pancreatic Association'),
(72142, 61206, 'en', 'name', 'Southeast Health District'),
(72143, 61207, 'en', 'name', 'Northern New Mexico Health Center'),
(72144, 61208, 'en', 'name', 'The Evolution Institute'),
(72145, 61209, 'en', 'name', 'American Psychopathological Association'),
(72146, 61210, 'en', 'name', 'Health Strategy and Policy Institute'),
(72147, 61210, 'vi', 'name', 'Viện Chiįŗæn lược vĆ  ChĆ­nh sĆ”ch Y tįŗæ'),
(72148, 61211, 'en', 'name', 'Healthcare Association of New York State'),
(72149, 61212, 'en', 'name', 'Kansas City Indian Center'),
(72150, 61213, 'en', 'name', 'Children''s Diagnostic & Treatment Center'),
(72151, 61214, 'en', 'name', 'American Society for Apheresis'),
(72152, 61215, 'en', 'name', 'Heart Valve Society of America'),
(72153, 61216, 'en', 'name', 'Mile Bluff Medical Center'),
(72154, 61217, 'en', 'name', 'Family Guidance Centers'),
(72155, 61218, 'en', 'name', 'Family Healthcare'),
(72156, 61219, 'en', 'name', 'Hilo Medical Center'),
(72157, 61220, 'en', 'name', 'Ferre Institute'),
(72158, 61221, 'en', 'name', 'California Northstate University'),
(72159, 61222, 'en', 'name', 'American Tai Chi and Qigong Association'),
(72160, 61223, 'en', 'name', 'Lutheran SeniorLife'),
(72161, 61224, 'en', 'name', 'Ferry County Memorial Hospital'),
(72162, 61225, 'en', 'name', 'Flagstaff Medical Center'),
(72163, 61226, 'en', 'name', 'Androgen Excess and PCOS Society'),
(72164, 61227, 'en', 'name', 'Suncoast Hospice Institute'),
(72165, 61228, 'en', 'name', 'Hospital Consortium of San Mateo County'),
(72166, 61229, 'en', 'name', 'Milwaukee Emergency Center for Animals'),
(72167, 61230, 'en', 'name', 'Foundation for Worker, Veteran and Environmental Health'),
(72168, 61231, 'de', 'name', 'Hospital zum Heiligen Geist'),
(72169, 61232, 'es', 'name', 'CONAPAC'),
(72170, 61232, 'en', 'name', 'Civil Association for Conservation of the Peruvian Amazon Environment'),
(72171, 61233, 'en', 'name', 'Anson County Health Department'),
(72172, 61234, 'en', 'name', 'St. Gallen Oncology Conferences'),
(72173, 61235, 'en', 'name', 'Four Winds Hospital'),
(72174, 61236, 'en', 'name', 'Clear Lake Medical Foundation'),
(72175, 61237, 'en', 'name', 'Clearwater Valley Hospital and Clinics'),
(72176, 61238, 'en', 'name', 'Canton-Potsdam Hospital'),
(72177, 61239, 'en', 'name', 'Carolinas Hospital System'),
(72178, 61240, 'no_lang_code', 'name', 'Cleveland Research (United States)'),
(72179, 61241, 'en', 'name', 'Caron'),
(72180, 61242, 'en', 'name', 'Catholic Leadership Institute'),
(72181, 61243, 'en', 'name', 'Hussman Institute for Autism'),
(72182, 61244, 'en', 'name', 'Association of American Cancer Institutes'),
(72183, 61245, 'en', 'name', 'G.A. Carmichael Family Health Center'),
(72184, 61246, 'en', 'name', 'Association for Chemoreception Sciences'),
(72185, 61247, 'en', 'name', 'Association for Utah Community Health'),
(72186, 61248, 'en', 'name', 'Telligen'),
(72187, 61249, 'en', 'name', 'Columbus Center'),
(72188, 61250, 'en', 'name', 'Association of Black Cardiologists'),
(72189, 61251, 'en', 'name', 'Institute for Global Ethics'),
(72190, 61252, 'en', 'name', 'Center for Human Genetics'),
(72191, 61253, 'en', 'name', 'Association of Black Health-System Pharmacists'),
(72192, 61254, 'en', 'name', 'Association of Oncology Social Work'),
(72193, 61255, 'en', 'name', 'Conquer Chiari'),
(72194, 61256, 'en', 'name', 'Institute for Rare and Neglected Diseases Drug Discovery'),
(72195, 61257, 'en', 'name', 'Institute for Research and Evaluation'),
(72196, 61258, 'en', 'name', 'Iron Disorders Institute'),
(72197, 61259, 'en', 'name', 'Cooley Dickinson Health Care'),
(72198, 61260, 'en', 'name', 'The Coordinating Center'),
(72199, 61261, 'en', 'name', 'Center for Neurologic Study'),
(72200, 61262, 'en', 'name', 'Copper Queen Community Hospital'),
(72201, 61263, 'en', 'name', 'Association for Academic Minority Physicians'),
(72202, 61264, 'en', 'name', 'Critical Illness & Trauma Foundation'),
(72203, 61265, 'en', 'name', 'Center for Public Service Communications'),
(72204, 61266, 'en', 'name', 'J.C. Blair Memorial Hospital'),
(72205, 61267, 'en', 'name', 'Banner Thunderbird Medical Center'),
(72206, 61268, 'en', 'name', 'Jackson Medical Mall Thad Cochran Center'),
(72207, 61269, 'en', 'name', 'Memphis Center For Reproductive Health'),
(72208, 61270, 'en', 'name', 'AHEC West'),
(72209, 61271, 'en', 'name', 'Jefferson Healthcare'),
(72210, 61272, 'en', 'name', 'Center for Research Strategies'),
(72211, 61273, 'en', 'name', 'Bartlett Regional Hospital'),
(72212, 61274, 'en', 'name', 'International Society for Applied Cardiovascular Biology'),
(72213, 61275, 'en', 'name', 'Johns Hopkins Berman Institute of Bioethics'),
(72214, 61276, 'en', 'name', 'International Cannabinoid Research Society'),
(72215, 61277, 'en', 'name', 'Juvenile Protective Association'),
(72216, 61278, 'en', 'name', 'International Eosinophil Society'),
(72217, 61279, 'en', 'name', 'Maryland Medical Research Institute'),
(72218, 61280, 'en', 'name', 'Kawasaki Disease Foundation'),
(72219, 61281, 'en', 'name', 'International Neuroethics Society'),
(72220, 61282, 'en', 'name', 'Natural Philosophy Institute'),
(72221, 61283, 'en', 'name', 'Trios Health'),
(72222, 61284, 'en', 'name', 'The Performance Institute'),
(72223, 61285, 'en', 'name', 'International Neuromodulation Society'),
(72224, 61286, 'en', 'name', 'Massachusetts Health & Hospital Association'),
(72225, 61287, 'en', 'name', 'The Knee Society'),
(72226, 61288, 'no_lang_code', 'name', 'International Pemphigus & Pemphigoid Foundation'),
(72227, 61289, 'en', 'name', 'International Society for Heart Research'),
(72228, 61290, 'en', 'name', 'International Society of Differentiation'),
(72229, 61291, 'en', 'name', 'International Society for Neuroethology'),
(72230, 61292, 'en', 'name', 'Pikeville Medical Center'),
(72231, 61293, 'en', 'name', 'International Society for Cellular Therapy'),
(72232, 61294, 'en', 'name', 'Kona Community Hospital'),
(72233, 61295, 'en', 'name', 'International Society for Quality of Life Research'),
(72234, 61296, 'en', 'name', 'Avera McKennan Hospital & University Health Center'),
(72235, 61297, 'en', 'name', 'Neosho Memorial Regional Medical Center'),
(72236, 61298, 'en', 'name', 'International Behavioral Neuroscience Society'),
(72237, 61299, 'en', 'name', 'Nepal Fertility Care Center'),
(72238, 61300, 'en', 'name', 'Shandong Chest Hospital'),
(72239, 61301, 'en', 'name', 'The Foundation for Peripheral Neuropathy'),
(72240, 61302, 'no_lang_code', 'name', 'Sign Media (United States)'),
(72241, 61303, 'en', 'name', 'New Hampshire Nurses'' Association'),
(72242, 61304, 'en', 'name', 'Mercy Fitzgerald Hospital'),
(72243, 61305, 'en', 'name', 'Providence Community Health Centers'),
(72244, 61306, 'en', 'name', 'Skin Science Institute'),
(72245, 61307, 'en', 'name', 'Foundation of New York State Nurses'),
(72246, 61308, 'en', 'name', 'Society for Acupuncture Research'),
(72247, 61309, 'es', 'name', 'Yo quiero Yo puedo'),
(72248, 61310, 'en', 'name', 'Laureate Psychiatric Clinic and Hospital'),
(72249, 61311, 'en', 'name', 'Niagara Falls Memorial Medical Center'),
(72250, 61312, 'en', 'name', 'Microcirculatory Society'),
(72251, 61313, 'en', 'name', 'PrimaryPlus'),
(72252, 61314, 'en', 'name', 'Noyes Memorial Hospital'),
(72253, 61315, 'en', 'name', 'Society for Invertebrate Pathology'),
(72254, 61316, 'en', 'name', 'Society for Neuroeconomics'),
(72255, 61317, 'no_lang_code', 'name', 'MizMedi Hospital'),
(72256, 61318, 'en', 'name', 'The Lloyd Society'),
(72257, 61319, 'en', 'name', 'Moebius Syndrome Foundation'),
(72258, 61320, 'en', 'name', 'North American Hair Research Society'),
(72259, 61321, 'en', 'name', 'Monadnock Community Hospital'),
(72260, 61322, 'en', 'name', 'Society on Neuroimmune Pharmacology'),
(72261, 61323, 'en', 'name', 'South Bend Medical Foundation'),
(72262, 61324, 'en', 'name', 'Mercy Health - Lorain Hospital'),
(72263, 61325, 'en', 'name', 'The Morton Center'),
(72264, 61326, 'en', 'name', 'North Little Rock Health Department'),
(72265, 61327, 'en', 'name', 'Catholic Charities Archdiocese of Washington'),
(72266, 61328, 'en', 'name', 'Northeastern Mental Health Center'),
(72267, 61329, 'en', 'name', 'Spanish Peaks Regional Health Center'),
(72268, 61330, 'en', 'name', 'Flint Hills Community Health Center'),
(72269, 61331, 'en', 'name', 'Northern Westchester Hospital'),
(72270, 61332, 'no_lang_code', 'name', 'Safecor (United States)'),
(72271, 61333, 'no_lang_code', 'name', 'Macrogen (South Korea)'),
(72272, 61333, 'ko', 'name', '마크딜젠'),
(72273, 61334, 'en', 'name', 'St. James Mercy Hospital'),
(72274, 61335, 'en', 'name', 'Odessa Memorial Healthcare Center'),
(72275, 61336, 'en', 'name', 'Madison County Health Department'),
(72276, 61337, 'en', 'name', 'St. Joseph Hospital'),
(72277, 61338, 'en', 'name', 'Oklahoma Blood Institute'),
(72278, 61339, 'en', 'name', 'FamilieSCN2A Foundation'),
(72279, 61340, 'en', 'name', 'Maine Hospital Association'),
(72280, 61341, 'en', 'name', 'St. Peter’s Child Development Center'),
(72281, 61342, 'en', 'name', 'Oregon Law Center'),
(72282, 61343, 'en', 'name', 'Tropical Disease Foundation'),
(72283, 61344, 'en', 'name', 'St. Petersburg School of Religion and Philosophy'),
(72284, 61344, 'ru', 'name', 'Центр Š½Š°ŃƒŃ‡Š½Š¾-ŠæŃ€Š¾ŃŠ²ŠµŃ‚ŠøŃ‚ŠµŠ»ŃŒŃŠŗŠøŃ… Šø религиозно-философских программ'),
(72285, 61345, 'en', 'name', 'Our Lady of the Lake Children''s Hospital'),
(72286, 61346, 'en', 'name', 'Stereology Resource Center'),
(72287, 61347, 'en', 'name', 'Pacific Tuberculosis and Cancer Research'),
(72288, 61348, 'en', 'name', 'European School of Oncology'),
(72289, 61349, 'en', 'name', 'The PANSS Institute'),
(72290, 61350, 'en', 'name', 'Syosset Hospital'),
(72291, 61351, 'en', 'name', 'Taylor Regional Hospital'),
(72292, 61352, 'en', 'name', 'Tri Center'),
(72293, 61353, 'en', 'name', 'Tri-State Community Health Center'),
(72294, 61354, 'en', 'name', 'Tri-County Community Mental Health Center'),
(72295, 61355, 'en', 'name', 'San Francisco Medical Society'),
(72296, 61356, 'en', 'name', 'Facial Pain Association'),
(72297, 61357, 'de', 'name', 'Krankenhaus Waldfriede'),
(72298, 61358, 'en', 'name', 'United Leukodystrophy Foundation'),
(72299, 61359, 'en', 'name', 'Action Potential'),
(72300, 61360, 'en', 'name', 'Weisenthal Cancer Group'),
(72301, 61361, 'no_lang_code', 'name', 'Universal Cells (United States)'),
(72302, 61362, 'en', 'name', 'Utah AIDS Foundation'),
(72303, 61363, 'no_lang_code', 'name', 'Universe Technical Translation (United States)'),
(72304, 61364, 'en', 'name', 'West End Revitalization Association'),
(72305, 61365, 'en', 'name', 'William W Backus Hospital'),
(72306, 61366, 'en', 'name', 'Raymond G. Murphy VA Medical Center'),
(72307, 61367, 'en', 'name', 'Western Governors Association'),
(72308, 61368, 'en', 'name', 'Wind Hollow Foundation'),
(72309, 61369, 'en', 'name', 'Visiting Nurse Association'),
(72310, 61370, 'en', 'name', 'Wound Healing Society'),
(72311, 61371, 'en', 'name', 'National Association of Hispanic Nurses'),
(72312, 61372, 'no_lang_code', 'name', 'Winston Pharmaceuticals (United States)'),
(72313, 61373, 'en', 'name', 'National Association of Women Judges'),
(72314, 61374, 'en', 'name', 'National Association on Drug Abuse Problems'),
(72315, 61375, 'es', 'name', 'Instituto Nacional de Investigación en Salud Pública'),
(72316, 61376, 'en', 'name', 'Women''s Resource Center'),
(72317, 61377, 'no_lang_code', 'name', 'Algomedix (United States)'),
(72318, 61378, 'en', 'name', 'National Center of Security and Protection'),
(72319, 61379, 'no_lang_code', 'name', 'Delpor (United States)'),
(72320, 61380, 'no_lang_code', 'name', 'Dfusion (United States)'),
(72321, 61381, 'no_lang_code', 'name', 'Behavioral Diagnostics (United States)'),
(72322, 61382, 'no_lang_code', 'name', 'IsoPlexis (United States)'),
(72323, 61383, 'no_lang_code', 'name', 'PDX Pharmaceuticals (United States)'),
(72324, 61384, 'no_lang_code', 'name', 'Seven Bridges Genomics (United States)'),
(72325, 61385, 'no_lang_code', 'name', 'JT Pharmaceuticals (United States)'),
(72326, 61386, 'no_lang_code', 'name', 'BioVinc (United States)'),
(72327, 61387, 'no_lang_code', 'name', 'Digital Artefacts (United States)'),
(72328, 61388, 'no_lang_code', 'name', 'Perfusion Solution (United States)'),
(72329, 61389, 'no_lang_code', 'name', 'GeneTAG Technology (United States)'),
(72330, 61390, 'no_lang_code', 'name', 'Collaborations Pharmaceuticals (United States)'),
(72331, 61391, 'no_lang_code', 'name', 'Progenitec (United States)'),
(72332, 61392, 'no_lang_code', 'name', 'GlucoSentient (United States)'),
(72333, 61393, 'no_lang_code', 'name', 'CrossLife Technologies (United States)'),
(72334, 61394, 'no_lang_code', 'name', 'HelixBind (United States)'),
(72335, 61395, 'no_lang_code', 'name', 'NanoHybrids (United States)'),
(72336, 61396, 'no_lang_code', 'name', 'Sinopia Biosciences (United States)'),
(72337, 61397, 'no_lang_code', 'name', 'Media Rez (United States)'),
(72338, 61398, 'no_lang_code', 'name', 'OneVax (United States)'),
(72339, 61399, 'no_lang_code', 'name', 'Myolex (United States)'),
(72340, 61400, 'en', 'name', 'Caucaseco Scientific Research Center'),
(72341, 61400, 'es', 'name', 'Centro de Investigación Científica Caucaseco'),
(72342, 61401, 'no_lang_code', 'name', 'Vascular BioSciences (United States)'),
(72343, 61402, 'no_lang_code', 'name', 'N2 Biomedical (United States)'),
(72344, 61403, 'no_lang_code', 'name', 'Q-State Biosciences (United States)'),
(72345, 61404, 'no_lang_code', 'name', 'Regenerative Medical Solutions (United States)'),
(72346, 61405, 'no_lang_code', 'name', 'NutritionQuest (United States)'),
(72347, 61406, 'no_lang_code', 'name', 'Accutest (India)'),
(72348, 61407, 'no_lang_code', 'name', 'Drs. Fine, Hoffman & Sims'),
(72349, 61408, 'no_lang_code', 'name', 'ActivMed Practices & Research (United States)'),
(72350, 61409, 'no_lang_code', 'name', 'Ribometrix (United States)'),
(72351, 61410, 'en', 'name', 'Berkshire Health Systems'),
(72352, 61411, 'en', 'name', 'Christiana Gynecologic Oncology'),
(72353, 61412, 'en', 'name', 'HealthCare Partners Medical Group'),
(72354, 61413, 'no_lang_code', 'name', 'Bio-Images Drug Delivery (United Kingdom)'),
(72355, 61414, 'no_lang_code', 'name', 'Biocinese (Brazil)'),
(72356, 61414, 'pt', 'name', 'Centro de Estudos BiofarmacĆŖuticos'),
(72357, 61415, 'en', 'name', 'Heartland Hematology and Oncology'),
(72358, 61416, 'en', 'name', 'Aga Khan Development Network'),
(72359, 61417, 'no_lang_code', 'name', 'Aggredyne (United States)'),
(72360, 61418, 'no_lang_code', 'name', 'Bioenergy Life Science (United States)'),
(72361, 61419, 'no_lang_code', 'name', 'Sun Pharma (United States)'),
(72362, 61420, 'no_lang_code', 'name', 'Ajinomoto (United States)'),
(72363, 61421, 'no_lang_code', 'name', 'BioScience Laboratories (United States)'),
(72364, 61422, 'en', 'name', 'Eastern Connecticut Hematology and Oncology Associates'),
(72365, 61423, 'en', 'name', 'Alaska Breast Care & Surgery'),
(72366, 61424, 'no_lang_code', 'name', 'Boehringer Ingelheim (Argentina)'),
(72367, 61425, 'en', 'name', 'Hematology and Oncology Associates of Northeastern Pennsylvania'),
(72368, 61426, 'no_lang_code', 'name', 'Boston Medical Group (Colombia)'),
(72369, 61427, 'en', 'name', 'Alaska Oncology & Hematology'),
(72370, 61428, 'no_lang_code', 'name', 'Eugonia'),
(72371, 61428, 'el', 'name', 'Ευγονία'),
(72372, 61429, 'en', 'name', 'Boulder Neurosurgical & Spine Associates'),
(72373, 61430, 'en', 'name', 'Brain Matters Research'),
(72374, 61431, 'en', 'name', 'Hematology Oncology Associates of Fredericksburg'),
(72375, 61432, 'en', 'name', 'Bronson Battle Creek Hospital'),
(72376, 61433, 'no_lang_code', 'name', 'Evidation Health (United States)'),
(72377, 61434, 'en', 'name', 'C.I. Trials'),
(72378, 61435, 'no', 'name', 'Evjeklinikken'),
(72379, 61436, 'en', 'name', 'Center for Environment and Community Assets Development'),
(72380, 61436, 'vi', 'name', 'Trung tĆ¢m MĆ“i trĘ°į»ng vĆ  PhĆ”t triển Nguồn lį»±c Cį»™ng đồng'),
(72381, 61437, 'en', 'name', 'Excelsior Orthopaedics'),
(72382, 61438, 'en', 'name', 'Alaska Women''s Cancer Care'),
(72383, 61439, 'no_lang_code', 'name', 'Chugai Pharma (United States)'),
(72384, 61440, 'en', 'name', 'California Allergy and Asthma Medical Group'),
(72385, 61441, 'en', 'name', 'Hematology Oncology Associates'),
(72386, 61442, 'no_lang_code', 'name', 'Investor (Sweden)'),
(72387, 61443, 'pt', 'name', 'Faculdade de Medicina de Petrópolis'),
(72388, 61444, 'en', 'name', 'Hematology Oncology Consultants'),
(72389, 61445, 'en', 'name', 'Hematology Oncology Consultants'),
(72390, 61446, 'no_lang_code', 'name', 'Allergan (Taiwan)'),
(72391, 61447, 'en', 'name', 'Cancer Care of Western North Carolina'),
(72392, 61448, 'sv', 'name', 'Fertilitetscentrum'),
(72393, 61449, 'en', 'name', 'American Joint Replacement Registry'),
(72394, 61450, 'en', 'name', 'First Dayton CyberKnife'),
(72395, 61451, 'en', 'name', 'Hematology & Oncology Consultants'),
(72396, 61452, 'no_lang_code', 'name', 'Cliantha (India)'),
(72397, 61453, 'en', 'name', 'Anchorage Associates in Radiation Medicine'),
(72398, 61454, 'en', 'name', 'Antalya IVF'),
(72399, 61455, 'en', 'name', 'Florida Urology Associates'),
(72400, 61456, 'fr', 'name', 'Languedoc MutualitƩ'),
(72401, 61457, 'en', 'name', 'Cardiovascular Research Associates'),
(72402, 61458, 'no_lang_code', 'name', 'Care Team Solutions (United States)'),
(72403, 61459, 'fr', 'name', 'Clinique Claude-Bernard'),
(72404, 61460, 'it', 'name', 'Epatocentro Ticino'),
(72405, 61461, 'no_lang_code', 'name', 'Caris Life Sciences (United States)'),
(72406, 61462, 'en', 'name', 'Highlands Oncology Group'),
(72407, 61463, 'fr', 'name', 'Clinique Mutualiste La Sagesse'),
(72408, 61464, 'no_lang_code', 'name', 'Apollo Endosurgery (United States)'),
(72409, 61465, 'fr', 'name', 'Clinique du Grand Large'),
(72410, 61466, 'en', 'name', 'Carolina Arthritis Associates'),
(72411, 61467, 'no_lang_code', 'name', 'Apotex (United States)'),
(72412, 61468, 'en', 'name', 'Carolina Performance'),
(72413, 61469, 'fr', 'name', 'Clinique du MillƩnaire'),
(72414, 61470, 'en', 'name', 'Fox Valley Surgical Associates'),
(72415, 61471, 'en', 'name', 'Carolina Urology Partners'),
(72416, 61472, 'en', 'name', 'Aria - Jefferson Health'),
(72417, 61473, 'fr', 'name', 'HƓpital Couple Enfant'),
(72418, 61474, 'fr', 'name', 'Clinique Hartmann'),
(72419, 61475, 'en', 'name', 'Franciscan Health Indianapolis'),
(72420, 61476, 'es', 'name', 'Centro de Infertilidad y Reproducción Humana'),
(72421, 61477, 'en', 'name', 'Arizona Pain Specialists'),
(72422, 61478, 'fr', 'name', 'Clinique Neuro-Outaouais'),
(72423, 61479, 'fr', 'name', 'HƓpital EuropƩen'),
(72424, 61480, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Spain)'),
(72425, 61481, 'en', 'name', 'Franciscan Health Mooresville'),
(72426, 61482, 'en', 'name', 'Arthritis and Rheumatic Disease Specialties'),
(72427, 61483, 'fr', 'name', 'HÓpital Jean Jaurès'),
(72428, 61484, 'en', 'name', 'Arthritis Northwest'),
(72429, 61485, 'en', 'name', 'Franciscan St Anthony Health – Michigan City'),
(72430, 61486, 'fr', 'name', 'Clinique Victor Hugo'),
(72431, 61487, 'en', 'name', 'Asheville Hematology & Oncology'),
(72432, 61488, 'en', 'name', 'Freeman Health System'),
(72433, 61489, 'fr', 'name', 'L''HƓpital Nord Franche-ComtƩ'),
(72434, 61490, 'fr', 'name', 'Centre Hospitalier CompiĆØgne-Noyon'),
(72435, 61491, 'es', 'name', 'Asociación Colombiana de Diabetes'),
(72436, 61492, 'no_lang_code', 'name', 'CMIC Group (Japan)'),
(72437, 61493, 'fr', 'name', 'HƓpital PrivƩ Jean Mermo'),
(72438, 61494, 'en', 'name', 'Coastal Orthopedics'),
(72439, 61495, 'pt', 'name', 'Fundação Altino Ventura'),
(72440, 61496, 'fr', 'name', 'Centre Hospitalier de Bigorre'),
(72441, 61497, 'en', 'name', 'Assisting Nature'),
(72442, 61498, 'pt', 'name', 'Fundação Bahiana de Infectologia'),
(72443, 61499, 'en', 'name', 'Horizon Oncology Center'),
(72444, 61500, 'en', 'name', 'Collier Neurologic Specialists'),
(72445, 61501, 'en', 'name', 'Associated Neurologists of Southern Connecticut'),
(72446, 61502, 'es', 'name', 'Fundación Neumológica Colombiana'),
(72447, 61503, 'en', 'name', 'Associates in Women’s Health'),
(72448, 61504, 'en', 'name', 'HƓtel-Dieu Grace Healthcare'),
(72449, 61505, 'no_lang_code', 'name', 'Columbia Asia'),
(72450, 61506, 'no_lang_code', 'name', 'Hoya Surgical Optics (United States)'),
(72451, 61507, 'no_lang_code', 'name', 'NestlƩ (Belgium)'),
(72452, 61508, 'en', 'name', 'Chesapeake Urology Associates'),
(72453, 61509, 'en', 'name', 'Columbus Oncology and Hematology Associates'),
(72454, 61510, 'en', 'name', 'Galiz Research'),
(72455, 61511, 'en', 'name', 'Chicago Anesthesia Pain Specialists'),
(72456, 61512, 'en', 'name', 'Gaston Hematology & Oncology Associates'),
(72457, 61513, 'en', 'name', 'Joliet Oncology-Hematology Associates'),
(72458, 61514, 'pt', 'name', 'Gastrocirurgia de BrasĆ­lia'),
(72459, 61515, 'en', 'name', 'Compassionate Cancer Care'),
(72460, 61516, 'no_lang_code', 'name', 'Huons (South Korea)'),
(72461, 61517, 'en', 'name', 'Austin Speech Labs'),
(72462, 61518, 'en', 'name', 'Huron Gastro'),
(72463, 61519, 'no_lang_code', 'name', 'General Electric (Spain)'),
(72464, 61520, 'en', 'name', 'Congenital Muscle Disease International Registry'),
(72465, 61521, 'no_lang_code', 'name', 'Novita Healthcare (Australia)'),
(72466, 61522, 'en', 'name', 'Kaiser Permanente Baldwin Park Medical Center'),
(72467, 61523, 'en', 'name', 'Kaiser Permanente West Los Angeles Medical Center'),
(72468, 61524, 'no_lang_code', 'name', 'Azienda di Servizi alla Persona di Pavia (Italy)'),
(72469, 61525, 'no_lang_code', 'name', 'Genmab (United States)'),
(72470, 61526, 'en', 'name', 'Kaiser Permanente Franklin Medical Offices'),
(72471, 61527, 'no_lang_code', 'name', 'Icon (United States)'),
(72472, 61528, 'en', 'name', 'Kaiser Permanente Orange County Irvine Medical Center'),
(72473, 61529, 'no_lang_code', 'name', 'Cosmos Technologies (United States)'),
(72474, 61530, 'en', 'name', 'Kaiser Permanente Lone Tree Medical Offices'),
(72475, 61531, 'en', 'name', 'Kaiser Permanente Modesto Medical Center and Medical Offices'),
(72476, 61532, 'no_lang_code', 'name', 'Gilead Sciences (France)'),
(72477, 61533, 'en', 'name', 'Icon Early Phase Services'),
(72478, 61534, 'en', 'name', 'European Society for Blood and Marrow Transplantation'),
(72479, 61535, 'en', 'name', 'Kaiser Permanente Richmond Medical Center'),
(72480, 61536, 'en', 'name', 'Kaiser Permanente Rock Creek Medical Offices'),
(72481, 61537, 'en', 'name', 'Global Alliance for Regenerative Medicine'),
(72482, 61538, 'en', 'name', 'Baptist Health Corbin'),
(72483, 61539, 'en', 'name', 'Barney''s Pharmacy'),
(72484, 61540, 'en', 'name', 'Kaiser Permanente Zion Medical Center'),
(72485, 61541, 'en', 'name', 'Baptist Health Paducah'),
(72486, 61542, 'en', 'name', 'Kaiser Permanente San Marcos Medical Offices'),
(72487, 61543, 'en', 'name', 'Community Hospital'),
(72488, 61544, 'en', 'name', 'Barrie Urology Group'),
(72489, 61545, 'en', 'name', 'Illinois Retina Associates'),
(72490, 61546, 'en', 'name', 'Kaiser Permanente San Jose Medical Center'),
(72491, 61547, 'en', 'name', 'Kaiser Permanente South Sacramento Medical Center'),
(72492, 61548, 'en', 'name', 'Kaiser Permanente Stockton Medical Offices'),
(72493, 61549, 'en', 'name', 'Barrow Brain and Spine'),
(72494, 61550, 'en', 'name', 'Bay Area Breast Surgeons'),
(72495, 61551, 'en', 'name', 'OSF St. Francis Hospital & Medical Group'),
(72496, 61552, 'no_lang_code', 'name', 'Immunitor (Mongolia)'),
(72497, 61553, 'en', 'name', 'Bay Area Retina Associates'),
(72498, 61554, 'da', 'name', 'Dansk Fertilitetsklinik'),
(72499, 61555, 'en', 'name', 'Kentuckiana Pulmonary Associates'),
(72500, 61556, 'en', 'name', 'Beebe Healthcare'),
(72501, 61557, 'en', 'name', 'Behavioral Health of the Palm Beaches'),
(72502, 61558, 'en', 'name', 'Door County Medical Center'),
(72503, 61559, 'en', 'name', 'Dayton Interventional Radiology'),
(72504, 61560, 'en', 'name', 'Kinston Medical Specialists'),
(72505, 61561, 'es', 'name', 'Grupo Gallego de CÔncer de Pulmón'),
(72506, 61562, 'no_lang_code', 'name', 'Inion (Finland)'),
(72507, 61563, 'en', 'name', 'Dayton Physicians Network'),
(72508, 61564, 'en', 'name', 'Rheumatology Consultants'),
(72509, 61565, 'en', 'name', 'Meditation De-Addiction Health AIDS Nutrition Trust'),
(72510, 61566, 'no_lang_code', 'name', 'InquisitHealth (United States)'),
(72511, 61567, 'no_lang_code', 'name', 'Integrative Health Technologies (United States)'),
(72512, 61568, 'de', 'name', 'Klinikum Frankfurt Hƶchst'),
(72513, 61569, 'en', 'name', 'Gynecologic Oncology Associates'),
(72514, 61570, 'en', 'name', 'Manhattan Physical Medicine and Rehabilitation'),
(72515, 61571, 'en', 'name', 'Martin Foot and Ankle'),
(72516, 61572, 'no_lang_code', 'name', 'DC2 (United States)'),
(72517, 61573, 'en', 'name', 'Maryland Oncology Hematology'),
(72518, 61574, 'de', 'name', 'Kreiskrankenhaus Dormagen'),
(72519, 61575, 'no_lang_code', 'name', 'IPS Research (United States)'),
(72520, 61576, 'no_lang_code', 'name', 'Medacta (United States)'),
(72521, 61577, 'en', 'name', 'Kuchnir Dermatology & Dermatologic Surgery'),
(72522, 61578, 'en', 'name', 'MedDerm Associates'),
(72523, 61579, 'en', 'name', 'Coatesville Veterans Affairs Medical Center');
INSERT INTO `ror_settings` VALUES
(72524, 61580, 'en', 'name', 'William C. Tallent Outpatient Clinic'),
(72525, 61581, 'en', 'name', 'Denova Research'),
(72526, 61582, 'en', 'name', 'TIAS School for Business and Society'),
(72527, 61583, 'en', 'name', 'Lake Norman Oncology'),
(72528, 61584, 'en', 'name', 'iResearch Atlanta'),
(72529, 61585, 'en', 'name', 'Lake City VA Medical Center'),
(72530, 61586, 'en', 'name', 'Doris Miller Department of Veterans Affairs Medical Center'),
(72531, 61587, 'en', 'name', 'Medical Oncology Hematology Consultants'),
(72532, 61588, 'it', 'name', 'La Maddalena'),
(72533, 61589, 'en', 'name', 'Lake Norman Oncology'),
(72534, 61590, 'en', 'name', 'Lake Region Healthcare'),
(72535, 61591, 'no_lang_code', 'name', 'Lambda Therapeutic Research (India)'),
(72536, 61592, 'nl', 'name', 'IrisZorg'),
(72537, 61593, 'en', 'name', 'Dermatology Consulting Services'),
(72538, 61594, 'en', 'name', 'Desert Medical Imaging'),
(72539, 61595, 'no_lang_code', 'name', 'Medication Management (United States)'),
(72540, 61596, 'en', 'name', 'Hawaii Cancer Care'),
(72541, 61597, 'es', 'name', 'Diagnostico MaipĆŗ'),
(72542, 61598, 'no_lang_code', 'name', 'MediciNova (United States)'),
(72543, 61599, 'en', 'name', 'Italian Resuscitation Council'),
(72544, 61600, 'no_lang_code', 'name', 'Revenue Management Solutions (United States)'),
(72545, 61601, 'es', 'name', 'Liga Contra el Cancer'),
(72546, 61602, 'en', 'name', 'Hazleton Eye Specialists'),
(72547, 61603, 'en', 'name', 'Digestive & Liver Disease Specialists'),
(72548, 61604, 'en', 'name', 'CHI Memorial Medical Group'),
(72549, 61605, 'no_lang_code', 'name', 'Rite Aid (United States)'),
(72550, 61606, 'en', 'name', 'The Japan-Multinational Trial Organization'),
(72551, 61606, 'ja', 'name', 'ę—„ęœ¬ćƒ»å¤šå›½é–“č‡ØåŗŠč©¦éØ“ę©Ÿę§‹'),
(72552, 61607, 'it', 'name', 'Ospedale Santa Maria Goretti'),
(72553, 61608, 'en', 'name', 'Louisiana Hematology Oncology Associates'),
(72554, 61609, 'en', 'name', 'Men''s Health Boston'),
(72555, 61610, 'no_lang_code', 'name', 'Metacure (United States)'),
(72556, 61611, 'en', 'name', 'Healthcare Global Enterprises'),
(72557, 61612, 'en', 'name', 'Michigan Orthopaedic Spine Surgeons'),
(72558, 61613, 'en', 'name', 'Oncology Hematology Care'),
(72559, 61614, 'en', 'name', 'Michigan Reproductive Medicine'),
(72560, 61615, 'en', 'name', 'Newland Medical Associates'),
(72561, 61616, 'en', 'name', 'Miller Orthopedic Specialist'),
(72562, 61617, 'no_lang_code', 'name', 'Lumos Labs (United States)'),
(72563, 61618, 'en', 'name', 'Nebraska Cancer Specialists'),
(72564, 61619, 'no_lang_code', 'name', 'Mimetogen (United States)'),
(72565, 61620, 'en', 'name', 'Newman Regional Health'),
(72566, 61621, 'en', 'name', 'Oncology Specialists of Charlotte'),
(72567, 61622, 'en', 'name', 'Pinnacle Oncology Hematology'),
(72568, 61623, 'en', 'name', 'Minnesota Oncology'),
(72569, 61624, 'en', 'name', 'Rocky Mountain Retina Consultants'),
(72570, 61625, 'en', 'name', 'ATI Physical Therapy'),
(72571, 61626, 'no_lang_code', 'name', 'Ono Pharmaceutical (United States)'),
(72572, 61627, 'es', 'name', 'Via Libre'),
(72573, 61628, 'no_lang_code', 'name', 'ProMetic Life Sciences (United States)'),
(72574, 61629, 'no_lang_code', 'name', 'Optimata (Israel)'),
(72575, 61630, 'en', 'name', 'NHS Fife'),
(72576, 61631, 'it', 'name', 'Azienda Sanitaria Locale di Asti'),
(72577, 61632, 'en', 'name', 'OASIS Clinic'),
(72578, 61633, 'en', 'name', 'Moy, Fincher, Chipps Medical Group'),
(72579, 61634, 'no_lang_code', 'name', 'Nordic Pharma (France)'),
(72580, 61635, 'en', 'name', 'MultiCare Gig Harbor Medical Park'),
(72581, 61636, 'en', 'name', 'Sacred Heart Medical Center at RiverBend'),
(72582, 61637, 'en', 'name', 'Providence Regional Cancer Partnership'),
(72583, 61638, 'en', 'name', 'Nebraska Hematology-Oncology'),
(72584, 61639, 'en', 'name', 'St John of God Murdoch Hospital'),
(72585, 61640, 'it', 'name', 'Ospedale Misericordia e Dolce'),
(72586, 61641, 'en', 'name', 'NephroCare'),
(72587, 61642, 'it', 'name', 'Ospedale S.Gennaro'),
(72588, 61643, 'no_lang_code', 'name', 'Equilab International (Indonesia)'),
(72589, 61644, 'en', 'name', 'Northern Indiana Cancer Research Consortium'),
(72590, 61645, 'en', 'name', 'Neurosurgeons of New Jersey'),
(72591, 61646, 'en', 'name', 'Saint Luke''s East Hospital'),
(72592, 61647, 'en', 'name', 'Northshore Oncology Associates'),
(72593, 61648, 'en', 'name', 'Ovation Fertility'),
(72594, 61649, 'no_lang_code', 'name', 'NeuroTrials Research (United States)'),
(72595, 61650, 'no_lang_code', 'name', 'NestlƩ (China)'),
(72596, 61651, 'en', 'name', 'Compass Oncology'),
(72597, 61652, 'en', 'name', 'New England Retina Associates'),
(72598, 61653, 'no_lang_code', 'name', 'Alivation (United States)'),
(72599, 61654, 'en', 'name', 'Northwest Medical Specialties'),
(72600, 61655, 'en', 'name', 'Q-Pharm'),
(72601, 61656, 'en', 'name', 'New Mexico Cancer Center'),
(72602, 61657, 'pl', 'name', 'Samodzielny Publiczny Szpital Kliniczny im. prof. W. Orłowskiego CMKP'),
(72603, 61658, 'no_lang_code', 'name', 'SGS (Belgium)'),
(72604, 61659, 'en', 'name', 'Radiation Oncology Associates'),
(72605, 61660, 'no_lang_code', 'name', 'Novartis (Mexico)'),
(72606, 61661, 'en', 'name', 'Panhandle Eye Group'),
(72607, 61662, 'en', 'name', 'Invision Sally Jobe'),
(72608, 61663, 'en', 'name', 'Shenandoah Oncology'),
(72609, 61664, 'en', 'name', 'Arizona Oncology'),
(72610, 61665, 'no_lang_code', 'name', 'Sientra (United States)'),
(72611, 61666, 'en', 'name', 'PCR Oncology'),
(72612, 61667, 'en', 'name', 'Sierra Eye Associates'),
(72613, 61668, 'no_lang_code', 'name', 'SIFI Medtech (Italy)'),
(72614, 61669, 'en', 'name', 'Pediatric Nephrology of Alabama'),
(72615, 61670, 'de', 'name', 'SLK-Kliniken Heilbronn'),
(72616, 61671, 'en', 'name', 'Regeneris Medical'),
(72617, 61672, 'en', 'name', 'South Health Campus'),
(72618, 61673, 'no_lang_code', 'name', 'Pfizer (India)'),
(72619, 61674, 'en', 'name', 'Respiratory and Meningeal Pathogens Research Unit'),
(72620, 61675, 'no_lang_code', 'name', 'Sanguine Biosciences (United States)'),
(72621, 61676, 'no_lang_code', 'name', 'Pharma Medica Research (Canada)'),
(72622, 61677, 'no_lang_code', 'name', 'Sanofi (Argentina)'),
(72623, 61678, 'no_lang_code', 'name', 'Nu Skin (United States)'),
(72624, 61679, 'no_lang_code', 'name', 'Santech (United States)'),
(72625, 61680, 'no_lang_code', 'name', 'National Power (United Kingdom)'),
(72626, 61681, 'en', 'name', 'Saskatoon Medical Imaging'),
(72627, 61682, 'en', 'name', 'Retina Associates of Florida'),
(72628, 61683, 'no_lang_code', 'name', 'Octapharma (United States)'),
(72629, 61684, 'en', 'name', 'Philadelphia Eye Associates'),
(72630, 61685, 'en', 'name', 'Save the Children'),
(72631, 61686, 'en', 'name', 'Retina Vitreous Associates of Florida'),
(72632, 61687, 'en', 'name', 'Phoenix Molecular Imaging'),
(72633, 61688, 'no_lang_code', 'name', 'Willow Wood (United States)'),
(72634, 61689, 'en', 'name', 'Phoenix Neurological Associates'),
(72635, 61690, 'no_lang_code', 'name', 'Schweiger Dermatology Group (United States)'),
(72636, 61691, 'en', 'name', 'Southern Oncology Specialists'),
(72637, 61692, 'no_lang_code', 'name', 'Omni Med'),
(72638, 61693, 'en', 'name', 'Self Regional Healthcare'),
(72639, 61694, 'en', 'name', 'Richmond Behavioral Associates'),
(72640, 61695, 'en', 'name', 'Southwest Women''s Oncology'),
(72641, 61696, 'no_lang_code', 'name', 'Senju Pharmaceutical (United States)'),
(72642, 61697, 'en', 'name', 'YMCA of Greater Vancouver'),
(72643, 61698, 'de', 'name', 'Spitalzentrum Centre hospitalier Biel- Bienne'),
(72644, 61699, 'en', 'name', 'St. Joseph Heritage Medical Group'),
(72645, 61700, 'en', 'name', 'St. Vincent''s Birmingham'),
(72646, 61701, 'no_lang_code', 'name', 'Premaitha Health (United Kingdom)'),
(72647, 61702, 'en', 'name', 'Star Spine & Sport'),
(72648, 61703, 'en', 'name', 'Thrombolysis in Myocardial Infarction Study Group'),
(72649, 61704, 'no_lang_code', 'name', 'Swedish Orphan Biovitrum (United States)'),
(72650, 61705, 'fr', 'name', 'Groupe suisse d''oncologie pƩdiatrique'),
(72651, 61705, 'it', 'name', 'Gruppo svizzero di oncologia pediatrica'),
(72652, 61705, 'de', 'name', 'Schweizer PƤdiatrische Onkologie Gruppe'),
(72653, 61705, 'en', 'name', 'Swiss Paediatric Oncology Group'),
(72654, 61706, 'fr', 'name', 'Les Thermes d’Allevard'),
(72655, 61707, 'en', 'name', 'TriWest Research Associates'),
(72656, 61708, 'no_lang_code', 'name', 'StemGenex (United States)'),
(72657, 61709, 'no_lang_code', 'name', 'Stryker (Japan)'),
(72658, 61710, 'en', 'name', 'Surgical Associates of Neenah'),
(72659, 61711, 'en', 'name', 'Tropical Gastroenterology & Nutrition group'),
(72660, 61712, 'no_lang_code', 'name', 'Sewon Cellontech (South Korea)'),
(72661, 61713, 'en', 'name', 'Synergy Health'),
(72662, 61714, 'no_lang_code', 'name', 'Targeted Medical Pharma (United States)'),
(72663, 61715, 'en', 'name', 'Utah Cancer Specialists'),
(72664, 61716, 'en', 'name', 'Tennessee Cancer Specialists'),
(72665, 61717, 'no_lang_code', 'name', 'Syneos Health (United States)'),
(72666, 61718, 'en', 'name', 'Valley Health System'),
(72667, 61719, 'it', 'name', 'L''organizzazione Ospedale di Civitanova M'),
(72668, 61720, 'en', 'name', 'Tennessee Retina'),
(72669, 61721, 'en', 'name', 'Tennessee Oncology'),
(72670, 61722, 'en', 'name', 'Westside Medical Associates of Los Angeles'),
(72671, 61723, 'no_lang_code', 'name', 'Vimta (India)'),
(72672, 61724, 'en', 'name', 'Virginia Cancer Specialists'),
(72673, 61725, 'en', 'name', 'Texas Dermatology and Laser Specialists'),
(72674, 61726, 'en', 'name', 'Texas Digestive Disease Consultants'),
(72675, 61727, 'en', 'name', 'Whitten Laser Eye'),
(72676, 61728, 'en', 'name', 'Virtua Memorial Hospital'),
(72677, 61729, 'en', 'name', 'Texas Plastic Surgery'),
(72678, 61730, 'en', 'name', 'Virtua Voorhees Hospital'),
(72679, 61731, 'en', 'name', 'Alliance for Canadian Health Outcomes Research in Diabetes'),
(72680, 61732, 'en', 'name', 'Western Sky Medical Research'),
(72681, 61733, 'en', 'name', 'Vision Specialists of Michigan'),
(72682, 61734, 'en', 'name', 'Z Urology'),
(72683, 61735, 'en', 'name', 'Children''s Health Council'),
(72684, 61736, 'de', 'name', 'Vista Klinik'),
(72685, 61737, 'no_lang_code', 'name', 'Wockhardt (United States)'),
(72686, 61738, 'en', 'name', 'Vascular Interventional Advances'),
(72687, 61739, 'en', 'name', 'World Vision International'),
(72688, 61740, 'en', 'name', 'Waverly Hematology Oncology'),
(72689, 61741, 'no_lang_code', 'name', 'Ciclo de Mutação (Brazil)'),
(72690, 61742, 'no_lang_code', 'name', 'International Medical Research (Germany)'),
(72691, 61743, 'en', 'name', 'Abalone Council Australia'),
(72692, 61744, 'no_lang_code', 'name', 'Goolwa Pipi (Australia)'),
(72693, 61745, 'en', 'name', 'CSIRO Health and Biosecurity'),
(72694, 61746, 'no_lang_code', 'name', 'Honey & Fox (Australia)'),
(72695, 61747, 'en', 'name', 'Northern Territory Seafood Council'),
(72696, 61748, 'en', 'name', 'Australian Recreational Fishing Foundation'),
(72697, 61749, 'en', 'name', 'Australian Rural Leadership Foundation'),
(72698, 61750, 'no_lang_code', 'name', 'Australian Seafood Industries (Australia)'),
(72699, 61751, 'en', 'name', 'Amateur Fishermen''s Association of the Northern Territory'),
(72700, 61752, 'en', 'name', 'Aquaculture Council of Western Australia'),
(72701, 61753, 'en', 'name', 'NZ Rock Lobster Industry Council'),
(72702, 61754, 'en', 'name', 'Australian Southern Bluefin Tuna Industry Association'),
(72703, 61755, 'no_lang_code', 'name', 'Ausvet (Australia)'),
(72704, 61756, 'en', 'name', 'Futurefish Foundation'),
(72705, 61757, 'no_lang_code', 'name', 'IC Independent Consulting (Australia)'),
(72706, 61758, 'no_lang_code', 'name', 'Infofish (Australia)'),
(72707, 61759, 'no_lang_code', 'name', 'Australian Aquaculture Support Services (Australia)'),
(72708, 61760, 'en', 'name', 'OceanWatch Australia'),
(72709, 61761, 'en', 'name', 'Australian Barramundi Farmers Association'),
(72710, 61762, 'en', 'name', 'Inland Fisheries Service'),
(72711, 61763, 'en', 'name', 'C-AID Consultants'),
(72712, 61764, 'en', 'name', 'Australian Council of Prawn Fisheries'),
(72713, 61765, 'en', 'name', 'Cairns Professional Game Fishing Association'),
(72714, 61766, 'en', 'name', 'Australian Farm Institute'),
(72715, 61767, 'en', 'name', 'Australian Institute of Food Science and Technology'),
(72716, 61768, 'en', 'name', 'Marine Discovery Centre'),
(72717, 61769, 'en', 'name', 'Panaquatic'),
(72718, 61770, 'en', 'name', 'Australian Maritime and Fisheries Academy'),
(72719, 61771, 'en', 'name', 'Pearl Producers Association'),
(72720, 61772, 'no_lang_code', 'name', 'Fishwell Consulting (Australia)'),
(72721, 61773, 'en', 'name', 'Recfish Australia'),
(72722, 61774, 'en', 'name', 'Port Kennedy Association'),
(72723, 61775, 'en', 'name', 'Primary Industries Education Foundation Australia'),
(72724, 61776, 'en', 'name', 'Moreton Bay Seafood Industry Association'),
(72725, 61777, 'en', 'name', 'Recfishwest'),
(72726, 61778, 'en', 'name', 'Recreational Fishing Alliance of NSW'),
(72727, 61779, 'en', 'name', 'Professional Fishermen’s Association'),
(72728, 61780, 'en', 'name', 'Agriculture and Food'),
(72729, 61781, 'en', 'name', 'Tasmania Mures'),
(72730, 61782, 'en', 'name', 'Queensland Seafood Industry Association'),
(72731, 61783, 'en', 'name', 'Rural Training Initiatives'),
(72732, 61784, 'en', 'name', 'RDS Partners'),
(72733, 61785, 'en', 'name', 'Spencer Gulf King Prawns'),
(72734, 61786, 'en', 'name', 'Seafood South Australia'),
(72735, 61787, 'en', 'name', 'Seafood Industry Victoria'),
(72736, 61788, 'no_lang_code', 'name', 'Sydney Fish Market (Australia)'),
(72737, 61789, 'en', 'name', 'Oysters South Australia'),
(72738, 61790, 'it', 'name', 'Consorzio Interuniversitario Nazionale La Chimica Per L''Ambiente'),
(72739, 61791, 'no_lang_code', 'name', 'Tasmanian Abalone Council (Australia)'),
(72740, 61792, 'en', 'name', 'Western Australian Fishing Industry Council'),
(72741, 61793, 'en', 'name', 'South Australian Sardine Industry Association'),
(72742, 61794, 'en', 'name', 'Western Rock Lobster Council'),
(72743, 61795, 'sq', 'name', 'Spitali Universitar Shefqet Ndroqi'),
(72744, 61796, 'en', 'name', 'Parks and Wildlife Service'),
(72745, 61797, 'en', 'name', 'Tasmanian Salmonid Growers Association'),
(72746, 61798, 'en', 'name', 'South East Trawl Fishing Industry Association'),
(72747, 61799, 'en', 'name', 'Tasmanian Seafood Industry Council'),
(72748, 61800, 'en', 'name', 'Southern Fishermen Association'),
(72749, 61801, 'en', 'name', 'Association of University Presses'),
(72750, 61802, 'it', 'name', 'Centro Interuniversitario di Ricerca Per lo Sviluppo sostenibile'),
(72751, 61803, 'en', 'name', 'University Colleges Australia'),
(72752, 61804, 'no_lang_code', 'name', 'VivaTech (United States)'),
(72753, 61805, 'it', 'name', 'Centro Interuniversitario di Ricerca sui Peptidi Bioattivi'),
(72754, 61806, 'en', 'name', 'Centre for Studies in Economics and Finance'),
(72755, 61807, 'it', 'name', 'Consorzio Interuniversitario Regionale Pugliese'),
(72756, 61808, 'it', 'name', 'Associazione Istituzione Libera UniversitĆ  Nuorese'),
(72757, 61809, 'it', 'name', 'Consorzio Interuniversitario ReattivitĆ  Chimica e Catalisi'),
(72758, 61810, 'it', 'name', 'Consorzio inter-Universitario per la previsione e la prevenzione dei Grandi RIschi'),
(72759, 61811, 'fr', 'name', 'Alliance UniversitƩ-Entreprise de Grenoble'),
(72760, 61812, 'en', 'name', 'American University of Beirut New York Office'),
(72761, 61813, 'it', 'name', 'UNISOM'),
(72762, 61814, 'no_lang_code', 'name', 'Applied University Research (United States)'),
(72763, 61815, 'es', 'name', 'Corporación Universitaria para el Desarrollo de Internet'),
(72764, 61816, 'es', 'name', 'Asociación de Universidades Grupo Montevideo'),
(72765, 61817, 'pt', 'name', 'Associação Rede de Universidades da Terceira Idade'),
(72766, 61818, 'en', 'name', 'Alma'),
(72767, 61819, 'it', 'name', 'Ente Regionale per il Diritto allo Studio Universitario del Piemonte'),
(72768, 61820, 'es', 'name', 'Fundación Universitaria Iberoamericana'),
(72769, 61821, 'es', 'name', 'Hospital Odontológico Universidad de Barcelona'),
(72770, 61822, 'ro', 'name', 'FundaÅ£ia pentru Formare Profesională şi ƎnvăţămĆ¢nt Preuniversitar - Viitor'),
(72771, 61823, 'es', 'name', 'Fundación Empresa-Universidad Gallega'),
(72772, 61824, 'en', 'name', 'European Inter-University Association of Society, Science and Technology'),
(72773, 61825, 'es', 'name', 'Centro Cultural de EspaƱa en Malabo'),
(72774, 61826, 'en', 'name', 'First Affiliated Hospital of Xinxiang Medical University'),
(72775, 61827, 'sv', 'name', 'Folkuniversitetet'),
(72776, 61828, 'fr', 'name', 'Presses Universitaires de France'),
(72777, 61829, 'es', 'name', 'Conferencia de Rectores de las Universidades EspaƱolas'),
(72778, 61830, 'no_lang_code', 'name', 'INiTS (Austria)'),
(72779, 61831, 'fr', 'name', 'Conseil Interuniversitaire de la CommunautƩ FranƧaise de Belgique'),
(72780, 61832, 'it', 'name', 'Consorzio Interuniversitario Nazionale EnSiEL'),
(72781, 61833, 'it', 'name', 'Consorzio Interuniversitario Nazionale per la Bio-Oncologia'),
(72782, 61834, 'it', 'name', 'CINFAI'),
(72783, 61835, 'fr', 'name', 'Institut Interuniversitaire pour les Relations entre l''Europe l''Amérique Latine et les Caraïbes'),
(72784, 61836, 'en', 'name', 'Russian Venture Company'),
(72785, 61836, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š²ŠµŠ½Ń‡ŃƒŃ€Š½Š°Ń ŠŗŠ¾Š¼ŠæŠ°Š½ŠøŃ'),
(72786, 61837, 'de', 'name', 'Innovationsgesellschaft Technische UniversitƤt Braunschweig'),
(72787, 61838, 'en', 'name', 'Euskoiker Foundation'),
(72788, 61839, 'en', 'name', 'Southern Shark Industry Alliance'),
(72789, 61840, 'en', 'name', 'League of European Research Universities'),
(72790, 61841, 'en', 'name', 'Interuniversity Graduate School of Psychometrics and Sociometrics'),
(72791, 61842, 'nl', 'name', 'Interuniversitair Centrum voor Onderwijswetenschappen'),
(72792, 61842, 'en', 'name', 'Interuniversity Center for Educational Research'),
(72793, 61843, 'en', 'name', 'Quality Assurance Netherlands Universities'),
(72794, 61844, 'en', 'name', 'Penza State Technological University'),
(72795, 61845, 'it', 'name', 'Istituto Nazionale per le Ricerche Cardiovascolari'),
(72796, 61846, 'en', 'name', 'Network of the Universities from the Capitals of Europe'),
(72797, 61846, 'fr', 'name', 'RƩseau des universitƩs des capitales de l''Europe'),
(72798, 61847, 'bs', 'name', 'Nacionalna i univerzitetska biblioteka Bosne i Hercegovine'),
(72799, 61847, 'en', 'name', 'National and University Library of Bosnia and Herzegovina'),
(72800, 61847, 'sr', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Šø ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ŃŠŗŠ° библиотека Босне Šø Єерцеговине'),
(72801, 61848, 'pt', 'name', 'Sindicato Nacional dos Professores Licenciados pelos PolitƩcnicos e Universidades'),
(72802, 61849, 'en', 'name', 'National and University Library "St. Kliment of Ohrid"'),
(72803, 61849, 'mk', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Šø ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ŃŠŗŠ° библиотека ā€žŠ”Š². ŠšŠ»ŠøŠ¼ŠµŠ½Ń‚ ŠžŃ…Ń€ŠøŠ“ŃŠŗŠø ā€œ'),
(72804, 61850, 'no_lang_code', 'name', 'Phranakhon Rajabhat University'),
(72805, 61851, 'en', 'name', 'Trung Vuong University'),
(72806, 61851, 'vi', 'name', 'ĐẔi hį»c Trʰng Vʰʔng'),
(72807, 61852, 'ga', 'name', 'Sabhal Mòr Ostaig'),
(72808, 61853, 'en', 'name', 'European Center for Peace and Development'),
(72809, 61854, 'no_lang_code', 'name', 'Univa (United States)'),
(72810, 61855, 'en', 'name', 'Russell Group'),
(72811, 61856, 'no_lang_code', 'name', 'Greenyard Fresh (Germany)'),
(72812, 61857, 'no_lang_code', 'name', 'Greenyard Fresh (United Kingdom)'),
(72813, 61858, 'no_lang_code', 'name', 'Univercell-Biosolutions (France)'),
(72814, 61859, 'no_lang_code', 'name', 'Univerexport (Serbia)'),
(72815, 61860, 'en', 'name', 'Universities and Colleges Admissions Service'),
(72816, 61861, 'en', 'name', 'University Industry Demonstration Partnership'),
(72817, 61862, 'fr', 'name', 'UniversitƩ du Travail Paul Pastur'),
(72818, 61863, 'en', 'name', 'Universities Scotland'),
(72819, 61864, 'en', 'name', 'Universities UK'),
(72820, 61865, 'fr', 'name', 'Agence Universitaire de la Francophonie'),
(72821, 61866, 'en', 'name', 'Berkeley Art Museum and Pacific Film Archive'),
(72822, 61867, 'en', 'name', 'Mountview Theatre School'),
(72823, 61868, 'fr', 'name', 'UniversitƩ Jean Lorougnon GuƩdƩ'),
(72824, 61869, 'fr', 'name', 'Institut de Recherche de l''Agriculture Biologique'),
(72825, 61869, 'en', 'name', 'Research Institute of Organic Agriculture'),
(72826, 61870, 'en', 'name', 'University High School'),
(72827, 61871, 'fr', 'name', 'Institut National des RadioƩlƩments'),
(72828, 61871, 'en', 'name', 'Institute for Radioelements'),
(72829, 61872, 'es', 'name', 'Instituto de Tecnologƭa CerƔmica'),
(72830, 61873, 'es', 'name', 'Instituto Nicaraguense de Pesca y Acuicultura'),
(72831, 61874, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Lao Động - XĆ£ Hį»™i'),
(72832, 61874, 'en', 'name', 'University of Labor and Social Affairs'),
(72833, 61875, 'en', 'name', 'Zvitambo Institute for Maternal and Child Health Research'),
(72834, 61876, 'en', 'name', 'Stafford University'),
(72835, 61877, 'en', 'name', 'University Vocational Awards Council'),
(72836, 61878, 'bs', 'name', 'Univerzitet Za Poslovne Studije'),
(72837, 61879, 'en', 'name', 'University Resident Theatre Association'),
(72838, 61880, 'en', 'name', 'University Specialized Hospital for Active Treatment of Endocrinology'),
(72839, 61880, 'bg', 'name', 'Университетска специализирана болница за активно лечение по ŠµŠ½Š“Š¾ŠŗŃ€ŠøŠ½Š¾Š»Š¾Š³ŠøŃ'),
(72840, 61881, 'en', 'name', 'Road Safety Institute Panos Mylonas'),
(72841, 61881, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪŸĪ“Ī¹ĪŗĪ®Ļ‚ Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±Ļ‚ "Πάνος ĪœĻ…Ī»Ļ‰Ī½Ī¬Ļ‚"'),
(72842, 61882, 'he', 'name', 'Deutsche Evangelische Institut für Altertumswissenschaft'),
(72843, 61882, 'en', 'name', 'German Protestant Institute of Archaeology'),
(72844, 61883, 'en', 'name', 'Foundation Institute for Regional Development'),
(72845, 61883, 'pl', 'name', 'Fundacja Instytut Rozwoju Regionalnego'),
(72846, 61884, 'de', 'name', 'FWU Institut für Film und Bild in Wissenschaft und Unterricht'),
(72847, 61885, 'en', 'name', 'Physical-Chemical Institute O. Bogatsky'),
(72848, 61885, 'uk', 'name', 'Фізико-хімічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ім. Šž.Š’. Š‘Š¾Š³Š°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ ŠŠŠ України'),
(72849, 61886, 'en', 'name', 'Buildings Performance Institute Europe'),
(72850, 61887, 'en', 'name', 'Bulgarian Antarctic Institute'),
(72851, 61887, 'bg', 'name', 'Š‘ŠŖŠ›Š“ŠŠ Š”ŠšŠ˜ ŠŠŠ¢ŠŠ ŠšŠ¢Š˜Š§Š•Š”ŠšŠ˜ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(72852, 61888, 'no_lang_code', 'name', 'Advanced Sports Installations (Estonia)'),
(72853, 61889, 'en', 'name', 'Cacapon Institute'),
(72854, 61890, 'en', 'name', 'The Africa-America Institute'),
(72855, 61891, 'en', 'name', 'Canadian Fasteners Institute'),
(72856, 61892, 'en', 'name', 'African Institute for Mathematical Sciences'),
(72857, 61892, 'sw', 'name', 'Taasisi ya Afrika ya Sayansi ya Hisabati'),
(72858, 61893, 'en', 'name', 'Against Abuse'),
(72859, 61894, 'en', 'name', 'Canadian Precast Prestressed Concrete Institute'),
(72860, 61895, 'en', 'name', 'Against Violence & Abuse'),
(72861, 61896, 'en', 'name', 'Food Research and Development Institute'),
(72862, 61896, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за изслеГване Šø развитие на храните'),
(72863, 61897, 'en', 'name', 'Caribbean Agricultural Research and Development Institute'),
(72864, 61898, 'en', 'name', 'The AIDS Institute'),
(72865, 61899, 'en', 'name', 'The Casco Bay Assyriological Institute'),
(72866, 61900, 'en', 'name', 'Albert Einstein Academy'),
(72867, 61901, 'en', 'name', 'Organisation of European Cancer Institutes'),
(72868, 61902, 'en', 'name', 'Royal Incorporation of Architects in Scotland'),
(72869, 61903, 'en', 'name', 'American Institute for Afghanistan Studies'),
(72870, 61904, 'no_lang_code', 'name', 'DWA (Netherlands)'),
(72871, 61905, 'en', 'name', 'NatureBridge'),
(72872, 61906, 'en', 'name', 'The American Law Institute'),
(72873, 61907, 'en', 'name', 'Amsterdam Institute for International Development'),
(72874, 61908, 'en', 'name', 'The Applied Research Institute - Jerusalem'),
(72875, 61908, 'ar', 'name', 'معهد الابحاث Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© - القدس'),
(72876, 61909, 'en', 'name', 'Gaidar Institute for Economic Policy'),
(72877, 61909, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Š¹ политики имени Š•. Š¢. ГайГара'),
(72878, 61910, 'nl', 'name', 'Het Nieuwe Instituut'),
(72879, 61911, 'fr', 'name', 'Institut Paul Bocuse'),
(72880, 61912, 'no_lang_code', 'name', 'Insta (Finland)'),
(72881, 61913, 'no_lang_code', 'name', 'Insta (Germany)'),
(72882, 61914, 'en', 'name', 'EGMONT – The Royal Institute for International Relations'),
(72883, 61915, 'en', 'name', 'Association of Ethiopian Microfinance Institutions'),
(72884, 61915, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆ›į‹­įŠ­įˆ® į‹į‹­įŠ“įŠ•įˆµ į‰°į‰‹įˆ›į‰µ įˆ›įˆ…į‰ įˆ­'),
(72885, 61916, 'no_lang_code', 'name', 'EHI Retail Institute (Germany)'),
(72886, 61917, 'de', 'name', 'Instand'),
(72887, 61918, 'en', 'name', 'Channel Islands Marine & Wildlife Institute'),
(72888, 61919, 'no_lang_code', 'name', 'Instant Advice (Sweden)'),
(72889, 61920, 'en', 'name', 'Eidos Institute'),
(72890, 61921, 'en', 'name', 'Horizon House'),
(72891, 61922, 'en', 'name', 'Einstein Institute of Science'),
(72892, 61923, 'no_lang_code', 'name', 'Hamburg Port Consulting (Germany)'),
(72893, 61924, 'no_lang_code', 'name', 'High Speed Sustainable Manufacturing Institute (United Kingdom)'),
(72894, 61925, 'en', 'name', 'Chartered Institute of Environmental Health'),
(72895, 61926, 'en', 'name', 'Huther Doyle'),
(72896, 61927, 'en', 'name', 'Chartered Institute of Housing'),
(72897, 61928, 'en', 'name', 'Chartered Institute of Taxation'),
(72898, 61929, 'nl', 'name', 'Huygen Installatie Adviseurs'),
(72899, 61930, 'en', 'name', 'Austrian Standards'),
(72900, 61930, 'de', 'name', 'Ɩsterreichisches Normungsinstitut'),
(72901, 61931, 'sl', 'name', 'Energy Agency of Podravje'),
(72902, 61932, 'en', 'name', 'QMI Solutions'),
(72903, 61933, 'de', 'name', 'Energieinstitut Vorarlberg'),
(72904, 61934, 'en', 'name', 'Chautauqua Institution'),
(72905, 61935, 'en', 'name', 'Baltic Institute of Social Sciences'),
(72906, 61935, 'lv', 'name', 'Baltijas Sociālo zinātņu institūts'),
(72907, 61936, 'en', 'name', 'TAFE Queensland Gold Coast'),
(72908, 61937, 'en', 'name', 'Baltic Institute of Advanced Technology'),
(72909, 61937, 'lt', 'name', 'Baltijos pažangių technologijų institutas'),
(72910, 61938, 'en', 'name', 'I4CE – Institute for Climate Economics'),
(72911, 61939, 'en', 'name', 'Entrada Institute'),
(72912, 61940, 'en', 'name', 'Bangladesh Institute of ICT in Development'),
(72913, 61940, 'bn', 'name', 'ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ą¦†ą¦‡ą¦øą¦æą¦Ÿą¦æ বাংলাদেশ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(72914, 61941, 'de', 'name', 'Institut für Arbeitsmedizin, Sicherheitstechnik und Ergonomie'),
(72915, 61942, 'no_lang_code', 'name', 'Institut für Angewandte Produktions-Technologie (Germany)'),
(72916, 61943, 'en', 'name', 'CMC Research Institutes'),
(72917, 61944, 'en', 'name', 'European Alliance Against Depression'),
(72918, 61945, 'de', 'name', 'Bifa Umweltinstitut'),
(72919, 61946, 'en', 'name', 'Heilbronn Institute for Mathematical Research'),
(72920, 61947, 'en', 'name', 'Panhellenic Confederation of Unions of Agricultural Cooperatives'),
(72921, 61947, 'el', 'name', 'Πανελλήνια Ī£Ļ…Ī½ĪæĪ¼ĪæĻƒĻ€ĪæĪ½Ī“ĪÆĪ± Ī•Ī½ĻŽĻƒĪµĻ‰Ī½ Ī‘Ī³ĻĪæĻ„Ī¹ĪŗĻŽĪ½ Ī£Ļ…Ī½ĪµĻ„Ī±Ī¹ĻĪ¹ĻƒĪ¼ĻŽĪ½'),
(72922, 61948, 'en', 'name', 'Icelandic Institute for Intelligent Machines'),
(72923, 61949, 'en', 'name', 'Community Action for Safe Alternatives'),
(72924, 61950, 'en', 'name', 'European Association of Development Research and Training Institutes'),
(72925, 61950, 'de', 'name', 'association Européenne des Instituts de Recherche et de Formation en Matière de Développement'),
(72926, 61951, 'en', 'name', 'Institute Of Historic Building Conservation'),
(72927, 61952, 'en', 'name', 'European Conference of Transport Research Institutes'),
(72928, 61953, 'fr', 'name', 'Institut D’Eco-PĆ©dagogie'),
(72929, 61954, 'en', 'name', 'Conservative Institute of M. R. ŠtefÔnik'),
(72930, 61954, 'sk', 'name', 'Konzervatívny inŔtitút M. R. ŠtefÔnika'),
(72931, 61955, 'en', 'name', 'European Forest Institute'),
(72932, 61956, 'pt', 'name', 'Instituto da Habitação e da Reabilitação Urbana'),
(72933, 61957, 'es', 'name', 'Instituto tecnológico de MatemÔtica Industrial'),
(72934, 61958, 'en', 'name', 'European Institute of Education and Social Policy'),
(72935, 61959, 'en', 'name', 'European Network of Building Research Institutes'),
(72936, 61960, 'en', 'name', 'Copenhagen Institute of Interaction Design'),
(72937, 61961, 'en', 'name', 'European Nuclear Safety Training & Tutoring Institute'),
(72938, 61962, 'en', 'name', 'European Science Communication Institute'),
(72939, 61963, 'en', 'name', 'Immigrant Institute'),
(72940, 61963, 'sv', 'name', 'Immigrant-institutet'),
(72941, 61964, 'no_lang_code', 'name', 'Beijing Institute of Architectural Design (China)'),
(72942, 61965, 'en', 'name', 'Families and Work Institute'),
(72943, 61966, 'en', 'name', 'Belgian Welding Institute'),
(72944, 61966, 'nl', 'name', 'Belgisch Instituut voor Lastechniek'),
(72945, 61967, 'en', 'name', 'Cultural Heritage & Education'),
(72946, 61968, 'en', 'name', 'Indian Institute of Wheat and Barley Research'),
(72947, 61968, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤—ą„‡ą¤¹ą„‚ą¤‚ और ą¤œą„Œ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(72948, 61969, 'no_lang_code', 'name', 'BGI Europe (Denmark)'),
(72949, 61970, 'en', 'name', 'Palm Research Center'),
(72950, 61970, 'id', 'name', 'Pusat Penelitian Kelapa Sawit'),
(72951, 61971, 'no_lang_code', 'name', 'Indutherm (Spain)'),
(72952, 61972, 'fr', 'name', 'Institut de Recherches en IngƩnierie des Surfaces'),
(72953, 61973, 'en', 'name', 'Financial Services Institute of Australasia'),
(72954, 61974, 'de', 'name', 'DBI - Gastechnologisches Institut'),
(72955, 61975, 'fr', 'name', 'Institut Eco-Conseil'),
(72956, 61976, 'en', 'name', 'Flint Institute Of Arts'),
(72957, 61977, 'bs', 'name', 'Institut ekonomskih nauka'),
(72958, 61977, 'en', 'name', 'Institute of Economic Sciences'),
(72959, 61978, 'no_lang_code', 'name', 'Infas Institut für Angewandte Sozialwissenschaft (Germany)'),
(72960, 61979, 'no_lang_code', 'name', 'BioSense Institute'),
(72961, 61980, 'no_lang_code', 'name', 'Botswana Vaccine Institute (Botswana)'),
(72962, 61981, 'de', 'name', 'Forschungsinstitut für Musiktheater'),
(72963, 61981, 'en', 'name', 'Research Institute for Music Theater Studies'),
(72964, 61982, 'de', 'name', 'Institut für Chemo- und Biosensorik'),
(72965, 61983, 'en', 'name', 'International Institute of Refrigeration'),
(72966, 61984, 'en', 'name', 'Institute for Research and Innovation in Social Services'),
(72967, 61985, 'de', 'name', 'Institut für Soziale Infrastruktur'),
(72968, 61986, 'cs', 'name', 'Institut RestaurovĆ”nĆ­ a KonzervačnĆ­ch Technik'),
(72969, 61987, 'de', 'name', 'Institut für angewandte Bauinformatik'),
(72970, 61987, 'en', 'name', 'Institute of Applied Building Informatics'),
(72971, 61988, 'fr', 'name', 'Institut National d''Excellence en SantƩ et en Services Sociaux'),
(72972, 61989, 'de', 'name', 'Institut für Bau- Umwelt- und Solarforschung'),
(72973, 61989, 'en', 'name', 'Institute for Construction, Environmental and Solar Research'),
(72974, 61990, 'fr', 'name', 'Institut Pierre Vernier'),
(72975, 61991, 'sr', 'name', 'Institut za tehnologiju nuklearnih i drugih mineralnih sirovina'),
(72976, 61991, 'en', 'name', 'Institute for Technology of Nuclear and other Mineral Raw Materials'),
(72977, 61992, 'en', 'name', 'Institute of Biophysics and Biomedical Engineering'),
(72978, 61992, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по биофизика Šø биомеГицинско инженерство'),
(72979, 61993, 'en', 'name', '"Professor Tsvetan Lazarov" Defence Institute'),
(72980, 61994, 'en', 'name', 'Institute of Mineralogy, Geochemistry and Crystallochemistry of Rare Elements'),
(72981, 61994, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ минералогии Šø геохимии реГких ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š¾Š²'),
(72982, 61995, 'no_lang_code', 'name', 'IDEXX Laboratories (France)'),
(72983, 61996, 'en', 'name', 'Slovak Governance Institute'),
(72984, 61997, 'pt', 'name', 'Instituto de Gestão Financeira e Equipamentos da Justiça'),
(72985, 61998, 'en', 'name', 'Institute of Alcohol Studies'),
(72986, 61999, 'en', 'name', 'Institute of Molecular Biology and Biotechnology'),
(72987, 62000, 'de', 'name', 'Universum Bremen'),
(72988, 62001, 'en', 'name', 'Peace Action, Training and Research Institute of Romania'),
(72989, 62002, 'en', 'name', 'Institute of Biological Problems of the North'),
(72990, 62002, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологических проблем Девера Š”Š’Šž'),
(72991, 62003, 'es', 'name', 'Instituto de Medicina Genómica'),
(72992, 62004, 'en', 'name', 'Institute of Polymer Materials and Technologies'),
(72993, 62004, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии растений, генетики Šø биоинженерии'),
(72994, 62005, 'fr', 'name', 'L’Institut Wallon de l’Évaluation, de la Prospective et de la Statistique'),
(72995, 62006, 'en', 'name', 'Institute of Public Affairs'),
(72996, 62006, 'pl', 'name', 'Instytut Spraw Publicznych'),
(72997, 62007, 'en', 'name', 'Intellectual Property Institute'),
(72998, 62008, 'hr', 'name', 'Institut za jadranske kulture i melioraciju krŔa'),
(72999, 62008, 'en', 'name', 'Institute for Adriatic Crops and Karst Reclamation'),
(73000, 62009, 'no_lang_code', 'name', 'Inston (United States)'),
(73001, 62010, 'no_lang_code', 'name', 'InStream Fisheries Research (Canada)'),
(73002, 62011, 'en', 'name', 'Institute of Cultural Affairs'),
(73003, 62012, 'en', 'name', 'Institute for Research and Development ā€œUtripā€'),
(73004, 62012, 'sl', 'name', 'InŔtitut za raziskave in razvoj "Utrip"'),
(73005, 62013, 'no_lang_code', 'name', 'inStream Media (United States)'),
(73006, 62014, 'en', 'name', 'IAM RoadSmart'),
(73007, 62015, 'en', 'name', 'Institute of Semitic Studies'),
(73008, 62016, 'en', 'name', 'Institute for the International Education of Students'),
(73009, 62017, 'de', 'name', 'ift Rosenheim'),
(73010, 62018, 'en', 'name', 'Institute for Bulgarian Language'),
(73011, 62018, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š±ŃŠŠ»Š³Š°Ń€ŃŠŗŠø език'),
(73012, 62019, 'de', 'name', 'Institut de Recherches Sociales Internationales'),
(73013, 62019, 'en', 'name', 'Institute for International Social Research'),
(73014, 62020, 'en', 'name', 'Institute of Social and Economic Studies of Population'),
(73015, 62021, 'pl', 'name', 'Instytut Europy Środkowo-Wschodniej'),
(73016, 62022, 'en', 'name', 'Institute for Environmental Security'),
(73017, 62023, 'no_lang_code', 'name', 'InSysBio (Russia)'),
(73018, 62023, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ системной биологии'),
(73019, 62024, 'pt', 'name', 'Instituto dos Vinhos do Douro e Porto'),
(73020, 62025, 'en', 'name', 'Institute of Technology and Development Foundation'),
(73021, 62026, 'es', 'name', 'Instituto Geofƭsico de la Escuela PolitƩcnica Nacional'),
(73022, 62027, 'es', 'name', 'Instituto Interamericano de Cooperación para la Agricultura'),
(73023, 62028, 'en', 'name', 'Institute of Transport and Communications'),
(73024, 62028, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по транспорт Šø ŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠø'),
(73025, 62029, 'en', 'name', 'Institute of Information Technologies'),
(73026, 62029, 'bg', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠž Š˜ŠŠ¤ŠžŠ ŠœŠŠ¦Š˜ŠžŠŠŠ˜ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š˜'),
(73027, 62030, 'en', 'name', 'International Health Central American Institute Foundation'),
(73028, 62031, 'es', 'name', 'Instituto Interamericano de Cooperación para la Agricultura'),
(73029, 62032, 'en', 'name', 'Institute for Governance & Sustainable Development'),
(73030, 62033, 'en', 'name', 'Institute for International Economic and Political Studies'),
(73031, 62033, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŃ… Šø политических исслеГований'),
(73032, 62034, 'en', 'name', 'Institute for Government'),
(73033, 62035, 'en', 'name', 'International Institute for Mesopotamian Area Studies'),
(73034, 62036, 'en', 'name', 'Institute of International Visual Arts'),
(73035, 62037, 'en', 'name', 'Institute of Women and Ethnic Studies'),
(73036, 62038, 'en', 'name', 'Institute for Human Development'),
(73037, 62039, 'en', 'name', 'International League Against Epilepsy'),
(73038, 62040, 'es', 'name', 'Instituto Mayor Campesino'),
(73039, 62041, 'en', 'name', 'International Institute for Humanistic Studies'),
(73040, 62042, 'en', 'name', 'International Minerals Innovation Institute'),
(73041, 62043, 'en', 'name', 'Institute on Social Theory and Dynamics'),
(73042, 62043, 'ja', 'name', 'ē¤¾ä¼šē†č«–ćƒ»å‹•ę…‹ē ”ē©¶ę‰€'),
(73043, 62044, 'en', 'name', 'Institute of Licensing'),
(73044, 62045, 'en', 'name', 'International Theatre Institute'),
(73045, 62046, 'sv', 'name', 'Institutet fƶr SprƄk och Folkminnen'),
(73046, 62046, 'en', 'name', 'Swedish Institute for Language and Folklore'),
(73047, 62047, 'en', 'name', 'International Water Institute'),
(73048, 62048, 'es', 'name', 'Instituto Nacional de Higiene, EpidemiologĆ­a y MicrobiologĆ­a'),
(73049, 62049, 'pl', 'name', 'Instytutu Melioracji i Użytków Zielonych'),
(73050, 62050, 'en', 'name', 'Institute of Macromolecular Chemistry'),
(73051, 62050, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ хімії Š²ŠøŃŠ¾ŠŗŠ¾Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½ŠøŃ… сполук'),
(73052, 62051, 'en', 'name', 'International Institute for Information Design'),
(73053, 62052, 'en', 'name', 'Institution of Chemical Engineers'),
(73054, 62053, 'en', 'name', 'Institute for Public Policy Research'),
(73055, 62054, 'no_lang_code', 'name', 'Institute for Quality, Safety and Transportation (Germany)'),
(73056, 62055, 'en', 'name', 'Institute of Nature Management'),
(73057, 62055, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ'),
(73058, 62056, 'es', 'name', 'Instituto Nacional de Silicosis'),
(73059, 62057, 'en', 'name', 'Institute for Programming research and Algorithmics'),
(73060, 62058, 'en', 'name', 'Institute for Public Affairs'),
(73061, 62058, 'sk', 'name', 'InŔtitút pre verejné otÔzky'),
(73062, 62059, 'en', 'name', 'Institute of Medical Ethics and Bioethics, n. f'),
(73063, 62059, 'sk', 'name', 'Ústav medicínskej etiky a bioetiky'),
(73064, 62060, 'en', 'name', 'Bolivian Forest Research Institute'),
(73065, 62060, 'es', 'name', 'Instituto Boliviano de Investigación Forestal'),
(73066, 62061, 'es', 'name', 'Instituto Canario de Investigaciones Agrarias'),
(73067, 62062, 'en', 'name', 'International Security and Emergency Management Institute'),
(73068, 62062, 'sk', 'name', 'InÅ”titĆŗt pre medzinĆ”rodnĆŗ bezpečnosÅ„ a krĆ­zovĆ© riadenie'),
(73069, 62063, 'en', 'name', 'Institute for Recent History of Serbia'),
(73070, 62063, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за новију ŠøŃŃ‚Š¾Ń€ŠøŃ˜Ńƒ'),
(73071, 62064, 'en', 'name', 'National Agricultural Research Institute'),
(73072, 62065, 'es', 'name', 'Instituto Colombiano de Medicina Tropical'),
(73073, 62066, 'es', 'name', 'Instituto Cubano de Investigaciones de los Derivados de la Caña de Azúcar'),
(73074, 62067, 'no_lang_code', 'name', 'Institut für Solartechnologien (Germany)'),
(73075, 62068, 'es', 'name', 'Instituto Tecnico Agronómico Provincial'),
(73076, 62069, 'de', 'name', 'Ɩsterreichische Lateinamerika-Institut'),
(73077, 62070, 'en', 'name', 'Oglebay Institute'),
(73078, 62071, 'en', 'name', 'Institute Society and Technology'),
(73079, 62071, 'nl', 'name', 'Instituut Samenleving en Technologie'),
(73080, 62072, 'pt', 'name', 'Instituto das Tecnologias de Informação na Justiça'),
(73081, 62073, 'no_lang_code', 'name', 'Indear (Argentina)'),
(73082, 62074, 'no_lang_code', 'name', 'RT-RK Institute for Computer Based Systems (Serbia)'),
(73083, 62075, 'en', 'name', 'Austrian Institute of Ecology'),
(73084, 62075, 'de', 'name', 'Ɩsterreichische Ɩkologie Institut'),
(73085, 62076, 'no', 'name', 'Institutt for Eksperimentell Medisinsk Forskning'),
(73086, 62077, 'en', 'name', 'JBI International'),
(73087, 62078, 'en', 'name', 'Scientific Research Institute of Introscopy'),
(73088, 62078, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ интроскопии'),
(73089, 62079, 'en', 'name', 'Research Institute of Radiology'),
(73090, 62080, 'fr', 'name', 'RĆ©seau FranƧais des Instituts d''Ɖtudes AvancĆ©es'),
(73091, 62081, 'en', 'name', 'Institute of Food Safety, Animal Health and Environment ā€œBIORā€'),
(73092, 62081, 'lv', 'name', 'Pārtikas droŔības, dzÄ«vnieku veselÄ«bas un vides zinātniskais institÅ«ts ā€žBIORā€'),
(73093, 62082, 'de', 'name', 'Richard-Strauss-Institut'),
(73094, 62083, 'en', 'name', 'The National Institute for Strategic Studies'),
(73095, 62083, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стратегічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(73096, 62084, 'en', 'name', 'Patriarchal Institute of Patristic Studies'),
(73097, 62084, 'el', 'name', 'Ī Ī±Ļ„ĻĪ¹Ī±ĻĻ‡Ī¹ĪŗĻŒĪ½ ΙΓρυμα Ī Ī±Ļ„ĪµĻĪ¹ĪŗĻŽĪ½ ĪœĪµĪ»ĪµĻ„ĻŽĪ½'),
(73098, 62085, 'en', 'name', 'RMIT Europe'),
(73099, 62086, 'en', 'name', 'Kansas Coalition Against Sexual and Domestic Violence'),
(73100, 62087, 'en', 'name', 'People of Color Against AIDS Network'),
(73101, 62088, 'en', 'name', 'Kansas Health Institute'),
(73102, 62089, 'en', 'name', 'Sagamore Institute'),
(73103, 62090, 'en', 'name', 'Saint Joseph’s Translational Research Institute'),
(73104, 62091, 'ro', 'name', 'Institutul Naţional al Patrimoniului'),
(73105, 62092, 'hu', 'name', 'Nemzeti SzakkĆ©pzĆ©si Ć©s FelnőttkĆ©pzĆ©si Hivatal'),
(73106, 62093, 'en', 'name', 'Canadian National Institute Of Health'),
(73107, 62094, 'ro', 'name', 'Institutul National de Cercetare – Dezvoltare pentru Ecologie Industriala'),
(73108, 62094, 'en', 'name', 'National Institute for Research and Development for Industrial Ecology'),
(73109, 62095, 'en', 'name', 'Phi Delta Phi'),
(73110, 62096, 'it', 'name', 'Koninklijk Nederlands Instituut te Rome'),
(73111, 62096, 'en', 'name', 'Royal Netherlands Institute in Rome'),
(73112, 62097, 'no_lang_code', 'name', 'PI Photovoltaik-Institut (Germany)'),
(73113, 62098, 'en', 'name', 'The Piegan Institute'),
(73114, 62099, 'en', 'name', 'North Carolina Coalition Against Domestic Violence'),
(73115, 62100, 'no_lang_code', 'name', 'Selekt Výskumný a Šľachtiteľský Ústav (Slovakia)'),
(73116, 62101, 'tr', 'name', 'Hollanda Araştırma Enstitüsü'),
(73117, 62101, 'en', 'name', 'Netherlands Institute in Turkey'),
(73118, 62102, 'hu', 'name', 'PuskƔs Tivadar TƔvkƶzlƩsi Technikum'),
(73119, 62103, 'en', 'name', 'Schothorst Feed Research'),
(73120, 62104, 'no_lang_code', 'name', 'Shanghai Research Institute of Building Sciences (China)'),
(73121, 62104, 'zh', 'name', 'äøŠęµ·å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(73122, 62105, 'nl', 'name', 'Nederlands Instituut voor Internationale Betrekkingen Clingendael'),
(73123, 62105, 'en', 'name', 'Netherlands Institute of International Relations Clingendael'),
(73124, 62106, 'nl', 'name', 'Nederlands Instituut voor Lastechniek'),
(73125, 62107, 'de', 'name', 'Kunststoff-Institut Lüdenscheid'),
(73126, 62108, 'pt', 'name', 'Liga Portuguesa Contra a Epilepsia'),
(73127, 62108, 'en', 'name', 'Portuguese League Against Epilepsy'),
(73128, 62109, 'en', 'name', 'Stockholm Environment Institute'),
(73129, 62110, 'en', 'name', 'Prevention Institute'),
(73130, 62111, 'en', 'name', 'Laban/Bartenieff Institute of Movement Studies'),
(73131, 62112, 'en', 'name', 'Social Care Institute for Excellence'),
(73132, 62113, 'en', 'name', 'Stockholm Institute of Communication Science'),
(73133, 62114, 'nl', 'name', 'Nederlands Instituut voor Meerpartijendemocratie'),
(73134, 62114, 'en', 'name', 'Netherlands Institute for Multiparty Democracy'),
(73135, 62115, 'en', 'name', 'Prospex Institute'),
(73136, 62116, 'en', 'name', 'Working Men’s Institute'),
(73137, 62117, 'en', 'name', 'Sustainable Europe Research Institute'),
(73138, 62118, 'en', 'name', 'Recovery Institute of Southwest Michigan'),
(73139, 62119, 'en', 'name', 'New Mexico Military Institute'),
(73140, 62120, 'es', 'name', 'Redit'),
(73141, 62121, 'sv', 'name', 'Institutet fƶr Kvalitetsutveckling'),
(73142, 62121, 'en', 'name', 'Swedish Institute for Quality'),
(73143, 62122, 'en', 'name', 'Sustainable Development Institute'),
(73144, 62123, 'el', 'name', 'Svenska Institutet i Athen'),
(73145, 62123, 'en', 'name', 'Swedish Institute at Athens'),
(73146, 62124, 'ro', 'name', 'Institutul National de Cercetare-Dezvoltare pentru Metale si Resurse Radioactive'),
(73147, 62124, 'en', 'name', 'Research and Development National Institute for Metals and Radioactive Resources'),
(73148, 62125, 'lt', 'name', 'Lietuvos Istorijos Institutas'),
(73149, 62125, 'en', 'name', 'Lithuanian Institute of History'),
(73150, 62126, 'fr', 'name', 'Institut Jacques Delors'),
(73151, 62127, 'en', 'name', 'Institute of Educational Policy'),
(73152, 62127, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ΕκπαιΓευτικής Πολιτικής'),
(73153, 62128, 'en', 'name', 'Research Institute Orion'),
(73154, 62129, 'en', 'name', 'State Enterprise "State Road Research Institute named M.P.Shulgina'),
(73155, 62130, 'lt', 'name', 'Lietuvos agrarinių ir miŔkų mokslų centro filialas'),
(73156, 62130, 'en', 'name', 'Lithuanian Research Centre for Agriculture and Forestry'),
(73157, 62131, 'en', 'name', 'New York State Coalition Against Domestic Violence'),
(73158, 62132, 'no_lang_code', 'name', 'Staten Island Museum'),
(73159, 62133, 'en', 'name', 'New Energy Coalition'),
(73160, 62134, 'en', 'name', 'The European Institute for Crime Prevention and Control, affiliated with the United Nations'),
(73161, 62134, 'fi', 'name', 'Yhdistyneiden Kansakuntien kanssa toimiva Euroopan rikoksentorjunta- ja torjuntaelin'),
(73162, 62135, 'en', 'name', 'Loretto Community'),
(73163, 62136, 'en', 'name', 'Ukrainian Institute for Public Policy'),
(73164, 62137, 'en', 'name', 'Westminster Cathedral'),
(73165, 62138, 'en', 'name', 'The Westminster Historical Society'),
(73166, 62139, 'en', 'name', 'The Health Care Science Institute'),
(73167, 62139, 'ja', 'name', 'ćƒ˜ćƒ«ć‚¹ć‚±ć‚¢ē§‘å­¦ē ”ē©¶ę‰€'),
(73168, 62140, 'en', 'name', 'Wilmington Public Library'),
(73169, 62141, 'nl', 'name', 'Internationaal Instituut voor de stedelijke omgeving'),
(73170, 62141, 'en', 'name', 'International Institute for the Urban Environment'),
(73171, 62142, 'de', 'name', 'Internationale Lignin-Institut'),
(73172, 62142, 'en', 'name', 'The International Lignin Institute'),
(73173, 62143, 'en', 'name', 'End Domestic Abuse Wisconsin'),
(73174, 62144, 'de', 'name', 'LVR-Institut für Landeskunde und Regionalgeschichte'),
(73175, 62145, 'en', 'name', 'WiseEuropa'),
(73176, 62146, 'en', 'name', 'Mexican Cultural Institute'),
(73177, 62147, 'no_lang_code', 'name', 'Wita Proteomics (Germany)'),
(73178, 62148, 'en', 'name', 'The Mussar Institute'),
(73179, 62149, 'no_lang_code', 'name', 'VDE Prüf- und Zertifizierungsinstitut (Germany)'),
(73180, 62150, 'en', 'name', 'Middle East Research Institute'),
(73181, 62151, 'en', 'name', 'Maine Central Institute'),
(73182, 62152, 'fi', 'name', 'TTS Tyƶtehoseura'),
(73183, 62153, 'en', 'name', 'The Nautical Institute'),
(73184, 62154, 'en', 'name', 'World Music Institute'),
(73185, 62155, 'en', 'name', 'Migration Institute of Australia'),
(73186, 62156, 'no_lang_code', 'name', 'MainStream Aquaculture (Australia)'),
(73187, 62157, 'no_lang_code', 'name', 'Wowiwe Instruction (United States)'),
(73188, 62158, 'en', 'name', 'Public Policy and Management Institute'),
(73189, 62158, 'lt', 'name', 'VieŔosios politikos ir vadybos institutas'),
(73190, 62159, 'en', 'name', 'York Minster'),
(73191, 62160, 'en', 'name', 'The Research Institute for the Care of Older People'),
(73192, 62161, 'en', 'name', 'Health Insurance Institute of Slovenia'),
(73193, 62161, 'sl', 'name', 'Zavod za zdravstveno zavarovanje Slovenije'),
(73194, 62162, 'en', 'name', 'Metamorphose VI AISBL'),
(73195, 62163, 'en', 'name', 'Jewish Historical Institute'),
(73196, 62163, 'pl', 'name', 'Żydowski Instytut Historyczny im. Emanuela Ringelbluma'),
(73197, 62164, 'en', 'name', 'The Wiener Library'),
(73198, 62165, 'en', 'name', 'Thelonious Monk Institute of Jazz'),
(73199, 62166, 'nl', 'name', 'Istituto Virtuale dei Nano Film'),
(73200, 62166, 'en', 'name', 'Virtual Institute of Nano Films'),
(73201, 62167, 'sq', 'name', 'Instituti Kombƫtar i Shƫndetƫsisƫ Publike'),
(73202, 62168, 'en', 'name', 'Welding Technology Institute of Australia'),
(73203, 62169, 'en', 'name', 'Maritime Institute of Eastern Mediterranean'),
(73204, 62170, 'en', 'name', 'Institute of Biological, Environmental and Rural Sciences'),
(73205, 62171, 'en', 'name', 'West Asia-North Africa Institute'),
(73206, 62171, 'ar', 'name', 'معهد ŲŗŲ±ŲØ آسيا - Ų“Ł…Ų§Ł„ Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§'),
(73207, 62172, 'nl', 'name', 'Vlaams Instituut Gezond Leven'),
(73208, 62173, 'en', 'name', 'West Virginia Coalition Against Domestic Violence'),
(73209, 62174, 'pl', 'name', 'Narodowy Instytut Audiowizualny'),
(73210, 62174, 'en', 'name', 'National Audiovisual Institute'),
(73211, 62175, 'en', 'name', 'Mount Fuji Research Institute'),
(73212, 62175, 'ja', 'name', 'åÆŒå£«ē·åˆē ”ē©¶ę‰€'),
(73213, 62176, 'no_lang_code', 'name', 'Cthulhu Ventures (United States)'),
(73214, 62177, 'no_lang_code', 'name', 'INSEAD'),
(73215, 62178, 'en', 'name', 'Munson-Williams-Proctor Arts Institute'),
(73216, 62179, 'en', 'name', 'Mechanics'' Institute'),
(73217, 62180, 'en', 'name', 'Mediterranean Institute for Primary Care'),
(73218, 62181, 'no_lang_code', 'name', 'Medica (United States)'),
(73219, 62182, 'no_lang_code', 'name', 'NanoBioImaging (China)'),
(73220, 62183, 'no_lang_code', 'name', 'Athenex (China)'),
(73221, 62184, 'no_lang_code', 'name', 'Green Tomato (China)'),
(73222, 62185, 'no_lang_code', 'name', 'ConvenientPower Systems (China)'),
(73223, 62186, 'no_lang_code', 'name', 'Group Sense (China)'),
(73224, 62186, 'zh', 'name', 'ę¬Šę™ŗé›†åœ˜'),
(73225, 62187, 'no_lang_code', 'name', 'Infowise (China)'),
(73226, 62188, 'no_lang_code', 'name', 'Coolsure (China)'),
(73227, 62189, 'no_lang_code', 'name', 'GS1 Hong Kong'),
(73228, 62190, 'no_lang_code', 'name', 'Innopage (China)'),
(73229, 62191, 'no_lang_code', 'name', 'New A Innovation (China)'),
(73230, 62192, 'no_lang_code', 'name', 'Guangdong Hiway Integrated Circuit Technology (China)'),
(73231, 62193, 'no_lang_code', 'name', 'Innovation Team (China)'),
(73232, 62193, 'zh', 'name', 'å‰µę–°åœ˜éšŠęœ‰é™å…¬åø'),
(73233, 62194, 'no_lang_code', 'name', 'Print-Rite (China)'),
(73234, 62194, 'zh', 'name', '天威 (å®‰ę·)');
INSERT INTO `ror_settings` VALUES
(73235, 62195, 'no_lang_code', 'name', 'Heartisans (China)'),
(73236, 62196, 'en', 'name', 'The Academy of Sciences of Hong Kong'),
(73237, 62196, 'zh', 'name', '香港科学院'),
(73238, 62197, 'no_lang_code', 'name', 'Cosmact (China)'),
(73239, 62198, 'no_lang_code', 'name', 'Fano Labs (China)'),
(73240, 62198, 'zh', 'name', 'ę³•čÆŗå®žéŖŒå®¤'),
(73241, 62199, 'en', 'name', 'Hong Kong Cosmetic Association'),
(73242, 62199, 'zh', 'name', 'é¦™ęøÆåŒ–ē²§å“åŒę„­å”ęœƒęœ‰é™å…¬åø'),
(73243, 62200, 'no_lang_code', 'name', 'Acoustic Arc (China)'),
(73244, 62200, 'zh', 'name', 'å£°ę³¢å›½é™…ęœ‰é™å…¬åø'),
(73245, 62201, 'no_lang_code', 'name', 'Innoverz (China)'),
(73246, 62202, 'no_lang_code', 'name', 'NiCADa Research & Development (China)'),
(73247, 62203, 'no_lang_code', 'name', 'Acumen Environmental Engineering & Technologies (China)'),
(73248, 62203, 'zh', 'name', 'ę•é”ēŽÆå¢ƒå·„ēØ‹äøŽęŠ€ęœÆ'),
(73249, 62204, 'no_lang_code', 'name', 'Insight (China)'),
(73250, 62205, 'en', 'name', 'Hong Kong Electro-Plating Merchants Association'),
(73251, 62206, 'no_lang_code', 'name', 'Craft Group (China)'),
(73252, 62207, 'no_lang_code', 'name', 'Admomo Media (China)'),
(73253, 62208, 'en', 'name', 'Institute of Industrial Engineers'),
(73254, 62208, 'zh', 'name', 'å·„äøšå·„ēØ‹åøˆå­¦ä¼š'),
(73255, 62209, 'no_lang_code', 'name', 'Numerical Method (China)'),
(73256, 62210, 'no_lang_code', 'name', 'Advanced Card Systems (China)'),
(73257, 62210, 'zh', 'name', 'å…ˆčæ›ēš„å”ē‰‡ē³»ē»Ÿ'),
(73258, 62211, 'no_lang_code', 'name', 'nwStor (China)'),
(73259, 62212, 'en', 'name', 'Hong Kong Association For Integration Of Chinese-Western Medicine'),
(73260, 62213, 'no_lang_code', 'name', 'Cybersys Computer (China)'),
(73261, 62214, 'no_lang_code', 'name', 'Advanced Interconnect Technologies (China)'),
(73262, 62214, 'zh', 'name', 'å…ˆčæ›ēš„äŗ’čæžęŠ€ęœÆ'),
(73263, 62215, 'en', 'name', 'Interactive Systems & Technologies'),
(73264, 62216, 'en', 'name', 'Hong Kong Association for the Advancement of Science and Technology'),
(73265, 62216, 'zh', 'name', 'é¦™ęøÆē§‘ęŠ€å”é€²ęœƒ'),
(73266, 62217, 'no_lang_code', 'name', 'Objective Solutions (China)'),
(73267, 62218, 'no_lang_code', 'name', 'Cypress (China)'),
(73268, 62219, 'no_lang_code', 'name', 'Advanced Materials Enterprises (China)'),
(73269, 62219, 'zh', 'name', 'å…ˆčæ›ęę–™ä¼äøš'),
(73270, 62220, 'en', 'name', 'Hong Kong Association of Registered Tour Co-ordinators'),
(73271, 62220, 'zh', 'name', 'é¦™ęøÆčØ»å†Šå°ŽéŠå”ęœƒ'),
(73272, 62221, 'no_lang_code', 'name', 'International Transport Information Systems (China)'),
(73273, 62222, 'no_lang_code', 'name', 'APT Electronics (China)'),
(73274, 62223, 'en', 'name', 'Hong Kong Bar Association'),
(73275, 62223, 'zh', 'name', 'é¦™ęøÆå¤§å¾‹åø«å…¬ęœƒ'),
(73276, 62224, 'no_lang_code', 'name', 'OceanX Technology (China)'),
(73277, 62225, 'en', 'name', 'Hong Kong Biotechnology Organization'),
(73278, 62225, 'zh', 'name', 'é¦™ęøÆē”Ÿē‰©ē§‘ęŠ€å”ęœƒ'),
(73279, 62226, 'no_lang_code', 'name', 'AdvanPro (China)'),
(73280, 62227, 'no_lang_code', 'name', 'Hong Kong Blind Union'),
(73281, 62227, 'zh', 'name', 'é¦™ęøÆå¤±ę˜Žäŗŗå”é€²ęœƒ'),
(73282, 62228, 'en', 'name', 'Internet Professional Association'),
(73283, 62228, 'zh', 'name', 'äŗ’čÆē¶²å°ˆę„­å”ęœƒ'),
(73284, 62229, 'no_lang_code', 'name', 'DiagCor (China)'),
(73285, 62230, 'en', 'name', 'Hong Kong Business Angel Network'),
(73286, 62230, 'zh', 'name', 'é¦™ęøÆå•†äøšå¤©ä½æē½‘'),
(73287, 62231, 'no_lang_code', 'name', 'Ironfly Technologies (China)'),
(73288, 62232, 'no_lang_code', 'name', 'Aesi (China)'),
(73289, 62232, 'zh', 'name', 'å…‰äø€ē³»ēµ±ļ¼ˆé¦™ęøÆļ¼‰'),
(73290, 62233, 'no_lang_code', 'name', 'Aidyia (China)'),
(73291, 62234, 'no_lang_code', 'name', 'Gene (China)'),
(73292, 62234, 'zh', 'name', 'é¦™ęøÆåŸŗå› ęœ‰é™å…¬åø'),
(73293, 62235, 'en', 'name', 'One Earth Designs'),
(73294, 62236, 'no_lang_code', 'name', 'AiSoft Technology (China)'),
(73295, 62237, 'no_lang_code', 'name', 'IT Channel (China)'),
(73296, 62237, 'zh', 'name', 'ē§‘ęŠ€åÆ¼čˆŖ'),
(73297, 62238, 'no_lang_code', 'name', 'Alford Industries (China)'),
(73298, 62238, 'zh', 'name', 'é˜æå°”ē¦å¾·å·„äøš'),
(73299, 62239, 'no_lang_code', 'name', 'Oursky (China)'),
(73300, 62240, 'no_lang_code', 'name', 'Amasic (China)'),
(73301, 62241, 'en', 'name', 'Hong Kong General Chamber of Commerce'),
(73302, 62242, 'no_lang_code', 'name', 'Pacific Medical (China)'),
(73303, 62243, 'no_lang_code', 'name', 'Amonics (China)'),
(73304, 62244, 'no_lang_code', 'name', 'Amos Enterprise (China)'),
(73305, 62244, 'zh', 'name', 'é˜æčŽ«ę–Æä¼äøšęœ‰é™å…¬åø'),
(73306, 62245, 'no_lang_code', 'name', 'Anpac Semiconductor (China)'),
(73307, 62245, 'zh', 'name', 'å®‰åø•å…‹åŠåÆ¼ä½“ęœ‰é™å…¬åø'),
(73308, 62246, 'en', 'name', 'Hong Kong Computer Society'),
(73309, 62247, 'no_lang_code', 'name', 'AP Photonics (China)'),
(73310, 62247, 'zh', 'name', 'ę„›ä½©å„€å…‰é›»ęŠ€č”“ęœ‰é™å…¬åø'),
(73311, 62248, 'no_lang_code', 'name', 'Pacific Satellite (China)'),
(73312, 62249, 'no_lang_code', 'name', 'Jason Medical Holdings (China)'),
(73313, 62249, 'zh', 'name', 'å‚‘ę£®é†«ē™‚ęŽ§č‚”'),
(73314, 62250, 'en', 'name', 'Hong Kong Convention and Exhibition Centre'),
(73315, 62250, 'zh', 'name', 'é¦™ęøÆęœƒč­°å±•č¦½äø­åæƒ'),
(73316, 62251, 'no_lang_code', 'name', 'Dracaena Life (China)'),
(73317, 62251, 'zh', 'name', 'é¾™č”€ę ‘ē”Ÿå‘½ęŠ€ęœÆ'),
(73318, 62252, 'en', 'name', 'Cyberport'),
(73319, 62252, 'zh', 'name', '數碼港'),
(73320, 62253, 'no_lang_code', 'name', 'Pacific World Industrial (China)'),
(73321, 62254, 'no_lang_code', 'name', 'Dragonchip (China)'),
(73322, 62255, 'no_lang_code', 'name', 'AppoTech (China)'),
(73323, 62255, 'zh', 'name', 'å“ę¦®é›†ęˆé›»č·Æē§‘ęŠ€ęœ‰é™å…¬åø'),
(73324, 62256, 'no_lang_code', 'name', 'Tech Dragon Limited (China)'),
(73325, 62257, 'no_lang_code', 'name', 'ASD Technology (China)'),
(73326, 62258, 'no_lang_code', 'name', 'DSP4YOU (China)'),
(73327, 62259, 'en', 'name', 'Hong Kong Design Centre'),
(73328, 62259, 'zh', 'name', 'é¦™ęøÆčØ­čØˆäø­åæƒ'),
(73329, 62260, 'no_lang_code', 'name', 'Pantarei Design (China)'),
(73330, 62261, 'no_lang_code', 'name', 'Hai Kang Life (China)'),
(73331, 62261, 'zh', 'name', 'ęµ·åŗ·ē”Ÿå‘½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(73332, 62262, 'no_lang_code', 'name', 'Tech Pro (China)'),
(73333, 62263, 'no_lang_code', 'name', 'E I L (China)'),
(73334, 62264, 'no_lang_code', 'name', 'Pedorthic Technology (China)'),
(73335, 62265, 'no_lang_code', 'name', 'Atpath Technologies (China)'),
(73336, 62266, 'no_lang_code', 'name', 'Peer Intelligence Technology (China)'),
(73337, 62267, 'en', 'name', 'Hong Kong Electrical Appliances Manufacturers Association'),
(73338, 62267, 'zh', 'name', 'é¦™ęøÆē”µå™Øåˆ¶é€ å•†åä¼š'),
(73339, 62268, 'no_lang_code', 'name', 'Hong Kong Telecommunications Limited (China)'),
(73340, 62269, 'en', 'name', 'Hong Kong Electronic Industries Association'),
(73341, 62269, 'zh', 'name', 'é¦™ęøÆé›»å­ę„­å•†ęœƒ'),
(73342, 62270, 'no_lang_code', 'name', 'Auvi (China)'),
(73343, 62271, 'en', 'name', 'Hong Kong Export Credit Insurance Corporation'),
(73344, 62272, 'en', 'name', 'Textile Council of Hong Kong'),
(73345, 62273, 'en', 'name', 'Hong Kong Exporters’ Association'),
(73346, 62273, 'zh', 'name', 'é¦™ęøÆå‡ŗå£å•†åä¼š'),
(73347, 62274, 'no_lang_code', 'name', 'Axiom (China)'),
(73348, 62275, 'en', 'name', 'Hong Kong Far Infrared Rays Association'),
(73349, 62275, 'zh', 'name', 'é¦™ęøÆé ē“…å¤–ē·šå”ęœƒ'),
(73350, 62276, 'no_lang_code', 'name', 'TFI Digital Media Limited (China)'),
(73351, 62277, 'no_lang_code', 'name', 'B-Free Technology (China)'),
(73352, 62278, 'no_lang_code', 'name', 'Eltis Microelectronics (China)'),
(73353, 62279, 'no_lang_code', 'name', 'BBPOS (China)'),
(73354, 62280, 'en', 'name', 'Hong Kong Federation of Innovative Technologies and Manufacturing Industries'),
(73355, 62280, 'zh', 'name', 'é¦™ęøÆå‰µę–°ē§‘ęŠ€åŠč£½é€ ę„­čÆåˆēø½ęœƒ'),
(73356, 62281, 'no_lang_code', 'name', 'Diodes (China)'),
(73357, 62282, 'en', 'name', 'BEAM Society'),
(73358, 62283, 'en', 'name', 'Hong Kong Federation of Youth Groups'),
(73359, 62283, 'zh', 'name', 'é¦™ęøÆé’å¹“å”ęœƒ'),
(73360, 62284, 'no_lang_code', 'name', 'PharmacoGenetics (China)'),
(73361, 62285, 'no_lang_code', 'name', 'TPC (China)'),
(73362, 62286, 'no_lang_code', 'name', 'eNano Health (China)'),
(73363, 62287, 'en', 'name', 'Hong Kong Food Council'),
(73364, 62287, 'zh', 'name', 'é¦™ęøÆé£Ÿå“å§”å“”ęœƒ'),
(73365, 62288, 'en', 'name', 'Hong Kong Green Building Council'),
(73366, 62288, 'zh', 'name', 'é¦™ęøÆē¶ č‰²å»ŗēÆ‰č­°ęœƒ'),
(73367, 62289, 'en', 'name', 'Trade and Industry Department'),
(73368, 62289, 'zh', 'name', 'å·„ę„­č²æę˜“ē½²'),
(73369, 62290, 'no_lang_code', 'name', 'Pixel Magic Systems (China)'),
(73370, 62291, 'en', 'name', 'Hong Kong Hide & Leather Traders'' Association'),
(73371, 62291, 'zh', 'name', 'é¦™ęøÆēš®ę„­å•†ęœƒęœ‰é™å…¬åø'),
(73372, 62292, 'no_lang_code', 'name', 'TradeCity Cybersoft (China)'),
(73373, 62293, 'no_lang_code', 'name', 'Bloombase (China)'),
(73374, 62294, 'en', 'name', 'Hong Kong Hotels Association'),
(73375, 62294, 'zh', 'name', 'é¦™ęøÆé…’åŗ—äøšåä¼š'),
(73376, 62295, 'en', 'name', 'Hong Kong Information Technology Federation'),
(73377, 62295, 'zh', 'name', 'é¦™ęøÆč³‡čØŠē§‘ęŠ€å•†ęœƒ'),
(73378, 62296, 'no_lang_code', 'name', 'Platysens (China)'),
(73379, 62297, 'en', 'name', 'Hong Kong Information Technology Joint Council'),
(73380, 62297, 'zh', 'name', 'é¦™ęøÆč³‡čØŠē§‘ęŠ€čÆęœƒ'),
(73381, 62298, 'en', 'name', 'Hong Kong Institute of Biotechnology'),
(73382, 62298, 'zh', 'name', 'é¦™ęøÆē”Ÿē‰©ē§‘ęŠ€å­¦é™¢'),
(73383, 62299, 'en', 'name', 'The Boys'' & Girls'' Clubs Association of Hong Kong'),
(73384, 62299, 'zh', 'name', 'é¦™ęøÆå°ē«„ē¾¤ē›Šęœƒ'),
(73385, 62300, 'no_lang_code', 'name', 'Playnote (China)'),
(73386, 62301, 'no_lang_code', 'name', 'Portable Innovation Technology (China)'),
(73387, 62302, 'en', 'name', 'Hong Kong Institute of Vocational Education'),
(73388, 62302, 'zh', 'name', 'é¦™ęøÆå°ˆę„­ę•™č‚²å­øé™¢'),
(73389, 62303, 'no_lang_code', 'name', 'Unisen Group (China)'),
(73390, 62304, 'en', 'name', 'Hong Kong Institution of Engineers'),
(73391, 62304, 'zh', 'name', 'é¦™ęøÆå·„ēØ‹åøˆå­¦ä¼š'),
(73392, 62305, 'no_lang_code', 'name', 'eSpot Lighting (China)'),
(73393, 62306, 'en', 'name', 'Hong Kong International Arbitration Centre'),
(73394, 62306, 'zh', 'name', 'é¦™ęøÆå›½é™…ä»²č£äø­åæƒ'),
(73395, 62307, 'no_lang_code', 'name', 'PowerELab (China)'),
(73396, 62308, 'no_lang_code', 'name', 'Eternal East Group (China)'),
(73397, 62309, 'en', 'name', 'Hong Kong Jewellery & Jade Manufacturers Association'),
(73398, 62309, 'zh', 'name', 'é¦™ęøÆē å®ēŽ‰ēŸ³åŽ‚å•†ä¼š'),
(73399, 62310, 'no_lang_code', 'name', 'VCAST (China)'),
(73400, 62311, 'en', 'name', 'Hong Kong Jewelry Manufacturers'' Association'),
(73401, 62311, 'zh', 'name', 'é¦™ęøÆē åÆ¶č£½é€ ę„­å» å•†ęœƒ'),
(73402, 62312, 'no_lang_code', 'name', 'Chaowei Group (China)'),
(73403, 62313, 'no_lang_code', 'name', 'Everplant Technology (China)'),
(73404, 62314, 'no_lang_code', 'name', 'Prenetics (China)'),
(73405, 62315, 'en', 'name', 'Hong Kong Footwear Federation'),
(73406, 62316, 'en', 'name', 'Hong Kong Medical and Healthcare Device Industries Association'),
(73407, 62316, 'zh', 'name', 'é¦™ęøÆé†«ē™‚åŠäæå„å™Øęč”Œę„­å”ęœƒ'),
(73408, 62317, 'no_lang_code', 'name', 'Caching Technology (China)'),
(73409, 62318, 'en', 'name', 'Hong Kong Surface Finishing Society'),
(73410, 62318, 'zh', 'name', 'é¦™ęøÆč”Øé¢å¤„ē†å­¦ä¼š'),
(73411, 62319, 'en', 'name', 'Hong Kong Metals Manufacturers Association'),
(73412, 62319, 'zh', 'name', 'é¦™ęøÆé‡‘å±¬č£½é€ ę„­å”ęœƒ'),
(73413, 62320, 'en', 'name', 'Hong Kong New Generation Cultural Association'),
(73414, 62320, 'zh', 'name', 'é¦™ęøÆę–°äø€ä»£ę–‡åŒ–å”ęœƒ'),
(73415, 62321, 'no_lang_code', 'name', 'Progressive Technology (China)'),
(73416, 62322, 'no_lang_code', 'name', 'Jets Technics (China)'),
(73417, 62323, 'en', 'name', 'Hong Kong Optical Manufacturers Association'),
(73418, 62323, 'zh', 'name', 'é¦™ęøÆå…‰å­¦åˆ¶é€ å•†åä¼š'),
(73419, 62324, 'en', 'name', 'Federation of Hong Kong Industries'),
(73420, 62325, 'no_lang_code', 'name', 'CapitaLogic (China)'),
(73421, 62326, 'no_lang_code', 'name', 'Fern (China)'),
(73422, 62327, 'en', 'name', 'Hong Kong Organic Waste Recycling Centre'),
(73423, 62327, 'zh', 'name', 'é¦™ęøÆęœ‰ę©Ÿč³‡ęŗå†ē”Ÿäø­'),
(73424, 62328, 'no_lang_code', 'name', 'PSP Security (China)'),
(73425, 62329, 'no_lang_code', 'name', 'CAS Logistics (China)'),
(73426, 62330, 'no_lang_code', 'name', 'JSAB Technologies (China)'),
(73427, 62331, 'no_lang_code', 'name', 'Finima Innovations (China)'),
(73428, 62332, 'en', 'name', 'Hong Kong Pharmaceutical Manufacturers Association'),
(73429, 62332, 'zh', 'name', 'é¦™ęøÆåˆ¶čÆå•†åä¼šęœ‰é™å…¬åø'),
(73430, 62333, 'en', 'name', 'Hong Kong Principals’ Institute'),
(73431, 62333, 'zh', 'name', 'é¦™ęøÆę ”é•æä¼š'),
(73432, 62334, 'no_lang_code', 'name', 'Cathay Photonics (China)'),
(73433, 62334, 'zh', 'name', 'åœ‹ę³°å…‰é›»ęœ‰é™å…¬åø'),
(73434, 62335, 'no_lang_code', 'name', 'FirsTune (China)'),
(73435, 62336, 'no_lang_code', 'name', 'Cell Technology (China)'),
(73436, 62337, 'no_lang_code', 'name', 'Radica Systems (China)'),
(73437, 62338, 'no_lang_code', 'name', 'JSpectrum (China)'),
(73438, 62339, 'en', 'name', 'Hong Kong Opto-Mechatronics Industries Association'),
(73439, 62339, 'zh', 'name', 'é¦™ęøÆäø­čÆēœ¼é”č£½é€ å» å•†ęœƒęœ‰é™å…¬åø'),
(73440, 62340, 'no_lang_code', 'name', 'Kalloc Studios (China)'),
(73441, 62341, 'en', 'name', 'Hong Kong Plastic Machinery Association'),
(73442, 62341, 'zh', 'name', 'é¦™ęøÆå”‘ę–™ęœŗę¢°åä¼š'),
(73443, 62342, 'no_lang_code', 'name', 'Ram-Chem (China)'),
(73444, 62343, 'en', 'name', 'Hong Kong Plastics Manufacturers Association'),
(73445, 62343, 'zh', 'name', 'é¦™ęøÆå”‘č† ę„­å» å•†ęœ‰é™å…¬åø'),
(73446, 62344, 'no_lang_code', 'name', 'Bizconline (China)'),
(73447, 62345, 'no_lang_code', 'name', 'KanHan Technologies (China)'),
(73448, 62346, 'en', 'name', 'Hong Kong Policy Research Institute'),
(73449, 62346, 'zh', 'name', 'é¦™ęøÆé”˜ę™Æ'),
(73450, 62347, 'no_lang_code', 'name', 'Reasonable Software House (China)'),
(73451, 62348, 'no_lang_code', 'name', 'Certizen (China)'),
(73452, 62348, 'zh', 'name', 'ēæ¹ę™‰é›»å­å•†å‹™ęœ‰é™å…¬åø'),
(73453, 62349, 'no_lang_code', 'name', 'CHTC Fong’s Industries (China)'),
(73454, 62350, 'en', 'name', 'Hong Kong Printed Circuit Association'),
(73455, 62350, 'zh', 'name', 'é¦™ęøÆå°åˆ¶ē”µč·Æåä¼š'),
(73456, 62351, 'en', 'name', 'Hong Kong Printers Association'),
(73457, 62351, 'zh', 'name', 'é¦™ęøÆå°åˆ·ę„­å•†ęœƒ'),
(73458, 62352, 'no_lang_code', 'name', 'CET Opto (China)'),
(73459, 62353, 'no_lang_code', 'name', 'RediSem (China)'),
(73460, 62354, 'no_lang_code', 'name', 'Four Directions (China)'),
(73461, 62355, 'en', 'name', 'Hong Kong R&D Centre for Logistics and Supply Chain Management Enabling Technologies'),
(73462, 62355, 'zh', 'name', 'é¦™ęøÆē‰©ęµåŠä¾›åŗ”é“¾ē®”ē†åŗ”ē”ØęŠ€ęœÆē ”å‘äø­åæƒ'),
(73463, 62356, 'no_lang_code', 'name', 'Kingdee (China)'),
(73464, 62357, 'en', 'name', 'China Aircraft Services Limited'),
(73465, 62357, 'zh', 'name', 'äø­åœ‹é£›ę©Ÿęœå‹™ęœ‰é™å…¬åø'),
(73466, 62358, 'no_lang_code', 'name', 'Rehab-Robotics (China)'),
(73467, 62359, 'no_lang_code', 'name', 'Frenzoo (China)'),
(73468, 62360, 'en', 'name', 'Hong Kong Retail Management Association'),
(73469, 62360, 'zh', 'name', 'é¦™ęøÆé›¶å”®ē®”ē†åä¼š'),
(73470, 62361, 'no_lang_code', 'name', 'Frontier Advanced Technology (China)'),
(73471, 62362, 'no_lang_code', 'name', 'Hong Kong RFID (China)'),
(73472, 62363, 'no_lang_code', 'name', 'China Financial Services Holdings (China)'),
(73473, 62363, 'zh', 'name', 'äø­åœ‹é‡‘čžęŠ•č³‡ē®”ē†ęœ‰é™å…¬åø'),
(73474, 62364, 'no_lang_code', 'name', 'Retraction (China)'),
(73475, 62365, 'no_lang_code', 'name', 'Kontel Microsystems (China)'),
(73476, 62366, 'no_lang_code', 'name', 'China Resources (China)'),
(73477, 62366, 'zh', 'name', 'čÆę½¤é›†åœ˜'),
(73478, 62367, 'no_lang_code', 'name', 'Fujitsu (China)'),
(73479, 62368, 'en', 'name', 'Hong Kong Small and Medium Enterprises Association'),
(73480, 62368, 'zh', 'name', 'é¦™ęøÆäø­å°ä¼äøšč”ä¼š'),
(73481, 62369, 'en', 'name', 'Chinese General Chamber of Commerce'),
(73482, 62369, 'zh', 'name', 'é¦™ęøÆäø­čÆēø½å•†ęœƒ'),
(73483, 62370, 'no_lang_code', 'name', 'Koofy Development (China)'),
(73484, 62371, 'en', 'name', 'Chinese Manufacturers'' Association of Hong Kong'),
(73485, 62371, 'zh', 'name', 'é¦™ęøÆäø­čÆå» å•†čÆåˆęœƒ'),
(73486, 62372, 'en', 'name', 'Hong Kong Statistical Society'),
(73487, 62372, 'zh', 'name', 'é¦™ęøÆēµ±čØˆå­øęœƒ'),
(73488, 62373, 'no_lang_code', 'name', 'Rodsum Wireless (China)'),
(73489, 62374, 'no_lang_code', 'name', 'Fustec (China)'),
(73490, 62374, 'zh', 'name', 'åÆŒé”ē§‘ęŠ€åœ‹éš›ęœ‰é™å…¬åø'),
(73491, 62375, 'en', 'name', 'Hong Kong Tourism Board'),
(73492, 62375, 'zh', 'name', 'é¦™ęøÆę—…éŠē™¼å±•å±€'),
(73493, 62376, 'no_lang_code', 'name', 'Chuang''s Consortium International (China)'),
(73494, 62376, 'zh', 'name', 'åŗ„ę°å›½é™…č“¢å›¢'),
(73495, 62377, 'no_lang_code', 'name', 'Gameone Holdings (China)'),
(73496, 62377, 'zh', 'name', 'ę™ŗå‚²ęŽ§č‚”ęœ‰é™å…¬åø'),
(73497, 62378, 'en', 'name', 'Hong Kong Watch Manufacturers Association'),
(73498, 62378, 'zh', 'name', 'é¦™ęøÆč”Øå» å•†ęœƒęœ‰é™å…¬åø'),
(73499, 62379, 'en', 'name', 'Hong Kong Wireless Technology Industry Association'),
(73500, 62379, 'zh', 'name', 'é¦™ęøÆę— ēŗæē§‘ęŠ€å·„äøšåä¼š'),
(73501, 62380, 'en', 'name', 'Law Society of Hong Kong'),
(73502, 62380, 'zh', 'name', 'é¦™ęøÆå¾‹åø«ęœƒ'),
(73503, 62381, 'en', 'name', 'The Gemmological Association of Hong Kong'),
(73504, 62382, 'no_lang_code', 'name', 'Gene Tech (China)'),
(73505, 62383, 'no_lang_code', 'name', 'Chungnam Group (China)'),
(73506, 62383, 'zh', 'name', 'åæ å—é›†å›¢'),
(73507, 62384, 'no_lang_code', 'name', 'Sanwa Technologies (China)'),
(73508, 62385, 'no_lang_code', 'name', 'GeneHarbor (China)'),
(73509, 62386, 'no_lang_code', 'name', 'City Image Technology (China)'),
(73510, 62386, 'zh', 'name', 'åŸŽåø‚å½¢č±”ęŠ€ęœÆ'),
(73511, 62387, 'en', 'name', 'Clothing Industry Training Authority'),
(73512, 62387, 'zh', 'name', 'åˆ¶č”£äøšč®­ē»ƒå±€'),
(73513, 62388, 'no_lang_code', 'name', 'Lexiwave Technology (China)'),
(73514, 62389, 'no_lang_code', 'name', 'Clover Seed (China)'),
(73515, 62389, 'zh', 'name', 'é«˜čÆēØ®å­'),
(73516, 62390, 'no_lang_code', 'name', 'Clovergreen (China)'),
(73517, 62391, 'no_lang_code', 'name', 'Idealand Electronics (China)'),
(73518, 62391, 'zh', 'name', 'ē†ęƒ³å’Œē”µå­'),
(73519, 62392, 'no_lang_code', 'name', 'Global Technic Enterprises (China)'),
(73520, 62393, 'en', 'name', 'Savantas Policy Institute'),
(73521, 62394, 'no_lang_code', 'name', 'DƠ-Jiāng Innovations Science and Technology (China)'),
(73522, 62394, 'zh', 'name', 'å¤§ē–†åˆ›ę–°ē§‘ęŠ€ęœ‰é™å…¬åø'),
(73523, 62395, 'no_lang_code', 'name', 'LinkedTech Solutions (China)'),
(73524, 62396, 'no_lang_code', 'name', 'New Universe Environmental Group (China)'),
(73525, 62396, 'zh', 'name', 'ę–°å®‡åœ‹éš›åÆ¦ę„­(集團)ęœ‰é™å…¬åø'),
(73526, 62397, 'en', 'name', 'Co-operatives of Innovative Intellectuals'),
(73527, 62397, 'zh', 'name', 'åˆ›ę–°ēŸ„čÆ†åˆ†å­åˆä½œē¤¾'),
(73528, 62398, 'no_lang_code', 'name', 'iMusicTech (China)'),
(73529, 62399, 'no_lang_code', 'name', 'AECOM (China)'),
(73530, 62400, 'no_lang_code', 'name', 'Glory Sky Group (China)'),
(73531, 62401, 'no_lang_code', 'name', 'LinkPowerTechnology (China)'),
(73532, 62402, 'no_lang_code', 'name', 'Sengital (China)'),
(73533, 62403, 'no_lang_code', 'name', 'LiteMagic (China)'),
(73534, 62403, 'zh', 'name', 'ē£Šę˜Žē§‘ęŠ€'),
(73535, 62404, 'no_lang_code', 'name', 'Googol Technology (China)'),
(73536, 62405, 'no_lang_code', 'name', 'Lively Impact (China)'),
(73537, 62406, 'no_lang_code', 'name', 'Solomon Systech (China)'),
(73538, 62407, 'no_lang_code', 'name', 'ShaoLin Microsystems (China)'),
(73539, 62408, 'no_lang_code', 'name', 'SillyCube Technology (China)'),
(73540, 62409, 'en', 'name', 'Hong Kong Cytogenetics and Medical Genetics Centre'),
(73541, 62409, 'zh', 'name', 'åŒ»ē–—åŸŗå› äø­åæƒęœ‰é™å…¬åø'),
(73542, 62410, 'no_lang_code', 'name', 'Logital (China)'),
(73543, 62411, 'no_lang_code', 'name', 'Gowell (China)'),
(73544, 62412, 'no_lang_code', 'name', 'Star Vision (China)'),
(73545, 62413, 'no_lang_code', 'name', 'Meyer (China)'),
(73546, 62413, 'zh', 'name', 'ē¾Žäŗžå»šå…·ę——č‰¦åŗ—'),
(73547, 62414, 'no_lang_code', 'name', 'GP Batteries (China)'),
(73548, 62415, 'no_lang_code', 'name', 'Micom Tech (China)'),
(73549, 62416, 'no_lang_code', 'name', 'Grant Technology (China)'),
(73550, 62417, 'no_lang_code', 'name', 'Studio-R'),
(73551, 62418, 'no_lang_code', 'name', 'Lotus Innovative Health (China)'),
(73552, 62419, 'no_lang_code', 'name', 'Storage Computer (China)'),
(73553, 62419, 'zh', 'name', 'å„²å­˜é›»č…¦'),
(73554, 62420, 'en', 'name', 'Graphic Arts Association of Hong Kong'),
(73555, 62421, 'no_lang_code', 'name', 'SinoCDN (China)'),
(73556, 62422, 'no_lang_code', 'name', 'Lucky Technology (China)'),
(73557, 62422, 'zh', 'name', 'å¹øčæęŠ€ęœÆ'),
(73558, 62423, 'no_lang_code', 'name', 'Suga International Holdings (China)'),
(73559, 62424, 'no_lang_code', 'name', 'Green Energy Engineering Consultancy (China)'),
(73560, 62425, 'no_lang_code', 'name', 'Milescan Technologies (China)'),
(73561, 62426, 'no_lang_code', 'name', 'Sun Cupid Technology (China)'),
(73562, 62426, 'zh', 'name', 'å¤Ŗé˜³äø˜ęÆ”ē‰¹ē§‘ęŠ€'),
(73563, 62427, 'no_lang_code', 'name', 'Green Island Chinese Medicine International Group (China)'),
(73564, 62428, 'no_lang_code', 'name', 'Suntek Computer Systems (China)'),
(73565, 62428, 'zh', 'name', 'äø‰ę±Ÿé›»č…¦ē§‘ęŠ€'),
(73566, 62429, 'no_lang_code', 'name', 'Vitargent (China)'),
(73567, 62430, 'no_lang_code', 'name', 'Milo''s Knitwear (China)'),
(73568, 62430, 'zh', 'name', 'ē±³ę“›ēš„é’ˆē»‡å“'),
(73569, 62431, 'no_lang_code', 'name', 'Zensis (China)'),
(73570, 62432, 'en', 'name', 'SupBuyer (China)'),
(73571, 62433, 'no_lang_code', 'name', 'Longchang Group (China)'),
(73572, 62434, 'no_lang_code', 'name', 'Zetakey Solutions (China)'),
(73573, 62435, 'no_lang_code', 'name', 'Suren Systems (China)'),
(73574, 62435, 'zh', 'name', 'č„æę¦®ē§‘ęŠ€ęœ‰é™å…¬åø'),
(73575, 62436, 'no_lang_code', 'name', 'Vitelic Technology (China)'),
(73576, 62437, 'no_lang_code', 'name', 'MixSemi (China)'),
(73577, 62438, 'no_lang_code', 'name', 'Well Being Digital (China)'),
(73578, 62439, 'no_lang_code', 'name', 'Da Tang Xi Shi Group (China)'),
(73579, 62440, 'no_lang_code', 'name', 'Well Synergy International (China)'),
(73580, 62441, 'no_lang_code', 'name', 'Ta Solutions (China)'),
(73581, 62442, 'no_lang_code', 'name', 'Pixelworks (China)'),
(73582, 62443, 'no_lang_code', 'name', 'M-Gen Mobile Technology (China)'),
(73583, 62444, 'no_lang_code', 'name', 'Wincas Technology (China)'),
(73584, 62445, 'no_lang_code', 'name', 'Made in Sense (China)'),
(73585, 62446, 'en', 'name', 'Modernized Chinese Medicine International Association'),
(73586, 62446, 'zh', 'name', 'å›½é™…ēŽ°ä»£åŒ–äø­čÆ'),
(73587, 62447, 'no_lang_code', 'name', 'MotherApp (China)'),
(73588, 62448, 'no_lang_code', 'name', 'Wisers (China)'),
(73589, 62449, 'no_lang_code', 'name', 'Waste & Environmental Technologies (China)'),
(73590, 62450, 'no_lang_code', 'name', 'Manicon Technology (China)'),
(73591, 62451, 'no_lang_code', 'name', 'Mosway Semiconductor (China)'),
(73592, 62452, 'no_lang_code', 'name', 'WiseSpot (China)'),
(73593, 62453, 'no_lang_code', 'name', 'Multi Base (China)'),
(73594, 62454, 'no_lang_code', 'name', 'Cisco Systems (China)'),
(73595, 62455, 'no_lang_code', 'name', 'Yfisoft (China)'),
(73596, 62456, 'no_lang_code', 'name', 'Multichannel (China)'),
(73597, 62456, 'zh', 'name', '多通道'),
(73598, 62457, 'no_lang_code', 'name', 'WCW Technology (China)'),
(73599, 62458, 'en', 'name', 'Young Entrepreneurs Development Council'),
(73600, 62459, 'no_lang_code', 'name', 'Maxful (China)'),
(73601, 62460, 'no_lang_code', 'name', 'Nam Kwong Electric (China)'),
(73602, 62460, 'zh', 'name', 'å—å…‰é›»å“ęœ‰é™å…¬åø'),
(73603, 62461, 'en', 'name', 'National Centre for Immunisation Research & Surveillance'),
(73604, 62462, 'en', 'name', 'Health Education and Training Institute'),
(73605, 62463, 'fr', 'name', 'CancƩropƓle Lyon Auvergne-RhƓne-Alpes'),
(73606, 62464, 'fr', 'name', 'Laboratoire de Mesure du Carbone 14'),
(73607, 62465, 'fr', 'name', 'CancƩropƓle Grand Sud-Ouest'),
(73608, 62466, 'fr', 'name', 'CancƩropƓle Nord-Ouest'),
(73609, 62467, 'fr', 'name', 'Centre d''Ʃtude des solidaritƩs sociales'),
(73610, 62468, 'fr', 'name', 'Observatoire RƩgional de la SantƩ et du Social'),
(73611, 62469, 'fr', 'name', 'Observatoire RĆ©gional de la SantĆ© d’Alsace'),
(73612, 62470, 'fr', 'name', 'Registre gƩnƩral des cancers de Lille et de sa rƩgion'),
(73613, 62471, 'fr', 'name', 'Centre Hospitalier de la DracƩnie'),
(73614, 62472, 'fr', 'name', 'Centre d''ƉpidĆ©miologie sur les Causes MĆ©dicales de DĆ©cĆØs'),
(73615, 62473, 'en', 'name', 'Riga Energy Agency'),
(73616, 62473, 'lv', 'name', 'Rīgas enerģētikas aģentūra'),
(73617, 62474, 'fr', 'name', 'ARPE PACA'),
(73618, 62475, 'en', 'name', 'Architectural Design Agency'),
(73619, 62475, 'bg', 'name', 'ŠŃ€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-Дизайнерска ŠŠ³ŠµŠ½Ń†ŠøŃ ŠžŠžŠ”'),
(73620, 62476, 'id', 'name', 'Badan Meteorologi, Klimatologi, dan Geofisika'),
(73621, 62476, 'en', 'name', 'Meteorological, Climatological, And Geophysical Agency'),
(73622, 62477, 'de', 'name', 'Bundesverband Herzkranke Kinder'),
(73623, 62478, 'en', 'name', 'Aberdeen Harbour Board'),
(73624, 62479, 'de', 'name', 'Bundesverband IT-Mittelstand'),
(73625, 62480, 'en', 'name', 'Abraham Lincoln Bicentennial Foundation'),
(73626, 62481, 'en', 'name', 'BahĆ”''Ć­ Agency for Social and Economic Development'),
(73627, 62482, 'de', 'name', 'Bundesverband Kalksandsteinindustrie'),
(73628, 62483, 'en', 'name', 'Ministry of Health'),
(73629, 62484, 'no_lang_code', 'name', 'Bundesverbandes Keramische Industrie (Germany)'),
(73630, 62485, 'en', 'name', 'Accreditation and Quality Assurance Commission'),
(73631, 62485, 'ar', 'name', 'لجنة الاعتماد ŁˆŲ¶Ł…Ų§Ł† Ų§Ł„Ų¬ŁˆŲÆŲ©'),
(73632, 62486, 'en', 'name', 'Baltic Marine Environment Protection Commission'),
(73633, 62487, 'en', 'name', 'Association for Supply Chain Management, Procurement and Logistics'),
(73634, 62487, 'de', 'name', 'Bundesverband Materialwirtschaft, Einkauf und Logistik'),
(73635, 62488, 'en', 'name', 'Academy of Engineering Sciences'),
(73636, 62488, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ł‡Ł†ŲÆŲ³ŁŠŲ©'),
(73637, 62489, 'en', 'name', 'Sudan Academy for Banking and Financial Sciences'),
(73638, 62489, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ł…ŲµŲ±ŁŁŠŲ© ŁˆŲ§Ł„Ł…Ų§Ł„ŁŠŲ©'),
(73639, 62490, 'de', 'name', 'Bundesverband mittelstƤndische Wirtschaft'),
(73640, 62491, 'de', 'name', 'Bundesverband Naturkost Naturwaren'),
(73641, 62492, 'en', 'name', 'Association of German Public Banks'),
(73642, 62492, 'de', 'name', 'Bundesverband Ɩffentlicher Banken Deutschlands'),
(73643, 62493, 'fr', 'name', 'Agence pour l’Entreprise & l’Innovation'),
(73644, 62494, 'no_lang_code', 'name', 'Banedanmark (Denmark)'),
(73645, 62495, 'fr', 'name', 'Agence pour le dƩveloppement de l''emploi'),
(73646, 62496, 'de', 'name', 'Bundesministerium der Finanzen'),
(73647, 62496, 'en', 'name', 'Federal Ministry of Finance'),
(73648, 62497, 'en', 'name', 'Bangladesh Medical Research Council'),
(73649, 62498, 'de', 'name', 'Bundesverband Reifenhandel und Vulkaniseur-Handwerk'),
(73650, 62499, 'en', 'name', 'Administrative Conference of the United States'),
(73651, 62500, 'de', 'name', 'Bundesverband Solarwirtschaft'),
(73652, 62500, 'en', 'name', 'German Solar Association'),
(73653, 62501, 'fr', 'name', 'Belga'),
(73654, 62502, 'de', 'name', 'VAF Bundesverband Telekommunikation'),
(73655, 62503, 'pl', 'name', 'Agencja Rozwoju Miasta'),
(73656, 62504, 'de', 'name', 'Bundesverband WindEnergie'),
(73657, 62504, 'en', 'name', 'German Wind Energy Association'),
(73658, 62505, 'de', 'name', 'Bundesministerium für Justiz'),
(73659, 62505, 'en', 'name', 'Federal Ministry of Justice'),
(73660, 62506, 'fr', 'name', 'Bruxelles-PropretƩ'),
(73661, 62507, 'pl', 'name', 'Agencja Rozwoju Przemysłu SA'),
(73662, 62507, 'no_lang_code', 'name', 'Industrial Development Agency JSC (Poland)'),
(73663, 62508, 'en', 'name', 'Auvergne-Rhone-Alpes Entreprises'),
(73664, 62509, 'es', 'name', 'Barcelona Energia'),
(73665, 62510, 'en', 'name', 'Agency for Innovation and Technology Transfer'),
(73666, 62510, 'ro', 'name', 'Agenția pentru Inovare și Transfer Tehnologic'),
(73667, 62510, 'ru', 'name', 'Агентство по Š˜Š½Š¾Š²Š°Ń†ŠøŠø Šø Š¢ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¼Ńƒ'),
(73668, 62511, 'fr', 'name', 'Certifer'),
(73669, 62512, 'de', 'name', 'Bundesministerium für Soziales, Gesundheit, Pflege und Konsumentenschutz'),
(73670, 62512, 'en', 'name', 'Federal Ministry of Social Affairs, Health, Care and Consumer Protection'),
(73671, 62513, 'fr', 'name', 'Energieagence'),
(73672, 62514, 'en', 'name', 'German Agency for Quality in Medicine'),
(73673, 62514, 'de', 'name', 'Ƅrztliches Zentrum für QualitƤt in der Medizin (ƄZQ)'),
(73674, 62515, 'de', 'name', 'Bayerisches Staatsministerium der Finanzen, für Landesentwicklung und Heimat'),
(73675, 62516, 'en', 'name', 'Bulgarian Small and Medium Enterprises Promotion Agency'),
(73676, 62517, 'en', 'name', 'Agency for Social Analyses'),
(73677, 62517, 'bg', 'name', 'ŠŠ³ŠµŠ½Ń†ŠøŃŃ‚Š° за социални анализи'),
(73678, 62518, 'en', 'name', 'Austrian Federal Computing Centre'),
(73679, 62518, 'no_lang_code', 'name', 'Bundesrechenzentrum (Austria)'),
(73680, 62519, 'en', 'name', 'The Sitia Development Organisation'),
(73681, 62519, 'el', 'name', 'Ο ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ Ανάπτυξης Σητείας'),
(73682, 62520, 'en', 'name', 'Atlantic Arc Commission'),
(73683, 62521, 'en', 'name', 'Office of the Secretary of Natural Resources'),
(73684, 62522, 'de', 'name', 'Bundesverband Baustoffe - Steine und Erden'),
(73685, 62523, 'en', 'name', 'Presidential Executive Office'),
(73686, 62523, 'ru', 'name', 'ŠŠ“Š¼ŠøŠ½ŠøŃŃ‚Ń€Š°Ń†ŠøŃ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Š°'),
(73687, 62524, 'de', 'name', 'Bundesverband CarSharing'),
(73688, 62525, 'fr', 'name', 'Agence eSantƩ'),
(73689, 62526, 'de', 'name', 'Bundesverband der Deutschen Binnenschiffahrt'),
(73690, 62527, 'en', 'name', 'Institute of Transport Engineering'),
(73691, 62527, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ транспортного Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(73692, 62528, 'de', 'name', 'Bundesverband der Deutschen Luft- und Raumfahrtindustrie'),
(73693, 62528, 'en', 'name', 'German Aerospace Industries Association'),
(73694, 62529, 'en', 'name', 'European Youth Information and Counselling Agency'),
(73695, 62529, 'lb', 'name', 'EuropƤesch Jugendinformatioun an Berodungsassistent'),
(73696, 62530, 'de', 'name', 'Bundesverband der Deutschen Tourismuswirtschaft'),
(73697, 62531, 'en', 'name', 'The Deputy Prime Minister''s Office'),
(73698, 62532, 'no_lang_code', 'name', 'Agency9 (Sweden)'),
(73699, 62533, 'en', 'name', 'Berkeley-Charleston-Dorchester Council of Governments'),
(73700, 62534, 'en', 'name', 'Ministry of Foreign Affairs'),
(73701, 62534, 'zh', 'name', 'ę–°åŠ å”å¤–äŗ¤éƒØ'),
(73702, 62535, 'fr', 'name', 'CRIIRAD'),
(73703, 62536, 'de', 'name', 'Bundesverband der Deutschen Volksbanken und Raiffeisenbanken'),
(73704, 62536, 'en', 'name', 'National Association of German Cooperative Bank'),
(73705, 62537, 'pt', 'name', 'Administração e Gestão de Sistemas de Salubridade'),
(73706, 62538, 'en', 'name', 'Bern Economic Development Agency'),
(73707, 62538, 'de', 'name', 'Standortfƶrderung Kanton Bern'),
(73708, 62539, 'de', 'name', 'Bundesverband der Deutschen Ziegelindustrie'),
(73709, 62540, 'fr', 'name', 'Agence FranƧaise pour le DĆ©veloppement et la Promotion de l’Agriculture Biologique'),
(73710, 62541, 'en', 'name', 'Churches’ Commission for Migrants in Europe'),
(73711, 62542, 'en', 'name', 'Minister of the Interior'),
(73712, 62542, 'fr', 'name', 'Ministère de l''Intérieur'),
(73713, 62543, 'de', 'name', 'Bundesvereinigung der Deutschen ErnƤhrungsindustrie'),
(73714, 62544, 'en', 'name', 'Alabama Bicentennial Commission'),
(73715, 62545, 'de', 'name', 'Der Ɩsterreichische Weinbauverband'),
(73716, 62546, 'en', 'name', 'Arizona Secretary of State''s Office'),
(73717, 62547, 'en', 'name', 'Consumer Protection Commission'),
(73718, 62547, 'bg', 'name', 'ŠšŠ¾Š¼ŠøŃŠøŃ за защита на потребителите'),
(73719, 62548, 'en', 'name', 'Alabama Department of Economic and Community Affairs'),
(73720, 62549, 'fr', 'name', 'Agence France-Presse'),
(73721, 62550, 'en', 'name', 'Frank and Rosemary Iovieno Caring for Children Foundation'),
(73722, 62551, 'en', 'name', 'Missouri Secretary of State''s Office'),
(73723, 62552, 'en', 'name', 'Alabama Historical Commission'),
(73724, 62553, 'en', 'name', 'Office of Washington Secretary of State'),
(73725, 62554, 'en', 'name', 'Alaska Department of Commerce, Community and Economic Development'),
(73726, 62555, 'en', 'name', 'Association of German Banks'),
(73727, 62555, 'de', 'name', 'Bundesverband deutscher Banken'),
(73728, 62556, 'en', 'name', 'National Black Leadership Commission on AIDS'),
(73729, 62557, 'fr', 'name', 'Agence Locale de l''Energie et du Climat de la MƩtropole de Lyon'),
(73730, 62558, 'en', 'name', 'The Alaska Sea Otter and Steller Sea Lion Commission'),
(73731, 62559, 'no_lang_code', 'name', 'Blackboard (United States)'),
(73732, 62560, 'fr', 'name', 'Agence Luxembourgeoise d''Action Culturelle'),
(73733, 62561, 'de', 'name', 'Bundesverband Flachglas'),
(73734, 62561, 'en', 'name', 'Federal Flat Glass Association'),
(73735, 62562, 'nl', 'name', 'Commission Internationale des Examens de Conduite Automobile'),
(73736, 62562, 'en', 'name', 'The International Commission for Driver Testing'),
(73737, 62563, 'en', 'name', 'Irish Blood Transfusion Service'),
(73738, 62564, 'de', 'name', 'Bundesverband Freier Radios'),
(73739, 62565, 'en', 'name', 'The Mediterranean Science Commission'),
(73740, 62566, 'de', 'name', 'Bundesverband Garten- Landschafts- und Sportplatzbau'),
(73741, 62567, 'de', 'name', 'Allgemeiner Deutscher Fahrrad-Club'),
(73742, 62568, 'de', 'name', 'Bundesverband Glaukom-Selbsthilfe'),
(73743, 62569, 'fr', 'name', 'Agence Nationale de Protection de l''Environnement'),
(73744, 62570, 'no_lang_code', 'name', 'Board of Innovation (Belgium)'),
(73745, 62571, 'de', 'name', 'Bundeswehrzentralkrankenhaus Koblenz'),
(73746, 62572, 'fr', 'name', 'SantƩ Publique France'),
(73747, 62573, 'en', 'name', 'National Museum of Ireland'),
(73748, 62574, 'en', 'name', 'American Conference of Governmental Industrial Hygienists'),
(73749, 62575, 'it', 'name', 'Commissione Nazionale per le SocietĆ  e la Borsa'),
(73750, 62576, 'de', 'name', 'Bundesverband SekundƤrrohstoffe und Entsorgung'),
(73751, 62577, 'en', 'name', 'Commodity Futures Trading Commission'),
(73752, 62578, 'ga', 'name', 'FƔilte Ireland'),
(73753, 62579, 'fr', 'name', 'Agence des SystĆØmes d’information PartagĆ©s de SantĆ©'),
(73754, 62580, 'en', 'name', 'Office of the Attorney General'),
(73755, 62581, 'en', 'name', 'British Board of AgrƩment'),
(73756, 62582, 'en', 'name', 'Danish Ministry of Children and Education'),
(73757, 62582, 'da', 'name', 'Undervisningsministeriet'),
(73758, 62583, 'en', 'name', 'British Board of Film Classification'),
(73759, 62584, 'en', 'name', 'British High Commission Singapore'),
(73760, 62585, 'en', 'name', 'Community Water and Sanitation Agency'),
(73761, 62586, 'en', 'name', 'British High Commission Nairobi'),
(73762, 62587, 'fr', 'name', 'Agence pour la CoopƩration Scientifique Afrique Luxembourg'),
(73763, 62588, 'fr', 'name', 'Agence pour la Promotion de la CrƩation Industrielle'),
(73764, 62589, 'no_lang_code', 'name', 'Dashboard (United Kingdom)'),
(73765, 62590, 'ro', 'name', 'Administrația Porturilor Maritime'),
(73766, 62590, 'no_lang_code', 'name', 'Constantza Port (Romania)'),
(73767, 62591, 'en', 'name', 'Bulgarian Food Safety Agency'),
(73768, 62591, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° ŠŠ³ŠµŠ½Ń†ŠøŃ по Безопасност на Єраните'),
(73769, 62592, 'en', 'name', 'Defence Equipment and Support'),
(73770, 62593, 'en', 'name', 'Arab Civil Aviation Commission'),
(73771, 62593, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų·ŁŠŲ±Ų§Ł† Ų§Ł„Ł…ŲÆŁ†ŁŠ'),
(73772, 62594, 'de', 'name', 'AWO Bundesverband'),
(73773, 62595, 'en', 'name', 'Delaware Heritage Commission'),
(73774, 62596, 'en', 'name', 'Delaware River Basin Commission'),
(73775, 62597, 'it', 'name', 'Consorzio Mipa'),
(73776, 62598, 'de', 'name', 'Arbeitsgemeinschaft Mauerziegel'),
(73777, 62599, 'en', 'name', 'Democratic Commission for Human Development'),
(73778, 62600, 'en', 'name', 'Construction Industry Training Board'),
(73779, 62601, 'en', 'name', 'Archives State Agency'),
(73780, 62601, 'bg', 'name', 'Š”ŃŠŃ€Š¶Š°Š²Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ "Архиви"'),
(73781, 62602, 'en', 'name', 'Cyprus Post'),
(73782, 62602, 'tr', 'name', 'Kıbrıs Posta Ofisi'),
(73783, 62603, 'en', 'name', 'Ministry of Agriculture and Fisheries'),
(73784, 62604, 'de', 'name', 'Bundesamt für Weinbau'),
(73785, 62605, 'en', 'name', 'Council of European Aerospace Societies'),
(73786, 62606, 'ga', 'name', 'An Roinn Caiteachais Phoiblí agus Athchóirithe'),
(73787, 62606, 'en', 'name', 'Department of Public Expenditure and Reform'),
(73788, 62607, 'en', 'name', 'Ministry of Healthcare'),
(73789, 62607, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ€Õ”Õ¶Ö€Õ”ÕŗÕ„ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ Õ”Õ¼ÕøÕ²Õ»Õ”ÕŗÕ”Õ°ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ¶Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(73790, 62608, 'en', 'name', 'Ceemet'),
(73791, 62609, 'en', 'name', 'Ashtabula County Mental Health & Recovery Services Board'),
(73792, 62610, 'en', 'name', 'The Department of Arkansas Heritage'),
(73793, 62611, 'de', 'name', 'HBLFA Tirol'),
(73794, 62612, 'de', 'name', 'Bundesagentur für Arbeit'),
(73795, 62612, 'en', 'name', 'Federal Employment Agency'),
(73796, 62613, 'en', 'name', 'European Association for Local Democracy'),
(73797, 62614, 'de', 'name', 'Bundesanstalt für Agrarwirtschaft'),
(73798, 62614, 'en', 'name', 'Federal Institute of Agricultural Economics'),
(73799, 62615, 'en', 'name', 'Council on Health Research for Development'),
(73800, 62616, 'en', 'name', 'Cowlitz-Wahkiakum Council of Governments'),
(73801, 62617, 'en', 'name', 'Department of the Taoiseach'),
(73802, 62617, 'ga', 'name', 'Roinn an Taoisigh'),
(73803, 62618, 'en', 'name', 'ECDL Foundation'),
(73804, 62619, 'en', 'name', 'Department of Cultural Heritage'),
(73805, 62619, 'lt', 'name', 'Kultūros paveldo departamentas'),
(73806, 62620, 'en', 'name', 'Department of Defence'),
(73807, 62621, 'en', 'name', 'Detroit Rescue Mission Ministries'),
(73808, 62622, 'en', 'name', 'Department of Disaster Prevention and Mitigation'),
(73809, 62622, 'th', 'name', 'ąøąø£ąø”ąø›ą¹‰ąø­ąø‡ąøąø±ąø™ą¹ąø„ąø°ąøšąø£ąø£ą¹€ąø—ąø²ąøŖąø²ąø˜ąø²ąø£ąø“ąø ąø±ąø¢'),
(73810, 62623, 'gd', 'name', 'Coimisean nan Croitearan'),
(73811, 62623, 'en', 'name', 'Crofting Commission'),
(73812, 62624, 'en', 'name', 'Florida Department of Economic Opportunity'),
(73813, 62625, 'en', 'name', 'Cromarty Firth Fishery Board'),
(73814, 62626, 'de', 'name', 'ECOVIN Bundesverband Ɩkologischer Weinbau'),
(73815, 62627, 'en', 'name', 'Development Agency for Amvrakikos'),
(73816, 62627, 'el', 'name', 'Ī‘Ī½Ī±Ļ€Ļ„Ļ…Ī¾Ī¹Ī±ĪŗĻŒĻ‚ ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ Ī‘Ī¼Ī²ĻĪ±ĪŗĪ¹ĪŗĪæĻ'),
(73817, 62628, 'en', 'name', 'Development Agency of Karditsa'),
(73818, 62629, 'en', 'name', 'Development Agency of Serbia'),
(73819, 62629, 'sr', 'name', 'Развојна Š°Š³ŠµŠ½Ń†ŠøŃ˜Š° Š”Ń€Š±ŠøŃ˜Šµ'),
(73820, 62630, 'en', 'name', 'European Plasticisers'),
(73821, 62631, 'cs', 'name', 'CzechInvest'),
(73822, 62632, 'no_lang_code', 'name', 'Edgewater Federal Solutions (United States)'),
(73823, 62633, 'en', 'name', 'Education and Early Childhood Development'),
(73824, 62634, 'en', 'name', 'Development Agency of Thessaloniki'),
(73825, 62634, 'el', 'name', 'Αναπτυξιακή ĪĪæĪ¼ĪæĻ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚ Ī‘.Ī•'),
(73826, 62635, 'en', 'name', 'Executive Agency Electronic Communication Networks and Information Systems'),
(73827, 62636, 'en', 'name', 'Danish Board of District Heating'),
(73828, 62637, 'en', 'name', 'Executive Agency Maritime Administration'),
(73829, 62637, 'bg', 'name', 'Š˜Š·ŠæŃŠŠ»Š½ŠøŃ‚ŠµŠ»Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ "ŠœŠ¾Ń€ŃŠŗŠ° ŠŠ“Š¼ŠøŠ½ŠøŃŃ‚Ń€Š°Ń†ŠøŃ"'),
(73830, 62638, 'en', 'name', 'Danish Business Authority'),
(73831, 62639, 'no_lang_code', 'name', 'ƅre Skidfabrik (Sweden)'),
(73832, 62640, 'en', 'name', 'Hellenic Agency for Local Development and Local Government'),
(73833, 62640, 'el', 'name', 'Ελληνική Εταιρία Τοπικής Ανάπτυξης και Ī‘Ļ…Ļ„ĪæĪ“Ī¹ĪæĪÆĪŗĪ·ĻƒĪ·Ļ‚'),
(73834, 62641, 'en', 'name', 'Fairfax-Falls Church Community Services Board'),
(73835, 62642, 'lv', 'name', 'Latvijas Republikas Ekonomikas ministrija'),
(73836, 62642, 'en', 'name', 'Ministry of Economics'),
(73837, 62643, 'en', 'name', 'Maryland Emergency Management Agency'),
(73838, 62644, 'en', 'name', 'Caribbean Health Research Council'),
(73839, 62645, 'en', 'name', 'Tennessee Emergency Management Agency'),
(73840, 62646, 'en', 'name', 'All-Russian Scientific Research Institute of Freshwater Fisheries'),
(73841, 62646, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пресновоГного рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²a'),
(73842, 62647, 'en', 'name', 'All-Russian Research Institute for Animal Health'),
(73843, 62647, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š·Š“Š¾Ń€Š¾Š²ŃŒŃ животных'),
(73844, 62648, 'en', 'name', 'Catholic Agency for Overseas Development'),
(73845, 62649, 'en', 'name', 'JSC Federal Center for Geoecological Systems'),
(73846, 62650, 'no_lang_code', 'name', 'Celerity (United States)'),
(73847, 62651, 'it', 'name', 'Agenzia Energetica Della Provincia Di Livorno'),
(73848, 62652, 'pt', 'name', 'Entidade de Serviços Partilhados da Administração Pública'),
(73849, 62652, 'en', 'name', 'Government Shared Services Entity'),
(73850, 62653, 'en', 'name', 'Federal Management Partners'),
(73851, 62654, 'en', 'name', 'Environmental Centre for Administration and Technology'),
(73852, 62654, 'lt', 'name', 'VieŔoji įstaiga Aplinkosaugos valdymo ir technologijų'),
(73853, 62655, 'en', 'name', 'Pakistan Environmental Protection Agency'),
(73854, 62656, 'no_lang_code', 'name', 'Alexium (United States)'),
(73855, 62657, 'en', 'name', 'Department of Fisheries and Marine Research'),
(73856, 62657, 'el', 'name', 'Τμήματος Αλιείας και Ī˜Ī±Ī»Ī±ĻƒĻƒĪÆĻ‰Ī½ Ī•ĻĪµĻ…Ī½ĻŽĪ½'),
(73857, 62658, 'ro', 'name', 'Directia pentru Evidenta Persoanelor si Administrarea Bazelor de Date'),
(73858, 62658, 'en', 'name', 'Directorate for Persons Record and Databases Management'),
(73859, 62659, 'en', 'name', 'Federal Forestry Agency of Russia'),
(73860, 62659, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń Š»ŠµŃŠ½Š°Ń служба России'),
(73861, 62660, 'pt', 'name', 'Escola de Negócios e Administração'),
(73862, 62661, 'no_lang_code', 'name', 'Eska (Netherlands)'),
(73863, 62662, 'ga', 'name', 'An Roinn DlĆ­ agus Cirt'),
(73864, 62662, 'en', 'name', 'Department of Justice'),
(73865, 62663, 'en', 'name', 'Department of Livestock Development'),
(73866, 62663, 'th', 'name', 'ąøąø£ąø”ąø›ąøØąøøąøŖąø±ąø•ąø§ą¹Œ'),
(73867, 62664, 'en', 'name', 'All-Russian Research Geological Oil Institute'),
(73868, 62664, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефти'),
(73869, 62665, 'fr', 'name', 'Commission Internationale pour la Protection des Alpes'),
(73870, 62666, 'id', 'name', 'Direktorat Jenderal Peternakan dan Kesehatan Hewan'),
(73871, 62667, 'en', 'name', 'The Federal Trust'),
(73872, 62668, 'en', 'name', 'Directorate of Fisheries'),
(73873, 62668, 'no', 'name', 'Fiskeridirektoratet'),
(73874, 62669, 'en', 'name', 'Citizens Committee for Historic Preservation'),
(73875, 62670, 'nl', 'name', 'FOD Werkgelegenheid, Arbeid en Sociaal Overleg'),
(73876, 62670, 'en', 'name', 'Federal Public Service Employment, Labour and Social Dialogue'),
(73877, 62670, 'de', 'name', 'FƖD BeschƤftigung, Arbeit und Soziale Konzertierung'),
(73878, 62670, 'fr', 'name', 'SPF Emploi, Travail et Concertation sociale'),
(73879, 62671, 'en', 'name', 'European Association of Research Managers and Administrators'),
(73880, 62672, 'en', 'name', 'European Aviation Safety Agency'),
(73881, 62673, 'en', 'name', 'European Biodiesel Board'),
(73882, 62674, 'no_lang_code', 'name', 'Federalimentare (Italy)'),
(73883, 62675, 'en', 'name', 'State Board of Education'),
(73884, 62676, 'en', 'name', 'Dobrich Local Agency for Energy Management'),
(73885, 62676, 'bg', 'name', 'Добрич ŠŠ³ŠµŠ½Ń†ŠøŃ за ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŠµ на ŠµŠ½ŠµŃ€Š³ŠøŃŃ‚а'),
(73886, 62677, 'en', 'name', 'Coachella Valley Association of Governments'),
(73887, 62678, 'bs', 'name', 'Federalni hidrometeoroloŔki zavod'),
(73888, 62679, 'en', 'name', 'Coastal Watershed Council'),
(73889, 62680, 'cy', 'name', 'Asiantaeth Trwyddedu Gyrwyr a Cherbydau'),
(73890, 62680, 'en', 'name', 'Driver and Vehicle Licensing Agency'),
(73891, 62681, 'en', 'name', 'European Federation of Agencies and Regions for Energy and Environment'),
(73892, 62682, 'en', 'name', 'Coconut Industry Board'),
(73893, 62683, 'en', 'name', 'European Council for an Energy Efficient Economy'),
(73894, 62684, 'en', 'name', 'European Shippers'' Council'),
(73895, 62685, 'en', 'name', 'Collingswood Public Schools'),
(73896, 62686, 'en', 'name', 'Federation of Sri Lankan Local Government Authorities'),
(73897, 62687, 'en', 'name', 'Flanders Environment Agency'),
(73898, 62687, 'nl', 'name', 'Vlaamse Milieumaatschappij'),
(73899, 62688, 'en', 'name', 'Dutch Fish Marketing Board'),
(73900, 62688, 'nl', 'name', 'Nederlands Visbureau'),
(73901, 62689, 'no_lang_code', 'name', 'Fermion Government Services (United States)'),
(73902, 62690, 'en', 'name', 'Florida Certification Board'),
(73903, 62691, 'en', 'name', 'European Council on Refugees and Exiles'),
(73904, 62692, 'en', 'name', 'Columbus Consolidated Government'),
(73905, 62693, 'en', 'name', 'Danish Ministry of Finance'),
(73906, 62693, 'da', 'name', 'Finansministeriet'),
(73907, 62694, 'de', 'name', 'Finanzministerium des Landes Schleswig-Holstein'),
(73908, 62695, 'en', 'name', 'European Union Agency for Law Enforcement Cooperation'),
(73909, 62696, 'en', 'name', 'East Baton Rouge Parish School System'),
(73910, 62697, 'fr', 'name', 'Commission de Formation de l''Est Ontarien'),
(73911, 62697, 'en', 'name', 'Eastern Ontario Training Board'),
(73912, 62698, 'en', 'name', 'European Transport Safety Council'),
(73913, 62699, 'en', 'name', 'Health Protection Agency'),
(73914, 62700, 'en', 'name', 'Danish Nature Agency'),
(73915, 62700, 'da', 'name', 'Naturstyrelsen'),
(73916, 62701, 'en', 'name', 'European Utilities Telecom Council'),
(73917, 62702, 'en', 'name', 'International Commission for the Hydrology of the Rhine Basin'),
(73918, 62702, 'nl', 'name', 'Internationale Kommission für die Hydrologie des Rheingebietes'),
(73919, 62703, 'en', 'name', 'European Writers'' Council'),
(73920, 62704, 'en', 'name', 'Federal Motor Transport Authority'),
(73921, 62704, 'de', 'name', 'Kraftfahrt-Bundesamt'),
(73922, 62705, 'en', 'name', 'International Commission on Illumination'),
(73923, 62705, 'de', 'name', 'Internationale Beleuchtungskommission'),
(73924, 62706, 'en', 'name', 'Applied Energy Lab'),
(73925, 62706, 'el', 'name', 'Ī•ĻĪ³Ī±ĻƒĻ„Ī®ĻĪ¹Īæ Ī•Ļ†Ī±ĻĪ¼ĪæĪ³ĻŽĪ½ Ενέργειας'),
(73926, 62707, 'en', 'name', 'Department of Metropolitan Development'),
(73927, 62708, 'en', 'name', 'Hellenic Civil Aviation Authority'),
(73928, 62708, 'el', 'name', 'Ī„Ļ€Ī·ĻĪµĻƒĪÆĪ± Πολιτικής Αεροπορίας'),
(73929, 62709, 'en', 'name', 'International Commission on Non-Ionizing Radiation Protection'),
(73930, 62710, 'en', 'name', 'Employment and Economic Development Office'),
(73931, 62710, 'fi', 'name', 'Tyƶ- ja elinkeinotoimisto'),
(73932, 62711, 'en', 'name', 'Maryland Commission on African American History and Culture'),
(73933, 62712, 'en', 'name', 'Maryland-National Capital Park and Planning Commission'),
(73934, 62713, 'en', 'name', 'International Commission on Radiological Protection'),
(73935, 62714, 'en', 'name', 'Tsehootsooi Medical Center'),
(73936, 62715, 'en', 'name', 'ICLEI - Local Governments for Sustainability Canada'),
(73937, 62716, 'en', 'name', 'NHS Forth Valley'),
(73938, 62717, 'en', 'name', 'FORZA, Agency For Sustainable Development of The Carpathian Region'),
(73939, 62717, 'uk', 'name', 'Агентство ŃŠæŃ€ŠøŃŠ½Š½Ń ŃŃ‚Š°Š»Š¾Š¼Ńƒ Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ Ń€ŠµŠ³Ń–Š¾Š½Ńƒ Š¤ŠžŠ Š—Š'),
(73940, 62718, 'en', 'name', 'International Council of Associations for Science Education'),
(73941, 62719, 'fr', 'name', 'Commission de la Sante Mentale du Canada'),
(73942, 62719, 'en', 'name', 'Mental Health Commission of Canada'),
(73943, 62720, 'en', 'name', 'ICLEI - Local Governments for Sustainability'),
(73944, 62721, 'en', 'name', 'International Council of Marine Industry Associations'),
(73945, 62722, 'en', 'name', 'Mental Health and Recovery Services Board of Seneca, Sandusky and Wyandot Counties'),
(73946, 62723, 'en', 'name', 'Fujian Province Science and Technology Association'),
(73947, 62723, 'zh', 'name', 'ē¦å»ŗēœē§‘å­¦ęŠ€ęœÆåä¼š'),
(73948, 62724, 'no_lang_code', 'name', 'Siniat (United Kingdom)'),
(73949, 62725, 'de', 'name', 'Hessisches Kultusministerium'),
(73950, 62726, 'en', 'name', 'International Council of Museums'),
(73951, 62727, 'pt', 'name', 'Fundace'),
(73952, 62728, 'de', 'name', 'Hessisches Ministerium für Umwelt, Klimaschutz, Landwirtschaft und Verbraucherschutz'),
(73953, 62729, 'en', 'name', 'Mental Health, Drug & Alcohol Services Board of Logan and Champaign'),
(73954, 62730, 'en', 'name', 'Lafourche Parish School District'),
(73955, 62731, 'no_lang_code', 'name', 'LAMA (Italy)'),
(73956, 62732, 'en', 'name', 'Learning and Skills Development Agency'),
(73957, 62733, 'pt', 'name', 'Direcção dos Serviços da Reforma Jurídica e do Direito Internacional'),
(73958, 62734, 'en', 'name', 'Alaska Native Health Board'),
(73959, 62735, 'en', 'name', 'International Food & Agricultural Trade Policy Council'),
(73960, 62736, 'de', 'name', 'Technologisches Gewerbemuseum'),
(73961, 62736, 'no_lang_code', 'name', 'Tgm'),
(73962, 62737, 'en', 'name', 'Granite Falls Family Medical Care Center'),
(73963, 62738, 'en', 'name', 'Greater Lafourche Port Commission'),
(73964, 62739, 'en', 'name', 'Hopi Cultural Center'),
(73965, 62740, 'en', 'name', 'Greater Portland Council of Governments'),
(73966, 62741, 'en', 'name', 'Boston Landmarks Commission'),
(73967, 62742, 'en', 'name', 'General Directorate for National Roads and Motorways');
INSERT INTO `ror_settings` VALUES
(73968, 62742, 'pl', 'name', 'Generalna Dyrekcja Dróg Krajowych i Autostrad'),
(73969, 62743, 'no_lang_code', 'name', 'Hotblock Onboard (France)'),
(73970, 62744, 'no_lang_code', 'name', 'Houot Agencement (France)'),
(73971, 62745, 'no_lang_code', 'name', 'Masquelier’s (Netherlands)'),
(73972, 62746, 'es', 'name', 'Asociación de InformÔticos del Uruguay'),
(73973, 62747, 'en', 'name', 'Investment and Development Agency of Latvia'),
(73974, 62747, 'lv', 'name', 'Latvijas Investīciju un attīstības aģentūra'),
(73975, 62748, 'no_lang_code', 'name', 'Lattice Government Services (United States)'),
(73976, 62749, 'en', 'name', 'Houston Parks Board'),
(73977, 62750, 'en', 'name', 'Human Service Agency'),
(73978, 62751, 'es', 'name', 'Consejo OleĆ­cola Internacional'),
(73979, 62751, 'en', 'name', 'International Olive Council'),
(73980, 62752, 'no_lang_code', 'name', 'Latvian Environment, Geology and Meteorology Centre (Latvia)'),
(73981, 62752, 'lv', 'name', 'Latvijas Vides, ģeoloģijas un meteoroloģijas centrs'),
(73982, 62753, 'en', 'name', 'Iberia Parish Government'),
(73983, 62754, 'en', 'name', 'Guyana Forestry Commission'),
(73984, 62755, 'en', 'name', 'International Council on Clean Transportation'),
(73985, 62755, 'de', 'name', 'Internationaler Rat für sauberen Verkehr'),
(73986, 62756, 'en', 'name', 'International Risk Governance Council'),
(73987, 62757, 'en', 'name', 'Icelandic Transport Authority'),
(73988, 62757, 'is', 'name', 'SamgƶngurƔưuneytiư'),
(73989, 62758, 'en', 'name', 'General Directorate of Highways'),
(73990, 62758, 'tr', 'name', 'Türkiye Cumhuriyeti Karayolları Genel Müdürlüğü'),
(73991, 62759, 'fr', 'name', 'ID Champagne-Ardenne'),
(73992, 62760, 'en', 'name', 'Idaho State Department of Agriculture'),
(73993, 62761, 'en', 'name', 'State Environmental Service'),
(73994, 62761, 'lv', 'name', 'Valsts vides dienests'),
(73995, 62762, 'no_lang_code', 'name', 'Iggesund Paperboard (Sweden)'),
(73996, 62763, 'en', 'name', 'Interstate Commission for Water Coordination of Central Asia'),
(73997, 62763, 'ru', 'name', 'ŠœŠµŠ¶Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š¾Ń€Š“ŠøŠ½Š°Ń†ŠøŠ¾Š½Š½Š°Ń Š²Š¾Š“Š¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š¼ŠøŃŃŠøŃ'),
(73998, 62764, 'en', 'name', 'Maryland Department of General Services'),
(73999, 62765, 'en', 'name', 'Geological Survey Department'),
(74000, 62766, 'de', 'name', 'Industrievereinigung Kunststoffverpackungen'),
(74001, 62767, 'en', 'name', 'Independent Expert Consulting Board to Promote Scientific Research Activity in Kazakhstan'),
(74002, 62767, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½Š“Š°Ņ“Ń‹ ғылыми-Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ қызметін Š“Š°Š¼Ń‹Ń‚ŃƒŅ“Š° арналған Ń‚Ó™ŃƒŠµŠ»ŃŃ–Š· сараптамалық кеңес Š±ŠµŃ€Ńƒ кеңесі'),
(74003, 62768, 'en', 'name', 'Rural Payments Agency'),
(74004, 62769, 'no_lang_code', 'name', 'MAMA-86'),
(74005, 62770, 'en', 'name', 'Georgia Department of Juvenile Justice'),
(74006, 62771, 'en', 'name', 'Georgia Emergency Management Agency'),
(74007, 62772, 'lt', 'name', 'Lietuvos geologijos tarnyba'),
(74008, 62772, 'en', 'name', 'Lithuanian Geological Survey'),
(74009, 62773, 'lt', 'name', 'Lietuvos Respublikos Aplinkos Ministerija'),
(74010, 62773, 'en', 'name', 'Ministry of Environment of the Republic of Lithuania'),
(74011, 62774, 'en', 'name', 'Indian Nations Council of Governments'),
(74012, 62775, 'lt', 'name', 'Lietuvos Respublikos energetikos ministerija'),
(74013, 62775, 'en', 'name', 'Ministry of Energy of the Republic of Lithuania'),
(74014, 62776, 'en', 'name', 'Terviseamet Health Board'),
(74015, 62777, 'en', 'name', 'Ministry of Health of the Republic of Lithuania'),
(74016, 62778, 'en', 'name', 'Georgia Public Broadcasting'),
(74017, 62779, 'lt', 'name', 'Lietuvos Respublikos Ŕvietimo ir mokslo ministerija'),
(74018, 62779, 'en', 'name', 'Ministry of Education and Science of the Republic of Lithuania'),
(74019, 62780, 'en', 'name', 'Indiana Professional Licensing Agency'),
(74020, 62781, 'lt', 'name', 'Lietuvos Respublikos teisingumo ministerija'),
(74021, 62781, 'en', 'name', 'Ministry of Justice of the Republic of Lithuania'),
(74022, 62782, 'en', 'name', 'Contact Helpline'),
(74023, 62783, 'lt', 'name', 'Lietuvos saugios laivybos administracija'),
(74024, 62783, 'en', 'name', 'The Lithuanian Maritime Safety Administration'),
(74025, 62784, 'en', 'name', 'National Agency for Technological Development'),
(74026, 62785, 'lt', 'name', 'Jonavos Rajono Savivaldybė'),
(74027, 62786, 'en', 'name', 'Israel-Europe R&D Directorate'),
(74028, 62787, 'lt', 'name', 'Lietuvos automobilių kelių direkcija prie Susisiekimo ministerijos'),
(74029, 62787, 'en', 'name', 'Lithuanian Road Administration under the Ministry of Transport and Communications'),
(74030, 62788, 'de', 'name', 'Ministerium der Justiz Nordrhein-Westfalen'),
(74031, 62789, 'no_lang_code', 'name', 'Isastur (Spain)'),
(74032, 62790, 'no_lang_code', 'name', 'Technopolis (Finland)'),
(74033, 62791, 'de', 'name', 'Ministerium des Innern des Landes Nordrhein-Westfalen'),
(74034, 62792, 'no_lang_code', 'name', 'Kab Bygge-Og Boligadministration (Denmark)'),
(74035, 62793, 'en', 'name', 'Kahoolawe Island Reserve Commission'),
(74036, 62794, 'en', 'name', 'Kansas Board of Pharmacy'),
(74037, 62795, 'en', 'name', 'Loughs Agency'),
(74038, 62796, 'fr', 'name', 'Agence pour l''Observation de la RƩunion'),
(74039, 62797, 'en', 'name', 'Louisiana Organ Procurement Agency'),
(74040, 62798, 'fr', 'name', 'Gouvernement de la Nouvelle-CalƩdonie'),
(74041, 62799, 'en', 'name', 'Kentucky Commission on Human Rights'),
(74042, 62800, 'en', 'name', 'Israel Olive Oil Board'),
(74043, 62801, 'et', 'name', 'Keskkonnaministeerium'),
(74044, 62801, 'en', 'name', 'Ministry of the Environment'),
(74045, 62802, 'it', 'name', 'Ministero delle Infrastrutture e dei Trasporti'),
(74046, 62802, 'en', 'name', 'Ministry of Infrastructures and Transport'),
(74047, 62803, 'en', 'name', 'Minsk Regional Institute of Education Development'),
(74048, 62803, 'ru', 'name', 'Минский областной ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(74049, 62804, 'en', 'name', 'Government of Nova Scotia'),
(74050, 62805, 'en', 'name', 'Federal Aviation Office'),
(74051, 62805, 'de', 'name', 'Luftfahrt-Bundesamt'),
(74052, 62806, 'en', 'name', 'International Commission on Radiation Units and Measurements'),
(74053, 62807, 'en', 'name', 'Macedonian Information Agency'),
(74054, 62807, 'mk', 'name', 'МакеГонска информативна Š°Š³ŠµŠ½Ń†ŠøŃ˜Š°'),
(74055, 62808, 'no_lang_code', 'name', 'Econboard (Italy)'),
(74056, 62809, 'lt', 'name', 'Klaipėdos Miesto Savivaldybė'),
(74057, 62810, 'en', 'name', 'Jewish Agency for Israel'),
(74058, 62810, 'he', 'name', 'ההוכנות היהודית לארׄ ×™×©×Ø××œ'),
(74059, 62811, 'sv', 'name', 'Konsumentverket'),
(74060, 62811, 'en', 'name', 'Swedish Consumer Agency'),
(74061, 62812, 'en', 'name', 'International Association for the Exchange of Students for Technical Experience'),
(74062, 62812, 'mk', 'name', 'ŠœŠµŃ“ŃƒŠ½Š°Ń€Š¾Š“Š½Š° Š°ŃŠ¾Ń†ŠøŃ˜Š°Ń†ŠøŃ˜Š° за размена на ŃŃ‚ŃƒŠ“ŠµŠ½Ń‚Šø за техничко ŠøŃŠŗŃƒŃŃ‚во'),
(74063, 62813, 'en', 'name', 'Manchester Climate Change Agency'),
(74064, 62814, 'en', 'name', 'Marches Energy Agency'),
(74065, 62815, 'en', 'name', 'North Atlantic Salmon Conservation Organization'),
(74066, 62816, 'lt', 'name', 'Marijampolė municipality'),
(74067, 62817, 'de', 'name', 'Bundesverband der SelbstƤndigen Deutscher Gewerbeverband'),
(74068, 62818, 'en', 'name', 'Malta Intelligent Energy Management Agency'),
(74069, 62819, 'bs', 'name', 'Ministarstvo komunikacija i prometa'),
(74070, 62819, 'en', 'name', 'Ministry of Communication and Transport'),
(74071, 62820, 'en', 'name', 'Midcoast Watersheds Council'),
(74072, 62821, 'en', 'name', 'Ministry of Economy of the Republic of Bulgaria'),
(74073, 62821, 'bg', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на икономиката на Република Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(74074, 62822, 'fr', 'name', 'MinistĆØre de la Production Animale et des Ressources Halieutiques'),
(74075, 62823, 'en', 'name', 'Ministry of Economy'),
(74076, 62824, 'es', 'name', 'Ministerio de Salud - Provincia de Buenos Aires'),
(74077, 62825, 'sr', 'name', 'Ministarstvo finansija-uprava carina'),
(74078, 62825, 'en', 'name', 'Ministry of Finance and Economy'),
(74079, 62826, 'bs', 'name', 'Ministarstvo Gospodarstva'),
(74080, 62827, 'en', 'name', 'Ministry of Culture and Sport of the Republic of Kazakhstan'),
(74081, 62827, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ ŠœÓ™Š“ŠµŠ½ŠøŠµŃ‚ және спорт министрлігі'),
(74082, 62828, 'de', 'name', 'Ministerium der Deutschsprachigen Gemeinschaft'),
(74083, 62829, 'es', 'name', 'Ministerio de Salud'),
(74084, 62830, 'sq', 'name', 'Ministria e Financave dhe Ekonomisƫ'),
(74085, 62830, 'en', 'name', 'Ministry of Finance'),
(74086, 62831, 'hr', 'name', 'Ministarstvo graditeljstva i prostornoga uređenja'),
(74087, 62831, 'en', 'name', 'Ministry of Construction and Physical Planning'),
(74088, 62832, 'fr', 'name', 'Ministère de la Santé'),
(74089, 62833, 'bs', 'name', 'Ministarstvo nauke i Tehnologije'),
(74090, 62833, 'en', 'name', 'Ministry of Science and Technology'),
(74091, 62834, 'hr', 'name', 'Ministarstvo Pravosuđa'),
(74092, 62834, 'en', 'name', 'Ministry of Justice'),
(74093, 62835, 'sl', 'name', 'Ministrstvo za infrastrukturo'),
(74094, 62835, 'en', 'name', 'Ministry of Infrastructure'),
(74095, 62836, 'en', 'name', 'Ministry of Natural Resources and Environment'),
(74096, 62836, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ прироГных Ń€ŠµŃŃƒŃ€ŃŠ¾Š² Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Российской ФеГерации'),
(74097, 62837, 'es', 'name', 'Ministerio de Salud PĆŗblica y Asistencia Social'),
(74098, 62838, 'sl', 'name', 'Ministrstvo za javno upravo'),
(74099, 62838, 'en', 'name', 'Ministry of Public Administration'),
(74100, 62839, 'en', 'name', 'Ministry of Ecology and Natural Resources of Ukraine'),
(74101, 62839, 'uk', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ екології та прироГних Ń€ŠµŃŃƒŃ€ŃŃ–Š² України'),
(74102, 62840, 'bs', 'name', 'Ministarstvo vanjskih poslova'),
(74103, 62840, 'hr', 'name', 'Ministarstvo vanjskih poslova'),
(74104, 62840, 'en', 'name', 'Ministry of Foreign Affairs'),
(74105, 62840, 'sr', 'name', 'ŠœŠøŠ½ŠøŃŃ‚Š°Ń€ŃŃ‚Š²Š¾ иностраних послова'),
(74106, 62841, 'en', 'name', 'Ministry of Economic Development and Trade'),
(74107, 62841, 'uk', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ економічного Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ і торгівлі України'),
(74108, 62842, 'pt', 'name', 'Ministério da Saúde'),
(74109, 62843, 'sl', 'name', 'Ministrstvo za Obrambo Republike Slovenije'),
(74110, 62843, 'en', 'name', 'Ministry of Defence'),
(74111, 62844, 'de', 'name', 'Ministerium für Umwelt und Verbraucherschutz'),
(74112, 62845, 'sl', 'name', 'Ministrstvo za okolje in prostor'),
(74113, 62845, 'en', 'name', 'Ministry of the Environment and Spatial Planning'),
(74114, 62846, 'en', 'name', 'Ministry of Economy of the Republic of Belarus'),
(74115, 62846, 'be', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŃŃ€ŃŃ‚Š²Š° ŃŠŗŠ°Š½Š¾Š¼Ń–ŠŗŃ– Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(74116, 62847, 'lt', 'name', 'Lietuvos Respublikos ūkio ministerija'),
(74117, 62847, 'en', 'name', 'Ministry of Economy of the Republic of Lithuania'),
(74118, 62848, 'fr', 'name', 'Ministre de la ForĆŖt,de la Mer et de l''Environnement'),
(74119, 62849, 'en', 'name', 'Ministry of Education and Science of Georgia'),
(74120, 62849, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ’įƒįƒœįƒįƒ—įƒšįƒ”įƒ‘įƒ˜įƒ”įƒ įƒ“įƒ įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒ˜įƒ” įƒ”įƒįƒ›įƒ˜įƒœįƒ˜įƒ”įƒ¢įƒ įƒ'),
(74121, 62850, 'en', 'name', 'Ministry of Education and Culture'),
(74122, 62850, 'el', 'name', '΄πουργείο ΠαιΓείας και Ī ĪæĪ»Ī¹Ļ„Ī¹ĻƒĪ¼ĪæĻ'),
(74123, 62851, 'en', 'name', 'Ministry of Mines and Geology'),
(74124, 62851, 'fr', 'name', 'Ministère des Mines et de la Géologie'),
(74125, 62852, 'en', 'name', 'Flemish Community'),
(74126, 62853, 'fr', 'name', 'Ministère de l''Education Nationale de CÓte d''Ivoire'),
(74127, 62854, 'de', 'name', 'Ministerium der Finanzen des Landes Sachsen-Anhalt'),
(74128, 62855, 'de', 'name', 'Ministerium des Innern und für Sport Rheinland-Pfalz'),
(74129, 62856, 'en', 'name', 'Ministry for Finance'),
(74130, 62857, 'en', 'name', 'Ministry of Labour, Employment and the Social and Solidarity Economy'),
(74131, 62857, 'fr', 'name', 'MinistĆØre du Travail, de l''Emploi et de l''Ɖconomie Sociale et Solidaire'),
(74132, 62858, 'de', 'name', 'Ministerium für Umwelt, Energie, Ernährung und Forsten Rheinland Pfalz'),
(74133, 62859, 'fr', 'name', 'MinistĆØre de l''Agriculture, de l''Elevage et de l''Hydraulique'),
(74134, 62860, 'en', 'name', 'Ministry of Labour, Social Insurance and Social Solidarity'),
(74135, 62860, 'el', 'name', '΄πουργείο Ī•ĻĪ³Ī±ĻƒĪÆĪ±Ļ‚ και ĪšĪæĪ¹Ī½Ļ‰Ī½Ī¹ĪŗĪ®Ļ‚ Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±Ļ‚ & ĪšĪæĪ¹Ī½Ļ‰Ī½Ī¹ĪŗĪ®Ļ‚ Ī‘Ī»Ī»Ī·Ī»ĪµĪ³Ī³ĻĪ·Ļ‚'),
(74136, 62861, 'en', 'name', 'Ministry of Energy of the Republic of Bulgaria'),
(74137, 62861, 'bg', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на енергетиката на Република Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(74138, 62862, 'en', 'name', 'Ministry of Energy, Commerce, Industry and Tourism'),
(74139, 62862, 'el', 'name', '΄πουργείο Ενέργειας, Εμπορίου, Βιομηχανίας και Ī¤ĪæĻ…ĻĪ¹ĻƒĪ¼ĪæĻ,'),
(74140, 62863, 'de', 'name', 'Ministerium für Verkehr des Landes Nordrhein-Westfalen'),
(74141, 62864, 'en', 'name', 'General Directorate of Forestry'),
(74142, 62864, 'tr', 'name', 'ORMAN GENEL MƜDƜRLƜĞƜ'),
(74143, 62865, 'en', 'name', 'Ministry of Environment and Physical Planning'),
(74144, 62865, 'mk', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ за животна среГина Šø просторно ŠæŠ»Š°Š½ŠøŃ€Š°ŃšŠµ'),
(74145, 62866, 'en', 'name', 'Ministry of Agriculture and Agrarian Reform'),
(74146, 62866, 'ar', 'name', 'وزارة الزراعة ŁˆŲ§Ł„Ų„ŲµŁ„Ų§Ų­ Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠ'),
(74147, 62867, 'en', 'name', 'Ministry of Agriculture, Food and Forestry'),
(74148, 62867, 'bg', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на земеГелието Šø горите, Ministerstvo na zemedelieto i gorite'),
(74149, 62868, 'en', 'name', 'Ministry of Agriculture and Forestry'),
(74150, 62868, 'lo', 'name', 'ąŗąŗ°ąŗŠąŗ§ąŗ‡ ກະສຓກຳ ແຄະ ąŗ›ą»ˆąŗ²ą»„ąŗ”ą»‰'),
(74151, 62869, 'pt', 'name', 'Ministério da Ciência e Tecnologia'),
(74152, 62870, 'en', 'name', 'Ministry of Agriculture and Food'),
(74153, 62870, 'be', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø ŠæŃ€Š¾Š“Š¾Š²Š¾Š»ŃŒŃŃ‚Š²ŠøŃ Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(74154, 62871, 'is', 'name', 'FjƔrmƔla- og efnahagsrƔưuneytiư'),
(74155, 62871, 'en', 'name', 'Ministry of Finance and Economic Affairs'),
(74156, 62872, 'en', 'name', 'Ministry of Finance'),
(74157, 62872, 'mk', 'name', 'ŠœŠøŠ½ŠøŃŃ‚Š°Ń€ за финансии'),
(74158, 62873, 'pl', 'name', 'Ministerstwo Finansów'),
(74159, 62873, 'en', 'name', 'Ministry of Finance'),
(74160, 62874, 'en', 'name', 'Ministry of Agriculture'),
(74161, 62875, 'it', 'name', 'Ministero del lavoro e delle politiche sociali'),
(74162, 62875, 'en', 'name', 'Ministry of Labour and Social Policies'),
(74163, 62876, 'en', 'name', 'Ministry of Finance'),
(74164, 62876, 'he', 'name', '×žÖ“×©Ö°×‚×ØÖ·×“ הַאוֹצָר'),
(74165, 62877, 'en', 'name', 'Danish Ministry of Industry, Business and Financial Affairs'),
(74166, 62877, 'da', 'name', 'Erhvervsministeriets opgave'),
(74167, 62878, 'fr', 'name', 'Ministère de la Famille, de l''Intégration et à la Grande Région'),
(74168, 62879, 'fr', 'name', 'Ministère de la Fonction Publique et de la Réforme Administrative'),
(74169, 62880, 'en', 'name', 'Ministry of Communications and Technology'),
(74170, 62880, 'ar', 'name', 'وزارة ال؄تصالات ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(74171, 62881, 'lt', 'name', 'BirÅ”tono Savivaldybė'),
(74172, 62882, 'ro', 'name', 'Ministerul Comunicațiilor și Societății Informaționale'),
(74173, 62883, 'en', 'name', 'Ministry of Foreign Affairs'),
(74174, 62883, 'uk', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ закорГонних справ України'),
(74175, 62884, 'en', 'name', 'Ministry of Foreign Affairs'),
(74176, 62884, 'bg', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на Š²ŃŠŠ½ŃˆŠ½ŠøŃ‚е работи'),
(74177, 62885, 'ro', 'name', 'Ministerul Sănătății, Muncii și Protecției Sociale'),
(74178, 62885, 'en', 'name', 'Ministry of Health, Labour and Social Protection'),
(74179, 62886, 'en', 'name', 'Ministry of Health'),
(74180, 62887, 'sk', 'name', 'Ministerstvo hospodƔrstva Slovenskej republiky'),
(74181, 62887, 'en', 'name', 'Ministry of Economy of the Slovak Republic'),
(74182, 62888, 'en', 'name', 'Ministry for Health'),
(74183, 62889, 'sq', 'name', 'Ministria e Shƫndetƫsisƫ dhe Mbrojtjes Sociale'),
(74184, 62889, 'en', 'name', 'Ministry of Health and Social Protection'),
(74185, 62890, 'en', 'name', 'Ministry of Health'),
(74186, 62890, 'mn', 'name', 'Эрүүл Š¼ŃŠ½Š“ийн ŃŠ°Š¼'),
(74187, 62891, 'en', 'name', 'Ministry of Health and Wellness'),
(74188, 62892, 'pl', 'name', 'Ministerstwo Infrastruktury'),
(74189, 62893, 'nl', 'name', 'Ministerie van Volksgezondheid'),
(74190, 62894, 'en', 'name', 'Ministry of Health'),
(74191, 62895, 'pl', 'name', 'Ministerstwo Rodziny, Pracy i Polityki Społecznej'),
(74192, 62895, 'en', 'name', 'Ministry of Family, Labour and Social Policy'),
(74193, 62896, 'en', 'name', 'Ministry of Education and Higher Education'),
(74194, 62897, 'pl', 'name', 'Ministerstwo Inwestycji i Rozwoju'),
(74195, 62897, 'en', 'name', 'Ministry of Investment and Development'),
(74196, 62898, 'en', 'name', 'Ministry of Industry, Commerce, Agriculture and Fisheries'),
(74197, 62899, 'pl', 'name', 'Ministerstwo Sprawiedliwośc'),
(74198, 62899, 'en', 'name', 'Ministry of Justice of the Republic of Poland'),
(74199, 62900, 'en', 'name', 'Ministry of Information Society and Administration'),
(74200, 62901, 'en', 'name', 'Ministry of Interior'),
(74201, 62901, 'bg', 'name', 'Mинистерство на Š²ŃŠŃ‚Ń€ŠµŃˆŠ½ŠøŃ‚Šµ работи'),
(74202, 62902, 'ro', 'name', 'Ministerul Apărării Naționale'),
(74203, 62902, 'en', 'name', 'Ministry of National Defence'),
(74204, 62903, 'hr', 'name', 'Ministarstvo unutarnjih poslova Republike Hrvatske'),
(74205, 62903, 'en', 'name', 'Ministry of the Interior'),
(74206, 62904, 'ro', 'name', 'Agenţia Naţională Antidrog'),
(74207, 62904, 'en', 'name', 'National Anti-drug Agency'),
(74208, 62905, 'en', 'name', 'Ministry of the Interior'),
(74209, 62905, 'el', 'name', '΄πουργείο Ī•ĻƒĻ‰Ļ„ĪµĻĪ¹ĪŗĻŽĪ½'),
(74210, 62906, 'sv', 'name', 'Justitiedepartementet'),
(74211, 62906, 'en', 'name', 'Ministry of Justice'),
(74212, 62907, 'en', 'name', 'Ministry of Justice'),
(74213, 62907, 'fi', 'name', 'Oikeusministeriƶ'),
(74214, 62908, 'en', 'name', 'Danish Ministry of Justice'),
(74215, 62908, 'da', 'name', 'Justitsministeriet'),
(74216, 62909, 'en', 'name', 'Ministry of Justice of the Republic of Kazakhstan'),
(74217, 62909, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ó˜Š“Ń–Š»ŠµŃ‚ министрлігі'),
(74218, 62910, 'sr', 'name', 'Ministarstvo Pravde u Vladi Crne Gore'),
(74219, 62910, 'en', 'name', 'Ministry of Justice'),
(74220, 62911, 'en', 'name', 'Ministry of Communication and Information Technology'),
(74221, 62911, 'am', 'name', 'į‹“.įˆ į‹Øįˆ˜įŒˆįŠ“įŠ›įŠ“ įŠ¢įŠ•įŽįˆ­įˆœįˆ½įŠ• į‰“įŠ­įŠ–įˆŽįŒ‚ įˆšįŠ’įˆµį‰“įˆ­'),
(74222, 62912, 'en', 'name', 'Regional Energy Agency'),
(74223, 62912, 'bg', 'name', 'Регионална енергийна Š°Š³ŠµŠ½Ń†ŠøŃ - Русе'),
(74224, 62913, 'es', 'name', 'Agencia Tributaria'),
(74225, 62914, 'ro', 'name', 'Ministerul Tineretului şi Sportului'),
(74226, 62914, 'en', 'name', 'Ministry of Youth and Sports'),
(74227, 62915, 'fr', 'name', 'Agence Nationale pour l''Emploi'),
(74228, 62915, 'en', 'name', 'National Employment Agency'),
(74229, 62916, 'de', 'name', 'Ministerium für Kinder, Familie, Flüchtlinge und Integration des Landes Nordrhein-Westfalen'),
(74230, 62917, 'hu', 'name', 'IgazsÔgügyi Minisztérium'),
(74231, 62917, 'en', 'name', 'Ministry of Justice'),
(74232, 62918, 'vi', 'name', 'Bį»™ Lao động, Thʰʔng binh vĆ  XĆ£ hį»™i'),
(74233, 62918, 'en', 'name', 'Ministry of Labour, Invalids and Social Affairs'),
(74234, 62919, 'ka', 'name', 'Georgia Sakartvelos shromis, janmrtelobisa ads sotsialuri datsvis saministro'),
(74235, 62919, 'en', 'name', 'Ministry of Labour, Health and Social Affairs'),
(74236, 62920, 'en', 'name', 'Ministry of Science and Technology'),
(74237, 62920, 'lo', 'name', 'ąŗąŗ°ąŗŠąŗ§ąŗ‡ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ąŗŖąŗ²ąŗ” ą»ąŗ„ąŗ°ą»€ąŗ•ąŗ±ąŗą»‚ąŗ™ą»‚ąŗ„ąŗŠąŗµ'),
(74238, 62921, 'en', 'name', 'Ministry of Science and Technology'),
(74239, 62921, 'am', 'name', 'įˆ³į‹­įŠ•įˆµ įŠ„įŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ įˆšįŠ’įˆµį‰“įˆ­'),
(74240, 62922, 'en', 'name', 'Ministry of Shipping and Island Policy'),
(74241, 62922, 'el', 'name', '΄πουργείο Εμπορικής ĪĪ±Ļ…Ļ„Ī¹Ī»ĪÆĪ±Ļ‚'),
(74242, 62923, 'en', 'name', 'Ministry of Security of Bosnia and Herzegovina'),
(74243, 62924, 'et', 'name', 'Eesti Sotsiaalministeerium'),
(74244, 62924, 'en', 'name', 'Ministry of Social Affairs'),
(74245, 62925, 'en', 'name', 'Danish Ministry of Taxation'),
(74246, 62925, 'da', 'name', 'Skatteministeriet'),
(74247, 62926, 'en', 'name', 'Human Resources Agency of New Britain'),
(74248, 62927, 'en', 'name', 'New Hampshire Association of Conservation Commissions'),
(74249, 62928, 'en', 'name', 'New Jersey Sports and Exposition Authority'),
(74250, 62929, 'en', 'name', 'New Jersey Pinelands Commission'),
(74251, 62930, 'en', 'name', 'National Cancer Registry'),
(74252, 62931, 'de', 'name', 'ParitƤtisches Bildungswerk Bundesverband'),
(74253, 62932, 'en', 'name', 'Department of Public Service'),
(74254, 62933, 'no_lang_code', 'name', 'NextGen Federal Systems (United States)'),
(74255, 62934, 'en', 'name', 'Ministry for Tourism'),
(74256, 62935, 'en', 'name', 'National House Building Council'),
(74257, 62936, 'en', 'name', 'NHS Bradford Districts Clinical Commissioning Group'),
(74258, 62937, 'en', 'name', 'NHS Eastern Cheshire Clinical Commissioning Group'),
(74259, 62938, 'de', 'name', 'Niedersächsisches Ministerium für Wirtschaft, Arbeit und Verkehr'),
(74260, 62939, 'de', 'name', 'Niedersächsisches Ministerium für Inneres und Sport'),
(74261, 62940, 'de', 'name', 'Bundesverband Photovoltaic Austria'),
(74262, 62941, 'en', 'name', 'Agency of European innovations'),
(74263, 62942, 'en', 'name', 'National Commission on Correctional Health Care'),
(74264, 62943, 'en', 'name', 'Pioneer Valley Planning Commission'),
(74265, 62944, 'en', 'name', 'Local Enterprise Office Cork North & West'),
(74266, 62945, 'en', 'name', 'North East Atlantic Fisheries Commission'),
(74267, 62946, 'en', 'name', 'Ministry of Agriculture of the Russian Federation'),
(74268, 62946, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Российской ФеГерации'),
(74269, 62947, 'en', 'name', 'Plaquemines Parish Government'),
(74270, 62948, 'no_lang_code', 'name', 'Sputnik'),
(74271, 62948, 'ru', 'name', 'Š”ŠæŃƒŃ‚Š½ŠøŠŗ'),
(74272, 62949, 'vi', 'name', 'Hį»™i đồng ChĆ­nh sĆ”ch KH&CN quốc gia'),
(74273, 62949, 'en', 'name', 'National Council for Science and Technology Policy'),
(74274, 62950, 'en', 'name', 'Ministry of Transport, Communications and Works'),
(74275, 62950, 'el', 'name', '΄πουργείο ĪœĪµĻ„Ī±Ļ†ĪæĻĻŽĪ½, Ī•Ļ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½ και ĪˆĻĪ³Ļ‰Ī½'),
(74276, 62951, 'en', 'name', 'Police Department'),
(74277, 62951, 'lt', 'name', 'Policijos departamentas'),
(74278, 62952, 'en', 'name', 'National Council of Teachers of English'),
(74279, 62953, 'en', 'name', 'Ministry of Transport, Information Technology and Communications'),
(74280, 62953, 'bg', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на транспорта, информационните технологии Šø ŃŃŠŠ¾Š±Ń‰ŠµŠ½ŠøŃŃ‚Š° на Република Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(74281, 62954, 'en', 'name', 'Northern Cheyenne Tribal Board of Health'),
(74282, 62955, 'en', 'name', 'Polish Air Navigation Services Agency'),
(74283, 62955, 'pl', 'name', 'Polska Agencja Żeglugi Powietrznej'),
(74284, 62956, 'en', 'name', 'Northern Ireland Commissioner for Children and Young People'),
(74285, 62957, 'en', 'name', 'National Council on Patient Information and Education'),
(74286, 62958, 'en', 'name', 'Northern Ireland Statistics and Research Agency'),
(74287, 62959, 'en', 'name', 'Northern Ireland Tourist Board'),
(74288, 62960, 'it', 'name', 'Pontificia commissione di archeologia sacra'),
(74289, 62961, 'en', 'name', 'Northern Lighthouse Board'),
(74290, 62962, 'en', 'name', 'Ministry of Water Resources and Meteorology'),
(74291, 62962, 'km', 'name', 'įž€įŸ’įžšįžŸįž½įž„įž’įž“įž’įž¶įž“įž‘įž¹įž€įž“įž·įž„įž§įžįž»įž“įž·įž™įž˜'),
(74292, 62963, 'da', 'name', 'SamsĆø Energiakademi'),
(74293, 62963, 'en', 'name', 'SamsĆø Energy Academy'),
(74294, 62964, 'en', 'name', 'San Francisco Bay Conservation and Development Commission'),
(74295, 62965, 'en', 'name', 'North-West Public Health Research Center'),
(74296, 62966, 'en', 'name', 'Department of Planning & Building'),
(74297, 62967, 'fr', 'name', 'Chemins de fer fƩdƩraux suisses'),
(74298, 62967, 'de', 'name', 'Schweizerische Bundesbahnen'),
(74299, 62967, 'en', 'name', 'Swiss Federal Railways'),
(74300, 62968, 'en', 'name', 'National Environment Commission'),
(74301, 62969, 'en', 'name', 'Ministry of Petroleum and Energy'),
(74302, 62969, 'no', 'name', 'Olje- og energidepartementet'),
(74303, 62970, 'en', 'name', 'National Evaluation and Accreditation Agency'),
(74304, 62970, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ за Š¾Ń†ŠµŠ½ŃŠ²Š°Š½Šµ Šø Š°ŠŗŃ€ŠµŠ“ŠøŃ‚Š°Ń†ŠøŃ'),
(74305, 62971, 'en', 'name', 'Science Council'),
(74306, 62972, 'it', 'name', 'PromoFirenze'),
(74307, 62973, 'en', 'name', 'Mississippi Blues Trail'),
(74308, 62974, 'ms', 'name', 'Lembaga Warisan Negara'),
(74309, 62974, 'en', 'name', 'National Heritage Board'),
(74310, 62974, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®®ą®°ą®ŖąÆą®ŸąÆˆą®®ąÆˆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(74311, 62974, 'zh', 'name', '国家文物局'),
(74312, 62975, 'en', 'name', 'Mississippi Board of Pharmacy'),
(74313, 62976, 'pt', 'name', 'AgĆŖncia de Empreendedores Sociais'),
(74314, 62976, 'en', 'name', 'Social Entrepreneurs Agency'),
(74315, 62977, 'en', 'name', 'Public Limited Company for Radioactive Waste Management'),
(74316, 62977, 'hu', 'name', 'RadioaktĆ­v HulladĆ©kokat Kezelő KƶzhasznĆŗ'),
(74317, 62978, 'en', 'name', 'Public Health Accreditation Board'),
(74318, 62979, 'en', 'name', 'Montana Department of Labor & Industry'),
(74319, 62980, 'en', 'name', 'Jewish Community Centre Association of North America'),
(74320, 62981, 'en', 'name', 'Public Investment Development Agency'),
(74321, 62981, 'lt', 'name', 'VieŔųjų investicijų plėtros agentÅ«ra'),
(74322, 62982, 'en', 'name', 'Nova Scotia Advisory Commission on AIDS'),
(74323, 62983, 'en', 'name', 'Montana Department of Justice'),
(74324, 62984, 'en', 'name', 'Olympic Council of Ireland'),
(74325, 62985, 'en', 'name', 'National Directorate General for Disaster Management'),
(74326, 62986, 'en', 'name', 'Icelandic Road and Coastal Administration'),
(74327, 62986, 'is', 'name', 'Vegagerưin'),
(74328, 62987, 'en', 'name', 'Missouri Department of Public Safety'),
(74329, 62988, 'lt', 'name', 'Nacionaline mokejimo agentura'),
(74330, 62988, 'en', 'name', 'National Paying Agency'),
(74331, 62989, 'en', 'name', 'Texas Department of Public Safety'),
(74332, 62990, 'en', 'name', 'Sewerage Board of Limassol – Amathus'),
(74333, 62990, 'el', 'name', 'Ī£Ļ…Ī¼Ī²ĪæĻĪ»Ī¹Īæ Ī‘Ļ€ĪæĻ‡ĪµĻ„ĪµĻĻƒĪµĻ‰Ī½ Ī›ĪµĪ¼ĪµĻƒĪæĻ - Ī‘Ī¼Ī±ĪøĪæĻĪ½Ļ„Ī±Ļ‚'),
(74334, 62991, 'es', 'name', 'Industrias PeƱoles'),
(74335, 62991, 'no_lang_code', 'name', 'PeƱoles (Mexico)'),
(74336, 62992, 'en', 'name', 'Public Service Development Agency'),
(74337, 62992, 'ka', 'name', 'įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒ”įƒ įƒ•įƒ˜įƒ”įƒ”įƒ‘įƒ˜įƒ” įƒ’įƒįƒœįƒ•įƒ˜įƒ—įƒįƒ įƒ”įƒ‘įƒ˜įƒ” įƒ”įƒįƒįƒ’įƒ”įƒœįƒ¢įƒ'),
(74338, 62993, 'no_lang_code', 'name', 'Silvapa (Portugal)'),
(74339, 62994, 'en', 'name', 'Public Waste Agency of Flanders'),
(74340, 62995, 'pt', 'name', 'Sindicato Dos Trabalhadores Da Administração Pública e de Entidades com Fins Públicos'),
(74341, 62996, 'en', 'name', 'Department of Public Works'),
(74342, 62996, 'el', 'name', 'Τμήμα Ī”Ī·Ī¼ĪæĻƒĪÆĻ‰Ī½ ĪˆĻĪ³Ļ‰Ī½'),
(74343, 62997, 'en', 'name', 'State of Ohio Board of Pharmacy'),
(74344, 62998, 'en', 'name', 'National Youth Agency'),
(74345, 62999, 'en', 'name', 'National Adult Literacy Agency'),
(74346, 63000, 'nl', 'name', 'Agentschap Telecom'),
(74347, 63000, 'en', 'name', 'Radiocommunications Agency'),
(74348, 63001, 'en', 'name', 'Pakistan Council of Research in Water Resources'),
(74349, 63002, 'en', 'name', 'Slovenian Nuclear Safety Administration'),
(74350, 63002, 'sl', 'name', 'Uprava Republike Slovenije za Jedrsko Varnost'),
(74351, 63003, 'en', 'name', 'Sofia Energy Agency'),
(74352, 63003, 'bg', 'name', 'ŠŠ”ŠžŠ¦Š˜ŠŠ¦Š˜ŠÆ ŠŠ ŠŠ“Š•ŠŠ¦Š˜ŠÆŠ¢Š ЗА Š•ŠŠ•Š Š“Š˜Š™ŠŠ Š”ŠžŠ¤Š˜ŠÆ'),
(74353, 63004, 'no_lang_code', 'name', 'Ranheim Paper & Board (Norway)'),
(74354, 63005, 'en', 'name', 'National Agency for Education'),
(74355, 63005, 'sv', 'name', 'Skolverket'),
(74356, 63006, 'pt', 'name', 'Serviços Partilhados do Ministério da Saúde'),
(74357, 63007, 'en', 'name', 'Springboard'),
(74358, 63008, 'it', 'name', 'Scuola Nazionale dell''Amministrazione'),
(74359, 63009, 'en', 'name', 'Southern States Energy Board'),
(74360, 63010, 'no_lang_code', 'name', 'Novem (Netherlands)'),
(74361, 63011, 'en', 'name', 'Directorate for Inland Waterways'),
(74362, 63011, 'bs', 'name', 'Direkcija za vodne puteve Plovput'),
(74363, 63011, 'sr', 'name', 'Š”ŠøŃ€ŠµŠŗŃ†ŠøŃ˜Š° за воГне ŠæŃƒŃ‚еве ŠŸŠ»Š¾Š²ŠæŃƒŃ‚'),
(74364, 63012, 'en', 'name', 'National Board for Certified Counselors'),
(74365, 63013, 'en', 'name', 'Nevada State Board of Pharmacy'),
(74366, 63014, 'en', 'name', 'State Agency for Metrological and Technical Surveillance'),
(74367, 63014, 'bg', 'name', 'Š”ŃŠŃ€Š¶Š°Š²Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ за метрологичен Šø технически наГзор'),
(74368, 63015, 'en', 'name', 'Nevada Dairy Commission'),
(74369, 63016, 'en', 'name', 'Southington Public School'),
(74370, 63017, 'en', 'name', 'Nevada Department of Agriculture'),
(74371, 63018, 'en', 'name', 'National Board of Patents and Registration of Finland'),
(74372, 63018, 'fi', 'name', 'Patentti- ja rekisterihallitus'),
(74373, 63019, 'en', 'name', 'Nevada Department of Education'),
(74374, 63020, 'en', 'name', 'Technological Educational Institute of Western Greece'),
(74375, 63020, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Δυτικής ΕλλάΓας'),
(74376, 63021, 'en', 'name', 'Ministry of Emergency Situations'),
(74377, 63021, 'ky', 'name', 'Š¢Ó©Ń‚ŠµŠ½ŃˆŠµ жағГайлар министрлігі'),
(74378, 63022, 'en', 'name', 'Resource Management Agency'),
(74379, 63023, 'en', 'name', 'Ministry of Labour and Social Protection Republic of Belarus'),
(74380, 63023, 'be', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Ń‚Ń€ŃƒŠ“Š° Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ защиты Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(74381, 63024, 'en', 'name', 'Rio Grande Council of Governments'),
(74382, 63025, 'sl', 'name', 'Ministrstvo za Kmetijstvo, Gozdarstvo in Prehrano'),
(74383, 63025, 'en', 'name', 'Ministry of Agriculture, Forestry and Food Security'),
(74384, 63026, 'en', 'name', 'Institute of Condensed Matter Chemistry and Technologies for Energy'),
(74385, 63026, 'it', 'name', 'Istituto di Chimica della Materia Condensata e di Tecnologie per l''Energia'),
(74386, 63027, 'en', 'name', 'Regulatory Agency for Electronic Communications and Postal Services'),
(74387, 63027, 'sr', 'name', 'Š ŠµŠ³ŃƒŠ»Š°Ń‚Š¾Ń€Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ˜Š° за електронске ŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŃ˜Šµ Šø ŠæŠ¾ŃˆŃ‚Š°Š½ŃŠŗŠµ услуге'),
(74388, 63028, 'en', 'name', 'Aerospace Research Institute'),
(74389, 63028, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł‡ŁˆŲ§ŁŲ¶Ų§ā€Ž'),
(74390, 63029, 'en', 'name', 'State Phytosanitary Administration'),
(74391, 63029, 'cs', 'name', 'StĆ”tnĆ­ RostlinolĆ©kařskĆ” SprĆ”va'),
(74392, 63030, 'en', 'name', 'African Institute for Mathematical Sciences Ghana'),
(74393, 63031, 'en', 'name', 'Institute of Electron Physics'),
(74394, 63031, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ електронної фізики'),
(74395, 63031, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ физики'),
(74396, 63032, 'fr', 'name', 'AcadƩmie des Sciences et des Technologies d''AlgƩrie'),
(74397, 63033, 'en', 'name', 'National Statistical Service of the Republic of Armenia'),
(74398, 63033, 'hy', 'name', 'Ō±Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ¾Õ«Õ³Õ”ÕÆÕ”Õ£Ö€Õ”ÕÆÕ”Õ¶ Õ®Õ”Õ¼Õ”ÕµÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(74399, 63034, 'nl', 'name', 'Royal Dirkzwager'),
(74400, 63035, 'en', 'name', 'Rochester Institute of Technology - Dubai'),
(74401, 63035, 'ar', 'name', 'معهد روتؓستر Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ - دبي'),
(74402, 63036, 'en', 'name', 'Institute of Inorganic Methodologies and Plasmas'),
(74403, 63036, 'it', 'name', 'Istituto di Metodologie Inorganiche e dei Plasmi'),
(74404, 63037, 'en', 'name', 'Stoughton Youth Commission'),
(74405, 63038, 'en', 'name', 'Strategic Investment Board'),
(74406, 63039, 'en', 'name', 'Institute of Marine Geology and Geophysics'),
(74407, 63039, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ морской геологии Šø геофизики'),
(74408, 63040, 'es', 'name', 'Instituto Argentino de RadioastronomĆ­a'),
(74409, 63041, 'en', 'name', 'SAGA Heavy Ion Medical Accelerator in Tosu'),
(74410, 63041, 'ja', 'name', 'ä¹å·žå›½éš›é‡ē²’å­ē·šćŒć‚“ę²»ē™‚ć‚»ćƒ³ć‚æ'),
(74411, 63042, 'fr', 'name', 'Institut de MathƩmatiques et de Sciences Physiques'),
(74412, 63042, 'en', 'name', 'Institute of Mathematics and Physics'),
(74413, 63043, 'en', 'name', 'Baoding University'),
(74414, 63044, 'it', 'name', 'Istituto di ricerca Santa Marinella'),
(74415, 63044, 'en', 'name', 'Santa Marinella Research Institute'),
(74416, 63045, 'en', 'name', 'Saudi Digital Library'),
(74417, 63045, 'ar', 'name', 'Ų§Ł„Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ų±Ł‚Ł…ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ©'),
(74418, 63046, 'en', 'name', 'Surrey Board of Trade'),
(74419, 63047, 'no_lang_code', 'name', 'Sceptica Scientific (United Kingdom)'),
(74420, 63048, 'en', 'name', 'Susquehanna River Basin Commission'),
(74421, 63049, 'it', 'name', 'Istituto di Nanotecnologia'),
(74422, 63050, 'en', 'name', 'Cape Coast Technical University'),
(74423, 63051, 'no_lang_code', 'name', 'Schlumberger (Russia)'),
(74424, 63052, 'en', 'name', 'Sustainable Economic Development Agency'),
(74425, 63053, 'en', 'name', 'Sustainable Energy Development Agency'),
(74426, 63054, 'no_lang_code', 'name', 'Stinger Ghaffarian Technologies (United States)'),
(74427, 63055, 'en', 'name', 'Center for Art and Media Karlsruhe'),
(74428, 63055, 'de', 'name', 'Zentrum für Kunst und Medien'),
(74429, 63056, 'en', 'name', 'Institute of Quantum Materials Science'),
(74430, 63056, 'ru', 'name', 'Š—ŠŠž "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ квантового Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ"'),
(74431, 63057, 'hu', 'name', 'KƶzbeszerzĆ©si Ć©s EllĆ”tĆ”si FőigazgatósĆ”g'),
(74432, 63058, 'en', 'name', 'Institute of Science and Technology for Ceramics'),
(74433, 63058, 'it', 'name', 'Istituto di Scienza e Tecnologia dei Materiali Ceramici'),
(74434, 63059, 'en', 'name', 'Shanghai Micro Satellite Engineering Center'),
(74435, 63059, 'zh', 'name', 'äøŠęµ·å¾®åž‹å«ę˜Ÿå·„ēØ‹äø­åæƒ'),
(74436, 63060, 'en', 'name', 'Central Research Institute of Chemistry and Mechanics'),
(74437, 63061, 'en', 'name', 'Shanghai Institute of Quality Inspection and Technical Research'),
(74438, 63061, 'zh', 'name', 'äøŠęµ·åø‚č“Øé‡ē›‘ē£ę£€éŖŒęŠ€ęœÆē ”ē©¶é™¢'),
(74439, 63062, 'en', 'name', 'Centre for Materials for Electronics Technology'),
(74440, 63063, 'en', 'name', 'CSIRO Manufacturing'),
(74441, 63064, 'en', 'name', 'Ministry for Transport, Infrastructure and Capital Projects'),
(74442, 63065, 'fr', 'name', 'ECAM-EPMI'),
(74443, 63066, 'fr', 'name', 'Ɖcole SupĆ©rieure en Sciences AppliquĆ©es de Tlemcen'),
(74444, 63067, 'no_lang_code', 'name', 'Techtra (Poland)'),
(74445, 63068, 'no_lang_code', 'name', 'Springer Nature (Switzerland)'),
(74446, 63069, 'en', 'name', 'Iraq Virtual Science Library'),
(74447, 63070, 'no_lang_code', 'name', 'Stallergenes Greer (United States)'),
(74448, 63071, 'it', 'name', 'Istituto di Cibernetica ā€œEduardo Caianielloā€'),
(74449, 63072, 'en', 'name', 'Extreme Light Infrastructure - Nuclear Physics'),
(74450, 63073, 'en', 'name', 'Texoma Council of Governments'),
(74451, 63074, 'en', 'name', 'Sunyani Technical University'),
(74452, 63075, 'en', 'name', 'Ivan Vazov National Library'),
(74453, 63075, 'bg', 'name', 'ŠŠ°Ń€Š¾Š“Š½Š° библиотека "Иван Вазов"'),
(74454, 63076, 'en', 'name', 'Suzhou Institute of Systems Medicine'),
(74455, 63076, 'zh', 'name', 'č‹å·žåø‚ē³»ē»ŸåŒ»å­¦ē ”ē©¶ę‰€'),
(74456, 63077, 'no_lang_code', 'name', 'Elytt Energy (Spain)'),
(74457, 63078, 'en', 'name', 'John von Neumann Institute for Computing'),
(74458, 63078, 'de', 'name', 'John von Neumann-Institut für Computing'),
(74459, 63079, 'en', 'name', 'The Audience Agency'),
(74460, 63080, 'no_lang_code', 'name', 'Ex-Polon Kwieciński Fornalski Spółka Cywilna (Poland)'),
(74461, 63081, 'en', 'name', 'Baltic and International Maritime Council'),
(74462, 63082, 'en', 'name', 'Edwards Air Force Base'),
(74463, 63083, 'no_lang_code', 'name', 'Unilever (Australia)'),
(74464, 63084, 'no_lang_code', 'name', 'Unilever (Indonesia)'),
(74465, 63085, 'no_lang_code', 'name', 'Joshua Mqabuko Nkomo Polytechnic'),
(74466, 63086, 'en', 'name', 'ELI-HU Research and Development Non-Profit'),
(74467, 63087, 'no_lang_code', 'name', 'Unilever (Japan)'),
(74468, 63088, 'en', 'name', 'Conference Board'),
(74469, 63089, 'ga', 'name', 'An Roinn Iompair, Turasóireachta agus Spóirt'),
(74470, 63089, 'en', 'name', 'Department of Transport, Tourism and Sport'),
(74471, 63090, 'en', 'name', 'Electoral Commission'),
(74472, 63091, 'en', 'name', 'Taiya Inlet Watershed Council'),
(74473, 63092, 'no_lang_code', 'name', 'Keylane (Netherlands)'),
(74474, 63093, 'en', 'name', 'European Mentoring Coaching Council'),
(74475, 63094, 'en', 'name', 'National Board of Customs'),
(74476, 63094, 'fi', 'name', 'Tullihallitus'),
(74477, 63095, 'en', 'name', 'Vernadsky National Library of Ukraine'),
(74478, 63095, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° бібліотека України імені Š’. І. Š’ŠµŃ€Š½Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(74479, 63096, 'en', 'name', 'Directorate of Fisheries'),
(74480, 63096, 'is', 'name', 'Fiskistofa'),
(74481, 63097, 'en', 'name', 'Ministry of Transport, Maritime Affairs and Communications'),
(74482, 63097, 'tr', 'name', 'Ulaştırma, Denizcilik ve Haberleşme Bakanlığı'),
(74483, 63098, 'en', 'name', 'Vernadsky State Geological Museum'),
(74484, 63098, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Геологический Музей им. Š’.И. ВернаГского Š ŠŠ'),
(74485, 63099, 'en', 'name', 'Business France'),
(74486, 63100, 'en', 'name', 'Live Art Development Agency'),
(74487, 63101, 'en', 'name', 'Henan University of Engineering'),
(74488, 63101, 'zh', 'name', 'ę²³å—å·„ēØ‹å­¦é™¢'),
(74489, 63102, 'en', 'name', 'London Mathematical Laboratory'),
(74490, 63103, 'en', 'name', 'Zhejiang Library'),
(74491, 63103, 'zh', 'name', 'ęµ™ę±Ÿå›¾ä¹¦é¦†'),
(74492, 63104, 'sk', 'name', 'Pamiatkový úrad Slovenskej republiky'),
(74493, 63104, 'en', 'name', 'The Monuments Board of the Slovak Republic'),
(74494, 63105, 'en', 'name', 'Citizens Advice'),
(74495, 63106, 'en', 'name', 'National Agency for Special Needs Education and Schools'),
(74496, 63106, 'sv', 'name', 'Specialpedagogiska Skolmyndigheten'),
(74497, 63107, 'fr', 'name', 'Institut SupĆ©rieur des Ɖtudes Technologiques de Nabeul'),
(74498, 63107, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© ŲØŲŖŲ§ŲØŁ„'),
(74499, 63108, 'en', 'name', 'Environment Agency of Iceland'),
(74500, 63108, 'is', 'name', 'Umhverfisstofnun'),
(74501, 63109, 'en', 'name', 'Institute for Creation Research'),
(74502, 63110, 'en', 'name', 'The Reading Agency'),
(74503, 63111, 'ro', 'name', 'Colegiul National Mihai Eminescu'),
(74504, 63112, 'en', 'name', 'Institute for Energetics and Interphases'),
(74505, 63112, 'it', 'name', 'Istituto per Energetica e Interfasi'),
(74506, 63113, 'en', 'name', 'Ministry of Higher and Tertiary Education'),
(74507, 63114, 'en', 'name', 'Institute of Organic Synthesis and Photoreactivity'),
(74508, 63114, 'it', 'name', 'Istituto di Sintesi Organica e FotoreattivitĆ '),
(74509, 63115, 'en', 'name', 'Institute of Atmospheric Pollution Research'),
(74510, 63115, 'it', 'name', 'Istituto sull’Inquinamento Atmosferico'),
(74511, 63116, 'en', 'name', 'Nanjing Boiler and Pressure Vessel Inspection Institute'),
(74512, 63116, 'zh', 'name', 'å—äŗ¬åø‚é”…ē‚‰åŽ‹åŠ›å®¹å™Øę£€éŖŒē ”ē©¶é™¢'),
(74513, 63117, 'no_lang_code', 'name', 'Nobel Academy'),
(74514, 63118, 'is', 'name', 'Landsbókasafn ƍslands HĆ”skólabókasafn'),
(74515, 63118, 'en', 'name', 'National and University Library of Iceland'),
(74516, 63119, 'no_lang_code', 'name', 'Numina Group (United States)'),
(74517, 63120, 'no_lang_code', 'name', 'The Springboard Consultancy (United Kingdom)'),
(74518, 63121, 'no_lang_code', 'name', 'National Informatics Corporation (Iran)'),
(74519, 63121, 'fa', 'name', 'ي ؓرکت Ł…Ł„ŁŠ Ų§Ł†ŁŁˆŲ±Ł…Ų§ŲŖŁŠŚ©'),
(74520, 63122, 'sv', 'name', 'Skogsstyrelsen'),
(74521, 63122, 'en', 'name', 'Swedish Forest Agency'),
(74522, 63123, 'cy', 'name', 'Cymdeithas Llywodraeth Leol Cymru'),
(74523, 63123, 'en', 'name', 'Welsh Local Government Association'),
(74524, 63124, 'et', 'name', 'Veterinaar- ja Toiduamet'),
(74525, 63124, 'en', 'name', 'Veterinary and Food Board'),
(74526, 63125, 'en', 'name', 'WAMITAB'),
(74527, 63126, 'en', 'name', 'West Virginia Division of Natural Resources'),
(74528, 63127, 'no_lang_code', 'name', 'Octoly (France)'),
(74529, 63128, 'en', 'name', 'Westminster Schools'),
(74530, 63129, 'en', 'name', 'Western Development Commission'),
(74531, 63130, 'de', 'name', 'Thüringer Ministerium für Umwelt, Energie und Naturschutz'),
(74532, 63131, 'en', 'name', 'Water Board of Lemesos'),
(74533, 63131, 'el', 'name', 'Ī£Ļ…Ī¼Ī²ĪæĻĪ»Ī¹Īæ ΄Γατοπρομήθειας Ī›ĪµĪ¼ĪµĻƒĪæĻ'),
(74534, 63132, 'vi', 'name', 'CỄc ThĆŗ y Việt Nam'),
(74535, 63132, 'en', 'name', 'Department of Animal Health'),
(74536, 63133, 'en', 'name', 'United Nations Economic Commission for Europe'),
(74537, 63134, 'no_lang_code', 'name', 'ANKO (Greece)'),
(74538, 63134, 'el', 'name', 'Αναπτυξιακή Δυτικής ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(74539, 63135, 'en', 'name', 'Wayne-Finger Lakes BOCES'),
(74540, 63136, 'en', 'name', 'Vilnius City Municipality Administration'),
(74541, 63137, 'en', 'name', 'Municipal Enterprise for Social Development Trikalon'),
(74542, 63137, 'el', 'name', 'Ī”Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ· ĪšĪ±Ī»Ī±Ī¼Ļ€Ī¬ĪŗĪ±Ļ‚ 28 & Αμπάτη Τρίκαλα,'),
(74543, 63138, 'no_lang_code', 'name', 'WEBAGENCY E-Commerce (Germany)'),
(74544, 63139, 'en', 'name', 'United Nations Economic Commission for Latin America and the Caribbean'),
(74545, 63140, 'en', 'name', 'United States Anti-Doping Agency'),
(74546, 63141, 'en', 'name', 'State Tax Inspectorate'),
(74547, 63141, 'lt', 'name', 'Valstybinė Mokesčių Inspekcija'),
(74548, 63142, 'en', 'name', 'Wyoming Department of Agriculture'),
(74549, 63143, 'en', 'name', 'State Consumer Rights Protection Authority'),
(74550, 63143, 'lt', 'name', 'Valstybinė ne maisto Produktų Inspekcija prie ÅŖkio Ministerijos'),
(74551, 63144, 'en', 'name', 'Federation of German Consumer Organisations'),
(74552, 63144, 'de', 'name', 'Verbraucherzentrale Bundesverband'),
(74553, 63145, 'en', 'name', 'Vermont Department of Libraries'),
(74554, 63146, 'ga', 'name', 'An Bord Ɓrachais SlƔinte ShaorƔlaigh'),
(74555, 63146, 'en', 'name', 'Vhi Healthcare'),
(74556, 63147, 'en', 'name', 'Department for Economic Affairs'),
(74557, 63147, 'de', 'name', 'Volkswirtschaftsdirektion'),
(74558, 63148, 'en', 'name', 'Cardiff Tourist Information Centre'),
(74559, 63149, 'en', 'name', 'Vermont Judiciary'),
(74560, 63150, 'en', 'name', 'Sholem Aleichem Amur State University'),
(74561, 63150, 'ru', 'name', 'ŠŸŃ€ŠøŠ°Š¼ŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шолом-Алейхема'),
(74562, 63151, 'en', 'name', 'Military Space Academy named after AF Mozhaisky'),
(74563, 63151, 'ru', 'name', 'Военно-ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени А. Ф. Можайского'),
(74564, 63152, 'en', 'name', 'Ivanovo State Polytechnic University'),
(74565, 63152, 'ru', 'name', 'Ивановского Š³Š¾ŃŃƒŠ“арственного политехнического ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š°'),
(74566, 63153, 'en', 'name', 'Irkutsk State Agrarian University named after A.A. Ezhevsky'),
(74567, 63153, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А.А. Ежевского'),
(74568, 63154, 'en', 'name', 'Russian State Agrarian Correspondence University'),
(74569, 63154, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный аграрный заочный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(74570, 63155, 'en', 'name', 'Military Academy of Radiation, Chemical and Biological Protection'),
(74571, 63155, 'ru', 'name', 'Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ раГиационной, химической Šø биологической защиты'),
(74572, 63156, 'en', 'name', 'Government Vidarbha Institute of Science and Humanities'),
(74573, 63157, 'en', 'name', 'Voronezh State University of Forestry and Technologies'),
(74574, 63157, 'ru', 'name', 'Воронежский Š³Š¾ŃŃƒŠ“арственный лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š“.ф. ŠœŠ¾Ń€Š¾Š·Š¾Š²Š°'),
(74575, 63158, 'en', 'name', 'The Caspian Scientific Research Institute of Arid Aarming'),
(74576, 63158, 'ru', 'name', 'ŠŸŃ€ŠøŠŗŠ°ŃŠæŠøŠ¹ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ариГного Š·ŠµŠ¼Š»ŠµŠ“ŠµŠ»ŠøŃ'),
(74577, 63159, 'en', 'name', 'Dagestan Scientific Research Institute of Agriculture Named After F.G. Kysriev'),
(74578, 63159, 'ru', 'name', 'Š¤Š“Š‘ŠŠ£ Š”ŠŠ“Š•Š”Š¢ŠŠŠ”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š”Š•Š›Š¬Š”ŠšŠžŠ“Šž Š„ŠžŠ—ŠÆŠ™Š”Š¢Š’Š Š˜ŠœŠ•ŠŠ˜ Ф.Š“.ŠšŠ˜Š”Š Š˜Š•Š’Š'),
(74579, 63160, 'en', 'name', 'Kirov Research Institute of Hematology and Blood Transfusion FMBA'),
(74580, 63160, 'ru', 'name', 'ŠšŠøŃ€Š¾Š²ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гематологии Šø ŠæŠµŃ€ŠµŠ»ŠøŠ²Š°Š½ŠøŃ крови Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(74581, 63161, 'en', 'name', 'All-Russian Research Institute Gradient'),
(74582, 63161, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «ГраГиент»'),
(74583, 63162, 'en', 'name', 'All-Russian Research Institute "Signal"'),
(74584, 63162, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «Дигнал»'),
(74585, 63163, 'no_lang_code', 'name', 'Viogem'),
(74586, 63163, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¾ŃŃƒŃˆŠµŠ½ŠøŃŽ месторожГений полезных ископаемых, защите инженерных ŃŠ¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠ¹ от Š¾Š±Š²Š¾Š“Š½ŠµŠ½ŠøŃ, ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Ń‹Š¼ горным работам, геомеханике, геофизике, гиГротехнике, геологии Šø Š¼Š°Ń€ŠŗŃˆŠµŠ¹Š“ŠµŃ€ŃŠŗŠ¾Š¼Ńƒ Гелу'),
(74587, 63164, 'en', 'name', 'State Research Center of the Russian Federation'),
(74588, 63164, 'ru', 'name', 'Š¦ŠŠ˜Š˜ Электроприбор'),
(74589, 63165, 'en', 'name', 'Scientific Research Institute of Flax Mechanization'),
(74590, 63165, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Š²Š¾Š·Š“ŠµŠ»Ń‹Š²Š°Š½ŠøŃ льна'),
(74591, 63166, 'en', 'name', 'All-Russian Research Institute of Brewing, Non-Alcoholic and Wine Industry'),
(74592, 63166, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŸŠøŠ²Š¾Š²Š°Ń€ŠµŠ½Š½Š¾Š¹, Š‘ŠµŠ·Š°Š»ŠŗŠ¾Š³Š¾Š»ŃŒŠ½Š¾Š¹ И Š’ŠøŠ½Š¾Š“ŠµŠ»ŃŒŃ‡ŠµŃŠŗŠ¾Š¹ ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(74593, 63167, 'no_lang_code', 'name', 'Central Research Institute for Special Machinery (Russia)'),
(74594, 63167, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(74595, 63168, 'en', 'name', 'Central Research Institute of Communications'),
(74596, 63169, 'en', 'name', 'All-Russia Research Institute of Legumes and Groat Crops'),
(74597, 63169, 'ru', 'name', 'FGBNU "Vserossijskij Nauchno-Issledovatel''skij Institut Zernobobovyh i Krupyanyh Kul''tur"'),
(74598, 63170, 'en', 'name', 'All-Russian Scientific Research Institute of Floriculture and Subtropical Crops'),
(74599, 63170, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цветовоГства Šø ŃŃƒŠ±Ń‚Ń€Š¾ŠæŠøŃ‡ŠµŃŠŗŠøŃ… ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€'),
(74600, 63171, 'en', 'name', 'Central Scientific Research Institute of Geology of Non-metallic Minerals'),
(74601, 63172, 'en', 'name', 'All-Russian Horticultural Institute for Breeding, Agrotechnology and Nursery'),
(74602, 63172, 'ru', 'name', 'Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ Š”Š•Š›Š•ŠšŠ¦Š˜ŠžŠŠŠž-Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š”ŠŠ”ŠžŠ’ŠžŠ”Š”Š¢Š’Š И ŠŸŠ˜Š¢ŠžŠœŠŠ˜ŠšŠžŠ’ŠžŠ”Š”Š¢Š’Š'),
(74603, 63173, 'en', 'name', 'Central Research Institute of Materials'),
(74604, 63173, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ материалов'),
(74605, 63174, 'en', 'name', 'All-Russian Rice Research Institute'),
(74606, 63174, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ риса'),
(74607, 63175, 'en', 'name', 'Central Scientific Research Institute of Measuring Equipment'),
(74608, 63175, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ˜Š˜ ŠøŠ·Š¼ŠµŃ€ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ Š°ŠæŠæŠ°Ń€Š°Ń‚ŃƒŃ€Ń‹'),
(74609, 63176, 'no_lang_code', 'name', 'All-Russian Institute of Light Alloys (Russia)'),
(74610, 63176, 'ru', 'name', 'Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лёгких сплавов Ā«Š’Š˜Š›Š”Ā»');
INSERT INTO `ror_settings` VALUES
(74611, 63177, 'en', 'name', 'All-Russian State Scientific Research Institute for Control, Standardization and Certification of Veterinary Preparations'),
(74612, 63177, 'ru', 'name', 'Всероссийский Š³Š¾ŃŃƒŠ“арственный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»Ń, станГартизации Šø сертификации ветеринарных препаратов'),
(74613, 63178, 'en', 'name', 'All-Russian Research and Design Institute of Metallurgical Engineering'),
(74614, 63178, 'ru', 'name', 'Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(74615, 63179, 'no_lang_code', 'name', 'A.P. Krylov All-Russian Oil and Gas Research Institute (Russia)'),
(74616, 63179, 'ru', 'name', 'Акционерное общество «Всероссийский нефтегазовый Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени акаГемика А.П. ŠšŃ€Ń‹Š»Š¾Š²Š°Ā»'),
(74617, 63180, 'no_lang_code', 'name', 'Geologorazvedka (Russia)'),
(74618, 63180, 'ru', 'name', 'ГеологоразвеГка'),
(74619, 63181, 'en', 'name', 'Siberian Research, Design and Design Institute of Aluminum and Electrode Industry'),
(74620, 63181, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Š»ŃŽŠ¼ŠøŠ½ŠøŠµŠ²Š¾Š¹ Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š“Š½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(74621, 63182, 'en', 'name', 'All-Russian Research Institute of Chemical Technology'),
(74622, 63182, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической технологии'),
(74623, 63183, 'en', 'name', 'All-Russian Scientific Research Institute of Hydraulic Engineering and Melioration named after A.N. Kostyakov'),
(74624, 63183, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГротехники Šø мелиорации имени А. Š. ŠšŠ¾ŃŃ‚ŃŠŗŠ¾Š²Š°'),
(74625, 63184, 'en', 'name', 'Central Research Institute of Building Constructions named after VA Kucherenko'),
(74626, 63184, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ†ŠøŠ¹ имени Š’.А. ŠšŃƒŃ‡ŠµŃ€ŠµŠ½ŠŗŠ¾'),
(74627, 63185, 'en', 'name', 'Chechen Scientific Research Institute of Agriculture'),
(74628, 63185, 'ru', 'name', 'Чеченский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(74629, 63186, 'en', 'name', 'All-Russian Research and Design Institute of Hard Alloys and Refractory Metals'),
(74630, 63186, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ тверГых сплавов Šø Ń‚ŃƒŠ³Š¾ŠæŠ»Š°Š²ŠŗŠøŃ… металлов'),
(74631, 63187, 'no_lang_code', 'name', 'Concern Energomera (Russia)'),
(74632, 63188, 'en', 'name', 'All-Russian Research Institute of Relay Engineering'),
(74633, 63188, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ релейной инженерии'),
(74634, 63189, 'no_lang_code', 'name', 'VNIIPelkhozkhim'),
(74635, 63189, 'ru', 'name', 'Š ŃŠ·Š°Š½Šø был организован Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по технологии Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠµ Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ в сельском Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Šµ Š¼ŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Ń‹Ń… ŃƒŠ“Š¾Š±Ń€ŠµŠ½ŠøŠ¹ Šø химических среГств защиты растений'),
(74636, 63190, 'en', 'name', 'Altai Scientific Research Institute of Machine Building Technology'),
(74637, 63190, 'ru', 'name', 'Алтайский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технологии Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(74638, 63191, 'en', 'name', 'Institute of New Carbon Materials and Technologies'),
(74639, 63192, 'en', 'name', 'Moscow Scientific-Research Television Institute'),
(74640, 63192, 'ru', 'name', 'Московский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ телевизионный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(74641, 63193, 'en', 'name', 'All-Russian Scientific Research Institute of Livestock Mechanization'),
(74642, 63193, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации животновоГства'),
(74643, 63194, 'en', 'name', 'All-Union Scientific Research Institute of Woodworking Industry'),
(74644, 63194, 'ru', 'name', 'Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“ŠµŃ€ŠµŠ²Š¾Š¾Š±Ń€Š°Š±Š°Ń‚Ń‹Š²Š°ŃŽŃ‰ŠµŠ¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(74645, 63195, 'no_lang_code', 'name', 'Lirsot (Russia)'),
(74646, 63195, 'ru', 'name', 'Лирсот'),
(74647, 63196, 'no_lang_code', 'name', 'Instorff (Russia)'),
(74648, 63196, 'ru', 'name', 'Š˜Š½ŃŃ‚Š¾Ń€Ń„Š°'),
(74649, 63197, 'no_lang_code', 'name', 'Centerprogramsystems'),
(74650, 63197, 'ru', 'name', 'Центрпрограммсистем'),
(74651, 63198, 'no_lang_code', 'name', 'Integra (Russia)'),
(74652, 63198, 'ru', 'name', 'Š’ŠŠ˜Š˜Š‘Š¢-Š‘ŃƒŃ€Š¾Š²Š¾Š¹ ŠøŠ½ŃŃ‚Ń€ŃƒŠ¼ŠµŠ½Ń‚'),
(74653, 63199, 'en', 'name', 'Amur Scientific Center'),
(74654, 63199, 'ru', 'name', 'ŠŠ¼ŃƒŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(74655, 63200, 'en', 'name', 'All-Russian Scientific Research Institute of Butter and Cheese Making'),
(74656, 63200, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃŠ»Š¾Š“ŠµŠ»ŠøŃ Šø ŃŃ‹Ń€Š¾Š“ŠµŠ»ŠøŃ'),
(74657, 63201, 'en', 'name', 'Atlantic Research Institute of Fisheries and Oceanography'),
(74658, 63201, 'ru', 'name', 'Атлантический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø океанографии'),
(74659, 63202, 'en', 'name', 'All-Russian Research Institute of Civil Defense'),
(74660, 63202, 'ru', 'name', 'Š’ŃŠµŃŠ¾ŃŽŠ·Š½Š¾Š³Š¾ ŠŠ˜Š˜ гражГанской обороны'),
(74661, 63203, 'no_lang_code', 'name', 'Interregional Open Social Institute'),
(74662, 63203, 'ru', 'name', 'ŠœŠµŠ¶Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ открытый ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(74663, 63204, 'en', 'name', 'Diagnostic and Prevention Research Institute for Human and Animal Diseases'),
(74664, 63204, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гиагностики Šø профилактики болезней человека Šø животных'),
(74665, 63205, 'en', 'name', 'Central Design and Technology Institute of Valve Construction'),
(74666, 63205, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Ń€Š¼Š°Ń‚ŃƒŃ€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(74667, 63206, 'en', 'name', 'Azov Scientific Research Institute of Fisheries'),
(74668, 63206, 'ru', 'name', 'Азовский ŠŠ˜Š˜ Рыбного Š„Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(74669, 63207, 'en', 'name', 'All-Russian Scientific and Research Institute of Brucellosis and Tuberculosis of Animals'),
(74670, 63207, 'ru', 'name', 'Всеросcийский Š½Š°ŃƒŃ‡Š½Š¾-исcŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š±Ń€ŃƒŃ†ŠµŠ»Š»ŠµŠ·Š° Šø Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»ŠµŠ·Š° животных'),
(74671, 63208, 'en', 'name', 'The Federal State Budgetary Scientific Institution "Izmerov Research Institute of Occupational Health"'),
(74672, 63208, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицины Ń‚Ń€ŃƒŠ“Š° имени акаГемика Š.Ф. Š˜Š·Š¼ŠµŃ€Š¾Š²Š°Ā»'),
(74673, 63209, 'en', 'name', 'Balakovo Engineering and Technology Institute'),
(74674, 63209, 'ru', 'name', 'Балаковский инженерно-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(74675, 63210, 'en', 'name', 'Scientific and Practical Center of the National Academy of Sciences of Belarus on Animal Husbandry'),
(74676, 63210, 'be', 'name', 'РУП Ā«ŠŠ°ŃƒŃ‡Š½Š¾-практический центр ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø по Š¶ŠøŠ²Š¾Ń‚Š½Š¾Š²Š¾Š“ŃŃ‚Š²ŃƒĀ»'),
(74677, 63211, 'no_lang_code', 'name', 'Belorusneft (Belarus)'),
(74678, 63211, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŠ½ŠµŃ„Ń‚ŃŒ'),
(74679, 63212, 'no_lang_code', 'name', 'OJSC VNIIST (Russia)'),
(74680, 63212, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Ńƒ Šø ŃŠŗŃŠæŠ»ŃƒŠ°Ń‚Š°Ń†ŠøŠø Ń‚Ń€ŃƒŠ±Š¾ŠæŃ€Š¾Š²Š¾Š“Š¾Š², Š¾Š±ŃŠŠµŠŗŃ‚Š¾Š²'),
(74681, 63213, 'en', 'name', 'All-Russian Research Institute for Silviculture and Mechanization of Forestry'),
(74682, 63213, 'ru', 'name', 'ФБУ Š’ŠŠ˜Š˜Š›Šœ'),
(74683, 63214, 'no_lang_code', 'name', 'Belmehanobchermet (Russia)'),
(74684, 63215, 'en', 'name', 'Ekaterinburg Research Institute of Viral Infections'),
(74685, 63215, 'ru', 'name', 'Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠŠ˜Š˜ Š²ŠøŃ€ŃƒŃŠ½Ń‹Ń… инфекций'),
(74686, 63216, 'en', 'name', 'Kazan Research Institute of Epidemiology and Microbiology'),
(74687, 63217, 'en', 'name', 'Nizhny Tagil Institute for Testing Metals'),
(74688, 63217, 'ru', 'name', 'ŠŠøŠ¶Š½ŠµŃ‚Š°Š³ŠøŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠæŃ‹Ń‚Š°Š½ŠøŃ металлов'),
(74689, 63218, 'en', 'name', 'Federal Scientific Agroengineering Center VIM'),
(74690, 63218, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ агроинженерный центр Š’Š˜Šœ"'),
(74691, 63219, 'en', 'name', 'Nizhniy Novgorod Research Institute of Epidemiology and Microbiology named after Academician I.N. Blokhina'),
(74692, 63219, 'ru', 'name', 'АкаГемик И.Š. Блохина ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(74693, 63220, 'en', 'name', 'All-Russian Research Institute of Reclaimed Lands'),
(74694, 63220, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ мелиорированных земель'),
(74695, 63221, 'en', 'name', 'Russian Scientific Research Neurosurgical Institute'),
(74696, 63221, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. проф. А.Š›. Поленова'),
(74697, 63222, 'en', 'name', 'Omsk Research Institute of Natural Focal Infections'),
(74698, 63222, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ естественных очаговых инфекций'),
(74699, 63223, 'en', 'name', 'Research Institute of Agriculture of Crimea'),
(74700, 63223, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° ŠšŃ€Ń‹Š¼Š°'),
(74701, 63224, 'en', 'name', 'Scientific Research Institute of Biochemistry'),
(74702, 63224, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии'),
(74703, 63225, 'en', 'name', 'All-Russian Research Institute of Biological Plant Protection'),
(74704, 63225, 'ru', 'name', 'Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š‘Š˜ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠžŠ™ Š—ŠŠ©Š˜Š¢Š« Š ŠŠ”Š¢Š•ŠŠ˜Š™'),
(74705, 63226, 'en', 'name', 'Saint-Petersburg Research Institute of Ear, Throat, Nose and Speech'),
(74706, 63226, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠŠ˜Š˜ ŃƒŃ…Š°, горла, носа Šø речи'),
(74707, 63227, 'en', 'name', 'All-Russian Scientific Research Institute of Refrigeration Industry'),
(74708, 63227, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ЄолоГильной ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(74709, 63228, 'en', 'name', 'All-Russian Scientific Research Institute of Irrigation and Agricultural Water Supply "Raduga"'),
(74710, 63228, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Ń€Š¾ŃˆŠµŠ½ŠøŃ Šø ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š²Š¾Š“Š¾ŃŠ½Š°Š±Š¶ŠµŠ½ŠøŃ «РаГуга»'),
(74711, 63229, 'en', 'name', 'Kaliningrad Frontier Institute of the Federal Security Service of Russia'),
(74712, 63229, 'ru', 'name', 'ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“ŃŠŗŠøŠ¹ пограничный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ФДБ России'),
(74713, 63230, 'en', 'name', 'Saratov Research Institute of Traumatology and Orthopedics'),
(74714, 63230, 'ru', 'name', 'Даратовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии'),
(74715, 63231, 'en', 'name', 'All-Russian Scientific Research Institute of Experimental Veterinary Sciences. Ya.R. Kovalenko'),
(74716, 63231, 'ru', 'name', 'Š¤Š“Š‘ŠŠ£ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ ветеринарии им. ŠÆ.Š . Коваленко'),
(74717, 63232, 'en', 'name', 'Institute of Physiology, Komi Science Center'),
(74718, 63232, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¹ физиологии Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ'),
(74719, 63233, 'en', 'name', 'Perm Military Institute'),
(74720, 63233, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ военный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(74721, 63234, 'en', 'name', 'Dagestan Scientific Center of the Russian Academy of Sciences'),
(74722, 63234, 'ru', 'name', 'Дагестанский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук'),
(74723, 63235, 'en', 'name', 'Federal Scientific Center for Feed Production and Agroecology named after V.R. Williams'),
(74724, 63235, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ кормов имени Š’. Š . Š’ŠøŠ»ŃŒŃŠ¼ŃŠ°'),
(74725, 63236, 'en', 'name', 'Ryazan Higher Airborne Command School named after. V. F. Margelov'),
(74726, 63236, 'ru', 'name', 'Š ŃŠ·Š°Š½ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ возГушно-Гесантное команГное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ им. Š’. Ф. ŠœŠ°Ń€Š³ŠµŠ»Š¾Š²'),
(74727, 63237, 'en', 'name', 'Institute of Engineering Science and Metallurgy Far Eastern Branch of the Russian Academy of Sciences'),
(74728, 63237, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Šø Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(74729, 63238, 'en', 'name', 'All-Russian Scientific Research Institute of Flax'),
(74730, 63238, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ льна'),
(74731, 63239, 'en', 'name', 'Federal Service for Technical and Export Control'),
(74732, 63239, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба по Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ¾Š¼Ńƒ Šø ŃŠŗŃŠæŠ¾Ń€Ń‚Š½Š¾Š¼Ńƒ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŽ'),
(74733, 63240, 'en', 'name', 'Institute of Superhigh-Frequency Semiconductor Electronics of the Russian Academy of Sciences'),
(74734, 63240, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ микроволновой ŠæŠ¾Š»ŃƒŠæŃ€Š¾Š²Š¾Š“Š½ŠøŠŗŠ¾Š²Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø Š ŠŠ'),
(74735, 63241, 'en', 'name', 'All-Russian Research Institute of Food Additives'),
(74736, 63241, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ пищевых Гобавок'),
(74737, 63242, 'en', 'name', 'All-Russian Scientific Research Institute of Grain and Products of its Processing'),
(74738, 63242, 'ru', 'name', 'Всероссийский ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Зерна Šø ŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š² его переработки'),
(74739, 63243, 'en', 'name', 'Ural Scientific Research Institute of Dermatovenerology and Immunopathology'),
(74740, 63244, 'en', 'name', 'All-Russian Scientific Research Institute of high-frequency currents named after VP Vologdin'),
(74741, 63244, 'ru', 'name', 'ā€œŠ’ŃŠµŃ€Š¾ŃŃŠøŠ¹ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ токов высокой Ń‡Š°ŃŃ‚Š¾Ń‚Ń‹ā€ им. Š’.П. ВологГина'),
(74742, 63245, 'en', 'name', 'Urals Research Institute for the Protection of Maternity and Infancy'),
(74743, 63245, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠŠ˜Š˜ охраны материнства Šø млаГенчества'),
(74744, 63246, 'en', 'name', 'Federal State Budgetary Scientific Institution Caspian Fisheries Research Institute'),
(74745, 63246, 'ru', 'name', 'Дагестанский филиал Š¤Š“Š‘ŠŠ£ Каспийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(74746, 63247, 'en', 'name', 'Research Institute of Problems of Storage Rosrezerva'),
(74747, 63247, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ агентства по Š³Š¾ŃŃƒŠ“арственным резервам'),
(74748, 63248, 'en', 'name', 'All-Russian Scientific - Research Institute of Horse Breeding'),
(74749, 63248, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коневоГства'),
(74750, 63249, 'en', 'name', 'Ural Institute of Traumatology and Orthopedics named after V.D. Chaklin'),
(74751, 63249, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии имени Š’.Š”. Чаклина'),
(74752, 63250, 'en', 'name', 'Rostov-on-Don Research Institute of Radio Communications'),
(74753, 63250, 'ru', 'name', 'Š ŠžŠ”Š¢ŠžŠ’Š”ŠšŠ˜Š™-ŠŠ-Š”ŠžŠŠ£ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š ŠŠ”Š˜ŠžŠ”Š’ŠÆŠ—Š˜'),
(74754, 63251, 'en', 'name', 'All-Russian Scientific Research Institute of Hydrocarbon Raw Materials'),
(74755, 63251, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠ³Š»ŠµŠ²Š¾Š“Š¾Ń€Š¾Š“Š½Š¾Š³Š¾ сырья'),
(74756, 63252, 'en', 'name', 'All-Russian Scientific Research Institute for Irrigated Agriculture'),
(74757, 63253, 'en', 'name', 'All-Russian Scientific Research Institute of Soybean'),
(74758, 63253, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сои'),
(74759, 63254, 'en', 'name', 'All-Russian Research Institute of Irrigation Vegetable and Melon Crops'),
(74760, 63254, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Ń€Š¾ŃˆŠ°ŠµŠ¼Š¾Š³Š¾ овощевоГства Šø бахчевоГства'),
(74761, 63255, 'en', 'name', 'State Research Institute of Highly Pure Biopreparations'),
(74762, 63255, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾ā€‘ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ особо чистых биопрепаратов'),
(74763, 63256, 'en', 'name', 'All-Russian Scientific Research Institute of Lupine'),
(74764, 63256, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š»ŃŽŠæŠøŠ½Š°'),
(74765, 63257, 'en', 'name', 'VNU Central Institute for Natural Resources and Environmental Studies'),
(74766, 63257, 'vi', 'name', 'Viện TĆ i NguyĆŖn vĆ  MĆ“i TrĘ°į»ng'),
(74767, 63258, 'en', 'name', 'Central Research Institute of Starch-and-Vaccine Industry and Non-Carrageenaceous Saccharose'),
(74768, 63258, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ крахмала'),
(74769, 63259, 'en', 'name', 'All-Russian Scientific-Research Institute Of Mineral Resources named after N.M. Fedorovsky'),
(74770, 63259, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ Š¼ŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ сырья имени Š. М. ФеГоровского'),
(74771, 63260, 'en', 'name', 'All-Russian Research and Development Technological Institute for the Repair and Operation of the Machine and Tractor Park'),
(74772, 63260, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технического ремонта Šø Š¾Š±ŃŠ»ŃƒŠ¶ŠøŠ²Š°Š½ŠøŃ тракторного парка'),
(74773, 63261, 'en', 'name', 'State Research Institute of Applied Problems'),
(74774, 63261, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГных проблем»'),
(74775, 63262, 'en', 'name', 'State Research Institute of Mechanical Engineering'),
(74776, 63262, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ" им. Š’.Š’. Бахирева'),
(74777, 63263, 'en', 'name', 'State Scientific Research Navigation and Hydrographic Institute'),
(74778, 63263, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ навигационно-гиГрографического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š°'),
(74779, 63264, 'en', 'name', 'Russian Space Systems'),
(74780, 63264, 'ru', 'name', 'Российские космические системы'),
(74781, 63265, 'no_lang_code', 'name', 'State Scientific - Research Institute of Chemical Products (Russia)'),
(74782, 63265, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химических ŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š²'),
(74783, 63266, 'en', 'name', 'State Research Institute "Crystal"'),
(74784, 63266, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ā«ŠšŃ€ŠøŃŃ‚Š°Š»Š»Ā»'),
(74785, 63267, 'en', 'name', 'East-Siberian Institute of Medical and Ecological Research'),
(74786, 63267, 'ru', 'name', 'Восточно-Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГико-ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований'),
(74787, 63268, 'en', 'name', 'Central Research Institute" Dolphin "'),
(74788, 63268, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "Š”ŠµŠ»ŃŒŃ„ŠøŠ½"'),
(74789, 63269, 'en', 'name', 'Institute of Agroengineering and Environmental Problems of Agricultural Production'),
(74790, 63269, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ агроинженерных Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… проблем ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ произвоГства'),
(74791, 63270, 'en', 'name', 'State Institute for the Design of Non-Ferrous Metallurgy Enterprises'),
(74792, 63270, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃŽ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠ¹ цветной Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø'),
(74793, 63271, 'no_lang_code', 'name', 'Comet (Russia)'),
(74794, 63271, 'ru', 'name', 'комета'),
(74795, 63272, 'en', 'name', 'Krasnodar Research Institute of Storage and Processing of Agricultural Products'),
(74796, 63272, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø переработки ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŠæŃ€Š¾Š“ŃƒŠŗŃ†ŠøŠø'),
(74797, 63273, 'en', 'name', 'State Specialized Design Institute'),
(74798, 63273, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ специализированный проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(74799, 63274, 'en', 'name', 'Taganrog Research Institute of Communications'),
(74800, 63274, 'ru', 'name', 'Таганрогский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ²ŃŠ·Šø'),
(74801, 63275, 'en', 'name', 'North-Caucasian Zonal Research Institute of Horticulture and Viticulture'),
(74802, 63275, 'ru', 'name', 'Деверо-Кавказский Š—Š¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ саГовоГства Šø винограГарства'),
(74803, 63276, 'no_lang_code', 'name', 'Oceanpribor (Russia)'),
(74804, 63276, 'ru', 'name', 'ŠžŠŗŠµŠ°Š½ŠæŃ€ŠøŠ±Š¾Ń€'),
(74805, 63277, 'no_lang_code', 'name', 'FSUE FNPTS NIIIS named after Yu.Sedakov (Russia)'),
(74806, 63278, 'en', 'name', 'Ural Scientific Research Institute of Composite Materials'),
(74807, 63278, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ композиционных материалов'),
(74808, 63279, 'no_lang_code', 'name', 'Rosinformagrotekh'),
(74809, 63279, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информации Šø технико-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŃ… обоснований Š“Š»Ń инженерно-технического Š¾Š±ŠµŃŠæŠµŃ‡ŠµŠ½ŠøŃ Š°Š³Ń€Š¾ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š³Š¾ комплекса'),
(74810, 63280, 'en', 'name', 'Central Scientific Research Radio Engineering Institute named after Academician A.I. Berg'),
(74811, 63280, 'ru', 'name', 'Š¦ŠŠ˜Š Š¢Š˜ им. aкаГемика А.И.Берга'),
(74812, 63281, 'no_lang_code', 'name', 'Sozvezdie (Russia)'),
(74813, 63281, 'ru', 'name', 'Воронежский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹'),
(74814, 63282, 'en', 'name', 'Russian Research Institute of Problems of Land Reclamation'),
(74815, 63282, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем мелиорации земель'),
(74816, 63283, 'no_lang_code', 'name', 'Research Institute of Precision Instruments (Russia)'),
(74817, 63283, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ прецизионных приборов'),
(74818, 63284, 'en', 'name', 'Research and Design and Technological Institute of Rolling Stock'),
(74819, 63284, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ поГвижного состава'),
(74820, 63285, 'en', 'name', 'Far Eastern Scientific Research Institute of Hydraulic Engineering and Reclamation'),
(74821, 63285, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ ŠŠ˜Š˜ гиГротехники Šø мелиорации'),
(74822, 63286, 'en', 'name', 'Scientific Research Institute of Industrial Television Rastr'),
(74823, 63286, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š³Š¾ Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ Растр'),
(74824, 63287, 'en', 'name', 'Federal Agrarian Scientific Center of the North-East named after NV Rudnitsky'),
(74825, 63287, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ аграрный Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Деверо-Востока имени Š.Š’. Š ŃƒŠ“Š½ŠøŃ†ŠŗŠ¾Š³Š¾'),
(74826, 63288, 'no_lang_code', 'name', 'Research Institute VOLGA (Russia)'),
(74827, 63288, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Ā«Š’ŠžŠ›Š“ŠĀ»'),
(74828, 63289, 'no_lang_code', 'name', 'Gidropribor'),
(74829, 63289, 'ru', 'name', 'ГиГроприбор'),
(74830, 63290, 'en', 'name', 'Siberian Research Institute of Geology, Geophysics and Mineral Resources'),
(74831, 63290, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Геологии, Геофизики Šø ŠœŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ сырья'),
(74832, 63291, 'en', 'name', 'Kaluga Research Institute of Telemechanical Devices'),
(74833, 63291, 'ru', 'name', 'Калужский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ телемеханических ŃƒŃŃ‚Ń€Š¾Š¹ŃŃ‚Š²'),
(74834, 63292, 'en', 'name', 'The State Scientific Research Institute of Civil Aviation'),
(74835, 63292, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гражГанской авиации'),
(74836, 63293, 'en', 'name', 'Leningrad branch Central Science Research Telecommunications Institute'),
(74837, 63293, 'ru', 'name', 'Š›Š•ŠŠ˜ŠŠ“Š ŠŠ”Š”ŠšŠžŠ• ŠžŠ¢Š”Š•Š›Š•ŠŠ˜Š• Š¦Š•ŠŠ¢Š ŠŠ›Š¬ŠŠžŠ“Šž ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠžŠ“Šž Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢Š Š”Š’ŠÆŠ—Š˜'),
(74838, 63294, 'no_lang_code', 'name', 'Scientific Research Institute of Polymer Material (Russia)'),
(74839, 63294, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ полимерных материалов'),
(74840, 63295, 'en', 'name', 'Research Institute of Radio'),
(74841, 63295, 'ru', 'name', 'Š¤Š“Š£ŠŸ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГио'),
(74842, 63296, 'en', 'name', 'Research Institute Submicron'),
(74843, 63296, 'ru', 'name', 'ŠŠ˜Š˜ Š”ŃƒŠ±Š¼ŠøŠŗŃ€Š¾Š½'),
(74844, 63297, 'en', 'name', 'Scientific Research Institute of Optoelectronic Instrumentation'),
(74845, 63297, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптико-ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š³Š¾ ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(74846, 63298, 'en', 'name', 'Research Institute of Scientific Research and Production Association'),
(74847, 63298, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ Šø произвоГственного Š¾Š±ŃŠŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ'),
(74848, 63299, 'en', 'name', 'Research Institute of Semiconductor Devices'),
(74849, 63299, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠ¾Š»ŃƒŠæŃ€Š¾Š²Š¾Š“Š½ŠøŠŗŠ¾Š²Ń‹Ń… приборов'),
(74850, 63300, 'no_lang_code', 'name', 'Institute of Electronic Measurements KVARZ (Russia)'),
(74851, 63300, 'ru', 'name', 'Ā«Š¤ŠŠŸŠ¦ Ā«ŠŠŠ˜ŠŸŠ˜ Ā«ŠšŠ²Š°Ń€Ń†Ā» имени А.П. Š“Š¾Ń€ŃˆŠŗŠ¾Š²Š°Ā»'),
(74852, 63301, 'en', 'name', 'Scientific Research Institute for Standardization and Unification'),
(74853, 63301, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾Ā­ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ станГартизации Šø ŃƒŠ½ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø'),
(74854, 63302, 'en', 'name', 'All-Russian Research Institute of Agriculture and Soil Protection from erosion'),
(74855, 63303, 'no_lang_code', 'name', 'Transneft (Russia)'),
(74856, 63303, 'ru', 'name', 'Š¢Ń€Š°Š½ŃŠ½ŠµŃ„Ń‚ŃŒ'),
(74857, 63304, 'en', 'name', 'Scientific Research Institute of Technology named after AP Aleksandrov'),
(74858, 63304, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ А. П. АлексанГров'),
(74859, 63305, 'en', 'name', 'Kursk Research Institute of Agricultural Production'),
(74860, 63305, 'ru', 'name', 'ŠšŠ£Š Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŠ“Š ŠžŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ“Šž ŠŸŠ ŠžŠ˜Š—Š’ŠžŠ”Š”Š¢Š’Š'),
(74861, 63306, 'en', 'name', 'Institute of Engineering Physics'),
(74862, 63306, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инженерной физики Российской ФеГерации'),
(74863, 63307, 'en', 'name', 'Television Research Institute'),
(74864, 63307, 'ru', 'name', 'ŠŠ˜Š˜ Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ'),
(74865, 63308, 'en', 'name', 'Bertalanffy Center for the Study of Systems Science'),
(74866, 63308, 'de', 'name', 'Bertalanffy Zentrum für das Studium der Systemwissenschaften'),
(74867, 63309, 'no_lang_code', 'name', 'Scientific Research Institute of Parachute Construction (Russia)'),
(74868, 63309, 'ru', 'name', 'ŠŠ˜Š˜ ŠæŠ°Ń€Š°ŃˆŃŽŃ‚Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(74869, 63310, 'en', 'name', 'Scientific Research Institute of Agrarian Problems of Khakassia'),
(74870, 63311, 'en', 'name', 'Institute of Marine Technology Problems of the Far-Eastern Branch of the Russian Academy of Sciences'),
(74871, 63311, 'ru', 'name', 'ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем морских технологий Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(74872, 63312, 'en', 'name', 'Institute of Precision Mechanics and Computer Science S.A. Lebedev'),
(74873, 63312, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ точной механики Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники имени Š”. А. ЛебеГева Š ŠŠ'),
(74874, 63313, 'en', 'name', 'Institute of Materials Science of the Khabarovsk Scientific Center'),
(74875, 63313, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(74876, 63314, 'no_lang_code', 'name', 'Polyus Research Institute of M.F.Stelmakh (Russia)'),
(74877, 63315, 'en', 'name', 'VA Afanasyev Research Institute of Fur-breeding and Rabbit breeding'),
(74878, 63316, 'en', 'name', 'Research Institute Ekran'),
(74879, 63316, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(74880, 63317, 'en', 'name', 'Scientific and Research Institute Voskhod'),
(74881, 63317, 'ru', 'name', 'ŠŠ˜Š˜ ВосхоГ'),
(74882, 63318, 'en', 'name', 'Mavlyutov Institute of Mechanics'),
(74883, 63318, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики им Š .Š . ŠœŠ°Š²Š»ŃŽŃ‚Š¾Š²Š°'),
(74884, 63319, 'en', 'name', 'Siberian Aeronautical Research Institute Named After S.A. Chaplygin'),
(74885, 63319, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиации им. Š”. А. Чаплыгина'),
(74886, 63320, 'no_lang_code', 'name', 'IrkutskNIIHimmash (Russia)'),
(74887, 63321, 'en', 'name', 'Head Design Institute Chelyabinskgrazhdanproekt'),
(74888, 63322, 'no_lang_code', 'name', 'Gipronickel Institute'),
(74889, 63322, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“ŠøŠæŃ€Š¾Š½ŠøŠŗŠµŠ»ŃŒ'),
(74890, 63323, 'en', 'name', 'Research Institute of Medical Climatology and Rehabilitation'),
(74891, 63323, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинской климатологии Šø Š²Š¾ŃŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š³Š¾ Š»ŠµŃ‡ŠµŠ½ŠøŃ'),
(74892, 63324, 'en', 'name', 'The Joint Institute of Mechanical Engineering'),
(74893, 63325, 'en', 'name', 'Military Institute'),
(74894, 63325, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ военное авиационное инженерное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ'),
(74895, 63326, 'en', 'name', 'Institute of Monitoring of Climatic and Ecological Systems'),
(74896, 63326, 'ru', 'name', 'Главный ŠŗŠ¾Ń€ŠæŃƒŃ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мониторинга климатических Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… систем Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(74897, 63327, 'en', 'name', 'All-Russian Research Institute of Radio Equipment'),
(74898, 63327, 'ru', 'name', 'ŠžŃ€Š“ŠµŠ½Š° Š¢Ń€ŃƒŠ“Š¾Š²Š¾Š³Š¾ ŠšŃ€Š°ŃŠ½Š¾Š³Š¾ Знамени Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š“ŠøŠ¾Š°ŠæŠæŠ°Ń€Š°Ń‚ŃƒŃ€Ń‹'),
(74899, 63328, 'en', 'name', 'Irkutsk Research Institute of the Forestry Industry'),
(74900, 63328, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лесной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(74901, 63329, 'en', 'name', 'Irkutsk Antiplague Research Institute of Siberia and Far East'),
(74902, 63329, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠæŃ€Š¾Ń‚ŠøŠ²Š¾Ń‡ŃƒŠ¼Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дибири Šø Š”Š°Š»ŃŒŠ½ŠµŠ³Š¾ Востока'),
(74903, 63330, 'en', 'name', 'Institute of Biology Ufa Science Center'),
(74904, 63330, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Уфимского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра'),
(74905, 63331, 'en', 'name', 'Kharkiv State Veterinary Academy'),
(74906, 63331, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° Гержавна зооветеринарна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(74907, 63332, 'no_lang_code', 'name', 'Almaz-Antey (Russia)'),
(74908, 63332, 'ru', 'name', 'ŠšŠ¾Š½Ń†ŠµŃ€Š½ Š’ŠšŠž "Алмаз-Антей'),
(74909, 63333, 'en', 'name', 'Scientific Research Engineering Institute'),
(74910, 63333, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ–Š•ŠŠ•Š ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(74911, 63334, 'no_lang_code', 'name', 'Research Institute "Pilot" (Russia)'),
(74912, 63335, 'en', 'name', 'Tula University'),
(74913, 63335, 'ru', 'name', 'Тульский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(74914, 63336, 'en', 'name', 'Krasnodar Research Institute of Agriculture named after P. Lukyanenko'),
(74915, 63336, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ ŠŠ˜Š˜ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° имени П. П. Š›ŃƒŠŗŃŒŃŠ½ŠµŠ½ŠŗŠ¾'),
(74916, 63337, 'en', 'name', 'The BE Vedeneev All Russia Institute of Hydraulic Engineering'),
(74917, 63337, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГротехники имени Š‘.Š•. ВеГенеева'),
(74918, 63338, 'en', 'name', 'Krasnodar Research Institute of Fishery'),
(74919, 63338, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(74920, 63339, 'en', 'name', 'North Caucasian Research Institute of Mountain and Foothill Agriculture'),
(74921, 63339, 'ru', 'name', 'Деверо-Кавказский ŠŠ˜Š˜ горного Šø преГгорного сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(74922, 63340, 'en', 'name', 'Acoustic Institute named after NN Andreev'),
(74923, 63340, 'ru', 'name', 'ŠŠŗŃƒŃŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š. Š. АнГреева'),
(74924, 63341, 'en', 'name', 'Research Institute of Hermes'),
(74925, 63341, 'ru', 'name', 'ŠŠ˜Š˜ "Š“Š•Š ŠœŠ•Š”"'),
(74926, 63342, 'en', 'name', 'North Caucasian Zonal Scientific Research Veterinary Institute'),
(74927, 63342, 'ru', 'name', 'Деверо-Кавказский Š—Š¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ветеринарный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(74928, 63343, 'no_lang_code', 'name', 'Scientific and Production Association of Electromechanics (Russia)'),
(74929, 63344, 'en', 'name', 'Moscow Institute of Thermal Technology'),
(74930, 63344, 'ru', 'name', 'ŠšŠ¾Ń€ŠæŠ¾Ń€Š°Ń†ŠøŃ Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплотехники'),
(74931, 63345, 'en', 'name', 'Russian Research and Design Institute of Titanium and Magnesium'),
(74932, 63345, 'ru', 'name', 'Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š˜Š¢ŠŠŠ И ŠœŠŠ“ŠŠ˜ŠÆ'),
(74933, 63346, 'no_lang_code', 'name', 'SZNIIMESH'),
(74934, 63346, 'ru', 'name', 'Деверо-запаГный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Šø ŃŠ»ŠµŠŗŃ‚Ń€ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(74935, 63347, 'no_lang_code', 'name', 'Nizhny Novgorod Research Institute of Radio Engineering (Russia)'),
(74936, 63347, 'ru', 'name', 'Ā«Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-произвоГственный центр Ā«ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиотехники»'),
(74937, 63348, 'ru', 'name', '"Š¤ŠŠŸŠ¦ "ŠŠ˜Š˜ приклаГной химии"'),
(74938, 63348, 'en', 'name', 'FNPC Research Institute of Applied Chemistry'),
(74939, 63349, 'no_lang_code', 'name', 'Kazancompressormash'),
(74940, 63349, 'ru', 'name', 'ŠšŠ°Š·Š°Š½ŃŒŠŗŠ¾Š¼ŠæŃ€ŠµŃŃŠ¾Ń€Š¼Š°Ńˆ'),
(74941, 63350, 'no_lang_code', 'name', 'Stalproekt (Russia)'),
(74942, 63350, 'ru', 'name', 'Š”Ń‚Š°Š»ŃŒŠæŃ€Š¾ŠµŠŗŃ‚'),
(74943, 63351, 'en', 'name', 'Ufa Research Institute of Occupational Health and Human Ecology'),
(74944, 63351, 'ru', 'name', 'Уфимский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицины Ń‚Ń€ŃƒŠ“Š° Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø человека'),
(74945, 63352, 'en', 'name', '"VNIINM" named after AA Bochvar'),
(74946, 63352, 'ru', 'name', '"Высокотехнологический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неорганических материалов имени акаГемика А.А. Бочвара"'),
(74947, 63353, 'no_lang_code', 'name', 'Metrogiprotrans (Russia)'),
(74948, 63353, 'ru', 'name', 'ŠœŠµŃ‚Ń€Š¾Š³ŠøŠæŃ€Š¾Ń‚Ń€Š°Š½Ń'),
(74949, 63354, 'en', 'name', 'Institute of Biotechnology and Veterinary Medicine'),
(74950, 63354, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биотехнологии Šø ветеринарной меГицины'),
(74951, 63355, 'no_lang_code', 'name', 'Yarsintez'),
(74952, 63355, 'ru', 'name', 'ŠžŠŠž ŠŠ˜Š˜ «Ярсинтез»'),
(74953, 63356, 'en', 'name', 'Central Research Institute for the Pulp and Paper Industry'),
(74954, 63356, 'ru', 'name', 'Š¾Ń€Š³Š°Š½ŠøŠ·ŃƒŠµŃ‚ŃŃ Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń†ŠµŠ»Š»ŃŽŠ»Š¾Š·Š½Š¾-бу­мажной пр'),
(74955, 63357, 'en', 'name', 'Joint Stock Company National Research Institute Electron'),
(74956, 63357, 'ru', 'name', 'Ā«Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «Электрон»'),
(74957, 63358, 'en', 'name', 'Research Institute of Instrument named after V.V. Tikhomirova'),
(74958, 63358, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ Š˜Š‘ŠžŠ ŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ Š˜ŠœŠ•ŠŠ˜ Š’.Š’. Š¢Š˜Š„ŠžŠœŠ˜Š ŠžŠ’Š'),
(74959, 63359, 'en', 'name', 'Central Research Institute "Course"'),
(74960, 63359, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "ŠšŃƒŃ€Ń"'),
(74961, 63360, 'no_lang_code', 'name', 'Novosibirsk Tuberculosis Research Institute'),
(74962, 63360, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»Ń‘Š·Š°'),
(74963, 63361, 'no_lang_code', 'name', 'Scientific Research Institute of Marine Systems (Russia)'),
(74964, 63361, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ морских систем'),
(74965, 63362, 'no_lang_code', 'name', 'MosvodokanalNIIproject Institute (Russia)'),
(74966, 63362, 'ru', 'name', 'ŠœŠ¾ŃŠ²Š¾Š“Š¾ŠŗŠ°Š½Š°Š»ŠŠ˜Š˜ŠæŃ€Š¾ŠµŠŗŃ‚ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(74967, 63363, 'en', 'name', 'Far Eastern Scientific Research Institute of Mechanization and Electrification of Agriculture'),
(74968, 63363, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Šø ŃŠ»ŠµŠŗŃ‚Ń€ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(74969, 63364, 'en', 'name', 'Institute of Mining of the North after N.V.Chersky'),
(74970, 63364, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного Гела Девера после Š.Š’.Черского'),
(74971, 63365, 'en', 'name', 'Research Institute "Quantum"'),
(74972, 63365, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŠ²Š°Š½Ń‚'),
(74973, 63366, 'en', 'name', 'Military Academy of Strategic Missile Forces named after Peter the Great'),
(74974, 63366, 'ru', 'name', 'Š’ŠžŠ•ŠŠŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ Š Š’Š”Š Š˜ŠœŠ•ŠŠ˜ ŠŸŠ•Š¢Š Š Š’Š•Š›Š˜ŠšŠžŠ“Šž'),
(74975, 63367, 'no_lang_code', 'name', 'Tver Wagon Building Institute (Russia)'),
(74976, 63367, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ «Тверской ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ каретки»'),
(74977, 63368, 'no_lang_code', 'name', 'Concern Granit-Electron (Russia)'),
(74978, 63368, 'ru', 'name', 'ŠšŠ¾Š½Ń†ŠµŃ€Š½ «Гранит-Электрон»'),
(74979, 63369, 'en', 'name', 'Tula Institute of Design & Technology'),
(74980, 63369, 'ru', 'name', 'ŠŸŃ€Š¾ŠµŠŗŃ‚Š½Š¾-ŠšŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ Технологический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(74981, 63370, 'no_lang_code', 'name', 'United Machinery Technologies (Russia)'),
(74982, 63371, 'no_lang_code', 'name', 'Research Institute of Cosmic and Aviation Materials (Russia)'),
(74983, 63371, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾ – ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космических Šø авиационных материалов'),
(74984, 63372, 'no_lang_code', 'name', '"Institute" Energosetproject"'),
(74985, 63372, 'ru', 'name', 'Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ā«Š­ŠŠ•Š Š“ŠžŠ”Š•Š¢Š¬ŠŸŠ ŠžŠ•ŠšŠ¢Ā»'),
(74986, 63373, 'en', 'name', 'All-Russian Research Institute of Veterinary Sanitation, Hygiene and Ecology'),
(74987, 63373, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарной санитарии, гигиены Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(74988, 63374, 'en', 'name', 'JSC Institute Hydroproject'),
(74989, 63374, 'ru', 'name', 'ŠŠž Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ГиГропроект»'),
(74990, 63375, 'no_lang_code', 'name', 'Medinstill (United States)'),
(74991, 63376, 'no_lang_code', 'name', 'Gazpromekt (Russia)'),
(74992, 63376, 'ru', 'name', 'Š“Š°Š·ŠŸŃ€Š¾ŠµŠŗŃ‚'),
(74993, 63377, 'no_lang_code', 'name', 'VolgoUralNIPIgaz (Russia)'),
(74994, 63378, 'en', 'name', 'Federal State Budget Scientific Institution "Nizhny Novgorod Research Institute of Agriculture"'),
(74995, 63379, 'en', 'name', 'Energy Institute named after G.M. Krzhizhanovsky'),
(74996, 63379, 'ru', 'name', 'Энергетический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š“.М. ŠšŃ€Š¶ŠøŠ¶Š°Š½Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(74997, 63380, 'en', 'name', 'Tatar Scientific Research And Design Institute of Petroleum Engineering'),
(74998, 63380, 'ru', 'name', 'Š¢ŠŠ¢ŠŠ Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠž-ŠšŠžŠŠ”Š¢Š Š£ŠšŠ¢ŠžŠ Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŠ•Š¤Š¢ŠÆŠŠžŠ“Šž ŠœŠŠØŠ˜ŠŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ'),
(74999, 63381, 'no_lang_code', 'name', 'Tatneft (Russia)'),
(75000, 63381, 'ru', 'name', 'Š¢Š°Ń‚Š½ŠµŃ„Ń‚ŃŒ'),
(75001, 63382, 'no_lang_code', 'name', 'Lukoil (Russia)'),
(75002, 63382, 'ru', 'name', 'Š˜ŃŃ‚Š¾Ń€ŠøŃ'),
(75003, 63383, 'en', 'name', 'Ural Scientific Research and Design Institute of Galurgy'),
(75004, 63383, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š°Š»ŃƒŃ€Š³ŠøŠø'),
(75005, 63384, 'no_lang_code', 'name', 'Giprotruboprovod, JSC'),
(75006, 63384, 'ru', 'name', 'ŠŠž Ā«Š“ŠøŠæŃ€Š¾Ń‚Ń€ŃƒŠ±Š¾ŠæŃ€Š¾Š²Š¾Š“Ā»'),
(75007, 63385, 'en', 'name', 'Voronezh Research Institute Vega'),
(75008, 63385, 'ru', 'name', 'Воронежский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(75009, 63386, 'en', 'name', 'Institute of Applied Physics'),
(75010, 63386, 'ru', 'name', 'Акционерного ŠžŠ±Ń‰ŠµŃŃ‚ва Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной физики'),
(75011, 63387, 'no_lang_code', 'name', 'All-Russian Research and Design Institute of Electric Locomotive Industry (Russia)'),
(75012, 63387, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š²Š¾Š·Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(75013, 63388, 'en', 'name', 'Central Research and Design Institute of Fuel Equipment for Automotive and Stationary Engines'),
(75014, 63388, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ топливной Š°ŠæŠæŠ°Ń€Š°Ń‚ŃƒŃ€Ń‹ автотракторных Šø стационарных Гвигателей'),
(75015, 63389, 'ru', 'name', 'OAO Š¢Ń€ŃƒŠ±Š½Š°Ń ŠœŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń ŠšŠ¾Š¼ŠæŠ°Š½ŠøŃ'),
(75016, 63389, 'no_lang_code', 'name', 'Pipe Metallurgical (Russia)'),
(75017, 63390, 'ru', 'name', 'Zarubezhneft'),
(75018, 63391, 'en', 'name', 'All-Russian Research and Design Institute of Nuclear and Power Engineering'),
(75019, 63391, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ атомного Šø ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(75020, 63392, 'no_lang_code', 'name', 'Scientific Research Institute of Metallurgical Technology (Russia)'),
(75021, 63393, 'en', 'name', 'Institute of Optoelectronic Information Technologies'),
(75022, 63393, 'ru', 'name', 'ŠžŃ‚ŠŗŃ€Ń‹Ń‚Š¾Šµ акционерное общество "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптико-ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Ń‹Ń… информационных технологий"'),
(75023, 63394, 'no_lang_code', 'name', 'VNIIStrudormash (Russia)'),
(75024, 63394, 'ru', 'name', 'Š’ŠŠ˜Š˜ŃŃ‚Ń€Š¾Š¹Š“Š¾Ń€Š¼Š°Ńˆ'),
(75025, 63395, 'no_lang_code', 'name', 'VNIPIvzryvgeofizika'),
(75026, 63395, 'ru', 'name', 'Š’ŠŠ˜ŠŸŠ˜Š²Š·Ń€Ń‹Š²Š³ŠµŠ¾Ń„ŠøŠ·ŠøŠŗŠ°'),
(75027, 63396, 'en', 'name', 'Institute of Plastics named after G. Petrov'),
(75028, 63396, 'ru', 'name', 'Акционерное общество Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пластмасс имени Š“.Š”.ŠŸŠµŃ‚Ń€Š¾Š²Š°Ā»'),
(75029, 63397, 'en', 'name', 'Research Institute of Fur Industry'),
(75030, 63397, 'ru', 'name', 'ŠŠ˜Š˜ ŠœŠµŃ…ŠŸŃ€Š¾Š¼'),
(75031, 63398, 'en', 'name', 'International Institute of Industrial Property'),
(75032, 63398, 'ru', 'name', 'ŠœŠ•Š–Š”Š£ŠŠŠ ŠžŠ”ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ™ Š”ŠžŠ‘Š”Š¢Š’Š•ŠŠŠžŠ”Š¢Š˜'),
(75033, 63399, 'no_lang_code', 'name', 'Sistema (Russia)'),
(75034, 63400, 'en', 'name', 'All-Russian Scientific Research Institute of Pulp and Paper Industry'),
(75035, 63400, 'ru', 'name', 'Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¦Š•Š›Š›Š®Š›ŠžŠ—ŠŠž-Š‘Š£ŠœŠŠ–ŠŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(75036, 63401, 'no_lang_code', 'name', 'Research Institute of Technology (Russia)'),
(75037, 63402, 'no_lang_code', 'name', 'Irgiredmet (Russia)'),
(75038, 63402, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Грагоценных Šø реГких металлов Šø алмазов'),
(75039, 63403, 'en', 'name', 'Scientific Research Institute of Computer Complexes. M.A. Kartsev');
INSERT INTO `ror_settings` VALUES
(75040, 63403, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… комплексов'),
(75041, 63404, 'no_lang_code', 'name', 'Ruselprom (Russia)'),
(75042, 63405, 'no_lang_code', 'name', 'Sibur (Russia)'),
(75043, 63406, 'en', 'name', 'Kazan Research Institute of Aviation Technologies'),
(75044, 63406, 'ru', 'name', 'Казанский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных технологий'),
(75045, 63407, 'en', 'name', 'All-Russian Scientific Research Institute for Operation of Nuclear Power Plants'),
(75046, 63407, 'ru', 'name', 'Всероссийский ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŃŠŗŃŠæŠ»ŃƒŠ°Ń‚Š°Ń†ŠøŠø атомных ŃŠ»ŠµŠŗŃ‚Ń€Š¾ŃŃ‚Š°Š½Ń†ŠøŠ¹'),
(75047, 63408, 'no_lang_code', 'name', 'Plasma (Russia)'),
(75048, 63409, 'en', 'name', 'All-Russian Scientific Research Institute of Radio Engineering'),
(75049, 63409, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ РаГиотехники'),
(75050, 63410, 'no_lang_code', 'name', 'KO VNIIMETMASH'),
(75051, 63410, 'ru', 'name', 'Колпинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(75052, 63411, 'no_lang_code', 'name', 'Rosgeo (Russia)'),
(75053, 63411, 'ru', 'name', 'РосГео'),
(75054, 63412, 'en', 'name', 'Central Research Institute of Automation and Hydraulics'),
(75055, 63412, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø гиГравлики'),
(75056, 63413, 'no_lang_code', 'name', 'NIIhimmash (Russia)'),
(75057, 63414, 'en', 'name', 'Research Institute of Nonwoven Materials'),
(75058, 63415, 'no_lang_code', 'name', 'Ural Mining and Metallurgical Company (Russia)'),
(75059, 63415, 'ru', 'name', 'ŠžŃ‚ŠŗŃ€Ń‹Ń‚Š¾Šµ акционерное общество Ā«Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŗŠ¾Š¼ŠæŠ°Š½ŠøŃ'),
(75060, 63416, 'en', 'name', 'Research and Design Institute of the Equipment for Tyre Industry'),
(75061, 63416, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¾Š±Š¾Ń€ŃƒŠ“Š¾Š²Š°Š½ŠøŃŽ Š“Š»Ń шинной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(75062, 63417, 'no_lang_code', 'name', 'Nipigormash (Russia)'),
(75063, 63417, 'ru', 'name', 'ŠŠ˜ŠŸŠ˜Š“ŠžŠ ŠœŠŠØ'),
(75064, 63418, 'no_lang_code', 'name', 'Magnitogorsk Gipromez (Russia)'),
(75065, 63418, 'ru', 'name', 'ŠžŠŠž "ŠœŠŠ“ŠŠ˜Š¢ŠžŠ“ŠžŠ Š”ŠšŠ˜Š™ Š“Š˜ŠŸŠ ŠžŠœŠ•Š—"'),
(75066, 63419, 'no_lang_code', 'name', 'Research Institute for Oilfield Chemistry (Russia)'),
(75067, 63419, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ЄИМИИ'),
(75068, 63420, 'en', 'name', 'Khabarovsk Scientific Research Institute of Epidemiology and Microbiology'),
(75069, 63420, 'ru', 'name', 'Єабаровский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(75070, 63421, 'en', 'name', 'National Institute of Aviation Technologies'),
(75071, 63421, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных технологий'),
(75072, 63422, 'no_lang_code', 'name', 'Institute Giprostroymost'),
(75073, 63422, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гипростроймост'),
(75074, 63423, 'en', 'name', 'Scientific Research Institute of Mining'),
(75075, 63423, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Горного Гела'),
(75076, 63424, 'no_lang_code', 'name', 'Scientific Research Institute of Precision Mechanics (Russia)'),
(75077, 63425, 'en', 'name', 'Research And Design Institute of Electric Coal Products'),
(75078, 63425, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠž-Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š­Š›Š•ŠšŠ¢Š ŠžŠ£Š“ŠžŠ›Š¬ŠŠ«Š„ Š˜Š—Š”Š•Š›Š˜Š™'),
(75079, 63426, 'en', 'name', 'Texas Wheat Producers Board and Association'),
(75080, 63427, 'no_lang_code', 'name', 'Scientific Research Institute of Semiconductor Mechanical Engineering (Russia)'),
(75081, 63428, 'en', 'name', 'Institute Belniis'),
(75082, 63428, 'be', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Šµ Ń€ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠ¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ по ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Ńƒ "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š‘ŠµŠ»ŠŠ˜Š˜Š”"'),
(75083, 63429, 'no_lang_code', 'name', 'Niiteplopribor (Russia)'),
(75084, 63429, 'ru', 'name', 'ŠŠ˜Š˜Š¢ŠµŠæŠ»Š¾ŠæŃ€ŠøŠ±Š¾Ń€'),
(75085, 63430, 'en', 'name', 'Scientific Research Institute Elpa'),
(75086, 63430, 'ru', 'name', 'Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «Элпа»'),
(75087, 63431, 'no_lang_code', 'name', 'Scientific Research Institute "Girikond" (Russia)'),
(75088, 63432, 'en', 'name', 'Isotherm Research Institute'),
(75089, 63432, 'ru', 'name', 'ŠŠ˜Š˜ "Š˜Š·Š¾Ń‚ŠµŃ€Š¼"'),
(75090, 63433, 'no_lang_code', 'name', 'MoszhilNIIproekt'),
(75091, 63433, 'ru', 'name', 'ŠœŠ¾ŃŠ¶ŠøŠ»ŠŠ˜Š˜ŠæŃ€Š¾ŠµŠŗŃ‚'),
(75092, 63434, 'en', 'name', 'Scientific and Research Institute of High-Voltage Apparatus'),
(75093, 63434, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Š²Š¾Š»ŃŒŃ‚Š½Š¾Š³Š¾ Š¾Š±Š¾Ń€ŃƒŠ“Š¾Š²Š°Š½ŠøŃ'),
(75094, 63435, 'en', 'name', 'Scientific Research Institute "Kulon"'),
(75095, 63435, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š¼Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ «Кулон»'),
(75096, 63436, 'en', 'name', 'Specialized Scientific Research Institute of Instrument Engineering'),
(75097, 63437, 'uk', 'name', 'Ukrnaftokhimproect'),
(75098, 63438, 'ru', 'name', '"Зенит ТрейГинг"'),
(75099, 63438, 'no_lang_code', 'name', 'Zenit Trading (Russia)'),
(75100, 63439, 'no_lang_code', 'name', 'Uralniti (Russia)'),
(75101, 63439, 'ru', 'name', 'Š£Ń€Š°Š»ŠŠ˜Š¢Š˜'),
(75102, 63440, 'no_lang_code', 'name', 'VNIIGIS'),
(75103, 63440, 'ru', 'name', 'ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геофизических исслеГований геологоразвеГочных скважин['),
(75104, 63441, 'en', 'name', 'Russian Institute of Radionavigation and Time'),
(75105, 63441, 'ru', 'name', 'Российский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГионавигации Šø времени'),
(75106, 63442, 'en', 'name', 'Research Institute "Argon"'),
(75107, 63442, 'ru', 'name', 'ŠŠ˜Š˜ "Аргон"'),
(75108, 63443, 'en', 'name', 'Research Institute of Mining Geomechanics and Mine Surveying'),
(75109, 63443, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горно'),
(75110, 63444, 'en', 'name', 'Central Scientific and Research Institute of the Sewing Industry'),
(75111, 63444, 'ru', 'name', 'ŠžŠŠž "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Швейной ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø"'),
(75112, 63445, 'no_lang_code', 'name', 'Research Institute "Pulsar" (Russia)'),
(75113, 63445, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-ŠŸŠ ŠžŠ˜Š—Š’ŠžŠ”Š”Š¢Š’Š•ŠŠŠžŠ• ŠŸŠ Š•Š”ŠŸŠ Š˜ŠÆŠ¢Š˜Š• "ŠŸŠ£Š›Š¬Š”ŠŠ "'),
(75114, 63446, 'no_lang_code', 'name', 'The Ural Scientific-Research Institute of Architecture and Construction (Russia)'),
(75115, 63447, 'en', 'name', 'Research Institute of Refining and Petrochemical Industry" MASMA "'),
(75116, 63447, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нафтопереробки "МАДМА"'),
(75117, 63448, 'en', 'name', 'Research Institute "Vector"'),
(75118, 63448, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "Вектор"'),
(75119, 63449, 'no_lang_code', 'name', 'The Russian Research Institute of the Tube & Pipe Industries (Russia)'),
(75120, 63449, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Š¾ā€“ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚Ń€ŃƒŠ±Š½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(75121, 63450, 'en', 'name', 'Moscow Research Institute" Nemchinovka "'),
(75122, 63451, 'en', 'name', 'Scientific Research Institute for the Kursk Magnetic Anomaly named after L.D. Shevyakova'),
(75123, 63451, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по проблемам ŠšŃƒŃ€ŃŠŗŠ¾Š¹ магнитной аномалии имени Š›.Š”. ŠØŠµŠ²ŃŠŗŠ¾Š²Š°'),
(75124, 63452, 'no_lang_code', 'name', 'PJSC "VNIIPThimnefteapparatury" (Russia)'),
(75125, 63453, 'en', 'name', 'Russian Research Institute of the Sugar Industry'),
(75126, 63453, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сахарной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(75127, 63454, 'en', 'name', 'Research Institute of Disinfectology Rospotrebnadzor'),
(75128, 63454, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гезинфектологии РоспотребнаГзора'),
(75129, 63455, 'en', 'name', 'Scientific Research Institute of Agriculture of the Central Black Earth Zone named after V.V. Dokuchaeva'),
(75130, 63455, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Черноземной полосы имени Š’.Š’. Š”Š¾ŠŗŃƒŃ‡Š°ŠµŠ²Š°'),
(75131, 63456, 'no_lang_code', 'name', 'Scientific Research Institute of Sanitary Technology (Russia)'),
(75132, 63456, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сантехники'),
(75133, 63457, 'en', 'name', 'Russian Research Institute of Hematology and Transfusiology'),
(75134, 63457, 'ru', 'name', 'Российский ŠŠ˜Š˜ гематологии Šø Ń‚Ń€Š°Š½ŃŃ„ŃƒŠ·ŠøŠ¾Š»Š¾Š³ŠøŠø'),
(75135, 63458, 'en', 'name', 'Agricultural Research Institute for South-East Region'),
(75136, 63458, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Юго-Восточного'),
(75137, 63459, 'en', 'name', 'Military Academy of Material and Technical Support them General of the Army A.V. Khruleva'),
(75138, 63459, 'ru', 'name', 'Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»ŃŒŠ½Š¾-технического Š¾Š±ŠµŃŠæŠµŃ‡ŠµŠ½ŠøŃ им. генерала армии А.Š’. Š„Ń€ŃƒŠ»Ń‘Š²Š°'),
(75139, 63460, 'no_lang_code', 'name', 'Institute of Technology and Production Organization (Russia)'),
(75140, 63461, 'en', 'name', 'Scientific and Research Technological Institute Progress'),
(75141, 63461, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ā«ŠŸŃ€Š¾Š³Ń€ŠµŃŃ'),
(75142, 63462, 'no_lang_code', 'name', 'Penza Electrotechnical Research Institute (Russia)'),
(75143, 63462, 'ru', 'name', 'Пензенский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹'),
(75144, 63463, 'en', 'name', 'Scientific and Research Institute of Textile Materials'),
(75145, 63463, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠŗŃŃ‚ŠøŠ»ŃŒŠ½Ń‹Ń… материалов'),
(75146, 63464, 'en', 'name', 'Research Institute "Agat"'),
(75147, 63465, 'en', 'name', 'Research Institute of Development and Operation of oil-field Pipes'),
(75148, 63465, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ разработки Šø ŃŠŗŃŠæŠ»ŃƒŠ°Ń‚Š°Ń†ŠøŠø OCTG'),
(75149, 63466, 'en', 'name', 'Scientific Research Institute of Computing Machinery'),
(75150, 63466, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники'),
(75151, 63467, 'en', 'name', 'Research Institute of Tire Industry'),
(75152, 63467, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ шинной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(75153, 63468, 'en', 'name', 'Federal Scientific Center for Medical and Preventive Health Risk Management Technologies'),
(75154, 63468, 'ru', 'name', 'Š›ŃŽŠ±Š¾Šµ использование материалов Š“Š¾ŠæŃƒŃŠŗŠ°ŠµŃ‚ŃŃ Ń‚Š¾Š»ŃŒŠŗŠ¾ с ŃŠ¾Š³Š»Š°ŃŠøŃ ŠæŃ€Š°Š²Š¾Š¾Š±Š»Š°Š“Š°Ń‚ŠµŠ»Ń'),
(75155, 63469, 'no_lang_code', 'name', 'LIT-PHONON (Russia)'),
(75156, 63470, 'en', 'name', 'Central Research Textile Institute'),
(75157, 63470, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Ń‚ŠµŠŗŃŃ‚ŠøŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(75158, 63471, 'en', 'name', 'Research Institute of Measuring Equipment'),
(75159, 63471, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŠ·Š¼ŠµŃ€ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники'),
(75160, 63472, 'no_lang_code', 'name', 'Ukrainian Research Institute of Cable Industry (Ukraine)'),
(75161, 63473, 'en', 'name', 'Saratov Research Institute of Rural Hygiene'),
(75162, 63473, 'ru', 'name', 'Даратовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельской гигиены'),
(75163, 63474, 'en', 'name', 'Research Institute of Metallurgy'),
(75164, 63474, 'ru', 'name', 'Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠøĀ»'),
(75165, 63475, 'en', 'name', 'Scientific Research Clinical Institute. L.I. Sverzhevsky'),
(75166, 63475, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ клинический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚. Š›.И. Двержевского'),
(75167, 63476, 'en', 'name', 'Scientific Research Institute of Horticulture of Siberia named after М.А. Lisavenko'),
(75168, 63477, 'en', 'name', 'Siberian Research Institute of Mechanization and Electrification of Agriculture'),
(75169, 63477, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Šø ŃŠ»ŠµŠŗŃ‚Ń€ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(75170, 63478, 'en', 'name', 'Russian Scientific Center "Applied Chemistry"'),
(75171, 63478, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ā«ŠŸŃ€ŠøŠŗŠ»Š°Š“Š½Š°Ń Ń…ŠøŠ¼ŠøŃĀ»'),
(75172, 63479, 'ru', 'name', '24-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны России'),
(75173, 63479, 'en', 'name', '24th Central Research Institute of the Russian Defence Ministry'),
(75174, 63480, 'ru', 'name', '40-й Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны Российской ФеГерации'),
(75175, 63480, 'en', 'name', '40th State Research Institute of the Ministry of Defence of the Russian Federation'),
(75176, 63481, 'ru', 'name', '25-й Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ чехтотологии ŠœŠøŠ½ŠøŃŃ‚ерства обороны Российской ФеГерации'),
(75177, 63481, 'en', 'name', '25th State Research Institute of Chemmotology of the Ministry of Defence of the Russian Federation'),
(75178, 63482, 'no_lang_code', 'name', 'NIIAS'),
(75179, 63482, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информатизации, автоматизации Šø ŃŠ²ŃŠ·Šø на железноГорожном транспорте'),
(75180, 63483, 'ru', 'name', '27-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны Российской ФеГерации'),
(75181, 63483, 'en', 'name', '27th Central Research Institute of the Ministry of Defence of the Russian Federation'),
(75182, 63484, 'ru', 'name', '3-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½Š¾Š±Š¾Ń€Š¾Š½Ń‹ России'),
(75183, 63484, 'en', 'name', '3rd Central Research Institute of the Russian Defence Ministry'),
(75184, 63485, 'ru', 'name', '4-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны России'),
(75185, 63485, 'en', 'name', '4th Central Research Institute of the Russian Defence Ministry'),
(75186, 63486, 'en', 'name', 'Ukrainian Institute for the Design of Metallurgical Plants'),
(75187, 63486, 'uk', 'name', 'Украинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃŽ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŃ… завоГов'),
(75188, 63487, 'en', 'name', 'Central Research Institute of Engineering Troops of the Ministry of Defense of the Russian Federation'),
(75189, 63487, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инженерных войск ŠœŠøŠ½ŠøŃŃ‚ерства обороны Российской ФеГерации'),
(75190, 63488, 'no_lang_code', 'name', 'Giproniiaviaprom'),
(75191, 63488, 'ru', 'name', 'Š“ŠøŠæŃ€Š¾ŠŠ˜Š˜Š°Š²ŠøŠ°ŠæŃ€Š¾Š¼'),
(75192, 63489, 'en', 'name', 'Shakhty Scientific Research and Design Coal Institute'),
(75193, 63489, 'ru', 'name', 'Шахтинский ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š£Š³Š¾Š»ŃŒŠ½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(75194, 63490, 'en', 'name', 'South-Russian State Polytechnic University named after MI Platov'),
(75195, 63491, 'no_lang_code', 'name', 'Roszheldorproject (Russia)'),
(75196, 63491, 'ru', 'name', 'РосжелГорпроект'),
(75197, 63492, 'en', 'name', 'Povolzhsky Research Institute of Ecological and Meliorative Technologies'),
(75198, 63492, 'ru', 'name', 'Волжский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³Š¾-мелиоративных технологий'),
(75199, 63493, 'en', 'name', 'All-Russian Scientific Research Institute of Agrochemistry named after D.N. Pryanishnikova'),
(75200, 63493, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”.Š.ŠŸŃ€ŃŠ½ŠøŃˆŠ½ŠøŠŗŠ¾Š²Š°'),
(75201, 63494, 'en', 'name', 'Krasnodar Higher Military School named after General of the Army S. Shtemenko'),
(75202, 63494, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ военное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ имени генерала армии Š”.М.Штеменко'),
(75203, 63495, 'en', 'name', 'Tatar Scientific Research Institute of Agriculture'),
(75204, 63495, 'ru', 'name', 'Татарский ŠŠ˜Š˜ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(75205, 63496, 'en', 'name', 'Siberian Research Institute of Agriculture and Peat'),
(75206, 63497, 'en', 'name', 'Siberian Scientific Research Institute of Oil Industry'),
(75207, 63498, 'en', 'name', 'Institute of Medical Cell Technologies'),
(75208, 63498, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинских клеточных технологий'),
(75209, 63499, 'en', 'name', 'Tula Artillery Engineering Institute'),
(75210, 63499, 'ru', 'name', 'Тульский артиллерийский инженерный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(75211, 63500, 'en', 'name', 'Siberian Research and Technological Institute for Processing Agricultural Products'),
(75212, 63500, 'ru', 'name', 'Š”ŠøŠ±ŠøŃ€ŃŠŗŠ¾Š¼Ńƒ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š¼Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ переработки ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŠæŃ€Š¾Š“ŃƒŠŗŃ†ŠøŠø'),
(75213, 63501, 'en', 'name', 'Air Force Academy named after Professor NE Zhukovsky and Yu.A. Gagarin'),
(75214, 63501, 'ru', 'name', 'Военно-Š²Š¾Š·Š“ŃƒŃˆŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени профессора Š. Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾ Šø Š®. А. Гагарина'),
(75215, 63502, 'en', 'name', 'Siberian State Order of the Red Banner of Labor Research Institute of Metrology'),
(75216, 63502, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный орГена Š¢Ń€ŃƒŠ“ового ŠšŃ€Š°ŃŠ½Š¾Š³Š¾ Знамени Š½Š°ŃƒŃ‡Š½Š¾- ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(75217, 63503, 'en', 'name', 'Scientific Research and Design Institute of Nitric Industry and Organic Synthesis Products'),
(75218, 63503, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ азотной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø Šø ŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š² органического синтеза'),
(75219, 63504, 'en', 'name', 'Nizhny Novgorod State University of Engineering and Economics'),
(75220, 63504, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ инженерно-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(75221, 63505, 'no_lang_code', 'name', 'Sibtsvetmetniiproekt'),
(75222, 63505, 'ru', 'name', 'Š”Š˜Š‘Š¦Š’Š•Š¢ŠœŠ•Š¢ŠŠ˜Š˜ŠŸŠ ŠžŠ•ŠšŠ¢'),
(75223, 63506, 'no_lang_code', 'name', 'OAO Giproniselprom (Russia)'),
(75224, 63507, 'no_lang_code', 'name', 'Institute Tsvetmetobrabotka'),
(75225, 63507, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Цветметобработка'),
(75226, 63508, 'ru', 'name', '"ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ¾Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°"'),
(75227, 63508, 'en', 'name', 'Kostroma Research Institute of Agriculture'),
(75228, 63509, 'en', 'name', 'Krasnoyarsk Research Institute of Animal Husbandry'),
(75229, 63509, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ животновоГства'),
(75230, 63510, 'en', 'name', 'Stavropol Research Institute of Agriculture'),
(75231, 63510, 'ru', 'name', 'Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠ¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(75232, 63511, 'en', 'name', 'Magadan Research Institute of Agriculture'),
(75233, 63511, 'ru', 'name', 'МагаГанский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(75234, 63512, 'en', 'name', 'Vilnius Higher Command School of Radioelectronics Air Defense'),
(75235, 63512, 'ru', 'name', 'Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠ¾Š³Š¾ Š²Ń‹ŃŃˆŠµŠ³Š¾ команГного ŃƒŃ‡ŠøŠ»ŠøŃ‰Š° Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø ŠŸŠ’Šž'),
(75236, 63513, 'en', 'name', 'Siberian Research Institute of Agricultural Economics'),
(75237, 63513, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Š”Š¤ŠŠ¦Š Š ŠŠ'),
(75238, 63514, 'en', 'name', 'Agrarian Science Center "Donskoy"'),
(75239, 63514, 'ru', 'name', 'Аграрный Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр «Донской»'),
(75240, 63515, 'no_lang_code', 'name', 'Giprokoks (Ukraine)'),
(75241, 63515, 'uk', 'name', 'Š“Š˜ŠŸŠ ŠžŠšŠžŠšŠ”'),
(75242, 63516, 'en', 'name', 'St. Petersburg Scientific Research Institute of Forestry'),
(75243, 63516, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лесного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(75244, 63517, 'en', 'name', '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'),
(75245, 63518, 'no_lang_code', 'name', 'Fundamentproekt (Russia)'),
(75246, 63518, 'ru', 'name', 'Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚ŠæŃ€Š¾ŠµŠŗŃ‚'),
(75247, 63519, 'en', 'name', 'Association of American Veterinary Medical Colleges'),
(75248, 63520, 'en', 'name', 'American Marketing Association'),
(75249, 63521, 'en', 'name', 'Mythopoeic Society'),
(75250, 63522, 'en', 'name', 'American Institute of Mining, Metallurgical, and Petroleum Engineers'),
(75251, 63523, 'en', 'name', 'American Association for Agricultural Education'),
(75252, 63524, 'en', 'name', 'Business History Conference'),
(75253, 63525, 'en', 'name', 'Smolensk Scientific Research Institute of Agriculture'),
(75254, 63525, 'ru', 'name', 'Дмоленский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(75255, 63526, 'en', 'name', 'Council of Scientific Society Presidents'),
(75256, 63527, 'en', 'name', 'Research Institute of Bakery Industry'),
(75257, 63527, 'ru', 'name', 'ŠŠ˜Š˜ хлебопекарной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(75258, 63528, 'en', 'name', 'Institute of Transportation Engineers'),
(75259, 63529, 'en', 'name', 'American College of Theriogenologists'),
(75260, 63530, 'en', 'name', 'Ural Scientific Research Veterinary Institute'),
(75261, 63530, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ветеринарный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(75262, 63531, 'no_lang_code', 'name', 'Giprotyumenneftegaz (Russia)'),
(75263, 63531, 'ru', 'name', 'Š“ŠøŠæŃ€Š¾Ń‚ŃŽŠ¼ŠµŠ½Š½ŠµŃ„Ń‚ŠµŠ³Š°Š·'),
(75264, 63532, 'en', 'name', 'Financial Management Association International'),
(75265, 63533, 'en', 'name', 'Institute of Navigation'),
(75266, 63534, 'en', 'name', 'Stavropol Research Institute of Animal Production and Feed Production'),
(75267, 63534, 'ru', 'name', 'Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ ŠŠ˜Š˜ животновоГства Šø кормопроизвоГства'),
(75268, 63535, 'en', 'name', 'National Academy of Inventors'),
(75269, 63536, 'en', 'name', 'Society for Personality Assessment'),
(75270, 63537, 'en', 'name', 'American Risk and Insurance Association'),
(75271, 63538, 'en', 'name', 'United States Association for Computational Mechanics'),
(75272, 63539, 'no_lang_code', 'name', 'Rosneft (Russia)'),
(75273, 63539, 'ru', 'name', 'Š Š¾ŃŠ½ŠµĢŃ„Ń‚ŃŒ'),
(75274, 63540, 'en', 'name', 'International Research Society for Public Management'),
(75275, 63541, 'en', 'name', 'Council of Educators in Landscape Architecture'),
(75276, 63542, 'en', 'name', 'Health Physics Society'),
(75277, 63543, 'en', 'name', 'Society of Naval Architects and Marine Engineers'),
(75278, 63544, 'en', 'name', 'The Folklore Society'),
(75279, 63545, 'en', 'name', 'Society for the Scientific Study of Sexuality'),
(75280, 63546, 'en', 'name', 'National Academy of Kinesiology'),
(75281, 63547, 'no_lang_code', 'name', 'SverdNIIhimmash'),
(75282, 63547, 'ru', 'name', 'ДверГловский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химического Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(75283, 63548, 'en', 'name', 'North American Society for Sport Management'),
(75284, 63549, 'no_lang_code', 'name', 'Energostal (Ukraine)'),
(75285, 63549, 'uk', 'name', 'Š£ŠšŠ ŠŠ˜ŠŠ”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š¢Š•Š„ŠŠ˜Š§Š•Š”ŠšŠ˜Š™ Š¦Š•ŠŠ¢Š  ŠœŠ•Š¢ŠŠ›Š›Š£Š Š“Š˜Š§Š•Š”ŠšŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(75286, 63550, 'en', 'name', 'American Medical Writers Association'),
(75287, 63551, 'en', 'name', 'National Council on Family Relations'),
(75288, 63552, 'en', 'name', 'State Scientific Research Institute of Biological Instrumentation'),
(75289, 63552, 'ru', 'name', 'Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š‘Š˜ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠžŠ“Šž ŠŸŠ Š˜Š‘ŠžŠ ŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ'),
(75290, 63553, 'en', 'name', 'National Women''s Studies Association'),
(75291, 63554, 'en', 'name', 'Jacobs Levy Equity Management'),
(75292, 63555, 'en', 'name', 'National Tax Association'),
(75293, 63556, 'en', 'name', 'Human Factors and Ergonomics Society'),
(75294, 63557, 'en', 'name', 'Women In Technology International'),
(75295, 63558, 'en', 'name', 'African Literature Association'),
(75296, 63559, 'en', 'name', 'Institute for Public Relations'),
(75297, 63560, 'en', 'name', 'Network of Schools of Public Policy, Affairs, and Administration'),
(75298, 63561, 'en', 'name', 'Yakut Scientific Research Institute of Agriculture'),
(75299, 63561, 'ru', 'name', 'ŠÆŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° имени М.Š“. Дафронова'),
(75300, 63562, 'no_lang_code', 'name', 'Siberian Research and Design Institute (Russia)'),
(75301, 63562, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(75302, 63563, 'no_lang_code', 'name', 'Stallergenes Greer (Australia)'),
(75303, 63564, 'en', 'name', 'Ivanovo State Agricultural Academy named after D.K. Belyaev'),
(75304, 63564, 'ru', 'name', 'Š˜Š²Š°Š½Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Š”.К. Š‘ŠµŠ»ŃŠµŠ²Š°'),
(75305, 63565, 'no_lang_code', 'name', 'Stallergenes Greer (Spain)'),
(75306, 63566, 'en', 'name', 'Federal Protective Service'),
(75307, 63566, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба охраны'),
(75308, 63567, 'en', 'name', 'Naval Academy named after Admiral of the Fleet of the Soviet Union NG Kuznetsov'),
(75309, 63567, 'ru', 'name', 'ŠœŠ¾Ń€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ им. АГмирала флота Доветского Š”Š¾ŃŽŠ·Š° Š. Š“. ŠšŃƒŠ·Š½ŠµŃ†Š¾Š²'),
(75310, 63568, 'en', 'name', 'Mikhailovsky Military Artillery Academy'),
(75311, 63568, 'ru', 'name', 'ŠœŠøŃ…Š°Š¹Š»Š¾Š²ŃŠŗŠ°Ń Š²Š¾ŠµŠ½Š½Š°Ń Š°Ń€Ń‚ŠøŠ»Š»ŠµŃ€ŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(75312, 63569, 'en', 'name', 'Federal Scientific Center for Agroecology, Integrated Land Reclamation and Protective Afforestation'),
(75313, 63570, 'en', 'name', 'KBP Instrument Design Bureau'),
(75314, 63570, 'ru', 'name', 'ŠšŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾Šµ Š±ŃŽŃ€Š¾ ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ им. акаГемика А. Š“. Шипунова'),
(75315, 63571, 'en', 'name', 'Military Academy of Communications named after Marshal of the Soviet Union SM Budennogo'),
(75316, 63571, 'ru', 'name', 'Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠ²ŃŠ·Šø имени ŠœŠ°Ń€ŃˆŠ°Š»Š° Доветского Š”Š¾ŃŽŠ·Š° Š”. М. Š‘ŃƒŠ“Ń‘Š½Š½Š¾Š³Š¾'),
(75317, 63572, 'en', 'name', 'Military Academy of Air-Space Defense named after Marshal of the Soviet Union GK Zhukov'),
(75318, 63572, 'ru', 'name', 'Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ возГушно-космической обороны имени Š¼Š°Ń€ŃˆŠ°Š»Š° Доветского Š”Š¾ŃŽŠ·Š° Š“.К. Š–ŃƒŠŗŠ¾Š²Š°'),
(75319, 63573, 'no_lang_code', 'name', 'Academician M.F. Reshetnev Information Satellite Systems (Russia)'),
(75320, 63573, 'ru', 'name', 'Ā«Š˜ŠŠ¤ŠžŠ ŠœŠŠ¦Š˜ŠžŠŠŠ«Š• Š”ŠŸŠ£Š¢ŠŠ˜ŠšŠžŠ’Š«Š• Š”Š˜Š”Š¢Š•ŠœŠ«Ā» имени акаГемика М.Ф. Š ŠµŃˆŠµŃ‚Š½Ń‘Š²Š°Ā»'),
(75321, 63574, 'en', 'name', 'Academician Pilyugin Center'),
(75322, 63574, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный центр автоматики Šø ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ имени акаГемика Š. А. ŠŸŠøŠ»ŃŽŠ³ŠøŠ½Š°'),
(75323, 63575, 'no_lang_code', 'name', 'Scientific and Production Association of Automatics named after Academician N.A.Semikhatov (Russia)'),
(75324, 63575, 'ru', 'name', 'ŠŠŸŠž автоматики имени акаГемика Š. А. Демихатова'),
(75325, 63576, 'en', 'name', 'Experimental Factory of Scientific Engineering and Special Design Department'),
(75326, 63576, 'ru', 'name', 'Š­ŠšŠ”ŠŸŠ•Š Š˜ŠœŠ•ŠŠ¢ŠŠ›Š¬ŠŠ«Š™ Š—ŠŠ’ŠžŠ” ŠŠŠ£Š§ŠŠžŠ“Šž ŠŸŠ Š˜Š‘ŠžŠ ŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ Š”Šž Š”ŠŸŠ•Š¦Š˜ŠŠ›Š¬ŠŠ«Šœ ŠšŠžŠŠ”Š¢Š Š£ŠšŠ¢ŠžŠ Š”ŠšŠ˜Šœ Š‘Š®Š Šž'),
(75327, 63577, 'en', 'name', 'Tatar Scientific Research Institute of Agrochemistry and Soil Science'),
(75328, 63577, 'ru', 'name', 'Татарский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ агрохимии Šø ŠæŠ¾Ń‡Š²Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ - обособленное ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€Š½Š¾Šµ поГразГеление Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Š³Š¾ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŃ науки'),
(75329, 63578, 'no_lang_code', 'name', 'Academician V.P.Makeyev State Rocket Centre (Russia)'),
(75330, 63578, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ракетный центр имени акаГемика Š’.П. Макеева'),
(75331, 63579, 'en', 'name', 'Combined Arms Academy of the Armed Forces of the Russian Federation'),
(75332, 63579, 'ru', 'name', 'ŠžŠ±Ń‰ŠµŠ²Š¾Š¹ŃŠŗŠ¾Š²Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š’Š¾Š¾Ń€ŃƒŠ¶Ń‘Š½Š½Ń‹Ń… Дил Российской ФеГерации'),
(75333, 63580, 'en', 'name', 'Computing Center'),
(75334, 63580, 'ru', 'name', 'Š’Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ центр'),
(75335, 63581, 'en', 'name', 'Special Design Bureau for Automation of Marine Research'),
(75336, 63581, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Š³Š¾ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŃ науки Š”ŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾Š³Š¾ Š±ŃŽŃ€Š¾ среГств автоматизации морских исслеГований Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(75337, 63582, 'en', 'name', 'Institute of Technology of Metals'),
(75338, 63582, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š˜ ŠœŠ•Š¢ŠŠ›Š›ŠžŠ’'),
(75339, 63583, 'no_lang_code', 'name', 'Coletex (Russia)'),
(75340, 63583, 'ru', 'name', 'ŠšŠ¾Š»ŠµŃ‚ŠµŠŗŃ'),
(75341, 63584, 'en', 'name', 'International Academy of Ecology, Human and Nature Safety'),
(75342, 63584, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук ŃŠŗŠ¾Š»Š¾Š³ŠøŠø, безопасности человека Šø прироГы'),
(75343, 63585, 'en', 'name', 'Military Academy of the Air Defense Forces Named after Marshal of the Soviet Union А.М. Vasilevsky'),
(75344, 63585, 'ru', 'name', 'Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š’Š¾Š·Š“ŃƒŃˆŠ½Š¾-Гесантных войск Š’Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½Š½Ń‹Ń… Дил Российской ФеГерации им. ŠœŠ°Ń€ŃˆŠ°Š»Š° Доветского Š”Š¾ŃŽŠ·Š° А.М. Василевский'),
(75345, 63586, 'no_lang_code', 'name', 'Zvezda (Russia)'),
(75346, 63586, 'ru', 'name', 'ЗвезГа'),
(75347, 63587, 'no_lang_code', 'name', 'NPO Energomash (Russia)'),
(75348, 63587, 'ru', 'name', 'ŠŠŸŠž Š­Š½ŠµŃ€Š³Š¾Š¼Š°Ńˆ'),
(75349, 63588, 'en', 'name', 'Children''s Scientific and Clinical Center for Infectious Diseases of the Federal Medical and Biological Agency'),
(75350, 63588, 'ru', 'name', 'Детский Š½Š°ŃƒŃ‡Š½Š¾-клинический центр инфекционных заболеваний Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(75351, 63589, 'en', 'name', 'Research Institute of Comprehensive Exploitation of Mineral Resources'),
(75352, 63589, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем комплексного Š¾ŃŠ²Š¾ŠµŠ½ŠøŃ неГр Š ŠŠ'),
(75353, 63590, 'en', 'name', 'Complex Scientific Research Institute. H.I. Ibrahimov'),
(75354, 63590, 'ru', 'name', 'ŠšŠ¾Š¼ŠæŠ»ŠµŠŗŃŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š„. И. Š˜Š±Ń€Š°Š³ŠøŠ¼Š¾Š²Š° Российской акаГемии наук'),
(75355, 63591, 'en', 'name', 'Russian Engineering Academy'),
(75356, 63591, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŠøŠ½Š¶ŠµŠ½ŠµŃ€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(75357, 63592, 'en', 'name', 'Military University'),
(75358, 63592, 'ru', 'name', 'Военный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(75359, 63593, 'en', 'name', 'Gansu Normal University for Nationalities'),
(75360, 63593, 'zh', 'name', 'ē”˜č‚ƒę°‘ę—åøˆčŒƒå­¦é™¢'),
(75361, 63594, 'no_lang_code', 'name', 'Guangdong Baiyun University'),
(75362, 63594, 'zh', 'name', 'ź“‘ė™ė°±ģš“ėŒ€ķ•™źµėŠ”'),
(75363, 63595, 'en', 'name', 'Hunan Radio and Television University'),
(75364, 63595, 'zh', 'name', 'ę¹–å—å¹æę’­ē”µč§†å¤§å­¦'),
(75365, 63596, 'en', 'name', 'Hunan International Economics University'),
(75366, 63596, 'zh', 'name', 'ę¹–å—ę¶‰å¤–ē»ęµŽå­¦é™¢'),
(75367, 63597, 'en', 'name', 'Liming Vocational University'),
(75368, 63597, 'zh', 'name', 'é»Žę˜ŽčŒäøšå¤§å­¦'),
(75369, 63598, 'en', 'name', 'City College of Dongguan University of Technology'),
(75370, 63598, 'zh', 'name', 'äøœčŽžē†å·„å­¦é™¢åŸŽåø‚å­¦é™¢'),
(75371, 63599, 'en', 'name', 'Luliang University'),
(75372, 63599, 'zh', 'name', '吕梁学院'),
(75373, 63600, 'en', 'name', 'Harbin Huade University'),
(75374, 63600, 'zh', 'name', 'å“ˆå°”ę»ØåŽå¾·å­¦é™¢'),
(75375, 63601, 'en', 'name', 'Jiangxi University of Technology'),
(75376, 63601, 'zh', 'name', 'ę±Ÿč„æē§‘ęŠ€å­¦é™¢'),
(75377, 63602, 'en', 'name', 'Minnan University of Science and Technology'),
(75378, 63603, 'en', 'name', 'Jingdezhen University'),
(75379, 63603, 'zh', 'name', '景德镇学院'),
(75380, 63604, 'en', 'name', 'Cangzhou Normal University'),
(75381, 63604, 'zh', 'name', 'ę²§å·žåøˆčŒƒå­¦é™¢'),
(75382, 63605, 'en', 'name', 'Heihe University'),
(75383, 63605, 'zh', 'name', '黑河学院'),
(75384, 63606, 'en', 'name', 'Heilongjiang Electric Power Workers University'),
(75385, 63606, 'zh', 'name', 'é»‘é¾™ę±Ÿē”µåŠ›čŒå·„å¤§å­¦'),
(75386, 63607, 'en', 'name', 'Jiujiang Vocational University'),
(75387, 63607, 'zh', 'name', 'ä¹ę±ŸčŒäøšå¤§å­¦'),
(75388, 63608, 'en', 'name', 'Jiyang College of Zhejiang A&F University'),
(75389, 63609, 'en', 'name', 'Heilongjiang International University'),
(75390, 63610, 'en', 'name', 'Henan Radio and Television University'),
(75391, 63610, 'zh', 'name', 'ę²³å—å¹æę’­ē”µč§†å¤§å­¦'),
(75392, 63611, 'en', 'name', 'Henan Forestry Vocational College'),
(75393, 63611, 'zh', 'name', 'ę²³å—ęž—äøščŒäøšå­¦é™¢'),
(75394, 63612, 'no_lang_code', 'name', 'Shandong Xiehe University'),
(75395, 63612, 'zh', 'name', 'å±±äøœåå’Œå­¦é™¢'),
(75396, 63613, 'en', 'name', 'TianjinSino-German University of Applied Sciences'),
(75397, 63613, 'zh', 'name', 'å¤©ę“„äø­å¾·åŗ”ē”ØęŠ€ęœÆå¤§å­¦'),
(75398, 63614, 'no_lang_code', 'name', 'Xi''an Peihua University'),
(75399, 63614, 'zh', 'name', 'č„æå®‰åŸ¹åŽå­¦é™¢'),
(75400, 63615, 'en', 'name', 'Xiamen Nanyang University'),
(75401, 63615, 'zh', 'name', 'åŽ¦é—Øå—ę“‹å­¦é™¢'),
(75402, 63616, 'en', 'name', 'Xiangyang Hospital of Traditional Chinese Medicine'),
(75403, 63616, 'zh', 'name', 'č„„é˜³äø­åŒ»åŒ»é™¢'),
(75404, 63617, 'en', 'name', 'Xi''an Aeronautical University'),
(75405, 63617, 'zh', 'name', 'č„æå®‰čˆŖē©ŗå­¦é™¢'),
(75406, 63618, 'en', 'name', 'Yangzhou Vocational University'),
(75407, 63618, 'zh', 'name', 'ę‰¬å·žåø‚čŒäøšå¤§å­¦'),
(75408, 63619, 'en', 'name', 'Yantai Nanshan University'),
(75409, 63619, 'zh', 'name', 'ēƒŸå°å—å±±å­¦é™¢'),
(75410, 63620, 'en', 'name', 'Yunnan Open University'),
(75411, 63620, 'zh', 'name', 'äŗ‘å—å¼€ę”¾å¤§å­¦'),
(75412, 63621, 'no_lang_code', 'name', 'Zhejiang Shangfeng Industry (China)'),
(75413, 63621, 'zh', 'name', 'ęµ™ę±ŸäøŠęµ·å·„äøš'),
(75414, 63622, 'en', 'name', 'Beijing Nonferrous Metals and Rare Earth Applications Institute'),
(75415, 63622, 'zh', 'name', 'åŒ—äŗ¬ęœ‰č‰²é‡‘å±žäøŽēØ€åœŸåŗ”ē”Øē ”ē©¶ę‰€'),
(75416, 63623, 'en', 'name', 'Beijing Institute of Nutritional Sources'),
(75417, 63623, 'zh', 'name', 'åŒ—äŗ¬åø‚č„å…»ęŗē ”ē©¶ę‰€'),
(75418, 63624, 'en', 'name', 'China Railway Fifth Survey and Design Institute Group'),
(75419, 63624, 'zh', 'name', 'äø­å›½é“č·Æē¬¬äŗ”å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢é›†å›¢'),
(75420, 63625, 'no_lang_code', 'name', 'Beijing Survey and Design Institute (China)'),
(75421, 63625, 'zh', 'name', 'åŒ—äŗ¬åø‚å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢ęœ‰é™'),
(75422, 63626, 'no_lang_code', 'name', 'China Railway Shanghai Design Institute Group (China)'),
(75423, 63626, 'zh', 'name', 'äø­é“äøŠęµ·č®¾č®”é™¢é›†å›¢'),
(75424, 63627, 'en', 'name', 'China International Engineering Design & Research Institute'),
(75425, 63627, 'zh', 'name', 'äø­ęœŗå›½é™…å·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(75426, 63628, 'en', 'name', 'Anhui Institute of Architectural Research and Design'),
(75427, 63629, 'no_lang_code', 'name', 'Beijing Railway Institute of Mechanical & Electrical Engineering Group (China)'),
(75428, 63629, 'zh', 'name', 'åŒ—äŗ¬é“é“å·„ēØ‹ęœŗē”µęŠ€ęœÆē ”ē©¶ę‰€č‚”ä»½ęœ‰é™å…¬'),
(75429, 63630, 'en', 'name', 'Anhui DingHeng Manufacturing Industry Technology Research Institute'),
(75430, 63630, 'zh', 'name', 'å®‰å¾½é¼Žę’åˆ¶é€ ęŠ€ęœÆē ”ē©¶é™¢'),
(75431, 63631, 'en', 'name', 'MCC Huatian Engineering and Technology Corporation'),
(75432, 63631, 'zh', 'name', 'äø­å†¶åŽå¤©å·„ēØ‹ęŠ€ęœÆå…¬åø'),
(75433, 63632, 'no_lang_code', 'name', 'Anhui Fuhuang Architectural Design Research (China)'),
(75434, 63633, 'en', 'name', 'Xi''an Railway Survey and Design Institute'),
(75435, 63633, 'zh', 'name', 'č„æå®‰é“č·Æå‹˜ęµ‹č®¾č®”é™¢'),
(75436, 63634, 'no_lang_code', 'name', 'China Mobile (China)'),
(75437, 63634, 'zh', 'name', 'äø­å›½ē§»åŠØ'),
(75438, 63635, 'no_lang_code', 'name', 'Anhui East China Institute of Optoelectronic Technology (China)'),
(75439, 63636, 'no_lang_code', 'name', 'Anhui Huizhou Geological Safety Research Institute (China)'),
(75440, 63637, 'no_lang_code', 'name', 'China Communications Construction Company (China)'),
(75441, 63637, 'zh', 'name', 'äø­å›½äŗ¤é€šå»ŗč®¾å…¬åø'),
(75442, 63638, 'en', 'name', 'Beijing Tianheng Pharmaceutical Research Institute'),
(75443, 63638, 'zh', 'name', 'åŒ—äŗ¬å¤©č””čÆē‰©ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75444, 63639, 'en', 'name', 'China Nonferrous Metals Changsha Investigation Design Institute'),
(75445, 63639, 'zh', 'name', 'äø­å›½ęœ‰č‰²é‡‘å±žé•æę²™å‹˜åÆŸč®¾č®”é™¢'),
(75446, 63640, 'en', 'name', 'China Special Equipment Inspection and Research Institute'),
(75447, 63640, 'zh', 'name', 'äø­å›½ē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(75448, 63641, 'en', 'name', 'Anhui Special Equipment Inspection Institute'),
(75449, 63642, 'no_lang_code', 'name', 'Anhui Transport Consulting & Design Institute (China)'),
(75450, 63642, 'zh', 'name', 'å®‰å¾½äŗ¤é€šå’ØčÆ¢č®¾č®”é™¢'),
(75451, 63643, 'no_lang_code', 'name', 'Anhui Provincial Urban Construction Design & Research Institute (China)'),
(75452, 63644, 'no_lang_code', 'name', 'China Datang Corporation (China)'),
(75453, 63644, 'zh', 'name', 'äø­å›½å¤§å”é›†å›¢ē§‘ęŠ€ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75454, 63645, 'no_lang_code', 'name', 'China General Nuclear Power Corporation (China)'),
(75455, 63645, 'zh', 'name', '中国广核集团'),
(75456, 63646, 'en', 'name', 'China Communications Tianjin Port Exploration & Design Institute'),
(75457, 63646, 'zh', 'name', 'äø­äŗ¤å¤©å’Œęœŗę¢°č®¾å¤‡åˆ¶é€ '),
(75458, 63647, 'no_lang_code', 'name', 'China International Marine Containers (China)'),
(75459, 63647, 'zh', 'name', '中国国际海运集装箱'),
(75460, 63648, 'no_lang_code', 'name', 'CCCC Wuhan Harbour Engineering Design and Research (China)'),
(75461, 63648, 'zh', 'name', '中交武汉港湾巄程设讔研究院'),
(75462, 63649, 'no_lang_code', 'name', 'South China Municipal Engineering Design and Research Institute (China)'),
(75463, 63649, 'zh', 'name', 'äø­å›½åø‚ę”æå·„ēØ‹äø­å—č®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬'),
(75464, 63650, 'no_lang_code', 'name', 'China State Shipbuilding (China)'),
(75465, 63650, 'zh', 'name', 'äø­å›½čˆ¹čˆ¶å·„äøšé›†å›¢å…¬åø'),
(75466, 63651, 'en', 'name', 'China National Petroleum and Chemical Planning Institute'),
(75467, 63651, 'zh', 'name', 'ēŸ³ę²¹å’ŒåŒ–å­¦å·„äøšč§„åˆ’é™¢'),
(75468, 63652, 'no_lang_code', 'name', 'Changchun Municipal Engineering Design and Research Institute (China)'),
(75469, 63652, 'zh', 'name', 'é•æę˜„åø‚åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢ č”ē³»ē”µčÆ'),
(75470, 63653, 'no_lang_code', 'name', 'HeidelbergCement (Italy)'),
(75471, 63654, 'en', 'name', 'Changjiang Institute of Survey, Planning, Design and Research'),
(75472, 63654, 'zh', 'name', 'é•æę±Ÿå‹˜ęµ‹č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(75473, 63655, 'en', 'name', 'Russian Union of Refrigeration Enterprises'),
(75474, 63655, 'ru', 'name', 'Российский ŃŠ¾ŃŽŠ· ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠ¹ Ń…Š¾Š»Š¾Š“ŠøŠ»ŃŒŠ½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(75475, 63656, 'en', 'name', 'Institute of Advanced Manufacturing Technology'),
(75476, 63657, 'no_lang_code', 'name', 'First Automotive Works (China)'),
(75477, 63658, 'en', 'name', 'Beijing Agricultural Machinery Research Institute'),
(75478, 63658, 'zh', 'name', 'åŒ—äŗ¬åø‚å†œäøšęœŗę¢°ē ”ē©¶ę‰€'),
(75479, 63659, 'en', 'name', 'Chongqing Metrology Quality Inspection and Research Institute'),
(75480, 63659, 'zh', 'name', 'é‡åŗ†åø‚č®”é‡č“Øé‡ę£€ęµ‹ē ”ē©¶é™¢'),
(75481, 63660, 'no_lang_code', 'name', 'Changzhou Institute of Printed Electronics Industry'),
(75482, 63660, 'zh', 'name', 'åøøå·žå°åˆ·ē”µå­äŗ§äøšē ”ē©¶é™¢é”µ'),
(75483, 63661, 'en', 'name', 'Changzhou Institute of Mechatronic Technology'),
(75484, 63661, 'zh', 'name', 'åøøå·žęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(75485, 63662, 'no_lang_code', 'name', 'Beijing Building Construction Research Institute (China)'),
(75486, 63662, 'zh', 'name', 'åŒ—äŗ¬å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75487, 63663, 'no_lang_code', 'name', 'Chengdu Design & Research Institute of Building Materials Industry (China)'),
(75488, 63663, 'zh', 'name', 'ęˆéƒ½å»ŗē­‘ęę–™å·„äøšč®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬'),
(75489, 63664, 'no_lang_code', 'name', 'Beijing Automotive Group (China)'),
(75490, 63664, 'zh', 'name', 'åŒ—äŗ¬ę±½č½¦å·„äøšęŽ§č‚”ęœ‰é™č“£ä»»å…¬åø'),
(75491, 63665, 'no_lang_code', 'name', 'CCCC Highway Consultants (China)'),
(75492, 63665, 'zh', 'name', 'äø­äŗ¤å…¬č·Æč§„åˆ’č®¾č®”é™¢ęœ‰é™å…¬åø'),
(75493, 63666, 'en', 'name', 'Chengdu Pump Application Technology Research Institute'),
(75494, 63667, 'en', 'name', 'China Household Electrical Appliances Research Institute'),
(75495, 63667, 'zh', 'name', '中国家用电器研究院'),
(75496, 63668, 'no_lang_code', 'name', 'Vanke (China)'),
(75497, 63668, 'zh', 'name', '萬科'),
(75498, 63669, 'no_lang_code', 'name', 'Hefei Design and Research Institute of Coal Industry (China)'),
(75499, 63669, 'zh', 'name', 'ē…¤ē‚­å·„äøšåˆč‚„č®¾č®”ē ”ē©¶é™¢'),
(75500, 63670, 'en', 'name', 'China Railway Economic and Planning Research Institute'),
(75501, 63670, 'zh', 'name', 'äø­å›½é“č·Æē»ęµŽäøŽč§„åˆ’ē ”ē©¶é™¢'),
(75502, 63671, 'en', 'name', 'China Railway Construction Machinery Research & Design Institute'),
(75503, 63671, 'zh', 'name', 'äø­é“å·„ēØ‹ęœŗę¢°ē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åøé™¢ē®€ä»‹'),
(75504, 63672, 'no_lang_code', 'name', 'Toray (China)'),
(75505, 63672, 'zh', 'name', '东丽'),
(75506, 63673, 'no_lang_code', 'name', 'China Railway Construction Corporation (China)'),
(75507, 63673, 'zh', 'name', 'äø­å›½é“č·Æå»ŗč®¾ę€»å…¬åø'),
(75508, 63674, 'en', 'name', 'Beijing Jingshida Electromechanical Equipment Research Institute'),
(75509, 63674, 'zh', 'name', 'åŒ—äŗ¬åø‚č­¦č§†č¾¾ęœŗē”µč®¾å¤‡ē ”ē©¶ę‰€ęœ‰é™'),
(75510, 63675, 'no_lang_code', 'name', 'China Railway Major Bridge Reconnaissance & Design Institute (China)'),
(75511, 63675, 'zh', 'name', 'äø­å›½é“č·Æå¤§ę”„å‹˜åÆŸč®¾č®”é™¢'),
(75512, 63676, 'en', 'name', 'Guangdong Testing Institute for Product Quality Supervision'),
(75513, 63676, 'zh', 'name', 'å¹æäøœēœäŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒē ”ē©¶é™¢'),
(75514, 63677, 'en', 'name', 'Guangzhou Urban Planning Survey & Design Institute'),
(75515, 63677, 'zh', 'name', 'å¹æå·žåø‚åŸŽåø‚č§„åˆ’å‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢'),
(75516, 63678, 'en', 'name', 'Guangdong Institute of Rare Metals'),
(75517, 63679, 'en', 'name', 'Harbin Liushun Electric Automation Design Institute'),
(75518, 63679, 'zh', 'name', 'å“ˆå°”ę»Øåø‚å…­é”ŗē”µę°”č‡ŖåŠØåŒ–č®¾č®”ē ”ē©¶ę‰€'),
(75519, 63680, 'en', 'name', 'Guangdong Southern Telecommunication Planning Consulting & Design Institute'),
(75520, 63680, 'zh', 'name', 'å¹æäøœå—ę–¹ē”µäæ”č§„åˆ’å’ØčÆ¢č®¾č®”é™¢ęœ‰é™å…¬åø'),
(75521, 63681, 'no_lang_code', 'name', 'Beijing Municipal Engineering Design and Research Institute (China)'),
(75522, 63681, 'zh', 'name', 'åŒ—äŗ¬åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(75523, 63682, 'en', 'name', 'Guangdong Province Special Equipment Testing and Research Institute Zhuhai Testing Institute'),
(75524, 63682, 'zh', 'name', 'å¹æäøœēœē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢ē ęµ·ę£€ęµ‹é™¢'),
(75525, 63683, 'en', 'name', 'Yantai Academy of Agricultural Sciences'),
(75526, 63683, 'zh', 'name', 'ēƒŸå°å†œäøšē§‘å­¦é™¢'),
(75527, 63684, 'no_lang_code', 'name', 'Guangdong Taibao Medical Technology (China)'),
(75528, 63684, 'zh', 'name', 'å¹æäøœę³°å®åŒ»ē–—ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(75529, 63685, 'en', 'name', 'Beijing Institute of Neurosurgery'),
(75530, 63686, 'en', 'name', 'Hunan Coal Science Research Institute'),
(75531, 63686, 'zh', 'name', 'ę¹–å—ēœē…¤ē‚­ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75532, 63687, 'en', 'name', 'Guangdong Research Institute of Water Resources and Hydropower'),
(75533, 63687, 'zh', 'name', 'å¹æäøœēœę°“åˆ©ę°“ē”µē§‘å­¦ē ”ē©¶é™¢'),
(75534, 63688, 'en', 'name', 'Guangdong Province Welding Technology Institute'),
(75535, 63689, 'en', 'name', 'Hunan Nonferrous Metal Research Institute'),
(75536, 63689, 'zh', 'name', 'ę¹–å—ęœ‰č‰²é‡‘å±žē ”ē©¶é™¢åˆ›å»ŗ'),
(75537, 63690, 'no_lang_code', 'name', 'Sanhua Holding Group (China)'),
(75538, 63690, 'zh', 'name', 'äø‰åŽęŽ§č‚”é›†å›¢'),
(75539, 63691, 'en', 'name', 'Guangdong Institute of New Materials'),
(75540, 63691, 'zh', 'name', 'å¹æäøœēœę–°ęę–™ē ”ē©¶ę‰€'),
(75541, 63692, 'en', 'name', 'Hunan Institute of Nuclear Agronomy and Space Breeding'),
(75542, 63692, 'zh', 'name', 'ę¹–å—ēœę øå†œå­¦äøŽčˆŖå¤©č‚²ē§ē ”ē©¶ę‰€'),
(75543, 63693, 'en', 'name', 'Hangzhou Quality and Technical Supervision and Testing Institute'),
(75544, 63693, 'zh', 'name', 'ę­å·žåø‚č“Øé‡ęŠ€ęœÆē›‘ē£ę£€ęµ‹é™¢'),
(75545, 63694, 'no_lang_code', 'name', 'Jinan Foundry and Metalforming Machinery Research Institute (China)'),
(75546, 63694, 'zh', 'name', 'ęµŽå—é“øé€ é”»åŽ‹ęœŗę¢°ē ”ē©¶ę‰€'),
(75547, 63695, 'en', 'name', 'Harbin FRP Research Institute'),
(75548, 63695, 'zh', 'name', 'å“ˆå°”ę»ØēŽ»ē’ƒé’¢ē ”ē©¶é™¢'),
(75549, 63696, 'en', 'name', 'Jinhua Academy of Agricultural Sciences'),
(75550, 63697, 'en', 'name', 'Hunan Rare Earth Metal Material Research Institute'),
(75551, 63697, 'zh', 'name', 'ę¹–å—ēØ€åœŸé‡‘å±žęę–™ē ”ē©¶ę‰€'),
(75552, 63698, 'en', 'name', 'Soil and Fertilizer Institute of Hunan Province'),
(75553, 63698, 'zh', 'name', 'ę¹–å—ēœåœŸå£¤č‚„ę–™ē ”ē©¶ę‰€ęˆ'),
(75554, 63699, 'en', 'name', 'Jurong Jinghou Machinery Research Institute'),
(75555, 63699, 'zh', 'name', 'å„å®¹äŗ¬ä¾Æęœŗę¢°ē ”ē©¶ę‰€'),
(75556, 63700, 'no_lang_code', 'name', 'Yonker Environmental Protection (China)'),
(75557, 63700, 'zh', 'name', 'ę°øęø…ēŽÆäæč‚”ä»½ęœ‰é™å…¬åø'),
(75558, 63701, 'no_lang_code', 'name', 'Foshan Ceramics Research Institute (China)'),
(75559, 63701, 'zh', 'name', 'ä½›å±±åø‚é™¶ē“·ē ”ē©¶ę‰€ęœ‰é™'),
(75560, 63702, 'en', 'name', 'Guangxi Machinery Industry Research Institute'),
(75561, 63703, 'en', 'name', 'Hunan Institute of Energy Storage Materials and Devices'),
(75562, 63703, 'zh', 'name', 'ę¹–å—ēœå‚Øčƒ½ęę–™äøŽå™Øä»¶ē ”ē©¶ę‰€'),
(75563, 63704, 'en', 'name', 'Kunshan Industrial Technology Research Institute'),
(75564, 63704, 'zh', 'name', 'ę˜†å±±åø‚å·„äøšęŠ€ęœÆē ”ē©¶é™¢'),
(75565, 63705, 'no_lang_code', 'name', 'Lanzhou Nonferrous Metals Design and Research Institute (China)'),
(75566, 63706, 'en', 'name', 'Hefei Urban Planning & Design Institute'),
(75567, 63706, 'zh', 'name', 'åˆč‚„åø‚č§„åˆ’č®¾č®”é™¢'),
(75568, 63707, 'en', 'name', 'Guangxi Transportation Research Institute'),
(75569, 63707, 'zh', 'name', 'å¹æč„æäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢');
INSERT INTO `ror_settings` VALUES
(75570, 63708, 'en', 'name', 'Heilongjiang Academy of Agricultural Machinery Engineering'),
(75571, 63708, 'zh', 'name', 'é»‘é¾™ę±Ÿēœå†œäøšęœŗę¢°å·„ēØ‹ē§‘å­¦ē ”ē©¶é™¢'),
(75572, 63709, 'en', 'name', 'Liaoning Provincial Institute of Agricultural Mechanization'),
(75573, 63709, 'zh', 'name', 'č¾½å®ēœå†œäøšęœŗę¢°åŒ–ē ”ē©¶ę‰€'),
(75574, 63710, 'en', 'name', 'Fujian Fisheries Research Institute'),
(75575, 63710, 'zh', 'name', 'ē¦å»ŗēœę°“äŗ§ē ”ē©¶ę‰€'),
(75576, 63711, 'en', 'name', 'The Third Affiliated Hospital of Zhejiang Chinese Medical University'),
(75577, 63711, 'zh', 'name', 'ęµ™ę±Ÿäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äø‰åŒ»é™¢čŽ«'),
(75578, 63712, 'en', 'name', 'All-Russian Scientific Research Institute of Confectionery Industry'),
(75579, 63712, 'ru', 'name', 'Š¤Š“Š‘ŠŠ£ Всероссийский ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŠ¾Š½Š“ŠøŃ‚ŠµŃ€ŃŠŗŠ¾Š¹ ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(75580, 63713, 'en', 'name', 'Samara Academy of State and Municipal Management'),
(75581, 63713, 'ru', 'name', 'Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Šø Š¼ŃƒŠ½ŠøŃ†ŠøŠæŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(75582, 63714, 'en', 'name', 'Fujian Electric Power Survey & Design Institute'),
(75583, 63714, 'zh', 'name', 'ē¦å»ŗēœē”µåŠ›å‹˜ęµ‹č®¾č®”é™¢'),
(75584, 63715, 'no_lang_code', 'name', 'Guangzhou Academy of Building Research (China)'),
(75585, 63716, 'en', 'name', 'Lishui Academy of Agricultural Sciences'),
(75586, 63717, 'en', 'name', 'Liuzhou Institute of Automation Science'),
(75587, 63718, 'no_lang_code', 'name', 'Inner Mongolia Electric Power Survey & Design Institute (China)'),
(75588, 63718, 'zh', 'name', 'å†…č’™å¤ē”µåŠ›å‹˜ęµ‹č®¾č®”é™¢'),
(75589, 63719, 'en', 'name', 'Gansu Great Wall Electrical and Electronics Engineering Research Institute'),
(75590, 63719, 'zh', 'name', 'ē”˜č‚ƒé•æåŸŽē”µå·„ē”µå™Øå·„ēØ‹ē ”ē©¶é™¢'),
(75591, 63720, 'en', 'name', 'Guangzhou Institute of Applied Software Technology, Chinese Academy of Sciences'),
(75592, 63720, 'zh', 'name', 'å¹æå·žäø­å›½ē§‘å­¦é™¢č½Æä»¶åŗ”ē”ØęŠ€ęœÆē ”ē©¶ę‰€'),
(75593, 63721, 'en', 'name', 'Heilongjiang Provincial Institute of Hydraulic Research'),
(75594, 63721, 'zh', 'name', 'é»‘é¾™ę±Ÿēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(75595, 63722, 'en', 'name', 'Guangzhou Research Institute of Synthetic Materials'),
(75596, 63723, 'en', 'name', 'Gansu Academy of Machinery Science'),
(75597, 63723, 'zh', 'name', 'ē”˜č‚ƒēœęœŗę¢°ē§‘å­¦ē ”ē©¶é™¢'),
(75598, 63724, 'no_lang_code', 'name', 'Henan Energy & Chemical Industry Group (China)'),
(75599, 63724, 'zh', 'name', 'ę²³å—čƒ½ęŗåŒ–å·„é›†å›¢ęœ‰é™å…¬åø'),
(75600, 63725, 'no_lang_code', 'name', 'Sehenstar Energy Technology (China)'),
(75601, 63725, 'zh', 'name', 'č‹å·žåå®ę³°čŠ‚čƒ½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(75602, 63726, 'en', 'name', 'Henan Province Quality and Technical Supervision Bureau'),
(75603, 63726, 'zh', 'name', 'ę²³å—ēœč“Øé‡ęŠ€ęœÆē›‘ē£å±€'),
(75604, 63727, 'no_lang_code', 'name', 'CITIC Group (China)'),
(75605, 63728, 'en', 'name', 'Guangzhou Fiber Products Inspection and Research Institute'),
(75606, 63728, 'zh', 'name', 'å¹æå·žēŗ¤ē»“äŗ§å“ę£€ęµ‹ē ”ē©¶é™¢'),
(75607, 63729, 'no_lang_code', 'name', 'SCIVIC Engineering Corporation (China)'),
(75608, 63729, 'zh', 'name', 'ęœŗę¢°å·„äøšē¬¬å››č®¾č®”ē ”ē©¶é™¢'),
(75609, 63730, 'en', 'name', 'Henan Province Water Conservancy Survey and Design Research'),
(75610, 63730, 'zh', 'name', 'ę²³å—ēœę°“åˆ©å‹˜ęµ‹č®¾č®”ē ”ē©¶ęœ‰é™å…¬åø'),
(75611, 63731, 'en', 'name', 'State-owned Assets Supervision and Administration Commission of the State Council'),
(75612, 63731, 'zh', 'name', 'å›½åŠ”é™¢å›½ęœ‰čµ„äŗ§ē›‘ē£ē®”ē†å§”å‘˜ä¼š'),
(75613, 63732, 'en', 'name', 'Guangzhou Institute of Mechanical Design'),
(75614, 63732, 'zh', 'name', 'å¹æå·žęœŗę¢°č®¾č®”ē ”ē©¶ę‰€ē®€ä»‹'),
(75615, 63733, 'no_lang_code', 'name', 'Guangzhou Mechanical Engineering Research Institute (China)'),
(75616, 63733, 'zh', 'name', 'å¹æå·žęœŗę¢°ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75617, 63734, 'no_lang_code', 'name', 'Guangzhou Metro Group (China)'),
(75618, 63735, 'no_lang_code', 'name', 'Chunlan (China)'),
(75619, 63735, 'zh', 'name', 'ę˜„å…°'),
(75620, 63736, 'en', 'name', 'Jiangsu Provincial Urban Planning and Design Institute'),
(75621, 63736, 'zh', 'name', 'ę±Ÿč‹ēœåŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢ęˆ'),
(75622, 63737, 'en', 'name', 'South China Robotics Innovative Research Institute'),
(75623, 63737, 'zh', 'name', 'å—åŽęœŗå™Øäŗŗåˆ›ę–°ē ”ē©¶é™¢'),
(75624, 63738, 'en', 'name', 'Guangdong Provincial Architectural Design and Research Institute'),
(75625, 63738, 'zh', 'name', 'å¹æäøœēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(75626, 63739, 'en', 'name', 'Guilin Electrical Equipment Research Institute'),
(75627, 63739, 'zh', 'name', 'ę”‚ęž—ē”µå™Øē§‘å­¦ē ”ē©¶é™¢ęœ‰é™'),
(75628, 63740, 'no_lang_code', 'name', 'Jiangsu Institute of Ecomones (China)'),
(75629, 63740, 'zh', 'name', 'ę±Ÿč‹ēœęæ€ē“ ē ”ē©¶ę‰€'),
(75630, 63741, 'no_lang_code', 'name', 'China Aluminum International Engineering Corporation Limited (China)'),
(75631, 63741, 'zh', 'name', 'äø­å›½é“äøšå›½é™…å·„ēØ‹ęœ‰é™å…¬åø'),
(75632, 63742, 'en', 'name', 'Jiangsu Vocational Institute of Commerce'),
(75633, 63742, 'zh', 'name', 'ę±Ÿč‹ē»č“øčŒäøšęŠ€ęœÆå­¦é™¢'),
(75634, 63743, 'no_lang_code', 'name', 'Guizhou Aerospace Power Science & Tech (China)'),
(75635, 63743, 'zh', 'name', 'č“µå·žčˆŖå¤©åŠØåŠ›ęŠ€ęœÆ'),
(75636, 63744, 'en', 'name', 'Hunan Provincial Agricultural Machinery Authority'),
(75637, 63744, 'zh', 'name', 'ę¹–å—ēœå†œäøšęœŗę¢°ē®”ē†å±€'),
(75638, 63745, 'en', 'name', 'Guangdong Institute of Intelligent Manufacturing'),
(75639, 63745, 'zh', 'name', 'å¹æäøœēœę™ŗčƒ½åˆ¶é€ ē ”ē©¶ę‰€ęˆ'),
(75640, 63746, 'en', 'name', 'Jiangsu Industry Technology Research Institute'),
(75641, 63746, 'zh', 'name', 'ę±Ÿč‹å·„äøšęŠ€ęœÆē ”ē©¶é™¢'),
(75642, 63747, 'no_lang_code', 'name', 'Kangmei Pharmaceutical (China)'),
(75643, 63747, 'zh', 'name', 'åŗ·ē¾ŽčÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(75644, 63748, 'en', 'name', 'Jiangsu Institute of Metrology'),
(75645, 63748, 'zh', 'name', 'ę±Ÿč‹ēœč®”é‡ē§‘å­¦ē ”ē©¶é™¢'),
(75646, 63749, 'no_lang_code', 'name', 'Jiangsu Province Metallurgical Design Institute (China)'),
(75647, 63749, 'zh', 'name', 'ę±Ÿč‹ēœå†¶é‡‘č®¾č®”é™¢ęœ‰é™å…¬åø'),
(75648, 63750, 'en', 'name', 'Transnational University Limburg'),
(75649, 63751, 'no_lang_code', 'name', 'Jiangsu Provincial Posts & Telecommunications Planning & Design Institute (China)'),
(75650, 63751, 'zh', 'name', 'ę±Ÿč‹ēœé‚®ē”µč§„åˆ’č®¾č®”é™¢ęœ‰é™č“£ä»»å…¬åø'),
(75651, 63752, 'en', 'name', 'Guizhou Institute of Biology'),
(75652, 63752, 'zh', 'name', 'č“µå·žēœē”Ÿē‰©ē ”ē©¶ę‰€'),
(75653, 63753, 'no_lang_code', 'name', 'Jiangsu Radio Scientific Research Institute (China)'),
(75654, 63753, 'zh', 'name', 'ę±Ÿč‹ēœę— ēŗæē”µē§‘å­¦ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(75655, 63754, 'no_lang_code', 'name', 'Daqo (China)'),
(75656, 63754, 'zh', 'name', '大全'),
(75657, 63755, 'en', 'name', 'Guizhou Electric Power Design and Research Institute'),
(75658, 63755, 'zh', 'name', 'č“µå·žē”µåŠ›č®¾č®”ē ”ē©¶é™¢'),
(75659, 63756, 'no_lang_code', 'name', 'Sixin (China)'),
(75660, 63757, 'en', 'name', 'Nanjing Architecture Design and Research Institute'),
(75661, 63757, 'zh', 'name', 'å—äŗ¬åø‚å»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(75662, 63758, 'en', 'name', 'Nanjing Institute of Railway Technology'),
(75663, 63759, 'no_lang_code', 'name', 'Zonhon Biopharma Institute'),
(75664, 63759, 'zh', 'name', 'ę±Ÿč‹ä¼—ēŗ¢ē”Ÿē‰©å·„ēØ‹åˆ›čÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75665, 63760, 'en', 'name', 'Guizhou Water Conservancy and Hydropower Survey and Design Institute'),
(75666, 63760, 'zh', 'name', 'č“µå·žę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”é™¢'),
(75667, 63761, 'en', 'name', 'Jiangxi Fisheries Research Institute'),
(75668, 63761, 'zh', 'name', 'ę±Ÿč„æēœę°“äŗ§ē§‘å­¦ē ”ē©¶ę‰€'),
(75669, 63762, 'no_lang_code', 'name', 'Beijing Enterprises Water Group (China)'),
(75670, 63763, 'no_lang_code', 'name', 'Nanjing Surveying and Mapping Research Institute (China)'),
(75671, 63763, 'zh', 'name', 'å—äŗ¬åø‚ęµ‹ē»˜å‹˜åÆŸē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(75672, 63764, 'en', 'name', 'Newford Research Institute of Advanced Technology'),
(75673, 63764, 'zh', 'name', 'ēŗ½ē¦å¾·å…ˆčæ›ęŠ€ęœÆē ”ē©¶ę‰€'),
(75674, 63765, 'no_lang_code', 'name', 'Jiangyin Traffic Planning Survey & Design Institute (China)'),
(75675, 63765, 'zh', 'name', 'ę±Ÿé˜“åø‚äŗ¤é€šč§„åˆ’å‹˜åÆŸč®¾č®”é™¢ęœ‰é™å…¬åøå‰'),
(75676, 63766, 'en', 'name', 'Guodian Institute of Science and Technology'),
(75677, 63766, 'zh', 'name', 'å›½ē”µē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(75678, 63767, 'en', 'name', 'Ningbo Entry-Exit Inspection And Quarantine Bureau'),
(75679, 63767, 'zh', 'name', 'å®ę³¢å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(75680, 63768, 'en', 'name', 'Jiaxing Hengchuang Electric Design and Research Institute'),
(75681, 63768, 'zh', 'name', 'å˜‰å…“ę’åˆ›ē”µåŠ›č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åøę˜Žē»˜åˆ†å…¬'),
(75682, 63769, 'en', 'name', 'Ningbo Intelligent Manufacturing Industry Research Institute'),
(75683, 63769, 'zh', 'name', 'å®ę³¢ę™ŗčƒ½åˆ¶é€ äøšē ”ē©¶ę‰€'),
(75684, 63770, 'no_lang_code', 'name', 'Jilin Electric Power Research Institute (China)'),
(75685, 63770, 'zh', 'name', 'å‰ęž—ēœē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75686, 63771, 'no_lang_code', 'name', 'PowerChina (China)'),
(75687, 63771, 'zh', 'name', 'äø­å›½ē”µåŠ›å»ŗč®¾é›†å›¢å…¬åø'),
(75688, 63772, 'en', 'name', 'Qinhuangdao Audio-Visual Machinery Research Institute'),
(75689, 63772, 'zh', 'name', 'ē§¦ēš‡å²›č§†å¬ęœŗę¢°ē ”ē©¶ę‰€'),
(75690, 63773, 'no_lang_code', 'name', 'Qinhuangdao Glass Industry Research and Design Institute (China)'),
(75691, 63773, 'zh', 'name', 'ē§¦ēš‡å²›ēŽ»ē’ƒå·„äøšē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åø'),
(75692, 63774, 'en', 'name', 'Northwest Institute of Mining and Metallurgy'),
(75693, 63774, 'zh', 'name', 'č„æåŒ—ēŸæå†¶ē ”ē©¶é™¢'),
(75694, 63775, 'en', 'name', 'Shanghai Light Industry Research Institute'),
(75695, 63775, 'zh', 'name', 'äøŠęµ·č½»å·„äøšē ”ē©¶é™¢'),
(75696, 63776, 'en', 'name', 'Institute of Nuclear Power Operations'),
(75697, 63777, 'en', 'name', 'Sichuan Food Fermentation Industry Research and Design Institute'),
(75698, 63777, 'zh', 'name', 'å››å·ēœé£Ÿå“å‘é…µå·„äøšē ”ē©¶č®¾č®”é™¢'),
(75699, 63778, 'no_lang_code', 'name', 'Kelun Group (China)'),
(75700, 63778, 'zh', 'name', 'å››å·ē§‘ä¼¦čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(75701, 63779, 'en', 'name', 'Shaanxi Coal Chemical Industry Technology Research Institute'),
(75702, 63779, 'zh', 'name', 'é™•č„æē…¤äøšåŒ–å·„ęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(75703, 63780, 'no_lang_code', 'name', 'Shanghai Construction Group (China)'),
(75704, 63780, 'zh', 'name', 'äøŠęµ·å»ŗå·„é›†å›¢'),
(75705, 63781, 'en', 'name', 'Sichuan Highway Design and Research Institute'),
(75706, 63781, 'zh', 'name', 'å››å·ēœäŗ¤é€ščæč¾“åŽ…å…¬č·Æč§„åˆ’å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢'),
(75707, 63782, 'en', 'name', 'Sichuan Institute of Building Research'),
(75708, 63782, 'zh', 'name', 'å››å·ēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(75709, 63783, 'en', 'name', 'Shaanxi Research Design Institute of Petroleum and Chemical Industry'),
(75710, 63783, 'zh', 'name', 'é™•č„æēœēŸ³ę²¹åŒ–å·„ē ”ē©¶č®¾č®”é™¢'),
(75711, 63784, 'en', 'name', 'Shanghai Power Equipment Research Institute'),
(75712, 63784, 'zh', 'name', 'äøŠęµ·ē”µåŠ›č®¾å¤‡ē ”ē©¶é™¢'),
(75713, 63785, 'en', 'name', 'Hefei Institute of Technology Innovation'),
(75714, 63786, 'en', 'name', 'Guangxi South Subtropical Agricultural Research Institute'),
(75715, 63786, 'zh', 'name', 'å¹æč„æå—äŗšēƒ­åø¦å†œäøšē§‘å­¦ē ”ē©¶ę‰€'),
(75716, 63787, 'en', 'name', 'Laser Research Institute'),
(75717, 63787, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢ęæ€å…‰ē ”ē©¶ę‰€'),
(75718, 63788, 'en', 'name', 'Shanghai Shipbuilding Technology Research Institute'),
(75719, 63788, 'zh', 'name', 'äøŠęµ·é€ čˆ¹ęŠ€ęœÆē ”ē©¶é™¢'),
(75720, 63789, 'en', 'name', 'Shandong Academy of Agricultural Machinery Sciences'),
(75721, 63789, 'zh', 'name', 'å±±äøœēœå†œäøšęœŗę¢°ē§‘å­¦ē ”ē©¶é™¢å§‹'),
(75722, 63790, 'en', 'name', 'People''s Bank of China'),
(75723, 63790, 'zh', 'name', 'äø­å›½äŗŗę°‘é“¶č”Œ'),
(75724, 63791, 'en', 'name', 'Shanghai Special Equipment Supervision and Inspection Institute'),
(75725, 63791, 'zh', 'name', 'äøŠęµ·ē‰¹ē§č®¾å¤‡ę£€ęµ‹ęŠ€ęœÆē ”ē©¶é™¢'),
(75726, 63792, 'en', 'name', 'Wenzhou Institute of Technology Testing & Calibration'),
(75727, 63792, 'zh', 'name', 'ęø©å·žē†å·„å­¦é™¢ęµ‹čÆ•äøŽę ”å‡†'),
(75728, 63793, 'en', 'name', 'Shanghai Fire Research Institute'),
(75729, 63794, 'en', 'name', 'Shandong Academy of Building Research'),
(75730, 63794, 'zh', 'name', 'å±±äøœēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(75731, 63795, 'en', 'name', 'Suzhou Electrical Apparatus Science Academy'),
(75732, 63795, 'zh', 'name', 'č‹å·žē”µå™Øē§‘å­¦ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(75733, 63796, 'en', 'name', 'Shanghai Tunnel Engineering Rail Transit Design & Research Institute'),
(75734, 63796, 'zh', 'name', 'äøŠęµ·åø‚éš§é“å·„ēØ‹č½Øé“äŗ¤é€šč®¾č®”ē ”ē©¶é™¢'),
(75735, 63797, 'en', 'name', 'Shandong Academy of Environmental Science'),
(75736, 63797, 'zh', 'name', 'å±±äøœēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶č®¾č®”é™¢åœ°'),
(75737, 63798, 'en', 'name', 'Shenyang Fire Research Institute'),
(75738, 63799, 'en', 'name', 'Shandong Institute of Food and Drug Inspection'),
(75739, 63799, 'zh', 'name', 'å±±äøœēœé£Ÿå“čÆå“ę£€éŖŒē ”ē©¶é™¢'),
(75740, 63800, 'en', 'name', 'Suzhou Industrial Park Vocational Technical College'),
(75741, 63800, 'zh', 'name', 'č‹å·žå·„äøšå›­åŒŗčŒäøšęŠ€ęœÆå­¦é™¢'),
(75742, 63801, 'en', 'name', 'Suzhou Vocational Institute of Industrial Technology'),
(75743, 63801, 'zh', 'name', '꜉ č‹å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(75744, 63802, 'en', 'name', 'Sichuan Fire Research Institute'),
(75745, 63803, 'no_lang_code', 'name', 'Wuhan Institute of Geo-Environmental Industry and Technology (China)'),
(75746, 63803, 'zh', 'name', 'ę­¦ę±‰åœ°č“ØēŽÆå¢ƒå·„ēØ‹ęŠ€ęœÆē ”ē©¶ę‰€'),
(75747, 63804, 'en', 'name', 'Shanghai Water Conservancy Engineering Design & Research Institute'),
(75748, 63804, 'zh', 'name', 'äøŠęµ·åø‚ę°“åˆ©å·„ēØ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™'),
(75749, 63805, 'en', 'name', 'Suzhou Nonferrous Metals Research Institute'),
(75750, 63805, 'zh', 'name', 'č‹å·žęœ‰č‰²é‡‘å±žē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75751, 63806, 'en', 'name', 'Shanghai Harbour Engineering Design & Research Institute'),
(75752, 63806, 'zh', 'name', 'äøŠęµ·ęµ·ę¹¾å·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(75753, 63807, 'no_lang_code', 'name', 'Shandong Provincial Communications Planning and Design Institute (China)'),
(75754, 63807, 'zh', 'name', 'å±±äøœēœäŗ¤é€šč§„åˆ’č®¾č®”é™¢'),
(75755, 63808, 'en', 'name', 'Suzhou Thermal Engineering Research Institute'),
(75756, 63808, 'zh', 'name', 'č‹å·žēƒ­å·„ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75757, 63809, 'en', 'name', 'Shangqiu Institute of Technology'),
(75758, 63809, 'zh', 'name', 'å•†äø˜å·„å­¦é™¢ē®€ä»‹'),
(75759, 63810, 'en', 'name', 'Shandong Institute of Metrology'),
(75760, 63810, 'zh', 'name', 'å±±äøœēœč®”é‡ē§‘å­¦ē ”ē©¶é™¢'),
(75761, 63811, 'en', 'name', 'Shantou Ultrasonic Instrument Research Institute'),
(75762, 63811, 'zh', 'name', '汕夓超声仪器研究所'),
(75763, 63812, 'en', 'name', 'Shandong Institute for Product Quality Inspection'),
(75764, 63812, 'zh', 'name', 'å±±äøœēœäŗ§å“č“Øé‡ę£€éŖŒē ”ē©¶é™¢'),
(75765, 63813, 'en', 'name', 'Institute of Oceanographic Instrumentation'),
(75766, 63813, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢ęµ·ę“‹ä»Ŗå™Øä»Ŗč”Øē ”ē©¶ę‰€ 地址'),
(75767, 63814, 'en', 'name', 'Shandong Huanghe Delta Institute of Textile Science and Technology'),
(75768, 63814, 'zh', 'name', 'å±±äøœé»„ę²³äø‰č§’ę“²ēŗŗē»‡ē§‘ęŠ€ē ”ē©¶é™¢äŗŽ'),
(75769, 63815, 'en', 'name', 'Wuxi Institute of Technology'),
(75770, 63815, 'zh', 'name', '无锔理巄学院'),
(75771, 63816, 'en', 'name', 'HKUST Shenzhen Research Institute'),
(75772, 63817, 'no_lang_code', 'name', 'Wuxi Guolian Development (China)'),
(75773, 63817, 'zh', 'name', 'ę— é””å›½č”å‘å±•é›†å›¢'),
(75774, 63818, 'en', 'name', 'Traffic Management Research Institute'),
(75775, 63819, 'no_lang_code', 'name', 'Shanghai Electric (China)'),
(75776, 63819, 'zh', 'name', 'äøŠęµ·ē”µę°”é›†å›¢'),
(75777, 63820, 'no_lang_code', 'name', 'Ningbo Putian Information Industry (China)'),
(75778, 63820, 'zh', 'name', 'å®ę³¢ę™®å¤©äæ”ęÆäŗ§äøš'),
(75779, 63821, 'en', 'name', 'Thermal Power Research Institute'),
(75780, 63821, 'zh', 'name', 'č„æå®‰ēƒ­å·„ē ”ē©¶é™¢'),
(75781, 63822, 'en', 'name', 'Shanghai Architectural Design & Research Institute'),
(75782, 63822, 'zh', 'name', 'äøŠęµ·å»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75783, 63823, 'en', 'name', 'Shanxi Academy of Building Research'),
(75784, 63823, 'zh', 'name', 'å±±č„æēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(75785, 63824, 'no_lang_code', 'name', 'China XD Group (China)'),
(75786, 63824, 'zh', 'name', '中国脿电集团'),
(75787, 63825, 'en', 'name', 'Shanxi Electromechanical Design and Research Institute'),
(75788, 63825, 'zh', 'name', 'å±±č„æęœŗę¢°č®¾č®”ē ”ē©¶é™¢'),
(75789, 63826, 'en', 'name', 'Tianjin Fire Research Institute'),
(75790, 63826, 'zh', 'name', 'å…¬å®‰éƒØå¤©ę“„ę¶ˆé˜²ē ”ē©¶ę‰€ē®€ä»‹'),
(75791, 63827, 'en', 'name', 'Shanghai Electric Apparatus Research Institute'),
(75792, 63827, 'zh', 'name', 'äøŠęµ·ē”µå™Øē§‘å­¦ē ”ē©¶ę‰€'),
(75793, 63828, 'en', 'name', 'Qingdao Academy of Agricultural Sciences'),
(75794, 63829, 'no_lang_code', 'name', 'Shanxi Provincial Institute of Chemical Industry (China)'),
(75795, 63829, 'zh', 'name', 'å±±č„æēœåŒ–å·„ē ”ē©¶ę‰€'),
(75796, 63830, 'en', 'name', 'Xi''an Micromotor Research Institute'),
(75797, 63830, 'zh', 'name', 'č„æå®‰å¾®ē”µęœŗē ”ē©¶ę‰€'),
(75798, 63831, 'no_lang_code', 'name', 'China Shenhua Energy (China)'),
(75799, 63831, 'zh', 'name', 'ē„žåŽčƒ½ęŗ'),
(75800, 63832, 'en', 'name', 'Tianjin Plastics Research Institute'),
(75801, 63832, 'zh', 'name', 'å¤©ę“„åø‚å”‘ę–™ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(75802, 63833, 'en', 'name', 'China Fishery Machinery and Instrument Research Institute'),
(75803, 63833, 'zh', 'name', 'ęø”äøšęœŗę¢°ä»Ŗå™Øē ”ē©¶ę‰€åˆ›'),
(75804, 63834, 'en', 'name', 'Xiamen Institute of Building Research Group'),
(75805, 63834, 'zh', 'name', 'åŽ¦é—Øå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(75806, 63835, 'no_lang_code', 'name', 'Shenyang Aluminum & Magnesium Engineering & Research Institute (China)'),
(75807, 63835, 'zh', 'name', 'ę²‰é˜³é“é•č®¾č®”ē ”ē©¶é™¢'),
(75808, 63836, 'en', 'name', 'Xinjiang Uygur Autonomous Region Institute of Metrology and Measurement'),
(75809, 63836, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗč®”é‡ęµ‹čÆ•ē ”ē©¶é™¢'),
(75810, 63837, 'no_lang_code', 'name', 'SGIDI Engineering Consulting (China)'),
(75811, 63837, 'zh', 'name', 'äøŠęµ·å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢'),
(75812, 63838, 'no_lang_code', 'name', 'Shenyang Academy of Environmental Sciences (China)'),
(75813, 63838, 'zh', 'name', 'ę²ˆé˜³ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(75814, 63839, 'en', 'name', 'Shenzhen Academy of Aerospace Technology'),
(75815, 63839, 'zh', 'name', 'ę·±åœ³čˆŖå¤©ē§‘ęŠ€ē ”ē©¶é™¢'),
(75816, 63840, 'no_lang_code', 'name', 'Huafon Group (China)'),
(75817, 63840, 'zh', 'name', '华峰集团'),
(75818, 63841, 'no_lang_code', 'name', 'Hilong (China)'),
(75819, 63841, 'zh', 'name', 'ęµ·éš†é›†å›¢ē¬¬'),
(75820, 63842, 'en', 'name', 'Shenzhen Academy of Metrology and Quality Inspection'),
(75821, 63842, 'zh', 'name', 'ę·±åœ³åø‚č®”é‡č“Øé‡ę£€ęµ‹ē ”ē©¶é™¢'),
(75822, 63843, 'en', 'name', 'Nihon University Itabashi Hospital'),
(75823, 63843, 'ja', 'name', 'ę—„ęœ¬å¤§å­¦ęæę©‹ē—…é™¢'),
(75824, 63844, 'no_lang_code', 'name', 'Shenzhen General Institute of Architectural Design and Research (China)'),
(75825, 63844, 'zh', 'name', 'ę·±åœ³åø‚å»ŗē­‘č®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(75826, 63845, 'en', 'name', 'Wanda Cultural Tourism Planning and Research Institute'),
(75827, 63845, 'zh', 'name', 'äø‡č¾¾ę–‡åŒ–ę—…ęøøč§„åˆ’ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75828, 63846, 'no_lang_code', 'name', 'Shenzhen Institute of Building Research (China)'),
(75829, 63846, 'zh', 'name', 'ę·±åœ³åø‚å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(75830, 63847, 'en', 'name', 'Shanghai Zhaozhan Metal Materials'),
(75831, 63847, 'zh', 'name', 'äøŠęµ·é‡‘å±¬ęę–™ęœ‰é™å…¬åø'),
(75832, 63848, 'no_lang_code', 'name', 'Shenzhen Institute of Innovation Design (China)'),
(75833, 63848, 'zh', 'name', 'ę·±åœ³åø‚åˆ›ę–°č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75834, 63849, 'no_lang_code', 'name', 'Yuntianhua Group (China)'),
(75835, 63850, 'no_lang_code', 'name', 'Medzone Healthcare (China)'),
(75836, 63851, 'en', 'name', 'Shenzhen Academy of Robotics'),
(75837, 63851, 'zh', 'name', 'äø“ę·±åœ³åø‚ę™ŗčƒ½ęœŗå™Øäŗŗē ”ē©¶é™¢'),
(75838, 63852, 'en', 'name', 'Zhejiang Modern Architectural Design & Research Institute'),
(75839, 63852, 'zh', 'name', 'ęµ™ę±ŸēœēŽ°ä»£å»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(75840, 63853, 'no_lang_code', 'name', 'Coal Industry Jinan Design & Research Institute (China)'),
(75841, 63853, 'zh', 'name', 'ē…¤ē‚­å·„äøšęµŽå—č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75842, 63854, 'no_lang_code', 'name', 'Samsung (China)'),
(75843, 63854, 'zh', 'name', 'äø‰ę˜Ÿē”µå­äø­å›½'),
(75844, 63855, 'no_lang_code', 'name', 'Chinatex Posts and Telecommunications Consulting and Design Institute (China)'),
(75845, 63855, 'zh', 'name', 'äø­č®Æé‚®ē”µå’ØčÆ¢č®¾č®”é™¢ęœ‰é™å…¬åø'),
(75846, 63856, 'en', 'name', 'Yunnan Supply and Marketing Cooperatives'),
(75847, 63857, 'no_lang_code', 'name', 'Hetman Petro Sahaidachnyi National Army Academy'),
(75848, 63857, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŃŃƒŃ…Š¾ŠæŃƒŃ‚Š½ŠøŃ… Š²Ń–Š¹ŃŃŒŠŗ імені Š³ŠµŃ‚ŃŒŠ¼Š°Š½Š° ŠŸŠµŃ‚Ń€Š° ДагайГачного'),
(75849, 63858, 'en', 'name', 'Chengdu Surveying Geotechnical Research Institute'),
(75850, 63858, 'zh', 'name', 'äø­å†¶ęˆéƒ½å‹˜åÆŸē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(75851, 63859, 'az', 'name', 'Azərbaycan Respublikası Fƶvqəladə Hallar Nazirliyi'),
(75852, 63859, 'en', 'name', 'Ministry of Emergency Situations of the Republic of Azerbaijan'),
(75853, 63860, 'en', 'name', 'Collaborative Innovation Center of Quantum Matter'),
(75854, 63860, 'zh', 'name', 'é‡å­ē‰©č“Øē§‘å­¦ååŒåˆ›ę–°äø­åæƒ'),
(75855, 63861, 'no_lang_code', 'name', 'Zhejiang Runtu (China)'),
(75856, 63861, 'zh', 'name', 'ęµ™ę±Ÿé—°åœŸč‚”ä»½ęœ‰é™å…¬åø'),
(75857, 63862, 'en', 'name', 'Islamic Azad University, Aliabad Katoul'),
(75858, 63862, 'fa', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¢Ų²Ų§ŲÆ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ، Ų¹Ł„ŁŠ Ų£ŲØŲ§ŲÆ Ł‚Ų·ŁˆŁ„'),
(75859, 63863, 'en', 'name', 'Bilquis Postgraduate College For Women'),
(75860, 63863, 'ur', 'name', 'Ų®ŁˆŲ§ŲŖŪŒŁ† کے لئے ŲØŁ„Ł‚ŪŒŲ³ Ų§ŪŒŲ¬ŁˆŚ©ŪŒŲ“Ł† کالج'),
(75861, 63864, 'en', 'name', 'Yunnan Institute of Tropical Crops'),
(75862, 63864, 'zh', 'name', 'äŗ‘å—ēƒ­åø¦ä½œē‰©ē ”ē©¶ę‰€'),
(75863, 63865, 'en', 'name', 'Hanoi Pedagogical University 2'),
(75864, 63865, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m HĆ  Nį»™i 2'),
(75865, 63866, 'en', 'name', 'Zhejiang Sorfa Life Science Research'),
(75866, 63866, 'zh', 'name', 'ęµ™ę±Ÿē”•åŽē”Ÿå‘½ē§‘å­¦ē ”ē©¶č‚”ä»½ęœ‰é™å…¬åø'),
(75867, 63867, 'en', 'name', 'Radiation Safety Directorate'),
(75868, 63867, 'mk', 'name', 'Š”ŠøŃ€ŠµŠŗŃ†ŠøŃ˜Š° за Ń€Š°Š“ŠøŃ˜Š°Ń†ŠøŠ¾Š½Š° ŃŠøŠ³ŃƒŃ€Š½Š¾ŃŃ‚'),
(75869, 63868, 'en', 'name', 'Yunnan Water Conservancy and Hydropower Survey and Design Institute'),
(75870, 63869, 'en', 'name', 'National Supercomputing Center in Wuxi'),
(75871, 63869, 'zh', 'name', 'ę— é””å›½å®¶č¶…ēŗ§č®”ē®—äø­åæƒ'),
(75872, 63870, 'en', 'name', 'Shenzhen Special Equipment Safety Inspection Institute'),
(75873, 63870, 'zh', 'name', 'ę·±åœ³åø‚ē‰¹ē§č®¾å¤‡å®‰å…Øę£€éŖŒē ”ē©¶é™¢'),
(75874, 63871, 'en', 'name', 'China Spallation Neutron Source'),
(75875, 63871, 'zh', 'name', '中国散裂中子源巄程'),
(75876, 63872, 'fr', 'name', 'Institut PrƩpaVogt'),
(75877, 63873, 'en', 'name', 'Zhangjiagang Smartgrid Fanghua Electrical Energy Storage Research Institute'),
(75878, 63873, 'zh', 'name', 'å¼ å®¶ęøÆę™ŗčƒ½ē”µē½‘ę–¹åŽē”µčƒ½å‚Øčƒ½ē ”ē©¶ę‰€'),
(75879, 63874, 'en', 'name', 'Zhejiang Institute of Special Equipment Inspection'),
(75880, 63874, 'zh', 'name', 'ęµ™ę±Ÿēœē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(75881, 63875, 'en', 'name', 'Shenzhen Terahertz Technology Innovation Research Institute'),
(75882, 63875, 'zh', 'name', 'ę·±åœ³åø‚å¤Ŗčµ«å…¹ē§‘ęŠ€åˆ›ę–°ē ”ē©¶é™¢'),
(75883, 63876, 'no_lang_code', 'name', 'Zigong Light Industry Design Institute (China)'),
(75884, 63876, 'zh', 'name', 'č‡Ŗč“”åø‚č½»å·„äøšč®¾č®”ē ”ē©¶é™¢'),
(75885, 63877, 'no_lang_code', 'name', 'Shenzhen Yihua Computer (China)'),
(75886, 63877, 'zh', 'name', 'ę·±åœ³ę€”åŒ–ē”µč„‘č‚”ä»½ęœ‰é™å…¬åø'),
(75887, 63878, 'en', 'name', 'Mandalay University of Distance Education'),
(75888, 63879, 'en', 'name', 'Zhejiang Institute of Freshwater Fisheries'),
(75889, 63879, 'zh', 'name', 'ęµ™ę±Ÿēœę·”ę°“ę°“äŗ§ē ”ē©¶ę‰€'),
(75890, 63880, 'en', 'name', 'Yiwu Science and Technology Research Institute'),
(75891, 63880, 'zh', 'name', 'ęµ™ę±Ÿå·„äøšå¤§å­¦ä¹‰ä¹Œē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(75892, 63881, 'en', 'name', 'Shijiazhuang Academy of Agriculture and Forestry Sciences'),
(75893, 63881, 'zh', 'name', 'ēŸ³å®¶åŗ„åø‚å†œęž—ē§‘å­¦ē ”ē©¶é™¢'),
(75894, 63882, 'en', 'name', 'Zhejiang Water Conservancy and Hydropower Survey and Design Institute'),
(75895, 63882, 'zh', 'name', 'ęµ™ę±Ÿēœę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”é™¢'),
(75896, 63883, 'pt', 'name', 'Centro UniversitƔrio UNINOVAFAPI'),
(75897, 63884, 'en', 'name', 'Zhangjiagang Intelligent Power Research Institute'),
(75898, 63884, 'zh', 'name', 'å¼ å®¶ęøÆę™ŗčƒ½ē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢'),
(75899, 63885, 'no_lang_code', 'name', 'Changchun Gold Research Institute (China)'),
(75900, 63886, 'no_lang_code', 'name', 'Sichuan Provincial Architectural Design and Research Institute (China)'),
(75901, 63886, 'zh', 'name', 'å››å·ēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(75902, 63887, 'en', 'name', 'Beijing Microelectronics Technology Institute'),
(75903, 63888, 'en', 'name', 'Guangzhou Quality Supervision, Inspection and Research Institute'),
(75904, 63888, 'zh', 'name', 'å¹æå·žč“Øé‡ē›‘ē£ę£€ęµ‹ē ”ē©¶é™¢'),
(75905, 63889, 'no_lang_code', 'name', 'Zhejiang Yuhua Electronics (China)'),
(75906, 63889, 'zh', 'name', 'ęµ™ę±Ÿč£•åŽē”µå™Øęœ‰é™å…¬åø'),
(75907, 63890, 'no_lang_code', 'name', 'China First Heavy Industries (China)'),
(75908, 63890, 'zh', 'name', 'äø­å›½ē¬¬äø€é‡åž‹ęœŗę¢°č‹±'),
(75909, 63891, 'no_lang_code', 'name', 'Zhongji Test Equipment (China)'),
(75910, 63891, 'zh', 'name', 'äø­ęœŗčÆ•éŖŒč£…å¤‡č‚”ä»½ęœ‰é™å…¬åø'),
(75911, 63892, 'no_lang_code', 'name', 'Aero Engine Corporation of China (China)'),
(75912, 63892, 'zh', 'name', 'äø­å›½čˆŖē©ŗå‘åŠØęœŗé›†å›¢'),
(75913, 63893, 'en', 'name', 'Beijing Automation Control Equipment Institute'),
(75914, 63893, 'zh', 'name', 'åŒ—äŗ¬č‡ŖåŠØåŒ–ęŽ§åˆ¶č®¾å¤‡ē ”ē©¶ę‰€åˆ›å»ŗäŗŽ'),
(75915, 63894, 'no_lang_code', 'name', 'Beijing Enterprises (China)'),
(75916, 63895, 'no_lang_code', 'name', 'Beijing Drainage Group (China)'),
(75917, 63895, 'zh', 'name', 'åŒ—äŗ¬ęŽ’ę°“é›†å›¢'),
(75918, 63896, 'no_lang_code', 'name', 'Changzhou Architectural Research Institute Group (China)'),
(75919, 63896, 'zh', 'name', 'åøøå·žåø‚å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(75920, 63897, 'no_lang_code', 'name', 'Beijing Longda Light Industry Holding (China)'),
(75921, 63897, 'zh', 'name', 'åŒ—äŗ¬éš†č¾¾č½»å·„ęŽ§č‚”ęœ‰é™č“£ä»»å…¬åø'),
(75922, 63898, 'en', 'name', 'Anhui 3D Printing Intelligent Equipment Industry Technology Research Institute'),
(75923, 63898, 'zh', 'name', 'å®‰å¾½ēœę˜„č°·3Dę‰“å°ę™ŗčƒ½č£…å¤‡äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(75924, 63899, 'en', 'name', 'Changzhou Changchao Electronic Research Institute'),
(75925, 63899, 'zh', 'name', 'åøøå·žåø‚åøøč¶…ē”µå­ē ”ē©¶ę‰€'),
(75926, 63900, 'no_lang_code', 'name', 'Beijing Guodaotong Highway Design & Research Institute (China)'),
(75927, 63900, 'zh', 'name', 'åŒ—äŗ¬å›½é“é€šå…¬č·Æč®¾č®”ē ”ē©¶é™¢'),
(75928, 63901, 'no_lang_code', 'name', 'Beijing Institute of Power Machinery (China)'),
(75929, 63901, 'zh', 'name', 'åŒ—äŗ¬åŠØåŠ›ęœŗę¢°ē ”ē©¶ę‰€'),
(75930, 63902, 'en', 'name', 'Changzhou City Planning and Design Institute'),
(75931, 63902, 'zh', 'name', 'åøøå·žåø‚č§„åˆ’č®¾č®”é™¢'),
(75932, 63903, 'en', 'name', 'Anhui Institute of Information Technology'),
(75933, 63903, 'zh', 'name', '꜉ 安徽俔息巄程学院'),
(75934, 63904, 'en', 'name', 'Anhui Academy of Coal Science'),
(75935, 63904, 'zh', 'name', 'å®‰å¾½ēœē…¤ē‚­ē§‘å­¦ē ”ē©¶é™¢'),
(75936, 63905, 'no_lang_code', 'name', 'Risun (China)'),
(75937, 63905, 'zh', 'name', 'ę—­é™½é›†åœ˜'),
(75938, 63906, 'en', 'name', 'Changzhou Vocational Institute of Textile and Garment'),
(75939, 63906, 'zh', 'name', 'åøøå·žēŗŗē»‡ęœč£…čŒäøšęŠ€ęœÆå­¦é™¢'),
(75940, 63907, 'en', 'name', 'Changzhou Zhiye Medical Devices Institute'),
(75941, 63907, 'zh', 'name', 'åøøå·žåø‚ę™ŗäøšåŒ»ē–—ä»Ŗå™Øē ”ē©¶ę‰€ęœ‰'),
(75942, 63908, 'en', 'name', 'Anhui Water Conservancy and Hydropower Survey and Design Institute'),
(75943, 63908, 'zh', 'name', 'å®‰å¾½ēœę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”é™¢'),
(75944, 63909, 'no_lang_code', 'name', 'Beijing Urban Construction Design & Development Group (China)'),
(75945, 63910, 'en', 'name', 'Beijing Zhenxing Metrology & Measurement Institute'),
(75946, 63910, 'zh', 'name', 'åŒ—äŗ¬ęŒÆå…“č®”é‡ęµ‹čÆ•ē ”ē©¶ę‰€'),
(75947, 63911, 'no_lang_code', 'name', 'Chengdu Industrial Equipment Installation (China)'),
(75948, 63911, 'zh', 'name', 'ęˆéƒ½åø‚å·„äøšč®¾å¤‡å®‰č£…å…¬åø ē‰ˆęƒę‰€ęœ‰'),
(75949, 63912, 'en', 'name', 'Binzhou Technician College'),
(75950, 63912, 'zh', 'name', 'ę»Øå·žåø‚ęŠ€åøˆå­¦é™¢'),
(75951, 63913, 'no_lang_code', 'name', 'Chengdu Tiger Microwave Technology (China)'),
(75952, 63913, 'zh', 'name', 'ęˆéƒ½ę³°ę ¼å¾®ę³¢ęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(75953, 63914, 'no_lang_code', 'name', 'China Huadian Corporation (China)'),
(75954, 63914, 'zh', 'name', 'äø­å›½åŽē”µé›†å›¢å…¬åø'),
(75955, 63915, 'en', 'name', 'Chenguang Research Institute of Chemical Industry'),
(75956, 63916, 'no_lang_code', 'name', 'China Building Standard Design and Research Institute (China)'),
(75957, 63916, 'zh', 'name', '中国建筑标准设讔研究院'),
(75958, 63917, 'no_lang_code', 'name', 'Sinolight (China)'),
(75959, 63917, 'zh', 'name', 'äø­å›½č½»å·„é›†å›¢ęœ‰é™å…¬åø'),
(75960, 63918, 'en', 'name', 'Suzhou Chien-Shiung Institute of Technology'),
(75961, 63918, 'zh', 'name', 'č‹å·žå„é›„čŒäøšęŠ€ęœÆå­¦é™¢'),
(75962, 63919, 'no_lang_code', 'name', 'Holsin Engineering Consulting Group (China)'),
(75963, 63919, 'zh', 'name', 'åˆčÆšå·„ēØ‹å’ØčÆ¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(75964, 63920, 'no_lang_code', 'name', 'Dalian Plastics Research Institute (China)'),
(75965, 63920, 'zh', 'name', 'å¤§čæžå”‘ę–™ē ”ē©¶ę‰€'),
(75966, 63921, 'no_lang_code', 'name', 'Zhejiang Energy Group (China)'),
(75967, 63921, 'zh', 'name', 'ęµ™ę±Ÿēœčƒ½ęŗé›†å›¢ęœ‰é™å…¬åø'),
(75968, 63922, 'no_lang_code', 'name', 'Dalian Synthetic Fiber Research and Design Institute (China)'),
(75969, 63922, 'zh', 'name', 'å¤§čæžåˆęˆēŗ¤ē»“ē ”ē©¶č®¾č®”é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(75970, 63923, 'no_lang_code', 'name', 'Electromechanical Device Installation (China)'),
(75971, 63923, 'zh', 'name', 'ęœŗē”µč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(75972, 63924, 'en', 'name', 'Energy Research Institute'),
(75973, 63924, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢čƒ½ęŗē ”ē©¶ę‰€'),
(75974, 63925, 'no_lang_code', 'name', 'China Tianjin Tools Research Institute (China)'),
(75975, 63925, 'zh', 'name', '中国天擄巄具研究院'),
(75976, 63926, 'no_lang_code', 'name', 'China National Salt Industry Corporation (China)'),
(75977, 63926, 'zh', 'name', 'äø­å›½ē›äøšę€»å…¬åø'),
(75978, 63927, 'no_lang_code', 'name', 'Danyang Hengan Chemical (China)'),
(75979, 63927, 'zh', 'name', 'äø¹é˜³åø‚ę’å®‰åŒ–å·„ęœ‰é™å…¬åøę˜Æ'),
(75980, 63928, 'en', 'name', 'Fujian Inspection and Research Institute for Product Quality'),
(75981, 63928, 'zh', 'name', 'ē¦å»ŗēœäŗ§å“č“Øé‡ę£€éŖŒē ”ē©¶é™¢'),
(75982, 63929, 'en', 'name', 'Fujian Institute of Microbiology'),
(75983, 63929, 'zh', 'name', 'ē¦å»ŗēœå¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(75984, 63930, 'no_lang_code', 'name', 'Fujian Petrochemical Group (China)'),
(75985, 63930, 'zh', 'name', 'ē¦å»ŗēŸ³ę²¹åŒ–å·„é›†å›¢ęœ‰é™č“£ä»»å…¬åø'),
(75986, 63931, 'en', 'name', 'Fujian Special Equipment Inspection Institute'),
(75987, 63931, 'zh', 'name', 'ē¦å»ŗēœē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(75988, 63932, 'en', 'name', 'Chongqing Academy of Environmental Science'),
(75989, 63932, 'zh', 'name', 'é‡åŗ†åø‚ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(75990, 63933, 'en', 'name', 'Gansu Institute of Mechanical and Electrical Technology'),
(75991, 63933, 'zh', 'name', 'ē”˜č‚ƒęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢ 地址'),
(75992, 63934, 'en', 'name', 'Gansu Research Institute of Chemical Industry'),
(75993, 63934, 'zh', 'name', 'ē”˜č‚ƒēœåŒ–å·„ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(75994, 63935, 'no_lang_code', 'name', 'Chongqing Construction Engineering Investment Holding (China)'),
(75995, 63935, 'zh', 'name', 'é‡åŗ†å»ŗå·„ęŠ•čµ„ęŽ§č‚”'),
(75996, 63936, 'en', 'name', 'Dongguan Frontier Technology Research Institute'),
(75997, 63936, 'zh', 'name', 'äøœčŽžå‰ę²æęŠ€ęœÆē ”ē©¶é™¢'),
(75998, 63937, 'en', 'name', 'Dongguan LungCheong Institute of Intelligent Technology'),
(75999, 63937, 'zh', 'name', 'äøœčŽžé¾™ę˜Œę™ŗčƒ½ęŠ€ęœÆē ”ē©¶é™¢ē®€ä»‹'),
(76000, 63938, 'en', 'name', 'Dongguan South China Design and Innovation Institute'),
(76001, 63938, 'zh', 'name', 'äøœčŽžåŽå—č®¾č®”åˆ›ę–°ē ”ē©¶é™¢'),
(76002, 63939, 'no_lang_code', 'name', 'Chongqing Sinstar Packaging Machinery (China)'),
(76003, 63939, 'zh', 'name', 'é‡åŗ†ę–°ę˜ŸåŒ…č£…ęœŗę¢°'),
(76004, 63940, 'en', 'name', 'Biology Institute of Shandong Academy of Sciences'),
(76005, 63940, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢ē”Ÿē‰©ē ”ē©¶ę‰€'),
(76006, 63941, 'no_lang_code', 'name', 'Chongqing Yongda Precision Machinery (China)'),
(76007, 63941, 'zh', 'name', 'é‡åŗ†ę°øč¾¾ē²¾åÆ†ęœŗę¢°'),
(76008, 63942, 'en', 'name', 'Guangdong Shunde Innovative Design Institute'),
(76009, 63942, 'zh', 'name', 'å¹æäøœé”ŗå¾·åˆ›ę–°č®¾č®”é™¢'),
(76010, 63943, 'en', 'name', 'Guangdong Food Industry Research Institute'),
(76011, 63943, 'zh', 'name', 'å¹æäøœēœé£Ÿå“å·„äøšē ”ē©¶ę‰€'),
(76012, 63944, 'no_lang_code', 'name', 'Guangdong Southern China Special Gas Institute (China)'),
(76013, 63944, 'zh', 'name', 'å¹æäøœå—åŽē‰¹ę®Šę°”ä½“ē ”ē©¶ę‰€'),
(76014, 63945, 'en', 'name', 'Guangdong Urban & Rural Planning and Design Institute'),
(76015, 63945, 'zh', 'name', 'å¹æäøœēœåŸŽä¹”č§„åˆ’č®¾č®”é™¢'),
(76016, 63946, 'en', 'name', 'Guangdong Provincial Institute of Grain Science and Technology'),
(76017, 63946, 'zh', 'name', 'å¹æäøœēœē²®é£Ÿē§‘å­¦ē ”ē©¶ę‰€'),
(76018, 63947, 'en', 'name', 'Guilin Tea Research Institute'),
(76019, 63947, 'zh', 'name', 'ę”‚ęž—čŒ¶å¶ē ”ē©¶ę‰€'),
(76020, 63948, 'no_lang_code', 'name', 'Sailun Jinyu Group (China)'),
(76021, 63948, 'zh', 'name', '赛轮金宇集团'),
(76022, 63949, 'no_lang_code', 'name', 'CCFEB Industrial Equipment Installation (China)'),
(76023, 63949, 'zh', 'name', 'äø­å»ŗäŗ”å±€å·„äøšč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(76024, 63950, 'en', 'name', 'Guangdong Hydropower Planning & Design Institute'),
(76025, 63951, 'en', 'name', 'Guangxi Hydraulic Power Machinery Research Institute'),
(76026, 63951, 'zh', 'name', 'å¹æč„æę°“åˆ©ęœŗę¢°ē ”ē©¶ę‰€'),
(76027, 63952, 'no_lang_code', 'name', 'Guangdong Industrial Equipment Installation (China)'),
(76028, 63952, 'zh', 'name', 'å¹æäøœēœå·„äøšč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(76029, 63953, 'no_lang_code', 'name', 'Everbright International (China)'),
(76030, 63953, 'zh', 'name', 'äø­å›½å…‰å¤§å›½é™…ęœ‰é™å…¬åø'),
(76031, 63954, 'en', 'name', 'Guangxi Special Equipment Inspection Institute'),
(76032, 63954, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(76033, 63955, 'no_lang_code', 'name', 'China Electric Equipment Group (China)'),
(76034, 63955, 'zh', 'name', 'äø­ē”µē”µę°”é›†å›¢ęœ‰é™å…¬åø'),
(76035, 63956, 'en', 'name', 'Guangxi Agricultural Machinery Research Institute'),
(76036, 63956, 'zh', 'name', 'å¹æč„æå†œäøšęœŗę¢°ē ”ē©¶é™¢'),
(76037, 63957, 'no_lang_code', 'name', 'First Design and Research Institute MI China (China)'),
(76038, 63957, 'zh', 'name', '中国第一设讔研究院'),
(76039, 63958, 'en', 'name', 'Guangxi Institute of Oceanography'),
(76040, 63958, 'zh', 'name', '广脿海擋研究所'),
(76041, 63959, 'en', 'name', 'Guangzhou Building Materials Institute'),
(76042, 63959, 'zh', 'name', 'å¹æå·žå»ŗē­‘ęę–™ē ”ē©¶ę‰€'),
(76043, 63960, 'en', 'name', 'Guangdong Special Equipment Inspection and Research Institute'),
(76044, 63960, 'zh', 'name', 'å¹æäøœēœē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(76045, 63961, 'en', 'name', 'Guangdong Iron and Steel Research Institute'),
(76046, 63961, 'zh', 'name', 'å¹æäøœēœé’¢é“ē ”ē©¶ę‰€'),
(76047, 63962, 'en', 'name', 'Guangdong Machinery Research Institute'),
(76048, 63962, 'zh', 'name', 'å¹æäøœēœęœŗę¢°ē ”ē©¶ę‰€'),
(76049, 63963, 'en', 'name', 'Hubei Polytechnic Institute'),
(76050, 63963, 'zh', 'name', 'ę¹– 北 职 业 ꊀ 术 å­¦ 院 简 介'),
(76051, 63964, 'en', 'name', 'Hubei Provincial Water Resources and Hydropower Planning Survey and Design Institute'),
(76052, 63964, 'zh', 'name', 'ę¹–åŒ—ēœę°“åˆ©ę°“ē”µč§„åˆ’å‹˜ęµ‹č®¾č®”é™¢'),
(76053, 63965, 'no_lang_code', 'name', 'Hunan Agricultural Products (China)'),
(76054, 63965, 'zh', 'name', 'ę¹–å—å†œäŗ§å“'),
(76055, 63966, 'en', 'name', 'Guangzhou Railway Polytechnic'),
(76056, 63966, 'zh', 'name', 'å¹æå·žé“č·ÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(76057, 63967, 'en', 'name', 'Hunan Communications Research Institute'),
(76058, 63967, 'zh', 'name', 'ę¹–å—äŗ¤é€šē ”ē©¶é™¢'),
(76059, 63968, 'no_lang_code', 'name', 'Hangzhou West-Lake Fountain Installation Serials (China)'),
(76060, 63968, 'zh', 'name', 'ę­å·žč„æę¹–å–·ę³‰č®¾å¤‡ęˆå„—ęœ‰é™å…¬åø'),
(76061, 63969, 'en', 'name', 'Xihu Institute of Electronic Research'),
(76062, 63969, 'zh', 'name', 'ę­å·žč„æę¹–ē”µå­ē ”ē©¶ę‰€'),
(76063, 63970, 'en', 'name', 'South China National Centre of Metrology'),
(76064, 63970, 'zh', 'name', 'åŽå—å›½å®¶č®”é‡ęµ‹čÆ•äø­åæƒ'),
(76065, 63971, 'en', 'name', 'Hunan Non-ferrous Metallurgical Labor Protection Institute'),
(76066, 63971, 'zh', 'name', 'ę¹–å—ēœęœ‰č‰²é‡‘å±žåŠ³åŠØäæęŠ¤ē ”ē©¶ę‰€'),
(76067, 63972, 'en', 'name', 'Harbin Institute of Petroleum'),
(76068, 63972, 'zh', 'name', 'å“ˆå°”ę»ØēŸ³ę²¹å­¦é™¢'),
(76069, 63973, 'en', 'name', 'Hunan Rice Research Institute'),
(76070, 63973, 'zh', 'name', 'ę¹–å—ēœę°“ēØ»ē ”ē©¶ę‰€'),
(76071, 63974, 'en', 'name', 'Hunan Software Vocational Institute'),
(76072, 63974, 'zh', 'name', 'ę¹–å—č½Æä»¶čŒäøšå­¦é™¢'),
(76073, 63975, 'en', 'name', 'Hunan Vocational College of Safety Technology'),
(76074, 63975, 'zh', 'name', 'ę¹–å—å®‰å…ØęŠ€ęœÆčŒäøšå­¦é™¢'),
(76075, 63976, 'no_lang_code', 'name', 'Hunan Xiangdian Test Research Institute (China)'),
(76076, 63976, 'zh', 'name', 'ę¹–å—ę¹˜ē”µęµ‹čÆ•ē ”ē©¶ę‰€'),
(76077, 63977, 'en', 'name', 'Harbin Welding Institute'),
(76078, 63977, 'zh', 'name', 'å“ˆå°”ę»Øē„ŠęŽ„ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(76079, 63978, 'en', 'name', 'Jiangsu Provincial Marine and Fisheries Bureau'),
(76080, 63978, 'zh', 'name', 'ę±Ÿč‹ēœęµ·ę“‹äøŽęø”äøšå±€ 地址'),
(76081, 63979, 'en', 'name', 'Guizhou Electromechanical Research and Design Institute'),
(76082, 63980, 'en', 'name', 'Institute of Food Science and Technology'),
(76083, 63980, 'zh', 'name', 'é£Ÿå“ē§‘å­¦äøŽęŠ€ęœÆē ”ē©¶ę‰€'),
(76084, 63981, 'en', 'name', 'Hebei Research Institute of Microbiology'),
(76085, 63981, 'zh', 'name', 'ę²³åŒ—ēœå¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(76086, 63982, 'en', 'name', 'Guizhou Institute of Building Materials Science Research and Design Institute'),
(76087, 63983, 'en', 'name', 'Guizhou Provincial Institute of Mountain Agricultural Machinery'),
(76088, 63984, 'no_lang_code', 'name', 'Hefei Municipal Design and Research Institute (China)'),
(76089, 63984, 'zh', 'name', 'åˆč‚„åø‚åø‚ę”æč®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(76090, 63985, 'en', 'name', 'Tianyi Institute of Biological Technology'),
(76091, 63985, 'zh', 'name', 'åˆč‚„å¤©äø€ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€ęˆ'),
(76092, 63986, 'en', 'name', 'Guizhou Province Chemical Industry Research Institute'),
(76093, 63987, 'en', 'name', 'Institute of Industry Technology Guangzhou'),
(76094, 63987, 'zh', 'name', 'å¹æå·žäø­å›½ē§‘å­¦é™¢å·„äøšęŠ€ęœÆē ”ē©¶é™¢'),
(76095, 63988, 'no_lang_code', 'name', 'Guizhou Magic Pharmaceutical (China)'),
(76096, 63989, 'en', 'name', 'Heilongjiang Academy of Forestry'),
(76097, 63989, 'zh', 'name', 'é»‘é¾™ę±Ÿēœęž—äøšē§‘å­¦é™¢'),
(76098, 63990, 'no_lang_code', 'name', 'Guizhou Winstar Hydraulic Transmission Machinery (China)'),
(76099, 63990, 'zh', 'name', 'č“µå·žå‡Æę˜Ÿę¶²åŠ›ä¼ åŠØęœŗę¢°ęœ‰é™å…¬åø'),
(76100, 63991, 'en', 'name', 'Heilongjiang Institute of Wood Science'),
(76101, 63991, 'zh', 'name', 'é»‘é¾™ę±ŸēœęœØęē§‘å­¦ē ”ē©¶ę‰€'),
(76102, 63992, 'en', 'name', 'Heilongjiang Provincial Metrology and Testing Institute'),
(76103, 63992, 'zh', 'name', 'é»‘é¾™ę±Ÿēœč®”é‡ę£€å®šęµ‹čÆ•é™¢ ꊀ'),
(76104, 63993, 'en', 'name', 'Heilongjiang Vocational Institute of Ecological Engineering'),
(76105, 63993, 'zh', 'name', 'é»‘é¾™ę±Ÿē”Ÿę€å·„ēØ‹čŒäøšå­¦é™¢'),
(76106, 63994, 'en', 'name', 'Leukaemia & Lymphoma NI'),
(76107, 63995, 'en', 'name', 'Prostate Cancer Research'),
(76108, 63996, 'en', 'name', 'RAFT'),
(76109, 63997, 'en', 'name', 'Restore'),
(76110, 63998, 'en', 'name', 'Reverse Rett'),
(76111, 63999, 'en', 'name', 'Borne Foundation'),
(76112, 64000, 'en', 'name', 'The Lewy Body Society'),
(76113, 64001, 'en', 'name', 'PBC Foundation'),
(76114, 64002, 'no_lang_code', 'name', 'Henan Provincial Institute of Communications Planning Survey & Design (China)'),
(76115, 64002, 'zh', 'name', 'ę²³å—ēœäŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(76116, 64003, 'en', 'name', 'Horological Research Institute of Light Industry'),
(76117, 64003, 'zh', 'name', 'č½»å·„äøšé’Ÿč”Øē ”ē©¶ę‰€'),
(76118, 64004, 'en', 'name', 'Nanchang Institute of Science & Technology'),
(76119, 64005, 'no_lang_code', 'name', 'Wuxi Taiji industry (China)'),
(76120, 64005, 'zh', 'name', 'ę— é””åø‚å¤Ŗęžå®žäøšč‚”ä»½ęœ‰é™å…¬åø'),
(76121, 64006, 'no_lang_code', 'name', 'ATK Holding Group (China)'),
(76122, 64007, 'en', 'name', 'Nanjing Institute of Mechatronic Technology'),
(76123, 64007, 'zh', 'name', 'å—äŗ¬ęœŗē”µęŠ€ęœÆē ”ē©¶ę‰€'),
(76124, 64008, 'no_lang_code', 'name', 'Jiangsu Gaoke Applied Science Research Institute (China)'),
(76125, 64008, 'zh', 'name', 'ę±Ÿč‹é«˜ē§‘åŗ”ē”Øē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(76126, 64009, 'en', 'name', 'Jiangsu Vocational Institute of Architectural Technology'),
(76127, 64009, 'zh', 'name', 'ę±Ÿč‹å»ŗē­‘čŒäøšęŠ€ęœÆå­¦é™¢'),
(76128, 64010, 'en', 'name', 'Institute of Research of Iron and Steel Shasteel'),
(76129, 64010, 'zh', 'name', '钢铁研究所研究所'),
(76130, 64011, 'no_lang_code', 'name', 'Nanjing Lishui Electronics Research Institute (China)'),
(76131, 64011, 'zh', 'name', 'å—äŗ¬äø½ę°“ē”µå­ē ”ē©¶ę‰€'),
(76132, 64012, 'no_lang_code', 'name', 'Jiangsu Kawei Auto Industrial Group (China)'),
(76133, 64012, 'zh', 'name', 'ę±Ÿč‹å”åØę±½č½¦å·„äøšé›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(76134, 64013, 'en', 'name', 'Nanjing Polytechnic Institute'),
(76135, 64013, 'zh', 'name', 'å—äŗ¬å·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(76136, 64014, 'no_lang_code', 'name', 'Jiangsu Maritime Institute'),
(76137, 64014, 'zh', 'name', 'å›½é™…ę•™č‚²äŗ¤ęµäøŽęœåŠ”äø­åæƒ'),
(76138, 64015, 'en', 'name', 'Jiangsu Province Special Equipment Safety Supervision and Inspection Institute'),
(76139, 64015, 'zh', 'name', 'ę±Ÿč‹ēœē‰¹ē§č®¾å¤‡å®‰å…Øē›‘ē£ę£€éŖŒē ”ē©¶é™¢ę— é””åˆ†é™¢'),
(76140, 64016, 'no_lang_code', 'name', 'Jiangsu Provincial Architectural Design and Research Institute (China)'),
(76141, 64016, 'zh', 'name', 'ę±Ÿč‹ēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(76142, 64017, 'no_lang_code', 'name', 'China Design Group (China)'),
(76143, 64017, 'zh', 'name', '中设设讔集团肔份'),
(76144, 64018, 'no_lang_code', 'name', 'Nanjing Water Conservancy Planning & Design Institute (China)'),
(76145, 64018, 'zh', 'name', 'å—äŗ¬åø‚ę°“åˆ©č§„åˆ’č®¾č®”é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(76146, 64019, 'en', 'name', 'Liaoning Provincial Bureau of Quality and Technical Supervision'),
(76147, 64019, 'zh', 'name', 'č¾½å®ēœč“Øé‡ęŠ€ęœÆē›‘ē£å±€'),
(76148, 64020, 'en', 'name', 'North China Municipal Engineering Design & Research Institute'),
(76149, 64020, 'zh', 'name', 'äø­å›½åø‚ę”æå·„ēØ‹åŽåŒ—č®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(76150, 64021, 'no_lang_code', 'name', 'China Huarong Energy (China)'),
(76151, 64021, 'zh', 'name', 'äø­å›½åŽčžčƒ½ęŗ'),
(76152, 64022, 'no_lang_code', 'name', 'Jiangsu Provincial Water Survey & Design Institute (China)'),
(76153, 64022, 'zh', 'name', 'ę±Ÿč‹ēœę°“åˆ©å‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(76154, 64023, 'en', 'name', 'Liaoning Petroleum Equipment Institute'),
(76155, 64023, 'zh', 'name', 'č¾½å®é™†ęµ·ēŸ³ę²¹č£…å¤‡ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(76156, 64024, 'en', 'name', 'Jiangsu Institute of Hydraulic Science and Technology'),
(76157, 64024, 'zh', 'name', 'ę±Ÿč‹ēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(76158, 64025, 'no_lang_code', 'name', 'Nantong Tongbo Equipment Installation Engineering (China)'),
(76159, 64025, 'zh', 'name', 'å—é€šé€šåšč®¾å¤‡å®‰č£…å·„ēØ‹ęœ‰é™å…¬åø'),
(76160, 64026, 'en', 'name', 'Liaoning Planning and Design Institute of Post and Telecommunication'),
(76161, 64026, 'zh', 'name', 'č¾½å®é‚®ē”µč§„åˆ’č®¾č®”é™¢ęœ‰é™å…¬åøē‰ˆ'),
(76162, 64027, 'no_lang_code', 'name', 'Jiangsu Yanjiang Chemical Resources Development Research Institute (China)'),
(76163, 64027, 'zh', 'name', 'ę±Ÿč‹ę²æę±ŸåŒ–å­¦čµ„ęŗå¼€å‘ē ”ē©¶é™¢'),
(76164, 64028, 'en', 'name', 'Liaoning Water Conservancy Society'),
(76165, 64028, 'zh', 'name', '辽宁省氓利学会'),
(76166, 64029, 'no_lang_code', 'name', 'Jiangxi Institute of Agricultural Machinery (Company)'),
(76167, 64029, 'zh', 'name', 'ę±Ÿč„æå†œäøšęœŗę¢°ē ”ē©¶ę‰€'),
(76168, 64030, 'en', 'name', 'European Foundation for the Improvement of Living and Working Conditions'),
(76169, 64030, 'ga', 'name', 'Fondúireacht Eorpach chun DÔlaí MaireachtÔla agus Oibre a Fheabhsú'),
(76170, 64031, 'no_lang_code', 'name', 'Ningbo Transportation Planning and Design Institute (China)'),
(76171, 64032, 'no_lang_code', 'name', 'Ningxia Machinery Research Institute (China)'),
(76172, 64033, 'en', 'name', 'Jiangxi Provincial Institute of Water Resources Planning and Design'),
(76173, 64033, 'zh', 'name', 'ę±Ÿč„æēœę°“åˆ©č§„åˆ’č®¾č®”ē ”ē©¶é™¢ ē‰ˆęƒę‰€ęœ‰'),
(76174, 64034, 'en', 'name', 'Northwest Research Institute of Chemical Industry'),
(76175, 64034, 'zh', 'name', 'č„æåŒ—åŒ–å·„ē ”ē©¶é™¢'),
(76176, 64035, 'en', 'name', 'Panzhihua Academy of Agriculture and Forestry Sciences'),
(76177, 64035, 'zh', 'name', 'ę”€ęžčŠ±åø‚å†œęž—ē§‘å­¦ē ”ē©¶é™¢ę˜Æē”±'),
(76178, 64036, 'en', 'name', 'Luoyang Cement Engineering Design and Research Institute'),
(76179, 64036, 'zh', 'name', 'ę“›é˜³ę°“ę³„å·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(76180, 64037, 'no_lang_code', 'name', 'NTST Forestry Machine Manufacture Installation (China)'),
(76181, 64037, 'zh', 'name', 'NTST ęž—äøšęœŗę¢°åˆ¶é€ å®‰č£…'),
(76182, 64038, 'no_lang_code', 'name', 'Luoyang Sanlong Installation and Maintenance (China)'),
(76183, 64038, 'zh', 'name', 'ę“›é˜³äø‰éš†å®‰č£…ę£€äæ®ęœ‰é™å…¬åø'),
(76184, 64039, 'no_lang_code', 'name', 'Shandong Lianxing Energy Group (China)'),
(76185, 64039, 'zh', 'name', 'å±±äøœč”ę˜Ÿčƒ½ęŗé›†å›¢'),
(76186, 64040, 'no_lang_code', 'name', 'Jinan Municipal Engineering Design & Research Institute (China)'),
(76187, 64040, 'zh', 'name', 'ęµŽå—åø‚åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(76188, 64041, 'en', 'name', 'Material and Industrial Technology Research Institute Beijing'),
(76189, 64041, 'zh', 'name', 'ę–°ęę–™äøŽäŗ§äøšęŠ€ęœÆåŒ—äŗ¬ē ”ē©¶é™¢'),
(76190, 64042, 'no_lang_code', 'name', 'China Railway Design Corporation (China)'),
(76191, 64042, 'zh', 'name', 'äø­å›½é“č·Æč®¾č®”é›†å›¢ęœ‰é™å…¬åø'),
(76192, 64043, 'en', 'name', 'Shandong Transportation Research Institute'),
(76193, 64043, 'zh', 'name', 'å±±äøœēœäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(76194, 64044, 'en', 'name', 'Qingdao Aerospace Semiconductor Research Institute'),
(76195, 64044, 'zh', 'name', 'é’å²›čˆŖå¤©åŠåÆ¼ä½“ē ”ē©¶ę‰€ęœ‰é™å…¬åøåŽŸ'),
(76196, 64045, 'en', 'name', 'Shanghai Electric Tool Research Institute'),
(76197, 64045, 'zh', 'name', 'äøŠęµ·ē”µåŠØå·„å…·ē ”ē©¶ę‰€'),
(76198, 64046, 'en', 'name', 'Shanghai Pesticide Research Institute'),
(76199, 64046, 'zh', 'name', 'äøŠęµ·åø‚å†œčÆē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(76200, 64047, 'no_lang_code', 'name', 'Shanghai FRP Research Institute (China)'),
(76201, 64047, 'zh', 'name', 'äøŠęµ·ēŽ»ē’ƒé’¢ē ”ē©¶ę‰€'),
(76202, 64048, 'no_lang_code', 'name', 'Decai Decoration (China)'),
(76203, 64048, 'zh', 'name', 'å¾·ę‰č£é£¾č‚”ä»½ęœ‰é™å…¬'),
(76204, 64049, 'no_lang_code', 'name', 'Qingdao Installation & Construction (China)'),
(76205, 64049, 'zh', 'name', 'é’å²›å®‰č£…å»ŗč®¾č‚”ä»½ęœ‰é™å…¬åø'),
(76206, 64050, 'no_lang_code', 'name', 'Shanghai Huayi Group (China)'),
(76207, 64050, 'zh', 'name', 'äøŠęµ·åŽč°Šļ¼ˆé›†å›¢ļ¼‰å…¬åø'),
(76208, 64051, 'no_lang_code', 'name', 'Shanghai Industrial Boiler Research Institute (China)'),
(76209, 64051, 'zh', 'name', 'äøŠęµ·å·„äøšé”…ē‚‰ē ”ē©¶ę‰€'),
(76210, 64052, 'en', 'name', 'Qingdao Institute of Animal Husbandry and Veterinary Medicine'),
(76211, 64052, 'zh', 'name', 'é’å²›åø‚ē•œē‰§å…½åŒ»ē ”ē©¶ę‰€'),
(76212, 64053, 'en', 'name', 'Shanghai Industrial Technology Institute'),
(76213, 64053, 'zh', 'name', 'äøŠęµ·å·„äøšęŠ€ęœÆå­¦é™¢'),
(76214, 64054, 'en', 'name', 'Shaanxi Institute of International Trade & Commerce'),
(76215, 64054, 'zh', 'name', '陕脿国际商蓸学院'),
(76216, 64055, 'en', 'name', 'Shanghai Laser Technology Institute'),
(76217, 64055, 'zh', 'name', 'äøŠęµ·åø‚ęæ€å…‰ęŠ€ęœÆē ”ē©¶ę‰€'),
(76218, 64056, 'en', 'name', 'Shaanxi Railway Institute'),
(76219, 64056, 'zh', 'name', '陕脿铁道学院'),
(76220, 64057, 'no_lang_code', 'name', 'China Post (China)'),
(76221, 64057, 'zh', 'name', '中国邮政'),
(76222, 64058, 'en', 'name', 'Qiqihar Institute of Engineering'),
(76223, 64058, 'zh', 'name', 'é½é½å“ˆå°”å·„ēØ‹å­¦é™¢'),
(76224, 64059, 'no_lang_code', 'name', 'Shanghai Institute of Process Automation Instrumentation (China)'),
(76225, 64059, 'zh', 'name', 'äøŠęµ·å·„äøšč‡ŖåŠØåŒ–ä»Ŗč”Øē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(76226, 64060, 'no_lang_code', 'name', 'CNEX (China)'),
(76227, 64061, 'en', 'name', 'Shandong Institute of Agricultural Sustainable Development'),
(76228, 64061, 'zh', 'name', 'å±±äøœå†œäøšåÆęŒē»­å‘å±•ē ”ē©¶é™¢'),
(76229, 64062, 'en', 'name', 'Shanghai Landscape Architectural Design Research institute'),
(76230, 64062, 'zh', 'name', 'äøŠęµ·å›­ęž—å»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(76231, 64063, 'en', 'name', 'Shanghai Tongji Urban Planning and Design Institute'),
(76232, 64063, 'zh', 'name', 'äøŠęµ·åŒęµŽåŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢åœØåŒ'),
(76233, 64064, 'no_lang_code', 'name', 'Shanghai Urban Transportation Design Institute (China)'),
(76234, 64064, 'zh', 'name', 'äøŠęµ·åø‚äŗ¤é€šč®¾č®”é™¢'),
(76235, 64065, 'en', 'name', 'Services Australia'),
(76236, 64066, 'en', 'name', 'Shandong Academy of Forestry'),
(76237, 64066, 'zh', 'name', 'å±±äøœēœęž—äøšē§‘å­¦é™¢'),
(76238, 64067, 'en', 'name', 'Light Industry Hangzhou Electromechanical Design Institute'),
(76239, 64067, 'zh', 'name', 'č½»å·„äøšę­å·žęœŗē”µč®¾č®”ē ”ē©¶é™¢'),
(76240, 64068, 'en', 'name', 'Changzhou Vocational Institute of Light Industry'),
(76241, 64068, 'zh', 'name', 'åøøå·žč½»å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(76242, 64069, 'en', 'name', 'Beijing Institute of Water'),
(76243, 64069, 'zh', 'name', 'åŒ—äŗ¬ę°“ē ”ē©¶ę‰€'),
(76244, 64070, 'en', 'name', 'Hunan Energy Research Institute');
INSERT INTO `ror_settings` VALUES
(76245, 64070, 'zh', 'name', 'ę¹–å—ēœčƒ½ęŗē ”ē©¶ę‰€'),
(76246, 64071, 'en', 'name', 'Guangdong Institute of Arts and Sciences'),
(76247, 64071, 'zh', 'name', 'å¹æäøœę–‡ē†čŒäøšå­¦é™¢'),
(76248, 64072, 'no_lang_code', 'name', 'Shandong Huanneng Design Institute (China)'),
(76249, 64072, 'zh', 'name', 'å±±äøœēŽÆčƒ½č®¾č®”é™¢'),
(76250, 64073, 'en', 'name', 'Shandong Institute of Commerce & Technology'),
(76251, 64073, 'zh', 'name', 'å±±äøœå•†äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(76252, 64074, 'no_lang_code', 'name', 'Tianjin Aolian Special Steel Structure Installation Engineering (China)'),
(76253, 64074, 'zh', 'name', 'å¤©ę“„åø‚å„„č”ē‰¹é’¢ē»“ęž„å®‰č£…å·„ēØ‹ęœ‰é™å…¬åø'),
(76254, 64075, 'no_lang_code', 'name', 'Shanxi Industrial Equipment Installation Group (Taiwan)'),
(76255, 64075, 'zh', 'name', 'å±±č„æēœå·„äøšč®¾å¤‡å®‰č£…é›†å›¢ęœ‰é™å…¬åø'),
(76256, 64076, 'no_lang_code', 'name', 'Shantou Light Industrial Machinery Factory (China)'),
(76257, 64076, 'zh', 'name', 'ę±•å¤“č½»å·„ęœŗę¢°åŽ‚ęœ‰é™å…¬åø'),
(76258, 64077, 'en', 'name', 'Shandong Academy of Pharmaceutical Sciences'),
(76259, 64077, 'zh', 'name', 'å±±äøœēœčÆå­¦ē§‘å­¦é™¢'),
(76260, 64078, 'en', 'name', 'Tianjin Institute of Advanced Technology'),
(76261, 64078, 'zh', 'name', 'å¤©ę“„äø­ē§‘å…ˆčæ›ęŠ€ęœÆē ”ē©¶é™¢'),
(76262, 64079, 'no_lang_code', 'name', 'Shenzhen Metro (China)'),
(76263, 64079, 'zh', 'name', 'ę·±åœ³åø‚åœ°é“'),
(76264, 64080, 'en', 'name', 'Shandong Ocean and Fisheries Department'),
(76265, 64080, 'zh', 'name', 'å±±äøœēœęµ·ę“‹äøŽęø”äøšåŽ…'),
(76266, 64081, 'en', 'name', 'Shanxi Transportation Research Institute'),
(76267, 64081, 'zh', 'name', 'å±±č„æēœäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(76268, 64082, 'en', 'name', 'Shanxi Provincial Traffic Planning Survey and Design Institute'),
(76269, 64082, 'zh', 'name', 'å±±č„æēœäŗ¤é€šč§„åˆ’å‹˜åÆŸč®¾č®”é™¢'),
(76270, 64083, 'no_lang_code', 'name', 'Tianjin Research Institute of Electric Science (China)'),
(76271, 64083, 'zh', 'name', 'å¤©ę“„ē”µę°”ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(76272, 64084, 'no_lang_code', 'name', 'Zibo Qixiang Petrochemical Industry Group (China)'),
(76273, 64084, 'zh', 'name', 'ę·„åšåÆē„„ēŸ³åŒ–å·„äøšé›†å›¢'),
(76274, 64085, 'no_lang_code', 'name', 'Tianjin Food Group (China)'),
(76275, 64085, 'zh', 'name', 'å¤©ę“„é£Ÿå“é›†å›¢'),
(76276, 64086, 'no_lang_code', 'name', 'Tianjin Ganghang Installation Engineering (China)'),
(76277, 64086, 'zh', 'name', 'å¤©ę“„ęøÆčˆŖå®‰č£…å·„ēØ‹ęœ‰é™č“£ä»»å…¬åø'),
(76278, 64087, 'en', 'name', 'Shandong Special Equipment Inspection Institute'),
(76279, 64087, 'zh', 'name', 'å±±äøœēœē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(76280, 64088, 'no_lang_code', 'name', 'Shandong Academy of Textile Science (China)'),
(76281, 64088, 'zh', 'name', 'å±±äøœēŗŗē»‡ē§‘å­¦ē ”ē©¶é™¢'),
(76282, 64089, 'en', 'name', 'Solar Energy Research Institute of Sun Yat-sen University'),
(76283, 64089, 'zh', 'name', 'é”ŗå¾·äø­å±±å¤§å­¦å¤Ŗé˜³čƒ½ē ”ē©¶é™¢ē”±'),
(76284, 64090, 'no_lang_code', 'name', 'Tianjin Geothermal Exploration, Development and Design Institute (China)'),
(76285, 64090, 'zh', 'name', 'å¤©ę“„åœ°ēƒ­å‹˜ęŸ„å¼€å‘č®¾č®”é™¢'),
(76286, 64091, 'en', 'name', 'Tianjin Heat Treatment Research Institute'),
(76287, 64091, 'zh', 'name', 'å¤©ę“„åø‚ēƒ­å¤„ē†ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(76288, 64092, 'en', 'name', 'Sichuan Dongpo China Kimchi Industrial Technology Research Institute'),
(76289, 64092, 'zh', 'name', 'å››å·äøœå”äø­å›½ę³”čœäŗ§äøšęŠ€ęœÆē ”ē©¶é™¢ę˜Æåŗ”ę³”'),
(76290, 64093, 'en', 'name', 'Tianjin Institute of Metrological Supervision Testing'),
(76291, 64093, 'zh', 'name', 'å¤©ę“„č®”é‡ē›‘ē£ę£€ęµ‹ē§‘å­¦ē ”ē©¶é™¢'),
(76292, 64094, 'no_lang_code', 'name', 'Wolong Electric Group Hangzhou Research Institute (China)'),
(76293, 64095, 'en', 'name', 'Sichuan Machinery Research and Design Institute'),
(76294, 64095, 'zh', 'name', 'å››å·ēœęœŗę¢°ē ”ē©¶č®¾č®”é™¢ęœŗ'),
(76295, 64096, 'en', 'name', 'Suzhou Electronic Products Inspection'),
(76296, 64096, 'zh', 'name', 'č‹å·žē”µå­äŗ§å“ę£€éŖŒę‰€'),
(76297, 64097, 'no_lang_code', 'name', 'Golden Concord Group (China)'),
(76298, 64097, 'zh', 'name', '金色 康科德集团'),
(76299, 64098, 'en', 'name', 'Tianjin Metallurgical Vocational Technical College'),
(76300, 64098, 'zh', 'name', 'å¤©ę“„å†¶é‡‘čŒäøšęŠ€ęœÆå­¦é™¢'),
(76301, 64099, 'no_lang_code', 'name', 'ARTS Group (China)'),
(76302, 64099, 'zh', 'name', 'č‰ŗęœÆ 组'),
(76303, 64100, 'en', 'name', 'Suzhou Industrial Park Institute of Services Outsourcing'),
(76304, 64100, 'zh', 'name', 'č‹å·žå·„äøšå›­åŒŗęœåŠ”å¤–åŒ…čŒäøšå­¦é™¢'),
(76305, 64101, 'no_lang_code', 'name', 'Sinograin (China)'),
(76306, 64101, 'zh', 'name', '中储粮'),
(76307, 64102, 'en', 'name', 'Tianjin North Garden Ecological Environmental Engineering Research Institute'),
(76308, 64102, 'zh', 'name', 'å¤©ę“„åŒ—å›­ē”Ÿę€ēŽÆå¢ƒå·„ēØ‹ē ”ē©¶ę‰€'),
(76309, 64103, 'en', 'name', 'Wuhan Modern Urban Agriculture Planning and Design Institute'),
(76310, 64103, 'zh', 'name', 'ę­¦ę±‰ēŽ°ä»£éƒ½åø‚å†œäøšč§„åˆ’č®¾č®”é™¢č‚”ä»½ęœ‰é™å…¬'),
(76311, 64104, 'no_lang_code', 'name', 'MEMS RIGHT (China)'),
(76312, 64105, 'en', 'name', 'Wuhan Municipal Engineering Design & Research Institute'),
(76313, 64105, 'zh', 'name', 'ę­¦ę±‰åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åøē®€ä»‹'),
(76314, 64106, 'en', 'name', 'Suzhou Institute of Trade & Commerce'),
(76315, 64106, 'zh', 'name', 'č‹å·žåø‚å•†č“øå­¦é™¢'),
(76316, 64107, 'no_lang_code', 'name', 'Xianyang Research and Design Institute of Ceramics (China)'),
(76317, 64107, 'zh', 'name', 'å’øé˜³é™¶ē“·ē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åø'),
(76318, 64108, 'en', 'name', 'Suzhou Polytechnic Institute of Agriculture'),
(76319, 64108, 'zh', 'name', 'č‹å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(76320, 64109, 'no_lang_code', 'name', 'Tianjin Rubber Industry Institute (China)'),
(76321, 64109, 'zh', 'name', 'å¤©ę“„åø‚ę©”čƒ¶å·„äøšē ”ē©¶ę‰€'),
(76322, 64110, 'en', 'name', 'Wuhan Ship Development & Design Institute'),
(76323, 64110, 'zh', 'name', 'ę­¦ę±‰čˆ¹čˆ¶č®¾č®”ē ”ē©¶é™¢'),
(76324, 64111, 'no_lang_code', 'name', 'System Equipment (China)'),
(76325, 64111, 'zh', 'name', 'ē³»ē»Ÿč®¾å¤‡'),
(76326, 64112, 'en', 'name', 'Tianjin Special Equipment Supervision and Inspection Technology Research Institute'),
(76327, 64112, 'zh', 'name', 'å¤©ę“„åø‚ē‰¹ē§č®¾å¤‡ē›‘ē£ę£€ęŸ„ę£€éŖŒęŠ€ęœÆē ”ē©¶é™¢'),
(76328, 64113, 'en', 'name', 'Tianjin Textile Machinery and Equipment Research Institute'),
(76329, 64113, 'zh', 'name', 'å¤©ę“„ēŗŗē»‡ęœŗę¢°å™Øęē ”ē©¶ę‰€'),
(76330, 64114, 'en', 'name', 'Xinjiang Institute of Engineering'),
(76331, 64114, 'zh', 'name', '新疆巄程学院'),
(76332, 64115, 'no_lang_code', 'name', 'Tianjin Energy Investment Group (China)'),
(76333, 64115, 'zh', 'name', 'å¤©ę“„čƒ½ęŗęŠ•čµ„é›†å›¢ęœ‰é™å…¬åø'),
(76334, 64116, 'en', 'name', 'Anhui Institute of Robotics Industrial Technology Research Institute'),
(76335, 64116, 'zh', 'name', 'å®‰å¾½å·„ēØ‹å¤§å­¦ęœŗå™Øäŗŗäŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(76336, 64117, 'en', 'name', 'Xinjiang Industry Technical College'),
(76337, 64117, 'zh', 'name', 'ę–°ē–†č½»å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(76338, 64118, 'en', 'name', 'Wuhan Academy of Agricultural Sciences'),
(76339, 64118, 'zh', 'name', 'ę­¦ę±‰åø‚å†œäøšē§‘å­¦é™¢'),
(76340, 64119, 'no_lang_code', 'name', 'Taixing First Construction Group (China)'),
(76341, 64119, 'zh', 'name', 'ę³°å…“äø€å»ŗå»ŗč®¾é›†å›¢ęœ‰é™å…¬åø'),
(76342, 64120, 'no_lang_code', 'name', 'Xinjiang Machinery Research Institute (China)'),
(76343, 64120, 'zh', 'name', 'ę–°ē–†ęœŗę¢°ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(76344, 64121, 'en', 'name', 'Wuhu Hit Robot Technology Research Institute'),
(76345, 64121, 'zh', 'name', 'å“ˆē‰¹ęœŗå™Øäŗŗē ”ē©¶é™¢'),
(76346, 64122, 'en', 'name', 'Tianjin Academy for Intelligent Recognition Technologies'),
(76347, 64122, 'zh', 'name', 'å¤©ę“„äø­ē§‘ę™ŗčƒ½čÆ†åˆ«äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(76348, 64123, 'no_lang_code', 'name', 'Lanzhou Great Wall Electrical Corporation'),
(76349, 64123, 'zh', 'name', 'å…°å·žé•æåŸŽē”µå·„č‚”ä»½ęœ‰é™å…¬åø'),
(76350, 64124, 'en', 'name', 'Xinjiang Uygur Autonomous Region Institute Inspection of Special Equipment'),
(76351, 64124, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(76352, 64125, 'en', 'name', 'Guomao Engineering Design Institute'),
(76353, 64125, 'zh', 'name', '国蓸巄程设讔院'),
(76354, 64126, 'en', 'name', 'Xinjiang Uygur Autonomous Region Product Quality Supervision and Inspection Institute'),
(76355, 64126, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗäŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒē ”ē©¶é™¢'),
(76356, 64127, 'en', 'name', 'Wuxi Dongfang Environmental Engineering Design Institute'),
(76357, 64127, 'zh', 'name', 'ę— é””åø‚äøœę–¹ēŽÆå¢ƒå·„ēØ‹č®¾č®”ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(76358, 64128, 'no_lang_code', 'name', 'Coal Industry Taiyuan Design and Research Institute (China)'),
(76359, 64128, 'zh', 'name', 'ē…¤ē‚­å·„äøšå¤ŖåŽŸč®¾č®”ē ”ē©¶é™¢'),
(76360, 64129, 'en', 'name', 'Wuxi Fuel Injection Equipment Research Institute'),
(76361, 64129, 'zh', 'name', 'äø­å›½ē¬¬äø€ę±½č½¦č‚”ä»½ęœ‰é™å…¬åøę— é””ę²¹ę³µę²¹å˜“ē ”ē©¶ę‰€'),
(76362, 64130, 'no_lang_code', 'name', 'Wuxi Industrial Equipment Installation (China)'),
(76363, 64130, 'zh', 'name', 'ę— é””åø‚å·„äøšč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(76364, 64131, 'no_lang_code', 'name', 'Tongling Nonferrous Metals Group Holding (China)'),
(76365, 64131, 'zh', 'name', 'é“œé™µęœ‰č‰²é‡‘å±žé›†å›¢ęŽ§č‚”ęœ‰é™å…¬åø'),
(76366, 64132, 'en', 'name', 'Yancheng Vocational Institute of Industry Technology'),
(76367, 64132, 'zh', 'name', 'ē›åŸŽå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(76368, 64133, 'en', 'name', 'Yangzhou Polytechnic Institute'),
(76369, 64133, 'zh', 'name', 'ę‰¬å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(76370, 64134, 'en', 'name', 'Taiyuan Institute of Technology'),
(76371, 64135, 'en', 'name', 'Wuxi Pneumatic Technology Research Institute'),
(76372, 64136, 'no_lang_code', 'name', 'Chambroad Chemical Industry Research Institute (China)'),
(76373, 64136, 'zh', 'name', 'é¦™ęøÆåŒ–å­¦å·„äøšē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(76374, 64137, 'en', 'name', 'Wuxi Municipal Product Quality Supervision and Inspection Institute'),
(76375, 64137, 'zh', 'name', 'ę— é””åø‚äŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒé™¢'),
(76376, 64138, 'no_lang_code', 'name', 'Wanda Group (China)'),
(76377, 64138, 'zh', 'name', '万达集团'),
(76378, 64139, 'no_lang_code', 'name', 'Yueyang Changling Equipment Research Institute (China)'),
(76379, 64139, 'zh', 'name', 'å²³é˜³é•æå²­č®¾å¤‡ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(76380, 64140, 'en', 'name', 'Wuxi Wind Power Design and Research Institute'),
(76381, 64140, 'zh', 'name', 'ę— é””é£Žē”µč®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(76382, 64141, 'en', 'name', 'First Research Institute of the Ministry of Public Security'),
(76383, 64141, 'zh', 'name', 'å…¬å®‰éƒØē¬¬äø€ē ”ē©¶ę‰€'),
(76384, 64142, 'no_lang_code', 'name', 'Zhejiang Modern Chinese Medicine and Natural Medicine Research Institute (China)'),
(76385, 64142, 'zh', 'name', 'ęµ™ę±ŸēŽ°ä»£äø­čÆäøŽå¤©ē„¶čÆē‰©ē ”ē©¶é™¢ęœ‰é™å…¬åøäŗŽ'),
(76386, 64143, 'en', 'name', 'The Third Institute of the Ministry of Public Security'),
(76387, 64143, 'zh', 'name', 'å…¬å®‰éƒØē¬¬äø‰ē ”ē©¶ę‰€'),
(76388, 64144, 'en', 'name', 'Zhejiang Province Institute of Architectural Design and Research'),
(76389, 64144, 'zh', 'name', 'ęµ™ę±Ÿēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(76390, 64145, 'no_lang_code', 'name', 'Yunnan Investment Group (China)'),
(76391, 64145, 'zh', 'name', 'äŗ‘ęŠ•é›†å›¢'),
(76392, 64146, 'en', 'name', 'Zhejiang Provincial Institute of Communications Planning,Design & Research'),
(76393, 64146, 'zh', 'name', 'ęµ™ę±Ÿēœäŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(76394, 64147, 'no_lang_code', 'name', 'Zheng yan Seed (China)'),
(76395, 64147, 'zh', 'name', 'éƒ‘ē‡•ē§å­'),
(76396, 64148, 'no_lang_code', 'name', 'Zhe jiang Research Institute of Traditional Chinese Medicine (China)'),
(76397, 64148, 'zh', 'name', 'ęµ™ę±Ÿēœäø­åŒ»čÆē ”ē©¶é™¢'),
(76398, 64149, 'en', 'name', 'Wuzhou Food and Drug Administration'),
(76399, 64149, 'zh', 'name', 'ę¢§å·žåø‚é£Ÿå“čÆå“ē›‘ē£ē®”ē†å±€'),
(76400, 64150, 'no_lang_code', 'name', 'Zhejiang Seahead Ship Design And Research Institute (China)'),
(76401, 64150, 'zh', 'name', 'ęµ™ę±Ÿę¬£ęµ·čˆ¹čˆ¶č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(76402, 64151, 'en', 'name', 'Zhejiang Institute of Modern Textile Industry'),
(76403, 64151, 'zh', 'name', 'ęµ™ę±ŸēœēŽ°ä»£ēŗŗē»‡å·„äøšē ”ē©¶é™¢'),
(76404, 64152, 'en', 'name', 'Zhejiang Metallurgical Research Institute'),
(76405, 64152, 'zh', 'name', 'ęµ™ę±Ÿå†¶é‡‘ē ”ē©¶é™¢'),
(76406, 64153, 'en', 'name', 'Yunnan Machinery Research and Design Institute'),
(76407, 64153, 'zh', 'name', 'äŗ‘å—ēœęœŗę¢°ē ”ē©¶č®¾č®”é™¢'),
(76408, 64154, 'en', 'name', 'Zhangzhou Vocational and Technical College'),
(76409, 64154, 'zh', 'name', 'ę¼³å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(76410, 64155, 'en', 'name', 'Academy of Philosophy'),
(76411, 64155, 'ko', 'name', 'ģ² ķ•™ ģ•„ģ¹“ė°ėÆø'),
(76412, 64156, 'no_lang_code', 'name', 'ZheJiang East Crystal Electronic (China)'),
(76413, 64156, 'zh', 'name', 'ęµ™ę±Ÿäøœę™¶ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(76414, 64157, 'no_lang_code', 'name', 'Jiangsu Yonggang Group (China)'),
(76415, 64158, 'en', 'name', 'Korean Political Science Association'),
(76416, 64158, 'ko', 'name', 'ķ•œźµ­ģ •ģ¹˜ķ•™ķšŒ'),
(76417, 64159, 'en', 'name', 'Tasan Cultural Foundation'),
(76418, 64159, 'ko', 'name', 'ė‹¤ģ‚°ķ•™ģˆ ė¬øķ™”ģž¬ė‹Øģ€ 근세'),
(76419, 64160, 'ko', 'name', '(주)ģ—ģ–“ė ˆģø'),
(76420, 64160, 'no_lang_code', 'name', 'Airrane (South Korea)'),
(76421, 64161, 'ko', 'name', '(주)ģ…€ė£Øė©”ė“œėŠ”'),
(76422, 64161, 'no_lang_code', 'name', 'Cellumed (South Korea)'),
(76423, 64162, 'en', 'name', 'Korean Association for Radiation Application'),
(76424, 64162, 'ko', 'name', 'ķ•œźµ­ė°©ģ‚¬ģ„ ģ§„ķ„ķ˜‘ķšŒ'),
(76425, 64163, 'no_lang_code', 'name', 'Airport Facilities Management (South Korea)'),
(76426, 64163, 'ko', 'name', '공항 ģ‹œģ„¤ ꓀리 (주)'),
(76427, 64164, 'en', 'name', 'The Korean Archeological Society'),
(76428, 64164, 'ko', 'name', 'ķ•œźµ­ź³ ź³ ķ•™ķšŒė¼ ķ•œė‹¤'),
(76429, 64165, 'en', 'name', 'Ajou Motor College'),
(76430, 64165, 'ko', 'name', '아주 ģžė™ģ°Ø ėŒ€ķ•™'),
(76431, 64166, 'ko', 'name', '(주)중앙산업'),
(76432, 64166, 'no_lang_code', 'name', 'Chungang Industry (South Korea)'),
(76433, 64167, 'en', 'name', 'Choonhae College of Health Sciences'),
(76434, 64167, 'ko', 'name', 'ģ¶©ķ•“ 걓강 과학 ėŒ€ķ•™'),
(76435, 64168, 'no_lang_code', 'name', 'ILJIN Group (South Korea)'),
(76436, 64168, 'ko', 'name', 'ģ¼ģ§„ 그룹'),
(76437, 64169, 'en', 'name', 'Institute for National Security Strategy'),
(76438, 64169, 'ko', 'name', 'źµ­ź°€ģ•ˆė³“ģ „ėžµģ—°źµ¬ģ›'),
(76439, 64170, 'no_lang_code', 'name', 'HIC (South Korea)'),
(76440, 64171, 'en', 'name', 'Korea Association for Nondestructive Testing'),
(76441, 64171, 'ko', 'name', 'ķ•œźµ­ ė¹„ķŒŒź““ 검사 ķ˜‘ķšŒ'),
(76442, 64172, 'no_lang_code', 'name', 'Jangan University'),
(76443, 64172, 'ko', 'name', 'ģž„ģ•ˆėŒ€ķ•™źµ'),
(76444, 64173, 'en', 'name', 'Korean Association for Radiation Protection'),
(76445, 64173, 'ko', 'name', 'ėŒ€ķ•œė°©ģ‚¬ģ„ ė°©ģ–“ķ•™ķšŒ'),
(76446, 64174, 'en', 'name', 'Art History Association Of Korea'),
(76447, 64174, 'ko', 'name', 'ķ•œźµ­ėÆøģˆ ģ‚¬ķ•™ķšŒ'),
(76448, 64175, 'en', 'name', 'The Association of East Asian Ancient Studies'),
(76449, 64175, 'ko', 'name', 'ź³ ėŒ€ ģ•„ģ‹œģ•„ ķ•™ķšŒ'),
(76450, 64176, 'no_lang_code', 'name', 'Jeil Pharmaceutical (South Korea)'),
(76451, 64176, 'ko', 'name', 'ģ œģ¼ģ•½ķ’ˆ ģ£¼ģ‹ķšŒģ‚¬'),
(76452, 64177, 'ko', 'name', '(사)ķ•œźµ­ėŠ„ė„ ķ˜‘ķšŒ'),
(76453, 64177, 'en', 'name', 'Korea Management Association'),
(76454, 64178, 'en', 'name', 'Andong Science University'),
(76455, 64178, 'ko', 'name', 'ģ•ˆė™ź³¼ķ•™ėŒ€ķ•™źµ'),
(76456, 64179, 'en', 'name', 'Keimyung College University'),
(76457, 64179, 'ko', 'name', '계명 문화 ėŒ€ķ•™'),
(76458, 64180, 'en', 'name', 'Korea Social Science Research Council'),
(76459, 64180, 'ko', 'name', 'ķ•œźµ­ģ‚¬ķšŒź³¼ķ•™ģ—°źµ¬ķ˜‘ģ˜ķšŒ'),
(76460, 64181, 'no_lang_code', 'name', 'Cheonan Yonam College'),
(76461, 64181, 'ko', 'name', 'ģ²œģ•ˆģ—°ģ•”ėŒ€ķ•™'),
(76462, 64182, 'no_lang_code', 'name', 'NDT Engineering & Aerospace (South Korea)'),
(76463, 64182, 'ko', 'name', 'ė¹„ķŒŒź““ ģ—”ģ§€ė‹ˆģ–“ė§ ė° ķ•­ź³µ 우주 ģœ ķ•œ 공사'),
(76464, 64183, 'no_lang_code', 'name', 'Cheongam College'),
(76465, 64183, 'ko', 'name', 'ģ²­ģ•”ėŒ€ķ•™źµ'),
(76466, 64184, 'en', 'name', 'Korean Comparative Education Society'),
(76467, 64184, 'ko', 'name', 'ķ•œźµ­ 비교 교윔 ķ•™ķšŒ'),
(76468, 64185, 'no_lang_code', 'name', 'Asia Pacific Satellite (South Korea)'),
(76469, 64186, 'en', 'name', 'Maekyung Institute for Safety and Environment'),
(76470, 64186, 'ko', 'name', '매경 ģ•ˆģ „ķ™˜ź²½ģ—°źµ¬ģ›'),
(76471, 64187, 'no_lang_code', 'name', 'AP Systems (South Korea)'),
(76472, 64187, 'ko', 'name', 'ģ—ģ“ķ”¼ģ‹œģŠ¤ķ…œ(주)'),
(76473, 64188, 'en', 'name', 'Korea Atomic Industrial Forum'),
(76474, 64188, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ģ‚°ģ—…ķšŒģ˜'),
(76475, 64189, 'en', 'name', 'Asian Comparative Folklore Society'),
(76476, 64189, 'ko', 'name', 'ģ•„ģ‹œģ•„ 비교 민간 ģ‚¬ķšŒ'),
(76477, 64190, 'en', 'name', 'Donga Broadcasting University of Arts'),
(76478, 64190, 'ko', 'name', 'ė™ģ•„ė°©ģ†”ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(76479, 64191, 'en', 'name', 'Korea Radiation Industry Association'),
(76480, 64191, 'ko', 'name', 'ķ•œźµ­ė°©ģ‚¬ģ„ ģ‚°ģ—…ķ•™ķšŒ'),
(76481, 64192, 'en', 'name', 'Institute of Justice'),
(76482, 64192, 'ko', 'name', 'ķ•™ķšŒ ģ •ģ˜ģ˜'),
(76483, 64193, 'en', 'name', 'Korea Medical Devices Industry Association'),
(76484, 64193, 'ko', 'name', 'ķ•œźµ­ģ˜ė£Œźø°źø°ģ‚°ģ—…ķ˜‘ķšŒ'),
(76485, 64194, 'en', 'name', 'Federation of Busan Science and Technology'),
(76486, 64194, 'ko', 'name', 'ė¶€ģ‚°ź³¼ķ•™źø°ģˆ ķ˜‘ģ˜ķšŒ'),
(76487, 64195, 'no_lang_code', 'name', 'Korea Smart Manufacturing Industry Association (South Korea)'),
(76488, 64195, 'ko', 'name', 'ķ•œźµ­ 스마트 ģ œģ”°ģ—… ķ˜‘ķšŒ'),
(76489, 64196, 'en', 'name', 'Korean Technical Management Institute'),
(76490, 64196, 'ko', 'name', 'ķ•œźµ­źø°ģˆ ź²½ģ˜ģ—°źµ¬ģ›'),
(76491, 64197, 'en', 'name', 'Donggwon Science and Technology University'),
(76492, 64197, 'ko', 'name', 'ė™ģ›ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(76493, 64198, 'en', 'name', 'Chinese Literature Society'),
(76494, 64198, 'ko', 'name', 'ģ¤‘źµ­ģøė¬øķ•™ķšŒ'),
(76495, 64199, 'no_lang_code', 'name', 'Bexel (South Korea)'),
(76496, 64199, 'ko', 'name', '범셀'),
(76497, 64200, 'no_lang_code', 'name', 'FutureChem (South Korea)'),
(76498, 64200, 'ko', 'name', 'ėÆøėž˜ģ˜ 화학'),
(76499, 64201, 'en', 'name', 'The Society of Modern Literature Theory'),
(76500, 64201, 'ko', 'name', 'ķ˜„ėŒ€ 문학 ģ“ė”  ķ•™ķšŒ'),
(76501, 64202, 'no_lang_code', 'name', 'Innovation Performance Group (South Korea)'),
(76502, 64202, 'ko', 'name', 'ģ•„ģ“ķ”¼ź·øė£¹'),
(76503, 64203, 'en', 'name', 'Asia Foundation'),
(76504, 64203, 'ko', 'name', 'ģ•„ģ‹œģ•„ ģž¬ė‹Ø'),
(76505, 64204, 'en', 'name', 'The Korean Folklore Society'),
(76506, 64204, 'ko', 'name', 'ķ•œźµ­ ėÆ¼ģ† ķ•™ķšŒ'),
(76507, 64205, 'en', 'name', 'Korea Research Institute for Construction Policy'),
(76508, 64205, 'ko', 'name', 'ķ•œźµ­ź±“ģ„¤źø°ģˆ ģ—°źµ¬ģ›'),
(76509, 64206, 'no_lang_code', 'name', 'Kai Biotech (South Korea)'),
(76510, 64206, 'ko', 'name', 'ė°”ģ“ģ˜¤ ķ…Œķ¬ ģ£¼ģ‹ ķšŒģ‚¬ ģ¹“ģ“'),
(76511, 64207, 'no_lang_code', 'name', 'Gumi Electronics & Information Technology Research Institute (South Korea)'),
(76512, 64207, 'ko', 'name', 'źµ¬ėÆøģ „ģžģ •ė³“źø°ģˆ ģ›'),
(76513, 64208, 'no_lang_code', 'name', 'Daegu TechnoPark'),
(76514, 64208, 'ko', 'name', 'ėŒ€źµ¬ķ…Œķ¬ė…øķŒŒķ¬'),
(76515, 64209, 'en', 'name', 'Korea Nuclear International Cooperation Foundation'),
(76516, 64209, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ķ˜‘ė „ģž¬ė‹Ø'),
(76517, 64210, 'en', 'name', 'Economic Geographical Society of Korea'),
(76518, 64210, 'ko', 'name', 'ķ•œźµ­ź²½ģ œģ§€ė¦¬ķ•™ķšŒ'),
(76519, 64211, 'en', 'name', 'Korea Economic History Society'),
(76520, 64211, 'ko', 'name', 'ź²½ģ œģ‚¬ķ•™ķšŒ'),
(76521, 64212, 'en', 'name', 'Korean Studies Institute'),
(76522, 64212, 'ko', 'name', 'ķ•œźµ­źµ­ķ•™ģ§„ķ„ģ›'),
(76523, 64213, 'no_lang_code', 'name', 'Boditech Med (South Korea)'),
(76524, 64213, 'ko', 'name', '바디 ķ… ė©”ė“œ'),
(76525, 64214, 'en', 'name', 'Korea Testing Certification'),
(76526, 64214, 'ko', 'name', 'ķ•œźµ­źø°ź³„ģ „źø°ģ „ģžģ‹œķ—˜ģ—°źµ¬ģ›'),
(76527, 64215, 'no_lang_code', 'name', 'Ecosense (South Korea)'),
(76528, 64215, 'ko', 'name', 'ģ—ģ½”ģ„¼ģŠ¤'),
(76529, 64216, 'en', 'name', 'Jeonnam Bioindustry Foundation'),
(76530, 64216, 'ko', 'name', '전남 ė°”ģ“ģ˜¤ ģ‚°ģ—… ģž¬ė‹Ø'),
(76531, 64217, 'no_lang_code', 'name', 'Adone (South Korea)'),
(76532, 64217, 'ko', 'name', 'ģ£¼ģ‹ķšŒģ‚¬ ģ—ė“œģ›'),
(76533, 64218, 'no_lang_code', 'name', 'Sejong Institute'),
(76534, 64218, 'ko', 'name', 'ģ„øģ¢…ģ—°źµ¬ģ†Œ'),
(76535, 64219, 'en', 'name', 'International Tuberculosis Research Center'),
(76536, 64219, 'ko', 'name', 'źµ­ģ œź²°ķ•µģ—°źµ¬ģ†Œ'),
(76537, 64220, 'en', 'name', 'Center of Excellence in Wireless & Information Technology'),
(76538, 64221, 'no_lang_code', 'name', 'Alteogen (South Korea)'),
(76539, 64221, 'ko', 'name', 'ģ•Œķ…Œģ˜¤ģ  '),
(76540, 64222, 'en', 'name', 'Korea Medicine Research Institute'),
(76541, 64222, 'ko', 'name', 'ķ•œźµ­ ģ˜ģ•½ 연구원'),
(76542, 64223, 'en', 'name', 'Chungbuk Provincial College'),
(76543, 64223, 'ko', 'name', 'ģ¶©ė¶ė„ė¦½ėŒ€ķ•™'),
(76544, 64224, 'en', 'name', 'Busan Digital University'),
(76545, 64224, 'ko', 'name', '부산 디지털 ėŒ€ķ•™źµ'),
(76546, 64225, 'en', 'name', 'Chungkang College of Cultural Industries'),
(76547, 64225, 'ko', 'name', 'ģ²­ź°•ė¬øķ™”ģ‚°ģ—…ėŒ€ķ•™źµ'),
(76548, 64226, 'en', 'name', 'English Language and Literature Association of Korea'),
(76549, 64226, 'ko', 'name', 'ķ•œźµ­ģ˜ģ–“ģ˜ė¬øķ•™ķšŒ'),
(76550, 64227, 'en', 'name', 'French Culture and Arts Society'),
(76551, 64227, 'ko', 'name', 'ķ”„ėž‘ģŠ¤ė¬øķ™”ģ˜ˆģˆ ķ•™ķšŒ'),
(76552, 64228, 'en', 'name', 'The Busan Metropolitan Simin Municipal Library'),
(76553, 64228, 'ko', 'name', 'ė¶€ģ‚°ģ‹œė¦½ģ‹œėÆ¼ė„ģ„œź“€'),
(76554, 64229, 'fr', 'name', 'Institut FranƧais de SƩoul'),
(76555, 64230, 'no_lang_code', 'name', 'Partron (South Korea)'),
(76556, 64230, 'ko', 'name', '파트딠'),
(76557, 64231, 'en', 'name', 'The French Society of Korea'),
(76558, 64231, 'ko', 'name', 'ķ•œźµ­ķ”„ėž‘ģŠ¤ķ•™ķšŒ'),
(76559, 64232, 'ko', 'name', '(ģž¬ė‹Ø)ė¶€ģ‚°ķ…Œķ¬ė…øķŒŒķ¬'),
(76560, 64232, 'no_lang_code', 'name', 'Busan TechnoPark'),
(76561, 64233, 'en', 'name', '21st Century Political Science Association'),
(76562, 64233, 'ko', 'name', '21ģ„øźø°ģ •ģ¹˜ķ•™ķšŒ'),
(76563, 64234, 'no_lang_code', 'name', 'Fusion Software (South Korea)'),
(76564, 64235, 'en', 'name', 'Northeast Asian Forest Forum'),
(76565, 64235, 'ko', 'name', 'ė™ė¶ģ•„ ģ‚°ė¦¼ķ¬ėŸ¼'),
(76566, 64236, 'ko', 'name', '(주)캐리마'),
(76567, 64236, 'no_lang_code', 'name', 'Carima (South Korea)'),
(76568, 64237, 'en', 'name', 'Korean Women''s Literature'),
(76569, 64237, 'ko', 'name', 'ź³ ė ¤ 사항'),
(76570, 64238, 'en', 'name', 'Future Early Childhood Education Society'),
(76571, 64238, 'ko', 'name', 'ėÆøėž˜ģœ ģ•„źµģœ”ķ•™ķšŒ'),
(76572, 64239, 'en', 'name', 'Hallym University of Graduate Studies'),
(76573, 64239, 'ko', 'name', 'ķ•œė¦¼źµ­ģ œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(76574, 64240, 'en', 'name', 'Korea Infrastructure Organization for Nanotechnology'),
(76575, 64240, 'ko', 'name', 'źµ­ź°€ė‚˜ė…øģøķ”„ė¼ķ˜‘ģ˜ģ²“'),
(76576, 64241, 'en', 'name', 'Korean Society for Indian Philosophy'),
(76577, 64241, 'ko', 'name', 'ģøė„ģ² ķ•™ķšŒ'),
(76578, 64242, 'en', 'name', 'Seoul Business Agency'),
(76579, 64243, 'en', 'name', 'Jeju participation environmental solidarity'),
(76580, 64243, 'ko', 'name', '제주 ģ°øģ—¬ ķ™˜ź²½ ģ—°ėŒ€'),
(76581, 64244, 'en', 'name', 'Jeju Regional Business Evaluation Foundation'),
(76582, 64244, 'ko', 'name', '제주 지역 사업 ķ‰ź°€ ģž¬ė‹Ø'),
(76583, 64245, 'no_lang_code', 'name', 'Informatica (South Korea)'),
(76584, 64245, 'ko', 'name', 'ģøķ¬ė§¤ķ‹°ģ¹“'),
(76585, 64246, 'en', 'name', 'Jeju Tourism University'),
(76586, 64246, 'ko', 'name', 'ģ œģ£¼ź“€ź“‘ėŒ€ķ•™źµ'),
(76587, 64247, 'en', 'name', 'Pan-Korea English Teachers Association'),
(76588, 64247, 'ko', 'name', 'ķŒ¬ģ½”ė¦¬ģ•„ģ˜ģ–“źµģœ”ķ•™ķšŒ'),
(76589, 64248, 'no_lang_code', 'name', 'Kukdong Communication (South Korea)'),
(76590, 64248, 'ko', 'name', 'ź·¹ė™ķ†µģ‹ '),
(76591, 64249, 'no_lang_code', 'name', 'Fiberpro (South Korea)'),
(76592, 64249, 'ko', 'name', 'ķŒŒģ“ė²„ķ”„ė”œ'),
(76593, 64250, 'en', 'name', 'Future Human Resources Research Institute'),
(76594, 64250, 'ko', 'name', 'ėÆøėž˜ ģøģ  ģžģ› ģ—°źµ¬ģ†Œ'),
(76595, 64251, 'no_lang_code', 'name', 'Jin Tech (South Korea)'),
(76596, 64251, 'ko', 'name', 'ģ§„ķ…Œķ¬'),
(76597, 64252, 'no_lang_code', 'name', 'Hansol Chemical (South Korea)'),
(76598, 64252, 'ko', 'name', 'ķ•œģ†”ģ¼€ėÆøģ¹¼'),
(76599, 64253, 'en', 'name', 'Gangdong University'),
(76600, 64253, 'ko', 'name', 'ź°•ė™ ėŒ€ķ•™źµ'),
(76601, 64254, 'en', 'name', 'Korean Society of Mathematical Education'),
(76602, 64254, 'ko', 'name', 'ģ‚¬ė‹Øė²•ģø ķ•œźµ­ģˆ˜ķ•™źµģœ”ķ•™ķšŒ ģ •ź“€'),
(76603, 64255, 'en', 'name', 'Korea Research Institute of Mechanical Facilities Industry'),
(76604, 64255, 'ko', 'name', 'ėŒ€ķ•œźø°ź³„ģ„¤ė¹„ģ‚°ģ—…ģ—°źµ¬ģ›'),
(76605, 64256, 'en', 'name', 'The Genetics Society of Korea'),
(76606, 64256, 'ko', 'name', 'ķ•œźµ­ģœ ģ „ķ•™ķšŒ'),
(76607, 64257, 'en', 'name', 'Kaywon University of Art & Design'),
(76608, 64257, 'ko', 'name', 'ģ¼€ģ“ģ› 미술 ėŒ€ķ•™'),
(76609, 64258, 'en', 'name', 'Korea Baduk Association'),
(76610, 64258, 'ko', 'name', 'ķ•œźµ­źø°ģ›'),
(76611, 64259, 'no_lang_code', 'name', 'Intergen Consulting Group (South Korea)'),
(76612, 64259, 'ko', 'name', 'ģøķ„°ģ   ģ»Øģ„¤ķŒ… 그룹'),
(76613, 64260, 'en', 'name', 'Regional Geographical Society of Korea'),
(76614, 64260, 'ko', 'name', 'ķ•œźµ­ 지리 ķ•™ķšŒ'),
(76615, 64261, 'en', 'name', 'International Area Studies Society'),
(76616, 64261, 'ko', 'name', 'źµ­ģ œģ§€ģ—­ķ•™ķšŒ'),
(76617, 64262, 'en', 'name', 'Korea Environmental Education Association'),
(76618, 64262, 'ko', 'name', 'ķ•œźµ­ ķ™˜ź²½ 교윔 ģ—°ķ•©ķšŒ'),
(76619, 64263, 'en', 'name', 'The International Association for Korean Language Education'),
(76620, 64263, 'ko', 'name', 'źµ­ģ œķ•œźµ­ģ–“źµģœ”ķ•™ķšŒ'),
(76621, 64264, 'en', 'name', 'International Association of Korean Literary and Cultural Studies'),
(76622, 64264, 'ko', 'name', 'źµ­ģ œķ•œźµ­ė¬øķ•™ė¬øķ™”ķ•™ķšŒ'),
(76623, 64265, 'en', 'name', 'University of Brain Education'),
(76624, 64265, 'ko', 'name', 'źµ­ģ œė‡Œźµģœ”ģ¢…ķ•©ėŒ€ķ•™ģ›ėŒ€ķ•™źµ ķ™ˆķŽ˜ģ“ģ§€'),
(76625, 64266, 'en', 'name', 'Korea Peace Institute'),
(76626, 64266, 'ko', 'name', 'ķ•œźµ­ ķ‰ķ™” ģ—°źµ¬ģ†Œ'),
(76627, 64267, 'en', 'name', 'Kimpo University'),
(76628, 64267, 'ko', 'name', 'ź¹€ķ¬ ėŒ€ķ•™źµ'),
(76629, 64268, 'en', 'name', 'International Association of Comparative Korean Studies'),
(76630, 64268, 'ko', 'name', 'źµ­ģ œė¹„źµķ•œźµ­ķ•™ķšŒ'),
(76631, 64269, 'no_lang_code', 'name', 'KoreaBio'),
(76632, 64269, 'ko', 'name', '코리아 ė°”ģ“ģ˜¤'),
(76633, 64270, 'en', 'name', 'Women in Nuclear Korea'),
(76634, 64271, 'no_lang_code', 'name', 'Korea Bio Solution (South Korea)'),
(76635, 64271, 'ko', 'name', 'ķ•œźµ­ė°”ģ“ģ˜¤ģ†”ė£Øģ…˜'),
(76636, 64272, 'en', 'name', 'Korean International Maritime Law Association'),
(76637, 64272, 'ko', 'name', 'ķ•œźµ­ķ•“ģ‚¬ė²•ķ•™ķšŒ'),
(76638, 64273, 'en', 'name', 'Honam Archaeological Society'),
(76639, 64273, 'ko', 'name', 'ķ˜øė‚Øź³ ź³ ķ•™ķšŒ'),
(76640, 64274, 'en', 'name', 'Global Cultural Contents Association'),
(76641, 64274, 'ko', 'name', '세계 문화 ģ½˜ķ…ģø  ķ•™ķšŒ'),
(76642, 64275, 'en', 'name', 'Korean Society for Biology Education'),
(76643, 64276, 'en', 'name', 'Re-shaping Development Institute'),
(76644, 64276, 'ko', 'name', 'źø€ė”œė²Œ 개발 ģ—°źµ¬ģ†Œ'),
(76645, 64277, 'en', 'name', 'Korean Association of Law Schools'),
(76646, 64277, 'ko', 'name', 'ķ•œźµ­ ė²•ėŒ€'),
(76647, 64278, 'en', 'name', 'International Network for Korean Language and Culture'),
(76648, 64278, 'ko', 'name', 'źµ­ģ œķ•œźµ­ģ–øģ–“ė¬øķ™”ķ•™ķšŒ'),
(76649, 64279, 'en', 'name', 'Hosan University'),
(76650, 64279, 'ko', 'name', 'ķ˜øģ‚°ėŒ€ķ•™źµ'),
(76651, 64280, 'en', 'name', 'Global Education and Culture Institute'),
(76652, 64280, 'ko', 'name', 'źø€ė”œė²Œźµģœ”ė¬øķ™”ģ—°źµ¬ģ›'),
(76653, 64281, 'en', 'name', 'Brand Design Association of Korea'),
(76654, 64282, 'en', 'name', 'Costume Culture Association'),
(76655, 64282, 'ko', 'name', 'ģ˜ģƒ 문화 ķ˜‘ķšŒ'),
(76656, 64283, 'en', 'name', '21st Century Foreign Language Academy'),
(76657, 64283, 'ko', 'name', '21세기 외국얓 학원'),
(76658, 64284, 'en', 'name', 'Human Rights Solidarity'),
(76659, 64284, 'ko', 'name', 'ģøź¶Œģ—°ėŒ€ėŠ”'),
(76660, 64285, 'en', 'name', 'Korean Brecht Society'),
(76661, 64285, 'ko', 'name', 'ķ•œźµ­ėøŒė ˆķžˆķŠøķ•™ķšŒ'),
(76662, 64286, 'en', 'name', 'Global English Teachers Association'),
(76663, 64286, 'ko', 'name', 'źø€ė”œė²Œ ģ˜ģ–“ 교사 ķ˜‘ķšŒ'),
(76664, 64287, 'en', 'name', 'Critical Sociological Association of Korea'),
(76665, 64287, 'ko', 'name', 'ķ•œźµ­ ģ¤‘ģš” ģ‚¬ķšŒ ķ•™ķšŒ'),
(76666, 64288, 'en', 'name', 'Hyundai Research Institute'),
(76667, 64288, 'ko', 'name', 'ķ˜„ėŒ€ź²½ģ œģ—°źµ¬ģ›'),
(76668, 64289, 'en', 'name', 'Korea Communications Industry Cooperative'),
(76669, 64289, 'ko', 'name', 'ķ•œźµ­ė°©ģ†”ķ†µģ‹ ģ‚°ģ—…ķ˜‘ė™ģ”°ķ•© ģ”°ķ•©ģ†Œź°œ ģøģ‚¬ė§ ģ•ˆė‚“ģž…ė‹ˆė‹¤'),
(76670, 64290, 'no_lang_code', 'name', 'Global optical communication (South Korea)'),
(76671, 64290, 'ko', 'name', 'źø€ė”œė²Œź“‘ķ†µģ‹ '),
(76672, 64291, 'en', 'name', 'Korean Broadcasters Association'),
(76673, 64291, 'ko', 'name', 'ķ•œźµ­ė°©ģ†”ķ˜‘ķšŒ'),
(76674, 64292, 'no_lang_code', 'name', 'JSM Technology Korea (South Korea)'),
(76675, 64292, 'ko', 'name', 'ģ œģ“ģ—ģŠ¤ģ— ķ…Œķ¬ė†€ėŸ¬ģ§€ģ½”ė¦¬ģ•„'),
(76676, 64293, 'no_lang_code', 'name', 'Koguryo Bohai Society'),
(76677, 64293, 'ko', 'name', '고구려 ė°œķ•“ ķ•™ķšŒ'),
(76678, 64294, 'en', 'name', 'James Joyce Society of Korea'),
(76679, 64294, 'ko', 'name', 'ķ•œźµ­ģ œģž„ģŠ¤ģ”°ģ“ģŠ¤ķ•™ķšŒ'),
(76680, 64295, 'no_lang_code', 'name', 'Hyundai Engineering (South Korea)'),
(76681, 64295, 'ko', 'name', 'ķ˜„ėŒ€ģ—”ģ§€ė‹ˆģ–“ė§'),
(76682, 64296, 'no_lang_code', 'name', 'CrystalGenomics (South Korea)'),
(76683, 64296, 'ko', 'name', '크리스탈 ģœ ģ „ģ²“ķ•™'),
(76684, 64297, 'ko', 'name', '(주)ģž„ģ„±E.P.S에 ģ˜¤ģ‹ ź²ƒģ„ ķ™˜ģ˜ķ•©ė‹ˆė‹¤'),
(76685, 64297, 'no_lang_code', 'name', 'Jangsung (South Korea)'),
(76686, 64298, 'en', 'name', 'Koguryeo College'),
(76687, 64298, 'ko', 'name', '고구려 ėŒ€ķ•™'),
(76688, 64299, 'en', 'name', 'Korean Calligraphy Association'),
(76689, 64299, 'ko', 'name', 'ķ•œźµ­ģ„œģ˜ˆķ˜‘ķšŒ'),
(76690, 64300, 'en', 'name', 'Association of Japanology in East Asia'),
(76691, 64300, 'ko', 'name', 'ė™ģ•„ģ‹œģ•„ģ¼ė³øķ•™ķšŒ'),
(76692, 64301, 'no_lang_code', 'name', 'Hankuk Carbon (South Korea)'),
(76693, 64301, 'ko', 'name', 'ķ•œźµ­ 칓본'),
(76694, 64302, 'en', 'name', 'Korea University of International Studies'),
(76695, 64302, 'ko', 'name', 'ķ•œė°˜ė„źµ­ģ œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(76696, 64303, 'en', 'name', 'Culinary Society of Korea'),
(76697, 64303, 'ko', 'name', 'ķ•œźµ­ģ”°ė¦¬ķ•™ķšŒ'),
(76698, 64304, 'en', 'name', 'Dongbang Culture University'),
(76699, 64304, 'ko', 'name', 'ė™ė°© 문화 ėŒ€ķ•™źµ'),
(76700, 64305, 'no_lang_code', 'name', 'Nanjing Zhongyi Architectural Design Institute (China)'),
(76701, 64305, 'zh', 'name', 'å—äŗ¬äø­ę„å»ŗē­‘č®¾č®”é™¢'),
(76702, 64306, 'en', 'name', 'Korea Association of Vocational Education'),
(76703, 64306, 'ko', 'name', 'ķ•œźµ­ģ§ģ—…ėŠ„ė „źµģœ”ķ˜‘ķšŒ'),
(76704, 64307, 'ko', 'name', '(주)제욱'),
(76705, 64307, 'no_lang_code', 'name', 'Jeuk (South Korea)'),
(76706, 64308, 'en', 'name', 'Cybercommunication Academic Society'),
(76707, 64309, 'en', 'name', 'Korean Society of East-West Comparative Literature'),
(76708, 64309, 'ko', 'name', 'ķ•œźµ­ė™ģ„œė¹„źµė¬øķ•™ķ•™ķšŒ'),
(76709, 64310, 'en', 'name', 'Green Life Knowledge Economy Research Institute'),
(76710, 64310, 'ko', 'name', 'ė…¹ģƒ‰ ģƒķ™œ ģ§€ģ‹ 경제 ģ—°źµ¬ģ†Œ'),
(76711, 64311, 'no_lang_code', 'name', 'Iljin Radiation Engineering (South Korea)'),
(76712, 64311, 'ko', 'name', 'ģ¼ģ§„ė°©ģ‚¬ģ„ ģ—”ģ§€ė‹ˆģ–“ė§'),
(76713, 64312, 'en', 'name', 'Korean Society for Child Education'),
(76714, 64312, 'ko', 'name', 'ķ•œźµ­ģ•„ė™źµģœ”ķ•™ķšŒ'),
(76715, 64313, 'en', 'name', 'JEI University'),
(76716, 64313, 'ko', 'name', 'ģøģ²œģž¬ėŠ„ėŒ€ķ•™źµ'),
(76717, 64314, 'en', 'name', 'Gumi University'),
(76718, 64314, 'ko', 'name', '구미 ėŒ€ķ•™źµ'),
(76719, 64315, 'en', 'name', 'Korean Society for Eco Early Childhood Education'),
(76720, 64315, 'ko', 'name', 'ķ•œźµ­ģƒķƒœģœ ģ•„źµģœ”ķ•™ķšŒ'),
(76721, 64316, 'en', 'name', 'Gwangyang Health College'),
(76722, 64316, 'ko', 'name', 'ź“‘ģ–‘ė³“ź±“ėŒ€ķ•™'),
(76723, 64317, 'en', 'name', 'Korean Society of Child Welfare'),
(76724, 64317, 'ko', 'name', 'ķ•œźµ­ģ•„ė™ė³µģ§€ķ•™ķšŒ'),
(76725, 64318, 'en', 'name', 'The Korean Economic Association'),
(76726, 64318, 'ko', 'name', 'ķ•œźµ­ź²½ģ œķ•™ķšŒ'),
(76727, 64319, 'en', 'name', 'Society for Asian Philosophy in Korea'),
(76728, 64319, 'ko', 'name', 'ķ•œźµ­ė™ģ–‘ģ² ķ•™ķšŒ'),
(76729, 64320, 'en', 'name', 'Gyeongbuk IT Convergence Industrial Technology Institute'),
(76730, 64320, 'ko', 'name', '경북ITģœµķ•©ģ‚°ģ—…źø°ģˆ ģ›'),
(76731, 64321, 'en', 'name', 'Cyber University of Korea'),
(76732, 64321, 'ko', 'name', 'ģ‚¬ģ“ė²„ ėŒ€ķ•™źµ'),
(76733, 64322, 'en', 'name', 'Korea Economic Research Institute'),
(76734, 64322, 'ko', 'name', 'ķ•œźµ­ź²½ģ œģ—°źµ¬ģ›'),
(76735, 64323, 'en', 'name', 'Gyeongbuk Marine Bio-Industry Research Institute'),
(76736, 64323, 'ko', 'name', '경북 ķ•“ģ–‘ ģƒė¬¼ ģ‚°ģ—… 연구원'),
(76737, 64324, 'en', 'name', 'The Korea Society for Children''s Media'),
(76738, 64324, 'ko', 'name', 'ķ•œźµ­ģ–“ė¦°ģ“ėÆøė””ģ–“ķ•™ķšŒģ— ģžˆģŠµė‹ˆė‹¤'),
(76739, 64325, 'no_lang_code', 'name', 'Daeduk University'),
(76740, 64325, 'ko', 'name', 'ėŒ€ė• ėŒ€ķ•™źµ'),
(76741, 64326, 'en', 'name', 'Korea Children''s Rights Society'),
(76742, 64326, 'ko', 'name', 'ķ•œźµ­ģ•„ė™ź¶Œė¦¬ķ•™ķšŒ'),
(76743, 64327, 'en', 'name', 'Korean Educational Idea Association'),
(76744, 64327, 'ko', 'name', 'ķ•œźµ­źµģœ”ģ‚¬ģƒģ—°źµ¬ķšŒ'),
(76745, 64328, 'no_lang_code', 'name', 'Korea Educational Broadcasting System'),
(76746, 64328, 'ko', 'name', 'ķ•œźµ­źµģœ”ė°©ģ†”ź³µģ‚¬'),
(76747, 64329, 'en', 'name', 'The Daedong Philosophical Association'),
(76748, 64329, 'ko', 'name', 'ėŒ€ė™ ģ² ķ•™ķšŒ'),
(76749, 64330, 'en', 'name', 'Korea Christian Educational Information Society'),
(76750, 64330, 'ko', 'name', 'źø°ė…źµźµģœ”ģ •ė³“ķ•™ķšŒ'),
(76751, 64331, 'en', 'name', 'The Korean Society for the Economics and Finance of Education'),
(76752, 64331, 'ko', 'name', 'ķ•œźµ­źµģœ”ģž¬ģ •ź²½ģ œķ•™ķšŒ'),
(76753, 64332, 'en', 'name', 'Gyeongnam Provincial Namhae College'),
(76754, 64332, 'ko', 'name', 'ź²½ė‚Øė„ė¦½ė‚Øķ•“ėŒ€ķ•™'),
(76755, 64333, 'en', 'name', 'Daegu Visually Impaired Culture Center'),
(76756, 64333, 'ko', 'name', 'ėŒ€źµ¬ģ‹œź°ģž„ģ• ģøė¬øķ™”ģ›'),
(76757, 64334, 'en', 'name', 'Korean Educational Psychology Association'),
(76758, 64334, 'ko', 'name', 'ķ•œźµ­źµģœ”ģ‹¬ė¦¬ķ•™ķšŒ'),
(76759, 64335, 'en', 'name', 'Gyeongnam Provincial Geochang College'),
(76760, 64335, 'ko', 'name', 'ź²½ė‚Øė„ė¦½ź±°ģ°½ėŒ€ķ•™'),
(76761, 64336, 'en', 'name', 'Korean Christian Society'),
(76762, 64336, 'ko', 'name', 'ķ•œźµ­źø°ė…źµķ•™ķšŒ'),
(76763, 64337, 'en', 'name', 'Korean Educational Research Association'),
(76764, 64337, 'ko', 'name', 'ķ•œźµ­źµģœ”ķ•™ķšŒ'),
(76765, 64338, 'en', 'name', 'Nantong Snake Treatment Research Institute'),
(76766, 64339, 'en', 'name', 'The Korea Society of Fashion Design'),
(76767, 64339, 'ko', 'name', 'ķ•œźµ­ķŒØģ…˜ė””ģžģøķ•™ķšŒ'),
(76768, 64340, 'en', 'name', 'Institue of the History of Christianity in Korea'),
(76769, 64340, 'ko', 'name', 'ķ•œźµ­źµķšŒģ‚¬ķ•™ķšŒ'),
(76770, 64341, 'en', 'name', 'The Daegu Historical Association'),
(76771, 64341, 'ko', 'name', 'ėŒ€źµ¬ 역사 ķ•™ķšŒ'),
(76772, 64342, 'en', 'name', 'Korean Geographical Society'),
(76773, 64342, 'ko', 'name', 'ķ•œźµ­ģ§€ė¦¬ķ•™ķšŒ'),
(76774, 64343, 'en', 'name', 'Korean Elementary Art Education Association'),
(76775, 64343, 'ko', 'name', 'ķ•œźµ­ģ“ˆė“±ėÆøģˆ źµģœ”ķ•™ķšŒ'),
(76776, 64344, 'en', 'name', 'Society of Korean Classical Literature Education'),
(76777, 64344, 'ko', 'name', 'ķ•œźµ­ź³ ģ „ė¬øķ•™źµģœ”ķ•™ķšŒ'),
(76778, 64345, 'en', 'name', 'Taegu Science University'),
(76779, 64345, 'ko', 'name', 'ėŒ€źµ¬ 과학 ėŒ€ķ•™źµ'),
(76780, 64346, 'en', 'name', 'Korea Leisure and Recreation Association'),
(76781, 64346, 'ko', 'name', 'ķ•œźµ­ ė ˆģ € ė ˆķ¬ė¦¬ģ—ģ“ģ…˜ ķ˜‘ķšŒ'),
(76782, 64347, 'en', 'name', 'The Korean Society for the Study of Elementary Education'),
(76783, 64347, 'ko', 'name', 'ķ•œźµ­ģ“ˆė“±źµģœ”ķ•™ķšŒ'),
(76784, 64348, 'en', 'name', 'Geological Society of Korea'),
(76785, 64348, 'ko', 'name', 'ėŒ€ķ•œģ§€ģ§ˆķ•™ķšŒ'),
(76786, 64349, 'en', 'name', 'Korean Association for Lifelong Education'),
(76787, 64349, 'ko', 'name', 'ķ•œźµ­ ģƒģ•  교윔 ķ˜‘ķšŒ'),
(76788, 64350, 'en', 'name', 'The Korea English Education Society'),
(76789, 64350, 'ko', 'name', 'ķ•œźµ­ ģ˜ģ–“ 교윔 ķ•™ķšŒ'),
(76790, 64351, 'en', 'name', 'Korea Lift College'),
(76791, 64351, 'ko', 'name', 'ķ•œźµ­ģŠ¹ź°•źø°ėŒ€ķ•™źµ'),
(76792, 64352, 'en', 'name', 'Korean German Language and Literature Society'),
(76793, 64352, 'ko', 'name', 'ķ•œźµ­ė…ģ–“ė…ė¬øķ•™ķšŒ'),
(76794, 64353, 'en', 'name', 'Korean Academy of Speech-Language Pathology and Audiology'),
(76795, 64354, 'en', 'name', 'The Korean Historical Association'),
(76796, 64354, 'ko', 'name', 'ģ—­ģ‚¬ķ•™ķšŒ'),
(76797, 64355, 'en', 'name', 'Korean Clinical Psychcological Association'),
(76798, 64356, 'en', 'name', 'The Korean Society Of Literary Education'),
(76799, 64356, 'ko', 'name', 'ķ•œźµ­ 문학 교윔 ķ•™ķšŒ'),
(76800, 64357, 'en', 'name', 'Tianjin Municipal Engineering Design and Research Institute'),
(76801, 64357, 'zh', 'name', '天擄市市政巄程设讔研究总院'),
(76802, 64358, 'en', 'name', 'Shandong Institute of Quantum Science and Technology'),
(76803, 64358, 'zh', 'name', 'å±±äøœé‡å­ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(76804, 64359, 'en', 'name', 'Korean Psychological Association'),
(76805, 64359, 'ko', 'name', 'ķ•œźµ­ģ‹¬ė¦¬ķ•™ķšŒ'),
(76806, 64360, 'no_lang_code', 'name', 'Dynavolt Tech (China)'),
(76807, 64360, 'zh', 'name', 'å¹æäøœēŒ›ē‹®ę–°čƒ½ęŗē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(76808, 64361, 'en', 'name', 'YIJUN Institute of International Law'),
(76809, 64361, 'ko', 'name', 'ģ“ģ¤€ źµ­ģ œė²• 학원'),
(76810, 64362, 'ko', 'name', '(사)ķ•œźµ­ģ •ė³“ķ†µģ‹ źø°ģˆ ģ‚°ģ—…ķ˜‘ķšŒ-'),
(76811, 64362, 'en', 'name', 'Korea Information & Communication Technology Industry Association'),
(76812, 64363, 'en', 'name', 'The Society of Korean Traditional Costume'),
(76813, 64363, 'ko', 'name', 'ķ•œė³µė¬øķ™”ķ•™ķšŒ'),
(76814, 64364, 'en', 'name', 'The Society for Chinese Cultural Studies'),
(76815, 64364, 'ko', 'name', 'ģ¤‘źµ­ė¬øķ™”ģ—°źµ¬ķ•™ķšŒ'),
(76816, 64365, 'en', 'name', 'Korean Association of Geography and Environmental Education'),
(76817, 64365, 'ko', 'name', 'ķ•œźµ­ģ§€ė¦¬ķ™˜ź²½źµģœ”ķ•™ķšŒ'),
(76818, 64366, 'en', 'name', 'Intelligent Image and Information System'),
(76819, 64366, 'ko', 'name', 'ģ§€ėŠ„ķ˜• ģ“ėÆøģ§€ ė° 정볓 ģ‹œģŠ¤ķ…œ'),
(76820, 64367, 'en', 'name', 'The Society Of Korean Literary Therapy'),
(76821, 64367, 'ko', 'name', 'ķ•œźµ­ 문학 치료 ķ•™ķšŒ'),
(76822, 64368, 'en', 'name', 'Korean Society for Industrial and Organizational Psychology'),
(76823, 64368, 'ko', 'name', 'ķ•œźµ­ģ‚°ģ—…ė°ģ”°ģ§ģ‹¬ė¦¬ķ•™ķšŒ'),
(76824, 64369, 'en', 'name', 'Korea Integrated Logistics Association'),
(76825, 64369, 'ko', 'name', 'ķ•œźµ­ķ†µķ•©ė¬¼ė„˜ķ˜‘ķšŒ'),
(76826, 64370, 'en', 'name', 'Daejeon Health Institute of Technology'),
(76827, 64370, 'ko', 'name', 'ėŒ€ģ „ė³“ź±“ėŒ€ķ•™źµ'),
(76828, 64371, 'en', 'name', 'Korean Institute of Interior Design'),
(76829, 64371, 'ko', 'name', 'ķ•œźµ­ģ‹¤ė‚“ė””ģžģøķ•™ķšŒėŠ”'),
(76830, 64372, 'en', 'name', 'Korean Association of Comparative Criminal Law'),
(76831, 64372, 'ko', 'name', 'ķ•œźµ­ė¹„źµķ˜•ģ‚¬ė²•ķ•™ķšŒ'),
(76832, 64373, 'en', 'name', 'Korea Society Of IT Services'),
(76833, 64373, 'ko', 'name', 'ķ•œźµ­ITģ„œė¹„ģŠ¤ķ•™ķšŒ'),
(76834, 64374, 'en', 'name', 'Korea Environmental Policy and Administration Society'),
(76835, 64374, 'ko', 'name', 'ķ•œźµ­ ķ™˜ź²½ ģ •ģ±… ꓀리 ķ•™ķšŒ'),
(76836, 64375, 'en', 'name', 'Korean Constitutional Law Association'),
(76837, 64375, 'ko', 'name', 'ķ•œźµ­ķ—Œė²•ķ•™ķšŒ'),
(76838, 64376, 'en', 'name', 'The Korean Society of Contemporary European Studies'),
(76839, 64376, 'ko', 'name', 'ķ•œźµ­ģœ ėŸ½ķ•™ķšŒ'),
(76840, 64377, 'en', 'name', 'Korea Marketing Management Association'),
(76841, 64377, 'ko', 'name', 'ķ•œźµ­ ė§ˆģ¼€ķŒ… 경영 ķ•™ķšŒ'),
(76842, 64378, 'en', 'name', 'Korea Engineering Consultants Corporation'),
(76843, 64378, 'ko', 'name', 'ķ•œźµ­ģ¢…ķ•©źø°ģˆ '),
(76844, 64379, 'en', 'name', 'Korea Exercise Rehabilitation Association'),
(76845, 64379, 'ko', 'name', 'ķ•œźµ­ģš“ė™ģž¬ķ™œķ˜‘ķšŒ'),
(76846, 64380, 'en', 'name', 'Korean Scholars of Marketing Science'),
(76847, 64380, 'ko', 'name', 'ķ•œźµ­ ė§ˆģ¼€ķŒ… ķ•™ģž'),
(76848, 64381, 'en', 'name', 'Korea Medical Devices Industrial Cooperative Association'),
(76849, 64381, 'ko', 'name', 'ķ•œźµ­ ģ˜ė£Œ źø°źø° ģ‚°ģ—… ģ”°ķ•©'),
(76850, 64382, 'en', 'name', 'Korean Cinema Association'),
(76851, 64382, 'ko', 'name', 'ķ•œźµ­ ģ˜ķ™” ķ˜‘ķšŒ'),
(76852, 64383, 'en', 'name', 'Dandelion Medical Welfare Social Cooperative'),
(76853, 64383, 'ko', 'name', 'ėÆ¼ė“¤ė ˆ ģ˜ė£Œ 복지 ģ‚¬ķšŒ ķ˜‘ė™ ģ”°ķ•©'),
(76854, 64384, 'en', 'name', 'Korean Society for Consumer Studies'),
(76855, 64384, 'ko', 'name', 'ķ•œźµ­ģ†Œė¹„ģžķ•™ķšŒ'),
(76856, 64385, 'en', 'name', 'Korean Consumption Culture Association'),
(76857, 64385, 'ko', 'name', 'ķ•œźµ­ģ†Œė¹„ė¬øķ™”ķ•™ķšŒ'),
(76858, 64386, 'en', 'name', 'Korean Finance Association'),
(76859, 64386, 'ko', 'name', 'ķ•œźµ­ģž¬ė¬“ķ•™ķšŒ'),
(76860, 64387, 'en', 'name', 'Korean Association of Middle Eastern Studies'),
(76861, 64387, 'ko', 'name', 'ķ•œźµ­ ģ¤‘ė™ ķ•™ķšŒ'),
(76862, 64388, 'en', 'name', 'Korea Contents Association'),
(76863, 64389, 'no_lang_code', 'name', 'Korea Financial Engineering Consulting (South Korea)'),
(76864, 64389, 'ko', 'name', 'ķ•œźµ­ 금융 공학 ģ»Øģ„¤ķŒ…'),
(76865, 64390, 'en', 'name', 'Korea Corporate Education Center'),
(76866, 64390, 'ko', 'name', 'ķ•œźµ­źø°ģ—…źµģœ”ģ„¼ķ„°'),
(76867, 64391, 'en', 'name', 'The Modern English Drama Association of Korea'),
(76868, 64391, 'ko', 'name', 'ķ˜„ėŒ€ ķ•œźµ­ ģ—°ź·¹ ķ•™ķšŒ'),
(76869, 64392, 'en', 'name', 'Korean Financial Management Association'),
(76870, 64392, 'ko', 'name', 'ķ•œźµ­ ģž¬ė¬“ ꓀리 ķ˜‘ķšŒ'),
(76871, 64393, 'en', 'name', 'The Modern Linguistic Society Of Korea'),
(76872, 64393, 'ko', 'name', 'ķ•œźµ­ ķ˜„ėŒ€ ģ–øģ–“ ķ•™ķšŒ'),
(76873, 64394, 'no_lang_code', 'name', 'KG Chemical (South Korea)'),
(76874, 64395, 'en', 'name', 'Korea Cosmetic Association'),
(76875, 64395, 'ko', 'name', 'ėŒ€ķ•œķ™”ģž„ķ’ˆķ˜‘ķšŒ'),
(76876, 64396, 'en', 'name', 'Korea Petroleum Quality & Distribution Authority'),
(76877, 64396, 'ko', 'name', 'ķ•œźµ­ ģ„ģœ  ķ’ˆģ§ˆ ꓀리국'),
(76878, 64397, 'en', 'name', 'Korea Fisheries Resources Agency'),
(76879, 64397, 'ko', 'name', 'ķ•œźµ­ ģˆ˜ģ‚° ģžģ› 공사'),
(76880, 64398, 'en', 'name', 'Korea Counseling Graduate University'),
(76881, 64398, 'ko', 'name', 'ķ•œźµ­ģƒė‹“ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(76882, 64399, 'en', 'name', 'Korean Counseling Association'),
(76883, 64399, 'ko', 'name', 'ķ•œźµ­ģƒė‹“ķ•™ķšŒ'),
(76884, 64400, 'en', 'name', 'The Korean Association for Mongolian Studies'),
(76885, 64400, 'ko', 'name', 'ķ•œźµ­ 몽골 연구 ķ˜‘ķšŒ'),
(76886, 64401, 'en', 'name', 'The Korea Association of Foreign Language Education'),
(76887, 64401, 'ko', 'name', 'ķ•œźµ­ 외국얓 교윔 ķ˜‘ķšŒ'),
(76888, 64402, 'en', 'name', 'Korean Alliance for Health, Physical Education, Recreation, and Dance'),
(76889, 64402, 'ko', 'name', 'ķ•œźµ­ģ²“ģœ”ķ•™ķšŒ'),
(76890, 64403, 'en', 'name', 'The Korean Association for Multicultural Education'),
(76891, 64403, 'ko', 'name', 'ķ•œźµ­ 다문화 교윔 ķ˜‘ķšŒ'),
(76892, 64404, 'en', 'name', 'Culinary Institute of Korea'),
(76893, 64405, 'en', 'name', 'Korean Music Therapy Association'),
(76894, 64405, 'ko', 'name', 'ķ•œźµ­ ģŒģ•… 치료 ķ˜‘ķšŒ'),
(76895, 64406, 'en', 'name', 'Korean Association of Public Safety and Criminal Justice'),
(76896, 64406, 'ko', 'name', 'ķ•œźµ­ź³µģ•ˆķ–‰ģ •ķ•™ķšŒ'),
(76897, 64407, 'en', 'name', 'The Association of Korean Cultural and Historical Geographers'),
(76898, 64407, 'ko', 'name', 'ķ•œźµ­ė¬øķ™”ģ—­ģ‚¬ģ§€ė¦¬ķ•™ķšŒ'),
(76899, 64408, 'en', 'name', 'The Korea institute for Religion and Culture'),
(76900, 64408, 'ko', 'name', 'ķ•œźµ­ģ¢…źµė¬øķ™”ģ—°źµ¬ģ†Œ'),
(76901, 64409, 'en', 'name', 'Korea Customs Trade Development Institute'),
(76902, 64409, 'ko', 'name', 'ķ•œźµ­ ź“€ģ„øė¬“ģ—­ź°œė°œģ›'),
(76903, 64410, 'en', 'name', 'Korea Drug Research Association'),
(76904, 64410, 'ko', 'name', 'ėŒ€ķ•œ ė§ˆģ•½ 연구 ķ•™ķšŒ'),
(76905, 64411, 'en', 'name', 'Korea IT Developer Cooperative'),
(76906, 64411, 'ko', 'name', 'ķ•œźµ­ ģ•„ģ“ķ‹° (IT) ź°œė°œģž ķ˜‘ė™ ģ”°ķ•©'),
(76907, 64412, 'ko', 'name', '(사)ķ•œźµ­ė””ģ§€ķ„øė””ģžģøķ˜‘ģ˜ķšŒ'),
(76908, 64412, 'en', 'name', 'Korea Digital Design Council'),
(76909, 64413, 'no_lang_code', 'name', 'Korea Accounting Standards Board'),
(76910, 64413, 'ko', 'name', 'ķ•œźµ­ ķšŒź³„ 기준 원'),
(76911, 64414, 'en', 'name', 'Korea Digital Hospital Export Agency'),
(76912, 64414, 'ko', 'name', 'ķ•œźµ­ė””ģ§€ķ„øė³‘ģ›ģˆ˜ģ¶œģ”°ķ•©'),
(76913, 64415, 'en', 'name', 'Korea Housing Association'),
(76914, 64416, 'en', 'name', 'Korean Society for Digital Policy'),
(76915, 64416, 'ko', 'name', 'ķ•œźµ­ė””ģ§€ķ„øģ •ģ±…ķ•™ķšŒ'),
(76916, 64417, 'en', 'name', 'Human Development Institute'),
(76917, 64417, 'ko', 'name', 'ģøź°„ 개발 ģ—°źµ¬ģ†Œ'),
(76918, 64418, 'en', 'name', 'Korean Nuclear Society'),
(76919, 64418, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ķ•™ķšŒ'),
(76920, 64419, 'ko', 'name', '(주)ķ•œźµ­ģœ ķ†µź³¼ķ•™ģ—°źµ¬ģ†Œ'),
(76921, 64419, 'en', 'name', 'Korea Distribution Science Institute'),
(76922, 64420, 'en', 'name', 'Korea Advertising Society'),
(76923, 64420, 'ko', 'name', 'ķ•œźµ­ ź“‘ź³  ķ•™ķšŒ'),
(76924, 64421, 'en', 'name', 'Korean Institute of Southeast Asian Studies'),
(76925, 64421, 'ko', 'name', 'ģ‚¬ė‹Øė²•ģø ķ•œźµ­ė™ė‚Øģ•„ģ—°źµ¬ģ†Œ'),
(76926, 64422, 'en', 'name', 'Korean Industrial Economic Association'),
(76927, 64422, 'ko', 'name', 'ķ•œźµ­ģ‚°ģ—…ź²½ģ œķ•™ķšŒ'),
(76928, 64423, 'en', 'name', 'Korean Community Welfare Society'),
(76929, 64423, 'ko', 'name', 'ķ•œźµ­ģ§€ģ—­ģ‚¬ķšŒė³µģ§€ķ•™ķšŒ'),
(76930, 64424, 'en', 'name', 'The Korean Society of Special Education'),
(76931, 64424, 'ko', 'name', 'ķ•œźµ­ķŠ¹ģˆ˜źµģœ”ķ•™ķšŒ'),
(76932, 64425, 'en', 'name', 'Korea Industrial Technology Association'),
(76933, 64425, 'ko', 'name', 'ķ•œźµ­ ģ‚°ģ—… 기술 ģ§„ķ„ ķ˜‘ķšŒ'),
(76934, 64426, 'en', 'name', 'The Korean Drama Society'),
(76935, 64426, 'ko', 'name', 'ķ•œźµ­ė“œė¼ė§ˆķ•™ķšŒ'),
(76936, 64427, 'en', 'name', 'Open Cyber University of Korea'),
(76937, 64427, 'ko', 'name', 'ķ•œźµ­ģ—“ė¦°ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(76938, 64428, 'en', 'name', 'Korean Society For Philosophy East-West'),
(76939, 64428, 'ko', 'name', 'ķ•œźµ­ė™ģ„œģ² ķ•™ķšŒ'),
(76940, 64429, 'en', 'name', 'Korea Academic Society of Industrial Organization'),
(76941, 64429, 'ko', 'name', 'ķ•œźµ­ ģ‚°ģ—… ķ•™ķšŒ'),
(76942, 64430, 'en', 'name', 'Korea Testing Laboratory'),
(76943, 64430, 'ko', 'name', 'ķ•œźµ­ ģ‹¤ķ—˜ 연구원'),
(76944, 64431, 'en', 'name', 'Korean Society of Alchol Science and Health Behavior'),
(76945, 64431, 'ko', 'name', 'ķ•œźµ­ ģ•Œģ½”ģ˜¬ ģ¤‘ė… ķ•™ķšŒ'),
(76946, 64432, 'en', 'name', 'Korean Infant and Child Care Society'),
(76947, 64432, 'ko', 'name', 'ķ•œźµ­ ģœ ģ•„ 볓윔 ķ•™ķšŒ'),
(76948, 64433, 'en', 'name', 'The Korea Association of Yeolin Education'),
(76949, 64433, 'ko', 'name', 'ķ•œźµ­ģ—“ė¦°źµģœ”ķ•™ķšŒ'),
(76950, 64434, 'en', 'name', 'The Korean Rural Sociological Society'),
(76951, 64434, 'ko', 'name', 'ķ•œźµ­ė†ģ“Œģ‚¬ķšŒķ•™ķšŒ'),
(76952, 64435, 'no_lang_code', 'name', 'Korea Petroleum Group (South Korea)'),
(76953, 64435, 'ko', 'name', 'ķ•œźµ­ ģ„ģœ  그룹'),
(76954, 64436, 'en', 'name', 'The Korean Society of Management Information Systems'),
(76955, 64436, 'ko', 'name', 'ķ•œźµ­ 경영 정볓 ķ•™ķšŒ'),
(76956, 64437, 'en', 'name', 'Korea Security Association'),
(76957, 64437, 'ko', 'name', 'ķ•œźµ­ ģ¦ź¶Œģ—… ķ˜‘ķšŒ'),
(76958, 64438, 'en', 'name', 'The Korean Association for Policy Analysis and Evaluation'),
(76959, 64438, 'ko', 'name', 'ė…„ ģ¶œė²”ķ•œ ķ•œźµ­ģ •ģ±…ė¶„ģ„ķ‰ź°€ķ•™ķšŒėŠ” ģ§€źøˆź¹Œģ§€'),
(76960, 64439, 'no_lang_code', 'name', 'Korea Information System (South Korea)'),
(76961, 64439, 'ko', 'name', 'ķ•œźµ­ 정볓 ģ‹œģŠ¤ķ…œ'),
(76962, 64440, 'en', 'name', 'Korea Service Management Society'),
(76963, 64440, 'ko', 'name', 'ķ•œźµ­ģ„œė¹„ģŠ¤ź²½ģ˜ķ•™ķšŒ'),
(76964, 64441, 'en', 'name', 'Korea International Accounting Association'),
(76965, 64441, 'ko', 'name', 'ķ•œźµ­źµ­ģ œķšŒź³„ķ•™ķšŒ'),
(76966, 64442, 'en', 'name', 'Korea Association of Information Systems'),
(76967, 64442, 'ko', 'name', 'ķ•œźµ­ģ •ė³“ģ‹œģŠ¤ķ…œķ•™ķšŒ'),
(76968, 64443, 'en', 'name', 'Korean Society for Education through Art'),
(76969, 64443, 'ko', 'name', 'ķ•œźµ­źµ­ģ œėÆøģˆ źµģœ”ķ•™ķšŒ'),
(76970, 64444, 'en', 'name', 'The Korean Physical Society'),
(76971, 64444, 'ko', 'name', 'ķ•œźµ­ė¬¼ė¦¬ķ•™ķšŒ'),
(76972, 64445, 'en', 'name', 'The Korean Association of Slavic Eurasian Studies'),
(76973, 64446, 'en', 'name', 'Korea Art Education Association'),
(76974, 64446, 'ko', 'name', 'ķ•œźµ­ 미술 교윔 ķ•™ķšŒ'),
(76975, 64447, 'en', 'name', 'Korean Social Science Data Center'),
(76976, 64447, 'ko', 'name', 'ķ•œźµ­ģ‚¬ķšŒź³¼ķ•™ė°ģ“ķ„°ģ„¼ķ„°'),
(76977, 64448, 'en', 'name', 'Korea Lifelong Education Center'),
(76978, 64448, 'ko', 'name', 'ķ•œźµ­ķ‰ģƒźµģœ”ģ›'),
(76979, 64449, 'en', 'name', 'The Art History Research Institute of Korea'),
(76980, 64449, 'ko', 'name', 'ķ•œźµ­ 미술 사학 ģ—°źµ¬ģ†Œ'),
(76981, 64450, 'en', 'name', 'The Korean Society for Practical Theology'),
(76982, 64450, 'ko', 'name', 'ķ•œźµ­ ģ‹¤ģ²œ ģ‹ ķ•™ķšŒ'),
(76983, 64451, 'en', 'name', 'International Fiscal Association Korea'),
(76984, 64451, 'ko', 'name', 'źµ­ģ œģ”°ģ„øķ˜‘ķšŒ'),
(76985, 64452, 'en', 'name', 'The Korean Institute of Communications and Information Sciences'),
(76986, 64452, 'ko', 'name', 'ķ•œźµ­ 통신 정볓 ķ•™ķšŒ'),
(76987, 64453, 'en', 'name', 'The Korean Association of Primary English Education'),
(76988, 64453, 'ko', 'name', 'ķ•œźµ­ ģ“ˆė“± ģ˜ģ–“ 교윔 ķ˜‘ķšŒ'),
(76989, 64454, 'en', 'name', 'Korea Association for Social Welfare Studies'),
(76990, 64455, 'en', 'name', 'Center for Art Studies'),
(76991, 64455, 'ko', 'name', 'ķ•œźµ­ģ˜ˆģˆ ģ—°źµ¬ģ†Œ'),
(76992, 64456, 'en', 'name', 'The Korean Association for Public Administration'),
(76993, 64456, 'ko', 'name', 'ķ•œźµ­ 행정 ķ•™ķšŒ'),
(76994, 64457, 'en', 'name', 'Korea Internet e-Commerce Association'),
(76995, 64457, 'ko', 'name', 'ķ•œźµ­ģøķ„°ė„·ģ „ģžģƒź±°ėž˜ķ•™ķšŒ'),
(76996, 64458, 'en', 'name', 'Korea Public Relations Consultancy Association'),
(76997, 64458, 'ko', 'name', 'ķ•œźµ­ ķ™ė³“ ģƒė‹“ķšŒ'),
(76998, 64459, 'en', 'name', 'Korean Association Of Business Education'),
(76999, 64459, 'ko', 'name', 'ķ•œźµ­ 경영 교윔 ķ•™ķšŒ'),
(77000, 64460, 'en', 'name', 'Korea Invention Promotion Association'),
(77001, 64460, 'ko', 'name', 'ķ•œźµ­ė°œėŖ…ģ§„ķ„ķšŒ');
INSERT INTO `ror_settings` VALUES
(77002, 64461, 'en', 'name', 'Korea Reformed Theological Society'),
(77003, 64461, 'ko', 'name', 'ķ•œźµ­ 개혁 ģ‹ ķ•™ķšŒ'),
(77004, 64462, 'en', 'name', 'Korea Academy of Mental Health Social Work'),
(77005, 64462, 'ko', 'name', 'ķ•œźµ­ģ •ģ‹ ė³“ź±“ģ‚¬ķšŒė³µģ§€ķ•™ķšŒ'),
(77006, 64463, 'en', 'name', 'The Korean Regional Development Association'),
(77007, 64463, 'ko', 'name', 'ķ•œźµ­ģ§€ģ—­ź°œė°œķ•™ķšŒ'),
(77008, 64464, 'no_lang_code', 'name', 'Korea Kacoh (South Korea)'),
(77009, 64464, 'ko', 'name', '코리아칓코'),
(77010, 64465, 'en', 'name', 'Korea Association of Chinese Language and Literature'),
(77011, 64465, 'ko', 'name', 'ķ•œźµ­ģ¤‘ģ–“ģ¤‘ė¬øķ•™ķšŒ'),
(77012, 64466, 'en', 'name', 'The Korean Association for the Study of English Language and Linguistics'),
(77013, 64466, 'ko', 'name', 'ķ•œźµ­ģ˜ģ–“ķ•™ķšŒ'),
(77014, 64467, 'en', 'name', 'Korean Society for Engineering Education'),
(77015, 64467, 'ko', 'name', 'ķ•œźµ­ź³µķ•™źµģœ”ķ•™ķšŒ'),
(77016, 64468, 'en', 'name', 'Korea Regional Economic Reserach institute'),
(77017, 64468, 'ko', 'name', 'ķ•œźµ­ 지역 경제 연구원'),
(77018, 64469, 'en', 'name', 'The Korean Society of British and American Fiction'),
(77019, 64469, 'ko', 'name', 'ķ•œźµ­ź·¼ėŒ€ģ˜ėÆøģ†Œģ„¤ķ•™ķšŒ'),
(77020, 64470, 'en', 'name', 'Korea Music Educators Society'),
(77021, 64470, 'ko', 'name', 'ķ•œźµ­ģŒģ•…źµģœ”ķ•™ķšŒ'),
(77022, 64471, 'en', 'name', 'The Korean Society Of Western Civilization'),
(77023, 64471, 'ko', 'name', 'ķ•œźµ­ ģ„œģ–‘ 문명 ķ•™ķšŒ'),
(77024, 64472, 'en', 'name', 'New Testament Society of Korea'),
(77025, 64472, 'ko', 'name', 'ķ•œźµ­ģ‹ ģ•½ķ•™ķšŒ'),
(77026, 64473, 'en', 'name', 'Latin American Studies Association of Korea'),
(77027, 64473, 'ko', 'name', 'ķ•œźµ­ė¼ķ‹“ģ•„ė©”ė¦¬ģ¹“ķ•™ķšŒ'),
(77028, 64474, 'en', 'name', 'The Association for Historical Studies on Korean National Movement'),
(77029, 64474, 'ko', 'name', 'ķ•œźµ­ėÆ¼ģ”±ģš“ė™ģ‚¬ķ•™ķšŒ'),
(77030, 64475, 'en', 'name', 'Korea Moral Education Association'),
(77031, 64475, 'ko', 'name', 'ķ•œźµ­ė„ė•źµģœ”ķ•™ķšŒ'),
(77032, 64476, 'en', 'name', 'The Korean Society for Brain and Neural Sciences'),
(77033, 64476, 'ko', 'name', 'ķ•œźµ­ė‡Œģ‹ ź²½ź³¼ķ•™ķšŒ'),
(77034, 64477, 'en', 'name', 'Society for Korean Traditional Performing Arts'),
(77035, 64477, 'ko', 'name', 'ķ•œźµ­ģ „ķ†µź³µģ—°ģ˜ˆģˆ ķ•™ķšŒ'),
(77036, 64478, 'en', 'name', 'Korean Society of Systematic Theology'),
(77037, 64478, 'ko', 'name', 'ķ•œźµ­ ģ‹ ķ•™ ėŒ€ķ•™ģ›'),
(77038, 64479, 'en', 'name', 'Korean Society for Emotion and Sensibility'),
(77039, 64479, 'ko', 'name', 'ķ•œźµ­ź°ģ„±ź³¼ķ•™ķšŒ'),
(77040, 64480, 'en', 'name', 'Korean Society for Western Medieval History'),
(77041, 64480, 'ko', 'name', 'ķ•œźµ­ ģ„œģ–‘ 중세사 ķ•™ķšŒ'),
(77042, 64481, 'en', 'name', 'The Society of Korean Performance Art and Culture'),
(77043, 64481, 'ko', 'name', 'ķ•œźµ­ 공연 예술 ķ•™ķšŒ'),
(77044, 64482, 'en', 'name', 'Korean Association for Archaeological Heritage'),
(77045, 64482, 'ko', 'name', 'ķ•œźµ­ė§¤ģž„ė¬øķ™”ģž¬ķ˜‘ķšŒ'),
(77046, 64483, 'en', 'name', 'Korean Association For Studies of Philosophical Thought'),
(77047, 64483, 'ko', 'name', 'ķ•œźµ­ ģ² ķ•™ ģ—°źµ¬ķšŒ'),
(77048, 64484, 'en', 'name', 'Korean Society for Teaching English Literature'),
(77049, 64484, 'ko', 'name', 'ķ•œźµ­ģ˜ėÆøė¬øķ•™źµģœ”ķ•™ķšŒ'),
(77050, 64485, 'en', 'name', 'The Musicological Society of Korea'),
(77051, 64485, 'ko', 'name', 'ķ•œźµ­ ģŒģ•… ķ•™ķšŒ'),
(77052, 64486, 'en', 'name', 'The Society of Korean Practical Arts Education Research'),
(77053, 64486, 'ko', 'name', 'ķ•œźµ­ģ‹¤ź³¼źµģœ”ģ—°źµ¬ķ•™ķšŒ'),
(77054, 64487, 'en', 'name', 'The Korean Society of Art Theories'),
(77055, 64487, 'ko', 'name', 'ķ•œźµ­ėÆøģˆ ģ“ė” ķ•™ķšŒ'),
(77056, 64488, 'en', 'name', 'Korean Philosophical Association'),
(77057, 64488, 'ko', 'name', 'ķ•œźµ­ ģ² ķ•™ķšŒ'),
(77058, 64489, 'en', 'name', 'Korea Association of Teachers of English'),
(77059, 64489, 'ko', 'name', 'ķ•œźµ­ģ˜ģ–“źµģœ”ķ•™ķšŒ'),
(77060, 64490, 'en', 'name', 'Korean Association of Feminist Philosophers'),
(77061, 64490, 'ko', 'name', 'ķ•œźµ­ 여성 ģ² ķ•™ģž ķ˜‘ķšŒ'),
(77062, 64491, 'en', 'name', 'The Korean Association for Children with Special Needs'),
(77063, 64491, 'ko', 'name', 'ķ•œźµ­ķŠ¹ģˆ˜ģ•„ė™ķ•™ķšŒ'),
(77064, 64492, 'en', 'name', 'Korean Sociological Association'),
(77065, 64492, 'ko', 'name', 'ķ•œźµ­ģ‚¬ķšŒķ•™ķšŒ'),
(77066, 64493, 'en', 'name', 'Korean Society for Political Thought'),
(77067, 64493, 'ko', 'name', 'ķ•œźµ­ģ •ģ¹˜ģ‚¬ģƒķ•™ķšŒ'),
(77068, 64494, 'en', 'name', 'Korean Association of Southeast Asian Studies'),
(77069, 64494, 'ko', 'name', 'ķ•œźµ­ė™ė‚Øģ•„ķ•™ķšŒ'),
(77070, 64495, 'en', 'name', 'Korea Women''s Associations United'),
(77071, 64495, 'ko', 'name', 'ķ•œźµ­ 여성 단첓 ģ—°ķ•©'),
(77072, 64496, 'en', 'name', 'Korea Entrepreneurship Foundation'),
(77073, 64496, 'ko', 'name', 'ķ•œźµ­ģ²­ė…„źø°ģ—…ź°€ģ •ģ‹ ģž¬ė‹Ø'),
(77074, 64497, 'en', 'name', 'Korean Society of Sport Psychology'),
(77075, 64497, 'ko', 'name', 'ķ•œźµ­ģŠ¤ķ¬ģø ģ‹¬ė¦¬ķ•™ķšŒ'),
(77076, 64498, 'en', 'name', 'Korean Association of Real Estate Law'),
(77077, 64498, 'ko', 'name', 'ķ•œźµ­ ė¶€ė™ģ‚°ė²• ķ•™ķšŒ'),
(77078, 64499, 'en', 'name', 'The Korea Society for Chinese Studies'),
(77079, 64499, 'ko', 'name', 'ķ•œźµ­ģ¤‘źµ­ķ•™ķšŒ'),
(77080, 64500, 'en', 'name', 'Korean Ethics Education Association'),
(77081, 64500, 'ko', 'name', 'ķ•œźµ­ģœ¤ė¦¬źµģœ”ķ•™ķšŒ'),
(77082, 64501, 'en', 'name', 'Korean Women''s Association for Communication Studies'),
(77083, 64501, 'ko', 'name', 'ķ•œźµ­ 여성 ķ•™ķšŒ'),
(77084, 64502, 'en', 'name', 'The Korean Association for Christian Ethics'),
(77085, 64502, 'ko', 'name', 'ķ•œźµ­ źø°ė…źµ ģœ¤ė¦¬ķ•™ķšŒ'),
(77086, 64503, 'en', 'name', 'The Korean Association for Dialectology'),
(77087, 64503, 'ko', 'name', 'ķ•œźµ­ė°©ģ–øķ•™ķšŒ'),
(77088, 64504, 'en', 'name', 'The Korean Association of Ethics'),
(77089, 64504, 'ko', 'name', 'ķ•œźµ­ģœ¤ė¦¬ķ•™ķšŒ'),
(77090, 64505, 'en', 'name', 'Korean Urban Management Association'),
(77091, 64505, 'ko', 'name', 'ķ•œźµ­ė„ģ‹œķ–‰ģ •ķ•™ķšŒ'),
(77092, 64506, 'en', 'name', 'The Korean Society of Greco-Roman Studies'),
(77093, 64506, 'ko', 'name', 'ķ•œźµ­ģ„œģ–‘ź³ ģ „ķ•™ķšŒ'),
(77094, 64507, 'en', 'name', 'Korean Family studies Association'),
(77095, 64507, 'ko', 'name', 'ķ•œźµ­ź°€ģ”±ķ•™ķšŒ'),
(77096, 64508, 'en', 'name', 'Korean Publishing Science Society'),
(77097, 64508, 'ko', 'name', 'ķ•œźµ­ 출판 ķ•™ķšŒ'),
(77098, 64509, 'en', 'name', 'Korean Association of Women''s History'),
(77099, 64509, 'ko', 'name', 'ķ•œźµ­ 여성사 ķ˜‘ķšŒ'),
(77100, 64510, 'en', 'name', 'Korean Family Resource Management Association'),
(77101, 64510, 'ko', 'name', 'ķ•œźµ­ź°€ģ”±ģžģ›ź²½ģ˜ķ•™ķšŒ'),
(77102, 64511, 'en', 'name', 'The T.S. Eliot Society of Korea'),
(77103, 64511, 'ko', 'name', 'ķ•œźµ­T.S.ģ—˜ė¦¬ģ—‡ķ•™ķšŒ'),
(77104, 64512, 'en', 'name', 'Korean Family Welfare Society'),
(77105, 64512, 'ko', 'name', 'ķ•œźµ­ź°€ģ”±ģ‚¬ķšŒė³µģ§€ķ•™ķšŒģ˜'),
(77106, 64513, 'en', 'name', 'Korea Dance Association'),
(77107, 64513, 'ko', 'name', 'ģ‚¬ė‹Øė²•ģø ķ•œźµ­ė¬“ģš©ķ˜‘ķšŒ'),
(77108, 64514, 'en', 'name', 'Korean Association for Religious Education'),
(77109, 64514, 'ko', 'name', 'ķ•œźµ­ 종교 교윔 ķ˜‘ķšŒ'),
(77110, 64515, 'en', 'name', 'Korean Association of Physical Education and Sport for Girls and Women'),
(77111, 64515, 'ko', 'name', 'ķ•œźµ­ 첓윔 첓윔 ģŠ¤ķ¬ģø  ķ˜‘ķšŒ'),
(77112, 64516, 'en', 'name', 'The Korean Society of Design Culture'),
(77113, 64516, 'ko', 'name', 'ķ•œźµ­ė””ģžģøė¬øķ™”ķ•™ķšŒ'),
(77114, 64517, 'en', 'name', 'Korean Association for Religious Studies'),
(77115, 64517, 'ko', 'name', 'ķ•œźµ­ 종교 ķ•™ķšŒ'),
(77116, 64518, 'en', 'name', 'Korean Society of Design Science'),
(77117, 64518, 'ko', 'name', 'ķ•œźµ­ė””ģžģøķ•™ķšŒ'),
(77118, 64519, 'en', 'name', 'Korean Association of Sport Pedagogy'),
(77119, 64519, 'ko', 'name', 'ķ•œźµ­ģŠ¤ķ¬ģø źµģœ”ķ•™ķšŒ'),
(77120, 64520, 'en', 'name', 'Korean Association Of Rusists'),
(77121, 64520, 'ko', 'name', 'ķ•œźµ­ ė£Øģ‹œģŠ¤ķŠø ķ˜‘ķšŒ'),
(77122, 64521, 'en', 'name', 'The Korean Association of Sports and Entertainment Law'),
(77123, 64521, 'ko', 'name', 'ķ•œźµ­ģŠ¤ķ¬ģø ģ—”ķ„°ķ…ŒģøėØ¼ķŠøė²•ķ•™ķšŒ'),
(77124, 64522, 'en', 'name', 'The Korean Society for the Philosophy of Science'),
(77125, 64522, 'ko', 'name', 'ķ•œźµ­ ģ² ķ•™ ķ•™ķšŒ'),
(77126, 64523, 'en', 'name', 'The Korean Society for Early Childhood Education'),
(77127, 64523, 'ko', 'name', 'ķ•œźµ­ģœ ģ•„źµģœ”ķ•™ķšŒ'),
(77128, 64524, 'en', 'name', 'Korea Society of Strategic Management'),
(77129, 64524, 'ko', 'name', 'ķ•œźµ­ģ „ėžµź²½ģ˜ķ•™ķšŒ'),
(77130, 64525, 'en', 'name', 'Korean Association of Exercise Physiology'),
(77131, 64525, 'ko', 'name', 'ķ•œźµ­ģš“ė™ģƒė¦¬ķ•™ķšŒ'),
(77132, 64526, 'en', 'name', 'Korean Association of Family Therapy'),
(77133, 64527, 'en', 'name', 'The Korean Society for German History'),
(77134, 64527, 'ko', 'name', 'ķ•œźµ­ė…ģ¼ģ‚¬ķ•™ķšŒ'),
(77135, 64528, 'en', 'name', 'Korean Technology Education Association'),
(77136, 64528, 'ko', 'name', 'ķ•œźµ­źø°ģˆ źµģœ”ķ•™ķšŒ'),
(77137, 64529, 'en', 'name', 'The Korean Generative Grammar Circle'),
(77138, 64529, 'ko', 'name', 'ķ•œźµ­ 문법 ķ•™ķšŒ'),
(77139, 64530, 'en', 'name', 'Korea Institute of Youth Facility and Environment'),
(77140, 64531, 'en', 'name', 'Korean Literature Theory and Criticism Society'),
(77141, 64531, 'ko', 'name', 'ķ•œźµ­ė¬øķ•™ģ“ė” ź³¼ ė¹„ķ‰ķ•™ķšŒ'),
(77142, 64532, 'en', 'name', 'The Korean Literature Association'),
(77143, 64532, 'ko', 'name', 'ķ•œźµ­ė¬øķ•™ķšŒ'),
(77144, 64533, 'en', 'name', 'The Korean Society for Gifted and Talented'),
(77145, 64533, 'ko', 'name', 'ķ•œźµ­ģ˜ģž¬źµģœ”ķ•™ķšŒ'),
(77146, 64534, 'en', 'name', 'The Korean Social and Personality Psychological Association'),
(77147, 64534, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ ė° ģøģ„± 심리 ķ•™ķšŒ'),
(77148, 64535, 'en', 'name', 'The Korean Society for Literature and Religion'),
(77149, 64535, 'ko', 'name', 'ķ•œźµ­ė¬øķ•™ź³¼ģ¢…źµķ•™ķšŒ'),
(77150, 64536, 'en', 'name', 'Korea Institute of Theological Information'),
(77151, 64536, 'ko', 'name', 'ķ•œźµ­ģ‹ ķ•™ģ •ė³“ģ—°źµ¬ģ›'),
(77152, 64537, 'en', 'name', 'Korean Historical Folklore Institute'),
(77153, 64537, 'ko', 'name', 'ķ•œźµ­ģ—­ģ‚¬ėÆ¼ģ†ķ•™ķšŒ'),
(77154, 64538, 'en', 'name', 'Korea-China Science & Technology Cooperation Center'),
(77155, 64538, 'ko', 'name', 'ķ•œģ¤‘ 과학 기술 ķ˜‘ė „ 센터'),
(77156, 64539, 'en', 'name', 'Korea Tourism Organization'),
(77157, 64539, 'ko', 'name', 'ķ•œźµ­ź“€ź“‘ź³µģ‚¬'),
(77158, 64540, 'en', 'name', 'Korean Home Economics Education Association'),
(77159, 64540, 'ko', 'name', 'ķ•œźµ­ź°€ģ •ź³¼źµģœ”ķ•™ķšŒ 회'),
(77160, 64541, 'en', 'name', 'The Korean Society for the Study of Career Education'),
(77161, 64541, 'ko', 'name', 'ķ•œźµ­ 직업 교윔 ģ—°źµ¬ķšŒ'),
(77162, 64542, 'en', 'name', 'Korean Social Theory Association'),
(77163, 64542, 'ko', 'name', 'ķ•œźµ­ģ‚¬ķšŒģ“ė” ķ•™ķšŒ'),
(77164, 64543, 'en', 'name', 'Korean Spanish Literature Society'),
(77165, 64543, 'ko', 'name', 'ķ•œźµ­ģŠ¤ķŽ˜ģøģ–“ė¬øķ•™ķšŒ'),
(77166, 64544, 'en', 'name', 'Korean Housing Association'),
(77167, 64544, 'ko', 'name', 'ėŒ€ķ•œ ģ£¼ķƒ ģ”°ķ•©'),
(77168, 64545, 'en', 'name', 'Korean Accounting Association'),
(77169, 64545, 'ko', 'name', 'ķ•œźµ­ķšŒź³„ķ•™ķšŒ'),
(77170, 64546, 'en', 'name', 'Tax Law Association'),
(77171, 64547, 'en', 'name', 'Korea Tourism College'),
(77172, 64547, 'ko', 'name', 'ķ•œźµ­ź“€ź“‘ėŒ€ķ•™źµ'),
(77173, 64548, 'en', 'name', 'The Korean Society for Sociology of Education'),
(77174, 64548, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ ķ•™ķšŒ'),
(77175, 64549, 'en', 'name', 'The Korean Society for the Study of Teacher Education'),
(77176, 64549, 'ko', 'name', 'ķ•œźµ­źµģ›źµģœ”ķ•™ķšŒ'),
(77177, 64550, 'en', 'name', 'The Textlinguistic Society of Korea'),
(77178, 64550, 'ko', 'name', 'ķ•œźµ­ķ…ģŠ¤ķŠøģ–øģ–“ķ•™ķšŒ'),
(77179, 64551, 'en', 'name', 'Korea Agricultural Economics Association'),
(77180, 64551, 'ko', 'name', 'ķ•œźµ­ė†ģ—…ź²½ģ œķ•™ķšŒ'),
(77181, 64552, 'en', 'name', 'Korea Tourism Research Association'),
(77182, 64552, 'ko', 'name', 'ķ•œźµ­ź“€ź“‘ģ—°źµ¬ķ•™ķšŒ'),
(77183, 64553, 'en', 'name', 'Korean Theatre Education Association'),
(77184, 64553, 'ko', 'name', 'ķ•œźµ­ģ—°ź·¹źµģœ”ķ•™ķšŒ'),
(77185, 64554, 'en', 'name', 'The Korean Society for School Science'),
(77186, 64554, 'ko', 'name', 'ėŒ€ķ•œ 학교 ķ•™ķšŒ'),
(77187, 64555, 'en', 'name', 'Urban Design Institute of Korea'),
(77188, 64555, 'ko', 'name', 'ķ•œźµ­ ė„ģ‹œ ė””ģžģø 학원'),
(77189, 64556, 'en', 'name', 'The Society of Study for Korean Music Education'),
(77190, 64556, 'ko', 'name', 'ķ•œźµ­źµ­ģ•…źµģœ”ģ—°źµ¬ķ•™ķšŒ'),
(77191, 64557, 'en', 'name', 'Korean Society of Interpretation and Translation Studies'),
(77192, 64557, 'ko', 'name', '우리 ķ•œźµ­ķ†µģ—­ė²ˆģ—­ķ•™ķšŒź°€'),
(77193, 64558, 'en', 'name', 'Korean Musicological Society'),
(77194, 64558, 'ko', 'name', 'ķ•œźµ­źµ­ģ•…ķ•™ķšŒ'),
(77195, 64559, 'en', 'name', 'The Society of Korean Language and Culture'),
(77196, 64559, 'ko', 'name', 'ķ•œźµ­ģ–“ģ™€ ķ•œźµ­ 문화 ķ•™ķšŒ'),
(77197, 64560, 'en', 'name', 'Korea Society of Translators'),
(77198, 64560, 'ko', 'name', 'ķ•œźµ­ė²ˆģ—­ź°€ķ˜‘ķšŒ'),
(77199, 64561, 'en', 'name', 'The Korean Urban Geographical Society'),
(77200, 64561, 'ko', 'name', 'ķ•œźµ­ė„ģ‹œģ§€ė¦¬ķ•™ķšŒ'),
(77201, 64562, 'en', 'name', 'The Korean Language And Culture Education Society'),
(77202, 64562, 'ko', 'name', 'ķ•œźµ­ģ–øģ–“ė¬øķ™”źµģœ”ķ•™ķšŒ'),
(77203, 64563, 'en', 'name', 'Korea Venture Business Association'),
(77204, 64563, 'ko', 'name', 'ė²¤ģ²˜źø°ģ—…ķ˜‘ķšŒ'),
(77205, 64564, 'en', 'name', 'Korean Library And Information Science Society'),
(77206, 64564, 'ko', 'name', 'ķ•œźµ­ ė„ģ„œź“€ 정볓 ķ•™ķšŒ'),
(77207, 64565, 'en', 'name', 'The Society of Living Environment System'),
(77208, 64565, 'ko', 'name', 'ķ•œźµ­ģƒķ™œķ™˜ź²½ķ•™ķšŒ'),
(77209, 64566, 'en', 'name', 'The Society of Korean Language Education'),
(77210, 64566, 'ko', 'name', 'ķ•œźµ­ģ–“źµģœ”ķ•™ķšŒ'),
(77211, 64567, 'en', 'name', 'Korea-American Association'),
(77212, 64567, 'ko', 'name', 'ķ•œėÆø ķ˜‘ķšŒ'),
(77213, 64568, 'en', 'name', 'Society of Korean Classical Woman Literature'),
(77214, 64568, 'ko', 'name', 'ķ•œźµ­ź³ ģ „ģ—¬ģ„±ė¬øķ•™ķšŒ'),
(77215, 64569, 'en', 'name', 'Korean Social History Association'),
(77216, 64569, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒģ‚¬ ķ˜‘ķšŒ'),
(77217, 64570, 'en', 'name', 'Korean Arabic Arabic Literature Society'),
(77218, 64570, 'ko', 'name', 'ģ•„ėžģ–“ ģ•„ėžģ–“ ė¬øķ•™ķšŒ'),
(77219, 64571, 'en', 'name', 'Korean Language Institute'),
(77220, 64571, 'ko', 'name', 'ģ—°ģ„øėŒ€ķ•™źµ ķ•œźµ­ģ–“ķ•™ė‹¹ģ€'),
(77221, 64572, 'en', 'name', 'The Sociolinguistic Society of Korea'),
(77222, 64572, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ ģ–øģ–“ ķ•™ķšŒ'),
(77223, 64573, 'en', 'name', 'Korean-German Vocational College'),
(77224, 64573, 'ko', 'name', 'ķ•œė…ģ§ģ—…ģ „ė¬øķ•™źµ'),
(77225, 64574, 'en', 'name', 'Korean Japanese Association'),
(77226, 64574, 'ko', 'name', 'ķ•œģ¼ķ˜‘ķšŒ'),
(77227, 64575, 'en', 'name', 'Korea International Trade Research Institute'),
(77228, 64575, 'ko', 'name', 'ķ•œźµ­ 묓역 연구원'),
(77229, 64576, 'no_lang_code', 'name', 'Korea Innotech (South Korea)'),
(77230, 64576, 'ko', 'name', 'ź³ ė ¤ģ“ė…øķ…Œķ¬'),
(77231, 64577, 'en', 'name', 'Korean Language Society'),
(77232, 64577, 'ko', 'name', 'ķ•œźø€ ķ•™ķšŒ'),
(77233, 64578, 'en', 'name', 'The Korean Association for Local Government & Administration Studies'),
(77234, 64578, 'ko', 'name', 'ėŒ€ķ•œ 지방 행정 ķ•™ķšŒ'),
(77235, 64579, 'en', 'name', 'Korean Academy of Social Welfare'),
(77236, 64579, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ 복지'),
(77237, 64580, 'en', 'name', 'Korean Association Of Social Welfare Policy'),
(77238, 64580, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ 복지 ģ •ģ±… ķ•™ķšŒ'),
(77239, 64581, 'en', 'name', 'Korean Beauty Society'),
(77240, 64581, 'ko', 'name', 'ķ•œźµ­ ė·°ķ‹° ķ•™ķšŒ'),
(77241, 64582, 'en', 'name', 'Korean Association of Space & Environment Research'),
(77242, 64582, 'ko', 'name', 'ķ•œźµ­ 우주 ķ™˜ź²½ 연구 ķ•™ķšŒ'),
(77243, 64583, 'en', 'name', 'The Linguistic Society of Korea'),
(77244, 64583, 'ko', 'name', 'ķ•œźµ­ģ–øģ–“ķ•™ķšŒ'),
(77245, 64584, 'en', 'name', 'Korean Bible Society'),
(77246, 64584, 'ko', 'name', 'ķ•œźµ­ ģ„±ģ„œ 공회'),
(77247, 64585, 'en', 'name', 'Kyung Hee Cyber University'),
(77248, 64585, 'ko', 'name', 'ź²½ķ¬ģ‚¬ģ“ė²„ėŒ€ķ•™źµ/ę…¶ē†™ģ‚¬ģ“ė²„å¤§å­øę ”'),
(77249, 64586, 'en', 'name', 'Kyung-in Women''s University'),
(77250, 64586, 'ko', 'name', 'ź²½ ģ—¬ģž ėŒ€ķ•™źµ'),
(77251, 64587, 'en', 'name', 'Korean Society for Journalism and Communication Studies'),
(77252, 64587, 'ko', 'name', 'ķ•œźµ­ ģ €ė„ė¦¬ģ¦˜ ģ»¤ė®¤ė‹ˆģ¼€ģ“ģ…˜ ķ•™ķšŒ'),
(77253, 64588, 'en', 'name', 'Kyungbok University'),
(77254, 64588, 'ko', 'name', 'ź²½ė³µėŒ€ķ•™źµ'),
(77255, 64589, 'en', 'name', 'The Korean Academic Society of Business Administration And Law'),
(77256, 64589, 'ko', 'name', 'ķ•œźµ­ 경영 ķ•™ķšŒ'),
(77257, 64590, 'en', 'name', 'Korea Association of Chinese Language Education'),
(77258, 64590, 'ko', 'name', 'ķ•œźµ­ ģ–øģ–“ 교윔 ķ•™ķšŒ'),
(77259, 64591, 'en', 'name', 'Kyungmin University'),
(77260, 64591, 'ko', 'name', 'ź²½ėÆ¼ėŒ€ķ•™źµ'),
(77261, 64592, 'en', 'name', 'Korean Association For Local Government Studies'),
(77262, 64592, 'ko', 'name', 'ķ•œźµ­ģ§€ė°©ģžģ¹˜ķ•™ķšŒėŠ”'),
(77263, 64593, 'en', 'name', 'Kyungnam College of Information and Technology'),
(77264, 64593, 'ko', 'name', 'ź²½ė‚Øģ •ė³“ėŒ€ķ•™źµ'),
(77265, 64594, 'en', 'name', 'Korean Society of Civil Engineers'),
(77266, 64594, 'ko', 'name', 'ėŒ€ķ•œ 토목 ķ•™ķšŒ'),
(77267, 64595, 'en', 'name', 'Korean Logistics Research Association'),
(77268, 64595, 'ko', 'name', 'ķ•œźµ­ė¬¼ė„˜ķ•™ķšŒ'),
(77269, 64596, 'en', 'name', 'The Korea Association for Han-Character and Classical Written Language Education'),
(77270, 64596, 'ko', 'name', 'ķ•œźµ­ ķ•œė¬øķ•™ ė° ź³ ģ „ 문얓 교윔 ķ˜‘ķšŒ'),
(77271, 64597, 'en', 'name', 'Korean Marketing Association'),
(77272, 64597, 'ko', 'name', 'ķ•œźµ­ė§ˆģ¼€ķŒ…ķ•™ķšŒ'),
(77273, 64598, 'en', 'name', 'Korea International Understanding Education Society'),
(77274, 64598, 'ko', 'name', 'ķ•œźµ­ 국제 ģ“ķ•“ 교윔 ķ•™ķšŒ'),
(77275, 64599, 'en', 'name', 'Medieval and Early Modern English Studies Association of Korea'),
(77276, 64599, 'ko', 'name', 'ķ•œźµ­ģ¤‘ģ„øė„“ė„¤ģƒģŠ¤ģ˜ė¬øķ•™ķšŒ'),
(77277, 64600, 'en', 'name', 'The Korean Society of Eastern Art Studies'),
(77278, 64600, 'ko', 'name', 'ķ•œźµ­ ė™ģ„œģ–‘ ķ•™ķšŒ'),
(77279, 64601, 'en', 'name', 'The Korean Society of Sports Science'),
(77280, 64601, 'ko', 'name', 'ėŒ€ķ•œ 첓윔 ķ•™ķšŒ'),
(77281, 64602, 'en', 'name', 'Korean Association for History of Modern Art'),
(77282, 64602, 'ko', 'name', 'ķ˜„ėŒ€ėÆøģˆ ģ‚¬ķ•™ķšŒ'),
(77283, 64603, 'en', 'name', 'Korean Association Of Science and Technology Studies'),
(77284, 64603, 'ko', 'name', 'ķ•œźµ­ 과학 기술 ķ•™ķšŒ'),
(77285, 64604, 'en', 'name', 'Association for the Study of Literature & Environment'),
(77286, 64604, 'ko', 'name', '문학 ė° ķ™˜ź²½ ķ•™ķšŒ'),
(77287, 64605, 'en', 'name', 'The Modern English Society of Korea'),
(77288, 64605, 'ko', 'name', 'ķ˜„ėŒ€ ķ•œźµ­ ģ˜ģ–“ ķ•™ķšŒ'),
(77289, 64606, 'no_lang_code', 'name', 'Language Science (South Korea)'),
(77290, 64606, 'ko', 'name', '언얓과학'),
(77291, 64607, 'en', 'name', 'Masan University'),
(77292, 64607, 'ko', 'name', 'ė§ˆģ‚° ėŒ€ķ•™źµ'),
(77293, 64608, 'en', 'name', 'The Korean Association of Literature and Film'),
(77294, 64608, 'ko', 'name', 'ķ•œźµ­ 문학 ģ˜ķ™” ķ•™ķšŒ'),
(77295, 64609, 'en', 'name', 'Korean Mathematical Society'),
(77296, 64609, 'ko', 'name', 'ķ•œźµ­ ģˆ˜ķ•™ķšŒ'),
(77297, 64610, 'en', 'name', 'Korean Classics Research Society'),
(77298, 64610, 'ko', 'name', 'ķ•œźµ­ ź³ ģ „ ķ•™ķšŒ'),
(77299, 64611, 'en', 'name', 'The Society of Korean Literary Criticism'),
(77300, 64611, 'ko', 'name', 'ķ•œźµ­ė¹„ķ‰ė¬øķ•™ķšŒėŠ”'),
(77301, 64612, 'en', 'name', 'Modern Korean Literature Assocation'),
(77302, 64612, 'ko', 'name', 'ķ•œźµ­ ź·¼ėŒ€ ė¬øķ•™ķšŒ'),
(77303, 64613, 'en', 'name', 'Korean Cognitive and Biological Psychology Society'),
(77304, 64613, 'ko', 'name', 'ķ•œźµ­ģøģ§€ė°ģƒė¬¼ģ‹¬ė¦¬ķ•™ķšŒ'),
(77305, 64614, 'en', 'name', 'Medical Device Information & Technology Assistance Center'),
(77306, 64615, 'no_lang_code', 'name', 'Medifron (South Korea)'),
(77307, 64616, 'en', 'name', 'The Korean Association of Language Studies'),
(77308, 64616, 'ko', 'name', 'ķ•œźµ­ģ–øģ–“ģ—°źµ¬ķ•™ķšŒ'),
(77309, 64617, 'en', 'name', 'Korea Communication Association'),
(77310, 64617, 'ko', 'name', 'ķ•œźµ­ 통신 ķ˜‘ķšŒ'),
(77311, 64618, 'en', 'name', 'The Linguistic Science Society'),
(77312, 64618, 'ko', 'name', 'ģ–øģ–“ź³¼ķ•™ķšŒ'),
(77313, 64619, 'no_lang_code', 'name', 'Medipost (South Korea)'),
(77314, 64619, 'ko', 'name', '메디 ķ¬ģŠ¤ķŠø'),
(77315, 64620, 'en', 'name', 'Korean Society of Comparision Labor Law'),
(77316, 64620, 'ko', 'name', 'ķ•œźµ­ė¹„źµė…øė™ė²•ķ•™ķšŒ'),
(77317, 64621, 'en', 'name', 'Korea Institute of Human Resources Development'),
(77318, 64621, 'ko', 'name', 'źµ­ź°€ź³¼ķ•™źø°ģˆ ģøė „ź°œė°œģ›'),
(77319, 64622, 'no_lang_code', 'name', 'NC bit (South Korea)'),
(77320, 64623, 'no_lang_code', 'name', 'Korea Sensor Technology (South Korea)'),
(77321, 64623, 'ko', 'name', 'ķ•œźµ­ ģ„¼ģ„œ 기술'),
(77322, 64624, 'en', 'name', 'Korea Counseling Psychology Association'),
(77323, 64624, 'ko', 'name', 'ķ•œźµ­ ģƒė‹“ 심리 ķ•™ķšŒ'),
(77324, 64625, 'no_lang_code', 'name', 'Space Solutions (South Korea)'),
(77325, 64625, 'ko', 'name', '우주 ģ†”ė£Øģ…˜'),
(77326, 64626, 'en', 'name', 'The Korean Criminal Law Association'),
(77327, 64626, 'ko', 'name', 'ķ•œźµ­ ķ˜•ė²• ķ˜‘ķšŒ'),
(77328, 64627, 'no_lang_code', 'name', 'Nemo Partners (South Korea)'),
(77329, 64627, 'ko', 'name', 'ė„¤ėŖØķŒŒķŠøė„ˆģ¦ˆ'),
(77330, 64628, 'en', 'name', 'The Modern English Education Society'),
(77331, 64629, 'no_lang_code', 'name', 'Neo Access (South Korea)'),
(77332, 64629, 'ko', 'name', 'ė„¤ģ˜¤ģ—‘ģ„øģŠ¤'),
(77333, 64630, 'en', 'name', 'The Korean Society for Culture and Arts Education Studies'),
(77334, 64630, 'ko', 'name', 'ķ•œźµ­ 문화 예술 교윔 ķ•™ķšŒ'),
(77335, 64631, 'en', 'name', 'The Society Of Modern Grammar'),
(77336, 64631, 'ko', 'name', 'ķ˜„ėŒ€ 문법 ķ•™ķšŒ'),
(77337, 64632, 'en', 'name', 'The Society for Dance Documentation & History'),
(77338, 64632, 'ko', 'name', '묓용 ķ˜‘ķšŒ ė¬øģ„œ ė° 역사'),
(77339, 64633, 'no_lang_code', 'name', 'Adbiotech (South Korea)'),
(77340, 64634, 'ko', 'name', '(주)ė„„ģŠ¤ė°”ģ“ģ˜¤'),
(77341, 64634, 'no_lang_code', 'name', 'Nex Bio (South Korea)'),
(77342, 64635, 'en', 'name', 'The Association of North-east Asian Cultures'),
(77343, 64635, 'ko', 'name', 'ė™ė¶ģ•„ģ‹œģ•„ė¬øķ™”ķ•™ķšŒ'),
(77344, 64636, 'en', 'name', 'Korea Economic Law Association'),
(77345, 64636, 'ko', 'name', 'ķ•œźµ­ź²½ģ œė²•ķ•™ķšŒ'),
(77346, 64637, 'en', 'name', 'Reformed Graduate University'),
(77347, 64638, 'en', 'name', 'Reformed Theological Institute'),
(77348, 64638, 'ko', 'name', '개혁 ģ‹ ķ•™ 연구원'),
(77349, 64639, 'en', 'name', 'Mokpo Science University'),
(77350, 64639, 'ko', 'name', 'ėŖ©ķ¬ź³¼ķ•™ėŒ€ķ•™źµ'),
(77351, 64640, 'en', 'name', 'The Anglican Church of Korea'),
(77352, 64640, 'ko', 'name', 'ėŒ€ķ•œģ„±ź³µķšŒ ꓀구 ķ™ˆķŽ˜ģ“ģ§€'),
(77353, 64641, 'en', 'name', 'Philosophy Of Education Society Of Korea'),
(77354, 64641, 'ko', 'name', 'ķ•œźµ­ 교윔 ģ² ķ•™ķšŒ'),
(77355, 64642, 'en', 'name', 'The Korean Educational Administration Society'),
(77356, 64642, 'ko', 'name', 'ķ•œźµ­ 교윔 행정 ķ•™ķšŒ'),
(77357, 64643, 'en', 'name', 'Korean Association for the Society of Religion'),
(77358, 64643, 'ko', 'name', 'ķ•œźµ­ 종교 ģ‚¬ķšŒ'),
(77359, 64644, 'en', 'name', 'Korean Association of Architectural History'),
(77360, 64644, 'ko', 'name', 'ź±“ģ¶•ģ—­ģ‚¬ķ•™ķšŒ'),
(77361, 64645, 'en', 'name', 'Korea Open Association Early Childhood Education'),
(77362, 64645, 'ko', 'name', 'ķ•œźµ­ģ—“ė¦°ģœ ģ•„źµģœ”ķ•™ķšŒ'),
(77363, 64646, 'en', 'name', 'Korean Society For Curriculum Studies'),
(77364, 64646, 'ko', 'name', 'ķ•œźµ­źµģœ”ź³¼ģ •ķ•™ķšŒ'),
(77365, 64647, 'en', 'name', 'Korean Cultural Dynamics'),
(77366, 64647, 'ko', 'name', 'ė™ģ–‘ė¬øķ™”ģ—°źµ¬ģ›'),
(77367, 64648, 'no_lang_code', 'name', 'Genoss (South Korea)'),
(77368, 64649, 'en', 'name', 'The Society Eastern Philosophy'),
(77369, 64649, 'ko', 'name', 'ė™ģ–‘ģ² ķ•™ģ—°źµ¬ķšŒ'),
(77370, 64650, 'en', 'name', 'Seoul Institute of the Arts'),
(77371, 64650, 'ko', 'name', 'ģ„œģšø 예술 ėŒ€ķ•™'),
(77372, 64651, 'en', 'name', 'Nano Technology Research Association'),
(77373, 64651, 'ko', 'name', 'ė‚˜ė…øģœµķ•©ģ‚°ģ—…ģ—°źµ¬ģ”°ķ•©'),
(77374, 64652, 'en', 'name', 'Osan University'),
(77375, 64652, 'ko', 'name', 'ģ˜¤ģ‚°ėŒ€ķ•™'),
(77376, 64653, 'no_lang_code', 'name', 'Manchurian Society'),
(77377, 64653, 'ko', 'name', '만주 ģ‚¬ķšŒ'),
(77378, 64654, 'no_lang_code', 'name', 'Autech Group (South Korea)'),
(77379, 64654, 'ko', 'name', 'ģ˜¤ķ…ź·øė£¹ģ€'),
(77380, 64655, 'no_lang_code', 'name', 'Samil Industry (South Korea)'),
(77381, 64656, 'no_lang_code', 'name', 'PricewaterhouseCoopers (South Korea)'),
(77382, 64657, 'no_lang_code', 'name', 'KuboTek (South Korea)'),
(77383, 64657, 'ko', 'name', '쿠볓 ķ…'),
(77384, 64658, 'no_lang_code', 'name', 'Samoo Architects & Engineers (South Korea)'),
(77385, 64659, 'no_lang_code', 'name', 'Pansori Society'),
(77386, 64659, 'ko', 'name', 'ķŒģ†Œė¦¬ķ•™ķšŒėŠ”'),
(77387, 64660, 'no_lang_code', 'name', 'Samyoung Unitech (South Korea)'),
(77388, 64661, 'no_lang_code', 'name', 'Nara Controls (South Korea)'),
(77389, 64662, 'en', 'name', 'The Society of Philosophical Studies'),
(77390, 64662, 'ko', 'name', 'ģ² ķ•™ģ—°źµ¬ķšŒ'),
(77391, 64663, 'no_lang_code', 'name', 'Biocera (South Korea)'),
(77392, 64663, 'ko', 'name', 'ė°”ģ“ģ˜¤ ģ—ė¼'),
(77393, 64664, 'en', 'name', 'Scientists and Engineers Without Borders'),
(77394, 64664, 'ko', 'name', 'źµ­ź²½ģ—†ėŠ” 과학 기술 ģ‚¬ķšŒ'),
(77395, 64665, 'en', 'name', 'Sejong Cyber University'),
(77396, 64665, 'ko', 'name', 'ģ„øģ¢…ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(77397, 64666, 'en', 'name', 'National Institute of Korean History'),
(77398, 64666, 'ko', 'name', 'ķ•œźµ­ 역사 ģ—°źµ¬ģ†Œ'),
(77399, 64667, 'no_lang_code', 'name', 'Terrasun (South Korea)'),
(77400, 64667, 'ko', 'name', 'ķ…Œė¼ 손'),
(77401, 64668, 'ko', 'name', '(ģž¬)ķ¬ķ•­ķ…Œķ¬ė…øķŒŒķ¬'),
(77402, 64668, 'no_lang_code', 'name', 'Pohang TechnoPark (South Korea)'),
(77403, 64669, 'no_lang_code', 'name', 'SensorTec (South Korea)'),
(77404, 64670, 'no_lang_code', 'name', 'Vitzro Tech (South Korea)'),
(77405, 64670, 'ko', 'name', 'ė¹„ģø ė”œ ķ…Œķ¬'),
(77406, 64671, 'no_lang_code', 'name', 'YD Global Life Science (South Korea)'),
(77407, 64671, 'ko', 'name', 'ģ™€ģ“ė””ģƒėŖ…ź³¼ķ•™'),
(77408, 64672, 'en', 'name', 'Seoil University'),
(77409, 64672, 'ko', 'name', 'ē‘žé€øå¤§å­øę ”,'),
(77410, 64673, 'en', 'name', 'National Institute for Lifelong Education'),
(77411, 64673, 'ko', 'name', 'źµ­ź°€ķ‰ģƒźµģœ”ģ§„ķ„ģ›'),
(77412, 64674, 'no_lang_code', 'name', 'Worldwide Intellectual Property Service (South Korea)'),
(77413, 64674, 'ko', 'name', '전세계 지적 ģž¬ģ‚°ź¶Œ ģ„œė¹„ģŠ¤'),
(77414, 64675, 'en', 'name', 'National Sports Promotion Corporation'),
(77415, 64675, 'ko', 'name', 'źµ­ėÆ¼ģ²“ģœ”ģ§„ķ„ź³µė‹Ø'),
(77416, 64676, 'en', 'name', 'Korean Academic Society for Public Relations'),
(77417, 64676, 'ko', 'name', 'ķ•œźµ­PRķ•™ķšŒ'),
(77418, 64677, 'no_lang_code', 'name', 'Woo Young Medical (South Korea)'),
(77419, 64677, 'ko', 'name', '우 영 ģ˜ė£Œ'),
(77420, 64678, 'en', 'name', 'Seoul University of Buddhism'),
(77421, 64678, 'ko', 'name', 'ģ„œģšøė¶ˆźµėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(77422, 64679, 'no_lang_code', 'name', 'Winus Technology (South Korea)'),
(77423, 64679, 'ko', 'name', 'ģœ„ė„ˆģŠ¤ 과학 기술'),
(77424, 64680, 'en', 'name', 'Sorabol College'),
(77425, 64680, 'ko', 'name', 'ģ„œė¼ė²ŒėŒ€ķ•™'),
(77426, 64681, 'en', 'name', 'The Society of Service Science'),
(77427, 64681, 'ko', 'name', 'ģ„œė¹„ģŠ¤ ź³¼ķ•™ķšŒ'),
(77428, 64682, 'no_lang_code', 'name', 'U-Tel (South Korea)'),
(77429, 64682, 'ko', 'name', 'ģœ ķ…”'),
(77430, 64683, 'no_lang_code', 'name', 'Tech Valley (South Korea)'),
(77431, 64683, 'ko', 'name', 'ķ…Œķ¬ė°øė¦¬'),
(77432, 64684, 'no_lang_code', 'name', 'SFC (South Korea)'),
(77433, 64685, 'en', 'name', 'Technology Management Economics Society'),
(77434, 64685, 'ko', 'name', 'źø°ģˆ ź²½ģ˜ź²½ģ œķ•™ķšŒ'),
(77435, 64686, 'no_lang_code', 'name', 'Sharing and Technologies Incorporated (South Korea)'),
(77436, 64686, 'ko', 'name', '공유 ė° źø°ģˆ ė²•ģøģ˜'),
(77437, 64687, 'no_lang_code', 'name', 'SillaJen (South Korea)'),
(77438, 64687, 'ko', 'name', 'ģ   ģ˜ģž'),
(77439, 64688, 'en', 'name', 'Daedong Han Literary Society'),
(77440, 64688, 'ko', 'name', 'ėŒ€ė™ķ•œė¬øķ•™ķšŒ'),
(77441, 64689, 'en', 'name', 'Shingu College'),
(77442, 64689, 'ko', 'name', 'ģ‹ źµ¬ėŒ€ķ•™źµ'),
(77443, 64690, 'en', 'name', 'Korea Intelligent Information Systems Society'),
(77444, 64690, 'ko', 'name', 'ķ•œźµ­ ģ§€ėŠ„ 정볓 ģ‹œģŠ¤ķ…œ ķ•™ķšŒ'),
(77445, 64691, 'en', 'name', 'Songwon University'),
(77446, 64691, 'ko', 'name', 'ģ†”ģ›ėŒ€ķ•™źµ'),
(77447, 64692, 'en', 'name', 'Shinhan University'),
(77448, 64692, 'ko', 'name', 'ģ‹ ķ•œ ėŒ€ķ•™źµ'),
(77449, 64693, 'en', 'name', 'The Korean Social Security Association'),
(77450, 64693, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ ė³“ģž„ ķ˜‘ķšŒ'),
(77451, 64694, 'en', 'name', 'Korean Speech-Language & Hearing Association'),
(77452, 64695, 'en', 'name', 'The Japanese Culture Association of Korea'),
(77453, 64695, 'ko', 'name', 'ķ•œźµ­ģ¼ė³øė¬øķ™”ķ•™ķšŒ'),
(77454, 64696, 'en', 'name', 'Shinsung University'),
(77455, 64696, 'ko', 'name', '신성 ėŒ€ķ•™źµ'),
(77456, 64697, 'en', 'name', 'Japanese Language & Culture Association of Korea'),
(77457, 64697, 'ko', 'name', 'ģ¼ė³øģ–øģ–“ė¬øķ™”ķ•™ķšŒė„¼'),
(77458, 64698, 'en', 'name', 'The Society for the Studies of Silla History'),
(77459, 64698, 'ko', 'name', 'ģ‹ ė¼ 역사 ķ•™ķšŒ'),
(77460, 64699, 'en', 'name', 'The Korean Association of General Education'),
(77461, 64699, 'ko', 'name', 'ėŒ€ķ•œ 교윔 ģ“ķšŒ'),
(77462, 64700, 'en', 'name', 'Korea Association of japanology'),
(77463, 64700, 'ko', 'name', 'ķ•œźµ­ģ¼ė³øķ•™ķšŒ'),
(77464, 64701, 'en', 'name', 'Soongeui Women''s College'),
(77465, 64701, 'ko', 'name', 'ģˆ­ģ˜ģ—¬ģžėŒ€ķ•™źµ'),
(77466, 64702, 'en', 'name', 'Society for Korean Ancient History'),
(77467, 64702, 'ko', 'name', 'ķ•œźµ­ ź³ ėŒ€ģ‚¬ ķ•™ķšŒ'),
(77468, 64703, 'en', 'name', 'Korea Soongsil Cyber ​​University'),
(77469, 64703, 'ko', 'name', 'ķ•œźµ­ģ‚¬ģ“ė²„ėŒ€ķ•™źµ ģ¢…ė”œģŗ ķ¼ģŠ¤'),
(77470, 64704, 'no_lang_code', 'name', 'Emart (South Korea)'),
(77471, 64704, 'ko', 'name', 'ģ“ė§ˆķŠø'),
(77472, 64705, 'en', 'name', 'The Society for Teaching English through Media'),
(77473, 64705, 'ko', 'name', 'ģ˜ģƒģ˜ģ–“źµģœ”ķ•™ķšŒ'),
(77474, 64706, 'en', 'name', 'Dongyang Hanmoon Association'),
(77475, 64706, 'ko', 'name', 'ė™ģ–‘ ķ•œė¬ø ģ—°ķ•©ķšŒ'),
(77476, 64707, 'en', 'name', 'The Korean Association of Small Buisness Studies'),
(77477, 64707, 'ko', 'name', 'ķ•œźµ­ģ¤‘ģ†Œźø°ģ—…ķ•™ķšŒ'),
(77478, 64708, 'en', 'name', 'Korean Psychological Association of Culture and Social Issues'),
(77479, 64708, 'ko', 'name', 'ķ•œźµ­ė¬øķ™”ė°ģ‚¬ķšŒė¬øģ œģ‹¬ė¦¬ķ•™ķšŒ'),
(77480, 64709, 'en', 'name', 'BuildingSMART Korea'),
(77481, 64709, 'ko', 'name', 'ģ„œģšø 스마트 ė¹Œė”©'),
(77482, 64710, 'en', 'name', 'Korea Thinking and Expression Society'),
(77483, 64710, 'ko', 'name', 'ķ•œźµ­ 사고 ķ‘œķ˜„ ģ‚¬ķšŒ'),
(77484, 64711, 'en', 'name', 'Association of Western Art History'),
(77485, 64711, 'ko', 'name', 'ķ•œźµ­ģ„œģ–‘ėÆøģˆ ģ‚¬ķ•™ķšŒ 회'),
(77486, 64712, 'en', 'name', 'Korean Society of Modern Philosophy'),
(77487, 64712, 'ko', 'name', 'ģ„œģ–‘ź·¼ėŒ€ģ² ķ•™ķšŒ'),
(77488, 64713, 'en', 'name', 'The Korean Society for Industrial Education'),
(77489, 64713, 'ko', 'name', 'ķ•œźµ­ģ‚°ģ—…źµģœ”ķ•™ķšŒ'),
(77490, 64714, 'no_lang_code', 'name', 'SP Technology (South Korea)'),
(77491, 64714, 'ko', 'name', 'ģ—ģŠ¤ķ”¼ķ…'),
(77492, 64715, 'en', 'name', 'Korea Academic Society of Tourism Management'),
(77493, 64715, 'ko', 'name', 'ėŒ€ķ•œź“€ź“‘ź²½ģ˜ķ•™ķšŒ'),
(77494, 64716, 'en', 'name', 'Tourism Management Research Organization'),
(77495, 64716, 'ko', 'name', 'ź“€ź“‘ź²½ģ˜ķ•™ķšŒ'),
(77496, 64717, 'no_lang_code', 'name', 'Youngjin Technology (South Korea)'),
(77497, 64717, 'ko', 'name', 'ģ˜ģ§„źø°ģˆ  ģ£¼ģ‹ķšŒģ‚¬'),
(77498, 64718, 'en', 'name', 'Westminster Graduate School of Theology'),
(77499, 64718, 'ko', 'name', 'ģ›ØģŠ¤ķŠøėÆ¼ģŠ¤ķ„°ģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(77500, 64719, 'en', 'name', 'Korean Society for the Study of Social Education'),
(77501, 64719, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ 교윔 ķ•™ķšŒ'),
(77502, 64720, 'no_lang_code', 'name', 'Stronghold Technology (South Korea)'),
(77503, 64721, 'en', 'name', 'Agricultural Farmer''s Policy Institute'),
(77504, 64721, 'ko', 'name', 'ė†ģ—…ė†ėÆ¼ģ •ģ±…ģ—°źµ¬ģ†Œ 녀름'),
(77505, 64722, 'en', 'name', 'Yeongnam Chinese Literature Society'),
(77506, 64722, 'ko', 'name', 'ģ˜ė‚Øģ¤‘źµ­ģ–“ė¬øķ•™ķšŒ'),
(77507, 64723, 'no_lang_code', 'name', 'Wonkwang Digital University'),
(77508, 64723, 'ko', 'name', 'ģ›ź“‘ė””ģ§€ķ„øėŒ€ķ•™źµ'),
(77509, 64724, 'en', 'name', 'Suncheon Jeil College'),
(77510, 64724, 'ko', 'name', 'ģˆœģ²œģ œģ¼ėŒ€ķ•™źµ'),
(77511, 64725, 'en', 'name', 'Asia-Pacific Centre of Education for International Understanding'),
(77512, 64725, 'ko', 'name', 'ģœ ė„¤ģŠ¤ģ½”ģ˜ ģ§€ģ›ķ•˜ģ— ģ•„ģ‹œģ•„ ķƒœķ‰ģ–‘ 국제 ģ“ķ•“ 교윔 센터'),
(77513, 64726, 'en', 'name', 'Youth Society Opening the Future'),
(77514, 64726, 'ko', 'name', 'ģ²­ģ†Œė…„ ģ‚¬ķšŒ ėÆøėž˜ė„¼ ģ—¬ėŠ”'),
(77515, 64727, 'en', 'name', 'Sunlin University'),
(77516, 64727, 'ko', 'name', '선린 ėŒ€ķ•™źµ'),
(77517, 64728, 'en', 'name', 'The Association of Comparative Study of World Literature'),
(77518, 64728, 'ko', 'name', 'ģ„øź³„ė¬øķ•™ė¹„źµķ•™ķšŒ'),
(77519, 64729, 'en', 'name', 'The Yeats Society of Korea'),
(77520, 64729, 'ko', 'name', 'ķ•œźµ­ģ˜ˆģ“ģø ķ•™ķšŒ'),
(77521, 64730, 'no_lang_code', 'name', 'Yeoju University'),
(77522, 64730, 'ko', 'name', 'ģ—¬ģ£¼ėŒ€ķ•™źµ'),
(77523, 64731, 'en', 'name', 'Suwon Women’s University'),
(77524, 64731, 'ko', 'name', 'ģˆ˜ģ› ģ—¬ģž ėŒ€ķ•™źµ'),
(77525, 64732, 'no_lang_code', 'name', 'EurasTech (South Korea)'),
(77526, 64732, 'ko', 'name', 'ģœ ė¼ģŠ¤ķ…'),
(77527, 64733, 'en', 'name', 'Yeongnam Archaeological Society'),
(77528, 64733, 'ko', 'name', 'ģ˜ė‚Øź³ ź³ ķ•™ķšŒ'),
(77529, 64734, 'en', 'name', 'Suwon Science College'),
(77530, 64734, 'ko', 'name', 'ģˆ˜ģ› 과학 ėŒ€ķ•™'),
(77531, 64735, 'en', 'name', 'Podar Ayurved Medical College'),
(77532, 64736, 'en', 'name', 'Dr. B.R.K.R. Government Ayurvedic College'),
(77533, 64737, 'en', 'name', 'Bhaktivedanta Hospital & Research Institute'),
(77534, 64738, 'en', 'name', 'ACE Hospital'),
(77535, 64739, 'en', 'name', 'Acharya Shri Chander College of Medical Sciences and Hospital'),
(77536, 64740, 'en', 'name', 'Department of Science & Technology'),
(77537, 64741, 'en', 'name', 'Dr. Panjabrao Deshmukh Memorial Medical College'),
(77538, 64742, 'en', 'name', 'Adesh University'),
(77539, 64743, 'en', 'name', 'Agartala Government Medical College'),
(77540, 64744, 'en', 'name', 'Fortis Escorts Hospital'),
(77541, 64744, 'hi', 'name', 'ą¤«ą„‹ą¤°ą„ą¤Ÿą¤æą¤ø ą¤ą¤øą„ą¤•ą„‰ą¤°ą„ą¤Ÿą„ą¤ø ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(77542, 64745, 'no_lang_code', 'name', 'Dr. Bidari’s Ashwini Hospital'),
(77543, 64746, 'en', 'name', 'Government Ayurved College, Nanded'),
(77544, 64747, 'en', 'name', 'Kims Bibi Hospital'),
(77545, 64748, 'en', 'name', 'Bodyline Hospitals'),
(77546, 64749, 'en', 'name', 'Goverment Siddha Medical College'),
(77547, 64749, 'ta', 'name', 'ą®…ą®°ą®šąÆ ą®šą®æą®¤ąÆą®¤ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(77548, 64750, 'en', 'name', 'Apollo Hospitals'),
(77549, 64750, 'hi', 'name', 'ą¤…ą¤Ŗą„‹ą¤²ą„‹ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(77550, 64751, 'en', 'name', 'Dr. Syamala Reddy Dental College Hospital & Research Center'),
(77551, 64752, 'en', 'name', 'Ananthapuri Hospitals and Research Institute'),
(77552, 64753, 'en', 'name', 'Apollo Cradle For Women & Children'),
(77553, 64754, 'en', 'name', 'Asha Hospital'),
(77554, 64755, 'no_lang_code', 'name', 'Sir Takhtasinhji General Hospital'),
(77555, 64755, 'gu', 'name', 'ąŖøąŖ° ąŖ¤ąŖ–ą«ąŖ¤ąŖøąŖæąŖ‚ąŖ¹ąŖœą«€ જનરલ ąŖ¹ą«‹ąŖøą«ąŖŖąŖæąŖŸąŖ²'),
(77556, 64756, 'en', 'name', 'ESI - Post Graduate Institute of Medical Science and Research'),
(77557, 64757, 'en', 'name', 'ESI - Post Graduate Institute of Medical Science and Research'),
(77558, 64758, 'en', 'name', 'Employees State Insurance Post Graduate Institute of Medical Sciences and Research'),
(77559, 64759, 'en', 'name', 'Central Council for Research in Siddha'),
(77560, 64760, 'en', 'name', 'Balaji Dental & Craniofacial Hospital'),
(77561, 64761, 'en', 'name', 'Bangalore Medical Center'),
(77562, 64762, 'no_lang_code', 'name', 'Fortis Hospital'),
(77563, 64762, 'bn', 'name', 'ą¦«ą§‹ą¦°ą§ą¦Ÿą¦æą¦ø হসপিটাল'),
(77564, 64763, 'en', 'name', 'Bapu Nature Cure Hospital & Yogashram'),
(77565, 64764, 'en', 'name', 'Vaidyaratnam P.S. Varier Ayurveda College'),
(77566, 64765, 'en', 'name', 'SDM College of Medical Science and Hospital'),
(77567, 64765, 'kn', 'name', 'ą²Žą²øą³ ಔಿ ą²Žą²®ą³ ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(77568, 64766, 'en', 'name', 'Chaithanya Eye Hospital and Research Institute'),
(77569, 64767, 'en', 'name', 'Chennai Skin Foundation & Yesudian Research Institute'),
(77570, 64768, 'en', 'name', 'Government Ayurvedic College and Hospital Osmanabad'),
(77571, 64768, 'hi', 'name', 'ą¤øą¤°ą¤•ą¤¾ą¤°ą„€ ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ आणि ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ ą¤‰ą¤øą„ą¤®ą¤¾ą¤Øą¤¾ą¤¬ą¤¾ą¤¦'),
(77572, 64769, 'en', 'name', 'Chethana Special School'),
(77573, 64770, 'en', 'name', 'Desh Bhagat Ayurvedic College and Hospital'),
(77574, 64771, 'en', 'name', 'Desh Bhagat University'),
(77575, 64771, 'pa', 'name', 'ਦੇਸ਼ ਭਗਤ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(77576, 64772, 'no_lang_code', 'name', 'Cloudnine'),
(77577, 64773, 'en', 'name', 'Institute of Applied Dermatology'),
(77578, 64774, 'en', 'name', 'Kazakh Eye Research Institute'),
(77579, 64774, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ ŠŠ˜Š˜ глазных болезней'),
(77580, 64774, 'kk', 'name', 'Көз Š°ŃƒŃ€ŃƒŠ»Š°Ń€Ń‹ ŅšŠ°Š·Š°Ņ› ғылыми Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(77581, 64775, 'en', 'name', 'Dolphin (PG) Institute of Bio Medical and Natural Science'),
(77582, 64776, 'no_lang_code', 'name', 'Recipharm (Sweden)'),
(77583, 64777, 'no_lang_code', 'name', 'Prexton Therapeutics (Netherlands)'),
(77584, 64778, 'no_lang_code', 'name', 'Prexton Therapeutics (Switzerland)'),
(77585, 64779, 'en', 'name', 'Dr. BMN College of Home Science'),
(77586, 64779, 'hi', 'name', 'Dr. BMN ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ़ ą¤¹ą„‹ą¤® साइंस'),
(77587, 64780, 'no_lang_code', 'name', 'Osmotica Pharmaceutical (Hungary)'),
(77588, 64781, 'no_lang_code', 'name', 'Charles River Laboratories (Germany)'),
(77589, 64782, 'no_lang_code', 'name', 'SynAgile (United States)'),
(77590, 64783, 'en', 'name', 'Krishna Maternity and Surgical Nursing Home'),
(77591, 64784, 'en', 'name', 'The Anam Society for the Study Of Education'),
(77592, 64784, 'ko', 'name', '아남 교윔 ķ•™ķšŒ'),
(77593, 64785, 'en', 'name', 'M.B.Barvalia Foundation’s Spandan Organizations'),
(77594, 64786, 'en', 'name', 'State Key Laboratory of Cryptology'),
(77595, 64786, 'zh', 'name', 'åÆ†ē ē§‘å­¦ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤ē”±å›½å®¶åÆ†ē ē®”ē†å±€äø»ē®”'),
(77596, 64787, 'no_lang_code', 'name', 'Xi''an Electric Furnace Research Institute (China)'),
(77597, 64787, 'zh', 'name', 'č„æå®‰ē”µē‚‰ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(77598, 64788, 'no_lang_code', 'name', 'MAGJ Hospital'),
(77599, 64789, 'en', 'name', 'Institute of Health Studies and Rehabilitation'),
(77600, 64790, 'no_lang_code', 'name', 'Jindal Naturecure Institute'),
(77601, 64790, 'hi', 'name', 'ą¤œą¤æą¤‚ą¤¦ą¤² ą¤Øą„‡ą¤šą¤°ą¤šą¤° ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ'),
(77602, 64791, 'en', 'name', 'K. J. Somaiya Hospital & Research Centre'),
(77603, 64791, 'mr', 'name', 'ą¤•ą„‡. ą¤œą„‡. ą¤øą„‹ą¤®ą¤Æą„ą¤Æą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤…ą¤ą¤Øą„ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(77604, 64791, 'hi', 'name', 'ą¤•ą„‡ą„¤ ą¤œą„‡ą„¤ ą¤øą„‹ą¤®ą„ˆą¤Æą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(77605, 64792, 'en', 'name', 'Institute of Neurosciences Kolkata'),
(77606, 64792, 'bn', 'name', 'ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦Øą¦æą¦‰ą¦°ą§‹ą¦øą¦¾ą¦‡ą¦Øą§ą¦øą§‡ą¦ø'),
(77607, 64793, 'en', 'name', 'KG Hospital'),
(77608, 64794, 'en', 'name', 'Institute of Reproductive Medicine'),
(77609, 64794, 'bn', 'name', 'ą¦°ą¦æą¦Ŗą§ą¦°ą§‹ą¦”ą¦¾ą¦•ą¦Ÿą¦æą¦­ মেঔিসিন ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(77610, 64795, 'en', 'name', 'Shree Krishna Hospital'),
(77611, 64795, 'gu', 'name', 'ąŖ¶ą«ąŖ°ą«€ ąŖ•ą«ƒąŖ·ą«ąŖ£ ąŖ¹ą«‹ąŖøą«ąŖŖąŖæąŖŸąŖ²'),
(77612, 64796, 'en', 'name', 'Micro & Nano Research Institute'),
(77613, 64796, 'zh', 'name', '微纳米研究所'),
(77614, 64797, 'no_lang_code', 'name', 'Indian Immunologicals (India)'),
(77615, 64798, 'en', 'name', 'Karnataka Medical Council'),
(77616, 64799, 'no_lang_code', 'name', 'Hygienic Research Institute (India)'),
(77617, 64799, 'mr', 'name', 'ą¤øą„ą¤µą¤šą„ą¤›ą¤‚ą¤¦ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(77618, 64800, 'en', 'name', 'International College of Nutrition'),
(77619, 64800, 'hi', 'name', 'ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ़ ą¤Øą„ą¤¤ą„ą¤°ą¤æą¤¤ą¤æą¤“ą¤‚'),
(77620, 64801, 'en', 'name', 'ESIC Hospital'),
(77621, 64801, 'hi', 'name', 'इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤ˆą¤ą¤øą¤†ą¤ˆ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(77622, 64802, 'en', 'name', 'Meher Hospitals'),
(77623, 64803, 'en', 'name', 'Nethradhama Superspeciality Eye Hospital'),
(77624, 64803, 'kn', 'name', 'ą²Øą³‡ą²¤ą³ą²°ą²§ą²¾ą²® ą²øą³‚ą²Ŗą²°ą³ ą²øą³ą²Ŗą³†ą²¶ą²¾ą²²ą²æą²Ÿą²æ ą²•ą²£ą³ą²£ą²æą²Ø ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(77625, 64804, 'en', 'name', 'Government Medical College'),
(77626, 64805, 'en', 'name', 'Index Medical College, Hospital & Research Centre'),
(77627, 64805, 'hi', 'name', 'ą¤¦ą„‡ą¤µą„€ ą¤…ą¤¹ą¤æą¤²ą„ą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤øą¤Øą¤æą¤• ą¤•ą¤¾ą¤°ą„ą¤Æą¤¾ą¤²ą¤Æ, आर ą¤ą¤Ø ą¤Ÿą„€'),
(77628, 64806, 'no_lang_code', 'name', 'Karmaveer Bhausaheb Hiray Dental College and Hospital'),
(77629, 64807, 'en', 'name', 'Rabindranath Tagore International Institute of Cardiac Sciences'),
(77630, 64808, 'en', 'name', 'Dagestan Center of Eye Microsurgery'),
(77631, 64808, 'ru', 'name', 'Дагестанский центр Š¼ŠøŠŗŃ€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø глаза'),
(77632, 64809, 'en', 'name', 'Midnapore Homeopathic Medical College and Hospital'),
(77633, 64809, 'bn', 'name', 'মেদিনীপুর ą¦¹ą§‹ą¦®ą¦æą¦“ą¦Ŗą§ą¦Æą¦¾ą¦„ą¦æą¦• মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ą¦ą¦Øą§ą¦” হসপিটাল'),
(77634, 64810, 'en', 'name', 'Noble Hospital'),
(77635, 64811, 'en', 'name', 'Uttarakhand Ayurved University'),
(77636, 64812, 'en', 'name', 'Indian Education Society''s V. N. Sule Guruji English Medium School'),
(77637, 64812, 'hi', 'name', 'ą¤µą„ą¤¹ą„€ ą¤ą¤Ø ą¤øą„ą¤³ą„‡ ą¤—ą„ą¤°ą„ą¤œą„€ ą¤‡ą¤‚ą¤—ą„ą¤°ą¤œą„€ ą¤®ą¤¾ą¤§ą„ą¤Æą¤® ą¤®ą¤¾ą¤§ą„ą¤Æą¤®ą¤æą¤• शाळा'),
(77638, 64813, 'en', 'name', 'Moulana Hospital'),
(77639, 64813, 'ml', 'name', 'ą“®ąµ—ą“²ą“¾ą“Ø ą“¹ąµ‹ą“øąµą“Ŗą“æą“±ąµą“±ąµ½'),
(77640, 64814, 'en', 'name', 'S Nijalingappa Medical College and HSK Hospital & Research Centre'),
(77641, 64815, 'en', 'name', 'Nulife Hospital'),
(77642, 64816, 'en', 'name', 'S.R. Kalla Memorial Gastro and General Hospital'),
(77643, 64816, 'hi', 'name', 'ą¤ą¤ø आर ą¤•ą¤²ą„ą¤²ą¤¾ ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤—ą„ˆą¤øą„ą¤Ÿą„ą¤°ą„‹ ą¤ą¤‚ą¤” जनरल ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(77644, 64817, 'no_lang_code', 'name', 'Kirloskar Hospital'),
(77645, 64818, 'en', 'name', 'Indo-US Super Speciality Hospital'),
(77646, 64818, 'te', 'name', 'ą°­ą°¾ą°°ą°¤ą±-అమెరికా ą°øą±‚ą°Ŗą°°ą± ą°øą±ą°Ŗą±†ą°·ą°¾ą°²ą°æą°Ÿą±€ ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(77647, 64819, 'en', 'name', 'M.V. Hospital and Research Centre'),
(77648, 64820, 'no_lang_code', 'name', 'Sahaj Hospital'),
(77649, 64820, 'hi', 'name', 'सहज ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(77650, 64821, 'en', 'name', 'Indravati Hospital & Research Centre'),
(77651, 64821, 'hi', 'name', 'ą¤‡ą¤‚ą¤¦ą„ą¤°ą¤¾ą¤µą¤¤ą„€ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(77652, 64822, 'en', 'name', 'Oyster & Pearl Hospital'),
(77653, 64823, 'en', 'name', 'National Allergy Asthma Bronchitis Institute'),
(77654, 64824, 'no_lang_code', 'name', 'Samvedna Hospital'),
(77655, 64824, 'hi', 'name', 'ą¤øą¤‚ą¤µą„‡ą¤¦ą¤Øą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(77656, 64825, 'en', 'name', 'Sanjivani Super Speciality Hospitals'),
(77657, 64826, 'en', 'name', 'Sri Kalabyraveshwara Swamy Ayurvedic Medical College, Hospital and Research Center'),
(77658, 64826, 'kn', 'name', 'ą²¶ą³ą²°ą³€ ą²•ą²²ą²¾ą²­ą²°ą²£ą²µą³‡ą²¶ą³ą²µą²° ą²øą³ą²µą²¾ą²®ą²æ ą²†ą²Æą³ą²°ą³ą²µą³‡ą²¦ą²æą²•ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³† ą²®ą²¤ą³ą²¤ą³ ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(77659, 64827, 'en', 'name', 'National Institute of Medical Statistics'),
(77660, 64828, 'en', 'name', 'Seth Nandlal Dhoot Hospital'),
(77661, 64829, 'en', 'name', 'Sri Sathya Sai Institute of Higher Medical Sciences'),
(77662, 64829, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°øą°¤ą±ą°Æ సాయి ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°¹ą°Æą±ą°Æą°°ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°øą±ˆą°Øą±ą°øą±†ą°øą±'),
(77663, 64830, 'en', 'name', 'Dhanvantari Ayurveda College Hospital and Research Centre'),
(77664, 64831, 'en', 'name', 'Sri Venkateshwaraa Medical College Hospital and Research Centre'),
(77665, 64832, 'en', 'name', 'Delhi State Cancer Institute'),
(77666, 64833, 'en', 'name', 'Shri Bhausaheb Hire Government Medical College & Hospital'),
(77667, 64834, 'en', 'name', 'Shree O.H. Nazar Ayurved College Shree Swami Atmanand Saraswati Ayurved Hospital'),
(77668, 64835, 'en', 'name', 'RG Stone Urology & Laparoscopy Hospital'),
(77669, 64835, 'hi', 'name', 'ą¤†ą¤°ą¤œą„€ ą¤øą„ą¤Ÿą„‹ą¤Ø ą¤Æą„‚ą¤°ą„‹ą¤²ą„‰ą¤œą„€ और ą¤²ą„ˆą¤Ŗą„ą¤°ą„‹ą¤øą„ą¤•ą„‹ą¤Ŗą„€ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(77670, 64836, 'en', 'name', 'Stavya Spine Hospital & Research Institute'),
(77671, 64837, 'no_lang_code', 'name', 'Sir Ivan Stedeford Hospital'),
(77672, 64837, 'ta', 'name', 'ą®šą®°ąÆ ą®ą®µą®©ąÆ ą®øąÆą®ŸąÆ†ą®ŸąÆą®ŖąÆ‹ą®°ąÆą®Ÿ ą®¹ą®¾ą®øąÆą®Ŗą®æą®Ÿą®²ąÆ'),
(77673, 64838, 'en', 'name', 'Subharti Medical College'),
(77674, 64838, 'hi', 'name', 'ą¤Øą„‡ą¤¤ą¤¾ą¤œą„€ ą¤øą„ą¤­ą¤¾ą¤· ą¤šą¤‚ą¤¦ą„ą¤°ą¤¾ ą¤¬ą„‹ą¤ø ą¤øą„ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(77675, 64839, 'no_lang_code', 'name', 'VGM Gastro Centre'),
(77676, 64840, 'no_lang_code', 'name', 'Sumana Hospital'),
(77677, 64840, 'te', 'name', 'సుమానా ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(77678, 64841, 'en', 'name', 'Sunshine Hospitals'),
(77679, 64841, 'te', 'name', 'ą°øą°Øą± ą°·ą±ˆą°Øą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±ą°øą±'),
(77680, 64842, 'en', 'name', 'Teerthanker Mahaveer Medical College & Research Centre'),
(77681, 64842, 'hi', 'name', 'ą¤¤ą„€ą¤°ą„ą¤„ą¤‚ą¤•ą¤° ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(77682, 64843, 'no_lang_code', 'name', 'Tanvir Hospital'),
(77683, 64843, 'te', 'name', 'ą°¤ą°Øą±ą°µą±€ą°°ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(77684, 64844, 'en', 'name', 'Tezpur Medical College & Hospital'),
(77685, 64845, 'no_lang_code', 'name', 'Sooriya Hospital'),
(77686, 64845, 'ta', 'name', 'ą®šąÆ‚ą®°ą®æą®Æą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(77687, 64846, 'en', 'name', 'Sparsh Hospital'),
(77688, 64847, 'en', 'name', 'Target Institute of Medical Education & Research'),
(77689, 64847, 'hi', 'name', 'ą¤Ÿą¤¾ą¤°ą„ą¤—ą„‡ą¤Ÿ ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤ą¤œą„‚ą¤•ą„‡ą¤¶ą¤Ø & ą¤°ą¤æą¤øą¤°ą„ą¤š'),
(77690, 64848, 'en', 'name', 'Sujata Birla Hospital and Medical Research Center'),
(77691, 64849, 'en', 'name', 'YMT Ayurvedic Medical College & Hospital. P.G.Institute'),
(77692, 64850, 'en', 'name', 'Z.V.M.Unani Medical College & Hospital'),
(77693, 64851, 'en', 'name', 'The Korean Ceramic Society'),
(77694, 64851, 'ko', 'name', 'ėŒ€ķ•œ ė„ģž ķ•™ķšŒ'),
(77695, 64852, 'en', 'name', 'Dongak Art History Association'),
(77696, 64852, 'ko', 'name', 'ė™ģ•…ėÆøģˆ ģ‚¬ķ•™ķšŒ'),
(77697, 64853, 'en', 'name', 'The Korean History Education Society'),
(77698, 64853, 'ko', 'name', 'ķ•œźµ­ģ‚¬ 교윔 ķ•™ķšŒ'),
(77699, 64854, 'en', 'name', 'Hangzhou Special Equipment Inspection and Research Institute'),
(77700, 64854, 'zh', 'name', 'ę­å·žåø‚ē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(77701, 64855, 'en', 'name', 'Liaoning General Aviation Research Institute'),
(77702, 64855, 'zh', 'name', 'č¾½å®é€šē”ØčˆŖē©ŗē ”ē©¶é™¢'),
(77703, 64856, 'en', 'name', 'Enshi Tujia and Miao Autonomous Prefecture Academy of Agricultural Sciences'),
(77704, 64856, 'zh', 'name', 'ę©ę–½åœŸå®¶ę—č‹—ę—č‡Ŗę²»å·žå†œäøšē§‘å­¦é™¢'),
(77705, 64857, 'en', 'name', 'Luohe Academy of Agricultural Sciences'),
(77706, 64857, 'zh', 'name', 'ę²³å—ēœę¼Æę²³åø‚å†œäøšē§‘å­¦ē ”ē©¶ę‰€'),
(77707, 64858, 'en', 'name', 'Ningbo Product Quality Supervision and Inspection Institute'),
(77708, 64858, 'zh', 'name', 'å®ę³¢äŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒē ”ē©¶é™¢'),
(77709, 64859, 'en', 'name', 'Chongqing Academy of Forestry'),
(77710, 64859, 'zh', 'name', 'é‡åŗ†ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(77711, 64860, 'en', 'name', 'Chongqing Three Gorges Academy of Agricultural Sciences'),
(77712, 64860, 'zh', 'name', 'é‡åŗ†äø‰å³”å†œäøšē§‘å­¦é™¢'),
(77713, 64861, 'en', 'name', 'Heilongjiang Vocational College of Art'),
(77714, 64861, 'zh', 'name', 'é»‘é¾™ę±Ÿč‰ŗęœÆčŒäøšå­¦é™¢'),
(77715, 64862, 'en', 'name', 'Qingdao Academy of Intelligent Industries'),
(77716, 64862, 'zh', 'name', 'é’å²›ę™ŗčƒ½äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(77717, 64863, 'en', 'name', 'Henan Provincial Academy of Building Research'),
(77718, 64863, 'zh', 'name', 'ę²³å—ēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢ęœ‰'),
(77719, 64864, 'en', 'name', 'Cloud Computing Center'),
(77720, 64864, 'zh', 'name', 'äŗ‘č®”ē®—äø­åæƒ'),
(77721, 64865, 'en', 'name', 'Heze Academy of Agricultural Sciences'),
(77722, 64865, 'zh', 'name', 'čę³½å†œē§‘é™¢'),
(77723, 64866, 'en', 'name', 'Sichuan Academy of Traditional Chinese Medicine'),
(77724, 64866, 'zh', 'name', 'å››å·ēœäø­åŒ»čÆē§‘å­¦é™¢'),
(77725, 64867, 'en', 'name', 'Shandong Academy of Pesticide Science'),
(77726, 64867, 'zh', 'name', 'å±±äøœēœå†œčÆē§‘å­¦ē ”ē©¶é™¢'),
(77727, 64868, 'no_lang_code', 'name', 'Dalian Academy of Reconnaissance and Mapping (China)'),
(77728, 64868, 'zh', 'name', 'å¤§čæžå‹˜ęµ‹ęµ‹ē»˜ē ”ē©¶é™¢'),
(77729, 64869, 'en', 'name', 'Huzhou Academy of Agricultural Sciences'),
(77730, 64869, 'zh', 'name', 'ę¹–å·žå†œäøšē§‘å­¦'),
(77731, 64870, 'no_lang_code', 'name', 'Changzhou Academy of Intelli-Ag Equipment (China)'),
(77732, 64870, 'zh', 'name', 'åøøå·žę™ŗčƒ½åŒ–č®¾å¤‡ē ”ē©¶é™¢'),
(77733, 64871, 'no_lang_code', 'name', 'Chengdu Guoke Haibo Information Technology (China)'),
(77734, 64871, 'zh', 'name', 'ęˆéƒ½å›½ē§‘ęµ·åšäæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(77735, 64872, 'no_lang_code', 'name', 'Shanghai Textile Holdings (China)'),
(77736, 64872, 'zh', 'name', 'äøŠęµ·ēŗŗē»‡ęŽ§č‚”é›†å›¢å…¬åø'),
(77737, 64873, 'en', 'name', 'Jiangsu Provincial Academy of Forestry Science and Management');
INSERT INTO `ror_settings` VALUES
(77738, 64873, 'zh', 'name', 'ę±Ÿč‹ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(77739, 64874, 'no_lang_code', 'name', 'Suzhou Institute of Building Science Group (China)'),
(77740, 64874, 'zh', 'name', 'č‹å·žåø‚å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(77741, 64875, 'en', 'name', 'Tianjin TDBH Naval Architecture & Ocean Engineering Academy'),
(77742, 64875, 'zh', 'name', 'å¤©ę“„å¤©å¤§ę»Øęµ·čˆ¹čˆ¶äøŽęµ·ę“‹å·„ēØ‹ē ”ē©¶é™¢'),
(77743, 64876, 'en', 'name', 'Chengdu Academy of Agriculture and Forestry Sciences'),
(77744, 64876, 'zh', 'name', 'ęˆéƒ½åø‚å†œęž—ē§‘å­¦é™¢'),
(77745, 64877, 'en', 'name', 'Shanxi Academy of Forestry'),
(77746, 64877, 'zh', 'name', 'å±±č„æēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(77747, 64878, 'en', 'name', 'Tianjin Academy of Environmental Sciences'),
(77748, 64878, 'zh', 'name', 'å¤©ę“„åø‚ēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶é™¢'),
(77749, 64879, 'no_lang_code', 'name', 'Fujian Academy of Building Research (China)'),
(77750, 64879, 'zh', 'name', 'ē¦å»ŗēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(77751, 64880, 'en', 'name', 'Jilin Academy of Agricultural Machinery'),
(77752, 64880, 'zh', 'name', 'å‰ęž—ēœå†œäøšęœŗę¢°ē ”ē©¶é™¢'),
(77753, 64881, 'en', 'name', 'Zhangjiakou Academy of Agricultural Sciences'),
(77754, 64881, 'zh', 'name', 'å¼ å®¶å£åø‚å†œäøšē§‘å­¦é™¢å†œäøš'),
(77755, 64882, 'en', 'name', 'Gansu Provincial Academy of Membrane Science and Technology'),
(77756, 64882, 'zh', 'name', 'ē”˜č‚ƒēœč†œē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(77757, 64883, 'no_lang_code', 'name', 'Xi''an UniIC Semiconductors (China)'),
(77758, 64884, 'en', 'name', 'Xinjiang Academy of Forestry'),
(77759, 64884, 'zh', 'name', '꜉ ę–°ē–†ęž—äøšē§‘å­¦é™¢'),
(77760, 64885, 'en', 'name', 'Guizhou Academy of Testing & Analysis'),
(77761, 64885, 'zh', 'name', 'č“µå·žēœåˆ†ęžęµ‹čÆ•ē ”ē©¶é™¢'),
(77762, 64886, 'en', 'name', 'Zhoukou City Academy of Agricultural Sciences'),
(77763, 64886, 'zh', 'name', 'å‘Øå£åø‚å†œäøšē§‘å­¦é™¢'),
(77764, 64887, 'no_lang_code', 'name', 'Guzhou Transportation Planning Survey & Design Academe (China)'),
(77765, 64887, 'zh', 'name', 'č“µå·žäŗ¤é€šč§„åˆ’å‹˜åÆŸč®¾č®”é™¢ęœ‰é™å…¬åø'),
(77766, 64888, 'en', 'name', 'Hainan Provincial Academy of Marine Fisheries and Aquaculture'),
(77767, 64888, 'zh', 'name', 'ęµ·å—ēœęµ·ę“‹äøŽęø”äøšē§‘å­¦é™¢'),
(77768, 64889, 'en', 'name', 'Guangdong Provincial Academy of Building Research Group'),
(77769, 64889, 'zh', 'name', 'å¹æäøœēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢é›†å›¢'),
(77770, 64890, 'en', 'name', 'Guangzhou Academy of Special Equipment Inspection and Testing'),
(77771, 64890, 'zh', 'name', 'å¹æå·žē‰¹ē§č®¾å¤‡ę£€ęµ‹ęŠ€ęœÆē ”ē©¶é™¢'),
(77772, 64891, 'en', 'name', 'Astronomy and Space'),
(77773, 64892, 'en', 'name', 'Osong Medical Innovation Foundation'),
(77774, 64892, 'ko', 'name', 'ģ˜¤ģ†”ģ²Øė‹Øģ˜ė£Œģ‚°ģ—…ģ§„ķ„ģž¬ė‹Ø'),
(77775, 64893, 'en', 'name', 'Korean Society of Basic Design & Art'),
(77776, 64893, 'ko', 'name', 'ķ•œźµ­ ė””ģžģø 기쓈 ķ•™ķšŒ'),
(77777, 64894, 'en', 'name', 'Korea Bio Polytechnic College'),
(77778, 64894, 'ko', 'name', 'ķ•œźµ­ķ“ė¦¬ķ…ė°”ģ“ģ˜¤ėŒ€ķ•™'),
(77779, 64895, 'en', 'name', 'The Korean Society of Christian Religious Education'),
(77780, 64895, 'ko', 'name', 'ķ•œźµ­ źø°ė…źµ 교윔 ķ•™ķšŒ'),
(77781, 64896, 'en', 'name', 'Suzhou Academy of Agricultural Sciences'),
(77782, 64896, 'zh', 'name', 'č‹å·žåø‚å†œäøšē§‘å­¦é™¢'),
(77783, 64897, 'no_lang_code', 'name', 'Mamata General Hospital'),
(77784, 64897, 'te', 'name', 'మమత ą°œą°Øą°°ą°²ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(77785, 64898, 'fr', 'name', 'HƓpital Clinique Claude-Bernard'),
(77786, 64899, 'en', 'name', 'Hyattsville Community Development Corporation'),
(77787, 64900, 'en', 'name', 'Zhejiang Academy of Building Research & Design'),
(77788, 64900, 'zh', 'name', 'ęµ™ę±Ÿēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(77789, 64901, 'en', 'name', 'International Drug Development'),
(77790, 64902, 'en', 'name', 'Transportation Research Board'),
(77791, 64903, 'en', 'name', 'Royal Hospital for Sick Children'),
(77792, 64904, 'en', 'name', 'National Measurement Laboratory'),
(77793, 64905, 'en', 'name', 'Division of Fossil Fuels Energy'),
(77794, 64906, 'en', 'name', 'MRA Group'),
(77795, 64907, 'en', 'name', 'SWOG Cancer Research Network'),
(77796, 64908, 'en', 'name', 'IBA Lifesciences'),
(77797, 64909, 'en', 'name', 'Korean German Literature Society'),
(77798, 64909, 'ko', 'name', 'ķ•œźµ­ ė…ģ¼ ė¬øķ•™ķšŒ'),
(77799, 64910, 'en', 'name', 'The Society of Korean Language And Literature'),
(77800, 64910, 'ko', 'name', 'ģš°ė¦¬ģ–“ė¬øķ•™ķšŒ'),
(77801, 64911, 'en', 'name', 'Korean Literature Research Society'),
(77802, 64911, 'ko', 'name', 'ķ•œźµ­ė¬øķ•™ģ—°źµ¬ķ•™ķšŒ'),
(77803, 64912, 'en', 'name', 'Korea Social Science Data Archive'),
(77804, 64912, 'ko', 'name', 'ķ•œźµ­ģ‚¬ķšŒź³¼ķ•™ģžė£Œģ›'),
(77805, 64913, 'en', 'name', 'Korean Economic and Business Association'),
(77806, 64913, 'ko', 'name', 'ķ•œźµ­ź²½ģ œķ†µģƒķ•™ķšŒ'),
(77807, 64914, 'en', 'name', 'Korean Academy of International Business'),
(77808, 64914, 'ko', 'name', 'ķ•œźµ­źµ­ģ œź²½ģ˜ķ•™ķšŒ'),
(77809, 64915, 'en', 'name', 'Korean Association of French Language and Literature'),
(77810, 64915, 'ko', 'name', 'ķ•œźµ­ ė¶ˆģ–“ ķ•™ķšŒ'),
(77811, 64916, 'en', 'name', 'Chosun College of Science & Technology'),
(77812, 64916, 'ko', 'name', 'ģ”°ģ„ ģ“ź³µėŒ€ķ•™źµ'),
(77813, 64917, 'en', 'name', 'Korean Academic Society of Taxation'),
(77814, 64917, 'ko', 'name', '씰세 ķ•™ķšŒ'),
(77815, 64918, 'en', 'name', 'Korean Elementary Moral Education Society'),
(77816, 64918, 'ko', 'name', 'ķ•œźµ­ģ“ˆė“±ė„ė•źµģœ”ķ•™ķšŒ'),
(77817, 64919, 'en', 'name', 'Korea-China Humanities Society'),
(77818, 64919, 'ko', 'name', 'ķ•œģ¤‘ģøė¬øķ•™ķšŒ'),
(77819, 64920, 'en', 'name', 'The Association For Korean Law Of Property'),
(77820, 64920, 'ko', 'name', 'ķ•œźµ­ ė²•ģƒ ķ˜‘ķšŒ'),
(77821, 64921, 'en', 'name', 'Korean Strategic Marketing Association'),
(77822, 64921, 'ko', 'name', 'ķ•œźµ­ ģ „ėžµ ė§ˆģ¼€ķŒ… ķ˜‘ķšŒ'),
(77823, 64922, 'en', 'name', 'Korea Economic Development Institute'),
(77824, 64922, 'ko', 'name', 'ķ•œźµ­ź²½ģ œė°œģ „ķ•™ķšŒ'),
(77825, 64923, 'en', 'name', 'Korean Society of Educational Technology'),
(77826, 64923, 'ko', 'name', 'ķ•œźµ­źµģœ”ź³µķ•™ķšŒ'),
(77827, 64924, 'en', 'name', 'Korean Society for History of Education'),
(77828, 64924, 'ko', 'name', 'ķ•œźµ­źµģœ”ģ‚¬ķ•™ķšŒ'),
(77829, 64925, 'en', 'name', 'Korean Association for Public Security Administration'),
(77830, 64925, 'ko', 'name', 'ķ•œźµ­ ź³µģ•ˆ ꓀리 ķ˜‘ķšŒ'),
(77831, 64926, 'en', 'name', 'The Korean-German Society for the Educational Studies'),
(77832, 64926, 'ko', 'name', 'ķ•œė… 교윔 ķ•™ķšŒ'),
(77833, 64927, 'en', 'name', 'The History of Korean Society'),
(77834, 64927, 'ko', 'name', 'ėŒ€ģ¤‘ģ„œģ‚¬ķ•™ķšŒ'),
(77835, 64928, 'en', 'name', 'Shanghai Xiandai Architectural Design'),
(77836, 64928, 'zh', 'name', 'äøŠęµ·ēŽ°ä»£å»ŗē­‘č®¾č®”'),
(77837, 64929, 'en', 'name', 'Korean Association for Political Economy'),
(77838, 64929, 'ko', 'name', 'ķ•œźµ­ģ‚¬ķšŒź²½ģ œķ•™ķšŒ'),
(77839, 64930, 'en', 'name', 'DSMS Group of Institutions'),
(77840, 64930, 'bn', 'name', 'ą¦¦ą§ą¦°ą§ą¦—ą¦¾ą¦Ŗą§ą¦° ą¦øą§‹ą¦øą¦¾ą¦‡ą¦Ÿą¦æ অফ ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦øą¦¾ą¦‡ą¦Øą§ą¦ø'),
(77841, 64931, 'en', 'name', 'The Japanese Language Literature Association of Korea'),
(77842, 64931, 'ko', 'name', 'ķ•œźµ­ģ¼ė³øģ–“ė¬øķ•™ķšŒ'),
(77843, 64932, 'en', 'name', 'North Ossetian State Medical Academy'),
(77844, 64932, 'ru', 'name', 'Деверо-ŠžŃŠµŃ‚ŠøŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(77845, 64933, 'no_lang_code', 'name', 'Hunan Yonker Investment Group (China)'),
(77846, 64933, 'zh', 'name', 'ę°øęø…ēŽÆå¢ƒē§‘ęŠ€äŗ§äøšé›†å›¢ęœ‰é™å…¬åø'),
(77847, 64934, 'en', 'name', 'Jiangxi Institute of Red Soil'),
(77848, 64934, 'zh', 'name', 'ę±Ÿč„æēœēŗ¢å£¤ē ”ē©¶ę‰€'),
(77849, 64935, 'en', 'name', 'Guangdong Work Injury Rehabilitation Hospital'),
(77850, 64935, 'zh', 'name', 'å¹æäøœēœå·„ä¼¤åŗ·å¤åŒ»é™¢'),
(77851, 64936, 'en', 'name', 'Jiangxi Provincial Institute of Water Sciences'),
(77852, 64936, 'zh', 'name', 'ę±Ÿč„æēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(77853, 64937, 'en', 'name', 'Zhejiang Fashion Institute of Technology'),
(77854, 64937, 'zh', 'name', 'ęµ™ę±Ÿēŗŗē»‡ęœč£…čŒäøšęŠ€ęœÆå­¦é™¢'),
(77855, 64938, 'en', 'name', 'Guizhou Center for Disease Control and Prevention'),
(77856, 64938, 'zh', 'name', 'č“µå·žēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(77857, 64939, 'en', 'name', 'Hainan Meteorology Administration'),
(77858, 64939, 'zh', 'name', 'ęµ·å—ēœę°”č±”å±€'),
(77859, 64940, 'en', 'name', 'Beijing Polytechnic'),
(77860, 64940, 'zh', 'name', 'åŒ—äŗ¬ē”µå­ē§‘ęŠ€čŒäøšå­¦é™¢'),
(77861, 64941, 'en', 'name', 'Shanghai Research Institute of Sports Science'),
(77862, 64941, 'zh', 'name', 'äøŠęµ·ä½“č‚²ē§‘å­¦ē ”ē©¶ę‰€'),
(77863, 64942, 'en', 'name', 'Ningbo College of Health Sciences'),
(77864, 64942, 'zh', 'name', 'å®ę³¢å«ē”ŸčŒäøšęŠ€ęœÆå­¦é™¢'),
(77865, 64943, 'en', 'name', 'China Internet Network Information Center'),
(77866, 64943, 'zh', 'name', 'äø­å›½äŗ’č”ē½‘ē»œäæ”ęÆäø­åæƒ'),
(77867, 64944, 'en', 'name', 'Chongqing Bureau of Geology and Minerals Exploration'),
(77868, 64944, 'zh', 'name', 'é‡åŗ†åø‚åœ°č“ØēŸæäŗ§å‹˜ęŸ„å¼€å‘å±€'),
(77869, 64945, 'en', 'name', 'Geological Exploration Technology Institute of Jiangsu Province'),
(77870, 64945, 'zh', 'name', 'åœ°č“Øå‹˜ęŸ„ęŠ€ęœÆé™¢'),
(77871, 64946, 'en', 'name', 'Nuclear and Radiation Safety Center'),
(77872, 64946, 'zh', 'name', 'ę øäøŽč¾å°„å®‰å…Øäø­åæƒ'),
(77873, 64947, 'en', 'name', 'Jiangmen Polytechnic'),
(77874, 64947, 'zh', 'name', 'ę±Ÿé—ØčŒäøšęŠ€ęœÆå­¦é™¢'),
(77875, 64948, 'no_lang_code', 'name', 'Hetao College'),
(77876, 64948, 'mn', 'name', '河儗学院'),
(77877, 64949, 'en', 'name', 'Tianjin Stomatological Hospital'),
(77878, 64949, 'zh', 'name', 'å¤©ę“„åø‚å£č…”åŒ»é™¢'),
(77879, 64950, 'en', 'name', 'Scientific Institute of Pearl River Water Resources Protection'),
(77880, 64950, 'zh', 'name', 'ē ę±Ÿę°“čµ„ęŗäæęŠ¤ē§‘å­¦ē ”ē©¶ę‰€'),
(77881, 64951, 'en', 'name', 'Development Research Center'),
(77882, 64951, 'zh', 'name', 'ę°“åˆ©éƒØå‘å±•ē ”ē©¶äø­åæƒ'),
(77883, 64952, 'en', 'name', 'Suihua University'),
(77884, 64952, 'zh', 'name', 'ē»„åŒ–å­¦é™¢'),
(77885, 64953, 'en', 'name', 'Hubei Academy of Environmental Sciences'),
(77886, 64953, 'zh', 'name', 'ę¹–åŒ—ēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(77887, 64954, 'en', 'name', 'Shaanxi Xueqian Normal University'),
(77888, 64955, 'en', 'name', 'Jiangxi College of Applied Technology'),
(77889, 64955, 'zh', 'name', 'ę±Ÿč„æåŗ”ē”ØęŠ€ęœÆčŒäøšå­¦é™¢'),
(77890, 64956, 'no_lang_code', 'name', '22q11 Ireland'),
(77891, 64957, 'no_lang_code', 'name', 'Nuritas (Ireland)'),
(77892, 64958, 'en', 'name', 'Hunan Research Academy of Environmental Sciences'),
(77893, 64958, 'zh', 'name', 'ę¹–å—ēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶é™¢'),
(77894, 64959, 'en', 'name', 'ActionAid Ireland'),
(77895, 64960, 'ga', 'name', 'Oifig na nOibreacha PoiblĆ­'),
(77896, 64960, 'en', 'name', 'The Office of Public Works'),
(77897, 64961, 'en', 'name', 'Java Clinical'),
(77898, 64962, 'en', 'name', 'Focus Ireland'),
(77899, 64963, 'no_lang_code', 'name', 'Kelada Pharmachem (Ireland)'),
(77900, 64964, 'no_lang_code', 'name', 'OGT Amenity (Ireland)'),
(77901, 64965, 'ga', 'name', 'Foróige'),
(77902, 64966, 'no_lang_code', 'name', 'Agilent Technologies (Ireland)'),
(77903, 64967, 'en', 'name', 'Cancer Clinical Research Trust'),
(77904, 64968, 'no_lang_code', 'name', 'Halo Labs (United States)'),
(77905, 64969, 'en', 'name', 'Fota Wildlife Park'),
(77906, 64970, 'no_lang_code', 'name', 'Optrace (Ireland)'),
(77907, 64971, 'en', 'name', 'Airmid Healthgroup'),
(77908, 64972, 'en', 'name', 'Kerry Education and Training Board'),
(77909, 64973, 'en', 'name', 'Cloyne Diocesan Youth Services'),
(77910, 64974, 'ga', 'name', 'Ɓiseanna Tacaƭochta'),
(77911, 64975, 'no_lang_code', 'name', 'Oran Pre-Cast (Ireland)'),
(77912, 64976, 'en', 'name', 'Cluid Housing'),
(77913, 64977, 'en', 'name', 'Kimmage Development Studies Centre'),
(77914, 64978, 'no_lang_code', 'name', 'Kinesis Health Technologies (Ireland)'),
(77915, 64979, 'ga', 'name', 'AisƩirƭ'),
(77916, 64980, 'no_lang_code', 'name', 'Origin Enterprises (Ireland)'),
(77917, 64981, 'en', 'name', 'Galway One World Centre'),
(77918, 64982, 'no_lang_code', 'name', 'Kora Healthcare (Ireland)'),
(77919, 64983, 'no_lang_code', 'name', 'Compact Imaging (United States)'),
(77920, 64984, 'en', 'name', 'Learning Hub Limerick'),
(77921, 64985, 'no_lang_code', 'name', 'Novartis (Ireland)'),
(77922, 64986, 'no_lang_code', 'name', 'Ervia (Ireland)'),
(77923, 64987, 'no_lang_code', 'name', 'Parameter Space (Ireland)'),
(77924, 64988, 'no_lang_code', 'name', 'Lola Group (United Kingdom)'),
(77925, 64989, 'en', 'name', 'Pavee Point'),
(77926, 64990, 'en', 'name', 'COPE Galway'),
(77927, 64991, 'en', 'name', 'American Council on Exercise'),
(77928, 64992, 'no_lang_code', 'name', 'Genomics Medicine (Ireland)'),
(77929, 64993, 'en', 'name', 'Cork Alliance Centre'),
(77930, 64994, 'no_lang_code', 'name', 'Pieta House'),
(77931, 64995, 'no_lang_code', 'name', 'Pilot Photonics (Ireland)'),
(77932, 64996, 'en', 'name', 'Amnesty International Ireland'),
(77933, 64997, 'no_lang_code', 'name', 'AnaBio Technologies (Ireland)'),
(77934, 64998, 'no_lang_code', 'name', 'Analog Devices (Ireland)'),
(77935, 64999, 'en', 'name', 'Animal Health Ireland'),
(77936, 65000, 'ga', 'name', 'CroĆ­'),
(77937, 65001, 'en', 'name', 'Gorta Self Help Africa'),
(77938, 65002, 'en', 'name', 'Marine Renewables Industry Association'),
(77939, 65003, 'no_lang_code', 'name', 'McCormick Advanced Marcomm Services (Ireland)'),
(77940, 65004, 'en', 'name', 'Project Arts Centre'),
(77941, 65005, 'no_lang_code', 'name', 'Aquila Bioscience (Ireland)'),
(77942, 65006, 'no_lang_code', 'name', 'MCO (Ireland)'),
(77943, 65007, 'en', 'name', 'Medfit Proactive Healthcare'),
(77944, 65008, 'en', 'name', 'Free Legal Advice Centres'),
(77945, 65009, 'en', 'name', 'Men Overcoming Violence'),
(77946, 65010, 'no_lang_code', 'name', 'Arthritis Ireland'),
(77947, 65011, 'en', 'name', 'Men’s Development Network'),
(77948, 65012, 'no_lang_code', 'name', 'AstroTec Holding (Netherlands)'),
(77949, 65013, 'ga', 'name', 'MeabhairshlĆ”inte na hƉireann'),
(77950, 65013, 'en', 'name', 'Mental Health Ireland'),
(77951, 65014, 'en', 'name', 'Merchants Quay Ireland'),
(77952, 65015, 'no_lang_code', 'name', 'ƉireComposites (Ireland)'),
(77953, 65016, 'no_lang_code', 'name', 'Q4 Public Relations (Ireland)'),
(77954, 65017, 'no_lang_code', 'name', 'Baldoyle Forum'),
(77955, 65018, 'no_lang_code', 'name', 'Mergon (Ireland)'),
(77956, 65019, 'ga', 'name', 'DearbhĆŗ CĆ”ilĆ­ochta agus CĆ”ilĆ­ochtaĆ­ Ɖireann'),
(77957, 65019, 'en', 'name', 'Quality and Qualifications Ireland'),
(77958, 65020, 'no_lang_code', 'name', 'Hewlett Packard Enterprise (Ireland)'),
(77959, 65021, 'en', 'name', 'Ballymun Job Centre'),
(77960, 65022, 'en', 'name', 'Rape Crisis Network Ireland'),
(77961, 65023, 'en', 'name', 'Horse Sport Ireland'),
(77962, 65024, 'no_lang_code', 'name', 'BeoCare (United States)'),
(77963, 65025, 'ga', 'name', 'DeafHear'),
(77964, 65026, 'no_lang_code', 'name', 'BH Consulting (Ireland)'),
(77965, 65027, 'no_lang_code', 'name', 'RedT Energy Storage (United Kingdom)'),
(77966, 65028, 'no_lang_code', 'name', 'Bio-Marine Ingredients (Ireland)'),
(77967, 65029, 'no_lang_code', 'name', 'IBM (Ireland)'),
(77968, 65030, 'no_lang_code', 'name', 'RediCare (Ireland)'),
(77969, 65031, 'no_lang_code', 'name', 'Reprodoc (Ireland)'),
(77970, 65032, 'no_lang_code', 'name', 'Irish Home Energy Rating Energy Services (Ireland)'),
(77971, 65033, 'en', 'name', 'Respond Housing Association'),
(77972, 65034, 'no_lang_code', 'name', 'Alltech (Ireland)'),
(77973, 65035, 'en', 'name', 'Dermot Foley Landscape Architects (Ireland)'),
(77974, 65036, 'no_lang_code', 'name', 'Roche (Ireland)'),
(77975, 65037, 'no_lang_code', 'name', 'Eurofins (Ireland)'),
(77976, 65038, 'en', 'name', 'Immigrant Council of Ireland'),
(77977, 65039, 'no_lang_code', 'name', 'Bioseutica (Netherlands)'),
(77978, 65040, 'en', 'name', 'Saoirse Foundation'),
(77979, 65041, 'en', 'name', 'Boardmatch'),
(77980, 65042, 'en', 'name', 'Northwest Institute of Eco-Environment and Resources'),
(77981, 65042, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č„æåŒ—ē”Ÿę€ēŽÆå¢ƒčµ„ęŗē ”ē©¶é™¢'),
(77982, 65043, 'no_lang_code', 'name', 'Impedans (Ireland)'),
(77983, 65044, 'en', 'name', 'Science Gallery International'),
(77984, 65045, 'en', 'name', 'Disability Federation of Ireland'),
(77985, 65046, 'en', 'name', 'Inclusion Ireland'),
(77986, 65047, 'ga', 'name', 'Doras LuimnĆ­'),
(77987, 65048, 'no_lang_code', 'name', 'Bodywhys'),
(77988, 65049, 'no_lang_code', 'name', 'Ingersoll Rand (Ireland)'),
(77989, 65050, 'no_lang_code', 'name', 'ServusNet Informatics (Ireland)'),
(77990, 65051, 'no_lang_code', 'name', 'Boliden Tara Mines (Ireland)'),
(77991, 65052, 'no_lang_code', 'name', 'SMA Magnetics (Poland)'),
(77992, 65053, 'en', 'name', 'Shine Center for Autism'),
(77993, 65054, 'no_lang_code', 'name', 'Innovation Zed (Ireland)'),
(77994, 65055, 'no_lang_code', 'name', 'BrainWaveBank (United Kingdom)'),
(77995, 65056, 'no_lang_code', 'name', 'Brandon Bioscience (Ireland)'),
(77996, 65057, 'en', 'name', 'Early Childhood Ireland'),
(77997, 65058, 'no_lang_code', 'name', 'Bridge Interpreting (Ireland)'),
(77998, 65059, 'no_lang_code', 'name', 'Tekno Surgical (Ireland)'),
(77999, 65060, 'no_lang_code', 'name', 'Burrenbeo Trust'),
(78000, 65061, 'no_lang_code', 'name', 'Smartbay Ireland'),
(78001, 65062, 'en', 'name', 'Business to Arts'),
(78002, 65063, 'en', 'name', 'Social Justice Ireland'),
(78003, 65064, 'en', 'name', 'Swim Ireland'),
(78004, 65065, 'no_lang_code', 'name', 'Caredoc'),
(78005, 65066, 'en', 'name', 'Family Carers Ireland'),
(78006, 65067, 'en', 'name', 'Irish Archaeology Field School'),
(78007, 65068, 'en', 'name', 'Carlow County Council'),
(78008, 65068, 'ga', 'name', 'Comhairle Contae Cheatharlach'),
(78009, 65069, 'en', 'name', 'St Nicholas Trust'),
(78010, 65070, 'en', 'name', 'Irish Council for Civil Liberties'),
(78011, 65071, 'en', 'name', 'Irish Equine Centre'),
(78012, 65072, 'en', 'name', 'EmployAbility Galway'),
(78013, 65073, 'en', 'name', 'Enable Ireland'),
(78014, 65074, 'no_lang_code', 'name', 'Manor Farm (Ireland)'),
(78015, 65075, 'no_lang_code', 'name', 'MicroGen Biotech (Ireland)'),
(78016, 65076, 'en', 'name', 'Irish Heritage Trust'),
(78017, 65077, 'en', 'name', 'Suas Educational Development'),
(78018, 65078, 'ga', 'name', 'Ionad Cearta Imirceach na hƉireann'),
(78019, 65078, 'en', 'name', 'Migrant Rights Centre Ireland'),
(78020, 65079, 'no_lang_code', 'name', 'Castolin Eutectic (Ireland)'),
(78021, 65080, 'no_lang_code', 'name', 'ENBIO (Ireland)'),
(78022, 65081, 'no_lang_code', 'name', 'Minch Malt (Ireland)'),
(78023, 65082, 'en', 'name', 'Irish Human Rights and Equality Commission'),
(78024, 65083, 'ga', 'name', 'Aras Nua-Ealaƭne na hƉireann'),
(78025, 65083, 'en', 'name', 'Irish Museum of Modern Art'),
(78026, 65084, 'no_lang_code', 'name', 'Molloy Environmental Systems (Ireland)'),
(78027, 65085, 'no_lang_code', 'name', 'Sulzer (Ireland)'),
(78028, 65086, 'no_lang_code', 'name', 'Cerbios (Switzerland)'),
(78029, 65087, 'no_lang_code', 'name', 'Monaghan Biosciences (Ireland)'),
(78030, 65088, 'no_lang_code', 'name', 'Cloughjordan Ecovillage'),
(78031, 65089, 'en', 'name', 'Irish Penal Reform Trust'),
(78032, 65090, 'no_lang_code', 'name', 'Enzolve Technologies (Ireland)'),
(78033, 65091, 'en', 'name', 'Childminding Ireland'),
(78034, 65092, 'en', 'name', 'Irish Refugee Council'),
(78035, 65093, 'no_lang_code', 'name', 'Tango Telecom (Ireland)'),
(78036, 65094, 'no_lang_code', 'name', 'Move4Parkinson’s'),
(78037, 65095, 'no_lang_code', 'name', 'Equilume (Ireland)'),
(78038, 65096, 'no_lang_code', 'name', 'Techworks Marine (Ireland)'),
(78039, 65097, 'en', 'name', 'City of Dublin Skin and Cancer Hospital Charity'),
(78040, 65098, 'no_lang_code', 'name', 'Plusvital (Ireland)'),
(78041, 65099, 'en', 'name', 'Galway Clinic'),
(78042, 65100, 'en', 'name', 'Multiple Sclerosis Society of Ireland'),
(78043, 65101, 'en', 'name', 'Sport Ireland'),
(78044, 65102, 'en', 'name', 'Glencree'),
(78045, 65103, 'no_lang_code', 'name', 'Vast Solar (Australia)'),
(78046, 65104, 'no_lang_code', 'name', 'European Recycling Platform (Ireland)'),
(78047, 65105, 'en', 'name', 'Nasc The Irish Immigrant Support Centre'),
(78048, 65106, 'en', 'name', 'Irish Society for the Prevention of Cruelty to Animals'),
(78049, 65107, 'en', 'name', 'Youth Theatre Ireland'),
(78050, 65108, 'en', 'name', 'National Association of Regional Game Councils'),
(78051, 65109, 'en', 'name', 'National Disability Authority'),
(78052, 65110, 'no_lang_code', 'name', 'Exergyn (Ireland)'),
(78053, 65111, 'no_lang_code', 'name', 'Irish Horseracing Regulatory Board (Ireland)'),
(78054, 65112, 'no_lang_code', 'name', 'Transpharmation (Ireland)'),
(78055, 65113, 'no_lang_code', 'name', 'Vita Actives (Ireland)'),
(78056, 65114, 'no_lang_code', 'name', 'Exerscout (Ireland)'),
(78057, 65115, 'en', 'name', 'National Forum for the Enhancement of Teaching & Learning in Higher Education'),
(78058, 65116, 'no_lang_code', 'name', 'Vitalograph (Ireland)'),
(78059, 65117, 'en', 'name', 'Fatima Groups United'),
(78060, 65118, 'en', 'name', 'Think-tank for Action on Social Change'),
(78061, 65119, 'en', 'name', 'National Platform of Self Advocates'),
(78062, 65120, 'no_lang_code', 'name', 'Vornia (Ireland)'),
(78063, 65121, 'en', 'name', 'Tusla - Child and Family Agency'),
(78064, 65122, 'no_lang_code', 'name', 'Voysis (Ireland)'),
(78065, 65123, 'en', 'name', 'National Youth Council of Ireland'),
(78066, 65124, 'no_lang_code', 'name', 'U-Casadh Project (Ireland)'),
(78067, 65125, 'ga', 'name', 'Lionra na hƉireann um Chomhionanns Transinscne'),
(78068, 65125, 'en', 'name', 'Transgender Equality Network Ireland'),
(78069, 65126, 'no_lang_code', 'name', 'NSilico (Ireland)'),
(78070, 65127, 'no_lang_code', 'name', 'Avara Pharmaceutical Services (Ireland)'),
(78071, 65128, 'no_lang_code', 'name', 'Phorest Salon Software (Ireland)'),
(78072, 65129, 'no_lang_code', 'name', 'Xeolas Pharmaceuticals (Ireland)'),
(78073, 65130, 'no_lang_code', 'name', 'YAMSU Technologies (Ireland)'),
(78074, 65131, 'no_lang_code', 'name', 'Neuromod (Ireland)'),
(78075, 65132, 'pt', 'name', 'Associação Kuyper para Estudos Transdisciplinares'),
(78076, 65133, 'en', 'name', 'The Canadian Scientific & Christian Affiliation'),
(78077, 65134, 'en', 'name', 'Expii'),
(78078, 65135, 'no_lang_code', 'name', 'Cloudera (United States)'),
(78079, 65136, 'es', 'name', 'Seminario Bíblico de Colombia Fundación Universitaria'),
(78080, 65137, 'no_lang_code', 'name', 'Hyster-Yale Materials Handling (United States)'),
(78081, 65138, 'no_lang_code', 'name', '58.com (China)'),
(78082, 65139, 'en', 'name', 'The Society of Korean Language and Literature'),
(78083, 65139, 'ko', 'name', 'źµ­ģ–“źµ­ė¬øķ•™ķšŒ'),
(78084, 65140, 'hu', 'name', 'Magyar TehetsĆ©gsegĆ­tő Szervezetek SzƶvetsĆ©ge'),
(78085, 65141, 'no_lang_code', 'name', 'Constellation Software (Canada)'),
(78086, 65142, 'no_lang_code', 'name', 'AAC Technologies (China)'),
(78087, 65143, 'no_lang_code', 'name', 'IAC (United States)'),
(78088, 65144, 'no_lang_code', 'name', 'ACI Worldwide (United States)'),
(78089, 65145, 'en', 'name', 'New Zealand Christians in Science'),
(78090, 65145, 'mi', 'name', 'Te Kāhui Whakapono ki Nga Kaipūtaiao o Te Motu'),
(78091, 65146, 'no_lang_code', 'name', 'Icahn Enterprises (United States)'),
(78092, 65147, 'no_lang_code', 'name', 'Cooper Standard (United States)'),
(78093, 65148, 'no_lang_code', 'name', 'IDEXX Laboratories (United States)'),
(78094, 65149, 'no_lang_code', 'name', 'Criteo (France)'),
(78095, 65150, 'no_lang_code', 'name', 'Activision Blizzard (United States)'),
(78096, 65151, 'no_lang_code', 'name', 'Adient (Ireland)'),
(78097, 65152, 'en', 'name', 'Antiquities, Monuments and Museum Corporation'),
(78098, 65153, 'no_lang_code', 'name', 'CSSC Offshore & Marine Engineering Company (China)'),
(78099, 65154, 'no_lang_code', 'name', 'ADTRAN (United States)'),
(78100, 65155, 'no_lang_code', 'name', 'Ctrip'),
(78101, 65156, 'no_lang_code', 'name', 'Inphi (United States)'),
(78102, 65157, 'no_lang_code', 'name', 'Tern (United Kingdom)'),
(78103, 65158, 'no_lang_code', 'name', 'Deutsche Bƶrse (Germany)'),
(78104, 65159, 'no_lang_code', 'name', 'Inspur (China)'),
(78105, 65159, 'zh', 'name', 'ęµŖę½®'),
(78106, 65160, 'no_lang_code', 'name', 'Akamai (United States)'),
(78107, 65161, 'no_lang_code', 'name', 'DHC Software (China)'),
(78108, 65162, 'no_lang_code', 'name', 'Dialog Semiconductor (United Kingdom)'),
(78109, 65163, 'en', 'name', 'Woolf Institute'),
(78110, 65164, 'no_lang_code', 'name', 'Alliance Data (United States)'),
(78111, 65165, 'no_lang_code', 'name', 'Dongfang Electric Corporation (China)'),
(78112, 65166, 'no_lang_code', 'name', 'Allscripts (United States)'),
(78113, 65167, 'no_lang_code', 'name', 'Dongfeng Motor Group (China)'),
(78114, 65168, 'no_lang_code', 'name', 'NetEase (China)'),
(78115, 65168, 'zh', 'name', 'ē½‘ę˜“'),
(78116, 65169, 'no_lang_code', 'name', 'Jingdong (China)'),
(78117, 65169, 'zh', 'name', '京东'),
(78118, 65170, 'no_lang_code', 'name', 'Netflix (United States)'),
(78119, 65171, 'no_lang_code', 'name', 'Altaba (United States)'),
(78120, 65172, 'no_lang_code', 'name', 'Amadeus (Spain)'),
(78121, 65173, 'no_lang_code', 'name', 'Nets (Denmark)'),
(78122, 65174, 'no_lang_code', 'name', 'NetScout (United States)'),
(78123, 65175, 'no_lang_code', 'name', 'East Japan Railway (Japan)'),
(78124, 65175, 'ja', 'name', 'ę±ę—„ęœ¬ę—…å®¢é‰„é“ę Ŗå¼ä¼šē¤¾'),
(78125, 65176, 'no_lang_code', 'name', 'Ambarella (United States)'),
(78126, 65177, 'en', 'name', 'Korean Language and Literature Society'),
(78127, 65177, 'ko', 'name', 'ķ•œźµ­ģ–øģ–“ė¬øķ•™ķšŒ'),
(78128, 65178, 'no_lang_code', 'name', 'Eaton (Ireland)'),
(78129, 65179, 'no_lang_code', 'name', 'Anheuser-Busch InBev (Belgium)'),
(78130, 65180, 'no_lang_code', 'name', 'Nexteer Automotive (United States)'),
(78131, 65181, 'en', 'name', 'Korean History Society'),
(78132, 65181, 'ko', 'name', 'ķ•œźµ­ģ—­ģ‚¬ģ—°źµ¬ķšŒ'),
(78133, 65182, 'no_lang_code', 'name', 'JAC Motors (China)'),
(78134, 65182, 'zh', 'name', '江淮汽车'),
(78135, 65183, 'no_lang_code', 'name', 'ZTT (China)'),
(78136, 65183, 'zh', 'name', 'ę±Ÿč‹äø­å¤©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(78137, 65184, 'no_lang_code', 'name', 'Electronic Arts (United States)'),
(78138, 65185, 'en', 'name', 'The English Linguistics Society of Korea'),
(78139, 65185, 'ko', 'name', 'ķ•œźµ­ģ˜ģ–“ķ•™ķ•™ķšŒ'),
(78140, 65186, 'no_lang_code', 'name', 'Joyson Electronics (China)'),
(78141, 65186, 'zh', 'name', 'å‡čƒœē”µå­'),
(78142, 65187, 'no_lang_code', 'name', 'Jiangxi Copper (China)'),
(78143, 65187, 'zh', 'name', 'ę±Ÿč„æé“œäøš'),
(78144, 65188, 'no_lang_code', 'name', 'Electronics for Imaging (United States)'),
(78145, 65189, 'no_lang_code', 'name', 'Nutanix (United States)'),
(78146, 65190, 'no_lang_code', 'name', 'Arista (United States)'),
(78147, 65191, 'no_lang_code', 'name', 'Johnson Controls (Ireland)'),
(78148, 65192, 'no_lang_code', 'name', 'Johnson Electric (China)'),
(78149, 65192, 'zh', 'name', 'å¾·ę˜Œé›»ę©ŸęŽ§č‚”ęœ‰é™å…¬åø'),
(78150, 65193, 'no_lang_code', 'name', 'Onex (Canada)'),
(78151, 65194, 'en', 'name', 'Korean Association For Housing Policy Studies'),
(78152, 65194, 'ko', 'name', 'ķ•œźµ­ģ£¼ķƒķ•™ķšŒ'),
(78153, 65195, 'no_lang_code', 'name', 'JXTG Holdings (Japan)'),
(78154, 65195, 'ja', 'name', 'JXćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(78155, 65196, 'no_lang_code', 'name', 'Exor (Netherlands)'),
(78156, 65197, 'en', 'name', 'The Korean Society of Modern Chinese Literature'),
(78157, 65197, 'ko', 'name', 'ķ•œźµ­ģ¤‘źµ­ķ˜„ėŒ€ė¬øķ•™ķ•™ķšŒ'),
(78158, 65198, 'no_lang_code', 'name', 'Oshkosh (United States)'),
(78159, 65199, 'no_lang_code', 'name', 'ASM Pacific Technology (China)'),
(78160, 65200, 'no_lang_code', 'name', 'Overstock (United States)'),
(78161, 65201, 'no_lang_code', 'name', 'Expedia Group (United States)'),
(78162, 65202, 'no_lang_code', 'name', 'F5 Networks (United States)'),
(78163, 65203, 'no_lang_code', 'name', 'Palo Alto Networks (United States)'),
(78164, 65204, 'no_lang_code', 'name', 'Atlassian (United Kingdom)'),
(78165, 65205, 'no_lang_code', 'name', 'Ferrari (Italy)'),
(78166, 65206, 'no_lang_code', 'name', 'Automatic Data Processing (United States)'),
(78167, 65207, 'no_lang_code', 'name', 'Pandora (United States)'),
(78168, 65208, 'no_lang_code', 'name', 'Kerry Group (Ireland)'),
(78169, 65209, 'no_lang_code', 'name', 'Pega (United States)'),
(78170, 65210, 'no_lang_code', 'name', 'Keyence (Japan)'),
(78171, 65210, 'ja', 'name', 'ć‚­ćƒ¼ć‚Øćƒ³ć‚¹'),
(78172, 65211, 'no_lang_code', 'name', 'Pegatron (Taiwan)'),
(78173, 65211, 'zh', 'name', 'å’Œē¢©čÆåˆē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(78174, 65212, 'no_lang_code', 'name', 'AviChina Industry & Technology (China)'),
(78175, 65212, 'zh', 'name', 'äø­å›½čˆŖē©ŗē§‘ęŠ€å·„äøšč‚”ä»½ęœ‰é™å…¬åø'),
(78176, 65213, 'no_lang_code', 'name', 'FireEye (United States)'),
(78177, 65214, 'no_lang_code', 'name', 'First Solar (United States)'),
(78178, 65215, 'no_lang_code', 'name', 'BAIC Motor (China)'),
(78179, 65216, 'no_lang_code', 'name', 'Kingsoft (China)'),
(78180, 65216, 'zh', 'name', '金山软件'),
(78181, 65217, 'no_lang_code', 'name', 'Snap (United States)'),
(78182, 65218, 'no_lang_code', 'name', 'Fiserv (United States)'),
(78183, 65219, 'no_lang_code', 'name', 'Fitbit (United States)'),
(78184, 65220, 'no_lang_code', 'name', 'Bandai Namco (Japan)'),
(78185, 65220, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒ³ćƒ€ć‚¤ćƒŠćƒ ć‚³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(78186, 65221, 'no_lang_code', 'name', 'Ford Otosan (Turkey)'),
(78187, 65222, 'no_lang_code', 'name', 'SoftBank Group (Japan)'),
(78188, 65222, 'ja', 'name', 'ć‚½ćƒ•ćƒˆćƒćƒ³ć‚Æć‚°ćƒ«ćƒ¼ćƒ—ę Ŗå¼ä¼šē¤¾'),
(78189, 65223, 'no_lang_code', 'name', 'Phison (Taiwan)'),
(78190, 65224, 'no_lang_code', 'name', 'Fujian Star-net (China)'),
(78191, 65225, 'no_lang_code', 'name', 'Sohu (China)'),
(78192, 65225, 'zh', 'name', 'ęœē‹'),
(78193, 65226, 'no_lang_code', 'name', 'Ahold Delhaize (Netherlands)'),
(78194, 65226, 'nl', 'name', 'Koninklijke Ahold Delhaize N.V.'),
(78195, 65227, 'no_lang_code', 'name', 'Playtech (Isle of Man)'),
(78196, 65228, 'no_lang_code', 'name', 'Sophos Group (United Kingdom)'),
(78197, 65229, 'no_lang_code', 'name', 'Hanjin (South Korea)'),
(78198, 65229, 'ko', 'name', 'ķ•œģ§„ 그룹'),
(78199, 65230, 'no_lang_code', 'name', 'Prada (Italy)'),
(78200, 65231, 'no_lang_code', 'name', 'Fuyao Group (China)'),
(78201, 65232, 'no_lang_code', 'name', 'Proofpoint (United States)'),
(78202, 65233, 'no_lang_code', 'name', 'Splunk (United States)'),
(78203, 65234, 'no_lang_code', 'name', 'Pure Storage (United States)'),
(78204, 65235, 'no_lang_code', 'name', 'BlackRock (United States)'),
(78205, 65236, 'no_lang_code', 'name', 'Jiuquan Iron & Steel (China)'),
(78206, 65236, 'zh', 'name', '酒泉钢铁'),
(78207, 65237, 'no_lang_code', 'name', 'Qiagen (Netherlands)'),
(78208, 65238, 'no_lang_code', 'name', 'Quality Systems (United States)'),
(78209, 65239, 'no_lang_code', 'name', 'LendingClub (United States)'),
(78210, 65240, 'no_lang_code', 'name', 'Gemalto (Netherlands)'),
(78211, 65241, 'no_lang_code', 'name', 'Box (United States)'),
(78212, 65242, 'no_lang_code', 'name', 'ResMed (United States)'),
(78213, 65243, 'no_lang_code', 'name', 'Getinge (Sweden)'),
(78214, 65244, 'no_lang_code', 'name', 'Lens Technology (China)'),
(78215, 65244, 'zh', 'name', 'č“ę€ē§‘ęŠ€'),
(78216, 65245, 'no_lang_code', 'name', 'Suning (China)'),
(78217, 65246, 'no_lang_code', 'name', 'Bucher Industries (Switzerland)'),
(78218, 65247, 'no_lang_code', 'name', 'GoDaddy (United States)'),
(78219, 65248, 'no_lang_code', 'name', 'Burelle (France)'),
(78220, 65249, 'no_lang_code', 'name', 'GoerTek (China)'),
(78221, 65250, 'no_lang_code', 'name', 'Leoni (Germany)'),
(78222, 65251, 'no_lang_code', 'name', 'Rongsheng Petrochemical (China)'),
(78223, 65251, 'zh', 'name', 'č£ē››ēŸ³åŒ–č‚”ä»½ęœ‰é™å…¬åø'),
(78224, 65252, 'no_lang_code', 'name', 'Gogo (United States)'),
(78225, 65253, 'no_lang_code', 'name', 'Calix (United States)'),
(78226, 65254, 'no_lang_code', 'name', 'GoPro (United States)'),
(78227, 65255, 'no_lang_code', 'name', 'Leshi Internet Information and Technology (China)'),
(78228, 65255, 'zh', 'name', '乐视网'),
(78229, 65256, 'no_lang_code', 'name', 'Supermicro (United States)'),
(78230, 65257, 'no_lang_code', 'name', 'Great Wall Motors (China)'),
(78231, 65257, 'zh', 'name', 'é•æåŸŽę±½č½¦'),
(78232, 65258, 'no_lang_code', 'name', 'SAIC Motor (China)'),
(78233, 65258, 'zh', 'name', 'äøŠę±½é›†å›¢'),
(78234, 65259, 'no_lang_code', 'name', 'Campbell Soup (United States)'),
(78235, 65260, 'no_lang_code', 'name', 'Guangzhou Automobile Group (China)'),
(78236, 65260, 'zh', 'name', 'å¹æå·žę±½č½¦é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(78237, 65261, 'no_lang_code', 'name', 'Synchronoss (United States)'),
(78238, 65262, 'no_lang_code', 'name', 'Cargotec (Finland)'),
(78239, 65263, 'no_lang_code', 'name', 'Guidewire (United States)'),
(78240, 65264, 'no_lang_code', 'name', 'Tableau Software (United States)'),
(78241, 65265, 'no_lang_code', 'name', 'Cavium (United States)'),
(78242, 65266, 'no_lang_code', 'name', 'Seagate (Ireland)'),
(78243, 65267, 'no_lang_code', 'name', 'Take-Two Interactive (United States)'),
(78244, 65268, 'no_lang_code', 'name', 'Sega Sammy (Japan)'),
(78245, 65268, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ć‚¬ć‚µćƒŸćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(78246, 65269, 'no_lang_code', 'name', 'CDK Global (United States)'),
(78247, 65270, 'no_lang_code', 'name', 'Hankook Tire (South Korea)'),
(78248, 65270, 'ko', 'name', 'ķ•œźµ­ķƒ€ģ“ģ–“'),
(78249, 65271, 'no_lang_code', 'name', 'Champion Technology Holdings (China)'),
(78250, 65272, 'no_lang_code', 'name', 'Check Point (Israel)'),
(78251, 65273, 'no_lang_code', 'name', 'SEI (United States)'),
(78252, 65274, 'no_lang_code', 'name', 'Tatung (Taiwan)'),
(78253, 65274, 'zh', 'name', 'å¤§åŒč‚”ä»½ęœ‰é™å…¬åø'),
(78254, 65275, 'no_lang_code', 'name', 'Harbin Electric Corporation (China)'),
(78255, 65275, 'zh', 'name', 'å“ˆå°”ę»Øē”µę°”é›†å›¢ęœ‰é™å…¬åø'),
(78256, 65276, 'no_lang_code', 'name', 'Cheng Shin Rubber (Taiwan)'),
(78257, 65276, 'zh', 'name', 'ę­£ę–°ę©”č† å·„ę„­č‚”ä»½ęœ‰é™å…¬åø'),
(78258, 65277, 'no_lang_code', 'name', 'Luxshare ICT (China)'),
(78259, 65277, 'zh', 'name', 'ē«‹č®Æē²¾åÆ†å·„äøšč‚”ä»½ęœ‰é™å…¬åø'),
(78260, 65278, 'no_lang_code', 'name', 'Sensata Technologies (Netherlands)'),
(78261, 65279, 'no_lang_code', 'name', 'Harmonic (United States)'),
(78262, 65280, 'no_lang_code', 'name', 'Tebian Electric Apparatus (China)'),
(78263, 65280, 'zh', 'name', 'ē‰¹å˜ē”µå·„č‚”ä»½ęœ‰é™å…¬åø'),
(78264, 65281, 'no_lang_code', 'name', 'ServiceNow (United States)'),
(78265, 65282, 'no_lang_code', 'name', 'Hefei Meiling (China)'),
(78266, 65282, 'zh', 'name', 'åˆč‚„ē¾Žč±č‚”ä»½ęœ‰é™å…¬åø'),
(78267, 65283, 'no_lang_code', 'name', 'Gezhouba Group (China)'),
(78268, 65283, 'zh', 'name', 'äø­å›½č‘›ę“²åé›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(78269, 65284, 'no_lang_code', 'name', 'Chenming Group (China)'),
(78270, 65284, 'zh', 'name', '晨鸣集团'),
(78271, 65285, 'no_lang_code', 'name', 'China GreatWall Technology Group (China)'),
(78272, 65285, 'zh', 'name', 'äø­å›½é•æåŸŽē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(78273, 65286, 'no_lang_code', 'name', 'Masteel (China)'),
(78274, 65286, 'zh', 'name', '马钢集团'),
(78275, 65287, 'no_lang_code', 'name', 'Heiwa (Japan)'),
(78276, 65287, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¹³å’Œ'),
(78277, 65288, 'no_lang_code', 'name', 'China National Chemical Engineering (China)'),
(78278, 65288, 'zh', 'name', 'äø­å›½åŒ–å­¦å·„ēØ‹č‚”ä»½ęœ‰é™å…¬åø'),
(78279, 65289, 'no_lang_code', 'name', 'China Electronics Corporation (China)'),
(78280, 65289, 'zh', 'name', 'äø­åœ‹é›»å­å…¬åø'),
(78281, 65290, 'no_lang_code', 'name', 'Hengtong Optoelectronic (China)'),
(78282, 65290, 'zh', 'name', 'äŗØé€šå…‰ē”µ'),
(78283, 65291, 'no_lang_code', 'name', 'China Railway Signal & Communication (China)'),
(78284, 65291, 'zh', 'name', 'äø­å›½é“č·Æé€šäæ”äæ”å·č‚”ä»½ęœ‰é™å…¬åø'),
(78285, 65292, 'no_lang_code', 'name', 'Temenos Group (Switzerland)'),
(78286, 65293, 'no_lang_code', 'name', 'MercadoLibre (Argentina)'),
(78287, 65294, 'no_lang_code', 'name', 'China Telecom (China)'),
(78288, 65294, 'zh', 'name', '中国电俔'),
(78289, 65295, 'no_lang_code', 'name', 'Shanghai Tunnel Engineering (China)'),
(78290, 65295, 'zh', 'name', 'äøŠęµ·éš§é“å·„ēØ‹'),
(78291, 65296, 'no_lang_code', 'name', 'Hexagon (Sweden)'),
(78292, 65297, 'no_lang_code', 'name', 'Christian Dior (France)'),
(78293, 65298, 'no_lang_code', 'name', 'NetDragon (China)'),
(78294, 65299, 'no_lang_code', 'name', 'Hikma Pharmaceuticals (United Kingdom)'),
(78295, 65300, 'no_lang_code', 'name', 'Cimpress (Netherlands)'),
(78296, 65301, 'no_lang_code', 'name', 'Hortonworks (United States)'),
(78297, 65302, 'no_lang_code', 'name', 'Thomson Reuters (Canada)'),
(78298, 65303, 'no_lang_code', 'name', 'Ultimate Software (United States)'),
(78299, 65304, 'no_lang_code', 'name', 'Mettler-Toledo (United States)'),
(78300, 65305, 'no_lang_code', 'name', 'Tianma Microelectronics (China)'),
(78301, 65305, 'zh', 'name', '天 é©¬å¾®ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(78302, 65306, 'no_lang_code', 'name', 'Hundsun (China)'),
(78303, 65306, 'zh', 'name', 'ę’ē”Ÿē§‘ęŠ€'),
(78304, 65307, 'no_lang_code', 'name', 'O-film (China)'),
(78305, 65307, 'zh', 'name', 'ę¬§č²ē§‘ęŠ€'),
(78306, 65308, 'no_lang_code', 'name', 'Tianneng Power (China)'),
(78307, 65309, 'no_lang_code', 'name', 'Micro Focus (United Kingdom)'),
(78308, 65310, 'no_lang_code', 'name', 'Dahua Technology (China)'),
(78309, 65311, 'no_lang_code', 'name', 'TOTVS (Brazil)'),
(78310, 65312, 'no_lang_code', 'name', 'Zhen Ding Technology (Taiwan)'),
(78311, 65313, 'no_lang_code', 'name', 'Shutterfly (United States)'),
(78312, 65314, 'no_lang_code', 'name', 'Micro-Star International (Taiwan)'),
(78313, 65315, 'no_lang_code', 'name', 'Xinxing Pipes International Development (China)'),
(78314, 65315, 'zh', 'name', 'ę–°å…“é“øē®”č‚”ä»½ęœ‰é™å…¬åø'),
(78315, 65316, 'no_lang_code', 'name', 'Yutong (China)'),
(78316, 65317, 'no_lang_code', 'name', 'TPV Technology (China)'),
(78317, 65317, 'zh', 'name', 'å† ę·ē§‘ęŠ€'),
(78318, 65318, 'no_lang_code', 'name', 'Triumph Group (United States)'),
(78319, 65319, 'no_lang_code', 'name', 'Yelp (United States)'),
(78320, 65320, 'no_lang_code', 'name', 'Midea Group (China)'),
(78321, 65320, 'zh', 'name', 'ē¾Žēš„é›†å›¢'),
(78322, 65321, 'no_lang_code', 'name', 'Truly International Holdings (China)'),
(78323, 65322, 'en', 'name', 'Cell Stress Discoveries'),
(78324, 65323, 'no_lang_code', 'name', 'Tsinghua Holdings (China)'),
(78325, 65323, 'zh', 'name', 'ęø…åŽęŽ§č‚”ęœ‰é™å…¬åø'),
(78326, 65324, 'no_lang_code', 'name', 'Zillow Group (United States)'),
(78327, 65325, 'no_lang_code', 'name', 'Yonyou (China)'),
(78328, 65325, 'zh', 'name', 'ē”Øå‹'),
(78329, 65326, 'no_lang_code', 'name', 'Ubisoft (France)'),
(78330, 65327, 'no_lang_code', 'name', 'YY (China)'),
(78331, 65328, 'no_lang_code', 'name', 'Zynga (United States)'),
(78332, 65329, 'no_lang_code', 'name', 'NAURA (China)'),
(78333, 65329, 'zh', 'name', 'åŒ—ę–¹åŽåˆ›'),
(78334, 65330, 'no_lang_code', 'name', 'Zhejiang Chint Electrics (China)'),
(78335, 65330, 'zh', 'name', 'ęµ™ę±Ÿę­£ę³°ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(78336, 65331, 'no_lang_code', 'name', 'Veeva Systems (United States)'),
(78337, 65332, 'no_lang_code', 'name', 'Changhong (China)'),
(78338, 65332, 'zh', 'name', 'å››å·é•æč™¹ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(78339, 65333, 'no_lang_code', 'name', 'VeriFone Systems (United States)'),
(78340, 65334, 'no_lang_code', 'name', 'Verint Systems (United States)'),
(78341, 65335, 'no_lang_code', 'name', 'NCSOFT (South Korea)'),
(78342, 65336, 'no_lang_code', 'name', 'Wabco (Belgium)'),
(78343, 65337, 'no_lang_code', 'name', 'Wix.com (Israel)'),
(78344, 65338, 'no_lang_code', 'name', 'Walgreens Boots Alliance (United States)'),
(78345, 65339, 'no_lang_code', 'name', 'Morrisons (United Kingdom)'),
(78346, 65340, 'no_lang_code', 'name', 'Pentair (United Kingdom)'),
(78347, 65341, 'no_lang_code', 'name', 'Workday (United States)'),
(78348, 65342, 'no_lang_code', 'name', 'Sky (United Kingdom)'),
(78349, 65343, 'no_lang_code', 'name', 'Skyworth (China)'),
(78350, 65343, 'zh', 'name', 'åˆ›ē»“'),
(78351, 65344, 'no_lang_code', 'name', 'Kowsar Medical (Netherlands)'),
(78352, 65345, 'no_lang_code', 'name', 'China National Heavy Duty Truck Group (China)'),
(78353, 65345, 'zh', 'name', 'äø­å›½é‡åž‹ę±½č½¦é›†å›¢ęœ‰é™å…¬åø'),
(78354, 65346, 'no_lang_code', 'name', 'Sina (China)'),
(78355, 65346, 'zh', 'name', 'ę–°ęµŖ'),
(78356, 65347, 'no_lang_code', 'name', 'Sino Biopharmaceutical (China)'),
(78357, 65347, 'zh', 'name', 'äø­å›½ē”Ÿē‰©åˆ¶čÆ'),
(78358, 65348, 'no_lang_code', 'name', 'Springer Nature (Netherlands)'),
(78359, 65349, 'no_lang_code', 'name', 'KLE Ayur World'),
(78360, 65350, 'en', 'name', 'Division of Energy'),
(78361, 65351, 'en', 'name', 'Vasantdada Patil Ayurvedic Medical College & Institute Of Yoga'),
(78362, 65352, 'no_lang_code', 'name', 'Pfizer (China)'),
(78363, 65352, 'zh', 'name', 'č¾‰ē‘žå…¬åø'),
(78364, 65353, 'no_lang_code', 'name', 'Cerner (Austria)'),
(78365, 65354, 'en', 'name', 'Kalawati Saran Children''s Hospital'),
(78366, 65355, 'en', 'name', 'Associated Radiologists'),
(78367, 65356, 'en', 'name', 'Digestive CARE'),
(78368, 65357, 'en', 'name', 'Hebrew SeniorLife'),
(78369, 65358, 'it', 'name', 'Istituto di Matematica Applicata e Tecnologie Informatiche'),
(78370, 65359, 'en', 'name', 'Neurobehavioral Research Laboratory and Clinic'),
(78371, 65360, 'no_lang_code', 'name', 'GL Assessment (United Kingdom)'),
(78372, 65361, 'en', 'name', 'Reef Check Foundation'),
(78373, 65362, 'en', 'name', 'Vitalant'),
(78374, 65363, 'en', 'name', 'National Center for PTSD'),
(78375, 65364, 'en', 'name', 'National Cancer Center Hospital East'),
(78376, 65364, 'ja', 'name', 'å›½ē«‹ćŒć‚“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼ę±ē—…é™¢'),
(78377, 65365, 'en', 'name', 'Hopewell Fund'),
(78378, 65366, 'no_lang_code', 'name', 'Hourglass Group (United Kingdom)'),
(78379, 65367, 'en', 'name', 'Advocates for Children of New York'),
(78380, 65368, 'en', 'name', 'Bard College Berlin'),
(78381, 65369, 'en', 'name', 'Fedcap'),
(78382, 65370, 'en', 'name', 'American Friends of the Hebrew University'),
(78383, 65371, 'en', 'name', 'Institute on Science for Global Policy'),
(78384, 65372, 'en', 'name', 'Center for Inquiry'),
(78385, 65373, 'en', 'name', 'International Association of Research in Income and Wealth'),
(78386, 65374, 'en', 'name', 'Tompkins Conservation'),
(78387, 65375, 'en', 'name', 'Rockaway Waterfront Alliance'),
(78388, 65376, 'en', 'name', 'International Society of Indoor Air Quality and Climate'),
(78389, 65377, 'en', 'name', 'Association for Regional and International Underground Storage'),
(78390, 65378, 'no_lang_code', 'name', 'Creative Commons'),
(78391, 65379, 'en', 'name', 'Film Independent'),
(78392, 65380, 'en', 'name', 'L.A. Theatre Works'),
(78393, 65381, 'en', 'name', 'Art of Problem Solving Initiative'),
(78394, 65382, 'en', 'name', 'Sponsors for Educational Opportunity'),
(78395, 65383, 'no_lang_code', 'name', 'Manhattan Theatre Club (United States)'),
(78396, 65384, 'no_lang_code', 'name', 'Artstor'),
(78397, 65385, 'en', 'name', 'Environmental Justice Foundation'),
(78398, 65386, 'en', 'name', 'StoryCorps'),
(78399, 65387, 'en', 'name', 'Association of Metropolitan Water Agencies'),
(78400, 65388, 'en', 'name', 'Technology Affinity Group'),
(78401, 65389, 'en', 'name', 'Friends of the National Libraries'),
(78402, 65390, 'en', 'name', 'National Information Standards Organization'),
(78403, 65391, 'en', 'name', 'Behavioral Science & Policy Association'),
(78404, 65392, 'en', 'name', 'Habitat for Humanity of Collier County'),
(78405, 65393, 'en', 'name', 'Science Communication Institute'),
(78406, 65394, 'en', 'name', 'Benefits Data Trust'),
(78407, 65395, 'en', 'name', 'History & Policy'),
(78408, 65396, 'en', 'name', 'NYC H2O'),
(78409, 65397, 'en', 'name', 'Hope and Homes for Children'),
(78410, 65398, 'en', 'name', 'Pecan Street'),
(78411, 65399, 'en', 'name', 'Habitat for Humanity'),
(78412, 65400, 'en', 'name', 'Philanthropy New York'),
(78413, 65401, 'en', 'name', 'United States Association for Energy Economics'),
(78414, 65402, 'en', 'name', 'Center for State and Local Government Excellence'),
(78415, 65403, 'en', 'name', 'Institute for Strategic Dialogue'),
(78416, 65404, 'en', 'name', 'New York City Arts in Education Roundtable'),
(78417, 65405, 'no_lang_code', 'name', 'Washington Monthly (United States)'),
(78418, 65406, 'en', 'name', 'Phoenix Bioinformatics'),
(78419, 65407, 'en', 'name', 'Israel Antiquities Authority'),
(78420, 65407, 'he', 'name', 'רשות העתיקות'),
(78421, 65407, 'ar', 'name', 'داﺌرة الآثار'),
(78422, 65408, 'en', 'name', 'Clean Air Task Force'),
(78423, 65409, 'en', 'name', 'Planetwork'),
(78424, 65410, 'en', 'name', 'Council of Professional Associations on Federal Statistics'),
(78425, 65411, 'en', 'name', 'Private Capital Research Institute'),
(78426, 65412, 'en', 'name', 'John Muir Trust'),
(78427, 65413, 'en', 'name', 'Open Space Institute'),
(78428, 65414, 'en', 'name', 'Kent Wildlife Trust'),
(78429, 65415, 'no_lang_code', 'name', 'Ensemble Studio Theatre (United States)'),
(78430, 65416, 'en', 'name', 'ProPublica'),
(78431, 65417, 'en', 'name', 'Committee on Capital Markets Regulation'),
(78432, 65418, 'en', 'name', 'Manhattan District Attorney''s Office'),
(78433, 65419, 'en', 'name', 'Coolidge Corner Theatre'),
(78434, 65420, 'en', 'name', 'Public Radio Exchange'),
(78435, 65421, 'en', 'name', 'Connecticut Public Broadcasting'),
(78436, 65422, 'en', 'name', 'Public.Resource.Org'),
(78437, 65423, 'no_lang_code', 'name', 'LyondellBasell (Germany)'),
(78438, 65424, 'en', 'name', 'Scholars at Risk'),
(78439, 65425, 'en', 'name', 'Sussex Wildlife Trust'),
(78440, 65426, 'no_lang_code', 'name', 'Bühler (China)'),
(78441, 65427, 'no_lang_code', 'name', 'Ineos (Belgium)'),
(78442, 65428, 'no_lang_code', 'name', 'Panasonic (Russia)'),
(78443, 65429, 'no_lang_code', 'name', 'Beiersdorf (Russia)'),
(78444, 65429, 'ru', 'name', 'БайерсГорф'),
(78445, 65430, 'no_lang_code', 'name', 'Bühler (Austria)'),
(78446, 65431, 'no_lang_code', 'name', 'EVRAZ (Russia)'),
(78447, 65432, 'no_lang_code', 'name', 'Dolby (Sweden)'),
(78448, 65433, 'no_lang_code', 'name', 'Casale (Switzerland)'),
(78449, 65434, 'no_lang_code', 'name', 'Renault (Russia)'),
(78450, 65434, 'ru', 'name', 'Рено'),
(78451, 65435, 'en', 'name', 'The Zalman Shazar Center'),
(78452, 65435, 'he', 'name', '×ž×Ø×›×– זלמן שזר'),
(78453, 65436, 'en', 'name', 'Pacific Standard'),
(78454, 65437, 'no_lang_code', 'name', 'Siemens (Russia)'),
(78455, 65437, 'ru', 'name', 'Дименс'),
(78456, 65438, 'no_lang_code', 'name', 'Mikron (Russia)'),
(78457, 65438, 'ru', 'name', 'ŠœŠøŠŗŃ€Š¾Š½'),
(78458, 65439, 'no_lang_code', 'name', 'Teijin (Netherlands)'),
(78459, 65440, 'no_lang_code', 'name', 'Owens Corning (Finland)'),
(78460, 65441, 'no_lang_code', 'name', 'Vesuvius (United States)'),
(78461, 65442, 'no_lang_code', 'name', 'Vesuvius (Belgium)'),
(78462, 65443, 'no_lang_code', 'name', 'Link (Germany)'),
(78463, 65444, 'no_lang_code', 'name', 'Foxlink (China)'),
(78464, 65444, 'zh', 'name', 'ę­£å““ē²¾åÆ†å·„äøš'),
(78465, 65445, 'ro', 'name', 'Institutul Teologic Protestant'),
(78466, 65445, 'en', 'name', 'Protestant Theological Institute of Cluj-Napoca'),
(78467, 65445, 'hu', 'name', 'ProtestÔns Teológiai Intézet'),
(78468, 65446, 'no_lang_code', 'name', 'Macronix International (China)'),
(78469, 65447, 'no_lang_code', 'name', 'Million Tech Development (China)'),
(78470, 65448, 'no_lang_code', 'name', 'Karl Mayer (China)'),
(78471, 65448, 'zh', 'name', 'å”å°”čæˆč€¶'),
(78472, 65449, 'no_lang_code', 'name', 'Mettler-Toledo (China)'),
(78473, 65449, 'zh', 'name', '梅特勒-ę‰˜åˆ©å¤š'),
(78474, 65450, 'no_lang_code', 'name', 'NEC (China)'),
(78475, 65450, 'zh', 'name', 'ę—„ęœ¬é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(78476, 65451, 'no_lang_code', 'name', 'Panasonic (China)'),
(78477, 65451, 'zh', 'name', 'ę¾äø‹ē”µå™Ø'),
(78478, 65452, 'no_lang_code', 'name', 'II-VI (China)'),
(78479, 65453, 'no_lang_code', 'name', 'Primax Electronics (China)'),
(78480, 65453, 'zh', 'name', 'č‡“ä¼øē§‘ęŠ€'),
(78481, 65454, 'no_lang_code', 'name', 'Unilever (China)'),
(78482, 65454, 'zh', 'name', 'č”åˆåˆ©åŽ'),
(78483, 65455, 'no_lang_code', 'name', 'Quanta Computer (China)'),
(78484, 65455, 'zh', 'name', '广达电脑'),
(78485, 65456, 'no_lang_code', 'name', 'Realtek (China)'),
(78486, 65456, 'zh', 'name', 'ē‘žę˜±åŠå°Žé«”č‚”ä»½ęœ‰é™å…¬åø'),
(78487, 65457, 'no_lang_code', 'name', 'Sunonwealth Electric Machine Industry (China)'),
(78488, 65458, 'no_lang_code', 'name', 'ON Semiconductor (China)'),
(78489, 65459, 'no_lang_code', 'name', 'ThyssenKrupp (China)'),
(78490, 65459, 'zh', 'name', 'č’‚ę£®å…‹č™ä¼Æč‚”ä»½å…¬åø'),
(78491, 65460, 'no_lang_code', 'name', 'Wistron (China)'),
(78492, 65460, 'zh', 'name', 'ē·Æå‰µč³‡é€šč‚”ä»½ęœ‰é™å…¬åø'),
(78493, 65461, 'no_lang_code', 'name', 'Medtronic (India)'),
(78494, 65462, 'no_lang_code', 'name', 'Ajanta Pharma (India)'),
(78495, 65462, 'hi', 'name', 'ą¤…ą¤œą¤‚ą¤¤ą¤¾ ą¤«ą¤¾ą¤°ą„ą¤®ą¤¾ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(78496, 65463, 'no_lang_code', 'name', 'Inventia (India)'),
(78497, 65464, 'no_lang_code', 'name', 'Alarsin (India)'),
(78498, 65465, 'no_lang_code', 'name', 'Alkem (India)'),
(78499, 65466, 'en', 'name', 'Infinity Vision Dallas'),
(78500, 65467, 'no_lang_code', 'name', 'ITC (India)'),
(78501, 65468, 'en', 'name', 'Australian Council for Educational Research'),
(78502, 65469, 'en', 'name', 'Aurous HealthCare'),
(78503, 65470, 'no_lang_code', 'name', 'Johnson & Johnson (India)'),
(78504, 65470, 'mr', 'name', 'ą¤œą„‰ą¤Øą„ą¤øą¤Ø आणि ą¤œą„‰ą¤Øą„ą¤øą¤Ø ą¤Ŗą„ą¤°ą¤¾ą¤Æą¤µą„ą¤¹ą„‡ą¤Ÿ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(78505, 65470, 'hi', 'name', 'ą¤œą„‰ą¤Øą„ą¤øą¤Ø और ą¤œą„‰ą¤Øą„ą¤øą¤Ø ą¤Ŗą„ą¤°ą¤¾ą¤Æą„‹ą¤œą¤æą¤¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(78506, 65470, 'kn', 'name', 'ą²œą²¾ą²Øą³ą²øą²Øą³ ą²®ą²¤ą³ą²¤ą³ ą²œą²¾ą²Øą³ą²øą²Øą³ ą²Ŗą³ą²°ą³ˆą²µą³‡ą²Ÿą³ ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(78507, 65471, 'no_lang_code', 'name', 'JSS Medical Research (India)'),
(78508, 65471, 'hi', 'name', 'ą¤œą„‡ą¤ą¤øą¤ą¤ø ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤°ą¤æą¤øą¤°ą„ą¤š इंऔिया ą¤Ŗą„ą¤°ą¤¾ą„¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(78509, 65471, 'kn', 'name', 'ą²œą³†ą²Žą²øą³ą²Žą²øą³ ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ಸಂಶೋಧನಾ ಭಾರತ ą²Ŗą³ą²°ą³ˆ. ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(78510, 65472, 'no_lang_code', 'name', 'Ayush Arihant (India)'),
(78511, 65472, 'hi', 'name', 'ą¤†ą¤Æą„ą¤· अरिहंत ą¤‡ą¤‚ą¤”ą¤øą„ą¤Ÿą„ą¤°ą„€ą¤œ'),
(78512, 65473, 'no_lang_code', 'name', 'Baxter (India)'),
(78513, 65474, 'no_lang_code', 'name', 'Syneos Health (India)'),
(78514, 65475, 'no_lang_code', 'name', 'Bharat Serums and Vaccines (India)'),
(78515, 65476, 'en', 'name', 'Kelkar Education Trust''s Scientific Research Centre'),
(78516, 65477, 'no_lang_code', 'name', 'BIOCAD (India)'),
(78517, 65478, 'en', 'name', 'Iraqi Association for Psychotherapy'),
(78518, 65478, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ© للعلاج Ų§Ł„Ł†ŁŲ³ŁŠ'),
(78519, 65479, 'no_lang_code', 'name', 'Klinera (India)');
INSERT INTO `ror_settings` VALUES
(78520, 65479, 'hi', 'name', 'ą¤•ą„ą¤²ą„€ą¤°ą¤æą¤Æą¤¾ निगम भारत'),
(78521, 65479, 'gu', 'name', 'ąŖ•ą«ąŖ²ąŖæąŖąŖ°ąŖ¾ ąŖ•ą«‹ąŖ°ą«ąŖŖą«‹ąŖ°ą«‡ąŖ¶ąŖØ ąŖ‡ąŖØą«ąŖ”ąŖæąŖÆąŖ¾'),
(78522, 65479, 'kn', 'name', 'ą²•ą³ą²²ą²æą²Øą³ą²‡ą²°ą²¾ ą²•ą²¾ą²°ą³ą²Ŗą³Šą²°ą³‡ą²·ą²Øą³ ಇಂಔಿಯಾ'),
(78523, 65480, 'no_lang_code', 'name', 'Biogen (India)'),
(78524, 65481, 'no_lang_code', 'name', 'LG (India)'),
(78525, 65481, 'hi', 'name', 'ą¤²ą¤œą„€ लाइफ ą¤øą¤¾ą¤‡ą¤‚ą¤øą„‡ą¤œ इंऔिया ą¤Ŗą„ą¤°ą¤¾ą„¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(78526, 65481, 'kn', 'name', 'ą²²ą³‡ą²œą²æ ą²²ą³ˆą²«ą³ ą²øą³ˆą²Øą³ą²øą²øą³ ಇಂಔಿಯಾ ą²Ŗą³ą²°ą³ˆ. ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(78527, 65482, 'no_lang_code', 'name', 'Boehringer Ingelheim (India)'),
(78528, 65483, 'no_lang_code', 'name', 'LifeForce Homoeopathy (India)'),
(78529, 65484, 'no_lang_code', 'name', 'Bonyf (Liechtenstein)'),
(78530, 65485, 'en', 'name', 'Hebei Semiconductor Research Institute'),
(78531, 65486, 'no_lang_code', 'name', 'Lotus Labs (India)'),
(78532, 65487, 'no_lang_code', 'name', 'Claims (India)'),
(78533, 65488, 'no_lang_code', 'name', 'MSN Laboratories (India)'),
(78534, 65489, 'no_lang_code', 'name', 'Ravenbhel Healthcare (India)'),
(78535, 65490, 'no_lang_code', 'name', 'TAKE Solutions (India)'),
(78536, 65491, 'no_lang_code', 'name', 'Marico (India)'),
(78537, 65492, 'no_lang_code', 'name', 'Mascot Spincontrol (India)'),
(78538, 65493, 'no_lang_code', 'name', 'Maya Clinicals (India)'),
(78539, 65494, 'no_lang_code', 'name', 'Medpace (India)'),
(78540, 65495, 'no_lang_code', 'name', 'Micro Labs (India)'),
(78541, 65495, 'kn', 'name', 'ą²®ą³†ą³–ą²•ą³ą²°ą³†ą³‚ą³• ą²²ą³ą²Æą²¾ą²¬ą³ą²øą³ ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(78542, 65496, 'no_lang_code', 'name', 'MS Clinical Research (India)'),
(78543, 65497, 'no_lang_code', 'name', 'Cadila Pharmaceuticals (India)'),
(78544, 65498, 'no_lang_code', 'name', 'NexusCRO (India)'),
(78545, 65499, 'no_lang_code', 'name', 'CIDP Biotech (India)'),
(78546, 65500, 'no_lang_code', 'name', 'Cipla (United States)'),
(78547, 65501, 'no_lang_code', 'name', 'Novo Nordisk (India)'),
(78548, 65502, 'en', 'name', 'Consortium Clinical Research'),
(78549, 65503, 'no_lang_code', 'name', 'Olive Lifesciences (India)'),
(78550, 65504, 'no_lang_code', 'name', 'Sante Mernaud (India)'),
(78551, 65505, 'no_lang_code', 'name', 'Opto Circuits (India)'),
(78552, 65506, 'no_lang_code', 'name', 'PAREXEL International (India)'),
(78553, 65507, 'no_lang_code', 'name', 'Semler Research Center (India)'),
(78554, 65508, 'no_lang_code', 'name', 'Serdia Pharmaceuticals (India)'),
(78555, 65509, 'en', 'name', 'Patanjali Research Foundation'),
(78556, 65510, 'no_lang_code', 'name', 'Sanofi (India)'),
(78557, 65510, 'hi', 'name', 'ą¤øą¤Øą„‹ą¤«ą„€'),
(78558, 65511, 'no_lang_code', 'name', 'Philips (India)'),
(78559, 65512, 'no_lang_code', 'name', 'Enovate Biolife (India)'),
(78560, 65513, 'no_lang_code', 'name', 'Spectrum Clinical Research (India)'),
(78561, 65514, 'no_lang_code', 'name', 'Pharmaceutical Product Development (India)'),
(78562, 65515, 'no_lang_code', 'name', 'Excel Life Sciences (India)'),
(78563, 65516, 'en', 'name', 'Spectrum Healthcare'),
(78564, 65516, 'hi', 'name', 'ą¤øą„ą¤Ŗą„‡ą¤•ą„ą¤Ÿą„ą¤°ą¤® ą¤†ą¤°ą„‹ą¤—ą„ą¤Æ'),
(78565, 65517, 'en', 'name', 'PRA Health Sciences'),
(78566, 65518, 'no_lang_code', 'name', 'Eye Tech Care (France)'),
(78567, 65519, 'no_lang_code', 'name', 'Stempeutics (India)'),
(78568, 65520, 'no_lang_code', 'name', 'Precise (India)'),
(78569, 65521, 'en', 'name', 'Government of Himachal Pradesh'),
(78570, 65521, 'hi', 'name', 'हिमाचल ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ सचिवालय'),
(78571, 65522, 'no_lang_code', 'name', 'IQVIA (India)'),
(78572, 65523, 'no_lang_code', 'name', 'ICBio (India)'),
(78573, 65524, 'no_lang_code', 'name', 'Themis (India)'),
(78574, 65525, 'en', 'name', 'Beijing Advanced Sciences and Innovation Center'),
(78575, 65525, 'zh', 'name', 'åŒ—äŗ¬ē»¼åˆē ”ē©¶äø­åæƒ'),
(78576, 65526, 'en', 'name', 'Center for Agricultural Research'),
(78577, 65526, 'zh', 'name', 'å†œäøšęŠ€ęœÆäø­åæƒ'),
(78578, 65527, 'en', 'name', 'Center for Agricultural Resources Research'),
(78579, 65527, 'zh', 'name', 'å†œäøščµ„ęŗē ”ē©¶äø­åæƒ'),
(78580, 65528, 'en', 'name', 'Changchun Observatory'),
(78581, 65528, 'zh', 'name', 'é•æę˜„äŗŗé€ å«ę˜Ÿč§‚ęµ‹ē«™'),
(78582, 65529, 'en', 'name', 'Changsha Mineral Resources Exploration Center'),
(78583, 65529, 'zh', 'name', 'é•æę²™ēŸæäŗ§čµ„ęŗå‹˜ęŸ„äø­åæƒ'),
(78584, 65530, 'en', 'name', 'Chengdu Documentation and Information Center'),
(78585, 65530, 'zh', 'name', 'ęˆéƒ½ę–‡ēŒ®ęƒ…ęŠ„äø­åæƒ'),
(78586, 65531, 'en', 'name', 'Data Assurance and Communication Security'),
(78587, 65531, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę•°ę®äøŽé€šäæ”äæęŠ¤ē ”ē©¶ę•™č‚²äø­åæƒ'),
(78588, 65532, 'en', 'name', 'Ram Poly Clinic'),
(78589, 65533, 'no_lang_code', 'name', 'Torrent Pharma (India)'),
(78590, 65534, 'no_lang_code', 'name', 'Roche (India)'),
(78591, 65535, 'no_lang_code', 'name', 'Troikaa (India)'),
(78592, 65536, 'no_lang_code', 'name', 'Arya Vaidya Sala'),
(78593, 65537, 'no_lang_code', 'name', 'Zimmer Biomet (India)'),
(78594, 65538, 'no_lang_code', 'name', 'Vedic Lifesciences (India)'),
(78595, 65539, 'no_lang_code', 'name', 'Virchow BioTech (India)'),
(78596, 65540, 'no_lang_code', 'name', 'Amneal (Switzerland)'),
(78597, 65541, 'no_lang_code', 'name', 'Abbott (Singapore)'),
(78598, 65542, 'no_lang_code', 'name', 'Amneal (India)'),
(78599, 65543, 'en', 'name', 'AO Foundation'),
(78600, 65544, 'en', 'name', 'AO Foundation'),
(78601, 65545, 'no_lang_code', 'name', 'Astellas Pharma (India)'),
(78602, 65546, 'no_lang_code', 'name', 'AstraZeneca (Singapore)'),
(78603, 65547, 'no_lang_code', 'name', 'Apotex (India)'),
(78604, 65548, 'no_lang_code', 'name', 'Amgen (India)'),
(78605, 65549, 'no_lang_code', 'name', 'Amgen (Australia)'),
(78606, 65550, 'no_lang_code', 'name', 'Amgen (Belgium)'),
(78607, 65551, 'no_lang_code', 'name', 'Becton Dickinson (India)'),
(78608, 65552, 'no_lang_code', 'name', 'Biotronik (India)'),
(78609, 65553, 'no_lang_code', 'name', 'BIOCAD (Russia)'),
(78610, 65554, 'no_lang_code', 'name', 'Evotec (India)'),
(78611, 65555, 'no_lang_code', 'name', 'Boehringer Ingelheim (China)'),
(78612, 65555, 'zh', 'name', 'å‹ƒęž—ę ¼ę®·ę ¼ēæ°'),
(78613, 65556, 'no_lang_code', 'name', 'Boehringer Ingelheim (South Korea)'),
(78614, 65556, 'ko', 'name', 'ķ•œźµ­ė² ė§ź±°ģøź²”ķ•˜ģž„'),
(78615, 65557, 'no_lang_code', 'name', 'Boehringer Ingelheim (Taiwan)'),
(78616, 65557, 'zh', 'name', 'å°ē£ē™¾éˆä½³ę®·ę ¼ēæ°č‚”ä»½ęœ‰é™å…¬åø'),
(78617, 65558, 'no_lang_code', 'name', 'Mondelēz International (India)'),
(78618, 65559, 'no_lang_code', 'name', 'Zydus Pharmaceuticals (United States)'),
(78619, 65560, 'no_lang_code', 'name', 'Janssen (France)'),
(78620, 65561, 'no_lang_code', 'name', 'Janssen (Germany)'),
(78621, 65562, 'no_lang_code', 'name', 'Janssen (Hungary)'),
(78622, 65563, 'no_lang_code', 'name', 'Janssen (Ireland)'),
(78623, 65564, 'no_lang_code', 'name', 'Janssen (Italy)'),
(78624, 65565, 'no_lang_code', 'name', 'Colgate-Palmolive (India)'),
(78625, 65566, 'no_lang_code', 'name', 'Janssen (Netherlands)'),
(78626, 65567, 'no_lang_code', 'name', 'Janssen (United States)'),
(78627, 65568, 'no_lang_code', 'name', 'CliniRx (India)'),
(78628, 65569, 'no_lang_code', 'name', 'Covance (India)'),
(78629, 65570, 'no_lang_code', 'name', 'LivaNova (United States)'),
(78630, 65571, 'no_lang_code', 'name', 'Daiichi Sankyo (India)'),
(78631, 65572, 'no_lang_code', 'name', 'Dhathri Ayurveda (India)'),
(78632, 65573, 'no_lang_code', 'name', 'Arbro Pharmaceuticals (India)'),
(78633, 65574, 'en', 'name', 'Drugs for Neglected Diseases Initiative India'),
(78634, 65575, 'no_lang_code', 'name', 'DSM (India)'),
(78635, 65576, 'no_lang_code', 'name', 'Navitas Life Sciences (India)'),
(78636, 65577, 'no_lang_code', 'name', 'OPKO Health (Ireland)'),
(78637, 65578, 'no_lang_code', 'name', 'Icon (India)'),
(78638, 65578, 'ta', 'name', 'ą®ą®•ą®¾ą®©ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ ą®Ŗą®æą®°ąÆˆą®µąÆ‡ą®ŸąÆ'),
(78639, 65579, 'no_lang_code', 'name', 'Fresenius Kabi (China)'),
(78640, 65580, 'no_lang_code', 'name', 'Fresenius Medical Care (India)'),
(78641, 65581, 'no_lang_code', 'name', 'Frutarom (Netherlands)'),
(78642, 65582, 'no_lang_code', 'name', 'Kraft Heinz (India)'),
(78643, 65583, 'en', 'name', 'Tobacco Harm Reduction 4 Life'),
(78644, 65584, 'no_lang_code', 'name', 'Janssen (India)'),
(78645, 65585, 'no_lang_code', 'name', 'Johnson & Johnson (Singapore)'),
(78646, 65586, 'no_lang_code', 'name', 'Abbott (Chile)'),
(78647, 65587, 'en', 'name', 'Lady Tata Memorial Trust'),
(78648, 65588, 'no_lang_code', 'name', 'Lupin Pharmaceuticals (United States)'),
(78649, 65589, 'no_lang_code', 'name', 'Medtronic (China)'),
(78650, 65589, 'zh', 'name', 'ē¾Žę•¦åŠ›'),
(78651, 65590, 'no_lang_code', 'name', 'Meiji (India)'),
(78652, 65591, 'no_lang_code', 'name', 'Merck (Singapore)'),
(78653, 65592, 'no_lang_code', 'name', 'PepsiCo (India)'),
(78654, 65593, 'no_lang_code', 'name', 'Cordis Automation (Netherlands)'),
(78655, 65594, 'en', 'name', 'Atmiya University'),
(78656, 65595, 'no_lang_code', 'name', 'Pharmacosmos (United States)'),
(78657, 65596, 'no_lang_code', 'name', 'NestlƩ (India)'),
(78658, 65597, 'en', 'name', 'United States Preventive Services Task Force'),
(78659, 65598, 'no_lang_code', 'name', 'Piramal (United States)'),
(78660, 65599, 'en', 'name', 'Population Services International'),
(78661, 65600, 'no_lang_code', 'name', 'Procter & Gamble (India)'),
(78662, 65601, 'no_lang_code', 'name', 'Taube Koret Center'),
(78663, 65602, 'no_lang_code', 'name', 'Roquette FrĆØres (India)'),
(78664, 65603, 'en', 'name', 'Eterna Massive Open Laboratory'),
(78665, 65604, 'no_lang_code', 'name', 'Microsoft (Denmark)'),
(78666, 65605, 'en', 'name', 'Council for International Exchange of Scholars'),
(78667, 65606, 'no_lang_code', 'name', 'Knowledge Unlatched (Germany)'),
(78668, 65607, 'no_lang_code', 'name', 'Smith & Nephew (Australia)'),
(78669, 65608, 'fr', 'name', 'Institut royal du Patrimoine artistique'),
(78670, 65608, 'nl', 'name', 'Koninklijk Instituut voor het Kunstpatrimonium'),
(78671, 65608, 'de', 'name', 'Königliches Institut für Denkmalschutz'),
(78672, 65608, 'en', 'name', 'Royal Institute for Cultural Heritage'),
(78673, 65609, 'en', 'name', 'Program for Appropriate Technology in Health'),
(78674, 65610, 'no_lang_code', 'name', 'Qiagen (India)'),
(78675, 65611, 'no_lang_code', 'name', 'Abbott (China)'),
(78676, 65611, 'zh', 'name', '雅培'),
(78677, 65612, 'no_lang_code', 'name', 'Takeda (Singapore)'),
(78678, 65613, 'no_lang_code', 'name', 'Course Hero (United States)'),
(78679, 65614, 'en', 'name', 'United Nations Children''s Fund India'),
(78680, 65615, 'no_lang_code', 'name', 'UCB Pharma (India)'),
(78681, 65616, 'no_lang_code', 'name', 'Wockhardt (Switzerland)'),
(78682, 65617, 'en', 'name', 'Alberta Kidney Disease Network'),
(78683, 65618, 'fr', 'name', 'HƓpital PrivƩ Marseille Beauregard'),
(78684, 65619, 'it', 'name', 'Centro Studi GISED'),
(78685, 65620, 'en', 'name', 'Asian Pacific Society of Cardiology'),
(78686, 65621, 'es', 'name', 'Clinica Rotger'),
(78687, 65622, 'no_lang_code', 'name', 'Bayer (China)'),
(78688, 65622, 'zh', 'name', 'ę‹œč€³äø­å›½'),
(78689, 65623, 'en', 'name', 'Beck Institute for Cognitive Behavior Therapy'),
(78690, 65624, 'en', 'name', 'Athletic Edge Sports Medicine'),
(78691, 65625, 'no_lang_code', 'name', 'Blueprint Medicines (United States)'),
(78692, 65626, 'no_lang_code', 'name', 'Boehringer Ingelheim (Norway)'),
(78693, 65627, 'no_lang_code', 'name', 'Congenomics (United States)'),
(78694, 65628, 'en', 'name', 'Cancer Trials Australia'),
(78695, 65629, 'no_lang_code', 'name', 'Quest Diagnostics (United Kingdom)'),
(78696, 65630, 'en', 'name', 'Center for Disease Analysis'),
(78697, 65631, 'de', 'name', 'Johanniter-Krankenhaus Bonn'),
(78698, 65632, 'en', 'name', 'Center for Non-Communicable Diseases'),
(78699, 65633, 'en', 'name', 'Hollywood Orthopaedic Group'),
(78700, 65634, 'es', 'name', 'Servicio Diabetología Hospital Córdoba'),
(78701, 65635, 'fr', 'name', 'HƓpital Larrey'),
(78702, 65636, 'en', 'name', 'Hotel Dieu Shaver Health and Rehabilitation Centre'),
(78703, 65637, 'en', 'name', 'Laboratory for Biomedical Neurosciences'),
(78704, 65638, 'no_lang_code', 'name', 'LakePharma (United States)'),
(78705, 65639, 'fr', 'name', 'UC-Institut inter RƩgional pour la SAntƩ'),
(78706, 65640, 'de', 'name', 'FƩdƩration Internationale de MƩdecine du Sport'),
(78707, 65640, 'en', 'name', 'International Federation of Sports Medicine'),
(78708, 65641, 'en', 'name', 'International League of Dermatological Societies'),
(78709, 65642, 'en', 'name', 'Mediolanum Cardio Research'),
(78710, 65643, 'es', 'name', 'Fundación Biomédica Neurounion'),
(78711, 65643, 'en', 'name', 'Neurounion Biomedical Foundation'),
(78712, 65644, 'en', 'name', 'European Heart Network'),
(78713, 65645, 'en', 'name', 'Parachute'),
(78714, 65646, 'no_lang_code', 'name', 'SIPN S.R.L. (Italy)'),
(78715, 65647, 'no_lang_code', 'name', 'UCB Pharma (Spain)'),
(78716, 65648, 'en', 'name', 'ICAR-Indian Institute of Maize Research'),
(78717, 65649, 'en', 'name', 'Partnership for Dengue Control'),
(78718, 65650, 'de', 'name', 'Pathodiagnostik Berlin'),
(78719, 65651, 'en', 'name', 'Perry Maddocks Trollope Lawyers'),
(78720, 65652, 'no_lang_code', 'name', 'Pivotal (Spain)'),
(78721, 65653, 'en', 'name', 'Physicians East'),
(78722, 65654, 'en', 'name', 'VA Center for Clinical Management Research'),
(78723, 65655, 'en', 'name', 'Retina Care Specialists'),
(78724, 65656, 'no_lang_code', 'name', 'Abnoba (South Korea)'),
(78725, 65656, 'ko', 'name', 'ģ•„ėøŒė…øė°”'),
(78726, 65657, 'no_lang_code', 'name', 'Exactech (South Korea)'),
(78727, 65658, 'no_lang_code', 'name', 'Actelion (South Korea)'),
(78728, 65659, 'no_lang_code', 'name', 'Pharmicell (South Korea)'),
(78729, 65659, 'ko', 'name', 'ķŒŒėÆøģ…€'),
(78730, 65660, 'no_lang_code', 'name', 'Aekyung (South Korea)'),
(78731, 65660, 'ko', 'name', 'ģ• ź²½'),
(78732, 65661, 'no_lang_code', 'name', 'Novartis (South Korea)'),
(78733, 65661, 'ko', 'name', 'ė…øė°”ķ‹°ģŠ¤'),
(78734, 65662, 'en', 'name', 'Yongin Mental Hospital'),
(78735, 65662, 'ko', 'name', 'ģš©ģøė„ģ •ģ‹ ė³‘ģ›'),
(78736, 65663, 'no_lang_code', 'name', 'Fresenius Kabi (South Korea)'),
(78737, 65663, 'ko', 'name', 'ķ”„ė ˆģ§€ė‹ˆģš°ģŠ¤ģ¹“ė¹„ģ½”ė¦¬ģ•„'),
(78738, 65664, 'no_lang_code', 'name', 'Allergan (South Korea)'),
(78739, 65664, 'ko', 'name', 'ģ—˜ėŸ¬ź°„'),
(78740, 65665, 'no_lang_code', 'name', 'GeneMatrix (South Korea)'),
(78741, 65666, 'no_lang_code', 'name', 'Amway (South Korea)'),
(78742, 65666, 'ko', 'name', '암웨'),
(78743, 65667, 'no_lang_code', 'name', 'Geranti (South Korea)'),
(78744, 65667, 'ko', 'name', 'ź²Œėž€ķ‹°'),
(78745, 65668, 'en', 'name', 'Medtronic (South Korea)'),
(78746, 65669, 'no_lang_code', 'name', 'GL PharmTech (South Korea)'),
(78747, 65670, 'no_lang_code', 'name', 'Astellas Pharma (South Korea)'),
(78748, 65670, 'ko', 'name', 'ģ•„ģŠ¤ķ…”ė¼ģŠ¤'),
(78749, 65671, 'en', 'name', 'Goodball Academy'),
(78750, 65671, 'ko', 'name', 'źµæė³¼ķžė§ģ„¼ķ„°'),
(78751, 65672, 'no_lang_code', 'name', 'AtoGen (South Korea)'),
(78752, 65672, 'ko', 'name', 'ģ—ģ“ķˆ¬ģ  '),
(78753, 65673, 'no_lang_code', 'name', 'GreenCross Medical Science (South Korea)'),
(78754, 65674, 'no_lang_code', 'name', 'Avixgen (South Korea)'),
(78755, 65674, 'ko', 'name', 'ģ—ė¹…ģŠ¤ģ  '),
(78756, 65675, 'en', 'name', 'Gwangmyeong Mental Health Welfare Center'),
(78757, 65675, 'ko', 'name', 'ź“‘ėŖ…ģ‹œģ •ģ‹ ź±“ź°•ė³µģ§€ģ„¼ķ„°'),
(78758, 65676, 'no_lang_code', 'name', 'Bayer (South Korea)'),
(78759, 65676, 'ko', 'name', 'ė°”ģ“ģ—˜'),
(78760, 65677, 'no_lang_code', 'name', 'Mundipharma (South Korea)'),
(78761, 65678, 'en', 'name', 'Myeongji Chunhye Hospital'),
(78762, 65678, 'ko', 'name', 'ėŖ…ģ§€ģ¶˜ķ˜œė³‘ģ›'),
(78763, 65679, 'no_lang_code', 'name', 'Myungin Pharm (South Korea)'),
(78764, 65680, 'no_lang_code', 'name', 'Hamsoa Pharmaceutical (South Korea)'),
(78765, 65680, 'ko', 'name', 'ķ•Øģ†Œģ•„ģ œģ•½'),
(78766, 65681, 'no_lang_code', 'name', 'Myungmoon Pharm (South Korea)'),
(78767, 65682, 'no_lang_code', 'name', 'BC World Pharm (South Korea)'),
(78768, 65683, 'no_lang_code', 'name', 'Han Kook Shin Yak Pharmaceutical (South Korea)'),
(78769, 65684, 'no_lang_code', 'name', 'Hana Pharm (South Korea)'),
(78770, 65684, 'ko', 'name', 'ķ•˜ė‚˜ģ œģ•½ģ£¼ģ‹ķšŒģ‚¬'),
(78771, 65685, 'no_lang_code', 'name', 'Hanall Biopharma (South Korea)'),
(78772, 65685, 'ko', 'name', 'ķ•œģ˜¬ė°”ģ“ģ˜¤ķŒŒė§ˆ'),
(78773, 65686, 'no_lang_code', 'name', 'Na Eun Hospital'),
(78774, 65686, 'ko', 'name', 'ė‚˜ģ€ 병원'),
(78775, 65687, 'no_lang_code', 'name', 'Bioalpha (Malaysia)'),
(78776, 65688, 'no_lang_code', 'name', 'Hanlim Pharm (South Korea)'),
(78777, 65688, 'ko', 'name', 'ķ•œė¦¼ģ œģ•½'),
(78778, 65689, 'no_lang_code', 'name', 'Bioleaders (South Korea)'),
(78779, 65689, 'ko', 'name', 'ė°”ģ“ģ˜¤ė¦¬ė”ģŠ¤'),
(78780, 65690, 'no_lang_code', 'name', 'Hanpoong Pharm (South Korea)'),
(78781, 65690, 'ko', 'name', 'ķ•œķ’ģ œģ•½'),
(78782, 65691, 'no_lang_code', 'name', 'BMI (South Korea)'),
(78783, 65692, 'en', 'name', 'National Development Institute of Korean Medicine'),
(78784, 65692, 'ko', 'name', 'ģøģž¬ģ±„ģš©ģ•ˆė‚“:ķ•œģ•½ģ§„ķ„ģž¬ė‹Ø'),
(78785, 65693, 'no_lang_code', 'name', 'Bristol-Myers Squibb (South Korea)'),
(78786, 65693, 'ko', 'name', 'ėøŒė¦¬ģŠ¤ķ†Ø-ė§ˆģ“ģ–“ģŠ¤ ģŠ¤ķ…'),
(78787, 65694, 'en', 'name', 'Hyoja Geriatric Hospital'),
(78788, 65695, 'no_lang_code', 'name', 'Neonutra (South Korea)'),
(78789, 65696, 'no_lang_code', 'name', 'NeuMed (United States)'),
(78790, 65697, 'no_lang_code', 'name', 'Omiberry (South Korea)'),
(78791, 65697, 'ko', 'name', 'ķšØģ¢…ģ›'),
(78792, 65698, 'no_lang_code', 'name', 'Hyundai Pharm (South Korea)'),
(78793, 65699, 'no_lang_code', 'name', 'ICURE Pharm (South Korea)'),
(78794, 65699, 'ko', 'name', 'ģ•„ģ“ķģ–“'),
(78795, 65700, 'no_lang_code', 'name', 'Il-Yang Pharmaceutical (South Korea)'),
(78796, 65700, 'ko', 'name', 'ģ¼ģ–‘ģ•½ķ’ˆ'),
(78797, 65701, 'no_lang_code', 'name', 'Ildong (South Korea)'),
(78798, 65701, 'ko', 'name', 'ģ¼ė™ģ œģ•½'),
(78799, 65702, 'no_lang_code', 'name', 'NutraPharm Tech (South Korea)'),
(78800, 65703, 'no_lang_code', 'name', 'Ilsung Pharmaceuticals (South Korea)'),
(78801, 65703, 'ko', 'name', 'ģ¼ģ„± ģ œģ•½'),
(78802, 65704, 'en', 'name', 'Onnuri Smile Eye Clinic'),
(78803, 65705, 'no_lang_code', 'name', 'Syneos Health (South Korea)'),
(78804, 65706, 'no_lang_code', 'name', 'PanGen Biotech (South Korea)'),
(78805, 65706, 'ko', 'name', 'ģ£¼ģ‹ķšŒģ‚¬ 팬젠'),
(78806, 65707, 'no_lang_code', 'name', 'PAREXEL International (South Korea)'),
(78807, 65708, 'en', 'name', 'International Ginseng & Herb Research Institute'),
(78808, 65708, 'ko', 'name', 'źøˆģ‚°źµ­ģ œģøģ‚¼ģ•½ģ“ˆģ—°źµ¬ģ†Œ'),
(78809, 65709, 'no_lang_code', 'name', 'PeopleBio (South Korea)'),
(78810, 65710, 'no_lang_code', 'name', 'Intoinworld'),
(78811, 65710, 'ko', 'name', 'ģøķˆ¬ģøģ›”ė“œėŠ”'),
(78812, 65711, 'no_lang_code', 'name', 'iNtRON (South Korea)'),
(78813, 65711, 'ko', 'name', 'ģøķŠøė” ė°”ģ“ģ˜¤ķ…Œķ¬ė†€ė”œģ§€'),
(78814, 65712, 'no_lang_code', 'name', 'Pharmbio Korea (South Korea)'),
(78815, 65713, 'no_lang_code', 'name', 'Jeju TechnoPark'),
(78816, 65713, 'ko', 'name', 'ģ œģ£¼ķ…Œķ¬ė…øķŒŒķ¬'),
(78817, 65714, 'no_lang_code', 'name', 'RBio (South Korea)'),
(78818, 65715, 'no_lang_code', 'name', 'REGEN Biotech (South Korea)'),
(78819, 65716, 'ko', 'name', '(주)ģ§€ė‹ˆģŠ¤'),
(78820, 65716, 'no_lang_code', 'name', 'JINIS Biopharmaceuticals (South Korea)'),
(78821, 65717, 'no_lang_code', 'name', 'Juthis (South Korea)'),
(78822, 65718, 'no_lang_code', 'name', 'Reyon Pharmaceutical (South Korea)'),
(78823, 65718, 'ko', 'name', 'ģ“ģ—°ģ œģ•½'),
(78824, 65719, 'no_lang_code', 'name', 'Roche (South Korea)'),
(78825, 65719, 'ko', 'name', 'ķ•œźµ­ė”œģŠˆ'),
(78826, 65720, 'no_lang_code', 'name', 'Sam Chun Dang Pharm (South Korea)'),
(78827, 65721, 'no_lang_code', 'name', 'Sama Pharm (South Korea)'),
(78828, 65721, 'ko', 'name', 'ģ‚¼ģ•„ģ œģ•½'),
(78829, 65722, 'no_lang_code', 'name', 'Bmvitek (South Korea)'),
(78830, 65722, 'ko', 'name', 'ė¹„ģ— ė°”ģ“ķ…'),
(78831, 65723, 'no_lang_code', 'name', 'Boryung Pharma (South Korea)'),
(78832, 65723, 'ko', 'name', 'ė³“ė ¹ģ œģ•½ģ˜'),
(78833, 65724, 'no_lang_code', 'name', 'Samjin Pharm (South Korea)'),
(78834, 65724, 'ko', 'name', 'ģ‚¼ģ§„ģ œģ•½'),
(78835, 65725, 'no_lang_code', 'name', 'JW Shinyak (South Korea)'),
(78836, 65725, 'ko', 'name', 'JW신약'),
(78837, 65726, 'no_lang_code', 'name', 'Botamedi (South Korea)'),
(78838, 65727, 'no_lang_code', 'name', 'Samsung Pharm (South Korea)'),
(78839, 65727, 'ko', 'name', 'ģ‚¼ģ„±ģ œģ•½ćˆœ'),
(78840, 65728, 'no_lang_code', 'name', 'Bukwang Pharmaceutical (South Korea)'),
(78841, 65728, 'ko', 'name', 'ė¶€ź“‘ģ•½ķ’ˆ'),
(78842, 65729, 'no_lang_code', 'name', 'JW Pharmaceutical (South Korea)'),
(78843, 65729, 'ko', 'name', 'JWģ¤‘ģ™øģ œģ•½'),
(78844, 65730, 'no_lang_code', 'name', 'Cell Biotech (South Korea)'),
(78845, 65730, 'ko', 'name', 'ģŽŒė°”ģ“ģ˜¤ķ…'),
(78846, 65731, 'no_lang_code', 'name', 'CellaMedic Biotechnology (South Korea)'),
(78847, 65731, 'ko', 'name', 'ģ„øė¼ė©”ė”• ė°”ģ“ģ˜¤ķ…Œķ¬ė†€ėŸ¬ģ§€'),
(78848, 65732, 'no_lang_code', 'name', 'Cellid (South Korea)'),
(78849, 65732, 'ko', 'name', 'ģ…€ė¦¬ė“œ'),
(78850, 65733, 'no_lang_code', 'name', 'Kolmar Korea (South Korea)'),
(78851, 65733, 'ko', 'name', 'ķ•œźµ­ 콜마'),
(78852, 65734, 'en', 'name', 'Songdo Hospital'),
(78853, 65734, 'ko', 'name', 'ģ„œģšøģ†”ė„ė³‘ģ›'),
(78854, 65735, 'no_lang_code', 'name', 'Komipharm International (South Korea)'),
(78855, 65735, 'ko', 'name', 'ģ½”ėÆøķŒœ'),
(78856, 65736, 'no_lang_code', 'name', 'Shin Poong Pharm (South Korea)'),
(78857, 65736, 'ko', 'name', 'ģ‹ ķ’ģ œģ•½ģ£¼ģ‹ķšŒģ‚¬'),
(78858, 65737, 'no_lang_code', 'name', 'Chong Kun Dang Bio (South Korea)'),
(78859, 65737, 'ko', 'name', 'ģ¢…ź·¼ė‹¹ķ™€ė”©ģŠ¤'),
(78860, 65738, 'en', 'name', 'Korea Association of Health Promotion'),
(78861, 65738, 'ko', 'name', 'ķ•œźµ­ź±“ź°•ź“€ė¦¬ķ˜‘ķšŒ'),
(78862, 65739, 'ko', 'name', '(주)ģ‹ ķ™”ģ˜ė£Œźø°'),
(78863, 65739, 'no_lang_code', 'name', 'Shinhwa Medical (South Korea)'),
(78864, 65740, 'no_lang_code', 'name', 'SiliconSapiens (South Korea)'),
(78865, 65740, 'ko', 'name', '실 리코 ģ‚¬ķ”¼ģ—”ģŠ¤'),
(78866, 65741, 'no_lang_code', 'name', 'Chunghwa Medipower (South Korea)'),
(78867, 65741, 'ko', 'name', 'ģ²­ķ™”ė©”ė””ķŒŒģ›Œ(주)'),
(78868, 65742, 'ko', 'name', '(주)ģ—ģŠ¤ķ‹°ģ•Œė°”ģ“ģ˜¤ķ…'),
(78869, 65742, 'no_lang_code', 'name', 'STR Biotech (South Korea)'),
(78870, 65743, 'no_lang_code', 'name', 'Sungae Hospital'),
(78871, 65743, 'ko', 'name', '성애병원'),
(78872, 65744, 'no_lang_code', 'name', 'Otsuka (South Korea)'),
(78873, 65744, 'ko', 'name', 'ķ•œźµ­ģ˜¤ģø ģ¹“ģ œģ•½'),
(78874, 65745, 'no_lang_code', 'name', 'CL Pharm (South Korea)'),
(78875, 65746, 'ko', 'name', '(주)ģ‹¬ģœ '),
(78876, 65746, 'no_lang_code', 'name', 'Symyoo'),
(78877, 65747, 'no_lang_code', 'name', 'Korea Pharma (South Korea)'),
(78878, 65747, 'ko', 'name', 'ķ•œźµ­ķŒŒė§ˆ'),
(78879, 65748, 'no_lang_code', 'name', 'Corepharmbio (South Korea)'),
(78880, 65749, 'no_lang_code', 'name', 'Corestem (South Korea)'),
(78881, 65749, 'ko', 'name', 'ģ½”ģ•„ģŠ¤ķ…œ(주)'),
(78882, 65750, 'no_lang_code', 'name', 'TEI Korea (South Korea)'),
(78883, 65751, 'no_lang_code', 'name', 'Korea Yakult (South Korea)'),
(78884, 65751, 'ko', 'name', 'ķ•œźµ­ģ•¼ģæ ė„“ķŠø'),
(78885, 65752, 'ko', 'name', '(주)ģ”Øķ‹°ģ”Øė°”ģ“ģ˜¤'),
(78886, 65752, 'no_lang_code', 'name', 'CTCBio (South Korea)'),
(78887, 65753, 'en', 'name', 'Korean Otological Society'),
(78888, 65753, 'ko', 'name', 'ėŒ€ķ•œģ“ź³¼ķ•™ķšŒ'),
(78889, 65754, 'no_lang_code', 'name', 'Dae Hwa Pharm (South Korea)'),
(78890, 65755, 'en', 'name', 'The Korean Society for Anesthetic Pharmacology'),
(78891, 65755, 'ko', 'name', 'ėŒ€ķ•œė§ˆģ·Øģ•½ė¦¬ķ•™ķšŒ'),
(78892, 65756, 'en', 'name', 'Korean Cancer Study Group'),
(78893, 65756, 'ko', 'name', 'ėŒ€ķ•œķ•­ģ•”ģš”ė²•ģ—°źµ¬ķšŒ ģž…ė‹ˆė‹¤'),
(78894, 65757, 'en', 'name', 'Korean Continence Society'),
(78895, 65757, 'ko', 'name', 'ėŒ€ķ•œė°°ė‡Øģž„ģ• ģš”ģ‹¤źøˆķ•™ķšŒ'),
(78896, 65758, 'en', 'name', 'Korean Society for the Study of Obesity'),
(78897, 65758, 'ko', 'name', 'ėŒ€ķ•œė¹„ė§Œķ•™ķšŒ ķ™ˆķŽ˜'),
(78898, 65759, 'en', 'name', 'Daejeon Technopark'),
(78899, 65759, 'ko', 'name', 'ėŒ€ģ „ķ…Œķ¬ė…øķŒŒķ¬'),
(78900, 65760, 'no_lang_code', 'name', 'Daewon Pharm (South Korea)'),
(78901, 65760, 'ko', 'name', 'ėŒ€ģ›ģ œģ•½'),
(78902, 65761, 'no_lang_code', 'name', 'Dai Han Pharm (South Korea)'),
(78903, 65761, 'ko', 'name', 'ėŒ€ķ•œģ•½ķ’ˆź³µģ—…ģ£¼ģ‹ķšŒģ‚¬'),
(78904, 65762, 'en', 'name', 'Korean Pancreatobiliary Association'),
(78905, 65762, 'ko', 'name', 'ėŒ€ķ•œģ·Œė‹“ė„ķ•™ķšŒ'),
(78906, 65763, 'no_lang_code', 'name', 'Daiichi-Sankyo (South Korea)'),
(78907, 65763, 'ko', 'name', 'ķ•œźµ­ė‹¤ģ“ģ“ģ°Œģ‚°ģæ„ģ£¼ģ‹ķšŒģ‚¬'),
(78908, 65764, 'en', 'name', 'The Korean Society for Microbiology and Biotechnology'),
(78909, 65764, 'ko', 'name', 'ķ•œźµ­ėÆøģƒė¬¼ģƒėŖ…ź³µķ•™ķšŒ'),
(78910, 65765, 'no_lang_code', 'name', 'Daiseung Medics (South Korea)'),
(78911, 65765, 'ko', 'name', 'ėŒ€ģŠ¹ģ˜ė£Œźø°źø°(주)'),
(78912, 65766, 'en', 'name', 'Korean Society of Interventional Neuroradiology'),
(78913, 65766, 'ko', 'name', 'ėŒ€ķ•œģ‹ ź²½ģ¤‘ģž¬ģ¹˜ė£Œģ˜ķ•™ķšŒ'),
(78914, 65767, 'no_lang_code', 'name', 'Dalim (South Korea)'),
(78915, 65768, 'no_lang_code', 'name', 'Wellbeing LS (South Korea)'),
(78916, 65768, 'ko', 'name', 'ģ›°ė¹™ģ—˜ģ—ģŠ¤'),
(78917, 65769, 'no_lang_code', 'name', 'Kuhnil Pharma (South Korea)'),
(78918, 65769, 'ko', 'name', 'ź±“ģ¼ģ œģ•½'),
(78919, 65770, 'no_lang_code', 'name', 'Wonbiogen (South Korea)'),
(78920, 65770, 'ko', 'name', 'ģ›ė°”ģ“ģ˜¤ģ  '),
(78921, 65771, 'no_lang_code', 'name', 'Daewoo Pharma (South Korea)'),
(78922, 65771, 'ko', 'name', 'ėŒ€ģš°ģ œģ•½'),
(78923, 65772, 'no_lang_code', 'name', 'Wonkwang Pharmaceutical (South Korea)'),
(78924, 65772, 'ko', 'name', 'ģ›ź“‘ģ œģ•½'),
(78925, 65773, 'en', 'name', 'Seminary of the Southwest'),
(78926, 65774, 'no_lang_code', 'name', 'Alvogen (South Korea)'),
(78927, 65775, 'en', 'name', 'St. Paul''s Co-educational College'),
(78928, 65775, 'zh', 'name', 'č–äæē¾…ē”·å„³äø­å­ø'),
(78929, 65776, 'en', 'name', 'Yang Hospital'),
(78930, 65776, 'ko', 'name', '양병원'),
(78931, 65777, 'no_lang_code', 'name', 'Kwangdong Pharmaceutical'),
(78932, 65777, 'ko', 'name', 'ź“‘ė™ģ œģ•½'),
(78933, 65778, 'en', 'name', 'Yonsei Proteome Research Center'),
(78934, 65778, 'ko', 'name', '연세 ķ”„ė”œķ…Œģ˜“ 연구원 단백첓 ė¶„ģ„'),
(78935, 65779, 'no_lang_code', 'name', 'Kyungdong Pharmaceutical (South Korea)'),
(78936, 65779, 'ko', 'name', 'ź²½ė™ģ œģ•½'),
(78937, 65780, 'en', 'name', 'Yulchon Foundation'),
(78938, 65780, 'ko', 'name', 'ģœØģ“Œģž¬ė‹Ø'),
(78939, 65781, 'no_lang_code', 'name', 'L&K Biomed (South Korea)'),
(78940, 65782, 'no_lang_code', 'name', 'Dinona (South Korea)'),
(78941, 65782, 'ko', 'name', 'ė‹¤ģ“ė…øė‚˜'),
(78942, 65783, 'en', 'name', 'Seoul Sleep Center'),
(78943, 65783, 'ko', 'name', 'ģ„œģšøģˆ˜ė©“ķ“ė¦¬ė‹‰'),
(78944, 65784, 'ko', 'name', '(주)ķƒœģ›…ė©”ė””ģ¹¼'),
(78945, 65784, 'no_lang_code', 'name', 'Taewoong Medical (South Korea)'),
(78946, 65785, 'no_lang_code', 'name', 'Fujifilm (South Korea)'),
(78947, 65785, 'ko', 'name', 'ķ•œźµ­ķ›„ģ§€ķ•„ė¦„'),
(78948, 65786, 'no_lang_code', 'name', 'YuYu Pharma (South Korea)'),
(78949, 65787, 'no_lang_code', 'name', 'Bio Pharm Dongsung (South Korea)'),
(78950, 65787, 'ko', 'name', 'ė™ģ„±ģ œģ•½ģ£¼ģ‹ķšŒģ‚¬'),
(78951, 65788, 'no_lang_code', 'name', 'Lundbeck (South Korea)'),
(78952, 65788, 'ko', 'name', 'ķ•œźµ­ė£¬ė“œė²”'),
(78953, 65789, 'no_lang_code', 'name', 'Dongwoodang (South Korea)'),
(78954, 65789, 'ko', 'name', 'ė™ģš°ė‹¹ģ œģ•½'),
(78955, 65790, 'no_lang_code', 'name', 'Elyson Pharm (South Korea)'),
(78956, 65790, 'ko', 'name', 'ģ—ė¦¬ģŠØģ œģ•½(주)'),
(78957, 65791, 'no_lang_code', 'name', 'Dr.Chung’s Food (South Korea)'),
(78958, 65792, 'no_lang_code', 'name', 'KT&G (South Korea)'),
(78959, 65792, 'ko', 'name', 'ģ£¼ģ‹ķšŒģ‚¬ ģ¼€ģ“ķ‹°ģ•¤ģ§€'),
(78960, 65793, 'no_lang_code', 'name', 'EuBiologics (South Korea)'),
(78961, 65793, 'ko', 'name', 'ģœ ė°”ģ“ģ˜¤ė”œģ§ģŠ¤'),
(78962, 65794, 'no_lang_code', 'name', 'Ebiche (South Korea)'),
(78963, 65794, 'ko', 'name', 'ģ“ė¹„ģ±„'),
(78964, 65795, 'no_lang_code', 'name', 'Biosolution (South Korea)'),
(78965, 65795, 'ko', 'name', 'ė°”ģ“ģ˜¤ģ†”ė£Øģ…˜'),
(78966, 65796, 'no_lang_code', 'name', 'Edwards Lifesciences (South Korea)'),
(78967, 65797, 'no_lang_code', 'name', 'Ewha Biomedics (South Korea)'),
(78968, 65797, 'ko', 'name', 'ģ“ķ™”ė°”ģ“ģ˜¤ė©”ė”•ģŠ¤'),
(78969, 65798, 'no_lang_code', 'name', 'OKTECH (China)'),
(78970, 65798, 'zh', 'name', 'ęµ·ę“‹ēŽ‹ē…§ę˜Žē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(78971, 65799, 'no_lang_code', 'name', 'Sany (China)'),
(78972, 65799, 'zh', 'name', 'äø‰äø€é‡å·„č‚”ä»½ęœ‰é™å…¬åø'),
(78973, 65800, 'no_lang_code', 'name', 'Chery Automobile (China)'),
(78974, 65800, 'zh', 'name', 'å„‡ē‘ž'),
(78975, 65801, 'no_lang_code', 'name', 'Shanghai Huali Microelectronics (China)'),
(78976, 65801, 'zh', 'name', 'äøŠęµ·åŽåŠ›å¾®ē”µå­ęœ‰é™å…¬åø'),
(78977, 65802, 'no_lang_code', 'name', 'Joyoung (China)'),
(78978, 65802, 'zh', 'name', '九阳'),
(78979, 65803, 'no_lang_code', 'name', 'Qihoo 360 (China)'),
(78980, 65803, 'zh', 'name', 'å„‡č™Ž360'),
(78981, 65804, 'no_lang_code', 'name', 'Xingx (China)'),
(78982, 65804, 'zh', 'name', 'ę˜Ÿę˜Ÿé›†å›¢ęœ‰é™å…¬åø'),
(78983, 65805, 'no_lang_code', 'name', 'Phicomm (China)'),
(78984, 65805, 'zh', 'name', '斐讯'),
(78985, 65806, 'no_lang_code', 'name', 'BBK Electronics (China)'),
(78986, 65806, 'zh', 'name', 'å¹æäøœę­„ę­„é«˜ē”µå­å·„äøšęœ‰é™å…¬åø'),
(78987, 65807, 'no_lang_code', 'name', 'Guangxi Yuchai Machinery Group (China)'),
(78988, 65807, 'zh', 'name', 'ēŽ‰ęŸ“é›†å›¢'),
(78989, 65808, 'no_lang_code', 'name', 'Nubia Technology (China)'),
(78990, 65808, 'zh', 'name', 'åŠŖęÆ”äŗžęŠ€č”“ęœ‰é™å…¬åø'),
(78991, 65809, 'no_lang_code', 'name', 'Lifan (China)'),
(78992, 65809, 'zh', 'name', 'åŠ›åø†é›†å›¢'),
(78993, 65810, 'no_lang_code', 'name', 'Coolpad (China)'),
(78994, 65811, 'no_lang_code', 'name', 'Konka (China)'),
(78995, 65811, 'zh', 'name', '康佳集团'),
(78996, 65812, 'no_lang_code', 'name', 'Pan Asia Technical Automotive Center (China)'),
(78997, 65812, 'zh', 'name', 'ę³›äŗšę±½č½¦ęŠ€ęœÆäø­åæƒ'),
(78998, 65813, 'no_lang_code', 'name', 'Baogang Group (China)'),
(78999, 65814, 'en', 'name', 'Wuxi Vocational Institute of Commerce'),
(79000, 65814, 'zh', 'name', 'ę— é””å•†äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(79001, 65815, 'no_lang_code', 'name', 'Truking (China)'),
(79002, 65816, 'no_lang_code', 'name', 'Donlim (China)'),
(79003, 65816, 'zh', 'name', 'å¹æäøœę–°å®ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(79004, 65817, 'no_lang_code', 'name', 'Supor (China)'),
(79005, 65818, 'no_lang_code', 'name', 'Shanghai Micro Electronics Equipment (China)'),
(79006, 65818, 'zh', 'name', 'äøŠęµ·å¾®ē”µå­č£…å¤‡'),
(79007, 65819, 'no_lang_code', 'name', 'Tinno (China)'),
(79008, 65819, 'zh', 'name', 'ę·±åœ³å¤©ē‘ē§»åŠØęŠ€ęœÆęœ‰é™å…¬åø'),
(79009, 65820, 'no_lang_code', 'name', 'Positec (China)'),
(79010, 65820, 'zh', 'name', 'å®ę—¶å¾—ē§‘ęŠ€'),
(79011, 65821, 'no_lang_code', 'name', 'VTRON (China)'),
(79012, 65821, 'zh', 'name', 'åØåˆ›'),
(79013, 65822, 'no_lang_code', 'name', 'Runze (China)'),
(79014, 65822, 'zh', 'name', 'é‡åŗ†ę¶¦ę³½åŒ»čÆ'),
(79015, 65823, 'no_lang_code', 'name', 'Beijing Founder Electronics (China)'),
(79016, 65823, 'zh', 'name', 'åŒ—äŗ¬åŒ—å¤§ę–¹ę­£ē”µå­ęœ‰é™å…¬åø'),
(79017, 65824, 'no_lang_code', 'name', 'Shandong Iron and Steel Group (China)'),
(79018, 65824, 'zh', 'name', 'å±±äøœé’¢é“é›†å›¢'),
(79019, 65825, 'no_lang_code', 'name', 'Shinva (China)'),
(79020, 65825, 'zh', 'name', 'å±±äøœę–°åŽåŒ»ē–—å™Øę¢°č‚”ä»½ęœ‰é™å…¬åø'),
(79021, 65826, 'no_lang_code', 'name', 'Guangdong Meiyan Jixiang Hydropower (China)'),
(79022, 65826, 'zh', 'name', 'å¹æäøœę¢…é›å‰ē„„ę°“ē”µč‚”ä»½ęœ‰é™å…¬åø'),
(79023, 65827, 'no_lang_code', 'name', 'Shenwu Technology Group Corp (China)'),
(79024, 65827, 'zh', 'name', 'ē„žé›¾ē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(79025, 65828, 'no_lang_code', 'name', 'Zhejiang Zhe Kuang Heavy Industries (China)'),
(79026, 65828, 'zh', 'name', 'ęµ™ēŸæé‡å·„'),
(79027, 65829, 'no_lang_code', 'name', 'Comba (China)'),
(79028, 65829, 'zh', 'name', 'äŗ¬äæ”é€šäæ”'),
(79029, 65830, 'no_lang_code', 'name', 'Gionee (China)'),
(79030, 65830, 'zh', 'name', '金立'),
(79031, 65831, 'no_lang_code', 'name', 'Coship (China)'),
(79032, 65831, 'zh', 'name', 'ę·±åœ³åø‚åŒę“²ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(79033, 65832, 'no_lang_code', 'name', 'Esquel Group (China)'),
(79034, 65833, 'no_lang_code', 'name', 'Fotile (China)'),
(79035, 65833, 'zh', 'name', '方太'),
(79036, 65834, 'no_lang_code', 'name', 'United Imaging Healthcare (China)'),
(79037, 65835, 'no_lang_code', 'name', 'Meizu (China)'),
(79038, 65835, 'zh', 'name', 'é­…ę—ē§‘ęŠ€ęœ‰é™å…¬åø'),
(79039, 65836, 'no_lang_code', 'name', 'Zeus Entertainment (China)'),
(79040, 65836, 'zh', 'name', 'å¤§čæžå¤©ē„žåØ±ä¹č‚”ä»½ęœ‰é™å…¬åø'),
(79041, 65837, 'no_lang_code', 'name', 'Lishen (China)'),
(79042, 65837, 'zh', 'name', 'å¤©ę“„åŠ›ē„žē”µę± č‚”ä»½ęœ‰é™å…¬åø'),
(79043, 65838, 'en', 'name', 'Wellcome Centre for Anti-Infectives Research'),
(79044, 65839, 'no_lang_code', 'name', 'UnionPay (China)'),
(79045, 65839, 'zh', 'name', '银联'),
(79046, 65840, 'no_lang_code', 'name', 'GDL (China)'),
(79047, 65841, 'no_lang_code', 'name', 'iQIYI (China)'),
(79048, 65841, 'zh', 'name', 'ēˆ±å„‡č‰ŗ'),
(79049, 65842, 'en', 'name', 'Wellcome Centre for Ethics and Humanities'),
(79050, 65843, 'no_lang_code', 'name', 'Huainan Mining Industry Group (China)'),
(79051, 65843, 'zh', 'name', 'ę·®å—ēŸæäøšé›†å›¢'),
(79052, 65844, 'no_lang_code', 'name', 'Changshu Switch Manufacturing (China)'),
(79053, 65844, 'zh', 'name', 'åøøē†Ÿå¼€å…³åˆ¶é€ ęœ‰é™å…¬åø'),
(79054, 65845, 'en', 'name', 'Wellcome Centre for Infectious Diseases Research in Africa'),
(79055, 65846, 'en', 'name', 'Wellcome Centre for Integrative Neuroimaging'),
(79056, 65847, 'en', 'name', 'Wellcome Centre of Cultures and Environments of Health'),
(79057, 65848, 'no_lang_code', 'name', 'Little Swan (China)'),
(79058, 65849, 'no_lang_code', 'name', 'Hua Hong Semiconductor (China)'),
(79059, 65849, 'zh', 'name', 'čÆč™¹åŠå°Žé«”'),
(79060, 65850, 'no_lang_code', 'name', 'Taiyuan Heavy Industry (China)'),
(79061, 65850, 'zh', 'name', 'å¤ŖåŽŸé‡å·„č‚”ä»½ęœ‰é™å…¬åø'),
(79062, 65851, 'no_lang_code', 'name', 'Shougang (China)'),
(79063, 65851, 'zh', 'name', '首钢集团'),
(79064, 65852, 'no_lang_code', 'name', 'SAIC-GM (China)'),
(79065, 65852, 'zh', 'name', 'äøŠę±½é€šē”Øę±½č½¦'),
(79066, 65853, 'no_lang_code', 'name', 'Gridsum (China)'),
(79067, 65853, 'zh', 'name', 'å›½åŒē§‘ęŠ€ęœ‰é™å…¬åø'),
(79068, 65854, 'no_lang_code', 'name', 'Shantui (China)'),
(79069, 65854, 'zh', 'name', 'å±±ęŽØå·„ēØ‹ęœŗę¢°č‚”ä»½ęœ‰é™å…¬åø'),
(79070, 65855, 'no_lang_code', 'name', 'Aisino (China)'),
(79071, 65855, 'zh', 'name', 'čˆŖå¤©äæ”ęÆč‚”ä»½ęœ‰é™å…¬åø'),
(79072, 65856, 'no_lang_code', 'name', 'Kunshan Govisionox Optoelectronic (China)'),
(79073, 65856, 'zh', 'name', 'ę˜†å±±å›½ę˜¾å…‰ē”µęœ‰é™å…¬åø'),
(79074, 65857, 'no_lang_code', 'name', 'Optimum Nano (China)'),
(79075, 65858, 'no_lang_code', 'name', 'XTC (China)'),
(79076, 65858, 'zh', 'name', 'å°å¤©ę‰'),
(79077, 65859, 'no_lang_code', 'name', 'WengFu Group (China)'),
(79078, 65860, 'no_lang_code', 'name', 'Umbo Computer Vision (United Kingdom)'),
(79079, 65861, 'no_lang_code', 'name', 'Akilah Hospital'),
(79080, 65861, 'ar', 'name', 'مستؓفى عاقله'),
(79081, 65862, 'en', 'name', 'Amnesty International'),
(79082, 65863, 'en', 'name', 'United Cancer Support Foundation'),
(79083, 65864, 'no_lang_code', 'name', 'IPG Transport (United Kingdom)'),
(79084, 65865, 'en', 'name', 'Moscow City Hospital No 29'),
(79085, 65865, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–29 им. Š.Š­.Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(79086, 65866, 'en', 'name', 'The Global Alliance for LGBT Education'),
(79087, 65867, 'en', 'name', 'Hassan Usman Katsina Polytechnic'),
(79088, 65868, 'no_lang_code', 'name', '2DHeat (United Kingdom)'),
(79089, 65869, 'no_lang_code', 'name', '2iC (United Kingdom)'),
(79090, 65870, 'no_lang_code', 'name', '3-Sci (United Kingdom)'),
(79091, 65871, 'no_lang_code', 'name', '3Brain (Switzerland)'),
(79092, 65872, 'no_lang_code', 'name', '3D Engineering Design (United Kingdom)'),
(79093, 65873, 'no_lang_code', 'name', '3DX-Ray (United Kingdom)'),
(79094, 65874, 'no_lang_code', 'name', 'Norbain (United Kingdom)'),
(79095, 65875, 'en', 'name', '3G''S Development Trust'),
(79096, 65876, 'en', 'name', 'Autism Initiatives'),
(79097, 65877, 'en', 'name', 'Alton Towers Resort'),
(79098, 65878, 'no_lang_code', 'name', '42 Technology (United Kingdom)'),
(79099, 65879, 'no_lang_code', 'name', 'Autolus (United Kingdom)'),
(79100, 65880, 'no_lang_code', 'name', 'ASV (United Kingdom)'),
(79101, 65881, 'no_lang_code', 'name', 'AutoTrip (United Kingdom)'),
(79102, 65882, 'no_lang_code', 'name', 'Accoson (United Kingdom)'),
(79103, 65883, 'no_lang_code', 'name', 'AM Technology (United Kingdom)'),
(79104, 65884, 'no_lang_code', 'name', 'Amadeus Capital Partners (United Kingdom)'),
(79105, 65885, 'no_lang_code', 'name', 'A.M.P Rose (United Kingdom)'),
(79106, 65886, 'no_lang_code', 'name', 'Amalyst (United Kingdom)'),
(79107, 65887, 'en', 'name', 'Aberdeenshire Council'),
(79108, 65888, 'no_lang_code', 'name', 'EnerSys (United Kingdom)'),
(79109, 65889, 'no_lang_code', 'name', 'Axess Technologies (United Kingdom)'),
(79110, 65890, 'no_lang_code', 'name', 'S. Norton (United Kingdom)'),
(79111, 65891, 'no_lang_code', 'name', 'Advanced Micro Devices (United Kingdom)'),
(79112, 65892, 'no_lang_code', 'name', 'AC Goatham & Son (United Kingdom)'),
(79113, 65893, 'no_lang_code', 'name', 'BG Research (United Kingdom)'),
(79114, 65894, 'en', 'name', 'Avon and Somerset Police Authority'),
(79115, 65895, 'no_lang_code', 'name', 'Babcock International Group (United Kingdom)'),
(79116, 65896, 'no_lang_code', 'name', 'American Transmission Company (United States)'),
(79117, 65897, 'no_lang_code', 'name', 'Acidophil (United Kingdom)'),
(79118, 65898, 'no_lang_code', 'name', 'Baby2Body (United Kingdom)'),
(79119, 65899, 'no_lang_code', 'name', 'Bakkavor (United Kingdom)'),
(79120, 65900, 'no_lang_code', 'name', 'Actimass (United Kingdom)'),
(79121, 65901, 'no_lang_code', 'name', 'Nymbl Science (United Kingdom)'),
(79122, 65902, 'no_lang_code', 'name', 'Amethyst Research (United Kingdom)'),
(79123, 65903, 'en', 'name', 'Action for Children'),
(79124, 65904, 'no_lang_code', 'name', 'Action in Caerau & Ely (United Kingdom)'),
(79125, 65905, 'en', 'name', 'Balhousie Care Group'),
(79126, 65906, 'en', 'name', 'Balshaw’s Church of England High School'),
(79127, 65907, 'en', 'name', 'Active Norfolk'),
(79128, 65908, 'en', 'name', 'Joel Samson Ruvugo Traders'),
(79129, 65909, 'en', 'name', 'Advanced Manufacturing Research Centre'),
(79130, 65910, 'en', 'name', 'Coalition on Violence Against Women'),
(79131, 65911, 'no_lang_code', 'name', 'Adoreboard (United Kingdom)'),
(79132, 65912, 'no_lang_code', 'name', 'BAM Nuttall (United Kingdom)'),
(79133, 65913, 'no_lang_code', 'name', 'Advanced Blast & Ballistic Systems (United Kingdom)'),
(79134, 65914, 'en', 'name', 'Barbican Centre'),
(79135, 65915, 'no_lang_code', 'name', 'Advanced Digital Innovation (United Kingdom)'),
(79136, 65916, 'no_lang_code', 'name', 'Barco (United Kingdom)'),
(79137, 65917, 'en', 'name', 'Barnardo''s'),
(79138, 65918, 'no_lang_code', 'name', 'Anacail (United Kingdom)'),
(79139, 65919, 'no_lang_code', 'name', 'Advanced Innovative Engineering (United Kingdom)'),
(79140, 65920, 'en', 'name', 'Barnsley Metropolitan Borough Council'),
(79141, 65921, 'no_lang_code', 'name', 'Barratt Developments (United Kingdom)'),
(79142, 65922, 'no_lang_code', 'name', 'Advanced Microwave Technologies (United Kingdom)'),
(79143, 65923, 'no_lang_code', 'name', 'Analytics Engines (United Kingdom)'),
(79144, 65924, 'no_lang_code', 'name', 'Barrnon (United Kingdom)'),
(79145, 65925, 'no_lang_code', 'name', 'Ancon (United Kingdom)'),
(79146, 65926, 'no_lang_code', 'name', 'Aeirtec (United Kingdom)'),
(79147, 65927, 'no_lang_code', 'name', 'Bauman Lyons Architects (United Kingdom)'),
(79148, 65928, 'no_lang_code', 'name', 'Baxendale (United Kingdom)'),
(79149, 65929, 'no_lang_code', 'name', 'Body Organ Biomedical (Taiwan)'),
(79150, 65930, 'en', 'name', 'Andrew Faulkner Associates'),
(79151, 65931, 'no_lang_code', 'name', 'Afimilk (United Kingdom)'),
(79152, 65932, 'en', 'name', 'BECTU (United Kingdom)'),
(79153, 65933, 'no_lang_code', 'name', 'Bellrock Technology (United Kingdom)'),
(79154, 65934, 'no_lang_code', 'name', 'Benchmark Animal Health (United Kingdom)'),
(79155, 65935, 'no_lang_code', 'name', 'Bennamann (United Kingdom)'),
(79156, 65936, 'en', 'name', 'Age Action Alliance'),
(79157, 65937, 'no_lang_code', 'name', 'Bernard Matthews (United Kingdom)'),
(79158, 65938, 'en', 'name', 'Antich & Sons (United Kingdom)'),
(79159, 65939, 'no_lang_code', 'name', 'Berry Gardens (United Kingdom)'),
(79160, 65940, 'no_lang_code', 'name', 'BGT Materials (United Kingdom)'),
(79161, 65941, 'no_lang_code', 'name', 'Antikor (United Kingdom)'),
(79162, 65942, 'en', 'name', 'Bicester Town Council'),
(79163, 65943, 'no_lang_code', 'name', 'Anton Paar (United Kingdom)'),
(79164, 65944, 'en', 'name', 'Agricultural Engineering Precision Innovation Centre'),
(79165, 65945, 'en', 'name', 'Agricultural Industries Confederation'),
(79166, 65946, 'no_lang_code', 'name', 'Agrimetrics (United Kingdom)'),
(79167, 65947, 'no_lang_code', 'name', 'Aptcore (United Kingdom)'),
(79168, 65948, 'no_lang_code', 'name', 'AgSpace (United Kingdom)'),
(79169, 65949, 'no_lang_code', 'name', 'Aqdot (United Kingdom)'),
(79170, 65950, 'no_lang_code', 'name', 'AI Factory (United Kingdom)'),
(79171, 65951, 'en', 'name', 'Extra Care Physiotherapy Centre'),
(79172, 65952, 'no_lang_code', 'name', 'Syneos Health (Germany)'),
(79173, 65953, 'no_lang_code', 'name', 'AiGameDev.com (Austria)'),
(79174, 65954, 'no_lang_code', 'name', 'Air Black Box (United Kingdom)'),
(79175, 65955, 'no_lang_code', 'name', 'Arcadis (United States)'),
(79176, 65956, 'no_lang_code', 'name', 'Applied Multilayers (United Kingdom)'),
(79177, 65957, 'no_lang_code', 'name', 'Harsco (United Kingdom)'),
(79178, 65958, 'no_lang_code', 'name', 'Ferrovial (United Kingdom)'),
(79179, 65959, 'no_lang_code', 'name', '2-DTech (United Kingdom)'),
(79180, 65960, 'no_lang_code', 'name', 'Archipelago Technology (United Kingdom)'),
(79181, 65961, 'gd', 'name', 'Ailtearachd is Dealbhadh na h-Alba'),
(79182, 65961, 'en', 'name', 'Architecture and Design Scotland'),
(79183, 65962, 'no_lang_code', 'name', 'AKT II (United Kingdom)'),
(79184, 65963, 'no_lang_code', 'name', 'Tozer Seeds (United Kingdom)'),
(79185, 65964, 'no_lang_code', 'name', 'Albatern (United Kingdom)'),
(79186, 65965, 'no_lang_code', 'name', 'Power Roll (United Kingdom)'),
(79187, 65966, 'no_lang_code', 'name', 'Big White Wall (United Kingdom)'),
(79188, 65967, 'no_lang_code', 'name', 'Bio bean (United Kingdom)'),
(79189, 65968, 'no_lang_code', 'name', 'Biocarbon Engineering (United Kingdom)'),
(79190, 65969, 'no_lang_code', 'name', 'DaVinci Laboratories (United States)'),
(79191, 65970, 'no_lang_code', 'name', 'Alcove (United Kingdom)'),
(79192, 65971, 'no_lang_code', 'name', 'Biogelx (United Kingdom)'),
(79193, 65972, 'en', 'name', 'Edinburgh Genomics'),
(79194, 65973, 'no_lang_code', 'name', 'Alexander Dennis (United Kingdom)'),
(79195, 65974, 'no_lang_code', 'name', 'Biome Technologies (United Kingdom)'),
(79196, 65975, 'no_lang_code', 'name', 'Arterius (United Kingdom)'),
(79197, 65976, 'en', 'name', 'Bioregional'),
(79198, 65977, 'no_lang_code', 'name', 'Allford Hall Monaghan Morris (United Kingdom)'),
(79199, 65978, 'no_lang_code', 'name', 'Artworks Cymru'),
(79200, 65979, 'no_lang_code', 'name', 'Walgreens Boots Alliance (United Kingdom)'),
(79201, 65980, 'no_lang_code', 'name', 'BIPVco (United Kingdom)'),
(79202, 65981, 'no_lang_code', 'name', 'Activ8rlives (United Kingdom)'),
(79203, 65982, 'no_lang_code', 'name', 'ALP Technologies (United Kingdom)'),
(79204, 65983, 'en', 'name', 'Bishop Simeon Trust'),
(79205, 65984, 'en', 'name', 'Bishopsgate Institute'),
(79206, 65985, 'no_lang_code', 'name', 'AlphaFox Systems (United Kingdom)'),
(79207, 65986, 'en', 'name', 'Black Cultural Archives'),
(79208, 65987, 'en', 'name', 'Blackpool Council'),
(79209, 65988, 'es', 'name', 'Asociación de Comunidades Forestales de Peten'),
(79210, 65989, 'no_lang_code', 'name', 'Bladon Jets (United Kingdom)'),
(79211, 65990, 'no_lang_code', 'name', 'Bleepbleeps (United Kingdom)'),
(79212, 65991, 'no_lang_code', 'name', 'Blendology (United Kingdom)'),
(79213, 65992, 'no_lang_code', 'name', 'Block Dox (United Kingdom)'),
(79214, 65993, 'no_lang_code', 'name', 'Bloodaxe Books (United Kingdom)'),
(79215, 65994, 'no_lang_code', 'name', 'Assist Mi (United Kingdom)'),
(79216, 65995, 'no_lang_code', 'name', 'Thermionix Energy (United Kingdom)'),
(79217, 65996, 'no_lang_code', 'name', 'BNP Paribas (United Kingdom)'),
(79218, 65997, 'en', 'name', 'Rail Delivery Group'),
(79219, 65998, 'no_lang_code', 'name', 'Bodle Technologies (United Kingdom)'),
(79220, 65999, 'no_lang_code', 'name', 'Jaywing (United Kingdom)'),
(79221, 66000, 'en', 'name', 'Partnerships in Environmental Management for the Seas of East Asia'),
(79222, 66001, 'en', 'name', 'Pembina Institute'),
(79223, 66002, 'en', 'name', 'Association for Language Learning'),
(79224, 66003, 'fr', 'name', 'Conseil des AcadƩmies Canadiennes'),
(79225, 66003, 'en', 'name', 'Council of Canadian Academies'),
(79226, 66004, 'en', 'name', 'Association for Nutrition'),
(79227, 66005, 'en', 'name', 'Association of Independent Museums'),
(79228, 66006, 'en', 'name', 'Canal and River Trust'),
(79229, 66007, 'en', 'name', 'The Rivers Trust'),
(79230, 66008, 'en', 'name', 'Growth Networks Uganda'),
(79231, 66009, 'no_lang_code', 'name', 'CeGaT (Germany)'),
(79232, 66010, 'en', 'name', 'Centre for Innovation Excellence in Livestock'),
(79233, 66011, 'en', 'name', 'Centre for Sustainable Healthcare'),
(79234, 66012, 'cy', 'name', 'Amgueddfa Ceredigion'),
(79235, 66012, 'en', 'name', 'Ceredigion Museum'),
(79236, 66013, 'no_lang_code', 'name', 'Aston Particle Technologies (United Kingdom)'),
(79237, 66014, 'no_lang_code', 'name', 'Astrimmune (United Kingdom)'),
(79238, 66015, 'no_lang_code', 'name', 'Clinipace (South Korea)'),
(79239, 66016, 'no_lang_code', 'name', 'ATDBio (United Kingdom)'),
(79240, 66017, 'no_lang_code', 'name', 'ATG UV Technology (United Kingdom)'),
(79241, 66018, 'en', 'name', 'BiofoodCRO (South Korea)'),
(79242, 66018, 'ko', 'name', 'ė°”ģ“ģ˜¤ķ‘øė“œ CRO'),
(79243, 66019, 'en', 'name', 'Alba Trees'),
(79244, 66020, 'en', 'name', 'Auckland Castle Trust'),
(79245, 66021, 'no_lang_code', 'name', 'Atlantis Resources (United Kingdom)'),
(79246, 66022, 'no_lang_code', 'name', 'Ceva Animal Health (United Kingdom)'),
(79247, 66023, 'en', 'name', 'Centre for Modelling & Simulation'),
(79248, 66024, 'no_lang_code', 'name', 'Chain Biotechnology (United Kingdom)'),
(79249, 66025, 'no_lang_code', 'name', 'Canary Wharf Group (United Kingdom)'),
(79250, 66026, 'no_lang_code', 'name', 'Change of Paradigm (United Kingdom)'),
(79251, 66027, 'en', 'name', 'Charity Commission for England and Wales'),
(79252, 66028, 'no_lang_code', 'name', 'Canberra (United Kingdom)'),
(79253, 66029, 'en', 'name', 'Charnwood Arts'),
(79254, 66030, 'en', 'name', 'GAM Investments'),
(79255, 66031, 'no_lang_code', 'name', 'Speechmatics (United Kingdom)'),
(79256, 66032, 'en', 'name', 'Canterbury City Council'),
(79257, 66033, 'en', 'name', 'Capital Enterprise'),
(79258, 66034, 'en', 'name', 'Carbon Capture & Storage Association'),
(79259, 66035, 'cy', 'name', 'Amgueddfa Stori Caerdydd'),
(79260, 66035, 'en', 'name', 'Cardiff Story Museum'),
(79261, 66036, 'no_lang_code', 'name', 'Cardiocity (United Kingdom)'),
(79262, 66037, 'no_lang_code', 'name', 'Chemoxy (United Kingdom)'),
(79263, 66038, 'en', 'name', 'Cardiff West Community High School'),
(79264, 66039, 'en', 'name', 'The Indonesian Institute, Center for Public Policy Research'),
(79265, 66040, 'en', 'name', 'Cheshire West and Chester'),
(79266, 66041, 'en', 'name', 'Care International'),
(79267, 66042, 'no_lang_code', 'name', 'Chevron (United Kingdom)'),
(79268, 66043, 'no_lang_code', 'name', 'Chiaro (United Kingdom)'),
(79269, 66044, 'en', 'name', 'Children in Scotland'),
(79270, 66045, 'no_lang_code', 'name', 'Citi Logik (United Kingdom)'),
(79271, 66046, 'no_lang_code', 'name', 'Cartap (United Kingdom)'),
(79272, 66047, 'no_lang_code', 'name', 'Clean Energy Prospector (United Kingdom)'),
(79273, 66048, 'no_lang_code', 'name', 'Cascoda (United Kingdom)'),
(79274, 66049, 'no_lang_code', 'name', 'Cast Metals Federation (United Kingdom)'),
(79275, 66050, 'no_lang_code', 'name', 'Clear Water Revival (United Kingdom)'),
(79276, 66051, 'no_lang_code', 'name', 'Cargill (Belgium)'),
(79277, 66052, 'no_lang_code', 'name', 'Tyson Foods (United Kingdom)'),
(79278, 66053, 'en', 'name', 'Castlefield Gallery'),
(79279, 66054, 'no_lang_code', 'name', 'CoControl (United Kingdom)'),
(79280, 66055, 'no_lang_code', 'name', 'Cojac (United Kingdom)'),
(79281, 66056, 'no_lang_code', 'name', 'CatScI (United Kingdom)'),
(79282, 66057, 'fr', 'name', 'ComitƩ Champagne'),
(79283, 66058, 'no_lang_code', 'name', 'CAV Advanced Technologies (United Kingdom)'),
(79284, 66059, 'en', 'name', 'Commonwealth Secretariat'),
(79285, 66060, 'no_lang_code', 'name', 'Alvant (United Kingdom)'),
(79286, 66061, 'no_lang_code', 'name', 'CCm Technologies (United Kingdom)'),
(79287, 66062, 'no_lang_code', 'name', 'Celbius (United Kingdom)'),
(79288, 66063, 'no_lang_code', 'name', 'Chromacity (United Kingdom)'),
(79289, 66064, 'no_lang_code', 'name', 'Cell Guidance Systems (United Kingdom)'),
(79290, 66065, 'no_lang_code', 'name', 'ValiRx (United Kingdom)'),
(79291, 66066, 'no_lang_code', 'name', 'Cellucomp (United Kingdom)'),
(79292, 66067, 'no_lang_code', 'name', 'Chrysalis Health & Beauty (United Kingdom)'),
(79293, 66068, 'no_lang_code', 'name', 'Cellular Therapeutics (United Kingdom)'),
(79294, 66069, 'en', 'name', 'Church of England'),
(79295, 66070, 'no_lang_code', 'name', 'Compound Semiconductor Centre (United Kingdom)'),
(79296, 66071, 'en', 'name', 'Concern Worldwide UK'),
(79297, 66072, 'no_lang_code', 'name', 'Boeing (United Kingdom)'),
(79298, 66073, 'es', 'name', 'Consorcio para el Desarrollo Sostenible de la Ecoregión Andina'),
(79299, 66073, 'en', 'name', 'Consortium for Sustainable Development of the Andean Ecoregion'),
(79300, 66074, 'no_lang_code', 'name', 'CMCL Innovations (United Kingdom)'),
(79301, 66075, 'no_lang_code', 'name', 'CN Bio Innovations (United Kingdom)'),
(79302, 66076, 'no_lang_code', 'name', 'CNR Services International (United Kingdom)'),
(79303, 66077, 'no_lang_code', 'name', 'Constellium (France)'),
(79304, 66078, 'en', 'name', 'Coast to Capital'),
(79305, 66079, 'en', 'name', 'Construction Industry Council'),
(79306, 66080, 'en', 'name', 'Lloyd''s Maritime Academy'),
(79307, 66081, 'en', 'name', 'Contact Theatre');
INSERT INTO `ror_settings` VALUES
(79308, 66082, 'no_lang_code', 'name', 'Contamac (United Kingdom)'),
(79309, 66083, 'en', 'name', 'Bradford District Care NHS Foundation Trust'),
(79310, 66084, 'no_lang_code', 'name', 'CGA Simulations (United Kingdom)'),
(79311, 66085, 'no_lang_code', 'name', 'Brainomix (United Kingdom)'),
(79312, 66086, 'no_lang_code', 'name', 'Corium Solutions (United Kingdom)'),
(79313, 66087, 'en', 'name', 'Creative Carbon Scotland'),
(79314, 66088, 'no_lang_code', 'name', 'Bramble Energy (United Kingdom)'),
(79315, 66089, 'no_lang_code', 'name', 'Creative Concern (United Kingdom)'),
(79316, 66090, 'en', 'name', 'Breast Cancer Care'),
(79317, 66091, 'no_lang_code', 'name', 'Covnetics (United Kingdom)'),
(79318, 66092, 'no_lang_code', 'name', 'Breathing Buildings (United Kingdom)'),
(79319, 66093, 'no_lang_code', 'name', 'CreaPhys (Germany)'),
(79320, 66094, 'no_lang_code', 'name', 'Critical Solutions International (United States)'),
(79321, 66095, 'en', 'name', 'Bristol and Bath Science Park'),
(79322, 66096, 'no_lang_code', 'name', 'CrystecPharma (United Kingdom)'),
(79323, 66097, 'en', 'name', 'Bristol Museum & Art Gallery'),
(79324, 66098, 'no_lang_code', 'name', 'C-Tex (United Kingdom)'),
(79325, 66099, 'en', 'name', 'Natura Foundation'),
(79326, 66100, 'pt', 'name', 'CSEM'),
(79327, 66101, 'en', 'name', 'Helmholtz Institute for RNA-based Infection Research'),
(79328, 66101, 'de', 'name', 'Helmholtz-Institut für RNA-basierte Infektionsforschung'),
(79329, 66102, 'en', 'name', 'Cultural Enterprise Office'),
(79330, 66103, 'en', 'name', 'Bristol Green Capital Partnership'),
(79331, 66104, 'en', 'name', 'Croft Additive Manufacturing'),
(79332, 66105, 'no_lang_code', 'name', 'Cutting & Wear (United Kingdom)'),
(79333, 66106, 'en', 'name', 'Crop Health and Protection'),
(79334, 66107, 'en', 'name', 'Bristol Health Partners'),
(79335, 66108, 'en', 'name', 'Bristol Hospitality Network'),
(79336, 66109, 'no_lang_code', 'name', 'Cypralis (United Kingdom)'),
(79337, 66110, 'no_lang_code', 'name', 'Crossword Cybersecurity (United Kingdom)'),
(79338, 66111, 'en', 'name', 'Bristol Natural History Consortium'),
(79339, 66112, 'en', 'name', 'Bristol Robotics Laboratory'),
(79340, 66113, 'en', 'name', 'Crown Prosecution Service'),
(79341, 66114, 'no_lang_code', 'name', 'D-RisQ (United Kingdom)'),
(79342, 66115, 'no_lang_code', 'name', 'Crypta Labs (United Kingdom)'),
(79343, 66116, 'no_lang_code', 'name', 'D2NA (United Kingdom)'),
(79344, 66117, 'no_lang_code', 'name', 'Bristol Water (United Kingdom)'),
(79345, 66118, 'en', 'name', 'Department for Work and Pensions'),
(79346, 66119, 'no_lang_code', 'name', 'Daden (United Kingdom)'),
(79347, 66120, 'en', 'name', 'Derby Museums'),
(79348, 66121, 'en', 'name', 'Derbyshire County Council'),
(79349, 66122, 'en', 'name', 'The Design Museum'),
(79350, 66123, 'en', 'name', 'Sci-Tech Daresbury'),
(79351, 66124, 'en', 'name', 'British Cycling'),
(79352, 66125, 'no_lang_code', 'name', 'DCC Health & Beauty Solutions'),
(79353, 66126, 'no_lang_code', 'name', 'Desktop Genetics (United Kingdom)'),
(79354, 66127, 'en', 'name', 'Devon Guild of Craftsmen'),
(79355, 66128, 'no_lang_code', 'name', 'British Glass'),
(79356, 66129, 'no_lang_code', 'name', 'DataTalk (United Kingdom)'),
(79357, 66130, 'no_lang_code', 'name', 'Devro (United Kingdom)'),
(79358, 66131, 'no_lang_code', 'name', 'Diagnostic Sonar (United Kingdom)'),
(79359, 66132, 'no_lang_code', 'name', 'Diagnostics for the Real World (United Kingdom)'),
(79360, 66133, 'no_lang_code', 'name', 'Diamond Photofoil (United Kingdom)'),
(79361, 66134, 'no_lang_code', 'name', 'British Precast (United Kingdom)'),
(79362, 66135, 'no_lang_code', 'name', 'Digital Catapult (United Kingdom)'),
(79363, 66136, 'en', 'name', 'British Water'),
(79364, 66137, 'no_lang_code', 'name', 'Brother International (United Kingdom)'),
(79365, 66138, 'en', 'name', 'Powys Dance'),
(79366, 66139, 'no_lang_code', 'name', 'Dimensional Imaging (United Kingdom)'),
(79367, 66140, 'no_lang_code', 'name', 'Bryant Symons Technologies (United Kingdom)'),
(79368, 66141, 'en', 'name', 'Decom North Sea'),
(79369, 66142, 'no_lang_code', 'name', 'DIPEx International (United Kingdom)'),
(79370, 66143, 'no_lang_code', 'name', 'DNA Electronics (United Kingdom)'),
(79371, 66144, 'no_lang_code', 'name', 'Domino (United Kingdom)'),
(79372, 66145, 'en', 'name', 'Buglife'),
(79373, 66146, 'en', 'name', 'Doncaster Council'),
(79374, 66147, 'no_lang_code', 'name', 'Doncasters (United Kingdom)'),
(79375, 66148, 'no_lang_code', 'name', 'Delta Motorsport (United Kingdom)'),
(79376, 66149, 'no_lang_code', 'name', 'Bullion Tech (United Kingdom)'),
(79377, 66150, 'no_lang_code', 'name', 'Dem Dx (United Kingdom)'),
(79378, 66151, 'en', 'name', 'Business in the Community'),
(79379, 66152, 'en', 'name', 'Business West'),
(79380, 66153, 'en', 'name', 'Democracy Center'),
(79381, 66154, 'en', 'name', 'Buxton Festival'),
(79382, 66155, 'en', 'name', 'Drake Music'),
(79383, 66156, 'no_lang_code', 'name', 'Byotrol (United Kingdom)'),
(79384, 66157, 'no_lang_code', 'name', 'Drax (United Kingdom)'),
(79385, 66158, 'no_lang_code', 'name', 'DRD Power (United Kingdom)'),
(79386, 66159, 'no_lang_code', 'name', 'C4 Carbides (United Kingdom)'),
(79387, 66160, 'en', 'name', 'CAG Consultants'),
(79388, 66161, 'no_lang_code', 'name', 'DSV (United Kingdom)'),
(79389, 66162, 'no_lang_code', 'name', 'Calon Cardio (United Kingdom)'),
(79390, 66163, 'no_lang_code', 'name', 'GridDuck (United Kingdom)'),
(79391, 66164, 'en', 'name', 'Dundee Contemporary Arts'),
(79392, 66165, 'en', 'name', 'Durham Cathedral'),
(79393, 66166, 'no_lang_code', 'name', 'Dycotec Materials (United Kingdom)'),
(79394, 66167, 'no_lang_code', 'name', 'Dynamic Imaging (United Kingdom)'),
(79395, 66168, 'en', 'name', 'Cancer Research UK Cambridge Center'),
(79396, 66169, 'en', 'name', 'Esoterix'),
(79397, 66170, 'no_lang_code', 'name', 'ESP Technology (United Kingdom)'),
(79398, 66171, 'no_lang_code', 'name', 'Cambridge Carbon Capture (United Kingdom)'),
(79399, 66172, 'no_lang_code', 'name', 'AMS (United Kingdom)'),
(79400, 66173, 'no_lang_code', 'name', 'E4tech (United Kingdom)'),
(79401, 66174, 'en', 'name', 'Estorick Collection of Modern Italian Art'),
(79402, 66175, 'no_lang_code', 'name', 'Eagle Genomics (United Kingdom)'),
(79403, 66176, 'en', 'name', 'Cambridge Curiosity and Imagination'),
(79404, 66177, 'en', 'name', 'Early Intervention Foundation'),
(79405, 66178, 'en', 'name', 'East Ayrshire Council'),
(79406, 66179, 'no_lang_code', 'name', 'Cambridge Reactor Design (United Kingdom)'),
(79407, 66180, 'en', 'name', 'East Belfast Mission'),
(79408, 66181, 'en', 'name', 'EastSide Partnership'),
(79409, 66182, 'en', 'name', 'Cambridge Housing Society'),
(79410, 66183, 'en', 'name', 'Medilink East Midlands'),
(79411, 66184, 'en', 'name', 'East Renfrewshire Council'),
(79412, 66185, 'en', 'name', 'European and American Osteosarcoma Study Group'),
(79413, 66186, 'en', 'name', 'East Sussex County Council'),
(79414, 66187, 'en', 'name', 'E-Car Club'),
(79415, 66188, 'no_lang_code', 'name', 'Cambridge Microelectronics (United Kingdom)'),
(79416, 66189, 'no_lang_code', 'name', 'Eclipse Research Consultants (United Kingdom)'),
(79417, 66190, 'no_lang_code', 'name', 'Cambridge Nanolitic (United Kingdom)'),
(79418, 66191, 'no_lang_code', 'name', 'Handley Heating Services (United Kingdom)'),
(79419, 66192, 'en', 'name', 'European Coil Coating Association'),
(79420, 66193, 'en', 'name', 'European Energy Research Alliance'),
(79421, 66193, 'nl', 'name', 'Europese Alliantie voor Energieonderzoek'),
(79422, 66194, 'no_lang_code', 'name', 'Cambridge Nanotherm (United Kingdom)'),
(79423, 66195, 'no_lang_code', 'name', 'Ecometrica (United Kingdom)'),
(79424, 66196, 'en', 'name', 'Cambridgeshire County Council'),
(79425, 66197, 'no_lang_code', 'name', 'Econotherm (United Kingdom)'),
(79426, 66198, 'en', 'name', 'European Marine Energy Centre'),
(79427, 66199, 'no_lang_code', 'name', 'Farm Energy and Control Services (United Kingdom)'),
(79428, 66200, 'no_lang_code', 'name', 'eCountability (United Kingdom)'),
(79429, 66201, 'no_lang_code', 'name', 'GaitSmart (United Kingdom)'),
(79430, 66202, 'no_lang_code', 'name', 'eCow Devon (United Kingdom)'),
(79431, 66203, 'no_lang_code', 'name', 'Edelman (United Kingdom)'),
(79432, 66204, 'en', 'name', 'Farming & Wildlife Advisory Group'),
(79433, 66205, 'en', 'name', 'The Eden Rivers Trust'),
(79434, 66206, 'no_lang_code', 'name', 'Eutechnyx (United Kingdom)'),
(79435, 66207, 'en', 'name', 'Evaluation Support Scotland'),
(79436, 66208, 'en', 'name', 'Avon Wildlife Trust'),
(79437, 66209, 'no_lang_code', 'name', 'ffei (United Kingdom)'),
(79438, 66210, 'no_lang_code', 'name', 'Fibercore (United Kingdom)'),
(79439, 66211, 'no_lang_code', 'name', 'Fiberight (United Kingdom)'),
(79440, 66212, 'no_lang_code', 'name', 'ColVisTec (Germany)'),
(79441, 66213, 'no_lang_code', 'name', 'eLearning Studios (United Kingdom)'),
(79442, 66214, 'en', 'name', 'Eversole Associates'),
(79443, 66215, 'no_lang_code', 'name', 'Electricity North West (United Kingdom)'),
(79444, 66216, 'no_lang_code', 'name', 'Electricity Storage Network (United Kingdom)'),
(79445, 66217, 'no_lang_code', 'name', 'Electrosonic (United Kingdom)'),
(79446, 66218, 'no_lang_code', 'name', 'Evonik (Switzerland)'),
(79447, 66219, 'no_lang_code', 'name', 'Exagenica (United Kingdom)'),
(79448, 66220, 'no_lang_code', 'name', 'ELG Carbon Fibre (United Kingdom)'),
(79449, 66221, 'no_lang_code', 'name', 'Excivion (United Kingdom)'),
(79450, 66222, 'en', 'name', 'Financial Conduct Authority'),
(79451, 66223, 'en', 'name', 'Exemplar Associates'),
(79452, 66224, 'no_lang_code', 'name', 'Exosect Enabling Technologies'),
(79453, 66225, 'no_lang_code', 'name', 'Elisha Systems (United Kingdom)'),
(79454, 66226, 'no_lang_code', 'name', 'Elite Antennas (United Kingdom)'),
(79455, 66227, 'no_lang_code', 'name', 'Expedition (United Kingdom)'),
(79456, 66228, 'no_lang_code', 'name', 'Firesouls (United Kingdom)'),
(79457, 66229, 'no_lang_code', 'name', 'Exploristics (United Kingdom)'),
(79458, 66230, 'en', 'name', 'Embody Orthopaedic'),
(79459, 66231, 'no_lang_code', 'name', 'ExpreS2ion Biotechnologies (Denmark)'),
(79460, 66232, 'no_lang_code', 'name', 'Emotech (United Kingdom)'),
(79461, 66233, 'no_lang_code', 'name', 'Arconic (United Kingdom)'),
(79462, 66234, 'no_lang_code', 'name', 'Fanuc (United Kingdom)'),
(79463, 66235, 'no_lang_code', 'name', 'Encounters Arts (United Kingdom)'),
(79464, 66236, 'en', 'name', 'Fischer Family Trust'),
(79465, 66237, 'en', 'name', 'FAO/IAEA Agriculture and Biotechnology Laboratories'),
(79466, 66238, 'en', 'name', 'Energy Networks Association'),
(79467, 66239, 'no_lang_code', 'name', 'Far (United Kingdom)'),
(79468, 66240, 'en', 'name', 'Energy Research Partnership'),
(79469, 66241, 'en', 'name', 'Flatpack Film Festival'),
(79470, 66242, 'en', 'name', 'Energy Systems Catapult'),
(79471, 66243, 'no_lang_code', 'name', 'Energy Transitions (United Kingdom)'),
(79472, 66244, 'en', 'name', 'Genomics England'),
(79473, 66245, 'no_lang_code', 'name', 'GeoCento (United Kingdom)'),
(79474, 66246, 'no_lang_code', 'name', 'Geo Green Power (United Kingdom)'),
(79475, 66247, 'no_lang_code', 'name', 'Geolang (United Kingdom)'),
(79476, 66248, 'no_lang_code', 'name', 'Flock (United Kingdom)'),
(79477, 66249, 'no_lang_code', 'name', 'Entropea Labs (United Kingdom)'),
(79478, 66250, 'no_lang_code', 'name', 'Flowgroup (United Kingdom)'),
(79479, 66251, 'no_lang_code', 'name', 'Geomatic Ventures (United Kingdom)'),
(79480, 66252, 'no_lang_code', 'name', 'Environmental Monitoring Solutions (United Kingdom)'),
(79481, 66253, 'no_lang_code', 'name', 'Environmental Process Systems (United Kingdom)'),
(79482, 66254, 'no_lang_code', 'name', 'Enza Zaden (Netherlands)'),
(79483, 66255, 'no_lang_code', 'name', 'Eozone Group (United Kingdom)'),
(79484, 66256, 'no_lang_code', 'name', 'Emteq (United Kingdom)'),
(79485, 66257, 'no_lang_code', 'name', 'Epicardio (United Kingdom)'),
(79486, 66258, 'en', 'name', 'Equality and Human Rights Commission'),
(79487, 66259, 'no_lang_code', 'name', 'Focus Innovation (United Kingdom)'),
(79488, 66260, 'no_lang_code', 'name', 'Getech (United Kingdom)'),
(79489, 66261, 'no_lang_code', 'name', 'FlyingBinary (United Kingdom)'),
(79490, 66262, 'en', 'name', 'Man Up Campaign'),
(79491, 66263, 'no_lang_code', 'name', 'Folium Optics (United Kingdom)'),
(79492, 66264, 'no_lang_code', 'name', 'Equipe Group (United Kingdom)'),
(79493, 66265, 'no_lang_code', 'name', 'Equipmake (United Kingdom)'),
(79494, 66266, 'en', 'name', 'Food Standards Scotland'),
(79495, 66266, 'gd', 'name', 'Inbhe-Bidhe Alba'),
(79496, 66267, 'no_lang_code', 'name', 'HEL Group (United Kingdom)'),
(79497, 66268, 'no_lang_code', 'name', 'Helia Photonics (United Kingdom)'),
(79498, 66269, 'en', 'name', 'HelpAge International'),
(79499, 66270, 'en', 'name', 'Glamorgan Archives'),
(79500, 66271, 'en', 'name', 'Glasgow Housing Association'),
(79501, 66272, 'no_lang_code', 'name', 'Forge (United Kingdom)'),
(79502, 66273, 'no_lang_code', 'name', 'Hiflux (United Kingdom)'),
(79503, 66274, 'en', 'name', 'High Peak Community Arts'),
(79504, 66275, 'no_lang_code', 'name', 'Encirc (United Kingdom)'),
(79505, 66276, 'en', 'name', 'Glass-House Community Led Design'),
(79506, 66277, 'en', 'name', 'Foundation for Art and Creative Technology'),
(79507, 66278, 'no_lang_code', 'name', 'GlenDimplex (United Kingdom)'),
(79508, 66279, 'en', 'name', 'Frank P Matthews'),
(79509, 66280, 'no_lang_code', 'name', 'Highway Resource Solutions (United Kingdom)'),
(79510, 66281, 'no_lang_code', 'name', 'HiLight Semiconductor (United Kingdom)'),
(79511, 66282, 'en', 'name', 'Historians Against Slavery'),
(79512, 66283, 'no_lang_code', 'name', 'Historic Futures (United Kingdom)'),
(79513, 66284, 'en', 'name', 'The Heritage Alliance'),
(79514, 66285, 'en', 'name', 'Freshfields Bruckhaus Deringer'),
(79515, 66286, 'en', 'name', 'Historical Association'),
(79516, 66287, 'no_lang_code', 'name', 'Fripp Design (United Kingdom)'),
(79517, 66288, 'en', 'name', 'Frontline Dance'),
(79518, 66289, 'no_lang_code', 'name', 'Housing Quality Network (United Kingdom)'),
(79519, 66290, 'en', 'name', 'Full Fact'),
(79520, 66291, 'en', 'name', 'Gloucestershire Guild of Craftsmen'),
(79521, 66292, 'no_lang_code', 'name', 'Hubbard Products (United Kingdom)'),
(79522, 66293, 'en', 'name', 'PTEN Hamartoma Tumor Syndrome Foundation'),
(79523, 66294, 'en', 'name', 'Hull History Centre'),
(79524, 66295, 'no_lang_code', 'name', 'Fusion Innovations (United Kingdom)'),
(79525, 66296, 'en', 'name', 'Future Transport Systems'),
(79526, 66297, 'no_lang_code', 'name', 'Vir Biotechnology (Switzerland)'),
(79527, 66298, 'en', 'name', 'The Hunterian'),
(79528, 66299, 'no_lang_code', 'name', 'Futuregov (United Kingdom)'),
(79529, 66300, 'no_lang_code', 'name', 'Hy-Line (United States)'),
(79530, 66301, 'no_lang_code', 'name', 'Hybrid Air Vehicles (United Kingdom)'),
(79531, 66302, 'no_lang_code', 'name', 'Hybrid Instruments (United Kingdom)'),
(79532, 66303, 'no_lang_code', 'name', 'G-Volution (United Kingdom)'),
(79533, 66304, 'no_lang_code', 'name', 'Arcadis (United Kingdom)'),
(79534, 66305, 'no_lang_code', 'name', 'G''s Fresh (United Kingdom)'),
(79535, 66306, 'en', 'name', 'Gama (United Kingdom)'),
(79536, 66307, 'no_lang_code', 'name', 'Gnosys (United Kingdom)'),
(79537, 66308, 'en', 'name', 'GBS Leiden'),
(79538, 66309, 'no_lang_code', 'name', 'Hypha Discovery (United Kingdom)'),
(79539, 66310, 'no_lang_code', 'name', 'Good Homes Alliance (United Kingdom)'),
(79540, 66311, 'no_lang_code', 'name', 'i3D Robotics (United Kingdom)'),
(79541, 66312, 'en', 'name', 'Gateshead Council'),
(79542, 66313, 'no_lang_code', 'name', 'Ibex Innovations (United Kingdom)'),
(79543, 66314, 'no_lang_code', 'name', 'Goodwin (United Kingdom)'),
(79544, 66315, 'no_lang_code', 'name', 'Google (United Kingdom)'),
(79545, 66316, 'no_lang_code', 'name', 'Icax (United Kingdom)'),
(79546, 66317, 'no_lang_code', 'name', 'Innovative Cryogenic Engineering (United Kingdom)'),
(79547, 66318, 'no_lang_code', 'name', 'Gateway (United Kingdom)'),
(79548, 66319, 'fr', 'name', 'Gouvernement de Maurice'),
(79549, 66319, 'en', 'name', 'Government of Mauritius'),
(79550, 66320, 'en', 'name', 'Government of the Philippines'),
(79551, 66321, 'en', 'name', 'International Foundation for Integrated Care'),
(79552, 66322, 'no_lang_code', 'name', 'Gelexir Healthcare (United Kingdom)'),
(79553, 66323, 'no_lang_code', 'name', 'Igeolise (United Kingdom)'),
(79554, 66324, 'no_lang_code', 'name', 'Hypetex (United Kingdom)'),
(79555, 66325, 'en', 'name', 'Gem Arts'),
(79556, 66326, 'en', 'name', 'Ikon Gallery'),
(79557, 66327, 'no_lang_code', 'name', 'Graphitene (United Kingdom)'),
(79558, 66328, 'no_lang_code', 'name', 'Gravitricity (United Kingdom)'),
(79559, 66329, 'no_lang_code', 'name', 'Boris FX (United Kingdom)'),
(79560, 66330, 'no_lang_code', 'name', 'General Mills (United Kingdom)'),
(79561, 66331, 'no_lang_code', 'name', 'Invicro (United Kingdom)'),
(79562, 66332, 'no_lang_code', 'name', 'Immaterial Labs (United Kingdom)'),
(79563, 66333, 'no_lang_code', 'name', 'Impact Solutions (United Kingdom)'),
(79564, 66334, 'no_lang_code', 'name', 'Impression Technologies (United Kingdom)'),
(79565, 66335, 'en', 'name', 'Improvement Service'),
(79566, 66336, 'en', 'name', 'Genetic Factors for Osteoporosis Consortium'),
(79567, 66337, 'no_lang_code', 'name', 'Avatr (United Kingdom)'),
(79568, 66338, 'no_lang_code', 'name', 'Inca Digital Printers (United Kingdom)'),
(79569, 66339, 'en', 'name', 'International Neuroinformatics Coordinating Facility'),
(79570, 66340, 'no_lang_code', 'name', 'Industrial Light & Magic (United Kingdom)'),
(79571, 66341, 'no_lang_code', 'name', 'Industrial Phycology (United Kingdom)'),
(79572, 66342, 'no_lang_code', 'name', 'Oxford Drug Design (United Kingdom)'),
(79573, 66343, 'no_lang_code', 'name', 'Coventry (United Kingdom)'),
(79574, 66344, 'en', 'name', 'Greater Shankill Partnership'),
(79575, 66345, 'en', 'name', 'Green Alliance'),
(79576, 66346, 'no_lang_code', 'name', 'It’s Fresh (United Kingdom)'),
(79577, 66347, 'no_lang_code', 'name', 'Inspection Technologies (United Kingdom)'),
(79578, 66348, 'no_lang_code', 'name', 'iThera Medical (Germany)'),
(79579, 66349, 'no_lang_code', 'name', 'Green Running (United Kingdom)'),
(79580, 66350, 'en', 'name', 'Inspiring Scotland'),
(79581, 66351, 'no_lang_code', 'name', 'Socotec (United Kingdom)'),
(79582, 66352, 'no_lang_code', 'name', 'Greengineering (United Kingdom)'),
(79583, 66353, 'no_lang_code', 'name', 'ITS (United Kingdom)'),
(79584, 66354, 'no_lang_code', 'name', 'Sweco (United Kingdom)'),
(79585, 66355, 'en', 'name', 'J.P. Morgan'),
(79586, 66356, 'no_lang_code', 'name', 'Jasco (United Kingdom)'),
(79587, 66357, 'en', 'name', 'Jason Burges Studio'),
(79588, 66358, 'en', 'name', 'Center for Beta Cell Therapy in Diabetes'),
(79589, 66359, 'no_lang_code', 'name', 'GyroGear (United Kingdom)'),
(79590, 66360, 'no_lang_code', 'name', 'Jellagen (United Kingdom)'),
(79591, 66361, 'no_lang_code', 'name', 'Jellybooks (United Kingdom)'),
(79592, 66362, 'no_lang_code', 'name', 'Hutchinson (United Kingdom)'),
(79593, 66363, 'en', 'name', 'John Dora Consulting'),
(79594, 66364, 'en', 'name', 'Creative Wick'),
(79595, 66365, 'no_lang_code', 'name', 'Johnson Matthey Battery Systems (United Kingdom)'),
(79596, 66366, 'no_lang_code', 'name', 'Intelligent Health (United Kingdom)'),
(79597, 66367, 'no_lang_code', 'name', 'IntelliHep (United Kingdom)'),
(79598, 66368, 'no_lang_code', 'name', 'Haemair (United Kingdom)'),
(79599, 66369, 'no_lang_code', 'name', 'JSR Farming (United Kingdom)'),
(79600, 66370, 'no_lang_code', 'name', 'Interactive Scientific (United Kingdom)'),
(79601, 66371, 'en', 'name', 'Hampshire Constabulary'),
(79602, 66372, 'no_lang_code', 'name', 'Hyperdrive Innovation (United Kingdom)'),
(79603, 66373, 'en', 'name', 'JustGiving'),
(79604, 66374, 'no_lang_code', 'name', 'InterDigital (United Kingdom)'),
(79605, 66375, 'en', 'name', 'Haringey Council'),
(79606, 66376, 'en', 'name', 'Siobhan Davies Studios'),
(79607, 66377, 'no_lang_code', 'name', 'Indestructible Paint (United Kingdom)'),
(79608, 66378, 'no_lang_code', 'name', 'HealthUnlocked (United Kingdom)'),
(79609, 66379, 'no_lang_code', 'name', 'Kanichi (United Kingdom)'),
(79610, 66380, 'en', 'name', 'International Crisis Group'),
(79611, 66381, 'en', 'name', 'Federation of Environmental Trade Associations'),
(79612, 66382, 'no_lang_code', 'name', 'Karm Research Group (United Kingdom)'),
(79613, 66383, 'no_lang_code', 'name', 'Heathrow Airport Holdings (United Kingdom)'),
(79614, 66384, 'en', 'name', 'International Longevity Centre'),
(79615, 66385, 'no_lang_code', 'name', 'LabGenius (United Kingdom)'),
(79616, 66386, 'no_lang_code', 'name', 'International Moisture Analysers (United Kingdom)'),
(79617, 66387, 'en', 'name', 'Kent and Medway NHS and Social Care Partnership Trust'),
(79618, 66388, 'no_lang_code', 'name', 'Lambda Films (United Kingdom)'),
(79619, 66389, 'en', 'name', 'International Slavery Museum'),
(79620, 66390, 'en', 'name', 'Lancashire Fire and Rescue Service'),
(79621, 66391, 'no_lang_code', 'name', 'Ketonex (United Kingdom)'),
(79622, 66392, 'no_lang_code', 'name', 'Landcatch (United Kingdom)'),
(79623, 66393, 'no_lang_code', 'name', 'Key Organics (United Kingdom)'),
(79624, 66394, 'no_lang_code', 'name', 'Keysight Technologies (United Kingdom)'),
(79625, 66395, 'no_lang_code', 'name', 'Inventya (United Kingdom)'),
(79626, 66396, 'no_lang_code', 'name', 'Larkfleet (United Kingdom)'),
(79627, 66397, 'no_lang_code', 'name', 'Kimal (United Kingdom)'),
(79628, 66398, 'no_lang_code', 'name', 'Laser 2000 (United Kingdom)'),
(79629, 66399, 'no_lang_code', 'name', 'Ionix Advanced Technologies (United Kingdom)'),
(79630, 66400, 'no_lang_code', 'name', 'Novanta (United Kingdom)'),
(79631, 66401, 'no_lang_code', 'name', 'Kingfisher (United Kingdom)'),
(79632, 66402, 'no_lang_code', 'name', 'Ionoptika (United Kingdom)'),
(79633, 66403, 'no_lang_code', 'name', 'Laterit Productions (France)'),
(79634, 66404, 'no_lang_code', 'name', 'KiWi Power (United Kingdom)'),
(79635, 66405, 'no_lang_code', 'name', 'Ionotec (United Kingdom)'),
(79636, 66406, 'no_lang_code', 'name', 'LaVision (United Kingdom)'),
(79637, 66407, 'en', 'name', 'Knowledge Centre for Materials Chemistry'),
(79638, 66408, 'en', 'name', 'Lawn Tennis Association'),
(79639, 66409, 'no_lang_code', 'name', 'Ipsos (United Kingdom)'),
(79640, 66410, 'en', 'name', 'Learning through Landscapes'),
(79641, 66411, 'no_lang_code', 'name', 'Leeds City Region Enterprise Partnership (United Kingdom)'),
(79642, 66412, 'en', 'name', 'West Africa Civil Society Institute'),
(79643, 66413, 'it', 'name', 'I.R.C.C.S. Oasi Maria SS'),
(79644, 66414, 'no_lang_code', 'name', 'Kite Entertainment (Ireland)'),
(79645, 66415, 'en', 'name', 'Lifetime Lab'),
(79646, 66416, 'no_lang_code', 'name', 'Baboro'),
(79647, 66417, 'no_lang_code', 'name', '10X Genomics (United States)'),
(79648, 66418, 'en', 'name', 'Mayo County Council'),
(79649, 66419, 'no_lang_code', 'name', 'Ballyhoura Development (Ireland)'),
(79650, 66420, 'no_lang_code', 'name', 'Mind the Gap Films (Ireland)'),
(79651, 66421, 'ga', 'name', 'Comhairle Contae MhuineachƔin'),
(79652, 66421, 'en', 'name', 'Monaghan County Council'),
(79653, 66422, 'no_lang_code', 'name', 'Brigit''s Garden'),
(79654, 66423, 'no_lang_code', 'name', 'ADGS (Qatar)'),
(79655, 66424, 'en', 'name', 'British Council'),
(79656, 66425, 'no_lang_code', 'name', 'Ocean FM (Ireland)'),
(79657, 66426, 'ga', 'name', 'Comhairle Cathrach ChorcaĆ­'),
(79658, 66426, 'en', 'name', 'Cork City Council'),
(79659, 66427, 'no_lang_code', 'name', 'Rough Magic Theatre (Ireland)'),
(79660, 66428, 'no_lang_code', 'name', 'Agilent Technologies (Switzerland)'),
(79661, 66429, 'en', 'name', 'Blackrock Castle Observatory'),
(79662, 66430, 'no_lang_code', 'name', 'Crossing the Line (Ireland)'),
(79663, 66431, 'ga', 'name', 'Gasóga na hƉireann'),
(79664, 66431, 'en', 'name', 'Scouting Ireland'),
(79665, 66432, 'en', 'name', 'ICS Skills'),
(79666, 66433, 'no_lang_code', 'name', 'Stop. Watch Television (Ireland)'),
(79667, 66434, 'en', 'name', 'Fighting Blindness'),
(79668, 66435, 'en', 'name', 'Cork’s Technology Network'),
(79669, 66436, 'no_lang_code', 'name', 'True Films (Ireland)'),
(79670, 66437, 'no_lang_code', 'name', 'Shinawil (Ireland)'),
(79671, 66438, 'en', 'name', 'Rediscovery Centre'),
(79672, 66439, 'no_lang_code', 'name', 'Tile Films (Ireland)'),
(79673, 66440, 'en', 'name', 'Al Emadi Hospital'),
(79674, 66440, 'ar', 'name', 'مستؓفى Ų§Ł„Ų¹Ł…Ų§ŲÆŁŠ'),
(79675, 66441, 'no_lang_code', 'name', 'Whipsmart Media (Ireland)'),
(79676, 66442, 'en', 'name', 'Al Kawther Secondary Independent School for Girls'),
(79677, 66442, 'ar', 'name', 'Ł…ŲÆŲ±Ų³Ų© Ų§Ł„ŁƒŁˆŲ«Ų± Ų§Ł„Ų«Ų§Ł†ŁˆŁŠŲ© للبنات'),
(79678, 66443, 'en', 'name', 'Galway Education Centre'),
(79679, 66444, 'en', 'name', 'Galway Film Centre'),
(79680, 66445, 'no_lang_code', 'name', 'CoderDojo Foundation'),
(79681, 66446, 'en', 'name', 'I Wish'),
(79682, 66447, 'en', 'name', 'Junior Achievement'),
(79683, 66448, 'en', 'name', 'Kildare Education Centre'),
(79684, 66449, 'no_lang_code', 'name', 'Al Sulaiteen Agricultural & Industrial Complex (Qatar)'),
(79685, 66450, 'en', 'name', 'Doha International Center for Interfaith Dialogue'),
(79686, 66450, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„ŲÆŁˆŲ­Ų© Ų§Ł„ŲÆŁˆŁ„ŁŠ Ł„Ų­ŁˆŲ§Ų± Ų§Ł„Ų£ŲÆŁŠŲ§Ł†'),
(79687, 66451, 'no_lang_code', 'name', 'Al-Wataniya Concrete (Qatar)'),
(79688, 66452, 'no_lang_code', 'name', 'TQ Pharma (Jordan)'),
(79689, 66452, 'ar', 'name', 'ؓركة التقدم للصناعات Ų§Ł„ŲÆŁˆŲ§Ų¦ŁŠŲ©'),
(79690, 66453, 'en', 'name', 'Dr. Humeira Badsha Medical Center'),
(79691, 66454, 'en', 'name', 'American International School in Egypt'),
(79692, 66454, 'ar', 'name', 'المدرسة Ų§Ł„Ų§Ł…Ų±ŁŠŁƒŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(79693, 66455, 'en', 'name', 'American School of Doha'),
(79694, 66455, 'ar', 'name', 'المدرسة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© ŲØŲ§Ł„ŲÆŁˆŲ­Ų©'),
(79695, 66456, 'no_lang_code', 'name', 'Educated Change (United Kingdom)'),
(79696, 66457, 'no_lang_code', 'name', 'Encontech (Netherlands)'),
(79697, 66458, 'no_lang_code', 'name', 'Energy Delivery Solutions (United States)'),
(79698, 66459, 'en', 'name', 'The English Modern School'),
(79699, 66460, 'en', 'name', 'Arab Medical Association Against Cancer'),
(79700, 66460, 'ar', 'name', 'ā€«Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł…ŁƒŲ§ŁŲ­Ų© Ų§Ł„Ų³Ų±Ų·Ų§Ł†ā€¬ā€Ž'),
(79701, 66461, 'no_lang_code', 'name', 'Array Information Technology (United States)'),
(79702, 66462, 'no_lang_code', 'name', 'EpiGear (Australia)'),
(79703, 66463, 'no_lang_code', 'name', 'Ashghal'),
(79704, 66463, 'ar', 'name', 'Ł‡ŁŠŲ¦Ų© الأؓغال العامة'),
(79705, 66464, 'no_lang_code', 'name', 'ExxonMobil (Qatar)'),
(79706, 66464, 'ar', 'name', 'Ų„ŁƒŲ³ŁˆŁ† Ł…ŁˆŲØŁŠŁ„ā€¬ā€Ž'),
(79707, 66465, 'fr', 'name', 'Vlaams Kenniscentrum Water'),
(79708, 66465, 'en', 'name', 'Vlakwa'),
(79709, 66466, 'no_lang_code', 'name', 'Awsaj Academy'),
(79710, 66466, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© أوساج'),
(79711, 66467, 'es', 'name', 'FC Barcelona'),
(79712, 66468, 'no_lang_code', 'name', 'Beth Mardutho'),
(79713, 66469, 'no_lang_code', 'name', 'Informatica Qatar (Qatar)'),
(79714, 66470, 'no_lang_code', 'name', 'Buijs Advice and Consultancy (Netherlands)'),
(79715, 66471, 'en', 'name', 'Cairnmillar Institute'),
(79716, 66472, 'no_lang_code', 'name', 'Cascade Biosystems (United States)'),
(79717, 66473, 'it', 'name', 'Federazione Medico Sportiva Italiana'),
(79718, 66474, 'no_lang_code', 'name', 'Catalytic Innovations (United States)'),
(79719, 66475, 'no_lang_code', 'name', 'CEG International (Qatar)'),
(79720, 66476, 'fr', 'name', 'Centre de Recherche en NumƩrique de Sfax'),
(79721, 66476, 'en', 'name', 'Digital Research Centre of Sfax'),
(79722, 66477, 'no_lang_code', 'name', 'Intel (United Arab Emirates)'),
(79723, 66478, 'en', 'name', 'Centre for Arab Genomic Studies'),
(79724, 66479, 'nl', 'name', 'Intercommunale Waterleidingsmaatschappij van Veurne-Ambacht'),
(79725, 66479, 'no_lang_code', 'name', 'Intermunicipal Water Company of Veurne-Craft (Belgium)'),
(79726, 66480, 'en', 'name', 'International Organisation for Knowledge Economy and Enterprise Development'),
(79727, 66481, 'en', 'name', 'Atlantic Environmental Research Center'),
(79728, 66481, 'es', 'name', 'Centro de Investigaciones Medioambientales del AtlƔntico'),
(79729, 66482, 'no_lang_code', 'name', 'Cogent (United Kingdom)'),
(79730, 66483, 'no_lang_code', 'name', 'Change Agents (Australia)'),
(79731, 66484, 'en', 'name', 'Child Development Center'),
(79732, 66484, 'ar', 'name', 'Ł…Ų±ŁƒŲ² ŲŖŁ†Ł…ŁŠŲ© الأطفال'),
(79733, 66485, 'no_lang_code', 'name', 'Care UK (United Kingdom)'),
(79734, 66486, 'no_lang_code', 'name', 'Cyclone Energy Group (United States)'),
(79735, 66487, 'no_lang_code', 'name', 'Infrastructure Research & Development (Qatar)'),
(79736, 66488, 'no_lang_code', 'name', 'Information Technology for Market Leadership (Greece)'),
(79737, 66489, 'en', 'name', 'Jeddah Institute for Speech and Hearing'),
(79738, 66489, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų¬ŲÆŲ© للنطق ŁˆŲ§Ł„Ų³Ł…Ų¹'),
(79739, 66490, 'no_lang_code', 'name', 'Kahramaa (Qatar)'),
(79740, 66491, 'en', 'name', 'Global Dryland Alliance'),
(79741, 66491, 'ar', 'name', 'التحالف Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠ Ł„Ł„Ų£Ų±Ų§Ų¶ŁŠ الجافة'),
(79742, 66492, 'no_lang_code', 'name', 'Gulf Drilling International (Qatar)'),
(79743, 66493, 'en', 'name', 'King Abdullah Medical City'),
(79744, 66493, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ عبدالله Ų§Ł„Ų·ŲØŁŠŲ©'),
(79745, 66494, 'en', 'name', 'Gulf English School'),
(79746, 66494, 'ar', 'name', 'Ł…ŲÆŲ±Ų³Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ų§Ł„Ų§Ł†Ų¬Ł„ŁŠŲ²ŁŠŁ‡'),
(79747, 66495, 'en', 'name', 'National Museum New Delhi'),
(79748, 66496, 'no_lang_code', 'name', 'Halliburton (Qatar)'),
(79749, 66497, 'no_lang_code', 'name', 'Nectaerra'),
(79750, 66498, 'en', 'name', 'Newton International School'),
(79751, 66499, 'no_lang_code', 'name', 'North Oil Company (Qatar)'),
(79752, 66500, 'en', 'name', 'The North South Institute'),
(79753, 66501, 'no_lang_code', 'name', 'Libra Trading Company (Qatar)'),
(79754, 66502, 'en', 'name', 'Mada Assistive Technology Centre'),
(79755, 66502, 'ar', 'name', 'Ł…Ų±ŁƒŲ² قطر Ł„Ł„ŲŖŁƒŁ†Ł„ŁˆŲ¬ŁŠŲ§ المساعدة مدى'),
(79756, 66503, 'no_lang_code', 'name', 'OBERMEYER Planen + Beraten (Germany)'),
(79757, 66504, 'no_lang_code', 'name', 'Hochtief (Qatar)'),
(79758, 66505, 'no_lang_code', 'name', 'Iberdrola (Qatar)'),
(79759, 66506, 'no_lang_code', 'name', 'Magaza (Qatar)'),
(79760, 66507, 'no_lang_code', 'name', 'Marafeq (Qatar)'),
(79761, 66508, 'no_lang_code', 'name', 'iHorizons (Qatar)'),
(79762, 66509, 'no_lang_code', 'name', 'Occidental Petroleum (Qatar)'),
(79763, 66510, 'en', 'name', 'Office of the Minister of State for Administrative Reform'),
(79764, 66510, 'ar', 'name', 'Ł…ŁƒŲŖŲØ وزير Ų§Ł„ŲÆŁˆŁ„Ų© Ł„Ų“Ų¤ŁˆŁ† Ų§Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ©'),
(79765, 66511, 'en', 'name', 'Ministry of Culture and Sports'),
(79766, 66511, 'ar', 'name', 'وزارة الثقافه ŁˆŲ§Ł„Ų±ŁŠŲ§Ų¶Ł‡'),
(79767, 66512, 'no_lang_code', 'name', 'IDT Biologika (Germany)'),
(79768, 66513, 'no_lang_code', 'name', 'Ooredoo (Qatar)'),
(79769, 66513, 'ar', 'name', 'أوريدو'),
(79770, 66514, 'no_lang_code', 'name', 'Optim Design (United States)'),
(79771, 66515, 'en', 'name', 'Ministry of Public Health'),
(79772, 66515, 'ar', 'name', 'وزارة الصحة العامة'),
(79773, 66516, 'no_lang_code', 'name', 'Oryx Publishing and Advertising (Qatar)'),
(79774, 66517, 'no_lang_code', 'name', 'Qatargas (Qatar)'),
(79775, 66518, 'en', 'name', 'Outreach Scout Foundation'),
(79776, 66519, 'en', 'name', 'Primary Health Care'),
(79777, 66519, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© Ų§Ł„Ų±Ų¹Ų§ŁŠŲ© Ų§Ł„ŲµŲ­ŁŠŲ© Ų§Ł„Ų£ŁˆŁ„ŁŠŲ©'),
(79778, 66520, 'en', 'name', 'Ministry of Transport and Communications'),
(79779, 66520, 'ar', 'name', 'وزارة Ų§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ ŁˆŲ§Ł„Ų§ŲŖŲµŲ§Ł„Ų§ŲŖ- المبنى Ų§Ł„Ų±Ų¦ŁŠŲ³ŁŠ'),
(79780, 66521, 'no_lang_code', 'name', 'MODUS (Qatar)'),
(79781, 66522, 'no_lang_code', 'name', 'Qatar Electricity & Water (Qatar)'),
(79782, 66523, 'en', 'name', 'Prince Mohammad Bin Salman College of Business and Entrepreneurship'),
(79783, 66523, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£Ł…ŁŠŲ± Ł…Ų­Ł…ŲÆ بن سلمان لل؄دارة وريادة الأعمال'),
(79784, 66524, 'no_lang_code', 'name', 'Quest Integrity (New Zealand)'),
(79785, 66525, 'en', 'name', 'National Archives of India'),
(79786, 66526, 'no_lang_code', 'name', 'Sensory (United States)'),
(79787, 66527, 'no_lang_code', 'name', 'Qatalum (Qatar)'),
(79788, 66528, 'tr', 'name', 'TUBITAK BILGEM'),
(79789, 66529, 'no_lang_code', 'name', 'Ukrainian Center of Environmental and Water Projects (Ukraine)'),
(79790, 66530, 'en', 'name', 'Royal Society for Asian Affairs'),
(79791, 66531, 'no_lang_code', 'name', 'Qatar Biobank'),
(79792, 66531, 'ar', 'name', 'قطر ŲØŁŠŁˆŲØŁ†Łƒ'),
(79793, 66532, 'en', 'name', 'Qatar Computer Emergency Response Team'),
(79794, 66533, 'no_lang_code', 'name', 'Construction Development (Qatar)'),
(79795, 66534, 'en', 'name', 'Qatar Financial Centre Authority'),
(79796, 66535, 'no_lang_code', 'name', 'Schlumberger (Qatar)'),
(79797, 66536, 'en', 'name', 'Qatar Green Building Council'),
(79798, 66537, 'no_lang_code', 'name', 'Qatar Mining (Qatar)'),
(79799, 66538, 'no_lang_code', 'name', 'Shafallah Center'),
(79800, 66538, 'ar', 'name', 'Ł…Ų±ŁƒŲ² الؓفلح'),
(79801, 66539, 'en', 'name', 'Qatar Natural History Group'),
(79802, 66540, 'no_lang_code', 'name', 'Vodafone (Qatar)'),
(79803, 66541, 'en', 'name', 'Qatar Olympic Committee'),
(79804, 66541, 'ar', 'name', 'اللجنة Ų§Ł„Ų£ŁˆŁ„Ł…ŲØŁŠŲ© Ų§Ł„Ł‚Ų·Ų±ŁŠŲ©ā€Ž'),
(79805, 66542, 'no_lang_code', 'name', 'Williams (United Kingdom)'),
(79806, 66543, 'en', 'name', 'Wiltshire and Swindon History Centre'),
(79807, 66544, 'no_lang_code', 'name', 'Shell (Qatar)'),
(79808, 66545, 'en', 'name', 'Qatar Tourism Authority'),
(79809, 66545, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„Ų³ŁŠŲ§Ų­Ų©ā€Ž'),
(79810, 66546, 'no_lang_code', 'name', 'Siemens (Qatar)'),
(79811, 66547, 'no_lang_code', 'name', 'Smartec-Group (Egypt)'),
(79812, 66548, 'no_lang_code', 'name', 'Spiretronic (Egypt)'),
(79813, 66549, 'no_lang_code', 'name', 'Spiretronic (United States)'),
(79814, 66550, 'no_lang_code', 'name', 'Synergation (United Kingdom)'),
(79815, 66551, 'no_lang_code', 'name', 'Tata Consulting Engineers (Qatar)'),
(79816, 66552, 'en', 'name', 'Telegraph Museum'),
(79817, 66553, 'no_lang_code', 'name', 'The Behaviouralist (United Kingdom)'),
(79818, 66554, 'no_lang_code', 'name', 'Toshiba Mitsubishi-Electric Industrial Systems Corporation (Japan)'),
(79819, 66554, 'ja', 'name', 'ę±čŠäø‰č±é›»ę©Ÿē”£ę„­ć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(79820, 66555, 'no_lang_code', 'name', 'Total (Qatar)'),
(79821, 66556, 'en', 'name', '2-Spirited'),
(79822, 66557, 'en', 'name', 'Active Aging Canada'),
(79823, 66558, 'en', 'name', 'Active Healthy Kids'),
(79824, 66559, 'en', 'name', 'Canadian Apheresis Group'),
(79825, 66559, 'fr', 'name', 'Groupe Canadien d''Aphérèse'),
(79826, 66560, 'en', 'name', 'Canadian Arthritis Patient Alliance'),
(79827, 66560, 'fr', 'name', 'L’Alliance Canadienne des Arthritiques'),
(79828, 66561, 'en', 'name', 'Child Welfare League of Canada'),
(79829, 66561, 'fr', 'name', 'Ligue pour le Bien-Être de l''Enfance du Canada'),
(79830, 66562, 'en', 'name', 'HIV Community Link'),
(79831, 66563, 'fr', 'name', 'Association Canadienne pour la PrƩvention du Suicide'),
(79832, 66563, 'en', 'name', 'Canadian Association for Suicide Prevention'),
(79833, 66564, 'en', 'name', 'AIDS Vancouver'),
(79834, 66565, 'en', 'name', 'Canadian Association of Cardiovascular Prevention and Rehabilitation'),
(79835, 66565, 'fr', 'name', 'L''Association Canadienne pour la PrƩvention Cardiovasculaire et de RƩadaptation'),
(79836, 66566, 'fr', 'name', 'HƓpital Fleurimont'),
(79837, 66567, 'fr', 'name', 'Association Canadienne de MƩdecine Physique et de RƩadaptation'),
(79838, 66567, 'en', 'name', 'Canadian Association of Physical Medicine and Rehabilitation'),
(79839, 66568, 'en', 'name', 'All Nations Hope Network'),
(79840, 66569, 'en', 'name', 'Cochrane'),
(79841, 66570, 'en', 'name', 'Canadian Dental Hygienists Association'),
(79842, 66571, 'en', 'name', 'Asian Community AIDS Services'),
(79843, 66572, 'en', 'name', 'Assembly of First Nations'),
(79844, 66573, 'fr', 'name', 'Association Canadienne de Soins Palliatifs'),
(79845, 66573, 'en', 'name', 'Canadian Hospice Palliative Care Association'),
(79846, 66574, 'en', 'name', 'Canadian Institute of Child Health'),
(79847, 66575, 'fr', 'name', 'Commission de la santé et des services sociaux des Premières Nations du Québec et du Labrador'),
(79848, 66575, 'en', 'name', 'First Nations of Quebec and Labrador Health and Social Services Commission'),
(79849, 66576, 'en', 'name', 'Assembly of Manitoba Chiefs'),
(79850, 66577, 'fr', 'name', 'Alliance Canadienne des MassothƩrapeutes'),
(79851, 66577, 'no_lang_code', 'name', 'Canadian Massage Therapy Aliance'),
(79852, 66578, 'en', 'name', 'HealthCareCAN'),
(79853, 66579, 'en', 'name', 'Association of Local Public Health Agencies'),
(79854, 66580, 'en', 'name', 'Canadian Organization for Rare Disorders'),
(79855, 66581, 'fr', 'name', 'Association des Pharmaciens du Canada'),
(79856, 66581, 'en', 'name', 'Canadian Pharmacists Association'),
(79857, 66582, 'en', 'name', 'Canadian Red Cross Society'),
(79858, 66582, 'fr', 'name', 'Croix Rouge canadienne'),
(79859, 66583, 'en', 'name', 'Canadian Rural Health Research Society'),
(79860, 66583, 'fr', 'name', 'SociƩtƩ Canadienne de Recherche en SantƩ Rurale'),
(79861, 66584, 'en', 'name', 'Canadian Sleep Society'),
(79862, 66584, 'fr', 'name', 'SociƩtƩ Canadienne du Sommeil'),
(79863, 66585, 'en', 'name', 'Homewood Research Institute'),
(79864, 66586, 'en', 'name', 'Canadian MPS Society for Mucopolysaccharide and Related Diseases'),
(79865, 66586, 'fr', 'name', 'SociƩtƩ Canadienne des Mucopolysaccharidoses et des Maladies ApparentƩes'),
(79866, 66587, 'en', 'name', 'Autism Canada'),
(79867, 66587, 'fr', 'name', 'SociĆ©tĆ© canadienne de l’autisme'),
(79868, 66588, 'en', 'name', 'Child, Adolescent and Family Mental Health'),
(79869, 66589, 'en', 'name', 'Casey House'),
(79870, 66590, 'en', 'name', 'BC Mental Health & Substance Use Services'),
(79871, 66591, 'no_lang_code', 'name', 'Biotika'),
(79872, 66592, 'en', 'name', 'Interior Health'),
(79873, 66593, 'fr', 'name', 'Michel-Sarrazin'),
(79874, 66594, 'en', 'name', 'International Society of Electrophysiology and Kinesiology'),
(79875, 66595, 'fr', 'name', 'ComunitĆ  Scientifica Italiana in Canada'),
(79876, 66595, 'en', 'name', 'Italian Scientific Community in Canada'),
(79877, 66596, 'en', 'name', 'Markham Museum'),
(79878, 66597, 'en', 'name', 'MaRS'),
(79879, 66598, 'en', 'name', 'Coalition for Research in Women''s Health'),
(79880, 66599, 'en', 'name', 'Kahnawake Education Center'),
(79881, 66600, 'en', 'name', 'Kahnawake Schools Diabetes Prevention Project'),
(79882, 66601, 'en', 'name', 'Ottawa Baffin Nunavut Health Services'),
(79883, 66602, 'en', 'name', 'Ottawa Public Health'),
(79884, 66602, 'fr', 'name', 'SantƩ Publique Ottawa'),
(79885, 66603, 'en', 'name', 'MItoCanada'),
(79886, 66604, 'fr', 'name', 'Association Nationale Autochtone du DiabĆØte'),
(79887, 66604, 'en', 'name', 'National Aboriginal Diabetes Association'),
(79888, 66605, 'en', 'name', 'Irkutsk Regional Clinical Hospital'),
(79889, 66605, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(79890, 66606, 'en', 'name', 'Lu’ma Native Housing Society'),
(79891, 66607, 'en', 'name', 'PHS Community Services Society'),
(79892, 66608, 'en', 'name', 'Thunderbird Partnership Foundation'),
(79893, 66609, 'en', 'name', 'Native Mental Health Association of Canada'),
(79894, 66610, 'en', 'name', 'Native Women''s Shelter of Montreal'),
(79895, 66611, 'en', 'name', 'Native Youth Sexual Health Network'),
(79896, 66612, 'en', 'name', 'Northwood'),
(79897, 66613, 'fr', 'name', 'Association Canadienne de la MĆ©decine du Travail et de l’environnement'),
(79898, 66613, 'en', 'name', 'Occupational and Environmental Medical Association of Canada'),
(79899, 66614, 'en', 'name', 'Ontario Long Term Care Association'),
(79900, 66615, 'fr', 'name', 'Aids Moncton'),
(79901, 66616, 'en', 'name', 'The Sisters of Charity of Ottawa'),
(79902, 66616, 'fr', 'name', 'les Soeurs de la CharitĆ© d’Ottawa'),
(79903, 66617, 'no_lang_code', 'name', 'The Debajehmujig Creation Centre (Canada)'),
(79904, 66618, 'en', 'name', 'Dignitas International'),
(79905, 66619, 'en', 'name', 'MAB-Mackay Rehabilitation Centre'),
(79906, 66620, 'en', 'name', 'Dr. Peter AIDS Foundation'),
(79907, 66621, 'en', 'name', 'Canadian Society of Microbiologists'),
(79908, 66621, 'fr', 'name', 'SociƩtƩ Canadienne des Microbiologistes'),
(79909, 66622, 'fr', 'name', 'SociƩtƩ QuƩbƩcoise de Lipidologie, de Nutrition et de MƩtabolisme'),
(79910, 66623, 'en', 'name', 'The Society of Gynecologic Oncology of Canada'),
(79911, 66624, 'en', 'name', 'First Nations Health and Social Secretariat of Manitoba'),
(79912, 66625, 'en', 'name', 'Saint-Vincent Hospital'),
(79913, 66626, 'en', 'name', 'Hassle Free Clinic'),
(79914, 66627, 'en', 'name', 'Black Coalition for AIDS Prevention'),
(79915, 66628, 'en', 'name', 'Positive Living North'),
(79916, 66629, 'en', 'name', 'Bridgepoint Active Healthcare'),
(79917, 66630, 'fr', 'name', 'Centre d''excellence pour la santƩ des femmes - rƩgion des Prairies'),
(79918, 66630, 'en', 'name', 'Prairie Women''s Health Centre of Excellence'),
(79919, 66631, 'en', 'name', 'The Polis Project'),
(79920, 66632, 'en', 'name', 'Manitoba Harm Reduction Network'),
(79921, 66633, 'en', 'name', 'Rainbow Health Ontario'),
(79922, 66633, 'fr', 'name', 'SantƩ arc-en-ciel Ontario'),
(79923, 66634, 'en', 'name', 'Regent Park Community Health Centre'),
(79924, 66635, 'fr', 'name', 'RƩseau de recherche en santƩ des populations du QuƩbec'),
(79925, 66635, 'en', 'name', 'The Quebec Population Health Research Network'),
(79926, 66636, 'fr', 'name', 'RƩseau de sensibilisation de sciences et technologie'),
(79927, 66636, 'en', 'name', 'Science and Technology Awareness Network'),
(79928, 66637, 'en', 'name', 'Science World at Telus World of Science'),
(79929, 66638, 'fr', 'name', 'De Veber'),
(79930, 66639, 'en', 'name', 'The Hearing Foundation of Canada'),
(79931, 66640, 'en', 'name', 'The Marigold Foundation'),
(79932, 66641, 'fr', 'name', 'La SociƩtƩ des obstƩtriciens et gynƩcologues du Canada'),
(79933, 66641, 'en', 'name', 'The Society of Obstetricians and Gynaecologists of Canada'),
(79934, 66642, 'en', 'name', 'Vancouver Coastal Health'),
(79935, 66643, 'en', 'name', 'Friends For Life'),
(79936, 66644, 'en', 'name', 'Vancouver Infectious Diseases Centre'),
(79937, 66645, 'en', 'name', 'TheMuseum'),
(79938, 66646, 'en', 'name', 'Tlicho Community Services Agency'),
(79939, 66647, 'en', 'name', 'William Osler Health System'),
(79940, 66648, 'fr', 'name', 'Ć  coeur d''homme'),
(79941, 66649, 'fr', 'name', 'AcadƩmie Nationale des Sciences et Techniques du SƩnƩgal'),
(79942, 66650, 'fr', 'name', 'ARCTIConnexion'),
(79943, 66651, 'en', 'name', 'Dutch Art Institute'),
(79944, 66652, 'en', 'name', 'Ministry of Labour, Employment and Social Solidarity'),
(79945, 66652, 'fr', 'name', 'MinistĆØre du Travail, de l’Emploi et de la SolidaritĆ© Sociale'),
(79946, 66653, 'fr', 'name', 'Association des Doyennes et des Doyens des Ɖtudes SupĆ©rieures au QuĆ©bec'),
(79947, 66654, 'fr', 'name', 'FƩdƩration des Maisons D''HƩbergement pour Femmes'),
(79948, 66655, 'fr', 'name', 'Association QuƩbƩcoise des Enseignantes et des Enseignants du Primaire'),
(79949, 66656, 'fr', 'name', 'FƩdƩration des ComitƩs de Parents du QuƩbec'),
(79950, 66657, 'fr', 'name', 'FƩdƩration des Commissions Scolaires du QuƩbec'),
(79951, 66658, 'fr', 'name', 'Association QuĆ©bĆ©coise du Personnel de Direction des Ɖcoles'),
(79952, 66659, 'fr', 'name', 'Office des Personnes HandicapƩes du QuƩbec'),
(79953, 66660, 'fr', 'name', 'OSEntreprendre'),
(79954, 66661, 'fr', 'name', 'Parkinson Quebec'),
(79955, 66662, 'fr', 'name', 'Centrale des Syndicats du QuƩbec'),
(79956, 66663, 'fr', 'name', 'Regroupement des Maisons pour Femmes Victimes de Violence Conjugale'),
(79957, 66664, 'fr', 'name', 'Regroupement des Organismes Communautaires QuƩbƩcoise de Lutte au DƩcrochage'),
(79958, 66665, 'fr', 'name', 'Regroupement Provincial en Santé et Bien-Être des Hommes'),
(79959, 66666, 'fr', 'name', 'Relais Femmes'),
(79960, 66667, 'fr', 'name', 'Association des Radiologistes du QuƩbec'),
(79961, 66668, 'no_lang_code', 'name', 'TES Global (United Kingdom)'),
(79962, 66669, 'fr', 'name', 'RƩseau des Centres de Ressources PƩrinatales'),
(79963, 66670, 'fr', 'name', 'RƩseau National d''Expertise en Trouble du Spectre de l''Autisme'),
(79964, 66671, 'en', 'name', 'Campus Notre-Dame-de-Foy'),
(79965, 66672, 'en', 'name', 'Centre Cyber-aide'),
(79966, 66673, 'en', 'name', 'Quebec Network on Suicide, Mood Disorders and Related Disorders'),
(79967, 66674, 'fr', 'name', 'Centre d''aide Pour Hommes de LanaudiĆØre'),
(79968, 66675, 'fr', 'name', 'Centre Jacques-Cartier'),
(79969, 66676, 'fr', 'name', 'RƩseau SolidaritƩ ItinƩrance du QuƩbec'),
(79970, 66677, 'fr', 'name', 'Centre d’innovation sociale en agriculture'),
(79971, 66677, 'en', 'name', 'Centre of Social Innovation in Agriculture'),
(79972, 66678, 'en', 'name', 'Montreal Police Service'),
(79973, 66678, 'fr', 'name', 'Service de Police de la Ville de MontrƩal'),
(79974, 66679, 'fr', 'name', 'SociƩtƩ d''Habitation du QuƩbec'),
(79975, 66680, 'en', 'name', 'Quebec Automobile Insurance Corporation'),
(79976, 66680, 'fr', 'name', 'SociƩtƩ de l''Assurance Automobile du QuƩbec'),
(79977, 66681, 'fr', 'name', 'SociƩtƩ QuƩbƩcoise d''Hypertension ArtƩrielle'),
(79978, 66682, 'en', 'name', 'Gay Line'),
(79979, 66682, 'fr', 'name', 'Interligne'),
(79980, 66683, 'fr', 'name', 'SociƩtƩ QuƩbƩcoise de NƩphrologie'),
(79981, 66684, 'fr', 'name', 'Table Carrefour Violence Conjugale QuƩbec MƩtro'),
(79982, 66685, 'no_lang_code', 'name', 'Galamedia (Canada)'),
(79983, 66686, 'fr', 'name', 'Table de Concertation en Violence Conjugale de MontrƩal'),
(79984, 66687, 'fr', 'name', 'Institut de Recherche Sur L’IntĆ©gration Professionnelle des Immigrants'),
(79985, 66688, 'no_lang_code', 'name', 'Westin Limousine (Canada)'),
(79986, 66689, 'en', 'name', 'Centre Casa'),
(79987, 66690, 'fr', 'name', 'Communautique'),
(79988, 66691, 'fr', 'name', 'Sercovie'),
(79989, 66692, 'fr', 'name', 'Centre des AƮnƩs CƓte-des-Neiges'),
(79990, 66693, 'fr', 'name', 'Parc Technologique du QuƩbec MƩtropolitain'),
(79991, 66693, 'no_lang_code', 'name', 'QuƩbec Metro High Tech Park (Canada)'),
(79992, 66694, 'fr', 'name', 'Cercle Finance du QuƩbec'),
(79993, 66695, 'en', 'name', 'Institute for Knowledge Mobilization'),
(79994, 66695, 'fr', 'name', 'l''Institut pour la Mobilisation des Connaissances'),
(79995, 66696, 'fr', 'name', 'Centre IntƩgrƩ de SantƩ et de Services Sociaux du Bas-Saint-Laurent'),
(79996, 66697, 'en', 'name', 'Ministry of Immigration, Diversity and Inclusion'),
(79997, 66697, 'fr', 'name', 'MinistĆØre de l’Immigration, de la DiversitĆ© et de l’Inclusion'),
(79998, 66698, 'fr', 'name', 'L''Accord Mauricie'),
(79999, 66699, 'en', 'name', 'Ministry of Culture and Communications'),
(80000, 66699, 'fr', 'name', 'MinistĆØre de la Culture et des Communications'),
(80001, 66700, 'fr', 'name', 'CollĆØge de Rosemont'),
(80002, 66701, 'fr', 'name', 'Commission Scolaire des Hautes RiviĆØres'),
(80003, 66702, 'no_lang_code', 'name', 'Cryptomage (Poland)'),
(80004, 66703, 'no_lang_code', 'name', 'Read-Gene (Poland)'),
(80005, 66704, 'no_lang_code', 'name', 'Tricomed (Poland)'),
(80006, 66705, 'no_lang_code', 'name', 'Delta Rafał Mikke (Poland)'),
(80007, 66706, 'no_lang_code', 'name', 'Waldi (Poland)'),
(80008, 66707, 'no_lang_code', 'name', 'Digitalia (Poland)'),
(80009, 66708, 'no_lang_code', 'name', '+H2O (Poland)'),
(80010, 66709, 'pl', 'name', 'Instytut Wzornictwa Przemyslowego'),
(80011, 66710, 'no_lang_code', 'name', 'Drukpol (Poland)'),
(80012, 66711, 'no_lang_code', 'name', 'Inteco (Poland)'),
(80013, 66712, 'no_lang_code', 'name', '2P-Info (Poland)'),
(80014, 66713, 'no_lang_code', 'name', 'EC Systems (Poland)'),
(80015, 66714, 'no_lang_code', 'name', 'Ecoenergia (Poland)'),
(80016, 66715, 'no_lang_code', 'name', 'Intel (Poland)'),
(80017, 66716, 'no_lang_code', 'name', 'Ekoinwentyka (Poland)'),
(80018, 66717, 'no_lang_code', 'name', 'Ekopoz (Poland)'),
(80019, 66718, 'no_lang_code', 'name', 'Elektromontaż-Lublin (Poland)'),
(80020, 66719, 'no_lang_code', 'name', 'Active Text (Poland)'),
(80021, 66720, 'no_lang_code', 'name', 'Elgór + Hansen (Poland)'),
(80022, 66721, 'no_lang_code', 'name', 'Interplastik (Poland)'),
(80023, 66722, 'no_lang_code', 'name', 'Elsta Elektronika (Poland)'),
(80024, 66723, 'no_lang_code', 'name', 'Emag Serwis (Poland)'),
(80025, 66724, 'en', 'name', 'Interuniversity Center for Social Science Theory and Methodology'),
(80026, 66725, 'no_lang_code', 'name', 'Ensol (Poland)'),
(80027, 66726, 'no_lang_code', 'name', 'ISKRA Zakłady Precyzyjne (Poland)'),
(80028, 66727, 'no_lang_code', 'name', 'Jagoda JPS (Poland)'),
(80029, 66728, 'no_lang_code', 'name', 'Escort (Poland)'),
(80030, 66729, 'no_lang_code', 'name', 'JIT Solutions (Poland)'),
(80031, 66730, 'en', 'name', 'Euro-Centrum'),
(80032, 66731, 'no_lang_code', 'name', 'Agrola (Poland)'),
(80033, 66732, 'no_lang_code', 'name', 'JK (Poland)'),
(80034, 66733, 'no_lang_code', 'name', 'K-UTEC Salt Technologies (Germany)'),
(80035, 66734, 'no_lang_code', 'name', 'Maersk (Qatar)'),
(80036, 66735, 'pl', 'name', 'Europejski Instytut Miedzi'),
(80037, 66736, 'no_lang_code', 'name', 'Euros Energy (Poland)'),
(80038, 66737, 'no_lang_code', 'name', 'K+S (Germany)'),
(80039, 66738, 'no_lang_code', 'name', 'Eurotech (Poland)'),
(80040, 66739, 'no_lang_code', 'name', 'Kabe (Poland)'),
(80041, 66740, 'pl', 'name', 'Akademia im. Jakuba z Paradyża w Gorzowie Wielkopolskim'),
(80042, 66740, 'en', 'name', 'The Jacob of Paradies University'),
(80043, 66741, 'no_lang_code', 'name', 'Kaliskie Zakłady Przemysłu Terenowego (Poland)'),
(80044, 66742, 'pl', 'name', 'Kardio-Med Silesia'),
(80045, 66743, 'pl', 'name', 'Akademia Sztuki Wojennej'),
(80046, 66743, 'en', 'name', 'War Studies Academy'),
(80047, 66744, 'no_lang_code', 'name', 'Katcon (Poland)'),
(80048, 66745, 'no_lang_code', 'name', 'Fes Trading (Poland)'),
(80049, 66746, 'no_lang_code', 'name', 'Fido Intelligence (Poland)'),
(80050, 66747, 'pl', 'name', 'Fundacja Idea Rozwoju'),
(80051, 66747, 'en', 'name', 'IDEA of Development Foundation'),
(80052, 66748, 'pl', 'name', 'Fundacja Itaka'),
(80053, 66748, 'en', 'name', 'ITAKA Foundation'),
(80054, 66749, 'no_lang_code', 'name', 'Future Voice System (Poland)'),
(80055, 66750, 'no_lang_code', 'name', 'FUTRESynthesis (Poland)'),
(80056, 66751, 'pl', 'name', 'Centrum Gamma Knife'),
(80057, 66752, 'no_lang_code', 'name', 'Gamaplast (Poland)');
INSERT INTO `ror_settings` VALUES
(80058, 66753, 'en', 'name', 'Gdansk Water Foundation'),
(80059, 66753, 'pl', 'name', 'Gdańska Fundacja Wody'),
(80060, 66754, 'no_lang_code', 'name', 'Kompol (Poland)'),
(80061, 66755, 'no_lang_code', 'name', 'General Electric (Poland)'),
(80062, 66756, 'en', 'name', 'African Council on Narcotics'),
(80063, 66757, 'no_lang_code', 'name', 'Andrychowska Fabryka Maszyn DEFUM (Poland)'),
(80064, 66758, 'no_lang_code', 'name', 'ANGA Mechanical Seals (Poland)'),
(80065, 66758, 'pl', 'name', 'ANGA Uszczelnienia Mechaniczne'),
(80066, 66759, 'no_lang_code', 'name', 'Anshar Studios (Poland)'),
(80067, 66760, 'no_lang_code', 'name', 'Kuca (Poland)'),
(80068, 66761, 'pl', 'name', 'Kutnowska Hodowla Buraka Cukrowego'),
(80069, 66762, 'no_lang_code', 'name', 'Laboclinic (Poland)'),
(80070, 66763, 'no_lang_code', 'name', 'ATM (Poland)'),
(80071, 66764, 'pl', 'name', 'Laboratorium Datowań Bezwzględnych'),
(80072, 66765, 'no_lang_code', 'name', 'ATM PP (Poland)'),
(80073, 66766, 'no_lang_code', 'name', 'Audi (Italy)'),
(80074, 66767, 'no_lang_code', 'name', 'Lakma (Poland)'),
(80075, 66768, 'no_lang_code', 'name', 'Lars Lighting (Poland)'),
(80076, 66769, 'no_lang_code', 'name', 'Avantor (Poland)'),
(80077, 66770, 'no_lang_code', 'name', 'Azis Mining Service (Poland)'),
(80078, 66771, 'no_lang_code', 'name', 'Lasertex (Poland)'),
(80079, 66772, 'no_lang_code', 'name', 'Mikronika (Poland)'),
(80080, 66773, 'de', 'name', 'Evangelische Hochschule Berlin'),
(80081, 66774, 'en', 'name', 'European Consortium for Ocean Research Drilling'),
(80082, 66775, 'no_lang_code', 'name', 'Baltic Ceramics Investments (Poland)'),
(80083, 66776, 'no_lang_code', 'name', 'Logifact (Poland)'),
(80084, 66776, 'pl', 'name', 'Systemy Logistyczne'),
(80085, 66777, 'no_lang_code', 'name', 'Bastik (Poland)'),
(80086, 66778, 'no_lang_code', 'name', 'Geopartner (Poland)'),
(80087, 66779, 'no_lang_code', 'name', 'Lubawa (Poland)'),
(80088, 66780, 'no_lang_code', 'name', 'Bercanan (Poland)'),
(80089, 66781, 'no_lang_code', 'name', 'Geotermia Mazowiecka (Poland)'),
(80090, 66782, 'no_lang_code', 'name', 'Geotermia Uniejów (Poland)'),
(80091, 66783, 'pl', 'name', 'Biblioteka Śląska'),
(80092, 66783, 'en', 'name', 'Silesian Library'),
(80093, 66784, 'no_lang_code', 'name', 'Mabo (Poland)'),
(80094, 66785, 'no_lang_code', 'name', 'Grupa Lotos (Poland)'),
(80095, 66786, 'no_lang_code', 'name', 'BioScientia (Poland)'),
(80096, 66787, 'no_lang_code', 'name', 'Maspex (Poland)'),
(80097, 66788, 'pl', 'name', 'Grupa Wolff'),
(80098, 66788, 'no_lang_code', 'name', 'Wolff Group (Poland)'),
(80099, 66789, 'no_lang_code', 'name', 'Bluetomation (Poland)'),
(80100, 66790, 'no_lang_code', 'name', 'Heidelberg (Poland)'),
(80101, 66791, 'no_lang_code', 'name', 'Marine Projects (Poland)'),
(80102, 66792, 'no_lang_code', 'name', 'Bolmet (Poland)'),
(80103, 66793, 'no_lang_code', 'name', 'Materials Engineers Group (Poland)'),
(80104, 66794, 'no_lang_code', 'name', 'Boryszew (Poland)'),
(80105, 66795, 'no_lang_code', 'name', 'BrainTech (Poland)'),
(80106, 66796, 'no_lang_code', 'name', 'BTM Cluster (Poland)'),
(80107, 66797, 'no_lang_code', 'name', 'C&T Elmech (Poland)'),
(80108, 66798, 'no_lang_code', 'name', 'Carbograf (Poland)'),
(80109, 66799, 'no_lang_code', 'name', 'IDAP Technology (Poland)'),
(80110, 66800, 'no_lang_code', 'name', 'Cargotec (Poland)'),
(80111, 66801, 'no_lang_code', 'name', 'Celiko (Poland)'),
(80112, 66802, 'no_lang_code', 'name', 'Innerco (Poland)'),
(80113, 66803, 'no_lang_code', 'name', 'Cells Therapy (Poland)'),
(80114, 66804, 'no_lang_code', 'name', 'Inproel (Poland)'),
(80115, 66805, 'no_lang_code', 'name', 'Cemet (Poland)'),
(80116, 66806, 'no_lang_code', 'name', 'KuÅŗnia Stalowa Wola (Poland)'),
(80117, 66807, 'pl', 'name', 'Centrum Badań Jakości'),
(80118, 66807, 'en', 'name', 'Quality Research Center'),
(80119, 66808, 'no_lang_code', 'name', 'Bosmal (Poland)'),
(80120, 66809, 'pl', 'name', 'Centrum Badawczo - Produkcyjne'),
(80121, 66809, 'no_lang_code', 'name', 'DGT (Poland)'),
(80122, 66810, 'en', 'name', 'Institute of Criminology of the Polish Forensic Association'),
(80123, 66810, 'pl', 'name', 'Polskie Towarzystwo Kryminalistyczne'),
(80124, 66811, 'no_lang_code', 'name', 'Telesystem (Poland)'),
(80125, 66812, 'en', 'name', 'Institute of Law Studies'),
(80126, 66812, 'pl', 'name', 'Instytut Nauk Prawnych'),
(80127, 66813, 'no_lang_code', 'name', 'Centre of Technology Transfer Emag (Poland)'),
(80128, 66814, 'no_lang_code', 'name', 'ChM (Poland)'),
(80129, 66815, 'no_lang_code', 'name', 'CMGI (Poland)'),
(80130, 66816, 'no_lang_code', 'name', 'COBRO (Poland)'),
(80131, 66817, 'no_lang_code', 'name', 'Consolidated Precision Products (Poland)'),
(80132, 66818, 'no_lang_code', 'name', 'Horus Energia (Poland)'),
(80133, 66819, 'no_lang_code', 'name', 'Corona (Poland)'),
(80134, 66820, 'no_lang_code', 'name', 'Panasonic (Poland)'),
(80135, 66821, 'no_lang_code', 'name', 'CRE Consulting (Poland)'),
(80136, 66822, 'no_lang_code', 'name', 'Taps (Poland)'),
(80137, 66823, 'no_lang_code', 'name', 'Search (Poland)'),
(80138, 66824, 'pl', 'name', 'Instytut Śląski w Opolu'),
(80139, 66824, 'en', 'name', 'Silesian Institute in Opole'),
(80140, 66825, 'no_lang_code', 'name', 'Samsung (Poland)'),
(80141, 66826, 'no_lang_code', 'name', 'TOMSAD Tomasz Sadowski (Poland)'),
(80142, 66827, 'no_lang_code', 'name', 'Scanmed (Poland)'),
(80143, 66828, 'no_lang_code', 'name', 'SDS Optic (Poland)'),
(80144, 66829, 'no_lang_code', 'name', 'Peptaderm (Poland)'),
(80145, 66830, 'no_lang_code', 'name', 'Seen Semiconductors (Poland)'),
(80146, 66831, 'no_lang_code', 'name', 'Tpa (Poland)'),
(80147, 66832, 'no_lang_code', 'name', 'Transbit (Poland)'),
(80148, 66833, 'no_lang_code', 'name', 'Petrol (Poland)'),
(80149, 66834, 'no_lang_code', 'name', 'Phoenix Contact (Poland)'),
(80150, 66835, 'no_lang_code', 'name', 'Sempre (Poland)'),
(80151, 66836, 'no_lang_code', 'name', 'Trusted Information Consulting (Poland)'),
(80152, 66837, 'no_lang_code', 'name', 'Fedor-Bis (Poland)'),
(80153, 66838, 'no_lang_code', 'name', 'SentiOne (Poland)'),
(80154, 66839, 'no_lang_code', 'name', 'Sewaco System (Poland)'),
(80155, 66840, 'no_lang_code', 'name', 'Polbud-Pomorze (Poland)'),
(80156, 66841, 'no_lang_code', 'name', 'VoicePIN.com (Poland)'),
(80157, 66842, 'no_lang_code', 'name', 'SGL Carbon (Poland)'),
(80158, 66843, 'no_lang_code', 'name', 'SGL Carbon (Germany)'),
(80159, 66844, 'en', 'name', 'Polish Academy of Learning'),
(80160, 66844, 'pl', 'name', 'Polska Akademia Umiejętności'),
(80161, 66845, 'no_lang_code', 'name', 'Polska Grupa Górnicza (Poland)'),
(80162, 66846, 'no_lang_code', 'name', 'Skotan (Poland)'),
(80163, 66847, 'en', 'name', 'Polish Chamber of Packaging'),
(80164, 66847, 'pl', 'name', 'Polska Izba Opakowań'),
(80165, 66848, 'no_lang_code', 'name', 'Kupiec (Poland)'),
(80166, 66849, 'pl', 'name', 'Słodownia Soufflet Polska'),
(80167, 66850, 'no_lang_code', 'name', 'Polish Security Printing Works (Poland)'),
(80168, 66850, 'pl', 'name', 'Polska Wytwornia Papierow Wartosciowych'),
(80169, 66851, 'no_lang_code', 'name', 'Soley (Poland)'),
(80170, 66852, 'en', 'name', 'Polish Stem Cell Bank'),
(80171, 66852, 'pl', 'name', 'Polski Bank Komórek Macierzystych'),
(80172, 66853, 'pl', 'name', 'Specjalistyczny Szpital Miejski im. M. Kopernika'),
(80173, 66854, 'en', 'name', 'President of the Office of Electronic Communications'),
(80174, 66854, 'pl', 'name', 'Urząd Komunikacji Elektronicznej'),
(80175, 66855, 'no_lang_code', 'name', 'Sprint (Poland)'),
(80176, 66856, 'en', 'name', 'Polish Society of Oriental Art'),
(80177, 66856, 'pl', 'name', 'Polski Instytut Studiów nad Sztuką Świata'),
(80178, 66857, 'no_lang_code', 'name', 'Spyra Primo (Poland)'),
(80179, 66858, 'pl', 'name', 'Polskie Stowarzyszenie Terapii Behawioralnej'),
(80180, 66859, 'no_lang_code', 'name', 'Stalprodukt (Poland)'),
(80181, 66860, 'no_lang_code', 'name', 'Chornobyl Center'),
(80182, 66860, 'uk', 'name', 'Š§Š¾Ń€Š½Š¾Š±ŠøŠ»ŃŒŃŃŒŠŗŠøŠ¹ центр'),
(80183, 66861, 'no_lang_code', 'name', 'VĆØringer (Spain)'),
(80184, 66862, 'en', 'name', 'Polish Aviation Works'),
(80185, 66862, 'no_lang_code', 'name', 'Polskie Zakłady Lotnicze (Poland)'),
(80186, 66863, 'no_lang_code', 'name', 'Vigo (Poland)'),
(80187, 66864, 'en', 'name', 'Indian Pharmacist Association'),
(80188, 66865, 'no_lang_code', 'name', 'VoiceLab (Poland)'),
(80189, 66866, 'en', 'name', 'South Western Ambulance Service NHS Foundation Trust'),
(80190, 66867, 'no_lang_code', 'name', 'PolymemTech (Poland)'),
(80191, 66868, 'en', 'name', 'Warsaw School of Computer Science'),
(80192, 66868, 'pl', 'name', 'Warszawska Wyższa Szkoła Informatyki'),
(80193, 66869, 'no_lang_code', 'name', 'Stem Cells Spin (Poland)'),
(80194, 66870, 'pl', 'name', 'Powszechna Kasa Oszczędności Bank Polski Spółka Akcyjna'),
(80195, 66871, 'no_lang_code', 'name', 'Sto (Poland)'),
(80196, 66872, 'pl', 'name', 'Stowarzyszenie Radość Życia'),
(80197, 66873, 'no_lang_code', 'name', 'Poznańska Hodowla Roślin (Poland)'),
(80198, 66874, 'en', 'name', 'Polish Platform for Homeland Security'),
(80199, 66874, 'pl', 'name', 'Polska Platforma Bezpieczeństwa Wewnętrznego'),
(80200, 66875, 'no_lang_code', 'name', 'Military Aviation Works No. 4 (Poland)'),
(80201, 66875, 'pl', 'name', 'Wojskowe Zakłady Lotnicze Nr 4'),
(80202, 66876, 'no_lang_code', 'name', 'Eko-Energia (Poland)'),
(80203, 66877, 'pl', 'name', 'Stowarzyszenie Pomocy Niepełnosprawnym Kierowcom'),
(80204, 66878, 'no_lang_code', 'name', 'Mind (Poland)'),
(80205, 66879, 'no_lang_code', 'name', 'Proen (Poland)'),
(80206, 66880, 'pl', 'name', 'Szkoła Aspirantów Państwowej Straży Pożarnej'),
(80207, 66881, 'no_lang_code', 'name', 'Elsit (Poland)'),
(80208, 66882, 'no_lang_code', 'name', 'Szkuner (Poland)'),
(80209, 66883, 'no_lang_code', 'name', 'Marko-Kolor (Poland)'),
(80210, 66884, 'pl', 'name', 'Szpital Kliniczny Przemienienia Pańskiego'),
(80211, 66884, 'en', 'name', 'University Hospital of Lord’s Transfiguration'),
(80212, 66885, 'no_lang_code', 'name', 'Lindo Catsystem (Poland)'),
(80213, 66886, 'no_lang_code', 'name', 'Tauron Wytwarzanie (Poland)'),
(80214, 66887, 'no_lang_code', 'name', 'ADW (Poland)'),
(80215, 66888, 'no_lang_code', 'name', 'Tecna (Poland)'),
(80216, 66889, 'no_lang_code', 'name', 'Tedspaw (Poland)'),
(80217, 66890, 'no_lang_code', 'name', 'X-Code (Poland)'),
(80218, 66891, 'no_lang_code', 'name', 'Tektura Opakowania Papier (Poland)'),
(80219, 66892, 'no_lang_code', 'name', 'Maskpol (Poland)'),
(80220, 66893, 'no_lang_code', 'name', 'Telvis (Poland)'),
(80221, 66894, 'no_lang_code', 'name', 'Termetal (Poland)'),
(80222, 66895, 'no_lang_code', 'name', 'Pure Biologics (Poland)'),
(80223, 66896, 'no_lang_code', 'name', 'Qwed (Poland)'),
(80224, 66897, 'no_lang_code', 'name', 'PBG (Poland)'),
(80225, 66898, 'no_lang_code', 'name', 'Enika (Poland)'),
(80226, 66899, 'no_lang_code', 'name', 'Maxon Motor (Switzerland)'),
(80227, 66900, 'no_lang_code', 'name', 'Twerd (Poland)'),
(80228, 66901, 'en', 'name', 'MB Recycling'),
(80229, 66902, 'en', 'name', 'Regional Water Management Authority in Warsaw'),
(80230, 66902, 'pl', 'name', 'Regionalny Zarząd Gospodarki Wodnej w Warszawie'),
(80231, 66903, 'no_lang_code', 'name', 'Hydromar (Poland)'),
(80232, 66904, 'sl', 'name', 'Raziskovalna Genetika in Agrokemija'),
(80233, 66904, 'no_lang_code', 'name', 'Research Genetics and Agrochemistry (Slovenia)'),
(80234, 66905, 'no_lang_code', 'name', 'Menard (Poland)'),
(80235, 66906, 'no_lang_code', 'name', 'Merx (Poland)'),
(80236, 66907, 'no_lang_code', 'name', 'Riela (Poland)'),
(80237, 66908, 'no_lang_code', 'name', 'RIKA (Austria)'),
(80238, 66909, 'no_lang_code', 'name', 'Mician (Germany)'),
(80239, 66910, 'no_lang_code', 'name', 'Mikronatura Środowisko (Poland)'),
(80240, 66911, 'en', 'name', 'MRS Training & Rescue'),
(80241, 66912, 'no_lang_code', 'name', 'MLabs (Poland)'),
(80242, 66913, 'pl', 'name', 'Fabryka Łożysk Tocznych Kraśnik'),
(80243, 66913, 'no_lang_code', 'name', 'Polish Bearings Factory (Poland)'),
(80244, 66914, 'no_lang_code', 'name', 'Zakład Mechaniki Maszyn (Poland)'),
(80245, 66915, 'no_lang_code', 'name', 'Modertrans (Poland)'),
(80246, 66916, 'no_lang_code', 'name', 'MPTS (Poland)'),
(80247, 66917, 'pl', 'name', 'Muzeum Narodowe w Warszawie'),
(80248, 66917, 'en', 'name', 'National Museum in Warsaw'),
(80249, 66918, 'no_lang_code', 'name', 'Special Production Plant Gamrat (Poland)'),
(80250, 66918, 'pl', 'name', 'Zaklad Produkcji Specjalnej Gamrat'),
(80251, 66919, 'pl', 'name', 'Narodowy Instytut Muzealnictwa i Ochrony Zbiorów'),
(80252, 66920, 'no_lang_code', 'name', 'Eltraf (Poland)'),
(80253, 66921, 'no_lang_code', 'name', 'Glider Factory in Jeżów (Poland)'),
(80254, 66921, 'pl', 'name', 'Zakład Szybowcowy Jeźów Henryk Mynarski'),
(80255, 66922, 'no_lang_code', 'name', 'Lentex (Poland)'),
(80256, 66923, 'no_lang_code', 'name', 'Automex (Poland)'),
(80257, 66924, 'no_lang_code', 'name', 'AgeSoya (Poland)'),
(80258, 66925, 'no_lang_code', 'name', 'Zurad (Poland)'),
(80259, 66926, 'no_lang_code', 'name', 'Odlewnie Polskie (Poland)'),
(80260, 66927, 'no_lang_code', 'name', 'Omnikon (Poland)'),
(80261, 66928, 'no_lang_code', 'name', 'Nitrochem (Poland)'),
(80262, 66929, 'no_lang_code', 'name', 'Opegieka (Poland)'),
(80263, 66930, 'no_lang_code', 'name', 'Newind (Poland)'),
(80264, 66931, 'no_lang_code', 'name', 'Silikony (Poland)'),
(80265, 66932, 'no_lang_code', 'name', 'Nexteer Automotive (Poland)'),
(80266, 66933, 'en', 'name', 'Meditest'),
(80267, 66933, 'pl', 'name', 'Niepubliczny Zakład Opieki Zdrowotnej Meditest. Diagnostyka Medyczna'),
(80268, 66934, 'no_lang_code', 'name', 'Zakłady Energetyki Cieplnej (Poland)'),
(80269, 66935, 'no_lang_code', 'name', 'Nitroerg (Poland)'),
(80270, 66936, 'no_lang_code', 'name', 'Nomino (Poland)'),
(80271, 66937, 'no_lang_code', 'name', 'Zaslaw (Poland)'),
(80272, 66938, 'no_lang_code', 'name', 'Zębiec (Poland)'),
(80273, 66939, 'no_lang_code', 'name', 'Zakłady Mechaniczne Tarnów (Poland)'),
(80274, 66940, 'no_lang_code', 'name', 'Zeto (Poland)'),
(80275, 66941, 'no_lang_code', 'name', '​Advanced Systems Technology (United States)'),
(80276, 66942, 'no_lang_code', 'name', 'Zakłady Magnezytowe (Poland)'),
(80277, 66943, 'en', 'name', 'Alabama Department of Forensic Sciences'),
(80278, 66944, 'en', 'name', 'Virginia Department of Forensic Science'),
(80279, 66945, 'en', 'name', 'Alaska Department of Public Safety'),
(80280, 66946, 'no_lang_code', 'name', 'Development Services Group (United States)'),
(80281, 66947, 'en', 'name', 'American Correctional Association'),
(80282, 66948, 'en', 'name', 'District of Columbia Department of Forensic Sciences'),
(80283, 66949, 'no_lang_code', 'name', 'Maroon Biotech (United States)'),
(80284, 66950, 'no_lang_code', 'name', 'Drakontas (United States)'),
(80285, 66951, 'en', 'name', 'McCrone Research Institute'),
(80286, 66952, 'en', 'name', 'American Indian Development Associates'),
(80287, 66953, 'no_lang_code', 'name', 'Microtrace (United States)'),
(80288, 66954, 'en', 'name', 'Middle Rio Grande Development Council'),
(80289, 66955, 'no_lang_code', 'name', 'Mistral Security (United States)'),
(80290, 66956, 'en', 'name', 'Fredric Rieders Family Foundation'),
(80291, 66957, 'en', 'name', 'American Society of Crime Laboratory Directors'),
(80292, 66958, 'en', 'name', 'BOTEC Analysis'),
(80293, 66959, 'en', 'name', 'Automated Regional Justice Information System'),
(80294, 66960, 'no_lang_code', 'name', 'Nanogen (United States)'),
(80295, 66961, 'no_lang_code', 'name', 'Great Basin Data Recovery (United States)'),
(80296, 66962, 'en', 'name', 'Arkansas State Crime Laboratory'),
(80297, 66963, 'en', 'name', 'National Association of Drug Court Professionals'),
(80298, 66964, 'no_lang_code', 'name', 'Grier Forensics (United States)'),
(80299, 66965, 'en', 'name', 'The Cancer Treatment Center'),
(80300, 66966, 'en', 'name', 'National Council of Juvenile and Family Court Judges'),
(80301, 66967, 'en', 'name', 'Houston Forensic Science Center'),
(80302, 66968, 'en', 'name', 'Houston-Galveston Area Council'),
(80303, 66969, 'en', 'name', 'National District Attorneys Association'),
(80304, 66970, 'en', 'name', 'International Association of Directors of Law Enforcement Standards and Training'),
(80305, 66971, 'en', 'name', 'BKForensics'),
(80306, 66972, 'en', 'name', 'National Legal Aid & Defender Association'),
(80307, 66973, 'en', 'name', 'Indiana Criminal Justice Institute'),
(80308, 66974, 'no_lang_code', 'name', 'InnoGenomics (United States)'),
(80309, 66975, 'en', 'name', 'Cadre Research'),
(80310, 66976, 'en', 'name', 'Institute for Intergovernmental Research'),
(80311, 66977, 'en', 'name', 'California Institute for Behavioral Health Solutions'),
(80312, 66978, 'en', 'name', 'Northeastern Illinois Regional Crime Laboratory'),
(80313, 66979, 'en', 'name', 'Northwest Professional Consortium'),
(80314, 66980, 'en', 'name', 'Institute for Linguistic Evidence'),
(80315, 66981, 'en', 'name', 'National White Collar Crime Center'),
(80316, 66982, 'en', 'name', 'Occupational Research and Assessment'),
(80317, 66983, 'en', 'name', 'Center For Policy Research'),
(80318, 66984, 'en', 'name', 'Connections for Abused Women and their Children'),
(80319, 66985, 'en', 'name', 'Paternity Testing Corporation Laboratories'),
(80320, 66986, 'en', 'name', 'Pennsylvania Coalition Against Domestic Violence'),
(80321, 66987, 'no_lang_code', 'name', 'Miltran (United States)'),
(80322, 66988, 'en', 'name', 'Interdisciplinary Scientific Research'),
(80323, 66989, 'no_lang_code', 'name', 'PharmChem (United States)'),
(80324, 66990, 'en', 'name', 'International Association of Forensic Nurses'),
(80325, 66991, 'en', 'name', 'Police Executive Research Forum'),
(80326, 66992, 'en', 'name', 'IsoForensics'),
(80327, 66993, 'no_lang_code', 'name', 'Maximus (United States)'),
(80328, 66994, 'en', 'name', 'Coalition Against Trafficking Women'),
(80329, 66995, 'en', 'name', 'Pretrial Justice Institute'),
(80330, 66996, 'en', 'name', 'Justice & Security Strategies'),
(80331, 66997, 'en', 'name', 'Justice Research and Statistics Association'),
(80332, 66998, 'en', 'name', 'Connecticut Statistical Analysis Center'),
(80333, 66999, 'en', 'name', 'The Justice Research Center'),
(80334, 67000, 'en', 'name', 'Division of Public Defender Services'),
(80335, 67001, 'en', 'name', 'Language Systems International College of English'),
(80336, 67002, 'no_lang_code', 'name', 'The McCrone Group (United States)'),
(80337, 67003, 'en', 'name', 'Pretrial Services Agency for the District of Columbia'),
(80338, 67004, 'no_lang_code', 'name', 'Search'),
(80339, 67005, 'no_lang_code', 'name', 'RentPath (United States)'),
(80340, 67006, 'en', 'name', 'Day One'),
(80341, 67007, 'en', 'name', 'Social Science Research and Evaluation'),
(80342, 67008, 'no_lang_code', 'name', 'Social Policy Research Associates (United States)'),
(80343, 67009, 'en', 'name', 'South Dakota Department of Public Safety'),
(80344, 67010, 'no_lang_code', 'name', 'Stoney Forensic (United States)'),
(80345, 67011, 'en', 'name', 'Telecommunications Industry Association'),
(80346, 67012, 'en', 'name', 'Texas Association Against Sexual Assault'),
(80347, 67013, 'en', 'name', 'The Center For Rural Development'),
(80348, 67014, 'no_lang_code', 'name', 'Vanu (United States)'),
(80349, 67015, 'en', 'name', 'International Union of Police Associations'),
(80350, 67016, 'no_lang_code', 'name', 'Vere Software (United States)'),
(80351, 67017, 'en', 'name', 'The Reed Institute'),
(80352, 67018, 'en', 'name', 'Virginia Center for Policing Innovation'),
(80353, 67019, 'no_lang_code', 'name', 'Bova (Taiwan)'),
(80354, 67020, 'en', 'name', 'West Virginia Department of Military Affairs and Public Safety'),
(80355, 67021, 'en', 'name', 'Western Forensic Law Enforcement Training Center'),
(80356, 67022, 'no_lang_code', 'name', 'Allen (United States)'),
(80357, 67023, 'no_lang_code', 'name', 'Data One Global (United States)'),
(80358, 67024, 'en', 'name', 'Institute of Biomedical Physics'),
(80359, 67024, 'vi', 'name', 'Viện Vįŗ­t Lý Y Sinh'),
(80360, 67025, 'no_lang_code', 'name', 'A J Tuck (United States)'),
(80361, 67026, 'no_lang_code', 'name', 'Phenikaa (Vietnam)'),
(80362, 67027, 'no_lang_code', 'name', 'Deregallera (United Kingdom)'),
(80363, 67028, 'en', 'name', 'Institute of Hydrogeology and Geoecology. Ahmedsafina'),
(80364, 67028, 'kk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГрогеологии Šø Š³ŠµŠ¾ŃŠŗŠ¾Š»Š¾Š³ŠøŠø им. АхмеГсафина'),
(80365, 67029, 'no_lang_code', 'name', 'Advanced Algorithm and Systems (Japan)'),
(80366, 67030, 'no_lang_code', 'name', 'Dinntec (Colombia)'),
(80367, 67031, 'es', 'name', 'Instituto de Investigaciones FĆ­sicas de Mar del Plata'),
(80368, 67032, 'en', 'name', 'Institute of Physics and Technology'),
(80369, 67032, 'ru', 'name', 'науки Физико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(80370, 67033, 'en', 'name', 'Institute of Physics of Molecules and Crystals'),
(80371, 67033, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики молекул Šø кристаллов'),
(80372, 67034, 'no_lang_code', 'name', 'ECM Technologies (France)'),
(80373, 67035, 'es', 'name', 'Instituto de FĆ­sica del Sur'),
(80374, 67036, 'en', 'name', 'African Centre for Advanced Studies'),
(80375, 67037, 'no_lang_code', 'name', 'Electric Ant Lab (Netherlands)'),
(80376, 67038, 'en', 'name', 'Interdisciplinary Scientific Center J.-V. Poncelet'),
(80377, 67039, 'he', 'name', 'Ambasciata d''Italia'),
(80378, 67039, 'en', 'name', 'Embassy of Italy in Tel Aviv'),
(80379, 67040, 'no_lang_code', 'name', 'Aizu Hokurei High School'),
(80380, 67041, 'no_lang_code', 'name', 'Invenia (Canada)'),
(80381, 67042, 'en', 'name', 'Ethiopian Space Science and Technology Institute'),
(80382, 67042, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆµį”įˆµ įˆ³į‹­įŠ•įˆµ įŠ„įŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ į‰°į‰‹įˆ'),
(80383, 67043, 'en', 'name', 'Islamic Azad University of Marand'),
(80384, 67044, 'no_lang_code', 'name', 'ISTEQ (Netherlands)'),
(80385, 67045, 'no_lang_code', 'name', 'Iteratec (Germany)'),
(80386, 67046, 'no_lang_code', 'name', 'EUV Labs (Russia)'),
(80387, 67047, 'no_lang_code', 'name', 'FirstPass Engineering (United States)'),
(80388, 67048, 'no_lang_code', 'name', 'Folio Photonics (United States)'),
(80389, 67049, 'no_lang_code', 'name', 'Fomos-Materials (Russia)'),
(80390, 67050, 'fr', 'name', 'Alistore'),
(80391, 67051, 'en', 'name', 'Directorate General of Training'),
(80392, 67052, 'en', 'name', 'Jinan Institute of Quantum Technology'),
(80393, 67052, 'zh', 'name', 'ęµŽå—é‡å­ęŠ€ęœÆē ”ē©¶é™¢'),
(80394, 67053, 'no_lang_code', 'name', 'Greenerwave (France)'),
(80395, 67054, 'it', 'name', 'Osservativa di Campo Imperatore'),
(80396, 67055, 'no_lang_code', 'name', 'Grinm Advanced Materials (China)'),
(80397, 67055, 'zh', 'name', 'ęœ‰ē ”ę–°ęę–™č‚”ä»½ęœ‰é™å…¬åø'),
(80398, 67056, 'no_lang_code', 'name', 'Kelenn Technology (France)'),
(80399, 67057, 'de', 'name', 'Maschinenbauschule Ansbach'),
(80400, 67058, 'no_lang_code', 'name', 'Patliputra University'),
(80401, 67059, 'no_lang_code', 'name', 'Artwork Conversion Software (United States)'),
(80402, 67060, 'no_lang_code', 'name', 'Gyan Data (India)'),
(80403, 67061, 'en', 'name', 'Association for India’s Development'),
(80404, 67062, 'en', 'name', 'Hadaf Institute of Higher Education'),
(80405, 67063, 'no_lang_code', 'name', 'Hefei CAS Ion Medical and Technical Devices (China)'),
(80406, 67063, 'zh', 'name', 'åˆč‚„äø­ē§‘ē¦»å­åŒ»å­¦ęŠ€ęœÆč£…å¤‡'),
(80407, 67064, 'en', 'name', 'AARP Foundation'),
(80408, 67065, 'no_lang_code', 'name', 'KW Engineering (United States)'),
(80409, 67066, 'no_lang_code', 'name', 'Hongzhiwei Technology (China)'),
(80410, 67066, 'zh', 'name', 'éøæä¹‹å¾®ē§‘ęŠ€'),
(80411, 67067, 'es', 'name', 'Instituto Universitario Hospital Italiano'),
(80412, 67068, 'no_lang_code', 'name', 'HOPE Innovations (Canada)'),
(80413, 67069, 'no_lang_code', 'name', 'Hotto Link (Japan)'),
(80414, 67070, 'no_lang_code', 'name', 'Illumisonics (Canada)'),
(80415, 67071, 'no_lang_code', 'name', 'Laipac Technology (Canada)'),
(80416, 67072, 'no_lang_code', 'name', 'LTCalcoli (Italy)'),
(80417, 67073, 'no_lang_code', 'name', 'Lumetrics (United States)'),
(80418, 67074, 'no_lang_code', 'name', 'Infinia ML (United States)'),
(80419, 67075, 'en', 'name', 'Luxembourg School of Business'),
(80420, 67076, 'no_lang_code', 'name', 'Machakos School'),
(80421, 67077, 'en', 'name', 'Institute for Molecular Manufacturing'),
(80422, 67078, 'en', 'name', 'Ajmal College of Arts and Science'),
(80423, 67079, 'en', 'name', 'Maxwell Air Force Base'),
(80424, 67080, 'it', 'name', 'Istituto Tecnico Industriale Alessandro Volta'),
(80425, 67081, 'fr', 'name', 'Laboratoire de Recherche Scientifique'),
(80426, 67082, 'no_lang_code', 'name', 'Muquans (France)'),
(80427, 67083, 'en', 'name', 'Federal State Budget Scientific Institution Institute of Applied Mathematics and Automation'),
(80428, 67083, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ Š˜ŠšŠ›ŠŠ”ŠŠžŠ™ ŠœŠŠ¢Š•ŠœŠŠ¢Š˜ŠšŠ˜ И ŠŠ’Š¢ŠžŠœŠŠ¢Š˜Š—ŠŠ¦Š˜Š˜'),
(80429, 67084, 'en', 'name', 'Nanjing Foreign Language School'),
(80430, 67084, 'zh', 'name', 'å—äŗ¬å¤–å›½čÆ­å­¦ę ”'),
(80431, 67085, 'no_lang_code', 'name', 'Nanoacademic Technologies'),
(80432, 67086, 'no_lang_code', 'name', 'Nanosc (Sweden)'),
(80433, 67087, 'no_lang_code', 'name', 'Bergoz Instrumentation (France)'),
(80434, 67088, 'it', 'name', 'Istituto di Istruzione Secondaria Superiore "V. Lilla" Francavilla Fontana - Oria'),
(80435, 67089, 'no_lang_code', 'name', 'B M Birla Science Centre'),
(80436, 67090, 'en', 'name', 'Breakthrough Science Society'),
(80437, 67091, 'en', 'name', 'ARC Centre of Excellence for Gravitational Wave Discovery'),
(80438, 67092, 'en', 'name', 'Brockhouse Institute for Materials Research'),
(80439, 67093, 'no_lang_code', 'name', 'Cameca (United States)'),
(80440, 67094, 'en', 'name', 'Canfranc Underground Laboratory'),
(80441, 67094, 'es', 'name', 'Laboratorio SubterrƔneo de Canfranc'),
(80442, 67095, 'no_lang_code', 'name', 'NBL Technovator Group (Japan)'),
(80443, 67096, 'en', 'name', 'National Engineering and Scientific Commission'),
(80444, 67097, 'no_lang_code', 'name', 'Niki (Greece)'),
(80445, 67098, 'es', 'name', 'Centro de Recursos Educativos Avanzados'),
(80446, 67099, 'no_lang_code', 'name', 'Nomura Plating (Japan)'),
(80447, 67100, 'no_lang_code', 'name', 'Norstel (Sweden)'),
(80448, 67101, 'no_lang_code', 'name', 'Choshu Industry (Japan)'),
(80449, 67101, 'ja', 'name', 'é•·å·žē”£ę„­'),
(80450, 67102, 'no_lang_code', 'name', 'Oxipit (Lithuania)'),
(80451, 67103, 'no_lang_code', 'name', 'CLEARink (United States)'),
(80452, 67104, 'sr', 'name', 'Istraživačka stanica Petnica'),
(80453, 67104, 'en', 'name', 'Petnica Science Center'),
(80454, 67105, 'no_lang_code', 'name', 'CLEARink (Canada)'),
(80455, 67106, 'uz', 'name', 'Fizika-Texnika Instituti'),
(80456, 67106, 'en', 'name', 'Physicotechnical Institute'),
(80457, 67107, 'no_lang_code', 'name', 'Cognitec (Germany)'),
(80458, 67108, 'no_lang_code', 'name', 'PNDetector (Germany)'),
(80459, 67109, 'en', 'name', 'Military Institute of Telecommunications and Informatization'),
(80460, 67109, 'uk', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ зв''ŃŠ·ŠŗŃƒ'),
(80461, 67110, 'en', 'name', 'Rome International Center for Materials Science'),
(80462, 67111, 'no_lang_code', 'name', 'Compass Manufacturing Services (United States)'),
(80463, 67112, 'no_lang_code', 'name', 'Corrected Electron Optical Systems (Germany)'),
(80464, 67113, 'en', 'name', 'Quantum Gravity Research'),
(80465, 67114, 'no_lang_code', 'name', 'Quazar Technologies (India)'),
(80466, 67115, 'en', 'name', 'QuTech'),
(80467, 67116, 'no_lang_code', 'name', 'Radosys (Hungary)'),
(80468, 67117, 'no_lang_code', 'name', 'Reece Innovation (United Kingdom)'),
(80469, 67118, 'no_lang_code', 'name', 'SHL Group (Taiwan)'),
(80470, 67119, 'en', 'name', 'CSIRO Scientific Computing'),
(80471, 67120, 'en', 'name', 'Regional Centre of Advanced Technologies and Materials'),
(80472, 67120, 'cs', 'name', 'RegionÔlní Centrum Pokrocilych Technologií a MateriÔlů'),
(80473, 67121, 'en', 'name', 'Seoyeong University'),
(80474, 67122, 'no_lang_code', 'name', 'Dassault SystĆØmes (Japan)'),
(80475, 67123, 'no_lang_code', 'name', 'Organic Electronics Saxony (Germany)'),
(80476, 67124, 'en', 'name', 'Research Organization for Information Science and Technology'),
(80477, 67124, 'ja', 'name', 'é«˜åŗ¦ęƒ…å ±ē§‘å­¦ęŠ€č”“ē ”ē©¶ę©Ÿę§‹'),
(80478, 67125, 'no_lang_code', 'name', 'SpaceX (United States)'),
(80479, 67126, 'en', 'name', 'Shantou Broadcasting and Television University'),
(80480, 67126, 'zh', 'name', '汕夓广播电视大学'),
(80481, 67127, 'no_lang_code', 'name', 'Q2 Solutions (United States)'),
(80482, 67128, 'en', 'name', 'Shenzhen Baoan High School Group'),
(80483, 67128, 'zh', 'name', 'ę·±åœ³åø‚å®å®‰äø­å­¦'),
(80484, 67129, 'no_lang_code', 'name', 'Tech-X (United Kingdom)'),
(80485, 67130, 'no_lang_code', 'name', 'SPring-8 (Japan)'),
(80486, 67130, 'ja', 'name', 'ć‚¹ćƒ—ćƒŖćƒ³ć‚°ć‚Øć‚¤ćƒˆć‚µćƒ¼ćƒ“ć‚¹'),
(80487, 67131, 'en', 'name', 'Ensenada Institute of Technology'),
(80488, 67131, 'es', 'name', 'Instituto Tecnológico de Ensenada'),
(80489, 67132, 'no_lang_code', 'name', 'TetraScience (United States)'),
(80490, 67133, 'en', 'name', 'State Cryptography Administration'),
(80491, 67133, 'zh', 'name', '国家密码箔理局'),
(80492, 67134, 'en', 'name', 'Tianjin Internal Combustion Engine Research Institute'),
(80493, 67134, 'zh', 'name', 'å¤©ę“„å†…ē‡ƒęœŗē ”ē©¶ę‰€'),
(80494, 67135, 'no_lang_code', 'name', 'Sunwave Solutions (China)'),
(80495, 67136, 'no_lang_code', 'name', 'Simerics (United States)'),
(80496, 67137, 'no_lang_code', 'name', 'Jingpin Materials (China)'),
(80497, 67137, 'zh', 'name', 'č‹å·žę™¶å“ę–°ęę–™č‚”ä»½ęœ‰é™å…¬åø'),
(80498, 67138, 'en', 'name', 'Singapore-HUJ Alliance for Research and Enterprise'),
(80499, 67139, 'no_lang_code', 'name', 'SwissLitho (Switzerland)'),
(80500, 67140, 'no_lang_code', 'name', 'SwissScientific Technologies (Switzerland)'),
(80501, 67141, 'fr', 'name', 'Institut Franco-Chinois de l''Energie NuclƩaire'),
(80502, 67141, 'zh', 'name', 'äø­ę³•ę øå·„ēØ‹äøŽęŠ€ęœÆå­¦é™¢'),
(80503, 67142, 'no_lang_code', 'name', 'Two Sigma Investments (United States)'),
(80504, 67143, 'no_lang_code', 'name', 'UIT Solutions (South Korea)'),
(80505, 67143, 'ko', 'name', 'ģœ ģ•„ģ“ķ‹°'),
(80506, 67144, 'no_lang_code', 'name', 'MegaChips (United States)'),
(80507, 67145, 'no_lang_code', 'name', 'Naftogaz (Ukraine)'),
(80508, 67145, 'uk', 'name', 'ŠŠ°Ń„Ń‚Š¾Š³Š°Š· України'),
(80509, 67146, 'no_lang_code', 'name', 'Wind Power Engineering (Japan)'),
(80510, 67147, 'en', 'name', 'Winnipeg Institute for Theoretical Physics'),
(80511, 67148, 'en', 'name', 'Xi''an High Tech University'),
(80512, 67148, 'zh', 'name', 'č„æå®‰é«˜ę–°ē§‘ęŠ€čŒäøšå­¦é™¢'),
(80513, 67149, 'en', 'name', 'Vietnam National University of Forestry'),
(80514, 67150, 'en', 'name', 'University of Science and Technology, Meghalaya'),
(80515, 67151, 'no_lang_code', 'name', 'Voltaiq (United States)'),
(80516, 67152, 'en', 'name', 'Thanhtay University'),
(80517, 67152, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c ThĆ nh TĆ¢y'),
(80518, 67153, 'en', 'name', 'Ironbridge Gorge Museum Trust'),
(80519, 67154, 'no_lang_code', 'name', 'KUKA (United Kingdom)'),
(80520, 67155, 'en', 'name', 'Leicestershire Fire and Rescue Service'),
(80521, 67156, 'en', 'name', 'Leicestershire Police'),
(80522, 67157, 'en', 'name', 'Leonard Cheshire'),
(80523, 67158, 'en', 'name', 'LGBT Youth Scotland'),
(80524, 67159, 'en', 'name', 'Lincolnshire County Council'),
(80525, 67160, 'no_lang_code', 'name', 'Roper Technologies (United Kingdom)'),
(80526, 67161, 'en', 'name', 'Lambeth Council'),
(80527, 67162, 'en', 'name', 'London Sinfonietta'),
(80528, 67163, 'en', 'name', 'Low Gillerthwaite Field Centre'),
(80529, 67164, 'no_lang_code', 'name', 'Suntory (United Kingdom)'),
(80530, 67165, 'en', 'name', 'BayMark Health Services'),
(80531, 67166, 'en', 'name', 'Maidstone Museum'),
(80532, 67167, 'en', 'name', 'National Army Museum'),
(80533, 67168, 'en', 'name', 'The National Autistic Society'),
(80534, 67169, 'cy', 'name', 'Gardd Fotaneg Genedlaethol Cymru'),
(80535, 67169, 'en', 'name', 'National Botanic Garden of Wales'),
(80536, 67170, 'en', 'name', 'Manufacturing Technologies Association'),
(80537, 67171, 'no_lang_code', 'name', 'Mowi (United Kingdom)'),
(80538, 67172, 'en', 'name', 'Lloyd''s'),
(80539, 67173, 'en', 'name', 'Mason Perkins Deafness Fund Onlus'),
(80540, 67174, 'es', 'name', 'Consejo Nacional de Areas Protegidas'),
(80541, 67174, 'en', 'name', 'National Council for Protected Areas'),
(80542, 67175, 'no_lang_code', 'name', 'Kyocera (United Kingdom)'),
(80543, 67176, 'en', 'name', 'Mauritian Wildlife Foundation'),
(80544, 67177, 'no_lang_code', 'name', 'Mettler-Toledo (United Kingdom)'),
(80545, 67178, 'en', 'name', 'National Energy Action'),
(80546, 67179, 'en', 'name', 'National Flood Forum'),
(80547, 67180, 'gd', 'name', 'Gailearaidhean NĆ iseanta na h-Alba'),
(80548, 67180, 'en', 'name', 'National Galleries of Scotland'),
(80549, 67181, 'en', 'name', 'National Agricultural Genotyping Center'),
(80550, 67182, 'en', 'name', 'Migrants Rights Network'),
(80551, 67183, 'en', 'name', 'The National Holocaust Centre & Museum'),
(80552, 67184, 'en', 'name', 'Mitchell Arts Centre'),
(80553, 67185, 'en', 'name', 'NHS Employers'),
(80554, 67186, 'en', 'name', 'Norfolk Museums Service'),
(80555, 67187, 'en', 'name', 'Norfolk Record Office'),
(80556, 67188, 'fr', 'name', 'Centre pour le contrƓle dƩmocratique des forces armƩes'),
(80557, 67188, 'en', 'name', 'Geneva Centre for the Democratic Control of Armed Forces'),
(80558, 67188, 'de', 'name', 'Genfer Zentrum für die demokratische Kontrolle der Streitkräfte'),
(80559, 67189, 'no_lang_code', 'name', 'Catalent (United Kingdom)'),
(80560, 67190, 'en', 'name', 'Newfoundland and Labrador Centre for Applied Health Research'),
(80561, 67191, 'en', 'name', 'Chartered Management Institute'),
(80562, 67192, 'cy', 'name', 'Cyngor Sir Fynwy'),
(80563, 67192, 'en', 'name', 'Monmouthshire County Council'),
(80564, 67193, 'en', 'name', 'North Lanarkshire Council'),
(80565, 67194, 'en', 'name', 'North Norfolk Clinical Commissioning Group'),
(80566, 67195, 'en', 'name', 'North Somerset Council'),
(80567, 67196, 'en', 'name', 'North Yorkshire County Council'),
(80568, 67197, 'en', 'name', 'Northern Ireland Housing Executive'),
(80569, 67198, 'en', 'name', 'Nottingham Contemporary'),
(80570, 67199, 'en', 'name', 'Exeter Northcott Theatre'),
(80571, 67200, 'fr', 'name', 'Industrie, Tourisme et Investissement'),
(80572, 67200, 'en', 'name', 'Industry, Tourism and Investment'),
(80573, 67201, 'pt', 'name', 'Museu da Lourinhã'),
(80574, 67202, 'en', 'name', 'Museum of London'),
(80575, 67203, 'no_lang_code', 'name', 'Nuvia (United Kingdom)'),
(80576, 67204, 'en', 'name', 'National Portrait Gallery'),
(80577, 67205, 'en', 'name', 'National Society for Earthquake Technology'),
(80578, 67206, 'en', 'name', 'Oldham Council'),
(80579, 67207, 'en', 'name', 'Orchestra of the Age of Enlightenment'),
(80580, 67208, 'no_lang_code', 'name', 'Furukawa Electric (Denmark)'),
(80581, 67209, 'en', 'name', 'National Theatre Wales'),
(80582, 67210, 'en', 'name', 'Parenting Across Scotland'),
(80583, 67211, 'en', 'name', 'Peace Through Folk'),
(80584, 67212, 'en', 'name', 'Pen International'),
(80585, 67213, 'en', 'name', 'Outcomes Based Healthcare'),
(80586, 67214, 'en', 'name', 'Peterborough City Council'),
(80587, 67215, 'no_lang_code', 'name', 'Netzsch (United Kingdom)'),
(80588, 67216, 'en', 'name', 'Oxford Spires Academy'),
(80589, 67217, 'en', 'name', 'Newark Air Museum'),
(80590, 67218, 'en', 'name', 'Future Earth'),
(80591, 67219, 'en', 'name', 'Places for People'),
(80592, 67220, 'en', 'name', 'Plymouth City Council'),
(80593, 67221, 'en', 'name', 'Department for Communities'),
(80594, 67222, 'et', 'name', 'PƵlva Haigla'),
(80595, 67223, 'en', 'name', 'Refugee Action'),
(80596, 67224, 'en', 'name', 'Refugee Council'),
(80597, 67225, 'en', 'name', 'Poplar Housing and Regeneration Community Association'),
(80598, 67226, 'en', 'name', 'Quality of Life Partnership'),
(80599, 67227, 'en', 'name', 'Regen'),
(80600, 67228, 'no_lang_code', 'name', 'Anton Paar (United States)'),
(80601, 67229, 'en', 'name', 'Portobello High School'),
(80602, 67230, 'en', 'name', 'Portsmouth City Council'),
(80603, 67231, 'en', 'name', 'The Potteries Museum and Art Gallery'),
(80604, 67232, 'en', 'name', 'Race Equality Foundation'),
(80605, 67233, 'no_lang_code', 'name', 'Andritz (United Kingdom)'),
(80606, 67234, 'en', 'name', 'Renewable Energy and Energy Efficiency Partnership'),
(80607, 67235, 'no_lang_code', 'name', 'ReproCELL (United Kingdom)'),
(80608, 67236, 'en', 'name', 'Resolution Fundation'),
(80609, 67237, 'no_lang_code', 'name', 'Primetals Technologies (United Kingdom)'),
(80610, 67238, 'en', 'name', 'Respect'),
(80611, 67239, 'en', 'name', 'Restoke'),
(80612, 67240, 'no_lang_code', 'name', 'Proboscis'),
(80613, 67241, 'en', 'name', 'Rethink Mental Illness'),
(80614, 67242, 'no_lang_code', 'name', 'Rigaku (United States)'),
(80615, 67243, 'en', 'name', 'Sampad'),
(80616, 67244, 'en', 'name', 'Royal African Society'),
(80617, 67245, 'no_lang_code', 'name', 'Scottish Canals (United Kingdom)'),
(80618, 67246, 'en', 'name', 'Scottish Community Development Centre'),
(80619, 67247, 'en', 'name', 'Shetland Arts'),
(80620, 67248, 'en', 'name', 'Shetland Museum and Archives'),
(80621, 67249, 'en', 'name', 'Scottish Hydrogen and Fuel Cell Association'),
(80622, 67250, 'en', 'name', 'Scottish Parliament'),
(80623, 67251, 'en', 'name', 'Scottish Poetry Library'),
(80624, 67252, 'en', 'name', 'Royal National Theatre'),
(80625, 67253, 'en', 'name', 'Scottish Refugee Council'),
(80626, 67254, 'en', 'name', 'Royal Opera House'),
(80627, 67255, 'no_lang_code', 'name', 'Royal Shakespeare Company (United Kingdom)'),
(80628, 67256, 'en', 'name', 'Royal Society for Public Health'),
(80629, 67257, 'en', 'name', 'Scottish Wildlife Trust'),
(80630, 67258, 'en', 'name', 'Social Market Foundation'),
(80631, 67259, 'en', 'name', 'Software Carpentry'),
(80632, 67260, 'en', 'name', 'Salford Museum and Art Gallery'),
(80633, 67261, 'no_lang_code', 'name', 'Capgemini (United Kingdom)'),
(80634, 67262, 'no_lang_code', 'name', 'CRRC (United Kingdom)'),
(80635, 67263, 'en', 'name', 'St Paul''s Cathedral'),
(80636, 67264, 'en', 'name', 'Solas Festival'),
(80637, 67265, 'en', 'name', 'Staffordshire County Council'),
(80638, 67266, 'en', 'name', 'South Belfast Partnership Board'),
(80639, 67267, 'en', 'name', 'The Community Trust'),
(80640, 67268, 'en', 'name', 'Sensory Support Service'),
(80641, 67269, 'en', 'name', 'South Downs National Park Authority'),
(80642, 67270, 'en', 'name', 'South Lanarkshire Council'),
(80643, 67271, 'en', 'name', 'SETsquared Partnership'),
(80644, 67272, 'en', 'name', 'South West Yorkshire Partnership NHS Foundation Trust'),
(80645, 67273, 'en', 'name', 'East Suffolk Council'),
(80646, 67274, 'no_lang_code', 'name', 'BorgWarner (United Kingdom)'),
(80647, 67275, 'en', 'name', 'South Yorkshire Fire and Rescue'),
(80648, 67276, 'en', 'name', 'Southbank Centre'),
(80649, 67277, 'en', 'name', 'British Chambers of Commerce'),
(80650, 67278, 'en', 'name', 'Shakespeare Birthplace Trust'),
(80651, 67279, 'en', 'name', 'Shakespeare Globe Trust'),
(80652, 67280, 'de', 'name', 'Spiekermann and Wegener'),
(80653, 67281, 'en', 'name', 'Staffordshire Film Archive'),
(80654, 67282, 'no_lang_code', 'name', 'Spirit AeroSystems (United Kingdom)'),
(80655, 67283, 'cy', 'name', 'Chwaraeon Cymru'),
(80656, 67283, 'en', 'name', 'Sport Wales'),
(80657, 67284, 'en', 'name', 'Torbay Council'),
(80658, 67285, 'fr', 'name', 'BibliothĆØque de Toulouse'),
(80659, 67286, 'en', 'name', 'Tearfund'),
(80660, 67287, 'en', 'name', 'The National Lobster Hatchery'),
(80661, 67288, 'en', 'name', 'Transparency International'),
(80662, 67289, 'en', 'name', 'The Reader'),
(80663, 67290, 'en', 'name', 'Terrence Higgins Trust'),
(80664, 67291, 'en', 'name', 'Our Lady of Maryknoll Hospital'),
(80665, 67291, 'zh', 'name', 'č–ęÆé†«é™¢'),
(80666, 67292, 'en', 'name', 'National Central Library'),
(80667, 67292, 'zh', 'name', 'åœ‹å®¶åœ–ę›øé¤Ø'),
(80668, 67293, 'en', 'name', 'Campaign to End Loneliness'),
(80669, 67294, 'en', 'name', 'Theatre Royal and Royal Concert Hall'),
(80670, 67295, 'en', 'name', 'The Culture Capital Exchange'),
(80671, 67296, 'en', 'name', 'York Theatre Royal'),
(80672, 67297, 'en', 'name', 'Thackray Medical Museum'),
(80673, 67298, 'en', 'name', 'Theodore Roosevelt Association'),
(80674, 67299, 'en', 'name', 'Tunbridge Wells Museum & Art Gallery'),
(80675, 67300, 'en', 'name', 'V&A Museum of Childhood'),
(80676, 67301, 'no_lang_code', 'name', 'Vestas (United Kingdom)'),
(80677, 67302, 'en', 'name', 'Kern Community College District'),
(80678, 67303, 'en', 'name', 'Watermans'),
(80679, 67304, 'en', 'name', 'Wales & West Housing'),
(80680, 67305, 'en', 'name', 'Weight Concern'),
(80681, 67306, 'en', 'name', 'Water Industry Forum'),
(80682, 67307, 'en', 'name', 'West Dunbartonshire Council'),
(80683, 67308, 'en', 'name', 'West Lothian Council'),
(80684, 67309, 'en', 'name', 'Thomas Pocklington Trust'),
(80685, 67310, 'en', 'name', 'West Midlands Police'),
(80686, 67311, 'en', 'name', 'Thomson Reuters Foundation'),
(80687, 67312, 'en', 'name', 'Whitechapel Gallery'),
(80688, 67313, 'en', 'name', 'Tinderbox Theatre'),
(80689, 67314, 'en', 'name', 'Wired Sussex'),
(80690, 67315, 'en', 'name', 'What Works Network'),
(80691, 67316, 'en', 'name', 'Tyneside Cinema'),
(80692, 67317, 'en', 'name', 'Yorkshire Dales Rivers Trust'),
(80693, 67318, 'en', 'name', 'Working Families'),
(80694, 67319, 'en', 'name', 'YoungMinds'),
(80695, 67320, 'en', 'name', 'UK Health Forum'),
(80696, 67321, 'en', 'name', 'WORLDwrite'),
(80697, 67322, 'en', 'name', 'UK Music'),
(80698, 67323, 'en', 'name', 'National Centre for Writing'),
(80699, 67324, 'no_lang_code', 'name', 'Xilinx (Ireland)'),
(80700, 67325, 'en', 'name', 'York Museums Trust'),
(80701, 67326, 'en', 'name', 'York, North Yorkshire and East Riding Enterprise Partnership'),
(80702, 67327, 'en', 'name', 'Yorkshire Agricultural Society'),
(80703, 67328, 'en', 'name', 'Alfred Williams Heritage Society'),
(80704, 67329, 'en', 'name', 'Association for Real Change'),
(80705, 67330, 'en', 'name', '32° East Ugandan Arts Trust'),
(80706, 67331, 'no_lang_code', 'name', '4D (United Kingdom)'),
(80707, 67332, 'no_lang_code', 'name', 'All India Kisan Sabha'),
(80708, 67332, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ किसान सभा'),
(80709, 67333, 'en', 'name', 'Association for Robots in Architecture'),
(80710, 67334, 'en', 'name', 'Association for the Prevention of Torture'),
(80711, 67335, 'en', 'name', 'All Ireland Institute for Hospice and Palliative Care'),
(80712, 67336, 'no_lang_code', 'name', 'A Luck Associates (United Kingdom)'),
(80713, 67337, 'en', 'name', 'Association for Young People’s Health'),
(80714, 67338, 'no_lang_code', 'name', 'All Street Research (United Kingdom)'),
(80715, 67339, 'no_lang_code', 'name', 'Adams Business Associates (United Kingdom)'),
(80716, 67340, 'en', 'name', 'ALZHIR Museum and Memorial Complex'),
(80717, 67340, 'ru', 'name', 'Музейно-Š¼ŠµŠ¼Š¾Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ комплекс "ŠŠ›Š–Š˜Š "'),
(80718, 67340, 'kk', 'name', 'ŠœŅ±Ń€Š°Š¶Š°Š¹ мен Ā«ŠŠ›Š–Š˜Š Ā» мемориалГы ŠŗŠµŃˆŠµŠ½Ń–Š½Ń–Ņ£'),
(80719, 67341, 'no_lang_code', 'name', 'Abeno Harukas Art Museum'),
(80720, 67341, 'ja', 'name', 'ć‚ć¹ć®ćƒćƒ«ć‚«ć‚¹ē¾Žč”“é¤Ø'),
(80721, 67342, 'no_lang_code', 'name', 'Amalgamated Sugar (United States)'),
(80722, 67343, 'en', 'name', 'Abergavenny Museum'),
(80723, 67344, 'en', 'name', 'Amani Institute Uganda'),
(80724, 67345, 'en', 'name', 'Aberlour'),
(80725, 67346, 'en', 'name', 'Association of Breastfeeding Mothers'),
(80726, 67347, 'en', 'name', 'Association of British Insurers'),
(80727, 67348, 'en', 'name', 'American Bible Society'),
(80728, 67349, 'en', 'name', 'Academic Health Science Network North East and North Cumbria'),
(80729, 67350, 'en', 'name', 'American Institute of Indian Studies'),
(80730, 67350, 'hi', 'name', 'ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤Ø ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ इंऔियन ą¤øą„ą¤Ÿą¤”ą„€ą¤œ'),
(80731, 67351, 'en', 'name', 'Association of British Orchestras'),
(80732, 67352, 'no_lang_code', 'name', 'Academic Rights Press (United Kingdom)'),
(80733, 67353, 'en', 'name', 'Amical Veterinary Centre'),
(80734, 67354, 'en', 'name', 'Association of British Professional Conference Organisers'),
(80735, 67355, 'en', 'name', 'Association of Chief Executives of Voluntary Organisations'),
(80736, 67356, 'en', 'name', 'Association of Colleges'),
(80737, 67357, 'en', 'name', 'Association of Convenience Stores'),
(80738, 67358, 'en', 'name', 'Dupuytren Research Group'),
(80739, 67359, 'en', 'name', 'The Association of Early Pregnancy Units'),
(80740, 67360, 'en', 'name', 'Association of English Cathedrals'),
(80741, 67361, 'en', 'name', 'Amina'),
(80742, 67362, 'en', 'name', 'Association of Illustrators'),
(80743, 67363, 'en', 'name', 'Academy of Ancient Music'),
(80744, 67364, 'en', 'name', 'Association of Independent Crop Consultants'),
(80745, 67365, 'en', 'name', 'Association of Industrial Laser Users'),
(80746, 67366, 'no_lang_code', 'name', 'And Technology Research (United Kingdom)'),
(80747, 67367, 'en', 'name', 'Association of London Environmental Health Managers'),
(80748, 67368, 'en', 'name', 'Angela Ash Associates'),
(80749, 67369, 'no_lang_code', 'name', 'Active Medicine (United Kingdom)'),
(80750, 67370, 'no_lang_code', 'name', 'Osteotronix (United Kingdom)'),
(80751, 67371, 'no_lang_code', 'name', 'Ad-Tech (United States)'),
(80752, 67372, 'no_lang_code', 'name', 'Adelwitz Technologiezentrum (Germany)'),
(80753, 67373, 'no_lang_code', 'name', 'Altmetric (United Kingdom)'),
(80754, 67374, 'no_lang_code', 'name', 'Advanced Medical Equipment (United Kingdom)'),
(80755, 67375, 'en', 'name', 'Association on Higher Education And Disability'),
(80756, 67376, 'no_lang_code', 'name', 'Advanced Medical Solutions Group (United Kingdom)'),
(80757, 67377, 'en', 'name', 'Aston Reinvestment Trust'),
(80758, 67378, 'en', 'name', 'Advanced Propulsion Centre'),
(80759, 67379, 'sv', 'name', 'Finlands Nationalgalleri'),
(80760, 67379, 'en', 'name', 'Finnish National Gallery'),
(80761, 67379, 'fi', 'name', 'Suomen Kansallisgalleria'),
(80762, 67380, 'no_lang_code', 'name', 'Advent Life Sciences (United Kingdom)'),
(80763, 67381, 'en', 'name', 'National Education Union'),
(80764, 67382, 'en', 'name', 'African Centre for Global Health and Social Transformation'),
(80765, 67383, 'en', 'name', 'Angelman Syndrome Support Education & Research Trust'),
(80766, 67384, 'en', 'name', 'African Centre for Parliamentary Affairs'),
(80767, 67385, 'no_lang_code', 'name', 'Aurelia Bioscience (United Kingdom)'),
(80768, 67386, 'en', 'name', 'The Angelou Centre'),
(80769, 67387, 'en', 'name', 'Mentor'),
(80770, 67388, 'en', 'name', 'Auroville Foundation'),
(80771, 67389, 'en', 'name', 'African Heritage and Educational Centre'),
(80772, 67390, 'en', 'name', 'Australian Centre for Plant Functional Genomics'),
(80773, 67391, 'en', 'name', 'Angling Trust'),
(80774, 67392, 'en', 'name', 'African Network for Internationalization of Education'),
(80775, 67393, 'en', 'name', 'Anglo-Norman Text Society'),
(80776, 67394, 'en', 'name', 'Alfred Gillett Trust'),
(80777, 67395, 'en', 'name', 'Angmering Community Centre'),
(80778, 67396, 'en', 'name', 'Anna Lindh Foundation'),
(80779, 67397, 'en', 'name', 'The Anne Frank Trust UK'),
(80780, 67398, 'no_lang_code', 'name', 'Agile Scientific (Canada)'),
(80781, 67399, 'en', 'name', 'Action for Trans Health'),
(80782, 67400, 'en', 'name', 'Action Against Medical Accidents'),
(80783, 67401, 'en', 'name', 'Avvai Village Welfare Society'),
(80784, 67401, 'ta', 'name', 'ą®…ą®µąÆą®µąÆˆ ą®•ą®æą®°ą®¾ą®®ą®®ąÆ ą®Øą®²ąÆą®µą®¾ą®“ąÆą®µąÆ ą®šą®™ąÆą®•ą®¤ąÆą®¤ą®¾ą®²ąÆ'),
(80785, 67402, 'en', 'name', 'The Aquatic Coleoptera Conservation Trust'),
(80786, 67403, 'en', 'name', 'Agricultural Genetics Institute'),
(80787, 67403, 'vi', 'name', 'Viện Di truyền NĆ“ng nghiệp'),
(80788, 67404, 'no_lang_code', 'name', 'Axillium Research (United Kingdom)'),
(80789, 67405, 'en', 'name', 'Bach Dancing and Dynamite Society'),
(80790, 67406, 'pt', 'name', 'Hospital AraĆŗjo Jorge'),
(80791, 67407, 'en', 'name', 'Ahmed Iqbal Ullah Education Trust'),
(80792, 67408, 'fr', 'name', 'Fondation ARCAD'),
(80793, 67409, 'en', 'name', 'Bali Animal Welfare Association'),
(80794, 67410, 'en', 'name', 'Architects for Health'),
(80795, 67411, 'no_lang_code', 'name', 'Airospring (United Kingdom)'),
(80796, 67412, 'en', 'name', 'Airport Services Association'),
(80797, 67413, 'sv', 'name', 'Svenskt fjƤll- och samemuseum'),
(80798, 67413, 'no_lang_code', 'name', 'Ɓjtte'),
(80799, 67414, 'en', 'name', 'Balor Arts Centre'),
(80800, 67415, 'en', 'name', 'Baltic Sea Cultural Centre in Gdańsk'),
(80801, 67415, 'pl', 'name', 'Nadbałtyckie Centrum Kultury'),
(80802, 67416, 'en', 'name', 'Alamire Foundation'),
(80803, 67417, 'en', 'name', 'Ardler Village Trust'),
(80804, 67418, 'no_lang_code', 'name', 'ƅland Maritime Museum'),
(80805, 67418, 'sv', 'name', 'ƅlands sjƶfartsmuseum'),
(80806, 67419, 'en', 'name', 'Barber Institute of Fine Arts'),
(80807, 67420, 'no_lang_code', 'name', 'Arete (United Kingdom)'),
(80808, 67421, 'en', 'name', 'Barrier Breakers Foundation'),
(80809, 67422, 'en', 'name', 'Association for Play Therapy'),
(80810, 67423, 'en', 'name', 'Comann Eachdraidh Bharabhais Agus Bhrù'),
(80811, 67424, 'en', 'name', 'The Basketmakers Association'),
(80812, 67425, 'es', 'name', 'Fundacion ArriarƔn'),
(80813, 67426, 'en', 'name', 'Bath Social and Development Research'),
(80814, 67427, 'fr', 'name', 'Arteria'),
(80815, 67428, 'en', 'name', 'Bay Area Cardiology and Vascular Associates'),
(80816, 67429, 'no_lang_code', 'name', 'Biocentre Technology (United Kingdom)'),
(80817, 67430, 'en', 'name', 'Arts & Health South'),
(80818, 67431, 'en', 'name', 'Bayimba'),
(80819, 67432, 'en', 'name', 'Bee Farmers Association'),
(80820, 67433, 'no_lang_code', 'name', 'Biomass and Fossil Fuel Research Alliance (United Kingdom)'),
(80821, 67434, 'no_lang_code', 'name', 'Brain (Germany)'),
(80822, 67435, 'en', 'name', 'Birmingham Museums Trust'),
(80823, 67436, 'en', 'name', 'Black Country Living Museum'),
(80824, 67437, 'en', 'name', 'Ashwell Museum'),
(80825, 67438, 'en', 'name', 'Belfast Charitable Society'),
(80826, 67439, 'en', 'name', 'ASEM Water Resources Research and Development Centre'),
(80827, 67440, 'en', 'name', 'Belfast Healthy Cities'),
(80828, 67441, 'en', 'name', 'Bell Educational Trust'),
(80829, 67442, 'en', 'name', 'Bellahouston Academy'),
(80830, 67443, 'en', 'name', 'Asian Arts Agency'),
(80831, 67444, 'en', 'name', 'Bennetts Associates'),
(80832, 67445, 'en', 'name', 'Bletchley Park Trust'),
(80833, 67446, 'en', 'name', 'Asian Women Lone Parent Association'),
(80834, 67447, 'sv', 'name', 'Bergslagssjukhuset'),
(80835, 67448, 'en', 'name', 'Blind and Sight Impaired Society'),
(80836, 67449, 'no_lang_code', 'name', 'Aspin (United Kingdom)');
INSERT INTO `ror_settings` VALUES
(80837, 67450, 'en', 'name', 'Blue Marine Foundation'),
(80838, 67451, 'en', 'name', 'Blueberry Academy'),
(80839, 67452, 'en', 'name', 'Booksellers Association'),
(80840, 67453, 'en', 'name', 'Lourdes Health System'),
(80841, 67454, 'en', 'name', 'Botswana Institute for Technology Research and Innovation'),
(80842, 67455, 'no_lang_code', 'name', 'BPR Medical (United Kingdom)'),
(80843, 67456, 'no_lang_code', 'name', 'Associated Research (United States)'),
(80844, 67457, 'en', 'name', 'Bradford Museums and Galleries'),
(80845, 67458, 'en', 'name', 'Center for Effective Global Action'),
(80846, 67459, 'en', 'name', 'Berkhamsted and District Archaeological Society'),
(80847, 67460, 'no_lang_code', 'name', 'Brandon Medical (United Kingdom)'),
(80848, 67461, 'en', 'name', 'Association for Decentralised Energy'),
(80849, 67462, 'en', 'name', 'Berkshire Buckinghamshire and Oxfordshire Wildlife Trust'),
(80850, 67463, 'en', 'name', 'Association for Learning Technology'),
(80851, 67464, 'pt', 'name', 'Associação Brasileira de Esclerose Lateral Amiotrófica'),
(80852, 67465, 'en', 'name', 'Association for Prevention and Control of Rabies in India'),
(80853, 67466, 'en', 'name', 'Berneray Historical Society'),
(80854, 67466, 'gd', 'name', 'Comunn Eachdraidh BheĆ rnaraigh'),
(80855, 67467, 'pl', 'name', 'Beskidzkie Centrum Onkologii Szpital Miejski im. Jana Pawla II w Bielsku-Bialej'),
(80856, 67468, 'en', 'name', 'Brick Development Association'),
(80857, 67469, 'en', 'name', 'British Dragonfly Society'),
(80858, 67470, 'en', 'name', 'Brighton Museum'),
(80859, 67471, 'en', 'name', 'Beverly Hills Cardiology'),
(80860, 67472, 'en', 'name', 'Bexhill Museum'),
(80861, 67473, 'en', 'name', 'Royal Pavilion'),
(80862, 67474, 'en', 'name', 'Dudhope Multicultural Centre'),
(80863, 67475, 'en', 'name', 'British Gear Association'),
(80864, 67476, 'en', 'name', 'Brighton Peace and Environment Centre'),
(80865, 67477, 'en', 'name', 'Bolton Library and Museum Services'),
(80866, 67478, 'en', 'name', 'British Hydropower Association'),
(80867, 67479, 'en', 'name', 'The Bill Douglas Cinema Museum'),
(80868, 67480, 'en', 'name', 'British Industrial Design Association'),
(80869, 67481, 'en', 'name', 'Britannia Panopticon'),
(80870, 67482, 'en', 'name', 'British Institute of Facilities Management'),
(80871, 67483, 'en', 'name', 'Doc Society'),
(80872, 67484, 'en', 'name', 'British Institute of Non-Destructive Testing'),
(80873, 67485, 'en', 'name', 'British and Irish Association of Zoos and Aquariums'),
(80874, 67486, 'en', 'name', 'The British Antique Dealers Association'),
(80875, 67487, 'en', 'name', 'British Arts Festivals Association'),
(80876, 67488, 'en', 'name', 'British Machine Vision Association'),
(80877, 67489, 'no_lang_code', 'name', 'Bill Harvey Associates (United Kingdom)'),
(80878, 67490, 'no_lang_code', 'name', 'Bio Alternative Medical Devices (United Kingdom)'),
(80879, 67491, 'en', 'name', 'British Association for Immediate Care Scotland'),
(80880, 67492, 'en', 'name', 'British Meat Processors Association'),
(80881, 67493, 'en', 'name', 'British Association for Islamic Studies'),
(80882, 67494, 'no_lang_code', 'name', 'BWA (United Kingdom)'),
(80883, 67495, 'en', 'name', 'British Association for South Asian Studies'),
(80884, 67496, 'en', 'name', 'The Nuclear Institute'),
(80885, 67497, 'no_lang_code', 'name', 'CB Healthcare (India)'),
(80886, 67498, 'en', 'name', 'British Olympic Association'),
(80887, 67499, 'en', 'name', 'Cadence Performance'),
(80888, 67500, 'no_lang_code', 'name', 'CalciMedica (United States)'),
(80889, 67501, 'en', 'name', 'British Association of Social Workers'),
(80890, 67502, 'en', 'name', 'British Limousin Cattle Society'),
(80891, 67503, 'es', 'name', 'Dirección Regional de Salud del Callao'),
(80892, 67504, 'en', 'name', 'British Ports Association'),
(80893, 67505, 'en', 'name', 'British Beet Research Organisation'),
(80894, 67506, 'en', 'name', 'British Record Society'),
(80895, 67507, 'no_lang_code', 'name', 'Callen Lenz (United Kingdom)'),
(80896, 67508, 'en', 'name', 'British Bobsleigh and Skeleton Association'),
(80897, 67509, 'en', 'name', 'British Screen Advisory Council'),
(80898, 67510, 'en', 'name', 'British Cattle Veterinary Association'),
(80899, 67511, 'en', 'name', 'Cambridge Cardiac Care Centre'),
(80900, 67512, 'en', 'name', 'British Computer Association of the Blind'),
(80901, 67513, 'en', 'name', 'British Council'),
(80902, 67514, 'no_lang_code', 'name', 'Cambridge Research Biochemicals (United Kingdom)'),
(80903, 67515, 'en', 'name', 'British Council'),
(80904, 67516, 'en', 'name', 'The Campaign Against Living Miserably'),
(80905, 67517, 'en', 'name', 'British Council'),
(80906, 67518, 'en', 'name', 'British Crystallographic Association'),
(80907, 67519, 'en', 'name', 'British Dam Society'),
(80908, 67520, 'en', 'name', 'British Texel Sheep Society'),
(80909, 67521, 'en', 'name', 'British Deaf Association'),
(80910, 67522, 'en', 'name', 'Brunelcare'),
(80911, 67523, 'en', 'name', 'Canterbury Archaeological Trust'),
(80912, 67524, 'nl', 'name', 'Koninklijke Maatschappij voor Dierkunde Antwerpen'),
(80913, 67524, 'en', 'name', 'Royal Zoological Society of Antwerp'),
(80914, 67525, 'en', 'name', 'Canterbury Museums and Galleries'),
(80915, 67526, 'en', 'name', 'Capital Cardiology Associates'),
(80916, 67527, 'en', 'name', 'Center for Evaluation and Development'),
(80917, 67527, 'de', 'name', 'Mannheimer Zentrum für Evaluation und Entwicklungsforschung'),
(80918, 67528, 'en', 'name', 'Manchester Health and Wellbeing Service'),
(80919, 67529, 'en', 'name', 'Buccleuch Living Heritage Trust'),
(80920, 67530, 'en', 'name', 'Budapest Centre for Mass Atrocities Prevention'),
(80921, 67531, 'de', 'name', 'Krankenhaus der Barmherzigen Brüder Trier'),
(80922, 67532, 'en', 'name', 'Center for Whale Research'),
(80923, 67533, 'en', 'name', 'Buffs Social Club'),
(80924, 67534, 'en', 'name', 'Bumblebee Conservation Trust'),
(80925, 67535, 'en', 'name', 'Central Illinois Neuroscience Foundation'),
(80926, 67536, 'en', 'name', 'Central Road Research Institute'),
(80927, 67537, 'cy', 'name', 'Canolfan y Dechnoleg Amgen'),
(80928, 67537, 'en', 'name', 'Centre for Alternative Technology'),
(80929, 67538, 'en', 'name', 'Centre for Contemporary Art'),
(80930, 67539, 'en', 'name', 'Centre for Crime and Justice Studies'),
(80931, 67540, 'en', 'name', 'Centre for Effective Dispute Resolution'),
(80932, 67541, 'en', 'name', 'Centre for Environment Concerns'),
(80933, 67542, 'en', 'name', 'Centre for Excellence for Looked After Children in Scotland'),
(80934, 67543, 'no_lang_code', 'name', 'Centre for Factories of the Future (United Kingdom)'),
(80935, 67544, 'en', 'name', 'Centre for Chinese Contemporary Art'),
(80936, 67545, 'en', 'name', 'Centre for Cities'),
(80937, 67546, 'en', 'name', 'Centre for Fine Arts'),
(80938, 67546, 'fr', 'name', 'Palais des Beaux-Arts'),
(80939, 67546, 'nl', 'name', 'Paleis voor Schone Kunsten'),
(80940, 67547, 'en', 'name', 'Centre for Computing History'),
(80941, 67548, 'en', 'name', 'Centre for Global Equality'),
(80942, 67549, 'en', 'name', 'Centre for Historical Research and Documentation on War and Contemporary Society'),
(80943, 67550, 'en', 'name', 'Centre for Responsible Credit'),
(80944, 67551, 'en', 'name', 'Centre for Human Rights and Policy Studies'),
(80945, 67552, 'en', 'name', 'Centre for Rural and Remote Mental Health'),
(80946, 67553, 'en', 'name', 'Center for Indonesian Veterinary Analytical Studies'),
(80947, 67554, 'en', 'name', 'Centre for Investigative Journalism'),
(80948, 67555, 'en', 'name', 'Centre for Self Managed Learning'),
(80949, 67556, 'en', 'name', 'Centre for Justice Innovation'),
(80950, 67557, 'en', 'name', 'Innovation Centre for Sensor and Imaging Systems'),
(80951, 67558, 'en', 'name', 'Centre for Literacy in Primary Education'),
(80952, 67559, 'en', 'name', 'Centre for Sustainable Energy Use in Food'),
(80953, 67560, 'en', 'name', 'Centre for Low Carbon Futures'),
(80954, 67561, 'en', 'name', 'Centre for the Study of Labour and Mobility'),
(80955, 67562, 'en', 'name', 'Center for Urban History of East Central Europe'),
(80956, 67562, 'uk', 'name', 'Центр Š¼Ń–ŃŃŒŠŗŠ¾Ń— історії Ń†ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-схіГної Європи'),
(80957, 67563, 'en', 'name', 'Centre for Movement Disorders'),
(80958, 67564, 'en', 'name', 'Centre for Nepal Studies'),
(80959, 67565, 'en', 'name', 'Centre for Window and Cladding Technology'),
(80960, 67566, 'en', 'name', 'Centre for Youth & Criminal Justice'),
(80961, 67567, 'en', 'name', 'Centre for Performance Research'),
(80962, 67568, 'fr', 'name', 'Centre National de Lutte Antiacridienne'),
(80963, 67569, 'en', 'name', 'Centre for Polar Observation and Modelling'),
(80964, 67570, 'en', 'name', 'Centre of Excellence for Sensory Impairment'),
(80965, 67571, 'en', 'name', 'Centre on Dynamics of Ethnicity'),
(80966, 67572, 'en', 'name', 'Butetown Community Centre'),
(80967, 67573, 'en', 'name', 'Association of North East Councils'),
(80968, 67574, 'no_lang_code', 'name', 'Ikonix (United States)'),
(80969, 67575, 'en', 'name', 'Center for Responsible Enterprise And Trade'),
(80970, 67576, 'en', 'name', 'Centre for Regeneration Excellence Wales'),
(80971, 67577, 'en', 'name', 'Capital Museum'),
(80972, 67577, 'zh', 'name', 'é¦–éƒ½åšē‰©é¦†'),
(80973, 67578, 'no_lang_code', 'name', 'Ceryx Medical (United Kingdom)'),
(80974, 67579, 'en', 'name', 'The Heart House'),
(80975, 67580, 'en', 'name', 'Champs Public Health Collaborative'),
(80976, 67581, 'en', 'name', 'Tenet Healthcare'),
(80977, 67582, 'en', 'name', 'Cardiovascular Medical Group'),
(80978, 67583, 'en', 'name', 'Changes Community Health Project'),
(80979, 67584, 'en', 'name', 'Charles Rennie Mackintosh Society'),
(80980, 67585, 'en', 'name', 'Caribbean Disaster Emergency Management Agency'),
(80981, 67586, 'en', 'name', 'Charles River Medical Associates'),
(80982, 67587, 'en', 'name', 'Chartered Institute of Procurement & Supply'),
(80983, 67588, 'no_lang_code', 'name', 'Carritech Research (United Kingdom)'),
(80984, 67589, 'en', 'name', 'The Cartoon Museum'),
(80985, 67590, 'en', 'name', 'Chartered Institution of Water and Environmental Management'),
(80986, 67591, 'en', 'name', 'Chartered Insurance Institute'),
(80987, 67592, 'en', 'name', 'Catalyst Science Discovery Centre'),
(80988, 67593, 'en', 'name', 'Chartered Society of Designers'),
(80989, 67594, 'en', 'name', 'Cedarwood Trust'),
(80990, 67595, 'no_lang_code', 'name', 'Boehringer Ingelheim (Australia)'),
(80991, 67596, 'en', 'name', 'Celtic FC Foundation'),
(80992, 67597, 'no_lang_code', 'name', 'Chase Research Cryogenics (United Kingdom)'),
(80993, 67598, 'no_lang_code', 'name', 'Boehringer Ingelheim (Brazil)'),
(80994, 67599, 'no_lang_code', 'name', 'Celtic Research (United Kingdom)'),
(80995, 67600, 'no_lang_code', 'name', 'Boehringer Ingelheim (Egypt)'),
(80996, 67601, 'en', 'name', 'Cementitious Slag Makers Association'),
(80997, 67602, 'en', 'name', 'Chess Valley Archaeological and Historical Society'),
(80998, 67603, 'no_lang_code', 'name', 'Cheyney (United Kingdom)'),
(80999, 67604, 'en', 'name', 'Church Service Society'),
(81000, 67605, 'en', 'name', 'Chief Fire Officers Association'),
(81001, 67606, 'en', 'name', 'Childhood Bereavement Network'),
(81002, 67607, 'en', 'name', 'Children and War Foundation'),
(81003, 67608, 'en', 'name', 'Children’s Arthritis Association'),
(81004, 67609, 'en', 'name', 'Young Citizens'),
(81005, 67610, 'en', 'name', 'Chilled Food Association'),
(81006, 67611, 'no_lang_code', 'name', 'Clearsky Medical Diagnostics (United Kingdom)'),
(81007, 67612, 'en', 'name', 'Clevedon Pier & Heritage Trust'),
(81008, 67613, 'en', 'name', 'China National Silk Museum'),
(81009, 67613, 'zh', 'name', 'äø­å›½äøē»øåšē‰©é¦†'),
(81010, 67614, 'en', 'name', 'China Port Museum'),
(81011, 67614, 'zh', 'name', 'äø­å›½ęøÆå£åšē‰©é¦†'),
(81012, 67615, 'en', 'name', 'Clifton Suspension Bridge Trust'),
(81013, 67616, 'en', 'name', 'Climate and Development Knowledge Network'),
(81014, 67617, 'en', 'name', 'Climate Outreach'),
(81015, 67618, 'no_lang_code', 'name', 'Clinical & Biomedical Computing (United Kingdom)'),
(81016, 67619, 'no_lang_code', 'name', 'China Regenerative Medicine International (China)'),
(81017, 67619, 'zh', 'name', 'äø­åœ‹å†ē”Ÿé†«å­øåœ‹éš›ęœ‰é™å…¬åø'),
(81018, 67620, 'en', 'name', 'Cloud Innovation Centre'),
(81019, 67621, 'en', 'name', 'Defence Electronics History Society'),
(81020, 67622, 'en', 'name', 'Derbyshire Community Health Services NHS Foundation Trust'),
(81021, 67623, 'en', 'name', 'Design and Artists Copyright Society'),
(81022, 67624, 'ro', 'name', 'Spitalul Clinic Județean de Urgență Cluj-Napoca'),
(81023, 67625, 'en', 'name', 'Cranfield Trust'),
(81024, 67626, 'no_lang_code', 'name', 'Design Science (United Kingdom)'),
(81025, 67627, 'en', 'name', 'Development Trusts Association Scotland'),
(81026, 67628, 'en', 'name', 'Dialogue Society'),
(81027, 67629, 'en', 'name', 'Creative Foundation'),
(81028, 67630, 'no_lang_code', 'name', 'Creavo (United Kingdom)'),
(81029, 67631, 'en', 'name', 'Digital Curation Centre'),
(81030, 67632, 'no_lang_code', 'name', 'Credit Data Research (United Kingdom)'),
(81031, 67633, 'en', 'name', 'Digital Engineering and Test Centre'),
(81032, 67634, 'en', 'name', 'Crichton Carbon Centre'),
(81033, 67635, 'no_lang_code', 'name', 'Digital Native Academy (United Kingdom)'),
(81034, 67636, 'en', 'name', 'Ecological Continuity Trust'),
(81035, 67637, 'en', 'name', 'Economic and Social Research Foundation'),
(81036, 67638, 'en', 'name', 'Cromarty Arts Trust'),
(81037, 67639, 'en', 'name', 'Cromarty Courthouse Museum'),
(81038, 67640, 'en', 'name', 'Cromarty History Society'),
(81039, 67641, 'en', 'name', 'The Ectopic Pregnancy Trust'),
(81040, 67642, 'en', 'name', 'Disabled Living Foundation'),
(81041, 67643, 'en', 'name', 'Diseworth Heritage Centre'),
(81042, 67644, 'en', 'name', 'Crop Protection Association'),
(81043, 67645, 'en', 'name', 'Crossroads Youth & Community Association'),
(81044, 67646, 'no_lang_code', 'name', 'Dispomedical (United Kingdom)'),
(81045, 67647, 'no_lang_code', 'name', 'DJ Associates (United States)'),
(81046, 67648, 'en', 'name', 'Centre for Cultural Heritage Preservation'),
(81047, 67648, 'ar', 'name', 'Ł…Ų±ŁƒŲ² حفظ التراث Ų§Ł„Ų«Ł‚Ų§ŁŁŠ'),
(81048, 67649, 'en', 'name', 'Edinburgh City of Literature'),
(81049, 67650, 'en', 'name', 'Down''s Syndrome Association'),
(81050, 67651, 'en', 'name', 'Edinburgh World Heritage'),
(81051, 67652, 'fr', 'name', 'Le musƩe Dr Guislain'),
(81052, 67652, 'en', 'name', 'Museum Dr Guislain'),
(81053, 67653, 'no_lang_code', 'name', 'EES Research (United Kingdom)'),
(81054, 67654, 'es', 'name', 'Instituto Mora'),
(81055, 67655, 'no_lang_code', 'name', 'Dream Laboratory (United Kingdom)'),
(81056, 67656, 'en', 'name', 'Egyptian Foundation for Refugee Rights'),
(81057, 67657, 'en', 'name', 'Cumberland and Westmorland Antiquarian and Archaeological Society'),
(81058, 67658, 'en', 'name', 'Cumberland County Historical Society'),
(81059, 67659, 'en', 'name', 'Curatio International Foundation'),
(81060, 67660, 'en', 'name', 'Electoral Reform Society'),
(81061, 67661, 'de', 'name', 'Museum Strom und Leben'),
(81062, 67662, 'en', 'name', 'Dronah Foundation'),
(81063, 67663, 'en', 'name', 'Czech Association for the Study of Religions'),
(81064, 67663, 'cs', 'name', 'ČeskĆ” společnost pro religionistiku'),
(81065, 67664, 'no_lang_code', 'name', 'Electro-Medical Measurement Systems (United Kingdom)'),
(81066, 67665, 'en', 'name', 'Dubai International Financial Centre'),
(81067, 67666, 'en', 'name', 'Emmanuel Schools Foundation'),
(81068, 67667, 'no_lang_code', 'name', 'Daniel Black and Associates (United States)'),
(81069, 67668, 'en', 'name', 'End Violence Against Women'),
(81070, 67669, 'en', 'name', 'Dubbo Hospital'),
(81071, 67670, 'en', 'name', 'The DaCapo Music Foundation'),
(81072, 67671, 'en', 'name', 'Dudley Associates'),
(81073, 67672, 'en', 'name', 'Dumfries Museum and Camera Obscura'),
(81074, 67673, 'en', 'name', 'Energy Technology Centre'),
(81075, 67674, 'en', 'name', 'Dundee Blind and Partially Sighted Society'),
(81076, 67675, 'en', 'name', 'Dundee Carers Centre'),
(81077, 67676, 'en', 'name', 'English & Media Centre'),
(81078, 67677, 'en', 'name', 'English Folk Dance and Song Society'),
(81079, 67678, 'en', 'name', 'Durham Dales Health Federation'),
(81080, 67679, 'da', 'name', 'Dansk Standard'),
(81081, 67680, 'no_lang_code', 'name', 'Applied Graphene Materials (United Kingdom)'),
(81082, 67681, 'da', 'name', 'Dansk Byplanlaboratorium'),
(81083, 67681, 'en', 'name', 'The Danish Town Planning Institute'),
(81084, 67682, 'en', 'name', 'Darbar'),
(81085, 67683, 'en', 'name', 'Enlightened Myanmar Research Foundation'),
(81086, 67684, 'en', 'name', 'Dutch Foundation for Literature'),
(81087, 67684, 'nl', 'name', 'Nederlands Letterenfonds'),
(81088, 67685, 'no_lang_code', 'name', 'Enviresearch (United Kingdom)'),
(81089, 67686, 'en', 'name', 'The Environmental Foundation for Africa'),
(81090, 67687, 'cy', 'name', 'Cymdeithas Thomas Pennant'),
(81091, 67688, 'en', 'name', 'The David Hume Institute'),
(81092, 67689, 'no_lang_code', 'name', 'Epizone'),
(81093, 67690, 'en', 'name', 'East Belfast Community Development Agency'),
(81094, 67691, 'no_lang_code', 'name', 'David Jarvis Associates (United Kingdom)'),
(81095, 67692, 'en', 'name', 'David Livingstone Trust'),
(81096, 67693, 'en', 'name', 'Eric Liddell Centre'),
(81097, 67694, 'en', 'name', 'DDR Museum'),
(81098, 67695, 'en', 'name', 'Deaf Studies Trust'),
(81099, 67696, 'en', 'name', 'CO2 Technology Centre Mongstad'),
(81100, 67696, 'no', 'name', 'Teknologisenteret pƄ Mongstad'),
(81101, 67697, 'no_lang_code', 'name', 'EBTIC'),
(81102, 67698, 'en', 'name', 'Eurasia Foundation of Central Asia'),
(81103, 67698, 'ru', 'name', 'ФонГ Š•Š²Ń€Š°Š·ŠøŃ Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(81104, 67699, 'en', 'name', 'Coastal Cancer Center'),
(81105, 67700, 'en', 'name', 'Eureka'),
(81106, 67701, 'en', 'name', 'Eastbridge Hospital'),
(81107, 67702, 'de', 'name', 'Deutsche Initiative für Netzwerkinformation'),
(81108, 67702, 'en', 'name', 'German Initiative for Network Information'),
(81109, 67703, 'en', 'name', 'European Academy for Standardisation'),
(81110, 67704, 'en', 'name', 'Community Connect Foundation'),
(81111, 67705, 'en', 'name', 'Community Development and Health Network'),
(81112, 67706, 'en', 'name', 'Community Health And Information Network'),
(81113, 67707, 'en', 'name', 'Contemporary Visual Arts Network'),
(81114, 67708, 'en', 'name', 'Community Media Association'),
(81115, 67709, 'en', 'name', 'Cohen Medical Associates'),
(81116, 67710, 'en', 'name', 'Colchester + Ipswich Museums'),
(81117, 67711, 'en', 'name', 'The Colebrooke Centre'),
(81118, 67712, 'de', 'name', 'DRK Kliniken Berlin'),
(81119, 67713, 'en', 'name', 'Bavarian State Research Center for Agriculture'),
(81120, 67713, 'de', 'name', 'Bayerische Landesanstalt für Landwirtschaft'),
(81121, 67714, 'de', 'name', 'Albertinen Diakoniewerk'),
(81122, 67715, 'de', 'name', 'St. Vincentius-Kliniken'),
(81123, 67716, 'de', 'name', 'Zentrum für Rhinologie und Allergologie'),
(81124, 67717, 'de', 'name', 'Krankenhaus Sachsenhausen'),
(81125, 67718, 'de', 'name', 'Deutschen Zentrums für Kinder- und Jugendrheumatologie'),
(81126, 67718, 'en', 'name', 'German Center for Pediatric and Adolescent Rheumatology'),
(81127, 67719, 'de', 'name', 'BDH-Klinik Elzach'),
(81128, 67720, 'de', 'name', 'Klinikum Links der Weser'),
(81129, 67721, 'de', 'name', 'St. Marien-Hospital Bonn'),
(81130, 67722, 'de', 'name', 'Malteser Waldkrankenhaus Erlangen'),
(81131, 67723, 'de', 'name', 'Kliniken Maria Hilf'),
(81132, 67724, 'en', 'name', 'Auditory Valley'),
(81133, 67725, 'no_lang_code', 'name', 'Wala Heilmittel (Germany)'),
(81134, 67726, 'no_lang_code', 'name', 'Ecofys (Germany)'),
(81135, 67727, 'de', 'name', 'Agaplesion Frankfurter Diakonie Kliniken'),
(81136, 67728, 'de', 'name', 'Augusta-Kranken-Anstalt'),
(81137, 67729, 'de', 'name', 'Die Paracelsus Heilpraktikerschulen'),
(81138, 67730, 'de', 'name', 'Evangelisches Klinikum Kƶln Weyertal'),
(81139, 67731, 'de', 'name', 'Institut für Binnenfischerei e.V. Potsdam-Sacrow'),
(81140, 67731, 'en', 'name', 'Institute of Inland Fisheries in Potsdam-Sacrow'),
(81141, 67732, 'de', 'name', 'Clemenshospital Münster'),
(81142, 67733, 'de', 'name', 'Südharz Klinikum'),
(81143, 67734, 'de', 'name', 'Christoph-Dornier-Stiftung für Klinische Psychologie'),
(81144, 67735, 'no_lang_code', 'name', 'Vacuumschmelze (Germany)'),
(81145, 67736, 'de', 'name', 'Klinikum Lüdenscheid'),
(81146, 67737, 'de', 'name', 'Institut für Dünnschichttechnologie und Mikrosensorik'),
(81147, 67738, 'de', 'name', 'Marienhospital Gelsenkirchen'),
(81148, 67739, 'en', 'name', 'Lower Saxony State Office for Consumer Protection and Food Safety'),
(81149, 67739, 'de', 'name', 'Niedersächsisch Landesamt für Verbraucherschutz und Lebensmittelsicherheit'),
(81150, 67740, 'de', 'name', 'Ameos Klinikum Inntal'),
(81151, 67741, 'de', 'name', 'Deutsche Akademie für Kinder- und Jugendmedizin'),
(81152, 67742, 'de', 'name', 'Deutscher Beton- und Bautechnik-Verein'),
(81153, 67743, 'de', 'name', 'Bezirkskrankenhaus Augsburg'),
(81154, 67744, 'en', 'name', 'St. Anna Hospital'),
(81155, 67745, 'en', 'name', 'Community Museum Project'),
(81156, 67746, 'de', 'name', 'Bürgerhospital Frankfurt am Main'),
(81157, 67747, 'en', 'name', 'German National Bone Marrow Donor Registry'),
(81158, 67747, 'de', 'name', 'Zentrale Knochenmarkspender-Register Deutschland'),
(81159, 67748, 'de', 'name', 'cts CaritasKlinikum Saarbrücken'),
(81160, 67749, 'en', 'name', 'Community Woodlands Association'),
(81161, 67750, 'de', 'name', 'Helios Endo-Klinik Hamburg'),
(81162, 67751, 'de', 'name', 'Inn-Salzach-Klinikum'),
(81163, 67752, 'en', 'name', 'Comprehensive Cardiovascular'),
(81164, 67753, 'en', 'name', 'Conect Association'),
(81165, 67754, 'en', 'name', 'Conway Hall Ethical Society'),
(81166, 67755, 'en', 'name', 'Collaborative Laboratory Services'),
(81167, 67756, 'en', 'name', 'European Association for Biometrics'),
(81168, 67757, 'en', 'name', 'Colonial Society of Massachusetts'),
(81169, 67758, 'en', 'name', 'European Association of Archaeologists'),
(81170, 67758, 'cs', 'name', 'EvropskĆ” asociace archeologÅÆ'),
(81171, 67759, 'en', 'name', 'Cool Farm Alliance'),
(81172, 67760, 'en', 'name', 'Columbia Global Centers'),
(81173, 67761, 'en', 'name', 'European Centre for Ecotoxicology and Toxicology of Chemicals'),
(81174, 67762, 'en', 'name', 'Colwyn Bay Community Hospital'),
(81175, 67763, 'en', 'name', 'CdLS Foundation UK & Ireland'),
(81176, 67764, 'en', 'name', 'European Communication Research and Education Association'),
(81177, 67765, 'en', 'name', 'Cornwall Museums Partnership'),
(81178, 67766, 'en', 'name', 'Public Media Alliance'),
(81179, 67767, 'en', 'name', 'Cornwall Partnership NHS Foundation Trust'),
(81180, 67768, 'en', 'name', 'Community-Campus Partnerships for Health'),
(81181, 67769, 'en', 'name', 'Men''s Health Forum'),
(81182, 67770, 'en', 'name', 'Country Land and Business Association'),
(81183, 67771, 'no_lang_code', 'name', 'Express Medicals (United Kingdom)'),
(81184, 67772, 'en', 'name', 'Eyebeam'),
(81185, 67773, 'en', 'name', 'European Public Health Association'),
(81186, 67774, 'en', 'name', 'Fab Foundation'),
(81187, 67775, 'en', 'name', 'Fordingbridge Museum Trust'),
(81188, 67776, 'en', 'name', 'The Fairbanking Foundation'),
(81189, 67777, 'en', 'name', 'European Second Language Association'),
(81190, 67778, 'en', 'name', 'Forest Trends'),
(81191, 67779, 'en', 'name', 'Coram'),
(81192, 67780, 'no_lang_code', 'name', 'Zoetis (United Kingdom)'),
(81193, 67781, 'en', 'name', 'European Society for Paediatric Oncology'),
(81194, 67782, 'en', 'name', 'Driving Mobility'),
(81195, 67783, 'en', 'name', 'Foster Care Associates Scotland'),
(81196, 67784, 'en', 'name', 'Foundation for Common Land'),
(81197, 67785, 'en', 'name', 'Exercise Science Consulting'),
(81198, 67786, 'en', 'name', 'Foundation for Water Research'),
(81199, 67787, 'en', 'name', 'Federation of Small Businesses'),
(81200, 67788, 'en', 'name', 'Freud Museum'),
(81201, 67789, 'en', 'name', 'Centre for Nursing Innovation'),
(81202, 67790, 'en', 'name', 'Friends of Basrah Museum'),
(81203, 67790, 'ar', 'name', 'متحف البصرة'),
(81204, 67791, 'en', 'name', 'FenArch'),
(81205, 67792, 'en', 'name', 'Foundation Scotland'),
(81206, 67793, 'en', 'name', 'Friends of the National Railway Museum'),
(81207, 67794, 'en', 'name', 'Phoenix Futures'),
(81208, 67795, 'en', 'name', 'Foundation Tallinn 2011'),
(81209, 67795, 'et', 'name', 'Sihtasutus Tallinn 2011 Ajalugu'),
(81210, 67795, 'ru', 'name', 'Š¦Š•Š›Š•Š’ŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• Ā«Š¢ŠŠ›Š›Š˜ŠŠ 2011Ā»'),
(81211, 67796, 'en', 'name', 'Fetal Care Research Foundation'),
(81212, 67797, 'en', 'name', 'Fife Coast and Countryside Trust'),
(81213, 67798, 'no_lang_code', 'name', 'Fourth State (United Kingdom)'),
(81214, 67799, 'no_lang_code', 'name', 'Fiji Museum'),
(81215, 67800, 'en', 'name', 'Future Health Biobank'),
(81216, 67801, 'no_lang_code', 'name', 'Financial Network Analytics (United Kingdom)'),
(81217, 67802, 'en', 'name', 'Framework'),
(81218, 67803, 'en', 'name', 'Galt Museum & Archives'),
(81219, 67804, 'en', 'name', 'Findhorn Foundation'),
(81220, 67805, 'no_lang_code', 'name', 'Gamma HealthCare (United States)'),
(81221, 67806, 'en', 'name', 'Garden Street Academy'),
(81222, 67807, 'no_lang_code', 'name', 'Bioinduction (United Kingdom)'),
(81223, 67808, 'en', 'name', 'Franco-British Council'),
(81224, 67809, 'en', 'name', 'Fintry Development Trust'),
(81225, 67810, 'en', 'name', 'Fred Roche Foundation'),
(81226, 67811, 'en', 'name', 'Free Word'),
(81227, 67812, 'en', 'name', 'Freedom Festival Arts Trust'),
(81228, 67813, 'en', 'name', 'The Geffrye Museum of the Home'),
(81229, 67814, 'en', 'name', 'Shenyang First People''s Hospital'),
(81230, 67814, 'zh', 'name', 'ę²ˆé˜³åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(81231, 67815, 'en', 'name', 'Freight Transport Association'),
(81232, 67816, 'no_lang_code', 'name', 'Flexicare (United Kingdom)'),
(81233, 67817, 'en', 'name', 'French Institute for Research in Africa'),
(81234, 67818, 'no_lang_code', 'name', 'Benchmark (United Kingdom)'),
(81235, 67819, 'fr', 'name', 'Institut FranƧais de Rabat'),
(81236, 67820, 'en', 'name', 'GeoEnergy Research Centre'),
(81237, 67821, 'de', 'name', 'Deutsche Vereinigung für Sportwissenschaft'),
(81238, 67821, 'en', 'name', 'German Society of Sport Science'),
(81239, 67822, 'en', 'name', 'Geographical Association'),
(81240, 67823, 'en', 'name', 'Geophysical Institute of Peru'),
(81241, 67823, 'es', 'name', 'Instituto GeofĆ­sico del PerĆŗ'),
(81242, 67824, 'en', 'name', 'J. Paul Getty Museum'),
(81243, 67825, 'en', 'name', 'George Sexton Associates'),
(81244, 67826, 'en', 'name', 'Greater Manchester Police Museum & Archives'),
(81245, 67827, 'en', 'name', 'Ghana Museums and Monuments Board'),
(81246, 67828, 'en', 'name', 'The Georgian Concert Society'),
(81247, 67829, 'en', 'name', 'Gladstone Pottery Museum'),
(81248, 67830, 'no_lang_code', 'name', 'Geospatial Research (United Kingdom)'),
(81249, 67831, 'en', 'name', 'Glasgow and West of Scotland Forum of Housing Associations'),
(81250, 67832, 'en', 'name', 'International Association for the History of Religions'),
(81251, 67833, 'en', 'name', 'Green and Seidner Family Practice Associates'),
(81252, 67834, 'en', 'name', 'Centre for Contemporary Arts'),
(81253, 67835, 'en', 'name', 'Green Innovation and Development Centre'),
(81254, 67835, 'vi', 'name', 'Trung tâm PhÔt triển SÔng tẔo Xanh'),
(81255, 67836, 'en', 'name', 'Glasgow Centre for Inclusive Living'),
(81256, 67837, 'en', 'name', 'Hansard Society'),
(81257, 67838, 'en', 'name', 'Gregson Arts & Community Centre'),
(81258, 67839, 'no_lang_code', 'name', 'Hanson & Associates (United Kingdom)'),
(81259, 67840, 'en', 'name', 'Groninger Museum'),
(81260, 67841, 'en', 'name', 'Glasgow West Housing Association'),
(81261, 67842, 'en', 'name', 'Glenbow Museum'),
(81262, 67843, 'no_lang_code', 'name', 'LogMeIn (United Kingdom)'),
(81263, 67844, 'en', 'name', 'Gloag Foundation'),
(81264, 67845, 'en', 'name', 'Global Canopy'),
(81265, 67846, 'no_lang_code', 'name', 'Harare Central Hospital'),
(81266, 67847, 'no_lang_code', 'name', 'Harland Medical Systems (United States)'),
(81267, 67848, 'en', 'name', 'Global Stem cell & Regenerative medicine Acceleration Center'),
(81268, 67849, 'en', 'name', 'Guide Dogs'),
(81269, 67850, 'ga', 'name', 'Glór'),
(81270, 67851, 'en', 'name', 'Health Action International'),
(81271, 67852, 'en', 'name', 'Gunnersbury'),
(81272, 67853, 'en', 'name', 'Glossop Heritage Trust'),
(81273, 67854, 'en', 'name', 'Gurkha Welfare Trust'),
(81274, 67855, 'no_lang_code', 'name', 'Health Action Partnership International (United Kingdom)'),
(81275, 67856, 'en', 'name', 'Gloucestershire Wildlife Trust'),
(81276, 67857, 'en', 'name', 'Gwynedd Archaeological Trust'),
(81277, 67858, 'en', 'name', 'H-Net: Humanities & Social Sciences Online'),
(81278, 67859, 'en', 'name', 'Health Innovation Manchester'),
(81279, 67860, 'en', 'name', 'Health Nest Uganda'),
(81280, 67861, 'en', 'name', 'Herefordshire & Worcestershire Earth Heritage Trust'),
(81281, 67862, 'en', 'name', 'Hackney Museum'),
(81282, 67863, 'en', 'name', 'Goldsmiths Community Centre'),
(81283, 67864, 'en', 'name', 'Good Things Foundation'),
(81284, 67865, 'en', 'name', 'The Hakluyt Society'),
(81285, 67866, 'no_lang_code', 'name', 'Goodmark Medical (United States)'),
(81286, 67867, 'no_lang_code', 'name', 'Healthcare over Internet Protocol Community Interest Company (United Kingdom)'),
(81287, 67868, 'en', 'name', 'Halsway Manor National Centre for Folk Arts'),
(81288, 67869, 'en', 'name', 'Govanhill Housing Association'),
(81289, 67870, 'en', 'name', 'Turner-Fairbank Highway Research Center'),
(81290, 67871, 'en', 'name', 'HealthWORKS Newcastle'),
(81291, 67872, 'en', 'name', 'Grace Eyre'),
(81292, 67873, 'es', 'name', 'Hospital Base'),
(81293, 67874, 'en', 'name', 'The Healthy Pizza Company'),
(81294, 67875, 'es', 'name', 'Hospital Base'),
(81295, 67876, 'es', 'name', 'Hospital ClĆ­nico FUSAT'),
(81296, 67877, 'en', 'name', 'The Heather Trust'),
(81297, 67878, 'en', 'name', 'Alternative Technology Centre'),
(81298, 67879, 'es', 'name', 'Hospital d''Igualada'),
(81299, 67880, 'pt', 'name', 'Hospital das ClĆ­nicas da Universidade Federal de Minas Gerais'),
(81300, 67881, 'pt', 'name', 'Hospital das Clínicas Samuel Libânio'),
(81301, 67882, 'en', 'name', 'Helen Bamber Foundation'),
(81302, 67883, 'es', 'name', 'Hospital de Carabineros'),
(81303, 67884, 'de', 'name', 'Mikroskopie im Nanometerbereich und Molekularphysiologie des Gehirns Exzellenzcluster 171 — DFG Forschungszentrum 103'),
(81304, 67884, 'en', 'name', 'Nanoscale Microscopy and Molecular Physiology of the Brain Cluster of Excellence 171 — DFG Research Center 103'),
(81305, 67885, 'es', 'name', 'Hospital de Referencia La Equina'),
(81306, 67886, 'en', 'name', 'Helen Storey Foundation'),
(81307, 67887, 'de', 'name', 'NiedersƤchsisches Landesgesundheitsamt'),
(81308, 67888, 'es', 'name', 'Hospital Dipreca'),
(81309, 67889, 'es', 'name', 'Hospital Santiago Oriente - Dr. Luis Tisne Brousse'),
(81310, 67890, 'de', 'name', 'Fachhochschule für die Wirtschaft Hannover'),
(81311, 67890, 'en', 'name', 'University of Applied Sciences FHDW Hannover'),
(81312, 67891, 'de', 'name', 'Landesamt für Soziales und Versorgung des Landes Brandenburg'),
(81313, 67892, 'ms', 'name', 'Hospital Tuanku Ja’afar'),
(81314, 67893, 'es', 'name', 'Hospital Italiano La Plata'),
(81315, 67894, 'en', 'name', 'Hospitalfield'),
(81316, 67895, 'ms', 'name', 'Hospital Sultanah Nur Zahirah'),
(81317, 67896, 'de', 'name', 'Bundesamt für Migration und Flüchtlinge'),
(81318, 67896, 'en', 'name', 'Federal Office for Migration and Refugees'),
(81319, 67897, 'en', 'name', 'Housing Studies Association'),
(81320, 67898, 'en', 'name', 'Howard Cottage Housing Association'),
(81321, 67899, 'de', 'name', 'Bundesministerium der Justiz und für Verbraucherschutz'),
(81322, 67899, 'en', 'name', 'Federal Ministry of Justice and Consumer Protection'),
(81323, 67900, 'no_lang_code', 'name', 'Bristol Maid (United Kingdom)'),
(81324, 67901, 'en', 'name', 'Huddersfield Local History Society'),
(81325, 67902, 'de', 'name', 'Landesamt für Denkmalpflege Sachsen'),
(81326, 67903, 'pt', 'name', 'Hospital Napoleão Laureano'),
(81327, 67904, 'de', 'name', 'Energiewirtschaftliches Institut an der UniversitƤt zu Kƶln'),
(81328, 67904, 'en', 'name', 'Institute of Energy Economics at the University of Cologne'),
(81329, 67905, 'de', 'name', 'Institut für Zuckerrübenforschung'),
(81330, 67906, 'de', 'name', 'Hans-Bredow-Institute'),
(81331, 67907, 'no_lang_code', 'name', 'i2 Media Research (United Kingdom)'),
(81332, 67908, 'ms', 'name', 'Hospital Raja Perempuan Zainab II'),
(81333, 67909, 'no_lang_code', 'name', 'i2r Medical (United Kingdom)'),
(81334, 67910, 'en', 'name', 'The IARS International Institute'),
(81335, 67911, 'es', 'name', 'Hospital Regional de Antofagasta'),
(81336, 67912, 'no_lang_code', 'name', 'International Centre for Advanced Materials (United Kingdom)'),
(81337, 67913, 'es', 'name', 'Hospital Regional de Arica Doctor Juan NoƩ Crevani'),
(81338, 67914, 'es', 'name', 'Hospital Regional de Talca'),
(81339, 67915, 'no_lang_code', 'name', 'Iceotope Technologies (United Kingdom)'),
(81340, 67916, 'en', 'name', 'PLA Academy of Military Science'),
(81341, 67916, 'zh', 'name', '中国人民解放军军事科学院'),
(81342, 67917, 'no_lang_code', 'name', 'Unlimited Group (United Kingdom)'),
(81343, 67918, 'en', 'name', 'Industry and Parliament Trust'),
(81344, 67919, 'en', 'name', 'Infrastructure Transitions Research Consortium'),
(81345, 67920, 'no_lang_code', 'name', 'Igennus Healthcare Nutrition (United Kingdom)'),
(81346, 67921, 'no_lang_code', 'name', 'Ingenious Targeting Laboratory (United States)'),
(81347, 67922, 'en', 'name', 'The Hepatitis C Trust'),
(81348, 67923, 'en', 'name', 'iHealth'),
(81349, 67924, 'en', 'name', 'Culture Coventry'),
(81350, 67925, 'en', 'name', 'Institute of Healthcare Engineering and Estate Management'),
(81351, 67926, 'no_lang_code', 'name', 'Lanarkshire Enterprise Services Limited (United Kingdom)'),
(81352, 67927, 'en', 'name', 'Ilfracombe Museum'),
(81353, 67928, 'en', 'name', 'Hereford Health and Safety Group'),
(81354, 67929, 'no_lang_code', 'name', 'Insect Research Systems (United Kingdom)'),
(81355, 67930, 'en', 'name', 'In Flanders Fields Museum'),
(81356, 67931, 'es', 'name', 'Instituto Nacional de SismologĆ­a, VulcanologĆ­a, MeteorologĆ­a e HidrologĆ­a'),
(81357, 67931, 'en', 'name', 'National Institute for Seismology, Vulcanology, Meteorology and Hydrology'),
(81358, 67932, 'no_lang_code', 'name', 'India Habitat Centre'),
(81359, 67932, 'hi', 'name', 'भारत ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤¾ą¤ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(81360, 67933, 'no_lang_code', 'name', 'Hermes Medical Solutions (United Kingdom)'),
(81361, 67934, 'en', 'name', 'Institute of Chartered Accountants in England and Wales'),
(81362, 67935, 'en', 'name', 'Hertford County Hospital'),
(81363, 67936, 'en', 'name', 'Institute for Justice & Democracy in Haiti'),
(81364, 67937, 'nl', 'name', 'Stichting Hester'),
(81365, 67938, 'en', 'name', 'Hft'),
(81366, 67939, 'no_lang_code', 'name', 'High Force Research (United Kingdom)'),
(81367, 67940, 'en', 'name', 'Institution of Engineering Designers'),
(81368, 67941, 'en', 'name', 'Institute for Human Rights and Development in Africa'),
(81369, 67942, 'en', 'name', 'Institute of Industry Analyst Relations'),
(81370, 67943, 'en', 'name', 'Insigneo'),
(81371, 67944, 'en', 'name', 'Institute of Practitioners in Advertising'),
(81372, 67945, 'en', 'name', 'Higher Education Statistics Agency'),
(81373, 67946, 'en', 'name', 'Institute of Art and Ideas'),
(81374, 67947, 'en', 'name', 'Institute for Research in Schools'),
(81375, 67948, 'en', 'name', 'Japan Institute of International Affairs'),
(81376, 67948, 'ja', 'name', 'ę—„ęœ¬å›½éš›å•é”Œē ”ē©¶ę‰€'),
(81377, 67949, 'en', 'name', 'Generation 2.0 for Rights, Equality & Diversity'),
(81378, 67950, 'en', 'name', 'Heritage Medical Research Clinic'),
(81379, 67951, 'en', 'name', 'Institute for Sound & Music'),
(81380, 67952, 'en', 'name', 'Institute for Conflict Research'),
(81381, 67953, 'en', 'name', 'Institute for Voluntary Action Research'),
(81382, 67954, 'en', 'name', 'Institute for Cultural Diplomacy'),
(81383, 67955, 'en', 'name', 'The Institute for Food Brain and Behaviour'),
(81384, 67956, 'es', 'name', 'Instituto de Lengua y Cultura Aymara'),
(81385, 67957, 'en', 'name', 'The History Teachers'' Association of Australia'),
(81386, 67958, 'en', 'name', 'Institute of Cast Metals Engineers'),
(81387, 67959, 'en', 'name', 'Hadejia Jama’are Komadugu Yobe Basin-Trust Fund'),
(81388, 67960, 'en', 'name', 'The Institute of Concrete Technology'),
(81389, 67961, 'en', 'name', 'Holocaust Educational Trust'),
(81390, 67962, 'en', 'name', 'Holocaust Survivors Friendship Association'),
(81391, 67963, 'en', 'name', 'Institute of Directors'),
(81392, 67964, 'no_lang_code', 'name', 'Holst Centre (Netherlands)'),
(81393, 67965, 'en', 'name', 'Institute of Economic Development'),
(81394, 67966, 'en', 'name', 'Institute of Family Therapy'),
(81395, 67967, 'no_lang_code', 'name', 'Hong Kong Maritime Museum'),
(81396, 67967, 'zh', 'name', 'é¦™ęøÆęµ·äŗ‹åšē‰©é¤Ø'),
(81397, 67968, 'en', 'name', 'Chartered Institute for Archaeologists'),
(81398, 67969, 'en', 'name', 'Horniman Museum and Gardens'),
(81399, 67970, 'en', 'name', 'Horse Hospital'),
(81400, 67971, 'en', 'name', 'Institute of Food Biotechnology and Genomics'),
(81401, 67971, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ харчової біотехнології та геноміки'),
(81402, 67972, 'es', 'name', 'Hospital Angeles Clinica Londres'),
(81403, 67973, 'en', 'name', 'Institute of Food Science & Technology'),
(81404, 67974, 'en', 'name', 'Institute of Travel & Tourism'),
(81405, 67975, 'en', 'name', 'Institution of Agricultural Engineers'),
(81406, 67976, 'pt', 'name', 'Instituto Akatu'),
(81407, 67977, 'en', 'name', 'Institute of Materials Finishing'),
(81408, 67978, 'no_lang_code', 'name', 'Cervantes Institute'),
(81409, 67979, 'pt', 'name', 'Grupo de Açãoe Estudos Ambientais'),
(81410, 67980, 'en', 'name', 'Broadstairs College'),
(81411, 67981, 'en', 'name', 'Canterbury College'),
(81412, 67982, 'pt', 'name', 'Instituto Paulo Gontijo'),
(81413, 67983, 'en', 'name', 'Dover Technical College'),
(81414, 67984, 'en', 'name', 'Folkestone College'),
(81415, 67985, 'en', 'name', 'Sheppey College'),
(81416, 67986, 'no_lang_code', 'name', 'Integrated Medicines (United Kingdom)'),
(81417, 67987, 'no_lang_code', 'name', 'Intelligent Medical Objects (United States)'),
(81418, 67988, 'en', 'name', 'International Bar Association'),
(81419, 67989, 'es', 'name', 'Instituto de Información Científica y Tecnológica'),
(81420, 67990, 'en', 'name', 'Institute of Seismology'),
(81421, 67990, 'kk', 'name', 'Š”ŠµŠ¹ŃŠ¼Š¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(81422, 67991, 'en', 'name', 'International Brecht Society'),
(81423, 67992, 'en', 'name', 'International Broadcasting Trust'),
(81424, 67993, 'en', 'name', 'Interamerican Society of Cardiology'),
(81425, 67993, 'es', 'name', 'Sociedad Interamericana de CardiologĆ­a'),
(81426, 67994, 'en', 'name', 'Intercultural Institute Timisoara'),
(81427, 67995, 'en', 'name', 'Interdisciplinary Centre for Storage, Transformation and Upgrading of Thermal Energy'),
(81428, 67996, 'en', 'name', 'Internal Displacement Monitoring Centre'),
(81429, 67997, 'en', 'name', 'International Security and Development Center'),
(81430, 67998, 'it', 'name', 'Accademia internazionale di Scienze Ambientali'),
(81431, 67998, 'en', 'name', 'International Academy of Environmental Sciences'),
(81432, 67999, 'en', 'name', 'International Centre for Women Playwrights'),
(81433, 68000, 'en', 'name', 'International Air Transport Association'),
(81434, 68001, 'en', 'name', 'International Aluminium Institute'),
(81435, 68002, 'en', 'name', 'International Centre on Space Technologies for Natural and Cultural Heritage'),
(81436, 68002, 'zh', 'name', 'å›½é™…č‡Ŗē„¶äøŽę–‡åŒ–é—äŗ§ē©ŗé—“ęŠ€ęœÆäø­åæƒ'),
(81437, 68003, 'en', 'name', 'International Solid Waste Association'),
(81438, 68004, 'en', 'name', 'International Association for the Study of Traditional Environments'),
(81439, 68005, 'en', 'name', 'IWW Water Centre'),
(81440, 68005, 'de', 'name', 'IWW Zentrum Wasser'),
(81441, 68006, 'en', 'name', 'International Association of Plumbing and Mechanical Officials'),
(81442, 68007, 'de', 'name', 'Institut für Nichtklassische Chemie'),
(81443, 68008, 'en', 'name', 'Internet Service Providers Association'),
(81444, 68009, 'en', 'name', 'International Association of Teachers of English as a Foreign Language'),
(81445, 68010, 'en', 'name', 'European Molecular Biology Conference'),
(81446, 68011, 'no_lang_code', 'name', 'InTouch Health (United States)'),
(81447, 68012, 'no_lang_code', 'name', 'Investigators Research Group (United States)'),
(81448, 68013, 'en', 'name', 'The Investment Association'),
(81449, 68014, 'no_lang_code', 'name', 'Izola General Hospital'),
(81450, 68014, 'sl', 'name', 'SploŔna BolniŔnica Izola'),
(81451, 68015, 'en', 'name', 'J P French Associates'),
(81452, 68016, 'en', 'name', 'Iowa Diabetes and Endocrinology Research Center'),
(81453, 68017, 'en', 'name', 'Jana Sanskriti Centre for Theatre of the Oppressed'),
(81454, 68018, 'en', 'name', 'Iraqi Al-Amal Association'),
(81455, 68018, 'ar', 'name', 'Ų¬Ł…Ų¹ŁŠŲ© الامل Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ© - Ł…ŁƒŲŖŲØ كركوك'),
(81456, 68019, 'no_lang_code', 'name', 'EngineersHRW (United Kingdom)'),
(81457, 68020, 'en', 'name', 'Atmospheric Observatory of Austral Patagonia'),
(81458, 68020, 'es', 'name', 'Observatorio AtmosfƩrico de la Patagonia Austral'),
(81459, 68021, 'en', 'name', 'European Centre for Living Technology'),
(81460, 68022, 'fr', 'name', 'HƓpitaux Iris Sud'),
(81461, 68023, 'en', 'name', 'European Theoretical Spectroscopy Facility'),
(81462, 68024, 'en', 'name', 'Irish Cultural Centre'),
(81463, 68025, 'en', 'name', 'Wuyi University'),
(81464, 68025, 'zh', 'name', '五邑大学'),
(81465, 68026, 'en', 'name', 'Japanese Foundation for Multidisciplinary Treatment of Cancer'),
(81466, 68026, 'ja', 'name', 'ćŒć‚“é›†å­¦ēš„ę²»ē™‚ē ”ē©¶č²”å›£'),
(81467, 68027, 'en', 'name', 'Advanced Science Research Center'),
(81468, 68027, 'ja', 'name', 'å…ˆē«ÆåŸŗē¤Žē ”ē©¶ć‚»ćƒ³ć‚æ'),
(81469, 68028, 'no_lang_code', 'name', 'PublicPolicy.ie (Ireland)'),
(81470, 68029, 'en', 'name', 'Irish World Heritage Centre'),
(81471, 68030, 'en', 'name', 'Irish Jewish Museum'),
(81472, 68031, 'en', 'name', 'Jeremy Gardner Associates'),
(81473, 68032, 'en', 'name', 'Bangladesh Islamic Foundation'),
(81474, 68032, 'bn', 'name', 'ইসলামিক ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą§‡ą¦¶ą¦Ø বাংলাদেশ'),
(81475, 68033, 'en', 'name', 'Isles of Scilly Museum'),
(81476, 68034, 'en', 'name', 'Islington Museum'),
(81477, 68035, 'en', 'name', 'International Comparative Literature Association'),
(81478, 68036, 'en', 'name', 'Israeli Cultural Institute'),
(81479, 68036, 'hu', 'name', 'Izraeli KulturƔlis IntƩzet'),
(81480, 68037, 'en', 'name', 'Jimmy Mac’s Centre'),
(81481, 68038, 'en', 'name', 'Istanbul Foundation for Research and Education'),
(81482, 68038, 'tr', 'name', 'İSTANBUL ARAŞTIRMA VE EĞİTİM VAKFI'),
(81483, 68039, 'en', 'name', 'Co.As.It.'),
(81484, 68040, 'no_lang_code', 'name', 'John Regan Associates (United Kingdom)'),
(81485, 68041, 'no_lang_code', 'name', 'iTaukei Trust Fund Board'),
(81486, 68042, 'no_lang_code', 'name', 'Itres (Canada)'),
(81487, 68043, 'en', 'name', 'Jonathan A Law & Associates'),
(81488, 68044, 'en', 'name', 'Keith Khan Associates'),
(81489, 68045, 'en', 'name', 'International Genetically Engineered Machine Foundation'),
(81490, 68046, 'en', 'name', 'Kelvingrove Art Gallery and Museum'),
(81491, 68047, 'en', 'name', 'Hawley Collection'),
(81492, 68048, 'en', 'name', 'Kent Archaeological Society'),
(81493, 68049, 'en', 'name', 'Kent History and Library Centre'),
(81494, 68050, 'en', 'name', 'International Hydropower Association'),
(81495, 68051, 'en', 'name', 'Kenya Health Informatics Association'),
(81496, 68052, 'en', 'name', 'Keswick Museum'),
(81497, 68053, 'en', 'name', 'Kharadar General Hospital'),
(81498, 68053, 'ur', 'name', 'کھارادر جنرل ہسپتال'),
(81499, 68054, 'en', 'name', 'International Lesbian, Gay, Bisexual, Trans and Intersex Association'),
(81500, 68055, 'no_lang_code', 'name', 'Kheiron Medical Technologies (United Kingdom)'),
(81501, 68056, 'en', 'name', 'Khizra Foundation'),
(81502, 68057, 'en', 'name', 'Khoj International Artists'' Association'),
(81503, 68058, 'en', 'name', 'International Longevity Centre - India'),
(81504, 68059, 'en', 'name', 'Kidney Associates'),
(81505, 68060, 'en', 'name', 'International Maritime Organization'),
(81506, 68061, 'en', 'name', 'Kinetica Museum'),
(81507, 68062, 'en', 'name', 'Kaivalya Education Foundation'),
(81508, 68063, 'en', 'name', 'International New Town Institute'),
(81509, 68064, 'en', 'name', 'King Faisal Center for Research and Islamic Studies'),
(81510, 68064, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„ Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(81511, 68065, 'en', 'name', 'King Hussein Foundation'),
(81512, 68065, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© Ų§Ł„Ł…Ł„Łƒ Ų§Ł„Ų­Ų³ŁŠŁ†'),
(81513, 68066, 'en', 'name', 'Karnataka Health Promotion Trust'),
(81514, 68067, 'en', 'name', 'Lancaster City Museum'),
(81515, 68068, 'en', 'name', 'The Katie Piper Foundation'),
(81516, 68069, 'en', 'name', 'International Research School of Planetary Sciences'),
(81517, 68070, 'en', 'name', 'Kino Klassika Foundation'),
(81518, 68071, 'en', 'name', 'Koshish Charitable Trust'),
(81519, 68071, 'hi', 'name', 'ą¤•ą„‹ą¤¶ą¤æą¤¶'),
(81520, 68072, 'en', 'name', 'Kirkgate Centre'),
(81521, 68073, 'en', 'name', 'London Irish Centre'),
(81522, 68074, 'en', 'name', 'Kraszna-Krausz Foundation'),
(81523, 68075, 'en', 'name', 'Kirklees & Calderdale Rape & Sexual Abuse Counselling Centre'),
(81524, 68076, 'en', 'name', 'London Rebuilding Society'),
(81525, 68077, 'en', 'name', 'Kirknewton Community Development Trust'),
(81526, 68078, 'en', 'name', 'Kyoto Costume Institute'),
(81527, 68078, 'ja', 'name', 'äŗ¬éƒ½ęœé£¾ę–‡åŒ–ē ”ē©¶č²”å›£'),
(81528, 68079, 'en', 'name', 'London Social Science'),
(81529, 68080, 'en', 'name', 'Knowle West Healthy Living Centre'),
(81530, 68081, 'en', 'name', 'Conservancies KZN'),
(81531, 68082, 'no_lang_code', 'name', 'Longenecker and Associates (United States)'),
(81532, 68083, 'en', 'name', 'Lorna Young Foundation'),
(81533, 68084, 'no_lang_code', 'name', 'Medical Moulded Products (United Kingdom)'),
(81534, 68085, 'pl', 'name', 'Dolnośląskie Centrum Onkologii'),
(81535, 68086, 'en', 'name', 'Medical Prescription Services'),
(81536, 68087, 'en', 'name', 'Luing Cattle Society'),
(81537, 68088, 'no_lang_code', 'name', 'Lumen (United Kingdom)'),
(81538, 68089, 'pl', 'name', 'Lambda Warszawa'),
(81539, 68090, 'en', 'name', 'The Ethical Small Traders Association'),
(81540, 68091, 'en', 'name', 'Luton Culture'),
(81541, 68092, 'en', 'name', 'Landscape Research & Management'),
(81542, 68093, 'no_lang_code', 'name', 'M C I SantƩ Animale (Morocco)'),
(81543, 68094, 'en', 'name', 'Landscape Research Group'),
(81544, 68095, 'en', 'name', 'Medicines Patent Pool'),
(81545, 68096, 'no_lang_code', 'name', 'MIE Medical Research (United Kingdom)'),
(81546, 68097, 'en', 'name', 'Language and Learning Foundation'),
(81547, 68097, 'hi', 'name', 'भाषा और ą¤øą„€ą¤–ą¤Øą¤¾ ą¤«ą¤¾ą¤‰ą¤‚ą¤”ą„‡ą¤¶ą¤Ø'),
(81548, 68098, 'en', 'name', 'Medicon Village'),
(81549, 68099, 'no_lang_code', 'name', 'MGT Capital Investments (United Kingdom)'),
(81550, 68100, 'en', 'name', 'Lapido Media'),
(81551, 68101, 'en', 'name', 'Medieval Settlement Research Group'),
(81552, 68102, 'en', 'name', 'Law & Society Trust'),
(81553, 68103, 'en', 'name', 'Law Centres Network'),
(81554, 68104, 'en', 'name', 'Medway NHS Foundation Trust'),
(81555, 68105, 'en', 'name', 'Magna'),
(81556, 68106, 'en', 'name', 'Association of Mental Health Providers'),
(81557, 68107, 'en', 'name', 'Learning and Work Institute'),
(81558, 68108, 'en', 'name', 'Metal Industries Research & Development Centre'),
(81559, 68108, 'zh', 'name', 'é‡‘å±¬å·„ę„­ē ”ē©¶ē™¼å±•äø­åæƒ'),
(81560, 68109, 'en', 'name', 'LearnPlay Foundation'),
(81561, 68110, 'en', 'name', 'The Meththa Foundation'),
(81562, 68111, 'en', 'name', 'Metropolitan Arts Centre'),
(81563, 68112, 'en', 'name', 'Leeds Community Foundation'),
(81564, 68113, 'en', 'name', 'Metropolitan Black Police Association'),
(81565, 68114, 'en', 'name', 'Manor Gardens Welfare Trust'),
(81566, 68115, 'en', 'name', 'Legal Policy Research Centre'),
(81567, 68115, 'ru', 'name', 'Центр ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Š½ŠøŃ правовой политики'),
(81568, 68116, 'en', 'name', 'Marin Endocrine Care and Research'),
(81569, 68117, 'en', 'name', 'Midlands Arts Centre'),
(81570, 68118, 'en', 'name', 'Midland Heart'),
(81571, 68119, 'en', 'name', 'Marine Science Coordination Committee'),
(81572, 68120, 'no_lang_code', 'name', '4SC (Germany)'),
(81573, 68121, 'en', 'name', 'Milapfest'),
(81574, 68122, 'en', 'name', 'The Military Intelligence Museum'),
(81575, 68123, 'en', 'name', 'Milnbank Housing Association'),
(81576, 68124, 'en', 'name', 'Ministry of Scientific Research and Innovation'),
(81577, 68124, 'fr', 'name', 'MinistĆØre de la Recherche Scientifique et de l''Innovation'),
(81578, 68125, 'no_lang_code', 'name', 'Lime Associates (United Kingdom)'),
(81579, 68126, 'en', 'name', 'Lincolnshire Partnership NHS Foundation Trust'),
(81580, 68127, 'no_lang_code', 'name', 'Mademoiselle Desserts (United Kingdom)'),
(81581, 68128, 'es', 'name', 'Ministerio de Cultura'),
(81582, 68128, 'en', 'name', 'Ministry of Culture'),
(81583, 68129, 'en', 'name', 'Ministry of Defence'),
(81584, 68130, 'en', 'name', 'The Linenhall Arts Centre'),
(81585, 68131, 'no_lang_code', 'name', 'Liquids Research (United Kingdom)'),
(81586, 68132, 'en', 'name', 'The Matthew Elvidge Trust'),
(81587, 68133, 'en', 'name', 'Ministry of Health and Sports'),
(81588, 68134, 'en', 'name', 'Ministry of Justice and Public Security'),
(81589, 68134, 'pt', 'name', 'Ministério da Justiça e Segurança Pública'),
(81590, 68135, 'en', 'name', 'Ministry of Labour, Social Security and Services'),
(81591, 68136, 'en', 'name', 'Media Standards Trust'),
(81592, 68137, 'en', 'name', 'Lisburn & Castlereagh City Council'),
(81593, 68138, 'en', 'name', 'Medic Mobile'),
(81594, 68139, 'no_lang_code', 'name', 'Medical Architecture (United Kingdom)'),
(81595, 68140, 'en', 'name', 'Local Area Research & Intelligence Association'),
(81596, 68141, 'en', 'name', 'Local Government Association'),
(81597, 68142, 'en', 'name', 'Local Trust'),
(81598, 68143, 'en', 'name', 'Missenden Centre'),
(81599, 68144, 'en', 'name', 'Institute for Social and Economic Research'),
(81600, 68145, 'en', 'name', 'London Arts in Health Forum'),
(81601, 68146, 'no_lang_code', 'name', 'MJ Medical (United Kingdom)');
INSERT INTO `ror_settings` VALUES
(81602, 68147, 'en', 'name', 'Municipal Association of Victoria'),
(81603, 68148, 'ro', 'name', 'Spitalul Clinic Judetean Mures'),
(81604, 68149, 'pt', 'name', 'Museu Afro Brasil'),
(81605, 68150, 'en', 'name', 'Byron Museum of History'),
(81606, 68151, 'en', 'name', 'Museum Ethnographers Group'),
(81607, 68152, 'en', 'name', 'Museum of Australian Democracy'),
(81608, 68153, 'en', 'name', 'Museum of East Anglian Life'),
(81609, 68154, 'es', 'name', 'Museo Nacional de EtnografĆ­a y Folklore'),
(81610, 68155, 'pt', 'name', 'Museu de Lamego'),
(81611, 68156, 'es', 'name', 'Museo de la Memoria y los Derechos Humanos'),
(81612, 68156, 'en', 'name', 'Museum of Memory and Human Rights'),
(81613, 68157, 'en', 'name', 'Museum Of Modern Art'),
(81614, 68158, 'en', 'name', 'Molecular Sciences Software Institute'),
(81615, 68159, 'en', 'name', 'Mondo Foundation'),
(81616, 68160, 'en', 'name', 'National Centre for Contemporary Arts'),
(81617, 68160, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ центр современного ŠøŃŠŗŃƒŃŃŃ‚ва'),
(81618, 68161, 'en', 'name', 'Moray Art Centre'),
(81619, 68162, 'en', 'name', 'More Associates'),
(81620, 68163, 'en', 'name', 'National Centre for Resilience'),
(81621, 68164, 'en', 'name', 'Moseley Community Development Trust'),
(81622, 68165, 'no_lang_code', 'name', 'Mote Research (United Kingdom)'),
(81623, 68166, 'en', 'name', 'National Childbirth Trust'),
(81624, 68167, 'en', 'name', 'Museum of the History of Science'),
(81625, 68168, 'en', 'name', 'National Civil War Centre'),
(81626, 68169, 'en', 'name', 'Mourne Heritage Trust'),
(81627, 68170, 'en', 'name', 'Museum of the Order of St John'),
(81628, 68171, 'en', 'name', 'Mpumalanga Deparment of Health'),
(81629, 68172, 'en', 'name', 'National Coastal Tourism Academy'),
(81630, 68173, 'en', 'name', 'Henriette-Bathily Women''s Museum'),
(81631, 68174, 'en', 'name', 'National Council for Palliative Care'),
(81632, 68175, 'en', 'name', 'Mull and Iona Community Trust'),
(81633, 68176, 'ga', 'name', 'Chomhairle NÔisiúnta Eacnamaíoch Shóialta'),
(81634, 68176, 'en', 'name', 'National Economic and Social Council'),
(81635, 68177, 'en', 'name', 'National Eczema Society'),
(81636, 68178, 'en', 'name', 'MuseumNext'),
(81637, 68179, 'en', 'name', 'National Employment Savings Trust'),
(81638, 68180, 'en', 'name', 'National Gamete Donation Trust'),
(81639, 68181, 'en', 'name', 'National Great Rivers Research and Education Center'),
(81640, 68182, 'en', 'name', 'Museums Sheffield'),
(81641, 68183, 'en', 'name', 'Music Venue Trust'),
(81642, 68184, 'en', 'name', 'National Health Insurance Fund'),
(81643, 68185, 'en', 'name', 'National Heritage Science Forum'),
(81644, 68186, 'en', 'name', 'Myanmar Environment Institute'),
(81645, 68187, 'en', 'name', 'Myanmar Geosciences Society'),
(81646, 68188, 'en', 'name', 'mySociety'),
(81647, 68189, 'en', 'name', 'Nafici Environmental Research'),
(81648, 68190, 'en', 'name', 'National Ice Centre'),
(81649, 68191, 'en', 'name', 'Namgyal Monastery Institute of Buddhist Studies'),
(81650, 68191, 'fr', 'name', 'Namgyal monastère Institut d''études bouddhistes'),
(81651, 68192, 'en', 'name', 'Nanjing Museum'),
(81652, 68192, 'zh', 'name', 'å—äŗ¬åšē‰©é™¢'),
(81653, 68193, 'en', 'name', 'Nanolayers'),
(81654, 68194, 'en', 'name', 'National Museum of China'),
(81655, 68194, 'zh', 'name', 'äø­å›½å›½å®¶åšē‰©é¦†'),
(81656, 68195, 'en', 'name', 'Chinese National Museum of Ethnology'),
(81657, 68196, 'en', 'name', 'National Museum of Korea'),
(81658, 68196, 'ko', 'name', '국립중앙박물꓀'),
(81659, 68197, 'en', 'name', 'National Museum of Natural History'),
(81660, 68197, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¾ą¤•ą„ƒą¤¤ą¤æą¤• इतिहास ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ, नई ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(81661, 68198, 'en', 'name', 'National Museum of the Royal Navy'),
(81662, 68199, 'de', 'name', 'DRK Krankenhaus Altenkirchen-Hachenburg'),
(81663, 68200, 'en', 'name', 'National Phenotypic Screening Centre'),
(81664, 68201, 'it', 'name', 'Humanitas Castelli'),
(81665, 68202, 'en', 'name', 'Northern Ireland Advanced Composites and Engineering Centre'),
(81666, 68203, 'no_lang_code', 'name', 'IBI Group (United Kingdom)'),
(81667, 68204, 'en', 'name', 'Ocala Research Institute'),
(81668, 68205, 'en', 'name', 'National Ready Mixed Concrete Association'),
(81669, 68206, 'no_lang_code', 'name', 'Nine Health CIC (United Kingdom)'),
(81670, 68207, 'es', 'name', 'Museo de Historia Natural Noel Kempff Mercado'),
(81671, 68208, 'no_lang_code', 'name', 'Nolan Associates (United Kingdom)'),
(81672, 68209, 'en', 'name', 'Oil & Gas Innovation Centre'),
(81673, 68210, 'en', 'name', 'Social Tech Trust'),
(81674, 68211, 'no_lang_code', 'name', 'Ohmedics (United Kingdom)'),
(81675, 68212, 'en', 'name', 'NonFerrous Materials Technology Development Centre'),
(81676, 68213, 'en', 'name', 'Norfolk Archaeological Trust'),
(81677, 68214, 'en', 'name', 'North Alabama Research Center'),
(81678, 68215, 'no_lang_code', 'name', 'Ondine (Canada)'),
(81679, 68216, 'en', 'name', 'National Scientific Center for Surgery named after A.N. Syzganov'),
(81680, 68216, 'kk', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø им. А.Š. Дызганова'),
(81681, 68217, 'ro', 'name', 'Institutul Medicina de Urgenta'),
(81682, 68218, 'en', 'name', 'National Sheep Association'),
(81683, 68219, 'en', 'name', 'National Slate Museum'),
(81684, 68220, 'ms', 'name', 'Agensi Angkasa Negara'),
(81685, 68220, 'en', 'name', 'National Space Agency'),
(81686, 68221, 'en', 'name', 'North of England Civic Trust'),
(81687, 68222, 'en', 'name', 'National Subsea Research Initiative'),
(81688, 68223, 'en', 'name', 'National Survivor User Network'),
(81689, 68224, 'en', 'name', 'North Tolsta Historical Society'),
(81690, 68225, 'en', 'name', 'Taigh Chearsabhagh Museum and Arts Centre'),
(81691, 68226, 'en', 'name', 'National Center for Tuberculosis and Lung Disease'),
(81692, 68227, 'en', 'name', 'Northampton General Hospital NHS Trust'),
(81693, 68228, 'en', 'name', 'The National Trust'),
(81694, 68229, 'en', 'name', 'Northern Architecture'),
(81695, 68230, 'en', 'name', 'Catalyst'),
(81696, 68231, 'en', 'name', 'Nationwide Building Society'),
(81697, 68232, 'en', 'name', 'Natural History Society of Northumbria'),
(81698, 68233, 'no_lang_code', 'name', 'Herbal Apothecary (United Kingdom)'),
(81699, 68234, 'en', 'name', 'Northern Rock Foundation'),
(81700, 68235, 'en', 'name', 'One to One Development Trust'),
(81701, 68236, 'en', 'name', 'Nautical Archaeology Society'),
(81702, 68237, 'en', 'name', 'Earth Trust'),
(81703, 68238, 'en', 'name', 'One-Handed Musical Instrument'),
(81704, 68239, 'en', 'name', 'National Deaf Children''s Society'),
(81705, 68240, 'en', 'name', 'Northwest Heart Clinical Research'),
(81706, 68241, 'en', 'name', 'Online Dating Association'),
(81707, 68242, 'de', 'name', 'Nephrologisches Zentrum Emsland'),
(81708, 68243, 'de', 'name', 'Nephrologisches Zentrum Villingen-Schwenningen'),
(81709, 68244, 'en', 'name', 'Comunn Eachdraidh Nis'),
(81710, 68245, 'en', 'name', 'Nottinghamshire Deaf Society'),
(81711, 68246, 'en', 'name', 'Open Air Laboratories Network'),
(81712, 68247, 'no_lang_code', 'name', 'Innovia Medical (United Kingdom)'),
(81713, 68248, 'no_lang_code', 'name', 'Image Metrics (United Kingdom)'),
(81714, 68249, 'no_lang_code', 'name', 'OptiBiotix (United Kingdom)'),
(81715, 68250, 'en', 'name', 'Oral History Society'),
(81716, 68251, 'en', 'name', 'Acropolis Museum'),
(81717, 68251, 'el', 'name', 'ĪœĪæĻ…ĻƒĪµĪÆĪæ Ī‘ĪŗĻĻŒĻ€ĪæĪ»Ī·Ļ‚'),
(81718, 68252, 'en', 'name', 'New Gorbals Housing Association'),
(81719, 68253, 'no_lang_code', 'name', 'Numedicus (United Kingdom)'),
(81720, 68254, 'en', 'name', 'New Walk Museum and Art Gallery'),
(81721, 68255, 'en', 'name', 'New Zealand eScience Infrastructure'),
(81722, 68256, 'en', 'name', 'Oasis Charitable Trust'),
(81723, 68257, 'en', 'name', 'Ormiston Bushfield Academy'),
(81724, 68258, 'en', 'name', 'Observatories and Research Facilities for European Seismology'),
(81725, 68259, 'fr', 'name', 'MusƩe d''Orsay'),
(81726, 68260, 'no_lang_code', 'name', 'Orsus Medical (United Kingdom)'),
(81727, 68261, 'en', 'name', 'National Institute for Pharmaceutical Technology & Education'),
(81728, 68262, 'pt', 'name', 'Osso'),
(81729, 68263, 'es', 'name', 'Centre National de MƩmoire Historique'),
(81730, 68263, 'en', 'name', 'National Center for Historical Memory'),
(81731, 68264, 'en', 'name', 'Oswestry Town Museum'),
(81732, 68265, 'en', 'name', 'Organic Centre Wales'),
(81733, 68266, 'pt', 'name', 'Instituto Nacional de Psiquiatria do Desenvolvimento para CrianƧas e Adolescentes'),
(81734, 68267, 'no_lang_code', 'name', 'SMC (United Kingdom)'),
(81735, 68268, 'no_lang_code', 'name', 'National Milk Records (United Kingdom)'),
(81736, 68269, 'en', 'name', 'Energy and Utility Skills'),
(81737, 68270, 'en', 'name', 'National Mining Museum Scotland'),
(81738, 68271, 'no_lang_code', 'name', 'Oxford Applied Research (United Kingdom)'),
(81739, 68272, 'es', 'name', 'Museo Nacional de ArqueologĆ­a de Bolivia'),
(81740, 68272, 'en', 'name', 'National Museum of Archaeology'),
(81741, 68273, 'en', 'name', 'Oxford Centre for Drug Delivery Devices'),
(81742, 68274, 'en', 'name', 'Peggy Dodd Centre'),
(81743, 68275, 'no_lang_code', 'name', 'Oxford MicroMedical (United Kingdom)'),
(81744, 68276, 'en', 'name', 'Oxleas NHS Foundation Trust'),
(81745, 68277, 'en', 'name', 'PNLP'),
(81746, 68278, 'en', 'name', 'Pacific Arts Association'),
(81747, 68279, 'en', 'name', 'Penn Associates'),
(81748, 68280, 'en', 'name', 'Pensions and Lifetime Savings Association'),
(81749, 68281, 'en', 'name', 'Paediatric Emergency Research in the United Kingdom & Ireland'),
(81750, 68282, 'en', 'name', 'National Association of British and Irish Millers'),
(81751, 68283, 'en', 'name', 'National Association of British Market Authorities'),
(81752, 68284, 'en', 'name', 'Pentucket Medical'),
(81753, 68285, 'en', 'name', 'National Association of Cider Makers'),
(81754, 68286, 'en', 'name', 'National Association of Eco-Friendly Salons and Spas'),
(81755, 68287, 'en', 'name', 'National Association of Funeral Directors'),
(81756, 68288, 'cy', 'name', 'Comunn Eachdraidh na Pairc'),
(81757, 68289, 'en', 'name', 'People''s History Museum'),
(81758, 68290, 'en', 'name', 'Pakistan and Kashmir Welfare Association'),
(81759, 68291, 'no_lang_code', 'name', 'Peptide Protein Research (United Kingdom)'),
(81760, 68292, 'en', 'name', 'Professional Publishers Association'),
(81761, 68293, 'en', 'name', 'Permian Research Foundation'),
(81762, 68294, 'no_lang_code', 'name', 'Perpetuity Research (United Kingdom)'),
(81763, 68295, 'en', 'name', 'Perth & Kinross Association of Voluntary Service'),
(81764, 68296, 'en', 'name', 'Perth and Kinross Heritage Trust'),
(81765, 68297, 'no_lang_code', 'name', 'Porvair (United Kingdom)'),
(81766, 68298, 'en', 'name', 'Peruvian Association of People Affected by Tuberculosis'),
(81767, 68299, 'en', 'name', 'The Pevensey Court House Museum and Gaol'),
(81768, 68300, 'en', 'name', 'Potato Processors Association'),
(81769, 68301, 'no_lang_code', 'name', 'Pottstown Medical Specialists (United States)'),
(81770, 68302, 'en', 'name', 'Palmetto Research Center'),
(81771, 68303, 'en', 'name', 'The Philippine Women Centre of BC'),
(81772, 68304, 'no_lang_code', 'name', 'Praxis (United Kingdom)'),
(81773, 68305, 'en', 'name', 'Pre School Learning Alliance'),
(81774, 68306, 'en', 'name', 'Pan-African Association'),
(81775, 68307, 'no_lang_code', 'name', 'Parabola (United Kingdom)'),
(81776, 68308, 'en', 'name', 'The Pier Arts Centre'),
(81777, 68309, 'en', 'name', 'Parliamentary Advisory Council for Transport Safety'),
(81778, 68310, 'it', 'name', 'Museo Nazionale Preistorico Etnografico Luigi Pigorini'),
(81779, 68310, 'en', 'name', 'Pigorini National Museum of Prehistory and Ethnography'),
(81780, 68311, 'en', 'name', 'Parliamentary Office of Science and Technology'),
(81781, 68312, 'en', 'name', 'Pitt Rivers Museum'),
(81782, 68313, 'en', 'name', 'Partick Housing Association'),
(81783, 68314, 'en', 'name', 'Particulate Solid Research (United States)'),
(81784, 68315, 'en', 'name', 'The Princes Foundation'),
(81785, 68316, 'en', 'name', 'Learning Spaces Collaboratory'),
(81786, 68317, 'en', 'name', 'Planet Earth Institute'),
(81787, 68318, 'en', 'name', 'Planned Environment Therapy Trust'),
(81788, 68319, 'en', 'name', 'PPMA Group of Associations'),
(81789, 68320, 'en', 'name', 'The Patients Association'),
(81790, 68321, 'en', 'name', 'Plymouth City Museum and Art Gallery'),
(81791, 68322, 'no_lang_code', 'name', 'Promote Medical (United Kingdom)'),
(81792, 68323, 'fr', 'name', 'Centre International de PoƩsie Marseille'),
(81793, 68324, 'no_lang_code', 'name', 'Protected Trust Services (United Kingdom)'),
(81794, 68325, 'en', 'name', 'National Centre for Product Design and Development Research'),
(81795, 68326, 'en', 'name', 'Poetry International Foundation'),
(81796, 68327, 'en', 'name', 'Peace Museum'),
(81797, 68328, 'en', 'name', 'The Point of Care Foundation'),
(81798, 68329, 'pl', 'name', 'Wojewódzki Szpital Specjalistyczny nr 5 im. św. Barbary w Sosnowcu'),
(81799, 68330, 'en', 'name', 'Polish Cultural Festival Association'),
(81800, 68331, 'no_lang_code', 'name', 'Peak Associates (United Kingdom)'),
(81801, 68332, 'pl', 'name', 'Wojewódzki Szpital Specjalistyczny nr 4 w Bytomiu'),
(81802, 68333, 'es', 'name', 'Fundación ProYungas'),
(81803, 68334, 'en', 'name', 'PRS Legislative Research'),
(81804, 68335, 'en', 'name', 'Pontus Research'),
(81805, 68336, 'en', 'name', 'Art UK'),
(81806, 68337, 'en', 'name', 'Pearl Medical Centre'),
(81807, 68338, 'en', 'name', 'Ramblers'),
(81808, 68339, 'en', 'name', 'Portsmouth Museum'),
(81809, 68340, 'en', 'name', 'Public Health Research Consortium'),
(81810, 68341, 'en', 'name', 'Raphael Samuel History Centre'),
(81811, 68342, 'en', 'name', 'Publishers Licensing Services'),
(81812, 68343, 'en', 'name', 'Pulitzer Arts Foundation'),
(81813, 68344, 'no_lang_code', 'name', 'RAPID Biomedical (Germany)'),
(81814, 68345, 'en', 'name', 'Puppet Centre Trust'),
(81815, 68346, 'no_lang_code', 'name', 'Research Network Services (Germany)'),
(81816, 68347, 'pt', 'name', 'Fundação Raquel e Martin Sain'),
(81817, 68348, 'en', 'name', 'Putnoe Medical Centre'),
(81818, 68349, 'en', 'name', 'Rare Breeds Survival Trust'),
(81819, 68350, 'fr', 'name', 'Q & T Recherche Sherbrooke'),
(81820, 68350, 'en', 'name', 'Q & T Research'),
(81821, 68351, 'en', 'name', 'Raspberry Pi Foundation'),
(81822, 68352, 'no_lang_code', 'name', 'Razumkov Centre'),
(81823, 68352, 'uk', 'name', 'Центр Разумкова'),
(81824, 68353, 'no_lang_code', 'name', 'Quantemplate (United Kingdom)'),
(81825, 68354, 'en', 'name', 'Ribble Rivers Trust'),
(81826, 68355, 'en', 'name', 'Reading International Solidarity Centre'),
(81827, 68356, 'no_lang_code', 'name', 'Richard Allitt Associates (United Kingdom)'),
(81828, 68357, 'en', 'name', 'Reading Museum'),
(81829, 68358, 'en', 'name', 'Queen Elizabeth’s Academy'),
(81830, 68359, 'no_lang_code', 'name', 'Richard Carter and Associates (United Kingdom)'),
(81831, 68360, 'en', 'name', 'Queen Elizabeth Hospital Birmingham Charity'),
(81832, 68361, 'en', 'name', 'Powell Cotton Museum'),
(81833, 68362, 'no_lang_code', 'name', 'Reed Medical (United Kingdom)'),
(81834, 68363, 'no_lang_code', 'name', 'Marshall Motor Holdings (United Kingdom)'),
(81835, 68364, 'en', 'name', 'The Queen''s Foundation'),
(81836, 68365, 'no_lang_code', 'name', 'Pharmaron (United Kingdom)'),
(81837, 68366, 'en', 'name', 'Regional Education Centre for the area of primary care'),
(81838, 68367, 'en', 'name', 'R&G Associates'),
(81839, 68368, 'en', 'name', 'Regional Inter-agency Task Team on Children and AIDS'),
(81840, 68369, 'no_lang_code', 'name', 'RAB Microfluidics (United Kingdom)'),
(81841, 68370, 'en', 'name', 'Riverside Community Health Project'),
(81842, 68371, 'en', 'name', 'RAC Foundation'),
(81843, 68372, 'no_lang_code', 'name', 'Registry Trust (United Kingdom)'),
(81844, 68373, 'en', 'name', 'Riverside'),
(81845, 68374, 'en', 'name', 'Rail Research UK Association'),
(81846, 68375, 'no_lang_code', 'name', '3DReid (United Kingdom)'),
(81847, 68376, 'no_lang_code', 'name', 'Riverside Medical Packaging (United Kingdom)'),
(81848, 68377, 'en', 'name', 'Quakers'),
(81849, 68378, 'en', 'name', 'Road Haulage Association'),
(81850, 68379, 'en', 'name', 'Railway Industry Association'),
(81851, 68380, 'en', 'name', 'Quakers'),
(81852, 68381, 'en', 'name', 'Renewable Energy Association'),
(81853, 68382, 'en', 'name', 'Roja Muthiah Research Library'),
(81854, 68383, 'en', 'name', 'Republic Klaipeda Hospital'),
(81855, 68383, 'lt', 'name', 'Respublikinė Klaipėdos ligoninė'),
(81856, 68384, 'en', 'name', 'Royal Pigeon Racing Association'),
(81857, 68385, 'en', 'name', 'Rescobie Loch Development Association'),
(81858, 68386, 'en', 'name', 'Royal Society for the Prevention of Accidents'),
(81859, 68387, 'en', 'name', 'Royal Television Society'),
(81860, 68388, 'en', 'name', 'Rotherham United Community Sports Trust'),
(81861, 68389, 'en', 'name', 'Royal Yachting Association'),
(81862, 68390, 'en', 'name', 'Rural Development Foundation of Pakistan'),
(81863, 68391, 'en', 'name', 'Rural Self-Reliance Development Centre'),
(81864, 68392, 'en', 'name', 'Research Institute for Disabled Consumers'),
(81865, 68393, 'en', 'name', 'The Royal A​nglian Regiment Museum'),
(81866, 68394, 'pt', 'name', 'Centro Panamericano de Fiebre Aftosa'),
(81867, 68395, 'en', 'name', 'Saffron Walden Museum'),
(81868, 68396, 'no_lang_code', 'name', 'SageTech Medical Equipment (United Kingdom)'),
(81869, 68397, 'no_lang_code', 'name', 'Saratoga Cardiology Associates (United States)'),
(81870, 68398, 'en', 'name', 'Royal Institution of Naval Architects'),
(81871, 68399, 'no_lang_code', 'name', 'SAIC Motor (United Kingdom)'),
(81872, 68400, 'no_lang_code', 'name', 'Sarissa Biomedical (United Kingdom)'),
(81873, 68401, 'en', 'name', 'Supra-Regional Assay Service'),
(81874, 68402, 'en', 'name', 'Royal Liverpool Philharmonic'),
(81875, 68403, 'fr', 'name', 'MusƩe royal de Mariemont'),
(81876, 68403, 'en', 'name', 'Royal Museum of Mariemont'),
(81877, 68404, 'en', 'name', 'Scottish Association of the Teachers of History'),
(81878, 68405, 'en', 'name', 'Save the Rhino Trust'),
(81879, 68406, 'en', 'name', 'The Scottish Forestry Trust'),
(81880, 68407, 'en', 'name', 'Saxon Memorial Foundation'),
(81881, 68407, 'de', 'name', 'Stiftung SƤchsische GedenkstƤtten zur Erinnerung an die Opfer politischer Gewaltherrschaft'),
(81882, 68408, 'en', 'name', 'SB Science Management'),
(81883, 68409, 'en', 'name', 'Scottish Graduate School for Arts & Humanities'),
(81884, 68410, 'en', 'name', 'Scarborough Archaeological and Historical Society'),
(81885, 68411, 'en', 'name', 'Scottish Jewish Archives Centre'),
(81886, 68412, 'en', 'name', 'Scarborough Museums Trust'),
(81887, 68413, 'en', 'name', 'School Health Research Network'),
(81888, 68414, 'en', 'name', 'Scottish Music Industry Association'),
(81889, 68415, 'en', 'name', 'The Schumacher Institute'),
(81890, 68416, 'en', 'name', 'Sanctuary Housing'),
(81891, 68417, 'en', 'name', 'Scottish Public Pensions Agency'),
(81892, 68418, 'en', 'name', 'SANE Mental Health Charity'),
(81893, 68419, 'no_lang_code', 'name', 'ScrewFast Foundations (United Kingdom)'),
(81894, 68420, 'en', 'name', 'Shaw Trust'),
(81895, 68421, 'en', 'name', 'Science Media Centre'),
(81896, 68422, 'en', 'name', 'Shawlands Academy'),
(81897, 68423, 'no_lang_code', 'name', 'Science Navigation Group (United Kingdom)'),
(81898, 68424, 'en', 'name', 'Sheffield & Rotherham Wildlife Trust'),
(81899, 68425, 'en', 'name', 'Sheffield Beekeepers'' Association'),
(81900, 68426, 'en', 'name', 'Sheffield Industrial Museums Trust'),
(81901, 68427, 'en', 'name', 'Science on Stage Europe'),
(81902, 68428, 'no_lang_code', 'name', 'Sea Level Research (United Kingdom)'),
(81903, 68429, 'en', 'name', 'Science Oxford'),
(81904, 68430, 'en', 'name', 'Loden Foundation'),
(81905, 68431, 'en', 'name', 'Shenyang Fifth People Hospital'),
(81906, 68431, 'zh', 'name', 'ę²ˆé˜³åø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(81907, 68432, 'en', 'name', 'Scientific Studies Association'),
(81908, 68432, 'tr', 'name', 'İlmi Etüdler Derneğ'),
(81909, 68433, 'no_lang_code', 'name', 'Sebastian Conran Associates (United Kingdom)'),
(81910, 68434, 'en', 'name', 'Shenyang Sujiatun District Central Hospital'),
(81911, 68434, 'zh', 'name', 'ę²ˆé˜³åø‚č‹å®¶å±ÆåŒŗäø­åæƒåŒ»é™¢'),
(81912, 68435, 'no_lang_code', 'name', 'Scotia Gas Networks (United Kingdom)'),
(81913, 68436, 'no_lang_code', 'name', 'Zhongzhu Healthcare (China)'),
(81914, 68437, 'cy', 'name', 'Gweld Gwyddoniaeth'),
(81915, 68437, 'en', 'name', 'See Science'),
(81916, 68438, 'en', 'name', 'Scottish Association of Meat Wholesalers'),
(81917, 68439, 'en', 'name', 'Scottish Cancer Foundation'),
(81918, 68440, 'en', 'name', 'Scottish Civic Trust'),
(81919, 68441, 'en', 'name', 'Scottish Collaboration for Public Health Research and Policy'),
(81920, 68442, 'no_lang_code', 'name', 'Shirkat Gah'),
(81921, 68443, 'no_lang_code', 'name', 'Sensatech Designs (United Kingdom)'),
(81922, 68444, 'en', 'name', 'Scottish Family Business Association'),
(81923, 68445, 'en', 'name', 'Scottish Federation of Housing Associations'),
(81924, 68446, 'en', 'name', 'Scottish Fisheries Museum'),
(81925, 68447, 'en', 'name', 'Serendib Foundation for Music and Performing Arts'),
(81926, 68448, 'en', 'name', 'Shoreditch Trust'),
(81927, 68449, 'no_lang_code', 'name', 'Short and Associates (United States)'),
(81928, 68450, 'en', 'name', 'Caledonia Housing Association'),
(81929, 68451, 'en', 'name', 'Society for Longitudinal and Lifecourse Studies'),
(81930, 68452, 'en', 'name', 'CarbonCo-op'),
(81931, 68453, 'en', 'name', 'Sir John Soane''s Museum'),
(81932, 68454, 'en', 'name', 'Six Nations Indian Museum'),
(81933, 68455, 'en', 'name', 'Society of Editors'),
(81934, 68456, 'en', 'name', 'Institute of Bio-Sensing Technology'),
(81935, 68457, 'no', 'name', 'Skedsmo Medisinske Senter'),
(81936, 68458, 'en', 'name', 'Society of Energy Engineers and Managers'),
(81937, 68459, 'en', 'name', 'Shaanxi History Museum'),
(81938, 68459, 'zh', 'name', 'é™•č„æåŽ†å²åšē‰©é¦†'),
(81939, 68460, 'no_lang_code', 'name', 'Shandong Museum'),
(81940, 68460, 'zh', 'name', 'å±±äøœåšē‰©é¦†'),
(81941, 68461, 'en', 'name', 'Renaissance Life Therapies'),
(81942, 68462, 'no_lang_code', 'name', 'Shanghai Dramatic Arts Centre (China)'),
(81943, 68462, 'zh', 'name', 'äøŠęµ·čÆå‰§č‰ŗęœÆäø­åæƒ'),
(81944, 68463, 'en', 'name', 'SolarAid'),
(81945, 68464, 'no_lang_code', 'name', 'Shanghai Museum'),
(81946, 68464, 'zh', 'name', 'äøŠęµ·åšē‰©é¦†'),
(81947, 68465, 'en', 'name', 'Shannon Applied Biotechnology Centre'),
(81948, 68466, 'no_lang_code', 'name', 'Shanxi Museum'),
(81949, 68466, 'zh', 'name', 'å±±č„æåšē‰©é™¢'),
(81950, 68467, 'no_lang_code', 'name', 'SLE (United Kingdom)'),
(81951, 68468, 'en', 'name', 'Small Woods Association'),
(81952, 68469, 'en', 'name', 'Nepal Participatory Action Network'),
(81953, 68470, 'en', 'name', 'Smart Water Networks Forum'),
(81954, 68471, 'en', 'name', 'Smith-Magenis Syndrome Foundation'),
(81955, 68472, 'en', 'name', 'Smuts House Museum'),
(81956, 68473, 'en', 'name', 'Snack, Nut and Crisp Manufacturers Association'),
(81957, 68474, 'en', 'name', 'Sobhraj Maternity Hospital'),
(81958, 68475, 'en', 'name', 'Southern African Social Policy Research Institute'),
(81959, 68476, 'en', 'name', 'Social Research Association'),
(81960, 68477, 'en', 'name', 'Solar Fuels Institute'),
(81961, 68478, 'en', 'name', 'Soldiers of Oxfordshire Museum'),
(81962, 68479, 'en', 'name', 'Dartington Service Design Lab'),
(81963, 68480, 'en', 'name', 'Southwest Florida Research'),
(81964, 68481, 'en', 'name', 'Social Science Baha'),
(81965, 68482, 'en', 'name', 'SOVA Center for Information and Analysis'),
(81966, 68482, 'ru', 'name', 'Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Š¾-аналитического центра Дова'),
(81967, 68483, 'no_lang_code', 'name', 'Songklanagarind Hospital'),
(81968, 68483, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąø‡ąø‚ąø„ąø²ąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(81969, 68484, 'en', 'name', 'Society for Clinical Trials'),
(81970, 68485, 'en', 'name', 'Society for Community Health Awareness Research and Action'),
(81971, 68486, 'en', 'name', 'The Sophie Lancaster Foundation'),
(81972, 68487, 'en', 'name', 'St Monica Trust'),
(81973, 68488, 'en', 'name', 'Spacelink Learning Foundation'),
(81974, 68489, 'en', 'name', 'St. Thomas Medical Group'),
(81975, 68490, 'es', 'name', 'Asociación Herpetológica Española'),
(81976, 68491, 'en', 'name', 'South Cheshire Astronomical Society'),
(81977, 68492, 'en', 'name', 'South Cumbria Rivers Trust'),
(81978, 68493, 'no_lang_code', 'name', 'Specialist Vehicle Research and Development (United Kingdom)'),
(81979, 68494, 'en', 'name', 'South Devon Prime Beef'),
(81980, 68495, 'en', 'name', 'South East Health Technologies Alliance'),
(81981, 68496, 'no_lang_code', 'name', 'Sphere Medical (United Kingdom)'),
(81982, 68497, 'sq', 'name', 'Stacion'),
(81983, 68498, 'en', 'name', 'South East Rivers Trust'),
(81984, 68499, 'no_lang_code', 'name', 'SR Research (Canada)'),
(81985, 68500, 'en', 'name', 'Midlands Partnership NHS Foundation Trust'),
(81986, 68501, 'en', 'name', 'St Albans and Hertfordshire Architectural and Archaeological Society'),
(81987, 68502, 'en', 'name', 'South Essex Rape and Incest Crisis Centre'),
(81988, 68503, 'en', 'name', 'St Albans Museums'),
(81989, 68504, 'en', 'name', 'St Ethelburga’s Centre for Reconciliation and Peace'),
(81990, 68505, 'en', 'name', 'South London Healthcare NHS Trust'),
(81991, 68506, 'en', 'name', 'Dutch Institute for Alcohol Policy'),
(81992, 68506, 'nl', 'name', 'Nederlands Instituut voor Alcoholbeleid'),
(81993, 68507, 'en', 'name', 'Start'),
(81994, 68508, 'en', 'name', 'St Johns Theatre'),
(81995, 68509, 'en', 'name', 'South West Heritage Trust'),
(81996, 68510, 'en', 'name', 'South West Vineyards Association'),
(81997, 68511, 'en', 'name', 'South Western Housing Society'),
(81998, 68512, 'en', 'name', 'Sisters of Mercy of the Americas'),
(81999, 68513, 'nl', 'name', 'Stedelijk Museum Amsterdam'),
(82000, 68514, 'en', 'name', 'Steel Charitable Trust'),
(82001, 68515, 'en', 'name', 'Suffolk Horse Society'),
(82002, 68516, 'en', 'name', 'Suffolk Sheep Society'),
(82003, 68517, 'no_lang_code', 'name', 'Summit Associates (United States)'),
(82004, 68518, 'no_lang_code', 'name', 'TeleMedic Systems (United Kingdom)'),
(82005, 68519, 'en', 'name', 'Stevenage Bioscience Catalyst'),
(82006, 68520, 'no_lang_code', 'name', 'Telemetry Associates (United Kingdom)'),
(82007, 68521, 'en', 'name', 'Surfers Against Sewage'),
(82008, 68522, 'no_lang_code', 'name', 'Stockbridge Technology Centre (United Kingdom)'),
(82009, 68523, 'no_lang_code', 'name', 'TESco Associates (United States)'),
(82010, 68524, 'en', 'name', 'Sustainable Food Trust'),
(82011, 68525, 'en', 'name', 'Sustainable Inshore Fisheries Trust'),
(82012, 68526, 'en', 'name', 'Sustainable Livelihoods Foundation'),
(82013, 68527, 'no_lang_code', 'name', 'Textile Recycling Association'),
(82014, 68528, 'en', 'name', 'Teylers Museum'),
(82015, 68529, 'en', 'name', 'Stonebridge Trust'),
(82016, 68530, 'en', 'name', 'Swadhinata Trust'),
(82017, 68531, 'en', 'name', 'Swansea Museum'),
(82018, 68532, 'en', 'name', '10:10 Climate Action'),
(82019, 68533, 'en', 'name', 'The Academy at Shotton Hall'),
(82020, 68534, 'en', 'name', 'Stornoway Historical Society'),
(82021, 68535, 'en', 'name', 'The African Arts Trust'),
(82022, 68536, 'en', 'name', 'The Alexander Centre'),
(82023, 68537, 'cs', 'name', 'Nemocnice Strakonice'),
(82024, 68537, 'en', 'name', 'Strakonice Hospital'),
(82025, 68538, 'en', 'name', 'American Museum and Gardens'),
(82026, 68539, 'en', 'name', 'Strategic Society Centre'),
(82027, 68540, 'en', 'name', 'Sydney Jewish Museum'),
(82028, 68541, 'en', 'name', 'Sydney Living Museums'),
(82029, 68542, 'en', 'name', 'Stratified Medicine Scotland'),
(82030, 68543, 'en', 'name', 'Sylva Foundation'),
(82031, 68544, 'en', 'name', 'Structural Timber Association'),
(82032, 68545, 'en', 'name', 'Association of Child Psychotherapists'),
(82033, 68546, 'no_lang_code', 'name', 'Tecomet (United Kingdom)'),
(82034, 68547, 'en', 'name', 'Baroness Warsi Foundation'),
(82035, 68548, 'en', 'name', 'Chung-Hwa Institute of Buddhist Studies'),
(82036, 68548, 'zh', 'name', 'äø­čÆä½›å­øē ”ē©¶ę‰€'),
(82037, 68549, 'en', 'name', 'The Churches Conservation Trust'),
(82038, 68550, 'en', 'name', 'The Cinema Museum'),
(82039, 68551, 'en', 'name', 'The Bay Trust'),
(82040, 68552, 'en', 'name', 'Citizens UK'),
(82041, 68553, 'en', 'name', 'Tamba'),
(82042, 68554, 'en', 'name', 'The BEARR Trust'),
(82043, 68555, 'en', 'name', 'Tanzania Meteorological Agency'),
(82044, 68556, 'en', 'name', 'Bevan Foundation'),
(82045, 68557, 'en', 'name', 'The Communication Trust'),
(82046, 68558, 'en', 'name', 'The Tavistock and Portman NHS Foundation Trust'),
(82047, 68559, 'en', 'name', 'The Bewdley School'),
(82048, 68560, 'en', 'name', 'The Constitution Society'),
(82049, 68561, 'en', 'name', 'The Bingo Association'),
(82050, 68562, 'no_lang_code', 'name', 'Taylor McKenzie (United Kingdom)'),
(82051, 68563, 'en', 'name', 'Contemporary Art Society'),
(82052, 68564, 'en', 'name', 'Blackwood'),
(82053, 68565, 'en', 'name', 'The Bowes Museum'),
(82054, 68566, 'en', 'name', 'The Data Lab'),
(82055, 68567, 'en', 'name', 'British Association of Picture Libraries and Agencies'),
(82056, 68568, 'en', 'name', 'Delius Trust'),
(82057, 68569, 'en', 'name', 'The Democratic Society'),
(82058, 68570, 'en', 'name', 'The Honourable Society of Lincoln''s Inn'),
(82059, 68571, 'en', 'name', 'The Carbon Monoxide and Gas Safety Society'),
(82060, 68572, 'en', 'name', 'Huntington''s Disease Association'),
(82061, 68573, 'en', 'name', 'Carers Trust'),
(82062, 68574, 'no_lang_code', 'name', 'Blacktrace (United States)'),
(82063, 68575, 'en', 'name', 'Institute for In Vitro Sciences'),
(82064, 68576, 'no_lang_code', 'name', 'Alliance for Multispecialty Research (United States)'),
(82065, 68577, 'en', 'name', 'Ecological Sequestration Trust'),
(82066, 68578, 'en', 'name', 'Centre for Contemporary Art and the Natural World'),
(82067, 68579, 'en', 'name', 'Efficient Energy Centre'),
(82068, 68580, 'en', 'name', 'Institute for Social Transformation'),
(82069, 68581, 'en', 'name', 'The Emergency Planning Society'),
(82070, 68582, 'en', 'name', 'The Equality Trust'),
(82071, 68583, 'en', 'name', 'Institute of Information Security Professionals'),
(82072, 68584, 'en', 'name', 'The Financial Inclusion Centre'),
(82073, 68585, 'en', 'name', 'The Hearth'),
(82074, 68586, 'en', 'name', 'The Facilities Society'),
(82075, 68587, 'en', 'name', 'Noise Abatement Society'),
(82076, 68588, 'en', 'name', 'Investor Relations Society'),
(82077, 68589, 'en', 'name', 'Northumberland and Durham Family History Society'),
(82078, 68590, 'no_lang_code', 'name', 'Katiba Institute'),
(82079, 68591, 'en', 'name', 'The Operational Research Society'),
(82080, 68592, 'en', 'name', 'The Kauri Museum'),
(82081, 68593, 'en', 'name', 'The Parks Agency'),
(82082, 68594, 'en', 'name', 'Kings Foundation'),
(82083, 68595, 'en', 'name', 'FreeBSD Foundation'),
(82084, 68596, 'en', 'name', 'Autism at Kingwood'),
(82085, 68597, 'en', 'name', 'The Gate'),
(82086, 68598, 'en', 'name', 'The Parks Trust'),
(82087, 68599, 'en', 'name', 'Hackney Learning Trust'),
(82088, 68600, 'en', 'name', 'Perry Foundation'),
(82089, 68601, 'en', 'name', 'LGBT Foundation'),
(82090, 68602, 'en', 'name', 'The Poetry Society'),
(82091, 68603, 'en', 'name', 'The Lewis Carroll Society'),
(82092, 68604, 'en', 'name', 'Press Association'),
(82093, 68605, 'en', 'name', 'The Lindsay Leg Club Foundation'),
(82094, 68606, 'no_lang_code', 'name', 'Deciwatt (United Kingdom)'),
(82095, 68607, 'en', 'name', 'Great North Museum Hancock'),
(82096, 68608, 'en', 'name', 'Road Clinical Hospital on Novosibirsk-Main JSC Russian Railways'),
(82097, 68608, 'ru', 'name', 'ŠŠ£Š— "Š”Š¾Ń€Š¾Š¶Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° на ст ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗ-Главный ŠžŠŠž "Š Š–Š”"'),
(82098, 68609, 'en', 'name', 'The Grierson Trust'),
(82099, 68610, 'en', 'name', 'Red Poll Cattle Society'),
(82100, 68611, 'pl', 'name', 'Instytut im. Jerzego Grotowskiego'),
(82101, 68611, 'en', 'name', 'The Grotowski Institute'),
(82102, 68612, 'en', 'name', 'National Museum'),
(82103, 68612, 'nl', 'name', 'Rijksmuseum'),
(82104, 68613, 'en', 'name', 'The McMinn Centre'),
(82105, 68614, 'en', 'name', 'Royal Academy of Arts'),
(82106, 68615, 'en', 'name', 'Royal Engineers Museum'),
(82107, 68616, 'no_lang_code', 'name', 'The Medical Device (United Kingdom)'),
(82108, 68617, 'en', 'name', 'The Hans GƔl Society'),
(82109, 68618, 'no_lang_code', 'name', 'Royal London Group (United Kingdom)'),
(82110, 68619, 'en', 'name', 'The Hellenic Centre'),
(82111, 68620, 'no_lang_code', 'name', 'Mikhulu Trust'),
(82112, 68621, 'en', 'name', 'The Vega Science Trust'),
(82113, 68622, 'en', 'name', 'Saamarthya Foundation'),
(82114, 68623, 'en', 'name', 'The Mill'),
(82115, 68624, 'en', 'name', 'Samuel Johnson Birthplace Museum'),
(82116, 68625, 'en', 'name', 'The Modernist Society'),
(82117, 68626, 'en', 'name', 'Veterinary Medicines Directorate'),
(82118, 68627, 'en', 'name', 'Vienna Institute for Urban Sustainability'),
(82119, 68628, 'en', 'name', 'The National Allotment Society'),
(82120, 68629, 'en', 'name', 'Sir James Knott Trust'),
(82121, 68630, 'en', 'name', 'Wallace Kelsey Research Foundation'),
(82122, 68631, 'en', 'name', 'The National Centre for Early Music'),
(82123, 68632, 'en', 'name', 'The Society of Portrait Sculptors'),
(82124, 68633, 'en', 'name', 'The Work Foundation'),
(82125, 68634, 'en', 'name', 'Theatrescience'),
(82126, 68635, 'en', 'name', 'National Telford Institute'),
(82127, 68636, 'en', 'name', 'The Spectrum Centre'),
(82128, 68637, 'en', 'name', 'Nerve Centre'),
(82129, 68638, 'no_lang_code', 'name', 'Translational Research Platform for Veterinary Biologicals (India)'),
(82130, 68639, 'en', 'name', 'The Tuke Centre'),
(82131, 68640, 'en', 'name', 'Twentieth Century Society'),
(82132, 68641, 'en', 'name', 'Transport and Health Study Group'),
(82133, 68642, 'en', 'name', 'Xuzhou Cancer Hospital'),
(82134, 68643, 'en', 'name', 'Trees and Design Action Group'),
(82135, 68644, 'en', 'name', 'The UK Cards Association'),
(82136, 68645, 'en', 'name', 'Thomas Mann Cultural Centre'),
(82137, 68645, 'lt', 'name', 'Thomo Manno Kultūros Centras'),
(82138, 68646, 'en', 'name', 'Institute of Mental Health'),
(82139, 68647, 'no_lang_code', 'name', 'Thornhill Medical (Canada)'),
(82140, 68648, 'en', 'name', 'Trent Rivers Trust'),
(82141, 68649, 'en', 'name', 'Comann Eachdraidh Uig'),
(82142, 68650, 'en', 'name', 'Spencer Academies Trust'),
(82143, 68651, 'no_lang_code', 'name', 'Thusanani Foundation'),
(82144, 68652, 'en', 'name', 'United Kingdom Antarctic Heritage Trust'),
(82145, 68653, 'en', 'name', 'Trials Methodology Research Network'),
(82146, 68654, 'en', 'name', 'Buddhist Digital Resource Center'),
(82147, 68655, 'en', 'name', 'Trinity House Community Resource Centre'),
(82148, 68656, 'en', 'name', 'Anshan Hospital'),
(82149, 68656, 'zh', 'name', 'éžå±±åø‚é“č„æåŒ»é™¢'),
(82150, 68657, 'en', 'name', 'The Research Network'),
(82151, 68658, 'en', 'name', 'UK Centre for Tobacco & Alcohol Studies'),
(82152, 68659, 'no_lang_code', 'name', 'Tromp Medical (Netherlands)'),
(82153, 68660, 'en', 'name', 'Tiree Community Development Trust'),
(82154, 68661, 'en', 'name', 'UK Collaborative on Development Research'),
(82155, 68662, 'no_lang_code', 'name', 'Tropical Marine Centre (United Kingdom)'),
(82156, 68663, 'en', 'name', 'The Trussell Trust'),
(82157, 68664, 'en', 'name', 'Toft Historical Society'),
(82158, 68665, 'en', 'name', 'Glastonbury Abbey'),
(82159, 68666, 'en', 'name', 'UK Irrigation Association'),
(82160, 68667, 'en', 'name', 'Tullie House Museum and Art Gallery'),
(82161, 68668, 'en', 'name', 'Turks and Caicos National Museum'),
(82162, 68669, 'no_lang_code', 'name', 'Tony Coll and Associates (United Kingdom)'),
(82163, 68670, 'en', 'name', 'Topsham Museum'),
(82164, 68671, 'en', 'name', 'Turquoise Mountain'),
(82165, 68672, 'en', 'name', 'Tor Lodge and Applecross Trust'),
(82166, 68673, 'en', 'name', 'United Kingdom Petroleum Industry Association'),
(82167, 68674, 'en', 'name', '2Blades Foundation'),
(82168, 68675, 'no_lang_code', 'name', 'Torbay Development Agency (United Kingdom)'),
(82169, 68676, 'en', 'name', 'UK Quality Ash Association'),
(82170, 68677, 'no_lang_code', 'name', 'TwoCan Associates (United Kingdom)'),
(82171, 68678, 'en', 'name', 'Torquay Museum'),
(82172, 68679, 'en', 'name', 'Tygerberg Children’s Hospital'),
(82173, 68680, 'en', 'name', 'The UK Sepsis Trust'),
(82174, 68681, 'en', 'name', 'Tyndall Centre'),
(82175, 68682, 'cy', 'name', 'Awdurdod Ystadegau''r DU'),
(82176, 68682, 'en', 'name', 'UK Statistics Authority'),
(82177, 68683, 'en', 'name', 'Tyne & Wear Building Preservation Trust'),
(82178, 68684, 'en', 'name', 'Tyne Rivers Trust'),
(82179, 68685, 'gd', 'name', 'Otharlann Chontae ThĆ­r Eoghain'),
(82180, 68685, 'en', 'name', 'Tyrone County Hospital'),
(82181, 68686, 'en', 'name', 'Universal Rights Group'),
(82182, 68687, 'en', 'name', 'UbonRatchathani Rice Research Center'),
(82183, 68687, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œąø§ąø“ąøˆąø±ąø¢ąø‚ą¹‰ąø²ąø§ąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(82184, 68688, 'no_lang_code', 'name', 'UK-China Guangdong CCUS Centre'),
(82185, 68689, 'en', 'name', 'University Alliance'),
(82186, 68690, 'en', 'name', 'UK Carbon Capture and Research Centre'),
(82187, 68691, 'en', 'name', 'Understanding Childhood Arthritis Network'),
(82188, 68692, 'en', 'name', 'Uganda Red Cross Society'),
(82189, 68693, 'en', 'name', 'Ultach Trust'),
(82190, 68694, 'en', 'name', 'University of Warwick Science Park'),
(82191, 68695, 'en', 'name', 'United Learning'),
(82192, 68696, 'en', 'name', 'Urban Big Data Centre'),
(82193, 68697, 'en', 'name', 'Voluntary Health Scotland'),
(82194, 68698, 'en', 'name', 'Volunteer Dundee'),
(82195, 68699, 'en', 'name', 'Useful Simple Trust'),
(82196, 68700, 'en', 'name', 'Vana Trust'),
(82197, 68701, 'en', 'name', 'Verbal Arts Centre'),
(82198, 68702, 'no_lang_code', 'name', 'Verdesian (United Kingdom)'),
(82199, 68703, 'no_lang_code', 'name', 'Ligand Pharmaceuticals (United Kingdom)'),
(82200, 68704, 'no_lang_code', 'name', 'W. L. Gore & Associates (United Kingdom)'),
(82201, 68705, 'en', 'name', 'West of England Centre for Inclusive Living'),
(82202, 68706, 'en', 'name', 'Vine Trust'),
(82203, 68707, 'en', 'name', 'Wai Yin Society'),
(82204, 68708, 'no_lang_code', 'name', 'Vishuo Biomedical (Singapore)'),
(82205, 68709, 'no_lang_code', 'name', 'Vivo Smart Medical Devices (United Kingdom)'),
(82206, 68710, 'en', 'name', 'The AD Centre'),
(82207, 68711, 'en', 'name', 'Walk Free Foundation'),
(82208, 68712, 'no_lang_code', 'name', 'Walker Associates Architects (United Kingdom)'),
(82209, 68713, 'en', 'name', 'Wallingford Museum'),
(82210, 68714, 'en', 'name', 'Wear Rivers Trust'),
(82211, 68715, 'en', 'name', 'Wandle'),
(82212, 68716, 'en', 'name', 'Anglo-Boer War Museum'),
(82213, 68717, 'no_lang_code', 'name', 'Drive DeVilbiss Healthcare (United Kingdom)'),
(82214, 68718, 'en', 'name', 'The Welsh Black Cattle Society'),
(82215, 68719, 'en', 'name', 'Woodbrooke'),
(82216, 68720, 'en', 'name', 'Welsh Refugee Council'),
(82217, 68721, 'en', 'name', 'Welwyn Archaeological Society'),
(82218, 68722, 'en', 'name', 'Museums Northumberland'),
(82219, 68723, 'en', 'name', 'Worcestershire Health and Care NHS Trust'),
(82220, 68724, 'en', 'name', 'Wessex Chalk Stream and Rivers Trust'),
(82221, 68725, 'en', 'name', 'West Cumbria Rivers Trust'),
(82222, 68726, 'en', 'name', 'Club & Institute Union'),
(82223, 68727, 'en', 'name', 'World Dementia Council'),
(82224, 68728, 'en', 'name', 'World Endometriosis Research Foundation'),
(82225, 68729, 'en', 'name', 'West of England Academic Health Science Network'),
(82226, 68730, 'en', 'name', 'World Energy Council'),
(82227, 68731, 'en', 'name', 'West Of Scotland Housing Association'),
(82228, 68732, 'no_lang_code', 'name', 'WestCon Medical (United States)'),
(82229, 68733, 'en', 'name', 'World Sugar Research Organisation'),
(82230, 68734, 'en', 'name', 'The Western Front Association'),
(82231, 68735, 'en', 'name', 'Wormingford Community Education Centre'),
(82232, 68736, 'en', 'name', 'Westgate Hall'),
(82233, 68737, 'en', 'name', 'Wuhan Puai Hospital'),
(82234, 68737, 'zh', 'name', 'ę­¦ę±‰ę™®ēˆ±åŒ»é™¢'),
(82235, 68738, 'en', 'name', 'Wheal Martyn'),
(82236, 68739, 'en', 'name', 'The Wye & Usk Foundation'),
(82237, 68740, 'no_lang_code', 'name', 'Wyld (United Kingdom)'),
(82238, 68741, 'en', 'name', 'Wild Trout Trust'),
(82239, 68742, 'en', 'name', 'Wildlife Conservation Society United Kingdom'),
(82240, 68743, 'en', 'name', 'Wildwood Trust'),
(82241, 68744, 'en', 'name', 'Windrush Foundation'),
(82242, 68745, 'en', 'name', 'Wysing Arts Centre'),
(82243, 68746, 'en', 'name', 'Wise Monkey Foundation'),
(82244, 68747, 'no_lang_code', 'name', 'Xi''an City Planning&Design Institute (China)'),
(82245, 68747, 'zh', 'name', 'č„æå®‰åø‚åŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(82246, 68748, 'en', 'name', 'Wolverhampton Art Gallery'),
(82247, 68749, 'en', 'name', 'Yunnan Archaeology'),
(82248, 68749, 'zh', 'name', 'äŗ‘å—ēœę–‡ē‰©č€ƒå¤ē ”ē©¶ę‰€ęˆē«‹äŗŽ'),
(82249, 68750, 'en', 'name', 'Zambia Red Cross Society'),
(82250, 68751, 'en', 'name', 'Zhuzhou Central Hospital'),
(82251, 68751, 'zh', 'name', 'ę Ŗę“²åø‚äø­åæƒåŒ»é™¢'),
(82252, 68752, 'en', 'name', 'York Blind & Partially Sighted Society'),
(82253, 68753, 'en', 'name', 'York Castle Museum'),
(82254, 68754, 'en', 'name', 'Zoological Society of East Anglia'),
(82255, 68755, 'en', 'name', 'Yorkshire & Humber Academic Health Science Network'),
(82256, 68756, 'en', 'name', 'Yunnan Building Materials Research & Design Institute'),
(82257, 68756, 'zh', 'name', 'äŗ‘å—å¤§å­¦å»ŗē­‘äøŽč§„åˆ’å­¦é™¢'),
(82258, 68757, 'en', 'name', 'Yorkshire Dales Millennium Trust'),
(82259, 68758, 'en', 'name', 'Asha Foundation'),
(82260, 68759, 'en', 'name', 'Young Women''s Trust'),
(82261, 68760, 'en', 'name', 'Healing Fields Foundation'),
(82262, 68760, 'te', 'name', 'ą°¹ą±€ą°²ą°æą°‚ą°—ą± ą°«ą±€ą°²ą±ą°”ą±ą°øą± ą°«ą±Œą°‚ą°”ą±‡ą°·ą°Øą±'),
(82263, 68761, 'en', 'name', 'Deepak Foundation'),
(82264, 68762, 'en', 'name', 'Indian Institute of Public Health Gandhinagar'),
(82265, 68762, 'gu', 'name', 'ભારતીય જન ąŖøą«ąŖµąŖ¾ąŖøą«ąŖ„ ąŖøąŖ‚ąŖøą«ąŖ„ąŖ¾ąŖØ ગાંધીનગર'),
(82266, 68763, 'en', 'name', 'Rajasthan Police Academy'),
(82267, 68763, 'hi', 'name', 'ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤²ą¤æą¤ø ą¤…ą¤•ą¤¾ą¤¦ą¤®ą„€'),
(82268, 68764, 'en', 'name', 'Institute of Genetics and Hospital for Genetic Diseases'),
(82269, 68764, 'te', 'name', 'ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°œą±†ą°Øą°æą°Ÿą°æą°•ą±ą°øą± ą°…ą°‚ą°”ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą± ą°«ą°°ą± ą°œą±†ą°Øą±†ą°Ÿą°æą°•ą± ą°”ą°æą°øą±€ą°œą±†ą°øą±'),
(82270, 68765, 'en', 'name', 'Schieffelin Institute of Health Research and Leprosy Centre'),
(82271, 68766, 'en', 'name', 'Maharashtra Association of Anthropological Sciences'),
(82272, 68766, 'mr', 'name', 'ą¤®ą¤¾ą¤Øą¤µą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤…ą¤øą„‹ą¤øą¤æą¤ą¤¶ą¤Ø'),
(82273, 68767, 'en', 'name', 'National Institute of Cancer Prevention and Research'),
(82274, 68768, 'no_lang_code', 'name', 'Navdanya'),
(82275, 68769, 'en', 'name', 'Mississippi Division of Medicaid'),
(82276, 68770, 'no_lang_code', 'name', 'TLM Shahdara Hospital'),
(82277, 68771, 'en', 'name', 'Mahidol Oxford Tropical Medicine Research Unit'),
(82278, 68772, 'en', 'name', 'Office of the Governor'),
(82279, 68773, 'en', 'name', 'West Virginia Bureau of Senior Services'),
(82280, 68774, 'en', 'name', 'United Way of Greater Houston'),
(82281, 68775, 'en', 'name', 'Arkansas Insurance Department'),
(82282, 68776, 'en', 'name', 'Illinois Primary Health Care Association'),
(82283, 68777, 'en', 'name', 'State of Vermont Office of Governor'),
(82284, 68778, 'en', 'name', 'Kansas Office of the Governor'),
(82285, 68779, 'en', 'name', 'State of Alaska Office of the Governor'),
(82286, 68780, 'en', 'name', 'Alabama State Office of Governor'),
(82287, 68781, 'en', 'name', 'Mount Sanford Tribal Consortium'),
(82288, 68782, 'no_lang_code', 'name', 'Villares Metals (Brasil)'),
(82289, 68783, 'en', 'name', 'Wisconsin Disability Association'),
(82290, 68784, 'no_lang_code', 'name', 'Agilent Technologies (Brazil)'),
(82291, 68785, 'en', 'name', 'Office of Governor'),
(82292, 68786, 'no_lang_code', 'name', 'AgroBio'),
(82293, 68786, 'pt', 'name', 'Associação das Empresas de Biotecnologia na Agricultura e Agroindústria'),
(82294, 68787, 'no_lang_code', 'name', 'Ananse (Brazil)'),
(82295, 68788, 'no_lang_code', 'name', 'ArcelorMittal (Brazil)'),
(82296, 68789, 'pt', 'name', 'Angus Bela Vista PecuƔria'),
(82297, 68789, 'no_lang_code', 'name', 'Central Bela Vista (Brazil)'),
(82298, 68790, 'pt', 'name', 'Fundepag'),
(82299, 68791, 'no_lang_code', 'name', 'Copersucar (Brazil)'),
(82300, 68792, 'no_lang_code', 'name', 'Intel (Brazil)'),
(82301, 68793, 'pt', 'name', 'Coopercitrus Cooperativa de Produtores Rurais'),
(82302, 68794, 'pt', 'name', 'Associação Brasileira do Papelão Ondulado'),
(82303, 68795, 'no_lang_code', 'name', 'ItaĆŗsa (Brazil)'),
(82304, 68796, 'pt', 'name', 'CooxupƩ'),
(82305, 68797, 'no_lang_code', 'name', 'AstraZeneca (Brazil)'),
(82306, 68798, 'no_lang_code', 'name', 'JP Group (Brazil)'),
(82307, 68799, 'no_lang_code', 'name', 'Sealed Air (Brazil)'),
(82308, 68800, 'no_lang_code', 'name', 'Dedini Industrias De Base (Brazil)'),
(82309, 68801, 'no_lang_code', 'name', 'Laboratório Teuto (Brazil)'),
(82310, 68802, 'no_lang_code', 'name', 'Bio-Bras'),
(82311, 68803, 'no_lang_code', 'name', 'Eaton (Brazil)'),
(82312, 68804, 'no_lang_code', 'name', 'bioMƩrieux (Brazil)'),
(82313, 68805, 'no_lang_code', 'name', 'Engemasa (Brazil)'),
(82314, 68806, 'no_lang_code', 'name', 'Mahle (Brazil)'),
(82315, 68807, 'no_lang_code', 'name', 'Equipalcool (Brazil)'),
(82316, 68808, 'no_lang_code', 'name', 'Braskem (Brazil)'),
(82317, 68809, 'no_lang_code', 'name', 'MetalgrƔfica Rojek (Brazil)'),
(82318, 68810, 'no_lang_code', 'name', 'Atvos (Brazil)'),
(82319, 68811, 'no_lang_code', 'name', 'Waelzholz (Brasil)'),
(82320, 68811, 'pt', 'name', 'Waelzholz Brasmetal Laminação'),
(82321, 68812, 'no_lang_code', 'name', 'Microsoft (Brazil)'),
(82322, 68813, 'no_lang_code', 'name', 'Celestica (Brasil)'),
(82323, 68814, 'pt', 'name', 'Faculdades Guarulhos'),
(82324, 68815, 'pt', 'name', 'Grupo Montecitrus'),
(82325, 68816, 'no_lang_code', 'name', 'CI&T (Brasil)'),
(82326, 68817, 'no_lang_code', 'name', 'Companhia Brasileira de Aluminio'),
(82327, 68818, 'no_lang_code', 'name', 'GlaxoSmithKline (Brazil)'),
(82328, 68819, 'no_lang_code', 'name', 'IBM (Brazil)'),
(82329, 68820, 'no_lang_code', 'name', 'Infibra (Brazil)'),
(82330, 68821, 'no_lang_code', 'name', 'Ourofino SaĆŗde Animal (Brazil)'),
(82331, 68822, 'no_lang_code', 'name', 'Natura (Brazil)'),
(82332, 68823, 'no_lang_code', 'name', 'Owens Corning (Brazil)'),
(82333, 68824, 'no_lang_code', 'name', 'Ultrapar (Brazil)'),
(82334, 68825, 'pt', 'name', 'Instituto de Estudos de SaĆŗde Suplementar'),
(82335, 68826, 'pt', 'name', 'NĆŗcleo Interdisciplinar da CiĆŖncia do Sono'),
(82336, 68827, 'no_lang_code', 'name', 'TecnoBio (Brazil)'),
(82337, 68828, 'no_lang_code', 'name', 'Solvay (Brazil)'),
(82338, 68829, 'no_lang_code', 'name', 'Proteca (Brazil)'),
(82339, 68830, 'no_lang_code', 'name', 'Tetra Pak (Brazil)'),
(82340, 68831, 'no_lang_code', 'name', 'Voestalpine (Brazil)'),
(82341, 68832, 'no_lang_code', 'name', 'Sakata (Brazil)'),
(82342, 68833, 'no_lang_code', 'name', 'Sama (Brazil)'),
(82343, 68834, 'no_lang_code', 'name', 'Noravank Foundation'),
(82344, 68834, 'hy', 'name', 'Õ†ÕøÖ€Õ”Õ¾Õ”Õ¶Ö„Ā» Õ°Õ«Õ“Õ¶Õ”Õ¤Ö€Õ”Õ“'),
(82345, 68835, 'en', 'name', 'Aitchison College'),
(82346, 68835, 'ur', 'name', 'Ų§ŪŒŚ†ŪŒŲ³Ł† Ś©Ų§Ł„Ų¬ā€Ž'),
(82347, 68836, 'no_lang_code', 'name', 'Saur (Armenia)'),
(82348, 68837, 'en', 'name', 'Academy of Policy and Development'),
(82349, 68838, 'no_lang_code', 'name', '358 (Finland)'),
(82350, 68839, 'ro', 'name', 'Academia de Administrare Publică'),
(82351, 68839, 'en', 'name', 'Academy of Public Administration'),
(82352, 68840, 'no_lang_code', 'name', 'Al-Kasaba Theatre & Cinematheque'),
(82353, 68840, 'ar', 'name', 'Ł…Ų³Ų±Ų­ ŁˆŲ³ŁŠŁ†Ł…Ų§ŲŖŁƒ القصبة'),
(82354, 68841, 'en', 'name', 'All-Russian Institute of Agrarian Problems and Informatics A.A.Nikonova'),
(82355, 68841, 'ru', 'name', 'Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрных проблем Šø информатики им. А.А.ŠŠøŠŗŠ¾Š½Š¾Š²Š°'),
(82356, 68842, 'en', 'name', 'Academy of Public Administration under the President of the Kyrgyz Republic'),
(82357, 68842, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при ŠŸŃ€ŠµŠ·ŠøŠ“енте ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾Š¹ Республики'),
(82358, 68843, 'en', 'name', 'Institute of Archaeology named after A.Kh.Margulan'),
(82359, 68843, 'kk', 'name', 'Ә.Š„. ŠœŠ°Ń€Ņ“Ņ±Š»Š°Š½ атынГағы ŠŃ€Ń…ŠµŠ¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(82360, 68844, 'fr', 'name', 'AcadƩmie de Versailles'),
(82361, 68845, 'en', 'name', 'Alaska Community Action on Toxics'),
(82362, 68846, 'en', 'name', 'Abilities United'),
(82363, 68847, 'no_lang_code', 'name', 'Actar (Spain)'),
(82364, 68848, 'no_lang_code', 'name', 'Albion (United States)'),
(82365, 68849, 'en', 'name', 'Aarhus Business College'),
(82366, 68849, 'da', 'name', 'Aarhus Handelsforenings Aftenskole'),
(82367, 68850, 'en', 'name', 'Dr. Sadhana Nayak’s Voice Clinic and Center'),
(82368, 68851, 'en', 'name', 'National Library of New Zealand'),
(82369, 68852, 'en', 'name', 'Advanced Center for Water Resources Development and Management'),
(82370, 68853, 'es', 'name', 'Escuela Superior de Artes de YucatƔn'),
(82371, 68854, 'no_lang_code', 'name', 'Alice Films (France)'),
(82372, 68855, 'en', 'name', 'National library of Uzbekistan'),
(82373, 68855, 'uz', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š° библиотека Узбекистана'),
(82374, 68856, 'fr', 'name', 'Agence France Presse'),
(82375, 68857, 'en', 'name', 'Al Sadu Society'),
(82376, 68857, 'ar', 'name', 'بيت Ų§Ł„Ų³ŲÆŁˆ'),
(82377, 68858, 'no_lang_code', 'name', 'Alvin Ailey (United States)'),
(82378, 68859, 'en', 'name', 'American Center Yangon'),
(82379, 68860, 'es', 'name', 'Instituto de Investigaciones en Ciencias Agrarias de Rosario'),
(82380, 68861, 'en', 'name', 'American Chamber of Commerce in Kosovo'),
(82381, 68861, 'sq', 'name', 'Oda Ekonomike Amerikane ne Kosove'),
(82382, 68862, 'en', 'name', 'Shamakhy Astrophysical Observatory named after Nasraddin Tusi'),
(82383, 68863, 'en', 'name', 'American University of Mongolia'),
(82384, 68863, 'mn', 'name', 'Монгол Š“Š°Ń…ŃŒ Америк Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(82385, 68864, 'en', 'name', 'Anokhi Museum of Hand Printing');
INSERT INTO `ror_settings` VALUES
(82386, 68864, 'hi', 'name', 'ą¤…ą¤Øą„‹ą¤–ą„€ ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ'),
(82387, 68865, 'en', 'name', 'Anthropological Survey of India'),
(82388, 68866, 'en', 'name', 'Erie Arts and Culture'),
(82389, 68867, 'en', 'name', 'American Visionary Art Museum'),
(82390, 68868, 'no_lang_code', 'name', 'Antigua State College'),
(82391, 68869, 'en', 'name', 'Apeejay Stya University'),
(82392, 68870, 'en', 'name', 'Aquincum Institute of Technology'),
(82393, 68871, 'en', 'name', 'Arab Center for International Humanitarian Law and Human Rights Education'),
(82394, 68871, 'fr', 'name', 'Centre Arabe pour l''Education au Droit International Humanitaire et aux Droits Humains'),
(82395, 68872, 'en', 'name', 'The Archaeological Society at Athens'),
(82396, 68872, 'el', 'name', 'Εν Αθήναις Αρχαιολογική Εταιρεία'),
(82397, 68873, 'en', 'name', 'Association for Social and Environmental Development'),
(82398, 68874, 'en', 'name', 'Argentine Senate'),
(82399, 68874, 'es', 'name', 'Honorable Senado de la Nación Argentina'),
(82400, 68875, 'en', 'name', 'International Summer School of Photography'),
(82401, 68876, 'en', 'name', 'AURA-J'),
(82402, 68877, 'fr', 'name', 'Association des Journalistes Lesbiennes'),
(82403, 68878, 'en', 'name', 'Association of University Research Parks'),
(82404, 68879, 'en', 'name', 'Australian Council of Social Service'),
(82405, 68880, 'no_lang_code', 'name', 'Aster Medcity'),
(82406, 68881, 'en', 'name', 'Armenian Genocide Museum-Institute Foundation'),
(82407, 68882, 'en', 'name', 'Athens Clarke County Police Department'),
(82408, 68883, 'fr', 'name', 'Alliance Citoyenne'),
(82409, 68884, 'en', 'name', 'Azerbaijan State Agricultural University'),
(82410, 68884, 'az', 'name', 'Azərbaycan Dƶvlət Aqrar Universiteti'),
(82411, 68885, 'en', 'name', 'Baria Vungtau University'),
(82412, 68885, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c BĆ  Rịa - VÅ©ng TĆ u'),
(82413, 68886, 'en', 'name', 'Asian Institute of Medical Sciences'),
(82414, 68887, 'no_lang_code', 'name', 'Centre Culturel Bactria'),
(82415, 68888, 'en', 'name', 'Bay Area Oppositional and Conduct Clinic'),
(82416, 68889, 'en', 'name', 'Belarusian Economic Research and Outreach Center'),
(82417, 68890, 'en', 'name', 'Baku Academy of Music'),
(82418, 68890, 'az', 'name', 'Hacıbəyov adına Bakı Musiqi Akademiyası'),
(82419, 68891, 'en', 'name', 'Belgrade Open School'),
(82420, 68891, 'sr', 'name', 'Beogradska Otvorena Skola'),
(82421, 68892, 'no_lang_code', 'name', 'Azerbaijan Investment (Azerbaijan)'),
(82422, 68892, 'az', 'name', 'Azərbaycan İnvestisiya Şirkəti'),
(82423, 68893, 'no_lang_code', 'name', 'Ballas, Pelecanos & Associates (Greece)'),
(82424, 68894, 'en', 'name', 'Bandaranaike Centre for International Studies'),
(82425, 68895, 'en', 'name', 'Azerbaijan Social Work Public Union'),
(82426, 68895, 'az', 'name', 'Azərbaycan Sosial İş İctimai Birliyi'),
(82427, 68896, 'en', 'name', 'The Bhandarkar Oriental Research Institute'),
(82428, 68896, 'hi', 'name', 'भांऔारकर ą¤“ą¤°ą¤æą¤ą¤‚ą¤Ÿą¤² ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ'),
(82429, 68897, 'en', 'name', 'Bangladesh Institute of Bank Management'),
(82430, 68897, 'bn', 'name', 'বাংলাদেশ ą¦‡ą¦Øą§ą¦øą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦¬ą§ą¦Æą¦¾ą¦‚ą¦• ą¦®ą§‡ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ'),
(82431, 68898, 'en', 'name', 'Bethlehem Bible College'),
(82432, 68899, 'en', 'name', 'Bhutan Centre for Media and Democracy'),
(82433, 68900, 'en', 'name', 'Bangladesh Institute of International and Strategic Studies'),
(82434, 68900, 'bn', 'name', 'বাংলাদেশ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦ą¦Øą§ą¦” ą¦øą§ą¦Ÿą§ą¦°ą¦¾ą¦Ÿą§‡ą¦œą¦æą¦• ą¦øą§ą¦Ÿą¦¾ą¦”ą¦æą¦œ'),
(82435, 68901, 'en', 'name', 'Barbados Community College'),
(82436, 68902, 'fr', 'name', 'Bibliothèque d''Agglomération du Pays de Saint-Omer'),
(82437, 68903, 'no_lang_code', 'name', 'BRAC'),
(82438, 68903, 'bn', 'name', 'ą¦¬ą§ą¦°ą§ą¦Æą¦¾ą¦• ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦°'),
(82439, 68904, 'no_lang_code', 'name', 'Bhagat Phool Singh Mahila Vishwavidyalaya'),
(82440, 68904, 'hi', 'name', 'भगत ą¤«ą„‚ą¤² सिंह महिला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(82441, 68905, 'en', 'name', 'Bush Heritage Australia'),
(82442, 68906, 'no_lang_code', 'name', 'Botswana Open University'),
(82443, 68907, 'en', 'name', 'Business Technology Incubator of Technical Faculties Belgrade'),
(82444, 68908, 'no_lang_code', 'name', 'Brinks Gilson & Lione (United States)'),
(82445, 68909, 'no_lang_code', 'name', 'British American Tobacco (Uzbekistan)'),
(82446, 68910, 'en', 'name', 'Civil Service'),
(82447, 68911, 'en', 'name', 'Bryansk Regional Scientific Universal Library. F. I. Tyutchev'),
(82448, 68912, 'no_lang_code', 'name', 'Bitlink (Australia)'),
(82449, 68913, 'en', 'name', 'Bucks County Intermediate Unit'),
(82450, 68914, 'en', 'name', 'Blueenergy'),
(82451, 68915, 'no_lang_code', 'name', 'Blueenergy'),
(82452, 68916, 'en', 'name', 'Bulacan Agricultural State College'),
(82453, 68917, 'en', 'name', 'Cat Tien National Park'),
(82454, 68917, 'vi', 'name', 'VĘ°į»n Quốc Gia CĆ”t TiĆŖn'),
(82455, 68918, 'en', 'name', 'Bulgarian Association for the Promotion of Citizens Initiative'),
(82456, 68918, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ¾ ŃŠ“Ń€ŃƒŠ¶ŠµŠ½ŠøŠµ за Š½Š°ŃŃŠŃ€Ń‡Š°Š²Š°Š½Šµ на гражГанската инициатива'),
(82457, 68919, 'en', 'name', 'Bulgarian Helsinki Committee'),
(82458, 68920, 'en', 'name', 'Bureau of Plant Industry'),
(82459, 68920, 'tl', 'name', 'Kawanihan ng Paghahalaman'),
(82460, 68921, 'en', 'name', 'Centre for Environment Education'),
(82461, 68922, 'en', 'name', 'Centre for European Reform'),
(82462, 68923, 'en', 'name', 'Centre for Multi-disciplinary Development Research'),
(82463, 68924, 'en', 'name', 'Centre for Policy Alternatives'),
(82464, 68925, 'en', 'name', 'Ceiba Foundation for Tropical Conservation'),
(82465, 68926, 'en', 'name', 'Center for Advanced Defense Studies'),
(82466, 68927, 'en', 'name', 'Centre for Social Innovation'),
(82467, 68928, 'en', 'name', 'Centre for the Study of Culture and Society'),
(82468, 68928, 'kn', 'name', 'ą²øą²‚ą²øą³ą²•ą³ƒą²¤ą²æ ą²®ą²¤ą³ą²¤ą³ ಸಮಾಜ ą²…ą²§ą³ą²Æą²Æą²Ø ą²•ą³†ą³•ą²‚ą²¦ą³ą²°ą²¦'),
(82469, 68929, 'en', 'name', 'Centre for Women War Victims'),
(82470, 68930, 'en', 'name', 'Centre for Women’s Research'),
(82471, 68931, 'en', 'name', 'Centre for Women''s Development Studies'),
(82472, 68932, 'cs', 'name', 'Cesta Domu'),
(82473, 68933, 'en', 'name', 'Center for Interdisciplinary Studies'),
(82474, 68934, 'no_lang_code', 'name', 'Chab Dai'),
(82475, 68935, 'en', 'name', 'Chai Found Music Workshop'),
(82476, 68936, 'en', 'name', 'Chance for Education'),
(82477, 68936, 'cs', 'name', 'Å ance na vzdělĆ”nĆ­'),
(82478, 68937, 'en', 'name', 'Turkiye Diyanet Foundation'),
(82479, 68938, 'en', 'name', 'Center for Khmer Studies'),
(82480, 68939, 'en', 'name', 'Chancellery of the Prime Minister'),
(82481, 68939, 'pl', 'name', 'Kancelaria Prezesa Rady Ministrów'),
(82482, 68940, 'en', 'name', 'Center for Large Landscape Conservation'),
(82483, 68941, 'no_lang_code', 'name', 'Change.org (United States)'),
(82484, 68942, 'en', 'name', 'Universal University'),
(82485, 68942, 'ru', 'name', 'Š£Š½ŠøŠ²ŠµŃ€ŃŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(82486, 68943, 'en', 'name', 'The Center for Public Integrity'),
(82487, 68944, 'en', 'name', 'Boromarajonani College of Nursing'),
(82488, 68944, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø¢ąø²ąøšąø²ąø„ąøšąø£ąø”ąø£ąø²ąøŠąøŠąø™ąø™ąøµ ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(82489, 68945, 'en', 'name', 'Calorx Teachers'' University'),
(82490, 68946, 'en', 'name', 'Center for Social Sciences'),
(82491, 68946, 'ka', 'name', 'įƒ”įƒįƒŖįƒ˜įƒįƒšįƒ£įƒ  įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒįƒ—įƒ įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜'),
(82492, 68947, 'en', 'name', 'Cambodian Institute for Cooperation and Peace'),
(82493, 68947, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įžįŸ’įž˜įŸ‚įžšįžŸįž˜įŸ’įžšįž¶įž”įŸ‹įžŸįž įž”įŸ’įžšįžįž·įž”įžįŸ’įžįž·įž€įž¶įžšįž“įž·įž„įžŸįž“įŸ’įžįž·įž—įž¶įž–'),
(82494, 68948, 'az', 'name', 'Strateji Araşdırmalar Mərkəzi'),
(82495, 68949, 'en', 'name', 'Canadian Institute of Technology'),
(82496, 68949, 'sq', 'name', 'Instituti Kanadez i Teknologjisƫ'),
(82497, 68950, 'en', 'name', 'Center for the Study of Childhood and Adolescence'),
(82498, 68951, 'es', 'name', 'Centro de Implementación de Políticas Públicas para la Equidad y el Crecimiento'),
(82499, 68952, 'en', 'name', 'Chelsea Primary School'),
(82500, 68953, 'en', 'name', 'Caribbean Institute for Meteorology and Hydrology'),
(82501, 68954, 'no_lang_code', 'name', 'Chhandam School of Kathak'),
(82502, 68955, 'en', 'name', 'Chicago Arts Partnerships in Education'),
(82503, 68956, 'en', 'name', 'Chicago Youth Symphony Orchestras'),
(82504, 68957, 'en', 'name', 'Citizen Engagement Laboratory'),
(82505, 68958, 'en', 'name', 'New York City Council'),
(82506, 68959, 'en', 'name', 'City of Asylum'),
(82507, 68960, 'en', 'name', 'Centre for Social Research and Development'),
(82508, 68960, 'vi', 'name', 'Trung tĆ¢m NghiĆŖn cứu vĆ  PhĆ”t triển xĆ£ hį»™i'),
(82509, 68961, 'en', 'name', 'Homeland Security and Emergency Management'),
(82510, 68962, 'en', 'name', 'Central Adoption Resource Authority'),
(82511, 68962, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¦ą¤¤ą„ą¤¤ą¤• ą¤—ą„ą¤°ą¤¹ą¤£ संसाधन ą¤Ŗą„ą¤°ą¤¾ą¤§ą¤æą¤•ą¤°ą¤£'),
(82512, 68963, 'en', 'name', 'City of Knowledge'),
(82513, 68963, 'es', 'name', 'Ciudad del Saber'),
(82514, 68964, 'no_lang_code', 'name', 'Chhandam School of Kathak'),
(82515, 68965, 'en', 'name', 'Choithram College of Nursing'),
(82516, 68965, 'hi', 'name', 'ą¤šą„‹ą¤‡ą¤„ą¤°ą¤¾ą¤® ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ़ ą¤Øą¤°ą„ą¤øą¤æą¤‚ą¤—'),
(82517, 68966, 'az', 'name', 'Azərbaycan Respublikasının Mərkəzi Bankı'),
(82518, 68966, 'en', 'name', 'Central Bank of the Republic of Azerbaijan'),
(82519, 68967, 'en', 'name', 'Christchurch City Council'),
(82520, 68968, 'en', 'name', 'Central Bank of Turkmenistan'),
(82521, 68968, 'tk', 'name', 'Türkmenistanyň Merkezi Banky'),
(82522, 68969, 'es', 'name', 'Banco Central del Uruguay'),
(82523, 68969, 'en', 'name', 'Central Bank of Uruguay'),
(82524, 68970, 'en', 'name', 'The Christian and Missionary Alliance'),
(82525, 68971, 'en', 'name', 'Cleveland FES Center'),
(82526, 68972, 'en', 'name', 'Central State Archive of the Republic of Kazakhstan'),
(82527, 68972, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ архив Республики ŠšŠ°Š·Š°Ń…стан'),
(82528, 68972, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ ŠžŃ€Ń‚Š°Š»Ń‹Ņ› мемлекеттік мұрағаты'),
(82529, 68973, 'nl', 'name', 'Den Haag Centrum voor Strategische Studies'),
(82530, 68973, 'en', 'name', 'The Hague Centre for Strategic Studies'),
(82531, 68974, 'en', 'name', 'Chartered Institute of Management Accountants'),
(82532, 68975, 'en', 'name', 'Clinton Foundation'),
(82533, 68976, 'es', 'name', 'Club Matador'),
(82534, 68977, 'no_lang_code', 'name', 'CMM Energy (United States)'),
(82535, 68978, 'en', 'name', 'Coalition for Community Schools'),
(82536, 68979, 'en', 'name', 'Centre for Conservation Biology & Sustainable Development'),
(82537, 68980, 'en', 'name', 'Center for Contemporary Arts Prague'),
(82538, 68980, 'cs', 'name', 'Centrum pro SoučasnĆ© UměnĆ­ Praha'),
(82539, 68981, 'es', 'name', 'ConCuerpos'),
(82540, 68982, 'en', 'name', 'College of Science, Technology and Applied Arts of Trinidad and Tobago'),
(82541, 68983, 'it', 'name', 'Centro di Documentazione Ebraica Contemporanea'),
(82542, 68983, 'en', 'name', 'Foundation Jewish Contemporary Documentation Center'),
(82543, 68983, 'fr', 'name', 'La Fondazione Centro di Documentazione Ebraica Contemporanea'),
(82544, 68984, 'en', 'name', 'Court of Appeal'),
(82545, 68984, 'th', 'name', 'ąøØąø²ąø„ąø­ąøøąø—ąø˜ąø£ąø“ą¹Œ'),
(82546, 68985, 'en', 'name', 'Conservation through Poverty Alleviation International'),
(82547, 68986, 'pt', 'name', 'Conservatório Pernambucano de Música'),
(82548, 68987, 'en', 'name', 'CR Rao Advanced Institute of Mathematics, Statistics and Computer Science'),
(82549, 68988, 'en', 'name', 'Crimean Republican Institute of Post-Decisive Pedagogical Education'),
(82550, 68988, 'ru', 'name', 'ŠšŃ€Ń‹Š¼ŃŠŗŠøŠ¹ Ń€ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ постГипломного пеГагогического Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(82551, 68989, 'en', 'name', 'Colorado Public Television'),
(82552, 68990, 'en', 'name', 'Crimea University of Culture Art and Tourism'),
(82553, 68991, 'es', 'name', 'Museo De Arte Contemporaneo'),
(82554, 68992, 'en', 'name', 'Coordinating Ministry for Human Development and Cultural Affairs'),
(82555, 68992, 'id', 'name', 'Kementerian Koordinator Bidang Pembangunan Manusia dan Kebudayaan'),
(82556, 68993, 'en', 'name', 'Cope Environmental Center'),
(82557, 68994, 'en', 'name', 'Settlement Centre Waikato'),
(82558, 68995, 'en', 'name', 'Hamilton Multicultural Services Trust'),
(82559, 68996, 'no_lang_code', 'name', 'CSL Materials (United States)'),
(82560, 68997, 'en', 'name', 'Corrymeela Community'),
(82561, 68998, 'en', 'name', 'Human Resource Development Center'),
(82562, 68998, 'bg', 'name', 'Š¦ŠµŠ½Ń‚ŃŠŃ€ за развитие на Ń‡Š¾Š²ŠµŃˆŠŗŠøŃ‚Šµ Ń€ŠµŃŃƒŃ€ŃŠø'),
(82563, 68999, 'no_lang_code', 'name', 'Umalusi'),
(82564, 69000, 'es', 'name', 'Consejo de la Magistratura de la Nación'),
(82565, 69000, 'en', 'name', 'Council of Magistrates of the Nation'),
(82566, 69001, 'en', 'name', 'Council of State Administrators of Vocational Rehabilitation'),
(82567, 69002, 'en', 'name', 'Da Nang Institute For Socio - Economic Development'),
(82568, 69002, 'vi', 'name', 'VIỆN NGHIÊN CỨU PHƁT TRIỂN KINH Tįŗ¾ - Xƃ HỘI Đƀ Nįŗ“NG'),
(82569, 69003, 'en', 'name', 'DanChurchAid'),
(82570, 69004, 'en', 'name', 'Department of Archaeology'),
(82571, 69004, 'ta', 'name', 'ą®¤ąÆŠą®²ąÆą®ŖąÆŠą®°ąÆą®³ą®æą®Æą®²ąÆ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ'),
(82572, 69004, 'si', 'name', 'ą¶“ą·”ą¶»ą·ą·€ą·’ą¶Æą·Šā€ą¶ŗą· ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(82573, 69005, 'no_lang_code', 'name', 'Dar al Athar al Islamiyyah'),
(82574, 69005, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŲ§Ł†ŁŠ Ų§Ł„Ų«Ł‚Ų§ŁŁŠ - ŲÆŲ§Ų± الآثار Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(82575, 69006, 'en', 'name', 'Cyprus Arbitration & Mediation Centre'),
(82576, 69007, 'en', 'name', 'Dar Al-Kalima University College of Arts and Culture'),
(82577, 69007, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ŲÆŲ§Ų± Ų§Ł„ŁƒŁ„Ł…Ų© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„ŁŁ†ŁˆŁ† ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ©'),
(82578, 69008, 'cs', 'name', 'Nadace České Architektury'),
(82579, 69009, 'sq', 'name', 'Kolegji Dardania'),
(82580, 69010, 'en', 'name', 'Department of Finance'),
(82581, 69011, 'en', 'name', 'DJ Academy of Design'),
(82582, 69012, 'tl', 'name', 'De La Salle Lipa'),
(82583, 69013, 'nl', 'name', 'De Tijd'),
(82584, 69014, 'en', 'name', 'Donetsk Christian University'),
(82585, 69014, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š„Ń€ŠøŃŃ‚ŠøŃŠ½ŃŃŒŠŗŠøŠ¹ Університет'),
(82586, 69015, 'en', 'name', 'Delaware Youth Center'),
(82587, 69016, 'en', 'name', 'Detroit River International Wildlife Refuge'),
(82588, 69017, 'id', 'name', 'Dewan Kesenian Jakarta'),
(82589, 69018, 'en', 'name', 'Dallas Office of Emergency Management'),
(82590, 69019, 'no_lang_code', 'name', 'Dovzhenko Film Studios'),
(82591, 69019, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° ŠŗŃ–Š½Š¾ŃŃ‚ŃƒŠ“Ń–Ń Ń…ŃƒŠ“Š¾Š¶Š½Ń–Ń… Ń„Ń–Š»ŃŒŠ¼Ń–Š² імені Šž. Довженка'),
(82592, 69020, 'en', 'name', 'DrawBridge'),
(82593, 69021, 'fi', 'name', 'Demos Helsinki'),
(82594, 69022, 'no_lang_code', 'name', 'Dillen Associates (United States)'),
(82595, 69023, 'en', 'name', 'Democracy Development Centre'),
(82596, 69023, 'uk', 'name', 'Розвиток Гемократії'),
(82597, 69024, 'en', 'name', 'Diplomatic Academy of Vienna'),
(82598, 69024, 'de', 'name', 'Diplomatische Akademie Wien'),
(82599, 69025, 'en', 'name', 'Economic Research Centre'),
(82600, 69025, 'az', 'name', 'İqtisadi Tədqiqatlar Mərkəzi'),
(82601, 69026, 'en', 'name', 'Earthjustice'),
(82602, 69027, 'en', 'name', 'Hennadii Udovenko Diplomatic Academy Of Ukraine'),
(82603, 69027, 'uk', 'name', 'Дипломатична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України'),
(82604, 69028, 'en', 'name', 'Diplomatic Academy of Vietnam'),
(82605, 69028, 'vi', 'name', 'Hį»c viện Ngoįŗ”i giao Việt Nam'),
(82606, 69029, 'es', 'name', 'Instituto Nacional de Biodiversidad'),
(82607, 69030, 'en', 'name', 'Evangelical Church Winning All'),
(82608, 69031, 'en', 'name', 'Indian Institute of Water Management'),
(82609, 69032, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure d''Abidjan'),
(82610, 69033, 'en', 'name', 'Edna Manley College of the Visual and Performing Arts'),
(82611, 69034, 'en', 'name', 'World Healthal Trust'),
(82612, 69035, 'es', 'name', 'Archivo y Biblioteca Nacionales de Bolivia'),
(82613, 69035, 'en', 'name', 'National Archive and Library of Bolivia'),
(82614, 69036, 'en', 'name', 'European Network of Guardianship Institutions'),
(82615, 69037, 'en', 'name', 'Environmental Education Exchange'),
(82616, 69038, 'no_lang_code', 'name', 'Elladam Consulting (Hungary)'),
(82617, 69039, 'hu', 'name', 'Eötvös József GimnÔzium'),
(82618, 69040, 'en', 'name', 'Equality Now'),
(82619, 69041, 'en', 'name', 'Erdiston Teachers'' Training College'),
(82620, 69042, 'en', 'name', 'Emirates Center for Strategic Studies and Research'),
(82621, 69043, 'en', 'name', 'Fabric Workshop and Museum'),
(82622, 69044, 'da', 'name', 'EUC Nordvestsjaelland'),
(82623, 69045, 'en', 'name', 'Australian Energy Council'),
(82624, 69046, 'en', 'name', 'Ministry of Foreign Affairs'),
(82625, 69046, 'ar', 'name', 'وزارة Ų§Ł„Ų®Ų§Ų±Ų¬ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(82626, 69047, 'da', 'name', 'Rybners'),
(82627, 69048, 'en', 'name', 'English Language Teachers Association of India'),
(82628, 69049, 'es', 'name', 'Escuela de Actores de Canarias'),
(82629, 69050, 'fr', 'name', 'Espoir Vie-Togo'),
(82630, 69051, 'en', 'name', 'Espoo Music Institute'),
(82631, 69051, 'fi', 'name', 'Espoon Musiikkiopisto'),
(82632, 69052, 'fr', 'name', 'Institut EuropƩen De La QualitƩ Totale'),
(82633, 69053, 'en', 'name', 'Rylsky Institute of Art Studies, Folklore and Ethnology'),
(82634, 69053, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мистецтвознавства, Ń„Š¾Š»ŃŒŠŗŠ»Š¾Ń€ŠøŃŃ‚ŠøŠŗŠø та етнології ім. М. Š¢. Рильського'),
(82635, 69054, 'en', 'name', 'European Association for the Defence of Human Rights'),
(82636, 69055, 'en', 'name', 'FCT College of Education'),
(82637, 69056, 'en', 'name', 'Flemish Radio and Television Broadcasting Organisation'),
(82638, 69056, 'fr', 'name', 'Vlaamse Radio- en Televisieomroeporganisatie'),
(82639, 69057, 'en', 'name', 'Polistovsky National Nature Reserve'),
(82640, 69057, 'ru', 'name', 'ŠŸŠ¾Š»ŠøŃŃ‚Š¾Š²ŃŠŗŠøŠ¹ заповеГник'),
(82641, 69058, 'en', 'name', 'Florence English Language Theatre Artists'),
(82642, 69059, 'hu', 'name', 'Budapesti Fazekas MihÔly Gyakorló ÁltalÔnos Iskola és GimnÔzium'),
(82643, 69060, 'pt', 'name', 'Faesa Centro Universitario'),
(82644, 69061, 'no_lang_code', 'name', 'Fo Guang Shan'),
(82645, 69061, 'zh', 'name', '佛光山'),
(82646, 69062, 'en', 'name', 'Federation for Self Financing Tertiary Education'),
(82647, 69062, 'zh', 'name', 'č‡Ŗč³‡é«˜ē­‰ę•™č‚²čÆē›Ÿ'),
(82648, 69063, 'sq', 'name', 'Instituti i Sigurisƫ Ushqimore dhe Veterinarisƫ'),
(82649, 69064, 'no_lang_code', 'name', 'Forum 2000'),
(82650, 69065, 'no_lang_code', 'name', 'Full Radius Dance (United States)'),
(82651, 69066, 'fr', 'name', 'Forum RƩfugiƩs - Cosi'),
(82652, 69067, 'en', 'name', 'First Floor Gallery Harare'),
(82653, 69068, 'en', 'name', 'Foundation for International Cooperation In Higher Education of Taiwan'),
(82654, 69068, 'zh', 'name', 'č²”åœ˜ę³•äŗŗé«˜ē­‰ę•™č‚²åœ‹éš›åˆä½œåŸŗé‡‘ęœƒ'),
(82655, 69069, 'en', 'name', 'Future Academy'),
(82656, 69069, 'ar', 'name', 'فيوتؓر Ų§ŁƒŲ§ŲÆŁŠŁ…Ł‰'),
(82657, 69070, 'en', 'name', 'Foundation for Revitalisation of Local Health Traditions'),
(82658, 69071, 'en', 'name', 'Foundation for the Advancement of Social Theory'),
(82659, 69072, 'no_lang_code', 'name', 'Fauji Fertilizer (Pakistan)'),
(82660, 69073, 'en', 'name', 'Foundations of Success'),
(82661, 69074, 'en', 'name', 'Galicia Jewish Museum'),
(82662, 69074, 'pl', 'name', 'Żydowskie Muzeum Galicja'),
(82663, 69075, 'en', 'name', 'Government of Mizoram'),
(82664, 69076, 'en', 'name', 'Uttarakhand Government'),
(82665, 69077, 'ga', 'name', 'Garda SƭochƔna Inspectorate'),
(82666, 69078, 'en', 'name', 'GDP Ayurvedic University'),
(82667, 69079, 'it', 'name', 'AcadƩmie de France Ơ Rome'),
(82668, 69079, 'en', 'name', 'French Academy in Rome'),
(82669, 69080, 'en', 'name', 'Grace Mutual'),
(82670, 69081, 'en', 'name', 'Azerbaijan Genetic Resources Institute'),
(82671, 69081, 'az', 'name', 'Genetik Ehtiyatlar İnstitutu'),
(82672, 69082, 'en', 'name', 'Greater Boston Interfaith Organization'),
(82673, 69083, 'no_lang_code', 'name', 'FringeArts'),
(82674, 69084, 'en', 'name', 'Green Capacity'),
(82675, 69085, 'en', 'name', 'Green Circle'),
(82676, 69085, 'cs', 'name', 'Zelený kruh'),
(82677, 69086, 'no_lang_code', 'name', 'Gorgias Press (United States)'),
(82678, 69087, 'en', 'name', 'Green Liberty'),
(82679, 69087, 'lv', 'name', 'Zaļā brīvība'),
(82680, 69088, 'no_lang_code', 'name', 'GreenTech Consultants (Sri Lanka)'),
(82681, 69089, 'en', 'name', 'Harry S. Truman Presidential Library and Museum'),
(82682, 69090, 'en', 'name', 'Georgian Arts and Culture Center'),
(82683, 69090, 'ka', 'name', 'įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜ įƒ®įƒ”įƒšįƒįƒ•įƒœįƒ”įƒ‘įƒ˜įƒ” ინეტიტუტი įƒ¬įƒįƒ›įƒ§įƒ•įƒįƒœįƒ˜ įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ˜'),
(82684, 69091, 'en', 'name', 'Headlands Center for the Arts'),
(82685, 69092, 'en', 'name', 'Habitat for Humanity'),
(82686, 69093, 'en', 'name', 'The German Marshall Fund of the United States'),
(82687, 69094, 'en', 'name', 'Hellenic Adult Education Association'),
(82688, 69094, 'el', 'name', 'Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĪæĪ½Ī¹ĪŗĪ® ĪˆĪ½Ļ‰ĻƒĪ· Ī•ĪŗĻ€Ī±ĪÆĪ“ĪµĻ…ĻƒĪ·Ļ‚ Ενηλίκων'),
(82689, 69095, 'en', 'name', 'Global Action Project'),
(82690, 69096, 'en', 'name', 'Green Cross International'),
(82691, 69097, 'no_lang_code', 'name', 'Global Professional Consulting (United States)'),
(82692, 69098, 'en', 'name', 'Hellenic Children''s Museum'),
(82693, 69098, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ΠαιΓικό ĪœĪæĻ…ĻƒĪµĪÆĪæ'),
(82694, 69099, 'en', 'name', 'Institute of Geography Named after Academician Hasan Aliyev'),
(82695, 69100, 'no_lang_code', 'name', 'Hogan Lovells (United States)'),
(82696, 69101, 'en', 'name', 'Her Majesty''s Inspectorate of Probation'),
(82697, 69102, 'no_lang_code', 'name', 'Holland and Knight (United Arab Emirates)'),
(82698, 69103, 'sv', 'name', 'Helsingfors Konstmuseum'),
(82699, 69103, 'fi', 'name', 'Helsingin Taidemuseo'),
(82700, 69103, 'en', 'name', 'Helsinki Art Museum'),
(82701, 69104, 'en', 'name', 'HB Studio'),
(82702, 69105, 'en', 'name', 'Heritage Lower Saint Lawrence'),
(82703, 69106, 'en', 'name', 'Hendrick Hudson School District'),
(82704, 69107, 'en', 'name', 'Hong Kong America Center'),
(82705, 69108, 'en', 'name', 'Her Majesty''s Inspectorate of Constabulary in Scotland'),
(82706, 69109, 'en', 'name', 'Honolulu Theatre for Youth'),
(82707, 69110, 'en', 'name', 'Horn of Africa Press Institute'),
(82708, 69111, 'en', 'name', 'Houston Galveston Institute'),
(82709, 69112, 'fr', 'name', 'Institut SupĆ©rieur des Ɖtudes Technologiques en Communications de Tunis'),
(82710, 69112, 'ar', 'name', 'لمعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© في Ų§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ ŲØŲŖŁˆŁ†Ų³'),
(82711, 69113, 'en', 'name', 'Banner Health Foundation'),
(82712, 69114, 'en', 'name', 'Higher Learning Commission'),
(82713, 69115, 'es', 'name', 'Instituto Superior Tecnológico de Artes del Ecuador'),
(82714, 69116, 'en', 'name', 'Highlanes Gallery'),
(82715, 69117, 'en', 'name', 'Himalayan Environmental Studies and Conservation Organization'),
(82716, 69118, 'en', 'name', 'Hypatia of Alexandria Institute for Reflexion and Studies'),
(82717, 69119, 'en', 'name', 'I Choose Life'),
(82718, 69120, 'en', 'name', 'Iceland Symphony Orchestra'),
(82719, 69120, 'is', 'name', 'SinfónĆ­uhljómsveit ƍslands'),
(82720, 69121, 'no_lang_code', 'name', 'Iguacu'),
(82721, 69122, 'no_lang_code', 'name', 'Delta International (Georgia)'),
(82722, 69122, 'ka', 'name', 'įƒ”įƒ”įƒ˜įƒž - ეეეტც įƒ“įƒ”įƒšįƒ¢įƒ'),
(82723, 69123, 'es', 'name', 'Instituto de Medicina y BiologĆ­a Experimental de Cuyo'),
(82724, 69124, 'en', 'name', 'Indian Institute of Forest Management'),
(82725, 69124, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ वन ą¤Ŗą„ą¤°ą¤¬ą¤Øą„ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(82726, 69125, 'en', 'name', 'Indian Institute of Journalism and New Media'),
(82727, 69126, 'en', 'name', 'Indian Institute of Mass Communication'),
(82728, 69126, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ जन ą¤øą¤‚ą¤šą¤¾ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(82729, 69127, 'en', 'name', 'Institute of Archeology and Ethnography'),
(82730, 69127, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ археологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø'),
(82731, 69128, 'en', 'name', 'The Institute for Bird Populations'),
(82732, 69129, 'es', 'name', 'Instituto de Ciencias Astronómicas, de la Tierra y del Espacio'),
(82733, 69130, 'az', 'name', 'Botanika İnstitutu'),
(82734, 69130, 'en', 'name', 'Institute of Botany'),
(82735, 69131, 'en', 'name', 'Institute for Complex Analysis of Regional Problems'),
(82736, 69132, 'en', 'name', 'International Finance Corporation'),
(82737, 69133, 'sr', 'name', 'Institut za savremenu istoriju'),
(82738, 69134, 'en', 'name', 'Institute for Defence Studies and Analyses'),
(82739, 69134, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø और ą¤µą¤æą¤¶ą„ą¤²ą„‡ą¤·ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(82740, 69135, 'ru', 'name', 'Institut Khimii Imeni V.i.nikitina Akademii Nauk Respubliki Tajikistan'),
(82741, 69135, 'en', 'name', 'Institute of Chemistry named after V.I. Nikitin'),
(82742, 69135, 'tg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Šø кимиёи ба номи Š’.И.ŠŠøŠŗŠøŃ‚ŠøŠ½Šø ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŠø илмҳои Ņ¶ŃƒŠ¼Ņ³ŃƒŃ€ŠøŠø Тоҷикистон'),
(82743, 69136, 'en', 'name', 'Institute for Education in International Media'),
(82744, 69137, 'cs', 'name', 'Nadace Neziskovky'),
(82745, 69138, 'es', 'name', 'Instituto de QuĆ­mica del Noroeste Argentino'),
(82746, 69139, 'en', 'name', 'Institute for International Urban Development'),
(82747, 69140, 'it', 'name', 'Istituto storico italiano per il Medio Evo'),
(82748, 69141, 'en', 'name', 'Institute of Diplomacy and Foreign Relations'),
(82749, 69142, 'en', 'name', 'LifeMoves'),
(82750, 69143, 'en', 'name', 'Colmar Inra Research Centre'),
(82751, 69143, 'fr', 'name', 'Le Centre Inra de Colmar'),
(82752, 69144, 'es', 'name', 'Instituto Superior de Investigaciones Biológicas'),
(82753, 69145, 'en', 'name', 'Institute of Educational Sciences'),
(82754, 69145, 'ro', 'name', 'Institutul de Ştiinţe ale Educaţiei'),
(82755, 69146, 'uz', 'name', 'Oā€˜zbekiston Respublikasi Fanlar Akademiyasi Tarix Instituti'),
(82756, 69146, 'en', 'name', 'The Institute of History of The Academy of Sciences of The Republic of Uzbekistan'),
(82757, 69146, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š˜ŃŃ‚Š¾Ń€ŠøŠø АкаГемии ŠŠ°ŃƒŠŗ Республики Узбекистан'),
(82758, 69147, 'sk', 'name', 'Historický Ústav Slovenskej Akadémie Vied'),
(82759, 69147, 'en', 'name', 'Institute of History of the Slovak Academy of Sciences'),
(82760, 69148, 'en', 'name', 'Institute for Security Studies'),
(82761, 69149, 'en', 'name', 'Institute for Social Development Studies'),
(82762, 69149, 'vi', 'name', 'Viện nghiĆŖn cứu phĆ”t triển xĆ£ hį»™i'),
(82763, 69150, 'pt', 'name', 'Instituto de Estudos do Trabalho e Sociedade'),
(82764, 69151, 'en', 'name', 'Institute for War and Peace Reporting'),
(82765, 69152, 'es', 'name', 'Instituto de BiologĆ­a AgrĆ­cola de Mendoza'),
(82766, 69153, 'en', 'name', 'Institute of Geology, Komi Science Centre'),
(82767, 69153, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Коми ŠŠ¦ Š£Ń€Šž Š ŠŠ'),
(82768, 69154, 'es', 'name', 'Instituto de BiologĆ­a Molecular y Celular de Rosario'),
(82769, 69155, 'en', 'name', 'Institute of Philosophy'),
(82770, 69155, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ філасофіі ŠŠ°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Š°Š¹ Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń– навук Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(82771, 69155, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ философии ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(82772, 69156, 'az', 'name', 'Azərbaycan Milli Elmlər Akademiyası Abbasqulu Ağa Bakıxanov Adina Tarix Institutu'),
(82773, 69157, 'en', 'name', 'The Dialogue'),
(82774, 69158, 'es', 'name', 'Centro Intercultural de Estudios de Desiertos y OcƩanos'),
(82775, 69158, 'en', 'name', 'Intercultural Center for the Study of Deserts and Oceans'),
(82776, 69159, 'en', 'name', 'The Intercultural Communication Institute'),
(82777, 69160, 'en', 'name', 'Institute of Scientific Information on Social Sciences'),
(82778, 69160, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°ŃƒŃ‡Š½Š¾Š¹ информации по общественным наукам'),
(82779, 69161, 'en', 'name', 'Intercultural Dialogue Foundation'),
(82780, 69161, 'hu', 'name', 'InterkulturƔlis PƔrbeszƩd AlapƭtvƔny'),
(82781, 69162, 'en', 'name', 'Centre for Invasive Species Solution'),
(82782, 69163, 'en', 'name', 'Institute of Social Sciences'),
(82783, 69164, 'sr', 'name', 'Institut druŔtvenih nauka'),
(82784, 69164, 'en', 'name', 'Institute of Social Sciences'),
(82785, 69165, 'en', 'name', 'International Bluegrass Music Association'),
(82786, 69166, 'en', 'name', 'International Center for Advanced Research and Training'),
(82787, 69167, 'fr', 'name', 'Binche MusƩe International du Carnaval et du Masque'),
(82788, 69168, 'en', 'name', 'International Center for Transitional Justice'),
(82789, 69169, 'en', 'name', 'International Center for Transitional Justice'),
(82790, 69170, 'en', 'name', 'Institute of History of Ukraine'),
(82791, 69170, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ історії України ŠŠŠ України'),
(82792, 69171, 'en', 'name', 'International Centre for Ethnic Studies'),
(82793, 69171, 'si', 'name', 'ą¶¢ą¶±ą·€ą·ą¶»ą·Šą¶œą·’ą¶š ą¶…ą¶°ą·Šą¶ŗą¶ŗą¶± ą·ƒą¶³ą·„ą· ą¶¢ą·ą¶­ą·Šą¶ŗą¶±ą·Šą¶­ą¶» ą¶øą¶°ą·Šą¶ŗą·ƒą·Šą¶®ą·ą¶±ą¶ŗ'),
(82794, 69172, 'no_lang_code', 'name', 'Investa (Australia)'),
(82795, 69173, 'en', 'name', 'International Ceramics Studio'),
(82796, 69173, 'hu', 'name', 'Nemzetközi KerÔmia Stúdió'),
(82797, 69174, 'fr', 'name', 'CIEP'),
(82798, 69175, 'en', 'name', 'Isha Foundation'),
(82799, 69176, 'en', 'name', 'Ishara Puppet Theatre Trust'),
(82800, 69177, 'en', 'name', 'Contemporary Dance Center'),
(82801, 69177, 'ru', 'name', 'Центр современного танца'),
(82802, 69178, 'fr', 'name', 'Centre de Recherches pour le DƩveloppement International'),
(82803, 69178, 'en', 'name', 'International Development Research Centre'),
(82804, 69179, 'es', 'name', 'Teatro Colón'),
(82805, 69180, 'en', 'name', 'International Graduate School of Leadership'),
(82806, 69181, 'en', 'name', 'Institute of Coal Chemistry and Material Science'),
(82807, 69181, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŠø Šø химического Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(82808, 69182, 'en', 'name', 'MI College'),
(82809, 69183, 'en', 'name', 'International Press Center'),
(82810, 69183, 'fr', 'name', 'RƩsidence Palace - Internationales Pressezentrum'),
(82811, 69184, 'en', 'name', 'Israeli Center for Libraries'),
(82812, 69184, 'he', 'name', '×ž×Ø×›×– ההפר וההפריות'),
(82813, 69185, 'en', 'name', 'International Renaissance Foundation'),
(82814, 69185, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ фонГ "Š’Ń–Š“Ń€Š¾Š“Š¶ŠµŠ½Š½Ń'),
(82815, 69186, 'en', 'name', 'International School of Dakar'),
(82816, 69187, 'en', 'name', 'International Studio & Curatorial Program'),
(82817, 69188, 'no_lang_code', 'name', 'Jacobi Consulting (New Zealand)'),
(82818, 69189, 'en', 'name', 'International University of Central Asia'),
(82819, 69190, 'en', 'name', 'Internews'),
(82820, 69191, 'en', 'name', 'The Interuniversity Institute for Research and Development'),
(82821, 69192, 'en', 'name', 'Jammu and Kashmir Academy of Art, Culture and Languages'),
(82822, 69193, 'en', 'name', 'Fulbright Japan'),
(82823, 69193, 'ja', 'name', 'ę—„ē±³ę•™č‚²å§”å“”ä¼š'),
(82824, 69194, 'es', 'name', 'Jardƭn EtnobotƔnico de Oaxaca'),
(82825, 69195, 'en', 'name', 'The Jerusalem Academy of Music and Dance'),
(82826, 69195, 'he', 'name', 'האקדמיה למוהיקה ולמחול ×‘×™×Ø×•×©×œ×™×'),
(82827, 69196, 'no_lang_code', 'name', 'INTAR'),
(82828, 69197, 'en', 'name', 'Jewish Museum of Greece'),
(82829, 69197, 'el', 'name', 'Ī•Ī²ĻĪ±ĻŠĪŗĻŒ ĪœĪæĻ…ĻƒĪµĪÆĪæ ΕλλάΓος'),
(82830, 69198, 'en', 'name', 'Kalakshetra Foundation'),
(82831, 69199, 'no_lang_code', 'name', 'Kaleidoscopio'),
(82832, 69200, 'no_lang_code', 'name', 'Kalpavriksh'),
(82833, 69201, 'en', 'name', 'Kansas City Public Schools'),
(82834, 69202, 'en', 'name', 'Jordan National Gallery of Fine Arts'),
(82835, 69202, 'ar', 'name', 'المتحف Ų§Ł„ŁˆŲ·Ł†ŁŠ Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ Ł„Ł„ŁŁ†ŁˆŁ† Ų§Ł„Ų¬Ł…ŁŠŁ„Ų©'),
(82836, 69203, 'en', 'name', 'Jordan Radio and Television Corporation'),
(82837, 69203, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© ال؄ذاعة ŁˆŲ§Ł„ŲŖŁ„ŁŲ²ŁŠŁˆŁ† Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ'),
(82838, 69204, 'en', 'name', 'Karakalpakstan State Museum of Art named after I.V. Savitsky'),
(82839, 69204, 'uz', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ музей ŠøŃŠŗŃƒŃŃŃ‚в имени И. Š’. Давицкого'),
(82840, 69205, 'no_lang_code', 'name', 'Karnataka Chitrakala Parishath'),
(82841, 69205, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²šą²æą²¤ą³ą²°ą²•ą²²ą²¾ ą²Ŗą²°ą²æą²·ą²¤ą³'),
(82842, 69206, 'es', 'name', 'Benemerito Hospital General con Especialidades "Juan Maria de Salvatierra"'),
(82843, 69207, 'en', 'name', 'Kerala State Chalachitra Academy'),
(82844, 69207, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“øą“‚ą“øąµą“„ą“¾ą“Ø ą“šą“²ą“šąµą“šą“æą“¤ąµą“° ą“…ą“•ąµą“•ą“¾ą“¦ą“®ą“æ'),
(82845, 69208, 'en', 'name', 'The Judge Advocate General''s Legal Center and School'),
(82846, 69209, 'en', 'name', 'Kathimerini Publishing (Greece)'),
(82847, 69209, 'el', 'name', 'Oι ĪšĪ‘Ī˜Ī—ĪœĪ•Ī”Ī™ĪĪ•Ī£ Ī•ĪšĪ”ĪŸĪ£Ī•Ī™Ī£'),
(82848, 69210, 'vi', 'name', 'Hį»c viện Tʰ phĆ”p'),
(82849, 69211, 'en', 'name', 'Kazakh Research Institute of Plant Protection and Quarantine'),
(82850, 69211, 'ru', 'name', 'казахский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ защиты Šø карантина растений'),
(82851, 69212, 'pt', 'name', 'Instituto Brasil Estados Unidos'),
(82852, 69213, 'en', 'name', 'Astana Medical University'),
(82853, 69213, 'kk', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Астана'),
(82854, 69214, 'es', 'name', 'Poder Judicial de la Ciudad de Buenos Aires'),
(82855, 69215, 'en', 'name', 'Kazakh-American Free University'),
(82856, 69215, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½-АмериканГық еркін ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(82857, 69216, 'en', 'name', 'Psychoanalytical Association'),
(82858, 69216, 'kk', 'name', 'ŠŸŃŠøŃ…Š¾Š°Š½Š°Š»ŠøŃ‚ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ'),
(82859, 69217, 'en', 'name', 'Ministry of Education and Science of the Republic of Tatarstan'),
(82860, 69217, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки Республики Татарстан'),
(82861, 69218, 'en', 'name', 'Provincial Polyclinical Hospital in Toruń'),
(82862, 69218, 'pl', 'name', 'Wojewódzki Szpital Zespolony im. L. Rydygiera w Toruniu'),
(82863, 69219, 'no_lang_code', 'name', 'Kharkiv Lit Museum'),
(82864, 69219, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š»Ń–Ń‚ŠµŃ€Š°Ń‚ŃƒŃ€Š½ŠøŠ¹ музей'),
(82865, 69220, 'en', 'name', 'Judicial Yuan'),
(82866, 69220, 'zh', 'name', 'åøę³•é™¢'),
(82867, 69221, 'en', 'name', 'The K.R. Cama Oriental Institute'),
(82868, 69222, 'en', 'name', 'Kenya Association of Professional Counsellors'),
(82869, 69223, 'no_lang_code', 'name', 'Kahoku Shimpō'),
(82870, 69223, 'ja', 'name', 'ę²³åŒ—ę–°å ±'),
(82871, 69224, 'en', 'name', 'Kent State University Geauga'),
(82872, 69225, 'fr', 'name', 'Kahuzi-BiƩga National Park'),
(82873, 69226, 'en', 'name', 'King Abdulaziz Foundation For Research And Archives'),
(82874, 69227, 'en', 'name', 'Kazakhstan Medical University'),
(82875, 69227, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½Š“Ń‹Ņ› меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(82876, 69228, 'en', 'name', 'King County Council'),
(82877, 69229, 'en', 'name', 'King Fahd Security College'),
(82878, 69229, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„Ų£Ł…Ł†ŁŠŲ©'),
(82879, 69230, 'en', 'name', 'V.M. Koretsky Institute of State and Law'),
(82880, 69230, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гержави і права імені Š’. М. ŠšŠ¾Ń€ŠµŃ†ŃŒŠŗŠ¾Š³Š¾ ŠŠŠ України'),
(82881, 69230, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²Š° Šø права имени Š’. М. ŠšŠ¾Ń€ŠµŃ†ŠŗŠ¾Š³Š¾ ŠŠŠ Украины'),
(82882, 69231, 'no_lang_code', 'name', 'La Strada'),
(82883, 69232, 'en', 'name', 'Kotka Maritime Research Centre'),
(82884, 69232, 'fi', 'name', 'Meriturvallisuuden ja -liikenteen Tutkimuskeskus'),
(82885, 69233, 'en', 'name', 'Dmitri Hvorostovsky Siberian State Institute of Arts'),
(82886, 69233, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² имени Š”Š¼ŠøŃ‚Ń€ŠøŃ Єворостовского'),
(82887, 69234, 'en', 'name', 'Ladies College'),
(82888, 69235, 'en', 'name', 'Kingswood Oxford'),
(82889, 69236, 'en', 'name', 'Islamic Azad University, Masjed Soleyman'),
(82890, 69236, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ų³Ų¬ŲÆŲ³Ł„ŪŒŁ…Ų§Ł†'),
(82891, 69237, 'en', 'name', 'Larkin University'),
(82892, 69238, 'no_lang_code', 'name', 'Alma Media (Finland)'),
(82893, 69238, 'fi', 'name', 'Alma Media Oyj'),
(82894, 69239, 'no_lang_code', 'name', 'Kobe Shimbun (Japan)'),
(82895, 69239, 'ja', 'name', 'ē„žęˆøę–°čž'),
(82896, 69240, 'no_lang_code', 'name', 'Lasanaa'),
(82897, 69241, 'no_lang_code', 'name', 'Kyiv International Institute of Sociology (Ukraine)'),
(82898, 69241, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ міжнароГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ соціології'),
(82899, 69242, 'no_lang_code', 'name', 'Les Kurbas Center'),
(82900, 69242, 'uk', 'name', 'Š¦Š•ŠŠ¢Š  ЛЕДЯ ŠšŠ£Š Š‘ŠŠ”Š'),
(82901, 69243, 'en', 'name', 'The LGBT Centre'),
(82902, 69243, 'mn', 'name', 'ЛГБТ Төв'),
(82903, 69244, 'en', 'name', 'Margarita Rudomino All-Russia State Library for Foreign Literature'),
(82904, 69244, 'ru', 'name', 'Библиотека иностранной Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹'),
(82905, 69245, 'en', 'name', 'Law Institute of Lithuania'),
(82906, 69245, 'lt', 'name', 'Teisės institutas'),
(82907, 69246, 'no_lang_code', 'name', 'Kabar'),
(82908, 69247, 'en', 'name', 'Lower East Side Printshop'),
(82909, 69248, 'en', 'name', 'Library of Tibetan Works and Archives'),
(82910, 69249, 'en', 'name', 'Kyrgyz State Law Academy'),
(82911, 69249, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(82912, 69250, 'fr', 'name', 'BibliothĆØque Universitaire des Langues et Civilisations'),
(82913, 69251, 'en', 'name', 'Kyrgyzskaya State Academy of Physical Culture and Sports'),
(82914, 69251, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(82915, 69252, 'en', 'name', 'L. A. Orbeli Institute of Physiology NAS RA'),
(82916, 69252, 'hy', 'name', 'ՀՀ Ō³Ō±Ō± Ō±ÕÆÕ”Õ¤. Ō¼. Ō±. Õ•Ö€Õ¢Õ„Õ¬ÕøÖ‚ Õ”Õ¶Õ¾Õ”Õ¶ Õ–Õ«Õ¦Õ«ÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ« Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(82917, 69253, 'es', 'name', 'Liceo Jubilar Juan Pablo II'),
(82918, 69254, 'en', 'name', 'Labyrinth Musical Workshop'),
(82919, 69254, 'el', 'name', 'ĪœĪæĻ…ĻƒĪ¹ĪŗĻŒ ĪµĻĪ³Ī±ĻƒĻ„Ī®ĻĪ¹ Ī›Ī±Ī²ĻĻĪ¹Ī½ĪøĪæĻ‚'),
(82920, 69255, 'en', 'name', 'L.V. Prasad Film & TV Academy'),
(82921, 69256, 'en', 'name', 'Lillstreet Art Center'),
(82922, 69257, 'no_lang_code', 'name', 'NMAS Group (United States)'),
(82923, 69258, 'no_lang_code', 'name', 'Mabou Mines (United States)'),
(82924, 69259, 'en', 'name', 'Limón Institute'),
(82925, 69260, 'no_lang_code', 'name', 'Mapei (United States)'),
(82926, 69261, 'en', 'name', 'MeetFactory'),
(82927, 69262, 'es', 'name', 'Asociación MeetShareDance'),
(82928, 69262, 'en', 'name', 'MeetShareDance Association'),
(82929, 69263, 'cs', 'name', 'Loutky v Nemocnici'),
(82930, 69263, 'en', 'name', 'Puppets in Hospital'),
(82931, 69264, 'en', 'name', 'Lowry Memorial College & Group of Institutions'),
(82932, 69265, 'de', 'name', 'Medizinische Zentrum für Gesundheit'),
(82933, 69266, 'no_lang_code', 'name', 'Martin Chautari'),
(82934, 69266, 'ne', 'name', 'ą¤®ą¤¾ą¤°ą„ą¤Ÿą¤æą¤Ø ą¤šą„Œą¤¤ą¤¾ą¤°ą„€'),
(82935, 69267, 'no_lang_code', 'name', 'OTJ Architects (United States)'),
(82936, 69268, 'en', 'name', 'Mental Health America'),
(82937, 69269, 'no_lang_code', 'name', 'Mada al-Carmel'),
(82938, 69269, 'he', 'name', 'مدى Ų§Ł„ŁƒŲ±Ł…Ł„'),
(82939, 69270, 'en', 'name', 'Magic Lantern Movies'),
(82940, 69271, 'en', 'name', 'Ministry of Agriculture and Fisheries'),
(82941, 69271, 'ar', 'name', 'وزارة الزراعة ŁˆŲ§Ł„Ų«Ų±ŁˆŲ© Ų§Ł„Ų³Ł…ŁƒŁŠŲ© - سلطنة Ų¹ŁŁ…Ų§Ł†'),
(82942, 69272, 'fr', 'name', 'Ministère de l''Agriculture et des Aménagements Hydrauliques'),
(82943, 69273, 'en', 'name', 'Mahatma Gandhi Institute'),
(82944, 69274, 'en', 'name', 'Matheny'),
(82945, 69275, 'en', 'name', 'Ministry of Culture'),
(82946, 69276, 'no_lang_code', 'name', 'Lokadharmi'),
(82947, 69277, 'en', 'name', 'Ministry of Culture'),
(82948, 69277, 'ar', 'name', 'وزارة الثقافة'),
(82949, 69278, 'en', 'name', 'The Mainichi'),
(82950, 69278, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęÆŽę—„ę–°čžē¤¾'),
(82951, 69279, 'ro', 'name', 'Biblioteca Metropolitană București'),
(82952, 69280, 'en', 'name', 'Ministry of Culture'),
(82953, 69280, 'ar', 'name', 'وزارة الثقافة'),
(82954, 69281, 'en', 'name', 'The Mauritius Chamber of Commerce and Industry'),
(82955, 69282, 'sq', 'name', 'Ministria e Kulturƫs, Rinisƫ dhe Sportit e Kosovƫs'),
(82956, 69282, 'en', 'name', 'Ministry of Culture, Youth and Sport'),
(82957, 69283, 'en', 'name', 'London Fire Brigade'),
(82958, 69284, 'en', 'name', 'Ministry of Defence of Armenia'),
(82959, 69284, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« ÕŗÕ”Õ·ÕæÕŗÕ”Õ¶ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ¶Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(82960, 69285, 'en', 'name', 'Metta Development Foundation'),
(82961, 69286, 'en', 'name', 'Ministry of Economy of the Republic of Uzbekistan'),
(82962, 69286, 'uz', 'name', 'O''zbekiston Respublikasi Iqtisodiyot Vazirligi'),
(82963, 69287, 'en', 'name', 'Ministry of Education'),
(82964, 69288, 'fr', 'name', 'MinistĆØre des Affaires Ɖconomiques et de la Promotion des Secteurs Productifs'),
(82965, 69289, 'en', 'name', 'Ministry of Natural Resources and Environment'),
(82966, 69289, 'lo', 'name', 'ąŗąŗ°ąŗŠąŗ§ąŗ‡ ąŗŠąŗ±ąŗšąŗžąŗ°ąŗąŗ²ąŗąŗ­ąŗ™ ąŗ—ąŗ³ąŗ”ąŗ°ąŗŠąŗ²ąŗ” ແຄະ ąŗŖąŗ“ą»ˆąŗ‡ą»ąŗ§ąŗ”ąŗ„ą»‰ąŗ­ąŗ”'),
(82967, 69290, 'en', 'name', 'The Ministry of Education and Science of the Kyrgyz Republic'),
(82968, 69290, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š· Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Š½ билим берүү жана илим министрлиги'),
(82969, 69290, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾Š¹ Республики'),
(82970, 69291, 'en', 'name', 'Los Angeles Police Department'),
(82971, 69292, 'es', 'name', 'Ministerio Público Fiscal de la Ciudad Autónoma de Buenos Aires'),
(82972, 69293, 'en', 'name', 'Ministry of Social Justice and Empowerment'),
(82973, 69294, 'en', 'name', 'Ministry of Education'),
(82974, 69295, 'en', 'name', 'Capital Academy of Finance and Humanities'),
(82975, 69295, 'ru', 'name', 'Š”Ń‚Š¾Š»ŠøŃ‡Š½Š°Ń Финансово-Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(82976, 69296, 'en', 'name', 'Ministry of Welfare'),
(82977, 69296, 'is', 'name', 'VelferưarrƔưuneytiư'),
(82978, 69297, 'en', 'name', 'Mt Albert Primary School'),
(82979, 69298, 'sq', 'name', 'Ministria e Arsimit, e Shkencƫs dhe e Teknologjisƫ'),
(82980, 69298, 'en', 'name', 'Ministry of Education, Science and Technology'),
(82981, 69299, 'en', 'name', 'Mazatlan Professional School of Dance'),
(82982, 69300, 'en', 'name', 'Middlesex University'),
(82983, 69301, 'en', 'name', 'Ministry of Natural Resources and Environmental Conservation'),
(82984, 69302, 'hr', 'name', 'Leksikografski zavod Miroslav Krleža'),
(82985, 69302, 'en', 'name', 'Miroslav Krleža Institute of Lexicography'),
(82986, 69303, 'en', 'name', 'Moscow State University'),
(82987, 69303, 'ru', 'name', 'Филиал Московского Š³Š¾ŃŃƒŠ“арственного ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š° имени М.Š’. Ломоносова в гороГе Š”ŃƒŃˆŠ°Š½Š±Šµ'),
(82988, 69304, 'es', 'name', 'Cultura'),
(82989, 69305, 'it', 'name', 'Museo Civico di Zoologia'),
(82990, 69306, 'en', 'name', 'Movement for Freedom'),
(82991, 69306, 'ru', 'name', 'Движение «За ДвобоГу»'),
(82992, 69307, 'sv', 'name', 'Institut Mittag-Leffler'),
(82993, 69307, 'en', 'name', 'Mittag-Leffler Institute'),
(82994, 69308, 'ro', 'name', 'Ministerul Afacerilor Externe'),
(82995, 69308, 'en', 'name', 'Ministry of Foreign Affairs'),
(82996, 69309, 'en', 'name', 'MS Training Centre for Development Cooperation'),
(82997, 69310, 'en', 'name', 'Ministry of Foreign Affairs'),
(82998, 69310, 'dv', 'name', 'Ž‰ŽØŽ‚ŽØŽŽ°Ž“Ž°ŽƒŽ© Ž‡Ž®ŽŠŽ° ŽŠŽ®ŽƒŽØŽ‚Ž° Ž‡Ž¬ŽŠŽ¬Ž‡Ž§Ž’Ž°'),
(82999, 69311, 'en', 'name', 'Modern Art Research Institute'),
(83000, 69311, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃŃƒŃ‡Š°ŃŠ½Š¾Š³Š¾ мистецтва'),
(83001, 69312, 'vi', 'name', 'Bį»™ Ngoįŗ”i giao Việt Nam'),
(83002, 69312, 'en', 'name', 'Ministry of Foreign Affairs'),
(83003, 69313, 'es', 'name', 'Archivo nacional del Ecuador'),
(83004, 69313, 'en', 'name', 'National Archives of Ecuador'),
(83005, 69314, 'fr', 'name', 'MinistĆØre de l’Enseignement SupĆ©rieur et de la Recherche Scientifique'),
(83006, 69315, 'ms', 'name', 'Akademi Seni Budaya Dan Warisan Kebangsaan'),
(83007, 69315, 'en', 'name', 'National Academy of Arts, Culture and Heritage'),
(83008, 69316, 'en', 'name', 'Museum of Contemporary African Diasporan Arts'),
(83009, 69317, 'en', 'name', 'Ministry of Industries and Production'),
(83010, 69318, 'en', 'name', 'Molteno Institute for Language and Literacy'),
(83011, 69319, 'en', 'name', 'Mongolia International University'),
(83012, 69320, 'no_lang_code', 'name', 'Kerala Museum'),
(83013, 69320, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“šą“°ą“æą“¤ąµą“° ą“®ąµą“Æąµ‚ą“øą“æą“Æą“‚'),
(83014, 69321, 'en', 'name', 'Ministry of Internal Affairs'),
(83015, 69321, 'mk', 'name', 'ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Šž ЗА Š’ŠŠŠ¢Š Š•ŠØŠŠ˜ Š ŠŠ‘ŠžŠ¢Š˜'),
(83016, 69322, 'en', 'name', 'Minshar School of Art'),
(83017, 69322, 'he', 'name', '×ž× ×©×Ø ×œ××ž× ×•×Ŗ'),
(83018, 69323, 'en', 'name', 'MIT University'),
(83019, 69323, 'mk', 'name', 'МИТ Универзитет'),
(83020, 69324, 'en', 'name', 'Ministry of Internal Affairs of the Kyrgyz Republic'),
(83021, 69324, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š· Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Š½ Š˜Ń‡ŠŗŠø Š˜ŃˆŃ‚ŠµŃ€ ŠœŠøŠ½ŠøŃŃ‚Ń€Š»ŠøŠ³Šø'),
(83022, 69324, 'ky', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел ŠšŠøŃ€Š³ŠøŠ·ŃŠŗŠ¾Š¹ Республики'),
(83023, 69325, 'en', 'name', 'Uganda National Council for Higher Education'),
(83024, 69326, 'en', 'name', 'Myanmar Institute of Information Technology'),
(83025, 69327, 'vi', 'name', 'Bį»™ Tʰ phĆ”p'),
(83026, 69327, 'en', 'name', 'Ministry of Justice'),
(83027, 69328, 'no_lang_code', 'name', 'Banco Montepio (Portugal)'),
(83028, 69329, 'en', 'name', 'Ministry of Land Management, Urban Planning and Construction'),
(83029, 69329, 'km', 'name', 'įž€įŸ’įžšįžŸįž½įž„įžšįŸ€įž”įž…įŸ†įžŠįŸ‚įž“įžŠįžø įž“įž‚įžšįž¼įž”įž“įžøįž™įž€įž˜įŸ’įž˜ įž“įž·įž„įžŸįŸ†įžŽįž„įŸ‹'),
(83030, 69330, 'en', 'name', 'Myanmar Institute of Theology'),
(83031, 69331, 'en', 'name', 'Los Angeles County Superior Court'),
(83032, 69332, 'fr', 'name', 'Commission de la Capitale Nationale'),
(83033, 69332, 'en', 'name', 'National Capital Commission'),
(83034, 69333, 'fr', 'name', 'Conservatoire des Arts et MƩtiers MultimƩdia'),
(83035, 69334, 'en', 'name', 'National Institute of Technical Teachers’ Training and Research'),
(83036, 69335, 'no_lang_code', 'name', 'Bhungroo (India)'),
(83037, 69336, 'en', 'name', 'National Gallery of Arts'),
(83038, 69337, 'es', 'name', 'Instituto Nacional de Medicina Tropical'),
(83039, 69338, 'fr', 'name', 'Banque Nationale de GĆØnes'),
(83040, 69339, 'en', 'name', 'Namgyal Tantric College'),
(83041, 69339, 'hi', 'name', 'ą¤Øą¤¾ą¤®ą¤—ą„ą¤Æą¤¾ą¤² ą¤®ą„‹ą¤Øą¤¾ą¤øą„ą¤Ÿą„ą¤°ą„€'),
(83042, 69340, 'en', 'name', 'National Gugak Center'),
(83043, 69340, 'ko', 'name', '국립국악원'),
(83044, 69341, 'en', 'name', 'National Health Systems Resource Centre'),
(83045, 69342, 'en', 'name', 'National HIV/AIDS Secretariat'),
(83046, 69343, 'en', 'name', 'National Defense University'),
(83047, 69343, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž€įž¶įžšįž–įž¶įžšįž‡įž¶įžįž·'),
(83048, 69344, 'en', 'name', 'National Disability Rights Network'),
(83049, 69345, 'en', 'name', 'National Management Degree College'),
(83050, 69346, 'en', 'name', 'National Museum of History'),
(83051, 69346, 'zh', 'name', 'åœ‹ē«‹ę­·å²åšē‰©é¤Ø'),
(83052, 69347, 'en', 'name', 'National Institute for Defense Studies'),
(83053, 69347, 'ja', 'name', 'é˜²č”›ē ”ē©¶ę‰€'),
(83054, 69348, 'no_lang_code', 'name', 'Natama'),
(83055, 69349, 'en', 'name', 'National Organizations for Youth Safety'),
(83056, 69350, 'fr', 'name', 'Ecole Nationale d’IngĆ©nieurs – Abderhamane Baba TourĆ©'),
(83057, 69351, 'en', 'name', 'Employment Agency'),
(83058, 69352, 'en', 'name', 'Ptoukha Institute for Demography and Social Studies of the National Academy of Sciences of Ukraine'),
(83059, 69352, 'uk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гемографии Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… исслеГований имени М.Š’. ŠŸŃ‚ŃƒŃ…Šø ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Украины'),
(83060, 69353, 'en', 'name', 'National Security and Defense Council of Ukraine'),
(83061, 69353, 'uk', 'name', 'РаГа Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— безпеки і оборони України'),
(83062, 69354, 'en', 'name', 'National Youth Science Forum'),
(83063, 69355, 'en', 'name', 'National Institute of Arts'),
(83064, 69355, 'fr', 'name', 'l''Institut National des Arts'),
(83065, 69356, 'en', 'name', 'National Institute of Criminology'),
(83066, 69356, 'hu', 'name', 'OrszÔgos Kriminológiai Intézet'),
(83067, 69357, 'es', 'name', 'Instituto Nacional de Patrimonio Cultural'),
(83068, 69358, 'it', 'name', 'Museo Archeologico Nazionale di Napoli'),
(83069, 69358, 'en', 'name', 'National Archaeological Museum'),
(83070, 69359, 'en', 'name', 'National Institute of Ecology');
INSERT INTO `ror_settings` VALUES
(83071, 69360, 'es', 'name', 'Escuela Nacional Superior de Ballet'),
(83072, 69361, 'tr', 'name', 'Doğa Koruma Merkezi'),
(83073, 69361, 'en', 'name', 'Nature Conservation Centre'),
(83074, 69362, 'de', 'name', 'Nawi Graz'),
(83075, 69363, 'en', 'name', 'National Drug Addiction Center'),
(83076, 69364, 'es', 'name', 'Instituto Nacional de Lenguas IndĆ­genas'),
(83077, 69364, 'en', 'name', 'National Indigenous Languages Institute'),
(83078, 69365, 'en', 'name', 'Nehru Memorial Museum & Library'),
(83079, 69365, 'hi', 'name', 'ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤øą„ą¤®ą¤¾ą¤°ą¤• ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ और ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æ'),
(83080, 69366, 'no_lang_code', 'name', 'Neon Century (United Kingdom)'),
(83081, 69367, 'en', 'name', 'photo.circle'),
(83082, 69368, 'en', 'name', 'Nepal Water Conservation Foundation'),
(83083, 69369, 'en', 'name', 'Northshore Education Consortium'),
(83084, 69370, 'vi', 'name', 'Hį»c viện HĆ nh chĆ­nh Quốc gia'),
(83085, 69370, 'en', 'name', 'National Academy of Public Administration'),
(83086, 69371, 'en', 'name', 'New Museum'),
(83087, 69372, 'en', 'name', 'Out & Equal Workplace Advocates'),
(83088, 69373, 'en', 'name', 'Northern Ireland Civil Service'),
(83089, 69373, 'ga', 'name', 'StĆ”tseirbhĆ­s Thuaisceart Ɖireann'),
(83090, 69374, 'en', 'name', 'Novita'),
(83091, 69375, 'es', 'name', 'Planta Piloto de IngenierĆ­a QuĆ­mica'),
(83092, 69376, 'en', 'name', 'Northern Ireland Office'),
(83093, 69376, 'ga', 'name', 'Oifig Thuaisceart Ɖireann'),
(83094, 69377, 'en', 'name', 'New York City Bar Association'),
(83095, 69378, 'en', 'name', 'Northumbria Police'),
(83096, 69379, 'en', 'name', 'New York City Department of Transportation'),
(83097, 69380, 'en', 'name', 'New York Musical Festival'),
(83098, 69381, 'en', 'name', 'New Zealand Law Society'),
(83099, 69382, 'en', 'name', 'Newpark Music Centre'),
(83100, 69383, 'no_lang_code', 'name', 'Ngami Data Services (Botswana)'),
(83101, 69384, 'en', 'name', 'Poetry Society of America'),
(83102, 69385, 'no_lang_code', 'name', 'Office of the Ombudsman for Bermuda'),
(83103, 69386, 'en', 'name', 'Education Group Akron'),
(83104, 69386, 'tg', 'name', 'Аркон'),
(83105, 69387, 'en', 'name', 'Pearl Harbor Aviation Museum'),
(83106, 69388, 'en', 'name', 'PetroVietnam University'),
(83107, 69388, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Dįŗ§u khĆ­ Việt Nam'),
(83108, 69389, 'en', 'name', 'Omaha Community Foundation'),
(83109, 69390, 'en', 'name', 'Brunei Polytechnic'),
(83110, 69390, 'ms', 'name', 'Politeknik Brunei'),
(83111, 69391, 'en', 'name', 'Pham Van Dong University'),
(83112, 69391, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Phįŗ”m Văn Đồng'),
(83113, 69392, 'en', 'name', 'Polytechnic College Suriname'),
(83114, 69393, 'en', 'name', 'One Text Initiative'),
(83115, 69394, 'en', 'name', 'Mural Arts Philadelphia'),
(83116, 69395, 'es', 'name', 'Biblioteca Palafoxiana'),
(83117, 69396, 'en', 'name', 'Philippine Cancer Society'),
(83118, 69397, 'no_lang_code', 'name', 'Nikkei Business Publications (Japan)'),
(83119, 69397, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—„ēµŒ'),
(83120, 69398, 'en', 'name', 'Nile University'),
(83121, 69399, 'en', 'name', 'Pomfret School'),
(83122, 69400, 'no_lang_code', 'name', 'Nippon Television (Japan)'),
(83123, 69400, 'ja', 'name', 'ę—„ęœ¬ćƒ†ćƒ¬ćƒ“ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(83124, 69401, 'en', 'name', 'Palestinian Center for Research and Cultural Dialogue'),
(83125, 69401, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁŁ„Ų³Ų·ŁŠŁ†ŁŠ للدراسات وحوار'),
(83126, 69402, 'en', 'name', 'Open Society'),
(83127, 69402, 'cs', 'name', 'OtevřenĆ” Společnost'),
(83128, 69403, 'en', 'name', 'Niels Brock'),
(83129, 69404, 'en', 'name', 'Port Washington Public Library'),
(83130, 69405, 'en', 'name', 'Portland Center Stage at The Armory'),
(83131, 69406, 'no_lang_code', 'name', 'Procosi'),
(83132, 69407, 'en', 'name', 'Phu Yen University'),
(83133, 69407, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c PhĆŗ YĆŖn'),
(83134, 69408, 'es', 'name', 'Projazz Instituto Profesional'),
(83135, 69409, 'es', 'name', 'Pronatura Noroeste'),
(83136, 69410, 'en', 'name', 'Oregon Shakespeare Festival'),
(83137, 69411, 'en', 'name', 'Open Health Systems Laboratory'),
(83138, 69412, 'en', 'name', 'US Embassy in Turkmenistan'),
(83139, 69413, 'no_lang_code', 'name', 'Proton (Malaysia)'),
(83140, 69414, 'en', 'name', 'Office of National Intelligence'),
(83141, 69415, 'no_lang_code', 'name', 'Kosovo Telecom (Kosovo)'),
(83142, 69415, 'sq', 'name', 'Telekomi i Kosovƫs'),
(83143, 69415, 'sr', 'name', 'Телеком Косова'),
(83144, 69416, 'en', 'name', 'Rama Hospital & Research Centre'),
(83145, 69417, 'no_lang_code', 'name', 'Post Bellum'),
(83146, 69418, 'es', 'name', 'Ministerio PĆŗblico de la Defensa'),
(83147, 69419, 'en', 'name', 'Participatory Development Training Centre'),
(83148, 69419, 'lo', 'name', 'ąŗŖąŗ¹ąŗ™ąŗąŗ¶ąŗąŗ­ąŗ»ąŗšąŗ®ąŗ»ąŗ”ąŗąŗ²ąŗ™ąŗžąŗ±ąŗ”ąŗ—ąŗ°ąŗ™ąŗ²ąŗ—ąŗµą»ˆąŗ”ąŗµąŗŖą»ˆąŗ§ąŗ™ąŗ®ą»ˆąŗ§ąŗ”'),
(83149, 69420, 'en', 'name', 'Rochester Community and Technical College'),
(83150, 69421, 'no_lang_code', 'name', 'Praktika Publishing House'),
(83151, 69421, 'ru', 'name', 'ŠŸŃ€Š°ŠŗŃ‚ŠøŠŗŠ°'),
(83152, 69422, 'no_lang_code', 'name', 'PASSAsia (Sri Lanka)'),
(83153, 69423, 'en', 'name', 'Rodrigues Economic Chamber and Industry'),
(83154, 69424, 'en', 'name', 'Public Works Department Buildings and Roads'),
(83155, 69425, 'no_lang_code', 'name', 'PatentVantage (United States)'),
(83156, 69426, 'en', 'name', 'Ross School'),
(83157, 69427, 'cs', 'name', 'Archiv Hlavnƭho Města Prahy'),
(83158, 69427, 'en', 'name', 'Prague City Archives'),
(83159, 69428, 'en', 'name', 'Royal Education Council'),
(83160, 69429, 'en', 'name', 'Royal Film Commission'),
(83161, 69429, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ų§Ł„Ų§Ų±ŲÆŁ†ŁŠŲ© للأفلام'),
(83162, 69430, 'en', 'name', 'Royal Institute for Inter-Faith Studies'),
(83163, 69430, 'ar', 'name', 'المعهد Ų§Ł„Ł…Ł„ŁƒŁŠ للدراسات Ų§Ł„ŲÆŁŠŁ†ŁŠŲ©'),
(83164, 69431, 'en', 'name', 'Royal School of Administration'),
(83165, 69431, 'km', 'name', 'įžŸįž¶įž›įž¶įž—įž¼įž˜įž·įž“įŸ’įž‘įžšįžŠįŸ’įž‹įž”įž¶įž›'),
(83166, 69432, 'cs', 'name', 'ZÔkladní Ŕkola a PraktickÔ Ŕkola SvítÔní'),
(83167, 69433, 'en', 'name', 'Quebec Labrador Foundation'),
(83168, 69434, 'no_lang_code', 'name', 'Publicis Groupe (France)'),
(83169, 69435, 'en', 'name', 'Jerusalem Film and Television School'),
(83170, 69436, 'pt', 'name', 'Observatório do Meio Rural'),
(83171, 69437, 'en', 'name', 'Russian State University of Justice'),
(83172, 69437, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŸŃ€Š°Š²Š¾ŃŃƒŠ“ŠøŃ'),
(83173, 69438, 'en', 'name', 'Library of the Russian Academy of Sciences'),
(83174, 69438, 'ru', 'name', 'Библиотека Российской акаГемии наук'),
(83175, 69439, 'es', 'name', 'Universidad San Carlos'),
(83176, 69440, 'en', 'name', 'The Vietnam National Institute of Educational Sciences'),
(83177, 69440, 'vi', 'name', 'Viện Khoa hį»c GiĆ”o dỄc Việt Nam'),
(83178, 69441, 'en', 'name', 'San Diego State University, Imperial Valley Campus'),
(83179, 69442, 'en', 'name', 'Quip'),
(83180, 69443, 'en', 'name', 'Residency Unlimited'),
(83181, 69444, 'en', 'name', 'San Francisco County Transportation Authority'),
(83182, 69445, 'en', 'name', 'San Francisco Police Department'),
(83183, 69446, 'en', 'name', 'Kyiv Institute of Music. R. Glier'),
(83184, 69446, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ музики ім. Š .М.Глієра'),
(83185, 69447, 'en', 'name', 'San Gabriel Pomona Regional Center'),
(83186, 69448, 'ro', 'name', 'Asociația RomĆ¢nă de Artă Contemporană'),
(83187, 69449, 'en', 'name', 'Sanskriti Foundation'),
(83188, 69449, 'hi', 'name', 'ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ą¤æ'),
(83189, 69450, 'no_lang_code', 'name', 'RKB Mainichi Broadcasting (Japan)'),
(83190, 69450, 'ja', 'name', 'RKBęÆŽę—„ę”¾é€ę Ŗå¼ä¼šē¤¾'),
(83191, 69451, 'no_lang_code', 'name', 'Sanskriti Samvardhan Mandal'),
(83192, 69452, 'en', 'name', 'Rural Development Agency'),
(83193, 69452, 'lo', 'name', 'ąŗŖąŗ¹ąŗ™ąŗžąŗ±ąŗ”ąŗ—ąŗ°ąŗ™ąŗ²ąŗŠąŗ»ąŗ™ąŗ™ąŗ°ąŗšąŗ»ąŗ”'),
(83194, 69453, 'en', 'name', 'Saras Environment Consultant'),
(83195, 69454, 'ms', 'name', 'Sarawak Biodiversity Centre'),
(83196, 69455, 'en', 'name', 'Russian Museum of Ethnography'),
(83197, 69455, 'ru', 'name', 'Российский ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŃ‡ŠµŃŠŗŠøŠ¹ музей'),
(83198, 69456, 'en', 'name', 'St. Vincent and the Grenadines Community College'),
(83199, 69457, 'en', 'name', 'Russian State Archive of Literature and Arts'),
(83200, 69457, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ архив Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²Š°'),
(83201, 69458, 'no_lang_code', 'name', 'The Seattle Times (United States)'),
(83202, 69459, 'en', 'name', 'Second Air Division Memorial Library'),
(83203, 69460, 'sv', 'name', 'Svenska Hƶftprotesregistret'),
(83204, 69460, 'en', 'name', 'The Swedish Hip Arthroplasty Register'),
(83205, 69461, 'no_lang_code', 'name', 'Sedibeng TVET College'),
(83206, 69462, 'en', 'name', 'Salzburg Global Seminar'),
(83207, 69463, 'en', 'name', 'Sakhnin College'),
(83208, 69463, 'ar', 'name', 'ā€ŽŁƒŁ„ŁŠŲ© Ų³Ų®Ł†ŁŠŁ† Ł„ŲŖŲ£Ł‡ŁŠŁ„ Ų§Ł„Ł…Ų¹Ł„Ł…ŁŠŁ†'),
(83209, 69464, 'en', 'name', 'Satyajit Ray Film and Television Institute'),
(83210, 69465, 'en', 'name', 'Federal Senate'),
(83211, 69465, 'pt', 'name', 'Senado Federal'),
(83212, 69466, 'en', 'name', 'Seoul Central District Court'),
(83213, 69466, 'ko', 'name', 'ģ„œģšøģ¤‘ģ•™ģ§€ė°©ė²•ģ›'),
(83214, 69467, 'fr', 'name', 'Institut SupƩrieur PrivƩ Polytechnique'),
(83215, 69468, 'en', 'name', 'Saudi Heritage Preservation Society'),
(83216, 69469, 'en', 'name', 'Society for Education Welfare and Action Rural'),
(83217, 69470, 'no_lang_code', 'name', 'Shalom Hartman Institute'),
(83218, 69471, 'no_lang_code', 'name', '​Sevalanka Foundation'),
(83219, 69472, 'en', 'name', 'Sir Arthur Lewis Community College'),
(83220, 69473, 'en', 'name', 'Shakespeare Behind Bars'),
(83221, 69474, 'en', 'name', 'Sharma Centre for Heritage Education India'),
(83222, 69475, 'en', 'name', 'Shevchenko Institute of Literature'),
(83223, 69475, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š»Ń–Ń‚ŠµŃ€Š°Ń‚ŃƒŃ€Šø імені Тараса Шевченка ŠŠŠ України'),
(83224, 69476, 'en', 'name', 'School of Social Work Roshni Nilaya'),
(83225, 69477, 'pt', 'name', 'ClĆ­nica de Psiquiatria Psiquimei'),
(83226, 69478, 'en', 'name', 'Srishti Institute of Art Design and Technology'),
(83227, 69479, 'en', 'name', 'St. Vrain Valley School District'),
(83228, 69480, 'en', 'name', 'The School of Visual Theatre'),
(83229, 69480, 'he', 'name', 'בית ההפר ×œ×Ŗ×™××˜×Ø×•×Ÿ חזותי'),
(83230, 69481, 'es', 'name', 'Stael Ruffinelli de Ortiz'),
(83231, 69482, 'no_lang_code', 'name', 'Sri Caitanya Prema Samsthana'),
(83232, 69483, 'en', 'name', 'Siena School for Liberal Arts'),
(83233, 69484, 'en', 'name', 'Sri Lanka Foundation'),
(83234, 69485, 'no_lang_code', 'name', 'Standard Chartered (Singapore)'),
(83235, 69486, 'en', 'name', 'Sigmund Freud Museum'),
(83236, 69487, 'en', 'name', 'Slovak National Gallery'),
(83237, 69487, 'sk', 'name', 'SlovenskƔ nƔrodnƔ galƩria'),
(83238, 69488, 'es', 'name', 'Consejo Estatal Para la Cultura y las Artes de Hidalgo'),
(83239, 69489, 'en', 'name', 'Slovak Rectors“Conference'),
(83240, 69489, 'sk', 'name', 'SlovenskĆ” rektorskĆ” konferencia'),
(83241, 69490, 'en', 'name', 'Ukrainian State Employment Service Training Institute'),
(83242, 69490, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ піГготовки каГрів'),
(83243, 69491, 'no_lang_code', 'name', 'Shopping Live (Russia)'),
(83244, 69492, 'no_lang_code', 'name', 'Rolfes Henry (United States)'),
(83245, 69493, 'en', 'name', 'Instituto Cultural Steve Biko'),
(83246, 69494, 'en', 'name', 'The State Historical and Cultural Reserve "Trypillya Culture"'),
(83247, 69494, 'uk', 'name', 'Державний історико-ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½ŠøŠ¹ заповіГник Ā«Š¢Ń€ŠøŠæŃ–Š»ŃŒŃŃŒŠŗŠ° ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š°Ā»'),
(83248, 69495, 'en', 'name', 'State Institute for Art Studies'),
(83249, 69495, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²Š¾Š·Š½Š°Š½ŠøŃ'),
(83250, 69496, 'en', 'name', 'Salem City Schools'),
(83251, 69497, 'hi', 'name', 'Ramakrishna Mission Vidyalaya'),
(83252, 69498, 'it', 'name', 'Fondazione Studio Marangoni'),
(83253, 69499, 'en', 'name', 'State of Rhode Island General Assembly'),
(83254, 69500, 'en', 'name', 'Seattle Film Institute'),
(83255, 69501, 'no_lang_code', 'name', 'Studio Olgoj Chorchoj'),
(83256, 69502, 'no_lang_code', 'name', 'Tretyakov Gallery'),
(83257, 69502, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¢Ń€ŠµŃ‚ŃŒŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š“Š°Š»ŠµŃ€ŠµŃ'),
(83258, 69503, 'en', 'name', 'Seattle Psychoanalytic Society and Institute'),
(83259, 69504, 'en', 'name', 'Everyday Democracy'),
(83260, 69505, 'no_lang_code', 'name', 'Hearst (United States)'),
(83261, 69506, 'en', 'name', 'Supreme Court of the Republic of Slovenia'),
(83262, 69506, 'sl', 'name', 'Vrhovno sodiŔče Republike Slovenije'),
(83263, 69507, 'no_lang_code', 'name', 'Sullivan and Worcester (United States)'),
(83264, 69508, 'en', 'name', 'Surrey Police'),
(83265, 69509, 'en', 'name', 'Sussex Police'),
(83266, 69510, 'en', 'name', 'Swarnabhoomi Academy of Music'),
(83267, 69511, 'en', 'name', 'Swaziland National Trust Commission'),
(83268, 69512, 'no_lang_code', 'name', 'Sokrat'),
(83269, 69513, 'en', 'name', 'Solidarity and Action Against the HIV Infection in India'),
(83270, 69514, 'en', 'name', 'Sunraysia Institute of TAFE'),
(83271, 69515, 'no_lang_code', 'name', 'Tawata Productions (New Zealand)'),
(83272, 69516, 'no_lang_code', 'name', 'Sweekaar'),
(83273, 69517, 'fr', 'name', 'Centre Régional Songhaï'),
(83274, 69517, 'no_lang_code', 'name', 'Songhai'),
(83275, 69518, 'en', 'name', 'St. Scholastica''s College'),
(83276, 69519, 'en', 'name', 'Sonoma Ecology Center'),
(83277, 69520, 'no_lang_code', 'name', 'Mentaid'),
(83278, 69521, 'en', 'name', 'Taichung City Government'),
(83279, 69521, 'zh', 'name', 'å°äø­åø‚ę”æåŗœ'),
(83280, 69522, 'en', 'name', 'The Association of Boarding Schools'),
(83281, 69523, 'no_lang_code', 'name', 'TCG Nordica'),
(83282, 69524, 'en', 'name', 'Supreme Arbitration Court of the Russian Federation'),
(83283, 69524, 'ru', 'name', 'Š’Ń‹ŃŃˆŠøŠ¹ Арбитражный суГ Российской ФеГерации'),
(83284, 69525, 'no_lang_code', 'name', 'Clearwater Group (United States)'),
(83285, 69526, 'en', 'name', 'Taiwan Design Center'),
(83286, 69526, 'zh', 'name', 'å°ē£å‰µę„čØ­čØˆäø­åæƒ'),
(83287, 69527, 'en', 'name', 'The Beles Group'),
(83288, 69528, 'en', 'name', 'Te Wānanga o Raukawa'),
(83289, 69529, 'no_lang_code', 'name', 'Taiwan Futures Exchange (Taiwan)'),
(83290, 69529, 'zh', 'name', 'č‡ŗē£ęœŸč²Øäŗ¤ę˜“ę‰€'),
(83291, 69530, 'en', 'name', 'Southern Africa Nazarene University'),
(83292, 69531, 'en', 'name', 'The Cabell Brand Center'),
(83293, 69532, 'en', 'name', 'Royal Society for the Conservation of Nature'),
(83294, 69533, 'en', 'name', 'Caribbean Electric Utility Services Corporation'),
(83295, 69534, 'en', 'name', 'The Soar Foundation'),
(83296, 69535, 'en', 'name', 'Taiwan Miaoli District Court'),
(83297, 69535, 'zh', 'name', 'č‡ŗē£č‹—ę —åœ°ę–¹ę³•é™¢'),
(83298, 69536, 'en', 'name', 'The Center for Victims of Torture'),
(83299, 69537, 'en', 'name', 'United States Educational Foundation in Pakistan'),
(83300, 69538, 'en', 'name', 'Southern Association of Colleges and Schools'),
(83301, 69539, 'en', 'name', 'Taiwan Public Television Service Foundation'),
(83302, 69539, 'zh', 'name', 'č²”åœ˜ę³•äŗŗå…¬å…±é›»č¦–ę–‡åŒ–äŗ‹ę„­åŸŗé‡‘ęœƒ'),
(83303, 69540, 'en', 'name', 'Southern Environmental Law Center'),
(83304, 69541, 'en', 'name', 'Centre for Child Evaluation & Teaching'),
(83305, 69541, 'ar', 'name', 'Ł…Ų±ŁƒŲ² ŲŖŁ‚ŁˆŁŠŁ… ŁˆŲŖŲ¹Ł„ŁŠŁ… الطفل'),
(83306, 69542, 'lv', 'name', 'Austrumeiropas Politikas Pētījumu Centrs'),
(83307, 69542, 'en', 'name', 'Centre for Eastern European Policy Studies'),
(83308, 69543, 'en', 'name', 'Taiwan Shilin District Prosecutors Office'),
(83309, 69543, 'zh', 'name', 'č‡ŗē£å£«ęž—åœ°ę–¹ęŖ¢åÆŸē½²'),
(83310, 69544, 'en', 'name', 'Council on Higher Education'),
(83311, 69545, 'en', 'name', 'The Crucible'),
(83312, 69546, 'en', 'name', 'Youth Junction'),
(83313, 69547, 'en', 'name', 'Delegation of the European Union to the Kyrgyz Republic'),
(83314, 69548, 'en', 'name', 'Teller Madsen'),
(83315, 69549, 'en', 'name', 'Tajik State Institute of Languages'),
(83316, 69549, 'tg', 'name', 'Š”ŠžŠŠ˜ŠØŠšŠŠ”ŠŠ˜ Š”ŠŠ’Š›ŠŠ¢Š˜Š˜ Š—ŠŠ‘ŠžŠ©ŠžŠ˜ тоГикистон БА номи сотим Š£Š›Š£Š“Š—ŠžŠ”Š'),
(83317, 69550, 'en', 'name', 'The Elizabeth Foundation for the Arts'),
(83318, 69551, 'no_lang_code', 'name', 'GEDI Gruppo Editoriale (Italy)'),
(83319, 69551, 'it', 'name', 'Gruppo Editoriale L''Espresso'),
(83320, 69552, 'cs', 'name', 'Archiv VýtvarnĆ©ho UměnĆ­'),
(83321, 69552, 'en', 'name', 'The Fine Art Archive'),
(83322, 69553, 'no_lang_code', 'name', 'Nexstar Media Group (United States)'),
(83323, 69554, 'no_lang_code', 'name', 'Digital First Media (United States)'),
(83324, 69555, 'no_lang_code', 'name', 'Wijeya Newspapers (Sri Lanka)'),
(83325, 69556, 'es', 'name', 'Fundación Naturaleza y Hombre'),
(83326, 69557, 'no_lang_code', 'name', 'Yomiuri Group (Japan)'),
(83327, 69557, 'ja', 'name', 'čŖ­å£²ę–°čž'),
(83328, 69558, 'en', 'name', 'Geo Explore Foundation'),
(83329, 69559, 'no_lang_code', 'name', 'Men-Tsee-Khang'),
(83330, 69560, 'en', 'name', 'The Hindu Group (India)'),
(83331, 69561, 'en', 'name', 'Tripura State Pollution Control Board'),
(83332, 69562, 'en', 'name', 'Institute of Modern Knowledge named after A.M. Shirokova'),
(83333, 69562, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ ŃŃƒŃ‡Š°ŃŠ½Ń‹Ń… Š²ŠµŠ“Š°Ńž Ń–Š¼Ń А. М. Шырокава'),
(83334, 69562, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ современных знаний имени А. М. Широкова'),
(83335, 69563, 'en', 'name', 'Ahmad Dahlan School of Economics'),
(83336, 69563, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Ahmad Dahlan Jakarta'),
(83337, 69564, 'en', 'name', 'University of Trans-Disciplinary Health Sciences and Technology'),
(83338, 69565, 'en', 'name', 'The Judicial General Council of Mongolia'),
(83339, 69565, 'mn', 'name', 'Монгол Улсын Шүүхийн Ерөнхий Зөвлөл'),
(83340, 69566, 'en', 'name', 'American Jazz Institute'),
(83341, 69567, 'en', 'name', 'Tostan'),
(83342, 69568, 'en', 'name', 'The Arboretum at Flagstaff'),
(83343, 69569, 'no_lang_code', 'name', 'McClatchy (United States)'),
(83344, 69570, 'fr', 'name', 'SociĆ©tĆ© des Eiders de l’Arctique'),
(83345, 69570, 'en', 'name', 'The Arctic Eider Society'),
(83346, 69571, 'en', 'name', 'Tranby National Indigenous Adult Education and Training'),
(83347, 69572, 'en', 'name', 'The Mountain Institute'),
(83348, 69573, 'sq', 'name', 'Biblioteka Kombƫtare e Kosovƫs'),
(83349, 69573, 'en', 'name', 'National Library of Kosovo'),
(83350, 69573, 'sr', 'name', 'ŠŠ°Ń€Š¾Š“Š½Š° библиотека Косова'),
(83351, 69574, 'tr', 'name', 'Türk Eğitim Vakfı'),
(83352, 69575, 'en', 'name', 'Transparency International'),
(83353, 69576, 'no_lang_code', 'name', 'Rezonansi'),
(83354, 69576, 'ka', 'name', 'įƒ įƒ”įƒ–įƒįƒœįƒįƒœįƒ”įƒ˜'),
(83355, 69577, 'no_lang_code', 'name', 'TV Asahi (Japan)'),
(83356, 69577, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ćƒ¬ćƒ“ęœę—„'),
(83357, 69578, 'en', 'name', 'The Northwest School'),
(83358, 69579, 'en', 'name', 'United Nations Children''s Fund Kosovo'),
(83359, 69580, 'en', 'name', 'Toi Whakaari: NZ Drama School'),
(83360, 69581, 'en', 'name', 'Directorate of Scheduled Tribes Development Department'),
(83361, 69582, 'no_lang_code', 'name', 'Tulana'),
(83362, 69583, 'en', 'name', 'BMCC Tribeca Performing Arts Center'),
(83363, 69584, 'en', 'name', 'Union of Economists of Turkmenistan'),
(83364, 69585, 'en', 'name', 'Ukrainian Association of Specialists on Overcoming the Consequences of Traumatic Events'),
(83365, 69586, 'en', 'name', 'University Professional and Continuing Education Association'),
(83366, 69587, 'no_lang_code', 'name', 'Ivan Honchar Museum'),
(83367, 69587, 'uk', 'name', 'Музей Івана Гончара'),
(83368, 69588, 'en', 'name', 'United Nations University Institute on Computing and Society'),
(83369, 69588, 'zh', 'name', 'čÆåˆåœ‹å¤§å­øčØˆē®—čˆ‡ē¤¾ęœƒē ”ē©¶ę‰€'),
(83370, 69589, 'sq', 'name', 'Universiteti pƫr Biznes dhe Teknologji'),
(83371, 69589, 'en', 'name', 'University for Business and Technology'),
(83372, 69590, 'en', 'name', 'Ukrainian National Museum'),
(83373, 69591, 'en', 'name', 'United States Court of Appeals for the Ninth Circuit'),
(83374, 69592, 'en', 'name', 'United States Court of Appeals for the Seventh Circuit'),
(83375, 69593, 'en', 'name', 'United States Courts'),
(83376, 69594, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c TĆ i ChĆ­nh - Marketing'),
(83377, 69594, 'en', 'name', 'University of Finance - Marketing'),
(83378, 69595, 'fr', 'name', 'UniversitƩ des Lettres et des Sciences Humaines de Bamako'),
(83379, 69596, 'en', 'name', 'University of Swabi'),
(83380, 69596, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŲµŁˆŲ§ŲØŪŒā€¬ā€Ž'),
(83381, 69597, 'vi', 'name', 'Hį»™i NhĆ  bĆ”o Việt Nam'),
(83382, 69597, 'en', 'name', 'Vietnam Journalists Association'),
(83383, 69598, 'vi', 'name', 'Hį»c viện Ƃm nhįŗ”c Quốc gia Việt Nam'),
(83384, 69598, 'en', 'name', 'Viet Nam National Academy of Music'),
(83385, 69599, 'en', 'name', 'West African Research Center'),
(83386, 69600, 'vi', 'name', 'Hį»c viện Y Dược hį»c Cổ truyền Việt Nam'),
(83387, 69600, 'en', 'name', 'Viet Nam University Of Traditional Medicine'),
(83388, 69601, 'en', 'name', 'Urban Justice Center'),
(83389, 69602, 'en', 'name', 'Western States Center'),
(83390, 69603, 'en', 'name', 'U.S. Embassy in Burma'),
(83391, 69604, 'en', 'name', 'Westford Academy'),
(83392, 69605, 'no_lang_code', 'name', 'Voice of America (United States)'),
(83393, 69606, 'en', 'name', 'Whitecliffe College of Arts and Design'),
(83394, 69607, 'no_lang_code', 'name', 'Walker-Moffat (United States)'),
(83395, 69608, 'no_lang_code', 'name', 'Uttarakhand Seva Nidhi Paryavaran Shiksha Sansthan'),
(83396, 69609, 'en', 'name', 'Witness'),
(83397, 69610, 'en', 'name', 'Xcellon School of Business'),
(83398, 69611, 'en', 'name', 'Washington Glass School'),
(83399, 69612, 'en', 'name', 'WATCH'),
(83400, 69613, 'fi', 'name', 'Vamia'),
(83401, 69614, 'es', 'name', 'Administración Nacional de Usinas y Trasmisiones Eléctricas'),
(83402, 69614, 'no_lang_code', 'name', 'National Administration of Power Plants and Electrical Transmissions (Uruguay)'),
(83403, 69615, 'no_lang_code', 'name', 'The Washington Times (United States)'),
(83404, 69616, 'en', 'name', 'Zayed Higher Organization for Humanitarian Care and Special Needs'),
(83405, 69616, 'ar', 'name', 'Ų³Ų³Ų© زايد Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł…Ų¤Ų³Ų³Ų© زايد Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų±Ų¹Ų§ŁŠŲ© Ų§Ł„Ų„Ł†Ų³Ų§Ł†ŁŠŲ© ŁˆŲ§Ł„Ų„Ų­ŲŖŁŠŲ§Ų¬Ų§ŲŖ الخاصة'),
(83406, 69617, 'en', 'name', 'Watsonville Community Hospital'),
(83407, 69618, 'it', 'name', 'Opificio delle Pietre Dure'),
(83408, 69619, 'no_lang_code', 'name', 'Vashon Partners (United States)'),
(83409, 69620, 'es', 'name', 'Vasos Comunicantes'),
(83410, 69621, 'en', 'name', 'Ekaterinburg Academy of Contemporary Art'),
(83411, 69621, 'ru', 'name', 'Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ современного ŠøŃŠŗŃƒŃŃŃ‚ва'),
(83412, 69622, 'en', 'name', 'World Education Services'),
(83413, 69623, 'en', 'name', 'Xavier Institute of Communications'),
(83414, 69623, 'hi', 'name', 'ą¤œą¤¼ą„‡ą¤µą¤æą¤Æą¤° ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤•ą¤®ą„ą¤Æą„ą¤Øą¤æą¤•ą„‡ą¤¶ą¤Øą„ą¤ø'),
(83415, 69624, 'fr', 'name', 'Anciens Combattants Canada'),
(83416, 69624, 'en', 'name', 'Veterans Affairs Canada'),
(83417, 69625, 'en', 'name', 'Veterinarians Without Borders'),
(83418, 69625, 'fr', 'name', 'Vétérinaires Sans Frontières'),
(83419, 69626, 'en', 'name', 'World Policy Institute'),
(83420, 69627, 'vi', 'name', 'Tįŗ­p đoĆ n Bʰu chĆ­nh Viį»…n thĆ“ng Việt Nam'),
(83421, 69627, 'no_lang_code', 'name', 'Vietnam Posts and Telecommunications Group (Vietnam)'),
(83422, 69628, 'en', 'name', 'Victorian Bar'),
(83423, 69629, 'en', 'name', 'Youth Development Administration'),
(83424, 69629, 'zh', 'name', 'é’å¹“ē™¼å±•ē½²'),
(83425, 69630, 'en', 'name', 'Yunnan Vocational College of Mechanical and Electrical Technology'),
(83426, 69630, 'zh', 'name', 'äŗ‘å—ęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(83427, 69631, 'en', 'name', 'Zambia National Broadcasting Corporation'),
(83428, 69632, 'en', 'name', 'Wuhan College'),
(83429, 69633, 'en', 'name', 'Zanzibar School of Health'),
(83430, 69634, 'no_lang_code', 'name', 'WilderShares (United States)'),
(83431, 69635, 'en', 'name', 'Team Restoration Ministries'),
(83432, 69636, 'en', 'name', 'State Institute of Cultural Heritage of the Peoples of Turkmenistan'),
(83433, 69636, 'tk', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½Š¾Š³Š¾ Š½Š°ŃŠ»ŠµŠ“ŠøŃ нароГов Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŠøŃŃ‚ана'),
(83434, 69637, 'de', 'name', 'Jesuiten'),
(83435, 69638, 'en', 'name', 'Open Acting Academy'),
(83436, 69639, 'en', 'name', 'Tibetan Academy of Social Science'),
(83437, 69639, 'zh', 'name', 'č„æč—č‡Ŗę²»åŒŗē¤¾ä¼šē§‘å­¦é™¢'),
(83438, 69640, 'en', 'name', 'Austrian Foundation for Development Research'),
(83439, 69640, 'de', 'name', 'Ɩsterreichische Forschungsstiftung für Internationale Entwicklung'),
(83440, 69641, 'en', 'name', 'Bavarian National Museum'),
(83441, 69641, 'de', 'name', 'Bayerisches Nationalmuseum'),
(83442, 69642, 'de', 'name', 'Kommission für Geschichte und Kultur der Deutschen in Südosteuropa'),
(83443, 69643, 'no_lang_code', 'name', 'Viscovery Software (Austria)'),
(83444, 69644, 'de', 'name', 'Gesundheitszentrum Oberndorf'),
(83445, 69645, 'de', 'name', 'Gemeinschaftsklinikum Mittelrhein'),
(83446, 69646, 'no_lang_code', 'name', 'Stratec (Germany)'),
(83447, 69647, 'en', 'name', 'Vienna Institute for Nature Conservation & Analyses'),
(83448, 69648, 'no_lang_code', 'name', 'Keysight Technologies (Austria)'),
(83449, 69649, 'de', 'name', 'Gespag'),
(83450, 69650, 'en', 'name', 'Greenland National Museum & Archives'),
(83451, 69650, 'kl', 'name', 'Nunatta Katersugaasivia Allagaateqarfialu'),
(83452, 69651, 'da', 'name', 'Kroppedal Museum'),
(83453, 69652, 'en', 'name', 'Danish Institute at Athens'),
(83454, 69652, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ της Δανίας ĻƒĻ„Ī·Ī½ Αθήνα'),
(83455, 69653, 'en', 'name', 'Asiaq Greenland Survey'),
(83456, 69654, 'da', 'name', 'Landsorganisation af Kvindekrisecentre'),
(83457, 69655, 'it', 'name', 'Det Danske Institut i Rom - Accademia di Danimarca'),
(83458, 69656, 'da', 'name', 'Det Kongelige Nordiske Oldskriftselskab'),
(83459, 69656, 'no_lang_code', 'name', 'Royal Nordic Society of Antiquaries (Denmark)'),
(83460, 69657, 'da', 'name', 'Orionplanetarium'),
(83461, 69658, 'da', 'name', 'Tycho Brahe Planetarium'),
(83462, 69659, 'no_lang_code', 'name', 'VeterinƦrmedicinsk Industriforening'),
(83463, 69660, 'da', 'name', 'Dansk Filosofisk Selskab'),
(83464, 69661, 'no_lang_code', 'name', 'GTS (Denmark)'),
(83465, 69662, 'es', 'name', 'Plan Ceibal'),
(83466, 69663, 'es', 'name', 'Fundación Ciencias Exactas y Naturales'),
(83467, 69664, 'da', 'name', 'Museum Salling'),
(83468, 69665, 'no_lang_code', 'name', 'Nordic BioAnalyis (Sweden)'),
(83469, 69666, 'no_lang_code', 'name', 'Graphensic (Sweden)'),
(83470, 69667, 'da', 'name', 'Museum SĆønderjylland'),
(83471, 69668, 'no_lang_code', 'name', '1928 Diagnostics (Sweden)'),
(83472, 69669, 'no_lang_code', 'name', 'Greenely (Sweden)'),
(83473, 69670, 'no_lang_code', 'name', 'Greinon (Sweden)'),
(83474, 69671, 'no_lang_code', 'name', 'Blekinge Business Incubator (Sweden)'),
(83475, 69672, 'no_lang_code', 'name', 'Ekomarine Paint (Sweden)'),
(83476, 69673, 'no_lang_code', 'name', '2D Fab (Sweden)'),
(83477, 69674, 'no_lang_code', 'name', 'BnearIT (Sweden)'),
(83478, 69675, 'no_lang_code', 'name', 'Elforest Technologies (Sweden)'),
(83479, 69676, 'no_lang_code', 'name', '3Eflow (Sweden)'),
(83480, 69677, 'no_lang_code', 'name', 'Elways (Sweden)'),
(83481, 69678, 'no_lang_code', 'name', 'Juteborg (Sweden)'),
(83482, 69679, 'no_lang_code', 'name', 'Endovab Endovascular Development (Sweden)'),
(83483, 69680, 'no_lang_code', 'name', '4IT I (Sweden)'),
(83484, 69681, 'no_lang_code', 'name', 'Dignitana (Sweden)'),
(83485, 69682, 'sv', 'name', 'Kalmar LƤns Museum'),
(83486, 69683, 'no_lang_code', 'name', 'Brighter (Sweden)'),
(83487, 69684, 'en', 'name', 'East Sweden Energy Agency'),
(83488, 69684, 'sv', 'name', 'Energikontoret Ɩstergƶtland'),
(83489, 69685, 'no_lang_code', 'name', 'Brockmann Geomatics (Sweden)'),
(83490, 69686, 'no_lang_code', 'name', 'Adroit Science (Sweden)'),
(83491, 69687, 'no_lang_code', 'name', 'Agilent Technologies (Sweden)'),
(83492, 69688, 'no_lang_code', 'name', 'EnetjƤrn Natur (Sweden)'),
(83493, 69689, 'no_lang_code', 'name', 'EnginZyme (Sweden)'),
(83494, 69690, 'no_lang_code', 'name', 'Bryne (Sweden)'),
(83495, 69691, 'no_lang_code', 'name', 'Katam (Sweden)'),
(83496, 69692, 'no_lang_code', 'name', 'Enigio Time (Sweden)'),
(83497, 69693, 'no_lang_code', 'name', 'Aditus Science (Sweden)'),
(83498, 69694, 'no_lang_code', 'name', 'BTB Pharma (Sweden)'),
(83499, 69695, 'no_lang_code', 'name', 'Health Solutions (Sweden)'),
(83500, 69696, 'no_lang_code', 'name', 'European Willow Breeding (Sweden)'),
(83501, 69697, 'no_lang_code', 'name', 'BuildSafe (Sweden)'),
(83502, 69698, 'no_lang_code', 'name', 'Heliospectra (Sweden)'),
(83503, 69699, 'no_lang_code', 'name', 'Againity (Sweden)'),
(83504, 69700, 'no_lang_code', 'name', 'Evispot (Sweden)'),
(83505, 69701, 'no_lang_code', 'name', 'Burt (Sweden)'),
(83506, 69702, 'no_lang_code', 'name', 'Expektra (Sweden)'),
(83507, 69703, 'no_lang_code', 'name', 'Hexicon (Sweden)'),
(83508, 69704, 'sv', 'name', 'Byggherrarna Sverige'),
(83509, 69704, 'en', 'name', 'Swedish Construction Clients'),
(83510, 69705, 'no_lang_code', 'name', 'C-Green Technology (Sweden)'),
(83511, 69706, 'no_lang_code', 'name', 'Cascade Drives (Sweden)'),
(83512, 69707, 'no_lang_code', 'name', 'Ferroamp Elektronik (Sweden)'),
(83513, 69708, 'no_lang_code', 'name', 'Studi'),
(83514, 69709, 'no_lang_code', 'name', 'Cavis Technologies (Sweden)'),
(83515, 69710, 'no_lang_code', 'name', 'Klaria Pharma Holding (Sweden)'),
(83516, 69711, 'no_lang_code', 'name', 'Aili Innovations (Sweden)'),
(83517, 69712, 'no_lang_code', 'name', 'CellProtect Nordic Pharmaceuticals (Sweden)'),
(83518, 69713, 'en', 'name', 'Krinova Incubator & Science Park'),
(83519, 69714, 'no_lang_code', 'name', 'Fidesmo (Sweden)'),
(83520, 69715, 'no_lang_code', 'name', 'Chalmers Ventures (Sweden)'),
(83521, 69716, 'no_lang_code', 'name', 'Hytton Technologies (Sweden)'),
(83522, 69717, 'no_lang_code', 'name', 'Chromafora (Sweden)'),
(83523, 69718, 'no_lang_code', 'name', 'Flow Neuroscience (Sweden)'),
(83524, 69719, 'no_lang_code', 'name', 'Akuru Pharma (Sweden)'),
(83525, 69720, 'no_lang_code', 'name', 'Food Radar Systems (Sweden)'),
(83526, 69721, 'no_lang_code', 'name', 'I-Tech (Sweden)'),
(83527, 69722, 'sv', 'name', 'Kungliga Akademien fƶr de fria konsterna'),
(83528, 69722, 'en', 'name', 'Royal Academy of Fine Arts'),
(83529, 69723, 'no_lang_code', 'name', 'Iamip (Sweden)'),
(83530, 69724, 'no_lang_code', 'name', 'Framtidens Fƶretag (Sweden)'),
(83531, 69725, 'no_lang_code', 'name', 'Clean Motion (Sweden)'),
(83532, 69726, 'no_lang_code', 'name', 'AlzeCure Pharma (Sweden)'),
(83533, 69727, 'no_lang_code', 'name', 'Ampersand (Sweden)'),
(83534, 69728, 'sv', 'name', 'Fƶreningen Svenskt Flyg Intresse'),
(83535, 69728, 'en', 'name', 'Swedish Air Transport Society'),
(83536, 69729, 'no_lang_code', 'name', 'CloneOpt (Sweden)'),
(83537, 69730, 'sv', 'name', 'Fƶreningen Universitetsholdingbolag i Sverige'),
(83538, 69731, 'en', 'name', 'Angered Hospital'),
(83539, 69731, 'sv', 'name', 'Angereds NƤrsjukhus'),
(83540, 69732, 'no_lang_code', 'name', 'International Data Group (Sweden)'),
(83541, 69733, 'no_lang_code', 'name', 'Fƶretagsfabriken i Kronoberg (Sweden)'),
(83542, 69734, 'no_lang_code', 'name', 'Annexin Pharmaceuticals (Sweden)'),
(83543, 69735, 'no_lang_code', 'name', 'iGW (Sweden)'),
(83544, 69736, 'da', 'name', 'Arbejdermuseet'),
(83545, 69736, 'en', 'name', 'The Workers Museum'),
(83546, 69737, 'no_lang_code', 'name', 'Ilya Pharma (Sweden)'),
(83547, 69738, 'en', 'name', 'Funder'),
(83548, 69739, 'no_lang_code', 'name', 'Anolytech (Sweden)'),
(83549, 69740, 'sv', 'name', 'LƤnsstyrelsen VƤstra Gƶtalands lƤn'),
(83550, 69741, 'sv', 'name', 'Funka Nu'),
(83551, 69742, 'no_lang_code', 'name', 'Codemill (Sweden)'),
(83552, 69743, 'sv', 'name', 'Marin Miljƶanalys'),
(83553, 69743, 'no_lang_code', 'name', 'Marine Environmental Analysis (Sweden)'),
(83554, 69744, 'no_lang_code', 'name', 'Informa (Sweden)'),
(83555, 69745, 'no_lang_code', 'name', 'Arctic Business Incubator (Sweden)'),
(83556, 69746, 'no_lang_code', 'name', 'Gedea Biotech (Sweden)'),
(83557, 69747, 'no_lang_code', 'name', 'Gesynta Pharma (Sweden)'),
(83558, 69748, 'no_lang_code', 'name', 'Getica (Sweden)'),
(83559, 69749, 'no_lang_code', 'name', 'Glactone Pharma (Sweden)'),
(83560, 69750, 'no_lang_code', 'name', 'Gleechi (Sweden)'),
(83561, 69751, 'no_lang_code', 'name', 'Arne Jensen (Sweden)'),
(83562, 69752, 'sv', 'name', 'Industriella UtvecklingsCentra'),
(83563, 69753, 'no_lang_code', 'name', 'Lifesize (Sweden)'),
(83564, 69754, 'no_lang_code', 'name', 'Ascilion (Sweden)'),
(83565, 69755, 'no_lang_code', 'name', 'Lipigon Pharmaceuticals (Sweden)'),
(83566, 69756, 'no_lang_code', 'name', 'Inkubera (Sweden)'),
(83567, 69757, 'no_lang_code', 'name', 'Exensor Technology (Sweden)'),
(83568, 69758, 'no_lang_code', 'name', 'Globalworks (Sweden)'),
(83569, 69759, 'no_lang_code', 'name', 'Conspiro (Sweden)'),
(83570, 69760, 'no_lang_code', 'name', 'Atrogi (Sweden)'),
(83571, 69761, 'no_lang_code', 'name', 'Gnosco (Sweden)'),
(83572, 69762, 'no_lang_code', 'name', 'Innovation SkƄne (Sweden)'),
(83573, 69763, 'no_lang_code', 'name', 'Avantherm (Sweden)'),
(83574, 69764, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Sweden)'),
(83575, 69765, 'no_lang_code', 'name', 'InnoVentum (Sweden)'),
(83576, 69766, 'no_lang_code', 'name', 'Cortus Energy (Sweden)'),
(83577, 69767, 'sv', 'name', 'Avfallshantering Ɩstra Skaraborg'),
(83578, 69768, 'no_lang_code', 'name', 'Create (Sweden)'),
(83579, 69769, 'no_lang_code', 'name', 'Inossia (Sweden)'),
(83580, 69770, 'no_lang_code', 'name', 'AVL (Sweden)'),
(83581, 69771, 'no_lang_code', 'name', 'CytaCoat (Sweden)'),
(83582, 69772, 'no_lang_code', 'name', 'Meloq (Sweden)'),
(83583, 69773, 'no_lang_code', 'name', 'LumenRadio (Sweden)'),
(83584, 69774, 'no_lang_code', 'name', 'Berge (Sweden)'),
(83585, 69775, 'no_lang_code', 'name', 'Danpet (Sweden)'),
(83586, 69776, 'no_lang_code', 'name', 'LunaLEC (Sweden)'),
(83587, 69777, 'no_lang_code', 'name', 'Bergskraft Bergslagen (Sweden)'),
(83588, 69778, 'no_lang_code', 'name', 'Metrum (Sweden)'),
(83589, 69779, 'en', 'name', 'Big Science Suppliers Network'),
(83590, 69780, 'no_lang_code', 'name', 'DeviceRadio (Sweden)'),
(83591, 69781, 'no_lang_code', 'name', 'Dirac Research (Sweden)'),
(83592, 69782, 'no_lang_code', 'name', 'Bio-Works (Sweden)'),
(83593, 69783, 'no_lang_code', 'name', 'Bioendev (Sweden)'),
(83594, 69784, 'no_lang_code', 'name', 'Ideon Innovation (Sweden)'),
(83595, 69785, 'no_lang_code', 'name', 'Meva Energy (Sweden)'),
(83596, 69786, 'no_lang_code', 'name', 'PressCise (Sweden)'),
(83597, 69787, 'no_lang_code', 'name', 'Lund Science (Sweden)'),
(83598, 69788, 'no_lang_code', 'name', 'Biorecro (Sweden)'),
(83599, 69789, 'no_lang_code', 'name', 'Prindit (Sweden)'),
(83600, 69790, 'no_lang_code', 'name', 'Luxbright (Sweden)'),
(83601, 69791, 'no_lang_code', 'name', 'Profu (Sweden)'),
(83602, 69792, 'no_lang_code', 'name', 'Inuheat (Sweden)'),
(83603, 69793, 'no_lang_code', 'name', 'Qamcom Research and Technology (Sweden)'),
(83604, 69794, 'no_lang_code', 'name', 'Invisense (Sweden)'),
(83605, 69795, 'no_lang_code', 'name', 'Maestro (Sweden)'),
(83606, 69796, 'no_lang_code', 'name', 'Quintus Technologies (Sweden)'),
(83607, 69797, 'no_lang_code', 'name', 'SpectraCure (Sweden)'),
(83608, 69798, 'no_lang_code', 'name', 'QuizRR (Sweden)'),
(83609, 69799, 'no_lang_code', 'name', 'Radarbolaget (Sweden)'),
(83610, 69800, 'no_lang_code', 'name', 'Spectronic (Sweden)'),
(83611, 69801, 'sv', 'name', 'Marin Biogas'),
(83612, 69802, 'no_lang_code', 'name', 'Era (Sweden)'),
(83613, 69803, 'no_lang_code', 'name', 'Rantor (Sweden)'),
(83614, 69804, 'no_lang_code', 'name', 'EcoTech (Sweden)'),
(83615, 69805, 'no_lang_code', 'name', 'Mavenoid (Sweden)'),
(83616, 69806, 'no_lang_code', 'name', 'Mevia (Sweden)'),
(83617, 69807, 'no_lang_code', 'name', 'Sprint Bioscience (Sweden)'),
(83618, 69808, 'no_lang_code', 'name', 'Sweden Water Research (Sweden)'),
(83619, 69809, 'no_lang_code', 'name', 'ReceptorPharma (Sweden)'),
(83620, 69810, 'sv', 'name', 'Medeon'),
(83621, 69811, 'no_lang_code', 'name', 'Midsummer (Sweden)'),
(83622, 69812, 'no_lang_code', 'name', 'Medfield Diagnostics (Sweden)'),
(83623, 69813, 'no_lang_code', 'name', 'Swedish Adrenaline (Sweden)'),
(83624, 69814, 'no_lang_code', 'name', 'Medituner (Sweden)'),
(83625, 69815, 'no_lang_code', 'name', 'Mimerse (Sweden)'),
(83626, 69816, 'no_lang_code', 'name', 'RenFuel (Sweden)'),
(83627, 69817, 'en', 'name', 'Uppsala Innovation Centre'),
(83628, 69818, 'no_lang_code', 'name', 'Mimsi Materials (Sweden)'),
(83629, 69819, 'no_lang_code', 'name', 'ReVibe Energy (Sweden)'),
(83630, 69820, 'no_lang_code', 'name', 'UVElite (Sweden)'),
(83631, 69821, 'sv', 'name', 'Statens musikverk'),
(83632, 69821, 'en', 'name', 'Swedish Performing Arts Agency'),
(83633, 69822, 'sv', 'name', 'VA Syd'),
(83634, 69823, 'no_lang_code', 'name', 'Minc (Sweden)'),
(83635, 69824, 'no_lang_code', 'name', 'Sweheat & Cooling (Sweden)'),
(83636, 69825, 'sv', 'name', 'Adopticum'),
(83637, 69826, 'no_lang_code', 'name', 'Mindconnect (Sweden)'),
(83638, 69827, 'sv', 'name', 'Riksidrottsfƶrbundet'),
(83639, 69827, 'en', 'name', 'Swedish Sports Confederation'),
(83640, 69828, 'sv', 'name', 'BrƤcke Diakoni'),
(83641, 69829, 'no_lang_code', 'name', 'Ten Medical Design (Sweden)'),
(83642, 69830, 'sv', 'name', 'Carlanderska Sjukhuset'),
(83643, 69831, 'sv', 'name', 'Tesch-Ɩvermo stiftelsen'),
(83644, 69832, 'sv', 'name', 'VƤsttrafik'),
(83645, 69833, 'en', 'name', 'Mind Music Labs'),
(83646, 69834, 'no_lang_code', 'name', 'Veridict (Sweden)'),
(83647, 69835, 'no_lang_code', 'name', 'Molecular Fingerprint (Sweden)'),
(83648, 69836, 'no_lang_code', 'name', 'Vicore Pharma (Sweden)'),
(83649, 69837, 'no_lang_code', 'name', 'Saintpro (Sweden)'),
(83650, 69838, 'sv', 'name', 'Konjunkturinstitutet'),
(83651, 69838, 'en', 'name', 'National Institute of Economic Research'),
(83652, 69839, 'no_lang_code', 'name', 'Movexum (Sweden)'),
(83653, 69840, 'sv', 'name', 'Vetenskap I Skolan'),
(83654, 69841, 'en', 'name', 'Cleantech Scandinavia'),
(83655, 69842, 'no_lang_code', 'name', 'Sdiptech (Sweden)'),
(83656, 69843, 'no_lang_code', 'name', 'Vultus (Sweden)'),
(83657, 69844, 'no_lang_code', 'name', 'Seabased (Sweden)'),
(83658, 69845, 'no_lang_code', 'name', 'Thinfilm (Sweden)'),
(83659, 69846, 'no_lang_code', 'name', 'Semcon (Sweden)'),
(83660, 69847, 'no_lang_code', 'name', 'Nano Control (Sweden)'),
(83661, 69848, 'no_lang_code', 'name', 'Watty (Sweden)'),
(83662, 69849, 'no_lang_code', 'name', 'Sensefarm (Sweden)'),
(83663, 69850, 'no_lang_code', 'name', 'Wematter (Sweden)'),
(83664, 69851, 'no_lang_code', 'name', 'Torkapparater (Sweden)'),
(83665, 69852, 'no_lang_code', 'name', 'Sigrid Therapeutics (Sweden)'),
(83666, 69853, 'sv', 'name', 'WeMind'),
(83667, 69854, 'en', 'name', 'Sigtuna Foundation'),
(83668, 69854, 'sv', 'name', 'Sigtunastiftelsen'),
(83669, 69855, 'no_lang_code', 'name', 'Winfoor (Sweden)'),
(83670, 69856, 'no_lang_code', 'name', 'Sioo Wood Protection (Sweden)'),
(83671, 69857, 'sv', 'name', 'Datorn I Utbildningen'),
(83672, 69858, 'no_lang_code', 'name', 'WntResearch (Sweden)'),
(83673, 69859, 'en', 'name', 'World Bioenergy Association'),
(83674, 69860, 'en', 'name', 'National Museums of World Culture'),
(83675, 69860, 'sv', 'name', 'VƤrldskulturmuseerna'),
(83676, 69861, 'en', 'name', 'Transport Analysis'),
(83677, 69862, 'no_lang_code', 'name', 'Sixera Pharma (Sweden)'),
(83678, 69863, 'no_lang_code', 'name', 'Zenergy (Sweden)'),
(83679, 69864, 'sv', 'name', 'Svenska NationalkommittƩn fƶr kemi'),
(83680, 69865, 'no_lang_code', 'name', 'Zenicor Medical Systems (Sweden)'),
(83681, 69866, 'no_lang_code', 'name', 'Sol Voltaics (Sweden)'),
(83682, 69867, 'no_lang_code', 'name', 'Uniswed (Sweden)'),
(83683, 69868, 'no_lang_code', 'name', 'Solelia Greentech (Sweden)'),
(83684, 69869, 'sv', 'name', 'Forska Sverige'),
(83685, 69869, 'en', 'name', 'Research!Sweden'),
(83686, 69870, 'no_lang_code', 'name', 'Neosense Technologies (Sweden)'),
(83687, 69871, 'no_lang_code', 'name', 'SoletAer (Sweden)'),
(83688, 69872, 'sv', 'name', 'Fryshuset'),
(83689, 69873, 'no_lang_code', 'name', 'Zenuity (Sweden)'),
(83690, 69874, 'no_lang_code', 'name', 'NeoZeo (Sweden)'),
(83691, 69875, 'sv', 'name', 'HƄll Sverige Rent'),
(83692, 69875, 'en', 'name', 'Keep Sweden Tidy Foundation'),
(83693, 69876, 'no_lang_code', 'name', 'Double Bond Pharmaceutical (Sweden)'),
(83694, 69877, 'no_lang_code', 'name', 'No Picnic (Sweden)'),
(83695, 69878, 'no_lang_code', 'name', 'Dyenamo (Sweden)'),
(83696, 69879, 'no_lang_code', 'name', 'Strainlabs (Sweden)'),
(83697, 69880, 'no_lang_code', 'name', 'Solibro Research (Sweden)'),
(83698, 69881, 'no_lang_code', 'name', 'Solkompaniet (Sweden)'),
(83699, 69882, 'no_lang_code', 'name', 'Echandia Marine (Sweden)'),
(83700, 69883, 'no_lang_code', 'name', 'Heat Management (Sweden)'),
(83701, 69884, 'sv', 'name', 'Konsthantverkscentrum'),
(83702, 69885, 'no_lang_code', 'name', 'Stri (Sweden)'),
(83703, 69886, 'no_lang_code', 'name', 'Northvolt (Sweden)'),
(83704, 69887, 'no_lang_code', 'name', 'NORDIC BioEngineering (Sweden)'),
(83705, 69888, 'no_lang_code', 'name', 'Ecofiltration (Sweden)'),
(83706, 69889, 'sv', 'name', 'Svebio'),
(83707, 69890, 'no_lang_code', 'name', 'Noviga Research (Sweden)'),
(83708, 69891, 'sv', 'name', 'Ɩstergƶtland Museum'),
(83709, 69892, 'no_lang_code', 'name', 'Ocean Harvesting Technologies (Sweden)'),
(83710, 69893, 'no_lang_code', 'name', 'NordvƤstra SkƄnes Vatten och Avlopp (Sweden)'),
(83711, 69894, 'no_lang_code', 'name', 'OikosLab Future Solutions (Sweden)'),
(83712, 69895, 'no_lang_code', 'name', 'Lexplore (Sweden)'),
(83713, 69896, 'sv', 'name', 'Naturskyddsfƶreningen'),
(83714, 69896, 'en', 'name', 'Swedish Society for Nature Conservation'),
(83715, 69897, 'sv', 'name', 'Sunderby Folkhƶgskola'),
(83716, 69898, 'no_lang_code', 'name', 'Polar Light Technologies (Sweden)'),
(83717, 69899, 'no_lang_code', 'name', 'TeXtreme (Sweden)'),
(83718, 69900, 'sv', 'name', 'NyfƶretagarCentrum'),
(83719, 69901, 'no_lang_code', 'name', 'Sveriges Television (Sweden)'),
(83720, 69902, 'no_lang_code', 'name', 'Patriksson Communication (Sweden)'),
(83721, 69903, 'no_lang_code', 'name', 'Norrkƶping Visualisering (Sweden)'),
(83722, 69904, 'no_lang_code', 'name', 'Pelago Bioscience (Sweden)'),
(83723, 69905, 'sv', 'name', 'Polismyndigheten'),
(83724, 69905, 'en', 'name', 'Swedish Police Authority'),
(83725, 69906, 'no_lang_code', 'name', 'Peppy Pals (Sweden)'),
(83726, 69907, 'no_lang_code', 'name', 'Porslinsfabriken (Sweden)'),
(83727, 69908, 'sv', 'name', 'Svenskt Demenscentrum'),
(83728, 69908, 'en', 'name', 'Swedish Dementia Centre'),
(83729, 69909, 'no_lang_code', 'name', 'Pharem Biotech (Sweden)'),
(83730, 69910, 'en', 'name', 'Stockholm Makerspace'),
(83731, 69911, 'sv', 'name', 'Sveriges Olympiska KommittƩ'),
(83732, 69911, 'en', 'name', 'Swedish Olympic Committee'),
(83733, 69912, 'no_lang_code', 'name', 'Pilloxa (Sweden)'),
(83734, 69913, 'no_lang_code', 'name', 'PPAM Solkraft (Sweden)'),
(83735, 69914, 'en', 'name', 'Dalarna Science Park'),
(83736, 69915, 'no_lang_code', 'name', 'Predicare (Sweden)'),
(83737, 69916, 'sv', 'name', 'Tekniska Museet'),
(83738, 69916, 'en', 'name', 'The National Museum of Science and Technology'),
(83739, 69917, 'sv', 'name', 'Stockholms Stadsmission'),
(83740, 69918, 'no_lang_code', 'name', 'Governo (Sweden)'),
(83741, 69919, 'no_lang_code', 'name', 'Effecta (Sweden)'),
(83742, 69920, 'es', 'name', 'Colegio Ɓrula'),
(83743, 69921, 'en', 'name', 'Bridgeman Images'),
(83744, 69922, 'it', 'name', 'Ospedale "Floraspe Renzetti"'),
(83745, 69923, 'en', 'name', 'Athena Sustainable Materials Institute'),
(83746, 69924, 'en', 'name', 'College of St George'),
(83747, 69925, 'en', 'name', 'Automotive Council UK'),
(83748, 69926, 'en', 'name', 'Centre for Equity Studies'),
(83749, 69927, 'en', 'name', '1947 Partition Archive'),
(83750, 69928, 'en', 'name', 'Committee on Radioactive Waste Management'),
(83751, 69929, 'en', 'name', 'Committee on the Administration of Justice'),
(83752, 69930, 'en', 'name', 'Centre for Printing History and Culture'),
(83753, 69931, 'en', 'name', 'British Council for Offices'),
(83754, 69932, 'en', 'name', 'British Egg Industry Council'),
(83755, 69933, 'en', 'name', 'Beijing Administration Institute'),
(83756, 69933, 'zh', 'name', 'åŒ—äŗ¬č”Œę”æå­¦é™¢'),
(83757, 69934, 'en', 'name', 'British Safety Council'),
(83758, 69935, 'en', 'name', 'Africa Research Institute'),
(83759, 69936, 'no_lang_code', 'name', 'Cerberus Security Laboratories (United Kingdom)'),
(83760, 69937, 'en', 'name', 'African Migration and Development Policy Centre'),
(83761, 69938, 'en', 'name', 'Buckinghamshire Military Museum Trust'),
(83762, 69939, 'en', 'name', 'Chawton House'),
(83763, 69940, 'en', 'name', 'Aga Khan Foundation'),
(83764, 69941, 'en', 'name', 'Aga Khan Foundation'),
(83765, 69942, 'no_lang_code', 'name', 'C&A Foundation (Switzerland)'),
(83766, 69943, 'en', 'name', 'Consumer Council for Water'),
(83767, 69944, 'en', 'name', 'Cheshire Archives and Local Studies'),
(83768, 69945, 'en', 'name', 'Copenhagen Consensus Center'),
(83769, 69946, 'en', 'name', 'Campbell College'),
(83770, 69947, 'en', 'name', 'Airports Council International Europe'),
(83771, 69948, 'en', 'name', 'Education Authority'),
(83772, 69949, 'en', 'name', 'Council for Wales of Voluntary Youth Services'),
(83773, 69950, 'sv', 'name', 'Aleris HƤlsocentral BollnƤs'),
(83774, 69951, 'en', 'name', 'Chetham’s Library'),
(83775, 69952, 'en', 'name', 'Council on Energy, Environment and Water'),
(83776, 69953, 'no_lang_code', 'name', 'Child Watabaran Center'),
(83777, 69954, 'no_lang_code', 'name', 'Alomone Labs (Israel)'),
(83778, 69955, 'en', 'name', 'China Society for Urban Studies'),
(83779, 69956, 'en', 'name', 'Coventry and Warwickshire Partnership NHS Trust'),
(83780, 69957, 'en', 'name', 'Blackpool Better Start'),
(83781, 69958, 'en', 'name', 'Creative & Cultural Skills'),
(83782, 69959, 'en', 'name', 'China-Britain Business Council'),
(83783, 69960, 'en', 'name', 'Carnegie UK Trust'),
(83784, 69961, 'en', 'name', 'Botswana Predator Conservation Trust'),
(83785, 69962, 'en', 'name', 'Daedalus Trust'),
(83786, 69963, 'fr', 'name', 'Conseil DƩpartemental de la Creuse'),
(83787, 69964, 'en', 'name', 'Dag Hammarskjƶld Foundation'),
(83788, 69965, 'en', 'name', 'Cell and Gene Therapy Catapult'),
(83789, 69966, 'en', 'name', 'Virgin Care'),
(83790, 69967, 'no_lang_code', 'name', 'RxMP Therapeutics (United States)'),
(83791, 69968, 'en', 'name', 'CittĆ  di Castello Hospital'),
(83792, 69969, 'en', 'name', 'National Institute of Disaster Management'),
(83793, 69969, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ आपदा ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(83794, 69970, 'en', 'name', 'Danish Refugee Council'),
(83795, 69970, 'da', 'name', 'Dansk FlygtningehjƦlp'),
(83796, 69971, 'en', 'name', 'Shahid Beheshti Teacher Training College'),
(83797, 69971, 'fa', 'name', 'دانؓگاه تربیت معلم Ų“Ł‡ŪŒŲÆ ŲØŁ‡Ų“ŲŖŪŒ مؓهد'),
(83798, 69972, 'en', 'name', 'Center for Domestic Violence Prevention'),
(83799, 69973, 'en', 'name', 'Documentation Center of Cambodia'),
(83800, 69974, 'en', 'name', 'The Donaldson Trust'),
(83801, 69975, 'en', 'name', 'Dearne Valley College'),
(83802, 69976, 'en', 'name', 'University of Modern Sciences'),
(83803, 69976, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(83804, 69977, 'es', 'name', 'Dejusticia'),
(83805, 69978, 'nl', 'name', 'College voor de Rechten van de Mens'),
(83806, 69979, 'en', 'name', 'Delhi Foundation of Deaf Women'),
(83807, 69980, 'en', 'name', 'Center for Human Rights and Conflict Resolution'),
(83808, 69981, 'en', 'name', 'Dundee Heritage Trust'),
(83809, 69982, 'it', 'name', 'Cineteca di Bologna'),
(83810, 69983, 'no_lang_code', 'name', 'Valero Energy (United States)'),
(83811, 69984, 'no_lang_code', 'name', 'Dextra Laboratories (United Kingdom)'),
(83812, 69985, 'en', 'name', 'International Network of Civil Liberties Organizations'),
(83813, 69986, 'no_lang_code', 'name', 'GS Caltex (South Korea)'),
(83814, 69987, 'en', 'name', 'Center for Medical Technology Policy'),
(83815, 69988, 'en', 'name', 'Elderly Accommodation Counsel'),
(83816, 69989, 'en', 'name', 'Electric Infrastructure Security Council'),
(83817, 69990, 'no_lang_code', 'name', 'Enterprise Products (United States)'),
(83818, 69991, 'de', 'name', 'Forio'),
(83819, 69992, 'en', 'name', 'Essex Wildlife Trust'),
(83820, 69993, 'no_lang_code', 'name', 'OMV Petrom (Romania)'),
(83821, 69994, 'es', 'name', 'Abogados y Abogadas del NOA en Derechos Humanos y Estudios Sociales'),
(83822, 69994, 'en', 'name', 'Lawyers and Advocates of Northwest and Human Rights Studies Social'),
(83823, 69995, 'en', 'name', 'Fountainbridge Library'),
(83824, 69996, 'en', 'name', 'Guildhall Library'),
(83825, 69997, 'nl', 'name', 'Conseil EuropƩen de Remanufacture'),
(83826, 69997, 'en', 'name', 'European Remanufacturing Council'),
(83827, 69998, 'en', 'name', 'Friends of Cumbria Archives'),
(83828, 69999, 'en', 'name', 'Wigston College'),
(83829, 70000, 'en', 'name', 'Family Mediation Council'),
(83830, 70001, 'en', 'name', 'Felipe GonzƔlez Foundation'),
(83831, 70001, 'es', 'name', 'Fundación Felipe GonzÔlez'),
(83832, 70002, 'en', 'name', 'Feminist Archive North'),
(83833, 70003, 'it', 'name', 'Ospedale Ferdinando Veneziale di Isernia'),
(83834, 70004, 'en', 'name', 'The Fermanagh Trust'),
(83835, 70005, 'en', 'name', 'Institute of Environmental Management and Assessment'),
(83836, 70006, 'en', 'name', 'Fettes College'),
(83837, 70007, 'en', 'name', 'The General Teaching Council for Scotland'),
(83838, 70008, 'en', 'name', 'Institute of Translation and Interpreting'),
(83839, 70009, 'en', 'name', 'Hainan Modern Women and Children''s Hospital'),
(83840, 70009, 'zh', 'name', 'ęµ·å—ēŽ°ä»£å¦‡å„³å„æē«„åŒ»é™¢'),
(83841, 70010, 'de', 'name', 'Institut für Mittelstandsforschung'),
(83842, 70011, 'en', 'name', 'HAT Community Foundation'),
(83843, 70012, 'en', 'name', 'Glasgow Women''s Library'),
(83844, 70013, 'en', 'name', 'Havering College of Further and Higher Education'),
(83845, 70014, 'en', 'name', 'Haywood Academy'),
(83846, 70015, 'sv', 'name', 'VƄrdcentralen SilentzvƤgen');
INSERT INTO `ror_settings` VALUES
(83847, 70016, 'en', 'name', 'Institute of Epidemiology, Disease Control and Research'),
(83848, 70016, 'bn', 'name', 'ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦ą¦Ŗą¦æą¦”ą§‡ą¦®ą§‹ą¦²ą§‹ą¦œą¦æ ঔিজিজ ą¦•ą¦Øą§ą¦Ÿą§ą¦°ą§‹ą¦² ą¦ą¦Øą§ą¦” ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š আইইঔিসিআর'),
(83849, 70017, 'no_lang_code', 'name', 'Keleketla Library'),
(83850, 70018, 'en', 'name', 'Hymers College'),
(83851, 70019, 'en', 'name', 'High Life Highland'),
(83852, 70020, 'es', 'name', 'Archivo Histórico de la Policía Nacional'),
(83853, 70020, 'en', 'name', 'Guatemala National Police Archives'),
(83854, 70021, 'en', 'name', 'The Incorporated Council of Law Reporting for England & Wales'),
(83855, 70022, 'en', 'name', 'Environmental Council of the States'),
(83856, 70023, 'en', 'name', 'Irrigation Management Training Institute'),
(83857, 70024, 'en', 'name', 'Islamic Foundation for Ecology and Environmental Science'),
(83858, 70025, 'en', 'name', 'Institute for Society, Population and Nature'),
(83859, 70025, 'pt', 'name', 'Instituto Sociedade População Natureza'),
(83860, 70026, 'it', 'name', 'L''Istituto dei Sordi di Torino'),
(83861, 70026, 'en', 'name', 'Turin Institute for the Deaf'),
(83862, 70027, 'en', 'name', 'Japan Institute for Labour Policy and Training'),
(83863, 70027, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒę”æē­–ē ”ē©¶ćƒ»ē ”äæ®ę©Ÿę§‹'),
(83864, 70028, 'en', 'name', 'Indonesian Coffee and Cocoa Research Institute'),
(83865, 70029, 'en', 'name', 'Institute of Town Planners, Sri lanka'),
(83866, 70030, 'en', 'name', 'JNCL-NCLIS'),
(83867, 70031, 'en', 'name', 'Indus Resource Centre'),
(83868, 70032, 'no', 'name', 'Kongsberg sykehus'),
(83869, 70033, 'en', 'name', 'Linen Hall Library'),
(83870, 70034, 'en', 'name', 'Min-On Concert Association'),
(83871, 70034, 'ja', 'name', 'ę°‘äø»éŸ³ę„½å”ä¼š'),
(83872, 70035, 'no_lang_code', 'name', 'Minerva Laboratories (United Kingdom)'),
(83873, 70036, 'en', 'name', 'Mitchell Library'),
(83874, 70037, 'cs', 'name', 'Nemocnice KutnĆ” Hora'),
(83875, 70038, 'en', 'name', 'Money Advice Trust'),
(83876, 70039, 'no_lang_code', 'name', 'Kamukunji Paralegal Trust'),
(83877, 70040, 'no_lang_code', 'name', 'Lanka Hydraulic Institute (Sri Lanka)'),
(83878, 70041, 'en', 'name', 'National Film and Sound Archive of Australia'),
(83879, 70042, 'es', 'name', 'Hospital Las Higueras'),
(83880, 70043, 'en', 'name', 'National Videogame Museum'),
(83881, 70044, 'en', 'name', 'National Council for Voluntary Youth Services'),
(83882, 70045, 'es', 'name', 'Hospital Naval Almirante Adriazola de Talcahuano'),
(83883, 70046, 'en', 'name', 'Ouseburn Trust'),
(83884, 70047, 'en', 'name', 'National AIDS Trust'),
(83885, 70048, 'en', 'name', 'New Leaf Center'),
(83886, 70049, 'en', 'name', 'Pakistan Muslim Centre'),
(83887, 70050, 'en', 'name', 'Newbattle Abbey College'),
(83888, 70051, 'en', 'name', 'Palli Karma Sahayak Foundation'),
(83889, 70051, 'bn', 'name', 'ą¦Ŗą¦²ą§ą¦²ą§€ ą¦•ą¦°ą§ą¦®-ą¦øą¦¹ą¦¾ą§Ÿą¦• ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą§‡ą¦¶ą¦Øą„¤'),
(83890, 70052, 'fr', 'name', 'Archives Nationales du SƩnƩgal'),
(83891, 70052, 'en', 'name', 'National Archives of Senegal'),
(83892, 70053, 'en', 'name', 'Newcastle United Foundation'),
(83893, 70054, 'es', 'name', 'Instituto Nicaragüense de Cultura'),
(83894, 70055, 'en', 'name', 'Norfolk Rivers Trust'),
(83895, 70056, 'en', 'name', 'The Marie Collins Foundation'),
(83896, 70057, 'en', 'name', 'Pastoral Women''s Council'),
(83897, 70058, 'en', 'name', 'Marine Stewardship Council'),
(83898, 70059, 'en', 'name', 'North Devon Biosphere Foundation'),
(83899, 70060, 'es', 'name', 'Consejo Nacional de Evaluación de la Política de Desarrollo Social'),
(83900, 70060, 'en', 'name', 'National Council for the Evaluation of Social Development Policy'),
(83901, 70061, 'en', 'name', 'Northern Ireland Council for Integrated Education'),
(83902, 70062, 'en', 'name', 'National Library of Laos'),
(83903, 70062, 'lo', 'name', 'ąŗ«ą»ąŗŖąŗ°ą»ąŗøąŗ”ą»ąŗ«ą»ˆąŗ‡ąŗŠąŗ²ąŗ”'),
(83904, 70063, 'en', 'name', 'Northern Ireland Council for Voluntary Action'),
(83905, 70064, 'en', 'name', 'National Literacy Trust'),
(83906, 70065, 'en', 'name', 'Redress'),
(83907, 70066, 'en', 'name', 'Yorkshire Film Archive'),
(83908, 70067, 'en', 'name', 'Media Archive for Central England'),
(83909, 70068, 'fr', 'name', 'Laboratoire Philippe Auguste'),
(83910, 70069, 'en', 'name', 'Nubuke Foundation'),
(83911, 70070, 'en', 'name', 'Oak Field School and Sports College'),
(83912, 70071, 'es', 'name', 'Consejo de Monumentos Nacionales'),
(83913, 70071, 'en', 'name', 'National Monuments Council'),
(83914, 70072, 'en', 'name', 'Orkney Library and Archive'),
(83915, 70073, 'en', 'name', 'Rhondda Cynon Taff Library Service'),
(83916, 70074, 'en', 'name', 'Ossett Academy'),
(83917, 70075, 'en', 'name', 'Richmond School and Sixth Form College'),
(83918, 70076, 'en', 'name', 'Schumacher College'),
(83919, 70077, 'en', 'name', 'South African Council for Planners'),
(83920, 70078, 'en', 'name', 'Robert Gordon''s College'),
(83921, 70079, 'en', 'name', 'Private Sector Foundation Uganda'),
(83922, 70080, 'en', 'name', 'Scottish Council for Voluntary Organisations'),
(83923, 70081, 'en', 'name', 'Public Health Institute of Malawi'),
(83924, 70082, 'en', 'name', 'Royal College of Occupational Therapists'),
(83925, 70083, 'en', 'name', 'International Federation of Television Archives'),
(83926, 70084, 'en', 'name', 'Scottish Social Services Council'),
(83927, 70085, 'en', 'name', 'Royal College of Veterinary Surgeons'),
(83928, 70086, 'en', 'name', 'Libraries Tasmania'),
(83929, 70087, 'en', 'name', 'Royal College of Speech and Language Therapists'),
(83930, 70088, 'en', 'name', 'Seethapathy Clinic and Hospital'),
(83931, 70089, 'en', 'name', 'Mobox Foundation'),
(83932, 70090, 'en', 'name', 'Shaoguan Railway Hospital'),
(83933, 70090, 'zh', 'name', 'éŸ¶å…³åø‚é“č·ÆåŒ»é™¢'),
(83934, 70091, 'en', 'name', 'St. Francis Referral Hospital'),
(83935, 70092, 'en', 'name', 'Naval Dockyards Society'),
(83936, 70093, 'en', 'name', 'Textile Centre of Excellence'),
(83937, 70094, 'en', 'name', 'Sabah Environmental Trust'),
(83938, 70095, 'en', 'name', 'Thai-German Institute'),
(83939, 70095, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ą¹„ąø—ąø¢-เยอรดัน'),
(83940, 70096, 'it', 'name', 'Archivio di Stato di Roma'),
(83941, 70097, 'en', 'name', 'The Portico Library'),
(83942, 70098, 'en', 'name', 'Shropshire Archives'),
(83943, 70099, 'it', 'name', 'Archivio di Stato di Venezia'),
(83944, 70100, 'en', 'name', 'Ocean Tracking Network'),
(83945, 70101, 'en', 'name', 'Abaseen Foundation'),
(83946, 70102, 'en', 'name', 'Sing Up Foundation'),
(83947, 70103, 'en', 'name', 'Sir Bobby Robson Foundation'),
(83948, 70104, 'en', 'name', 'City of Stoke-on-Trent Sixth Form College'),
(83949, 70105, 'en', 'name', 'Samata Foundation'),
(83950, 70105, 'ne', 'name', 'समता ą¤«ą¤¾ą¤‰ą¤Øą„ą¤”ą„‡ą¤¶ą¤Ø'),
(83951, 70106, 'en', 'name', 'AfriChild Centre'),
(83952, 70107, 'en', 'name', 'Sussex Recovery College'),
(83953, 70108, 'en', 'name', 'Migration & Asylum Project'),
(83954, 70109, 'no_lang_code', 'name', 'Golden Agri-Resources (Singapore)'),
(83955, 70110, 'en', 'name', 'William Temple Foundation'),
(83956, 70111, 'en', 'name', 'Tim Parry Johnathan Ball Peace Foundation'),
(83957, 70112, 'en', 'name', 'Co-operative College'),
(83958, 70113, 'en', 'name', 'Time-Line computer Archive'),
(83959, 70114, 'en', 'name', 'The Textile Institute'),
(83960, 70115, 'en', 'name', 'Softwarica College'),
(83961, 70116, 'en', 'name', 'New City College'),
(83962, 70117, 'en', 'name', 'The Tree Council'),
(83963, 70118, 'en', 'name', 'Elders of Newscastle Upon Tyne'),
(83964, 70119, 'no', 'name', 'Trondheim Hjertesenter'),
(83965, 70120, 'en', 'name', 'UK Centre for Moisture in Buildings'),
(83966, 70121, 'en', 'name', 'Wonder Foundation'),
(83967, 70122, 'en', 'name', 'UK Green Building Council'),
(83968, 70123, 'en', 'name', 'Feminist Archive South'),
(83969, 70124, 'fr', 'name', 'Centre Hospitalier Universitaire of Butare'),
(83970, 70124, 'en', 'name', 'University Teaching Hospital of Butare'),
(83971, 70125, 'en', 'name', 'The Feminist Library'),
(83972, 70126, 'en', 'name', 'United Kingdom Council for Psychotherapy'),
(83973, 70127, 'en', 'name', 'Working Class Movement Library'),
(83974, 70128, 'no_lang_code', 'name', 'Value Chain Lab (United Kingdom)'),
(83975, 70129, 'en', 'name', 'Foundation for Civil Society'),
(83976, 70130, 'en', 'name', 'United Nations System Staff College'),
(83977, 70131, 'en', 'name', 'World Travel and Tourism Council'),
(83978, 70132, 'no_lang_code', 'name', 'Woundchek Laboratories (United Kingdom)'),
(83979, 70133, 'it', 'name', 'Ospedale Veris Delli Ponti Scorrano'),
(83980, 70134, 'en', 'name', 'Wrexham County Borough Museum & Archives'),
(83981, 70135, 'en', 'name', 'Wales Co-operative Centre'),
(83982, 70136, 'bs', 'name', 'OKC AbraÅ”ević'),
(83983, 70136, 'en', 'name', 'The Youth Cultural Centre AbraÅ”ević'),
(83984, 70137, 'fr', 'name', 'UniversitƩ des Sciences de la SantƩ'),
(83985, 70138, 'en', 'name', 'Wales Council for Voluntary Action'),
(83986, 70139, 'en', 'name', 'ZanaAfrica Foundation'),
(83987, 70140, 'en', 'name', 'Warwickshire Wildlife Trust'),
(83988, 70141, 'en', 'name', 'Institute of Group Analysis'),
(83989, 70142, 'en', 'name', 'The First People''s Hospital of Zhaoqing'),
(83990, 70142, 'zh', 'name', 'č‚‡åŗ†åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(83991, 70143, 'en', 'name', 'West Yorkshire Joint Services'),
(83992, 70144, 'en', 'name', 'Westmill Sustainable Energy Trust'),
(83993, 70145, 'en', 'name', 'Ways to Wellness'),
(83994, 70146, 'sk', 'name', 'HvezdÔreň a PlanetÔrium M.R. ŠtefÔnika'),
(83995, 70147, 'no_lang_code', 'name', 'Data:Lab Munich (Germany)'),
(83996, 70148, 'es', 'name', 'Agrupación Astronómica de la Safor'),
(83997, 70149, 'en', 'name', 'Submicron Heterostructures for Microelectronics Research and Engineering Center'),
(83998, 70149, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠŠ°ŃƒŃ‡Š½Š¾-технологический центр Š¼ŠøŠŗŃ€Š¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø Šø ŃŃƒŠ±Š¼ŠøŠŗŃ€Š¾Š½Š½Ń‹Ń… Š³ŠµŃ‚ŠµŃ€Š¾ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€ Российской акаГемии наук'),
(83999, 70150, 'en', 'name', 'Institute of Public Health Osijek-Baranja County'),
(84000, 70150, 'hr', 'name', 'Zavod za Javno Zdravstvo Osječko-Baranjske Županije'),
(84001, 70151, 'en', 'name', 'Centre for Cosmology and Particle Physics Phenomenology'),
(84002, 70152, 'sv', 'name', 'Nationellt Forensiskt Centrum'),
(84003, 70152, 'en', 'name', 'Swedish National Forensic Centre'),
(84004, 70153, 'es', 'name', 'Instituto Tecnológico Superior de Xalapa'),
(84005, 70154, 'en', 'name', 'Arizona School for the Arts'),
(84006, 70155, 'en', 'name', 'University of Neyshabur'),
(84007, 70155, 'fa', 'name', 'دانؓگاه Ł†ŪŒŲ“Ų§ŲØŁˆŲ±'),
(84008, 70156, 'en', 'name', 'Pasargad Institute for Advanced Innovative Solutions'),
(84009, 70156, 'fa', 'name', 'معهد ŲØŲ§Ų³Ų§Ų±Ų¬Ų§ŲÆ Ł„Ł„Ų­Ł„ŁˆŁ„ Ų§Ł„Ł…ŲØŲŖŁƒŲ±Ų© المتقدمة'),
(84010, 70157, 'en', 'name', 'International Space Science Institute - Beijing'),
(84011, 70157, 'zh', 'name', '国际空闓科学研究所-åŒ—äŗ¬'),
(84012, 70158, 'nl', 'name', 'Astronomisch Fysisch Onderzoek Nederland'),
(84013, 70159, 'en', 'name', 'Beijing Academy of Smart Economy'),
(84014, 70159, 'zh', 'name', 'åŒ—äŗ¬ę™ŗčƒ½ē»ęµŽē ”ē©¶é™¢'),
(84015, 70160, 'en', 'name', 'Iran Meteorological Organization'),
(84016, 70160, 'fa', 'name', 'سازمان Ł‡ŁˆŲ§Ų“Ł†Ų§Ų³ŪŒ Ų¬Ł…Ł‡ŁˆŲ±ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(84017, 70161, 'en', 'name', 'World Academy of Art and Science'),
(84018, 70162, 'en', 'name', 'Islamic Azad University Yasuj'),
(84019, 70162, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد یاسوج'),
(84020, 70163, 'ms', 'name', 'Universiti Xiamen Malaysia'),
(84021, 70163, 'en', 'name', 'Xiamen University Malaysia'),
(84022, 70164, 'en', 'name', 'Bennett University'),
(84023, 70165, 'en', 'name', 'Islamic Azad University, Buin-Zahra'),
(84024, 70166, 'en', 'name', 'Islamic Azad University, Langarud Branch'),
(84025, 70166, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł„Ł†ŚÆŲ±ŁˆŲÆ'),
(84026, 70167, 'en', 'name', 'Yantai Automobile Engineering Professional College'),
(84027, 70167, 'zh', 'name', 'ēƒŸå°ę±½č½¦å·„ēØ‹čŒäøšå­¦é™¢'),
(84028, 70168, 'en', 'name', 'Leeds College of Building'),
(84029, 70169, 'en', 'name', 'In-Q-Tel'),
(84030, 70170, 'en', 'name', 'QuSoft'),
(84031, 70171, 'de', 'name', 'Institut Kurz'),
(84032, 70172, 'en', 'name', 'Chaudhary Ranbir Singh University'),
(84033, 70172, 'hi', 'name', 'ą¤šą„Œą¤§ą¤°ą„€ ą¤°ą¤£ą¤¬ą„€ą¤° सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(84034, 70173, 'en', 'name', 'Condensed Matter Physics Research Center'),
(84035, 70174, 'en', 'name', 'Laboratory of Excellence for Financial Regulation'),
(84036, 70175, 'en', 'name', 'Joint Institute for Computational Sciences'),
(84037, 70176, 'fr', 'name', 'Centre de Recherche NuclĆ©aire d’Alger'),
(84038, 70176, 'ar', 'name', 'Ł…Ų±ŁƒŲ² البحث Ų§Ł„Ł†ŁˆŁˆŁŠ بالجزائر'),
(84039, 70177, 'en', 'name', 'China Automotive Engineering Research Institute'),
(84040, 70177, 'zh', 'name', 'äø­å›½ę±½č½¦å·„ēØ‹ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(84041, 70178, 'en', 'name', 'National Laboratory for Superconductivity'),
(84042, 70178, 'zh', 'name', 'č¶…åÆ¼å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(84043, 70179, 'no_lang_code', 'name', 'Engineering Technologies and Developments (Ukraine)'),
(84044, 70180, 'en', 'name', 'Institute of History of Mediterranean Europe'),
(84045, 70180, 'it', 'name', 'Istituto di Storia dell''Europa Mediterranea'),
(84046, 70181, 'en', 'name', 'Institute for International Legal Studies'),
(84047, 70181, 'it', 'name', 'Istituto di Studi Giuridici Internazionali'),
(84048, 70182, 'en', 'name', 'Institute of Biomembranes, Bioenergetics and Molecular Biotechnologies'),
(84049, 70182, 'it', 'name', 'Istituto di Biomembrane, Bioenergetica e Biotecnologie Molecolari'),
(84050, 70183, 'en', 'name', 'Institute for the Study of Regionalism, Federalism and Self-Government'),
(84051, 70183, 'it', 'name', 'Istituto di Studi sui Sistemi Regionali Federali e sulle Autonomie ''''Massimo Severo Giannini'''''),
(84052, 70184, 'it', 'name', 'Istituto di Studi sul Mediterraneo Antico'),
(84053, 70185, 'en', 'name', 'Institute of Acoustics and Sensors "Orso Mario Corbino"'),
(84054, 70185, 'it', 'name', 'Istituto di Acustica e Sensoristica ā€œOrso Mario Corbinoā€'),
(84055, 70186, 'en', 'name', 'Institute for Sustainable Plant Protection'),
(84056, 70186, 'it', 'name', 'Istituto per la Protezione Sostenibile delle Piante'),
(84057, 70187, 'de', 'name', 'Zentrum für Seelische Gesundheit'),
(84058, 70188, 'en', 'name', 'Institute for Research on Engines'),
(84059, 70188, 'it', 'name', 'Istituto Motori'),
(84060, 70189, 'it', 'name', 'Opera del Vocabolario Italiano'),
(84061, 70190, 'en', 'name', 'Institute of Chemistry of Molecular Recognition'),
(84062, 70190, 'it', 'name', 'Istituto di Chimica del Riconoscimento Molecolare'),
(84063, 70191, 'en', 'name', 'Institute for Computational Linguistics ā€œA. Zampolliā€'),
(84064, 70191, 'it', 'name', 'Istituto di Linguistica Computazionale "A. Zampolli"'),
(84065, 70192, 'it', 'name', 'Istituto per il Lessico Intellettuale Europeo e la Storia delle Idee'),
(84066, 70193, 'it', 'name', 'Istituto di Metodologie Chimiche'),
(84067, 70194, 'en', 'name', 'Institute for Archaeological and Monumental Heritage'),
(84068, 70194, 'it', 'name', 'Istituto per i Beni Archeologici e Monumentali'),
(84069, 70195, 'en', 'name', 'Institute of Polymers, Composites and Biomaterials'),
(84070, 70195, 'it', 'name', 'Istituto dei Polimeri, Compositi e Biomateriali'),
(84071, 70196, 'en', 'name', 'Institute for Research on Innovation and Services for Development'),
(84072, 70196, 'it', 'name', 'Istituto di Ricerca su Innovazione e Servizi per lo Sviluppo'),
(84073, 70197, 'en', 'name', 'Institute for the Conservation and Valorization of Cultural Heritage'),
(84074, 70197, 'it', 'name', 'Istituto per la Conservazione e la Valorizzazione dei Beni Culturali'),
(84075, 70198, 'en', 'name', 'Institute of Environmental Geology and Geoengineering'),
(84076, 70198, 'it', 'name', 'Istituto di Geologia Ambientale e Geoingegneria'),
(84077, 70199, 'en', 'name', 'Indira Gandhi Delhi Technical University for Women'),
(84078, 70200, 'it', 'name', 'Istituto di Ricerca sulla Crescita Economica Sostenibile'),
(84079, 70200, 'en', 'name', 'Research Institute on Sustainable Economic Growth'),
(84080, 70201, 'en', 'name', 'Institute for Agricultural and Earthmoving Machines'),
(84081, 70201, 'it', 'name', 'Istituto per le Macchine Agricole e Movimento Terra'),
(84082, 70202, 'en', 'name', 'Institute for the Dynamics of Environmental Processes'),
(84083, 70202, 'it', 'name', 'Istituto per la Dinamica dei Processi Ambientali'),
(84084, 70203, 'en', 'name', 'Institute for Research on Population and Social Policies'),
(84085, 70203, 'it', 'name', 'Istituto di Ricerche sulla Popolazione e le Politiche Sociali'),
(84086, 70204, 'en', 'name', 'Institute for Technologies Applied to Cultural Heritage'),
(84087, 70204, 'it', 'name', 'Istituto per le Tecnologie Applicate ai Beni Culturali'),
(84088, 70205, 'en', 'name', 'Construction Technologies Institute'),
(84089, 70205, 'it', 'name', 'Istituto per le Tecnologie della Costruzione'),
(84090, 70206, 'fr', 'name', 'Institut de Recherche en SantĆ©, de Surveillance ƉpidĆ©miologique et de Formation'),
(84091, 70206, 'en', 'name', 'Institute of Health Research, Epidemiological Surveillance and Training'),
(84092, 70207, 'no_lang_code', 'name', 'Ajelis (France)'),
(84093, 70208, 'no_lang_code', 'name', 'Alcis Sports (India)'),
(84094, 70209, 'fr', 'name', 'Clarte'),
(84095, 70210, 'no_lang_code', 'name', 'AlyXan (France)'),
(84096, 70211, 'fr', 'name', 'Centre Pompidou'),
(84097, 70212, 'no_lang_code', 'name', 'Ariamis (France)'),
(84098, 70213, 'fr', 'name', 'Centre FranƧais de Recherche en Sciences Sociales'),
(84099, 70213, 'cs', 'name', 'Francouzský Ćŗstav pro výzkum ve společenských vědĆ”ch'),
(84100, 70213, 'en', 'name', 'French Research Center in Humanities and Social Sciences'),
(84101, 70214, 'no_lang_code', 'name', 'Cliris (Switzerland)'),
(84102, 70215, 'no_lang_code', 'name', 'Ginger (France)'),
(84103, 70215, 'fr', 'name', 'Groupe Ginger'),
(84104, 70216, 'no_lang_code', 'name', 'Fealinx (France)'),
(84105, 70217, 'no_lang_code', 'name', 'Axenis (France)'),
(84106, 70218, 'no_lang_code', 'name', 'Dendris (France)'),
(84107, 70219, 'fr', 'name', 'Cereep Ecotron Ǝle-de-France'),
(84108, 70220, 'no_lang_code', 'name', 'Cooltech Applications (France)'),
(84109, 70221, 'no_lang_code', 'name', 'Deveryware (France)'),
(84110, 70222, 'no_lang_code', 'name', 'Cythelia (France)'),
(84111, 70223, 'no_lang_code', 'name', 'Ecome (France)'),
(84112, 70224, 'no_lang_code', 'name', 'Ɖolane (France)'),
(84113, 70225, 'no_lang_code', 'name', 'Ecoat (France)'),
(84114, 70226, 'no_lang_code', 'name', 'Idhelio (France)'),
(84115, 70227, 'it', 'name', 'Associazione Radioamatori Italiani'),
(84116, 70228, 'no_lang_code', 'name', 'Elicityl (France)'),
(84117, 70229, 'no_lang_code', 'name', 'Eligo Bioscience (France)'),
(84118, 70230, 'no_lang_code', 'name', 'Imaxio (France)'),
(84119, 70231, 'no_lang_code', 'name', 'Elveflow (France)'),
(84120, 70232, 'fr', 'name', 'Laboratoire de GƩnie Civil, Diagnostic et DurabilitƩ'),
(84121, 70233, 'no_lang_code', 'name', 'Innodura (France)'),
(84122, 70234, 'fr', 'name', 'HƩmostase et Dynamique Cellulaire Vasculaire'),
(84123, 70235, 'en', 'name', 'Health Services and Performance Research Laboratory'),
(84124, 70236, 'fr', 'name', 'Unité de Recherche Technologie et Analyses Laitières'),
(84125, 70237, 'en', 'name', 'Southern Technical University'),
(84126, 70237, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„Ų¬Ł†ŁˆŲØŁŠŲ©'),
(84127, 70238, 'en', 'name', 'Runway of Dreams Foundation'),
(84128, 70239, 'sv', 'name', 'Swerim'),
(84129, 70240, 'en', 'name', 'Center for High Pressure Science & Technology Advanced Research'),
(84130, 70240, 'zh', 'name', 'åŒ—äŗ¬é«˜åŽ‹ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(84131, 70241, 'en', 'name', 'Center for High Pressure Science & Technology Advanced Research'),
(84132, 70241, 'zh', 'name', 'åŒ—äŗ¬é«˜åŽ‹ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(84133, 70242, 'no_lang_code', 'name', 'Prime Discoveries (United States)'),
(84134, 70243, 'fr', 'name', 'Institut des Hautes Ɖtudes du MinistĆØre de l''IntĆ©rieur'),
(84135, 70244, 'no_lang_code', 'name', 'Unilever (France)'),
(84136, 70245, 'no_lang_code', 'name', 'Lumibird (France)'),
(84137, 70246, 'no_lang_code', 'name', 'Kereval (France)'),
(84138, 70247, 'no_lang_code', 'name', 'Kontron (France)'),
(84139, 70248, 'fr', 'name', 'Laboratoire d''Anthropologie et de Psychologie Cognitives et Sociales'),
(84140, 70249, 'no_lang_code', 'name', 'Eau de Paris (France)'),
(84141, 70250, 'fr', 'name', 'Laboratoire ArchƩomatƩriaux et PrƩvision de l''AltƩration'),
(84142, 70251, 'fr', 'name', 'Laboratoire D''Ʃtude des RƩsidus et Contaminants Dans les Aliments'),
(84143, 70252, 'fr', 'name', 'Laboratoire Structure et Dynamique par RƩsonance MagnƩtique'),
(84144, 70253, 'no_lang_code', 'name', 'Lingua et Machina (France)'),
(84145, 70254, 'no_lang_code', 'name', 'Evosens (France)'),
(84146, 70255, 'no_lang_code', 'name', 'Nokia (France)'),
(84147, 70256, 'no_lang_code', 'name', 'SilMach (France)'),
(84148, 70257, 'no_lang_code', 'name', 'Platod (France)'),
(84149, 70258, 'no_lang_code', 'name', 'Pragma Therapeutics (France)'),
(84150, 70259, 'no_lang_code', 'name', 'Palumed (France)'),
(84151, 70260, 'no_lang_code', 'name', 'DATA4 (France)'),
(84152, 70261, 'no_lang_code', 'name', 'Sysnav (France)'),
(84153, 70262, 'no_lang_code', 'name', 'Rouillard (Canada)'),
(84154, 70263, 'no_lang_code', 'name', 'Orphelia Pharma (France)'),
(84155, 70264, 'no_lang_code', 'name', 'Tekceleo (France)'),
(84156, 70265, 'en', 'name', 'Biology of Infection'),
(84157, 70265, 'fr', 'name', 'DƩpartement Biologie Cellulaire et Infection'),
(84158, 70266, 'en', 'name', 'Indian Institute of Information Technology, Pune'),
(84159, 70266, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø,ą¤Ŗą„ą¤£ą„‡'),
(84160, 70267, 'en', 'name', 'Methodology and Quality of Life Unit in Oncology'),
(84161, 70267, 'fr', 'name', 'UnitƩ de MƩthodologie et de QualitƩ de Vie en CancƩrologie'),
(84162, 70268, 'en', 'name', '21st Century Education Research Institute'),
(84163, 70268, 'zh', 'name', '21世纪教育研究院'),
(84164, 70269, 'en', 'name', '9to5'),
(84165, 70270, 'pt', 'name', 'ANDI'),
(84166, 70270, 'fr', 'name', 'ANDI – Comunicación y Derechos'),
(84167, 70271, 'en', 'name', 'A Better Balance'),
(84168, 70272, 'en', 'name', 'Abhivyakti Media for Development'),
(84169, 70273, 'pt', 'name', 'Associação Brasileira de Pesquisadores Negros'),
(84170, 70274, 'en', 'name', 'ACCE Institute'),
(84171, 70275, 'en', 'name', 'Action Canada for Sexual Health and Rights'),
(84172, 70276, 'en', 'name', 'Anveshi Research Centre for Women''s Studies'),
(84173, 70277, 'en', 'name', 'Action Center on Race and the Economy'),
(84174, 70278, 'en', 'name', 'Social Science Forum'),
(84175, 70278, 'ar', 'name', 'منتدى Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(84176, 70279, 'en', 'name', 'Action Health Incorporated'),
(84177, 70280, 'en', 'name', 'Arab Education Forum'),
(84178, 70280, 'ar', 'name', 'الملتقى Ų§Ł„ŲŖŲ±ŲØŁˆŁŠ Ų§Ł„Ų¹Ų±ŲØŁŠ'),
(84179, 70281, 'en', 'name', 'Adaptive Design Association'),
(84180, 70282, 'af', 'name', 'Afesis-Corplan'),
(84181, 70283, 'en', 'name', 'Africa Centre for Energy Policy'),
(84182, 70284, 'en', 'name', 'Arab Educational Information Network'),
(84183, 70284, 'ar', 'name', 'ؓبكة Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„ŲŖŲ±ŲØŁˆŁŠŲ©'),
(84184, 70285, 'en', 'name', 'Arab Institute for Human Rights'),
(84185, 70285, 'ar', 'name', 'معهد Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ų­Ł‚ŁˆŁ‚ الانسان'),
(84186, 70286, 'en', 'name', 'African Studies Association of India'),
(84187, 70287, 'en', 'name', 'Arab NGO Network for Development'),
(84188, 70287, 'ar', 'name', 'ؓبكة المنظمات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© غير Ų§Ł„Ų­ŁƒŁˆŁ…ŁŠŲ© Ł„Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(84189, 70288, 'en', 'name', 'African Institute for Leaders and Leadership'),
(84190, 70289, 'en', 'name', 'African Woman and Child Feature Service'),
(84191, 70290, 'en', 'name', 'Ag Innovations'),
(84192, 70291, 'en', 'name', 'Al-Ahram Center for Political and Strategic Studies'),
(84193, 70291, 'ar', 'name', 'Ł…Ų±ŁƒŲ² الأهرام للدراسات Ų§Ł„Ų³ŁŠŲ§Ų³ŁŠŲ© ŁˆŲ§Ł„Ų§Ų³ŲŖŲ±Ų§ŲŖŁŠŲ¬ŁŠŲ©'),
(84194, 70292, 'es', 'name', 'Red Argentina de Instituciones de MicrocrƩdito'),
(84195, 70293, 'en', 'name', 'Albuquerque Academy'),
(84196, 70294, 'en', 'name', 'Arise Citizens'' Policy Project'),
(84197, 70295, 'en', 'name', 'Arkansas Community Colleges'),
(84198, 70296, 'en', 'name', 'Align Economy Environment Equity'),
(84199, 70297, 'en', 'name', 'All India Artisans and Craftworkers Welfare Association'),
(84200, 70298, 'no_lang_code', 'name', 'ArteEast'),
(84201, 70299, 'en', 'name', 'Alliance for a Just Society'),
(84202, 70300, 'en', 'name', 'Article 19'),
(84203, 70300, 'pt', 'name', 'Artigo 19'),
(84204, 70301, 'en', 'name', 'Alliance for Justice'),
(84205, 70302, 'en', 'name', 'Article 19'),
(84206, 70303, 'en', 'name', 'The Allaince Advancing Regional Equity'),
(84207, 70304, 'en', 'name', 'Arts & Science Council'),
(84208, 70305, 'en', 'name', 'Artspace'),
(84209, 70306, 'en', 'name', 'Asia Pacific Forum on Women, Law and Development'),
(84210, 70307, 'en', 'name', 'Asian American Legal Defense and Education Fund'),
(84211, 70308, 'en', 'name', 'Asian Americans/Pacific Islanders in Philanthropy'),
(84212, 70309, 'en', 'name', 'Allied Media Projects'),
(84213, 70310, 'en', 'name', 'Alternate Roots'),
(84214, 70311, 'en', 'name', 'Asian Arts Initiative'),
(84215, 70312, 'en', 'name', 'Alternative Law Forum'),
(84216, 70313, 'en', 'name', 'Asian Pacific Environmental Network'),
(84217, 70314, 'en', 'name', 'Asian-Pacific Resource and Research Centre for Women'),
(84218, 70315, 'en', 'name', 'America''s Voice'),
(84219, 70316, 'en', 'name', 'InternetLab'),
(84220, 70317, 'pt', 'name', 'Redes da MarƩ'),
(84221, 70318, 'en', 'name', 'Associates Research'),
(84222, 70319, 'en', 'name', 'American Immigration Lawyers Association'),
(84223, 70320, 'en', 'name', 'Association for Democratic Reforms'),
(84224, 70321, 'en', 'name', 'American Mandarin Society'),
(84225, 70322, 'en', 'name', 'American Sustainable Business Institute'),
(84226, 70323, 'en', 'name', 'Americans for Financial Reform Education Fund'),
(84227, 70324, 'fr', 'name', 'L''Association de la Promotion de la MƩdecine Traditionnelle'),
(84228, 70324, 'en', 'name', 'PROMETRA International'),
(84229, 70325, 'en', 'name', 'Americans for Indian Opportunity'),
(84230, 70326, 'id', 'name', 'HuMA'),
(84231, 70327, 'en', 'name', 'Americas Media Initiative'),
(84232, 70328, 'en', 'name', 'Association of Baltimore Area Grantmakers'),
(84233, 70329, 'en', 'name', 'ABFE'),
(84234, 70330, 'en', 'name', 'El Museo'),
(84235, 70331, 'en', 'name', 'Amnesty International Brazil'),
(84236, 70332, 'en', 'name', 'Amnesty International USA'),
(84237, 70333, 'pt', 'name', 'Conectas'),
(84238, 70334, 'en', 'name', 'AIR'),
(84239, 70335, 'en', 'name', 'Association of Media Women in Kenya'),
(84240, 70336, 'en', 'name', 'National Secretariat - Indonesian Forum for Budget Transparency'),
(84241, 70336, 'id', 'name', 'Sekretariat Nasional Forum Indonesia untuk Transparansi'),
(84242, 70337, 'en', 'name', 'Association for Micro-Finance Institutions'),
(84243, 70338, 'en', 'name', 'California Budget & Policy Center'),
(84244, 70339, 'id', 'name', 'Filantropi Indonesia'),
(84245, 70339, 'en', 'name', 'Indonesia Philanthropy Association'),
(84246, 70340, 'en', 'name', 'California Latinas for Reproductive Justice'),
(84247, 70341, 'en', 'name', 'Camino Public Relations'),
(84248, 70342, 'en', 'name', 'Canadian Foundation for the Americas'),
(84249, 70343, 'en', 'name', 'Capital Impact Partners'),
(84250, 70344, 'pt', 'name', 'Movimento Interestadual das Quebradeiras de Coco BabaƧu'),
(84251, 70345, 'en', 'name', 'CASA'),
(84252, 70345, 'fr', 'name', 'CASA de Maryland'),
(84253, 70346, 'pt', 'name', 'Casa Fluminense'),
(84254, 70347, 'en', 'name', 'Association to Contribute to Improve the Governance of Land, Water and Natural Resources'),
(84255, 70348, 'en', 'name', 'Carnegie Moscow Center'),
(84256, 70348, 'ru', 'name', 'Московский Центр ŠšŠ°Ń€Š½ŠµŠ³Šø'),
(84257, 70349, 'en', 'name', 'Catholics for Choice'),
(84258, 70350, 'es', 'name', 'Católicas por el Derecho a Decidir'),
(84259, 70351, 'no_lang_code', 'name', 'Ballet HispƔnico (United States)'),
(84260, 70352, 'en', 'name', 'Center for Civic Policy'),
(84261, 70353, 'en', 'name', 'Center for Democracy in the Americas'),
(84262, 70354, 'en', 'name', 'Center for Economic and Social Rights'),
(84263, 70355, 'en', 'name', 'Center for Economic Progress'),
(84264, 70356, 'en', 'name', 'Better Life Association for Comprehensive Development'),
(84265, 70357, 'pt', 'name', 'Centro de Estudos das RelaƧƵes de Trabalho e Desigualdades'),
(84266, 70358, 'en', 'name', 'Center for Family Policy and Practice'),
(84267, 70359, 'pt', 'name', 'Centro de Estudos e Pesquisa em SaĆŗde Coletiva'),
(84268, 70360, 'en', 'name', 'China Association of Higher Educaiton'),
(84269, 70360, 'zh', 'name', 'äø­å›½é«˜ē­‰ę•™č‚²å­¦ä¼š'),
(84270, 70361, 'en', 'name', 'Center for Global Policy Solutions'),
(84271, 70362, 'en', 'name', 'China Development Brief'),
(84272, 70362, 'zh', 'name', 'äø­å›½å‘å±•ē®€ęŠ„'),
(84273, 70363, 'en', 'name', 'National Housing Conference'),
(84274, 70364, 'en', 'name', 'Zhicheng Public Interest Lawyers'),
(84275, 70364, 'zh', 'name', 'č‡“čÆšå…¬ē›Šå¾‹åøˆ'),
(84276, 70365, 'en', 'name', 'Centre for Indigenous Cultures of Peru'),
(84277, 70365, 'es', 'name', 'Centro de Culturas IndĆ­genas del PerĆŗ'),
(84278, 70366, 'en', 'name', 'Center for International Policy'),
(84279, 70367, 'en', 'name', 'China Family Planning Association'),
(84280, 70367, 'zh', 'name', 'äø­å›½č®”åˆ’ē”Ÿč‚²åä¼š'),
(84281, 70368, 'pt', 'name', 'Centro de Estudos de SeguranƧa e Cidadania'),
(84282, 70369, 'en', 'name', 'Center on Policy Initiatives'),
(84283, 70370, 'en', 'name', 'China Institutes of Contemporary International Relations'),
(84284, 70370, 'zh', 'name', 'äø­å›½ēŽ°ä»£å›½é™…å…³ē³»ē ”ē©¶é™¢'),
(84285, 70371, 'en', 'name', 'Beijing Gender Health Education Institute'),
(84286, 70371, 'zh', 'name', 'åŒ—äŗ¬ēŗŖå®‰å¾·å’ØčÆ¢äø­åæƒ'),
(84287, 70372, 'en', 'name', 'Migrant Center For Human Rights'),
(84288, 70373, 'en', 'name', 'China Education Press Agency'),
(84289, 70373, 'zh', 'name', 'äø­å›½ę•™č‚²ęŠ„åˆŠē¤¾'),
(84290, 70374, 'pt', 'name', 'Central Única das Favelas'),
(84291, 70375, 'en', 'name', 'Center for Neighborhood Technology'),
(84292, 70376, 'no_lang_code', 'name', 'PanNature'),
(84293, 70376, 'vi', 'name', 'Trung tĆ¢m Con ngĘ°į»i vĆ  ThiĆŖn nhiĆŖn'),
(84294, 70377, 'en', 'name', 'Centre for AIDS Development, Research and Evaluation'),
(84295, 70378, 'en', 'name', 'Centre for Communication and Development Studies'),
(84296, 70379, 'en', 'name', 'China Law Society'),
(84297, 70380, 'en', 'name', 'Centre for Environmental Rights'),
(84298, 70381, 'en', 'name', 'Beijing Social Work Development Center for Facilitators'),
(84299, 70381, 'zh', 'name', 'åŒ—äŗ¬åø‚åä½œč€…ē¤¾ä¼šå·„ä½œå‘å±•äø­åæƒ'),
(84300, 70382, 'en', 'name', 'Center for Popular Democracy'),
(84301, 70383, 'en', 'name', 'China Philanthropy Research Institute'),
(84302, 70383, 'zh', 'name', 'äø­å›½å…¬ē›Šē ”ē©¶é™¢'),
(84303, 70384, 'en', 'name', 'Centre for Higher Education Trust'),
(84304, 70385, 'en', 'name', 'Center for Public Policy Priorities'),
(84305, 70386, 'en', 'name', 'Centre for Innovation Policy and Governance'),
(84306, 70387, 'en', 'name', 'China Population Welfare Foundation'),
(84307, 70387, 'zh', 'name', 'äø­å›½äŗŗå£ē¦åˆ©åŸŗé‡‘ä¼š'),
(84308, 70388, 'en', 'name', 'Beijing Yilian Legal Aid and Research Center of Labor'),
(84309, 70388, 'zh', 'name', 'åŒ—äŗ¬ä¹‰č”åŠ³åŠØę³•ę“åŠ©äøŽē ”ē©¶äø­åæƒ'),
(84310, 70389, 'en', 'name', 'The Supreme People''s Procuratorate of the People''s Republic of China'),
(84311, 70389, 'zh', 'name', 'äø­å›½ę£€åÆŸå®˜åä¼š'),
(84312, 70390, 'en', 'name', 'Beirut Art Center'),
(84313, 70390, 'ar', 'name', 'Ł…Ų±ŁƒŲ² بيروت للفن'),
(84314, 70391, 'en', 'name', 'China Sexology Association'),
(84315, 70391, 'zh', 'name', 'äø­å›½ę€§å­¦ä¼š'),
(84316, 70392, 'en', 'name', 'Beloved Community Center'),
(84317, 70393, 'id', 'name', 'Ciliwung Merdeka'),
(84318, 70394, 'en', 'name', 'Centre for Research and Technology Development'),
(84319, 70395, 'en', 'name', 'Center for Responsible Lending'),
(84320, 70396, 'en', 'name', 'Centre for Rural Legal Studies'),
(84321, 70397, 'en', 'name', 'Citizen University'),
(84322, 70398, 'en', 'name', 'Bend the Arc: A Jewish Partnership for Justice'),
(84323, 70399, 'en', 'name', 'Centre for Rural Studies and Development'),
(84324, 70400, 'en', 'name', 'Citizens’ Housing and Planning Association'),
(84325, 70401, 'en', 'name', 'Centre for Social Justice'),
(84326, 70402, 'hi', 'name', 'Bhasha'),
(84327, 70403, 'en', 'name', 'Citizenship, Studies, Research, Information and Action'),
(84328, 70404, 'en', 'name', 'Centre for Study of Society and Secularism'),
(84329, 70405, 'en', 'name', 'Entrepreneurial Ecosystems'),
(84330, 70406, 'en', 'name', 'City Year'),
(84331, 70407, 'en', 'name', 'Big Sky Institute'),
(84332, 70408, 'en', 'name', 'Civil Society Budget Advocacy Group'),
(84333, 70409, 'en', 'name', 'Centre for the Study of Violence and Reconciliation'),
(84334, 70410, 'en', 'name', 'Center for Rural Strategies'),
(84335, 70411, 'en', 'name', 'TechSoup'),
(84336, 70412, 'en', 'name', 'Border Network for Human Rights'),
(84337, 70413, 'en', 'name', 'Community Labor United'),
(84338, 70414, 'en', 'name', 'Community Life Project'),
(84339, 70415, 'pt', 'name', 'Fundo Brasil'),
(84340, 70416, 'en', 'name', 'Collaboration on International ICT Policy in East and Southern Africa'),
(84341, 70417, 'en', 'name', 'Community Voices Heard'),
(84342, 70418, 'en', 'name', 'Colombian Commission of Jurists'),
(84343, 70418, 'es', 'name', 'Comisión Colombiana de Juristas'),
(84344, 70419, 'en', 'name', 'Comprehensive OBGYN'),
(84345, 70420, 'en', 'name', 'Colorado Organization for Latina Opportunity and Reproductive Rights'),
(84346, 70421, 'no_lang_code', 'name', 'Ocunexus Therapeutics (United States)'),
(84347, 70422, 'en', 'name', 'Constituency for Africa'),
(84348, 70423, 'pt', 'name', 'Instituto Brasileiro de Defesa do Consumidor'),
(84349, 70424, 'en', 'name', 'Color Of Change'),
(84350, 70425, 'en', 'name', 'Constitution and Reform Education Consortium'),
(84351, 70426, 'en', 'name', 'Combine Resource Institution'),
(84352, 70427, 'en', 'name', 'Committee to Protect Journalists'),
(84353, 70428, 'pt', 'name', 'Instituto Brasileiro de AnƔlises Sociais e EconƓmicas'),
(84354, 70429, 'en', 'name', 'Common Cause Education Fund'),
(84355, 70430, 'es', 'name', 'Centro Regional de Derechos Humanos y Justicia de Género, Corporación Humanas'),
(84356, 70431, 'en', 'name', 'Consumer Federation of America'),
(84357, 70432, 'en', 'name', 'Communications Consortium Media Center'),
(84358, 70433, 'en', 'name', 'Scientific Center of Zoology and Hydroecology'),
(84359, 70433, 'hy', 'name', 'ŌæÕ„Õ¶Õ¤Õ”Õ¶Õ”Õ¢Õ”Õ¶ÕøÖ‚Õ©ÕµÕ”Õ¶ և Õ°Õ«Õ¤Ö€ÕøÕ§ÕÆÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ« Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(84360, 70434, 'en', 'name', 'Chengdu Shuguang Community Development Capacity Building Center'),
(84361, 70435, 'en', 'name', 'Child Welfare Society of Kenya'),
(84362, 70436, 'en', 'name', 'Convergence'),
(84363, 70437, 'en', 'name', 'Women''s Rights International'),
(84364, 70438, 'en', 'name', 'Children’s Action Alliance'),
(84365, 70439, 'en', 'name', 'China Arms Control and Disarmament Association'),
(84366, 70439, 'zh', 'name', 'äø­å›½å†›ęŽ§äøŽč£å†›åä¼š'),
(84367, 70440, 'en', 'name', 'Brazilian Interdisciplinary AIDS Association'),
(84368, 70441, 'en', 'name', 'China Association for NGO Cooperation'),
(84369, 70441, 'zh', 'name', 'äø­å›½å›½é™…ę°‘é—“ē»„ē»‡åˆä½œäæƒčæ›ä¼š'),
(84370, 70442, 'en', 'name', 'Communities Unlimited'),
(84371, 70443, 'en', 'name', 'Cooper''s Ferry Partnership'),
(84372, 70444, 'en', 'name', 'Community Aid International'),
(84373, 70445, 'en', 'name', 'Community Catalyst'),
(84374, 70446, 'en', 'name', 'Equal Education Law Centre'),
(84375, 70447, 'en', 'name', 'Community Development Advocates of Detroit'),
(84376, 70448, 'en', 'name', 'Education Law Center'),
(84377, 70449, 'en', 'name', 'Education Through Music'),
(84378, 70450, 'en', 'name', 'Community Development Corporation of Brownsville'),
(84379, 70451, 'en', 'name', 'Council of Urban Professionals'),
(84380, 70452, 'en', 'name', 'Equitas - International Centre for Human Rights Education'),
(84381, 70453, 'en', 'name', 'Crescent City Community Land Trust'),
(84382, 70454, 'es', 'name', 'ACICAFOC'),
(84383, 70455, 'pt', 'name', 'Instituto Eqüit – GĆŖnero, Economia e Cidadania Global'),
(84384, 70456, 'en', 'name', 'Cuban Artists Fund'),
(84385, 70457, 'en', 'name', 'Educational Video Center'),
(84386, 70458, 'pt', 'name', 'Associação Cultural de Mulheres Negras'),
(84387, 70459, 'en', 'name', 'Fuping Development Institute'),
(84388, 70459, 'zh', 'name', 'åŒ—äŗ¬åÆŒå¹³å­¦ę ”'),
(84389, 70460, 'en', 'name', 'Gamaliel'),
(84390, 70461, 'en', 'name', 'Green Camel Bell'),
(84391, 70461, 'zh', 'name', 'ē»æé©¼é“ƒ'),
(84392, 70462, 'en', 'name', 'Culture Resource'),
(84393, 70462, 'ar', 'name', 'Ų§Ł„Ł…ŁˆŲ±ŲÆ Ų§Ł„Ų«Ł‚Ų§ŁŁŠ'),
(84394, 70463, 'en', 'name', 'International Network for Economic, Social and Cultural Rights'),
(84395, 70463, 'es', 'name', 'Red Internacional para los Derechos Económicos, Sociales y Culturales'),
(84396, 70463, 'fr', 'name', 'RƩseau International pour les Droits Economiques, Sociaux et Culturels'),
(84397, 70464, 'en', 'name', 'AshƩ'),
(84398, 70465, 'en', 'name', 'Egyptian Center for Culture and Arts'),
(84399, 70466, 'en', 'name', 'DC Arts & Humanities Education Collaborative'),
(84400, 70467, 'pt', 'name', 'GeledƩs Instituto da Mulher Negra'),
(84401, 70468, 'es', 'name', 'ESE:O'),
(84402, 70469, 'en', 'name', 'Detroit Economic Growth Corporation'),
(84403, 70470, 'no_lang_code', 'name', 'Eko-Konnect'),
(84404, 70471, 'en', 'name', 'ExpandED Schools'),
(84405, 70472, 'en', 'name', 'Georgia Stand-Up'),
(84406, 70473, 'en', 'name', 'Development Alternatives with Women for a New Era'),
(84407, 70474, 'en', 'name', 'The Faith & Politics Institute'),
(84408, 70475, 'en', 'name', 'Empower Schools'),
(84409, 70476, 'en', 'name', 'Gideon''s Promise'),
(84410, 70477, 'en', 'name', 'Energy Programs Consortium'),
(84411, 70478, 'en', 'name', 'International Planned Parenthood Federation'),
(84412, 70479, 'en', 'name', 'Development Network of Indigenous Voluntary Associations'),
(84413, 70480, 'en', 'name', 'EngageMedia'),
(84414, 70481, 'en', 'name', 'Girls Not Brides'),
(84415, 70482, 'en', 'name', 'Environmental Grantmakers Association'),
(84416, 70483, 'en', 'name', 'Campaign for Migrant Worker Justice'),
(84417, 70484, 'en', 'name', 'Environmental Health Coalition'),
(84418, 70485, 'en', 'name', 'Dhow Countries Music Academy'),
(84419, 70486, 'en', 'name', 'Environmental Simulation Center'),
(84420, 70487, 'en', 'name', 'Down Syndrome Society of Kenya'),
(84421, 70488, 'en', 'name', 'Epic Theatre Ensemble'),
(84422, 70489, 'no_lang_code', 'name', 'Fahe'),
(84423, 70490, 'en', 'name', 'Dudley Street Neighborhood Initiative'),
(84424, 70491, 'en', 'name', 'Global Americans'),
(84425, 70492, 'en', 'name', 'EARN'),
(84426, 70493, 'en', 'name', 'Global Campaign for Education United States'),
(84427, 70494, 'en', 'name', 'Equal Education'),
(84428, 70495, 'es', 'name', 'Federación de Instituciones y Organismos Financieros Rurales'),
(84429, 70496, 'en', 'name', 'Global Environmental Institute'),
(84430, 70496, 'zh', 'name', 'å…ØēƒēŽÆå¢ƒē ”ē©¶ę‰€'),
(84431, 70497, 'en', 'name', 'Hlanganisa Institute for Development Southern Africa'),
(84432, 70498, 'en', 'name', 'East Africa Law Society'),
(84433, 70499, 'pt', 'name', 'Centro Feminista de Estudos e Assessoria'),
(84434, 70499, 'en', 'name', 'Feminist Center for Studies and Advisory Services'),
(84435, 70500, 'en', 'name', 'Eastern Africa Centre for Constitutional Development'),
(84436, 70500, 'sw', 'name', 'Kituo cha Katiba'),
(84437, 70501, 'en', 'name', 'Ho Chi Minh National Academy of Politics'),
(84438, 70501, 'vi', 'name', 'Hį»c viện ChĆ­nh trị Quốc gia Hồ ChĆ­ Minh'),
(84439, 70502, 'en', 'name', 'Global Press'),
(84440, 70503, 'en', 'name', 'Economic Policy Research Institute'),
(84441, 70504, 'no_lang_code', 'name', 'Filene'),
(84442, 70505, 'no_lang_code', 'name', 'GlobalAgRisk (United States)'),
(84443, 70506, 'no_lang_code', 'name', 'Go Sheng'),
(84444, 70507, 'es', 'name', 'Instituto para la Seguridad y Democracia'),
(84445, 70508, 'en', 'name', 'Florida Policy Institute'),
(84446, 70509, 'en', 'name', 'Good Jobs First'),
(84447, 70510, 'en', 'name', 'Housing and Community Development Network of New Jersey'),
(84448, 70511, 'en', 'name', 'Goree Institute'),
(84449, 70511, 'fr', 'name', 'L’Institut GorĆ©e – Centre pour la DĆ©mocratie, le DĆ©vĆ©loppement et la Culture en Afrique'),
(84450, 70512, 'en', 'name', 'Food and Finance High School'),
(84451, 70513, 'en', 'name', 'The Institute for Southern Studies'),
(84452, 70514, 'en', 'name', 'Grantmakers for Effective Organizations'),
(84453, 70515, 'en', 'name', 'United Philanthropy Forum'),
(84454, 70516, 'en', 'name', 'Grantmakers in the Arts'),
(84455, 70517, 'en', 'name', 'Institute of Religious Studies'),
(84456, 70517, 'pt', 'name', 'Instituto de Estudos da Religião'),
(84457, 70518, 'en', 'name', 'Grassroots Institute for Fundraising Training'),
(84458, 70519, 'en', 'name', 'Institute for Studies of Society, Economy and Environment'),
(84459, 70519, 'vi', 'name', 'Viện nghiĆŖn cứu XĆ£ hį»™i, Kinh tįŗæ vĆ  MĆ“i trĘ°į»ng'),
(84460, 70520, 'en', 'name', 'Great Lakes Institute for Strategic Studies'),
(84461, 70521, 'es', 'name', 'Forum Solidaridad PerĆŗ'),
(84462, 70522, 'en', 'name', 'Housing California'),
(84463, 70523, 'en', 'name', 'The Greenlining Institute'),
(84464, 70524, 'en', 'name', 'Forward Cities'),
(84465, 70525, 'pt', 'name', 'Associação Nacional de Direitos Humanos, Pesquisa e Pós-Graduação'),
(84466, 70526, 'pt', 'name', 'Instituto para o Desenvolvimento do Jornalismo'),
(84467, 70527, 'en', 'name', 'Human Services Coalition'),
(84468, 70528, 'en', 'name', 'Institute for Transportation and Development Policy'),
(84469, 70529, 'en', 'name', 'Gujarat Institute of Desert Ecology'),
(84470, 70530, 'en', 'name', 'Gulf Coast Housing Partnership'),
(84471, 70531, 'en', 'name', 'International Alliance on Natural Resources in Africa'),
(84472, 70532, 'es', 'name', 'Fundación Nacional para el Desarrollo'),
(84473, 70533, 'en', 'name', 'Institute for Development and Economic Analysis'),
(84474, 70533, 'id', 'name', 'Perhimpunan IDEA'),
(84475, 70534, 'en', 'name', 'iCivics'),
(84476, 70535, 'no_lang_code', 'name', 'Hattaway Communications (United States)'),
(84477, 70536, 'en', 'name', 'Hawaii Institute for Public Affairs'),
(84478, 70537, 'en', 'name', 'Institute of Livelihood Research and Training'),
(84479, 70537, 'te', 'name', 'ą°²ą±†ą±–ą°µą±ą°²ą±€ą°¹ą±ą°”ą± ą°°ą±€ą°øą±†ą°°ą±ą°šą± ą°…ą°‚ą°”ą± ą°Ÿą±ą°°ą±†ą±–ą°Øą°æą°‚ą°—ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą±'),
(84480, 70538, 'en', 'name', 'Il’laramatak Community Concerns'),
(84481, 70539, 'en', 'name', 'Mamta Health Institute for Mother and Child'),
(84482, 70540, 'id', 'name', 'Asosiasi Perempuan Indonesia untuk Keadilan'),
(84483, 70541, 'en', 'name', 'Independent Institute for Social Policy'),
(84484, 70541, 'ru', 'name', 'ŠŠµŠ·Š°Š²ŠøŃŠøŠ¼Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ политики'),
(84485, 70542, 'en', 'name', 'Hill House Association'),
(84486, 70543, 'en', 'name', 'Indian Institute of Dalit Studies'),
(84487, 70543, 'hi', 'name', 'दलित ą¤øą„ą¤Ÿą¤”ą„€ą¤œ का ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(84488, 70544, 'en', 'name', 'Indian Law Resource Center'),
(84489, 70545, 'en', 'name', 'Institute of Social Studies Trust'),
(84490, 70546, 'en', 'name', 'Guangdong Association of STD and AIDS Prevention and Control'),
(84491, 70546, 'zh', 'name', 'å¹æäøœēœę€§ē—…č‰¾ę»‹ē—…é˜²ę²»åä¼š'),
(84492, 70547, 'en', 'name', 'Freedman Consulting'),
(84493, 70548, 'en', 'name', 'Institute on Taxation and Economic Policy'),
(84494, 70549, 'en', 'name', 'Freedom of the Press Foundation'),
(84495, 70550, 'en', 'name', 'International Cinema Education'),
(84496, 70551, 'en', 'name', 'Fund for Constitutional Government'),
(84497, 70552, 'es', 'name', 'Grupo de Información en Reproducción Elegida'),
(84498, 70552, 'en', 'name', 'Information Group on Reproductive Choice'),
(84499, 70553, 'es', 'name', 'ProPacĆ­fico'),
(84500, 70554, 'es', 'name', 'Instituto CentroAmericano de Estudios para la Democracia Social'),
(84501, 70555, 'en', 'name', 'Innovative Housing Institute'),
(84502, 70556, 'es', 'name', 'Fundación Pro Vivienda Social'),
(84503, 70557, 'en', 'name', 'Insight Center for Community Economic Development'),
(84504, 70558, 'en', 'name', 'International Media Support'),
(84505, 70559, 'pt', 'name', 'Instituto de Pesquisas e Estudos Afro Brasileiros'),
(84506, 70560, 'es', 'name', 'Fundar'),
(84507, 70561, 'en', 'name', 'Institute for Technology & Society'),
(84508, 70561, 'pt', 'name', 'Instituto de Tecnologia e Sociedade'),
(84509, 70562, 'en', 'name', 'National Housing Trust'),
(84510, 70563, 'en', 'name', 'Funders'' Network for Smart Growth and Livable Communities'),
(84511, 70564, 'en', 'name', 'International Research and Development Actions'),
(84512, 70565, 'pt', 'name', 'Terra de Direitos'),
(84513, 70566, 'en', 'name', 'Inward Bound Mindfulness Education'),
(84514, 70567, 'pt', 'name', 'Instituto de Terras do ParĆ”'),
(84515, 70568, 'en', 'name', 'Intellectual Property Watch'),
(84516, 70569, 'en', 'name', 'Ethnic Media Institute'),
(84517, 70569, 'pt', 'name', 'Instituto Midia Ɖtnica'),
(84518, 70570, 'es', 'name', 'Instituto Nacional de Derechos Humanos'),
(84519, 70571, 'pt', 'name', 'Instituto Papai'),
(84520, 70572, 'no_lang_code', 'name', 'Isandla Institute'),
(84521, 70573, 'en', 'name', 'Institute for Jewish Policy Research'),
(84522, 70574, 'en', 'name', 'Iseal Alliance'),
(84523, 70575, 'pt', 'name', 'Instituto Procomum'),
(84524, 70575, 'en', 'name', 'Procomum Institute'),
(84525, 70576, 'en', 'name', 'Instituto'),
(84526, 70577, 'en', 'name', 'Isis-WICCE'),
(84527, 70578, 'en', 'name', 'Institute for Law and Environmental Governance'),
(84528, 70579, 'en', 'name', 'Jobs With Justice'),
(84529, 70580, 'no_lang_code', 'name', 'LatinoJustice PRLDEF'),
(84530, 70581, 'en', 'name', 'Lawyers Collective'),
(84531, 70582, 'en', 'name', 'Institute for Research and Empowerment'),
(84532, 70583, 'en', 'name', 'Institute for Science and International Security'),
(84533, 70584, 'en', 'name', 'Lawyers'' Committee for Civil Rights Under Law'),
(84534, 70585, 'no_lang_code', 'name', 'K-Rep Development Agency (Kenya)'),
(84535, 70586, 'en', 'name', 'Kenya Community Development Foundation'),
(84536, 70587, 'en', 'name', 'Leadership Conference Education Fund'),
(84537, 70588, 'en', 'name', 'Kenya Human Rights Commission'),
(84538, 70589, 'en', 'name', 'Media Council of Kenya'),
(84539, 70590, 'en', 'name', 'Kenya Land Alliance'),
(84540, 70591, 'en', 'name', 'Media Matters for America'),
(84541, 70592, 'en', 'name', 'Echo Network Africa'),
(84542, 70593, 'es', 'name', 'Instituto de Liderazgo Simone de Beauvoir'),
(84543, 70594, 'pt', 'name', 'Instituto Sou da Paz'),
(84544, 70595, 'en', 'name', 'Media Rights Agenda'),
(84545, 70596, 'no_lang_code', 'name', 'Ketebul Music'),
(84546, 70597, 'en', 'name', 'Medical Education Cooperation with Cuba'),
(84547, 70598, 'en', 'name', 'Keystone Research Center'),
(84548, 70599, 'en', 'name', 'LEAP Africa'),
(84549, 70600, 'en', 'name', 'Interaction Institute for Social Change'),
(84550, 70601, 'en', 'name', 'Learning Policy Institute'),
(84551, 70602, 'en', 'name', 'Kovno Communications'),
(84552, 70603, 'en', 'name', 'Interfaith Worker Justice'),
(84553, 70604, 'en', 'name', 'Labor Community Strategy Center'),
(84554, 70605, 'es', 'name', 'Comisión Mexicana de Defensa y Promoción de los Derechos Humanos'),
(84555, 70606, 'en', 'name', 'Lambda Legal'),
(84556, 70607, 'en', 'name', 'International Centre for Mathematical and Computer Sciences'),
(84557, 70608, 'en', 'name', 'New York Theatre Workshop'),
(84558, 70609, 'en', 'name', 'National Committee for Responsive Philanthropy'),
(84559, 70610, 'es', 'name', 'Consejo Civil Mexicano para la Silvicultura Sostenible'),
(84560, 70611, 'en', 'name', 'Newark Trust for Education'),
(84561, 70612, 'id', 'name', 'Lembaga Gemawan'),
(84562, 70613, 'en', 'name', 'Next City'),
(84563, 70614, 'es', 'name', 'Centro Mexicano de Derecho Ambiental'),
(84564, 70615, 'en', 'name', 'Lexington Institute'),
(84565, 70616, 'en', 'name', 'Nexus Community Partners'),
(84566, 70617, 'en', 'name', 'National Dance Institute of New Mexico'),
(84567, 70618, 'en', 'name', 'Liberty Hill'),
(84568, 70619, 'en', 'name', 'National Day Laborer Organizing Network'),
(84569, 70620, 'en', 'name', 'Living Cities'),
(84570, 70621, 'en', 'name', 'Michigan League for Public Policy'),
(84571, 70622, 'en', 'name', 'National Economic and Social Rights Initiative'),
(84572, 70623, 'en', 'name', 'Nkuzi Development Association'),
(84573, 70624, 'en', 'name', 'Michigan Nonprofit Association'),
(84574, 70625, 'en', 'name', 'National Employment Law Project'),
(84575, 70626, 'en', 'name', 'Noida Deaf Society'),
(84576, 70627, 'en', 'name', 'Michigan United'),
(84577, 70628, 'no_lang_code', 'name', 'Inclusiv (United States)'),
(84578, 70629, 'en', 'name', 'Los Angeles Area Chamber of Commerce'),
(84579, 70630, 'en', 'name', 'Nonprofit Finance Fund'),
(84580, 70631, 'en', 'name', 'Minnesota Council of Nonprofits'),
(84581, 70632, 'pt', 'name', 'Fórum Nacional pela Democratização da Comunicação'),
(84582, 70633, 'en', 'name', 'Fair Share Education Fund'),
(84583, 70634, 'en', 'name', 'Mission Asset Fund'),
(84584, 70635, 'en', 'name', 'Low Income Investment Fund'),
(84585, 70636, 'pt', 'name', 'Fórum Nacional das Entidades Civis de Defesa do Consumidor'),
(84586, 70637, 'pt', 'name', 'Instituto Nupef'),
(84587, 70638, 'no_lang_code', 'name', 'Montfort Social Institute'),
(84588, 70638, 'te', 'name', 'ą°®ą±‹ą°‚ą°Ÿą±ą°«ą±‹ą°°ą±ą°Ÿą± ą°øą±‹ą°·ą°²ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą±'),
(84589, 70639, 'pt', 'name', 'Centro de Cultura Luiz Freire'),
(84590, 70640, 'en', 'name', 'Mophradat'),
(84591, 70641, 'en', 'name', 'National Hispanic Leadership Agenda'),
(84592, 70642, 'en', 'name', 'Favela Observatory'),
(84593, 70642, 'pt', 'name', 'Observatório de Favelas'),
(84594, 70643, 'en', 'name', 'Maine Center for Economic Policy'),
(84595, 70644, 'en', 'name', 'Ocean Doctor');
INSERT INTO `ror_settings` VALUES
(84596, 70645, 'en', 'name', 'National Hispanic Media Coalition'),
(84597, 70646, 'en', 'name', 'Make the Road New York'),
(84598, 70647, 'en', 'name', 'National Immigration Law Center'),
(84599, 70648, 'en', 'name', 'Mothering Justice'),
(84600, 70649, 'en', 'name', 'National Indigenous Organization of Colombia'),
(84601, 70649, 'es', 'name', 'Organización Nacional Indígena de Colombia'),
(84602, 70650, 'en', 'name', 'Mountain Association for Community Economic Development'),
(84603, 70651, 'pt', 'name', 'Malungu'),
(84604, 70652, 'en', 'name', 'The National Institute for Latino Policy'),
(84605, 70653, 'en', 'name', 'Movement Strategy Center'),
(84606, 70654, 'en', 'name', 'Mapungubwe Institute for Strategic Reflection'),
(84607, 70655, 'en', 'name', 'Moving the GoalPosts'),
(84608, 70656, 'en', 'name', 'National Korean American Service & Education Consortium'),
(84609, 70657, 'en', 'name', 'National Religious Campaign Against Torture'),
(84610, 70658, 'pt', 'name', 'Museu do Samba'),
(84611, 70659, 'en', 'name', 'Purdue University Fort Wayne'),
(84612, 70660, 'en', 'name', 'National Skills Coalition'),
(84613, 70661, 'en', 'name', 'National Women''s Health Network'),
(84614, 70662, 'en', 'name', 'Native American Rights Fund'),
(84615, 70663, 'en', 'name', 'Nautilus Institute'),
(84616, 70664, 'no_lang_code', 'name', 'Ndifuna Ukwazi'),
(84617, 70665, 'en', 'name', 'Neighborhood Funders Group'),
(84618, 70666, 'en', 'name', 'NeighborWorks America'),
(84619, 70667, 'en', 'name', 'NEO Philanthropy'),
(84620, 70668, 'en', 'name', 'Nepal Centre for Contemporary Studies'),
(84621, 70669, 'en', 'name', 'SNV Netherlands Development Organisation'),
(84622, 70670, 'en', 'name', 'Muslim Advocates'),
(84623, 70671, 'en', 'name', 'New Economy Project'),
(84624, 70672, 'no_lang_code', 'name', 'Velez College'),
(84625, 70673, 'en', 'name', 'Muslim Women''s Research and Action Forum'),
(84626, 70674, 'en', 'name', 'New Florida Majority'),
(84627, 70675, 'en', 'name', 'New Horizon Association for Social Development'),
(84628, 70675, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© أفاق جديدة Ł„Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(84629, 70676, 'en', 'name', 'Oregon Center for Public Policy'),
(84630, 70677, 'en', 'name', 'New Jersey Institute for Social Justice'),
(84631, 70678, 'en', 'name', 'Massachusetts Budget and Policy Center'),
(84632, 70679, 'en', 'name', 'Nanjing Collaborator Community Development Center'),
(84633, 70679, 'zh', 'name', 'å—äŗ¬åø‚åä½œč€…ē¤¾åŒŗå‘å±•äø­åæƒ'),
(84634, 70680, 'en', 'name', 'Type Media Center'),
(84635, 70681, 'en', 'name', 'Maya Educational Foundation'),
(84636, 70682, 'en', 'name', 'New Orleans Workers’ Center for Racial Justice'),
(84637, 70683, 'en', 'name', 'National AIDS Housing Coalition'),
(84638, 70684, 'en', 'name', 'Maynard Institute'),
(84639, 70685, 'en', 'name', 'National Association for Latino Community Asset Builders'),
(84640, 70686, 'en', 'name', 'New Rules for Global Finance'),
(84641, 70687, 'es', 'name', 'Oxfam MƩxico'),
(84642, 70688, 'en', 'name', 'The New World Foundation'),
(84643, 70689, 'en', 'name', 'Measures for Justice'),
(84644, 70690, 'en', 'name', 'San Diego Housing Federation'),
(84645, 70691, 'en', 'name', 'Playwrights Horizons'),
(84646, 70692, 'id', 'name', 'Pancur Kasih Association'),
(84647, 70693, 'en', 'name', 'National Centre for Advocacy Studies'),
(84648, 70694, 'en', 'name', 'Santa Fe Art Institute'),
(84649, 70695, 'en', 'name', 'Policy Matters Ohio'),
(84650, 70696, 'pt', 'name', 'Sociedade Paraense de Defesa dos Direitos Humanos'),
(84651, 70697, 'en', 'name', 'The National Coalition on Black Civic Participation'),
(84652, 70698, 'en', 'name', 'Political Research Associates'),
(84653, 70699, 'en', 'name', 'Sustainability Accounting Standards Board'),
(84654, 70700, 'no_lang_code', 'name', 'PHI'),
(84655, 70701, 'en', 'name', 'Population Media Center'),
(84656, 70702, 'en', 'name', 'Say Yes to Education'),
(84657, 70703, 'en', 'name', 'Partners for the Common Good'),
(84658, 70704, 'en', 'name', 'Southwestern Association for Indian Arts'),
(84659, 70705, 'en', 'name', 'Programme on Women’s Economic, Social and Cultural Rights'),
(84660, 70706, 'no_lang_code', 'name', 'Partners in Development for Research, Consulting and Training (Egypt)'),
(84661, 70706, 'ar', 'name', 'ؓركاؔ Ų§Ł„ŲŖŁ†Ł…ŁŠŲ© Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„Ų§Ų³ŲŖŲ“Ų§Ų±Ų§ŲŖ ŁˆŲ§Ł„ŲŖŲÆŲ±ŁŠŲØ'),
(84662, 70707, 'en', 'name', 'Partnership for African Social & Governance Research'),
(84663, 70708, 'en', 'name', 'Progress Michigan'),
(84664, 70709, 'no_lang_code', 'name', 'Spaceworks'),
(84665, 70710, 'en', 'name', 'Partnership for Working Families'),
(84666, 70711, 'en', 'name', 'Project On Government Oversight'),
(84667, 70712, 'no_lang_code', 'name', 'Spitfire Spark Change (United States)'),
(84668, 70713, 'en', 'name', 'Project on Organizing, Development, Education, and Research'),
(84669, 70714, 'en', 'name', 'Scruggs & Associates'),
(84670, 70715, 'en', 'name', 'Prosperity Now'),
(84671, 70716, 'pt', 'name', 'Comissão Pastoral da Terra'),
(84672, 70717, 'en', 'name', 'Public Affairs Research Institute'),
(84673, 70718, 'en', 'name', 'Section 27'),
(84674, 70719, 'pt', 'name', 'Agência Patrícia Galvão'),
(84675, 70720, 'pt', 'name', 'Associação Centro de Estudos de Economia SolidÔria do Atlântico'),
(84676, 70721, 'en', 'name', 'Forest Peoples Programme'),
(84677, 70722, 'en', 'name', 'People''s Action'),
(84678, 70723, 'en', 'name', 'Security Council Report'),
(84679, 70724, 'en', 'name', 'Public Interest Research and Advocacy Center'),
(84680, 70725, 'id', 'name', 'Institut Hak Asasi Perempuan'),
(84681, 70725, 'en', 'name', 'Institute for Women Human Rights'),
(84682, 70726, 'en', 'name', 'Public Knowledge'),
(84683, 70727, 'en', 'name', 'Sex Workers Education & Advocacy Taskforce'),
(84684, 70728, 'es', 'name', 'Seminario Permanente de Investigación Agraria'),
(84685, 70729, 'en', 'name', 'Sexuality Information and Education Council of the United States'),
(84686, 70730, 'en', 'name', 'Strategic Concepts in Organizing and Policy Education'),
(84687, 70731, 'en', 'name', 'Public Religion Research Institute'),
(84688, 70732, 'en', 'name', 'Studies in Poverty and Inequality Institute'),
(84689, 70733, 'en', 'name', 'Philanthropy Northwest'),
(84690, 70734, 'en', 'name', 'Shaanxi Research Association for Women and Family'),
(84691, 70734, 'zh', 'name', 'é™•č„æēœå¦‡å„³ē†č®ŗå©šå§»å®¶åŗ­ē ”ē©¶ä¼š'),
(84692, 70735, 'en', 'name', 'Studio in a School'),
(84693, 70736, 'en', 'name', 'Rainforest Foundation Norway'),
(84694, 70736, 'no', 'name', 'Regnskogfondet'),
(84695, 70737, 'no_lang_code', 'name', 'Sue Mbaya & Associates (South Africa)'),
(84696, 70738, 'en', 'name', 'PIR Center'),
(84697, 70738, 'ru', 'name', 'ПИР-Центр'),
(84698, 70739, 'no_lang_code', 'name', 'Shangri-la Institute'),
(84699, 70739, 'zh', 'name', 'é¦™ę ¼é‡Œę‹‰åÆęŒē»­ē¤¾åŒŗå­¦ä¼š'),
(84700, 70740, 'no_lang_code', 'name', 'Planact'),
(84701, 70741, 'en', 'name', 'TakeAction Minnesota'),
(84702, 70742, 'en', 'name', 'Reconnecting America'),
(84703, 70743, 'es', 'name', 'Red Universitaria Mutis'),
(84704, 70744, 'en', 'name', 'Tanganyika Law Society'),
(84705, 70745, 'sw', 'name', 'Chama cha Wanahabari Wanawake Tanzania'),
(84706, 70745, 'en', 'name', 'Tanzania Media Women''s Association'),
(84707, 70746, 'en', 'name', 'Sichuan Academy Of Social Sciences'),
(84708, 70746, 'zh', 'name', 'å››å·ēœē¤¾ä¼šē§‘å­¦é™¢'),
(84709, 70747, 'en', 'name', 'The Foundation for a Civil Society'),
(84710, 70748, 'en', 'name', 'Regional Plan Association'),
(84711, 70749, 'en', 'name', 'Religious Coalition for Reproductive Choice'),
(84712, 70750, 'no_lang_code', 'name', 'TCC Group (United States)'),
(84713, 70751, 'es', 'name', 'Sisma Mujer'),
(84714, 70752, 'en', 'name', 'Texas Housers'),
(84715, 70753, 'en', 'name', 'Restaurant Opportunities Centers United'),
(84716, 70754, 'en', 'name', 'Skylight'),
(84717, 70755, 'en', 'name', 'Rights and Resources'),
(84718, 70756, 'en', 'name', 'Smart Growth America'),
(84719, 70757, 'en', 'name', 'Futuro'),
(84720, 70758, 'en', 'name', 'The Acronym Institute for Disarmament Diplomacy'),
(84721, 70759, 'no_lang_code', 'name', 'Riwaq'),
(84722, 70760, 'en', 'name', 'Center for Story-based Strategy'),
(84723, 70761, 'en', 'name', 'The Golden Bridges Foundation'),
(84724, 70762, 'pt', 'name', 'Fundação Roberto Marinho'),
(84725, 70762, 'en', 'name', 'Roberto Marinho Foundation'),
(84726, 70763, 'en', 'name', 'Group of Institutes, Foundations and Enterprises'),
(84727, 70763, 'pt', 'name', 'Grupo de Institutos FundaƧƵes e Empresas'),
(84728, 70764, 'en', 'name', 'African Leadership Institute'),
(84729, 70765, 'en', 'name', 'Rockwood Leadership Institute'),
(84730, 70766, 'en', 'name', 'Social Action'),
(84731, 70767, 'en', 'name', 'League of Resident Theatres'),
(84732, 70768, 'id', 'name', 'Aliansi Masyarakat Adat Nusantara'),
(84733, 70768, 'en', 'name', 'Indigenous Peoples'' Alliance of the Archipelago'),
(84734, 70769, 'en', 'name', 'The African Safari Foundation'),
(84735, 70770, 'en', 'name', 'Institute for Nonprofit News'),
(84736, 70771, 'en', 'name', 'American Society for Yad Vashem'),
(84737, 70772, 'en', 'name', 'Rural Action'),
(84738, 70773, 'en', 'name', 'Arms Control Association'),
(84739, 70774, 'en', 'name', 'Rural Support Partners'),
(84740, 70775, 'no_lang_code', 'name', 'Sa-Dhan'),
(84741, 70776, 'en', 'name', 'Safe & Justice Michigan'),
(84742, 70777, 'en', 'name', 'International Islamic Center for Population Studies and Research'),
(84743, 70778, 'en', 'name', 'The Kenya Alliance of Resident Associations'),
(84744, 70779, 'en', 'name', 'Safe Motherhood Ladies Association'),
(84745, 70780, 'en', 'name', 'Society for Labour & Development'),
(84746, 70781, 'no_lang_code', 'name', 'NeuroProof (Germany)'),
(84747, 70782, 'en', 'name', 'Society for Social Uplift Through Rural Action'),
(84748, 70783, 'en', 'name', 'Research and Information Centre Memorial'),
(84749, 70783, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-информационный центр ŠœŠµŠ¼Š¾Ń€ŠøŠ°Š»'),
(84750, 70784, 'fr', 'name', 'Ashkal Alwan'),
(84751, 70784, 'ar', 'name', 'Ų£Ų“ŁƒŲ§Ł„ Ų£Ł„ŁˆŲ§Ł†'),
(84752, 70785, 'en', 'name', 'Bank Information Center'),
(84753, 70786, 'no_lang_code', 'name', 'Tiri (United Kingdom)'),
(84754, 70787, 'en', 'name', 'Legatum Institute'),
(84755, 70788, 'en', 'name', 'Solidago Foundation'),
(84756, 70789, 'en', 'name', 'Toniic Institute'),
(84757, 70790, 'en', 'name', 'Missouri Budget Project'),
(84758, 70791, 'en', 'name', 'Topos'),
(84759, 70792, 'no_lang_code', 'name', 'Soliya'),
(84760, 70793, 'en', 'name', 'The Bronx Academy of Arts and Dance'),
(84761, 70794, 'es', 'name', 'Asociación Nacional de Afrocolombianos Desplazados'),
(84762, 70795, 'en', 'name', 'Feminist Institute for Democracy'),
(84763, 70796, 'en', 'name', 'Campaign Legal Center'),
(84764, 70797, 'en', 'name', 'South Asian Americans Leading Together'),
(84765, 70798, 'en', 'name', 'National Council for Black Studies'),
(84766, 70799, 'en', 'name', 'National Lesbian and Gay Journalists Association'),
(84767, 70800, 'en', 'name', 'South Asians for Human Rights'),
(84768, 70801, 'en', 'name', 'Turnaround for Children'),
(84769, 70802, 'en', 'name', 'Twaweza Communications'),
(84770, 70803, 'en', 'name', 'Southern Coalition for Social Justice'),
(84771, 70804, 'no_lang_code', 'name', 'Ubuntu Institute'),
(84772, 70805, 'en', 'name', 'Social Progress Imperative'),
(84773, 70806, 'en', 'name', 'The Orderly Society Trust'),
(84774, 70807, 'en', 'name', 'Uganda Association of Women Lawyers'),
(84775, 70808, 'en', 'name', 'The Center for Arts Education'),
(84776, 70809, 'en', 'name', 'Oretha Castle Haley Boulevard Merchants & Business Association'),
(84777, 70810, 'en', 'name', 'Uganda Media Women’s Association'),
(84778, 70811, 'en', 'name', 'Uganda National NGO Forum'),
(84779, 70812, 'en', 'name', 'Center for the Study of Social Policy'),
(84780, 70813, 'en', 'name', 'The GoDown Arts Centre'),
(84781, 70814, 'en', 'name', 'Southern Mutual Help Association'),
(84782, 70815, 'pt', 'name', 'Uma Gota no Oceano'),
(84783, 70816, 'en', 'name', 'Central Compilation & Translation Bureau'),
(84784, 70816, 'zh', 'name', 'äø­å¤®ē¼–čÆ‘å±€ęÆ”č¾ƒę”æę²»äøŽē»ęµŽē ”ē©¶äø­åæƒ'),
(84785, 70817, 'pt', 'name', 'Sindicato dos Trabalhadores Rurais de Caxias do Sul'),
(84786, 70818, 'no_lang_code', 'name', 'US-China Strong'),
(84787, 70819, 'en', 'name', 'UNITE-LA'),
(84788, 70820, 'en', 'name', 'Coptic Evangelical Organization for Social Services'),
(84789, 70820, 'ar', 'name', 'Ų§Ł„Ł‚ŲØŲ·ŁŠŲ© Ų§Ł„Ų„Ł†Ų¬ŁŠŁ„ŁŠŲ© للخدمات Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© في ŲŖŁ‚'),
(84790, 70821, 'en', 'name', 'United States Public Interest Research Group Education Fund'),
(84791, 70822, 'en', 'name', 'Equal Rights Trust'),
(84792, 70823, 'en', 'name', 'The Samdhana Institute'),
(84793, 70824, 'en', 'name', 'West Africa Vocational Education'),
(84794, 70825, 'en', 'name', 'The Sentencing Project'),
(84795, 70826, 'en', 'name', 'Socio-Economic Rights Institute of South Africa'),
(84796, 70827, 'es', 'name', 'Programa Venezolano de Educación Acción en Derechos Humanos'),
(84797, 70828, 'en', 'name', 'Philanthropy West Virginia'),
(84798, 70829, 'en', 'name', 'Inyathelo: The South African Institute for Advancement'),
(84799, 70830, 'en', 'name', 'The Stuttering Association for the Young'),
(84800, 70831, 'en', 'name', 'Western Organization of Resource Councils'),
(84801, 70832, 'en', 'name', 'Vietnam National Institute of Culture and Arts Studies'),
(84802, 70832, 'vi', 'name', 'Viện Văn hóa Nghệ thuįŗ­t quốc gia Việt Nam'),
(84803, 70833, 'no_lang_code', 'name', 'UNNATI'),
(84804, 70833, 'hi', 'name', 'ą¤‰ą¤Øą„ą¤Øą¤¤ą¤æ'),
(84805, 70834, 'en', 'name', 'Sunlight Foundation'),
(84806, 70835, 'en', 'name', 'Wheat Trust'),
(84807, 70836, 'en', 'name', 'Update Institute of Professional Studies'),
(84808, 70837, 'no_lang_code', 'name', 'Vikas Samvad'),
(84809, 70838, 'en', 'name', 'The W. Haywood Burns Institute'),
(84810, 70839, 'en', 'name', 'Urban Design Research Institute'),
(84811, 70840, 'en', 'name', 'New Virginia Majority Education Fund'),
(84812, 70841, 'en', 'name', 'The Wahid Institute'),
(84813, 70842, 'en', 'name', 'Watershed Support Services and Activities Network'),
(84814, 70843, 'pt', 'name', 'Instituto Vladimir Herzog'),
(84815, 70844, 'en', 'name', 'Washington Office on Latin America'),
(84816, 70845, 'no_lang_code', 'name', '1st Edge (United States)'),
(84817, 70846, 'no_lang_code', 'name', '21st Century Systems (United States)'),
(84818, 70847, 'en', 'name', 'Watershed Center'),
(84819, 70848, 'no_lang_code', 'name', 'Actoprobe (United States)'),
(84820, 70849, 'en', 'name', 'Consumer VOICE'),
(84821, 70850, 'no_lang_code', 'name', 'AMPAC (United States)'),
(84822, 70851, 'no_lang_code', 'name', 'AdƔmas Nano (United States)'),
(84823, 70852, 'no_lang_code', 'name', 'AeroStream Communications (United States)'),
(84824, 70853, 'en', 'name', 'Adaptive Cognitive Systems'),
(84825, 70854, 'no_lang_code', 'name', 'Aerotech Research (United States)'),
(84826, 70855, 'no_lang_code', 'name', 'A&P Technology (United States)'),
(84827, 70856, 'no_lang_code', 'name', 'Adeptrix (United States)'),
(84828, 70857, 'no_lang_code', 'name', 'Advent Systems (United States)'),
(84829, 70858, 'no_lang_code', 'name', 'Advratech (United States)'),
(84830, 70859, 'no_lang_code', 'name', 'Adient Medical (United States)'),
(84831, 70860, 'no_lang_code', 'name', 'Aggamin (United States)'),
(84832, 70861, 'no_lang_code', 'name', 'Adjuvance (United States)'),
(84833, 70862, 'no_lang_code', 'name', 'Aechelon Technology (United States)'),
(84834, 70863, 'no_lang_code', 'name', 'Agile RF Systems (United States)'),
(84835, 70864, 'no_lang_code', 'name', 'AdTech Optics (United States)'),
(84836, 70865, 'no_lang_code', 'name', 'Aereon (United States)'),
(84837, 70866, 'no_lang_code', 'name', 'AAVogen (United States)'),
(84838, 70867, 'no_lang_code', 'name', 'Advaita (United States)'),
(84839, 70868, 'no_lang_code', 'name', 'AgileDelta (United States)'),
(84840, 70869, 'no_lang_code', 'name', 'Ahmic Aerospace (United States)'),
(84841, 70870, 'no_lang_code', 'name', 'Aero Thermo Technology (United States)'),
(84842, 70871, 'no_lang_code', 'name', 'Absorption Systems (United States)'),
(84843, 70872, 'no_lang_code', 'name', 'AI Signal Research (United States)'),
(84844, 70873, 'no_lang_code', 'name', 'ABT Molecular Imaging (United States)'),
(84845, 70874, 'no_lang_code', 'name', 'Advanced Design Consulting USA (United States)'),
(84846, 70875, 'no_lang_code', 'name', 'Accacia International (United States)'),
(84847, 70876, 'no_lang_code', 'name', 'Automation, Information, and Management Systems (United States)'),
(84848, 70877, 'no_lang_code', 'name', 'Airflow Sciences (United States)'),
(84849, 70878, 'no_lang_code', 'name', 'Custom Electronics (United States)'),
(84850, 70879, 'no_lang_code', 'name', 'AirLift Environmental (United States)'),
(84851, 70880, 'no_lang_code', 'name', 'Accel Diagnostics (United States)'),
(84852, 70881, 'no_lang_code', 'name', 'Ajjer (United States)'),
(84853, 70882, 'no_lang_code', 'name', 'Advanced Energy Dynamics (United States)'),
(84854, 70883, 'no_lang_code', 'name', 'Akron Polymer Systems (United States)'),
(84855, 70884, 'no_lang_code', 'name', 'Advanced Fiber Sensors (United States)'),
(84856, 70885, 'no_lang_code', 'name', 'Akron Rubber Development Laboratory (United States)'),
(84857, 70886, 'no_lang_code', 'name', 'ArrayFire (United States)'),
(84858, 70887, 'no_lang_code', 'name', 'Akrotome Imaging (United States)'),
(84859, 70888, 'no_lang_code', 'name', 'AccessData (United States)'),
(84860, 70889, 'no_lang_code', 'name', 'SolAero Technologies (United States)'),
(84861, 70890, 'no_lang_code', 'name', 'Advanced Fluidics (United States)'),
(84862, 70891, 'no_lang_code', 'name', 'Akston Biosciences (United States)'),
(84863, 70892, 'no_lang_code', 'name', 'Advanced Genomic Technology (United States)'),
(84864, 70893, 'no_lang_code', 'name', 'Accord Solutions (United States)'),
(84865, 70894, 'no_lang_code', 'name', 'Allure (United States)'),
(84866, 70895, 'no_lang_code', 'name', 'Accudyne Systems (United States)'),
(84867, 70896, 'no_lang_code', 'name', 'Alaskanativetech (United States)'),
(84868, 70897, 'no_lang_code', 'name', 'Allvivo Vascular (United States)'),
(84869, 70898, 'no_lang_code', 'name', 'Accumed Systems (United States)'),
(84870, 70899, 'no_lang_code', 'name', 'Alpha Environmental (United States)'),
(84871, 70900, 'no_lang_code', 'name', 'Alba-Technic (United States)'),
(84872, 70901, 'no_lang_code', 'name', 'Advanced Life Technologies (United States)'),
(84873, 70902, 'no_lang_code', 'name', 'AlphaMicron (United States)'),
(84874, 70903, 'no_lang_code', 'name', 'Mantis Vision (Israel)'),
(84875, 70904, 'no_lang_code', 'name', 'AlphaTRAC (United States)'),
(84876, 70905, 'no_lang_code', 'name', 'Aldatu Biosciences (United States)'),
(84877, 70906, 'no_lang_code', 'name', 'Advanced Media Research (United States)'),
(84878, 70907, 'no_lang_code', 'name', 'Acorn Science & Innovation (United States)'),
(84879, 70908, 'no_lang_code', 'name', 'Altius Space Machines (United States)'),
(84880, 70909, 'no_lang_code', 'name', 'Alico Systems (United States)'),
(84881, 70910, 'no_lang_code', 'name', 'Advanced Numerical Solutions (United States)'),
(84882, 70911, 'no_lang_code', 'name', 'Amplification Technologies (United States)'),
(84883, 70912, 'no_lang_code', 'name', 'Amprion (United States)'),
(84884, 70913, 'no_lang_code', 'name', 'Advanced Optical Technologies (United States)'),
(84885, 70914, 'no_lang_code', 'name', 'Tecplot (United States)'),
(84886, 70915, 'no_lang_code', 'name', 'Amastan Technologies (United States)'),
(84887, 70916, 'no_lang_code', 'name', 'Ambient Micro (United States)'),
(84888, 70917, 'no_lang_code', 'name', 'Applied Sonics (United States)'),
(84889, 70918, 'no_lang_code', 'name', 'API Engineering (United States)'),
(84890, 70919, 'no_lang_code', 'name', 'Amydis (United States)'),
(84891, 70920, 'no_lang_code', 'name', 'AnaBios (United States)'),
(84892, 70921, 'no_lang_code', 'name', 'Amcom Communications (United States)'),
(84893, 70922, 'no_lang_code', 'name', 'Amercom (United States)'),
(84894, 70923, 'no_lang_code', 'name', 'Anagin (United States)'),
(84895, 70924, 'no_lang_code', 'name', 'Applied BioMath (United States)'),
(84896, 70925, 'no_lang_code', 'name', 'Applied Tissue Technologies (United States)'),
(84897, 70926, 'no_lang_code', 'name', 'American Engineering & Manufacturing (United States)'),
(84898, 70927, 'no_lang_code', 'name', 'Analog Photonics (United States)'),
(84899, 70928, 'no_lang_code', 'name', 'Apptronik (United States)'),
(84900, 70929, 'no_lang_code', 'name', 'American Engineering Group (United States)'),
(84901, 70930, 'no_lang_code', 'name', 'Analysis, Integration & Design (United States)'),
(84902, 70931, 'no_lang_code', 'name', 'Applied Decision Science (United States)'),
(84903, 70932, 'no_lang_code', 'name', 'American Maglev Technology (United States)'),
(84904, 70933, 'no_lang_code', 'name', 'AptaMatrix (United States)'),
(84905, 70934, 'no_lang_code', 'name', 'Analytic Measures (United States)'),
(84906, 70935, 'no_lang_code', 'name', 'Applied Design Labs (United States)'),
(84907, 70936, 'no_lang_code', 'name', 'Aptek (United States)'),
(84908, 70937, 'no_lang_code', 'name', 'Applied Engineering Management (United States)'),
(84909, 70938, 'no_lang_code', 'name', 'American Metal Processing (United States)'),
(84910, 70939, 'no_lang_code', 'name', 'Aptinyx (United States)'),
(84911, 70940, 'no_lang_code', 'name', 'Antagen Pharmaceuticals (United States)'),
(84912, 70941, 'no_lang_code', 'name', 'AnatomyWorks (United States)'),
(84913, 70942, 'no_lang_code', 'name', 'American Xtal Technology (United States)'),
(84914, 70943, 'no_lang_code', 'name', 'Aqua Resources (United States)'),
(84915, 70944, 'no_lang_code', 'name', 'Anchor Technology (United States)'),
(84916, 70945, 'no_lang_code', 'name', 'Amjet Turbine System (United States)'),
(84917, 70946, 'no_lang_code', 'name', 'AngelMed (United States)'),
(84918, 70947, 'no_lang_code', 'name', 'Applied Optronics (United States)'),
(84919, 70948, 'no_lang_code', 'name', 'ATC Materials (United States)'),
(84920, 70949, 'no_lang_code', 'name', 'Angel Secure Networks (United States)'),
(84921, 70950, 'en', 'name', 'University of Washington Applied Physics Laboratory'),
(84922, 70951, 'no_lang_code', 'name', 'Angstrom Designs (United States)'),
(84923, 70952, 'no_lang_code', 'name', 'Arborsense (United States)'),
(84924, 70953, 'no_lang_code', 'name', 'Annexon Biosciences (United States)'),
(84925, 70954, 'no_lang_code', 'name', 'Oberon (United States)'),
(84926, 70955, 'no_lang_code', 'name', 'Archimage (United States)'),
(84927, 70956, 'no_lang_code', 'name', 'SP Industries (United States)'),
(84928, 70957, 'no_lang_code', 'name', 'Arcos (United States)'),
(84929, 70958, 'no_lang_code', 'name', 'Antheia (United States)'),
(84930, 70959, 'no_lang_code', 'name', 'Arctan (United States)'),
(84931, 70960, 'no_lang_code', 'name', 'Indivior (United States)'),
(84932, 70961, 'no_lang_code', 'name', 'Argil (United States)'),
(84933, 70962, 'no_lang_code', 'name', 'Argonide (United States)'),
(84934, 70963, 'no_lang_code', 'name', 'Airborne Innovations (United States)'),
(84935, 70964, 'no_lang_code', 'name', 'Ascent Solar (United States)'),
(84936, 70965, 'no_lang_code', 'name', 'Argos Intelligence (United States)'),
(84937, 70966, 'no_lang_code', 'name', 'SenSanna (United States)'),
(84938, 70967, 'no_lang_code', 'name', 'AsclepiX Therapeutics (United States)'),
(84939, 70968, 'no_lang_code', 'name', 'Aries Design Automation (United States)'),
(84940, 70969, 'no_lang_code', 'name', 'Ash Access Technology (United States)'),
(84941, 70970, 'no_lang_code', 'name', 'Arima Genomics (United States)'),
(84942, 70971, 'no_lang_code', 'name', 'Ashton Security Laboratories (United States)'),
(84943, 70972, 'no_lang_code', 'name', 'ACF-Metals (United States)'),
(84944, 70973, 'no_lang_code', 'name', 'Arkham Technology (United States)'),
(84945, 70974, 'no_lang_code', 'name', 'Rhinomed (United States)'),
(84946, 70975, 'no_lang_code', 'name', 'AuSIM (United States)'),
(84947, 70976, 'no_lang_code', 'name', 'Austral Engineering and Software (United States)'),
(84948, 70977, 'no_lang_code', 'name', 'Cognitopia (United States)'),
(84949, 70978, 'de', 'name', 'Georesearch Forschungsgesellschaft'),
(84950, 70979, 'no_lang_code', 'name', 'Automated Precision (United States)'),
(84951, 70980, 'no_lang_code', 'name', 'Assuage Pharmaceuticals (United States)'),
(84952, 70981, 'no_lang_code', 'name', 'Advanced Space Technology Research (United States)'),
(84953, 70982, 'no_lang_code', 'name', 'Astrileux (United States)'),
(84954, 70983, 'no_lang_code', 'name', 'NETGEAR (United States)'),
(84955, 70984, 'no_lang_code', 'name', 'Astrox (United States)'),
(84956, 70985, 'no_lang_code', 'name', 'AsystBio (United States)'),
(84957, 70986, 'no_lang_code', 'name', 'AVEKA (United States)'),
(84958, 70987, 'no_lang_code', 'name', 'Unchained Labs (United States)'),
(84959, 70988, 'no_lang_code', 'name', 'Atrex Energy (United States)'),
(84960, 70989, 'no_lang_code', 'name', 'AVT Simulation (United States)'),
(84961, 70990, 'no_lang_code', 'name', 'ATSP Innovations (United States)'),
(84962, 70991, 'no_lang_code', 'name', 'Axiom (United States)'),
(84963, 70992, 'no_lang_code', 'name', 'Attainment (United States)'),
(84964, 70993, 'no_lang_code', 'name', 'Auger Communications (United States)'),
(84965, 70994, 'no_lang_code', 'name', 'AxoSim (United States)'),
(84966, 70995, 'no_lang_code', 'name', 'Hexagon (United States)'),
(84967, 70996, 'no_lang_code', 'name', 'Bashpole Software (United States)'),
(84968, 70997, 'no_lang_code', 'name', 'BST Systems (United States)'),
(84969, 70998, 'no_lang_code', 'name', 'BatAndCat Sound Labs (United States)'),
(84970, 70999, 'no_lang_code', 'name', 'Arradiance (United States)'),
(84971, 71000, 'no_lang_code', 'name', 'Arrhythmotech (United States)'),
(84972, 71001, 'no_lang_code', 'name', 'Backyard Brains (United States)'),
(84973, 71002, 'no_lang_code', 'name', 'BTS Software Solutions (United States)'),
(84974, 71003, 'no_lang_code', 'name', 'Bauer Associates (United States)'),
(84975, 71004, 'no_lang_code', 'name', 'BCO (United States)'),
(84976, 71005, 'no_lang_code', 'name', 'Biodesigns (United States)'),
(84977, 71006, 'no_lang_code', 'name', 'BioFactura (United States)'),
(84978, 71007, 'no_lang_code', 'name', 'BioFluidica (United States)'),
(84979, 71008, 'no_lang_code', 'name', 'BioHybrid Solutions (United States)'),
(84980, 71009, 'no_lang_code', 'name', 'Bakhtar Research and Engineering (United States)'),
(84981, 71010, 'no_lang_code', 'name', 'NuSep (United States)'),
(84982, 71011, 'no_lang_code', 'name', 'Precipio (United States)'),
(84983, 71012, 'no_lang_code', 'name', 'Balcones Technologies (United States)'),
(84984, 71013, 'no_lang_code', 'name', 'BioInvenu (United States)'),
(84985, 71014, 'no_lang_code', 'name', 'BioLite (United States)'),
(84986, 71015, 'no_lang_code', 'name', 'BRS Aerospace (United States)'),
(84987, 71016, 'no_lang_code', 'name', 'Behavioral Pharma (United States)'),
(84988, 71017, 'no_lang_code', 'name', 'Bally Ribbon Mills (United States)'),
(84989, 71018, 'no_lang_code', 'name', 'Bell Biosystems (United States)'),
(84990, 71019, 'no_lang_code', 'name', 'Barnstorm Research (United States)'),
(84991, 71020, 'no_lang_code', 'name', 'Biomarker Profiles (United States)'),
(84992, 71021, 'no_lang_code', 'name', 'Aura Technologies (United States)'),
(84993, 71022, 'no_lang_code', 'name', 'Berkeley Air Monitoring Group (United States)'),
(84994, 71023, 'no_lang_code', 'name', 'Materion (United States)'),
(84995, 71024, 'no_lang_code', 'name', 'Biomedical Acoustics (United States)'),
(84996, 71025, 'en', 'name', 'Biomedical Research Institute of Southern California'),
(84997, 71026, 'no_lang_code', 'name', 'Biomedical Research Laboratories (United States)'),
(84998, 71027, 'no_lang_code', 'name', 'Biosensing Instrument (United States)'),
(84999, 71028, 'no_lang_code', 'name', 'Topricin (United States)'),
(85000, 71029, 'no_lang_code', 'name', 'BioMimetic Systems (United States)'),
(85001, 71030, 'no_lang_code', 'name', 'BioVentures (United States)'),
(85002, 71031, 'no_lang_code', 'name', 'Beyond Photonics (United States)'),
(85003, 71032, 'no_lang_code', 'name', 'BGI (United States)'),
(85004, 71033, 'no_lang_code', 'name', 'Bite Technologies (United States)'),
(85005, 71034, 'no_lang_code', 'name', 'BH Sensors (United States)'),
(85006, 71035, 'no_lang_code', 'name', 'BiVACOR (United States)'),
(85007, 71036, 'no_lang_code', 'name', 'BKF Systems (United States)'),
(85008, 71037, 'no_lang_code', 'name', 'Black Swift Technologies (United States)'),
(85009, 71038, 'no_lang_code', 'name', 'BlackBox Biometrics (United States)'),
(85010, 71039, 'no_lang_code', 'name', 'Blackfynn (United States)'),
(85011, 71040, 'no_lang_code', 'name', 'Blaze Bioscience (United States)'),
(85012, 71041, 'no_lang_code', 'name', 'Binergy Scientific (United States)'),
(85013, 71042, 'no_lang_code', 'name', 'BSC Associates (United States)'),
(85014, 71043, 'no_lang_code', 'name', 'CoorsTek (United States)'),
(85015, 71044, 'no_lang_code', 'name', 'Block Engineering (United States)'),
(85016, 71045, 'no_lang_code', 'name', 'Blue Line Engineering (United States)'),
(85017, 71046, 'no_lang_code', 'name', 'Brain Wellness and Biofeedback Center (United States)'),
(85018, 71047, 'no_lang_code', 'name', 'Blue Marble Health (United States)'),
(85019, 71048, 'no_lang_code', 'name', 'Blue Therapeutics (United States)'),
(85020, 71049, 'no_lang_code', 'name', 'Brainquake (United States)'),
(85021, 71050, 'no_lang_code', 'name', 'Brains4Drones (United States)'),
(85022, 71051, 'no_lang_code', 'name', 'BMSEED (United States)'),
(85023, 71052, 'no_lang_code', 'name', 'Brainxell (United States)'),
(85024, 71053, 'no_lang_code', 'name', 'Cell Biologics (United States)'),
(85025, 71054, 'no_lang_code', 'name', 'Cambridge Electronics (United States)'),
(85026, 71055, 'no_lang_code', 'name', 'Braxton (United States)'),
(85027, 71056, 'no_lang_code', 'name', 'BrightSpec'),
(85028, 71057, 'no_lang_code', 'name', 'Camras Vision (United States)'),
(85029, 71058, 'no_lang_code', 'name', 'BoroPharm (United States)'),
(85030, 71059, 'no_lang_code', 'name', 'Camx Power (United States)'),
(85031, 71060, 'no_lang_code', 'name', 'Brite Bio (United States)'),
(85032, 71061, 'no_lang_code', 'name', 'Briteseed (United States)'),
(85033, 71062, 'no_lang_code', 'name', 'Canget BioTekpharma (United States)'),
(85034, 71063, 'no_lang_code', 'name', 'Brooks Rand Instruments (United States)'),
(85035, 71064, 'no_lang_code', 'name', 'Brown Computer Company (United States)'),
(85036, 71065, 'no_lang_code', 'name', 'Soleno Therapeutics (United States)'),
(85037, 71066, 'no_lang_code', 'name', 'Capture Pharmaceuticals (United States)'),
(85038, 71067, 'no_lang_code', 'name', 'DNA Diagnostics Center (United States)'),
(85039, 71068, 'no_lang_code', 'name', 'Boston Dynamics (United States)'),
(85040, 71069, 'no_lang_code', 'name', 'Carbon Carbon Advanced Technologies (United States)'),
(85041, 71070, 'no_lang_code', 'name', 'BryCoat (United States)'),
(85042, 71071, 'no_lang_code', 'name', 'Cell IDx (United States)'),
(85043, 71072, 'no_lang_code', 'name', 'Cardax (United States)'),
(85044, 71073, 'no_lang_code', 'name', 'Buildlab (United States)'),
(85045, 71074, 'no_lang_code', 'name', 'Cell Podium (United States)'),
(85046, 71075, 'no_lang_code', 'name', 'C-2 Innovations (United States)'),
(85047, 71076, 'no_lang_code', 'name', 'Cardialen (United States)'),
(85048, 71077, 'no_lang_code', 'name', 'Cellar Door Labs (United States)'),
(85049, 71078, 'no_lang_code', 'name', 'Cardinal Engineering (United States)'),
(85050, 71079, 'en', 'name', 'National University System'),
(85051, 71080, 'no_lang_code', 'name', 'Cairn Biosciences (United States)'),
(85052, 71081, 'no_lang_code', 'name', 'Cellf BIO (United States)'),
(85053, 71082, 'no_lang_code', 'name', 'Surgical Energetics (United States)'),
(85054, 71083, 'no_lang_code', 'name', 'Cardiosolv Ablation Technologies (United States)'),
(85055, 71084, 'no_lang_code', 'name', 'Caktus Group (United States)'),
(85056, 71085, 'no_lang_code', 'name', 'CellOptic (United States)'),
(85057, 71086, 'no_lang_code', 'name', 'Care Progress (United States)'),
(85058, 71087, 'no_lang_code', 'name', 'Calibrant Digital (United States)'),
(85059, 71088, 'no_lang_code', 'name', 'CellSight Technologies (United States)'),
(85060, 71089, 'en', 'name', 'Northwest Evaluation Association'),
(85061, 71090, 'no_lang_code', 'name', 'Cenna Biosciences (United States)'),
(85062, 71091, 'no_lang_code', 'name', 'Carrera Bioscience (United States)'),
(85063, 71092, 'no_lang_code', 'name', 'Chip Scan (United States)'),
(85064, 71093, 'no_lang_code', 'name', 'Case Engineering (United States)'),
(85065, 71094, 'no_lang_code', 'name', 'Centripetal (United States)'),
(85066, 71095, 'no_lang_code', 'name', 'Cofactor Genomics (United States)'),
(85067, 71096, 'no_lang_code', 'name', 'Cassia (United States)'),
(85068, 71097, 'no_lang_code', 'name', 'Century (United States)'),
(85069, 71098, 'no_lang_code', 'name', 'ChromaTan'),
(85070, 71099, 'no_lang_code', 'name', 'Cerahelix (United States)'),
(85071, 71100, 'no_lang_code', 'name', 'Chromation (United States)'),
(85072, 71101, 'no_lang_code', 'name', 'Cognionics (United States)'),
(85073, 71102, 'no_lang_code', 'name', 'Ceebus Technologies (United States)'),
(85074, 71103, 'no_lang_code', 'name', 'Cognitive Electronics (United States)'),
(85075, 71104, 'en', 'name', 'Cognitive Engineering Research Institute'),
(85076, 71105, 'no_lang_code', 'name', 'Ebb Therapeutics (United States)'),
(85077, 71106, 'no_lang_code', 'name', 'Certerra (United States)'),
(85078, 71107, 'no_lang_code', 'name', 'Cirrus Aircraft (United States)'),
(85079, 71108, 'no_lang_code', 'name', 'CohesionForce (United States)'),
(85080, 71109, 'no_lang_code', 'name', 'Concentris Systems (United States)'),
(85081, 71110, 'no_lang_code', 'name', 'Cole Engineering Services (United States)'),
(85082, 71111, 'no_lang_code', 'name', 'Concepts to Systems (United States)'),
(85083, 71112, 'no_lang_code', 'name', 'Chadwick Optical (United States)'),
(85084, 71113, 'no_lang_code', 'name', 'Concordance Health Solutions (United States)'),
(85085, 71114, 'no_lang_code', 'name', 'Champions Oncology (United States)'),
(85086, 71115, 'no_lang_code', 'name', 'Colorado Power Electronics (United States)'),
(85087, 71116, 'no_lang_code', 'name', 'Conjugon (United States)'),
(85088, 71117, 'no_lang_code', 'name', 'CM-Tec (United States)'),
(85089, 71118, 'no_lang_code', 'name', 'CheckUp & Choices (United States)'),
(85090, 71119, 'no_lang_code', 'name', 'CMA Technologies (United States)'),
(85091, 71120, 'no_lang_code', 'name', 'Connecticut Analytical Corporation (United States)'),
(85092, 71121, 'no_lang_code', 'name', 'Chem-Master International (United States)'),
(85093, 71122, 'no_lang_code', 'name', 'Coapt (United States)'),
(85094, 71123, 'no_lang_code', 'name', 'Conrad Technologies (United States)'),
(85095, 71124, 'no_lang_code', 'name', 'Coating Systems Laboratories (United States)'),
(85096, 71125, 'no_lang_code', 'name', 'Cobra Design & Engineering (United States)'),
(85097, 71126, 'en', 'name', 'Global Impact'),
(85098, 71127, 'no_lang_code', 'name', 'Command and Control Technologies Corporation (United States)'),
(85099, 71128, 'no_lang_code', 'name', 'Codar Ocean Sensors (United States)'),
(85100, 71129, 'no_lang_code', 'name', 'Codex Biosolutions (United States)'),
(85101, 71130, 'no_lang_code', 'name', 'Cortrol Services (United States)'),
(85102, 71131, 'no_lang_code', 'name', 'Genpact (United States)'),
(85103, 71132, 'no_lang_code', 'name', 'Custom Scientific (United States)'),
(85104, 71133, 'no_lang_code', 'name', 'CoolCad Electronics (United States)'),
(85105, 71134, 'no_lang_code', 'name', 'Lightening Energy (United States)'),
(85106, 71135, 'no_lang_code', 'name', 'Coramed (United States)'),
(85107, 71136, 'no_lang_code', 'name', 'CyberOptics (United States)'),
(85108, 71137, 'no_lang_code', 'name', 'COSM Advanced Manufacturing Systems (United States)'),
(85109, 71138, 'no_lang_code', 'name', 'Coreform (United States)'),
(85110, 71139, 'no_lang_code', 'name', 'Cynvec (United States)'),
(85111, 71140, 'no_lang_code', 'name', 'Intelli-Firewall (United States)'),
(85112, 71141, 'no_lang_code', 'name', 'Corgenix (United States)'),
(85113, 71142, 'no_lang_code', 'name', 'Coridea (United States)'),
(85114, 71143, 'no_lang_code', 'name', 'Cyteir Therapeutics (United States)'),
(85115, 71144, 'no_lang_code', 'name', 'Composites Automation (United States)'),
(85116, 71145, 'no_lang_code', 'name', 'Countervail Corporation (United States)'),
(85117, 71146, 'no_lang_code', 'name', 'Compositex (United States)'),
(85118, 71147, 'no_lang_code', 'name', 'CytoInformatics (United States)'),
(85119, 71148, 'no_lang_code', 'name', 'CytoLumina Technologies (United States)'),
(85120, 71149, 'no_lang_code', 'name', 'Cova (United States)'),
(85121, 71150, 'no_lang_code', 'name', 'Corrdesa (United States)'),
(85122, 71151, 'no_lang_code', 'name', 'Cytonics (United States)'),
(85123, 71152, 'no_lang_code', 'name', 'Cytoptics (United States)'),
(85124, 71153, 'no_lang_code', 'name', 'Ipsos (United States)'),
(85125, 71154, 'no_lang_code', 'name', 'Cortest (United States)'),
(85126, 71155, 'no_lang_code', 'name', 'Cytovale (United States)'),
(85127, 71156, 'no_lang_code', 'name', 'Cox & Company (United States)'),
(85128, 71157, 'no_lang_code', 'name', 'DHPC Technologies (United States)'),
(85129, 71158, 'no_lang_code', 'name', 'D-2 Incorporated (United States)'),
(85130, 71159, 'no_lang_code', 'name', 'Detectogen (United States)'),
(85131, 71160, 'no_lang_code', 'name', 'cPacket (United States)'),
(85132, 71161, 'no_lang_code', 'name', 'DRG Undersea Consulting (United States)'),
(85133, 71162, 'no_lang_code', 'name', 'Detector Technology (United States)'),
(85134, 71163, 'no_lang_code', 'name', 'Frontier Energy (United States)'),
(85135, 71164, 'no_lang_code', 'name', 'Creative Aero Engineering Solutions (United States)'),
(85136, 71165, 'no_lang_code', 'name', 'Creative Light Source (United States)'),
(85137, 71166, 'no_lang_code', 'name', 'DeviceFarm (United States)'),
(85138, 71167, 'no_lang_code', 'name', 'Daico Industries (United States)'),
(85139, 71168, 'no_lang_code', 'name', 'Creative MicroSystems (United States)'),
(85140, 71169, 'no_lang_code', 'name', 'DexMat (United States)'),
(85141, 71170, 'no_lang_code', 'name', 'Dfuzion (United States)'),
(85142, 71171, 'no_lang_code', 'name', 'DayStar (United States)'),
(85143, 71172, 'no_lang_code', 'name', 'DCN (United States)'),
(85144, 71173, 'no_lang_code', 'name', 'Creative Technologies (United States)'),
(85145, 71174, 'no_lang_code', 'name', 'Daktari Diagnostics (United States)'),
(85146, 71175, 'no_lang_code', 'name', 'Dayton T. Brown (United States)'),
(85147, 71176, 'no_lang_code', 'name', 'Crecare (United States)'),
(85148, 71177, 'no_lang_code', 'name', 'dbS Productions (United States)'),
(85149, 71178, 'no_lang_code', 'name', 'Crestone (United States)'),
(85150, 71179, 'no_lang_code', 'name', 'Model Driven Solutions (United States)'),
(85151, 71180, 'no_lang_code', 'name', 'DBV Technology (United States)'),
(85152, 71181, 'no_lang_code', 'name', 'American Systems (United States)'),
(85153, 71182, 'no_lang_code', 'name', 'DoseOptics (United States)'),
(85154, 71183, 'no_lang_code', 'name', 'Diamir (United States)'),
(85155, 71184, 'no_lang_code', 'name', 'Critical Innovations (United States)'),
(85156, 71185, 'no_lang_code', 'name', 'CRO Laboratories (United States)'),
(85157, 71186, 'no_lang_code', 'name', 'DecImmune Therapeutics (United States)'),
(85158, 71187, 'no_lang_code', 'name', 'Dust Identity (United States)'),
(85159, 71188, 'no_lang_code', 'name', 'Diapin Therapeutics (United States)'),
(85160, 71189, 'no_lang_code', 'name', 'Dovetail Genomics (United States)'),
(85161, 71190, 'no_lang_code', 'name', 'Diassess (United States)'),
(85162, 71191, 'no_lang_code', 'name', 'DEI Holdings (United States)'),
(85163, 71192, 'no_lang_code', 'name', 'Light Curable Coatings (United States)'),
(85164, 71193, 'no_lang_code', 'name', 'Deep Ocean Engineering (United States)'),
(85165, 71194, 'no_lang_code', 'name', 'Coltene (United States)'),
(85166, 71195, 'no_lang_code', 'name', 'C&R Technologies (United States)'),
(85167, 71196, 'no_lang_code', 'name', 'dTEC Systems (United States)'),
(85168, 71197, 'no_lang_code', 'name', 'Digital Science Technologies (United States)'),
(85169, 71198, 'no_lang_code', 'name', 'Curl Bio (United States)'),
(85170, 71199, 'no_lang_code', 'name', 'Defense Engineering Corporation (United States)'),
(85171, 71200, 'no_lang_code', 'name', 'Discerning Technologies (United States)'),
(85172, 71201, 'no_lang_code', 'name', 'Curoverse (United States)'),
(85173, 71202, 'no_lang_code', 'name', 'Dura Biotech (United States)'),
(85174, 71203, 'no_lang_code', 'name', 'StereoVision Imaging (United States)'),
(85175, 71204, 'no_lang_code', 'name', 'Durbin Group (United States)'),
(85176, 71205, 'no_lang_code', 'name', 'Edge One (United States)'),
(85177, 71206, 'no_lang_code', 'name', 'DWA Aluminum Composites (United States)'),
(85178, 71207, 'no_lang_code', 'name', 'Digital Wave (United States)'),
(85179, 71208, 'no_lang_code', 'name', 'DigitalSpace (United States)'),
(85180, 71209, 'no_lang_code', 'name', 'Delaware Diamond Knives (United States)'),
(85181, 71210, 'en', 'name', 'Delima Associates'),
(85182, 71211, 'no_lang_code', 'name', 'DxTerity (United States)'),
(85183, 71212, 'no_lang_code', 'name', 'Direct Electron (United States)'),
(85184, 71213, 'no_lang_code', 'name', 'Dynalene (United States)'),
(85185, 71214, 'no_lang_code', 'name', 'Denovx (United States)'),
(85186, 71215, 'no_lang_code', 'name', 'DiSTI (United States)'),
(85187, 71216, 'no_lang_code', 'name', '​Eicosis (United States)'),
(85188, 71217, 'no_lang_code', 'name', 'Dependable Computing (United States)'),
(85189, 71218, 'no_lang_code', 'name', 'Ejenta (United States)'),
(85190, 71219, 'no_lang_code', 'name', 'Murphy Oil Corporation (United States)'),
(85191, 71220, 'no_lang_code', 'name', 'Mood Media (United States)'),
(85192, 71221, 'no_lang_code', 'name', 'Dog Star Technologies (United States)'),
(85193, 71222, 'no_lang_code', 'name', 'Elcon (United States)'),
(85194, 71223, 'no_lang_code', 'name', 'Electric Funstuff (United States)'),
(85195, 71224, 'no_lang_code', 'name', 'Electric Propulsion Laboratory (United States)'),
(85196, 71225, 'en', 'name', 'Dynamic Object Language Labs'),
(85197, 71226, 'no_lang_code', 'name', 'Dynamic Systems Integration (United States)'),
(85198, 71227, 'no_lang_code', 'name', 'DZYNE Technologies (United States)'),
(85199, 71228, 'no_lang_code', 'name', 'Electroformed Nickel (United States)'),
(85200, 71229, 'no_lang_code', 'name', 'E-Line Media (United States)'),
(85201, 71230, 'no_lang_code', 'name', 'Electroimpact (United States)'),
(85202, 71231, 'no_lang_code', 'name', 'Electron Optica (United States)'),
(85203, 71232, 'no_lang_code', 'name', 'inTACT (United States)'),
(85204, 71233, 'no_lang_code', 'name', 'Elex Biotech (United States)'),
(85205, 71234, 'no_lang_code', 'name', 'Ellison Laboratories (United States)'),
(85206, 71235, 'no_lang_code', 'name', 'Brown and Caldwell (United States)'),
(85207, 71236, 'no_lang_code', 'name', 'Elysium Therapeutics (United States)'),
(85208, 71237, 'no_lang_code', 'name', 'eMagin (United States)'),
(85209, 71238, 'no_lang_code', 'name', 'Eclipse Bioinnovations (United States)'),
(85210, 71239, 'no_lang_code', 'name', 'Embedded Systems (United States)'),
(85211, 71240, 'no_lang_code', 'name', 'Eddy (United States)'),
(85212, 71241, 'no_lang_code', 'name', 'Edge Case Research (United States)'),
(85213, 71242, 'no_lang_code', 'name', 'Descartes Labs (United States)'),
(85214, 71243, 'no_lang_code', 'name', 'Emerald Sky Technologies'),
(85215, 71244, 'no_lang_code', 'name', 'ECD for the Masses (United States)'),
(85216, 71245, 'no_lang_code', 'name', 'Design Intelligence (United States)'),
(85217, 71246, 'no_lang_code', 'name', 'Emmune (United States)'),
(85218, 71247, 'no_lang_code', 'name', 'Enthought (United States)'),
(85219, 71248, 'no_lang_code', 'name', 'Empirical Systems Aerospace (United States)'),
(85220, 71249, 'no_lang_code', 'name', 'Eskra Technical Products (United States)'),
(85221, 71250, 'no_lang_code', 'name', 'Telesis Corporation (United States)'),
(85222, 71251, 'no_lang_code', 'name', 'Entropic Systems (United States)'),
(85223, 71252, 'no_lang_code', 'name', 'Endomimetics (United States)'),
(85224, 71253, 'no_lang_code', 'name', 'ETI Instrument Systems (United States)'),
(85225, 71254, 'no_lang_code', 'name', 'Envention (United States)'),
(85226, 71255, 'no_lang_code', 'name', 'EndoProtech (United States)'),
(85227, 71256, 'no_lang_code', 'name', 'Ferric (United States)'),
(85228, 71257, 'no_lang_code', 'name', 'Envirochem (United States)'),
(85229, 71258, 'no_lang_code', 'name', 'Eureka Aerospace (United States)'),
(85230, 71259, 'no_lang_code', 'name', 'FGH Biotech (United States)'),
(85231, 71260, 'no_lang_code', 'name', 'VSE Corporation (United States)'),
(85232, 71261, 'no_lang_code', 'name', 'Evorx (United States)'),
(85233, 71262, 'no_lang_code', 'name', 'Fibralign (United States)'),
(85234, 71263, 'no_lang_code', 'name', 'Eon Corporation (United States)'),
(85235, 71264, 'no_lang_code', 'name', 'Energesis Pharmaceuticals (United States)'),
(85236, 71265, 'en', 'name', 'Exact Sports'),
(85237, 71266, 'no_lang_code', 'name', 'EP Analytics (United States)'),
(85238, 71267, 'no_lang_code', 'name', 'Energy Concepts (United States)'),
(85239, 71268, 'no_lang_code', 'name', 'EpiBone (United States)'),
(85240, 71269, 'no_lang_code', 'name', 'Expedition Technology (United States)'),
(85241, 71270, 'no_lang_code', 'name', 'Fifth Gait Technologies (United States)'),
(85242, 71271, 'no_lang_code', 'name', 'Exos (United States)'),
(85243, 71272, 'no_lang_code', 'name', 'Energy Quest Technologies (United States)'),
(85244, 71273, 'no_lang_code', 'name', 'Fimbrion Therapeutics (United States)'),
(85245, 71274, 'no_lang_code', 'name', 'Experiad (United States)'),
(85246, 71275, 'no_lang_code', 'name', 'Enformia (United States)'),
(85247, 71276, 'no_lang_code', 'name', 'Engin-Ic (United States)'),
(85248, 71277, 'no_lang_code', 'name', 'Fiore Industries (United States)'),
(85249, 71278, 'no_lang_code', 'name', 'Episensors (United States)'),
(85250, 71279, 'no_lang_code', 'name', 'Extreme Diagnostics (United States)'),
(85251, 71280, 'no_lang_code', 'name', 'Engineering Matters (United States)'),
(85252, 71281, 'no_lang_code', 'name', 'Ezenia (United States)'),
(85253, 71282, 'no_lang_code', 'name', 'Firestar Technologies (United States)'),
(85254, 71283, 'no_lang_code', 'name', 'Engineering Science Analysis (United States)'),
(85255, 71284, 'no_lang_code', 'name', 'Fabrico Technology (United States)'),
(85256, 71285, 'no_lang_code', 'name', 'Enhanced Systems Consulting (United States)'),
(85257, 71286, 'no_lang_code', 'name', 'CounterPath (United States)'),
(85258, 71287, 'no_lang_code', 'name', 'ERA Software Systems (United States)'),
(85259, 71288, 'no_lang_code', 'name', 'Fischer Imaging (United States)'),
(85260, 71289, 'no_lang_code', 'name', 'EnSolve Biosystems (United States)'),
(85261, 71290, 'no_lang_code', 'name', 'Colfax (United States)'),
(85262, 71291, 'no_lang_code', 'name', 'Erallo Technologies (United States)'),
(85263, 71292, 'no_lang_code', 'name', 'Entanglement Technologies (United States)'),
(85264, 71293, 'no_lang_code', 'name', 'Entech (United States)'),
(85265, 71294, 'no_lang_code', 'name', 'Flashback Technologies (United States)'),
(85266, 71295, 'no_lang_code', 'name', 'Fairmount Technologies (United States)'),
(85267, 71296, 'no_lang_code', 'name', 'Fallbrook Engineering (United States)'),
(85268, 71297, 'no_lang_code', 'name', 'Esensors (United States)'),
(85269, 71298, 'no_lang_code', 'name', 'Falmouth Scientific (United States)'),
(85270, 71299, 'no_lang_code', 'name', 'Flex Force Enterprises (United States)'),
(85271, 71300, 'no_lang_code', 'name', 'Enterprise Sciences (United States)'),
(85272, 71301, 'no_lang_code', 'name', 'Flexsys (United States)'),
(85273, 71302, 'no_lang_code', 'name', 'Function Promoting Therapies (United States)'),
(85274, 71303, 'no_lang_code', 'name', 'Generation 2 Materials Technology (United States)'),
(85275, 71304, 'no_lang_code', 'name', 'KeyW (United States)'),
(85276, 71305, 'no_lang_code', 'name', 'Fuse (United States)'),
(85277, 71306, 'no_lang_code', 'name', 'Flight Works (United States)'),
(85278, 71307, 'no_lang_code', 'name', 'Flightware (United States)'),
(85279, 71308, 'no_lang_code', 'name', 'Fuss & O’Neill (United States)'),
(85280, 71309, 'no_lang_code', 'name', 'Fluent (United States)'),
(85281, 71310, 'no_lang_code', 'name', 'Flometrics (United States)'),
(85282, 71311, 'no_lang_code', 'name', 'Fluid Synchrony (United States)'),
(85283, 71312, 'no_lang_code', 'name', 'GenomeDesigns Lab (United States)'),
(85284, 71313, 'no_lang_code', 'name', 'GC Systems (United States)'),
(85285, 71314, 'no_lang_code', 'name', 'Globe Composite (United States)'),
(85286, 71315, 'no_lang_code', 'name', 'Glosten (United States)'),
(85287, 71316, 'no_lang_code', 'name', 'Glucan Biorenewables (United States)'),
(85288, 71317, 'no_lang_code', 'name', 'Fluorescence Innovations (United States)'),
(85289, 71318, 'no_lang_code', 'name', 'Gadusol Laboratories (United States)'),
(85290, 71319, 'no_lang_code', 'name', 'Fluoresprobe Sciences (United States)'),
(85291, 71320, 'no_lang_code', 'name', 'GlyTech (United States)'),
(85292, 71321, 'no_lang_code', 'name', 'Gaia Herbs (United States)'),
(85293, 71322, 'no_lang_code', 'name', 'FocusStart (United States)'),
(85294, 71323, 'no_lang_code', 'name', 'Goleta Engineering (United States)'),
(85295, 71324, 'no_lang_code', 'name', 'Folded Structures (United States)'),
(85296, 71325, 'no_lang_code', 'name', 'GoofyFoot Labs (United States)'),
(85297, 71326, 'no_lang_code', 'name', 'Teraphysics (United States)'),
(85298, 71327, 'no_lang_code', 'name', 'Fiber Optic Manufacturing in Space (United States)'),
(85299, 71328, 'no_lang_code', 'name', 'Keywords Studios (United States)'),
(85300, 71329, 'no_lang_code', 'name', 'Gougeon Brothers (United States)'),
(85301, 71330, 'no_lang_code', 'name', 'GPB Scientific (United States)'),
(85302, 71331, 'no_lang_code', 'name', 'GPD Optoelectronics (United States)'),
(85303, 71332, 'no_lang_code', 'name', 'GamesThatWork (United States)'),
(85304, 71333, 'no_lang_code', 'name', 'Gamma Therapeutics (United States)'),
(85305, 71334, 'no_lang_code', 'name', 'For Robin (United States)'),
(85306, 71335, 'no_lang_code', 'name', 'Graf Research (United States)'),
(85307, 71336, 'no_lang_code', 'name', 'Vector (United States)'),
(85308, 71337, 'no_lang_code', 'name', 'Grainflow Dynamics (United States)');
INSERT INTO `ror_settings` VALUES
(85309, 71338, 'no_lang_code', 'name', 'Foresite (United States)'),
(85310, 71339, 'no_lang_code', 'name', 'TerraGo (United States)'),
(85311, 71340, 'en', 'name', 'Green Technology'),
(85312, 71341, 'no_lang_code', 'name', 'Gastops (United States)'),
(85313, 71342, 'no_lang_code', 'name', 'Geost (United States)'),
(85314, 71343, 'no_lang_code', 'name', 'GHKN Engineering (United States)'),
(85315, 71344, 'no_lang_code', 'name', 'Forsythe Technologies (United States)'),
(85316, 71345, 'no_lang_code', 'name', 'Greensea Systems (United States)'),
(85317, 71346, 'no_lang_code', 'name', 'Gismo Therapeutics (United States)'),
(85318, 71347, 'no_lang_code', 'name', 'Grid Logic (United States)'),
(85319, 71348, 'en', 'name', 'Gear Research Institute'),
(85320, 71349, 'no_lang_code', 'name', 'Fort Environmental Laboratories (United States)'),
(85321, 71350, 'no_lang_code', 'name', 'E7 Ventures (United States)'),
(85322, 71351, 'no_lang_code', 'name', 'Gem Power (United States)'),
(85323, 71352, 'no_lang_code', 'name', 'Fortem Technologies (United States)'),
(85324, 71353, 'no_lang_code', 'name', 'Gemini Computers (United States)'),
(85325, 71354, 'no_lang_code', 'name', 'Global Aircraft (United States)'),
(85326, 71355, 'no_lang_code', 'name', 'Gen-9 (United States)'),
(85327, 71356, 'no_lang_code', 'name', 'Group W (United States)'),
(85328, 71357, 'no_lang_code', 'name', 'Forward Photonics (United States)'),
(85329, 71358, 'no_lang_code', 'name', 'FoVI3D (United States)'),
(85330, 71359, 'no_lang_code', 'name', 'GTD Unlimited (United States)'),
(85331, 71360, 'no_lang_code', 'name', 'Fracsun (United States)'),
(85332, 71361, 'no_lang_code', 'name', 'Guernsey Coating Laboratories (United States)'),
(85333, 71362, 'no_lang_code', 'name', 'Genapsys (United States)'),
(85334, 71363, 'no_lang_code', 'name', 'Guidestar Optical Systems (United States)'),
(85335, 71364, 'no_lang_code', 'name', 'Genendeavor (United States)'),
(85336, 71365, 'no_lang_code', 'name', 'Global Science & Technology (United States)'),
(85337, 71366, 'no_lang_code', 'name', 'Frequency Management International (United States)'),
(85338, 71367, 'no_lang_code', 'name', 'Front Range Engineering (United States)'),
(85339, 71368, 'no_lang_code', 'name', 'General Oceanics (United States)'),
(85340, 71369, 'no_lang_code', 'name', 'Frontier Aerospace Corporation (United States)'),
(85341, 71370, 'no_lang_code', 'name', 'Intertek (United States)'),
(85342, 71371, 'no_lang_code', 'name', 'HNU Photonics (United States)'),
(85343, 71372, 'no_lang_code', 'name', 'HS Owen (United States)'),
(85344, 71373, 'fr', 'name', 'HƓpital Psychiatrique du Beau Vallon'),
(85345, 71373, 'en', 'name', 'Le Beau Vallon - Psychiatric Hospital'),
(85346, 71374, 'no_lang_code', 'name', 'H6 Systems (United States)'),
(85347, 71375, 'no_lang_code', 'name', 'FSCX (United States)'),
(85348, 71376, 'no_lang_code', 'name', 'Fulcrum Composites (United States)'),
(85349, 71377, 'no_lang_code', 'name', 'Health and Education Research Management and Epidemiologic Services (United States)'),
(85350, 71378, 'no_lang_code', 'name', 'Herrick Technology Laboratories (United States)'),
(85351, 71379, 'no_lang_code', 'name', 'Halcyon Biomedical (United States)'),
(85352, 71380, 'no_lang_code', 'name', 'Ideas Engineering & Technology (United States)'),
(85353, 71381, 'no_lang_code', 'name', 'ID Genomics (United States)'),
(85354, 71382, 'no_lang_code', 'name', 'Hesperos (United States)'),
(85355, 71383, 'no_lang_code', 'name', 'Heureka (United States)'),
(85356, 71384, 'no_lang_code', 'name', 'iFIT Prosthetics (United States)'),
(85357, 71385, 'no_lang_code', 'name', 'Hanby Environmental (United States)'),
(85358, 71386, 'no_lang_code', 'name', 'Hydroacoustics (United States)'),
(85359, 71387, 'no_lang_code', 'name', 'Hexagon Interactive (United States)'),
(85360, 71388, 'no_lang_code', 'name', 'iK9'),
(85361, 71389, 'no_lang_code', 'name', 'Hardric Laboratories (United States)'),
(85362, 71390, 'no_lang_code', 'name', 'Hf Designworks (United States)'),
(85363, 71391, 'no_lang_code', 'name', 'Hydronalix (United States)'),
(85364, 71392, 'no_lang_code', 'name', 'HarmonoLogic (United States)'),
(85365, 71393, 'no_lang_code', 'name', 'ISCO International (United States)'),
(85366, 71394, 'no_lang_code', 'name', 'Harp Engineering (United States)'),
(85367, 71395, 'no_lang_code', 'name', 'Hartsci (United States)'),
(85368, 71396, 'no_lang_code', 'name', 'High Throughput Biology (United States)'),
(85369, 71397, 'no_lang_code', 'name', 'ImCare Biotech (United States)'),
(85370, 71398, 'no_lang_code', 'name', 'Hawaii Hydrogen Carriers (United States)'),
(85371, 71399, 'no_lang_code', 'name', 'HyPerComp Engineering (United States)'),
(85372, 71400, 'no_lang_code', 'name', 'Immuno Technologies (United States)'),
(85373, 71401, 'no_lang_code', 'name', 'Hays Innovations (United States)'),
(85374, 71402, 'no_lang_code', 'name', 'Hocuslocus (United States)'),
(85375, 71403, 'no_lang_code', 'name', 'Immunosciences Lab (United States)'),
(85376, 71404, 'no_lang_code', 'name', 'Hoh Aeronautics (United States)'),
(85377, 71405, 'no_lang_code', 'name', 'Hyperion Technology Group (United States)'),
(85378, 71406, 'no_lang_code', 'name', 'Hdm Systems (United States)'),
(85379, 71407, 'no_lang_code', 'name', 'H-DOX (United States)'),
(85380, 71408, 'no_lang_code', 'name', 'ImpeDx Diagnostics (United States)'),
(85381, 71409, 'no_lang_code', 'name', 'Holoeye (United States)'),
(85382, 71410, 'no_lang_code', 'name', 'Health Decision Technologies (United States)'),
(85383, 71411, 'no_lang_code', 'name', 'Comfort Talk (United States)'),
(85384, 71412, 'no_lang_code', 'name', 'Health Innovations (United States)'),
(85385, 71413, 'no_lang_code', 'name', 'Valve (United States)'),
(85386, 71414, 'no_lang_code', 'name', 'Hope Pharmaceuticals (United States)'),
(85387, 71415, 'no_lang_code', 'name', 'In Vitro Admet Laboratories (United States)'),
(85388, 71416, 'no_lang_code', 'name', 'Healthcare Technologies and Methods (United States)'),
(85389, 71417, 'no_lang_code', 'name', 'InVivo Analytics (United States)'),
(85390, 71418, 'no_lang_code', 'name', 'In Depth Engineering (United States)'),
(85391, 71419, 'no_lang_code', 'name', 'iDEAL Technology (United States)'),
(85392, 71420, 'no_lang_code', 'name', 'Inanovate (United States)'),
(85393, 71421, 'no_lang_code', 'name', 'Inceptus (United States)'),
(85394, 71422, 'no_lang_code', 'name', 'Tricol Biomedical (United States)'),
(85395, 71423, 'no_lang_code', 'name', 'Industrial & Biomedical Sensors (United States)'),
(85396, 71424, 'no_lang_code', 'name', 'IC Tech (United States)'),
(85397, 71425, 'no_lang_code', 'name', 'h2med (United States)'),
(85398, 71426, 'no_lang_code', 'name', 'Howell Laboratories (United States)'),
(85399, 71427, 'no_lang_code', 'name', 'Icosystem (United States)'),
(85400, 71428, 'no_lang_code', 'name', 'InEnTec (United States)'),
(85401, 71429, 'no_lang_code', 'name', 'Hqphotonics (United States)'),
(85402, 71430, 'no_lang_code', 'name', 'Idaho Scientific (United States)'),
(85403, 71431, 'no_lang_code', 'name', 'InfoAssure (United States)'),
(85404, 71432, 'no_lang_code', 'name', 'Inertial Labs (United States)'),
(85405, 71433, 'no_lang_code', 'name', 'Innovative Design Engineeering & Analysis (United States)'),
(85406, 71434, 'no_lang_code', 'name', 'HTD Biosystems (United States)'),
(85407, 71435, 'no_lang_code', 'name', 'InertialWave (United States)'),
(85408, 71436, 'no_lang_code', 'name', 'Innovital Systems (United States)'),
(85409, 71437, 'en', 'name', 'Purdue University Northwest'),
(85410, 71438, 'no_lang_code', 'name', 'Infinid Technologies (United States)'),
(85411, 71439, 'no_lang_code', 'name', 'Inovatia Laboratories (United States)'),
(85412, 71440, 'no_lang_code', 'name', 'Inovex (United States)'),
(85413, 71441, 'no_lang_code', 'name', 'MorganFranklin (United States)'),
(85414, 71442, 'no_lang_code', 'name', 'Inscope International (United States)'),
(85415, 71443, 'no_lang_code', 'name', 'Critical Imaging (United States)'),
(85416, 71444, 'no_lang_code', 'name', 'Infinite Technologies (United States)'),
(85417, 71445, 'no_lang_code', 'name', 'Infinity (United States)'),
(85418, 71446, 'no_lang_code', 'name', 'Infrascan (United States)'),
(85419, 71447, 'no_lang_code', 'name', 'Inscopix (United States)'),
(85420, 71448, 'no_lang_code', 'name', 'InflamaCore (United States)'),
(85421, 71449, 'no_lang_code', 'name', 'Calando Pharmaceuticals (United States)'),
(85422, 71450, 'no_lang_code', 'name', 'Inhibrx (United States)'),
(85423, 71451, 'no_lang_code', 'name', 'Influx (United States)'),
(85424, 71452, 'no_lang_code', 'name', 'Insilixa (United States)'),
(85425, 71453, 'no_lang_code', 'name', 'Integrated Optical Circuit Consultants (United States)'),
(85426, 71454, 'no_lang_code', 'name', 'Inkbit (United States)'),
(85427, 71455, 'no_lang_code', 'name', 'Intraband (United States)'),
(85428, 71456, 'no_lang_code', 'name', 'Integration Innovation (United States)'),
(85429, 71457, 'no_lang_code', 'name', 'InnaVasc Medical (United States)'),
(85430, 71458, 'no_lang_code', 'name', 'Integrity Systems (United States)'),
(85431, 71459, 'no_lang_code', 'name', 'Intuidex (United States)'),
(85432, 71460, 'no_lang_code', 'name', 'TPK (United States)'),
(85433, 71461, 'no_lang_code', 'name', 'Inteligistics (United States)'),
(85434, 71462, 'no_lang_code', 'name', 'InnovaPrep (United States)'),
(85435, 71463, 'no_lang_code', 'name', 'intuVision (United States)'),
(85436, 71464, 'no_lang_code', 'name', 'Innovatech (United States)'),
(85437, 71465, 'no_lang_code', 'name', 'S&C Electric Company (United States)'),
(85438, 71466, 'no_lang_code', 'name', 'Elbit Systems (United States)'),
(85439, 71467, 'no_lang_code', 'name', 'Io Therapeutics (United States)'),
(85440, 71468, 'no_lang_code', 'name', 'IntelliWheels (United States)'),
(85441, 71469, 'no_lang_code', 'name', 'Intematix (United States)'),
(85442, 71470, 'no_lang_code', 'name', 'IonField Systems (United States)'),
(85443, 71471, 'no_lang_code', 'name', 'INTER Materials (United States)'),
(85444, 71472, 'no_lang_code', 'name', 'Innovative Imaging and Research (United States)'),
(85445, 71473, 'no_lang_code', 'name', 'Innovative Materials Testing Technologies (United States)'),
(85446, 71474, 'no_lang_code', 'name', 'Innovative Materials & Processes (United States)'),
(85447, 71475, 'no_lang_code', 'name', 'SmugMug (United States)'),
(85448, 71476, 'no_lang_code', 'name', 'Instrumental Polymer Technologies (United States)'),
(85449, 71477, 'no_lang_code', 'name', 'Novetta (United States)'),
(85450, 71478, 'no_lang_code', 'name', 'Intact Genomics (United States)'),
(85451, 71479, 'no_lang_code', 'name', 'Intan Technologies (United States)'),
(85452, 71480, 'no_lang_code', 'name', 'IR Dynamics (United States)'),
(85453, 71481, 'no_lang_code', 'name', 'Integra (United States)'),
(85454, 71482, 'no_lang_code', 'name', 'Innoveering (United States)'),
(85455, 71483, 'no_lang_code', 'name', 'Integran (United States)'),
(85456, 71484, 'no_lang_code', 'name', 'Rochester Precision Optics (United States)'),
(85457, 71485, 'no_lang_code', 'name', '4Power (United States)'),
(85458, 71486, 'no_lang_code', 'name', 'Innovimmune Biotherapeutics (United States)'),
(85459, 71487, 'no_lang_code', 'name', 'JBS Technologies (United States)'),
(85460, 71488, 'no_lang_code', 'name', 'Igenbio (United States)'),
(85461, 71489, 'no_lang_code', 'name', 'JK Research (United States)'),
(85462, 71490, 'no_lang_code', 'name', 'Kalyra Pharmaceuticals (United States)'),
(85463, 71491, 'no_lang_code', 'name', 'International Therapeutics (United States)'),
(85464, 71492, 'no_lang_code', 'name', 'Interphase Materials (United States)'),
(85465, 71493, 'no_lang_code', 'name', 'Jackson and Tull (United States)'),
(85466, 71494, 'no_lang_code', 'name', 'InterVision Media (United States)'),
(85467, 71495, 'no_lang_code', 'name', 'Kytaro (United States)'),
(85468, 71496, 'en', 'name', 'IST Research'),
(85469, 71497, 'no_lang_code', 'name', 'L-Nutra (United States)'),
(85470, 71498, 'no_lang_code', 'name', 'Jan Biotech (United States)'),
(85471, 71499, 'no_lang_code', 'name', 'Kelly Space & Technology (United States)'),
(85472, 71500, 'no_lang_code', 'name', 'iStar'),
(85473, 71501, 'no_lang_code', 'name', 'Kennen Technologies (United States)'),
(85474, 71502, 'no_lang_code', 'name', 'Jariet Technologies (United States)'),
(85475, 71503, 'no_lang_code', 'name', 'Kennon (United States)'),
(85476, 71504, 'no_lang_code', 'name', 'Jaybridge Robotics (United States)'),
(85477, 71505, 'no_lang_code', 'name', 'Western Energy Support & Technology (United States)'),
(85478, 71506, 'no_lang_code', 'name', 'Jericho Sciences (United States)'),
(85479, 71507, 'no_lang_code', 'name', 'Kepley BioSystems (United States)'),
(85480, 71508, 'no_lang_code', 'name', 'Kerberos International (United States)'),
(85481, 71509, 'en', 'name', 'La Jolla Alcohol Research'),
(85482, 71510, 'no_lang_code', 'name', 'Lawrie Technology (United States)'),
(85483, 71511, 'no_lang_code', 'name', 'Lab Resources (United States)'),
(85484, 71512, 'en', 'name', 'CarrotNewYork'),
(85485, 71513, 'no_lang_code', 'name', 'Keystone Automation (United States)'),
(85486, 71514, 'no_lang_code', 'name', 'Leaflabs (United States)'),
(85487, 71515, 'no_lang_code', 'name', 'Kibow Biotech (United States)'),
(85488, 71516, 'no_lang_code', 'name', 'Kiko Labs (United States)'),
(85489, 71517, 'no_lang_code', 'name', 'Kinetic Art & Technology (United States)'),
(85490, 71518, 'en', 'name', 'Learning Ovations'),
(85491, 71519, 'no_lang_code', 'name', 'John Tiller Software (United States)'),
(85492, 71520, 'no_lang_code', 'name', 'ClearMotion (United States)'),
(85493, 71521, 'no_lang_code', 'name', 'LaCell (United States)'),
(85494, 71522, 'no_lang_code', 'name', 'Kinetic Resolve (United States)'),
(85495, 71523, 'no_lang_code', 'name', 'Levings & Associates (United States)'),
(85496, 71524, 'no_lang_code', 'name', 'Johnson Engineering (United States)'),
(85497, 71525, 'no_lang_code', 'name', 'Jonas (United States)'),
(85498, 71526, 'no_lang_code', 'name', 'Liberty Ammunition (United States)'),
(85499, 71527, 'no_lang_code', 'name', 'Life Cycle Engineering (United States)'),
(85500, 71528, 'no_lang_code', 'name', 'Life Services (United States)'),
(85501, 71529, 'no_lang_code', 'name', 'Land Sea Air Autonomy (United States)'),
(85502, 71530, 'no_lang_code', 'name', 'Landec (United States)'),
(85503, 71531, 'no_lang_code', 'name', 'Judd Systems Technologies (United States)'),
(85504, 71532, 'no_lang_code', 'name', 'SDL (United States)'),
(85505, 71533, 'no_lang_code', 'name', 'Lankard Materials Laboratory (United States)'),
(85506, 71534, 'no_lang_code', 'name', 'Lifespan Associates (United States)'),
(85507, 71535, 'no_lang_code', 'name', 'Juneteenth Productions (United States)'),
(85508, 71536, 'no_lang_code', 'name', 'LightStanza (United States)'),
(85509, 71537, 'no_lang_code', 'name', 'Juniper Industries (United States)'),
(85510, 71538, 'no_lang_code', 'name', 'Laser & Plasma Technologies (United States)'),
(85511, 71539, 'no_lang_code', 'name', 'LightLine Technologies (United States)'),
(85512, 71540, 'no_lang_code', 'name', 'Laser Shot (United States)'),
(85513, 71541, 'hu', 'name', 'Lechner TudƔskƶzpont'),
(85514, 71542, 'no_lang_code', 'name', 'NTS (United States)'),
(85515, 71543, 'no_lang_code', 'name', 'LaserGuide (United States)'),
(85516, 71544, 'no_lang_code', 'name', 'LightPointe (United States)'),
(85517, 71545, 'no_lang_code', 'name', 'Kiyatec (United States)'),
(85518, 71546, 'no_lang_code', 'name', 'K Lab (United States)'),
(85519, 71547, 'no_lang_code', 'name', 'Liquidmetal Technologies (United States)'),
(85520, 71548, 'no_lang_code', 'name', 'Klogene (United States)'),
(85521, 71549, 'no_lang_code', 'name', 'Linguastat (United States)'),
(85522, 71550, 'no_lang_code', 'name', 'Knopp Biosciences (United States)'),
(85523, 71551, 'no_lang_code', 'name', 'Litecom (United States)'),
(85524, 71552, 'no_lang_code', 'name', 'Loc (United States)'),
(85525, 71553, 'no_lang_code', 'name', 'LodeSpin Labs (United States)'),
(85526, 71554, 'no_lang_code', 'name', 'Lumme Labs (United States)'),
(85527, 71555, 'no_lang_code', 'name', 'Logistic Gliders (United States)'),
(85528, 71556, 'no_lang_code', 'name', 'Lithium Innovations (United States)'),
(85529, 71557, 'no_lang_code', 'name', 'Lund and Company Invention (United States)'),
(85530, 71558, 'no_lang_code', 'name', 'Lupine Labs (United States)'),
(85531, 71559, 'no_lang_code', 'name', 'Lithium Power (United States)'),
(85532, 71560, 'no_lang_code', 'name', 'Luraco Technologies (United States)'),
(85533, 71561, 'no_lang_code', 'name', 'EaglePicher Technologies (United States)'),
(85534, 71562, 'no_lang_code', 'name', 'Liuman Technologies (United States)'),
(85535, 71563, 'no_lang_code', 'name', 'Koning (United States)'),
(85536, 71564, 'no_lang_code', 'name', 'LiveSchool (United States)'),
(85537, 71565, 'no_lang_code', 'name', 'LM Group (United States)'),
(85538, 71566, 'no_lang_code', 'name', 'Ksaria (United States)'),
(85539, 71567, 'no_lang_code', 'name', 'LW Microsystems (United States)'),
(85540, 71568, 'no_lang_code', 'name', 'LucidEnergy (United States)'),
(85541, 71569, 'no_lang_code', 'name', 'Lyndra Therapeutics (United States)'),
(85542, 71570, 'no_lang_code', 'name', 'Clock Spring (United States)'),
(85543, 71571, 'no_lang_code', 'name', 'Maas Biolab (United States)'),
(85544, 71572, 'no_lang_code', 'name', 'MC Power (United States)'),
(85545, 71573, 'no_lang_code', 'name', 'Catalina (United States)'),
(85546, 71574, 'no_lang_code', 'name', 'MAST Technologies (United States)'),
(85547, 71575, 'no_lang_code', 'name', 'EpiSys Science (United States)'),
(85548, 71576, 'no_lang_code', 'name', 'Madeleine Pharmaceuticals (United States)'),
(85549, 71577, 'no_lang_code', 'name', 'Magicom (United States)'),
(85550, 71578, 'no_lang_code', 'name', 'Materials Research Group (United States)'),
(85551, 71579, 'no_lang_code', 'name', 'Meissa Vaccines (United States)'),
(85552, 71580, 'no_lang_code', 'name', 'Magna-Tech P/M Labs (United States)'),
(85553, 71581, 'no_lang_code', 'name', 'Melink (United States)'),
(85554, 71582, 'no_lang_code', 'name', 'MicroVide (United States)'),
(85555, 71583, 'no_lang_code', 'name', 'Magnetic Resonance Innovations (United States)'),
(85556, 71584, 'no_lang_code', 'name', 'Micro-Leads (United States)'),
(85557, 71585, 'no_lang_code', 'name', 'MEMStim (United States)'),
(85558, 71586, 'no_lang_code', 'name', 'Micro-Precision Technologies (United States)'),
(85559, 71587, 'no_lang_code', 'name', 'Magzor (United States)'),
(85560, 71588, 'no_lang_code', 'name', 'MicroConnex (United States)'),
(85561, 71589, 'en', 'name', 'Prague Film School'),
(85562, 71590, 'no_lang_code', 'name', 'Manufacturing Laboratories (United States)'),
(85563, 71591, 'no_lang_code', 'name', 'Gallagher (United States)'),
(85564, 71592, 'no_lang_code', 'name', 'MapLarge (United States)'),
(85565, 71593, 'no_lang_code', 'name', 'Micron Corporation (United States)'),
(85566, 71594, 'no_lang_code', 'name', 'Marine Design Dynamics (United States)'),
(85567, 71595, 'no_lang_code', 'name', 'Microprobes (United States)'),
(85568, 71596, 'no_lang_code', 'name', 'Marvel Medtech (United States)'),
(85569, 71597, 'no_lang_code', 'name', 'Mesh Robotics (United States)'),
(85570, 71598, 'no_lang_code', 'name', 'Metabolic Nutritionals (United States)'),
(85571, 71599, 'no_lang_code', 'name', 'Max Biopharma (United States)'),
(85572, 71600, 'no_lang_code', 'name', 'Metal Storm (United States)'),
(85573, 71601, 'no_lang_code', 'name', 'MetaMorph (United States)'),
(85574, 71602, 'no_lang_code', 'name', 'Microscale (United States)'),
(85575, 71603, 'no_lang_code', 'name', 'MBC Pharma (United States)'),
(85576, 71604, 'no_lang_code', 'name', 'Microsonic Systems (United States)'),
(85577, 71605, 'no_lang_code', 'name', 'Microtech Instruments (United States)'),
(85578, 71606, 'no_lang_code', 'name', 'McCormick Stevenson (United States)'),
(85579, 71607, 'no_lang_code', 'name', 'Metastable Instruments (United States)'),
(85580, 71608, 'no_lang_code', 'name', 'Micro Vascular Theraputics (United States)'),
(85581, 71609, 'no_lang_code', 'name', 'Metria Innovation (United States)'),
(85582, 71610, 'no_lang_code', 'name', 'MD Informatics (United States)'),
(85583, 71611, 'no_lang_code', 'name', 'Microwave Applications Group (United States)'),
(85584, 71612, 'no_lang_code', 'name', 'Minitube (United States)'),
(85585, 71613, 'no_lang_code', 'name', 'Airbus (United States)'),
(85586, 71614, 'no_lang_code', 'name', 'MDA Engineering (United States)'),
(85587, 71615, 'no_lang_code', 'name', 'Microwave Products and Technology (United States)'),
(85588, 71616, 'no_lang_code', 'name', 'Metstat (United States)'),
(85589, 71617, 'no_lang_code', 'name', 'Mgenuity (United States)'),
(85590, 71618, 'no_lang_code', 'name', 'Mira Dx (United States)'),
(85591, 71619, 'no_lang_code', 'name', 'MH Acoustics (United States)'),
(85592, 71620, 'no_lang_code', 'name', 'Mirage Systems (United States)'),
(85593, 71621, 'en', 'name', 'MidSchoolMath'),
(85594, 71622, 'no_lang_code', 'name', 'First Wave Technologies (United States)'),
(85595, 71623, 'no_lang_code', 'name', 'Micatu (United States)'),
(85596, 71624, 'no_lang_code', 'name', 'Mikel (United States)'),
(85597, 71625, 'no_lang_code', 'name', 'MillenniTek (United States)'),
(85598, 71626, 'no_lang_code', 'name', 'Molecular Theranostics (United States)'),
(85599, 71627, 'no_lang_code', 'name', 'Millennium Dynamics (United States)'),
(85600, 71628, 'no_lang_code', 'name', 'Molecule Works (United States)'),
(85601, 71629, 'no_lang_code', 'name', 'Moller International (United States)'),
(85602, 71630, 'no_lang_code', 'name', 'Mach Diamond Propulsion (United States)'),
(85603, 71631, 'no_lang_code', 'name', 'Medsleuth (United States)'),
(85604, 71632, 'no_lang_code', 'name', 'Motivational Educational Entertainment Productions (United States)'),
(85605, 71633, 'no_lang_code', 'name', 'MosquitoMate (United States)'),
(85606, 71634, 'no_lang_code', 'name', 'PocketLab (United States)'),
(85607, 71635, 'no_lang_code', 'name', 'Moxtek (United States)'),
(85608, 71636, 'no_lang_code', 'name', 'N&N Pharmaceuticals (United States)'),
(85609, 71637, 'no_lang_code', 'name', 'MP Technologies (United States)'),
(85610, 71638, 'en', 'name', 'DST Centre for Policy Research'),
(85611, 71639, 'no_lang_code', 'name', 'Mi-Tech (United States)'),
(85612, 71640, 'no_lang_code', 'name', 'N5 Sensors (United States)'),
(85613, 71641, 'no_lang_code', 'name', 'C4 Therapeutics (United States)'),
(85614, 71642, 'no_lang_code', 'name', 'Mitek Analytics (United States)'),
(85615, 71643, 'en', 'name', 'MIT Lincoln Laboratory'),
(85616, 71644, 'no_lang_code', 'name', 'NajĆ­t Technologies (United States)'),
(85617, 71645, 'no_lang_code', 'name', 'MixZon (United States)'),
(85618, 71646, 'no_lang_code', 'name', 'NDE Technologies (United States)'),
(85619, 71647, 'no_lang_code', 'name', 'Nalu Scientific (United States)'),
(85620, 71648, 'no_lang_code', 'name', 'Miyazaki Enterprises (United States)'),
(85621, 71649, 'no_lang_code', 'name', 'NanoCor Therapeutics (United States)'),
(85622, 71650, 'no_lang_code', 'name', 'nanoMAG (United States)'),
(85623, 71651, 'no_lang_code', 'name', 'HumanN (United States)'),
(85624, 71652, 'no_lang_code', 'name', 'Materials Resources (United States)'),
(85625, 71653, 'no_lang_code', 'name', 'Pain Care Labs (United States)'),
(85626, 71654, 'no_lang_code', 'name', 'NanoRidge (United States)'),
(85627, 71655, 'no_lang_code', 'name', 'BitPlus (United States)'),
(85628, 71656, 'no_lang_code', 'name', 'TSI (United States)'),
(85629, 71657, 'no_lang_code', 'name', 'MMR Technologies (United States)'),
(85630, 71658, 'no_lang_code', 'name', 'NanoSD (United States)'),
(85631, 71659, 'no_lang_code', 'name', 'Multidisciplinary Software Systems Research (United States)'),
(85632, 71660, 'no_lang_code', 'name', 'Nanoshell Company (United States)'),
(85633, 71661, 'no_lang_code', 'name', 'Mobile Foundations (United States)'),
(85634, 71662, 'no_lang_code', 'name', 'Neural Analytics (United States)'),
(85635, 71663, 'no_lang_code', 'name', 'Multibeam (United States)'),
(85636, 71664, 'no_lang_code', 'name', 'Moco (United States)'),
(85637, 71665, 'no_lang_code', 'name', 'Nanosolar (United States)'),
(85638, 71666, 'no_lang_code', 'name', 'Mod9 Technologies (United States)'),
(85639, 71667, 'no_lang_code', 'name', 'Verasci (United States)'),
(85640, 71668, 'no_lang_code', 'name', 'NanoVector (United States)'),
(85641, 71669, 'no_lang_code', 'name', 'Modular Bionics (United States)'),
(85642, 71670, 'no_lang_code', 'name', 'Modumetal (United States)'),
(85643, 71671, 'no_lang_code', 'name', 'Natel Energy (United States)'),
(85644, 71672, 'no_lang_code', 'name', 'NeuroGenetic Pharmaceuticals (United States)'),
(85645, 71673, 'no_lang_code', 'name', 'Neurotargeting (United States)'),
(85646, 71674, 'no_lang_code', 'name', 'Molecular Pathology Laboratory Network (United States)'),
(85647, 71675, 'no_lang_code', 'name', 'Native American Technologies (United States)'),
(85648, 71676, 'no_lang_code', 'name', 'Natural Process Design (United States)'),
(85649, 71677, 'no_lang_code', 'name', 'Nevada Composites (United States)'),
(85650, 71678, 'no_lang_code', 'name', 'Muse Technologies (United States)'),
(85651, 71679, 'no_lang_code', 'name', 'Navitas Systems (United States)'),
(85652, 71680, 'no_lang_code', 'name', 'NexGen Composites (United States)'),
(85653, 71681, 'no_lang_code', 'name', 'NevadaNano (United States)'),
(85654, 71682, 'no_lang_code', 'name', 'Nexgenia (United States)'),
(85655, 71683, 'no_lang_code', 'name', 'Nota Laboratories (United States)'),
(85656, 71684, 'no_lang_code', 'name', 'Nexogen (United States)'),
(85657, 71685, 'no_lang_code', 'name', 'New Dimensions Research (United States)'),
(85658, 71686, 'no_lang_code', 'name', 'Nou Systems (United States)'),
(85659, 71687, 'no_lang_code', 'name', 'Next Energy Technologies (United States)'),
(85660, 71688, 'en', 'name', 'ABC for Health'),
(85661, 71689, 'no_lang_code', 'name', 'Novel (United States)'),
(85662, 71690, 'no_lang_code', 'name', 'Noveratech (United States)'),
(85663, 71691, 'no_lang_code', 'name', 'NHanced Semiconductors (United States)'),
(85664, 71692, 'no_lang_code', 'name', 'Novilytic (United States)'),
(85665, 71693, 'no_lang_code', 'name', 'Mycomed (United States)'),
(85666, 71694, 'no_lang_code', 'name', 'US Night Vision (United States)'),
(85667, 71695, 'no_lang_code', 'name', 'Nima (United States)'),
(85668, 71696, 'no_lang_code', 'name', 'Nuclear Plasma Laboratories (United States)'),
(85669, 71697, 'no_lang_code', 'name', 'Nimbic Systems (United States)'),
(85670, 71698, 'no_lang_code', 'name', 'nPoint (United States)'),
(85671, 71699, 'no_lang_code', 'name', 'Nrgtek (United States)'),
(85672, 71700, 'no_lang_code', 'name', 'Nimbis Services (United States)'),
(85673, 71701, 'no_lang_code', 'name', 'NewPath Learning (United States)'),
(85674, 71702, 'no_lang_code', 'name', 'Newport Sensors (United States)'),
(85675, 71703, 'no_lang_code', 'name', 'NxGEN Electronics (United States)'),
(85676, 71704, 'no_lang_code', 'name', 'Zepto (United States)'),
(85677, 71705, 'no_lang_code', 'name', 'O''Donnell Consulting Engineers (United States)'),
(85678, 71706, 'no_lang_code', 'name', 'Newtec Services Group (United States)'),
(85679, 71707, 'no_lang_code', 'name', 'Oasis Advanced Engineering (United States)'),
(85680, 71708, 'no_lang_code', 'name', 'Ocular Proteomics (United States)'),
(85681, 71709, 'no_lang_code', 'name', 'Njoy (United States)'),
(85682, 71710, 'no_lang_code', 'name', 'Omnitech Robotics (United States)'),
(85683, 71711, 'no_lang_code', 'name', 'Odyssey Space Research (United States)'),
(85684, 71712, 'no_lang_code', 'name', 'NLA Diagnostics (United States)'),
(85685, 71713, 'no_lang_code', 'name', 'On Time Systems (United States)'),
(85686, 71714, 'no_lang_code', 'name', 'Nocturnal Product Development (United States)'),
(85687, 71715, 'no_lang_code', 'name', 'Noddle (United States)'),
(85688, 71716, 'no_lang_code', 'name', 'Optimal Solutions Software (United States)'),
(85689, 71717, 'no_lang_code', 'name', 'Optimal Solutions (United States)'),
(85690, 71718, 'no_lang_code', 'name', 'Optinav (United States)'),
(85691, 71719, 'no_lang_code', 'name', 'NonInvasive Technologies (United States)'),
(85692, 71720, 'no_lang_code', 'name', 'Nonlinear Control Strategies (United States)'),
(85693, 71721, 'no_lang_code', 'name', 'One-Cycle Control (United States)'),
(85694, 71722, 'no_lang_code', 'name', 'Optitek (United States)'),
(85695, 71723, 'no_lang_code', 'name', 'MRJ Consulting (United States)'),
(85696, 71724, 'no_lang_code', 'name', 'ONL Therapeutic (United States)'),
(85697, 71725, 'no_lang_code', 'name', 'Noom (United States)'),
(85698, 71726, 'no_lang_code', 'name', 'Optodot (United States)'),
(85699, 71727, 'no_lang_code', 'name', 'Jamboxx (United States)'),
(85700, 71728, 'no_lang_code', 'name', 'Onai (United States)'),
(85701, 71729, 'no_lang_code', 'name', 'Kite (United States)'),
(85702, 71730, 'no_lang_code', 'name', 'North Star Scientific (United States)'),
(85703, 71731, 'no_lang_code', 'name', 'optX Imaging Systems (United States)'),
(85704, 71732, 'no_lang_code', 'name', 'Object Computing (United States)'),
(85705, 71733, 'no_lang_code', 'name', 'Northeast Semiconductor (United States)'),
(85706, 71734, 'no_lang_code', 'name', 'Opus 12 (United States)'),
(85707, 71735, 'no_lang_code', 'name', 'Openbeds (United States)'),
(85708, 71736, 'no_lang_code', 'name', 'Northern Microdesign (United States)'),
(85709, 71737, 'no_lang_code', 'name', 'Oral Health Solutions (United States)'),
(85710, 71738, 'no_lang_code', 'name', 'OpenCell Technologies (United States)'),
(85711, 71739, 'no_lang_code', 'name', 'Northern Power Systems (United States)'),
(85712, 71740, 'no_lang_code', 'name', 'Ocean Bay (United States)'),
(85713, 71741, 'no_lang_code', 'name', 'Operative Experience (United States)'),
(85714, 71742, 'no_lang_code', 'name', 'Orbits Lightwave (United States)'),
(85715, 71743, 'no_lang_code', 'name', 'Omitron (United States)'),
(85716, 71744, 'no_lang_code', 'name', 'Ophidion (United States)'),
(85717, 71745, 'no_lang_code', 'name', 'Omni Sciences (United States)'),
(85718, 71746, 'no_lang_code', 'name', 'Vigor (United States)'),
(85719, 71747, 'no_lang_code', 'name', 'Ozark Integrated Circuits (United States)'),
(85720, 71748, 'no_lang_code', 'name', 'Pacific Antenna Systems (United States)'),
(85721, 71749, 'no_lang_code', 'name', 'Oricula Therapeutics (United States)'),
(85722, 71750, 'no_lang_code', 'name', 'Opti-Logic (United States)'),
(85723, 71751, 'no_lang_code', 'name', 'Omniphase Defense Systems (United States)'),
(85724, 71752, 'no_lang_code', 'name', 'Optical Air Data Systems (United States)'),
(85725, 71753, 'no_lang_code', 'name', 'Pacific Research Group (United States)'),
(85726, 71754, 'no_lang_code', 'name', 'Pacific Research Laboratories (United States)'),
(85727, 71755, 'no_lang_code', 'name', 'Optical Coating Solutions (United States)'),
(85728, 71756, 'no_lang_code', 'name', 'Oryn Therapeutics (United States)'),
(85729, 71757, 'no_lang_code', 'name', 'Oceana Sensor (United States)'),
(85730, 71758, 'no_lang_code', 'name', 'Oscilla Power (United States)'),
(85731, 71759, 'no_lang_code', 'name', 'Osemi (United States)'),
(85732, 71760, 'no_lang_code', 'name', 'Pandion Laboratories (United States)'),
(85733, 71761, 'no_lang_code', 'name', 'Osmic Enterprises (United States)'),
(85734, 71762, 'no_lang_code', 'name', 'Opticyte (United States)'),
(85735, 71763, 'no_lang_code', 'name', 'OsteoVantage (United States)'),
(85736, 71764, 'no_lang_code', 'name', 'PapGene (United States)'),
(85737, 71765, 'no_lang_code', 'name', 'Otherlab'),
(85738, 71766, 'no_lang_code', 'name', 'Pentum Group (United States)'),
(85739, 71767, 'no_lang_code', 'name', 'Parabilis Space Technologies (United States)'),
(85740, 71768, 'no_lang_code', 'name', 'Phoenix Digital (United States)'),
(85741, 71769, 'no_lang_code', 'name', 'PeoplePower (United States)'),
(85742, 71770, 'no_lang_code', 'name', 'Parasim (United States)'),
(85743, 71771, 'no_lang_code', 'name', 'PeopleTec (United States)'),
(85744, 71772, 'no_lang_code', 'name', 'Phoenix Integration (United States)'),
(85745, 71773, 'no_lang_code', 'name', 'Partek (United States)'),
(85746, 71774, 'no_lang_code', 'name', 'Oxford Computer Services (United States)'),
(85747, 71775, 'no_lang_code', 'name', 'Particle Flux Analytics (United States)'),
(85748, 71776, 'no_lang_code', 'name', 'Phoenix Nest (United States)'),
(85749, 71777, 'no_lang_code', 'name', 'Ɖternelle (United States)'),
(85750, 71778, 'no_lang_code', 'name', 'PerceptiMed (United States)'),
(85751, 71779, 'no_lang_code', 'name', 'Passport Systems (United States)'),
(85752, 71780, 'no_lang_code', 'name', 'Perceptive Innovations (United States)'),
(85753, 71781, 'no_lang_code', 'name', 'Pixel Velocity (United States)'),
(85754, 71782, 'no_lang_code', 'name', 'Path BioAnalytics (United States)'),
(85755, 71783, 'no_lang_code', 'name', 'Forte (United States)'),
(85756, 71784, 'no_lang_code', 'name', 'Eloquence Communications (United States)'),
(85757, 71785, 'no_lang_code', 'name', 'Leyard (United States)'),
(85758, 71786, 'no_lang_code', 'name', 'PatientsVoices (United States)'),
(85759, 71787, 'no_lang_code', 'name', 'Photon Spot (United States)'),
(85760, 71788, 'no_lang_code', 'name', 'Patz Materials and Technologies (United States)'),
(85761, 71789, 'no_lang_code', 'name', 'Photonic Associates (United States)'),
(85762, 71790, 'no_lang_code', 'name', 'ConsenSys (United States)'),
(85763, 71791, 'no_lang_code', 'name', 'PhotoniCare (United States)'),
(85764, 71792, 'no_lang_code', 'name', 'Planetary Systems (United States)'),
(85765, 71793, 'no_lang_code', 'name', 'Plasma Controls (United States)'),
(85766, 71794, 'no_lang_code', 'name', 'Pendar Technologies (United States)'),
(85767, 71795, 'no_lang_code', 'name', 'Perlegen (United States)'),
(85768, 71796, 'no_lang_code', 'name', 'Platelet BioGenesis (United States)'),
(85769, 71797, 'no_lang_code', 'name', 'Photonics (United States)'),
(85770, 71798, 'no_lang_code', 'name', 'Perpetua (United States)'),
(85771, 71799, 'no_lang_code', 'name', 'Platinum Group Coatings (United States)'),
(85772, 71800, 'no_lang_code', 'name', 'PLC Connections (United States)'),
(85773, 71801, 'no_lang_code', 'name', 'Phyre Technologies (United States)'),
(85774, 71802, 'no_lang_code', 'name', 'Persyst (United States)'),
(85775, 71803, 'no_lang_code', 'name', 'Varidesk (United States)'),
(85776, 71804, 'no_lang_code', 'name', 'Plureon (United States)'),
(85777, 71805, 'no_lang_code', 'name', 'Plus Designs (United States)'),
(85778, 71806, 'no_lang_code', 'name', 'Potrero Medical (United States)'),
(85779, 71807, 'no_lang_code', 'name', 'Power+Energy (United States)'),
(85780, 71808, 'no_lang_code', 'name', 'PowerPhotonic (United States)'),
(85781, 71809, 'no_lang_code', 'name', 'Pointwise (United States)'),
(85782, 71810, 'no_lang_code', 'name', 'Polarix (United States)'),
(85783, 71811, 'no_lang_code', 'name', 'Pharmabridge (United States)'),
(85784, 71812, 'no_lang_code', 'name', 'PowerFilm (United States)'),
(85785, 71813, 'no_lang_code', 'name', 'Phyto-Technologies (United States)'),
(85786, 71814, 'no_lang_code', 'name', 'PowerHouse Proteomic Systems (United States)'),
(85787, 71815, 'no_lang_code', 'name', 'Pollere (United States)'),
(85788, 71816, 'no_lang_code', 'name', 'Pollution Control Technologies (United States)'),
(85789, 71817, 'no_lang_code', 'name', 'Fast Biomedical (United States)'),
(85790, 71818, 'no_lang_code', 'name', 'PKG (United States)'),
(85791, 71819, 'no_lang_code', 'name', 'Polyhedron Learning Media (United States)'),
(85792, 71820, 'no_lang_code', 'name', 'Praeses (United States)'),
(85793, 71821, 'no_lang_code', 'name', 'Picoyune (United States)'),
(85794, 71822, 'no_lang_code', 'name', 'Polymer Exploration Group (United States)'),
(85795, 71823, 'no_lang_code', 'name', 'Phase IV (United States)'),
(85796, 71824, 'no_lang_code', 'name', 'Pratt & Miller (United States)'),
(85797, 71825, 'no_lang_code', 'name', 'Vista Equity Partners (United States)'),
(85798, 71826, 'no_lang_code', 'name', 'DM3D Technology (United States)'),
(85799, 71827, 'no_lang_code', 'name', 'Phelix Therapeutics (United States)'),
(85800, 71828, 'no_lang_code', 'name', 'Praxis BioSciences (United States)'),
(85801, 71829, 'no_lang_code', 'name', 'PVI System Technology (United States)'),
(85802, 71830, 'no_lang_code', 'name', 'Phelps2020 (United States)'),
(85803, 71831, 'no_lang_code', 'name', 'Precision Polyolefins (United States)'),
(85804, 71832, 'no_lang_code', 'name', 'Precision Vision (United States)'),
(85805, 71833, 'no_lang_code', 'name', 'Phiar (United States)'),
(85806, 71834, 'no_lang_code', 'name', 'PreCyte (United States)'),
(85807, 71835, 'no_lang_code', 'name', 'Professional Analytical and Consulting Services (United States)'),
(85808, 71836, 'no_lang_code', 'name', 'PredictionProbe (United States)'),
(85809, 71837, 'no_lang_code', 'name', 'Philotek (United States)'),
(85810, 71838, 'no_lang_code', 'name', 'Q4 (United States)'),
(85811, 71839, 'no_lang_code', 'name', 'PreludeDx (United States)'),
(85812, 71840, 'no_lang_code', 'name', 'Phoenix Analysis and Design Technologies (United States)'),
(85813, 71841, 'no_lang_code', 'name', 'Expanse (United States)'),
(85814, 71842, 'no_lang_code', 'name', 'Progressive Expert Consulting (United States)'),
(85815, 71843, 'no_lang_code', 'name', 'Prenosis (United States)'),
(85816, 71844, 'no_lang_code', 'name', 'Rapid Flow (United States)'),
(85817, 71845, 'no_lang_code', 'name', 'Pressure Profile Systems (United States)'),
(85818, 71846, 'no_lang_code', 'name', 'PreventAGE Health Care (United States)'),
(85819, 71847, 'no_lang_code', 'name', 'ProLynx (United States)'),
(85820, 71848, 'no_lang_code', 'name', 'Promentis Pharmaceuticals (United States)'),
(85821, 71849, 'no_lang_code', 'name', 'Primaira (United States)'),
(85822, 71850, 'no_lang_code', 'name', 'Promet Optics (United States)'),
(85823, 71851, 'no_lang_code', 'name', 'Raven (United States)'),
(85824, 71852, 'no_lang_code', 'name', 'Primus Consulting (United States)'),
(85825, 71853, 'no_lang_code', 'name', 'Princeton BioMeditech (United States)'),
(85826, 71854, 'no_lang_code', 'name', 'Pronghorn Technologies (United States)'),
(85827, 71855, 'no_lang_code', 'name', 'Rayonix (United States)'),
(85828, 71856, 'no_lang_code', 'name', 'Princeton Technology Advisors (United States)'),
(85829, 71857, 'no_lang_code', 'name', 'Q-Flex (United States)'),
(85830, 71858, 'no_lang_code', 'name', 'Prioria Robotics (United States)'),
(85831, 71859, 'no_lang_code', 'name', 'Raytum Photonics (United States)'),
(85832, 71860, 'no_lang_code', 'name', 'Qrono (United States)'),
(85833, 71861, 'no_lang_code', 'name', 'Private Machines (United States)'),
(85834, 71862, 'no_lang_code', 'name', 'ProActive Memory Services (United States)'),
(85835, 71863, 'no_lang_code', 'name', 'RDMChem (United States)'),
(85836, 71864, 'no_lang_code', 'name', 'Probus (United States)'),
(85837, 71865, 'no_lang_code', 'name', 'Procedyne (United States)'),
(85838, 71866, 'no_lang_code', 'name', 'Protection Engineering Consultants (United States)'),
(85839, 71867, 'no_lang_code', 'name', 'Respec (United States)'),
(85840, 71868, 'no_lang_code', 'name', 'ProteinOne (United States)'),
(85841, 71869, 'no_lang_code', 'name', 'QT Medical (United States)'),
(85842, 71870, 'no_lang_code', 'name', 'Renaissance Services (United States)'),
(85843, 71871, 'no_lang_code', 'name', 'Renova Life (United States)'),
(85844, 71872, 'no_lang_code', 'name', 'Quantix (United States)'),
(85845, 71873, 'no_lang_code', 'name', 'Quantum Devices (United States)'),
(85846, 71874, 'no_lang_code', 'name', 'Proteos (United States)'),
(85847, 71875, 'no_lang_code', 'name', 'Quantum Diamond Technologies (United States)'),
(85848, 71876, 'no_lang_code', 'name', 'Renova Therapeutics (United States)'),
(85849, 71877, 'no_lang_code', 'name', 'Protochips (United States)'),
(85850, 71878, 'no_lang_code', 'name', 'Real Prevention (United States)'),
(85851, 71879, 'no_lang_code', 'name', 'Quantum Northwest (United States)'),
(85852, 71880, 'no_lang_code', 'name', 'Quantum Opus (United States)'),
(85853, 71881, 'no_lang_code', 'name', 'ProtonVDA (United States)'),
(85854, 71882, 'no_lang_code', 'name', 'Renuvix (United States)'),
(85855, 71883, 'no_lang_code', 'name', 'Querium (United States)'),
(85856, 71884, 'no_lang_code', 'name', 'PsiKick (United States)'),
(85857, 71885, 'no_lang_code', 'name', 'Quest Thermal Group (United States)'),
(85858, 71886, 'no_lang_code', 'name', 'Research Applications (United States)'),
(85859, 71887, 'no_lang_code', 'name', 'Quick-Med Technologies (United States)'),
(85860, 71888, 'no_lang_code', 'name', 'Rebion (United States)'),
(85861, 71889, 'no_lang_code', 'name', 'Hesco (United States)'),
(85862, 71890, 'no_lang_code', 'name', 'Rebound (United States)'),
(85863, 71891, 'no_lang_code', 'name', 'Quimba Software (United States)'),
(85864, 71892, 'no_lang_code', 'name', 'PICO Technologies (United States)'),
(85865, 71893, 'no_lang_code', 'name', 'Qusemde (United States)'),
(85866, 71894, 'no_lang_code', 'name', 'CCP Technologies (United States)'),
(85867, 71895, 'no_lang_code', 'name', 'Qynergy (United States)'),
(85868, 71896, 'no_lang_code', 'name', 'RHK Technology (United States)'),
(85869, 71897, 'no_lang_code', 'name', 'Recovery Record (United States)'),
(85870, 71898, 'no_lang_code', 'name', 'R-Dex Systems (United States)'),
(85871, 71899, 'no_lang_code', 'name', 'Recursion (United States)'),
(85872, 71900, 'no_lang_code', 'name', 'Research, Evaluation and Social Solutions (United States)'),
(85873, 71901, 'no_lang_code', 'name', 'Redbud Labs (United States)'),
(85874, 71902, 'no_lang_code', 'name', 'Euphrates Vascular (United States)'),
(85875, 71903, 'no_lang_code', 'name', 'Radial Analytics (United States)'),
(85876, 71904, 'no_lang_code', 'name', 'Purilogics (United States)'),
(85877, 71905, 'no_lang_code', 'name', 'Resolute Marine Energy (United States)'),
(85878, 71906, 'no_lang_code', 'name', 'Radianse (United States)'),
(85879, 71907, 'no_lang_code', 'name', 'Pursuant Health (United States)'),
(85880, 71908, 'no_lang_code', 'name', 'Redwood Scientific (United States)'),
(85881, 71909, 'no_lang_code', 'name', 'Response Technologies (United States)'),
(85882, 71910, 'no_lang_code', 'name', 'Radiation Safety Engineering (United States)'),
(85883, 71911, 'no_lang_code', 'name', 'Reflexion Health (United States)'),
(85884, 71912, 'no_lang_code', 'name', 'Radiometrics (United States)'),
(85885, 71913, 'no_lang_code', 'name', 'R3Logic (United States)'),
(85886, 71914, 'no_lang_code', 'name', 'Radix (United States)'),
(85887, 71915, 'no_lang_code', 'name', 'Ressler & Associates (United States)'),
(85888, 71916, 'no_lang_code', 'name', 'RiboNova (United States)'),
(85889, 71917, 'no_lang_code', 'name', 'ReThink Medical (United States)'),
(85890, 71918, 'no_lang_code', 'name', 'Ramdo (United States)'),
(85891, 71919, 'no_lang_code', 'name', 'RetiVue (United States)'),
(85892, 71920, 'no_lang_code', 'name', 'RxFunction (United States)'),
(85893, 71921, 'no_lang_code', 'name', 'RetrieverTech (United States)'),
(85894, 71922, 'no_lang_code', 'name', 'Extremiti3D (United States)'),
(85895, 71923, 'no_lang_code', 'name', 'Reinhart & Associates (United States)'),
(85896, 71924, 'no_lang_code', 'name', 'naviHealth (United States)'),
(85897, 71925, 'no_lang_code', 'name', 'RF Laboratories (United States)'),
(85898, 71926, 'no_lang_code', 'name', 'Rincon Research (United States)'),
(85899, 71927, 'no_lang_code', 'name', 'JIT Labs (United States)'),
(85900, 71928, 'no_lang_code', 'name', 'Riparian Pharmaceuticals (United States)'),
(85901, 71929, 'no_lang_code', 'name', 'Secondpeak (United States)'),
(85902, 71930, 'no_lang_code', 'name', 'Riptide Autonomous Solutions (United States)'),
(85903, 71931, 'no_lang_code', 'name', 'S&K Aerospace (United States)'),
(85904, 71932, 'no_lang_code', 'name', 'Recon Dynamics (United States)'),
(85905, 71933, 'no_lang_code', 'name', 'Sab Biotherapeutics (United States)'),
(85906, 71934, 'no_lang_code', 'name', 'Sabre Engineering (United States)'),
(85907, 71935, 'no_lang_code', 'name', 'SafelyYou (United States)'),
(85908, 71936, 'no_lang_code', 'name', 'Robocasting (United States)'),
(85909, 71937, 'no_lang_code', 'name', 'Seer Systems (United States)'),
(85910, 71938, 'no_lang_code', 'name', 'Science and Technology in Atmospheric Research (United States)'),
(85911, 71939, 'no_lang_code', 'name', 'Safeware Engineering (United States)'),
(85912, 71940, 'no_lang_code', 'name', 'Seriad (United States)'),
(85913, 71941, 'no_lang_code', 'name', 'Robotic Technology (United States)'),
(85914, 71942, 'no_lang_code', 'name', 'Science Learning Resources (United States)'),
(85915, 71943, 'no_lang_code', 'name', 'Carbon Block Technology (United States)'),
(85916, 71944, 'no_lang_code', 'name', 'Old Harbor Native (United States)'),
(85917, 71945, 'no_lang_code', 'name', 'Robust Analysis (United States)'),
(85918, 71946, 'no_lang_code', 'name', 'ScienceTomorrow (United States)'),
(85919, 71947, 'no_lang_code', 'name', 'Salus (United States)'),
(85920, 71948, 'no_lang_code', 'name', 'Roccor (United States)'),
(85921, 71949, 'no_lang_code', 'name', 'Scientific Computing Associates (United States)'),
(85922, 71950, 'no_lang_code', 'name', 'Semandex Networks (United States)'),
(85923, 71951, 'no_lang_code', 'name', 'Rockstep Solutions (United States)'),
(85924, 71952, 'no_lang_code', 'name', 'Semba Biosciences (United States)'),
(85925, 71953, 'no_lang_code', 'name', 'Sample6 (United States)'),
(85926, 71954, 'no_lang_code', 'name', 'SemQuest (United States)'),
(85927, 71955, 'no_lang_code', 'name', 'Rocky Mountain Scientific Laboratory (United States)'),
(85928, 71956, 'no_lang_code', 'name', 'SeNA Research (United States)'),
(85929, 71957, 'no_lang_code', 'name', 'Sencera Energy (United States)'),
(85930, 71958, 'no_lang_code', 'name', 'R.M. Associates (United States)'),
(85931, 71959, 'no_lang_code', 'name', 'Scientific Technologies Corporation (United States)'),
(85932, 71960, 'no_lang_code', 'name', 'Senseeker Engineering (United States)'),
(85933, 71961, 'no_lang_code', 'name', 'Royal Caliber (United States)'),
(85934, 71962, 'no_lang_code', 'name', 'Scientific Toolworks (United States)'),
(85935, 71963, 'no_lang_code', 'name', 'ForteBio (United States)'),
(85936, 71964, 'no_lang_code', 'name', 'Sciogen (United States)'),
(85937, 71965, 'no_lang_code', 'name', 'Sarcos (United States)'),
(85938, 71966, 'no_lang_code', 'name', 'Sarda (United States)'),
(85939, 71967, 'no_lang_code', 'name', 'Sarfez (United States)'),
(85940, 71968, 'no_lang_code', 'name', 'SensoDx (United States)'),
(85941, 71969, 'no_lang_code', 'name', 'RTS Labs (United States)'),
(85942, 71970, 'no_lang_code', 'name', 'Savari (United States)'),
(85943, 71971, 'no_lang_code', 'name', 'Scomm (United States)'),
(85944, 71972, 'no_lang_code', 'name', 'Rubicon Technology (United States)'),
(85945, 71973, 'no_lang_code', 'name', 'Sensopath Technologies (United States)'),
(85946, 71974, 'no_lang_code', 'name', 'Savi (United States)'),
(85947, 71975, 'no_lang_code', 'name', 'Runtime Verification (United States)'),
(85948, 71976, 'no_lang_code', 'name', 'Scribe Biosciences (United States)'),
(85949, 71977, 'no_lang_code', 'name', 'Schell Games (United States)'),
(85950, 71978, 'no_lang_code', 'name', 'RTI (United States)'),
(85951, 71979, 'no_lang_code', 'name', 'Scribner (United States)'),
(85952, 71980, 'no_lang_code', 'name', 'Scripps Laboratories (United States)'),
(85953, 71981, 'no_lang_code', 'name', 'Royal Engineered Composites (United States)'),
(85954, 71982, 'no_lang_code', 'name', 'SDI Engineering (United States)'),
(85955, 71983, 'no_lang_code', 'name', 'Vectrus (United States)'),
(85956, 71984, 'no_lang_code', 'name', 'Signature Analytics (United States)'),
(85957, 71985, 'no_lang_code', 'name', 'Seafire Micros (United States)'),
(85958, 71986, 'no_lang_code', 'name', 'Sentien (United States)'),
(85959, 71987, 'no_lang_code', 'name', 'Sila Nanotechnologies (United States)'),
(85960, 71988, 'no_lang_code', 'name', 'Sentimetrix (United States)'),
(85961, 71989, 'no_lang_code', 'name', 'Silatronix (United States)'),
(85962, 71990, 'no_lang_code', 'name', 'SilBiotech (United States)'),
(85963, 71991, 'no_lang_code', 'name', 'SilcsBio (United States)'),
(85964, 71992, 'no_lang_code', 'name', 'Sequoia (United States)'),
(85965, 71993, 'no_lang_code', 'name', 'Silicon Micro Display (United States)'),
(85966, 71994, 'no_lang_code', 'name', 'Silk Technologies (United States)'),
(85967, 71995, 'no_lang_code', 'name', 'Serimmune (United States)'),
(85968, 71996, 'no_lang_code', 'name', 'Sofar Acoustics (United States)'),
(85969, 71997, 'no_lang_code', 'name', 'Serionix (United States)'),
(85970, 71998, 'no_lang_code', 'name', 'Silver Bullet Solutions (United States)'),
(85971, 71999, 'no_lang_code', 'name', 'Sest (United States)'),
(85972, 72000, 'no_lang_code', 'name', 'Silverside Detectors (United States)'),
(85973, 72001, 'no_lang_code', 'name', 'SIM*VIVO (United States)'),
(85974, 72002, 'no_lang_code', 'name', 'Simetri (United States)'),
(85975, 72003, 'no_lang_code', 'name', 'Seward (United States)'),
(85976, 72004, 'no_lang_code', 'name', 'Solano Pharmaceuticals (United States)'),
(85977, 72005, 'no_lang_code', 'name', 'Simmtec (United States)'),
(85978, 72006, 'no_lang_code', 'name', 'Solar Roadways (United States)'),
(85979, 72007, 'no_lang_code', 'name', 'Simphotek (United States)'),
(85980, 72008, 'no_lang_code', 'name', 'Shal Technologies (United States)'),
(85981, 72009, 'no_lang_code', 'name', 'Space Information Laboratories (United States)'),
(85982, 72010, 'no_lang_code', 'name', 'Solid State Ceramics (United States)'),
(85983, 72011, 'no_lang_code', 'name', 'Shape Memory Medical (United States)'),
(85984, 72012, 'no_lang_code', 'name', 'Shared Medical Technology (United States)'),
(85985, 72013, 'no_lang_code', 'name', 'Sharma & Associates (United States)'),
(85986, 72014, 'no_lang_code', 'name', 'NanoGraf (United States)'),
(85987, 72015, 'no_lang_code', 'name', 'Sheehan Medical (United States)'),
(85988, 72016, 'no_lang_code', 'name', 'SiOnyx (United States)'),
(85989, 72017, 'no_lang_code', 'name', 'Spatial Cognition (United States)'),
(85990, 72018, 'no_lang_code', 'name', 'Sippa Solutions (United States)'),
(85991, 72019, 'no_lang_code', 'name', 'Shine Micro (United States)'),
(85992, 72020, 'no_lang_code', 'name', 'Speak Agent (United States)'),
(85993, 72021, 'no_lang_code', 'name', 'Somnarus (United States)'),
(85994, 72022, 'no_lang_code', 'name', 'Shock Transients (United States)'),
(85995, 72023, 'no_lang_code', 'name', 'SonarMed (United States)'),
(85996, 72024, 'no_lang_code', 'name', 'Specialty Devices (United States)'),
(85997, 72025, 'no_lang_code', 'name', 'Sonavex (United States)');
INSERT INTO `ror_settings` VALUES
(85998, 72026, 'no_lang_code', 'name', 'Specialty Materials (United States)'),
(85999, 72027, 'no_lang_code', 'name', 'Shuttle Pharmaceuticals (United States)'),
(86000, 72028, 'no_lang_code', 'name', 'SkEyes Unlimited (United States)'),
(86001, 72029, 'no_lang_code', 'name', 'Spectabit Optics (United States)'),
(86002, 72030, 'no_lang_code', 'name', 'Sonivate Medical (United States)'),
(86003, 72031, 'no_lang_code', 'name', 'SpectraDynamics (United States)'),
(86004, 72032, 'no_lang_code', 'name', 'Skyhaven Systems (United States)'),
(86005, 72033, 'no_lang_code', 'name', 'Spectra Group Limited (United States)'),
(86006, 72034, 'no_lang_code', 'name', 'Sonoran Biosciences (United States)'),
(86007, 72035, 'no_lang_code', 'name', 'SkySentry (United States)'),
(86008, 72036, 'no_lang_code', 'name', 'Nehemiah Security (United States)'),
(86009, 72037, 'no_lang_code', 'name', 'Smart Electric Grid (United States)'),
(86010, 72038, 'no_lang_code', 'name', 'Spectradyne (United States)'),
(86011, 72039, 'no_lang_code', 'name', 'SMD (United States)'),
(86012, 72040, 'no_lang_code', 'name', 'Soterix Medical (United States)'),
(86013, 72041, 'en', 'name', 'Sphere Institute'),
(86014, 72042, 'no_lang_code', 'name', 'Spectrum Associates (United States)'),
(86015, 72043, 'no_lang_code', 'name', 'Opticslah (United States)'),
(86016, 72044, 'no_lang_code', 'name', 'SoundPipe Therapeutics (United States)'),
(86017, 72045, 'no_lang_code', 'name', 'Spectral Platforms (United States)'),
(86018, 72046, 'no_lang_code', 'name', 'Altum Pharmaceuticals (Canada)'),
(86019, 72047, 'no_lang_code', 'name', 'Spectrum Coatings (United States)'),
(86020, 72048, 'no_lang_code', 'name', 'SpeechVive (United States)'),
(86021, 72049, 'no_lang_code', 'name', 'WestMountain Asset Management (United States)'),
(86022, 72050, 'no_lang_code', 'name', 'Spero Devices (United States)'),
(86023, 72051, 'en', 'name', 'Scottish Universities Insight Institute'),
(86024, 72052, 'no_lang_code', 'name', 'Sigmatech (United States)'),
(86025, 72053, 'no_lang_code', 'name', 'Diagnostic Photonics (United States)'),
(86026, 72054, 'no_lang_code', 'name', 'Signals Analytics (United States)'),
(86027, 72055, 'no_lang_code', 'name', 'Laboratory Catalyst Systems (United States)'),
(86028, 72056, 'no_lang_code', 'name', 'Stf Technologies (United States)'),
(86029, 72057, 'no_lang_code', 'name', 'SignalRx Pharmaceuticals (United States)'),
(86030, 72058, 'no_lang_code', 'name', 'Solutions Through Innovative Technologies (United States)'),
(86031, 72059, 'en', 'name', 'MODUL University Dubai'),
(86032, 72060, 'no_lang_code', 'name', 'Surfx Technologies (United States)'),
(86033, 72061, 'no_lang_code', 'name', 'Storagenergy Technologies (United States)'),
(86034, 72062, 'no_lang_code', 'name', 'SuviCa (United States)'),
(86035, 72063, 'no_lang_code', 'name', 'Strange Loop Games (United States)'),
(86036, 72064, 'no_lang_code', 'name', 'SVXR (United States)'),
(86037, 72065, 'no_lang_code', 'name', 'Springstar (United States)'),
(86038, 72066, 'no_lang_code', 'name', 'Strategic Analysis Enterprises (United States)'),
(86039, 72067, 'no_lang_code', 'name', 'SR2 Group (United States)'),
(86040, 72068, 'no_lang_code', 'name', 'Swallow Solutions (United States)'),
(86041, 72069, 'no_lang_code', 'name', 'Stu Segall Productions (United States)'),
(86042, 72070, 'no_lang_code', 'name', 'Swift Engineering (United States)'),
(86043, 72071, 'no_lang_code', 'name', 'Stratom (United States)'),
(86044, 72072, 'no_lang_code', 'name', 'Melior Discovery (United States)'),
(86045, 72073, 'no_lang_code', 'name', 'Stresau Laboratory (United States)'),
(86046, 72074, 'no_lang_code', 'name', 'Symbiotix Biotherapies (United States)'),
(86047, 72075, 'no_lang_code', 'name', 'Stress Engineering Services (United States)'),
(86048, 72076, 'no_lang_code', 'name', 'Stress Photonics (United States)'),
(86049, 72077, 'en', 'name', 'Tama County Public Health & Home Care'),
(86050, 72078, 'no_lang_code', 'name', 'StackFrame (United States)'),
(86051, 72079, 'no_lang_code', 'name', 'Synaptic Research (United States)'),
(86052, 72080, 'no_lang_code', 'name', 'Kinection (United States)'),
(86053, 72081, 'no_lang_code', 'name', 'Smith & Co (United States)'),
(86054, 72082, 'no_lang_code', 'name', 'Staib Instruments (United States)'),
(86055, 72083, 'no_lang_code', 'name', 'Syncopated Products (United States)'),
(86056, 72084, 'no_lang_code', 'name', 'Summit Technology Laboratory (United States)'),
(86057, 72085, 'no_lang_code', 'name', 'Summit Test Solutions (United States)'),
(86058, 72086, 'no_lang_code', 'name', 'Syncro Medical Innovations (United States)'),
(86059, 72087, 'no_lang_code', 'name', 'Synertech PM (United States)'),
(86060, 72088, 'no_lang_code', 'name', 'Sun Valley Technology (United States)'),
(86061, 72089, 'no_lang_code', 'name', 'Advanced Technology Systems Company (United States)'),
(86062, 72090, 'no_lang_code', 'name', 'SunRay Scientific (United States)'),
(86063, 72091, 'no_lang_code', 'name', 'Synetics Systems Engineering Corp (United States)'),
(86064, 72092, 'no_lang_code', 'name', 'Sunset Laboratory (United States)'),
(86065, 72093, 'no_lang_code', 'name', 'Syntermed (United States)'),
(86066, 72094, 'no_lang_code', 'name', 'Starfire Systems (United States)'),
(86067, 72095, 'no_lang_code', 'name', 'SysLogic (United States)'),
(86068, 72096, 'no_lang_code', 'name', 'Starix Technology (United States)'),
(86069, 72097, 'no_lang_code', 'name', 'Synthonics (United States)'),
(86070, 72098, 'no_lang_code', 'name', 'System Dynamics International (United States)'),
(86071, 72099, 'no_lang_code', 'name', 'Starship Health Technologies (United States)'),
(86072, 72100, 'no_lang_code', 'name', 'Syntrotek (United States)'),
(86073, 72101, 'no_lang_code', 'name', 'Starodub (United States)'),
(86074, 72102, 'no_lang_code', 'name', 'Systemech (United States)'),
(86075, 72103, 'no_lang_code', 'name', 'Kalusugan + Kalakasan'),
(86076, 72104, 'no_lang_code', 'name', 'Systems Analytics (United States)'),
(86077, 72105, 'no_lang_code', 'name', 'Star Vision Technologies (United States)'),
(86078, 72106, 'no_lang_code', 'name', 'STC Biologics (United States)'),
(86079, 72107, 'no_lang_code', 'name', 'Tgv (United States)'),
(86080, 72108, 'no_lang_code', 'name', 'Technology Focus (United States)'),
(86081, 72109, 'no_lang_code', 'name', 'T2C-Energy (United States)'),
(86082, 72110, 'no_lang_code', 'name', 'Tactical Communications Group (United States)'),
(86083, 72111, 'no_lang_code', 'name', 'Tactical Edge (United States)'),
(86084, 72112, 'no_lang_code', 'name', 'Stein Seal (United States)'),
(86085, 72113, 'no_lang_code', 'name', 'Apogee Semiconductor (United States)'),
(86086, 72114, 'no_lang_code', 'name', 'Stellar Exploration (United States)'),
(86087, 72115, 'no_lang_code', 'name', 'Step Tools (United States)'),
(86088, 72116, 'no_lang_code', 'name', 'AnywherEnergy (United States)'),
(86089, 72117, 'no_lang_code', 'name', 'TargaGenix (United States)'),
(86090, 72118, 'no_lang_code', 'name', 'Tasso (United States)'),
(86091, 72119, 'no_lang_code', 'name', 'Breezing (United States)'),
(86092, 72120, 'no_lang_code', 'name', 'Teachley (United States)'),
(86093, 72121, 'no_lang_code', 'name', 'Technovative Applications (United States)'),
(86094, 72122, 'no_lang_code', 'name', 'Tec-Masters (United States)'),
(86095, 72123, 'no_lang_code', 'name', 'Tech 21 (United States)'),
(86096, 72124, 'no_lang_code', 'name', 'Techulon (United States)'),
(86097, 72125, 'no_lang_code', 'name', 'Techverse (United States)'),
(86098, 72126, 'no_lang_code', 'name', 'CryoRay Coolers (United States)'),
(86099, 72127, 'no_lang_code', 'name', 'Tela Innovations (United States)'),
(86100, 72128, 'no_lang_code', 'name', 'The Eppley Laboratory (United States)'),
(86101, 72129, 'no_lang_code', 'name', 'Third Pole Therapeutics (United States)'),
(86102, 72130, 'no_lang_code', 'name', 'Haleakala Research and Development (United States)'),
(86103, 72131, 'no_lang_code', 'name', 'Technology Applications Group (United States)'),
(86104, 72132, 'no_lang_code', 'name', 'Kendrick Laboratories (United States)'),
(86105, 72133, 'no_lang_code', 'name', 'TechnoView (United States)'),
(86106, 72134, 'no_lang_code', 'name', 'Mackinac Technology (United States)'),
(86107, 72135, 'no_lang_code', 'name', 'The Open Group (United States)'),
(86108, 72136, 'no_lang_code', 'name', 'Dynapel Systems (United States)'),
(86109, 72137, 'no_lang_code', 'name', 'Traverse Biosciences (United States)'),
(86110, 72138, 'no_lang_code', 'name', 'Thorleaf Research (United States)'),
(86111, 72139, 'no_lang_code', 'name', 'Traycer (United States)'),
(86112, 72140, 'no_lang_code', 'name', 'Thornton Tomasetti (United States)'),
(86113, 72141, 'no_lang_code', 'name', 'Triad (United States)'),
(86114, 72142, 'no_lang_code', 'name', 'Theragnostic Technologies (United States)'),
(86115, 72143, 'no_lang_code', 'name', 'Tiburon Associates (United States)'),
(86116, 72144, 'no_lang_code', 'name', 'Therapeutic Vision (United States)'),
(86117, 72145, 'no_lang_code', 'name', 'Tidewater Consulting (United States)'),
(86118, 72146, 'no_lang_code', 'name', 'Tietronix (United States)'),
(86119, 72147, 'no_lang_code', 'name', 'Lubris BioPharma (United States)'),
(86120, 72148, 'no_lang_code', 'name', 'Tribologix (United States)'),
(86121, 72149, 'no_lang_code', 'name', 'Tendeg (United States)'),
(86122, 72150, 'no_lang_code', 'name', 'United Electric Controls (United States)'),
(86123, 72151, 'no_lang_code', 'name', 'Tenet 3 (United States)'),
(86124, 72152, 'no_lang_code', 'name', 'Troxler (United States)'),
(86125, 72153, 'no_lang_code', 'name', 'True (United States)'),
(86126, 72154, 'no_lang_code', 'name', 'Truventic (United States)'),
(86127, 72155, 'no_lang_code', 'name', 'Turnkey Design Services (United States)'),
(86128, 72156, 'no_lang_code', 'name', 'TCI Peptide Therapeutics (United States)'),
(86129, 72157, 'no_lang_code', 'name', 'Tusaar (United States)'),
(86130, 72158, 'en', 'name', 'Scripps MD Anderson Cancer Center'),
(86131, 72159, 'no_lang_code', 'name', 'Tyvak (United States)'),
(86132, 72160, 'no_lang_code', 'name', 'TerraMetrics (United States)'),
(86133, 72161, 'no_lang_code', 'name', 'Topia Technology (United States)'),
(86134, 72162, 'no_lang_code', 'name', 'Tesla Laboratories (United States)'),
(86135, 72163, 'no_lang_code', 'name', 'Test & Evaluation Solutions (United States)'),
(86136, 72164, 'no_lang_code', 'name', 'Theron Pharmaceuticals (United States)'),
(86137, 72165, 'no_lang_code', 'name', 'Testco (United States)'),
(86138, 72166, 'no_lang_code', 'name', 'Torc Robotics (United States)'),
(86139, 72167, 'no_lang_code', 'name', 'US Biotest (United States)'),
(86140, 72168, 'no_lang_code', 'name', 'Tetra Research (United States)'),
(86141, 72169, 'no_lang_code', 'name', 'Thermal Storage Systems (United States)'),
(86142, 72170, 'no_lang_code', 'name', 'U.S. Composites (United States)'),
(86143, 72171, 'no_lang_code', 'name', 'Thermedical (United States)'),
(86144, 72172, 'no_lang_code', 'name', 'UbiQD (United States)'),
(86145, 72173, 'no_lang_code', 'name', 'Tosk (United States)'),
(86146, 72174, 'no_lang_code', 'name', 'UCT Coatings (United States)'),
(86147, 72175, 'no_lang_code', 'name', 'TeVido BioDevices (United States)'),
(86148, 72176, 'no_lang_code', 'name', 'Ultra Safe Nuclear Corporation (United States)'),
(86149, 72177, 'no_lang_code', 'name', 'Tex Tech Industries (United States)'),
(86150, 72178, 'no_lang_code', 'name', 'Trace-Ability (United States)'),
(86151, 72179, 'no_lang_code', 'name', 'UltraCell (United States)'),
(86152, 72180, 'no_lang_code', 'name', 'Ultrasonic Technologies (United States)'),
(86153, 72181, 'no_lang_code', 'name', 'Uniqarta (United States)'),
(86154, 72182, 'no_lang_code', 'name', 'Vesperix (United States)'),
(86155, 72183, 'no_lang_code', 'name', 'Vestar (United States)'),
(86156, 72184, 'no_lang_code', 'name', 'Translational Sciences (United States)'),
(86157, 72185, 'no_lang_code', 'name', 'United Language Group (United States)'),
(86158, 72186, 'no_lang_code', 'name', 'Vacuum Process Engineering (United States)'),
(86159, 72187, 'no_lang_code', 'name', 'ViaDerm (United States)'),
(86160, 72188, 'no_lang_code', 'name', 'Transmural Systems (United States)'),
(86161, 72189, 'no_lang_code', 'name', 'Transphorm (United States)'),
(86162, 72190, 'no_lang_code', 'name', 'University Technical Services (United States)'),
(86163, 72191, 'no_lang_code', 'name', 'Vidatak (United States)'),
(86164, 72192, 'no_lang_code', 'name', 'Vidrio (United States)'),
(86165, 72193, 'no_lang_code', 'name', 'SuperTurbo Technologies (United States)'),
(86166, 72194, 'no_lang_code', 'name', 'User Systems (United States)'),
(86167, 72195, 'no_lang_code', 'name', 'Viewpoint Molecular Targeting (United States)'),
(86168, 72196, 'no_lang_code', 'name', 'Vigilant Cyber Systems (United States)'),
(86169, 72197, 'no_lang_code', 'name', 'Vision Technology (United States)'),
(86170, 72198, 'no_lang_code', 'name', 'Visionary Pharmaceuticals (United States)'),
(86171, 72199, 'no_lang_code', 'name', 'Vasoptic Medical (United States)'),
(86172, 72200, 'no_lang_code', 'name', 'Visonex (United States)'),
(86173, 72201, 'no_lang_code', 'name', 'Vanilla Unmanned (United States)'),
(86174, 72202, 'no_lang_code', 'name', 'VAWD (United States)'),
(86175, 72203, 'no_lang_code', 'name', 'Vaxess Technologies (United States)'),
(86176, 72204, 'no_lang_code', 'name', 'Visus (United States)'),
(86177, 72205, 'no_lang_code', 'name', 'Vital Art and Science (United States)'),
(86178, 72206, 'no_lang_code', 'name', 'Vcrsoft (United States)'),
(86179, 72207, 'no_lang_code', 'name', 'Vital Probes (United States)'),
(86180, 72208, 'no_lang_code', 'name', 'Virtual Phantoms (United States)'),
(86181, 72209, 'no_lang_code', 'name', 'VitalQuan (United States)'),
(86182, 72210, 'no_lang_code', 'name', 'West Coast Solutions (United States)'),
(86183, 72211, 'no_lang_code', 'name', 'VR Rehab (United States)'),
(86184, 72212, 'no_lang_code', 'name', 'Viti (United States)'),
(86185, 72213, 'no_lang_code', 'name', 'Virtual Technology (United States)'),
(86186, 72214, 'no_lang_code', 'name', 'VITOK Engineers (United States)'),
(86187, 72215, 'no_lang_code', 'name', 'Vector Composites (United States)'),
(86188, 72216, 'no_lang_code', 'name', 'Visca (United States)'),
(86189, 72217, 'no_lang_code', 'name', 'NetDragon (United States)'),
(86190, 72218, 'no_lang_code', 'name', 'VivaQuant (United States)'),
(86191, 72219, 'no_lang_code', 'name', 'Vivor (United States)'),
(86192, 72220, 'no_lang_code', 'name', 'Vektrex (United States)'),
(86193, 72221, 'no_lang_code', 'name', 'Viz-Tek (United States)'),
(86194, 72222, 'no_lang_code', 'name', 'Widder Brothers (United States)'),
(86195, 72223, 'no_lang_code', 'name', 'Xalud Therapeutics (United States)'),
(86196, 72224, 'no_lang_code', 'name', 'XCell Science (United States)'),
(86197, 72225, 'no_lang_code', 'name', 'Widetronix (United States)'),
(86198, 72226, 'no_lang_code', 'name', 'The 451 Group (United States)'),
(86199, 72227, 'no_lang_code', 'name', 'Vocalid (United States)'),
(86200, 72228, 'no_lang_code', 'name', 'Xenotran (United States)'),
(86201, 72229, 'no_lang_code', 'name', 'Voci (United States)'),
(86202, 72230, 'no_lang_code', 'name', 'Venable Instruments (United States)'),
(86203, 72231, 'no_lang_code', 'name', 'BioRankings (United States)'),
(86204, 72232, 'no_lang_code', 'name', 'VPDiagnostics (United States)'),
(86205, 72233, 'no_lang_code', 'name', 'Venator Solutions (United States)'),
(86206, 72234, 'no_lang_code', 'name', 'Venebio (United States)'),
(86207, 72235, 'no_lang_code', 'name', 'VRC Metal Systems (United States)'),
(86208, 72236, 'no_lang_code', 'name', 'Opt-E (United States)'),
(86209, 72237, 'no_lang_code', 'name', 'Ventions (United States)'),
(86210, 72238, 'no_lang_code', 'name', 'Ventrix (United States)'),
(86211, 72239, 'no_lang_code', 'name', 'Vibration and Shock Technologies (United States)'),
(86212, 72240, 'no_lang_code', 'name', 'Vtec Laboratories (United States)'),
(86213, 72241, 'no_lang_code', 'name', 'Vulintus (United States)'),
(86214, 72242, 'no_lang_code', 'name', '247Solar Plant (United States)'),
(86215, 72243, 'no_lang_code', 'name', 'Veralase (United States)'),
(86216, 72244, 'no_lang_code', 'name', 'Verus Research (United States)'),
(86217, 72245, 'no_lang_code', 'name', 'Winchester Technologies (United States)'),
(86218, 72246, 'no_lang_code', 'name', 'VerdaSee Solutions (United States)'),
(86219, 72247, 'no_lang_code', 'name', 'Xona Microfluidics (United States)'),
(86220, 72248, 'no_lang_code', 'name', 'Wasatch Photonics (United States)'),
(86221, 72249, 'no_lang_code', 'name', 'XUV Lasers (United States)'),
(86222, 72250, 'no_lang_code', 'name', 'Veriskin (United States)'),
(86223, 72251, 'no_lang_code', 'name', 'Windmill (United States)'),
(86224, 72252, 'no_lang_code', 'name', 'Wave CPC (United States)'),
(86225, 72253, 'no_lang_code', 'name', 'Xybion Corporation (United States)'),
(86226, 72254, 'no_lang_code', 'name', 'Windmill International (United States)'),
(86227, 72255, 'no_lang_code', 'name', 'WinSanTor (United States)'),
(86228, 72256, 'no_lang_code', 'name', 'Y.K. Bae (United States)'),
(86229, 72257, 'no_lang_code', 'name', 'Valepro (United States)'),
(86230, 72258, 'no_lang_code', 'name', 'YAN Engines (United States)'),
(86231, 72259, 'no_lang_code', 'name', 'Zietchick Research Institute (United States)'),
(86232, 72260, 'no_lang_code', 'name', 'Gototags (United States)'),
(86233, 72261, 'no_lang_code', 'name', 'YumaWorks (United States)'),
(86234, 72262, 'no_lang_code', 'name', 'Yaso Therapeutics (United States)'),
(86235, 72263, 'no_lang_code', 'name', 'Z-Terra (United States)'),
(86236, 72264, 'no_lang_code', 'name', 'Wizbe Innovations (United States)'),
(86237, 72265, 'no_lang_code', 'name', 'ZKxKZ (United States)'),
(86238, 72266, 'no_lang_code', 'name', 'Zeomedix (United States)'),
(86239, 72267, 'no_lang_code', 'name', 'Zeteo Tech (United States)'),
(86240, 72268, 'no_lang_code', 'name', 'Zalgen (United States)'),
(86241, 72269, 'no_lang_code', 'name', 'ZoneOne Pharma (United States)'),
(86242, 72270, 'no_lang_code', 'name', 'Zdye (United States)'),
(86243, 72271, 'no_lang_code', 'name', 'Zata Pharmaceuticals (United States)'),
(86244, 72272, 'no_lang_code', 'name', 'AspenTech (United Kingdom)'),
(86245, 72273, 'no_lang_code', 'name', 'Bruker (Austria)'),
(86246, 72274, 'no_lang_code', 'name', '3D Systems (United Kingdom)'),
(86247, 72275, 'no_lang_code', 'name', 'Alps Electric (United Kingdom)'),
(86248, 72276, 'no_lang_code', 'name', 'Altair Engineering (United Kingdom)'),
(86249, 72277, 'en', 'name', 'Aquarius Population Health'),
(86250, 72278, 'no_lang_code', 'name', 'Ethypharm (United Kingdom)'),
(86251, 72279, 'no_lang_code', 'name', 'Atos (United Kingdom)'),
(86252, 72280, 'no_lang_code', 'name', 'Arkema (United Kingdom)'),
(86253, 72281, 'en', 'name', 'Northeast Cancer Centre'),
(86254, 72282, 'no_lang_code', 'name', 'Autodesk (United Kingdom)'),
(86255, 72283, 'no_lang_code', 'name', 'Bentley Systems (United Kingdom)'),
(86256, 72284, 'no_lang_code', 'name', 'Bentley Systems (United States)'),
(86257, 72285, 'no_lang_code', 'name', 'Axa (United Kingdom)'),
(86258, 72286, 'no_lang_code', 'name', 'BMW (United Kingdom)'),
(86259, 72287, 'no_lang_code', 'name', 'Bobst (United Kingdom)'),
(86260, 72288, 'no_lang_code', 'name', 'Cemex (United Kingdom)'),
(86261, 72289, 'no_lang_code', 'name', 'Cengage Learning (United Kingdom)'),
(86262, 72290, 'no_lang_code', 'name', 'CeramTec (United Kingdom)'),
(86263, 72291, 'no_lang_code', 'name', 'Constellium (United Kingdom)'),
(86264, 72292, 'no_lang_code', 'name', 'Ciena (United Kingdom)'),
(86265, 72293, 'no_lang_code', 'name', 'Deutsche Bank (United Kingdom)'),
(86266, 72294, 'no_lang_code', 'name', 'Danieli (United Kingdom)'),
(86267, 72295, 'no_lang_code', 'name', 'Disco (Germany)'),
(86268, 72296, 'no_lang_code', 'name', 'DMG Mori (United Kingdom)'),
(86269, 72297, 'no_lang_code', 'name', 'Finning (United Kingdom)'),
(86270, 72298, 'no_lang_code', 'name', 'Electro Optical Systems (United Kingdom)'),
(86271, 72299, 'no_lang_code', 'name', 'Bridgestone (United Kingdom)'),
(86272, 72300, 'no_lang_code', 'name', 'Fonterra (Australia)'),
(86273, 72301, 'no_lang_code', 'name', 'Eurostep (United Kingdom)'),
(86274, 72302, 'no_lang_code', 'name', 'Velocity Laboratories (United States)'),
(86275, 72303, 'en', 'name', 'Energy Safety Research Institute'),
(86276, 72304, 'en', 'name', 'Clinica Esperanza/Hope Clinic'),
(86277, 72305, 'no_lang_code', 'name', 'Semtech (United Kingdom)'),
(86278, 72306, 'no_lang_code', 'name', 'Hottinger Baldwin Messtechnik (United Kingdom)'),
(86279, 72307, 'no_lang_code', 'name', 'HCL Technologies (United States)'),
(86280, 72308, 'no_lang_code', 'name', 'Hosokawa Micron (United Kingdom)'),
(86281, 72309, 'no_lang_code', 'name', 'ID Quantique (United Kingdom)'),
(86282, 72310, 'no_lang_code', 'name', 'Applus+ IDIADA (United Kingdom)'),
(86283, 72311, 'no_lang_code', 'name', 'Henkel (United Kingdom)'),
(86284, 72312, 'en', 'name', 'Bosom Buddies of Arizona'),
(86285, 72313, 'no_lang_code', 'name', 'Itaconix (United Kingdom)'),
(86286, 72314, 'no_lang_code', 'name', 'Interface (United Kingdom)'),
(86287, 72315, 'no_lang_code', 'name', 'Innotec (United Kingdom)'),
(86288, 72316, 'en', 'name', 'Internet Matters'),
(86289, 72317, 'no_lang_code', 'name', 'Kistler (United Kingdom)'),
(86290, 72318, 'no_lang_code', 'name', 'Inphi (United Kingdom)'),
(86291, 72319, 'no_lang_code', 'name', 'Viavi Solutions (United Kingdom)'),
(86292, 72320, 'no_lang_code', 'name', 'Kuehne + Nagel (United Kingdom)'),
(86293, 72321, 'no_lang_code', 'name', 'Koch Industries (United Kingdom)'),
(86294, 72322, 'no_lang_code', 'name', 'BearingPoint (United Kingdom)'),
(86295, 72323, 'no_lang_code', 'name', 'Kerry Group (United Kingdom)'),
(86296, 72324, 'no_lang_code', 'name', 'Lenzing (United Kingdom)'),
(86297, 72325, 'no_lang_code', 'name', 'Lead Discovery Center (Germany)'),
(86298, 72326, 'no_lang_code', 'name', 'Xenetic Biosciences (United Kingdom)'),
(86299, 72327, 'en', 'name', 'London Internet Exchange'),
(86300, 72328, 'no_lang_code', 'name', 'Heidenhain (United Kingdom)'),
(86301, 72329, 'no_lang_code', 'name', 'Materialise (United Kingdom)'),
(86302, 72330, 'no_lang_code', 'name', 'McKinsey & Company (United Kingdom)'),
(86303, 72331, 'no_lang_code', 'name', 'Mitsubishi Corporation (United Kingdom)'),
(86304, 72332, 'no_lang_code', 'name', 'Cardno (United Kingdom)'),
(86305, 72333, 'no_lang_code', 'name', 'Zynga (United Kingdom)'),
(86306, 72334, 'no_lang_code', 'name', 'NGK Insulators (United Kingdom)'),
(86307, 72335, 'en', 'name', 'PROCURE'),
(86308, 72336, 'en', 'name', 'Be Strong, Fight On!'),
(86309, 72337, 'en', 'name', 'Coalition Against Childhood Cancer'),
(86310, 72338, 'en', 'name', 'Elaine Roberts Foundation'),
(86311, 72339, 'en', 'name', 'Noah''s Light Foundation'),
(86312, 72340, 'en', 'name', 'Sammy''s Superheroes'),
(86313, 72341, 'en', 'name', 'The Neuroblastoma Children''s Cancer Society'),
(86314, 72342, 'no_lang_code', 'name', 'Northrop Grumman (United Kingdom)'),
(86315, 72343, 'no_lang_code', 'name', 'OSRAM (United Kingdom)'),
(86316, 72344, 'en', 'name', 'Hamamatsu University School of Medicine'),
(86317, 72344, 'ja', 'name', 'ęµœę¾åŒ»ē§‘å¤§å­¦'),
(86318, 72345, 'no_lang_code', 'name', 'Outokumpu (United Kingdom)'),
(86319, 72346, 'no_lang_code', 'name', 'New England Biolabs (United Kingdom)'),
(86320, 72347, 'no_lang_code', 'name', 'PTC (United Kingdom)'),
(86321, 72348, 'no_lang_code', 'name', 'Qorvo (United Kingdom)'),
(86322, 72349, 'no_lang_code', 'name', 'Ricardo (India)'),
(86323, 72350, 'no_lang_code', 'name', 'CACI International (United Kingdom)'),
(86324, 72351, 'no_lang_code', 'name', 'Simworx (United Kingdom)'),
(86325, 72352, 'no_lang_code', 'name', 'Richardson Electronics (United Kingdom)'),
(86326, 72353, 'no_lang_code', 'name', 'PPG Industries (United Kingdom)'),
(86327, 72354, 'no_lang_code', 'name', 'Semikron (United Kingdom)'),
(86328, 72355, 'no_lang_code', 'name', 'Tobii (United Kingdom)'),
(86329, 72356, 'en', 'name', 'Hamamatsu Japan Language College'),
(86330, 72357, 'no_lang_code', 'name', 'Schunk (United Kingdom)'),
(86331, 72358, 'no_lang_code', 'name', 'SMA Solar Technology (United Kingdom)'),
(86332, 72359, 'no_lang_code', 'name', 'Equinor (United Kingdom)'),
(86333, 72360, 'no_lang_code', 'name', 'Shell (Malaysia)'),
(86334, 72361, 'en', 'name', 'Phelps Hospital'),
(86335, 72362, 'en', 'name', 'Peconic Bay Medical Center'),
(86336, 72363, 'no_lang_code', 'name', 'TerraVerdae BioWorks (United Kingdom)'),
(86337, 72364, 'no_lang_code', 'name', 'Procomcure Biotech (Austria)'),
(86338, 72365, 'no_lang_code', 'name', 'Givaudan (Sweden)'),
(86339, 72366, 'de', 'name', 'Waldrappteam'),
(86340, 72367, 'en', 'name', 'Vienna City Library'),
(86341, 72367, 'de', 'name', 'Wienbibliothek im Rathaus'),
(86342, 72368, 'no_lang_code', 'name', 'Topcon (United Kingdom)'),
(86343, 72369, 'de', 'name', 'Zentrum für Erinnerungskultur und Geschichtsforschung'),
(86344, 72370, 'no_lang_code', 'name', 'Particle Beam Lasers (United States)'),
(86345, 72371, 'no_lang_code', 'name', 'Spectra Solutions (United States)'),
(86346, 72372, 'no_lang_code', 'name', 'DO'),
(86347, 72373, 'no_lang_code', 'name', 'Abilia (United Kingdom)'),
(86348, 72374, 'no_lang_code', 'name', 'United Parcel Service (United Kingdom)'),
(86349, 72375, 'en', 'name', 'British Athletics'),
(86350, 72376, 'no_lang_code', 'name', 'Michelin (United Kingdom)'),
(86351, 72377, 'en', 'name', 'Unlimited Potential'),
(86352, 72378, 'no_lang_code', 'name', 'WƤrtsilƤ (United Kingdom)'),
(86353, 72379, 'en', 'name', 'West Ridge Veterinary Practice'),
(86354, 72380, 'no_lang_code', 'name', 'Klƶckner (United Kingdom)'),
(86355, 72381, 'no_lang_code', 'name', 'NGK Insulators (Germany)'),
(86356, 72382, 'en', 'name', 'Write Inspired'),
(86357, 72383, 'no_lang_code', 'name', 'Energy to Power Solution (United States)'),
(86358, 72384, 'no_lang_code', 'name', 'Glacigen Materials (United States)'),
(86359, 72385, 'no_lang_code', 'name', 'HAMR Industries (United States)'),
(86360, 72386, 'en', 'name', 'American Public Transportation Association'),
(86361, 72387, 'en', 'name', 'Concrete Reinforcing Steel Institute'),
(86362, 72388, 'en', 'name', 'Cooperative Mobility for Competitive Megaregions'),
(86363, 72389, 'en', 'name', 'Electric Vehicle Transportation Center'),
(86364, 72390, 'no_lang_code', 'name', 'Genex Systems (United States)'),
(86365, 72391, 'en', 'name', 'Great Lakes Maritime Research Institute'),
(86366, 72392, 'en', 'name', 'Gulf Coast Center for Evacuation and Transportation Resiliency'),
(86367, 72393, 'en', 'name', 'William and Barbara Leonard Transportation Center'),
(86368, 72394, 'en', 'name', 'Asphalt Institute'),
(86369, 72395, 'en', 'name', 'Northeast Gas Association'),
(86370, 72396, 'no_lang_code', 'name', 'Cambridge Systematics (United States)'),
(86371, 72397, 'en', 'name', 'METRANS Transportation Center'),
(86372, 72398, 'en', 'name', 'Preusser Research Group'),
(86373, 72399, 'en', 'name', 'University Transportation Center for Alabama'),
(86374, 72400, 'en', 'name', 'Southern Plains Transportation Center'),
(86375, 72401, 'en', 'name', 'National Center for Intermodal Transportation'),
(86376, 72402, 'en', 'name', 'National Center for Sustainable Transportation'),
(86377, 72403, 'en', 'name', 'Center for Reliable Energy Systems'),
(86378, 72404, 'en', 'name', 'Mid-Atlantic Transportation Sustainability Center'),
(86379, 72405, 'nl', 'name', 'Stichting Jij Speelt de Hoofdrol'),
(86380, 72406, 'en', 'name', 'Safer Sim'),
(86381, 72407, 'no_lang_code', 'name', 'SES Group & Associates (United States)'),
(86382, 72408, 'en', 'name', 'Technologies for Safe and Efficient Transportation'),
(86383, 72409, 'en', 'name', 'National Highway Institute'),
(86384, 72410, 'en', 'name', 'The TAU Institute'),
(86385, 72411, 'en', 'name', 'Automotive Service Excellence'),
(86386, 72412, 'en', 'name', 'University Transportation Research Center'),
(86387, 72413, 'en', 'name', 'Mid-Atlantic University Transportation Center'),
(86388, 72414, 'en', 'name', 'Transportation Learning Center'),
(86389, 72415, 'en', 'name', 'National Transportation Research Center'),
(86390, 72416, 'en', 'name', 'New England University Transportation Center'),
(86391, 72417, 'en', 'name', 'University Transportation Center for Mobility'),
(86392, 72418, 'en', 'name', 'Transportation Safety Institute'),
(86393, 72419, 'en', 'name', 'Transportation Research Center for Livable Communities'),
(86394, 72420, 'en', 'name', 'Western Transportation Institute'),
(86395, 72421, 'en', 'name', 'American Trucking Associations'),
(86396, 72422, 'no_lang_code', 'name', 'Sen-oku HakukoKan Museum'),
(86397, 72422, 'ja', 'name', 'ę³‰å±‹åšå¤é¤Ø'),
(86398, 72423, 'en', 'name', 'Hokkaido Chitose College of Rehabilitation'),
(86399, 72423, 'ja', 'name', 'åŒ—ęµ·é“åƒę­³ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å¤§å­¦'),
(86400, 72424, 'no_lang_code', 'name', 'Tobishima (Japan)'),
(86401, 72424, 'ja', 'name', '飛島建設'),
(86402, 72425, 'en', 'name', 'Komatsu University'),
(86403, 72425, 'ja', 'name', 'å…¬ē«‹å°ę¾å¤§å­¦'),
(86404, 72426, 'en', 'name', 'Museum of Natural and Environmental History, Shizuoka'),
(86405, 72426, 'ja', 'name', 'ćµć˜ć®ćć«åœ°ēƒē’°å¢ƒå²ćƒŸćƒ„ćƒ¼ć‚øć‚¢ćƒ '),
(86406, 72427, 'en', 'name', 'Kyoto Prefectural Library and Archives'),
(86407, 72427, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹ē·åˆč³‡ę–™é¤Ø'),
(86408, 72428, 'en', 'name', 'Hokkaido Arisu High School'),
(86409, 72428, 'ja', 'name', 'åŒ—ęµ·é“ęœ‰ę –é«˜ę ”'),
(86410, 72429, 'en', 'name', 'Saitama Prefectural Kasukabe Special Support School'),
(86411, 72429, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ę˜„ę—„éƒØé¤Šč­·å­¦ę ”'),
(86412, 72430, 'en', 'name', 'Oita Prefectural Hida Forest Engineering High School'),
(86413, 72430, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹ę—„ē”°ęž—å·„é«˜'),
(86414, 72431, 'en', 'name', 'Gifu Prefectural Gifu Kita Senior High School'),
(86415, 72431, 'ja', 'name', 'å²é˜œēœŒå²é˜œåŒ—é«˜'),
(86416, 72432, 'en', 'name', 'Shonan University of Medical Sciences'),
(86417, 72432, 'ja', 'name', 'ę¹˜å—åŒ»ē™‚å¤§å­¦'),
(86418, 72433, 'no_lang_code', 'name', 'Okayama Prefecture'),
(86419, 72433, 'ja', 'name', 'å²”å±±ēœŒč¾²ęž—ę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼ē”Ÿē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(86420, 72434, 'en', 'name', 'Chiba Prefecture Cultural Property Center'),
(86421, 72434, 'ja', 'name', 'čŖåƒč‘‰ēœŒę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(86422, 72435, 'en', 'name', 'Amanosan Cultural Heritages Research Institute'),
(86423, 72435, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗ å¤©é‡Žå±±ę–‡åŒ–éŗē”£ē ”ē©¶ę‰€'),
(86424, 72436, 'en', 'name', 'Japan Association for Fire Science and Engineering'),
(86425, 72436, 'ja', 'name', 'ę—„ęœ¬ē«ē½å­¦ä¼š'),
(86426, 72437, 'en', 'name', 'Niigata Agro-Food University'),
(86427, 72437, 'ja', 'name', 'ę–°ę½Ÿé£Ÿę–™č¾²ę„­å¤§å­¦'),
(86428, 72438, 'en', 'name', 'MOA Museum of Art'),
(86429, 72438, 'ja', 'name', 'MOAē¾Žč”“é¤Ø'),
(86430, 72439, 'en', 'name', 'ECC Kokusai College of Foreign Languages'),
(86431, 72439, 'ja', 'name', 'ECCå›½éš›å¤–čŖžå°‚é–€å­¦ę ”'),
(86432, 72440, 'en', 'name', 'NPO Net work for Shizuoka Prefecture Museum of Natural History'),
(86433, 72440, 'ja', 'name', 'é™å²”ēœŒč‡Ŗē„¶å²åšē‰©é¤ØćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(86434, 72441, 'en', 'name', 'Kyoto City Archaeological Research Institute'),
(86435, 72441, 'ja', 'name', 'äŗ¬éƒ½åø‚č€ƒå¤č³‡ę–™é¤Ø'),
(86436, 72442, 'en', 'name', 'Foundation Yamanashi Cultural Property Research Institute'),
(86437, 72442, 'ja', 'name', 'å±±ę¢Øę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(86438, 72443, 'en', 'name', 'Rehabilitation College Shimane'),
(86439, 72443, 'ja', 'name', 'ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚«ćƒ¬ćƒƒć‚øå³¶ę ¹'),
(86440, 72444, 'en', 'name', 'Shiga Prefecture Cultural Property Protection Association'),
(86441, 72444, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę»‹č³€ēœŒę–‡åŒ–č²”äæč­·å”ä¼š'),
(86442, 72445, 'en', 'name', 'The Institution of Environmental Sciences'),
(86443, 72446, 'en', 'name', 'Shikoku Central Hospital of the Mutual Aid Association of Public School Teachers'),
(86444, 72446, 'ja', 'name', 'å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆå››å›½äø­å¤®ē—…é™¢ć€ę„›åŖ›ēœŒć€ę—„ęœ¬'),
(86445, 72447, 'en', 'name', 'Kochi Prefecture Archaeological Center'),
(86446, 72447, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹åŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(86447, 72448, 'en', 'name', 'Institute of Environmental Rehabilitation and Conservation'),
(86448, 72448, 'ja', 'name', 'ē’°å¢ƒäæ®å¾©äæå…Øę©Ÿę§‹'),
(86449, 72449, 'en', 'name', 'International Rescue System'),
(86450, 72449, 'ja', 'name', 'å›½éš›ćƒ¬ć‚¹ć‚­ćƒ„ćƒ¼ć‚·ć‚¹ćƒ†ćƒ '),
(86451, 72450, 'en', 'name', 'Kyoto College of Economics'),
(86452, 72450, 'ja', 'name', '京都経済短期大学'),
(86453, 72451, 'no_lang_code', 'name', 'Shishikari Sand Dune Museum'),
(86454, 72451, 'ja', 'name', 'ć„ć—ć‹ć‚Šē ‚äø˜ć®é¢Øč³‡ę–™é¤Ø'),
(86455, 72452, 'en', 'name', 'Nagoya Future Culture College'),
(86456, 72452, 'ja', 'name', 'åå¤å±‹ęœŖę„ę–‡åŒ–å°‚é–€å­¦ę ”'),
(86457, 72453, 'en', 'name', 'Epson Information Technology College'),
(86458, 72453, 'ja', 'name', 'ć‚Øćƒ—ć‚½ćƒ³ęƒ…å ±ē§‘å­¦å°‚é–€å­¦ę ”'),
(86459, 72454, 'no_lang_code', 'name', 'Ibarakihigashi National Hospital'),
(86460, 72454, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹čŒØåŸŽę±ē—…é™¢'),
(86461, 72455, 'en', 'name', 'Chubu University Daiichi High School'),
(86462, 72455, 'ja', 'name', 'äø­éƒØå¤§å­¦ē¬¬äø€é«˜ē­‰å­¦ę ”'),
(86463, 72456, 'en', 'name', 'Mie Chuo Medical Center'),
(86464, 72456, 'ja', 'name', 'äø‰é‡äø­å¤®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(86465, 72457, 'en', 'name', 'Farmers Education Association Kashiwa Gakuen Agricultural Nutrition College'),
(86466, 72457, 'ja', 'name', 'éÆ‰ę·µå­¦åœ’č¾²ę„­ę „é¤Šå°‚é–€å­¦ę ”'),
(86467, 72458, 'en', 'name', 'National Institute on Consumer Education'),
(86468, 72458, 'ja', 'name', 'ę¶ˆč²»č€…ę•™č‚²ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(86469, 72459, 'no_lang_code', 'name', 'Ochanomizu University Kindergarten'),
(86470, 72459, 'ja', 'name', 'ćŠčŒ¶ć®ę°“å„³å­å¤§å­¦é™„å±žå¹¼ēØšåœ’'),
(86471, 72460, 'en', 'name', 'Aichi Mizuho Junior College'),
(86472, 72460, 'ja', 'name', 'ę„›ēŸ„ćæćšć»ēŸ­ęœŸå¤§å­¦'),
(86473, 72461, 'en', 'name', 'Asia Pacific Institute of Research'),
(86474, 72461, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ アジア太平擋研究所'),
(86475, 72462, 'en', 'name', 'Children''s Play School Citizen Stage'),
(86476, 72462, 'ja', 'name', 'é‡§č·Æåø‚ć“ć©ć‚‚éŠå­¦é¤Ø'),
(86477, 72463, 'en', 'name', 'East Riding of Yorkshire Council'),
(86478, 72464, 'en', 'name', 'Institute Of Psychomedical Education For Children And Adults'),
(86479, 72464, 'ja', 'name', 'ćƒšćƒƒć‚Æē ”ē©¶ę‰€'),
(86480, 72465, 'no_lang_code', 'name', 'Kurayoshi Museum'),
(86481, 72465, 'ja', 'name', 'å€‰å‰åšē‰©é¤Ø'),
(86482, 72466, 'en', 'name', 'Hachinohe Kodai2 High School'),
(86483, 72466, 'ja', 'name', 'å…«ęˆøå·„ę„­å¤§å­¦ē¬¬äŗŒé«˜ē­‰å­¦ę ”'),
(86484, 72467, 'en', 'name', 'Misato Observatory'),
(86485, 72467, 'ja', 'name', 'ćæć•ćØå¤©ę–‡å°'),
(86486, 72468, 'en', 'name', 'Yamanashi Research Institute'),
(86487, 72468, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å±±ę¢Øē·åˆē ”ē©¶ę‰€'),
(86488, 72469, 'en', 'name', 'Itami City Museum'),
(86489, 72469, 'ja', 'name', 'ä¼Šäø¹åø‚ē«‹åšē‰©é¤Ø'),
(86490, 72470, 'en', 'name', 'Kagoshima City Aquarium Foundation'),
(86491, 72470, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ é¹æå…å³¶åø‚ę°“ę—é¤Øå…¬ē¤¾'),
(86492, 72471, 'en', 'name', 'Public interest incorporated foundation Keep Association'),
(86493, 72471, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚­ćƒ¼ćƒ—å”ä¼š'),
(86494, 72472, 'en', 'name', 'Koto Cultural Community Foundation'),
(86495, 72472, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę±Ÿę±åŒŗę–‡åŒ–ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£č²”å›£'),
(86496, 72473, 'en', 'name', 'Middle East Institute of Japan'),
(86497, 72473, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ äø­ę±čŖæęŸ»ä¼š'),
(86498, 72474, 'en', 'name', 'Idemitsu Museum Of Arts'),
(86499, 72474, 'ja', 'name', 'å‡ŗå…‰ē¾Žč”“é¤Ø'),
(86500, 72475, 'en', 'name', 'Sendai Vocational College of Health and Welfare'),
(86501, 72475, 'ja', 'name', 'ä»™å°åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(86502, 72476, 'en', 'name', 'Izumo Science Center'),
(86503, 72476, 'ja', 'name', '出雲科学館'),
(86504, 72477, 'en', 'name', 'Hokkaido Environment Foundation'),
(86505, 72477, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“ē’°å¢ƒč²”å›£'),
(86506, 72478, 'en', 'name', 'Hakodate Clinical Welfare College'),
(86507, 72478, 'ja', 'name', 'å‡½é¤Øč‡ØåŗŠē¦ē„‰å°‚é–€å­¦ę ”'),
(86508, 72479, 'en', 'name', 'Cyber Campus Consortium TIES'),
(86509, 72480, 'en', 'name', 'The Cattle Museum'),
(86510, 72480, 'ja', 'name', 'ē‰›ć®åšē‰©é¤Ø'),
(86511, 72481, 'en', 'name', 'Saga Prefectural Museum'),
(86512, 72481, 'ja', 'name', 'ä½č³€ēœŒē«‹åšē‰©é¤Ø'),
(86513, 72482, 'no_lang_code', 'name', 'Tokiwa Park'),
(86514, 72482, 'ja', 'name', 'ćØćć‚å‹•ē‰©åœ’'),
(86515, 72483, 'en', 'name', 'Saga Prefectural Police'),
(86516, 72483, 'ja', 'name', 'ä½č³€ēœŒč­¦åÆŸęœ¬éƒØ'),
(86517, 72484, 'no_lang_code', 'name', 'Tsurugi Hospital'),
(86518, 72484, 'ja', 'name', 'å…¬ē«‹ć¤ć‚‹ćŽē—…é™¢'),
(86519, 72485, 'en', 'name', 'Shinshu Medical and Welfare College'),
(86520, 72485, 'ja', 'name', 'äæ”å·žåŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(86521, 72486, 'en', 'name', 'Hyogo Prefectural Institute for Educational Research and In-Service Training'),
(86522, 72486, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ę•™č‚²ē ”äæ®ę‰€'),
(86523, 72487, 'en', 'name', 'Chiba Prefectural Center Museum Otone Branch'),
(86524, 72487, 'ja', 'name', 'åƒč‘‰ēœŒē«‹äø­å¤®åšē‰©é¤Ø å¤§åˆ©ę ¹åˆ†é¤Ø'),
(86525, 72488, 'no_lang_code', 'name', 'Boso no Mura'),
(86526, 72488, 'ja', 'name', 'åƒč‘‰ēœŒē«‹ęˆæē·ć®ć‚€ć‚‰'),
(86527, 72489, 'en', 'name', 'Medical Business College'),
(86528, 72489, 'ja', 'name', 'åŒ»ē™‚ćƒ“ć‚øćƒć‚¹å°‚é–€å­¦ę ”'),
(86529, 72490, 'en', 'name', 'Kishokai Medical Corporation'),
(86530, 72490, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗ č‘µé˜ä¼š'),
(86531, 72491, 'no_lang_code', 'name', 'Kaseda Folklore Museum'),
(86532, 72491, 'ja', 'name', 'å—ć•ć¤ć¾åø‚ åŠ äø–ē”°éƒ·åœŸč³‡ę–™é¤Ø'),
(86533, 72492, 'en', 'name', 'Environmental Construction College'),
(86534, 72492, 'ja', 'name', 'åå¤å±‹ē’°å¢ƒå»ŗčØ­å°‚é–€å­¦ę ”'),
(86535, 72493, 'en', 'name', 'Hokkaido Prefectual Police'),
(86536, 72493, 'ja', 'name', 'åŒ—ęµ·é“č­¦åÆŸ'),
(86537, 72494, 'en', 'name', 'Kitami Industrial Technology Center'),
(86538, 72494, 'ja', 'name', 'åŒ—č¦‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(86539, 72495, 'no_lang_code', 'name', 'Muko City Cultural Museum'),
(86540, 72495, 'ja', 'name', 'å‘ę—„åø‚ę–‡åŒ–č³‡ę–™é¤Ø'),
(86541, 72496, 'en', 'name', 'Wakayama Department of Agriculture, Forestry and Fisheries'),
(86542, 72496, 'ja', 'name', 'å’Œę­Œå±±ēœŒč¾²ęž—ę°“ē”£éƒØ'),
(86543, 72497, 'en', 'name', 'Shikoku Central Medical Welfare Institute'),
(86544, 72497, 'ja', 'name', 'å››å›½äø­å¤®åŒ»ē™‚ē¦ē„‰ē·åˆå­¦é™¢'),
(86545, 72498, 'no_lang_code', 'name', 'Yotsuya Medical Cube'),
(86546, 72498, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ć‚ć‚“ć—ć‚“ä¼šå››č°·ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚­ćƒ„ćƒ¼ćƒ–'),
(86547, 72499, 'en', 'name', 'Chiba Environment Foundation'),
(86548, 72499, 'ja', 'name', 'åƒč‘‰ēœŒē’°å¢ƒč²”å›£'),
(86549, 72500, 'en', 'name', 'Ageo Nursing College'),
(86550, 72500, 'ja', 'name', 'äøŠå°¾ēœ‹č­·å°‚é–€å­¦ę ”'),
(86551, 72501, 'no_lang_code', 'name', 'Kamiichi General Hospital'),
(86552, 72501, 'ja', 'name', 'ć‹ćæć„ć”ē·åˆē—…é™¢'),
(86553, 72502, 'en', 'name', 'Saitama Prefectural Police'),
(86554, 72502, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒč­¦åÆŸ'),
(86555, 72503, 'no_lang_code', 'name', 'Grail (United States)'),
(86556, 72504, 'en', 'name', 'National College Of Nursing'),
(86557, 72504, 'ja', 'name', 'å›½ē«‹ēœ‹č­·å¤§å­¦ę ”'),
(86558, 72505, 'en', 'name', 'International Medical And Welfare College'),
(86559, 72505, 'ja', 'name', 'å›½éš›åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(86560, 72506, 'en', 'name', 'The Historical Museum of Jomon Village Oku-Matsushima'),
(86561, 72506, 'ja', 'name', 'å„„ę¾å³¶ēø„ę–‡ę‘ę­“å²č³‡ę–™é¤Ø'),
(86562, 72507, 'en', 'name', 'International Medical And Welfare College Nanao School'),
(86563, 72507, 'ja', 'name', 'å›½éš›åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”äøƒå°¾ę ”'),
(86564, 72508, 'en', 'name', 'Otsu City Museum Of History'),
(86565, 72508, 'ja', 'name', 'å¤§ę“„åø‚ę­“å²åšē‰©é¤Ø'),
(86566, 72509, 'en', 'name', 'The Osaka YWCA'),
(86567, 72509, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗļ¼¹ļ¼·ļ¼£ļ¼”'),
(86568, 72510, 'en', 'name', 'Miyazaki Prefectural Library'),
(86569, 72510, 'ja', 'name', 'å®®å“ŽēœŒē«‹å›³ę›øé¤Ø'),
(86570, 72511, 'en', 'name', 'Miyazaki Prefectural Art Museum'),
(86571, 72511, 'ja', 'name', 'å®®å“ŽēœŒē«‹ē¾Žč”“é¤Ø'),
(86572, 72512, 'no_lang_code', 'name', 'Yamagata Prefectural Shinjo Hospital'),
(86573, 72512, 'ja', 'name', 'å±±å½¢ēœŒē«‹ę–°åŗ„ē—…é™¢'),
(86574, 72513, 'en', 'name', 'Toyama Science Museum'),
(86575, 72513, 'ja', 'name', 'åÆŒå±±åø‚ē§‘å­¦åšē‰©é¤Ø'),
(86576, 72514, 'no_lang_code', 'name', 'Hanazono Hospital'),
(86577, 72514, 'ja', 'name', 'čŠ±åœ’ē—…é™¢'),
(86578, 72515, 'no_lang_code', 'name', 'Sapporo Minami Hospital'),
(86579, 72515, 'ja', 'name', 'ęœ­å¹Œå—ē—…é™¢'),
(86580, 72516, 'en', 'name', 'Senshu University Kitakami welfare education technical school'),
(86581, 72516, 'ja', 'name', 'å°‚äæ®å¤§å­¦åŒ—äøŠē¦ē„‰ę•™č‚²å°‚é–€å­¦ę ”'),
(86582, 72517, 'en', 'name', 'Miyagi Prefectural Research Institute of The Tagajo site'),
(86583, 72517, 'ja', 'name', 'å®®åŸŽēœŒå¤šč³€åŸŽč·”čŖæęŸ»ē ”ē©¶ę‰€'),
(86584, 72518, 'en', 'name', 'Miyazaki Welfare Medical College'),
(86585, 72518, 'ja', 'name', 'å®®å“Žē¦ē„‰åŒ»ē™‚ć‚«ćƒ¬ćƒƒć‚ø'),
(86586, 72519, 'en', 'name', 'Yamaguchi Prefectural Police'),
(86587, 72519, 'ja', 'name', 'å±±å£ēœŒč­¦åÆŸ'),
(86588, 72520, 'en', 'name', 'Ehime Institute of Industrial Technology Paper Technology Center'),
(86589, 72520, 'ja', 'name', 'ę„›åŖ›ēœŒē”£ę„­ęŠ€č”“ē ”ē©¶ę‰€ ē“™ē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(86590, 72521, 'en', 'name', 'Higashihiroshima Medical Center'),
(86591, 72521, 'ja', 'name', 'ę±åŗƒå³¶åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(86592, 72522, 'en', 'name', 'Chiba City Lifelong Learning Center'),
(86593, 72522, 'ja', 'name', 'åƒč‘‰åø‚ ē”Ÿę¶Æå­¦ēæ’ć‚»ćƒ³ć‚æćƒ¼'),
(86594, 72523, 'en', 'name', 'Fukuoka Higashi Medical Center'),
(86595, 72523, 'ja', 'name', 'ē¦å²”ę±åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(86596, 72524, 'en', 'name', 'Okayama City Library'),
(86597, 72524, 'ja', 'name', '岔山市図書館'),
(86598, 72525, 'en', 'name', 'Okayama University of Commerce Attached high School'),
(86599, 72525, 'ja', 'name', 'å²”å±±å•†ē§‘å¤§å­¦é™„å±žé«˜ē­‰å­¦ę ”'),
(86600, 72526, 'no_lang_code', 'name', 'Mifune Dinosaur Museum'),
(86601, 72526, 'ja', 'name', 'å¾”čˆ¹ē”ŗęē«œåšē‰©é¤Ø'),
(86602, 72527, 'no_lang_code', 'name', 'Tokushima Municipal Hospital'),
(86603, 72527, 'ja', 'name', '徳島市民病院'),
(86604, 72528, 'en', 'name', 'The Tokugawa Institute for the History of Forestry'),
(86605, 72528, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¾³å·é»Žę˜Žä¼š'),
(86606, 72529, 'no_lang_code', 'name', 'Keiyu Orthopedic Hospital'),
(86607, 72529, 'ja', 'name', 'ę…¶å‹ę•“å½¢å¤–ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(86608, 72530, 'en', 'name', 'Hiroshima Prefectural Library'),
(86609, 72530, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹å›³ę›øé¤Ø'),
(86610, 72531, 'en', 'name', 'Bunkyo Furusato History Museum'),
(86611, 72531, 'ja', 'name', 'ę–‡äŗ¬ćµć‚‹ć•ćØę­“å²é¤Ø'),
(86612, 72532, 'en', 'name', 'Bunka Gakuen Nagano Technical College'),
(86613, 72532, 'ja', 'name', 'ę–‡åŒ–å­¦åœ’é•·é‡Žäæč‚²å°‚é–€å­¦ę ”'),
(86614, 72533, 'en', 'name', 'Niigata Prefectural Library'),
(86615, 72533, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹å›³ę›øé¤Ø'),
(86616, 72534, 'en', 'name', 'Institute of Traditional Japanese Architecture'),
(86617, 72534, 'ja', 'name', 'ę—„ęœ¬å»ŗēÆ‰å°‚é–€å­¦ę ”'),
(86618, 72535, 'en', 'name', 'Osaka Animal Plant & Ocean College'),
(86619, 72535, 'ja', 'name', 'å¤§é˜Ŗå‹•ę¤ē‰©ęµ·ę“‹å°‚é–€å­¦ę ”'),
(86620, 72536, 'en', 'name', 'The Talent Development Education Research Foundation'),
(86621, 72536, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę‰čƒ½é–‹ē™ŗę•™č‚²ē ”ē©¶č²”å›£'),
(86622, 72537, 'en', 'name', 'Otemae College of Nutrition'),
(86623, 72537, 'ja', 'name', 'å¤§ę‰‹å‰ę „é¤Šå¤§å­¦'),
(86624, 72538, 'en', 'name', 'Japan Electronics College'),
(86625, 72538, 'ja', 'name', 'ę—„ęœ¬é›»å­å°‚é–€å­¦ę ”'),
(86626, 72539, 'en', 'name', 'Mirai Hospital'),
(86627, 72539, 'ja', 'name', '会 みらい病院'),
(86628, 72540, 'en', 'name', 'Tokyo Technical College'),
(86629, 72540, 'ja', 'name', 'ę±äŗ¬ćƒ†ć‚Æćƒ‹ć‚«ćƒ«ć‚«ćƒ¬ćƒƒć‚ø'),
(86630, 72541, 'en', 'name', 'Nemuro Education Institute'),
(86631, 72541, 'ja', 'name', '根室教育研究所'),
(86632, 72542, 'no_lang_code', 'name', 'Toshima Hospital'),
(86633, 72542, 'ja', 'name', 'ę±äŗ¬éƒ½äæå„åŒ»ē™‚å…¬ē¤¾ č±Šå³¶ē—…é™¢'),
(86634, 72543, 'en', 'name', 'Higashitagawa Culture Memorial Hall'),
(86635, 72543, 'ja', 'name', 'ę±ē”°å·ę–‡åŒ–čØ˜åæµé¤Ø'),
(86636, 72544, 'en', 'name', 'Tokyo Metropolitan Foundation for History and Culture'),
(86637, 72544, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę±äŗ¬éƒ½ę­“å²ę–‡åŒ–č²”å›£'),
(86638, 72545, 'en', 'name', 'Matsumoto City Hospital'),
(86639, 72545, 'ja', 'name', 'ę¾ęœ¬åø‚ē«‹ē—…é™¢'),
(86640, 72546, 'en', 'name', 'Matsue History Museum'),
(86641, 72546, 'ja', 'name', 'ę¾ę±Ÿę­“å²åšē‰©é¤Ø'),
(86642, 72547, 'no_lang_code', 'name', 'MitsukaidoKosei Hospital'),
(86643, 72547, 'ja', 'name', 'ę°“ęµ·é“åŽšē”Ÿē—…é™¢'),
(86644, 72548, 'en', 'name', 'Himi City Library'),
(86645, 72548, 'ja', 'name', '氷見市立図書館'),
(86646, 72549, 'en', 'name', 'Oyama City Museum'),
(86647, 72549, 'ja', 'name', 'å°å±±åø‚åšē‰©é¤Ø'),
(86648, 72550, 'en', 'name', 'Tochigi Prefectural Police'),
(86649, 72550, 'ja', 'name', '栃木県警察'),
(86650, 72551, 'no_lang_code', 'name', 'EDOSEN'),
(86651, 72551, 'ja', 'name', 'ę±Ÿęˆøå·å­¦åœ’ćŠćŠćŸć‹ć®ę£®å°‚é–€å­¦ę ”'),
(86652, 72552, 'en', 'name', 'Okinawa Academy College'),
(86653, 72552, 'ja', 'name', 'ę²–ēø„ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼å°‚é–€å­¦ę ”'),
(86654, 72553, 'no_lang_code', 'name', 'Echigo Matsunoyama Forest School Kiroro'),
(86655, 72553, 'ja', 'name', 'č¶Šå¾Œę¾ä¹‹å±±ć€Œę£®ć®å­¦ę ”ć€ć‚­ćƒ§ćƒ­ćƒ­'),
(86656, 72554, 'en', 'name', 'Okinawa Prefecture'),
(86657, 72554, 'ja', 'name', 'ę²–ēø„ēœŒå…¬å®³č”›ē”Ÿē ”ē©¶ę‰€'),
(86658, 72555, 'no_lang_code', 'name', 'Mitsubishi UFJ Research & Consulting (Japan)'),
(86659, 72555, 'ja', 'name', 'äø‰č±UFJćƒŖć‚µćƒ¼ćƒ&ć‚³ćƒ³ć‚µćƒ«ćƒ†ć‚£ćƒ³ć‚°'),
(86660, 72556, 'en', 'name', 'Hebei Rehabilitation Hospital'),
(86661, 72556, 'ja', 'name', 'ę²³åŒ—ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(86662, 72557, 'no_lang_code', 'name', 'Institute of Nutrition and Pathology (Japan)'),
(86663, 72557, 'ja', 'name', 'ę „é¤Šē—…ē†ē ”ē©¶ę‰€'),
(86664, 72558, 'en', 'name', 'HOSEI Daini Junior and Senior High School'),
(86665, 72558, 'ja', 'name', 'ę³•ę”æå¤§å­¦ē¬¬äŗŒäø­'),
(86666, 72559, 'no_lang_code', 'name', 'Shin Nippon Biomedical Laboratories (Japan)'),
(86667, 72559, 'ja', 'name', 'ę–°ę—„ęœ¬ćƒć‚¤ć‚Ŗćƒ”ćƒ‡ć‚£ć‚«ćƒ«ē ”ē©¶ę‰€'),
(86668, 72560, 'en', 'name', 'The Shoto Museum of Art'),
(86669, 72560, 'ja', 'name', 'ęø‹č°·åŒŗē«‹ę¾ę¶›ē¾Žč”“é¤Ø'),
(86670, 72561, 'no_lang_code', 'name', 'Institute for Rheumatic Diseases (Japan)'),
(86671, 72561, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č† åŽŸē—…ē ”ē©¶ę‰€'),
(86672, 72562, 'en', 'name', 'Shiga Prefectural Higashi Otsu High School'),
(86673, 72562, 'ja', 'name', 'ę»‹č³€ēœŒē«‹ę±å¤§ę“„é«˜'),
(86674, 72563, 'en', 'name', 'Independent Administrative Agency National Museum of Art'),
(86675, 72563, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē¾Žč”“é¤Ø'),
(86676, 72564, 'en', 'name', 'Kumamoto Prefectural Museum Network Center'),
(86677, 72564, 'ja', 'name', 'ē†Šęœ¬ēœŒåšē‰©é¤ØćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æć‚»ćƒ³ć‚æćƒ¼'),
(86678, 72565, 'en', 'name', 'Kumamoto Prefectural College of Technology'),
(86679, 72565, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹ęŠ€č”“ēŸ­ęœŸå¤§å­¦ę ”'),
(86680, 72566, 'en', 'name', 'Ishigaki City Library'),
(86681, 72566, 'ja', 'name', 'ēŸ³åž£åø‚ē«‹å›³ę›øé¤Ø'),
(86682, 72567, 'en', 'name', 'Ishikawa Prefectural Library'),
(86683, 72567, 'ja', 'name', 'ēŸ³å·ēœŒē«‹å›³ę›øé¤Ø'),
(86684, 72568, 'en', 'name', 'Ishikawa Prefectural Museum of History'),
(86685, 72568, 'ja', 'name', 'ēŸ³å·ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(86686, 72569, 'en', 'name', 'Tamano General Medical College'),
(86687, 72569, 'ja', 'name', 'ēŽ‰é‡Žē·åˆåŒ»ē™‚å°‚å•å­¦ę ”'),
(86688, 72570, 'no_lang_code', 'name', 'Kisarazu Hospital'),
(86689, 72570, 'ja', 'name', 'ęœØę›“ę“„ē—…é™¢'),
(86690, 72571, 'no_lang_code', 'name', 'Nadogaya Hospital'),
(86691, 72571, 'ja', 'name', 'åęˆøćƒ¶č°·ē—…é™¢'),
(86692, 72572, 'no_lang_code', 'name', 'Fukuoka City Museum'),
(86693, 72572, 'ja', 'name', 'ē¦å²”åø‚åšē‰©é¤Ø'),
(86694, 72573, 'en', 'name', 'National Tax College'),
(86695, 72573, 'ja', 'name', 'ēØŽå‹™å¤§å­¦ę ”'),
(86696, 72574, 'en', 'name', 'Anabuki Design College'),
(86697, 72574, 'ja', 'name', 'ē©“å¹ćƒ‡ć‚¶ć‚¤ćƒ³å°‚é–€å­¦ę ”'),
(86698, 72575, 'en', 'name', 'Gamagori City Marine Science Museum'),
(86699, 72575, 'ja', 'name', 'č’²éƒ”åø‚ē”Ÿå‘½ć®ęµ·ē§‘å­¦é¤Ø'),
(86700, 72576, 'no_lang_code', 'name', 'Arca (Japan)'),
(86701, 72576, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ć‚«'),
(86702, 72577, 'en', 'name', 'The Dainippon Silk Foundation'),
(86703, 72577, 'ja', 'name', '貔団法人 å¤§ę—„ęœ¬čš•ē³øä¼š'),
(86704, 72578, 'en', 'name', 'Kanagawa Archeology Foundation'),
(86705, 72578, 'ja', 'name', 'ć‹ćŖćŒć‚č€ƒå¤å­¦č²”å›£'),
(86706, 72579, 'no_lang_code', 'name', 'Hotoku Museum'),
(86707, 72579, 'ja', 'name', 'č²”å›£ę³•äŗŗå ±å¾³ē¦é‹ē¤¾'),
(86708, 72580, 'en', 'name', 'Mieko Fuji Contemporary Dance School & Company'),
(86709, 72580, 'ja', 'name', 'åÆŒå£«ē¾Žęžå­ć‚³ćƒ³ćƒ†ćƒ³ćƒćƒ©ćƒŖćƒ¼ćƒ€ćƒ³ć‚¹ć‚¹ć‚Æćƒ¼ćƒ«ļ¼†ć‚«ćƒ³ćƒ‘ćƒ‹ćƒ¼'),
(86710, 72581, 'en', 'name', 'Iwate Cultural Promotion agency'),
(86711, 72581, 'ja', 'name', 'č²”å›£ę³•äŗŗå²©ę‰‹ēœŒę–‡åŒ–ęŒÆčˆˆäŗ‹ę„­'),
(86712, 72582, 'en', 'name', 'Art College kobe'),
(86713, 72582, 'ja', 'name', 'ć‚¢ćƒ¼ćƒˆć‚«ćƒ¬ćƒƒć‚øē„žęˆø'),
(86714, 72583, 'en', 'name', 'Yomiuri Science and Technology College'),
(86715, 72583, 'ja', 'name', 'čŖ­å£²ē†å·„åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(86716, 72584, 'en', 'name', 'National Art Institute'),
(86717, 72584, 'ja', 'name', 'č²”å›£ę³•äŗŗę°‘ę—čŠøč”“ē ”ē©¶ę‰€'),
(86718, 72585, 'en', 'name', 'Toyota City Museum of Local History'),
(86719, 72585, 'ja', 'name', 'č±Šē”°åø‚éƒ·åœŸč³‡ę–™é¤Ø'),
(86720, 72586, 'en', 'name', 'Chigasaki Rehabilitation College'),
(86721, 72586, 'ja', 'name', 'čŒ…ćƒ¶å“ŽćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€å­¦ę ”ćÆ'),
(86722, 72587, 'en', 'name', 'Aomori Prefectural School Education Center'),
(86723, 72587, 'ja', 'name', 'é’ę£®ēœŒē·åˆå­¦ę ”ę•™č‚²ć‚»ćƒ³ć‚æ'),
(86724, 72588, 'en', 'name', 'Shizuoka Prefecture Archaeological Center'),
(86725, 72588, 'ja', 'name', 'é™å²”ēœŒåŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(86726, 72589, 'en', 'name', 'Kinki Polytechnic College'),
(86727, 72589, 'ja', 'name', 'čæ‘ē•æćƒćƒŖćƒ†ć‚Æć‚«ćƒ¬ćƒƒć‚ø'),
(86728, 72590, 'en', 'name', 'Nishinari Labor Welfare Center'),
(86729, 72590, 'ja', 'name', 'č²”å›£ę³•äŗŗč„æęˆåŠ“åƒē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼'),
(86730, 72591, 'en', 'name', 'Nagasaki Ajisai Hospital'),
(86731, 72591, 'ja', 'name', 'é•·å“Žé€“äæ”ē—…é™¢'),
(86732, 72592, 'en', 'name', 'Kansai Vocational College of Medicine'),
(86733, 72592, 'ja', 'name', 'é–¢č„æåŒ»ē™‚å­¦åœ’å°‚é–€å­¦ę ”'),
(86734, 72593, 'en', 'name', 'Shizuoka Prefecture Institute of Environmental Health Sciences'),
(86735, 72593, 'ja', 'name', 'é™å²”ēœŒē’°å¢ƒč”›ē”Ÿē§‘å­¦ē ”ē©¶ę‰€');
INSERT INTO `ror_settings` VALUES
(86736, 72594, 'en', 'name', 'Shiun Junior High School'),
(86737, 72594, 'ja', 'name', 'é«˜ę¾åø‚ē«‹ē“«é›²äø­'),
(86738, 72595, 'no_lang_code', 'name', 'Otepia Kochi Library'),
(86739, 72595, 'ja', 'name', 'é«˜ēŸ„åø‚ē«‹é«˜ēŸ„åø‚ę°‘å›³ę›øé¤Ø'),
(86740, 72596, 'en', 'name', 'Kushiro City Museum'),
(86741, 72596, 'ja', 'name', 'é‡§č·Æåø‚ē«‹åšē‰©é¤Ø'),
(86742, 72597, 'en', 'name', 'Kagoshima Prefectural Library'),
(86743, 72597, 'ja', 'name', 'é¹æå…å³¶ēœŒē«‹å›³ę›øé¤Ø'),
(86744, 72598, 'en', 'name', 'Aso Information Business College Fukuoka'),
(86745, 72598, 'ja', 'name', 'éŗ»ē”Ÿęƒ…å ±ćƒ“ć‚øćƒć‚¹å°‚é–€å­¦ę ”ē¦å²”ę ”'),
(86746, 72599, 'en', 'name', 'Shikoku Occupational Skills Development College'),
(86747, 72599, 'ja', 'name', 'é¦™å·č·ę„­čØ“ē·“ēŸ­ęœŸå¤§å­¦ę ”'),
(86748, 72600, 'en', 'name', 'Ryugasaki City Museum of History and Folklore'),
(86749, 72600, 'ja', 'name', 'é¾ć‚±å“Žåø‚ę­“å²ę°‘äæ—č³‡ę–™é¤Ø'),
(86750, 72601, 'en', 'name', 'Kagoshima Medical Corporation Association Nursing College'),
(86751, 72601, 'ja', 'name', 'é¹æå…å³¶ēœŒåŒ»ē™‚ę³•äŗŗå”ä¼šē«‹ēœ‹č­·å°‚é–€å­¦ę ”'),
(86752, 72602, 'en', 'name', 'West Bengal State Council of Technical Education'),
(86753, 72602, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ কারিগরী পরিষদ'),
(86754, 72603, 'no_lang_code', 'name', 'Balaji Utthan Sansthan'),
(86755, 72603, 'hi', 'name', 'ą¤¬ą¤¾ą¤²ą¤¾ą¤œą„€ ą¤‰ą¤¤ą„ą¤„ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(86756, 72604, 'en', 'name', 'GoCare Health Solutions Limited'),
(86757, 72605, 'en', 'name', 'Young Africa FOUNDATION'),
(86758, 72606, 'en', 'name', 'University Transportation Center for Railway Safety'),
(86759, 72607, 'no_lang_code', 'name', 'Bharat Immunologicals and Biologicals Corporation (India)'),
(86760, 72608, 'en', 'name', 'Central Avian Research Institute'),
(86761, 72608, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤Ŗą¤•ą„ą¤·ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(86762, 72609, 'en', 'name', 'Bidar Organization for Medicinal and Aromatic plants'),
(86763, 72610, 'en', 'name', 'Central Institute for Research on Goats'),
(86764, 72610, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¬ą¤•ą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(86765, 72611, 'en', 'name', 'Center for Constitutional Governance'),
(86766, 72612, 'en', 'name', 'Centre for International Law Research and Policy'),
(86767, 72613, 'no_lang_code', 'name', 'Biotech Park'),
(86768, 72613, 'hi', 'name', 'ą¤¬ą¤¾ą¤Æą„‹ą¤Ÿą„‡ą¤• ą¤Ŗą¤¾ą¤°ą„ą¤•'),
(86769, 72614, 'en', 'name', 'Youth Network for Reform'),
(86770, 72615, 'no_lang_code', 'name', 'GenePath Dx (India)'),
(86771, 72616, 'en', 'name', 'Central Institute of Technology Kokrajhar'),
(86772, 72616, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą„‹ą¤•ą¤°ą¤¾ą¤ą¤¾ą¤°'),
(86773, 72617, 'en', 'name', 'Centre of Technology & Entrepreneurship Development'),
(86774, 72618, 'en', 'name', 'Animal Resources Development Department'),
(86775, 72619, 'en', 'name', 'Aravali Foundation for Education'),
(86776, 72620, 'en', 'name', 'Centre For Human Genetics'),
(86777, 72621, 'en', 'name', 'Arunachal Pradesh State Council for Science & Technology'),
(86778, 72622, 'en', 'name', 'Centre for Rural Education and Economic Development'),
(86779, 72623, 'en', 'name', 'Dhanalakshmi Srinivasan Group of Institutions'),
(86780, 72624, 'en', 'name', 'Centre For Wildlife Studies'),
(86781, 72625, 'en', 'name', 'Directorate of Cashew Research'),
(86782, 72625, 'hi', 'name', 'ą¤•ą¤¾ą¤œą„‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(86783, 72626, 'en', 'name', 'Directorate of Coldwater Fisheries Research'),
(86784, 72627, 'en', 'name', 'Association for Awareness on Rural and Tribal Health Institute'),
(86785, 72628, 'en', 'name', 'Association for Rural Development'),
(86786, 72629, 'en', 'name', 'Indian Institute of Millets Research'),
(86787, 72630, 'no_lang_code', 'name', 'Chacha Nehru Bal Chikitsalaya'),
(86788, 72630, 'hi', 'name', 'चाचा ą¤Øą„‡ą¤¹ą¤°ą„ बाल ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ą¤²ą¤Æ'),
(86789, 72631, 'en', 'name', 'Indian Institute of Soybean Research'),
(86790, 72631, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‹ą¤Æą¤¾ą¤¬ą„€ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(86791, 72632, 'en', 'name', 'Directorate of Weed Research'),
(86792, 72632, 'hi', 'name', 'खरपतवार ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(86793, 72633, 'en', 'name', 'Avantha Centre for Industrial Research & Development'),
(86794, 72633, 'hi', 'name', 'ą¤”ą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤•ą„‡ ą¤²ą¤æą¤ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° अवंता'),
(86795, 72634, 'en', 'name', 'Chellaram Hospital'),
(86796, 72635, 'no_lang_code', 'name', 'Ayurvet (India)'),
(86797, 72635, 'hi', 'name', 'ą¤…ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¤'),
(86798, 72636, 'en', 'name', 'Ayurvet Research Foundation'),
(86799, 72637, 'no_lang_code', 'name', 'Bal Umang Drishya Sanstha'),
(86800, 72637, 'hi', 'name', 'बल उमंग ą¤¦ą„ƒą¤·ą„ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(86801, 72638, 'en', 'name', 'Maharashtra Forest Department'),
(86802, 72638, 'hi', 'name', 'ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° वन विभाग'),
(86803, 72639, 'en', 'name', 'Leibniz Institute for Jewish History and Culture – Simon Dubnow'),
(86804, 72639, 'de', 'name', 'Leibniz-Institut für jüdische Geschichte und Kultur – Simon Dubnow'),
(86805, 72640, 'en', 'name', 'Andhra Pradesh Forest Department'),
(86806, 72640, 'te', 'name', 'ą°†ą°‚ą°§ą±ą°°ą°Ŗą±ą°°ą°¦ą±‡ą°¶ą± ą°…ą°Ÿą°µą±€ శాఖ'),
(86807, 72641, 'en', 'name', 'Forest Survey of India'),
(86808, 72641, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ वन ą¤øą¤°ą„ą¤µą„‡ą¤•ą„ą¤·ą¤£'),
(86809, 72642, 'en', 'name', 'Central Muga Eri Research and Training Institute'),
(86810, 72643, 'no_lang_code', 'name', 'Balipara Foundation'),
(86811, 72644, 'en', 'name', 'Foundation for Agricultural Resources Management and Environmental Remediation'),
(86812, 72645, 'no_lang_code', 'name', 'Codon Biosciences (India)'),
(86813, 72646, 'en', 'name', 'Foundation for Environment and Economic Development Services'),
(86814, 72647, 'en', 'name', 'Foundation for Neglected Disease Research'),
(86815, 72647, 'kn', 'name', 'ą²Øą²æą²°ą³ą²²ą²•ą³ą²·ą³ą²Æ ರೋಗ ą²°ą²æą²øą²°ą³ą²šą³ ą²«ą³Œą²‚ą²”ą³†ą³•ą²¶ą²Øą³'),
(86816, 72648, 'en', 'name', 'Fragrance & Flavour Development Centre'),
(86817, 72648, 'hi', 'name', 'ą¤«ą„ą¤°ą¤¾ą¤—ą„ą¤°ą¤¾ą¤‚ą¤ø & ą¤«ą„ą¤²ą„‡ą¤µą¤° ą¤”ą„‡ą¤µą„‡ą¤²ą¤Ŗą¤®ą„‡ą¤‚ą¤Ÿ ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(86818, 72649, 'no_lang_code', 'name', 'Genomix Biotech (India)'),
(86819, 72650, 'no_lang_code', 'name', 'Suguna Holdings (India)'),
(86820, 72651, 'en', 'name', 'Central Sericultural Germplasm Resources Centre'),
(86821, 72652, 'en', 'name', 'Government Ayurvedic College and Hospital'),
(86822, 72652, 'hi', 'name', 'ą¦šą§°ą¦•ą¦¾ą§°ą§€ ą¦†ą¦Æą¦¼ą§ą§°ą§ą¦¬ą§‡ą¦¦ą¦æą¦• ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(86823, 72653, 'en', 'name', 'Centre for Aromatic Plants'),
(86824, 72654, 'en', 'name', 'Gujarat Science City'),
(86825, 72655, 'en', 'name', 'Chilika Development Authority'),
(86826, 72656, 'en', 'name', 'Indian Institute of Natural Resins and Gums'),
(86827, 72657, 'en', 'name', 'Indian Society of Agribusiness Professionals'),
(86828, 72658, 'en', 'name', 'International Institute of Biotechnology and Toxicology'),
(86829, 72659, 'en', 'name', 'Koul Research Foundation'),
(86830, 72660, 'en', 'name', 'Centre for Advanced Bioenergy Research'),
(86831, 72661, 'en', 'name', 'Institute of Animal Health and Veterinary Biologicals'),
(86832, 72661, 'kn', 'name', 'ಪಶು ą²†ą²°ą³‹ą²—ą³ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²œą³ˆą²µą²æą²• ą²øą²‚ą²øą³ą²„ą³†'),
(86833, 72662, 'en', 'name', 'Iora Ecological Solutions'),
(86834, 72663, 'en', 'name', 'Institute of Forest Productivity'),
(86835, 72663, 'hi', 'name', 'वन ą¤‰ą¤¤ą„ą¤Ŗą¤¾ą¤¦ą¤•ą¤¤ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(86836, 72664, 'en', 'name', 'Institute Of Horticulture Technology'),
(86837, 72664, 'hi', 'name', 'ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¬ą¤¾ą¤—ą¤µą¤¾ą¤Øą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€'),
(86838, 72665, 'en', 'name', 'Delhi Development Authority'),
(86839, 72665, 'hi', 'name', 'ą¤¦ą¤æą¤²ą„ą¤²ą„€ विकास ą¤Ŗą„ą¤°ą¤¾ą¤§ą¤æą¤•ą¤°ą¤£'),
(86840, 72666, 'en', 'name', 'Kalam Institute of Health Technology'),
(86841, 72667, 'en', 'name', 'Dr. Kamakshi Memorial Hospital'),
(86842, 72668, 'no_lang_code', 'name', 'Kamdhenu University'),
(86843, 72668, 'gu', 'name', 'કામધેનુ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(86844, 72669, 'no_lang_code', 'name', 'Bafna Group (India)'),
(86845, 72670, 'hi', 'name', 'Kanya Maha Vidyalaya'),
(86846, 72670, 'pa', 'name', 'ਕੰਨਿਆ ਮਹਾਂ ਵਿਦਿਆਲਾ'),
(86847, 72671, 'en', 'name', 'Haffkine Institute'),
(86848, 72671, 'hi', 'name', 'ą¤¹ą¤«ą¤¼ą¤•ą„‡ą¤Ø ą¤Ŗą„ą¤°ą¤¶ą¤æą¤•ą„ą¤·ą¤£, ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą¤°ą„€ą¤•ą„ą¤·ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(86849, 72672, 'no_lang_code', 'name', 'Hans Raj Mahila Maha Vidyalaya'),
(86850, 72672, 'pa', 'name', 'ਹੰਸ ਰਾਜ ਮਹਿਲਾ ਮਹਾ ਵਿਦਿਆਲਾ'),
(86851, 72673, 'hi', 'name', 'Kendriya Vidyalaya Sangathan'),
(86852, 72674, 'no_lang_code', 'name', 'Kentropy Technologies (India)'),
(86853, 72675, 'no_lang_code', 'name', 'Hester'),
(86854, 72676, 'en', 'name', 'Kerala Livestock Development Board'),
(86855, 72676, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“•ą“Øąµą“Øąµą“•ą“¾ą“²ą“æ ą“µą“æą“•ą“øą“Ø ą“¬ąµ‡ą“¾ąµ¼ą“”ąµ'),
(86856, 72677, 'no_lang_code', 'name', 'Hi Tech BioSciences India (India)'),
(86857, 72678, 'en', 'name', 'King Institute of Preventive Medicine and Research'),
(86858, 72678, 'ta', 'name', 'ą®¤ą®ŸąÆą®ŖąÆą®ŖąÆ ą®®ą®°ąÆą®ØąÆą®¤ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®•ą®æą®™ąÆ ą®‡ą®©ąÆą®øąÆą®Ÿą®æą®Ÿą®æą®ÆąÆ‚ą®ŸąÆ'),
(86859, 72679, 'en', 'name', 'Krishi Vigyan Kendra, Ghatkhed Amravati'),
(86860, 72680, 'en', 'name', 'ICAR-National Research Centre on Pig'),
(86861, 72681, 'no_lang_code', 'name', 'Krishi Vigyan Kendra, Hingoli'),
(86862, 72682, 'no_lang_code', 'name', 'Krishi Vigyan Kendra, Karda'),
(86863, 72682, 'hi', 'name', 'ą¤•ą„ƒą¤·ą„€ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° , करऔा'),
(86864, 72683, 'no_lang_code', 'name', 'Kuantum Papers (India)'),
(86865, 72684, 'en', 'name', 'Lifecare Innovations (India)'),
(86866, 72685, 'en', 'name', 'Central Citrus Research Institute'),
(86867, 72685, 'mr', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤²ą¤æą¤‚ą¤¬ą„‚ą¤µą¤°ą„ą¤—ą„€ą¤Æ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(86868, 72686, 'en', 'name', 'Mazumdar Shaw Medical Foundation'),
(86869, 72687, 'en', 'name', 'Moving Academy of Medicine and Biomedicine'),
(86870, 72687, 'mr', 'name', 'ą¤®ą„ą¤µą„ą¤¹ą„€ą¤‚ą¤— ą¤…ą„…ą¤•ą„…ą¤”ą¤®ą„€ ą¤…ą„‰ą¤« ą¤®ą„‡ą¤”ą„€ą¤øą¤æą¤Ø अँऔ ą¤¬ą¤¾ą¤Æą„‹ą¤®ą„‡ą¤”ą„€ą¤øą¤æą¤Ø'),
(86871, 72688, 'en', 'name', 'Mustard Research and Promotion Consortium'),
(86872, 72688, 'hi', 'name', 'ą¤øą¤°ą¤øą„‹ą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤øą¤‚ą¤µą¤°ą„ą¤§ą¤Ø ą¤•ą¤‚ą¤øą„‹ą¤°ą„ą¤Ÿą¤æą¤Æą¤®'),
(86873, 72689, 'en', 'name', 'Directorate of Poultry Research'),
(86874, 72689, 'te', 'name', 'ą°ą°øą°æą°Žą°†ą°°ą±-ą°”ą±†ą±–ą°°ą±†ą°•ą±ą°Ÿą°°ą±‡ą°Ÿą± ą°Ŗą±Œą°²ą±ą°Ÿą±ą°°ą±€ ą°°ą±€ą°øą±†ą°°ą±ą°šą±'),
(86875, 72690, 'en', 'name', 'Lipomic Healthcare (India)'),
(86876, 72691, 'en', 'name', 'National Institute of High Security Animal Diseases'),
(86877, 72691, 'hi', 'name', 'ą¤‰ą¤šą„ą¤š ą¤øą„ą¤°ą¤•ą„ą¤·ą¤¾ ą¤Ŗą¤¶ą„ ą¤°ą„‹ą¤— ą¤•ą„‡ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(86878, 72692, 'en', 'name', 'National Bureau of Agricultural Insect Resources'),
(86879, 72693, 'en', 'name', 'North Eastern Space Applications Centre'),
(86880, 72694, 'no_lang_code', 'name', 'Novo Informatics (India)'),
(86881, 72694, 'ne', 'name', 'ą¤Øą„‹ą¤µą„‹ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¾ą„¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(86882, 72695, 'en', 'name', 'National Research Centre for Integrated Pest Management'),
(86883, 72695, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„‡ą¤•ą¤æą¤¤ ą¤Øą¤¾ą¤¶ą„€ą¤œą„€ą¤µ ą¤Ŗą„ą¤°ą¤¬ą¤Øą„ą¤§ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(86884, 72696, 'no_lang_code', 'name', 'Biozeen (India)'),
(86885, 72697, 'en', 'name', 'National Federation of Cooperative Sugar Factories'),
(86886, 72697, 'hi', 'name', 'ą¤•ą¤‚ą¤Ŗą¤Øą„€ ą¤•ą„‡ ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤«ą„‡ą¤”ą¤°ą„‡ą¤¶ą¤Ø - ą¤øą„‡ą¤¶ą¤Ø ą¤¶ą„ą¤—ą¤° ą¤«ą„ˆą¤•ą„ą¤Ÿą„ą¤°ą„€ą¤œ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(86887, 72698, 'en', 'name', 'National Innovation Foundation'),
(86888, 72698, 'gu', 'name', 'નેશનલ ઇનોવેશન ąŖ«ąŖ¾ąŖ‰ąŖØą«ąŖ”ą«‡ąŖ¶ąŖØ ભારત'),
(86889, 72699, 'no_lang_code', 'name', 'Manav Vikas Evam Sewa Sansthan'),
(86890, 72700, 'en', 'name', 'Participatory Rural Development Foundation'),
(86891, 72701, 'en', 'name', 'Peermade Development Society'),
(86892, 72702, 'no_lang_code', 'name', 'Krishi Vigyan Kendra, Latur'),
(86893, 72702, 'hi', 'name', 'ą¤•ą„ƒą¤·ą„€ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°, ą¤²ą¤¾ą¤¤ą„‚ą¤°'),
(86894, 72703, 'en', 'name', 'Prashanti Cancer Care Mission'),
(86895, 72704, 'en', 'name', 'Punjab State Council for Science & Technology'),
(86896, 72704, 'pa', 'name', 'ਵਿਗਿਆਨ ਅਤੇ ąØ¤ąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ਦੇ ਲਈ ਪੰਜਾਬ ਰਾਜ ąØŖą©ąØ°ą©€ąØøąØ¼ąØ¦'),
(86897, 72705, 'en', 'name', 'Research and Action in Natural Wealth Administration'),
(86898, 72705, 'hi', 'name', 'ą¤Øą„ˆą¤øą¤°ą„ą¤—ą¤æą¤• ą¤øą¤‚ą¤Ŗą¤¤ą„ą¤¤ą„€ ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤øą¤Ø ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø आणि ą¤•ą„ƒą¤¤ą„€'),
(86899, 72706, 'en', 'name', 'Jundi-Shapur University of Technology'),
(86900, 72706, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų¬Ł†ŲÆŪŒ ؓاپور ŲÆŲ²ŁŁˆŁ„'),
(86901, 72707, 'en', 'name', 'Rama Devi Women''s University'),
(86902, 72707, 'or', 'name', 'ରମା ଦେବୀ ମହିଳା ą¬¬ą¬æą¬¶ą­ą¬µ ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(86903, 72708, 'en', 'name', 'Society For Environment And Development'),
(86904, 72708, 'hi', 'name', 'ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤°ą¤£ और विकास ą¤•ą„‡ ą¤²ą¤æą¤ ą¤øą„‹ą¤øą¤¾ą¤Æą¤Ÿą„€'),
(86905, 72709, 'no_lang_code', 'name', 'SoftTeam Solutions (India)'),
(86906, 72710, 'en', 'name', 'Shri A.M.M. Murugappa Chettiar Research Centre'),
(86907, 72711, 'en', 'name', 'Saitama Prefectural River Museum'),
(86908, 72711, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹å·ć®åšē‰©é¤Ø'),
(86909, 72712, 'no_lang_code', 'name', 'Valagro (India)'),
(86910, 72713, 'no_lang_code', 'name', 'Siddharth Starch (India)'),
(86911, 72714, 'en', 'name', 'Social Awareness Through Human Involvement'),
(86912, 72715, 'en', 'name', 'Sri Konda Laxman Telangana State Horticultural University'),
(86913, 72715, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°•ą±Šą°‚ą°”ą°¾ ą°²ą°•ą±ą°·ą±ą°®ą°£ą± తెలంగాణ ą°°ą°¾ą°·ą±ą°Ÿą±ą°°ą°‚ ą°¹ą°¾ą°°ą±ą°Ÿą°æą°•ą°²ą±ą°šą°°ą± ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(86914, 72716, 'en', 'name', 'P.V. Narsimha Rao Telangana Veterinary University'),
(86915, 72716, 'te', 'name', 'PV ą°Øą°°ą°øą°æą°‚ą°¹ రావు తెలంగాణ ą°µą±†ą°Ÿą°°ą±ą°Øą°°ą±€ ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(86916, 72717, 'en', 'name', 'Social Service Sericulture Project Trust'),
(86917, 72718, 'en', 'name', 'Society for Applied Microwave Electronics Engineering & Research'),
(86918, 72719, 'en', 'name', 'Veterinary And Animal Husbandry Services'),
(86919, 72720, 'en', 'name', 'Uttar Pradesh Pandit Deen Dayal Upadhyaya Pashu Chikitsa Vigyan Vishwavidyalaya Evam Go-Anusandhan Sansthan'),
(86920, 72721, 'en', 'name', 'Tamil Nadu Board of Rural Development'),
(86921, 72721, 'ta', 'name', 'ą®Šą®°ą®• ą®®ąÆ‡ą®®ąÆą®Ŗą®¾ą®ŸąÆą®ŸąÆ ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®µą®¾ą®°ą®æą®Æą®®ąÆ'),
(86922, 72722, 'no_lang_code', 'name', 'Vigyan Prasar'),
(86923, 72722, 'hi', 'name', 'ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤øą¤¾ą¤°'),
(86924, 72723, 'no_lang_code', 'name', 'Varsha Bioscience and Technology (India)'),
(86925, 72724, 'no_lang_code', 'name', 'Vertiver (India)'),
(86926, 72724, 'ne', 'name', 'ą¤µą„‡ą¤°ą„ą¤¤ą¤æą¤µą¤°'),
(86927, 72725, 'en', 'name', 'Vivekananda Institute of Biotechnology'),
(86928, 72725, 'bn', 'name', 'ą¦¬ą¦æą¦¬ą§‡ą¦•ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦¬ą¦¾ą¦Æą¦¼ą§‹ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(86929, 72726, 'en', 'name', 'Vivekananda Memorial Hospital'),
(86930, 72727, 'en', 'name', 'State Council of Science Technology & Environment, Meghalaya'),
(86931, 72728, 'en', 'name', 'State Forest Research Institute'),
(86932, 72729, 'en', 'name', 'Animal Husbandry and Veterinary Department'),
(86933, 72730, 'en', 'name', 'Department of Animal Husbandry, Veterinary and Dairy Development'),
(86934, 72731, 'en', 'name', 'Veterinary & Animal Husbandry'),
(86935, 72732, 'en', 'name', 'Animal Husbandry & Veterinary'),
(86936, 72733, 'en', 'name', 'Veterinary Biological and Research Institute'),
(86937, 72734, 'en', 'name', 'Department of Animal Husbandry and Veterinary'),
(86938, 72735, 'en', 'name', 'Department of Animal Husbandry Livestock, Fisheries & Veterinary'),
(86939, 72735, 'ne', 'name', 'ą¤Ŗą¤¶ą„ą¤Ŗą¤¾ą¤²ą¤Ø ą¤Ŗą¤¶ą„ą¤§ą¤Ø ą¤®ą¤¤ą„ą¤øą„ą¤Æ र ą¤Ŗą¤¶ą„'),
(86940, 72736, 'en', 'name', 'WA Country Health Service'),
(86941, 72737, 'en', 'name', 'Australian Hearing'),
(86942, 72738, 'en', 'name', 'Ngaanyatjarra Health Service'),
(86943, 72739, 'en', 'name', 'Australian Centre for Heart Health'),
(86944, 72740, 'en', 'name', 'Mental Health Commission'),
(86945, 72741, 'no_lang_code', 'name', 'PI Electronics (China)'),
(86946, 72742, 'no_lang_code', 'name', 'Techmart Industrial Limited (China)'),
(86947, 72742, 'zh', 'name', 'ē§‘ę±‡å·„äøšęœŗę¢°ęœ‰é™å…¬åø'),
(86948, 72743, 'no_lang_code', 'name', 'Hong Kong Auto Parts Industry Association (China)'),
(86949, 72743, 'zh', 'name', 'é¦™ęøÆę±½č»Šé›¶éƒØä»¶å·„ę„­å”ęœƒ'),
(86950, 72744, 'en', 'name', 'The Hong Kong Council of Social Service'),
(86951, 72744, 'zh', 'name', 'é¦™ęøÆē¤¾ęœƒęœå‹™čÆęœƒ'),
(86952, 72745, 'en', 'name', 'Hong Kong Institute of Contemporary Culture'),
(86953, 72745, 'zh', 'name', 'é¦™ęøÆē•¶ä»£ę–‡åŒ–äø­åæƒę–¼'),
(86954, 72746, 'en', 'name', 'Chartered Institute of Arbitrators'),
(86955, 72747, 'en', 'name', 'Hong Kong Trade Development Council'),
(86956, 72747, 'zh', 'name', 'é¦™ęøÆč²æę˜“ē™¼å±•å±€'),
(86957, 72748, 'no_lang_code', 'name', 'Compass Technology (China)'),
(86958, 72749, 'en', 'name', 'Aachen Institute for Nuclear Training'),
(86959, 72750, 'de', 'name', 'Aerospace Institut'),
(86960, 72750, 'no_lang_code', 'name', 'Aerospace Institute (Germany)'),
(86961, 72751, 'no_lang_code', 'name', 'Alpenforschungsinstitut (Germany)'),
(86962, 72752, 'en', 'name', 'Academy of Arts Education'),
(86963, 72752, 'de', 'name', 'Akademie der Kulturellen Bildung'),
(86964, 72753, 'no_lang_code', 'name', 'Akademie Überlingen (Germany)'),
(86965, 72754, 'de', 'name', 'Bayerische Landesanstalt für Weinbau und Gartenbau'),
(86966, 72755, 'no_lang_code', 'name', 'AnaKat (Germany)'),
(86967, 72756, 'de', 'name', 'Betriebswirtschaftliches Institut für Empirische Gründungs- und Organisationsforschung'),
(86968, 72757, 'de', 'name', 'Arbeitsgemeinschaft ƶkologischer Forschungsinstitute'),
(86969, 72758, 'de', 'name', 'Arbeitskreis deutscher BildungsstƤtten'),
(86970, 72758, 'en', 'name', 'Association of German Educational Organizations'),
(86971, 72759, 'en', 'name', 'Hamburg Archaeological Museum'),
(86972, 72760, 'de', 'name', 'Lehr- und Versuchsanstalt für Viehhaltung Hofgut Neumühle'),
(86973, 72761, 'no_lang_code', 'name', 'Arotop Food & Environmet (Germany)'),
(86974, 72762, 'de', 'name', 'Forschungsinstitut für Beschäftigung Arbeit Qualifikation'),
(86975, 72763, 'de', 'name', 'Batteryuniversity'),
(86976, 72764, 'en', 'name', 'Bauhaus Archive'),
(86977, 72765, 'no_lang_code', 'name', 'Bochumer Institut für Technologie (Germany)'),
(86978, 72766, 'de', 'name', 'Bayerisches Staatsinstitut für Hochschulforschung und Hochschulplanung'),
(86979, 72767, 'de', 'name', 'Borderstep Institut für Innovation und Nachhaltigkeit'),
(86980, 72767, 'en', 'name', 'Borderstep Institute for Innovation and Sustainability'),
(86981, 72768, 'en', 'name', 'Brandenburg Institute for Society and Security'),
(86982, 72768, 'de', 'name', 'Brandenburgische Institut für Gesellschaft und Sicherheit'),
(86983, 72769, 'de', 'name', 'BDH-Klinik Hessisch Oldendorf'),
(86984, 72770, 'no_lang_code', 'name', 'Bregau (Germany)'),
(86985, 72771, 'en', 'name', 'BIOP Institute'),
(86986, 72772, 'en', 'name', 'Berghof Foundation'),
(86987, 72773, 'de', 'name', 'Bildungsinstitut im Gesundheitswesen'),
(86988, 72774, 'de', 'name', 'BilSE - Institut für Bildung und Forschung'),
(86989, 72775, 'no_lang_code', 'name', 'Sonic Healthcare (Germany)'),
(86990, 72776, 'no_lang_code', 'name', 'Biota Institut für ökologische Forschung und Planung (Germany)'),
(86991, 72777, 'no_lang_code', 'name', 'ERT (Germany)'),
(86992, 72778, 'de', 'name', 'Bau-Institut für Ressourceneffizientes und Nachhaltiges Bauen'),
(86993, 72778, 'no_lang_code', 'name', 'Birn (Germany)'),
(86994, 72779, 'de', 'name', 'Brandenburg-Berliner Institut für Sozialwissenschaftliche Studien'),
(86995, 72780, 'de', 'name', 'Institut Dr. Flad'),
(86996, 72781, 'de', 'name', 'Dommuseum Hildesheim'),
(86997, 72782, 'no_lang_code', 'name', 'CIP Chemisches Institut Pforzheim GmbH (Germany)'),
(86998, 72783, 'de', 'name', 'Berufsforschungs- und Beratungsinstitut für interdisziplinäre Technikgestaltung'),
(86999, 72784, 'de', 'name', 'Blindeninstitutsstiftung'),
(87000, 72785, 'en', 'name', 'Parenting Research Centre'),
(87001, 72786, 'de', 'name', 'Cogito Institut für Autonomieforschung'),
(87002, 72787, 'de', 'name', 'Bremer Umweltinstitut'),
(87003, 72788, 'de', 'name', 'Bundesinstitut für Bevölkerungsforschung'),
(87004, 72788, 'en', 'name', 'Federal Institute for Population Research'),
(87005, 72789, 'en', 'name', 'Curculio Institute'),
(87006, 72790, 'de', 'name', 'Bundesverband Farbe Gestaltung Bautenschutz'),
(87007, 72791, 'de', 'name', 'Bundesverband MuseumspƤdagogik'),
(87008, 72792, 'no_lang_code', 'name', 'Cetex (Germany)'),
(87009, 72793, 'en', 'name', 'Advocata Institute'),
(87010, 72794, 'no_lang_code', 'name', 'Apollo Proton Cancer Centre'),
(87011, 72795, 'de', 'name', 'Deutscher Energieholz- und Pellet-Verband'),
(87012, 72796, 'en', 'name', 'DermaTronnier'),
(87013, 72797, 'de', 'name', 'Deutscher Volkshochschul-Verband'),
(87014, 72797, 'en', 'name', 'German Adult Education Association'),
(87015, 72798, 'de', 'name', 'Deutsches Apotheken-Museum'),
(87016, 72798, 'en', 'name', 'German Museum of Pharmacy'),
(87017, 72799, 'de', 'name', 'Deutsch Amerikanisches Institut Saarland'),
(87018, 72800, 'de', 'name', 'Deutsche Akademie für Städtebau und Landesplanung'),
(87019, 72801, 'de', 'name', 'Deutsches Institut für Katastrophenmedizin'),
(87020, 72801, 'en', 'name', 'German Institute for Disaster Medicine'),
(87021, 72802, 'no_lang_code', 'name', 'Deutsches Dialog Institut (Germany)'),
(87022, 72803, 'de', 'name', 'Deutsches Institut für Tropische und Subtropische Landwirtschaft'),
(87023, 72804, 'de', 'name', 'Deutsche Angestellten-Akademie'),
(87024, 72805, 'de', 'name', 'Deutsche Handwerksinstitut'),
(87025, 72806, 'de', 'name', 'Deutsches Jungforscher Netzwerk - juFORUM'),
(87026, 72807, 'de', 'name', 'Deutsches Krankenhaus Institut'),
(87027, 72808, 'de', 'name', 'Deutsche Gesellschaft für Information und Wissen'),
(87028, 72809, 'no_lang_code', 'name', 'DIAL (Germany)'),
(87029, 72810, 'no_lang_code', 'name', 'Dr. Brill + Dr. Steinmann (Germany)'),
(87030, 72811, 'en', 'name', 'European Federation for the Science and Technology of Lipids'),
(87031, 72812, 'de', 'name', 'Dresdner Grundwasserforschungszentrum'),
(87032, 72813, 'de', 'name', 'DRK-Blutspendedienst Baden-Württemberg - Hessen'),
(87033, 72814, 'en', 'name', 'Network on Urban Research in the European Union'),
(87034, 72815, 'no_lang_code', 'name', 'Dyckerhoff (Germany)'),
(87035, 72816, 'de', 'name', 'Evangelisches Krankenhaus Oberhausen'),
(87036, 72817, 'de', 'name', 'Pestel Institut'),
(87037, 72818, 'de', 'name', 'Forschungsinstitut Betriebliche Bildung'),
(87038, 72819, 'no_lang_code', 'name', 'Euro Institute for Information and Technology Transfer in Environmental Protection (Germany)'),
(87039, 72820, 'de', 'name', 'Forschungsinstitut für Arbeit, Technik und Kultur'),
(87040, 72820, 'en', 'name', 'Research Institute for Work, Technology and Culture'),
(87041, 72821, 'no_lang_code', 'name', 'Kantar (Germany)'),
(87042, 72822, 'no_lang_code', 'name', 'Mackie Research (New Zealand)'),
(87043, 72823, 'no_lang_code', 'name', 'ExxonMobil (Germany)'),
(87044, 72824, 'en', 'name', 'European Centre for Community Education'),
(87045, 72825, 'no_lang_code', 'name', 'ERGONOMIC Institut für Arbeits- und Sozialforschung Forschungsgesellschaft (Germany)'),
(87046, 72826, 'de', 'name', 'Diakonie Deutschland'),
(87047, 72827, 'de', 'name', 'Erich-Brost-Institut'),
(87048, 72828, 'de', 'name', 'DRK Bezirksverband Frankfurt'),
(87049, 72829, 'en', 'name', 'Eckert Schools International'),
(87050, 72830, 'de', 'name', 'FIVE - Forschungs- und Innovationsverbund an der Evangelischen Hochschule Freiburg'),
(87051, 72831, 'de', 'name', 'Deutsches Rundfunkarchiv'),
(87052, 72831, 'en', 'name', 'German Broadcasting Archive'),
(87053, 72832, 'de', 'name', 'Innovationstransfer- und Forschungsinstitut Schwerin'),
(87054, 72833, 'de', 'name', 'Deutsches Technikmuseum Berlin'),
(87055, 72833, 'en', 'name', 'German Museum of Technology'),
(87056, 72834, 'de', 'name', 'Deutsches Zentralinstitut für soziale Fragen'),
(87057, 72834, 'en', 'name', 'German Central Institute for Social Issues'),
(87058, 72835, 'de', 'name', 'DRK Landesverband Rheinland-Pfalz'),
(87059, 72836, 'de', 'name', 'Dissens – Institut für Bildung und Forschung'),
(87060, 72837, 'de', 'name', 'Kybernetische Organisation Planung Führung'),
(87061, 72838, 'de', 'name', 'Forschungsanstalt für Waldökologie und Forstwirtschaft'),
(87062, 72839, 'en', 'name', 'District Heating Research Institute'),
(87063, 72839, 'de', 'name', 'FernwƤrme-Forschungsinstitut'),
(87064, 72840, 'de', 'name', 'Forschungsinstitut Bioaktive Polymersysteme'),
(87065, 72840, 'en', 'name', 'Research Institute Bioactive Polymer Systems'),
(87066, 72841, 'de', 'name', 'Forschungsinstitut für Bildungs- und Sozialökonomie'),
(87067, 72841, 'en', 'name', 'Research Institute for the Economics of Education and Social Affairs'),
(87068, 72842, 'en', 'name', 'German Foreign Trade and Transport Academy'),
(87069, 72843, 'de', 'name', 'Landwirtschaftlichen Zentrums Baden-Württemberg​'),
(87070, 72844, 'de', 'name', 'Faktor 10 – Institut für nachhaltiges Wirtschaften gemeinnützige'),
(87071, 72845, 'no_lang_code', 'name', 'Fitbase'),
(87072, 72846, 'de', 'name', 'Forschungsinstitut für Bergbaufolgelandschaften'),
(87073, 72847, 'de', 'name', 'Forschungszentrum Ultraschall'),
(87074, 72848, 'de', 'name', 'Forschungsinstitut für biologischen Landbau'),
(87075, 72849, 'de', 'name', 'Forschungsinstitut für Denkmalpflege und Archäometrie'),
(87076, 72850, 'de', 'name', 'Forschungsinstitut für innovative Arbeitsgestaltung und Prävention'),
(87077, 72851, 'de', 'name', 'Forschungsinstitut Geragogik'),
(87078, 72852, 'de', 'name', 'Forschungsvereinigung Elektrotechnik beim ZVEI'),
(87079, 72853, 'no_lang_code', 'name', 'Forschungszentrum für Verbrennungsmotoren und Thermodynamik Rostock (Germany)'),
(87080, 72854, 'de', 'name', 'Technologiezentrum Halbleitermaterialien'),
(87081, 72855, 'en', 'name', 'Fraunhofer Center for Chemical-Biotechnological Processes'),
(87082, 72855, 'de', 'name', 'Fraunhofer-Zentrum für Chemisch-Biotechnologische Prozesse'),
(87083, 72856, 'de', 'name', 'Die Senatorin für Kinder und Bildung'),
(87084, 72857, 'no_lang_code', 'name', 'Fürstenberg Institut (Germany)'),
(87085, 72858, 'de', 'name', 'Behörde für Wissenschaft, Forschung und Gleichstellung'),
(87086, 72859, 'de', 'name', 'Landesinstitut für Lehrerbildung und Schulentwicklung'),
(87087, 72860, 'de', 'name', 'DGB Bildungswerk BUND'),
(87088, 72861, 'de', 'name', 'Progenius'),
(87089, 72862, 'de', 'name', 'Gesellschaft für Akademische Studienvorbereitung und Testentwicklung'),
(87090, 72863, 'de', 'name', 'Forschungszentrum Küste'),
(87091, 72864, 'en', 'name', 'German Musicological Society'),
(87092, 72864, 'de', 'name', 'Gesellschaft für Musikforschung'),
(87093, 72865, 'en', 'name', 'Education and Science Workers'' Union'),
(87094, 72865, 'de', 'name', 'Gewerkschaft Erziehung und Wissenschaft'),
(87095, 72866, 'de', 'name', 'Gollwitzer-Meier-Klinik'),
(87096, 72867, 'en', 'name', 'Food, Beverages and Catering Union'),
(87097, 72867, 'de', 'name', 'Gewerkschaft Nahrung-Genuss-GaststƤtten'),
(87098, 72868, 'no_lang_code', 'name', 'Gewerbliche Institut für Umweltanalytik (Germany)'),
(87099, 72869, 'en', 'name', 'Gustav Stresemann Institute'),
(87100, 72869, 'de', 'name', 'Gustav-Stresemann-Institut'),
(87101, 72870, 'no_lang_code', 'name', 'Cornelsen (Germany)'),
(87102, 72871, 'en', 'name', 'Hamburg Institute for Vocational Education and Training'),
(87103, 72871, 'de', 'name', 'Hamburger Institut für Berufliche Bildung'),
(87104, 72872, 'en', 'name', 'Archdiocese of Cologne'),
(87105, 72872, 'de', 'name', 'Erzbistum Kƶln'),
(87106, 72873, 'de', 'name', 'Gewi-Institut für Gesundheitswirtschaft'),
(87107, 72874, 'de', 'name', 'Hamburger Kunsthalle'),
(87108, 72875, 'de', 'name', 'Gisela Vogel Institut für berufliche Bildung'),
(87109, 72876, 'en', 'name', 'Global Nature Fund'),
(87110, 72877, 'no_lang_code', 'name', 'Hannoversche Informationstechnologien (Germany)'),
(87111, 72878, 'de', 'name', 'Hanse Institut Oldenburg Bildung und Gesundheit'),
(87112, 72879, 'de', 'name', 'Schweißtechnische Lehr- und Versuchsanstalt Nord'),
(87113, 72880, 'de', 'name', 'Hessische Zentrale für Datenverarbeitung'),
(87114, 72881, 'de', 'name', 'Beratungs und Schulungsinstitut für Tierschutz bei Transport und Schlachtung'),
(87115, 72882, 'de', 'name', 'Hessischer Volkshochschulverband'),
(87116, 72883, 'de', 'name', 'Hygiene-Institut des Ruhrgebiets'),
(87117, 72884, 'de', 'name', 'Institut für Industrieaerodynamik'),
(87118, 72885, 'no_lang_code', 'name', 'Institut für Qualität im Management (Germany)'),
(87119, 72886, 'de', 'name', 'Hessische LehrkrƤfteakademie'),
(87120, 72887, 'no_lang_code', 'name', 'IBExU Institut für Sicherheitstechnik (Germany)'),
(87121, 72888, 'de', 'name', 'Institut Berufs- und Innovationsforschung Medien'),
(87122, 72889, 'de', 'name', 'HeurekaNet'),
(87123, 72890, 'de', 'name', 'Institut für Betontechnologie und Oberflächenschutz'),
(87124, 72891, 'de', 'name', 'Hochschul Informations System'),
(87125, 72892, 'de', 'name', 'Institut für Berufs- und Sozialpädagogik'),
(87126, 72893, 'de', 'name', 'Institut für Europäische Gesundheits- und Sozialwirtschaft'),
(87127, 72894, 'de', 'name', 'Institut für Angewandte Bodenbiologie'),
(87128, 72894, 'en', 'name', 'Institute for Applied Soil Biology'),
(87129, 72895, 'de', 'name', 'Institut für Angewandte Ɩkosystemforschung'),
(87130, 72895, 'en', 'name', 'Institute for Applied Ecosystem Research'),
(87131, 72896, 'no_lang_code', 'name', 'Institut für Angewandte Funksystemtechnik (Germany)'),
(87132, 72897, 'no_lang_code', 'name', 'Institut für Bahntechnik (Germany)'),
(87133, 72898, 'de', 'name', 'Institut für Ausbildung Jugendlicher'),
(87134, 72899, 'en', 'name', 'IfG.Research - The Institute for eGovernment'),
(87135, 72900, 'de', 'name', 'Institut für Musikinstrumentenbau'),
(87136, 72901, 'de', 'name', 'Behörde für Gesundheit und Verbraucherschutz'),
(87137, 72902, 'no_lang_code', 'name', 'ifp Consulting (Germany)'),
(87138, 72903, 'de', 'name', 'Institut für Kompetenz und Begabung'),
(87139, 72904, 'de', 'name', 'Institut für Regionalmanagement'),
(87140, 72905, 'de', 'name', 'Institut für Kommunikation und Wirtschaftsbildung'),
(87141, 72906, 'no_lang_code', 'name', 'IFU Privates Institut für Analytik (Germany)'),
(87142, 72907, 'no_lang_code', 'name', 'Institut für Leichte Elektrische Antriebe und Generatoren (Germany)'),
(87143, 72908, 'de', 'name', 'Institut für Umweltplanung und Raumentwicklung'),
(87144, 72909, 'no_lang_code', 'name', 'Institut für Molekularbiologie und Analytik (Germany)'),
(87145, 72910, 'de', 'name', 'Institut für Gebäudeanalyse und Sanierungsplanung'),
(87146, 72910, 'en', 'name', 'Institute for Building Analysis and Reconstruction Planning'),
(87147, 72911, 'de', 'name', 'Institut für Informationsverarbeitung'),
(87148, 72912, 'de', 'name', 'Institut zur Modernisierung von Wirtschafts- und BeschƤftigungsstrukturen'),
(87149, 72913, 'no_lang_code', 'name', 'SpectrumK (Germany)'),
(87150, 72914, 'no_lang_code', 'name', 'Ingenium (Germany)'),
(87151, 72915, 'no_lang_code', 'name', 'IMU Institut (Germany)'),
(87152, 72916, 'no_lang_code', 'name', 'Institut für Nachhaltige Landbewirtschaftung (Germany)'),
(87153, 72917, 'no_lang_code', 'name', 'Institut für Normenmanagement (Germany)'),
(87154, 72918, 'de', 'name', 'Institut für berufliche Bildung, Arbeitsmarkt- und Sozialpolitik'),
(87155, 72918, 'no_lang_code', 'name', 'Institute for Vocational Education, Labor Market and Social Policy (Germany)'),
(87156, 72919, 'no_lang_code', 'name', 'Institut für Nachhaltige, Innovative und Angewandte Systemtechnik (Germany)'),
(87157, 72920, 'de', 'name', 'Institut zur Fƶrderung von Bildung und Integration'),
(87158, 72921, 'no_lang_code', 'name', 'Industrial Research & Engineering (Germany)'),
(87159, 72922, 'de', 'name', 'Industriegewerkschaft Bauen-Agrar-Umwelt'),
(87160, 72923, 'en', 'name', 'Institut Input'),
(87161, 72924, 'de', 'name', 'Institut der Feuerwehr Nordrhein-Westfalen'),
(87162, 72925, 'de', 'name', 'Institut für Brand- und Katastrophenschutz Heyrothsberge'),
(87163, 72926, 'de', 'name', 'Institut für Angewandte Innovationsforschung'),
(87164, 72927, 'no_lang_code', 'name', 'Industrieverband Feuerverzinken (Germany)'),
(87165, 72928, 'de', 'name', 'Institut Für Angewandte Kulturforschung'),
(87166, 72929, 'de', 'name', 'Institut für Angewandte Trainingswissenschaft'),
(87167, 72930, 'de', 'name', 'Institut für Abfall, Abwasser, Site und Facility Management'),
(87168, 72931, 'no_lang_code', 'name', 'Institut für Angewandte Verkehrs- und Tourismusforschung (Germany)'),
(87169, 72932, 'de', 'name', 'Holzbau Deutschland-Institut'),
(87170, 72933, 'de', 'name', 'Institut für angewandte Forschung im Bauwesen'),
(87171, 72934, 'no_lang_code', 'name', 'Institut für Angewandte Gewässerökologie (Germany)'),
(87172, 72935, 'no_lang_code', 'name', 'Institut Für Arbeits- und Baubetriebswissenschaft (Germany)'),
(87173, 72936, 'de', 'name', 'Institut für Arbeitsmarktforschung und Jugendberufshilfe'),
(87174, 72937, 'de', 'name', 'Institut für Assistenzsysteme und Qualifizierung'),
(87175, 72938, 'en', 'name', 'Allensbach Institute'),
(87176, 72938, 'de', 'name', 'Institut für Demoskopie Allensbach'),
(87177, 72939, 'de', 'name', 'Institut für Diagnostik und Konservierung an Denkmalen in Sachsen und Sachsen-Anhalt'),
(87178, 72940, 'de', 'name', 'Mesocosm'),
(87179, 72941, 'de', 'name', 'Institut für Bauforschung'),
(87180, 72942, 'no_lang_code', 'name', 'Institut für gewerbliche Wasserwirtschaft und Luftreinhaltung (Germany)'),
(87181, 72943, 'no_lang_code', 'name', 'Institut für Bauphysik und Bauchemie (Germany)'),
(87182, 72944, 'en', 'name', 'IDMRC Institut Engineering Design of Mechatronik System und MPLM'),
(87183, 72945, 'no_lang_code', 'name', 'Institut für Entsorgung und Umwelttechnik (Germany)'),
(87184, 72946, 'no_lang_code', 'name', 'Institut für Bauwerkserhaltung und Sanierung (Germany)'),
(87185, 72947, 'de', 'name', 'Institut für Berufliche Aus- und Fortbildung'),
(87186, 72948, 'de', 'name', 'Institut für Hämatopathologie Hamburg'),
(87187, 72949, 'de', 'name', 'Institut für Berufliche Bildung'),
(87188, 72950, 'de', 'name', 'Institut für Europäisches Medienrecht'),
(87189, 72950, 'en', 'name', 'Institute of European Media Law'),
(87190, 72951, 'de', 'name', 'Institut für Experimentelle Psychophysiologie'),
(87191, 72951, 'no_lang_code', 'name', 'Institute for Experimental Psychophysiology (Germany)'),
(87192, 72952, 'de', 'name', 'Institut für Finanzdienstleistungen'),
(87193, 72953, 'en', 'name', 'Suratthani Cancer Hospital'),
(87194, 72953, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąøŖąøøąø£ąø²ąø©ąøŽąø£ą¹Œąø˜ąø²ąø™ąøµ'),
(87195, 72954, 'no_lang_code', 'name', 'Institut für Betriebliche Bildung und Unternehmenskultur (Germany)'),
(87196, 72955, 'es', 'name', 'Centro de Estudios FotosintƩticos y Bioquƭmicos'),
(87197, 72956, 'de', 'name', 'Institut für Bildung und Kultur'),
(87198, 72956, 'en', 'name', 'Institute for Education and Culture'),
(87199, 72957, 'de', 'name', 'Gesellschaft für Pädagogik und Information'),
(87200, 72958, 'de', 'name', 'Institut für Frauengesundheit'),
(87201, 72959, 'de', 'name', 'Institut für Freizeitwissenschaft und Kulturarbeit'),
(87202, 72960, 'no_lang_code', 'name', 'Institut für Geologie und Umwelt (Germany)'),
(87203, 72961, 'en', 'name', 'Institute of Computer Vision and Applied Computer Sciences'),
(87204, 72962, 'de', 'name', 'Institut für Gerontologische Forschung'),
(87205, 72962, 'en', 'name', 'Institute for Gerontological Research'),
(87206, 72963, 'de', 'name', 'Institut für Biodiversität'),
(87207, 72963, 'en', 'name', 'Institute for Biodiversity'),
(87208, 72964, 'de', 'name', 'Institut für Dauerhaft Umweltgerechte Entwicklung Von Naturräumen der Erde'),
(87209, 72964, 'en', 'name', 'Institute of Sustainable Development of Landscapes of the Earth'),
(87210, 72965, 'en', 'name', 'Fraunhofer Center for Applied Research on Supply Chain Services'),
(87211, 72965, 'de', 'name', 'Fraunhofer-Arbeitsgruppe für Supply Chain Services'),
(87212, 72966, 'de', 'name', 'Institut für Bodenkultur und Pflanzenbau'),
(87213, 72967, 'de', 'name', 'Institut für Internationale Kommunikation'),
(87214, 72968, 'de', 'name', 'Gesellschaft für Konsumforschung'),
(87215, 72968, 'no_lang_code', 'name', 'GfK (Germany)'),
(87216, 72969, 'no_lang_code', 'name', 'Institut für Markt- und Werbeforschung (Germany)'),
(87217, 72970, 'de', 'name', 'Institut für Korrosions- und Schadensanalyse Dr.-Ing. Sabine Schultze'),
(87218, 72971, 'no_lang_code', 'name', 'Institut für Modelle Beruflicher und Sozialer Entwicklung (Germany)'),
(87219, 72972, 'en', 'name', 'Warm Heart Worldwide'),
(87220, 72973, 'de', 'name', 'Institut für Kunststofftechnologie und -recycling'),
(87221, 72974, 'de', 'name', 'Institut für kybernetisches Planen und Bauen'),
(87222, 72975, 'de', 'name', 'Institut für Qualitätssicherung von Stoffsystemen Freiberg'),
(87223, 72976, 'en', 'name', 'American Speech-Language-Hearing Foundation'),
(87224, 72977, 'no_lang_code', 'name', 'ClĆ­nica MEDS (Chile)'),
(87225, 72978, 'de', 'name', 'Institut für Regionale Innovation und Sozialforschung'),
(87226, 72979, 'de', 'name', 'Institut für nachhaltige Berufsbildung & Management-Services'),
(87227, 72979, 'en', 'name', 'Institute for Sustainable TVET & Management Services'),
(87228, 72980, 'de', 'name', 'Institut für Rohrleitungsbau an der Fachhochschule Oldenburg'),
(87229, 72981, 'no_lang_code', 'name', 'Deutsche Messe (Germany)'),
(87230, 72982, 'de', 'name', 'Brüderkrankenhaus St. Josef Paderborn'),
(87231, 72983, 'de', 'name', 'Institut für Neue Medien'),
(87232, 72983, 'en', 'name', 'Institute for New Media'),
(87233, 72984, 'es', 'name', 'Hospital PediƔtrico "Baca Ortiz"'),
(87234, 72984, 'en', 'name', 'Pediatric Hospital "Baca Ortiz"'),
(87235, 72985, 'de', 'name', 'Das Institut für Seevölkerrecht und Internationales Meersumweltrecht'),
(87236, 72985, 'en', 'name', 'The Institute for the Law of the Sea and International Marine Environmental Law'),
(87237, 72986, 'en', 'name', 'Rotunda – The Center for Human Reproduction'),
(87238, 72987, 'no_lang_code', 'name', 'Sustainable Business Institute (Germany)'),
(87239, 72988, 'de', 'name', 'Institut für Sicherheitstechnik / Schiffssicherheit'),
(87240, 72989, 'de', 'name', 'Institut für Sozialarbeit und Sozialpädagogik'),
(87241, 72990, 'no_lang_code', 'name', 'Institut für Pflanzenkultur (Germany)'),
(87242, 72991, 'de', 'name', 'Institut für Soziale Arbeit'),
(87243, 72992, 'de', 'name', 'Institut für Sozialforschung und Sozialplanung'),
(87244, 72993, 'de', 'name', 'Institut für Sozialinnovation'),
(87245, 72993, 'en', 'name', 'Institute for Social Innovation'),
(87246, 72994, 'en', 'name', 'TepatitlƔn''s Institute for Theoretical Studies'),
(87247, 72995, 'de', 'name', 'Institut für Sozialpädagogische Forschung Mainz'),
(87248, 72996, 'de', 'name', 'Institut für Postfossile Logistik'),
(87249, 72997, 'de', 'name', 'Institut für Praxisforschung und Projektberatung'),
(87250, 72998, 'en', 'name', 'Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services'),
(87251, 72998, 'de', 'name', 'Zwischenstaatliche Plattform für BiodiversitƤt und Ɩkosystem-Dienstleistungen'),
(87252, 72999, 'de', 'name', 'Institut für Wasser und Boden Dr. Uhlmann'),
(87253, 73000, 'no_lang_code', 'name', 'Institut Für Prozeßadaptive und Erfahrungsgeleitete Automatisierung (Germany)'),
(87254, 73001, 'de', 'name', 'Institut für Prozessoptimierung und Informationstechnologien'),
(87255, 73002, 'de', 'name', 'Institut für Wasserwirtschaft Siedlungswasserbau und Ɩkologie'),
(87256, 73003, 'no_lang_code', 'name', 'Institut für Stahlbau Leipzig (Germany)'),
(87257, 73004, 'de', 'name', 'Institut für Wildbiologie Göttingen und Dresden'),
(87258, 73005, 'de', 'name', 'Institut für technisch-wissenschaftliche Hydrologie'),
(87259, 73005, 'no_lang_code', 'name', 'Institute for Technical and Scientific Hydrology (Germany)'),
(87260, 73006, 'no_lang_code', 'name', 'Institut für Textiltechnik Augsburg (Germany)'),
(87261, 73007, 'no_lang_code', 'name', 'Institut für Zukunftsorientierte Arbeitsgestaltung (Germany)'),
(87262, 73008, 'de', 'name', 'Institut für Textoptimierung'),
(87263, 73009, 'de', 'name', 'Institut Mensch, Ethik und Wissenschaft'),
(87264, 73010, 'no_lang_code', 'name', 'Institut Stadt I MobilitƤt I Energie (Germany)'),
(87265, 73011, 'en', 'name', 'New Insights for Tourism'),
(87266, 73012, 'de', 'name', 'Inter 3'),
(87267, 73013, 'no_lang_code', 'name', 'Interfels (Germany)'),
(87268, 73014, 'en', 'name', 'International Baccalaureate'),
(87269, 73015, 'de', 'name', 'Internationale Akademie Berlin'),
(87270, 73016, 'en', 'name', 'International Council for Open and Distance Education'),
(87271, 73017, 'no_lang_code', 'name', 'Kage Mikrofotografie (Germany)'),
(87272, 73018, 'no_lang_code', 'name', 'Vim Spectrum'),
(87273, 73019, 'en', 'name', 'International Council on Education for Teaching'),
(87274, 73020, 'de', 'name', 'Institut für Internationale Stadtforschung'),
(87275, 73020, 'en', 'name', 'Institute for International Urban Research'),
(87276, 73021, 'de', 'name', 'Institut für innovative Verfahrenstechnik'),
(87277, 73021, 'en', 'name', 'Institute for Innovative Process Engineering'),
(87278, 73022, 'de', 'name', 'Institut für sozialwissenschaftliche Beratung'),
(87279, 73022, 'en', 'name', 'Institute for Socio-Scientific Consultancy'),
(87280, 73023, 'de', 'name', 'Institut für Wohnungswesen Immobilienwirtschaft Stadt- und Regionalentwicklung'),
(87281, 73024, 'no_lang_code', 'name', 'Isogen (Germany)'),
(87282, 73025, 'de', 'name', 'Institut Psychologie und Bedrohungsmanagement'),
(87283, 73026, 'de', 'name', 'Institut für Angewandte Statistik'),
(87284, 73027, 'de', 'name', 'Instituts für Strukturpolitik und Wirtschaftsförderung Gemeinnützige Gesellschaft'),
(87285, 73028, 'no_lang_code', 'name', 'Institut für Innovative Technologien (Germany)'),
(87286, 73029, 'de', 'name', 'Institut für Innovation, Transfer und Beratung'),
(87287, 73030, 'no_lang_code', 'name', 'Institut für Technische Beratung und Produktentwicklung (Germany)'),
(87288, 73031, 'de', 'name', 'Institut für Sozialforschung und Berufliche Weiterbildung'),
(87289, 73032, 'no_lang_code', 'name', 'Institut für Umwelttechnologien (Germany)'),
(87290, 73033, 'de', 'name', 'Institut für Umweltwirtschaftsanalysen Heidelberg'),
(87291, 73034, 'de', 'name', 'Institut für Lonenstrahl– und Vakuumverfahrenstechnik'),
(87292, 73035, 'de', 'name', 'Institut für Site und Facility Management'),
(87293, 73036, 'de', 'name', 'Institut der Wirtschaft Thüringens'),
(87294, 73037, 'no_lang_code', 'name', 'ISB (Germany)'),
(87295, 73038, 'de', 'name', 'Die Johanniter'),
(87296, 73039, 'no_lang_code', 'name', 'KHD Humboldt Wedag (Germany)'),
(87297, 73040, 'no_lang_code', 'name', 'Johner Institut (Germany)'),
(87298, 73041, 'de', 'name', 'Kleine Private Lehrinstitut Derksen'),
(87299, 73042, 'no_lang_code', 'name', 'K8 Institute of Strategic Aesthetics (Germany)'),
(87300, 73043, 'de', 'name', 'Klinik St. Irmingard'),
(87301, 73044, 'de', 'name', 'Felsenweg-Institut'),
(87302, 73045, 'de', 'name', 'Kasseler Institut für Ländliche Entwicklung'),
(87303, 73046, 'de', 'name', 'Katalyse Institut'),
(87304, 73047, 'de', 'name', 'Kulturpolitische Gesellschaft'),
(87305, 73048, 'no_lang_code', 'name', 'Kunststoff Institut Südwest (Germany)'),
(87306, 73049, 'de', 'name', 'Landesforst Mecklenburg‑Vorpommern'),
(87307, 73050, 'de', 'name', 'Landesinstitut für Arbeitsgestaltung des Landes Nordrhein-Westfalen'),
(87308, 73051, 'de', 'name', 'Landesanstalt für Kommunikation'),
(87309, 73052, 'de', 'name', 'Landesinstitut für Präventives Handeln'),
(87310, 73053, 'de', 'name', 'Landesanstalt für Landwirtschaft und Gartenbau'),
(87311, 73054, 'de', 'name', 'Landesinstitut für Schule und Medien Berlin-Brandenburg'),
(87312, 73055, 'de', 'name', 'Landeskriminalamt Niedersachsen'),
(87313, 73056, 'de', 'name', 'Landesanstalt für Schweinezucht'),
(87314, 73057, 'de', 'name', 'Landwirtschaftliches Technologiezentrum Augustenberg'),
(87315, 73058, 'de', 'name', 'Landesbetrieb Landwirtschaft Hessen'),
(87316, 73059, 'en', 'name', 'Chamber of Agriculture in Lower Saxony'),
(87317, 73059, 'de', 'name', 'Landwirtschaftskammer Niedersachsen'),
(87318, 73060, 'de', 'name', 'Landwirtschaftskammer Nordrhein-Westfalen'),
(87319, 73061, 'no_lang_code', 'name', 'Jena Bioscience (Germany)'),
(87320, 73062, 'de', 'name', 'Lebensmittelinstitut KIN'),
(87321, 73063, 'de', 'name', 'M2C Institut für Angewandte Medienforschung'),
(87322, 73064, 'en', 'name', 'Microstructure and Pores'),
(87323, 73065, 'de', 'name', 'Leipziger Institut für Angewandte Weiterbildungsforschung'),
(87324, 73066, 'de', 'name', 'Märkisches Institut für Technologie- und Innovationsförderung'),
(87325, 73067, 'de', 'name', 'Mathe im Leben'),
(87326, 73068, 'de', 'name', 'MuseumspƤdagogische Zentrum'),
(87327, 73069, 'en', 'name', 'Magnetic Resonance Institute for Safety, Technology and Research'),
(87328, 73070, 'de', 'name', 'Deutsche MTM-Vereinigung'),
(87329, 73070, 'en', 'name', 'German MTM Association'),
(87330, 73071, 'en', 'name', 'Museum am Rothenbaum'),
(87331, 73071, 'de', 'name', 'Museum für Völkerkunde Hamburg'),
(87332, 73072, 'de', 'name', 'Museum für Kunst und Gewerbe Hamburg'),
(87333, 73072, 'en', 'name', 'Museum of Art and Design Hamburg'),
(87334, 73073, 'de', 'name', 'Museumslandschaft Hessen Kassel'),
(87335, 73074, 'de', 'name', 'Medien Management Institut'),
(87336, 73075, 'de', 'name', 'Medizinische Akademie Erfurt'),
(87337, 73076, 'en', 'name', 'Hospice Palliative Care Alliance of China Foundation'),
(87338, 73077, 'en', 'name', 'Nature And Biodiversity Conservation Union'),
(87339, 73077, 'de', 'name', 'Naturschutzbund Deutschland'),
(87340, 73078, 'de', 'name', 'Medizinischer FakultƤtentag'),
(87341, 73079, 'en', 'name', 'Mercator Institute for China Studies'),
(87342, 73080, 'de', 'name', 'Nestor Bildungsinstitut'),
(87343, 73081, 'en', 'name', 'NewClimate Institute'),
(87344, 73082, 'en', 'name', 'Mercator Research Institute on Global Commons and Climate Change'),
(87345, 73083, 'no_lang_code', 'name', 'Management Institut Bochum (Germany)'),
(87346, 73084, 'de', 'name', 'mmb Institut'),
(87347, 73085, 'no_lang_code', 'name', 'Modeinstitut Berlin (Germany)'),
(87348, 73086, 'no_lang_code', 'name', 'NursIT Institute (Germany)'),
(87349, 73087, 'de', 'name', 'Ostasien-Institut'),
(87350, 73088, 'de', 'name', 'Ostbayerisches Technologie-Transfer-Institut'),
(87351, 73089, 'no_lang_code', 'name', 'Ostwestfälisches Institut für Innovative Technologien in der Automatisierungstechnik (Germany)'),
(87352, 73090, 'en', 'name', 'United Nations Department of Peacekeeping Operations'),
(87353, 73091, 'en', 'name', 'United Nations Office on Drugs and Crime'),
(87354, 73092, 'de', 'name', 'PƤdea'),
(87355, 73093, 'de', 'name', 'Pathologie Hamburg-West'),
(87356, 73094, 'en', 'name', 'United Nations University Institute for the Advanced Study of Sustainability'),
(87357, 73094, 'ja', 'name', 'å›½é€£å¤§å­¦ć‚µć‚¹ćƒ†ć‚¤ćƒŠćƒ“ćƒŖćƒ†ć‚£é«˜ē­‰ē ”ē©¶ę‰€'),
(87358, 73095, 'de', 'name', 'PECO-Institut'),
(87359, 73096, 'de', 'name', 'Permakultur Institut'),
(87360, 73097, 'de', 'name', 'Philosophisch-Theologische Hochschule Münster'),
(87361, 73098, 'de', 'name', 'Progress-Institut für Wirtschaftsforschung'),
(87362, 73099, 'de', 'name', 'Institut für Tier-, Natur- und Umweltethik'),
(87363, 73100, 'no_lang_code', 'name', 'Institut für Produktionsmanagement und Logistik (Germany)'),
(87364, 73101, 'no_lang_code', 'name', 'Protekum (Germany)'),
(87365, 73102, 'no_lang_code', 'name', 'Institut Raum & Energie (Germany)'),
(87366, 73103, 'no_lang_code', 'name', 'Regio (Germany)'),
(87367, 73104, 'de', 'name', 'Rhein-Ruhr Institut für angewandte Systeminnovation'),
(87368, 73104, 'en', 'name', 'Rhine-Ruhr Institute for Applied Systeminnovation'),
(87369, 73105, 'no_lang_code', 'name', 'Petkus (Germany)'),
(87370, 73106, 'de', 'name', 'Ruhr-Forschungsinstitut für Innovations- und Strukturpolitik'),
(87371, 73107, 'no_lang_code', 'name', 'Technologiezentrum Dresden (Germany)'),
(87372, 73108, 'no_lang_code', 'name', 'Sapper Institut (Germany)'),
(87373, 73109, 'en', 'name', 'Institute for Social Research and Project Consultancy'),
(87374, 73110, 'de', 'name', 'Sozialwissenschaftliches Forschungszentrum Berlin-Brandenburg'),
(87375, 73111, 'de', 'name', 'Staatsinstitut für Schulqualität und Bildungsforschung'),
(87376, 73112, 'en', 'name', 'Institute of Microbiology'),
(87377, 73112, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ микробиологии'),
(87378, 73113, 'de', 'name', 'Feuerwehr Dortmund'),
(87379, 73114, 'de', 'name', 'Museum Folkwang'),
(87380, 73115, 'no_lang_code', 'name', 'Spiegel Institut (Germany)'),
(87381, 73116, 'de', 'name', 'Jüdisches Museum'),
(87382, 73117, 'de', 'name', 'StƤdtisches Museum Schloss Rheydt'),
(87383, 73118, 'de', 'name', 'Dominikanerkloster Prenzlau'),
(87384, 73119, 'de', 'name', 'Naturalienkabinett Waldenburg'),
(87385, 73120, 'de', 'name', 'StƤdtisches Klinikum Dresden'),
(87386, 73121, 'de', 'name', 'Klinikum Passau');
INSERT INTO `ror_settings` VALUES
(87387, 73122, 'de', 'name', 'Steinbeis Forschungszentrum Technologie-Management Nordost'),
(87388, 73123, 'de', 'name', 'Staatliche Lehr- und Versuchsanstalt für Gartenbau'),
(87389, 73124, 'de', 'name', 'Staatliche Lehr- und Versuchsanstalt für Wein- und Obstbau Weinsberg'),
(87390, 73124, 'en', 'name', 'State Education and Research Institute for Viticulture and Pomology Weinsberg'),
(87391, 73125, 'en', 'name', 'Bochum Observatory'),
(87392, 73125, 'de', 'name', 'Sternwarte Bochum'),
(87393, 73126, 'de', 'name', 'Frankfurter Stiftung für Blinde und Sehbehinderte'),
(87394, 73127, 'de', 'name', 'Stiftung SozialpƤdagogisches Institut'),
(87395, 73128, 'no_lang_code', 'name', 'Sustainum Institut (Germany)'),
(87396, 73129, 'de', 'name', 'Institut für Fortbildung, Forschung und Entwicklung'),
(87397, 73130, 'de', 'name', 'Institut für Hygiene und Umwelt'),
(87398, 73131, 'de', 'name', 'Institut für Instandhaltung und Korrosionsschutztechnik'),
(87399, 73132, 'de', 'name', 'Institut für Innovations- und Informationsmanagement'),
(87400, 73133, 'de', 'name', 'Institut für Energie- und Umwelttechnik'),
(87401, 73134, 'de', 'name', 'Steyler Mission'),
(87402, 73135, 'en', 'name', 'United Nations Office for Project Services'),
(87403, 73136, 'de', 'name', 'Institut für Automobilwirtschaft'),
(87404, 73137, 'de', 'name', 'Internationales Institut für Sozio-Informatik'),
(87405, 73138, 'no_lang_code', 'name', 'Thuringian Institute of Sustainability and Climate Protection (Germany)'),
(87406, 73139, 'de', 'name', 'ThüringenForst'),
(87407, 73140, 'de', 'name', 'Thüringer Institut für Akademische Weiterbildung'),
(87408, 73141, 'de', 'name', 'Institut für Medizinische Biometrie, Informatik und Epidemiologie'),
(87409, 73142, 'de', 'name', 'Institut für Polymerwerkstoffe'),
(87410, 73143, 'no_lang_code', 'name', 'Institut für Umformtechnik (Germany)'),
(87411, 73144, 'de', 'name', 'Institut für Wissenschaft und Ethik'),
(87412, 73144, 'en', 'name', 'Institute of Science and Ethics'),
(87413, 73145, 'de', 'name', 'An-Institut für Transfer und Weiterbildung'),
(87414, 73146, 'en', 'name', 'Institute of Electronic Business'),
(87415, 73147, 'de', 'name', 'TUMAINI-Institut für Präventionsmanagement'),
(87416, 73148, 'en', 'name', 'Overseas Museum'),
(87417, 73148, 'de', 'name', 'Übersee Museum'),
(87418, 73149, 'de', 'name', 'Europa-Institut'),
(87419, 73150, 'en', 'name', 'Independent Institute for Environmental Issues'),
(87420, 73150, 'de', 'name', 'Unabhängiges Institut für Umweltfragen'),
(87421, 73151, 'en', 'name', 'Univation Institut für Evaluation Dr. Beywl & Associates'),
(87422, 73152, 'de', 'name', 'Rhein-Ruhr Institut für Sozialforschung und Politikberatung'),
(87423, 73153, 'de', 'name', 'UniversitƤt Bayern'),
(87424, 73154, 'de', 'name', 'Hochschuldidaktischen Zentrum Sachsen'),
(87425, 73155, 'de', 'name', 'Institut für Mittelstandsforschung'),
(87426, 73156, 'en', 'name', 'Mannheim Centre for European Social Research'),
(87427, 73156, 'de', 'name', 'Mannheimer Zentrum für Europäische Sozialforschung'),
(87428, 73157, 'de', 'name', 'Institut für Deutsches, Europäisches und Internationales Medizinrecht, Gesundheitsrecht und Bioethik'),
(87429, 73157, 'en', 'name', 'Institute for German, European and International Medical Law, Public Health Law and Bioethics'),
(87430, 73158, 'de', 'name', 'Institut für Enterprise Systems'),
(87431, 73158, 'en', 'name', 'Institute for Enterprise Systems'),
(87432, 73159, 'en', 'name', 'German University Association of Advanced Graduate Training'),
(87433, 73159, 'de', 'name', 'UniversitƤtsverband zur Qualifizierung des wissenschaftlichen Nachwuchses in Deutschland'),
(87434, 73160, 'en', 'name', 'German United Services Trade Union'),
(87435, 73160, 'de', 'name', 'Vereinte Dienstleistungsgewerkschaft'),
(87436, 73161, 'en', 'name', 'Association of German Agricultural Analytic and Research Institutes'),
(87437, 73162, 'de', 'name', 'Verband SƤchsischer Bildungsinstitute'),
(87438, 73163, 'de', 'name', 'Verein für Psychosoziale Initiativen'),
(87439, 73164, 'de', 'name', 'Verein für Umweltmanagement und Nachhaltigkeit in Finanzinstituten'),
(87440, 73165, 'no_lang_code', 'name', 'Urban Institute (Germany)'),
(87441, 73166, 'de', 'name', 'Verein zur Fƶrderung Agrar- und Stadtƶkologischer Projekte'),
(87442, 73167, 'no_lang_code', 'name', 'Engineering Service Center und Handel (Germany)'),
(87443, 73168, 'de', 'name', 'Verein zur Fƶrderung Innovativer Verfahren in der Logistik'),
(87444, 73169, 'de', 'name', 'Wallraf–Richartz-Museum'),
(87445, 73170, 'de', 'name', 'Verkehrsinstitut München'),
(87446, 73171, 'no_lang_code', 'name', 'werusys (Germany)'),
(87447, 73172, 'en', 'name', 'Research Institute for Baker’s Yeast'),
(87448, 73172, 'de', 'name', 'Versuchsanstalt der Hefeindustrie'),
(87449, 73173, 'de', 'name', 'Westfalen-Kolleg'),
(87450, 73174, 'de', 'name', 'Virtus - Institut für Neue Lehr- und Lernmethoden'),
(87451, 73175, 'no_lang_code', 'name', 'Wetech (Germany)'),
(87452, 73176, 'en', 'name', 'Institute for Small Business Economics'),
(87453, 73176, 'de', 'name', 'Volkswirtschaftliches Institut für Mittelstand und Handwerk an der Universität Göttingen'),
(87454, 73177, 'de', 'name', 'Wissenschaftliches Institut für Infrastruktur und Kommunikationsdienste'),
(87455, 73178, 'de', 'name', 'Wilhelm Löhe Hochschule für angewandte Wissenschaften'),
(87456, 73178, 'en', 'name', 'Wilhelm Lƶhe University for Applied Sciences'),
(87457, 73179, 'de', 'name', 'Lehmbruck Museum'),
(87458, 73180, 'de', 'name', 'Wilhelm-Jost-Institut'),
(87459, 73181, 'en', 'name', 'World University Service'),
(87460, 73182, 'de', 'name', 'Planetarium Bochum'),
(87461, 73183, 'de', 'name', 'Zentrallaboratorium Deutscher Apotheker'),
(87462, 73184, 'de', 'name', 'DEUTSCHES ZENTRUM DES INTERNATIONALEN THEATERINSTITUTS'),
(87463, 73184, 'en', 'name', 'German Centre of the International Theatre Institute'),
(87464, 73185, 'de', 'name', 'Medicover'),
(87465, 73186, 'de', 'name', 'Museumsverbund Nordfriesland'),
(87466, 73187, 'de', 'name', 'Professor Hellriegel Institut'),
(87467, 73188, 'en', 'name', 'Acatech'),
(87468, 73188, 'de', 'name', 'Deutsche Akademie der Technikwissenschaften'),
(87469, 73189, 'en', 'name', 'InterPore'),
(87470, 73190, 'en', 'name', 'Nordic e-Infrastructure Collaboration'),
(87471, 73191, 'de', 'name', 'Institut für Angewandte Bauforschung Weimar'),
(87472, 73192, 'de', 'name', 'Agentur für Erneuerbare Energien'),
(87473, 73192, 'en', 'name', 'Renewable Energies Agency'),
(87474, 73193, 'de', 'name', 'AGFW'),
(87475, 73194, 'no_lang_code', 'name', 'Akasol (Germany)'),
(87476, 73195, 'no_lang_code', 'name', 'Alanod (Germany)'),
(87477, 73196, 'no_lang_code', 'name', 'AlzChem (Germany)'),
(87478, 73197, 'no_lang_code', 'name', 'Ansys (Germany)'),
(87479, 73198, 'no_lang_code', 'name', 'Drees & Sommer (Germany)'),
(87480, 73199, 'no_lang_code', 'name', 'EEW Energy from Waste'),
(87481, 73200, 'no_lang_code', 'name', 'Blockheizkraftwerks- TrƤger- und Betreibergesellschaft (Germany)'),
(87482, 73201, 'no_lang_code', 'name', 'Datar Cancer Genetics (India)'),
(87483, 73202, 'de', 'name', 'BUND-Hof Wendbüdel'),
(87484, 73203, 'de', 'name', 'Arbeitsgruppe für regionale Struktur- und Umweltforschung'),
(87485, 73204, 'no_lang_code', 'name', 'Azur Space Solar Power'),
(87486, 73205, 'de', 'name', 'Bundesamt für die Sicherheit der nuklearen Entsorgung'),
(87487, 73205, 'en', 'name', 'Federal Office for the Safety of Nuclear Waste Management'),
(87488, 73206, 'no_lang_code', 'name', 'Bau- und Liegenschaftsbetrieb des Landes Nordrhein-Westfalen (Germany)'),
(87489, 73207, 'de', 'name', 'Bayerisches Landeskriminalamt'),
(87490, 73208, 'no_lang_code', 'name', 'Becker Technologies (Germany)'),
(87491, 73209, 'no_lang_code', 'name', 'Consentec (Germany)'),
(87492, 73210, 'no_lang_code', 'name', 'Concentrating Solar Power Services (Germany)'),
(87493, 73211, 'no_lang_code', 'name', 'Berliner Stadtreinigungsbetriebe (Germany)'),
(87494, 73212, 'no_lang_code', 'name', 'Berliner Wasserbetriebe (Germany)'),
(87495, 73213, 'no_lang_code', 'name', 'BET (Germany)'),
(87496, 73214, 'no_lang_code', 'name', 'Deutsche Amphibolin-Werke (Germany)'),
(87497, 73215, 'no_lang_code', 'name', 'BABCOCK Industry & Power (Germany)'),
(87498, 73216, 'no_lang_code', 'name', 'BioConsult SH (Germany)'),
(87499, 73217, 'de', 'name', 'Deutsche Umwelthilfe'),
(87500, 73217, 'en', 'name', 'Environmental Action Germany'),
(87501, 73218, 'no_lang_code', 'name', 'BGT Bischoff Glastechnik (Germany)'),
(87502, 73219, 'de', 'name', 'Deutsche Vereinigung für Verbrennungsforschung'),
(87503, 73220, 'no_lang_code', 'name', 'Deutsche WindGuard (Germany)'),
(87504, 73221, 'no_lang_code', 'name', 'EControl-Glas (Germany)'),
(87505, 73222, 'de', 'name', 'Deutscher Gewerkschaftsbund'),
(87506, 73222, 'en', 'name', 'German Trade Union Confederation'),
(87507, 73223, 'de', 'name', 'Edith-Stein-Schulstiftung des Bistums Magdeburg'),
(87508, 73224, 'no_lang_code', 'name', 'Devolo (Germany)'),
(87509, 73225, 'no_lang_code', 'name', 'Strabag (Germany)'),
(87510, 73226, 'no_lang_code', 'name', 'DK Recycling und Roheisen (Germany)'),
(87511, 73227, 'no_lang_code', 'name', 'DMT Produktentwicklung (Germany)'),
(87512, 73228, 'no_lang_code', 'name', 'Eisenhuth (Germany)'),
(87513, 73229, 'no_lang_code', 'name', 'Drive-CarSharing (Germany)'),
(87514, 73230, 'de', 'name', 'Forschungszentrum Energiespeichertechnologien'),
(87515, 73231, 'no_lang_code', 'name', 'E-T-A Elektrotechnische Apparate (Germany)'),
(87516, 73232, 'no_lang_code', 'name', 'Energie Aus Der Mitte (Germany)'),
(87517, 73233, 'de', 'name', 'Energie-Anlagen Berlin'),
(87518, 73234, 'no_lang_code', 'name', 'Ebert Ingenieure (Germany)'),
(87519, 73235, 'no_lang_code', 'name', 'Energy & Meteo Systems (Germany)'),
(87520, 73236, 'no_lang_code', 'name', 'Envitec Biogas (Germany)'),
(87521, 73237, 'en', 'name', 'Biodiversity Heritage Library'),
(87522, 73238, 'en', 'name', 'Atlas of Living Australia'),
(87523, 73239, 'no_lang_code', 'name', 'Enercity (Germany)'),
(87524, 73240, 'no_lang_code', 'name', 'Entwicklungsagentur Region Heide (Germany)'),
(87525, 73241, 'no_lang_code', 'name', 'OVM/ECH Consulting Engineers (Germany)'),
(87526, 73242, 'no_lang_code', 'name', 'ESWE Transport Company (Germany)'),
(87527, 73242, 'de', 'name', 'ESWE Verkehrsgesellschaft'),
(87528, 73243, 'no_lang_code', 'name', 'Rhein-Main-Verkehrsverbund'),
(87529, 73244, 'no_lang_code', 'name', 'Flight Calibration Services (Germany)'),
(87530, 73245, 'no_lang_code', 'name', 'Stadtwerke Dinslaken (Germany)'),
(87531, 73246, 'de', 'name', 'Forschungsstelle für Energiewirtschaft'),
(87532, 73246, 'en', 'name', 'Research Center for Energy Economics'),
(87533, 73247, 'no_lang_code', 'name', 'Fichtner (Germany)'),
(87534, 73248, 'no_lang_code', 'name', 'Flowserve (Germany)'),
(87535, 73249, 'no_lang_code', 'name', 'Fachverband GebƤude-Klima (Germany)'),
(87536, 73250, 'no_lang_code', 'name', 'Forschungs- und Applikationslabor Plasmatechnik (Germany)'),
(87537, 73251, 'no_lang_code', 'name', 'Fels-Werke (Germany)'),
(87538, 73252, 'de', 'name', 'Forsa'),
(87539, 73252, 'en', 'name', 'Forsa Institute for Social Research and Statistical Analysis'),
(87540, 73253, 'de', 'name', 'Forschungsgemeinschaft Feuerfest'),
(87541, 73254, 'de', 'name', 'Forschungsgemeinschaft für elektrische Anlagen und Stromwirtschaft'),
(87542, 73255, 'no_lang_code', 'name', 'Schmid (Germany)'),
(87543, 73256, 'no_lang_code', 'name', 'G.E.O.S. Ingenieurgesellschaft (Germany)'),
(87544, 73257, 'no_lang_code', 'name', 'gec-co Global Engineering & Consulting (Germany)'),
(87545, 73258, 'no_lang_code', 'name', 'German Association of the Automotive Industry (Germany)'),
(87546, 73258, 'de', 'name', 'Verband der Automobilindustrie'),
(87547, 73259, 'no_lang_code', 'name', 'Geologischer Dienst Nordrhein-Westfalen (Germany)'),
(87548, 73260, 'no_lang_code', 'name', 'GEF Ingenieur (Germany)'),
(87549, 73261, 'de', 'name', 'ForschungsVerbund Erneuerbare Energien'),
(87550, 73261, 'en', 'name', 'Renewable Energy Research Association'),
(87551, 73262, 'no_lang_code', 'name', 'Geothermie Neubrandenburg (Germany)'),
(87552, 73263, 'de', 'name', 'Forschungsvereinigung Antriebstechnik'),
(87553, 73264, 'no_lang_code', 'name', 'Gesellschaft für Materialforschung und Prüfungsanstalt für das Bauwesen (Germany)'),
(87554, 73265, 'de', 'name', 'Gesteinslabor Dr. Eberhard Jahns'),
(87555, 73266, 'no_lang_code', 'name', 'GEWOS (Germany)'),
(87556, 73267, 'no_lang_code', 'name', 'Großmann Ingenieur Consult (Germany)'),
(87557, 73268, 'no_lang_code', 'name', 'Hoppecke (Germany)'),
(87558, 73269, 'no_lang_code', 'name', 'Hydroisotop (Germany)'),
(87559, 73270, 'no_lang_code', 'name', 'hySolutions (Germany)'),
(87560, 73271, 'no_lang_code', 'name', 'Institut für Arbeitswissenschaft und Unternehmensoptimierung (Germany)'),
(87561, 73272, 'no_lang_code', 'name', 'IDS (Germany)'),
(87562, 73273, 'de', 'name', 'Internationales Institut für Nachhaltiges Energiemanagement, Politik, Risiko und Soziale Innovationen'),
(87563, 73274, 'no_lang_code', 'name', 'Graebener Maschinentechnik (Germany)'),
(87564, 73275, 'no_lang_code', 'name', 'Infraserv (Germany)'),
(87565, 73276, 'no_lang_code', 'name', 'Grosskraftwerk Mannheim (Germany)'),
(87566, 73277, 'no_lang_code', 'name', 'Ingenieurgesellschaft für Zuverlässigkeit und Prozessmodellierung (Germany)'),
(87567, 73278, 'no_lang_code', 'name', 'InnoLas Solutions (Germany)'),
(87568, 73279, 'no_lang_code', 'name', 'GTT-Technologies (Germany)'),
(87569, 73280, 'no_lang_code', 'name', 'Innovationszentrum für Mobilität und Gesellschaftlichen Wandel (Germany)'),
(87570, 73281, 'no_lang_code', 'name', 'Q-Cells (Germany)'),
(87571, 73282, 'no_lang_code', 'name', 'H2 Mobility (Germany)'),
(87572, 73283, 'no_lang_code', 'name', 'Deutsches Institut für Bautechnik (Germany)'),
(87573, 73284, 'de', 'name', 'Institut für Biogas, Kreislaufwirtschaft und Energie'),
(87574, 73284, 'no_lang_code', 'name', 'Institute of Biogas, Waste Management and Energy (Germany)'),
(87575, 73285, 'no_lang_code', 'name', 'Hamburg Wasser (Germany)'),
(87576, 73286, 'de', 'name', 'Institut für das Bauen mit Kunststoffen'),
(87577, 73287, 'no_lang_code', 'name', 'Hochbahn (Germany)'),
(87578, 73288, 'no_lang_code', 'name', 'HDG Bavaria (Germany)'),
(87579, 73289, 'no_lang_code', 'name', 'Herrenknecht (Germany)'),
(87580, 73290, 'no_lang_code', 'name', 'Herrenknecht Vertical (Germany)'),
(87581, 73291, 'en', 'name', 'Hessian Agency for Nature Conservation, Environment and Geology'),
(87582, 73291, 'de', 'name', 'Hessisches Landesamt für Naturschutz, Umwelt und Geologie'),
(87583, 73292, 'de', 'name', 'Institut für Kälte-, Klima- und Energietechnik'),
(87584, 73293, 'en', 'name', 'Hessian Ministry of Economics, Energy, Transport and Housing'),
(87585, 73293, 'de', 'name', 'Hessisches Ministerium für Wirtschaft, Energie, Verkehr und Wohnen'),
(87586, 73294, 'no_lang_code', 'name', 'Hamburg Institut (Germany)'),
(87587, 73295, 'de', 'name', 'Institut für Netz- und Anwendungstechnik'),
(87588, 73296, 'no_lang_code', 'name', 'AGC Interpane (Germany)'),
(87589, 73297, 'no_lang_code', 'name', 'Institut für Technische und Angewandte Physik (Germany)'),
(87590, 73298, 'no_lang_code', 'name', 'Klinikum Westfalen (Germany)'),
(87591, 73299, 'en', 'name', 'Institute for Building Systems Engineering Dresden Research and Application'),
(87592, 73300, 'no_lang_code', 'name', 'Schmalz (Germany)'),
(87593, 73301, 'no_lang_code', 'name', 'Jülicher Entsorgungsgesellschaft für Nuklearanlagen (Germany)'),
(87594, 73302, 'no_lang_code', 'name', 'KACO New Energy (Germany)'),
(87595, 73303, 'no_lang_code', 'name', 'DEEP.KBB (Germany)'),
(87596, 73304, 'de', 'name', 'Klimaschutz- und Energieagentur Baden-Württemberg'),
(87597, 73305, 'no_lang_code', 'name', 'Keramische Folien (Germany)'),
(87598, 73306, 'no_lang_code', 'name', 'Kerntechnische Entsorgung Karlsruhe (Germany)'),
(87599, 73307, 'de', 'name', 'Kreditanstalt für Wiederaufbau'),
(87600, 73308, 'de', 'name', 'Klaus Kuhn Edelstahlgießerei'),
(87601, 73308, 'no_lang_code', 'name', 'Kuhn Special Steel (Germany)'),
(87602, 73309, 'no_lang_code', 'name', 'Hochtemperatur-Kernkraftwerk (Germany)'),
(87603, 73310, 'no_lang_code', 'name', 'KleinwƤchter (Germany)'),
(87604, 73311, 'no_lang_code', 'name', 'Mineralƶlverbundleitung (Germany)'),
(87605, 73312, 'de', 'name', 'Ministerium für Finanzen und Europa'),
(87606, 73313, 'de', 'name', 'Ministerium für Wirtschaft, Arbeit, Energie und Verkehr'),
(87607, 73314, 'no_lang_code', 'name', 'Mobileeee (Germany)'),
(87608, 73315, 'en', 'name', 'Hamburg Commercial Bank'),
(87609, 73316, 'no_lang_code', 'name', 'Hatz (Germany)'),
(87610, 73317, 'de', 'name', 'Landesbetrieb für Küstenschutz, Nationalpark und Meeresschutz Schleswig-Holstein'),
(87611, 73318, 'no_lang_code', 'name', 'Trench (Germany)'),
(87612, 73319, 'no_lang_code', 'name', 'Navigant (Germany)'),
(87613, 73320, 'de', 'name', 'Landesnahverkehrsgesellschaft Niedersachsen'),
(87614, 73321, 'no_lang_code', 'name', 'Nice Solar Energy (Germany)'),
(87615, 73322, 'no_lang_code', 'name', 'Noack Laboratorien (Germany)'),
(87616, 73323, 'no_lang_code', 'name', 'Normag (Germany)'),
(87617, 73324, 'no_lang_code', 'name', 'Energetický a Průmyslový Holding (Czechia)'),
(87618, 73325, 'de', 'name', 'Deutsch-französische Büro für die Energiewende'),
(87619, 73326, 'no_lang_code', 'name', 'Kurz (Germany)'),
(87620, 73327, 'de', 'name', 'Institut für Ɩkologie und Politik'),
(87621, 73327, 'no_lang_code', 'name', 'Ɩkopol (Germany)'),
(87622, 73328, 'en', 'name', 'Passive House Institute'),
(87623, 73328, 'de', 'name', 'Passivhaus Institut'),
(87624, 73329, 'no_lang_code', 'name', 'Mainzer Stadtwerke (Germany)'),
(87625, 73330, 'no_lang_code', 'name', 'Pfalzwerke (Germany)'),
(87626, 73331, 'de', 'name', 'Malteser-Krankenhaus'),
(87627, 73332, 'no_lang_code', 'name', 'Plasmatreat (Germany)'),
(87628, 73333, 'no_lang_code', 'name', 'Schlumberger (Germany)'),
(87629, 73334, 'no_lang_code', 'name', 'ProCom (Germany)'),
(87630, 73335, 'de', 'name', 'Margarethe Krupp-Stiftung'),
(87631, 73336, 'no_lang_code', 'name', 'Prognos (Germany)'),
(87632, 73337, 'no_lang_code', 'name', 'Prognos (Switzerland)'),
(87633, 73338, 'no_lang_code', 'name', 'Proton Motor (Germany)'),
(87634, 73339, 'no_lang_code', 'name', 'PV Crystalox Solar (Germany)'),
(87635, 73340, 'de', 'name', 'Matthias-Claudius-Stiftung'),
(87636, 73341, 'no_lang_code', 'name', 'r2b Energy Consulting (Germany)'),
(87637, 73342, 'no_lang_code', 'name', 'Ramboll (Germany)'),
(87638, 73343, 'de', 'name', 'RCI Banque Niederlassung Deutschland'),
(87639, 73344, 'no_lang_code', 'name', 'Regionalverkehr Kƶln (Germany)'),
(87640, 73345, 'no_lang_code', 'name', 'Max Bƶgl (Germany)'),
(87641, 73346, 'de', 'name', 'Reha-Zentrum Bad Frankenhausen'),
(87642, 73347, 'de', 'name', 'Max Zƶllner Stiftung'),
(87643, 73348, 'no_lang_code', 'name', 'ROWO Coating (Germany)'),
(87644, 73349, 'no_lang_code', 'name', 'ROM Technik (Germany)'),
(87645, 73350, 'no_lang_code', 'name', 'SAACKE (Germany)'),
(87646, 73351, 'en', 'name', 'Institute for Economic Research and Consulting'),
(87647, 73352, 'no_lang_code', 'name', 'Schunk Carbon Technology (Germany)'),
(87648, 73353, 'no_lang_code', 'name', 'Schwenk (Germany)'),
(87649, 73354, 'no_lang_code', 'name', 'Fischer Group (Germany)'),
(87650, 73355, 'no_lang_code', 'name', 'SFC Energy (Germany)'),
(87651, 73356, 'de', 'name', 'Stephanus Stiftung'),
(87652, 73357, 'no_lang_code', 'name', 'Stadtwerke Kƶln (Germany)'),
(87653, 73358, 'no_lang_code', 'name', 'Senior Flexonics (Germany)'),
(87654, 73359, 'no_lang_code', 'name', 'Stadtwerk Haßfurt (Germany)'),
(87655, 73360, 'no_lang_code', 'name', 'Stadtwerke Duisburg (Germany)'),
(87656, 73361, 'no_lang_code', 'name', 'Stadtwerke Jülich (Germany)'),
(87657, 73362, 'no_lang_code', 'name', 'Stadtwerke Münster (Germany)'),
(87658, 73363, 'no_lang_code', 'name', 'Stadtwerke Offenbach (Germany)'),
(87659, 73364, 'no_lang_code', 'name', 'Europa Service Autovermietung (Germany)'),
(87660, 73365, 'no_lang_code', 'name', 'Steca Elektronik (Germany)'),
(87661, 73366, 'no_lang_code', 'name', 'Solarzentrum Stuttgart (Germany)'),
(87662, 73367, 'no_lang_code', 'name', 'Solvis (Germany)'),
(87663, 73368, 'no_lang_code', 'name', 'Tennet (Germany)'),
(87664, 73369, 'no_lang_code', 'name', 'Theva (Germany)'),
(87665, 73370, 'de', 'name', 'Stiftung Jugend forscht'),
(87666, 73371, 'no_lang_code', 'name', 'Stiftung Liebenau (Germany)'),
(87667, 73372, 'de', 'name', 'Stiftung Umweltenergierecht'),
(87668, 73373, 'no_lang_code', 'name', 'Thyssengas (Germany)'),
(87669, 73374, 'de', 'name', 'Stiftung Warentest'),
(87670, 73375, 'no_lang_code', 'name', 'Sto (Germany)'),
(87671, 73376, 'de', 'name', 'Propstei Johannesberg'),
(87672, 73377, 'no_lang_code', 'name', 'Stoller Ingenieurtechnik (Germany)'),
(87673, 73378, 'no_lang_code', 'name', 'Toyota Motor Corporation (Germany)'),
(87674, 73379, 'no_lang_code', 'name', 'Truma (Germany)'),
(87675, 73380, 'no_lang_code', 'name', 'Stuttgarter Straßenbahnen (Germany)'),
(87676, 73381, 'no_lang_code', 'name', 'Südzucker (Germany)'),
(87677, 73382, 'no_lang_code', 'name', 'Stadtwerke München (Germany)'),
(87678, 73383, 'no_lang_code', 'name', 'Teamtechnik (Germany)'),
(87679, 73384, 'no_lang_code', 'name', 'Tegut (Germany)'),
(87680, 73385, 'no_lang_code', 'name', 'Volkswohnung (Germany)'),
(87681, 73386, 'no_lang_code', 'name', 'VOLTARIS (Germany)'),
(87682, 73387, 'no_lang_code', 'name', 'Energy Fuels (United States)'),
(87683, 73388, 'no_lang_code', 'name', 'WƤtas WƤrmetauscher Sachsen (Germany)'),
(87684, 73389, 'no_lang_code', 'name', 'Wilo (Germany)'),
(87685, 73390, 'en', 'name', 'College Of Certified Psychophysiologists'),
(87686, 73391, 'no_lang_code', 'name', 'Windenergiepark Westküste (Germany)'),
(87687, 73392, 'pl', 'name', 'Wojewódzki Szpital Specjalistyczny Nr 2'),
(87688, 73393, 'no_lang_code', 'name', 'Windpark Ellhƶft (Germany)'),
(87689, 73394, 'no_lang_code', 'name', 'Wista (Germany)'),
(87690, 73395, 'no_lang_code', 'name', 'Urenco (Germany)'),
(87691, 73396, 'no_lang_code', 'name', 'Witzenhausen-Institut (Germany)'),
(87692, 73397, 'no_lang_code', 'name', 'Wƶlfel (Germany)'),
(87693, 73398, 'no_lang_code', 'name', 'VNG (Germany)'),
(87694, 73399, 'en', 'name', 'Center of Applied Aeronautical Research'),
(87695, 73399, 'de', 'name', 'Zentrum für Angewandte Luftfahrtforschung'),
(87696, 73400, 'no_lang_code', 'name', 'Verkehrsbetriebe Hamburg-Holstein (Germany)'),
(87697, 73401, 'no_lang_code', 'name', 'Leag (Germany)'),
(87698, 73402, 'no_lang_code', 'name', 'Vitronic (Germany)'),
(87699, 73403, 'de', 'name', 'VKTA'),
(87700, 73404, 'no_lang_code', 'name', 'Volkswagen Financial Services (Germany)'),
(87701, 73405, 'de', 'name', 'Zentrum Digitalisierung.Bayern'),
(87702, 73406, 'de', 'name', 'Naturstiftung David'),
(87703, 73407, 'no_lang_code', 'name', 'ZeoSys Medical (Germany)'),
(87704, 73408, 'no_lang_code', 'name', 'Bioinformatics Solutions (Canada)'),
(87705, 73409, 'fr', 'name', 'Centre des sciences de l''Ontario'),
(87706, 73409, 'en', 'name', 'Ontario Science Centre'),
(87707, 73410, 'en', 'name', 'FIRST Robotics Canada'),
(87708, 73411, 'no_lang_code', 'name', 'Innovation Cluster (Canada)'),
(87709, 73412, 'en', 'name', 'Green Communities Canada'),
(87710, 73413, 'en', 'name', 'Einstein Medical Center Montgomery'),
(87711, 73414, 'en', 'name', 'Vector & Vector-Borne Diseases Research Institute'),
(87712, 73415, 'no_lang_code', 'name', 'Typs (Canada)'),
(87713, 73416, 'en', 'name', 'Anhui Geological Museum'),
(87714, 73417, 'en', 'name', 'Anhui Academy of Medical Sciences'),
(87715, 73417, 'zh', 'name', 'å®‰å¾½ēœåŒ»å­¦ē§‘å­¦ē ”ē©¶é™¢'),
(87716, 73418, 'en', 'name', 'Beijing Institue Of Electronics Technology And Application'),
(87717, 73418, 'zh', 'name', 'åŒ—äŗ¬ē”µå­ē§‘ęŠ€ęŠ€ęœÆē ”ē©¶ę‰€'),
(87718, 73419, 'no_lang_code', 'name', 'Beijing Chemical Industry Research Institute (China)'),
(87719, 73419, 'zh', 'name', 'åŒ—äŗ¬åø‚åŒ–å­¦å·„äøšē ”ē©¶é™¢'),
(87720, 73420, 'en', 'name', 'Beijing Computing Center'),
(87721, 73421, 'en', 'name', 'Beijing Yingwu Conference Center'),
(87722, 73421, 'zh', 'name', 'åŒ—äŗ¬åŗ”ē‰©ä¼šč®®äø­åæƒ'),
(87723, 73422, 'en', 'name', 'Conquer Cancer Foundation'),
(87724, 73423, 'no_lang_code', 'name', 'Beijing Zhongke Science and Technology (China)'),
(87725, 73423, 'zh', 'name', 'åŒ—äŗ¬äø­ē§‘ē§‘ä»Ŗč‚”ä»½ęœ‰é™å…¬åø'),
(87726, 73424, 'en', 'name', 'Botanical Society of China'),
(87727, 73424, 'zh', 'name', 'äø­å›½ę¤ē‰©å­¦ä¼š'),
(87728, 73425, 'en', 'name', 'The Medical Foundation'),
(87729, 73426, 'en', 'name', 'Clinical Research Associates'),
(87730, 73427, 'en', 'name', 'Cheshire Image Bank'),
(87731, 73428, 'en', 'name', 'Likhatchev Russian Research Institute for Cultural and Natural Heritage'),
(87732, 73428, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½Š¾Š³Š¾ Šø прироГного Š½Š°ŃŠ»ŠµŠ“ŠøŃ'),
(87733, 73429, 'en', 'name', 'Beijing Glass Research Institute'),
(87734, 73429, 'zh', 'name', 'åŒ—äŗ¬ēŽ»ē’ƒē ”ē©¶é™¢'),
(87735, 73430, 'en', 'name', 'Institute of Japanese Studies'),
(87736, 73430, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ę—„ęœ¬ē ”ē©¶ę‰€'),
(87737, 73431, 'en', 'name', 'Institute of Taiwan Studies Chinese Academy of Social Sciences'),
(87738, 73431, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å°ę¹¾ē ”ē©¶ę‰€'),
(87739, 73432, 'no_lang_code', 'name', 'China Central Television'),
(87740, 73432, 'zh', 'name', 'äø­å›½äø­å¤®ē”µč§†å°'),
(87741, 73433, 'no_lang_code', 'name', 'Iasis Molecular Sciences (United States)'),
(87742, 73434, 'en', 'name', 'Multi Vaccines Development Program'),
(87743, 73435, 'no_lang_code', 'name', 'Sugen Life Sciences (India)'),
(87744, 73436, 'en', 'name', 'Southern California Institute of Architecture'),
(87745, 73437, 'en', 'name', 'Experimental Factory Magdeburg'),
(87746, 73438, 'en', 'name', 'Changsha Normal University'),
(87747, 73438, 'zh', 'name', 'é•æę²™åøˆčŒƒå­¦é™¢'),
(87748, 73439, 'en', 'name', 'Inner Mongolia Chifeng Forestry Science Research Institute'),
(87749, 73439, 'zh', 'name', 'å†…č’™å¤čµ¤å³°åø‚ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(87750, 73440, 'en', 'name', 'China Business Executives Academy'),
(87751, 73440, 'zh', 'name', 'äø­å›½å¤§čæžé«˜ēŗ§ē»ē†å­¦é™¢'),
(87752, 73441, 'en', 'name', 'China Centre for Resources Satellite Data and Application'),
(87753, 73441, 'zh', 'name', 'äø­å›½čµ„ęŗå«ę˜Ÿåŗ”ē”Øäø­åæƒ'),
(87754, 73442, 'en', 'name', 'China National Democratic Construction Association'),
(87755, 73442, 'zh', 'name', 'äø­å›½ę°‘äø»å»ŗå›½ä¼š'),
(87756, 73443, 'en', 'name', 'China Education and Research Network'),
(87757, 73443, 'zh', 'name', 'äø­å›½ę•™č‚²å’Œē§‘ē ”č®”ē®—ęœŗē½‘ē½‘ē»œäø­åæƒ'),
(87758, 73444, 'en', 'name', 'China Electrotechnical Society'),
(87759, 73444, 'zh', 'name', 'äø­å›½ē”µå·„ęŠ€ęœÆå­¦ä¼š'),
(87760, 73445, 'en', 'name', 'China Academic Degrees and Graduate Education Development Center'),
(87761, 73445, 'zh', 'name', 'äø­å›½å­¦ä½äøŽē ”ē©¶ē”Ÿę•™č‚²äæ”ęÆē½‘'),
(87762, 73446, 'en', 'name', 'China Enterprise Confederation'),
(87763, 73446, 'zh', 'name', 'äø­å›½ä¼äøšč”åˆä¼š'),
(87764, 73447, 'en', 'name', 'China Institute of Finance and Capital Markets'),
(87765, 73448, 'en', 'name', 'Chinese Society of Plant Nutrition and Fertilizer Science'),
(87766, 73448, 'zh', 'name', 'äø­å›½ę¤ē‰©č„å…»äøŽč‚„ę–™å­¦ä¼š'),
(87767, 73449, 'en', 'name', 'China National Institute of Standardization'),
(87768, 73449, 'zh', 'name', 'äø­å›½ę ‡å‡†åŒ–äøŽäæ”ęÆåˆ†ē±»ē¼–ē ē ”ē©¶ę‰€'),
(87769, 73450, 'en', 'name', 'China Editology Society of Science Periodicals'),
(87770, 73450, 'zh', 'name', 'äø­å›½ē§‘ęŠ€ęœŸåˆŠē¼–č¾‘å­¦ä¼š'),
(87771, 73451, 'en', 'name', 'China Science Center of International Eurasian Academy of Sciences'),
(87772, 73451, 'zh', 'name', 'å›½é™…ę¬§äŗšē§‘å­¦é™¢äø­å›½ē§‘å­¦äø­åæƒ'),
(87773, 73452, 'no_lang_code', 'name', 'China Light Industry Press (China)'),
(87774, 73452, 'zh', 'name', 'äø­å›½č½»å·„äøšå‡ŗē‰ˆē¤¾'),
(87775, 73453, 'no_lang_code', 'name', 'Beijing Tuofeng Technology Development (China)'),
(87776, 73454, 'en', 'name', 'Freedom From Diabetes'),
(87777, 73455, 'no_lang_code', 'name', 'China Metallurgical Planning Net (China)'),
(87778, 73455, 'zh', 'name', 'å†¶é‡‘å·„äøšč§„åˆ’ē ”ē©¶é™¢'),
(87779, 73456, 'no_lang_code', 'name', 'China National Chemical Information Centre (China)'),
(87780, 73456, 'zh', 'name', 'äø­å›½åŒ–å·„äæ”ęÆäø­åæƒ'),
(87781, 73457, 'en', 'name', 'China Academy of Information and Communications Technology'),
(87782, 73458, 'no_lang_code', 'name', 'National Institutes of Pharmaceutical Research and Development (China)'),
(87783, 73458, 'zh', 'name', 'äø­å›½åŒ»čÆē ”ē©¶å¼€å‘äø­åæƒęœ‰é™å…¬åø'),
(87784, 73459, 'en', 'name', 'China Science and Technology Museum'),
(87785, 73459, 'zh', 'name', 'äø­å›½ē§‘å­¦ęŠ€ęœÆé¦†'),
(87786, 73460, 'en', 'name', 'Chinese Society for Cell Biology'),
(87787, 73460, 'zh', 'name', 'äø­å›½ē»†čƒžē”Ÿē‰©å­¦å­¦ä¼š'),
(87788, 73461, 'en', 'name', 'Chinese Society for Plant Pathology'),
(87789, 73461, 'zh', 'name', 'äø­å›½ę¤ē‰©ē—…ē†å­¦ä¼š'),
(87790, 73462, 'en', 'name', 'China Society of Plant Protection'),
(87791, 73462, 'zh', 'name', 'äø­å›½ę¤ē‰©äæęŠ¤å­¦ä¼š'),
(87792, 73463, 'en', 'name', 'Chinese Society for Plant Biology'),
(87793, 73463, 'zh', 'name', 'äø­å›½ę¤ē‰©ē”Ÿē‰©å­¦ä¼š'),
(87794, 73464, 'en', 'name', 'China Tibetology Research Center'),
(87795, 73464, 'zh', 'name', 'äø­å›½č—å­¦ē ”ē©¶äø­åæƒ'),
(87796, 73465, 'en', 'name', 'China Association of Agricultural Science Societies'),
(87797, 73465, 'zh', 'name', 'äø­å›½å†œå­¦ä¼š'),
(87798, 73466, 'en', 'name', 'Chinese Society of Forestry'),
(87799, 73466, 'zh', 'name', 'äø­å›½ęž—å­¦ä¼š'),
(87800, 73467, 'en', 'name', 'Chinese Soil and Water Conservation Society'),
(87801, 73467, 'zh', 'name', 'äø­å›½ę°“åœŸäæęŒå­¦ä¼š'),
(87802, 73468, 'en', 'name', 'China Training Center for Senior Civil Servants'),
(87803, 73468, 'zh', 'name', 'äø­å›½é«˜ēŗ§å…¬åŠ”å‘˜åŸ¹č®­äø­åæƒ'),
(87804, 73469, 'no_lang_code', 'name', 'Yunnan Yingmao Biotechnology (China)'),
(87805, 73469, 'zh', 'name', 'äŗ‘å—č‹±čŒ‚ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(87806, 73470, 'en', 'name', 'Chongqing Academy of Agricultural Sciences'),
(87807, 73470, 'zh', 'name', 'é‡åŗ†åø‚å†œäøšē§‘å­¦é™¢'),
(87808, 73471, 'no_lang_code', 'name', 'China-US (Henan) Hormel Cancer Institute'),
(87809, 73471, 'zh', 'name', 'ę²³å—ēœč‚æē˜¤åŒ»é™¢'),
(87810, 73472, 'en', 'name', 'Institute of Mathematics, Academia Sinica'),
(87811, 73472, 'zh', 'name', '中央研究院數學所'),
(87812, 73473, 'en', 'name', 'Criminal Investigation Police University of China'),
(87813, 73473, 'zh', 'name', 'åˆ‘äŗ‹č°ƒęŸ„äø­å›½č­¦åÆŸå¤§å­¦'),
(87814, 73474, 'en', 'name', 'Institute of Earth Sciences, Academia Sinica'),
(87815, 73474, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢åœ°ēƒē§‘å­øē ”ē©¶ę‰€'),
(87816, 73475, 'en', 'name', 'Institute of Information Science, Academia Sinica'),
(87817, 73475, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢č³‡čØŠē§‘å­øē ”ē©¶ę‰€'),
(87818, 73476, 'no_lang_code', 'name', 'Zhong Ke San Huan (China)'),
(87819, 73476, 'zh', 'name', 'äø­ē§‘äø‰ēŽÆ'),
(87820, 73477, 'en', 'name', 'Research Center for Environmental Changes, Academia Sinica'),
(87821, 73477, 'zh', 'name', 'ē’°å¢ƒč®Šé·ē ”ē©¶äø­åæƒ'),
(87822, 73478, 'en', 'name', 'Research Center for Information Technology Innovation, Academia Sinica'),
(87823, 73478, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢č³‡čØŠē§‘ęŠ€å‰µę–°ē ”ē©¶äø­åæƒ'),
(87824, 73479, 'en', 'name', 'Institute of Plant and Microbial Biology, Academia Sinica'),
(87825, 73479, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ę¤ē‰©ęšØå¾®ē”Ÿē‰©å­øē ”ē©¶ę‰€'),
(87826, 73480, 'en', 'name', 'Institute of Cellular and Organismic Biology, Academia Sinica'),
(87827, 73480, 'zh', 'name', 'ē“°čƒžčˆ‡å€‹é«”ē”Ÿē‰©ē ”ē©¶ę‰€'),
(87828, 73481, 'en', 'name', 'Institute of Biological Chemistry, Academia Sinica'),
(87829, 73481, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ē”Ÿē‰©åŒ–å­øē ”ē©¶ę‰€'),
(87830, 73482, 'en', 'name', 'Institute of Molecular Biology, Academia Sinica'),
(87831, 73482, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢åˆ†å­ē”Ÿē‰©ē ”ē©¶ę‰€'),
(87832, 73483, 'en', 'name', 'Biodiversity Research Center, Academia Sinica'),
(87833, 73483, 'zh', 'name', '中央研究院 ē”Ÿē‰©å¤šęØ£ę€§ē ”ē©¶äø­åæƒ'),
(87834, 73484, 'en', 'name', 'Institute of History and Philology, Academia Sinica'),
(87835, 73484, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ę­·å²čŖžčØ€ē ”ē©¶ę‰€ē ”ē©¶å¤§ęØ“ęŖ”ę”ˆé¤Ø'),
(87836, 73485, 'en', 'name', 'Institute of Ethnology, Academia Sinica'),
(87837, 73485, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ę°‘ę—å­øē ”ē©¶ę‰€'),
(87838, 73486, 'en', 'name', 'Institute of Modern History, Academia Sinica'),
(87839, 73486, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢čæ‘ä»£å²ē ”ē©¶ę‰€ē ”ē©¶å¤§ęØ“'),
(87840, 73487, 'en', 'name', 'Institute of Economics, Academia Sinica'),
(87841, 73487, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ē¶“ęæŸē ”ē©¶ę‰€'),
(87842, 73488, 'en', 'name', 'Institute of European and American Studies, Academia Sinica'),
(87843, 73488, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ę­ē¾Žē ”ē©¶ę‰€'),
(87844, 73489, 'en', 'name', 'Institute of Taiwan History, Academia Sinica'),
(87845, 73489, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢č‡ŗē£å²ē ”ē©¶ę‰€ęŖ”ę”ˆé¤Ø'),
(87846, 73490, 'en', 'name', 'Institute of Sociology, Academia Sinica'),
(87847, 73490, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ē¤¾ęœƒå­øē ”ē©¶ę‰€'),
(87848, 73491, 'en', 'name', 'Institute of Linguistics, Academia Sinica'),
(87849, 73491, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢čŖžčØ€å­øē ”ē©¶ę‰€'),
(87850, 73492, 'en', 'name', 'Institute of Political Science, Academia Sinica'),
(87851, 73492, 'zh', 'name', '中央研究院政治學研究所'),
(87852, 73493, 'la', 'name', 'Institutum Iurisprudentiae, Academia Sinica'),
(87853, 73493, 'zh', 'name', '中央研究院法律學研究所'),
(87854, 73494, 'en', 'name', 'Research Center for Humanities and Social Sciences, Academia Sinica'),
(87855, 73494, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢äŗŗę–‡ē¤¾ęœƒē§‘å­øē ”ē©¶äø­åæƒ'),
(87856, 73495, 'en', 'name', 'Radio, Film & TV Design and Research Institute'),
(87857, 73496, 'en', 'name', 'Fujian Blood Center'),
(87858, 73496, 'zh', 'name', 'ē¦å»ŗč”€ę¶²äø­åæƒ'),
(87859, 73497, 'en', 'name', 'Fujian Institute of Education'),
(87860, 73497, 'zh', 'name', 'ē¦å»ŗę•™č‚²å­¦é™¢'),
(87861, 73498, 'en', 'name', 'Guangdong Institute for Drug Control'),
(87862, 73498, 'zh', 'name', 'å¹æäøœēœčÆå“ę£€éŖŒę‰€'),
(87863, 73499, 'en', 'name', 'Gansu Coalfield Geology Bureau'),
(87864, 73499, 'zh', 'name', 'ē”˜č‚ƒē…¤ē”°åœ°č“Øå±€'),
(87865, 73500, 'en', 'name', 'Gansu Provincial Maternal and Child Health Hospital'),
(87866, 73500, 'zh', 'name', 'ē”˜č‚ƒēœå¦‡å¹¼äæå„é™¢'),
(87867, 73501, 'en', 'name', 'Guangxi Zhuang Autonomous Region Hydraulic Research Institute'),
(87868, 73501, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(87869, 73502, 'en', 'name', 'Henan Nonferrous Metals Geological Exploration Institute'),
(87870, 73502, 'zh', 'name', 'ę²³å—ēœęœ‰č‰²é‡‘å±žåœ°č“Øå‹˜ęŸ„ę€»é™¢'),
(87871, 73503, 'en', 'name', 'Guangxi Open University'),
(87872, 73503, 'zh', 'name', '广脿开放大学'),
(87873, 73504, 'en', 'name', 'Guizhou Botanical Garden'),
(87874, 73504, 'zh', 'name', 'č“µå·žēœę¤ē‰©å›­'),
(87875, 73505, 'en', 'name', 'Bureau of Geology and Mineral Exploration and Development of Guizhou Province'),
(87876, 73506, 'en', 'name', 'Heilongjiang Coldland Building Science Research Institute'),
(87877, 73506, 'zh', 'name', 'é»‘é¾™ę±ŸēœåÆ’åœ°å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(87878, 73507, 'no_lang_code', 'name', 'CytoSMART Technologies (Netherlands)'),
(87879, 73508, 'en', 'name', 'Israeli Association for the Study of Religions'),
(87880, 73508, 'he', 'name', 'האגודה ×”×™×©×Ø××œ×™×Ŗ ×œ×—×§×Ø דתות'),
(87881, 73509, 'en', 'name', 'Heilongjiang Provincial Environmental Science Research Institute'),
(87882, 73509, 'zh', 'name', 'é»‘é¾™ę±ŸēœēŽÆå¢ƒäæęŠ¤ē ”ē©¶ę‰€'),
(87883, 73510, 'en', 'name', 'Henan Provincial Institute of Cultural Heritage and Archaeology'),
(87884, 73510, 'zh', 'name', 'ę²³å—ēœę–‡ē‰©č€ƒå¤ē ”ē©¶ę‰€'),
(87885, 73511, 'en', 'name', 'Henan Institute of Geological Survey'),
(87886, 73511, 'zh', 'name', 'ę²³å—ēœåœ°č“Øč°ƒęŸ„å±€'),
(87887, 73512, 'en', 'name', 'Hohhot Minzu College'),
(87888, 73512, 'zh', 'name', 'å‘¼å’Œęµ©ē‰¹ę°‘ę—å­¦é™¢'),
(87889, 73513, 'en', 'name', 'Hainan Agricultural School'),
(87890, 73513, 'zh', 'name', 'ęµ·å—ēœå†œäøšå­¦ę ”'),
(87891, 73514, 'no_lang_code', 'name', 'Huaibei Mining (China)'),
(87892, 73515, 'en', 'name', 'Hainan Meteorological Service'),
(87893, 73515, 'zh', 'name', 'ęµ·å—ēœę°”č±”å±€'),
(87894, 73516, 'en', 'name', 'Hainan Earthquake Administration'),
(87895, 73516, 'zh', 'name', 'ęµ·å—ēœåœ°éœ‡å±€'),
(87896, 73517, 'en', 'name', 'Hangzhou Cancer Hospital'),
(87897, 73517, 'zh', 'name', 'ę­å·žåø‚č‚æē˜¤åŒ»é™¢'),
(87898, 73518, 'en', 'name', 'Hangzhou Botanical Garden'),
(87899, 73518, 'zh', 'name', 'ę­å·žę¤ē‰©å›­'),
(87900, 73519, 'en', 'name', 'Hubei Water Resources Research Institute'),
(87901, 73519, 'zh', 'name', 'ę¹–åŒ—ēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(87902, 73520, 'en', 'name', 'Hangzhou Medical College'),
(87903, 73520, 'zh', 'name', 'ę­å·žåŒ»å­¦é™¢'),
(87904, 73521, 'en', 'name', 'Hunan Police Academy'),
(87905, 73521, 'zh', 'name', 'ę¹–å—č­¦åÆŸå­¦é™¢'),
(87906, 73522, 'en', 'name', 'Hunan Hydro&Power Design Institute'),
(87907, 73522, 'zh', 'name', 'ę¹–å—ę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢'),
(87908, 73523, 'no_lang_code', 'name', 'SinoMaps Press'),
(87909, 73523, 'zh', 'name', 'äø­å›½åœ°å›¾å‡ŗē‰ˆē¤¾'),
(87910, 73524, 'en', 'name', 'Hunan Institute of Microbiology'),
(87911, 73524, 'zh', 'name', 'ę¹–å—ēœå¾®ē”Ÿē‰©ē ”ē©¶é™¢'),
(87912, 73525, 'en', 'name', 'Henan Provincial Institute of Land and Resources Sciences'),
(87913, 73525, 'zh', 'name', 'ę²³å—ēœå›½åœŸčµ„ęŗē§‘å­¦ē ”ē©¶é™¢'),
(87914, 73526, 'en', 'name', 'China Academy of Management Sciences'),
(87915, 73526, 'zh', 'name', '中国箔理科学研究院'),
(87916, 73527, 'en', 'name', 'Instrumentation Technology and Economy Institute'),
(87917, 73527, 'zh', 'name', 'ä»Ŗå™Øä»Ŗč”ØęŠ€ęœÆē»ęµŽē ”ē©¶ę‰€'),
(87918, 73528, 'en', 'name', 'Karamay Central Hospital of Xinjiang'),
(87919, 73528, 'zh', 'name', 'å…‹ę‹‰ēŽ›ä¾åø‚äø­åæƒåŒ»é™¢'),
(87920, 73529, 'en', 'name', 'The First Hospital of Kunming'),
(87921, 73529, 'zh', 'name', 'ę˜†ę˜Žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(87922, 73530, 'en', 'name', 'Liaoning Vocational College of Medical'),
(87923, 73530, 'zh', 'name', 'č¾½å®åŒ»å­¦é™¢å­¦ęŠ„'),
(87924, 73531, 'en', 'name', 'Liaoning Meteorological Bureau'),
(87925, 73531, 'zh', 'name', 'č¾½å®ēœę°”č±”å±€'),
(87926, 73532, 'en', 'name', 'Research Institute of Machinery Industry Economic&Management'),
(87927, 73532, 'zh', 'name', 'ęœŗę¢°å·„äøšē»ęµŽäøŽē®”ē†ē ”ē©¶ę‰€'),
(87928, 73533, 'en', 'name', 'Jiangsu Academy of Safety Science & Technology'),
(87929, 73534, 'en', 'name', 'Jiujiang Maternal and Child Care Centres'),
(87930, 73534, 'zh', 'name', 'ä¹ę±Ÿåø‚å¦‡å¹¼äæå„é™¢'),
(87931, 73535, 'no_lang_code', 'name', 'Metallurgical Industry Press (China)'),
(87932, 73535, 'zh', 'name', 'å†¶é‡‘å·„äøšå‡ŗē‰ˆē¤¾'),
(87933, 73536, 'en', 'name', 'Jiangxi Provincial Academy of Medical Sciences'),
(87934, 73536, 'zh', 'name', 'ę±Ÿč„æēœåŒ»å­¦ē§‘å­¦é™¢'),
(87935, 73537, 'en', 'name', 'Mianyang Institute of Traditional Chinese Medicine'),
(87936, 73537, 'zh', 'name', 'ē»µé˜³äø­åŒ»å­¦é™¢'),
(87937, 73538, 'en', 'name', 'Jiangxi Institute Of Economic Administraors'),
(87938, 73538, 'zh', 'name', 'ę±Ÿč„æē»ęµŽē®”ē†å¹²éƒØå­¦é™¢'),
(87939, 73539, 'en', 'name', 'Jiangsu Province Institute of Quality & Safety Engineering'),
(87940, 73539, 'zh', 'name', 'ę±Ÿč‹ēœč“Øé‡å®‰å…Øå·„ēØ‹ē ”ē©¶ę‰€'),
(87941, 73540, 'en', 'name', 'Jiangsu Provincial Family Planning Institute of Science and Technology'),
(87942, 73540, 'zh', 'name', 'ę±Ÿč‹ēœč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(87943, 73541, 'en', 'name', 'Beijing Research and Design Institute of Rubber Industry'),
(87944, 73541, 'zh', 'name', 'åŒ—äŗ¬ę©”čƒ¶å·„äøšē ”ē©¶č®¾č®”é™¢'),
(87945, 73542, 'en', 'name', 'Department Of Agriculture and Rural Affairs Of Jiangxi Province'),
(87946, 73542, 'zh', 'name', 'ę±Ÿč„æēœå†œäøšåŽ…'),
(87947, 73543, 'en', 'name', 'Jiang Xi Institute for Drug Control'),
(87948, 73543, 'zh', 'name', 'ę±Ÿč„æēœčÆå“ę£€éŖŒę£€ęµ‹ē ”ē©¶é™¢'),
(87949, 73544, 'en', 'name', 'National Center for Gene Research'),
(87950, 73544, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å›½å®¶åŸŗå› ē ”ē©¶äø­åæƒ'),
(87951, 73545, 'en', 'name', 'National Center of Ocean Standards and Metrology'),
(87952, 73545, 'zh', 'name', 'å›½å®¶ęµ·ę“‹ę ‡å‡†č®”é‡äø­åæƒ'),
(87953, 73546, 'en', 'name', 'National Center for Climate Change Strategy and International Cooperation'),
(87954, 73546, 'zh', 'name', 'å›½å®¶åŗ”åÆ¹ę°”å€™å˜åŒ–ęˆ˜ē•„ē ”ē©¶å’Œå›½é™…åˆä½œäø­åæƒ'),
(87955, 73547, 'en', 'name', 'Police Dog Technical School'),
(87956, 73547, 'zh', 'name', 'č­¦ēŠ¬ęŠ€ęœÆå­¦ę ”'),
(87957, 73548, 'en', 'name', 'Nanchang Center for Disease Control and Prevention'),
(87958, 73548, 'zh', 'name', 'å—ę˜Œåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(87959, 73549, 'en', 'name', 'Nanyang Medical College'),
(87960, 73549, 'zh', 'name', 'å—é™½é†«å­øé«˜ē­‰å°ˆē§‘å­øę ”'),
(87961, 73550, 'no_lang_code', 'name', 'Nanzhong Zhangzhongjing Hospital'),
(87962, 73550, 'zh', 'name', 'å—é˜³å¼ ä»²ę™ÆåŒ»é™¢'),
(87963, 73551, 'en', 'name', 'Heilongjiang Provincial Wildlife Research Institute'),
(87964, 73551, 'zh', 'name', 'é»‘é¾™ę±Ÿēœé‡Žē”ŸåŠØē‰©ē ”ē©¶ę‰€'),
(87965, 73552, 'en', 'name', 'Northwest Institute of Mechanical and Electrical Engineering'),
(87966, 73552, 'zh', 'name', 'č„æåŒ—ęœŗē”µå·„ēØ‹å­¦é™¢'),
(87967, 73553, 'en', 'name', 'Ningbo Medical Center Lihuili Hospital'),
(87968, 73553, 'zh', 'name', 'å®ę³¢åø‚åŒ»ē–—äø­åæƒęŽęƒ åˆ©åŒ»é™¢'),
(87969, 73554, 'en', 'name', 'Hainan Marine Monitoring and Forecasting Center'),
(87970, 73554, 'zh', 'name', 'ęµ·å—ęµ·ę“‹ē›‘ęµ‹é¢„ęŠ„äø­åæƒ'),
(87971, 73555, 'en', 'name', 'Ningbo Municipal Bureau of Ecology and Environment'),
(87972, 73556, 'en', 'name', 'Ningxia Academy of Social Sciences'),
(87973, 73556, 'zh', 'name', 'å®å¤ē¤¾ä¼šē§‘å­¦é™¢'),
(87974, 73557, 'en', 'name', 'Puyang Vocational and Technical College'),
(87975, 73557, 'zh', 'name', 'ęæ®é˜³čŒäøšęŠ€ęœÆå­¦é™¢'),
(87976, 73558, 'no_lang_code', 'name', 'Qinghai New Energy (China)'),
(87977, 73559, 'en', 'name', 'Qinzhou Maternity and Child Health Care Hospital'),
(87978, 73559, 'zh', 'name', 'é’¦å·žåø‚å¦‡å¹¼äæå„é™¢'),
(87979, 73560, 'en', 'name', 'Sanming Agricultural Science Research Institute'),
(87980, 73560, 'zh', 'name', 'äø‰ę˜Žåø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(87981, 73561, 'en', 'name', 'Asia Pacific Construction Science and Technology Information Research Institute'),
(87982, 73561, 'zh', 'name', 'äŗšå¤Ŗå»ŗč®¾ē§‘ęŠ€äæ”ęÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(87983, 73562, 'en', 'name', 'Shandong Police College'),
(87984, 73562, 'zh', 'name', 'å±±äøœč­¦åÆŸå­¦é™¢'),
(87985, 73563, 'en', 'name', 'Shandong Freshwater Fisheries Research Institute'),
(87986, 73563, 'zh', 'name', 'å±±äøœēœę·”ę°“ęø”äøšē ”ē©¶é™¢'),
(87987, 73564, 'en', 'name', 'Policy Research Center for Environment and Economy'),
(87988, 73565, 'en', 'name', 'Institute of Sand Control, Shaanxi Academy of Forestry'),
(87989, 73565, 'zh', 'name', 'é™•č„æēœę²»ę²™ē ”ē©¶ę‰€'),
(87990, 73566, 'en', 'name', 'Shandong Coalfield Geological Planning and Investigation Institute'),
(87991, 73567, 'en', 'name', 'Shanghai Institute of Computing Technology'),
(87992, 73567, 'zh', 'name', 'äøŠęµ·åø‚č®”ē®—ęŠ€ęœÆē ”ē©¶ę‰€'),
(87993, 73568, 'en', 'name', 'Shanghai Institute of Geological Survey'),
(87994, 73568, 'zh', 'name', 'äøŠęµ·åø‚åœ°č“Øč°ƒęŸ„ē ”ē©¶é™¢'),
(87995, 73569, 'en', 'name', 'Shanghai Optical Instrument Research Institute'),
(87996, 73569, 'zh', 'name', 'äøŠęµ·å…‰å­¦ä»Ŗå™Øē ”ē©¶ę‰€'),
(87997, 73570, 'en', 'name', 'Shanghai Institute of Science & Technology Management'),
(87998, 73571, 'en', 'name', 'Shanghai Public Security Bureau'),
(87999, 73571, 'zh', 'name', 'äøŠęµ·åø‚å…¬å®‰å±€'),
(88000, 73572, 'no_lang_code', 'name', 'Shanghai Science and Technical Publishers (China)'),
(88001, 73572, 'zh', 'name', 'äøŠęµ·ē§‘å­¦ęŠ€ęœÆå‡ŗē‰ˆē¤¾'),
(88002, 73573, 'en', 'name', 'Shanghai Stock Exchange'),
(88003, 73573, 'zh', 'name', 'äøŠęµ·čÆåˆøäŗ¤ę˜“ę‰€'),
(88004, 73574, 'en', 'name', 'Shougang Institute of Technology'),
(88005, 73574, 'zh', 'name', 'é¦–é’¢å·„å­¦é™¢ęˆē«‹äŗŽ'),
(88006, 73575, 'en', 'name', 'Sichuan Economic Management Cadre College'),
(88007, 73575, 'zh', 'name', 'å››å·ēœē»ęµŽē®”ē†å¹²éƒØå­¦é™¢'),
(88008, 73576, 'en', 'name', 'Sichuan Integrative Medicine Hosipital'),
(88009, 73576, 'zh', 'name', 'å››å·ēœäø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(88010, 73577, 'en', 'name', 'General Administration of Sport of China'),
(88011, 73577, 'zh', 'name', '国家体育总局'),
(88012, 73578, 'en', 'name', 'Systems Engineering Society of China'),
(88013, 73578, 'zh', 'name', 'äø­å›½ē³»ē»Ÿå·„ēØ‹å­¦ä¼š'),
(88014, 73579, 'en', 'name', 'Chinese Neuroscience Society'),
(88015, 73579, 'zh', 'name', 'äø­å›½ē„žē»ē§‘å­¦å­¦ä¼š'),
(88016, 73580, 'en', 'name', 'Sichuan Research Center of New Materials'),
(88017, 73580, 'zh', 'name', 'å››å·ēœę–°ęę–™ē ”ē©¶äø­åæƒ'),
(88018, 73581, 'en', 'name', 'The Crop Science Society of China'),
(88019, 73581, 'zh', 'name', 'äø­å›½ä½œē‰©å­¦ä¼š'),
(88020, 73582, 'en', 'name', 'The First People''s Hospital of Guiyang'),
(88021, 73582, 'zh', 'name', 'č“µé˜³åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(88022, 73583, 'en', 'name', 'Dingxi City People''s Hospital'),
(88023, 73583, 'zh', 'name', 'å®šč„æåø‚äŗŗę°‘åŒ»é™¢'),
(88024, 73584, 'en', 'name', 'Hunan Provincial Maternal and Child Health Hospital'),
(88025, 73584, 'zh', 'name', 'ę¹–å—ēœå¦‡å¹¼äæå„é™¢'),
(88026, 73585, 'en', 'name', 'State Administration of Foreign Exchange'),
(88027, 73585, 'zh', 'name', '国家外汇箔理局'),
(88028, 73586, 'no_lang_code', 'name', 'Tianjin Synthetic Material Research Institute (China)'),
(88029, 73586, 'zh', 'name', 'å¤©ę“„åø‚åˆęˆęę–™å·„äøšē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(88030, 73587, 'en', 'name', 'Tongliao Academy of Agricultural Sciences'),
(88031, 73587, 'zh', 'name', 'é€šč¾½åø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(88032, 73588, 'en', 'name', 'Xichang University'),
(88033, 73588, 'zh', 'name', 'č„æę˜Œå­¦é™¢'),
(88034, 73589, 'en', 'name', 'Hainan Provincial Hospital of Traditional Chinese Medicine'),
(88035, 73589, 'zh', 'name', 'ęµ·å—ēœäø­åŒ»é™¢'),
(88036, 73590, 'no_lang_code', 'name', 'Wanfang Data (China)'),
(88037, 73591, 'en', 'name', 'Wenzhou-Kean University'),
(88038, 73591, 'zh', 'name', 'ęø©å·žč‚Æę©å¤§å­¦'),
(88039, 73592, 'en', 'name', 'Western Returned Scholars AssociationĀ·Overseas-Educated Scholars Association of China'),
(88040, 73592, 'zh', 'name', 'ę¬§ē¾ŽåŒå­¦ä¼š'),
(88041, 73593, 'no_lang_code', 'name', 'Xinjiang New Energy Research Institute (China)'),
(88042, 73594, 'en', 'name', 'Xinjiang Police College'),
(88043, 73595, 'en', 'name', 'Wuchang University of Technology'),
(88044, 73595, 'zh', 'name', 'ę­¦ę˜Œē†å·„å­¦é™¢'),
(88045, 73596, 'en', 'name', 'Wuhan Blood Center'),
(88046, 73596, 'zh', 'name', 'ę­¦ę±‰č”€ę¶²äø­åæƒ'),
(88047, 73597, 'en', 'name', 'Wuhan Prevention and Treatment Center for Occupational Diseases'),
(88048, 73597, 'zh', 'name', 'ę­¦ę±‰åø‚čŒäøšē—…é˜²ę²»é™¢'),
(88049, 73598, 'no_lang_code', 'name', 'Xian Mechanical & Electric Institute (China)'),
(88050, 73598, 'zh', 'name', 'č„æå®‰ęœŗē”µē ”ē©¶ę‰€'),
(88051, 73599, 'en', 'name', 'Children’s Hospital of Fudan University Xiamen Branch'),
(88052, 73599, 'zh', 'name', 'åŽ¦é—Øåø‚å„æē«„åŒ»é™¢ē®€ä»‹'),
(88053, 73600, 'en', 'name', 'Yunnan Population and Family Planning Research Institute'),
(88054, 73600, 'zh', 'name', 'äŗ‘å—ēœäŗŗå£å’Œč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(88055, 73601, 'en', 'name', 'Zhe Jiang Institute of Geology and Mineral Resource'),
(88056, 73601, 'zh', 'name', 'ęµ™ę±Ÿēœåœ°č“ØēŸæäŗ§ē ”ē©¶ę‰€'),
(88057, 73602, 'en', 'name', 'Zhengzhou Railway Vocational & Technical College'),
(88058, 73602, 'zh', 'name', 'éƒ‘å·žé“č·ÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(88059, 73603, 'es', 'name', 'Departamento de EpidemiologĆ­a'),
(88060, 73604, 'en', 'name', 'Center for Research in Molecular Medicine and Chronic Diseases'),
(88061, 73604, 'es', 'name', 'Centro singular de investigación de Galicia'),
(88062, 73605, 'es', 'name', 'Centro de Salud Casa del Barco'),
(88063, 73606, 'en', 'name', 'Andalusian Centre for Nanomedicine and Biotechnology'),
(88064, 73606, 'es', 'name', 'Centro Andaluz de Nanomedicina y BiotecnologĆ­a'),
(88065, 73607, 'no_lang_code', 'name', 'CIBBIM-Nanomedicine'),
(88066, 73608, 'ca', 'name', 'Consorci Sanitari Garraf'),
(88067, 73609, 'es', 'name', 'Fundación Andaluza Beturia para la Investigación en Salud'),
(88068, 73610, 'es', 'name', 'Fundación A LA PAR'),
(88069, 73611, 'es', 'name', 'Instituto Universitario de Investigación en Ciencias de la Salud'),
(88070, 73611, 'en', 'name', 'Research Institute of Health Sciences'),
(88071, 73612, 'no_lang_code', 'name', '13Therapeutics (United States)'),
(88072, 73613, 'en', 'name', 'Clear Path for Veterans'),
(88073, 73614, 'en', 'name', 'Action Toward Independence'),
(88074, 73615, 'no_lang_code', 'name', 'Frequency Therapeutics (United States)'),
(88075, 73616, 'no_lang_code', 'name', 'Click Diagnostics (United States)'),
(88076, 73617, 'en', 'name', 'Advanced Functional Fabrics of America'),
(88077, 73618, 'pt', 'name', 'Fundação de Apoio à Universidade do Rio Grande'),
(88078, 73619, 'no_lang_code', 'name', 'Alivio Therapeutics (United States)'),
(88079, 73620, 'no_lang_code', 'name', 'ContraFect (United States)'),
(88080, 73621, 'no_lang_code', 'name', 'Amicrobe (United States)'),
(88081, 73622, 'no_lang_code', 'name', 'Gel4Med (United States)'),
(88082, 73623, 'no_lang_code', 'name', 'DocBox (United States)'),
(88083, 73624, 'no_lang_code', 'name', 'Appili Therapeutics (Canada)'),
(88084, 73625, 'en', 'name', 'Assistance Dogs of the West'),
(88085, 73626, 'en', 'name', 'Association for Environmental Health and Sciences Foundation'),
(88086, 73627, 'no_lang_code', 'name', 'AutoMedx (United States)'),
(88087, 73628, 'en', 'name', 'Eastern Mediterranean Public Health Network'),
(88088, 73629, 'no_lang_code', 'name', 'Electrosciences (United Kingdom)'),
(88089, 73630, 'no_lang_code', 'name', 'Bainbridge Development Corporation (United States)'),
(88090, 73631, 'en', 'name', 'Elemental Excelerator'),
(88091, 73632, 'en', 'name', 'Health Crescendos Foundation'),
(88092, 73633, 'en', 'name', 'Emerald Coast Science Center'),
(88093, 73634, 'en', 'name', 'Belle Chasse Academy'),
(88094, 73635, 'en', 'name', 'Fidelco Guide Dog Foundation'),
(88095, 73636, 'en', 'name', 'INFINITY Science Center'),
(88096, 73637, 'no_lang_code', 'name', 'Information Visualization and Innovative Research'),
(88097, 73638, 'en', 'name', 'Center for Collaborative Interdisciplinary Sciences'),
(88098, 73639, 'en', 'name', 'Center for Regional Economic Competitiveness'),
(88099, 73640, 'en', 'name', 'Izumi Biosciences'),
(88100, 73641, 'en', 'name', 'Institute of Astronomy and National Astronomical Observatory'),
(88101, 73642, 'en', 'name', 'K9 Partners for Patriots'),
(88102, 73643, 'en', 'name', 'Michigan Works! Macomb/St. Clair');
INSERT INTO `ror_settings` VALUES
(88103, 73644, 'no_lang_code', 'name', 'Kiio (United States)'),
(88104, 73645, 'no_lang_code', 'name', 'Launch Alaska (United States)'),
(88105, 73646, 'no_lang_code', 'name', 'Prytime Medical (United States)'),
(88106, 73647, 'en', 'name', 'Naval Air Warfare Center Training Systems Division'),
(88107, 73648, 'en', 'name', 'Military & Health Research Foundation'),
(88108, 73649, 'no_lang_code', 'name', 'RenBio (United States)'),
(88109, 73650, 'en', 'name', 'Renewable Energy Alaska Project'),
(88110, 73651, 'en', 'name', 'Navy League of the United States'),
(88111, 73652, 'no_lang_code', 'name', 'NanoMedical Systems (United States)'),
(88112, 73653, 'no_lang_code', 'name', 'NeoMatrix Therapeutics (United States)'),
(88113, 73654, 'no_lang_code', 'name', 'New Amsterdam Sciences (United States)'),
(88114, 73655, 'no_lang_code', 'name', 'OtoScience Labs (United States)'),
(88115, 73656, 'en', 'name', 'NEADS World Class Service Dogs Change'),
(88116, 73657, 'en', 'name', 'Palmer Soil and Water Conservation District'),
(88117, 73658, 'en', 'name', 'Paws Assisting Veterans'),
(88118, 73659, 'en', 'name', 'paws4people'),
(88119, 73660, 'no_lang_code', 'name', 'SpineThera (United States)'),
(88120, 73661, 'no_lang_code', 'name', 'Prosthetic Design + Research (United States)'),
(88121, 73662, 'en', 'name', 'The Korean Institute of Electrical and Electronic Material Engineers'),
(88122, 73662, 'ko', 'name', 'ķ•œźµ­ģ „źø°ģ „ģžģž¬ė£Œķ•™ķšŒ'),
(88123, 73663, 'no_lang_code', 'name', 'Trifecta Solutions (United States)'),
(88124, 73664, 'en', 'name', 'VA Connecticut Research and Education Foundation'),
(88125, 73665, 'en', 'name', 'Virginia Department of Veterans Services'),
(88126, 73666, 'en', 'name', 'Aberdeen Science Centre'),
(88127, 73667, 'no_lang_code', 'name', 'Acesion Pharma (Denmark)'),
(88128, 73668, 'en', 'name', 'Museum of Military Medicine'),
(88129, 73669, 'no_lang_code', 'name', 'Cresset (United Kingdom)'),
(88130, 73670, 'no_lang_code', 'name', 'Aurum Biosciences (United Kingdom)'),
(88131, 73671, 'en', 'name', 'Daily Life'),
(88132, 73672, 'en', 'name', 'Azerbaijan Medical Association'),
(88133, 73672, 'az', 'name', 'Azərbaycan Tibb Assosiasiyası'),
(88134, 73673, 'en', 'name', 'Darwin Centre'),
(88135, 73674, 'en', 'name', 'Drugs & Diagnostics for Tropical Diseases'),
(88136, 73675, 'en', 'name', 'EAT'),
(88137, 73676, 'no_lang_code', 'name', 'Biocartis (Belgium)'),
(88138, 73677, 'en', 'name', 'EngineeringUK'),
(88139, 73678, 'en', 'name', 'Explore York'),
(88140, 73679, 'no_lang_code', 'name', 'GhScientific'),
(88141, 73680, 'en', 'name', 'British Dental Association'),
(88142, 73681, 'en', 'name', 'Global Emerging Pathogens Treatment Consortium'),
(88143, 73682, 'en', 'name', 'British Neuroscience Association'),
(88144, 73683, 'no_lang_code', 'name', 'Graphic Science (United Kingdom)'),
(88145, 73684, 'en', 'name', 'British Society for the History of Medicine'),
(88146, 73685, 'en', 'name', 'Norton Priory Museum & Gardens'),
(88147, 73686, 'en', 'name', 'Brooke'),
(88148, 73687, 'en', 'name', 'Nova Laboratories'),
(88149, 73688, 'en', 'name', 'S.I. Vavilov Institute for the History of Science and Technology'),
(88150, 73688, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории ŠµŃŃ‚ŠµŃŃ‚Š²Š¾Š·Š½Š°Š½ŠøŃ Šø техники имени Š”. И. Вавилова Š ŠŠ'),
(88151, 73689, 'en', 'name', 'Cambridge Hands-On Science'),
(88152, 73690, 'en', 'name', 'Institute of Medical Ethics'),
(88153, 73691, 'en', 'name', 'Cambridge Science Centre'),
(88154, 73692, 'no_lang_code', 'name', 'Phagenesis (United Kingdom)'),
(88155, 73693, 'en', 'name', 'British Psychoanalytical Society'),
(88156, 73694, 'en', 'name', 'Center for Creative Initiatives in Health and Population'),
(88157, 73695, 'en', 'name', 'PredictImmune'),
(88158, 73696, 'no_lang_code', 'name', 'Intelesens (United Kingdom)'),
(88159, 73697, 'en', 'name', 'Center for Environmental Concerns'),
(88160, 73698, 'en', 'name', 'Dr Jenner''s House, Museum and Garden'),
(88161, 73699, 'en', 'name', 'Center for Promotion of Advancement of Society'),
(88162, 73700, 'en', 'name', 'Center for the Study of Equity and Governance in Health Systems'),
(88163, 73700, 'es', 'name', 'Centro de Estudios para la Equidad y Gobernanza en Sistemas de Salud'),
(88164, 73701, 'en', 'name', 'Scottish Council on Human Bioethics'),
(88165, 73702, 'no_lang_code', 'name', 'Stealthyx (United Kingdom)'),
(88166, 73703, 'es', 'name', 'Centro Nacional de Investigaciones en Salud Materno Infantil'),
(88167, 73704, 'en', 'name', 'Suriname Indigenous Health Fund'),
(88168, 73705, 'en', 'name', 'Jewish Museum London'),
(88169, 73706, 'en', 'name', 'Science and Development Network'),
(88170, 73707, 'no_lang_code', 'name', 'Thermofluidics (United Kingdom)'),
(88171, 73708, 'es', 'name', 'Parque Explora'),
(88172, 73709, 'en', 'name', 'Liverpool Medical Institution'),
(88173, 73710, 'no_lang_code', 'name', 'Treventis (Canada)'),
(88174, 73711, 'en', 'name', 'Mazingira Institute'),
(88175, 73712, 'en', 'name', 'UK Council on Deafness'),
(88176, 73713, 'no_lang_code', 'name', 'Science Spaza'),
(88177, 73714, 'en', 'name', 'Cape Town Science Centre'),
(88178, 73715, 'es', 'name', 'Consejo Superior De Salud Publica'),
(88179, 73716, 'no_lang_code', 'name', 'ABmerit'),
(88180, 73717, 'no_lang_code', 'name', 'DHI (Slovakia)'),
(88181, 73718, 'no_lang_code', 'name', 'Adivit (Slovakia)'),
(88182, 73719, 'no_lang_code', 'name', 'Documents Workflow Content (Slovakia)'),
(88183, 73720, 'no_lang_code', 'name', 'Dytron (Slovakia)'),
(88184, 73721, 'no_lang_code', 'name', 'Aroma Marketing (Slovakia)'),
(88185, 73722, 'no_lang_code', 'name', 'IBM (Slovakia)'),
(88186, 73723, 'no_lang_code', 'name', 'ETKM (Slovakia)'),
(88187, 73724, 'no_lang_code', 'name', 'Atos (Slovakia)'),
(88188, 73725, 'no_lang_code', 'name', 'Calibrium (Slovakia)'),
(88189, 73726, 'no_lang_code', 'name', 'Equis (Slovakia)'),
(88190, 73727, 'no_lang_code', 'name', 'Esox-Plast (Slovakia)'),
(88191, 73728, 'no_lang_code', 'name', 'Centire Research (Slovakia)'),
(88192, 73729, 'en', 'name', 'Georgia Department of Economic Development'),
(88193, 73730, 'no_lang_code', 'name', 'Chemko (Slovakia)'),
(88194, 73731, 'en', 'name', 'Institute for Labour and Family Research'),
(88195, 73731, 'sk', 'name', 'InŔtitút Pre Výskum PrÔce a Rodiny'),
(88196, 73732, 'no_lang_code', 'name', 'Fagor Ederlan (Slovakia)'),
(88197, 73733, 'no_lang_code', 'name', 'Matador (Slovakia)'),
(88198, 73734, 'no_lang_code', 'name', 'Cryosoft (Slovakia)'),
(88199, 73735, 'no_lang_code', 'name', 'FineSoft (Slovakia)'),
(88200, 73736, 'no_lang_code', 'name', 'Integra TDS (Slovakia)'),
(88201, 73737, 'no_lang_code', 'name', 'Kinex Bearings (Slovakia)'),
(88202, 73738, 'no_lang_code', 'name', 'Konstrukta Defence (Slovakia)'),
(88203, 73739, 'no_lang_code', 'name', 'COLAS Slovakia (Slovakia)'),
(88204, 73740, 'no_lang_code', 'name', 'Konzeko, spol (Slovakia)'),
(88205, 73741, 'no_lang_code', 'name', 'Kvant (Slovakia)'),
(88206, 73742, 'no_lang_code', 'name', 'IPM Solutions (Slovakia)'),
(88207, 73743, 'no_lang_code', 'name', 'Informacne Technologie A Konzultacie (Slovakia)'),
(88208, 73744, 'no_lang_code', 'name', 'Geocomplex (Slovakia)'),
(88209, 73745, 'en', 'name', 'Nordic Optical Telescope Scientific Association'),
(88210, 73746, 'no_lang_code', 'name', 'GEOtest Bratislava (Slovakia)'),
(88211, 73747, 'no_lang_code', 'name', 'Lb Minerals (Slovakia)'),
(88212, 73748, 'no_lang_code', 'name', 'Novekon (Slovakia)'),
(88213, 73749, 'no_lang_code', 'name', 'LeikTec (Slovakia)'),
(88214, 73750, 'no_lang_code', 'name', 'Johns Manville (Slovakia)'),
(88215, 73751, 'no_lang_code', 'name', 'Observatory and Planetarium of PreŔov'),
(88216, 73752, 'no_lang_code', 'name', 'Martimex (Slovakia)'),
(88217, 73753, 'no_lang_code', 'name', 'Maspoma (Slovakia)'),
(88218, 73754, 'no_lang_code', 'name', 'ON Semiconductor (Slovakia)'),
(88219, 73755, 'no_lang_code', 'name', 'OVD - OvocinÔrske Družstvo (Slovakia)'),
(88220, 73756, 'no_lang_code', 'name', 'Pansophia'),
(88221, 73757, 'no_lang_code', 'name', 'McCarter (Slovakia)'),
(88222, 73758, 'no_lang_code', 'name', 'MIA Engineering (Slovakia)'),
(88223, 73759, 'sk', 'name', 'SlovenskƩ PlanetƔriƔ'),
(88224, 73760, 'no_lang_code', 'name', 'NES (Slovakia)'),
(88225, 73761, 'no_lang_code', 'name', 'Plantex (Slovakia)'),
(88226, 73762, 'no_lang_code', 'name', 'PPA Controll (Slovakia)'),
(88227, 73763, 'no_lang_code', 'name', 'Sembid'),
(88228, 73764, 'no_lang_code', 'name', 'Novartis (Slovakia)'),
(88229, 73765, 'no_lang_code', 'name', 'Sessler'),
(88230, 73766, 'no_lang_code', 'name', 'Thyssenkrupp (Slovakia)'),
(88231, 73767, 'no_lang_code', 'name', 'Research - Development Application Services (Slovakia)'),
(88232, 73768, 'no_lang_code', 'name', 'Shimadzu (Slovakia)'),
(88233, 73769, 'no_lang_code', 'name', 'SlovenskĆ” ElektrizačnĆ” PrenosovĆ” SĆŗstava (Slovakia)'),
(88234, 73770, 'no_lang_code', 'name', 'Siemens (Slovakia)'),
(88235, 73771, 'no_lang_code', 'name', 'SlovenskƩ MagnezitovƩ ZƔvody (Slovakia)'),
(88236, 73772, 'no_lang_code', 'name', 'Riso (Slovakia)'),
(88237, 73773, 'no_lang_code', 'name', 'Museum of SpiÅ”'),
(88238, 73774, 'no_lang_code', 'name', 'Schrack Technik (Slovakia)'),
(88239, 73775, 'no_lang_code', 'name', 'SpiŔcol (Slovakia)'),
(88240, 73776, 'sk', 'name', 'ŠtÔtne Lesy Tatranského NÔrodního Parku'),
(88241, 73777, 'sk', 'name', 'ŠtÔtny InŔtitút Odborného VzdelÔvania'),
(88242, 73778, 'no_lang_code', 'name', 'Thermo Solar (Slovakia)'),
(88243, 73779, 'sk', 'name', 'Kúpele VyŔné Ružbachy'),
(88244, 73780, 'es', 'name', 'Centro Regional de Hemodonación'),
(88245, 73781, 'en', 'name', 'National Institute for Education'),
(88246, 73781, 'sk', 'name', 'ŠtÔtny Pedagogický ústav'),
(88247, 73782, 'no_lang_code', 'name', 'Voipac (Slovakia)'),
(88248, 73783, 'no_lang_code', 'name', 'VSL Software (Slovakia)'),
(88249, 73784, 'no_lang_code', 'name', 'Staton (Slovakia)'),
(88250, 73785, 'no_lang_code', 'name', 'Sylex (Slovakia)'),
(88251, 73786, 'en', 'name', 'Slovak Caves Administration'),
(88252, 73786, 'sk', 'name', 'SzlovÔkiai Barlangok IgazgatósÔga'),
(88253, 73787, 'es', 'name', 'MĆŗtua Terrassa'),
(88254, 73788, 'no_lang_code', 'name', 'SystƩmy Priemyselnej Informatiky (Slovakia)'),
(88255, 73789, 'no_lang_code', 'name', 'Deutsche Telekom (Slovakia)'),
(88256, 73790, 'no_lang_code', 'name', 'Way Industries (Slovakia)'),
(88257, 73791, 'es', 'name', 'Programa de Salud Global'),
(88258, 73792, 'en', 'name', 'World Health Organization - Slovakia'),
(88259, 73793, 'no_lang_code', 'name', 'YMS (Slovakia)'),
(88260, 73794, 'sk', 'name', 'Trojsten'),
(88261, 73795, 'no_lang_code', 'name', 'VƔdium (Slovakia)'),
(88262, 73796, 'sk', 'name', 'AsociƔcia Doktorandov Slovenska'),
(88263, 73797, 'no_lang_code', 'name', 'PodbrezovĆ” Iron Works (Slovakia)'),
(88264, 73797, 'sk', 'name', 'Železiarne PodbrezovÔ'),
(88265, 73798, 'en', 'name', 'Slovak Technical Museum'),
(88266, 73798, 'sk', 'name', 'Slovenské Technické Múzeum'),
(88267, 73799, 'en', 'name', 'Slovak Water Management Enterprise'),
(88268, 73799, 'sk', 'name', 'Slovenský VodohospodÔrsky Podnik'),
(88269, 73800, 'no_lang_code', 'name', 'Biocartis (Switzerland)'),
(88270, 73801, 'no_lang_code', 'name', 'Vegum (Slovakia)'),
(88271, 73802, 'sk', 'name', 'SlovenskĆ” FyzikĆ”lna SpoločnosÅ„'),
(88272, 73803, 'no_lang_code', 'name', 'Zts Inmart Atóm (Slovakia)'),
(88273, 73804, 'en', 'name', 'Slovak Renewable Energy Agency'),
(88274, 73805, 'no_lang_code', 'name', 'ZTS Sabinov (Slovakia)'),
(88275, 73806, 'no_lang_code', 'name', 'Zelseed (Slovakia)'),
(88276, 73807, 'no_lang_code', 'name', 'SlovenskƩ ElektrƔrne (Slovakia)'),
(88277, 73808, 'en', 'name', 'Western Regional Research Center'),
(88278, 73809, 'en', 'name', 'National Center for Agricultural Utilization Research'),
(88279, 73810, 'en', 'name', 'Beltsville Agricultural Research Center'),
(88280, 73811, 'no_lang_code', 'name', 'Hydrogen Slovakia (Slovakia)'),
(88281, 73812, 'en', 'name', 'Southern Regional Research Center'),
(88282, 73813, 'sk', 'name', 'Nemocnica Malacky'),
(88283, 73814, 'en', 'name', 'Eastern Regional Research Center'),
(88284, 73815, 'en', 'name', 'Grammar School'),
(88285, 73815, 'sk', 'name', 'GymnƔzium v Snine'),
(88286, 73816, 'no_lang_code', 'name', 'Drevar (Slovakia)'),
(88287, 73817, 'en', 'name', 'The Institute of Military History'),
(88288, 73817, 'sk', 'name', 'Vojenský historický ústav'),
(88289, 73818, 'no_lang_code', 'name', 'EkoWatt (Slovakia)'),
(88290, 73819, 'sk', 'name', 'Prevencia'),
(88291, 73820, 'no_lang_code', 'name', 'Bitunova (Slovakia)'),
(88292, 73821, 'no_lang_code', 'name', 'Geodis (Slovakia)'),
(88293, 73822, 'en', 'name', 'The Mark Foundation for Cancer Research'),
(88294, 73823, 'en', 'name', 'Centre for Public Policy Research'),
(88295, 73824, 'no_lang_code', 'name', 'GNA Research (Israel)'),
(88296, 73825, 'en', 'name', 'Memorial Medical Center Foundation'),
(88297, 73826, 'en', 'name', 'Center for Jewish–Christian Understanding and Cooperation'),
(88298, 73826, 'he', 'name', 'Center for Judeo-Christian Understanding and Cooperation'),
(88299, 73827, 'en', 'name', 'Lester Smith Medical Research Institute'),
(88300, 73828, 'en', 'name', 'Japan Society of English for Research'),
(88301, 73828, 'ja', 'name', 'ē ”ē©¶č€…ć®ćŸć‚ć®č‹±čŖž'),
(88302, 73829, 'en', 'name', 'Association for Scottish Literary Studies'),
(88303, 73830, 'en', 'name', 'The British Blockchain Association'),
(88304, 73831, 'no_lang_code', 'name', 'Applied Spectral Imaging (United States)'),
(88305, 73832, 'en', 'name', 'Africa Youth Growth Foundation'),
(88306, 73833, 'no_lang_code', 'name', 'Hameln (Slovakia)'),
(88307, 73834, 'sk', 'name', 'Strednej Odbornej Ŕkole Lesníckej BanskÔ Štiavnica'),
(88308, 73835, 'no_lang_code', 'name', 'Auchem (Slovakia)'),
(88309, 73836, 'sk', 'name', 'Centrum Pedagogicko PsychologickƩho Poradenstva a Prevencie'),
(88310, 73837, 'no_lang_code', 'name', 'Vetservis (Slovakia)'),
(88311, 73838, 'no_lang_code', 'name', 'GemerskĆ” NerudnĆ” SpoločnosÅ„ (Slovakia)'),
(88312, 73839, 'sk', 'name', 'Nemocnica SvƤtƩho Michala'),
(88313, 73840, 'sk', 'name', 'ŠtÔtny VeterinÔrny a Potravinový Ústav'),
(88314, 73841, 'no_lang_code', 'name', 'AutomatizĆ”cia železničnej Dopravy (Slovakia)'),
(88315, 73842, 'no_lang_code', 'name', 'Spa-ce.net'),
(88316, 73843, 'sk', 'name', 'StrednÔ OdbornÔ Skola Lesnícka TvrdoŔín'),
(88317, 73844, 'no_lang_code', 'name', 'TMG (Slovakia)'),
(88318, 73845, 'en', 'name', 'European School of Materials'),
(88319, 73846, 'en', 'name', 'Duchenne UK'),
(88320, 73847, 'en', 'name', 'Australian Securities and Investments Commission'),
(88321, 73848, 'en', 'name', 'Australian Taxation Office'),
(88322, 73849, 'en', 'name', 'NDIS Quality and Safeguards Commission'),
(88323, 73850, 'en', 'name', 'Canada''s Ecofiscal Commission'),
(88324, 73851, 'en', 'name', 'Global Research and Advocacy Group'),
(88325, 73852, 'en', 'name', 'Baoson Hospital'),
(88326, 73852, 'vi', 'name', 'Bệnh viện Đa khoa Bįŗ£o SĘ”n'),
(88327, 73853, 'en', 'name', 'State Enterprise "L.I. Medved''s Research Center of Preventive Toxicology, Food and Chemical Safety" of the Ministry of Health of Ukraine'),
(88328, 73853, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²ŠøŠ¹ центр превентивної токсикології, харчової та хімічної безпеки імені акаГеміка Š›.І. ŠœŠµŠ“Š²ŠµŠ“Ń ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š° охорони зГоров''я України'),
(88329, 73854, 'es', 'name', 'BiblioMadSalud'),
(88330, 73855, 'no_lang_code', 'name', 'Abu Dhabi Health Services'),
(88331, 73855, 'ar', 'name', 'ؓركة أبوظبي للخدمات Ų§Ł„ŲµŲ­ŁŠŲ© - ŲµŲ­Ų©'),
(88332, 73856, 'en', 'name', 'Shenyang Ninth People''s Hospital'),
(88333, 73856, 'zh', 'name', 'ę²ˆé˜³åø‚ē¬¬ä¹äŗŗę°‘åŒ»é™¢'),
(88334, 73857, 'en', 'name', 'Meteorological Bureau of Shenzhen Municipality'),
(88335, 73857, 'zh', 'name', 'ę·±åœ³åø‚ę°”č±”å±€'),
(88336, 73858, 'en', 'name', 'China Rural Technology Development Center'),
(88337, 73858, 'zh', 'name', 'äø­å›½å†œę‘ęŠ€ęœÆå¼€å‘äø­åæƒ'),
(88338, 73859, 'pt', 'name', 'Unifunec - Centro UniversitƔrio de Santa FƩ do Sul'),
(88339, 73860, 'en', 'name', 'Nagano University of Health and Medicine'),
(88340, 73860, 'ja', 'name', 'é•·é‡Žäæå„åŒ»ē™‚å¤§å­¦'),
(88341, 73861, 'en', 'name', 'Hartpury University'),
(88342, 73862, 'en', 'name', 'Bank of Estonia'),
(88343, 73862, 'et', 'name', 'Eesti Pank'),
(88344, 73863, 'en', 'name', 'Bank of Japan'),
(88345, 73863, 'ja', 'name', 'ę—„ęœ¬éŠ€č”Œ'),
(88346, 73864, 'en', 'name', 'Bank of Latvia'),
(88347, 73864, 'lv', 'name', 'Latvijas Banka'),
(88348, 73865, 'en', 'name', 'Bank of Lithuania'),
(88349, 73865, 'lt', 'name', 'Lietuvos Bankas'),
(88350, 73866, 'ro', 'name', 'Banca Națională a RomĆ¢niei'),
(88351, 73866, 'en', 'name', 'National Bank of Romania'),
(88352, 73867, 'en', 'name', 'Bank of Slovenia'),
(88353, 73867, 'sl', 'name', 'Banka Slovenije'),
(88354, 73868, 'en', 'name', 'Bulgarian National Bank'),
(88355, 73868, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° нароГна банка'),
(88356, 73869, 'es', 'name', 'Banco Central de la RepĆŗblica Argentina'),
(88357, 73869, 'en', 'name', 'Central Bank of Argentina'),
(88358, 73870, 'en', 'name', 'Central Bank of Cyprus'),
(88359, 73870, 'tr', 'name', 'Kıbrıs Merkez Bankası'),
(88360, 73870, 'el', 'name', 'Kεντρική Τράπεζα της ĪšĻĻ€ĻĪæĻ…'),
(88361, 73871, 'ga', 'name', 'Banc Ceannais na hƉireann'),
(88362, 73871, 'en', 'name', 'Central Bank of Ireland'),
(88363, 73872, 'lb', 'name', 'Banque centrale du Luxembourg'),
(88364, 73872, 'en', 'name', 'Central Bank of Luxembourg'),
(88365, 73873, 'mt', 'name', 'Bank Ċentrali ta’ Malta'),
(88366, 73873, 'en', 'name', 'Central Bank of Malta'),
(88367, 73874, 'da', 'name', 'Danmarks Nationalbank'),
(88368, 73875, 'en', 'name', 'Federal Reserve'),
(88369, 73876, 'en', 'name', 'Federal Reserve Bank of Atlanta'),
(88370, 73877, 'en', 'name', 'Federal Reserve Bank of Boston'),
(88371, 73878, 'en', 'name', 'Federal Reserve Bank of Dallas'),
(88372, 73879, 'en', 'name', 'Federal Reserve Bank of Minneapolis'),
(88373, 73880, 'en', 'name', 'Federal Reserve Bank of Philadelphia'),
(88374, 73881, 'en', 'name', 'Federal Reserve Bank of Richmond'),
(88375, 73882, 'en', 'name', 'Federal Reserve Bank of San Francisco'),
(88376, 73883, 'en', 'name', 'National Bank of Slovakia'),
(88377, 73883, 'sk', 'name', 'NƔrodnƔ banka Slovenska'),
(88378, 73884, 'en', 'name', 'New Development Bank'),
(88379, 73885, 'en', 'name', 'Saudi Arabian Monetary Authority'),
(88380, 73885, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© النقد Ų§Ł„Ų¹Ų±ŲØŁŠ Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠā€Ž'),
(88381, 73886, 'ms', 'name', 'Forum Ekonomi Islam Dunia'),
(88382, 73886, 'en', 'name', 'World Islamic Economic Forum Foundation'),
(88383, 73887, 'en', 'name', 'Afghan Paramount Welfare and Development Organization'),
(88384, 73888, 'en', 'name', 'Children’s Future International'),
(88385, 73889, 'en', 'name', 'The Task Force for Global Health'),
(88386, 73890, 'en', 'name', 'Centre for Health and Social Justice'),
(88387, 73891, 'de', 'name', 'Staats- und UniversitƤtsbibliothek Bremen'),
(88388, 73892, 'no_lang_code', 'name', 'WiTricity (United States)'),
(88389, 73893, 'no_lang_code', 'name', 'Accurate Solar Power (United States)'),
(88390, 73894, 'es', 'name', 'Observatorio de Mortalidad Materna en MƩxico'),
(88391, 73895, 'es', 'name', 'Asociación Mexicana de Psicología y Desarrollo Comunitario'),
(88392, 73895, 'en', 'name', 'Mexican Association of Psychology and Community Development'),
(88393, 73896, 'en', 'name', 'Museum of Islamic Art'),
(88394, 73896, 'ar', 'name', 'متحف الفن Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(88395, 73897, 'no_lang_code', 'name', 'Qatar Central Bank'),
(88396, 73897, 'ar', 'name', 'مصرف قطر Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(88397, 73898, 'no_lang_code', 'name', 'NextTechnologies (Hungary)'),
(88398, 73899, 'en', 'name', 'Equine Veterinary Medical Center'),
(88399, 73899, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ų®ŁŠŁˆŁ„ Ų§Ł„Ų·ŲØŁŠ Ų§Ł„ŲØŁŠŲ·Ų±ŁŠ'),
(88400, 73900, 'en', 'name', 'Doha Centre for Media Freedom'),
(88401, 73900, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„ŲÆŁˆŲ­Ų© Ł„Ų­Ų±ŁŠŲ© ال؄علام'),
(88402, 73901, 'no_lang_code', 'name', 'Micron Semiconductor (United Kingdom)'),
(88403, 73902, 'no_lang_code', 'name', 'Qatar Credit Bureau'),
(88404, 73902, 'ar', 'name', 'Ł…Ų±ŁƒŲ² قطر Ł„Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ų§Ł„Ų§Ų¦ŲŖŁ…Ų§Ł†ŁŠŲ©'),
(88405, 73903, 'no_lang_code', 'name', 'Takeda (Ireland)'),
(88406, 73904, 'no_lang_code', 'name', 'Takeda (Australia)'),
(88407, 73905, 'no_lang_code', 'name', 'Takeda (Sweden)'),
(88408, 73906, 'no_lang_code', 'name', 'Takeda (Canada)'),
(88409, 73907, 'fr', 'name', 'Centre National de Recherche et de Formation sur le Paludisme'),
(88410, 73908, 'no_lang_code', 'name', 'Linde (Italy)'),
(88411, 73909, 'en', 'name', 'African Rural University'),
(88412, 73910, 'en', 'name', 'Flemish Parliament'),
(88413, 73910, 'de', 'name', 'FlƤmisches Parlament'),
(88414, 73910, 'fr', 'name', 'Parlement Flamand'),
(88415, 73910, 'nl', 'name', 'Vlaams Parlement'),
(88416, 73911, 'no_lang_code', 'name', 'Takeda (Austria)'),
(88417, 73912, 'en', 'name', 'Wisconsin Project on Nuclear Arms Control'),
(88418, 73913, 'no_lang_code', 'name', 'AB Vista (United Kingdom)'),
(88419, 73914, 'no_lang_code', 'name', 'Branston (United Kingdom)'),
(88420, 73915, 'no_lang_code', 'name', 'Locate Bio (United Kingdom)'),
(88421, 73916, 'no_lang_code', 'name', 'Northern Gas Networks (United Kingdom)'),
(88422, 73917, 'no_lang_code', 'name', 'We Predict (United Kingdom)'),
(88423, 73918, 'no_lang_code', 'name', 'Semefab (United Kingdom)'),
(88424, 73919, 'en', 'name', 'National Food Safety and Quality Service'),
(88425, 73919, 'es', 'name', 'Servicio Nacional de Sanidad y Calidad Agroalimentaria'),
(88426, 73920, 'no_lang_code', 'name', 'Reihoo (France)'),
(88427, 73921, 'en', 'name', 'Tertiary Research and Education Network of South Africa'),
(88428, 73922, 'en', 'name', 'Open Book Publishers'),
(88429, 73923, 'en', 'name', 'Environmental Information Data Centre'),
(88430, 73924, 'no_lang_code', 'name', 'Allogene Therapeutics (United States)'),
(88431, 73925, 'en', 'name', 'Coalition of Open Access Policy Institutions'),
(88432, 73926, 'en', 'name', 'Rayos Contra Cancer'),
(88433, 73927, 'no_lang_code', 'name', 'Rubius Therapeutics (United States)'),
(88434, 73928, 'en', 'name', 'Islamic Azad University Rasht Branch'),
(88435, 73928, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد Ų±Ų“ŲŖā€Ž'),
(88436, 73929, 'en', 'name', 'Institute of Political Science'),
(88437, 73929, 'pl', 'name', 'Instytut Nauki o Polityce'),
(88438, 73930, 'de', 'name', 'Allensbach Hochschule'),
(88439, 73930, 'en', 'name', 'Allensbach University'),
(88440, 73931, 'en', 'name', 'Baden State Museum'),
(88441, 73931, 'de', 'name', 'Badische Landesmuseum'),
(88442, 73932, 'en', 'name', 'Johann Adam Mƶhler Institute for Ecumenism'),
(88443, 73932, 'de', 'name', 'Johann-Adam-Mƶhler-Institut für Ɩkumenik'),
(88444, 73933, 'en', 'name', 'Bavarian Broadcasting'),
(88445, 73933, 'de', 'name', 'Bayerischer Rundfunk'),
(88446, 73934, 'de', 'name', 'Staatliche Kunsthalle Karlsruhe'),
(88447, 73935, 'de', 'name', 'Landtag of North Rhine-Westphalia'),
(88448, 73936, 'de', 'name', 'Landesamt für Kultur und Denkmalpflege Mecklenburg-Vorpommern'),
(88449, 73937, 'de', 'name', 'Duale Hochschule Gera-Eisenach'),
(88450, 73938, 'no_lang_code', 'name', 'West German Broadcasting Cologne'),
(88451, 73938, 'de', 'name', 'Westdeutscher Rundfunk'),
(88452, 73939, 'de', 'name', 'Bundeskunsthalle'),
(88453, 73940, 'en', 'name', 'Max Planck Institute of Animal Behavior'),
(88454, 73940, 'de', 'name', 'Max-Planck-Institut für Verhaltensbiologie'),
(88455, 73941, 'en', 'name', 'Max Planck-Bristol Centre for Minimal Biology'),
(88456, 73942, 'en', 'name', 'Max Planck University of Twente Center for Complex Fluid Dynamics'),
(88457, 73943, 'de', 'name', 'Wissenschaftliche Stadtbibliothek Mainz'),
(88458, 73944, 'de', 'name', 'Bach Archiv Leipzig'),
(88459, 73945, 'de', 'name', 'Hochschule für Musik Karlsruhe'),
(88460, 73945, 'en', 'name', 'University of Music Karlsruhe'),
(88461, 73946, 'en', 'name', 'Christus Stehlin Foundation for Cancer Research'),
(88462, 73947, 'en', 'name', 'United Nations Economic and Social Commission for Asia and the Pacific'),
(88463, 73948, 'en', 'name', 'Mercy Health Foundation'),
(88464, 73949, 'en', 'name', 'Tameside and Glossop Integrated Care NHS Foundation Trust'),
(88465, 73950, 'en', 'name', 'Whittington Health NHS Trust'),
(88466, 73951, 'en', 'name', 'James Paget University Hospitals NHS Foundation Trust'),
(88467, 73952, 'en', 'name', 'North Cumbria Integrated Care NHS Foundation Trust'),
(88468, 73953, 'fr', 'name', 'Centre Hospitalier Intercommunal Castres-Mazamet'),
(88469, 73954, 'id', 'name', 'Universitas Ibrahimy'),
(88470, 73955, 'en', 'name', 'Human Fertilisation and Embryology Authority'),
(88471, 73956, 'en', 'name', 'The CART Fund'),
(88472, 73957, 'en', 'name', 'Al-Razi University'),
(88473, 73957, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ų§Ų²ŁŠ'),
(88474, 73958, 'de', 'name', 'Franziskus-Krankenhaus Berlin'),
(88475, 73959, 'de', 'name', 'Lausitzer Seenland Klinikum'),
(88476, 73960, 'es', 'name', 'Consejo Nacional de Ciencia y TecnologĆ­a'),
(88477, 73961, 'no_lang_code', 'name', 'Aptiv (Ireland)'),
(88478, 73962, 'no_lang_code', 'name', 'CNH Industrial (Netherlands)'),
(88479, 73963, 'en', 'name', 'Chartered Institute of Personnel and Development'),
(88480, 73964, 'en', 'name', 'Chief Scientist Office'),
(88481, 73965, 'en', 'name', 'James Family Prescott YMCA'),
(88482, 73966, 'en', 'name', 'Global Alliance to Prevent Prematurity and Stillbirth'),
(88483, 73967, 'en', 'name', 'Northern Ireland Ambulance Service Health and Social Care Trust'),
(88484, 73968, 'fr', 'name', 'Centre National des Soins Palliatifs et de la Fin de Vie'),
(88485, 73969, 'no_lang_code', 'name', 'Vattenfall (United Kingdom)'),
(88486, 73970, 'no_lang_code', 'name', 'LafargeHolcim (Switzerland)'),
(88487, 73971, 'de', 'name', 'FHS St. Gallen Hochschule für Angewandte Wissenschaften'),
(88488, 73971, 'en', 'name', 'University of Applied Sciences St. Gallen'),
(88489, 73972, 'de', 'name', 'Hochschule für Technik Rapperswil'),
(88490, 73972, 'en', 'name', 'University of Applied Sciences Rapperswil'),
(88491, 73973, 'de', 'name', 'Interstaatliche Hochschule für Technik NTB Buchs'),
(88492, 73973, 'en', 'name', 'Interstate University of Applied Sciences of Technology Buchs'),
(88493, 73974, 'fr', 'name', 'Ecole SupƩrieure d''Ambulancier et Soins d''Urgence Romande'),
(88494, 73975, 'no_lang_code', 'name', 'LafargeHolcim (Canada)'),
(88495, 73976, 'en', 'name', 'Providence Health & Services Alaska'),
(88496, 73977, 'en', 'name', 'TrinityCare Hospice'),
(88497, 73978, 'en', 'name', 'Eye Hospital in Bangalore'),
(88498, 73979, 'no_lang_code', 'name', 'Exactech (United States)'),
(88499, 73980, 'no_lang_code', 'name', 'CGI (Canada)'),
(88500, 73981, 'de', 'name', 'Schön Klinik München Harlaching'),
(88501, 73982, 'de', 'name', 'München Klinik Neuperlach'),
(88502, 73983, 'de', 'name', 'München Klinik Harlaching'),
(88503, 73984, 'de', 'name', 'Hermann-Josef-Krankenhaus Erkelenz'),
(88504, 73985, 'no_lang_code', 'name', 'Aker (Norway)'),
(88505, 73986, 'en', 'name', 'Greenland Ecosystem Monitoring'),
(88506, 73987, 'en', 'name', 'East Suffolk and North Essex NHS Foundation Trust'),
(88507, 73988, 'no_lang_code', 'name', 'Imerys (France)'),
(88508, 73989, 'en', 'name', 'Institute for Children, Poverty & Homelessness'),
(88509, 73990, 'no_lang_code', 'name', 'John Wood Group (United Kingdom)'),
(88510, 73991, 'no_lang_code', 'name', 'GTT Communications (United States)'),
(88511, 73992, 'no_lang_code', 'name', 'Liebherr (Switzerland)'),
(88512, 73993, 'no_lang_code', 'name', 'Apollo Global Management (United States)'),
(88513, 73994, 'en', 'name', 'Providence St. Mary Medical Center'),
(88514, 73995, 'en', 'name', 'Shropshire Community Health NHS Trust'),
(88515, 73996, 'en', 'name', 'Ballad Health'),
(88516, 73997, 'en', 'name', 'The Australian Prevention Partnership Centre'),
(88517, 73998, 'en', 'name', 'Jewish Community Center of Greater Buffalo'),
(88518, 73999, 'it', 'name', 'Ordine Ospedaliero di San Giovanni di Dio Fatebenefratelli'),
(88519, 74000, 'en', 'name', 'Rongo University'),
(88520, 74001, 'no_lang_code', 'name', 'Arcadis (Netherlands)'),
(88521, 74002, 'no_lang_code', 'name', 'Excelitas Technologies (United States)'),
(88522, 74003, 'en', 'name', 'Greater Manchester Mental Health NHS Foundation Trust'),
(88523, 74004, 'no_lang_code', 'name', 'Elixiron Immunotherapeutics (Taiwan)'),
(88524, 74004, 'zh', 'name', 'å®‰ē«‹ēŽŗč£ē”Ÿē‰©åŒ»čÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(88525, 74005, 'en', 'name', 'College of Contract Management'),
(88526, 74006, 'es', 'name', 'Centro de Investigación en Salud Dr. Hugo Mendoza'),
(88527, 74007, 'fr', 'name', 'MusƩe National des Beaux-Arts du QuƩbec'),
(88528, 74007, 'en', 'name', 'National Museum of Fine Arts of Quebec'),
(88529, 74008, 'no_lang_code', 'name', 'NeuroEM Therapeutics (United States)'),
(88530, 74009, 'pl', 'name', 'Instytut Północny im. W. Kętrzyńskiego'),
(88531, 74009, 'en', 'name', 'The Wojciech Kętrzyński Northern Institute'),
(88532, 74010, 'en', 'name', 'Office of Science and Technology Policy'),
(88533, 74011, 'en', 'name', 'Telerehabilitation International'),
(88534, 74012, 'fr', 'name', 'Château de Montsoreau Museum of Contemporary Art'),
(88535, 74013, 'en', 'name', 'New York State Nurses Association'),
(88536, 74014, 'en', 'name', 'Centre for East European and International Studies'),
(88537, 74014, 'de', 'name', 'Zentrum für Osteuropa- und internationale Studien'),
(88538, 74015, 'en', 'name', 'Institute of Food Resources of National Academy of Agrarian Sciences of Ukraine'),
(88539, 74015, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ харчових Ń€ŠµŃŃƒŃ€ŃŃ–Š² ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(88540, 74016, 'es', 'name', 'Colegio Colombiano de Terapia Ocupacional'),
(88541, 74017, 'en', 'name', 'Extreme Wellness Institute'),
(88542, 74018, 'en', 'name', 'Oyster Hospital'),
(88543, 74019, 'en', 'name', 'Humber Teaching NHS Foundation Trust'),
(88544, 74020, 'en', 'name', 'Scientific Research Institute of Healthcare Organization and Medical Management'),
(88545, 74020, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ организации Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø меГицинского менеГжмента'),
(88546, 74021, 'en', 'name', 'Scientific Society of Otolaryngology and Head and Neck Surgery'),
(88547, 74021, 'es', 'name', 'Sociedad Otorrinolaringológica de Castilla y León, Cantabria y La Rioja'),
(88548, 74022, 'en', 'name', 'Adaptive Physical Education'),
(88549, 74023, 'en', 'name', 'ICLEI - Local Governments for Sustainability USA'),
(88550, 74024, 'en', 'name', 'Levy Economics Institute of Bard College'),
(88551, 74025, 'en', 'name', 'Shanghai Institute of Nutrition and Health'),
(88552, 74025, 'zh', 'name', '中国科学院 äøŠęµ·č„å…»äøŽå„åŗ·ē ”ē©¶é™¢'),
(88553, 74026, 'en', 'name', 'Coleridge Initiative'),
(88554, 74027, 'en', 'name', 'South African Sugarcane Research Institute'),
(88555, 74028, 'en', 'name', 'Islamic Azad University, Ahvaz Branch'),
(88556, 74028, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ł‡ŁˆŲ§Ų²'),
(88557, 74029, 'fr', 'name', 'Ministère de l''Agriculture et de l''Èquipement Rural'),
(88558, 74029, 'en', 'name', 'Senegal Ministry of Agriculture'),
(88559, 74030, 'en', 'name', 'North Carolina Natural Heritage Program'),
(88560, 74031, 'en', 'name', 'The Academic Association for Contemporary European Studies'),
(88561, 74032, 'en', 'name', 'ZRT Laboratory'),
(88562, 74033, 'fr', 'name', 'Bureau de la Coordination des Affaires Humanitaires'),
(88563, 74033, 'en', 'name', 'United Nations Office for the Coordination of Humanitarian Affairs'),
(88564, 74034, 'en', 'name', 'State Forest Enterprise'),
(88565, 74034, 'lt', 'name', 'Valstybinių MiÅ”kų Urėdija'),
(88566, 74035, 'no_lang_code', 'name', 'Wisdom Health (United States)'),
(88567, 74036, 'en', 'name', 'Woldia University'),
(88568, 74036, 'am', 'name', 'į‹ˆįˆį‹µį‹« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(88569, 74037, 'en', 'name', 'Marine Megafauna Foundation'),
(88570, 74038, 'fr', 'name', 'Groupe de Recherche en Ɖcologie Arctique'),
(88571, 74039, 'pt', 'name', 'Instituto Gremar'),
(88572, 74040, 'en', 'name', 'Global Flyway Network'),
(88573, 74041, 'no_lang_code', 'name', 'Miyanomori Memorial Hospital'),
(88574, 74041, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗ č®ƒē”Ÿä¼š å®®ć®ę£®čØ˜åæµē—…é™¢'),
(88575, 74042, 'en', 'name', 'CananƩia Research Institute'),
(88576, 74042, 'pt', 'name', 'Instituto de Pesquisas CananƩia'),
(88577, 74043, 'en', 'name', 'Centre for African Wetlands'),
(88578, 74044, 'en', 'name', 'Florida Institute for Conservation Science'),
(88579, 74045, 'en', 'name', 'R3 Animal'),
(88580, 74046, 'fr', 'name', 'RƩseau National de Surveillance AƩrobiologique'),
(88581, 74047, 'es', 'name', 'Centro Jambatu de Investigación y Conservación de Anfibios'),
(88582, 74048, 'en', 'name', 'Falklands Conservation'),
(88583, 74049, 'pt', 'name', 'Instituto Biopesca'),
(88584, 74050, 'en', 'name', 'Silvestrum Climate Associates'),
(88585, 74051, 'pt', 'name', 'Instituto Argonauta'),
(88586, 74052, 'en', 'name', 'State Library of North Carolina'),
(88587, 74053, 'es', 'name', 'Ecuatesis'),
(88588, 74054, 'en', 'name', 'American College of Veterinary Radiology'),
(88589, 74055, 'en', 'name', 'Gurukul School of Design'),
(88590, 74056, 'en', 'name', 'Fraunhofer USA Center for Laser Applications'),
(88591, 74057, 'en', 'name', 'Fraunhofer Centre for Applied Photonics'),
(88592, 74058, 'en', 'name', 'Fraunhofer USA Center for Sustainable Energy Systems'),
(88593, 74059, 'en', 'name', 'Kazakh University of Technology and Business'),
(88594, 74059, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ және бизнес ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(88595, 74060, 'en', 'name', 'Aerospace Information Research Institute'),
(88596, 74060, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē©ŗå¤©äæ”ęÆåˆ›ę–°ē ”ē©¶é™¢'),
(88597, 74061, 'de', 'name', 'Forschungsgruppe Soziale Neurowissenschaft'),
(88598, 74061, 'en', 'name', 'Social Neuroscience Lab'),
(88599, 74062, 'en', 'name', 'Allen Institute for Cell Science'),
(88600, 74063, 'en', 'name', 'Unilever Foods Innovation Centre'),
(88601, 74064, 'no_lang_code', 'name', 'Antea Group (France)'),
(88602, 74065, 'es', 'name', 'Fundación Salvadoreña para el Desarrollo Económico y Social'),
(88603, 74066, 'en', 'name', 'The Browns'' School'),
(88604, 74067, 'en', 'name', 'The Ream Foundation'),
(88605, 74068, 'en', 'name', 'Protein Research Foundation'),
(88606, 74069, 'en', 'name', 'Institute of Business Leadership'),
(88607, 74070, 'es', 'name', 'Asociación Fundación de Investigación Microbiomas'),
(88608, 74070, 'en', 'name', 'Microbiomas Foundation'),
(88609, 74071, 'fr', 'name', 'Unitaid'),
(88610, 74072, 'en', 'name', 'Biological and Chemical Oceanography Data Management Office'),
(88611, 74073, 'no_lang_code', 'name', 'Marvell (United States)'),
(88612, 74074, 'en', 'name', 'Canadian Quantum Research Center'),
(88613, 74075, 'en', 'name', 'National Brain Centre'),
(88614, 74075, 'id', 'name', 'Rumah Sakit Pusat Otak Nasional'),
(88615, 74076, 'en', 'name', 'Institute of Agricultural Machinery'),
(88616, 74076, 'ja', 'name', 'č¾²ę„­ē’°å¢ƒå¤‰å‹•ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(88617, 74077, 'en', 'name', 'Advanced Analysis Center'),
(88618, 74077, 'ja', 'name', 'é«˜åŗ¦č§£ęžć‚»ćƒ³ć‚æćƒ¼'),
(88619, 74078, 'en', 'name', 'Genetic Resources Center'),
(88620, 74078, 'ja', 'name', 'éŗä¼č³‡ęŗć‚»ćƒ³ć‚æćƒ¼'),
(88621, 74079, 'en', 'name', 'Research Center for Agricultural Information Technology'),
(88622, 74079, 'ja', 'name', 'č¾²ę„­ęƒ…å ±ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(88623, 74080, 'en', 'name', 'Center for Seeds and Seedlings'),
(88624, 74080, 'ja', 'name', 'ēØ®č‹—ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(88625, 74081, 'en', 'name', 'Agri-Food Business Innovation Center'),
(88626, 74081, 'ja', 'name', 'é£Ÿč¾²ćƒ“ć‚øćƒć‚¹ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(88627, 74082, 'en', 'name', 'National Zoological Gardens of South Africa'),
(88628, 74083, 'en', 'name', 'South African Environmental Observation Network'),
(88629, 74084, 'en', 'name', 'South African Agency for Science and Technology Advancement'),
(88630, 74085, 'en', 'name', 'Himalayan Institute of Alternatives, Ladakh'),
(88631, 74086, 'en', 'name', 'Institute for Fundamental Physics of the Universe'),
(88632, 74087, 'en', 'name', 'DuPage Health Coalition'),
(88633, 74088, 'en', 'name', 'Toyama Prefectural Agricultural, Forestry & Fisheries Research Center'),
(88634, 74088, 'ja', 'name', 'åÆŒå±±ēœŒč¾²ęž—ę°“ē”£ē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(88635, 74089, 'en', 'name', 'Kochi Agricultural Technology Center'),
(88636, 74089, 'ja', 'name', 'é«˜ēŸ„ēœŒč¾²ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(88637, 74090, 'en', 'name', 'Cleveland Metroparks'),
(88638, 74091, 'en', 'name', 'Toronto Zoo'),
(88639, 74092, 'en', 'name', 'Royal Alberta Museum'),
(88640, 74093, 'en', 'name', 'North Canyon Medical Center'),
(88641, 74094, 'en', 'name', 'Yukon Department of Environment'),
(88642, 74095, 'en', 'name', 'Safer Medicines Trust'),
(88643, 74096, 'en', 'name', 'Arctic Borderlands Ecological Knowledge Society'),
(88644, 74097, 'en', 'name', 'Surgo Foundation'),
(88645, 74098, 'es', 'name', 'Proyecto Mono Tocón'),
(88646, 74098, 'en', 'name', 'Titi Monkey Project'),
(88647, 74099, 'es', 'name', 'SELVA'),
(88648, 74100, 'no_lang_code', 'name', 'Gorongosa National Park'),
(88649, 74101, 'en', 'name', 'The SILVA Ribosomal RNA Database Project'),
(88650, 74102, 'no_lang_code', 'name', 'D.I.I.V. (Croatia)'),
(88651, 74102, 'hr', 'name', 'DruŔtvo za Istraživanje i IskoriŔtavanje Voda'),
(88652, 74103, 'en', 'name', 'Open Data Infrastructure for Social Science and Economic Innovations'),
(88653, 74104, 'no_lang_code', 'name', 'Chemnitzer Werkstoffmechanik GmbH (Germany)'),
(88654, 74105, 'no_lang_code', 'name', 'Bagilstein (Germany)'),
(88655, 74106, 'no_lang_code', 'name', 'MKS Instruments (Germany)'),
(88656, 74107, 'en', 'name', 'Austrian Physical Society'),
(88657, 74107, 'de', 'name', 'Ɩsterreichische Physikalische Gesellschaft'),
(88658, 74108, 'no_lang_code', 'name', 'AXO Dresden (Germany)'),
(88659, 74109, 'no_lang_code', 'name', 'AIM Infrarot-Module (Germany)'),
(88660, 74110, 'no_lang_code', 'name', 'DATEV (Germany)'),
(88661, 74110, 'de', 'name', 'Datenverarbeitung und Dienstleistung für den steuerberatenden Beruf'),
(88662, 74111, 'no_lang_code', 'name', 'Freiberger Compound Materials (Germany)'),
(88663, 74112, 'no_lang_code', 'name', 'CosmoCode (Germany)'),
(88664, 74113, 'no_lang_code', 'name', 'FormFactor (Germany)'),
(88665, 74114, 'no_lang_code', 'name', 'GenISys (Germany)'),
(88666, 74115, 'no_lang_code', 'name', 'Grintech (Germany)'),
(88667, 74116, 'no_lang_code', 'name', 'EdgeWave (Germany)'),
(88668, 74117, 'no_lang_code', 'name', 'Holoeye Photonics (Germany)'),
(88669, 74118, 'no_lang_code', 'name', 'Holota Optics (Germany)'),
(88670, 74119, 'no_lang_code', 'name', 'Industrial & Marine Service (Germany)'),
(88671, 74120, 'no_lang_code', 'name', 'Extend3D (Germany)'),
(88672, 74121, 'no_lang_code', 'name', 'EQUIcon (Germany)'),
(88673, 74122, 'no_lang_code', 'name', 'Active Fiber Systems (Germany)'),
(88674, 74123, 'en', 'name', 'Hearing4all'),
(88675, 74124, 'no_lang_code', 'name', 'Crystal Consulting (Germany)'),
(88676, 74125, 'no_lang_code', 'name', 'Colour Control Farbmesstechnik (Germany)'),
(88677, 74126, 'no_lang_code', 'name', 'Armscor (South Africa)'),
(88678, 74127, 'no_lang_code', 'name', 'FLAVIA IT (Germany)'),
(88679, 74128, 'no_lang_code', 'name', 'Ingeneric (Germany)'),
(88680, 74129, 'no_lang_code', 'name', 'Insiders Technologies (Germany)'),
(88681, 74130, 'no_lang_code', 'name', 'Knowledge Raven Management (Germany)'),
(88682, 74131, 'de', 'name', 'Ev. Diakonissenkrankenhaus Leipzig'),
(88683, 74132, 'no_lang_code', 'name', 'Muehlhan (Germany)'),
(88684, 74133, 'no_lang_code', 'name', 'Laserline (Germany)'),
(88685, 74134, 'no_lang_code', 'name', 'Cesic (Germany)'),
(88686, 74135, 'no_lang_code', 'name', 'Intego (Germany)'),
(88687, 74136, 'en', 'name', 'International Fertilizer Development Center'),
(88688, 74137, 'no_lang_code', 'name', 'Mattson Technology (Germany)'),
(88689, 74138, 'no_lang_code', 'name', 'International Research Associates (United States)'),
(88690, 74139, 'no_lang_code', 'name', 'IS-Wireless (Poland)'),
(88691, 74140, 'no_lang_code', 'name', 'Medipan (Germany)'),
(88692, 74141, 'no_lang_code', 'name', 'Janssen (United Kingdom)'),
(88693, 74142, 'no_lang_code', 'name', 'MeVis BreastCare (Germany)'),
(88694, 74143, 'no_lang_code', 'name', 'MeVis Medical Solutions (Germany)'),
(88695, 74144, 'no_lang_code', 'name', 'Piezosystem Jena (Germany)'),
(88696, 74145, 'no_lang_code', 'name', 'Mycronic (Sweden)'),
(88697, 74146, 'no_lang_code', 'name', 'PVA TePla (Germany)'),
(88698, 74147, 'no_lang_code', 'name', 'Optics Balzers (Germany)'),
(88699, 74148, 'en', 'name', 'Institute of Electronics, Information and Communication Engineers'),
(88700, 74148, 'ja', 'name', 'é›»å­ęƒ…å ±é€šäæ”å­¦ä¼š'),
(88701, 74149, 'en', 'name', 'The Physical Society of Japan'),
(88702, 74149, 'ja', 'name', 'ę—„ęœ¬ē‰©ē†å­¦ä¼š'),
(88703, 74150, 'no_lang_code', 'name', 'The Scatter Works (United States)'),
(88704, 74151, 'no_lang_code', 'name', 'SpaceTech (Germany)'),
(88705, 74152, 'no_lang_code', 'name', 'SURAGUS (Germany)'),
(88706, 74153, 'no_lang_code', 'name', 'SUSS MicroTec (Switzerland)'),
(88707, 74154, 'no_lang_code', 'name', 'SUSS MicroTec (Germany)'),
(88708, 74155, 'no_lang_code', 'name', 'Synopsys (Belgium)'),
(88709, 74156, 'no_lang_code', 'name', 'Vemac (Germany)'),
(88710, 74157, 'no_lang_code', 'name', 'Vistec Electron Beam (Germany)'),
(88711, 74158, 'no_lang_code', 'name', 'Ushio (Germany)'),
(88712, 74159, 'no_lang_code', 'name', 'Hesse (Germany)'),
(88713, 74160, 'no_lang_code', 'name', 'ASELTA Nanographics (France)'),
(88714, 74161, 'no_lang_code', 'name', 'Becker Photonik (Germany)'),
(88715, 74162, 'no_lang_code', 'name', 'Astro- und Feinwerktechnik Adlershof (Germany)'),
(88716, 74163, 'no_lang_code', 'name', 'ASYS Group (Germany)'),
(88717, 74163, 'de', 'name', 'Asys Automatisierungssysteme'),
(88718, 74164, 'en', 'name', 'Al-Saeeda University'),
(88719, 74164, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³Ų¹ŁŠŲÆŲ©'),
(88720, 74165, 'en', 'name', 'African Refuge'),
(88721, 74166, 'en', 'name', 'Parker Conservation'),
(88722, 74167, 'en', 'name', 'scidecode science consulting & research'),
(88723, 74168, 'en', 'name', 'NIST Center for Neutron Research'),
(88724, 74169, 'en', 'name', 'Material Measurement Laboratory'),
(88725, 74170, 'en', 'name', 'Physical Measurement Laboratory'),
(88726, 74171, 'en', 'name', 'Center for Nanoscale Science and Technology'),
(88727, 74172, 'en', 'name', 'Communications Technology Laboratory'),
(88728, 74173, 'en', 'name', 'Information Technology Laboratory'),
(88729, 74174, 'no_lang_code', 'name', 'Dragonfly Data Science (New Zealand)'),
(88730, 74175, 'en', 'name', 'Center for Dynamic Research on High Latitude Marine Ecosystems'),
(88731, 74175, 'es', 'name', 'Centro de Investigación DinÔmica de Ecosistemas Marinos de Altas Latitudes'),
(88732, 74176, 'en', 'name', 'Chisholm Institute'),
(88733, 74177, 'en', 'name', 'Australis Environmental Research and Monitoring Institute'),
(88734, 74177, 'pt', 'name', 'Instituto Australis'),
(88735, 74178, 'en', 'name', 'Arctic Data Center'),
(88736, 74179, 'en', 'name', 'National Electronic Information Consortium'),
(88737, 74179, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾-информационный ŠŗŠ¾Š½ŃŠ¾Ń€Ń†ŠøŃƒŠ¼'),
(88738, 74180, 'en', 'name', 'Environs Kimberley'),
(88739, 74181, 'no_lang_code', 'name', 'AbMax AntibodyChina (China)'),
(88740, 74181, 'zh', 'name', 'åŒ—äŗ¬å¤©ęˆę–°č„‰ē”Ÿē‰©ęŠ€ęœÆęœ‰é™å…¬åø'),
(88741, 74182, 'es', 'name', 'Academia Nacional de Medicina Venezuela'),
(88742, 74183, 'no_lang_code', 'name', 'Biomed Protection (United States)'),
(88743, 74184, 'en', 'name', 'Yanan University Affiliated Hospital'),
(88744, 74184, 'zh', 'name', '延安大学附属医院'),
(88745, 74185, 'en', 'name', 'Chongqing Public Health Medical Center'),
(88746, 74185, 'zh', 'name', 'é‡åŗ†åø‚å…¬å…±å«ē”ŸåŒ»ē–—ę•‘ę²»äø­åæƒ'),
(88747, 74186, 'en', 'name', 'Cleveland Clinic London'),
(88748, 74187, 'pt', 'name', 'Clinica De Doencas Renais De Brasilia'),
(88749, 74188, 'no_lang_code', 'name', 'BioSolutions Halle (Germany)'),
(88750, 74189, 'en', 'name', 'Africa Early Childhood Network'),
(88751, 74190, 'no_lang_code', 'name', 'Torque (United States)'),
(88752, 74191, 'fr', 'name', 'Agence RƩgionale de SantƩ Nouvelle-Aquitaine'),
(88753, 74192, 'no_lang_code', 'name', 'Medlab Central (New Zealand)'),
(88754, 74193, 'no_lang_code', 'name', 'BlueDot (Canada)'),
(88755, 74194, 'en', 'name', 'Albuquerque Cat Clinic'),
(88756, 74195, 'en', 'name', 'Amersham Vale Practice'),
(88757, 74196, 'it', 'name', 'BresciaMEd'),
(88758, 74197, 'no_lang_code', 'name', 'Pathlab (New Zealand)'),
(88759, 74198, 'en', 'name', 'Saratoga Hospital'),
(88760, 74199, 'no_lang_code', 'name', 'Bronkhorst (Netherlands)'),
(88761, 74200, 'en', 'name', 'Coalition for Epidemic Preparedness Innovations'),
(88762, 74201, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c VinUni'),
(88763, 74201, 'no_lang_code', 'name', 'VinUniversity'),
(88764, 74202, 'en', 'name', 'Animal Quarantine Office'),
(88765, 74202, 'ne', 'name', 'ą¤Ŗą¤¶ą„ ą¤•ą„ā€ą¤µą¤¾ą¤°ą„‡ą¤Øą„ą¤Ÿą¤¾ą¤ˆą¤Ø ą¤•ą¤¾ą¤°ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(88766, 74203, 'en', 'name', 'Ann Arbor VA Medical Center'),
(88767, 74204, 'no_lang_code', 'name', 'Convalife (China)'),
(88768, 74205, 'en', 'name', 'Cook County Department of Public Health'),
(88769, 74206, 'no_lang_code', 'name', 'APC Europe (Spain)'),
(88770, 74207, 'no_lang_code', 'name', 'Advanced Procurement Center (United States)'),
(88771, 74208, 'no_lang_code', 'name', 'Bioscience (China)'),
(88772, 74208, 'zh', 'name', 'åšå„„čµ›ę–Æ'),
(88773, 74209, 'en', 'name', 'The People''s Hospital of LinXia'),
(88774, 74209, 'zh', 'name', 'äø“å¤å·žäŗŗę°‘åŒ»é™¢'),
(88775, 74210, 'en', 'name', 'Arab Network for Early Childhood Development'),
(88776, 74210, 'ar', 'name', 'Ų§Ł„Ų“ŲØŁƒŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų·ŁŁˆŁ„Ų© Ų§Ł„Ł…ŲØŁƒŲ±Ų©'),
(88777, 74211, 'no_lang_code', 'name', 'Cancerrop (South Korea)'),
(88778, 74212, 'en', 'name', 'Asia-Pacific Regional Network for Early Childhood'),
(88779, 74213, 'en', 'name', 'Carbon Valley Animal Hospital'),
(88780, 74214, 'en', 'name', 'Association of British Neurologists'),
(88781, 74215, 'en', 'name', 'Zhejiang Provincial Public Security Department'),
(88782, 74215, 'zh', 'name', 'ęµ™ę±Ÿēœå…¬å®‰åŽ…'),
(88783, 74216, 'no_lang_code', 'name', 'Atea Pharmaceuticals (United States)'),
(88784, 74217, 'en', 'name', 'Baokang Hospital Affiliated to Tianjin University of Traditional Chinese Medicine'),
(88785, 74217, 'zh', 'name', 'å¤©ę“„äø­åŒ»čÆå¤§å­¦é™„å±žäæåŗ·åŒ»é™¢'),
(88786, 74218, 'no_lang_code', 'name', 'CarGurus (United States)'),
(88787, 74219, 'en', 'name', 'Dazhou Central Hospital'),
(88788, 74219, 'zh', 'name', 'č¾¾å·žåø‚äø­åæƒåŒ»é™¢'),
(88789, 74220, 'no_lang_code', 'name', 'Deargen (South Korea)'),
(88790, 74221, 'en', 'name', 'Beijing Chaoyang Emergency Medical Center'),
(88791, 74221, 'zh', 'name', 'åŒ—äŗ¬ęœé˜³ę€„čÆŠęŠ¢ę•‘äø­åæƒ'),
(88792, 74222, 'en', 'name', 'Beijing Emergency Medical Center'),
(88793, 74222, 'zh', 'name', 'åŒ—äŗ¬ę€„ę•‘äø­åæƒ'),
(88794, 74223, 'es', 'name', 'Hospital Marina Baixa'),
(88795, 74224, 'no_lang_code', 'name', 'InferVision (China)'),
(88796, 74225, 'en', 'name', 'Caspr Biotech'),
(88797, 74226, 'de', 'name', 'Kreisklinik Trostberg'),
(88798, 74227, 'pt', 'name', 'Itaipu Binacional'),
(88799, 74228, 'de', 'name', 'Berufsverband der Deutschen Dermatologen'),
(88800, 74229, 'no_lang_code', 'name', 'Siuvo (China)'),
(88801, 74230, 'en', 'name', 'Biodiversity and Nature Conservation Association'),
(88802, 74231, 'en', 'name', 'Central Cotton Research Institute'),
(88803, 74232, 'en', 'name', 'Wuhan Red Cross Hospital'),
(88804, 74232, 'zh', 'name', 'ę­¦ę±‰åø‚ēŗ¢åå­—ä¼šåŒ»é™¢'),
(88805, 74233, 'no_lang_code', 'name', 'Fleetwood Specialty Pharmacy (United States)'),
(88806, 74234, 'en', 'name', 'Harrison International Peace Hospital'),
(88807, 74234, 'zh', 'name', 'č””ę°“åø‚äŗŗę°‘åŒ»é™¢'),
(88808, 74235, 'en', 'name', 'Foshan Second People''s Hospital'),
(88809, 74235, 'zh', 'name', 'ä½›å±±åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(88810, 74236, 'no_lang_code', 'name', 'Jinyintan Hospital'),
(88811, 74236, 'zh', 'name', 'ę­¦ę±‰åø‚é‡‘é“¶ę½­åŒ»é™¢'),
(88812, 74237, 'en', 'name', 'Zoo New England'),
(88813, 74238, 'en', 'name', 'Department of Animal Husbandry'),
(88814, 74238, 'hi', 'name', 'ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ ą¤Ŗą¤¶ą„ą¤Ŗą¤¾ą¤²ą¤Ø'),
(88815, 74239, 'en', 'name', 'Hengyang Academy of Agricultural Sciences'),
(88816, 74239, 'zh', 'name', 'č””é˜³åø‚å†œäøšē§‘å­¦é™¢'),
(88817, 74240, 'no_lang_code', 'name', 'Weinan Central Hospital'),
(88818, 74240, 'zh', 'name', 'ęø­å—åø‚äø­åæƒåŒ»é™¢'),
(88819, 74241, 'en', 'name', 'National University of Medical Sciences'),
(88820, 74242, 'en', 'name', 'Centre for Interdisciplinary Research and Education'),
(88821, 74243, 'en', 'name', 'Centre for Multidisciplinary Research in Health Science'),
(88822, 74244, 'fr', 'name', 'Centre ParamƩdical Santy'),
(88823, 74245, 'no_lang_code', 'name', 'Ofogh Koorosh Chain Stores'),
(88824, 74245, 'fa', 'name', 'ŁŲ±ŁˆŲ“ŚÆŲ§Ł‡ Ł‡Ų§ŪŒ Ų²Ł†Ų¬ŪŒŲ±Ł‡ ای افق کوروؓ'),
(88825, 74246, 'en', 'name', 'Centro Pipistrelli Sardegna'),
(88826, 74247, 'en', 'name', 'Handan Polytechnic College'),
(88827, 74247, 'zh', 'name', 'é‚ÆéƒøčŒäøšęŠ€ęœÆå­¦é™¢'),
(88828, 74248, 'en', 'name', 'Chengdu Center for Disease Control and Prevention'),
(88829, 74248, 'zh', 'name', 'ęˆéƒ½åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(88830, 74249, 'en', 'name', 'Gold Coast Health'),
(88831, 74250, 'en', 'name', 'Chameli Devi Institute of Pharmacy'),
(88832, 74251, 'en', 'name', 'Chameli Devi Group of Institutions'),
(88833, 74252, 'no_lang_code', 'name', 'Changchun Discovery Sciences (China)'),
(88834, 74252, 'zh', 'name', 'é•æę˜„å‰å¤§å¤©å…ƒåŒ–å­¦ęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(88835, 74253, 'en', 'name', 'Charing Cross Cat Clinic'),
(88836, 74254, 'no_lang_code', 'name', 'Sichuan Mianyang 404 Hospital'),
(88837, 74254, 'zh', 'name', 'å››å·ē»µé˜³å››ć€‡å››åŒ»é™¢'),
(88838, 74255, 'en', 'name', 'Chiba-Nishi General Hospital'),
(88839, 74255, 'ja', 'name', 'åƒč‘‰č„æē·åˆē—…é™¢'),
(88840, 74256, 'en', 'name', 'Musoon Women''s Clinic'),
(88841, 74256, 'zh', 'name', 'ęœØē”Ÿå©¦ē”¢ē§‘čØŗę‰€'),
(88842, 74257, 'en', 'name', 'China Association of Acupuncture-Moxibustion'),
(88843, 74257, 'zh', 'name', 'äø­å›½é’ˆēøå­¦ä¼š'),
(88844, 74258, 'en', 'name', 'Hangzhou Children''s Hospital'),
(88845, 74258, 'zh', 'name', 'ę­å·žåø‚å„æē«„åŒ»é™¢'),
(88846, 74259, 'en', 'name', 'Qianjiang Central Hospital'),
(88847, 74259, 'zh', 'name', 'ę½œę±Ÿåø‚äø­åæƒåŒ»é™¢'),
(88848, 74260, 'en', 'name', 'Yancheng Central Blood Station');
INSERT INTO `ror_settings` VALUES
(88849, 74260, 'zh', 'name', 'ē›åŸŽåø‚äø­åæƒč”€ē«™'),
(88850, 74261, 'en', 'name', 'Yancheng Second People''s Hospital'),
(88851, 74261, 'zh', 'name', 'ē›åŸŽåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(88852, 74262, 'no_lang_code', 'name', 'Associated Fund Administrators (Botswana)'),
(88853, 74263, 'en', 'name', 'Xiang Yang No.1 People''s Hospital'),
(88854, 74263, 'zh', 'name', 'č„„é˜³åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(88855, 74264, 'en', 'name', 'The First People''s Hospital of Wenling'),
(88856, 74264, 'zh', 'name', 'ęø©å²­åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(88857, 74265, 'en', 'name', 'Mackay Junior College of Medicine, Nursing and Management'),
(88858, 74265, 'zh', 'name', 'é¦¬å•é†«č­·ē®”ē†å°ˆē§‘å­øę ”'),
(88859, 74266, 'en', 'name', 'The Fourth People''s Hospital of Ningxia Hui Autonomous Region'),
(88860, 74266, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗē¬¬å››äŗŗę°‘åŒ»é™¢'),
(88861, 74267, 'en', 'name', 'Wenzhou Central Hospital'),
(88862, 74267, 'zh', 'name', 'ęø©å·žåø‚äø­åæƒåŒ»é™¢'),
(88863, 74268, 'en', 'name', 'The First People''s Hospital of Xiaoshan District, Hangzhou'),
(88864, 74268, 'zh', 'name', 'ę­å·žåø‚č§å±±åŒŗē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(88865, 74269, 'en', 'name', 'Badr University in Cairo'),
(88866, 74269, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŲÆŲ± بالقاهرة'),
(88867, 74270, 'en', 'name', 'Jingzhou Maternal and Child Health Hospital'),
(88868, 74270, 'zh', 'name', 'č†å·žåø‚å¦‡å¹¼äæå„é™¢'),
(88869, 74271, 'it', 'name', 'ASST Fatebenefratelli Sacco'),
(88870, 74272, 'en', 'name', 'Kiang Wu Hospital'),
(88871, 74272, 'zh', 'name', 'é”ę¹–é†«é™¢'),
(88872, 74273, 'en', 'name', 'The Fourth People''s Hospital of Zibo City'),
(88873, 74273, 'zh', 'name', 'ę·„åšåø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(88874, 74274, 'en', 'name', 'The First People''s Hospital of Tianmen'),
(88875, 74274, 'zh', 'name', 'å¤©é—Øåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(88876, 74275, 'en', 'name', 'Weihai Chest Hospital'),
(88877, 74275, 'zh', 'name', 'åØęµ·åø‚čƒøē§‘åŒ»é™¢'),
(88878, 74276, 'en', 'name', 'Xiamen Chang Gung Hospital'),
(88879, 74276, 'zh', 'name', 'åŽ¦é—Øé•æåŗšåŒ»é™¢'),
(88880, 74277, 'en', 'name', 'The Eighth Hospital of Xi''an'),
(88881, 74277, 'zh', 'name', 'č„æå®‰åø‚ē¬¬å…«åŒ»é™¢'),
(88882, 74278, 'en', 'name', 'Wuhan Center for Disease Control and Prevention'),
(88883, 74278, 'zh', 'name', 'ę­¦ę±‰åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(88884, 74279, 'en', 'name', 'The Fifth People''s Hospital of Anyang'),
(88885, 74279, 'zh', 'name', 'å®‰é˜³åø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(88886, 74280, 'en', 'name', 'Shaheed Suhrawardy Medical College'),
(88887, 74280, 'bn', 'name', 'শহীদ ą¦øą§‹ą¦¹ą¦°ą¦¾ą¦“ą¦Æą¦¼ą¦¾ą¦°ą§ą¦¦ą§€ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(88888, 74281, 'en', 'name', 'Guigang Orthopedic Hospital of Integrated Traditional Chinese and Western Medicine'),
(88889, 74281, 'zh', 'name', 'č“µęøÆåø‚äø­č„æåŒ»ē»“åˆéŖØē§‘åŒ»é™¢'),
(88890, 74282, 'en', 'name', 'The First Hospital of Changsha'),
(88891, 74282, 'zh', 'name', 'é•æę²™åø‚ē¬¬äø€åŒ»é™¢'),
(88892, 74283, 'en', 'name', 'Jiangxi Chest Hospital'),
(88893, 74283, 'zh', 'name', 'ę±Ÿč„æēœčƒøē§‘åŒ»é™¢'),
(88894, 74284, 'en', 'name', 'Woodlands Health Campus'),
(88895, 74285, 'no_lang_code', 'name', 'Fortis C-DOC Hospital'),
(88896, 74285, 'mr', 'name', 'ą¤«ą„‹ą¤°ą„ą¤Ÿą¤æą¤ø C-ą¤”ą„‰ą¤• ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(88897, 74286, 'en', 'name', 'Affiliated Hospital of Shaanxi University of Chinese Medicine'),
(88898, 74286, 'zh', 'name', 'é™•č„æäø­åŒ»čÆå¤§å­¦é™„å±žåŒ»é™¢'),
(88899, 74287, 'en', 'name', 'Baylor Scott & White Medical Center - Temple'),
(88900, 74288, 'en', 'name', 'The Sixth People''s Hospital of Zhengzhou'),
(88901, 74288, 'zh', 'name', 'éƒ‘å·žåø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(88902, 74289, 'en', 'name', 'The People''s Hospital Tongling'),
(88903, 74289, 'zh', 'name', 'é“œé™µåø‚äŗŗę°‘åŒ»é™¢'),
(88904, 74290, 'es', 'name', 'Fundación Centro de Estudios Infectológicos'),
(88905, 74291, 'en', 'name', 'Xi''an Chest Hospital'),
(88906, 74291, 'zh', 'name', 'č„æå®‰åø‚čƒøē§‘åŒ»é™¢'),
(88907, 74292, 'no_lang_code', 'name', 'DNA Diagnostic (Denmark)'),
(88908, 74293, 'en', 'name', 'Sheikh Shakhbout Medical City'),
(88909, 74293, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų“ŁŠŲ® ؓخبوط Ų§Ł„Ų·ŲØŁŠŲ©'),
(88910, 74294, 'no_lang_code', 'name', 'DNARx (United States)'),
(88911, 74295, 'en', 'name', 'The Central Hospital of Xiao gan'),
(88912, 74295, 'zh', 'name', 'å­ę„Ÿåø‚äø­åæƒåŒ»é™¢'),
(88913, 74296, 'en', 'name', 'Yueyang Second People''s Hospital'),
(88914, 74296, 'zh', 'name', 'å²³é˜³åø‚äŗŒäŗŗę°‘åŒ»é™¢'),
(88915, 74297, 'en', 'name', 'Earl Haig Secondary School'),
(88916, 74298, 'en', 'name', 'Cancer Hospital of Huanxing Chaoyang District Beijing'),
(88917, 74298, 'zh', 'name', 'åŒ—äŗ¬åø‚ęœé˜³åŒŗę”“å…“č‚æē˜¤åŒ»é™¢'),
(88918, 74299, 'en', 'name', 'Nanobiosensorics Laboratory'),
(88919, 74300, 'it', 'name', 'Ospedale Civile di Voghera'),
(88920, 74301, 'de', 'name', 'Deutsche Gesellschaft für Internistische Intensivmedizin und Notfallmedizin'),
(88921, 74301, 'en', 'name', 'German Society of Medical Intensive Care and Emergency Medicine'),
(88922, 74302, 'en', 'name', 'Diabetes in Asia Study Group'),
(88923, 74303, 'no_lang_code', 'name', 'Emweb (Belgium)'),
(88924, 74304, 'en', 'name', 'Diagnostic Microbiology Development Program'),
(88925, 74305, 'no_lang_code', 'name', 'Digital China Health (China)'),
(88926, 74305, 'zh', 'name', 'ē„žå·žåŒ»ē–—'),
(88927, 74306, 'no_lang_code', 'name', 'Genetic Signatures (Australia)'),
(88928, 74307, 'no_lang_code', 'name', 'Gentian Diagnostics (Sweden)'),
(88929, 74308, 'no_lang_code', 'name', 'Guangzhou Jingpai Technology (China)'),
(88930, 74308, 'zh', 'name', 'å¹æå·žę™Æę“¾ē§‘ęŠ€ęœ‰é™å…¬åø'),
(88931, 74309, 'en', 'name', 'Gorilla Doctors'),
(88932, 74310, 'en', 'name', 'Guangzhou Zoo'),
(88933, 74310, 'zh', 'name', 'å¹æå·žåŠØē‰©å›­'),
(88934, 74311, 'en', 'name', 'Gorilla Doctors'),
(88935, 74312, 'en', 'name', 'GD Hospital & Diabetes Institute'),
(88936, 74312, 'bn', 'name', 'জিঔি হসপিটাল ą¦ą¦Øą§ą¦” ą¦”ą¦¾ą¦Æą¦¼ą¦¾ą¦¬ą§‡ą¦Ÿą¦æą¦ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(88937, 74313, 'no_lang_code', 'name', 'Hachaklait (Israel)'),
(88938, 74313, 'he', 'name', '×”×—×§×œ××™×Ŗ'),
(88939, 74314, 'es', 'name', 'Mutualista Hospital EvangƩlico'),
(88940, 74315, 'es', 'name', 'Hospital Zonal General De Agudos Descentralizado "Evita Pueblo"'),
(88941, 74316, 'en', 'name', 'Hangzhou Women’s Hospital'),
(88942, 74316, 'zh', 'name', 'ę­å·žåø‚å¦‡ē§‘åŒ»é™¢'),
(88943, 74317, 'en', 'name', 'HCOV Global'),
(88944, 74318, 'en', 'name', 'Hubei 672 Orthopedics Hospital of Traditional Chinese Medicine and Western Medicine'),
(88945, 74318, 'zh', 'name', 'ę¹–åŒ—å…­äøƒäŗŒäø­č„æåŒ»ē»“åˆéŖØē§‘åŒ»é™¢'),
(88946, 74319, 'no_lang_code', 'name', 'Finch Therapeutics (United States)'),
(88947, 74320, 'en', 'name', 'Gibraltar Health Authority'),
(88948, 74321, 'en', 'name', 'Health Commission of Anhui Province'),
(88949, 74321, 'zh', 'name', 'å®‰å¾½ēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(88950, 74322, 'en', 'name', 'Zhejiang Medical and Health Group Hangzhou Hospital'),
(88951, 74322, 'zh', 'name', 'ęµ™ę±ŸēœåŒ»ē–—å„åŗ·é›†å›¢ę­å·žåŒ»é™¢'),
(88952, 74323, 'en', 'name', 'Gansu Provincial Center for Disease Control and Prevention'),
(88953, 74323, 'zh', 'name', 'ē”˜č‚ƒēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(88954, 74324, 'no_lang_code', 'name', 'Sansure Biotech (China)'),
(88955, 74324, 'zh', 'name', 'åœ£ę¹˜ē”Ÿē‰©'),
(88956, 74325, 'en', 'name', 'Huzhou Women and Children''s Hospital'),
(88957, 74325, 'zh', 'name', 'ę¹–å·žåø‚å¦‡å¹¼äæå„é™¢'),
(88958, 74326, 'en', 'name', 'Health Protection Research Unit in Emerging and Zoonotic Infections at University of Liverpool'),
(88959, 74327, 'no_lang_code', 'name', 'Eiken Chemical (Japan)'),
(88960, 74327, 'ja', 'name', 'ę „ē ”åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(88961, 74328, 'en', 'name', 'Wuxi Ninth People''s Hospital'),
(88962, 74328, 'zh', 'name', 'ę— é””åø‚ē¬¬ä¹äŗŗę°‘åŒ»é™¢'),
(88963, 74329, 'no_lang_code', 'name', 'HKScan (Finland)'),
(88964, 74330, 'en', 'name', 'Hong Kong College of Health Service Executives'),
(88965, 74330, 'zh', 'name', 'é¦™ęøÆå«ē”Ÿå­¦é™¢č”Œę”æäŗŗå‘˜'),
(88966, 74331, 'en', 'name', 'Hong Kong Tuberculosis, Chest and Heart Diseases Association'),
(88967, 74331, 'zh', 'name', 'é¦™ęøÆé˜²ē™†åæƒč‡ŸåŠčƒøē—…å”ęœƒ'),
(88968, 74332, 'no', 'name', 'Horten Kommune'),
(88969, 74333, 'es', 'name', 'Hospital de Emergencias Jose Casimiro Ulloa'),
(88970, 74334, 'pt', 'name', 'Instituto Laura Fressatto'),
(88971, 74335, 'en', 'name', 'Infection Control Africa Network'),
(88972, 74336, 'no_lang_code', 'name', 'Intergen (Turkey)'),
(88973, 74336, 'tr', 'name', 'İntergen Genetik Hastalıklar Tanı Merkezi'),
(88974, 74337, 'fr', 'name', 'Conseil International des InfirmiĆØres'),
(88975, 74337, 'en', 'name', 'International Council of Nurses'),
(88976, 74338, 'en', 'name', 'International Engineering and Technology Institute'),
(88977, 74339, 'en', 'name', 'National Centre for Infectious Diseases'),
(88978, 74340, 'en', 'name', 'International Step by Step Association'),
(88979, 74341, 'no_lang_code', 'name', 'Guhua Hospital'),
(88980, 74341, 'zh', 'name', 'äøŠęµ·åø‚å„‰č“¤åŒŗå¤åŽåŒ»é™¢'),
(88981, 74342, 'es', 'name', 'Hospital Universitario de Sincelejo'),
(88982, 74343, 'en', 'name', 'Hemophilia Center of Iran'),
(88983, 74343, 'fa', 'name', 'Ś©Ų§Ł†ŁˆŁ† Ł‡Ł…ŁˆŁŪŒŁ„ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(88984, 74344, 'it', 'name', 'Istituto Zooprofilattico Sperimentale della Puglia e della Basilicata'),
(88985, 74345, 'en', 'name', 'Jewish Voice for Peace'),
(88986, 74346, 'no_lang_code', 'name', 'Inprother (Denmark)'),
(88987, 74347, 'en', 'name', 'Florida Center for Dermatology'),
(88988, 74348, 'no_lang_code', 'name', 'Medomics (China)'),
(88989, 74348, 'zh', 'name', 'ę±Ÿč‹ē¾Žå…‹åŒ»å­¦ęŠ€ęœÆęœ‰é™å…¬åø'),
(88990, 74349, 'no_lang_code', 'name', 'Flow Pharma (United States)'),
(88991, 74350, 'en', 'name', 'Institute for Disease Modeling'),
(88992, 74351, 'en', 'name', 'Johannesburg Wildlife Vet'),
(88993, 74352, 'en', 'name', 'Lusaka Apex Medical University'),
(88994, 74353, 'da', 'name', 'LVK KvƦgdyrlƦgerne'),
(88995, 74354, 'no_lang_code', 'name', 'Macopharma (Germany)'),
(88996, 74355, 'es', 'name', 'Fundación IRAUy'),
(88997, 74356, 'no_lang_code', 'name', 'Zabal Menuiseries (France)'),
(88998, 74357, 'en', 'name', 'Medical Governance Research Institute'),
(88999, 74357, 'ja', 'name', 'åŒ»ē™‚ć‚¬ćƒćƒŠćƒ³ć‚¹ē ”ē©¶ę‰€'),
(89000, 74358, 'en', 'name', 'National Diabetes Obesity and Cholesterol Foundation'),
(89001, 74359, 'es', 'name', 'Menescalia Centro Veterinario'),
(89002, 74360, 'en', 'name', 'Saudi Center for Disease Prevention and Control'),
(89003, 74360, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŁˆŁ‚Ų§ŁŠŲ© من الأمراض ŁˆŁ…ŁƒŲ§ŁŲ­ŲŖŁ‡Ų§'),
(89004, 74361, 'no_lang_code', 'name', 'Minda Hospital'),
(89005, 74361, 'zh', 'name', 'ę¹–åŒ—ę°‘ę—å¤§å­¦é™„å±žę°‘å¤§åŒ»é™¢'),
(89006, 74362, 'en', 'name', 'National Institute of Animal Biotechnology'),
(89007, 74363, 'no_lang_code', 'name', 'Molecular Microbiology and Genomics Consultants (Germany)'),
(89008, 74364, 'no_lang_code', 'name', 'MSCI (China)'),
(89009, 74365, 'en', 'name', 'Miami Transplant Institute'),
(89010, 74366, 'en', 'name', 'National Public Health Laboratory'),
(89011, 74367, 'en', 'name', 'National Public Health Organization'),
(89012, 74367, 'el', 'name', 'Ī•ĪøĪ½Ī¹ĪŗĻŒĻ‚ ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ Ī”Ī·Ī¼ĻŒĻƒĪ¹Ī±Ļ‚ ΄γείας'),
(89013, 74368, 'en', 'name', 'WHO European Office for the Prevention and Control of NCD'),
(89014, 74369, 'en', 'name', 'Noah''s Path'),
(89015, 74370, 'en', 'name', 'North American Renderers Association'),
(89016, 74371, 'en', 'name', 'Nebraska Public Health Laboratory'),
(89017, 74372, 'no_lang_code', 'name', 'Northern Minerals (Australia)'),
(89018, 74373, 'no_lang_code', 'name', 'New Century Pharmaceuticals (United States)'),
(89019, 74374, 'en', 'name', 'Sepsis Trust NZ'),
(89020, 74375, 'fr', 'name', 'Le Laboratoire P4 Inserm Jean MƩrieux'),
(89021, 74376, 'en', 'name', 'Nigeria Centre for Disease Control'),
(89022, 74377, 'no_lang_code', 'name', 'Nkmax (South Korea)'),
(89023, 74378, 'no_lang_code', 'name', 'Peptide Institute (Japan)'),
(89024, 74378, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒšćƒ—ćƒćƒ‰ē ”ē©¶ę‰€'),
(89025, 74379, 'en', 'name', 'Pulmonary Hospital of Lanzhou'),
(89026, 74379, 'zh', 'name', 'å…°å·žåø‚č‚ŗē§‘åŒ»é™¢'),
(89027, 74380, 'no_lang_code', 'name', 'Pipestone (United States)'),
(89028, 74381, 'no_lang_code', 'name', 'Pliant (United States)'),
(89029, 74382, 'en', 'name', 'Livestock Breeding and Veterinary Department'),
(89030, 74382, 'my', 'name', 'မွေးမြူရေးနှင့် į€€į€Æį€žį€›į€±į€ø į€¦į€øį€…į€®į€øį€Œį€¬į€”'),
(89031, 74383, 'en', 'name', 'Loudi Central Hospital'),
(89032, 74383, 'zh', 'name', 'åØ„åŗ•åø‚äø­åæƒåŒ»é™¢'),
(89033, 74384, 'no_lang_code', 'name', 'Regend Therapeutics (China)'),
(89034, 74385, 'en', 'name', 'The Salvation Army China'),
(89035, 74385, 'zh', 'name', '救世军'),
(89036, 74386, 'no_lang_code', 'name', 'PurpleSun (United States)'),
(89037, 74387, 'nl', 'name', 'Huisarts en Wetenschap'),
(89038, 74388, 'en', 'name', 'Gallup Korea'),
(89039, 74389, 'en', 'name', 'Qingdao Women and Children''s Hospital'),
(89040, 74389, 'zh', 'name', 'é’å²›åø‚å¦‡å„³å„æē«„åŒ»é™¢'),
(89041, 74390, 'no_lang_code', 'name', 'Resis (Italy)'),
(89042, 74391, 'en', 'name', 'Royal Museums Greenwich'),
(89043, 74392, 'no_lang_code', 'name', 'ATS Sardegna (Italy)'),
(89044, 74393, 'en', 'name', 'Royal Observatory in Greenwich'),
(89045, 74394, 'en', 'name', 'Royal Commission Medical Center'),
(89046, 74395, 'en', 'name', 'University College of Azarabadegan'),
(89047, 74395, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ آذرآبادگان'),
(89048, 74396, 'en', 'name', 'Rwanda Development Board'),
(89049, 74397, 'en', 'name', 'Latin American Society for Travel Medicine'),
(89050, 74397, 'es', 'name', 'Sociedad Latinoamericana de Medicina del Viajero'),
(89051, 74398, 'en', 'name', 'Rwanda Wildlife Conservation Association'),
(89052, 74399, 'no_lang_code', 'name', 'Sabin Medicina Diagnostica (Brazil)'),
(89053, 74400, 'fr', 'name', 'Service Volontaire International'),
(89054, 74401, 'en', 'name', 'Samson Institute For Ageing Research'),
(89055, 74402, 'no_lang_code', 'name', 'Paragon Genomics (United States)'),
(89056, 74403, 'es', 'name', 'ClĆ­nica Santa MarĆ­a'),
(89057, 74404, 'en', 'name', 'Başkent University Alanya Hospital'),
(89058, 74404, 'tr', 'name', 'Başkent Üniversitesi Alanya Hastanesi'),
(89059, 74405, 'en', 'name', 'The Carpentries'),
(89060, 74406, 'en', 'name', 'PEG-Bio Biopharm'),
(89061, 74406, 'zh', 'name', 'é‡åŗ†ę“¾é‡‘ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(89062, 74407, 'es', 'name', 'Instituto Universitario de Ciencias MƩdicas y Humanƭsticas de Nayarit'),
(89063, 74408, 'ms', 'name', 'Hospital Besar Sengkang'),
(89064, 74408, 'en', 'name', 'Sengkang General Hospital'),
(89065, 74408, 'ta', 'name', 'ą®šąÆ†ą®™ąÆą®•ą®¾ą®™ąÆ பொது ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(89066, 74408, 'zh', 'name', 'ē››ęøÆē»¼åˆåŒ»é™¢'),
(89067, 74409, 'fr', 'name', 'Centre Hospitalier Avranches Granville'),
(89068, 74410, 'en', 'name', 'Bozhou People''s Hospital'),
(89069, 74410, 'zh', 'name', 'äŗ³å·žåø‚äŗŗę°‘åŒ»é™¢'),
(89070, 74411, 'en', 'name', 'Velleja Research'),
(89071, 74412, 'en', 'name', 'Africa Centres for Disease Control and Prevention'),
(89072, 74413, 'fr', 'name', 'HƓpital PrivƩ Guillaume de Varye'),
(89073, 74414, 'en', 'name', 'Scientific Research Group in Egypt'),
(89074, 74415, 'en', 'name', 'Eastmed'),
(89075, 74416, 'en', 'name', 'Sci Paper Edit'),
(89076, 74417, 'de', 'name', 'Chemisches und VeterinƤruntersuchungsamt Ostwestfalen-Lippe'),
(89077, 74418, 'no_lang_code', 'name', 'New Hope Liuhe (China)'),
(89078, 74419, 'en', 'name', 'Anthrologica'),
(89079, 74420, 'en', 'name', 'Fuzhou Maternity and Child Health Care Hospital'),
(89080, 74420, 'zh', 'name', 'ē¦å·žåø‚å¦‡å¹¼äæå„é™¢'),
(89081, 74421, 'en', 'name', 'Spinney Vets'),
(89082, 74422, 'no_lang_code', 'name', 'Ganesamoni Hospital'),
(89083, 74423, 'en', 'name', 'ALAI Czech Republic'),
(89084, 74423, 'cs', 'name', 'ALAI ČeskÔ republika'),
(89085, 74424, 'fr', 'name', 'Commission communautaire commune'),
(89086, 74424, 'en', 'name', 'Common Community Commission'),
(89087, 74424, 'nl', 'name', 'Gemeenschappelijke Gemeenschapscommissie'),
(89088, 74425, 'en', 'name', 'Kunming Third People''s Hospital'),
(89089, 74425, 'zh', 'name', 'ę˜†ę˜Žåø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢ęˆ'),
(89090, 74426, 'en', 'name', 'Shanghai Medical Information Center'),
(89091, 74426, 'zh', 'name', 'äøŠęµ·åø‚åŒ»ē–—äæé™©äæ”ęÆäø­åæƒ'),
(89092, 74427, 'no_lang_code', 'name', 'Qiagen (Spain)'),
(89093, 74428, 'no_lang_code', 'name', 'Guangxi Longtan Hospital'),
(89094, 74428, 'zh', 'name', 'ęŸ³å·žåø‚é¾™ę½­åŒ»é™¢'),
(89095, 74429, 'no_lang_code', 'name', 'Yebio Bioengineering (China)'),
(89096, 74430, 'en', 'name', 'Zhengzhou Jinshui District General Hospital'),
(89097, 74430, 'zh', 'name', 'éƒ‘å·žåø‚é‡‘ę°“åŒŗę€»åŒ»é™¢'),
(89098, 74431, 'fr', 'name', 'Groupe FranƧais de Transplantation FƩcale'),
(89099, 74432, 'en', 'name', 'Sudan Childhood Diabetes Association'),
(89100, 74433, 'en', 'name', 'Shandong Maternal and Child Health Hospital'),
(89101, 74433, 'zh', 'name', 'å±±äøœēœå¦‡å¹¼äæå„é™¢'),
(89102, 74434, 'en', 'name', 'People''s Hospital of Shiyan'),
(89103, 74434, 'zh', 'name', 'åå °åø‚äŗŗę°‘åŒ»é™¢'),
(89104, 74435, 'en', 'name', 'Second People Hospital of Hunan'),
(89105, 74435, 'zh', 'name', 'ę¹–å—ēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(89106, 74436, 'en', 'name', 'LEAP Science and Maths Schools'),
(89107, 74437, 'en', 'name', 'Empower Tanzania'),
(89108, 74438, 'en', 'name', 'Wuhu No 1 People''s Hospital'),
(89109, 74438, 'zh', 'name', 'čŠœę¹–åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(89110, 74439, 'en', 'name', 'Boxing People''s Hospital'),
(89111, 74439, 'zh', 'name', 'åšå…“åŽæäŗŗę°‘åŒ»é™¢'),
(89112, 74440, 'en', 'name', 'Tata Institute for Genetics and Society'),
(89113, 74441, 'fr', 'name', 'LabƩo'),
(89114, 74442, 'fr', 'name', 'CNR de la RƩsistance aux Antibiotiques'),
(89115, 74443, 'no_lang_code', 'name', 'Sanya Central Hospital'),
(89116, 74443, 'zh', 'name', 'äø‰äŗšäø­åæƒåŒ»é™¢'),
(89117, 74444, 'no_lang_code', 'name', 'Sino Biological (China)'),
(89118, 74445, 'vi', 'name', 'Sį»ž Y Tįŗ¾ THANH HƓA'),
(89119, 74445, 'en', 'name', 'Thanh Hoa Department of Health'),
(89120, 74446, 'no_lang_code', 'name', 'Silexon AI Technology (China)'),
(89121, 74447, 'en', 'name', 'Shenzhen University Health Science Center'),
(89122, 74448, 'no_lang_code', 'name', 'Singleron Biotechnologies (china)'),
(89123, 74449, 'no_lang_code', 'name', 'Shanghai Senyi Medical Technology (China)'),
(89124, 74450, 'no_lang_code', 'name', 'Shenzhen Bioeasy Biotechnology (China)'),
(89125, 74451, 'en', 'name', 'Beijing Shijingshan Hospital'),
(89126, 74451, 'zh', 'name', 'åŒ—äŗ¬åø‚ēŸ³ę™Æå±±åŒ»é™¢'),
(89127, 74452, 'en', 'name', 'Jinan Infectious Disease Hospital'),
(89128, 74452, 'zh', 'name', 'ęµŽå—åø‚ä¼ ęŸ“ē—…åŒ»é™¢'),
(89129, 74453, 'en', 'name', 'The Sixth People''s Hospital of Shenyang'),
(89130, 74453, 'zh', 'name', 'ę²ˆé˜³åø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(89131, 74454, 'no_lang_code', 'name', 'Solutia (Czechia)'),
(89132, 74455, 'en', 'name', 'South African Medical Association'),
(89133, 74456, 'no_lang_code', 'name', 'Southern Community Laboratories (New Zealand)'),
(89134, 74457, 'en', 'name', 'Urban Upbound'),
(89135, 74458, 'es', 'name', 'Clƭnica DƔvila'),
(89136, 74459, 'no_lang_code', 'name', 'Value Farm Consulting (Japan)'),
(89137, 74459, 'ja', 'name', 'ćƒćƒŖćƒ„ćƒ¼ćƒ•ć‚”ćƒ¼ćƒ ćƒ»ć‚³ćƒ³ć‚µćƒ«ćƒ†ć‚£ćƒ³ć‚°'),
(89138, 74460, 'no_lang_code', 'name', 'Vantage Health Solutions (Myanmar)'),
(89139, 74461, 'de', 'name', 'WEK Tierarzt'),
(89140, 74462, 'en', 'name', 'Veterinary Serum and Vaccine Research Institute'),
(89141, 74462, 'ar', 'name', 'معهد بحوث الامصال ŁˆŲ§Ł„Ł„Ł‚Ų§Ų­Ų§ŲŖ Ų§Ł„ŲØŁŠŲ·Ų±ŁŠŲ©'),
(89142, 74463, 'en', 'name', 'First Consultants Medical Center'),
(89143, 74464, 'en', 'name', 'Vietnamese - German Center of Excellence in Medical Research'),
(89144, 74465, 'it', 'name', 'Ospedale D. Cotugno'),
(89145, 74466, 'no_lang_code', 'name', 'TIB Molbiol (Germany)'),
(89146, 74467, 'no_lang_code', 'name', 'WELLS BIO (United States)'),
(89147, 74468, 'en', 'name', 'Vinh Phuc Department of Health'),
(89148, 74469, 'no_lang_code', 'name', 'Viroclinics Biosciences (Netherlands)'),
(89149, 74470, 'en', 'name', 'Trailfinders Travel Clinic'),
(89150, 74471, 'en', 'name', 'Zambia National Public Health Institute'),
(89151, 74472, 'no_lang_code', 'name', 'Wen''s Food Group (China)'),
(89152, 74472, 'zh', 'name', 'ęø©ę°é£Ÿå“é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(89153, 74473, 'fr', 'name', 'Clinique VƩtƩrinaire Benjamin Franklin'),
(89154, 74474, 'no_lang_code', 'name', 'Winning Health Technology Group (China)'),
(89155, 74475, 'en', 'name', 'Women''s Brain Project'),
(89156, 74476, 'en', 'name', 'The Japanese Society of Gastroenterological Surgery'),
(89157, 74476, 'ja', 'name', 'ę—„ęœ¬ę¶ˆåŒ–å™Øå¤–ē§‘å­¦ä¼š'),
(89158, 74477, 'no_lang_code', 'name', 'Xenstats (Poland)'),
(89159, 74478, 'en', 'name', 'Xianning Central Hospital'),
(89160, 74478, 'zh', 'name', 'å’øå®åø‚äø­åæƒåŒ»é™¢'),
(89161, 74479, 'en', 'name', 'World Health Organization - Afghanistan'),
(89162, 74480, 'en', 'name', 'World Health Organization - Jordan'),
(89163, 74481, 'en', 'name', 'World Health Organization - Lebanon'),
(89164, 74482, 'en', 'name', 'World Health Organization - Morocco'),
(89165, 74483, 'en', 'name', 'Museum of Old and New Art'),
(89166, 74484, 'en', 'name', 'World Marrow Donor Association'),
(89167, 74485, 'en', 'name', 'World Organisation of Family Doctors'),
(89168, 74486, 'en', 'name', 'University of Tripoli Al-ahlia'),
(89169, 74486, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طرابلس Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(89170, 74487, 'en', 'name', 'Snohomish Health District'),
(89171, 74488, 'en', 'name', 'World Health Organization - Uganda'),
(89172, 74489, 'no_lang_code', 'name', 'Wuhan Amysen Life Technology (China)'),
(89173, 74490, 'en', 'name', 'Sullivan Nicolaides Pathology'),
(89174, 74491, 'en', 'name', 'Yamagata Prefectural Institute of Public Health'),
(89175, 74491, 'ja', 'name', 'å±±å½¢ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(89176, 74492, 'en', 'name', 'Yunnan Provincial Infectious Disease Hospital'),
(89177, 74492, 'zh', 'name', 'äŗ‘å—ēœä¼ ęŸ“ē—…äø“ē§‘åŒ»é™¢'),
(89178, 74493, 'en', 'name', 'Qinghai No.3 People''s Hospital'),
(89179, 74493, 'zh', 'name', 'é’ęµ·ēœē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(89180, 74494, 'en', 'name', 'Baoding People''s Hospital'),
(89181, 74494, 'zh', 'name', 'äæå®šåø‚äŗŗę°‘åŒ»é™¢'),
(89182, 74495, 'en', 'name', 'Dawu County People''s Hospital'),
(89183, 74495, 'zh', 'name', 'å¤§ę‚ŸåŽæäŗŗę°‘åŒ»é™¢'),
(89184, 74496, 'en', 'name', 'Wuhan Pulmonary Hospital'),
(89185, 74496, 'zh', 'name', 'ę­¦ę±‰åø‚č‚ŗē§‘åŒ»é™¢'),
(89186, 74497, 'de', 'name', 'LKH Hochsteiermark'),
(89187, 74498, 'no_lang_code', 'name', 'Wuhan Hankou Hospital'),
(89188, 74498, 'zh', 'name', 'ę­¦ę±‰åø‚ę±‰å£åŒ»é™¢'),
(89189, 74499, 'no_lang_code', 'name', 'Nyangabgwe Referral Hospital'),
(89190, 74500, 'en', 'name', 'Sukraraj Tropical & Infectious Disease Hospital'),
(89191, 74501, 'en', 'name', 'Wuhan No. 7 Hospital'),
(89192, 74501, 'zh', 'name', 'ę­¦ę±‰åø‚ē¬¬äøƒåŒ»é™¢'),
(89193, 74502, 'en', 'name', 'Xiaogan First People''s Hospital'),
(89194, 74502, 'zh', 'name', 'å­ę„Ÿåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(89195, 74503, 'en', 'name', 'Xiangshan County First People''s Hospital'),
(89196, 74503, 'zh', 'name', 'č±”å±±åŽæē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(89197, 74504, 'en', 'name', 'Hefei Infectious Disease Hospital'),
(89198, 74504, 'zh', 'name', 'åˆč‚„åø‚ä¼ ęŸ“ē—…åŒ»é™¢'),
(89199, 74505, 'en', 'name', 'Pingliang People''s Hospital'),
(89200, 74505, 'zh', 'name', 'å¹³å‡‰åø‚äŗŗę°‘åŒ»é™¢'),
(89201, 74506, 'en', 'name', 'Xiamen Blood Center'),
(89202, 74506, 'zh', 'name', 'åŽ¦é—Øåø‚äø­åæƒč”€ē«™'),
(89203, 74507, 'no_lang_code', 'name', 'Huanggang Central Hospital'),
(89204, 74508, 'en', 'name', 'Yichang Central People''s Hospital'),
(89205, 74508, 'zh', 'name', 'å®œę˜Œåø‚äø­åæƒäŗŗę°‘åŒ»é™¢'),
(89206, 74509, 'en', 'name', 'Qingdao Eighth People''s Hospital'),
(89207, 74509, 'zh', 'name', 'é’å²›åø‚ē¬¬å…«äŗŗę°‘åŒ»é™¢'),
(89208, 74510, 'no_lang_code', 'name', 'Wuhan Youfu Hospital'),
(89209, 74510, 'zh', 'name', 'ę­¦ę±‰åø‚ä¼˜ęŠšåŒ»é™¢'),
(89210, 74511, 'en', 'name', 'Anyang Hospital of Traditional Chinese Medicine'),
(89211, 74511, 'zh', 'name', 'å®‰é˜³åø‚äø­åŒ»é™¢'),
(89212, 74512, 'en', 'name', 'Fuyang Second People''s Hospital'),
(89213, 74512, 'zh', 'name', 'é˜œé˜³åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(89214, 74513, 'en', 'name', 'Southern Tohoku General Hospital'),
(89215, 74513, 'ja', 'name', 'ē·åˆå—ę±åŒ—ē—…é™¢'),
(89216, 74514, 'en', 'name', 'Isaac Newton Group'),
(89217, 74515, 'en', 'name', 'MRC London Institute of Medical Sciences'),
(89218, 74516, 'en', 'name', 'UK Astronomy Technology Centre'),
(89219, 74517, 'en', 'name', 'Academy of Emergency Medicine and Care'),
(89220, 74518, 'no_lang_code', 'name', 'Jiangsu T-mab BioPharma (China)'),
(89221, 74518, 'zh', 'name', 'ę±Ÿč‹ę³°åŗ·ē”Ÿē‰©åŒ»čÆęœ‰é™å…¬åøåˆ›'),
(89222, 74519, 'en', 'name', 'Beijing Chang''an Integrated Traditional Chinese and Western Medicine Hospital'),
(89223, 74519, 'zh', 'name', 'åŒ—äŗ¬é•æå®‰äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(89224, 74520, 'en', 'name', 'Qujiang People''s Hospital'),
(89225, 74520, 'zh', 'name', 'ę›²ę±ŸåŽæäŗŗę°‘åŒ»é™¢'),
(89226, 74521, 'es', 'name', 'Instituto Tecnológico de Pabellón de Arteaga'),
(89227, 74522, 'no_lang_code', 'name', 'The RebornCell (South Korea)'),
(89228, 74522, 'ko', 'name', 'ė”ė¦¬ė³øģ…€'),
(89229, 74523, 'no_lang_code', 'name', 'Caixin (China)'),
(89230, 74523, 'zh', 'name', '蓢新传媒'),
(89231, 74524, 'no_lang_code', 'name', 'Lundin Mining (Canada)'),
(89232, 74525, 'en', 'name', 'Catalytic Longevity'),
(89233, 74526, 'en', 'name', 'Central Hokkaido Animal Health Center'),
(89234, 74526, 'ja', 'name', 'ēœŒå¤®å®¶ē•œäæå„č”›ē”Ÿę‰€'),
(89235, 74527, 'pt', 'name', 'Unidade Hospitalar de BraganƧa'),
(89236, 74528, 'en', 'name', 'Tengzhou Central People''s Hospital'),
(89237, 74528, 'zh', 'name', 'ę»•å·žåø‚äø­åæƒäŗŗę°‘åŒ»é™¢'),
(89238, 74529, 'en', 'name', 'Wuhan Wudong Hospital'),
(89239, 74529, 'zh', 'name', 'ę­¦ę±‰åø‚ę­¦äøœåŒ»é™¢'),
(89240, 74530, 'en', 'name', 'Fuyang Maternity and Child Health Care Hospital'),
(89241, 74530, 'zh', 'name', 'é˜œé˜³åø‚å¦‡å„³å„æē«„åŒ»é™¢'),
(89242, 74531, 'no_lang_code', 'name', 'Gavekal Intelligence Software (France)'),
(89243, 74532, 'en', 'name', 'Henan Bioengineering Technology Research Center'),
(89244, 74532, 'zh', 'name', 'ę²³å—ēœē”Ÿē‰©å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(89245, 74533, 'es', 'name', 'Dr. Lucio MelƩndez Hospital Zonal General de Agudos'),
(89246, 74534, 'es', 'name', 'Hospital PiƱero'),
(89247, 74535, 'no_lang_code', 'name', 'Genus (United States)'),
(89248, 74536, 'no_lang_code', 'name', 'CD-adapco (United States)'),
(89249, 74537, 'no_lang_code', 'name', 'Indi-Vet (Israel)'),
(89250, 74537, 'he', 'name', 'אינדי-וט'),
(89251, 74538, 'en', 'name', 'Public Health Clinical Center of Chengdu'),
(89252, 74538, 'zh', 'name', 'ęˆéƒ½åø‚å…¬å…±å«ē”Ÿäø“åŗŠåŒ»ē–—äø­åæƒ'),
(89253, 74539, 'es', 'name', 'Incubadora Venezolana de la Ciencia'),
(89254, 74540, 'no_lang_code', 'name', 'Ingine (United States)'),
(89255, 74541, 'en', 'name', 'Arctic Research Center of the Yamal-Nenets Autonomous District'),
(89256, 74541, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃ Арктики'),
(89257, 74542, 'en', 'name', 'Churapcha State Institute of Physical Education and Sports'),
(89258, 74542, 'ru', 'name', 'Š¤Š“Š‘ŠžŠ£ Š’Šž Š§ŃƒŃ€Š°ŠæŃ‡ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(89259, 74543, 'en', 'name', 'Guangdong Provincial Center for Disease Control and Prevention'),
(89260, 74543, 'zh', 'name', 'å¹æäøœēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89261, 74544, 'en', 'name', 'Koforidua Technical University'),
(89262, 74545, 'en', 'name', 'East-Siberian Institute of Economics and Management'),
(89263, 74545, 'ru', 'name', 'Восточно-сибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø менеГжмента'),
(89264, 74546, 'no_lang_code', 'name', 'P N Lee Statistics and Computing (United Kingdom)'),
(89265, 74547, 'en', 'name', 'Environmental Development Centre'),
(89266, 74548, 'no_lang_code', 'name', 'Patient Knowhow (United States)'),
(89267, 74549, 'en', 'name', 'Shenzhen Bao''an District People''s Hospital'),
(89268, 74549, 'zh', 'name', 'ę·±åœ³åø‚å®å®‰åŒŗäŗŗę°‘åŒ»é™¢'),
(89269, 74550, 'en', 'name', 'Higher School of Innovation Management'),
(89270, 74550, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń школа инновационного менеГжмента'),
(89271, 74551, 'en', 'name', 'International SƔmi Film Institute'),
(89272, 74552, 'en', 'name', 'Italian Society for International Organization'),
(89273, 74552, 'it', 'name', 'SocietĆ  Italiana Organizzazione Internazionale'),
(89274, 74553, 'da', 'name', 'Nordisk Fond for MiljĆø og Udvikling'),
(89275, 74554, 'no_lang_code', 'name', 'Perorsaanermik Ilinniarfik / College of Social Education'),
(89276, 74555, 'en', 'name', 'Polar Libraries Colloquy'),
(89277, 74556, 'en', 'name', 'SƔmi High School and Reindeer Husbandry School'),
(89278, 74557, 'no_lang_code', 'name', 'Syktyvkar Forest Institute'),
(89279, 74557, 'ru', 'name', 'Дыктывкарский Лесной Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(89280, 74558, 'en', 'name', 'The Yellow Tulip Project'),
(89281, 74559, 'it', 'name', 'Scuola Superiore Meridionale'),
(89282, 74560, 'en', 'name', 'London Borough of Hackney'),
(89283, 74561, 'en', 'name', 'Shenzhen Research Institute of China University of Geosciences'),
(89284, 74561, 'zh', 'name', 'äø­å›½åœ°č“Øå¤§å­¦ę·±åœ³ē ”ē©¶é™¢'),
(89285, 74562, 'no_lang_code', 'name', 'Centro Nacional de Endemias'),
(89286, 74563, 'en', 'name', 'University of Torbat Heydarieh'),
(89287, 74563, 'fa', 'name', 'دانؓگاه ŲŖŲ±ŲØŲŖ Ų­ŪŒŲÆŲ±ŪŒŁ‡'),
(89288, 74564, 'no_lang_code', 'name', 'Enveda Therapeutics (United States)'),
(89289, 74565, 'en', 'name', 'Mohamed bin Zayed University of Artificial Intelligence'),
(89290, 74565, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ بن زايد Ł„Ł„Ų°ŁƒŲ§Ų” Ų§Ł„Ų§ŲµŲ·Ł†Ų§Ų¹ŁŠ'),
(89291, 74566, 'no_lang_code', 'name', 'Nikken Sekkei (Japan)'),
(89292, 74566, 'ja', 'name', 'ę—„å»ŗčØ­čØˆ'),
(89293, 74567, 'no_lang_code', 'name', 'RS Global (Poland)'),
(89294, 74568, 'no_lang_code', 'name', 'DIGIBƍS (Spain)'),
(89295, 74569, 'no_lang_code', 'name', 'Taro Pharmaceuticals (Israel)'),
(89296, 74570, 'en', 'name', 'Eskişehir City Hospital'),
(89297, 74570, 'tr', 'name', 'Eskişehir Şehir Hastanesi'),
(89298, 74571, 'no_lang_code', 'name', 'Actigen (United Kingdom)'),
(89299, 74572, 'no_lang_code', 'name', 'Dantec Dynamics (Denmark)'),
(89300, 74573, 'no_lang_code', 'name', 'Swarco (Austria)'),
(89301, 74574, 'en', 'name', 'Hebei Provincial Center for Disease Control and Prevention'),
(89302, 74574, 'zh', 'name', 'ę²³åŒ—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89303, 74575, 'en', 'name', 'Beijing Fengtai Disease Prevention and Control Center'),
(89304, 74575, 'zh', 'name', 'åŒ—äŗ¬åø‚äø°å°åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89305, 74576, 'en', 'name', 'Ningbo Center for Disease Control and Prevention'),
(89306, 74576, 'zh', 'name', 'å®ę³¢åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89307, 74577, 'en', 'name', 'Guangzhou Center for Disease Control and Prevention'),
(89308, 74577, 'zh', 'name', 'å¹æå·žåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89309, 74578, 'en', 'name', 'Hubei Provincial Center for Disease Control and Prevention'),
(89310, 74578, 'zh', 'name', 'ę¹–åŒ—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89311, 74579, 'en', 'name', 'Hunan Provincial Center for Disease Control and Prevention'),
(89312, 74579, 'zh', 'name', 'ę¹–å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ)'),
(89313, 74580, 'en', 'name', 'Mianyang City Center for Disease Control and Prevention'),
(89314, 74580, 'zh', 'name', 'ē»µé˜³åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89315, 74581, 'en', 'name', 'Liu Zhou Center for Disease Prevention and Control'),
(89316, 74581, 'zh', 'name', 'ęŸ³å·žē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89317, 74582, 'en', 'name', 'Nanjing Municipal Center for Disease Control And Prevention'),
(89318, 74582, 'zh', 'name', 'å—äŗ¬åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89319, 74583, 'en', 'name', 'National Institute for Parasitic Diseases'),
(89320, 74584, 'en', 'name', 'National Center for AIDS/STD Control and Prevention,China CDC'),
(89321, 74584, 'zh', 'name', 'ę€§ē—…č‰¾ę»‹ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89322, 74585, 'en', 'name', 'National Center for Women and Children’s Health, China CDC'),
(89323, 74585, 'zh', 'name', 'äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒå¦‡å¹¼äæå„äø­åæƒ'),
(89324, 74586, 'en', 'name', 'National Institute for Communicable Disease Control and Prevention'),
(89325, 74586, 'zh', 'name', 'äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒä¼ ęŸ“ē—…é¢„é˜²ęŽ§åˆ¶ę‰€'),
(89326, 74587, 'en', 'name', 'National Institute for Radiological Protection'),
(89327, 74587, 'zh', 'name', 'äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒč¾å°„é˜²ęŠ¤äøŽę øå®‰å…ØåŒ»å­¦ę‰€'),
(89328, 74588, 'en', 'name', 'National Institute for Occupational Health and Poison Control'),
(89329, 74588, 'zh', 'name', 'äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒčŒäøšå«ē”ŸäøŽäø­ęÆ’ęŽ§åˆ¶ę‰€'),
(89330, 74589, 'en', 'name', 'Ningxia Center for Diseases Prevention and Control'),
(89331, 74589, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89332, 74590, 'no_lang_code', 'name', 'Tronox (United States)'),
(89333, 74591, 'en', 'name', 'Shenyang Center for Disease Control and Prevention'),
(89334, 74591, 'zh', 'name', 'ę²ˆé˜³åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89335, 74592, 'en', 'name', 'Jinshan Hospital of Fudan University'),
(89336, 74592, 'zh', 'name', 'å¤ę—¦å¤§å­¦é™„å±žé‡‘å±±åŒ»é™¢'),
(89337, 74593, 'en', 'name', 'Xinjiang Uygur Autonomous Region Disease Prevention and Control Center'),
(89338, 74593, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89339, 74594, 'en', 'name', 'Inner Mongolia Comprehensive Disease Prevention and Control Center'),
(89340, 74594, 'zh', 'name', 'å†…č’™å¤ē»¼åˆē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89341, 74595, 'no_lang_code', 'name', 'Lhoist (Belgium)'),
(89342, 74596, 'en', 'name', 'Xian Center for Disease Control and Prevention'),
(89343, 74596, 'zh', 'name', 'č„æå®‰åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89344, 74597, 'en', 'name', 'Yunnan Center for Disease Control And Prevention'),
(89345, 74597, 'zh', 'name', 'äŗ‘å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89346, 74598, 'en', 'name', 'Marine Ecology and Telemetry Research'),
(89347, 74599, 'en', 'name', 'Gifu Academy of Forest Science and Culture'),
(89348, 74599, 'ja', 'name', 'å²é˜œēœŒē«‹ę£®ęž—ę–‡åŒ–ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(89349, 74600, 'en', 'name', 'Health Education England'),
(89350, 74601, 'en', 'name', 'National Center for Chronic and Noncommunicable Disease Control and Prevention'),
(89351, 74601, 'zh', 'name', 'äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒę…¢ę€§éžä¼ ęŸ“ę€§ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(89352, 74602, 'es', 'name', 'Escuela Internacional de Negocios y Desarrollo Empresarial de Colombia'),
(89353, 74603, 'en', 'name', 'Shenzhen Chronic Disease Prevention Center'),
(89354, 74603, 'zh', 'name', 'ę·±åœ³åø‚ę…¢ę€§ē—…é˜²ę²»äø­åæƒ'),
(89355, 74604, 'es', 'name', 'Para La Tierra'),
(89356, 74605, 'en', 'name', 'Arthur Rylah Institute for Environmental Research'),
(89357, 74606, 'en', 'name', 'Guanacaste Conservation Area'),
(89358, 74606, 'es', 'name', 'Área de Conservación Guanacaste'),
(89359, 74607, 'en', 'name', 'North Dakota Game and Fish Department'),
(89360, 74608, 'en', 'name', 'Government College Kodanchery'),
(89361, 74608, 'ml', 'name', 'ą“—ą“µą“£ąµā€ą“®ąµ†ą“Øąµą“±ąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“•ąµ‹ą“Ÿą“žąµą“šąµ‡ą“°ą“æ'),
(89362, 74609, 'pt', 'name', 'Instituto de Conservação de Animais Silvestres'),
(89363, 74610, 'en', 'name', 'Staffin Dinosaur Museum'),
(89364, 74611, 'en', 'name', 'Usambara Field Studies Centre'),
(89365, 74612, 'en', 'name', 'Alberta Biodiversity Monitoring Institute'),
(89366, 74613, 'en', 'name', 'British Astronomical Association'),
(89367, 74614, 'en', 'name', 'Golden West College'),
(89368, 74615, 'no_lang_code', 'name', 'Plastal (Sweden)'),
(89369, 74616, 'no_lang_code', 'name', 'Royal HaskoningDHV (Netherlands)'),
(89370, 74617, 'no_lang_code', 'name', 'EVRAZ (United Kingdom)'),
(89371, 74618, 'en', 'name', 'Institute of Sustainable Development, Environmental & Scientific Research'),
(89372, 74619, 'pt', 'name', 'Associação Portuguesa para a Diversidade da Videira'),
(89373, 74619, 'en', 'name', 'Portuguese Association for the Conservation of Grapevine Diversity'),
(89374, 74620, 'no_lang_code', 'name', 'Sogrape Vinhos (Portugal)'),
(89375, 74621, 'en', 'name', 'Yandex School of Data Analysis'),
(89376, 74621, 'ru', 'name', 'Школа анализа Ганных'),
(89377, 74622, 'no_lang_code', 'name', 'Gestamp (Spain)'),
(89378, 74623, 'no_lang_code', 'name', 'Cemex (Mexico)'),
(89379, 74624, 'no_lang_code', 'name', 'Wienerberger (Austria)'),
(89380, 74625, 'no_lang_code', 'name', 'Atotech (Germany)'),
(89381, 74626, 'no_lang_code', 'name', 'KRONOS (United States)'),
(89382, 74627, 'no_lang_code', 'name', 'Besins Healthcare (Thailand)'),
(89383, 74628, 'no_lang_code', 'name', 'Fiat Chrysler Automobiles (Japan)'),
(89384, 74629, 'no_lang_code', 'name', 'Norgine (Netherlands)'),
(89385, 74630, 'no_lang_code', 'name', 'HOBAS (Germany)'),
(89386, 74631, 'no_lang_code', 'name', 'Saurer (Switzerland)'),
(89387, 74632, 'en', 'name', 'German Data Forum'),
(89388, 74632, 'de', 'name', 'Rat für Sozial- und Wirtschaftsdaten'),
(89389, 74633, 'en', 'name', 'American Institute for Behavioral Research and Technology'),
(89390, 74634, 'no_lang_code', 'name', 'General Electric (Netherlands)'),
(89391, 74635, 'en', 'name', 'James Lind Institute'),
(89392, 74636, 'en', 'name', 'Consortium of European Taxonomic Facilities'),
(89393, 74637, 'en', 'name', 'Center for Security and Emerging Technology'),
(89394, 74638, 'fr', 'name', 'Fondation Botnar'),
(89395, 74639, 'no_lang_code', 'name', 'Mountain Data Group (United States)'),
(89396, 74640, 'en', 'name', 'Hummingbird Monitoring Network'),
(89397, 74641, 'en', 'name', 'Wyoming Game and Fish Department'),
(89398, 74642, 'en', 'name', 'Alaska Wildlife Alliance'),
(89399, 74643, 'no', 'name', 'Direktoratet for StrƄlevern og Atomtryggleik'),
(89400, 74643, 'en', 'name', 'Norwegian Radiation and Nuclear Safety Authority'),
(89401, 74644, 'es', 'name', 'Tierra Verde Naturaleza y Cultura'),
(89402, 74644, 'en', 'name', 'Tierra Verde Nature and Culture'),
(89403, 74645, 'no_lang_code', 'name', 'Himalayan Biodiversity Network'),
(89404, 74646, 'en', 'name', 'East Foundation'),
(89405, 74647, 'fr', 'name', 'Nature Environnement 17'),
(89406, 74648, 'en', 'name', 'Indonesian Orthopaedic Association'),
(89407, 74648, 'id', 'name', 'Perkumpulan Ahli Bedah Orthopaedi Indonesia'),
(89408, 74649, 'no_lang_code', 'name', 'Biomark (United States)'),
(89409, 74650, 'en', 'name', 'Wildlife Vets International'),
(89410, 74651, 'fr', 'name', 'Institut Universitaire du Golfe de GuinƩe'),
(89411, 74651, 'en', 'name', 'University Institute of the Gulf of Guinea'),
(89412, 74652, 'es', 'name', 'Guyra Paraguay'),
(89413, 74653, 'en', 'name', 'Carnegie Mellon University Africa'),
(89414, 74654, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Statistique et d''Ɖconomie AppliquĆ©e'),
(89415, 74655, 'fr', 'name', 'Pigier CƓte d''Ivoire'),
(89416, 74656, 'no_lang_code', 'name', 'JSC R&D Center "Applied Logistics" (Russia)'),
(89417, 74656, 'ru', 'name', 'ŠŸŃ€ŠøŠŗŠ»Š°Š“Š½Š°Ń логистика'),
(89418, 74657, 'en', 'name', 'Mahatma Gandhi University'),
(89419, 74658, 'fr', 'name', 'Institut Universitaire d''Abidjan'),
(89420, 74659, 'fr', 'name', 'UniversitƩ Tertiaire et Technologique-Lokko'),
(89421, 74660, 'fr', 'name', 'UniversitƩ Pelefero Gon Coulibaly'),
(89422, 74661, 'en', 'name', 'Adwa-Pan African University'),
(89423, 74661, 'am', 'name', 'ዓድዋ į“įŠ• įŠ£įįˆŖįŠ« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(89424, 74662, 'en', 'name', 'Pan African Institute for Development'),
(89425, 74663, 'en', 'name', 'Barajas Clinic'),
(89426, 74663, 'es', 'name', 'ClĆ­nica Barajas'),
(89427, 74664, 'en', 'name', 'Institute of Agro-Products Processing Science and Technology'),
(89428, 74664, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å†œäŗ§å“åŠ å·„ę‰€'),
(89429, 74665, 'no_lang_code', 'name', 'University Medical Pharmaceuticals (United States)'),
(89430, 74666, 'no_lang_code', 'name', 'UNE Partnerships (Australia)'),
(89431, 74667, 'no_lang_code', 'name', 'Severn Glocon Group (United Kingdom)'),
(89432, 74668, 'no_lang_code', 'name', 'Universalbeton Heringen (Germany)'),
(89433, 74669, 'en', 'name', 'University Hospitals of Derby and Burton NHS Foundation Trust'),
(89434, 74670, 'no_lang_code', 'name', 'Universal-Kugellager-Fabrik (Germany)'),
(89435, 74671, 'no_lang_code', 'name', 'Universal Music Group (United States)'),
(89436, 74672, 'en', 'name', 'Babylon Health'),
(89437, 74673, 'es', 'name', 'Centro Tecnológico Avanzado de La Piedra'),
(89438, 74674, 'es', 'name', 'Fundacio Investigacio Hospital General Universitari De Valencia'),
(89439, 74675, 'en', 'name', 'Marine Technical College'),
(89440, 74675, 'ja', 'name', 'ęµ·ęŠ€å¤§å­¦ę ”'),
(89441, 74676, 'fr', 'name', 'Agitel-Formation'),
(89442, 74677, 'no_lang_code', 'name', 'Ghana Institute of Languages'),
(89443, 74678, 'en', 'name', 'Loyola University of Congo'),
(89444, 74678, 'fr', 'name', 'UniversitƩ Loyola du Congo'),
(89445, 74679, 'en', 'name', 'Poma International Business University'),
(89446, 74680, 'en', 'name', 'Edexcel University'),
(89447, 74680, 'fr', 'name', 'Institut Universitaire Edexcel du BƩnin'),
(89448, 74681, 'en', 'name', 'African University For Cooperative Development'),
(89449, 74681, 'fr', 'name', 'UniversitƩ Africaine de DƩveloppement CoopƩratif'),
(89450, 74682, 'en', 'name', 'New Dawn University'),
(89451, 74682, 'fr', 'name', 'UniversitƩ Aube Nouvelle'),
(89452, 74683, 'no_lang_code', 'name', 'Stella Maris Polytechnic'),
(89453, 74684, 'pt', 'name', 'Instituto Superior de Ciências de Educação à Distância'),
(89454, 74685, 'en', 'name', 'DMI-St. John the Baptist University'),
(89455, 74686, 'en', 'name', 'Abrar University'),
(89456, 74686, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų£ŲØŲ±Ų§Ų±'),
(89457, 74687, 'en', 'name', 'Plasma University'),
(89458, 74688, 'fr', 'name', 'Ɖcole de Gouvernance et d''Ɖconomie de Rabat'),
(89459, 74689, 'en', 'name', 'Horseed International University'),
(89460, 74690, 'fr', 'name', 'Ɖcole de Formation aux CarriĆØres de SantĆ©'),
(89461, 74691, 'en', 'name', 'Somali International University'),
(89462, 74692, 'en', 'name', 'Hormuud University'),
(89463, 74693, 'en', 'name', 'Derby College'),
(89464, 74694, 'fr', 'name', 'Institut SupƩrieur de l''Informatique et de Gestion'),
(89465, 74695, 'en', 'name', 'National Centre for Clinical Research on Emerging Drugs'),
(89466, 74696, 'en', 'name', 'Brazilian Institute of Neuroscience and Neurotechnology'),
(89467, 74696, 'pt', 'name', 'Instituto Brasileiro de NeurociĆŖncia e Neurotecnologia'),
(89468, 74697, 'en', 'name', 'Zambia Forestry College'),
(89469, 74698, 'en', 'name', 'Supershine University'),
(89470, 74699, 'en', 'name', 'Northlake Behavioral Health System'),
(89471, 74700, 'en', 'name', 'The Egyptian Society of Hematology and Research'),
(89472, 74700, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© لأمراض الدم ŁˆŲ§Ł„ŲØŲ­ŁˆŲ«'),
(89473, 74701, 'en', 'name', 'Center for Inherited Blood Disorders'),
(89474, 74702, 'nl', 'name', 'Beatrix Kinderziekenhuis'),
(89475, 74703, 'nl', 'name', 'De Kinderkliniek'),
(89476, 74704, 'nl', 'name', 'Willem-Alexander Kinderziekenhuis'),
(89477, 74705, 'en', 'name', 'Egyptian Society of Laboratory Medicine'),
(89478, 74705, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© للطب المعملى'),
(89479, 74706, 'no_lang_code', 'name', '4D Pharma (United Kingdom)'),
(89480, 74707, 'no_lang_code', 'name', 'Pflüger (Germany)'),
(89481, 74708, 'no_lang_code', 'name', '6 Dimensions Capital (United States)'),
(89482, 74709, 'no_lang_code', 'name', 'ABEnzymes (Germany)'),
(89483, 74710, 'no_lang_code', 'name', 'Amazentis (Switzerland)'),
(89484, 74711, 'no_lang_code', 'name', 'Ambrx (United States)'),
(89485, 74712, 'en', 'name', 'The National Institute of Neuromotor System'),
(89486, 74712, 'ar', 'name', 'المعهد Ų§Ł„Ł‚ŁˆŁ…ŁŠ للجهاز Ų§Ł„Ų­Ų±ŁƒŁŠ Ų§Ł„Ų¹ŲµŲØŁŠ'),
(89487, 74713, 'no_lang_code', 'name', 'AIR Worldwide (United States)'),
(89488, 74714, 'no_lang_code', 'name', 'Astellas Pharma (China)'),
(89489, 74714, 'zh', 'name', 'å®‰ę–Æę³°ę„åˆ¶čÆ'),
(89490, 74715, 'no_lang_code', 'name', 'Arrakis Therapeutics (United States)'),
(89491, 74716, 'no_lang_code', 'name', 'Boehringer Ingelheim (Philippines)'),
(89492, 74717, 'no_lang_code', 'name', 'Advania (Sweden)'),
(89493, 74718, 'no_lang_code', 'name', 'Sensorion (France)'),
(89494, 74719, 'no_lang_code', 'name', 'Urkund (Sweden)'),
(89495, 74720, 'no_lang_code', 'name', 'NHN (South Korea)'),
(89496, 74720, 'ko', 'name', 'ģ—”ģ—ģ“ģ¹˜ģ—” ģ£¼ģ‹ķšŒģ‚¬'),
(89497, 74721, 'en', 'name', 'Egyptian Engineers Syndicate'),
(89498, 74721, 'ar', 'name', 'نقابة Ų§Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(89499, 74722, 'en', 'name', 'Biosciences Research Support Foundation'),
(89500, 74723, 'rm', 'name', 'Departament Federal da Giustia e Polizia'),
(89501, 74723, 'it', 'name', 'Dipartimento Federale di Giustizia e Polizia'),
(89502, 74723, 'fr', 'name', 'DƩpartement FƩdƩral de Justice et Police'),
(89503, 74723, 'de', 'name', 'Eidgenƶssisches Justiz- und Polizeidepartement'),
(89504, 74723, 'en', 'name', 'Federal Department of Justice and Police'),
(89505, 74724, 'en', 'name', 'AINET Association of English Teachers'),
(89506, 74725, 'es', 'name', 'Asociación Colombiana de Cirugía'),
(89507, 74725, 'en', 'name', 'Colombian Association of Surgery'),
(89508, 74726, 'es', 'name', 'Asociación Colombiana de Dermatología y Cirugía Dermatológica'),
(89509, 74726, 'en', 'name', 'Colombian Association of Dermatology and Dermatological Surgery'),
(89510, 74727, 'es', 'name', 'Asociación Colombiana de Facultades de Ingeniería'),
(89511, 74727, 'en', 'name', 'Association of Colombian Faculties of Engineering'),
(89512, 74728, 'es', 'name', 'Asociación Colombiana de Gastroenterología'),
(89513, 74728, 'en', 'name', 'Colombian Association of Gastroenterology'),
(89514, 74729, 'es', 'name', 'Asociación Colombiana de Nefrología e Hipertensión Arterial'),
(89515, 74729, 'en', 'name', 'Colombian Association of Nephrology and Arterial Hypertension'),
(89516, 74730, 'es', 'name', 'Confederación Latinoamericana de Religiosos'),
(89517, 74730, 'en', 'name', 'Latin American and Caribbean Confederation of Religious Orders'),
(89518, 74731, 'en', 'name', 'Colombian Army Military Academy "General José María Córdova"'),
(89519, 74731, 'es', 'name', 'Escuela Militar de Cadetes General José María Córdova'),
(89520, 74732, 'es', 'name', 'Escuela Superior de Guerra'),
(89521, 74733, 'en', 'name', 'Colombian Federation of Obstetrics and Gynecology'),
(89522, 74733, 'es', 'name', 'Federación Colombiana de Obstetricia y Ginecología'),
(89523, 74734, 'es', 'name', 'Federación de Aseguradores Colombianos'),
(89524, 74734, 'en', 'name', 'Federation of Colombian Insurers'),
(89525, 74735, 'en', 'name', 'Colombian Institute of Anthropology and History'),
(89526, 74735, 'es', 'name', 'Instituto Colombiano de AntropologĆ­a e Historia'),
(89527, 74736, 'en', 'name', 'Jesuit Centre for Theological Reflection'),
(89528, 74737, 'en', 'name', 'Parliament of Ghana'),
(89529, 74738, 'en', 'name', 'Natural History Museum Brabant'),
(89530, 74738, 'nl', 'name', 'Natuurmuseum Brabant'),
(89531, 74739, 'en', 'name', 'Electoral Institute for Sustainable Democracy in Africa'),
(89532, 74740, 'en', 'name', 'Policy Center for the New South'),
(89533, 74741, 'en', 'name', 'Research ICT Africa'),
(89534, 74742, 'en', 'name', 'Institute for Global Dialogue'),
(89535, 74743, 'en', 'name', 'African Heritage Institution'),
(89536, 74744, 'en', 'name', 'African Centre for the Constructive Resolution of Disputes'),
(89537, 74745, 'en', 'name', 'Partnership for Economic Policy'),
(89538, 74746, 'en', 'name', 'Centre for Democracy and Development'),
(89539, 74747, 'en', 'name', 'Institute of Economic Affairs, Ghana'),
(89540, 74748, 'en', 'name', 'Organization for Social Science Research in Eastern and Southern Africa'),
(89541, 74749, 'fr', 'name', 'Institut Amadeus'),
(89542, 74750, 'en', 'name', 'Advocates Coalition for Development and Environment'),
(89543, 74751, 'en', 'name', 'Flemish Advisory Council for Innovation & Enterprise'),
(89544, 74751, 'nl', 'name', 'Vlaamse Adviesraad voor Innoveren en Ondernemen'),
(89545, 74752, 'en', 'name', 'Institute of Policy Analysis and Research - Rwanda'),
(89546, 74753, 'en', 'name', 'Zambia Institute for Policy Analysis and Research'),
(89547, 74754, 'en', 'name', 'Somali Institute for Development Research and Analysis'),
(89548, 74755, 'en', 'name', 'Centre for Humanitarian Dialogue'),
(89549, 74756, 'en', 'name', 'Horn Economic and Social Policy Institute'),
(89550, 74757, 'en', 'name', 'Initiative Prospective Agricole et Rurale'),
(89551, 74758, 'en', 'name', 'International Centre for Tax and Development'),
(89552, 74759, 'en', 'name', 'Southern African Migration Programme'),
(89553, 74760, 'af', 'name', 'Twende Mbele'),
(89554, 74761, 'en', 'name', 'African Forum and Network on Debt and Development'),
(89555, 74762, 'en', 'name', 'Kofi Annan International Peacekeeping Training Centre'),
(89556, 74763, 'en', 'name', 'Nigerian Institute of International Affairs'),
(89557, 74764, 'en', 'name', 'Centre for the Study of the Economies of Africa'),
(89558, 74765, 'en', 'name', 'Institute for Justice and Reconciliation'),
(89559, 74766, 'en', 'name', 'Tana High-Level Forum on Security in Africa'),
(89560, 74767, 'en', 'name', 'Reality of Aid Africa Network'),
(89561, 74768, 'fr', 'name', 'Centre D''analyse et de Recherche sur les Politiques Economiques et Sociales du Cameroun'),
(89562, 74769, 'en', 'name', 'SouthSouthNorth'),
(89563, 74770, 'fr', 'name', 'Centre Autonome d''Etudes et de Renforcement des capacitƩs pour le DƩveloppement au Togo'),
(89564, 74771, 'no_lang_code', 'name', 'Centre for Conflict Management and Transformation'),
(89565, 74772, 'en', 'name', 'Eswatini Economic Policy Analysis and Research Centre'),
(89566, 74773, 'fr', 'name', 'Centre Africain d’Etudes Internationales Diplomatiques Economiques et StratĆ©giques'),
(89567, 74774, 'en', 'name', 'Centre for Natural Resource Governance'),
(89568, 74775, 'fr', 'name', 'Groupe de Recherche et d’Analyse AppliquĆ©es pour le DĆ©veloppement'),
(89569, 74776, 'en', 'name', 'United Nations Economic and Social Commission for Western Asia'),
(89570, 74776, 'ar', 'name', 'Ų§Ł„Ų„Ų³ŁƒŁˆŲ§ā€Ž'),
(89571, 74777, 'en', 'name', 'The Initiative for Equal Rights'),
(89572, 74778, 'en', 'name', 'Burkina Faso Ministry of the Environment, Green Economy, and Climate Change'),
(89573, 74778, 'fr', 'name', 'MinistĆØre de L''Environnement, de l''Economie verte et du Changement Climatique'),
(89574, 74779, 'en', 'name', 'Hans Litten Archive'),
(89575, 74779, 'de', 'name', 'Hans-Litten-Archiv');
INSERT INTO `ror_settings` VALUES
(89576, 74780, 'en', 'name', 'State Public Scientific Technological Library of Siberian Branch of Russian Academy of Sciences'),
(89577, 74780, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŃƒŠ±Š»ŠøŃ‡Š½Š°Ń Š½Š°ŃƒŃ‡Š½Š¾-Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń библиотека Š”Šž Š ŠŠ'),
(89578, 74781, 'es', 'name', 'Instituto Superior Tecnológico Loja'),
(89579, 74782, 'en', 'name', 'euroCRIS'),
(89580, 74783, 'de', 'name', 'Halle Zoo'),
(89581, 74784, 'en', 'name', 'Network for Computational Modeling in the Social and Ecological Sciences'),
(89582, 74785, 'en', 'name', 'Secretariat of Housing and Urban Development'),
(89583, 74785, 'es', 'name', 'SecretarĆ­a de Desarrollo Urbano y Vivienda'),
(89584, 74786, 'en', 'name', 'S.P.E.C.I.E.S.'),
(89585, 74787, 'en', 'name', 'Interdisciplinary Earth Data Alliance'),
(89586, 74788, 'en', 'name', 'Hamburg State and University Library'),
(89587, 74788, 'de', 'name', 'Staats- und UniversitƤtsbibliothek Hamburg'),
(89588, 74789, 'no_lang_code', 'name', 'Proteus (New Zealand)'),
(89589, 74790, 'en', 'name', 'Sierra Leone Urban Research Centre'),
(89590, 74791, 'es', 'name', 'Universidad Autónoma de Baja California Sur'),
(89591, 74792, 'en', 'name', 'University of Halabja'),
(89592, 74792, 'ku', 'name', 'Ų²Ų§Ł†ŁƒŪ†Ł‰ Ł‡Ł‡ā€ŒŚµŁ‡ā€ŒŲØŲ¬Ł‡'),
(89593, 74793, 'en', 'name', 'Forest Stewards Guild'),
(89594, 74794, 'no_lang_code', 'name', 'Afrobarometer'),
(89595, 74795, 'en', 'name', 'Defence Electronics Application Laboratory'),
(89596, 74796, 'en', 'name', 'Defence Electronics Research Laboratory'),
(89597, 74796, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤‡ą¤²ą„‡ą¤•ą„ą¤Ÿą„ą¤°ą„‰ą¤Øą¤æą¤•ą„ą¤ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(89598, 74797, 'en', 'name', 'Defence Institute of Bio-Energy Research'),
(89599, 74798, 'en', 'name', 'Defence Institute of High Altitude Research'),
(89600, 74799, 'en', 'name', 'Defence Institute of Psychological Research'),
(89601, 74799, 'hi', 'name', 'ą¤®ą¤Øą„‹ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ ą¤°ą¤•ą„ą¤·ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(89602, 74800, 'en', 'name', 'Defence Materials and Stores Research and Development Establishment'),
(89603, 74800, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ ą¤ą¤‚ą¤µ ą¤­ą¤£ą„ą¤”ą¤¾ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø तऄा विकास ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾'),
(89604, 74801, 'en', 'name', 'Defence Scientific Information & Documentation Centre'),
(89605, 74802, 'en', 'name', 'Defence Terrain Research Laboratory'),
(89606, 74802, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤­ą„‚-भाग और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(89607, 74803, 'en', 'name', 'Gas Turbine Research Establishment'),
(89608, 74804, 'en', 'name', 'Institute for Systems Studies & Analyses'),
(89609, 74805, 'en', 'name', 'Institute of Technology Management'),
(89610, 74805, 'hi', 'name', 'ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø (ą¤†ą¤ˆ ą¤Ÿą„€ ą¤ą¤®) ą¤”ą„€ आर ą¤”ą„€ ओ, ą¤®ą¤øą„‚ą¤°ą„€'),
(89611, 74806, 'en', 'name', 'Instruments Research & Development Establishment'),
(89612, 74807, 'en', 'name', 'Integrated Test Range'),
(89613, 74808, 'en', 'name', 'Laser Science & Technology Centre'),
(89614, 74809, 'en', 'name', 'Advanced Centre for Energetic Materials'),
(89615, 74809, 'hi', 'name', 'ą¤Šą¤°ą„ą¤œą¤øą„ą¤µą„€ ą¤Ŗą¤¦ą¤¾ą¤°ą„ą¤„ ą¤‰ą¤Øą„ą¤Øą¤¤ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(89616, 74810, 'en', 'name', 'Microwave Tube Research & Development Centre'),
(89617, 74811, 'en', 'name', 'Advanced Numerical Research and Analysis Group'),
(89618, 74811, 'hi', 'name', 'ą¤‰ą¤Øą„ą¤Øą„ą¤¤ ą¤…ą¤‚ą¤•ą„€ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø तऄा ą¤µą¤æą¤¶ą„ą¤²ą„‡ą¤·ą¤£ ą¤øą¤®ą„‚ą¤¹'),
(89619, 74812, 'en', 'name', 'Naval Materials Research Laboratory'),
(89620, 74813, 'en', 'name', 'Naval Physical & Oceanographic Laboratory'),
(89621, 74814, 'en', 'name', 'Naval Science & Technological Laboratory'),
(89622, 74815, 'en', 'name', 'Advanced Systems Laboratory'),
(89623, 74815, 'hi', 'name', 'ą¤‰ą¤Øą„ą¤Øą¤¤ ą¤Ŗą„ą¤°ą¤£ą¤¾ą¤²ą„€ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(89624, 74816, 'en', 'name', 'Proof & Experimental Establishment'),
(89625, 74816, 'hi', 'name', 'ą¤Ŗą„ą¤°ą„‚ą¤« ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¾ą¤¤ą„ą¤®ą¤• संगठन'),
(89626, 74817, 'en', 'name', 'Research & Development Establishment (Engrs.)'),
(89627, 74817, 'hi', 'name', 'ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø आणि विकास ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾ ą¤‡ą¤‚ą¤œą¤æą¤Øą¤æą¤Æą¤°ą„ą¤ø'),
(89628, 74818, 'en', 'name', 'Aerial Delivery Research and Development Establishment'),
(89629, 74818, 'hi', 'name', 'हवाई ą¤”ą¤æą¤²ą„€ą¤µą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(89630, 74819, 'en', 'name', 'Research Centre Imarat'),
(89631, 74819, 'te', 'name', 'ą°°ą±€ą°øą±†ą°°ą±ą°šą± ą°øą±†ą°‚ą°Ÿą°°ą± ą°‡ą°®ą°¾ą°°ą°¾ą°¤ą±'),
(89632, 74820, 'en', 'name', 'Scientific Analysis Group'),
(89633, 74821, 'no_lang_code', 'name', 'Snow & Avalanche Study Estt'),
(89634, 74821, 'hi', 'name', 'ą¤øą¤¾ą¤øą„‡ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(89635, 74822, 'en', 'name', 'Aeronautical Development Establishment'),
(89636, 74822, 'hi', 'name', 'ą¤µą„ˆą¤®ą¤¾ą¤Øą¤æą¤•ą„€ विकास ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(89637, 74822, 'kn', 'name', 'ą²ą²°ą³†ą³‚ą²Øą²¾ą²Ÿą²æą²•ą²²ą³ ą²”ą³†ą²µą²²ą²Ŗą³ą²®ą³†ą²‚ą²Ÿą³ ą²Žą²øą³ą²Ÿą²¾ą²¬ą³ą²²ą²æą²·ą³ą²®ą³†ą²‚ą²Ÿą³'),
(89638, 74823, 'en', 'name', 'Terminal Ballistics Research Laboratory'),
(89639, 74824, 'en', 'name', 'Vehicles Research Development Establishment'),
(89640, 74825, 'en', 'name', 'Armaments Research Board'),
(89641, 74825, 'hi', 'name', 'ą¤†ą¤Æą„ą¤§ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤¬ą„‹ą¤°ą„ą¤”'),
(89642, 74826, 'en', 'name', 'Centre for Military Airworthiness and Certification'),
(89643, 74826, 'hi', 'name', 'ą¤øą„‡ą¤Øą¤¾ ą¤‰ą„œą¤Øą¤Æą„‹ą¤—ą„ą¤Æą¤¤ą¤¾ और ą¤Ŗą„ą¤°ą¤®ą¤¾ą¤£ą„€ą¤•ą¤°ą¤£ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(89644, 74827, 'en', 'name', 'Centre for Air Borne System'),
(89645, 74827, 'hi', 'name', 'ą¤µą¤¾ą¤Æą„ą¤µą¤¾ą¤¹ą¤æą¤¤ ą¤Ŗą„ą¤°ą¤£ą¤¾ą¤²ą„€ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(89646, 74828, 'en', 'name', 'Centre for Artificial Intelligence and Robotics'),
(89647, 74828, 'hi', 'name', 'ą¤•ą„ƒą¤¤ą„ą¤°ą¤æą¤® ą¤œą„ą¤žą¤¾ą¤Ø तऄा ą¤°ą„‹ą¤¬ą„‹ą¤Ÿą¤æą¤•ą„€ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(89648, 74829, 'es', 'name', 'Asociación Jardín BotÔnico La Laguna'),
(89649, 74830, 'en', 'name', 'Centre for Fire, Explosive and Environment Safety'),
(89650, 74830, 'hi', 'name', 'ą¤…ą¤—ą„ą¤Øą¤æ, ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤°ą¤£ तऄा ą¤µą¤æą¤øą„ą¤«ą„‹ą¤Ÿą¤• ą¤øą„ą¤°ą¤•ą„ą¤·ą¤¾ ą¤•ą„‡ą¤‚ą¤¦'),
(89651, 74831, 'en', 'name', 'Centre for Personnel Talent Management'),
(89652, 74831, 'hi', 'name', 'ą¤•ą¤¾ą¤°ą„ą¤®ą¤æą¤• ą¤Ŗą„ą¤°ą¤¤ą¤æą¤­ą¤¾ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(89653, 74832, 'en', 'name', 'Combat Vehicles Research and Development Establishment'),
(89654, 74832, 'hi', 'name', 'ą¤øą¤‚ą¤—ą„ą¤°ą¤¾ą¤® वाहन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø तऄा विकास ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Ø'),
(89655, 74833, 'en', 'name', 'Defence Avionics Research Establishment'),
(89656, 74833, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤µą„ˆą¤®ą¤¾ą¤Øą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾'),
(89657, 74834, 'en', 'name', 'Defence Bioengineering and Electromedical Laboratory'),
(89658, 74834, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤œą„ˆą¤µ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ और ą¤µą¤æą¤¦ą„ą¤Æą„ą¤¤ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤•ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(89659, 74835, 'en', 'name', 'Friends of Rosie Children''s Cancer Research Fund'),
(89660, 74836, 'en', 'name', 'Public Health Scotland'),
(89661, 74837, 'no_lang_code', 'name', 'Mitsui (Japan)'),
(89662, 74837, 'ja', 'name', 'äø‰äŗ•ć‚°ćƒ«ćƒ¼ćƒ—'),
(89663, 74838, 'en', 'name', 'BRIQ Institute on Behavior and Inequality'),
(89664, 74839, 'en', 'name', 'Academy of Law Management of the Federal Penal Service of Russia'),
(89665, 74839, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ права Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š¤Š”Š˜Š'),
(89666, 74840, 'en', 'name', 'MiMER Centre'),
(89667, 74841, 'no_lang_code', 'name', 'Therabel (Netherlands)'),
(89668, 74842, 'no_lang_code', 'name', 'Volition (Belgium)'),
(89669, 74843, 'no_lang_code', 'name', 'Volition (United Kingdom)'),
(89670, 74844, 'no_lang_code', 'name', 'Volition (United States)'),
(89671, 74845, 'no_lang_code', 'name', 'Volition (Singapore)'),
(89672, 74846, 'en', 'name', 'Electronics and Radar Development Establishment'),
(89673, 74846, 'kn', 'name', 'ą²Žą²²ą³†ą²•ą³ą²Ÿą³ą²°ą²¾ą²Øą²æą²•ą³ą²øą³ ą²°ą³†ą²”ą²¾ą²°ą³ ą²”ą³†ą²µą²²ą²Ŗą³ą²®ą³†ą²‚ą²Ÿą³ ą²Žą²øą³ą²Ÿą²¾ą²¬ą³ą²²ą²æą²·ą³ą²®ą³†ą²‚ą²Ÿą³'),
(89674, 74847, 'no_lang_code', 'name', 'Holtzbrinck Publishing Group (Germany)'),
(89675, 74848, 'en', 'name', 'Institute of Medical Information - CAMS'),
(89676, 74849, 'no_lang_code', 'name', 'ThrustMe (France)'),
(89677, 74850, 'no_lang_code', 'name', 'Novo Nordisk (Mexico)'),
(89678, 74851, 'no_lang_code', 'name', 'Kayser Automotive (Germany)'),
(89679, 74852, 'en', 'name', 'Centre for Research and Information on Substance Abuse'),
(89680, 74853, 'no_lang_code', 'name', 'Goldfinch Bio (United States)'),
(89681, 74854, 'no_lang_code', 'name', 'Inari Agriculture (United States)'),
(89682, 74855, 'no_lang_code', 'name', 'Heliae (United States)'),
(89683, 74856, 'no_lang_code', 'name', 'Sanofi (Mexico)'),
(89684, 74857, 'no_lang_code', 'name', 'Azotic Technologies (United Kingdom)'),
(89685, 74858, 'no_lang_code', 'name', 'Ball Horticultural (United States)'),
(89686, 74859, 'no_lang_code', 'name', 'Eurofarma (Brazil)'),
(89687, 74860, 'no_lang_code', 'name', 'Bejo Zaden (Netherlands)'),
(89688, 74861, 'no_lang_code', 'name', 'Haim Bio (South Korea)'),
(89689, 74862, 'no_lang_code', 'name', 'Forma Therapeutics (United States)'),
(89690, 74863, 'no_lang_code', 'name', 'Sanofi (Turkey)'),
(89691, 74864, 'no_lang_code', 'name', 'Anocca (Sweden)'),
(89692, 74865, 'en', 'name', 'American Farm Bureau Federation'),
(89693, 74866, 'de', 'name', 'PƤdagogische Hochschule Oberƶsterreich'),
(89694, 74866, 'en', 'name', 'University of Education Upper Austria'),
(89695, 74867, 'en', 'name', 'Women''s Coalition of Zimbabwe'),
(89696, 74868, 'en', 'name', 'United Nations University Institute for Sustainability and Peace'),
(89697, 74868, 'ja', 'name', 'å›½é€£å¤§å­¦ć‚µć‚¹ćƒ†ć‚¤ćƒŠćƒ“ćƒŖćƒ†ć‚£ćØå¹³å’Œē ”ē©¶ę‰€'),
(89698, 74869, 'en', 'name', 'Institute for Integrated Management of Material Fluxes and of Resources'),
(89699, 74870, 'en', 'name', 'University of Civil Protection'),
(89700, 74870, 'ru', 'name', 'Университет гражГанской защиты МЧД Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(89701, 74871, 'es', 'name', 'Colección Ornitológica Phelps'),
(89702, 74872, 'en', 'name', 'Institute for Natural Resources in Africa'),
(89703, 74873, 'en', 'name', 'ProMedica Monroe Regional Hospital'),
(89704, 74874, 'no_lang_code', 'name', 'Novanta (United States)'),
(89705, 74875, 'no_lang_code', 'name', 'IEF-Werner (Germany)'),
(89706, 74876, 'de', 'name', 'Mainzer Zentrum für Digitalität in den Geistes- und Kulturwissenschaften'),
(89707, 74877, 'en', 'name', 'International Federation of Surveyors'),
(89708, 74878, 'no_lang_code', 'name', 'MIMOT (Germany)'),
(89709, 74879, 'en', 'name', 'United States Agricultural Information Network'),
(89710, 74880, 'en', 'name', 'Alabama Library Association'),
(89711, 74881, 'no_lang_code', 'name', 'Advanced Energy (United States)'),
(89712, 74882, 'en', 'name', 'Islamic Azad University of Chalous'),
(89713, 74882, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ś†Ų§Ł„ŁˆŲ³'),
(89714, 74883, 'en', 'name', 'Islamic Azad University, Damghan Branch'),
(89715, 74883, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد دامغان'),
(89716, 74884, 'en', 'name', 'Islamic Azad University Ilam Branch'),
(89717, 74884, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§ŪŒŁ„Ų§Ł…'),
(89718, 74885, 'en', 'name', 'Islamic Azad University Islamshahr Branch'),
(89719, 74885, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد اسلامؓهر'),
(89720, 74886, 'en', 'name', 'Islamic Azad University, Khorramabad Branch'),
(89721, 74886, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų®Ų±Ł…ā€ŒŲ¢ŲØŲ§ŲÆ'),
(89722, 74887, 'en', 'name', 'Islamic Azad University, Shoushtar Branch'),
(89723, 74887, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓوؓتر'),
(89724, 74888, 'en', 'name', 'Islamic Azad University, Zahedan Branch'),
(89725, 74888, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد زاهدان'),
(89726, 74889, 'en', 'name', 'Centre for Research and Development'),
(89727, 74890, 'en', 'name', 'Islamic Azad University, Abhar Branch'),
(89728, 74890, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ابهر'),
(89729, 74891, 'de', 'name', 'Büro für Technikfolgen-Abschätzung beim Deutschen Bundestag'),
(89730, 74891, 'en', 'name', 'Office of Technology Assessment at the German Bundestag'),
(89731, 74892, 'en', 'name', 'Islamic Azad University, Ashtian Branch'),
(89732, 74892, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų¢Ų“ŲŖŁŠŲ§Ł†'),
(89733, 74893, 'en', 'name', 'Islamic Azad University, Azadshahr Branch'),
(89734, 74893, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ آزادؓهر'),
(89735, 74894, 'en', 'name', 'Islamic Azad University, Bushehr Branch'),
(89736, 74894, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد ŲØŁˆŲ“Ł‡Ų±'),
(89737, 74895, 'en', 'name', 'International Work Group for Indigenous Affairs'),
(89738, 74896, 'en', 'name', 'Islamic Azad University, Estahban Branch'),
(89739, 74896, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد استهبان'),
(89740, 74897, 'en', 'name', 'Islamic Azad University, Firuzabad Branch'),
(89741, 74897, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد فیروزآباد'),
(89742, 74898, 'es', 'name', 'Corporación de Estudios Sociales y Educación'),
(89743, 74899, 'es', 'name', 'Tierra'),
(89744, 74900, 'en', 'name', 'Islamic Azad University, Jiroft Branch'),
(89745, 74900, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد جیرفت'),
(89746, 74901, 'en', 'name', 'California Fire Science Consortium'),
(89747, 74902, 'en', 'name', 'Brennan Center for Justice'),
(89748, 74903, 'en', 'name', 'Islamic Azad University, Khoy Branch'),
(89749, 74903, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد خوی'),
(89750, 74904, 'en', 'name', 'Equal Justice Initiative'),
(89751, 74905, 'en', 'name', 'Islamic Azad University, Larestan Branch'),
(89752, 74905, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد لارستان'),
(89753, 74906, 'en', 'name', 'Islamic Azad University, Malayer Branch'),
(89754, 74906, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ł„Ų§ŪŒŲ±'),
(89755, 74907, 'en', 'name', 'Islamic Azad University, Nowshahr Branch'),
(89756, 74907, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ś†Ų§Ł„ŁˆŲ³'),
(89757, 74908, 'no_lang_code', 'name', 'Roche (Lebanon)'),
(89758, 74909, 'no_lang_code', 'name', 'Roche (Tunisia)'),
(89759, 74910, 'en', 'name', 'Islamic Azad University, Omidieh Branch'),
(89760, 74910, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ł…ŪŒŲÆŪŒŁ‡'),
(89761, 74911, 'en', 'name', 'Islamic Azad University, Shahr-e-Qods Branch'),
(89762, 74911, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓهر قدس'),
(89763, 74912, 'en', 'name', 'Islamic Azad University, Sirjan Branch'),
(89764, 74912, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų³ŪŒŲ±Ų¬Ų§Ł†'),
(89765, 74913, 'no_lang_code', 'name', 'Roche (Nicaragua)'),
(89766, 74914, 'no_lang_code', 'name', 'Roche (Bolivia)'),
(89767, 74915, 'no_lang_code', 'name', 'Roche (Bosnia-Herzegovina)'),
(89768, 74916, 'no_lang_code', 'name', 'Dascena (United States)'),
(89769, 74917, 'no_lang_code', 'name', 'Roche (Turkey)'),
(89770, 74918, 'no_lang_code', 'name', 'Roche (Chile)'),
(89771, 74919, 'no_lang_code', 'name', 'Roche (Ecuador)'),
(89772, 74920, 'no_lang_code', 'name', 'Roche (Norway)'),
(89773, 74921, 'fr', 'name', 'Le Soleil dans la Main'),
(89774, 74922, 'en', 'name', 'Iridium Cancer Network'),
(89775, 74922, 'nl', 'name', 'Iridium Kankernetwerk'),
(89776, 74923, 'de', 'name', 'Zug Cantonal Hospital'),
(89777, 74924, 'fr', 'name', 'Pharmacie des HƓpitaux de l''Est LƩmanique'),
(89778, 74924, 'en', 'name', 'Pharmacy of the Eastern Vaud Hospitals'),
(89779, 74925, 'en', 'name', 'Bavarian Research Institute for Digital Transformation'),
(89780, 74925, 'de', 'name', 'Bayerisches Forschungsinstitut für digitale Transformation'),
(89781, 74926, 'fr', 'name', 'GƩnƩrale-Beaulieu Clinic'),
(89782, 74927, 'de', 'name', 'Centre Emys'),
(89783, 74927, 'en', 'name', 'Emys Center'),
(89784, 74928, 'en', 'name', 'Center of Immunology Pierre Fabre'),
(89785, 74928, 'fr', 'name', 'Centre d’Immunologie Pierre Fabre'),
(89786, 74929, 'no_lang_code', 'name', 'Landeswasserversorgung (Germany)'),
(89787, 74930, 'fr', 'name', 'Ɖcole SupĆ©rieure Polytechnique d''Antsiranana'),
(89788, 74931, 'en', 'name', 'Zimbabwe Council For Higher Education'),
(89789, 74932, 'en', 'name', 'Lung Cancer Initiative of North Carolina'),
(89790, 74933, 'en', 'name', 'Cluster of Excellence "Matters of Activity. Image Space Material"'),
(89791, 74934, 'no_lang_code', 'name', 'Adelphi Consult (Germany)'),
(89792, 74935, 'no_lang_code', 'name', '22nd Century Group (United States)'),
(89793, 74936, 'no_lang_code', 'name', '3-D Matrix (Japan)'),
(89794, 74937, 'no_lang_code', 'name', '3Shape (Denmark)'),
(89795, 74938, 'no_lang_code', 'name', '3V Sigma (Italy)'),
(89796, 74939, 'no_lang_code', 'name', 'AllaChem (United States)'),
(89797, 74940, 'no_lang_code', 'name', 'Advanced BioNutrition (United States)'),
(89798, 74941, 'no_lang_code', 'name', 'A-dec (United States)'),
(89799, 74942, 'no_lang_code', 'name', 'Neurelis (United States)'),
(89800, 74943, 'no_lang_code', 'name', 'A.M. Surgical (United States)'),
(89801, 74944, 'no_lang_code', 'name', 'Alcami (United States)'),
(89802, 74945, 'no_lang_code', 'name', 'Aap Implantate (Germany)'),
(89803, 74946, 'en', 'name', 'Organisation of Islamic Cooperation'),
(89804, 74946, 'ar', 'name', 'منظمة Ų§Ł„ŲŖŲ¹Ų§ŁˆŁ† Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(89805, 74947, 'en', 'name', 'Islamic World Educational, Scientific and Cultural Organization'),
(89806, 74947, 'ar', 'name', 'منظمة العالم Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ Ł„Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ©'),
(89807, 74948, 'tr', 'name', 'FAHRİ KAYAHAN AİLE SAĞLIĞI MERKEZİ'),
(89808, 74948, 'en', 'name', 'Malatya Fahri Kayahan Health Care Center'),
(89809, 74949, 'no_lang_code', 'name', 'Affectiva (United States)'),
(89810, 74950, 'no_lang_code', 'name', 'Allied Healthcare Products (United States)'),
(89811, 74951, 'no_lang_code', 'name', 'Alphatec Spine Approach Technologies (United States)'),
(89812, 74952, 'no_lang_code', 'name', 'Altergon (Italy)'),
(89813, 74953, 'no_lang_code', 'name', 'Amann Girrbach (Austria)'),
(89814, 74954, 'no_lang_code', 'name', 'Achieve Life Sciences (United States)'),
(89815, 74955, 'no_lang_code', 'name', 'ACP Japan (Japan)'),
(89816, 74955, 'ja', 'name', 'ę—„ęœ¬ć‚Øćƒ¼ć‚·ćƒ¼ćƒ”ćƒ¼'),
(89817, 74956, 'no_lang_code', 'name', 'Advance (Japan)'),
(89818, 74957, 'no_lang_code', 'name', 'Acrux (Australia)'),
(89819, 74958, 'no_lang_code', 'name', 'Vactronix Scientific (United States)'),
(89820, 74959, 'no_lang_code', 'name', 'ACS Dobfar (Italy)'),
(89821, 74960, 'fr', 'name', 'Institut Catholique d''Arts et MƩtiers'),
(89822, 74961, 'no_lang_code', 'name', 'Active Implants (United States)'),
(89823, 74962, 'no_lang_code', 'name', 'Agile Therapeutics (United States)'),
(89824, 74963, 'no_lang_code', 'name', 'AcuFocus (United States)'),
(89825, 74964, 'no_lang_code', 'name', 'Acura Pharmaceuticals (United States)'),
(89826, 74965, 'no_lang_code', 'name', 'Adare Pharma Solutions (United States)'),
(89827, 74966, 'no_lang_code', 'name', 'Agriculture Victoria Services (Australia)'),
(89828, 74967, 'no_lang_code', 'name', 'Amano Enzyme (Japan)'),
(89829, 74968, 'no_lang_code', 'name', 'Adc Therapeutics (Switzerland)'),
(89830, 74969, 'no_lang_code', 'name', 'Aderans (Japan)'),
(89831, 74969, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‡ćƒ©ćƒ³ć‚¹'),
(89832, 74970, 'no_lang_code', 'name', 'AIMM Therapeutics (Netherlands)'),
(89833, 74971, 'no_lang_code', 'name', 'Admedes (Germany)'),
(89834, 74972, 'no_lang_code', 'name', 'Airway Technologies (United States)'),
(89835, 74973, 'no_lang_code', 'name', 'Ambu (Denmark)'),
(89836, 74974, 'no_lang_code', 'name', 'Minerals Technologies (United States)'),
(89837, 74975, 'no_lang_code', 'name', 'E-Techco Group (China)'),
(89838, 74976, 'no_lang_code', 'name', 'RealTimePurity (United States)'),
(89839, 74977, 'no_lang_code', 'name', 'RUA Life Sciences (United Kingdom)'),
(89840, 74978, 'no_lang_code', 'name', 'Alber (Germany)'),
(89841, 74979, 'no_lang_code', 'name', 'American Med Systems (United States)'),
(89842, 74980, 'no_lang_code', 'name', 'Albumedix (United Kingdom)'),
(89843, 74981, 'no_lang_code', 'name', 'Apeiron Biologics (Austria)'),
(89844, 74982, 'no_lang_code', 'name', 'Agency for Medical Innovations (Austria)'),
(89845, 74983, 'no_lang_code', 'name', 'Apex (Taiwan)'),
(89846, 74984, 'no_lang_code', 'name', 'Amino Up (Japan)'),
(89847, 74984, 'ja', 'name', 'ćˆ±ć‚¢ćƒŸćƒŽć‚¢ćƒƒćƒ—'),
(89848, 74985, 'no_lang_code', 'name', 'Vetter (Germany)'),
(89849, 74985, 'de', 'name', 'Vetter Pharma-Fertigung'),
(89850, 74986, 'no_lang_code', 'name', 'Appvion (United States)'),
(89851, 74987, 'no_lang_code', 'name', 'Ampio Pharmaceuticals (United States)'),
(89852, 74988, 'no_lang_code', 'name', 'Alcon (Switzerland)'),
(89853, 74989, 'no_lang_code', 'name', 'Alfred E. Tiefenbacher (Germany)'),
(89854, 74990, 'no_lang_code', 'name', 'Anges (Japan)'),
(89855, 74991, 'no_lang_code', 'name', 'Angiochem (Canada)'),
(89856, 74992, 'no_lang_code', 'name', 'Ancora Heart (United States)'),
(89857, 74993, 'no_lang_code', 'name', 'DJO Global (United States)'),
(89858, 74994, 'no_lang_code', 'name', 'Archimica (Italy)'),
(89859, 74995, 'no_lang_code', 'name', 'Arcturus Therapeutics (United States)'),
(89860, 74996, 'no_lang_code', 'name', 'Kraton (United States)'),
(89861, 74997, 'no_lang_code', 'name', 'Arjo (Sweden)'),
(89862, 74998, 'no_lang_code', 'name', 'Aquanova (Germany)'),
(89863, 74999, 'no_lang_code', 'name', 'Adama (Israel)'),
(89864, 74999, 'he', 'name', 'אדמה בע"×žā€Ž'),
(89865, 75000, 'no_lang_code', 'name', 'Aquestive (United States)'),
(89866, 75001, 'no_lang_code', 'name', 'Auven Therapeutics (United States)'),
(89867, 75002, 'no_lang_code', 'name', 'Arkion Life Sciences (United States)'),
(89868, 75003, 'no_lang_code', 'name', 'Arrow International (United States)'),
(89869, 75004, 'no_lang_code', 'name', 'Arte (Japan)'),
(89870, 75005, 'no_lang_code', 'name', 'Arthrosurface (United States)'),
(89871, 75006, 'no_lang_code', 'name', 'Anova Corp (Vietnam)'),
(89872, 75007, 'no_lang_code', 'name', 'Asahi Intecc (Japan)'),
(89873, 75007, 'ja', 'name', 'ęœę—„ć‚¤ćƒ³ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(89874, 75008, 'no_lang_code', 'name', 'Kaman (United States)'),
(89875, 75009, 'no_lang_code', 'name', 'Anthogyr (France)'),
(89876, 75010, 'no_lang_code', 'name', 'Bard Access Systems (United States)'),
(89877, 75011, 'no_lang_code', 'name', 'Ascendis Pharma (Denmark)'),
(89878, 75012, 'no_lang_code', 'name', 'Ascensia Diabetes Care (Switzerland)'),
(89879, 75013, 'no_lang_code', 'name', 'Bardy Diagnostics (United States)'),
(89880, 75014, 'no_lang_code', 'name', 'BAROnova (United States)'),
(89881, 75015, 'no_lang_code', 'name', 'Aspect Imaging (Israel)'),
(89882, 75016, 'no_lang_code', 'name', 'Goodman (Japan)'),
(89883, 75016, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚°ćƒƒćƒ‰ćƒžćƒ³'),
(89884, 75017, 'no_lang_code', 'name', 'Atlas Antibodies (Sweden)'),
(89885, 75018, 'no_lang_code', 'name', 'Atlas Spine (United States)'),
(89886, 75019, 'no_lang_code', 'name', 'Atom Medical (Japan)'),
(89887, 75020, 'no_lang_code', 'name', 'Atrion Medical (United States)'),
(89888, 75021, 'en', 'name', 'KDZ - Centre for Public Administration Research'),
(89889, 75021, 'de', 'name', 'Zentrum für Verwaltungsforschung'),
(89890, 75022, 'no_lang_code', 'name', 'Avinger (United States)'),
(89891, 75023, 'no_lang_code', 'name', 'Autonomix Medical (United States)'),
(89892, 75024, 'no_lang_code', 'name', 'Axelgaard Manufacturing (United States)'),
(89893, 75025, 'no_lang_code', 'name', 'Axonics Modulation Technologies (United States)'),
(89894, 75026, 'no_lang_code', 'name', 'Axsome Therapeutics (United States)'),
(89895, 75027, 'no_lang_code', 'name', 'AYR (United Kingdom)'),
(89896, 75028, 'no_lang_code', 'name', 'Bezwada Biomedical (United States)'),
(89897, 75029, 'no_lang_code', 'name', 'Badger Licensing (United States)'),
(89898, 75030, 'no_lang_code', 'name', 'BFKW (United States)'),
(89899, 75031, 'no_lang_code', 'name', 'Bicycle Therapeutics (United Kingdom)'),
(89900, 75032, 'no_lang_code', 'name', 'Biedermann Motech (Germany)'),
(89901, 75033, 'no_lang_code', 'name', 'Biedermann Technologies (Germany)'),
(89902, 75034, 'no_lang_code', 'name', 'Bien-Air Medical Technologies (Switzerland)'),
(89903, 75035, 'en', 'name', 'Agricultural Research Service - Pacific West Area'),
(89904, 75036, 'en', 'name', 'Agricultural Research Service - Plains Area'),
(89905, 75037, 'no_lang_code', 'name', 'Bio Medic Data Systems (United States)'),
(89906, 75038, 'en', 'name', 'Agricultural Research Service - Midwest Area'),
(89907, 75039, 'en', 'name', 'Agricultural Research Service - Northeast Area'),
(89908, 75040, 'en', 'name', 'Agricultural Research Service - Southeast Area'),
(89909, 75041, 'en', 'name', 'IBM Research - United Kingdom'),
(89910, 75042, 'en', 'name', 'Beltsville Human Nutrition Research Center'),
(89911, 75043, 'en', 'name', 'Children''s Nutrition Research Center at Baylor College of Medicine'),
(89912, 75044, 'no_lang_code', 'name', 'BioAtla (United States)'),
(89913, 75045, 'en', 'name', 'Jean Mayer Human Nutrition Research Center on Aging'),
(89914, 75046, 'no_lang_code', 'name', 'BioCardia (United States)'),
(89915, 75047, 'en', 'name', 'Western Human Nutrition Research Center'),
(89916, 75048, 'no_lang_code', 'name', 'Biocrine (Sweden)'),
(89917, 75049, 'no_lang_code', 'name', 'Biocure (United States)'),
(89918, 75050, 'no_lang_code', 'name', 'Benvenue Medical (United States)'),
(89919, 75051, 'no_lang_code', 'name', 'Hillenbrand (United States)'),
(89920, 75052, 'no_lang_code', 'name', 'BioDerm (United States)'),
(89921, 75053, 'no_lang_code', 'name', 'Probility Media (United States)'),
(89922, 75054, 'no_lang_code', 'name', 'BioInteractions (United Kingdom)'),
(89923, 75055, 'no_lang_code', 'name', 'Biokine (Israel)'),
(89924, 75056, 'no_lang_code', 'name', 'TranS1 (United States)'),
(89925, 75057, 'no_lang_code', 'name', 'Biolase (United States)'),
(89926, 75058, 'no_lang_code', 'name', 'Bioness (United States)'),
(89927, 75059, 'no_lang_code', 'name', 'Bridge Of Nucleic Acids Chemistry (Japan)'),
(89928, 75060, 'no_lang_code', 'name', 'BioQ Pharma (United States)'),
(89929, 75061, 'no_lang_code', 'name', 'Bioquell (United Kingdom)'),
(89930, 75062, 'no_lang_code', 'name', 'BVI (United States)'),
(89931, 75063, 'no_lang_code', 'name', 'Bonesupport (Sweden)'),
(89932, 75064, 'no_lang_code', 'name', 'Joint Active Systems (United States)'),
(89933, 75065, 'no_lang_code', 'name', 'Broncus (United States)'),
(89934, 75066, 'no_lang_code', 'name', 'Quad-C Management (United States)'),
(89935, 75067, 'no_lang_code', 'name', 'Apyx Medical (United States)'),
(89936, 75068, 'no_lang_code', 'name', 'Bruin Biometrics (United States)'),
(89937, 75069, 'no_lang_code', 'name', 'Burcon (Canada)'),
(89938, 75070, 'no_lang_code', 'name', 'Brasseler (Germany)'),
(89939, 75070, 'de', 'name', 'Gebr. Brasseler'),
(89940, 75071, 'no_lang_code', 'name', 'Breg (United States)'),
(89941, 75072, 'no_lang_code', 'name', 'CMR Surgical (United Kingdom)'),
(89942, 75073, 'no_lang_code', 'name', 'Cannuflow (United States)'),
(89943, 75074, 'no_lang_code', 'name', 'Bridge Pharma (United States)'),
(89944, 75075, 'no_lang_code', 'name', 'CAO Group (United States)'),
(89945, 75076, 'no_lang_code', 'name', 'CapsoVision (United States)'),
(89946, 75077, 'no_lang_code', 'name', 'Brightwake (United Kingdom)'),
(89947, 75078, 'no_lang_code', 'name', 'Capsum (France)'),
(89948, 75079, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Ireland)'),
(89949, 75080, 'no_lang_code', 'name', 'Cara Therapeutics (United States)'),
(89950, 75081, 'no_lang_code', 'name', 'Carag (Switzerland)'),
(89951, 75082, 'en', 'name', 'Sytenko Institute of Spine and Joint Pathology of the National Academy of Medical Sciences of Ukraine'),
(89952, 75082, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ патології хребта та ŃŃƒŠ³Š»Š¾Š±Ń–Š² імені Дитенка'),
(89953, 75083, 'no_lang_code', 'name', 'Cardiac Dimensions (United States)'),
(89954, 75084, 'no_lang_code', 'name', 'Celularity (United States)'),
(89955, 75085, 'no_lang_code', 'name', 'Cardio Flow (United States)'),
(89956, 75086, 'no_lang_code', 'name', 'CEM (United States)'),
(89957, 75087, 'no_lang_code', 'name', 'Centinel Spine (United States)'),
(89958, 75088, 'no_lang_code', 'name', 'Centrix (United States)'),
(89959, 75089, 'no_lang_code', 'name', 'Abcentra (United States)'),
(89960, 75090, 'no_lang_code', 'name', 'Caregen (South Korea)'),
(89961, 75091, 'no_lang_code', 'name', 'Cercacor (United States)'),
(89962, 75092, 'no_lang_code', 'name', 'Castellini (Italy)'),
(89963, 75093, 'no_lang_code', 'name', 'Catalyst Chemical Industries (India)'),
(89964, 75094, 'no_lang_code', 'name', 'Chanel (United Kingdom)'),
(89965, 75095, 'no_lang_code', 'name', 'CathRx (Australia)'),
(89966, 75096, 'no_lang_code', 'name', 'SK Capital (United States)'),
(89967, 75097, 'no_lang_code', 'name', 'Chemi (Italy)'),
(89968, 75098, 'no_lang_code', 'name', 'Cefla (Italy)'),
(89969, 75099, 'no_lang_code', 'name', 'Cellix Bio (India)'),
(89970, 75100, 'no_lang_code', 'name', 'QVT (United States)'),
(89971, 75101, 'no_lang_code', 'name', 'China Petrochemical Development Corporation (Taiwan)'),
(89972, 75101, 'zh', 'name', 'äø­åœ‹ēŸ³ę²¹åŒ–å­øå·„ę„­é–‹ē™¼č‚”ä»½ęœ‰é™å…¬åø'),
(89973, 75102, 'no_lang_code', 'name', 'Clariance (Luxembourg)'),
(89974, 75103, 'no_lang_code', 'name', 'CoDa Therapeutics (United States)'),
(89975, 75104, 'no_lang_code', 'name', 'Chromocell (United States)'),
(89976, 75105, 'no_lang_code', 'name', 'Cognetix (India)'),
(89977, 75106, 'no_lang_code', 'name', 'CoImmune (United States)'),
(89978, 75107, 'no_lang_code', 'name', 'CINOGY Technologies (Germany)'),
(89979, 75108, 'no_lang_code', 'name', 'Collegium Pharmaceutical (United States)'),
(89980, 75109, 'no_lang_code', 'name', 'Corium (United States)'),
(89981, 75110, 'no_lang_code', 'name', 'Conagen (United States)'),
(89982, 75111, 'no_lang_code', 'name', 'CorMatrix (United States)'),
(89983, 75112, 'no_lang_code', 'name', 'Corvia Medical (United States)'),
(89984, 75113, 'no_lang_code', 'name', 'Conformis (United States)'),
(89985, 75114, 'no_lang_code', 'name', 'CosMED Pharmaceutical (Japan)'),
(89986, 75114, 'ja', 'name', 'ć‚³ć‚¹ćƒ”ćƒ‡ć‚£č£½č–¬'),
(89987, 75115, 'no_lang_code', 'name', 'ConjuChem (Canada)'),
(89988, 75116, 'no_lang_code', 'name', 'Coty (United States)'),
(89989, 75117, 'no_lang_code', 'name', 'Cousin Biotech (France)'),
(89990, 75118, 'no_lang_code', 'name', 'Conventus Orthopaedics (United States)'),
(89991, 75119, 'no_lang_code', 'name', 'J.M. Huber Corporation (United States)'),
(89992, 75120, 'no_lang_code', 'name', 'Cook Biotech (United States)'),
(89993, 75121, 'no_lang_code', 'name', 'Footstar (United States)'),
(89994, 75122, 'no_lang_code', 'name', 'CPH Innovations (United Kingdom)'),
(89995, 75123, 'no_lang_code', 'name', 'CRG Services (United States)'),
(89996, 75124, 'no_lang_code', 'name', 'CRISPR Therapeutics (Switzerland)'),
(89997, 75125, 'no_lang_code', 'name', 'CrossRoads Extremity Systems (United States)'),
(89998, 75126, 'no_lang_code', 'name', 'Crystal Pharmatech (United States)'),
(89999, 75127, 'no_lang_code', 'name', 'CTL Amedica (United States)'),
(90000, 75128, 'no_lang_code', 'name', 'Curemark (United States)'),
(90001, 75129, 'no_lang_code', 'name', 'CooperSurgical (United States)'),
(90002, 75130, 'no_lang_code', 'name', 'Spinal Elements (United States)'),
(90003, 75131, 'no_lang_code', 'name', 'Cyberdyne (Japan)'),
(90004, 75131, 'ja', 'name', 'ć‚µć‚¤ćƒćƒ¼ćƒ€ć‚¤ćƒ³'),
(90005, 75132, 'no_lang_code', 'name', 'Cybersonics (United States)'),
(90006, 75133, 'no_lang_code', 'name', 'DCA (United Kingdom)'),
(90007, 75134, 'no_lang_code', 'name', 'Cyclerion (United States)'),
(90008, 75135, 'no_lang_code', 'name', 'Cynora (Germany)'),
(90009, 75136, 'no_lang_code', 'name', 'Royalty Pharma (United States)'),
(90010, 75137, 'no_lang_code', 'name', 'Shanghai Fudan Microelectronics (China)'),
(90011, 75137, 'zh', 'name', 'äøŠęµ·å¤ę—¦å¾®ē”µå­é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(90012, 75138, 'no_lang_code', 'name', 'Shindengen Electric Manufacturing (Japan)'),
(90013, 75138, 'ja', 'name', 'ę–°é›»å…ƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(90014, 75139, 'no_lang_code', 'name', 'Tianshui Huatian Technology (China)'),
(90015, 75139, 'zh', 'name', 'åŽå¤©ē§‘ęŠ€'),
(90016, 75140, 'no_lang_code', 'name', 'Shenzhen Goodix Technology (China)'),
(90017, 75140, 'zh', 'name', 'ę±‡é”¶ē§‘ęŠ€'),
(90018, 75141, 'no_lang_code', 'name', 'Immune Pharmaceuticals (United States)'),
(90019, 75142, 'no_lang_code', 'name', 'Parade Technologies (United States)'),
(90020, 75143, 'no_lang_code', 'name', 'Allwinner Technology (China)'),
(90021, 75143, 'zh', 'name', 'å…Øåæ—'),
(90022, 75144, 'no_lang_code', 'name', 'Silergy (China)'),
(90023, 75145, 'no_lang_code', 'name', 'E4D Technologies (United States)'),
(90024, 75146, 'no_lang_code', 'name', 'Powerchip (Taiwan)'),
(90025, 75146, 'zh', 'name', 'åŠ›ę™¶ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(90026, 75147, 'no_lang_code', 'name', 'U-blox (Switzerland)'),
(90027, 75148, 'no_lang_code', 'name', 'Shanghai Aerospace Automobile Electromechanical (China)'),
(90028, 75148, 'zh', 'name', 'äøŠęµ·čˆŖå¤©ę±½č½¦ęœŗē”µč‚”ä»½ęœ‰é™å…¬åø'),
(90029, 75149, 'no_lang_code', 'name', 'Jiangsu Changjiang Electronics Technology (China)'),
(90030, 75149, 'zh', 'name', 'ę±Ÿč˜‡é•·é›»ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(90031, 75150, 'no_lang_code', 'name', 'Raydium Semiconductor (Taiwan)'),
(90032, 75151, 'no_lang_code', 'name', 'Silicon Motion (Taiwan)'),
(90033, 75151, 'zh', 'name', 'ę…§ę¦®ē§‘ęŠ€'),
(90034, 75152, 'no_lang_code', 'name', 'Jusung Engineering (South Korea)'),
(90035, 75152, 'ko', 'name', 'ģ£¼ģ„±ģ—”ģ§€ė‹ˆģ–“ė§'),
(90036, 75153, 'no_lang_code', 'name', 'Control4 (United States)'),
(90037, 75154, 'no_lang_code', 'name', 'Melexis (Belgium)'),
(90038, 75155, 'no_lang_code', 'name', 'ELAN Microelectronics (Taiwan)'),
(90039, 75155, 'zh', 'name', 'ē¾©éš†é›»å­'),
(90040, 75156, 'no_lang_code', 'name', 'Sitronix Technology (Taiwan)'),
(90041, 75157, 'no_lang_code', 'name', 'Besi (Netherlands)'),
(90042, 75158, 'no_lang_code', 'name', 'Daihachi Chemical Industry (Japan)'),
(90043, 75159, 'no_lang_code', 'name', 'Silicon Works (South Korea)'),
(90044, 75159, 'ko', 'name', '주)ģ‹¤ė¦¬ģ½˜ģ›ģŠ¤'),
(90045, 75160, 'no_lang_code', 'name', 'Silicon Mitus (United States)'),
(90046, 75161, 'no_lang_code', 'name', 'Daikyo Seiko (Japan)'),
(90047, 75161, 'ja', 'name', 'å¤§å”ē²¾å·„'),
(90048, 75162, 'no_lang_code', 'name', 'Tower Semiconductor (Israel)'),
(90049, 75162, 'he', 'name', 'ć‚æćƒÆćƒ¼ć‚»ćƒŸć‚³ćƒ³ćƒ€ć‚Æć‚æćƒ¼'),
(90050, 75163, 'no_lang_code', 'name', 'Sensirion (Switzerland)'),
(90051, 75164, 'no_lang_code', 'name', 'Vishay Intertechnology (United States)'),
(90052, 75165, 'no_lang_code', 'name', 'Daio Paper Corporation (Japan)'),
(90053, 75166, 'no_lang_code', 'name', 'SMART Global Holdings (United States)'),
(90054, 75167, 'no_lang_code', 'name', 'Osaka Soda (Japan)'),
(90055, 75167, 'ja', 'name', 'å¤§é˜Ŗć‚½ćƒ¼ćƒ€'),
(90056, 75168, 'no_lang_code', 'name', 'Hengdian Group DMEGC Magnetics (China)'),
(90057, 75169, 'no_lang_code', 'name', 'Kulicke & Soffa (Singapore)'),
(90058, 75170, 'no_lang_code', 'name', 'Inovance (China)'),
(90059, 75171, 'no_lang_code', 'name', 'Powertech Technology (Taiwan)'),
(90060, 75171, 'zh', 'name', 'åŠ›ęˆē§‘ęŠ€'),
(90061, 75172, 'no_lang_code', 'name', 'Sino-American Silicon Products (Taiwan)'),
(90062, 75173, 'no_lang_code', 'name', 'Wonik IPS (South Korea)'),
(90063, 75173, 'ko', 'name', 'ģ›ģµģ•„ģ“ķ”¼ģ—ģŠ¤'),
(90064, 75174, 'no_lang_code', 'name', 'Sigma Designs (United States)'),
(90065, 75175, 'es', 'name', 'Academia Nacional de la Historia de la RepĆŗblica Argentina'),
(90066, 75175, 'en', 'name', 'National Academy of History of Argentina'),
(90067, 75176, 'fr', 'name', 'Association Nationale des Producteurs de Noisettes'),
(90068, 75177, 'en', 'name', 'Insight Healthcare'),
(90069, 75178, 'no_lang_code', 'name', 'Entangly (Sweden)'),
(90070, 75179, 'en', 'name', 'Siberian Law University'),
(90071, 75179, 'ru', 'name', 'Дибирский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(90072, 75180, 'fr', 'name', 'Archives de l''Ɖtat'),
(90073, 75180, 'nl', 'name', 'Rijksarchief'),
(90074, 75180, 'en', 'name', 'State Archives of Belgium'),
(90075, 75181, 'en', 'name', 'State Institution "Ukrainian Research Institute of Medical Rehabilitation and Resort Therapy of Ministry of Health of Ukraine"'),
(90076, 75181, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Украинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинской реабилитации Šø ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠø ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Украины"'),
(90077, 75181, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГичної реабілітації та ŠŗŃƒŃ€Š¾Ń€Ń‚ології ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š° охорони зГоров''я України"'),
(90078, 75182, 'en', 'name', 'Tropical Crops Genetic Resources Institute'),
(90079, 75182, 'zh', 'name', 'ēƒ­åø¦ä½œē‰©å“ē§čµ„ęŗē ”ē©¶ę‰€'),
(90080, 75183, 'en', 'name', 'Rubber Research Institute'),
(90081, 75183, 'zh', 'name', 'äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢ę©”čƒ¶ē ”ē©¶ę‰€'),
(90082, 75184, 'en', 'name', 'Mahendra Institute of Management and Technical Studies'),
(90083, 75184, 'or', 'name', 'ą¬®ą¬¹ą­‡ą¬Øą­ą¬¦ą­ą¬° ą¬‡ą¬Øą¬·ą­ą¬Ÿą¬æą¬šą­ą­Ÿą­ą¬Ÿą­ ą¬…ą¬«ą­ ą¬®ą­ą­Ÿą¬¾ą¬Øą­‡ą¬œą¬®ą­‡ą¬£ą­ą¬Ÿ ą¬†ą¬£ą­ą¬” ą¬Ÿą­‡ą¬•ą­ą¬Øą¬æą¬•ą¬¾ą¬² ą¬·ą­ą¬Ÿą¬”ą¬æą¬ø (ą¬®ą¬æą¬®ą­ā€Œą¬Ÿą­ą¬ø)'),
(90084, 75185, 'no_lang_code', 'name', 'Merit Medical (United States)'),
(90085, 75186, 'en', 'name', 'Spice and Beverage Research Institute'),
(90086, 75186, 'zh', 'name', '香料鄮料研究所'),
(90087, 75187, 'en', 'name', 'Coconut Research Institute'),
(90088, 75187, 'zh', 'name', 'äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢ę¤°å­ē ”ē©¶ę‰€'),
(90089, 75188, 'no_lang_code', 'name', 'Diatex (France)'),
(90090, 75189, 'en', 'name', 'South Subtropical Crops Research Institute'),
(90091, 75189, 'zh', 'name', 'å¹æäøœēœę¹›ę±Ÿåø‚éŗ»ē« åŒŗę¹–ē§€č·Æäø€å·'),
(90092, 75190, 'en', 'name', 'Tropical Bioscience and Biotechnology Research Institute'),
(90093, 75190, 'zh', 'name', 'ēƒ­åø¦ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(90094, 75191, 'no_lang_code', 'name', 'Dipharma (Italy)'),
(90095, 75192, 'en', 'name', 'Environment and Plant Protection Research Institute'),
(90096, 75192, 'zh', 'name', 'ēŽÆå¢ƒäøŽę¤ē‰©äæęŠ¤ē ”ē©¶ę‰€'),
(90097, 75193, 'en', 'name', 'Agricultural Product Processing Research Institute'),
(90098, 75193, 'zh', 'name', 'å†œäŗ§å“åŠ å·„ē ”ē©¶ę‰€'),
(90099, 75194, 'en', 'name', 'Tropical Agricultural Machinery Research Institute'),
(90100, 75194, 'zh', 'name', 'å†œäøšęœŗę¢°ē ”ē©¶ę‰€'),
(90101, 75195, 'en', 'name', 'Institute of Scientific and Technical Information'),
(90102, 75196, 'no_lang_code', 'name', 'DemeRx (United States)'),
(90103, 75197, 'en', 'name', 'Analysis and Testing Centre'),
(90104, 75197, 'zh', 'name', 'åˆ†ęžęµ‹čÆ•äø­åæƒ'),
(90105, 75198, 'en', 'name', 'Haikou Experimental Station'),
(90106, 75198, 'zh', 'name', 'äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢ęµ·å£å®žéŖŒē«™'),
(90107, 75199, 'en', 'name', 'Zhanjiang Experimental Station'),
(90108, 75199, 'zh', 'name', 'ę¹›ę±Ÿå®žéŖŒē«™'),
(90109, 75200, 'en', 'name', 'Guangzhou Experimental Station'),
(90110, 75200, 'zh', 'name', 'äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢å¹æå·žå®žéŖŒē«™'),
(90111, 75201, 'no_lang_code', 'name', 'DeRoyal (United States)'),
(90112, 75202, 'no_lang_code', 'name', 'Phoenix Mecano (Switzerland)'),
(90113, 75203, 'no_lang_code', 'name', 'Dong-A Pharmaceutical (South Korea)'),
(90114, 75204, 'no_lang_code', 'name', 'DongKook Pharmaceutical (South Korea)'),
(90115, 75205, 'no_lang_code', 'name', 'Dongwha Pharm (South Korea)'),
(90116, 75206, 'no_lang_code', 'name', 'Dorf Ketal (India)'),
(90117, 75206, 'hi', 'name', 'ą¤”ą„‰ą¤°ą„ą¤«-ą¤•ą„‡ą¤Ÿą¤² ą¤•ą„‡ą¤®ą¤æą¤•ą¤²ą„ą¤ø इंऔिया ą¤Ŗą„ą¤°ą¤¾ą¤‡ą¤µą„‡ą¤Ÿ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(90118, 75207, 'no_lang_code', 'name', 'Geistlich (Switzerland)'),
(90119, 75208, 'no_lang_code', 'name', 'Dornier MedTech (Germany)'),
(90120, 75209, 'no_lang_code', 'name', 'Edan (China)'),
(90121, 75210, 'no_lang_code', 'name', 'DOT (Germany)'),
(90122, 75211, 'no_lang_code', 'name', 'Edgewell Personal Care (United States)'),
(90123, 75212, 'no_lang_code', 'name', 'Editas Medicine (United States)'),
(90124, 75213, 'no_lang_code', 'name', 'Doxa (Sweden)'),
(90125, 75214, 'no_lang_code', 'name', 'Elementis (United Kingdom)'),
(90126, 75215, 'no_lang_code', 'name', 'Butamax (United States)'),
(90127, 75216, 'no_lang_code', 'name', 'Drylock Technologies (Belgium)'),
(90128, 75217, 'no_lang_code', 'name', 'DSG Technology (Norway)'),
(90129, 75218, 'no_lang_code', 'name', 'Emery Oleochemicals (Malaysia)'),
(90130, 75219, 'no_lang_code', 'name', 'Centrient Pharmaceuticals (Netherlands)'),
(90131, 75220, 'no_lang_code', 'name', 'Cardinal Health (Ireland)'),
(90132, 75221, 'no_lang_code', 'name', 'Emisphere Technologies (United States)'),
(90133, 75222, 'no_lang_code', 'name', 'Cendres+MƩtaux (Switzerland)'),
(90134, 75223, 'no_lang_code', 'name', 'Made For Retail (United States)'),
(90135, 75224, 'no_lang_code', 'name', 'DUKSAN Neolux (South Korea)'),
(90136, 75225, 'no_lang_code', 'name', 'Restech (United States)'),
(90137, 75226, 'no_lang_code', 'name', 'Dow Chemical (France)'),
(90138, 75227, 'no_lang_code', 'name', 'Dilon Technologies (United States)'),
(90139, 75228, 'no_lang_code', 'name', 'Eagle Pharmaceuticals (United States)'),
(90140, 75229, 'no_lang_code', 'name', 'EBR Systems (United States)'),
(90141, 75230, 'no_lang_code', 'name', 'ECA Medical (United States)'),
(90142, 75231, 'no_lang_code', 'name', 'Ensuiko Sugar Refining (Japan)'),
(90143, 75232, 'no_lang_code', 'name', 'Ethris (Germany)'),
(90144, 75233, 'no_lang_code', 'name', 'Enteris Biopharma (United States)'),
(90145, 75234, 'no_lang_code', 'name', 'Duoject Medical Systems (Canada)'),
(90146, 75235, 'no_lang_code', 'name', 'Eureka Therapeutics (United States)'),
(90147, 75236, 'no_lang_code', 'name', 'Durect (United States)'),
(90148, 75237, 'no_lang_code', 'name', 'Enzo Life Sciences (United States)'),
(90149, 75238, 'no_lang_code', 'name', 'Delmar (Canada)'),
(90150, 75239, 'no_lang_code', 'name', 'Exogenesis (United States)'),
(90151, 75240, 'no_lang_code', 'name', 'Epix Pharmaceuticals (United States)'),
(90152, 75241, 'no_lang_code', 'name', 'Eurobio Scientific (France)'),
(90153, 75242, 'no_lang_code', 'name', 'Exploramed (United States)'),
(90154, 75243, 'no_lang_code', 'name', 'EndoGastric Solutions (United States)'),
(90155, 75244, 'no_lang_code', 'name', 'Exsymol (Monaco)'),
(90156, 75245, 'no_lang_code', 'name', 'Eyesense (Germany)'),
(90157, 75246, 'no_lang_code', 'name', 'Endologix (United States)'),
(90158, 75247, 'no_lang_code', 'name', 'Erregierre (Italy)'),
(90159, 75248, 'no_lang_code', 'name', 'Ezaki Glico (Japan)'),
(90160, 75248, 'ja', 'name', 'ę±Ÿå“Žć‚°ćƒŖć‚³ę Ŗå¼ä¼šē¤¾'),
(90161, 75249, 'no_lang_code', 'name', 'EssilorLuxottica (France)'),
(90162, 75250, 'no_lang_code', 'name', 'Endotronix (United States)'),
(90163, 75251, 'no_lang_code', 'name', 'FGP (Italy)'),
(90164, 75252, 'no_lang_code', 'name', 'Essity (Sweden)'),
(90165, 75253, 'no_lang_code', 'name', 'Engeneic (Australia)'),
(90166, 75254, 'no_lang_code', 'name', 'Fabbrica Italiana Sintetici (Italy)'),
(90167, 75255, 'no_lang_code', 'name', 'Scorpion Therapeutics (United States)'),
(90168, 75256, 'en', 'name', 'Urolife Stone Hospital'),
(90169, 75257, 'no_lang_code', 'name', 'Forestadent (Germany)'),
(90170, 75258, 'no_lang_code', 'name', 'Estech Systems (United States)'),
(90171, 75259, 'no_lang_code', 'name', 'Esteve QuĆ­mica (Spain)'),
(90172, 75260, 'no_lang_code', 'name', 'Fonar (United States)'),
(90173, 75261, 'no_lang_code', 'name', 'Fontem Ventures (Netherlands)'),
(90174, 75262, 'no_lang_code', 'name', 'Nomura Holdings (Japan)'),
(90175, 75262, 'ja', 'name', 'é‡Žę‘ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(90176, 75263, 'en', 'name', 'Team University'),
(90177, 75264, 'en', 'name', 'University of the Sacred Heart Gulu'),
(90178, 75265, 'en', 'name', 'Virtual University of Uganda'),
(90179, 75266, 'en', 'name', 'Institute of Mental Health'),
(90180, 75266, 'ta', 'name', 'ą®•ąÆ€ą®“ąÆą®Ŗą®¾ą®•ąÆą®•ą®®ąÆ ą®…ą®°ą®šąÆ மனநல ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(90181, 75267, 'en', 'name', 'Institute of Petroleum Studies Kampala'),
(90182, 75268, 'en', 'name', 'Ministry of Law and Justice'),
(90183, 75268, 'hi', 'name', 'विधि और ą¤Øą„ą¤Æą¤¾ą¤Æ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(90184, 75269, 'en', 'name', 'Infectious Diseases Institute'),
(90185, 75270, 'en', 'name', 'Uganda Petroleum Institute'),
(90186, 75271, 'en', 'name', 'Fins Medical University'),
(90187, 75272, 'en', 'name', 'ISBAT University'),
(90188, 75273, 'en', 'name', 'Metropolitan International University'),
(90189, 75274, 'no_lang_code', 'name', 'Factor Bioscience (United States)'),
(90190, 75275, 'no_lang_code', 'name', 'Fermion (Finland)'),
(90191, 75276, 'no_lang_code', 'name', 'Fukuda Denshi (Japan)'),
(90192, 75277, 'en', 'name', 'Terra Foundation for American Art'),
(90193, 75278, 'no_lang_code', 'name', 'Hindawi (United Kingdom)'),
(90194, 75279, 'en', 'name', 'Qualitative Data Repository'),
(90195, 75280, 'en', 'name', 'UK Data Service'),
(90196, 75281, 'en', 'name', 'Institute of Animal Biology NAAS'),
(90197, 75281, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біології тварин ŠŠŠŠ'),
(90198, 75282, 'no_lang_code', 'name', 'ADMED (Switzerland)'),
(90199, 75282, 'fr', 'name', 'Analyses et Diagnostics Medicaux'),
(90200, 75283, 'en', 'name', 'Institute of Genetic and Regenerative Medicine of the National Academy of Medical Sciences of Ukraine'),
(90201, 75283, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетичної та регенеративної меГицини ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України"'),
(90202, 75284, 'no_lang_code', 'name', 'Derwen (United States)'),
(90203, 75285, 'en', 'name', 'L.T. Malaya National Therapy Institute of the National Academy of Medical Sciences of Ukraine'),
(90204, 75285, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠŠ°Ń†iональний iŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ терапії iменi Š›.Š¢.ŠœŠ°Š»Š¾Ń— ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(90205, 75286, 'no_lang_code', 'name', 'Amstein + Walthert (Switzerland)'),
(90206, 75287, 'en', 'name', 'Pollinator Partnership'),
(90207, 75288, 'no_lang_code', 'name', 'Boehringer Ingelheim (Switzerland)'),
(90208, 75289, 'no_lang_code', 'name', 'Micos Engineering (Switzerland)'),
(90209, 75290, 'no_lang_code', 'name', 'Spetec (Germany)'),
(90210, 75291, 'en', 'name', 'Pakistan Scientific and Technological Information Centre'),
(90211, 75291, 'ur', 'name', 'پاکستان Ų³Ų§Ų¦Ł†Ų³ŪŒ اور ŲŖŚ©Ł†ŪŒŚ©ŪŒ Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ مرکز'),
(90212, 75292, 'en', 'name', 'Community Agroecology Network'),
(90213, 75293, 'en', 'name', 'Mabula Ground Hornbill Project'),
(90214, 75294, 'es', 'name', 'Fundación Iguaque'),
(90215, 75294, 'en', 'name', 'Iguaque Foundation'),
(90216, 75295, 'no_lang_code', 'name', 'IPS Elektroniklabor (Germany)'),
(90217, 75296, 'en', 'name', 'Global Institute for Water Security'),
(90218, 75297, 'no_lang_code', 'name', 'Protix (Netherlands)'),
(90219, 75298, 'no_lang_code', 'name', 'Theracule (Norway)'),
(90220, 75299, 'no_lang_code', 'name', 'Family Inada (Japan)'),
(90221, 75299, 'ja', 'name', 'ćƒ•ć‚”ćƒŸćƒŖćƒ¼ć‚¤ćƒŠćƒ€ę Ŗå¼ä¼šē¤¾'),
(90222, 75300, 'no_lang_code', 'name', 'Bluejay Mining (United Kingdom)'),
(90223, 75301, 'no_lang_code', 'name', 'France Bed Holdings (Japan)'),
(90224, 75301, 'ja', 'name', 'ćƒ•ćƒ©ćƒ³ć‚¹ćƒ™ćƒƒćƒ‰ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(90225, 75302, 'no_lang_code', 'name', 'ImageRive (Switzerland)'),
(90226, 75303, 'hu', 'name', 'KiskunsƔg National Park'),
(90227, 75304, 'no_lang_code', 'name', 'PEEL Therapeutics (United States)'),
(90228, 75305, 'no_lang_code', 'name', 'Ferno (United States)'),
(90229, 75306, 'no_lang_code', 'name', 'Biocensus (United Kingdom)'),
(90230, 75307, 'no', 'name', 'Artsdatabanken'),
(90231, 75307, 'en', 'name', 'Norwegian Biodiversity Information Centre'),
(90232, 75308, 'no_lang_code', 'name', 'Ferrosan Medical Devices (Denmark)'),
(90233, 75309, 'no_lang_code', 'name', 'Fertin Pharma (Denmark)'),
(90234, 75310, 'no_lang_code', 'name', 'Freund (Japan)'),
(90235, 75311, 'no_lang_code', 'name', 'Fumakilla (Japan)'),
(90236, 75311, 'ja', 'name', 'ćƒ•ćƒžć‚­ćƒ©ćƒ¼'),
(90237, 75312, 'no_lang_code', 'name', 'Filtertek (United States)'),
(90238, 75313, 'no_lang_code', 'name', 'Fuji Chemical Industries (Japan)'),
(90239, 75313, 'ja', 'name', 'åÆŒå£«åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(90240, 75314, 'no_lang_code', 'name', 'FujiFilm VisualSonics (Canada)'),
(90241, 75315, 'en', 'name', 'Polish Botanical Society'),
(90242, 75315, 'pl', 'name', 'Polskie Towarzystwo Botaniczne'),
(90243, 75316, 'no_lang_code', 'name', 'Gene Signal (Switzerland)'),
(90244, 75317, 'no_lang_code', 'name', 'Fuso Pharmaceutical Industries (Japan)'),
(90245, 75317, 'ja', 'name', 'ę‰¶ę”‘č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(90246, 75318, 'no_lang_code', 'name', 'Groupe LƩpine (France)'),
(90247, 75319, 'no_lang_code', 'name', 'Alpek (Mexico)'),
(90248, 75320, 'no_lang_code', 'name', 'Evive Biotech (China)'),
(90249, 75321, 'no_lang_code', 'name', 'Halkey-Roberts (United States)'),
(90250, 75322, 'en', 'name', 'VA Central Western Massachusetts Healthcare System'),
(90251, 75323, 'en', 'name', 'VA Illiana Health Care System'),
(90252, 75324, 'en', 'name', 'VA Northern Indiana Health Care System'),
(90253, 75325, 'en', 'name', 'Oscar G. Johnson VA Medical Center'),
(90254, 75326, 'en', 'name', 'Togus VA Medical Center'),
(90255, 75327, 'en', 'name', 'John J. Pershing VA Medical Center'),
(90256, 75328, 'en', 'name', 'Marion VA Medical Center'),
(90257, 75329, 'no_lang_code', 'name', 'Sulzer (United States)'),
(90258, 75330, 'en', 'name', 'VA Hudson Valley Health Care System');
INSERT INTO `ror_settings` VALUES
(90259, 75331, 'en', 'name', 'Bath VA Medical Center'),
(90260, 75332, 'en', 'name', 'Robert J. Dole VA Medical Center'),
(90261, 75333, 'en', 'name', 'Erie VA Medical Center'),
(90262, 75334, 'en', 'name', 'James E. Van Zandt VA Medical Center'),
(90263, 75335, 'en', 'name', 'Alexandria VA Medical Center'),
(90264, 75336, 'en', 'name', 'Eastern Oklahoma VA Health Care System'),
(90265, 75337, 'en', 'name', 'Jack C. Montgomery VA Medical Center'),
(90266, 75338, 'en', 'name', 'VA Gulf Coast Veterans Health Care System'),
(90267, 75339, 'en', 'name', 'Louis A. Johnson VA Medical Center'),
(90268, 75340, 'en', 'name', 'Lebanon VA Medical Center'),
(90269, 75341, 'en', 'name', 'VA Butler Healthcare'),
(90270, 75342, 'en', 'name', 'Wilkes-Barre VA Medical Center'),
(90271, 75343, 'en', 'name', 'Wilmington VA Medical Center'),
(90272, 75344, 'en', 'name', 'Martinsburg VA Medical Center'),
(90273, 75345, 'en', 'name', 'Veterans Health Care System of the Ozarks'),
(90274, 75346, 'en', 'name', 'Kerrville VA Medical Center'),
(90275, 75347, 'en', 'name', 'Perry Point VA Medical Center'),
(90276, 75348, 'en', 'name', 'El Paso VA Health Care System'),
(90277, 75349, 'no_lang_code', 'name', 'Guided Therapy Systems (United States)'),
(90278, 75350, 'en', 'name', 'Charles George VA Medical Center'),
(90279, 75351, 'en', 'name', 'West Texas VA Health Care System'),
(90280, 75352, 'no_lang_code', 'name', 'Gunze (Japan)'),
(90281, 75352, 'ja', 'name', 'ć‚°ćƒ³ć‚¼ę Ŗå¼ä¼šē¤¾'),
(90282, 75353, 'no_lang_code', 'name', 'Gynesonics (United States)'),
(90283, 75354, 'en', 'name', 'George H. O''Brien, Jr. VA Medical Center'),
(90284, 75355, 'en', 'name', 'Beckley VA Medical Center'),
(90285, 75356, 'en', 'name', 'Fayetteville VA Medical Center'),
(90286, 75357, 'en', 'name', 'VA Montana Health Care System'),
(90287, 75358, 'no_lang_code', 'name', 'Hallstar Beauty (United States)'),
(90288, 75359, 'en', 'name', 'Cheyenne VA Medical Center'),
(90289, 75360, 'en', 'name', 'VA Western Colorado Health Care System'),
(90290, 75361, 'en', 'name', 'Grand Junction VA Medical Center'),
(90291, 75362, 'en', 'name', 'Carl Vinson VA Medical Center'),
(90292, 75363, 'en', 'name', 'Central Alabama Veterans Health Care System'),
(90293, 75364, 'no_lang_code', 'name', 'Halocarbon (United States)'),
(90294, 75365, 'en', 'name', 'Sheridan VA Medical Center'),
(90295, 75366, 'en', 'name', 'VA Roseburg Healthcare System'),
(90296, 75367, 'no_lang_code', 'name', 'Hamari Chemicals (Japan)'),
(90297, 75368, 'no_lang_code', 'name', 'Hamilton Medical (Switzerland)'),
(90298, 75369, 'en', 'name', 'Mann-Grandstaff VA Medical Center'),
(90299, 75370, 'en', 'name', 'Orlando VA Medical Center'),
(90300, 75371, 'en', 'name', 'VA Southern Nevada Healthcare System'),
(90301, 75372, 'en', 'name', 'Fargo VA Health Care System'),
(90302, 75373, 'en', 'name', 'VA Black Hills Health Care System'),
(90303, 75374, 'en', 'name', 'Hershel Woody Williams VA Medical Center'),
(90304, 75375, 'no_lang_code', 'name', 'Hangzhou DAC Biotech (China)'),
(90305, 75375, 'zh', 'name', 'ę­å·žå¤šē¦§ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(90306, 75376, 'no_lang_code', 'name', 'Squadron Capital (China)'),
(90307, 75377, 'en', 'name', 'Chillicothe VA Medical Center'),
(90308, 75378, 'en', 'name', 'Aleda E. Lutz VA Medical Center'),
(90309, 75379, 'no_lang_code', 'name', 'Gerresheimer (Germany)'),
(90310, 75380, 'no_lang_code', 'name', 'Harro Hƶfliger (Germany)'),
(90311, 75381, 'en', 'name', 'Battle Creek VA Medical Center'),
(90312, 75382, 'no_lang_code', 'name', 'Geuder (Germany)'),
(90313, 75383, 'no_lang_code', 'name', 'GF Biochemicals (Italy)'),
(90314, 75384, 'no_lang_code', 'name', 'GI Dynamics (United States)'),
(90315, 75385, 'no_lang_code', 'name', 'Gibaud (France)'),
(90316, 75386, 'no_lang_code', 'name', 'Haselmeier (Germany)'),
(90317, 75387, 'no_lang_code', 'name', 'Glykos (Finland)'),
(90318, 75388, 'no_lang_code', 'name', 'H.C. Starck (Germany)'),
(90319, 75389, 'no_lang_code', 'name', 'Giuliani (Italy)'),
(90320, 75390, 'no_lang_code', 'name', 'Hexion (United States)'),
(90321, 75391, 'no_lang_code', 'name', 'HighLife (France)'),
(90322, 75392, 'no_lang_code', 'name', 'Health & Life (Taiwan)'),
(90323, 75392, 'zh', 'name', 'åˆäø–ē”Ÿé†«ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(90324, 75393, 'no_lang_code', 'name', 'Hip Innovation Technology (United States)'),
(90325, 75394, 'no_lang_code', 'name', 'HLT (United States)'),
(90326, 75395, 'no_lang_code', 'name', 'Hokko Chemical Industry (Japan)'),
(90327, 75395, 'ja', 'name', 'åŒ—čˆˆåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(90328, 75396, 'no_lang_code', 'name', 'Heine Optotechnik (Germany)'),
(90329, 75397, 'no_lang_code', 'name', 'Helix Biomedix (United States)'),
(90330, 75398, 'no_lang_code', 'name', 'Helm (Germany)'),
(90331, 75399, 'no_lang_code', 'name', 'Helperby Therapeutics (United Kingdom)'),
(90332, 75400, 'no_lang_code', 'name', 'Henke-Sass Wolf (Germany)'),
(90333, 75401, 'no_lang_code', 'name', 'IBC Pharmaceuticals (India)'),
(90334, 75402, 'no_lang_code', 'name', 'I.C. Medical (United States)'),
(90335, 75403, 'no_lang_code', 'name', 'Hexima (Australia)'),
(90336, 75404, 'no_lang_code', 'name', 'iCeutica (United States)'),
(90337, 75405, 'no_lang_code', 'name', 'Honshu Chemical Industry (Japan)'),
(90338, 75405, 'ja', 'name', 'ęœ¬å·žåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(90339, 75406, 'no_lang_code', 'name', 'Ichnos Sciences (United States)'),
(90340, 75407, 'no_lang_code', 'name', 'IMDS (United States)'),
(90341, 75408, 'no_lang_code', 'name', 'Immunolight (United States)'),
(90342, 75409, 'no_lang_code', 'name', 'Hoyu (Japan)'),
(90343, 75409, 'ja', 'name', 'ćƒ›ćƒ¼ćƒ¦ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(90344, 75410, 'no_lang_code', 'name', 'Clement Clarke International (United Kingdom)'),
(90345, 75411, 'no_lang_code', 'name', 'ICU Medical (United States)'),
(90346, 75412, 'no_lang_code', 'name', 'Ferno (United Kingdom)'),
(90347, 75413, 'no_lang_code', 'name', 'Immunovative Therapies (Israel)'),
(90348, 75414, 'no_lang_code', 'name', 'Zacros (Japan)'),
(90349, 75415, 'no_lang_code', 'name', 'IGM Biosciences (United States)'),
(90350, 75416, 'no_lang_code', 'name', 'Golden Biotech (Taiwan)'),
(90351, 75416, 'zh', 'name', 'åœ‹é¼Žē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(90352, 75417, 'no_lang_code', 'name', 'Marcus (United States)'),
(90353, 75418, 'no_lang_code', 'name', 'Impedimed (Australia)'),
(90354, 75419, 'no_lang_code', 'name', 'Implantica (Switzerland)'),
(90355, 75420, 'no_lang_code', 'name', 'HealthpointCapital (United States)'),
(90356, 75421, 'no_lang_code', 'name', 'IMRIS (United States)'),
(90357, 75422, 'no_lang_code', 'name', 'CK Hutchison (China)'),
(90358, 75422, 'zh', 'name', 'é•·ę±Ÿå’ŒčØ˜åÆ¦ę„­ęœ‰é™å…¬åø'),
(90359, 75423, 'no_lang_code', 'name', 'IGM Group (Greece)'),
(90360, 75424, 'no_lang_code', 'name', 'KalƩo (United States)'),
(90361, 75425, 'no_lang_code', 'name', 'Hydromer (United States)'),
(90362, 75426, 'no_lang_code', 'name', 'Hyprotek (United States)'),
(90363, 75427, 'no_lang_code', 'name', 'ORIG3N (United States)'),
(90364, 75428, 'no_lang_code', 'name', 'Intersect ENT (United States)'),
(90365, 75429, 'en', 'name', 'Nordic Laboratory for Luminescence Dating'),
(90366, 75429, 'da', 'name', 'Nordisk Laboratorium for Luminescensdatering'),
(90367, 75430, 'no_lang_code', 'name', 'Recipharm (France)'),
(90368, 75431, 'no_lang_code', 'name', 'Vyne Therapeutics (Israel)'),
(90369, 75432, 'en', 'name', 'International Investment Bank'),
(90370, 75432, 'hu', 'name', 'Nemzetkƶzi BeruhƔzƔsi Bank'),
(90371, 75433, 'nl', 'name', 'Nederlands Instituut Forensische Psychiatrie'),
(90372, 75434, 'en', 'name', 'International Education Specialist College'),
(90373, 75435, 'no_lang_code', 'name', 'Indus Biotech (India)'),
(90374, 75436, 'no_lang_code', 'name', 'Industriale Chimica (Italy)'),
(90375, 75437, 'no_lang_code', 'name', 'Industrie Borla (Italy)'),
(90376, 75438, 'no_lang_code', 'name', 'First Quality (United States)'),
(90377, 75439, 'no_lang_code', 'name', 'Incept (United States)'),
(90378, 75440, 'no_lang_code', 'name', 'Infinitus (China)'),
(90379, 75440, 'zh', 'name', 'ę— é™ęžäø­åæƒ'),
(90380, 75441, 'no_lang_code', 'name', 'Fisher & Paykel Appliances (New Zealand)'),
(90381, 75442, 'no_lang_code', 'name', 'InCube Labs (United States)'),
(90382, 75443, 'no_lang_code', 'name', 'STgenetics (United States)'),
(90383, 75444, 'no_lang_code', 'name', 'Indian Ocean Medical Trading (Somalia)'),
(90384, 75445, 'no_lang_code', 'name', 'Inis Biotech (Argentina)'),
(90385, 75446, 'no_lang_code', 'name', 'Frontline Medical Products (United States)'),
(90386, 75447, 'no_lang_code', 'name', 'Neuraxpharm (Spain)'),
(90387, 75448, 'no_lang_code', 'name', 'Iridex (United States)'),
(90388, 75449, 'no_lang_code', 'name', 'Glidewell (United States)'),
(90389, 75450, 'no_lang_code', 'name', 'Innoviva (United States)'),
(90390, 75451, 'no_lang_code', 'name', 'Gencor (China)'),
(90391, 75452, 'no_lang_code', 'name', 'BrightPath Biotherapeutics (Japan)'),
(90392, 75453, 'no_lang_code', 'name', 'Insightra Medical (United States)'),
(90393, 75454, 'no_lang_code', 'name', 'Floratech (United States)'),
(90394, 75455, 'no_lang_code', 'name', 'Grindeks (Latvia)'),
(90395, 75456, 'no_lang_code', 'name', 'Integra LifeSciences (Switzerland)'),
(90396, 75457, 'no_lang_code', 'name', 'Isagro (Italy)'),
(90397, 75458, 'no_lang_code', 'name', 'iSense (United States)'),
(90398, 75459, 'no_lang_code', 'name', 'Juul (United States)'),
(90399, 75460, 'en', 'name', 'Biomedical Translation Research Center'),
(90400, 75461, 'en', 'name', 'RIKEN Center for Advanced Intelligence Project'),
(90401, 75461, 'ja', 'name', 'ē‰¹å®šå›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ é©ę–°ēŸ„čƒ½ēµ±åˆē ”ē©¶ć‚»ćƒ³ć‚æ'),
(90402, 75462, 'en', 'name', 'Leibniz Institute for Resilience Research'),
(90403, 75462, 'de', 'name', 'Leibniz-Institut für Resilienzforschung'),
(90404, 75463, 'en', 'name', 'Leibniz Institute for Financial Research SAFE'),
(90405, 75463, 'de', 'name', 'Leibniz-Institut für Finanzmarktforschung'),
(90406, 75464, 'en', 'name', 'RIKEN BioResource Research Center'),
(90407, 75464, 'ja', 'name', 'ē†ē ”ćƒć‚¤ć‚ŖćƒŖć‚½ćƒ¼ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(90408, 75465, 'no_lang_code', 'name', 'JW Medical Systems (China)'),
(90409, 75466, 'no_lang_code', 'name', 'Isochem (France)'),
(90410, 75467, 'no_lang_code', 'name', 'Aurinia (Canada)'),
(90411, 75468, 'no_lang_code', 'name', 'Humanigen (United States)'),
(90412, 75469, 'no_lang_code', 'name', 'IZI Medical (United States)'),
(90413, 75470, 'no_lang_code', 'name', 'Kanto Chemical (Japan)'),
(90414, 75471, 'no_lang_code', 'name', 'Katalyst Surgical (United States)'),
(90415, 75472, 'no_lang_code', 'name', 'Curt G Joa (United States)'),
(90416, 75473, 'no_lang_code', 'name', 'Air Water (Japan)'),
(90417, 75474, 'no_lang_code', 'name', 'KOB (Germany)'),
(90418, 75475, 'no_lang_code', 'name', 'JGC Catalysts and Chemicals (Japan)'),
(90419, 75476, 'no_lang_code', 'name', 'KM Biologics (Japan)'),
(90420, 75476, 'ja', 'name', 'KMćƒć‚¤ć‚Ŗćƒ­ć‚øć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(90421, 75477, 'no_lang_code', 'name', 'Kobayashi Pharmaceutical (Japan)'),
(90422, 75478, 'no_lang_code', 'name', 'JGC (Japan)'),
(90423, 75478, 'ja', 'name', 'ę—„ę®ę Ŗå¼ä¼šē¤¾'),
(90424, 75479, 'no_lang_code', 'name', 'KDS Development (United States)'),
(90425, 75480, 'no_lang_code', 'name', 'Kobo Products (United States)'),
(90426, 75481, 'no_lang_code', 'name', 'Kode Biotech (New Zealand)'),
(90427, 75482, 'no_lang_code', 'name', 'Kemin (Belgium)'),
(90428, 75483, 'no_lang_code', 'name', 'KemPharm (United States)'),
(90429, 75484, 'no_lang_code', 'name', 'Koei Chemical (Japan)'),
(90430, 75484, 'ja', 'name', 'åŗƒę „åŒ–å­¦'),
(90431, 75485, 'fr', 'name', 'Groupe Lesaffre'),
(90432, 75485, 'no_lang_code', 'name', 'Lesaffre (France)'),
(90433, 75486, 'it', 'name', 'Fondazione Piemontese per la Ricerca sul Cancro Onlus'),
(90434, 75487, 'no_lang_code', 'name', 'SecurAcath (United States)'),
(90435, 75488, 'en', 'name', 'Delta Institute for Theoretical Physics'),
(90436, 75489, 'en', 'name', 'Collaborative Innovation Center of Chemical Science and Engineering Tianjin'),
(90437, 75489, 'zh', 'name', 'å¤©ę“„åŒ–å­¦åŒ–å·„ååŒåˆ›ę–°äø­åæƒ'),
(90438, 75490, 'no_lang_code', 'name', 'Eneos (Japan)'),
(90439, 75490, 'ja', 'name', 'ć‚Øćƒć‚Ŗć‚¹'),
(90440, 75491, 'en', 'name', 'CAS Key Laboratory of Urban Pollutant Conversion'),
(90441, 75491, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŸŽåø‚ę±”ęŸ“ē‰©č½¬åŒ–é‡ē‚¹å®žéŖŒå®¤'),
(90442, 75492, 'no_lang_code', 'name', 'KettenbachDental (Germany)'),
(90443, 75493, 'en', 'name', 'Institute of Molecular Functional Materials'),
(90444, 75493, 'zh', 'name', 'åˆ†å­åŠŸčƒ½ęę–™ē ”ē©¶ę‰€'),
(90445, 75494, 'en', 'name', 'Center for Light Energy Activated Redox Processes'),
(90446, 75495, 'no_lang_code', 'name', 'Kyulux (Japan)'),
(90447, 75496, 'en', 'name', 'Joint Center for Artificial Photosynthesis'),
(90448, 75497, 'en', 'name', 'State Key Laboratory of Synthetic Chemistry'),
(90449, 75497, 'zh', 'name', 'åˆęˆåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(90450, 75498, 'en', 'name', 'Joint Center for Quantum Information and Computer Science'),
(90451, 75499, 'en', 'name', 'Southern Nevada Water Authority'),
(90452, 75500, 'en', 'name', 'DKFZ-ZMBH Alliance'),
(90453, 75501, 'de', 'name', 'DVGW - Technologiezentrum Wasser'),
(90454, 75502, 'de', 'name', 'Photonik-Zentrum Kaiserslautern'),
(90455, 75503, 'no_lang_code', 'name', 'HoMedics (United States)'),
(90456, 75504, 'no_lang_code', 'name', 'Josef Meissner (Germany)'),
(90457, 75505, 'no_lang_code', 'name', 'Integer (United States)'),
(90458, 75506, 'no_lang_code', 'name', 'Kumho Petrochemical (South Korea)'),
(90459, 75506, 'ko', 'name', 'źøˆķ˜øģ„ģœ ķ™”ķ•™ ģ£¼ģ‹ķšŒģ‚¬'),
(90460, 75507, 'no_lang_code', 'name', 'Olon (Italy)'),
(90461, 75508, 'no_lang_code', 'name', 'Lacer (Spain)'),
(90462, 75509, 'no_lang_code', 'name', 'Huizhou Kimree Technology (China)'),
(90463, 75509, 'zh', 'name', 'ęƒ å·žåø‚é‡‘ē‘žē§‘ęŠ€ęœ‰é™å…¬åø'),
(90464, 75510, 'no_lang_code', 'name', 'Kinamed (United States)'),
(90465, 75511, 'no_lang_code', 'name', 'Kind Consumer (United Kingdom)'),
(90466, 75512, 'no_lang_code', 'name', 'Kringle Pharma (Japan)'),
(90467, 75512, 'ja', 'name', 'ć‚ÆćƒŖćƒ³ć‚°ćƒ«ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(90468, 75513, 'no_lang_code', 'name', 'Kindeva Drug Delivery (United States)'),
(90469, 75514, 'no_lang_code', 'name', 'KOSƉ (Japan)'),
(90470, 75514, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚³ćƒ¼ć‚»ćƒ¼'),
(90471, 75515, 'no_lang_code', 'name', 'Koken (Japan)'),
(90472, 75515, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é«˜ē ”'),
(90473, 75516, 'no_lang_code', 'name', 'Laboratorios FarmaceĆŗticos Rovi (Spain)'),
(90474, 75517, 'no_lang_code', 'name', 'Klox Technologies (Canada)'),
(90475, 75518, 'es', 'name', 'Fundación María Cristina Masaveu Peterson'),
(90476, 75518, 'en', 'name', 'MarĆ­a Cristina Masaveu Peterson Foundation'),
(90477, 75519, 'no_lang_code', 'name', 'Lamberti (Italy)'),
(90478, 75520, 'no_lang_code', 'name', 'Kumiai Chemical Industry (Japan)'),
(90479, 75520, 'ja', 'name', 'ć‚ÆćƒŸć‚¢ć‚¤åŒ–å­¦å·„ę„­'),
(90480, 75521, 'no_lang_code', 'name', 'Kuraray Noritake Dental (Japan)'),
(90481, 75521, 'ja', 'name', 'ć‚Æćƒ©ćƒ¬ćƒŽćƒŖć‚æć‚±ćƒ‡ćƒ³ć‚æćƒ«ę Ŗå¼ä¼šē¤¾'),
(90482, 75522, 'no_lang_code', 'name', 'POGO (United States)'),
(90483, 75523, 'no_lang_code', 'name', 'Kyoto Pharmaceutical Industries (Japan)'),
(90484, 75523, 'ja', 'name', 'äŗ¬éƒ½č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(90485, 75524, 'no_lang_code', 'name', 'Kyowa Chemical Industry (Japan)'),
(90486, 75524, 'ja', 'name', 'å”å’ŒåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(90487, 75525, 'no_lang_code', 'name', 'Lifetech Scientific (China)'),
(90488, 75526, 'no_lang_code', 'name', 'Laurus labs (India)'),
(90489, 75527, 'no_lang_code', 'name', 'LeMaitre Vascular (United States)'),
(90490, 75528, 'no_lang_code', 'name', 'Lensar (United States)'),
(90491, 75529, 'no_lang_code', 'name', 'LimaCorporate (Italy)'),
(90492, 75530, 'no_lang_code', 'name', 'Lexion Medical (United States)'),
(90493, 75531, 'no_lang_code', 'name', 'Linak (Denmark)'),
(90494, 75532, 'no_lang_code', 'name', 'Lohmann & Rauscher (Germany)'),
(90495, 75533, 'no_lang_code', 'name', 'Linares Medical Devices (United States)'),
(90496, 75534, 'no_lang_code', 'name', 'Lohmann (Germany)'),
(90497, 75535, 'no_lang_code', 'name', 'Lorem Vascular (Singapore)'),
(90498, 75536, 'no_lang_code', 'name', 'Lipocine (United States)'),
(90499, 75537, 'no_lang_code', 'name', 'Lotte Fine Chemical (South Korea)'),
(90500, 75538, 'no_lang_code', 'name', 'LRC Products (United States)'),
(90501, 75539, 'no_lang_code', 'name', 'Lianyungang Runzhong Pharmaceutical (China)'),
(90502, 75539, 'zh', 'name', 'čæžäŗ‘ęøÆę¶¦ä¼—åˆ¶čÆęœ‰é™å…¬åø'),
(90503, 75540, 'no_lang_code', 'name', 'Life Spine (United States)'),
(90504, 75541, 'no_lang_code', 'name', 'Lumtec (Taiwan)'),
(90505, 75542, 'no_lang_code', 'name', 'Lungpacer Medical (Canada)'),
(90506, 75543, 'en', 'name', 'Morgridge Institute for Research'),
(90507, 75544, 'nl', 'name', 'Koninklijke Musea voor Schone Kunsten van Belgiƫ'),
(90508, 75544, 'fr', 'name', 'MusƩes royaux des Beaux-Arts de Belgique'),
(90509, 75544, 'en', 'name', 'Royal Museums of Fine Arts of Belgium'),
(90510, 75545, 'it', 'name', 'Agenzia Regionale Sanitaria della Puglia'),
(90511, 75546, 'en', 'name', 'European Regional and Local Health Authorities'),
(90512, 75547, 'nl', 'name', 'Provinciaal Instituut voor Hygiƫne'),
(90513, 75547, 'en', 'name', 'Provincial Institute for Hygiene'),
(90514, 75548, 'en', 'name', 'Shriners Hospitals for Children'),
(90515, 75549, 'it', 'name', 'Fondazione Banca degli Occhi del Veneto Onlus'),
(90516, 75549, 'en', 'name', 'Veneto Eye Bank Foundation'),
(90517, 75550, 'fr', 'name', 'Institut SupƩrieur de DƩveloppement Rural'),
(90518, 75551, 'en', 'name', 'European Research Infrastructure on Highly Pathogenic Agents'),
(90519, 75552, 'en', 'name', 'Antwerp Management School'),
(90520, 75553, 'en', 'name', 'Hague Institute of Private International and Foreign Law'),
(90521, 75553, 'nl', 'name', 'Stichting Internationaal Juridisch Instituut'),
(90522, 75554, 'no_lang_code', 'name', 'Lutronic (South Korea)'),
(90523, 75555, 'en', 'name', 'Caritas Cyprus'),
(90524, 75556, 'nl', 'name', 'Domus Medica'),
(90525, 75557, 'fr', 'name', 'Centre Hospitalier RƩgional de Namur'),
(90526, 75558, 'no_lang_code', 'name', 'Lysando (Liechtenstein)'),
(90527, 75559, 'en', 'name', 'GoodPlanet Belgium'),
(90528, 75560, 'fr', 'name', 'CHR Verviers'),
(90529, 75561, 'en', 'name', 'International Foundation for Integrated Care'),
(90530, 75562, 'no_lang_code', 'name', 'Machida Endoscope (Japan)'),
(90531, 75562, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē”ŗē”°č£½ä½œę‰€'),
(90532, 75563, 'es', 'name', 'Ilustre Colegio Nacional de Doctores y Licenciados en Ciencias PolĆ­ticas y SociologĆ­a'),
(90533, 75563, 'en', 'name', 'Professional Association of Sociologists and Political Scientists'),
(90534, 75564, 'fr', 'name', 'RƩseau des Acheteurs Hospitaliers'),
(90535, 75565, 'en', 'name', 'Flanders Institute for Logistics'),
(90536, 75565, 'nl', 'name', 'Vlaams Instituut voor de Logistiek'),
(90537, 75566, 'no_lang_code', 'name', 'Magic Leap (United States)'),
(90538, 75567, 'no_lang_code', 'name', 'Magnolia Medical Technologies (United States)'),
(90539, 75568, 'en', 'name', 'Flemish Patiƫnt Platform vzw'),
(90540, 75568, 'nl', 'name', 'Vlaams Patiƫntenplatform'),
(90541, 75569, 'no_lang_code', 'name', 'Magstim (United Kingdom)'),
(90542, 75570, 'en', 'name', 'Missing Children Europe'),
(90543, 75571, 'en', 'name', 'International Centre for Archival Research'),
(90544, 75572, 'en', 'name', 'Child Rights Foundation'),
(90545, 75572, 'hu', 'name', 'Hintalovon Alapitvany'),
(90546, 75573, 'no_lang_code', 'name', 'Aurigon (Hungary)'),
(90547, 75574, 'en', 'name', 'Flemish Institute for Archives'),
(90548, 75574, 'nl', 'name', 'Vlaams Instituut voor Archivering'),
(90549, 75575, 'en', 'name', 'HFC Hope for Children CRC Policy Center'),
(90550, 75576, 'en', 'name', 'Egyptian Center for Innovation and Technology Development'),
(90551, 75577, 'en', 'name', 'Euro-Arab Foundation for Higher Studies'),
(90552, 75578, 'no_lang_code', 'name', 'LiveDo (Japan)'),
(90553, 75579, 'no_lang_code', 'name', 'MAM Babyartikel (Germany)'),
(90554, 75580, 'no_lang_code', 'name', 'Loewenstein Medical Technology (Germany)'),
(90555, 75581, 'no_lang_code', 'name', 'Mane (France)'),
(90556, 75582, 'no_lang_code', 'name', 'Mangar Health (United Kingdom)'),
(90557, 75583, 'no_lang_code', 'name', 'MANI (Japan)'),
(90558, 75584, 'no_lang_code', 'name', 'Medibeacon (United States)'),
(90559, 75585, 'no_lang_code', 'name', 'Israel Corp (Israel)'),
(90560, 75585, 'he', 'name', 'החברה ×œ×™×©×Ø××œ'),
(90561, 75586, 'en', 'name', 'Intelligent Synthetic Biology Center'),
(90562, 75586, 'ko', 'name', 'ģ§€ėŠ„ķ˜• ė°”ģ“ģ˜¤ģ‹œģŠ¤ķ…œ 설계 ė° 합성 연구단'),
(90563, 75587, 'no_lang_code', 'name', 'Medical Components (United States)'),
(90564, 75588, 'no_lang_code', 'name', 'Medicaroid (Japan)'),
(90565, 75588, 'ja', 'name', 'ćƒ”ćƒ‡ć‚£ć‚«ćƒ­ć‚¤ćƒ‰'),
(90566, 75589, 'no_lang_code', 'name', 'Mardil (United States)'),
(90567, 75590, 'no_lang_code', 'name', 'Barricaid (United States)'),
(90568, 75591, 'no_lang_code', 'name', 'Koh Young Technology (South Korea)'),
(90569, 75592, 'no_lang_code', 'name', 'Medicomp (United States)'),
(90570, 75593, 'no_lang_code', 'name', 'Adhera Therapeutics (United States)'),
(90571, 75594, 'no_lang_code', 'name', 'Marine Polymer Technologies (United States)'),
(90572, 75595, 'no_lang_code', 'name', 'Lumenis (Israel)'),
(90573, 75596, 'no_lang_code', 'name', 'Mapi Pharma (Israel)'),
(90574, 75597, 'no_lang_code', 'name', 'Maruishi Pharmaceutical (Japan)'),
(90575, 75597, 'ja', 'name', 'äøøēŸ³č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(90576, 75598, 'no_lang_code', 'name', 'MediGuide (United States)'),
(90577, 75599, 'no_lang_code', 'name', 'Cosmo Energy (Japan)'),
(90578, 75599, 'ja', 'name', 'ć‚³ć‚¹ćƒ¢ć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(90579, 75600, 'no_lang_code', 'name', 'Medigus (Israel)'),
(90580, 75601, 'no_lang_code', 'name', 'Maui Imaging (United States)'),
(90581, 75602, 'no_lang_code', 'name', 'Medinol (Israel)'),
(90582, 75603, 'no_lang_code', 'name', 'Medrobotics (United States)'),
(90583, 75604, 'no_lang_code', 'name', 'Mayne Pharma (Australia)'),
(90584, 75605, 'no_lang_code', 'name', 'Meagan Medical (United States)'),
(90585, 75606, 'no_lang_code', 'name', 'Cantel Medical (United States)'),
(90586, 75607, 'et', 'name', 'Tartu Ülikooli Loodusmuuseum'),
(90587, 75607, 'en', 'name', 'University of Tartu Natural History Museum and Botanical Garden'),
(90588, 75608, 'no_lang_code', 'name', 'Medacta International (Switzerland)'),
(90589, 75609, 'no_lang_code', 'name', 'MEDRx (Japan)'),
(90590, 75610, 'en', 'name', 'Research Institute of Wood Industry'),
(90591, 75610, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ ęœØęå·„äøšē ”ē©¶ę‰€'),
(90592, 75611, 'en', 'name', 'Experimental Center of Forestry in North China'),
(90593, 75611, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢åŽåŒ—ęž—äøšå®žéŖŒäø­åæƒ'),
(90594, 75612, 'en', 'name', 'Institute of Desertification Studies'),
(90595, 75612, 'zh', 'name', 'č’ę¼ åŒ–ē ”ē©¶ę‰€'),
(90596, 75613, 'no_lang_code', 'name', 'Merete (Germany)'),
(90597, 75614, 'en', 'name', 'Institute of Forest Ecology, Environment and Protection'),
(90598, 75614, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ę£®ęž—ē”Ÿę€ēŽÆå¢ƒäøŽäæęŠ¤ē ”ē©¶ę‰€'),
(90599, 75615, 'en', 'name', 'Institute of Forest Resource Information Techniques'),
(90600, 75615, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢čµ„ęŗäæ”ęÆē ”ē©¶ę‰€'),
(90601, 75616, 'en', 'name', 'Institute of New Technology of Forestry'),
(90602, 75617, 'en', 'name', 'Institute of Wetland Research'),
(90603, 75617, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ę¹æåœ°ē ”ē©¶ę‰€'),
(90604, 75618, 'en', 'name', 'Institute of Chemical Industry of Forest Products'),
(90605, 75618, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ęž—äŗ§åŒ–å­¦å·„äøšē ”ē©¶ę‰€'),
(90606, 75619, 'no_lang_code', 'name', 'Merus (Netherlands)'),
(90607, 75620, 'en', 'name', 'Research Institute of Forestry'),
(90608, 75620, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ęž—äøšē ”ē©¶ę‰€'),
(90609, 75621, 'en', 'name', 'Research Institute of Resource Insects'),
(90610, 75621, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢čµ„ęŗę˜†č™«ē ”ē©¶ę‰€'),
(90611, 75622, 'en', 'name', 'Research Institute of Forestry Policy and Information'),
(90612, 75622, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ęž—äøšē ”ē©¶ę‰€'),
(90613, 75623, 'en', 'name', 'Research Institute of Subtropical Foresty'),
(90614, 75623, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢äŗšēƒ­åø¦ęž—äøšē ”ē©¶ę‰€'),
(90615, 75624, 'en', 'name', 'Research Institute of Tropical Forestry'),
(90616, 75624, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ēƒ­åø¦ęž—äøšē ”ē©¶ę‰€'),
(90617, 75625, 'en', 'name', 'Research Center of Saline and Akali Land of State Foresty Administration'),
(90618, 75625, 'zh', 'name', 'å›½å®¶ęž—äøšå±€ē›ē¢±åœ°ē ”ē©¶äø­åæƒäŗŽ'),
(90619, 75626, 'en', 'name', 'Beijing Foresty Machinery Institute'),
(90620, 75626, 'zh', 'name', 'å›½å®¶ęž—äøšå’Œč‰åŽŸå±€åŒ—äŗ¬ęž—äøšęœŗę¢°ē ”ē©¶ę‰€'),
(90621, 75627, 'en', 'name', 'Harbin Foresty Machinery Institute'),
(90622, 75627, 'zh', 'name', 'å›½å®¶ęž—äøšå±€å“ˆå°”ę»Øęž—äøšęœŗę¢°ē ”ē©¶ę‰€'),
(90623, 75628, 'no_lang_code', 'name', 'Metran (Japan)'),
(90624, 75628, 'ja', 'name', 'ピトラン'),
(90625, 75629, 'no_lang_code', 'name', 'Mevion Medical Systems (United States)'),
(90626, 75630, 'en', 'name', 'Institute of Network Cultures'),
(90627, 75631, 'en', 'name', 'Government Accountability Project'),
(90628, 75632, 'en', 'name', 'American Action Forum'),
(90629, 75633, 'en', 'name', 'Citizens Information Board'),
(90630, 75634, 'no_lang_code', 'name', 'Altus Capital Partners (United States)'),
(90631, 75635, 'en', 'name', 'Eucalyptus Research Center'),
(90632, 75635, 'zh', 'name', 'å›½å®¶ęž—äøšå’Œč‰åŽŸå±€ę”‰ę ‘ē ”ē©¶å¼€å‘äø­åæƒ'),
(90633, 75636, 'no_lang_code', 'name', 'Paulownia Research Center'),
(90634, 75636, 'zh', 'name', 'å›½å®¶ęž—äøšå’Œč‰åŽŸå±€ę³”ę”ē ”ē©¶å¼€å‘äø­åæƒ'),
(90635, 75637, 'en', 'name', 'Desert Forestry Experimental Center'),
(90636, 75637, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ę²™ę¼ ęž—äøšå®žéŖŒäø­åæƒ'),
(90637, 75638, 'en', 'name', 'Experimental Center of Subtropical Forestry'),
(90638, 75639, 'en', 'name', 'Experimental Center of Tropical Forestry'),
(90639, 75639, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ēƒ­åø¦ęž—äøšå®žéŖŒäø­åæƒ'),
(90640, 75640, 'es', 'name', 'NEIKER, Instituto Vasco de Investigación y Desarrollo Agrario'),
(90641, 75640, 'eu', 'name', 'NEIKER, Nekazaritza Ikerketa eta Garapenerako Euskal Erakundea'),
(90642, 75640, 'en', 'name', 'NEIKER, the Basque Institute for Agricultural Research and Development'),
(90643, 75641, 'no_lang_code', 'name', 'Akoya Biosciences (United States)'),
(90644, 75642, 'no_lang_code', 'name', 'Fulcrum Therapeutics (United States)'),
(90645, 75643, 'mi', 'name', 'Te Kaunihera ā-Rohe o Waikato'),
(90646, 75643, 'en', 'name', 'Waikato Regional Council'),
(90647, 75644, 'no_lang_code', 'name', 'GenCat (United Kingdom)'),
(90648, 75645, 'no_lang_code', 'name', 'Arsenal Biosciences (United States)'),
(90649, 75646, 'no_lang_code', 'name', 'Averis Seeds (Netherlands)'),
(90650, 75647, 'en', 'name', 'Hawke''s Bay Regional Council'),
(90651, 75648, 'no_lang_code', 'name', 'GenomeScan (Netherlands)'),
(90652, 75649, 'en', 'name', 'Sabah Parks'),
(90653, 75649, 'ms', 'name', 'Taman-Taman Sabah'),
(90654, 75650, 'no_lang_code', 'name', 'Helvetica Exploration Services (Switzerland)'),
(90655, 75651, 'no_lang_code', 'name', 'Boundless Bio (United States)'),
(90656, 75652, 'no_lang_code', 'name', 'Casma Therapeutics (United States)'),
(90657, 75653, 'no_lang_code', 'name', 'Celltechgen (United States)'),
(90658, 75654, 'no_lang_code', 'name', 'Cergentis (Netherlands)'),
(90659, 75655, 'en', 'name', 'Association for BahÔ’í Studies'),
(90660, 75656, 'no_lang_code', 'name', 'Ideaya Biosciences (United States)'),
(90661, 75657, 'no_lang_code', 'name', 'Jnana Therapeutics (United States)'),
(90662, 75658, 'no_lang_code', 'name', 'Cygnal Therapeutics (United States)'),
(90663, 75659, 'no_lang_code', 'name', 'Epic Sciences (United States)'),
(90664, 75660, 'no_lang_code', 'name', 'HZPC (Netherlands)'),
(90665, 75661, 'no', 'name', 'Fjellhaug Internasjonale HĆøgskole'),
(90666, 75661, 'en', 'name', 'Fjellhaug International University College'),
(90667, 75662, 'en', 'name', 'German Coastal Engineering Research Council'),
(90668, 75662, 'de', 'name', 'Kuratorium für Forschung im Küsteningenieurwesen'),
(90669, 75663, 'no_lang_code', 'name', 'Future Science Group (United Kingdom)'),
(90670, 75664, 'no_lang_code', 'name', 'Orbia (Mexico)'),
(90671, 75665, 'no_lang_code', 'name', 'Meyra (Germany)'),
(90672, 75666, 'no_lang_code', 'name', 'MiCell Technologies (United States)'),
(90673, 75667, 'no_lang_code', 'name', 'MicroMega (France)'),
(90674, 75668, 'no_lang_code', 'name', 'Molecular Templates (United States)'),
(90675, 75669, 'no_lang_code', 'name', 'MicroAire (United States)'),
(90676, 75670, 'no_lang_code', 'name', 'Microban (United States)'),
(90677, 75671, 'no_lang_code', 'name', 'Miragen Therapeutics (United States)'),
(90678, 75672, 'en', 'name', 'The San Raffaele Telethon Institute for Gene Therapy'),
(90679, 75673, 'no_lang_code', 'name', 'Misonix (United States)'),
(90680, 75674, 'no_lang_code', 'name', 'ClearPoint Neuro (United States)'),
(90681, 75675, 'no_lang_code', 'name', 'Mitaka Kohki (Japan)'),
(90682, 75676, 'no_lang_code', 'name', 'Mitsui Sugar (Japan)'),
(90683, 75676, 'ja', 'name', 'äø‰äŗ•č£½ē³–ę Ŗå¼ä¼šē¤¾'),
(90684, 75677, 'no_lang_code', 'name', 'Miyoshi Kasei (Japan)'),
(90685, 75677, 'ja', 'name', 'äø‰å„½åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(90686, 75678, 'no_lang_code', 'name', 'Momentive (Japan)'),
(90687, 75678, 'ja', 'name', 'ćƒ¢ćƒ”ćƒ³ćƒ†ć‚£ćƒ–ćƒ»ćƒ‘ćƒ•ć‚©ćƒ¼ćƒžćƒ³ć‚¹ćƒ»ćƒžćƒ†ćƒŖć‚¢ćƒ«ć‚ŗćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(90688, 75679, 'no_lang_code', 'name', 'Microline Surgical (United States)'),
(90689, 75680, 'no_lang_code', 'name', 'Medtentia (Finland)'),
(90690, 75681, 'no_lang_code', 'name', 'Mutabilis (France)'),
(90691, 75682, 'no_lang_code', 'name', 'Mycovia Pharmaceuticals (United States)'),
(90692, 75683, 'no_lang_code', 'name', 'Medtrade (United Kingdom)'),
(90693, 75684, 'no_lang_code', 'name', 'Minerva Surgical (United States)'),
(90694, 75685, 'no_lang_code', 'name', 'NAEJA-RGM Pharmaceuticals (Canada)'),
(90695, 75686, 'no_lang_code', 'name', 'Mimedx (United States)'),
(90696, 75687, 'no_lang_code', 'name', 'Nephros (United States)'),
(90697, 75688, 'no_lang_code', 'name', 'Nagase ChemteX (Japan)'),
(90698, 75688, 'ja', 'name', 'ćƒŠć‚¬ć‚»ć‚±ćƒ ćƒ†ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(90699, 75689, 'no_lang_code', 'name', 'NantWorks (United States)'),
(90700, 75690, 'no_lang_code', 'name', 'Natreon (United States)'),
(90701, 75691, 'no_lang_code', 'name', 'Neuboron (China)'),
(90702, 75692, 'no_lang_code', 'name', 'NeuroMetrix (United States)'),
(90703, 75693, 'no_lang_code', 'name', 'Neuronano (Sweden)'),
(90704, 75694, 'no_lang_code', 'name', 'Neuronetics (United States)'),
(90705, 75695, 'no_lang_code', 'name', 'Neurotech (United States)'),
(90706, 75696, 'no_lang_code', 'name', 'Nemera (France)'),
(90707, 75697, 'no_lang_code', 'name', 'Nemoto (Japan)'),
(90708, 75697, 'ja', 'name', 'ę ¹ęœ¬ęęž—å ‚'),
(90709, 75698, 'no_lang_code', 'name', 'Meiko (Germany)'),
(90710, 75699, 'no_lang_code', 'name', 'Avanos Medical (United States)'),
(90711, 75700, 'no_lang_code', 'name', 'Neutrogena (United States)'),
(90712, 75701, 'no_lang_code', 'name', 'New Japan Chemical (Japan)'),
(90713, 75701, 'ja', 'name', 'ę–°ę—„ęœ¬ē†åŒ–ę Ŗå¼ä¼šē¤¾'),
(90714, 75702, 'no_lang_code', 'name', 'Nitto Boseki (Japan)'),
(90715, 75702, 'ja', 'name', 'ę—„ę±ē“”ēø¾ę Ŗå¼ä¼šē¤¾'),
(90716, 75703, 'no_lang_code', 'name', 'Alpine Immune Sciences (United States)'),
(90717, 75704, 'no_lang_code', 'name', 'Nutramax Laboratories (United States)'),
(90718, 75705, 'no_lang_code', 'name', 'Nexstim (Finland)'),
(90719, 75706, 'no_lang_code', 'name', 'Nichiban (Japan)'),
(90720, 75706, 'ja', 'name', 'ćƒ‹ćƒćƒćƒ³ę Ŗå¼ä¼šē¤¾'),
(90721, 75707, 'no_lang_code', 'name', 'Nogra Pharma (Ireland)'),
(90722, 75708, 'no_lang_code', 'name', 'NICO (United States)'),
(90723, 75709, 'no_lang_code', 'name', 'Nuvaira (United States)'),
(90724, 75710, 'no_lang_code', 'name', 'NoNO (Canada)'),
(90725, 75711, 'no_lang_code', 'name', 'Norbrook (United Kingdom)'),
(90726, 75712, 'no_lang_code', 'name', 'Northgate Technologies (United States)'),
(90727, 75713, 'en', 'name', 'Capital University of Science and Technology'),
(90728, 75713, 'ur', 'name', 'جامعہ ŲÆŲ§Ų±Ų§Ł„Ų­Ś©ŁˆŁ…ŲŖ سائنس و Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒā€Ž'),
(90729, 75714, 'no_lang_code', 'name', 'Nymox (Canada)'),
(90730, 75715, 'no_lang_code', 'name', 'Nyxoah (Belgium)'),
(90731, 75716, 'no_lang_code', 'name', 'Midmark (United States)'),
(90732, 75717, 'no_lang_code', 'name', 'Milestone Scientific (United States)'),
(90733, 75718, 'fr', 'name', 'Conseil RƩgional de l''Environnement du Bas-Saint-Laurent'),
(90734, 75719, 'no_lang_code', 'name', 'NovaBiotics (United Kingdom)'),
(90735, 75720, 'no_lang_code', 'name', 'Millet Innovation (France)'),
(90736, 75721, 'no_lang_code', 'name', 'Novapharm Research (Australia)'),
(90737, 75722, 'no_lang_code', 'name', 'Owens & Minor (United States)'),
(90738, 75723, 'no_lang_code', 'name', 'Deinove (Germany)'),
(90739, 75724, 'no_lang_code', 'name', 'Luxottica (Italy)'),
(90740, 75725, 'no_lang_code', 'name', 'Neovasc Tiara (Canada)'),
(90741, 75726, 'no_lang_code', 'name', 'Occlutech (Sweden)'),
(90742, 75727, 'no_lang_code', 'name', 'Kazia Therapeutics (Australia)'),
(90743, 75728, 'no_lang_code', 'name', 'Seelos Therapeutics (United States)'),
(90744, 75729, 'no_lang_code', 'name', 'Nippon Chemiphar (Japan)'),
(90745, 75730, 'no_lang_code', 'name', 'NP Medical (United States)'),
(90746, 75731, 'no_lang_code', 'name', 'Oculus OptikgerƤte (Germany)'),
(90747, 75732, 'no_lang_code', 'name', 'Omnicell (United States)'),
(90748, 75733, 'no_lang_code', 'name', 'Nippon Steel Chemical and Material (Japan)'),
(90749, 75733, 'ja', 'name', 'ę—„é‰„ć‚±ćƒŸć‚«ćƒ«&ćƒžćƒ†ćƒŖć‚¢ćƒ«'),
(90750, 75734, 'no_lang_code', 'name', 'Nippon Suisan Kaisha (Japan)'),
(90751, 75734, 'ja', 'name', 'ę—„ęœ¬ę°“ē”£ę Ŗå¼ä¼šē¤¾'),
(90752, 75735, 'no_lang_code', 'name', 'OrthAlign (United States)'),
(90753, 75736, 'no_lang_code', 'name', 'Ortho Tain (United States)'),
(90754, 75737, 'no_lang_code', 'name', 'OptiScan (United States)'),
(90755, 75738, 'no_lang_code', 'name', 'Morishita Jintan (Japan)'),
(90756, 75738, 'ja', 'name', 'ę£®äø‹ä»äø¹ę Ŗå¼ä¼šē¤¾'),
(90757, 75739, 'no_lang_code', 'name', 'OQ (Oman)'),
(90758, 75740, 'no_lang_code', 'name', 'Marathon (United States)'),
(90759, 75741, 'no_lang_code', 'name', 'OrthoSensor (United States)'),
(90760, 75742, 'no_lang_code', 'name', 'Orasure Technologies (United States)'),
(90761, 75743, 'no_lang_code', 'name', 'Orbis Health Solutions (United States)'),
(90762, 75744, 'no_lang_code', 'name', 'Oscor (United States)'),
(90763, 75745, 'no_lang_code', 'name', 'Ore Holdings (United States)'),
(90764, 75746, 'no_lang_code', 'name', 'Currax Pharmaceuticals (United States)'),
(90765, 75747, 'no_lang_code', 'name', 'Osstem Implant (South Korea)'),
(90766, 75747, 'ko', 'name', 'ģ˜¤ģŠ¤ķ…œģž„ķ”Œėž€ķŠø'),
(90767, 75748, 'no_lang_code', 'name', 'Paragon 28 (United States)'),
(90768, 75749, 'no_lang_code', 'name', 'Ossur (United States)'),
(90769, 75750, 'no_lang_code', 'name', 'Orient Chemical Industries (Japan)'),
(90770, 75750, 'ja', 'name', 'ć‚ŖćƒŖćƒ±ćƒ³ćƒˆåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(90771, 75751, 'no_lang_code', 'name', 'Osteomed (United States)'),
(90772, 75752, 'no_lang_code', 'name', 'Paramount Bed (Japan)'),
(90773, 75752, 'ja', 'name', 'ćƒ‘ćƒ©ćƒžć‚¦ćƒ³ćƒˆćƒ™ćƒƒćƒ‰ę Ŗå¼ä¼šē¤¾'),
(90774, 75753, 'no_lang_code', 'name', 'Oticon Medical (Denmark)'),
(90775, 75754, 'no_lang_code', 'name', 'Ovid Therapeutics (United States)'),
(90776, 75755, 'no_lang_code', 'name', 'Penumbra (United States)'),
(90777, 75756, 'no_lang_code', 'name', 'Owen Mumford (United Kingdom)'),
(90778, 75757, 'no_lang_code', 'name', 'Premier Dental Products (United States)'),
(90779, 75758, 'no_lang_code', 'name', 'Perricone MD (United States)'),
(90780, 75759, 'no_lang_code', 'name', 'Pride Mobility Products (United States)'),
(90781, 75760, 'no_lang_code', 'name', 'Probiotical (Italy)'),
(90782, 75761, 'no_lang_code', 'name', 'PetroIneos (United Kingdom)'),
(90783, 75762, 'no_lang_code', 'name', 'Oxford Biotherapeutics (United Kingdom)'),
(90784, 75763, 'no_lang_code', 'name', 'Piolax (Japan)'),
(90785, 75764, 'fr', 'name', 'L''Association Canadienne des BibliothƩcaires en Enseignement SupƩrieur'),
(90786, 75764, 'en', 'name', 'The Canadian Association of Professional Academic Librarians'),
(90787, 75765, 'no_lang_code', 'name', 'Pixium Vision (France)'),
(90788, 75766, 'en', 'name', 'Stockholm Environment Institute'),
(90789, 75767, 'no_lang_code', 'name', 'Oakpont (Australia)'),
(90790, 75768, 'no_lang_code', 'name', 'Planmeca (Finland)'),
(90791, 75769, 'no_lang_code', 'name', 'Planmed (Finland)'),
(90792, 75770, 'no_lang_code', 'name', 'Plasmology4 (United States)'),
(90793, 75771, 'no_lang_code', 'name', 'Viveve (United States)'),
(90794, 75772, 'no_lang_code', 'name', 'Primed (Germany)'),
(90795, 75772, 'de', 'name', 'Primed Halberstadt Medizintechnik'),
(90796, 75773, 'no_lang_code', 'name', 'Pharnext (France)'),
(90797, 75774, 'no_lang_code', 'name', 'Progenity (United States)'),
(90798, 75775, 'no_lang_code', 'name', 'Pola Chemical Industries (Japan)'),
(90799, 75776, 'no_lang_code', 'name', 'Polar (Finland)'),
(90800, 75777, 'no_lang_code', 'name', 'Phenex Pharmaceuticals (Germany)'),
(90801, 75778, 'no_lang_code', 'name', 'Phenox (Germany)'),
(90802, 75779, 'no_lang_code', 'name', 'Hitowa Holdings (Japan)'),
(90803, 75779, 'ja', 'name', 'ć²ćØć‚ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(90804, 75780, 'no_lang_code', 'name', 'Propper Manufacturing (United States)'),
(90805, 75781, 'no_lang_code', 'name', 'Pherin Pharmaceuticals (United States)'),
(90806, 75782, 'no_lang_code', 'name', 'Poly Medicure (India)'),
(90807, 75783, 'no_lang_code', 'name', 'Proteostasis Therapeutics (United States)'),
(90808, 75784, 'no_lang_code', 'name', 'Protgen (China)'),
(90809, 75785, 'no_lang_code', 'name', 'Protia (United States)'),
(90810, 75786, 'no_lang_code', 'name', 'Polynt (Italy)'),
(90811, 75787, 'no_lang_code', 'name', 'Providence Medical Technology (United States)'),
(90812, 75788, 'no_lang_code', 'name', 'PYC Therapeutics (Australia)'),
(90813, 75789, 'no_lang_code', 'name', 'Poseida Therapeutics (United States)'),
(90814, 75790, 'no_lang_code', 'name', 'Rani Therapeutics (United States)'),
(90815, 75791, 'no_lang_code', 'name', 'Pieris Pharmaceuticals (United States)'),
(90816, 75792, 'no_lang_code', 'name', 'PureCircle (Malaysia)'),
(90817, 75793, 'no_lang_code', 'name', 'PureCircle (United States)'),
(90818, 75794, 'no_lang_code', 'name', 'Pigeon (Japan)'),
(90819, 75795, 'no_lang_code', 'name', 'Qualicaps (Japan)'),
(90820, 75796, 'no_lang_code', 'name', 'Qfix (United States)'),
(90821, 75797, 'no_lang_code', 'name', 'QualiMed (Germany)'),
(90822, 75798, 'no_lang_code', 'name', 'RaQualia Pharma (Japan)'),
(90823, 75798, 'ja', 'name', 'ćƒ©ć‚Æć‚ŖćƒŖć‚¢å‰µč–¬'),
(90824, 75799, 'no_lang_code', 'name', 'Venus Concept (Canada)'),
(90825, 75800, 'no_lang_code', 'name', 'Retractable Technologies (United States)'),
(90826, 75801, 'no_lang_code', 'name', 'Retrotope (United States)'),
(90827, 75802, 'no_lang_code', 'name', 'Raumedic (Germany)'),
(90828, 75803, 'no_lang_code', 'name', 'Rex Medical (United States)'),
(90829, 75804, 'no_lang_code', 'name', 'RaySearch Laboratories (Sweden)'),
(90830, 75805, 'no_lang_code', 'name', 'Ocuphire Pharma (United States)'),
(90831, 75806, 'no_lang_code', 'name', 'Rainbow Medical (Israel)'),
(90832, 75807, 'no_lang_code', 'name', 'Rhizen Pharmaceuticals (Switzerland)'),
(90833, 75808, 'no_lang_code', 'name', 'Redx Pharma (United Kingdom)'),
(90834, 75809, 'no_lang_code', 'name', 'Refocus Group (United States)'),
(90835, 75810, 'no_lang_code', 'name', 'RegeneRx Biopharmaceuticals (United States)'),
(90836, 75811, 'no_lang_code', 'name', 'Rayner (United States)'),
(90837, 75812, 'no_lang_code', 'name', 'Reliant Technologies (United States)'),
(90838, 75813, 'no_lang_code', 'name', 'Relievant Medsystem (United States)'),
(90839, 75814, 'no_lang_code', 'name', 'Renmatix (United States)'),
(90840, 75815, 'no_lang_code', 'name', 'Rocky Mountain Orthodontics (United States)'),
(90841, 75816, 'no_lang_code', 'name', 'RetinalGeniX Technologies (United States)'),
(90842, 75817, 'no_lang_code', 'name', 'Sansho (Japan)'),
(90843, 75817, 'ja', 'name', 'äø‰ę™¶ę Ŗå¼ä¼šē¤¾'),
(90844, 75818, 'no_lang_code', 'name', 'SACHEM (United States)'),
(90845, 75819, 'no_lang_code', 'name', 'Rohto Pharmaceutical (Japan)'),
(90846, 75819, 'ja', 'name', 'ćƒ­ćƒ¼ćƒˆč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(90847, 75820, 'no_lang_code', 'name', 'Rotam (China)'),
(90848, 75820, 'zh', 'name', 'č½®ä½œä½œē‰©ē§‘å­¦'),
(90849, 75821, 'en', 'name', 'Saint Regis Mohawk Tribe'),
(90850, 75822, 'no_lang_code', 'name', 'Sakai Chemical Industry (Japan)'),
(90851, 75822, 'ja', 'name', 'å ŗåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(90852, 75823, 'no_lang_code', 'name', 'Dempsey Ventures (United States)'),
(90853, 75824, 'en', 'name', 'Wroclaw University of Applied Informatics "Horizon"'),
(90854, 75824, 'pl', 'name', 'Wrocławska Wyższa Szkoła Informatyki Stosowanej ā€žHoryzontā€'),
(90855, 75825, 'no_lang_code', 'name', 'Clinical Microbiomics (Denmark)'),
(90856, 75826, 'no_lang_code', 'name', 'Salts Healthcare (United Kingdom)'),
(90857, 75827, 'no_lang_code', 'name', 'Saluda Medical (Australia)'),
(90858, 75828, 'no_lang_code', 'name', 'Schleifring (Germany)'),
(90859, 75829, 'no_lang_code', 'name', 'Recordati (Ireland)'),
(90860, 75830, 'no_lang_code', 'name', 'Saban Ventures (Israel)'),
(90861, 75831, 'no_lang_code', 'name', 'Samyang Holdings (South Korea)'),
(90862, 75831, 'ko', 'name', 'ģ‚¼ģ–‘ė°”ģ“ģ˜¤ķŒœ'),
(90863, 75832, 'no_lang_code', 'name', 'San-Ei Gen F.F.I (Japan)'),
(90864, 75833, 'no_lang_code', 'name', 'SanBio (Japan)'),
(90865, 75833, 'ja', 'name', 'ć‚µćƒ³ćƒć‚¤ć‚Ŗ'),
(90866, 75834, 'no_lang_code', 'name', 'Sangi (Japan)'),
(90867, 75834, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ć‚®'),
(90868, 75835, 'no_lang_code', 'name', 'Seiren (Japan)'),
(90869, 75835, 'ja', 'name', 'ć‚»ćƒ¼ćƒ¬ćƒ³ę Ŗå¼ä¼šē¤¾'),
(90870, 75836, 'no_lang_code', 'name', 'Eloxx Pharmaceuticals (United States)'),
(90871, 75837, 'no_lang_code', 'name', 'Seno Medical (United States)'),
(90872, 75838, 'no_lang_code', 'name', 'Seoul Viosys (South Korea)'),
(90873, 75838, 'ko', 'name', 'ģ„œģšøė°”ģ“ģ˜¤ģ‹œģŠ¤ėŠ”'),
(90874, 75839, 'no_lang_code', 'name', 'Seqirus (United Kingdom)'),
(90875, 75840, 'en', 'name', 'Center for Neuroscience and Cognitive Systems'),
(90876, 75841, 'en', 'name', 'Center for Genomic Science'),
(90877, 75842, 'en', 'name', 'Center for Nano Science and Technology'),
(90878, 75843, 'en', 'name', 'Center for Micro-BioRobotics'),
(90879, 75844, 'en', 'name', 'Center for Biomolecular Nanotechnologies'),
(90880, 75844, 'it', 'name', 'Centro per le Nanotecnologie Biomolecolari'),
(90881, 75845, 'no_lang_code', 'name', 'SDS Biotech (Japan)'),
(90882, 75845, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ćƒ»ćƒ‡ć‚£ćƒ¼ćƒ»ć‚Øć‚¹ ćƒć‚¤ć‚Ŗćƒ†ćƒƒć‚Æ'),
(90883, 75846, 'no_lang_code', 'name', 'SeaSpine (United States)'),
(90884, 75847, 'en', 'name', 'Center for Nanotechnology Innovation'),
(90885, 75847, 'it', 'name', 'Centro per l''Innovazione delle Nanotecnologie'),
(90886, 75848, 'en', 'name', 'Center for Cultural Heritage Technology'),
(90887, 75849, 'no_lang_code', 'name', 'Secant Group (United States)'),
(90888, 75850, 'it', 'name', 'Centro per le Nano-Scienze della Vita'),
(90889, 75851, 'en', 'name', 'Center for Translational Neurophysiology of Speech and Communication'),
(90890, 75851, 'it', 'name', 'Centro di Neurofisiologia Traslazionale del Linguaggio e della Comunicazione'),
(90891, 75852, 'en', 'name', 'Center for Sustainable Future Technologies'),
(90892, 75853, 'en', 'name', 'IIT@MIT'),
(90893, 75854, 'en', 'name', 'IIT@Harvard'),
(90894, 75855, 'fr', 'name', 'Association Suisse des Investisseurs en Capital et de Financement'),
(90895, 75855, 'de', 'name', 'Schweizerische Vereinigung für Unternehmensfinanzierung'),
(90896, 75855, 'en', 'name', 'The Swiss Private Equity & Corporate Finance Association'),
(90897, 75856, 'en', 'name', 'MRC Brain Network Dynamics Unit'),
(90898, 75857, 'en', 'name', 'UNC/NCSU Joint Department of Biomedical Engineering'),
(90899, 75858, 'en', 'name', 'Shanghai Stomatological Hospital'),
(90900, 75858, 'zh', 'name', 'äøŠęµ·åø‚å£č…”ē—…é˜²ę²»é™¢'),
(90901, 75859, 'en', 'name', 'European Magnetic Field Laboratory'),
(90902, 75860, 'en', 'name', 'NHS Wales Shared Services Partnership'),
(90903, 75861, 'it', 'name', 'ASP CittĆ  di Bologna'),
(90904, 75862, 'en', 'name', 'Port of Antwerp'),
(90905, 75863, 'en', 'name', 'Province of Antwerp'),
(90906, 75863, 'nl', 'name', 'Provincie Antwerpen'),
(90907, 75864, 'en', 'name', 'City of Antwerp'),
(90908, 75864, 'nl', 'name', 'Stad Antwerpen'),
(90909, 75865, 'nl', 'name', 'Port of Moerdijk'),
(90910, 75866, 'en', 'name', 'General Directorate Combating Organized Crime'),
(90911, 75866, 'bg', 'name', 'Главна Š“ŠøŃ€ŠµŠŗŃ†ŠøŃ "Борба с организираната ŠæŃ€ŠµŃŃ‚ŃŠŠæŠ½Š¾ŃŃ‚"'),
(90912, 75867, 'no_lang_code', 'name', 'Sinus Markt- und Sozialforschung (Germany)'),
(90913, 75868, 'en', 'name', 'Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics'),
(90914, 75869, 'no_lang_code', 'name', 'FSD Pharma (Canada)'),
(90915, 75870, 'en', 'name', 'Institute of Structural and Molecular Biology'),
(90916, 75871, 'no_lang_code', 'name', 'Schwan-Stabilo (Germany)'),
(90917, 75872, 'en', 'name', 'Center for the Neural Basis of Cognition'),
(90918, 75873, 'en', 'name', 'Startups.be'),
(90919, 75874, 'no_lang_code', 'name', 'SciClone Pharmaceuticals (United States)'),
(90920, 75875, 'en', 'name', 'Center for Theoretical Biological Physics'),
(90921, 75876, 'no_lang_code', 'name', 'Scientific Design Company (United States)'),
(90922, 75877, 'en', 'name', 'National Hansen''s Disease Program'),
(90923, 75878, 'no_lang_code', 'name', 'ScinoPharm Taiwan (Taiwan)'),
(90924, 75878, 'zh', 'name', 'å°ē£ē„žéš†č‚”ä»½ęœ‰é™å…¬åø'),
(90925, 75879, 'no_lang_code', 'name', 'Urtek Water Technologies (Spain)'),
(90926, 75880, 'no_lang_code', 'name', 'Pharmazeutische Fabrik Dr. Reckeweg (Germany)'),
(90927, 75881, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Switzerland)'),
(90928, 75882, 'de', 'name', 'Gouverneur Kinsbergencentrum'),
(90929, 75883, 'ro', 'name', 'Institutul de Ftiziopneumologie ā€žChiril Draganiucā€'),
(90930, 75883, 'en', 'name', 'Phthisiopneumology Institute "Chiril Draganiuc"'),
(90931, 75884, 'no_lang_code', 'name', 'Galapagos (France)'),
(90932, 75885, 'en', 'name', 'Leverhulme Centre for Climate Change Mitigation'),
(90933, 75886, 'nl', 'name', 'Belastingdienst'),
(90934, 75886, 'en', 'name', 'Tax and Customs Administration'),
(90935, 75887, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Finland)'),
(90936, 75888, 'no_lang_code', 'name', 'Shanghai Techwell Biopharmaceutical (China)'),
(90937, 75889, 'no_lang_code', 'name', 'Ipsen (Italy)'),
(90938, 75890, 'no_lang_code', 'name', 'Bayer (Mexico)'),
(90939, 75891, 'en', 'name', 'Academic Bridge Program'),
(90940, 75892, 'no_lang_code', 'name', 'Bayer (Australia)'),
(90941, 75893, 'no_lang_code', 'name', 'Amiri Diwan'),
(90942, 75893, 'ar', 'name', 'Ų§Ł„ŲÆŁŠŁˆŲ§Ł† Ų§Ł„Ų£Ł…ŁŠŲ±ŁŠ'),
(90943, 75894, 'de', 'name', 'Deutscher Bundestag'),
(90944, 75895, 'no_lang_code', 'name', 'Kronos Bios (United Kingdom)'),
(90945, 75896, 'no_lang_code', 'name', 'Lyell Immunopharma (United States)'),
(90946, 75897, 'no_lang_code', 'name', 'Catalent (Belgium)'),
(90947, 75898, 'en', 'name', 'College of Europe, Warsaw'),
(90948, 75899, 'no_lang_code', 'name', 'Sana Biotechnology (United States)'),
(90949, 75900, 'no_lang_code', 'name', 'TrueBinding (United States)'),
(90950, 75901, 'no_lang_code', 'name', 'Mitokinin (United States)'),
(90951, 75902, 'no_lang_code', 'name', 'Unity Biotechnology (United States)'),
(90952, 75903, 'no_lang_code', 'name', 'Propath Services (United States)'),
(90953, 75904, 'no_lang_code', 'name', 'Q2 Solutions (United Kingdom)'),
(90954, 75905, 'en', 'name', 'Cummings Veterinary Medical Center'),
(90955, 75906, 'no_lang_code', 'name', 'Recludix Pharma (United States)'),
(90956, 75907, 'no_lang_code', 'name', 'TerraVia (United States)'),
(90957, 75908, 'no_lang_code', 'name', 'Showa Ika Kogyo (Japan)'),
(90958, 75908, 'ja', 'name', 'ę˜­å’ŒåŒ»ē§‘å·„ę„­'),
(90959, 75909, 'no_lang_code', 'name', 'FirstUnion (China)'),
(90960, 75910, 'no_lang_code', 'name', 'SI-Bone (United States)'),
(90961, 75911, 'no_lang_code', 'name', 'Somnics (Taiwan)'),
(90962, 75912, 'no_lang_code', 'name', 'Shifamed (United States)'),
(90963, 75913, 'no_lang_code', 'name', 'Shikoku (Japan)'),
(90964, 75913, 'ja', 'name', 'å››å›½åŒ–ęˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(90965, 75914, 'no_lang_code', 'name', 'Siegfried (Switzerland)'),
(90966, 75915, 'no_lang_code', 'name', 'Shilpa (India)'),
(90967, 75916, 'no_lang_code', 'name', 'SHL Medical (Switzerland)'),
(90968, 75917, 'no_lang_code', 'name', 'Sonendo (United States)'),
(90969, 75918, 'no_lang_code', 'name', 'Ensysce Biosciences (United States)'),
(90970, 75919, 'no_lang_code', 'name', 'SignPath Pharma (United States)'),
(90971, 75920, 'no_lang_code', 'name', 'Spiber (Japan)'),
(90972, 75921, 'no_lang_code', 'name', 'Spectrum Dynamics Medical (Switzerland)'),
(90973, 75922, 'no_lang_code', 'name', 'Silab (France)'),
(90974, 75923, 'no_lang_code', 'name', 'Silk Road Medical (United States)'),
(90975, 75924, 'no_lang_code', 'name', 'Silony Medical (Switzerland)'),
(90976, 75925, 'no_lang_code', 'name', 'Spine Wave (United States)'),
(90977, 75926, 'no_lang_code', 'name', 'Simplify Medical (United States)'),
(90978, 75927, 'no_lang_code', 'name', 'SiO2 Materials Science (United States)'),
(90979, 75928, 'no_lang_code', 'name', 'SK Discovery (South Korea)'),
(90980, 75928, 'ko', 'name', 'SKė””ģŠ¤ģ»¤ė²„ė¦¬'),
(90981, 75929, 'no_lang_code', 'name', 'Skeletal Dynamics (United States)'),
(90982, 75930, 'no_lang_code', 'name', 'Sleep Number (United States)'),
(90983, 75931, 'no_lang_code', 'name', 'Savaria (Canada)'),
(90984, 75932, 'no_lang_code', 'name', 'Soft Gel Technologies (United States)'),
(90985, 75933, 'no_lang_code', 'name', 'Sol-Gel Technologies (Israel)'),
(90986, 75934, 'de', 'name', 'Haus der Natur - Museum für Natur und Technik'),
(90987, 75935, 'no_lang_code', 'name', 'HI-LEX (Japan)'),
(90988, 75935, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚¤ćƒ¬ćƒƒć‚Æć‚¹ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(90989, 75936, 'no_lang_code', 'name', 'NewAge (United States)'),
(90990, 75937, 'no_lang_code', 'name', 'Precision Spine (United States)'),
(90991, 75938, 'no_lang_code', 'name', 'ShockWave Medical (United States)'),
(90992, 75939, 'no_lang_code', 'name', 'Staar Surgical (United States)'),
(90993, 75940, 'no_lang_code', 'name', 'Stada Arzneimittel (Germany)');
INSERT INTO `ror_settings` VALUES
(90994, 75940, 'de', 'name', 'Standardarzneimittel Deutscher Apotheker'),
(90995, 75941, 'no_lang_code', 'name', 'Stat Medical Devices (United States)'),
(90996, 75942, 'no_lang_code', 'name', 'Spineart (Switzerland)'),
(90997, 75943, 'no_lang_code', 'name', 'Spineology (United States)'),
(90998, 75944, 'no_lang_code', 'name', 'SpineVision (France)'),
(90999, 75945, 'no_lang_code', 'name', 'Supratek Pharma (Canada)'),
(91000, 75946, 'no_lang_code', 'name', 'SpineWelding (Switzerland)'),
(91001, 75947, 'no_lang_code', 'name', 'Spirogen (United Kingdom)'),
(91002, 75948, 'no_lang_code', 'name', 'TaiGen Biotechnology (Taiwan)'),
(91003, 75949, 'no_lang_code', 'name', 'Taisei Kako (Japan)'),
(91004, 75950, 'no_lang_code', 'name', 'Steelco (Italy)'),
(91005, 75951, 'no_lang_code', 'name', 'Stereotaxis (United States)'),
(91006, 75952, 'no_lang_code', 'name', 'Sterix (Philippines)'),
(91007, 75953, 'no_lang_code', 'name', 'Teikoku Seiyaku (Japan)'),
(91008, 75953, 'ja', 'name', 'åøåœ‹č£½č–¬ćˆ±'),
(91009, 75954, 'no_lang_code', 'name', 'Takazono (Japan)'),
(91010, 75954, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚«ć‚¾ćƒŽ'),
(91011, 75955, 'no_lang_code', 'name', 'Stimwave Technologies (United States)'),
(91012, 75956, 'no_lang_code', 'name', 'Itochu (Japan)'),
(91013, 75956, 'ja', 'name', 'ä¼Šč—¤åæ å•†äŗ‹ę Ŗå¼ä¼šē¤¾'),
(91014, 75957, 'no_lang_code', 'name', 'Strategic Science & Technologies (United States)'),
(91015, 75958, 'no_lang_code', 'name', 'Stiegelmeyer (Germany)'),
(91016, 75959, 'en', 'name', 'Tate & Lyle (United Kingdom)'),
(91017, 75960, 'no_lang_code', 'name', 'Tecomet (United States)'),
(91018, 75961, 'no_lang_code', 'name', 'Vascular Flow Technologies (United Kingdom)'),
(91019, 75962, 'no_lang_code', 'name', 'TCI (Taiwan)'),
(91020, 75962, 'zh', 'name', 'å¤§ę±Ÿē”Ÿé†«č‚”ä»½ęœ‰é™å…¬åø'),
(91021, 75963, 'no_lang_code', 'name', 'Synaptive (Canada)'),
(91022, 75964, 'no_lang_code', 'name', 'Synecor (United States)'),
(91023, 75965, 'no_lang_code', 'name', 'Apax Partners (United Kingdom)'),
(91024, 75966, 'en', 'name', 'Tecres (Italy)'),
(91025, 75967, 'no_lang_code', 'name', 'Titan Medical (Canada)'),
(91026, 75968, 'no_lang_code', 'name', 'Syntheon (United States)'),
(91027, 75969, 'no_lang_code', 'name', 'Schƶlly (Germany)'),
(91028, 75970, 'no_lang_code', 'name', 'Scott Laboratories (United States)'),
(91029, 75971, 'no_lang_code', 'name', 'Tobishi (Japan)'),
(91030, 75972, 'no_lang_code', 'name', 'Sony Olympus Medical Solutions (Japan)'),
(91031, 75973, 'no_lang_code', 'name', 'THD (Italy)'),
(91032, 75974, 'no_lang_code', 'name', 'Theragenics Corporation (United States)'),
(91033, 75975, 'no_lang_code', 'name', 'TherapeuticsMD (United States)'),
(91034, 75976, 'no_lang_code', 'name', 'Theratechnologies (Canada)'),
(91035, 75977, 'no_lang_code', 'name', 'ThermoGenesis (United States)'),
(91036, 75978, 'no_lang_code', 'name', 'Tosho (Japan)'),
(91037, 75979, 'no_lang_code', 'name', 'Touchstone (China)'),
(91038, 75980, 'no_lang_code', 'name', 'Toyo Engineering (Japan)'),
(91039, 75980, 'ja', 'name', 'ę±ę“‹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(91040, 75981, 'no_lang_code', 'name', 'TransMed7 (United States)'),
(91041, 75982, 'no_lang_code', 'name', 'Toyo Suisan (Japan)'),
(91042, 75982, 'ja', 'name', 'ę±ę“‹ę°“ē”£ę Ŗå¼ä¼šē¤¾'),
(91043, 75983, 'no_lang_code', 'name', 'Tredegar (United States)'),
(91044, 75984, 'no_lang_code', 'name', 'TP Orthodontics (United States)'),
(91045, 75985, 'no_lang_code', 'name', 'Tracoe Medical (Germany)'),
(91046, 75986, 'no_lang_code', 'name', 'ThermoTek (United States)'),
(91047, 75987, 'no_lang_code', 'name', 'Tris Pharma (United States)'),
(91048, 75988, 'no_lang_code', 'name', 'Transitions Optical (United States)'),
(91049, 75989, 'no_lang_code', 'name', 'Translate Bio (United States)'),
(91050, 75990, 'no_lang_code', 'name', 'Terason (United States)'),
(91051, 75991, 'en', 'name', 'Dulbecco Telethon Institute'),
(91052, 75992, 'no_lang_code', 'name', 'Think Surgical (United States)'),
(91053, 75993, 'no_lang_code', 'name', 'Tristel (United Kingdom)'),
(91054, 75994, 'no_lang_code', 'name', 'Ueno Fine Chemicals Industry (Japan)'),
(91055, 75994, 'ja', 'name', 'äøŠé‡Žč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(91056, 75995, 'no_lang_code', 'name', 'Ultra Biotech (India)'),
(91057, 75996, 'no_lang_code', 'name', 'Ultradent Products (United States)'),
(91058, 75997, 'no_lang_code', 'name', 'Tidi (United States)'),
(91059, 75998, 'no_lang_code', 'name', 'VitalConnect (United States)'),
(91060, 75999, 'no_lang_code', 'name', 'Unisearch (United States)'),
(91061, 76000, 'no_lang_code', 'name', 'Vitalitec International (Germany)'),
(91062, 76001, 'no_lang_code', 'name', 'United Initiators (Germany)'),
(91063, 76002, 'no_lang_code', 'name', 'Vivant (United States)'),
(91064, 76003, 'no_lang_code', 'name', 'Venus Medtech (China)'),
(91065, 76004, 'no_lang_code', 'name', 'Trisa (Switzerland)'),
(91066, 76005, 'no_lang_code', 'name', 'USV (India)'),
(91067, 76006, 'no_lang_code', 'name', 'Uvex (Germany)'),
(91068, 76007, 'no_lang_code', 'name', 'Veroscience (United States)'),
(91069, 76008, 'no_lang_code', 'name', 'Versitech (United States)'),
(91070, 76009, 'no_lang_code', 'name', 'Valent BioSciences (United States)'),
(91071, 76010, 'no_lang_code', 'name', 'Trividia Health (United States)'),
(91072, 76011, 'en', 'name', 'Agronomical Institute of Campinas'),
(91073, 76011, 'pt', 'name', 'Instituto AgronƓmico de Campinas'),
(91074, 76012, 'en', 'name', 'NCMI Information and Data Centre'),
(91075, 76013, 'en', 'name', 'Zoo Outreach Organisation'),
(91076, 76014, 'en', 'name', 'Wildlife Information Liaison Development'),
(91077, 76015, 'en', 'name', 'Mattapally Technologies'),
(91078, 76016, 'no_lang_code', 'name', 'Valtris Specialty Chemicals (United States)'),
(91079, 76017, 'no_lang_code', 'name', 'Vapotherm (United States)'),
(91080, 76018, 'no_lang_code', 'name', 'Vivex Biologics (United States)'),
(91081, 76019, 'no_lang_code', 'name', 'Varex Imaging (United States)'),
(91082, 76020, 'no_lang_code', 'name', 'Virent (United States)'),
(91083, 76021, 'no_lang_code', 'name', 'Vascor (United States)'),
(91084, 76022, 'no_lang_code', 'name', 'Helixmith (South Korea)'),
(91085, 76023, 'no_lang_code', 'name', 'Vatech (South Korea)'),
(91086, 76024, 'no_lang_code', 'name', 'Velcro (United Kingdom)'),
(91087, 76025, 'no_lang_code', 'name', 'Volk (United States)'),
(91088, 76026, 'no_lang_code', 'name', 'vTv Therapeutics (United States)'),
(91089, 76027, 'no_lang_code', 'name', 'Vyaire Medical (United States)'),
(91090, 76028, 'no_lang_code', 'name', 'Vytronus (United States)'),
(91091, 76029, 'no_lang_code', 'name', 'W&H (Austria)'),
(91092, 76030, 'no_lang_code', 'name', 'Wakunaga (Japan)'),
(91093, 76030, 'ja', 'name', 'ę¹§ę°øč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(91094, 76031, 'no_lang_code', 'name', 'Wilmar International (Singapore)'),
(91095, 76032, 'no_lang_code', 'name', 'Wittenstein (Germany)'),
(91096, 76033, 'no_lang_code', 'name', 'Woodwelding (Switzerland)'),
(91097, 76034, 'no_lang_code', 'name', 'Xtant Medical (United States)'),
(91098, 76035, 'no_lang_code', 'name', 'Ya-Man (Japan)'),
(91099, 76036, 'no_lang_code', 'name', 'Xellia (Denmark)'),
(91100, 76037, 'no_lang_code', 'name', 'Xenex Disinfection Services (United States)'),
(91101, 76038, 'no_lang_code', 'name', 'Crescita Therapeutics (Canada)'),
(91102, 76039, 'no_lang_code', 'name', 'Wave Life Sciences (United States)'),
(91103, 76040, 'no_lang_code', 'name', 'Zensun (China)'),
(91104, 76041, 'no_lang_code', 'name', 'Welland Medical (United Kingdom)'),
(91105, 76042, 'no_lang_code', 'name', 'Wellesley Pharmaceuticals (United States)'),
(91106, 76043, 'no_lang_code', 'name', 'SihuanPharm (China)'),
(91107, 76044, 'no_lang_code', 'name', 'Zeria Pharmaceutical (Japan)'),
(91108, 76044, 'ja', 'name', 'ć‚¼ćƒŖć‚¢ę–°č–¬å·„ę„­'),
(91109, 76045, 'no_lang_code', 'name', 'Huahai Pharmaceutical (China)'),
(91110, 76045, 'zh', 'name', 'ęµ™ę±ŸåŽęµ·čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(91111, 76046, 'no_lang_code', 'name', 'DenMat (United States)'),
(91112, 76047, 'no_lang_code', 'name', 'Xyleco (United States)'),
(91113, 76048, 'no_lang_code', 'name', 'Yamamoto Chamicals (Japan)'),
(91114, 76048, 'ja', 'name', 'å±±ęœ¬åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(91115, 76049, 'no_lang_code', 'name', 'Zhejiang Medicine (China)'),
(91116, 76050, 'no_lang_code', 'name', 'Zymeworks (Canada)'),
(91117, 76051, 'no_lang_code', 'name', 'Zuiko (Japan)'),
(91118, 76052, 'no_lang_code', 'name', 'Zoetis (Belgium)'),
(91119, 76053, 'no_lang_code', 'name', 'Yuyama (Japan)'),
(91120, 76053, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ¤ćƒž'),
(91121, 76054, 'no_lang_code', 'name', 'Zobele (Italy)'),
(91122, 76055, 'no_lang_code', 'name', 'Wellstat Biologics (United States)'),
(91123, 76056, 'no_lang_code', 'name', 'Zobele (Spain)'),
(91124, 76057, 'no_lang_code', 'name', 'Adey (United Kingdom)'),
(91125, 76058, 'no_lang_code', 'name', 'DeVilbiss Healthcare (United States)'),
(91126, 76059, 'no_lang_code', 'name', 'Polypipe (United Kingdom)'),
(91127, 76060, 'no_lang_code', 'name', 'Graphcore (United Kingdom)'),
(91128, 76061, 'no_lang_code', 'name', 'Technetix (United Kingdom)'),
(91129, 76062, 'no_lang_code', 'name', 'Gripple (United Kingdom)'),
(91130, 76063, 'no_lang_code', 'name', 'Prevayl (United Kingdom)'),
(91131, 76064, 'no_lang_code', 'name', 'Gurit (United Kingdom)'),
(91132, 76065, 'no_lang_code', 'name', 'Gurulogic Microsystems (Finland)'),
(91133, 76066, 'no_lang_code', 'name', 'Powerscreen (United Kingdom)'),
(91134, 76067, 'no_lang_code', 'name', 'Belron (Switzerland)'),
(91135, 76068, 'no_lang_code', 'name', 'Protean Electric (United Kingdom)'),
(91136, 76069, 'no_lang_code', 'name', 'Rockley Photonics (United States)'),
(91137, 76070, 'no_lang_code', 'name', 'Cambridge Mechatronics (United Kingdom)'),
(91138, 76071, 'no_lang_code', 'name', 'Seven Networks (United States)'),
(91139, 76072, 'no_lang_code', 'name', 'Silixa (United Kingdom)'),
(91140, 76073, 'no_lang_code', 'name', 'Kenwood (United Kingdom)'),
(91141, 76074, 'no_lang_code', 'name', 'Spirax Sarco (United Kingdom)'),
(91142, 76075, 'no_lang_code', 'name', 'Synaptics (United Kingdom)'),
(91143, 76076, 'no_lang_code', 'name', 'Dril Quip (United States)'),
(91144, 76077, 'en', 'name', 'DS Smith (United Kingdom)'),
(91145, 76078, 'no_lang_code', 'name', 'Eaton (Netherlands)'),
(91146, 76079, 'no_lang_code', 'name', 'Stannah (United Kingdom)'),
(91147, 76080, 'no_lang_code', 'name', 'Synamedia (United Kingdom)'),
(91148, 76081, 'no_lang_code', 'name', 'Loadhog (United Kingdom)'),
(91149, 76082, 'no_lang_code', 'name', 'Login BV (Slovenia)'),
(91150, 76083, 'en', 'name', 'TIFR Centre for Applicable Mathematics'),
(91151, 76084, 'en', 'name', 'Homi Bhabha Centre for Science Education'),
(91152, 76084, 'hi', 'name', 'ą¤¹ą„‹ą¤®ą„€ भाभा ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°, ą¤Ÿą„€.ą¤†ą¤ˆ.ą¤ą¤«.आर'),
(91153, 76085, 'no_lang_code', 'name', 'Otter Controls (United Kingdom)'),
(91154, 76086, 'no_lang_code', 'name', 'Oxford Plastics (United Kingdom)'),
(91155, 76087, 'en', 'name', 'National Centre for Radio Astrophysics'),
(91156, 76087, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą„‡ą¤”ą¤æą¤Æą„‹ ą¤–ą¤—ą„‹ą¤² ą¤­ą„Œą¤¤ą¤æą¤•ą„€ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(91157, 76088, 'no_lang_code', 'name', 'nChain (United Kingdom)'),
(91158, 76089, 'no_lang_code', 'name', 'F-Secure (Finland)'),
(91159, 76090, 'no_lang_code', 'name', 'Sentec (United Kingdom)'),
(91160, 76091, 'no_lang_code', 'name', 'Nihon Plast (Japan)'),
(91161, 76092, 'no_lang_code', 'name', 'Frito-Lay (Switzerland)'),
(91162, 76093, 'no_lang_code', 'name', 'Novalia (United Kingdom)'),
(91163, 76094, 'no_lang_code', 'name', 'Nujira (United Kingdom)'),
(91164, 76095, 'no_lang_code', 'name', 'Nabors Industries (United States)'),
(91165, 76096, 'en', 'name', 'Osaka Kaisei Hospital'),
(91166, 76096, 'ja', 'name', 'å¤§é˜Ŗå›žē”Ÿē—…é™¢'),
(91167, 76097, 'en', 'name', 'Sabalan University of Advanced Technologies'),
(91168, 76097, 'fa', 'name', 'دانؓگاه ŁŁ†Ų§ŁˆŲ±ŪŒ Ł‡Ų§ŪŒ Ł†ŁˆŪŒŁ† سبلان'),
(91169, 76098, 'no_lang_code', 'name', 'Chevron (China)'),
(91170, 76098, 'zh', 'name', 'é›Ŗä½›é¾é¦™ęøÆęœ‰é™å…¬åø'),
(91171, 76099, 'en', 'name', 'Penang Development Corporation'),
(91172, 76099, 'ms', 'name', 'Perbadanan Pembangunan Pulau Pinang'),
(91173, 76100, 'sl', 'name', 'Javna agencija Republike Slovenije za spodbujanje podjetniŔtva, internacionalizacije, tujih investicij in tehnologije'),
(91174, 76100, 'en', 'name', 'SPIRIT Slovenia - Public Agency for Entrepreneurship, Internationalization, ForeĀ­ign Investments and Technology'),
(91175, 76101, 'en', 'name', 'Islamic Azad University Dolatabad'),
(91176, 76101, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲÆŁˆŁ„ŲŖ Ų¢ŲØŲ§ŲÆ'),
(91177, 76102, 'no_lang_code', 'name', 'HEC Pharm (China)'),
(91178, 76103, 'en', 'name', 'Eastern Switzerland University of Applied Sciences'),
(91179, 76103, 'de', 'name', 'Ostschweizer Fachhochschule OST'),
(91180, 76104, 'en', 'name', 'Selangor Business School'),
(91181, 76105, 'en', 'name', 'MIT Sea Grant'),
(91182, 76106, 'en', 'name', 'New Hampshire Sea Grant'),
(91183, 76107, 'en', 'name', 'Export–Import Bank of Korea'),
(91184, 76108, 'en', 'name', 'Delaware Sea Grant'),
(91185, 76109, 'en', 'name', 'Space Engineering University'),
(91186, 76109, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęˆ˜ē•„ę”Æę“éƒØé˜ŸčˆŖå¤©å·„ēØ‹å¤§å­¦'),
(91187, 76110, 'en', 'name', 'Federal Polytechnic Ede'),
(91188, 76111, 'en', 'name', 'ESEP-LE BERGER University'),
(91189, 76112, 'en', 'name', 'Axis Multispecialty Hospital'),
(91190, 76113, 'en', 'name', 'Mie Forestry Research Institute'),
(91191, 76113, 'ja', 'name', 'äø‰é‡ēœŒ ęž—ę„­ē ”ē©¶ę‰€'),
(91192, 76114, 'en', 'name', 'Mie Agricultural Research Institute'),
(91193, 76114, 'ja', 'name', 'äø‰é‡ēœŒč¾²ę„­ē ”ē©¶ę‰€'),
(91194, 76115, 'no_lang_code', 'name', 'Penta-Ocean Construction (Japan)'),
(91195, 76116, 'no_lang_code', 'name', 'Berry (Switzerland)'),
(91196, 76117, 'en', 'name', 'TRENDS Research & Advisory'),
(91197, 76117, 'ur', 'name', 'Ł…Ų±ŁƒŲ² ŲŖŲ±ŁŠŁ†ŲÆŲ² Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„Ų§Ų³ŲŖŲ“Ų§Ų±Ų§ŲŖ'),
(91198, 76118, 'en', 'name', 'Colorado Space Grant Consortium'),
(91199, 76119, 'en', 'name', 'Art Aia - Creatives / In / Residence'),
(91200, 76120, 'en', 'name', 'Tennessee Space Grant Consortium'),
(91201, 76121, 'en', 'name', 'New Hampshire Space Grant Consortium'),
(91202, 76122, 'en', 'name', 'Massachusetts Space Grant Consortium'),
(91203, 76123, 'no_lang_code', 'name', 'Nobuhara Hospital'),
(91204, 76123, 'ja', 'name', 'äæ”åŽŸē—…é™¢'),
(91205, 76124, 'en', 'name', 'Experimental Drug Development Centre'),
(91206, 76125, 'en', 'name', 'Sudan Academy of Sciences'),
(91207, 76125, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ…'),
(91208, 76126, 'en', 'name', 'LogicalOutcomes'),
(91209, 76127, 'no_lang_code', 'name', 'Intellia Therapeutics (United States)'),
(91210, 76128, 'no_lang_code', 'name', 'Aequor (United States)'),
(91211, 76129, 'en', 'name', 'Aichi Medical University Hospital'),
(91212, 76129, 'ja', 'name', 'ę„›ēŸ„åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(91213, 76130, 'es', 'name', 'Instituto de Salud PĆŗblica de Chile'),
(91214, 76131, 'no_lang_code', 'name', 'Fuji Chimera Research Institute (Japan)'),
(91215, 76131, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ åÆŒå£«ć‚­ćƒ”ćƒ©ē·ē ”'),
(91216, 76132, 'en', 'name', 'Tokyo Medical Examiner''s Office'),
(91217, 76132, 'ja', 'name', 'ę±äŗ¬éƒ½ē›£åÆŸåŒ»å‹™é™¢'),
(91218, 76133, 'en', 'name', 'Department of Physics, Mathematics and Informatics'),
(91219, 76133, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ фізікі, Š¼Š°Ń‚ŃŠ¼Š°Ń‚Ń‹ŠŗŃ– і інфарматыкі'),
(91220, 76134, 'en', 'name', 'Department of Physical and Technical Sciences'),
(91221, 76134, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ фізіка-Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹Ń… навук'),
(91222, 76135, 'en', 'name', 'Department of Chemistry and Earth Sciences'),
(91223, 76135, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ хіміі і навук аб Š—ŃŠ¼Š»Ń–'),
(91224, 76136, 'en', 'name', 'Department of Biological Sciences'),
(91225, 76136, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ Š±Ń–ŃŠ»Š°Š³Ń–Ń‡Š½Ń‹Ń… навук'),
(91226, 76137, 'en', 'name', 'Department of Medical Sciences'),
(91227, 76137, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ меГыцынскіх навук'),
(91228, 76138, 'en', 'name', 'Department of Humanities and Arts'),
(91229, 76138, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½Ń‹Ń… навук і Š¼Š°ŃŃ‚Š°Ń†Ń‚Š²Š°Ńž'),
(91230, 76138, 'ru', 'name', 'ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… наук Šø ŠøŃŠŗŃƒŃŃŃ‚Š² ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(91231, 76139, 'en', 'name', 'Department of Agrarian Sciences'),
(91232, 76139, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ аграрных навук'),
(91233, 76140, 'en', 'name', 'Bridge Consultants Foundation'),
(91234, 76141, 'en', 'name', 'Stavanger Museum'),
(91235, 76142, 'en', 'name', 'Stockholm Environment Institute'),
(91236, 76143, 'en', 'name', 'Stockholm Environment Institute'),
(91237, 76144, 'no_lang_code', 'name', 'Yidu Central Hospital of Weifang'),
(91238, 76144, 'zh', 'name', 'ę½åŠåø‚ē›Šéƒ½äø­åæƒåŒ»é™¢'),
(91239, 76145, 'en', 'name', 'University Hospital Kyoto Prefectural University of Medicine'),
(91240, 76145, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(91241, 76146, 'no_lang_code', 'name', 'Noside'),
(91242, 76146, 'ja', 'name', 'ē”°äø­ē¾Žéƒ·ę•™č‚²ē ”ē©¶ę‰€'),
(91243, 76147, 'en', 'name', 'Ghent University Global Campus'),
(91244, 76147, 'ko', 'name', 'ź²ķŠøėŒ€ķ•™źµ'),
(91245, 76148, 'no_lang_code', 'name', 'Nitto RIKEN (Japan)'),
(91246, 76148, 'ja', 'name', 'ę—„ę±ē†åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(91247, 76149, 'no_lang_code', 'name', 'Isuzu Advanced Engineering Center (Japan)'),
(91248, 76149, 'ja', 'name', 'ć„ć™ć‚žäø­å¤®ē ”ē©¶ę‰€'),
(91249, 76150, 'fr', 'name', 'HƓpital Maritime de Berck'),
(91250, 76151, 'fr', 'name', 'HĆ“pital Ɖmile-Roux'),
(91251, 76152, 'fr', 'name', 'HƓpital Georges-Clemenceau'),
(91252, 76153, 'fr', 'name', 'HƓpital Marin de Hendaye'),
(91253, 76154, 'fr', 'name', 'HƓpital Dupuytren'),
(91254, 76155, 'en', 'name', 'Apollo Institute of Medical Sciences & Research'),
(91255, 76155, 'te', 'name', 'అపోలో ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°øą±ˆą°Øą±ą°øą±†ą°øą± ą°…ą°‚ą°”ą± ą°°ą±€ą°øą±†ą°°ą±ą°šą±'),
(91256, 76156, 'fr', 'name', 'HƓpital RenƩ-Muret'),
(91257, 76157, 'fr', 'name', 'HƓpital Sainte-PƩrine'),
(91258, 76158, 'fr', 'name', 'HƓpital San Salvadour'),
(91259, 76159, 'en', 'name', 'Kanazawa Medical University Hospital'),
(91260, 76159, 'ja', 'name', 'é‡‘ę²¢åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(91261, 76160, 'en', 'name', 'Kenya Paediatric Research Consortium'),
(91262, 76161, 'en', 'name', 'Taiwan Electrical and Electronic Manufacturers’ Association'),
(91263, 76161, 'zh', 'name', 'å°ē£å€é›»ę©Ÿé›»å­å·„ę„­åŒę„­å…¬ęœƒ'),
(91264, 76162, 'en', 'name', 'China Productivity Center'),
(91265, 76163, 'en', 'name', 'Taiwan Geographic Information Center'),
(91266, 76163, 'zh', 'name', 'č²”åœ˜ę³•äŗŗå°ē£åœ°ē†č³‡čØŠäø­åæƒ'),
(91267, 76164, 'en', 'name', 'Industrial Development Bureau'),
(91268, 76164, 'zh', 'name', 'ē¶“ęæŸéƒØå·„ę„­å±€'),
(91269, 76165, 'en', 'name', 'Taiwan External Trade Development Council'),
(91270, 76165, 'zh', 'name', 'äø­čÆę°‘åœ‹å°å¤–č²æę˜“ē™¼å±•å”ęœƒ'),
(91271, 76166, 'en', 'name', 'Taiwan Semiconductor Industry Association'),
(91272, 76167, 'en', 'name', 'Biotechnology and Pharmaceutical Industries Promotion Office'),
(91273, 76167, 'zh', 'name', 'ē¶“ęæŸéƒØē”ŸęŠ€é†«č—„ē”¢ę„­ē™¼å±•ęŽØå‹•å°ēµ„'),
(91274, 76168, 'en', 'name', 'Thailand Board of Investment'),
(91275, 76168, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø„ąø“ąø°ąøąø£ąø£ąø”ąøąø²ąø£ąøŖą¹ˆąø‡ą¹€ąøŖąø£ąø“ąø”ąøąø²ąø£ąø„ąø‡ąø—ąøøąø™'),
(91276, 76169, 'no_lang_code', 'name', 'Nomura Research Institute'),
(91277, 76169, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é‡Žę‘ē·åˆē ”ē©¶ę‰€'),
(91278, 76170, 'fr', 'name', 'Banque de dƩveloppement du Canada'),
(91279, 76170, 'en', 'name', 'Business Development Bank of Canada'),
(91280, 76171, 'en', 'name', 'Chiba Prefectural Agriculture and Forestry Research Center Forest Research Institute'),
(91281, 76171, 'ja', 'name', 'åƒč‘‰ēœŒč¾²ęž—ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼ę£®ęž—ē ”ē©¶ę‰€'),
(91282, 76172, 'en', 'name', 'China Construction Bank'),
(91283, 76172, 'zh', 'name', 'äø­å›½å»ŗč®¾é“¶č”Œ'),
(91284, 76173, 'en', 'name', 'China Development Bank'),
(91285, 76173, 'zh', 'name', 'å›½å®¶å¼€å‘é“¶č”Œ'),
(91286, 76174, 'en', 'name', 'National Energy Commission'),
(91287, 76174, 'zh', 'name', 'å›½å®¶čƒ½ęŗå§”å‘˜ä¼š'),
(91288, 76175, 'es', 'name', 'Fundación Centro de Gestión Tecnológica e InformÔtica Industrial'),
(91289, 76176, 'en', 'name', 'Czech-Moravian Guarantee and Development Bank'),
(91290, 76177, 'no_lang_code', 'name', 'ClassNK'),
(91291, 76177, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęµ·äŗ‹å”ä¼š'),
(91292, 76178, 'no_lang_code', 'name', 'Nousouken (Japan)'),
(91293, 76178, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č¾²ę„­ē·åˆē ”ē©¶ę‰€'),
(91294, 76179, 'en', 'name', 'Foundation for Finnish Inventions'),
(91295, 76179, 'fi', 'name', 'KeksintƶsƤƤtiƶ'),
(91296, 76180, 'no_lang_code', 'name', 'Tesi (Finland)'),
(91297, 76181, 'no_lang_code', 'name', 'Finnvera (Finland)'),
(91298, 76182, 'en', 'name', 'Sheltering Arms Institute'),
(91299, 76183, 'en', 'name', 'General Clinic Phʰʔng Nam'),
(91300, 76183, 'vi', 'name', 'Phòng KhÔm Đa Khoa PhưƔng Nam'),
(91301, 76184, 'en', 'name', 'Georgia''s Innovation and Technology Agency'),
(91302, 76184, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ˜įƒœįƒįƒ•įƒįƒŖįƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ“įƒ įƒ¢įƒ”įƒ„įƒœįƒįƒšįƒįƒ’įƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ”įƒįƒįƒ’įƒ”įƒœįƒ¢įƒ'),
(91303, 76185, 'no_lang_code', 'name', 'IDBI Bank'),
(91304, 76186, 'no_lang_code', 'name', 'Coventry & Warwickshire Local Enterprise Partnership (United Kingdom)'),
(91305, 76187, 'en', 'name', 'Electronics Corporation of India'),
(91306, 76188, 'en', 'name', 'Renewable Energy Corporation of India'),
(91307, 76189, 'es', 'name', 'Instituto Tecnológico del Salmón'),
(91308, 76189, 'en', 'name', 'Salmon Technology Institute'),
(91309, 76190, 'es', 'name', 'Corporación de Fomento de la Producción de Chile'),
(91310, 76190, 'en', 'name', 'Production Development Corporation'),
(91311, 76191, 'en', 'name', 'Eunpyeong Hospital'),
(91312, 76191, 'ko', 'name', 'ģ„œģšøķŠ¹ė³„ģ‹œ ģ€ķ‰ė³‘ģ›'),
(91313, 76192, 'en', 'name', 'Institute of Manuscripts of Azerbaijan'),
(91314, 76192, 'az', 'name', 'ʏlyazmalar İnstitutu'),
(91315, 76193, 'en', 'name', 'Japan Coal Energy Center'),
(91316, 76193, 'ja', 'name', 'ēŸ³ē‚­ć‚Øćƒćƒ«ć‚®ćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(91317, 76194, 'en', 'name', 'The Japanese Institute of Fisheries Infrastructure and Communities'),
(91318, 76194, 'ja', 'name', 'ę¼ęøÆę¼å “ę¼ę‘ē·åˆē ”ē©¶ę‰€'),
(91319, 76195, 'en', 'name', 'Physical Education and Medicine Research Foundation'),
(91320, 76195, 'ja', 'name', 'čŗ«ä½“ę•™č‚²åŒ»å­¦ē ”ē©¶ę‰€'),
(91321, 76196, 'pt', 'name', 'Unichristus'),
(91322, 76197, 'en', 'name', 'Tanaka Institute of Education'),
(91323, 76197, 'ja', 'name', '田中教育研究所'),
(91324, 76198, 'no_lang_code', 'name', 'Terumo Aortic (United Kingdom)'),
(91325, 76199, 'no_lang_code', 'name', 'Berg (United States)'),
(91326, 76200, 'no_lang_code', 'name', 'Olatec (United States)'),
(91327, 76201, 'no_lang_code', 'name', 'Cook Research (United States)'),
(91328, 76202, 'en', 'name', 'Islamic Azad University of Gachsaran'),
(91329, 76202, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گچساران'),
(91330, 76203, 'en', 'name', 'Universal Scientific Education and Research Network'),
(91331, 76203, 'fa', 'name', 'ؓبکه Ų¬Ł‡Ų§Ł†ŪŒ Ų¢Ł…ŁˆŲ²Ų“ و Ł¾Ś˜ŁˆŁ‡Ų“ Ł‡Ų§ŪŒ Ų¹Ł„Ł…ŪŒ'),
(91332, 76204, 'en', 'name', 'University of Science and Technology of Mazandaran'),
(91333, 76204, 'fa', 'name', 'دانؓگاه علم و ŁŁ†Ų§ŁˆŲ±ŪŒ مازندران'),
(91334, 76205, 'en', 'name', 'Islamic Azad University Kashmar Branch'),
(91335, 76205, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کاؓمر'),
(91336, 76206, 'en', 'name', 'PLA Air Force Aviation University'),
(91337, 76206, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›čˆŖē©ŗå¤§å­¦'),
(91338, 76207, 'en', 'name', 'Sabzevar University of New Technology'),
(91339, 76207, 'fa', 'name', 'دانؓگاه ŁŁ†Ų§ŁˆŲ±ŪŒ Ł‡Ų§ŪŒ Ł†ŁˆŪŒŁ† سبزوار'),
(91340, 76208, 'id', 'name', 'IAIN Palangka Raya'),
(91341, 76209, 'no_lang_code', 'name', 'Transparency Lab (Netherlands)'),
(91342, 76210, 'en', 'name', 'Whole Health Institute'),
(91343, 76211, 'en', 'name', 'Tarsus University'),
(91344, 76211, 'tr', 'name', 'Tarsus Üniversitesi'),
(91345, 76212, 'en', 'name', 'Debark University'),
(91346, 76213, 'en', 'name', 'University of Southampton Malaysia'),
(91347, 76214, 'pt', 'name', 'Centro UniversitƔrio Maurƭcio de Nassau'),
(91348, 76215, 'en', 'name', 'Maryland Advanced Development Laboratory'),
(91349, 76216, 'en', 'name', 'Final International University'),
(91350, 76216, 'tr', 'name', 'Uluslararası Final Üniversitesi'),
(91351, 76217, 'en', 'name', 'University of Gonabad'),
(91352, 76217, 'fa', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŁŠ گناباد'),
(91353, 76218, 'en', 'name', 'Fujian Business University'),
(91354, 76218, 'zh', 'name', 'ē¦å»ŗå•†å­¦é™¢'),
(91355, 76219, 'en', 'name', 'Harcourt Butler Technical University'),
(91356, 76219, 'hi', 'name', 'ą¤¹ą¤°ą¤•ą„‹ą¤°ą„ą¤Ÿ बटलर ą¤Ÿą„‡ą¤•ą„ą¤Øą¤æą¤•ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(91357, 76220, 'en', 'name', 'Yango University'),
(91358, 76220, 'zh', 'name', '阳光学院'),
(91359, 76221, 'en', 'name', 'Istanbul Kent University'),
(91360, 76221, 'tr', 'name', 'İstanbul Kent Üniversitesi'),
(91361, 76222, 'en', 'name', 'Jilin Medical University'),
(91362, 76222, 'zh', 'name', 'å‰ęž—åŒ»čÆå­¦é™¢'),
(91363, 76223, 'en', 'name', 'Kutaisi International University'),
(91364, 76223, 'ka', 'name', 'įƒ„įƒ£įƒ—įƒįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ”įƒ įƒ—įƒįƒØįƒįƒ įƒ˜įƒ”įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(91365, 76224, 'en', 'name', 'Arish University'),
(91366, 76224, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ų±ŁŠŲ“'),
(91367, 76225, 'en', 'name', 'Kyiv Academic University'),
(91368, 76225, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ АкаГемічний Університет'),
(91369, 76226, 'en', 'name', 'Maharaja Bir Bikram University'),
(91370, 76226, 'bn', 'name', 'মহারাজা বির ą¦¬ą¦æą¦•ą§ą¦°ą¦® ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(91371, 76227, 'en', 'name', 'Adani Institute of Infrastructure Engineering'),
(91372, 76227, 'gu', 'name', 'અદાણી ąŖ‡ąŖØą«ąŖøą«ąŖŸąŖæąŖŸą«ąŖÆą«‚ąŖŸ ąŖ“ąŖ« ąŖˆąŖØą«ąŖ«ą«ąŖ°ąŖ¾ąŖøą«ąŖŸą«ąŖ°ąŖ•ą«ąŖšąŖ° ąŖąŖØą«ąŖœąŖæąŖØąŖæąŖÆąŖ°ąŖæąŖ‚ąŖ—'),
(91373, 76228, 'en', 'name', 'Sa''adatu Rimi College of Education'),
(91374, 76229, 'en', 'name', 'The Technological College of Beer Sheva'),
(91375, 76229, 'he', 'name', 'המכללה ×”×˜×›× ×•×œ×•×’×™×Ŗ באר שבע'),
(91376, 76230, 'en', 'name', 'Northern Technical University'),
(91377, 76230, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„Ų“Ł…Ų§Ł„ŁŠŲ©'),
(91378, 76231, 'en', 'name', 'The Arab Academic College for Education in Israel'),
(91379, 76231, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ הערבית לחינוך ×‘×™×©×Ø××œ'),
(91380, 76231, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„ŲŖŲ±ŲØŁŠŲ© في Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„'),
(91381, 76232, 'id', 'name', 'Institut Teknologi dan Sains Nahdlatul Ulama'),
(91382, 76233, 'en', 'name', 'Institute of Marine Engineering'),
(91383, 76233, 'it', 'name', 'Istituto di Ingegneria del Mare'),
(91384, 76234, 'en', 'name', 'National Institute of Technology Manipur'),
(91385, 76234, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą¤£ą¤æą¤Ŗą„ą¤°'),
(91386, 76235, 'id', 'name', 'Institut Teknologi Sumatera'),
(91387, 76235, 'en', 'name', 'Sumatera Institute of Technology'),
(91388, 76236, 'en', 'name', 'College of Applied Sciences, Nizwa'),
(91389, 76236, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© ŲØŁ†Ų²ŁˆŁ‰'),
(91390, 76237, 'en', 'name', 'Skyline University Nigeria'),
(91391, 76238, 'az', 'name', 'Milli Aviasiya Akademiyası'),
(91392, 76238, 'en', 'name', 'National Aviation Academy'),
(91393, 76238, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ авиации АзербайГжана'),
(91394, 76239, 'en', 'name', 'Rustaq College of Education'),
(91395, 76239, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŲŖŲ±ŲØŁŠŲ© بالرستاق'),
(91396, 76240, 'id', 'name', 'Politeknik Medica Farma Husada Mataram'),
(91397, 76241, 'en', 'name', 'Institute for Biomedical Research and Innovation'),
(91398, 76241, 'it', 'name', 'L’istituto per la Ricerca e l’innovazione Biomedica'),
(91399, 76242, 'en', 'name', 'Institute for the Science and Technology of Plasmas'),
(91400, 76242, 'it', 'name', 'Istituto per la Scienza e Tecnologia dei Plasmi'),
(91401, 76243, 'en', 'name', 'Moscow Research Institute for Cybernetic Medicine'),
(91402, 76243, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кибернетической меГицины'),
(91403, 76244, 'en', 'name', 'Motamed Cancer Institute'),
(91404, 76244, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ł…Ų¹ŲŖŁ…ŲÆ جهاد ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ'),
(91405, 76245, 'en', 'name', 'Chianti Multifunctional Observatory'),
(91406, 76245, 'it', 'name', 'Osservatorio Polifunzionale del Chianti'),
(91407, 76246, 'es', 'name', 'Instituto Nacional de Calidad'),
(91408, 76246, 'en', 'name', 'National Institute of Quality'),
(91409, 76247, 'en', 'name', 'High Intensity Heavy-ion Accelerator Facility'),
(91410, 76247, 'zh', 'name', 'å¼ŗęµé‡ē¦»å­åŠ é€Ÿå™Øč£…ē½®'),
(91411, 76248, 'en', 'name', 'Research Center in Industrial Technologies'),
(91412, 76248, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ و البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(91413, 76249, 'en', 'name', 'Yangzhou Municipal Meteorological Bureau'),
(91414, 76249, 'zh', 'name', 'ę‰¬å·žåø‚ę°”č±”å±€'),
(91415, 76250, 'fr', 'name', 'Institut de la Filtration et des Techniques SƩparatives'),
(91416, 76251, 'en', 'name', 'Technology Innovation Institute'),
(91417, 76251, 'ar', 'name', 'معهد Ų§Ł„Ų§ŲØŲŖŁƒŲ§Ų± Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(91418, 76252, 'en', 'name', 'The Cambridge Centre for Advanced Research and Education in Singapore'),
(91419, 76253, 'en', 'name', 'International Centre for Interdisciplinary Science and Education'),
(91420, 76253, 'vi', 'name', 'Trung tĆ¢m Quốc tįŗæ Khoa hį»c vĆ  GiĆ”o dỄc liĆŖn ngĆ nh'),
(91421, 76254, 'en', 'name', 'Zoo Atlanta'),
(91422, 76255, 'fr', 'name', 'Agence Nationale de Radioprotection'),
(91423, 76255, 'en', 'name', 'National Radiation Protection Agency of Cameroon'),
(91424, 76256, 'fr', 'name', 'ComitƩ National de DƩveloppement des Technologies'),
(91425, 76256, 'en', 'name', 'National Committee for the Development of Technologies'),
(91426, 76257, 'no_lang_code', 'name', 'Marui Galvanizing (Japan)'),
(91427, 76258, 'es', 'name', 'Academia Nacional de Ciencias'),
(91428, 76258, 'en', 'name', 'National Academy of Sciences'),
(91429, 76259, 'no_lang_code', 'name', 'Memcomputing (United States)'),
(91430, 76260, 'no_lang_code', 'name', 'Preferred Networks (Japan)'),
(91431, 76261, 'en', 'name', 'Hubei Provincial Museum'),
(91432, 76261, 'zh', 'name', 'ę¹–åŒ—ēœåšē‰©é¦†'),
(91433, 76262, 'no_lang_code', 'name', 'Boly Media Communications (United States)'),
(91434, 76263, 'tr', 'name', 'Medical Park Tarsus Hastanesi'),
(91435, 76264, 'no_lang_code', 'name', 'CJSC Ekran FEP (Russia)'),
(91436, 76264, 'ru', 'name', 'Š—ŠŠž Экран ФЭП'),
(91437, 76265, 'no_lang_code', 'name', 'Soliculture (United States)'),
(91438, 76266, 'no_lang_code', 'name', 'CKM Analytix (United States)'),
(91439, 76267, 'no_lang_code', 'name', 'Comecer (Italy)'),
(91440, 76268, 'no_lang_code', 'name', 'Tibbar Plasma Technologies (United States)'),
(91441, 76269, 'no_lang_code', 'name', 'Cafe Bazaar (Iran)'),
(91442, 76269, 'fa', 'name', 'کافه ŲØŲ§Ų²Ų§Ų±'),
(91443, 76270, 'no_lang_code', 'name', 'Cailabs (France)'),
(91444, 76271, 'no_lang_code', 'name', 'a.i. solutions (United States)'),
(91445, 76272, 'en', 'name', 'Baotou Teachers College'),
(91446, 76272, 'zh', 'name', 'åŒ…å¤“åøˆčŒƒå­¦é™¢'),
(91447, 76273, 'en', 'name', 'Creative Destruction Lab'),
(91448, 76274, 'nl', 'name', 'J.M. Burgerscentrum'),
(91449, 76275, 'en', 'name', 'Iranian National Center for Laser Science and Techology'),
(91450, 76275, 'fa', 'name', 'مرکز Ł…Ł„ŪŒ Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† Ł„ŪŒŲ²Ų± Ų§ŪŒŲ±Ų§Ł†'),
(91451, 76276, 'de', 'name', 'Rechenkraft.net'),
(91452, 76277, 'no_lang_code', 'name', 'Zhejiang Lab'),
(91453, 76277, 'zh', 'name', 'ä¹‹ę±Ÿå®žéŖŒå®¤'),
(91454, 76278, 'en', 'name', 'The Thousand'),
(91455, 76279, 'en', 'name', 'The Fusebox'),
(91456, 76280, 'fr', 'name', 'Centre de Collaboration MiQro Innovation'),
(91457, 76280, 'en', 'name', 'MiQro Innovation Collaborative Centre'),
(91458, 76281, 'en', 'name', 'Canberra Innovation Network'),
(91459, 76282, 'en', 'name', 'Federal Police of Brazil'),
(91460, 76282, 'fr', 'name', 'Police FƩdƩrale'),
(91461, 76282, 'es', 'name', 'PolicĆ­a Federal'),
(91462, 76282, 'pt', 'name', 'PolĆ­cia Federal'),
(91463, 76283, 'en', 'name', 'Nevada National Security Site'),
(91464, 76284, 'pt', 'name', 'Governo do Estado de ParaĆ­ba'),
(91465, 76285, 'en', 'name', 'Ministry of Foreign Affairs'),
(91466, 76285, 'pt', 'name', 'MinistƩrio das RelaƧƵes Exteriores'),
(91467, 76286, 'fr', 'name', 'IRT M2P'),
(91468, 76287, 'no_lang_code', 'name', 'QuantaLab'),
(91469, 76288, 'fr', 'name', 'Regroupement QuƩbƩcois sur les MatƩriaux de Pointe'),
(91470, 76289, 'no_lang_code', 'name', 'Kintech Lab (Russia)'),
(91471, 76290, 'no_lang_code', 'name', 'Omsktransmash (Russia)'),
(91472, 76290, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ завоГ транспортного Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(91473, 76291, 'no_lang_code', 'name', 'Xi''an Airborne Electromagnetic Technology (China)'),
(91474, 76291, 'zh', 'name', 'č„æå®‰ēˆ±é‚¦ē”µē£ęŠ€ęœÆęœ‰é™č“£ä»»å…¬åø'),
(91475, 76292, 'no_lang_code', 'name', 'Bloorazma (Iran)'),
(91476, 76292, 'fa', 'name', 'ŲØŁ„ŁˆŲ±Ų¢Ų²Ł…Ų§'),
(91477, 76293, 'no_lang_code', 'name', 'Bluefors (Finland)'),
(91478, 76294, 'no_lang_code', 'name', 'CTFusion (United States)'),
(91479, 76295, 'no_lang_code', 'name', 'Central Alliance (United Kingdom)'),
(91480, 76296, 'no_lang_code', 'name', 'Cherry Biotech (France)'),
(91481, 76297, 'fr', 'name', 'Services PartagƩs Canada'),
(91482, 76297, 'en', 'name', 'Shared Services Canada'),
(91483, 76298, 'no_lang_code', 'name', 'Closer Consultoria (Portugal)'),
(91484, 76299, 'en', 'name', 'Shanghai Zhangjiang Laboratory'),
(91485, 76299, 'zh', 'name', 'äøŠęµ·ęŽØčæ›ē§‘ęŠ€åˆ›ę–°äø­åæƒå»ŗč®¾åŠžå…¬å®¤'),
(91486, 76300, 'no_lang_code', 'name', 'Comeb (Italy)'),
(91487, 76301, 'no_lang_code', 'name', 'Comet (Switzerland)'),
(91488, 76302, 'es', 'name', 'SecretarĆ­a de Salud de BogotĆ”'),
(91489, 76303, 'no_lang_code', 'name', 'Compagnie Tunisienne de Forage (Tunisia)'),
(91490, 76304, 'no_lang_code', 'name', 'Compass (United States)'),
(91491, 76305, 'no_lang_code', 'name', 'AVIC Optronics (China)'),
(91492, 76305, 'zh', 'name', 'čˆŖē©ŗå·„äøšå…‰ē”µę‰€'),
(91493, 76306, 'no_lang_code', 'name', 'CoreTech (China)'),
(91494, 76307, 'en', 'name', 'ISRO Propulsion Complex'),
(91495, 76307, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤…ą¤‚ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø संगठन ą¤Ŗą„ą¤°ą¤£ą„‹ą¤¦ą¤Ø ą¤øą¤®ą„‚ą¤¹'),
(91496, 76307, 'te', 'name', 'ą°‡ą°øą±ą°°ą±‹ ą°Ŗą±ą°°ą±Šą°Ŗą°²ą±ą°·ą°Øą± ą°•ą°¾ą°‚ą°Ŗą±ą°²ą±†ą°•ą±ą°øą±'),
(91497, 76308, 'en', 'name', 'Administrative Council for Economic Defense'),
(91498, 76308, 'pt', 'name', 'Conselho Administrativo de Defesa EconƓmica'),
(91499, 76309, 'no_lang_code', 'name', 'Cosmo Tech (France)'),
(91500, 76310, 'no_lang_code', 'name', 'n&k Technology (United States)'),
(91501, 76311, 'no_lang_code', 'name', '3B the Fiberglass (Belgium)'),
(91502, 76312, 'no_lang_code', 'name', 'Cyber Laser (Japan)'),
(91503, 76312, 'ja', 'name', 'ć‚µć‚¤ćƒćƒ¼ćƒ¬ćƒ¼ć‚¶'),
(91504, 76313, 'no_lang_code', 'name', 'AP2E (France)'),
(91505, 76314, 'no_lang_code', 'name', 'DAC Tools (United States)'),
(91506, 76315, 'no_lang_code', 'name', 'APCON (Germany)'),
(91507, 76316, 'no_lang_code', 'name', 'DATADVANCE (France)'),
(91508, 76317, 'en', 'name', 'Directorate of Religious Affairs'),
(91509, 76317, 'tr', 'name', 'Diyanet İşleri Başkanlığı'),
(91510, 76318, 'no_lang_code', 'name', 'Asics (Japan)'),
(91511, 76318, 'ja', 'name', 'ć‚¢ć‚·ćƒƒć‚Æć‚¹'),
(91512, 76319, 'no_lang_code', 'name', 'DataStrategy (Japan)'),
(91513, 76319, 'ja', 'name', 'ćƒ‡ćƒ¼ć‚æć‚¹ćƒˆćƒ©ćƒ†ć‚ø'),
(91514, 76320, 'no_lang_code', 'name', 'Acoustic Metamaterials Group (China)'),
(91515, 76321, 'no_lang_code', 'name', 'ELCA (Switzerland)'),
(91516, 76322, 'no_lang_code', 'name', 'Agnostiq (Canada)'),
(91517, 76323, 'no_lang_code', 'name', 'ElFys (Finland)'),
(91518, 76324, 'no_lang_code', 'name', 'Alpine Quantum Technologies (Austria)'),
(91519, 76325, 'no_lang_code', 'name', 'TianKai Optical Communication (China)'),
(91520, 76325, 'ja', 'name', 'å¤©å‡Æå…‰é€šäæ”'),
(91521, 76326, 'no_lang_code', 'name', 'Arioso Systems (Germany)'),
(91522, 76327, 'no_lang_code', 'name', 'EoTech (United States)'),
(91523, 76328, 'no_lang_code', 'name', 'Arithmer (Japan)'),
(91524, 76329, 'no_lang_code', 'name', 'Electron (Ukraine)'),
(91525, 76329, 'uk', 'name', 'Електрон'),
(91526, 76330, 'no_lang_code', 'name', 'LDI Innovation (Estonia)'),
(91527, 76331, 'no_lang_code', 'name', 'LDK Solar (China)'),
(91528, 76331, 'zh', 'name', 'č³½ē¶­å¤Ŗé™½čƒ½'),
(91529, 76332, 'no_lang_code', 'name', 'Arrayed Materials (China)'),
(91530, 76333, 'no_lang_code', 'name', 'LPE (Italy)'),
(91531, 76334, 'no_lang_code', 'name', 'Itasca Consultants (United States)'),
(91532, 76335, 'en', 'name', 'The NSF AI Institute for Artificial Intelligence and Fundamental Interactions'),
(91533, 76336, 'no_lang_code', 'name', 'Atom Computing (United States)'),
(91534, 76337, 'no_lang_code', 'name', 'Azimuth (United States)'),
(91535, 76338, 'no_lang_code', 'name', 'Elena International (Germany)'),
(91536, 76339, 'no_lang_code', 'name', 'BGR Energy Systems (India)'),
(91537, 76340, 'no_lang_code', 'name', 'Elliptika (France)'),
(91538, 76341, 'no_lang_code', 'name', 'BME Bergmann (Germany)'),
(91539, 76342, 'no_lang_code', 'name', 'Laser Systems & Solutions of Europe (France)'),
(91540, 76343, 'no_lang_code', 'name', 'Engineering Software Steyr (Austria)'),
(91541, 76344, 'no_lang_code', 'name', 'BNP Paribas (China)'),
(91542, 76345, 'no_lang_code', 'name', 'LightTrans (Germany)'),
(91543, 76346, 'no_lang_code', 'name', 'Entropica Labs (Singapore)'),
(91544, 76347, 'no_lang_code', 'name', 'BeDimensional (Italy)'),
(91545, 76348, 'no_lang_code', 'name', 'Evalf Computing (Netherlands)'),
(91546, 76349, 'no_lang_code', 'name', 'Beijing Zhongchuangwei Quantum Communication Technology (China)'),
(91547, 76349, 'zh', 'name', 'äø­åˆ›äøŗé‡å­'),
(91548, 76350, 'no_lang_code', 'name', 'Berger Paints (India)'),
(91549, 76351, 'no_lang_code', 'name', 'Everspin Technologies (United States)'),
(91550, 76352, 'no_lang_code', 'name', 'BioNet Lab (Japan)'),
(91551, 76352, 'ja', 'name', 'ćƒć‚¤ć‚Ŗćƒćƒƒćƒˆē ”ē©¶ę‰€'),
(91552, 76353, 'no_lang_code', 'name', 'Hydroquest (France)'),
(91553, 76354, 'no_lang_code', 'name', 'Line Corporation (Japan)'),
(91554, 76355, 'no_lang_code', 'name', 'LinkedIn (United States)'),
(91555, 76356, 'no_lang_code', 'name', 'Hyland Software (United States)'),
(91556, 76357, 'no_lang_code', 'name', 'Lorentz Solution (United States)'),
(91557, 76358, 'no_lang_code', 'name', 'IBM (Spain)'),
(91558, 76359, 'no_lang_code', 'name', 'Lucht Probst Associates (Germany)'),
(91559, 76360, 'no_lang_code', 'name', 'MSSCORPS (Taiwan)'),
(91560, 76361, 'no_lang_code', 'name', 'IQM (Finland)'),
(91561, 76362, 'no_lang_code', 'name', 'Silicon Therapeutics (United States)'),
(91562, 76363, 'no_lang_code', 'name', 'ISHIFUKU (Japan)'),
(91563, 76363, 'ja', 'name', 'ēŸ³ē¦é‡‘å±žčˆˆę„­'),
(91564, 76364, 'en', 'name', 'Simetri Foundation'),
(91565, 76364, 'id', 'name', 'Yayasan Simetri'),
(91566, 76365, 'no_lang_code', 'name', 'Infineon Technologies (Singapore)'),
(91567, 76366, 'no_lang_code', 'name', 'Sisu Data (United States)'),
(91568, 76367, 'no_lang_code', 'name', 'SmarAct (Germany)'),
(91569, 76368, 'no_lang_code', 'name', 'SoftServe (United States)'),
(91570, 76369, 'no_lang_code', 'name', 'Focused Photonics (China)'),
(91571, 76369, 'zh', 'name', 'čšå…‰ē§‘ęŠ€'),
(91572, 76370, 'en', 'name', 'Sumitomo Mitsui Banking Corporation'),
(91573, 76370, 'ja', 'name', 'äø‰äŗ•ä½å‹éŠ€č”Œ'),
(91574, 76371, 'no_lang_code', 'name', 'SuperSonic Imagine (France)'),
(91575, 76372, 'no_lang_code', 'name', 'Forms Syntron Information (China)'),
(91576, 76372, 'zh', 'name', 'å››ę–¹ē²¾åˆ›'),
(91577, 76373, 'no_lang_code', 'name', 'Swabian Instruments (Germany)'),
(91578, 76374, 'no_lang_code', 'name', 'Swift Solar (United States)'),
(91579, 76375, 'no_lang_code', 'name', 'GLS Industries (Canada)'),
(91580, 76376, 'no_lang_code', 'name', 'Insync Technology (United Kingdom)'),
(91581, 76377, 'no_lang_code', 'name', 'TCG Crest'),
(91582, 76378, 'no_lang_code', 'name', 'Glo (Sweden)'),
(91583, 76379, 'en', 'name', 'International Academy of Astronautics'),
(91584, 76380, 'no_lang_code', 'name', 'TechnoSpex (Singapore)'),
(91585, 76381, 'no_lang_code', 'name', 'Global Communication Semiconductors (United States)'),
(91586, 76382, 'no_lang_code', 'name', 'Gloor Instruments (Switzerland)'),
(91587, 76383, 'no_lang_code', 'name', 'Tesat-Spacecom (Germany)'),
(91588, 76384, 'no_lang_code', 'name', 'Intermodulation Products (Sweden)'),
(91589, 76385, 'no_lang_code', 'name', 'Tuya (China)'),
(91590, 76385, 'zh', 'name', 'ę¶‚éø¦'),
(91591, 76386, 'no_lang_code', 'name', 'Thurmelec (France)'),
(91592, 76387, 'no_lang_code', 'name', 'Tianjin Zhujin Technology Development (China)'),
(91593, 76387, 'zh', 'name', 'å¤©ę“„é“øé‡‘ē§‘ęŠ€å¼€å‘'),
(91594, 76388, 'no_lang_code', 'name', 'Hefei Everpower Equipment (China)'),
(91595, 76389, 'no_lang_code', 'name', 'Transpower (New Zealand)'),
(91596, 76390, 'no_lang_code', 'name', 'Hellenic Telecommunications and Post Commission (Greece)'),
(91597, 76390, 'el', 'name', 'Εθνική Επιτροπή Ī¤Ī·Ī»ĪµĻ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½ και ΤαχυΓρομείων'),
(91598, 76391, 'no_lang_code', 'name', 'TraskBritt (United States)'),
(91599, 76392, 'no_lang_code', 'name', 'Shijia Photons (China)'),
(91600, 76392, 'zh', 'name', '仕佳光子'),
(91601, 76393, 'no_lang_code', 'name', 'Ionetix (United States)'),
(91602, 76394, 'no_lang_code', 'name', 'HighFinesse (Germany)'),
(91603, 76395, 'no_lang_code', 'name', 'Jabil (United States)'),
(91604, 76396, 'no_lang_code', 'name', 'TrueOne Semiconductor (China)'),
(91605, 76396, 'zh', 'name', 'ä¼—å…ƒåŠåÆ¼ä½“'),
(91606, 76397, 'no_lang_code', 'name', 'Manaty (France)'),
(91607, 76398, 'no_lang_code', 'name', 'Turbon (Germany)'),
(91608, 76399, 'no_lang_code', 'name', 'Jiangnan Industry Group (China)'),
(91609, 76399, 'zh', 'name', 'ę±Ÿå—å·„äøšé›†å›¢'),
(91610, 76400, 'no_lang_code', 'name', 'VNIR Biotechnologies (India)'),
(91611, 76401, 'no_lang_code', 'name', 'Kebotix (United States)'),
(91612, 76402, 'no_lang_code', 'name', 'Visage Technologies (Sweden)'),
(91613, 76403, 'no_lang_code', 'name', 'Metacept (United States)'),
(91614, 76404, 'no_lang_code', 'name', 'VitreaLab (Austria)'),
(91615, 76405, 'no_lang_code', 'name', 'Wave Up (Italy)'),
(91616, 76406, 'no_lang_code', 'name', 'X-Ability (Japan)'),
(91617, 76407, 'no_lang_code', 'name', 'Kisters (Germany)'),
(91618, 76408, 'no_lang_code', 'name', 'Kobe Material Testing Laboratory (Japan)'),
(91619, 76409, 'no_lang_code', 'name', 'Korean Register (South Korea)'),
(91620, 76409, 'ko', 'name', 'ķ•œźµ­ģ„ źø‰'),
(91621, 76410, 'no_lang_code', 'name', 'Modern Electron (United States)'),
(91622, 76411, 'no_lang_code', 'name', 'Multiverse Computing (Spain)'),
(91623, 76412, 'no_lang_code', 'name', 'NeoPhotonics (United States)'),
(91624, 76413, 'no_lang_code', 'name', 'Kunshan SW laser Technology (China)'),
(91625, 76414, 'no_lang_code', 'name', 'Nisshin Scientia (Japan)'),
(91626, 76414, 'ja', 'name', 'ę—„é€²ć‚µć‚¤ć‚Øćƒ³ćƒ†ć‚£ć‚¢'),
(91627, 76415, 'no_lang_code', 'name', 'Kyivmetroproekt (Ukraine)'),
(91628, 76415, 'uk', 'name', 'ŠšŠ˜Š‡Š’ŠŸŠ ŠžŠ•ŠšŠ¢'),
(91629, 76416, 'no_lang_code', 'name', 'Wescam (Canada)'),
(91630, 76417, 'en', 'name', 'State Scientific Institution "Institute of Educational Analytics"'),
(91631, 76417, 'uk', 'name', 'Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾ŃŠ²Ń–Ń‚Š½ŃŒŠ¾Ń— аналітики"'),
(91632, 76418, 'no_lang_code', 'name', 'Microsoft (Canada)'),
(91633, 76419, 'no_lang_code', 'name', 'Michelin (Japan)'),
(91634, 76420, 'no_lang_code', 'name', 'OTI Lumionics (Canada)'),
(91635, 76421, 'no_lang_code', 'name', 'Nodes & Links (United Kingdom)'),
(91636, 76422, 'no_lang_code', 'name', 'OVO (Indonesia)'),
(91637, 76423, 'en', 'name', 'Odessa Military Academy'),
(91638, 76423, 'uk', 'name', 'Š’Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾Ń— AкаГемії'),
(91639, 76424, 'no_lang_code', 'name', 'Microsoft (Switzerland)'),
(91640, 76425, 'no_lang_code', 'name', 'QuantumCTek (China)'),
(91641, 76426, 'no_lang_code', 'name', 'Qubitekk (United States)'),
(91642, 76427, 'no_lang_code', 'name', 'QuintessenceLabs (Australia)'),
(91643, 76428, 'no_lang_code', 'name', 'Oledcomm (France)'),
(91644, 76429, 'no_lang_code', 'name', 'Quside Technologies (Spain)'),
(91645, 76430, 'no_lang_code', 'name', 'Rahko (United Kingdom)'),
(91646, 76431, 'no_lang_code', 'name', 'Raith (Germany)'),
(91647, 76432, 'no_lang_code', 'name', 'Onto Innovation (United States)'),
(91648, 76433, 'no_lang_code', 'name', 'Optikron (Germany)'),
(91649, 76434, 'no_lang_code', 'name', 'Origin Quantum Computing Technology Company (China)'),
(91650, 76434, 'zh', 'name', 'å›½å†…ē¬¬äø€ę¬¾é‡å­č®”ē®—ęœŗę“ä½œē³»ē»Ÿ'),
(91651, 76435, 'no_lang_code', 'name', 'Scionix (Netherlands)'),
(91652, 76436, 'no_lang_code', 'name', 'Suss Microoptics (Switzerland)'),
(91653, 76436, 'de', 'name', 'SÜSS MicroOptics'),
(91654, 76437, 'no_lang_code', 'name', 'Orihara Industrial (Japan)'),
(91655, 76438, 'no_lang_code', 'name', 'Sanmina (United States)'),
(91656, 76439, 'en', 'name', 'The Geneva Association'),
(91657, 76440, 'no_lang_code', 'name', 'Exxelia (France)'),
(91658, 76441, 'no_lang_code', 'name', 'PiDust Quantum Computing (Greece)'),
(91659, 76442, 'no_lang_code', 'name', 'Plasmore (Italy)'),
(91660, 76443, 'no_lang_code', 'name', 'Poietis (France)'),
(91661, 76444, 'no_lang_code', 'name', 'Polygon Physics (France)'),
(91662, 76445, 'no_lang_code', 'name', 'ProteinQure (Canada)'),
(91663, 76446, 'no_lang_code', 'name', 'QGLex (Canada)'),
(91664, 76447, 'no_lang_code', 'name', 'MS-Schramberg (Germany)'),
(91665, 76448, 'no_lang_code', 'name', 'Sedecal Medical Imaging (Spain)'),
(91666, 76449, 'no_lang_code', 'name', 'Seikow Chemical Engineering and Machinery (Japan)'),
(91667, 76449, 'ja', 'name', 'ć‚»ć‚¤ć‚³ćƒ¼åŒ–å·„ę©Ÿ'),
(91668, 76450, 'no_lang_code', 'name', 'Sensitron Semiconductor (United States)'),
(91669, 76451, 'no_lang_code', 'name', 'Seven Solutions (Spain)'),
(91670, 76452, 'no_lang_code', 'name', 'Shenzhen Beauty Star (China)'),
(91671, 76452, 'zh', 'name', 'ę·±åœ³åø‚åŠ›åˆē§‘åˆ›č‚”ä»½ęœ‰é™å…¬åø'),
(91672, 76453, 'no_lang_code', 'name', 'Sibatel Communications (United States)'),
(91673, 76454, 'no_lang_code', 'name', 'QuEra Computing (United States)'),
(91674, 76455, 'no_lang_code', 'name', 'QNu Labs (India)'),
(91675, 76456, 'no_lang_code', 'name', 'Yashentech (China)'),
(91676, 76456, 'zh', 'name', 'äŗšē”³ē§‘ęŠ€'),
(91677, 76457, 'no_lang_code', 'name', 'Quandela (France)'),
(91678, 76458, 'no_lang_code', 'name', 'Yuyao Joywee Electrics (China)'),
(91679, 76458, 'zh', 'name', 'ā€ä½™å§šåø‚éŖ„åØē”µå™Ø'),
(91680, 76459, 'no_lang_code', 'name', 'Quantlab (United States)'),
(91681, 76460, 'no_lang_code', 'name', 'Quantropi (Canada)'),
(91682, 76461, 'no_lang_code', 'name', 'Zenta Group (Chile)'),
(91683, 76462, 'no_lang_code', 'name', 'Zeta Economics (United Kingdom)'),
(91684, 76463, 'no_lang_code', 'name', 'd-fine (Germany)'),
(91685, 76464, 'no_lang_code', 'name', 'Ibule Photonics (South Korea)'),
(91686, 76465, 'en', 'name', 'Saveh University of Medical Sciences'),
(91687, 76465, 'fa', 'name', 'دانؓکده Ų¹Ł„ŁˆŁ… پزؓکی Ų³Ų§ŁˆŁ‡'),
(91688, 76466, 'en', 'name', 'Bam University of Medical Sciences'),
(91689, 76466, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŁ…'),
(91690, 76467, 'en', 'name', 'Sunshine Coast University Hospital'),
(91691, 76468, 'id', 'name', 'Universitas Internasional Semen Indonesia'),
(91692, 76469, 'hu', 'name', 'Fejér Megyei Szent György Egyetemi Oktató KórhÔz'),
(91693, 76470, 'id', 'name', 'Universitas Pahlawan Tuanku Tambusai'),
(91694, 76471, 'id', 'name', 'Universitas Teknokrat Indonesia'),
(91695, 76472, 'en', 'name', 'Kabardino-Balkarian Scientific Center'),
(91696, 76472, 'aa', 'name', 'ŠšŠŠ‘ŠŠ Š”Š˜ŠŠž-Š‘ŠŠ›ŠšŠŠ Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠ«Š™ Š¦Š•ŠŠ¢Š  Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ ŠŠšŠŠ”Š•ŠœŠ˜Š˜ ŠŠŠ£Šš'),
(91697, 76473, 'en', 'name', 'Abdul Latif Jameel Poverty Action Lab'),
(91698, 76474, 'en', 'name', 'American Finance Association'),
(91699, 76475, 'en', 'name', 'Atlanta University Center Robert W. Woodruff Library'),
(91700, 76476, 'en', 'name', 'Catholic Legal Immigration Network'),
(91701, 76477, 'en', 'name', 'Department of International Relations and Cooperation'),
(91702, 76478, 'en', 'name', 'Carolina Small Business Development Fund'),
(91703, 76479, 'no_lang_code', 'name', 'Pregistry (United States)'),
(91704, 76480, 'en', 'name', 'Human Technopole'),
(91705, 76481, 'en', 'name', 'Cemmap'),
(91706, 76482, 'no_lang_code', 'name', 'Cytologics (United States)'),
(91707, 76483, 'es', 'name', 'Weber'),
(91708, 76484, 'en', 'name', 'Global Alliance for Incinerator Alternatives'),
(91709, 76485, 'en', 'name', 'Australian Institue of Men''s Health and Studies'),
(91710, 76486, 'de', 'name', 'Economica'),
(91711, 76487, 'en', 'name', 'Kursk Federal Agrarian Scientific Center'),
(91712, 76487, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŠŠ°ŃƒŃ‡Š½Š¾Šµ УчрежГение'),
(91713, 76488, 'en', 'name', 'Forest Ecosystem Monitoring Cooperative'),
(91714, 76489, 'en', 'name', 'Eurasia Institutes'),
(91715, 76490, 'en', 'name', 'CTOR Press'),
(91716, 76491, 'en', 'name', 'Dangerous Speech Project'),
(91717, 76492, 'en', 'name', 'Ministry of Public Works Transportation and Communications'),
(91718, 76492, 'ht', 'name', 'MinistĆØre des Travaux Publics Transports et Communications'),
(91719, 76493, 'en', 'name', 'Solar Heating and Cooling Programme'),
(91720, 76494, 'en', 'name', 'Agency for Quality Assurance and Accreditation Austria'),
(91721, 76494, 'de', 'name', 'Agentur für Qualitätssicherung und Akkreditierung Austria'),
(91722, 76495, 'en', 'name', 'Ministry of Agriculture Natural Resources and Rural Development'),
(91723, 76495, 'ht', 'name', 'MinistĆØ l''Agrikilti Resous NatirĆØl ak Devlopman Riral'),
(91724, 76495, 'fr', 'name', 'Ministère de l''Agriculture des Ressources Naturelles et du Développement Rural');
INSERT INTO `ror_settings` VALUES
(91725, 76496, 'en', 'name', 'InterAmerican Network of Academies of Sciences'),
(91726, 76497, 'en', 'name', 'Centre for Evaluation in Education and Science'),
(91727, 76498, 'en', 'name', 'Egyptian Initiative for Personal Rights'),
(91728, 76498, 'ar', 'name', 'المبادرة Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ł„Ł„Ų­Ł‚ŁˆŁ‚ Ų§Ł„Ų“Ų®ŲµŁŠŲ©ā€Ž'),
(91729, 76499, 'en', 'name', 'International Centre for Trade and Sustainable Development'),
(91730, 76500, 'en', 'name', 'Government Logistics Department'),
(91731, 76500, 'zh', 'name', 'ę”æåŗœē‰©ęµęœå‹™ē½²'),
(91732, 76501, 'ms', 'name', 'Pertubuhan Pertolongan Wanita'),
(91733, 76501, 'en', 'name', 'Women''s Aid Organisation'),
(91734, 76502, 'en', 'name', 'Ioannis A. Lougaris Veterans Affairs Medical Center'),
(91735, 76503, 'en', 'name', 'Canadian Media Concentration Research Project'),
(91736, 76504, 'en', 'name', 'Laudes Foundation'),
(91737, 76505, 'en', 'name', 'Fresno VA Medical Center'),
(91738, 76506, 'no_lang_code', 'name', 'SyncScience (United States)'),
(91739, 76507, 'en', 'name', 'Center for Indonesian Policy Studies'),
(91740, 76508, 'en', 'name', 'VA Finger Lakes Healthcare System'),
(91741, 76509, 'pt', 'name', 'Sobest – Associacao Brasileira de Estomaterapia'),
(91742, 76510, 'en', 'name', 'James H. Quillen VA Medical Center'),
(91743, 76511, 'en', 'name', 'Garland VA Medical Center'),
(91744, 76512, 'en', 'name', 'Centre for Ageing Better'),
(91745, 76513, 'en', 'name', 'Sam Rayburn Memorial Veterans Center'),
(91746, 76514, 'en', 'name', 'Alvin C. York VA Medical Center'),
(91747, 76515, 'en', 'name', 'Loch Raven VA Medical Center'),
(91748, 76516, 'en', 'name', 'Civicus'),
(91749, 76517, 'en', 'name', 'İLKE Science, Culture and Education Foundation'),
(91750, 76517, 'tr', 'name', 'İLKE İlim Kültür Eğitim Vakfı'),
(91751, 76518, 'en', 'name', 'Tibor Rubin VA Medical Center'),
(91752, 76519, 'no_lang_code', 'name', 'Isomer Design (Canada)'),
(91753, 76520, 'en', 'name', 'Centre of Excellence for Development Impact and Learning'),
(91754, 76521, 'es', 'name', 'Centro de Investigación y Proyectos en Ambiente y Desarrollo'),
(91755, 76522, 'es', 'name', 'Consello da Cultura Galega'),
(91756, 76523, 'en', 'name', 'Coordinating Research Council'),
(91757, 76524, 'de', 'name', 'DeGEval - Gesellschaft für Evaluation'),
(91758, 76524, 'en', 'name', 'DeGEval – Evaluation Society'),
(91759, 76525, 'es', 'name', 'Instituto Nacional de Investigación en Glaciares y Ecosistemas de Montaña'),
(91760, 76526, 'en', 'name', 'Consortium for Policy Research in Education'),
(91761, 76527, 'en', 'name', 'Austrian Institute for SME Research'),
(91762, 76527, 'de', 'name', 'KMU Forschung Austria'),
(91763, 76528, 'en', 'name', 'Crop Protection Network'),
(91764, 76529, 'en', 'name', 'Canadian Institute for Public Safety Research and Treatment'),
(91765, 76529, 'fr', 'name', 'Institut Canadien de Recherche et de Traitement en SƩcuritƩ Publique'),
(91766, 76530, 'en', 'name', 'Institute for Poverty, Land and Agrarian Studies'),
(91767, 76531, 'en', 'name', 'Lebanon Support'),
(91768, 76532, 'en', 'name', 'IEDP Developing Leaders'),
(91769, 76533, 'en', 'name', 'The Institute of Europe of the Russian Academy of Sciences'),
(91770, 76533, 'ru', 'name', 'Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠžŠ• Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• ŠŠŠ£ŠšŠ˜ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š•Š’Š ŠžŠŸŠ« Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ ŠŠšŠŠ”Š•ŠœŠ˜Š˜ ŠŠŠ£Šš'),
(91771, 76534, 'en', 'name', 'Institute of Feed and Agriculture of Podillya of the National Academy of Agrarian Sciences'),
(91772, 76534, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кормів та ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠŸŠ¾Š“Ń–Š»Š»Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(91773, 76535, 'pt', 'name', 'Observatório da Emigração'),
(91774, 76536, 'en', 'name', 'Meteoceanics Institute for Complex System Science'),
(91775, 76537, 'en', 'name', 'Ontario Drug Policy Research Network'),
(91776, 76538, 'en', 'name', 'Munich Security Conference'),
(91777, 76538, 'de', 'name', 'Münchner Sicherheitskonferenz'),
(91778, 76539, 'pt', 'name', 'Mecila'),
(91779, 76540, 'es', 'name', 'Observatorio de la Inmigración de Tenerife'),
(91780, 76541, 'en', 'name', 'Netherlands Graduate Research School of Science, Technology and Modern Culture'),
(91781, 76542, 'no_lang_code', 'name', 'Medizinisch Wissenschaftliche Verlagsgesellschaft (Germany)'),
(91782, 76543, 'en', 'name', 'National Association of Psychiatric Intensive Care and Low Secure Unit'),
(91783, 76544, 'en', 'name', 'Austrian Mathematical Society'),
(91784, 76544, 'de', 'name', 'Ɩsterreichische Mathematische Gesellschaft'),
(91785, 76545, 'en', 'name', 'Climate Modelling Laboratory'),
(91786, 76546, 'en', 'name', 'Innovative Scientific Information & Services Network'),
(91787, 76547, 'en', 'name', 'Committee on Publication Ethics'),
(91788, 76548, 'de', 'name', 'Ɩsterreichisches Institut für Berufsbildungsforschung'),
(91789, 76549, 'no_lang_code', 'name', 'River Publishers (Denmark)'),
(91790, 76550, 'en', 'name', 'Program Systems Institute of RAS'),
(91791, 76550, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ программных систем Российской акаГемии наук'),
(91792, 76551, 'en', 'name', 'Russian Research Institute for Integrated Water Management and Protection'),
(91793, 76552, 'en', 'name', 'State Scientific Institution "Institute of Education Content Modernization"'),
(91794, 76552, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ моГернізації Š·Š¼Ń–ŃŃ‚Ńƒ освіти'),
(91795, 76553, 'en', 'name', 'Mykolaiv Observatory'),
(91796, 76553, 'uk', 'name', 'ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠ° астрономічна Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€Ń–Ń'),
(91797, 76553, 'ru', 'name', 'ŠŠøŠŗŠ¾Š»Š°ŠµŠ²ŃŠŗŠ°Ń Š°ŃŃ‚Ń€Š¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(91798, 76554, 'es', 'name', 'Observatorio Nacional de las Telecomunicaciones y de la Sociedad de la Información'),
(91799, 76555, 'en', 'name', 'Science Table'),
(91800, 76556, 'ga', 'name', 'InstitiĆŗid RĆ­oga AiltirĆ­ na hƉireann'),
(91801, 76556, 'en', 'name', 'Royal Institute of the Architects of Ireland'),
(91802, 76557, 'en', 'name', 'Russian Dialysis Society'),
(91803, 76557, 'ru', 'name', 'Российское Гиализное общество'),
(91804, 76558, 'en', 'name', 'Centre for Bhutan Studies and GNH Research'),
(91805, 76558, 'dz', 'name', 'ą½‘ą½”ą½£ą¼‹ą½ ą½–ą¾²ą½“ą½‚ą¼‹ą½žą½²ą½–ą¼‹ą½ ą½‡ą½“ą½‚ą¼‹ą½£ą¾Ÿą½ŗą¼‹ą½–ą¼‹'),
(91806, 76559, 'en', 'name', 'Hong Kong Institute of Steel Construction'),
(91807, 76560, 'en', 'name', 'Population Council Institute'),
(91808, 76561, 'en', 'name', 'The Society for Academic Primary Care'),
(91809, 76562, 'en', 'name', 'International Innovative University'),
(91810, 76562, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ инновационный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(91811, 76563, 'en', 'name', 'UNESCO Institute for Statistics'),
(91812, 76564, 'pt', 'name', 'Sociedade Portuguesa de Ciências da Educação'),
(91813, 76565, 'en', 'name', 'Russian Society of Sociologists'),
(91814, 76565, 'ru', 'name', 'Российское общество социологов'),
(91815, 76566, 'en', 'name', 'United Nations Institute for Disarmament Research'),
(91816, 76567, 'en', 'name', 'Center for the National Interest'),
(91817, 76568, 'en', 'name', 'Tiny Beam Fund'),
(91818, 76569, 'en', 'name', 'TMG Research'),
(91819, 76570, 'en', 'name', 'UNICEF East Asia and Pacific Regional Office'),
(91820, 76570, 'th', 'name', 'ąø­ąø‡ąø„ą¹Œąøąø²ąø£ąø¢ąø¹ąø™ąø“ą¹€ąø‹ąøŸ ประเทศไทย'),
(91821, 76571, 'en', 'name', 'The White House'),
(91822, 76572, 'no_lang_code', 'name', 'Universal Printing House "Alpha Print" (Russia)'),
(91823, 76572, 'ru', 'name', 'Š£Š½ŠøŠ²ŠµŃ€ŃŠ°Š»ŃŒŠ½Š°Ń Š¢ŠøŠæŠ¾Š³Ń€Š°Ń„ŠøŃ Ā«ŠŠ»ŃŒŃ„Š° ŠŸŃ€ŠøŠ½Ń‚Ā»'),
(91824, 76573, 'en', 'name', 'International Academy of Agrarian Education'),
(91825, 76573, 'ru', 'name', 'ŠœŠ•Š–Š”Š£ŠŠŠ ŠžŠ”ŠŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ ŠŠ“Š ŠŠ ŠŠžŠ“Šž ŠžŠ‘Š ŠŠ—ŠžŠ’ŠŠŠ˜ŠÆ'),
(91826, 76573, 'zh', 'name', 'åœ‹éš›č¾²ę„­ę•™č‚²å­øé™¢'),
(91827, 76574, 'en', 'name', 'Melnikov Permafrost Institute of the Siberian Branch of the Russian Academy of Science'),
(91828, 76574, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ€Š·Š»Š¾Ń‚Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ имени П. И. Мельникова Š”Šž Š ŠŠ'),
(91829, 76575, 'en', 'name', 'Central Scientific Library of the Far Eastern Branch of the Russian Academy of Sciences'),
(91830, 76575, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ Š¾Š±ŃŠ»ŃƒŠ¶ŠøŠ²Š°Š½ŠøŃ Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń Š½Š°ŃƒŃ‡Š½Š°Ń библиотека Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(91831, 76576, 'en', 'name', 'Youth Research and Evaluation eXchange'),
(91832, 76577, 'en', 'name', 'National Geological Archives of China'),
(91833, 76577, 'zh', 'name', 'å…Øå›½åœ°č“Øčµ„ę–™é¦†'),
(91834, 76578, 'en', 'name', 'Udmurt Federal Research Center, Ural Branch of the Russian Academy of Sciences'),
(91835, 76578, 'ru', 'name', 'Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠøŠ¹ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр'),
(91836, 76579, 'en', 'name', 'Korea Culture & Tourism Institute'),
(91837, 76579, 'ko', 'name', 'ķ•œźµ­ė¬øķ™”ź“€ź“‘ģ—°źµ¬ģ›'),
(91838, 76580, 'en', 'name', 'CPM Academy of Business'),
(91839, 76580, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ бизнеса'),
(91840, 76581, 'no_lang_code', 'name', 'Abound Bio (United States)'),
(91841, 76582, 'no_lang_code', 'name', 'Flagship Pioneering (United States)'),
(91842, 76583, 'en', 'name', 'Centre for Advanced Process Technology for Urban Resource Recovery'),
(91843, 76584, 'en', 'name', 'BioInnovation Institute'),
(91844, 76585, 'no_lang_code', 'name', 'Biosyntia (Denmark)'),
(91845, 76586, 'en', 'name', 'Blue Resources Trust'),
(91846, 76587, 'en', 'name', 'Bruce Museum'),
(91847, 76588, 'no_lang_code', 'name', 'Analytical Biosciences (China)'),
(91848, 76589, 'en', 'name', 'Hefei National Center for Physical Sciences at Nanoscale'),
(91849, 76589, 'zh', 'name', 'åˆč‚„å¾®å°ŗåŗ¦ē‰©č“Øē§‘å­¦å›½å®¶å®žéŖŒå®¤'),
(91850, 76590, 'no_lang_code', 'name', 'Bureau Waardenburg (Netherlands)'),
(91851, 76591, 'en', 'name', 'Centre for High Performance Computing'),
(91852, 76592, 'en', 'name', 'Arnold Regge Center'),
(91853, 76593, 'en', 'name', 'Centre for Palaeogenetics'),
(91854, 76594, 'en', 'name', 'Climate Analytics'),
(91855, 76595, 'en', 'name', 'Doaba College'),
(91856, 76596, 'en', 'name', 'International Nemrud Foundation'),
(91857, 76597, 'en', 'name', 'Institute of Ionosphere'),
(91858, 76598, 'en', 'name', 'Chinese Institute for Brain Research'),
(91859, 76598, 'zh', 'name', 'åŒ—äŗ¬č„‘ē§‘å­¦äøŽē±»č„‘ē ”ē©¶äø­åæƒ'),
(91860, 76599, 'en', 'name', 'Chinese National Engineering Research Center for Control and Treatment of Heavy Metal Pollution'),
(91861, 76600, 'no_lang_code', 'name', 'Chongqing 2D Materials Institute (China)'),
(91862, 76601, 'en', 'name', 'Ezhou Central Hospital'),
(91863, 76601, 'zh', 'name', 'é„‚å·žåø‚äø­åæƒåŒ»é™¢'),
(91864, 76602, 'no_lang_code', 'name', 'Genomics (United Kingdom)'),
(91865, 76603, 'de', 'name', 'Bundesdeutsche Arbeitsgemeinschaft für Veränderliche Sterne'),
(91866, 76604, 'en', 'name', 'Cancer Research Institute Ghent'),
(91867, 76605, 'no_lang_code', 'name', '10X Genomics (Sweden)'),
(91868, 76606, 'no_lang_code', 'name', 'Gene and GreenTK (France)'),
(91869, 76607, 'no_lang_code', 'name', 'Lee & Man Chemical Company (China)'),
(91870, 76607, 'zh', 'name', 'ē†ę–‡åŒ–å·„ęœ‰é™å…¬åø'),
(91871, 76608, 'en', 'name', 'Glycodisplay'),
(91872, 76609, 'en', 'name', 'Chilean Air Force'),
(91873, 76609, 'es', 'name', 'Fuerza AƩrea de Chile'),
(91874, 76610, 'es', 'name', 'Centro de Investigaciones CientifĆ­cas de las Huastecas ''Aguazarca'''),
(91875, 76611, 'en', 'name', 'Einstein Center for Neurosciences Berlin'),
(91876, 76612, 'no_lang_code', 'name', 'Gran Telescopio Canarias (Spain)'),
(91877, 76613, 'no_lang_code', 'name', 'Harbour BioMed (Netherlands)'),
(91878, 76614, 'no_lang_code', 'name', 'Forschungs- und Entwicklungszentrum Fachhochschule Kiel (Germany)'),
(91879, 76615, 'de', 'name', 'Praxis für Humangenetik Tübingen'),
(91880, 76616, 'en', 'name', 'Institute of Advanced Research in Artificial Intelligence'),
(91881, 76617, 'no_lang_code', 'name', 'Helix (United States)'),
(91882, 76618, 'no_lang_code', 'name', 'von Hoerner & Sulger (Germany)'),
(91883, 76619, 'en', 'name', 'Hopp Children''s Cancer Center Heidelberg'),
(91884, 76620, 'ca', 'name', 'Parc Sanitari Pere Virgili'),
(91885, 76620, 'es', 'name', 'Parque Sanitario Pere Virgili'),
(91886, 76621, 'no_lang_code', 'name', 'Lemonex (South Korea)'),
(91887, 76621, 'ko', 'name', 'ė ˆėŖØė„„ģŠ¤'),
(91888, 76622, 'en', 'name', 'Tan Kah Kee Innovation Laboratory'),
(91889, 76622, 'zh', 'name', 'å˜‰åŗšåˆ›ę–°å®žéŖŒå®¤'),
(91890, 76623, 'en', 'name', 'Toscana Life Sciences'),
(91891, 76624, 'en', 'name', 'VIB-UGent Center for Inflammation Research'),
(91892, 76625, 'no_lang_code', 'name', 'Motac Neuroscience (United Kingdom)'),
(91893, 76626, 'no_lang_code', 'name', 'Nanostring Technologies (United States)'),
(91894, 76627, 'en', 'name', 'International Centre for Theoretical Physics Asia-Pacific'),
(91895, 76627, 'zh', 'name', 'å›½é™…ē†č®ŗē‰©ē†äø­åæƒ-亚太地区'),
(91896, 76628, 'en', 'name', 'International Institute for Molecular Oncology'),
(91897, 76629, 'en', 'name', 'Interuniversity Cooperation Centre Water & Health'),
(91898, 76629, 'de', 'name', 'InteruniversitƤre Kooperationszentrum Wasser und Gesundheit'),
(91899, 76630, 'no_lang_code', 'name', 'IonQ (United States)'),
(91900, 76631, 'no_lang_code', 'name', 'Autarcon (Germany)'),
(91901, 76632, 'en', 'name', 'Iwokrama International Centre for Rainforest Conservation and Development'),
(91902, 76633, 'no_lang_code', 'name', '4C Air (United States)'),
(91903, 76634, 'en', 'name', 'Ngogo Chimpanzee Project'),
(91904, 76635, 'no_lang_code', 'name', 'Nference (United States)'),
(91905, 76636, 'en', 'name', 'Millenium Nucleus for Planet Formation'),
(91906, 76636, 'es', 'name', 'Núcleo Milenio de Formación Planetaria'),
(91907, 76637, 'en', 'name', 'NTT Basic Research Laboratories'),
(91908, 76637, 'ja', 'name', 'NTT ē‰©ę€§ē§‘å­¦åŸŗē¤Žē ”ē©¶ę‰€'),
(91909, 76638, 'az', 'name', 'Milli Nüvə Tədqiqatları Mərkəzi'),
(91910, 76638, 'en', 'name', 'National Nuclear Research Center'),
(91911, 76638, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(91912, 76639, 'en', 'name', 'Open Targets'),
(91913, 76640, 'en', 'name', 'Medawar Building for Pathogen Research'),
(91914, 76641, 'en', 'name', 'Tropenbos International'),
(91915, 76642, 'en', 'name', 'Simons Center for Geometry and Physics'),
(91916, 76643, 'en', 'name', 'Pittsburgh Quantum Institute'),
(91917, 76644, 'en', 'name', 'Uro Care Hospital'),
(91918, 76645, 'en', 'name', 'Con Vida Foundation'),
(91919, 76645, 'es', 'name', 'Fundación Con Vida'),
(91920, 76646, 'en', 'name', 'Songshan Lake Materials Laboratory'),
(91921, 76646, 'zh', 'name', 'ę¾å±±ę¹–ęę–™å®žéŖŒå®¤'),
(91922, 76647, 'fr', 'name', 'Vanuatu Cultural Centre'),
(91923, 76647, 'bi', 'name', 'Vanuatu Kaljoral Senta'),
(91924, 76648, 'no_lang_code', 'name', 'Aarhus GeoSoftware (Denmark)'),
(91925, 76649, 'en', 'name', 'Academy of Sciences of the Republic of Sakha'),
(91926, 76649, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Республики Даха'),
(91927, 76650, 'no_lang_code', 'name', 'Acellera (Spain)'),
(91928, 76651, 'en', 'name', 'Shanghai Center for Brain Science and Brain-Inspired Technology'),
(91929, 76651, 'zh', 'name', 'äøŠęµ·č„‘ē§‘å­¦äøŽē±»č„‘ē ”ē©¶äø­åæƒ'),
(91930, 76652, 'no_lang_code', 'name', 'Aclaris Therapeutics (United States)'),
(91931, 76653, 'en', 'name', 'Wellcome Connecting Science'),
(91932, 76654, 'no_lang_code', 'name', 'Acuitas Therapeutics (Canada)'),
(91933, 76655, 'no_lang_code', 'name', 'Aivok (Russia)'),
(91934, 76656, 'fr', 'name', 'Centro Suisse du Cancer'),
(91935, 76656, 'de', 'name', 'Swiss Cancer Center LƩman'),
(91936, 76657, 'en', 'name', 'VIB-KU Leuven Center for Brain & Disease Research'),
(91937, 76658, 'no_lang_code', 'name', 'Taproot Health (United States)'),
(91938, 76659, 'en', 'name', 'South Dakota Science and Technology Authority'),
(91939, 76660, 'en', 'name', 'Altlabs'),
(91940, 76661, 'no_lang_code', 'name', 'Alto Neuroscience (United States)'),
(91941, 76662, 'en', 'name', 'American Community Schools'),
(91942, 76663, 'no_lang_code', 'name', 'Verve Therapeutics (United States)'),
(91943, 76664, 'en', 'name', 'Amsterdam Institute for Advanced Metropolitan Solutions'),
(91944, 76665, 'no_lang_code', 'name', 'ZOE (United Kingdom)'),
(91945, 76666, 'no_lang_code', 'name', 'Anaconda (United States)'),
(91946, 76667, 'no_lang_code', 'name', 'Aquinnah (United States)'),
(91947, 76668, 'en', 'name', 'Busara Center for Behavioral Economics'),
(91948, 76669, 'en', 'name', 'Association for the Development of Earthquake Prediction'),
(91949, 76669, 'ja', 'name', 'åœ°éœ‡äŗˆēŸ„ē·åˆē ”ē©¶ęŒÆčˆˆä¼š'),
(91950, 76670, 'no_lang_code', 'name', 'Cajal Neuroscience (United States)'),
(91951, 76671, 'en', 'name', 'VIB-UGent Center for Plant Systems Biology'),
(91952, 76672, 'no_lang_code', 'name', 'Atrad (Australia)'),
(91953, 76673, 'no_lang_code', 'name', 'Wessling (Hungary)'),
(91954, 76674, 'de', 'name', 'Kardiologie Frankfurt-Sachsenhausen'),
(91955, 76675, 'en', 'name', 'Bay Area Air Quality Management District'),
(91956, 76676, 'no_lang_code', 'name', 'B-Ware (Netherlands)'),
(91957, 76677, 'no_lang_code', 'name', 'Water-link (Belgium)'),
(91958, 76678, 'no_lang_code', 'name', 'BDO Unicon (Russia)'),
(91959, 76679, 'en', 'name', 'Wham Lab'),
(91960, 76680, 'en', 'name', 'Beijing Academy of Artificial Intelligence'),
(91961, 76680, 'zh', 'name', 'åŒ—äŗ¬ę™ŗęŗäŗŗå·„ę™ŗčƒ½ē ”ē©¶é™¢'),
(91962, 76681, 'no_lang_code', 'name', 'Dian Diagnostics (China)'),
(91963, 76681, 'zh', 'name', 'čæŖå®‰čÆŠę–­'),
(91964, 76682, 'no_lang_code', 'name', 'Berry Oncology (China)'),
(91965, 76682, 'zh', 'name', 'å’Œē‘žåŸŗå› '),
(91966, 76683, 'no_lang_code', 'name', 'Bexon Clinical Consulting (United States)'),
(91967, 76684, 'en', 'name', 'Beyond Conflict'),
(91968, 76685, 'en', 'name', 'Chinese Academy of Science South America Center for Astronomy'),
(91969, 76685, 'es', 'name', 'äø­å›½ē§‘å­¦é™¢å—ē¾Žå¤©ę–‡äø­åæƒ'),
(91970, 76686, 'no_lang_code', 'name', 'Bio-Rad (Germany)'),
(91971, 76687, 'no_lang_code', 'name', 'Celescreen (France)'),
(91972, 76688, 'no_lang_code', 'name', '1Cellbio (United States)'),
(91973, 76689, 'no_lang_code', 'name', 'Celsius Therapeutics (United States)'),
(91974, 76690, 'no_lang_code', 'name', 'Biognosys (Switzerland)'),
(91975, 76691, 'en', 'name', 'Center for Personalized Cancer Treatment'),
(91976, 76692, 'en', 'name', 'Center of Hubei Cooperative Innovation for Emissions Trading System'),
(91977, 76692, 'zh', 'name', 'ē¢³ęŽ’ę”¾ęƒäŗ¤ę˜“ę¹–åŒ—ēœååŒåˆ›ę–°äø­åæƒ'),
(91978, 76693, 'no_lang_code', 'name', 'Centogene (Germany)'),
(91979, 76694, 'no_lang_code', 'name', 'Bluefin Biomedicine (United States)'),
(91980, 76695, 'en', 'name', 'Meteorological Service Singapore'),
(91981, 76696, 'en', 'name', 'Born Free Foundation'),
(91982, 76697, 'no_lang_code', 'name', 'AB Vista (Germany)'),
(91983, 76698, 'en', 'name', 'Chelonia Applied Science'),
(91984, 76699, 'no_lang_code', 'name', 'Yangtze River Delta Physics Research Center (China)'),
(91985, 76699, 'zh', 'name', 'é•æäø‰č§’ē‰©ē†ē ”ē©¶äø­åæƒ'),
(91986, 76700, 'en', 'name', 'VIB-KU Leuven Center for Microbiology'),
(91987, 76701, 'no_lang_code', 'name', 'LinXis Biopharmaceuticals (Netherlands)'),
(91988, 76702, 'no_lang_code', 'name', 'Chemometrix (Germany)'),
(91989, 76703, 'en', 'name', 'International Chemical Secretariat'),
(91990, 76704, 'no_lang_code', 'name', 'China National Biotechnology (China)'),
(91991, 76704, 'zh', 'name', 'äø­å›½ē”Ÿē‰©ęŠ€ęœÆ'),
(91992, 76705, 'no_lang_code', 'name', 'OriginWater (China)'),
(91993, 76705, 'zh', 'name', '碧氓源'),
(91994, 76706, 'no_lang_code', 'name', 'Transcend Vivoscope (China)'),
(91995, 76706, 'zh', 'name', 'åŒ—äŗ¬č¶…ē»“ę™Æē”Ÿē‰©ē§‘ęŠ€'),
(91996, 76707, 'no_lang_code', 'name', 'Cloud Posse (United States)'),
(91997, 76708, 'fr', 'name', 'Centre National en Ɖlectrochimie et en Technologies Environnementales'),
(91998, 76709, 'it', 'name', 'Centri Associati di Allergologia Molecolare'),
(91999, 76710, 'es', 'name', 'Centro de Investigaciones de Ecosistemas Costeros'),
(92000, 76711, 'en', 'name', 'Coastal Impact'),
(92001, 76712, 'en', 'name', 'Cooperative Institute for Mesoscale Meteorological Studies'),
(92002, 76713, 'en', 'name', 'The Seventh Affiliated Hospital of Sun Yat-sen University'),
(92003, 76713, 'zh', 'name', 'äø­å±±å¤§å­¦é™„å±žē¬¬äøƒåŒ»é™¢'),
(92004, 76714, 'en', 'name', 'Collaborative Clean Air Policy Centre'),
(92005, 76715, 'no_lang_code', 'name', 'CYBO (Japan)'),
(92006, 76716, 'en', 'name', 'Center for Conservation, Research and Management of Natural Areas'),
(92007, 76716, 'es', 'name', 'Centro de Conservación Investigación y Manejo de Areas Naturales'),
(92008, 76717, 'en', 'name', 'Craig Newmark Graduate School of Journalism at the City University of New York'),
(92009, 76718, 'no_lang_code', 'name', 'Megaputer Intelligence (United States)'),
(92010, 76719, 'en', 'name', 'State Library and Archives of Florida'),
(92011, 76720, 'en', 'name', 'Institute of Artificial Intelligence Problems'),
(92012, 76720, 'uk', 'name', 'Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠ‘Š›Š•Šœ ŠØŠ¢Š£Š§ŠŠžŠ“Šž Š†ŠŠ¢Š•Š›Š•ŠšŠ¢Š£'),
(92013, 76721, 'en', 'name', 'University Hospitals Sussex NHS Foundation Trust'),
(92014, 76722, 'es', 'name', 'Organisation des Ɖtats de la CaraĆÆbe Orientale'),
(92015, 76722, 'en', 'name', 'Organisation of Eastern Caribbean States'),
(92016, 76722, 'ar', 'name', 'منظمة ŲÆŁˆŁ„ ؓرق البحر Ų§Ł„ŁƒŲ§Ų±ŁŠŲØŁŠ'),
(92017, 76723, 'es', 'name', 'Centro Científico Tecnológico de Valparaíso'),
(92018, 76724, 'da', 'name', 'Region Hovedstadens Apotek'),
(92019, 76724, 'en', 'name', 'The Capital Region Pharmacy'),
(92020, 76725, 'no_lang_code', 'name', 'Phenikaa University'),
(92021, 76725, 'vi', 'name', 'ĐẔi hį»c PHENIKAA'),
(92022, 76726, 'no_lang_code', 'name', 'Amedes Genetics (Germany)'),
(92023, 76727, 'no_lang_code', 'name', 'BioBank Japan'),
(92024, 76727, 'ja', 'name', 'ćƒć‚¤ć‚Ŗćƒćƒ³ć‚Æ ć‚øćƒ£ćƒ‘ćƒ³'),
(92025, 76728, 'en', 'name', 'Neurological Institute of Athens'),
(92026, 76728, 'el', 'name', 'ĪĪµĻ…ĻĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(92027, 76729, 'de', 'name', 'Fachhochschule Clara Hoffbauer Potsdam'),
(92028, 76730, 'en', 'name', 'Community Integrated Development Initiatives'),
(92029, 76731, 'no_lang_code', 'name', 'Geneious (New Zealand)'),
(92030, 76732, 'en', 'name', 'D Y Patil International University'),
(92031, 76732, 'mr', 'name', 'ą¤”ą„€ वाय ą¤Ŗą¤¾ą¤Ÿą„€ą¤² ą¤†ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(92032, 76733, 'es', 'name', 'Instituto de Astronomía Teórica y Experimental'),
(92033, 76734, 'en', 'name', 'Consolidated Mosquito Abatement District'),
(92034, 76735, 'no_lang_code', 'name', 'DarwinHealth (United States)'),
(92035, 76736, 'en', 'name', 'Convergence Research Center for Diagnosis Treatment and Care System of Dementia'),
(92036, 76737, 'en', 'name', 'Daye People''s Hospital'),
(92037, 76737, 'zh', 'name', 'å¤§å†¶åø‚äŗŗę°‘åŒ»é™¢'),
(92038, 76738, 'no_lang_code', 'name', 'Nference (India)'),
(92039, 76739, 'no_lang_code', 'name', 'Cordlife (Singapore)'),
(92040, 76740, 'no_lang_code', 'name', 'Data Tecnica International (United States)'),
(92041, 76741, 'nl', 'name', 'De Vlinderstichting'),
(92042, 76741, 'en', 'name', 'Dutch Butterfly Conservation'),
(92043, 76742, 'en', 'name', 'Coral Reef Research Foundation'),
(92044, 76743, 'no_lang_code', 'name', 'DeepBiome Therapeutics (United States)'),
(92045, 76744, 'no_lang_code', 'name', 'Doctor''s Choice (Japan)'),
(92046, 76744, 'ja', 'name', 'ćƒ‰ć‚Æć‚æćƒ¼ć‚ŗćƒćƒ§ć‚¤ć‚¹'),
(92047, 76745, 'en', 'name', 'Queen Elizabeth University Hospital'),
(92048, 76746, 'no_lang_code', 'name', 'Cross Compass (Japan)'),
(92049, 76747, 'no_lang_code', 'name', 'Carisma Therapeutics (United States)'),
(92050, 76748, 'no_lang_code', 'name', 'CRV (Netherlands)'),
(92051, 76749, 'no_lang_code', 'name', 'CSD Engineers (Switzerland)'),
(92052, 76750, 'en', 'name', 'Banki College'),
(92053, 76751, 'da', 'name', 'Roskilde Museum'),
(92054, 76752, 'en', 'name', 'Division Technique de I''INSU'),
(92055, 76753, 'no_lang_code', 'name', 'DNACARE (South Korea)'),
(92056, 76754, 'en', 'name', 'DonorConnect'),
(92057, 76755, 'no_lang_code', 'name', 'DXC Technology (Denmark)'),
(92058, 76756, 'no_lang_code', 'name', 'Dr. Friedrich Eberth Arzneimittel (Germany)'),
(92059, 76757, 'no_lang_code', 'name', 'E-Phy-Science (France)'),
(92060, 76758, 'no_lang_code', 'name', 'Genemo (United States)'),
(92061, 76759, 'no_lang_code', 'name', 'Duality (United States)'),
(92062, 76760, 'no_lang_code', 'name', 'Eisbach Bio (Germany)'),
(92063, 76761, 'no_lang_code', 'name', 'Fastbase Solutions (Spain)'),
(92064, 76762, 'no_lang_code', 'name', 'Few Chemicals (Germany)'),
(92065, 76763, 'en', 'name', 'Field Projects International'),
(92066, 76764, 'no_lang_code', 'name', 'Genevention (Germany)'),
(92067, 76765, 'no_lang_code', 'name', 'Fimlab (Finland)'),
(92068, 76765, 'fi', 'name', 'Fimlab Laboratoriot'),
(92069, 76766, 'no_lang_code', 'name', 'Obstech (Chile)'),
(92070, 76767, 'no_lang_code', 'name', 'Firmenich (United States)'),
(92071, 76768, 'no_lang_code', 'name', 'Genome Insight (South Korea)'),
(92072, 76768, 'ko', 'name', 'ģ§€ė†ˆģøģ‚¬ģ“ķŠøėŠ”'),
(92073, 76769, 'en', 'name', 'The First People''s Hospital of Jiangxia District'),
(92074, 76769, 'zh', 'name', 'ę±Ÿå¤åŒŗē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(92075, 76770, 'no_lang_code', 'name', 'Fluxus Technology (United Kingdom)'),
(92076, 76771, 'no_lang_code', 'name', 'Genomic Prediction (United States)'),
(92077, 76772, 'en', 'name', 'The Queen''s Medical Research Institute'),
(92078, 76773, 'no_lang_code', 'name', 'Opty'),
(92079, 76774, 'en', 'name', 'Physico-Chemical Institute of Environmental and Human Protection'),
(92080, 76774, 'uk', 'name', 'Фізико-хімічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ охорони навколишнього сереГовища та Š»ŃŽŠ“ини'),
(92081, 76775, 'en', 'name', 'State Key Laboratory of Transducer Technology'),
(92082, 76775, 'zh', 'name', 'ä¼ ę„ŸęŠ€ęœÆå›½å®¶č”åˆé‡ē‚¹å®žéŖŒå®¤'),
(92083, 76776, 'en', 'name', 'Key Laboratory of Nuclear Radiation and Nuclear Energy Technology'),
(92084, 76776, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę øč¾å°„äøŽę øčƒ½ęŠ€ęœÆé‡ē‚¹å®žéŖŒå®¤'),
(92085, 76777, 'en', 'name', 'Dana-Farber/Boston Children''s Cancer and Blood Disorders Center'),
(92086, 76778, 'en', 'name', 'British Heart Foundation Centre for Cardiovascular Science'),
(92087, 76779, 'en', 'name', 'Center for Pain and the Brain'),
(92088, 76780, 'en', 'name', 'Interdisciplinary Research Center of Biology and Chemistry'),
(92089, 76780, 'zh', 'name', 'äø­ē§‘é™¢ē”Ÿē‰©äøŽåŒ–å­¦äŗ¤å‰ē ”ē©¶äø­åæƒ'),
(92090, 76781, 'no_lang_code', 'name', 'ELUTIS Modelling and Consulting (Canada)'),
(92091, 76782, 'no_lang_code', 'name', 'MBC BioLabs (United States)'),
(92092, 76783, 'no_lang_code', 'name', 'Environmental Earth Observation Information Technology (Austria)'),
(92093, 76784, 'en', 'name', 'Environmental Research Institute Charlotteville'),
(92094, 76785, 'en', 'name', 'Equilibrium Research'),
(92095, 76786, 'no_lang_code', 'name', 'Glassomer (Germany)'),
(92096, 76787, 'no_lang_code', 'name', 'KUSUDAMA Therapeutics (Spain)'),
(92097, 76788, 'no_lang_code', 'name', 'GI Innovation (South Korea)'),
(92098, 76788, 'ko', 'name', 'ģ§€ģ•„ģ“ģ“ė…øė² ģ“ģ…˜'),
(92099, 76789, 'en', 'name', 'Global Institutes on Addictions'),
(92100, 76790, 'no_lang_code', 'name', 'Global Seismological Services (United States)'),
(92101, 76791, 'no_lang_code', 'name', 'Evides (Netherlands)'),
(92102, 76792, 'en', 'name', 'Global Wildlife Conservation'),
(92103, 76793, 'no_lang_code', 'name', 'Evon (Austria)'),
(92104, 76794, 'no_lang_code', 'name', 'GoodAI (Czechia)'),
(92105, 76795, 'en', 'name', 'Frankfurt Cancer Institute'),
(92106, 76796, 'no_lang_code', 'name', 'Freenome (United States)'),
(92107, 76797, 'no_lang_code', 'name', 'Google (Israel)'),
(92108, 76798, 'en', 'name', 'Federal Scientific Research Centre Crystallography and Photonics'),
(92109, 76798, 'ru', 'name', 'ŠšŃ€ŠøŃŃ‚Š°Š»Š»Š¾Š³Ń€Š°Ń„ŠøŃ Šø фотоника'),
(92110, 76799, 'no_lang_code', 'name', 'Guardant (United States)'),
(92111, 76800, 'no_lang_code', 'name', 'Gubra (Denmark)'),
(92112, 76801, 'en', 'name', 'Hampton Roads Sanitation District'),
(92113, 76802, 'en', 'name', 'Future Law'),
(92114, 76803, 'en', 'name', 'Yukon Department of Tourism and Culture'),
(92115, 76804, 'no_lang_code', 'name', 'HE Space (Netherlands)'),
(92116, 76805, 'no_lang_code', 'name', 'HiFiBiO Therapeutics (United States)'),
(92117, 76806, 'no_lang_code', 'name', 'HiFiBiO Therapeutics (France)'),
(92118, 76807, 'no_lang_code', 'name', 'Hikari Giken (Japan)'),
(92119, 76808, 'en', 'name', 'Hunter Genetics'),
(92120, 76809, 'en', 'name', 'North West London Pathology'),
(92121, 76810, 'en', 'name', 'International Center for Advanced Studies'),
(92122, 76811, 'en', 'name', 'Honghu Hospital of Traditional Chinese Medicine'),
(92123, 76811, 'zh', 'name', 'ę“Ŗę¹–äø­åŒ»ę–‡åŒ–'),
(92124, 76812, 'it', 'name', 'Igenomix'),
(92125, 76813, 'en', 'name', 'Inspire Institute'),
(92126, 76814, 'en', 'name', 'Institute for Advanced Study in Toulouse'),
(92127, 76815, 'de', 'name', 'Institut für Forensische Genetik'),
(92128, 76816, 'en', 'name', 'Institute for Protein Innovation'),
(92129, 76817, 'en', 'name', 'FORTH Institute of Astrophysics'),
(92130, 76817, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī‘ĻƒĻ„ĻĪæĻ†Ļ…ĻƒĪ¹ĪŗĪ®Ļ‚'),
(92131, 76818, 'en', 'name', 'Institute of Radiophysics and Electronics'),
(92132, 76818, 'hy', 'name', 'ÕŒÕ”Õ¤Õ«ÕøÖ†Õ«Õ¦Õ«ÕÆÕ”ÕµÕ« և Õ§Õ¬Õ„ÕÆÕæÖ€ÕøÕ¶Õ«ÕÆÕ”ÕµÕ« Õ«Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(92133, 76819, 'no_lang_code', 'name', 'IQM (Germany)'),
(92134, 76820, 'en', 'name', 'Center for Muscle Health and Neuromuscular Disorders'),
(92135, 76821, 'no_lang_code', 'name', 'Hitachi (Sweden)'),
(92136, 76822, 'no_lang_code', 'name', 'Integrated Spaceflight Services (United States)'),
(92137, 76823, 'en', 'name', 'ISI Foundation'),
(92138, 76824, 'en', 'name', 'Island Conservation Society'),
(92139, 76825, 'no_lang_code', 'name', 'Sophia Genetics (France)'),
(92140, 76826, 'en', 'name', 'The Japanese Data Center for Hematopoietic Cell Transplantation'),
(92141, 76826, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗ ę—„ęœ¬é€ č”€ē“°čƒžē§»ę¤ćƒ‡ćƒ¼ć‚æć‚»ćƒ³ć‚æćƒ¼'),
(92142, 76827, 'no_lang_code', 'name', 'JEOL (China)'),
(92143, 76827, 'zh', 'name', 'ę·ę¬§č·Æ'),
(92144, 76828, 'en', 'name', 'International Pole and Line Foundation'),
(92145, 76829, 'no_lang_code', 'name', 'Invizyne Technologies (United States)'),
(92146, 76830, 'en', 'name', 'Jiangsu Food and Pharmaceutical Science College'),
(92147, 76830, 'zh', 'name', 'ę±Ÿč‹é£Ÿå“čÆå“čŒäøšęŠ€ęœÆå­¦é™¢'),
(92148, 76831, 'no_lang_code', 'name', 'Inzen Therapeutics (United States)'),
(92149, 76832, 'no_lang_code', 'name', 'Jilian Technology Group (China)'),
(92150, 76833, 'no_lang_code', 'name', 'Jinergy (China)'),
(92151, 76833, 'zh', 'name', 'é‡‘čƒ½ęø…ę“čƒ½ęŗē§‘ęŠ€ęœ‰é™å…¬åø'),
(92152, 76834, 'no_lang_code', 'name', 'Lumiphase (Switzerland)'),
(92153, 76835, 'en', 'name', 'Joint Attosecond Science Laboratory'),
(92154, 76836, 'en', 'name', 'Mahatma Gandhi Memorial Hospital'),
(92155, 76837, 'no_lang_code', 'name', 'Mahonia Na Dari – Guardian of the Sea'),
(92156, 76838, 'en', 'name', 'Jƶnkƶping County Museum'),
(92157, 76839, 'no_lang_code', 'name', 'Kallyope (United States)'),
(92158, 76840, 'en', 'name', 'Kenya Fisheries Service'),
(92159, 76841, 'en', 'name', 'Lakeside Labs'),
(92160, 76842, 'da', 'name', 'Langelands Museum'),
(92161, 76843, 'gv', 'name', 'Eiraght Ashoonagh Vannin'),
(92162, 76843, 'en', 'name', 'Manx National Heritage'),
(92163, 76844, 'en', 'name', 'Large Marine Vertebrates Research Institute Philippines'),
(92164, 76845, 'en', 'name', 'Marine Biomedical Research Institute of Qingdao'),
(92165, 76845, 'zh', 'name', 'é’å²›ęµ·ę“‹ē”Ÿē‰©åŒ»čÆē ”ē©¶é™¢'),
(92166, 76846, 'en', 'name', 'Iaso Children’s Hospital'),
(92167, 76846, 'el', 'name', 'ΙΑΣΩ ΠαίΓων'),
(92168, 76847, 'en', 'name', 'Institute of Public Health'),
(92169, 76848, 'en', 'name', 'Leibniz ScienceCampus Primate Cognition'),
(92170, 76848, 'de', 'name', 'Leibniz-WissenschaftsCampus Primatenkognition'),
(92171, 76849, 'no_lang_code', 'name', 'Lightmatter (United States)'),
(92172, 76850, 'no_lang_code', 'name', 'LipidALL Technologies (China)'),
(92173, 76850, 'zh', 'name', 'åøøå·žäø­ē§‘č„‚å…øē”Ÿē‰©ęŠ€ęœÆ'),
(92174, 76851, 'fr', 'name', 'Centre Max Planck - Université d''Ottawa pour la Photonique Extrême et Quantique'),
(92175, 76851, 'en', 'name', 'Max Planck - University of Ottawa Centre for Extreme and Quantum Photonics'),
(92176, 76852, 'no_lang_code', 'name', 'KrioSystem (Poland)'),
(92177, 76853, 'no_lang_code', 'name', 'Veolia (Norway)'),
(92178, 76854, 'fr', 'name', 'LMI Adaptation des Plantes et Microorganismes Associés aux Stress Environnementaux'),
(92179, 76855, 'en', 'name', 'Ministry of Fisheries and Marine Resource Development'),
(92180, 76856, 'en', 'name', 'LOEWE Centre for Translational Biodiversity Genomics'),
(92181, 76857, 'en', 'name', 'Modern Diet and Physiology Research Center'),
(92182, 76858, 'en', 'name', 'Legal Pathways'),
(92183, 76859, 'en', 'name', 'Molecular Diagnostics Services'),
(92184, 76860, 'en', 'name', 'London Biofoundry'),
(92185, 76861, 'no_lang_code', 'name', 'MorphogƩnie Logiciels (France)'),
(92186, 76862, 'no_lang_code', 'name', 'Motorpharma (Hungary)'),
(92187, 76863, 'en', 'name', 'National Engineering Research Center for Nanotechnology'),
(92188, 76863, 'zh', 'name', 'ēŗ³ē±³ęŠ€ęœÆåŠåŗ”ē”Øå›½å®¶å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(92189, 76864, 'no_lang_code', 'name', 'ChemBridge (United States)'),
(92190, 76865, 'en', 'name', 'Memorial Hermann–Texas Medical Center'),
(92191, 76866, 'en', 'name', 'Rajabu St Augustine''s, Hospitali Teule'),
(92192, 76867, 'en', 'name', 'Research Institute of Ukrainian Studies'),
(92193, 76867, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠŗŃ€Š°Ń—Š½Š¾Š·Š½Š°Š²ŃŃ‚Š²Š° ŠœŠžŠ України'),
(92194, 76868, 'en', 'name', 'Donbas National Academy of Civil Engineering and Architecture - Kramatorsk'),
(92195, 76868, 'uk', 'name', 'Š”Š¾Š½Š±Š°ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(92196, 76869, 'en', 'name', 'Michigan Center for Translational Pathology'),
(92197, 76870, 'no_lang_code', 'name', 'Metawater (Japan)'),
(92198, 76870, 'ja', 'name', 'ćƒ”ć‚æć‚¦ć‚©ćƒ¼ć‚æ'),
(92199, 76871, 'fr', 'name', 'MƩtƩorage'),
(92200, 76872, 'fr', 'name', 'MusƩes de la Ville de Strasbourg'),
(92201, 76873, 'en', 'name', 'Museum of Southwest Jutland'),
(92202, 76873, 'da', 'name', 'Sydvestjyske Museer'),
(92203, 76874, 'no_lang_code', 'name', 'Metrohm Dropsens (Spain)'),
(92204, 76875, 'no_lang_code', 'name', 'Nama Development (United States)'),
(92205, 76876, 'en', 'name', 'Nordic Optical Telescope'),
(92206, 76877, 'no_lang_code', 'name', 'NanoPHAB (Netherlands)'),
(92207, 76878, 'en', 'name', 'Peng Huanwu Center for Fundamental Theory'),
(92208, 76879, 'no_lang_code', 'name', 'BioNTech (United States)'),
(92209, 76880, 'no_lang_code', 'name', 'Tang Shiu Kin Hospital'),
(92210, 76880, 'zh', 'name', '鄧肇堅醫院'),
(92211, 76881, 'no_lang_code', 'name', 'Oasen (Netherlands)'),
(92212, 76882, 'en', 'name', 'Argentine National Observatory'),
(92213, 76882, 'es', 'name', 'Observatori Astronòmic de Córdoba'),
(92214, 76883, 'es', 'name', 'Centro Astronómico de Yebes'),
(92215, 76883, 'en', 'name', 'Yebes Observatory'),
(92216, 76884, 'no_lang_code', 'name', 'New England Biolabs (China)'),
(92217, 76885, 'no_lang_code', 'name', 'Olnica (France)'),
(92218, 76886, 'no_lang_code', 'name', 'Omiics (Denmark)'),
(92219, 76887, 'no_lang_code', 'name', 'New Iridium (United States)'),
(92220, 76888, 'en', 'name', '1 CP Place (United States)'),
(92221, 76889, 'en', 'name', 'New York Proton Center'),
(92222, 76890, 'en', 'name', 'New Zealand Brain Research Institute'),
(92223, 76891, 'no_lang_code', 'name', 'Nanoscribe (Germany)'),
(92224, 76892, 'no_lang_code', 'name', 'NanoTemper Technologies (Germany)'),
(92225, 76893, 'no_lang_code', 'name', 'PamGene (Netherlands)'),
(92226, 76894, 'no_lang_code', 'name', 'ImmunityBio (United States)'),
(92227, 76895, 'no_lang_code', 'name', 'Next Interactions (United States)'),
(92228, 76896, 'no_lang_code', 'name', 'Pancreas Centre (Canada)'),
(92229, 76897, 'no_lang_code', 'name', 'Paraza Pharma (Canada)'),
(92230, 76898, 'en', 'name', 'Ngātiwai Trust Board'),
(92231, 76899, 'no_lang_code', 'name', 'Nitric Oxide Services (United States)'),
(92232, 76900, 'en', 'name', 'Taian City Central Hospital'),
(92233, 76900, 'zh', 'name', 'å±±äøœēœę³°å®‰åø‚äø­åæƒåŒ»é™¢'),
(92234, 76901, 'en', 'name', 'Prion Alliance'),
(92235, 76902, 'no_lang_code', 'name', 'PharmaZell (Germany)'),
(92236, 76903, 'en', 'name', 'VA Northeast Ohio Healthcare System'),
(92237, 76904, 'no_lang_code', 'name', 'Prioris.ai (Canada)'),
(92238, 76905, 'en', 'name', 'Kap Natirel'),
(92239, 76906, 'en', 'name', 'King County Department of Natural Resources and Parks'),
(92240, 76907, 'no_lang_code', 'name', 'NTT (United States)'),
(92241, 76908, 'fr', 'name', 'PROTEO'),
(92242, 76909, 'en', 'name', 'RIKEN BNL Research Center'),
(92243, 76910, 'no_lang_code', 'name', 'PicoQuant (Germany)'),
(92244, 76911, 'no_lang_code', 'name', 'PVD Products (United States)'),
(92245, 76912, 'en', 'name', 'Royal Saskatchewan Museum'),
(92246, 76913, 'no_lang_code', 'name', 'PIVOT'),
(92247, 76914, 'no_lang_code', 'name', 'Planta'),
(92248, 76915, 'en', 'name', 'Qingdao Center of Resource Chemistry and New Materials'),
(92249, 76915, 'zh', 'name', 'é’å²›åø‚čµ„ęŗåŒ–å­¦äøŽę–°ęę–™ē ”ē©¶äø­åæƒ'),
(92250, 76916, 'no_lang_code', 'name', 'Saaz Genetics (India)'),
(92251, 76917, 'hr', 'name', 'Psihijatrijska Bolnica Sveti Ivan'),
(92252, 76917, 'en', 'name', 'Psychiatric Hospital Sveti Ivan'),
(92253, 76918, 'no_lang_code', 'name', 'Saddle Point Science (United Kingdom)'),
(92254, 76919, 'no_lang_code', 'name', 'Quansight (United States)'),
(92255, 76920, 'it', 'name', 'Polo d’Innovazione di Genomica'),
(92256, 76921, 'en', 'name', 'Queen Margaret''s'),
(92257, 76922, 'en', 'name', 'Queen Nandi Regional Hospital'),
(92258, 76923, 'no_lang_code', 'name', 'SalvageBlue (Saint Vincent and the Grenadines)'),
(92259, 76924, 'no_lang_code', 'name', 'Nkarta Therapeutics (United States)'),
(92260, 76925, 'no_lang_code', 'name', 'Printnet (Hungary)'),
(92261, 76926, 'en', 'name', 'Oregon Department of Environmental Quality'),
(92262, 76927, 'no_lang_code', 'name', 'Regen Network (United States)'),
(92263, 76928, 'no_lang_code', 'name', 'Regen Network (Argentina)'),
(92264, 76929, 'no_lang_code', 'name', 'Science Exchange (United States)'),
(92265, 76930, 'no_lang_code', 'name', 'Reneco (United Arab Emirates)'),
(92266, 76931, 'no_lang_code', 'name', 'ScienCell Research Laboratories (United States)'),
(92267, 76932, 'no_lang_code', 'name', 'Scientific Aviation (United States)'),
(92268, 76933, 'en', 'name', 'SciGenom Research Foundation'),
(92269, 76934, 'no_lang_code', 'name', 'Rentschler Biopharma (Germany)'),
(92270, 76935, 'no_lang_code', 'name', 'Emka Technologies (Canada)'),
(92271, 76936, 'no_lang_code', 'name', 'Sophia Genetics (Switzerland)'),
(92272, 76937, 'no_lang_code', 'name', 'Scispace (United States)'),
(92273, 76938, 'no_lang_code', 'name', 'SciTech Strategies (United States)'),
(92274, 76939, 'no_lang_code', 'name', 'SDS Life Science (Sweden)'),
(92275, 76940, 'en', 'name', 'South Bay Interdisciplinary Science Center'),
(92276, 76941, 'no_lang_code', 'name', 'Systems, Applications, and Products in Data Processing (Russia)'),
(92277, 76942, 'en', 'name', 'Seattle Epidemiologic Information and Research Center'),
(92278, 76943, 'en', 'name', 'Saving the Blue'),
(92279, 76944, 'en', 'name', 'Secretariat of the Pacific Regional Environment Programme'),
(92280, 76945, 'en', 'name', 'Scholar Rock (United States)'),
(92281, 76946, 'en', 'name', 'Jiangxi Applied Engineering Vocational Institute'),
(92282, 76946, 'zh', 'name', 'ę±Ÿč„æåŗ”ē”Øå·„ēØ‹čŒäøšå­¦é™¢'),
(92283, 76947, 'en', 'name', 'Shenzhen Institute of Neuroscience'),
(92284, 76947, 'zh', 'name', 'ę·±åœ³åø‚ē„žē»ē§‘å­¦ē ”ē©¶é™¢'),
(92285, 76948, 'no_lang_code', 'name', 'Shenzhen Planck Innovation (China)'),
(92286, 76948, 'zh', 'name', 'ę·±åœ³ę‰‘ęµŖåˆ›ę–°ē§‘ęŠ€'),
(92287, 76949, 'no_lang_code', 'name', 'Shanghai Model Organisms (China)'),
(92288, 76949, 'zh', 'name', 'äøŠęµ·å—ę–¹ęØ”å¼ē”Ÿē‰©ē ”ē©¶äø­åæƒ'),
(92289, 76950, 'en', 'name', 'Shenzhen Science Museum'),
(92290, 76950, 'zh', 'name', 'å·ę·±åœ³ē§‘å­¦é¦†'),
(92291, 76951, 'no_lang_code', 'name', 'Xtretch (China)'),
(92292, 76951, 'zh', 'name', 'ęžå±•ē§‘ęŠ€'),
(92293, 76952, 'en', 'name', 'Sharks Pacific'),
(92294, 76953, 'no_lang_code', 'name', 'Sibel (United States)'),
(92295, 76954, 'no_lang_code', 'name', 'Sinotech Genomics (China)'),
(92296, 76954, 'zh', 'name', 'äø­ē§‘ę™®ē‘ž'),
(92297, 76955, 'en', 'name', 'Sonneberg Observatory'),
(92298, 76955, 'de', 'name', 'Sternwarte Sonneberg'),
(92299, 76956, 'en', 'name', 'Thames Valley Archaeological Services'),
(92300, 76957, 'en', 'name', 'First People’s Hospital of Jingmen'),
(92301, 76957, 'zh', 'name', 'č†é—Øåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(92302, 76958, 'en', 'name', 'European Incoherent Scatter Scientific Association'),
(92303, 76959, 'en', 'name', 'Centre for Ocean Research and Education'),
(92304, 76960, 'en', 'name', 'The Humane League'),
(92305, 76961, 'de', 'name', 'Landesamt für Landwirtschaft, Lebensmittelsicherheit und Fischerei'),
(92306, 76962, 'en', 'name', 'Max Planck - Harvard Research Center for the Archaeoscience of the Ancient Mediterranean'),
(92307, 76963, 'sv', 'name', 'Sydsvensk Arkeologi'),
(92308, 76964, 'no_lang_code', 'name', 'SyMO-Chem (Netherlands)'),
(92309, 76965, 'en', 'name', 'The Ocean Cleanup'),
(92310, 76966, 'en', 'name', 'The Origins Project Foundation'),
(92311, 76967, 'no_lang_code', 'name', 'Synthace (United Kingdom)'),
(92312, 76968, 'no_lang_code', 'name', 'ELSA'),
(92313, 76969, 'no_lang_code', 'name', 'Honghu People’s Hospital'),
(92314, 76969, 'zh', 'name', 'ę“Ŗę¹–åø‚äŗŗę°‘åŒ»é™¢'),
(92315, 76970, 'no_lang_code', 'name', 'Tempus Labs (United States)'),
(92316, 76971, 'en', 'name', 'Center for Translational Research in Neuroimaging and Data Science'),
(92317, 76972, 'en', 'name', 'Tri-Institutional PhD Program in Chemical Biology'),
(92318, 76973, 'no_lang_code', 'name', 'Tencent Healthcare (China)'),
(92319, 76974, 'pl', 'name', 'Trzy Epoki Pracownia Archeologiczna'),
(92320, 76975, 'no_lang_code', 'name', 'TScan Therapeutics (United States)'),
(92321, 76976, 'en', 'name', 'VisMederi Research'),
(92322, 76977, 'en', 'name', 'Southern California Eye Institute'),
(92323, 76978, 'en', 'name', 'Wildlife Conservation Society Uganda'),
(92324, 76979, 'no_lang_code', 'name', 'Three-Speed Logic (Canada)'),
(92325, 76980, 'en', 'name', 'Wasage Divers'),
(92326, 76981, 'no_lang_code', 'name', 'Umicore (United States)'),
(92327, 76982, 'no_lang_code', 'name', 'WayRay (Russia)'),
(92328, 76983, 'en', 'name', 'Kimberley Hospital'),
(92329, 76984, 'is', 'name', 'Fornleifastofnun ƍslands'),
(92330, 76985, 'en', 'name', 'Whittle School & Studios'),
(92331, 76986, 'en', 'name', 'Faroe Islands National Museum'),
(92332, 76986, 'fo', 'name', 'Tjóðsavn Føroya'),
(92333, 76987, 'sv', 'name', 'Upplandsmuseet'),
(92334, 76987, 'ar', 'name', 'متحف Ų£ŁˆŲØŁ„Ų§Ł†ŲÆ'),
(92335, 76988, 'no_lang_code', 'name', 'Nanobase (South Korea)'),
(92336, 76989, 'en', 'name', 'New Guinea Highland Wild Dog Foundation'),
(92337, 76990, 'no_lang_code', 'name', 'Phyzen (South Korea)'),
(92338, 76990, 'ko', 'name', 'ķŒŒģ“ģ  '),
(92339, 76991, 'en', 'name', 'Jiangsu Center for Collaborative Innovation in Geographical Information Resource Development and Application'),
(92340, 76991, 'zh', 'name', 'ę±Ÿč‹ēœåœ°ē†äæ”ęÆčµ„ęŗå¼€å‘äøŽåˆ©ē”ØååŒåˆ›ę–°'),
(92341, 76992, 'it', 'name', 'Istituti Clinici Scientifici Maugeri'),
(92342, 76993, 'en', 'name', 'Kibale Chimpanzee Project'),
(92343, 76994, 'en', 'name', 'VIB-KU Leuven Center for Cancer Biology'),
(92344, 76995, 'no_lang_code', 'name', 'Nabsys (United States)'),
(92345, 76996, 'en', 'name', 'Mesothelioma Center'),
(92346, 76997, 'no_lang_code', 'name', 'CellOxess (United States)'),
(92347, 76998, 'en', 'name', 'Egypt Center for Research and Regenerative Medicine'),
(92348, 76998, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„Ų·ŲØ Ų§Ł„ŲŖŲ¬ŲÆŁŠŲÆŁ‰'),
(92349, 76999, 'sv', 'name', 'Malmƶ Museer'),
(92350, 77000, 'en', 'name', 'International Society for Laboratory Hematology'),
(92351, 77001, 'no_lang_code', 'name', 'Yumanity Therapeutics (United States)'),
(92352, 77002, 'en', 'name', 'US Climate Variability and Predictability Program'),
(92353, 77003, 'no_lang_code', 'name', 'Yunkawasi'),
(92354, 77004, 'no_lang_code', 'name', 'Zapata (United States)'),
(92355, 77005, 'sv', 'name', 'VƤstergƶtlands Museum'),
(92356, 77006, 'en', 'name', 'Wild Chimpanzee Foundation'),
(92357, 77007, 'no_lang_code', 'name', 'Willow Biosciences (Canada)'),
(92358, 77008, 'en', 'name', 'Wildlife Conservation Society Fiji'),
(92359, 77009, 'es', 'name', 'Unión de Ornitólogos de Costa Rica'),
(92360, 77010, 'en', 'name', 'Wrocław Technology Park'),
(92361, 77010, 'pl', 'name', 'Wrocławskim Parku Technologicznym'),
(92362, 77011, 'no_lang_code', 'name', 'Wuyistar (China)'),
(92363, 77011, 'zh', 'name', '武夷星'),
(92364, 77012, 'no_lang_code', 'name', 'DataJoint NEURO (United States)'),
(92365, 77013, 'no_lang_code', 'name', 'Xanadu Quantum Technologies (Canada)'),
(92366, 77014, 'no_lang_code', 'name', 'Veritas (Italy)'),
(92367, 77015, 'no_lang_code', 'name', 'XeUS Technologies (Cyprus)'),
(92368, 77016, 'no_lang_code', 'name', 'XING Technologies (Australia)'),
(92369, 77017, 'en', 'name', 'Military Technical Institute'),
(92370, 77017, 'sr', 'name', 'Vojnotehnički Institut Beograd'),
(92371, 77018, 'en', 'name', 'Karnali Academy of Health Sciences'),
(92372, 77018, 'ne', 'name', 'ą¤•ą¤°ą„ą¤£ą¤¾ą¤²ą„€ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤¬ą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(92373, 77019, 'en', 'name', 'Zhuhai Institute of Advanced Technology'),
(92374, 77019, 'zh', 'name', 'ē ęµ·äø­ē§‘å…ˆčæ›ęŠ€ęœÆē ”ē©¶é™¢'),
(92375, 77020, 'en', 'name', 'ENN-Tongji Advanced Institute of Clean Energy'),
(92376, 77020, 'zh', 'name', 'ę–°å„„-åŒęµŽęø…ę“čƒ½ęŗé«˜ē­‰ē ”ē©¶é™¢'),
(92377, 77021, 'en', 'name', 'Centre for Arab Unity Studies'),
(92378, 77021, 'ar', 'name', 'Ł…Ų±ŁƒŲ² ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„ŁˆŲ­ŲÆŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(92379, 77022, 'en', 'name', 'Inception Institute of Artificial Intelligence'),
(92380, 77023, 'en', 'name', 'The Prostate Centre'),
(92381, 77024, 'en', 'name', 'Gashaka Primate Project'),
(92382, 77025, 'en', 'name', 'Ukrainian State Research Institute for Carbochemistry'),
(92383, 77025, 'ru', 'name', 'Украинский Š³Š¾ŃŃƒŠ“арственный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(92384, 77025, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний науково-ГосліГний Š²ŃƒŠ³Š»ŠµŃ…імічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(92385, 77026, 'en', 'name', 'National Trauma Research Institute'),
(92386, 77027, 'en', 'name', 'Cochrane'),
(92387, 77028, 'en', 'name', 'Shanghai Academy of Spaceflight Technology'),
(92388, 77028, 'zh', 'name', 'äøŠęµ·čˆŖå¤©ęŠ€ęœÆē ”ē©¶é™¢'),
(92389, 77029, 'en', 'name', 'Center for Excellence in Tibetan Plateau Earth Sciences'),
(92390, 77030, 'en', 'name', 'The Urology Center of Colorado'),
(92391, 77031, 'en', 'name', 'Basir Eye Health Research Center'),
(92392, 77032, 'es', 'name', 'Instituto Oncológico Henry Moore'),
(92393, 77033, 'en', 'name', 'FX Palo Alto Laboratory'),
(92394, 77034, 'en', 'name', 'Docrates Cancer Center'),
(92395, 77034, 'sv', 'name', 'Docrates Cancersjukhus'),
(92396, 77034, 'fi', 'name', 'Docrates SyƶpƤsairaala'),
(92397, 77034, 'bg', 'name', 'Дократес'),
(92398, 77035, 'en', 'name', 'Indian Academy of Pediatrics'),
(92399, 77036, 'en', 'name', 'Postgraduate School of Molecular Medicine'),
(92400, 77036, 'pl', 'name', 'Studium Medycyny Molekularnej'),
(92401, 77037, 'en', 'name', 'Center for Disease Dynamics, Economics and Policy'),
(92402, 77038, 'en', 'name', 'Wuhan No.9 Hospital'),
(92403, 77038, 'zh', 'name', 'ę­¦ę±‰åø‚ē¬¬ä¹åŒ»é™¢'),
(92404, 77039, 'en', 'name', 'Worldwise Travellers Health & Vaccination Centres'),
(92405, 77040, 'en', 'name', 'APEC Climate Center'),
(92406, 77041, 'en', 'name', 'Vascular Institute of New York'),
(92407, 77042, 'en', 'name', 'National Center for Spinal Disorders'),
(92408, 77042, 'hu', 'name', 'OrszÔgos GerincgyógyÔszati Központ'),
(92409, 77043, 'en', 'name', 'Chinese University of Hong Kong, Shenzhen'),
(92410, 77043, 'zh', 'name', '香港中文大學 (深圳)'),
(92411, 77044, 'en', 'name', 'Society of Hematologic Oncology'),
(92412, 77045, 'en', 'name', 'Armed Forces College of Medicine'),
(92413, 77046, 'no_lang_code', 'name', 'Equibreed (New Zealand)'),
(92414, 77047, 'en', 'name', 'VIB-UGent Center for Medical Biotechnology'),
(92415, 77048, 'en', 'name', 'VIB - International Plant Biotechnology Outreach'),
(92416, 77049, 'no_lang_code', 'name', 'Dopavision (Germany)'),
(92417, 77050, 'en', 'name', 'VIB-UAntwerp Center for Molecular Neurology'),
(92418, 77051, 'en', 'name', 'VIB-VUB Center for Structural Biology'),
(92419, 77052, 'no_lang_code', 'name', 'Otolith Labs (United States)'),
(92420, 77053, 'en', 'name', 'VIB-VUB Laboratory Myeloid Cell Immunology'),
(92421, 77054, 'no_lang_code', 'name', 'JenaBatteries (Germany)'),
(92422, 77055, 'en', 'name', 'Women in Sport'),
(92423, 77056, 'no_lang_code', 'name', 'PCL Health (United Kingdom)'),
(92424, 77057, 'en', 'name', 'BioVale'),
(92425, 77058, 'no_lang_code', 'name', 'Immune Modulatory Therapies (United States)'),
(92426, 77059, 'en', 'name', 'Virginia Office of Intergovernmental Affairs'),
(92427, 77060, 'en', 'name', 'Academic City College University'),
(92428, 77061, 'de', 'name', 'Klinik Schützen Rheinfelden'),
(92429, 77062, 'en', 'name', 'Dominion University College'),
(92430, 77063, 'en', 'name', 'Ghana Armed Forces Command and Staff College'),
(92431, 77064, 'en', 'name', 'Institute for Scientific and Technological Information'),
(92432, 77065, 'en', 'name', 'Takoradi Technical University'),
(92433, 77066, 'en', 'name', 'Canada Health Infoway'),
(92434, 77067, 'en', 'name', 'Jacobs Institute'),
(92435, 77068, 'en', 'name', 'Southern California Reproductive Center'),
(92436, 77069, 'en', 'name', 'Berlin Center for Genomics in Biodiversity Research'),
(92437, 77070, 'it', 'name', 'Istituto di Sessuologia Clinica');
INSERT INTO `ror_settings` VALUES
(92438, 77071, 'en', 'name', 'Gifu Heart Center'),
(92439, 77071, 'ja', 'name', 'å²é˜œćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(92440, 77072, 'en', 'name', 'Institute of Orthopedics Banjica'),
(92441, 77072, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¾Ń€Ń‚Š¾ŠæŠµŠ“ŠøŃ˜Ńƒ Š‘Š°ŃšŠøŃ†Š°'),
(92442, 77073, 'es', 'name', 'Gastroenterología Diagnóstica Terapeútica'),
(92443, 77074, 'en', 'name', 'Centre for Clinical Interventions'),
(92444, 77075, 'es', 'name', 'Centro Interdisciplinario para la Investigación Acuícola'),
(92445, 77075, 'en', 'name', 'Interdisciplinary Center for Aquaculture Research'),
(92446, 77076, 'en', 'name', 'International Institute of Tropical Agriculture'),
(92447, 77077, 'en', 'name', 'European Graduate School of Neuroscience'),
(92448, 77078, 'en', 'name', 'Mortimer Market Centre'),
(92449, 77079, 'en', 'name', 'ORSI Academy'),
(92450, 77080, 'no_lang_code', 'name', 'ABB (Poland)'),
(92451, 77081, 'en', 'name', 'Virtual Reality Medical Institute'),
(92452, 77082, 'es', 'name', 'Centro Internacional de la Papa'),
(92453, 77082, 'en', 'name', 'International Potato Center'),
(92454, 77083, 'sr', 'name', 'Institut za kukuruz "Zemun Polje"'),
(92455, 77083, 'no_lang_code', 'name', 'Maize Research Institute Zemun Polje'),
(92456, 77084, 'no_lang_code', 'name', 'NordLab'),
(92457, 77084, 'fi', 'name', 'Pohjois-Suomen laboratoriokeskuksen liikelaitoskuntayhtymƤ'),
(92458, 77085, 'en', 'name', 'Renal Associates P. A.'),
(92459, 77086, 'fr', 'name', 'FƩdƩration Internationale du Vieillissement'),
(92460, 77086, 'en', 'name', 'International Federation on Ageing'),
(92461, 77087, 'en', 'name', 'Kenozero National Park'),
(92462, 77087, 'ru', 'name', 'ŠšŠµŠ½Š¾Š·ŠµŃ€ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк'),
(92463, 77088, 'no_lang_code', 'name', 'Single Cell Discoveries (Netherlands)'),
(92464, 77089, 'no_lang_code', 'name', 'Diamond Materials (Germany)'),
(92465, 77090, 'es', 'name', 'Fundación Hospital San Pedro'),
(92466, 77091, 'no_lang_code', 'name', 'Factual (United States)'),
(92467, 77092, 'no_lang_code', 'name', 'Museo Dabawenyo'),
(92468, 77093, 'it', 'name', 'Associazione Calabrese di Epatologia'),
(92469, 77094, 'no_lang_code', 'name', 'Dynamic Biosensors (Germany)'),
(92470, 77095, 'no_lang_code', 'name', 'Glaceum (South Korea)'),
(92471, 77096, 'no_lang_code', 'name', 'CytoDel (United States)'),
(92472, 77097, 'en', 'name', 'Arctic Research Centre'),
(92473, 77098, 'en', 'name', 'Tibetan Children’s Village'),
(92474, 77098, 'hi', 'name', 'ą¤¹ą„‡ą¤” ऑफिस, ą¤¤ą¤æą¤¬ą„ą¤¬ą¤¤ą„€ ą¤šą¤æą¤²ą„ą¤”ą„ą¤°ą¤Øą„ą¤ø ą¤µą¤æą¤²ą„‡ą¤œ ą¤øą„ą¤•ą„‚ą¤²'),
(92475, 77099, 'no_lang_code', 'name', 'Inergio (Switzerland)'),
(92476, 77100, 'en', 'name', 'Botswana Geoscience Institute'),
(92477, 77101, 'en', 'name', 'Oeschger Centre for Climate Change Research'),
(92478, 77102, 'en', 'name', 'Iowa Digestive Disease Center'),
(92479, 77103, 'no_lang_code', 'name', 'TerraRad Tech (Switzerland)'),
(92480, 77104, 'no_lang_code', 'name', 'Victorinox (Switzerland)'),
(92481, 77105, 'en', 'name', 'Horace Mann School'),
(92482, 77106, 'pt', 'name', 'Hospital Santa Paula'),
(92483, 77107, 'no_lang_code', 'name', 'Biomica (Israel)'),
(92484, 77108, 'no_lang_code', 'name', 'Kologrivsky Nature Reserve'),
(92485, 77108, 'ru', 'name', 'ŠšŠ¾Š»Š¾Š³Ń€ŠøŠ²ŃŠŗŠøŠ¹ лес заповеГник'),
(92486, 77109, 'no_lang_code', 'name', 'AlphaThera (United States)'),
(92487, 77110, 'it', 'name', 'Europa Donna'),
(92488, 77111, 'no_lang_code', 'name', 'Frontier Geosciences (Canada)'),
(92489, 77112, 'no_lang_code', 'name', 'Informulate (United States)'),
(92490, 77113, 'en', 'name', 'Retinal Consultants of Arizona'),
(92491, 77114, 'no_lang_code', 'name', 'Tigireksky Nature Reserve'),
(92492, 77114, 'ru', 'name', 'Тигирекский заповеГник'),
(92493, 77115, 'no_lang_code', 'name', 'Lux Research (United States)'),
(92494, 77116, 'no_lang_code', 'name', 'Provinn (Sweden)'),
(92495, 77117, 'no_lang_code', 'name', 'envibee (Switzerland)'),
(92496, 77118, 'en', 'name', 'Pinnacle Clinical Research'),
(92497, 77119, 'no_lang_code', 'name', 'Sailbri Cooper (United States)'),
(92498, 77120, 'id', 'name', 'Balai Arkeologi Sulawesi Selatan'),
(92499, 77121, 'en', 'name', 'Institute for Musculoskeletal Health'),
(92500, 77122, 'en', 'name', 'Guangzhou Development Zone Hospital'),
(92501, 77122, 'zh', 'name', 'å¹æå·žå¼€å‘åŒŗåŒ»é™¢'),
(92502, 77123, 'en', 'name', 'Ugra National Park'),
(92503, 77123, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк Угра'),
(92504, 77124, 'no_lang_code', 'name', 'WuXi AppTec (United States)'),
(92505, 77125, 'en', 'name', 'Envoi Specialist Pathologists'),
(92506, 77126, 'pt', 'name', 'SĆ£o Germano Oncologia'),
(92507, 77127, 'no_lang_code', 'name', 'Hydrosolutions (Switzerland)'),
(92508, 77128, 'en', 'name', 'Center for Digital Image Evaluation'),
(92509, 77129, 'de', 'name', 'SPZ Frankfurt Mitte'),
(92510, 77130, 'no_lang_code', 'name', 'Dempsey (Canada)'),
(92511, 77131, 'no_lang_code', 'name', 'Guangzhou Research and Creativity Biotechnology (China)'),
(92512, 77131, 'zh', 'name', 'å¹æå·žē ”åˆ›ē”Ÿē‰©'),
(92513, 77132, 'en', 'name', 'Taipei Institute of Pathology'),
(92514, 77132, 'zh', 'name', 'å°åŒ—ē—…ē†äø­åæƒ'),
(92515, 77133, 'nl', 'name', 'Centrum voor Gynaecologische Oncologie Amsterdam'),
(92516, 77134, 'no_lang_code', 'name', 'Crozet BioPharma (United States)'),
(92517, 77135, 'no_lang_code', 'name', 'Jupiter (United States)'),
(92518, 77136, 'no_lang_code', 'name', 'Elasmo Project'),
(92519, 77137, 'no_lang_code', 'name', 'Dr. Shterev Hospital'),
(92520, 77137, 'bg', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø комплекс "Š”-р Щерев"'),
(92521, 77138, 'no_lang_code', 'name', 'Solarea Bio (United States)'),
(92522, 77139, 'en', 'name', 'Millennium Nucleus of Ion Channel Associated Diseases'),
(92523, 77139, 'es', 'name', 'Núcleo Milenio de Enfermedades Asociadas a Canales iónicos'),
(92524, 77140, 'no_lang_code', 'name', 'The Hyve (Netherlands)'),
(92525, 77141, 'en', 'name', 'Indian Creek Farm'),
(92526, 77142, 'en', 'name', 'Hamilton Medical Research Group'),
(92527, 77143, 'en', 'name', 'International Institute for Sustainability Australia'),
(92528, 77144, 'en', 'name', 'Caucasian State Natural Biosphere Reserve named after Kh.G. Shaposhnikov'),
(92529, 77144, 'ru', 'name', 'Кавказский Š³Š¾ŃŃƒŠ“арственный прироГный биосферный заповеГник имени Š„.Š“.Шапошникова'),
(92530, 77145, 'en', 'name', 'Glympse Bio'),
(92531, 77146, 'fr', 'name', 'Médecins Sans Frontières'),
(92532, 77146, 'ar', 'name', 'Ų£Ų·ŲØŲ§Ų” بلا حدود'),
(92533, 77147, 'de', 'name', 'GastroZentrum Hirslanden Zürich'),
(92534, 77148, 'en', 'name', 'Directorate of Health and Family Welfare Government of Chhattisgarh'),
(92535, 77148, 'hi', 'name', 'ą¤øą¤‚ą¤šą¤¾ą¤²ą¤Øą¤¾ą¤²ą¤Æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤ą¤µą¤‚ परिवार ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ विभाग ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą„ शासन'),
(92536, 77149, 'no_lang_code', 'name', 'Kraken Systems (Croatia)'),
(92537, 77150, 'en', 'name', 'Anti Leprosy Campaign'),
(92538, 77151, 'no_lang_code', 'name', 'Notable Labs (United States)'),
(92539, 77152, 'en', 'name', 'Gasol Foundation'),
(92540, 77153, 'no_lang_code', 'name', 'CareEvolution (United States)'),
(92541, 77154, 'es', 'name', 'Instituto Volcanológico de Canarias'),
(92542, 77155, 'no_lang_code', 'name', 'Evolved Analytics (United States)'),
(92543, 77156, 'en', 'name', 'Nuffield Health'),
(92544, 77157, 'no_lang_code', 'name', 'Digizyme (United States)'),
(92545, 77158, 'en', 'name', 'Tasmanian Land Conservancy'),
(92546, 77159, 'en', 'name', 'International Gorilla Conservation Programme'),
(92547, 77160, 'en', 'name', 'ARC Centre of Excellence for Automated Decision-Making and Society'),
(92548, 77161, 'en', 'name', 'ARC Centre of Excellence for the Digital Child'),
(92549, 77162, 'en', 'name', 'ARC Centre of Excellence for Enabling Eco-Efficient Beneficiation of Minerals'),
(92550, 77163, 'en', 'name', 'ARC Centre of Excellence in Synthetic Biology'),
(92551, 77164, 'en', 'name', 'ARC Centre of Excellence for Transformative Meta-Optical Systems'),
(92552, 77165, 'en', 'name', 'Medford Radiology Group'),
(92553, 77166, 'en', 'name', 'Gloucester Marine Genomics Institute'),
(92554, 77167, 'en', 'name', 'Stanford Blood Center'),
(92555, 77168, 'no_lang_code', 'name', 'NestlƩ (Singapore)'),
(92556, 77169, 'en', 'name', 'Kids Saving the Rainforest'),
(92557, 77170, 'no_lang_code', 'name', 'Abt Associates (Nepal)'),
(92558, 77171, 'en', 'name', 'Lehmann Eye Center'),
(92559, 77172, 'en', 'name', 'The Childhood Acute Illness and Nutrition Network'),
(92560, 77173, 'en', 'name', 'Wildlife Science Center'),
(92561, 77174, 'en', 'name', 'Olyokma Nature Reserve'),
(92562, 77174, 'ru', 'name', 'ФГБУ Ā«Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник Ā«ŠžŠ»Ń‘ŠŗŠ¼ŠøŠ½ŃŠŗŠøŠ¹Ā»'),
(92563, 77175, 'no_lang_code', 'name', 'SAS Institute (Ireland)'),
(92564, 77176, 'es', 'name', 'CEVAXIN'),
(92565, 77177, 'en', 'name', 'Center for Outcomes Research in Liver Diseases'),
(92566, 77178, 'no_lang_code', 'name', 'Incisive Genetics (Canada)'),
(92567, 77179, 'no_lang_code', 'name', 'EarthCape (Finland)'),
(92568, 77180, 'en', 'name', 'Urban Emissions Info'),
(92569, 77181, 'en', 'name', 'United Nations Children''s Fund Niger'),
(92570, 77182, 'no_lang_code', 'name', 'Tianmu Lake Institute of Advanced Energy Storage Technologies (China)'),
(92571, 77183, 'de', 'name', 'Muskelzentrum/ALS Clinic'),
(92572, 77184, 'pt', 'name', 'Centro Paulista de Investigação Clinica'),
(92573, 77185, 'no_lang_code', 'name', 'Helen Keller International Nepal'),
(92574, 77186, 'no_lang_code', 'name', 'iDirect Government (United States)'),
(92575, 77187, 'no_lang_code', 'name', 'Cycle (Germany)'),
(92576, 77188, 'en', 'name', 'Department of Statistics Malaysia'),
(92577, 77189, 'no_lang_code', 'name', 'Erum Biotechnologies (South Korea)'),
(92578, 77190, 'en', 'name', 'Irish Children''s Arthritis Network'),
(92579, 77191, 'no_lang_code', 'name', 'H2Pro (Israel)'),
(92580, 77192, 'en', 'name', 'National Museum of the Philippines'),
(92581, 77192, 'tl', 'name', 'Pambansang Museo ng Pilipinas'),
(92582, 77193, 'no_lang_code', 'name', 'Icon (Australia)'),
(92583, 77194, 'no_lang_code', 'name', 'Advanced Micro-Fabrication Equipment (China)'),
(92584, 77194, 'zh', 'name', 'äø­å¾®åŠåÆ¼ä½“č®¾å¤‡'),
(92585, 77195, 'en', 'name', 'Kanti Children''s Hospital'),
(92586, 77196, 'no_lang_code', 'name', 'National Park Braslavskie Ozera'),
(92587, 77196, 'be', 'name', 'ŠŠ°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Ń‹ парк Š‘Ń€Š°ŃŠ»Š°ŃžŃŠŗŃ–Ń азёры'),
(92588, 77197, 'en', 'name', 'Broome Regional Aboriginal Medical Service'),
(92589, 77198, 'en', 'name', 'Hong Kong Observatory'),
(92590, 77198, 'zh', 'name', 'é¦™ęøÆå¤©ę–‡å°'),
(92591, 77199, 'no_lang_code', 'name', 'Resolve Therapeutics (United States)'),
(92592, 77200, 'no_lang_code', 'name', 'Science Groove (Japan)'),
(92593, 77200, 'ja', 'name', 'ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚°ćƒ«ćƒ¼ćƒ“'),
(92594, 77201, 'en', 'name', 'Wellington Free Ambulance'),
(92595, 77202, 'de', 'name', 'Biologische Station Neusiedler See'),
(92596, 77203, 'en', 'name', 'Seeta Eye Centers'),
(92597, 77204, 'en', 'name', 'United Nations Children''s Fund'),
(92598, 77205, 'en', 'name', 'Innovating Health International'),
(92599, 77206, 'en', 'name', 'Wild Nature Institute'),
(92600, 77207, 'en', 'name', 'Day Family Medicine'),
(92601, 77208, 'no_lang_code', 'name', 'Ally Therapeutics (United States)'),
(92602, 77209, 'en', 'name', 'Hybrid Rapeseed Research Center of Shaanxi Province'),
(92603, 77209, 'zh', 'name', 'é™•č„æēœę‚äŗ¤ę²¹čœē ”ē©¶äø­åæƒ'),
(92604, 77210, 'no_lang_code', 'name', 'CommuniCare Family of Companies (United States)'),
(92605, 77211, 'no_lang_code', 'name', 'Riverside Technology (United States)'),
(92606, 77212, 'pt', 'name', 'Instituto Nacional de EstatĆ­stica'),
(92607, 77213, 'no_lang_code', 'name', 'FinVector (Finland)'),
(92608, 77214, 'no_lang_code', 'name', 'RedCastle Resources (United States)'),
(92609, 77215, 'no_lang_code', 'name', 'Kagami Crystal (Japan)'),
(92610, 77215, 'ja', 'name', 'ć‚«ć‚¬ćƒŸć‚ÆćƒŖć‚¹ć‚æćƒ«'),
(92611, 77216, 'no_lang_code', 'name', 'Nuclera (United Kingdom)'),
(92612, 77217, 'no_lang_code', 'name', 'Sentieon (United States)'),
(92613, 77218, 'pt', 'name', 'Associação Projecto Vitó'),
(92614, 77219, 'es', 'name', 'Centro de Medicina Avanzada Dr. Abel Gonzalez'),
(92615, 77220, 'en', 'name', 'Urology of Indiana'),
(92616, 77221, 'no_lang_code', 'name', 'Immunai (United States)'),
(92617, 77222, 'no_lang_code', 'name', 'Complete Omics (United States)'),
(92618, 77223, 'no_lang_code', 'name', 'Avidea Technologies (United States)'),
(92619, 77224, 'no_lang_code', 'name', 'Notal Vision (Israel)'),
(92620, 77225, 'nl', 'name', 'GGD Hart voor Brabant'),
(92621, 77226, 'en', 'name', 'Fairmed'),
(92622, 77227, 'en', 'name', 'Police of the Czech Republic'),
(92623, 77227, 'cs', 'name', 'Policie České republiky'),
(92624, 77228, 'en', 'name', 'Sanno Medical Center'),
(92625, 77229, 'no_lang_code', 'name', 'NLR Nepal'),
(92626, 77230, 'no_lang_code', 'name', 'TriNetX (United States)'),
(92627, 77231, 'en', 'name', 'The Dian Fossey Gorilla Fund International'),
(92628, 77232, 'no_lang_code', 'name', 'Theolytics (United Kingdom)'),
(92629, 77233, 'en', 'name', 'State Nature Reserve "Bolshaya Kokshaga"'),
(92630, 77233, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник Ā«Š‘Š¾Š»ŃŒŃˆŠ°Ń Кокшага»'),
(92631, 77234, 'no_lang_code', 'name', 'Kuznetsk Alatau Nature Reserve'),
(92632, 77234, 'ru', 'name', 'ŠšŃƒŠ·Š½ŠµŃ†ŠŗŠøŠ¹ ŠŠ»Š°Ń‚Š°Ńƒ заповеГник'),
(92633, 77235, 'en', 'name', 'Possover International Medical Center'),
(92634, 77236, 'en', 'name', 'Monash IVF'),
(92635, 77237, 'no_lang_code', 'name', 'Logopharm (Germany)'),
(92636, 77238, 'en', 'name', 'Westchester County Department of Health'),
(92637, 77239, 'en', 'name', 'Dermacross'),
(92638, 77240, 'es', 'name', 'Instituto MƩdico Rƭo Cuarto'),
(92639, 77241, 'no_lang_code', 'name', 'Tomita Hospital'),
(92640, 77242, 'no_lang_code', 'name', 'GenomiCare (China)'),
(92641, 77243, 'es', 'name', 'Inria Chile'),
(92642, 77244, 'fr', 'name', 'RƩseau d''Allergo-Vigilance'),
(92643, 77245, 'no_lang_code', 'name', 'Autovista (Finland)'),
(92644, 77246, 'en', 'name', 'Gastroenterology Group of Rochester'),
(92645, 77247, 'en', 'name', 'Joep Lange Institute'),
(92646, 77248, 'no_lang_code', 'name', 'International Wildlife Consultants (United Kingdom)'),
(92647, 77249, 'en', 'name', 'NLR India'),
(92648, 77250, 'en', 'name', 'Aioi City Board of Education'),
(92649, 77250, 'ja', 'name', 'ē›øē”Ÿåø‚ę•™č‚²å§”å“”ä¼š'),
(92650, 77251, 'no_lang_code', 'name', 'ACS Solutions (United States)'),
(92651, 77252, 'en', 'name', 'Nurgush Nature Reserve'),
(92652, 77252, 'ru', 'name', 'ŠŃƒŃ€Š³ŃƒŃˆ заповеГник'),
(92653, 77253, 'hr', 'name', 'Institut za javno zdravlje Crne Gore'),
(92654, 77254, 'en', 'name', 'Geological Survey of Namibia'),
(92655, 77255, 'en', 'name', 'Vodlozersky National Park'),
(92656, 77255, 'ru', 'name', 'ВоГлозерский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк'),
(92657, 77256, 'en', 'name', 'Shushensky Bor National Park'),
(92658, 77256, 'ru', 'name', 'Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк «Шушенский бор'),
(92659, 77257, 'en', 'name', 'New Jersey Urology'),
(92660, 77258, 'en', 'name', 'Crystal Run Healthcare'),
(92661, 77259, 'en', 'name', 'Mukachevo State University'),
(92662, 77259, 'uk', 'name', 'ŠœŃƒŠŗŠ°Ń‡Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(92663, 77260, 'no_lang_code', 'name', 'ARAconsult (Austria)'),
(92664, 77261, 'en', 'name', 'Sikhote-Alin Nature Reserve'),
(92665, 77261, 'ru', 'name', 'Š”ŠøŃ…Š¾Ń‚Ń-Алинский заповеГник'),
(92666, 77262, 'en', 'name', 'Baikal Nature Reserve'),
(92667, 77262, 'ru', 'name', 'Š‘Š°Š¹ŠŗŠ°ĢŠ»ŃŒŃŠŗŠøŠ¹ запове́Гник'),
(92668, 77263, 'no_lang_code', 'name', 'PanTheryx (United States)'),
(92669, 77264, 'en', 'name', 'Privolshky Les Nature Reserve'),
(92670, 77264, 'ru', 'name', 'ŠŸŃ€ŠøŠ²Š¾Š»Š¶ŃŠŗŠ°Ń Š»ŠµŃŠ¾ŃŃ‚ŠµŠæŃŒ заповеГник'),
(92671, 77265, 'en', 'name', 'National Center of Public Health of the Ministry of Health of the Republic of Kazakhstan'),
(92672, 77265, 'kk', 'name', 'ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠ«Š™ Š¦Š•ŠŠ¢Š  ŠžŠ‘Š©Š•Š”Š¢Š’Š•ŠŠŠžŠ“Šž Š—Š”Š ŠŠ’ŠžŠžŠ„Š ŠŠŠ•ŠŠ˜ŠÆ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š—Š”Š ŠŠ’ŠžŠžŠ„Š ŠŠŠ•ŠŠ˜ŠÆ Š Š•Š”ŠŸŠ£Š‘Š›Š˜ŠšŠ˜ ŠšŠŠ—ŠŠ„Š”Š¢ŠŠ'),
(92673, 77266, 'en', 'name', 'San Francisco Estuary Institute'),
(92674, 77267, 'en', 'name', 'Pryazovskyi National Nature Park'),
(92675, 77267, 'uk', 'name', 'ŠŸŃ€ŠøŠ°Š·Š¾Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГний парк'),
(92676, 77268, 'en', 'name', 'Edwin Clark University'),
(92677, 77269, 'en', 'name', 'Taraclia State University'),
(92678, 77269, 'ro', 'name', 'Universitatea de Stat ā€žGrigore Țamblacā€ din Taraclia'),
(92679, 77270, 'en', 'name', 'V. Peskov Voronezhsky State Nature Biosphere Reserve'),
(92680, 77270, 'ru', 'name', 'Š’ŠžŠ ŠžŠŠ•Š–Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŸŠ Š˜Š ŠžŠ”ŠŠ«Š™ Š‘Š˜ŠžŠ”Š¤Š•Š ŠŠ«Š™ Š—ŠŠŸŠžŠ’Š•Š”ŠŠ˜Šš Š˜ŠœŠ•ŠŠ˜ Š’.М. ŠŸŠ•Š”ŠšŠžŠ’Š'),
(92681, 77271, 'ro', 'name', 'Academia "Ștefan cel Mare" a Ministerului Afacerilor Interne'),
(92682, 77271, 'en', 'name', 'Ştefan cel Mare Police Academy'),
(92683, 77272, 'en', 'name', 'State University of Physical Education and Sport'),
(92684, 77272, 'ro', 'name', 'Universitatea de Stat de Educaţie Fizică şi Sport'),
(92685, 77273, 'en', 'name', 'Remote Sensing Technology Center of Japan'),
(92686, 77273, 'ja', 'name', 'ćƒŖćƒ¢ćƒ¼ćƒˆćƒ»ć‚»ćƒ³ć‚·ćƒ³ć‚°ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(92687, 77274, 'no_lang_code', 'name', 'Antaros Medical (Sweden)'),
(92688, 77275, 'no_lang_code', 'name', 'CDM Smith (Australia)'),
(92689, 77276, 'no_lang_code', 'name', 'Biohaven Pharmaceuticals (United States)'),
(92690, 77277, 'en', 'name', 'D-Tree International'),
(92691, 77278, 'en', 'name', 'North Karelia Center for Public Health'),
(92692, 77278, 'fi', 'name', 'Pohjois-Karjalan Kansanterveyden Keskus'),
(92693, 77279, 'no_lang_code', 'name', 'Mira Geoscience (Canada)'),
(92694, 77280, 'en', 'name', 'Ipar Perspective'),
(92695, 77281, 'es', 'name', 'Agua y Saneamientos Argentinos'),
(92696, 77281, 'no_lang_code', 'name', 'Argentine Water and Sanitation (Argentina)'),
(92697, 77282, 'no_lang_code', 'name', 'BridgeBio (United States)'),
(92698, 77283, 'no_lang_code', 'name', 'Somahlution (United States)'),
(92699, 77284, 'no_lang_code', 'name', 'Cumberland Research Associates (United States)'),
(92700, 77285, 'no_lang_code', 'name', 'Opris Consulting (United States)'),
(92701, 77286, 'en', 'name', 'National Institute for Implementation Research on Non-Communicable Diseases'),
(92702, 77287, 'en', 'name', 'Jain Family Institute'),
(92703, 77288, 'no_lang_code', 'name', 'Swiss Re (United States)'),
(92704, 77289, 'fr', 'name', 'Centre de RƩfƩrence des Maladies Autoinflammatoires et des Amyloses'),
(92705, 77290, 'en', 'name', 'Allergy Action'),
(92706, 77291, 'no_lang_code', 'name', 'Iridian Genomes'),
(92707, 77292, 'en', 'name', 'West Texas Retina Consultants'),
(92708, 77293, 'en', 'name', 'CorVita Science Foundation'),
(92709, 77294, 'no_lang_code', 'name', 'GeoModelling Solutions (Switzerland)'),
(92710, 77295, 'es', 'name', 'Agencia Insular de la EnergĆ­a de Tenerife'),
(92711, 77295, 'en', 'name', 'Tenerife Island Energy Agency'),
(92712, 77296, 'es', 'name', 'Centro MƩdico Bustos Fernandez'),
(92713, 77297, 'es', 'name', 'Fundacion Venezolana de Investigaciones Sismologicas'),
(92714, 77298, 'no_lang_code', 'name', 'RapidAIM (Australia)'),
(92715, 77299, 'en', 'name', 'Toronto Liver Centre'),
(92716, 77300, 'en', 'name', 'Little Sosva Nature Reserve'),
(92717, 77300, 'ru', 'name', 'ŠœŠ°Š»Š°Ń Досьва заповеГник'),
(92718, 77301, 'en', 'name', 'Pediatrics and Genetics'),
(92719, 77302, 'no_lang_code', 'name', 'Waves Audio (Israel)'),
(92720, 77303, 'en', 'name', 'Carl von LinnƩ Clinic'),
(92721, 77304, 'en', 'name', 'National Park Meshera'),
(92722, 77304, 'ru', 'name', 'ŠœŠµŃ‰Ń‘Ń€Š° (Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк))'),
(92723, 77305, 'en', 'name', 'Clark County Public Health'),
(92724, 77306, 'en', 'name', 'Allergy Partners of Lynchburg'),
(92725, 77307, 'no_lang_code', 'name', 'Invisible Software (United States)'),
(92726, 77308, 'en', 'name', 'The Metabolomics Innovation Centre'),
(92727, 77309, 'en', 'name', 'Togolese Ministry of Health'),
(92728, 77310, 'en', 'name', 'Lake Macquarie Private Hospital'),
(92729, 77311, 'en', 'name', 'Taymyr Nature Reserve'),
(92730, 77311, 'ru', 'name', 'Таймырский заповеГник'),
(92731, 77312, 'en', 'name', 'HeartMath Institute'),
(92732, 77313, 'no_lang_code', 'name', 'Carl Zeiss (China)'),
(92733, 77314, 'no_lang_code', 'name', 'Lettis Consultants International (United States)'),
(92734, 77315, 'en', 'name', 'Gastroenterology Center of Connecticut'),
(92735, 77316, 'en', 'name', 'Romanian Ornithological Society'),
(92736, 77316, 'ro', 'name', 'Societatea Ornitologică Română'),
(92737, 77317, 'en', 'name', 'Jeffrey D. Horn Vision For Life'),
(92738, 77318, 'en', 'name', 'National Commission on Indigenous Peoples'),
(92739, 77318, 'tl', 'name', 'Pambansang Komisyon sa mga Katutubong Mamamayan'),
(92740, 77319, 'en', 'name', 'Glacier Cave Explorers'),
(92741, 77320, 'en', 'name', 'The Negros Museum'),
(92742, 77321, 'es', 'name', 'Casa del NiƱo Hospital Infantil'),
(92743, 77322, 'en', 'name', 'Reproductive Biology Associates'),
(92744, 77323, 'en', 'name', 'SRCC Children’s Hospital'),
(92745, 77324, 'es', 'name', 'Fundación Para La Investigación Y Gestión En Servicios de Salud'),
(92746, 77325, 'fr', 'name', 'Agence Wallonne du Patrimoine'),
(92747, 77325, 'en', 'name', 'Walloon Heritage Agency'),
(92748, 77326, 'no_lang_code', 'name', 'Sensory Cloud (United States)'),
(92749, 77327, 'no_lang_code', 'name', 'McKing Consulting (United States)'),
(92750, 77328, 'no', 'name', 'SpesialistSenteret Pilestredet Park'),
(92751, 77329, 'fr', 'name', 'Centre Hospitalier Sud-Essonne Dourdan-Etampes'),
(92752, 77330, 'no_lang_code', 'name', 'Olink (United States)'),
(92753, 77331, 'no_lang_code', 'name', 'Akari Therapeutics (United Kingdom)'),
(92754, 77332, 'en', 'name', 'World Health Organization - Malawi'),
(92755, 77333, 'de', 'name', 'See-Spital'),
(92756, 77334, 'en', 'name', 'National Archeological Anthropological Memory Management'),
(92757, 77335, 'no_lang_code', 'name', 'ENPICOM (Netherlands)'),
(92758, 77336, 'no_lang_code', 'name', 'Cyano Biotech (Germany)'),
(92759, 77337, 'no_lang_code', 'name', 'Bio4Dreams (Italy)'),
(92760, 77338, 'no_lang_code', 'name', 'MBMed (Argentina)'),
(92761, 77339, 'en', 'name', 'Software Training and Development Centre'),
(92762, 77340, 'en', 'name', 'Carpathian National Nature Park'),
(92763, 77340, 'uk', 'name', 'ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГний парк'),
(92764, 77341, 'fr', 'name', 'Centre Hospitalier de Dax –CĆ“te d’Argent'),
(92765, 77342, 'no_lang_code', 'name', 'Wyatt Technology (China)'),
(92766, 77342, 'zh', 'name', 'ę€€é›…ē‰¹ęŠ€ęœÆå…¬åø'),
(92767, 77343, 'fr', 'name', 'Observatoire FranƧais de la SclƩrose en Plaques'),
(92768, 77344, 'no_lang_code', 'name', 'Linkster Therapeutics (Switzerland)'),
(92769, 77345, 'en', 'name', 'Quantified Uncertainty Research Institute'),
(92770, 77346, 'en', 'name', 'WaterAid'),
(92771, 77347, 'de', 'name', 'Schƶn Klinik Vogtareuth'),
(92772, 77348, 'en', 'name', 'Hospiten Group'),
(92773, 77349, 'no_lang_code', 'name', 'Heartfile'),
(92774, 77350, 'no_lang_code', 'name', 'FAIRMED'),
(92775, 77351, 'fr', 'name', 'HƓpital Saint- Camille'),
(92776, 77352, 'de', 'name', 'Barmherzige Schwestern Krankenhaus Wien'),
(92777, 77353, 'no_lang_code', 'name', 'Hauri (Germany)'),
(92778, 77354, 'no_lang_code', 'name', 'Remit Kenya (Kenya)'),
(92779, 77355, 'en', 'name', 'Ilembula Lutheran Hospital'),
(92780, 77356, 'en', 'name', 'Parkinson’s Disease and Movement Disorder Center of Silicon Valley'),
(92781, 77357, 'no_lang_code', 'name', 'Pacific Radiology (New Zealand)'),
(92782, 77358, 'no_lang_code', 'name', 'Gastro One (United States)'),
(92783, 77359, 'en', 'name', 'Kivach Nature Reserve'),
(92784, 77359, 'ru', 'name', 'ŠšŠøŠ²Š°Ń‡ заповеГник'),
(92785, 77360, 'no_lang_code', 'name', 'Pivot'),
(92786, 77361, 'no_lang_code', 'name', 'Atuka (Canada)'),
(92787, 77362, 'en', 'name', 'Kyiv City Clinical Oncology Center'),
(92788, 77363, 'es', 'name', 'Hospital Roberto del Rio'),
(92789, 77364, 'en', 'name', 'Extreme Weather Expertise'),
(92790, 77365, 'nl', 'name', 'GGD Limburg-Noord'),
(92791, 77366, 'en', 'name', 'North Shore Health Department'),
(92792, 77367, 'pt', 'name', 'Hospital Sepaco'),
(92793, 77368, 'en', 'name', 'Aga Khan Development Network'),
(92794, 77369, 'pl', 'name', 'Przedszkole Nr 81'),
(92795, 77370, 'es', 'name', 'Centro de OrnitologĆ­a y Biodiversidad'),
(92796, 77371, 'en', 'name', 'Alliance for Public Health'),
(92797, 77371, 'uk', 'name', 'ŠŠ»ŃŒŃŠ½Ń Š³Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ¾Š³Š¾ зГоров''я'),
(92798, 77372, 'en', 'name', 'KidsOR'),
(92799, 77373, 'no_lang_code', 'name', 'Alcon (Canada)'),
(92800, 77374, 'no_lang_code', 'name', 'Alcon (United Kingdom)'),
(92801, 77375, 'no_lang_code', 'name', 'Alcon (France)'),
(92802, 77376, 'no_lang_code', 'name', 'GI Specialists of Georgia (United States)'),
(92803, 77377, 'no_lang_code', 'name', 'Alcon (South Korea)'),
(92804, 77378, 'no_lang_code', 'name', 'Alcon (Japan)'),
(92805, 77379, 'no_lang_code', 'name', 'Alcon (Italy)'),
(92806, 77380, 'en', 'name', 'Japan Wildlife Research Center'),
(92807, 77380, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ č‡Ŗē„¶ē’°å¢ƒē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(92808, 77381, 'no_lang_code', 'name', 'Alcon (Ireland)'),
(92809, 77382, 'no_lang_code', 'name', 'Alcon (China)'),
(92810, 77383, 'no_lang_code', 'name', 'Alcon (India)'),
(92811, 77384, 'no_lang_code', 'name', 'GHGSat (Canada)'),
(92812, 77385, 'en', 'name', 'Vyzhnytsia National Nature Park'),
(92813, 77385, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГний парк Ā«Š’ŠøŠ¶Š½ŠøŃ†ŃŒŠŗŠøŠ¹Ā»'),
(92814, 77386, 'en', 'name', 'VASCage'),
(92815, 77387, 'no_lang_code', 'name', 'Immunitas Therapeutics (United States)'),
(92816, 77388, 'no_lang_code', 'name', 'Pointcloud (United States)'),
(92817, 77389, 'en', 'name', 'Japan Link Center'),
(92818, 77389, 'ja', 'name', 'ć‚øćƒ£ćƒ‘ćƒ³ćƒŖćƒ³ć‚Æć‚»ćƒ³ć‚æ'),
(92819, 77390, 'en', 'name', 'Royal Centre for Disease Control'),
(92820, 77391, 'nl', 'name', 'Zuidwester'),
(92821, 77392, 'no_lang_code', 'name', 'Pantheon Biosciences (Israel)'),
(92822, 77393, 'no_lang_code', 'name', 'Kani Tono Hospital'),
(92823, 77393, 'ja', 'name', 'åÆå…ćØć†ć®ć†ē—…é™¢'),
(92824, 77394, 'no_lang_code', 'name', 'Atos (Netherlands)'),
(92825, 77395, 'en', 'name', 'Spinal Cord Injury Ontario'),
(92826, 77396, 'en', 'name', 'Resphera Biosciences'),
(92827, 77397, 'es', 'name', 'Corporación Universitaria Comfacauca - Unicomfacauca'),
(92828, 77398, 'en', 'name', 'Kronotsky Reserve'),
(92829, 77398, 'ru', 'name', 'ŠšŃ€Š¾Š½Š¾Ń†ŠŗŠøŠ¹ заповеГник'),
(92830, 77399, 'en', 'name', 'Global VetPathology'),
(92831, 77400, 'en', 'name', 'Altaiskiy State Nature Biosphere Reserve'),
(92832, 77400, 'ru', 'name', 'Алтайский заповеГник'),
(92833, 77401, 'en', 'name', 'Liver Institute Northwest'),
(92834, 77402, 'en', 'name', 'Eye & Retina Surgeons'),
(92835, 77403, 'en', 'name', 'Hungarian School Sport Federation'),
(92836, 77403, 'hu', 'name', 'Magyar DiƔksport SzƶvetsƩg'),
(92837, 77404, 'no_lang_code', 'name', 'Karsa (Finland)'),
(92838, 77405, 'no_lang_code', 'name', 'Austrian Drug Screening Institute (Austria)'),
(92839, 77406, 'de', 'name', 'Brustzentrum Klinik St. Anna'),
(92840, 77407, 'en', 'name', 'People''s Hospital of Yangzhong'),
(92841, 77407, 'zh', 'name', 'ę‰¬äø­åø‚äŗŗę°‘åŒ»é™¢'),
(92842, 77408, 'no_lang_code', 'name', 'Ceinge Biotecnologie Avanzate (Italy)'),
(92843, 77409, 'no_lang_code', 'name', 'Century Therapeutics (United States)'),
(92844, 77410, 'en', 'name', 'Shanghai Sunshine Rehabilitation Center'),
(92845, 77410, 'zh', 'name', 'äøŠęµ·åø‚å…»åæ—åŗ·å¤åŒ»é™¢'),
(92846, 77411, 'en', 'name', 'Irkutsk Regional Museum of Local History'),
(92847, 77411, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ областной краевеГческий музей'),
(92848, 77412, 'en', 'name', 'Austrian Cluster for Tissue Regeneration'),
(92849, 77413, 'es', 'name', 'Instituto Oncológico de Córdoba'),
(92850, 77414, 'en', 'name', 'Arizona Liver Health'),
(92851, 77415, 'nl', 'name', 'GGD Brabant-Zuidoost'),
(92852, 77416, 'nl', 'name', 'PAMM'),
(92853, 77417, 'en', 'name', 'The Multiple Births Foundation'),
(92854, 77418, 'en', 'name', 'FORTH Institute of Electronic Structure and Laser'),
(92855, 77418, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ηλεκτρονικής Δομής και Λέιζερ'),
(92856, 77419, 'en', 'name', 'FORTH Institute of Molecular Biology and Biotechnology'),
(92857, 77419, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪœĪæĻĪ¹Ī±ĪŗĪ®Ļ‚ Βιολογίας και Βιοτεχνολογίας'),
(92858, 77420, 'en', 'name', 'FORTH Institute of Computer Science'),
(92859, 77420, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ€Ī¹ĻƒĻ„Ī®Ī¼Ī·Ļ‚ Ī„Ļ€ĪæĪ»ĪæĪ³Ī¹ĻƒĻ„ĻŽĪ½'),
(92860, 77421, 'en', 'name', 'FORTH Institute of Applied and Computational Mathematics'),
(92861, 77421, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ†Ī±ĻĪ¼ĪæĻƒĪ¼Ī­Ī½Ļ‰Ī½ και Ī„Ļ€ĪæĪ»ĪæĪ³Ī¹ĻƒĻ„Ī¹ĪŗĻŽĪ½ ĪœĪ±ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĻŽĪ½'),
(92862, 77422, 'en', 'name', 'FORTH Institute of Mediterranean Studies'),
(92863, 77422, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„ĪæĻ… ĪœĪµĻƒĪæĪ³ĪµĪ¹Ī±ĪŗĻŽĪ½ Ī£Ļ€ĪæĻ…Ī“ĻŽĪ½'),
(92864, 77423, 'en', 'name', 'FORTH Institute of Chemical Engineering Sciences'),
(92865, 77423, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ Ī§Ī·Ī¼Ī¹ĪŗĻŽĪ½ ĪœĪ·Ļ‡Ī±Ī½Ī¹ĪŗĻŽĪ½'),
(92866, 77424, 'en', 'name', 'FORTH Institute of Petroleum Research'),
(92867, 77424, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ Πετρελαίου'),
(92868, 77425, 'el', 'name', '"Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼Ī¹Ī±ĪŗĪ­Ļ‚ Ī•ĪŗĪ“ĻŒĻƒĪµĪ¹Ļ‚ ĪšĻĪ®Ļ„Ī·Ļ‚ "'),
(92869, 77425, 'en', 'name', 'Crete University Press'),
(92870, 77426, 'en', 'name', 'Foundation for Reproductive Medicine'),
(92871, 77427, 'en', 'name', 'Science and Technology Park of Crete'),
(92872, 77427, 'el', 'name', 'Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĪæĪ½Ī¹ĪŗĻŒ και Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Πάρκο ĪšĻĪ®Ļ„Ī·Ļ‚'),
(92873, 77428, 'no_lang_code', 'name', 'PRAXI Network'),
(92874, 77428, 'el', 'name', 'Δίκτυο Ī Ī”Ī‘ĪžĪ—'),
(92875, 77429, 'en', 'name', 'Right to Care'),
(92876, 77430, 'de', 'name', 'Mammazentrum Hamburg'),
(92877, 77431, 'en', 'name', 'Royal Academy of Cambodia'),
(92878, 77431, 'km', 'name', 'įžšįž¶įž‡įž”įžŽįŸ’įžŒįž·įžįŸ’įž™įžŸįž—įž¶įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(92879, 77432, 'en', 'name', 'Visim Nature Reserve'),
(92880, 77432, 'ru', 'name', 'Висимский Š³Š¾ŃŃƒŠ“арственный заповеГник'),
(92881, 77433, 'en', 'name', 'FHU Neurovasc'),
(92882, 77434, 'en', 'name', 'Philadelphia Water Department'),
(92883, 77435, 'en', 'name', 'Kabardino-Balkarski Nature Reserve'),
(92884, 77435, 'ru', 'name', 'ŠšŠ°Š±Š°Ń€Š“ŠøŠ½Š¾-Балкарский заповеГник'),
(92885, 77436, 'no_lang_code', 'name', 'Covenant Research and Clinics (United States)'),
(92886, 77437, 'de', 'name', 'Paracelsus Medizinische PrivatuniversitƤt'),
(92887, 77438, 'en', 'name', 'Bristow Pediatrics'),
(92888, 77439, 'en', 'name', 'Guangdong-Hongkong-Macau Joint Laboratory of Collaborative Innovation for Environmental Quality'),
(92889, 77439, 'zh', 'name', 'ē²¤ęøÆę¾³ēŽÆå¢ƒč“Øé‡ååŒåˆ›ę–°č”åˆå®žéŖŒå®¤'),
(92890, 77440, 'no_lang_code', 'name', 'Fusion Genomics (Canada)'),
(92891, 77441, 'en', 'name', 'SeaWorld San Diego'),
(92892, 77442, 'en', 'name', 'McGill Genome Centre'),
(92893, 77443, 'en', 'name', 'SCQM Foundation'),
(92894, 77444, 'en', 'name', 'Canossa Private Hospital'),
(92895, 77445, 'en', 'name', 'Bon Secours Mercy Health'),
(92896, 77446, 'no_lang_code', 'name', 'Middleton Spectral Vision (United States)'),
(92897, 77447, 'en', 'name', 'Department of Public Health'),
(92898, 77447, 'my', 'name', 'į€•į€¼į€Šį€ŗį€žį€°į€·į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€¦:į€…į€®į€øį€Œį€¬į€”'),
(92899, 77448, 'no_lang_code', 'name', 'S&B Christ Consulting (United States)'),
(92900, 77449, 'no_lang_code', 'name', 'EstƔtikos (Brazil)'),
(92901, 77450, 'en', 'name', 'Black Sea Biosphere Reserve'),
(92902, 77451, 'en', 'name', 'Unitary Fund'),
(92903, 77452, 'sv', 'name', 'Stockholm IVF'),
(92904, 77453, 'fr', 'name', 'Institut de CancƩrologie Strasbourg'),
(92905, 77454, 'en', 'name', 'Khvalynsky National Park'),
(92906, 77454, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ парка «Євалынский»'),
(92907, 77455, 'nl', 'name', 'Centre ArchƩologique de la Grotte Scladina'),
(92908, 77455, 'fr', 'name', 'Scladina'),
(92909, 77456, 'en', 'name', 'Jubilee Clinical Research'),
(92910, 77457, 'en', 'name', 'LupusChat'),
(92911, 77458, 'id', 'name', 'Pusat Penelitian Arkeologi Nasional'),
(92912, 77459, 'no_lang_code', 'name', 'Wearifi (United States)'),
(92913, 77460, 'en', 'name', 'Center for Urban Waters'),
(92914, 77461, 'en', 'name', 'Kerzhinski Nature Reserve'),
(92915, 77461, 'ru', 'name', 'ŠšŠµŃ€Š¶ŠµŠ½ŃŠŗŠøŠ¹ заповеГник'),
(92916, 77462, 'no_lang_code', 'name', 'Denssolutions (Netherlands)'),
(92917, 77463, 'no_lang_code', 'name', 'Heidelberg Pharma (Germany)'),
(92918, 77464, 'en', 'name', 'Kaniv Nature Reserve'),
(92919, 77464, 'uk', 'name', 'ŠšŠ°Š½Ń–Š²ŃŃŒŠŗŠøŠ¹ прироГний заповіГник'),
(92920, 77465, 'en', 'name', 'Biomedical Research and Innovation Institute of Cadiz'),
(92921, 77465, 'es', 'name', 'Instituto de Investigación e Innovación Biomédica de CÔdiz'),
(92922, 77466, 'en', 'name', 'Elman Retina Group'),
(92923, 77467, 'fr', 'name', 'DƩpistage NƩonatal Ontario'),
(92924, 77467, 'en', 'name', 'Newborn Screening Ontario'),
(92925, 77468, 'en', 'name', 'Global Fishing Watch'),
(92926, 77469, 'no_lang_code', 'name', 'Water Technology (Australia)'),
(92927, 77470, 'en', 'name', 'Noosa Hospital'),
(92928, 77471, 'no_lang_code', 'name', 'Intelligify (United Kingdom)'),
(92929, 77472, 'en', 'name', 'Gordon Center for Medical Imaging'),
(92930, 77473, 'no_lang_code', 'name', 'Orlovskoye Polesye National Park'),
(92931, 77473, 'ru', 'name', 'ŠžŃ€Š»Š¾Š²ŃŠŗŠ¾Šµ Полесье'),
(92932, 77474, 'no_lang_code', 'name', 'BioBridges (United States)'),
(92933, 77475, 'en', 'name', 'Rotterdam Stroke Service'),
(92934, 77476, 'en', 'name', 'Pasvik Nature Reserve'),
(92935, 77476, 'no', 'name', 'Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник "Пасвик"'),
(92936, 77477, 'no_lang_code', 'name', 'Febus Optics (France)'),
(92937, 77478, 'en', 'name', 'Stolby Nature Reserve'),
(92938, 77478, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник ā€œŠ”Ń‚Š¾Š»Š±Ń‹ā€'),
(92939, 77479, 'en', 'name', 'LifeDoc Health'),
(92940, 77480, 'no_lang_code', 'name', 'Refuge Biotechnologies (United States)'),
(92941, 77481, 'no_lang_code', 'name', 'ILF (Switzerland)'),
(92942, 77482, 'en', 'name', 'Testicular Cancer Commons'),
(92943, 77483, 'en', 'name', 'EUMETNET'),
(92944, 77484, 'no_lang_code', 'name', 'Transition Technologies (Poland)'),
(92945, 77485, 'fr', 'name', 'Groupe de Recherche sur le Psoriasis'),
(92946, 77486, 'en', 'name', 'Whyteman’s Brae Hospital'),
(92947, 77487, 'no_lang_code', 'name', 'Sound Agriculture (United States)'),
(92948, 77488, 'no_lang_code', 'name', 'Bruker (China)'),
(92949, 77489, 'no_lang_code', 'name', 'Veterinary Anaesthesia Services (Switzerland)'),
(92950, 77490, 'es', 'name', 'Research Institute Hospital 12 de Octubre'),
(92951, 77491, 'en', 'name', 'Niramaya Healthcare'),
(92952, 77491, 'hi', 'name', 'निरामय ą¤¹ą„‡ą¤²ą„ą¤„ą¤•ą„‡ą¤Æą¤°'),
(92953, 77492, 'en', 'name', 'Helen Keller International'),
(92954, 77493, 'en', 'name', 'Columbia VA Health Care System'),
(92955, 77494, 'en', 'name', 'The California Eye Institute'),
(92956, 77495, 'no_lang_code', 'name', 'Lava Therapeutics (Netherlands)'),
(92957, 77496, 'en', 'name', 'Slovak Organization for Space Activities'),
(92958, 77496, 'sk', 'name', 'SlovenskƔ OrganizƔcia pre Vesmƭrne Aktivity'),
(92959, 77497, 'no_lang_code', 'name', 'Tissue Dynamics (Israel)'),
(92960, 77498, 'no_lang_code', 'name', 'Pfizer (Switzerland)'),
(92961, 77499, 'en', 'name', 'Children’s Mercy Research Institute'),
(92962, 77500, 'en', 'name', 'Geoscience BC'),
(92963, 77501, 'en', 'name', 'Adobe Gastroenterology'),
(92964, 77502, 'no_lang_code', 'name', 'Biostatistical Consulting (United States)'),
(92965, 77503, 'no_lang_code', 'name', 'Cipher Gene (China)'),
(92966, 77504, 'no_lang_code', 'name', 'Uber AI (United States)'),
(92967, 77505, 'en', 'name', 'North American Butterfly Association'),
(92968, 77506, 'no_lang_code', 'name', 'Clover Biopharmaceuticals (China)'),
(92969, 77507, 'no_lang_code', 'name', 'Givaudan (Netherlands)'),
(92970, 77508, 'en', 'name', 'OMERACT Patient Research Partner Network'),
(92971, 77509, 'en', 'name', 'Epidemic Intelligence Service'),
(92972, 77510, 'no_lang_code', 'name', 'OWL (Spain)'),
(92973, 77511, 'en', 'name', 'Alliance for International Medical Action'),
(92974, 77512, 'no_lang_code', 'name', 'Dynamita (France)'),
(92975, 77513, 'en', 'name', 'Cyto Labs'),
(92976, 77514, 'en', 'name', 'Nizhne-Svirsky State Nature Reserve'),
(92977, 77514, 'ru', 'name', 'ŠŠøŠ¶Š½Šµ-Двирский Š³Š¾ŃŃƒŠ“арственный прироГный заповеГник'),
(92978, 77515, 'no_lang_code', 'name', 'Volcanic Basin Petroleum Research (Norway)'),
(92979, 77516, 'no_lang_code', 'name', 'Synthego (United States)'),
(92980, 77517, 'de', 'name', 'Rheumaliga Schweiz'),
(92981, 77518, 'no_lang_code', 'name', 'Biortus (China)'),
(92982, 77519, 'en', 'name', 'Worldwide Veterinary Service'),
(92983, 77520, 'no_lang_code', 'name', 'Fixstars Solutions (United States)'),
(92984, 77521, 'en', 'name', 'NEWhub'),
(92985, 77522, 'no_lang_code', 'name', 'Wren Therapeutics (United Kingdom)'),
(92986, 77523, 'no_lang_code', 'name', 'Medpharmgene (Canada)'),
(92987, 77524, 'es', 'name', 'Hospital Dr Arturo OƱativia'),
(92988, 77525, 'no_lang_code', 'name', 'Novametrics (United Kingdom)'),
(92989, 77526, 'en', 'name', 'Soweto CTC'),
(92990, 77527, 'en', 'name', 'The National Databank for Rheumatic Diseases'),
(92991, 77528, 'en', 'name', 'Beit Rivka Geriatric Medical Center'),
(92992, 77528, 'he', 'name', '×ž×Ø×›×– רפואי ×’×Ø×™××˜×Ø×™ בית רבקה'),
(92993, 77529, 'no_lang_code', 'name', 'AlvƩole (France)'),
(92994, 77530, 'sr', 'name', 'Institut za Javno Zdravlje Srbije'),
(92995, 77530, 'en', 'name', 'Institute of Public Health of Serbia'),
(92996, 77531, 'en', 'name', 'Chiba Convention Bureau and International Center'),
(92997, 77531, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ć”ć°å›½éš›ć‚³ćƒ³ćƒ™ćƒ³ć‚·ćƒ§ćƒ³ćƒ“ćƒ„ćƒ¼ćƒ­ćƒ¼'),
(92998, 77532, 'en', 'name', 'Medical Plus'),
(92999, 77533, 'en', 'name', 'Allergy Clinic of Tulsa'),
(93000, 77534, 'en', 'name', 'Victorian Cancer Biobank'),
(93001, 77535, 'en', 'name', 'Republican Center for Healthcare Development'),
(93002, 77535, 'kk', 'name', 'Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š»Ń‹Ņ› Š“ŠµŠ½ŃŠ°ŃƒŠ»Ń‹Ņ› ŃŠ°Ņ›Ń‚Š°Ńƒ орталығы'),
(93003, 77536, 'en', 'name', 'United in Health'),
(93004, 77537, 'no_lang_code', 'name', 'Sandfire (Australia)'),
(93005, 77538, 'no_lang_code', 'name', 'Kantar Health (Brazil)'),
(93006, 77539, 'no_lang_code', 'name', 'Sahodaran'),
(93007, 77539, 'ta', 'name', 'ą®šą®¹ąÆ‹ą®¤ą®°ą®©ąÆ'),
(93008, 77540, 'en', 'name', 'Medanta The Medicity'),
(93009, 77541, 'de', 'name', 'Schmerzmedizin Berlin'),
(93010, 77542, 'no_lang_code', 'name', 'Afflux Consulting (Australia)'),
(93011, 77543, 'no_lang_code', 'name', 'Oxford Nanoimaging (United Kingdom)'),
(93012, 77544, 'en', 'name', 'BreastScreen WA'),
(93013, 77545, 'en', 'name', 'Zhuhai Fudan Innovation Research Institute'),
(93014, 77545, 'zh', 'name', 'ē ęµ·å¤ę—¦åˆ›ę–°ē ”ē©¶é™¢'),
(93015, 77546, 'it', 'name', 'Azienda Socio Sanitaria Territoriale Lariana'),
(93016, 77547, 'no_lang_code', 'name', 'PQ Corporation (Canada)'),
(93017, 77548, 'no_lang_code', 'name', 'Inatura'),
(93018, 77548, 'de', 'name', 'inatura - Erlebnis Naturschau'),
(93019, 77549, 'en', 'name', 'Department of Education - Division of Bataan'),
(93020, 77550, 'no_lang_code', 'name', 'Chifeng Municipal Hospital'),
(93021, 77550, 'zh', 'name', 'čµ¤å³°åø‚åŒ»é™¢'),
(93022, 77551, 'en', 'name', 'Quantum Science Center'),
(93023, 77552, 'no_lang_code', 'name', 'Invixium (Canada)'),
(93024, 77553, 'no_lang_code', 'name', 'AZTI'),
(93025, 77554, 'no_lang_code', 'name', 'USP Technologies (United Kingdom)'),
(93026, 77555, 'it', 'name', 'Associazione Meteo Professionisti'),
(93027, 77556, 'de', 'name', 'Sonnenhalde (Switzerland)'),
(93028, 77557, 'en', 'name', 'Kostomuksha Nature Reserve'),
(93029, 77557, 'ru', 'name', 'ŠšŠ¾ŃŃ‚Š¾Š¼ŃƒŠŗŃˆŃŠŗŠøŠ¹ заповеГник'),
(93030, 77558, 'no_lang_code', 'name', 'Spital Thurgau (Switzerland)'),
(93031, 77559, 'en', 'name', 'Brazilian Research in Intensive Care Network'),
(93032, 77559, 'pt', 'name', 'Rede Brasileira de Pesquisa em Terapia Intensiva'),
(93033, 77560, 'en', 'name', 'Provincial Government of Sarangani'),
(93034, 77561, 'en', 'name', 'Swiss Data Science Center'),
(93035, 77562, 'en', 'name', 'State Institute for Drug Control'),
(93036, 77562, 'sk', 'name', 'Å tĆ”tny Ćŗstav pre kontrolu liečiv'),
(93037, 77563, 'no_lang_code', 'name', 'Ohana Biosciences (United States)'),
(93038, 77564, 'en', 'name', 'COVID-19 Genomics UK Consortium'),
(93039, 77565, 'en', 'name', 'Vikram Hospital'),
(93040, 77566, 'no_lang_code', 'name', 'Docbot (United States)'),
(93041, 77567, 'no_lang_code', 'name', 'Xiamen Tungsten (China)'),
(93042, 77568, 'no_lang_code', 'name', 'Open Ephys Production Site (Portugal)'),
(93043, 77569, 'no_lang_code', 'name', 'Estonian Environmental Research Center (Estonia)'),
(93044, 77570, 'vi', 'name', 'CỄc Y tế Dự phòng'),
(93045, 77570, 'en', 'name', 'General Department of Preventive Medicine'),
(93046, 77571, 'en', 'name', 'Associated Retinal Consultants'),
(93047, 77572, 'pt', 'name', 'Fundação Hospitalar de Hematologia e Hemoterapia do Amazonas'),
(93048, 77573, 'en', 'name', 'Astrakhan Biosphere Nature Reserve'),
(93049, 77574, 'en', 'name', 'Primary HealthCare'),
(93050, 77575, 'en', 'name', 'Sustainable Sciences Institute'),
(93051, 77576, 'en', 'name', 'Vishera Nature Reserve'),
(93052, 77576, 'ru', 'name', 'Š’ŠøŃˆŠµŃ€ŃŠŗŠøŠ¹ заповеГник'),
(93053, 77577, 'no_lang_code', 'name', 'Apexigen (United States)'),
(93054, 77578, 'en', 'name', 'Hyderabad Rheumatology Center'),
(93055, 77579, 'en', 'name', 'St Vincent’s Private Hospital Sydney'),
(93056, 77580, 'no_lang_code', 'name', 'Color (United States)'),
(93057, 77581, 'no_lang_code', 'name', 'Gryaab (Sweden)'),
(93058, 77582, 'no_lang_code', 'name', 'Micro Systems Engineering (United States)'),
(93059, 77583, 'en', 'name', 'Ministry of Health'),
(93060, 77584, 'en', 'name', 'United Nations Children''s Fund Cameroon'),
(93061, 77585, 'en', 'name', 'Durham VA Health Care System'),
(93062, 77586, 'en', 'name', 'State Healthcare Institution "Regional Clinical Oncological Dispensary"'),
(93063, 77587, 'no_lang_code', 'name', 'Emodo (United States)'),
(93064, 77588, 'en', 'name', 'Central Forest Nature Reserve'),
(93065, 77588, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Лесной заповеГник'),
(93066, 77589, 'no_lang_code', 'name', 'Studsvik (Germany)'),
(93067, 77590, 'no_lang_code', 'name', 'Curonz (New Zealand)'),
(93068, 77591, 'en', 'name', 'Park Terrace Care Center'),
(93069, 77592, 'en', 'name', 'St. Anne''s Health Centre'),
(93070, 77593, 'en', 'name', 'Department of Ecology and Environment of Hainan Province'),
(93071, 77593, 'zh', 'name', 'ęµ·å—ēœē”Ÿę€ēŽÆå¢ƒåŽ…'),
(93072, 77594, 'fr', 'name', 'Ministère de la Santé et de l''Hygiène Publique'),
(93073, 77595, 'en', 'name', 'Institute for Soldier Nanotechnologies'),
(93074, 77596, 'en', 'name', 'United States Trade and Development Agency'),
(93075, 77597, 'en', 'name', 'National Autonomous University of Nicaragua-León'),
(93076, 77597, 'es', 'name', 'Universidad Nacional Autónoma de Nicaragua-León'),
(93077, 77598, 'en', 'name', 'Yanet Health College'),
(93078, 77599, 'en', 'name', 'National Institute of Standards'),
(93079, 77599, 'ar', 'name', 'المعهد Ų§Ł„Ł‚ŁˆŁ…Ł‰ Ł„Ł„Ł‚ŁŠŲ§Ų³ ŁˆŲ§Ł„Ł…Ų¹Ų§ŁŠŲ±Ų©'),
(93080, 77600, 'en', 'name', 'Software Engineering Institute'),
(93081, 77601, 'no_lang_code', 'name', 'Ion Technology Center (Japan)'),
(93082, 77601, 'ja', 'name', 'ć‚¤ć‚Ŗćƒ³ćƒ†ć‚ÆćƒŽć‚»ćƒ³ć‚æćƒ¼'),
(93083, 77602, 'en', 'name', 'Wildlife Conservation Society Congo'),
(93084, 77603, 'no_lang_code', 'name', 'Hanjin Heavy Industries (South Korea)'),
(93085, 77603, 'ko', 'name', 'ķ•œģ§„ģ¤‘ź³µģ—…'),
(93086, 77604, 'pt', 'name', 'Laboratório DNA Center'),
(93087, 77605, 'en', 'name', 'Lincoln University College'),
(93088, 77606, 'no_lang_code', 'name', 'Nova Measuring Instruments (United States)'),
(93089, 77607, 'en', 'name', 'Middle East Liver Disease Center'),
(93090, 77607, 'fa', 'name', 'مرکز ŲØŪŒŁ…Ų§Ų±ŪŒŁ‡Ų§ŪŒ کبدی Ų®Ų§ŁˆŲ±Ł…ŪŒŲ§Ł†Ł‡'),
(93091, 77608, 'no_lang_code', 'name', 'MoTeC (Australia)'),
(93092, 77609, 'no_lang_code', 'name', 'Asia Centre'),
(93093, 77610, 'en', 'name', 'University of Customs and Finance'),
(93094, 77610, 'uk', 'name', 'Університет митної справи та фінансів'),
(93095, 77611, 'en', 'name', 'Zhengzhou Institute of Emerging Industrial Technology'),
(93096, 77611, 'zh', 'name', 'éƒ‘å·žäø­ē§‘ę–°å…“äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(93097, 77612, 'en', 'name', 'Institute of Information and Computational Technologies'),
(93098, 77612, 'kk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информационных Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… технологий'),
(93099, 77613, 'en', 'name', 'Ibrahim Cardiac Hospital & Research Institute'),
(93100, 77613, 'bn', 'name', 'ą¦‡ą¦¬ą§ą¦°ą¦¾ą¦¹ą¦æą¦® ą¦•ą¦¾ą¦°ą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦• হসপিটাল ą¦ą¦Øą§ą¦” ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(93101, 77614, 'en', 'name', 'Biomedical Research Foundation'),
(93102, 77615, 'en', 'name', 'Institute of Chemistry of New Materials of the National Academy of Sciences of Belarus'),
(93103, 77615, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии новых материалов ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(93104, 77616, 'en', 'name', 'Centre for Policy Studies'),
(93105, 77617, 'id', 'name', 'Universitas PGRI Semarang'),
(93106, 77618, 'en', 'name', 'Lysosomal and Rare Disorders Research and Treatment Center'),
(93107, 77619, 'en', 'name', 'Punjab Medical Center'),
(93108, 77620, 'en', 'name', 'All-Med'),
(93109, 77621, 'de', 'name', 'Rostocker Zentrum zur Erforschung des Demografischen Wandels'),
(93110, 77622, 'en', 'name', 'Oxford Centre for Mission Studies'),
(93111, 77623, 'en', 'name', 'Institute for Diagnosis and Animal Health'),
(93112, 77623, 'ro', 'name', 'Institutul de Diagnostic şi Sănătate Animală'),
(93113, 77624, 'en', 'name', 'Vivekananda Global University'),
(93114, 77625, 'en', 'name', 'Smart Data Analysis Systems Group'),
(93115, 77626, 'ro', 'name', 'Institutul de Urgenţă pentru Boli Cardiovasculare "Prof.Dr. C.C. Iliescu"'),
(93116, 77627, 'en', 'name', 'Occupational Cancer Research Centre'),
(93117, 77628, 'es', 'name', 'Instituto de Medicina Tropical'),
(93118, 77629, 'en', 'name', 'Fulbright University Vietnam'),
(93119, 77629, 'vi', 'name', 'ĐẔi hį»c Fulbright Việt Nam'),
(93120, 77630, 'en', 'name', 'Beijing Municipal Ecological and Environmental Monitoring Center'),
(93121, 77630, 'zh', 'name', 'åŒ—äŗ¬åø‚ēŽÆå¢ƒäæęŠ¤ē›‘ęµ‹äø­åæƒ'),
(93122, 77631, 'en', 'name', 'European Forest Institute'),
(93123, 77632, 'en', 'name', 'I.S. Lupinovich Belarus Agricultural Library'),
(93124, 77632, 'be', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń библиотека им. И. Š”. Š›ŃƒŠæŠøŠ½Š¾Š²ŠøŃ‡Š°'),
(93125, 77633, 'id', 'name', 'Institut Bisnis dan Teknologi Pelita Indonesia'),
(93126, 77634, 'en', 'name', 'National Scientific Agricultural Library of the National Academy of Agrarian Sciences of Ukraine'),
(93127, 77634, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° наукова ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ŃŠæŠ¾Š“Š°Ń€ŃŃŒŠŗŠ° бібліотека ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(93128, 77635, 'en', 'name', 'Tamil Virtual Academy'),
(93129, 77635, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆ ą®‡ą®£ąÆˆą®Æą®•ąÆ ą®•ą®²ąÆą®µą®æą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(93130, 77636, 'en', 'name', 'Heilongjiang University of Technology'),
(93131, 77636, 'zh', 'name', 'é»‘é¾™ę±Ÿå·„äøšå­¦é™¢'),
(93132, 77637, 'en', 'name', 'Andrija Stampar Teaching Institute of Public Health'),
(93133, 77637, 'hr', 'name', 'Nastavni Zavod za Javno Zdravstvo "Dr. Andrija Å tampar"'),
(93134, 77638, 'no_lang_code', 'name', 'Prolepsis Institute'),
(93135, 77638, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Προληπτικής Περιβαλλοντικής & Ī•ĻĪ³Ī±ĻƒĪ¹Ī±ĪŗĪ®Ļ‚ Ιατρικής'),
(93136, 77639, 'en', 'name', 'Nagpur Institute of Technology'),
(93137, 77640, 'en', 'name', 'Ankara Spine Center'),
(93138, 77641, 'en', 'name', 'Eastern Finland Laboratory Center'),
(93139, 77641, 'fi', 'name', 'ItƤ-Suomen laboratoriokeskuksen liikelaitoskuntayhtymƤ'),
(93140, 77642, 'en', 'name', 'Amhara National Regional State Public Health Institute'),
(93141, 77642, 'am', 'name', 'į‰ įŠ įˆ›įˆ« į‰„įˆ”įˆ«į‹Š įŠ­įˆįˆ‹į‹Š įˆ˜įŠ•įŒįˆµį‰µ į‹Øįˆ•į‰„įˆØį‰°įˆ°į‰„ įŒ¤įŠ“ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(93142, 77643, 'es', 'name', 'Laboratorios Ruiz'),
(93143, 77644, 'en', 'name', 'Key Laboratory for High Strength Lightweight Metallic Materials of Shandong Province'),
(93144, 77644, 'zh', 'name', 'å±±äøœēœč½»č“Øé«˜å¼ŗé‡‘å±žęę–™ēœēŗ§é‡ē‚¹å®žéŖŒå®¤'),
(93145, 77645, 'en', 'name', 'National Public Health Institute of Liberia'),
(93146, 77646, 'en', 'name', 'Academy of Medical Sciences of Bosnia and Herzegovina'),
(93147, 77647, 'en', 'name', 'Ivan Kozhedub Kharkiv National Air Force University'),
(93148, 77647, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŠ¾Š²Ń–Ń‚Ń€ŃŠ½ŠøŃ… сил імені Івана КожеГуба'),
(93149, 77648, 'en', 'name', 'Zhejiang Academy of Social Sciences'),
(93150, 77648, 'zh', 'name', 'ęµ™ę±Ÿēœē¤¾ä¼šē§‘å­¦é™¢'),
(93151, 77649, 'en', 'name', 'Wits University Donald Gordon Medical Centre'),
(93152, 77650, 'en', 'name', 'Hwa Chong Institution'),
(93153, 77650, 'ta', 'name', 'ą®¹ąÆą®µą®¾ ą®šą®¾ą®™ąÆ ą®Ŗą®³ąÆą®³ą®æ'),
(93154, 77650, 'zh', 'name', 'ę–°åŠ å”åŽä¾Øäø­å­¦'),
(93155, 77651, 'en', 'name', 'Institute of Experimental Botany named after V.F. Kuprevich of the National Academy of Sciences of Belarus'),
(93156, 77651, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ ботаники им. Š’. Ф. ŠšŃƒŠæŃ€ŠµŠ²ŠøŃ‡Š° ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(93157, 77652, 'de', 'name', 'Institut für Bewusstseins- und Traumforschung');
INSERT INTO `ror_settings` VALUES
(93158, 77653, 'en', 'name', 'Indian Institute of Management Udaipur'),
(93159, 77653, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‰ą¤¦ą¤Æą¤Ŗą„ą¤°'),
(93160, 77654, 'en', 'name', 'Parkview Medical Center'),
(93161, 77655, 'en', 'name', 'Himalayan Environment Research Institute'),
(93162, 77655, 'ne', 'name', 'हिमालय ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤°ą¤£ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(93163, 77656, 'no_lang_code', 'name', 'MatTek (Slovakia)'),
(93164, 77657, 'en', 'name', 'Center of Applied Ecology & Sustainability'),
(93165, 77658, 'en', 'name', 'Institute of Natural and Technical Systems'),
(93166, 77659, 'en', 'name', 'South China Institute of Collaborative Innovation'),
(93167, 77659, 'zh', 'name', 'åŽå—ååŒåˆ›ę–°ē ”ē©¶é™¢'),
(93168, 77660, 'en', 'name', 'International Shariʽah Research Academy for Islamic Finance'),
(93169, 77661, 'en', 'name', 'Institute of Environmental Economics and Sustainable Development of the National Academy of Sciences of Ukraine'),
(93170, 77661, 'ru', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіки ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń та сталого Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України»'),
(93171, 77662, 'en', 'name', 'Vancouver Spine Surgery Institute'),
(93172, 77663, 'ro', 'name', 'Institutul pentru Studierea Problemelor Minorităţilor Naţionale'),
(93173, 77663, 'hu', 'name', 'Nemzeti Kisebbségkutató Intézet'),
(93174, 77663, 'en', 'name', 'Romanian Institute For Research on National Minorities'),
(93175, 77664, 'fr', 'name', 'Institut International d''Agriculture Tropicale'),
(93176, 77664, 'en', 'name', 'International Institute of Tropical Agriculture'),
(93177, 77665, 'en', 'name', 'Outcomes Research Consortium'),
(93178, 77666, 'en', 'name', 'Natchaug Hospital'),
(93179, 77667, 'en', 'name', 'Skin Health Institute'),
(93180, 77668, 'en', 'name', 'Centre for Research in Intensive Care'),
(93181, 77669, 'en', 'name', 'Dermatology Research and Education Foundation'),
(93182, 77670, 'en', 'name', 'Hospital and Rehabilitation for Disabled Children'),
(93183, 77671, 'en', 'name', 'St Philip''s Centre'),
(93184, 77672, 'en', 'name', 'Homeopathy Research Institute'),
(93185, 77673, 'en', 'name', 'International Institute of Tropical Agriculture'),
(93186, 77673, 'ar', 'name', 'المعهد Ų§Ł„ŲÆŁˆŁ„ŁŠ للزراعة Ų§Ł„Ų§Ų³ŲŖŁˆŲ§Ų¦ŁŠŲ©'),
(93187, 77674, 'no_lang_code', 'name', 'Mediprobe Research (Canada)'),
(93188, 77675, 'en', 'name', 'Computer Algorithms for Medicine'),
(93189, 77676, 'en', 'name', 'Academy for Scientific Investigative Training'),
(93190, 77677, 'en', 'name', 'International Water Management Institute'),
(93191, 77678, 'en', 'name', 'Minuchin Center for the Family'),
(93192, 77679, 'en', 'name', 'Janbazan Medical and Engineering Research Center'),
(93193, 77679, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ł…Ł‡Ł†ŲÆŲ³ŪŒ و Ų¹Ł„ŁˆŁ… پزؓکی جانبازان'),
(93194, 77680, 'en', 'name', 'Comprehensive Cancer Center Erlangen'),
(93195, 77681, 'no_lang_code', 'name', 'Institute of Reactor Materials (Russia)'),
(93196, 77681, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š Š•ŠŠšŠ¢ŠžŠ ŠŠ«Š„ ŠœŠŠ¢Š•Š Š˜ŠŠ›ŠžŠ’'),
(93197, 77682, 'en', 'name', 'Center for Special Minimally Invasive and Robotic Surgery'),
(93198, 77683, 'en', 'name', 'Central Botanical Garden'),
(93199, 77683, 'be', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ботанический саГ'),
(93200, 77684, 'en', 'name', 'The Gottman Institute'),
(93201, 77685, 'en', 'name', 'Institute of Policy Studies of Sri Lanka'),
(93202, 77686, 'en', 'name', 'SmartCity.institute'),
(93203, 77687, 'en', 'name', 'Indian Institute of Packaging'),
(93204, 77687, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ˆą¤•ą„‡ą¤œą¤æą¤‚ą¤— ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(93205, 77688, 'no_lang_code', 'name', 'Monasterium Laboratory Skin & Hair Research Solutions (Germany)'),
(93206, 77689, 'no_lang_code', 'name', 'Velocity Clinical Research (United States)'),
(93207, 77690, 'no_lang_code', 'name', 'Genecast (China)'),
(93208, 77690, 'zh', 'name', 'č‡»å’Œē§‘ęŠ€'),
(93209, 77691, 'en', 'name', 'Urology Cancer Center and GU Research Network'),
(93210, 77692, 'en', 'name', 'Momentum Research'),
(93211, 77693, 'no_lang_code', 'name', 'Institute for Clinical Pharmacodynamics (United States)'),
(93212, 77694, 'en', 'name', 'Institute of General & Endovascular Neurosurgery'),
(93213, 77695, 'de', 'name', 'Institut für Beschäftigung und Employability'),
(93214, 77696, 'en', 'name', 'Jeonbuk Agricultural Research & Extension Services'),
(93215, 77696, 'ko', 'name', 'ģ „ė¼ė¶ė„ė†ģ—…źø°ģˆ ģ›'),
(93216, 77697, 'en', 'name', 'Regenerative Sciences Institute'),
(93217, 77698, 'en', 'name', 'Bangladesh Wheat and Maize Research Institute'),
(93218, 77698, 'bn', 'name', 'বাংলাদেশ গম ও ą¦­ą§ą¦Ÿą§ą¦Ÿą¦¾ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(93219, 77699, 'en', 'name', 'Advocate Heart Institute'),
(93220, 77700, 'en', 'name', 'ICAR-Indian Institute of Agricultural Biotechnology'),
(93221, 77700, 'hi', 'name', 'भा.ą¤•ą„ƒ.ą¤…ą¤Øą„.प. ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤œą„ˆą¤µą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(93222, 77701, 'en', 'name', 'Middlesex University Dubai'),
(93223, 77701, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŁŠŲÆŁ„Ų³ŁƒŲ³ دبي'),
(93224, 77702, 'en', 'name', 'Center of Excellence on Hazardous Substance Management'),
(93225, 77703, 'en', 'name', 'Fortune Institute of International Business'),
(93226, 77704, 'en', 'name', 'Age Institute'),
(93227, 77704, 'fi', 'name', 'IkƤinstituutin'),
(93228, 77705, 'en', 'name', 'New England Center for OCD and Anxiety'),
(93229, 77706, 'pt', 'name', 'Centro UniversitƔrio do Distrito Federal'),
(93230, 77707, 'en', 'name', 'Moscow Academy of the Investigative Committee of the Russian Federation'),
(93231, 77707, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ДлеГственного ŠšŠ¾Š¼ŠøŃ‚ета Российской ФеГерации'),
(93232, 77708, 'en', 'name', 'Foundation for Clinical and Applied Cancer Research'),
(93233, 77709, 'sv', 'name', 'Spine Center Gƶteborg'),
(93234, 77710, 'en', 'name', 'Federal State Budgetary Institution of Science "Scientific and Technological Center of Unique Instrumentation" of the Russian Academy of Sciences'),
(93235, 77710, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠŠ°ŃƒŃ‡Š½Š¾-технологический центр уникального ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ Российской акаГемии наук'),
(93236, 77711, 'en', 'name', 'National Engineering Research Center of Human Stem Cells'),
(93237, 77711, 'zh', 'name', 'äŗŗē±»å¹²ē»†čƒžå›½å®¶å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(93238, 77712, 'en', 'name', 'Institute of Transport Science and Technology'),
(93239, 77712, 'vi', 'name', 'Viện Khoa hį»c vĆ  CĆ“ng nghệ Giao thĆ“ng vįŗ­n tįŗ£i'),
(93240, 77713, 'en', 'name', 'Materials Research Center'),
(93241, 77714, 'en', 'name', 'Ukrainian Research Institute of Transport Medicine'),
(93242, 77714, 'uk', 'name', 'Украинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицины транспорта'),
(93243, 77715, 'en', 'name', 'Jeffrey Modell Foundation'),
(93244, 77716, 'en', 'name', 'Sichuan Provincial Library'),
(93245, 77716, 'zh', 'name', 'å››å·ēœå›¾ä¹¦é¦†'),
(93246, 77717, 'en', 'name', 'Pain Management Centers Of America'),
(93247, 77718, 'en', 'name', 'Khazanah Research Institute'),
(93248, 77719, 'es', 'name', 'IREC'),
(93249, 77720, 'de', 'name', 'Institut für Pharmaökonomische Forschung'),
(93250, 77720, 'en', 'name', 'Institute for Pharmaeconomic Research'),
(93251, 77721, 'no_lang_code', 'name', 'Cedars-Sinai Smidt Heart Institute'),
(93252, 77722, 'no_lang_code', 'name', 'Verlab (Bosnia and Herzegovina)'),
(93253, 77723, 'en', 'name', 'Institute for Diagnostic Imaging and Research of the Skin and Soft Tissues'),
(93254, 77723, 'es', 'name', 'Instituto de Investigacion y Diagnostico por Imagenes en Piel y Tejidos Blandos'),
(93255, 77724, 'en', 'name', 'Gerash University of Medical Sciences'),
(93256, 77725, 'en', 'name', 'Campbell Collaboration'),
(93257, 77726, 'en', 'name', 'ASTRO-3D'),
(93258, 77727, 'es', 'name', 'Fundación Biomédica Galicia Sur'),
(93259, 77727, 'en', 'name', 'Galicia Sur Biomedical Foundation'),
(93260, 77728, 'fr', 'name', 'Laboratoire Recherche Informatique Maisonneuve'),
(93261, 77729, 'en', 'name', 'General Practitioners Research Institute'),
(93262, 77730, 'no_lang_code', 'name', 'EVERSANA (Canada)'),
(93263, 77731, 'en', 'name', 'Indonesia Defense University'),
(93264, 77731, 'id', 'name', 'Universitas Pertahanan Indonesia'),
(93265, 77732, 'de', 'name', 'Epilepsiezentrum Kleinwachau Gemeinnützige'),
(93266, 77733, 'en', 'name', 'New Hampshire NeuroSpine Institute'),
(93267, 77734, 'no_lang_code', 'name', 'Tiande (China)'),
(93268, 77734, 'zh', 'name', 'å¤©å¾·ē§‘ęŠ€'),
(93269, 77735, 'en', 'name', 'Migration Institute of Finland'),
(93270, 77735, 'fi', 'name', 'Siirtolaisuusinstituutti'),
(93271, 77736, 'en', 'name', 'Marine Design & Research Institute of China'),
(93272, 77737, 'no_lang_code', 'name', 'CISI IngƩnierie (France)'),
(93273, 77738, 'en', 'name', 'Federal State Budgetary Scientific Institution Research Institute of Medical Primatology'),
(93274, 77739, 'en', 'name', 'International Potato Center'),
(93275, 77740, 'en', 'name', 'Institute of Molecular Pathology and Pathomorphology'),
(93276, 77740, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ патологии Šø патоморфологии'),
(93277, 77741, 'en', 'name', 'Institute for Physics'),
(93278, 77742, 'en', 'name', 'African Governance and Development Institute'),
(93279, 77743, 'en', 'name', 'Advanced Technologies Application Center'),
(93280, 77744, 'hu', 'name', 'Montavid Termodinamikai Kutatócsoport'),
(93281, 77744, 'en', 'name', 'Montavid Thermodynamic Research Group'),
(93282, 77745, 'en', 'name', 'Institute for Clinical and Economic Review'),
(93283, 77746, 'en', 'name', 'Military Academy of the Republic of Belarus'),
(93284, 77746, 'be', 'name', 'Š’Š°ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(93285, 77746, 'ru', 'name', 'Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(93286, 77747, 'en', 'name', 'Institute of Legislation and Legal Information of the Republic of Kazakhstan'),
(93287, 77748, 'no_lang_code', 'name', 'Health Economics and Outcomes Research (United Kingdom)'),
(93288, 77749, 'en', 'name', 'Geisinger Neuroscience Institute'),
(93289, 77750, 'en', 'name', 'International Centre for Research on the Environment and the Economy'),
(93290, 77751, 'en', 'name', 'Institute of Biochemistry of Biologically Active Compounds of the National Academy of Sciences of Belarus'),
(93291, 77751, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии биологически активных соеГинений ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(93292, 77752, 'vi', 'name', 'NgĆ¢n hĆ ng NhĆ  nước Việt Nam'),
(93293, 77752, 'en', 'name', 'The State Bank of Vietnam'),
(93294, 77753, 'it', 'name', 'Centro Universitario Internazionale'),
(93295, 77754, 'en', 'name', 'Indian Institute of Public Administration'),
(93296, 77754, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤²ą„‹ą¤• ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤øą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(93297, 77755, 'en', 'name', 'Federal State Budgetary Institution of Science Federal Scientific Center "Vladikavkaz Scientific Center of the Russian Academy of Sciences"'),
(93298, 77755, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр «ВлаГикавказский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук»'),
(93299, 77756, 'en', 'name', 'Genomic and Immunotherapy Medical Institute'),
(93300, 77757, 'no_lang_code', 'name', 'Shanghai Centennial Scientific (China)'),
(93301, 77757, 'zh', 'name', 'äøŠęµ·ē››ē‰¹å°¼åŒ»čÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(93302, 77758, 'en', 'name', 'Nagoya Heart Center'),
(93303, 77758, 'ja', 'name', 'åå¤å±‹ćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(93304, 77759, 'en', 'name', 'International Institute of Tropical Agriculture'),
(93305, 77760, 'en', 'name', 'George & Fay Yee Centre for Healthcare Innovation'),
(93306, 77761, 'en', 'name', 'Millennium Initiative for Collaborative Research on Bacterial Resistance'),
(93307, 77762, 'es', 'name', 'Universidad Nacional de Concepción'),
(93308, 77763, 'en', 'name', 'Academy of Family Physicians of India'),
(93309, 77764, 'en', 'name', 'Federal Neurosurgical Center Novosibirsk'),
(93310, 77764, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ центр Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(93311, 77765, 'no', 'name', 'Unicare'),
(93312, 77766, 'en', 'name', 'Isfahan Fertility and Infertility Center'),
(93313, 77766, 'fa', 'name', 'مرکز باروری و Ł†Ų§ŲØŲ§Ų±ŁˆŲ±ŪŒ اصفهان'),
(93314, 77767, 'en', 'name', 'Wellcome Trust Liverpool Glasgow Centre for Global Health Research'),
(93315, 77768, 'en', 'name', 'Institute of Agricultural Economics Belgrade'),
(93316, 77768, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за економику пољопривреГе БеограГ'),
(93317, 77769, 'en', 'name', 'Laboratory Krone'),
(93318, 77770, 'en', 'name', 'The Mining, Geological & Metallurgical Insititute of India'),
(93319, 77771, 'en', 'name', 'ART Reproductive Center'),
(93320, 77772, 'id', 'name', 'Universitas Islam Negeri Raden Intan Lampung'),
(93321, 77773, 'en', 'name', 'Weston A. Price Foundation'),
(93322, 77774, 'en', 'name', 'Toronto Dementia Research Alliance'),
(93323, 77775, 'en', 'name', 'National Centre for Pharmacoeconomics'),
(93324, 77776, 'en', 'name', 'Multi-Robot Systems Research Group'),
(93325, 77777, 'en', 'name', 'BioMed X Institute'),
(93326, 77778, 'en', 'name', 'Vladivostok Branch of the Russian Customs Academy'),
(93327, 77778, 'ru', 'name', 'ВлаГивостокский филиал Российской таможенной акаГемии'),
(93328, 77779, 'en', 'name', 'Institute of International Politics and Economics'),
(93329, 77779, 'sr', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ЗА ŠœŠ•Š‚Š£ŠŠŠ ŠžŠ”ŠŠ£ ŠŸŠžŠ›Š˜Š¢Š˜ŠšŠ£ И ŠŸŠ Š˜Š’Š Š•Š”Š£'),
(93330, 77780, 'en', 'name', 'Beijing Satellite Navigation Center'),
(93331, 77780, 'zh', 'name', 'åŒ—äŗ¬å«ę˜ŸåÆ¼čˆŖäø­åæƒē‰ˆęƒę‰€ęœ‰'),
(93332, 77781, 'en', 'name', 'Centers for Disease Control and Prevention'),
(93333, 77782, 'en', 'name', 'Collaborative Care Systems Finland'),
(93334, 77783, 'en', 'name', 'Institute of Transportation and Logistic Trisakti'),
(93335, 77784, 'no_lang_code', 'name', 'ASRO (Finland)'),
(93336, 77785, 'es', 'name', 'Instituto Nacional de Electricidad y EnergĆ­as Limpias'),
(93337, 77786, 'en', 'name', 'Institute of Genetics and Cytology of the National Academy of Sciences of Belarus'),
(93338, 77786, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ генетыкі і цыталогіі'),
(93339, 77787, 'en', 'name', 'David Hide Asthma and Allergy Research Centre'),
(93340, 77788, 'en', 'name', 'Beijing Aerospace Flight Control Center'),
(93341, 77788, 'zh', 'name', 'åŒ—äŗ¬čˆŖå¤©é£žč”ŒęŽ§åˆ¶äø­åæƒ'),
(93342, 77789, 'en', 'name', 'Christian Doppler Laboratory for Thermoelectricity'),
(93343, 77790, 'en', 'name', 'Heartland Cancer Research'),
(93344, 77791, 'en', 'name', 'Huawei German Research Center'),
(93345, 77792, 'en', 'name', 'Malawi Epidemiology and Intervention Research Unit'),
(93346, 77793, 'en', 'name', 'Mapi Research Trust'),
(93347, 77794, 'fr', 'name', 'Centre Pour le DƩveloppement des Vaccins-Mali'),
(93348, 77795, 'en', 'name', 'Myanmar Oxford Clinical Research Unit'),
(93349, 77796, 'en', 'name', 'Second Affiliated Hospital of Xinjiang Medical University'),
(93350, 77796, 'zh', 'name', 'ę–°ē–†åŒ»ē§‘å¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(93351, 77797, 'en', 'name', 'National Institute of Menthal Health, Neurology and Neurosurgery - NyĆ­rő Gyula Hospital'),
(93352, 77797, 'hu', 'name', 'OrszĆ”gos MentĆ”lis, IdeggyógyĆ”szati Ć©s IdegsebĆ©szeti IntĆ©zet - NyĆ­rő Gyula KórhĆ”z'),
(93353, 77798, 'en', 'name', 'Zhejiang University-University of Edinburgh Institute'),
(93354, 77798, 'zh', 'name', 'ęµ™ę±Ÿå¤§å­¦ēˆ±äøå ”å¤§å­¦č”åˆå­¦é™¢'),
(93355, 77799, 'fr', 'name', 'Institut National de SantƩ Publique'),
(93356, 77800, 'en', 'name', 'Academy of Engineering Sciences of Serbia'),
(93357, 77800, 'sr', 'name', 'АкаГемија ŠøŠ½Š¶ŠµŃšŠµŃ€ŃŠŗŠøŃ… наука Š”Ń€Š±ŠøŃ˜Šµ'),
(93358, 77801, 'en', 'name', 'Lao-Oxford-Mahosot Hospital-Wellcome Trust Research Unit'),
(93359, 77802, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ Giao thĆ“ng Vįŗ­n tįŗ£i'),
(93360, 77802, 'en', 'name', 'University Of Transport Technology'),
(93361, 77803, 'en', 'name', 'Shanghai Drug Administration'),
(93362, 77803, 'zh', 'name', 'äøŠęµ·åø‚čÆå“ē›‘ē£ē®”ē†å±€'),
(93363, 77804, 'en', 'name', 'Centre of Registers Vastra Gotaland'),
(93364, 77804, 'sv', 'name', 'Registercentrum VƤstra Gƶtaland'),
(93365, 77805, 'en', 'name', 'Boston Sports & Shoulder Center'),
(93366, 77806, 'en', 'name', 'Yuanmeng Precision Technology Research Institute'),
(93367, 77806, 'zh', 'name', 'ę·±åœ³åø‚åœ†ę¢¦ē²¾åÆ†ęŠ€ęœÆē ”ē©¶é™¢'),
(93368, 77807, 'fr', 'name', 'Institut SupƩrieur de Technologie MƩdicale'),
(93369, 77808, 'en', 'name', 'Institute of Sociology of the National Academy of Sciences of Belarus'),
(93370, 77808, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ социологии ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(93371, 77809, 'en', 'name', 'CARE Fertility'),
(93372, 77810, 'en', 'name', 'Willis-Knighton Cancer Center'),
(93373, 77811, 'id', 'name', 'Institut Kesehatan Medistra Lubuk Pakam'),
(93374, 77812, 'en', 'name', 'NextFlex'),
(93375, 77813, 'en', 'name', 'Cardiovascular Center Bethanien'),
(93376, 77814, 'no_lang_code', 'name', 'Infant'),
(93377, 77815, 'en', 'name', 'Anesthesiology and Surgical Oncology Research Group'),
(93378, 77816, 'en', 'name', 'National Guard Military Academy of Ukraine'),
(93379, 77816, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— гварГії України'),
(93380, 77817, 'en', 'name', 'Centers for Disease Control and Prevention'),
(93381, 77818, 'no_lang_code', 'name', 'e-Watchdog'),
(93382, 77819, 'en', 'name', 'Universal Academy'),
(93383, 77820, 'en', 'name', 'Levinson Medical Center for Learning Disabilities'),
(93384, 77821, 'en', 'name', 'Academy for Oral Implantology'),
(93385, 77821, 'de', 'name', 'Akademie für orale Implantologie'),
(93386, 77822, 'en', 'name', 'Church of Ireland Theological Institute'),
(93387, 77823, 'en', 'name', 'International Water Management Institute'),
(93388, 77824, 'en', 'name', 'Federal Scientific Center for Biological Systems and Agricultural Technologies of the Russian Academy of Sciences'),
(93389, 77824, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр биологических систем Šø агротехнологий Российской акаГемии наук»'),
(93390, 77825, 'fr', 'name', 'Institut de SantƩ et de SƩcuritƩ au Travail'),
(93391, 77825, 'ar', 'name', 'معهد الصحة و السلامة Ų§Ł„Ł…Ł‡Ł†ŁŠŲ© ŲØŲŖŁˆŁ†Ų³'),
(93392, 77826, 'no', 'name', 'CatoSenteret'),
(93393, 77827, 'de', 'name', 'Neurologisches Rehabilitationszentrum Quellenhof Bad Wildbad'),
(93394, 77828, 'en', 'name', 'Nephrology Center of Maryland'),
(93395, 77829, 'en', 'name', 'Hagyard Equine Medical Institute'),
(93396, 77830, 'en', 'name', 'AMPATH'),
(93397, 77831, 'no_lang_code', 'name', 'MantraCare'),
(93398, 77832, 'en', 'name', 'Johns Hopkins Center for Health Security'),
(93399, 77833, 'en', 'name', 'Biofuel Research Team'),
(93400, 77834, 'en', 'name', 'William Angliss Institute'),
(93401, 77835, 'en', 'name', 'The Institute of History of the National Academy of Sciences of Belarus'),
(93402, 77835, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(93403, 77836, 'id', 'name', 'Universitas PGRI Yogyakarta'),
(93404, 77837, 'es', 'name', 'Instituto de FilosofĆ­a y Ciencias de la Complejidad'),
(93405, 77838, 'es', 'name', 'Centro de Investigación para la Gestión Integrada del Riesgo de Desastres'),
(93406, 77838, 'en', 'name', 'Research Center for Integrated Disaster Risk Management'),
(93407, 77839, 'en', 'name', 'Sickle Cell Institute Chhattisgarh, Raipur'),
(93408, 77839, 'hi', 'name', 'सिकल ą¤øą„‡ą¤² ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼, ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(93409, 77840, 'id', 'name', 'Universitas Darussalam Gontor'),
(93410, 77840, 'en', 'name', 'University of Darussalam Gontor'),
(93411, 77841, 'en', 'name', 'National Institute of Nuclear Medicine & Allied Sciences'),
(93412, 77841, 'bn', 'name', 'ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦Øą¦æą¦‰ą¦•ą§ą¦²ą¦æą¦Æą¦¼ą¦¾ą¦° মেঔিসিন ą¦ą¦Øą§ą¦” ą¦…ą§ą¦Æą¦¾ą¦²ą¦¾ą¦Æą¦¼ą§‡ą¦” ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦øą§‡ą¦ø'),
(93413, 77842, 'en', 'name', 'IT Step University'),
(93414, 77842, 'uk', 'name', 'Вищий Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ заклаГ'),
(93415, 77843, 'en', 'name', 'Kazakh University Ways of Communications'),
(93416, 77844, 'en', 'name', 'Lahore Garrison University'),
(93417, 77844, 'ur', 'name', 'Ł„Ų§ŪŁˆŲ± ŚÆŪŒŲ±ŪŒŚ˜Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒā€Ž'),
(93418, 77845, 'no_lang_code', 'name', 'Applied Research (United States)'),
(93419, 77846, 'de', 'name', 'Institut für Managementkompetenz'),
(93420, 77847, 'en', 'name', 'Indian Institute of Information Technology Guwahati'),
(93421, 77847, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€'),
(93422, 77848, 'no_lang_code', 'name', 'Professor Wühr und Simmel Gesundheits MANAGEMENT Systeme (Germany)'),
(93423, 77849, 'pt', 'name', 'Centro de Reprodução Humana Prof. Franco Junior'),
(93424, 77850, 'en', 'name', 'Korea Institute for Animal Products Quality Evaluation'),
(93425, 77850, 'ko', 'name', 'ģ¶•ģ‚°ė¬¼ķ’ˆģ§ˆķ‰ź°€ģ›'),
(93426, 77851, 'en', 'name', 'California Perinatal Quality Care Collaborative'),
(93427, 77852, 'no_lang_code', 'name', 'ABB (India)'),
(93428, 77853, 'en', 'name', 'Samara Law Institute of the Federal Penitentiary Service of Russia'),
(93429, 77853, 'ru', 'name', 'Š”ŠŠœŠŠ Š”ŠšŠ˜Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š”Š˜Š Š ŠžŠ”Š”Š˜Š˜'),
(93430, 77854, 'en', 'name', 'Ted Rogers Centre for Heart Research'),
(93431, 77855, 'en', 'name', 'African Conservation Centre'),
(93432, 77856, 'en', 'name', 'Institute of Professional Accountants of Russia'),
(93433, 77856, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… Š±ŃƒŃ…Š³Š°Š»Ń‚ŠµŃ€Š¾Š² Šø Š°ŃƒŠ“ŠøŃ‚Š¾Ń€Š¾Š² России'),
(93434, 77857, 'en', 'name', 'SKA Telescope, Australia'),
(93435, 77858, 'en', 'name', 'Aga Khan Development Network'),
(93436, 77859, 'it', 'name', 'Centro di Terapia Metacognitiva Interpersonale'),
(93437, 77860, 'no_lang_code', 'name', 'HPO Center (Netherlands)'),
(93438, 77861, 'en', 'name', 'African Institute for Development Policy'),
(93439, 77862, 'en', 'name', 'Beijing Research Center for Agricultural and Standards and Testing'),
(93440, 77862, 'zh', 'name', 'åŒ—äŗ¬å†œäøšč“Øé‡ę ‡å‡†äøŽę£€ęµ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(93441, 77863, 'en', 'name', 'Bhagwan Mahaveer Jain Hospital'),
(93442, 77864, 'en', 'name', 'Samara Federal Research Scientific Center'),
(93443, 77864, 'ru', 'name', 'Дамарский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук'),
(93444, 77865, 'en', 'name', 'Pain in Motion'),
(93445, 77866, 'en', 'name', 'State Institution "Institute for Children and Adolescents Health Care at the National Academy of Medical Sciences of Ukraine"'),
(93446, 77866, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ охорони зГоров''я Гітей та піГлітків ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України"'),
(93447, 77867, 'en', 'name', 'Health City Institute'),
(93448, 77868, 'en', 'name', 'Central Scientific Research Institute of Armament and Military Equipment of the Armed Forces of Ukraine'),
(93449, 77868, 'uk', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Š·Š±Ń€Š¾Ń”Š½Š½Ń та Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾Ń— техніки Збройних Дил України'),
(93450, 77869, 'en', 'name', 'The Institution of Engineers Malaysia'),
(93451, 77870, 'en', 'name', 'Amity University'),
(93452, 77870, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų£Ł…ŁŠŲŖŁŠ'),
(93453, 77871, 'pt', 'name', 'Hospital UniversitƔrio Cajuru'),
(93454, 77872, 'en', 'name', 'National Institution for Finance and Development'),
(93455, 77872, 'zh', 'name', 'å›½å®¶é‡‘čžäøŽå‘å±•å®žéŖŒå®¤'),
(93456, 77873, 'en', 'name', 'Federal State Budgetary Institution "Federal Center For Cardiovascular Surgery" Ministry of Health of The Russian Federation'),
(93457, 77873, 'ru', 'name', 'Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠžŠ• Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠžŠ• Š‘Š®Š”Š–Š•Š¢ŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• "Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠ«Š™ Š¦Š•ŠŠ¢Š  Š”Š•Š Š”Š•Š§ŠŠž-Š”ŠžŠ”Š£Š”Š˜Š”Š¢ŠžŠ™ Š„Š˜Š Š£Š Š“Š˜Š˜" ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š—Š”Š ŠŠ’ŠžŠžŠ„Š ŠŠŠ•ŠŠ˜ŠÆ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(93458, 77874, 'no_lang_code', 'name', 'Istanbul Retina Institute (Turkey)'),
(93459, 77875, 'en', 'name', 'Palau International Coral Reef Center'),
(93460, 77876, 'en', 'name', 'Dazhou Academy of Agricultural Sciences'),
(93461, 77877, 'en', 'name', 'Baikal Research Centre'),
(93462, 77878, 'en', 'name', 'London Centre for Neglected Tropical Disease Research'),
(93463, 77879, 'en', 'name', 'Kazakh Institute of Oncology and Radiology'),
(93464, 77879, 'kk', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ онкологии Šø раГиологии'),
(93465, 77880, 'en', 'name', 'Middlesex University'),
(93466, 77881, 'en', 'name', 'Austrian Institute for Sports Medicine'),
(93467, 77882, 'en', 'name', 'Punjab Remote Sensing Centre'),
(93468, 77883, 'no_lang_code', 'name', 'BioClinicum (Russia)'),
(93469, 77884, 'no_lang_code', 'name', 'IDEXX Laboratories (Germany)'),
(93470, 77885, 'en', 'name', 'Department of Marine and Coastal Resources'),
(93471, 77885, 'th', 'name', 'ąøąø£ąø”ąø—ąø£ąø±ąøžąø¢ąø²ąøąø£ąø—ąø²ąø‡ąø—ąø°ą¹€ąø„ą¹ąø„ąø°ąøŠąø²ąø¢ąøąø±ą¹ˆąø‡'),
(93472, 77886, 'en', 'name', 'Ventura County Medical Center'),
(93473, 77887, 'no_lang_code', 'name', 'UZR (Germany)'),
(93474, 77888, 'en', 'name', 'Pervasive Artificial Intelligence Research Labs'),
(93475, 77888, 'zh', 'name', 'äŗŗå·„ę™ŗę…§ę™®é©ē ”ē©¶äø­åæƒ'),
(93476, 77889, 'no_lang_code', 'name', 'Therachem Research Medilab (India)'),
(93477, 77890, 'en', 'name', 'Centre for Disability Prevention and Rehabilitation'),
(93478, 77891, 'en', 'name', 'Evolve Restorative Center'),
(93479, 77892, 'en', 'name', 'Sleep Comprehensive Care Clinic Yoyogi'),
(93480, 77892, 'ja', 'name', 'ē”ēœ ē·åˆć‚±ć‚¢ć‚ÆćƒŖćƒ‹ćƒƒć‚Æä»£ć€…ęœØćÆ'),
(93481, 77893, 'en', 'name', 'Australian General Practice Accreditation Limited'),
(93482, 77894, 'en', 'name', 'Mallacoota Medical Centre'),
(93483, 77895, 'no_lang_code', 'name', 'Samsung (Russia)'),
(93484, 77896, 'pt', 'name', 'Centro De Medicina VeterinƔria Anjos De Assis'),
(93485, 77897, 'en', 'name', 'Erwin L. Hahn Institute for Magnetic Resonance Imaging'),
(93486, 77898, 'en', 'name', 'Danesh-e-Tandorosti Iranian Institute of Higher Health'),
(93487, 77899, 'en', 'name', 'Institute of Radiobiology of NAS of Belarus'),
(93488, 77899, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиобиологии ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(93489, 77900, 'en', 'name', 'Amosov National Institute of Cardiovascular Surgery'),
(93490, 77901, 'en', 'name', 'Proton Collaborative Group'),
(93491, 77902, 'en', 'name', 'Orthopaedic Research Group'),
(93492, 77903, 'pt', 'name', 'UniBrasil Centro UniversitƔrio'),
(93493, 77904, 'fr', 'name', 'Institut International d''Agriculture Tropicale'),
(93494, 77904, 'en', 'name', 'International Institute of Tropical Agriculture'),
(93495, 77905, 'en', 'name', 'Cereneo'),
(93496, 77906, 'en', 'name', 'Mangalore Institute of Oncology'),
(93497, 77906, 'kn', 'name', 'ಮಂಗಳೂರು ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²Øą³ą²•ą²¾ą²²ą²œą²æ'),
(93498, 77907, 'en', 'name', 'Dallas Plastic Surgery Institute'),
(93499, 77908, 'en', 'name', 'Africa Academy for Public Health'),
(93500, 77909, 'en', 'name', 'Institute of Physiology National Academy of Sciences of Belarus'),
(93501, 77909, 'be', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š˜Š—Š˜ŠžŠ›ŠžŠ“Š˜Š˜ ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠžŠ™ ŠŠšŠŠ”Š•ŠœŠ˜Š˜ ŠŠŠ£Šš Š‘Š•Š›ŠŠ Š£Š”Š˜'),
(93502, 77910, 'en', 'name', 'Chemical Genomics Centre'),
(93503, 77910, 'de', 'name', 'Zentrum für Chemische Genomik'),
(93504, 77911, 'no_lang_code', 'name', 'California Institute of Behavioral Neurosciences and Psychology (United States)'),
(93505, 77912, 'en', 'name', 'Shanghai Key Laboratory of Trustworthy Computing'),
(93506, 77912, 'zh', 'name', 'äøŠęµ·åø‚é«˜åÆäæ”č®”ē®—é‡ē‚¹å®žéŖŒå®¤'),
(93507, 77913, 'en', 'name', 'Latvian State Forest Research Institute "Silava"'),
(93508, 77913, 'lv', 'name', 'Latvijas Valsts mežzinātnes institūts "Silava"'),
(93509, 77914, 'en', 'name', 'King Abdullah City for Atomic and Renewable Energy'),
(93510, 77914, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ عبدالله للطاقة Ų§Ł„Ų°Ų±ŁŠŲ© ŁˆŲ§Ł„Ł…ŲŖŲ¬ŲÆŲÆŲ©'),
(93511, 77915, 'es', 'name', 'Red de Investigación en Actividades Preventivas y Promoción de la Salud'),
(93512, 77916, 'en', 'name', 'National Quality Inspection and Testing Center for Surveying and Mapping Products'),
(93513, 77916, 'zh', 'name', 'å›½å®¶ęµ‹ē»˜äŗ§å“č“Øé‡ę£€éŖŒęµ‹čÆ•äø­åæƒ'),
(93514, 77917, 'en', 'name', 'Afagh Higher Education Institute'),
(93515, 77917, 'fa', 'name', 'مؤسسه Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ آفاق'),
(93516, 77918, 'en', 'name', 'Global Health Literacy Academy'),
(93517, 77919, 'it', 'name', 'Istituto Tethys ONLUS'),
(93518, 77919, 'en', 'name', 'Tethys Research Institute'),
(93519, 77920, 'en', 'name', 'Global Policy Institute'),
(93520, 77921, 'en', 'name', 'National University of Technology'),
(93521, 77922, 'en', 'name', 'Biofuel Research Team'),
(93522, 77923, 'es', 'name', 'INDCRAN'),
(93523, 77924, 'en', 'name', 'Łukasiewicz Research Network - Institute of Industrial Organic Chemistry, Branch Pszczyna'),
(93524, 77925, 'en', 'name', 'Eternal Hospital'),
(93525, 77926, 'no_lang_code', 'name', 'National Center for Advanced Packaging (China)'),
(93526, 77927, 'fr', 'name', 'Centre Africain de Recherche en EpidƩmiologie et en SantƩ Publique'),
(93527, 77928, 'no_lang_code', 'name', 'HCG Cancer Centre'),
(93528, 77929, 'en', 'name', 'Orthopaedic Center of New Jersey'),
(93529, 77930, 'en', 'name', 'Shandong Provincial Key Laboratory of Renewable Energy Building Application Technology'),
(93530, 77930, 'zh', 'name', 'å±±äøœēœåÆå†ē”Ÿčƒ½ęŗå»ŗē­‘åŗ”ē”ØęŠ€ęœÆé‡ē‚¹å®žéŖŒå®¤'),
(93531, 77931, 'en', 'name', 'Institute for Animal Husbandry'),
(93532, 77932, 'en', 'name', 'Institute of Forage Crops'),
(93533, 77932, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ по Ń„ŃƒŃ€Š°Š¶Š½ŠøŃ‚Šµ ŠŗŃƒŠ»Ń‚ŃƒŃ€Šø'),
(93534, 77933, 'es', 'name', 'Instituto de Investigación Geológico y Energético'),
(93535, 77934, 'en', 'name', 'Health and Human Development (2HD) Research Network'),
(93536, 77935, 'en', 'name', 'Shri Lakshmi Clinic & Scan Centre'),
(93537, 77936, 'en', 'name', 'Astrogeology Science Center'),
(93538, 77937, 'en', 'name', 'I.Krypiakevych Institute of Ukrainian Studies National Academy of Sciences of Ukraine'),
(93539, 77937, 'uk', 'name', 'І.ŠšŃ€ŠøŠæā€™ŃŠŗŠµŠ²ŠøŃ‡Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(93540, 77938, 'en', 'name', 'MTA-SZTE Research Group on Artificial Intelligence'),
(93541, 77939, 'de', 'name', 'Zentrum für Pränataldiagnostik'),
(93542, 77940, 'en', 'name', 'Individual Development and Adaptive Education'),
(93543, 77941, 'en', 'name', 'Nepalese Army Institute of Health Services'),
(93544, 77941, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤²ą„€ ą¤øą„‡ą¤Øą¤¾ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(93545, 77942, 'en', 'name', 'Security Service of Ukraine'),
(93546, 77942, 'uk', 'name', 'Длужба безпеки України'),
(93547, 77943, 'en', 'name', 'European Corporate Governance Institute'),
(93548, 77944, 'en', 'name', 'Gillies McIndoe Research Institute'),
(93549, 77945, 'en', 'name', 'Center for the Socioeconomic Impact of Environmental Policies'),
(93550, 77945, 'es', 'name', 'Centro para el Impacto Socioeconómico de las Políticas Ambientales'),
(93551, 77946, 'en', 'name', 'Federal Research Center of Fundamental and Translational Medicine'),
(93552, 77946, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ Šø Š¢Ń€Š°Š½ŃŠ»ŃŃ†ŠøŠ¾Š½Š½Š¾Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½Ń‹'),
(93553, 77947, 'en', 'name', 'Beijing Hypertension Prevention Association'),
(93554, 77947, 'zh', 'name', 'åŒ—äŗ¬é«˜č”€åŽ‹é˜²ę²»åä¼š'),
(93555, 77948, 'en', 'name', 'Thomas Jefferson Foundation'),
(93556, 77949, 'en', 'name', 'Geos Institute'),
(93557, 77950, 'es', 'name', 'Kavilando'),
(93558, 77951, 'no_lang_code', 'name', 'Donetsk Botanical Garden'),
(93559, 77951, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ ботанічний саГ'),
(93560, 77952, 'en', 'name', 'National Heart Institute'),
(93561, 77952, 'hi', 'name', 'ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤¹ą¤¾ą¤°ą„ą¤Ÿ ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ'),
(93562, 77953, 'en', 'name', 'The Northern Ireland Cancer Centre'),
(93563, 77954, 'en', 'name', 'Bioinformatics Institute'),
(93564, 77954, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биоинформатики'),
(93565, 77955, 'en', 'name', 'Center for International Forestry Research'),
(93566, 77956, 'en', 'name', 'Sydney Sexual Health Centre'),
(93567, 77957, 'en', 'name', 'Canada East Spine Centre'),
(93568, 77958, 'en', 'name', 'Cambodia-Oxford Medical Research Unit'),
(93569, 77959, 'en', 'name', 'Shoklo Malaria Research Unit'),
(93570, 77960, 'es', 'name', 'Universidad Nacional De CaaguazĆŗ'),
(93571, 77961, 'no_lang_code', 'name', 'Wren Laboratories (United States)'),
(93572, 77962, 'en', 'name', 'The Julian Centre'),
(93573, 77963, 'hr', 'name', 'Biblijski Institut'),
(93574, 77963, 'en', 'name', 'The Biblical Institute'),
(93575, 77964, 'en', 'name', 'Institute of General and Inorganic Chemistry of National Academy of Sciences of Belarus'),
(93576, 77964, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей Šø неорганической химии ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(93577, 77965, 'pt', 'name', 'Instituto de Patologia da Coluna'),
(93578, 77966, 'fr', 'name', 'Institut Salah-AzaĆÆz'),
(93579, 77967, 'en', 'name', 'State Museum of Natural History of the National Academy of Sciences of Ukraine'),
(93580, 77967, 'uk', 'name', 'Державний прироГознавчий музей ŠŠŠ України'),
(93581, 77968, 'no_lang_code', 'name', 'MSIGHT Technologies (China)'),
(93582, 77969, 'en', 'name', 'International Crops Research Institute for the Semi-Arid Tropics'),
(93583, 77970, 'en', 'name', 'Kulkarni reconstructive Urology Center'),
(93584, 77971, 'no_lang_code', 'name', 'Fistulacure'),
(93585, 77972, 'en', 'name', 'Beijing Institute of Big Data Research'),
(93586, 77972, 'zh', 'name', 'åŒ—äŗ¬å¤§ę•°ę®ē ”ē©¶é™¢'),
(93587, 77973, 'en', 'name', 'Health & Safety in Sports'),
(93588, 77974, 'en', 'name', 'Voronezh Institute of the Federal Penitentiary Service of Russia'),
(93589, 77974, 'ru', 'name', 'Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¤Š”Š˜Š России'),
(93590, 77975, 'en', 'name', 'International University of Beirut'),
(93591, 77976, 'en', 'name', 'University of Glasgow Singapore'),
(93592, 77977, 'en', 'name', 'Iranshahr University'),
(93593, 77977, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų§ŪŒŲ±Ų§Ł†Ų“Ł‡Ų±'),
(93594, 77978, 'en', 'name', 'Center for Advanced Internet Studies'),
(93595, 77979, 'fr', 'name', 'Fondation VallƩe'),
(93596, 77980, 'en', 'name', 'National Engineering Laboratory of Deep Learning Technology and Application'),
(93597, 77980, 'zh', 'name', 'ę·±åŗ¦å­¦ä¹ ęŠ€ęœÆåŠåŗ”ē”Øå›½å®¶å·„ēØ‹å®žéŖŒå®¤'),
(93598, 77981, 'en', 'name', 'South Atlantic Environmental Research Institute'),
(93599, 77982, 'en', 'name', 'W.M. Keck Science Center'),
(93600, 77983, 'en', 'name', 'Center for Advanced Energy Studies'),
(93601, 77984, 'en', 'name', 'State Key Laboratory of Gas Disaster Detecting, Preventing and Emergency Controlling'),
(93602, 77984, 'zh', 'name', 'ē“¦ę–Æē¾å®³ē›‘ęŽ§äøŽåŗ”ę€„ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93603, 77985, 'en', 'name', 'The Retina Center'),
(93604, 77986, 'en', 'name', 'Tsinghua Sichuan Energy Internet Research Institute'),
(93605, 77987, 'en', 'name', 'Shenzhen Nanshan Center for Chronic Disease Control'),
(93606, 77987, 'zh', 'name', 'ę·±åœ³å—å±±åŒŗę…¢ę€§ē—…é˜²ę²»é™¢'),
(93607, 77988, 'pt', 'name', 'Centro UniversitÔrio São Lucas'),
(93608, 77989, 'en', 'name', 'Shandong Center for Disease Control and Prevention'),
(93609, 77990, 'en', 'name', 'National Clinical Research Center for Digestive Diseases'),
(93610, 77990, 'zh', 'name', 'å›½å®¶ę¶ˆåŒ–ē³»ē»Ÿē–¾ē—…äø“åŗŠåŒ»å­¦ē ”ē©¶äø­åæƒ'),
(93611, 77991, 'no_lang_code', 'name', 'SuVi Eye Institute and Lasik Laser Center'),
(93612, 77992, 'pt', 'name', 'Instituto Benjamin Constant'),
(93613, 77993, 'en', 'name', 'The Carter Center'),
(93614, 77994, 'en', 'name', 'East Tennessee Clinical Research'),
(93615, 77995, 'en', 'name', 'Christian Sarkine Autism Treatment Center'),
(93616, 77996, 'en', 'name', 'Plant Biosecurity Cooperative Research Centre'),
(93617, 77997, 'en', 'name', 'Genki Plaza Medical Center for Health Care'),
(93618, 77998, 'de', 'name', 'Hirslanden Klinik Im Park'),
(93619, 77999, 'de', 'name', 'Hirslanden Klinik St. Anna'),
(93620, 78000, 'de', 'name', 'Hirslanden Andreasklinik Cham Zug'),
(93621, 78001, 'fr', 'name', 'Hirslanden Clinique Bois-Cerf'),
(93622, 78002, 'fr', 'name', 'Hirslanden Clinique Cecil'),
(93623, 78003, 'fr', 'name', 'Hirslanden Clinique La Colline'),
(93624, 78004, 'de', 'name', 'Hirslanden Klinik Birshof'),
(93625, 78005, 'fr', 'name', 'Hirslanden Clinique des Tilleuls'),
(93626, 78005, 'de', 'name', 'Hirslanden Klinik Linde'),
(93627, 78006, 'de', 'name', 'Hirslanden Klinik Am Rosenberg'),
(93628, 78007, 'de', 'name', 'Hirslanden Klinik Beau-Site'),
(93629, 78008, 'de', 'name', 'Hirslanden Klinik Permanence'),
(93630, 78009, 'de', 'name', 'Hirslanden Klinik Stephanshorn'),
(93631, 78010, 'de', 'name', 'Hirslanden Salem-Spital'),
(93632, 78011, 'en', 'name', 'Research Institute of Human Morphology'),
(93633, 78011, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ морфологии человека'),
(93634, 78012, 'en', 'name', 'Worldwide Laser Institute'),
(93635, 78013, 'bs', 'name', 'Centar izuzetne vrednosti u oblasti istraživanja ishrane i metabolizma'),
(93636, 78013, 'en', 'name', 'Centre of Research Excellence in Nutrition and Metabolism'),
(93637, 78014, 'en', 'name', 'Lewis Gale Medical Center'),
(93638, 78015, 'en', 'name', 'Network for Socioeconomic Research and Advancement'),
(93639, 78016, 'en', 'name', 'Institute of Paediatric Virology'),
(93640, 78017, 'pt', 'name', 'UniFG Centro UniversitƔrio'),
(93641, 78018, 'nl', 'name', 'Leidsche Rijn Julius Health Centers'),
(93642, 78019, 'en', 'name', 'The Family Centre'),
(93643, 78020, 'en', 'name', 'The Wilson Centre'),
(93644, 78021, 'en', 'name', 'Hamilton County Coroner'),
(93645, 78022, 'en', 'name', 'Global Health Research Center of Central Asia'),
(93646, 78022, 'kk', 'name', 'Центр Š˜Š·ŃƒŃ‡ŠµŠ½ŠøŃ Š“Š»Š¾Š±Š°Š»ŃŒŠ½Š¾Š³Š¾ Š—Š“Š¾Ń€Š¾Š²ŃŒŃ в Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(93647, 78023, 'en', 'name', 'CONEM Autism Research'),
(93648, 78024, 'en', 'name', 'Life Quality Research Centre'),
(93649, 78025, 'en', 'name', 'Ottawa Allergy Research Corporation'),
(93650, 78026, 'id', 'name', 'Universitas Dharmas Indonesia'),
(93651, 78027, 'de', 'name', 'Institut für Prävention und Arbeitsmedizin'),
(93652, 78027, 'en', 'name', 'Institute for Prevention and Occupational Medicine'),
(93653, 78028, 'en', 'name', 'Centre for Sight'),
(93654, 78029, 'en', 'name', 'Marien Hospital Witten'),
(93655, 78030, 'de', 'name', 'Medizinisches Zentrum für Seelische Gesundheit'),
(93656, 78031, 'de', 'name', 'Krankenhaus Lübbecke-Rahden, Universitätsklinik für Psychiatrie und Psychotherapie'),
(93657, 78032, 'de', 'name', 'Krankenhaus Lübbecke-Rahden, Universitätsklinik für Psychosomatik und Psychotherapie'),
(93658, 78033, 'en', 'name', 'St. Elisabeth-Hospital Bochum'),
(93659, 78034, 'en', 'name', 'CTA Observatory'),
(93660, 78035, 'it', 'name', 'Puglia Salute'),
(93661, 78036, 'en', 'name', 'Ghana College of Physicians and Surgeons'),
(93662, 78037, 'en', 'name', 'Institute of Pharmacology and Toxicology of the National Academy of Medical Sciences of Ukraine'),
(93663, 78037, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фармакології та токсикології ŠŠŠœŠ України'),
(93664, 78038, 'en', 'name', 'Institute of Blood Pathology and Transfusion Medicine of the National Academy of Medical Sciences of Ukraine'),
(93665, 78038, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ патології крові та Ń‚Ń€Š°Š½ŃŃ„ŃƒŠ·Ń–Š¹Š½Š¾Ń— меГицини ŠŠŠœŠ України'),
(93666, 78039, 'en', 'name', 'Filatov Institute of Eye Diseases and Tissue Therapy of the National Academy of Medical Sciences of Ukraine'),
(93667, 78039, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ очних хвороб та тканинної терапії імені Філатова ŠŠŠœŠ України'),
(93668, 78040, 'en', 'name', 'Institute of Pediatrics, Obstetrics, and Gynecology named after acad. O.M. Lukyanova of the National Academy of Medical Sciences of Ukraine'),
(93669, 78040, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пеГіатрії, Š°ŠŗŃƒŃˆŠµŃ€ŃŃ‚Š²Š° та гінекології ŠŠŠœŠ України'),
(93670, 78041, 'en', 'name', 'Institute of Nephrology of the National Academy of Medical Sciences of Ukraine'),
(93671, 78041, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефрології ŠŠŠœŠ України'),
(93672, 78042, 'en', 'name', 'Romodanov Neurosurgery Institute of the National Academy of Medical Sciences of Ukraine'),
(93673, 78042, 'uk', 'name', 'РомоГанова Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠµŠ¹Ń€Š¾Ń…Ń–Ń€ŃƒŃ€Š³Ń–Ń— ŠŠŠœŠ України'),
(93674, 78043, 'en', 'name', 'Carl Hayden Bee Research Center'),
(93675, 78044, 'en', 'name', 'U.S. Arid Land Agricultural Research Center'),
(93676, 78045, 'en', 'name', 'U.S. Salinity Laboratory'),
(93677, 78046, 'en', 'name', 'Center for Agricultural Resources Research'),
(93678, 78047, 'en', 'name', 'Center for Grain and Animal Health Research'),
(93679, 78048, 'en', 'name', 'Conservation and Production Research Laboratory'),
(93680, 78049, 'en', 'name', 'Daniel K. Inouye U.S. Pacific Basin Agricultural Research Center'),
(93681, 78050, 'en', 'name', 'Cropping Systems Research Laboratory'),
(93682, 78051, 'en', 'name', 'Edward T. Schafer Agricultural Research Center'),
(93683, 78052, 'en', 'name', 'Horticultural Crops Research Laboratory'),
(93684, 78053, 'en', 'name', 'National Forage Seed Production Research Center'),
(93685, 78054, 'en', 'name', 'Grassland, Soil and Water Research Laboratory'),
(93686, 78055, 'en', 'name', 'Northwest Irrigation and Soils Research Laboratory'),
(93687, 78056, 'en', 'name', 'Grazinglands Research Laboratory'),
(93688, 78057, 'en', 'name', 'Northwest Watershed Research Center'),
(93689, 78058, 'en', 'name', 'Knipling-Bushland U.S. Livestock Insects Research Laboratory'),
(93690, 78059, 'en', 'name', 'Fort Keogh Livestock and Range Research Laboratory'),
(93691, 78060, 'en', 'name', 'Northern Great Plains Research Laboratory'),
(93692, 78061, 'en', 'name', 'Northern Plains Agricultural Research Laboratory'),
(93693, 78062, 'en', 'name', 'Southern Plains Agricultural Research Center'),
(93694, 78063, 'en', 'name', 'Roman L. Hruska U.S. Meat Animal Research Center'),
(93695, 78064, 'en', 'name', 'Tree Fruit Research Laboratory'),
(93696, 78065, 'en', 'name', 'Southwest Watershed Research Center'),
(93697, 78066, 'en', 'name', 'San Joaquin Valley Agricultural Sciences Center'),
(93698, 78067, 'en', 'name', 'Poisonous Plant Research Laboratory'),
(93699, 78068, 'en', 'name', 'National Sedimentation Laboratory'),
(93700, 78069, 'en', 'name', 'Dale Bumpers National Rice Research Center'),
(93701, 78070, 'en', 'name', 'Dale Bumpers Small Farms Research Center'),
(93702, 78071, 'en', 'name', 'National Laboratory for Agriculture and the Environment'),
(93703, 78072, 'en', 'name', 'National Animal Disease Center'),
(93704, 78073, 'en', 'name', 'Harry K. Dupree Stuttgart National Aquaculture Research Center'),
(93705, 78074, 'en', 'name', 'Southeast Watershed Research Laboratory'),
(93706, 78075, 'en', 'name', 'Biological Control of Insects Research Laboratory'),
(93707, 78076, 'en', 'name', 'National Peanut Research Laboratory'),
(93708, 78077, 'en', 'name', 'U.S. Dairy Forage Research Center'),
(93709, 78078, 'en', 'name', 'Robert W. Holley Center for Agriculture & Health'),
(93710, 78079, 'en', 'name', 'North Central Soil Conservation Research Laboratory'),
(93711, 78080, 'en', 'name', 'Cereal Disease Laboratory'),
(93712, 78081, 'en', 'name', 'National Soil Erosion Research Laboratory'),
(93713, 78082, 'en', 'name', 'Appalachian Fruit Research Laboratory'),
(93714, 78083, 'en', 'name', 'National Soil Dynamics Research Laboratory'),
(93715, 78084, 'en', 'name', 'National Center for Cool and Cold Water Aquaculture'),
(93716, 78085, 'en', 'name', 'U.S. National Poultry Research Center'),
(93717, 78086, 'en', 'name', 'Plum Island Animal Disease Center'),
(93718, 78087, 'en', 'name', 'Honey Bee Breeding, Genetics, and Physiology Laboratory'),
(93719, 78088, 'en', 'name', 'New England Plant, Soil and Water Research Laboratory'),
(93720, 78089, 'en', 'name', 'Southeastern Fruit and Tree Nut Research Laboratory'),
(93721, 78090, 'en', 'name', 'National Cold Water Marine Aquaculture Center'),
(93722, 78091, 'en', 'name', 'U.S. Vegetable Laboratory'),
(93723, 78092, 'en', 'name', 'Invasive Plant Research Laboratory'),
(93724, 78093, 'en', 'name', 'U.S. Horticultural Research Laboratory'),
(93725, 78094, 'en', 'name', 'Crop Science Research Laboratory'),
(93726, 78095, 'en', 'name', 'U.S. National Arboretum'),
(93727, 78096, 'en', 'name', '1 Military Clinical Hospital with Outpatient Clinic'),
(93728, 78096, 'pl', 'name', '1 Wojskowy Szpital Kliniczny z Polikliniką'),
(93729, 78097, 'en', 'name', 'CMT Research Foundation'),
(93730, 78098, 'en', 'name', 'Arkansas Department of Agriculture'),
(93731, 78099, 'es', 'name', 'Centro Nacional de Microbiologia'),
(93732, 78099, 'en', 'name', 'National Micobiology Centre'),
(93733, 78100, 'es', 'name', 'Centro Nacional de EpidemiologĆ­a'),
(93734, 78100, 'en', 'name', 'National Epidemiology Centre'),
(93735, 78101, 'es', 'name', 'Escuela Nacional de Sanidad'),
(93736, 78101, 'en', 'name', 'National School of Public Health'),
(93737, 78102, 'es', 'name', 'Centro de Investigación Biomédica en Red'),
(93738, 78103, 'es', 'name', 'Centro de Investigación Biomédica en Red de Enfermedades Respiratorias'),
(93739, 78104, 'es', 'name', 'Centro Nacional de Medicina Tropical'),
(93740, 78104, 'en', 'name', 'National Centre of Tropical Medicine'),
(93741, 78105, 'es', 'name', 'Red de Investigación en Sida'),
(93742, 78106, 'es', 'name', 'Centro Nacional de Sanidad Ambiental'),
(93743, 78106, 'en', 'name', 'National Environmental Health Centre'),
(93744, 78107, 'en', 'name', 'Digital Health Research Unit'),
(93745, 78107, 'es', 'name', 'Unidad de Investigación en Salud Digital'),
(93746, 78108, 'en', 'name', 'Scientific and Technical Central Units'),
(93747, 78108, 'es', 'name', 'Unidades Centrales Cientƭfico-TƩcnicas'),
(93748, 78109, 'en', 'name', 'Network of Biological Alerts Laboratories'),
(93749, 78109, 'es', 'name', 'Red de Laboratorios de Alertas Biológicas'),
(93750, 78110, 'es', 'name', 'Biblioteca Nacional de Ciencias de la Salud'),
(93751, 78110, 'en', 'name', 'National Library of Health Sciences'),
(93752, 78111, 'es', 'name', 'Agencia de Evaluación de Tecnologías Sanitarias'),
(93753, 78111, 'en', 'name', 'Health Technology Assessment Agency'),
(93754, 78112, 'es', 'name', 'Escuela Nacional de Medicina del Trabajo'),
(93755, 78112, 'en', 'name', 'National School of Occupational Medicine'),
(93756, 78113, 'en', 'name', 'National Clonal Germplasm Repository'),
(93757, 78114, 'ms', 'name', 'Hospital Kemaman'),
(93758, 78115, 'en', 'name', 'National Clonal Germplasm Repository for Citrus'),
(93759, 78116, 'en', 'name', 'The Behavioural Insights Team'),
(93760, 78117, 'en', 'name', 'National Clonal Germplasm Repository for Tree Fruit, Nut Crops, and Grapes'),
(93761, 78118, 'en', 'name', 'IPS Central'),
(93762, 78119, 'de', 'name', 'Institut für Zeitgeschichte München–Berlin'),
(93763, 78119, 'en', 'name', 'Institute for Contemporary History München–Berlin'),
(93764, 78120, 'de', 'name', 'Reiner Lemoine Institut'),
(93765, 78120, 'en', 'name', 'Reiner Lemoine Institute'),
(93766, 78121, 'es', 'name', 'Instituto de Investigaciones CientĆ­ficas y Servicios de Alta TecnologĆ­a'),
(93767, 78122, 'de', 'name', 'Landesamt für Bergbau, Energie und Geologie'),
(93768, 78123, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Instytut Chemii Przemysłowej'),
(93769, 78123, 'en', 'name', 'Łukasiewicz Research Network - Industrial Chemistry Institute'),
(93770, 78124, 'en', 'name', 'Keldysh Institute of Applied Mathematics'),
(93771, 78124, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной математики им. М.Š’. ŠšŠµŠ»Š“Ń‹ŃˆŠ° Российской акаГемии наук"'),
(93772, 78125, 'en', 'name', 'Connecticut Department of Energy and Environmental Protection'),
(93773, 78126, 'en', 'name', 'Gromov Flight Research Institute'),
(93774, 78126, 'ru', 'name', 'Летно-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени М.М. Громова'),
(93775, 78127, 'en', 'name', 'Mass General Brigham'),
(93776, 78128, 'no_lang_code', 'name', 'Cooley (United States)'),
(93777, 78129, 'no_lang_code', 'name', 'Greo'),
(93778, 78130, 'en', 'name', 'Pyatigorsk Medical and Pharmaceutical Institute - branch of Volgograd State Medical University'),
(93779, 78130, 'ru', 'name', 'ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ меГико-фармацевтический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ – филиал ВолгограГского Š³Š¾ŃŃƒŠ“арственного меГицинского ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚');
INSERT INTO `ror_settings` VALUES
(93780, 78131, 'en', 'name', 'Main Astronomical Observatory'),
(93781, 78131, 'uk', 'name', 'Головна астрономічна Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€Ń–Ń'),
(93782, 78132, 'en', 'name', 'Acupuncture And Massage College'),
(93783, 78133, 'en', 'name', 'Academy of Sciences of Albania'),
(93784, 78134, 'no_lang_code', 'name', 'PowerPhotonic (United Kingdom)'),
(93785, 78135, 'pl', 'name', 'Sieć Badawcza Łukasiewicz – Instytut Metali Nieżelaznych'),
(93786, 78135, 'en', 'name', 'Łukasiewicz Research Network - Institute of Non-Ferrous Metals'),
(93787, 78136, 'en', 'name', 'Golisano Children''s Hospital'),
(93788, 78137, 'no_lang_code', 'name', 'Triad Interactive Media (United States)'),
(93789, 78138, 'en', 'name', 'Wirral Community Health and Care NHS Foundations Trust'),
(93790, 78139, 'en', 'name', 'Alliance of Crop, Soil, and Environmental Science Societies'),
(93791, 78140, 'en', 'name', 'Leibniz Institute of European History'),
(93792, 78140, 'de', 'name', 'Leibniz-Institut für Europäische Geschichte'),
(93793, 78141, 'pl', 'name', 'Sieć Badawcza Łukasiewicz – Przemysłowy Instytut Automatyki i Pomiarów'),
(93794, 78141, 'en', 'name', 'Łukasiewicz Research Network - Industrial Research Institute for Automation and Measurements'),
(93795, 78142, 'en', 'name', 'Junior College Library Association'),
(93796, 78142, 'ja', 'name', 'ē§ē«‹ēŸ­ęœŸå¤§å­¦å›³ę›øé¤Øå”č­°ä¼š'),
(93797, 78143, 'en', 'name', 'Polish Academy of Sciences Botanical Garden – Center for Biological Diversity Conservation in Powsin'),
(93798, 78143, 'pl', 'name', 'Polska Akademia Nauk Ogród Botaniczny – Centrum Zachowania Różnorodności Biologicznej w Powsinie'),
(93799, 78144, 'en', 'name', 'Pinega Nature Reserve'),
(93800, 78144, 'ru', 'name', 'Pinezhsky Zapovednik'),
(93801, 78145, 'en', 'name', 'I.Horbachevsky Ternopil National Medical University'),
(93802, 78145, 'pl', 'name', 'Państwowy Uniwersytet Medyczny imienia I.Ya Horbaczewskiego w Tarnopolu'),
(93803, 78145, 'ru', 'name', 'Š¢ŠµŃ€Š½Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. ŠÆ. Горбачевского ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Украины'),
(93804, 78145, 'uk', 'name', 'Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені І. ŠÆ. Š“Š¾Ń€Š±Š°Ń‡ŠµŠ²ŃŃŒŠŗŠ¾Š³Š¾'),
(93805, 78146, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Instytut Technologii Drewna'),
(93806, 78146, 'en', 'name', 'Łukasiewicz Research Network - Wood Technology Institute'),
(93807, 78147, 'en', 'name', 'Odessa State Environmental University'),
(93808, 78148, 'en', 'name', 'Natural History Museum Aarhus'),
(93809, 78148, 'da', 'name', 'Naturhistorisk Museum Aarhus'),
(93810, 78149, 'de', 'name', 'Bundesamt für Bauwesen und Raumordnung'),
(93811, 78150, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Przemysłowy Instytut Maszyn Rolniczych'),
(93812, 78150, 'en', 'name', 'Łukasiewicz Research Network - Industrial Institute of Agricultural Engineering'),
(93813, 78151, 'no_lang_code', 'name', 'Tango Therapeutics (United States)'),
(93814, 78152, 'pt', 'name', 'Sociedade Brasileira de Psicologia'),
(93815, 78153, 'en', 'name', 'RIKEN Center for Integrative Medical Sciences'),
(93816, 78153, 'ja', 'name', '国立研究開発法人 ē†åŒ–å­¦ē ”ē©¶ę‰€ ē”Ÿå‘½åŒ»ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(93817, 78154, 'no_lang_code', 'name', 'Scoular (United States)'),
(93818, 78155, 'pl', 'name', 'Sieć Badawcza Łukasiewicz – Instytut Obróbki Plastycznej'),
(93819, 78155, 'en', 'name', 'Łukasiewicz Research Network - Metal Forming Institute'),
(93820, 78156, 'no_lang_code', 'name', 'Molecular Devices (United Kingdom)'),
(93821, 78157, 'no_lang_code', 'name', 'Akvaplan-niva'),
(93822, 78158, 'en', 'name', 'Botanic Garden and Botanical Museum Berlin'),
(93823, 78158, 'de', 'name', 'Botanischer Garten und Botanisches Museum Berlin'),
(93824, 78159, 'en', 'name', 'T.H. Shevchenko National University "Chernihiv Colehium"'),
(93825, 78159, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ "Š§ŠµŃ€Š½Ń–Š³Ń–Š²ŃŃŒŠŗŃ–Š¹ ŠŗŠ¾Š»ŠµŠ³Ń–ŃƒŠ¼" імені Š¢.Š“. Шевченка'),
(93826, 78160, 'de', 'name', 'Stiftung Wissenschaft und Politik, Deutsches Institut für Internationale Politik und Sicherheit'),
(93827, 78160, 'no_lang_code', 'name', 'Stiftung Wissenschaft und Politik, German Institute for International and Security Affairs'),
(93828, 78161, 'pl', 'name', 'Sieć Badawczą Łukasiewicz - Instytut Włókiennictwa'),
(93829, 78161, 'en', 'name', 'Łukasiewicz Research Network - Textile Research Institute'),
(93830, 78162, 'pl', 'name', 'Sieć Badawcza Łukasiewicz – PORT Polski Ośrodek Rozwoju Technologii'),
(93831, 78162, 'en', 'name', 'Łukasiewicz Research Network – PORT Polish Center for Technology Development'),
(93832, 78163, 'en', 'name', 'Kartal Koşuyolu High Specialization Training and Research Hospital'),
(93833, 78163, 'tr', 'name', 'Kartal Koşuyolu Yüksek İhtisas Eğitim ve Araştırma Hastanesi'),
(93834, 78164, 'de', 'name', 'Bundesamt für Seeschifffahrt und Hydrographie'),
(93835, 78164, 'en', 'name', 'Federal Maritime and Hydrographic Agency of Germany'),
(93836, 78165, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Instytut Technologii Eksploatacji'),
(93837, 78165, 'en', 'name', 'Łukasiewicz - Institute for Sustainable Technologies'),
(93838, 78166, 'no_lang_code', 'name', 'Zygo (United States)'),
(93839, 78167, 'en', 'name', 'Angelus Silesius State University'),
(93840, 78167, 'pl', 'name', 'Państwowa Uczelnia Angelusa Silesiusa'),
(93841, 78168, 'no_lang_code', 'name', 'Bell Resources (Australia)'),
(93842, 78169, 'no_lang_code', 'name', 'Ferespe (Portugal)'),
(93843, 78170, 'en', 'name', 'Herder Institute'),
(93844, 78170, 'de', 'name', 'Herder-Institut für Historische Ostmitteleuropaforschung – Institut der Leibniz-Gemeinschaft'),
(93845, 78171, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Instytut Ciężkiej Syntezy Organicznej "Blachownia"'),
(93846, 78171, 'en', 'name', 'Łukasiewicz Research Network - Institute of Heavy Organic Synthesis "Blachownia"'),
(93847, 78172, 'en', 'name', 'Phoenix Hospital Chelmsford'),
(93848, 78173, 'en', 'name', 'Volgograd State Medical University'),
(93849, 78173, 'ru', 'name', 'ВолгограГский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(93850, 78174, 'en', 'name', 'Bank of Sweden Tercentenary Foundation'),
(93851, 78174, 'sv', 'name', 'Stiftelsen Riksbankens Jubileumsfond'),
(93852, 78175, 'en', 'name', 'Western Regional Hospital'),
(93853, 78176, 'no_lang_code', 'name', 'AZTERLAN'),
(93854, 78176, 'es', 'name', 'AZTERLAN Centro de Investigación Metalúrgica'),
(93855, 78176, 'eu', 'name', 'AZTERLAN Metalurgia Ikerketa Zentroa'),
(93856, 78177, 'en', 'name', 'Kyiv National University of Technologies and Design'),
(93857, 78177, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ технологій та Гизайну'),
(93858, 78178, 'en', 'name', 'Avondale University'),
(93859, 78179, 'de', 'name', 'Nordwestdeutsche Forstliche Versuchsanstalt'),
(93860, 78179, 'en', 'name', 'Northwest German Forest Research Institute'),
(93861, 78180, 'en', 'name', 'HTW Berlin - University of Applied Sciences'),
(93862, 78180, 'de', 'name', 'Hochschule für Technik und Wirtschaft Berlin'),
(93863, 78181, 'en', 'name', 'Dnipro University of Technology'),
(93864, 78181, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ горный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украина'),
(93865, 78181, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° політехніка»'),
(93866, 78182, 'de', 'name', 'Eidgenössische Hochschule für Berufsbildung EHB'),
(93867, 78182, 'fr', 'name', 'Haute Ʃcole fƩdƩrale en formation professionnelle HEFP'),
(93868, 78182, 'it', 'name', 'Scuola universitaria federale per la formazione professionale SUFFP'),
(93869, 78182, 'en', 'name', 'Swiss Federal University for Vocational Education and Training SFUVET'),
(93870, 78183, 'en', 'name', 'Institute of Social Sciences and Humanities, Skopje'),
(93871, 78183, 'mk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š¾Ń‚ за Š¾ŠæŃˆŃ‚ествени Šø Ń…ŃƒŠ¼Š°Š½ŠøŃŃ‚ŠøŃ‡ŠŗŠø науки – Дкопје'),
(93872, 78184, 'en', 'name', 'Basque Summer University'),
(93873, 78184, 'eu', 'name', 'Udako Euskal Unibertsitatea'),
(93874, 78184, 'es', 'name', 'Universidad Vasca de Verano'),
(93875, 78184, 'fr', 'name', 'UniversitƩ basque d''ƩtƩ'),
(93876, 78185, 'nl', 'name', 'MS-Kliniek'),
(93877, 78185, 'en', 'name', 'National MS Center Melsbroek'),
(93878, 78186, 'en', 'name', 'State Scientific Institution "Ukrainian Institute of Scientific and Technical Expertise and Information"'),
(93879, 78186, 'uk', 'name', 'Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ науково-технічної експертизи та інформації»'),
(93880, 78187, 'en', 'name', 'Private University of Huancayo "Franklin Roosevelt"'),
(93881, 78187, 'es', 'name', 'Universidad Privada de Huancayo "Franklin Roosevelt"'),
(93882, 78188, 'en', 'name', 'Woods Hole Coastal and Marine Science Center'),
(93883, 78189, 'en', 'name', 'Kansas City National Security Campus'),
(93884, 78190, 'es', 'name', 'Escuela de Postgrado Gěrens'),
(93885, 78190, 'en', 'name', 'Gerens Graduate School'),
(93886, 78191, 'en', 'name', 'Axiom Data Science'),
(93887, 78192, 'en', 'name', 'National Registry of Exonerations'),
(93888, 78193, 'fr', 'name', 'SociƩtƩ des historiens mƩdiƩvistes de l''enseignement supƩrieur public'),
(93889, 78194, 'en', 'name', 'Tetiaroa Society'),
(93890, 78195, 'en', 'name', 'Population Health Research Network'),
(93891, 78196, 'es', 'name', 'Instituto Peruano de EnergĆ­a Nuclear'),
(93892, 78196, 'en', 'name', 'Peruvian Institute of Nuclear Energy'),
(93893, 78197, 'en', 'name', 'CSIRO BioFoundry'),
(93894, 78198, 'es', 'name', 'Instituto Nacional de Rehabilitación de "Dra. Adriana Rebaza Flores" Amistad Perú-Japón'),
(93895, 78198, 'en', 'name', 'National Rehabilitation Institute of "Dra. Adriana Rebaza Flores" Peru-Japan Friendship'),
(93896, 78199, 'no_lang_code', 'name', 'CatalystNeuro'),
(93897, 78200, 'no_lang_code', 'name', 'InterGrain'),
(93898, 78201, 'es', 'name', 'Centro de diseño, cine y televisión'),
(93899, 78202, 'en', 'name', 'Connecticut Geological Survey'),
(93900, 78203, 'en', 'name', 'National Agrarian Health Service'),
(93901, 78203, 'es', 'name', 'Servicio Nacional de Sanidad Agraria'),
(93902, 78204, 'en', 'name', 'Akademi Keperawatan YKY'),
(93903, 78205, 'en', 'name', 'Community of Physics'),
(93904, 78206, 'es', 'name', 'Instituto Nacional de Defensa de la Competencia y de la Protección de la Propiedad Intelectual'),
(93905, 78206, 'en', 'name', 'National Institute for the Defense of Competition and the Protection of Intellectual Property'),
(93906, 78207, 'en', 'name', 'Natural History Museum of the Lesvos Petrified Forest'),
(93907, 78207, 'el', 'name', 'ĪœĪæĻ…ĻƒĪµĪÆĪæ Ī¦Ļ…ĻƒĪ¹ĪŗĪ®Ļ‚ Ī™ĻƒĻ„ĪæĻĪÆĪ±Ļ‚ Απολιθωμένου Ī”Ī¬ĻƒĪæĻ…Ļ‚ Ī›Ī­ĻƒĪ²ĪæĻ…'),
(93908, 78208, 'de', 'name', 'Deutsche Gesellschaft für Erziehungswissenschaft'),
(93909, 78209, 'en', 'name', 'Biological Museum, Lund University'),
(93910, 78209, 'sv', 'name', 'Biologiska Museet, Lunds universitet'),
(93911, 78210, 'nl', 'name', 'Nederlandse Vereniging van Hemofilie-Patiƫnten'),
(93912, 78210, 'en', 'name', 'Netherlands Haemophilia Society'),
(93913, 78211, 'en', 'name', 'Gothenburg Natural History Museum'),
(93914, 78211, 'sv', 'name', 'Gƶteborgs Naturhistoriska Museum'),
(93915, 78212, 'en', 'name', 'High Tropics Foundation'),
(93916, 78213, 'en', 'name', 'National Intercultural University of Quillabamba'),
(93917, 78213, 'es', 'name', 'Universidad Nacional Intercultural de Quillabamba'),
(93918, 78214, 'en', 'name', 'California Geological Survey'),
(93919, 78215, 'es', 'name', 'CartogrƔfica de Canarias'),
(93920, 78216, 'en', 'name', 'Institute of Mental Health and Neurosciences'),
(93921, 78217, 'en', 'name', 'Centre for Environmental Data Analysis'),
(93922, 78218, 'es', 'name', 'Instituto Nacional de Estadƭstica e InformƔtica'),
(93923, 78218, 'en', 'name', 'National Institute of Statistics and Informatics'),
(93924, 78219, 'en', 'name', 'Patient-Led Research Collaborative'),
(93925, 78220, 'en', 'name', 'Ministry of Sports'),
(93926, 78221, 'en', 'name', 'Magnetics Information Consortium'),
(93927, 78222, 'es', 'name', 'Instituto Nacional de Ciencias Neurológicas'),
(93928, 78222, 'en', 'name', 'National Institute of Neurological Sciences'),
(93929, 78223, 'sv', 'name', 'Finlands SamhƤllsvetenskapliga Dataarkiv'),
(93930, 78223, 'en', 'name', 'Finnish Social Science Data Archive'),
(93931, 78223, 'fi', 'name', 'Yhteiskuntatieteellinen tietoarkisto'),
(93932, 78224, 'en', 'name', 'Flathead National Forest'),
(93933, 78225, 'en', 'name', 'The Cancer Imaging Archive'),
(93934, 78226, 'en', 'name', 'Lower Saxony State Agency for Water Management, Coastal Protection and Nature Conservation'),
(93935, 78226, 'de', 'name', 'Niedersächsischer Landesbetrieb für Wasserwirtschaft, Küsten- und Naturschutz'),
(93936, 78227, 'es', 'name', 'Instituto GeogrƔfico Nacional'),
(93937, 78227, 'en', 'name', 'National Geographic Institute'),
(93938, 78228, 'en', 'name', 'Scientific Institute of Rabat'),
(93939, 78228, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ł„Ł…ŁŠ الرباط'),
(93940, 78229, 'en', 'name', 'Autonomous University of Ica'),
(93941, 78229, 'es', 'name', 'Universidad Autónoma de Ica'),
(93942, 78230, 'de', 'name', 'Institut für Radio- und Informationssysteme – IRIS'),
(93943, 78230, 'en', 'name', 'Institute of Radio and Information Systems (IRIS)'),
(93944, 78231, 'es', 'name', 'Instituto Nacional de OftalmologĆ­a "Dr. Francisco Contreras Campos"'),
(93945, 78231, 'en', 'name', 'National Institute of Ophthalmology "Dr. Francisco Contreras Campos"'),
(93946, 78232, 'en', 'name', 'Panamanian Association for the Advancement of Science'),
(93947, 78233, 'es', 'name', 'Museo de Historia Natural'),
(93948, 78233, 'en', 'name', 'Museum of Natural History'),
(93949, 78234, 'en', 'name', 'National Autonomous University of Alto Amazonas'),
(93950, 78234, 'es', 'name', 'Universidad Nacional Autónoma de Alto Amazonas'),
(93951, 78235, 'en', 'name', 'Health and Wellbeing Queensland'),
(93952, 78236, 'es', 'name', 'Instituto Tecnológico de la Producción'),
(93953, 78236, 'en', 'name', 'Technological Institute of Production'),
(93954, 78237, 'no_lang_code', 'name', 'Paveprime'),
(93955, 78238, 'no_lang_code', 'name', 'Lexical Computing CZ'),
(93956, 78239, 'en', 'name', 'State University of Infrastructure and Technologies'),
(93957, 78239, 'uk', 'name', 'Š”Š•Š Š–ŠŠ’ŠŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢ Š†ŠŠ¤Š ŠŠ”Š¢Š Š£ŠšŠ¢Š£Š Š˜ ТА Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š†Š™'),
(93958, 78240, 'no_lang_code', 'name', 'Coral Publications'),
(93959, 78241, 'en', 'name', 'Digital Repository of Ireland'),
(93960, 78241, 'ga', 'name', 'Taisclann Dhigiteach na hƉireann'),
(93961, 78242, 'pt', 'name', 'Associação Brasileira de Editores Científicos'),
(93962, 78242, 'en', 'name', 'Brazilian Association of Scientific Editors'),
(93963, 78243, 'en', 'name', 'Oregon Water Resources Department'),
(93964, 78244, 'en', 'name', 'Nordre Ƙyeren Bird Observatory'),
(93965, 78244, 'no', 'name', 'Nordre Ƙyeren Fuglestasjon'),
(93966, 78245, 'en', 'name', 'Virtual Library of Virginia'),
(93967, 78246, 'en', 'name', 'Mataram College of Health Sciences'),
(93968, 78246, 'id', 'name', 'Sekolah Tinggi Ilmu Kesehatan (STIKES) Mataram'),
(93969, 78247, 'en', 'name', 'The Intergovernmental Committee on Surveying and Mapping'),
(93970, 78248, 'en', 'name', 'National University of CaƱete'),
(93971, 78248, 'es', 'name', 'Universidad Nacional de CaƱete'),
(93972, 78249, 'en', 'name', 'Bannari Amman Institute of Technology'),
(93973, 78250, 'en', 'name', 'Lviv University of Business and Law'),
(93974, 78250, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±Ń–Š·Š½ŠµŃŃƒ та права'),
(93975, 78251, 'no_lang_code', 'name', 'Lexical Computing'),
(93976, 78252, 'en', 'name', 'National University of Frontera'),
(93977, 78252, 'es', 'name', 'Universidad Nacional de Frontera'),
(93978, 78253, 'en', 'name', 'Canadian Centre for Electron Microscopy'),
(93979, 78254, 'de', 'name', 'Institut Papst Benedikt XVI.'),
(93980, 78254, 'en', 'name', 'Pope Benedict XVI Institute'),
(93981, 78255, 'en', 'name', 'Pontifical Biblical Institute'),
(93982, 78255, 'it', 'name', 'Pontificio Istituto Biblico'),
(93983, 78255, 'la', 'name', 'Pontificium Institutum Biblicum'),
(93984, 78256, 'en', 'name', 'Center for Scientific Collaboration and Community Engagement'),
(93985, 78257, 'en', 'name', 'Natural History Museum Maastricht'),
(93986, 78257, 'nl', 'name', 'Natuurhistorisch Museum Maastricht'),
(93987, 78258, 'es', 'name', 'Instituto Nacional de Salud del NiƱo-San Borja'),
(93988, 78258, 'en', 'name', 'National Institute of Child Health-San Borja'),
(93989, 78259, 'en', 'name', 'Shandong Institute of Advanced Technology'),
(93990, 78259, 'zh', 'name', 'å±±äøœé«˜ē­‰ęŠ€ęœÆē ”ē©¶é™¢'),
(93991, 78260, 'en', 'name', 'National Intercultural University of the Central Jungle Juan Santos Atahualpa'),
(93992, 78260, 'es', 'name', 'Universidad Nacional Intercultural de la Selva Central Juan Santos Atahualpa'),
(93993, 78261, 'en', 'name', 'National Autonomous University of Chota'),
(93994, 78261, 'es', 'name', 'Universidad Nacional Autónoma de Chota'),
(93995, 78262, 'en', 'name', 'Multiscale Bioimaging'),
(93996, 78263, 'en', 'name', 'Trabzon University'),
(93997, 78263, 'tr', 'name', 'Trabzon Üniversitesi'),
(93998, 78264, 'no_lang_code', 'name', 'Molecular Devices'),
(93999, 78265, 'es', 'name', 'Instituto Nacional de Salud Mental "Honorio Delgado - Hideyo Noguchi"'),
(94000, 78265, 'en', 'name', 'National Institute of Mental Health "Honorio Delgado - Hideyo Noguchi"'),
(94001, 78266, 'en', 'name', 'Academician F. H. Burchak Scientific-Research Institute of Private Law and Entrepreneurship'),
(94002, 78266, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГниq Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приватного права і піГприємництва імені акаГеміка Ф. Š“. Š‘ŃƒŃ€Ń‡Š°ŠŗŠ°'),
(94003, 78267, 'no_lang_code', 'name', 'ResearchGate'),
(94004, 78268, 'no_lang_code', 'name', 'Unichem Laboratories'),
(94005, 78269, 'en', 'name', 'T''Sou-ke First Nation'),
(94006, 78270, 'en', 'name', 'National Intercultural University "Fabiola Salazar Leguƍa" of Bagua'),
(94007, 78270, 'es', 'name', 'Universidad Nacional Intercultural "Fabiola Salazar Leguƍa" de Bagua'),
(94008, 78271, 'en', 'name', 'National University of JaƩn'),
(94009, 78271, 'es', 'name', 'Universidad Nacional de JaƩn'),
(94010, 78272, 'en', 'name', 'Japan Geoscience Union'),
(94011, 78272, 'ja', 'name', 'ę—„ęœ¬åœ°ēƒęƒ‘ę˜Ÿē§‘å­¦é€£åˆ'),
(94012, 78273, 'en', 'name', 'National University of Barranca'),
(94013, 78273, 'es', 'name', 'Universidad Nacional de Barranca'),
(94014, 78274, 'no_lang_code', 'name', 'Digital Health Cooperative Research Centre'),
(94015, 78275, 'en', 'name', 'Municipal Higher Education Institution "Kherson Academy of Continuing Education" of the Kherson Regional Council'),
(94016, 78275, 'uk', 'name', 'Комунальний вищий Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ заклаГ "Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń неперервної освіти" Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠ¾Ń— обласної раГи'),
(94017, 78276, 'en', 'name', 'MarĆ­a Auxiliadora University'),
(94018, 78276, 'es', 'name', 'Universidad MarĆ­a Auxiliadora'),
(94019, 78277, 'en', 'name', 'Nosivska Breeding And Research Station'),
(94020, 78277, 'uk', 'name', 'ŠŠ¾ŃŃ–Š²ŃŃŒŠŗŠ° селекційно-ГосліГна ŃŃ‚Š°Š½Ń†Ń–Ń'),
(94021, 78278, 'es', 'name', 'Centro Nacional de Investigaciones de CafƩ'),
(94022, 78278, 'en', 'name', 'National Coffee Research Center'),
(94023, 78279, 'en', 'name', 'Lakeland University Japan'),
(94024, 78280, 'no_lang_code', 'name', 'Gen-info'),
(94025, 78281, 'en', 'name', 'Invest in Open Infrastructure'),
(94026, 78282, 'no_lang_code', 'name', '4Science'),
(94027, 78283, 'en', 'name', 'Minnesota Geological Survey'),
(94028, 78284, 'en', 'name', 'Kansas State University Salina Aerospace and Technology Campus'),
(94029, 78285, 'cs', 'name', 'Fakultní nemocnice Plzeň'),
(94030, 78285, 'en', 'name', 'University Hospital Plzen'),
(94031, 78286, 'en', 'name', 'Data61'),
(94032, 78287, 'de', 'name', 'Landesamt für Umwelt, Naturschutz und Geologie'),
(94033, 78288, 'en', 'name', 'Beaufort Lagoon Ecosystems Long Term Ecological Research Network'),
(94034, 78289, 'en', 'name', 'Central Arizona–Phoenix Long Term Ecological Research'),
(94035, 78290, 'it', 'name', 'ENEA Centro Ricerche Trisaia'),
(94036, 78290, 'en', 'name', 'ENEA Trisaia Research Centre'),
(94037, 78291, 'sv', 'name', 'Finlands Artdatacenter'),
(94038, 78291, 'en', 'name', 'Finnish Biodiversity Information Facility'),
(94039, 78291, 'fi', 'name', 'Suomen Lajitietokeskus'),
(94040, 78292, 'en', 'name', 'Institute of Geosciences'),
(94041, 78293, 'no_lang_code', 'name', 'Gilson (United States)'),
(94042, 78294, 'en', 'name', 'Engineering Laboratory'),
(94043, 78295, 'no_lang_code', 'name', 'SPL L''Eau des Collines'),
(94044, 78296, 'no_lang_code', 'name', 'Carl Zeiss (Germany)'),
(94045, 78297, 'en', 'name', 'First United Methodist Church'),
(94046, 78298, 'no_lang_code', 'name', 'Eurofins (Netherlands)'),
(94047, 78299, 'it', 'name', 'ENEA Centro Ricerche Portici'),
(94048, 78299, 'en', 'name', 'ENEA Portici Research Centre'),
(94049, 78300, 'hu', 'name', 'Magyar BƔnyƔszati Ʃs Fƶldtani SzolgƔlat'),
(94050, 78300, 'en', 'name', 'Mining and Geological Survey of Hungary'),
(94051, 78301, 'es', 'name', 'Universidad TƩcnica de Cotopaxi'),
(94052, 78302, 'no_lang_code', 'name', 'Mission Therapeutics (United Kingdom)'),
(94053, 78303, 'no_lang_code', 'name', 'Juice Plus+ (United States)'),
(94054, 78304, 'en', 'name', 'Arecibo Observatory'),
(94055, 78305, 'en', 'name', 'Russian Customs Academy'),
(94056, 78305, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Ń‚Š°Š¼Š¾Š¶ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(94057, 78306, 'en', 'name', 'American University in Cairo New York Office'),
(94058, 78307, 'en', 'name', 'ENEA Brasimone Research Centre'),
(94059, 78307, 'it', 'name', 'ENEA Centro Ricerche Brasimone'),
(94060, 78308, 'en', 'name', 'Ministry of Education and Culture'),
(94061, 78309, 'en', 'name', 'Academy of Management of the Interior Ministry of Russia'),
(94062, 78309, 'ru', 'name', 'ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ Š£ŠŸŠ ŠŠ’Š›Š•ŠŠ˜ŠÆ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(94063, 78310, 'nl', 'name', 'De MuseumFabriek'),
(94064, 78310, 'en', 'name', 'The MuseumFactory'),
(94065, 78311, 'en', 'name', 'Andrews Forest Long Term Ecological Research'),
(94066, 78312, 'ca', 'name', 'Agrotecnio (Fundació UdL-IRTA)'),
(94067, 78312, 'en', 'name', 'Agrotecnio - Centre for Food and Agriculture Research'),
(94068, 78313, 'no_lang_code', 'name', 'Trelleborg (Sweden)'),
(94069, 78314, 'en', 'name', 'Central Military Commission'),
(94070, 78314, 'zh', 'name', 'äø­å¤®å†›äŗ‹å§”å‘˜ä¼š'),
(94071, 78315, 'en', 'name', 'Bridgeport Public Library'),
(94072, 78316, 'no_lang_code', 'name', 'Rusal (Russia)'),
(94073, 78316, 'ru', 'name', 'ŠžŠš РУДАЛ'),
(94074, 78317, 'no_lang_code', 'name', 'Danubius University'),
(94075, 78317, 'sk', 'name', 'VysokÔ Ŕkola Danubius'),
(94076, 78318, 'en', 'name', 'Geophysics GPR International'),
(94077, 78318, 'fr', 'name', 'Geophysique GPR International'),
(94078, 78319, 'en', 'name', 'North Pacific Anadromous Fish Commission'),
(94079, 78320, 'no_lang_code', 'name', 'China Aerospace Science and Industry Corporation (China)'),
(94080, 78320, 'zh', 'name', 'äø­å›½čˆŖå¤©ē§‘å·„é›†å›¢å…¬åø'),
(94081, 78321, 'en', 'name', 'GW4'),
(94082, 78322, 'en', 'name', 'Oman Dental College'),
(94083, 78322, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© عمان لطب الأسنان'),
(94084, 78323, 'nl', 'name', 'Ziekenhuis Rivierenland'),
(94085, 78324, 'it', 'name', 'Fondazione Querini Stampalia'),
(94086, 78325, 'en', 'name', 'Comunidades Latinas Unidas En Servicio'),
(94087, 78326, 'es', 'name', 'Fundación Universitaria Horizonte'),
(94088, 78327, 'en', 'name', 'Konza Prairie Long Term Ecological Research'),
(94089, 78328, 'en', 'name', 'Human Computation Institute'),
(94090, 78329, 'fr', 'name', 'Centre intƩgrƩ universitaire de santƩ et de services sociaux de la Mauricie-et-du-Centre-du-QuƩbec'),
(94091, 78330, 'no_lang_code', 'name', 'Eiffage (France)'),
(94092, 78331, 'nl', 'name', 'Artesis Plantijn Hogeschool Antwerpen'),
(94093, 78332, 'no_lang_code', 'name', 'Just Associates (United States)'),
(94094, 78333, 'en', 'name', 'Biomedical Research Institute of Girona'),
(94095, 78333, 'ca', 'name', 'Institut d''Investigació Biomèdica de Girona'),
(94096, 78334, 'de', 'name', 'Fachkrankenhaus Kloster Grafschaft'),
(94097, 78335, 'en', 'name', 'U SPORTS'),
(94098, 78336, 'en', 'name', 'Hellenic Parliament'),
(94099, 78337, 'no_lang_code', 'name', 'Blazegraph (United States)'),
(94100, 78338, 'de', 'name', 'Christiani'),
(94101, 78339, 'cs', 'name', 'Fakultnƭ nemocnice KrƔlovskƩ Vinohrady'),
(94102, 78339, 'en', 'name', 'University Hospital Kralovske Vinohrady'),
(94103, 78340, 'fr', 'name', 'HƓpital Saint-Jacques'),
(94104, 78341, 'en', 'name', 'Kuban State University of Physical Education, Sport and Tourism'),
(94105, 78341, 'ru', 'name', 'Кубанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(94106, 78342, 'no_lang_code', 'name', 'Reaction Biology (Germany)'),
(94107, 78343, 'en', 'name', 'Center for Research and Interdisciplinarity'),
(94108, 78343, 'fr', 'name', 'Centre de Recherches Interdisciplinaires'),
(94109, 78344, 'en', 'name', 'Institute for Microelectronics and Microsystems'),
(94110, 78344, 'it', 'name', 'Istituto per la Microelettronica e Microsistemi'),
(94111, 78345, 'en', 'name', 'Shupyk National Healthcare University of Ukraine'),
(94112, 78345, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ охорони зГоров''я України імені П. Š›. Шупика'),
(94113, 78346, 'no_lang_code', 'name', 'Mendeley (United Kingdom)'),
(94114, 78347, 'en', 'name', 'International Performance Research Institute'),
(94115, 78348, 'de', 'name', 'Institut für Axiologische Forschungen'),
(94116, 78348, 'en', 'name', 'Institute of Axiological Research'),
(94117, 78349, 'nl', 'name', 'De Bastei'),
(94118, 78350, 'en', 'name', 'National Research Council Institute for Biodiagnostics'),
(94119, 78351, 'no_lang_code', 'name', 'Schiffbau-Versuchsanstalt Potsdam (Germany)'),
(94120, 78352, 'en', 'name', 'International Academy of Business and New Technologies'),
(94121, 78352, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ бизнеса Šø новых технологий'),
(94122, 78353, 'en', 'name', 'Utah Tech University'),
(94123, 78354, 'en', 'name', 'The Priory Hospital'),
(94124, 78355, 'en', 'name', 'International Institute of Innovation and Technology'),
(94125, 78356, 'no_lang_code', 'name', 'Samsung (United States)'),
(94126, 78357, 'no_lang_code', 'name', 'BioPhorum (United Kingdom)'),
(94127, 78358, 'en', 'name', 'Perm State Humanitarian-Pedagogical University'),
(94128, 78358, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(94129, 78359, 'no_lang_code', 'name', 'VASP Software (Austria)'),
(94130, 78360, 'en', 'name', 'National Atmospheric Deposition Program'),
(94131, 78361, 'en', 'name', 'British Beekeepers Association'),
(94132, 78362, 'nl', 'name', 'Bravis Ziekenhuis'),
(94133, 78363, 'no_lang_code', 'name', 'Fera Science (United Kingdom)'),
(94134, 78364, 'en', 'name', 'Kathmandu Cancer Center'),
(94135, 78365, 'en', 'name', 'Home and Community Care Support Services'),
(94136, 78365, 'fr', 'name', 'Services de soutien Ć  domicile et en milieu communautaire'),
(94137, 78366, 'no_lang_code', 'name', 'Tieto (Finland)'),
(94138, 78367, 'en', 'name', 'Salve Regina University'),
(94139, 78368, 'en', 'name', 'Shandong Institute of Automation'),
(94140, 78368, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢č‡ŖåŠØåŒ–ē ”ē©¶ę‰€ęˆ'),
(94141, 78369, 'en', 'name', 'Groundswell Fund'),
(94142, 78370, 'et', 'name', 'Justiitsministeerium'),
(94143, 78370, 'en', 'name', 'Ministry of Justice'),
(94144, 78371, 'en', 'name', 'Harvard Forest Long Term Ecological Research'),
(94145, 78372, 'no_lang_code', 'name', 'Senzoku Gakuen College of Music'),
(94146, 78372, 'ja', 'name', 'ę“—č¶³å­¦åœ’éŸ³ę„½å¤§å­¦'),
(94147, 78373, 'es', 'name', 'Universidad de la Ciudad de Buenos Aires'),
(94148, 78374, 'en', 'name', 'Moscow Automobile and Road Construction State Technical University'),
(94149, 78374, 'ru', 'name', 'Московский Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾-Горожный Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(94150, 78375, 'en', 'name', 'Johnson & Wales University'),
(94151, 78376, 'en', 'name', 'Platov South-Russian State Polytechnic University'),
(94152, 78376, 'ru', 'name', 'Южно-Российский Š³Š¾ŃŃƒŠ“арственный политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ (ŠŠŸŠ˜) имени М.И. ŠŸŠ»Š°Ń‚Š¾Š²Š°'),
(94153, 78377, 'id', 'name', 'Universitas ''Aisyiyah Bandung'),
(94154, 78378, 'en', 'name', 'Congregation Emanu El of New York'),
(94155, 78379, 'en', 'name', 'Hunter College'),
(94156, 78380, 'en', 'name', 'Nizhny Novgorod Academy of the Ministry of Internal Affairs of Russia'),
(94157, 78380, 'ru', 'name', 'ŠŠ˜Š–Š•Š“ŠžŠ ŠžŠ”Š”ŠšŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(94158, 78381, 'en', 'name', 'Hellenic Institute of Metrology'),
(94159, 78381, 'el', 'name', 'Ελληνικο Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻ…Ļ„Īæ ĪœĪµĻ„ĻĪæĪ»ĪæĪ³Ī¹Ī±Ļ‚'),
(94160, 78382, 'no_lang_code', 'name', 'Kattaikkuttu Sangam'),
(94161, 78383, 'en', 'name', 'Rostov State University of Economics'),
(94162, 78383, 'ru', 'name', 'Ростовский Š³Š¾ŃŃƒŠ“арственный ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(94163, 78384, 'nl', 'name', 'AZ Sint-Lucas'),
(94164, 78385, 'en', 'name', 'Owensboro Health'),
(94165, 78386, 'no_lang_code', 'name', 'Selective Catalytic Reduction (United States)'),
(94166, 78387, 'en', 'name', 'Asahikawa Medical University'),
(94167, 78387, 'ja', 'name', 'ę—­å·åŒ»ē§‘å¤§å­¦'),
(94168, 78388, 'it', 'name', 'Istituto Nazionale di Metrologia delle Radiazioni Ionizzanti'),
(94169, 78388, 'en', 'name', 'National Institute of Ionizing Radiation Metrology'),
(94170, 78389, 'no_lang_code', 'name', 'Heineken (Netherlands)'),
(94171, 78389, 'nl', 'name', 'Heineken Pilsener'),
(94172, 78390, 'en', 'name', 'Glaucoma Research Society of Canada'),
(94173, 78390, 'fr', 'name', 'SociƩtƩ canadienne de recherche sur le glaucome'),
(94174, 78391, 'no_lang_code', 'name', 'Metrica (United States)'),
(94175, 78392, 'no_lang_code', 'name', 'ProQuest (United States)'),
(94176, 78393, 'no_lang_code', 'name', 'Technicolor (Germany)'),
(94177, 78394, 'en', 'name', 'Higher Institute for Artistic Industries Roma'),
(94178, 78394, 'it', 'name', 'Istituto Superiore per le Industrie Artistiche'),
(94179, 78395, 'lt', 'name', 'Lietuvos socialiniu mokslu centras'),
(94180, 78395, 'en', 'name', 'Lithuanian Centre for Social Sciences'),
(94181, 78396, 'no_lang_code', 'name', 'Wikov (Czechia)'),
(94182, 78397, 'en', 'name', 'Tambov Military Aviation Engineering Institute'),
(94183, 78397, 'ru', 'name', 'Тамбовский военный авиационный инженерный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(94184, 78398, 'en', 'name', 'Flexible Learning Association of New Zealand'),
(94185, 78399, 'en', 'name', 'National Biodiversity Network Trust'),
(94186, 78400, 'en', 'name', 'Council for Scientific and Industrial Research'),
(94187, 78401, 'en', 'name', 'Sha''ar Menashe Mental Health Center'),
(94188, 78401, 'he', 'name', '×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש- בית חולים שער מנשה'),
(94189, 78402, 'no_lang_code', 'name', 'Rocscience (Canada)'),
(94190, 78403, 'no_lang_code', 'name', 'IriSys (United States)'),
(94191, 78404, 'de', 'name', 'Deutsches Historisches Institut London'),
(94192, 78404, 'en', 'name', 'German Historical Institute London'),
(94193, 78405, 'en', 'name', 'Canadian Agricultural Economics Society'),
(94194, 78405, 'fr', 'name', 'SociƩtƩ Canadienne d''AgroƩconomie'),
(94195, 78406, 'fr', 'name', 'UniversitĆ© d''Ɖtat wright'),
(94196, 78406, 'en', 'name', 'Wright State University'),
(94197, 78407, 'en', 'name', 'Torbay and South Devon NHS Foundation Trust'),
(94198, 78408, 'no_lang_code', 'name', 'Surgical Innovations (United Kingdom)'),
(94199, 78409, 'en', 'name', 'Hubbard Brook Long Term Ecological Research'),
(94200, 78410, 'en', 'name', 'Mason County District Library'),
(94201, 78411, 'no', 'name', 'Helse- og omsorgsministeren'),
(94202, 78411, 'en', 'name', 'Ministry of Health and Care Services'),
(94203, 78412, 'no_lang_code', 'name', 'GIRD Systems (United States)'),
(94204, 78413, 'en', 'name', 'Intermountain Healthcare'),
(94205, 78414, 'no_lang_code', 'name', 'Mavenir (Israel)'),
(94206, 78415, 'en', 'name', 'International College of Defence Studies'),
(94207, 78415, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›å›½é˜²å¤§å­¦å›½é™…é˜²åŠ”å­¦é™¢'),
(94208, 78416, 'en', 'name', 'Continental Scientific Drilling Facility'),
(94209, 78417, 'en', 'name', 'Ministry of Jobs, Economic Recovery and Innovation'),
(94210, 78418, 'it', 'name', 'Fondazione Museo Civico di Rovereto'),
(94211, 78418, 'en', 'name', 'Rovereto Civic Museum Foundation'),
(94212, 78419, 'en', 'name', 'Institute of New Materials'),
(94213, 78419, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢ę–°ęę–™ē ”ē©¶ę‰€'),
(94214, 78420, 'en', 'name', 'Borowiec Astrogeodynamic Observatory'),
(94215, 78420, 'pl', 'name', 'Obserwatorium Astrogeodynamiczne w Borówcu'),
(94216, 78421, 'en', 'name', 'Directorate of Measures and Precious Metals of the Republic of Serbia'),
(94217, 78421, 'sl', 'name', 'Direkcija za mere i dragocene metale'),
(94218, 78421, 'sr', 'name', 'Š”ŠøŃ€ŠµŠŗŃ†ŠøŃ˜Šµ за мере Šø Грагоцене метале'),
(94219, 78422, 'de', 'name', 'Hannoversche Kinderheilanstalt'),
(94220, 78423, 'en', 'name', 'Institute for Matching Person and Technology'),
(94221, 78424, 'en', 'name', 'Department of Aerospace Science and Technology'),
(94222, 78425, 'en', 'name', 'MUFG Bank (United Kingdom)'),
(94223, 78426, 'it', 'name', 'Ospedale Papa Giovanni XXIII'),
(94224, 78427, 'it', 'name', 'ENEA Centro Ricerche Santa Teresa'),
(94225, 78427, 'en', 'name', 'ENEA Santa Teresa Research Centre'),
(94226, 78428, 'hi', 'name', 'Ramakrishna Mission Vidyamandira'),
(94227, 78428, 'bn', 'name', 'ą¦°ą¦¾ą¦®ą¦•ą§ƒą¦·ą§ą¦£ মিশন'),
(94228, 78429, 'en', 'name', 'Sarah Cannon Research Institute'),
(94229, 78430, 'en', 'name', 'HELIN Library Consortium'),
(94230, 78431, 'no_lang_code', 'name', 'P2i (United Kingdom)'),
(94231, 78432, 'en', 'name', 'Kazan State University of Architecture and Engineering'),
(94232, 78432, 'ru', 'name', 'Казанский Š³Š¾ŃŃƒŠ“арственный Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-инженерный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(94233, 78433, 'en', 'name', 'Vaganova Ballet Academy'),
(94234, 78433, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Русского балета имени А. ŠÆ. Вагановой'),
(94235, 78434, 'ca', 'name', 'Institut Català d''Investigació Química'),
(94236, 78434, 'en', 'name', 'Institute of Chemical Research of Catalonia'),
(94237, 78435, 'ga', 'name', 'Garraithe NÔisiúnta na Lus'),
(94238, 78435, 'en', 'name', 'National Botanic Gardens of Ireland'),
(94239, 78436, 'en', 'name', 'Knox'),
(94240, 78437, 'en', 'name', 'Lueji A''Nkonde University'),
(94241, 78437, 'pt', 'name', 'Universidade Lueji A''nkonde'),
(94242, 78438, 'en', 'name', 'Georgia Coastal Ecosystems Long Term Ecological Research'),
(94243, 78439, 'fr', 'name', 'Centre commun de recherche'),
(94244, 78439, 'it', 'name', 'Centro Comune di Ricerca'),
(94245, 78439, 'de', 'name', 'Gemeinsame Forschungsstelle'),
(94246, 78439, 'en', 'name', 'Joint Research Centre'),
(94247, 78440, 'es', 'name', 'Hospital Universitario La Paz'),
(94248, 78441, 'no_lang_code', 'name', 'Acide Carbonique Pur (Belgium)'),
(94249, 78442, 'nl', 'name', 'St. Anna Ziekenhuis'),
(94250, 78443, 'nl', 'name', 'Sint Franciscus Gasthuis'),
(94251, 78444, 'no_lang_code', 'name', 'Almayzab Digital Library'),
(94252, 78444, 'ar', 'name', 'Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ł…ŁŠŲ²Ų§ŲØ Ų§Ł„Ų±Ł‚Ł…ŁŠŲ©'),
(94253, 78445, 'en', 'name', 'Railway and Canal Historical Society'),
(94254, 78446, 'en', 'name', 'Shifa International Hospital'),
(94255, 78447, 'en', 'name', 'Countess of Chester Hospital NHS Foundation Trust'),
(94256, 78448, 'en', 'name', 'Canadian Philosophical Association'),
(94257, 78448, 'fr', 'name', 'L''Association Canadienne de Philosophie'),
(94258, 78449, 'nl', 'name', 'Groene Hart Ziekenhuis'),
(94259, 78450, 'en', 'name', 'Ministry of Agriculture'),
(94260, 78451, 'en', 'name', 'Tameside Hospital'),
(94261, 78452, 'sl', 'name', 'Å KUC Association'),
(94262, 78453, 'en', 'name', 'Corner House'),
(94263, 78454, 'en', 'name', 'Nizhny Tagil State Socio-Pedagogical Institute'),
(94264, 78454, 'ru', 'name', 'ŠŠøŠ¶Š½ŠµŃ‚Š°Š³ŠøŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(94265, 78455, 'en', 'name', 'Belfast City Council'),
(94266, 78456, 'en', 'name', 'Pike County Schools'),
(94267, 78457, 'en', 'name', 'Randall University'),
(94268, 78458, 'en', 'name', 'Arctic State Institute of Culture and Arts'),
(94269, 78458, 'ru', 'name', 'Арктический Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(94270, 78459, 'en', 'name', 'Norfolk Public Library'),
(94271, 78460, 'en', 'name', 'Newburgh Free Library'),
(94272, 78461, 'en', 'name', 'MIRCORE'),
(94273, 78462, 'nl', 'name', 'Universiteitsmuseum Utrecht'),
(94274, 78462, 'en', 'name', 'University Museum Utrecht'),
(94275, 78463, 'en', 'name', 'International Water Association'),
(94276, 78464, 'no_lang_code', 'name', 'Aptiv (United States)'),
(94277, 78465, 'fr', 'name', 'Commissariat Ơ la Protection de la vie PrivƩe du Canada'),
(94278, 78465, 'en', 'name', 'Office of the Privacy Commissioner of Canada'),
(94279, 78466, 'en', 'name', 'Skin Research Center'),
(94280, 78467, 'en', 'name', 'Joint Fire Science Program'),
(94281, 78468, 'it', 'name', 'Azienda Ospedaliera Universitaria Pisana'),
(94282, 78468, 'en', 'name', 'University Hospital of Pisa'),
(94283, 78469, 'en', 'name', 'Hawk Mountain Sanctuary'),
(94284, 78470, 'en', 'name', 'Oklahoma State University'),
(94285, 78471, 'en', 'name', 'Providence College'),
(94286, 78472, 'no_lang_code', 'name', 'Ocellus (United States)'),
(94287, 78473, 'no_lang_code', 'name', 'Altimmune (United States)'),
(94288, 78474, 'en', 'name', 'World Vision'),
(94289, 78475, 'en', 'name', 'Luquillo Long Term Ecological Research'),
(94290, 78476, 'en', 'name', 'Jornada Basin Long Term Ecological Research'),
(94291, 78477, 'en', 'name', 'Institute of Biochemistry and Biophysics, Polish Academy of Sciences'),
(94292, 78477, 'pl', 'name', 'Instytut Biochemii i Biofizyki Polskiej Akademii Nauk'),
(94293, 78478, 'en', 'name', 'Institute of Geological Sciences'),
(94294, 78478, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологічних наук ŠŠŠ України'),
(94295, 78479, 'no_lang_code', 'name', 'Fluid Gravity Engineering (United Kingdom)'),
(94296, 78480, 'en', 'name', 'The Ilya Glazunov Russian Academy of Painting, Sculpture and Architecture'),
(94297, 78480, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ живописи, Š²Š°ŃŠ½ŠøŃ Šø зоГчества Ильи Š“Š»Š°Š·ŃƒŠ½Š¾Š²Š°'),
(94298, 78481, 'fr', 'name', 'Association Canadienne des Sports en Fauteuil Roulant'),
(94299, 78481, 'en', 'name', 'Wheelchair Rugby Canada'),
(94300, 78482, 'no_lang_code', 'name', 'Furuno (Japan)'),
(94301, 78482, 'ja', 'name', 'å¤é‡Žé›»ę°—ę Ŗå¼ä¼šē¤¾'),
(94302, 78483, 'cs', 'name', 'LĆ©Äebna Dlouhodobě Nemocných'),
(94303, 78484, 'it', 'name', 'Istituto Ortopedico Rizzoli'),
(94304, 78484, 'en', 'name', 'Rizzoli Orthopaedic Institute'),
(94305, 78485, 'en', 'name', 'Evangelical School of Social Work & Diakonie'),
(94306, 78485, 'de', 'name', 'Evangelische Hochschule für Soziale Arbeit & Diakonie'),
(94307, 78486, 'no_lang_code', 'name', 'Jiangling Motors Corporation (China)'),
(94308, 78486, 'zh', 'name', 'ę±Ÿé“ƒę±½č½¦å…¬åø'),
(94309, 78487, 'en', 'name', 'Southern Urals Biophysics Institute'),
(94310, 78487, 'sl', 'name', 'Ûžno-Ural''skij institut biofiziki'),
(94311, 78487, 'ru', 'name', 'Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики'),
(94312, 78488, 'en', 'name', 'International Severe Acute Respiratory and Emerging Infection Consortium'),
(94313, 78489, 'en', 'name', 'Chinese Mathematical Society'),
(94314, 78489, 'zh', 'name', 'äø­å›½ę•°å­¦ä¼š'),
(94315, 78490, 'en', 'name', 'British Society for Geomorphology'),
(94316, 78491, 'en', 'name', 'Orot Israel College'),
(94317, 78491, 'he', 'name', '×ž×›×œ×œ×Ŗ אורות ×™×©×Ø××œ'),
(94318, 78492, 'en', 'name', 'Kent and Medway Medical School'),
(94319, 78493, 'no_lang_code', 'name', 'Electrolux (Italy)'),
(94320, 78494, 'en', 'name', 'Shandong Academy of Sciences'),
(94321, 78494, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢'),
(94322, 78495, 'en', 'name', 'Chamber of Commerce of Metropolitan Montreal'),
(94323, 78495, 'fr', 'name', 'Chambre de commerce du MontrƩal mƩtropolitain'),
(94324, 78496, 'nl', 'name', 'Canisius-Wilhelmina Ziekenhuis'),
(94325, 78497, 'no_lang_code', 'name', 'Cougaar Software (United States)'),
(94326, 78498, 'en', 'name', 'Guangdong Greater Bay Area Institute of Integrated Circuit and System'),
(94327, 78498, 'zh', 'name', 'å¹æäøœēœå¤§ę¹¾åŒŗé›†ęˆē”µč·ÆäøŽē³»ē»Ÿåŗ”ē”Øē ”ē©¶é™¢'),
(94328, 78499, 'fr', 'name', 'Conseil des relations internationales de MontrƩal'),
(94329, 78499, 'en', 'name', 'Montreal Council on Foreign Relations'),
(94330, 78500, 'en', 'name', 'Institute of Social and Political Psychology'),
(94331, 78500, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†Ń–Š°Š»ŃŒŠ½Š¾Ń— та політичної психології ŠŠŠŸŠ України'),
(94332, 78501, 'en', 'name', 'Leibniz Institute of Atmospheric Physics at the Rostock University'),
(94333, 78501, 'de', 'name', 'Leibniz-Institut für Atmosphärenphysik'),
(94334, 78502, 'no_lang_code', 'name', 'Pepsi (United States)'),
(94335, 78503, 'en', 'name', 'Institute for Biological Systems'),
(94336, 78503, 'it', 'name', 'Istituto per i Sistemi Biologici'),
(94337, 78504, 'no_lang_code', 'name', 'Ultra Electronics (United States)'),
(94338, 78505, 'en', 'name', 'ENEA Brindisi Research Centre'),
(94339, 78505, 'it', 'name', 'ENEA Centro Ricerche Brindisi'),
(94340, 78506, 'en', 'name', 'Parks and Wildlife Commission of the Northern Territory'),
(94341, 78507, 'en', 'name', 'Oku Okut Association'),
(94342, 78507, 'tr', 'name', 'Oku Okut Derneği'),
(94343, 78508, 'en', 'name', 'Institute for Research in Biomedicine'),
(94344, 78509, 'en', 'name', 'Ohio University Eastern'),
(94345, 78510, 'en', 'name', 'St. Petersburg Research Center of the Russian Academy of Sciences'),
(94346, 78510, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š ŠŠ'),
(94347, 78511, 'es', 'name', 'Instituto Peruano de Orientación Psicológica'),
(94348, 78512, 'en', 'name', 'Heatherwood Hospital'),
(94349, 78513, 'en', 'name', 'CRC Robotics'),
(94350, 78514, 'en', 'name', 'Belarusian State Institute for Metrology'),
(94351, 78514, 'be', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(94352, 78515, 'en', 'name', 'Institute for Informatics and Automation Problems'),
(94353, 78516, 'no_lang_code', 'name', 'Atossa Therapeutics (United States)'),
(94354, 78517, 'no_lang_code', 'name', 'Computable Publishing'),
(94355, 78518, 'en', 'name', 'Central Midlands Council of Governments'),
(94356, 78519, 'es', 'name', 'Ministerio de Economía, Fomento y Reconstrucción de Chile'),
(94357, 78519, 'en', 'name', 'Ministry of Economy, Development and Tourism'),
(94358, 78520, 'no_lang_code', 'name', 'DataKind'),
(94359, 78521, 'it', 'name', 'ENEA Casaccia Research Centre'),
(94360, 78522, 'no_lang_code', 'name', 'Public Power Corporation (Greece)'),
(94361, 78523, 'en', 'name', 'Moline Public Library'),
(94362, 78524, 'es', 'name', 'Universidad Internacional de Ciencia y TecnologĆ­a - UNICyT'),
(94363, 78525, 'no_lang_code', 'name', 'L3Harris (United Kingdom)'),
(94364, 78526, 'en', 'name', 'FitzPatrick Institute of African Ornithology'),
(94365, 78527, 'en', 'name', 'The All-Russian State University of Justice'),
(94366, 78527, 'ru', 'name', 'Всероссийский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŽŃŃ‚ŠøŃ†ŠøŠø'),
(94367, 78528, 'en', 'name', 'Kamioka Observatory'),
(94368, 78528, 'ja', 'name', 'ē„žå²”å®‡å®™ē“ ē²’å­ē ”ē©¶ę–½čØ­'),
(94369, 78529, 'de', 'name', 'Deutsches Zentrum für Integrations- und Migrationsforschung'),
(94370, 78529, 'en', 'name', 'German Center for Integration and Migration Research'),
(94371, 78530, 'en', 'name', 'Roger Williams University'),
(94372, 78531, 'en', 'name', 'Geological Survey of Slovenia'),
(94373, 78531, 'sl', 'name', 'GeoloŔki zavod Slovenije'),
(94374, 78532, 'en', 'name', 'Max Planck Institute for the Study of Crime, Security and Law'),
(94375, 78532, 'de', 'name', 'Max-Planck-Institut zur Erforschung von KriminalitƤt, Sicherheit und Recht'),
(94376, 78533, 'en', 'name', 'Federico Santa MarĆ­a Technical University'),
(94377, 78533, 'es', 'name', 'Universidad TƩcnica Federico Santa Marƭa'),
(94378, 78534, 'en', 'name', 'Institute for Economics and Forecasting of the National Academy of Sciences of Ukraine'),
(94379, 78534, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€Ń твенное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ā€œŠ˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Š½ŠøŃ ŠŠŠ Š£ŠŗŃ€Š°ŠøŠ½Ń‹ā€'),
(94380, 78534, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіки та ŠæŃ€Š¾Š³Š½Š¾Š·ŃƒŠ²Š°Š½Š½Ń ŠŠŠ Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(94381, 78535, 'en', 'name', 'Asahikawa Medical College Hospital'),
(94382, 78535, 'ja', 'name', 'ę—­å·åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(94383, 78536, 'iu', 'name', 'Inuit Tapiriit Kanatami'),
(94384, 78537, 'en', 'name', 'Delhi Pharmaceutical Science and Research University'),
(94385, 78538, 'en', 'name', 'Penza State Pedagogical University'),
(94386, 78539, 'en', 'name', 'Frimley Park Hospital'),
(94387, 78540, 'no_lang_code', 'name', 'FlowJo (United States)'),
(94388, 78541, 'en', 'name', 'Florida Coastal Everglades Long Term Ecological Research'),
(94389, 78542, 'en', 'name', 'Cary Institute of Ecosystem Studies'),
(94390, 78543, 'en', 'name', 'Fayette County Public Schools'),
(94391, 78544, 'fr', 'name', 'Ɖcole des Cadres'),
(94392, 78545, 'en', 'name', 'Lincoln Public Library'),
(94393, 78546, 'en', 'name', 'Knowledge Network for Biocomplexity'),
(94394, 78547, 'nl', 'name', 'Laurentius Ziekenhuis'),
(94395, 78548, 'en', 'name', 'State Agricultural Academy of Velikie Luki'),
(94396, 78548, 'ru', 'name', 'Š’ŠµŠ»ŠøŠŗŠ¾Š»ŃƒŠŗŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(94397, 78549, 'en', 'name', 'St Anna Children''s Hospital'),
(94398, 78549, 'de', 'name', 'St. Anna Kinderspital'),
(94399, 78550, 'fr', 'name', 'Association Canadienne des GƩographes'),
(94400, 78550, 'en', 'name', 'Canadian Association of Geographers'),
(94401, 78551, 'no_lang_code', 'name', 'Kulicke & Soffa (United States)'),
(94402, 78552, 'en', 'name', 'Ministry of Economy'),
(94403, 78552, 'mk', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ за економија'),
(94404, 78553, 'en', 'name', 'ENEA Bologna Research Centre'),
(94405, 78553, 'it', 'name', 'ENEA Centro Ricerche Bologna'),
(94406, 78554, 'en', 'name', 'Beijing Ditan Hospital'),
(94407, 78554, 'zh', 'name', 'åŒ—äŗ¬åœ°å›åŒ»é™¢'),
(94408, 78555, 'en', 'name', 'Yellowstone National Park'),
(94409, 78556, 'nl', 'name', 'Flevoziekenhuis'),
(94410, 78557, 'en', 'name', 'Center for Northern Studies'),
(94411, 78557, 'fr', 'name', 'Centre d''Ʃtudes nordiques'),
(94412, 78558, 'es', 'name', 'Fundación Grupo para la Investigación, Formación, y Edición Transdisciplinar'),
(94413, 78559, 'es', 'name', 'Real Instituto y Observatorio de la Armada'),
(94414, 78559, 'en', 'name', 'Royal Institute and Observatory of the Spanish Navy'),
(94415, 78560, 'en', 'name', 'Institute for Digitalisation of Education of the NAES of Ukraine'),
(94416, 78560, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цифровізації освіти ŠŠŠŸŠ України'),
(94417, 78561, 'hu', 'name', 'AgrƔrminisztƩrium'),
(94418, 78561, 'en', 'name', 'Ministry of Agriculture'),
(94419, 78562, 'no_lang_code', 'name', 'Sivantos (Germany)'),
(94420, 78563, 'en', 'name', 'Bremen University of Applied Sciences'),
(94421, 78563, 'de', 'name', 'Hochschule Bremen'),
(94422, 78564, 'en', 'name', 'Keene State College'),
(94423, 78565, 'no_lang_code', 'name', 'International Water Association Publishing'),
(94424, 78566, 'en', 'name', 'Cell Therapy Catapult'),
(94425, 78567, 'de', 'name', 'Landesinstitut für Pädagogik und Medien'),
(94426, 78568, 'no_lang_code', 'name', 'Beijing Institute of Radio Metrology and Measurement'),
(94427, 78568, 'zh', 'name', 'åŒ—äŗ¬ę— ēŗæē”µęµ‹é‡ē ”ē©¶ę‰€'),
(94428, 78569, 'en', 'name', 'DRDO Young Scientist Laboratory'),
(94429, 78570, 'no_lang_code', 'name', 'Parallel Quantum Solutions (United States)'),
(94430, 78571, 'en', 'name', 'Horlivka Institute for Foreign Languages'),
(94431, 78571, 'uk', 'name', 'Š“Š¾Ń€Š»Ń–Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ іноземних мов'),
(94432, 78572, 'no_lang_code', 'name', 'Meito Sangyo (Japan)'),
(94433, 78573, 'no_lang_code', 'name', 'Enzen (India)'),
(94434, 78574, 'en', 'name', 'Utah System of Higher Education'),
(94435, 78575, 'fr', 'name', 'Association Nationale qui Représente les Intérêts Communs des Services Publics'),
(94436, 78575, 'en', 'name', 'Canadian Water and Wastewater Association'),
(94437, 78576, 'de', 'name', 'Institut zur QualitƤtsentwicklung im Bildungswesen'),
(94438, 78576, 'en', 'name', 'Institute for Educational Quality Improvement'),
(94439, 78577, 'cy', 'name', 'Llyfrgell Genedlaethol yr Alban'),
(94440, 78577, 'en', 'name', 'National Library of Scotland'),
(94441, 78578, 'de', 'name', 'DVGW-Forschungsstelle am Engler-Bunte-Institut des Karlsruher Instituts für Technologie'),
(94442, 78579, 'en', 'name', 'Clifton Hospital'),
(94443, 78580, 'en', 'name', 'Mastery Charter Schools'),
(94444, 78581, 'fr', 'name', 'HƓpital juif de rƩadaptation'),
(94445, 78581, 'en', 'name', 'Jewish Rehabilitation Hospital'),
(94446, 78582, 'en', 'name', 'Green Chemistry');
INSERT INTO `ror_settings` VALUES
(94447, 78582, 'pl', 'name', 'Zielona Chemia'),
(94448, 78583, 'en', 'name', 'Miller Dwan Foundation'),
(94449, 78584, 'en', 'name', 'Astronomical Observatory of Cagliari'),
(94450, 78584, 'it', 'name', 'Osservatorio Astronomico di Cagliari'),
(94451, 78585, 'no_lang_code', 'name', 'PRT Growing Services (Canada)'),
(94452, 78586, 'no_lang_code', 'name', 'Q Chem (United States)'),
(94453, 78587, 'en', 'name', 'Downers Grove Public Library'),
(94454, 78588, 'en', 'name', 'Spokane Public Library'),
(94455, 78589, 'no_lang_code', 'name', 'Tikkurila (Finland)'),
(94456, 78590, 'en', 'name', 'Specialized Cardiosurgical Clinical Hospital named after Academician B.A. Korolev'),
(94457, 78590, 'ru', 'name', 'Š”ŠæŠµŃ†ŠøŠ°Š»ŠøŠ·ŠøŃ€Š¾Š²Š°Š½Š½Š°Ń ŠŗŠ°Ń€Š“ŠøŠ¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(94458, 78591, 'en', 'name', 'UK Web Archive'),
(94459, 78592, 'no_lang_code', 'name', 'Novana (United States)'),
(94460, 78593, 'it', 'name', 'Centro Ricerche Musicali'),
(94461, 78594, 'es', 'name', 'Universidad de las Artes'),
(94462, 78595, 'en', 'name', 'Wheaton College - Massachusetts'),
(94463, 78596, 'en', 'name', 'Saint Louis College La Union'),
(94464, 78597, 'nl', 'name', 'Rode Kruis Ziekenhuis'),
(94465, 78598, 'en', 'name', 'Poplar Creek Public Library District'),
(94466, 78599, 'no_lang_code', 'name', 'Biotronik (Singapore)'),
(94467, 78600, 'no_lang_code', 'name', 'Bühler (Switzerland)'),
(94468, 78601, 'no_lang_code', 'name', 'Abraxis (United States)'),
(94469, 78602, 'en', 'name', 'Schaumburg Township District Library'),
(94470, 78603, 'nl', 'name', 'Deventer Ziekenhuis'),
(94471, 78604, 'no_lang_code', 'name', 'Sunrise Medical (United States)'),
(94472, 78605, 'de', 'name', 'Bundesamt für Kartographie und Geodäsie'),
(94473, 78605, 'en', 'name', 'Federal Agency for Cartography and Geodesy'),
(94474, 78606, 'it', 'name', 'ENEA Centro Ricerche Saluggia'),
(94475, 78606, 'en', 'name', 'ENEA Saluggia Research Centre'),
(94476, 78607, 'no_lang_code', 'name', 'NotABook (United States)'),
(94477, 78608, 'fr', 'name', 'Laboratoire de mƩtrologie de la Direction GƩnƩrale des Transmissions et de l''Informatique'),
(94478, 78609, 'no', 'name', 'Norsk barnebokinstitutt'),
(94479, 78609, 'en', 'name', 'The Norwegian Institute for Children’s Books'),
(94480, 78610, 'no_lang_code', 'name', 'AgBioData'),
(94481, 78611, 'en', 'name', 'Institute for Experimental Endocrinology and Oncology'),
(94482, 78611, 'it', 'name', 'Istituto per l''Endocrinologia e l''Oncologica Sperimentale "G. Salvatore"'),
(94483, 78612, 'fr', 'name', 'Institut Des Communications Graphiques Du QuƩbec'),
(94484, 78612, 'en', 'name', 'Printability And Graphic Communications Institute'),
(94485, 78613, 'en', 'name', 'Main Center of Special Monitoring'),
(94486, 78613, 'uk', 'name', 'Головний центр ŃŠæŠµŃ†Ń–Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŽ'),
(94487, 78614, 'en', 'name', 'Spartanburg Regional Healthcare System'),
(94488, 78615, 'en', 'name', 'Cherkasy Medical Academy'),
(94489, 78615, 'uk', 'name', 'Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠ° меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(94490, 78616, 'no_lang_code', 'name', 'Quality and Reliability (Greece)'),
(94491, 78617, 'en', 'name', 'Arctic State Agrotechnological University'),
(94492, 78617, 'ru', 'name', 'ŠÆŠŗŃƒŃ‚ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(94493, 78618, 'de', 'name', 'Landesamt für Geologie, Rohstoffe und Bergbau'),
(94494, 78619, 'no_lang_code', 'name', 'Qeios (United Kingdom)'),
(94495, 78620, 'es', 'name', 'Universidad Independiente'),
(94496, 78621, 'en', 'name', 'Grand Teton National Park'),
(94497, 78622, 'es', 'name', 'Ministerio de Salud PĆŗblica'),
(94498, 78623, 'en', 'name', 'Kryvyi Rih State Pedagogical University'),
(94499, 78623, 'uk', 'name', 'ŠšŃ€ŠøŠ²Š¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(94500, 78624, 'en', 'name', 'Young Men''s Christian Association'),
(94501, 78625, 'en', 'name', 'Employment and Social Development Canada'),
(94502, 78625, 'fr', 'name', 'Ministère des Ressources humaines et Développement des compétences'),
(94503, 78626, 'no_lang_code', 'name', 'Kiwa (Germany)'),
(94504, 78627, 'en', 'name', 'Wexham Park Hospital'),
(94505, 78628, 'no', 'name', 'HĆøgskolen for yrkesfag'),
(94506, 78628, 'en', 'name', 'University College of Vocational Education'),
(94507, 78629, 'en', 'name', 'GW4 Facility for High-Resolution Electron Cryo-Microscopy'),
(94508, 78630, 'no_lang_code', 'name', 'Gemalto (France)'),
(94509, 78631, 'en', 'name', 'Plano Public Library System'),
(94510, 78632, 'en', 'name', 'Combined Military Hospital'),
(94511, 78632, 'ur', 'name', 'مؓترکہ فوجی ہسپتال'),
(94512, 78633, 'en', 'name', 'Bread for the World Institute'),
(94513, 78634, 'no_lang_code', 'name', 'Uks'),
(94514, 78635, 'no_lang_code', 'name', 'Comsol (United Kingdom)'),
(94515, 78636, 'no_lang_code', 'name', 'Castor'),
(94516, 78637, 'en', 'name', 'Princess Margaret Hospital'),
(94517, 78637, 'zh', 'name', 'ē‘Ŗå˜‰ēƒˆé†«é™¢'),
(94518, 78638, 'es', 'name', 'Asociación por los Derechos Civiles'),
(94519, 78639, 'en', 'name', 'Kazan State Academy of Veterinary Medicine named after N.E. Bauman'),
(94520, 78639, 'ru', 'name', 'ŠšŠ°Š·Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ветеринарной меГицины имени Š.Š­. Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(94521, 78640, 'de', 'name', 'Deutsches Institut für Japanstudien Tokyo'),
(94522, 78640, 'en', 'name', 'German Institute for Japanese Studies'),
(94523, 78640, 'ja', 'name', 'ćƒ‰ć‚¤ćƒ„ę—„ęœ¬ē ”ē©¶ę‰€'),
(94524, 78641, 'de', 'name', 'Gesundheitsamt'),
(94525, 78642, 'no_lang_code', 'name', 'Atlas Copco (Germany)'),
(94526, 78643, 'en', 'name', 'Episcopal High School'),
(94527, 78644, 'de', 'name', 'Klinikum Kassel'),
(94528, 78645, 'fr', 'name', 'Paris AƩroport'),
(94529, 78646, 'fr', 'name', 'Centre de rƩadaptation Lethbridge-Layton-Mackay'),
(94530, 78646, 'en', 'name', 'Lethbridge-Layton-Mackay Rehabilitation Centre'),
(94531, 78647, 'en', 'name', 'St. Mary''s Medical Center'),
(94532, 78648, 'de', 'name', 'Helios Dr. Horst Schmidt Kliniken Wiesbaden'),
(94533, 78649, 'en', 'name', 'California Current Ecosystem Long Term Ecological Research'),
(94534, 78650, 'nl', 'name', 'IJsselland Ziekenhuis'),
(94535, 78651, 'en', 'name', 'Hubbard Brook Research Foundation'),
(94536, 78652, 'en', 'name', 'Community College of Rhode Island'),
(94537, 78653, 'en', 'name', 'Sohag University'),
(94538, 78653, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³ŁˆŁ‡Ų§Ų¬'),
(94539, 78654, 'en', 'name', 'Black Rock Forest Consortium'),
(94540, 78655, 'es', 'name', 'Universidad DomĆ­nico Americana'),
(94541, 78656, 'en', 'name', 'Chihlee Institute of Technology'),
(94542, 78656, 'zh', 'name', 'č‡“ē†ē§‘ęŠ€å¤§å­ø'),
(94543, 78657, 'no_lang_code', 'name', 'Anevo (Greece)'),
(94544, 78658, 'nl', 'name', 'Ziekenhuis Gelderse Vallei'),
(94545, 78659, 'en', 'name', 'Lviv Academy of Commerce'),
(94546, 78659, 'ru', 'name', 'Š›ŃŒŠ²Š¾Š²ŃŠŗŠ°Ń ŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(94547, 78659, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° комерційна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(94548, 78660, 'en', 'name', 'Wisconsin State Law Library'),
(94549, 78661, 'nl', 'name', 'Ziekenhuis Amstelland'),
(94550, 78662, 'en', 'name', 'Grand Council of the Crees'),
(94551, 78663, 'en', 'name', 'State Space Agency of Ukraine'),
(94552, 78663, 'uk', 'name', 'Державне космічне агентство України'),
(94553, 78664, 'it', 'name', 'ENEA Centro Ricerche Frascati'),
(94554, 78664, 'en', 'name', 'ENEA Frascati Research Centre'),
(94555, 78665, 'hr', 'name', 'Biro za metrologija'),
(94556, 78665, 'en', 'name', 'Bureau of Metrology of Macedonia'),
(94557, 78665, 'sq', 'name', 'Byroja pƫr metrologji'),
(94558, 78665, 'mk', 'name', 'Š‘Š˜Š Šž ЗА ŠœŠ•Š¢Š ŠžŠ›ŠžŠ“Š˜ŠˆŠ'),
(94559, 78666, 'en', 'name', 'Intermountain St. George Regional Hospital'),
(94560, 78667, 'pt', 'name', 'Instituto PolitƩcnico da Lunda Sul'),
(94561, 78667, 'en', 'name', 'Polytechnic Institute of Lunda Sul'),
(94562, 78668, 'en', 'name', 'Kellogg Biological Station Long Term Ecological Research'),
(94563, 78669, 'no_lang_code', 'name', 'Gobio (Germany)'),
(94564, 78670, 'no_lang_code', 'name', 'Thomson Reuters (United States)'),
(94565, 78671, 'de', 'name', 'Bundesamt für Landestopografie swisstopo'),
(94566, 78671, 'en', 'name', 'Federal Office of Topography swisstopo'),
(94567, 78671, 'fr', 'name', 'Office fƩdƩral de topographie swisstopo'),
(94568, 78671, 'it', 'name', 'Ufficio federale di topografia swisstopo'),
(94569, 78672, 'en', 'name', 'Parkway Cancer Centre'),
(94570, 78673, 'en', 'name', 'American College Testing'),
(94571, 78674, 'fr', 'name', 'Communication, Information, MƩdias'),
(94572, 78675, 'en', 'name', 'Max Weber Forum for South Asian Studies in Delhi'),
(94573, 78675, 'de', 'name', 'Max Weber Forum für Südasienstudien Delhi'),
(94574, 78676, 'no_lang_code', 'name', 'IBM (Germany)'),
(94575, 78677, 'no_lang_code', 'name', 'Arvato'),
(94576, 78678, 'en', 'name', 'Commonweal'),
(94577, 78679, 'en', 'name', 'Children''s Aid Society'),
(94578, 78680, 'en', 'name', 'Farmington Community Library'),
(94579, 78681, 'en', 'name', 'Bulgarian Institute of Metrology'),
(94580, 78681, 'cu', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¼ŠµŃ‚Ń€Š¾Š»Š¾Š³ŠøŃ'),
(94581, 78682, 'no_lang_code', 'name', 'Orient-Institut Beirut'),
(94582, 78682, 'en', 'name', 'Orient-Institute Beirut'),
(94583, 78682, 'ar', 'name', 'لمعهد Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠ للأبحاث Ų§Ł„Ų“Ų±Ł‚ŁŠŲ©'),
(94584, 78683, 'en', 'name', 'Canadian Society for International Health'),
(94585, 78683, 'fr', 'name', 'SociƩtƩ Canadienne de SantƩ Internationale'),
(94586, 78684, 'en', 'name', 'Adolfo IbƔƱez University'),
(94587, 78684, 'es', 'name', 'Universidad Adolfo IbƔƱez'),
(94588, 78685, 'en', 'name', 'Khabarovsk State University of Economics and Law'),
(94589, 78685, 'ru', 'name', 'Š„Š°Š±Š°Ń€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(94590, 78686, 'en', 'name', 'International Slavic University Gavrilo Romanovich Derzhavin'),
(94591, 78686, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ā€œŠ“Š°Š²Ń€ŠøŠ»Š¾ Романович Š”ŠµŃ€Š¶Š°Š²ŠøŠ½ā€'),
(94592, 78686, 'mk', 'name', 'ŠœŠµŃ“ŃƒŠ½Š°Ń€Š¾Š“ŠµŠ½ Длавјански Универзитет Гаврило Романович Державин'),
(94593, 78687, 'en', 'name', 'International Theravada Buddhist Missionary University'),
(94594, 78688, 'no_lang_code', 'name', 'Yahoo (Spain)'),
(94595, 78689, 'en', 'name', 'Search for Extraterrestrial Intelligence'),
(94596, 78690, 'en', 'name', 'Portsmouth Public Library'),
(94597, 78691, 'no_lang_code', 'name', 'Renishaw (Russia)'),
(94598, 78692, 'en', 'name', 'International Long Term Ecological Research Network'),
(94599, 78692, 'de', 'name', 'Internationale Gesellschaft für Ɩkologische Langzeitforschung'),
(94600, 78693, 'es', 'name', 'Universidad del Norte'),
(94601, 78694, 'no_lang_code', 'name', 'Twitter (United States)'),
(94602, 78695, 'es', 'name', 'Centro Nacional de MetrologĆ­a'),
(94603, 78695, 'en', 'name', 'National Metrology Center'),
(94604, 78696, 'en', 'name', 'HIV Legal Network'),
(94605, 78696, 'fr', 'name', 'RƩseau juridique VIH'),
(94606, 78697, 'no_lang_code', 'name', 'Simplex Manufacturing (United States)'),
(94607, 78698, 'no_lang_code', 'name', 'The Cooper Companies (United States)'),
(94608, 78699, 'en', 'name', 'London Road Community Hospital'),
(94609, 78700, 'nl', 'name', 'Diakonessenhuis hospital'),
(94610, 78701, 'en', 'name', 'Petrozavodsk State Glazunov Conservatory'),
(94611, 78701, 'ru', 'name', 'ŠŸŠµŃ‚Ń€Š¾Š·Š°Š²Š¾Š“ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠšŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. А.К. Š“Š»Š°Š·ŃƒŠ½Š¾Š²Š°'),
(94612, 78702, 'tr', 'name', 'Orient Enstitüsü İstanbul'),
(94613, 78702, 'en', 'name', 'Orient-Institut Istanbul'),
(94614, 78703, 'en', 'name', 'Rhode Island College'),
(94615, 78704, 'cy', 'name', 'Llyfrgell Genedlaethol Cymru'),
(94616, 78704, 'en', 'name', 'National Library of Wales'),
(94617, 78705, 'en', 'name', 'Kamchatka State Technical University'),
(94618, 78705, 'ru', 'name', 'ŠšŠ°Š¼Ń‡Š°Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(94619, 78706, 'fr', 'name', 'Bulletin canadien d''histoire de la mƩdecine'),
(94620, 78706, 'en', 'name', 'Canadian Bulletin of Medical History'),
(94621, 78707, 'en', 'name', 'Kamchatka State University named after Vitus Bering'),
(94622, 78707, 'ru', 'name', 'ŠšŠ°Š¼Ń‡Š°Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’ŠøŃ‚ŃƒŃŠ° Беринга'),
(94623, 78708, 'en', 'name', 'Ann Arbor District Library'),
(94624, 78709, 'nl', 'name', 'Spaarne Gasthuis'),
(94625, 78710, 'en', 'name', 'Polk County High School'),
(94626, 78711, 'en', 'name', 'Monash University Prato Centre'),
(94627, 78711, 'it', 'name', 'Palazzo Vai'),
(94628, 78712, 'en', 'name', 'Leibniz Institute for Educational Media | Georg Eckert Institute'),
(94629, 78712, 'de', 'name', 'Leibniz-Institut für Bildungsmedien | Georg-Eckert-Institut'),
(94630, 78713, 'de', 'name', 'Deutsches Historisches Institut Warschau'),
(94631, 78713, 'en', 'name', 'German Historical Institute Warsaw'),
(94632, 78713, 'pl', 'name', 'Niemiecki Instytut Historyczny w Warszawie'),
(94633, 78714, 'en', 'name', 'Zoological Institute'),
(94634, 78714, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Зоологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Российской акаГемии наук'),
(94635, 78715, 'en', 'name', 'Catharina Hospital'),
(94636, 78715, 'nl', 'name', 'Catharina Ziekenhuis'),
(94637, 78716, 'en', 'name', 'Uniting'),
(94638, 78717, 'no_lang_code', 'name', 'Etymotic Research (United States)'),
(94639, 78718, 'es', 'name', 'Universidad Latina'),
(94640, 78719, 'en', 'name', 'Millennium Science Initiative'),
(94641, 78720, 'en', 'name', 'Spinoza Centre for Neuroimaging'),
(94642, 78721, 'en', 'name', 'Institute of Biophysics'),
(94643, 78722, 'de', 'name', 'Evangelisches Waldkrankenhaus Spandau'),
(94644, 78722, 'en', 'name', 'Waldkrankenhaus Protestant Hospital'),
(94645, 78723, 'sv', 'name', 'Forskningsinstitutet fƶr Fysik'),
(94646, 78723, 'fi', 'name', 'Fysiikan Tutkimuslaitos'),
(94647, 78723, 'en', 'name', 'Helsinki Institute of Physics'),
(94648, 78724, 'de', 'name', 'Musikwissenschaftliches Seminar Detmold/Paderborn'),
(94649, 78725, 'en', 'name', 'Centre for Research in Anthropology'),
(94650, 78725, 'pt', 'name', 'Centro em Rede de Investigacao em Antropologia'),
(94651, 78726, 'en', 'name', 'Nantucket Cottage Hospital'),
(94652, 78727, 'en', 'name', 'Einstein Center Digital Future'),
(94653, 78728, 'en', 'name', 'St Catherine''s Health Centre'),
(94654, 78729, 'en', 'name', 'Scientific Foundation SPIROSKI'),
(94655, 78729, 'mk', 'name', 'ŠŠ°ŃƒŃ‡Š½Š° Ń„Š¾Š½Š“Š°Ń†ŠøŃ˜Š° Š”ŠŸŠ˜Š ŠžŠ”ŠšŠ˜'),
(94656, 78730, 'en', 'name', 'Association for Science'),
(94657, 78730, 'ka', 'name', 'įƒįƒ”įƒįƒŖįƒ˜įƒįƒŖįƒ˜įƒ įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒ˜įƒ”įƒįƒ—įƒ•įƒ˜įƒ”'),
(94658, 78731, 'en', 'name', 'Donald & Barbara Zucker School of Medicine at Hofstra/Northwell'),
(94659, 78732, 'en', 'name', 'Fraunhofer Center for Silicon Photovoltaics'),
(94660, 78732, 'de', 'name', 'Fraunhofer-Center für Silizium-Photovoltaik'),
(94661, 78733, 'en', 'name', 'Zoological Institute, State Academy of Sciences'),
(94662, 78733, 'ko', 'name', '국가과학원 ė™ė¬¼ķ•™ģ—°źµ¬ģ†Œ'),
(94663, 78734, 'en', 'name', 'Madhav Institute of Technology & Science'),
(94664, 78735, 'en', 'name', 'Flone Initiative Trust'),
(94665, 78736, 'en', 'name', 'Institute of Applied Mathematical Research of the Karelian Research Centre of the Russian Academy of Sciences'),
(94666, 78736, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГных математических исслеГований ŠšŠ°Ń€ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(94667, 78737, 'hu', 'name', 'Budapest FővĆ”ros KormĆ”nyhivatala'),
(94668, 78737, 'en', 'name', 'Government Office of the Capital City Budapest'),
(94669, 78738, 'en', 'name', 'International Laboratory for Brain, Music and Sound Research'),
(94670, 78738, 'fr', 'name', 'Laboratoire international de recherche sur le Cerveau, la Musique et le Son'),
(94671, 78739, 'en', 'name', 'Research4Life'),
(94672, 78740, 'en', 'name', 'Global Campus of Human Rights'),
(94673, 78741, 'en', 'name', 'Clark University'),
(94674, 78741, 'es', 'name', 'Universidad Clark'),
(94675, 78742, 'fr', 'name', 'HƓpital de Lachine'),
(94676, 78742, 'en', 'name', 'Lachine Hospital'),
(94677, 78743, 'en', 'name', 'Institute of Marine Research'),
(94678, 78744, 'en', 'name', 'James Martin Center for Nonproliferation Studies'),
(94679, 78745, 'fr', 'name', 'Equipe Soutenue par la RƩgion et par l''Inserm'),
(94680, 78746, 'en', 'name', 'US Forest Service'),
(94681, 78747, 'fr', 'name', 'HƓtel-Dieu de MontrƩal'),
(94682, 78748, 'fr', 'name', 'HƓpital Notre-Dame'),
(94683, 78748, 'en', 'name', 'Notre-Dame Hospital'),
(94684, 78749, 'en', 'name', 'Institute for Agricultural and Forest Systems in the Mediterranean'),
(94685, 78749, 'it', 'name', 'Istituto per i Sistemi Agricoli e Forestali del Mediterraneo'),
(94686, 78750, 'no_lang_code', 'name', 'COPESSA'),
(94687, 78751, 'en', 'name', 'Latino Medical Student Association'),
(94688, 78752, 'de', 'name', 'Ɩsterreichische Galerie Belvedere'),
(94689, 78753, 'en', 'name', 'Middlebury Institute of International Studies at Monterey'),
(94690, 78754, 'fr', 'name', 'Centre Hospitalier de l’UniversitĆ© de MontrĆ©al'),
(94691, 78755, 'en', 'name', 'Institute of Arctic and Alpine Research'),
(94692, 78756, 'en', 'name', 'Santa Barbara Coastal Long Term Ecological Research'),
(94693, 78757, 'es', 'name', 'BenemƩrita Escuela Normal "Manuel Ɓvila Camacho"'),
(94694, 78758, 'fr', 'name', 'Centre d''Ɖtude et de DĆ©couverte des Tortues Marines'),
(94695, 78759, 'en', 'name', 'Wisconsin Department of Natural Resources'),
(94696, 78760, 'es', 'name', 'Instituto Universitario de Innovación Ciencia y Tecnología Inudi Perú'),
(94697, 78761, 'en', 'name', 'Department for Levelling Up, Housing & Communities'),
(94698, 78762, 'es', 'name', 'Fundación Renacer'),
(94699, 78763, 'nl', 'name', 'Museon-Omniversum'),
(94700, 78764, 'no_lang_code', 'name', 'ECOTAS Group Indonesia'),
(94701, 78765, 'pt', 'name', 'Centro UniversitƔrio SATC'),
(94702, 78766, 'en', 'name', 'Simula Research Laboratory'),
(94703, 78767, 'en', 'name', 'World Association of Theoretical and Computational Chemists'),
(94704, 78768, 'es', 'name', 'IMEK Centro de Investigación en Mercadeo & Desarrollo'),
(94705, 78768, 'en', 'name', 'IMEK Research Center in Marketing & Development'),
(94706, 78769, 'en', 'name', 'Science for All'),
(94707, 78770, 'en', 'name', 'Mercy College of Ohio'),
(94708, 78771, 'en', 'name', 'National Institute of Metrology (Thailand)'),
(94709, 78771, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø”ąø²ąø•ąø£ąø§ąø“ąø—ąø¢ąø²ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(94710, 78772, 'en', 'name', 'Homes England'),
(94711, 78773, 'fr', 'name', 'Institut de Readaptation Gingras Lindsay de Montreal'),
(94712, 78774, 'en', 'name', 'Simula UiB'),
(94713, 78775, 'en', 'name', 'Northeast U.S. Shelf Long Term Ecological Research'),
(94714, 78776, 'es', 'name', 'Fundación Gustavo Bueno'),
(94715, 78776, 'en', 'name', 'Gustavo Bueno Foundation'),
(94716, 78777, 'id', 'name', 'Badan Standardisasi Nasional'),
(94717, 78777, 'en', 'name', 'National Standardization Agency of Indonesia'),
(94718, 78778, 'en', 'name', 'Papal Seminary'),
(94719, 78779, 'en', 'name', 'CODE University of Applied Sciences'),
(94720, 78780, 'fr', 'name', 'HƓpital Saint-Luc'),
(94721, 78781, 'es', 'name', 'Instituto de Educación Superior Tecnológico Público "Eleazar GuzmÔn Barrón"'),
(94722, 78782, 'no_lang_code', 'name', 'Joyson Safety Systems (Japan)'),
(94723, 78782, 'ja', 'name', 'ć‚øćƒ§ć‚¤ć‚½ćƒ³ ć‚»ć‚¤ćƒ•ćƒ†ć‚£ ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(94724, 78783, 'en', 'name', 'North Temperate Lakes Long Term Ecological Research'),
(94725, 78784, 'en', 'name', 'Institute for Marine Biological Resources and Biotechnology'),
(94726, 78784, 'it', 'name', 'Istituto per le Risorse Biologiche e le Biotecnologie Marine'),
(94727, 78785, 'en', 'name', 'Pawsey Supercomputing Research Centre'),
(94728, 78786, 'en', 'name', 'Suzhou Institute of North China Electric Power University'),
(94729, 78786, 'zh', 'name', 'åŽåŒ—ē”µåŠ›å¤§å­¦č‹å·žē ”ē©¶é™¢'),
(94730, 78787, 'en', 'name', 'Gregor Mendel Institute of Molecular Plant Biology'),
(94731, 78788, 'en', 'name', 'Wyss Academy for Nature'),
(94732, 78789, 'en', 'name', 'Calvary Riverina Hospital'),
(94733, 78790, 'en', 'name', 'The University of Notre Dame Australia'),
(94734, 78791, 'en', 'name', 'Jnana Deepa, Institute of Philosophy and Theology'),
(94735, 78792, 'no_lang_code', 'name', 'Pandawa Institute'),
(94736, 78793, 'fr', 'name', 'Institut de Recherche en Immunologie et CancƩrologie'),
(94737, 78793, 'en', 'name', 'Institute for Research in Immunology and Cancer'),
(94738, 78794, 'en', 'name', 'Then Try This'),
(94739, 78795, 'en', 'name', 'Singapore Institute of Management'),
(94740, 78795, 'zh', 'name', 'ę–°åŠ å”ē®”ē†å­¦é™¢'),
(94741, 78796, 'en', 'name', 'Wyss Foundation'),
(94742, 78797, 'en', 'name', 'GO FAIR Foundation'),
(94743, 78797, 'nl', 'name', 'Stichting GO FAIR'),
(94744, 78798, 'no_lang_code', 'name', 'Neomorph'),
(94745, 78799, 'en', 'name', 'Institute of Water Problems of the North Karelian Research Centre'),
(94746, 78799, 'ru', 'name', 'ŠšŠ°Ń€ŠŠ¦ Š ŠŠ в рамках работы ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š Š“Šž в Республике ŠšŠ°Ń€ŠµŠ»ŠøŃ'),
(94747, 78800, 'fr', 'name', 'HĆ“pital du SacrĆ©-Cœur de MontrĆ©al'),
(94748, 78800, 'en', 'name', 'Sacred Heart Hospital of Montreal'),
(94749, 78801, 'en', 'name', 'Sevilleta Long Term Ecological Research'),
(94750, 78802, 'en', 'name', 'Karelian Research Centre'),
(94751, 78802, 'ru', 'name', 'ŠšŠ°Ń€ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(94752, 78803, 'es', 'name', 'Observatorio Naval Buenos Aires'),
(94753, 78804, 'es', 'name', 'Laboratorio Costarricense de MetrologĆ­a'),
(94754, 78805, 'en', 'name', 'Max Planck Institute for Legal History and Legal Theory'),
(94755, 78805, 'de', 'name', 'Max-Planck-Institut für Rechtsgeschichte und Rechtstheorie'),
(94756, 78806, 'en', 'name', 'Northern Gulf of Alaska Long Term Ecological Research'),
(94757, 78807, 'en', 'name', 'Canadian Institute for International Peace and Security'),
(94758, 78807, 'fr', 'name', 'Centre d''Ʃtudes sur la paix et la sƩcuritƩ internationale'),
(94759, 78808, 'no_lang_code', 'name', 'Life Nepal'),
(94760, 78808, 'ne', 'name', 'जिवन ą¤Øą„‡ą¤Ŗą¤¾ą¤²'),
(94761, 78809, 'pt', 'name', 'Centro UniversitƔrio Unigran Capital'),
(94762, 78810, 'en', 'name', 'Luqman Unani Medical College Hospital and Research Center'),
(94763, 78811, 'en', 'name', 'FoAM'),
(94764, 78812, 'en', 'name', 'Simula Metropolitan Center for Digital Engineering'),
(94765, 78813, 'en', 'name', 'University of Louisiana at Lafayette'),
(94766, 78813, 'fr', 'name', 'UniversitƩ de louisiane Ơ lafayette'),
(94767, 78814, 'en', 'name', 'National Measurement Standards Unit'),
(94768, 78814, 'id', 'name', 'Standar Nasional Satuan Ukuran'),
(94769, 78815, 'fr', 'name', 'Agence mongole de normalisation et de mƩtrologie'),
(94770, 78815, 'en', 'name', 'Mongolian Agency for Standardization and Metrology'),
(94771, 78815, 'mn', 'name', 'ДтанГартчилал, Ń…ŃŠ¼Š¶ŠøŠ» зүйн газар'),
(94772, 78816, 'fr', 'name', 'HƓpital Maisonneuve-Rosemont'),
(94773, 78817, 'es', 'name', 'Centro de Documentación de las Artes Escénicas y de la Música'),
(94774, 78818, 'en', 'name', 'Virginia Coast Reserve Long Term Ecological Research'),
(94775, 78819, 'en', 'name', 'University of St. Thomas - Minnesota'),
(94776, 78820, 'fr', 'name', 'HÓpital Rivière-des-Prairies'),
(94777, 78821, 'en', 'name', 'Interuniversity Institute for Marine Sciences in Eilat'),
(94778, 78821, 'he', 'name', 'המכון ×”×‘×™× ××•× ×™×‘×Ø×”×™×˜××™ למדעי הים ×‘××™×œ×Ŗ'),
(94779, 78822, 'en', 'name', 'Amundsen Science'),
(94780, 78823, 'de', 'name', 'Institut für Molekulare Biotechnologie'),
(94781, 78823, 'en', 'name', 'Institute of Molecular Biotechnology'),
(94782, 78824, 'en', 'name', 'Massachusetts Audubon Society'),
(94783, 78825, 'en', 'name', 'William & Mary'),
(94784, 78826, 'en', 'name', 'Niwot Ridge Long Term Ecological Research'),
(94785, 78827, 'no_lang_code', 'name', 'International Scientific Network'),
(94786, 78828, 'fr', 'name', 'Centre de SantƩ et de Services Sociaux de Chicoutimi'),
(94787, 78829, 'de', 'name', 'Leibniz-Forschungsinstitut für Molekulare Pharmakologie'),
(94788, 78830, 'en', 'name', 'Palmer Long Term Ecological Research'),
(94789, 78831, 'de', 'name', 'Universitäres Zentrum für Zahnmedizin Basel'),
(94790, 78832, 'en', 'name', 'Gump South Pacific Research Station'),
(94791, 78833, 'en', 'name', 'Tianjin Fourth Central Hospital'),
(94792, 78833, 'zh', 'name', 'å¤©ę“„åø‚ē¬¬å››äø­åæƒåŒ»é™¢'),
(94793, 78834, 'en', 'name', 'Duke Raleigh Hospital'),
(94794, 78835, 'it', 'name', 'Accademia Italiana Medicina Osteopatica'),
(94795, 78836, 'no_lang_code', 'name', 'Oxagen (United Kingdom)'),
(94796, 78837, 'en', 'name', 'Ministry of Health'),
(94797, 78838, 'en', 'name', 'Flaget Memorial Hospital'),
(94798, 78839, 'en', 'name', 'Benazir Bhutto Hospital'),
(94799, 78839, 'ur', 'name', 'ŲØŪ’ Ł†ŲøŪŒŲ± بھٹو ہسپتال'),
(94800, 78840, 'en', 'name', 'Korean Association for the Study of Intestinal Diseases'),
(94801, 78840, 'ko', 'name', 'ėŒ€ķ•œģž„ģ—°źµ¬ķ•™ķšŒ'),
(94802, 78841, 'en', 'name', 'Hallym University Sacred Heart Hospital'),
(94803, 78841, 'ko', 'name', 'ķ•œė¦¼ėŒ€ķ•™źµģ„±ģ‹¬ė³‘ģ›'),
(94804, 78842, 'no_lang_code', 'name', 'Quark Pharmaceuticals (United States)'),
(94805, 78843, 'en', 'name', 'Statistics New Zealand'),
(94806, 78843, 'mi', 'name', 'Tatauranga Aotearoa'),
(94807, 78844, 'no_lang_code', 'name', 'OmniVision (Germany)'),
(94808, 78845, 'en', 'name', 'Sutter Solano Medical Center'),
(94809, 78846, 'es', 'name', 'Complejo Asistencial Sótero del Río'),
(94810, 78847, 'en', 'name', 'Baylor Jack and Jane Hamilton Heart and Vascular Hospital'),
(94811, 78848, 'en', 'name', 'Campus Bio Medico University Hospital'),
(94812, 78848, 'it', 'name', 'Policlinico Universitario Campus Bio Medico'),
(94813, 78849, 'no_lang_code', 'name', 'Deutsche Flugsicherung (Germany)'),
(94814, 78850, 'en', 'name', 'Proton Therapy Centre'),
(94815, 78851, 'no_lang_code', 'name', 'Blacktrace (United Kingdom)'),
(94816, 78852, 'it', 'name', 'Azienda Ospedaliero Universitaria di Sassari'),
(94817, 78853, 'no_lang_code', 'name', 'Inimex Pharmaceuticals (Canada)'),
(94818, 78854, 'en', 'name', 'Bay Area Medical Center'),
(94819, 78855, 'no_lang_code', 'name', 'Sawyer Technical Materials (United States)'),
(94820, 78856, 'en', 'name', 'Palace Museum'),
(94821, 78856, 'zh', 'name', 'ę•…å®«åšē‰©é¦†'),
(94822, 78857, 'en', 'name', 'Canberra Aesthetic Plastic Surgery Clinic'),
(94823, 78858, 'en', 'name', 'Manchester School of Architecture'),
(94824, 78859, 'en', 'name', 'Surgical Infection Society of Europe'),
(94825, 78860, 'fr', 'name', 'L’Institut du Cancer Courlancy Reims'),
(94826, 78861, 'pt', 'name', 'Associação de Assistência à Criança Deficiente'),
(94827, 78862, 'en', 'name', 'International City/County Management Association'),
(94828, 78863, 'en', 'name', 'Sutter Auburn Faith Hospital'),
(94829, 78864, 'no_lang_code', 'name', 'First American (United States)'),
(94830, 78865, 'en', 'name', 'Pharmaceuticals and Medical Devices Agency'),
(94831, 78865, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ åŒ»č–¬å“åŒ»ē™‚ę©Ÿå™Øē·åˆę©Ÿę§‹'),
(94832, 78866, 'en', 'name', 'Stone Soup Group'),
(94833, 78867, 'en', 'name', 'North District Hospital'),
(94834, 78867, 'zh', 'name', '北區醫院'),
(94835, 78868, 'en', 'name', 'Cox Medical Center South'),
(94836, 78869, 'en', 'name', 'Leibniz Institute for Research on Society and Space'),
(94837, 78869, 'de', 'name', 'Leibniz-Institut für Raumbezogene Sozialforschung'),
(94838, 78870, 'en', 'name', 'Southern Cross University'),
(94839, 78871, 'en', 'name', 'West Coast Fertility Centers'),
(94840, 78872, 'no_lang_code', 'name', 'Carmel (Israel)'),
(94841, 78872, 'he', 'name', '×›×Ø×ž×œ בע"מ'),
(94842, 78873, 'de', 'name', 'SRH Klinikum Karlsbad-Langensteinbach'),
(94843, 78874, 'en', 'name', 'University of Alaska Southeast'),
(94844, 78874, 'fr', 'name', 'UniversitƩ de l''alaska du sud-est'),
(94845, 78875, 'de', 'name', 'Aids-Hilfe Schweiz'),
(94846, 78875, 'en', 'name', 'Swiss AIDS Federation'),
(94847, 78876, 'no_lang_code', 'name', 'Oxford University Press (United Kingdom)'),
(94848, 78877, 'en', 'name', 'Sri Sathya Sai Institute of Higher Medical Sciences'),
(94849, 78878, 'no_lang_code', 'name', 'Centre de Recherche Industrielle du QuƩbec'),
(94850, 78879, 'en', 'name', 'Nottingham University Samworth Academy'),
(94851, 78880, 'sv', 'name', 'Jubileumskliniken Cancerfond'),
(94852, 78881, 'en', 'name', 'Olympic Medical Center'),
(94853, 78882, 'en', 'name', 'Medical Defence Union'),
(94854, 78883, 'en', 'name', 'Institute of the Americas'),
(94855, 78884, 'no_lang_code', 'name', 'Haaretz Group (Israel)'),
(94856, 78885, 'iu', 'name', 'Pauktuutit'),
(94857, 78886, 'en', 'name', 'Association of Environmental Engineering and Science Professors'),
(94858, 78887, 'no_lang_code', 'name', 'Vifor Pharma (United States)'),
(94859, 78888, 'en', 'name', 'American Association of Colleges for Teacher Education'),
(94860, 78889, 'en', 'name', 'American Productivity and Quality Center'),
(94861, 78890, 'en', 'name', 'Analytical Services'),
(94862, 78891, 'en', 'name', 'The First People''s Hospital of Changzhou'),
(94863, 78891, 'zh', 'name', 'åøøå·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(94864, 78892, 'en', 'name', 'London Chamber of Commerce and Industry'),
(94865, 78893, 'en', 'name', 'Society For Range Management'),
(94866, 78894, 'no_lang_code', 'name', 'Berlitz (United States)'),
(94867, 78895, 'en', 'name', 'Madras Institute of Orthopaedics and Traumatology'),
(94868, 78896, 'it', 'name', 'IRCCS Ospedale San Raffaele'),
(94869, 78897, 'it', 'name', 'Museo Nazionale delle Arti del XXI Secolo'),
(94870, 78897, 'en', 'name', 'National Museum of 21st Century Arts'),
(94871, 78898, 'es', 'name', 'Departamento de Servicios de Salud del Condado de Los Ɓngeles'),
(94872, 78898, 'en', 'name', 'Los Angeles County Department of Health Services'),
(94873, 78899, 'en', 'name', 'The Swedish Association of Health Professionals'),
(94874, 78899, 'sv', 'name', 'VƄrdfƶrbundet'),
(94875, 78900, 'en', 'name', 'American Society of Association Executives'),
(94876, 78901, 'en', 'name', 'Atomic Weapons Establishment'),
(94877, 78902, 'en', 'name', 'The Korean Society of Hematology'),
(94878, 78902, 'ko', 'name', 'ėŒ€ķ•œķ˜ˆģ•”ķ•™ķšŒ'),
(94879, 78903, 'en', 'name', 'Research Design and Technological Institute of Concrete and Reinforced Concrete'),
(94880, 78903, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ Šø технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бетона Šø железобетона'),
(94881, 78904, 'en', 'name', 'Riverside Community Hospital'),
(94882, 78905, 'fr', 'name', 'CollĆØge St-Michel'),
(94883, 78905, 'de', 'name', 'Kollegium St. Michael'),
(94884, 78906, 'en', 'name', 'Regional Obstetrical Consultants'),
(94885, 78907, 'fr', 'name', 'Centre Hospitalier Universitaire de Saint-Pierre'),
(94886, 78908, 'en', 'name', 'Newcastle Hospitals - Campus for Ageing and Vitality'),
(94887, 78909, 'en', 'name', 'Association New Music'),
(94888, 78910, 'pt', 'name', 'Polydoro Ernani de SĆ£o Thiago University Hospital'),
(94889, 78911, 'en', 'name', 'Jichi Medical University'),
(94890, 78911, 'ja', 'name', 'č‡Ŗę²»åŒ»ē§‘å¤§å­¦'),
(94891, 78912, 'en', 'name', 'Sutter Davis Hospital'),
(94892, 78913, 'en', 'name', 'London Film School'),
(94893, 78914, 'de', 'name', 'EuropƤische Melanchthon Akademie Bretten'),
(94894, 78915, 'de', 'name', 'Tirol Kliniken'),
(94895, 78916, 'et', 'name', 'Eesti Evangeelne Luterlik Kirik'),
(94896, 78916, 'en', 'name', 'Estonian Evangelical Lutheran Church'),
(94897, 78917, 'en', 'name', 'Magistrates Association'),
(94898, 78918, 'en', 'name', 'Society of Women Engineers'),
(94899, 78919, 'en', 'name', 'Fairview Ridges Hospital'),
(94900, 78920, 'en', 'name', 'Wenner-Gren Foundation'),
(94901, 78921, 'de', 'name', 'Erziehungsdepartement Basel Stadt'),
(94902, 78922, 'fr', 'name', 'Institut de Recherche pour la Chromatographie'),
(94903, 78922, 'en', 'name', 'Research Institute for Chromatography'),
(94904, 78923, 'de', 'name', 'Ministerium für Wirtschaft, Wissenschaft und Digitalisierung des Landes Sachsen-Anhalt'),
(94905, 78923, 'en', 'name', 'Ministry of Economy, Science and Digitalisation'),
(94906, 78924, 'en', 'name', 'Latin American and Caribbean Society of Medical Oncology'),
(94907, 78924, 'es', 'name', 'Sociedad Latinoamericana y del Caribe de Oncologƭa MƩdica'),
(94908, 78925, 'en', 'name', 'Riddle Hospital'),
(94909, 78926, 'no_lang_code', 'name', 'Castings Technology International'),
(94910, 78927, 'en', 'name', 'Southwestern Educational Society'),
(94911, 78928, 'en', 'name', 'American Society for Dermatologic Surgery'),
(94912, 78929, 'no_lang_code', 'name', 'Bermuda Institute of Ocean Sciences'),
(94913, 78930, 'en', 'name', 'Prison Advice and Care Trust'),
(94914, 78931, 'no_lang_code', 'name', 'Renovo Research (United States)'),
(94915, 78932, 'no_lang_code', 'name', 'Engineering (Italy)'),
(94916, 78933, 'en', 'name', 'North Jersey Brain and Spine Center'),
(94917, 78934, 'en', 'name', 'New Ulm Medical Center'),
(94918, 78935, 'en', 'name', 'Choctaw County School District'),
(94919, 78936, 'en', 'name', 'Baptist Memorial Hospital for Women'),
(94920, 78937, 'en', 'name', 'CW+'),
(94921, 78938, 'en', 'name', 'Lute Society'),
(94922, 78939, 'de', 'name', 'Institut für Gießereitechnik'),
(94923, 78940, 'no_lang_code', 'name', 'Estonian Biocentre'),
(94924, 78941, 'en', 'name', 'Florida Institute of Oceanography'),
(94925, 78942, 'en', 'name', 'Maine Community College System'),
(94926, 78943, 'en', 'name', 'Heriot-Watt University'),
(94927, 78944, 'no_lang_code', 'name', 'Centrica (United Kingdom)'),
(94928, 78945, 'de', 'name', 'Hirslanden Klinik Aarau'),
(94929, 78946, 'en', 'name', 'Jackson State Community College'),
(94930, 78947, 'en', 'name', 'Broadlawns Medical Center'),
(94931, 78948, 'no_lang_code', 'name', 'Chemstations (United States)'),
(94932, 78949, 'en', 'name', 'The Korean Urological Association'),
(94933, 78949, 'ko', 'name', 'ėŒ€ķ•œė¹„ė‡Øźø°ź³¼ķ•™ķšŒ'),
(94934, 78950, 'no_lang_code', 'name', 'Regulus Therapeutics (United States)'),
(94935, 78951, 'fr', 'name', 'Cegep de Thetford'),
(94936, 78952, 'no_lang_code', 'name', 'Ricardo AEA (United Kingdom)'),
(94937, 78953, 'no_lang_code', 'name', 'Olin Corporation (United States)'),
(94938, 78954, 'fr', 'name', 'L’Institut Franco-EuropĆ©en de Chiropraxie'),
(94939, 78955, 'en', 'name', 'Global Forum for Health Research'),
(94940, 78956, 'en', 'name', 'Southwest Healthcare System'),
(94941, 78957, 'no_lang_code', 'name', 'Qatar Airways (Qatar)'),
(94942, 78957, 'ar', 'name', 'Ų§Ł„Ł‚Ų·Ų±ŁŠŲ©ā€Ž'),
(94943, 78958, 'en', 'name', 'Biruni University'),
(94944, 78958, 'tr', 'name', 'Biruni Üniversitesi'),
(94945, 78959, 'en', 'name', 'Labour Relations Agency'),
(94946, 78960, 'de', 'name', 'Ferring Arzneimittel'),
(94947, 78960, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Germany)'),
(94948, 78961, 'no_lang_code', 'name', 'NestlƩ (Brazil)'),
(94949, 78962, 'en', 'name', 'Canadians Living with HIV'),
(94950, 78962, 'fr', 'name', 'Conseil Canadien de Surveillance et d''AccĆØs aux Traitements'),
(94951, 78963, 'no', 'name', 'BƦrum Kommune'),
(94952, 78964, 'de', 'name', 'Niederer Kraft and Frey'),
(94953, 78965, 'en', 'name', 'Northern Ireland Assembly'),
(94954, 78966, 'de', 'name', 'Institut für Empirische Gesundheitsökonomie'),
(94955, 78966, 'en', 'name', 'Institute of Empirical Health Economics'),
(94956, 78967, 'en', 'name', 'Prison Reform Trust'),
(94957, 78968, 'en', 'name', 'National University of TucumƔn'),
(94958, 78968, 'es', 'name', 'Universidad Nacional de TucumƔn'),
(94959, 78968, 'fr', 'name', 'UniversitƩ nationale de tucumƔn'),
(94960, 78969, 'en', 'name', 'Jeanes Hospital'),
(94961, 78970, 'en', 'name', 'Eden Medical Center'),
(94962, 78971, 'en', 'name', 'Military Medical Academy'),
(94963, 78971, 'ar', 'name', 'Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠŲ©'),
(94964, 78972, 'en', 'name', 'Coalition of Northeastern Governors'),
(94965, 78973, 'no_lang_code', 'name', 'Nortel (Canada)'),
(94966, 78974, 'en', 'name', 'KuDos'),
(94967, 78975, 'en', 'name', 'Center for Marine and Oceanographic Research'),
(94968, 78975, 'fr', 'name', 'Centre de Recherches OcƩanologiques'),
(94969, 78976, 'en', 'name', 'Rush University'),
(94970, 78977, 'en', 'name', 'Mahavir Cancer Institute and Research Centre'),
(94971, 78978, 'en', 'name', 'Brazilian Micro and Small Enterprises Support Service'),
(94972, 78978, 'pt', 'name', 'ServiƧo Brasileiro de Apoio Ơs Micro e Pequenas Empresas'),
(94973, 78979, 'it', 'name', 'Azienda Sanitaria Universitaria Integrata di Trieste'),
(94974, 78980, 'en', 'name', 'Institute of International Affairs'),
(94975, 78980, 'it', 'name', 'Istituto Affari Internazionali'),
(94976, 78981, 'en', 'name', 'Bernice P. Bishop Museum'),
(94977, 78982, 'en', 'name', 'Ural State Academy of Architecture and Arts'),
(94978, 78982, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(94979, 78983, 'en', 'name', 'Second Affiliated Hospital of Jilin University'),
(94980, 78984, 'en', 'name', 'Texas Fertility Center'),
(94981, 78985, 'en', 'name', 'Institute for Local Self-Reliance'),
(94982, 78986, 'en', 'name', 'American Contact Dermatitis Society'),
(94983, 78987, 'en', 'name', 'ProHealth Oconomowoc Memorial Hospital'),
(94984, 78988, 'en', 'name', 'Baptist Health Madisonville'),
(94985, 78989, 'en', 'name', 'Nopparat Rajathanee Hospital'),
(94986, 78989, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø™ąøžąø£ąø±ąø•ąø™ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(94987, 78990, 'it', 'name', 'La Fondazione Ettore Sansavini per la Ricerca Scientifica'),
(94988, 78991, 'en', 'name', 'National Eye Centre'),
(94989, 78992, 'en', 'name', 'Visitor Studies Association'),
(94990, 78993, 'en', 'name', 'Aventura Hospital and Medical Center'),
(94991, 78994, 'en', 'name', 'Austin Regional Clinic'),
(94992, 78995, 'en', 'name', 'TERI University'),
(94993, 78996, 'no_lang_code', 'name', 'HistoGeneX (Belgium)'),
(94994, 78997, 'en', 'name', 'Ethnological Museum'),
(94995, 78997, 'de', 'name', 'Ethnologisches Museum Berlin'),
(94996, 78998, 'en', 'name', 'New Hope Fertility Center'),
(94997, 78999, 'en', 'name', 'Faith Regional Health Services'),
(94998, 79000, 'no_lang_code', 'name', 'Domtar (Canada)'),
(94999, 79001, 'no_lang_code', 'name', 'Statistical Research (United States)'),
(95000, 79002, 'en', 'name', 'European Society of Biomechanics'),
(95001, 79003, 'de', 'name', 'Marien Hospital Wesel'),
(95002, 79004, 'en', 'name', 'Reid Health'),
(95003, 79005, 'no_lang_code', 'name', 'Arctic Slope Regional (United States)'),
(95004, 79006, 'en', 'name', 'West Virginia Geological & Economic Survey'),
(95005, 79007, 'en', 'name', 'National Research Centre for Georgian Art History and Heritage Preservation'),
(95006, 79007, 'ka', 'name', 'įƒ’įƒ˜įƒįƒ įƒ’įƒ˜ įƒ©įƒ£įƒ‘įƒ˜įƒœįƒįƒØįƒ•įƒ˜įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜ įƒ®įƒ”įƒšįƒįƒ•įƒœįƒ”įƒ‘įƒ˜įƒ” įƒ˜įƒ”įƒ¢įƒįƒ įƒ˜įƒ˜įƒ”įƒ įƒ“įƒ įƒ«įƒ”įƒ’įƒšįƒ—įƒ įƒ“įƒįƒŖįƒ•įƒ˜įƒ” įƒ™įƒ•įƒšįƒ”įƒ•įƒ˜įƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜'),
(95007, 79008, 'fr', 'name', 'FƩdƩration FranƧaise des Associations et Amicales de Malades Insuffisants ou HandicapƩs Respiratoires'),
(95008, 79009, 'en', 'name', 'Korean Society of Spine Surgery'),
(95009, 79009, 'ko', 'name', 'ėŒ€ķ•œģ²™ģ¶”ģ™øź³¼ķ•™ķšŒ'),
(95010, 79010, 'en', 'name', 'Salt Lake Regional Medical Center'),
(95011, 79011, 'en', 'name', 'Fawcett Society'),
(95012, 79012, 'no_lang_code', 'name', 'Rolls-Royce (Canada)'),
(95013, 79013, 'en', 'name', 'Icelandic Fisheries Laboratories'),
(95014, 79014, 'en', 'name', 'Altai State University'),
(95015, 79014, 'ru', 'name', 'Алтайский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(95016, 79015, 'pl', 'name', 'Polskie Towarzystwo Gastroenterologii'),
(95017, 79016, 'no_lang_code', 'name', 'Oxurion (Belgium)'),
(95018, 79017, 'en', 'name', 'Caucasus Research Resource Centers'),
(95019, 79017, 'ka', 'name', 'įƒ™įƒįƒ•įƒ™įƒįƒ”įƒ˜įƒ˜įƒ” įƒ™įƒ•įƒšįƒ”įƒ•įƒ˜įƒ—įƒ˜ įƒ įƒ”įƒ”įƒ£įƒ įƒ”įƒ”įƒ‘įƒ˜įƒ” įƒŖįƒ”įƒœįƒ¢įƒ įƒ”įƒ‘įƒ˜įƒ”'),
(95020, 79018, 'en', 'name', 'Florida Department of Health in Orange County'),
(95021, 79019, 'en', 'name', 'Columbia St. Mary''s Hospital Ozaukee'),
(95022, 79020, 'pt', 'name', 'Fundação Luso-Americana Para o Desenvolvimento'),
(95023, 79020, 'en', 'name', 'Luso American Development Foundation'),
(95024, 79021, 'en', 'name', 'Plymouth Marine Laboratory'),
(95025, 79022, 'en', 'name', 'AdventHealth Kissimmee'),
(95026, 79023, 'en', 'name', 'Southeastern Community College - Iowa'),
(95027, 79024, 'en', 'name', 'Newport Restoration Foundation'),
(95028, 79025, 'en', 'name', 'Danish Medical Association'),
(95029, 79025, 'da', 'name', 'LƦgeforeningen'),
(95030, 79026, 'en', 'name', 'Maxwell Institute for Mathematical Sciences'),
(95031, 79027, 'es', 'name', 'El Colegio Mexiquense'),
(95032, 79028, 'en', 'name', 'Ochsner Baptist Medical Center'),
(95033, 79029, 'en', 'name', 'Close Up Foundation'),
(95034, 79030, 'en', 'name', 'Montefiore Health System'),
(95035, 79031, 'en', 'name', 'Bozeman Health Deaconess Hospital'),
(95036, 79032, 'en', 'name', 'Tri-Service General Hospital Beitou Branch'),
(95037, 79032, 'zh', 'name', 'äø‰č»ēø½é†«é™¢åŒ—ęŠ•åˆ†é™¢'),
(95038, 79033, 'en', 'name', 'Bay Area Hospital'),
(95039, 79034, 'en', 'name', 'Research Institute for Applied Sciences'),
(95040, 79034, 'ja', 'name', 'åæœē”Øē§‘å­¦ē ”ē©¶ę‰€'),
(95041, 79035, 'en', 'name', 'Michigan Primary Care Association'),
(95042, 79036, 'es', 'name', 'Hospital Universitario HM Sanchinarro'),
(95043, 79037, 'fi', 'name', 'Satakunnan Sairaanhoitopiirin'),
(95044, 79038, 'en', 'name', 'Betanien Hospital'),
(95045, 79038, 'no', 'name', 'Betanien sykehus'),
(95046, 79039, 'en', 'name', 'Nucro Technics'),
(95047, 79040, 'en', 'name', 'Society of Tribologists and Lubrication Engineers'),
(95048, 79041, 'en', 'name', 'Musculoskeletal Tumor Society'),
(95049, 79042, 'es', 'name', 'Colegio MƩdico de Chile'),
(95050, 79042, 'en', 'name', 'Medical College of Chile'),
(95051, 79043, 'en', 'name', 'American Society of Landscape Architects'),
(95052, 79044, 'en', 'name', 'Caspian University'),
(95053, 79044, 'kk', 'name', 'Каспий Университеті'),
(95054, 79045, 'en', 'name', 'Contra Costa Regional Medical Center'),
(95055, 79046, 'en', 'name', 'Government of Brunei Darussalam'),
(95056, 79047, 'en', 'name', 'Norton Women''s and Children''s Hospital'),
(95057, 79048, 'no_lang_code', 'name', 'Gossamer Bio (United States)'),
(95058, 79049, 'en', 'name', 'University Hospitals Parma Medical Center'),
(95059, 79050, 'no_lang_code', 'name', 'Quantum Design (United States)'),
(95060, 79051, 'en', 'name', 'Markfield Institute of Higher Education'),
(95061, 79052, 'en', 'name', 'Danish Ministry of Environment'),
(95062, 79052, 'da', 'name', 'MiljĆøministeriet'),
(95063, 79053, 'en', 'name', 'Tenwek Hospital'),
(95064, 79054, 'en', 'name', 'Constitutional Court of Korea'),
(95065, 79054, 'ko', 'name', 'ķ—Œė²•ģž¬ķŒģ†Œ'),
(95066, 79055, 'no_lang_code', 'name', 'Reata Pharmaceuticals (United States)'),
(95067, 79056, 'en', 'name', 'Regional Technology Strategies'),
(95068, 79057, 'en', 'name', 'Laerdal Foundation'),
(95069, 79058, 'no_lang_code', 'name', 'IBM (United Kingdom)'),
(95070, 79059, 'no_lang_code', 'name', 'Hankyu Hanshin Holdings (Japan)'),
(95071, 79059, 'ja', 'name', 'é˜Ŗę€„é˜Ŗē„žćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(95072, 79060, 'fr', 'name', 'Centre Hospitalier de Perpignan'),
(95073, 79061, 'no_lang_code', 'name', 'Acibadem City Clinic'),
(95074, 79062, 'en', 'name', 'Newport Museum and Art Gallery'),
(95075, 79063, 'en', 'name', 'Gyeongju National Museum'),
(95076, 79063, 'ko', 'name', '국립경주박물꓀'),
(95077, 79064, 'en', 'name', 'Society of Vertebrate Paleontology'),
(95078, 79065, 'en', 'name', 'The Korean Atopic Dermatitis Association'),
(95079, 79065, 'ko', 'name', 'ėŒ€ķ•œģ•„ķ† ķ”¼ķ”¼ė¶€ģ—¼ķ•™ķšŒ'),
(95080, 79066, 'fr', 'name', 'Institut de Statistiques et d’Études Ɖconomiques du Burundi'),
(95081, 79067, 'fr', 'name', 'Polyclinique de Franche ComtƩ'),
(95082, 79068, 'en', 'name', 'National Children''s Bureau'),
(95083, 79069, 'en', 'name', 'Vindolanda Trust'),
(95084, 79070, 'en', 'name', 'NHS Research Scotland'),
(95085, 79071, 'no_lang_code', 'name', 'Tauri Group (United States)'),
(95086, 79072, 'en', 'name', 'Alberta Gambling Research Institute'),
(95087, 79073, 'fr', 'name', 'Clinique des CĆØdres'),
(95088, 79074, 'en', 'name', 'Ocean Medical Center'),
(95089, 79075, 'no_lang_code', 'name', 'Boehringer Ingelheim (Austria)'),
(95090, 79076, 'en', 'name', 'USA Mitchell Cancer Institute'),
(95091, 79077, 'en', 'name', 'Covenant Medical Center'),
(95092, 79078, 'en', 'name', 'Asian Social Institute'),
(95093, 79079, 'de', 'name', 'Deutscher Wasserstoff und Brennstoffzellen Verband'),
(95094, 79079, 'en', 'name', 'German Hydrogen and Fuel-Cell Association'),
(95095, 79080, 'en', 'name', 'Rippe Health'),
(95096, 79081, 'en', 'name', 'Mid America Regional Council'),
(95097, 79082, 'fr', 'name', 'Institut de Formation et de Recherche DƩmographiques'),
(95098, 79083, 'en', 'name', 'Washington School of Psychiatry'),
(95099, 79084, 'en', 'name', 'University of Portland'),
(95100, 79084, 'fr', 'name', 'UniversitƩ de portland'),
(95101, 79085, 'no_lang_code', 'name', 'Asahi Shimbun Company (Japan)'),
(95102, 79085, 'ja', 'name', 'ęœę—„ę–°čžē¤¾'),
(95103, 79086, 'no_lang_code', 'name', 'Tishcon (United States)'),
(95104, 79087, 'en', 'name', 'Institute for Agriculture and Trade Policy'),
(95105, 79088, 'en', 'name', 'Energy Research Centre of the Netherlands'),
(95106, 79089, 'en', 'name', 'Bayan College'),
(95107, 79090, 'en', 'name', 'Fairview Lakes Medical Center'),
(95108, 79091, 'en', 'name', 'Canadian Society for Immunology'),
(95109, 79091, 'fr', 'name', 'SociƩtƩ Canadienne d''Immunologie'),
(95110, 79092, 'en', 'name', 'American Medical Society for Sports Medicine'),
(95111, 79093, 'no_lang_code', 'name', 'BMW (Germany)'),
(95112, 79093, 'de', 'name', 'Bayerische Motoren Werke'),
(95113, 79094, 'en', 'name', 'Western Regional Medical Center'),
(95114, 79095, 'en', 'name', 'Nutrifood'),
(95115, 79096, 'no_lang_code', 'name', 'Maple Leaf Foods'),
(95116, 79097, 'en', 'name', 'Korean Society of Gastrointestinal Endoscopy'),
(95117, 79097, 'ko', 'name', 'ėŒ€ķ•œģ†Œķ™”źø°ė‚“ģ‹œź²½ķ•™ķšŒ'),
(95118, 79098, 'en', 'name', 'Norton Hospital'),
(95119, 79099, 'en', 'name', 'The Princes Trust'),
(95120, 79100, 'en', 'name', 'American Society for Colposcopy and Cervical Pathology'),
(95121, 79101, 'en', 'name', 'Edwards Comprehensive Cancer Center'),
(95122, 79102, 'en', 'name', 'Little Rock School District'),
(95123, 79103, 'en', 'name', 'Fairfield Medical Center'),
(95124, 79104, 'en', 'name', 'Association for Supervision and Curriculum Development'),
(95125, 79105, 'en', 'name', 'Aurora West Allis Medical Center'),
(95126, 79106, 'en', 'name', 'NorthBay Healthcare'),
(95127, 79107, 'no_lang_code', 'name', 'FM Global (United States)'),
(95128, 79108, 'en', 'name', 'State Scientific Center of the Russian Federation - Federal Medical Biophysical Center named after A.I. Burnazyan'),
(95129, 79108, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской ФеГерации – Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский биофизический центр имени А.И. Š‘ŃƒŃ€Š½Š°Š·ŃŠ½Š°'),
(95130, 79109, 'en', 'name', 'Ark Medical Center'),
(95131, 79110, 'en', 'name', 'American Public Gardens Association'),
(95132, 79111, 'es', 'name', 'Instituto de Investigación Sanitaria Aragón'),
(95133, 79112, 'en', 'name', 'St.Amant'),
(95134, 79113, 'fr', 'name', 'Conservatoire de Musique et d’art Dramatique du QuĆ©bec'),
(95135, 79114, 'no_lang_code', 'name', 'Samil Pharm (South Korea)'),
(95136, 79114, 'ko', 'name', 'ģ‚¼ģ¼ģ œģ•½'),
(95137, 79115, 'en', 'name', 'Taipei Hospital'),
(95138, 79115, 'zh', 'name', 'č‡ŗåŒ—é†«é™¢'),
(95139, 79116, 'fr', 'name', 'CollĆØge LaflĆØche'),
(95140, 79117, 'en', 'name', 'Baton Rouge General'),
(95141, 79118, 'en', 'name', 'Planned Parenthood Toronto'),
(95142, 79119, 'en', 'name', 'National Health Research Institutes'),
(95143, 79119, 'zh', 'name', 'åœ‹å®¶č”›ē”Ÿē ”ē©¶é™¢'),
(95144, 79120, 'en', 'name', 'Baptist Memorial Health Care'),
(95145, 79121, 'en', 'name', 'Potomac Institute for Policy Studies'),
(95146, 79122, 'en', 'name', 'Delta State University'),
(95147, 79123, 'en', 'name', 'International Society of Automation'),
(95148, 79124, 'en', 'name', 'SME'),
(95149, 79125, 'en', 'name', 'Elisha Hospital'),
(95150, 79125, 'he', 'name', 'בית חולים אלישע'),
(95151, 79126, 'no_lang_code', 'name', 'Achieve Life Sciences (Canada)'),
(95152, 79127, 'en', 'name', 'University of Minnesota Health Maple Grove Clinics'),
(95153, 79128, 'en', 'name', 'People in Need'),
(95154, 79128, 'cs', 'name', 'Člověk v Tƭsni'),
(95155, 79129, 'en', 'name', 'Association for Machine Translation in the Americas'),
(95156, 79130, 'en', 'name', 'Nur University'),
(95157, 79130, 'es', 'name', 'Universidad Nur'),
(95158, 79131, 'en', 'name', 'Sunshine Hospital'),
(95159, 79132, 'en', 'name', 'Northeast Georgia Medical Center'),
(95160, 79133, 'en', 'name', 'Northern Mine Research Society'),
(95161, 79134, 'en', 'name', 'Boulder Community Hospital'),
(95162, 79135, 'no_lang_code', 'name', 'Ahava (Israel)'),
(95163, 79136, 'en', 'name', 'Ludwig Cancer Research'),
(95164, 79137, 'no_lang_code', 'name', 'Marie Stopes Society'),
(95165, 79138, 'no_lang_code', 'name', 'Axpo (Switzerland)'),
(95166, 79139, 'en', 'name', 'Memorial Regional Medical Center'),
(95167, 79140, 'no_lang_code', 'name', 'Catalent (United States)'),
(95168, 79141, 'en', 'name', 'International University School of Medicine'),
(95169, 79142, 'en', 'name', 'WellSpan Ephrata Community Hospital'),
(95170, 79143, 'de', 'name', 'Arbeitsstelle für Kulturwissenschaftliche Forschungen'),
(95171, 79144, 'en', 'name', 'National Medical Holding'),
(95172, 79144, 'kk', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский холГинг'),
(95173, 79145, 'en', 'name', 'Beaufort County Community College');
INSERT INTO `ror_settings` VALUES
(95174, 79146, 'en', 'name', 'Kazakh Research Institute of Agriculture and Plant growing'),
(95175, 79146, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› Жер ŠØŠ°Ń€ŃƒŠ°ŃˆŃ‹Š»Ń‹Ņ“Ń‹ Ғылыми Š—ŠµŃ€Ń‚Ń‚ŠµŃƒ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(95176, 79147, 'en', 'name', 'Eastern Regional Medical Center'),
(95177, 79148, 'en', 'name', 'Doylestown Hospital'),
(95178, 79149, 'en', 'name', 'Start International'),
(95179, 79150, 'en', 'name', 'Ontario Shores Centre for Mental Health Sciences'),
(95180, 79151, 'en', 'name', 'FGK Clinical Research'),
(95181, 79152, 'en', 'name', 'Peterson Institute for International Economics'),
(95182, 79153, 'en', 'name', 'Banneker Douglass Museum'),
(95183, 79154, 'en', 'name', 'Norton Community Hospital'),
(95184, 79155, 'en', 'name', 'National Athletic Trainers Association'),
(95185, 79156, 'en', 'name', 'Southampton General Hospital'),
(95186, 79157, 'en', 'name', 'IEEE Industry Applications Society'),
(95187, 79158, 'en', 'name', 'Standards, Productivity and Innovation Board'),
(95188, 79158, 'zh', 'name', '标新局'),
(95189, 79159, 'en', 'name', 'Renown Regional Medical Center'),
(95190, 79160, 'en', 'name', 'University Hospitals of Morecambe Bay NHS Foundation Trust'),
(95191, 79161, 'en', 'name', 'Redcliffe Hospital'),
(95192, 79162, 'no_lang_code', 'name', 'Celavie Biosciences (United States)'),
(95193, 79163, 'en', 'name', 'Canadian Association for Laboratory Animal Science'),
(95194, 79163, 'fr', 'name', 'L’Association Canadienne de la MĆ©decine des Animaux de Laboratoire'),
(95195, 79164, 'en', 'name', 'Wigmore Hall'),
(95196, 79165, 'no_lang_code', 'name', 'BML Munjal University'),
(95197, 79166, 'en', 'name', 'University of Travnik'),
(95198, 79166, 'hr', 'name', 'Univerzitet u Travniku'),
(95199, 79167, 'en', 'name', 'Montana Learning Center'),
(95200, 79168, 'en', 'name', 'Manchester City Football Club'),
(95201, 79169, 'en', 'name', 'Black Hills Special Services Cooperative'),
(95202, 79170, 'en', 'name', 'Kake Educational Institution'),
(95203, 79170, 'ja', 'name', 'åŠ čØˆå­¦åœ’'),
(95204, 79171, 'en', 'name', 'Johns Hopkins Center for Communication Programs'),
(95205, 79172, 'en', 'name', 'LifeStream'),
(95206, 79173, 'en', 'name', 'Park Vale Academy'),
(95207, 79174, 'de', 'name', 'Verbund Katholischer Kliniken Düsseldorf'),
(95208, 79175, 'en', 'name', 'Shirak State University'),
(95209, 79175, 'hy', 'name', 'Õ‡Õ«Ö€Õ”ÕÆÕ« Õ„Õ«Ö„Õ”ÕµÕ„Õ¬ Õ†Õ”Õ¬Õ¢Õ”Õ¶Õ¤ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(95210, 79176, 'no_lang_code', 'name', 'Pfizer (Austria)'),
(95211, 79177, 'de', 'name', 'Neue Kantonsschule Aarau'),
(95212, 79178, 'en', 'name', 'Danish Geotechnical Society'),
(95213, 79178, 'da', 'name', 'Dansk Geoteknisk Forening'),
(95214, 79179, 'en', 'name', 'Northamptonshire Healthcare NHS Foundation Trust'),
(95215, 79180, 'en', 'name', 'Otago Polytechnic'),
(95216, 79181, 'en', 'name', 'International Center for Research, Education and Training'),
(95217, 79182, 'en', 'name', 'Academy of Cognitive and Natural Sciences'),
(95218, 79182, 'uk', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń когнітивних та прироГничих наук'),
(95219, 79183, 'pl', 'name', 'Centrum Patologii Molekularnej Cellgen'),
(95220, 79183, 'no_lang_code', 'name', 'Molecular Pathology Centre Cellgen'),
(95221, 79184, 'en', 'name', 'Universal College of Learning'),
(95222, 79185, 'en', 'name', 'Cherokee Nation'),
(95223, 79186, 'en', 'name', 'MRC Integrative Epidemiology Unit'),
(95224, 79187, 'en', 'name', 'Leiden University'),
(95225, 79187, 'nl', 'name', 'Universiteit Leiden'),
(95226, 79188, 'en', 'name', 'Arab Academy for Management, Banking and Financial Sciences'),
(95227, 79188, 'ar', 'name', 'Ų§Ł„Ų£ŁƒŲ§ŲÆŁ…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ© ŁˆŲ§Ł„Ł…Ų§Ł„ŁŠŲ© ŁˆŲ§Ł„Ł…ŲµŲ±ŁŁŠŲ©'),
(95228, 79189, 'no', 'name', 'Norges Bank'),
(95229, 79190, 'no', 'name', 'KunsthĆøgskolen i Oslo'),
(95230, 79190, 'en', 'name', 'Oslo National Academy of the Arts'),
(95231, 79191, 'en', 'name', 'OpenCitations'),
(95232, 79192, 'no_lang_code', 'name', 'Pacific Theological College'),
(95233, 79193, 'no_lang_code', 'name', 'Astex Pharmaceuticals'),
(95234, 79194, 'ga', 'name', 'OspidƩil na hOllscoile'),
(95235, 79194, 'en', 'name', 'University Hospital Galway'),
(95236, 79195, 'en', 'name', 'Providence Health & Services'),
(95237, 79196, 'en', 'name', 'Higher Institute of Engineering and Technology - King Marriott'),
(95238, 79196, 'ar', 'name', 'لمعاهد Ų§Ł„Ų¹Ł„ŁŠŲ§ ŲØŁƒŁŠŁ†Ų¬ Ł…Ų±ŁŠŁˆŲ·'),
(95239, 79197, 'en', 'name', 'MRC Population Health Research Unit'),
(95240, 79198, 'en', 'name', 'Academy Of Finance'),
(95241, 79198, 'vi', 'name', 'Hį»c Viện TĆ i ChĆ­nh'),
(95242, 79199, 'hr', 'name', 'Gradski muzej Vinkovci'),
(95243, 79199, 'en', 'name', 'Vinkovci Municipal Museum'),
(95244, 79200, 'no_lang_code', 'name', 'Seagen (Canada)'),
(95245, 79201, 'en', 'name', 'Institute of Pharmacology'),
(95246, 79202, 'en', 'name', 'Technological University of North Tamaulipas'),
(95247, 79202, 'es', 'name', 'Universidad Tecnológica de Tamaulipas Norte'),
(95248, 79203, 'no_lang_code', 'name', 'UK EPC'),
(95249, 79204, 'no_lang_code', 'name', 'Liberate Science'),
(95250, 79205, 'en', 'name', 'Federative Institute of Behavioral Addictions'),
(95251, 79205, 'fr', 'name', 'Institut FƩdƩratif des Addictions Comportementales'),
(95252, 79206, 'de', 'name', 'Deutsches Institut für Urbanistik'),
(95253, 79206, 'en', 'name', 'German Institute of Urban Affairs'),
(95254, 79207, 'en', 'name', 'Global Health 50/50'),
(95255, 79208, 'en', 'name', 'Manukau Institute of Technology'),
(95256, 79209, 'id', 'name', 'STIE Kesuma Negara Blitar'),
(95257, 79210, 'en', 'name', 'Antioquia Research Institute'),
(95258, 79210, 'es', 'name', 'Instituto Antioqueño de Investigación'),
(95259, 79211, 'en', 'name', 'Waikato Institute of Technology'),
(95260, 79212, 'en', 'name', 'MRC Human Genetics Unit'),
(95261, 79213, 'no_lang_code', 'name', 'Nepal Institute of Research and Communications (NIRC)'),
(95262, 79214, 'no', 'name', 'Norsk jernbanemuseum'),
(95263, 79214, 'en', 'name', 'Norwegian Railway Museum'),
(95264, 79215, 'en', 'name', 'Nelson Marlborough Institute of Technology'),
(95265, 79216, 'en', 'name', 'Association of European Schools of Planning'),
(95266, 79217, 'en', 'name', 'Southern Institute of Technology'),
(95267, 79218, 'en', 'name', 'AVA – Academy of Visual Arts'),
(95268, 79218, 'sk', 'name', 'AVA – Akademija za Vizualne Umetnosti'),
(95269, 79219, 'en', 'name', 'Bapuji Institute of Engineering and Technology'),
(95270, 79220, 'en', 'name', 'Leiden Observatory'),
(95271, 79220, 'nl', 'name', 'Sterrewacht Leiden'),
(95272, 79221, 'en', 'name', 'Delaware Museum of Nature and Science'),
(95273, 79222, 'en', 'name', 'Symbiosis Group'),
(95274, 79223, 'no_lang_code', 'name', 'BuiltWith'),
(95275, 79224, 'en', 'name', 'Wellington Institute of Technology'),
(95276, 79225, 'no_lang_code', 'name', 'Otsuka (Japan)'),
(95277, 79225, 'ja', 'name', 'å¤§å”šč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(95278, 79226, 'en', 'name', 'Eastern Institute of Technology'),
(95279, 79227, 'en', 'name', 'Toi Ohomai Institute of Technology'),
(95280, 79228, 'en', 'name', 'eLife Sciences Publications'),
(95281, 79229, 'ga', 'name', 'Grúpa Cúram SlÔinte Ollscoile Saolta'),
(95282, 79229, 'en', 'name', 'Saolta University Health Care Group'),
(95283, 79230, 'no_lang_code', 'name', 'Haradoi Hospital'),
(95284, 79230, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŽŸåœŸäŗ•ē—…é™¢'),
(95285, 79231, 'en', 'name', 'Japan Society of Home Economics'),
(95286, 79231, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å®¶ę”æå­¦ä¼š'),
(95287, 79232, 'no_lang_code', 'name', 'Saitama Prefecture'),
(95288, 79232, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒåŗ'),
(95289, 79233, 'en', 'name', 'Kushiro Junior College'),
(95290, 79233, 'ja', 'name', 'é‡§č·ÆēŸ­ęœŸå¤§å­¦'),
(95291, 79234, 'en', 'name', 'National Epilepsy Center'),
(95292, 79234, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹é™å²”ć¦ć‚“ć‹ć‚“ćƒ»ē„žēµŒåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(95293, 79235, 'en', 'name', 'Tokyo Institute of Psychiatry'),
(95294, 79235, 'ja', 'name', 'č²”å›£ę³•äŗŗę±äŗ¬éƒ½åŒ»å­¦ē ”ē©¶ę©Ÿę§‹ę±äŗ¬éƒ½ē²¾ē„žåŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(95295, 79236, 'no_lang_code', 'name', 'Yakult Central Institute'),
(95296, 79236, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¤ć‚Æćƒ«ćƒˆęœ¬ē¤¾'),
(95297, 79237, 'no_lang_code', 'name', 'Toyo Ink (Japan)'),
(95298, 79237, 'ja', 'name', 'ę±ę“‹ć‚¤ćƒ³ć‚­ę Ŗå¼ä¼šē¤¾'),
(95299, 79238, 'en', 'name', 'Japanese Society of Hypertension'),
(95300, 79238, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬é«˜č”€åœ§å­¦ä¼š'),
(95301, 79239, 'en', 'name', 'Kobe City Medical Center General Hospital'),
(95302, 79239, 'ja', 'name', 'ē„žęˆøåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼äø­å¤®åø‚ę°‘ē—…é™¢'),
(95303, 79240, 'no_lang_code', 'name', 'Ulvac-Phi (Japan)'),
(95304, 79240, 'ja', 'name', 'ć‚¢ćƒ«ćƒćƒƒć‚Æćƒ»ćƒ•ć‚”ć‚¤ę Ŗå¼ä¼šē¤¾'),
(95305, 79241, 'no_lang_code', 'name', 'Mito Saiseikai General Hospital'),
(95306, 79241, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šę°“ęˆøęøˆē”Ÿä¼šē·åˆē—…é™¢'),
(95307, 79242, 'no_lang_code', 'name', 'Hewlett-Packard (Japan)'),
(95308, 79242, 'ja', 'name', 'ę—„ęœ¬ćƒ’ćƒ„ćƒ¼ćƒ¬ćƒƒćƒˆćƒ»ćƒ‘ćƒƒć‚«ćƒ¼ćƒ‰ę Ŗå¼ä¼šē¤¾'),
(95309, 79243, 'en', 'name', 'Nippon Veterinary and Life Science University'),
(95310, 79243, 'ja', 'name', 'ę—„ęœ¬ē£åŒ»ē”Ÿå‘½ē§‘å­¦å¤§å­¦'),
(95311, 79244, 'no_lang_code', 'name', 'Kobe Gakuin University'),
(95312, 79244, 'ja', 'name', 'ē„žęˆøå­¦é™¢å¤§å­¦'),
(95313, 79245, 'en', 'name', 'Japan Textbook Research Center'),
(95314, 79245, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę•™ē§‘ę›øē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(95315, 79246, 'no_lang_code', 'name', 'Osaka Hospital'),
(95316, 79246, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹å¤§é˜Ŗē—…é™¢'),
(95317, 79247, 'no_lang_code', 'name', 'Dexerials (Japan)'),
(95318, 79247, 'ja', 'name', 'ćƒ‡ć‚Æć‚»ćƒŖć‚¢ćƒ«ć‚ŗę Ŗå¼ä¼šē¤¾'),
(95319, 79248, 'no_lang_code', 'name', 'GS1 Japan'),
(95320, 79248, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęµé€šć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(95321, 79249, 'no_lang_code', 'name', 'Glory (Japan)'),
(95322, 79249, 'ja', 'name', 'ć‚°ćƒ­ćƒ¼ćƒŖćƒ¼ę Ŗå¼ä¼šē¤¾'),
(95323, 79250, 'en', 'name', 'Okayama University Hospital'),
(95324, 79250, 'ja', 'name', '岔山大学病院'),
(95325, 79251, 'en', 'name', 'Tottori University Hospital'),
(95326, 79251, 'ja', 'name', 'é³„å–å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(95327, 79252, 'en', 'name', 'Inamori Foundation'),
(95328, 79252, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗēØ²ē››č²”å›£'),
(95329, 79253, 'no_lang_code', 'name', 'Texas Instruments (Japan)'),
(95330, 79253, 'ja', 'name', 'ę—„ęœ¬ćƒ†ć‚­ć‚µć‚¹ćƒ»ć‚¤ćƒ³ć‚¹ćƒ„ćƒ«ćƒ”ćƒ³ćƒ„ę Ŗå¼ä¼šē¤¾'),
(95331, 79254, 'en', 'name', 'Osaka City General Hospital'),
(95332, 79254, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§é˜Ŗåø‚ę°‘ē—…é™¢ę©Ÿę§‹å¤§é˜Ŗåø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(95333, 79255, 'en', 'name', 'Nippon Institute for Biological Science'),
(95334, 79255, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(95335, 79256, 'en', 'name', 'Japanese Red Cross Nagoya Daini Hospital'),
(95336, 79256, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾åå¤å±‹ē¬¬äŗŒčµ¤åå­—ē—…é™¢'),
(95337, 79257, 'en', 'name', 'Nagano Prefectural Suzaka Hospital'),
(95338, 79257, 'ja', 'name', 'é•·é‡ŽēœŒē«‹äæ”å·žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(95339, 79258, 'en', 'name', 'Shujitsu University'),
(95340, 79258, 'ja', 'name', '就実大学'),
(95341, 79259, 'en', 'name', 'Tokyo Metropolitan Institute of Gerontology'),
(95342, 79259, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę±äŗ¬éƒ½å„åŗ·é•·åÆæåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(95343, 79260, 'en', 'name', 'Biotherapy Institute of Japan'),
(95344, 79260, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—„ęœ¬ćƒć‚¤ć‚Ŗć‚»ćƒ©ćƒ”ćƒ¼ē ”ē©¶ę‰€'),
(95345, 79261, 'en', 'name', 'Yamagata Research Institute Of Technology'),
(95346, 79261, 'ja', 'name', 'å±±å½¢ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(95347, 79262, 'no_lang_code', 'name', 'Kasugai Municipal Hospital'),
(95348, 79262, 'ja', 'name', 'ę˜„ę—„äŗ•åø‚ę°‘ē—…é™¢'),
(95349, 79263, 'no_lang_code', 'name', 'API (Japan)'),
(95350, 79263, 'ja', 'name', 'ć‚¢ćƒ”ę Ŗå¼ä¼šē¤¾'),
(95351, 79264, 'en', 'name', 'Nagoya Medical Center'),
(95352, 79264, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹åå¤å±‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(95353, 79265, 'en', 'name', 'Nara Prefectural Institute of Public Health Research Center'),
(95354, 79265, 'ja', 'name', 'å„ˆč‰ÆēœŒäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(95355, 79266, 'no_lang_code', 'name', 'Laurel Bank Machines (Japan)'),
(95356, 79266, 'ja', 'name', 'ćƒ­ćƒ¼ćƒ¬ćƒ«ćƒćƒ³ć‚Æćƒžć‚·ćƒ³ę Ŗå¼ä¼šē¤¾'),
(95357, 79267, 'no_lang_code', 'name', 'Lixil (Japan)'),
(95358, 79267, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾LIXIL'),
(95359, 79268, 'en', 'name', 'Chukyo Hospital'),
(95360, 79268, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹äø­äŗ¬ē—…é™¢'),
(95361, 79269, 'no_lang_code', 'name', 'Surugadai Nihon University Hospital'),
(95362, 79269, 'ja', 'name', 'ę—„ęœ¬å¤§å­¦ē—…é™¢'),
(95363, 79270, 'no_lang_code', 'name', 'Komori (Japan)'),
(95364, 79270, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å°ę£®ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(95365, 79271, 'en', 'name', 'Light Metal Educational Foundation'),
(95366, 79271, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč»½é‡‘å±žå„Øå­¦ä¼š'),
(95367, 79272, 'en', 'name', 'Aichi Cancer Center'),
(95368, 79272, 'ja', 'name', 'ę„›ēŸ„ēœŒćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(95369, 79273, 'en', 'name', 'Tochigi Prefectural Fisheries Experimental Station'),
(95370, 79273, 'ja', 'name', 'ę ƒęœØēœŒę°“ē”£č©¦éØ“å “'),
(95371, 79274, 'no_lang_code', 'name', 'BoZo Research Center (Japan)'),
(95372, 79274, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒœć‚¾ćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(95373, 79275, 'en', 'name', 'Nagano National Hospital'),
(95374, 79275, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ę±é•·é‡Žē—…é™¢'),
(95375, 79276, 'en', 'name', 'Japanese Red Cross Kumamoto Hospital'),
(95376, 79276, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ē†Šęœ¬čµ¤åå­—ē—…é™¢'),
(95377, 79277, 'no_lang_code', 'name', 'NOK Corporation (Japan)'),
(95378, 79277, 'ja', 'name', 'NOKę Ŗå¼ä¼šē¤¾'),
(95379, 79278, 'en', 'name', 'Kyorin University Hospital'),
(95380, 79278, 'ja', 'name', 'ęęž—å¤§å­¦åŒ»å­¦éƒØä»˜å±žē—…é™¢'),
(95381, 79279, 'en', 'name', 'Tokyo Metropolitan Neurological Hospital'),
(95382, 79279, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ē„žēµŒē—…é™¢'),
(95383, 79280, 'en', 'name', 'Japanese Red Cross Kochi Hospital'),
(95384, 79280, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é«˜ēŸ„čµ¤åå­—ē—…é™¢'),
(95385, 79281, 'en', 'name', 'Aichi Institute of Technology'),
(95386, 79281, 'ja', 'name', 'ę„›ēŸ„å·„ę„­å¤§å­¦'),
(95387, 79282, 'en', 'name', 'Kato Memorial Bioscience Foundation'),
(95388, 79282, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŠ č—¤čØ˜åæµćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ęŒÆčˆˆč²”å›£'),
(95389, 79283, 'no_lang_code', 'name', 'Sakakibara Memorial Hospital'),
(95390, 79283, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åæƒč‡“č”€åœ§ē ”ē©¶ęŒÆčˆˆä¼šę¦ŠåŽŸčØ˜åæµē—…é™¢'),
(95391, 79284, 'en', 'name', 'Kyoto University Hospital'),
(95392, 79284, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(95393, 79285, 'ja', 'name', 'JAć‹ćæć¤ćŒåŽšē”Ÿé€£äøŠéƒ½č³€ē·åˆē—…é™¢'),
(95394, 79285, 'no_lang_code', 'name', 'Kamituga General Hospital'),
(95395, 79286, 'en', 'name', 'University of Tsukuba Hospital'),
(95396, 79286, 'ja', 'name', 'ē­‘ę³¢å¤§å­¦é™„å±žē—…é™¢'),
(95397, 79287, 'no_lang_code', 'name', 'Hosokawa Micron (Japan)'),
(95398, 79287, 'ja', 'name', 'ćƒ›ć‚½ć‚«ćƒÆćƒŸć‚Æćƒ­ćƒ³ę Ŗå¼ä¼šē¤¾'),
(95399, 79288, 'en', 'name', 'Tohoku University of Community Service and Science'),
(95400, 79288, 'ja', 'name', 'ę±åŒ—å…¬ē›Šę–‡ē§‘å¤§å­¦'),
(95401, 79289, 'en', 'name', 'Institute for Animal Reproduction'),
(95402, 79289, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå‹•ē‰©ē¹ę®–ē ”ē©¶ę‰€'),
(95403, 79290, 'en', 'name', 'RIKEN Center for Computational Science'),
(95404, 79290, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€čØˆē®—ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(95405, 79291, 'en', 'name', 'University of East Asia'),
(95406, 79291, 'ja', 'name', 'ę±äŗœå¤§å­¦'),
(95407, 79292, 'en', 'name', 'Osaka Neurological Institute'),
(95408, 79292, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå”ę¾¤čØ˜åæµä¼šå¤§é˜Ŗč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(95409, 79293, 'no_lang_code', 'name', 'Micron (Japan)'),
(95410, 79293, 'ja', 'name', 'ćƒžć‚¤ć‚Æćƒ­ćƒ³ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(95411, 79294, 'en', 'name', 'Tsurumi University'),
(95412, 79294, 'ja', 'name', '鶓見大学'),
(95413, 79295, 'no_lang_code', 'name', 'Matsuyama Shimin Hospital'),
(95414, 79295, 'ja', 'name', 'ę¾å±±åø‚ę°‘ē—…é™¢'),
(95415, 79296, 'no_lang_code', 'name', 'Toyohashi Municipal Hospital'),
(95416, 79296, 'ja', 'name', 'č±Šę©‹åø‚ę°‘ē—…é™¢'),
(95417, 79297, 'en', 'name', 'Almeida Memorial Hospital'),
(95418, 79297, 'ja', 'name', 'å¤§åˆ†åø‚åŒ»åø«ä¼šē«‹ć‚¢ćƒ«ćƒ”ć‚¤ćƒ€ē—…é™¢'),
(95419, 79298, 'en', 'name', 'Kobe University Hospital'),
(95420, 79298, 'ja', 'name', 'ē„žęˆøå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(95421, 79299, 'en', 'name', 'Children''s Cancer Association of Japan'),
(95422, 79299, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćŒć‚“ć®å­ć©ć‚‚ć‚’å®ˆć‚‹ä¼š'),
(95423, 79300, 'en', 'name', 'National Institute for Minamata Disease'),
(95424, 79300, 'ja', 'name', 'ē’°å¢ƒēœå›½ē«‹ę°“äæ£ē—…ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(95425, 79301, 'en', 'name', 'Institute for International Studies and Training'),
(95426, 79301, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč²æę˜“ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(95427, 79302, 'no_lang_code', 'name', 'GKN (Japan)'),
(95428, 79302, 'ja', 'name', 'GKNćƒ‰ćƒ©ć‚¤ćƒ–ćƒ©ć‚¤ćƒ³ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(95429, 79303, 'no_lang_code', 'name', 'Nabtesco (Japan)'),
(95430, 79303, 'ja', 'name', 'ćƒŠćƒ–ćƒ†ć‚¹ć‚³ę Ŗå¼ä¼šē¤¾'),
(95431, 79304, 'en', 'name', 'Akita University Hospital'),
(95432, 79304, 'ja', 'name', 'ē§‹ē”°å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(95433, 79305, 'en', 'name', 'Japan Fine Ceramics Center'),
(95434, 79305, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ•ć‚”ć‚¤ćƒ³ć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(95435, 79306, 'en', 'name', 'Saga Medical School Hospital'),
(95436, 79306, 'ja', 'name', 'ä½č³€å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(95437, 79307, 'en', 'name', 'Nagano Red Cross Hospital'),
(95438, 79307, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é•·é‡Žčµ¤åå­—ē—…é™¢'),
(95439, 79308, 'en', 'name', 'Chiba East Hospital'),
(95440, 79308, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹åƒč‘‰ę±ē—…é™¢'),
(95441, 79309, 'en', 'name', 'Hokkaido University Hospital'),
(95442, 79309, 'ja', 'name', 'åŒ—ęµ·é“å¤§å­¦ē—…é™¢'),
(95443, 79310, 'no_lang_code', 'name', 'Suntory (Japan)'),
(95444, 79310, 'ja', 'name', 'ć‚µćƒ³ćƒˆćƒŖćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(95445, 79311, 'fr', 'name', 'ConfƩrence Universitaire de Suisse Occidentale'),
(95446, 79312, 'en', 'name', 'National Research Institute of Police Science'),
(95447, 79312, 'ja', 'name', 'č­¦åÆŸåŗē§‘å­¦č­¦åÆŸē ”ē©¶ę‰€'),
(95448, 79313, 'en', 'name', 'Tokai University Hospital'),
(95449, 79313, 'ja', 'name', 'ę±ęµ·å¤§å­¦åŒ»å­¦éƒØä»˜å±žē—…é™¢'),
(95450, 79314, 'en', 'name', 'Cosmetology Research Foundation'),
(95451, 79314, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚³ć‚¹ćƒ”ćƒˆćƒ­ć‚øćƒ¼ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(95452, 79315, 'no_lang_code', 'name', 'Niigata Cancer Center Hospital'),
(95453, 79315, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼ę–°ę½Ÿē—…é™¢'),
(95454, 79316, 'no_lang_code', 'name', 'Oiles (japan)'),
(95455, 79316, 'ja', 'name', 'ć‚Ŗć‚¤ćƒ¬ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(95456, 79317, 'en', 'name', 'National Institute of Health Sciences'),
(95457, 79317, 'ja', 'name', 'åŽšē”ŸåŠ“åƒēœå›½ē«‹åŒ»č–¬å“é£Ÿå“č”›ē”Ÿē ”ē©¶ę‰€'),
(95458, 79318, 'no_lang_code', 'name', 'Bayer (Japan)'),
(95459, 79318, 'ja', 'name', 'ćƒć‚¤ć‚Øćƒ«č–¬å“ę Ŗå¼ä¼šē¤¾'),
(95460, 79319, 'no_lang_code', 'name', 'Fuji Kiko (Japan)'),
(95461, 79319, 'ja', 'name', 'åÆŒå£«ę©Ÿå·„ę Ŗå¼ä¼šē¤¾'),
(95462, 79320, 'en', 'name', 'Musashino Red Cross Hospital'),
(95463, 79320, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ę­¦č”µé‡Žčµ¤åå­—ē—…é™¢'),
(95464, 79321, 'en', 'name', 'Japan Industrial Safety and Health Association'),
(95465, 79321, 'ja', 'name', 'ē‰¹åˆ„ę°‘é–“ę³•äŗŗäø­å¤®åŠ“åƒē½å®³é˜²ę­¢å”ä¼š'),
(95466, 79322, 'en', 'name', 'Tokai Central Hospital'),
(95467, 79322, 'ja', 'name', 'å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆę±ęµ·äø­å¤®ē—…é™¢'),
(95468, 79323, 'no_lang_code', 'name', 'CellFree Sciences (Japan)'),
(95469, 79323, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ćƒ«ćƒ•ćƒŖćƒ¼ć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(95470, 79324, 'no_lang_code', 'name', 'Fukui-ken Saiseikai Hospital'),
(95471, 79324, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šē¦äŗ•ēœŒęøˆē”Ÿä¼šē—…é™¢'),
(95472, 79325, 'en', 'name', 'Japanese Red Cross Nagoya Daiichi Hospital'),
(95473, 79325, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾åå¤å±‹ē¬¬äø€čµ¤åå­—ē—…é™¢'),
(95474, 79326, 'no_lang_code', 'name', 'Berurando General Hospital'),
(95475, 79326, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē”Ÿé•·ä¼šćƒ™ćƒ«ćƒ©ćƒ³ćƒ‰ē·åˆē—…é™¢'),
(95476, 79327, 'en', 'name', 'Toin University of Yokohama'),
(95477, 79327, 'ja', 'name', 'ę”č”­ęØŖęµœå¤§å­¦'),
(95478, 79328, 'no_lang_code', 'name', 'Toyohashi Heart Center'),
(95479, 79328, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę¾„åæƒä¼šč±Šę©‹ćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(95480, 79329, 'no_lang_code', 'name', 'KRI'),
(95481, 79329, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾KRI'),
(95482, 79330, 'en', 'name', 'Research Institute for Brain and Blood Vessels Akita'),
(95483, 79330, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē§‹ē”°ēœŒē«‹ē—…é™¢ę©Ÿę§‹ē§‹ē”°ēœŒē«‹č„³č”€ē®”ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(95484, 79331, 'en', 'name', 'East Siberian University of Economics and Law'),
(95485, 79331, 'ru', 'name', 'Восточно-Дибирский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(95486, 79332, 'en', 'name', 'Sapporo City General Hospital'),
(95487, 79332, 'ja', 'name', 'åø‚ē«‹ęœ­å¹Œē—…é™¢'),
(95488, 79333, 'no_lang_code', 'name', 'Fuence (Japan)'),
(95489, 79333, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ„ćƒ¼ć‚Øćƒ³ć‚¹'),
(95490, 79334, 'en', 'name', 'Mitsui Memorial Hospital'),
(95491, 79334, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗäø‰äŗ•čØ˜åæµē—…é™¢'),
(95492, 79335, 'en', 'name', 'Japanese Red Cross Kobe Hospital'),
(95493, 79335, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ē„žęˆøčµ¤åå­—ē—…é™¢'),
(95494, 79336, 'en', 'name', 'Hoso Bunka Foundation'),
(95495, 79336, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę”¾é€ę–‡åŒ–åŸŗé‡‘'),
(95496, 79337, 'en', 'name', 'Yamagata Prefectural Yonezawa University of Nutrition Sciences'),
(95497, 79337, 'ja', 'name', 'å±±å½¢ēœŒē«‹ē±³ę²¢ę „é¤Šå¤§å­¦'),
(95498, 79338, 'en', 'name', 'Matsumae International Foundation'),
(95499, 79338, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę¾å‰å›½éš›å‹å„½č²”å›£'),
(95500, 79339, 'en', 'name', 'National Institute of Occupational Safety and Health'),
(95501, 79339, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹åŠ“åƒå®‰å…Øč”›ē”Ÿē·åˆē ”ē©¶ę‰€'),
(95502, 79340, 'en', 'name', 'Nara Medical University'),
(95503, 79340, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹åŒ»ē§‘å¤§å­¦'),
(95504, 79341, 'ja', 'name', 'JAę„›ēŸ„åŽšē”Ÿé€£ę±Ÿå—åŽšē”Ÿē—…é™¢'),
(95505, 79341, 'no_lang_code', 'name', 'Konan Kosei Hospital'),
(95506, 79342, 'no_lang_code', 'name', 'Sinto (Japan)'),
(95507, 79342, 'ja', 'name', 'ę–°ę±å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(95508, 79343, 'en', 'name', 'Gunma Astronomical Observatory'),
(95509, 79343, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹ćć‚“ć¾å¤©ę–‡å°'),
(95510, 79344, 'en', 'name', 'Sanin Rosai Hospital'),
(95511, 79344, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹å±±é™°åŠ“ē½ē—…é™¢'),
(95512, 79345, 'en', 'name', 'Smoking Research Foundation'),
(95513, 79345, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå–«ē…™ē§‘å­¦ē ”ē©¶č²”å›£'),
(95514, 79346, 'no_lang_code', 'name', 'Amine Pharma (Japan)'),
(95515, 79346, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒŸćƒ³ćƒ•ć‚”ćƒ¼ćƒžē ”ē©¶ę‰€'),
(95516, 79347, 'no_lang_code', 'name', 'Hamamatsu Rosai Hospital'),
(95517, 79347, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹ęµœę¾åŠ“ē½ē—…é™¢'),
(95518, 79348, 'en', 'name', 'Salt Science Research Foundation'),
(95519, 79348, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚½ćƒ«ćƒˆćƒ»ć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶č²”å›£'),
(95520, 79349, 'no_lang_code', 'name', 'Nihon Nohyaku (Japan)'),
(95521, 79349, 'ja', 'name', 'ę—„ęœ¬č¾²č–¬ę Ŗå¼ä¼šē¤¾'),
(95522, 79350, 'en', 'name', 'National Institute of Technology, Kure College'),
(95523, 79350, 'ja', 'name', 'å‘‰å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(95524, 79351, 'en', 'name', 'Higashi Osaka City General Hospital'),
(95525, 79351, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåø‚ē«‹ę±å¤§é˜ŖåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(95526, 79352, 'no_lang_code', 'name', 'ID Pharma (Japan)'),
(95527, 79352, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾IDćƒ•ć‚”ćƒ¼ćƒž'),
(95528, 79353, 'no_lang_code', 'name', 'JMS (Japan)'),
(95529, 79353, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ»ć‚Øćƒ ćƒ»ć‚Øć‚¹'),
(95530, 79354, 'en', 'name', 'National Center for Geriatrics and Gerontology'),
(95531, 79354, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹é•·åÆæåŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(95532, 79355, 'ja', 'name', 'JAåŒ—ęµ·é“åŽšē”Ÿé€£ęœ­å¹ŒåŽšē”Ÿē—…é™¢'),
(95533, 79355, 'en', 'name', 'Sapporo Kosei General Hospital'),
(95534, 79356, 'no_lang_code', 'name', 'BML (Japan)'),
(95535, 79356, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ“ćƒ¼ćƒ»ć‚Øćƒ ćƒ»ć‚Øćƒ«'),
(95536, 79357, 'en', 'name', 'Japan Health Sciences Foundation'),
(95537, 79357, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ’ćƒ„ćƒ¼ćƒžćƒ³ć‚µć‚¤ć‚Øćƒ³ć‚¹ęŒÆčˆˆč²”å›£'),
(95538, 79358, 'en', 'name', 'Sunagawa City Medical Center'),
(95539, 79358, 'ja', 'name', 'ē ‚å·åø‚ē«‹ē—…é™¢'),
(95540, 79359, 'en', 'name', 'Tokyo Zoological Park Society'),
(95541, 79359, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬å‹•ē‰©åœ’å”ä¼š'),
(95542, 79360, 'no_lang_code', 'name', 'Mitsubishi Space Software (Japan)'),
(95543, 79360, 'ja', 'name', 'äø‰č±ć‚¹ćƒšćƒ¼ć‚¹ćƒ»ć‚½ćƒ•ćƒˆć‚¦ć‚Øć‚¢ę Ŗå¼ä¼šē¤¾'),
(95544, 79361, 'en', 'name', 'Sendai National College of Technology'),
(95545, 79361, 'ja', 'name', 'ä»™å°é«˜ē­‰å°‚é–€å­¦ę ”'),
(95546, 79362, 'en', 'name', 'Public Central Hospital of Matto Ishikawa'),
(95547, 79362, 'ja', 'name', 'å…¬ē«‹ę¾ä»»ēŸ³å·äø­å¤®ē—…é™¢'),
(95548, 79363, 'en', 'name', 'Showa University Hospital'),
(95549, 79363, 'ja', 'name', 'ę˜­å’Œå¤§å­¦ē—…é™¢'),
(95550, 79364, 'no_lang_code', 'name', 'Bando Chemical Industries (Japan)'),
(95551, 79364, 'ja', 'name', 'ćƒćƒ³ćƒ‰ćƒ¼åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(95552, 79365, 'no_lang_code', 'name', 'Ishihara Sangyo Kaisha (Japan)'),
(95553, 79365, 'ja', 'name', 'ēŸ³åŽŸē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(95554, 79366, 'en', 'name', 'Mitsubishi Foundation'),
(95555, 79366, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø‰č±č²”å›£'),
(95556, 79367, 'no_lang_code', 'name', 'Akebono (Japan)'),
(95557, 79367, 'ja', 'name', 'ę›™ćƒ–ćƒ¬ćƒ¼ć‚­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(95558, 79368, 'en', 'name', 'Japanese Red Cross Society Kyoto Daini Hospital'),
(95559, 79368, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾äŗ¬éƒ½ē¬¬äŗŒčµ¤åå­—ē—…é™¢'),
(95560, 79369, 'en', 'name', 'National Women''s Education Center'),
(95561, 79369, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹å„³ę€§ę•™č‚²ä¼šé¤Ø'),
(95562, 79370, 'en', 'name', 'Nagoya University Hospital'),
(95563, 79370, 'ja', 'name', 'åå¤å±‹å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(95564, 79371, 'ja', 'name', 'JAę–°ę½ŸåŽšē”Ÿé€£äøŠč¶Šē·åˆē—…é™¢'),
(95565, 79371, 'no_lang_code', 'name', 'Jōetsu General Hospital'),
(95566, 79372, 'en', 'name', 'Kitami Institute of Technology'),
(95567, 79372, 'ja', 'name', 'åŒ—č¦‹å·„ę„­å¤§å­¦'),
(95568, 79373, 'en', 'name', 'SPring-8'),
(95569, 79373, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ę”¾å°„å…‰ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(95570, 79374, 'no_lang_code', 'name', 'Kitami Information Technology (Japan)'),
(95571, 79374, 'ja', 'name', 'åŒ—č¦‹ęƒ…å ±ęŠ€č”“ę Ŗå¼ä¼šē¤¾'),
(95572, 79375, 'no_lang_code', 'name', 'Tsudakoma (Japan)'),
(95573, 79375, 'ja', 'name', 'ę“„ē”°é§’å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(95574, 79376, 'en', 'name', 'Council of Local Authorities for International Relations'),
(95575, 79376, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč‡Ŗę²»ä½“å›½éš›åŒ–å”ä¼š'),
(95576, 79377, 'en', 'name', 'Tane General Hospital'),
(95577, 79377, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗćć¤ć“ć†ä¼šå¤šę ¹ē·åˆē—…é™¢'),
(95578, 79378, 'en', 'name', 'National Hospital Organization Kochi National Hospital'),
(95579, 79378, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹é«˜ēŸ„ē—…é™¢'),
(95580, 79379, 'no_lang_code', 'name', 'Nippon Chemical Industrial (Japan)'),
(95581, 79379, 'ja', 'name', 'ę—„ęœ¬åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(95582, 79380, 'no_lang_code', 'name', 'Sumitomo Seika Chemicals (Japan)'),
(95583, 79380, 'ja', 'name', 'ä½å‹ē²¾åŒ–ę Ŗå¼ä¼šē¤¾'),
(95584, 79381, 'en', 'name', 'Osaka Institute of Technology'),
(95585, 79381, 'ja', 'name', '大阪巄愭大学'),
(95586, 79382, 'no_lang_code', 'name', 'Horiba (Japan)'),
(95587, 79382, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å €å “č£½ä½œę‰€'),
(95588, 79383, 'en', 'name', 'Innovation Center of NanoMedicine'),
(95589, 79383, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå·å“Žåø‚ē”£ę„­ęŒÆčˆˆč²”å›£'),
(95590, 79384, 'en', 'name', 'RIKEN Nishina Center'),
(95591, 79384, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ä»ē§‘åŠ é€Ÿå™Øē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(95592, 79385, 'no_lang_code', 'name', 'Casio (Japan)'),
(95593, 79385, 'ja', 'name', 'ć‚«ć‚·ć‚ŖčØˆē®—ę©Ÿę Ŗå¼ä¼šē¤¾'),
(95594, 79386, 'no_lang_code', 'name', 'SRL (Japan)'),
(95595, 79386, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ć‚¢ćƒ¼ćƒ«ć‚Øćƒ«'),
(95596, 79387, 'en', 'name', 'Hiroshima International University'),
(95597, 79387, 'ja', 'name', 'åŗƒå³¶å›½éš›å¤§å­¦'),
(95598, 79388, 'no_lang_code', 'name', 'Wakamoto Pharmaceutical (Japan)'),
(95599, 79388, 'ja', 'name', 'ć‚ć‹ć‚‚ćØč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(95600, 79389, 'en', 'name', 'Advanced Institute of Materials Science'),
(95601, 79389, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē‰¹ę®Šē„”ę©Ÿęę–™ē ”ē©¶ę‰€'),
(95602, 79390, 'no_lang_code', 'name', 'AstraZeneca (Japan)'),
(95603, 79390, 'ja', 'name', 'ć‚¢ć‚¹ćƒˆćƒ©ć‚¼ćƒć‚«ę Ŗå¼ä¼šē¤¾'),
(95604, 79391, 'no_lang_code', 'name', 'Ulvac (Japan)'),
(95605, 79391, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ćƒćƒƒć‚Æ'),
(95606, 79392, 'en', 'name', 'Institute for Global Environmental Strategies'),
(95607, 79392, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåœ°ēƒē’°å¢ƒęˆ¦ē•„ē ”ē©¶ę©Ÿé–¢'),
(95608, 79393, 'en', 'name', 'Kobe Kaisei Hospital'),
(95609, 79393, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£ē„žęˆøęµ·ę˜Ÿē—…é™¢'),
(95610, 79394, 'en', 'name', 'Iwate Prefectural Central Hospital'),
(95611, 79394, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹äø­å¤®ē—…é™¢'),
(95612, 79395, 'no_lang_code', 'name', 'KAN Research Institute'),
(95613, 79395, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ćƒ³ē ”ē©¶ę‰€'),
(95614, 79396, 'en', 'name', 'Mizutani Foundation for Glycoscience'),
(95615, 79396, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę°“č°·ē³–č³Ŗē§‘å­¦ęŒÆčˆˆč²”å›£'),
(95616, 79397, 'en', 'name', 'Kobe Design University'),
(95617, 79397, 'ja', 'name', 'ē„žęˆøčŠøč”“å·„ē§‘å¤§å­¦'),
(95618, 79398, 'no_lang_code', 'name', 'Kobelco Eco-Solutions (Japan)'),
(95619, 79398, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē„žé‹¼ē’°å¢ƒć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³'),
(95620, 79399, 'no_lang_code', 'name', 'Sendai Shakai Hoken Hospital'),
(95621, 79399, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹ä»™å°ē—…é™¢'),
(95622, 79400, 'ja', 'name', 'JAé•·é‡ŽåŽšē”Ÿé€£é•·é‡Žę¾ä»£ē·åˆē—…é™¢'),
(95623, 79400, 'en', 'name', 'Nagano Matsushiro General Hospital'),
(95624, 79401, 'en', 'name', 'Nippon Medical School Musashi Kosugi Hospital'),
(95625, 79401, 'ja', 'name', 'ę—„ęœ¬åŒ»ē§‘å¤§å­¦ę­¦č”µå°ę‰ē—…é™¢'),
(95626, 79402, 'en', 'name', 'Marine Ecology Research Institute'),
(95627, 79402, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęµ·ę“‹ē”Ÿē‰©ē’°å¢ƒē ”ē©¶ę‰€'),
(95628, 79403, 'no_lang_code', 'name', 'Advanced Engineering Services (Japan)'),
(95629, 79403, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ćƒ»ć‚¤ćƒ¼ćƒ»ć‚Øć‚¹'),
(95630, 79404, 'en', 'name', 'National Police Academy'),
(95631, 79404, 'ja', 'name', '警察庁警察大学栔'),
(95632, 79405, 'no_lang_code', 'name', 'Sanyo (Japan)'),
(95633, 79405, 'ja', 'name', 'äø‰ę“‹åŒ–ęˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(95634, 79406, 'en', 'name', 'Japan Chemical Innovation and Inspection Institute'),
(95635, 79406, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ–å­¦ē ”ē©¶č©•ä¾”ę©Ÿę§‹'),
(95636, 79407, 'en', 'name', 'Sendai City Hospital'),
(95637, 79407, 'ja', 'name', 'ä»™å°åø‚ē«‹ē—…é™¢'),
(95638, 79408, 'no_lang_code', 'name', 'Ishida (Japan)'),
(95639, 79408, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ć‚·ćƒ€'),
(95640, 79409, 'en', 'name', 'Josai University'),
(95641, 79409, 'ja', 'name', 'åŸŽč„æå¤§å­¦'),
(95642, 79410, 'no_lang_code', 'name', 'Toyo Eiwa Jogakuin'),
(95643, 79410, 'ja', 'name', 'ę±ę“‹č‹±å’Œå„³å­¦é™¢å¤§å­¦'),
(95644, 79411, 'en', 'name', 'Fukui Prefectural Police'),
(95645, 79411, 'ja', 'name', 'ē¦äŗ•ēœŒč­¦åÆŸ'),
(95646, 79412, 'en', 'name', 'Social Welfare Organization Saiseikai Imperial Gift Foundation'),
(95647, 79412, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼š'),
(95648, 79413, 'no_lang_code', 'name', 'Kobari General Hospital'),
(95649, 79413, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£åœ­ę˜„ä¼šå°å¼µē·åˆē—…é™¢'),
(95650, 79414, 'en', 'name', 'Japanese Society for Dialysis Therapy'),
(95651, 79414, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é€ęžåŒ»å­¦ä¼š'),
(95652, 79415, 'no_lang_code', 'name', 'Omuta hospital'),
(95653, 79415, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å¤§ē‰Ÿē”°ē—…é™¢'),
(95654, 79416, 'no_lang_code', 'name', 'Daido Metal (Japan)'),
(95655, 79416, 'ja', 'name', 'å¤§åŒćƒ”ć‚æćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(95656, 79417, 'ja', 'name', 'JAę–°ę½ŸåŽšē”Ÿé€£ä½ęø”ē·åˆē—…é™¢'),
(95657, 79417, 'no_lang_code', 'name', 'Sado General Hospital'),
(95658, 79418, 'no_lang_code', 'name', 'LTT Bio-Pharma (Japan)'),
(95659, 79418, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾LTTćƒć‚¤ć‚Ŗćƒ•ć‚”ćƒ¼ćƒž'),
(95660, 79419, 'no_lang_code', 'name', 'KDDI (Japan)'),
(95661, 79419, 'ja', 'name', 'KDDIę Ŗå¼ä¼šē¤¾'),
(95662, 79420, 'en', 'name', 'National Rehabilitation Center for Persons with Disabilities'),
(95663, 79420, 'ja', 'name', 'åŽšē”ŸåŠ“åƒēœå›½ē«‹éšœå®³č€…ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(95664, 79421, 'en', 'name', 'Otsuma Women''s University'),
(95665, 79421, 'ja', 'name', '大妻儳子大学'),
(95666, 79422, 'en', 'name', 'Fuji Machine (Japan)'),
(95667, 79422, 'ja', 'name', 'åÆŒå£«ę©Ÿę¢°ę Ŗå¼ä¼šē¤¾'),
(95668, 79423, 'en', 'name', 'Tokushima University Hospital'),
(95669, 79423, 'ja', 'name', '徳島大学病院'),
(95670, 79424, 'no_lang_code', 'name', 'Daito Bunka University'),
(95671, 79424, 'ja', 'name', 'å¤§ę±ę–‡åŒ–å¤§å­¦'),
(95672, 79425, 'no_lang_code', 'name', 'Gpack (France)'),
(95673, 79426, 'en', 'name', 'Osaka Red Cross Hospital'),
(95674, 79426, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾å¤§é˜Ŗčµ¤åå­—ē—…é™¢'),
(95675, 79427, 'no_lang_code', 'name', 'NOF Corporation (Japan)'),
(95676, 79427, 'ja', 'name', 'ę—„ę²¹ę Ŗå¼ä¼šē¤¾'),
(95677, 79428, 'no_lang_code', 'name', 'Toyo Kohan (Japan)'),
(95678, 79428, 'ja', 'name', 'ę±ę“‹é‹¼éˆ‘ę Ŗå¼ä¼šē¤¾'),
(95679, 79429, 'en', 'name', 'Nippon Sheet Glass Foundation for Materials Science and Engineering'),
(95680, 79429, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęæē”å­ęę–™å·„å­¦åŠ©ęˆä¼š'),
(95681, 79430, 'no_lang_code', 'name', 'Sanraku Hospital'),
(95682, 79430, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½ę•™č·å“”äŗ’åŠ©ä¼šäø‰ę„½ē—…é™¢'),
(95683, 79431, 'en', 'name', 'National Research Institute of Brewing'),
(95684, 79431, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗé…’é”žē·åˆē ”ē©¶ę‰€'),
(95685, 79432, 'en', 'name', 'Showa Inan General Hospital'),
(95686, 79432, 'ja', 'name', 'ę˜­å’Œä¼Šå—ē·åˆē—…é™¢'),
(95687, 79433, 'en', 'name', 'Kobe Women''s University'),
(95688, 79433, 'ja', 'name', 'ē„žęˆøå„³å­å¤§å­¦'),
(95689, 79434, 'no_lang_code', 'name', 'Marutomo (Japan)'),
(95690, 79434, 'ja', 'name', 'ćƒžćƒ«ćƒˆćƒ¢ę Ŗå¼ä¼šē¤¾'),
(95691, 79435, 'no_lang_code', 'name', 'Senju Pharmaceutical (Japan)'),
(95692, 79435, 'ja', 'name', 'åƒåÆæč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(95693, 79436, 'en', 'name', 'Aichi Human Service Center'),
(95694, 79436, 'ja', 'name', 'ę„›ēŸ„ēœŒåæƒčŗ«éšœå®³č€…ć‚³ćƒ­ćƒ‹ćƒ¼'),
(95695, 79437, 'en', 'name', 'Toho University Omori Medical Center'),
(95696, 79437, 'ja', 'name', 'ę±é‚¦å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼å¤§ę£®ē—…é™¢'),
(95697, 79438, 'no_lang_code', 'name', 'Translational Research Informatics Center (Japan)'),
(95698, 79438, 'ja', 'name', 'åŒ»ē™‚ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(95699, 79439, 'no_lang_code', 'name', 'Showa University Fujigaoka Hospital'),
(95700, 79439, 'ja', 'name', 'ę˜­å’Œå¤§å­¦č—¤ćŒäø˜ē—…é™¢'),
(95701, 79440, 'en', 'name', 'Ebina General Hospital'),
(95702, 79440, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć‚øćƒ£ćƒ‘ćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚¢ćƒ©ć‚¤ć‚¢ćƒ³ć‚¹ęµ·č€åē·åˆē—…é™¢'),
(95703, 79441, 'no_lang_code', 'name', 'Tokai Gakuin University'),
(95704, 79441, 'ja', 'name', 'ę±ęµ·å­¦é™¢å¤§å­¦'),
(95705, 79442, 'no_lang_code', 'name', 'GeneCare Research Institute (Japan)'),
(95706, 79442, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ćƒ³ć‚±ć‚¢ē ”ē©¶ę‰€'),
(95707, 79443, 'no_lang_code', 'name', 'Oncolys BioPharma (Japan)'),
(95708, 79443, 'ja', 'name', 'ć‚Ŗćƒ³ć‚³ćƒŖć‚¹ćƒć‚¤ć‚Ŗćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(95709, 79444, 'no_lang_code', 'name', 'StaGen (Japan)'),
(95710, 79444, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ć‚æćƒ¼ć‚øć‚§ćƒ³'),
(95711, 79445, 'en', 'name', 'Japan Sport Council'),
(95712, 79445, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(95713, 79446, 'no_lang_code', 'name', 'Nippon Paper Industries (Japan)'),
(95714, 79446, 'ja', 'name', 'ę—„ęœ¬č£½ē“™ę Ŗå¼ä¼šē¤¾'),
(95715, 79447, 'en', 'name', 'Nakatomi Foundation'),
(95716, 79447, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­å†Øå„åŗ·ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(95717, 79448, 'no_lang_code', 'name', 'IHI Corporation (Japan)'),
(95718, 79448, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾IHI'),
(95719, 79449, 'en', 'name', 'Temple University, Japan'),
(95720, 79449, 'ja', 'name', 'ćƒ†ćƒ³ćƒ—ćƒ«å¤§å­¦'),
(95721, 79450, 'en', 'name', 'Tokyo Metropolitan Institute of Public Health'),
(95722, 79450, 'ja', 'name', 'ę±äŗ¬éƒ½å„åŗ·å®‰å…Øē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(95723, 79451, 'ja', 'name', 'TOTOę Ŗå¼ä¼šē¤¾'),
(95724, 79451, 'no_lang_code', 'name', 'Toto (Japan)'),
(95725, 79452, 'en', 'name', 'Cardiovascular Institute Hospital'),
(95726, 79452, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåæƒč‡“č”€ē®”ē ”ē©¶ę‰€'),
(95727, 79453, 'en', 'name', 'Osaka Prefectural Institute of Public Health'),
(95728, 79453, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹å…¬č”†č”›ē”Ÿē ”ē©¶ę‰€'),
(95729, 79454, 'en', 'name', 'RIKEN Advanced Science Institute'),
(95730, 79454, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€'),
(95731, 79455, 'en', 'name', 'Kansai Research Foundation for Technology Promotion'),
(95732, 79455, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé–¢č„æć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»ćƒŖć‚µć‚¤ć‚Æćƒ«ē§‘å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(95733, 79456, 'en', 'name', 'Kurume Shin-Ai Women''s College'),
(95734, 79456, 'ja', 'name', 'ä¹…ē•™ē±³äæ”ę„›ēŸ­ęœŸå¤§å­¦'),
(95735, 79457, 'en', 'name', 'Systems Biology Institute'),
(95736, 79457, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗć‚·ć‚¹ćƒ†ćƒ ćƒ»ćƒć‚¤ć‚Ŗćƒ­ć‚øćƒ¼ē ”ē©¶ę©Ÿę§‹'),
(95737, 79458, 'en', 'name', 'Gifu University Hospital'),
(95738, 79458, 'ja', 'name', 'å²é˜œå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(95739, 79459, 'en', 'name', 'Hanazono University'),
(95740, 79459, 'ja', 'name', 'čŠ±åœ’å¤§å­¦'),
(95741, 79460, 'en', 'name', 'Japan Community Healthcare Organization'),
(95742, 79460, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹'),
(95743, 79461, 'en', 'name', 'Japanese Red Cross Narita Hospital'),
(95744, 79461, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ęˆē”°čµ¤åå­—ē—…é™¢'),
(95745, 79462, 'no_lang_code', 'name', 'Nippon Seiki (Japan)'),
(95746, 79462, 'ja', 'name', 'ę—„ęœ¬ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(95747, 79463, 'no_lang_code', 'name', 'PhoenixBio (Japan)'),
(95748, 79463, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚§ćƒ‹ćƒƒć‚Æć‚¹ćƒć‚¤ć‚Ŗ'),
(95749, 79464, 'en', 'name', 'Yokohama City University Medical Center'),
(95750, 79464, 'ja', 'name', 'ęØŖęµœåø‚ē«‹å¤§å­¦é™„å±žåø‚ę°‘ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(95751, 79465, 'no_lang_code', 'name', 'Toppan (Japan)'),
(95752, 79465, 'ja', 'name', 'å‡øē‰ˆå°åˆ·ę Ŗå¼ä¼šē¤¾'),
(95753, 79466, 'en', 'name', 'Fukuoka University Hospital'),
(95754, 79466, 'ja', 'name', 'ē¦å²”å¤§å­¦ē—…é™¢'),
(95755, 79467, 'en', 'name', 'Kawasaki Medical School Hospital'),
(95756, 79467, 'ja', 'name', 'å·å“ŽåŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(95757, 79468, 'no_lang_code', 'name', 'Ebara (Japan)'),
(95758, 79468, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾čåŽŸč£½ä½œę‰€'),
(95759, 79469, 'en', 'name', 'NARD Institute'),
(95760, 79469, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŠćƒ¼ćƒ‰ē ”ē©¶ę‰€'),
(95761, 79470, 'no_lang_code', 'name', 'PNPE Company (Iran)'),
(95762, 79470, 'fa', 'name', 'Ł¾ŪŒŲ“ŚÆŲ§Ł… Ł†Ł‚Ų“Ł‡ā€ŒŁ¾Ų±ŲÆŲ§Ų² Ų§Ų“Ų±Ų§Ł‚'),
(95763, 79471, 'no_lang_code', 'name', 'Secom (Japan)'),
(95764, 79471, 'ja', 'name', 'ć‚»ć‚³ćƒ ę Ŗå¼ä¼šē¤¾'),
(95765, 79472, 'no_lang_code', 'name', 'Rigaku (Japan)'),
(95766, 79472, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŖć‚¬ć‚Æ'),
(95767, 79473, 'no_lang_code', 'name', 'JIMRO (Japan)'),
(95768, 79473, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾JIMRO'),
(95769, 79474, 'en', 'name', 'St Mary''s Hospital'),
(95770, 79474, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé›Ŗć®č–ęÆä¼šč–ćƒžćƒŖć‚¢ē—…é™¢'),
(95771, 79475, 'no_lang_code', 'name', 'Mitsuboshi Belting (Japan)'),
(95772, 79475, 'ja', 'name', 'äø‰ćƒ„ę˜Ÿćƒ™ćƒ«ćƒˆę Ŗå¼ä¼šē¤¾'),
(95773, 79476, 'en', 'name', 'Amada Foundation'),
(95774, 79476, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤©ē”°č²”å›£'),
(95775, 79477, 'en', 'name', 'St. Luke''s International University'),
(95776, 79477, 'ja', 'name', 'č–č·ÆåŠ å›½éš›å¤§å­¦'),
(95777, 79478, 'no_lang_code', 'name', 'Nippon Shokubai (Japan)'),
(95778, 79478, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—„ęœ¬č§¦åŖ’'),
(95779, 79479, 'en', 'name', 'Spinal Injuries Center'),
(95780, 79479, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹ē·åˆć›ćęć‚»ćƒ³ć‚æćƒ¼'),
(95781, 79480, 'en', 'name', 'Japan Real Estate Institute'),
(95782, 79480, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬äøå‹•ē”£ē ”ē©¶ę‰€'),
(95783, 79481, 'en', 'name', 'Hiroshima Red Cross Hospital & Atomic-bomb Survivors Hospital'),
(95784, 79481, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾åŗƒå³¶čµ¤åå­—ćƒ»åŽŸēˆ†ē—…é™¢'),
(95785, 79482, 'no_lang_code', 'name', 'KDDI Research (Japan)'),
(95786, 79482, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾KDDIē·åˆē ”ē©¶ę‰€'),
(95787, 79483, 'en', 'name', 'Cabinet Office'),
(95788, 79483, 'ja', 'name', 'å†…é–£åŗœ'),
(95789, 79484, 'en', 'name', 'Wayo Women''s University'),
(95790, 79484, 'ja', 'name', 'å’Œę“‹å„³å­å¤§å­¦'),
(95791, 79485, 'no_lang_code', 'name', 'Sumitomo Metal Mining (Japan)'),
(95792, 79485, 'ja', 'name', 'ä½å‹é‡‘å±žé‰±å±±ę Ŗå¼ä¼šē¤¾'),
(95793, 79486, 'en', 'name', 'Kokura Memorial Hospital'),
(95794, 79486, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¹³ęˆē“«å·ä¼šå°å€‰čØ˜åæµē—…é™¢'),
(95795, 79487, 'en', 'name', 'Corporation for Production and Research of Laboratory Primates'),
(95796, 79487, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗˆé˜²č”›ē”Ÿå”ä¼š'),
(95797, 79488, 'en', 'name', 'New Tokyo Hospital'),
(95798, 79488, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é¦Øä¼šę–°ę±äŗ¬ē—…é™¢'),
(95799, 79489, 'no_lang_code', 'name', 'OncoTherapy Science (Japan)'),
(95800, 79489, 'ja', 'name', 'ć‚Ŗćƒ³ć‚³ć‚»ćƒ©ćƒ”ćƒ¼ćƒ»ć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(95801, 79490, 'en', 'name', 'Sumitomo Foundation'),
(95802, 79490, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä½å‹č²”å›£'),
(95803, 79491, 'no_lang_code', 'name', 'Azbil (Japan)'),
(95804, 79491, 'ja', 'name', 'ć‚¢ć‚ŗćƒ“ćƒ«ę Ŗå¼ä¼šē¤¾'),
(95805, 79492, 'en', 'name', 'Misawa City Hospital'),
(95806, 79492, 'ja', 'name', '三沢市立三沢病院'),
(95807, 79493, 'en', 'name', 'Hamamatsu Medical Center'),
(95808, 79493, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęµœę¾åø‚åŒ»ē™‚å…¬ē¤¾ęµœę¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(95809, 79494, 'en', 'name', 'Laboratory of Racing Chemistry'),
(95810, 79494, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē«¶čµ°é¦¬ē†åŒ–å­¦ē ”ē©¶ę‰€'),
(95811, 79495, 'no_lang_code', 'name', 'Naruto, Tokushima Prefecture hospital'),
(95812, 79495, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¾³å³¶ēœŒé³“é–€ē—…é™¢'),
(95813, 79496, 'en', 'name', 'Jichi Medical University Saitama Medical Center'),
(95814, 79496, 'ja', 'name', 'č‡Ŗę²»åŒ»ē§‘å¤§å­¦é™„å±žć•ć„ćŸć¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(95815, 79497, 'en', 'name', 'Kumamoto Prefectural Educaiton Center'),
(95816, 79497, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(95817, 79498, 'no_lang_code', 'name', 'Nippon Flour Mills (Japan)'),
(95818, 79498, 'ja', 'name', 'ę—„ęœ¬č£½ē²‰ę Ŗå¼ä¼šē¤¾'),
(95819, 79499, 'no_lang_code', 'name', 'Chikamori Hospital'),
(95820, 79499, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗčæ‘ę£®ä¼ščæ‘ę£®ē—…é™¢'),
(95821, 79500, 'en', 'name', 'Kumamoto City Hospital'),
(95822, 79500, 'ja', 'name', 'ē†Šęœ¬åø‚ē«‹ē†Šęœ¬åø‚ę°‘ē—…é™¢'),
(95823, 79501, 'no_lang_code', 'name', 'Saiseikai Niigata Daini Hospital'),
(95824, 79501, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šę–°ę½Ÿē¬¬äŗŒē—…é™¢'),
(95825, 79502, 'en', 'name', 'Nippon Medical School Hospital'),
(95826, 79502, 'ja', 'name', 'ę—„ęœ¬åŒ»ē§‘å¤§å­¦ä»˜å±žē—…é™¢'),
(95827, 79503, 'en', 'name', 'Japanese Society of Anesthesiologist'),
(95828, 79503, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬éŗ»é…”ē§‘å­¦ä¼š'),
(95829, 79504, 'en', 'name', 'National Institute of Technology, Hakodate College'),
(95830, 79504, 'ja', 'name', 'å‡½é¤Øå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(95831, 79505, 'no_lang_code', 'name', 'Seirei Mikatabara General Hospital'),
(95832, 79505, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£ē·åˆē—…é™¢č–éš·äø‰ę–¹åŽŸē—…é™¢'),
(95833, 79506, 'no_lang_code', 'name', 'Saiseikai Yokohama Eastern Hospital'),
(95834, 79506, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šęØŖęµœåø‚ę±éƒØē—…é™¢'),
(95835, 79507, 'no_lang_code', 'name', 'Ogaki Municipal Hospital'),
(95836, 79507, 'ja', 'name', 'å¤§åž£åø‚ę°‘ē—…é™¢'),
(95837, 79508, 'en', 'name', 'National Institute of Technology and Evaluation'),
(95838, 79508, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗč£½å“č©•ä¾”ęŠ€č”“åŸŗē›¤ę©Ÿę§‹'),
(95839, 79509, 'no_lang_code', 'name', 'Subaru (Japan)'),
(95840, 79509, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾SUBARU'),
(95841, 79510, 'en', 'name', 'Juntendo University Hospital'),
(95842, 79510, 'ja', 'name', 'é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žé †å¤©å ‚åŒ»é™¢'),
(95843, 79511, 'en', 'name', 'Shinshu University Hospital'),
(95844, 79511, 'ja', 'name', 'äæ”å·žå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(95845, 79512, 'en', 'name', 'Ehime University Hospital'),
(95846, 79512, 'ja', 'name', 'ę„›åŖ›å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(95847, 79513, 'en', 'name', 'Ministry of Economy, Trade and Industry'),
(95848, 79513, 'ja', 'name', 'ēµŒęøˆē”£ę„­ēœ'),
(95849, 79514, 'en', 'name', 'Noda Institute for Scientific Research'),
(95850, 79514, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé‡Žē”°ē”£ę„­ē§‘å­¦ē ”ē©¶ę‰€'),
(95851, 79515, 'en', 'name', 'National Institute of Technology, Kisarazu College'),
(95852, 79515, 'ja', 'name', 'ęœØę›“ę“„å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(95853, 79516, 'en', 'name', 'Chemicals Evaluation and Research Institute'),
(95854, 79516, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ–å­¦ē‰©č³Ŗč©•ä¾”ē ”ē©¶ę©Ÿę§‹'),
(95855, 79517, 'en', 'name', 'Toyama University Hospital'),
(95856, 79517, 'ja', 'name', 'åÆŒå±±å¤§å­¦é™„å±žē—…é™¢'),
(95857, 79518, 'en', 'name', 'Daiwa Securities Health Foundation'),
(95858, 79518, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§å’ŒčØ¼åˆøćƒ˜ćƒ«ć‚¹č²”å›£'),
(95859, 79519, 'en', 'name', 'Kyushu Hospital'),
(95860, 79519, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹ä¹å·žē—…é™¢'),
(95861, 79520, 'en', 'name', 'International College for Postgraduate Buddhist Studies'),
(95862, 79520, 'ja', 'name', 'å›½éš›ä»ę•™å­¦å¤§å­¦é™¢å¤§å­¦'),
(95863, 79521, 'no_lang_code', 'name', 'Nichias (Japan)'),
(95864, 79521, 'ja', 'name', 'ćƒ‹ćƒć‚¢ć‚¹ę Ŗå¼ä¼šē¤¾'),
(95865, 79522, 'en', 'name', 'Koen Gakuen Women''s Junior College'),
(95866, 79522, 'ja', 'name', 'å…‰å”©å­¦åœ’å„³å­ēŸ­ęœŸå¤§å­¦'),
(95867, 79523, 'no_lang_code', 'name', 'GlaxoSmithKline (Japan)'),
(95868, 79523, 'ja', 'name', 'ć‚°ćƒ©ć‚Æć‚½ćƒ»ć‚¹ćƒŸć‚¹ć‚Æćƒ©ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(95869, 79524, 'no_lang_code', 'name', 'Matsutani (Japan)'),
(95870, 79524, 'ja', 'name', 'ę¾č°·åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(95871, 79525, 'en', 'name', 'Daiichi University of Pharmacy'),
(95872, 79525, 'ja', 'name', '第一薬科大学'),
(95873, 79526, 'no_lang_code', 'name', 'Inpex (Japan)'),
(95874, 79526, 'ja', 'name', 'å›½éš›ēŸ³ę²¹é–‹ē™ŗåøēŸ³ę Ŗå¼ä¼šē¤¾'),
(95875, 79527, 'en', 'name', 'IBM Research - Tokyo'),
(95876, 79527, 'ja', 'name', 'ę—„ęœ¬ć‚¢ć‚¤ćƒ»ćƒ“ćƒ¼ćƒ»ć‚Øćƒ ę Ŗå¼ä¼šē¤¾'),
(95877, 79528, 'en', 'name', 'National Institute of Technology, Ichinoseki College'),
(95878, 79528, 'ja', 'name', 'äø€é–¢å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(95879, 79529, 'en', 'name', 'Hattori Hokokai Foundation'),
(95880, 79529, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęœéƒØå ±å…¬ä¼š'),
(95881, 79530, 'no_lang_code', 'name', 'Dow Chemical (Japan)'),
(95882, 79530, 'ja', 'name', 'ćƒ€ć‚¦ćƒ»ć‚±ćƒŸć‚«ćƒ«ę—„ęœ¬ę Ŗå¼ä¼šē¤¾'),
(95883, 79531, 'en', 'name', 'Institute of Applied Biochemistry'),
(95884, 79531, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåæœē”Øē”ŸåŒ–å­¦ē ”ē©¶ę‰€'),
(95885, 79532, 'no_lang_code', 'name', 'Sega (Japan)'),
(95886, 79532, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ć‚¬'),
(95887, 79533, 'en', 'name', 'Harasanshin Hospital'),
(95888, 79533, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåŽŸäø‰äæ”ē—…é™¢'),
(95889, 79534, 'en', 'name', 'Japan Institute of Plant Maintenance'),
(95890, 79534, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ©ćƒ³ćƒˆćƒ”ćƒ³ćƒ†ćƒŠćƒ³ć‚¹å”ä¼š'),
(95891, 79535, 'en', 'name', 'Nagano Children''s Hospital'),
(95892, 79535, 'ja', 'name', 'é•·é‡ŽēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(95893, 79536, 'en', 'name', 'Japan Kidney Foundation'),
(95894, 79536, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č…Žč‡“č²”å›£'),
(95895, 79537, 'no_lang_code', 'name', 'Riso Kagaku (Japan)'),
(95896, 79537, 'ja', 'name', 'ē†ęƒ³ē§‘å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(95897, 79538, 'en', 'name', 'Showa General Hospital'),
(95898, 79538, 'ja', 'name', 'å…¬ē«‹ę˜­å’Œē—…é™¢'),
(95899, 79539, 'en', 'name', 'Shizuoka Children''s Hospital'),
(95900, 79539, 'ja', 'name', 'é™å²”ēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(95901, 79540, 'en', 'name', 'Foundation for Advanced Studies on International Development'),
(95902, 79540, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›é–‹ē™ŗę©Ÿę§‹'),
(95903, 79541, 'en', 'name', 'Tsuruga Nursing University'),
(95904, 79541, 'ja', 'name', 'ę•¦č³€åø‚ē«‹ēœ‹č­·å¤§å­¦'),
(95905, 79542, 'no_lang_code', 'name', 'Sumitomo Bakelite (Japan)'),
(95906, 79542, 'ja', 'name', 'ä½å‹ćƒ™ćƒ¼ć‚Æćƒ©ć‚¤ćƒˆę Ŗå¼ä¼šē¤¾'),
(95907, 79543, 'no_lang_code', 'name', 'Nissin Kogyo (Japan)'),
(95908, 79543, 'ja', 'name', 'ę—„äæ”å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(95909, 79544, 'en', 'name', 'Tsukuba University of Technology'),
(95910, 79544, 'ja', 'name', 'ē­‘ę³¢ęŠ€č”“å¤§å­¦'),
(95911, 79545, 'en', 'name', 'National Mie Hospital'),
(95912, 79545, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹äø‰é‡ē—…é™¢'),
(95913, 79546, 'en', 'name', 'Industrial Research Institute of Ishikawa'),
(95914, 79546, 'ja', 'name', 'ēŸ³å·ēœŒå·„ę„­č©¦éØ“å “'),
(95915, 79547, 'en', 'name', 'Jikei University Kashiwa hospital'),
(95916, 79547, 'ja', 'name', 'ę±äŗ¬ę…ˆęµä¼šåŒ»ē§‘å¤§å­¦é™„å±žęŸē—…é™¢'),
(95917, 79548, 'en', 'name', 'Gifu City Women''s College'),
(95918, 79548, 'ja', 'name', 'å²é˜œåø‚ē«‹å„³å­ēŸ­ęœŸå¤§å­¦'),
(95919, 79549, 'en', 'name', 'National Hospital Organization Miyazaki Higashi Hospital'),
(95920, 79549, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å®®å“Žę±ē—…é™¢'),
(95921, 79550, 'en', 'name', 'Radiation Effects Research Foundation'),
(95922, 79550, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę”¾å°„ē·šå½±éŸæē ”ē©¶ę‰€'),
(95923, 79551, 'no_lang_code', 'name', 'SBI Pharmaceuticals (Japan)'),
(95924, 79551, 'ja', 'name', 'SBIćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾');
INSERT INTO `ror_settings` VALUES
(95925, 79552, 'no_lang_code', 'name', 'Enplas (Japan)'),
(95926, 79552, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ³ćƒ—ćƒ©ć‚¹'),
(95927, 79553, 'no_lang_code', 'name', 'Nihon Unisys (Japan)'),
(95928, 79553, 'ja', 'name', 'ę—„ęœ¬ćƒ¦ćƒ‹ć‚·ć‚¹ę Ŗå¼ä¼šē¤¾'),
(95929, 79554, 'en', 'name', 'Nagaoka Red Cross Hospital'),
(95930, 79554, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é•·å²”čµ¤åå­—ē—…é™¢'),
(95931, 79555, 'no_lang_code', 'name', 'Iwatani Naoji Foundation'),
(95932, 79555, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå²©č°·ē›“ę²»čØ˜åæµč²”å›£'),
(95933, 79556, 'en', 'name', 'Japanese Red Cross Kanazawa Hospital'),
(95934, 79556, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é‡‘ę²¢čµ¤åå­—ē—…é™¢'),
(95935, 79557, 'no_lang_code', 'name', 'Samsung (Japan)'),
(95936, 79557, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒ ć‚¹ćƒ³ę—„ęœ¬ē ”ē©¶ę‰€'),
(95937, 79558, 'en', 'name', 'Kurita Water and Environment Foundation'),
(95938, 79558, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚ÆćƒŖć‚æę°“ćƒ»ē’°å¢ƒē§‘å­¦ęŒÆčˆˆč²”å›£'),
(95939, 79559, 'en', 'name', 'Ohu University'),
(95940, 79559, 'ja', 'name', '億羽大学'),
(95941, 79560, 'no_lang_code', 'name', 'Tohoku Rosai Hospital'),
(95942, 79560, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹ę±åŒ—åŠ“ē½ē—…é™¢'),
(95943, 79561, 'en', 'name', 'Chiba University Hospital'),
(95944, 79561, 'ja', 'name', 'åƒč‘‰å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(95945, 79562, 'no_lang_code', 'name', 'SCREEN (Japan)'),
(95946, 79562, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾SCREENćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(95947, 79563, 'en', 'name', 'Anan National College of Technology'),
(95948, 79563, 'ja', 'name', 'é˜æå—å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(95949, 79564, 'no_lang_code', 'name', 'Hodogaya Chemical (Japan)'),
(95950, 79564, 'ja', 'name', 'äæåœŸč°·åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(95951, 79565, 'no_lang_code', 'name', 'Evolving Nano Process Infrastructure Development Center (Japan)'),
(95952, 79565, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…ˆē«ÆćƒŠćƒŽćƒ—ćƒ­ć‚»ć‚¹åŸŗē›¤é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(95953, 79566, 'no_lang_code', 'name', 'Kure Kyosai Hospital'),
(95954, 79566, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šå‘‰å…±ęøˆē—…é™¢'),
(95955, 79567, 'no_lang_code', 'name', 'Fuji Oil (Japan)'),
(95956, 79567, 'ja', 'name', 'äøäŗŒč£½ę²¹ę Ŗå¼ä¼šē¤¾'),
(95957, 79568, 'no_lang_code', 'name', 'Osaka Ekisaikai Hospital'),
(95958, 79568, 'ja', 'name', 'å¤§é˜ŖęŽ–ęøˆä¼šē—…é™¢'),
(95959, 79569, 'no_lang_code', 'name', 'Monohakobi Technology Institute (Japan)'),
(95960, 79569, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾MTI'),
(95961, 79570, 'en', 'name', 'Louis Pasteur Center for Medical Research'),
(95962, 79570, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ«ć‚¤ćƒ»ćƒ‘ć‚¹ćƒˆć‚„ćƒ¼ćƒ«åŒ»å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(95963, 79571, 'en', 'name', 'Dokkyo University'),
(95964, 79571, 'ja', 'name', 'ēØå”å¤§å­¦'),
(95965, 79572, 'no_lang_code', 'name', 'Itoham Foods (Japan)'),
(95966, 79572, 'ja', 'name', 'ä¼Šč—¤ćƒćƒ ę Ŗå¼ä¼šē¤¾'),
(95967, 79573, 'en', 'name', 'Mukogawa Women''s University'),
(95968, 79573, 'ja', 'name', 'ę­¦åŗ«å·å„³å­å¤§å­¦'),
(95969, 79574, 'en', 'name', 'Niigata University Medical and Dental Hospital'),
(95970, 79574, 'ja', 'name', 'ę–°ę½Ÿå¤§å­¦åŒ»ę­Æå­¦ē·åˆē—…é™¢'),
(95971, 79575, 'en', 'name', 'Kanagawa Academy of Science and Technology'),
(95972, 79575, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žå„ˆå·ē§‘å­¦ęŠ€č”“ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(95973, 79576, 'no_lang_code', 'name', 'Tezukayama Gakuin University'),
(95974, 79576, 'ja', 'name', 'åøå”šå±±å­¦é™¢å¤§å­¦'),
(95975, 79577, 'en', 'name', 'Japanese Red Cross Hadano Hospital'),
(95976, 79577, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ē§¦é‡Žčµ¤åå­—ē—…é™¢'),
(95977, 79578, 'no_lang_code', 'name', 'OSG (Japan)'),
(95978, 79578, 'ja', 'name', 'ć‚Ŗćƒ¼ć‚Øć‚¹ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(95979, 79579, 'en', 'name', 'Kobayasi Institute of Physical Research'),
(95980, 79579, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå°ęž—ē†å­¦ē ”ē©¶ę‰€'),
(95981, 79580, 'en', 'name', 'Tomishiro Central Hospital'),
(95982, 79580, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå‹ę„›ä¼šč±Šč¦‹åŸŽäø­å¤®ē—…é™¢'),
(95983, 79581, 'en', 'name', 'Yamada Science Foundation'),
(95984, 79581, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå±±ē”°ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(95985, 79582, 'en', 'name', 'Japan Pediatric Society'),
(95986, 79582, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°å…ē§‘å­¦ä¼š'),
(95987, 79583, 'en', 'name', 'Towada City Hospital'),
(95988, 79583, 'ja', 'name', 'åå’Œē”°åø‚ē«‹äø­å¤®ē—…é™¢'),
(95989, 79584, 'no_lang_code', 'name', 'Nisshin Steel (Japan)'),
(95990, 79584, 'ja', 'name', 'ę—„ę–°č£½é‹¼ę Ŗå¼ä¼šē¤¾'),
(95991, 79585, 'en', 'name', 'Osaka Mishima Emergency and Critical Care Center'),
(95992, 79585, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗåŗœäø‰å³¶ę•‘ę€„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(95993, 79586, 'no_lang_code', 'name', 'Koito Manufacturing (Japan)'),
(95994, 79586, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å°ē³øč£½ä½œę‰€'),
(95995, 79587, 'en', 'name', 'Graduate School of Health Care Sciences, Jikei Institute'),
(95996, 79587, 'ja', 'name', 'ę»‹ę…¶åŒ»ē™‚ē§‘å­¦å¤§å­¦é™¢å¤§å­¦'),
(95997, 79588, 'no_lang_code', 'name', 'Saiseikai Matsuyama Hospital'),
(95998, 79588, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šę¾å±±ē—…é™¢'),
(95999, 79589, 'en', 'name', 'RIKEN Center for Emergent Matter Science'),
(96000, 79589, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€å‰µē™ŗē‰©ę€§ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(96001, 79590, 'en', 'name', 'Kagawa Prefectural Central Hospital'),
(96002, 79590, 'ja', 'name', 'é¦™å·ēœŒē«‹äø­å¤®ē—…é™¢'),
(96003, 79591, 'en', 'name', 'National Institute of Technology, Niihama College'),
(96004, 79591, 'ja', 'name', 'ę–°å±…ęµœå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(96005, 79592, 'en', 'name', 'Hiroshima Institute of Technology'),
(96006, 79592, 'ja', 'name', '広島巄愭大学'),
(96007, 79593, 'no_lang_code', 'name', 'Aisan (Japan)'),
(96008, 79593, 'ja', 'name', 'ę„›äø‰å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(96009, 79594, 'no_lang_code', 'name', 'Yamato Municipal Hospital'),
(96010, 79594, 'ja', 'name', 'å¤§å’Œåø‚ē«‹ē—…é™¢'),
(96011, 79595, 'no_lang_code', 'name', 'Ihara Chemical Industry (Japan)'),
(96012, 79595, 'ja', 'name', 'ć‚¤ćƒćƒ©ć‚±ćƒŸć‚«ćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(96013, 79596, 'no_lang_code', 'name', 'Sanken Electric (Japan)'),
(96014, 79596, 'ja', 'name', 'ć‚µćƒ³ć‚±ćƒ³é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(96015, 79597, 'en', 'name', 'Kyushu Kyoritsu University'),
(96016, 79597, 'ja', 'name', 'ä¹å·žå…±ē«‹å¤§å­¦'),
(96017, 79598, 'en', 'name', 'Shimane Prefectural Police'),
(96018, 79598, 'ja', 'name', '島根県警察'),
(96019, 79599, 'en', 'name', 'Japan Prize Foundation'),
(96020, 79599, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē§‘å­¦ęŠ€č”“č²”å›£'),
(96021, 79600, 'en', 'name', 'Japan Hospital Association'),
(96022, 79600, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē—…é™¢ä¼š'),
(96023, 79601, 'en', 'name', 'Nagasaki University Hospital'),
(96024, 79601, 'ja', 'name', 'é•·å“Žå¤§å­¦ē—…é™¢'),
(96025, 79602, 'en', 'name', 'Kindai University Sakai Hospital'),
(96026, 79602, 'ja', 'name', 'čæ‘ē•æå¤§å­¦åŒ»å­¦éƒØå ŗē—…é™¢'),
(96027, 79603, 'en', 'name', 'National Institute of Technology, Akashi College'),
(96028, 79603, 'ja', 'name', 'ę˜ŽēŸ³å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(96029, 79604, 'en', 'name', 'Sendai Medical Center'),
(96030, 79604, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ä»™å°åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(96031, 79605, 'no_lang_code', 'name', 'Shizuoka General Hospital'),
(96032, 79605, 'ja', 'name', 'é™å²”ēœŒē«‹ē·åˆē—…é™¢'),
(96033, 79606, 'no_lang_code', 'name', 'JSR (Japan)'),
(96034, 79606, 'ja', 'name', 'JSRę Ŗå¼ä¼šē¤¾'),
(96035, 79607, 'no_lang_code', 'name', 'Daifuku (Japan)'),
(96036, 79607, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ćƒ•ć‚Æ'),
(96037, 79608, 'en', 'name', 'Japanese Foundation For Cancer Research'),
(96038, 79608, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćŒć‚“ē ”ē©¶ä¼š'),
(96039, 79609, 'no_lang_code', 'name', 'SATO (Japan)'),
(96040, 79609, 'ja', 'name', 'ć‚µćƒˆćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(96041, 79610, 'en', 'name', 'Tohoku University Hospital'),
(96042, 79610, 'ja', 'name', 'ę±åŒ—å¤§å­¦ē—…é™¢'),
(96043, 79611, 'en', 'name', 'National Institute of Technology, Gunma College'),
(96044, 79611, 'ja', 'name', 'ē¾¤é¦¬å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(96045, 79612, 'en', 'name', 'Gunma Prefectural College of Health Sciences'),
(96046, 79612, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹ēœŒę°‘å„åŗ·ē§‘å­¦å¤§å­¦'),
(96047, 79613, 'en', 'name', 'Osaka National Hospital'),
(96048, 79613, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å¤§é˜ŖåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(96049, 79614, 'no_lang_code', 'name', 'Max (Japan)'),
(96050, 79614, 'ja', 'name', 'ćƒžćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(96051, 79615, 'en', 'name', 'Koyasan University'),
(96052, 79615, 'ja', 'name', '高野山大学'),
(96053, 79616, 'en', 'name', 'Yamaguchi University Hospital'),
(96054, 79616, 'ja', 'name', 'å±±å£å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(96055, 79617, 'no_lang_code', 'name', 'Kaketsuken (Japan)'),
(96056, 79617, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ–å­¦åŠč”€ęø…ē™‚ę³•ē ”ē©¶ę‰€'),
(96057, 79618, 'en', 'name', 'Kochi Medical School Hospital'),
(96058, 79618, 'ja', 'name', 'é«˜ēŸ„å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(96059, 79619, 'no_lang_code', 'name', 'Kyoto Biken Laboratories (Japan)'),
(96060, 79619, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¾®ē”Ÿē‰©åŒ–å­¦ē ”ē©¶ę‰€'),
(96061, 79620, 'no_lang_code', 'name', 'Seirei Hamamatsu General Hospital'),
(96062, 79620, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£ē·åˆē—…é™¢č–éš·ęµœę¾ē—…é™¢'),
(96063, 79621, 'no_lang_code', 'name', 'Towa Pharmaceutical (Japan)'),
(96064, 79621, 'ja', 'name', 'ę±å’Œč–¬å“ę Ŗå¼ä¼šē¤¾'),
(96065, 79622, 'en', 'name', 'Gunma University Hospital'),
(96066, 79622, 'ja', 'name', 'ē¾¤é¦¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(96067, 79623, 'en', 'name', 'Kanazawa University Hospital'),
(96068, 79623, 'ja', 'name', 'é‡‘ę²¢å¤§å­¦é™„å±žē—…é™¢'),
(96069, 79624, 'no_lang_code', 'name', 'Utano Hospital'),
(96070, 79624, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å®‡å¤šé‡Žē—…é™¢'),
(96071, 79625, 'no_lang_code', 'name', 'Kansai Electric Power (Japan)'),
(96072, 79625, 'ja', 'name', 'é–¢č„æé›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(96073, 79626, 'no_lang_code', 'name', 'Caterpillar (Japan)'),
(96074, 79626, 'ja', 'name', 'ć‚­ćƒ£ć‚æćƒ”ćƒ©ćƒ¼ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(96075, 79627, 'es', 'name', 'Centro de AstrofĆ­sica y TecnologĆ­as Afines'),
(96076, 79628, 'en', 'name', 'Beni-Suef University'),
(96077, 79628, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŁŠ سويف'),
(96078, 79629, 'en', 'name', 'Zayed University'),
(96079, 79629, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© زايد'),
(96080, 79629, 'fa', 'name', 'دانؓگاه زاید'),
(96081, 79630, 'sv', 'name', 'Norrbottens lƤns Landsting'),
(96082, 79631, 'en', 'name', 'Myelin Repair Foundation'),
(96083, 79632, 'en', 'name', 'Natural Resources Conservation Service'),
(96084, 79633, 'en', 'name', 'Canadian Academic Accounting Association'),
(96085, 79634, 'en', 'name', 'Royal Aeronautical Society'),
(96086, 79635, 'da', 'name', 'Bispebjerg Hospital'),
(96087, 79636, 'en', 'name', 'Race Forward'),
(96088, 79637, 'en', 'name', 'Ragon Institute of MGH, MIT and Harvard'),
(96089, 79638, 'en', 'name', 'Shanghai Institute of Planned Parenthood Research'),
(96090, 79638, 'zh', 'name', 'äøŠęµ·åø‚č®”åˆ’ē”Ÿč‚²ē§‘å­¦ē ”ē©¶ę‰€'),
(96091, 79639, 'es', 'name', 'ClĆ­nica Las Condes'),
(96092, 79640, 'en', 'name', 'Aerospace Center Hospital'),
(96093, 79640, 'zh', 'name', 'čˆŖå¤©äø­åæƒåŒ»é™¢'),
(96094, 79641, 'en', 'name', 'University Grants Commission of Bangladesh'),
(96095, 79641, 'bn', 'name', 'ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą¦®ą¦žą§ą¦œą§ą¦°ą§€ কমিশন'),
(96096, 79642, 'en', 'name', 'Microscopy Society of America'),
(96097, 79643, 'en', 'name', 'Southern Connecticut State University'),
(96098, 79644, 'en', 'name', 'Dalian Medical University'),
(96099, 79644, 'zh', 'name', 'å¤§čæžåŒ»ē§‘å¤§å­¦'),
(96100, 79645, 'en', 'name', 'Government of Nunavut'),
(96101, 79646, 'en', 'name', 'Northwest Kidney Centers'),
(96102, 79647, 'en', 'name', 'California Public Utilities Commission'),
(96103, 79648, 'en', 'name', 'Niigata University'),
(96104, 79648, 'ja', 'name', 'ę–°ę½Ÿå¤§å­¦'),
(96105, 79649, 'en', 'name', 'Novosibirsk State Technical University'),
(96106, 79649, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(96107, 79650, 'en', 'name', 'Institute of Applied Physics and Computational Mathematics'),
(96108, 79650, 'zh', 'name', 'åŒ—äŗ¬åŗ”ē”Øē‰©ē†äøŽč®”ē®—ę•°å­¦ē ”ē©¶ę‰€'),
(96109, 79651, 'de', 'name', 'Deutsche Alzheimer Gesellschaft'),
(96110, 79652, 'en', 'name', 'Shinshu University'),
(96111, 79652, 'ja', 'name', 'äæ”å·žå¤§å­¦'),
(96112, 79653, 'en', 'name', 'Aja University of Medical Sciences'),
(96113, 79653, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų¢Ų¬Ų§'),
(96114, 79654, 'en', 'name', 'Society for Developmental and Behavioral Pediatrics'),
(96115, 79655, 'es', 'name', 'Universidad de Alaska Anchorage'),
(96116, 79655, 'en', 'name', 'University of Alaska Anchorage'),
(96117, 79655, 'fr', 'name', 'UniversitƩ de l''alaska Ơ anchorage'),
(96118, 79656, 'en', 'name', 'Brien Holden Vision Institute'),
(96119, 79657, 'es', 'name', 'Universidad Autónoma Agraria Antonio Narro'),
(96120, 79658, 'en', 'name', 'Jawaharlal Institute of Post Graduate Medical Education and Research'),
(96121, 79658, 'ta', 'name', 'ą®œą®µą®¹ą®°ąÆą®²ą®¾ą®²ąÆ ą®Ŗą®ŸąÆą®Ÿ ą®®ąÆ‡ą®±ąÆą®Ŗą®Ÿą®æą®ŖąÆą®ŖąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®µą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(96122, 79658, 'ml', 'name', 'ą“œą“æą“Ŗąµą“®ąµ†ąµ¼'),
(96123, 79659, 'en', 'name', 'Collegio Carlo Alberto'),
(96124, 79660, 'en', 'name', 'Northeast Electric Power University'),
(96125, 79660, 'zh', 'name', 'äøœåŒ—ē”µåŠ›å¤§å­¦'),
(96126, 79661, 'en', 'name', 'Society for Research in Child Development'),
(96127, 79662, 'en', 'name', 'Central Power Research Institute'),
(96128, 79663, 'en', 'name', 'Hebei Academy of Sciences'),
(96129, 79663, 'zh', 'name', 'ę²³åŒ—ē§‘å­¦é™¢'),
(96130, 79664, 'en', 'name', 'Challenger Society for Marine Science'),
(96131, 79665, 'en', 'name', 'Adams State University'),
(96132, 79666, 'en', 'name', 'Indiana University Southeast'),
(96133, 79667, 'en', 'name', 'American Orthopaedic Society for Sports Medicine'),
(96134, 79668, 'en', 'name', 'General Medical Council'),
(96135, 79669, 'en', 'name', 'Innovative Genomics Institute'),
(96136, 79670, 'en', 'name', 'Alaska Historical Society'),
(96137, 79671, 'en', 'name', 'British Society of Soil Science'),
(96138, 79672, 'en', 'name', 'Xianyang Normal University'),
(96139, 79672, 'zh', 'name', 'å’øé˜³åøˆčŒƒå­¦é™¢'),
(96140, 79673, 'en', 'name', 'Long Island University'),
(96141, 79673, 'fr', 'name', 'UniversitƩ de Long Island'),
(96142, 79674, 'en', 'name', 'British Sociological Association'),
(96143, 79675, 'ko', 'name', 'Daegu-Gyeongbuk Advanced Medical Industry Promotion Foundation'),
(96144, 79675, 'en', 'name', 'Daegu-Gyeongbuk Medical Innovation Foundation'),
(96145, 79676, 'en', 'name', 'Indian Institute of Tropical Meteorology'),
(96146, 79676, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤‰ą¤·ą„ą¤£ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ą„€ą¤Æ ą¤¹ą¤µą¤¾ą¤®ą¤¾ą¤Øą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(96147, 79677, 'no_lang_code', 'name', 'Ruijin Hospital'),
(96148, 79677, 'zh', 'name', 'äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žē‘žé‡‘åŒ»é™¢'),
(96149, 79678, 'en', 'name', 'Carle Foundation Hospital'),
(96150, 79679, 'no_lang_code', 'name', 'GE Global Research (United States)'),
(96151, 79680, 'en', 'name', 'Biomedical Research Council'),
(96152, 79681, 'en', 'name', 'European Medicines Agency'),
(96153, 79682, 'en', 'name', 'Atomic Energy Commission of Syria'),
(96154, 79683, 'en', 'name', 'Kansas Academy of Science'),
(96155, 79684, 'en', 'name', 'Audubon Society of Greater Denver'),
(96156, 79685, 'bs', 'name', 'Federalno Ministarstvo Obrazovanja i Nauke'),
(96157, 79686, 'en', 'name', 'Fu Jen Catholic University'),
(96158, 79686, 'zh', 'name', '辅仁大学'),
(96159, 79687, 'es', 'name', 'Agencia Nacional de Inteligencia-Geoespacial'),
(96160, 79687, 'en', 'name', 'National Geospatial-Intelligence Agency'),
(96161, 79688, 'de', 'name', 'Heinz Nixdorf Stiftung'),
(96162, 79689, 'en', 'name', 'Global Environment Facility'),
(96163, 79690, 'en', 'name', 'New York State Library'),
(96164, 79691, 'en', 'name', 'Inner Mongolia Academy of Agricultural & Animal Husbandry Sciences'),
(96165, 79691, 'zh', 'name', 'å†…č’™å¤å†œē‰§äøšē§‘å­¦é™¢'),
(96166, 79692, 'en', 'name', 'Amigos Library Services'),
(96167, 79693, 'en', 'name', 'Fujian Provincial Hospital'),
(96168, 79693, 'zh', 'name', 'ē¦å»ŗēœē«‹åŒ»é™¢'),
(96169, 79694, 'en', 'name', 'Agricultural Research Service'),
(96170, 79695, 'en', 'name', 'Meiji University'),
(96171, 79695, 'ja', 'name', 'ę˜Žę²»å¤§å­¦'),
(96172, 79696, 'en', 'name', 'Huanggang Normal University'),
(96173, 79696, 'zh', 'name', 'é»„å†ˆåøˆčŒƒå­¦é™¢'),
(96174, 79697, 'en', 'name', 'American Association for Laboratory Animal Science'),
(96175, 79698, 'en', 'name', 'Foundation for Professional Development'),
(96176, 79699, 'en', 'name', 'Society for Women''s Health Research'),
(96177, 79700, 'en', 'name', 'Anhui University of Finance and Economics'),
(96178, 79700, 'zh', 'name', 'å®‰å¾½č“¢ē»å¤§å­¦'),
(96179, 79701, 'en', 'name', 'North South University'),
(96180, 79701, 'bn', 'name', 'ą¦Øą¦°ą§ą¦„ সাউ঄ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(96181, 79702, 'en', 'name', 'Chongqing University of Education'),
(96182, 79702, 'zh', 'name', 'é‡åŗ†ę•™č‚²å¤§å­¦'),
(96183, 79703, 'en', 'name', 'American Beverage Association'),
(96184, 79704, 'en', 'name', 'Guangdong Provincial People''s Hospital'),
(96185, 79704, 'zh', 'name', 'å¹æäøœēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(96186, 79705, 'en', 'name', 'Royal Australasian College of Medical Administrators'),
(96187, 79706, 'en', 'name', 'Cyrus Tang Foundation'),
(96188, 79707, 'en', 'name', 'Cedars-Sinai Medical Center'),
(96189, 79708, 'en', 'name', 'Centre for DNA Fingerprinting and Diagnostics'),
(96190, 79708, 'hi', 'name', 'ą¤”ą„€ą¤ą¤Øą¤ ą¤«ą¤æą¤‚ą¤—ą¤°ą¤Ŗą„ą¤°ą¤æą¤‚ą¤Ÿą¤æą¤‚ą¤— ą¤ą¤µą¤‚ निदान ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(96191, 79709, 'en', 'name', 'China-Japan Friendship Hospital'),
(96192, 79709, 'zh', 'name', 'äø­ę—„å‹å„½åŒ»é™¢'),
(96193, 79710, 'en', 'name', 'Hubei Engineering University'),
(96194, 79710, 'zh', 'name', 'ę¹–åŒ—å·„ēØ‹å¤§å­¦'),
(96195, 79711, 'en', 'name', 'Eastern Michigan University'),
(96196, 79711, 'es', 'name', 'Universidad de Michigan Oriental'),
(96197, 79712, 'en', 'name', 'South African National Space Agency'),
(96198, 79713, 'en', 'name', 'University of Toyama'),
(96199, 79713, 'ja', 'name', '富山大学'),
(96200, 79714, 'en', 'name', 'American College of Foot and Ankle Surgeons'),
(96201, 79715, 'en', 'name', 'Fort Valley State University'),
(96202, 79716, 'en', 'name', 'Physical Research Laboratory'),
(96203, 79717, 'en', 'name', 'International Glaucoma Association'),
(96204, 79718, 'en', 'name', 'Society for Experimental Biology and Medicine'),
(96205, 79719, 'en', 'name', 'UK Stem Cell Foundation'),
(96206, 79720, 'sv', 'name', 'Centralsjukhuset Kristianstad'),
(96207, 79721, 'en', 'name', 'Cooperative Research Centre for Water Sensitive Cities'),
(96208, 79722, 'en', 'name', 'University of Wisconsin Foundation'),
(96209, 79723, 'fr', 'name', 'Fondation Maladies Rares'),
(96210, 79724, 'en', 'name', 'Hubei University of Medicine'),
(96211, 79724, 'zh', 'name', 'ę¹–åŒ—åŒ»čÆå­¦é™¢'),
(96212, 79725, 'en', 'name', 'University of Faisalabad'),
(96213, 79725, 'ur', 'name', 'جامعہ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(96214, 79726, 'en', 'name', 'American Society for Environmental History'),
(96215, 79727, 'en', 'name', 'New York Historical Society'),
(96216, 79728, 'en', 'name', 'British Academy of Management'),
(96217, 79729, 'en', 'name', 'Georgia Department of Natural Resources'),
(96218, 79730, 'en', 'name', 'Binzhou University'),
(96219, 79730, 'zh', 'name', 'ę»Øå·žå­¦é™¢'),
(96220, 79731, 'en', 'name', 'University of King''s College'),
(96221, 79732, 'en', 'name', 'American Petroleum Institute'),
(96222, 79733, 'en', 'name', 'FENS Kavli Network of Excellence'),
(96223, 79734, 'en', 'name', 'Fairchild Tropical Botanic Garden'),
(96224, 79735, 'pt', 'name', 'Associação Brasileira de Saúde Coletiva'),
(96225, 79736, 'en', 'name', 'African Studies Association'),
(96226, 79737, 'en', 'name', 'Meijo University'),
(96227, 79737, 'ja', 'name', '名城大学'),
(96228, 79738, 'en', 'name', 'American Economic Association'),
(96229, 79739, 'en', 'name', 'Federal Agency for Scientific Organizations'),
(96230, 79739, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ агентство Š½Š°ŃƒŃ‡Š½Ń‹Ń… организаций'),
(96231, 79740, 'en', 'name', 'DigitalGlobe Foundation'),
(96232, 79741, 'en', 'name', 'Dorset HealthCare University NHS Foundation Trust'),
(96233, 79742, 'en', 'name', 'St. George''s University'),
(96234, 79743, 'en', 'name', 'Henan Agricultural University'),
(96235, 79743, 'zh', 'name', 'ę²³å—å†œäøšå¤§å­¦'),
(96236, 79744, 'en', 'name', 'Genesis Research Trust'),
(96237, 79745, 'en', 'name', 'American Society of Parasitologists'),
(96238, 79746, 'en', 'name', 'Peking University People''s Hospital'),
(96239, 79746, 'zh', 'name', 'åŒ—äŗ¬å¤§å­¦äŗŗę°‘åŒ»é™¢'),
(96240, 79747, 'en', 'name', 'Institute of Food Technologists'),
(96241, 79748, 'en', 'name', 'American Academy of Addiction Psychiatry'),
(96242, 79749, 'en', 'name', 'Jewish Community Foundation'),
(96243, 79750, 'en', 'name', 'Harbin Normal University'),
(96244, 79750, 'zh', 'name', 'å“ˆå°”ę»ØåøˆčŒƒå¤§å­¦'),
(96245, 79751, 'en', 'name', 'Himalayan Institute Hospital Trust'),
(96246, 79751, 'hi', 'name', 'ą¤¹ą¤æą¤®ą¤¾ą¤²ą¤Æą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² ą¤Ÿą„ą¤°ą¤øą„ą¤Ÿ'),
(96247, 79752, 'en', 'name', 'St. Bonaventure University'),
(96248, 79752, 'es', 'name', 'Universidad de San Buenaventura'),
(96249, 79752, 'fr', 'name', 'UniversitƩ de st. bonaventure'),
(96250, 79753, 'en', 'name', 'Guangdong Polytechnic of Science and Technology'),
(96251, 79753, 'zh', 'name', 'å¹æäøœē§‘å­¦ęŠ€ęœÆčŒäøšå­¦é™¢'),
(96252, 79754, 'en', 'name', 'Babraham Institute'),
(96253, 79755, 'en', 'name', 'Canadian Society of Plastic Surgeons'),
(96254, 79756, 'en', 'name', 'Federal Railroad Administration'),
(96255, 79757, 'en', 'name', 'Western Indian Ocean Marine Science Association'),
(96256, 79758, 'en', 'name', 'Open University of Sri Lanka'),
(96257, 79758, 'ta', 'name', 'ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®¤ą®æą®±ą®ØąÆą®¤ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(96258, 79758, 'si', 'name', 'ශ් රී ą¶½ą¶‚ą¶šą· ą·€ą·’ą·€ą·˜ą¶­ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(96259, 79759, 'en', 'name', 'Unitec Institute of Technology'),
(96260, 79760, 'en', 'name', 'Canadian Association of Emergency Physicians'),
(96261, 79761, 'en', 'name', 'International Association for Identification'),
(96262, 79762, 'en', 'name', 'Mie University'),
(96263, 79762, 'ja', 'name', 'äø‰é‡å¤§å­¦'),
(96264, 79763, 'en', 'name', 'European Association for the Study of Diabetes'),
(96265, 79764, 'en', 'name', 'Indian Statistical Institute'),
(96266, 79764, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą¤¾ą¤‚ą¤–ą„ą¤Æą¤æą¤•ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(96267, 79765, 'en', 'name', 'Office of Marine and Aviation Operations'),
(96268, 79766, 'en', 'name', 'Howard University'),
(96269, 79766, 'es', 'name', 'Universidad Howard'),
(96270, 79767, 'en', 'name', 'Heze University'),
(96271, 79767, 'zh', 'name', 'čę³½å¤§å­¦'),
(96272, 79768, 'no_lang_code', 'name', 'Vertex Pharmaceuticals (United States)'),
(96273, 79769, 'en', 'name', 'Doha Institute for Graduate Studies'),
(96274, 79769, 'fa', 'name', 'معهد Ų§Ł„ŲÆŁˆŲ­Ų© للدراسات Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł…Ų¤Ų³Ų³Ų© Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(96275, 79770, 'en', 'name', 'BC Children''s Hospital Foundation'),
(96276, 79771, 'en', 'name', 'Philippine Rice Research Institute'),
(96277, 79772, 'en', 'name', 'Indiana Department of Transportation'),
(96278, 79773, 'en', 'name', 'Greater London Authority'),
(96279, 79774, 'en', 'name', 'Bat Conservation Trust'),
(96280, 79775, 'en', 'name', 'New York Foundation for the Arts'),
(96281, 79776, 'en', 'name', 'National Agricultural Statistics Service'),
(96282, 79777, 'en', 'name', 'American Academy In Rome'),
(96283, 79778, 'en', 'name', 'BC Cancer Foundation'),
(96284, 79779, 'en', 'name', 'Phycological Society of America'),
(96285, 79780, 'en', 'name', 'Research Institute of Economy, Trade and Industry'),
(96286, 79780, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗēµŒęøˆē”£ę„­ē ”ē©¶ę‰€'),
(96287, 79781, 'en', 'name', 'Cherepovets State University'),
(96288, 79781, 'ru', 'name', 'Череповецкий Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(96289, 79782, 'en', 'name', 'Hope Funds for Cancer Research'),
(96290, 79783, 'en', 'name', 'John F. Kennedy University'),
(96291, 79784, 'en', 'name', 'Sussex Partnership NHS Foundation Trust'),
(96292, 79785, 'en', 'name', 'People''s Trust for Endangered Species'),
(96293, 79786, 'en', 'name', 'Pontifical Xavierian University'),
(96294, 79786, 'es', 'name', 'Pontificia Universidad Javeriana'),
(96295, 79787, 'es', 'name', 'Fundación para el Fomento de la Investigación Sanitaria y Biomédica de la Comunitat Valenciana'),
(96296, 79788, 'en', 'name', 'Indian Academy of Sciences'),
(96297, 79789, 'en', 'name', 'Indian Institute of Technology Indore'),
(96298, 79789, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‡ą¤‚ą¤¦ą„Œą¤°'),
(96299, 79789, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®‡ą®ØąÆą®¤ąÆ‚ą®°ąÆ'),
(96300, 79790, 'en', 'name', 'National Trust for Historic Preservation'),
(96301, 79791, 'en', 'name', 'Duke Kunshan University'),
(96302, 79791, 'zh', 'name', 'ę˜†å±±ęœå…‹å¤§å­¦'),
(96303, 79792, 'en', 'name', 'Illinois Society for the Prevention of Blindness'),
(96304, 79793, 'it', 'name', 'AutoritĆ  Europea per la Sicurezza Alimentare'),
(96305, 79793, 'fr', 'name', 'AutoritƩ EuropƩenne de SƩcuritƩ des Aliments'),
(96306, 79793, 'en', 'name', 'European Food Safety Authority'),
(96307, 79793, 'de', 'name', 'Europäische Behörde für Lebensmittelsicherheit'),
(96308, 79794, 'en', 'name', 'Bose Institute'),
(96309, 79794, 'ml', 'name', 'ą“¬ąµ‹ą“øąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(96310, 79795, 'no_lang_code', 'name', 'University of Peradeniya'),
(96311, 79795, 'ta', 'name', 'ą®ŖąÆ‡ą®°ą®¾ą®¤ą®©ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(96312, 79795, 'si', 'name', 'ą¶“ą·šą¶»ą·ą¶Æą·™ą¶«ą·’ą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(96313, 79796, 'en', 'name', 'Nepal Agricultural Research Council'),
(96314, 79796, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø परिषद'),
(96315, 79797, 'en', 'name', 'American Podiatric Medical Association'),
(96316, 79798, 'en', 'name', 'University City Science Center'),
(96317, 79799, 'no_lang_code', 'name', 'Swedish Orphan Biovitrum (Sweden)'),
(96318, 79800, 'en', 'name', 'Kenya Medical Research Institute'),
(96319, 79801, 'en', 'name', 'Southern Federal University'),
(96320, 79801, 'ru', 'name', 'Южный Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(96321, 79802, 'en', 'name', 'Dalian Polytechnic University'),
(96322, 79802, 'zh', 'name', 'å¤§čæžå·„äøšå¤§å­¦'),
(96323, 79803, 'en', 'name', 'American Society of Agronomy'),
(96324, 79804, 'en', 'name', 'Hubei University of Science and Technology'),
(96325, 79804, 'zh', 'name', 'ę¹–åŒ—ē§‘ęŠ€å­¦é™¢'),
(96326, 79805, 'en', 'name', 'Oklahoma Department of Transportation'),
(96327, 79806, 'en', 'name', 'Foreign Agricultural Service'),
(96328, 79807, 'en', 'name', 'Fox Chase Cancer Center'),
(96329, 79808, 'en', 'name', 'Hartford Foundation for Public Giving'),
(96330, 79809, 'en', 'name', 'Society for Sedimentary Geology'),
(96331, 79810, 'en', 'name', 'Bacha Khan University'),
(96332, 79811, 'en', 'name', 'National Institute of Food and Agriculture'),
(96333, 79812, 'no_lang_code', 'name', 'Catalyst Biosciences (United States)'),
(96334, 79813, 'en', 'name', 'European College of Neuropsychopharmacology'),
(96335, 79814, 'nl', 'name', 'Academie Verloskunde Amsterdam Groningen'),
(96336, 79815, 'en', 'name', 'Hospice and Palliative Nurses Foundation'),
(96337, 79816, 'en', 'name', 'Cohen Veterans Bioscience'),
(96338, 79817, 'en', 'name', 'Heilongjiang University of Science and Technology'),
(96339, 79817, 'zh', 'name', 'é»‘é¾™ę±Ÿå·„ēØ‹å­¦é™¢'),
(96340, 79818, 'en', 'name', 'Hunan Academy of Agricultural Sciences'),
(96341, 79818, 'zh', 'name', 'ę¹–å—ēœå†œäøšē§‘å­¦é™¢'),
(96342, 79819, 'en', 'name', 'Baotou Medical College'),
(96343, 79819, 'zh', 'name', '包夓医学院'),
(96344, 79820, 'en', 'name', 'Kawasaki Medical School'),
(96345, 79820, 'ja', 'name', 'å·å“ŽåŒ»ē§‘å¤§å­¦'),
(96346, 79821, 'en', 'name', 'China National Nuclear Corporation'),
(96347, 79821, 'zh', 'name', 'äø­å›½ę øå·„äøšé›†å›¢å…¬åø'),
(96348, 79822, 'es', 'name', 'Fundación Juan March'),
(96349, 79823, 'en', 'name', 'British Society for Heart Failure'),
(96350, 79824, 'en', 'name', 'Freshwater Biological Association'),
(96351, 79825, 'fr', 'name', 'Banque Canadienne ImpƩriale de Commerce'),
(96352, 79825, 'no_lang_code', 'name', 'Canadian Imperial Bank of Commerce (Canada)'),
(96353, 79826, 'en', 'name', 'American Society for Bone and Mineral Research'),
(96354, 79827, 'en', 'name', 'Nebraska Academy of Sciences'),
(96355, 79828, 'en', 'name', 'Lindenwood University'),
(96356, 79829, 'en', 'name', 'Showa Pharmaceutical University'),
(96357, 79829, 'ja', 'name', 'ę˜­å’Œč–¬ē§‘å¤§å­¦'),
(96358, 79830, 'en', 'name', 'Bank for International Settlements'),
(96359, 79830, 'de', 'name', 'Bank für Internationalen Zahlungsausgleich'),
(96360, 79831, 'en', 'name', 'Aba Teachers University'),
(96361, 79831, 'zh', 'name', 'é˜æååøˆčŒƒå­¦é™¢'),
(96362, 79832, 'de', 'name', 'Berlin-Brandenburger Centrum für Regenerative Therapien'),
(96363, 79833, 'de', 'name', 'Forschungsverbund Berlin'),
(96364, 79834, 'en', 'name', 'American Association for Respiratory Care'),
(96365, 79835, 'en', 'name', 'Hawaii Academy of Science'),
(96366, 79836, 'en', 'name', 'American Philosophical Association'),
(96367, 79837, 'en', 'name', 'Minia University'),
(96368, 79837, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŁŠŁ€Ų§'),
(96369, 79838, 'en', 'name', 'Kaohsiung Armed Forces General Hospital'),
(96370, 79839, 'en', 'name', 'National Centre for Earth Observation'),
(96371, 79840, 'fr', 'name', 'UniversitĆ© d''Ɖtat de winona'),
(96372, 79840, 'en', 'name', 'Winona State University'),
(96373, 79841, 'en', 'name', 'American Society for Metabolic and Bariatric Surgery'),
(96374, 79842, 'en', 'name', 'Max Planck Institute for Nuclear Physics'),
(96375, 79842, 'de', 'name', 'Max-Planck-Institut für Kernphysik'),
(96376, 79843, 'en', 'name', 'Centre for Excellence in Mining Innovation'),
(96377, 79844, 'en', 'name', 'International Biometric Society'),
(96378, 79845, 'en', 'name', 'Peking University Third Hospital'),
(96379, 79845, 'zh', 'name', 'åŒ—äŗ¬å¤§å­¦ē¬¬äø‰åŒ»é™¢'),
(96380, 79846, 'fr', 'name', 'Centre Hospitalier Universitaire Sainte-Justine'),
(96381, 79847, 'en', 'name', 'Hubei University of Arts and Science'),
(96382, 79847, 'zh', 'name', 'ę¹–åŒ—ę–‡ē†å­¦é™¢'),
(96383, 79848, 'en', 'name', 'Ministry of Internal Affairs and Communications'),
(96384, 79848, 'ja', 'name', 'ē·å‹™å¤§č‡£'),
(96385, 79849, 'en', 'name', 'University Hospitals Birmingham NHS Foundation Trust'),
(96386, 79850, 'en', 'name', 'American Automatic Control Council'),
(96387, 79851, 'en', 'name', 'Great Lakes Colleges Association'),
(96388, 79852, 'en', 'name', 'Canola Council of Canada'),
(96389, 79853, 'en', 'name', 'Siberian Federal University'),
(96390, 79853, 'ru', 'name', 'Дибирский Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(96391, 79854, 'en', 'name', 'American Association of Nurse Anesthetists'),
(96392, 79855, 'en', 'name', 'Ohio Department of Health'),
(96393, 79856, 'en', 'name', 'Central European Initiative'),
(96394, 79857, 'no_lang_code', 'name', 'Eastman Chemical Company (United States)'),
(96395, 79858, 'no_lang_code', 'name', 'Kwansei Gakuin University'),
(96396, 79858, 'ja', 'name', '関脿学院大学'),
(96397, 79859, 'en', 'name', 'Toyo University'),
(96398, 79859, 'ja', 'name', 'ę±ę“‹å¤§å­¦'),
(96399, 79860, 'en', 'name', 'Canadian Patient Safety Institute'),
(96400, 79860, 'fr', 'name', 'Institut canadien pour la sƩcuritƩ des patients'),
(96401, 79861, 'en', 'name', 'International Technological University'),
(96402, 79862, 'es', 'name', 'Pontificia y Real Universidad de Santo TomƔs'),
(96403, 79862, 'en', 'name', 'University of Santo Tomas'),
(96404, 79863, 'en', 'name', 'Austin Peay State University'),
(96405, 79863, 'es', 'name', 'Universidad Estatal Austin Peay'),
(96406, 79864, 'fr', 'name', 'Conseil RƩgional de La RƩunion'),
(96407, 79865, 'no_lang_code', 'name', 'Portola Pharmaceuticals (United States)'),
(96408, 79866, 'en', 'name', 'Meiji Yasuda Life Foundation of Health and Welfare'),
(96409, 79866, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę˜Žę²»å®‰ē”°åŽšē”Ÿäŗ‹ę„­å›£'),
(96410, 79867, 'en', 'name', 'Norfolk and Norwich University Hospitals NHS Foundation Trust'),
(96411, 79868, 'en', 'name', 'Henan Academy of Agricultural Sciences'),
(96412, 79868, 'zh', 'name', 'ę²³å—ēœå†œäøšē§‘å­¦é™¢'),
(96413, 79869, 'en', 'name', 'Breast Cancer Society of Canada'),
(96414, 79869, 'fr', 'name', 'SociƩtƩ du Cancer du Canada'),
(96415, 79870, 'en', 'name', 'Beijing Electronic Science and Technology Institute'),
(96416, 79870, 'zh', 'name', 'åŒ—äŗ¬ē”µå­ē§‘ęŠ€å­¦é™¢'),
(96417, 79871, 'en', 'name', 'Geological Survey of Ireland'),
(96418, 79871, 'ga', 'name', 'SuirbhĆ©ireacht GheolaĆ­ochta Ɖireann'),
(96419, 79872, 'en', 'name', 'BioXFEL Science and Technology Center'),
(96420, 79873, 'en', 'name', 'Western Connecticut State University'),
(96421, 79874, 'es', 'name', 'Hospital Infantil de México Federico Gómez'),
(96422, 79875, 'en', 'name', 'State Key Laboratory of Respiratory Disease'),
(96423, 79875, 'zh', 'name', 'å‘¼åøē–¾ē—…å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96424, 79876, 'en', 'name', 'Desert Research Institute'),
(96425, 79877, 'en', 'name', 'Thai Health Promotion Foundation'),
(96426, 79878, 'en', 'name', 'V.I. Vernadsky Crimean Federal University'),
(96427, 79878, 'ru', 'name', 'ŠšŃ€Ń‹Š¼ŃŠŗŠøŠ¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’.И. ВернаГского'),
(96428, 79879, 'en', 'name', 'University of Zanjan'),
(96429, 79879, 'fa', 'name', 'دانؓگاه زنجان'),
(96430, 79880, 'no_lang_code', 'name', 'Heidelberg Engineering (Germany)'),
(96431, 79881, 'en', 'name', 'North Pacific Marine Science Organization'),
(96432, 79882, 'en', 'name', 'Anhui Xinhua University'),
(96433, 79883, 'en', 'name', 'Ambrose University'),
(96434, 79884, 'en', 'name', 'Greater Worcester Community Foundation'),
(96435, 79885, 'en', 'name', 'Edmund Mach Foundation'),
(96436, 79885, 'it', 'name', 'Fondazione Edmund Mach'),
(96437, 79886, 'en', 'name', 'National Ovarian Cancer Coalition'),
(96438, 79887, 'en', 'name', 'Hogg Foundation for Mental Health'),
(96439, 79888, 'es', 'name', 'Universidad TƩcnica de Ambato'),
(96440, 79889, 'en', 'name', 'Niagara University'),
(96441, 79889, 'es', 'name', 'Universidad de NiƔgara'),
(96442, 79889, 'fr', 'name', 'UniversitƩ de niagara'),
(96443, 79890, 'en', 'name', 'Baystate Health'),
(96444, 79891, 'en', 'name', 'Guizhou Education University'),
(96445, 79891, 'zh', 'name', 'č“µå·žåøˆčŒƒå­¦é™¢'),
(96446, 79892, 'pt', 'name', 'Fundação Parque Tecnológico Itaipu'),
(96447, 79893, 'en', 'name', 'Chongqing Academy of Science and Technology'),
(96448, 79893, 'zh', 'name', 'é‡åŗ†åø‚ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(96449, 79894, 'en', 'name', 'Yunnan Agricultural University'),
(96450, 79894, 'zh', 'name', 'äŗ‘å—å†œäøšå¤§å­¦'),
(96451, 79895, 'da', 'name', 'Rigshospitalet'),
(96452, 79896, 'en', 'name', 'Growing Spine Foundation'),
(96453, 79897, 'en', 'name', 'Hospital District of Southwest Finland'),
(96454, 79897, 'fi', 'name', 'Varsinais-Suomen Sairaanhoitopiiri'),
(96455, 79898, 'en', 'name', 'Nanjing Xiaozhuang University'),
(96456, 79898, 'zh', 'name', 'å—äŗ¬ę™“åŗ„å­¦é™¢'),
(96457, 79899, 'en', 'name', 'Chinese Society for Electrical Engineering'),
(96458, 79899, 'zh', 'name', 'äø­å›½ē”µęœŗå·„ēØ‹å­¦ä¼š'),
(96459, 79900, 'en', 'name', 'Canadian Institute for Theoretical Astrophysics'),
(96460, 79900, 'fr', 'name', 'Institut canadien d''astrophysique thƩorique'),
(96461, 79901, 'en', 'name', 'Newman University'),
(96462, 79902, 'en', 'name', 'Saitama Medical University'),
(96463, 79902, 'ja', 'name', 'åŸ¼ēŽ‰åŒ»ē§‘å¤§å­¦'),
(96464, 79903, 'en', 'name', 'Centre of Molecular and Macromolecular Studies'),
(96465, 79903, 'pl', 'name', 'Centrum Badań Molekularnych i Makromolekularnych Polskiej Akademii Nauk'),
(96466, 79904, 'de', 'name', 'Deutsche Morbus Crohn/Colitis ulcerosa Vereinigung'),
(96467, 79905, 'ga', 'name', 'Feidhmeannacht na Seirbhƭse SlƔinte'),
(96468, 79905, 'en', 'name', 'Health Service Executive'),
(96469, 79906, 'en', 'name', 'Chinese Arctic and Antarctic Administration'),
(96470, 79906, 'zh', 'name', 'å›½å®¶ęµ·ę“‹å±€ęžåœ°č€ƒåÆŸåŠžå…¬å®¤'),
(96471, 79907, 'en', 'name', 'American Association of Nurse Practitioners'),
(96472, 79908, 'en', 'name', 'Alberta Barley'),
(96473, 79909, 'en', 'name', 'California Energy Commission'),
(96474, 79910, 'en', 'name', 'Indian Institute of Space Science and Technology'),
(96475, 79910, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æą“Øąµā€ ą“‡ą“Øąµā€ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“øąµą“Ŗąµ‡ą“øąµ ą“øą“Æąµ»ą“øąµ ą“†ą“Øąµą“±ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ .'),
(96476, 79911, 'en', 'name', 'Guangdong Academy of Agricultural Sciences'),
(96477, 79911, 'zh', 'name', 'å¹æäøœēœå†œäøšē§‘å­¦é™¢'),
(96478, 79912, 'en', 'name', 'Canadian Museum of Nature'),
(96479, 79912, 'fr', 'name', 'MusƩe Canadien de la nature'),
(96480, 79913, 'en', 'name', 'Keyano College'),
(96481, 79914, 'en', 'name', 'United Cerebral Palsy'),
(96482, 79915, 'en', 'name', 'Beef Farmers of Ontario'),
(96483, 79916, 'en', 'name', 'Chengdu Institute of Biology'),
(96484, 79916, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ęˆéƒ½ē”Ÿē‰©ē ”ē©¶ę‰€'),
(96485, 79917, 'no_lang_code', 'name', 'Cerebrotech Medical Systems (United States)'),
(96486, 79918, 'es', 'name', 'Asociación Colombiana de Infectología'),
(96487, 79919, 'en', 'name', 'American Spinal Injury Association'),
(96488, 79920, 'en', 'name', 'National Defense Medical College'),
(96489, 79920, 'ja', 'name', 'é˜²č”›ēœé˜²č”›åŒ»ē§‘å¤§å­¦ę ”'),
(96490, 79921, 'en', 'name', 'Memphis Zoo'),
(96491, 79922, 'en', 'name', 'College of Optometrists'),
(96492, 79923, 'en', 'name', 'Faraday Institute for Science and Religion'),
(96493, 79924, 'en', 'name', 'Canadian Public Health Association'),
(96494, 79925, 'en', 'name', 'Ogasawara Foundation for the Promotion of Science and Engineering'),
(96495, 79925, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å°ē¬ åŽŸē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(96496, 79926, 'en', 'name', 'American Institute of Biological Sciences'),
(96497, 79927, 'en', 'name', 'Ahmedabad University'),
(96498, 79927, 'gu', 'name', 'અમદાવાદ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(96499, 79928, 'en', 'name', 'Minnesota Academy of Science'),
(96500, 79929, 'fr', 'name', 'Institut Agronomique et VƩtƩrinaire Hassan II'),
(96501, 79930, 'en', 'name', 'Australasian Society for Infectious Diseases'),
(96502, 79931, 'en', 'name', 'National Institute of Information and Communications Technology'),
(96503, 79931, 'ja', 'name', 'ęƒ…å ±é€šäæ”ē ”ē©¶ę©Ÿę§‹'),
(96504, 79932, 'en', 'name', 'Allegheny Health Network'),
(96505, 79933, 'en', 'name', 'Government College University, Lahore'),
(96506, 79933, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ کالج Ł„Ų§ŪŁˆŲ±'),
(96507, 79933, 'pa', 'name', 'ąØ—ą©ŒąØ°ąØ®ąØæą©°ąØŸ ąØ•ąØ¾ąØ²ąØœ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(96508, 79934, 'en', 'name', 'Northeast Petroleum University'),
(96509, 79934, 'zh', 'name', 'äøœåŒ—ēŸ³ę²¹å¤§å­¦'),
(96510, 79935, 'en', 'name', 'Academic Pediatric Association'),
(96511, 79936, 'en', 'name', 'Qilu Hospital of Shandong University'),
(96512, 79937, 'en', 'name', 'University of Social Welfare and Rehabilitation Sciences'),
(96513, 79937, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… ŲØŁ‡Ų²ŪŒŲ³ŲŖŪŒ و ŲŖŁˆŲ§Ł†ŲØŲ®Ų“ŪŒ'),
(96514, 79938, 'en', 'name', 'Shanghai Municipal Commission of Economy and Informatization'),
(96515, 79938, 'zh', 'name', 'äøŠęµ·åø‚ē»ęµŽå’Œäæ”ęÆåŒ–å§”å‘˜ä¼š'),
(96516, 79939, 'en', 'name', 'Association of Community Cancer Centers'),
(96517, 79940, 'en', 'name', 'American Society of Agricultural and Biological Engineers'),
(96518, 79941, 'en', 'name', 'Polar Knowledge Canada'),
(96519, 79942, 'en', 'name', 'Orthopaedic Research Foundation'),
(96520, 79943, 'en', 'name', 'European Society for Clinical Nutrition and Metabolism'),
(96521, 79944, 'en', 'name', 'Hashemite University'),
(96522, 79944, 'ar', 'name', 'الجامعة Ų§Ł„Ł‡Ų§Ų“Ł…ŁŠŲ©'),
(96523, 79945, 'en', 'name', 'New York Medical College'),
(96524, 79946, 'en', 'name', 'University of Chittagong'),
(96525, 79946, 'bn', 'name', 'ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(96526, 79947, 'en', 'name', 'Harvard Global Health Institute'),
(96527, 79948, 'en', 'name', 'Guangdong Academy of Sciences'),
(96528, 79948, 'zh', 'name', 'å¹æäøœēœē§‘å­¦é™¢'),
(96529, 79949, 'en', 'name', 'California Air Resources Board'),
(96530, 79949, 'es', 'name', 'Junta de Recursos del Aire de California'),
(96531, 79950, 'en', 'name', 'Hunan Institute of Engineering'),
(96532, 79950, 'zh', 'name', 'ę¹–å—å·„ēØ‹å­¦é™¢'),
(96533, 79951, 'en', 'name', 'Ilia State University'),
(96534, 79951, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ильи'),
(96535, 79951, 'ka', 'name', 'ილიაე įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(96536, 79952, 'en', 'name', 'Karst Waters Institute'),
(96537, 79953, 'en', 'name', 'University of Southern Indiana'),
(96538, 79953, 'fr', 'name', 'UniversitƩ de l''indiana du sud'),
(96539, 79954, 'en', 'name', 'Office of the National Coordinator for Health Information Technology'),
(96540, 79955, 'en', 'name', 'Taiwan Clinical Oncology Research Foundation'),
(96541, 79955, 'zh', 'name', 'č²”åœ˜ę³•äŗŗå°ē£ē™Œē—‡č‡ØåŗŠē ”ē©¶ē™¼å±•åŸŗé‡‘ęœƒ'),
(96542, 79956, 'en', 'name', 'American Institute for Contemporary German Studies'),
(96543, 79957, 'en', 'name', 'National Supercomputing Center of Tianjin'),
(96544, 79957, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—å¤©ę“„äø­åæƒ'),
(96545, 79958, 'en', 'name', 'Fuyang Normal University'),
(96546, 79958, 'zh', 'name', 'é˜œé˜³åøˆčŒƒå­¦é™¢'),
(96547, 79959, 'en', 'name', 'American Society of Addiction Medicine'),
(96548, 79960, 'en', 'name', 'Gallaudet University'),
(96549, 79961, 'en', 'name', 'British Institute at Ankara'),
(96550, 79962, 'en', 'name', 'Biola University'),
(96551, 79963, 'es', 'name', 'Universidad JuÔrez Autónoma de Tabasco'),
(96552, 79964, 'en', 'name', 'European League Against Rheumatism'),
(96553, 79965, 'en', 'name', 'Petroleum Technology Alliance Canada'),
(96554, 79966, 'en', 'name', 'Chronic Disease Research Foundation'),
(96555, 79967, 'en', 'name', 'Cancer Focus Northern Ireland'),
(96556, 79968, 'en', 'name', 'Yale-NUS College'),
(96557, 79968, 'zh', 'name', '耶魯-ę–°åŠ å”åœ‹ē«‹å¤§å­øå­øé™¢'),
(96558, 79969, 'de', 'name', 'Rhƶn-Klinikum'),
(96559, 79970, 'en', 'name', 'Peking University First Hospital'),
(96560, 79971, 'en', 'name', 'Inner Mongolia University of Science and Technology'),
(96561, 79971, 'zh', 'name', 'å†…č’™å¤ē§‘ęŠ€å¤§å­¦'),
(96562, 79972, 'en', 'name', 'Renmin Hospital of Wuhan University'),
(96563, 79973, 'en', 'name', 'Australasian College of Dermatologists'),
(96564, 79974, 'en', 'name', 'Nuclear Materials Authority'),
(96565, 79975, 'it', 'name', 'UniversitĆ  degli Studi di Enna Kore'),
(96566, 79975, 'fr', 'name', 'UniversitƩ kore d''enna'),
(96567, 79976, 'en', 'name', 'Tennessee Valley Authority'),
(96568, 79977, 'en', 'name', 'Hunan University of Science and Technology'),
(96569, 79977, 'zh', 'name', 'ę¹–å—ē§‘ęŠ€å¤§å­¦'),
(96570, 79978, 'en', 'name', 'European Consortium for Political Research'),
(96571, 79979, 'en', 'name', 'Plymouth State University'),
(96572, 79979, 'fr', 'name', 'UniversitĆ© d''Ɖtat de plymouth'),
(96573, 79980, 'en', 'name', 'Biomedical Research Institute of New Mexico'),
(96574, 79981, 'en', 'name', 'Massachusetts Medical Society'),
(96575, 79982, 'en', 'name', 'British Cardiovascular Society'),
(96576, 79983, 'fr', 'name', 'Agence EuropƩenne de DƩfense'),
(96577, 79983, 'en', 'name', 'European Defence Agency'),
(96578, 79983, 'nl', 'name', 'Europees Defensieagentschap'),
(96579, 79983, 'de', 'name', 'EuropƤische Verteidigungsagentur'),
(96580, 79984, 'en', 'name', 'Georgia Department of Public Health'),
(96581, 79985, 'en', 'name', 'American Society of Ichthyologists and Herpetologists'),
(96582, 79986, 'en', 'name', 'British Film Institute'),
(96583, 79987, 'en', 'name', 'Arnold Arboretum'),
(96584, 79988, 'en', 'name', 'Education Development Trust'),
(96585, 79989, 'en', 'name', 'American Indian College Fund'),
(96586, 79990, 'fr', 'name', 'Conseil RƩgional de Picardie'),
(96587, 79991, 'no_lang_code', 'name', 'Neurocrine Biosciences (United States)'),
(96588, 79992, 'en', 'name', 'Fayetteville State University'),
(96589, 79992, 'fr', 'name', 'UniversitĆ© d''Ɖtat de fayetteville'),
(96590, 79993, 'cy', 'name', 'Bwrdd lechyd Prifysgol Bae Abertawe'),
(96591, 79993, 'en', 'name', 'Swansea Bay University Health Board'),
(96592, 79994, 'en', 'name', 'Guangdong Provincial Hospital of Traditional Chinese Medicine'),
(96593, 79994, 'zh', 'name', 'å¹æäøœēœäø­åŒ»é™¢'),
(96594, 79995, 'no_lang_code', 'name', 'Occidental Petroleum (United States)'),
(96595, 79996, 'no_lang_code', 'name', 'Ionis Pharmaceuticals (United States)'),
(96596, 79997, 'en', 'name', 'University of Gujrat'),
(96597, 79997, 'ur', 'name', 'جامعہ ŚÆŲ¬Ų±Ų§ŲŖ'),
(96598, 79998, 'en', 'name', 'California NanoSystems Institute'),
(96599, 79999, 'en', 'name', 'Ontario Society of Occupational Therapists'),
(96600, 80000, 'en', 'name', 'Alexander S Onassis Public Benefit Foundation'),
(96601, 80000, 'el', 'name', 'ĪšĪæĪ¹Ī½Ļ‰Ļ†ĪµĪ»Ī­Ļ‚ ΙΓρυμα ΑλεξανΓρου Ωνάση'),
(96602, 80001, 'en', 'name', 'Huaibei Normal University'),
(96603, 80001, 'zh', 'name', 'ę·®åŒ—åøˆčŒƒå¤§å­¦'),
(96604, 80002, 'en', 'name', 'Tri-Service General Hospital'),
(96605, 80002, 'zh', 'name', 'äø‰č»ēø½é†«é™¢'),
(96606, 80003, 'en', 'name', 'India Meteorological Department'),
(96607, 80004, 'en', 'name', 'Experimental Psychology Society'),
(96608, 80005, 'en', 'name', 'Shanghai Municipal Human Resources and Social Security Bureau'),
(96609, 80005, 'zh', 'name', 'äøŠęµ·åø‚äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœå±€'),
(96610, 80006, 'es', 'name', 'Instituto de Investigación del Suroeste'),
(96611, 80006, 'en', 'name', 'Southwest Research Institute'),
(96612, 80007, 'en', 'name', 'Tsinghua–Berkeley Shenzhen Institute'),
(96613, 80007, 'zh', 'name', 'ęø…åŽå¤§å­¦ä¼Æå…‹åˆ©åˆ†ę ”ę·±åœ³ē ”ē©¶é™¢'),
(96614, 80008, 'en', 'name', 'American Society on Aging'),
(96615, 80009, 'en', 'name', 'Endeavour College of Natural Health'),
(96616, 80010, 'no_lang_code', 'name', 'CymaBay Therapeutics (United States)'),
(96617, 80011, 'en', 'name', 'University Grants Commission Sri Lanka'),
(96618, 80011, 'ta', 'name', 'ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®• ą®®ą®¾ą®©ą®æą®Æą®™ąÆą®•ą®³ąÆ ą®†ą®£ąÆˆą®•ąÆą®•ąÆą®“ąÆ'),
(96619, 80011, 'si', 'name', 'ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ ą¶“ą·Šā€ą¶»ą¶­ą·’ą¶“ą·ą¶Æą¶± ą¶šą·œą¶øą·’ą·‚ą¶±ą·Š ą·ƒą¶·ą·ą·€ - ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą·'),
(96620, 80012, 'en', 'name', 'Rowan University'),
(96621, 80013, 'en', 'name', 'Bone Cancer Research Trust'),
(96622, 80014, 'en', 'name', 'Pakistan Academy of Sciences'),
(96623, 80014, 'ur', 'name', 'پاکستان اكيڈ مى ﺁف سائنسز'),
(96624, 80015, 'es', 'name', 'Universidad Autónoma de Occidente'),
(96625, 80016, 'no_lang_code', 'name', 'Tata Consultancy Services (India)'),
(96626, 80017, 'en', 'name', 'Royal Australasian College of Surgeons'),
(96627, 80018, 'en', 'name', 'Anhui Academy of Agricultural Sciences'),
(96628, 80018, 'zh', 'name', 'å®‰å¾½ēœå†œē§‘é™¢'),
(96629, 80019, 'en', 'name', 'Institution of Occupational Safety and Health'),
(96630, 80020, 'en', 'name', 'Heising-Simons Foundation'),
(96631, 80021, 'en', 'name', 'Toyota Physical and Chemical Research Institute'),
(96632, 80021, 'ja', 'name', 'č±Šē”°ē†åŒ–å­¦ē ”ē©¶ę‰€čØ­ē«‹'),
(96633, 80022, 'en', 'name', 'Forest History Society'),
(96634, 80023, 'en', 'name', 'Hunan Provincial People''s Hospital'),
(96635, 80023, 'zh', 'name', 'ę¹–å—ēœäŗŗę°‘åŒ»é™¢'),
(96636, 80024, 'en', 'name', 'American Academy of Ophthalmology'),
(96637, 80025, 'en', 'name', 'National Wildlife Federation'),
(96638, 80026, 'en', 'name', 'Chartered Institute of Architectural Technologists'),
(96639, 80027, 'en', 'name', 'Taylor''s University'),
(96640, 80028, 'en', 'name', 'Texas Academy of Science'),
(96641, 80029, 'en', 'name', 'State Key Laboratory of Food Science and Technology'),
(96642, 80029, 'zh', 'name', 'é£Ÿå“ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96643, 80030, 'en', 'name', 'Environment Agency'),
(96644, 80031, 'en', 'name', 'Physicians Committee for Responsible Medicine'),
(96645, 80032, 'no_lang_code', 'name', 'Terrafix Geosynthetics (Canada)'),
(96646, 80033, 'en', 'name', 'Centre for Environment, Fisheries and Aquaculture Science'),
(96647, 80034, 'en', 'name', 'Children''s Investment Fund Foundation'),
(96648, 80035, 'en', 'name', 'Chung Shan Medical University'),
(96649, 80036, 'en', 'name', 'North Carolina Department of Agriculture and Consumer Services'),
(96650, 80037, 'no_lang_code', 'name', 'Al-Ahliyya Amman University'),
(96651, 80037, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عمان Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(96652, 80038, 'no_lang_code', 'name', 'Basilea Pharmaceutica (Switzerland)'),
(96653, 80039, 'en', 'name', 'Tuskegee University'),
(96654, 80040, 'en', 'name', 'Qazvin Islamic Azad University'),
(96655, 80040, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł‚Ų²ŁˆŪŒŁ†'),
(96656, 80041, 'en', 'name', 'European Society of Human Reproduction and Embryology'),
(96657, 80042, 'en', 'name', 'Nazarbayev University'),
(96658, 80042, 'ru', 'name', 'ŠŠ°Š·Š°Ń€Š±Š°ŠµŠ² Университет'),
(96659, 80042, 'kk', 'name', 'ŠŠ°Š·Š°Ń€Š±Š°ŠµŠ² Университеті'),
(96660, 80043, 'en', 'name', 'Barts Health NHS Trust'),
(96661, 80044, 'en', 'name', 'Bangladesh Academy of Sciences'),
(96662, 80045, 'en', 'name', 'University of Namibia'),
(96663, 80045, 'de', 'name', 'UniversitƤt von Namibia'),
(96664, 80046, 'en', 'name', 'European Academy of Allergy and Clinical Immunology'),
(96665, 80047, 'en', 'name', 'Chartered Institution of Building Services Engineers'),
(96666, 80048, 'en', 'name', 'China Institute of Atomic Energy'),
(96667, 80048, 'zh', 'name', 'äø­å›½åŽŸå­čƒ½ē§‘å­¦ē ”ē©¶é™¢'),
(96668, 80049, 'en', 'name', 'Ryukoku University'),
(96669, 80049, 'ja', 'name', 'é¾č°·å¤§å­¦'),
(96670, 80050, 'en', 'name', 'China University of Labor Relations'),
(96671, 80050, 'zh', 'name', 'äø­å›½åŠ³åŠØå…³ē³»å­¦é™¢'),
(96672, 80051, 'en', 'name', 'China International Medical Foundation');
INSERT INTO `ror_settings` VALUES
(96673, 80052, 'en', 'name', 'Energy Technologies Institute'),
(96674, 80053, 'en', 'name', 'National Security Agency'),
(96675, 80054, 'no_lang_code', 'name', 'Electro Scientific Industries (United States)'),
(96676, 80055, 'en', 'name', 'Australian Veterinary Association'),
(96677, 80056, 'en', 'name', 'Khulna University'),
(96678, 80056, 'bn', 'name', 'খুলনা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(96679, 80057, 'en', 'name', 'Temasek Life Sciences Laboratory'),
(96680, 80058, 'en', 'name', 'Mississippi Academy of Sciences'),
(96681, 80059, 'en', 'name', 'State Fund for Fundamental Research of Ukraine'),
(96682, 80060, 'fi', 'name', 'Aarne Koskelon SƤƤtiƶ'),
(96683, 80061, 'en', 'name', 'University of the Sciences'),
(96684, 80061, 'fr', 'name', 'UniversitƩ des sciences Ơ philadelphie'),
(96685, 80062, 'de', 'name', 'Universitätsklinikum Tübingen'),
(96686, 80063, 'en', 'name', 'Pancreatic Cancer Canada Foundation'),
(96687, 80064, 'en', 'name', 'Assam Agricultural University'),
(96688, 80064, 'hi', 'name', 'असम ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(96689, 80064, 'bn', 'name', 'অসম ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(96690, 80065, 'en', 'name', 'Austin Medical Research Foundation'),
(96691, 80066, 'en', 'name', 'Okayama Foundation for Science and Technology'),
(96692, 80066, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ 岔山巄学振興会'),
(96693, 80067, 'en', 'name', 'International Federation of Library Associations and Institutions'),
(96694, 80068, 'en', 'name', 'Adama Science and Technology University'),
(96695, 80068, 'am', 'name', 'įŠ į‹³įˆ› įˆ³į‹­įŠ•įˆµįŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(96696, 80069, 'en', 'name', 'Zonta International Foundation'),
(96697, 80070, 'en', 'name', 'University of Central Oklahoma'),
(96698, 80070, 'fr', 'name', 'UniversitƩ du centre de l''oklahoma'),
(96699, 80071, 'en', 'name', 'Council for British Archaeology'),
(96700, 80072, 'en', 'name', 'Mekelle University'),
(96701, 80072, 'ti', 'name', 'įˆ˜į‰įˆˆ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(96702, 80072, 'am', 'name', 'įˆ˜į‰įˆˆ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(96703, 80073, 'no_lang_code', 'name', 'Wikimedia Foundation'),
(96704, 80074, 'en', 'name', 'Anhui Sanlian University'),
(96705, 80074, 'zh', 'name', '安徽三联学院'),
(96706, 80075, 'en', 'name', 'Henry Moore Foundation'),
(96707, 80076, 'en', 'name', 'East Siberia State University of Technology and Management'),
(96708, 80076, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Восточно-Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ технологий Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(96709, 80077, 'en', 'name', 'European Physical Society'),
(96710, 80078, 'en', 'name', 'Homi Bhabha National Institute'),
(96711, 80078, 'hi', 'name', 'ą¤¹ą„‹ą¤®ą„€ भाभा ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(96712, 80078, 'ta', 'name', 'ஹோமி பாபா ą®Øą®æą®•ą®°ąÆ ą®Øą®æą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(96713, 80079, 'en', 'name', 'University of Malakand'),
(96714, 80079, 'ur', 'name', 'جامعہ Ł…Ų§Ł„Ų§Ś©Ł†Śˆ'),
(96715, 80080, 'en', 'name', 'Hunan Agricultural University'),
(96716, 80080, 'zh', 'name', 'ę¹–å—å†œäøšå¤§å­¦'),
(96717, 80081, 'en', 'name', 'University of International Relations'),
(96718, 80081, 'zh', 'name', '国际关系学院'),
(96719, 80082, 'en', 'name', 'Glasgow Centre for Population Health'),
(96720, 80083, 'en', 'name', 'Pakistan Agricultural Research Council'),
(96721, 80084, 'en', 'name', 'Japan Student Services Organization'),
(96722, 80084, 'ja', 'name', 'ę—„ęœ¬å­¦ē”Ÿę”Æę“ę©Ÿę§‹'),
(96723, 80085, 'es', 'name', 'Agencia EspaƱola de Medicamentos y Productos Sanitarios'),
(96724, 80086, 'en', 'name', 'Gannan Medical University'),
(96725, 80086, 'zh', 'name', 'čµ£å—åŒ»å­¦é™¢'),
(96726, 80087, 'en', 'name', 'Ecological Society of America'),
(96727, 80088, 'fr', 'name', 'SociƩtƩ Nationale FranƧaise de Gastro-EntƩrologie'),
(96728, 80089, 'en', 'name', 'Food Safety and Inspection Service'),
(96729, 80090, 'pt', 'name', 'Hospital de CĆ¢ncer de Barretos'),
(96730, 80091, 'en', 'name', 'Hawaii Pacific University'),
(96731, 80092, 'en', 'name', 'Gas Technology Institute'),
(96732, 80093, 'en', 'name', 'American Academy of Environmental Engineers and Scientists'),
(96733, 80094, 'en', 'name', 'Baker Foundation'),
(96734, 80095, 'de', 'name', 'Gesellschaft für Thrombose- und Hämostaseforschung'),
(96735, 80096, 'en', 'name', 'Sigma Theta Tau International'),
(96736, 80097, 'en', 'name', 'Marine Technology Society'),
(96737, 80098, 'en', 'name', 'Chongqing Three Gorges University'),
(96738, 80098, 'zh', 'name', 'é‡åŗ†äø‰å³”å­¦é™¢'),
(96739, 80099, 'es', 'name', 'Hospital Regional de Alta Especialidad del BajĆ­o'),
(96740, 80100, 'en', 'name', 'Western University of Health Sciences'),
(96741, 80101, 'en', 'name', 'Arab International University'),
(96742, 80101, 'hy', 'name', 'Ō±Ö€Õ”Õ¢Õ”ÕÆÕ”Õ¶ Õ“Õ«Õ»Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(96743, 80101, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© الخاصة'),
(96744, 80102, 'en', 'name', 'Catholic University of BrasĆ­lia'),
(96745, 80102, 'es', 'name', 'Universidad Católica de Brasilia'),
(96746, 80102, 'pt', 'name', 'Universidade Católica de Brasília'),
(96747, 80103, 'en', 'name', 'Chartered Institute of Building'),
(96748, 80104, 'en', 'name', 'Chiayi Chang Gung Memorial Hospital'),
(96749, 80105, 'en', 'name', 'Nepal Academy of Science and Technology'),
(96750, 80106, 'de', 'name', 'Deutsches Historisches Institut Paris'),
(96751, 80106, 'en', 'name', 'German Historical Institute Paris'),
(96752, 80106, 'fr', 'name', 'Institut Historique Allemand'),
(96753, 80107, 'en', 'name', 'International Trade Administration'),
(96754, 80108, 'en', 'name', 'American Neurological Association'),
(96755, 80109, 'en', 'name', 'European Society of Intensive Care Medicine'),
(96756, 80109, 'fr', 'name', 'SociƩtƩ EuropƩenne de MƩdecine de Soins Intensifs'),
(96757, 80110, 'pl', 'name', 'Akademia Wychowania Fizycznego i Sportu im. Jędrzeja Śniadeckiego w Gdańsku'),
(96758, 80110, 'en', 'name', 'Gdansk University of Physical Education and Sport'),
(96759, 80111, 'en', 'name', 'Columbus State University'),
(96760, 80112, 'no_lang_code', 'name', 'AMAG Pharmaceuticals (United States)'),
(96761, 80113, 'en', 'name', 'Defense Security Cooperation Agency'),
(96762, 80114, 'en', 'name', 'Auburn University at Montgomery'),
(96763, 80115, 'no_lang_code', 'name', 'Acadia Pharmaceuticals (United States)'),
(96764, 80116, 'en', 'name', 'University Hospitals of Leicester NHS Trust'),
(96765, 80117, 'en', 'name', 'Atlantic States Marine Fisheries Commission'),
(96766, 80118, 'en', 'name', 'Central Research Institute for Dryland Agriculture'),
(96767, 80118, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¶ą„ą¤·ą„ą¤• ą¤­ą„‚ą¤®ą¤æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(96768, 80119, 'en', 'name', 'Orthopaedic Trauma Association'),
(96769, 80120, 'en', 'name', 'Xi''an University of Technology'),
(96770, 80120, 'zh', 'name', '脿安理巄大学'),
(96771, 80121, 'en', 'name', 'Ebonyi State University'),
(96772, 80121, 'yo', 'name', 'YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ įŗøĢ€bį»ĢnyƬ'),
(96773, 80122, 'en', 'name', 'Xinjiang Agricultural University'),
(96774, 80122, 'zh', 'name', 'ę–°ē–†å†œäøšå¤§å­¦'),
(96775, 80123, 'en', 'name', 'Association of Public and Land-grant Universities'),
(96776, 80124, 'en', 'name', 'English Institute of Sport'),
(96777, 80125, 'en', 'name', 'Avon Foundation for Women'),
(96778, 80126, 'es', 'name', 'Universidad Autónoma de la Ciudad de México'),
(96779, 80127, 'en', 'name', 'Egypt-Japan University of Science and Technology'),
(96780, 80127, 'ar', 'name', 'الجامعة Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ų§Ł„ŁŠŲ§ŲØŲ§Ł†ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ā€Ž'),
(96781, 80128, 'en', 'name', 'Oregon Nanoscience and Microtechnologies Institute'),
(96782, 80129, 'en', 'name', 'American Leprosy Missions'),
(96783, 80130, 'en', 'name', 'Pennsylvania Department of Agriculture'),
(96784, 80131, 'en', 'name', 'Heilongjiang Bayi Agricultural University'),
(96785, 80132, 'en', 'name', 'Nippon Dental University'),
(96786, 80132, 'ja', 'name', 'ę—„ęœ¬ę­Æē§‘å¤§å­¦'),
(96787, 80133, 'no_lang_code', 'name', 'Digital Preservation Coalition (United Kingdom)'),
(96788, 80134, 'es', 'name', 'Universidad de MedellĆ­n'),
(96789, 80135, 'en', 'name', 'Hubei Provincial Department of Education'),
(96790, 80136, 'no_lang_code', 'name', 'Cholangiocarcinoma Foundation'),
(96791, 80137, 'en', 'name', 'North American Society for Pediatric Gastroenterology, Hepatology, and Nutrition'),
(96792, 80138, 'en', 'name', 'Open University of Israel'),
(96793, 80139, 'en', 'name', 'Michigan Department of Natural Resources'),
(96794, 80140, 'en', 'name', 'Longhua Hospital Shanghai University of Traditional Chinese Medicine'),
(96795, 80140, 'zh', 'name', 'äøŠęµ·äø­åŒ»čÆå¤§å­¦é™„å±žé¾™åŽåŒ»é™¢'),
(96796, 80141, 'en', 'name', 'First Nations University of Canada'),
(96797, 80142, 'en', 'name', 'National Electronics and Computer Technology Center'),
(96798, 80143, 'en', 'name', 'Stanley Foundation'),
(96799, 80144, 'en', 'name', 'Ethiopian Public Health Association'),
(96800, 80145, 'en', 'name', 'Mount Kenya University'),
(96801, 80146, 'en', 'name', 'Guangxi Academy of Agricultural Science'),
(96802, 80146, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗå†œäøšē§‘å­¦é™¢'),
(96803, 80147, 'en', 'name', 'Mercer University'),
(96804, 80147, 'fr', 'name', 'UniversitƩ de Mercer'),
(96805, 80148, 'en', 'name', 'Illinois State Academy of Science'),
(96806, 80149, 'en', 'name', 'Dedan Kimathi University of Technology'),
(96807, 80150, 'en', 'name', 'Guizhou Institute of Technology'),
(96808, 80150, 'zh', 'name', 'č“µå·žē†å·„å­¦é™¢'),
(96809, 80151, 'en', 'name', 'University Hospitals Plymouth NHS Trust'),
(96810, 80152, 'en', 'name', 'Brain Injury Association of America'),
(96811, 80153, 'en', 'name', 'European Federation of Pharmaceutical Industries and Associations'),
(96812, 80154, 'en', 'name', 'University College London Hospitals NHS Foundation Trust'),
(96813, 80155, 'en', 'name', 'Dart Center for Journalism and Trauma'),
(96814, 80156, 'en', 'name', 'Tel Aviv Sourasky Medical Center'),
(96815, 80157, 'en', 'name', 'American Academy of Forensic Sciences'),
(96816, 80158, 'en', 'name', 'University of Shiga Prefecture'),
(96817, 80158, 'ja', 'name', 'ę»‹č³€ēœŒē«‹å¤§å­¦'),
(96818, 80159, 'en', 'name', 'Canadian Foundation for Pharmacy'),
(96819, 80160, 'en', 'name', 'African Population and Health Research Center'),
(96820, 80161, 'en', 'name', 'Indraprastha Institute of Information Technology Delhi'),
(96821, 80161, 'ur', 'name', 'اندر پرستھ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ آف Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(96822, 80161, 'mr', 'name', 'ą¤‡ą¤‚ą¤¦ą„ą¤°ą¤Ŗą„ą¤°ą¤øą„ą¤„ ą¤®ą¤¾ą¤¹ą¤æą¤¤ą„€ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ -ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(96823, 80161, 'hi', 'name', 'ą¤‡ą¤‚ą¤¦ą„ą¤°ą¤Ŗą„ą¤°ą¤øą„ą¤„ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(96824, 80161, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦¦ą§ą¦°ą¦Ŗą§ą¦°ą¦øą§ą¦„ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ ą¦¤ą¦„ą§ą¦Æ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ -ą¦¦ą¦æą¦²ą§ą¦²ą¦æ'),
(96825, 80161, 'pa', 'name', 'ąØ‡ą©°ąØ¦ąØ°ąØŖą©ąØ°ąØøąØ„ ąØœąØ¾ąØ£ąØ•ąØ¾ąØ°ą©€ ąØ¤ąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ąØ‡ą©°ąØøąØŸą©€ąØšąØæąØŠąØŸ - ਦਿੱਲੀ '''),
(96826, 80161, 'gu', 'name', 'ąŖˆąŖØą«ąŖ¦ą«ąŖ°ąŖŖą«ąŖ°ąŖøą«ąŖ„ માહિતી ąŖŸą«‡ąŖ•ąŖØą«‹ąŖ²ą«‹ąŖœą«€ ąŖøąŖ‚ąŖøą«ąŖ„ąŖ¾ - ąŖ¦ąŖæąŖ²ą«ąŖ¹ą«€'),
(96827, 80161, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®°ą®Ŗą®æą®°ą®øąÆą®¤ą®¾ ą®¤ą®•ą®µą®²ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(96828, 80161, 'te', 'name', 'ą°‡ą°‚ą°¦ą±ą°°ą°Ŗą±ą°°ą°øą±ą°„ ą°‡ą°Øą±ą°«ą°°ą±ą°®ą±‡ą°·ą°Øą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± - ą°¢ą°æą°²ą±ą°²ą±€'),
(96829, 80161, 'kn', 'name', 'ą²‡ą²‚ą²¦ą³ą²°ą²Ŗą³ą²°ą²øą³ą²„ ಮಾಹಿತಿ ą²¤ą²‚ą²¤ą³ą²°ą²œą³ą²žą²¾ą²Ø ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ - ದೆಹಲಿ'),
(96830, 80161, 'ml', 'name', 'ą“‡ą“Øąµą“¦ąµą“°ą“Ŗąµą“°ą“øąµą“„ ą“µą“æą“µą“° ą“øą“¾ą“™ąµą“•ąµ‡ą“¤ą“æą“• ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ - ą“”ąµ†ąµ½ą“¹ą“æ'),
(96831, 80162, 'en', 'name', 'Great Lakes Adaptive Sports Association'),
(96832, 80163, 'en', 'name', 'American Astronomical Society'),
(96833, 80164, 'en', 'name', 'Society for Mathematical Biology'),
(96834, 80165, 'en', 'name', 'Alabama Department of Conservation and Natural Resources'),
(96835, 80166, 'en', 'name', 'Northern Ontario Academic Medicine Association'),
(96836, 80167, 'en', 'name', 'Association of Southeast Asian Nations'),
(96837, 80168, 'en', 'name', 'Pacific Institute for Climate Solutions'),
(96838, 80169, 'en', 'name', 'Economic Research Service'),
(96839, 80170, 'en', 'name', 'Patty Brisben Foundation for Women’s Sexual Health'),
(96840, 80171, 'en', 'name', 'Al-Hussein Bin Talal University'),
(96841, 80171, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­Ų³ŁŠŁ† بن طلال'),
(96842, 80172, 'en', 'name', 'American College of Preventive Medicine'),
(96843, 80173, 'en', 'name', 'Hope International University'),
(96844, 80174, 'en', 'name', 'Virginia Academy of Science'),
(96845, 80175, 'no_lang_code', 'name', 'Quest Diagnostics (United States)'),
(96846, 80176, 'en', 'name', 'Harvard Stem Cell Institute'),
(96847, 80177, 'en', 'name', 'Drug Policy Alliance'),
(96848, 80178, 'en', 'name', 'Cleveland Museum of Natural History'),
(96849, 80179, 'it', 'name', 'Istituto Oncologico Veneto'),
(96850, 80179, 'en', 'name', 'Veneto Institute of Oncology'),
(96851, 80180, 'en', 'name', 'Indian Institute of Science Education and Research Mohali'),
(96852, 80181, 'en', 'name', 'American Society for Biochemistry and Molecular Biology'),
(96853, 80182, 'no_lang_code', 'name', 'Atara Biotherapeutics (United States)'),
(96854, 80183, 'fr', 'name', 'Association des bibliothĆØques de recherche du canada'),
(96855, 80183, 'en', 'name', 'Canadian Association of Research Libraries'),
(96856, 80184, 'en', 'name', 'MIREA - Russian Technological University'),
(96857, 80184, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ раГиотехники'),
(96858, 80185, 'en', 'name', 'Antibiotic Research UK'),
(96859, 80186, 'en', 'name', 'Canadian Nutrition Society'),
(96860, 80187, 'en', 'name', 'ZheJiang Academy of Agricultural Sciences'),
(96861, 80187, 'zh', 'name', 'ęµ™ę±Ÿēœå†œäøšē§‘å­¦é™¢'),
(96862, 80188, 'no_lang_code', 'name', 'China Three Gorges Corporation (China)'),
(96863, 80188, 'zh', 'name', 'äø­å›½é•æę±Ÿäø‰å³”é›†å›¢å…¬åø'),
(96864, 80189, 'en', 'name', 'Hamaguchi Foundation for the Advancement of Biochemistry'),
(96865, 80189, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęæ±å£ē”ŸåŒ–å­¦ęŒÆčˆˆč²”å›£'),
(96866, 80190, 'en', 'name', 'Farm Service Agency'),
(96867, 80191, 'en', 'name', 'University of Engineering and Technology Lahore'),
(96868, 80191, 'ur', 'name', 'جامعہ ŪŁ†ŲÆŲ³ŪŒŲ§ŲŖ و طرزیات، Ł„Ų§ŪŁˆŲ±'),
(96869, 80192, 'en', 'name', 'Academy of Neuroscience for Architecture'),
(96870, 80193, 'en', 'name', 'Pacific National University'),
(96871, 80193, 'ru', 'name', 'Тихоокеанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(96872, 80194, 'en', 'name', 'Radiation Research Society'),
(96873, 80195, 'en', 'name', 'China National Space Administration'),
(96874, 80195, 'zh', 'name', 'å›½å®¶čˆŖå¤©å±€'),
(96875, 80196, 'no_lang_code', 'name', 'Hellenic Atherosclerosis Society'),
(96876, 80197, 'en', 'name', 'Agriculture Victoria'),
(96877, 80198, 'en', 'name', 'China National Center for Food Safety Risk Assessment'),
(96878, 80198, 'zh', 'name', 'å›½å®¶é£Ÿå“å®‰å…Øé£Žé™©čÆ„ä¼°äø­åæƒ'),
(96879, 80199, 'en', 'name', 'University of New Orleans'),
(96880, 80199, 'fr', 'name', 'UniversitƩ de la nouvelle-orlƩans'),
(96881, 80200, 'en', 'name', 'National Speleological Society'),
(96882, 80201, 'en', 'name', 'National Centre for Biological Sciences'),
(96883, 80201, 'kn', 'name', 'ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ą²œą³€ą²µ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²•ą³†ą³•ą²‚ą²¦ą³ą²°'),
(96884, 80202, 'en', 'name', 'Hebei University of Chinese Medicine'),
(96885, 80203, 'de', 'name', 'Deutsche Gesellschaft für Zahn-, Mund- und Kieferheilkunde'),
(96886, 80204, 'no_lang_code', 'name', 'Infineon Technologies (Germany)'),
(96887, 80205, 'en', 'name', 'National Health Laboratory Service'),
(96888, 80206, 'en', 'name', 'Missouri State University'),
(96889, 80206, 'fr', 'name', 'UniversitĆ© d''Ɖtat du missouri'),
(96890, 80207, 'en', 'name', 'Shanghai Chest Hospital'),
(96891, 80208, 'en', 'name', 'Naval University of Engineering'),
(96892, 80208, 'zh', 'name', '中国人民解放军海军巄程大学'),
(96893, 80209, 'en', 'name', 'Adekunle Ajasin University'),
(96894, 80210, 'en', 'name', 'Woodland Trust'),
(96895, 80211, 'en', 'name', 'Nottingham University Hospitals NHS Trust'),
(96896, 80212, 'fr', 'name', 'Agence RƩgionale de SantƩ Ile-de-France'),
(96897, 80213, 'en', 'name', 'Loyola University New Orleans'),
(96898, 80213, 'es', 'name', 'Universidad Loyola Nueva Orleans'),
(96899, 80214, 'en', 'name', 'Guangdong Industry Technical College'),
(96900, 80214, 'zh', 'name', 'å¹æäøœč½»å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(96901, 80215, 'en', 'name', 'Great Lakes Bioenergy Research Center'),
(96902, 80216, 'en', 'name', 'University of Tennessee at Chattanooga'),
(96903, 80216, 'fr', 'name', 'UniversitƩ du tennessee Ơ chattanooga'),
(96904, 80217, 'en', 'name', 'A.T. Still University'),
(96905, 80218, 'en', 'name', 'Biomedical Advanced Research and Development Authority'),
(96906, 80219, 'en', 'name', 'Seafish'),
(96907, 80220, 'en', 'name', 'Exxon Valdez Oil Spill Trustee Council'),
(96908, 80221, 'en', 'name', 'Department of Industrial Technology'),
(96909, 80222, 'en', 'name', 'Hercules Foundation'),
(96910, 80223, 'fr', 'name', 'Association FranƧaise du Syndrome d''Ondine'),
(96911, 80224, 'en', 'name', 'Birmingham Women’s and Children’s NHS Foundation Trust'),
(96912, 80225, 'en', 'name', 'Golpayegan University of Engineering'),
(96913, 80225, 'fa', 'name', 'دانؓکده ŁŁ†ŪŒ و Ł…Ł‡Ł†ŲÆŲ³ŪŒ ŚÆŁ„Ł¾Ų§ŁŠŚÆŲ§Ł†'),
(96914, 80226, 'en', 'name', 'National Nanotechnology Center'),
(96915, 80226, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œąø™ąø²ą¹‚ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(96916, 80227, 'it', 'name', 'Istituto Nazionale Tumori IRCCS "Fondazione G. Pascale"'),
(96917, 80228, 'en', 'name', 'American Society of Cataract and Refractive Surgery'),
(96918, 80229, 'fr', 'name', 'Association Universitaire Canadienne d''Ɖtudes Nordiques'),
(96919, 80229, 'en', 'name', 'Association of Canadian Universities for Northern Studies'),
(96920, 80230, 'en', 'name', 'Baltimore City Health Department'),
(96921, 80231, 'en', 'name', 'Central Intelligence Agency'),
(96922, 80232, 'en', 'name', 'Foundation for Biomedical Research and Innovation'),
(96923, 80232, 'ja', 'name', 'å…ˆē«ÆåŒ»ē™‚ęŒÆčˆˆč²”å›£'),
(96924, 80233, 'en', 'name', 'Multimedia University'),
(96925, 80233, 'th', 'name', 'ดหาวณทยาคัยดัคตณดีเดีย'),
(96926, 80234, 'en', 'name', 'Nagoya City University'),
(96927, 80234, 'ja', 'name', 'åå¤å±‹åø‚ē«‹å¤§å­¦'),
(96928, 80235, 'en', 'name', 'Chengdu Medical College'),
(96929, 80235, 'zh', 'name', 'ęˆéƒ½åŒ»å­¦é™¢'),
(96930, 80236, 'en', 'name', 'Advantage West Midlands'),
(96931, 80237, 'en', 'name', 'Al Jalila Foundation'),
(96932, 80238, 'en', 'name', 'Harbin Science and Technology Bureau'),
(96933, 80239, 'no_lang_code', 'name', 'Gustavus Adolphus College'),
(96934, 80240, 'en', 'name', 'Australian College of Optometry'),
(96935, 80241, 'en', 'name', 'American Laryngological Association'),
(96936, 80242, 'en', 'name', 'Macular Society'),
(96937, 80243, 'en', 'name', 'Royal Meteorological Society'),
(96938, 80244, 'no_lang_code', 'name', 'Guru Nanak Dev University'),
(96939, 80244, 'pa', 'name', 'ਗੁਰੂ ਨਾਨਕ ਦੇਵ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(96940, 80245, 'en', 'name', 'Association of Teacher Educators'),
(96941, 80246, 'en', 'name', 'Canadian Orthopaedic Foundation'),
(96942, 80247, 'en', 'name', 'American Holistic Nurses Association'),
(96943, 80248, 'en', 'name', 'Alaska Pacific University'),
(96944, 80249, 'no_lang_code', 'name', 'Arog Pharmaceuticals (United States)'),
(96945, 80250, 'en', 'name', 'China Women''s University'),
(96946, 80250, 'zh', 'name', 'äø­åŽå„³å­å­¦é™¢'),
(96947, 80251, 'fr', 'name', 'Cancer de l''Ovaire Canada'),
(96948, 80251, 'en', 'name', 'Ovarian Cancer Canada'),
(96949, 80252, 'en', 'name', 'Charotar University of Science and Technology'),
(96950, 80252, 'gu', 'name', 'ąŖšąŖ°ą«‹ąŖ¤ąŖ° ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸąŖæ ąŖ“ąŖ« ąŖøąŖ¾ąŖÆąŖØą«ąŖø ąŖąŖØą«ąŖ” ąŖŸą«‡ąŖ•ą«ąŖØą«‰ąŖ²ą«‹ąŖœą«€'),
(96951, 80253, 'en', 'name', 'American College of Medical Toxicology'),
(96952, 80254, 'en', 'name', 'Ohio Supercomputer Center'),
(96953, 80255, 'en', 'name', 'King''s College Hospital NHS Foundation Trust'),
(96954, 80256, 'en', 'name', 'Zaozhuang University'),
(96955, 80257, 'en', 'name', 'Indiana Department of Natural Resources'),
(96956, 80258, 'fr', 'name', 'Association des universitƩs indiennes'),
(96957, 80258, 'en', 'name', 'Association of Indian Universities'),
(96958, 80259, 'en', 'name', 'Colorado School of Public Health'),
(96959, 80260, 'en', 'name', 'Canadian Cardiovascular Society'),
(96960, 80261, 'en', 'name', 'European Academy of Dermatology and Venereology'),
(96961, 80262, 'en', 'name', 'Association of Nurses in AIDS Care'),
(96962, 80263, 'en', 'name', 'Center for Construction Research and Training'),
(96963, 80264, 'fr', 'name', 'Conseil RƩgional de Lorraine'),
(96964, 80265, 'en', 'name', 'Hydrocephalus Association'),
(96965, 80266, 'en', 'name', 'Guangzhou University of Chinese Medicine'),
(96966, 80266, 'zh', 'name', 'å¹æå·žäø­åŒ»čÆå¤§å­¦'),
(96967, 80267, 'en', 'name', 'Oklahoma Department of Wildlife Conservation'),
(96968, 80268, 'en', 'name', 'Chiang Rai Rajabhat University'),
(96969, 80268, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąøŠąøµąø¢ąø‡ąø£ąø²ąø¢'),
(96970, 80269, 'en', 'name', 'Hubei Academy of Agricultural Sciences'),
(96971, 80269, 'zh', 'name', 'ę¹–åŒ—ēœå†œäøšē§‘å­¦é™¢'),
(96972, 80270, 'en', 'name', 'University of Hafr Al-Batin'),
(96973, 80270, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© حفرالباطن'),
(96974, 80271, 'en', 'name', 'Southwest Hospital'),
(96975, 80271, 'zh', 'name', 'č„æå—åŒ»é™¢'),
(96976, 80272, 'en', 'name', 'Asthma and Allergy Foundation of America'),
(96977, 80273, 'en', 'name', 'Chukyo University'),
(96978, 80273, 'ja', 'name', '中京大学'),
(96979, 80274, 'en', 'name', 'Lewis Clark State College'),
(96980, 80275, 'en', 'name', 'Department of National Parks Wildlife and Plant Conservation'),
(96981, 80275, 'th', 'name', 'ąøąø£ąø”ąø­ąøøąø—ąø¢ąø²ąø™ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“ ąøŖąø±ąø•ąø§ą¹Œąø›ą¹ˆąø² ą¹ąø„ąø°ąøžąø±ąø™ąø˜ąøøą¹Œąøžąø·ąøŠ'),
(96982, 80276, 'en', 'name', 'National Center of Neurology and Psychiatry'),
(96983, 80276, 'ja', 'name', 'ē„žēµŒē²¾ē„žåŒ»å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(96984, 80277, 'en', 'name', 'Mycological Society of America'),
(96985, 80278, 'en', 'name', 'North Carolina Academy of Science'),
(96986, 80279, 'en', 'name', 'Hvidovre Hospital'),
(96987, 80280, 'en', 'name', 'American Academy of Hospice and Palliative Medicine'),
(96988, 80281, 'en', 'name', 'Rotary Club of Eureka'),
(96989, 80282, 'en', 'name', 'University of Engineering and Technology Taxila'),
(96990, 80283, 'en', 'name', 'University of the Ryukyus'),
(96991, 80283, 'ja', 'name', 'ē‰ēƒå¤§å­¦'),
(96992, 80284, 'en', 'name', 'European Society of Radiology'),
(96993, 80285, 'en', 'name', 'Phase One Foundation'),
(96994, 80286, 'en', 'name', 'Missile Defense Agency'),
(96995, 80287, 'en', 'name', 'America''s Essential Hospitals'),
(96996, 80288, 'en', 'name', 'Thomas University'),
(96997, 80289, 'en', 'name', 'American Society for Investigative Pathology'),
(96998, 80290, 'en', 'name', 'American Association of Diabetes Educators'),
(96999, 80291, 'en', 'name', 'Mary M. Gooley Hemophilia Center'),
(97000, 80292, 'en', 'name', 'Interamerican Open University'),
(97001, 80292, 'es', 'name', 'Universidad Abierta Interamericana'),
(97002, 80293, 'en', 'name', 'Armed Forces Institute of Pathology'),
(97003, 80294, 'en', 'name', 'Risk Management Agency'),
(97004, 80295, 'en', 'name', 'Guizhou Academy of Agricultural Sciences'),
(97005, 80295, 'zh', 'name', 'č“µå·žēœå†œäøšē§‘å­¦é™¢'),
(97006, 80296, 'pt', 'name', 'Fundação de Empreendimentos Científicos e Tecnológicos'),
(97007, 80297, 'en', 'name', 'Hebei North University'),
(97008, 80297, 'zh', 'name', 'ę²³åŒ—åŒ—ę–¹å­¦é™¢'),
(97009, 80298, 'en', 'name', 'Huashan Hospital'),
(97010, 80299, 'no_lang_code', 'name', 'Five Prime Therapeutics (United States)'),
(97011, 80300, 'en', 'name', 'D. Mendeleyev University of Chemical Technology of Russia'),
(97012, 80300, 'ru', 'name', 'Российский химико-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. И. МенГелеева'),
(97013, 80301, 'en', 'name', 'New Mexico Academy of Science'),
(97014, 80302, 'en', 'name', 'Southern California Earthquake Center'),
(97015, 80303, 'en', 'name', 'PLA Information Engineering University'),
(97016, 80303, 'zh', 'name', '中国人民解放军俔息巄程大学'),
(97017, 80304, 'en', 'name', 'Hong Kong Society of Nephrology'),
(97018, 80305, 'en', 'name', 'Buffalo Bill Center of the West'),
(97019, 80306, 'en', 'name', 'Paleontological Society'),
(97020, 80307, 'en', 'name', 'Sense about Science'),
(97021, 80308, 'en', 'name', 'Fiji National University'),
(97022, 80309, 'en', 'name', 'Canadian Mennonite University'),
(97023, 80310, 'no_lang_code', 'name', 'Shandong Jiaotong University'),
(97024, 80311, 'en', 'name', 'Southwest Minnesota State University'),
(97025, 80312, 'en', 'name', 'Agricultural Marketing Service'),
(97026, 80313, 'en', 'name', 'American Iron and Steel Institute'),
(97027, 80314, 'en', 'name', 'Geriatric Research Education and Clinical Center'),
(97028, 80315, 'en', 'name', 'European Crohn''s and Colitis Organisation'),
(97029, 80316, 'en', 'name', 'California Botanical Society'),
(97030, 80317, 'en', 'name', 'Idaho State Board of Education'),
(97031, 80318, 'fr', 'name', 'L’Agence Nationale pour l’amĆ©lioration des Conditions de Travail'),
(97032, 80319, 'en', 'name', 'Grove City College'),
(97033, 80320, 'no_lang_code', 'name', 'Arrien Pharmaceuticals (United States)'),
(97034, 80321, 'en', 'name', 'American Society for Legal History'),
(97035, 80322, 'en', 'name', 'Canadian Forest Service'),
(97036, 80323, 'en', 'name', 'Dr. Ram Manohar Lohia Institute of Medical Sciences'),
(97037, 80324, 'en', 'name', 'Beijing Institute of Fashion Technology'),
(97038, 80324, 'zh', 'name', 'åŒ—äŗ¬ęœč£…å­¦é™¢'),
(97039, 80325, 'en', 'name', 'Persistent Systems (India)'),
(97040, 80326, 'no_lang_code', 'name', 'Aichi Gakuin University'),
(97041, 80326, 'ja', 'name', 'ę„›ēŸ„å­¦é™¢å¤§å­¦'),
(97042, 80327, 'en', 'name', 'Japan Brain Foundation'),
(97043, 80328, 'en', 'name', 'Kobe Pharmaceutical University'),
(97044, 80328, 'ja', 'name', 'ē„žęˆøč–¬ē§‘å¤§å­¦'),
(97045, 80329, 'no_lang_code', 'name', 'Cardiovascular Systems (United States)'),
(97046, 80330, 'en', 'name', 'Society for the Study of Amphibians and Reptiles'),
(97047, 80331, 'en', 'name', 'Kemmons Wilson Family Foundation'),
(97048, 80332, 'en', 'name', 'IITB-Monash Research Academy'),
(97049, 80333, 'en', 'name', 'Al-Zaytoonah University of Jordan'),
(97050, 80333, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų© Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(97051, 80334, 'en', 'name', 'Henan Institute of Science and Technology'),
(97052, 80335, 'en', 'name', 'Beijing Institute of Graphic Communication'),
(97053, 80335, 'zh', 'name', 'åŒ—äŗ¬å°åˆ·å­¦é™¢'),
(97054, 80336, 'en', 'name', 'Directorate General for Communications Networks, Content and Technology'),
(97055, 80336, 'nl', 'name', 'Kommunikationsnetze, Inhalte und Technologien'),
(97056, 80336, 'fr', 'name', 'RƩseaux de communication, contenu et technologies'),
(97057, 80337, 'en', 'name', 'Foundation for Promotion of Material Science and Technology of Japan'),
(97058, 80337, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗęę–™ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(97059, 80338, 'en', 'name', 'Society for Visual Anthropology'),
(97060, 80339, 'en', 'name', 'Washington State University Vancouver'),
(97061, 80340, 'en', 'name', 'Georgetown-Howard Universities Center for Clinical and Translational Science'),
(97062, 80341, 'en', 'name', 'Federal Transit Administration'),
(97063, 80342, 'en', 'name', 'HCA International Foundation'),
(97064, 80343, 'en', 'name', 'Indira Gandhi Centre for Atomic Research'),
(97065, 80343, 'mr', 'name', 'इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤…ą¤£ą„ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(97066, 80343, 'hi', 'name', 'इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(97067, 80343, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®°ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ அணு ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ąÆˆą®Æą®®ąÆ'),
(97068, 80344, 'no_lang_code', 'name', 'Nisshin Seifun Group (Japan)'),
(97069, 80344, 'ja', 'name', 'ę—„ęø…č£½ē²‰ć‚°ćƒ«ćƒ¼ćƒ—ęœ¬ē¤¾'),
(97070, 80345, 'en', 'name', 'National University of Ireland'),
(97071, 80345, 'ga', 'name', 'Ollscoil na hƉireann'),
(97072, 80346, 'en', 'name', 'Alliance Healthcare Foundation'),
(97073, 80347, 'en', 'name', 'Cape Breton University'),
(97074, 80347, 'fr', 'name', 'UniversitƩ du cap-breton'),
(97075, 80348, 'en', 'name', 'Safe Work Australia'),
(97076, 80349, 'en', 'name', 'Persian Gulf University'),
(97077, 80349, 'fa', 'name', 'دانؓگاه Ų®Ł„ŪŒŲ¬ فارس'),
(97078, 80350, 'en', 'name', 'Dystonia Medical Research Foundation Canada'),
(97079, 80350, 'fr', 'name', 'Fondation de Recherche MƩdicale sur la Dystonie'),
(97080, 80351, 'en', 'name', 'Genetics Society of America'),
(97081, 80352, 'en', 'name', 'British Pain Society'),
(97082, 80353, 'en', 'name', 'Animal and Plant Quarantine Agency'),
(97083, 80354, 'en', 'name', 'Chongqing University of Science and Technology'),
(97084, 80354, 'zh', 'name', 'é‡åŗ†ē§‘ęŠ€å­¦é™¢'),
(97085, 80355, 'en', 'name', 'Islamic Azad University Sanandaj Branch'),
(97086, 80355, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سنندج'),
(97087, 80356, 'en', 'name', 'European Atherosclerosis Society'),
(97088, 80357, 'en', 'name', 'Childhood Eye Cancer Trust'),
(97089, 80358, 'en', 'name', 'Museums Galleries Scotland'),
(97090, 80359, 'en', 'name', 'Guangzhou First People''s Hospital'),
(97091, 80359, 'zh', 'name', 'å¹æå·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(97092, 80360, 'no_lang_code', 'name', 'PTT Public Company Limited (Thailand)'),
(97093, 80360, 'th', 'name', 'ปตท'),
(97094, 80361, 'no_lang_code', 'name', 'Arbor Pharmaceuticals (United States)'),
(97095, 80362, 'en', 'name', 'Mansoura University'),
(97096, 80362, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŲµŁˆŲ±Ų©'),
(97097, 80363, 'en', 'name', 'United Soybean Board'),
(97098, 80364, 'en', 'name', 'Reflex Sympathetic Dystrophy Syndrome Association'),
(97099, 80365, 'en', 'name', 'Chinese Academy of Geological Sciences'),
(97100, 80365, 'zh', 'name', 'äø­å›½åœ°č“Øē§‘å­¦é™¢'),
(97101, 80366, 'en', 'name', 'National AIDS Control Organisation'),
(97102, 80366, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤ą¤”ą„ą¤ø ą¤Øą¤æą¤Æą¤‚ą¤¤ą„ą¤°ą¤£ संगठन'),
(97103, 80367, 'en', 'name', 'Universities Space Research Association'),
(97104, 80368, 'fr', 'name', 'Association canadienne de l''ƩlectricitƩ'),
(97105, 80368, 'en', 'name', 'Canadian Electricity Association'),
(97106, 80369, 'en', 'name', 'Annenberg Foundation'),
(97107, 80370, 'en', 'name', 'Florida Institute of Technology'),
(97108, 80370, 'fr', 'name', 'Institut Technologique de Floride'),
(97109, 80371, 'fr', 'name', 'Office National de la Chasse et de la Faune Sauvage'),
(97110, 80372, 'fr', 'name', 'RƩseau de Cellules Souches'),
(97111, 80372, 'en', 'name', 'Stem Cell Network'),
(97112, 80373, 'en', 'name', 'Beirut Arab University'),
(97113, 80373, 'fr', 'name', 'UniversitƩ arabe de beyrouth'),
(97114, 80373, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بيروت Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(97115, 80374, 'en', 'name', 'ClimateWorks Foundation'),
(97116, 80375, 'no_lang_code', 'name', 'Aaniiih Nakoda College'),
(97117, 80376, 'en', 'name', 'Buck Institute for Research on Aging'),
(97118, 80377, 'tl', 'name', 'Pamantasan ng Silangan'),
(97119, 80377, 'en', 'name', 'University of the East'),
(97120, 80378, 'en', 'name', 'Centre for International Governance Innovation'),
(97121, 80379, 'en', 'name', 'Northeast Ohio Medical University'),
(97122, 80380, 'no_lang_code', 'name', 'Adamas Pharmaceuticals (United States)'),
(97123, 80381, 'en', 'name', 'Domestic Nuclear Detection Office'),
(97124, 80382, 'en', 'name', 'American Headache Society'),
(97125, 80383, 'no_lang_code', 'name', 'Sage Therapeutics (United States)'),
(97126, 80384, 'en', 'name', 'Hellenic Health Foundation'),
(97127, 80384, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ΄γείας'),
(97128, 80385, 'no_lang_code', 'name', 'Walailak University'),
(97129, 80385, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø§ąø„ąø±ąø¢ąø„ąø±ąøąø©ąø“ą¹Œ'),
(97130, 80386, 'en', 'name', 'Iowa Department of Natural Resources'),
(97131, 80387, 'en', 'name', 'Blond McIndoe Research Foundation'),
(97132, 80388, 'en', 'name', 'Hood College'),
(97133, 80389, 'en', 'name', 'Neijiang Normal University'),
(97134, 80389, 'zh', 'name', 'å†…ę±ŸåøˆčŒƒå­¦é™¢'),
(97135, 80390, 'en', 'name', 'Hawaii Medical Service Association'),
(97136, 80391, 'en', 'name', 'European Rhinologic Society'),
(97137, 80392, 'en', 'name', 'Northland Polytechnic'),
(97138, 80393, 'es', 'name', 'Centro Atómico Constituyentes'),
(97139, 80394, 'pt', 'name', 'Universidade Estadual de Alagoas'),
(97140, 80395, 'en', 'name', 'Borno State University'),
(97141, 80396, 'en', 'name', 'University of Batna 1'),
(97142, 80396, 'fr', 'name', 'UniversitƩ de Batna 1'),
(97143, 80396, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© باتنة 1 الحاج لخضر'),
(97144, 80397, 'en', 'name', 'Flatiron Institute'),
(97145, 80398, 'en', 'name', 'Erasmus MC Cancer Institute'),
(97146, 80398, 'nl', 'name', 'Erasmus MC Kanker Instituut'),
(97147, 80399, 'pt', 'name', 'Hospital SĆ£o Paulo'),
(97148, 80400, 'en', 'name', 'Ho Chi Minh City Institute of Physics'),
(97149, 80400, 'vi', 'name', 'Trung tĆ¢m Vįŗ­t lý tįŗ”i ThĆ nh phố Hồ ChĆ­ Minh'),
(97150, 80401, 'en', 'name', 'Turkana University College'),
(97151, 80402, 'en', 'name', 'Virginia Institute of Marine Science'),
(97152, 80403, 'en', 'name', 'Laser Fusion Research Center'),
(97153, 80403, 'zh', 'name', 'ęæ€å…‰čšå˜ē ”ē©¶äø­åæƒ'),
(97154, 80404, 'en', 'name', 'Edith Cowan University'),
(97155, 80405, 'en', 'name', 'Research Society on Marijuana'),
(97156, 80406, 'en', 'name', 'Soreq Nuclear Research Center'),
(97157, 80406, 'he', 'name', '×”×ž×Ø×›×– ×œ×ž×—×§×Ø גרעיני שורק'),
(97158, 80407, 'en', 'name', 'RIKEN Center for Quantum Computing'),
(97159, 80407, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ é‡å­ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(97160, 80408, 'pt', 'name', 'Centro UniversitƔrio UniProcessus'),
(97161, 80409, 'no_lang_code', 'name', 'QunaSys'),
(97162, 80410, 'de', 'name', 'Allgemeiner Deutscher Hochschulsportverband'),
(97163, 80410, 'en', 'name', 'German University Sports Federation'),
(97164, 80411, 'no_lang_code', 'name', 'EPC Natural Products'),
(97165, 80411, 'zh', 'name', 'ä¼ŠęÆ”č„æę¤ē‰©čÆē‰©ęŠ€ęœÆęœ‰é™å…¬åø'),
(97166, 80412, 'en', 'name', 'Hunan Railway Professional Technology College'),
(97167, 80412, 'zh', 'name', 'ę¹–å—é“é“čŒäøšęŠ€ęœÆå­¦é™¢'),
(97168, 80413, 'en', 'name', 'Erasmus MC Transplant Institute'),
(97169, 80413, 'nl', 'name', 'Erasmus MC Transplantatie Instituut'),
(97170, 80414, 'no_lang_code', 'name', 'Betasciencepress Publishing'),
(97171, 80415, 'de', 'name', 'Max-Planck-Institut für Kohlenforschung'),
(97172, 80416, 'pt', 'name', 'Universidade Federal do Norte do Tocantins'),
(97173, 80417, 'en', 'name', 'Study World College of Engineering'),
(97174, 80418, 'en', 'name', 'Gothenburg Botanic Garden'),
(97175, 80418, 'sv', 'name', 'Gƶteborgs Botaniska TrƤdgƄrd'),
(97176, 80419, 'de', 'name', 'Schilddrüsenpraxis Josefstadt'),
(97177, 80420, 'fr', 'name', 'KƩlonia'),
(97178, 80421, 'de', 'name', 'Gƶttlicher Heiland Krankenhaus Wien'),
(97179, 80422, 'en', 'name', 'Te Pūkenga'),
(97180, 80423, 'en', 'name', 'Adolescent Health Clinic'),
(97181, 80424, 'en', 'name', 'Institute of Fluid Physics'),
(97182, 80424, 'zh', 'name', '流体物理研究所'),
(97183, 80425, 'pt', 'name', 'Universidade Federal do Delta do ParnaĆ­ba'),
(97184, 80426, 'en', 'name', 'Hamburg Centre for Ultrafast Imaging'),
(97185, 80427, 'en', 'name', 'Tai Poutini Polytechnic'),
(97186, 80428, 'en', 'name', 'Erasmus MC - Sophia Children’s Hospital'),
(97187, 80429, 'en', 'name', 'Virginia Sea Grant'),
(97188, 80430, 'en', 'name', 'Catholic University of Uruguay'),
(97189, 80430, 'es', 'name', 'Universidad Católica del Uruguay'),
(97190, 80431, 'no_lang_code', 'name', 'Toshiba (Japan)'),
(97191, 80431, 'ja', 'name', 'ę±čŠ'),
(97192, 80432, 'en', 'name', 'Japan Coast Guard'),
(97193, 80432, 'ja', 'name', 'ęµ·äøŠäæå®‰åŗ'),
(97194, 80433, 'en', 'name', 'Institute of Biostructure and Bioimaging'),
(97195, 80433, 'it', 'name', 'Istituto di Biostrutture e Bioimmagini'),
(97196, 80434, 'en', 'name', 'Children’s Minnesota - St. Paul Hospital'),
(97197, 80435, 'no_lang_code', 'name', 'ADx NeuroSciences'),
(97198, 80436, 'en', 'name', 'Barasat Government College'),
(97199, 80437, 'en', 'name', 'Western Institute of Technology at Taranaki'),
(97200, 80438, 'de', 'name', 'Gesellschaft zur Fƶrderung Kynologischer Forschung'),
(97201, 80439, 'en', 'name', 'Graphic Era Hill University'),
(97202, 80440, 'en', 'name', 'European Laboratory for Non-Linear Spectroscopy'),
(97203, 80440, 'it', 'name', 'Laboratorio europeo di spettroscopia non lineare'),
(97204, 80441, 'en', 'name', 'National Meteorological Service'),
(97205, 80441, 'es', 'name', 'Servicio Meteorológico Nacional'),
(97206, 80442, 'sq', 'name', 'Akademia e Studimeve Albanologjike'),
(97207, 80443, 'en', 'name', 'ESME - School of Engineering'),
(97208, 80443, 'fr', 'name', 'ESME - Ɖcole d’ingĆ©nieurs pluridisciplinaires'),
(97209, 80444, 'en', 'name', 'Jagiellonian College'),
(97210, 80444, 'pl', 'name', 'Kolegium Jagiellońskie Toruńskiej Szkoły Wyższej'),
(97211, 80444, 'cs', 'name', 'VysokĆ” Å”kola JagiellońskĆ” v Toruni'),
(97212, 80445, 'en', 'name', 'Ministry of Land, Infrastructure, Transport and Tourism'),
(97213, 80445, 'ja', 'name', 'å›½åœŸäŗ¤é€šēœ'),
(97214, 80446, 'en', 'name', 'Japan Coast Guard Academy'),
(97215, 80446, 'ja', 'name', 'ęµ·äøŠäæå®‰å¤§å­¦ę ”'),
(97216, 80447, 'en', 'name', 'Clinical Physiology Institute'),
(97217, 80447, 'it', 'name', 'Istituto di Fisiologia Clinica'),
(97218, 80448, 'en', 'name', 'Alex Ekwueme Federal University, Ndufu-Alike'),
(97219, 80449, 'en', 'name', 'Whitireia New Zealand'),
(97220, 80450, 'es', 'name', 'Asociación científica ICONO 14'),
(97221, 80450, 'en', 'name', 'Scientific Association ICONO 14'),
(97222, 80451, 'no_lang_code', 'name', 'Yu Jun Biotechnology'),
(97223, 80451, 'zh', 'name', 'č£•é›‹ē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(97224, 80452, 'en', 'name', 'Comprehensive Research Organization for Science and Society'),
(97225, 80452, 'ja', 'name', 'ē·åˆē§‘å­¦ē ”ē©¶ę©Ÿę§‹'),
(97226, 80453, 'fr', 'name', 'Centre RĆ©gional des MĆ©tiers de l''Ɖducation et de la Formation Casablanca-Settat'),
(97227, 80453, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ł‡ŁˆŁŠ لمهن Ų§Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŁƒŁˆŁŠŁ† لجهة الدار Ų§Ł„ŲØŁŠŲ¶Ų§Ų” Ų³Ų·Ų§ŲŖ'),
(97228, 80454, 'en', 'name', 'Shimon Peres Negev Nuclear Research Center'),
(97229, 80454, 'he', 'name', 'קריה ×œ×ž×—×§×Ø גרעיני – נגב ×¢"ש שמעון פרה'),
(97230, 80455, 'en', 'name', 'CROSS Neutron Science and Technology Center'),
(97231, 80455, 'ja', 'name', 'CROSSäø­ę€§å­ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(97232, 80456, 'no_lang_code', 'name', '1QBit'),
(97233, 80457, 'pt', 'name', 'Universidade Federal do Agreste de Pernambuco'),
(97234, 80458, 'de', 'name', 'Deutsche Gesellschaft für Ernährung'),
(97235, 80459, 'en', 'name', 'Nara Prefecture General Medical Center'),
(97236, 80459, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå„ˆč‰ÆēœŒē«‹ē—…é™¢ę©Ÿę§‹å„ˆč‰ÆēœŒē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(97237, 80460, 'en', 'name', 'Max Planck Institute for Security and Privacy'),
(97238, 80460, 'de', 'name', 'Max-Planck-Institut für Sicherheit und Privatsphäre'),
(97239, 80461, 'en', 'name', 'Templeton World Charity Foundation'),
(97240, 80462, 'ga', 'name', 'Tyndall InstitiĆŗid Naisiunta'),
(97241, 80462, 'en', 'name', 'Tyndall National Institute'),
(97242, 80463, 'en', 'name', 'Quantum University'),
(97243, 80464, 'en', 'name', 'Vel Tech Rangarajan Dr. Sagunthala R&D Institute of Science and Technology'),
(97244, 80465, 'de', 'name', 'St. Josef-Krankenhaus Wien'),
(97245, 80466, 'en', 'name', 'Bariloche Atomic Centre'),
(97246, 80466, 'es', 'name', 'Centro Atómico Bariloche'),
(97247, 80467, 'no_lang_code', 'name', 'Toshiba Nanoanalysis Corporation'),
(97248, 80467, 'ja', 'name', 'ę±čŠćƒŠćƒŽć‚¢ćƒŠćƒŖć‚·ć‚¹ę Ŗå¼ä¼šē¤¾'),
(97249, 80468, 'no_lang_code', 'name', 'Ulrich Medical (Germany)'),
(97250, 80469, 'en', 'name', 'Slovenian Forestry Institute'),
(97251, 80470, 'no', 'name', 'Klima- og miljĆødepartementet'),
(97252, 80470, 'en', 'name', 'Ministry of Climate and Environment'),
(97253, 80471, 'no_lang_code', 'name', 'Tokyo Electron (Japan)'),
(97254, 80471, 'ja', 'name', 'ę±äŗ¬ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ³'),
(97255, 80472, 'en', 'name', 'University College London Qatar'),
(97256, 80473, 'de', 'name', 'Institut für Weltwirtschaft'),
(97257, 80473, 'en', 'name', 'Kiel Institute for the World Economy'),
(97258, 80474, 'no_lang_code', 'name', 'Nutreco (Netherlands)'),
(97259, 80475, 'en', 'name', 'Central University of Ecuador'),
(97260, 80475, 'es', 'name', 'Universidad Central del Ecuador'),
(97261, 80476, 'lt', 'name', 'Lietuvos Respublikos žemės ūkio ministerija'),
(97262, 80476, 'en', 'name', 'Ministry of Agriculture of the Republic of Lithuania'),
(97263, 80477, 'en', 'name', 'The Trust for Public Land'),
(97264, 80478, 'no_lang_code', 'name', 'Myriad Genetics'),
(97265, 80479, 'en', 'name', 'National Medical Research Center of Cardiology'),
(97266, 80479, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠ«Š™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠ˜Š™ Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š¦Š•ŠŠ¢Š  ŠšŠŠ Š”Š˜ŠžŠ›ŠžŠ“Š˜Š˜ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(97267, 80480, 'en', 'name', 'Opole University of Technology'),
(97268, 80480, 'pl', 'name', 'Politechnika Opolska'),
(97269, 80481, 'en', 'name', 'Mercy Hospital and Medical Center'),
(97270, 80482, 'no_lang_code', 'name', 'XBiotech (United States)'),
(97271, 80483, 'no_lang_code', 'name', 'Faraday Technology (Taiwan)'),
(97272, 80483, 'zh', 'name', 'ę™ŗåŽŸē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(97273, 80484, 'no_lang_code', 'name', 'GC Europe (Belgium)'),
(97274, 80485, 'en', 'name', 'Parthenope University of Naples'),
(97275, 80485, 'it', 'name', 'UniversitĆ  degli Studi di Napoli Parthenope'),
(97276, 80485, 'fr', 'name', 'UniversitƩ de naples - parthƩnope'),
(97277, 80486, 'no_lang_code', 'name', 'Antares Pharma (United States)'),
(97278, 80487, 'no_lang_code', 'name', 'WƤrtsilƤ (Finland)'),
(97279, 80488, 'id', 'name', 'Universitas Pattimura'),
(97280, 80488, 'en', 'name', 'University of Pattimura'),
(97281, 80489, 'no', 'name', 'Diabetesforbundet'),
(97282, 80489, 'en', 'name', 'Norwegian Diabetes Association'),
(97283, 80490, 'no', 'name', 'Framsenteret'),
(97284, 80490, 'en', 'name', 'The FRAM Centre'),
(97285, 80491, 'id', 'name', 'Universitas Surabaya'),
(97286, 80491, 'en', 'name', 'University of Surabaya'),
(97287, 80492, 'en', 'name', 'Norwegian Public Roads Administration'),
(97288, 80493, 'no_lang_code', 'name', 'Alphora Research (Canada)'),
(97289, 80494, 'no_lang_code', 'name', 'Menarini Group (Germany)'),
(97290, 80495, 'en', 'name', 'Queen Elisabeth Medical Foundation'),
(97291, 80496, 'no_lang_code', 'name', 'Plastic Omnium (France)'),
(97292, 80497, 'no_lang_code', 'name', 'Allergan (United States)'),
(97293, 80498, 'no_lang_code', 'name', 'Aker Arctic (Finland)'),
(97294, 80499, 'no_lang_code', 'name', 'Seagate (United States)'),
(97295, 80500, 'en', 'name', 'The Turner Scientific Research Institute for Children''s Orthopedics'),
(97296, 80500, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Гетский ортопеГический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š“. И'),
(97297, 80501, 'no_lang_code', 'name', 'Plasmionique (Canada)'),
(97298, 80502, 'en', 'name', 'Gynecologic Oncology Group'),
(97299, 80503, 'en', 'name', 'Novosibirsk Scientific Research Institute of Traumatology and Orthopedics. Ya.L. Tsivyan'),
(97300, 80503, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии им. ŠÆ.Š›.Š¦ŠøŠ²ŃŒŃŠ½Š°'),
(97301, 80504, 'no_lang_code', 'name', 'RayBiotech (United States)'),
(97302, 80505, 'en', 'name', 'John H. Stroger, Jr. Hospital of Cook County'),
(97303, 80506, 'en', 'name', 'Nizhny Novgorod Federal Research Institute of Pediatric Gastroenterology'),
(97304, 80506, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ ŠŠ˜Š˜ Гетской Š³Š°ŃŃ‚Ń€Š¾ŃŠ½Ń‚ŠµŃ€Š¾Š»Š¾Š³ŠøŠø'),
(97305, 80507, 'no_lang_code', 'name', 'Cipla (India)'),
(97306, 80507, 'hi', 'name', 'ą¤øą¤æą¤Ŗą„ą¤²ą¤¾'),
(97307, 80507, 'ta', 'name', 'ą®šą®æą®ŖąÆą®²ą®¾'),
(97308, 80508, 'it', 'name', 'Libera UniversitĆ  Carlo Cattaneo'),
(97309, 80508, 'en', 'name', 'University Carlo Cattaneo'),
(97310, 80509, 'fr', 'name', 'Gouvernement wallon'),
(97311, 80509, 'en', 'name', 'Walloon Government'),
(97312, 80510, 'no_lang_code', 'name', 'Loxo Oncology at Lilly (United States)'),
(97313, 80511, 'no_lang_code', 'name', 'OrbusNeich (China)'),
(97314, 80512, 'no_lang_code', 'name', 'Fanuc (Japan)'),
(97315, 80512, 'ja', 'name', 'ćƒ•ć‚”ćƒŠćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(97316, 80513, 'de', 'name', 'Tiroler Zukunftsstiftung'),
(97317, 80514, 'en', 'name', 'Dehradun Institute of Technology University'),
(97318, 80514, 'hi', 'name', 'ą¤¦ą„‡ą¤¹ą¤°ą¤¾ą¤¦ą„‚ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(97319, 80515, 'fr', 'name', 'Ɖcole du Louvre'),
(97320, 80516, 'en', 'name', 'Xuzhou Medical College'),
(97321, 80516, 'zh', 'name', '徐州医学院'),
(97322, 80517, 'es', 'name', 'Centro Universitario Anglo Mexicano'),
(97323, 80518, 'no_lang_code', 'name', 'Dentsply Sirona (United States)'),
(97324, 80519, 'no_lang_code', 'name', 'ConvaTec (United Kingdom)'),
(97325, 80520, 'no_lang_code', 'name', 'CSL (Australia)'),
(97326, 80521, 'en', 'name', 'Research Institute of Emergency Childrens Surgery and Traumatology'),
(97327, 80521, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неотложной Гетской Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø Šø травматологии'),
(97328, 80522, 'no_lang_code', 'name', 'Zogenix (United States)'),
(97329, 80523, 'en', 'name', 'Canadian Respiratory Research Network'),
(97330, 80524, 'en', 'name', 'Federal University of Technology'),
(97331, 80525, 'no_lang_code', 'name', 'Inflarx (Germany)'),
(97332, 80526, 'en', 'name', 'Jesse Brown VA Medical Center'),
(97333, 80527, 'es', 'name', 'Instituto Tecnológico de Sonora'),
(97334, 80527, 'en', 'name', 'Sonora Institute of Technology'),
(97335, 80528, 'en', 'name', 'Institute of Technology and Business'),
(97336, 80528, 'sk', 'name', 'VysokÔ Ŕkola technickÔ a ekonomickÔ'),
(97337, 80528, 'ru', 'name', 'Техническо-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ в г. Чешские Š‘ŃƒŠ“ŠµŠ¹Š¾Š²ŠøŃ†Šµ'),
(97338, 80529, 'en', 'name', 'Nord University'),
(97339, 80530, 'en', 'name', 'Jiangsu University of Technology'),
(97340, 80530, 'zh', 'name', 'ę±Ÿč‹ē†å·„å­¦é™¢'),
(97341, 80531, 'en', 'name', 'St. Francis Hospital'),
(97342, 80532, 'no_lang_code', 'name', 'Oncovision (Spain)'),
(97343, 80533, 'no_lang_code', 'name', 'Volkswagen Group (Germany)'),
(97344, 80534, 'no_lang_code', 'name', 'Zinpro (United States)'),
(97345, 80535, 'hu', 'name', 'Soproni Egyetem'),
(97346, 80535, 'en', 'name', 'University of Sopron'),
(97347, 80536, 'no_lang_code', 'name', 'Promega (United States)'),
(97348, 80537, 'en', 'name', 'Advocate Illinois Masonic Medical Center'),
(97349, 80538, 'en', 'name', 'The Royal Free Hospital'),
(97350, 80539, 'no_lang_code', 'name', 'Nipro (Japan)'),
(97351, 80539, 'ja', 'name', 'ćƒ‹ćƒ—ćƒ­ę Ŗå¼ä¼šē¤¾'),
(97352, 80540, 'no_lang_code', 'name', 'Vetcare (Finland)'),
(97353, 80541, 'no_lang_code', 'name', 'MEI Pharma (United States)'),
(97354, 80542, 'es', 'name', 'Universidad de Monterrey'),
(97355, 80542, 'en', 'name', 'University of Monterrey'),
(97356, 80543, 'no_lang_code', 'name', 'Roivant Sciences (Switzerland)'),
(97357, 80544, 'en', 'name', 'Tra Vinh University'),
(97358, 80544, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c TrĆ  Vinh'),
(97359, 80545, 'no_lang_code', 'name', 'ESI Group (Czechia)'),
(97360, 80546, 'no_lang_code', 'name', 'Sysmex (Japan)'),
(97361, 80546, 'ja', 'name', 'ć‚·ć‚¹ćƒ”ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(97362, 80547, 'fr', 'name', 'L''Institut indo-canadien Shastri'),
(97363, 80547, 'en', 'name', 'Shastri Indo-Canadian Institute'),
(97364, 80548, 'en', 'name', 'Adventist Hinsdale Hospital'),
(97365, 80549, 'no_lang_code', 'name', 'Defence Materials Technology Centre (Australia)'),
(97366, 80550, 'no_lang_code', 'name', 'Regenxbio (United States)'),
(97367, 80551, 'no_lang_code', 'name', 'Nippon Kayaku (Japan)'),
(97368, 80551, 'ja', 'name', 'ę—„ęœ¬åŒ–č–¬ę Ŗå¼ä¼šē¤¾'),
(97369, 80552, 'no_lang_code', 'name', 'Thames Water (United Kingdom)'),
(97370, 80553, 'no_lang_code', 'name', 'Horizon Therapeutics (United States)'),
(97371, 80554, 'en', 'name', 'Edward Hines, Jr. VA Hospital'),
(97372, 80555, 'en', 'name', 'The Institute of Conservation'),
(97373, 80556, 'no_lang_code', 'name', 'Biogemma (France)'),
(97374, 80557, 'no_lang_code', 'name', 'NetApp (United States)'),
(97375, 80558, 'no_lang_code', 'name', 'Clovis Oncology (United States)'),
(97376, 80559, 'no_lang_code', 'name', 'Aurubis (Germany)'),
(97377, 80560, 'id', 'name', 'Kementerian Keuangan'),
(97378, 80560, 'en', 'name', 'Ministry of Finance'),
(97379, 80561, 'en', 'name', 'Finnish Cancer Registry'),
(97380, 80561, 'fi', 'name', 'Suomen SyƶpƤrekisteri'),
(97381, 80562, 'en', 'name', 'Mediterranean Universities Union'),
(97382, 80562, 'it', 'name', 'Unione delle UniversitĆ  del Mediterraneo'),
(97383, 80563, 'en', 'name', 'P.A. Hertzen Moscow Oncology Research Institute');
INSERT INTO `ror_settings` VALUES
(97384, 80563, 'ru', 'name', 'ŠœŠŠ˜ŠžŠ˜ им. П.А. Герцена - филиал ФГБУ Ā«ŠŠœŠ˜Š Š¦Ā» ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России'),
(97385, 80564, 'en', 'name', 'Muhammadiyah University of Surakarta'),
(97386, 80564, 'id', 'name', 'univerˈsitas muhamaˈdijah suraˈkarta'),
(97387, 80565, 'en', 'name', 'Nasional University'),
(97388, 80565, 'id', 'name', 'Universitas Nasional'),
(97389, 80566, 'en', 'name', 'Research Institute of Influenza'),
(97390, 80566, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гриппа ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(97391, 80567, 'no_lang_code', 'name', 'Braile BiomƩdica (Brazil)'),
(97392, 80568, 'no_lang_code', 'name', 'Iamgold (Canada)'),
(97393, 80569, 'fi', 'name', 'Norjan avaruuskeskus'),
(97394, 80569, 'en', 'name', 'Norwegian Space Agency'),
(97395, 80570, 'no_lang_code', 'name', 'Acumed (United States)'),
(97396, 80571, 'en', 'name', 'China Railway Corporation'),
(97397, 80571, 'zh', 'name', 'äø­å›½é“č·Æę€»å…¬åø'),
(97398, 80572, 'en', 'name', 'MacNeal Hospital'),
(97399, 80573, 'no_lang_code', 'name', 'Chimerix (United States)'),
(97400, 80574, 'no_lang_code', 'name', 'FLSmidth (Denmark)'),
(97401, 80575, 'no_lang_code', 'name', 'Bluebird Bio (United States)'),
(97402, 80576, 'en', 'name', 'Department of Home Affairs'),
(97403, 80577, 'no_lang_code', 'name', 'Kowa (Japan)'),
(97404, 80577, 'ja', 'name', 'čˆˆå’Œę Ŗå¼ä¼šē¤¾'),
(97405, 80578, 'en', 'name', 'Zabol University'),
(97406, 80578, 'fa', 'name', 'دانؓگاه Ų²Ų§ŲØŁ„'),
(97407, 80579, 'en', 'name', 'Melbourne Bioinformatics'),
(97408, 80580, 'en', 'name', 'Tennessee Higher Education Commission & Student Assistance Corporation'),
(97409, 80581, 'en', 'name', 'Autonomous University of Aguascalientes'),
(97410, 80581, 'es', 'name', 'Universidad Autónoma de Aguascalientes'),
(97411, 80582, 'no_lang_code', 'name', 'Naturex (France)'),
(97412, 80583, 'no_lang_code', 'name', 'Ignyta (United States)'),
(97413, 80584, 'es', 'name', 'Universidad del Tolima'),
(97414, 80584, 'en', 'name', 'University of Tolima'),
(97415, 80585, 'no_lang_code', 'name', 'Menarini Group (Italy)'),
(97416, 80586, 'en', 'name', 'Colt Foundation'),
(97417, 80587, 'en', 'name', 'Hanoi Medical University'),
(97418, 80587, 'fr', 'name', 'Université de médecine de hanoï'),
(97419, 80587, 'vi', 'name', 'ĐẔi hį»c Y HĆ  Nį»™i'),
(97420, 80588, 'en', 'name', 'Vidzeme University of Applied Sciences'),
(97421, 80588, 'lv', 'name', 'Vidzemes Augstskola'),
(97422, 80589, 'en', 'name', 'Abdus Salam Centre for Physics'),
(97423, 80589, 'ur', 'name', 'عبداسلام ادارہ ŲØŲ±Ų§Ų¦Ū’ طبیعیات'),
(97424, 80590, 'en', 'name', 'Von Hippel Lindau Alliance'),
(97425, 80591, 'no_lang_code', 'name', 'Impulse Dynamics (United States)'),
(97426, 80592, 'en', 'name', 'Association of Environmental & Engineering Geologists'),
(97427, 80593, 'no_lang_code', 'name', 'Xilinx (United States)'),
(97428, 80594, 'no_lang_code', 'name', 'Riemser Pharma (Germany)'),
(97429, 80595, 'en', 'name', 'Institute of Agricultural and Forest Environment'),
(97430, 80595, 'pl', 'name', 'Instytut Środowiska Rolniczego i Leśnego Polskiej Akademii Nauk'),
(97431, 80596, 'en', 'name', 'Hanoi University of Industry'),
(97432, 80596, 'vi', 'name', 'ĐẔi hį»c CĆ“ng nghiệp HĆ  Nį»™i'),
(97433, 80597, 'en', 'name', 'Thuyloi University'),
(97434, 80597, 'vi', 'name', 'ĐẔi hį»c Thį»§y lợi'),
(97435, 80598, 'no_lang_code', 'name', 'Stora Enso (Sweden)'),
(97436, 80599, 'no_lang_code', 'name', 'AiCuris (Germany)'),
(97437, 80600, 'no_lang_code', 'name', 'Fluidigm (United States)'),
(97438, 80601, 'de', 'name', 'Institut für Auslandsbeziehungen'),
(97439, 80601, 'en', 'name', 'Institute for Foreign Cultural Relations'),
(97440, 80602, 'no_lang_code', 'name', 'The Clorox (United States)'),
(97441, 80603, 'fr', 'name', 'UniversitƩ Moulay Ismail de Meknes'),
(97442, 80604, 'en', 'name', 'Renal Pathology Society'),
(97443, 80605, 'es', 'name', 'Instituto Nacional de Medicina Genómica'),
(97444, 80605, 'en', 'name', 'National Institute of Genomic Medicine'),
(97445, 80606, 'no_lang_code', 'name', 'Sunesis (United States)'),
(97446, 80607, 'de', 'name', 'Schweizerische Studienstiftung'),
(97447, 80607, 'en', 'name', 'Swiss Study Foundation'),
(97448, 80608, 'en', 'name', 'Faroese Research Council'),
(97449, 80609, 'en', 'name', 'Nordic Africa Institute'),
(97450, 80610, 'en', 'name', 'University of Béjaïa'),
(97451, 80610, 'fr', 'name', 'UniversitƩ Abderrahmane Mira'),
(97452, 80610, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بجاية'),
(97453, 80611, 'en', 'name', 'Protein Research Foundation'),
(97454, 80611, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč›‹ē™½č³Ŗē ”ē©¶å„ØåŠ±ä¼š'),
(97455, 80612, 'no_lang_code', 'name', 'Lenovo (China)'),
(97456, 80612, 'zh', 'name', 'č”ęƒ³äø­å›½'),
(97457, 80613, 'no_lang_code', 'name', 'Hindustan Petroleum Corporation Limited (India)'),
(97458, 80613, 'hi', 'name', 'ą¤¹ą¤æą¤Øą„ą¤¦ą„ą¤øą„ą¤¤ą¤¾ą¤Ø ą¤Ŗą„‡ą¤Ÿą„ą¤°ą„‹ą¤²ą¤æą¤Æą¤® निगम ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(97459, 80614, 'en', 'name', 'Sanquin'),
(97460, 80615, 'en', 'name', 'Antonine University'),
(97461, 80615, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł†Ų·ŁˆŁ†ŁŠŲ©'),
(97462, 80616, 'no_lang_code', 'name', 'Dr Falk Pharma (Germany)'),
(97463, 80617, 'no_lang_code', 'name', 'Atlantic Copper (Spain)'),
(97464, 80618, 'en', 'name', 'Defence Research and Development Organisation'),
(97465, 80618, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास संगठन'),
(97466, 80618, 'mr', 'name', 'ą¤øą¤‚ą¤°ą¤•ą„ą¤·ą¤£ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø आणि विकास ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(97467, 80618, 'bn', 'name', 'ą¦Ŗą§ą¦°ą¦¤ą¦æą¦°ą¦•ą§ą¦·ą¦¾ গবেষণা ও ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø সংগঠন'),
(97468, 80618, 'ta', 'name', 'ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®³ą®°ąÆą®šąÆą®šą®æ ą®…ą®®ąÆˆą®ŖąÆą®ŖąÆ'),
(97469, 80618, 'te', 'name', 'భారత ą°°ą°•ą±ą°·ą°£ పరిశోధన ą°…ą°­ą°æą°µą±ƒą°¦ą±ą°§ą°æ ą°øą°‚ą°øą±ą°„'),
(97470, 80618, 'kn', 'name', 'ą²°ą²•ą³ą²·ą²£ą²¾ ಸಂಶೋಧನೆ ವಿಕಾಸ ą²øą²‚ą²˜ą²Ÿą²Øą³†'),
(97471, 80618, 'ml', 'name', 'ą“”ą“æą“«ąµ»ą“øąµ ą“±ą“æą“øąµ‡ąµ¼ą“šąµą“šąµ ą“†ąµ»ą“”ąµ ą“”ąµ†ą“µą“²ą“Ŗąµą“®ąµ†ą“Øąµą“±ąµ ą““ąµ¼ą“—ą“Øąµˆą“øąµ‡ą“·ąµ»'),
(97472, 80619, 'en', 'name', 'Louisiana State Department of Health and Hospitals'),
(97473, 80620, 'fr', 'name', 'Fondation JƩrƓme-Lejeune'),
(97474, 80621, 'no_lang_code', 'name', 'Veracyte (United States)'),
(97475, 80622, 'en', 'name', 'Asia Pacific League of Associations for Rheumatology'),
(97476, 80623, 'no_lang_code', 'name', 'ZTE (United States)'),
(97477, 80624, 'no_lang_code', 'name', 'Otonomy (United States)'),
(97478, 80625, 'no_lang_code', 'name', 'Tillotts Pharma (Switzerland)'),
(97479, 80626, 'en', 'name', 'WiSys'),
(97480, 80627, 'no_lang_code', 'name', 'Pernod Ricard (France)'),
(97481, 80628, 'no_lang_code', 'name', 'CRB Innovations (Canada)'),
(97482, 80629, 'en', 'name', 'Laureate Education'),
(97483, 80630, 'no_lang_code', 'name', 'MorphoSys (Germany)'),
(97484, 80631, 'nl', 'name', 'Wereld Kanker Onderzoek Fonds'),
(97485, 80631, 'en', 'name', 'World Cancer Research Fund Netherlands'),
(97486, 80632, 'en', 'name', 'Brazilian Biosciences National Laboratory'),
(97487, 80632, 'pt', 'name', 'Laboratório Nacional de Biociências'),
(97488, 80633, 'en', 'name', 'Duta Wacana Christian University'),
(97489, 80633, 'id', 'name', 'Universitas Kristen Duta Wacana'),
(97490, 80634, 'no_lang_code', 'name', 'BioGaia (Sweden)'),
(97491, 80635, 'en', 'name', 'Mohammed V University'),
(97492, 80635, 'fr', 'name', 'UniversitƩ Mohammed-V de Rabat'),
(97493, 80635, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ الخامس'),
(97494, 80636, 'no_lang_code', 'name', 'Novavax (United States)'),
(97495, 80637, 'no_lang_code', 'name', 'Tata Sons (India)'),
(97496, 80638, 'es', 'name', 'Fideicomiso de Ciencias, Tecnología e Investigación de Puerto Rico'),
(97497, 80638, 'en', 'name', 'Puerto Rico Science, Technology & Research Trust'),
(97498, 80639, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia em Medicina Regenerativa'),
(97499, 80639, 'en', 'name', 'National Institute of Science and Technology in Regenerative Medicine'),
(97500, 80640, 'en', 'name', 'Telemark Hospital'),
(97501, 80641, 'en', 'name', 'Turkish Society of Hematology'),
(97502, 80641, 'tr', 'name', 'Türk Hematoloji Derneği'),
(97503, 80642, 'es', 'name', 'Universidad de Ciencias Aplicadas y Ambientales'),
(97504, 80642, 'en', 'name', 'University of Applied and Environmental Sciences'),
(97505, 80643, 'no_lang_code', 'name', 'ESI Group (France)'),
(97506, 80644, 'es', 'name', 'Instituto Milenio de OceanografĆ­a'),
(97507, 80644, 'en', 'name', 'Millennium Institute of Oceanography'),
(97508, 80645, 'no_lang_code', 'name', 'Myriad (Germany)'),
(97509, 80646, 'no_lang_code', 'name', 'Galecto (Denmark)'),
(97510, 80647, 'no_lang_code', 'name', 'Symrise (Germany)'),
(97511, 80648, 'en', 'name', 'International Institute of Molecular and Cell Biology'),
(97512, 80649, 'no_lang_code', 'name', 'Allergan (Ireland)'),
(97513, 80650, 'en', 'name', 'Autry National Center'),
(97514, 80651, 'no_lang_code', 'name', 'Crown Estate (United Kingdom)'),
(97515, 80652, 'no_lang_code', 'name', 'De Beers (Canada)'),
(97516, 80653, 'it', 'name', 'Regione Siciliana'),
(97517, 80654, 'no_lang_code', 'name', 'Japan Lifeline (Japan)'),
(97518, 80655, 'en', 'name', 'Islamic University of Riau'),
(97519, 80655, 'id', 'name', 'Universitas Islam Riau'),
(97520, 80656, 'no_lang_code', 'name', 'Bayern Innovativ (Germany)'),
(97521, 80657, 'no_lang_code', 'name', 'Geistlich Pharma (Switzerland)'),
(97522, 80658, 'en', 'name', 'Houston Methodist'),
(97523, 80659, 'en', 'name', 'American Center of Oriental Research'),
(97524, 80660, 'no_lang_code', 'name', 'CTI BioPharma (United States)'),
(97525, 80661, 'no_lang_code', 'name', 'Eskom (South Africa)'),
(97526, 80662, 'no_lang_code', 'name', 'GlobalFoundries (United States)'),
(97527, 80663, 'no_lang_code', 'name', 'MicroPort (China)'),
(97528, 80664, 'en', 'name', 'Research Institute for the Study of Leprosy'),
(97529, 80664, 'ru', 'name', 'ā€œŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃŽ Š»ŠµŠæŃ€Ń‹ā€'),
(97530, 80665, 'en', 'name', 'Technological University of the Mixteca'),
(97531, 80665, 'es', 'name', 'Universidad Tecnológica de la Mixteca'),
(97532, 80666, 'es', 'name', 'Universidad de San Buenaventura, Bogota'),
(97533, 80667, 'no_lang_code', 'name', 'Cosmote (Greece)'),
(97534, 80668, 'no_lang_code', 'name', 'Bavarian Nordic (Denmark)'),
(97535, 80669, 'no_lang_code', 'name', 'ESI Group (Switzerland)'),
(97536, 80670, 'no_lang_code', 'name', 'Nippon Shinyaku (Japan)'),
(97537, 80670, 'ja', 'name', 'ę—„ęœ¬ę–°č–¬ę Ŗå¼ä¼šē¤¾'),
(97538, 80671, 'en', 'name', 'University of Shahrood'),
(97539, 80671, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų“Ų§Ł‡Ų±ŁˆŲÆ'),
(97540, 80672, 'no_lang_code', 'name', 'Institut MƩrieux (France)'),
(97541, 80673, 'es', 'name', 'Fundación Comunitaria de Puerto Rico'),
(97542, 80673, 'en', 'name', 'Puerto Rico Community Foundation'),
(97543, 80674, 'en', 'name', 'Zaporizhzhya Institute of Economics and Information Technologies'),
(97544, 80674, 'uk', 'name', 'Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Економіки та Інформаційних Технологій'),
(97545, 80675, 'no_lang_code', 'name', 'Embraer (Brazil)'),
(97546, 80676, 'no_lang_code', 'name', 'Okmetic (Finland)'),
(97547, 80677, 'fr', 'name', 'Haut Commissariat des Nations Unies pour les RƩfugiƩs'),
(97548, 80677, 'en', 'name', 'Office of the United Nations High Commissioner for Refugees'),
(97549, 80678, 'fr', 'name', 'Centre Allemand d''Histoire de l’Art Paris'),
(97550, 80678, 'de', 'name', 'Deutsches Forum für Kunstgeschichte Paris'),
(97551, 80678, 'en', 'name', 'German Center for Art History'),
(97552, 80679, 'en', 'name', 'Government of Hungary'),
(97553, 80680, 'no_lang_code', 'name', 'Amplyx Pharmaceuticals (United States)'),
(97554, 80681, 'de', 'name', 'Deutsches Historisches Institut Rom'),
(97555, 80681, 'en', 'name', 'German Historical Institute in Rome'),
(97556, 80681, 'it', 'name', 'Istituto Storico Germanico di Roma'),
(97557, 80682, 'no_lang_code', 'name', 'Umicore (Belgium)'),
(97558, 80683, 'en', 'name', 'Institute for Environment and Human Security'),
(97559, 80684, 'no_lang_code', 'name', 'Pharmacyclics (United States)'),
(97560, 80685, 'en', 'name', 'Metrology Institute of the Republic of Slovenia'),
(97561, 80686, 'no_lang_code', 'name', 'Symphogen (Denmark)'),
(97562, 80687, 'en', 'name', 'Riyadh Armed Forces Hospital'),
(97563, 80687, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų£Ł…ŁŠŲ± سلطان Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠŲ©'),
(97564, 80688, 'no_lang_code', 'name', 'OPKO Health (Israel)'),
(97565, 80689, 'en', 'name', 'Regional Hospital Randers'),
(97566, 80689, 'da', 'name', 'Regionshospitalet Randers'),
(97567, 80690, 'no_lang_code', 'name', 'CVS Health (United States)'),
(97568, 80691, 'en', 'name', 'University of Passau'),
(97569, 80691, 'de', 'name', 'UniversitƤt Passau'),
(97570, 80692, 'nl', 'name', 'Stichting Oogfonds Nederland'),
(97571, 80693, 'no_lang_code', 'name', 'Immunetics (United States)'),
(97572, 80694, 'en', 'name', 'Muscular Dystrophy Foundation'),
(97573, 80694, 'da', 'name', 'Muskelsvindfonden'),
(97574, 80695, 'no_lang_code', 'name', 'Siemens (Canada)'),
(97575, 80696, 'ga', 'name', 'An Roinn SlƔinte'),
(97576, 80696, 'en', 'name', 'Department of Health'),
(97577, 80697, 'no_lang_code', 'name', 'Aker BP (Norway)'),
(97578, 80698, 'en', 'name', 'Puerto Rico Sea Grant'),
(97579, 80699, 'en', 'name', 'North Bengal University'),
(97580, 80699, 'bn', 'name', 'ą¦‰ą¦¤ą§ą¦¤ą¦°ą¦¬ą¦™ą§ą¦— ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(97581, 80700, 'no_lang_code', 'name', 'Sprint PNS System (United States)'),
(97582, 80701, 'es', 'name', 'Universidad del Magdalena'),
(97583, 80701, 'en', 'name', 'University of Magdalena'),
(97584, 80702, 'no_lang_code', 'name', 'Fugro (Netherlands)'),
(97585, 80703, 'no_lang_code', 'name', 'Incyte (United States)'),
(97586, 80704, 'en', 'name', 'Advocate Lutheran General Hospital'),
(97587, 80705, 'en', 'name', 'Leeds and York Partnership NHS Foundation Trust'),
(97588, 80706, 'no_lang_code', 'name', 'Sun Pharma (Japan)'),
(97589, 80706, 'ja', 'name', 'ć‚µćƒ³ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(97590, 80707, 'en', 'name', 'University of Peshawar'),
(97591, 80707, 'ur', 'name', 'Ų¬Ų§Ł…Ų¹Ū‚ پؓاور'),
(97592, 80708, 'no_lang_code', 'name', 'Bruce Power (Canada)'),
(97593, 80709, 'no_lang_code', 'name', 'Active Biotech (Sweden)'),
(97594, 80710, 'no_lang_code', 'name', 'ESI Group (United Kingdom)'),
(97595, 80711, 'en', 'name', 'National Commission for Science and Technology Malawi'),
(97596, 80712, 'no_lang_code', 'name', 'Tosoh (Japan)'),
(97597, 80712, 'ja', 'name', 'ę±ć‚½ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(97598, 80713, 'no_lang_code', 'name', 'Humana (United States)'),
(97599, 80714, 'fr', 'name', 'Conservatoire national supƩrieur de musique et de danse de Lyon'),
(97600, 80715, 'no_lang_code', 'name', 'Medline (United States)'),
(97601, 80716, 'en', 'name', 'Veterans Medical Research Foundation of San Diego'),
(97602, 80717, 'de', 'name', 'Schweizerische Arbeitsgruppe für klinische Krebsforschung'),
(97603, 80717, 'en', 'name', 'Swiss Group For Clinical Cancer Research'),
(97604, 80718, 'en', 'name', 'Federal Medical Research Centre for Psychiatry and Narcology'),
(97605, 80718, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр психиатрии Šø наркологии имени Š’.П. Дербского'),
(97606, 80719, 'en', 'name', 'Lampung University'),
(97607, 80719, 'id', 'name', 'Universitas Lampung'),
(97608, 80720, 'en', 'name', 'Council on Postsecondary Education'),
(97609, 80721, 'no_lang_code', 'name', 'Petronas (Malaysia)'),
(97610, 80722, 'en', 'name', 'Institute of Mathematics'),
(97611, 80722, 'pl', 'name', 'Instytut Matematyczny Polskiej Akademii Nauk'),
(97612, 80723, 'no_lang_code', 'name', 'Ixico (United Kingdom)'),
(97613, 80724, 'no_lang_code', 'name', 'Vale (Canada)'),
(97614, 80725, 'no_lang_code', 'name', 'Masimo (United States)'),
(97615, 80726, 'en', 'name', 'Bakrie University'),
(97616, 80726, 'id', 'name', 'Universitas Bakrie'),
(97617, 80727, 'no_lang_code', 'name', 'Hexal (Germany)'),
(97618, 80728, 'en', 'name', 'Cooperative Research Centre for Mental Health'),
(97619, 80729, 'en', 'name', 'Technological University of Mexico'),
(97620, 80729, 'es', 'name', 'Universidad Tecnológica de México'),
(97621, 80730, 'en', 'name', 'The Jane Goodall Institute'),
(97622, 80731, 'en', 'name', 'Private University of the North'),
(97623, 80731, 'es', 'name', 'Universidad Privada del Norte'),
(97624, 80732, 'no_lang_code', 'name', 'Valio (Finland)'),
(97625, 80733, 'en', 'name', 'Mount Sinai Hospital'),
(97626, 80734, 'pt', 'name', 'Instituto Butantan'),
(97627, 80735, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia de Fluidos Complexos'),
(97628, 80735, 'en', 'name', 'National Institute of Science and Technology Complex Fluids'),
(97629, 80736, 'no_lang_code', 'name', 'Zora Biosciences (Finland)'),
(97630, 80737, 'fr', 'name', 'MinistĆØre de la Culture'),
(97631, 80738, 'no_lang_code', 'name', 'Menarini Group (Luxembourg)'),
(97632, 80739, 'en', 'name', 'Institute of Geological Sciences'),
(97633, 80739, 'pl', 'name', 'Instytut Nauk Geologicznych'),
(97634, 80740, 'en', 'name', 'Abdelmalek Essaâdi University'),
(97635, 80740, 'fr', 'name', 'Université Abdelmalek Essaâdi'),
(97636, 80740, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¹ŲØŲÆ Ų§Ł„Ł…Ų§Ł„Łƒ Ų§Ł„Ų³Ų¹ŲÆŁŠ'),
(97637, 80741, 'no_lang_code', 'name', 'PAREXEL International (United States)'),
(97638, 80742, 'no_lang_code', 'name', 'Tokyo Gas (Japan)'),
(97639, 80742, 'ja', 'name', 'ę±äŗ¬ē“¦ę–Æę Ŗå¼ä¼šē¤¾'),
(97640, 80743, 'en', 'name', 'Russian Medical Academy of Continuous Professional Education'),
(97641, 80743, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ непрерывного ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(97642, 80744, 'sv', 'name', 'VƤrmlands LƤns Landsting'),
(97643, 80745, 'no_lang_code', 'name', 'Powertech Labs (Canada)'),
(97644, 80746, 'no_lang_code', 'name', 'ViewRay (United States)'),
(97645, 80747, 'en', 'name', 'University of Montana Western'),
(97646, 80748, 'en', 'name', 'Saint Joseph Hospital'),
(97647, 80749, 'no_lang_code', 'name', 'Loblaw Companies (Canada)'),
(97648, 80750, 'no_lang_code', 'name', 'Cytokinetics (United States)'),
(97649, 80751, 'no_lang_code', 'name', 'Denso (Japan)'),
(97650, 80751, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‡ćƒ³ć‚½ćƒ¼'),
(97651, 80752, 'no_lang_code', 'name', 'Apollomics (United States)'),
(97652, 80753, 'fr', 'name', 'IRT Jules Verne'),
(97653, 80754, 'no_lang_code', 'name', 'Comcast (United States)'),
(97654, 80755, 'id', 'name', 'Universitas Bangka Belitung'),
(97655, 80755, 'en', 'name', 'University of Bangka Belitung'),
(97656, 80756, 'no_lang_code', 'name', 'Vaccitech (United Kingdom)'),
(97657, 80757, 'no_lang_code', 'name', 'BeiGene (China)'),
(97658, 80758, 'en', 'name', 'The Land Institute'),
(97659, 80759, 'no_lang_code', 'name', 'ESI Group (Sweden)'),
(97660, 80760, 'no_lang_code', 'name', 'Murata (Finland)'),
(97661, 80761, 'en', 'name', 'Turkish Society of Cardiology'),
(97662, 80761, 'tr', 'name', 'Türk Kardiyoloji Derneği'),
(97663, 80762, 'en', 'name', 'Jilin University of Chemical Technology'),
(97664, 80762, 'zh', 'name', 'å‰ęž—åŒ–å·„å­¦é™¢'),
(97665, 80763, 'no_lang_code', 'name', 'RTI Surgical (United States)'),
(97666, 80764, 'en', 'name', 'Danish Ministry of Culture'),
(97667, 80764, 'da', 'name', 'Kulturministeriet'),
(97668, 80765, 'en', 'name', 'Spanish Society of Family and Community Medicine'),
(97669, 80766, 'no_lang_code', 'name', 'Rydberg (United States)'),
(97670, 80767, 'no_lang_code', 'name', 'Dong Wha Pharm (South Korea)'),
(97671, 80768, 'en', 'name', 'Duy Tan University'),
(97672, 80768, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Duy TĆ¢n'),
(97673, 80769, 'no_lang_code', 'name', 'Ansys (United States)'),
(97674, 80770, 'en', 'name', 'Institute of Political Studies'),
(97675, 80770, 'pl', 'name', 'Instytut Studiów Politycznych'),
(97676, 80771, 'no_lang_code', 'name', 'Adamas Pharmaceuticals (India)'),
(97677, 80772, 'en', 'name', 'Semnan University of Medical Sciences'),
(97678, 80773, 'en', 'name', 'National Medical Research Center of Dentistry and Maxillofacial Surgery'),
(97679, 80773, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стоматологии Šø Ń‡ŠµŠ»ŃŽŃŃ‚Š½Š¾-лицевой Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(97680, 80774, 'no_lang_code', 'name', 'Transgenomic (United States)'),
(97681, 80775, 'en', 'name', 'Advocate Christ Medical Center'),
(97682, 80776, 'no_lang_code', 'name', 'Cerecor (United States)'),
(97683, 80777, 'fr', 'name', 'Institut Périmètre de Physique Théorique'),
(97684, 80777, 'en', 'name', 'Perimeter Institute'),
(97685, 80778, 'no_lang_code', 'name', 'Pfizer (Canada)'),
(97686, 80779, 'no_lang_code', 'name', 'Kone (Finland)'),
(97687, 80780, 'en', 'name', 'Allerhand Institute'),
(97688, 80780, 'pl', 'name', 'Instytut Allerhanda'),
(97689, 80781, 'en', 'name', 'Kalmar County Council'),
(97690, 80781, 'sv', 'name', 'Landstinget i Kalmar lƤn'),
(97691, 80782, 'en', 'name', 'The National Lottery Heritage Fund'),
(97692, 80783, 'no_lang_code', 'name', 'Firmenich (Switzerland)'),
(97693, 80784, 'fr', 'name', 'Fondation universitaire'),
(97694, 80784, 'nl', 'name', 'Universitaire Stichting'),
(97695, 80784, 'en', 'name', 'University Foundation'),
(97696, 80785, 'no_lang_code', 'name', 'ESI Group (United States)'),
(97697, 80786, 'no_lang_code', 'name', 'HemoSonics (United States)'),
(97698, 80787, 'no_lang_code', 'name', 'Alkermes (Ireland)'),
(97699, 80788, 'en', 'name', 'Shenzhen Stock Exchange'),
(97700, 80789, 'en', 'name', 'United Nations Relief and Works Agency for Palestine Refugees in the Near East'),
(97701, 80790, 'no_lang_code', 'name', 'BG Medicine (United States)'),
(97702, 80791, 'en', 'name', 'Huyck Preserve and Biological Research Station'),
(97703, 80792, 'en', 'name', 'Ekhaga Foundation'),
(97704, 80792, 'sv', 'name', 'Ekhagastiftelsen'),
(97705, 80793, 'no_lang_code', 'name', 'TOA EIYO (Japan)'),
(97706, 80793, 'ja', 'name', 'ćƒˆćƒ¼ć‚¢ć‚Øć‚¤ćƒØćƒ¼'),
(97707, 80794, 'en', 'name', 'Fauna and Flora International'),
(97708, 80795, 'en', 'name', 'Ochsner Health System'),
(97709, 80796, 'no_lang_code', 'name', 'Gojo (United States)'),
(97710, 80797, 'no_lang_code', 'name', 'Ifm Therapeutics (United States)'),
(97711, 80798, 'no_lang_code', 'name', 'Altran (France)'),
(97712, 80799, 'no_lang_code', 'name', 'Essity (Germany)'),
(97713, 80800, 'no_lang_code', 'name', 'Rogers (United States)'),
(97714, 80801, 'sv', 'name', 'Drottning Silvias barn- och ungdomssjukhus'),
(97715, 80802, 'es', 'name', 'Fundación Marques de Valdecilla'),
(97716, 80803, 'no_lang_code', 'name', 'Italfarmaco (Italy)'),
(97717, 80804, 'no_lang_code', 'name', 'Purdue Pharma (United States)'),
(97718, 80805, 'no_lang_code', 'name', 'USGI Medical (United States)'),
(97719, 80806, 'en', 'name', 'University of Occupational and Environmental Health Japan'),
(97720, 80806, 'ja', 'name', 'ē”£ę„­åŒ»ē§‘å¤§å­¦'),
(97721, 80807, 'en', 'name', 'University of Molise'),
(97722, 80807, 'it', 'name', 'UniversitĆ  degli Studi del Molise'),
(97723, 80807, 'fr', 'name', 'UniversitƩ du molise'),
(97724, 80808, 'fr', 'name', 'Association Canadienne des ErgothƩrapeutes'),
(97725, 80808, 'en', 'name', 'Canadian Association of Occupational Therapists'),
(97726, 80809, 'en', 'name', 'Scientific Center of Children''s Health'),
(97727, 80809, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Š·Š“Š¾Ń€Š¾Š²ŃŒŃ Гетей'),
(97728, 80810, 'en', 'name', 'Brain Mapping Medical Research Organization & Support Foundation'),
(97729, 80811, 'en', 'name', 'Institute of Oncology NN Petrov'),
(97730, 80811, 'ru', 'name', 'ŠŠ˜Š˜ онкологии им. Š.Š. ŠŸŠµŃ‚Ń€Š¾Š²Š°'),
(97731, 80812, 'no_lang_code', 'name', 'Insulet (United States)'),
(97732, 80813, 'en', 'name', 'PTEN Research Foundation'),
(97733, 80814, 'no_lang_code', 'name', 'Lion Corporation (Japan)'),
(97734, 80814, 'ja', 'name', 'ćƒ©ć‚¤ć‚Ŗćƒ³ę Ŗå¼ä¼šē¤¾'),
(97735, 80815, 'no_lang_code', 'name', 'Midatech Pharma (United Kingdom)'),
(97736, 80816, 'en', 'name', 'Fuzhou General Hospital of Nanjing Military Command'),
(97737, 80816, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›č”å‹¤äæéšœéƒØé˜Ÿē¬¬ä¹ć€‡ć€‡åŒ»é™¢'),
(97738, 80817, 'en', 'name', 'Hubrecht Institute for Developmental Biology and Stem Cell Research'),
(97739, 80817, 'nl', 'name', 'Hubrecht-Instituut'),
(97740, 80818, 'en', 'name', 'Endocrinology Research Center'),
(97741, 80818, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½Š“Š¾ŠŗŃ€ŠøŠ½Š¾Š»Š¾Š³ŠøŠø'),
(97742, 80819, 'en', 'name', 'Nizhny Novgorod Research Institute of Traumatology and Orthopedics'),
(97743, 80819, 'ru', 'name', 'ŠŸŃ€ŠøŠ²Š¾Š»Š¶ŃŠŗŠøŠ¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр'),
(97744, 80820, 'sv', 'name', 'Finlands miljƶcentral'),
(97745, 80820, 'en', 'name', 'Finnish Environment Institute'),
(97746, 80820, 'fi', 'name', 'Suomen ympƤristƶkeskus'),
(97747, 80821, 'en', 'name', 'Canadian Egg Marketing Agency'),
(97748, 80822, 'no_lang_code', 'name', 'AlgiPharma (Norway)'),
(97749, 80823, 'en', 'name', 'Muhammadiyah University Purwokerto'),
(97750, 80823, 'id', 'name', 'Universitas Muhammadiyah Purwokerto'),
(97751, 80824, 'en', 'name', 'Vaasa Central Hospital'),
(97752, 80825, 'no_lang_code', 'name', 'Toyota Motor Corporation (Belgium)'),
(97753, 80826, 'no_lang_code', 'name', 'Reva Medical (United States)'),
(97754, 80827, 'en', 'name', 'Russian Ilizarov Scientific Center for Restorative Traumatology and Orthopaedics'),
(97755, 80827, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ā«Š’Š¾ŃŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń Ń‚Ń€Š°Š²Š¼Š°Ń‚Š¾Š»Š¾Š³ŠøŃ Šø Š¾Ń€Ń‚Š¾ŠæŠµŠ“ŠøŃĀ» имени акаГемика Š“. А. Š˜Š»ŠøŠ·Š°Ń€Š¾Š²Š°'),
(97756, 80828, 'no_lang_code', 'name', 'Clariant (Switzerland)'),
(97757, 80829, 'en', 'name', 'Royal University of Agriculture, Cambodia'),
(97758, 80829, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įž€įžŸįž·įž€įž˜įŸ’įž˜'),
(97759, 80830, 'en', 'name', 'European Association for Palliative Care'),
(97760, 80831, 'en', 'name', 'Autonomous University of Chihuahua'),
(97761, 80831, 'es', 'name', 'Universidad Autónoma de Chihuahua'),
(97762, 80832, 'en', 'name', 'Ivanovo Research Institute of Motherhood and Childhood named after VN Gorodkov'),
(97763, 80833, 'en', 'name', 'Science and Technology Development Fund'),
(97764, 80834, 'no_lang_code', 'name', 'Tata Motors (India)'),
(97765, 80835, 'en', 'name', 'Centre for Health Technology and Services Research'),
(97766, 80835, 'pt', 'name', 'Centro de Investigação em Tecnologias e Serviços de Saúde'),
(97767, 80836, 'en', 'name', 'Society for the History of Technology'),
(97768, 80837, 'en', 'name', 'Pirogov Russian National Research Medical University'),
(97769, 80837, 'ru', 'name', 'Российский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. И. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(97770, 80838, 'en', 'name', 'Siliwangi University'),
(97771, 80838, 'id', 'name', 'Universitas Siliwangi'),
(97772, 80839, 'no_lang_code', 'name', 'Agrisearch (United Kingdom)'),
(97773, 80840, 'no_lang_code', 'name', 'Verastem (United States)'),
(97774, 80841, 'en', 'name', 'Danish Medicines Agency'),
(97775, 80841, 'da', 'name', 'LƦgemiddelstyrelsen'),
(97776, 80842, 'no_lang_code', 'name', 'SK Life Science (United States)'),
(97777, 80843, 'no_lang_code', 'name', 'Dexcom (United States)'),
(97778, 80844, 'en', 'name', 'Hassiba Benbouali University of Chlef'),
(97779, 80844, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© حسيبة بن ŲØŁˆŲ¹Ł„ŁŠ -الؓلف'),
(97780, 80845, 'en', 'name', 'National Medical Research Center for Obstetrics, Gynecology and Perinatology named after Academician V.I.Kulakov of the Ministry of Healthcare of the Russian Federation'),
(97781, 80845, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр имени акаГемика Кулакова" ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(97782, 80846, 'no_lang_code', 'name', 'Auris Health (United States)'),
(97783, 80847, 'no_lang_code', 'name', 'CryoLife (United States)'),
(97784, 80848, 'no_lang_code', 'name', 'BTG International (United Kingdom)'),
(97785, 80849, 'de', 'name', 'Hochschule Geisenheim'),
(97786, 80849, 'en', 'name', 'Hochschule Geisenheim University'),
(97787, 80850, 'no_lang_code', 'name', 'Amarin (Ireland)'),
(97788, 80851, 'nl', 'name', 'Ministerie van Sociale Zaken en Werkgelegenheid'),
(97789, 80851, 'en', 'name', 'Ministry of Social Affairs and Employment'),
(97790, 80852, 'no_lang_code', 'name', 'Ipsen (France)'),
(97791, 80853, 'en', 'name', 'Puerto Rico Space Grant Consortium'),
(97792, 80854, 'en', 'name', 'WellChild'),
(97793, 80855, 'no_lang_code', 'name', 'ConMed (United States)'),
(97794, 80856, 'en', 'name', 'Biomedical Research Networking Center on Neurodegenerative Diseases'),
(97795, 80856, 'es', 'name', 'Centro de Investigación Biomédica en Red, Enfermedades Neurodegenerativas'),
(97796, 80857, 'no_lang_code', 'name', 'Nucana (United Kingdom)'),
(97797, 80858, 'no_lang_code', 'name', 'Syncrude (Canada)'),
(97798, 80859, 'it', 'name', 'Istituto Nazionale della Previdenza Sociale'),
(97799, 80860, 'no_lang_code', 'name', 'Alimera Sciences (United States)'),
(97800, 80861, 'en', 'name', 'Research Foundation of The City University of New York'),
(97801, 80862, 'no_lang_code', 'name', 'Shell (Canada)'),
(97802, 80862, 'fr', 'name', 'Shell Canada LimitƩe'),
(97803, 80863, 'en', 'name', 'Steel Foundation for Environmental Protection Technology'),
(97804, 80863, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé‰„é‹¼ē’°å¢ƒåŸŗé‡‘'),
(97805, 80864, 'no_lang_code', 'name', 'Saputo (Canada)'),
(97806, 80865, 'en', 'name', 'Norwegian Food Safety Authority'),
(97807, 80866, 'en', 'name', 'Federal State Budgetary Institution Russian Scientific Center of Roentgenoradiology'),
(97808, 80866, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр рентгенораГиологии"'),
(97809, 80867, 'bs', 'name', 'Ministarstvo Civilnih Poslova'),
(97810, 80867, 'en', 'name', 'Ministry of Civil Affairs'),
(97811, 80868, 'no_lang_code', 'name', 'BSH HausgerƤte (Germany)'),
(97812, 80869, 'no_lang_code', 'name', 'Oil and Natural Gas Corporation (India)'),
(97813, 80870, 'en', 'name', 'Forest Research Institute Malaysia'),
(97814, 80871, 'en', 'name', 'Sten A Olsson Foundation for Research and Culture'),
(97815, 80871, 'sv', 'name', 'Sten A Olssons Stiftelse fƶr Forskning och Kultur'),
(97816, 80872, 'no_lang_code', 'name', 'ESI Group (Germany)'),
(97817, 80873, 'en', 'name', 'Sunnaas Hospital'),
(97818, 80873, 'no', 'name', 'Sunnaas sykehus'),
(97819, 80874, 'en', 'name', 'National Boron Research Institute'),
(97820, 80874, 'tr', 'name', 'Ulusal Bor Araştırma Enstitüsü'),
(97821, 80875, 'no_lang_code', 'name', 'Medela (Switzerland)'),
(97822, 80876, 'no_lang_code', 'name', 'Osprey Medical (United States)'),
(97823, 80877, 'no_lang_code', 'name', 'Prothena (United States)'),
(97824, 80878, 'en', 'name', 'Sydney Water'),
(97825, 80879, 'en', 'name', 'Lillebaelt Hospital'),
(97826, 80879, 'da', 'name', 'Sygehus LillebƦlt'),
(97827, 80880, 'no_lang_code', 'name', 'Corin (United Kingdom)'),
(97828, 80881, 'no_lang_code', 'name', 'Xcel Energy (United States)'),
(97829, 80882, 'en', 'name', 'National Research Center for Preventive Medicine'),
(97830, 80882, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр ŠŸŃ€Š¾Ń„ŠøŠ»Š°ŠŗŃ‚ŠøŃ‡ŠµŃŠŗŠ¾Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½Ń‹'),
(97831, 80883, 'no_lang_code', 'name', 'AOP Orphan (Austria)'),
(97832, 80884, 'en', 'name', 'United Kingdom Sport'),
(97833, 80885, 'no_lang_code', 'name', 'Amryt Pharma (Germany)'),
(97834, 80886, 'de', 'name', 'ParkinsonFonds Deutschland gGmbH'),
(97835, 80887, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c HĆ ng hįŗ£i Việt Nam'),
(97836, 80887, 'en', 'name', 'Vietnam Maritime University'),
(97837, 80888, 'pl', 'name', 'Instytut Biologii Ssaków Polskiej Akademii Nauk'),
(97838, 80888, 'en', 'name', 'Mammal Research Institute'),
(97839, 80889, 'en', 'name', 'Historic Environment Scotland'),
(97840, 80889, 'gd', 'name', 'ƀrainneachd Eachdraidheil Alba'),
(97841, 80890, 'no_lang_code', 'name', 'Ark Therapeutic (United States)'),
(97842, 80891, 'en', 'name', 'Federal State Budgetary Institution "Center for Expertise and Quality Control of Medical Care"'),
(97843, 80891, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Центр ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ Šø ŠŗŠ¾Š½Ń‚Ń€Š¾Š»Ń качества меГицинской помощи» ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(97844, 80892, 'en', 'name', 'Polish Agency for Enterprise Development'),
(97845, 80892, 'pl', 'name', 'Polska Agencja Rozwoju Przedsiębiorczości'),
(97846, 80893, 'no_lang_code', 'name', 'Moderna Therapeutics (United States)'),
(97847, 80894, 'no_lang_code', 'name', 'Water Corporation of Western Australia (Australia)'),
(97848, 80895, 'en', 'name', 'National Economics University'),
(97849, 80895, 'vi', 'name', 'ĐẔi hį»c Kinh tįŗæ Quốc dĆ¢n'),
(97850, 80896, 'no_lang_code', 'name', 'Seven Past Nine'),
(97851, 80897, 'en', 'name', 'University of Hassan II Casablanca'),
(97852, 80897, 'fr', 'name', 'UniversitƩ hassan ii de casablanca'),
(97853, 80897, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الحسن Ų§Ł„Ų«Ų§Ł†ŁŠ'),
(97854, 80898, 'nl', 'name', 'COmON Stichting'),
(97855, 80898, 'en', 'name', 'Comon Foundation'),
(97856, 80899, 'en', 'name', 'European Association of Cardiothoracic Anaesthesiology'),
(97857, 80900, 'no_lang_code', 'name', 'TiDA (New Zealand)'),
(97858, 80901, 'no_lang_code', 'name', 'Nippon Zoki (Japan)'),
(97859, 80901, 'ja', 'name', 'ę—„ęœ¬č‡“å™Øč£½č–¬'),
(97860, 80902, 'nl', 'name', 'Long Fonds'),
(97861, 80903, 'en', 'name', 'Institute of Remote Sensing and Digital Earth'),
(97862, 80903, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åÆ¹åœ°č§‚ęµ‹äøŽę•°å­—åœ°ēƒē§‘å­¦äø­åæƒ'),
(97863, 80904, 'en', 'name', 'Genomics Research Center, Academia Sinica'),
(97864, 80904, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢åŸŗå› é«”ē ”ē©¶äø­åæƒ'),
(97865, 80905, 'no', 'name', 'Kavli Fondet'),
(97866, 80905, 'en', 'name', 'The Kavli Trust'),
(97867, 80906, 'hu', 'name', 'InnovÔciós és Technológiai Minisztérium'),
(97868, 80906, 'en', 'name', 'Ministry for Innovation and Technology'),
(97869, 80907, 'en', 'name', 'China Automotive Battery Research Institute'),
(97870, 80907, 'zh', 'name', 'å›½č”ę±½č½¦åŠØåŠ›ē”µę± ē ”ē©¶é™¢'),
(97871, 80908, 'no_lang_code', 'name', 'Fidia Farmaceutici (Italy)'),
(97872, 80909, 'en', 'name', 'Dali University'),
(97873, 80909, 'zh', 'name', '大理学院'),
(97874, 80910, 'no_lang_code', 'name', 'PharmaMar (Spain)'),
(97875, 80911, 'en', 'name', 'International Institute for Environment and Development'),
(97876, 80912, 'en', 'name', 'Centre for Southern Hemisphere Oceans Research'),
(97877, 80913, 'en', 'name', 'European Institute of Oncology'),
(97878, 80913, 'it', 'name', 'Istituto Europeo di Oncologia'),
(97879, 80914, 'es', 'name', 'Axencia Galega de Innovacion'),
(97880, 80915, 'no_lang_code', 'name', 'Corteva (United States)'),
(97881, 80916, 'en', 'name', 'Taipei City Government'),
(97882, 80917, 'en', 'name', 'Kids'' Brain Tumor Cure Foundation'),
(97883, 80918, 'en', 'name', 'Ufa State Petroleum Technological University'),
(97884, 80918, 'ru', 'name', 'Уфимский Š³Š¾ŃŃƒŠ“арственный Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(97885, 80918, 'ba', 'name', 'Өфө Гәүләт Š½ŠµŃ„Ń‚ŃŒ техник ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(97886, 80919, 'en', 'name', 'Morehouse School of Medicine'),
(97887, 80920, 'en', 'name', 'Society for Neuroscience in Anesthesiology and Critical Care'),
(97888, 80921, 'en', 'name', 'Shangdong Agriculture and Engineering University'),
(97889, 80921, 'zh', 'name', 'å±±äøœå†œäøšå·„ēØ‹å­¦é™¢'),
(97890, 80922, 'en', 'name', 'Royal Australian and New Zealand College of Radiologists'),
(97891, 80923, 'no_lang_code', 'name', 'Kogakuin University'),
(97892, 80923, 'ja', 'name', '巄学院大学'),
(97893, 80924, 'en', 'name', 'Gansu Academy of Sciences'),
(97894, 80924, 'zh', 'name', 'ē”˜č‚ƒēœē§‘å­¦é™¢'),
(97895, 80925, 'en', 'name', 'Jilin Engineering Normal University'),
(97896, 80925, 'zh', 'name', 'å‰ęž—å·„ēØ‹ęŠ€ęœÆåøˆčŒƒå­¦é™¢'),
(97897, 80926, 'no_lang_code', 'name', 'EMI (United Kingdom)'),
(97898, 80927, 'no_lang_code', 'name', 'JCR Pharmaceuticals (Japan)'),
(97899, 80927, 'ja', 'name', 'JCRćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(97900, 80928, 'en', 'name', 'Japan Proton Accelerator Research Complex'),
(97901, 80928, 'ja', 'name', 'å¤§å¼·åŗ¦é™½å­åŠ é€Ÿå™Øę–½čØ­'),
(97902, 80929, 'en', 'name', 'The VTCT Foundation'),
(97903, 80930, 'en', 'name', 'The Steven G. AYA Cancer Research Fund'),
(97904, 80931, 'en', 'name', 'TeamConnor Childhood Cancer Foundation'),
(97905, 80932, 'en', 'name', 'Innlandet Hospital Trust'),
(97906, 80933, 'no_lang_code', 'name', 'Concert Pharmaceuticals (United States)'),
(97907, 80934, 'en', 'name', 'World Cancer Research Fund International'),
(97908, 80935, 'en', 'name', 'The Wallace H. Coulter Department of Biomedical Engineering'),
(97909, 80936, 'de', 'name', 'Stiftung der Deutschen Wirtschaft'),
(97910, 80937, 'no_lang_code', 'name', 'Guangxi Medicinal Botanical Garden'),
(97911, 80937, 'zh', 'name', 'å¹æč„æčÆē”Øę¤ē‰©å›­'),
(97912, 80938, 'en', 'name', 'Catholic Medical Center'),
(97913, 80939, 'it', 'name', 'Ospedale Vincenzo Cervello'),
(97914, 80940, 'en', 'name', 'JKA Foundation'),
(97915, 80940, 'ja', 'name', '貔団法人JKA'),
(97916, 80941, 'en', 'name', 'Singapore Cancer Society'),
(97917, 80942, 'en', 'name', 'New York State Office for People With Developmental Disabilities'),
(97918, 80943, 'en', 'name', 'Gujarat Cancer & Research Institute'),
(97919, 80944, 'en', 'name', 'Global Energy Interconnection Research Institute North America'),
(97920, 80945, 'en', 'name', 'Flinders Medical Centre'),
(97921, 80946, 'no_lang_code', 'name', 'Nanfang Hospital'),
(97922, 80947, 'en', 'name', 'Aksum University'),
(97923, 80948, 'en', 'name', 'Clifford Craig Foundation'),
(97924, 80949, 'no_lang_code', 'name', 'Xi''an Honghui Hospital'),
(97925, 80949, 'zh', 'name', 'č„æå®‰åø‚ēŗ¢ä¼šåŒ»é™¢'),
(97926, 80950, 'en', 'name', 'Pelita Harapan University'),
(97927, 80951, 'en', 'name', 'Suratthani Rajabhat University'),
(97928, 80951, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąøøąø£ąø²ąø©ąøŽąø£ą¹Œąø˜ąø²ąø™ąøµ'),
(97929, 80952, 'en', 'name', 'Leibniz Institute of Polymer Research'),
(97930, 80952, 'de', 'name', 'Leibniz-Institut für Polymerforschung Dresden'),
(97931, 80953, 'pl', 'name', 'Instytut Katalizy i Fizykochemii Powierzchni im. Jerzego Habera Polskiej Akademii Nauk'),
(97932, 80953, 'en', 'name', 'Jerzy Haber Institute of Catalysis and Surface Chemistry, Polish Academy of Sciences'),
(97933, 80954, 'en', 'name', 'Japan Diabetes Foundation'),
(97934, 80954, 'ja', 'name', 'ę—„ęœ¬ē³–å°æē—…č²”å›£'),
(97935, 80955, 'pl', 'name', 'Instytut Fizjologii i Żywienia Zwierząt im. Jana Kielanowskiego PAN'),
(97936, 80955, 'en', 'name', 'Kielanowski Institute of Animal Physiology and Nutrition'),
(97937, 80956, 'en', 'name', 'Multiple System Atrophy Trust'),
(97938, 80957, 'en', 'name', 'National Institute of Animal Science'),
(97939, 80958, 'en', 'name', 'Hexi University'),
(97940, 80958, 'zh', 'name', '河脿学院'),
(97941, 80959, 'en', 'name', 'Wisconsin Academy of Sciences, Arts & Letters'),
(97942, 80960, 'en', 'name', 'Chinese Academy of Inspection and Quarantine'),
(97943, 80960, 'zh', 'name', 'äø­å›½ę£€éŖŒę£€ē–«ē§‘å­¦ē ”ē©¶é™¢'),
(97944, 80961, 'no_lang_code', 'name', 'GSI Environmental (United States)'),
(97945, 80962, 'en', 'name', 'Scottish Natural Heritage'),
(97946, 80963, 'en', 'name', 'Pirkanmaa Hospital District'),
(97947, 80963, 'fi', 'name', 'Pirkanmaan Sairaanhoitopiiri'),
(97948, 80964, 'en', 'name', 'John Peter Smith Hospital'),
(97949, 80965, 'en', 'name', 'Thaksin University'),
(97950, 80965, 'th', 'name', 'ดหาวณทยาคัยทักษณณ'),
(97951, 80966, 'en', 'name', 'Commonwealth Health Research Board'),
(97952, 80967, 'en', 'name', 'Max Planck Institute for Demographic Research'),
(97953, 80967, 'de', 'name', 'Max-Planck-Institut für Demografische Forschung'),
(97954, 80968, 'en', 'name', 'Arizona''s Public Universities'),
(97955, 80969, 'no_lang_code', 'name', 'Lundin (Norway)'),
(97956, 80970, 'en', 'name', 'Game & Wildlife Conservation Trust'),
(97957, 80971, 'en', 'name', 'Rajiv Gandhi Cancer Institute and Research Centre'),
(97958, 80972, 'en', 'name', 'GSI Helmholtz Centre for Heavy Ion Research'),
(97959, 80972, 'de', 'name', 'GSI Helmholtzzentrum für Schwerionenforschung'),
(97960, 80973, 'no_lang_code', 'name', 'Grand Ɖquipement National de Calcul Intensif (France)'),
(97961, 80974, 'no_lang_code', 'name', 'TransCanada (Canada)'),
(97962, 80975, 'en', 'name', 'Virginia Department of Game and Inland Fisheries'),
(97963, 80976, 'en', 'name', 'Novartis-MIT Center for Continuous Manufacturing'),
(97964, 80977, 'en', 'name', 'Mid-America Transportation Center'),
(97965, 80978, 'en', 'name', 'Defence Materiel Administration'),
(97966, 80978, 'sv', 'name', 'Fƶrsvarets materielverk'),
(97967, 80979, 'en', 'name', 'State Administration of Work Safety'),
(97968, 80979, 'zh', 'name', 'å›½å®¶å®‰å…Øē”Ÿäŗ§ē›‘ē£ē®”ē†ę€»å±€'),
(97969, 80980, 'en', 'name', 'Utica College'),
(97970, 80981, 'en', 'name', 'Indian Institute of Technology Patna'),
(97971, 80981, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®Ŗą®ŸąÆą®©ą®¾'),
(97972, 80982, 'en', 'name', 'Helmholtz Graduate School for Hadron and Ion Research'),
(97973, 80983, 'no_lang_code', 'name', 'Wessex Academic Health Science Network (United Kingdom)'),
(97974, 80984, 'de', 'name', 'Forschungsinstitut für Philosophie Hannover'),
(97975, 80984, 'en', 'name', 'Research Institute for Philosophy Hannover'),
(97976, 80985, 'en', 'name', 'The Hersh Foundation'),
(97977, 80986, 'en', 'name', 'Cobalt Institute'),
(97978, 80987, 'es', 'name', 'Fundación Valle del Lili'),
(97979, 80988, 'en', 'name', 'Invest Northern Ireland'),
(97980, 80989, 'no_lang_code', 'name', 'Cambridge Crystallographic Data Centre'),
(97981, 80990, 'en', 'name', 'Canadian Nuclear Laboratories'),
(97982, 80991, 'de', 'name', 'Deutsche Gesellschaft für Muskelkranke'),
(97983, 80992, 'no_lang_code', 'name', 'MedDay (France)'),
(97984, 80993, 'no_lang_code', 'name', 'Nevro (United States)'),
(97985, 80994, 'es', 'name', 'Fundación Mundial de Diabetes'),
(97986, 80994, 'pt', 'name', 'Fundação Mundial de Diabetes'),
(97987, 80994, 'en', 'name', 'World Diabetes Foundation'),
(97988, 80995, 'en', 'name', 'Taiwan Nurses Association'),
(97989, 80996, 'en', 'name', 'Moscow Institute of Physics and Technology'),
(97990, 80996, 'ru', 'name', 'Московский физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(97991, 80997, 'en', 'name', 'International Breast Cancer Research Foundation'),
(97992, 80998, 'en', 'name', 'European University Association'),
(97993, 80999, 'en', 'name', 'S.N. Bose National Centre for Basic Sciences'),
(97994, 80999, 'bn', 'name', 'ą¦øą¦¤ą§ą¦Æą§‡ą¦Øą§ą¦¦ą§ą¦°ą¦Øą¦¾ą¦„ বসু ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦®ą§Œą¦²ą¦æą¦• ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦•ą§‡ą¦Øą§ą¦¦ą§ą¦°'),
(97995, 81000, 'no_lang_code', 'name', 'Mercedes-Benz Research and Development North America (United States)'),
(97996, 81001, 'en', 'name', 'Wisconsin Department of Health Services'),
(97997, 81002, 'en', 'name', 'Gundersen Health System'),
(97998, 81003, 'en', 'name', 'Adigrat University'),
(97999, 81003, 'am', 'name', 'įŠ į‹²įŒįˆ«į‰µ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(98000, 81004, 'en', 'name', 'King Salman Center for Disability Research'),
(98001, 81004, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ سلمان لأبحاث ال؄عاقة'),
(98002, 81005, 'en', 'name', 'Texas A&M International University'),
(98003, 81005, 'es', 'name', 'Universidad Internacional de Texas A&M'),
(98004, 81006, 'en', 'name', 'Tampere University Hospital'),
(98005, 81007, 'en', 'name', 'Illawarra Health and Medical Research Institute'),
(98006, 81008, 'nl', 'name', 'Stichting HIV Monitoring'),
(98007, 81009, 'en', 'name', 'Kansas Historical Society'),
(98008, 81010, 'es', 'name', 'Universidad de Sonora'),
(98009, 81010, 'en', 'name', 'University of Sonora'),
(98010, 81011, 'en', 'name', 'Amhara Regional Health Bureau'),
(98011, 81012, 'fr', 'name', 'Grenoble Ecole de Management'),
(98012, 81013, 'pt', 'name', 'Instituto Uniemp'),
(98013, 81014, 'en', 'name', 'Fatima Jinnah Women University'),
(98014, 81014, 'ur', 'name', 'جامعہ فاطمہ جناح ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ†'),
(98015, 81015, 'no_lang_code', 'name', 'Akebia Therapeutics (United States)'),
(98016, 81016, 'en', 'name', 'Leeds Cares'),
(98017, 81017, 'en', 'name', 'Northeast Amyotrophic Lateral Sclerosis Consortium'),
(98018, 81018, 'en', 'name', 'Argentine Antarctic Institute'),
(98019, 81018, 'es', 'name', 'Instituto AntƔrtico Argentino'),
(98020, 81019, 'ca', 'name', 'Universitat de NĆ pols – L''Oriental'),
(98021, 81019, 'en', 'name', 'University of Naples - L''Orientale'),
(98022, 81019, 'it', 'name', 'UniversitĆ  degli Studi di Napoli L''Orientale'),
(98023, 81019, 'de', 'name', 'UniversitƤt Neapel L’Orientale'),
(98024, 81019, 'fr', 'name', 'UniversitƩ de naples - l''orientale'),
(98025, 81020, 'en', 'name', 'Qatar National Library'),
(98026, 81020, 'ar', 'name', 'Ł…ŁƒŲŖŲØŲ© قطر Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(98027, 81021, 'no_lang_code', 'name', 'Templeton Religion Trust'),
(98028, 81022, 'en', 'name', 'Central Food Technological Research Institute'),
(98029, 81022, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤–ą¤¾ą¤¦ą„ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(98030, 81022, 'kn', 'name', 'ą²•ą³‡ą²‚ą²¦ą³ą²°ą³€ą²Æ ಆಹಾರ ಸಂಶೋಧನಾಲಯ'),
(98031, 81022, 'ml', 'name', 'ą“øąµ†ąµ»ą“Ÿąµą“°ąµ½ ą“«ąµą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æą“•ąµą“•ąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(98032, 81023, 'en', 'name', 'Heilongjiang Provincial Academy of Agricultural Sciences'),
(98033, 81023, 'zh', 'name', 'é»‘é¾™ę±Ÿēœå†œäøšē§‘å­¦é™¢'),
(98034, 81024, 'en', 'name', 'Philippine Social Science Council'),
(98035, 81025, 'en', 'name', 'Burke Museum of Natural History and Culture'),
(98036, 81026, 'en', 'name', 'Iowa Department of Agriculture and Land Stewardship'),
(98037, 81027, 'en', 'name', 'Leibniz Centre for Tropical Marine Research'),
(98038, 81027, 'de', 'name', 'Leibniz Zentrum für Marine Tropenforschung'),
(98039, 81028, 'no_lang_code', 'name', 'JenaValve (United States)'),
(98040, 81029, 'en', 'name', 'Royal Brompton & Harefield NHS Foundation Trust'),
(98041, 81030, 'fr', 'name', 'SociƩtƩ FranƧaise de MƩdecine d''Urgence'),
(98042, 81031, 'pt', 'name', 'Instituto de Tecnologia e Pesquisa'),
(98043, 81032, 'en', 'name', 'Wuzhou University'),
(98044, 81032, 'zh', 'name', 'ę¢§å·žå­¦é™¢'),
(98045, 81033, 'en', 'name', 'Mudanjiang Normal University'),
(98046, 81033, 'zh', 'name', 'ē‰”äø¹ę±ŸåøˆčŒƒå­¦é™¢'),
(98047, 81034, 'en', 'name', 'National Council of University Research Administrators'),
(98048, 81035, 'en', 'name', 'Sacred Heart College'),
(98049, 81036, 'en', 'name', 'Centre in Green Chemistry and Catalysis'),
(98050, 81037, 'en', 'name', 'Suzhou Vocational University'),
(98051, 81037, 'zh', 'name', 'č‹å·žåø‚čŒäøšå¤§å­¦'),
(98052, 81038, 'en', 'name', 'Political Studies Association'),
(98053, 81039, 'en', 'name', 'Hunter Water'),
(98054, 81040, 'en', 'name', 'Miami Foundation'),
(98055, 81041, 'en', 'name', 'Saskatchewan Research Council (Canada)'),
(98056, 81042, 'en', 'name', 'Ministry of Agriculture & Farmers Welfare'),
(98057, 81042, 'hi', 'name', 'ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ किसान ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(98058, 81043, 'en', 'name', 'Anova Health Institute'),
(98059, 81044, 'no_lang_code', 'name', 'Implantcast (Germany)'),
(98060, 81045, 'en', 'name', 'Canadian Institute for Military and Veteran Health Research'),
(98061, 81045, 'fr', 'name', 'Institut Canadien de Recherche sur la SantƩ des Militaires et des VƩtƩrans'),
(98062, 81046, 'en', 'name', 'Strang Cancer Prevention Institute'),
(98063, 81047, 'en', 'name', 'Atrial Fibrillation NETwork'),
(98064, 81047, 'de', 'name', 'Kompetenznetz Vorhofflimmern'),
(98065, 81048, 'no_lang_code', 'name', 'Kaken Pharmaceutical (Japan)'),
(98066, 81048, 'ja', 'name', 'ē§‘ē ”č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(98067, 81049, 'en', 'name', 'Widener University'),
(98068, 81050, 'en', 'name', 'Australian Institute for Musculoskeletal Science'),
(98069, 81051, 'en', 'name', 'Regional Centre for Biotechnology'),
(98070, 81051, 'hi', 'name', 'ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą„€ą¤Æ ą¤œą„ˆą¤µą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(98071, 81052, 'no_lang_code', 'name', 'Saertex (Germany)'),
(98072, 81053, 'en', 'name', 'Zhangjiagang First People''s Hospital'),
(98073, 81054, 'en', 'name', 'Inter-American Foundation'),
(98074, 81055, 'en', 'name', 'Hunter Cancer Research Alliance'),
(98075, 81056, 'en', 'name', 'Islamia University of Bahawalpur'),
(98076, 81056, 'ur', 'name', 'Ų§Ų³Ł„Ų§Ł…ŪŒŪ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŪŲ§ŁˆŁ„Ł¾ŁˆŲ±'),
(98077, 81057, 'en', 'name', 'Arrowhead Regional Medical Center'),
(98078, 81058, 'en', 'name', 'Anshun University'),
(98079, 81059, 'en', 'name', 'International Livestock Research Institute'),
(98080, 81060, 'it', 'name', 'SocietĆ  Italiana di Cardiologia'),
(98081, 81061, 'en', 'name', 'Ministry of Public Security of the People''s Republic of China'),
(98082, 81061, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å…¬å®‰éƒØ'),
(98083, 81062, 'en', 'name', 'Affiliated Hospital of Southwest Medical University'),
(98084, 81062, 'zh', 'name', 'č„æå—åŒ»ē§‘å¤§å­¦é™„å±žäø­åŒ»åŒ»é™¢'),
(98085, 81063, 'en', 'name', 'Sheng Jing Hospital'),
(98086, 81063, 'zh', 'name', 'äø­å›½åŒ»ē§‘å¤§å­¦é™„å±žē››äŗ¬åŒ»é™¢'),
(98087, 81064, 'no_lang_code', 'name', 'Mitsubishi Heavy Industries (Japan)'),
(98088, 81064, 'ja', 'name', 'äø‰č±é‡å·„ę„­ę Ŗå¼ä¼šē¤¾');
INSERT INTO `ror_settings` VALUES
(98089, 81065, 'en', 'name', 'Tokyo International University'),
(98090, 81065, 'ja', 'name', 'ę±äŗ¬å›½éš›å¤§å­¦'),
(98091, 81066, 'en', 'name', 'Islamic University of Indonesia'),
(98092, 81066, 'id', 'name', 'Universitas Islam Indonesia'),
(98093, 81067, 'en', 'name', 'South Valley University'),
(98094, 81067, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł†ŁˆŲØ Ų§Ł„ŁˆŲ§ŲÆŁŠ'),
(98095, 81068, 'en', 'name', 'Kanazawa University'),
(98096, 81068, 'ja', 'name', '金沢大学'),
(98097, 81069, 'no_lang_code', 'name', 'Melinta Therapeutics (United States)'),
(98098, 81070, 'en', 'name', 'King Saud bin Abdulaziz University for Health Sciences'),
(98099, 81070, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ سعود بن Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ² Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲµŲ­ŁŠŲ©'),
(98100, 81071, 'en', 'name', 'Community Care'),
(98101, 81072, 'en', 'name', 'Portsmouth Hospitals NHS Trust'),
(98102, 81073, 'pl', 'name', 'Ministerstwo Zdrowia Rzeczypospolitej Polskiej'),
(98103, 81073, 'en', 'name', 'Ministry of Health'),
(98104, 81074, 'pt', 'name', 'Academia Brasileira de CiĆŖncias'),
(98105, 81074, 'en', 'name', 'Brazilian Academy of Sciences'),
(98106, 81075, 'en', 'name', 'Ellen MacArthur Foundation'),
(98107, 81076, 'no_lang_code', 'name', 'FrieslandCampina (Netherlands)'),
(98108, 81077, 'en', 'name', 'Federal University of SĆ£o Francisco Valley'),
(98109, 81077, 'pt', 'name', 'Universidade Federal do Vale do SĆ£o Francisco'),
(98110, 81078, 'en', 'name', 'Krishna Institute of Medical Sciences Deemed University'),
(98111, 81079, 'fr', 'name', 'Association Canadienne des InfirmiĆØres en Oncologie'),
(98112, 81079, 'en', 'name', 'Canadian Association of Nurses in Oncology'),
(98113, 81080, 'pt', 'name', 'IPO Porto'),
(98114, 81081, 'en', 'name', 'Rajamangala University of Technology Phra Nakhon'),
(98115, 81081, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøžąø£ąø°ąø™ąø„ąø£'),
(98116, 81082, 'en', 'name', 'Malaysian Society of Nephrology'),
(98117, 81083, 'en', 'name', 'Guangzhou Regenerative Medicine and Health Guangdong Laboratory'),
(98118, 81083, 'zh', 'name', 'å¹æå·žå†ē”ŸåŒ»å­¦äøŽå„åŗ·å¹æäøœēœå®žéŖŒå®¤'),
(98119, 81084, 'en', 'name', 'Tokyo University of Technology'),
(98120, 81084, 'ja', 'name', 'ę±äŗ¬å·„ē§‘å¤§å­¦'),
(98121, 81085, 'en', 'name', 'Kieikai Research Foundation'),
(98122, 81086, 'en', 'name', 'NASA Exoplanet Science Institute'),
(98123, 81087, 'en', 'name', 'Iranian Research Organization for Science and Technology'),
(98124, 81088, 'en', 'name', 'Triological Society'),
(98125, 81089, 'en', 'name', 'Anhui Development and Reform Commission'),
(98126, 81089, 'zh', 'name', 'å®‰å¾½ēœå‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(98127, 81090, 'en', 'name', 'Cerebral Palsy Alliance Research Foundation'),
(98128, 81091, 'fr', 'name', 'Inserm Transfert'),
(98129, 81092, 'pt', 'name', 'Universidade Nove de Julho'),
(98130, 81093, 'en', 'name', 'Southeastern Transportation Research, Innovation, Development and Education Center'),
(98131, 81094, 'en', 'name', 'Immune Tolerance Network'),
(98132, 81095, 'en', 'name', 'Johnson C. Smith University'),
(98133, 81096, 'en', 'name', 'Southern Regional Education Board'),
(98134, 81097, 'en', 'name', 'Uganda Cancer Institute'),
(98135, 81098, 'en', 'name', 'Institute of Urban Environment'),
(98136, 81098, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŸŽåø‚ēŽÆå¢ƒē ”ē©¶ę‰€'),
(98137, 81099, 'en', 'name', 'Mathematical Research Institute of Oberwolfach'),
(98138, 81099, 'de', 'name', 'Mathematisches Forschungsinstitut Oberwolfach'),
(98139, 81100, 'no_lang_code', 'name', 'Nordic Nanovector (Norway)'),
(98140, 81101, 'en', 'name', 'University of Moncton'),
(98141, 81101, 'fr', 'name', 'UniversitƩ de Moncton'),
(98142, 81102, 'en', 'name', 'Mathematical Association of America'),
(98143, 81103, 'no_lang_code', 'name', 'Shenyang Jianzhu University'),
(98144, 81103, 'zh', 'name', 'ę²ˆé˜³å»ŗē­‘å¤§å­¦'),
(98145, 81104, 'tr', 'name', 'Bağcılar Eğitim ve Araştırma Hastanesi'),
(98146, 81105, 'en', 'name', 'Seattle Foundation'),
(98147, 81106, 'en', 'name', 'Association of American Colleges and Universities'),
(98148, 81107, 'en', 'name', 'Middle Technical University'),
(98149, 81107, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„ŁˆŲ³Ų·Ł‰'),
(98150, 81108, 'en', 'name', 'National Film Preservation Foundation'),
(98151, 81109, 'en', 'name', 'Saskatchewan Canola Development Commission'),
(98152, 81110, 'en', 'name', 'Swami Rama Himalayan University'),
(98153, 81110, 'hi', 'name', 'ą¤øą„ą¤µą¤¾ą¤®ą„€ राम हिमालयन ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(98154, 81111, 'en', 'name', 'Bavarian State Ministry of the Environment and Consumer Protection'),
(98155, 81111, 'de', 'name', 'Bayerisches Staatsministerium für Umwelt und Verbraucherschutz'),
(98156, 81112, 'en', 'name', 'Helmholtz Alberta Initiative'),
(98157, 81113, 'en', 'name', 'Canadian Orthopaedic Trauma Society'),
(98158, 81114, 'en', 'name', 'Scotland and Northern Ireland Forum for Environmental Research'),
(98159, 81115, 'en', 'name', 'Gray Foundation'),
(98160, 81116, 'de', 'name', 'Max Planck Institut für Chemie - Otto Hahn Institut'),
(98161, 81116, 'en', 'name', 'Max Planck Institute for Chemistry'),
(98162, 81117, 'en', 'name', 'Virginia G Piper Charitable Trust'),
(98163, 81118, 'en', 'name', 'Polar Research Institute of China'),
(98164, 81118, 'zh', 'name', 'äø­å›½ęžåœ°ē ”ē©¶äø­åæƒ'),
(98165, 81119, 'en', 'name', 'Hong Kong Anti-Cancer Society'),
(98166, 81120, 'en', 'name', 'National Institute for Health Care Management'),
(98167, 81121, 'no_lang_code', 'name', 'Blue Ridge Research and Consulting (United States)'),
(98168, 81122, 'en', 'name', 'Max Planck Institute of Quantum Optics'),
(98169, 81122, 'de', 'name', 'Max-Planck-Institut für Quantenoptik'),
(98170, 81123, 'nl', 'name', 'Nederlandse Federatie van Universitair Medische Centra'),
(98171, 81123, 'en', 'name', 'Netherlands Federation of University Medical Centres'),
(98172, 81124, 'en', 'name', 'Poznan Supercomputing and Networking Center'),
(98173, 81125, 'en', 'name', 'Research Center for Ecology and Environment of Central Asia'),
(98174, 81125, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äø­äŗšē”Ÿę€äøŽēŽÆå¢ƒē ”ē©¶äø­åæƒ'),
(98175, 81126, 'en', 'name', 'National Museum of Marine Biology and Aquarium'),
(98176, 81127, 'en', 'name', 'Institute for Health Metrics and Evaluation'),
(98177, 81128, 'en', 'name', 'Institute for Scientific Interchange'),
(98178, 81128, 'it', 'name', 'Istituto per l''Interscambio Scientifico'),
(98179, 81129, 'no_lang_code', 'name', 'Kairos (United States)'),
(98180, 81130, 'en', 'name', 'Childhood Arthritis and RheumatolĀ­ogy Research Alliance'),
(98181, 81131, 'hr', 'name', 'Klinička Bolnica Dubrava'),
(98182, 81131, 'en', 'name', 'University Hospital Dubrava'),
(98183, 81132, 'fr', 'name', 'Conseil rƩgional du Centre-Val de Loire'),
(98184, 81133, 'en', 'name', 'National Institute of Ecology'),
(98185, 81133, 'ko', 'name', 'źµ­ė¦½ģƒķƒœģ›'),
(98186, 81134, 'en', 'name', 'College of Staten Island'),
(98187, 81135, 'en', 'name', 'Jack Brockhoff Foundation'),
(98188, 81136, 'en', 'name', 'Kaiser Permanente Washington Health Research Institute'),
(98189, 81137, 'en', 'name', 'Institute of Solid State Chemistry'),
(98190, 81137, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии тверГого тела Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(98191, 81138, 'en', 'name', 'Methodist Hospital Foundation'),
(98192, 81139, 'en', 'name', 'State Ethnic Affairs Commission'),
(98193, 81140, 'en', 'name', 'African Union'),
(98194, 81141, 'en', 'name', 'Mote Marine Laboratory'),
(98195, 81142, 'en', 'name', 'National University of San Marcos'),
(98196, 81142, 'es', 'name', 'Universidad Nacional Mayor de San Marcos'),
(98197, 81143, 'no_lang_code', 'name', 'Rakuno Gakuen University'),
(98198, 81143, 'ja', 'name', 'é…Ŗč¾²å­¦åœ’å¤§å­¦'),
(98199, 81144, 'en', 'name', 'State Key Laboratory of Information Engineering in Surveying Mapping and Remote Sensing'),
(98200, 81145, 'no_lang_code', 'name', 'MannKind Corporation (United States)'),
(98201, 81146, 'en', 'name', 'Kurdistan University of Medical Sciences'),
(98202, 81146, 'ku', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲÆŲ±Ł…Ų§Ł†ŪŒ کردستان'),
(98203, 81147, 'no_lang_code', 'name', 'Oracle (United Kingdom)'),
(98204, 81148, 'no_lang_code', 'name', 'Desitin Arzneimittel (Germany)'),
(98205, 81149, 'en', 'name', 'Shandong University of Technology'),
(98206, 81149, 'zh', 'name', 'å±±äøœē†å·„å¤§å­¦'),
(98207, 81150, 'en', 'name', 'Natural Hazards Research Platform'),
(98208, 81151, 'fr', 'name', 'Fondation FondaMental'),
(98209, 81152, 'no_lang_code', 'name', 'Universal Display Corporation'),
(98210, 81153, 'en', 'name', 'Swedish Transport Administration'),
(98211, 81154, 'en', 'name', 'Centre for Medical Systems Biology'),
(98212, 81155, 'cy', 'name', 'Llywodraeth Cymru'),
(98213, 81155, 'en', 'name', 'Welsh Government'),
(98214, 81156, 'en', 'name', 'Charles Darwin Foundation'),
(98215, 81157, 'en', 'name', 'British Society for Research on Ageing'),
(98216, 81158, 'en', 'name', 'John Carroll University'),
(98217, 81159, 'en', 'name', 'University of Nizwa'),
(98218, 81159, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†Ų²ŁˆŁ‰'),
(98219, 81160, 'en', 'name', 'National Institute of Development Administration'),
(98220, 81160, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąøšąø±ąø“ąø‘ąø“ąø•ąøžąø±ąø’ąø™ąøšąø£ąø“ąø«ąø²ąø£ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(98221, 81161, 'en', 'name', 'Yorkshire Forward'),
(98222, 81162, 'en', 'name', 'Qinghai University for Nationalities'),
(98223, 81162, 'zh', 'name', 'é’ęµ·ę°‘ę—å¤§å­¦'),
(98224, 81163, 'no_lang_code', 'name', 'GemVax & KAEL (South Korea)'),
(98225, 81163, 'ko', 'name', '젬백스 & ģ¹“ģ—˜'),
(98226, 81164, 'en', 'name', 'Louisiana State University in Shreveport'),
(98227, 81164, 'fr', 'name', 'UniversitĆ© d''Ɖtat de louisiane Ć  shreveport'),
(98228, 81165, 'en', 'name', 'Izhevsk State Technical University'),
(98229, 81165, 'ru', 'name', 'Ижевский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. Š¢. Калашникова'),
(98230, 81166, 'en', 'name', 'Suan Sunandha Rajabhat University'),
(98231, 81166, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąø§ąø™ąøŖąøøąø™ąø±ąø™ąø—ąø²'),
(98232, 81167, 'en', 'name', 'National Time Service Center'),
(98233, 81167, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å›½å®¶ęŽˆę—¶äø­åæƒ'),
(98234, 81168, 'sw', 'name', 'Chuo Kikuu cha Afya na Sayansi Shirikishi Muhimbili'),
(98235, 81168, 'en', 'name', 'Muhimbili University of Health and Allied Sciences'),
(98236, 81169, 'en', 'name', 'Irkutsk State University'),
(98237, 81169, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98238, 81170, 'no_lang_code', 'name', 'Tandem Diabetes Care (United States)'),
(98239, 81171, 'no_lang_code', 'name', 'Spark Therapeutics (United States)'),
(98240, 81172, 'en', 'name', 'State Key Laboratory of Oil and Gas Reservoir Geology and Exploitation'),
(98241, 81172, 'zh', 'name', 'ę²¹ę°”č—åœ°č“ØåŠå¼€å‘å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98242, 81173, 'en', 'name', 'European Association for Endoscopic Surgery'),
(98243, 81174, 'en', 'name', 'Ahmanson Foundation'),
(98244, 81175, 'en', 'name', 'Xinjiang Academy of Agricultural Sciences'),
(98245, 81175, 'zh', 'name', 'ę–°ē–†å†œäøšē§‘å­¦é™¢'),
(98246, 81176, 'en', 'name', 'JFE 21st Century Foundation'),
(98247, 81176, 'ja', 'name', 'JFE21世瓀貔団'),
(98248, 81177, 'ms', 'name', 'Agensi Nuklear Malaysia'),
(98249, 81177, 'en', 'name', 'Malaysian Nuclear Agency'),
(98250, 81178, 'en', 'name', 'New England Research Institutes'),
(98251, 81179, 'en', 'name', 'Hamline University'),
(98252, 81180, 'en', 'name', 'Santa Monica College'),
(98253, 81181, 'de', 'name', 'Hermann und Lilly Schilling-Stiftung'),
(98254, 81182, 'pt', 'name', 'Centro de Desenvolvimento da Tecnologia Nuclear'),
(98255, 81183, 'en', 'name', 'Oncode Institute'),
(98256, 81184, 'en', 'name', 'South African Association for Marine Biological Research'),
(98257, 81185, 'en', 'name', 'Western Health'),
(98258, 81186, 'en', 'name', 'Lincoln Memorial University'),
(98259, 81187, 'en', 'name', 'United States Army War College'),
(98260, 81188, 'no_lang_code', 'name', 'Mateon Therapeutics (United States)'),
(98261, 81189, 'en', 'name', 'National Jewish Health'),
(98262, 81190, 'en', 'name', 'Air Force Engineering University'),
(98263, 81190, 'zh', 'name', '中国人民解放军空军巄程大学'),
(98264, 81191, 'es', 'name', 'Sociedad EspaƱola de Reumatologƭa'),
(98265, 81192, 'en', 'name', 'Australian Trade and Investment Commission'),
(98266, 81193, 'en', 'name', 'American Institute of Steel Construction'),
(98267, 81194, 'en', 'name', 'Ministry of National Education, Vocational Training, Higher Education and Scientific Research'),
(98268, 81194, 'fr', 'name', 'Ministère de l''Education Nationale, de la Formation Professionnelle, de l''Enseignement Supérieur & de la Recherche Scientifique'),
(98269, 81194, 'ar', 'name', 'Ų§Ł„Ł…Ł…Ł„ŁƒŲ© Ų§Ł„Ł…ŲŗŲ±ŲØŁŠŲ© - وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© و Ų§Ł„ŲŖŁƒŁˆŁŠŁ† Ų§Ł„Ł…Ł‡Ł†ŁŠ و Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ و البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(98270, 81195, 'en', 'name', 'Izaak Walton Killam Health Centre'),
(98271, 81196, 'en', 'name', 'Qingdao University of Technology'),
(98272, 81196, 'zh', 'name', 'é’å²›ē†å·„å¤§å­¦'),
(98273, 81197, 'en', 'name', 'Metakids'),
(98274, 81198, 'no_lang_code', 'name', 'Psyadon Pharmaceuticals (United States)'),
(98275, 81199, 'en', 'name', 'Chinese Society of Endocrinology'),
(98276, 81199, 'zh', 'name', 'äø­å›½å†…åˆ†ę³Œå­¦ä¼š'),
(98277, 81200, 'en', 'name', 'Ministry of Transportation of Ontario'),
(98278, 81200, 'fr', 'name', 'MinistĆØre des Transports'),
(98279, 81201, 'es', 'name', 'Centro de Investigación Biomédica en Red de Fisiopatología de la Obesidad y Nutrición'),
(98280, 81201, 'en', 'name', 'Spanish Biomedical Research Centre in Physiopathology of Obesity and Nutrition'),
(98281, 81202, 'en', 'name', 'Arturo Prat University'),
(98282, 81202, 'es', 'name', 'Universidad Arturo Prat'),
(98283, 81203, 'en', 'name', 'All-Russian Institute of Plant Protection'),
(98284, 81203, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ защиты растений'),
(98285, 81204, 'en', 'name', 'Consumer Healthcare Products Association'),
(98286, 81205, 'en', 'name', 'Saitama University'),
(98287, 81205, 'ja', 'name', 'åŸ¼ēŽ‰å¤§å­¦'),
(98288, 81206, 'en', 'name', 'Ekiti State University'),
(98289, 81207, 'en', 'name', 'Saginaw Valley State University'),
(98290, 81208, 'en', 'name', 'Second Affiliated Hospital of Soochow University'),
(98291, 81209, 'en', 'name', 'BioTechMed-Graz'),
(98292, 81210, 'en', 'name', 'Rajamangala University of Technology Srivijaya'),
(98293, 81210, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøØąø£ąøµąø§ąø“ąøŠąø±ąø¢'),
(98294, 81211, 'en', 'name', 'University of Information Technology and Management in Rzeszow'),
(98295, 81211, 'pl', 'name', 'Wyższa Szkoła Informatyki i Zarządzania w Rzeszowie'),
(98296, 81212, 'en', 'name', 'Tourettes Action'),
(98297, 81213, 'en', 'name', 'Military Institute of Aviation Medicine'),
(98298, 81213, 'pl', 'name', 'Wojskowy Instytut Medycyny Lotniczej'),
(98299, 81214, 'en', 'name', 'Louisiana State University Agricultural Center'),
(98300, 81215, 'en', 'name', 'Shanghai Municipal Agricultural Commission'),
(98301, 81215, 'zh', 'name', 'äøŠęµ·åø‚å†œäøšå§”å‘˜ä¼š'),
(98302, 81216, 'en', 'name', 'Wolkite University'),
(98303, 81217, 'en', 'name', 'State Key Laboratory of Pollution Control and Resource Reuse'),
(98304, 81217, 'zh', 'name', 'ę±”ęŸ“ęŽ§åˆ¶äøŽčµ„ęŗåŒ–ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98305, 81218, 'no_lang_code', 'name', 'Kōchi University'),
(98306, 81218, 'ja', 'name', '高矄大学'),
(98307, 81219, 'nl', 'name', 'Nederlandse Vereniging voor Gastroenterologie'),
(98308, 81220, 'en', 'name', 'Centre of Excellence in Mathematics'),
(98309, 81221, 'en', 'name', 'Society of the Cincinnati'),
(98310, 81222, 'en', 'name', 'Society of Anesthesia and Sleep Medicine'),
(98311, 81223, 'fr', 'name', 'UniversitƩ Sultan Moulay Slimane'),
(98312, 81224, 'en', 'name', 'Florida Polytechnic University'),
(98313, 81225, 'en', 'name', 'Sobolev Institute of Mathematics'),
(98314, 81225, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики им. Š”. Š›. Доболева Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(98315, 81226, 'en', 'name', 'Luoyang Normal University'),
(98316, 81226, 'zh', 'name', 'ę“›é˜³åøˆčŒƒå­¦é™¢'),
(98317, 81227, 'en', 'name', 'Danish Football Association'),
(98318, 81227, 'da', 'name', 'Dansk Boldspil-Union'),
(98319, 81228, 'en', 'name', 'University College of Medical Sciences'),
(98320, 81229, 'en', 'name', 'American University of the Middle East'),
(98321, 81229, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في الؓرق Ų§Ł„Ų£ŁˆŲ³Ų·'),
(98322, 81230, 'en', 'name', 'National Center for Mathematics and Interdisciplinary Sciences'),
(98323, 81230, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å›½å®¶ę•°å­¦äøŽäŗ¤å‰ē§‘å­¦äø­åæƒ'),
(98324, 81231, 'en', 'name', 'Shenzhen Research Institute of Big Data'),
(98325, 81231, 'zh', 'name', 'ę·±åœ³åø‚å¤§ę•°ę®ē ”ē©¶é™¢'),
(98326, 81232, 'en', 'name', 'Administration of Ocean and Fisheries of Guangdong Province'),
(98327, 81233, 'de', 'name', 'Marga und Walter Boll - Stiftung'),
(98328, 81234, 'fr', 'name', 'UniversitƩ west chester de pennsylvanie'),
(98329, 81234, 'en', 'name', 'West Chester University'),
(98330, 81235, 'en', 'name', 'Mauritius Research Council'),
(98331, 81236, 'en', 'name', 'The Lowy Medical Research Institute'),
(98332, 81237, 'en', 'name', 'Monmouth University'),
(98333, 81237, 'es', 'name', 'Universidad de Monmouth'),
(98334, 81238, 'pl', 'name', 'Akademia Techniczno-Humanistyczna w Bielsku-Białej'),
(98335, 81238, 'en', 'name', 'University of Bielsko-Biała'),
(98336, 81239, 'en', 'name', 'State Key Laboratory of Building Safety and Built Environment'),
(98337, 81240, 'fr', 'name', 'Institut National d''Assurance Maladie InvaliditƩ'),
(98338, 81240, 'en', 'name', 'National Institute for Health and Disability Insurance'),
(98339, 81240, 'nl', 'name', 'Rijksinstituut voor Ziekte- en Invaliditeitsverzekering'),
(98340, 81241, 'en', 'name', 'Guy Harvey Ocean Foundation'),
(98341, 81242, 'en', 'name', 'Victorian Clinical Genetics Services'),
(98342, 81243, 'en', 'name', 'Royal Norwegian Society of Sciences and Letters'),
(98343, 81244, 'en', 'name', 'Society for Healthcare Epidemiology of America'),
(98344, 81245, 'en', 'name', 'American Association of Colleges of Nursing'),
(98345, 81246, 'en', 'name', 'Guizhou Minzu University'),
(98346, 81246, 'zh', 'name', 'č“µå·žę°‘ę—å¤§å­¦'),
(98347, 81247, 'en', 'name', 'Centre for Marine Socioecology'),
(98348, 81248, 'en', 'name', 'University of Tikrit'),
(98349, 81248, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© تكريت'),
(98350, 81249, 'en', 'name', 'The Neurosciences Foundation'),
(98351, 81250, 'en', 'name', 'Kaohsiung Medical University Chung-Ho Memorial Hospital'),
(98352, 81251, 'en', 'name', 'Translational Genomics Research Institute'),
(98353, 81252, 'en', 'name', 'Third Affiliated Hospital of Harbin Medical University'),
(98354, 81252, 'zh', 'name', 'å“ˆå°”ę»ØåŒ»ē§‘å¤§å­¦ē¬¬äø‰äø“åŗŠåŒ»å­¦é™¢'),
(98355, 81253, 'en', 'name', 'Washington Academy of Sciences'),
(98356, 81254, 'en', 'name', 'Hosokawa Powder Technology Foundation'),
(98357, 81254, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ćƒ›ć‚½ć‚«ćƒÆē²‰ä½“å·„å­¦ęŒÆčˆˆč²”å›£'),
(98358, 81255, 'es', 'name', 'Centro de Investigación Biomédica en Red Diabetes y Enfermedades Metabólicas Asociadas'),
(98359, 81256, 'en', 'name', 'Edinburgh & Lothians Health Foundation'),
(98360, 81257, 'en', 'name', 'GW Medical Faculty Associates'),
(98361, 81258, 'no_lang_code', 'name', 'Omeros Corporation (United States)'),
(98362, 81259, 'fr', 'name', 'Association pour l’Assistance et la RĆ©habilitation Ć  Domicile'),
(98363, 81260, 'es', 'name', 'Instituto Nacional de Investigaciones Agropecuarias'),
(98364, 81261, 'no_lang_code', 'name', 'Fukuyama University'),
(98365, 81261, 'ja', 'name', 'ē¦å±±å¤§å­¦'),
(98366, 81262, 'no_lang_code', 'name', 'Shodor'),
(98367, 81263, 'nl', 'name', 'Ministerie van Binnenlandse Zaken en Koninkrijksrelaties'),
(98368, 81263, 'en', 'name', 'Ministry of the Interior and Kingdom Relations'),
(98369, 81264, 'en', 'name', 'Navsari Agricultural University'),
(98370, 81264, 'gu', 'name', 'ąŖ•ą«ƒąŖ·ąŖæ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, નવસારી'),
(98371, 81264, 'te', 'name', 'నవసరి ą°µą±ą°Æą°µą°øą°¾ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°‚'),
(98372, 81265, 'no_lang_code', 'name', 'Diamond V (United States)'),
(98373, 81266, 'en', 'name', 'Swedish Institute'),
(98374, 81267, 'en', 'name', 'Institute of Materials Science'),
(98375, 81267, 'vi', 'name', 'Viện Khoa hį»c Vįŗ­t liệu'),
(98376, 81268, 'en', 'name', 'Iqra National University'),
(98377, 81268, 'ur', 'name', 'اقراؔ Ł†ŪŒŲ“Ł†Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(98378, 81269, 'en', 'name', 'Turing Foundation'),
(98379, 81270, 'no_lang_code', 'name', 'Liander (Netherlands)'),
(98380, 81271, 'en', 'name', 'Atlas Network'),
(98381, 81272, 'en', 'name', 'Scottish Enterprise'),
(98382, 81273, 'en', 'name', 'Beloit College'),
(98383, 81274, 'no_lang_code', 'name', 'Elanco (United States)'),
(98384, 81275, 'de', 'name', 'RenƩ und Susanne Braginsky Stiftung'),
(98385, 81276, 'en', 'name', 'SkƄne University Hospital'),
(98386, 81276, 'sv', 'name', 'SkƄnes universitetssjukhus'),
(98387, 81277, 'en', 'name', 'Propionic Acidemia Foundation'),
(98388, 81278, 'en', 'name', 'Institute for Computational Science and Technology'),
(98389, 81279, 'en', 'name', 'Transport Canada'),
(98390, 81279, 'fr', 'name', 'Transports Canada'),
(98391, 81280, 'en', 'name', 'Jinzhong University'),
(98392, 81280, 'zh', 'name', '晋中学院'),
(98393, 81281, 'en', 'name', 'Lefkofsky Family Foundation'),
(98394, 81282, 'en', 'name', 'National Association of Orthopaedic Nurses'),
(98395, 81283, 'en', 'name', 'Meisei University'),
(98396, 81283, 'ja', 'name', 'ę˜Žę˜Ÿå¤§å­¦'),
(98397, 81284, 'en', 'name', 'Liaoning Shihua University'),
(98398, 81284, 'zh', 'name', 'č¾½å®ēŸ³ę²¹åŒ–å·„å¤§å­¦'),
(98399, 81285, 'en', 'name', 'Hunan City University'),
(98400, 81285, 'zh', 'name', 'ę¹–å—åŸŽåø‚å­¦é™¢'),
(98401, 81286, 'no_lang_code', 'name', 'Omron (Japan)'),
(98402, 81286, 'ja', 'name', 'ć‚Ŗćƒ ćƒ­ćƒ³ę Ŗå¼ä¼šē¤¾'),
(98403, 81287, 'nl', 'name', 'Nederlandse Vereniging voor Tropische Geneeskunde'),
(98404, 81288, 'en', 'name', 'Lampang Rajabhat University'),
(98405, 81288, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø„ąø³ąø›ąø²ąø‡'),
(98406, 81289, 'en', 'name', 'National Agency for Social Insurance'),
(98407, 81290, 'en', 'name', 'Osteoporosis Canada'),
(98408, 81291, 'en', 'name', 'Society for Social Studies of Science'),
(98409, 81292, 'es', 'name', 'Fundación Pública Andaluza para la Gestión de la Investigación en Salud de Sevilla'),
(98410, 81293, 'en', 'name', 'Utah Academy of Sciences and Arts and Letters'),
(98411, 81294, 'en', 'name', 'VƤinƶ and Laina Kivi Foundation'),
(98412, 81294, 'fi', 'name', 'VƤinƶ ja Laina Kiven SƤƤtiƶ'),
(98413, 81295, 'pt', 'name', 'Universidade Regional de Blumenau'),
(98414, 81296, 'en', 'name', 'American Speech Language Hearing Association'),
(98415, 81297, 'it', 'name', 'Ministero dell''Ambiente e della Tutela del Territorio e del Mare'),
(98416, 81297, 'en', 'name', 'Ministry of the Environment and Protection of Land and Sea'),
(98417, 81298, 'en', 'name', 'National Agricultural Research and Innovation Centre'),
(98418, 81298, 'hu', 'name', 'Nemzeti AgrÔrkutatÔsi és InnovÔciós Központ'),
(98419, 81299, 'en', 'name', 'Ji Hua Laboratory'),
(98420, 81299, 'zh', 'name', 'å­£åŽå®žéŖŒå®¤'),
(98421, 81300, 'en', 'name', 'Leibniz Institute of Plant Biochemistry'),
(98422, 81300, 'de', 'name', 'Leibniz-Institut für Pflanzenbiochemie'),
(98423, 81301, 'no_lang_code', 'name', 'Voyager Therapeutics (United States)'),
(98424, 81302, 'en', 'name', 'Jiangsu Agri-animal Husbandry Vocational College'),
(98425, 81302, 'zh', 'name', 'ę±Ÿč‹ē‰§åŒ»å­¦é™¢'),
(98426, 81303, 'no_lang_code', 'name', 'VistaGen Therapeutics (United States)'),
(98427, 81304, 'en', 'name', 'Qom Islamic Azad University'),
(98428, 81304, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ قم'),
(98429, 81305, 'en', 'name', 'Max Planck Institute for Polymer Research'),
(98430, 81305, 'de', 'name', 'Max-Planck-Institut für Polymerforschung'),
(98431, 81306, 'en', 'name', 'Information Technology University'),
(98432, 81307, 'fi', 'name', 'Maire Taposen SƤƤtiƶ'),
(98433, 81308, 'en', 'name', 'Nanjing Forest Police College'),
(98434, 81308, 'zh', 'name', 'å—äŗ¬ę£®ęž—č­¦åÆŸå­¦é™¢'),
(98435, 81309, 'en', 'name', 'EuroSpine'),
(98436, 81310, 'en', 'name', 'ECOG-ACRIN Cancer Research Group'),
(98437, 81311, 'en', 'name', 'eThekwini Municipality'),
(98438, 81312, 'es', 'name', 'Comisión Nacional para el Conocimiento y Uso de la Biodiversidad'),
(98439, 81312, 'en', 'name', 'National Commission for the Knowledge and Use of Biodiversity'),
(98440, 81313, 'en', 'name', 'Islamic Azad University, Mashhad'),
(98441, 81313, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد مؓهد'),
(98442, 81314, 'no_lang_code', 'name', 'BioVentrix (United States)'),
(98443, 81315, 'en', 'name', 'Colorado Office of Economic Development and International Trade'),
(98444, 81316, 'fr', 'name', 'Fondation Neurodis'),
(98445, 81317, 'en', 'name', 'Virginia–Maryland College of Veterinary Medicine'),
(98446, 81318, 'de', 'name', 'Bayerisches Staatsministerium für Ernährung, Landwirtschaft und Forsten'),
(98447, 81319, 'en', 'name', 'Tübitak National Metrology Institute'),
(98448, 81319, 'tr', 'name', 'Ulusal Metroloji Enstitüsü'),
(98449, 81320, 'en', 'name', 'Royal Marsden NHS Foundation Trust'),
(98450, 81321, 'en', 'name', 'Sophia University'),
(98451, 81321, 'ja', 'name', 'äøŠę™ŗå¤§å­¦'),
(98452, 81322, 'en', 'name', 'Yazd University'),
(98453, 81322, 'fa', 'name', 'دانؓگاه یزد'),
(98454, 81323, 'de', 'name', 'Krebsforschung Schweiz'),
(98455, 81324, 'no_lang_code', 'name', 'Jiamusi University'),
(98456, 81324, 'zh', 'name', 'ä½³ęœØę–Æå¤§å­¦'),
(98457, 81325, 'no_lang_code', 'name', 'Qinetiq (United Kingdom)'),
(98458, 81326, 'en', 'name', 'Denver Museum of Nature and Science'),
(98459, 81327, 'en', 'name', 'Townsville Hospital'),
(98460, 81328, 'no_lang_code', 'name', 'Electro Medical Systems (Switzerland)'),
(98461, 81329, 'en', 'name', 'Adolf Messer Foundation'),
(98462, 81329, 'de', 'name', 'Adolf Messer Stiftung'),
(98463, 81330, 'en', 'name', 'Susquehanna University'),
(98464, 81330, 'fr', 'name', 'UniversitƩ de Susquehanna'),
(98465, 81331, 'en', 'name', 'Zhongnan Hospital of Wuhan University'),
(98466, 81332, 'en', 'name', 'Miscarriage Association'),
(98467, 81333, 'en', 'name', 'Nanjing Hydraulic Research Institute'),
(98468, 81333, 'zh', 'name', 'ę°“åˆ©éƒØäŗ¤é€ščæč¾“éƒØå›½å®¶čƒ½ęŗå±€å—äŗ¬ę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(98469, 81334, 'en', 'name', 'South African Institute for Aquatic Biodiversity'),
(98470, 81335, 'en', 'name', 'Secretariat of Agriculture, Livestock, Rural Development, Fisheries and Food'),
(98471, 81335, 'es', 'name', 'Secretaría de Agricultura, Ganadería, Desarrollo Rural, Pesca y Alimentación'),
(98472, 81336, 'en', 'name', 'The Rothschild Archive'),
(98473, 81337, 'da', 'name', 'Spar Nord Fonden'),
(98474, 81337, 'en', 'name', 'Spar Nord Foundation'),
(98475, 81338, 'en', 'name', 'NIHR Southampton Biomedical Research Centre'),
(98476, 81339, 'en', 'name', 'Pound Civil Justice Institute'),
(98477, 81340, 'no_lang_code', 'name', 'Esperion Therapeutics (United States)'),
(98478, 81341, 'en', 'name', 'Mid Atlantic Fishery Management Council'),
(98479, 81342, 'no_lang_code', 'name', 'Inmos'),
(98480, 81343, 'de', 'name', 'Deutsche Gesellschaft für Internationale Zusammenarbeit'),
(98481, 81343, 'en', 'name', 'German Corporation for International Cooperation'),
(98482, 81344, 'en', 'name', 'District of Columbia Space Grant Consortium'),
(98483, 81345, 'en', 'name', 'Information Technology Industry Development Agency'),
(98484, 81346, 'id', 'name', 'Universitas Muhammadiyah Aceh'),
(98485, 81347, 'en', 'name', 'Islamic Azad University of Nishapur'),
(98486, 81347, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł†ŪŒŲ“Ų§ŲØŁˆŲ±'),
(98487, 81348, 'en', 'name', 'State University of Medan'),
(98488, 81348, 'id', 'name', 'Universitas Negeri Medan'),
(98489, 81349, 'fr', 'name', 'UniversitƩ de Saint-Boniface'),
(98490, 81350, 'en', 'name', 'Institute of Microelectronics'),
(98491, 81350, 'zh', 'name', '中国科学院微电子研究所'),
(98492, 81351, 'en', 'name', 'Bloomberg Philanthropies'),
(98493, 81352, 'en', 'name', 'Korea Institute of Ceramic Engineering and Technology'),
(98494, 81353, 'en', 'name', 'Clore Israel Foundation'),
(98495, 81353, 'he', 'name', 'קרן ×§×œ×•×Ø ×œ×™×©×Ø××œ'),
(98496, 81354, 'en', 'name', 'Bahria University'),
(98497, 81354, 'ur', 'name', 'Ų¬Ų§Ł…Ų¹Ū‚ بحریہ'),
(98498, 81355, 'en', 'name', 'Materials innovation institute'),
(98499, 81356, 'en', 'name', 'Ministry of Environment and Energy'),
(98500, 81356, 'el', 'name', '΄πουργείο Παραγωγικής Ī‘Ī½Ī±ĻƒĻ…Ī³ĪŗĻĻŒĻ„Ī·ĻƒĪ·Ļ‚, Περιβάλλοντος και Ενέργειας'),
(98501, 81357, 'en', 'name', 'Rural Sociological Society'),
(98502, 81358, 'en', 'name', 'Children’s Leukemia Research Association'),
(98503, 81359, 'en', 'name', 'BIOCAP Canada Foundation'),
(98504, 81360, 'en', 'name', 'ARC Centre of Excellence for Integrative Brain Function'),
(98505, 81361, 'no_lang_code', 'name', 'Dr. F.P. Fischer-Stichting (Netherlands)'),
(98506, 81362, 'en', 'name', 'National Bureau of Fish Genetic Resources'),
(98507, 81363, 'en', 'name', 'Maulana Azad National Institute of Technology'),
(98508, 81364, 'en', 'name', 'KIIT University'),
(98509, 81365, 'no_lang_code', 'name', 'Arqule (United States)'),
(98510, 81366, 'en', 'name', 'Hemophilia Center of Western Pennsylvania'),
(98511, 81367, 'sv', 'name', 'Medicinska Understƶdsfƶreningen Liv och HƤlsa'),
(98512, 81368, 'en', 'name', 'Psychiatry Research Trust'),
(98513, 81369, 'en', 'name', 'Chang Bing Show Chwan Memorial Hospital'),
(98514, 81370, 'en', 'name', 'Society for the Study of Reproduction'),
(98515, 81371, 'en', 'name', 'Syarif Hidayatullah State Islamic University Jakarta'),
(98516, 81371, 'id', 'name', 'Universitas Islam Negeri Syarif Hidayatullah Jakarta'),
(98517, 81372, 'en', 'name', 'National University of Science and Technology'),
(98518, 81372, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ МИДиД'),
(98519, 81373, 'en', 'name', 'Xinzhou Teachers University'),
(98520, 81373, 'zh', 'name', 'åæ»å·žåøˆčŒƒå­¦é™¢'),
(98521, 81374, 'en', 'name', 'Massachusetts Historical Society'),
(98522, 81375, 'en', 'name', 'Gdańsk Medical University'),
(98523, 81375, 'pl', 'name', 'Gdański Uniwersytet Medyczny'),
(98524, 81376, 'en', 'name', 'Global Cancer Institute'),
(98525, 81377, 'en', 'name', 'Punjab Engineering College'),
(98526, 81377, 'hi', 'name', 'ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ ą¤‡ą¤‚ą¤œą¤æą¤Øą¤æą¤Æą¤°ą¤æą¤‚ą¤— ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(98527, 81378, 'no_lang_code', 'name', 'Intarcia Therapeutics (United States)'),
(98528, 81379, 'en', 'name', 'Ara Institute of Canterbury'),
(98529, 81380, 'en', 'name', 'Royal Forest Department'),
(98530, 81380, 'th', 'name', 'ąøąø£ąø”ąø›ą¹ˆąø²ą¹„ąø”ą¹‰'),
(98531, 81381, 'en', 'name', 'Sheffield Children''s NHS Foundation Trust'),
(98532, 81382, 'no_lang_code', 'name', 'Renishaw (United Kingdom)'),
(98533, 81383, 'en', 'name', 'Yale New Haven Health System'),
(98534, 81384, 'en', 'name', 'Alberto Hurtado University'),
(98535, 81384, 'es', 'name', 'Universidad Alberto Hurtado'),
(98536, 81385, 'en', 'name', 'Banff Centre'),
(98537, 81386, 'no_lang_code', 'name', 'Ultragenyx Pharmaceutical (United States)'),
(98538, 81387, 'en', 'name', 'Regional Research Council in Uppsala-Ɩrebro Region'),
(98539, 81388, 'en', 'name', 'Nanchang Institute of Technology'),
(98540, 81388, 'zh', 'name', 'å—ę˜Œå·„ēØ‹å­¦é™¢'),
(98541, 81389, 'en', 'name', 'Hoshi University'),
(98542, 81389, 'ja', 'name', 'ę˜Ÿč–¬ē§‘å¤§å­¦'),
(98543, 81390, 'en', 'name', 'Chinese Physical Society'),
(98544, 81390, 'zh', 'name', 'äø­å›½ē‰©ē†å­¦ä¼š'),
(98545, 81391, 'en', 'name', 'University of the West Indies System'),
(98546, 81392, 'no_lang_code', 'name', 'Calithera (United States)'),
(98547, 81393, 'en', 'name', 'Magee-Womens Research Institute'),
(98548, 81394, 'en', 'name', 'Changi General Hospital'),
(98549, 81395, 'no_lang_code', 'name', 'Guiyang University'),
(98550, 81395, 'zh', 'name', 'č“µé˜³å­¦é™¢'),
(98551, 81396, 'en', 'name', 'Azabu University'),
(98552, 81396, 'ja', 'name', '麻布大学'),
(98553, 81397, 'de', 'name', 'Deutsche Gesellschaft für Kardiologie – Herz- und Kreislaufforschung e.V.'),
(98554, 81397, 'en', 'name', 'German Cardiac Society'),
(98555, 81398, 'no_lang_code', 'name', 'Dermira (United States)'),
(98556, 81399, 'en', 'name', 'Kuwait College of Science and Technology'),
(98557, 81399, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁˆŁŠŲŖ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(98558, 81400, 'en', 'name', 'National Cerebral and Cardiovascular Center'),
(98559, 81400, 'ja', 'name', 'å›½ē«‹å¾Ŗē’°å™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(98560, 81401, 'en', 'name', 'Shahed University'),
(98561, 81401, 'fa', 'name', 'دانؓگاه ؓاهد'),
(98562, 81402, 'en', 'name', 'Ambo University'),
(98563, 81402, 'om', 'name', 'Yunivarsiitii Amboo'),
(98564, 81402, 'am', 'name', 'įŠ įˆį‰¦ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(98565, 81403, 'en', 'name', 'Council of Economic Advisers'),
(98566, 81404, 'en', 'name', 'Changhai Hospital'),
(98567, 81405, 'en', 'name', 'Saskatchewan Cancer Agency'),
(98568, 81406, 'en', 'name', 'Social Welfare Department'),
(98569, 81406, 'zh', 'name', 'ē¤¾ęœƒē¦åˆ©ē½²'),
(98570, 81407, 'en', 'name', 'Barwon Health'),
(98571, 81408, 'no_lang_code', 'name', 'Tomey (Japan)'),
(98572, 81409, 'en', 'name', 'Einstein Healthcare Network'),
(98573, 81410, 'en', 'name', 'Steacie Institute for Molecular Sciences'),
(98574, 81411, 'es', 'name', 'Administración de Servicios Generales'),
(98575, 81411, 'fr', 'name', 'Administration des services gƩnƩraux'),
(98576, 81411, 'en', 'name', 'General Services Administration'),
(98577, 81412, 'en', 'name', 'Japan Racing Association'),
(98578, 81412, 'ja', 'name', 'ē‰¹ę®Šę³•äŗŗę—„ęœ¬äø­å¤®ē«¶é¦¬ä¼š'),
(98579, 81413, 'en', 'name', 'Kaohsiung Chang Gung Memorial Hospital'),
(98580, 81414, 'en', 'name', 'St. Norbert College'),
(98581, 81415, 'en', 'name', 'National Academy of Education'),
(98582, 81416, 'en', 'name', 'International Women''s Media Foundation'),
(98583, 81417, 'en', 'name', 'Swiss Finance Institute'),
(98584, 81418, 'es', 'name', 'Escuela Colombiana de Ingenieria Julio Garavito'),
(98585, 81419, 'en', 'name', 'U.S. President''s Malaria Initiative'),
(98586, 81420, 'en', 'name', 'Tokyo Metropolitan Hiroo Hospital'),
(98587, 81420, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹åŗƒå°¾ē—…é™¢'),
(98588, 81421, 'en', 'name', 'Max Planck Institute for Human Development'),
(98589, 81421, 'de', 'name', 'Max-Planck-Institut für Bildungsforschung'),
(98590, 81422, 'de', 'name', 'Stiftung Mercator'),
(98591, 81423, 'en', 'name', 'Materials and Energy Research Center'),
(98592, 81423, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł…ŁˆŲ§ŲÆ و Ų§Ł†Ų±Ś˜ŪŒ'),
(98593, 81424, 'en', 'name', 'Federal University of ABC'),
(98594, 81424, 'pt', 'name', 'Universidade Federal do ABC'),
(98595, 81424, 'fr', 'name', 'UniversitƩ fƩdƩrale de l''abc'),
(98596, 81425, 'nl', 'name', 'De Haagse Hogeschool'),
(98597, 81425, 'en', 'name', 'The Hague University of Applied Sciences'),
(98598, 81426, 'en', 'name', 'National Pingtung University of Science and Technology'),
(98599, 81427, 'sv', 'name', 'Anna och Edwin Bergers Stiftelse'),
(98600, 81428, 'en', 'name', 'The Korean Society of Nephrology'),
(98601, 81428, 'ko', 'name', 'ėŒ€ķ•œģ‹ ģž„ķ•™ķšŒ'),
(98602, 81429, 'en', 'name', 'Lahore College for Women University'),
(98603, 81429, 'ur', 'name', 'Ł„Ų§ŪŁˆŲ± کالج ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(98604, 81430, 'en', 'name', 'Society for Experimental Mechanics'),
(98605, 81431, 'pl', 'name', 'Elbląska Uczelnia Humanistyczno-Ekonomiczna'),
(98606, 81432, 'en', 'name', 'Nakatani Foundation'),
(98607, 81432, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ äø­č°·åŒ»å·„čØˆęø¬ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(98608, 81433, 'en', 'name', 'National Fire Protection Association'),
(98609, 81434, 'en', 'name', 'Shanghai University of Electric Power'),
(98610, 81434, 'zh', 'name', 'äøŠęµ·ē”µåŠ›å­¦é™¢'),
(98611, 81435, 'en', 'name', 'Russian-Armenian University'),
(98612, 81435, 'hy', 'name', 'Õ€Õ”Õµ-Õ¼ÕøÖ‚Õ½Õ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(98613, 81436, 'no_lang_code', 'name', 'Phoenix (United States)'),
(98614, 81437, 'en', 'name', 'Alfred University'),
(98615, 81438, 'en', 'name', 'State University of Semarang'),
(98616, 81438, 'id', 'name', 'Universitas Negeri Semarang'),
(98617, 81439, 'en', 'name', 'National Water and Sewerage Corporation'),
(98618, 81440, 'en', 'name', 'Ontario Lung Association'),
(98619, 81441, 'en', 'name', 'Sapporo Medical University'),
(98620, 81441, 'ja', 'name', 'ęœ­å¹ŒåŒ»ē§‘å¤§å­¦'),
(98621, 81442, 'en', 'name', 'Chia-Yi Christian Hospital'),
(98622, 81443, 'en', 'name', 'Nanjing Drum Tower Hospital'),
(98623, 81444, 'en', 'name', 'Monell Chemical Senses Center'),
(98624, 81445, 'en', 'name', 'European Society for Paediatric Infectious Diseases'),
(98625, 81446, 'en', 'name', 'Malaviya National Institute of Technology Jaipur'),
(98626, 81446, 'hi', 'name', 'ą¤®ą¤¾ą¤²ą¤µą„€ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(98627, 81447, 'es', 'name', 'Instituto AntƔrtico Chileno'),
(98628, 81448, 'en', 'name', 'State Key Laboratory on Integrated Optoelectronics'),
(98629, 81448, 'zh', 'name', 'é›†ęˆå…‰ē”µå­å­¦å›½å®¶é‡ē‚¹č”åˆå®žéŖŒå®¤'),
(98630, 81449, 'da', 'name', 'Nordisk Institut for Kiropraktik og Klinisk Biomekanik'),
(98631, 81450, 'en', 'name', 'A. James & Alice B. Clark Foundation'),
(98632, 81451, 'en', 'name', 'Far East Geological Institute'),
(98633, 81451, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(98634, 81452, 'en', 'name', 'Central Denmark Region'),
(98635, 81452, 'da', 'name', 'Region Midtjylland'),
(98636, 81453, 'en', 'name', 'St Olav''s University Hospital'),
(98637, 81454, 'en', 'name', 'Fujian Academy of Agricultural Sciences'),
(98638, 81455, 'en', 'name', 'Office for National Statistics'),
(98639, 81455, 'cy', 'name', 'Swyddfa Ystadegau Gwladol'),
(98640, 81456, 'en', 'name', 'Dr Marnie Rose Foundation'),
(98641, 81457, 'en', 'name', 'Chittaranjan National Cancer Institute'),
(98642, 81458, 'en', 'name', 'Texas Department of State Health Services'),
(98643, 81459, 'en', 'name', 'Qatar Orthopaedic and Sports Medicine Hospital'),
(98644, 81459, 'ar', 'name', 'سبيتار'),
(98645, 81460, 'en', 'name', 'Joint United Nations Programme on HIV/AIDS'),
(98646, 81461, 'no_lang_code', 'name', 'Denali Therapeutics (United States)'),
(98647, 81462, 'fr', 'name', 'Institut BergoniƩ'),
(98648, 81463, 'en', 'name', 'Research Foundation for Opto-Science and Technology'),
(98649, 81463, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…‰ē§‘å­¦ęŠ€č”“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(98650, 81464, 'en', 'name', 'Society for Conservation Biology'),
(98651, 81465, 'en', 'name', 'International Society of Travel Medicine'),
(98652, 81466, 'it', 'name', 'Fondazione IRCCS Ca'' Granda Ospedale Maggiore Policlinico'),
(98653, 81467, 'no_lang_code', 'name', 'Enamine (Ukraine)'),
(98654, 81468, 'en', 'name', 'Debre Tabor University'),
(98655, 81468, 'am', 'name', 'į‹Øį‹°į‰„įˆØ į‰³į‰¦įˆ­ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(98656, 81469, 'en', 'name', 'West Virginia Higher Education Policy Commission'),
(98657, 81470, 'en', 'name', 'French School of Asian Studies'),
(98658, 81470, 'fr', 'name', 'Ɖcole FranƧaise d''ExtrĆŖme-Orient'),
(98659, 81471, 'en', 'name', 'Monterey Bay Aquarium Research Institute'),
(98660, 81472, 'es', 'name', 'Fundación Para la Gestión de la Investigación Biomédica de CÔdiz'),
(98661, 81473, 'no_lang_code', 'name', 'Medichem (Spain)'),
(98662, 81474, 'en', 'name', 'Institute for Information Industry'),
(98663, 81474, 'zh', 'name', 'č³‡čØŠå·„ę„­ē­–é€²ęœƒ'),
(98664, 81475, 'en', 'name', 'Illawarra Shoalhaven Local Health District'),
(98665, 81476, 'en', 'name', 'Synchrotron Light Research Institute'),
(98666, 81477, 'en', 'name', 'Southern Nursing Research Society'),
(98667, 81478, 'no_lang_code', 'name', 'On Target Laboratories (United States)'),
(98668, 81479, 'en', 'name', 'Earth Observatory of Singapore'),
(98669, 81480, 'en', 'name', 'Gubkin Russian State University of Oil and Gas'),
(98670, 81480, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ нефти Šø газа имени И. М. Š“ŃƒŠ±ŠŗŠøŠ½Š°'),
(98671, 81481, 'en', 'name', 'San Diego Natural History Museum'),
(98672, 81482, 'no_lang_code', 'name', 'Methuselah Foundation'),
(98673, 81483, 'en', 'name', 'Judicial Council of California'),
(98674, 81484, 'en', 'name', 'Korea Foundation for the Advancement of Science and Creativity'),
(98675, 81485, 'en', 'name', 'Tokyo Metropolitan Government'),
(98676, 81485, 'ja', 'name', 'ę±äŗ¬éƒ½åŗ'),
(98677, 81486, 'en', 'name', 'Beijing Planning Office of Philosophy and Social Science'),
(98678, 81486, 'zh', 'name', 'åŒ—äŗ¬åø‚å“²å­¦ē¤¾ä¼šē§‘å­¦č§„åˆ’åŠžå…¬å®¤'),
(98679, 81487, 'en', 'name', 'Fraser Health'),
(98680, 81488, 'de', 'name', 'Ministerium für Wirtschaft, Innovation, Digitalisierung und Energie des Landes Nordrhein-Westfalen'),
(98681, 81489, 'no_lang_code', 'name', 'Tine (Norway)'),
(98682, 81490, 'sv', 'name', 'Insamlingsstiftelsen Cancer- och Allergifonden'),
(98683, 81491, 'en', 'name', 'Strategic Management Society'),
(98684, 81492, 'en', 'name', 'Xinyu University'),
(98685, 81492, 'zh', 'name', '新余大学'),
(98686, 81493, 'en', 'name', 'P.N. Lebedev Physical Institute of the Russian Academy of Sciences'),
(98687, 81493, 'ru', 'name', 'Физический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. П. Š. ЛебеГева'),
(98688, 81494, 'es', 'name', 'Banco de EspaƱa'),
(98689, 81494, 'en', 'name', 'Bank of Spain'),
(98690, 81495, 'en', 'name', 'Your Community Foundation'),
(98691, 81496, 'en', 'name', 'Institute for the Promotion of Teaching Science and Technology'),
(98692, 81496, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąøŖą¹ˆąø‡ą¹€ąøŖąø£ąø“ąø”ąøąø²ąø£ąøŖąø­ąø™ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œą¹ąø„ąø°ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµ'),
(98693, 81497, 'en', 'name', 'Loyola Marymount University'),
(98694, 81498, 'en', 'name', 'Leuka'),
(98695, 81499, 'en', 'name', 'CPA Australia'),
(98696, 81500, 'en', 'name', 'National Palliative Care Research Center'),
(98697, 81501, 'no_lang_code', 'name', 'Northwest Biotherapeutics (United States)'),
(98698, 81502, 'en', 'name', 'Shiga University of Medical Science'),
(98699, 81502, 'ja', 'name', 'ę»‹č³€åŒ»ē§‘å¤§å­¦'),
(98700, 81503, 'en', 'name', 'John Douglas French Alzheimers Foundation'),
(98701, 81504, 'en', 'name', 'Wuhan Institute of Bioengineering'),
(98702, 81504, 'zh', 'name', 'ę­¦ę±‰ē”Ÿē‰©å·„ēØ‹ē ”ē©¶ę‰€'),
(98703, 81505, 'en', 'name', 'Gill Foundation'),
(98704, 81506, 'en', 'name', 'Oklahoma State Department of Health'),
(98705, 81507, 'en', 'name', 'Suntory Foundation for Life Sciences'),
(98706, 81507, 'ja', 'name', 'ć‚µćƒ³ćƒˆćƒŖćƒ¼ē”Ÿå‘½ē§‘å­¦č²”å›£'),
(98707, 81508, 'en', 'name', 'Federal Urdu University'),
(98708, 81508, 'ur', 'name', 'ŁˆŁŲ§Ł‚ŪŒ Ų¬Ų§Ł…Ų¹Ū‚ اردو'),
(98709, 81509, 'en', 'name', 'Society of American Archivists'),
(98710, 81510, 'no_lang_code', 'name', 'Utlendingsdirektoratet'),
(98711, 81511, 'en', 'name', 'SUNY Oneonta'),
(98712, 81511, 'fr', 'name', 'UniversitĆ© d''Ɖtat de new york Ć  oneonta'),
(98713, 81512, 'en', 'name', 'I Care I Cure Childhood Cancer Foundation'),
(98714, 81513, 'no_lang_code', 'name', 'Jinchuan (China)'),
(98715, 81513, 'zh', 'name', '金川集团'),
(98716, 81514, 'en', 'name', 'Xinyang Normal University'),
(98717, 81514, 'zh', 'name', 'äæ”é˜³åøˆčŒƒå­¦é™¢'),
(98718, 81515, 'en', 'name', 'Geoffrey Beene Foundation'),
(98719, 81516, 'en', 'name', 'International Agency for the Prevention of Blindness'),
(98720, 81517, 'en', 'name', 'Institute of Translational Health Sciences'),
(98721, 81518, 'fr', 'name', 'Association des infirmiĆØres et infirmiers du Canada'),
(98722, 81518, 'en', 'name', 'Canadian Nurses Association'),
(98723, 81519, 'en', 'name', 'Oral Reconstruction Foundation'),
(98724, 81520, 'es', 'name', 'Departamento de Transporte del Distrito de Columbia'),
(98725, 81520, 'en', 'name', 'District Department of Transportation'),
(98726, 81521, 'en', 'name', 'Cape Leopard Trust'),
(98727, 81522, 'de', 'name', 'Bundesamt für Justiz'),
(98728, 81522, 'en', 'name', 'Federal Office of Justice'),
(98729, 81522, 'fr', 'name', 'Office fƩdƩral de la justice'),
(98730, 81522, 'it', 'name', 'Ufficio federale di giustizia'),
(98731, 81523, 'en', 'name', 'Grain Farmers of Ontario'),
(98732, 81524, 'en', 'name', 'Suan Dusit University'),
(98733, 81524, 'th', 'name', 'ดหาวณทยาคัยสวนดุสณต'),
(98734, 81525, 'en', 'name', 'Melanoma Institute Australia'),
(98735, 81526, 'en', 'name', 'Shangqiu Normal University'),
(98736, 81526, 'zh', 'name', 'å•†äø˜åøˆčŒƒå­¦é™¢'),
(98737, 81527, 'en', 'name', 'VA Pittsburgh Healthcare System'),
(98738, 81528, 'no', 'name', 'Norsk Fysioterapeutforbund'),
(98739, 81528, 'en', 'name', 'Norwegian Physiotherapist Association'),
(98740, 81529, 'en', 'name', 'Institute for Transfusion Medicine'),
(98741, 81530, 'en', 'name', 'General Insurance Association of Japan'),
(98742, 81530, 'ja', 'name', 'ę—„ęœ¬ęå®³äæé™ŗå”ä¼š'),
(98743, 81531, 'en', 'name', 'National Development and Reform Commission'),
(98744, 81531, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶å‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(98745, 81532, 'en', 'name', 'Frankfurt University of Applied Sciences'),
(98746, 81533, 'no_lang_code', 'name', 'Acceleron Pharma (United States)'),
(98747, 81534, 'en', 'name', 'State University of Jakarta'),
(98748, 81534, 'id', 'name', 'Universitas Negeri Jakarta'),
(98749, 81535, 'en', 'name', 'University of Kufa'),
(98750, 81535, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁˆŁŲ©'),
(98751, 81536, 'en', 'name', 'William Harvey Research Foundation'),
(98752, 81537, 'no_lang_code', 'name', 'Shukutoku University'),
(98753, 81537, 'ja', 'name', '淑徳大学'),
(98754, 81538, 'en', 'name', 'The University of Texas Rio Grande Valley'),
(98755, 81538, 'es', 'name', 'Universidad de Texas Valle del RĆ­o Grande'),
(98756, 81539, 'en', 'name', 'Institute of Dendrology'),
(98757, 81539, 'pl', 'name', 'Instytut Dendrologii PAN'),
(98758, 81540, 'en', 'name', 'National Institute of Education'),
(98759, 81541, 'en', 'name', 'National Centre for Cell Science'),
(98760, 81541, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤•ą„‹ą¤¶ą¤æą¤•ą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°, ą¤Ŗą„ą¤£ą„‡'),
(98761, 81542, 'en', 'name', 'Mastercard Foundation'),
(98762, 81543, 'en', 'name', 'National Institute of Environmental Research'),
(98763, 81544, 'it', 'name', 'Fondazione Caritro'),
(98764, 81545, 'en', 'name', 'Jiangsu Second Normal University'),
(98765, 81545, 'zh', 'name', 'ę±Ÿč‹ē¬¬äŗŒåøˆčŒƒå­¦é™¢'),
(98766, 81546, 'en', 'name', 'Infrastructure Canada'),
(98767, 81547, 'en', 'name', 'Iran Polymer and Petrochemical Institute'),
(98768, 81548, 'en', 'name', 'Consortium For Research and Innovation In Aerospace In Quebec'),
(98769, 81549, 'en', 'name', 'Institute of Biomedical Sciences, Academia Sinica'),
(98770, 81549, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ē”Ÿē‰©é†«å­øē§‘å­øē ”ē©¶ę‰€'),
(98771, 81550, 'en', 'name', 'Taiwan Forestry Research Institute'),
(98772, 81550, 'zh', 'name', 'ꞗꄭ試驗ꉀ'),
(98773, 81551, 'id', 'name', 'Universitas Mataram'),
(98774, 81551, 'en', 'name', 'University of Mataram'),
(98775, 81552, 'en', 'name', 'Kazimierz Pułaski University of Technology and Humanities in Radom'),
(98776, 81552, 'pl', 'name', 'Uniwersytet Technologiczno-Humanistyczny im. Kazimierza Pułaskiego w Radomiu'),
(98777, 81553, 'no_lang_code', 'name', 'Zynerba Pharmaceuticals (United States)'),
(98778, 81554, 'no_lang_code', 'name', 'Circle Cardiovascular Imaging'),
(98779, 81555, 'no_lang_code', 'name', 'Beihua University'),
(98780, 81555, 'zh', 'name', '北华大学'),
(98781, 81556, 'no_lang_code', 'name', 'Polymun (Austria)'),
(98782, 81557, 'es', 'name', 'Asociación Nacional de Universidades e Instituciones de Educación Superior'),
(98783, 81557, 'en', 'name', 'National Association of Universities and Higher Education Institutions'),
(98784, 81558, 'en', 'name', 'Texas A&M University at Galveston'),
(98785, 81558, 'es', 'name', 'Universidad de Texas A&M en Galveston'),
(98786, 81559, 'no_lang_code', 'name', 'Telenor (Norway)'),
(98787, 81560, 'en', 'name', 'IMDEA Materials'),
(98788, 81560, 'es', 'name', 'Instituto IMDEA Materiales'),
(98789, 81561, 'en', 'name', 'National Development Agency'),
(98790, 81561, 'hu', 'name', 'Nemzeti Fejlesztési Ügynökség'),
(98791, 81562, 'en', 'name', 'Society for the Study of School Psychology'),
(98792, 81563, 'en', 'name', 'National Disability Insurance Agency'),
(98793, 81564, 'en', 'name', 'Institute of Applied Ecology'),
(98794, 81564, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę²ˆé˜³åŗ”ē”Øē”Ÿę€ē ”ē©¶ę‰€'),
(98795, 81565, 'no_lang_code', 'name', 'Mirati Therapeutics (United States)'),
(98796, 81566, 'en', 'name', 'Yugra State University'),
(98797, 81566, 'ru', 'name', 'Югорский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98798, 81567, 'en', 'name', 'Norwegian Environment Agency'),
(98799, 81568, 'no_lang_code', 'name', 'Ono Pharmaceutical (Japan)'),
(98800, 81568, 'ja', 'name', 'å°é‡Žč–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(98801, 81569, 'en', 'name', 'Industrial Biotechnology Innovation Centre'),
(98802, 81570, 'en', 'name', 'Sax Institute'),
(98803, 81571, 'en', 'name', 'Rafsanjan University of Medical Sciences'),
(98804, 81571, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکي رفسنجان'),
(98805, 81572, 'en', 'name', 'Salahaddin University-Erbil'),
(98806, 81572, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© صلاح Ų§Ł„ŲÆŁŠŁ†'),
(98807, 81573, 'de', 'name', 'Stiftung Lindenhof Bern'),
(98808, 81574, 'en', 'name', 'Morgan Adams Foundation'),
(98809, 81575, 'en', 'name', 'East China University of Technology'),
(98810, 81575, 'zh', 'name', 'äøœåŽē†å·„å¤§å­¦'),
(98811, 81576, 'en', 'name', 'Centre for Nano and Soft Matter Sciences'),
(98812, 81577, 'en', 'name', 'Vietnam Military Medical University');
INSERT INTO `ror_settings` VALUES
(98813, 81578, 'en', 'name', 'Sichuan Youth Science & Technology Foundation'),
(98814, 81579, 'no_lang_code', 'name', 'Boston Biomedical (United States)'),
(98815, 81580, 'en', 'name', 'Board of the Swiss Federal Institutes of Technology'),
(98816, 81580, 'fr', 'name', 'Conseil des Ɖcoles Polytechniques FĆ©dĆ©rales'),
(98817, 81580, 'de', 'name', 'Rat der Eidgenƶssischen Technischen Hochschulen'),
(98818, 81581, 'no_lang_code', 'name', 'Sound Approach (United Kingdom)'),
(98819, 81582, 'en', 'name', 'National Institute of Advanced Studies'),
(98820, 81583, 'en', 'name', 'National Science and Technology Council'),
(98821, 81584, 'en', 'name', 'Society for French Historical Studies'),
(98822, 81585, 'en', 'name', 'SUNY Cobleskill'),
(98823, 81586, 'en', 'name', 'Mississippi State Department of Health'),
(98824, 81587, 'fi', 'name', 'Vatsatautien TutkimussƤƤtiƶ'),
(98825, 81588, 'en', 'name', 'Saint Luke''s Health System'),
(98826, 81589, 'en', 'name', 'Nunavut Research Institute'),
(98827, 81590, 'fr', 'name', 'Bpifrance'),
(98828, 81591, 'fi', 'name', 'Commission de la sƩcuritƩ professionnelle et de l''assurance contre les accidents du travail'),
(98829, 81591, 'en', 'name', 'Workplace Safety & Insurance Board'),
(98830, 81592, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia de CatÔlise em Sistemas Moleculares e Nanoestruturados'),
(98831, 81593, 'en', 'name', 'National Atmospheric Research Laboratory'),
(98832, 81594, 'en', 'name', 'Crop Science Society of America'),
(98833, 81595, 'en', 'name', 'International Society of Arthroscopy, Knee Surgery and Orthopaedic Sports Medicine'),
(98834, 81596, 'en', 'name', 'Institute for Problems in Mechanics'),
(98835, 81596, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем механики им.А.Š®.Ишлинского Российской акаГемии наук'),
(98836, 81597, 'en', 'name', 'Soil Science Society of America'),
(98837, 81598, 'en', 'name', 'Tianjin Agricultural University'),
(98838, 81598, 'zh', 'name', 'å¤©ę“„å†œå­¦é™¢'),
(98839, 81599, 'en', 'name', 'University Hospitals Coventry and Warwickshire NHS Trust'),
(98840, 81600, 'no_lang_code', 'name', 'Arrowhead Pharmaceuticals (United States)'),
(98841, 81601, 'no_lang_code', 'name', 'Betta Pharmaceuticals (China)'),
(98842, 81601, 'zh', 'name', 'č“č¾¾čÆäøš'),
(98843, 81602, 'en', 'name', 'National Centre for Earth Science Studies'),
(98844, 81602, 'ml', 'name', 'ą“¦ąµ‡ą“¶ą“æą“Æ ą“­ąµ‚ą“®ą“æ ą“¶ą“¾ą“øąµą“¤ąµą“° ą“Ŗą“ ą“Ø ą“•ąµ‡'),
(98845, 81603, 'no_lang_code', 'name', 'Chicken Farmers of Saskatchewan (Canada)'),
(98846, 81604, 'en', 'name', 'Deutsches Historisches Institut Washington'),
(98847, 81605, 'id', 'name', 'Institut Teknologi Kalimantan'),
(98848, 81606, 'no_lang_code', 'name', 'ReShape Lifesciences (United States)'),
(98849, 81607, 'en', 'name', 'University of Texas Health Science Center at Dallas'),
(98850, 81608, 'en', 'name', 'Physician Assistant Education Association'),
(98851, 81609, 'en', 'name', 'University Hospital of Bern'),
(98852, 81610, 'no_lang_code', 'name', 'Aileron (United States)'),
(98853, 81611, 'no_lang_code', 'name', 'Momenta Pharmaceuticals (United States)'),
(98854, 81612, 'en', 'name', 'Mach-Gaensslen Foundation'),
(98855, 81613, 'en', 'name', 'National MPS Society'),
(98856, 81614, 'en', 'name', 'Society for Maternal-Fetal Medicine'),
(98857, 81615, 'en', 'name', 'Andrews Institute for Orthopaedics & Sports Medicine'),
(98858, 81616, 'en', 'name', 'Quanzhou Normal University'),
(98859, 81616, 'zh', 'name', 'ę³‰å·žåøˆčŒƒå­¦é™¢'),
(98860, 81617, 'en', 'name', 'Lishui City People''s Hospital'),
(98861, 81618, 'en', 'name', 'South African Veterinary Foundation'),
(98862, 81618, 'zu', 'name', 'Suid-Afrikaanse Veterinere Stigting'),
(98863, 81619, 'en', 'name', 'Max Kade Foundation'),
(98864, 81620, 'de', 'name', 'Infrafrontier'),
(98865, 81621, 'en', 'name', 'National Collegiate Athletic Association'),
(98866, 81622, 'no_lang_code', 'name', 'Avanir Pharmaceuticals (United States)'),
(98867, 81623, 'en', 'name', 'N. I. Lobachevsky State University of Nizhny Novgorod'),
(98868, 81623, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. И. Лобачевского'),
(98869, 81624, 'en', 'name', 'Moroccan Foundation for Advanced Science, Innovation and Research'),
(98870, 81625, 'en', 'name', 'Ministry for Foreign Affairs of Finland'),
(98871, 81625, 'fi', 'name', 'Ulkoasiainministeriƶ'),
(98872, 81626, 'en', 'name', 'Swedish e-Science Research Centre'),
(98873, 81627, 'no_lang_code', 'name', 'Aerie Pharmaceuticals (United States)'),
(98874, 81628, 'no_lang_code', 'name', 'Toyobo (Japan)'),
(98875, 81628, 'ja', 'name', 'ę±ę“‹ē“”ēø¾ę Ŗå¼ä¼šē¤¾'),
(98876, 81629, 'fr', 'name', 'Wallonie-Bruxelles International'),
(98877, 81630, 'en', 'name', 'Sir Run Run Shaw Hospital'),
(98878, 81630, 'zh', 'name', 'ęµ™ę±Ÿå¤§å­¦åŒ»å­¦é™¢é™„å±žé‚µé€øå¤«åŒ»é™¢'),
(98879, 81631, 'en', 'name', 'Shantou University Medical College'),
(98880, 81632, 'de', 'name', 'Karl-Franzens-UniversitƤt Graz'),
(98881, 81632, 'hr', 'name', 'SveučiliŔte u Grazu'),
(98882, 81632, 'en', 'name', 'University of Graz'),
(98883, 81632, 'sl', 'name', 'Univerza v Gradcu'),
(98884, 81633, 'en', 'name', 'West China Hospital of Sichuan University'),
(98885, 81634, 'en', 'name', 'Australian Prawn Farmers Association'),
(98886, 81635, 'en', 'name', 'VA Western New York Healthcare System'),
(98887, 81636, 'en', 'name', 'Mianyang Normal University'),
(98888, 81636, 'zh', 'name', 'ē»µé˜³åøˆčŒƒå­¦é™¢'),
(98889, 81637, 'en', 'name', 'Science Council of Japan'),
(98890, 81637, 'ja', 'name', 'ę—„ęœ¬å­¦č”“ä¼šč­°'),
(98891, 81638, 'no_lang_code', 'name', 'Azim Premji University'),
(98892, 81638, 'hi', 'name', 'ą¤…ą¤œą¤¼ą„€ą¤® ą¤Ŗą„ą¤°ą„‡ą¤®ą¤œą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(98893, 81639, 'de', 'name', 'Manfred LautenschlƤger-Stiftung'),
(98894, 81640, 'no_lang_code', 'name', 'Dairy Farmers of Ontario'),
(98895, 81641, 'en', 'name', 'Cambridge Philosophical Society'),
(98896, 81642, 'en', 'name', 'Legal Aid New South Wales'),
(98897, 81643, 'en', 'name', 'Malek Ashtar University of Technology'),
(98898, 81643, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ مالک Ų§Ų“ŲŖŲ±'),
(98899, 81644, 'no_lang_code', 'name', 'Otis (United States)'),
(98900, 81645, 'en', 'name', 'Aerospace Medical Association'),
(98901, 81646, 'en', 'name', 'Alopecia UK'),
(98902, 81647, 'es', 'name', 'Fundación Carolina'),
(98903, 81648, 'en', 'name', 'South Asian University'),
(98904, 81649, 'en', 'name', 'Xinjiang Technical Institute of Physics & Chemistry'),
(98905, 81649, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę–°ē–†ē†åŒ–ęŠ€ęœÆē ”ē©¶ę‰€'),
(98906, 81650, 'en', 'name', 'National University of Computer and Emerging Sciences'),
(98907, 81650, 'ur', 'name', 'فاسٹ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(98908, 81650, 'sd', 'name', 'Ł†ŁŠŲ“Ł†Ł„ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ آف ŚŖŁ…Ł¾ŁŠŁˆŁ½Ų± Ų§ŁŠŁ†ŚŠ امرجنگ Ų³Ų§Ų¦Ł†Ų³Ų²ā€Ž'),
(98909, 81651, 'en', 'name', 'Macaulay Development Trust'),
(98910, 81652, 'en', 'name', 'Rhode Island Hospital'),
(98911, 81653, 'en', 'name', 'Genome Prairie'),
(98912, 81654, 'en', 'name', 'European Centre for Medium-Range Weather Forecasts'),
(98913, 81655, 'no_lang_code', 'name', 'Dansk Selskab for AnƦstesiologi og Intensiv Medicin (Denmark)'),
(98914, 81656, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(98915, 81657, 'en', 'name', 'Beijing National Laboratory for Molecular Sciences'),
(98916, 81657, 'zh', 'name', 'åŒ—äŗ¬åˆ†å­ē§‘å­¦å›½å®¶å®žéŖŒå®¤'),
(98917, 81658, 'en', 'name', 'Water Research Australia'),
(98918, 81659, 'en', 'name', 'Japan Primary Care Association'),
(98919, 81660, 'en', 'name', 'Geological Survey of Iran'),
(98920, 81661, 'en', 'name', 'Folke Bernadotte Academy'),
(98921, 81661, 'sv', 'name', 'Folke Bernadotteakademin'),
(98922, 81662, 'en', 'name', 'Wallops Flight Facility'),
(98923, 81663, 'de', 'name', 'Deutsche Gesellschaft für Parkinson und Bewegungsstörungen'),
(98924, 81664, 'en', 'name', 'City University of Hong Kong, Shenzhen Research Institute'),
(98925, 81664, 'zh', 'name', 'é¦™ęøÆåŸŽåø‚å¤§å­¦ę·±åœ³ē ”ē©¶é™¢'),
(98926, 81665, 'en', 'name', 'Mozilla Foundation'),
(98927, 81666, 'en', 'name', 'Virginia Marine Resources Commission'),
(98928, 81667, 'en', 'name', 'Fund for the Replacement of Animals in Medical Experiments'),
(98929, 81668, 'en', 'name', 'Ministry of the Environment, Conservation and Parks'),
(98930, 81668, 'fr', 'name', 'MinistĆØre de l’Environnement, de la Protection de la Nature et des Parcs'),
(98931, 81669, 'cy', 'name', 'Mapiau Arolwg Ordnans'),
(98932, 81669, 'en', 'name', 'Ordnance Survey'),
(98933, 81670, 'en', 'name', 'American University in Cairo'),
(98934, 81670, 'fr', 'name', 'UniversitƩ AmƩricaine du Caire'),
(98935, 81670, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© بالقاهرة'),
(98936, 81671, 'en', 'name', 'University Hospital Foundation'),
(98937, 81672, 'en', 'name', 'ARC Centre of Excellence for Electromaterials Science'),
(98938, 81673, 'en', 'name', 'Virtual University of Pakistan'),
(98939, 81673, 'ur', 'name', 'جامعہ Ł…Ų¬Ų§Ų²ŪŒ پاکستان'),
(98940, 81674, 'en', 'name', 'Institute of Ecology and Biodiversity'),
(98941, 81675, 'no_lang_code', 'name', 'ImmunoGen (United States)'),
(98942, 81676, 'en', 'name', 'Korea Occupational Safety and Health Agency'),
(98943, 81676, 'ko', 'name', 'ģ•ˆģ „ė³“ź±“ź³µė‹Ø'),
(98944, 81677, 'no_lang_code', 'name', 'Radius Health (United States)'),
(98945, 81678, 'en', 'name', 'Manitoba Lung Association'),
(98946, 81679, 'no_lang_code', 'name', 'SystemsX.ch'),
(98947, 81680, 'en', 'name', 'Swiss Polar Institute'),
(98948, 81681, 'en', 'name', 'Hualien Armed Forces General Hospital'),
(98949, 81681, 'zh', 'name', 'åœ‹č»čŠ±č“®ēø½é†«é™¢'),
(98950, 81682, 'no_lang_code', 'name', 'Kissei Pharmaceutical (Japan)'),
(98951, 81682, 'ja', 'name', 'ć‚­ćƒƒć‚»ć‚¤č–¬å“å·„ę„­'),
(98952, 81683, 'en', 'name', 'Norwegian Institute for Cultural Heritage Research'),
(98953, 81684, 'es', 'name', 'Instituto Nacional de AstrofĆ­sica, Ɠptica y Electrónica'),
(98954, 81684, 'en', 'name', 'National Institute of Astrophysics, Optics and Electronics'),
(98955, 81685, 'en', 'name', 'Yulin Normal University'),
(98956, 81685, 'zh', 'name', 'ēŽ‰ęž—åøˆčŒƒå­¦é™¢'),
(98957, 81686, 'no_lang_code', 'name', 'Revolution Medicines (United States)'),
(98958, 81687, 'en', 'name', 'Botanical Survey of India'),
(98959, 81688, 'en', 'name', 'Alliance for a Green Revolution in Africa'),
(98960, 81689, 'en', 'name', 'Federal Bureau of Investigation'),
(98961, 81690, 'no_lang_code', 'name', 'State Power Investment Corporation (China)'),
(98962, 81690, 'zh', 'name', 'å›½å®¶ē”µåŠ›ęŠ•čµ„é›†å›¢'),
(98963, 81691, 'en', 'name', 'Austrian Diabetes Association'),
(98964, 81691, 'de', 'name', 'Ɩsterreichische Diabetes Gesellschaft'),
(98965, 81692, 'en', 'name', 'Welsh Ambulance Services NHS Trust'),
(98966, 81693, 'en', 'name', 'Jagannath University'),
(98967, 81693, 'bn', 'name', 'ą¦œą¦—ą¦Øą§ą¦Øą¦¾ą¦„ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(98968, 81694, 'en', 'name', 'National University of Austral Patagonia'),
(98969, 81694, 'es', 'name', 'Universidad Nacional de la Patagonia Austral'),
(98970, 81695, 'en', 'name', 'The Australasian Institute of Judicial Administration'),
(98971, 81696, 'en', 'name', 'Jahrom University of Medical Sciences'),
(98972, 81696, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی جهرم'),
(98973, 81697, 'en', 'name', 'Public Health Wales'),
(98974, 81698, 'en', 'name', 'Punjab Agricultural University'),
(98975, 81698, 'hi', 'name', 'ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(98976, 81698, 'pa', 'name', 'ਪੰਜਾਬ ąØąØ—ąØ°ą©€ąØ•ąØ²ąØšąØ°ąØ² ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(98977, 81699, 'no_lang_code', 'name', 'Progenics Pharmaceuticals (United States)'),
(98978, 81700, 'en', 'name', 'Translational Health Science and Technology Institute'),
(98979, 81701, 'en', 'name', 'Prince Albert II of Monaco Foundation'),
(98980, 81702, 'en', 'name', 'Qiqihar University'),
(98981, 81702, 'zh', 'name', '齐齐哈尔大学'),
(98982, 81703, 'en', 'name', 'Institute for Operations Research and the Management Sciences'),
(98983, 81704, 'en', 'name', 'Energy Policy and Planning Office'),
(98984, 81704, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø™ą¹‚ąø¢ąøšąø²ąø¢ą¹ąø„ąø°ą¹ąøœąø™ąøžąø„ąø±ąø‡ąø‡ąø²ąø™'),
(98985, 81705, 'en', 'name', 'Advance HE'),
(98986, 81706, 'no_lang_code', 'name', 'ARUP Laboratories (United States)'),
(98987, 81707, 'en', 'name', 'National CFIDS Foundation'),
(98988, 81708, 'en', 'name', 'Beijing Hospital'),
(98989, 81709, 'en', 'name', 'Maine Department of Marine Resources'),
(98990, 81710, 'en', 'name', 'Oklahoma State University Center for Health Sciences'),
(98991, 81711, 'en', 'name', 'Federal Joint Committee'),
(98992, 81711, 'de', 'name', 'Gemeinsamer Bundesausschuss'),
(98993, 81712, 'nl', 'name', 'Belgische Federale Regering'),
(98994, 81712, 'en', 'name', 'Federal Government of Belgium'),
(98995, 81712, 'de', 'name', 'Fƶderalregierung Belgien'),
(98996, 81712, 'fr', 'name', 'Gouvernement FƩdƩral Belgique'),
(98997, 81713, 'en', 'name', 'St. Cloud State University'),
(98998, 81713, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Saint Cloud'),
(98999, 81714, 'en', 'name', 'National Computer Network Emergency Response Technical Team/Coordination Center of Chinar'),
(99000, 81714, 'zh', 'name', 'å›½å®¶č®”ē®—ęœŗē½‘ē»œåŗ”ę€„ęŠ€ęœÆå¤„ē†åč°ƒäø­åæƒ'),
(99001, 81715, 'en', 'name', 'Pennsylvania College of Health Sciences'),
(99002, 81716, 'en', 'name', 'The International Research Foundation for English Language Education'),
(99003, 81717, 'en', 'name', 'University of the Philippines Visayas'),
(99004, 81718, 'no_lang_code', 'name', 'Biolab Pharma (Brazil)'),
(99005, 81719, 'de', 'name', 'Hamburger Krebsgesellschaft'),
(99006, 81720, 'en', 'name', 'Zunyi Normal College'),
(99007, 81720, 'zh', 'name', 'éµä¹‰åøˆčŒƒå­¦é™¢'),
(99008, 81721, 'en', 'name', 'Environmental Defense Fund'),
(99009, 81722, 'en', 'name', 'Norwegian Directorate of Health'),
(99010, 81723, 'en', 'name', 'The Salah Foundation'),
(99011, 81724, 'en', 'name', 'University of Hyogo'),
(99012, 81724, 'ja', 'name', 'å…µåŗ«ēœŒē«‹å¤§å­¦'),
(99013, 81725, 'en', 'name', 'Kyoto Pharmaceutical University'),
(99014, 81725, 'ja', 'name', 'äŗ¬éƒ½č–¬ē§‘å¤§å­¦'),
(99015, 81726, 'en', 'name', 'Kitasato University Hospital'),
(99016, 81726, 'ja', 'name', 'åŒ—é‡Œå¤§å­¦ē—…é™¢'),
(99017, 81727, 'en', 'name', 'Ministry of Environmental Protection'),
(99018, 81727, 'he', 'name', '×”×ž×©×Ø×“ ×œ×”×’× ×Ŗ ההביבה'),
(99019, 81728, 'en', 'name', 'National University of Santiago del Estero'),
(99020, 81728, 'es', 'name', 'Universidad Nacional de Santiago del Estero'),
(99021, 81729, 'no_lang_code', 'name', 'Yuhan (South Korea)'),
(99022, 81729, 'ko', 'name', 'ģœ ķ•œģ–‘ķ–‰'),
(99023, 81730, 'en', 'name', 'Ruppin Academic Center'),
(99024, 81730, 'he', 'name', '×”×ž×Ø×›×– האקדמי ×Ø×•×¤×™×Ÿ'),
(99025, 81731, 'nl', 'name', 'Ministerie van Landbouw, Natuur en Voedselkwaliteit'),
(99026, 81731, 'en', 'name', 'Ministry of Agriculture, Nature and Food Quality'),
(99027, 81732, 'de', 'name', 'Deutsche MigrƤne- und Kopfschmerzgesellschaft'),
(99028, 81733, 'en', 'name', 'Institute of Marine Engineering Science and Technology'),
(99029, 81734, 'en', 'name', 'American Hip Institute'),
(99030, 81735, 'en', 'name', 'National Book Foundation'),
(99031, 81736, 'en', 'name', 'Society for Translational Oncology'),
(99032, 81737, 'en', 'name', 'MIT-Harvard Center for Ultracold Atoms'),
(99033, 81738, 'en', 'name', 'Władysław Szafer Institute of Botany'),
(99034, 81739, 'en', 'name', 'Primate Society of Great Britain'),
(99035, 81740, 'en', 'name', 'Children''s Healthcare of Atlanta'),
(99036, 81741, 'en', 'name', 'Wellcome / EPSRC Centre for Interventional and Surgical Sciences'),
(99037, 81742, 'sl', 'name', 'Ministrstvo za Visoko Solstvo, Znanost in Tehnologijo'),
(99038, 81742, 'en', 'name', 'Ministry of Higher Education Science, and Technology'),
(99039, 81743, 'en', 'name', 'Catholic Relief Services'),
(99040, 81744, 'no_lang_code', 'name', 'Baosteel (China)'),
(99041, 81745, 'en', 'name', 'National Board of Medical Examiners'),
(99042, 81746, 'fr', 'name', 'Tour du Valat'),
(99043, 81747, 'en', 'name', 'Nakhon Si Thammarat Rajabhat University'),
(99044, 81747, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąøØąø£ąøµąø˜ąø£ąø£ąø”ąø£ąø²ąøŠ'),
(99045, 81748, 'en', 'name', 'Policy Innovation and Co-ordination Office'),
(99046, 81749, 'es', 'name', 'Instituto Tecnológico Metropolitano'),
(99047, 81750, 'de', 'name', 'TU Bergakademie Freiberg'),
(99048, 81751, 'en', 'name', 'Nottingham Biomedical Research Centre'),
(99049, 81752, 'en', 'name', 'Royal New Zealand College of General Practitioners'),
(99050, 81753, 'en', 'name', 'United States Maritime Administration'),
(99051, 81754, 'en', 'name', 'United Nations Foundation'),
(99052, 81755, 'en', 'name', 'Jingchu University of Technology'),
(99053, 81756, 'en', 'name', 'Jishou University'),
(99054, 81756, 'zh', 'name', '吉首大学'),
(99055, 81757, 'no_lang_code', 'name', 'Jaguar Land Rover (United Kingdom)'),
(99056, 81758, 'en', 'name', 'Guangzhou Psychiatric Hospital'),
(99057, 81759, 'en', 'name', 'Henan Provincial People''s Hospital'),
(99058, 81759, 'zh', 'name', 'ę²³å—ēœäŗŗę°‘åŒ»é™¢'),
(99059, 81760, 'en', 'name', 'UCSF Helen Diller Family Comprehensive Cancer Center'),
(99060, 81761, 'no_lang_code', 'name', 'Silicon Austria Labs (Austria)'),
(99061, 81762, 'en', 'name', 'Otterbein University'),
(99062, 81763, 'en', 'name', 'Aswan University'),
(99063, 81763, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų£Ų³ŁˆŲ§Ł†'),
(99064, 81764, 'no_lang_code', 'name', 'British Association of Plastic, Reconstructive and Aesthetic Surgeons'),
(99065, 81765, 'es', 'name', 'Instituto Nacional de Salud PĆŗblica'),
(99066, 81765, 'en', 'name', 'National Institute of Public Health of Mexico'),
(99067, 81766, 'en', 'name', 'Canadian Centre for Applied Research in Cancer Control'),
(99068, 81767, 'it', 'name', 'Consorzio Interuniversitario per le Biotecnologie'),
(99069, 81768, 'fr', 'name', 'CollĆØge de l’Arctique du Nunavut'),
(99070, 81768, 'en', 'name', 'Nunavut Arctic College'),
(99071, 81768, 'iu', 'name', 'į“„į“‡į•—į’»į’„į“Æį“šį‘¦į‘į–…į““į•į••į’ƒ'),
(99072, 81769, 'en', 'name', 'European Association of Nuclear Medicine'),
(99073, 81770, 'en', 'name', 'National Institute for Nanotechnology'),
(99074, 81771, 'en', 'name', 'Minerals Metals and Materials Society'),
(99075, 81772, 'ga', 'name', 'Bonneagar Iompair Ɖireann'),
(99076, 81772, 'en', 'name', 'Transport Infrastructure Ireland'),
(99077, 81773, 'en', 'name', 'Retina Research Foundation'),
(99078, 81774, 'en', 'name', 'CRUK Lung Cancer Centre of Excellence'),
(99079, 81775, 'en', 'name', 'Friends Together'),
(99080, 81776, 'en', 'name', 'Nanzan University'),
(99081, 81776, 'ja', 'name', '南山大学'),
(99082, 81777, 'no_lang_code', 'name', 'Ortho Clinical Diagnostics (United States)'),
(99083, 81778, 'en', 'name', 'Moscow State Pedagogical University'),
(99084, 81778, 'ru', 'name', 'Московский пеГагогический Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99085, 81779, 'en', 'name', 'Swedish Species Information Centre'),
(99086, 81780, 'en', 'name', 'Institute of Health Economics'),
(99087, 81781, 'nl', 'name', 'Nationaal Regieorgaan Praktijkgericht Onderzoek SIA'),
(99088, 81781, 'en', 'name', 'Taskforce for Applied Research'),
(99089, 81782, 'en', 'name', 'Ningbo Institute of Industrial Technology'),
(99090, 81782, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å®ę³¢ęę–™ęŠ€ęœÆäøŽå·„ēØ‹ē ”ē©¶ę‰€'),
(99091, 81783, 'en', 'name', 'National Council for Behavioral Health'),
(99092, 81784, 'en', 'name', 'Archstone Foundation'),
(99093, 81785, 'en', 'name', 'Antarctic Climate and Ecosystems Cooperative Research Centre'),
(99094, 81786, 'en', 'name', 'Chulabhorn Graduate Institute'),
(99095, 81786, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąøšąø±ąø“ąø‘ąø“ąø•ąøØąø¶ąøąø©ąø²ąøˆąøøąø¬ąø²ąø ąø£ąø“ą¹Œ'),
(99096, 81787, 'en', 'name', 'SRM University'),
(99097, 81788, 'en', 'name', 'Long Island Community Foundation'),
(99098, 81789, 'en', 'name', 'Council for Grants of the President of the Russian Federation'),
(99099, 81789, 'ru', 'name', 'Довет по грантам ŠŸŃ€ŠµŠ·ŠøŠ“ента Российской ФеГерации'),
(99100, 81790, 'en', 'name', 'Women''s & Children''s Hospital Foundation'),
(99101, 81791, 'no_lang_code', 'name', 'Alimentary Health (Ireland)'),
(99102, 81792, 'en', 'name', 'The Russian Presidential Academy of National Economy and Public Administration'),
(99103, 81792, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ нароГного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ при ŠŸŃ€ŠµŠ·ŠøŠ“енте Российской ФеГерации'),
(99104, 81793, 'en', 'name', 'Quebec Rehabilitation Research Network'),
(99105, 81793, 'fr', 'name', 'RƩseau Provincial de Recherche en Adaptation RƩadaptation'),
(99106, 81794, 'en', 'name', 'Sbarro Health Research Organization'),
(99107, 81795, 'en', 'name', 'Yunnan Environmental Protection Bureau'),
(99108, 81795, 'zh', 'name', 'äŗ‘å—ēœēŽÆå¢ƒäæęŠ¤åŽ…'),
(99109, 81796, 'fr', 'name', 'Laboratoires Servier'),
(99110, 81796, 'no_lang_code', 'name', 'Servier (France)'),
(99111, 81797, 'en', 'name', 'Society for Leukocyte Biology'),
(99112, 81798, 'en', 'name', 'Vermont Department of Health'),
(99113, 81799, 'pl', 'name', 'Wojskowy Instytut Medyczny'),
(99114, 81800, 'en', 'name', 'Jilin Agricultural Science and Technology University'),
(99115, 81800, 'zh', 'name', 'å‰ęž—å†œäøšē§‘ęŠ€å­¦é™¢'),
(99116, 81801, 'en', 'name', 'French Infrastructure for Integrated Structural Biology'),
(99117, 81802, 'it', 'name', 'Centro Internazionale di Studi per la Conservazione ed il Restauro dei Beni Culturali'),
(99118, 81802, 'en', 'name', 'International Centre for the Study of the Preservation and Restoration of Cultural Property'),
(99119, 81803, 'no_lang_code', 'name', 'Entasis Therapeutics (United States)'),
(99120, 81804, 'en', 'name', 'Pedagogical and Technological University of Colombia'),
(99121, 81804, 'es', 'name', 'Universidad Pedagógica y Tecnológica de Colombia'),
(99122, 81805, 'en', 'name', 'Tatematsu Foundation'),
(99123, 81805, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē«‹ę¾č²”å›£'),
(99124, 81806, 'en', 'name', 'Augustana College'),
(99125, 81807, 'en', 'name', 'Ming Chi University of Technology'),
(99126, 81807, 'zh', 'name', 'ę˜Žåæ—ē§‘ęŠ€å¤§å­ø'),
(99127, 81808, 'en', 'name', 'International Society for Stem Cell Research'),
(99128, 81809, 'no_lang_code', 'name', 'China Shipbuilding Industry Corporation (China)'),
(99129, 81809, 'zh', 'name', 'äø­å›½čˆ¹čˆ¶é‡å·„é›†å›¢å…¬åø'),
(99130, 81810, 'en', 'name', 'Mt. Sinai Health Care Foundation'),
(99131, 81811, 'pl', 'name', 'Chersoński Uniwersytet Państwowy'),
(99132, 81811, 'en', 'name', 'Kherson State University'),
(99133, 81811, 'ru', 'name', 'Єерсонский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99134, 81811, 'uk', 'name', 'Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠøŠ¹ Гержавний унiверситет'),
(99135, 81812, 'en', 'name', 'Geocenter Denmark'),
(99136, 81813, 'en', 'name', 'Fisheries Agency'),
(99137, 81813, 'zh', 'name', 'č”Œę”æé™¢č¾²ę„­å§”å“”ęœƒę¼ę„­ē½²'),
(99138, 81814, 'en', 'name', 'Kazusa DNA Research Institute'),
(99139, 81814, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‹ćšć•DNA研究所'),
(99140, 81815, 'en', 'name', 'National Agri-Food Biotechnology Institute'),
(99141, 81816, 'en', 'name', 'Jiangxi Normal University'),
(99142, 81816, 'zh', 'name', '江脿师范大学'),
(99143, 81817, 'en', 'name', 'Changzhou Vocational Institute of Engineering'),
(99144, 81817, 'zh', 'name', 'åøøå·žå·„ēØ‹čŒäøšęŠ€ęœÆå­¦é™¢'),
(99145, 81818, 'en', 'name', 'Uganda National Council for Science and Technology'),
(99146, 81819, 'no_lang_code', 'name', 'Orbus Therapeutics (United States)'),
(99147, 81820, 'no_lang_code', 'name', 'International Geosynthetics Society (United States)'),
(99148, 81821, 'en', 'name', 'Weill Cornell Medical College in Qatar'),
(99149, 81821, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų·ŲØ ŁˆŲ§ŁŠŁ„ ŁƒŁˆŲ±Ł†ŁŠŁ„'),
(99150, 81822, 'en', 'name', 'Earthquake Commission'),
(99151, 81823, 'no_lang_code', 'name', 'Woodside (Australia)'),
(99152, 81824, 'en', 'name', 'Tongren University'),
(99153, 81824, 'zh', 'name', '铜仁大学'),
(99154, 81825, 'en', 'name', 'Islamic Azad University of Tabriz'),
(99155, 81825, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تبریز'),
(99156, 81826, 'en', 'name', 'African Economic Research Consortium'),
(99157, 81827, 'en', 'name', 'Department of Finance'),
(99158, 81828, 'en', 'name', 'Southwestern Medical Foundation'),
(99159, 81829, 'en', 'name', 'Nicholls State University'),
(99160, 81829, 'fr', 'name', 'UniversitĆ© d''Ɖtat nicholls'),
(99161, 81830, 'en', 'name', 'Australian Centre for Robotic Vision'),
(99162, 81831, 'en', 'name', 'Whitehead Institute for Biomedical Research'),
(99163, 81832, 'en', 'name', 'Federal University of Ouro Preto'),
(99164, 81832, 'pt', 'name', 'Universidade Federal de Ouro Preto'),
(99165, 81833, 'tr', 'name', 'Sofya Teknik Üniversitesi'),
(99166, 81833, 'en', 'name', 'Technical University of Sofia'),
(99167, 81833, 'bg', 'name', 'Технически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Š”Š¾Ń„ŠøŃ'),
(99168, 81834, 'de', 'name', 'Nationale Einrichtung für Radioaktive Abfälle und angereicherte Spaltmaterialien'),
(99169, 81834, 'nl', 'name', 'Nationale Instelling voor Radioactief Aval en verijkte Splijtstoffen'),
(99170, 81834, 'fr', 'name', 'Organisme national des déchets radioactifs et des matières fissiles enrichies'),
(99171, 81835, 'en', 'name', 'Baylor University Medical Center'),
(99172, 81836, 'en', 'name', 'Maine Department of Inland Fisheries and Wildlife'),
(99173, 81837, 'en', 'name', 'Foundation of Hope'),
(99174, 81838, 'en', 'name', 'Zewail City of Science and Technology'),
(99175, 81838, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų²ŁˆŁŠŁ„ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(99176, 81839, 'en', 'name', 'Society for Cardiovascular Magnetic Resonance'),
(99177, 81840, 'no_lang_code', 'name', 'Manitoba Hydro'),
(99178, 81841, 'en', 'name', 'Brain Research New Zealand'),
(99179, 81842, 'en', 'name', 'British Columbia Lung Association'),
(99180, 81843, 'en', 'name', 'Rett Syndrome Research Trust'),
(99181, 81844, 'en', 'name', 'Kentucky Department for Public Health'),
(99182, 81845, 'no_lang_code', 'name', 'Snap-on (United States)'),
(99183, 81846, 'en', 'name', 'Ministry of Health, Nutrition and Indigenous Medicine'),
(99184, 81847, 'en', 'name', 'Swedish Association of Local Authorities and Regions'),
(99185, 81848, 'en', 'name', 'Campbell Collaboration'),
(99186, 81849, 'en', 'name', 'Palaeontological Scientific Trust'),
(99187, 81850, 'en', 'name', 'Al-Furat Al-Awsat Technical University'),
(99188, 81850, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الفرات Ų§Ł„Ų§ŁˆŲ³Ų· Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(99189, 81851, 'en', 'name', 'Israel Institute for Biological Research'),
(99190, 81851, 'ar', 'name', 'معهد Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„ للابحاث Ų§Ł„ŲØŁŠŁˆŁ„ŁˆŲ¬ŁŠŲ©'),
(99191, 81852, 'en', 'name', 'State Key Laboratory of Polymer Physics and Chemistry'),
(99192, 81852, 'zh', 'name', 'äø­ē§‘é™¢é«˜åˆ†å­ē‰©ē†äøŽåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99193, 81853, 'no_lang_code', 'name', 'China Coal Technology and Engineering Group Corp (China)'),
(99194, 81853, 'zh', 'name', 'äø­å›½ē…¤ē‚­ē§‘å·„é›†å›¢ęœ‰é™å…¬åø'),
(99195, 81854, 'no_lang_code', 'name', 'BioDelivery Sciences International (United States)'),
(99196, 81855, 'nl', 'name', 'Nederlands Herseninstituut'),
(99197, 81855, 'en', 'name', 'Netherlands Institute for Neuroscience'),
(99198, 81856, 'en', 'name', 'Hearing Loss Association of America'),
(99199, 81857, 'en', 'name', 'Jaeb Center for Health Research'),
(99200, 81858, 'en', 'name', 'University of Health and Allied Sciences'),
(99201, 81859, 'en', 'name', 'International Society of Ultrasound in Obstetrics and Gynecology'),
(99202, 81860, 'no_lang_code', 'name', 'Aminex Therapeutics (United States)'),
(99203, 81861, 'en', 'name', 'International Sociological Association'),
(99204, 81862, 'en', 'name', 'University of Hong Kong - Shenzhen Hospital'),
(99205, 81862, 'zh', 'name', 'é¦™ęøÆå¤§å­¦ę·±åœ³åŒ»é™¢'),
(99206, 81863, 'en', 'name', 'Queens College, CUNY'),
(99207, 81863, 'fr', 'name', 'Queens college, city university of new york'),
(99208, 81864, 'en', 'name', 'World Heart Federation'),
(99209, 81865, 'en', 'name', 'Monterey Bay Aquarium Foundation'),
(99210, 81866, 'no_lang_code', 'name', 'Amorepacific (South Korea)'),
(99211, 81867, 'es', 'name', 'Universidad Católica de Valencia San Vicente MÔrtir'),
(99212, 81867, 'en', 'name', 'Valencia Catholic University Saint Vincent Martyr'),
(99213, 81868, 'en', 'name', 'Royal Town Planning Institute'),
(99214, 81869, 'no_lang_code', 'name', 'Imricor (United States)'),
(99215, 81870, 'no_lang_code', 'name', 'Karus Therapeutics (United Kingdom)'),
(99216, 81871, 'en', 'name', 'Cardinal Tien Hospital'),
(99217, 81871, 'zh', 'name', 'č€•čŽ˜åŒ»é™¢'),
(99218, 81872, 'en', 'name', 'European Leukodystrophy Association'),
(99219, 81872, 'fr', 'name', 'L’Association EuropĆ©enne contre les Leucodystrophies'),
(99220, 81873, 'en', 'name', 'Japan Food Chemical Research Foundation'),
(99221, 81873, 'ja', 'name', 'ę—„ęœ¬é£Ÿå“åŒ–å­¦ē ”ē©¶č²”å›£'),
(99222, 81874, 'en', 'name', 'Schizophrenia Research Institute'),
(99223, 81875, 'no_lang_code', 'name', 'VIR Biotechnology (United States)'),
(99224, 81876, 'en', 'name', 'Center for Neuroscience and Regenerative Medicine'),
(99225, 81877, 'en', 'name', 'Helmholtz Alliance for Astroparticle Physics'),
(99226, 81878, 'en', 'name', 'Psychonomic Society'),
(99227, 81879, 'en', 'name', 'Liaoning Academy of Agricultural Sciences'),
(99228, 81879, 'zh', 'name', 'č¾½å®ēœå†œäøšē§‘å­¦é™¢'),
(99229, 81880, 'en', 'name', 'A.O. Kovalevsky Institute of Biology of the Southern Seas'),
(99230, 81880, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ біології півГенних морів ім. Šž.Šž. Ковалевського'),
(99231, 81881, 'en', 'name', 'Holy Spirit University of Kaslik'),
(99232, 81881, 'fr', 'name', 'UniversitƩ saint-esprit de kaslik'),
(99233, 81881, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ł‘ŁˆŲ­ القدس - Ų§Ł„ŁƒŲ³Ł„ŁŠŁƒ'),
(99234, 81882, 'en', 'name', 'Tokyo City University'),
(99235, 81882, 'ja', 'name', 'ę±äŗ¬éƒ½åø‚å¤§å­¦'),
(99236, 81883, 'en', 'name', 'National Chemical Laboratory'),
(99237, 81883, 'mr', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ रासायनिक ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤³ą¤¾'),
(99238, 81883, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą¤¾ą¤øą¤¾ą¤Æą¤Øą¤æą¤•ą„€ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(99239, 81883, 'ml', 'name', 'ą“Øą“¾ą“·ą“£ąµ½ ą“•ąµ†ą“®ą“æą“•ąµą“•ąµ½ ą“²ą“¾ą“¬ą“±ą“Ÿąµą“Ÿą“±ą“æ'),
(99240, 81884, 'en', 'name', 'NCCR Chemical Biology - Visualisation and Control of Biological Processes Using Chemistry'),
(99241, 81885, 'en', 'name', 'American Society of Anesthesiologists'),
(99242, 81886, 'no_lang_code', 'name', 'Langfang Normal University'),
(99243, 81886, 'zh', 'name', 'å»ŠåŠåøˆčŒƒå­¦é™¢'),
(99244, 81887, 'en', 'name', 'Tides Foundation'),
(99245, 81888, 'en', 'name', 'Department of Education of Zhejiang Province'),
(99246, 81889, 'sv', 'name', 'BesƶksnƤringens Forsknings- Och Utvecklingsfond'),
(99247, 81890, 'no_lang_code', 'name', 'Handan College'),
(99248, 81890, 'zh', 'name', 'é‚Æéƒøå­¦é™¢'),
(99249, 81891, 'de', 'name', 'Innosuisse - Schweizerische Agentur für Innovationsförderung'),
(99250, 81891, 'en', 'name', 'Innosuisse – Swiss Innovation Agency'),
(99251, 81892, 'pl', 'name', 'Narodowy Instytut Leków'),
(99252, 81892, 'en', 'name', 'National Medicines Institute'),
(99253, 81893, 'en', 'name', 'Coventry City Council'),
(99254, 81894, 'en', 'name', 'Mineralogical Society of America'),
(99255, 81895, 'en', 'name', 'Weifang University of Science and Technology'),
(99256, 81896, 'en', 'name', 'Shanghai Clinical Research Center'),
(99257, 81897, 'en', 'name', 'Rockefeller Family Fund'),
(99258, 81898, 'en', 'name', 'Milwaukee Metropolitan Sewerage District'),
(99259, 81899, 'en', 'name', 'Government of Hong Kong'),
(99260, 81899, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½é¦™ęøÆē‰¹åˆ«č”Œę”æåŒŗę”æåŗœ'),
(99261, 81900, 'en', 'name', 'Telecommunications Advancement Foundation'),
(99262, 81900, 'ja', 'name', 'é›»ę°—é€šäæ”ęŽØé€²č²”å›£'),
(99263, 81901, 'en', 'name', 'Baylor Scott & White Health'),
(99264, 81902, 'en', 'name', 'Leibniz Institute for East and Southeast European Studies'),
(99265, 81902, 'de', 'name', 'Leibniz-Institut für Ost- und Südosteuropaforschung'),
(99266, 81903, 'en', 'name', 'Brightlands Materials Center'),
(99267, 81904, 'fr', 'name', 'UniversitƩ franco-allemande'),
(99268, 81905, 'fr', 'name', 'Association FranƧois Aupetit'),
(99269, 81906, 'en', 'name', 'International Union of Nutritional Sciences'),
(99270, 81907, 'en', 'name', 'Institute for Bioengineering of Catalonia'),
(99271, 81907, 'es', 'name', 'L’Institut de Bioenginyeria de Catalunya'),
(99272, 81908, 'en', 'name', 'McGovern Institute for Brain Research'),
(99273, 81909, 'no_lang_code', 'name', 'Cerus (United States)'),
(99274, 81910, 'en', 'name', 'Agri Food and Biosciences Institute'),
(99275, 81911, 'en', 'name', 'Institute of Cardiology'),
(99276, 81911, 'es', 'name', 'Instituto de CardiologĆ­a'),
(99277, 81912, 'en', 'name', 'Association of American Indian Physicians'),
(99278, 81913, 'en', 'name', 'Japan Pancreatic Disease Research Foundation'),
(99279, 81913, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č†µč‡“ē—…ē ”ē©¶č²”å›£'),
(99280, 81914, 'no_lang_code', 'name', 'Korea Telecom (South Korea)'),
(99281, 81914, 'ko', 'name', 'ģ¼€ģ“ķ‹° ģ£¼ģ‹ķšŒģ‚¬'),
(99282, 81915, 'es', 'name', 'Centro de Aplicaciones Tecnológicas y Desarrollo Nuclear'),
(99283, 81916, 'en', 'name', 'University of Papua New Guinea'),
(99284, 81917, 'en', 'name', 'Innsbruck Medical University'),
(99285, 81917, 'de', 'name', 'Medizinische UniversitƤt Innsbruck'),
(99286, 81918, 'de', 'name', 'Bundesministerium für Arbeit und Soziales'),
(99287, 81918, 'en', 'name', 'Federal Ministry of Labour and Social Affairs'),
(99288, 81919, 'no_lang_code', 'name', 'Glenmark Pharmaceuticals (India)'),
(99289, 81920, 'en', 'name', 'Tischner European University'),
(99290, 81920, 'pl', 'name', 'Wyższa Szkoła Europejska'),
(99291, 81921, 'en', 'name', 'Institute of Medicinal Plant Development'),
(99292, 81921, 'zh', 'name', 'čÆē”Øę¤ē‰©ē ”ē©¶ę‰€'),
(99293, 81922, 'en', 'name', 'American Geographical Society'),
(99294, 81923, 'en', 'name', 'The Swifty Foundation'),
(99295, 81924, 'en', 'name', 'National Institute of Mental Health and Neurosciences'),
(99296, 81924, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ मानसिक जाँच ą¤ą¤µą¤‚ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(99297, 81924, 'kn', 'name', 'ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ಮಾನಸಿಕ ą²†ą²°ą³‹ą²—ą³ą²Æ ಹಾಗೂ ą²Øą²°ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(99298, 81924, 'ml', 'name', 'ą“Øą“æą“‚ą“¹ą“¾ąµ»ą“øąµ'),
(99299, 81925, 'en', 'name', 'Central Inland Fisheries Research Institute'),
(99300, 81926, 'en', 'name', 'Technological University of Panama'),
(99301, 81926, 'es', 'name', 'Universidad Tecnológica de PanamÔ'),
(99302, 81927, 'en', 'name', 'The William Buckland Foundation'),
(99303, 81928, 'en', 'name', 'Berlin Institute of Health at CharitƩ - UniversitƤtsmedizin Berlin'),
(99304, 81928, 'de', 'name', 'Berliner Institut für Gesundheitsforschung'),
(99305, 81929, 'en', 'name', 'Rwanda Biomedical Center'),
(99306, 81930, 'en', 'name', 'Canadian Partnership Against Cancer'),
(99307, 81931, 'no_lang_code', 'name', 'F-star (United Kingdom)'),
(99308, 81932, 'fr', 'name', 'Institut pour la Recherche sur la Moelle EpiniĆØre et l’EncĆ©phale'),
(99309, 81933, 'en', 'name', 'Ministry of Agriculture and Cooperatives'),
(99310, 81933, 'th', 'name', 'ąøąø£ąø°ąø—ąø£ąø§ąø‡ą¹€ąøąø©ąø•ąø£ą¹ąø„ąø°ąøŖąø«ąøąø£ąø“ą¹Œ'),
(99311, 81934, 'en', 'name', 'Taipei Veterans General Hospital'),
(99312, 81934, 'zh', 'name', 'å°åŒ—ę¦®ę°‘ēø½é†«é™¢'),
(99313, 81935, 'en', 'name', 'Washington Department of Fish and Wildlife'),
(99314, 81936, 'en', 'name', 'Jiangxi Academy of Agricultural Sciences'),
(99315, 81936, 'zh', 'name', 'ę±Ÿč„æēœå†œäøšē§‘å­¦é™¢'),
(99316, 81937, 'en', 'name', 'Education Endowment Foundation'),
(99317, 81938, 'en', 'name', 'University Hospital Cologne'),
(99318, 81938, 'de', 'name', 'UniversitƤtsklinikum Kƶln'),
(99319, 81939, 'en', 'name', 'Society for Pediatric Urology'),
(99320, 81940, 'de', 'name', 'Ministerium für Soziales, Integration und Gleichstellung des Landes Mecklenburg-Vorpommern'),
(99321, 81941, 'en', 'name', 'Farrell Family Foundation'),
(99322, 81942, 'en', 'name', 'Sakon Nakhon Rajabhat University'),
(99323, 81942, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąøąø„ąø™ąø„ąø£'),
(99324, 81943, 'en', 'name', 'Prince Mohammad bin Fahd University'),
(99325, 81943, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± Ł…Ų­Ł…ŲÆ بن فهد'),
(99326, 81944, 'en', 'name', 'Korea Brain Research Institute'),
(99327, 81944, 'ko', 'name', 'ķ•œźµ­ė‡Œģ—°źµ¬ģ›'),
(99328, 81945, 'nl', 'name', 'OnderzoeksCentrum voor de Aanwending van Staal'),
(99329, 81946, 'en', 'name', 'Schmidt Institute of Physics of the Earth'),
(99330, 81946, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики Земли им. Šž.Š®. ШмиГта Российской акаГемии наук'),
(99331, 81947, 'en', 'name', 'Shared Hierarchical Academic Research Computing Network'),
(99332, 81948, 'en', 'name', 'Max Planck Institute for Terrestrial Microbiology'),
(99333, 81948, 'de', 'name', 'Max-Planck-Institut für Terrestrische Mikrobiologie'),
(99334, 81949, 'no_lang_code', 'name', 'KIC InnoEnergy (Netherlands)'),
(99335, 81950, 'en', 'name', 'Wellcome/MRC Cambridge Stem Cell Institute'),
(99336, 81951, 'no_lang_code', 'name', 'MED-EL (Austria)'),
(99337, 81952, 'en', 'name', 'Mid-America Arts Alliance'),
(99338, 81953, 'no_lang_code', 'name', 'Gƶteborg Energi (Sweden)'),
(99339, 81954, 'pt', 'name', 'Universidade do Vale do ItajaĆ­'),
(99340, 81955, 'nl', 'name', 'Nationaal Fonds Geestelijke Volksgezondheid'),
(99341, 81956, 'en', 'name', 'Psoriasis Association'),
(99342, 81957, 'en', 'name', 'VA Healthcare-VISN 4'),
(99343, 81958, 'en', 'name', 'Taronga Conservation Society Australia'),
(99344, 81959, 'en', 'name', 'South Florida Water Management District'),
(99345, 81960, 'en', 'name', 'Singapore Bioimaging Consortium'),
(99346, 81961, 'en', 'name', 'FPT University'),
(99347, 81961, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c FPT'),
(99348, 81962, 'hi', 'name', 'D Y पाटिल ą¤ą¤œą„‚ą¤•ą„‡ą¤¶ą¤Ø ą¤øą„‹ą¤øą¤¾ą¤‡ą¤Ÿą„€'),
(99349, 81962, 'en', 'name', 'D.Y. Patil Education Society'),
(99350, 81963, 'no_lang_code', 'name', 'Evercyte (Austria)'),
(99351, 81964, 'en', 'name', 'John & Marcia Goldman Foundation'),
(99352, 81965, 'no_lang_code', 'name', 'Eisai (United States)'),
(99353, 81965, 'ja', 'name', 'ć‚Øćƒ¼ć‚¶ć‚¤ę Ŗå¼ä¼šē¤¾'),
(99354, 81966, 'en', 'name', 'Norwegian Armed Forces'),
(99355, 81967, 'en', 'name', 'Kaohsiung Municipal Hsiao-Kang Hospital'),
(99356, 81968, 'de', 'name', 'Schweizerische Stiftung für das cerebral gelähmte Kind'),
(99357, 81968, 'en', 'name', 'Swiss Foundation for Children with Cerebral Palsy'),
(99358, 81969, 'en', 'name', 'Society of Petroleum Engineers'),
(99359, 81970, 'en', 'name', 'Madhya Pradesh Council of Science and Technology'),
(99360, 81971, 'no_lang_code', 'name', 'Weatherford (United States)'),
(99361, 81972, 'en', 'name', 'Purple Mountain Laboratories'),
(99362, 81972, 'zh', 'name', 'ē½‘ē»œé€šäæ”äøŽå®‰å…Øē“«é‡‘å±±å®žéŖŒå®¤'),
(99363, 81973, 'en', 'name', 'Croatian Academy of Sciences and Arts'),
(99364, 81973, 'hr', 'name', 'Hrvatska akademija znanosti i umjetnosti'),
(99365, 81974, 'en', 'name', 'National Treasury'),
(99366, 81975, 'en', 'name', 'Damietta University'),
(99367, 81975, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ…ŁŠŲ§Ų·'),
(99368, 81976, 'en', 'name', 'South African National Parks'),
(99369, 81977, 'en', 'name', 'Clinical Nutrition Research Centre'),
(99370, 81978, 'no_lang_code', 'name', 'Scania (Sweden)'),
(99371, 81979, 'en', 'name', 'Indian Institute of Petroleum'),
(99372, 81980, 'en', 'name', 'Planetary Society'),
(99373, 81981, 'en', 'name', 'Wilson Ornithological Society'),
(99374, 81982, 'en', 'name', 'Queen Elizabeth Hospital Birmingham'),
(99375, 81983, 'en', 'name', 'Sahand University of Technology'),
(99376, 81983, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ سهند'),
(99377, 81984, 'en', 'name', 'Sandwell & West Birmingham Hospitals NHS Trust'),
(99378, 81985, 'en', 'name', 'Wan Fang Hospital'),
(99379, 81985, 'zh', 'name', 'č‡ŗåŒ—åø‚ē«‹č¬čŠ³é†«é™¢'),
(99380, 81986, 'no', 'name', 'Norsk Revmatikerforbund'),
(99381, 81987, 'en', 'name', 'Seikei University'),
(99382, 81987, 'ja', 'name', '成蹊大学'),
(99383, 81988, 'sv', 'name', 'Astma och Allergi Fƶrbundet'),
(99384, 81988, 'en', 'name', 'Swedish Asthma and Allergy Association'),
(99385, 81989, 'no_lang_code', 'name', 'Allergy Therapeutics (United Kingdom)'),
(99386, 81990, 'en', 'name', 'Finnish Concordia Fund'),
(99387, 81990, 'fi', 'name', 'Suomalainen Konkordia-liitto'),
(99388, 81991, 'en', 'name', 'Swedish Water & Wastewater Association'),
(99389, 81992, 'no_lang_code', 'name', 'Societas pro Fauna et Flora Fennica'),
(99390, 81993, 'no_lang_code', 'name', 'Sirtex (Australia)'),
(99391, 81994, 'es', 'name', 'Asociación Catalana de Universidades Públicas'),
(99392, 81994, 'en', 'name', 'Catalan Association of Public Universities'),
(99393, 81995, 'no_lang_code', 'name', 'Dendreon (United States)'),
(99394, 81996, 'en', 'name', 'Independent University'),
(99395, 81996, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦”ą¦æą¦Ŗą§‡ą¦Øą§ą¦”ą§‡ą¦Øą§ą¦Ÿ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ বাংলাদেশ'),
(99396, 81997, 'en', 'name', 'Biomedical Research Network Center for Liver and Digestive Diseases'),
(99397, 81997, 'es', 'name', 'Centro de Investigación Biomédica en Red de Enfermedades HepÔticas y Digestivas'),
(99398, 81998, 'en', 'name', 'National Association for Research in Science Teaching'),
(99399, 81999, 'en', 'name', 'Gauss Centre for Supercomputing'),
(99400, 82000, 'en', 'name', 'National Marine Sanctuary Foundation'),
(99401, 82001, 'no_lang_code', 'name', 'Vanda Pharmaceuticals (United States)'),
(99402, 82002, 'en', 'name', 'Society for Adolescent Health and Medicine'),
(99403, 82003, 'no_lang_code', 'name', 'Microsoft Research Asia (China)'),
(99404, 82004, 'no_lang_code', 'name', 'General Motors (Canada)'),
(99405, 82004, 'fr', 'name', 'General Motors du Canada LimitƩe'),
(99406, 82005, 'en', 'name', 'National Institutes for Food and Drug Control'),
(99407, 82005, 'zh', 'name', 'äø­å›½é£Ÿå“čÆå“ę£€å®šē ”ē©¶é™¢'),
(99408, 82006, 'en', 'name', 'The Leon Lowenstein Foundation'),
(99409, 82007, 'en', 'name', 'Society for American Archaeology'),
(99410, 82008, 'en', 'name', 'Children''s Oncology Group'),
(99411, 82009, 'en', 'name', 'Wellcome Centre for Mitochondrial Research'),
(99412, 82010, 'en', 'name', 'Missouri Department of Health and Senior Services'),
(99413, 82011, 'en', 'name', 'Hunan Vocational Institute of Technology'),
(99414, 82011, 'zh', 'name', 'ę¹–å—ē†å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(99415, 82012, 'pl', 'name', 'Akademii Wychowania Fizycznego im. Jerzego Kukuczki w Katowicach'),
(99416, 82012, 'en', 'name', 'The Jerzy Kukuczka Academy of Physical Education in Katowice'),
(99417, 82013, 'en', 'name', 'Ethiopian Environment and Forest Research Institute'),
(99418, 82014, 'en', 'name', 'Institute of Refrigeration'),
(99419, 82015, 'en', 'name', 'Shanghai Municipal People''s Government'),
(99420, 82016, 'en', 'name', 'Japan Organization of Occupational Health and Safety'),
(99421, 82016, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹'),
(99422, 82017, 'en', 'name', 'European Brain Council'),
(99423, 82018, 'en', 'name', 'Bavarian Research Alliance'),
(99424, 82018, 'de', 'name', 'Bayerische Forschungsallianz'),
(99425, 82019, 'en', 'name', 'Institute for Health Economics and Policy'),
(99426, 82020, 'en', 'name', 'Ryazan State Radio Engineering University'),
(99427, 82020, 'ru', 'name', 'Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ раГиотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99428, 82021, 'en', 'name', 'Central Institute of Fisheries Technology'),
(99429, 82022, 'en', 'name', 'Walloon Excellence in Lifesciences and Biotechnology'),
(99430, 82023, 'en', 'name', 'Pok Oi Hospital'),
(99431, 82023, 'zh', 'name', 'åšę„›é†«é™¢'),
(99432, 82024, 'sv', 'name', 'S:t Eriks Ɩgonsjukhus'),
(99433, 82025, 'en', 'name', 'Pegaso University'),
(99434, 82025, 'it', 'name', 'UniversitĆ  degli Studi Pegaso'),
(99435, 82026, 'no_lang_code', 'name', 'Komatsu (Japan)'),
(99436, 82026, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å°ę¾č£½ä½œę‰€'),
(99437, 82027, 'en', 'name', 'Zabol University of Medical Sciences'),
(99438, 82027, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų²Ų§ŲØŁ„'),
(99439, 82028, 'no_lang_code', 'name', 'BioFire Diagnostics (United States)'),
(99440, 82029, 'en', 'name', 'Yuncheng University'),
(99441, 82029, 'zh', 'name', 'čæåŸŽå­¦é™¢'),
(99442, 82030, 'en', 'name', 'Beijing Children’s Hospital'),
(99443, 82030, 'zh', 'name', 'åŒ—äŗ¬å„æē«„åŒ»é™¢'),
(99444, 82031, 'en', 'name', 'International Union of Toxicology'),
(99445, 82032, 'en', 'name', 'International Institute of Tropical Forestry'),
(99446, 82033, 'en', 'name', 'Sylvester Comprehensive Cancer Center'),
(99447, 82034, 'it', 'name', 'Instituto di Ricerche Farmacologiche Mario Negri'),
(99448, 82034, 'en', 'name', 'Mario Negri Institute for Pharmacological Research'),
(99449, 82035, 'en', 'name', 'Shanghai Meteorological Bureau'),
(99450, 82035, 'zh', 'name', 'äøŠęµ·åø‚ę°”č±”å±€'),
(99451, 82036, 'en', 'name', 'Materials Research Society'),
(99452, 82037, 'en', 'name', 'Kaohsiung Municipal Ta-Tung Hospital'),
(99453, 82037, 'zh', 'name', 'é«˜é›„åø‚ē«‹å¤§åŒé†«é™¢'),
(99454, 82038, 'en', 'name', 'Solent NHS Trust'),
(99455, 82039, 'en', 'name', 'International Institute of Islamic Thought'),
(99456, 82040, 'en', 'name', 'Pharmac'),
(99457, 82041, 'ro', 'name', 'Ministerul Educației, Culturii și Cercetării'),
(99458, 82041, 'en', 'name', 'Ministry of Education, Culture and Research'),
(99459, 82042, 'en', 'name', 'Riley Children''s Foundation'),
(99460, 82043, 'en', 'name', 'Central Salt and Marine Chemicals Research Institute'),
(99461, 82044, 'it', 'name', 'Agenzia Nazionale di Valutazione del Sistema Universitario e della Ricerca'),
(99462, 82044, 'en', 'name', 'Italian National Agency for the Evaluation of Universities and Research Institutes'),
(99463, 82045, 'no_lang_code', 'name', 'Delta Electronics (China)'),
(99464, 82046, 'en', 'name', 'Kanagawa Prefectural Hospital Organization'),
(99465, 82046, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē„žå„ˆå·ēœŒē«‹ē—…é™¢ę©Ÿę§‹'),
(99466, 82047, 'en', 'name', 'SBA Research'),
(99467, 82048, 'en', 'name', 'Liberty Mutual Research Institute for Safety'),
(99468, 82049, 'en', 'name', 'Pakistan Association of Cognitive Therapists'),
(99469, 82050, 'no_lang_code', 'name', 'Flanders'' Food (Belgium)'),
(99470, 82051, 'it', 'name', 'Finpiemonte'),
(99471, 82052, 'en', 'name', 'Yunnan Institute of Environmental Sciences'),
(99472, 82052, 'zh', 'name', 'äŗ‘å—ēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(99473, 82053, 'no_lang_code', 'name', 'aTyr Pharma (United States)'),
(99474, 82054, 'en', 'name', 'Royal College of Physicians and Surgeons of Glasgow'),
(99475, 82055, 'ro', 'name', 'Agenţia Spaţială Română'),
(99476, 82055, 'en', 'name', 'Romanian Space Agency'),
(99477, 82056, 'en', 'name', 'Robert J Kleberg Jr and Helen C Kleberg Foundation'),
(99478, 82057, 'en', 'name', 'NorthShore University HealthSystem'),
(99479, 82058, 'en', 'name', 'Society for Industrial Microbiology and Biotechnology'),
(99480, 82059, 'en', 'name', 'The Scar Free Foundation'),
(99481, 82060, 'en', 'name', 'National Synchrotron Radiation Laboratory'),
(99482, 82060, 'zh', 'name', 'å›½å®¶åŒę­„č¾å°„å®žéŖŒå®¤'),
(99483, 82061, 'de', 'name', 'AIO Studien gGmbH'),
(99484, 82062, 'fi', 'name', 'Helsingin Sanomain SƤƤtiƶ'),
(99485, 82062, 'en', 'name', 'Helsingin Sanomat Foundation'),
(99486, 82063, 'en', 'name', 'Japan Cancer Society'),
(99487, 82063, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åÆ¾ćŒć‚“å”ä¼š'),
(99488, 82064, 'en', 'name', 'The Borrow Foundation'),
(99489, 82065, 'en', 'name', 'Beijing Institute of Genomics'),
(99490, 82065, 'zh', 'name', 'åŒ—äŗ¬åŸŗå› ē»„ē ”ē©¶ę‰€'),
(99491, 82066, 'en', 'name', 'Shanghai First People''s Hospital'),
(99492, 82067, 'en', 'name', 'Institution of Structural Engineers'),
(99493, 82068, 'en', 'name', 'Tempus Public Foundation'),
(99494, 82069, 'en', 'name', 'Laureate Institute for Brain Research'),
(99495, 82070, 'en', 'name', 'National Institute of Food Technology Entrepreneurship and Management'),
(99496, 82070, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤–ą¤¾ą¤¦ą„ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤‰ą¤§ą¤®ą¤¶ą„€ą¤²ą¤¤ą¤¾ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(99497, 82071, 'en', 'name', 'Texas General Land Office'),
(99498, 82072, 'en', 'name', 'Citrus Research International'),
(99499, 82073, 'en', 'name', 'National Institute of Animal Nutrition and Physiology'),
(99500, 82074, 'it', 'name', 'Istituto Italiano di Tecnologia'),
(99501, 82074, 'en', 'name', 'Italian Institute of Technology'),
(99502, 82075, 'en', 'name', 'All-Russian Scientific Research Veterinary Institute of Pathology, Pharmacology and Therapy'),
(99503, 82075, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарной патологии, фармакологии Šø терапии'),
(99504, 82076, 'no_lang_code', 'name', 'Jiangsu Hengrui Medicine (China)'),
(99505, 82076, 'zh', 'name', 'ę±Ÿč‹ę’ē‘žåŒ»čÆ'),
(99506, 82077, 'en', 'name', 'Helmholtz International Center for FAIR'),
(99507, 82078, 'en', 'name', 'University of Rajshahi'),
(99508, 82078, 'bn', 'name', 'ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(99509, 82079, 'en', 'name', 'Wilhelmina Children''s Hospital'),
(99510, 82079, 'nl', 'name', 'Wilhelmina Kinderziekenhuis'),
(99511, 82080, 'en', 'name', 'Reading & Writing Foundation'),
(99512, 82081, 'no_lang_code', 'name', 'Gakushuin University'),
(99513, 82081, 'ja', 'name', '学習院大学'),
(99514, 82082, 'en', 'name', 'Tokyo Biochemical Research Foundation'),
(99515, 82082, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę±äŗ¬ē”ŸåŒ–å­¦ē ”ē©¶ä¼š'),
(99516, 82083, 'en', 'name', 'Maurice Wilkins Centre'),
(99517, 82084, 'en', 'name', 'National Graduate Institute for Policy Studies'),
(99518, 82084, 'ja', 'name', '政策研究大学院大学'),
(99519, 82085, 'en', 'name', 'Bowel Cancer UK');
INSERT INTO `ror_settings` VALUES
(99520, 82086, 'de', 'name', 'Bundesministerium für Nachhaltigkeit und Tourismus'),
(99521, 82087, 'no_lang_code', 'name', 'Saudi Aramco (United States)'),
(99522, 82088, 'fr', 'name', 'HƓpital Johns-Hopkins'),
(99523, 82088, 'en', 'name', 'Johns Hopkins Hospital'),
(99524, 82089, 'en', 'name', 'Robertson Foundation'),
(99525, 82090, 'en', 'name', 'Korean Nurses Association'),
(99526, 82090, 'ko', 'name', 'ėŒ€ķ•œź°„ķ˜øķ˜‘ķšŒ'),
(99527, 82091, 'en', 'name', 'BRACE'),
(99528, 82092, 'en', 'name', 'Aromatic Plant Research Center'),
(99529, 82093, 'en', 'name', 'Duke Institute for Health Innovation'),
(99530, 82094, 'en', 'name', 'Mohammed Bin Rashid School of Government'),
(99531, 82094, 'ar', 'name', 'Ł„ŁƒŁ„ŁŠŲ© Ł…Ų­Ł…ŲÆ بن Ų±Ų§Ų“ŲÆ لل؄دارة Ų§Ł„Ų­ŁƒŁˆŁ…ŁŠŲ©'),
(99532, 82095, 'pt', 'name', 'Universidade do Vale do Rio dos Sinos'),
(99533, 82096, 'fr', 'name', 'Fondation Pierre-Gilles de Gennes pour la Recherche'),
(99534, 82097, 'en', 'name', 'Mava Foundation'),
(99535, 82098, 'en', 'name', 'National Institute of Metrology'),
(99536, 82098, 'zh', 'name', 'äø­å›½č®”é‡ē§‘å­¦ē ”ē©¶é™¢'),
(99537, 82099, 'en', 'name', 'ARC Centre of Excellence for Core to Crust Fluid Systems'),
(99538, 82100, 'en', 'name', 'Hackensack Meridian Health'),
(99539, 82101, 'en', 'name', 'Leibniz Institute for Zoo and Wildlife Research'),
(99540, 82101, 'de', 'name', 'Leibniz-Institut für Zoo- und Wildtierforschung'),
(99541, 82102, 'en', 'name', 'Institute of Physical Chemistry'),
(99542, 82102, 'pl', 'name', 'Instytut Chemii Fizycznej Polskiej Akademii Nauk'),
(99543, 82103, 'en', 'name', 'Linda Hall Library'),
(99544, 82104, 'en', 'name', 'International Visegrad Fund'),
(99545, 82105, 'en', 'name', 'Economic Research Institute'),
(99546, 82105, 'kk', 'name', 'Экономикалық Š·ŠµŃ€Ń‚Ń‚ŠµŃƒŠ»ŠµŃ€ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(99547, 82106, 'en', 'name', 'Xinjiang Production and Construction Corps'),
(99548, 82106, 'zh', 'name', 'ę–°ē–†ē”Ÿäŗ§å»ŗč®¾å…µå›¢'),
(99549, 82107, 'en', 'name', 'Trakia University'),
(99550, 82107, 'bg', 'name', 'Тракийски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99551, 82108, 'en', 'name', 'Moravian Archives'),
(99552, 82109, 'en', 'name', 'German National Academy of Sciences Leopoldina'),
(99553, 82109, 'de', 'name', 'Nationale Akademie der Wissenschaften Leopoldina'),
(99554, 82110, 'en', 'name', 'State Administration of Cultural Heritage'),
(99555, 82110, 'zh', 'name', '国家文物局'),
(99556, 82111, 'en', 'name', 'Hidradenitis Suppurativa Foundation'),
(99557, 82112, 'en', 'name', 'Taipei Medical University Hospital'),
(99558, 82112, 'zh', 'name', 'č‡ŗåŒ—é†«å­øå¤§å­øé™„čØ­é†«é™¢)'),
(99559, 82113, 'en', 'name', 'International Studies Association'),
(99560, 82114, 'no_lang_code', 'name', 'Madrigal Pharmaceuticals (United States)'),
(99561, 82115, 'en', 'name', 'National Administration of Surveying, Mapping and Geoinformation of China'),
(99562, 82115, 'zh', 'name', 'å›½å®¶ęµ‹ē»˜åœ°ē†äæ”ęÆå±€äø»ē«™'),
(99563, 82116, 'en', 'name', 'Second Hospital of Tianjin Medical University'),
(99564, 82117, 'no_lang_code', 'name', 'Freeport-McMoRan (United States)'),
(99565, 82118, 'en', 'name', 'Wuhan Union Hospital'),
(99566, 82118, 'zh', 'name', 'ę­¦ę±‰åå’ŒåŒ»é™¢'),
(99567, 82119, 'en', 'name', 'Rasmuson Foundation'),
(99568, 82120, 'fr', 'name', 'Institut Luxembourgeois de la Normalisation, de l''AccrƩditation, de la SƩcuritƩ et qualitƩ des produits et services'),
(99569, 82120, 'de', 'name', 'Luxemburgisches Institut für die Normung, Akkreditierung, Sicherheit und Qualität von Produkten und Dienstleistungen'),
(99570, 82121, 'en', 'name', 'Chongqing Institute of Green and Intelligent Technology'),
(99571, 82121, 'zh', 'name', 'é‡åŗ†ē»æč‰²ę™ŗčƒ½ęŠ€ęœÆē ”ē©¶é™¢'),
(99572, 82122, 'fi', 'name', 'SeinƤjoen Keskussairaala'),
(99573, 82123, 'sv', 'name', 'Fƶrsvarsmakten'),
(99574, 82123, 'en', 'name', 'Swedish Armed Forces'),
(99575, 82124, 'en', 'name', 'National Heart Centre Singapore'),
(99576, 82125, 'en', 'name', 'British Society of Colposcopy and Cervical Pathology'),
(99577, 82126, 'fr', 'name', 'BiodivERsA'),
(99578, 82127, 'en', 'name', 'National Institute of Meteorological Sciences'),
(99579, 82127, 'ko', 'name', 'źµ­ė¦½źø°ģƒź³¼ķ•™ģ›'),
(99580, 82128, 'es', 'name', 'Federación Nacional de Cultivadores de Palma de Aceite'),
(99581, 82128, 'en', 'name', 'National Federation of Palm Oil Producers'),
(99582, 82129, 'en', 'name', 'National Museum of Play'),
(99583, 82130, 'en', 'name', 'University of Rostock'),
(99584, 82130, 'de', 'name', 'UniversitƤt Rostock'),
(99585, 82131, 'en', 'name', 'Korea Disease Control and Prevention Agency'),
(99586, 82131, 'ko', 'name', 'ģ§ˆė³‘ź“€ė¦¬ģ²­'),
(99587, 82132, 'en', 'name', 'Iowa City VA Medical Center'),
(99588, 82133, 'en', 'name', 'Luther College'),
(99589, 82134, 'en', 'name', 'Kirtland Air Force Base'),
(99590, 82135, 'en', 'name', 'Operation Wallacea'),
(99591, 82136, 'en', 'name', 'China Institute Of Communications'),
(99592, 82136, 'zh', 'name', 'äø­å›½é€šäæ”å­¦ä¼š'),
(99593, 82137, 'en', 'name', 'Human Sciences Research Council'),
(99594, 82138, 'en', 'name', 'Torbat Heydarieh University of Medical Sciences'),
(99595, 82138, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲŖŲ±ŲØŲŖ Ų­ŪŒŲÆŲ±ŪŒŁ‡'),
(99596, 82139, 'en', 'name', 'International Union of Radio Science'),
(99597, 82139, 'fr', 'name', 'Union Radio-Scientifique Internationale'),
(99598, 82140, 'en', 'name', 'Hezhou University'),
(99599, 82140, 'zh', 'name', 'č“ŗå·žå­¦é™¢'),
(99600, 82141, 'no_lang_code', 'name', 'Bigfoot Biomedical (United States)'),
(99601, 82142, 'en', 'name', 'Royal Free London NHS Foundation Trust'),
(99602, 82143, 'en', 'name', 'Paracelsus Medical University'),
(99603, 82143, 'de', 'name', 'Paracelsus Medizinische PrivatuniversitƤt'),
(99604, 82144, 'en', 'name', 'APC Microbiome Institute'),
(99605, 82145, 'en', 'name', 'American Dairy Science Association'),
(99606, 82146, 'en', 'name', 'Guangzhou Institute of Energy Conversion'),
(99607, 82146, 'zh', 'name', 'å¹æå·žčƒ½ęŗē ”ē©¶ę‰€'),
(99608, 82147, 'en', 'name', 'State Council of Higher Education for Virginia'),
(99609, 82148, 'no_lang_code', 'name', 'Tongji Hospital'),
(99610, 82149, 'en', 'name', 'Western Australian Marine Science Institution'),
(99611, 82150, 'en', 'name', 'Moredun Research Institute'),
(99612, 82151, 'en', 'name', 'Hofstra University'),
(99613, 82152, 'en', 'name', 'Indiana Wesleyan University'),
(99614, 82153, 'en', 'name', 'University of Central Punjab'),
(99615, 82153, 'ur', 'name', 'جامعہ وسطی پنجاب'),
(99616, 82154, 'en', 'name', 'SRI International'),
(99617, 82155, 'no_lang_code', 'name', 'Maze (United States)'),
(99618, 82156, 'en', 'name', 'Korean Society of Ginseng'),
(99619, 82157, 'en', 'name', 'James N. Kirby Foundation'),
(99620, 82158, 'en', 'name', 'Riddet Institute'),
(99621, 82159, 'en', 'name', 'The Abbeyfield Research Foundation'),
(99622, 82160, 'en', 'name', 'Paul M. Angell Family Foundation'),
(99623, 82161, 'no_lang_code', 'name', 'Energiforsk (Sweden)'),
(99624, 82162, 'en', 'name', 'Japan Medical Association'),
(99625, 82162, 'ja', 'name', 'ę—„ęœ¬åŒ»åø«ä¼š'),
(99626, 82163, 'en', 'name', 'Bank of Finland'),
(99627, 82163, 'sv', 'name', 'Finlands Bank'),
(99628, 82163, 'fi', 'name', 'Suomen Pankki'),
(99629, 82164, 'en', 'name', 'State University of Maranhão'),
(99630, 82164, 'pt', 'name', 'Universidade Estadual do Maranhão'),
(99631, 82165, 'en', 'name', 'Science and Technology on Surface Physics and Chemistry Laboratory'),
(99632, 82165, 'zh', 'name', 'č”Øé¢ē‰©ē†äøŽåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99633, 82166, 'en', 'name', 'Rosalind Franklin University of Medicine and Science'),
(99634, 82167, 'en', 'name', 'Chandigarh University'),
(99635, 82168, 'en', 'name', 'Albion College'),
(99636, 82169, 'en', 'name', 'Tokyo University of Marine Science and Technology'),
(99637, 82169, 'ja', 'name', 'ę±äŗ¬ęµ·ę“‹å¤§å­¦'),
(99638, 82170, 'en', 'name', 'Ishibashi Foundation'),
(99639, 82170, 'ja', 'name', 'ēŸ³ę©‹č²”å›£'),
(99640, 82171, 'en', 'name', 'Cocoa Research Institute of Ghana'),
(99641, 82172, 'en', 'name', 'Mississippi Department of Marine Resources'),
(99642, 82173, 'it', 'name', 'Regione Puglia'),
(99643, 82174, 'en', 'name', 'Central Scientific Instruments Organisation'),
(99644, 82174, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• उपकरण संगठन'),
(99645, 82175, 'no_lang_code', 'name', 'Ribon Therapeutics (United States)'),
(99646, 82176, 'en', 'name', 'National Institute for Medical Research'),
(99647, 82177, 'fr', 'name', 'Banque Royale du Canada'),
(99648, 82177, 'en', 'name', 'Royal Bank of Canada'),
(99649, 82178, 'en', 'name', 'Carnegie Museum of Natural History'),
(99650, 82178, 'es', 'name', 'Museo Carnegie de Historia Natural'),
(99651, 82179, 'no_lang_code', 'name', 'Cerevel Therapeutics (United States)'),
(99652, 82180, 'en', 'name', 'State Key Laboratory of Chemical Engineering'),
(99653, 82180, 'zh', 'name', 'åŒ–å­¦å·„ēØ‹č”åˆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99654, 82181, 'en', 'name', 'Visvesvaraya National Institute of Technology'),
(99655, 82181, 'hi', 'name', 'ą¤µą¤æą¤¶ą„ą¤µą„‡ą¤¶ą„ą¤µą¤°ą„ˆą¤Æą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(99656, 82182, 'en', 'name', 'St. Paul''s Hospital'),
(99657, 82182, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ„œģšøģ„±ėŖØė³‘ģ›'),
(99658, 82183, 'en', 'name', 'International Nut and Dried Fruit Council'),
(99659, 82184, 'en', 'name', 'Stavanger University Hospital'),
(99660, 82185, 'en', 'name', 'Otto A. Malm Foundation'),
(99661, 82185, 'fi', 'name', 'Otto A. Malms Donationsfond'),
(99662, 82186, 'en', 'name', 'Saga University'),
(99663, 82186, 'ja', 'name', '佐賀大学'),
(99664, 82187, 'en', 'name', 'Knox College'),
(99665, 82188, 'en', 'name', 'Norwich University'),
(99666, 82188, 'fr', 'name', 'UniversitƩ de norwich'),
(99667, 82189, 'es', 'name', 'Universidad del AtlƔntico'),
(99668, 82189, 'en', 'name', 'University of AtlƔntico'),
(99669, 82190, 'en', 'name', 'World Resources Institute'),
(99670, 82191, 'en', 'name', 'Mississippi Department of Wildlife Fisheries and Parks'),
(99671, 82192, 'en', 'name', 'SUNY Upstate Medical University'),
(99672, 82193, 'it', 'name', 'Istituto Superiore Mario Boella'),
(99673, 82194, 'en', 'name', 'Hellenic Ministry of Rural Development and Food'),
(99674, 82194, 'el', 'name', '΄πουργείο Αγροτικής Ανάπτυξης και Τροφίμων'),
(99675, 82195, 'en', 'name', 'Wildlife Management Institute'),
(99676, 82196, 'en', 'name', 'Thamar University'),
(99677, 82196, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų°Ł…Ų§Ų±'),
(99678, 82197, 'en', 'name', 'Government Communications Headquarters'),
(99679, 82198, 'en', 'name', 'State Key Laboratory of Vehicle NVH and Safety Technology'),
(99680, 82199, 'en', 'name', 'The Nature Conservancy'),
(99681, 82200, 'en', 'name', 'Attorney-General''s Department Australia'),
(99682, 82201, 'en', 'name', 'Virginia Transportation Research Council'),
(99683, 82202, 'en', 'name', 'National Remote Sensing Centre'),
(99684, 82202, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„ą¤¦ą„‚ą¤° ą¤øą¤‚ą¤µą„‡ą¤¦ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(99685, 82202, 'te', 'name', 'ą°Øą±‡ą°·ą°Øą°²ą± ą°°ą°æą°®ą±‹ą°Ÿą± ą°øą±†ą°Øą±ą°øą°æą°‚ą°—ą± ą°øą±†ą°‚ą°Ÿą°°ą±'),
(99686, 82203, 'es', 'name', 'Centro Internacional de la Papa'),
(99687, 82203, 'en', 'name', 'International Potato Center'),
(99688, 82204, 'en', 'name', 'Southern Medical University Shenzhen Hospital'),
(99689, 82204, 'zh', 'name', 'å—ę–¹åŒ»ē§‘å¤§å­¦ę·±åœ³åŒ»é™¢'),
(99690, 82205, 'en', 'name', 'Finnish Foundation for Alcohol Studies'),
(99691, 82206, 'en', 'name', 'National Council for Air and Stream Improvement'),
(99692, 82207, 'en', 'name', 'Department for Education and Child Development'),
(99693, 82208, 'en', 'name', 'Iwate Medical University'),
(99694, 82208, 'ja', 'name', 'å²©ę‰‹åŒ»ē§‘å¤§å­¦'),
(99695, 82209, 'en', 'name', 'University of Miyazaki Hospital'),
(99696, 82209, 'ja', 'name', 'å®®å“Žå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(99697, 82210, 'en', 'name', 'Shandong Province Health and Family Planning Commission'),
(99698, 82210, 'zh', 'name', 'å±±äøœēœå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(99699, 82211, 'en', 'name', 'Alberta Milk'),
(99700, 82212, 'no_lang_code', 'name', 'Sarepta Therapeutics (United States)'),
(99701, 82213, 'en', 'name', 'Southwest Forestry University'),
(99702, 82213, 'zh', 'name', 'č„æå—ęž—äøšå¤§å­¦'),
(99703, 82214, 'no_lang_code', 'name', 'EA Pharma (Japan)'),
(99704, 82215, 'es', 'name', 'Servicio Murciano de Salud'),
(99705, 82216, 'en', 'name', 'Taiyuan Normal University'),
(99706, 82216, 'zh', 'name', 'å¤ŖåŽŸåøˆčŒƒå­¦é™¢'),
(99707, 82217, 'en', 'name', 'Sultan Ageng Tirtayasa University'),
(99708, 82217, 'id', 'name', 'Universitas Sultan Ageng Tirtayasa'),
(99709, 82218, 'en', 'name', 'Danish Diabetes Academy'),
(99710, 82219, 'no_lang_code', 'name', 'Satellite Healthcare (United States)'),
(99711, 82220, 'no_lang_code', 'name', 'Jazz Pharmaceuticals (Ireland)'),
(99712, 82221, 'en', 'name', 'Louisiana Universities Marine Consortium'),
(99713, 82222, 'en', 'name', 'Pontifical Catholic University of Minas Gerais'),
(99714, 82222, 'pt', 'name', 'Pontifícia Universidade Católica de Minas Gerais'),
(99715, 82222, 'fr', 'name', 'UniversitƩ Pontificale Catholique du Minas Gerais'),
(99716, 82223, 'en', 'name', 'Nano-Convergence Foundation'),
(99717, 82224, 'en', 'name', 'Center for Life Sciences'),
(99718, 82224, 'zh', 'name', 'ē”Ÿå‘½ē§‘å­¦č”åˆäø­åæƒ'),
(99719, 82225, 'da', 'name', 'Kongelige Danske Videnskabernes Selskab'),
(99720, 82225, 'en', 'name', 'The Royal Danish Academy of Sciences and Letters'),
(99721, 82226, 'en', 'name', 'Haukeland University Hospital'),
(99722, 82227, 'en', 'name', 'Civil Protection Department'),
(99723, 82227, 'it', 'name', 'Dipartimento della Protezione Civile'),
(99724, 82228, 'en', 'name', 'Traditional Chinese Medicine Bureau of Guangdong Province'),
(99725, 82228, 'zh', 'name', 'å¹æäøœēœäø­åŒ»čÆå±€'),
(99726, 82229, 'en', 'name', 'Rockford University'),
(99727, 82230, 'id', 'name', 'Universitas Teknologi Yogyakarta'),
(99728, 82231, 'sv', 'name', 'Diabetesfƶrbundet'),
(99729, 82232, 'en', 'name', 'Nanjing Science and Technology Commission'),
(99730, 82232, 'zh', 'name', 'å—äŗ¬åø‚ē§‘ęŠ€å±€'),
(99731, 82233, 'en', 'name', 'Friends Research Institute'),
(99732, 82234, 'it', 'name', 'Fondazione Nando ed Elsa Peretti'),
(99733, 82234, 'en', 'name', 'Nando Peretti Foundation'),
(99734, 82235, 'en', 'name', 'Nahrain University'),
(99735, 82235, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†Ł‡Ų±ŁŠŁ†'),
(99736, 82236, 'id', 'name', 'Universitas Widyatama'),
(99737, 82237, 'en', 'name', 'Federal University of EspĆ­rito Santo'),
(99738, 82237, 'pt', 'name', 'Universidade Federal do EspĆ­rito Santo'),
(99739, 82238, 'no_lang_code', 'name', 'Sumitomo Electric Industries (Japan)'),
(99740, 82238, 'ja', 'name', 'ä½å‹é›»ę°—å·„ę„­'),
(99741, 82239, 'en', 'name', 'Dogs Trust'),
(99742, 82240, 'no_lang_code', 'name', 'Cytori Therapeutics (United States)'),
(99743, 82241, 'en', 'name', 'State Key Laboratory of Remote Sensing Science'),
(99744, 82241, 'zh', 'name', 'é„ę„Ÿē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99745, 82242, 'en', 'name', 'MOA Health Science Foundation'),
(99746, 82242, 'ja', 'name', 'MOA偄康科学貔団'),
(99747, 82243, 'en', 'name', 'Tamagawa University'),
(99748, 82243, 'ja', 'name', 'ēŽ‰å·å¤§å­¦'),
(99749, 82244, 'en', 'name', 'Iranian Research Institute of Plant Protection'),
(99750, 82245, 'en', 'name', 'Rocky Mountain Research Station'),
(99751, 82246, 'es', 'name', 'Agencia Catalana de L''Aigua'),
(99752, 82246, 'en', 'name', 'Catalan Water Agency'),
(99753, 82247, 'en', 'name', 'Ministry of Environment and Tourism'),
(99754, 82248, 'en', 'name', 'Centre of Natural Hazards and Disaster Science'),
(99755, 82249, 'pt', 'name', 'Universidade do Extremo Sul Catarinense'),
(99756, 82249, 'fr', 'name', 'Université de l''extrême sud de santa catarina'),
(99757, 82250, 'en', 'name', 'United States Marine Corps'),
(99758, 82251, 'en', 'name', 'Montana Institute on Ecosystems'),
(99759, 82252, 'no_lang_code', 'name', 'Tenaga Nasional Berhad (Malaysia)'),
(99760, 82252, 'fa', 'name', 'تناݢ Ł†Ų§Ų³ŁŠŁˆŁ†Ł„ ŲØŲ±Ų­ŲÆ'),
(99761, 82253, 'en', 'name', 'Banco de Portugal'),
(99762, 82254, 'en', 'name', 'Associated Universities, Inc.'),
(99763, 82255, 'en', 'name', 'USF Health Byrd Alzheimer''s Institute'),
(99764, 82256, 'en', 'name', 'Tennessee Department of Transportation'),
(99765, 82257, 'en', 'name', 'National University of Misiones'),
(99766, 82257, 'es', 'name', 'Universidad Nacional de Misiones'),
(99767, 82258, 'no_lang_code', 'name', 'Zafgen (United States)'),
(99768, 82259, 'en', 'name', 'Tokyo Polytechnic University'),
(99769, 82259, 'ja', 'name', 'ę±äŗ¬å·„čŠøå¤§å­¦'),
(99770, 82260, 'en', 'name', 'National Bureau of Economic Research'),
(99771, 82261, 'en', 'name', 'Institute of Psychology, Chinese Academy of Sciences'),
(99772, 82261, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åæƒē†ē ”ē©¶ę‰€'),
(99773, 82262, 'no_lang_code', 'name', 'High Value Manufacturing Catapult'),
(99774, 82263, 'fr', 'name', 'Recherches Scientifiques Luxembourg'),
(99775, 82264, 'no_lang_code', 'name', 'Vanguard International Semiconductor (Taiwan)'),
(99776, 82264, 'zh', 'name', 'äø–ē•Œå…ˆé€²ē©é«”é›»č·Æč‚”ä»½ęœ‰é™å…¬åø'),
(99777, 82265, 'en', 'name', 'Kids'' Cancer Project'),
(99778, 82266, 'en', 'name', 'Fu Wai Hospital'),
(99779, 82266, 'zh', 'name', 'äø­å›½åŒ»å­¦ē§‘å­¦é™¢é˜œå¤–åæƒč”€ē®”ē—…åŒ»é™¢'),
(99780, 82267, 'fr', 'name', 'UniversitƩ Hassan 1er'),
(99781, 82267, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الحسن Ų§Ł„Ų£ŁˆŁ„ Ų³Ų·Ų§ŲŖ'),
(99782, 82268, 'en', 'name', 'LIXIL JS Foundation'),
(99783, 82268, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗLIXILä½ē”Ÿę“»č²”å›£'),
(99784, 82269, 'en', 'name', 'Mahanakorn University of Technology'),
(99785, 82269, 'th', 'name', 'ดหาวณทยาคัยเทคโนโคยีดหานคร'),
(99786, 82270, 'en', 'name', 'Japan Epilepsy Research Foundation'),
(99787, 82270, 'ja', 'name', 'ć¦ć‚“ć‹ć‚“ę²»ē™‚ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(99788, 82271, 'en', 'name', 'South African National AIDS Council'),
(99789, 82272, 'fr', 'name', 'Conseil RƩgional de Bourgogne'),
(99790, 82273, 'en', 'name', 'Agricultural Biotechnology Research Center, Academia Sinica'),
(99791, 82273, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢č¾²ę„­ē”Ÿē‰©ē§‘ęŠ€ē ”ē©¶äø­åæƒ'),
(99792, 82274, 'is', 'name', 'Orkuveita ReykjavĆ­kur'),
(99793, 82274, 'no_lang_code', 'name', 'ReykjavĆ­k Energy (Iceland)'),
(99794, 82275, 'no_lang_code', 'name', 'Siriraj Hospital'),
(99795, 82275, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøØąø“ąø£ąø“ąø£ąø²ąøŠ'),
(99796, 82276, 'no_lang_code', 'name', 'Aptose Biosciences (United States)'),
(99797, 82277, 'en', 'name', 'Polish Geological Institute'),
(99798, 82278, 'en', 'name', 'National Beef Cattle Industrial Technology System'),
(99799, 82279, 'no_lang_code', 'name', 'Pohl Boskamp (Germany)'),
(99800, 82280, 'en', 'name', 'St. Christopher''s Hospital for Children'),
(99801, 82281, 'en', 'name', 'Qingdao Agricultural University'),
(99802, 82281, 'zh', 'name', 'é’å²›å†œäøšå¤§å­¦'),
(99803, 82282, 'nl', 'name', 'Medisch Spectrum Twente'),
(99804, 82283, 'en', 'name', 'Yamaguchi University'),
(99805, 82283, 'ja', 'name', '山口大学'),
(99806, 82284, 'en', 'name', 'Gombe State University'),
(99807, 82285, 'no_lang_code', 'name', 'First Quantum Minerals (Canada)'),
(99808, 82286, 'fr', 'name', 'MinistĆØre des Relations Internationales et de la Francophonie'),
(99809, 82287, 'en', 'name', 'Joint Quantum Institute'),
(99810, 82288, 'no_lang_code', 'name', 'Debre Markos University'),
(99811, 82289, 'en', 'name', 'South East Physics Network'),
(99812, 82290, 'en', 'name', 'Ankang University'),
(99813, 82290, 'zh', 'name', '安康学院'),
(99814, 82291, 'en', 'name', 'Athinoula A. Martinos Center for Biomedical Imaging'),
(99815, 82292, 'en', 'name', 'keiyu Hospital'),
(99816, 82292, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē„žå„ˆå·ēœŒč­¦å‹ä¼šć‘ć„ć‚†ć†ē—…é™¢'),
(99817, 82293, 'en', 'name', 'POSCO TJ Park Foundation'),
(99818, 82294, 'en', 'name', 'Stamford University Bangladesh'),
(99819, 82294, 'bn', 'name', 'ą¦øą§ą¦Ÿą§ą¦Æą¦¾ą¦®ą¦«ą§‹ą¦°ą§ą¦” ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ, বাংলাদেশ'),
(99820, 82295, 'en', 'name', 'Beijing Obstetrics and Gynecology Hospital'),
(99821, 82296, 'en', 'name', 'National Health Insurance Service Ilsan Hospital'),
(99822, 82296, 'ko', 'name', 'źµ­ėÆ¼ź±“ź°•ė³“ķ—˜ ģ¼ģ‚°ė³‘ģ›'),
(99823, 82297, 'en', 'name', 'Akershus University Hospital'),
(99824, 82297, 'no', 'name', 'Akershus universitetssykehus'),
(99825, 82298, 'en', 'name', 'International Diabetes Federation'),
(99826, 82299, 'no', 'name', 'Sykehuset Ƙstfold'),
(99827, 82299, 'en', 'name', 'Ƙstfold Hospital Trust'),
(99828, 82300, 'en', 'name', 'National Institute of Immunology'),
(99829, 82301, 'en', 'name', 'Leibniz Institute of Agricultural Development in Transition Economies'),
(99830, 82301, 'de', 'name', 'Leibniz-Institut für Agrarentwicklung in Transformationsökonomien'),
(99831, 82302, 'no_lang_code', 'name', 'Fisher & Paykel Healthcare (New Zealand)'),
(99832, 82303, 'en', 'name', 'North York General Hospital'),
(99833, 82304, 'en', 'name', 'Massachusetts Green High Performance Computing Center'),
(99834, 82305, 'en', 'name', 'QuƩbec Consortium for Drug Discovery'),
(99835, 82306, 'en', 'name', 'Voronezh State University'),
(99836, 82306, 'ru', 'name', 'Воронежский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99837, 82307, 'en', 'name', 'Tata Institute of Social Sciences'),
(99838, 82307, 'mr', 'name', 'टाटा ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤øą„‹ą¤¶ą¤² ą¤øą¤¾ą¤Æą¤Øą„ą¤øą„‡ą¤ø'),
(99839, 82307, 'hi', 'name', 'टाटा ą¤øą¤¾ą¤®ą¤¾ą¤œą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(99840, 82307, 'ml', 'name', 'ą“Ÿą“¾ą“±ąµą“± ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“øąµ‹ą“·ąµą“Æąµ½ ą“øą“Æąµ»ą“øą“øąµ'),
(99841, 82308, 'en', 'name', 'Jena University Hospital'),
(99842, 82308, 'de', 'name', 'UniversitƤtsklinikum Jena'),
(99843, 82309, 'no_lang_code', 'name', 'Alberta Pacific Forest Industries'),
(99844, 82310, 'fr', 'name', 'Association Canadienne d''Administrateurs de Recherche Universitaire'),
(99845, 82310, 'en', 'name', 'Canadian Association of University Research Administrators'),
(99846, 82311, 'en', 'name', 'Public Safety Canada'),
(99847, 82311, 'fr', 'name', 'SƩcuritƩ publique Canada'),
(99848, 82312, 'fr', 'name', 'Centre Hospitalier Universitaire de Martinique'),
(99849, 82313, 'en', 'name', 'Ulsan University Hospital'),
(99850, 82313, 'ko', 'name', 'ģšøģ‚°ėŒ€ķ•™źµė³‘ģ›'),
(99851, 82314, 'en', 'name', 'American Mosquito Control Association'),
(99852, 82315, 'en', 'name', 'Midwest Nursing Research Society'),
(99853, 82316, 'de', 'name', 'Bundesstiftung zur Aufarbeitung der SED-Diktatur'),
(99854, 82316, 'en', 'name', 'Federal Foundation for the Study of Communist Dictatorship in East Germany'),
(99855, 82317, 'en', 'name', 'Center for Dielectrics & Piezoelectrics'),
(99856, 82318, 'tr', 'name', 'Islam Tarih, Sanat ve Kültür Araştırma Merkezi'),
(99857, 82318, 'en', 'name', 'Research Center for Islamic History, Art and Culture'),
(99858, 82319, 'en', 'name', 'Divine Word University'),
(99859, 82320, 'en', 'name', 'North China University of Science and Technology'),
(99860, 82320, 'zh', 'name', 'åŽåŒ—ē†å·„å¤§å­¦'),
(99861, 82321, 'en', 'name', 'Central Coast Local Health District'),
(99862, 82322, 'it', 'name', 'Istituto Zooprofilattico Sperimentale delle Venezie'),
(99863, 82323, 'en', 'name', 'Jiangsu Cancer Hospital'),
(99864, 82323, 'zh', 'name', 'ę±Ÿč‹ēœč‚æē˜¤é˜²ę²»ē ”ē©¶ę‰€'),
(99865, 82324, 'no_lang_code', 'name', 'Orthofix (United States)'),
(99866, 82325, 'en', 'name', 'National Institute of Ocean Technology'),
(99867, 82325, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„ą¤¦ą„ą¤° ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(99868, 82326, 'en', 'name', 'Understanding Society'),
(99869, 82327, 'en', 'name', 'Ontario Medical Association'),
(99870, 82328, 'en', 'name', 'West Texas A&M University'),
(99871, 82329, 'en', 'name', 'Mongolian Academy of Sciences'),
(99872, 82329, 'mn', 'name', 'Монгол ŃƒŠ»ŃŃ‹Š½ ŠØŠøŠ½Š¶Š»ŃŃ… ŃƒŃ…Š°Š°Š½Ń‹ АкаГеми'),
(99873, 82330, 'it', 'name', 'Regione del Veneto'),
(99874, 82331, 'en', 'name', 'Construction Industry Institute'),
(99875, 82332, 'no_lang_code', 'name', 'Puma Biotechnology (United States)'),
(99876, 82333, 'en', 'name', 'Against Breast Cancer'),
(99877, 82334, 'fr', 'name', 'Fondation Vaincre Alzheimer'),
(99878, 82335, 'en', 'name', 'All Ways Up Foundation'),
(99879, 82336, 'en', 'name', 'Far Eastern Federal University'),
(99880, 82336, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99881, 82337, 'en', 'name', 'Kurume University'),
(99882, 82337, 'ja', 'name', '久留米大学'),
(99883, 82338, 'no_lang_code', 'name', 'Duchesnay (Canada)'),
(99884, 82339, 'en', 'name', 'Alberta Advanced Education'),
(99885, 82340, 'en', 'name', 'Beijing Friendship Hospital'),
(99886, 82340, 'zh', 'name', 'åŒ—äŗ¬å‹č°ŠåŒ»é™¢'),
(99887, 82341, 'en', 'name', 'The Kelvin and Eleanor Smith Foundation'),
(99888, 82342, 'es', 'name', 'Centro de Investigación Biomédica en Red de Fragilidad y Envejecimiento Saludable'),
(99889, 82343, 'no_lang_code', 'name', 'Seres Therapeutics (United States)'),
(99890, 82344, 'en', 'name', 'Hamad bin Khalifa University'),
(99891, 82345, 'en', 'name', 'Wills Eye Hospital'),
(99892, 82346, 'en', 'name', 'University Hospital of North Norway'),
(99893, 82347, 'es', 'name', 'Instituto Nacional de Pediatria'),
(99894, 82348, 'no_lang_code', 'name', 'Marine Biodiversity Institute of Korea'),
(99895, 82349, 'en', 'name', 'Dutch Dairymen Board'),
(99896, 82350, 'en', 'name', 'Federal Social Insurance Office'),
(99897, 82351, 'en', 'name', 'Sun Yat-sen University Cancer Center'),
(99898, 82351, 'zh', 'name', 'äø­å±±å¤§å­¦č‚æē˜¤é˜²ę²»äø­åæƒ'),
(99899, 82352, 'en', 'name', 'State Historical Society of Missouri'),
(99900, 82353, 'en', 'name', 'Kermanshah University of Technology'),
(99901, 82354, 'en', 'name', 'Ioffe Institute'),
(99902, 82354, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. А.Ф. Š˜Š¾Ń„Ń„Šµ Российской акаГемии наук'),
(99903, 82355, 'en', 'name', 'Jenner Institute'),
(99904, 82356, 'en', 'name', 'Osnabrück University'),
(99905, 82356, 'de', 'name', 'Universität Osnabrück'),
(99906, 82357, 'en', 'name', 'National Nuclear Laboratory'),
(99907, 82358, 'en', 'name', 'Shenzhen Municipal Development and Reform Commission'),
(99908, 82358, 'zh', 'name', 'ę·±åœ³åø‚å‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(99909, 82359, 'en', 'name', 'People''s Government of Yunnan Province'),
(99910, 82359, 'zh', 'name', 'äŗ‘å—ēœäŗŗę°‘ę”æåŗœ'),
(99911, 82360, 'en', 'name', 'Dalian National Laboratory for Clean Energy'),
(99912, 82361, 'ro', 'name', 'Universitatea de Medicină și Farmacie din Craiova'),
(99913, 82361, 'en', 'name', 'University of Medicine and Pharmacy of Craiova'),
(99914, 82362, 'no_lang_code', 'name', 'Shimadzu (Japan)'),
(99915, 82362, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ å³¶ę“„č£½ä½œę‰€'),
(99916, 82363, 'no_lang_code', 'name', 'Visa (United States)'),
(99917, 82364, 'no_lang_code', 'name', 'Marinus Pharmaceuticals (United States)'),
(99918, 82365, 'en', 'name', 'Saint Francis University'),
(99919, 82365, 'fr', 'name', 'UniversitƩ saint francis'),
(99920, 82366, 'en', 'name', 'Perron Institute for Neurological and Translational Science'),
(99921, 82367, 'en', 'name', 'Agroscope'),
(99922, 82368, 'en', 'name', 'Huzhou University'),
(99923, 82369, 'en', 'name', 'Water Institute of the Gulf'),
(99924, 82370, 'en', 'name', 'Kentucky State University'),
(99925, 82370, 'fr', 'name', 'UniversitĆ© d''Ɖtat du kentucky'),
(99926, 82371, 'en', 'name', 'Bethlehem Griffiths Research Foundation'),
(99927, 82372, 'en', 'name', 'Military University Nueva Granada'),
(99928, 82372, 'es', 'name', 'Universidad Militar Nueva Granada'),
(99929, 82373, 'en', 'name', 'University of Pittsburgh at Johnstown'),
(99930, 82374, 'no_lang_code', 'name', 'Nihon Medi-Physics (Japan)'),
(99931, 82374, 'ja', 'name', 'ę—„ęœ¬ćƒ”ć‚øćƒ•ć‚£ć‚øćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(99932, 82375, 'fr', 'name', 'Mission InterministƩrielle de Lutte contre les Drogues Et les Conduites Addictives'),
(99933, 82376, 'no_lang_code', 'name', 'BioCryst Pharmaceuticals (United States)'),
(99934, 82377, 'en', 'name', 'Shanghai Pulmonary Hospital'),
(99935, 82378, 'en', 'name', 'Norwegian Institute of Marine Research'),
(99936, 82379, 'en', 'name', 'Juvenile Diabetes Research Foundation'),
(99937, 82380, 'en', 'name', 'First Hospital of Jilin University'),
(99938, 82380, 'zh', 'name', 'å‰ęž—å¤§å­¦ē¬¬äø€åŒ»é™¢'),
(99939, 82381, 'en', 'name', 'Korean College of Helicobacter and Upper Gastrointestinal Research'),
(99940, 82381, 'ko', 'name', 'ėŒ€ķ•œģƒė¶€ģœ„ģž„ź“€Ā·ķ—¬ė¦¬ģ½”ė°•ķ„°ķ•™ķšŒģ§€'),
(99941, 82382, 'en', 'name', 'Autonomous University of Tamaulipas'),
(99942, 82382, 'es', 'name', 'Universidad Autónoma de Tamaulipas'),
(99943, 82383, 'en', 'name', 'Dementias Platform UK'),
(99944, 82384, 'en', 'name', 'Paderborn University'),
(99945, 82384, 'de', 'name', 'UniversitƤt Paderborn'),
(99946, 82385, 'de', 'name', 'DGPro'),
(99947, 82386, 'en', 'name', 'Yunnan Provincial Department of Transportation'),
(99948, 82386, 'zh', 'name', 'äŗ‘å—ēœäŗ¤é€ščæč¾“åŽ…'),
(99949, 82387, 'no_lang_code', 'name', 'HAL Allergy (Netherlands)'),
(99950, 82388, 'en', 'name', 'Society for Imaging Science and Technology'),
(99951, 82389, 'en', 'name', 'Wildlife Institute of India'),
(99952, 82389, 'ml', 'name', 'ą“µąµˆąµ½ą“”ąµą“²ąµˆą“«ąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“‡ą“Øąµą“¤ąµą“Æ'),
(99953, 82390, 'no_lang_code', 'name', 'Cristalia (Brazil)'),
(99954, 82391, 'en', 'name', 'Ministry of Minority Affairs'),
(99955, 82392, 'en', 'name', 'Leibniz Institute for Astrophysics Potsdam'),
(99956, 82392, 'de', 'name', 'Leibniz-Institut für Astrophysik Potsdam'),
(99957, 82393, 'de', 'name', 'Hanse-Wissenschaftskolleg'),
(99958, 82393, 'en', 'name', 'Institute for Advanced Study'),
(99959, 82394, 'en', 'name', 'Xiangnan University'),
(99960, 82394, 'zh', 'name', 'ę¹˜å—å­¦é™¢'),
(99961, 82395, 'en', 'name', 'Michigan State University Foundation'),
(99962, 82396, 'en', 'name', 'Yan Chai Hospital'),
(99963, 82396, 'zh', 'name', 'ä»ęæŸé†«é™¢'),
(99964, 82397, 'no_lang_code', 'name', 'Ushio (Japan)'),
(99965, 82397, 'ja', 'name', 'ć‚¦ć‚·ć‚Ŗé›»ę©Ÿ'),
(99966, 82398, 'en', 'name', 'Mineral Resources'),
(99967, 82399, 'en', 'name', 'Sampoerna University'),
(99968, 82399, 'id', 'name', 'Universitas Siswa Bangsa Internasional'),
(99969, 82400, 'en', 'name', 'San Diego Zoo Institute for Conservation Research'),
(99970, 82401, 'en', 'name', 'Millennium Institute on Immunology and Immunotherapy'),
(99971, 82402, 'en', 'name', 'Guangxi Academy of Sciences'),
(99972, 82402, 'zh', 'name', '广脿科学院'),
(99973, 82403, 'en', 'name', 'GLA University'),
(99974, 82404, 'en', 'name', 'Southeast Asian Ministers of Education Organization'),
(99975, 82405, 'no_lang_code', 'name', 'ARM (United Kingdom)'),
(99976, 82406, 'en', 'name', 'Longdong University'),
(99977, 82406, 'zh', 'name', 'é™‡äøœå­¦é™¢'),
(99978, 82407, 'tr', 'name', 'İstanbul Kalkınma Ajansı'),
(99979, 82408, 'en', 'name', 'Federal Rural University of Semi-Ɓrido'),
(99980, 82408, 'pt', 'name', 'Universidade Federal Rural do Semi-Ɓrido'),
(99981, 82409, 'en', 'name', 'Institute for Clinical Evaluative Sciences'),
(99982, 82410, 'en', 'name', 'Chatham House'),
(99983, 82411, 'en', 'name', 'Nanjing General Hospital of Nanjing Military Command'),
(99984, 82411, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›å—äŗ¬å†›åŒŗå—äŗ¬ę€»åŒ»é™¢'),
(99985, 82412, 'en', 'name', 'Leibniz Research Centre for Working Environment and Human Factors'),
(99986, 82412, 'de', 'name', 'Leibniz-Institut für Arbeitsforschung an der TU Dortmund'),
(99987, 82413, 'en', 'name', 'Framingham Heart Study'),
(99988, 82414, 'no_lang_code', 'name', 'Asana Biosciences (United States)'),
(99989, 82415, 'en', 'name', 'Prisma Health'),
(99990, 82416, 'en', 'name', 'Austrian Development Agency'),
(99991, 82417, 'en', 'name', 'Health Systems Research Institute'),
(99992, 82418, 'en', 'name', 'Mystic Seaport'),
(99993, 82419, 'en', 'name', 'Virginia Museum of Fine Arts'),
(99994, 82420, 'en', 'name', 'NSABP Foundation'),
(99995, 82421, 'no_lang_code', 'name', 'Mustansiriyah University'),
(99996, 82421, 'ar', 'name', 'الجامعة Ų§Ł„Ł…Ų³ŲŖŁ†ŲµŲ±ŁŠŲ©'),
(99997, 82422, 'en', 'name', 'Touro University California'),
(99998, 82423, 'no_lang_code', 'name', 'Shenyang Normal University'),
(99999, 82423, 'zh', 'name', '沈阳师范大学'),
(100000, 82424, 'en', 'name', 'Baird Institute'),
(100001, 82425, 'en', 'name', 'International Society for Magnetic Resonance in Medicine'),
(100002, 82426, 'en', 'name', 'Froebel Trust'),
(100003, 82427, 'no_lang_code', 'name', 'Hawassa University'),
(100004, 82427, 'am', 'name', 'įˆ€į‹‹įˆ³ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(100005, 82428, 'en', 'name', 'Scottish Aquaculture Innovation Centre'),
(100006, 82429, 'en', 'name', 'Software Sustainability Institute'),
(100007, 82430, 'en', 'name', 'Astronomy Australia'),
(100008, 82431, 'en', 'name', 'Montana Academy of Sciences'),
(100009, 82432, 'en', 'name', 'Louisiana State University Health Sciences Center Shreveport'),
(100010, 82433, 'en', 'name', 'Kagawa University'),
(100011, 82433, 'ja', 'name', '香川大学'),
(100012, 82434, 'en', 'name', 'Texas Tech University Health Sciences Center'),
(100013, 82435, 'en', 'name', 'Society for Music Theory'),
(100014, 82436, 'en', 'name', 'Taipei Medical University-Shuang Ho Hospital'),
(100015, 82437, 'en', 'name', 'PLA Army Engineering University'),
(100016, 82437, 'zh', 'name', '中国人民解放军陆军巄程大学'),
(100017, 82438, 'en', 'name', 'NSCAD University'),
(100018, 82439, 'en', 'name', 'Philadelphia Area Center for History of Science'),
(100019, 82440, 'en', 'name', 'Center for Surveillance, Epidemiology, and Laboratory Services'),
(100020, 82441, 'no_lang_code', 'name', 'Abeona Therapeutics (United States)'),
(100021, 82442, 'en', 'name', 'Lung Foundation Netherlands'),
(100022, 82443, 'en', 'name', 'Ministry of Livestock and Fisheries'),
(100023, 82443, 'sw', 'name', 'Wizara ya Mifugo na Uvuvi'),
(100024, 82444, 'nl', 'name', 'Sporten voor Sophia'),
(100025, 82445, 'no_lang_code', 'name', 'Constellation Pharmaceuticals (United States)'),
(100026, 82446, 'en', 'name', 'PLA Navy General Hospital'),
(100027, 82447, 'en', 'name', 'Florida Department of State'),
(100028, 82448, 'en', 'name', 'Jewish National Fund'),
(100029, 82449, 'en', 'name', 'Biotechnology Industry Research Assistance Council'),
(100030, 82450, 'en', 'name', 'Sidra Medical and Research Center'),
(100031, 82451, 'en', 'name', 'Washington Center for Equitable Growth'),
(100032, 82452, 'en', 'name', 'Spices Board India'),
(100033, 82452, 'hi', 'name', 'मसाला ą¤¬ą„‹ą¤°ą„ą¤” भारत'),
(100034, 82452, 'ml', 'name', 'ą“øąµą“Ŗąµˆą“øą“øąµ ą“¬ąµ‡ą“¾ąµ¼ą“”ąµ ą“‡ą“Øąµą“¤ąµą“Æ'),
(100035, 82453, 'en', 'name', 'Forestry and Forest Products Research Institute'),
(100036, 82453, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę£®ęž—ē ”ē©¶ćƒ»ę•“å‚™ę©Ÿę§‹'),
(100037, 82454, 'no_lang_code', 'name', 'Theravance Biopharma (United States)'),
(100038, 82455, 'no_lang_code', 'name', 'Salesforce (United States)'),
(100039, 82456, 'en', 'name', 'Feinstein Institute for Medical Research'),
(100040, 82457, 'en', 'name', 'National Institute of Technology Srinagar'),
(100041, 82457, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¶ą„ą¤°ą„€ą¤Øą¤—ą¤°'),
(100042, 82458, 'en', 'name', 'African Academy of Sciences'),
(100043, 82459, 'en', 'name', 'Institute on Aging'),
(100044, 82460, 'en', 'name', 'Institute of Microbial Technology'),
(100045, 82460, 'hi', 'name', 'ą¤øą„‚ą¤•ą„ą¤·ą„ą¤®ą¤œą„€ą¤µ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(100046, 82461, 'en', 'name', 'Institute of Ismaili Studies'),
(100047, 82462, 'en', 'name', 'Foundation for the Promotion of Ion Engineering'),
(100048, 82463, 'en', 'name', 'Phoenix Children''s Hospital'),
(100049, 82464, 'en', 'name', 'China People''s Public Security University'),
(100050, 82464, 'zh', 'name', '中国人民公安大学'),
(100051, 82465, 'en', 'name', 'Wadia Institute of Himalayan Geology'),
(100052, 82465, 'hi', 'name', 'वाऔिया ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø हिमालय ą¤­ą„‚ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø'),
(100053, 82466, 'no_lang_code', 'name', 'Inventiva (France)'),
(100054, 82467, 'en', 'name', 'Elton John AIDS Foundation'),
(100055, 82468, 'fr', 'name', 'Le Studium'),
(100056, 82469, 'sv', 'name', 'Familjen Kamprads Stiftelse'),
(100057, 82469, 'en', 'name', 'Kamprad Family Foundation'),
(100058, 82470, 'de', 'name', 'Fondation Partager le Savoir'),
(100059, 82470, 'en', 'name', 'Sharing Knowledge Foundation'),
(100060, 82471, 'en', 'name', 'Panjab University'),
(100061, 82471, 'hi', 'name', 'ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(100062, 82471, 'pa', 'name', 'ਪੰਜਾਬ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€, ąØšą©°ąØ”ą©€ąØ—ą©œą©ąØ¹'),
(100063, 82471, 'ta', 'name', 'ą®Ŗą®žąÆą®šą®¾ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®šą®£ąÆą®Ÿą®æą®•ą®°ąÆ'),
(100064, 82472, 'en', 'name', 'Bowdoin College'),
(100065, 82473, 'en', 'name', 'CVPath Institute'),
(100066, 82474, 'no_lang_code', 'name', 'Teikoku Pharma (United States)'),
(100067, 82475, 'no_lang_code', 'name', 'UnitedHealth Group (United States)'),
(100068, 82476, 'en', 'name', 'Mercator Research Center Ruhr'),
(100069, 82477, 'en', 'name', 'Central Agricultural University'),
(100070, 82477, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(100071, 82478, 'es', 'name', 'Fundación Copec UC'),
(100072, 82479, 'en', 'name', 'Huaihua University'),
(100073, 82479, 'zh', 'name', 'ę€€åŒ–å­¦é™¢'),
(100074, 82480, 'no_lang_code', 'name', 'Tenax Therapeutics (United States)'),
(100075, 82481, 'no_lang_code', 'name', 'Scottish Power (United Kingdom)'),
(100076, 82482, 'en', 'name', 'Society for Industrial and Applied Mathematics'),
(100077, 82483, 'en', 'name', 'Trudeau Institute'),
(100078, 82484, 'en', 'name', 'National Research Institute of Animal Production'),
(100079, 82485, 'en', 'name', 'Nagasaki University'),
(100080, 82485, 'ja', 'name', '長哎大学'),
(100081, 82486, 'en', 'name', 'Max Planck Institute for the Science of Human History'),
(100082, 82486, 'de', 'name', 'Max-Planck-Institut für Menschheitsgeschichte'),
(100083, 82487, 'no_lang_code', 'name', 'Mersana Therapeutics (United States)'),
(100084, 82488, 'en', 'name', 'Tall Timbers Research Station and Land Conservancy'),
(100085, 82489, 'en', 'name', 'EcoHealth Alliance'),
(100086, 82490, 'sw', 'name', 'Chuo Kikuu cha Moi'),
(100087, 82490, 'en', 'name', 'Moi University'),
(100088, 82491, 'en', 'name', 'Cooper Institute'),
(100089, 82492, 'en', 'name', 'Aeronautics Institute of Technology'),
(100090, 82492, 'pt', 'name', 'Instituto Tecnológico de AeronÔutica'),
(100091, 82493, 'en', 'name', 'Cancer Foundation of China'),
(100092, 82493, 'zh', 'name', 'äø­å›½ē™Œē—‡åŸŗé‡‘ä¼š'),
(100093, 82494, 'en', 'name', 'Discovery Institute'),
(100094, 82495, 'no_lang_code', 'name', 'Atlantic Healthcare (United Kingdom)'),
(100095, 82496, 'en', 'name', 'Mary Reynolds Babcock Foundation'),
(100096, 82497, 'en', 'name', 'VA Greater Los Angeles Healthcare System'),
(100097, 82498, 'en', 'name', 'Lincoln Institute of Land Policy'),
(100098, 82499, 'sv', 'name', 'Kungliga Vitterhets Historie och Antikvitets Akademien'),
(100099, 82499, 'en', 'name', 'The Royal Swedish Academy of Letters, History and Antiquities'),
(100100, 82500, 'en', 'name', 'Chartered Society of Physiotherapy'),
(100101, 82501, 'en', 'name', 'Arkansas Department of Education'),
(100102, 82502, 'en', 'name', 'Museum of Applied Arts & Sciences'),
(100103, 82503, 'no_lang_code', 'name', 'Petromat'),
(100104, 82503, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œąø„ąø§ąø²ąø”ą¹€ąø›ą¹‡ąø™ą¹€ąø„ąø“ąøØąø”ą¹‰ąø²ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø›ąø“ą¹‚ąø•ąø£ą¹€ąø„ąø”ąøµą¹ąø„ąø°ąø§ąø±ąøŖąø”ąøø'),
(100105, 82504, 'en', 'name', 'National Agricultural Research Foundation'),
(100106, 82505, 'en', 'name', 'Russian State Social University'),
(100107, 82505, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100108, 82506, 'en', 'name', 'Guru Jambheshwar University of Science and Technology'),
(100109, 82506, 'hi', 'name', 'ą¤—ą„ą¤°ą„ ą¤œą¤‚ą¤­ą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(100110, 82506, 'ta', 'name', 'குரு ą®œą®®ąÆą®ŖąÆ‡ą®šąÆą®µą®°ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(100111, 82507, 'en', 'name', 'Baise University'),
(100112, 82507, 'zh', 'name', '百色学院'),
(100113, 82508, 'en', 'name', 'Society of Cardiovascular Anesthesiologists'),
(100114, 82509, 'en', 'name', 'Yasouj University'),
(100115, 82510, 'en', 'name', 'Random Walk Imaging'),
(100116, 82511, 'en', 'name', 'Barts Charity'),
(100117, 82512, 'no_lang_code', 'name', 'Kitasato Institute Hospital'),
(100118, 82512, 'ja', 'name', 'åŒ—é‡Œå¤§å­¦åŒ—é‡Œē ”ē©¶ę‰€ē—…é™¢'),
(100119, 82513, 'no_lang_code', 'name', 'AKL (United Kingdom)'),
(100120, 82514, 'fr', 'name', 'Collège royal des médecins et chirurgiens du Canada'),
(100121, 82514, 'en', 'name', 'Royal College of Physicians and Surgeons of Canada'),
(100122, 82515, 'nl', 'name', 'Nederlands Interdisciplinair Demografisch Instituut'),
(100123, 82515, 'en', 'name', 'Netherlands Interdisciplinary Demographic Institute'),
(100124, 82516, 'en', 'name', 'Children''s Minnesota'),
(100125, 82517, 'en', 'name', 'National Cattlemen''s Beef Association'),
(100126, 82518, 'en', 'name', 'China Academy of Building Research'),
(100127, 82518, 'zh', 'name', '中国建筑科学研究院'),
(100128, 82519, 'en', 'name', 'Immanuel Kant Baltic Federal University'),
(100129, 82519, 'ru', 'name', 'Балтийский Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Иммануила ŠšŠ°Š½Ń‚а'),
(100130, 82520, 'en', 'name', 'Uganda Industrial Research Institute'),
(100131, 82521, 'en', 'name', 'Korean Breast Cancer Society'),
(100132, 82522, 'en', 'name', 'Osteoarthritis Research Society International'),
(100133, 82523, 'en', 'name', 'Norwegian Institute for Water Research'),
(100134, 82524, 'en', 'name', 'Maccabi Institute for Health Services Research'),
(100135, 82525, 'es', 'name', 'Fundación Instituto para la Mejora de la Asistencia Sanitaria'),
(100136, 82526, 'en', 'name', 'The University of Texas at El Paso'),
(100137, 82526, 'es', 'name', 'Universidad de Texas en El Paso'),
(100138, 82526, 'fr', 'name', 'UniversitƩ du texas Ơ el paso'),
(100139, 82527, 'en', 'name', 'Doerenkamp-Zbinden Foundation'),
(100140, 82528, 'en', 'name', 'History of Science Society'),
(100141, 82529, 'de', 'name', 'Chinesisch-Deutsche Zentrum für Wissenschaftsförderung'),
(100142, 82529, 'en', 'name', 'Sino-German Center for Research Promotion'),
(100143, 82530, 'en', 'name', 'National Bureau of Asian Research'),
(100144, 82531, 'pl', 'name', 'Lasy Państwowe'),
(100145, 82532, 'en', 'name', 'Canadian Society of Nephrology'),
(100146, 82533, 'en', 'name', 'Shanghai Planning Office of Philosophy and Social Science'),
(100147, 82533, 'zh', 'name', 'äøŠęµ·åø‚å“²å­¦ē¤¾ä¼šē§‘å­¦č§„åˆ’åŠžå…¬å®¤'),
(100148, 82534, 'en', 'name', 'Calouste Gulbenkian Foundation'),
(100149, 82534, 'pt', 'name', 'Fundação Calouste Gulbenkian'),
(100150, 82535, 'en', 'name', 'Technological University Hmawbi'),
(100151, 82536, 'en', 'name', 'Pontifical Catholic University of SĆ£o Paulo'),
(100152, 82536, 'pt', 'name', 'Pontifícia Universidade Católica de São Paulo'),
(100153, 82537, 'no_lang_code', 'name', 'Abiomed (United States)'),
(100154, 82538, 'no_lang_code', 'name', 'Powerchina Huadong Engineering Corporation (China)'),
(100155, 82539, 'no_lang_code', 'name', 'ARCA Biopharma (United States)'),
(100156, 82540, 'no_lang_code', 'name', 'Anhui Jiyuan Software'),
(100157, 82540, 'zh', 'name', 'å®‰å¾½ē»§čæœč½Æä»¶ęœ‰é™å…¬åø'),
(100158, 82541, 'en', 'name', 'Budge Budge Institute of Technology'),
(100159, 82542, 'en', 'name', 'Federal University of Acre'),
(100160, 82542, 'pt', 'name', 'Universidade Federal do Acre'),
(100161, 82543, 'no_lang_code', 'name', 'Japan Petroleum Institute'),
(100162, 82543, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗēŸ³ę²¹å­¦ä¼š'),
(100163, 82544, 'en', 'name', 'National Institute for International Education'),
(100164, 82544, 'ko', 'name', 'źµ­ė¦½źµ­ģ œźµģœ”ģ›'),
(100165, 82545, 'fr', 'name', 'Institut supƩrieur de mƩdecine sanjay gandhi'),
(100166, 82545, 'en', 'name', 'Sanjay Gandhi Post Graduate Institute of Medical Sciences'),
(100167, 82545, 'hi', 'name', 'ą¤øą¤‚ą¤œą¤Æ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(100168, 82546, 'en', 'name', 'Association for Innovation and Biomedical Research on Light and Image'),
(100169, 82546, 'pt', 'name', 'Associação Para a Investigação Biomédica e Inovação Em Luz e Imagem'),
(100170, 82547, 'no_lang_code', 'name', 'Vital Strategies'),
(100171, 82548, 'en', 'name', 'A.P. Ershov Institute of Informatics Systems, Siberian Branch of the Russian Academy of Sciences'),
(100172, 82548, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систем информатики им. А.П. Š•Ń€ŃˆŠ¾Š²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(100173, 82549, 'no_lang_code', 'name', 'Abon Pharmaceuticals'),
(100174, 82550, 'en', 'name', 'Institute for Student Achievement'),
(100175, 82551, 'no_lang_code', 'name', 'Indlas VIMHANS Hospital'),
(100176, 82552, 'no_lang_code', 'name', 'SOS OxygĆØne (France)'),
(100177, 82553, 'de', 'name', 'Rostocker Institut für Sozialforschung und gesellschaftliche Praxis e.V.'),
(100178, 82554, 'en', 'name', 'National Metrology Institute of South Africa'),
(100179, 82555, 'de', 'name', 'Bertelsmann Stiftung'),
(100180, 82556, 'en', 'name', 'Sichuan College of Architectural Technology'),
(100181, 82556, 'zh', 'name', 'å››å·å»ŗē­‘čŒäøšęŠ€ęœÆå­¦é™¢'),
(100182, 82557, 'en', 'name', 'Allen Institute for Immunology'),
(100183, 82558, 'en', 'name', 'Beth Israel Deaconess Hospital'),
(100184, 82559, 'no_lang_code', 'name', 'Guerbet (United States)'),
(100185, 82560, 'en', 'name', 'Forestry Research Institute of Ghana'),
(100186, 82561, 'sw', 'name', 'Chuo Kikuu cha Kilimo na Teknolojia cha Jomo Kenyatta'),
(100187, 82561, 'en', 'name', 'Jomo Kenyatta University of Agriculture and Technology'),
(100188, 82562, 'no_lang_code', 'name', 'Innocrin Pharmaceuticals (United States)'),
(100189, 82563, 'es', 'name', 'Ministerio de Ciencia, Tecnología, Conocimiento e Innovación'),
(100190, 82563, 'en', 'name', 'Ministry of Science, Technology, Knowledge and Innovation'),
(100191, 82564, 'en', 'name', 'Colorectal Surgical Society of Australia and New Zealand'),
(100192, 82565, 'no_lang_code', 'name', 'SIRIS Academic'),
(100193, 82566, 'no_lang_code', 'name', 'Huadong Sanatorium'),
(100194, 82566, 'zh', 'name', 'åŽäøœē–—å…»é™¢'),
(100195, 82567, 'no', 'name', 'Olav Raagholt og Gerd Meidel Raagholts stiftelse'),
(100196, 82567, 'en', 'name', 'The Olav Raagholt and Gerd Meidel Raagholt Research Foundation'),
(100197, 82568, 'en', 'name', 'AOSpine'),
(100198, 82569, 'de', 'name', 'Krankenhaus der Barmherzigen Schwestern Ried'),
(100199, 82570, 'en', 'name', 'Guangdong University of Education'),
(100200, 82570, 'zh', 'name', 'å¹æäøœē¬¬äŗŒåøˆčŒƒå­¦é™¢'),
(100201, 82571, 'en', 'name', 'Royal Australian and New Zealand College of Psychiatrists'),
(100202, 82572, 'en', 'name', 'University of California Division of Agriculture and Natural Resources'),
(100203, 82573, 'en', 'name', 'Rhode Island Department of Health'),
(100204, 82574, 'en', 'name', 'Dementia Collaborative Research Centres'),
(100205, 82575, 'en', 'name', 'Autonomous State Medical College, Fatehpur'),
(100206, 82575, 'hi', 'name', 'ą¤‘ą¤Ÿą„‹ą¤Øą„‰ą¤®ą¤ø ą¤øą„ą¤Ÿą„‡ą¤Ÿ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ, ą¤«ą¤¤ą„‡ą¤¹ą¤Ŗą„ą¤°'),
(100207, 82576, 'en', 'name', 'HKBK College of Engineering'),
(100208, 82577, 'en', 'name', 'PLA Navy Submarine Academy'),
(100209, 82577, 'zh', 'name', 'ęµ·å†›ę½œč‰‡å­¦é™¢'),
(100210, 82578, 'de', 'name', 'Deutsche Gesellschaft für Kieferorthopädie e.V'),
(100211, 82579, 'en', 'name', 'Central Council for Research in Homoeopathy'),
(100212, 82580, 'en', 'name', 'Buddhist Tzu Chi Medical Foundation'),
(100213, 82581, 'en', 'name', 'Hospital of Stomatology, Sun Yat-sen University'),
(100214, 82581, 'zh', 'name', 'äø­å±±å¤§å­¦é™„å±žå£č…”åŒ»é™¢'),
(100215, 82582, 'en', 'name', 'Mogadishu Somali Turkish Training and Research Hospital'),
(100216, 82583, 'en', 'name', 'Association for the Sciences of Limnology and Oceanography'),
(100217, 82584, 'en', 'name', 'Shiga University'),
(100218, 82584, 'ja', 'name', '滋賀大学'),
(100219, 82585, 'en', 'name', 'Pan African University Institute for Basic Sciences, Technology and Innovation'),
(100220, 82586, 'en', 'name', 'Australian Society for Antimicrobials'),
(100221, 82587, 'no_lang_code', 'name', 'Seikagaku Corporation (Japan)'),
(100222, 82587, 'ja', 'name', 'ē”ŸåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(100223, 82588, 'en', 'name', 'Australian and New Zealand Urogenital and Prostate Cancer Trials Group'),
(100224, 82589, 'no_lang_code', 'name', 'Daqing Oilfield of CNPC'),
(100225, 82589, 'zh', 'name', 'äø­å›½ēŸ³ę²¹å¤§åŗ†ę²¹ē”°'),
(100226, 82590, 'no_lang_code', 'name', 'Angion (United States)'),
(100227, 82591, 'en', 'name', 'Netaji Subhas University of Technology'),
(100228, 82591, 'hi', 'name', 'ą¤Øą„‡ą¤¤ą¤¾ą¤œą„€ ą¤øą„ą¤­ą¤¾ą¤· ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(100229, 82592, 'de', 'name', 'Stadtarchiv Krems'),
(100230, 82593, 'en', 'name', 'Jishan County People''s Hospital'),
(100231, 82593, 'zh', 'name', 'ēØ·å±±åŽæäŗŗę°‘åŒ»é™¢'),
(100232, 82594, 'en', 'name', 'PGP College of Engineering and Technology'),
(100233, 82595, 'en', 'name', 'Sri Sivasubramaniya Nadar College of Engineering'),
(100234, 82595, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤¶ą¤æą¤µą¤øą„ą¤¬ą„ą¤°ą¤®ą¤£ą„ą¤Æ नादर ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą¤æą¤‚ą¤—'),
(100235, 82596, 'en', 'name', 'Korean Society of Hypertension'),
(100236, 82597, 'en', 'name', 'Eighth Affiliated Hospital of Sun Yat-sen University'),
(100237, 82597, 'zh', 'name', 'äø­å±±å¤§å­¦é™„å±žē¬¬å…«åŒ»é™¢'),
(100238, 82598, 'en', 'name', 'Yuncheng Central Hospital'),
(100239, 82598, 'zh', 'name', 'ē‰ˆęƒę‰€ęœ‰ čæåŸŽåø‚äø­åæƒåŒ»é™¢'),
(100240, 82599, 'en', 'name', 'The Christie Hospital');
INSERT INTO `ror_settings` VALUES
(100241, 82600, 'vi', 'name', 'Bệnh viện thĆ nh phố Thį»§ Đức'),
(100242, 82600, 'en', 'name', 'Thu Duc City Hospital'),
(100243, 82601, 'no_lang_code', 'name', 'Minophagen Pharmaceutical (Japan)'),
(100244, 82602, 'en', 'name', 'Spaulding Rehabilitation Hospital'),
(100245, 82603, 'de', 'name', 'Deutsche Zƶliakie-Gesellschaft e.V.'),
(100246, 82604, 'no_lang_code', 'name', 'Polytec (Germany)'),
(100247, 82605, 'no_lang_code', 'name', 'Nanyang Polytechnic'),
(100248, 82606, 'no_lang_code', 'name', 'Wƶrwag Pharma (Germany)'),
(100249, 82607, 'en', 'name', 'CDC Foundation'),
(100250, 82608, 'en', 'name', 'European Stroke Organisation'),
(100251, 82609, 'en', 'name', 'La Salle University'),
(100252, 82609, 'es', 'name', 'Universidad La Salle'),
(100253, 82610, 'en', 'name', 'Arolsen Archives - International Center on Nazi Persecution'),
(100254, 82611, 'en', 'name', 'British Society for Surgery of the Hand'),
(100255, 82612, 'en', 'name', 'Rana University'),
(100256, 82612, 'fa', 'name', 'رنا Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(100257, 82613, 'en', 'name', 'Dow University of Health Sciences'),
(100258, 82613, 'ur', 'name', 'ڈاؤ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŪŪŒŁ„ŲŖŚ¾ سائنسز'),
(100259, 82614, 'en', 'name', 'Cheongju University'),
(100260, 82614, 'ko', 'name', 'ģ²­ģ£¼ėŒ€ķ•™źµ'),
(100261, 82615, 'en', 'name', 'Asia Pacific Observatory on Health Systems and Policies'),
(100262, 82616, 'en', 'name', 'Kearney Agricultural Research and Extension Center'),
(100263, 82617, 'en', 'name', 'Zhebei Mingzhou Hospital'),
(100264, 82618, 'no_lang_code', 'name', 'The Mofet Institute'),
(100265, 82618, 'he', 'name', 'מכון מופ"×Ŗ'),
(100266, 82619, 'no', 'name', 'Stiftelsen Dam'),
(100267, 82620, 'en', 'name', 'University of Bisha'),
(100268, 82620, 'aa', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بيؓة'),
(100269, 82621, 'en', 'name', 'Shinjuku College of Information Technology'),
(100270, 82621, 'ja', 'name', 'ę–°å®æęƒ…å ±ćƒ“ć‚øćƒć‚¹å°‚é–€å­¦ę ”'),
(100271, 82622, 'en', 'name', 'Glenrose Rehabilitation Hospital'),
(100272, 82623, 'pt', 'name', 'Instituto Pró-Carnívoros'),
(100273, 82624, 'no_lang_code', 'name', 'TauRx Pharmaceuticals (Singapore)'),
(100274, 82625, 'en', 'name', 'Nha Trang University'),
(100275, 82625, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Nha Trang'),
(100276, 82626, 'en', 'name', 'Life Sciences Research Board'),
(100277, 82627, 'fr', 'name', 'Fondation des Ʃtoiles'),
(100278, 82627, 'en', 'name', 'Foundation of Stars'),
(100279, 82628, 'en', 'name', 'Business Finland'),
(100280, 82629, 'en', 'name', 'Max-Planck-POSTECH Center for Complex Phase Material'),
(100281, 82629, 'ko', 'name', 'ė§‰ģŠ¤ķ”Œėž‘ķ¬ ķ•œźµ­ / ķ¬ģŠ¤ķ… ģ—°źµ¬ģ†Œ'),
(100282, 82630, 'en', 'name', 'Korea Health Promotion Institute'),
(100283, 82630, 'ko', 'name', 'ķ•œźµ­ź±“ź°•ģ¦ģ§„ź°œė°œģ›'),
(100284, 82631, 'es', 'name', 'Hospital General de Massachusetts'),
(100285, 82631, 'en', 'name', 'Massachusetts General Hospital'),
(100286, 82632, 'no_lang_code', 'name', 'Naval Group (France)'),
(100287, 82633, 'no_lang_code', 'name', 'Aptevo Therapeutics (United states)'),
(100288, 82634, 'no_lang_code', 'name', 'Dominion (United States)'),
(100289, 82635, 'en', 'name', 'GreyNet International'),
(100290, 82636, 'en', 'name', 'Woolf Fisher Trust'),
(100291, 82637, 'es', 'name', 'Instituto de Investigación Sanitaria del Principado de Asturias'),
(100292, 82638, 'pt', 'name', 'Universidade de Fortaleza'),
(100293, 82639, 'en', 'name', 'Lazarex Cancer Foundation'),
(100294, 82640, 'sr', 'name', 'Univerzitetski Klinički Centar Srbije'),
(100295, 82641, 'en', 'name', 'Zhengzhou Preschool Education College'),
(100296, 82641, 'zh', 'name', 'éƒ‘å·žå¹¼å„æåøˆčŒƒé«˜ē­‰äø“ē§‘å­¦ę ”'),
(100297, 82642, 'no_lang_code', 'name', 'Wanhua Chemical (China)'),
(100298, 82642, 'zh', 'name', 'äø‡åŽåŒ–å­¦'),
(100299, 82643, 'no_lang_code', 'name', 'Research and Production Center "Fox and Co"'),
(100300, 82643, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный Центр "Š¤ŠžŠšŠ” Šø Ко"'),
(100301, 82644, 'en', 'name', 'Korea Breast Cancer Foundation'),
(100302, 82644, 'ko', 'name', 'ķ•œźµ­ģœ ė°©ź±“ź°•ģž¬ė‹Ø'),
(100303, 82645, 'fr', 'name', 'Fondation Lucie et AndrƩ Chagnon'),
(100304, 82645, 'en', 'name', 'Lucie and AndrƩ Chagnon Foundation'),
(100305, 82646, 'es', 'name', 'Universidad La Salle'),
(100306, 82647, 'en', 'name', 'Statistical Society of Australia'),
(100307, 82648, 'en', 'name', 'Lianyungang Technical College'),
(100308, 82648, 'zh', 'name', 'čæžäŗ‘ęøÆčŒé™¢'),
(100309, 82649, 'en', 'name', 'Chronic Liver Disease Foundation'),
(100310, 82650, 'no_lang_code', 'name', 'Windtree Therapeutics (United States)'),
(100311, 82651, 'de', 'name', 'Institut für Quantenoptik und Quanteninformation'),
(100312, 82651, 'en', 'name', 'Institute for Quantum Optics and Quantum Information Innsbruck'),
(100313, 82652, 'no_lang_code', 'name', 'Kaggle'),
(100314, 82653, 'en', 'name', 'Basil Hetzel Institute'),
(100315, 82654, 'no_lang_code', 'name', 'Aegerion Pharmaceuticals (United States)'),
(100316, 82655, 'en', 'name', 'Sarcoma Alliance for Research through Collaboration'),
(100317, 82656, 'de', 'name', 'Herz-Jesu Krankenhaus'),
(100318, 82657, 'en', 'name', 'Guilin University'),
(100319, 82657, 'zh', 'name', 'ę”‚ęž—å­¦é™¢'),
(100320, 82658, 'en', 'name', 'European Institute for Multidisciplinary Studies on Human Rights and Science - Knowmad Institut'),
(100321, 82658, 'de', 'name', 'Europäisches Institut für Multidisziplinäre Studien zu Menschenrechten und Wissenschaften - Knowmad Institut'),
(100322, 82658, 'es', 'name', 'Instituto Europeo de Estudios Multidisciplinarios sobre Derechos Humanos y Ciencias - Knowmad Institut'),
(100323, 82659, 'no_lang_code', 'name', 'Cochrane'),
(100324, 82660, 'en', 'name', 'Oxford Academic Health Science Network'),
(100325, 82661, 'no_lang_code', 'name', 'Innoplexus'),
(100326, 82662, 'en', 'name', 'Shanxi Provincial Cancer Hospital'),
(100327, 82662, 'zh', 'name', 'å±±č„æēœč‚æē˜¤åŒ»é™¢'),
(100328, 82663, 'en', 'name', 'Meharry Medical College'),
(100329, 82664, 'en', 'name', 'Okinawa Churashima Foundation'),
(100330, 82664, 'ja', 'name', 'ę²–ēø„ē¾Žć‚‰å³¶č²”å›£'),
(100331, 82665, 'es', 'name', 'Hospital General Universitario de Alicante Doctor Balmis'),
(100332, 82666, 'no_lang_code', 'name', 'Amneal (United States)'),
(100333, 82667, 'en', 'name', 'Polymer Research Center'),
(100334, 82668, 'en', 'name', 'SUNY Polytechnic Institute'),
(100335, 82669, 'en', 'name', 'Tennessee Department of Education'),
(100336, 82670, 'fr', 'name', 'Centre QuƩbƩcois de Recherche et de DƩveloppement de l''Aluminium'),
(100337, 82671, 'en', 'name', 'Oxford Health NHS Foundation Trust'),
(100338, 82672, 'en', 'name', 'State Library of Victoria'),
(100339, 82673, 'pt', 'name', 'CĆ¢mara Municipal de Almada'),
(100340, 82674, 'en', 'name', 'European Foundation for the Study of Diabetes'),
(100341, 82675, 'en', 'name', 'Watson-Brown Foundation'),
(100342, 82676, 'no_lang_code', 'name', 'Santeon (Netherlands)'),
(100343, 82677, 'en', 'name', 'Eastern Connecticut State University'),
(100344, 82678, 'en', 'name', 'British Horseracing Authority'),
(100345, 82679, 'en', 'name', 'Alliance College-Ready Public Schools'),
(100346, 82680, 'no_lang_code', 'name', 'Frontier Scientific (United States)'),
(100347, 82681, 'nl', 'name', 'Instituut Gak'),
(100348, 82682, 'en', 'name', 'Center for Adoption Support and Education'),
(100349, 82683, 'en', 'name', 'Fourth Affiliated Hospital of China Medical University'),
(100350, 82683, 'zh', 'name', 'äø­å›½åŒ»ē§‘å¤§å­¦é™„å±žē¬¬å››åŒ»é™¢'),
(100351, 82684, 'en', 'name', 'Armenian National Institute'),
(100352, 82685, 'fr', 'name', 'Association Laurette Fugain'),
(100353, 82686, 'en', 'name', 'Resource Center for Parents and Children'),
(100354, 82687, 'en', 'name', 'Threepenny Review'),
(100355, 82688, 'en', 'name', 'Global Health Innovative Technology Fund'),
(100356, 82689, 'no_lang_code', 'name', 'Clough (Australia)'),
(100357, 82690, 'no_lang_code', 'name', 'Australian Centre for Advanced Computing and Communications (Australia)'),
(100358, 82691, 'en', 'name', 'North China University of Science and Technology Affiliated Hospital'),
(100359, 82691, 'zh', 'name', 'åŽåŒ—ē†å·„å¤§å­¦é™„å±žåŒ»é™¢'),
(100360, 82692, 'en', 'name', 'Oceanography Society'),
(100361, 82693, 'en', 'name', 'Asian Pacific American Institute for Congressional Studies'),
(100362, 82694, 'no_lang_code', 'name', 'Allied Insurance (United States)'),
(100363, 82695, 'no_lang_code', 'name', 'Fios Genomics (United Kingdom)'),
(100364, 82696, 'en', 'name', 'Moscow State Institute of Music named after A.G. Schnittke'),
(100365, 82696, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(100366, 82697, 'en', 'name', 'Massachusetts Lions Eye Research Fund'),
(100367, 82698, 'en', 'name', 'Max Planck Institute for Radio Astronomy'),
(100368, 82698, 'de', 'name', 'Max-Planck-Institut für Radioastronomie'),
(100369, 82699, 'en', 'name', 'Lewis and Clark Community College'),
(100370, 82700, 'es', 'name', 'Academia Mexicana de Ciencias'),
(100371, 82700, 'en', 'name', 'Mexican Academy of Sciences'),
(100372, 82701, 'fr', 'name', 'Association FranƧaise de PƩdiatrie Ambulatoire'),
(100373, 82702, 'en', 'name', 'Community Relations Council'),
(100374, 82703, 'nl', 'name', 'Innovatiefonds Zorgverzekeraars'),
(100375, 82704, 'en', 'name', 'Chorley and South Ribble Hospital'),
(100376, 82705, 'en', 'name', 'Cardea Services'),
(100377, 82706, 'en', 'name', 'Energy Foundation'),
(100378, 82707, 'en', 'name', 'Finnish Dental Society Apollonia'),
(100379, 82707, 'fi', 'name', 'Suomen HammaslƤƤkƤriseura Apollonia'),
(100380, 82708, 'en', 'name', 'Dublin Dental University Hospital'),
(100381, 82709, 'en', 'name', 'JPS Health Network'),
(100382, 82710, 'en', 'name', 'Lighthouse Academies'),
(100383, 82711, 'en', 'name', 'Silicon Valley Education Foundation'),
(100384, 82712, 'no_lang_code', 'name', 'Medical & Biological Laboratories (Japan)'),
(100385, 82713, 'en', 'name', 'Churchill School and Center'),
(100386, 82714, 'en', 'name', 'SouthCoast Health'),
(100387, 82715, 'en', 'name', 'National Museum of Nature and Science'),
(100388, 82715, 'ja', 'name', 'å›½ē«‹ē§‘å­¦åšē‰©é¤Ø'),
(100389, 82716, 'en', 'name', 'Auckland Medical Research Foundation'),
(100390, 82717, 'en', 'name', 'Northeast-Midwest Institute'),
(100391, 82718, 'en', 'name', 'Jaap Schouten Foundation'),
(100392, 82719, 'en', 'name', 'Council for At-Risk Academics'),
(100393, 82720, 'en', 'name', 'Conchologists of America'),
(100394, 82721, 'en', 'name', 'Dowager Countess Eleanor Peel Trust'),
(100395, 82722, 'no_lang_code', 'name', 'Shigakkan University'),
(100396, 82722, 'ja', 'name', '至学館大学'),
(100397, 82723, 'no_lang_code', 'name', 'Maeumsarang Hospital'),
(100398, 82723, 'ko', 'name', 'ė§ˆģŒģ‚¬ėž‘ė³‘ģ›'),
(100399, 82724, 'pt', 'name', 'Faculdade de Pato Branco'),
(100400, 82725, 'en', 'name', 'Samuel Neaman Institute for National Policy Research'),
(100401, 82726, 'en', 'name', 'Benedictine College'),
(100402, 82727, 'fr', 'name', 'Institut National des Recherches Agricoles du BƩnin'),
(100403, 82728, 'en', 'name', 'East China Jiaotong University'),
(100404, 82728, 'zh', 'name', 'åŽäøœäŗ¤é€šå¤§å­¦'),
(100405, 82729, 'da', 'name', 'Fonden af 17-12-1981'),
(100406, 82730, 'it', 'name', 'Associazione Italiana di Tecnologia Meccanica'),
(100407, 82731, 'en', 'name', 'Canadian Society for the History of Medicine'),
(100408, 82731, 'fr', 'name', 'SociĆ©tĆ© Canadienne d’Histoire de la MĆ©decine'),
(100409, 82732, 'en', 'name', 'Senghor University'),
(100410, 82732, 'fr', 'name', 'UniversitƩ Senghor d''Alexandrie'),
(100411, 82732, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³Ł†Ų¬ŁˆŲ±'),
(100412, 82733, 'en', 'name', 'Royal Economic Society'),
(100413, 82734, 'no_lang_code', 'name', 'H&R Block (United States)'),
(100414, 82735, 'no_lang_code', 'name', 'AngioDynamics (United States)'),
(100415, 82736, 'ca', 'name', 'i2CAT'),
(100416, 82737, 'it', 'name', 'Conservatorio di Musica "Luisa D''Annunzio"'),
(100417, 82738, 'en', 'name', 'Japan Chemical Industry Association'),
(100418, 82738, 'ja', 'name', 'ę—„ęœ¬åŒ–å­¦å·„ę„­å”ä¼š'),
(100419, 82739, 'de', 'name', 'Werner Otto Stiftung'),
(100420, 82740, 'en', 'name', 'GHR Foundation'),
(100421, 82741, 'en', 'name', 'CancerFree KIDS'),
(100422, 82742, 'no_lang_code', 'name', 'Specifica (United States)'),
(100423, 82743, 'en', 'name', 'Biotechnology Innovation Organization'),
(100424, 82744, 'en', 'name', 'Honolulu University'),
(100425, 82745, 'no_lang_code', 'name', 'GEI Consultants'),
(100426, 82746, 'no_lang_code', 'name', 'OAI Consulting (United States)'),
(100427, 82747, 'en', 'name', 'Melanoma Research Alliance'),
(100428, 82748, 'no_lang_code', 'name', 'Bellerophon Therapeutics (United States)'),
(100429, 82749, 'en', 'name', 'Chinese Academy of Engineering'),
(100430, 82749, 'zh', 'name', '中国巄程院'),
(100431, 82750, 'en', 'name', 'Child & Family Service'),
(100432, 82751, 'en', 'name', 'Lahore General Hospital'),
(100433, 82751, 'ur', 'name', 'Ł„Ų§ŪŁˆŲ± جنرل ہسپتال'),
(100434, 82752, 'en', 'name', 'Vietnam Institute for Advanced Study in Mathematics'),
(100435, 82752, 'vi', 'name', 'Viện nghiĆŖn cứu cao cįŗ„p về toĆ”n'),
(100436, 82753, 'no_lang_code', 'name', 'Intra Cellular Therapies (United States)'),
(100437, 82754, 'en', 'name', 'West Georgia Regional Library'),
(100438, 82755, 'en', 'name', 'Chartered Institution of Wastes Management'),
(100439, 82756, 'en', 'name', 'The Sanskrit College and University'),
(100440, 82757, 'en', 'name', 'Danish Maritime Fund'),
(100441, 82757, 'da', 'name', 'Den Danske Maritime Fond'),
(100442, 82758, 'en', 'name', 'Bread & Roses Community Fund'),
(100443, 82759, 'en', 'name', 'Stone Age Institute'),
(100444, 82760, 'en', 'name', 'National Center for Victims of Crime'),
(100445, 82761, 'nl', 'name', 'Stichting ALS Nederland'),
(100446, 82762, 'en', 'name', 'StemCyte'),
(100447, 82763, 'no_lang_code', 'name', 'IQuity (United States)'),
(100448, 82764, 'no_lang_code', 'name', 'Canfor (Canada)'),
(100449, 82765, 'en', 'name', 'Lorentz Center'),
(100450, 82766, 'nl', 'name', 'Freek en Hella de Jonge Stichting'),
(100451, 82767, 'de', 'name', 'Deutsche Gesellschaft für Traditionelle Chinesische Medizin'),
(100452, 82768, 'en', 'name', 'Ohio Lions Eye Research Foundation'),
(100453, 82769, 'en', 'name', 'Dutch Diabetes Research Foundation'),
(100454, 82770, 'en', 'name', 'Startup Foundation'),
(100455, 82771, 'en', 'name', 'Japanese Foundation for Research and Promotion of Endoscopy'),
(100456, 82771, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å†…č¦–é”åŒ»å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(100457, 82772, 'no_lang_code', 'name', 'AgStar Financial Services, ACA (United States)'),
(100458, 82773, 'en', 'name', 'Center for Public Policy Alternatives'),
(100459, 82774, 'en', 'name', 'Daphne Jackson Trust'),
(100460, 82775, 'no_lang_code', 'name', 'Air France KLM (France)'),
(100461, 82776, 'en', 'name', 'Foundation for Ichthyosis and Related Skin Types'),
(100462, 82777, 'en', 'name', 'Ethics and Excellence in Journalism Foundation'),
(100463, 82778, 'pl', 'name', 'Międzyleski Szpital Specjalistyczny w Warszawie'),
(100464, 82779, 'en', 'name', 'Michael & Susan Dell Foundation'),
(100465, 82780, 'en', 'name', 'Hyogo Science and Technology Association'),
(100466, 82780, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ć²ć‚‡ć†ć”ē§‘å­¦ęŠ€č”“å”ä¼š'),
(100467, 82781, 'en', 'name', 'Amadeu Antonio Foundation'),
(100468, 82782, 'en', 'name', 'Sarnoff Cardiovascular Research Foundation'),
(100469, 82783, 'en', 'name', 'Oregon Watershed Enhancement Board'),
(100470, 82784, 'en', 'name', 'Anderson County Library System'),
(100471, 82785, 'en', 'name', 'University of Computer Engineering and Telecommunications'),
(100472, 82786, 'en', 'name', 'Douglas Foundation'),
(100473, 82787, 'pt', 'name', 'Instituto do Coração'),
(100474, 82788, 'en', 'name', 'Quebec Network for Research on Aging'),
(100475, 82788, 'fr', 'name', 'RƩseau QuƩbƩcois de Recherche sur le Vieillissement'),
(100476, 82789, 'en', 'name', 'Institute for Democracy and Mediation'),
(100477, 82790, 'en', 'name', 'University College Hospital at Westmoreland Street'),
(100478, 82791, 'en', 'name', 'Lepage Research Institute'),
(100479, 82792, 'en', 'name', 'Leuven Institute for Fertility and Embryology'),
(100480, 82792, 'fr', 'name', 'Leuvens Instituut voor Fertiliteit en Embryologie'),
(100481, 82793, 'no', 'name', 'Unifor'),
(100482, 82794, 'en', 'name', 'Newmarket Equine Hospital'),
(100483, 82795, 'no_lang_code', 'name', 'Bang & Olufsen (Denmark)'),
(100484, 82796, 'en', 'name', 'Canadian Animal Health Institute'),
(100485, 82796, 'fr', 'name', 'Institut Canadien de la SantƩ Animale'),
(100486, 82797, 'no_lang_code', 'name', 'CTI Engineering (Japan)'),
(100487, 82797, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å»ŗčØ­ęŠ€č”“ē ”ē©¶ę‰€'),
(100488, 82798, 'en', 'name', 'Maryland Stem Cell Research Fund'),
(100489, 82799, 'en', 'name', 'Swedish Society for Medical Research'),
(100490, 82800, 'en', 'name', 'Danang Architecture University'),
(100491, 82800, 'vi', 'name', 'ĐẔi hį»c Kiįŗæn trĆŗc ĐƠ Nįŗµng'),
(100492, 82801, 'en', 'name', 'Papua New Guinea University of Natural Resources and Environment'),
(100493, 82802, 'en', 'name', 'Egyptian Society of Cardiology'),
(100494, 82803, 'en', 'name', 'Harold Hyam Wingate Foundation'),
(100495, 82804, 'en', 'name', 'International Copper Association'),
(100496, 82805, 'no_lang_code', 'name', 'Council of Grain Grower Organisations (Australia)'),
(100497, 82806, 'en', 'name', 'J. Armand Bombardier Foundation'),
(100498, 82807, 'en', 'name', 'Mt. Ascutney Hospital and Health Center'),
(100499, 82808, 'en', 'name', 'Horace Smith Fund'),
(100500, 82809, 'en', 'name', 'Flora Family Foundation'),
(100501, 82810, 'no_lang_code', 'name', 'B&W Tek (United States)'),
(100502, 82811, 'en', 'name', 'Centre of Excellence for Biosensors, Instrumentation and Process Control'),
(100503, 82812, 'no_lang_code', 'name', 'Pharmadrome (United Kingdom)'),
(100504, 82813, 'nl', 'name', 'JKF Kinderfonds'),
(100505, 82814, 'no_lang_code', 'name', 'ASE Holdings (United States)'),
(100506, 82815, 'en', 'name', 'Northwest Samar State University'),
(100507, 82816, 'en', 'name', 'Canadian Child Health Clinician Scientist Program'),
(100508, 82817, 'en', 'name', 'University Hospitals of the Ruhr-University of Bochum'),
(100509, 82817, 'de', 'name', 'UniversitƤtsklinikum der Ruhr-UniversitƤt Bochum'),
(100510, 82818, 'no_lang_code', 'name', 'Tingvoll Kommune'),
(100511, 82819, 'en', 'name', 'National Institute of Policy and Strategic Studies'),
(100512, 82820, 'en', 'name', 'Graduate University of Advanced Technology'),
(100513, 82820, 'fa', 'name', 'دانؓگاه ŲŖŲ­ŲµŪŒŁ„Ų§ŲŖ ŲŖŚ©Ł…ŪŒŁ„ŪŒ ŲµŁ†Ų¹ŲŖŪŒ و ŁŁ†Ų§ŁˆŲ±ŪŒ Ł¾ŪŒŲ“Ų±ŁŲŖŁ‡'),
(100514, 82821, 'no_lang_code', 'name', 'Duchossois Group (United States)'),
(100515, 82822, 'es', 'name', 'Fundación Seimc-Gesida'),
(100516, 82823, 'en', 'name', 'National Cowboy & Western Heritage Museum'),
(100517, 82824, 'en', 'name', 'Povolzhskiy State University of Telecommunications and Informatics'),
(100518, 82825, 'no_lang_code', 'name', 'Alcen (France)'),
(100519, 82826, 'en', 'name', 'Smell & Taste Treatment and Research Foundation'),
(100520, 82827, 'en', 'name', 'National Fragile X Foundation'),
(100521, 82828, 'en', 'name', 'Network for Business Sustainability'),
(100522, 82828, 'fr', 'name', 'RĆ©seau Entreprise et DĆ©veloppement Durable​'),
(100523, 82829, 'en', 'name', 'North Denmark Region'),
(100524, 82829, 'da', 'name', 'Region Nordjylland'),
(100525, 82830, 'no_lang_code', 'name', 'Rila Solutions (Bulgaria)'),
(100526, 82830, 'bg', 'name', 'Рила Š”Š¾Š»ŃŽŃˆŃŠŠ½Ń'),
(100527, 82831, 'en', 'name', 'Maine Cancer Foundation'),
(100528, 82832, 'no_lang_code', 'name', 'Neurim Pharmaceuticals (Israel)'),
(100529, 82833, 'fr', 'name', 'Association Philippe Jabre'),
(100530, 82834, 'en', 'name', 'Washington Drug and Alcohol Commission'),
(100531, 82835, 'hu', 'name', 'Egri HittudomĆ”nyi Főiskola'),
(100532, 82836, 'en', 'name', 'Evolving Earth Foundation'),
(100533, 82837, 'en', 'name', 'Thomas Young Centre'),
(100534, 82838, 'en', 'name', 'A. Lindsay & Olive B. O''Connor Foundation'),
(100535, 82839, 'en', 'name', 'Graham and Carolyn Holloway Family Foundation'),
(100536, 82840, 'no_lang_code', 'name', 'Allen-Vanguard (Canada)'),
(100537, 82841, 'en', 'name', 'Institute for Research, Education and Training in Addictions'),
(100538, 82842, 'no_lang_code', 'name', 'CyberAgent (Japan)'),
(100539, 82843, 'en', 'name', 'California Academy of Family Physicians'),
(100540, 82844, 'en', 'name', 'British Burn Association'),
(100541, 82845, 'en', 'name', 'International Society on Aging and Disease'),
(100542, 82846, 'en', 'name', 'Politecnica Salesiana University'),
(100543, 82846, 'es', 'name', 'Universidad PolitƩcnica Salesiana'),
(100544, 82847, 'no_lang_code', 'name', 'Lenterra (United States)'),
(100545, 82848, 'no_lang_code', 'name', 'Nanshan Group (China)'),
(100546, 82848, 'zh', 'name', 'å—å±±ęŽ§č‚”'),
(100547, 82849, 'en', 'name', 'Sandler Foundation'),
(100548, 82850, 'en', 'name', 'Batumi State Maritime Academy'),
(100549, 82850, 'ka', 'name', 'įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒįƒ–įƒ¦įƒ•įƒįƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(100550, 82851, 'en', 'name', 'The Little Foundation'),
(100551, 82852, 'en', 'name', 'Weil Foot & Ankle Institute'),
(100552, 82853, 'no_lang_code', 'name', 'Sanovel (Turkey)'),
(100553, 82854, 'no_lang_code', 'name', 'Nanōmix (United States)'),
(100554, 82855, 'en', 'name', 'Ontario Federation of Anglers and Hunters'),
(100555, 82856, 'fr', 'name', 'Retina France'),
(100556, 82857, 'en', 'name', 'National Hospice and Palliative Care Organization'),
(100557, 82858, 'en', 'name', 'Association of Community Health Nursing Educators'),
(100558, 82859, 'en', 'name', 'California Community Foundation'),
(100559, 82860, 'en', 'name', 'National Quemoy University'),
(100560, 82860, 'zh', 'name', 'åœ‹ē«‹é‡‘é–€å¤§å­ø'),
(100561, 82861, 'fi', 'name', 'Maa- ja Vesitekniikan Tuki Ry'),
(100562, 82862, 'en', 'name', 'Colorado Springs Neurological Associates'),
(100563, 82863, 'en', 'name', 'Wenzhou Vocational College of Science and Technology'),
(100564, 82864, 'en', 'name', 'The Central Hospital of Shaoyang'),
(100565, 82864, 'zh', 'name', 'é‚µé˜³åø‚äø­åæƒåŒ»é™¢'),
(100566, 82865, 'en', 'name', 'Japan Institute of the Moving Image'),
(100567, 82865, 'ja', 'name', 'ę—„ęœ¬ę˜ ē”»å¤§å­¦'),
(100568, 82866, 'fr', 'name', 'Association canadienne des physiciens et physiciennes'),
(100569, 82866, 'en', 'name', 'Canadian Association of Physicists'),
(100570, 82867, 'en', 'name', 'Saskatchewan Pulse Growers'),
(100571, 82868, 'en', 'name', 'Palmerston North City Council'),
(100572, 82869, 'en', 'name', 'Fund for Astrophysical Research'),
(100573, 82870, 'en', 'name', 'George F. and Sybil H. Fuller Foundation'),
(100574, 82871, 'en', 'name', 'NoVo Foundation'),
(100575, 82872, 'en', 'name', 'Covenant HealthCare'),
(100576, 82873, 'en', 'name', 'Stephen Lewis Foundation'),
(100577, 82874, 'en', 'name', 'Shaanxi Polytechnic Institute'),
(100578, 82874, 'zh', 'name', '陕脿理巄学院'),
(100579, 82875, 'en', 'name', 'Wagner Free Institute of Science'),
(100580, 82876, 'en', 'name', 'Dutch CAA Foundation'),
(100581, 82877, 'en', 'name', 'Tellus Institute'),
(100582, 82878, 'en', 'name', 'Myalgic Encephalomyelitis Research Group'),
(100583, 82879, 'en', 'name', 'Age Endeavour Fellowship'),
(100584, 82880, 'en', 'name', 'Kanazawa Institute of Technology'),
(100585, 82880, 'ja', 'name', '金沢巄愭大学'),
(100586, 82881, 'en', 'name', 'Peanut Institute'),
(100587, 82882, 'en', 'name', 'Hospital for Tropical Diseases'),
(100588, 82883, 'sk', 'name', 'Ministerstvo FinanciĆ­ Slovenskej Republiky'),
(100589, 82883, 'en', 'name', 'Ministry of Finance of the Slovak Republic'),
(100590, 82884, 'en', 'name', 'Opportunity Alliance'),
(100591, 82885, 'en', 'name', 'Society for Archaeological Sciences'),
(100592, 82886, 'no', 'name', 'Lyngdal kommune'),
(100593, 82887, 'en', 'name', 'Burdett Trust for Nursing'),
(100594, 82888, 'en', 'name', 'Tampa Bay Estuary Program'),
(100595, 82889, 'en', 'name', 'American International Medical University'),
(100596, 82890, 'fr', 'name', 'Association Neuro-Bretagne'),
(100597, 82891, 'en', 'name', 'British Exploring Society'),
(100598, 82892, 'no_lang_code', 'name', 'Mirada Medical (United Kingdom)'),
(100599, 82893, 'no_lang_code', 'name', 'Eileen Fisher (United States)'),
(100600, 82894, 'no_lang_code', 'name', 'Maruho (Japan)'),
(100601, 82894, 'ja', 'name', 'ćƒžćƒ«ćƒ›ę Ŗå¼ä¼šē¤¾'),
(100602, 82895, 'en', 'name', 'Supergrid Institute'),
(100603, 82896, 'en', 'name', 'Sumy National Agrarian University'),
(100604, 82896, 'ru', 'name', 'Думский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100605, 82896, 'uk', 'name', 'Думський Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100606, 82897, 'en', 'name', 'Health Foundation for Western & Central New York'),
(100607, 82898, 'en', 'name', 'Manufacturing Academy of Denmark'),
(100608, 82899, 'en', 'name', 'Jaseng Medical Foundation'),
(100609, 82899, 'ko', 'name', 'ģžģƒģ˜ė£Œģž¬ė‹Ø'),
(100610, 82900, 'pt', 'name', 'Sociedade Brasileira de Retina e VĆ­treo'),
(100611, 82901, 'en', 'name', 'Ed Evans Foundation'),
(100612, 82902, 'no_lang_code', 'name', 'EnergyNest (Norway)'),
(100613, 82903, 'en', 'name', 'New Venture Fund'),
(100614, 82904, 'en', 'name', 'Marine Research Foundation'),
(100615, 82905, 'en', 'name', 'Medical Oncology Group of Australia'),
(100616, 82906, 'no_lang_code', 'name', 'Truphatek (Israel)'),
(100617, 82907, 'tr', 'name', 'Npistanbul Beyin Hastanesi'),
(100618, 82907, 'en', 'name', 'Npistanbul Brain Hospital'),
(100619, 82908, 'no_lang_code', 'name', 'Computas (Norway)'),
(100620, 82909, 'en', 'name', 'National Czech and Slovak Museum & Library'),
(100621, 82910, 'en', 'name', 'Eye Center'),
(100622, 82911, 'no_lang_code', 'name', 'Nikkiso (Japan)'),
(100623, 82912, 'pt', 'name', 'Associação Brasileira de Avaliação de Impacto'),
(100624, 82913, 'en', 'name', 'John S. Latsis Public Benefit Foundation'),
(100625, 82914, 'en', 'name', 'Union University'),
(100626, 82915, 'es', 'name', 'Asociación Española de Psicología Conductual'),
(100627, 82916, 'en', 'name', 'Jane Bradley Pettit Foundation'),
(100628, 82917, 'no_lang_code', 'name', 'Cermavein (France)'),
(100629, 82918, 'en', 'name', 'National Institute for Testing and Evaluation'),
(100630, 82918, 'he', 'name', '×ž×Ø×›×– ארצי ×œ×‘×—×™× ×•×Ŗ ×•×œ×”×¢×Ø×›×”'),
(100631, 82919, 'no_lang_code', 'name', 'Nion (United States)'),
(100632, 82920, 'en', 'name', 'Max and Minnie Tomerlin Voelcker Fund'),
(100633, 82921, 'en', 'name', 'Amol University of Special Modern Technologies'),
(100634, 82921, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ł…ŁˆŁ„ آمل'),
(100635, 82922, 'en', 'name', 'JECS Trust'),
(100636, 82923, 'en', 'name', 'Vincent Wildlife Trust'),
(100637, 82924, 'en', 'name', 'Montessori Education Institute of the Pacific Northwest'),
(100638, 82925, 'es', 'name', 'ClĆ­nica Somer'),
(100639, 82926, 'en', 'name', 'Imagination Institute'),
(100640, 82927, 'en', 'name', 'Colorado Association of School Executives'),
(100641, 82928, 'en', 'name', 'William V. S. Tubman University'),
(100642, 82929, 'pt', 'name', 'Hospital Socor'),
(100643, 82930, 'en', 'name', 'Lung Cancer Research Foundation'),
(100644, 82931, 'en', 'name', 'Craig H Neilsen Foundation'),
(100645, 82932, 'de', 'name', 'Institut für Grenzgebiete der Psychologie und Psychohygiene'),
(100646, 82932, 'en', 'name', 'Institute for Frontier Areas of Psychology and Mental Health'),
(100647, 82933, 'es', 'name', 'Centro Tecnológico de la Industria CÔrnica de La Rioja'),
(100648, 82934, 'pt', 'name', 'BeneficĆŖncia Portuguesa de SĆ£o Paulo'),
(100649, 82935, 'en', 'name', 'Surfrider Foundation'),
(100650, 82936, 'en', 'name', 'Otago Medical Research Foundation'),
(100651, 82937, 'da', 'name', 'Aase og Ejnar Danielsens Fond'),
(100652, 82938, 'no_lang_code', 'name', 'Acacia Research Corporation (United States)'),
(100653, 82939, 'en', 'name', 'Innovative Medicines Canada'),
(100654, 82940, 'en', 'name', 'Environmental Leadership Program'),
(100655, 82941, 'en', 'name', 'Law and Society Association'),
(100656, 82942, 'en', 'name', 'Marine National Facility'),
(100657, 82943, 'en', 'name', 'Shenzhen Second People''s Hospital'),
(100658, 82944, 'en', 'name', 'Sixteenth Century Society and Conference'),
(100659, 82945, 'no_lang_code', 'name', 'Manufacturing Advocacy & Growth Network (United States)'),
(100660, 82946, 'en', 'name', 'Near and Far Aid'),
(100661, 82947, 'en', 'name', 'Korean Diabetes Association'),
(100662, 82948, 'no_lang_code', 'name', 'Charlotte''s Web (United States)'),
(100663, 82949, 'en', 'name', 'Pulmonary Fibrosis Foundation'),
(100664, 82950, 'es', 'name', 'Universidad de Puerto Rico, Recinto de RĆ­o Piedras'),
(100665, 82950, 'en', 'name', 'University of Puerto Rico at RĆ­o Piedras'),
(100666, 82951, 'no_lang_code', 'name', 'Condor Petroleum (Canada)'),
(100667, 82952, 'en', 'name', 'Kenneth T. and Eileen L. Norris Foundation'),
(100668, 82953, 'en', 'name', 'Ta Hwa University of Science and Technology'),
(100669, 82953, 'zh', 'name', 'å¤§čÆē§‘ęŠ€å¤§å­ø'),
(100670, 82954, 'en', 'name', 'Spirit Mountain Community Fund'),
(100671, 82955, 'no_lang_code', 'name', 'Simpson Strong-Tie (United States)'),
(100672, 82956, 'en', 'name', 'Spina Bifida Association'),
(100673, 82957, 'en', 'name', 'Scottish Rite Charitable Foundation of Canada'),
(100674, 82958, 'en', 'name', 'Korea Institute of Brain Science'),
(100675, 82959, 'en', 'name', 'Centre for Research in Early Childhood'),
(100676, 82960, 'en', 'name', 'Florida Education Fund'),
(100677, 82961, 'no_lang_code', 'name', 'Scalable Network Technologies (United States)'),
(100678, 82962, 'nl', 'name', 'Trombosestichting Nederland'),
(100679, 82963, 'en', 'name', 'Gwynedd Mercy University'),
(100680, 82964, 'en', 'name', 'Indian Institute of Rice Research'),
(100681, 82965, 'en', 'name', 'Canadian Association of Petroleum Producers'),
(100682, 82966, 'no_lang_code', 'name', 'Nexans (France)'),
(100683, 82967, 'en', 'name', 'Society of Australasian Social Psychologists'),
(100684, 82968, 'no_lang_code', 'name', 'Prayon (Belgium)'),
(100685, 82969, 'no_lang_code', 'name', 'Custom Manufacturing & Engineering (United States)'),
(100686, 82970, 'no_lang_code', 'name', 'Selgen (Czechia)'),
(100687, 82971, 'en', 'name', 'Diakonhjemmet Foundation'),
(100688, 82972, 'en', 'name', 'Peng Cheng Laboratory'),
(100689, 82972, 'zh', 'name', 'é¹åŸŽå®žéŖŒå®¤'),
(100690, 82973, 'en', 'name', 'Science made simple'),
(100691, 82974, 'en', 'name', 'Beckley Foundation'),
(100692, 82975, 'en', 'name', 'Swim Across America'),
(100693, 82976, 'en', 'name', 'Punxsutawney Area Hospital'),
(100694, 82977, 'en', 'name', 'Goshen Health'),
(100695, 82978, 'pt', 'name', 'Sociedade Brasileira Infectologia'),
(100696, 82979, 'fr', 'name', 'Association pour l''Utilisation du Rein Artificiel dans la rƩgion Lyonnaise'),
(100697, 82980, 'nl', 'name', 'Waddenfonds'),
(100698, 82981, 'pt', 'name', 'Faculdades Oswaldo Cruz'),
(100699, 82982, 'pt', 'name', 'Sociedade Brasileira de NeurociĆŖncias e Comportamento'),
(100700, 82983, 'en', 'name', 'EMBL Australia'),
(100701, 82984, 'no_lang_code', 'name', 'GreenLight Biosciences (United States)'),
(100702, 82985, 'no_lang_code', 'name', 'AccuVein (United States)'),
(100703, 82986, 'en', 'name', 'University of the Philippines Baguio'),
(100704, 82987, 'en', 'name', 'Florence Nightingale Foundation'),
(100705, 82988, 'no_lang_code', 'name', 'Applied Biomathematics (United States)'),
(100706, 82989, 'en', 'name', 'International Specialised Skills Institute'),
(100707, 82990, 'en', 'name', 'Casper LĆ­bero Foundation'),
(100708, 82990, 'pt', 'name', 'Fundação CÔsper Líbero'),
(100709, 82991, 'en', 'name', 'Association for Japanese-Language Teaching'),
(100710, 82991, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗ å›½éš›ę—„ęœ¬čŖžę™®åŠå”ä¼š'),
(100711, 82992, 'en', 'name', 'Southern Education Foundation'),
(100712, 82993, 'en', 'name', 'Systemic Risk Centre'),
(100713, 82994, 'en', 'name', 'Matrix Biology Institute'),
(100714, 82995, 'en', 'name', 'Aid for Cancer Research'),
(100715, 82996, 'en', 'name', 'Water Research Institute'),
(100716, 82997, 'no_lang_code', 'name', 'Otto Fuchs (Germany)'),
(100717, 82998, 'en', 'name', 'Kurnool Medical College'),
(100718, 82998, 'te', 'name', 'ą°•ą°°ą±ą°Øą±‚ą°²ą± ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(100719, 82999, 'no_lang_code', 'name', 'Marks and Spencer (United Kingdom)'),
(100720, 83000, 'no_lang_code', 'name', 'Novalait (Canada)'),
(100721, 83001, 'en', 'name', 'Primary Health Care Institute'),
(100722, 83002, 'en', 'name', 'Van Lodenstein College'),
(100723, 83003, 'en', 'name', 'Australian Respiratory Council'),
(100724, 83004, 'en', 'name', 'Crowder College'),
(100725, 83005, 'en', 'name', 'University of Information Technology and Communications'),
(100726, 83006, 'en', 'name', 'Keaton Raphael Memorial'),
(100727, 83007, 'no_lang_code', 'name', 'Razi Hospital'),
(100728, 83007, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† رازی Ų±Ų“ŲŖ'),
(100729, 83008, 'en', 'name', 'Nagoya University of Arts and Sciences'),
(100730, 83008, 'ja', 'name', 'åå¤å±‹å­¦čŠøå¤§å­¦'),
(100731, 83009, 'en', 'name', 'Centre for Development and Enterprise'),
(100732, 83010, 'en', 'name', 'The Wine Monopoly'),
(100733, 83010, 'no_lang_code', 'name', 'Vinmonopolet (Norway)'),
(100734, 83011, 'en', 'name', 'Wild Blueberry Producers Association of Nova Scotia'),
(100735, 83012, 'en', 'name', 'Arthur Ashe Institute for Urban Health'),
(100736, 83013, 'no_lang_code', 'name', 'Rothband (United Kingdom)'),
(100737, 83014, 'no_lang_code', 'name', 'Indumetal Recycling (Spain)'),
(100738, 83015, 'en', 'name', 'Ophthalmic Consultants of Boston'),
(100739, 83016, 'de', 'name', 'KfH-Stiftung PrƤventivmedizin'),
(100740, 83017, 'en', 'name', 'Iranian Center for Quantum Technologies'),
(100741, 83018, 'no_lang_code', 'name', 'TRM (United Kingdom)'),
(100742, 83019, 'no_lang_code', 'name', 'Ionic Liquids Technologies (Germany)'),
(100743, 83020, 'no_lang_code', 'name', 'ToolGen (South Korea)'),
(100744, 83020, 'ko', 'name', '툓젠'),
(100745, 83021, 'en', 'name', 'Portland VA Research Foundation'),
(100746, 83022, 'en', 'name', 'Epilepsy Ireland'),
(100747, 83023, 'no_lang_code', 'name', 'Second Sight Medical Products'),
(100748, 83024, 'en', 'name', 'Hervey Foundation'),
(100749, 83025, 'en', 'name', 'International Union for the Scientific Study of Population'),
(100750, 83026, 'en', 'name', 'Diabetes QuƩbec'),
(100751, 83026, 'fr', 'name', 'Diabète Québecs'),
(100752, 83027, 'nl', 'name', 'Algemene Nederlandse Vereniging ter Voorkoming van Blindheid'),
(100753, 83028, 'en', 'name', 'National Performance Network'),
(100754, 83029, 'en', 'name', 'Benedict College'),
(100755, 83030, 'en', 'name', 'Liver Foundation West Bengal'),
(100756, 83031, 'no_lang_code', 'name', 'Nirma (India)'),
(100757, 83032, 'en', 'name', 'Arctic Yukon Kuskokwim Sustainable Salmon Initiative'),
(100758, 83033, 'no_lang_code', 'name', 'PDI (United States)'),
(100759, 83034, 'no_lang_code', 'name', 'Noritake (Japan)'),
(100760, 83034, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŽćƒŖć‚æć‚±ć‚«ćƒ³ćƒ‘ćƒ‹ćƒ¼ćƒŖćƒŸćƒ†ćƒ‰'),
(100761, 83035, 'no_lang_code', 'name', 'Kawasumi Laboratories (Japan)'),
(100762, 83036, 'no_lang_code', 'name', 'Plextek (United Kingdom)'),
(100763, 83037, 'en', 'name', 'Wu Jieping Medical Foundation'),
(100764, 83038, 'no_lang_code', 'name', 'Ulrich Creative Simulations (Switzerland)'),
(100765, 83039, 'mi', 'name', 'Kuratini Tuwhera'),
(100766, 83039, 'en', 'name', 'Open Polytechnic'),
(100767, 83040, 'en', 'name', 'Kanazawa Technical College'),
(100768, 83040, 'ja', 'name', 'é‡‘ę²¢å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(100769, 83041, 'no_lang_code', 'name', 'Chromasun (United States)'),
(100770, 83042, 'no_lang_code', 'name', 'AFC Technologies (Israel)'),
(100771, 83043, 'en', 'name', 'Association of Fish and Wildlife Agencies'),
(100772, 83044, 'en', 'name', 'Social and Health Research Center'),
(100773, 83045, 'en', 'name', 'Lowell Community Health Center'),
(100774, 83046, 'en', 'name', 'National Pancreas Foundation'),
(100775, 83047, 'fr', 'name', 'Association canadienne pour l''Ʃtude du foie'),
(100776, 83047, 'en', 'name', 'Canadian Association for the Study of the Liver'),
(100777, 83048, 'en', 'name', 'Hislop College'),
(100778, 83049, 'en', 'name', 'Orthopedic Institute'),
(100779, 83050, 'en', 'name', 'McKnight Foundation'),
(100780, 83051, 'en', 'name', 'Black Belt Community Foundation'),
(100781, 83052, 'en', 'name', 'Workers Compensation Board of Alberta'),
(100782, 83053, 'no_lang_code', 'name', 'Hager Sharp (United States)'),
(100783, 83054, 'en', 'name', 'Palestinian American Research Council'),
(100784, 83055, 'en', 'name', 'Kirkhouse Trust'),
(100785, 83056, 'no_lang_code', 'name', 'Graco (United States)'),
(100786, 83057, 'en', 'name', 'Guarantors of Brain'),
(100787, 83058, 'en', 'name', 'Norwegian Aviation Museum'),
(100788, 83059, 'en', 'name', 'Center for China and Globalization'),
(100789, 83059, 'zh', 'name', 'äø­å›½äøŽå…ØēƒåŒ–ę™ŗåŗ“'),
(100790, 83060, 'sv', 'name', 'HjƤrnfonden'),
(100791, 83061, 'en', 'name', 'Association for Behavioral and Cognitive Therapies'),
(100792, 83062, 'pt', 'name', 'Instituto Maria e Joao Aleixo'),
(100793, 83063, 'en', 'name', 'Lviv State University of Life Safety'),
(100794, 83063, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Державний Університет Безпеки Š–ŠøŃ‚Ń‚Ń”Š“Ń–ŃŠ»ŃŒŠ½Š¾ŃŃ‚Ń–'),
(100795, 83064, 'en', 'name', 'Iowa Pork Producers Association'),
(100796, 83065, 'en', 'name', 'Maudsley Charity'),
(100797, 83066, 'en', 'name', 'Edward Mallinckrodt Jr. Foundation'),
(100798, 83067, 'no', 'name', 'Ski kommune'),
(100799, 83068, 'en', 'name', 'National Taiwan University of Sport'),
(100800, 83068, 'zh', 'name', 'åœ‹ē«‹č‡ŗē£é«”č‚²é‹å‹•å¤§å­ø'),
(100801, 83069, 'no_lang_code', 'name', 'Top Hat (Canada)'),
(100802, 83070, 'no_lang_code', 'name', 'Exicure (United States)'),
(100803, 83071, 'en', 'name', 'St. Joseph’s Seminary and College'),
(100804, 83072, 'en', 'name', 'International Academy of Oral Medicine and Toxicology'),
(100805, 83073, 'en', 'name', 'Nordic Energy Research'),
(100806, 83074, 'en', 'name', 'New Earth Foundation'),
(100807, 83075, 'en', 'name', 'National Academy of Governance'),
(100808, 83075, 'mn', 'name', 'УГирГлагын АкаГемийн'),
(100809, 83076, 'no_lang_code', 'name', 'Nakanishi (Japan)'),
(100810, 83076, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŠć‚«ćƒ‹ć‚·'),
(100811, 83077, 'de', 'name', 'Höhere Bundeslehranstalt und Bundesamt für Wein- und Obstbau'),
(100812, 83078, 'no', 'name', 'Landsforeningen for hjerte- og lungesyke'),
(100813, 83079, 'en', 'name', 'Xi''an Siyuan University'),
(100814, 83079, 'zh', 'name', 'č„æå®‰ę€ęŗå­¦é™¢'),
(100815, 83080, 'en', 'name', 'Egg Industry Center'),
(100816, 83081, 'en', 'name', 'The Kinghorn Cancer Centre'),
(100817, 83082, 'en', 'name', 'Ingham Institute'),
(100818, 83083, 'no_lang_code', 'name', 'HyTest (Finland)'),
(100819, 83084, 'en', 'name', 'Heffter Research Institute'),
(100820, 83085, 'en', 'name', 'Foundation for Liver and Gastrointestinal Research'),
(100821, 83085, 'nl', 'name', 'Stichting voor Lever- en Maag-Darm Onderzoek'),
(100822, 83086, 'pt', 'name', 'Instituto Brasileiro de Controle do CĆ¢ncer'),
(100823, 83087, 'sv', 'name', 'Carl Tryggers stiftelse fƶr vetenskaplig forskning'),
(100824, 83088, 'no_lang_code', 'name', 'Mistras Group (United States)'),
(100825, 83089, 'en', 'name', 'Institute for Water of the Republic of Slovenia'),
(100826, 83090, 'en', 'name', 'Santa Barbara and Ventura Colleges of Law'),
(100827, 83091, 'en', 'name', 'Brittle Bone Society'),
(100828, 83092, 'en', 'name', 'VNU University of Science'),
(100829, 83092, 'vi', 'name', 'ĐẔi hį»c Khoa hį»c Tį»± nhiĆŖn HĆ  Nį»™i'),
(100830, 83093, 'en', 'name', 'American Society for Photobiology'),
(100831, 83094, 'en', 'name', 'Cures Within Reach'),
(100832, 83095, 'de', 'name', 'Fachhochschule für Rechtspflege Schwetzingen'),
(100833, 83095, 'en', 'name', 'Schwetzingen Technical Institute & Graduate Court Registrars'' College'),
(100834, 83096, 'en', 'name', 'Kothiwal Dental College and Research Centre'),
(100835, 83097, 'en', 'name', 'Center of Biotechnogy of Borj CƩdria'),
(100836, 83098, 'en', 'name', 'Stoke-on-Trent City Council'),
(100837, 83099, 'no_lang_code', 'name', 'The Nisshin OilliO Group (Japan)'),
(100838, 83099, 'ja', 'name', 'ę—„ęø…ć‚Ŗć‚¤ćƒŖć‚Ŗć‚°ćƒ«ćƒ¼ćƒ— 名古屋巄堓'),
(100839, 83100, 'en', 'name', 'Hanyang Cyber University'),
(100840, 83100, 'ko', 'name', 'ķ•œģ–‘ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(100841, 83101, 'no_lang_code', 'name', 'Quintessa (United Kingdom)'),
(100842, 83102, 'de', 'name', 'Institut für Rechts- und Kriminalsoziologie'),
(100843, 83102, 'en', 'name', 'Institute for the Sociology of Law and Criminology'),
(100844, 83103, 'en', 'name', 'Foundation KiKa'),
(100845, 83103, 'nl', 'name', 'Stichting Kinderen Kankervrij'),
(100846, 83104, 'en', 'name', 'The Winnipeg Foundation'),
(100847, 83105, 'en', 'name', 'Arthritis New Zealand'),
(100848, 83106, 'en', 'name', 'National Academy for Theatre and Film Arts'),
(100849, 83106, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ за театрално Šø филмово ŠøŠ·ŠŗŃƒŃŃ‚во ā€žŠšŃ€ŃŠŃŃ‚ŃŒŠ¾ Дарафов'),
(100850, 83107, 'en', 'name', 'First Hospital of Jiaxing'),
(100851, 83107, 'zh', 'name', 'å˜‰å…“åø‚ē¬¬äø€åŒ»é™¢'),
(100852, 83108, 'en', 'name', 'Scottish Alliance for Geoscience, Environment and Society'),
(100853, 83109, 'no_lang_code', 'name', 'BioLife Solutions (United States)'),
(100854, 83110, 'en', 'name', 'Baltic International Academy'),
(100855, 83110, 'lv', 'name', 'Baltijas Starptautiskā akadēmija'),
(100856, 83110, 'lt', 'name', 'Tarptautinė Baltijos akademija'),
(100857, 83110, 'ru', 'name', 'Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(100858, 83111, 'no_lang_code', 'name', 'Agnitron Technology (United States)'),
(100859, 83112, 'en', 'name', 'Concord Consortium'),
(100860, 83113, 'en', 'name', 'Physicians'' Services Incorporated Foundation'),
(100861, 83114, 'en', 'name', 'Partnership for Clean Competition'),
(100862, 83115, 'no_lang_code', 'name', 'DAK-Gesundheit (Germany)'),
(100863, 83116, 'en', 'name', 'African Bible University'),
(100864, 83117, 'en', 'name', 'Academy of Fine Arts of Bari'),
(100865, 83117, 'it', 'name', 'Accademia di Belle Arti di Bari'),
(100866, 83118, 'no_lang_code', 'name', 'DornerWorks (United States)'),
(100867, 83119, 'en', 'name', 'National University of the West'),
(100868, 83119, 'es', 'name', 'Universidad Nacional del Oeste'),
(100869, 83120, 'en', 'name', 'Bliss'),
(100870, 83121, 'en', 'name', 'Pacific Salmon Foundation'),
(100871, 83122, 'en', 'name', 'Institute for Law and Justice'),
(100872, 83123, 'en', 'name', 'Liupanshui Normal University'),
(100873, 83124, 'en', 'name', 'Jining Normal University'),
(100874, 83125, 'en', 'name', 'Philanthropic Educational Organization'),
(100875, 83126, 'en', 'name', 'National School of Mineral Industry'),
(100876, 83126, 'fr', 'name', 'Ɖcole nationale de l''industrie minĆ©rale'),
(100877, 83126, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للصناعات Ų§Ł„Ł…Ų¹ŲÆŁ†ŁŠŲ© (المغرب)'),
(100878, 83127, 'pt', 'name', 'Fundação do ABC'),
(100879, 83128, 'en', 'name', 'Nebraska Environmental Trust'),
(100880, 83129, 'en', 'name', 'Rowland Foundation'),
(100881, 83130, 'en', 'name', 'LivingStone International University'),
(100882, 83131, 'en', 'name', 'Psychology Beyond Borders'),
(100883, 83132, 'en', 'name', 'All - Russian Scientific Research Institute of Tobacco, Makhorka and Tobacco Products'),
(100884, 83132, 'ru', 'name', 'ŠŠŠ£Š§ŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢ŠŠ‘ŠŠšŠ, ŠœŠŠ„ŠžŠ ŠšŠ˜ И Š¢ŠŠ‘ŠŠ§ŠŠ«Š„ Š˜Š—Š”Š•Š›Š˜Š™'),
(100885, 83133, 'en', 'name', 'Rambhai Barni Rajabhat University'),
(100886, 83133, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø£ąø³ą¹„ąøžąøžąø£ąø£ąø“ąøµ'),
(100887, 83134, 'en', 'name', 'Mama Cash'),
(100888, 83135, 'nl', 'name', 'Prinses Beatrix Spierfonds'),
(100889, 83136, 'hu', 'name', 'Kőrƶsi Csoma TĆ”rsasĆ”g'),
(100890, 83137, 'en', 'name', 'Baring Foundation'),
(100891, 83138, 'en', 'name', 'Foundation for European Progressive Studies'),
(100892, 83139, 'en', 'name', 'Rebecca L. Cooper Medical Research Foundation'),
(100893, 83140, 'pt', 'name', 'Instituto de Urologia e Nefrologia'),
(100894, 83141, 'no_lang_code', 'name', 'SK Group (South Korea)'),
(100895, 83141, 'ko', 'name', 'ģ—ģŠ¤ģ¼€ģ“ź·øė£¹'),
(100896, 83142, 'en', 'name', 'British Orthopaedic Research Society'),
(100897, 83143, 'no_lang_code', 'name', 'Medicon'),
(100898, 83144, 'en', 'name', 'South African History Archive'),
(100899, 83145, 'no_lang_code', 'name', 'McCormick (United States)'),
(100900, 83146, 'en', 'name', 'Turner Foundation'),
(100901, 83147, 'en', 'name', 'Australian Education Research Organisation'),
(100902, 83148, 'en', 'name', 'Emory and Henry College'),
(100903, 83149, 'en', 'name', 'Osaka Kidney Foundation'),
(100904, 83150, 'no_lang_code', 'name', 'Yung Shin Pharmaceutical Industrial (Taiwan)'),
(100905, 83151, 'en', 'name', 'Women and Memory Forum'),
(100906, 83151, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© المرأة ŁˆŲ§Ł„Ų°Ų§ŁƒŲ±Ų©'),
(100907, 83152, 'en', 'name', 'Disability Rights Fund'),
(100908, 83153, 'en', 'name', 'Associated Colleges of the Midwest'),
(100909, 83154, 'en', 'name', 'New Horizons for Women Trust'),
(100910, 83155, 'en', 'name', 'Filamer Christian University'),
(100911, 83156, 'sv', 'name', 'Studiefƶrbundet NƤringsliv och SamhƤlle'),
(100912, 83157, 'en', 'name', 'American Cryonics Society'),
(100913, 83158, 'en', 'name', 'Maori Education Trust'),
(100914, 83159, 'en', 'name', 'Helmholtz Institute Freiberg for Resource Technology'),
(100915, 83159, 'de', 'name', 'Helmholtz-Institut Freiberg für Ressourcentechnologie'),
(100916, 83160, 'en', 'name', 'Wayside Youth And Family Support Network'),
(100917, 83161, 'en', 'name', 'National Center for Cancer Care and Research'),
(100918, 83162, 'en', 'name', 'Rhodes Trust'),
(100919, 83163, 'en', 'name', 'Ross Foundation'),
(100920, 83164, 'en', 'name', 'Hill Museum and Manuscript Library'),
(100921, 83165, 'nl', 'name', 'Gratama Stichting'),
(100922, 83166, 'en', 'name', 'African Federation for Emergency Medicine'),
(100923, 83167, 'no_lang_code', 'name', 'C-Com Satellite Systems (Canada)'),
(100924, 83168, 'tl', 'name', 'Unibersidad ng Pilipinas Mindanao'),
(100925, 83168, 'en', 'name', 'University of the Philippines Mindanao'),
(100926, 83169, 'en', 'name', 'Analysis & Policy Observatory'),
(100927, 83170, 'no_lang_code', 'name', 'Vygon (France)'),
(100928, 83171, 'en', 'name', 'Volodymyr Dahl East Ukrainian National University'),
(100929, 83171, 'pl', 'name', 'Wschodnioukraiński Uniwersytet Narodowy im. Wołodymyra Dala'),
(100930, 83171, 'ru', 'name', 'Š’Š¾ŃŃ‚Š¾Ń‡Š½Š¾ŃƒŠŗŃ€Š°ŠøŠ½ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ВлаГимира Š”Š°Š»Ń'),
(100931, 83171, 'uk', 'name', 'Š”Ń…Ń–Š“Š½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВолоГимира Š”Š°Š»Ń'),
(100932, 83172, 'en', 'name', 'Canadian Climate Forum'),
(100933, 83173, 'en', 'name', 'EGU HV Laboratory'),
(100934, 83174, 'de', 'name', 'Krankenhaus St. Joseph-Stift Bremen'),
(100935, 83175, 'en', 'name', 'athenahealth'),
(100936, 83176, 'en', 'name', 'Institute of Behavioral Sciences'),
(100937, 83176, 'ja', 'name', 'č”Œå‹•ē§‘å­¦ē ”ē©¶ę‰€'),
(100938, 83177, 'no_lang_code', 'name', 'Geomembrane Technologies (Canada)'),
(100939, 83178, 'en', 'name', 'Southern Nations, Nationalities, and Peoples'' Region'),
(100940, 83178, 'am', 'name', 'የደቔቄ į‰„įˆ”įˆ­ į‰„įˆ”įˆØįˆ°į‰¦į‰½įŠ“ įˆ…į‹į‰¦į‰½ įŠ­įˆįˆ'),
(100941, 83179, 'en', 'name', 'Affiliated Hospital of Zunyi Medical College'),
(100942, 83179, 'zh', 'name', '遵义医学院附属医院'),
(100943, 83180, 'en', 'name', 'American Civil War Museum'),
(100944, 83181, 'en', 'name', 'WavEC Offshore Renewables'),
(100945, 83182, 'en', 'name', 'EuroScience'),
(100946, 83183, 'en', 'name', 'The Sherwood Institute'),
(100947, 83184, 'no_lang_code', 'name', 'BioAxone BioSciences (United States)'),
(100948, 83185, 'en', 'name', 'Interactive Media Institute'),
(100949, 83186, 'en', 'name', 'Al Baha University'),
(100950, 83186, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الباحة'),
(100951, 83187, 'en', 'name', 'Hemophilia Foundation of Michigan'),
(100952, 83188, 'en', 'name', 'Finnish Dental Association'),
(100953, 83188, 'fi', 'name', 'Suomen HammaslƤƤkƤriliitto'),
(100954, 83189, 'en', 'name', 'Ophthalmic Research Institute of Australia'),
(100955, 83190, 'en', 'name', 'K''ima:w Medical Center'),
(100956, 83191, 'pt', 'name', 'Universidade Estadual do Norte do ParanĆ”'),
(100957, 83192, 'no_lang_code', 'name', 'Innovia Films (United Kingdom)'),
(100958, 83193, 'de', 'name', 'Nationale Versorgungskonferenz Hautkrebs'),
(100959, 83193, 'en', 'name', 'Skin Cancer Council Germany'),
(100960, 83194, 'en', 'name', 'Ecumenical Project for International Cooperation'),
(100961, 83195, 'en', 'name', 'Eurasian Humanities Institute'),
(100962, 83195, 'kk', 'name', 'Š•ŃƒŃ€Š°Š·ŠøŃ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š»Ń‹Ņ› ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(100963, 83196, 'en', 'name', 'Sonoran Spine Research and Education Foundation'),
(100964, 83197, 'no_lang_code', 'name', 'GeneFluidics (United States)'),
(100965, 83198, 'en', 'name', 'Innovate Washington Foundation'),
(100966, 83199, 'en', 'name', 'All Saints Educational Trust'),
(100967, 83200, 'es', 'name', 'Instituto Nacional de Formación Técnica Profesional'),
(100968, 83201, 'en', 'name', 'Microbial Institute for Fermentation Industry'),
(100969, 83201, 'ko', 'name', '발효 ėÆøģƒė¬¼ ģ‚°ģ—… ģ§„ķ„ 기금'),
(100970, 83202, 'en', 'name', 'Barking and Dagenham College'),
(100971, 83203, 'en', 'name', 'Richard and Ethel Herzfeld Foundation'),
(100972, 83204, 'en', 'name', 'First Affiliated Hospital of University of South China'),
(100973, 83205, 'en', 'name', 'The Lucy Faithfull Foundation'),
(100974, 83206, 'no_lang_code', 'name', 'Cook Group (United States)'),
(100975, 83207, 'en', 'name', 'Manav Bharti University'),
(100976, 83208, 'no_lang_code', 'name', 'SQZ Biotech (United States)'),
(100977, 83209, 'en', 'name', 'Airey Neave Trust'),
(100978, 83210, 'en', 'name', 'Glaucoma Foundation'),
(100979, 83211, 'en', 'name', 'John Randolph Haynes and Dora Haynes Foundation'),
(100980, 83212, 'de', 'name', 'Institut für Biomedizinische und Pharmazeutische Forschung'),
(100981, 83212, 'en', 'name', 'Institute for Biomedical and Pharmaceutical Research'),
(100982, 83213, 'en', 'name', 'Rostov Research Institute of Microbiology and Parasitology'),
(100983, 83213, 'ru', 'name', 'Ростовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ микробиологии Šø паразитологии');
INSERT INTO `ror_settings` VALUES
(100984, 83214, 'en', 'name', 'British Society for Matrix Biology'),
(100985, 83215, 'no_lang_code', 'name', 'Crain Communications (United States)'),
(100986, 83216, 'en', 'name', 'International Business School'),
(100987, 83216, 'bg', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾ висше бизнес ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ'),
(100988, 83217, 'en', 'name', 'Sardar Patel Renewable Energy Research Institute'),
(100989, 83217, 'gu', 'name', 'ąŖøą«ąŖŖą«ąŖ°ą«‡ąŖ°ą«€'),
(100990, 83218, 'sv', 'name', 'K. Albin Johanssons stiftelse'),
(100991, 83219, 'en', 'name', 'American Neurogastroenterology and Motility Society'),
(100992, 83220, 'no_lang_code', 'name', 'G1 Therapeutics (United States)'),
(100993, 83221, 'en', 'name', 'Blue Cross and Blue Shield of Kansas City'),
(100994, 83222, 'nl', 'name', 'Nefrovisie'),
(100995, 83223, 'en', 'name', 'Foundation for a Cure for Mitochondrial Disease'),
(100996, 83224, 'en', 'name', 'Idea Wild'),
(100997, 83225, 'en', 'name', 'Batumi Navigation Teaching University'),
(100998, 83225, 'ka', 'name', 'įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒœįƒįƒ•įƒ˜įƒ’įƒįƒŖįƒ˜įƒ˜įƒ” įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(100999, 83226, 'en', 'name', 'Rzeszów School of Engineering and Economics'),
(101000, 83226, 'pl', 'name', 'Wyższa Szkoła Inżynieryjno – Ekonomiczna z siedzibą w Rzeszowie'),
(101001, 83227, 'en', 'name', 'Santiago Library System'),
(101002, 83228, 'en', 'name', 'American Surgical Association'),
(101003, 83229, 'en', 'name', 'Saint Francis de Sales Seminary'),
(101004, 83230, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ Vįŗ”n XuĆ¢n'),
(101005, 83230, 'en', 'name', 'Van Xuan University of Technology'),
(101006, 83231, 'en', 'name', 'Forefront of Dermatology'),
(101007, 83232, 'en', 'name', 'Hong Kong Research Institute of Textiles and Apparel'),
(101008, 83233, 'nl', 'name', 'Stichting Stoffels-Hornstra'),
(101009, 83234, 'en', 'name', 'Hermon Slade Foundation'),
(101010, 83235, 'en', 'name', 'ARC Centre of Excellence in Future Low-Energy Electronics Technologies'),
(101011, 83236, 'en', 'name', 'City & Guilds Group'),
(101012, 83237, 'no_lang_code', 'name', 'Palmetto Pharmaceuticals (United States)'),
(101013, 83238, 'en', 'name', 'Canadian Academy of Sport and Exercise Medicine'),
(101014, 83239, 'no_lang_code', 'name', 'EnGlobe (Canada)'),
(101015, 83240, 'en', 'name', 'Baily Thomas Charitable Fund'),
(101016, 83241, 'no_lang_code', 'name', 'Combustion Science & Engineering (United States)'),
(101017, 83242, 'no_lang_code', 'name', 'Vision Medicals (China)'),
(101018, 83242, 'zh', 'name', 'å¾®čæœåŸŗå› '),
(101019, 83243, 'en', 'name', 'Wuxi Institute of Arts & Technology'),
(101020, 83243, 'zh', 'name', 'ę— é””č‰ŗęœÆå­¦é™¢'),
(101021, 83244, 'es', 'name', 'Corporación de Lucha Contra el Sida'),
(101022, 83245, 'en', 'name', 'New Brunswick Arts Board'),
(101023, 83246, 'no_lang_code', 'name', 'Accretech (Japan)'),
(101024, 83246, 'ja', 'name', 'ę±äŗ¬ē²¾åÆ†'),
(101025, 83247, 'no_lang_code', 'name', 'Central Research Institute of Electronics (Russia)'),
(101026, 83247, 'ru', 'name', 'Š¦ŠŠ˜Š˜ Электроника'),
(101027, 83248, 'de', 'name', 'Heinz Maier-Leibnitz Zentrum'),
(101028, 83249, 'en', 'name', 'Clore Duffield Foundation'),
(101029, 83250, 'no_lang_code', 'name', 'CCD Design & Ergonomics (United Kingdom)'),
(101030, 83251, 'en', 'name', 'Hanoi University of Science and Technology'),
(101031, 83251, 'fr', 'name', 'Institut polytechnique de hanoĆÆ'),
(101032, 83251, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c BĆ”ch khoa HĆ  Nį»™i'),
(101033, 83252, 'en', 'name', 'Unity Worldwide Ministries'),
(101034, 83253, 'en', 'name', 'Regional Centre for Training in Aerospace Surveys'),
(101035, 83254, 'en', 'name', 'Gustavus And Louise Pfeiffer Research Foundation'),
(101036, 83255, 'no_lang_code', 'name', 'Great Lakes NeuroTechnologies (United States)'),
(101037, 83256, 'en', 'name', 'Power Systems Engineering Research Center'),
(101038, 83257, 'en', 'name', 'Morrison Child and Family Services'),
(101039, 83258, 'en', 'name', 'Nuclear Threat Initiative'),
(101040, 83259, 'en', 'name', 'Northshore Psychological Associates'),
(101041, 83260, 'en', 'name', 'Yangon School of Political Science'),
(101042, 83261, 'no_lang_code', 'name', 'China Architecture Design & Research Group (China)'),
(101043, 83261, 'zh', 'name', '中国建筑设讔研究院'),
(101044, 83262, 'en', 'name', 'Blum & Grob Attorneys at Law'),
(101045, 83262, 'de', 'name', 'Blum & Grob RechtsanwƤlte'),
(101046, 83263, 'en', 'name', 'Ann and Bill Swindells Charitable Trust'),
(101047, 83264, 'en', 'name', 'Harvard Club of Australia'),
(101048, 83265, 'en', 'name', 'The Wende Museum'),
(101049, 83266, 'en', 'name', 'National Rosacea Society'),
(101050, 83267, 'en', 'name', 'Foundation for Prader-Willi Research'),
(101051, 83268, 'en', 'name', 'Irrua Specialist Teaching Hospital'),
(101052, 83269, 'no_lang_code', 'name', 'Thermal Wave Imaging (United States)'),
(101053, 83270, 'no_lang_code', 'name', 'Mountain Equipment Co-op (Canada)'),
(101054, 83271, 'nl', 'name', 'Centraal Instituut voor Toetsontwikkeling'),
(101055, 83271, 'no_lang_code', 'name', 'Cito (Netherlands)'),
(101056, 83272, 'en', 'name', 'British Infection Association'),
(101057, 83273, 'en', 'name', 'Food and Drug Safety Center'),
(101058, 83273, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé£Ÿå“č–¬å“å®‰å…Øć‚»ćƒ³ć‚æćƒ¼'),
(101059, 83274, 'es', 'name', 'Universidad de Arte y Ciencias Sociales'),
(101060, 83274, 'en', 'name', 'University of Art and Social Sciences'),
(101061, 83275, 'en', 'name', 'Daiichi Institute of Technology'),
(101062, 83275, 'ja', 'name', '第一巄愭大学'),
(101063, 83276, 'en', 'name', 'Fama College'),
(101064, 83276, 'sq', 'name', 'Kolegji Fama'),
(101065, 83277, 'tr', 'name', 'Güneydoğu Avrupa Üniversitesi'),
(101066, 83277, 'en', 'name', 'South East European University'),
(101067, 83277, 'sq', 'name', 'Universiteti i Evropƫs Juglindore'),
(101068, 83277, 'mk', 'name', 'Универзитет на ŠˆŃƒŠ³Š¾ŠøŃŃ‚очна Европа'),
(101069, 83278, 'en', 'name', 'Faruk Sarac Vocational School of Design'),
(101070, 83278, 'tr', 'name', 'Faruk Saraç Tasarım Meslek Yüksekokulu'),
(101071, 83279, 'no_lang_code', 'name', 'Kinokuniya'),
(101072, 83279, 'ja', 'name', 'ē“€ä¼Šåœ‹å±‹ę›øåŗ—'),
(101073, 83280, 'en', 'name', 'Earth Science Information Partners'),
(101074, 83281, 'en', 'name', 'Cleen Foundation'),
(101075, 83282, 'en', 'name', 'Center for Health and Gender Equity'),
(101076, 83283, 'en', 'name', 'Giles W. and Elise G. Mead Foundation'),
(101077, 83284, 'en', 'name', 'Iranian Legal Medicine Organization'),
(101078, 83284, 'fa', 'name', 'سازمان پزؓکی Ł‚Ų§Ł†ŁˆŁ†ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(101079, 83285, 'pt', 'name', 'Associação Viver a Ciência'),
(101080, 83286, 'no_lang_code', 'name', 'Overseas Shipholding Group (United States)'),
(101081, 83287, 'en', 'name', 'Leibniz Institute for the History and Culture of Eastern Europe (GWZO)'),
(101082, 83287, 'de', 'name', 'Leibniz-Institut für Geschichte und Kultur des östlichen Europa (GWZO)'),
(101083, 83288, 'en', 'name', 'Rudd Foundation'),
(101084, 83289, 'no_lang_code', 'name', 'BillerudKorsnƤs (Sweden)'),
(101085, 83290, 'en', 'name', 'Breast Cancer Research Trust'),
(101086, 83291, 'sv', 'name', 'Torsten Sƶderbergs Stiftelse'),
(101087, 83292, 'en', 'name', 'Grain Research Centre'),
(101088, 83293, 'fr', 'name', 'Agence Nationale de RƩglementation des TƩlƩcommunications'),
(101089, 83293, 'en', 'name', 'National Telecommunications Regulatory Agency'),
(101090, 83293, 'ar', 'name', 'Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„ŲŖŁ‚Ł†ŁŠŁ† Ų§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ'),
(101091, 83294, 'it', 'name', 'Fondazione Tercas'),
(101092, 83295, 'en', 'name', 'African Mathematics Millennium Science Initiative'),
(101093, 83296, 'de', 'name', 'Dr. Rolf M. Schwiete Stiftung'),
(101094, 83297, 'en', 'name', 'Oregon Health and Science University Hospital'),
(101095, 83298, 'en', 'name', 'Bay Area Community Foundation'),
(101096, 83299, 'en', 'name', 'Philbrook Museum of Art'),
(101097, 83300, 'en', 'name', 'New Zealand Association of Counsellors'),
(101098, 83300, 'mi', 'name', 'Te Ropu Kaiwhiriwhiri o Aotearoa)'),
(101099, 83301, 'it', 'name', 'Conservatorio di Musica Bruno Maderna'),
(101100, 83302, 'en', 'name', 'Umma University'),
(101101, 83303, 'en', 'name', 'Archives and Records Association'),
(101102, 83304, 'no_lang_code', 'name', 'Isles'),
(101103, 83305, 'no_lang_code', 'name', 'Quanta Computer (Taiwan)'),
(101104, 83305, 'zh', 'name', '廣達電腦'),
(101105, 83306, 'en', 'name', 'National Centre for the Performing Arts'),
(101106, 83306, 'zh', 'name', '国家大剧院'),
(101107, 83307, 'en', 'name', 'Islamic Azad University of Falavarjan'),
(101108, 83307, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ ŁŁ„Ų§ŁˆŲ±Ų¬Ų§Ł†'),
(101109, 83308, 'en', 'name', 'The Kubert School'),
(101110, 83309, 'en', 'name', 'Genesis Research Institute'),
(101111, 83310, 'en', 'name', 'Wayne and Gladys Valley Foundation'),
(101112, 83311, 'fr', 'name', 'Bombardier Produits Recreatifs'),
(101113, 83311, 'no_lang_code', 'name', 'Bombardier Recreational Products (Canada)'),
(101114, 83312, 'en', 'name', 'San Antonio Area Foundation'),
(101115, 83313, 'en', 'name', 'Bay Area Black United Fund'),
(101116, 83314, 'en', 'name', 'The Myositis Association'),
(101117, 83315, 'en', 'name', 'Charcot-Marie-Tooth Association'),
(101118, 83316, 'en', 'name', 'Kohno Clinical Medicine Research Institute'),
(101119, 83316, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę²³é‡Žč‡Øē‰€åŒ»å­¦ē ”ē©¶ę‰€'),
(101120, 83317, 'en', 'name', 'American Society for Mass Spectrometry'),
(101121, 83318, 'en', 'name', 'Finnish Work Environment Fund'),
(101122, 83319, 'en', 'name', 'Findlay Hancock County Public Library'),
(101123, 83320, 'en', 'name', 'Ontario Historical Society'),
(101124, 83321, 'en', 'name', 'Japan Association for the Advancement of Medical Equipment'),
(101125, 83321, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ»ē™‚ę©Ÿå™Øć‚»ćƒ³ć‚æćƒ¼'),
(101126, 83322, 'en', 'name', 'Larry L. Hillblom Foundation'),
(101127, 83323, 'en', 'name', 'Mend a Heart Foundation'),
(101128, 83324, 'en', 'name', 'Nippon Foundation'),
(101129, 83324, 'ja', 'name', 'ę—„ęœ¬č²”å›£'),
(101130, 83325, 'es', 'name', 'Corporacion Biotec'),
(101131, 83326, 'en', 'name', 'Cancer Research Society'),
(101132, 83326, 'fr', 'name', 'SociƩtƩ de Recherche sur le Cancer'),
(101133, 83327, 'en', 'name', 'Dove Cottage & the Wordsworth Museum'),
(101134, 83328, 'en', 'name', 'Indo-US Science and Technology Forum'),
(101135, 83329, 'en', 'name', 'Equal Measure'),
(101136, 83330, 'no_lang_code', 'name', 'Graymont (Canada)'),
(101137, 83331, 'en', 'name', 'FH Foundation'),
(101138, 83332, 'es', 'name', 'Escuela PolitƩcnica Nacional'),
(101139, 83332, 'en', 'name', 'National Polytechnic School'),
(101140, 83333, 'en', 'name', 'Social Change and Development'),
(101141, 83334, 'en', 'name', 'Illinois Coalition Against Sexual Assault'),
(101142, 83335, 'en', 'name', 'United African University of Tanzania'),
(101143, 83336, 'en', 'name', 'Latin American and Caribbean Consortium of Engineering Institutions'),
(101144, 83337, 'no_lang_code', 'name', 'ZBC Multicare (Netherlands)'),
(101145, 83338, 'en', 'name', 'Joe W. and Dorothy Dorsett Brown Foundation'),
(101146, 83339, 'en', 'name', 'Qom University of Technology'),
(101147, 83340, 'en', 'name', 'China Primary Health Care Foundation'),
(101148, 83340, 'zh', 'name', 'äø­å›½åˆēŗ§å«ē”Ÿäæå„åŸŗé‡‘ä¼š'),
(101149, 83341, 'es', 'name', 'Universidad Metropolitana Castro Carazo'),
(101150, 83342, 'ro', 'name', 'Institutului National de Metrologie'),
(101151, 83342, 'en', 'name', 'National Institute of Metrology'),
(101152, 83343, 'nl', 'name', 'Stichting De Weijerhorst'),
(101153, 83344, 'en', 'name', 'Friesland College'),
(101154, 83345, 'en', 'name', 'London Borough of Camden'),
(101155, 83346, 'en', 'name', 'Sardar Swaran Singh National Institute of Bio-Energy'),
(101156, 83347, 'en', 'name', 'Max Planck Institute for Mathematics in the Sciences'),
(101157, 83347, 'de', 'name', 'Max-Planck-Institut für Mathematik in den Naturwissenschaften'),
(101158, 83348, 'fr', 'name', 'Action LIONS Vaincre le Cancer'),
(101159, 83349, 'en', 'name', 'Global Foundation for Eating Disorders'),
(101160, 83350, 'en', 'name', 'Lean Enterprise Institute Polska'),
(101161, 83351, 'en', 'name', 'Rochester Museum and Science Center'),
(101162, 83352, 'en', 'name', 'Czechoslovak Documentation Centre'),
(101163, 83353, 'no_lang_code', 'name', 'Jawbone (United States)'),
(101164, 83354, 'en', 'name', 'Ernst Schering Foundation'),
(101165, 83354, 'de', 'name', 'Schering Stiftung'),
(101166, 83355, 'fr', 'name', 'Fondation De La RƩtine Du Canada'),
(101167, 83355, 'en', 'name', 'The Retina Foundation of Canada'),
(101168, 83356, 'en', 'name', 'Council of Professional Geropsychology Training Programs'),
(101169, 83357, 'en', 'name', 'Milagro Foundation'),
(101170, 83358, 'de', 'name', 'Head Genuit Stiftung'),
(101171, 83359, 'en', 'name', 'Anita Borg Institute'),
(101172, 83360, 'no_lang_code', 'name', 'Smart Information Flow Technologies (United States)'),
(101173, 83361, 'en', 'name', 'Institute of Molecular Sciences and Bioinformatics'),
(101174, 83362, 'en', 'name', 'Canadian Institute of Steel Construction'),
(101175, 83363, 'en', 'name', 'The Dodd-Walls Centre for Photonic and Quantum Technologies'),
(101176, 83364, 'en', 'name', 'International Foundation for Science'),
(101177, 83365, 'no_lang_code', 'name', 'Lincoln Agritech (New Zealand)'),
(101178, 83366, 'en', 'name', 'University of America'),
(101179, 83367, 'no_lang_code', 'name', 'Algaecytes (United Kingdom)'),
(101180, 83368, 'no_lang_code', 'name', 'Taawon'),
(101181, 83369, 'en', 'name', 'Montessori Education Center of the Rockies'),
(101182, 83370, 'de', 'name', 'Deutsche Telekom Stiftung'),
(101183, 83371, 'en', 'name', 'Midwest University'),
(101184, 83372, 'en', 'name', 'Genesis Oncology Trust'),
(101185, 83373, 'en', 'name', 'Nova Scotia Health Research Foundation'),
(101186, 83374, 'en', 'name', 'Ashland Bellefonte Cancer Center'),
(101187, 83375, 'en', 'name', 'Institute of Mathematics and its Applications'),
(101188, 83376, 'no_lang_code', 'name', 'Montimage (France)'),
(101189, 83377, 'no_lang_code', 'name', 'Muons (United States)'),
(101190, 83378, 'en', 'name', 'The Historical Society of Israel'),
(101191, 83378, 'he', 'name', 'החברה ×”×”×™×”×˜×•×Ø×™×Ŗ ×”×™×©×Ø××œ×™×Ŗ'),
(101192, 83379, 'da', 'name', 'Colitis-Crohn Foreningen'),
(101193, 83380, 'no_lang_code', 'name', 'WilliamsRDM (United States)'),
(101194, 83381, 'no_lang_code', 'name', 'HeiTech Services (United States)'),
(101195, 83382, 'en', 'name', 'Breast Cancer Alliance'),
(101196, 83383, 'no_lang_code', 'name', 'Alberta Newsprint Company (Canada)'),
(101197, 83384, 'en', 'name', 'Lipedema Foundation'),
(101198, 83385, 'en', 'name', 'The Japan Society of Mechanical Engineers'),
(101199, 83385, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę©Ÿę¢°å­¦ä¼š'),
(101200, 83386, 'en', 'name', 'New Mongol Institute of Technology'),
(101201, 83386, 'mn', 'name', 'ŠØŠøŠ½Ń Монгол Технологийн Š“ŃŃŠ“ ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(101202, 83387, 'no_lang_code', 'name', 'SpheriTech (United Kingdom)'),
(101203, 83388, 'en', 'name', 'Children Living with Inherited Metabolic Diseases'),
(101204, 83389, 'en', 'name', 'Canadian Poultry Research Council'),
(101205, 83389, 'fr', 'name', 'Le Conseil de recherches avicoles du Canada'),
(101206, 83390, 'fr', 'name', 'Bipea'),
(101207, 83391, 'en', 'name', 'TechnoServe'),
(101208, 83392, 'en', 'name', 'Spalding Trust'),
(101209, 83393, 'no_lang_code', 'name', 'Tongfu Microelectronics (China)'),
(101210, 83394, 'en', 'name', 'Swisselectric'),
(101211, 83395, 'en', 'name', 'Lovely Professional University'),
(101212, 83395, 'pa', 'name', 'ਲਵਲੀ ąØŖą©ąØ°ą©‹ąØ«ą©ˆąØøąØ¼ąØØąØ² ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(101213, 83396, 'en', 'name', 'Tokyo Environmental Public Service Corporation'),
(101214, 83396, 'ja', 'name', 'ę±äŗ¬éƒ½ē’°å¢ƒå…¬ē¤¾'),
(101215, 83397, 'en', 'name', 'Cocoa Research Institute of Nigeria'),
(101216, 83398, 'en', 'name', 'Independent Colleges and Universities of Florida'),
(101217, 83399, 'en', 'name', 'Thrasher Research Fund'),
(101218, 83400, 'en', 'name', 'Cass Foundation'),
(101219, 83401, 'en', 'name', 'The Battlefields Trust'),
(101220, 83402, 'de', 'name', 'Austria Institut für Europa- und Sicherheitspolitik'),
(101221, 83402, 'en', 'name', 'Austrian Institute for European and Security Policy'),
(101222, 83403, 'no_lang_code', 'name', 'IEE (Luxembourg)'),
(101223, 83404, 'en', 'name', 'International Educational Foundation'),
(101224, 83405, 'en', 'name', 'Korean Association of Shipping and Logistics'),
(101225, 83405, 'ko', 'name', 'ķ•œźµ­ķ•“ģš“ė¬¼ė„˜ķ•™ķšŒ'),
(101226, 83406, 'fr', 'name', 'La Fondation Ć  la Memoire de Lars Hierta'),
(101227, 83406, 'en', 'name', 'Lars Hierta Memorial Foundation'),
(101228, 83406, 'de', 'name', 'Lars-Hierta-GedƤchtnis-Stiftung'),
(101229, 83407, 'en', 'name', 'Bennett College'),
(101230, 83408, 'en', 'name', 'Foundation for Alcohol Research and Education'),
(101231, 83409, 'no_lang_code', 'name', 'TE Connectivity (Switzerland)'),
(101232, 83410, 'en', 'name', 'Grand Slam Club/Ovis'),
(101233, 83411, 'en', 'name', 'Center For Advanced Meta-Materials'),
(101234, 83412, 'en', 'name', 'Uganda Technology and Management University'),
(101235, 83413, 'en', 'name', 'Pueblo of Laguna'),
(101236, 83414, 'en', 'name', 'American College of Veterinary Pathologists'),
(101237, 83415, 'no_lang_code', 'name', 'CMC Microsystems (Canada)'),
(101238, 83416, 'fr', 'name', 'Observatoire astronomique de turin'),
(101239, 83416, 'it', 'name', 'Osservatorio Astrofisico di Torino'),
(101240, 83416, 'de', 'name', 'Osservatorio Astronomico di Torino'),
(101241, 83417, 'en', 'name', 'Foundation for Economic Education'),
(101242, 83417, 'fi', 'name', 'Liikesivistysrahasto'),
(101243, 83418, 'en', 'name', 'Educational Advancement Foundation'),
(101244, 83419, 'en', 'name', 'Hyogo Earthquake Memorial 21st Century Research Institute'),
(101245, 83419, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ć²ć‚‡ć†ć”éœ‡ē½čØ˜åæµ21äø–ē“€ē ”ē©¶ę©Ÿę§‹'),
(101246, 83420, 'no_lang_code', 'name', 'Unison (United Kingdom)'),
(101247, 83421, 'en', 'name', 'Huntington Hospital'),
(101248, 83422, 'en', 'name', 'Directorate of Medicinal and Aromatic Plants Research'),
(101249, 83422, 'gu', 'name', 'ઔષધીય ąŖ”ąŖæąŖ°ą«‡ąŖ•ą«ąŖŸą«‹ąŖ°ą«‡ąŖŸ અને ąŖ–ą«ąŖ¶ą«ąŖ¬ą«‹ąŖ¦ąŖ¾ąŖ° છોઔ ąŖøąŖ‚ąŖ¶ą«‹ąŖ§ąŖØ'),
(101250, 83423, 'en', 'name', 'National Institute of Technology Akita College'),
(101251, 83423, 'ja', 'name', 'ē§‹ē”°å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(101252, 83424, 'en', 'name', 'Chang Gung University of Science and Technology'),
(101253, 83425, 'no_lang_code', 'name', 'Esgee Technologies (United States)'),
(101254, 83426, 'en', 'name', 'Scranton Area Foundation'),
(101255, 83427, 'en', 'name', 'Helicopter Association International'),
(101256, 83428, 'no_lang_code', 'name', 'ASKA Pharmaceutical (Japan)'),
(101257, 83428, 'ja', 'name', 'ć‚ć™ć‹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(101258, 83429, 'en', 'name', 'Judith and Jean Pape Adams Charitable Foundation'),
(101259, 83430, 'en', 'name', 'Foundation for Circulatory Health'),
(101260, 83431, 'en', 'name', 'German Rectors'' Conference'),
(101261, 83431, 'de', 'name', 'Hochschulrektorenkonferenz'),
(101262, 83432, 'en', 'name', 'The SUDD Institute'),
(101263, 83433, 'en', 'name', 'California Health Care Safety Net Institute'),
(101264, 83434, 'en', 'name', 'IBAIS University'),
(101265, 83434, 'bn', 'name', 'ইবাইস ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(101266, 83435, 'de', 'name', 'Hochschule für öffentliche Verwaltung Rheinland-Pfalz'),
(101267, 83436, 'en', 'name', 'Canadian Aeronautics and Space Institute'),
(101268, 83437, 'en', 'name', 'The New Press'),
(101269, 83438, 'en', 'name', 'Society for Cardiothoracic Surgery in Great Britain & Ireland'),
(101270, 83439, 'it', 'name', 'Fondazione Progetto Ematologia'),
(101271, 83440, 'en', 'name', 'Hilda and Preston Davis Foundation'),
(101272, 83441, 'en', 'name', 'New Jersey Space Grant Consortium'),
(101273, 83442, 'en', 'name', 'Consortium for Plant Biotechnology Research'),
(101274, 83443, 'en', 'name', 'National GEM Consortium'),
(101275, 83444, 'no_lang_code', 'name', 'UPM (Finland)'),
(101276, 83445, 'no_lang_code', 'name', 'Dignify Therapeutics (United States)'),
(101277, 83446, 'en', 'name', 'Pacific Eye Associates'),
(101278, 83447, 'en', 'name', 'Grand Charleroi Hospital'),
(101279, 83447, 'nl', 'name', 'Grand HƓpital de Charleroi'),
(101280, 83448, 'en', 'name', 'Wuhan No.1 Hospital'),
(101281, 83448, 'zh', 'name', 'ę­¦ę±‰åø‚ē¬¬äø€åŒ»é™¢'),
(101282, 83449, 'en', 'name', 'National Institute of Science and Technology Policy'),
(101283, 83449, 'ja', 'name', 'ē§‘å­¦ęŠ€č”“ćƒ»å­¦č”“ę”æē­–ē ”ē©¶ę‰€'),
(101284, 83450, 'no_lang_code', 'name', 'CellCentric (United Kingdom)'),
(101285, 83451, 'en', 'name', 'British Mass Spectrometry Society'),
(101286, 83452, 'it', 'name', 'Istituto Italiano di Telemedicina'),
(101287, 83452, 'en', 'name', 'Italian Institute of Telemedicine'),
(101288, 83453, 'no_lang_code', 'name', 'Domainex (United Kingdom)'),
(101289, 83454, 'en', 'name', 'International Renewable Energy Agency'),
(101290, 83455, 'en', 'name', 'United States Bone and Joint Initiative'),
(101291, 83456, 'en', 'name', 'Kirov State Medical Academy'),
(101292, 83456, 'ru', 'name', 'ŠšŠøŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101293, 83457, 'en', 'name', 'Infection Prevention Society'),
(101294, 83458, 'en', 'name', 'Tokyo University of Agriculture and Technology'),
(101295, 83458, 'ja', 'name', 'ę±äŗ¬č¾²å·„å¤§å­¦'),
(101296, 83459, 'en', 'name', 'Heineman Foundation'),
(101297, 83460, 'en', 'name', 'Lung Cancer Online Foundation'),
(101298, 83461, 'en', 'name', 'Handel Institute'),
(101299, 83462, 'en', 'name', 'Freshwater Future'),
(101300, 83463, 'en', 'name', 'Collurania Teramo Observatory'),
(101301, 83463, 'it', 'name', 'Osservatorio Astronomico di Collurania "Vincenzo Cerulli"'),
(101302, 83464, 'en', 'name', 'Huntsville Bible College'),
(101303, 83465, 'nl', 'name', 'Janivo Stichting'),
(101304, 83466, 'no_lang_code', 'name', 'SS&C Technologies (United States)'),
(101305, 83467, 'en', 'name', 'Graduate Institute for Entrepreneurial Studies'),
(101306, 83467, 'ja', 'name', '事愭創造大学院大学'),
(101307, 83468, 'en', 'name', 'Museum of Chinese in America'),
(101308, 83469, 'en', 'name', '1675 Foundation'),
(101309, 83470, 'no_lang_code', 'name', 'AeroDynamic Solutions (United States)'),
(101310, 83471, 'en', 'name', 'Caplan Foundation for Early Childhood'),
(101311, 83472, 'en', 'name', 'National Institute for Theoretical Physics'),
(101312, 83473, 'no_lang_code', 'name', 'Bulgarian Biodiversity Foundation'),
(101313, 83473, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š¤Š¾Š½Š“Š°Ń†ŠøŃ Биоразнообразие'),
(101314, 83474, 'en', 'name', 'American College of Healthcare Architects'),
(101315, 83475, 'en', 'name', 'Connecticut Breast Health Initiative'),
(101316, 83476, 'es', 'name', 'Fundación Banco Santander'),
(101317, 83477, 'en', 'name', 'Firland Foundation'),
(101318, 83478, 'en', 'name', 'American Hearing Research Foundation'),
(101319, 83479, 'no_lang_code', 'name', 'ČeskÔ Zbrojovka (Czechia)'),
(101320, 83480, 'en', 'name', 'Vermont Community Foundation'),
(101321, 83481, 'en', 'name', 'International Peace Maternity & Child Health Hospital'),
(101322, 83482, 'en', 'name', 'Tree Research and Education Endowment Fund'),
(101323, 83483, 'de', 'name', 'Velux Stiftung'),
(101324, 83484, 'en', 'name', 'African Society for Laboratory Medicine'),
(101325, 83485, 'en', 'name', 'Russian Quantum Center'),
(101326, 83485, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ центр квантовой оптики Šø квантовых технологий'),
(101327, 83486, 'en', 'name', 'Manchester and Lancashire Family History Society'),
(101328, 83487, 'no_lang_code', 'name', 'Advanced Cell Diagnostics (United States)'),
(101329, 83488, 'en', 'name', 'PATH To Reading'),
(101330, 83489, 'en', 'name', 'Neurosurgery Research & Education Foundation'),
(101331, 83490, 'no_lang_code', 'name', 'OvaScience (United States)'),
(101332, 83491, 'en', 'name', 'Marine Corps University'),
(101333, 83492, 'no_lang_code', 'name', 'Dominica State College'),
(101334, 83493, 'es', 'name', 'Universidad Tecnológica La Salle'),
(101335, 83494, 'en', 'name', 'Hawaii Community Foundation'),
(101336, 83495, 'en', 'name', 'Tsimbazaza Zoo'),
(101337, 83496, 'fi', 'name', 'Turun KauppaopetussƤƤtiƶ'),
(101338, 83497, 'en', 'name', 'EBZ Business School'),
(101339, 83498, 'nl', 'name', 'Stichting Coolsingel'),
(101340, 83499, 'en', 'name', 'Hospital San Juan de Alicante'),
(101341, 83499, 'ca', 'name', 'Hospital Universitari Sant Joan D''Alacant'),
(101342, 83500, 'no_lang_code', 'name', 'Adelphi Technology (United States)'),
(101343, 83501, 'no_lang_code', 'name', 'Avid Bioservices (United States)'),
(101344, 83502, 'en', 'name', 'Peacock Foundation'),
(101345, 83503, 'en', 'name', 'Korea Environmental Industry and Technology Institute'),
(101346, 83504, 'no_lang_code', 'name', 'Yoshino Kogyosho (Japan)'),
(101347, 83505, 'en', 'name', 'The Taylor Matthews Foundation'),
(101348, 83506, 'en', 'name', 'King Center'),
(101349, 83507, 'no', 'name', 'Larvik kommune'),
(101350, 83508, 'en', 'name', 'Iredell Statesville Schools'),
(101351, 83509, 'en', 'name', 'The Second Affiliated Hospital of Bengbu Medical College'),
(101352, 83509, 'zh', 'name', 'čšŒåŸ åŒ»å­¦é™¢ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(101353, 83510, 'en', 'name', 'Polytechnic University of Queretaro'),
(101354, 83510, 'es', 'name', 'Universidad PolitƩcnica de QuerƩtaro'),
(101355, 83511, 'it', 'name', 'Accademia di Belle Arti di Catanzaro'),
(101356, 83512, 'sv', 'name', 'Demensfƶrbundet'),
(101357, 83513, 'no_lang_code', 'name', 'Satavahana University'),
(101358, 83514, 'en', 'name', 'Alberta Crop Industry Development Fund'),
(101359, 83515, 'en', 'name', 'Odessa State Academy of Civil Engineering and Architecture'),
(101360, 83515, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° та Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(101361, 83516, 'nl', 'name', 'Stichting ParkinsonFonds'),
(101362, 83517, 'en', 'name', 'Hill Stead Museum'),
(101363, 83518, 'en', 'name', 'Trinity House'),
(101364, 83519, 'de', 'name', 'Deutsche Kniegesellschaft e.V.'),
(101365, 83519, 'en', 'name', 'German Knee Society'),
(101366, 83520, 'en', 'name', 'Toronto Arts Council'),
(101367, 83521, 'en', 'name', 'Skyrail Rainforest Foundation'),
(101368, 83522, 'en', 'name', 'Black AIDS Institute'),
(101369, 83523, 'en', 'name', 'Nur International University'),
(101370, 83524, 'en', 'name', 'Institute for Bee Research'),
(101371, 83524, 'de', 'name', 'Länderinstitut für Bienenkunde'),
(101372, 83525, 'en', 'name', 'National Center for Health Research'),
(101373, 83526, 'no_lang_code', 'name', 'Forest Protection Limited (Canada)'),
(101374, 83527, 'fr', 'name', 'Centre Hospitalier Universitaire de Tivoli'),
(101375, 83528, 'en', 'name', 'The Institute of Moralogy'),
(101376, 83528, 'ja', 'name', 'ćƒ¢ćƒ©ćƒ­ć‚øćƒ¼ē ”ē©¶ę‰€'),
(101377, 83529, 'no_lang_code', 'name', 'ArboraNano'),
(101378, 83530, 'no_lang_code', 'name', 'Carmot Therapeutics (United States)'),
(101379, 83531, 'en', 'name', 'Blanton Peale Institute and Counseling Center'),
(101380, 83532, 'en', 'name', 'Cured Foundation'),
(101381, 83533, 'en', 'name', 'American Glaucoma Society'),
(101382, 83534, 'en', 'name', 'Native Arts and Cultures Foundation'),
(101383, 83535, 'no_lang_code', 'name', 'BG Consulting Engineers (Switzerland)'),
(101384, 83535, 'de', 'name', 'BG Ingenieure und Berater'),
(101385, 83535, 'fr', 'name', 'BG IngƩnieurs Conseils'),
(101386, 83536, 'no_lang_code', 'name', 'Edimer Pharmaceuticals (United States)'),
(101387, 83537, 'en', 'name', 'Association of Ontario Midwives'),
(101388, 83538, 'en', 'name', 'Dundee Science Centre'),
(101389, 83539, 'en', 'name', 'Genesee Country Village and Museum'),
(101390, 83540, 'en', 'name', 'Cheju Halla General Hospital'),
(101391, 83540, 'ko', 'name', 'ģ œģ£¼ķ•œė¼ė³‘ģ›'),
(101392, 83541, 'en', 'name', 'Myanmar Maritime University'),
(101393, 83541, 'my', 'name', 'į€™į€¼į€”į€ŗį€™į€¬į€”į€­į€Æį€„į€ŗį€„į€¶į€›į€±į€€į€¼į€±į€¬į€„į€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(101394, 83542, 'es', 'name', 'Universidad de Granma'),
(101395, 83542, 'en', 'name', 'University of Granma'),
(101396, 83543, 'no_lang_code', 'name', 'Cameco (Germany)'),
(101397, 83544, 'no_lang_code', 'name', 'Advatech Pacific (United States)'),
(101398, 83545, 'en', 'name', 'Perth and Kinross Council'),
(101399, 83546, 'en', 'name', 'Jiangxi Science and Technology Normal University'),
(101400, 83546, 'zh', 'name', 'ę±Ÿč„æē§‘ęŠ€åøˆčŒƒå¤§å­¦'),
(101401, 83547, 'fr', 'name', 'Association Canadienne de GastroentƩrologie'),
(101402, 83547, 'en', 'name', 'Canadian Association of Gastroenterology'),
(101403, 83548, 'en', 'name', 'Harris and Eliza Kempner Fund'),
(101404, 83549, 'no_lang_code', 'name', 'Foster + Freeman (United Kingdom)'),
(101405, 83550, 'en', 'name', 'College of Tourism and Hotel Management'),
(101406, 83550, 'el', 'name', 'Κολλέγιο Ī¤ĪæĻ…ĻĪ¹ĻƒĪ¼ĪæĻ και Ī”Ī¹ĪæĪÆĪŗĪ·ĻƒĪ·Ļ‚ ĪžĪµĪ½ĪæĪ“ĪæĻ‡ĪµĪÆĻ‰Ī½'),
(101407, 83551, 'no_lang_code', 'name', 'LGL (Canada)'),
(101408, 83552, 'en', 'name', 'Center For Produce Safety'),
(101409, 83553, 'en', 'name', 'Japan Surgical Society'),
(101410, 83553, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å¤–ē§‘å­¦ä¼š'),
(101411, 83554, 'en', 'name', 'American Academy of Cosmetic Surgery'),
(101412, 83555, 'en', 'name', 'International Foundation for Sonography Education and Research'),
(101413, 83556, 'de', 'name', 'Reiner Lemoine Stiftung'),
(101414, 83557, 'no_lang_code', 'name', 'Electro Optical Systems (Germany)'),
(101415, 83558, 'pt', 'name', 'Sociedade Brasileira de Endoscopia Digestiva'),
(101416, 83559, 'en', 'name', 'Economic History Association'),
(101417, 83560, 'en', 'name', 'First Congregational Church'),
(101418, 83561, 'en', 'name', 'Work + Family Researchers Network'),
(101419, 83562, 'en', 'name', 'Buraydah Colleges'),
(101420, 83562, 'ar', 'name', 'بريدة ŁƒŁ„ŁŠŲ§ŲŖ'),
(101421, 83563, 'en', 'name', 'The Economic Research Institute for Northeast Asia'),
(101422, 83563, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē’°ę—„ęœ¬ęµ·ēµŒęøˆē ”ē©¶ę‰€'),
(101423, 83564, 'en', 'name', 'Children''s Hospital Association'),
(101424, 83565, 'no_lang_code', 'name', 'Stanimex (Poland)'),
(101425, 83566, 'es', 'name', 'Centro Universitario JosƩ Vasconcelos'),
(101426, 83567, 'en', 'name', 'Milford on Sea War Memorial Hospital'),
(101427, 83568, 'fr', 'name', 'Fondation de l''Avenir'),
(101428, 83569, 'en', 'name', 'Flax Council Of Canada'),
(101429, 83570, 'en', 'name', 'National Water Research Institute'),
(101430, 83571, 'sl', 'name', 'Ekonomska Å ola Novo Mesto'),
(101431, 83572, 'en', 'name', 'Otsuka Toshimi Scholarship Foundation'),
(101432, 83573, 'en', 'name', 'Southern African Centre for Infectious Disease Surveillance'),
(101433, 83574, 'no_lang_code', 'name', 'The Metropolitan Opera (United States)'),
(101434, 83575, 'en', 'name', 'RIKEN Center for Sustainable Resource Science'),
(101435, 83575, 'ja', 'name', 'ē’°å¢ƒč³‡ęŗē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(101436, 83576, 'en', 'name', 'Pediatric Dermatology Research Alliance'),
(101437, 83577, 'en', 'name', 'Barrett Hospital & HealthCare'),
(101438, 83578, 'en', 'name', 'MB Research Laboratories'),
(101439, 83579, 'en', 'name', 'Joe Niekro Foundation'),
(101440, 83580, 'no_lang_code', 'name', 'Crystal Technology and Industries (United States)'),
(101441, 83581, 'en', 'name', 'Donetsk National Medical University'),
(101442, 83581, 'ru', 'name', 'Донецкий Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. Š“Š¾Ń€ŃŒŠŗŠ¾Š³Š¾'),
(101443, 83581, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Максима Š“Š¾Ń€ŃŒŠŗŠ¾Š³Š¾'),
(101444, 83582, 'en', 'name', 'Richard and Susan Smith Family Foundation'),
(101445, 83583, 'it', 'name', 'Associazione Genitori Contro le Leucemie e Tumori Infantili'),
(101446, 83584, 'nl', 'name', 'Stichting MS Research'),
(101447, 83585, 'en', 'name', 'Washington and Jefferson College'),
(101448, 83586, 'en', 'name', 'Organization for Autism Research'),
(101449, 83587, 'nl', 'name', 'Mobiel 21'),
(101450, 83588, 'en', 'name', 'International OCD Foundation'),
(101451, 83589, 'en', 'name', 'Foundation for Anesthesia Education and Research'),
(101452, 83590, 'en', 'name', 'Rufford Foundation'),
(101453, 83591, 'en', 'name', 'The Arrhythmia Institute'),
(101454, 83592, 'en', 'name', 'Columbia Medical Practice'),
(101455, 83593, 'en', 'name', 'Japan Construction Information Center'),
(101456, 83593, 'ja', 'name', 'ę—„ęœ¬å»ŗčØ­ęƒ…å ±ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(101457, 83594, 'en', 'name', 'Sarcoma Foundation of America'),
(101458, 83595, 'no_lang_code', 'name', 'Wad Medani Ahlia University'),
(101459, 83595, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ود Ł…ŲÆŁ†ŁŠ Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(101460, 83596, 'no_lang_code', 'name', 'GRA (United States)'),
(101461, 83597, 'en', 'name', 'ARK Foundation'),
(101462, 83598, 'no_lang_code', 'name', 'Molecular Vista (United States)'),
(101463, 83599, 'no_lang_code', 'name', 'Karger Publishers (Switzerland)'),
(101464, 83600, 'en', 'name', 'Foundation for Baltic and East European Studies'),
(101465, 83601, 'en', 'name', 'Marcus and Amalia Wallenberg Foundation'),
(101466, 83602, 'no_lang_code', 'name', 'Audax Medical (United States)'),
(101467, 83603, 'no_lang_code', 'name', 'PharmaResearch Products (South Korea)'),
(101468, 83604, 'en', 'name', 'Finnish Coeliac Society'),
(101469, 83604, 'fi', 'name', 'Keliakialiitto'),
(101470, 83605, 'en', 'name', 'Alexander & Margaret Stewart Trust'),
(101471, 83606, 'nl', 'name', 'Nederlandse Cystic Fibrosis Stichting'),
(101472, 83607, 'en', 'name', 'Schmidt Ocean Institute'),
(101473, 83608, 'en', 'name', 'Rosemere Cancer Foundation'),
(101474, 83609, 'en', 'name', 'Islamic Azad University, Shahrood'),
(101475, 83609, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“Ų§Ł‡Ų±ŁˆŲÆ'),
(101476, 83610, 'en', 'name', 'New York State Economic Development Council'),
(101477, 83611, 'sv', 'name', 'Riksfƶrbundet Cystisk Fibros'),
(101478, 83612, 'de', 'name', 'Katholischer Akademischer AuslƤnder-Dienst'),
(101479, 83613, 'en', 'name', 'Japan Heart Foundation'),
(101480, 83613, 'ja', 'name', 'ę—„ęœ¬åæƒč‡“č²”å›£'),
(101481, 83614, 'en', 'name', 'SuperSTEM'),
(101482, 83615, 'en', 'name', 'Golfers Against Cancer'),
(101483, 83616, 'en', 'name', 'Animal Cancer Foundation'),
(101484, 83617, 'en', 'name', 'American Health Quality Association'),
(101485, 83618, 'en', 'name', 'International Fine Particle Research Institute'),
(101486, 83619, 'en', 'name', 'The Fertilizer Institute'),
(101487, 83620, 'en', 'name', 'Islamic Azad University, Bojnourd Branch'),
(101488, 83620, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲØŲ¬Ł†ŁˆŲ±ŲÆ'),
(101489, 83621, 'en', 'name', 'Austrian Agency for International Cooperation in Education and Research'),
(101490, 83621, 'de', 'name', 'Ɩsterreichische Austauschdienst GmbH'),
(101491, 83622, 'en', 'name', 'European Academy of Neurology'),
(101492, 83623, 'en', 'name', 'Dr. Y.S.R Horticultural University'),
(101493, 83623, 'te', 'name', 'ą°†ą°‚ą°§ą±ą°°ą°Ŗą±ą°°ą°¦ą±‡ą°¶ą± ą°‰ą°¦ą±ą°Æą°¾ą°Øą°µą°Ø ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(101494, 83624, 'en', 'name', 'Moorfields Eye Charity'),
(101495, 83625, 'en', 'name', 'Les Turner ALS Foundation'),
(101496, 83626, 'no_lang_code', 'name', 'Agro-Kanesho (Japan)'),
(101497, 83627, 'es', 'name', 'Comisión México-Estados Unidos para el Intercambio Educativo y Cultural'),
(101498, 83628, 'en', 'name', 'American Association for the History of Medicine'),
(101499, 83629, 'no_lang_code', 'name', 'Aurigene Discovery Technologies (India)'),
(101500, 83630, 'en', 'name', 'Gordon and Betty Moore Foundation'),
(101501, 83631, 'en', 'name', 'Christian Medical Association of India'),
(101502, 83632, 'en', 'name', 'Institute on Membrane Technology'),
(101503, 83632, 'it', 'name', 'Istituto per la Tecnologia delle Membrane'),
(101504, 83633, 'no_lang_code', 'name', 'ROHM'),
(101505, 83633, 'ja', 'name', 'ćƒ­ćƒ¼ćƒ ę Ŗå¼ä¼šē¤¾'),
(101506, 83634, 'en', 'name', 'Marine Alliance for Science and Technology for Scotland'),
(101507, 83635, 'en', 'name', 'Borlaug Institute for South Asia'),
(101508, 83636, 'en', 'name', 'National Niemann-Pick Disease Foundation'),
(101509, 83637, 'no_lang_code', 'name', 'Scientific Methods (United States)'),
(101510, 83638, 'en', 'name', 'Africa Health Research Institute'),
(101511, 83639, 'no_lang_code', 'name', 'Keeling & Walker (United Kingdom)'),
(101512, 83640, 'pt', 'name', 'University Alto Vale do Rio do Peixe'),
(101513, 83641, 'no', 'name', 'Vestfold fylkeskommune'),
(101514, 83642, 'en', 'name', 'Maurice and Phyllis Paykel Trust'),
(101515, 83643, 'en', 'name', 'Canadian Sphagnum Peat Moss Association'),
(101516, 83644, 'en', 'name', 'Shanghai Urban Construction Design and Research Institute (Group)'),
(101517, 83644, 'zh', 'name', 'äøŠęµ·åŸŽåø‚å»ŗč®¾č®¾č®”ē ”ē©¶é™¢'),
(101518, 83645, 'de', 'name', 'Diabeteszentrum Bad Lauterberg'),
(101519, 83646, 'en', 'name', 'Arc of the Piedmont'),
(101520, 83647, 'da', 'name', 'Bloddonorerne i Danmark'),
(101521, 83647, 'en', 'name', 'Danish Blood Donor Association'),
(101522, 83648, 'en', 'name', 'Chongqing Vocational Institute of Engineering'),
(101523, 83648, 'zh', 'name', 'é‡åŗ†å·„ēØ‹čŒäøšęŠ€ęœÆå­¦é™¢'),
(101524, 83649, 'en', 'name', 'Milton and Tamar Maltz Family Foundation'),
(101525, 83650, 'en', 'name', 'Islamic Azad University, UAE Branch'),
(101526, 83650, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ł…Ų§Ų±Ų§ŲŖ متحده'),
(101527, 83651, 'en', 'name', 'National Center for Genetic Engineering and Biotechnology'),
(101528, 83652, 'en', 'name', 'The Waterloo Foundation'),
(101529, 83653, 'no_lang_code', 'name', 'Papula-Nevinpat (Finland)'),
(101530, 83654, 'en', 'name', 'Al-Nisour University College'),
(101531, 83654, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł†Ų³ŁˆŲ± الجامعة'),
(101532, 83655, 'no_lang_code', 'name', 'TISICS (United Kingdom)'),
(101533, 83656, 'en', 'name', 'Foshan Hospital of TCM'),
(101534, 83656, 'zh', 'name', 'ä½›å±±åø‚äø­åŒ»é™¢'),
(101535, 83657, 'en', 'name', 'New Jersey Health Foundation'),
(101536, 83658, 'no_lang_code', 'name', 'Novarex (South Korea)'),
(101537, 83659, 'en', 'name', 'Covenant Hospice'),
(101538, 83660, 'en', 'name', 'Nilamber Pitamber University'),
(101539, 83660, 'hi', 'name', 'ą¤Øą„€ą¤²ą¤¾ą¤®ą„ą¤¬ą¤° ą¤Ŗą„€ą¤¤ą¤¾ą¤®ą„ą¤¬ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(101540, 83661, 'en', 'name', 'Akrofi-Christaller Institute of Theology, Mission and Culture'),
(101541, 83662, 'no_lang_code', 'name', 'Endeavor Global (United States)'),
(101542, 83663, 'en', 'name', 'Lumbini Buddhist University'),
(101543, 83663, 'ne', 'name', 'ą¤²ą„ą¤®ą„ą¤¬ą¤æą¤Øą„€ ą¤¬ą„Œą¤¦ą„ą¤§ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(101544, 83664, 'en', 'name', 'Anusandhan Trust'),
(101545, 83665, 'no_lang_code', 'name', 'Vascular Biogenics (Israel)'),
(101546, 83666, 'en', 'name', 'Japan Association for Diabetes Education and Care'),
(101547, 83666, 'ja', 'name', 'ę—„ęœ¬ē³–å°æē—…å”ä¼š'),
(101548, 83667, 'en', 'name', 'Navrongo Health Research Centre'),
(101549, 83668, 'en', 'name', 'Humane Research Trust'),
(101550, 83669, 'en', 'name', 'Walter and Duncan Gordon Foundation'),
(101551, 83670, 'en', 'name', 'Williams Syndrome Foundation'),
(101552, 83671, 'de', 'name', 'Institut für Psychologische Psychotherapie'),
(101553, 83672, 'en', 'name', 'American Center for Mongolian Studies'),
(101554, 83673, 'fr', 'name', 'ENOES'),
(101555, 83674, 'en', 'name', 'Health and Disability Commissioner'),
(101556, 83675, 'en', 'name', 'Veterinary Research Institute'),
(101557, 83676, 'no_lang_code', 'name', 'Oakdene Hollins (United Kingdom)'),
(101558, 83677, 'en', 'name', 'Gen Foundation'),
(101559, 83678, 'en', 'name', 'Machine Intelligence Research Institute'),
(101560, 83679, 'no_lang_code', 'name', 'Metamagnetics (United States)'),
(101561, 83680, 'en', 'name', 'Global Fund for Women'),
(101562, 83681, 'no_lang_code', 'name', 'Risk & Policy Analysts (United Kingdom)'),
(101563, 83682, 'en', 'name', 'Russian-Tajik Slavonic University'),
(101564, 83682, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø ŃŠ»Š°Š²ŃŠ½ŠøŠø Тоҷикистон-Š ŃƒŃŠøŃ'),
(101565, 83682, 'ru', 'name', 'Российско-таГжикский ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101566, 83683, 'en', 'name', 'Vienna Center for Quantum Science and Technology'),
(101567, 83684, 'de', 'name', 'Helmholtz-Institut Ulm'),
(101568, 83684, 'en', 'name', 'Helmholtz-Institute Ulm'),
(101569, 83685, 'en', 'name', 'Barth Syndrome Foundation'),
(101570, 83686, 'en', 'name', 'Coordinating Council for Women in History'),
(101571, 83687, 'fr', 'name', 'CHU Ambroise ParƩ'),
(101572, 83688, 'en', 'name', 'GCE Lab School'),
(101573, 83689, 'en', 'name', 'Epic Care'),
(101574, 83690, 'no_lang_code', 'name', 'Forestia (Norway)'),
(101575, 83691, 'en', 'name', 'New Zealand Law Foundation'),
(101576, 83692, 'en', 'name', 'Cancer Genomics Centre'),
(101577, 83693, 'en', 'name', 'Max Planck Institute for Software Systems'),
(101578, 83693, 'de', 'name', 'Max-Planck-Institut für Softwaresysteme'),
(101579, 83694, 'en', 'name', 'Japan Institute of Country-ology and Engineering'),
(101580, 83694, 'ja', 'name', 'č²”ļ¼‰å›½åœŸęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(101581, 83695, 'pt', 'name', 'Faculdade Frassinetti do Recife'),
(101582, 83696, 'en', 'name', 'Korea Golf University'),
(101583, 83696, 'ko', 'name', 'ķ•œźµ­ź³Øķ”„ėŒ€ķ•™źµ'),
(101584, 83697, 'en', 'name', 'Kenya Industrial Research and Development Institute'),
(101585, 83698, 'en', 'name', 'Dalhousie Medical Research Foundation'),
(101586, 83699, 'en', 'name', 'Daimler and Benz Foundation'),
(101587, 83699, 'de', 'name', 'Daimler und Benz Stiftung'),
(101588, 83700, 'no_lang_code', 'name', 'Staples (United States)'),
(101589, 83701, 'en', 'name', 'Jay and Rose Phillips Family Foundation of Minnesota'),
(101590, 83702, 'en', 'name', 'National Children''s Advocacy Center'),
(101591, 83703, 'en', 'name', 'National PKU Alliance'),
(101592, 83704, 'no_lang_code', 'name', 'AfaSci (United States)'),
(101593, 83705, 'no_lang_code', 'name', 'Kimball International (United States)'),
(101594, 83706, 'es', 'name', 'Corporación Tecnológica de Andalucía'),
(101595, 83706, 'en', 'name', 'Technological Corporation of Andalusia'),
(101596, 83707, 'en', 'name', 'Chesapeake Bay Trust'),
(101597, 83708, 'de', 'name', 'Stiftung Mainzer Herz'),
(101598, 83709, 'no_lang_code', 'name', 'Sinochem Group (China)'),
(101599, 83709, 'zh', 'name', 'äø­å›½äø­åŒ–é›†å›¢å…¬åø'),
(101600, 83710, 'nl', 'name', 'Maag Lever Darm Stichting'),
(101601, 83711, 'no_lang_code', 'name', 'NCI Information Systems (United States)'),
(101602, 83712, 'de', 'name', 'Fachhochschule der Diakonie'),
(101603, 83713, 'en', 'name', 'EEG & Clinical Neuroscience Society'),
(101604, 83714, 'es', 'name', 'Fundación CajaCanarias'),
(101605, 83715, 'en', 'name', 'All-Russian Scientific Research Institute of Medicinal and Aromatic Plants'),
(101606, 83715, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ лекарственных Šø ароматических растений'),
(101607, 83716, 'en', 'name', 'Mathile Institute For The Advancement of Human Nutrition'),
(101608, 83717, 'no_lang_code', 'name', 'Sandpiper Technologies (United States)'),
(101609, 83718, 'en', 'name', 'Metastasis Research Society'),
(101610, 83719, 'no_lang_code', 'name', 'Cassava Sciences (United States)'),
(101611, 83720, 'en', 'name', 'Pediatric Cancer Foundation'),
(101612, 83721, 'en', 'name', 'MedTech CoRE'),
(101613, 83722, 'en', 'name', 'Bushehr University of Medical Sciences'),
(101614, 83722, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŁˆŲ“Ł‡Ų±'),
(101615, 83723, 'en', 'name', 'Society of Family Planning'),
(101616, 83724, 'no_lang_code', 'name', 'Roquette FrĆØres (France)'),
(101617, 83725, 'es', 'name', 'Universidad Panamericana'),
(101618, 83726, 'en', 'name', 'Kitakyushu Foundation for the Advancement of Industry, Science and Technology'),
(101619, 83726, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ä¹å·žē”£ę„­å­¦č”“ęŽØé€²ę©Ÿę§‹'),
(101620, 83727, 'en', 'name', 'British Society of Prosthodontics'),
(101621, 83728, 'en', 'name', 'Eastern and Southern African Management Institute'),
(101622, 83729, 'en', 'name', 'Tumori Foundation'),
(101623, 83730, 'fr', 'name', 'Centre Technologique des RƩsidus Industriels'),
(101624, 83731, 'en', 'name', 'European Society of Anaesthesiology'),
(101625, 83732, 'no_lang_code', 'name', 'Marine Acoustics (United States)'),
(101626, 83733, 'nl', 'name', 'Fonds NutsOhra'),
(101627, 83734, 'en', 'name', 'Easton & Otley College'),
(101628, 83735, 'en', 'name', 'Royal Commission for the Exhibition of 1851'),
(101629, 83736, 'en', 'name', 'Borchard Foundation Center on Law and Aging'),
(101630, 83737, 'en', 'name', 'Wichita Medical Research and Education Foundation'),
(101631, 83738, 'en', 'name', 'Jean Shanks Foundation'),
(101632, 83739, 'nl', 'name', 'Fonds Psychische Gezondheid'),
(101633, 83740, 'en', 'name', 'Open Source Hardware Association'),
(101634, 83741, 'no_lang_code', 'name', 'Guru Performance (United Kingdom)'),
(101635, 83742, 'it', 'name', 'Istituto Oncologico Romagnolo'),
(101636, 83743, 'en', 'name', 'Conrad N. Hilton Foundation'),
(101637, 83744, 'en', 'name', 'University of Medicine and Health Sciences'),
(101638, 83745, 'en', 'name', 'North Eastern Polytechnic Vocational College'),
(101639, 83746, 'en', 'name', 'Maine Technology Institute'),
(101640, 83747, 'en', 'name', 'Abingdon and Witney College'),
(101641, 83748, 'en', 'name', 'African American Museum in Philadelphia'),
(101642, 83749, 'en', 'name', 'Oracle Cancer Trust'),
(101643, 83750, 'en', 'name', 'Kosar University of Bojnord'),
(101644, 83750, 'fa', 'name', 'دانؓگاه کوثر ŲØŲ¬Ł†ŁˆŲ±ŲÆ'),
(101645, 83751, 'no_lang_code', 'name', 'Labrida (Norway)'),
(101646, 83752, 'no_lang_code', 'name', 'AT&S (Austria)'),
(101647, 83753, 'nl', 'name', 'Tekke Huizinga Fonds'),
(101648, 83754, 'no_lang_code', 'name', 'Investigen (United States)'),
(101649, 83755, 'en', 'name', 'Robert and Joan Dircks Foundation'),
(101650, 83756, 'en', 'name', 'Seattle Reproductive Medicine'),
(101651, 83757, 'en', 'name', 'Pingxiang University'),
(101652, 83757, 'zh', 'name', 'čä¹”å­¦é™¢'),
(101653, 83758, 'da', 'name', 'VUC Aarhus'),
(101654, 83759, 'no_lang_code', 'name', 'Psychogenics (United States)'),
(101655, 83760, 'en', 'name', 'CHAS Health'),
(101656, 83761, 'en', 'name', 'Universal Spa Training Academy'),
(101657, 83762, 'no_lang_code', 'name', 'CapeSym (United States)'),
(101658, 83763, 'en', 'name', 'The Catholic University of Malawi'),
(101659, 83764, 'no_lang_code', 'name', 'Mellanox Technologies (United States)'),
(101660, 83765, 'en', 'name', 'Pulmonary Vascular Research Institute'),
(101661, 83766, 'en', 'name', 'Amazon Conservation Association'),
(101662, 83767, 'en', 'name', 'The Wright Center for Graduate Medical Education'),
(101663, 83768, 'de', 'name', 'Berufskolleg Am Wasserturm'),
(101664, 83769, 'en', 'name', 'Directorate of Onion and Garlic Research'),
(101665, 83769, 'hi', 'name', 'ą¤Ŗą„ą¤Æą¤¾ą¤œ ą¤ą¤µą¤‚ ą¤²ą¤¹ą¤øą„ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(101666, 83770, 'en', 'name', 'Prize4Life'),
(101667, 83771, 'no_lang_code', 'name', 'Roi et Rajabhat University'),
(101668, 83771, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø£ą¹‰ąø­ąø¢ą¹€ąø­ą¹‡ąø”'),
(101669, 83772, 'en', 'name', 'Conjuring Arts Research Center'),
(101670, 83773, 'en', 'name', 'Osteology Foundation'),
(101671, 83774, 'no_lang_code', 'name', 'Nanowave Technologies (Canada)'),
(101672, 83775, 'en', 'name', 'Center for Humans and Nature'),
(101673, 83776, 'en', 'name', 'Erie Community Foundation'),
(101674, 83777, 'no_lang_code', 'name', 'Cleveland BioLabs (United States)'),
(101675, 83778, 'en', 'name', 'Foster Foundation'),
(101676, 83779, 'fr', 'name', 'FƩdƩration pour la Recherche sur le Cerveau'),
(101677, 83780, 'en', 'name', 'Georgia Association of Educational Leaders'),
(101678, 83781, 'en', 'name', 'Australia and Pacific Science Foundation'),
(101679, 83782, 'en', 'name', 'The Salvation Army'),
(101680, 83783, 'en', 'name', 'Petroleum Technology Research Centre'),
(101681, 83784, 'en', 'name', 'Paulo Foundation'),
(101682, 83784, 'fi', 'name', 'Paulon SƤƤtiƶ'),
(101683, 83785, 'en', 'name', 'Union Institute & University'),
(101684, 83786, 'en', 'name', 'Randolph County School System'),
(101685, 83787, 'en', 'name', 'Biocenter Finland'),
(101686, 83788, 'en', 'name', 'Brighton and Hove City Council'),
(101687, 83789, 'en', 'name', 'Association for Science Education'),
(101688, 83790, 'no_lang_code', 'name', 'Cascade Technologies (United States)'),
(101689, 83791, 'en', 'name', 'Ghana Education Trust Fund'),
(101690, 83792, 'en', 'name', 'Michael & Associates'),
(101691, 83793, 'en', 'name', 'Consortium of Universities for the Advancement of Hydrologic Science'),
(101692, 83794, 'no_lang_code', 'name', 'Nui (Norway)'),
(101693, 83795, 'en', 'name', 'Helen Macpherson Smith Trust'),
(101694, 83796, 'en', 'name', 'Knox County Health Department'),
(101695, 83797, 'en', 'name', 'MVJ Medical College and Research Hospital'),
(101696, 83798, 'en', 'name', 'Sturge Weber Foundation'),
(101697, 83799, 'no_lang_code', 'name', 'Mathematical Sciences Publishers (United States)'),
(101698, 83800, 'en', 'name', 'Arkansas Soybean Promotion Board'),
(101699, 83801, 'en', 'name', 'Center for Children'),
(101700, 83802, 'en', 'name', 'Pharmacy Research UK'),
(101701, 83803, 'en', 'name', 'Pueblo of Isleta'),
(101702, 83804, 'no_lang_code', 'name', 'Cambridge Polymer Group (United States)'),
(101703, 83805, 'en', 'name', 'Maritime Museum of San Diego'),
(101704, 83806, 'en', 'name', 'Dynasty Foundation'),
(101705, 83807, 'en', 'name', 'Citrus Research Board'),
(101706, 83808, 'en', 'name', 'Massachusetts Clean Energy Center'),
(101707, 83809, 'en', 'name', 'Saint Petersburg State Institute of Psychology and Social Work'),
(101708, 83809, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологии Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ работы'),
(101709, 83810, 'en', 'name', 'New Hampshire College & University Council'),
(101710, 83811, 'en', 'name', 'Investigative Reporters and Editors'),
(101711, 83812, 'en', 'name', 'History of Advertising Trust'),
(101712, 83813, 'pt', 'name', 'Hospital de CĆ¢ncer de Pernambuco'),
(101713, 83814, 'en', 'name', 'Council of Science Editors'),
(101714, 83815, 'en', 'name', 'Yashima Gakuen University'),
(101715, 83815, 'ja', 'name', 'å…«ę“²å­¦åœ’å¤§å­¦'),
(101716, 83816, 'de', 'name', 'Deutsche Multiple Sklerose Gesellschaft'),
(101717, 83817, 'en', 'name', 'Dr. Somervell Memorial CSI Medical College and Hospital');
INSERT INTO `ror_settings` VALUES
(101718, 83818, 'en', 'name', 'Allied Services'),
(101719, 83819, 'en', 'name', 'Federal Institute of Industrial Research Oshodi'),
(101720, 83820, 'de', 'name', 'Helmut Horten Stiftung'),
(101721, 83821, 'en', 'name', 'American Society of Head and Neck Radiology'),
(101722, 83822, 'no_lang_code', 'name', 'Gannett (United States)'),
(101723, 83823, 'no_lang_code', 'name', 'Ito Hospital'),
(101724, 83823, 'ja', 'name', 'ä¼Šč—¤ē—…é™¢'),
(101725, 83824, 'en', 'name', 'Academy of Korean Studies'),
(101726, 83824, 'ko', 'name', 'ķ•œźµ­ķ•™ģ¤‘ģ•™ģ—°źµ¬ģ›'),
(101727, 83825, 'en', 'name', 'Schwartz/Reisman Emergency Medicine Institute'),
(101728, 83826, 'no_lang_code', 'name', 'Hazen and Sawyer (United States)'),
(101729, 83827, 'en', 'name', 'Gulf of Mexico Alliance'),
(101730, 83828, 'en', 'name', 'National Institute of Health Sciences'),
(101731, 83829, 'en', 'name', 'MIB Agents'),
(101732, 83830, 'no_lang_code', 'name', 'ARVYS Proteins (United States)'),
(101733, 83831, 'no_lang_code', 'name', 'InfoUse'),
(101734, 83832, 'nl', 'name', 'Koninklijke Nederlandse Lawn Tennis Bond'),
(101735, 83832, 'en', 'name', 'Royal Dutch Lawn Tennis Federation'),
(101736, 83833, 'en', 'name', 'Shantou Central Hospital'),
(101737, 83833, 'zh', 'name', 'ę±•å¤“åø‚äø­åæƒåŒ»é™¢'),
(101738, 83834, 'de', 'name', 'Deutsche Nierenstiftung'),
(101739, 83835, 'no_lang_code', 'name', 'Organ Recovery Systems (United States)'),
(101740, 83836, 'no_lang_code', 'name', 'Recombinetics (United States)'),
(101741, 83837, 'en', 'name', 'SRI'),
(101742, 83838, 'es', 'name', 'Sanatorio Otamendi y Miroli'),
(101743, 83839, 'en', 'name', 'Raincoast Conservation Foundation'),
(101744, 83840, 'en', 'name', 'M J Murdock Charitable Trust'),
(101745, 83841, 'en', 'name', 'Indian Institute of Information Technology Una'),
(101746, 83841, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ऊना'),
(101747, 83842, 'en', 'name', 'South Metropolitan Technical and Further Education'),
(101748, 83843, 'en', 'name', 'Hunan University of Science and Engineering'),
(101749, 83843, 'zh', 'name', 'ę¹–å—ē§‘ęŠ€å­¦é™¢'),
(101750, 83844, 'no_lang_code', 'name', 'Venus Remedies (India)'),
(101751, 83845, 'en', 'name', 'Institute for European Environmental Policy'),
(101752, 83846, 'en', 'name', 'Western Grains Research Foundation'),
(101753, 83847, 'nl', 'name', 'Vereniging Samenwerkende Ouder- en Patiƫntenorganisaties'),
(101754, 83848, 'es', 'name', 'Universidad Privada Juan MejĆ­a Baca'),
(101755, 83849, 'no_lang_code', 'name', 'Stepan (United States)'),
(101756, 83850, 'en', 'name', 'College of Agriculture, Food and Rural Enterprise'),
(101757, 83851, 'en', 'name', 'Maranatha Christian University'),
(101758, 83851, 'id', 'name', 'Universitas Kristen Maranatha'),
(101759, 83852, 'en', 'name', 'Medicines Discovery Catapult'),
(101760, 83853, 'en', 'name', 'Estonian Research Council'),
(101761, 83854, 'en', 'name', 'Granulosa Cell Tumor of the Ovary Foundation'),
(101762, 83855, 'en', 'name', 'China Computer Federation'),
(101763, 83855, 'zh', 'name', 'äø­å›½č®”ē®—ęœŗå­¦ä¼š'),
(101764, 83856, 'no_lang_code', 'name', 'Synergy Farm Health (United Kingdom)'),
(101765, 83857, 'en', 'name', 'Yale New Haven Hospital'),
(101766, 83858, 'fr', 'name', 'Association canadienne d''Ʃconomique'),
(101767, 83858, 'en', 'name', 'Canadian Economics Association'),
(101768, 83859, 'no_lang_code', 'name', 'Analysys Mason (United Kingdom)'),
(101769, 83860, 'en', 'name', 'Access Alliance Multicultural Health and Community Services'),
(101770, 83861, 'en', 'name', 'Danish Astronautical Society'),
(101771, 83861, 'da', 'name', 'Dansk Selskab for Rumfartsforskning'),
(101772, 83862, 'en', 'name', 'Finnish Cardiac Society'),
(101773, 83862, 'fi', 'name', 'Suomen Kardiologinen Seura'),
(101774, 83863, 'en', 'name', 'Scioto Foundation'),
(101775, 83864, 'en', 'name', 'New Music USA'),
(101776, 83865, 'no_lang_code', 'name', 'Tsumura (Japan)'),
(101777, 83866, 'en', 'name', 'University Hospital St. Ivan Rilski'),
(101778, 83867, 'en', 'name', 'Housing Engineering Design and Research Association'),
(101779, 83868, 'no_lang_code', 'name', 'Biological Mimetics (United States)'),
(101780, 83869, 'en', 'name', 'Great Ormond Street Hospital Children''s Charity'),
(101781, 83870, 'nl', 'name', 'Nederlandse Vereniging voor Anesthesiologie'),
(101782, 83871, 'en', 'name', 'First Affiliated Hospital of Bengbu Medical College'),
(101783, 83871, 'zh', 'name', 'čšŒåŸ åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(101784, 83872, 'no_lang_code', 'name', 'MKS Instruments (United States)'),
(101785, 83873, 'no_lang_code', 'name', 'Augmenix (United States)'),
(101786, 83874, 'es', 'name', 'Universidad Tangamanga'),
(101787, 83875, 'en', 'name', 'Metastatic Breast Cancer Network'),
(101788, 83876, 'en', 'name', 'Duchenne Parent Project'),
(101789, 83877, 'no_lang_code', 'name', 'Corlife (Germany)'),
(101790, 83878, 'sv', 'name', 'Ella and Georg Ehrnrooth Foundation'),
(101791, 83879, 'it', 'name', 'Associazione Comuni Terremotati e Sindaci della Ricostruzione del Friuli'),
(101792, 83880, 'en', 'name', 'Seva Foundation'),
(101793, 83881, 'fr', 'name', 'Beaux-arts de minneapolis'),
(101794, 83881, 'en', 'name', 'Minneapolis College of Art and Design'),
(101795, 83882, 'es', 'name', 'Universidad Tecnológica de Tula-Tepeji'),
(101796, 83883, 'no_lang_code', 'name', 'STARmed (South Korea)'),
(101797, 83884, 'en', 'name', 'Russian Christian Humanitarian Academy'),
(101798, 83884, 'ru', 'name', 'Š ŃƒŃŃŠŗŠ°Ń Ń…Ń€ŠøŃŃ‚ŠøŠ°Š½ŃŠŗŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(101799, 83885, 'pt', 'name', 'Fundação de Apoio ao Instituto de Pesquisas Tecnológicas'),
(101800, 83886, 'en', 'name', 'International Society for Autism Research'),
(101801, 83887, 'en', 'name', 'Innopharma Education'),
(101802, 83888, 'en', 'name', 'D A Pandu Memorial RV Dental College and Hospital'),
(101803, 83889, 'no_lang_code', 'name', 'Shofu (Japan)'),
(101804, 83889, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę¾é¢Ø'),
(101805, 83890, 'no_lang_code', 'name', 'Trex (United States)'),
(101806, 83891, 'en', 'name', 'Lown Institute'),
(101807, 83892, 'fi', 'name', 'SilmƤsƤƤtiƶ'),
(101808, 83893, 'en', 'name', 'Hope Against Cancer'),
(101809, 83894, 'en', 'name', 'Association for Career and Technical Education'),
(101810, 83895, 'pt', 'name', 'Grupo Anchieta'),
(101811, 83896, 'en', 'name', 'Institute for Clinical Acupuncture and Oriental Medicine'),
(101812, 83897, 'en', 'name', 'Future Forests Research'),
(101813, 83898, 'en', 'name', 'Nurses Organization of Veterans Affairs'),
(101814, 83899, 'en', 'name', 'Roy J. Carver Charitable Trust'),
(101815, 83900, 'en', 'name', 'Freemasons New Zealand'),
(101816, 83901, 'en', 'name', 'Mary S. and David C. Corbin Foundation'),
(101817, 83902, 'en', 'name', 'Kristian Gerhard Jebsen Foundation'),
(101818, 83902, 'no', 'name', 'Stiftelsen Kristian Gerhard Jebsen'),
(101819, 83903, 'en', 'name', 'InterMedia'),
(101820, 83904, 'en', 'name', 'Advanced Mental Health Care'),
(101821, 83905, 'no_lang_code', 'name', 'Ocean Optics (United States)'),
(101822, 83906, 'en', 'name', 'Acquired Brain Injury Ireland'),
(101823, 83907, 'en', 'name', 'Crafoord Foundation'),
(101824, 83908, 'no_lang_code', 'name', 'Inrad Optics (United States)'),
(101825, 83909, 'en', 'name', 'The Lane Libraries'),
(101826, 83910, 'en', 'name', 'Cancer Hospital and Research Institute'),
(101827, 83911, 'en', 'name', 'Stupski Foundation'),
(101828, 83912, 'en', 'name', 'Faith Baptist Bible College and Theological Seminary'),
(101829, 83913, 'en', 'name', 'Ethel And James Flinn Foundation'),
(101830, 83914, 'en', 'name', 'British Society for Haematology'),
(101831, 83915, 'en', 'name', 'The Association of Child and Adolescent Mental Health'),
(101832, 83916, 'en', 'name', 'Jurassic Foundation'),
(101833, 83917, 'en', 'name', 'The Robertson Trust'),
(101834, 83918, 'no_lang_code', 'name', 'Argumentum Kiadó (Hungary)'),
(101835, 83919, 'en', 'name', 'Rick Hansen Foundation'),
(101836, 83920, 'es', 'name', 'Centro Internacional de Entrenamiento e Investigaciones Medicas'),
(101837, 83921, 'en', 'name', 'National Marine Environmental Forecasting Center'),
(101838, 83921, 'zh', 'name', 'ēš„å›½å®¶ęµ·ę“‹ēŽÆå¢ƒé¢„ęŠ„äø­åæƒ'),
(101839, 83922, 'en', 'name', 'Knights Templar Eye Foundation'),
(101840, 83923, 'en', 'name', 'Arthritis National Research Foundation'),
(101841, 83924, 'no_lang_code', 'name', 'Sabre (United States)'),
(101842, 83925, 'en', 'name', 'University of Technology, Mauritius'),
(101843, 83926, 'no_lang_code', 'name', 'Canfor Pulp Products (Canada)'),
(101844, 83927, 'en', 'name', 'Al-Qalam University Katsina'),
(101845, 83928, 'no_lang_code', 'name', 'Symplectic (UK)'),
(101846, 83929, 'no_lang_code', 'name', 'Systems and Technology Research (United States)'),
(101847, 83930, 'en', 'name', 'Centre for Energy Advancement through Technological Innovation'),
(101848, 83931, 'en', 'name', 'Joanna M. Nicolay Melanoma Foundation'),
(101849, 83932, 'en', 'name', 'Nizhnevartovsk State University'),
(101850, 83932, 'ru', 'name', 'ŠŠøŠ¶Š½ŠµŠ²Š°Ń€Ń‚Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101851, 83933, 'en', 'name', 'Gunnar Nilsson Cancer Foundation'),
(101852, 83934, 'en', 'name', 'Iran National Science Foundation'),
(101853, 83935, 'en', 'name', 'National Training Foundation'),
(101854, 83936, 'en', 'name', 'Islamic Azad University, Bonab Branch'),
(101855, 83936, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد بناب'),
(101856, 83937, 'en', 'name', 'Stand Among Friends'),
(101857, 83938, 'en', 'name', 'Institute of General and Physical Chemistry'),
(101858, 83938, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¾ŠæŃˆŃ‚Ńƒ Šø Ń„ŠøŠ·ŠøŃ‡ŠŗŃƒ Ń…ŠµŠ¼ŠøŃ˜Ńƒ'),
(101859, 83939, 'en', 'name', 'Skolkovo Foundation'),
(101860, 83940, 'en', 'name', 'Biofuels Center of North Carolina'),
(101861, 83941, 'en', 'name', 'CureSearch for Children''s Cancer'),
(101862, 83942, 'de', 'name', 'Institut für Umweltstudien'),
(101863, 83942, 'no_lang_code', 'name', 'Institute for Environmental Studies Weibel & Ness (Germany)'),
(101864, 83943, 'en', 'name', 'Dayton Foundation'),
(101865, 83944, 'en', 'name', 'New Zealand Freshwater Sciences Society'),
(101866, 83945, 'no_lang_code', 'name', 'Genome and Company (South Korea)'),
(101867, 83945, 'ko', 'name', 'ģ§€ė†ˆģ•¤ģ»“ķ¼ė‹ˆ'),
(101868, 83946, 'en', 'name', 'Center for Climate and Resilience Research'),
(101869, 83946, 'es', 'name', 'Centro de Ciencia del Clima y la Resiliencia'),
(101870, 83947, 'en', 'name', 'Princess Takamatsu Cancer Research Fund'),
(101871, 83947, 'ja', 'name', 'é«˜ę¾ēŽ‹å„³ćŒć‚“ē ”ē©¶åŸŗé‡‘'),
(101872, 83948, 'no_lang_code', 'name', 'Patrys (Australia)'),
(101873, 83949, 'en', 'name', 'Bruegel'),
(101874, 83950, 'en', 'name', 'The Ogden Trust'),
(101875, 83951, 'en', 'name', 'Taizhou Second People''s Hospital'),
(101876, 83952, 'en', 'name', 'Al Andalus University'),
(101877, 83952, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأندلس Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ©'),
(101878, 83953, 'no_lang_code', 'name', 'LKC Technologies (United States)'),
(101879, 83954, 'en', 'name', 'Islamic Azad University of Zanjan'),
(101880, 83954, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد زنجان'),
(101881, 83955, 'en', 'name', 'Society for Underwater Technology'),
(101882, 83956, 'en', 'name', 'Kala Art Institute'),
(101883, 83957, 'en', 'name', 'Canadian Medical Hall of Fame'),
(101884, 83958, 'no_lang_code', 'name', 'Combe (United States)'),
(101885, 83959, 'en', 'name', 'Environment and Development Action Third World'),
(101886, 83960, 'en', 'name', 'Chinese Nutrition Society'),
(101887, 83960, 'zh', 'name', 'äø­å›½č„å…»å­¦ä¼š'),
(101888, 83961, 'en', 'name', 'Yiddish Book Center'),
(101889, 83962, 'en', 'name', 'Pacific Disaster Center'),
(101890, 83963, 'en', 'name', 'Egyptian Society of Ear, Nose, Throat and Allied Sciences'),
(101891, 83964, 'en', 'name', 'Lewis and Clark Library'),
(101892, 83965, 'en', 'name', 'Cornelia de Lange Syndrome Foundation'),
(101893, 83966, 'en', 'name', 'Great Lakes Protection Fund'),
(101894, 83967, 'en', 'name', 'George S. and Dolores Dore Eccles Foundation'),
(101895, 83968, 'en', 'name', 'Offshore Energy Research Association of Nova Scotia'),
(101896, 83969, 'en', 'name', 'Japanese Geotechnical Society'),
(101897, 83969, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåœ°ē›¤å·„å­¦ä¼š'),
(101898, 83970, 'en', 'name', 'Grammy Foundation'),
(101899, 83971, 'no_lang_code', 'name', 'Shanxi Coal Transportation and Sales Group (China)'),
(101900, 83971, 'zh', 'name', 'å±±č„æē…¤ē‚­čæé”€é›†å›¢ęœ‰é™å…¬åø ęŠ€ęœÆę”ÆęŒ'),
(101901, 83972, 'en', 'name', 'Reva and David Logan Foundation'),
(101902, 83973, 'no_lang_code', 'name', 'Neuromorphometrics (United States)'),
(101903, 83974, 'fi', 'name', 'Walter Ahlstrƶmin sƤƤtiƶ'),
(101904, 83975, 'en', 'name', 'Heiwa Nakajima Foundation'),
(101905, 83975, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¹³å’Œäø­å³¶č²”å›£'),
(101906, 83976, 'en', 'name', 'Alex C. Walker Educational and Charitable Foundation'),
(101907, 83977, 'en', 'name', 'Medical Foundation of North Carolina'),
(101908, 83978, 'en', 'name', 'Czech Society for Ornithology'),
(101909, 83979, 'no_lang_code', 'name', 'Magnitogorsk Iron and Steel Works (Russia)'),
(101910, 83979, 'ru', 'name', 'ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠøŠ¹ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ комбинат'),
(101911, 83980, 'en', 'name', 'British Association of Dermatologists'),
(101912, 83981, 'en', 'name', 'Shanxi Cardiovascular Hospital'),
(101913, 83981, 'zh', 'name', 'å±±č„æēœåæƒč”€ē®”åŒ»é™¢'),
(101914, 83982, 'en', 'name', 'Dioraphte Foundation'),
(101915, 83982, 'nl', 'name', 'Stichting Dioraphte'),
(101916, 83983, 'en', 'name', 'Brain & Behavior Research Foundation'),
(101917, 83984, 'en', 'name', 'Minnesota Eye Consultants'),
(101918, 83985, 'en', 'name', 'Sonoran Joint Venture'),
(101919, 83986, 'en', 'name', 'Iacocca Family Foundation'),
(101920, 83987, 'no', 'name', 'Bergen Kommune'),
(101921, 83988, 'en', 'name', 'Science Foundation Arizona'),
(101922, 83989, 'en', 'name', 'Military Child Education Coalition'),
(101923, 83990, 'en', 'name', 'Ranken Jordan Pediatric Bridge Hospital'),
(101924, 83991, 'fr', 'name', 'Gymnase de Nyon'),
(101925, 83992, 'no_lang_code', 'name', 'Latour (Sweden)'),
(101926, 83993, 'en', 'name', 'Islamic Azad University, Jahrom Branch'),
(101927, 83993, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد جهرم'),
(101928, 83994, 'en', 'name', 'ALS Recovery Fund'),
(101929, 83995, 'en', 'name', 'Australian Pain Society'),
(101930, 83996, 'en', 'name', 'Facility Guidelines Institute'),
(101931, 83997, 'en', 'name', 'Lambda Alpha International'),
(101932, 83998, 'en', 'name', 'Robert and Patricia Switzer Foundation'),
(101933, 83999, 'en', 'name', 'State Audit Office of Hungary'),
(101934, 84000, 'no_lang_code', 'name', 'ATCO (Canada)'),
(101935, 84001, 'no_lang_code', 'name', 'MindSpec'),
(101936, 84002, 'en', 'name', 'Psoriasis and Psoriatic Arthritis Alliance'),
(101937, 84003, 'en', 'name', 'Walter S. Johnson Foundation'),
(101938, 84004, 'en', 'name', 'Russian State University for Physical Education Sport Youth and Tourism'),
(101939, 84004, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта, молоГёжи Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(101940, 84005, 'en', 'name', 'DOEN Foundation'),
(101941, 84005, 'nl', 'name', 'Stichting DOEN'),
(101942, 84006, 'en', 'name', 'Central American Technological University'),
(101943, 84006, 'es', 'name', 'Universidad Tecnológica Centroamericana'),
(101944, 84007, 'en', 'name', 'Foundation for Neurologic Diseases'),
(101945, 84008, 'en', 'name', 'Marfan Foundation'),
(101946, 84009, 'en', 'name', 'Kaifeng University'),
(101947, 84009, 'zh', 'name', '开封大学'),
(101948, 84010, 'en', 'name', 'University Network of Excellence in Nuclear Engineering'),
(101949, 84011, 'en', 'name', 'Scottish Rite Freemasonry'),
(101950, 84012, 'en', 'name', 'Lieber Institute for Brain Development'),
(101951, 84013, 'no_lang_code', 'name', 'Moroccan Agency For Solar Energy (Morocco)'),
(101952, 84014, 'en', 'name', 'Indian Institute of Art & Design'),
(101953, 84015, 'en', 'name', 'The Medical Oncology Centre of Rosebank'),
(101954, 84016, 'no_lang_code', 'name', 'Emera (Canada)'),
(101955, 84017, 'es', 'name', 'Fundación para la Investigación, Docencia y Prevención del CÔncer'),
(101956, 84018, 'no_lang_code', 'name', 'Advanced Technologies and Laboratories International (United States)'),
(101957, 84019, 'en', 'name', 'Devon & Exeter Institution'),
(101958, 84020, 'en', 'name', 'American Institute of Chemists'),
(101959, 84021, 'nl', 'name', 'G.Ph. Verhagen-Stichting'),
(101960, 84022, 'no_lang_code', 'name', 'Esteve (Spain)'),
(101961, 84023, 'no_lang_code', 'name', 'Aqualinc (New Zealand)'),
(101962, 84024, 'en', 'name', 'Austrian Society of Cardiology'),
(101963, 84024, 'de', 'name', 'Ɩsterreichische Kardiologische Gesellschaft'),
(101964, 84025, 'en', 'name', 'Beaver County Library System'),
(101965, 84026, 'en', 'name', 'Chongqing Cancer Hospital'),
(101966, 84026, 'zh', 'name', 'é‡åŗ†åø‚č‚æē˜¤ē ”ē©¶ę‰€'),
(101967, 84027, 'en', 'name', 'Osteo Science Foundation'),
(101968, 84028, 'es', 'name', 'Instituto de BiologĆ­a Subtropical'),
(101969, 84029, 'en', 'name', 'Marianne and Marcus Wallenberg Foundation'),
(101970, 84030, 'en', 'name', 'National University of Water and Environmental Engineering'),
(101971, 84030, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного госпоГарства та ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń'),
(101972, 84031, 'en', 'name', 'Batken State University'),
(101973, 84031, 'ky', 'name', 'Баткенский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101974, 84032, 'no_lang_code', 'name', 'C-Motion (United States)'),
(101975, 84033, 'en', 'name', 'CatWalk Spinal Cord Injury Trust'),
(101976, 84034, 'no_lang_code', 'name', 'Insight Equity (United States)'),
(101977, 84035, 'en', 'name', 'China Foundation for Hepatitis Prevention and Control'),
(101978, 84036, 'en', 'name', 'Paochien Hospital'),
(101979, 84036, 'zh', 'name', '寶建醫院'),
(101980, 84037, 'no_lang_code', 'name', 'Lac Hong University'),
(101981, 84037, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Lįŗ”c Hồng'),
(101982, 84038, 'en', 'name', 'SpinalCure Australia'),
(101983, 84039, 'en', 'name', 'Health & Medicine Policy Research Group'),
(101984, 84040, 'en', 'name', 'Academic Hospital Paramaribo'),
(101985, 84040, 'nl', 'name', 'Academisch Ziekenhuis Paramaribo'),
(101986, 84041, 'no_lang_code', 'name', 'Analytical Biological Services (United States)'),
(101987, 84042, 'en', 'name', 'The Neuro Well'),
(101988, 84043, 'en', 'name', 'Walter & Elise Haas Fund'),
(101989, 84044, 'en', 'name', 'Haematology Society of Australia and New Zealand'),
(101990, 84045, 'no_lang_code', 'name', 'STI Optronics (United States)'),
(101991, 84046, 'en', 'name', 'Alice Kleberg Reynolds Foundation'),
(101992, 84047, 'en', 'name', 'Society of Urologic Oncology'),
(101993, 84048, 'en', 'name', 'Stockholm Municipality'),
(101994, 84049, 'en', 'name', 'Building Changes'),
(101995, 84050, 'no_lang_code', 'name', 'Precision Acoustics (United Kingdom)'),
(101996, 84051, 'en', 'name', 'Obour Institutes'),
(101997, 84052, 'fr', 'name', 'Centre LƩa-Roback'),
(101998, 84053, 'no_lang_code', 'name', 'BioMonde (United Kingdom)'),
(101999, 84054, 'en', 'name', 'Devon History Society'),
(102000, 84055, 'en', 'name', 'St. Mary''s Hospital Lacor'),
(102001, 84056, 'fr', 'name', 'Association Canadienne de l’Enseignement Cooperatif'),
(102002, 84056, 'en', 'name', 'Canadian Association for Co-operative Education'),
(102003, 84057, 'de', 'name', 'Abwasserverband Achental-Inntal-Zillertal'),
(102004, 84058, 'en', 'name', 'Dutch Institute for Advanced Logistics'),
(102005, 84059, 'en', 'name', 'Usona Institute'),
(102006, 84060, 'en', 'name', 'Center of Medical Genetics and Primary Health Care'),
(102007, 84061, 'en', 'name', 'Alpha-1 Foundation'),
(102008, 84062, 'en', 'name', 'Network for Studies on Pensions, Aging and Retirement'),
(102009, 84063, 'no_lang_code', 'name', 'CIMA+ (Canada)'),
(102010, 84064, 'en', 'name', 'Management and Science University'),
(102011, 84065, 'en', 'name', 'Arts & Health Alliance'),
(102012, 84066, 'mi', 'name', 'Irirangi te Motu'),
(102013, 84066, 'en', 'name', 'NZ on Air'),
(102014, 84067, 'en', 'name', 'Gerber Foundation'),
(102015, 84068, 'en', 'name', 'Danish Society of Nephrology'),
(102016, 84068, 'da', 'name', 'Dansk Nefrologisk Selskab'),
(102017, 84069, 'de', 'name', 'Ias-Gruppe'),
(102018, 84070, 'en', 'name', 'International Christian University'),
(102019, 84070, 'ja', 'name', 'å›½éš›åŸŗē£ę•™å¤§å­¦'),
(102020, 84071, 'en', 'name', 'School Based Health Alliance'),
(102021, 84072, 'en', 'name', 'International University of Professional Studies'),
(102022, 84073, 'no_lang_code', 'name', 'Fukada Geological Institute'),
(102023, 84073, 'ja', 'name', 'ę·±ē”°åœ°č³Ŗē ”ē©¶ę‰€'),
(102024, 84074, 'nl', 'name', 'SBOH'),
(102025, 84075, 'es', 'name', 'Escuela Campo Alegre'),
(102026, 84076, 'no_lang_code', 'name', 'O''Neal Steel (United States)'),
(102027, 84077, 'no_lang_code', 'name', 'WPL (United States)'),
(102028, 84078, 'no_lang_code', 'name', 'Levi Strauss (United States)'),
(102029, 84079, 'en', 'name', 'European Venous Forum'),
(102030, 84080, 'en', 'name', 'Bear Necessities Pediatric Cancer Foundation'),
(102031, 84081, 'no_lang_code', 'name', 'Brennan & Company (Ireland)'),
(102032, 84082, 'en', 'name', 'National Association of Chronic Disease Directors'),
(102033, 84083, 'en', 'name', 'Sri Venkateswara Medical College and Ruia Hospital'),
(102034, 84083, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°µą±†ą°‚ą°•ą°Ÿą±‡ą°¶ą±ą°µą°° ą°µą±ˆą°¦ą±ą°Æ కళాశాల మరియు రుయా ą°†ą°øą±ą°Ŗą°¤ą±ą°°ą°æ'),
(102035, 84084, 'en', 'name', 'Neurological Foundation of New Zealand'),
(102036, 84085, 'en', 'name', 'International Fibrodysplasia Ossificans Progressiva Association'),
(102037, 84086, 'en', 'name', 'Zhengzhou Central Hospital'),
(102038, 84087, 'no_lang_code', 'name', 'Baldacci (Italy)'),
(102039, 84087, 'it', 'name', 'Laboratori Baldacci'),
(102040, 84088, 'en', 'name', 'City of Portland'),
(102041, 84089, 'en', 'name', 'Garnett Passe and Rodney Williams Memorial Foundation'),
(102042, 84090, 'en', 'name', 'Hanoi University of Natural Resources and Environment'),
(102043, 84090, 'vi', 'name', 'ĐẔi hį»c TĆ i nguyĆŖn vĆ  MĆ“i trĘ°į»ng HĆ  Nį»™i'),
(102044, 84091, 'en', 'name', 'Lauri Strauss Leukemia Foundation'),
(102045, 84092, 'fr', 'name', 'CancĆ©ropĆ“le Ǝle-de-France'),
(102046, 84093, 'nl', 'name', 'Expertisecentrum Nederlands'),
(102047, 84094, 'no_lang_code', 'name', 'Dacco Sci (United States)'),
(102048, 84095, 'no_lang_code', 'name', 'Fiskevegn (Norway)'),
(102049, 84096, 'en', 'name', 'Kentucky Valley Educational Cooperative'),
(102050, 84097, 'en', 'name', 'Hispanics in Philanthropy'),
(102051, 84098, 'en', 'name', 'Gunnison Valley Hospital'),
(102052, 84099, 'no_lang_code', 'name', 'Eyegaze (United States)'),
(102053, 84100, 'sv', 'name', 'Fredrik och Ingrid Thurings Stiftelse'),
(102054, 84101, 'en', 'name', 'Loulou Foundation'),
(102055, 84102, 'la', 'name', 'Caritas Roma'),
(102056, 84103, 'en', 'name', 'Children''s Cancer and Leukaemia Group'),
(102057, 84104, 'en', 'name', 'The Foundling Museum'),
(102058, 84105, 'en', 'name', 'Brain Mapping Foundation'),
(102059, 84106, 'en', 'name', 'Association of Canadian Archivists'),
(102060, 84107, 'en', 'name', 'Spondylitis Association of America'),
(102061, 84108, 'no_lang_code', 'name', 'Space Systems Research Corporation (United States)'),
(102062, 84109, 'en', 'name', 'National Library of the Philippines'),
(102063, 84110, 'en', 'name', 'Soil and Water Conservation Society'),
(102064, 84111, 'en', 'name', 'Sungsan Hyo University'),
(102065, 84111, 'ko', 'name', 'ģ„±ģ‚°ķšØėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(102066, 84112, 'no_lang_code', 'name', 'Imperial Brands (United Kingdom)'),
(102067, 84113, 'en', 'name', 'National Institute of Technology, Asahikawa College'),
(102068, 84113, 'ja', 'name', 'ę—­å·å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(102069, 84114, 'en', 'name', 'Princeton Public Library'),
(102070, 84115, 'en', 'name', 'Leopardstown Park Hospital'),
(102071, 84116, 'no_lang_code', 'name', 'Corvid Technologies (United States)'),
(102072, 84117, 'en', 'name', 'Chita State Academy of Medicine'),
(102073, 84117, 'ru', 'name', 'Š§ŠøŃ‚ŠøŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(102074, 84118, 'en', 'name', 'SIR Institute for Pharmacy Practice and Policy'),
(102075, 84119, 'en', 'name', 'Independent Age'),
(102076, 84120, 'fr', 'name', 'Institut Sainte Catherine'),
(102077, 84121, 'en', 'name', 'Connecticut Bar Foundation'),
(102078, 84122, 'en', 'name', 'Center for Transportation and the Environment'),
(102079, 84123, 'tr', 'name', 'Beyoglu Goz Egitim ve Arastirma Hastanesi'),
(102080, 84124, 'en', 'name', 'Health Holland'),
(102081, 84125, 'en', 'name', 'University of Samarra'),
(102082, 84125, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³Ų§Ł…Ų±Ų§Ų”'),
(102083, 84126, 'en', 'name', 'Cutaneous Lymphoma Foundation'),
(102084, 84127, 'no_lang_code', 'name', 'Technik und Forschung im Betonbau (Switzerland)'),
(102085, 84128, 'es', 'name', 'Universidad SalvadoreƱa Alberto Masferrer'),
(102086, 84129, 'en', 'name', 'Australasian Society of Clinical and Experimental Pharmacologists and Toxicologists'),
(102087, 84130, 'en', 'name', 'Alaska Eskimo Whaling Commission'),
(102088, 84131, 'en', 'name', 'George A. Ramlose Foundation'),
(102089, 84132, 'no_lang_code', 'name', 'BioForce Nanosciences (United States)'),
(102090, 84133, 'no_lang_code', 'name', 'SEAKR Engineering (United States)'),
(102091, 84134, 'no_lang_code', 'name', 'Lake Capital'),
(102092, 84135, 'en', 'name', 'National University of East Timor'),
(102093, 84135, 'pt', 'name', 'Universidade Nacional de Timor Lorosa''e'),
(102094, 84135, 'id', 'name', 'Universidade NasionÔl Timór Lorosa''e'),
(102095, 84136, 'es', 'name', 'Universidad Washington y Lee'),
(102096, 84136, 'en', 'name', 'Washington and Lee University'),
(102097, 84137, 'en', 'name', 'Alberta Glycomics Centre'),
(102098, 84138, 'en', 'name', 'Dent Neurologic Institute'),
(102099, 84139, 'en', 'name', 'Australian National Fabrication Facility'),
(102100, 84140, 'en', 'name', 'Brain Tumour Research'),
(102101, 84141, 'es', 'name', 'Universidad del Golfo de MƩxico'),
(102102, 84142, 'no_lang_code', 'name', 'Matenadaran'),
(102103, 84142, 'hy', 'name', 'Õ„Õ„Õ½Ö€ÕøÕŗ ՄՔշտոցի Õ”Õ¶Õ¾Õ”Õ¶ Õ°Õ«Õ¶ Õ±Õ„Õ¼Õ”Õ£Ö€Õ„Ö€Õ« Õ«Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(102104, 84143, 'en', 'name', 'Life & Peace Institute'),
(102105, 84144, 'en', 'name', 'Catholic University of Kabgayi'),
(102106, 84144, 'fr', 'name', 'Institut Catholique de Kabgayi'),
(102107, 84145, 'de', 'name', 'Deutsche Stiftung Sklerodermie'),
(102108, 84146, 'no_lang_code', 'name', 'MedicaSafe (United States)'),
(102109, 84147, 'en', 'name', 'Saastamoinen Foundation'),
(102110, 84148, 'no_lang_code', 'name', 'BioMedPress'),
(102111, 84149, 'en', 'name', 'Lion Foundation'),
(102112, 84150, 'en', 'name', 'Jemez Pueblo Community Library'),
(102113, 84151, 'fr', 'name', 'Institut des Corps Gras'),
(102114, 84152, 'no_lang_code', 'name', 'Genetic Alliance UK (United Kingdom)'),
(102115, 84153, 'en', 'name', 'Pro-Implant Foundation'),
(102116, 84154, 'en', 'name', 'State Academic University of Humanities'),
(102117, 84154, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ акаГемический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… наук'),
(102118, 84155, 'en', 'name', 'Public Risk Management Association'),
(102119, 84156, 'en', 'name', 'Osato Research Institute'),
(102120, 84156, 'ja', 'name', 'ć‚Ŗć‚µćƒˆē ”ē©¶ę‰€'),
(102121, 84157, 'en', 'name', 'International Plant Nutrition Institute'),
(102122, 84158, 'no_lang_code', 'name', 'Angiocrine Bioscience (United States)'),
(102123, 84159, 'en', 'name', 'Heinz Endowments'),
(102124, 84160, 'sv', 'name', 'Familjen Erling-Perssons Stiftelse'),
(102125, 84161, 'en', 'name', 'New Zealand Federation of Graduate Women'),
(102126, 84162, 'en', 'name', 'Huron Mountain Wildlife Foundation'),
(102127, 84163, 'no_lang_code', 'name', 'Bennett Aerospace (United States)'),
(102128, 84164, 'en', 'name', 'Tribeca Film Institute'),
(102129, 84165, 'en', 'name', 'Middletown Thrall Library'),
(102130, 84166, 'en', 'name', 'Al-Muthanna University'),
(102131, 84166, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المثنى'),
(102132, 84167, 'en', 'name', 'Asian Eye Institute'),
(102133, 84168, 'en', 'name', 'Taiwan Kansei Information Association'),
(102134, 84168, 'zh', 'name', 'å°ē£ę„Ÿę€§č³‡čØŠå­øęœƒ'),
(102135, 84169, 'no_lang_code', 'name', 'Conetec Investigations'),
(102136, 84170, 'en', 'name', 'West London Research Network'),
(102137, 84171, 'en', 'name', 'Couch Family Foundation'),
(102138, 84172, 'it', 'name', 'Fondazione Cassa di Risparmio di Lucca'),
(102139, 84173, 'en', 'name', 'Bay Area Environmental Research Institute'),
(102140, 84174, 'es', 'name', 'Universidad de la Sierra JuƔrez'),
(102141, 84175, 'en', 'name', 'National University'),
(102142, 84175, 'ar', 'name', 'الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© - Ų§Ł„Ų³ŁˆŲÆŲ§Ł†'),
(102143, 84176, 'en', 'name', 'CDA College'),
(102144, 84177, 'en', 'name', 'College of the Sequoias'),
(102145, 84178, 'en', 'name', 'Bill of Rights Institute'),
(102146, 84179, 'de', 'name', 'Christina Barz-Stiftung'),
(102147, 84180, 'en', 'name', 'Eastern Townships Forest Research Trust'),
(102148, 84180, 'fr', 'name', 'Fiducie de Recherche sur la ForĆŖt des Cantons-de-l’Est'),
(102149, 84181, 'no_lang_code', 'name', 'Azure Summit Technology (United States)'),
(102150, 84182, 'no_lang_code', 'name', 'Andromed (Netherlands)'),
(102151, 84183, 'no_lang_code', 'name', 'Kancera (Sweden)'),
(102152, 84184, 'no_lang_code', 'name', 'Thor Industries (United States)'),
(102153, 84185, 'en', 'name', 'Dwight Englewood School'),
(102154, 84186, 'en', 'name', 'West of Scotland Regional Equality Council'),
(102155, 84187, 'no_lang_code', 'name', 'GenMont Biotech (Taiwan)'),
(102156, 84188, 'en', 'name', 'Tioga County Historical Society'),
(102157, 84189, 'en', 'name', 'Association of Professors of Gynecology and Obstetrics'),
(102158, 84190, 'en', 'name', 'Herbert Scoville Jr. Peace Fellowship'),
(102159, 84191, 'en', 'name', 'European Meteorological Society'),
(102160, 84192, 'en', 'name', 'Archives School Marburg'),
(102161, 84192, 'de', 'name', 'Archivschule Marburg'),
(102162, 84193, 'en', 'name', 'World Congress of Science and Factual Producers'),
(102163, 84194, 'en', 'name', 'Honor Frost Foundation'),
(102164, 84195, 'en', 'name', 'Iowa Soybean Association'),
(102165, 84196, 'en', 'name', 'Beatrice Hunter Cancer Research Institute'),
(102166, 84197, 'en', 'name', 'Indian Institute of Oil Palm Research'),
(102167, 84198, 'en', 'name', 'Harry and Jeanette Weinberg Foundation'),
(102168, 84199, 'es', 'name', 'Universidad Mundo Maya'),
(102169, 84200, 'no_lang_code', 'name', 'Communication Disorders Technology (United States)'),
(102170, 84201, 'es', 'name', 'Universidad del Valle'),
(102171, 84202, 'en', 'name', 'The Postal Museum'),
(102172, 84203, 'en', 'name', 'Resource Development Institute'),
(102173, 84204, 'en', 'name', 'Tri College University'),
(102174, 84205, 'en', 'name', 'Donaghue Foundation'),
(102175, 84206, 'en', 'name', 'Child and Family Agency of Southeastern Connecticut'),
(102176, 84207, 'en', 'name', 'Federation for the Humanities and Social Sciences'),
(102177, 84207, 'fr', 'name', 'FƩdƩration des Sciences Humaines'),
(102178, 84208, 'no_lang_code', 'name', 'Advanced Targeting Systems (United States)'),
(102179, 84209, 'no_lang_code', 'name', 'Evince Technology (United Kingdom)'),
(102180, 84210, 'en', 'name', 'LeadingAge New York'),
(102181, 84211, 'en', 'name', 'Killam Trusts'),
(102182, 84212, 'no_lang_code', 'name', 'X-wave Innovations (United States)'),
(102183, 84213, 'en', 'name', 'Whitehall Foundation'),
(102184, 84214, 'en', 'name', 'Hillsong International Leadership College'),
(102185, 84215, 'en', 'name', 'Australian Access Federation'),
(102186, 84216, 'es', 'name', 'Universidad de Ciencias Pedagógicas Enrique José Varona'),
(102187, 84217, 'no_lang_code', 'name', 'Modular Genetics (United States)'),
(102188, 84218, 'en', 'name', 'International Society for Computer Aided Surgery'),
(102189, 84219, 'en', 'name', 'Zoucheng People''s Hospital'),
(102190, 84219, 'zh', 'name', 'é‚¹åŸŽåø‚äŗŗę°‘åŒ»é™¢'),
(102191, 84220, 'en', 'name', 'Danish Diabetes Association'),
(102192, 84220, 'da', 'name', 'Diabetesforeningen'),
(102193, 84221, 'en', 'name', 'Astronomical Society of Japan'),
(102194, 84221, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗ ę—„ęœ¬å¤©ę–‡å­¦ä¼š'),
(102195, 84222, 'es', 'name', 'Universidad Juan Pablo II'),
(102196, 84223, 'en', 'name', 'South Carolina Universities Research and Education Foundation'),
(102197, 84224, 'en', 'name', 'Cardiovascular Institute of the South'),
(102198, 84225, 'da', 'name', 'Helen og Ejnar BjĆørnows Fond'),
(102199, 84226, 'pt', 'name', 'Confederação Geral dos Trabalhadores Portugueses'),
(102200, 84226, 'en', 'name', 'General Confederation of the Portuguese Workers'),
(102201, 84227, 'no_lang_code', 'name', 'Media and Process Technology (United States)'),
(102202, 84228, 'en', 'name', 'Cancer Nurses Society of Australia'),
(102203, 84229, 'no_lang_code', 'name', 'Sonalysts (United States)'),
(102204, 84230, 'en', 'name', 'Zigong First People''s Hospital'),
(102205, 84230, 'zh', 'name', 'č‡Ŗč“”åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(102206, 84231, 'no_lang_code', 'name', 'Cardinal Health (United States)'),
(102207, 84232, 'en', 'name', 'Canadian Association on Gerontology'),
(102208, 84233, 'en', 'name', 'Howard and Georgeanna Jones Foundation for Reproductive Medicine'),
(102209, 84234, 'en', 'name', 'International Association for Psychoanalytic Self Psychology'),
(102210, 84235, 'de', 'name', 'Chirurgie Plastique Erni'),
(102211, 84235, 'en', 'name', 'Erni Plastic Surgery'),
(102212, 84236, 'en', 'name', 'Gzhel State University'),
(102213, 84236, 'ru', 'name', 'Š“Š¶ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(102214, 84237, 'en', 'name', 'Psychoanalytic Institute of Northern California'),
(102215, 84238, 'en', 'name', 'Open Philanthropy Project'),
(102216, 84239, 'en', 'name', 'North Pacific Research Board'),
(102217, 84240, 'en', 'name', 'Immune Deficiency Foundation'),
(102218, 84241, 'es', 'name', 'Hospital ClĆ­nico Universitario de Caracas'),
(102219, 84241, 'en', 'name', 'University Hospital of Caracas'),
(102220, 84242, 'fr', 'name', 'Luc Hoffmann Institute'),
(102221, 84243, 'en', 'name', 'Metropolitan College'),
(102222, 84243, 'el', 'name', 'ĪœĪ—Ī¤Ī”ĪŸĪ ĪŸĪ›Ī™Ī¤Ī™ĪšĪŸ ĪšĪŸĪ›Ī›Ī•Ī“Ī™ĪŸ'),
(102223, 84244, 'no_lang_code', 'name', 'AIM Photonics (United States)'),
(102224, 84245, 'en', 'name', 'Institute of Microchemical Technology'),
(102225, 84246, 'en', 'name', 'British and Foreign School Society'),
(102226, 84247, 'en', 'name', 'North London College'),
(102227, 84248, 'no_lang_code', 'name', 'Da Volterra (France)'),
(102228, 84249, 'de', 'name', 'Museum für Naturkunde Chemnitz'),
(102229, 84250, 'en', 'name', 'Center for Technology & Innovation Management'),
(102230, 84251, 'en', 'name', 'National Library of Israel'),
(102231, 84251, 'he', 'name', 'ההפרייה ×”×œ××•×ž×™×Ŗ'),
(102232, 84251, 'ar', 'name', 'Ų§Ł„Ł…ŁƒŲŖŲØŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© في Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„ā€Ž'),
(102233, 84252, 'no_lang_code', 'name', 'Separation Systems (United States)'),
(102234, 84253, 'en', 'name', 'Macula and Retina Institute'),
(102235, 84254, 'en', 'name', 'Institutes for Journalism and Natural Resources'),
(102236, 84255, 'no_lang_code', 'name', 'HŽ Passenger Transport (Croatia)'),
(102237, 84255, 'hr', 'name', 'HŽ Putnički Prijevoz'),
(102238, 84256, 'en', 'name', 'Rajarajeswari Dental College and Hospital'),
(102239, 84257, 'en', 'name', 'Foundation for the Education and Research in Neurological Emergencies'),
(102240, 84258, 'en', 'name', 'Triple Negative Breast Cancer Foundation'),
(102241, 84259, 'en', 'name', 'Huizhou Central People''s Hospital'),
(102242, 84259, 'zh', 'name', 'ęƒ å·žåø‚äø­åæƒäŗŗę°‘åŒ»é™¢'),
(102243, 84260, 'en', 'name', 'Veer Chandra Singh Garhwali Uttarakhand University of Horticulture & Forestry'),
(102244, 84260, 'hi', 'name', 'ą¤¬ą¤¾ą¤—ą¤µą¤¾ą¤Øą„€ और ą¤µą¤¾ą¤Øą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤‚ą¤”'),
(102245, 84261, 'en', 'name', 'Southwest Scoliosis Institute'),
(102246, 84262, 'en', 'name', 'Andrew McDonough B+ Foundation'),
(102247, 84263, 'en', 'name', 'Brain Aneurysm Foundation'),
(102248, 84264, 'en', 'name', 'MNR Dental College and Hospital'),
(102249, 84265, 'no_lang_code', 'name', 'Medin (Czechia)'),
(102250, 84266, 'en', 'name', 'Tropical Biology Association'),
(102251, 84267, 'en', 'name', 'Prek Leap National College of Agriculture'),
(102252, 84267, 'km', 'name', 'įžŸįž¶įž›įž¶įž‡įž¶įžįž·įž€įžŸįž·įž€įž˜įŸ’įž˜įž–įŸ’įžšįŸ‚įž€įž›įŸ€įž”'),
(102253, 84268, 'en', 'name', 'Coastal Education and Research Foundation'),
(102254, 84269, 'no_lang_code', 'name', 'HydroCision (United States)'),
(102255, 84270, 'en', 'name', 'Council of American Overseas Research Centers'),
(102256, 84271, 'en', 'name', 'McPin Foundation'),
(102257, 84272, 'en', 'name', 'Agricultural and Marketing Research and Development Trust'),
(102258, 84273, 'de', 'name', 'Deutsche Stiftung für Chronisch Kranke'),
(102259, 84274, 'en', 'name', 'National University of Food Technologies'),
(102260, 84274, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ пищевых технологий'),
(102261, 84274, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ харчових технологій'),
(102262, 84275, 'sv', 'name', 'Svenska Rovdjursfƶreningen'),
(102263, 84275, 'en', 'name', 'Swedish Carnivore Association'),
(102264, 84276, 'no_lang_code', 'name', 'Integral Molecular (United States)'),
(102265, 84277, 'en', 'name', 'Barrow Cadbury Trust'),
(102266, 84278, 'en', 'name', 'Third Affiliated Hospital of Nanchang University'),
(102267, 84278, 'zh', 'name', 'å—ę˜Œå¤§å­¦ē¬¬äø‰é™„å±žåŒ»é™¢'),
(102268, 84279, 'no_lang_code', 'name', 'Omnipol (Czechia)'),
(102269, 84280, 'en', 'name', 'Demos'),
(102270, 84281, 'en', 'name', 'InterAcademy Partnership'),
(102271, 84282, 'en', 'name', 'Global Lyme Alliance'),
(102272, 84283, 'en', 'name', 'Military Technical Institute'),
(102273, 84284, 'en', 'name', 'Crotched Mountain'),
(102274, 84285, 'fr', 'name', 'Fondation internationale pour la recherche en paraplƩgie'),
(102275, 84285, 'en', 'name', 'International Foundation for Research in Paraplegia'),
(102276, 84285, 'de', 'name', 'Internationale Stiftung fur Forschung in Paraplegie'),
(102277, 84286, 'en', 'name', 'Slovak Academic Information Agency'),
(102278, 84287, 'no_lang_code', 'name', 'AutoNation (United States)'),
(102279, 84288, 'no_lang_code', 'name', 'Oligomerix (United States)'),
(102280, 84289, 'no_lang_code', 'name', 'Ivantis (United States)'),
(102281, 84290, 'no_lang_code', 'name', 'Boston Fusion (United States)'),
(102282, 84291, 'en', 'name', 'Artsadmin'),
(102283, 84292, 'en', 'name', 'Cap Digital'),
(102284, 84293, 'no', 'name', 'TromsĆø forskningsstiftelse'),
(102285, 84293, 'en', 'name', 'TromsĆø research foundation'),
(102286, 84294, 'en', 'name', 'Hinkley Center for Solid and Hazardous Waste Management'),
(102287, 84295, 'en', 'name', 'Glycemic Index Laboratories'),
(102288, 84296, 'en', 'name', 'Institute of Legal Practice and Development'),
(102289, 84297, 'en', 'name', 'South Gloucestershire Council'),
(102290, 84298, 'en', 'name', 'Sion College'),
(102291, 84299, 'en', 'name', 'National CMV Foundation'),
(102292, 84300, 'en', 'name', 'Dental Innovation Foundation Under Royal Patronage'),
(102293, 84300, 'th', 'name', 'ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ąø—ąø±ąø™ąø•ąø™ąø§ąø±ąø•ąøąø£ąø£ąø” ą¹ƒąø™ąøžąø£ąø°ąøšąø£ąø”ąø£ąø²ąøŠąø¹ąø›ąø–ąø±ąø”ąø ą¹Œ ąø«ąø™ą¹ˆąø§ąø¢ąø—ąø±ąø™ąø•'),
(102294, 84301, 'en', 'name', 'Coalition for Epidemic Preparedness Innovations'),
(102295, 84302, 'en', 'name', 'Issues Research'),
(102296, 84303, 'de', 'name', 'Phospholipid Forschungszentrum'),
(102297, 84303, 'en', 'name', 'Phospholipid Research Center'),
(102298, 84304, 'en', 'name', 'University of South Carolina Salkehatchie'),
(102299, 84305, 'en', 'name', 'Clinks (United Kingdom)'),
(102300, 84306, 'en', 'name', 'David and Lucile Packard Foundation'),
(102301, 84307, 'no_lang_code', 'name', 'Peoples Gas (United States)'),
(102302, 84308, 'en', 'name', 'Asian Pacific Development Center'),
(102303, 84309, 'en', 'name', 'The Long Island Museum'),
(102304, 84310, 'no_lang_code', 'name', 'Israel Dairy Board (Israel)'),
(102305, 84310, 'he', 'name', '×ž×•×¢×¦×Ŗ החלב'),
(102306, 84311, 'en', 'name', 'BlueCrest University College'),
(102307, 84312, 'en', 'name', 'National Academy of Music Prof. Pancho Vladigerov'),
(102308, 84312, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° музикална Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ā€žŠŸŠ°Š½Ń‡Š¾ ВлаГигеров'),
(102309, 84313, 'en', 'name', 'TomKat Foundation'),
(102310, 84314, 'en', 'name', 'Institute of Sports Medicine and Science'),
(102311, 84314, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¹ćƒćƒ¼ćƒ„åŒ»ćƒ»ē§‘å­¦ē ”ē©¶ę‰€'),
(102312, 84315, 'no_lang_code', 'name', 'OpenAlgae (United States)'),
(102313, 84316, 'no_lang_code', 'name', 'Pristop (Slovenia)'),
(102314, 84317, 'en', 'name', 'Housing Research Foundation'),
(102315, 84317, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä½ē·ē ”'),
(102316, 84318, 'no', 'name', 'Sogn og Fjordane Fylkeskommune'),
(102317, 84319, 'en', 'name', 'Danish Institute for Study Abroad'),
(102318, 84320, 'en', 'name', 'Office for Students'),
(102319, 84321, 'en', 'name', 'Rainwater Charitable Foundation'),
(102320, 84322, 'no_lang_code', 'name', 'TransDigm Group (United States)'),
(102321, 84323, 'en', 'name', 'Greenville College'),
(102322, 84324, 'en', 'name', 'Veer Surendra Sai Medical College and Hospital'),
(102323, 84325, 'id', 'name', 'Universitas Muhammadiyah Pontianak'),
(102324, 84326, 'en', 'name', 'Jinan University'),
(102325, 84326, 'ar', 'name', 'جـامعة الجنان'),
(102326, 84327, 'no_lang_code', 'name', 'Yamaguchi Gakugei University'),
(102327, 84327, 'ja', 'name', 'å±±å£å­¦čŠøå¤§å­¦'),
(102328, 84328, 'en', 'name', 'Consortium of Universities for Global Health'),
(102329, 84329, 'fr', 'name', 'Institut SupƩrieur des Biotechnologies de Paris'),
(102330, 84330, 'de', 'name', 'Schweizerische Anorexia Nervosa Stiftung'),
(102331, 84330, 'en', 'name', 'Swiss Anorexia Nervosa Foundation'),
(102332, 84331, 'de', 'name', 'Kantonsschule Rychenberg'),
(102333, 84332, 'en', 'name', 'Glaucoma Research Foundation'),
(102334, 84333, 'en', 'name', 'St. Philip''s College'),
(102335, 84334, 'en', 'name', 'European Geosciences Union'),
(102336, 84335, 'en', 'name', 'Cancer Research Malaysia'),
(102337, 84336, 'en', 'name', 'Massachusetts Association for Mental Health'),
(102338, 84337, 'no_lang_code', 'name', 'Kruger (Canada)'),
(102339, 84338, 'en', 'name', 'Logan City Council'),
(102340, 84339, 'en', 'name', 'Chaozhou Central Hospital'),
(102341, 84339, 'zh', 'name', 'ę½®å·žåø‚äø­åæƒåŒ»é™¢'),
(102342, 84340, 'en', 'name', 'Northern Counties Kidney Research Fund'),
(102343, 84341, 'no_lang_code', 'name', 'PopTech'),
(102344, 84342, 'en', 'name', 'Canadian Council on International Law'),
(102345, 84342, 'fr', 'name', 'Conseil canadien de droit international'),
(102346, 84343, 'en', 'name', 'Cardiac Children''s Foundation Taiwan'),
(102347, 84344, 'fr', 'name', 'La Coop FƩdƩrƩe'),
(102348, 84345, 'en', 'name', 'Great Barrier Reef Foundation'),
(102349, 84346, 'en', 'name', 'Parkinson''s and Movement Disorder Institute'),
(102350, 84347, 'pt', 'name', 'Fundação de Desenvolvimento de Tecnópolis'),
(102351, 84348, 'en', 'name', 'RGK Foundation'),
(102352, 84349, 'en', 'name', 'W. W. Smith Charitable Trust'),
(102353, 84350, 'no_lang_code', 'name', 'Bio Food Tech (Canada)'),
(102354, 84351, 'en', 'name', 'Melanoma Research Foundation'),
(102355, 84352, 'en', 'name', 'Sir Ross and Sir Keith Smith Fund'),
(102356, 84353, 'en', 'name', 'Kelliher Charitable Trust'),
(102357, 84354, 'ko', 'name', '(주)미넓기술'),
(102358, 84354, 'no_lang_code', 'name', 'Mirtec (South Korea)'),
(102359, 84355, 'en', 'name', 'Arthritis Health Professions Association'),
(102360, 84356, 'en', 'name', 'International Research Institute for Advanced Systems'),
(102361, 84356, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(102362, 84357, 'no_lang_code', 'name', 'ADMA Biologics (United States)'),
(102363, 84358, 'de', 'name', 'Kantonsschule Zürcher Oberland'),
(102364, 84359, 'en', 'name', 'Independent Television Service'),
(102365, 84360, 'no_lang_code', 'name', 'Cognitive Technologies (United States)'),
(102366, 84361, 'en', 'name', 'World Islamic Sciences and Education University'),
(102367, 84361, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(102368, 84362, 'en', 'name', 'Association for Frontotemporal Degeneration'),
(102369, 84363, 'en', 'name', 'Bryant & Stratton College'),
(102370, 84364, 'en', 'name', 'American Institute of Iranian Studies'),
(102371, 84365, 'en', 'name', 'Helgeland Museum'),
(102372, 84366, 'en', 'name', 'International Retinal Research Foundation'),
(102373, 84367, 'en', 'name', 'Roberts Enterprise Development Fund'),
(102374, 84368, 'en', 'name', 'Dan David Prize'),
(102375, 84369, 'no_lang_code', 'name', 'AMS (Singapore)'),
(102376, 84370, 'nl', 'name', 'Nationale vereniging voor LUPUS, APS, Sclerodermie en MCTD'),
(102377, 84371, 'en', 'name', 'Pennsylvania Athletic Trainers'' Society'),
(102378, 84372, 'en', 'name', 'Biomass Centre for Energy'),
(102379, 84372, 'pt', 'name', 'Centro da Biomassa para a Energia'),
(102380, 84373, 'en', 'name', 'Centre for Social Intervention Studies'),
(102381, 84373, 'pt', 'name', 'Centro de Estudos para a Intervencao Social'),
(102382, 84374, 'en', 'name', 'Midwestern University'),
(102383, 84375, 'no_lang_code', 'name', 'ipIQ'),
(102384, 84376, 'en', 'name', 'Ukrainian Institute of Public Health Policy'),
(102385, 84377, 'no_lang_code', 'name', 'IBI Group (Canada)'),
(102386, 84378, 'en', 'name', 'RIKEN Center for Advanced Photonics'),
(102387, 84378, 'ja', 'name', 'å…‰é‡å­å·„å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102388, 84379, 'en', 'name', 'James Merrill House'),
(102389, 84380, 'no_lang_code', 'name', 'AxoGen (United States)'),
(102390, 84381, 'en', 'name', 'Institute of Mental Health and Hospital'),
(102391, 84382, 'en', 'name', 'Histiocytosis Association'),
(102392, 84383, 'no_lang_code', 'name', 'ATEC (United States)'),
(102393, 84384, 'en', 'name', 'Don Mariano Marcos Memorial State University'),
(102394, 84385, 'en', 'name', 'Gonbad Kavous University'),
(102395, 84386, 'en', 'name', 'Bath Royal Literary and Scientific Institution'),
(102396, 84387, 'en', 'name', 'Nellie Mae Education Foundation'),
(102397, 84388, 'en', 'name', 'Agouron Institute'),
(102398, 84389, 'en', 'name', 'Fight for Sight'),
(102399, 84390, 'en', 'name', 'Society For Investigative Dermatology'),
(102400, 84391, 'en', 'name', 'Denver Foundation'),
(102401, 84392, 'fr', 'name', 'Association miniĆØre du Canada'),
(102402, 84392, 'en', 'name', 'Mining Association of Canada'),
(102403, 84393, 'no_lang_code', 'name', 'Oxford Frozen Foods (Canada)'),
(102404, 84394, 'en', 'name', 'New Brunswick Innovation Foundation'),
(102405, 84395, 'en', 'name', 'Okazaki Institute for Integrative Bioscience'),
(102406, 84395, 'ja', 'name', 'å²”å“Žēµ±åˆćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(102407, 84396, 'en', 'name', 'State Scholarships Foundation'),
(102408, 84397, 'en', 'name', 'Bone and Joint Canada'),
(102409, 84398, 'fr', 'name', 'Centre Hospitalier Saint-Joseph Saint-Luc'),
(102410, 84399, 'en', 'name', 'Trichy SRM Medical College Hospital and Research Centre'),
(102411, 84399, 'ta', 'name', 'ą®¤ą®æą®°ąÆą®šąÆą®šą®æ ą®Žą®øąÆą®†ą®°ąÆą®Žą®®ąÆ ą®®ąÆ†ą®Ÿą®æą®•ąÆą®•ą®²ąÆ ą®•ą®¾ą®²ąÆ‡ą®œąÆ ą®¹ą®¾ą®øąÆą®Ŗą®æą®Ÿą®²ąÆ & ą®°ą®æą®šą®°ąÆą®šąÆ ą®šąÆ†ą®©ąÆą®Ÿą®°ąÆ'),
(102412, 84400, 'en', 'name', 'Zambia Catholic University'),
(102413, 84401, 'de', 'name', 'Sprachen & Dolmetscher Institut München'),
(102414, 84402, 'en', 'name', 'Belarusian State Academy of Arts'),
(102415, 84402, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š¼Š°ŃŃ‚Š°Ń†Ń‚Š²Š°Ńž'),
(102416, 84402, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(102417, 84403, 'en', 'name', 'Fernbank Museum of Natural History'),
(102418, 84404, 'no_lang_code', 'name', 'Second Genome (United States)'),
(102419, 84405, 'en', 'name', 'ArcticNet'),
(102420, 84406, 'no_lang_code', 'name', 'Focaltech Systems (Taiwan)'),
(102421, 84407, 'pt', 'name', 'Sociedade Portuguesa de Vida Selvagem'),
(102422, 84408, 'en', 'name', 'Anesthesia Quality Institute'),
(102423, 84409, 'en', 'name', 'Center for Economic Research and its Applications'),
(102424, 84409, 'fr', 'name', 'Centre Pour La Recherche Economique et ses Applications'),
(102425, 84410, 'en', 'name', 'National Alliance of State and Territorial AIDS Directors'),
(102426, 84411, 'de', 'name', 'Pädagogische Hochschule Schwäbisch Gmünd'),
(102427, 84411, 'en', 'name', 'University of Education Schwaebisch Gmuend'),
(102428, 84412, 'en', 'name', 'The Korean Society of International Law'),
(102429, 84412, 'ko', 'name', 'ķ•œźµ­ źµ­ģ œė²• ķ•™ķšŒ'),
(102430, 84413, 'en', 'name', 'North Carolina Cotton Producers Association'),
(102431, 84414, 'sq', 'name', 'Universiteti i Mjekƫsisƫ, Tiranƫ'),
(102432, 84414, 'en', 'name', 'University of Medicine Tirana'),
(102433, 84415, 'en', 'name', 'British Renal Society'),
(102434, 84416, 'no_lang_code', 'name', 'Novocure (Jersey)'),
(102435, 84417, 'en', 'name', 'American Macular Degeneration Foundation'),
(102436, 84418, 'en', 'name', 'Thurgood Marshall College Fund'),
(102437, 84419, 'en', 'name', 'American Australian Association'),
(102438, 84420, 'en', 'name', 'Promotion and Mutual Aid Corporation for Private Schools of Japan'),
(102439, 84420, 'ja', 'name', 'ę—„ęœ¬ē§ē«‹å­¦ę ”ęŒÆčˆˆćƒ»å…±ęøˆäŗ‹ę„­å›£'),
(102440, 84421, 'en', 'name', 'Forces in Mind Trust'),
(102441, 84422, 'en', 'name', 'Braunschweig University of Art'),
(102442, 84422, 'de', 'name', 'Hochschule für Bildende Künste Braunschweig'),
(102443, 84423, 'en', 'name', 'Pomona Valley Hospital Medical Center'),
(102444, 84424, 'fr', 'name', 'Institut Francilien de Recherche sur les Atomes Froids'),
(102445, 84425, 'en', 'name', 'Capability Scotland'),
(102446, 84426, 'no_lang_code', 'name', 'Spheryx (United States)'),
(102447, 84427, 'en', 'name', 'European Hospital'),
(102448, 84428, 'no_lang_code', 'name', 'University of al-Qarawiyyin'),
(102449, 84428, 'fr', 'name', 'UniversitƩ Al Quaraouiyine');
INSERT INTO `ror_settings` VALUES
(102450, 84428, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ų±ŁˆŁŠŁŠŁ†'),
(102451, 84429, 'en', 'name', 'Chartered Institute of Ecology and Environmental Management'),
(102452, 84430, 'en', 'name', 'Churchill Northern Studies Centre'),
(102453, 84431, 'en', 'name', 'Mind and Life Institute'),
(102454, 84432, 'en', 'name', 'Alpro Foundation'),
(102455, 84433, 'id', 'name', 'Universitas Stikubank'),
(102456, 84434, 'en', 'name', 'James Madison Memorial Fellowship Foundation'),
(102457, 84435, 'en', 'name', 'Worldwide Universities Network'),
(102458, 84436, 'en', 'name', 'International University Of Health And Welfare Atami Hospital'),
(102459, 84436, 'ja', 'name', 'å›½éš›åŒ»ē™‚ē¦ē„‰å¤§å­¦ē†±ęµ·ē—…é™¢'),
(102460, 84437, 'en', 'name', 'Collaborative Innovation Center of Chemistry for Energy Materials'),
(102461, 84438, 'en', 'name', 'New Zealand Association of Scientists'),
(102462, 84439, 'en', 'name', 'Carl and Ruth Shapiro Family Foundation'),
(102463, 84440, 'en', 'name', 'General Hospital of Athens Elpis'),
(102464, 84440, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ελπίς'),
(102465, 84441, 'en', 'name', 'Daegu University of Foreign Studies'),
(102466, 84441, 'ko', 'name', 'ėŒ€źµ¬ģ™øźµ­ģ–“ėŒ€ķ•™źµ'),
(102467, 84442, 'no_lang_code', 'name', 'Titan Pharmaceuticals (United States)'),
(102468, 84443, 'no_lang_code', 'name', 'Lexicon Pharmaceuticals (United States)'),
(102469, 84444, 'en', 'name', 'National Centre for Disease Informatics and Research'),
(102470, 84444, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą„‹ą¤— ą¤øą„‚ą¤šą¤Øą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(102471, 84444, 'kn', 'name', 'ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ಕಾಯಿಲೆ ą²®ą²¾ą²¹ą²æą²¤ą²æą²Æą³ą²•ą³ą²¤ ą²®ą²¤ą³ą²¤ą³ ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(102472, 84445, 'no_lang_code', 'name', 'Sempra Praha (Czechia)'),
(102473, 84446, 'no_lang_code', 'name', 'Nexgenix Pharmaceuticals (United States)'),
(102474, 84447, 'no_lang_code', 'name', 'KIK Custom Products (Canada)'),
(102475, 84448, 'en', 'name', 'New Brunswick Health Research Foundation'),
(102476, 84449, 'pt', 'name', 'Hospital Oftalmologico de BrasĆ­lia'),
(102477, 84450, 'en', 'name', 'Beijing Shijitan Hospital'),
(102478, 84450, 'zh', 'name', 'åŒ—äŗ¬äø–ēŗŖå›åŒ»é™¢'),
(102479, 84451, 'en', 'name', 'John P. Hussman Foundation'),
(102480, 84452, 'en', 'name', 'Japan Association for Chemical Innovation'),
(102481, 84452, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę–°åŒ–å­¦ęŠ€č”“ęŽØé€²å”ä¼š'),
(102482, 84453, 'fr', 'name', 'Fondation Hopale'),
(102483, 84454, 'vi', 'name', 'TrĘ°į»ng đẔi hį»c Giao thĆ“ng vįŗ­n tįŗ£i'),
(102484, 84454, 'en', 'name', 'University of Transport and Communications'),
(102485, 84455, 'no_lang_code', 'name', 'Accuray (United States)'),
(102486, 84456, 'en', 'name', 'Alaska Council of School Administrators'),
(102487, 84457, 'en', 'name', 'St. Luke''s University Health Network'),
(102488, 84458, 'en', 'name', 'Letten Foundation'),
(102489, 84459, 'en', 'name', 'Vermont Oxford Network'),
(102490, 84460, 'en', 'name', 'Kay Kendall Leukaemia Fund'),
(102491, 84461, 'en', 'name', 'Pennsylvania Academy of Science'),
(102492, 84462, 'en', 'name', 'Institute for Neurodegenerative Disorders'),
(102493, 84463, 'fr', 'name', 'Epi-Phare'),
(102494, 84464, 'fr', 'name', 'Bureau Canadien de l''Ʃducation Internationale'),
(102495, 84464, 'en', 'name', 'Canadian Bureau for International Education'),
(102496, 84465, 'en', 'name', 'Koriyama Institute of Health Sciences'),
(102497, 84465, 'ja', 'name', 'éƒ”å±±å„åŗ·ē§‘å­¦å°‚é–€å­¦ę ”'),
(102498, 84466, 'en', 'name', 'Sacred Heart Hospital'),
(102499, 84467, 'en', 'name', 'United States India Educational Foundation'),
(102500, 84468, 'no_lang_code', 'name', 'GeneTex (United States)'),
(102501, 84469, 'en', 'name', 'Pipeline Research Council International'),
(102502, 84470, 'en', 'name', 'Maria Fertility Hospital'),
(102503, 84471, 'en', 'name', 'Academic Center for Education, Culture and Research'),
(102504, 84471, 'fa', 'name', 'جهاد ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ'),
(102505, 84472, 'en', 'name', 'Darwin Center for Biogeosciences'),
(102506, 84473, 'no', 'name', 'Vinje Kommune'),
(102507, 84474, 'no_lang_code', 'name', 'Japan IDDM network'),
(102508, 84474, 'ja', 'name', 'ę—„ęœ¬IDDMćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(102509, 84475, 'en', 'name', 'San Francisco Bay Area Planning and Urban Research Association'),
(102510, 84476, 'en', 'name', 'Zhejiang Research Institute of Chemical Industry'),
(102511, 84476, 'zh', 'name', 'ęµ™ę±ŸēœåŒ–å·„ē ”ē©¶é™¢'),
(102512, 84477, 'en', 'name', 'Shingyeong University'),
(102513, 84477, 'ko', 'name', 'ģ‹ ź²½ėŒ€ķ•™źµ'),
(102514, 84478, 'en', 'name', 'Commonwealth Foundation'),
(102515, 84479, 'en', 'name', 'Nanjing Jiangning Hospital'),
(102516, 84480, 'en', 'name', 'Ukrainian National Tchaikovsky Academy of Music'),
(102517, 84480, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŃƒŠ·ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України імені ŠŸŠµŃ‚Ń€Š° Чайковського'),
(102518, 84481, 'no_lang_code', 'name', 'Shangluo Central Hospital'),
(102519, 84481, 'zh', 'name', 'å•†ę“›åø‚äø­åæƒåŒ»é™¢'),
(102520, 84482, 'en', 'name', 'Howard G. Buffett Foundation'),
(102521, 84483, 'nl', 'name', 'WoonZorgcentra Haaglanden'),
(102522, 84484, 'no_lang_code', 'name', 'Flexterra (United States)'),
(102523, 84485, 'no_lang_code', 'name', 'Aftenposten (Norway)'),
(102524, 84486, 'fr', 'name', 'Hochalpines Institut Ftan'),
(102525, 84487, 'fr', 'name', 'Fondation du cancer du sein du QuƩbec'),
(102526, 84487, 'en', 'name', 'Quebec Breast Cancer Foundation'),
(102527, 84488, 'en', 'name', 'Business and Hotel Management School'),
(102528, 84489, 'en', 'name', 'Endangered Language Fund'),
(102529, 84490, 'en', 'name', 'American Academy for Cerebral Palsy and Developmental Medicine'),
(102530, 84491, 'en', 'name', 'Bournemouth and Poole College'),
(102531, 84492, 'no_lang_code', 'name', 'Mary Kay (United States)'),
(102532, 84493, 'en', 'name', 'European Society of Clinical Microbiology and Infectious Diseases'),
(102533, 84494, 'en', 'name', 'Luke Neuhedel Foundation'),
(102534, 84495, 'en', 'name', 'Life Sciences Research Foundation'),
(102535, 84496, 'en', 'name', 'Ningxia Normal University'),
(102536, 84497, 'pt', 'name', 'Sociedade Brasileira de Anatomia'),
(102537, 84498, 'es', 'name', 'Archivos Nacionales y Administración de Documentos de los Estados Unidos'),
(102538, 84498, 'en', 'name', 'National Archives and Records Administration'),
(102539, 84499, 'en', 'name', 'Oregon Lions Sight & Hearing Foundation'),
(102540, 84500, 'en', 'name', 'Alexandria Technical and Community College'),
(102541, 84501, 'en', 'name', 'Quaternary Research Association'),
(102542, 84502, 'en', 'name', 'Arthur L. and Elaine V. Johnson Foundation'),
(102543, 84503, 'en', 'name', 'Bernice Barbour Foundation'),
(102544, 84504, 'en', 'name', 'Beni American University'),
(102545, 84505, 'en', 'name', 'Foundation for Individual Rights in Education'),
(102546, 84506, 'en', 'name', 'Tear Film & Ocular Surface Society'),
(102547, 84507, 'en', 'name', 'City University'),
(102548, 84507, 'bn', 'name', 'সিটি ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(102549, 84508, 'en', 'name', 'Hall Family Foundation'),
(102550, 84509, 'en', 'name', 'Academy of Spinal Cord Injury Professionals'),
(102551, 84510, 'en', 'name', 'Zhengzhou University of Industrial Technology'),
(102552, 84510, 'zh', 'name', 'éƒ‘å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(102553, 84511, 'en', 'name', 'Berea College'),
(102554, 84512, 'en', 'name', 'Horses and Humans Research Foundation'),
(102555, 84513, 'en', 'name', 'Rennie Center for Education Research & Policy'),
(102556, 84514, 'de', 'name', 'Roland Ernst Stiftung'),
(102557, 84515, 'en', 'name', 'National Institute of Traumatology & Orthopaedic Rehabilitation'),
(102558, 84516, 'en', 'name', 'North American University'),
(102559, 84517, 'pt', 'name', 'Fundação Escola de Sociologia e Política de São Paulo'),
(102560, 84518, 'en', 'name', 'Ben May Charitable Trust'),
(102561, 84519, 'no_lang_code', 'name', 'Sema4 (United States)'),
(102562, 84520, 'en', 'name', 'PADI Foundation'),
(102563, 84521, 'en', 'name', 'Owl Research Institute'),
(102564, 84522, 'en', 'name', 'Dutch Colorectal Cancer Group'),
(102565, 84523, 'en', 'name', 'Centre for Global Health Research'),
(102566, 84524, 'en', 'name', 'Ariake College of Education and the Arts'),
(102567, 84524, 'ja', 'name', 'ęœ‰ę˜Žę•™č‚²čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(102568, 84525, 'fr', 'name', 'CancƩropƓle PACA'),
(102569, 84526, 'it', 'name', 'Consorzio per la Ricerca Sanitaria'),
(102570, 84527, 'en', 'name', 'Evelyn Trust'),
(102571, 84528, 'en', 'name', 'Takahashi Industrial and Economic Research Foundation'),
(102572, 84528, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ é«˜ę©‹ē”£ę„­ēµŒęøˆē ”ē©¶č²”å›£'),
(102573, 84529, 'en', 'name', 'Whitman Hospital & Medical Center'),
(102574, 84530, 'en', 'name', 'International Society for Research in Human Milk and Lactation'),
(102575, 84531, 'es', 'name', 'Instituto de Investigación Marqués de Valdecilla'),
(102576, 84532, 'no_lang_code', 'name', 'Tempronics (United States)'),
(102577, 84533, 'en', 'name', 'The Alzheimer Society of Ireland'),
(102578, 84534, 'en', 'name', 'Wine and Food Foundation of Texas'),
(102579, 84535, 'en', 'name', 'Amur State University of Humanities and Pedagogy'),
(102580, 84535, 'ru', 'name', 'ŠŠ¼ŃƒŃ€ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(102581, 84536, 'nl', 'name', 'Koninklijke Nederlandse Maatschappij tot bevordering der Tandheelkunde'),
(102582, 84536, 'en', 'name', 'Royal Dutch Society for the Promotion of Dentistry'),
(102583, 84537, 'en', 'name', 'Detroit Baptist Theological Seminary'),
(102584, 84538, 'no_lang_code', 'name', 'Theraclion (France)'),
(102585, 84539, 'en', 'name', 'Helmholtz Institute Erlangen-Nürnberg'),
(102586, 84539, 'de', 'name', 'Helmholtz-Institut Erlangen-Nürnberg für Erneuerbare Energien'),
(102587, 84540, 'en', 'name', 'Historic Hudson Valley'),
(102588, 84541, 'en', 'name', 'Center for Cancer and Blood Disorders'),
(102589, 84542, 'en', 'name', 'Industrial and Commercial Bank of China'),
(102590, 84542, 'zh', 'name', 'äø­å›½å·„å•†é“¶č”Œč‚”ä»½ęœ‰é™å…¬åø'),
(102591, 84543, 'en', 'name', 'Max Planck Institute for Mathematics'),
(102592, 84543, 'de', 'name', 'Max-Planck-Institut für Mathematik'),
(102593, 84544, 'pt', 'name', 'Santa Casa de Misericórdia de Marília'),
(102594, 84545, 'en', 'name', 'Carnegie Dunfermline Trust'),
(102595, 84546, 'en', 'name', 'Hypertension Canada'),
(102596, 84547, 'en', 'name', 'Dr. Jeffrey Thomas Stroke Shield Foundation'),
(102597, 84548, 'en', 'name', 'Noida International University'),
(102598, 84548, 'hi', 'name', 'ą¤Øą„‹ą¤ą¤”ą¤¾ ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(102599, 84549, 'en', 'name', 'Ichinomiya Kenshin College'),
(102600, 84549, 'ja', 'name', '一宮研伸大学 ēœ‹č­·å­¦éƒØ'),
(102601, 84550, 'en', 'name', 'Artquest'),
(102602, 84551, 'en', 'name', 'European Underground Research Infrastructure for Disposal of nuclear waste in a Clay Environment'),
(102603, 84552, 'no_lang_code', 'name', 'Biostats (United States)'),
(102604, 84553, 'en', 'name', 'Noguchi Thyroid Clinic and Hospital Foundation'),
(102605, 84553, 'ja', 'name', 'äæé™ŗåŒ»ē™‚ę©Ÿé–¢ åŒ»ē™‚ę³•äŗŗ é‡Žå£ē—…é™¢'),
(102606, 84554, 'no_lang_code', 'name', 'Teisei Gakuen Junior College'),
(102607, 84554, 'ja', 'name', 'č²žé™å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(102608, 84555, 'no_lang_code', 'name', 'Mizuho (Japan)'),
(102609, 84555, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćæćšć»ćƒ•ć‚£ćƒŠćƒ³ć‚·ćƒ£ćƒ«ć‚°ćƒ«ćƒ¼ćƒ—'),
(102610, 84556, 'de', 'name', 'Zentrum für Qualität in der Pflege'),
(102611, 84557, 'no_lang_code', 'name', 'Pear Therapeutics (United States)'),
(102612, 84558, 'en', 'name', 'Turkish Cultural Foundation'),
(102613, 84559, 'en', 'name', 'Informatics and Business Institute Darmajaya'),
(102614, 84559, 'id', 'name', 'Institut Informatika Dan Bisnis Darmajaya'),
(102615, 84560, 'en', 'name', 'HIV Research Trust'),
(102616, 84561, 'en', 'name', 'Kyoto Technoscience Center'),
(102617, 84561, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ äŗ¬éƒ½ęŠ€č”“ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(102618, 84562, 'en', 'name', 'Amen Clinics'),
(102619, 84563, 'en', 'name', 'Koning Willem I College'),
(102620, 84564, 'en', 'name', 'Canadian Society for the Study of Education'),
(102621, 84565, 'en', 'name', 'Fujian Polytechnic of Information Technology'),
(102622, 84565, 'zh', 'name', 'ē¦å»ŗäæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(102623, 84566, 'fr', 'name', 'MusƩe National d''Histoire Naturelle'),
(102624, 84566, 'de', 'name', 'Nationalmuseum für Naturgeschichte Luxemburg'),
(102625, 84566, 'lb', 'name', 'NationalmusƩe fir Naturgeschicht'),
(102626, 84567, 'en', 'name', 'Joseph William Gottstein Memorial Trust'),
(102627, 84568, 'en', 'name', 'Reno Sparks Indian Colony'),
(102628, 84569, 'en', 'name', 'Cystic Fibrosis Australia'),
(102629, 84570, 'pl', 'name', 'Sieć Badawczą Łukasiewicz - Instytut Pojazdów Szynowych "TABORā€'),
(102630, 84570, 'en', 'name', 'Łukasiewicz Research Network - Rail Vehicles Institute'),
(102631, 84571, 'en', 'name', 'Canadian Water Network'),
(102632, 84571, 'fr', 'name', 'RĆ©seau canadien de l’eau'),
(102633, 84572, 'en', 'name', 'National Center for Science and Engineering Statistics'),
(102634, 84573, 'no_lang_code', 'name', 'Dongguk University WISE'),
(102635, 84573, 'ko', 'name', 'ė™źµ­ėŒ€ķ•™źµ WISEģŗ ķ¼ģŠ¤'),
(102636, 84574, 'no_lang_code', 'name', 'Marvel Fusion'),
(102637, 84575, 'no_lang_code', 'name', 'OSGeo'),
(102638, 84576, 'en', 'name', 'King Edward Memorial Hospital Research Centre'),
(102639, 84577, 'en', 'name', 'Odesa National University of Technology'),
(102640, 84577, 'ru', 'name', 'ŠžŠ“ŠµŃŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ пищевых технологий'),
(102641, 84577, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń харчових технологій'),
(102642, 84578, 'en', 'name', 'National Gallery of Australia'),
(102643, 84579, 'en', 'name', 'International Professional University of Technology in Nagoya'),
(102644, 84579, 'ja', 'name', 'åå¤å±‹å›½éš›å·„ē§‘å°‚é–€č·å¤§å­¦'),
(102645, 84580, 'en', 'name', 'University of Ibadan'),
(102646, 84580, 'yo', 'name', 'YunifÔsítì ìlú Ìbàdàn'),
(102647, 84581, 'en', 'name', 'Ivan Ziaziun Institute of Pedagogical Education and Adult Education of the National Academy of Pedagogical Sciences of Ukraine'),
(102648, 84581, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пеГагогічної освіти і освіти Горослих імені Івана Š—ŃŠ·ŃŽŠ½Š° ŠŠŠŸŠ України'),
(102649, 84582, 'en', 'name', 'JMIR Publications'),
(102650, 84583, 'no_lang_code', 'name', 'oekom'),
(102651, 84584, 'en', 'name', 'College of Mount Saint Vincent'),
(102652, 84585, 'en', 'name', 'Dhaka National Medical College'),
(102653, 84585, 'bn', 'name', 'ঢাকা ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(102654, 84586, 'en', 'name', 'University of Holy Cross'),
(102655, 84587, 'en', 'name', 'National Institute of Technology, Nagano College'),
(102656, 84587, 'ja', 'name', 'é•·é‡Žå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(102657, 84588, 'en', 'name', 'State Scientific Institution "Institute of Information, Security and Law of the National Academy of Legal Sciences of Ukraine"'),
(102658, 84588, 'uk', 'name', 'Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ інформації, безпеки і права ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії правових наук Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(102659, 84589, 'en', 'name', 'NewYork–Presbyterian Hospital'),
(102660, 84590, 'en', 'name', 'National Library of Nigeria'),
(102661, 84591, 'en', 'name', 'Bangladesh Jute Mills Corporation'),
(102662, 84591, 'bn', 'name', 'বাংলাদেশ ą¦Ŗą¦¾ą¦Ÿą¦•ą¦² করপোরেশন'),
(102663, 84592, 'no_lang_code', 'name', 'Windlift (United States)'),
(102664, 84593, 'no_lang_code', 'name', 'EMS (United Kingdom)'),
(102665, 84594, 'no_lang_code', 'name', 'China Telecom'),
(102666, 84594, 'zh', 'name', 'äø­å›½ē”µäæ”č‚”ä»½ęœ‰é™å…¬åø'),
(102667, 84595, 'en', 'name', 'Pan African University Institute of Life and Earth Sciences'),
(102668, 84596, 'en', 'name', 'Jinzhong College of Information'),
(102669, 84596, 'zh', 'name', '晋中俔息学院'),
(102670, 84597, 'en', 'name', 'Australia Council for the Arts'),
(102671, 84598, 'en', 'name', 'Ministry of Health'),
(102672, 84599, 'en', 'name', 'Yongcheng Vocational College'),
(102673, 84599, 'zh', 'name', 'ę°øåŸŽčŒäøšå­¦é™¢'),
(102674, 84600, 'en', 'name', 'Lumbini Medical College'),
(102675, 84600, 'ne', 'name', 'ą¤²ą„ą¤®ą„ą¤¬ą¤æą¤Øą¤æ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤²ą„‡ą¤œ'),
(102676, 84601, 'no_lang_code', 'name', 'Intelligent Fingerprinting (United Kingdom)'),
(102677, 84602, 'en', 'name', 'Prince Sultan Military College of Health Sciences'),
(102678, 84602, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£Ł…ŁŠŲ± سلطان Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲµŲ­ŁŠŲ©'),
(102679, 84603, 'en', 'name', 'National Library of Australia'),
(102680, 84604, 'en', 'name', 'Mast Cell Disease Society'),
(102681, 84605, 'en', 'name', 'Wettenhall Environment Trust'),
(102682, 84606, 'en', 'name', 'Memorial Sloan Kettering Cancer Center'),
(102683, 84607, 'no_lang_code', 'name', 'Medytox'),
(102684, 84607, 'ko', 'name', 'ė©”ė””ķ†”ģŠ¤'),
(102685, 84608, 'no_lang_code', 'name', 'Bhaikaka University'),
(102686, 84609, 'no_lang_code', 'name', 'Aureo (Japan)'),
(102687, 84610, 'es', 'name', 'Unidad Nacional para la Gestión del Riesgo de Desastres'),
(102688, 84611, 'no_lang_code', 'name', 'Bunge (United States)'),
(102689, 84612, 'en', 'name', 'Bone Health and Osteoporosis Foundation'),
(102690, 84613, 'en', 'name', 'MRC Weatherall Institute of Molecular Medicine'),
(102691, 84614, 'no_lang_code', 'name', 'Australian Broadcasting Corporation (Australia)'),
(102692, 84615, 'en', 'name', 'Cooperative University of Colombia'),
(102693, 84615, 'es', 'name', 'Universidad Cooperativa de Colombia'),
(102694, 84616, 'en', 'name', 'L.E. Fletcher Technical Community College'),
(102695, 84617, 'en', 'name', 'V.Ye. Tairov Institute of Viticulture and Winemaking'),
(102696, 84617, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ винограГарства і виноробства імені Š’.Š„. Таїрова'),
(102697, 84618, 'en', 'name', 'Amsterdam health & technology institute'),
(102698, 84619, 'en', 'name', 'Pan African University Institute for Governance, Humanities and Social Sciences'),
(102699, 84620, 'fr', 'name', 'Institut de la santƩ des Autochtones'),
(102700, 84620, 'en', 'name', 'Institute of Indigenous Peoples'' Health'),
(102701, 84621, 'en', 'name', 'Pan African University Institute of Water and Energy Science'),
(102702, 84622, 'en', 'name', 'Institute for Economic Liberty'),
(102703, 84622, 'es', 'name', 'Instituto de Libertad Económica'),
(102704, 84623, 'en', 'name', 'Louisiana Christian University'),
(102705, 84624, 'en', 'name', 'Central Land Council'),
(102706, 84625, 'no_lang_code', 'name', 'Ansell (Australia)'),
(102707, 84626, 'no_lang_code', 'name', 'Guangzhou Metro Design & Research Institute'),
(102708, 84626, 'zh', 'name', 'å¹æå·žåœ°é“č®¾č®”ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(102709, 84627, 'en', 'name', 'The Sumners Foundation'),
(102710, 84628, 'en', 'name', 'Postharvest Technology Innovation Center'),
(102711, 84628, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œąø™ąø§ąø±ąø•ąøąø£ąø£ąø”ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø«ąø„ąø±ąø‡ąøąø²ąø£ą¹€ąøą¹‡ąøšą¹€ąøąøµą¹ˆąø¢ąø§'),
(102712, 84629, 'no_lang_code', 'name', 'Manzanita Pharmaceuticals (United States)'),
(102713, 84630, 'en', 'name', 'Boca Raton Community High School'),
(102714, 84631, 'en', 'name', 'Northshore Technical Community College'),
(102715, 84632, 'en', 'name', 'Screen Australia'),
(102716, 84633, 'en', 'name', 'Hospital for Special Surgery'),
(102717, 84634, 'en', 'name', 'Society for Agriculture and Arid Ecology Research'),
(102718, 84634, 'hi', 'name', 'ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤¶ą„ą¤·ą„ą¤• ą¤Ŗą¤¾ą¤°ą¤æą¤øą„ą¤„ą¤æą¤¤ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą„‹ą¤øą¤¾ą¤‡ą¤Ÿą„€'),
(102719, 84635, 'en', 'name', 'Harte Research Institute for Gulf of Mexico Studies'),
(102720, 84636, 'en', 'name', 'Northwest Louisiana Technical Community College'),
(102721, 84637, 'en', 'name', 'NEWTON University'),
(102722, 84637, 'cs', 'name', 'VysokÔ Ŕkola NEWTON'),
(102723, 84638, 'en', 'name', 'Australian Film, Television and Radio School'),
(102724, 84639, 'en', 'name', 'National Museum of Australia'),
(102725, 84640, 'en', 'name', 'Southern Oregon Orthopedics'),
(102726, 84641, 'no_lang_code', 'name', 'SCImago Research Group'),
(102727, 84642, 'en', 'name', 'Aga Khan Foundation'),
(102728, 84643, 'en', 'name', 'Kathmandu University'),
(102729, 84643, 'ne', 'name', 'ą¤•ą¤¾ą¤ ą¤®ą¤¾ą¤”ą„Œą¤‚ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(102730, 84644, 'en', 'name', 'MRC Molecular Haematology Unit'),
(102731, 84645, 'no_lang_code', 'name', 'Abasaheb Garware College'),
(102732, 84645, 'mr', 'name', 'ą¤†ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤—ą¤°ą¤µą¤¾ą¤°ą„‡ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(102733, 84646, 'et', 'name', 'Balti Kaitsekolledž'),
(102734, 84646, 'en', 'name', 'Baltic Defence College'),
(102735, 84646, 'lv', 'name', 'Baltijas Aizsardzības koledža'),
(102736, 84646, 'lt', 'name', 'Baltijos gynybos koledžas'),
(102737, 84647, 'no_lang_code', 'name', 'KM-RoBoTa'),
(102738, 84648, 'pt', 'name', 'Faculdade Paulo PicanƧo'),
(102739, 84648, 'en', 'name', 'Paulo PicanƧo School of Dentistry'),
(102740, 84649, 'no_lang_code', 'name', 'Ebelle D''ebelle Pharmaceutical (United States)'),
(102741, 84650, 'en', 'name', 'Belarusian National Technical University'),
(102742, 84650, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š½Š°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Ń‹ Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(102743, 84650, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(102744, 84651, 'es', 'name', 'Ariadna Ediciones'),
(102745, 84651, 'en', 'name', 'Ariadna Publishing'),
(102746, 84652, 'en', 'name', 'West Ukrainian National University'),
(102747, 84652, 'uk', 'name', 'Š—Š°Ń…Ń–Š“Š½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(102748, 84653, 'en', 'name', 'Imam Khomeini Marine Science University'),
(102749, 84653, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† دریایی Ų§Ł…Ų§Ł… Ų®Ł…ŪŒŁ†ŪŒ'),
(102750, 84654, 'en', 'name', 'Australian Communications and Media Authority'),
(102751, 84655, 'en', 'name', 'Louisiana Delta Community College'),
(102752, 84656, 'no_lang_code', 'name', 'Guru Ghasidas Vishwavidyalaya'),
(102753, 84656, 'hi', 'name', 'ą¤—ą„ą¤°ą„‚ ą¤˜ą¤¾ą¤øą„€ą¤¦ą¤¾ą¤ø ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(102754, 84657, 'en', 'name', 'Huygens Institute for History and Culture of the Netherlands'),
(102755, 84657, 'nl', 'name', 'Huygens Instituut voor Nederlandse geschiedenis en cultuur'),
(102756, 84658, 'en', 'name', 'Ministry of Defense'),
(102757, 84658, 'ar', 'name', 'وزارة الدفاع'),
(102758, 84659, 'en', 'name', 'Khon Kaen University'),
(102759, 84659, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø‚ąø­ąø™ą¹ąøą¹ˆąø™'),
(102760, 84660, 'en', 'name', 'Macmurray College'),
(102761, 84661, 'en', 'name', 'New England Institute of Art'),
(102762, 84662, 'de', 'name', 'Max Planck Institut für Multidisziplinäre Naturwissenschaften'),
(102763, 84662, 'en', 'name', 'Max Planck Institute for Multidisciplinary Sciences'),
(102764, 84663, 'en', 'name', 'College of Allied Medical Science Akita University'),
(102765, 84663, 'ja', 'name', 'ē§‹ē”°å¤§å­¦åŒ»ē™‚ęŠ€č”“ēŸ­ęœŸå¤§å­¦éƒØ'),
(102766, 84664, 'no_lang_code', 'name', 'Conexant (United States)'),
(102767, 84665, 'en', 'name', 'Kyushu Tokai University'),
(102768, 84665, 'ja', 'name', 'ä¹å·žę±ęµ·å¤§å­¦'),
(102769, 84666, 'en', 'name', 'Sholokhov Moscow State University for Humanities'),
(102770, 84666, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. А. Шолохова'),
(102771, 84667, 'no_lang_code', 'name', 'Osaka Meijo Women''s College'),
(102772, 84667, 'ja', 'name', 'å¤§é˜Ŗę˜Žęµ„å„³å­ēŸ­ęœŸå¤§å­¦'),
(102773, 84668, 'en', 'name', 'Koryo International College'),
(102774, 84668, 'ja', 'name', 'å…‰é™µå„³å­ēŸ­ęœŸå¤§å­¦'),
(102775, 84669, 'no_lang_code', 'name', 'JDSU (United States)'),
(102776, 84670, 'en', 'name', 'Daniel Webster College'),
(102777, 84671, 'en', 'name', 'Center of Regenerative Medicine in Barcelona'),
(102778, 84672, 'en', 'name', 'Extreme Science and Engineering Discovery Environment'),
(102779, 84673, 'en', 'name', 'Canadian Polar Commission'),
(102780, 84674, 'no_lang_code', 'name', 'Mylan (Australia)'),
(102781, 84675, 'en', 'name', 'Yokkaichi University Junior College'),
(102782, 84675, 'ja', 'name', 'å››ę—„åø‚å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(102783, 84676, 'no_lang_code', 'name', 'Mylan (United States)'),
(102784, 84677, 'fr', 'name', 'Association Canadienne de l''Industrie des Plastiques'),
(102785, 84677, 'en', 'name', 'Canadian Plastics Industry Association'),
(102786, 84678, 'en', 'name', 'Osaka City University'),
(102787, 84678, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹å¤§å­¦'),
(102788, 84679, 'en', 'name', 'Health Sciences North'),
(102789, 84680, 'en', 'name', 'Perth Children''s Hospital'),
(102790, 84681, 'en', 'name', 'Athlone Institute of Technology'),
(102791, 84681, 'ga', 'name', 'Institiúid Teicneolaíochta Bhaile Átha Luain'),
(102792, 84682, 'en', 'name', 'Iwate College of Nursing'),
(102793, 84682, 'ja', 'name', 'å²©ę‰‹ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(102794, 84683, 'en', 'name', 'Fukuoka Social Medical Welfare University'),
(102795, 84683, 'ja', 'name', 'ē¦å²”åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(102796, 84684, 'en', 'name', 'Fukuoka International University'),
(102797, 84684, 'ja', 'name', 'ē¦å²”å›½éš›å¤§å­¦'),
(102798, 84685, 'en', 'name', 'Association of Super-Advanced Electronics'),
(102799, 84685, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆ č¶…å…ˆē«Æé›»å­ęŠ€č”“é–‹ē™ŗę©Ÿę§‹'),
(102800, 84686, 'fi', 'name', 'Tekes'),
(102801, 84687, 'en', 'name', 'Okayama Institute for Quantum Physics'),
(102802, 84687, 'ja', 'name', 'å²”å±±å…‰é‡å­ē§‘å­¦ē ”ē©¶ę‰€'),
(102803, 84688, 'en', 'name', 'Yamawaki Gakuen Junior College'),
(102804, 84688, 'ja', 'name', 'å±±č„‡å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(102805, 84689, 'en', 'name', 'Akita University'),
(102806, 84689, 'ja', 'name', '秋田大学'),
(102807, 84690, 'en', 'name', 'Max Planck Institute for Biophysical Chemistry'),
(102808, 84690, 'de', 'name', 'Max-Planck-Institut für Biophysikalische Chemie'),
(102809, 84691, 'en', 'name', 'Illinois Institute of Art'),
(102810, 84692, 'en', 'name', 'Indonesian National Institute of Aeronautics and Space'),
(102811, 84692, 'id', 'name', 'Lembaga Penerbangan dan Antariksa Nasional'),
(102812, 84693, 'no_lang_code', 'name', 'Mylan (India)'),
(102813, 84694, 'en', 'name', 'Art Institute of Pittsburgh'),
(102814, 84695, 'en', 'name', 'Canadian Breast Cancer Foundation'),
(102815, 84695, 'fr', 'name', 'Fondation canadienne du cancer du sein'),
(102816, 84696, 'no_lang_code', 'name', 'JDSU (Canada)'),
(102817, 84697, 'en', 'name', 'Narabunka Women''s College'),
(102818, 84697, 'ja', 'name', 'å„ˆč‰Æę–‡åŒ–å„³å­ēŸ­ęœŸå¤§å­¦'),
(102819, 84698, 'en', 'name', 'Art Institute of Las Vegas'),
(102820, 84699, 'en', 'name', 'Art Institute of York - Pennsylvania'),
(102821, 84700, 'ca', 'name', 'USP Institut Universitari Dexeus'),
(102822, 84701, 'en', 'name', 'Aboriginal Affairs Northern Dev Canada'),
(102823, 84701, 'fr', 'name', 'Affaires autochtones et du dƩveloppement du Nord canadien'),
(102824, 84702, 'no_lang_code', 'name', 'Viavi Solutions (United States)'),
(102825, 84703, 'en', 'name', 'Osaka Women''s Junior College'),
(102826, 84703, 'ja', 'name', '大阪儳子短期大学'),
(102827, 84704, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta Luimneach'),
(102828, 84704, 'en', 'name', 'Limerick Institute of Technology'),
(102829, 84705, 'fr', 'name', 'CongrĆØs National Luso Canadien'),
(102830, 84705, 'en', 'name', 'Portuguese Canadian National Congress'),
(102831, 84706, 'en', 'name', 'Agency for Assessment and Implementation Technology'),
(102832, 84706, 'id', 'name', 'Badan Pengkajian dan Penerapan Teknologi'),
(102833, 84707, 'en', 'name', 'China National Centre for Food Safety Risk Assessment'),
(102834, 84708, 'en', 'name', 'Eijkman Institute for Molecular Biology'),
(102835, 84709, 'en', 'name', 'Suzugamine Women''s College'),
(102836, 84709, 'ja', 'name', '鈓峯儳子短期大学'),
(102837, 84710, 'en', 'name', 'The Art Institutes'),
(102838, 84711, 'en', 'name', 'Department of Biomedicine Basel'),
(102839, 84712, 'no_lang_code', 'name', 'JDSU (Switzerland)'),
(102840, 84713, 'no_lang_code', 'name', 'Mylan (United Kingdom)'),
(102841, 84714, 'en', 'name', 'University of Creation Art, Music & Social Work'),
(102842, 84714, 'ja', 'name', '創造学園大学'),
(102843, 84715, 'no_lang_code', 'name', 'Oxford Medical Diagnostics (United Kingdom)'),
(102844, 84716, 'en', 'name', 'Max Planck Institute of Experimental Medicine'),
(102845, 84716, 'de', 'name', 'Max-Planck-Institut für Experimentelle Medizin'),
(102846, 84717, 'en', 'name', 'Art Institute of Colorado'),
(102847, 84718, 'en', 'name', 'Art Institute of Portland'),
(102848, 84719, 'en', 'name', 'Public Library of Science'),
(102849, 84720, 'en', 'name', 'Office for Health Improvement and Disparities'),
(102850, 84721, 'en', 'name', 'Enterprise Cape Breton Corporation'),
(102851, 84722, 'en', 'name', 'Swedish e-Science Research Center'),
(102852, 84723, 'en', 'name', 'Biophysics Center of Armenian'),
(102853, 84724, 'id', 'name', 'Direktorat Jenderal Pendidikan Tinggi'),
(102854, 84724, 'en', 'name', 'Ministry of Research, Technology and Higher Education'),
(102855, 84725, 'en', 'name', 'Białystok School of Public Administration'),
(102856, 84725, 'pl', 'name', 'Wyższa Szkoła Administracji Publicznej w Białymstoku'),
(102857, 84726, 'en', 'name', 'Okazaki National Research Institutes'),
(102858, 84726, 'ja', 'name', 'å²”å“Žå›½ē«‹å…±åŒē ”ē©¶ę©Ÿę§‹'),
(102859, 84727, 'no_lang_code', 'name', 'JDSU (China)'),
(102860, 84728, 'en', 'name', 'Kangnam Sacred Heart Hospital'),
(102861, 84729, 'en', 'name', 'Osaka Prefectural Medical Center'),
(102862, 84729, 'ja', 'name', 'å¤§é˜Ŗę€„ę€§ęœŸ'),
(102863, 84730, 'en', 'name', 'Osaka Prefecture University'),
(102864, 84730, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹å¤§å­¦'),
(102865, 84731, 'en', 'name', 'Art Institute of Seattle'),
(102866, 84732, 'en', 'name', 'Ernest Gallo Clinic and Research Center'),
(102867, 84733, 'en', 'name', 'Kobe University of Fashion and Design'),
(102868, 84733, 'ja', 'name', 'ē„žęˆøćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³é€ å½¢å¤§å­¦'),
(102869, 84734, 'en', 'name', 'Art Institutes International Minnesota'),
(102870, 84735, 'en', 'name', 'National Agency for New Technologies Energy and Sustainable Economic Development'),
(102871, 84736, 'en', 'name', 'Aichi Kiwami College of Nursing'),
(102872, 84736, 'ja', 'name', 'ę„›ēŸ„ćć‚ćæēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(102873, 84737, 'en', 'name', 'Wellcome Library'),
(102874, 84738, 'en', 'name', 'Indigenous Services Canada'),
(102875, 84738, 'fr', 'name', 'Services aux Autochtones Canada'),
(102876, 84739, 'en', 'name', 'St. Thomas University'),
(102877, 84739, 'ja', 'name', 'č–ćƒˆćƒžć‚¹å¤§å­¦'),
(102878, 84740, 'en', 'name', 'Center of Advanced European Studies and Research'),
(102879, 84740, 'de', 'name', 'Forschungszentrum caesar'),
(102880, 84741, 'fr', 'name', 'Association canadienne de l’énergie Ć©olienne'),
(102881, 84741, 'en', 'name', 'Canadian Wind Energy Association'),
(102882, 84742, 'fr', 'name', 'HƓpital rƩgional de Sudbury'),
(102883, 84742, 'en', 'name', 'Sudbury Regional Hospital'),
(102884, 84743, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta Leitir Ceanainn'),
(102885, 84743, 'en', 'name', 'Letterkenny Institute of Technology'),
(102886, 84744, 'en', 'name', 'Interdisciplinary Institute for BroadBand Technology'),
(102887, 84744, 'nl', 'name', 'iMinds'),
(102888, 84745, 'en', 'name', 'Osaka City University Hospital'),
(102889, 84745, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(102890, 84746, 'no_lang_code', 'name', 'SuperGen (United States)'),
(102891, 84747, 'no_lang_code', 'name', 'Kobe Shukugawa Gakuin University'),
(102892, 84747, 'ja', 'name', 'ē„žęˆøå¤™å·å­¦é™¢å¤§å­¦'),
(102893, 84748, 'no_lang_code', 'name', 'Mylan (Italy)'),
(102894, 84749, 'en', 'name', 'Yamazaki College of Animal Health Technology'),
(102895, 84749, 'ja', 'name', 'ćƒ¤ćƒžć‚¶ć‚­å‹•ē‰©ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(102896, 84750, 'en', 'name', 'Advanced Materials and BioEngineering Research'),
(102897, 84751, 'en', 'name', 'The Nature Conservancy'),
(102898, 84752, 'en', 'name', 'Galway-Mayo Institute of Technology'),
(102899, 84752, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta na Gaillimhe-Maigh Eo'),
(102900, 84753, 'fr', 'name', 'Thunken'),
(102901, 84754, 'no_lang_code', 'name', 'Mylan (South Africa)'),
(102902, 84755, 'en', 'name', 'Princess Margaret Hospital for Children'),
(102903, 84756, 'no_lang_code', 'name', 'Tokyo Jogakkan College'),
(102904, 84756, 'ja', 'name', 'ę±äŗ¬å„³å­¦é¤Øå¤§å­¦'),
(102905, 84757, 'en', 'name', 'Crown-Indigenous Relations and Northern Affairs Canada'),
(102906, 84757, 'fr', 'name', 'Relations Couronne-Autochtones et des Affaires du Nord Canada'),
(102907, 84758, 'en', 'name', 'Gunma Shorei Junior College of Welfare'),
(102908, 84758, 'ja', 'name', 'ē¾¤é¦¬ę¾å¶ŗē¦ē„‰ēŸ­ęœŸå¤§å­¦'),
(102909, 84759, 'en', 'name', 'Mie Chukyo University'),
(102910, 84759, 'ja', 'name', 'äø‰é‡äø­äŗ¬å¤§å­¦'),
(102911, 84760, 'no_lang_code', 'name', 'Mylan (Germany)'),
(102912, 84761, 'en', 'name', 'UCL Australia'),
(102913, 84762, 'no_lang_code', 'name', 'Seibo Jogakuin Junior College'),
(102914, 84762, 'ja', 'name', 'č–ęÆå„³å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(102915, 84763, 'no_lang_code', 'name', 'Mylan (Sweden)'),
(102916, 84764, 'en', 'name', 'Bunka Womens University Muroran Junior College'),
(102917, 84764, 'ja', 'name', 'ę–‡åŒ–å„³å­å¤§å­¦å®¤č˜­ēŸ­ęœŸå¤§å­¦'),
(102918, 84765, 'no_lang_code', 'name', 'Mylan (Switzerland)'),
(102919, 84766, 'en', 'name', 'Caritas Junior College'),
(102920, 84766, 'ja', 'name', 'ć‚«ćƒŖć‚æć‚¹å„³å­ēŸ­ęœŸå¤§å­¦'),
(102921, 84767, 'en', 'name', 'Aichi Prefectural Cardiovascular Respiratory Disease Center'),
(102922, 84767, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å¾Ŗē’°å™Øå‘¼åøå™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(102923, 84768, 'en', 'name', 'Central European Institute of Technology'),
(102924, 84769, 'en', 'name', 'Art Institute of New York'),
(102925, 84770, 'fr', 'name', 'Agence ExĆ©cutive pour les Consommateurs, la SantĆ©, l’agriculture et l’alimentation'),
(102926, 84770, 'en', 'name', 'Consumers, Health, Agriculture and Food Executive Agency'),
(102927, 84770, 'de', 'name', 'Exekutivagentur für Verbraucher, Gesundheit, Landwirtschaft und Lebensmittel'),
(102928, 84771, 'pl', 'name', 'Instytut Biotechnologii i Antybiotyków'),
(102929, 84772, 'no_lang_code', 'name', 'Sustainable Innovations (United States)'),
(102930, 84773, 'no_lang_code', 'name', 'Takata (United States)'),
(102931, 84774, 'pl', 'name', 'Akademia Wychowania Fizycznego we Wrocławiu'),
(102932, 84775, 'no_lang_code', 'name', 'Sematech (United States)'),
(102933, 84776, 'en', 'name', 'Penn State Brandywine'),
(102934, 84777, 'en', 'name', 'Ministry of Research, Innovation and Science'),
(102935, 84778, 'no_lang_code', 'name', 'MVV Energie'),
(102936, 84779, 'en', 'name', 'RIKEN Quantitative Biology Center'),
(102937, 84780, 'en', 'name', 'Penn State Hazleton'),
(102938, 84781, 'no_lang_code', 'name', 'Atmel (Germany)'),
(102939, 84782, 'no_lang_code', 'name', 'Maney Publishing (United Kingdom)'),
(102940, 84783, 'en', 'name', 'Ross University School of Medicine'),
(102941, 84784, 'en', 'name', 'TB HIV Care Association'),
(102942, 84785, 'no_lang_code', 'name', 'Genome Explorations (United States)'),
(102943, 84786, 'no_lang_code', 'name', 'Terumo BCT (United States)'),
(102944, 84787, 'no_lang_code', 'name', 'Medicines Company (India)'),
(102945, 84788, 'en', 'name', 'Velikolukskaya State Agricultural Academy'),
(102946, 84788, 'ru', 'name', 'Š’ŠµŠ»ŠøŠŗŠ¾Š»ŃƒŠŗŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(102947, 84789, 'en', 'name', 'Financialist'),
(102948, 84790, 'no_lang_code', 'name', 'Saurer Schlafhorst (Czechia)'),
(102949, 84791, 'no_lang_code', 'name', 'Oncor Electric Delivery (United States)'),
(102950, 84792, 'en', 'name', 'Higher Administrative School of St.Peterburg''s Administration'),
(102951, 84793, 'en', 'name', 'University of Nevada, Reno School of Medicine'),
(102952, 84794, 'en', 'name', 'Oregon Health & Science University School of Medicine'),
(102953, 84795, 'no_lang_code', 'name', 'Mentor Graphics (United Kingdom)'),
(102954, 84796, 'no_lang_code', 'name', 'Bayer CropScience (Belgium)'),
(102955, 84797, 'fr', 'name', 'Ɖcole nationale vĆ©tĆ©rinaire de Lyon'),
(102956, 84798, 'en', 'name', 'Argosy University, Twin Cities'),
(102957, 84799, 'sv', 'name', 'KƤrnsjukhuset i Skƶvde'),
(102958, 84800, 'en', 'name', 'Benedictine University'),
(102959, 84801, 'no_lang_code', 'name', 'Raufoss Fuel Systems (Norway)'),
(102960, 84802, 'en', 'name', 'Gaston College'),
(102961, 84803, 'no_lang_code', 'name', 'Lasergen (United States)'),
(102962, 84804, 'en', 'name', 'College of International and Public Relations'),
(102963, 84804, 'cs', 'name', 'VysokĆ” Å”kola mezinĆ”rodnĆ­ch a veřejných vztahÅÆ Praha'),
(102964, 84805, 'en', 'name', 'PinnacleHealth System'),
(102965, 84806, 'no_lang_code', 'name', 'CareFusion'),
(102966, 84807, 'en', 'name', 'Sint Anna Hospital'),
(102967, 84808, 'no_lang_code', 'name', 'Eurovia (Czechia)'),
(102968, 84809, 'en', 'name', 'Insight'),
(102969, 84810, 'en', 'name', 'Danish Data Archives'),
(102970, 84811, 'en', 'name', 'National Coalition of Hispanic Health and Human Services Organizations'),
(102971, 84812, 'no_lang_code', 'name', 'Apotex (Hungary)'),
(102972, 84813, 'en', 'name', 'Penn State Fayette'),
(102973, 84814, 'en', 'name', 'Easter Seals Delaware & Marylands Eastern Shore'),
(102974, 84815, 'no_lang_code', 'name', 'Mocon (United States)'),
(102975, 84816, 'en', 'name', 'Ryazan State Radiotechnical University'),
(102976, 84817, 'no_lang_code', 'name', 'Computational Industry Technologies (Norway)'),
(102977, 84818, 'no_lang_code', 'name', 'Toyota Boshoku (Japan)'),
(102978, 84818, 'ja', 'name', 'ćƒˆćƒØć‚æē“”ē¹”ę Ŗå¼ä¼šē¤¾'),
(102979, 84819, 'cs', 'name', 'VysokĆ” Skola Ekonomie a Managementu'),
(102980, 84820, 'en', 'name', 'Golden Opportunities Foundation'),
(102981, 84821, 'en', 'name', 'Finnish Geodetic Institute'),
(102982, 84822, 'no_lang_code', 'name', 'DompƩ (Italy)'),
(102983, 84823, 'en', 'name', 'Iraqi Institute of Ancient Culture'),
(102984, 84823, 'ja', 'name', 'ć‚¤ćƒ©ć‚Æå¤ä»£ę–‡åŒ–ē ”ē©¶ę‰€'),
(102985, 84824, 'no_lang_code', 'name', 'Tadiran Batteries (Israel)'),
(102986, 84825, 'en', 'name', 'Epsom Hospital'),
(102987, 84826, 'en', 'name', 'Novosibirsk State Academy of Architecture and Art'),
(102988, 84827, 'no_lang_code', 'name', 'Biosense Webster (Israel)'),
(102989, 84828, 'en', 'name', 'United States Agency for International Development'),
(102990, 84829, 'no_lang_code', 'name', 'MEL Chemicals (United Kingdom)'),
(102991, 84830, 'en', 'name', 'AndrĆ”s Pető College'),
(102992, 84830, 'hu', 'name', 'Š¤Š°ŠŗŃƒŠ»ŃŒŃ‚ŠµŃ‚ ŠŠ½Š“Ń€Š°Ńˆ ŠŸŠµŃ‚Ń‘'),
(102993, 84831, 'no_lang_code', 'name', 'Solulink (United States)'),
(102994, 84832, 'no_lang_code', 'name', 'Exiqon (Denmark)'),
(102995, 84833, 'en', 'name', 'American Sentinel University'),
(102996, 84834, 'en', 'name', 'National Agricultural Research Center for Tohoku Region'),
(102997, 84835, 'en', 'name', 'MRC Anatomical Neuropharmacology Unit'),
(102998, 84836, 'en', 'name', 'Combined Military Hospital Rawalpindi'),
(102999, 84837, 'no_lang_code', 'name', 'MSD Animal Health (Germany)'),
(103000, 84838, 'en', 'name', 'Community Service Society of New York'),
(103001, 84839, 'en', 'name', 'Agriculture Research Center'),
(103002, 84840, 'en', 'name', 'Campden and Chorleywood Food Research Association'),
(103003, 84841, 'en', 'name', 'Wassit University'),
(103004, 84842, 'no_lang_code', 'name', 'Primity (United States)'),
(103005, 84843, 'fr', 'name', 'Haut Commissariat des Nations unies pour les rƩfugiƩs'),
(103006, 84843, 'en', 'name', 'United Nations High Commissioner for Refugees'),
(103007, 84844, 'fr', 'name', 'Haute Ɖcole de Travail Social et de la SantĆ©'),
(103008, 84845, 'en', 'name', 'Cold Laser Therapy Center'),
(103009, 84846, 'en', 'name', 'National Center for Genome Resources'),
(103010, 84847, 'en', 'name', 'Kamenets Podolsky National University'),
(103011, 84848, 'no_lang_code', 'name', 'Computer Sciences Corporation (Australia)'),
(103012, 84849, 'en', 'name', 'Long Island University at Riverhead'),
(103013, 84850, 'no_lang_code', 'name', 'Preactor (United Kingdom)'),
(103014, 84851, 'no_lang_code', 'name', 'Target (United Kingdom)'),
(103015, 84852, 'en', 'name', 'Argosy University'),
(103016, 84853, 'en', 'name', 'International Crops Research Institute for the Semi-Arid Tropics'),
(103017, 84854, 'en', 'name', 'Cook For Your Life'),
(103018, 84855, 'en', 'name', 'United Nations Office for Project Services'),
(103019, 84856, 'no_lang_code', 'name', 'Dow Wolff Cellulosics (United States)'),
(103020, 84857, 'en', 'name', 'Hokkaido Red Cross Blood Center'),
(103021, 84857, 'ja', 'name', 'åŒ—ęµ·é“čµ¤åå­—č”€ę¶²ć‚»ćƒ³ć‚æćƒ¼'),
(103022, 84858, 'de', 'name', 'Poliklinik für Kieferorthopädie'),
(103023, 84859, 'en', 'name', 'Susan G Komen Southern Arizona'),
(103024, 84860, 'en', 'name', 'South University'),
(103025, 84861, 'en', 'name', 'Riga Teacher Training and Educational Management Academy'),
(103026, 84862, 'no_lang_code', 'name', 'Bard (Ireland)'),
(103027, 84863, 'no_lang_code', 'name', 'Leica Biosystems (United States)'),
(103028, 84864, 'en', 'name', 'Underwood Memorial Hospital'),
(103029, 84865, 'en', 'name', 'General Jerzy Ziętek Silesian School of Management'),
(103030, 84866, 'en', 'name', 'Kawasaki Medical University'),
(103031, 84867, 'en', 'name', 'European University of Applied Sciences'),
(103032, 84867, 'de', 'name', 'EuropƤische Fachhochschule'),
(103033, 84868, 'en', 'name', 'International University of Business and New Technologies'),
(103034, 84868, 'ru', 'name', 'Ярославский Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ бизнеса Šø новых технологий'),
(103035, 84869, 'de', 'name', 'LehrkrankenhƤuser'),
(103036, 84870, 'en', 'name', 'Structural Genomics Consortium'),
(103037, 84871, 'en', 'name', 'Leningrad State University named after AS Pushkin'),
(103038, 84871, 'ru', 'name', 'ЛенинграГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š”. Пушкина'),
(103039, 84872, 'no_lang_code', 'name', 'United Technologies (Canada)'),
(103040, 84873, 'en', 'name', 'Office of Public and Intergovernmental Affairs'),
(103041, 84874, 'no_lang_code', 'name', 'Scientific Systems (United States)'),
(103042, 84875, 'no_lang_code', 'name', 'World Agroforestry Centre'),
(103043, 84876, 'en', 'name', 'GBF German Research Centre for Biotechnology'),
(103044, 84876, 'de', 'name', 'Helmholtz-Gemeinschaft Deutscher Forschungszentren'),
(103045, 84877, 'no_lang_code', 'name', 'ARIAD Pharmaceuticals (United States)'),
(103046, 84878, 'en', 'name', 'Argosy University'),
(103047, 84879, 'en', 'name', 'Bassett Medical Center'),
(103048, 84880, 'en', 'name', 'Perm State Pedagogical University'),
(103049, 84881, 'pl', 'name', 'Szkoła Wyższa Prawa i Dyplomacji w Gdyni'),
(103050, 84882, 'no_lang_code', 'name', 'Humigen'),
(103051, 84883, 'en', 'name', 'Boston University School of Medicine'),
(103052, 84884, 'no_lang_code', 'name', 'Regienov Groupement D Interet Economique'),
(103053, 84885, 'en', 'name', 'University of Phoenix'),
(103054, 84886, 'en', 'name', 'La Source'),
(103055, 84887, 'no_lang_code', 'name', 'Airgas (United States)'),
(103056, 84888, 'en', 'name', 'North Cumbria University Hospitals NHS Trust'),
(103057, 84889, 'no_lang_code', 'name', 'Medicines Company (United Kingdom)'),
(103058, 84890, 'no_lang_code', 'name', 'FEI (Germany)'),
(103059, 84891, 'en', 'name', 'Jining Medical College'),
(103060, 84892, 'no_lang_code', 'name', 'Strafica (Finland)'),
(103061, 84893, 'no_lang_code', 'name', 'Aptiv (United States)'),
(103062, 84894, 'en', 'name', 'Shionogi Institute For Medical Science'),
(103063, 84895, 'es', 'name', 'Universidad Simón Bolívar'),
(103064, 84896, 'no_lang_code', 'name', 'Leica Microsystems (United Kingdom)'),
(103065, 84897, 'en', 'name', 'Indian Institute for Human Settlemnts'),
(103066, 84898, 'fr', 'name', 'Laboratoire de Neurobiologie & DƩveloppement'),
(103067, 84899, 'en', 'name', 'Organisation for Economic Co-operation and Development'),
(103068, 84900, 'no_lang_code', 'name', 'Iveco (United Kingdom)'),
(103069, 84901, 'no_lang_code', 'name', 'Leica (United Kingdom)'),
(103070, 84902, 'en', 'name', 'Illawarra Area Health Service'),
(103071, 84903, 'en', 'name', 'Institute of Cellular Biology and Pathology'),
(103072, 84904, 'en', 'name', 'Texas Tech University Health Sciences Center'),
(103073, 84905, 'no_lang_code', 'name', 'Wiener Linien'),
(103074, 84906, 'uz', 'name', 'Toshkent Davlat Pedagogika Universiteti'),
(103075, 84907, 'en', 'name', 'Angiogenesis and Cancer Microenvironment Laboratory'),
(103076, 84907, 'fr', 'name', 'AngiogenĆØse et laboratoire sur le microenvironnement du cancer'),
(103077, 84908, 'en', 'name', 'Parkside School'),
(103078, 84909, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization'),
(103079, 84910, 'fr', 'name', 'MinistĆØre de l''Education Nationale and de la Formation Professionnelle'),
(103080, 84911, 'de', 'name', 'Kantonsspital Bruderholz'),
(103081, 84912, 'no_lang_code', 'name', 'Pratt & Whitney Canada (Canada)'),
(103082, 84913, 'no_lang_code', 'name', 'Sand9 (United States)'),
(103083, 84914, 'en', 'name', 'Cellular Biology and Neurobiology Institute'),
(103084, 84914, 'it', 'name', 'Istituto di Biologia Cellulare e Neurobiologia'),
(103085, 84915, 'no_lang_code', 'name', 'Esko (Germany)'),
(103086, 84916, 'en', 'name', 'University of Pittsburgh School of Medicine'),
(103087, 84917, 'en', 'name', 'Santa Barbara and Ventura Colleges of Law'),
(103088, 84918, 'no_lang_code', 'name', 'Kraft (Canada)'),
(103089, 84919, 'no_lang_code', 'name', 'Axio Research (United States)'),
(103090, 84920, 'en', 'name', 'Elabuga State Pedagogical University'),
(103091, 84921, 'en', 'name', 'Adygeya State University'),
(103092, 84921, 'ru', 'name', 'АГыгейский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(103093, 84922, 'no_lang_code', 'name', 'Catacel (United States)'),
(103094, 84923, 'en', 'name', 'Saint Petersburg Art and Industry Academy'),
(103095, 84923, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š¾-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени А.Š›. Штиглица'),
(103096, 84924, 'no_lang_code', 'name', 'Hartmann & Braun (Germany)'),
(103097, 84925, 'en', 'name', 'Miami University Hamilton'),
(103098, 84926, 'en', 'name', 'Consultative Group on International Agricultural Research'),
(103099, 84927, 'no_lang_code', 'name', 'Alcatel-Lucent (Canada)'),
(103100, 84928, 'no_lang_code', 'name', 'Sucampo (United States)'),
(103101, 84929, 'no_lang_code', 'name', 'Ahold (Netherlands)'),
(103102, 84930, 'da', 'name', 'Sygehus Vendsyssel'),
(103103, 84931, 'no_lang_code', 'name', 'Bard (France)'),
(103104, 84932, 'en', 'name', 'World Agroforestry Centre'),
(103105, 84933, 'no_lang_code', 'name', 'Lorillard (United States)'),
(103106, 84934, 'en', 'name', 'Fraunhofer Center for Molecular Biotechnology'),
(103107, 84935, 'no_lang_code', 'name', 'Alcatel-Lucent (France)'),
(103108, 84936, 'no_lang_code', 'name', 'Rockwell Collins (United Kingdom)'),
(103109, 84937, 'en', 'name', 'The University Press'),
(103110, 84937, 'no_lang_code', 'name', 'Universitetsforlaget (Norway)'),
(103111, 84938, 'no_lang_code', 'name', 'Silicon Graphics International (United Kingdom)'),
(103112, 84939, 'no_lang_code', 'name', 'Aker BioMarine (Norway)'),
(103113, 84940, 'no_lang_code', 'name', 'Kolyada Theater'),
(103114, 84940, 'ru', 'name', 'ŠšŠ¾Š»ŃŠ“Š°-театр'),
(103115, 84941, 'no_lang_code', 'name', 'Anite (United Kingdom)'),
(103116, 84942, 'en', 'name', 'Centre for Applied Science and Technology'),
(103117, 84943, 'no_lang_code', 'name', 'Myriad Rules-Based Medicine (United States)'),
(103118, 84944, 'no_lang_code', 'name', 'Calsonic Kansei (United Kingdom)'),
(103119, 84945, 'pl', 'name', 'Akademia Wychowania Fizycznego im. Bronisława Czecha w Krakowie'),
(103120, 84946, 'en', 'name', 'Stavropol State Medical University'),
(103121, 84947, 'de', 'name', 'Klinik für Hautkrankheiten'),
(103122, 84948, 'pt', 'name', 'Escola Superior ArtĆ­stica do Porto'),
(103123, 84949, 'no_lang_code', 'name', 'The Medicines Company (Canada)'),
(103124, 84950, 'no_lang_code', 'name', 'Iveco (Italy)'),
(103125, 84951, 'no_lang_code', 'name', 'Balfour Beatty Rail (United Kingdom)'),
(103126, 84952, 'no_lang_code', 'name', 'General Cable (United States)'),
(103127, 84953, 'en', 'name', 'University of Central Asia'),
(103128, 84954, 'es', 'name', 'Universidad Andina Simón Bolívar'),
(103129, 84955, 'no_lang_code', 'name', 'COMAT Composite Materials (Germany)'),
(103130, 84956, 'it', 'name', 'Istituto Nazionale della Nutrizione'),
(103131, 84957, 'en', 'name', 'Exploit Technologies Pte Ltd'),
(103132, 84958, 'en', 'name', 'Darwin College'),
(103133, 84959, 'en', 'name', 'Ohio History Connection'),
(103134, 84960, 'en', 'name', 'Sungsan Hyodo Graduate School'),
(103135, 84960, 'ko', 'name', 'č–å±±å­å¤§å­øé™¢å¤§å­øę•Ž'),
(103136, 84961, 'en', 'name', 'Bamboo Research Center'),
(103137, 84961, 'zh', 'name', 'å›½å®¶ęž—äøšå’Œč‰åŽŸå±€ē«¹å­ē ”ē©¶å¼€å‘äø­åæƒ'),
(103138, 84962, 'de', 'name', 'St.Anna Kinderspital'),
(103139, 84963, 'no_lang_code', 'name', 'Femtolasers Produktions (Austria)'),
(103140, 84964, 'no_lang_code', 'name', 'Gwent Electronic Materials (United Kingdom)'),
(103141, 84965, 'en', 'name', 'Kharkov State Zooveterinary Academy'),
(103142, 84966, 'en', 'name', 'South West Public Health Observatory'),
(103143, 84967, 'en', 'name', 'Sutter Health'),
(103144, 84968, 'no_lang_code', 'name', 'Vyzkumny Ustav Kovu (Czechia)'),
(103145, 84969, 'en', 'name', 'Argosy University'),
(103146, 84970, 'en', 'name', 'Harbin Institute of Technology Shenzhen Graduate School'),
(103147, 84970, 'zh', 'name', 'å“ˆå°”ę»Øå·„äøšå¤§å­¦ę·±åœ³ē ”ē©¶ē”Ÿé™¢'),
(103148, 84971, 'no_lang_code', 'name', 'Cavendish University Zambi'),
(103149, 84972, 'en', 'name', 'Institute of Health Sciences'),
(103150, 84972, 'zh', 'name', '偄康科学研究所'),
(103151, 84973, 'no_lang_code', 'name', 'Shire (Canada)'),
(103152, 84974, 'no_lang_code', 'name', 'Intelligent Bio-Systems (United States)'),
(103153, 84975, 'en', 'name', 'International Center for Agricultural Research in the Dry Areas'),
(103154, 84976, 'en', 'name', 'wanage Community Hospital');
INSERT INTO `ror_settings` VALUES
(103155, 84977, 'no_lang_code', 'name', 'UKK Institute'),
(103156, 84978, 'no_lang_code', 'name', 'Rockwell (United States)'),
(103157, 84979, 'en', 'name', 'Svey Rieng University'),
(103158, 84979, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžŸįŸ’įžœįž¶įž™įžšįŸ€įž„'),
(103159, 84980, 'no_lang_code', 'name', 'Oclaro Technology (United Kingdom)'),
(103160, 84981, 'en', 'name', 'Argosy University'),
(103161, 84982, 'no_lang_code', 'name', 'Bard (United Kingdom)'),
(103162, 84983, 'en', 'name', 'University of Minnesota Medical School'),
(103163, 84984, 'fr', 'name', 'Théâtre de la Tempête'),
(103164, 84985, 'no_lang_code', 'name', 'Anacor Pharmaceuticals (United States)'),
(103165, 84986, 'no_lang_code', 'name', 'Alcatel-Lucent (China)'),
(103166, 84987, 'en', 'name', 'Benefis Hospital'),
(103167, 84988, 'en', 'name', 'National University of Civil Protection of Ukraine'),
(103168, 84988, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń†ŠøŠ²Ń–Š»ŃŒŠ½Š¾Š³Š¾ Š·Š°Ń…ŠøŃŃ‚Ńƒ України'),
(103169, 84989, 'en', 'name', 'All Talent Agency'),
(103170, 84990, 'en', 'name', 'University of Louisville Foundation'),
(103171, 84991, 'en', 'name', 'Russian State University named after AN Kosygin'),
(103172, 84992, 'en', 'name', 'Fukuoka Junior College of Social Work and Child Education'),
(103173, 84992, 'ja', 'name', 'ē¦å²”ēœŒē¤¾ä¼šäæč‚²ēŸ­ęœŸå¤§å­¦'),
(103174, 84993, 'no_lang_code', 'name', 'Reinnervate (United Kingdom)'),
(103175, 84994, 'en', 'name', 'Art Institute of Indianapolis'),
(103176, 84995, 'en', 'name', 'South University Savannah'),
(103177, 84996, 'en', 'name', 'Shenzhen Bao''an Maternal And Child Health Hospital'),
(103178, 84997, 'no_lang_code', 'name', 'Teledyne RD Instruments (United States)'),
(103179, 84998, 'no_lang_code', 'name', 'Rubicon Genomics (United States)'),
(103180, 84999, 'no_lang_code', 'name', 'Sharp (United States)'),
(103181, 85000, 'no_lang_code', 'name', 'Italdesign Giugiaro (Italy)'),
(103182, 85001, 'en', 'name', 'United Nations Population Fund'),
(103183, 85002, 'no_lang_code', 'name', 'Mast Therapeutics (United States)'),
(103184, 85003, 'en', 'name', 'World Bank'),
(103185, 85004, 'en', 'name', 'United Nations Development Programme'),
(103186, 85005, 'no_lang_code', 'name', 'Chunichi Shimbun'),
(103187, 85006, 'en', 'name', 'WEGEMT Organisation'),
(103188, 85007, 'pt', 'name', 'Escola Guignard'),
(103189, 85007, 'en', 'name', 'Guignard University of Art of Minas Gerais'),
(103190, 85008, 'es', 'name', 'Universidad de Oregón'),
(103191, 85008, 'en', 'name', 'University of Oregon'),
(103192, 85009, 'en', 'name', 'Alliant International University'),
(103193, 85010, 'en', 'name', 'Avila College'),
(103194, 85011, 'no_lang_code', 'name', 'Nanosphere (United States)'),
(103195, 85012, 'fr', 'name', 'HƓpital Tarnier-Cochin'),
(103196, 85013, 'no_lang_code', 'name', 'Holcim (Switzerland)'),
(103197, 85014, 'en', 'name', 'Texas Tech University'),
(103198, 85015, 'no_lang_code', 'name', 'LaVision BioTec (Germany)'),
(103199, 85016, 'no_lang_code', 'name', 'Stratatech Corporation'),
(103200, 85017, 'en', 'name', 'Brookwood Medical Center'),
(103201, 85018, 'en', 'name', 'University of Wisconsin–Marshfield Wood County'),
(103202, 85019, 'en', 'name', 'China Academy of Telecommunication Research'),
(103203, 85019, 'zh', 'name', 'å·„äøšå’Œäæ”ęÆåŒ–éƒØē”µäæ”ē ”ē©¶é™¢'),
(103204, 85020, 'en', 'name', 'Japanese Red Cross Musashino Junior College Of Nursing'),
(103205, 85020, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ę­¦č”µé‡ŽēŸ­ęœŸå¤§å­¦'),
(103206, 85021, 'en', 'name', 'Penn State Wilkes-Barre'),
(103207, 85022, 'no_lang_code', 'name', 'Sigma-Aldrich (Canada)'),
(103208, 85023, 'no_lang_code', 'name', 'NPS Allelix (Canada)'),
(103209, 85024, 'en', 'name', 'Penn State Abington'),
(103210, 85025, 'en', 'name', 'General Hospital Nice Piraeus Saint Panteleimon'),
(103211, 85026, 'en', 'name', 'United Nations Population Fund'),
(103212, 85027, 'no_lang_code', 'name', 'Cameron (United States)'),
(103213, 85028, 'en', 'name', 'Liberators University'),
(103214, 85029, 'en', 'name', 'Nagoya Keizai University Junior College'),
(103215, 85030, 'en', 'name', 'Academy of Labor and Social Relations'),
(103216, 85030, 'ru', 'name', 'Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ филиал АкаГемии Ń‚Ń€ŃƒŠ“Š° Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(103217, 85031, 'pl', 'name', 'Wyższa Szkoła Humanistyczno-Ekonomiczna we Włocławku'),
(103218, 85032, 'no_lang_code', 'name', 'Foster Wheeler (Finland)'),
(103219, 85033, 'no_lang_code', 'name', 'GE Renewable Energy (Germany)'),
(103220, 85034, 'en', 'name', 'University of Sumatera'),
(103221, 85035, 'no_lang_code', 'name', 'Areva (United Kingdom)'),
(103222, 85036, 'en', 'name', 'United Nations Population Fund'),
(103223, 85037, 'no_lang_code', 'name', 'Applied Nanotech Holdings (United States)'),
(103224, 85038, 'no_lang_code', 'name', 'Renishaw Diagnostics (United Kingdom)'),
(103225, 85039, 'no_lang_code', 'name', 'Selex ES (Germany)'),
(103226, 85040, 'en', 'name', 'Tokyo Women''s Junior College of Physical Education'),
(103227, 85040, 'ja', 'name', 'ę±äŗ¬å„³å­ä½“č‚²ēŸ­ęœŸå¤§å­¦'),
(103228, 85041, 'no_lang_code', 'name', 'Cytec (Austria)'),
(103229, 85042, 'no_lang_code', 'name', 'Scientific Systems Company (United States)'),
(103230, 85043, 'en', 'name', 'Northland Community and Technical College'),
(103231, 85044, 'en', 'name', 'Texas A&M Health Science Center'),
(103232, 85045, 'en', 'name', 'Food and Agriculture Organization of the United Nations'),
(103233, 85046, 'no_lang_code', 'name', 'Shire (Belgium)'),
(103234, 85047, 'no_lang_code', 'name', 'Centro Elettrotecnico Sperimentale Italiano (Germany)'),
(103235, 85048, 'en', 'name', 'Russian State University of Trade and Economics'),
(103236, 85049, 'no_lang_code', 'name', 'Carlo Gavazzi (Italy)'),
(103237, 85050, 'no_lang_code', 'name', 'Zettlex (United Kingdom)'),
(103238, 85051, 'no_lang_code', 'name', 'MƩrieux NutriSciences (France)'),
(103239, 85052, 'en', 'name', 'Hospital HƩdi Chaker of Sfax'),
(103240, 85053, 'no_lang_code', 'name', 'Alta (Italy)'),
(103241, 85054, 'en', 'name', 'Johns Hopkins Center for Communication Programs'),
(103242, 85055, 'no_lang_code', 'name', 'Controls and Data Services (United Kingdom)'),
(103243, 85056, 'no_lang_code', 'name', 'UTC Aerospace Systems (France)'),
(103244, 85057, 'no_lang_code', 'name', 'MAN (Germany)'),
(103245, 85058, 'en', 'name', 'Pierce College'),
(103246, 85059, 'no_lang_code', 'name', 'Molecular NeuroImaging (United States)'),
(103247, 85060, 'fr', 'name', 'Haute Ɖcole de SantĆ© Vaud'),
(103248, 85061, 'en', 'name', 'Qatar Biomedical Research Institute'),
(103249, 85062, 'en', 'name', 'Purdue University North Central'),
(103250, 85063, 'en', 'name', 'Zhejiang University Libraries System'),
(103251, 85063, 'zh', 'name', 'ęµ™ę±Ÿå¤§å­¦å›¾ä¹¦é¦†'),
(103252, 85064, 'en', 'name', 'Guangzhou Hospital of Traditional Chinese Medicine'),
(103253, 85065, 'en', 'name', 'St. Nicholas Hospital'),
(103254, 85066, 'no_lang_code', 'name', 'Blindsight (United States)'),
(103255, 85067, 'no_lang_code', 'name', 'ProSyst Software (Germany)'),
(103256, 85068, 'en', 'name', 'University of Wisconsin–Waukesha'),
(103257, 85068, 'fr', 'name', 'UniversitƩ du wisconsin Ơ waukesha'),
(103258, 85069, 'no_lang_code', 'name', 'Seiko Epson (Japan)'),
(103259, 85069, 'ja', 'name', 'ć‚»ć‚¤ć‚³ćƒ¼ć‚Øćƒ—ć‚½ćƒ³ę Ŗå¼ä¼šē¤¾'),
(103260, 85070, 'en', 'name', 'Pacific State Medical University'),
(103261, 85071, 'no_lang_code', 'name', 'MDA Corporation'),
(103262, 85072, 'no_lang_code', 'name', 'Gammex (United States)'),
(103263, 85073, 'en', 'name', 'University of Wisconsin-Green Bay, Manitowoc'),
(103264, 85073, 'fr', 'name', 'UniversitƩ du wisconsin Ơ manitowoc'),
(103265, 85074, 'no_lang_code', 'name', 'Luxcel Biosciences (Ireland)'),
(103266, 85075, 'en', 'name', 'Miami University’s Voice of America Learning Center'),
(103267, 85076, 'en', 'name', 'Ogun State University Teaching Hospital'),
(103268, 85077, 'en', 'name', 'University of New Mexico'),
(103269, 85078, 'en', 'name', 'MGIMO University'),
(103270, 85079, 'en', 'name', 'European Screening Port'),
(103271, 85080, 'da', 'name', 'Fredericia Sygehus'),
(103272, 85081, 'en', 'name', 'Maimonides State Classical Academy'),
(103273, 85081, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ»Š°ŃŃŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени МаймониГа'),
(103274, 85082, 'en', 'name', 'Wolfsonian Florida International University'),
(103275, 85083, 'en', 'name', 'Strayer University'),
(103276, 85084, 'en', 'name', 'Shepherd University Research Corporation'),
(103277, 85085, 'no_lang_code', 'name', 'MSD Animal Health (Norway)'),
(103278, 85086, 'no_lang_code', 'name', 'Nara Gakuen University'),
(103279, 85087, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization'),
(103280, 85088, 'no_lang_code', 'name', 'ARIAD Pharmaceuticals (United Kingdom)'),
(103281, 85089, 'en', 'name', 'Mihail Kogălniceanu University of Iași'),
(103282, 85090, 'ro', 'name', 'Institutului de Biologie Bucureşti'),
(103283, 85091, 'es', 'name', 'Centro Universitario Une'),
(103284, 85092, 'en', 'name', 'Cancer Research Initiatives Foundation'),
(103285, 85093, 'en', 'name', 'United Nations Development Programme'),
(103286, 85094, 'en', 'name', 'Moscow State University of Applied Biotechnology'),
(103287, 85095, 'en', 'name', 'St. John''s College'),
(103288, 85096, 'en', 'name', 'Primorsky State Agricultural Academy'),
(103289, 85096, 'ru', 'name', 'ŠŸŃ€ŠøŠ¼Š¾ĢŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃĢŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµĢŠ¼ŠøŃ'),
(103290, 85097, 'en', 'name', 'St. Anne’s University Hospital Brno'),
(103291, 85098, 'en', 'name', 'Esophageal Cancer Hospital'),
(103292, 85099, 'en', 'name', 'University of Colorado Museum of Natural History'),
(103293, 85100, 'no_lang_code', 'name', 'Deutsches Windenergie Institut'),
(103294, 85101, 'no_lang_code', 'name', 'Mallinckrodt (Czechia)'),
(103295, 85102, 'no_lang_code', 'name', 'Bull (United Kingdom)'),
(103296, 85103, 'en', 'name', 'St. Mary''s Hospital'),
(103297, 85103, 'ja', 'name', 'č–ćƒžćƒŖć‚¢ē—…é™¢'),
(103298, 85104, 'en', 'name', 'Naval Medical Research Institute'),
(103299, 85104, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›åŒ»å­¦ē ”ē©¶ę‰€'),
(103300, 85105, 'no_lang_code', 'name', 'Farfield Group (United Kingdom)'),
(103301, 85106, 'es', 'name', 'Instituto Nacional de Formacion Tecnica Profesional'),
(103302, 85107, 'en', 'name', 'University of Wisconsin–Stevens Point at Wausau'),
(103303, 85108, 'no_lang_code', 'name', 'CGIAR'),
(103304, 85109, 'no_lang_code', 'name', 'Leica (Singapore)'),
(103305, 85110, 'en', 'name', 'Art Institute of Tampa'),
(103306, 85111, 'en', 'name', 'Nkrumah University'),
(103307, 85112, 'no_lang_code', 'name', 'Kinetics Technology (Italy)'),
(103308, 85113, 'en', 'name', 'Sapporo Otani Junior College'),
(103309, 85113, 'ja', 'name', '札幌大谷大学短期大学部'),
(103310, 85114, 'en', 'name', 'Nh State Department of Health and Human Sers'),
(103311, 85115, 'en', 'name', 'West Pomeranian Business School'),
(103312, 85115, 'pl', 'name', 'Zachodniopomorska Szkoła Biznesu w Szczecinie'),
(103313, 85116, 'it', 'name', 'Centro Interuniversitario ABITA'),
(103314, 85117, 'en', 'name', 'Purdue University Calumet'),
(103315, 85118, 'no_lang_code', 'name', 'Biocatalytics, Inc.'),
(103316, 85119, 'en', 'name', 'American Coastline University'),
(103317, 85120, 'no_lang_code', 'name', 'The Medicines Company (Switzerland)'),
(103318, 85121, 'en', 'name', 'Bournemouth Hospital'),
(103319, 85122, 'en', 'name', 'University of Phoenix'),
(103320, 85123, 'en', 'name', 'Midwestern University'),
(103321, 85124, 'no_lang_code', 'name', 'Cray (United Kingdom)'),
(103322, 85125, 'no_lang_code', 'name', 'Bohdan Khmelnytsky National University of Cherkasy'),
(103323, 85125, 'uk', 'name', 'Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(103324, 85126, 'no_lang_code', 'name', 'Bard (Germany)'),
(103325, 85127, 'en', 'name', 'Argosy University'),
(103326, 85128, 'no_lang_code', 'name', 'Mentor Graphics (United States)'),
(103327, 85129, 'it', 'name', 'Centro di Risonanze Magnetiche'),
(103328, 85130, 'en', 'name', 'Connecticut State University System'),
(103329, 85131, 'no_lang_code', 'name', 'Chemtura (Canada)'),
(103330, 85132, 'no_lang_code', 'name', 'Affymetrix (United Kingdom)'),
(103331, 85133, 'en', 'name', 'Texas Tech University'),
(103332, 85134, 'no_lang_code', 'name', 'Novion Technologies (United States)'),
(103333, 85135, 'en', 'name', 'Alliant International University'),
(103334, 85136, 'en', 'name', 'Northern Virginia Community College'),
(103335, 85137, 'en', 'name', 'Research for Better Schools'),
(103336, 85138, 'ro', 'name', 'Radio România Cluj'),
(103337, 85139, 'en', 'name', 'Institute of Critical Care Medicine'),
(103338, 85140, 'en', 'name', 'Department of Industry, Skills and Regional Development'),
(103339, 85141, 'en', 'name', 'Chicago School of Professional Psychology'),
(103340, 85142, 'en', 'name', 'South Ural State Medical University'),
(103341, 85143, 'en', 'name', 'Department of Drug and Alcohol Programs'),
(103342, 85144, 'no_lang_code', 'name', 'GCell (United Kingdom)'),
(103343, 85145, 'no_lang_code', 'name', 'Shire (United Kingdom)'),
(103344, 85146, 'no_lang_code', 'name', 'RWE npower (United Kingdom)'),
(103345, 85147, 'en', 'name', 'Thuyloi University'),
(103346, 85148, 'en', 'name', 'Bevill State Community College'),
(103347, 85149, 'no_lang_code', 'name', 'Alcatel-Lucent (Germany)'),
(103348, 85150, 'en', 'name', 'California College of the Arts'),
(103349, 85151, 'en', 'name', 'Greater Manchester West Mental Health NHS Foundation Trust'),
(103350, 85152, 'en', 'name', 'Shoe and Allied Trades Research Association'),
(103351, 85153, 'no_lang_code', 'name', 'Triune Systems (United States)'),
(103352, 85154, 'en', 'name', 'United Nations Population Fund'),
(103353, 85155, 'no_lang_code', 'name', 'Patriot (Czechia)'),
(103354, 85156, 'en', 'name', 'Mercer University'),
(103355, 85157, 'en', 'name', 'American University for Humanities'),
(103356, 85158, 'en', 'name', 'United Nations Office for Project Services'),
(103357, 85159, 'no_lang_code', 'name', 'Kockums Computer Systems (Sweden)'),
(103358, 85160, 'en', 'name', 'Moscow Institute of Transport'),
(103359, 85160, 'ru', 'name', 'ŠœŠžŠ”ŠšŠžŠ’Š”ŠšŠ˜Š™ ŠŠ’Š¢ŠžŠœŠžŠ‘Š˜Š›Š¬ŠŠž-Š”ŠžŠ ŠžŠ–ŠŠ«Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ Š¢Š•Š„ŠŠ˜Š§Š•Š”ŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(103360, 85161, 'pl', 'name', 'Wyższa Szkoła Turystyki i Hotelarstwa w Gdańsku'),
(103361, 85162, 'en', 'name', 'Department of Natural Resources'),
(103362, 85163, 'fr', 'name', 'Groupe Ɖcole Polyvalente SupĆ©rieure d''Informatique & Ɖlectronique'),
(103363, 85164, 'no_lang_code', 'name', 'Black & Decker (United Kingdom)'),
(103364, 85165, 'no_lang_code', 'name', 'S&B Minerals (Greece)'),
(103365, 85166, 'no_lang_code', 'name', 'Clarus Ventures'),
(103366, 85167, 'no_lang_code', 'name', 'Shire (Switzerland)'),
(103367, 85168, 'no_lang_code', 'name', 'Protein Sciences (United States)'),
(103368, 85169, 'en', 'name', 'Salvation Army'),
(103369, 85170, 'en', 'name', 'Architectural Design and Research Institute of Guangdong Province'),
(103370, 85170, 'zh', 'name', 'å¹æäøœēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(103371, 85171, 'no_lang_code', 'name', 'Integromics (Spain)'),
(103372, 85172, 'en', 'name', 'Art Institute of San Antonio'),
(103373, 85173, 'no_lang_code', 'name', 'Linde Material Handling (Germany)'),
(103374, 85174, 'pl', 'name', 'Akademia Pomorska w Słupsku'),
(103375, 85175, 'no_lang_code', 'name', 'Geno Global (Norway)'),
(103376, 85176, 'en', 'name', 'Long Island University Hudson'),
(103377, 85177, 'nl', 'name', 'Amersfoort Total Office B.V.'),
(103378, 85178, 'en', 'name', 'SmithKline Beecham Animal Health'),
(103379, 85179, 'no_lang_code', 'name', 'OriGene Technologies (United States)'),
(103380, 85180, 'en', 'name', 'Argosy University'),
(103381, 85181, 'en', 'name', 'Physicians Committee'),
(103382, 85182, 'no_lang_code', 'name', 'Mitsumi Electric (Japan)'),
(103383, 85182, 'ja', 'name', 'ćƒŸćƒ„ćƒŸé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(103384, 85183, 'en', 'name', 'Family Health Council Of Central Pennsylvania'),
(103385, 85184, 'en', 'name', 'University of Phoenix'),
(103386, 85185, 'en', 'name', 'Easter Seals Iowa'),
(103387, 85186, 'no_lang_code', 'name', 'FEI (Netherlands)'),
(103388, 85187, 'en', 'name', 'Argosy University'),
(103389, 85188, 'en', 'name', 'Emory University School of Medicine'),
(103390, 85189, 'no_lang_code', 'name', 'Dow Corning (United States)'),
(103391, 85190, 'en', 'name', 'CAS-MPG Partner Institute for Computational Biology'),
(103392, 85190, 'zh', 'name', '中国科学院-é©¬ę™®å­¦ä¼šč®”ē®—ē”Ÿē‰©å­¦ä¼™ä¼“ē ”ē©¶ę‰€'),
(103393, 85191, 'en', 'name', 'Prevention Research Center'),
(103394, 85192, 'es', 'name', 'Instituto de Estudios de la Inmunidad Humoral Prof. Ricardo A. Margni'),
(103395, 85193, 'no_lang_code', 'name', 'UTC Aerospace Systems (United Kingdom)'),
(103396, 85194, 'no_lang_code', 'name', 'Esterline (United States)'),
(103397, 85195, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization'),
(103398, 85196, 'no_lang_code', 'name', 'British Steel, Swinden Technology Centre (United Kingdom)'),
(103399, 85197, 'no_lang_code', 'name', 'SGL Group (Germany)'),
(103400, 85198, 'en', 'name', 'Providence Health and Services'),
(103401, 85199, 'en', 'name', 'Long Island University Hudson at Westchester'),
(103402, 85200, 'en', 'name', 'Edgware Community Hospital'),
(103403, 85201, 'en', 'name', 'North County Serenity House'),
(103404, 85202, 'en', 'name', 'Penn State Schuylkill'),
(103405, 85203, 'en', 'name', 'Institute of Agro Environmental and Forest Biology'),
(103406, 85204, 'no_lang_code', 'name', 'Elopak (Norway)'),
(103407, 85205, 'no_lang_code', 'name', 'Acreo (Sweden)'),
(103408, 85206, 'en', 'name', 'Art Institute of Austin'),
(103409, 85207, 'no_lang_code', 'name', 'Steinbichler (Germany)'),
(103410, 85208, 'en', 'name', 'Cork Institute of Technology'),
(103411, 85208, 'ga', 'name', 'InstitiĆŗd TeicneolaĆ­ochta ChorcaĆ­'),
(103412, 85209, 'en', 'name', 'Texas Tech University Health Sciences Center'),
(103413, 85210, 'en', 'name', 'Cancer Research UK Cambridge Institute'),
(103414, 85211, 'no_lang_code', 'name', 'NeRRe Therapeutics (United Kingdom)'),
(103415, 85212, 'en', 'name', 'North China Coal Medical University'),
(103416, 85213, 'no_lang_code', 'name', 'Crucell (Sweden)'),
(103417, 85214, 'en', 'name', 'Cancer Patient Care'),
(103418, 85215, 'en', 'name', 'Institute for Hydrological Research'),
(103419, 85216, 'en', 'name', 'Trine University'),
(103420, 85217, 'en', 'name', 'Urals State Medical University'),
(103421, 85217, 'ru', 'name', 'Š£Š ŠŠ›Š¬Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(103422, 85218, 'no_lang_code', 'name', 'Amec Foster Wheeler (Italy)'),
(103423, 85219, 'en', 'name', 'St. James''s Laundry Centre'),
(103424, 85220, 'sv', 'name', 'Malmƶ AllmƤnna Sjukhus'),
(103425, 85221, 'no_lang_code', 'name', 'Shire (France)'),
(103426, 85222, 'en', 'name', 'University of Wisconsin–Whitewater at Rock County'),
(103427, 85223, 'en', 'name', 'Texas Tech University Health Sciences Center'),
(103428, 85224, 'en', 'name', 'University College Maastricht'),
(103429, 85225, 'no_lang_code', 'name', 'Provexis Limited'),
(103430, 85226, 'en', 'name', 'Texas Tech University'),
(103431, 85227, 'fr', 'name', 'Ɖcole d''Architecture de la Ville et des Territoires Ć  Marne-la-VallĆ©e'),
(103432, 85228, 'no_lang_code', 'name', 'Sogeti (France)'),
(103433, 85229, 'no_lang_code', 'name', 'Invivo (United States)'),
(103434, 85230, 'it', 'name', 'Ospedale San Giovanni Calibita Fatebenefratelli'),
(103435, 85231, 'no_lang_code', 'name', 'Excel Technology (United States)'),
(103436, 85232, 'no_lang_code', 'name', 'General Cable (Germany)'),
(103437, 85233, 'en', 'name', 'Claremont University Consortium'),
(103438, 85234, 'en', 'name', 'Head of The Unit of Foodborne Zoonoses and Veterinary Epidemiology'),
(103439, 85235, 'no_lang_code', 'name', 'Freescale Semiconductor (United Kingdom)'),
(103440, 85236, 'en', 'name', 'University of St. Augustine for Health Sciences'),
(103441, 85237, 'no_lang_code', 'name', 'CSR (United Kingdom)'),
(103442, 85238, 'en', 'name', 'David Geffen School of Medicine at UCLA'),
(103443, 85239, 'no_lang_code', 'name', 'PFI (Germany)'),
(103444, 85240, 'en', 'name', 'University of Wisconsin–Marinette'),
(103445, 85241, 'no_lang_code', 'name', 'Multiplicom (Belgium)'),
(103446, 85242, 'no_lang_code', 'name', 'Dell (Ireland)'),
(103447, 85243, 'no_lang_code', 'name', 'Thomson Csf (France)'),
(103448, 85244, 'en', 'name', 'Northwest–Shoals Community College'),
(103449, 85245, 'en', 'name', 'University of Phoenix'),
(103450, 85246, 'en', 'name', 'University of Alabama School of Medicine'),
(103451, 85247, 'no_lang_code', 'name', 'Plastsveis (Norway)'),
(103452, 85248, 'en', 'name', 'International Institute of Tropical Agriculture'),
(103453, 85249, 'en', 'name', 'Campus Benjamin Franklin'),
(103454, 85250, 'en', 'name', 'Presence Health'),
(103455, 85251, 'en', 'name', 'Ministry of Rural Development'),
(103456, 85252, 'no_lang_code', 'name', 'CooperVision (United States)'),
(103457, 85253, 'en', 'name', 'Riverland Community College'),
(103458, 85254, 'fr', 'name', 'HƓpital des Cadolles'),
(103459, 85255, 'en', 'name', 'Kaiser Permanente Division of Research'),
(103460, 85256, 'en', 'name', 'Indepth Network'),
(103461, 85257, 'no_lang_code', 'name', 'Terumo Medical (United States)'),
(103462, 85258, 'en', 'name', 'State University of New York Polytechnic Institute'),
(103463, 85259, 'no_lang_code', 'name', 'Arcam (Sweden)'),
(103464, 85260, 'en', 'name', 'Argosy University'),
(103465, 85261, 'en', 'name', 'National Children’s’ Cardiac Hospital'),
(103466, 85262, 'no_lang_code', 'name', 'Shire (United States)'),
(103467, 85263, 'en', 'name', 'Monroe Center'),
(103468, 85264, 'no_lang_code', 'name', 'Alcatel-Lucent (United States)'),
(103469, 85265, 'no_lang_code', 'name', 'Quantel (France)'),
(103470, 85266, 'pl', 'name', 'Akademia Marynarki Wojennej im. Bohaterów Westerplatte'),
(103471, 85267, 'en', 'name', 'San Leandro Medical Center'),
(103472, 85268, 'en', 'name', 'The Russian Presidential Academy of National Economy and Public Administration'),
(103473, 85268, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ нароГного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ при ŠŸŃ€ŠµŠ·ŠøŠ“енте Российской ФеГерации'),
(103474, 85269, 'no_lang_code', 'name', 'FLEx (United States)'),
(103475, 85270, 'en', 'name', 'Penn State York'),
(103476, 85271, 'no_lang_code', 'name', 'Illumina Digital (United Kingdom)'),
(103477, 85272, 'en', 'name', 'Women''s and Children''s Hospital'),
(103478, 85273, 'no_lang_code', 'name', 'GeneSys Research'),
(103479, 85274, 'es', 'name', 'Fundacion Para La Investigacion Del Hospital Universitario La Fe De La Comunidad Valenciana'),
(103480, 85275, 'en', 'name', 'Argosy University'),
(103481, 85276, 'en', 'name', 'Bhagwan Mahavir Medical Research Centre'),
(103482, 85277, 'no_lang_code', 'name', 'T Mobile (Germany)'),
(103483, 85278, 'en', 'name', 'Republic of Turkey Ministry of Health'),
(103484, 85279, 'en', 'name', 'University of the Potomac'),
(103485, 85280, 'en', 'name', 'Concordia International University Estonia'),
(103486, 85280, 'et', 'name', 'Concordia Rahvusvaheline Ülikool Eestis'),
(103487, 85281, 'no_lang_code', 'name', 'Exa Corporation (United States)'),
(103488, 85282, 'fr', 'name', 'Laboratoire de Physique ThƩorique Ecole Normale SupƩrieure'),
(103489, 85283, 'no_lang_code', 'name', 'Advanced Marine Systems (United States)'),
(103490, 85284, 'de', 'name', 'Eiblmayr Frank Architekten'),
(103491, 85285, 'en', 'name', 'Art Institute of Phoenix'),
(103492, 85286, 'no', 'name', 'Iku Petroleumsforskning As'),
(103493, 85286, 'en', 'name', 'SINTEF Petroleum Research'),
(103494, 85287, 'no_lang_code', 'name', 'AO (Germany)'),
(103495, 85288, 'no_lang_code', 'name', 'Kleinwanzlebener Saatzucht (United Kingdom)'),
(103496, 85289, 'en', 'name', 'CSIRO Marine and Atmospheric Research'),
(103497, 85290, 'en', 'name', 'Argosy University'),
(103498, 85291, 'no_lang_code', 'name', 'VBM Laboratoriet (Denmark)'),
(103499, 85292, 'fr', 'name', 'Laboratoire de Photonique et de Nanostructures'),
(103500, 85292, 'en', 'name', 'Laboratory for Photonics and Nanostructures'),
(103501, 85293, 'en', 'name', 'Tsukuba College of Technology'),
(103502, 85294, 'no_lang_code', 'name', 'Interoute (Norway)'),
(103503, 85295, 'en', 'name', 'Slavonic State Pedagogical University'),
(103504, 85296, 'en', 'name', 'Minnesota Food Association'),
(103505, 85297, 'en', 'name', 'National Police University of China'),
(103506, 85297, 'zh', 'name', 'äø­å›½åˆ‘äŗ‹č­¦åÆŸå­¦é™¢'),
(103507, 85298, 'en', 'name', 'Yale School of Medicine'),
(103508, 85299, 'no_lang_code', 'name', 'Raydiance (United States)'),
(103509, 85300, 'no_lang_code', 'name', 'Glidden (United States)'),
(103510, 85301, 'en', 'name', 'Shanghai Pudong New Area Public Interest Hospital'),
(103511, 85301, 'zh', 'name', 'äøŠęµ·åø‚ęµ¦äøœę–°åŒŗå…¬åˆ©åŒ»é™¢'),
(103512, 85302, 'no_lang_code', 'name', 'Alexander Street Press (United States)'),
(103513, 85303, 'no_lang_code', 'name', 'Siradel (France)'),
(103514, 85304, 'en', 'name', 'University of Professional Studies'),
(103515, 85305, 'en', 'name', 'World Bank'),
(103516, 85306, 'de', 'name', 'AKh Linz'),
(103517, 85307, 'da', 'name', 'Teres Hospitalet Parken'),
(103518, 85308, 'en', 'name', 'Paris Grand Ouest University'),
(103519, 85309, 'en', 'name', 'Hull Maternity Hospital'),
(103520, 85310, 'en', 'name', 'Pan Asian Repertory Theatre'),
(103521, 85311, 'en', 'name', 'Africa Centre for Health and Population Studies'),
(103522, 85312, 'en', 'name', 'United Nations Development Programme'),
(103523, 85313, 'en', 'name', 'KwaZulu-Natal Research Institute for Tuberculosis and HIV'),
(103524, 85314, 'en', 'name', 'United Nations Environment Programme'),
(103525, 85315, 'en', 'name', 'MRC Centre'),
(103526, 85316, 'en', 'name', 'Antiquities, Monuments and Museums Corporation'),
(103527, 85317, 'no_lang_code', 'name', 'Nextel (Spain)'),
(103528, 85318, 'en', 'name', 'Texas Tech University'),
(103529, 85319, 'en', 'name', 'Stanford University School of Medicine'),
(103530, 85320, 'no_lang_code', 'name', 'OM Group (Germany)'),
(103531, 85321, 'en', 'name', 'El-Oued University'),
(103532, 85321, 'fr', 'name', 'UniversitƩ d''El-Oued'),
(103533, 85321, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁŠ'),
(103534, 85322, 'en', 'name', 'United Library'),
(103535, 85323, 'no_lang_code', 'name', 'Cray (United States)'),
(103536, 85324, 'pl', 'name', 'Akademia Wychowania Fizycznego Józefa Piłsudskiego w Warszawie'),
(103537, 85325, 'no_lang_code', 'name', 'Alcatel-Lucent (United Kingdom)'),
(103538, 85326, 'es', 'name', 'Grupo Español de Investigación en CÔncer de Mama'),
(103539, 85326, 'en', 'name', 'Spanish Breast Cancer Group'),
(103540, 85327, 'no_lang_code', 'name', 'GE Healthcare (India)'),
(103541, 85328, 'no_lang_code', 'name', 'Compureg (Czechia)'),
(103542, 85329, 'no_lang_code', 'name', 'Topsoe Fuel Cell (Denmark)'),
(103543, 85330, 'en', 'name', 'Penn State New Kensington'),
(103544, 85331, 'en', 'name', 'Fuyang City People''s Hospital'),
(103545, 85332, 'no_lang_code', 'name', 'InterMune (Switzerland)'),
(103546, 85333, 'en', 'name', 'Lipeck State Technical University'),
(103547, 85334, 'no_lang_code', 'name', 'Cardio3 BioSciences (Belgium)'),
(103548, 85335, 'en', 'name', 'Argosy University'),
(103549, 85336, 'en', 'name', 'Far Eastern State University of Humanities'),
(103550, 85337, 'en', 'name', 'National Information Infrastructure Development Institute'),
(103551, 85338, 'no_lang_code', 'name', 'Northern Telecom (Ireland)'),
(103552, 85339, 'es', 'name', 'Universidad Iberoamericana del Norte'),
(103553, 85340, 'en', 'name', 'Voronezh State University of Architecture and Civil Engineering'),
(103554, 85341, 'en', 'name', 'Aberystwyth University'),
(103555, 85342, 'en', 'name', 'Kaiser Foundation Health Plan'),
(103556, 85343, 'en', 'name', 'International Winter University Kassel'),
(103557, 85344, 'en', 'name', 'South Australian Health'),
(103558, 85345, 'no_lang_code', 'name', 'Fisabio'),
(103559, 85346, 'en', 'name', 'University of Tennessee Institute of Agriculture'),
(103560, 85347, 'en', 'name', 'Cumbria Institute of the Arts'),
(103561, 85348, 'en', 'name', 'University Alliance Ruhr'),
(103562, 85348, 'de', 'name', 'UniversitƤtsallianz Ruhr'),
(103563, 85349, 'no_lang_code', 'name', 'Ferd (Norway)'),
(103564, 85350, 'en', 'name', 'National University'),
(103565, 85351, 'es', 'name', 'Hospital Infantil La Paz'),
(103566, 85352, 'no_lang_code', 'name', 'SK Chemicals (South Korea)'),
(103567, 85353, 'no_lang_code', 'name', 'Holcim (Belgium)'),
(103568, 85354, 'en', 'name', 'LIU Post'),
(103569, 85355, 'en', 'name', 'International Food Policy Research Institute'),
(103570, 85356, 'en', 'name', 'Argosy University'),
(103571, 85357, 'en', 'name', 'Rutgers University–Camden'),
(103572, 85358, 'no_lang_code', 'name', 'BMT Hi-Q Sigma'),
(103573, 85359, 'no_lang_code', 'name', 'Selexys Pharmaceuticals (United States)'),
(103574, 85360, 'en', 'name', 'Sonoma County Museum'),
(103575, 85361, 'en', 'name', 'Northern Seminary'),
(103576, 85362, 'no_lang_code', 'name', 'Biosense Webster (United States)'),
(103577, 85363, 'no_lang_code', 'name', 'Cytec (United Kingdom)'),
(103578, 85364, 'en', 'name', 'Centres of Excellence'),
(103579, 85365, 'no_lang_code', 'name', 'PhosphorTech Corporation (United States)'),
(103580, 85366, 'en', 'name', 'Living Classrooms Foundation'),
(103581, 85367, 'en', 'name', 'Vallo Sadovsky Architects'),
(103582, 85368, 'en', 'name', 'Embry–Riddle Aeronautical University'),
(103583, 85369, 'en', 'name', 'Iowa Western Foundation'),
(103584, 85370, 'no_lang_code', 'name', 'American Science and Engineering (United States)'),
(103585, 85371, 'en', 'name', 'Saint Luke''s Hospita'),
(103586, 85372, 'no_lang_code', 'name', 'Dharmacon (United States)'),
(103587, 85373, 'fr', 'name', 'Ecole Nationale SupƩrieure d''Hydraulique Abdellah Arbaoui'),
(103588, 85374, 'no_lang_code', 'name', 'BPE (Germany)'),
(103589, 85375, 'en', 'name', 'Health Economics Bergen'),
(103590, 85376, 'no_lang_code', 'name', '3D Reid (United Kingdom)'),
(103591, 85377, 'en', 'name', 'Susan G Komen Utah'),
(103592, 85378, 'no_lang_code', 'name', 'Reis Robotics (Germany)'),
(103593, 85379, 'en', 'name', 'Smolensk University for Humanities'),
(103594, 85379, 'ru', 'name', 'Дмоленский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(103595, 85380, 'no_lang_code', 'name', 'Johnson & Johnson (Israel)'),
(103596, 85381, 'no_lang_code', 'name', 'Shiseikan University'),
(103597, 85381, 'ja', 'name', '至誠館大学'),
(103598, 85382, 'en', 'name', 'Gauhati Medical College and Hospital'),
(103599, 85382, 'bn', 'name', 'ą¦—ą§Œą¦¹ą¦¾ą¦Ÿą§€ ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(103600, 85383, 'no_lang_code', 'name', 'Eurofins (Netherlands)'),
(103601, 85384, 'en', 'name', 'Alpha Hospital Bury'),
(103602, 85385, 'en', 'name', 'Institute of Neuroscience'),
(103603, 85385, 'it', 'name', 'Istituto di Neuroscienze'),
(103604, 85386, 'no_lang_code', 'name', 'Hologic Gen-Probe Incorporated (United States)'),
(103605, 85387, 'en', 'name', 'Ipswich Hospital NHS Trust'),
(103606, 85388, 'no_lang_code', 'name', 'TransDerm (United States)'),
(103607, 85389, 'en', 'name', 'Institute of Physical Chemistry'),
(103608, 85390, 'en', 'name', 'Foundation for Scientific and Industrial Research'),
(103609, 85391, 'en', 'name', 'Art Institute of California'),
(103610, 85392, 'en', 'name', 'Capital Institute of Physical Education and Sports'),
(103611, 85393, 'en', 'name', 'Texas Tech University Health Sciences Center'),
(103612, 85394, 'no_lang_code', 'name', 'Fresenius Kabi (India)'),
(103613, 85395, 'en', 'name', 'Barrackpore Rastraguru Surendranath College'),
(103614, 85396, 'no_lang_code', 'name', 'YD Global Life Science (South Korea)'),
(103615, 85396, 'ko', 'name', 'ģ™€ģ“ė””ģƒėŖ…ź³¼ķ•™'),
(103616, 85397, 'en', 'name', 'Aqua Terra'),
(103617, 85398, 'en', 'name', 'Qatar Environment and Energy Research Institute'),
(103618, 85399, 'en', 'name', 'Argosy University'),
(103619, 85400, 'no_lang_code', 'name', 'St. Jude Medical (United States)'),
(103620, 85401, 'fr', 'name', 'Haute Ɖcole de SantĆ© de GenĆØve'),
(103621, 85402, 'en', 'name', 'Penn State Behrend'),
(103622, 85403, 'en', 'name', 'Brain Plasticity Institute'),
(103623, 85404, 'no_lang_code', 'name', 'Rapiscan Systems (United States)'),
(103624, 85405, 'no_lang_code', 'name', 'Chemtura (United States)'),
(103625, 85406, 'en', 'name', 'American Society for Bone and Mineral Research'),
(103626, 85407, 'en', 'name', 'Madison University'),
(103627, 85408, 'de', 'name', 'Klinik für Hals-, Nasen- und Ohrenheilkunde'),
(103628, 85409, 'no_lang_code', 'name', 'Martindale Pharma (United Kingdom)'),
(103629, 85410, 'en', 'name', 'Texas A&M Health Science Center'),
(103630, 85411, 'no_lang_code', 'name', 'FEI (Norway)'),
(103631, 85412, 'no_lang_code', 'name', 'Photon Machines (United States)'),
(103632, 85413, 'en', 'name', 'University of Houston Sugar Land'),
(103633, 85414, 'en', 'name', 'Central Bible College'),
(103634, 85415, 'pl', 'name', 'Państwowy Instytut Badawczy'),
(103635, 85416, 'en', 'name', 'Fraunhofer Institute Centre Schloss Birlinghoven'),
(103636, 85416, 'de', 'name', 'Institutszentrum Schloss Birlinghoven'),
(103637, 85417, 'en', 'name', 'Libertas Business School'),
(103638, 85418, 'no_lang_code', 'name', 'InterMune (Canada)'),
(103639, 85419, 'no_lang_code', 'name', 'Computer Sciences Corporation (Belgium)'),
(103640, 85420, 'no_lang_code', 'name', 'The Italian Ship Research Centre'),
(103641, 85421, 'en', 'name', 'International Livestock Research Institute'),
(103642, 85422, 'en', 'name', 'Vologda State Pedagogical University'),
(103643, 85423, 'en', 'name', 'MATI-Russian State Technological University'),
(103644, 85424, 'no_lang_code', 'name', 'Blue Belt Technologies (United States)'),
(103645, 85425, 'no_lang_code', 'name', 'Consulintel (Spain)'),
(103646, 85426, 'no_lang_code', 'name', 'SK Innovation (South Korea)'),
(103647, 85427, 'en', 'name', 'Department of the Environment and Energy'),
(103648, 85428, 'en', 'name', 'University of New Mexico Gallup'),
(103649, 85429, 'no_lang_code', 'name', 'SK Telecom (South Korea)'),
(103650, 85429, 'ko', 'name', 'ķ…”ė ˆģ½¤ or ģ—ģŠ¤ģ¼€ģ“ķ…”ė ˆģ½¤'),
(103651, 85430, 'en', 'name', 'Penn State Worthington Scranton'),
(103652, 85431, 'no_lang_code', 'name', 'CeraMem Corporation (United States)'),
(103653, 85432, 'no_lang_code', 'name', 'Leica Microsystems (Switzerland)'),
(103654, 85433, 'en', 'name', 'Geneva University of Music'),
(103655, 85433, 'fr', 'name', 'Haute Ɖcole de Musique de GenĆØve'),
(103656, 85434, 'fr', 'name', 'Ɖcole des Hautes Etudes Commerciales du Maroc'),
(103657, 85435, 'no_lang_code', 'name', 'UES (United States)'),
(103658, 85436, 'en', 'name', 'University Hospital'),
(103659, 85437, 'en', 'name', 'Bashkir Academy of Public Administration and Management'),
(103660, 85437, 'ru', 'name', 'Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при Главе Республики Š‘Š°ŃˆŠŗŠ¾Ń€Ń‚Š¾ŃŃ‚Š°Š½'),
(103661, 85438, 'no_lang_code', 'name', 'Smiths Detection (United Kingdom)'),
(103662, 85439, 'sk', 'name', 'Univerzita Sv. Cyrila A Metoda V Trnave'),
(103663, 85440, 'en', 'name', 'NERC Environmental Bioinformatics Centre'),
(103664, 85441, 'en', 'name', 'Kobe University of Welfare'),
(103665, 85441, 'ja', 'name', 'ē„žęˆøåŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(103666, 85442, 'no_lang_code', 'name', 'Nisshin Pharma (Japan)'),
(103667, 85442, 'ja', 'name', 'ę—„ęø…ćƒ•ć‚”ćƒ«ćƒž'),
(103668, 85443, 'no_lang_code', 'name', 'Imanova (United Kingdom)'),
(103669, 85444, 'en', 'name', 'Jacob of Paradyż University of Applied Sciences in Gorzów Wielkopolski'),
(103670, 85444, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Jakuba z Paradyża w Gorzowie Wielkopolskim'),
(103671, 85445, 'en', 'name', 'Department of Justice'),
(103672, 85446, 'no_lang_code', 'name', 'JPK Instruments (Germany)'),
(103673, 85447, 'no_lang_code', 'name', 'United Technologies (Germany)'),
(103674, 85448, 'en', 'name', 'Far Eastern State Academy of Art'),
(103675, 85449, 'en', 'name', 'Vanderbilt University School of Medicine'),
(103676, 85450, 'en', 'name', 'Saken Seifullin Kazakh Agro Technical University'),
(103677, 85450, 'kk', 'name', 'Š”. Š”ŠµŠ¹Ń„ŃƒŠ»Š»ŠøŠ½ атынГағы қазақ агротехникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(103678, 85451, 'no_lang_code', 'name', 'GlobalStem (United States)'),
(103679, 85452, 'es', 'name', 'Hospital Virgen de la Torre'),
(103680, 85453, 'no_lang_code', 'name', 'Esterline (United Kingdom)'),
(103681, 85454, 'en', 'name', 'MRC Medical Sociology Unit'),
(103682, 85455, 'en', 'name', 'Tenth People''s Hospital of Tongji University'),
(103683, 85456, 'en', 'name', 'International Maize and Wheat Improvement Center'),
(103684, 85457, 'no_lang_code', 'name', 'Crucell (Switzerland)'),
(103685, 85458, 'no_lang_code', 'name', 'Guanghua Hospital'),
(103686, 85459, 'en', 'name', 'Laval University Cancer Research Center'),
(103687, 85460, 'no_lang_code', 'name', 'MSC Software (United Kingdom)'),
(103688, 85461, 'en', 'name', 'George Washington University Museum'),
(103689, 85462, 'no_lang_code', 'name', 'Sogeti (United Kingdom)'),
(103690, 85463, 'en', 'name', 'Duke University School of Medicine'),
(103691, 85464, 'en', 'name', 'Art Institute of Washington'),
(103692, 85465, 'en', 'name', 'Film University'),
(103693, 85466, 'no_lang_code', 'name', 'Enzymatics (United States)'),
(103694, 85467, 'en', 'name', 'Christchurch Hospital'),
(103695, 85468, 'no_lang_code', 'name', 'Thalmic Labs (Canada)'),
(103696, 85469, 'no_lang_code', 'name', 'Vaxin (United States)'),
(103697, 85470, 'en', 'name', 'Federal Research Centre For Fisheries'),
(103698, 85470, 'de', 'name', 'Fiskesekretariatet'),
(103699, 85471, 'no_lang_code', 'name', 'Cepheid (United States)'),
(103700, 85472, 'no_lang_code', 'name', 'Ultra Electronics Holdings (United States)'),
(103701, 85473, 'en', 'name', 'Swedish Cancer Institute'),
(103702, 85474, 'en', 'name', 'Catholic University of Malawi'),
(103703, 85475, 'no_lang_code', 'name', 'Flowmetrics (United States)'),
(103704, 85476, 'en', 'name', 'Webster University'),
(103705, 85477, 'en', 'name', 'ISMA University'),
(103706, 85477, 'lv', 'name', 'Informācijas sistēmu menedžmenta augstskola'),
(103707, 85477, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń школа менеГжмента Šø информационных систем'),
(103708, 85478, 'en', 'name', 'Chemical Heritage Foundation'),
(103709, 85479, 'no_lang_code', 'name', 'Nortel (United Kingdom)'),
(103710, 85480, 'en', 'name', 'Bodo Regional University'),
(103711, 85481, 'no_lang_code', 'name', 'Koch Industries (United States)'),
(103712, 85482, 'no_lang_code', 'name', 'Pure Technologies (Canada)'),
(103713, 85483, 'no_lang_code', 'name', 'Exiqon (United States)'),
(103714, 85484, 'en', 'name', 'Holt Radium Institute'),
(103715, 85485, 'en', 'name', 'University of Washington School of Medicine'),
(103716, 85486, 'en', 'name', 'Levine Children''s Hospita'),
(103717, 85487, 'en', 'name', 'Nagoya University Museum'),
(103718, 85487, 'ja', 'name', '名古屋大学 åšē‰©é¤Ø'),
(103719, 85488, 'en', 'name', 'Texas Tech University'),
(103720, 85489, 'no', 'name', 'Sykehuset Ƙstfold'),
(103721, 85490, 'en', 'name', 'University of Phoenix'),
(103722, 85491, 'no_lang_code', 'name', 'ChanTest (United States)'),
(103723, 85492, 'no_lang_code', 'name', 'asteur Institute of Iran'),
(103724, 85493, 'en', 'name', 'University of California Museum of Paleontology'),
(103725, 85494, 'en', 'name', 'Art Institute of Wisconsin'),
(103726, 85495, 'en', 'name', 'KFAI'),
(103727, 85496, 'no_lang_code', 'name', 'K.C. Associates (United States)'),
(103728, 85497, 'en', 'name', 'Scottsdale Lincoln Health Network'),
(103729, 85498, 'no_lang_code', 'name', 'Orbotech (Israel)'),
(103730, 85499, 'no_lang_code', 'name', 'Mondragon Assembly (Spain)'),
(103731, 85500, 'no_lang_code', 'name', 'Polaris Industries (United States)'),
(103732, 85501, 'en', 'name', 'Bryansk State Academy of Agriculture'),
(103733, 85502, 'en', 'name', 'Art Institute of Virginia Beach'),
(103734, 85503, 'no_lang_code', 'name', 'ACEA Biosciences (United States)'),
(103735, 85504, 'no_lang_code', 'name', 'Celgene (United States)'),
(103736, 85505, 'en', 'name', 'Rutgers University–Newark'),
(103737, 85506, 'en', 'name', 'Carson Newman College'),
(103738, 85507, 'en', 'name', 'Texas A&M Health Science Center'),
(103739, 85508, 'no_lang_code', 'name', 'Cameron (United Kingdom)'),
(103740, 85509, 'no_lang_code', 'name', 'Rockwell Collins (United States)'),
(103741, 85510, 'fr', 'name', 'UniversitƩ de Lille'),
(103742, 85511, 'no_lang_code', 'name', 'OM Group (United States)'),
(103743, 85512, 'en', 'name', 'United States Army Public Health Command'),
(103744, 85513, 'en', 'name', 'Raymond and Ruth Perelman School of Medicine at the University of Pennsylvania'),
(103745, 85514, 'en', 'name', 'University of Wisconsin-Baraboo-Sauk County'),
(103746, 85515, 'no_lang_code', 'name', 'Adventium Enterprises (United States)'),
(103747, 85516, 'no_lang_code', 'name', 'CH2M Hill (United Kingdom)'),
(103748, 85517, 'no_lang_code', 'name', 'Shire (Germany)'),
(103749, 85518, 'en', 'name', 'Ethiopian Health and Nutrition Research Institute'),
(103750, 85519, 'en', 'name', 'University of Connecticut'),
(103751, 85520, 'no_lang_code', 'name', 'Dow Agrosciences (Canada)'),
(103752, 85521, 'en', 'name', 'Far Eastern University Institute of Law'),
(103753, 85522, 'no_lang_code', 'name', 'Acoustic MedSystems'),
(103754, 85523, 'en', 'name', 'University Heights, Newark'),
(103755, 85524, 'en', 'name', 'Memorial University Medical Center'),
(103756, 85525, 'fr', 'name', 'Zéfiro Théâtre'),
(103757, 85526, 'en', 'name', 'Western Sussex Hospitals NHS Foundation Trust'),
(103758, 85527, 'no_lang_code', 'name', 'Silicon Graphics International (Canada)'),
(103759, 85528, 'no_lang_code', 'name', 'Fluorinov Pharma (Canada)'),
(103760, 85529, 'no_lang_code', 'name', 'Turbomeca (France)'),
(103761, 85530, 'no_lang_code', 'name', 'Retroscreen Virology (United Kingdom)'),
(103762, 85531, 'no_lang_code', 'name', 'DB Schenker Rail Automotive (Germany)'),
(103763, 85532, 'no_lang_code', 'name', 'Nishinippon Shimbun'),
(103764, 85533, 'en', 'name', 'Texas A&M Health Science Center'),
(103765, 85534, 'no_lang_code', 'name', 'Qamcom Research & Technology (Sweden)'),
(103766, 85535, 'en', 'name', 'Penn State DuBois'),
(103767, 85536, 'no_lang_code', 'name', 'Abt SRBI'),
(103768, 85537, 'no_lang_code', 'name', 'Faxitron (United States)'),
(103769, 85538, 'en', 'name', 'Rostov State University of Railways'),
(103770, 85539, 'en', 'name', 'University of Michigan Medical School'),
(103771, 85540, 'en', 'name', 'Department of Communications and the Arts'),
(103772, 85541, 'en', 'name', 'Centre for Clinical Research in Neuropsychiatry'),
(103773, 85542, 'no_lang_code', 'name', 'Xhale (United States)'),
(103774, 85543, 'no_lang_code', 'name', 'Dynamet Technology (United States)'),
(103775, 85544, 'en', 'name', 'Squibb Institute for Medical Research'),
(103776, 85545, 'en', 'name', 'Jiangxi Provincial Cancer Hospital'),
(103777, 85545, 'zh', 'name', 'ę±Ÿč„æēœč‚æē˜¤åŒ»é™¢'),
(103778, 85546, 'no_lang_code', 'name', 'Urs Dames & Moore S.R.L.'),
(103779, 85547, 'en', 'name', 'Ivanovo State Textile Academy'),
(103780, 85548, 'en', 'name', 'Forest Park'),
(103781, 85549, 'no_lang_code', 'name', 'Blue Ocean Mariculture (United States)'),
(103782, 85550, 'en', 'name', 'Penn State Greater Allegheny'),
(103783, 85551, 'no_lang_code', 'name', 'United Technologies (United Kingdom)'),
(103784, 85552, 'no_lang_code', 'name', 'Tomegavax (United States)'),
(103785, 85553, 'en', 'name', 'Long Island University Brooklyn'),
(103786, 85554, 'fr', 'name', 'UniversitƩ Lille 2 Droit et SantƩ'),
(103787, 85555, 'no_lang_code', 'name', 'Etnoteam S.p.A'),
(103788, 85556, 'en', 'name', 'United Nations Organization for Education, Science and Culture'),
(103789, 85557, 'en', 'name', 'Art Institute of Tennessee'),
(103790, 85558, 'en', 'name', 'New College Nottingham'),
(103791, 85559, 'en', 'name', 'College of Occupational Therapists'),
(103792, 85560, 'no_lang_code', 'name', 'Luciad (Belgium)'),
(103793, 85561, 'en', 'name', 'Argosy University'),
(103794, 85562, 'no_lang_code', 'name', 'Chatten Associates (United States)'),
(103795, 85563, 'en', 'name', 'United Nations Educational Scientific and Cultural Organization'),
(103796, 85564, 'en', 'name', 'Foundation Institute of Materials Science'),
(103797, 85564, 'de', 'name', 'Stiftung Institut für Werkstofftechnik'),
(103798, 85565, 'no_lang_code', 'name', 'Alere Wellbeing'),
(103799, 85566, 'en', 'name', 'Future Generations Graduate School'),
(103800, 85567, 'en', 'name', 'University of California - San Francisco School of Medicine'),
(103801, 85568, 'en', 'name', 'Food and Agriculture Organization of the United Nations'),
(103802, 85569, 'en', 'name', 'Swedish Cement and Concrete Research Institute'),
(103803, 85570, 'en', 'name', 'Intermountain Health Care'),
(103804, 85571, 'en', 'name', 'Postgraduate Institute of Medical Education and Research'),
(103805, 85571, 'hi', 'name', 'ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤šą¤‚ą¤”ą„€ą¤—ą¤¢ą¤¼'),
(103806, 85572, 'no_lang_code', 'name', 'Skulpt (United States)'),
(103807, 85573, 'en', 'name', 'RIKEN Center for Developmental Biology'),
(103808, 85573, 'ja', 'name', 'ē†åŒ–å­¦ē ”ē©¶ę‰€ å¤šē“°čƒžć‚·ć‚¹ćƒ†ćƒ å½¢ęˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103809, 85574, 'no_lang_code', 'name', 'WorldFish'),
(103810, 85575, 'en', 'name', 'Organisation for Economic Co-operation and Development'),
(103811, 85576, 'en', 'name', 'DCE - Danish Centre for Environment and Energy'),
(103812, 85576, 'da', 'name', 'Nationalt Center for MiljĆø og Energi'),
(103813, 85577, 'pl', 'name', 'Prywatna Wyższa Szkoła Ochrony Środowiska w Radomiu'),
(103814, 85578, 'en', 'name', 'Penn State Altoona'),
(103815, 85579, 'en', 'name', 'Midwest Palliative and Hospice Care Center'),
(103816, 85580, 'no_lang_code', 'name', 'Bard (United States)'),
(103817, 85581, 'en', 'name', 'Irkutsk State Academy of Agriculture'),
(103818, 85582, 'en', 'name', 'King Stanisław Leszczyński Higher School of Humanities'),
(103819, 85583, 'no_lang_code', 'name', 'GE Healthcare (Netherlands)'),
(103820, 85584, 'en', 'name', 'University of New Mexico'),
(103821, 85585, 'en', 'name', 'Stetson University'),
(103822, 85586, 'no_lang_code', 'name', 'Dow Agrosciences (United Kingdom)'),
(103823, 85587, 'no_lang_code', 'name', 'Chemtura (Germany)'),
(103824, 85588, 'en', 'name', 'Oxford University Museum of Natural History'),
(103825, 85589, 'en', 'name', 'Western Michigan University Homer Stryker M.D. School of Medicine'),
(103826, 85590, 'en', 'name', 'Hebrew Union College - Jewish Institute of Religion'),
(103827, 85591, 'no_lang_code', 'name', 'KCETLink'),
(103828, 85592, 'no_lang_code', 'name', 'Princeton Technology Corporation (United States)'),
(103829, 85593, 'ro', 'name', 'Academia de Muzică Gheorghe Dima'),
(103830, 85593, 'en', 'name', 'Gheorghe Dima Music Academy'),
(103831, 85594, 'no_lang_code', 'name', 'INSIA'),
(103832, 85595, 'en', 'name', 'Broadview University'),
(103833, 85596, 'en', 'name', 'Salvation Army'),
(103834, 85597, 'no_lang_code', 'name', 'Harrisvaccines (United States)'),
(103835, 85598, 'no_lang_code', 'name', 'Praxair Surface Technologies (Italy)'),
(103836, 85599, 'no_lang_code', 'name', 'RainDance Technologies (United States)'),
(103837, 85600, 'en', 'name', 'St Louis Community College'),
(103838, 85601, 'en', 'name', 'Council for the Central Laboratory of the Research Councils'),
(103839, 85602, 'no_lang_code', 'name', 'Search Technologies (United States)'),
(103840, 85603, 'nl', 'name', 'Pharmo Instituut'),
(103841, 85604, 'en', 'name', 'Hebrew Union College - Jewish Institute of Religion'),
(103842, 85605, 'no_lang_code', 'name', 'SOFCpower (Italy)'),
(103843, 85606, 'en', 'name', 'Florida Cancer Specialists & Research Institute'),
(103844, 85607, 'fi', 'name', 'Lahden ammattikorkeakoulu'),
(103845, 85607, 'en', 'name', 'Lahti University of Applied Sciences'),
(103846, 85608, 'no_lang_code', 'name', 'Rottapharm (Germany)'),
(103847, 85609, 'no_lang_code', 'name', 'Neurocomp Systems (United States)'),
(103848, 85610, 'en', 'name', 'Information and Communications University'),
(103849, 85611, 'no_lang_code', 'name', 'FEI Company (United States)'),
(103850, 85612, 'es', 'name', 'Hospital Xeral'),
(103851, 85613, 'en', 'name', 'Broward County Division of Libraries'),
(103852, 85614, 'fr', 'name', 'Pharmacie des HƓpitaux de l''Est LƩmanique'),
(103853, 85615, 'en', 'name', 'National Computer Facilities'),
(103854, 85615, 'nl', 'name', 'Stichting Nationale Computerfaciliteiten'),
(103855, 85616, 'no_lang_code', 'name', 'EMC (United States)'),
(103856, 85617, 'no_lang_code', 'name', 'Selcia (United Kingdom)'),
(103857, 85618, 'no_lang_code', 'name', 'IQE Silicon Compounds (United Kingdom)'),
(103858, 85619, 'no_lang_code', 'name', 'Vjatka State Humanitarian University'),
(103859, 85620, 'lv', 'name', 'Banku Augstskola'),
(103860, 85621, 'en', 'name', 'National Yang Ming University'),
(103861, 85622, 'en', 'name', 'Penn State Great Valley'),
(103862, 85623, 'no_lang_code', 'name', 'WorldFish'),
(103863, 85624, 'no_lang_code', 'name', 'Potentia Pharmaceuticals (United States)'),
(103864, 85625, 'no_lang_code', 'name', 'Shire (Sweden)'),
(103865, 85626, 'de', 'name', 'Klinik für Kinder- und Jugendmedizin'),
(103866, 85627, 'no_lang_code', 'name', 'Foster Wheeler (United Kingdom)'),
(103867, 85628, 'en', 'name', 'Hawaii Loa College'),
(103868, 85629, 'no_lang_code', 'name', 'Amphenol (United Kingdom)'),
(103869, 85630, 'en', 'name', 'Argosy University'),
(103870, 85631, 'no_lang_code', 'name', 'Ondax (United States)'),
(103871, 85632, 'en', 'name', 'St. Paul Medical Center'),
(103872, 85633, 'no_lang_code', 'name', 'Bayer CropScience (Netherlands)'),
(103873, 85634, 'en', 'name', 'United Nations Population Fund'),
(103874, 85635, 'en', 'name', 'State Agency for Consumer and Health Protection'),
(103875, 85636, 'en', 'name', 'Astronomical Association'),
(103876, 85637, 'no_lang_code', 'name', 'Casmed (United States)'),
(103877, 85638, 'no_lang_code', 'name', 'Swederail Ab'),
(103878, 85639, 'en', 'name', 'Nair Hospital Dental College'),
(103879, 85639, 'hi', 'name', 'नायर दंत ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ आणि ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(103880, 85640, 'no_lang_code', 'name', 'Ansys (France)'),
(103881, 85641, 'no_lang_code', 'name', 'Dyax (United States)');
INSERT INTO `ror_settings` VALUES
(103882, 85642, 'en', 'name', 'Research Councils UK'),
(103883, 85643, 'no_lang_code', 'name', 'Displaytech Incorporated'),
(103884, 85644, 'en', 'name', 'Crozer Chester Medical Center'),
(103885, 85645, 'en', 'name', 'Art Institute of Fort Worth'),
(103886, 85646, 'en', 'name', 'Texas Tech University Health Sciences Center'),
(103887, 85647, 'de', 'name', 'Institut für Angewandte Geodäsie'),
(103888, 85648, 'en', 'name', 'Carlos Albizu University'),
(103889, 85649, 'es', 'name', 'Cidemco'),
(103890, 85650, 'en', 'name', 'Massachusetts College of Pharmacy and Health Sciences'),
(103891, 85651, 'en', 'name', 'Thad Cochran National Warmwater Aquaculture Center'),
(103892, 85652, 'en', 'name', 'Shaanxi Tumor Hospital'),
(103893, 85653, 'no_lang_code', 'name', 'Iveco (Switzerland)'),
(103894, 85654, 'no_lang_code', 'name', 'Rete Ventures S.C.R.L.'),
(103895, 85655, 'en', 'name', 'South Ural State Humanitarian Pedagogical University'),
(103896, 85655, 'ru', 'name', 'Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(103897, 85656, 'no_lang_code', 'name', 'NPS Pharmaceuticals (United States)'),
(103898, 85657, 'en', 'name', 'Kyoto Sosei University'),
(103899, 85657, 'ja', 'name', 'äŗ¬éƒ½å‰µęˆå¤§å­¦'),
(103900, 85658, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization'),
(103901, 85659, 'fr', 'name', 'Institut d''Electronique Fondamentale'),
(103902, 85660, 'no_lang_code', 'name', 'Ineos (United Kingdom)'),
(103903, 85661, 'en', 'name', 'Penn State Beaver'),
(103904, 85662, 'en', 'name', 'University of Wisconsin–Washington County'),
(103905, 85663, 'no_lang_code', 'name', 'Beckman Coulter (Australia)'),
(103906, 85664, 'no_lang_code', 'name', 'Seagen (United States)'),
(103907, 85665, 'en', 'name', 'Experimental Therapeutics Centre'),
(103908, 85666, 'no_lang_code', 'name', 'TEI Biosciences (United States)'),
(103909, 85667, 'en', 'name', 'Oregon Health Policy and Research'),
(103910, 85668, 'en', 'name', 'Mary Bird Perkins Cancer Center'),
(103911, 85669, 'en', 'name', 'Ashridge Business School'),
(103912, 85670, 'en', 'name', 'Samara State Pedagogical University'),
(103913, 85670, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(103914, 85671, 'en', 'name', 'Adygei State University'),
(103915, 85672, 'no_lang_code', 'name', 'Bull (Germany)'),
(103916, 85673, 'en', 'name', 'Alliant International University'),
(103917, 85674, 'en', 'name', 'Texas Epilepsy Group'),
(103918, 85675, 'en', 'name', 'Art Institute of Charleston'),
(103919, 85676, 'no_lang_code', 'name', 'Kvaerner (Norway)'),
(103920, 85677, 'en', 'name', 'Art Institute of California'),
(103921, 85678, 'en', 'name', 'ICSU Regional Office for Africa'),
(103922, 85679, 'no_lang_code', 'name', 'e2v (United Kingdom)'),
(103923, 85680, 'en', 'name', 'Mountain States Health Alliance'),
(103924, 85681, 'no_lang_code', 'name', 'Counsyl (United States)'),
(103925, 85682, 'en', 'name', 'Saint Joseph Hospital'),
(103926, 85683, 'no_lang_code', 'name', 'Beckman Coulter (United Kingdom)'),
(103927, 85684, 'en', 'name', 'Wuhan Institute of Tuberculosis Control'),
(103928, 85684, 'zh', 'name', 'ę­¦ę±‰ē»“ę øē—…é˜²ę²»ē ”ē©¶ę‰€'),
(103929, 85685, 'no_lang_code', 'name', 'Akastor (Norway)'),
(103930, 85686, 'pl', 'name', 'Kijowski Narodowy Uniwersytet Ekonomiczny im. Wadyma Hetmana'),
(103931, 85686, 'en', 'name', 'Kyiv National Economic University'),
(103932, 85686, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(103933, 85686, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВаГима Š“ŠµŃ‚ŃŒŠ¼Š°Š½Š°'),
(103934, 85687, 'ro', 'name', 'Universitatea Petrol Si Gaze Ploiesti'),
(103935, 85688, 'en', 'name', 'University of Pennsylvania Museum of Archaeology and Anthropology'),
(103936, 85689, 'no_lang_code', 'name', 'Cambridge Energy Research Associates'),
(103937, 85690, 'en', 'name', 'University of Wisconsin Colleges'),
(103938, 85691, 'no_lang_code', 'name', 'Seoul Boramae Hospital'),
(103939, 85691, 'ko', 'name', 'ģ„œģšø ė³“ė¼ė§¤ 병원'),
(103940, 85692, 'en', 'name', 'Apor Vilmos Catholic College'),
(103941, 85692, 'hu', 'name', 'Apor Vilmos Katolikus Főiskola'),
(103942, 85693, 'en', 'name', 'South Dakota Agricultural Heritage Museum'),
(103943, 85694, 'no_lang_code', 'name', 'Interoute (Italy)'),
(103944, 85695, 'en', 'name', 'Research Campus Golm'),
(103945, 85696, 'en', 'name', 'Chamberlain College of Nursing'),
(103946, 85697, 'en', 'name', 'Chengdu Branch, Chinese Academy of Sciences'),
(103947, 85697, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ęˆéƒ½åˆ†é™¢'),
(103948, 85698, 'no_lang_code', 'name', 'GigOptix (Switzerland)'),
(103949, 85699, 'en', 'name', 'John Wesley Community Health Institute'),
(103950, 85700, 'en', 'name', 'Man Adult Hospital'),
(103951, 85700, 'ja', 'name', 'äø‡ęˆē—…é™¢'),
(103952, 85701, 'no_lang_code', 'name', 'Regenxbio (United States)'),
(103953, 85702, 'en', 'name', 'Utrecht Life Sciences'),
(103954, 85703, 'en', 'name', 'Les Roches GruyĆØre University of Applied Sciences'),
(103955, 85704, 'en', 'name', 'Miryang National University'),
(103956, 85705, 'en', 'name', 'Yugra State University'),
(103957, 85705, 'ru', 'name', 'Югорский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(103958, 85706, 'no_lang_code', 'name', 'Promedior (United States)'),
(103959, 85707, 'no_lang_code', 'name', 'Celgene (Germany)'),
(103960, 85708, 'en', 'name', 'University of Wisconsin–Platteville Richland'),
(103961, 85708, 'fr', 'name', 'UniversitƩ du wisconsin Ơ richland center'),
(103962, 85709, 'en', 'name', 'Sheffield Teaching Hospital'),
(103963, 85710, 'no_lang_code', 'name', 'Sapa (Norway)'),
(103964, 85711, 'no_lang_code', 'name', 'MSC Software (Germany)'),
(103965, 85712, 'en', 'name', 'Penn State Shenango'),
(103966, 85713, 'no_lang_code', 'name', '5T (Italy)'),
(103967, 85714, 'no_lang_code', 'name', 'Universitas Istropolitana'),
(103968, 85715, 'no_lang_code', 'name', 'Celsis (United States)'),
(103969, 85716, 'en', 'name', 'University of Wisconsin Green Bay – Sheboygan'),
(103970, 85717, 'en', 'name', 'Shanghai Finance University'),
(103971, 85717, 'zh', 'name', 'äøŠęµ·é‡‘čžå­¦é™¢'),
(103972, 85718, 'en', 'name', 'NSW Office of Environment & Heritage'),
(103973, 85719, 'en', 'name', 'Yaroslav Mudryi National Law University'),
(103974, 85719, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Ярослава ŠœŃƒŠ“рого'),
(103975, 85720, 'no_lang_code', 'name', 'Ceramatec (United States)'),
(103976, 85721, 'no_lang_code', 'name', 'CSR (United States)'),
(103977, 85722, 'en', 'name', 'Schüttler Waske Tennis-University'),
(103978, 85723, 'no_lang_code', 'name', 'Kongsberg Maritime (Norway)'),
(103979, 85724, 'en', 'name', 'International Social Science Council'),
(103980, 85725, 'en', 'name', 'National American University'),
(103981, 85726, 'no_lang_code', 'name', 'Teledyne Technologies (United Kingdom)'),
(103982, 85727, 'en', 'name', 'Tsinghua-UC Berkeley Shenzhen Institute'),
(103983, 85728, 'en', 'name', 'The Chicago School of Professional Psychology'),
(103984, 85729, 'en', 'name', 'Geochemistry of Soil Evolution'),
(103985, 85729, 'fr', 'name', 'Geochimie des sols et des eaux'),
(103986, 85730, 'en', 'name', 'Kostroma State Technological University'),
(103987, 85730, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ¾Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(103988, 85731, 'en', 'name', 'School of Management and Engineering Vaud'),
(103989, 85732, 'en', 'name', 'Penn State Berks'),
(103990, 85733, 'de', 'name', 'Landesnervenklinik Wagner-Jauregg'),
(103991, 85734, 'en', 'name', 'Lamar State College–Orange'),
(103992, 85735, 'en', 'name', 'Crimean State Humanitarian University'),
(103993, 85736, 'no_lang_code', 'name', 'FMC Technologies (Norway)'),
(103994, 85737, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization'),
(103995, 85738, 'no_lang_code', 'name', 'Sirrix (Germany)'),
(103996, 85739, 'en', 'name', 'Qatar Computing Research Institute'),
(103997, 85739, 'ar', 'name', 'معهد قطر Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų­ŁˆŲ³ŲØŲ©'),
(103998, 85740, 'no_lang_code', 'name', 'Gen9 (United States)'),
(103999, 85741, 'no_lang_code', 'name', 'Anasys Instruments (United States)'),
(104000, 85742, 'en', 'name', 'Virtua'),
(104001, 85743, 'en', 'name', 'Duke University Center for International Studies'),
(104002, 85744, 'en', 'name', 'Stanislaw Staszic College of Public Administration'),
(104003, 85745, 'en', 'name', 'Council for the Central Laboratory of the Research Councils'),
(104004, 85746, 'no_lang_code', 'name', 'Fugro (United Kingdom)'),
(104005, 85747, 'en', 'name', 'Zaporizhzhya State Medical University'),
(104006, 85748, 'no_lang_code', 'name', 'Rio Tinto Alcan (Canada)'),
(104007, 85749, 'en', 'name', 'Indiana University School of Medicine - Lafayette'),
(104008, 85750, 'no_lang_code', 'name', 'Garrad Hassan and Partners'),
(104009, 85751, 'no_lang_code', 'name', 'EMD Millipore (United States)'),
(104010, 85752, 'no_lang_code', 'name', 'Berner & Mattner (Germany)'),
(104011, 85753, 'en', 'name', 'Samara State University of Architecture and Civil Engineering'),
(104012, 85754, 'no_lang_code', 'name', 'Aerpio Pharmaceuticals (United States)'),
(104013, 85755, 'de', 'name', 'Rhoen-Klinikum AG'),
(104014, 85756, 'fr', 'name', 'Institut International d’IngĆ©nierie de l’Eau et de l’Environnement'),
(104015, 85757, 'no_lang_code', 'name', 'Willis Towers Watson (United Kingdom)'),
(104016, 85758, 'no_lang_code', 'name', 'SP Processum (Sweden)'),
(104017, 85759, 'en', 'name', 'Shanghai Information Center for Life Sciences'),
(104018, 85759, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·ē”Ÿå‘½ē§‘å­¦äæ”ęÆäø­åæƒå­¦ä¼šå·„ä½œéƒØ'),
(104019, 85760, 'en', 'name', 'South Carolina Educational Television Commission'),
(104020, 85761, 'en', 'name', 'University of Gilan'),
(104021, 85762, 'no_lang_code', 'name', 'Swedish ICT Research (Sweden)'),
(104022, 85763, 'en', 'name', 'The Courtald Institute of Art'),
(104023, 85764, 'no_lang_code', 'name', 'Nottingham Scientific (United Kingdom)'),
(104024, 85765, 'no_lang_code', 'name', 'LumaSense Technologies (United States)'),
(104025, 85766, 'no_lang_code', 'name', 'Grupo Antolin (Spain)'),
(104026, 85767, 'no_lang_code', 'name', 'RƩseau FerrƩ de France (France)'),
(104027, 85768, 'no_lang_code', 'name', 'Crystal Research (United States)'),
(104028, 85769, 'no_lang_code', 'name', 'Deutsche Telekom (Germany)'),
(104029, 85770, 'no_lang_code', 'name', 'OM Group (Canada)'),
(104030, 85771, 'en', 'name', 'Penn State Lehigh Valley'),
(104031, 85772, 'fr', 'name', 'Metaleurop'),
(104032, 85773, 'en', 'name', 'Benenden Hospital Trust'),
(104033, 85774, 'it', 'name', 'Museo tridentino di scienze naturali'),
(104034, 85775, 'no_lang_code', 'name', 'Biosurface Engineering Technologies (United States)'),
(104035, 85776, 'no_lang_code', 'name', 'Atego (United Kingdom)'),
(104036, 85777, 'en', 'name', 'Power and Water University of Technology'),
(104037, 85777, 'fa', 'name', 'دانؓگاه صنعت Ų¢ŲØ و برق'),
(104038, 85778, 'en', 'name', 'Miami University Middletown'),
(104039, 85779, 'no_lang_code', 'name', 'Oncothyreon (United States)'),
(104040, 85780, 'no_lang_code', 'name', 'MSL Group (Spain)'),
(104041, 85781, 'en', 'name', 'Shirayuri Women''s University'),
(104042, 85782, 'en', 'name', 'Blue Mountains International Hotel Management School'),
(104043, 85783, 'en', 'name', 'University of California - San Diego School of Medicine'),
(104044, 85784, 'en', 'name', 'Institute of Health'),
(104045, 85784, 'cs', 'name', 'ZdravotnĆ­ Ćŗstav se sĆ­dlem v Ostravě'),
(104046, 85785, 'no_lang_code', 'name', 'MSC Software (United States)'),
(104047, 85786, 'en', 'name', 'United Nations Department of Peacekeeping Operations'),
(104048, 85787, 'en', 'name', 'Preventative Health'),
(104049, 85788, 'en', 'name', 'MRC Clinical Sciences Centre'),
(104050, 85789, 'no_lang_code', 'name', 'ABS Materials (United States)'),
(104051, 85790, 'no_lang_code', 'name', 'ECI Telecom (United States)'),
(104052, 85791, 'no_lang_code', 'name', 'Innventia (Sweden)'),
(104053, 85792, 'en', 'name', 'Drug Development and Discovery'),
(104054, 85793, 'en', 'name', 'National Latino Cosmetology Association'),
(104055, 85794, 'no_lang_code', 'name', 'Catalana de Gas (Spain)'),
(104056, 85795, 'no_lang_code', 'name', 'Esterline (France)'),
(104057, 85796, 'en', 'name', 'Institute of Commerce and Business'),
(104058, 85797, 'no_lang_code', 'name', 'Rohwedder (Germany)'),
(104059, 85798, 'no_lang_code', 'name', 'WorldFish'),
(104060, 85799, 'en', 'name', 'Haderslev Hospital'),
(104061, 85799, 'da', 'name', 'Haderslev Sygehus'),
(104062, 85800, 'no_lang_code', 'name', 'Blue Marble Game (United States)'),
(104063, 85801, 'fr', 'name', 'Institut Universitaire International Luxembourg'),
(104064, 85802, 'en', 'name', 'Lindenwood University – Belleville'),
(104065, 85803, 'en', 'name', 'Long Island University Brentwood'),
(104066, 85804, 'no_lang_code', 'name', 'Filter Sensing Technologies (United States)'),
(104067, 85805, 'no_lang_code', 'name', 'Altec (Greece)'),
(104068, 85806, 'pt', 'name', 'Instituto Internacional para Tecnologia de Programação da Universidade das Nações Unidas'),
(104069, 85806, 'en', 'name', 'International Institute for Software Technology'),
(104070, 85807, 'sk', 'name', 'Spoločnosń Pro Historia'),
(104071, 85808, 'no_lang_code', 'name', 'Derma Sciences (United States)'),
(104072, 85809, 'en', 'name', 'Department of Family and Community Services'),
(104073, 85810, 'no_lang_code', 'name', 'BTG (United States)'),
(104074, 85811, 'en', 'name', 'Central College Nottingham'),
(104075, 85812, 'en', 'name', 'University of North Carolina School of Medicine'),
(104076, 85813, 'es', 'name', 'Consultores De Automatización Y Robótica'),
(104077, 85814, 'de', 'name', 'Deutsche Forschungsanstalt für Lebensmittelchemie, Leibniz Institut'),
(104078, 85814, 'en', 'name', 'German Research Centre for Food Chemistry'),
(104079, 85815, 'no_lang_code', 'name', 'Tohwa University'),
(104080, 85816, 'no_lang_code', 'name', 'Smart Fibres (United Kingdom)'),
(104081, 85817, 'en', 'name', 'Penn State Harrisburg'),
(104082, 85818, 'no_lang_code', 'name', 'Amec Foster Wheeler (United Kingdom)'),
(104083, 85819, 'en', 'name', 'St John''s Innovation Centre'),
(104084, 85820, 'en', 'name', 'Agency for Innovation by Science and Technology'),
(104085, 85820, 'nl', 'name', 'Agentschap voor Innovatie door Wetenschap en Technologie'),
(104086, 85821, 'en', 'name', 'Center for Power Electronics Systems'),
(104087, 85822, 'en', 'name', 'Panhandle Plains Historical Society'),
(104088, 85823, 'sv', 'name', 'LantmƤnnen'),
(104089, 85824, 'no_lang_code', 'name', 'Iveco (Germany)'),
(104090, 85825, 'no_lang_code', 'name', 'Aker Solutions (Norway)'),
(104091, 85826, 'de', 'name', 'Virchow Klinikum'),
(104092, 85827, 'en', 'name', 'Social Insurance Central General Hospital'),
(104093, 85827, 'ja', 'name', 'ę±äŗ¬å±±ę‰‹ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(104094, 85828, 'no_lang_code', 'name', 'EADS Innovation Works (Germany)'),
(104095, 85829, 'en', 'name', 'National Optical Astronomy Observatory'),
(104096, 85830, 'no_lang_code', 'name', 'Librede (United States)'),
(104097, 85831, 'en', 'name', 'United Nations High Commissioner for Refugees'),
(104098, 85832, 'en', 'name', 'University of Wisconsin School of Medicine and Public Health'),
(104099, 85833, 'en', 'name', 'St Mark''s Hospital'),
(104100, 85834, 'no_lang_code', 'name', 'Rank Hovis McDougall (United Kingdom)'),
(104101, 85835, 'en', 'name', 'Dublin Dental Hospital'),
(104102, 85836, 'en', 'name', 'Gateway Technical College'),
(104103, 85837, 'no_lang_code', 'name', 'European Association of the Machine Tool Industries'),
(104104, 85838, 'no_lang_code', 'name', 'Danube Integrated Circuit Engineering (Austria)'),
(104105, 85839, 'no_lang_code', 'name', 'SK holdings (South Korea)'),
(104106, 85840, 'en', 'name', 'Irkutsk State Linguistic University'),
(104107, 85840, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104108, 85841, 'no_lang_code', 'name', 'SGL Group (Poland)'),
(104109, 85842, 'no_lang_code', 'name', 'B/E Aerospace (United States)'),
(104110, 85843, 'en', 'name', 'Krasnoyarsk State Agrarian University'),
(104111, 85843, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104112, 85844, 'no_lang_code', 'name', 'Icagen (United States)'),
(104113, 85845, 'no_lang_code', 'name', 'Aker Solutions (United Kingdom)'),
(104114, 85846, 'no_lang_code', 'name', 'Ingeniería Energética y de Contaminación (Spain)'),
(104115, 85847, 'fr', 'name', 'Centre MƩdical de l''Institut Pasteur'),
(104116, 85848, 'no_lang_code', 'name', 'Tokushima Shimbun'),
(104117, 85848, 'ja', 'name', 'å¾³å³¶ę–°čž'),
(104118, 85849, 'en', 'name', 'Serlin Maternity Hospital'),
(104119, 85850, 'no_lang_code', 'name', 'Testia (France)'),
(104120, 85851, 'en', 'name', 'Texas Tech University'),
(104121, 85852, 'no_lang_code', 'name', 'Therapeutics Systems Research Laboratories (United States)'),
(104122, 85853, 'no_lang_code', 'name', 'Ambion Diagnostics'),
(104123, 85854, 'en', 'name', 'Ivanovo State Academy of Agriculture'),
(104124, 85855, 'en', 'name', 'Republican Clinical Oncology Center'),
(104125, 85855, 'ru', 'name', 'Республиканский клинический онкологический Гиспансер'),
(104126, 85856, 'en', 'name', 'University Hospital of North Staffordshire NHS Trust'),
(104127, 85857, 'no_lang_code', 'name', 'Hstar Technologies Corporation (United States)'),
(104128, 85858, 'no_lang_code', 'name', 'Integrated Photonics (United States)'),
(104129, 85859, 'en', 'name', 'North York General Hospital'),
(104130, 85860, 'en', 'name', 'South Russian State Technical University'),
(104131, 85860, 'ru', 'name', 'Южно-Российский Š³Š¾ŃŃƒŠ“арственный политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104132, 85861, 'en', 'name', 'University of Natural Resources and Applied Life Sciences'),
(104133, 85862, 'no_lang_code', 'name', 'Cameron (Norway)'),
(104134, 85863, 'no_lang_code', 'name', 'Sigma Technologies International (United States)'),
(104135, 85864, 'de', 'name', 'artec Forschungszentrum Nachhailtigkeit'),
(104136, 85865, 'en', 'name', 'Dutch Institute for Alcohol Policy STAP'),
(104137, 85865, 'nl', 'name', 'Nederlands Instituut voor Alcoholbeleid STAP'),
(104138, 85866, 'no_lang_code', 'name', 'Bioptigen (United States)'),
(104139, 85867, 'en', 'name', 'International Center for Agricultural Research in the Dry Areas'),
(104140, 85868, 'en', 'name', 'University Sakartvelo'),
(104141, 85869, 'it', 'name', 'Consorzio Interuniversitario Risonanze Magnetiche di Metallo Proteine'),
(104142, 85870, 'en', 'name', 'Tyumen State Architectural University'),
(104143, 85871, 'fr', 'name', 'Laboratoire d''Etude de et ContrƓle de l''Environnement SidƩrurgique'),
(104144, 85872, 'no_lang_code', 'name', 'GE Global Research (Germany)'),
(104145, 85873, 'en', 'name', 'St. Luke''s Hospital and Health Network'),
(104146, 85874, 'no_lang_code', 'name', 'BIOVIA (United Kingdom)'),
(104147, 85875, 'no_lang_code', 'name', 'Eramet (Belgium)'),
(104148, 85876, 'en', 'name', 'Asian University'),
(104149, 85877, 'no_lang_code', 'name', 'SK Techx (South Korea)'),
(104150, 85878, 'en', 'name', 'Argosy University'),
(104151, 85879, 'no_lang_code', 'name', 'TTP (United Kingdom)'),
(104152, 85880, 'no_lang_code', 'name', 'Repros Therapeutics (United States)'),
(104153, 85881, 'en', 'name', 'Bayfront Health'),
(104154, 85882, 'en', 'name', 'National University of Water and Environmental Engineering'),
(104155, 85882, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного госпоГарства та ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń'),
(104156, 85883, 'en', 'name', 'United Nations Office on Drugs and Crime'),
(104157, 85884, 'en', 'name', 'University of New Mexico - Taos'),
(104158, 85885, 'en', 'name', 'University of Wisconsin–Fox Valley'),
(104159, 85886, 'en', 'name', 'St.Vincent Health'),
(104160, 85887, 'no_lang_code', 'name', 'Fidelity Comtech (United States)'),
(104161, 85888, 'en', 'name', 'Honda Research Institute Europe'),
(104162, 85889, 'no_lang_code', 'name', 'Visual Awareness Research (United States)'),
(104163, 85890, 'en', 'name', 'Easter Seals North Texas'),
(104164, 85891, 'en', 'name', 'Dallas Personal Injury Lawyer'),
(104165, 85892, 'en', 'name', 'Texas A&M Health Science Center'),
(104166, 85893, 'no_lang_code', 'name', 'BMT Fluid Mechanics (United Kingdom)'),
(104167, 85894, 'en', 'name', 'LCPL Pathan'),
(104168, 85895, 'es', 'name', 'Universidad Interamericana de Costa Rica'),
(104169, 85896, 'en', 'name', 'Harvard Medical School'),
(104170, 85897, 'no_lang_code', 'name', 'Zodiac Aerospace (France)'),
(104171, 85898, 'no_lang_code', 'name', 'Interoute (United Kingdom)'),
(104172, 85899, 'no_lang_code', 'name', 'MDA Information Systems (United States)'),
(104173, 85900, 'en', 'name', 'International Food Policy Research Institute'),
(104174, 85901, 'en', 'name', 'Regional Institute of Ophthalmology Kolkata'),
(104175, 85901, 'bn', 'name', 'ą¦°ą¦æą¦œą¦æą¦“ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦…ą¦Ŗą¦„ą§ą¦Æą¦¾ą¦²ą¦®ą§‹ą¦²ą¦œą¦æ'),
(104176, 85902, 'no_lang_code', 'name', 'XRpro (United States)'),
(104177, 85903, 'en', 'name', 'Advanced Biotechnology Center'),
(104178, 85903, 'it', 'name', 'Centro Biotecnologie Avanzate'),
(104179, 85904, 'no_lang_code', 'name', 'Crystal Bioscience (United States)'),
(104180, 85905, 'en', 'name', 'Texas Woman''s University'),
(104181, 85906, 'no_lang_code', 'name', 'Zabala (Spain)'),
(104182, 85907, 'no_lang_code', 'name', 'Holcim (Canada)'),
(104183, 85908, 'no_lang_code', 'name', 'LM Wind Power (Netherlands)'),
(104184, 85909, 'en', 'name', 'Penn State Mont Alto'),
(104185, 85910, 'no_lang_code', 'name', 'Silicon Graphics International (United States)'),
(104186, 85911, 'en', 'name', 'Lake Erie College of Osteopathic Medicine'),
(104187, 85912, 'no_lang_code', 'name', 'Alticor (United States)'),
(104188, 85913, 'fr', 'name', 'Ɖcole Internationale des Sciences du Traitement de l''Information'),
(104189, 85914, 'it', 'name', 'Politecnico di Milano - Department of Design'),
(104190, 85915, 'no_lang_code', 'name', 'Oldham (France)'),
(104191, 85916, 'en', 'name', 'Moscow International University of Business and Information Technology'),
(104192, 85917, 'en', 'name', 'Naval Medical Research Institute'),
(104193, 85918, 'no_lang_code', 'name', 'Elektrobit (Germany)'),
(104194, 85919, 'no_lang_code', 'name', 'Esterline (Canada)'),
(104195, 85920, 'en', 'name', 'Ministry of Fisheries and Coastal Affairs'),
(104196, 85921, 'en', 'name', 'Catholic University of Portugals Institute for Political Studies'),
(104197, 85922, 'no_lang_code', 'name', 'SK Hynix (South Korea)'),
(104198, 85923, 'no_lang_code', 'name', 'Rockwell Collins (France)'),
(104199, 85924, 'en', 'name', 'The Automobile Association'),
(104200, 85925, 'en', 'name', 'Mundelein College'),
(104201, 85926, 'no_lang_code', 'name', 'Nortel (United States)'),
(104202, 85927, 'en', 'name', 'Finnish Food Safety Authority Evira'),
(104203, 85928, 'de', 'name', 'Nationale Einrichtung fur Radioactive AbfƤlle und angereicherte Spaltmaterialien'),
(104204, 85928, 'nl', 'name', 'Nationale Instelling voor Radioactief Afval en verrijkte Splijtstoffen'),
(104205, 85928, 'fr', 'name', 'Organisme National des Déchets Radioactifs et des Matières Fissiles Enrichies'),
(104206, 85929, 'fr', 'name', 'Fondation MƩrieux'),
(104207, 85930, 'no_lang_code', 'name', 'SC IPA SA (Romania)'),
(104208, 85931, 'no_lang_code', 'name', 'GlobalWafers (Singapore)'),
(104209, 85932, 'no_lang_code', 'name', 'C-Link Micro Imaging'),
(104210, 85933, 'en', 'name', 'Spectrum-Sustainable Development Knowledge Network'),
(104211, 85934, 'no_lang_code', 'name', 'Jeppensen'),
(104212, 85935, 'no_lang_code', 'name', 'Mitsubishi Chemical (Japan)'),
(104213, 85935, 'ja', 'name', 'äø‰č±ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(104214, 85936, 'en', 'name', 'Bloxwich Hospital'),
(104215, 85937, 'en', 'name', 'RIKEN Center for Biosystems Dynamics Research'),
(104216, 85937, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ē”Ÿå‘½ę©Ÿčƒ½ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(104217, 85938, 'no_lang_code', 'name', 'RUAG (Switzerland)'),
(104218, 85939, 'en', 'name', 'C.K. Tedam University of Technology and Applied Sciences'),
(104219, 85940, 'no_lang_code', 'name', 'DMG Mori (Japan)'),
(104220, 85940, 'ja', 'name', 'DMGę£®ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(104221, 85941, 'en', 'name', 'Dr. NTR University of Health Sciences'),
(104222, 85941, 'ne', 'name', 'NTR ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(104223, 85941, 'hi', 'name', 'ą¤ą¤Øą¤Ÿą„€ą¤†ą¤° ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(104224, 85941, 'te', 'name', 'ą°Žą°Øą±.టి.ą°†ą°°ą±. ą°†ą°°ą±‹ą°—ą±ą°Æą°¶ą°¾ą°øą±ą°¤ą±ą°° ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(104225, 85942, 'no_lang_code', 'name', 'Legrand (France)'),
(104226, 85943, 'no_lang_code', 'name', 'Nexans (United States)'),
(104227, 85944, 'en', 'name', 'Okayama University'),
(104228, 85944, 'ja', 'name', '岔山大学'),
(104229, 85945, 'no_lang_code', 'name', 'Latécoère (Czechia)'),
(104230, 85946, 'en', 'name', 'FIT to be a MOM'),
(104231, 85947, 'no_lang_code', 'name', 'Best Biotech'),
(104232, 85948, 'no_lang_code', 'name', 'Mahle (Germany)'),
(104233, 85949, 'en', 'name', 'Spinal Cord Injury Network'),
(104234, 85950, 'no_lang_code', 'name', 'Science and Technology Corporation (Netherlands)'),
(104235, 85951, 'en', 'name', 'Citi University'),
(104236, 85951, 'mn', 'name', 'ДИТИ ИЄ ДУРГУУЛЬ'),
(104237, 85952, 'en', 'name', 'Central Louisiana Community College'),
(104238, 85953, 'en', 'name', 'Adithya Institute of Technology'),
(104239, 85954, 'en', 'name', 'Dudley and Walsall Mental Health Partnership NHS Trust'),
(104240, 85955, 'en', 'name', 'Alagappa Chettiar Government College of Engineering and Technology'),
(104241, 85956, 'es', 'name', 'Universidad de Massachusetts'),
(104242, 85956, 'en', 'name', 'University of Massachusetts System'),
(104243, 85956, 'fr', 'name', 'UniversitƩ du massachusetts'),
(104244, 85957, 'en', 'name', 'Montenegrin Bureau of Metrology'),
(104245, 85958, 'en', 'name', 'University College of Nabi Akram'),
(104246, 85958, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ł†ŲØŪŒ اکرم'),
(104247, 85959, 'en', 'name', 'Institute for Geometry and Physics'),
(104248, 85960, 'en', 'name', 'UMass Memorial Medical Center'),
(104249, 85961, 'en', 'name', 'Stay in the Shade'),
(104250, 85962, 'en', 'name', 'Casa GuaĀ­naĀ­juĀ­ato Quad Cities'),
(104251, 85963, 'en', 'name', 'Imazon'),
(104252, 85963, 'pt', 'name', 'Instituto do Homem e Meio Ambiente da AmazƓnia'),
(104253, 85964, 'en', 'name', 'American University of Barbados'),
(104254, 85965, 'no_lang_code', 'name', 'SandboxAQ'),
(104255, 85966, 'en', 'name', 'New England Baptist Hospital'),
(104256, 85967, 'no_lang_code', 'name', 'OmniVision Technologies (Norway)'),
(104257, 85968, 'no_lang_code', 'name', 'MFKK Invention and Research Center Services (Hungary)'),
(104258, 85969, 'no_lang_code', 'name', 'IHS Markit (United Kingdom)'),
(104259, 85970, 'en', 'name', 'IIJ Research Laboratory'),
(104260, 85970, 'ja', 'name', 'IIJęŠ€č”“ē ”ē©¶ę‰€'),
(104261, 85971, 'en', 'name', 'ICAP Global Health'),
(104262, 85972, 'en', 'name', 'Clinical Hospital No. 8'),
(104263, 85972, 'ru', 'name', 'ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–8'),
(104264, 85973, 'fr', 'name', 'Centre Integre de Sante et de Services Sociaux de Laval'),
(104265, 85974, 'en', 'name', 'Kebri Dehar University'),
(104266, 85975, 'en', 'name', 'American Medical Association'),
(104267, 85976, 'de', 'name', 'Landesarchiv Baden Württemberg'),
(104268, 85977, 'en', 'name', 'Environmental Smoke Institute'),
(104269, 85978, 'en', 'name', 'Max Planck Institute for Plasma Physics - Greifswald'),
(104270, 85978, 'de', 'name', 'Max-Planck-Institut für Plasmaphysik, Teilinstitut Greifswald'),
(104271, 85979, 'no_lang_code', 'name', 'Environmental Energy & Engineering'),
(104272, 85980, 'en', 'name', 'Isabel Gotzkowsky and Friends'),
(104273, 85981, 'en', 'name', 'Portuguese Platform of BioImaging'),
(104274, 85982, 'en', 'name', 'Maulana Mukhtar Ahmad Nadvi Technical Campus'),
(104275, 85983, 'en', 'name', 'Eqrem Ƈabej University'),
(104276, 85983, 'sq', 'name', 'Universiteti Eqrem Ƈabej'),
(104277, 85984, 'en', 'name', 'Max Planck Institute for the Study of Religious and Ethnic Diversity'),
(104278, 85984, 'de', 'name', 'Max-Planck-Institut zur Erforschung Multireligiƶser und Multiethnischer Gesellschaften'),
(104279, 85985, 'en', 'name', 'Ministry of Natural Resources and Forestry'),
(104280, 85985, 'fr', 'name', 'MinistĆØre des Richesses Naturelles et des ForĆŖts'),
(104281, 85986, 'en', 'name', 'Australian Tropical Herbarium'),
(104282, 85987, 'no_lang_code', 'name', 'Sweco (Czechia)'),
(104283, 85988, 'en', 'name', 'Brain Imaging Network'),
(104284, 85989, 'en', 'name', 'The Institute for Regional Conservation'),
(104285, 85990, 'no_lang_code', 'name', 'Mitsubishi Tanabe Pharma Corporation'),
(104286, 85990, 'ja', 'name', 'ē”°č¾ŗäø‰č±č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(104287, 85991, 'en', 'name', 'Child Neurology Associates'),
(104288, 85992, 'en', 'name', 'National Standards Authority of Ireland'),
(104289, 85992, 'ga', 'name', 'ÚdarĆ”s um ChaighdeĆ”in NĆ”isiĆŗnta na hƉireann'),
(104290, 85993, 'en', 'name', 'China Industrial Control Systems Cyber Emergency Response Team'),
(104291, 85993, 'zh', 'name', 'å›½å®¶å·„äøšäæ”ęÆå®‰å…Øå‘å±•ē ”ē©¶äø­åæƒ'),
(104292, 85994, 'es', 'name', 'Universidad Estatal de Sonora'),
(104293, 85995, 'en', 'name', 'Federal University of GoiƔs'),
(104294, 85995, 'pt', 'name', 'Universidade Federal de GoiƔs'),
(104295, 85996, 'de', 'name', 'Anton Bruckner Institut Linz'),
(104296, 85997, 'en', 'name', 'Open Geospatial Consortium'),
(104297, 85998, 'it', 'name', 'Ente Regionale per i Servizi all''Agricoltura e alle Foreste'),
(104298, 85999, 'no_lang_code', 'name', 'Manz (Italy)'),
(104299, 86000, 'en', 'name', 'Community Mercy Health Partners'),
(104300, 86001, 'en', 'name', 'Finnish Biomedical Imaging Node'),
(104301, 86002, 'pt', 'name', 'SOS Mata Atlântica Foundation'),
(104302, 86003, 'fr', 'name', 'Centre IntĆ©grĆ© Universitaire de SantĆ© et de Services Sociaux du Saguenay–Lac-Saint-Jean'),
(104303, 86004, 'en', 'name', 'State Key Laboratory of Hydrology-Water Resources and Hydraulic Engineering'),
(104304, 86004, 'zh', 'name', 'ę°“ę–‡ę°“čµ„ęŗäøŽę°“åˆ©å·„ēØ‹ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(104305, 86005, 'no_lang_code', 'name', 'Bionnovation (Brazil)'),
(104306, 86006, 'en', 'name', 'Our Lady of the Lake Regional Medical Center'),
(104307, 86007, 'en', 'name', 'Kaishi Professional University'),
(104308, 86007, 'ja', 'name', '開志専門職大学'),
(104309, 86008, 'en', 'name', 'Kyushu Rosai Hospital'),
(104310, 86008, 'ja', 'name', 'ä¹å·žåŠ“ē½ē—…é™¢'),
(104311, 86009, 'en', 'name', 'Advanced Light Microscopy Italian Node'),
(104312, 86010, 'en', 'name', 'University of Technology and Applied Sciences - Al Mussanah'),
(104313, 86010, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚Ų© بالمصنعة'),
(104314, 86011, 'en', 'name', 'Tohoku Medical and Pharmaceutical University Hospital'),
(104315, 86011, 'ja', 'name', 'ę±åŒ—åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(104316, 86012, 'en', 'name', 'Villa College'),
(104317, 86013, 'en', 'name', 'Southwest China Institute of Electronic Technology'),
(104318, 86013, 'zh', 'name', 'č„æå—ē”µå­ęŠ€ęœÆē ”ē©¶ę‰€'),
(104319, 86014, 'no_lang_code', 'name', 'Cerene Biomedics'),
(104320, 86015, 'en', 'name', 'Institute of Chinese Literature and Philosophy, Academia Sinica'),
(104321, 86015, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢äø­åœ‹ę–‡å“²ē ”ē©¶ę‰€'),
(104322, 86016, 'en', 'name', 'Black Country Healthcare NHS Foundation Trust'),
(104323, 86017, 'en', 'name', 'Federal Technical and Vocational Education and Training Institute'),
(104324, 86018, 'de', 'name', 'Hochschule für Wirtschaft und Gesellschaft Ludwigshafen'),
(104325, 86018, 'en', 'name', 'Ludwigshafen University of Business and Society'),
(104326, 86019, 'en', 'name', 'National Biotechnology Development Agency'),
(104327, 86020, 'no_lang_code', 'name', 'Yara (Germany)'),
(104328, 86021, 'en', 'name', 'National Scientific Centre "Institute of Metrology"'),
(104329, 86021, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии»'),
(104330, 86021, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрології»'),
(104331, 86022, 'no_lang_code', 'name', 'China Electronics Technology Group Corporation'),
(104332, 86022, 'zh', 'name', 'äø­å›½ē”µå­ē§‘ęŠ€é›†å›¢å…¬åø'),
(104333, 86023, 'no_lang_code', 'name', 'Cargill (United Kingdom)'),
(104334, 86024, 'en', 'name', 'Italian Cultural Institute, Tunis'),
(104335, 86024, 'ar', 'name', 'المعهد Ų§Ł„Ų„ŁŠŲ·Ų§Ł„ŁŠ للثقافة'),
(104336, 86025, 'en', 'name', 'Greater Lawrence Family Health Center'),
(104337, 86026, 'no_lang_code', 'name', 'Mahle (Austria)'),
(104338, 86027, 'en', 'name', 'Kyiv Medical University'),
(104339, 86027, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104340, 86028, 'en', 'name', 'Vardhaman College of Engineering'),
(104341, 86029, 'en', 'name', 'France-BioImaging'),
(104342, 86030, 'en', 'name', 'Center for Advanced Preclinical Imaging'),
(104343, 86030, 'cs', 'name', 'Centrum pokročilĆ©ho preklinickĆ©ho zobrazovĆ”nĆ­'),
(104344, 86031, 'en', 'name', 'Italian Cultural Institute, London'),
(104345, 86032, 'en', 'name', 'Italian Cultural Institute, Tokyo'),
(104346, 86032, 'ja', 'name', 'ć‚¤ć‚æćƒŖć‚¢ę–‡åŒ–ä¼šé¤Ø'),
(104347, 86033, 'no_lang_code', 'name', 'Cohu (United States)'),
(104348, 86034, 'id', 'name', 'Badan Penelitian dan Pengembangan Kota Pekanbaru'),
(104349, 86034, 'en', 'name', 'Research and Development Agency of Pekanbaru City'),
(104350, 86035, 'en', 'name', 'Skills'),
(104351, 86036, 'en', 'name', 'Keck Institute for Space Studies'),
(104352, 86037, 'en', 'name', 'William Hill Manor'),
(104353, 86038, 'en', 'name', 'OSF Saint Francis Medical Center'),
(104354, 86039, 'en', 'name', 'Vietnam Metrology Institute'),
(104355, 86039, 'vi', 'name', 'Viện Đo lĘ°į»ng Việt Nam'),
(104356, 86040, 'no_lang_code', 'name', 'Internet Initiative Japan'),
(104357, 86040, 'ja', 'name', 'ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆć‚¤ćƒ‹ć‚·ć‚¢ćƒ†ć‚£ćƒ–'),
(104358, 86041, 'en', 'name', 'Catholic Big Sisters & Big Brothers'),
(104359, 86042, 'fr', 'name', 'Centre IntƩgrƩ de SantƩ et Services Sociaux de la GaspƩsie'),
(104360, 86043, 'en', 'name', 'Talas State University'),
(104361, 86043, 'ky', 'name', 'Талас ŠœŠ°Š¼Š»ŠµŠŗŠµŃ‚Ń‚ŠøŠŗ Университети'),
(104362, 86044, 'no_lang_code', 'name', 'Trelleborg (Norway)'),
(104363, 86045, 'sq', 'name', 'Universiteti i Shkencƫs sƫ Informacionit dhe Teknologjisƫ Shƫn Apostull Pavli'),
(104364, 86045, 'en', 'name', 'University of Information Science and Technology St. Paul The Apostle'),
(104365, 86045, 'mk', 'name', 'Универзитет за информатички науки Šø технологии Дв. Апостол Павле'),
(104366, 86046, 'en', 'name', 'Forestmoon'),
(104367, 86047, 'pt', 'name', 'Instituto de Pesquisa Ambiental da AmazƓnia'),
(104368, 86048, 'en', 'name', 'Kanagawa Cancer Center'),
(104369, 86048, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(104370, 86049, 'no_lang_code', 'name', 'Amcor (Germany)'),
(104371, 86050, 'no_lang_code', 'name', 'Cyrus Biotechnology'),
(104372, 86051, 'en', 'name', 'Swedish American Hospital'),
(104373, 86052, 'id', 'name', 'Badan Penelitian dan Pengembangan Provinsi Jawa Timur'),
(104374, 86052, 'en', 'name', 'Research and Development Agency of East Java Province'),
(104375, 86053, 'en', 'name', 'Standards and Calibration Laboratory'),
(104376, 86053, 'zh', 'name', 'ę ‡å‡†åŠę ”ę­£å®žéŖŒę‰€'),
(104377, 86054, 'en', 'name', 'Africa First'),
(104378, 86055, 'en', 'name', 'Tohoku Medical and Pharmaceutical University Wakabayashi Hospital'),
(104379, 86055, 'ja', 'name', 'ę±åŒ—åŒ»ē§‘č–¬ē§‘å¤§å­¦ č‹„ęž—ē—…é™¢'),
(104380, 86056, 'en', 'name', 'International Psychogeriatric Association'),
(104381, 86057, 'es', 'name', 'Instituto de Acuacultura del Estado de Sonora'),
(104382, 86058, 'no_lang_code', 'name', 'Fibabanka'),
(104383, 86059, 'en', 'name', 'Meiji Pharmaceutical University'),
(104384, 86059, 'ja', 'name', 'ę˜Žę²»č–¬ē§‘å¤§å­¦'),
(104385, 86060, 'no_lang_code', 'name', 'Mosadex CV (Netherlands)'),
(104386, 86061, 'en', 'name', 'Best Buddies International'),
(104387, 86062, 'no_lang_code', 'name', 'Garage Brain Science'),
(104388, 86063, 'en', 'name', 'Ukrainian Museum'),
(104389, 86064, 'en', 'name', 'Electric Vehicle Challenge'),
(104390, 86065, 'en', 'name', 'Texas Board of Professional Engineers and Land Surveyors'),
(104391, 86066, 'en', 'name', 'Louisiana Community and Technical College System'),
(104392, 86067, 'en', 'name', 'Tohoku Medical and Pharmaceutical University'),
(104393, 86067, 'ja', 'name', 'ę±åŒ—č–¬ē§‘å¤§å­¦'),
(104394, 86068, 'en', 'name', 'Gediz University'),
(104395, 86068, 'tr', 'name', 'Gediz Üniversitesi'),
(104396, 86069, 'en', 'name', 'Erasmus Optical Imaging Centre'),
(104397, 86070, 'en', 'name', 'Career Point University'),
(104398, 86070, 'hi', 'name', 'करिअर ą¤Ŗą„‰ą¤‡ą¤‚ą¤Ÿ ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(104399, 86071, 'en', 'name', 'International Platform of Registered Systematic Review and Meta-analysis Protocols'),
(104400, 86072, 'en', 'name', 'Center for Policy Analysis'),
(104401, 86073, 'no_lang_code', 'name', 'Synapse (Netherlands)'),
(104402, 86074, 'pt', 'name', 'Instituto Superior de Contabilidade e Administracao do Porto'),
(104403, 86075, 'en', 'name', 'Tokyo Medical and Dental University Hospital'),
(104404, 86075, 'ja', 'name', 'ę±äŗ¬åŒ»ē§‘ę­Æē§‘å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(104405, 86076, 'en', 'name', 'Wyss Institute for Biologically Inspired Engineering'),
(104406, 86077, 'en', 'name', 'International Cancer Alternative Network'),
(104407, 86078, 'no_lang_code', 'name', 'Schreiner Group (Germany)'),
(104408, 86079, 'en', 'name', 'Dorothy Pattison Hospital'),
(104409, 86080, 'en', 'name', 'Directory of Open Access Journals'),
(104410, 86081, 'en', 'name', 'Credible Arts Therapies'),
(104411, 86082, 'es', 'name', 'Estación Experimental de Pastos y Forrajes Indio Hatuey'),
(104412, 86083, 'no_lang_code', 'name', 'AC2T Research (Austria)'),
(104413, 86083, 'de', 'name', 'Ɩsterreichisches Kompetenzzentrum für Tribologie'),
(104414, 86084, 'en', 'name', 'Mountain Top University'),
(104415, 86085, 'en', 'name', 'Institute of Water Problems'),
(104416, 86085, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГных проблем Š ŠŠ'),
(104417, 86086, 'en', 'name', 'Franciscan Missionaries of Our Lady University'),
(104418, 86087, 'no_lang_code', 'name', 'AES (United States)'),
(104419, 86088, 'no_lang_code', 'name', 'Itron (France)'),
(104420, 86089, 'en', 'name', 'Berkshire Medical Center'),
(104421, 86090, 'en', 'name', 'Okayama Medical Center'),
(104422, 86090, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å²”å±±åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(104423, 86091, 'en', 'name', 'Institute of General and Inorganic Chemistry'),
(104424, 86091, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по обща Šø неорганична Ń…ŠøŠ¼ŠøŃ'),
(104425, 86092, 'no_lang_code', 'name', 'Vivendi (France)'),
(104426, 86093, 'en', 'name', 'Institute for High Pressure Physics'),
(104427, 86093, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики высоких Гавлений имени'),
(104428, 86094, 'en', 'name', 'Institute of Philosophy and Sociology'),
(104429, 86094, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŃŠ¾Ń†ŠøŠ¾Š»Š¾Š³ŠøŃ'),
(104430, 86095, 'lv', 'name', 'Latvijas nacionālais metroloģijas centrs'),
(104431, 86095, 'en', 'name', 'Metrology Bureau'),
(104432, 86096, 'en', 'name', 'University of Tennessee Southern'),
(104433, 86097, 'no_lang_code', 'name', 'Alcatel Lucent (Germany)'),
(104434, 86098, 'en', 'name', 'Black Country Partnership NHS Foundation Trust'),
(104435, 86099, 'en', 'name', 'Paralyzed Veterans of America, Buckeye Chapter'),
(104436, 86100, 'en', 'name', 'Komi Republican Academy of State Service and Administration'),
(104437, 86101, 'no_lang_code', 'name', 'S21sec (Spain)'),
(104438, 86102, 'en', 'name', 'Quincy University'),
(104439, 86103, 'en', 'name', 'Emirates Metrology Institute'),
(104440, 86103, 'ar', 'name', 'معهد الامارات Ł„Ł„Ł…ŲŖŲ±ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(104441, 86104, 'en', 'name', 'Python in Heliophysics Community'),
(104442, 86105, 'en', 'name', 'National Consensus Project for Quality Palliative Care'),
(104443, 86106, 'en', 'name', 'Multi-Modal Molecular Imaging Italian Node'),
(104444, 86107, 'no_lang_code', 'name', 'Mowi (Canada)'),
(104445, 86108, 'no_lang_code', 'name', 'Nautilus Environmental'),
(104446, 86109, 'en', 'name', 'MRC Institute of Hearing Research'),
(104447, 86110, 'en', 'name', 'Scientific Advanced Learning Technologies'),
(104448, 86110, 'hi', 'name', 'ą¤øą¤¾ą¤‡ą¤‚ą¤Ÿą¤æą¤«ą¤æą¤• ą¤ą¤”ą¤µą¤¾ą¤‚ą¤ø ą¤²ą¤°ą„ą¤Øą¤æą¤‚ą¤— ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€ą¤œ (ą¤ą¤øą¤ą¤ą¤²ą¤Ÿą„€) ą¤Ÿą„ą¤°ą¤øą„ą¤Ÿ'),
(104449, 86111, 'hi', 'name', 'Gurukul Kangri Vishwavidyalaya'),
(104450, 86112, 'no_lang_code', 'name', 'Accenture (Germany)'),
(104451, 86113, 'no_lang_code', 'name', 'ASM International (Netherlands)'),
(104452, 86114, 'fr', 'name', 'SantƩ MontƩrƩgie'),
(104453, 86115, 'id', 'name', 'Institut Ilmu Kesehatan STRADA Indonesia'),
(104454, 86116, 'es', 'name', 'Ministerio de Educación del Perú'),
(104455, 86116, 'en', 'name', 'Ministry of Education of Peru'),
(104456, 86117, 'en', 'name', 'Eunice Kennedy Shriver Center'),
(104457, 86118, 'en', 'name', 'I Believe'),
(104458, 86119, 'no_lang_code', 'name', 'SYSTRA (France)'),
(104459, 86120, 'no_lang_code', 'name', 'Zhejiang Haikang Zhilian Science and Technology Co.'),
(104460, 86120, 'zh', 'name', 'ęµ™ę±Ÿęµ·åŗ·ę™ŗč”ē§‘ęŠ€ęœ‰é™å…¬åø'),
(104461, 86121, 'no_lang_code', 'name', 'Acorda Therapeutics (Finland)'),
(104462, 86122, 'en', 'name', 'Open Geospatial Consortium'),
(104463, 86123, 'en', 'name', 'Federal Center of Brain Research and Neurotechnologies'),
(104464, 86123, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ центр мозга Šø нейротехнологий» Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(104465, 86124, 'en', 'name', 'Kyushu Art Institute of Technology'),
(104466, 86124, 'ja', 'name', 'ä¹å·žčŠøč”“å·„ē§‘å¤§å­¦'),
(104467, 86125, 'en', 'name', 'Kyushu University Beppu Hospital'),
(104468, 86125, 'ja', 'name', 'ä¹å·žå¤§å­¦ē—…é™¢åˆ„åŗœē—…é™¢'),
(104469, 86126, 'en', 'name', 'Kyushu University Hospital'),
(104470, 86126, 'ja', 'name', 'ä¹å·žå¤§å­¦ē—…é™¢'),
(104471, 86127, 'no_lang_code', 'name', 'Redivis'),
(104472, 86128, 'en', 'name', 'University of Fukui'),
(104473, 86128, 'ja', 'name', 'ē¦äŗ•å¤§å­¦'),
(104474, 86129, 'en', 'name', 'California Postsecondary Education Commission'),
(104475, 86130, 'en', 'name', 'North Bristol NHS Trust'),
(104476, 86131, 'no_lang_code', 'name', 'Andrei Sakharov Center'),
(104477, 86131, 'fr', 'name', 'Centre d''AndreĆÆ Sakharov'),
(104478, 86131, 'ru', 'name', 'Да́харовский центр'),
(104479, 86132, 'ga', 'name', 'OspidƩal na hOllscoile, Port LƔirge'),
(104480, 86132, 'en', 'name', 'University Hospital Waterford'),
(104481, 86133, 'no_lang_code', 'name', 'Madda Walabu University'),
(104482, 86133, 'om', 'name', 'Yuniversiitii Madda Walaabuu'),
(104483, 86133, 'am', 'name', 'įˆ˜į‹³ į‹ˆįˆ‹į‰” į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(104484, 86134, 'en', 'name', 'Center for the history and anthropology of law'),
(104485, 86134, 'fr', 'name', 'Centre d''histoire et d''anthropologie du droit'),
(104486, 86135, 'en', 'name', 'Maharashtra Institute of Medical Education and Research'),
(104487, 86136, 'cs', 'name', 'Karel KomĆ”rek Proměny Foundation'),
(104488, 86137, 'en', 'name', 'Czech Agriculture and Food Inspection Authority'),
(104489, 86137, 'cs', 'name', 'StĆ”tnĆ­ zemědělskĆ” a potravinÔřskĆ” inspekce'),
(104490, 86138, 'en', 'name', 'Institute of Nuclear & Radiological Sciences and Technology, Energy & Safety'),
(104491, 86138, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī Ļ…ĻĪ·Ī½Ī¹ĪŗĻŽĪ½ & Ī”Ī±Ī“Ī¹ĪæĪ»ĪæĪ³Ī¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ & Τεχνολογίας, Ενέργειας & Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±Ļ‚'),
(104492, 86139, 'en', 'name', 'Theresian Military Academy'),
(104493, 86139, 'de', 'name', 'Theresianische MilitƤrakademie'),
(104494, 86140, 'es', 'name', 'Instituto Tecnológico de Puebla'),
(104495, 86140, 'en', 'name', 'Puebla Technologic Institute'),
(104496, 86141, 'en', 'name', 'Fujita Health University Okazaki Medical Center'),
(104497, 86141, 'ja', 'name', 'č—¤ē”°åŒ»ē§‘å¤§å­¦å²”å“ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(104498, 86142, 'en', 'name', 'Feni University'),
(104499, 86142, 'hi', 'name', 'ফেনী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(104500, 86143, 'sw', 'name', 'Mamlaka ya Usimamizi wa Wanyamapori'),
(104501, 86143, 'en', 'name', 'Tanzania Wildlife Management Authority'),
(104502, 86144, 'es', 'name', 'Hospital General de MƩxico'),
(104503, 86145, 'en', 'name', 'VA Pacific Islands Health Care System'),
(104504, 86146, 'en', 'name', 'Korea Education and Research Information Service'),
(104505, 86146, 'ko', 'name', 'ķ•œźµ­źµģœ”ķ•™ģˆ ģ •ė³“ģ›'),
(104506, 86147, 'es', 'name', 'Institución Educativa Félix Henao Botero'),
(104507, 86148, 'it', 'name', 'Associazione per la Promozione della Geoetica'),
(104508, 86148, 'en', 'name', 'International Association for Promoting Geoethics'),
(104509, 86149, 'en', 'name', 'OpenAIRE Non-Profit Civil Partnership'),
(104510, 86150, 'en', 'name', 'Korea Carbon Capture & Sequestration R&D Center'),
(104511, 86150, 'ko', 'name', 'ķ•œźµ­ ķƒ„ģ†Œ ķ¬ģ§‘ ė° 격리 R & D 센터'),
(104512, 86151, 'no_lang_code', 'name', 'General Atomics (United States)'),
(104513, 86152, 'cs', 'name', 'Galerie výtvarnĆ©ho uměnĆ­ v Ostravě'),
(104514, 86152, 'en', 'name', 'Gallery of Fine Arts in Ostrava'),
(104515, 86153, 'en', 'name', 'Tokyo Women''s Medical University Adachi Medical Center'),
(104516, 86153, 'ja', 'name', 'ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦é™„å±žč¶³ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(104517, 86154, 'en', 'name', 'National Center for Global Health and Medicine'),
(104518, 86154, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹å›½éš›åŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(104519, 86155, 'en', 'name', 'Kapiolani Medical Center for Women and Children'),
(104520, 86156, 'en', 'name', 'Central Bohemia Region'),
(104521, 86156, 'cs', 'name', 'Středočeský kraj'),
(104522, 86157, 'en', 'name', 'Aichi Medical University Medical Center'),
(104523, 86157, 'ja', 'name', 'ę„›ēŸ„åŒ»ē§‘å¤§å­¦ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(104524, 86158, 'es', 'name', 'Hospital General San Jorge'),
(104525, 86159, 'en', 'name', 'Integrated Cardio Metabolic Centre'),
(104526, 86160, 'no_lang_code', 'name', 'Shaanxi Provincial Land Engineering Construction Group'),
(104527, 86160, 'zh', 'name', 'é™•č„æēœåœŸåœ°å·„ēØ‹å»ŗč®¾é›†å›¢ęœ‰é™č“£ä»»å…¬åø'),
(104528, 86161, 'en', 'name', 'Centre for Transport and Energy'),
(104529, 86161, 'cs', 'name', 'Centrum pro dopravu a energetiku'),
(104530, 86162, 'en', 'name', 'Levinsky College of Education'),
(104531, 86162, 'he', 'name', '×ž×›×œ×œ×Ŗ לוינהקי לחינוך'),
(104532, 86163, 'en', 'name', 'Wollo University'),
(104533, 86164, 'pl', 'name', 'Wyższa Szkoła Ekonomiczno-Humanistyczna im.prof. Szczepana A. Pieniążka'),
(104534, 86165, 'en', 'name', 'Korea Information & Communication Contractors Association'),
(104535, 86165, 'ko', 'name', 'ķ•œźµ­ģ •ė³“ķ†µģ‹ ź³µģ‚¬ķ˜‘ķšŒ'),
(104536, 86166, 'es', 'name', 'Fundación de Historia Natural Félix de Azara'),
(104537, 86167, 'no_lang_code', 'name', 'WOODEXPERT'),
(104538, 86168, 'en', 'name', 'GZO Hospital Wetzikon/Zurich'),
(104539, 86168, 'de', 'name', 'GZO Spital Wetzikon'),
(104540, 86169, 'id', 'name', 'Poltekkes Kemenkes Kendari'),
(104541, 86170, 'en', 'name', 'Conservation Biology Institute'),
(104542, 86171, 'en', 'name', 'Weihai Maternal and Child Health Hospital'),
(104543, 86171, 'zh', 'name', 'åØęµ·åø‚å¦‡å¹¼äæå„é™¢'),
(104544, 86172, 'cs', 'name', 'Jihočeský kraj'),
(104545, 86172, 'en', 'name', 'South Bohemian Region'),
(104546, 86173, 'es', 'name', 'Sociedad de NeurologĆ­a, PsiquiatrĆ­a y NeurocirugĆ­a'),
(104547, 86174, 'en', 'name', 'Orthopterists'' Society'),
(104548, 86175, 'no_lang_code', 'name', 'Deloitte (United Kingdom)'),
(104549, 86176, 'en', 'name', 'City of Prague'),
(104550, 86176, 'cs', 'name', 'Hlavnƭ město Praha'),
(104551, 86177, 'en', 'name', 'European Values'),
(104552, 86177, 'cs', 'name', 'EvropskƩ hodnoty'),
(104553, 86178, 'en', 'name', 'Annai Velankanni College'),
(104554, 86178, 'ta', 'name', 'ą®…ą®©ąÆą®©ąÆˆ ą®µąÆ‡ą®³ą®¾ą®™ąÆą®•ą®£ąÆą®£ą®æ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(104555, 86179, 'es', 'name', 'Centro de Investigación Epidemiológica en Salud Sexual y Reproductiva'),
(104556, 86180, 'en', 'name', 'Yangtze University'),
(104557, 86180, 'zh', 'name', 'é•æę±Ÿå¤§å­¦'),
(104558, 86181, 'es', 'name', 'Asociación TEDIC'),
(104559, 86182, 'en', 'name', 'Centre for the Governance of AI'),
(104560, 86183, 'es', 'name', 'Centro de Investigación de Polímeros Avanzados'),
(104561, 86184, 'la', 'name', 'Iuridicum Remedium'),
(104562, 86185, 'en', 'name', 'Levinsky-Wingate Academic College'),
(104563, 86185, 'he', 'name', '×”×ž×Ø×›×– האקדמי לוינהקי-וינגייט'),
(104564, 86186, 'pt', 'name', 'Centro UniversitƔrio Luterano de Palmas'),
(104565, 86187, 'en', 'name', 'University of Tokyo Hospital'),
(104566, 86187, 'ja', 'name', 'ę±äŗ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(104567, 86188, 'en', 'name', 'Showa University Northern Yokohama Hospital'),
(104568, 86188, 'ja', 'name', 'ę˜­å’Œå¤§å­¦ ęØŖęµœåø‚åŒ—éƒØē—…é™¢'),
(104569, 86189, 'en', 'name', 'Fujita Health University Nanakuri Memorial Hospital'),
(104570, 86189, 'ja', 'name', 'č—¤ē”°åŒ»ē§‘å¤§å­¦äøƒę —čØ˜åæµē—…é™¢'),
(104571, 86190, 'en', 'name', 'Center for Studies and Research on Organizations and Strategy'),
(104572, 86190, 'fr', 'name', 'Centre d''Ʃtudes et de recherches sur les organisations et la stratƩgie'),
(104573, 86191, 'cs', 'name', 'Jihomoravský kraj'),
(104574, 86191, 'en', 'name', 'South Moravian Region'),
(104575, 86192, 'es', 'name', 'Hospital Obispo Polanco');
INSERT INTO `ror_settings` VALUES
(104576, 86193, 'en', 'name', 'Liaoning University of International Business and Economics'),
(104577, 86193, 'zh', 'name', 'č¾½å®åÆ¹å¤–ē»č“øå­¦é™¢'),
(104578, 86194, 'en', 'name', 'Thornbury Hospital'),
(104579, 86195, 'no_lang_code', 'name', 'Deloitte (Czechia)'),
(104580, 86196, 'no_lang_code', 'name', 'Arnika'),
(104581, 86197, 'de', 'name', 'Westpfalz Klinikum'),
(104582, 86198, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta Ceatharlach'),
(104583, 86198, 'en', 'name', 'Institute of Technology Carlow'),
(104584, 86199, 'no_lang_code', 'name', 'BGI Genomics'),
(104585, 86199, 'zh', 'name', 'åŽå¤§åŸŗå› č‚”ä»½ęœ‰é™å…¬åø'),
(104586, 86200, 'es', 'name', 'Fundación Mamíferos y Conservación'),
(104587, 86201, 'es', 'name', 'Centro de Investigación y Desarrollo de medicamentos'),
(104588, 86202, 'en', 'name', 'Thornbury Hospital'),
(104589, 86203, 'en', 'name', 'Czech Association of Occupational Therapists'),
(104590, 86203, 'cs', 'name', 'ČeskÔ asociace ergoterapeutů'),
(104591, 86204, 'es', 'name', 'Hospital El Cruce'),
(104592, 86205, 'en', 'name', 'European Institute for Medical Studies'),
(104593, 86206, 'en', 'name', 'Institute of Nanoscience and Nanotechnology'),
(104594, 86207, 'cs', 'name', 'Olomouc Region'),
(104595, 86208, 'en', 'name', 'Fuel Cell Institute'),
(104596, 86208, 'ms', 'name', 'Institut Sel Fuel'),
(104597, 86209, 'cs', 'name', 'State Regional Archive in Plzeň'),
(104598, 86210, 'es', 'name', 'Colegio de Etnólogos y Antropólogos Sociales'),
(104599, 86211, 'en', 'name', 'National Kaohsiung Normal University'),
(104600, 86211, 'zh', 'name', 'åœ‹ē«‹é«˜é›„åø«ēÆ„å¤§å­ø'),
(104601, 86212, 'en', 'name', 'Showa University'),
(104602, 86212, 'ja', 'name', 'ę˜­å’Œå¤§å­¦'),
(104603, 86213, 'no_lang_code', 'name', 'BGI Group (China)'),
(104604, 86213, 'zh', 'name', 'åŽå¤§åŸŗå› '),
(104605, 86214, 'en', 'name', 'Max Planck Unit for the Science of Pathogens'),
(104606, 86214, 'de', 'name', 'Max-Planck-Forschungsstelle für die Wissenschaft der Pathogene'),
(104607, 86215, 'no_lang_code', 'name', 'Exploro Geoservices'),
(104608, 86216, 'en', 'name', 'TransCanada Calibrations'),
(104609, 86217, 'en', 'name', 'Prague City University'),
(104610, 86218, 'en', 'name', 'Fujita Health University Hospital'),
(104611, 86218, 'ja', 'name', 'č—¤ē”°äæå„č”›ē”Ÿå¤§å­¦ē—…é™¢'),
(104612, 86219, 'cs', 'name', 'Muzeum Brněnska'),
(104613, 86220, 'en', 'name', 'Key Laboratory of Drilling and Production Engineering for Oil and Gas, Hubei Province'),
(104614, 86220, 'zh', 'name', 'ę²¹ę°”é’»é‡‡å·„ēØ‹ę¹–åŒ—ēœé‡ē‚¹å®žéŖŒå®¤'),
(104615, 86221, 'en', 'name', 'Moscow State University of Technologies and Management named after K.G. Razumovskiy'),
(104616, 86221, 'ru', 'name', 'Московский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет Технологий Šø Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ им. К.Š“. Разумовского'),
(104617, 86222, 'en', 'name', 'RVNAhealth'),
(104618, 86223, 'en', 'name', 'Korea Post'),
(104619, 86223, 'ko', 'name', 'ģš°ģ •ģ‚¬ģ—…ė³øė¶€'),
(104620, 86224, 'en', 'name', 'Pandian Educational Trust'),
(104621, 86224, 'ta', 'name', 'ą®Ŗą®¾ą®£ąÆą®Ÿą®æą®Æą®©ąÆ ą®•ą®²ąÆą®µą®æ ą®…ą®±ą®•ąÆą®•ą®ŸąÆą®Ÿą®³ąÆˆ'),
(104622, 86225, 'en', 'name', 'Forests of the Czech Republic'),
(104623, 86225, 'cs', 'name', 'Lesy České republiky'),
(104624, 86226, 'en', 'name', 'Aichi University of Technology'),
(104625, 86226, 'ja', 'name', 'ę„›ēŸ„å·„ē§‘å¤§å­¦'),
(104626, 86227, 'en', 'name', 'Josep Carreras Leukaemia Research Institute'),
(104627, 86228, 'de', 'name', 'Max Planck Institut für Zellbiologie'),
(104628, 86228, 'en', 'name', 'Max Planck Institute for Cell Biology'),
(104629, 86229, 'en', 'name', 'Australian Radiation Protection and Nuclear Safety Agency'),
(104630, 86230, 'en', 'name', 'Yokohama City University'),
(104631, 86230, 'ja', 'name', 'ęØŖęµœåø‚ē«‹å¤§å­¦'),
(104632, 86231, 'en', 'name', 'Association for Integration and Migration'),
(104633, 86231, 'cs', 'name', 'Sdružení pro integraci a migraci'),
(104634, 86232, 'en', 'name', 'Hangzhou Institute of Applied Acoustics'),
(104635, 86232, 'zh', 'name', 'äø­å›½čˆ¹čˆ¶é‡å·„é›†å›¢å…¬åøē¬¬äøƒäø€äŗ”ē ”ē©¶ę‰€'),
(104636, 86233, 'en', 'name', 'Showa University Koto Toyosu Hospital'),
(104637, 86233, 'ja', 'name', 'ę˜­å’Œå¤§å­¦ę±Ÿę±č±Šę“²ē—…é™¢'),
(104638, 86234, 'es', 'name', 'Real Sociedad EspaƱola de Quƭmica'),
(104639, 86235, 'en', 'name', 'Fujita Health University Bantane Hospital'),
(104640, 86235, 'ja', 'name', 'č—¤ē”°åŒ»ē§‘å¤§å­¦ć°ć‚“ćŸć­ē—…é™¢'),
(104641, 86236, 'en', 'name', 'Hawaii Space Grant Consortium'),
(104642, 86237, 'no_lang_code', 'name', 'Kyowa Kirin (United States)'),
(104643, 86238, 'en', 'name', 'Probation Board for Northern Ireland'),
(104644, 86239, 'cs', 'name', 'Ekodomov'),
(104645, 86240, 'en', 'name', 'University of Fukui Hospital'),
(104646, 86240, 'ja', 'name', 'ē¦äŗ•å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(104647, 86241, 'es', 'name', 'Vidarium - Centro de Investigación en Nutrición Salud y Bienestar'),
(104648, 86242, 'en', 'name', 'Industrial Property Office'),
(104649, 86242, 'cs', 'name', 'ĆšÅ™ad prÅÆmyslovĆ©ho vlastnictvĆ­'),
(104650, 86243, 'en', 'name', 'Center for Advanced Soft Electronics'),
(104651, 86243, 'ko', 'name', 'ģ†Œķ”„ķŠøģ¼ė ‰ķŠøė”œė‹‰ģŠ¤ģ—°źµ¬ė‹Ø'),
(104652, 86244, 'fr', 'name', 'Université Paris Lumières'),
(104653, 86245, 'en', 'name', 'Kombolcha Institute of Technology'),
(104654, 86246, 'no_lang_code', 'name', 'Covalence Research'),
(104655, 86247, 'en', 'name', 'State Environmental Fund of the Czech Republic'),
(104656, 86247, 'cs', 'name', 'StĆ”tnĆ­ fond životnĆ­ho prostředĆ­ ČR'),
(104657, 86248, 'no_lang_code', 'name', 'DASA (Brazil)'),
(104658, 86249, 'en', 'name', 'Institute of Sustainable Halophyte Utilization'),
(104659, 86250, 'en', 'name', 'Czech Council of Children and Youth'),
(104660, 86250, 'cs', 'name', 'ČeskĆ” rada dětĆ­ a mlĆ”deže'),
(104661, 86251, 'cs', 'name', 'Nadačnƭ fond Neuron'),
(104662, 86251, 'en', 'name', 'Neuron Endowment Fund'),
(104663, 86252, 'en', 'name', 'Wuxi Vocational College of Science and Technology'),
(104664, 86252, 'zh', 'name', 'ę— é””ē§‘ęŠ€čŒäøšå­¦é™¢'),
(104665, 86253, 'en', 'name', 'National Open Air Museum'),
(104666, 86253, 'cs', 'name', 'NĆ”rodnĆ­ muzeum v přírodě'),
(104667, 86254, 'en', 'name', 'Japan Society of Civil Engineers'),
(104668, 86254, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåœŸęœØå­¦ä¼š'),
(104669, 86255, 'no_lang_code', 'name', 'Yacimientos PetrolĆ­feros Fiscales'),
(104670, 86256, 'en', 'name', 'Institute of Biosciences & Applications'),
(104671, 86256, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī’Ī¹ĪæĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ & Ī•Ļ†Ī±ĻĪ¼ĪæĪ³ĻŽĪ½'),
(104672, 86257, 'fr', 'name', 'Centre de droit civil des affaires et du contentieux Ʃconomique'),
(104673, 86258, 'en', 'name', 'Office of the Goverment'),
(104674, 86258, 'cs', 'name', 'ĆšÅ™ad vlĆ”dy'),
(104675, 86259, 'cs', 'name', 'ParlamentnĆ­ institut'),
(104676, 86259, 'en', 'name', 'Parliamentary Institute'),
(104677, 86260, 'es', 'name', 'Instituto Cubano de Oftalmología "Ramón Pando Ferrer"'),
(104678, 86261, 'de', 'name', 'Kirchliche Hochschule Wuppertal'),
(104679, 86262, 'en', 'name', 'Showa University Fujigaoka Rehabilitation Hospital'),
(104680, 86262, 'ja', 'name', 'ę˜­å’Œå¤§å­¦č—¤ćŒäø˜ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(104681, 86263, 'ro', 'name', 'Agenția Națională Arheologică'),
(104682, 86263, 'en', 'name', 'National Agency for Archaeology'),
(104683, 86264, 'no_lang_code', 'name', 'Shenzhen Urban Transport Planning Center Co.'),
(104684, 86264, 'zh', 'name', 'ę·±åœ³åŸŽåø‚äŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶äø­åæƒč‚”ä»½ęœ‰é™å…¬åø'),
(104685, 86265, 'no_lang_code', 'name', 'Formulate (Sweden)'),
(104686, 86266, 'en', 'name', 'Veterinary Medical Center'),
(104687, 86266, 'ja', 'name', 'ę±äŗ¬å¤§å­¦ å‹•ē‰©åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(104688, 86267, 'en', 'name', 'Institute of Nuclear and Particle Physics'),
(104689, 86268, 'es', 'name', 'Tecnológico Sudamericano'),
(104690, 86269, 'de', 'name', 'DRK Krankenhaus Alzey'),
(104691, 86270, 'en', 'name', 'International Bamboo and Rattan Organization'),
(104692, 86270, 'zh', 'name', 'å›½é™…ē«¹č—¤äø­åæƒ'),
(104693, 86271, 'en', 'name', 'Showa University Karasuyama Hospital'),
(104694, 86271, 'ja', 'name', 'ę˜­å’Œå¤§å­¦é™„å±žēƒå±±ē—…é™¢'),
(104695, 86272, 'en', 'name', 'Department of Measurement Units, Standards & Services'),
(104696, 86272, 'ta', 'name', 'ą®…ą®³ą®•ąÆą®•ąÆą®®ąÆ ą®…ą®²ą®•ąÆą®•ą®³ąÆ, ą®¤ą®°ą®™ąÆą®•ą®³ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®šąÆ‡ą®µąÆˆą®•ą®³ąÆ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ'),
(104697, 86272, 'si', 'name', 'ą¶±ą·”ą¶øą·Š ą¶’ą¶šą¶š, ą¶“ą·Šą¶»ą¶øą·’ą¶­ą·’ ą·„ą· ą·ƒą·šą·€ą· ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(104698, 86273, 'no_lang_code', 'name', 'Deloitte (United States)'),
(104699, 86274, 'en', 'name', 'Ministry of Science, Technology and Research'),
(104700, 86274, 'fa', 'name', 'ą·€ą·’ą¶Æą·Šą¶ŗą·, ą¶­ą·ą¶šą·Šą·‚ą¶« ą·„ą· ą¶“ą¶»ą·Šą¶ŗą·šą·‚ą¶« ą¶…ą¶øą·ą¶­ą·Šą¶ŗą·ą¶‚ą·ą¶ŗ'),
(104701, 86275, 'pt', 'name', 'Instituto Nacional da Mata Atlântica'),
(104702, 86276, 'de', 'name', 'Arbeitsgemeinschaft GynƤkologische Onkologie Studiengruppe'),
(104703, 86277, 'en', 'name', 'Semyung University'),
(104704, 86278, 'en', 'name', 'Aichi Medical University'),
(104705, 86278, 'ja', 'name', 'ę„›ēŸ„åŒ»ē§‘å¤§å­¦'),
(104706, 86279, 'en', 'name', 'Ming Wai Lau Centre for Reparative Medicine'),
(104707, 86280, 'en', 'name', 'Aoyama Hospital Tokyo Women’s Medical University'),
(104708, 86280, 'ja', 'name', 'ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦é™„å±žé’å±±ē—…é™¢'),
(104709, 86281, 'en', 'name', 'Shonan Oiso Hospital'),
(104710, 86281, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼š ę¹˜å—å¤§ē£Æē—…é™¢'),
(104711, 86282, 'no_lang_code', 'name', 'MGI'),
(104712, 86282, 'zh', 'name', 'åŽå¤§ę™ŗé€ '),
(104713, 86283, 'en', 'name', 'Kalihi Palama Health Center'),
(104714, 86284, 'en', 'name', 'Tokai University Tokyo Hospital'),
(104715, 86284, 'ja', 'name', 'ę±ęµ·å¤§å­¦åŒ»å­¦éƒØä»˜å±žę±äŗ¬ē—…é™¢'),
(104716, 86285, 'en', 'name', 'Bangladesh Sugarcrop Research Institute'),
(104717, 86285, 'bn', 'name', 'বাংলাদেশ ą¦øą§ą¦—ą¦¾ą¦°ą¦•ą§ą¦°ą¦Ŗ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(104718, 86286, 'no_lang_code', 'name', 'Invigos'),
(104719, 86287, 'es', 'name', 'Hospital ClĆ­nico Universitario Lozano Blesa'),
(104720, 86288, 'pt', 'name', 'Formedia'),
(104721, 86289, 'no_lang_code', 'name', 'Solutions for Tomorrow (Sweden)'),
(104722, 86290, 'en', 'name', 'Yokohama City University Hospital'),
(104723, 86290, 'ja', 'name', 'ęØŖęµœåø‚ē«‹å¤§å­¦é™„å±žē—…é™¢'),
(104724, 86291, 'en', 'name', 'International Institute of Information Technology'),
(104725, 86292, 'en', 'name', 'Institute of Informatics & Telecommunications'),
(104726, 86292, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Πληροφορικής & Ī¤Ī·Ī»ĪµĻ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½'),
(104727, 86293, 'en', 'name', 'Korea Foundation for Max Planck POSTECH'),
(104728, 86293, 'ko', 'name', 'ė§‰ģŠ¤ ķ”Œėž‘ķ¬ ķ¬ģŠ¤ķ… ķ•œźµ­ ģž¬ė‹Ø'),
(104729, 86294, 'en', 'name', 'University of Hawaiʻi Sea Grant'),
(104730, 86295, 'en', 'name', 'V-Continent Beijing Parkview Wuzhou Hotel'),
(104731, 86296, 'ro', 'name', 'Muzeul Național de Istorie a Moldovei'),
(104732, 86296, 'en', 'name', 'National Museum of History of Moldova'),
(104733, 86297, 'en', 'name', 'Korea Spatial Information Society'),
(104734, 86297, 'ko', 'name', 'ėŒ€ķ•œź³µź°„ģ •ė³“ķ•™ķšŒ'),
(104735, 86298, 'en', 'name', 'Allen Institute for Neural Dynamics'),
(104736, 86299, 'en', 'name', 'Quantitative Biology Center'),
(104737, 86299, 'de', 'name', 'Zentrum für Quantitative Biologie'),
(104738, 86300, 'en', 'name', 'Max Planck Graduate Center'),
(104739, 86301, 'en', 'name', 'Don Law Institute'),
(104740, 86301, 'ru', 'name', 'Донской ЮриГический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(104741, 86302, 'en', 'name', 'Kaiser Permanente Moanalua Medical Center'),
(104742, 86303, 'no_lang_code', 'name', 'GigaScience Press'),
(104743, 86304, 'es', 'name', 'Academia Nacional de Ciencias Exactas FĆ­sicas y Naturales'),
(104744, 86305, 'es', 'name', 'Hospital de Sabadell'),
(104745, 86306, 'en', 'name', 'National Cyber and Information Security Agency'),
(104746, 86306, 'cs', 'name', 'NĆ”rodnĆ­ ĆŗÅ™ad pro kybernetickou a informačnĆ­ bezpečnost'),
(104747, 86307, 'en', 'name', 'Fairtrade Czech Republic & Slovakia'),
(104748, 86307, 'cs', 'name', 'Fairtrade Česko a Slovensko'),
(104749, 86308, 'en', 'name', 'Showa University East Hospital'),
(104750, 86308, 'ja', 'name', 'ę˜­å’Œå¤§å­¦ē—…é™¢é™„å±žę±ē—…é™¢'),
(104751, 86309, 'es', 'name', 'Mayagüez Medical Center'),
(104752, 86310, 'no_lang_code', 'name', 'AbbVie (Japan)'),
(104753, 86310, 'ja', 'name', 'ć‚¢ćƒƒćƒ“ć‚£åˆåŒä¼šē¤¾'),
(104754, 86311, 'no_lang_code', 'name', 'Pilsen Region'),
(104755, 86311, 'cs', 'name', 'Plzeňský kraj'),
(104756, 86312, 'en', 'name', 'Academic College at Wingate'),
(104757, 86312, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ בוינגייט'),
(104758, 86313, 'no_lang_code', 'name', 'Kyowa Kirin (Japan)'),
(104759, 86313, 'ja', 'name', 'å”å’Œć‚­ćƒŖćƒ³ę Ŗå¼ä¼šē¤¾'),
(104760, 86314, 'en', 'name', 'Czech Paraplegics Association'),
(104761, 86314, 'cs', 'name', 'ČeskÔ asociace paraplegiků'),
(104762, 86315, 'sq', 'name', 'Drejtoria e Pƫrgjithshme e Metrologjisƫ'),
(104763, 86315, 'en', 'name', 'General Directorate of Metrology and Calibration'),
(104764, 86316, 'en', 'name', 'Andes Amazon Fund'),
(104765, 86317, 'fr', 'name', 'Laboratoire des MatƩriaux AvancƩs'),
(104766, 86318, 'en', 'name', 'Financial Stability Board'),
(104767, 86319, 'en', 'name', 'Center for European and Comparative Legal Studies'),
(104768, 86319, 'fr', 'name', 'Centre d''Ʃtudes juridiques europƩennes et comparƩes'),
(104769, 86320, 'en', 'name', 'Showa University Dental Hospital'),
(104770, 86320, 'ja', 'name', 'ę˜­å’Œå¤§å­¦ę­Æē§‘ē—…é™¢'),
(104771, 86321, 'cs', 'name', 'Karlovy Vary Region'),
(104772, 86322, 'en', 'name', 'K.G. Razumovsky Moscow State University of Technologies and Management'),
(104773, 86322, 'ru', 'name', 'Моско́вский Š³Š¾ŃŃƒŠ“а́рственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ техноло́гий Šø ŃƒŠæŃ€Š°Š²Š»ŠµĢŠ½ŠøŃ имени К. Š“. Разумовского'),
(104774, 86323, 'en', 'name', 'Ministry of Science ICT and Future Planning'),
(104775, 86323, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ėÆøėž˜ģ°½ģ”°ź³¼ķ•™ė¶€'),
(104776, 86324, 'en', 'name', 'Centre for Regional Development of the Czech Republic'),
(104777, 86324, 'cs', 'name', 'Centrum pro regionÔlní rozvoj České republiky'),
(104778, 86325, 'no_lang_code', 'name', 'Moravian-Silesian Region'),
(104779, 86325, 'cs', 'name', 'Moravskoslezský kraj'),
(104780, 86326, 'es', 'name', 'Comisión Nacional de Prevención de Riesgos y Atención de Emergencias'),
(104781, 86327, 'en', 'name', 'Central Radio Management Service'),
(104782, 86328, 'es', 'name', 'Fundación Josep Carreras Contra la Leucemia'),
(104783, 86329, 'no_lang_code', 'name', 'GLE'),
(104784, 86330, 'en', 'name', 'European University of Armenia'),
(104785, 86330, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶ÕøÖ‚Õ“ ŌµÕ¾Ö€ÕøÕŗÕ”ÕÆÕ”Õ¶ Õ€Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(104786, 86331, 'es', 'name', 'Hospital Universitario Miguel Servet'),
(104787, 86332, 'no_lang_code', 'name', 'Saiseikai Kanagawa Hospital'),
(104788, 86332, 'ja', 'name', 'ęøˆē”Ÿä¼šē„žå„ˆå·ēœŒē—…é™¢'),
(104789, 86333, 'en', 'name', 'Tokyo Women''s Medical University Yachiyo Medical Center'),
(104790, 86333, 'ja', 'name', 'ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦å…«åƒä»£åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(104791, 86334, 'es', 'name', 'Jardƭn BotƔnico de BogotƔ JosƩ Celestino Mutis'),
(104792, 86335, 'fr', 'name', 'Fonds de Recherche du QuƩbec - SantƩ'),
(104793, 86336, 'no_lang_code', 'name', 'Shino-Test Corporation'),
(104794, 86336, 'ja', 'name', 'ć‚·ćƒŽćƒ†ć‚¹ćƒˆ'),
(104795, 86337, 'en', 'name', 'Huadong Medical Institute of Biotechniques'),
(104796, 86337, 'zh', 'name', 'åŽäøœåŒ»å­¦ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(104797, 86338, 'no_lang_code', 'name', 'Korean Drug Co.'),
(104798, 86338, 'ko', 'name', 'ź³ ė ¤ģ œģ•½'),
(104799, 86339, 'en', 'name', 'Office of Atoms for Peace'),
(104800, 86339, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø›ąø£ąø”ąø²ąø“ąø¹ą¹€ąøžąø·ą¹ˆąø­ąøŖąø±ąø™ąø•ąø“'),
(104801, 86340, 'no_lang_code', 'name', 'SIRIRI'),
(104802, 86341, 'en', 'name', 'Queen''s Medical Center'),
(104803, 86342, 'no_lang_code', 'name', 'GlaxoSmithKline (Spain)'),
(104804, 86343, 'en', 'name', 'University of Poonch Rawalakot'),
(104805, 86344, 'en', 'name', 'Minerals Research Institute of Western Australia'),
(104806, 86345, 'en', 'name', 'Dnipro National University of Railway Transport named after Academician V. Lazaryan'),
(104807, 86345, 'ru', 'name', 'Днепровский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ железноГорожного транспорта имени акаГемика Š’. Š›Š°Š·Š°Ń€ŃŠ½Š°'),
(104808, 86345, 'uk', 'name', 'Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ залізничного Ń‚Ń€Š°Š½ŃŠæŠ¾Ń€Ń‚Ńƒ імені акаГеміка Š’. Š›Š°Š·Š°Ń€ŃŠ½Š°'),
(104809, 86346, 'en', 'name', 'University of Abou Bekr BelkaĆÆd'),
(104810, 86346, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أبي بكر ŲØŁ„Ł‚Ų§ŁŠŲÆ'),
(104811, 86347, 'en', 'name', 'Tajik Technical University named after academic M.S.Osimi'),
(104812, 86347, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø техникии Тоҷикистон ба номи акаГемик М.Š”.ŠžŃŠøŠ¼Ó£'),
(104813, 86348, 'en', 'name', 'College of Industrial Technology'),
(104814, 86348, 'ja', 'name', 'ē”£ę„­ęŠ€č”“ēŸ­ęœŸå¤§å­¦'),
(104815, 86349, 'en', 'name', 'National Informatics Centre'),
(104816, 86350, 'en', 'name', 'Howard Brain Sciences Foundation'),
(104817, 86351, 'no_lang_code', 'name', 'ConocoPhillips (Canada)'),
(104818, 86352, 'en', 'name', 'Simón Bolívar University'),
(104819, 86352, 'es', 'name', 'Universidad Simón Bolívar'),
(104820, 86353, 'en', 'name', 'Hunan University of Traditional Chinese Medicine'),
(104821, 86353, 'zh', 'name', 'ę¹–å—äø­åŒ»čÆå¤§å­¦'),
(104822, 86354, 'en', 'name', 'Johns Hopkins University Applied Physics Laboratory'),
(104823, 86355, 'no_lang_code', 'name', 'KME (Germany)'),
(104824, 86356, 'en', 'name', 'Karnataka State Open University'),
(104825, 86356, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ą²®ą³ą²•ą³ą²¤ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(104826, 86357, 'no_lang_code', 'name', 'Bausch Health (Canada)'),
(104827, 86358, 'en', 'name', 'Microbiology Society'),
(104828, 86359, 'en', 'name', 'Institute of Biological and Medical Imaging'),
(104829, 86360, 'en', 'name', 'Qasyoun Private University'),
(104830, 86360, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‚Ų§Ų³ŁŠŁˆŁ† الخاصة'),
(104831, 86361, 'cs', 'name', 'Ministerstvo prĆ”ce a sociĆ”lnĆ­ch věcĆ­ ČeskĆ© republiky'),
(104832, 86361, 'en', 'name', 'Ministry of Labour and Social Affairs'),
(104833, 86362, 'en', 'name', 'European Lead Factory'),
(104834, 86363, 'en', 'name', 'ARC Centre of Excellence in Cognition and its Disorders'),
(104835, 86364, 'no_lang_code', 'name', 'Applied Genetic Technologies (United States)'),
(104836, 86365, 'en', 'name', 'Center for Advanced Systems Understanding'),
(104837, 86366, 'en', 'name', 'Post Graduate Institute of Medical Education and Research'),
(104838, 86366, 'hi', 'name', 'ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤šą¤£ą„ą¤”ą„€ą¤—ą¤¢ą¤¼'),
(104839, 86366, 'pa', 'name', 'ਪੀ. ąØœą©€. ąØ†ąØˆ.'),
(104840, 86367, 'en', 'name', 'Apex Foundation'),
(104841, 86368, 'en', 'name', 'Federal University of Agriculture'),
(104842, 86369, 'no_lang_code', 'name', 'Sandvik (Sweden)'),
(104843, 86370, 'no_lang_code', 'name', 'Sugar Research Australia (Australia)'),
(104844, 86371, 'no_lang_code', 'name', 'Robert Bosch (United States)'),
(104845, 86372, 'no_lang_code', 'name', 'Sanofi (China)'),
(104846, 86372, 'zh', 'name', 'čµ›čÆŗč²'),
(104847, 86373, 'no_lang_code', 'name', 'Hamamatsu Photonics (Japan)'),
(104848, 86373, 'ja', 'name', 'ęµœę¾ćƒ›ćƒˆćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(104849, 86374, 'en', 'name', 'European AIDS Treatment Network'),
(104850, 86375, 'en', 'name', 'The First Affiliated Hospital of Guangxi University of Traditional Chinese Medicine'),
(104851, 86375, 'zh', 'name', 'å¹æč„æäø­åŒ»čÆå¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(104852, 86376, 'pl', 'name', 'Chmielnicki Uniwersytet Narodowy'),
(104853, 86376, 'en', 'name', 'Khmelnytskyi National University'),
(104854, 86376, 'ru', 'name', 'Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104855, 86376, 'uk', 'name', 'Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104856, 86377, 'no_lang_code', 'name', 'Astellas Pharma (Netherlands)'),
(104857, 86378, 'en', 'name', 'Children''s Hospital of Michigan'),
(104858, 86379, 'en', 'name', 'New South Wales Department of Health'),
(104859, 86380, 'en', 'name', 'Institute of Taoist Education and Acupuncture'),
(104860, 86381, 'en', 'name', 'Federal Ministry of Health'),
(104861, 86382, 'en', 'name', 'Alzahra University'),
(104862, 86382, 'fa', 'name', 'دانؓگاه الزهرا'),
(104863, 86383, 'en', 'name', 'Hasso Plattner Institute'),
(104864, 86383, 'de', 'name', 'Hasso-Plattner-Institut'),
(104865, 86384, 'en', 'name', 'Chamberlain University'),
(104866, 86385, 'no_lang_code', 'name', 'Dairy Australia (Australia)'),
(104867, 86386, 'en', 'name', 'Kostroma State University named after N A Nekrasov'),
(104868, 86386, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ¾Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. А. ŠŠµŠŗŃ€Š°ŃŠ¾Š²Š°'),
(104869, 86387, 'no_lang_code', 'name', 'Novo Holdings (Denmark)'),
(104870, 86388, 'en', 'name', 'Barrow Neurological Institute'),
(104871, 86389, 'en', 'name', 'University of French Ontario'),
(104872, 86389, 'fr', 'name', 'UniversitƩ de l''Ontario franƧais'),
(104873, 86390, 'en', 'name', 'Florida Academy of Science'),
(104874, 86391, 'hu', 'name', 'Sapientia ErdƩlyi Magyar TudomƔnyegyetem'),
(104875, 86391, 'en', 'name', 'Sapientia Hungarian University of Transylvania'),
(104876, 86391, 'ro', 'name', 'Universitatea Sapientia'),
(104877, 86392, 'de', 'name', 'Schweizerische Stiftung für die Erforschung der Muskelkrankheiten'),
(104878, 86393, 'en', 'name', 'Technical Institute of Physics and Chemistry'),
(104879, 86393, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē†åŒ–ęŠ€ęœÆē ”ē©¶ę‰€'),
(104880, 86394, 'en', 'name', 'Beijing Tian Tan Hospital'),
(104881, 86394, 'zh', 'name', 'åŒ—äŗ¬åø‚ē„žē»å¤–ē§‘ē ”ē©¶ę‰€'),
(104882, 86395, 'en', 'name', 'Director of National Parks'),
(104883, 86396, 'de', 'name', 'Dienstleistungszentrum LƤndlicher Raum Rheinpfalz'),
(104884, 86397, 'de', 'name', 'Herzog August Bibliothek'),
(104885, 86397, 'en', 'name', 'Herzog August Library'),
(104886, 86398, 'en', 'name', 'Catholic University in Erbil'),
(104887, 86398, 'ar', 'name', 'الجامعة Ų§Ł„ŁƒŲ§Ų«ŁˆŁ„ŁŠŁƒŁŠŲ© في Ų§Ų±ŲØŁŠŁ„'),
(104888, 86399, 'en', 'name', 'Natural History Museum of Denmark'),
(104889, 86399, 'da', 'name', 'Statens Naturhistoriske Museum'),
(104890, 86400, 'en', 'name', 'Korea Institute of Ocean Science and Technology'),
(104891, 86401, 'no_lang_code', 'name', 'China Steel (Taiwan)'),
(104892, 86401, 'zh', 'name', 'äø­åœ‹é‹¼éµč‚”ä»½ęœ‰é™å…¬åø'),
(104893, 86402, 'no_lang_code', 'name', 'Terumo (Japan)'),
(104894, 86402, 'ja', 'name', 'ćƒ†ćƒ«ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(104895, 86403, 'es', 'name', 'El Instituto de Investigación Sanitaria INCLIVA'),
(104896, 86403, 'en', 'name', 'INCLIVA Health Research Institute'),
(104897, 86404, 'en', 'name', 'Worldwide Cancer Research'),
(104898, 86405, 'en', 'name', 'Connective Tissue Oncology Society'),
(104899, 86406, 'en', 'name', 'Australian Antarctic Division'),
(104900, 86407, 'no_lang_code', 'name', 'Arkema (France)'),
(104901, 86408, 'en', 'name', 'V.I. Il''ichev Pacific Oceanological Institute'),
(104902, 86408, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Тихоокеанский океанологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.И.Š˜Š»ŃŒŠøŃ‡ŠµŠ²Š° Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(104903, 86409, 'nl', 'name', 'Ministerie van Defensie'),
(104904, 86409, 'en', 'name', 'Ministry of Defence'),
(104905, 86410, 'no_lang_code', 'name', 'Bio-Rad (United States)'),
(104906, 86411, 'en', 'name', 'Murray Darling Basin Authority'),
(104907, 86412, 'no_lang_code', 'name', 'Forest and Wood Products (Australia)'),
(104908, 86413, 'fr', 'name', 'Franche-ComtƩ Regional Council'),
(104909, 86414, 'it', 'name', 'Istituto di Ricerca per la Protezione Idrogeologica'),
(104910, 86414, 'en', 'name', 'Research Institute for Geo-Hydrological Protection'),
(104911, 86415, 'en', 'name', 'St. Paul''s Hospital Millennium Medical College'),
(104912, 86416, 'en', 'name', 'Department of Agriculture'),
(104913, 86417, 'no_lang_code', 'name', 'Dow Agrosciences (United States)'),
(104914, 86418, 'en', 'name', 'Harris foundation'),
(104915, 86419, 'en', 'name', 'Palo Alto Medical Foundation'),
(104916, 86420, 'en', 'name', 'Fisheries Research and Development Corporation'),
(104917, 86421, 'en', 'name', 'Muhammadiyah University of Magelang'),
(104918, 86421, 'id', 'name', 'Universitas Muhammadiyah Magelang'),
(104919, 86422, 'en', 'name', 'Indonesia Research Institute for Tea and Cinchona'),
(104920, 86422, 'id', 'name', 'Pusat Penelitian Teh dan Kina'),
(104921, 86423, 'no_lang_code', 'name', 'MathWorks (United States)'),
(104922, 86424, 'mi', 'name', 'Manatū Aorere'),
(104923, 86424, 'en', 'name', 'Ministry of Foreign Affairs and Trade'),
(104924, 86425, 'en', 'name', 'American Academy of Optometry'),
(104925, 86426, 'en', 'name', 'Minerals and Energy Research Institute of Western Australia'),
(104926, 86427, 'en', 'name', 'Maryland Sea Grant'),
(104927, 86428, 'en', 'name', 'Society for Science at User Research Facilities'),
(104928, 86429, 'en', 'name', 'Australian Plague Locust Commission'),
(104929, 86430, 'en', 'name', 'Koltzov Institute of Developmental Biology'),
(104930, 86430, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Ń€Š°Š·Š²ŠøŃ‚ŠøŃ им. Š.К. ŠšŠ¾Š»ŃŒŃ†Š¾Š²Š° Š ŠŠ'),
(104931, 86431, 'en', 'name', 'Healing Foundation'),
(104932, 86432, 'en', 'name', 'Anhui University of Traditional Chinese Medicine'),
(104933, 86432, 'zh', 'name', 'å®‰å¾½äø­åŒ»å­¦é™¢'),
(104934, 86433, 'no_lang_code', 'name', 'Lanxess (Germany)'),
(104935, 86434, 'en', 'name', 'Northern Border University'),
(104936, 86434, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŲÆŁˆŲÆ Ų§Ł„Ų“Ł…Ų§Ł„ŁŠŲ©'),
(104937, 86435, 'no_lang_code', 'name', 'Airbus (Italy)'),
(104938, 86436, 'da', 'name', 'Frode V. Nyegaard og Hustru’s Fond'),
(104939, 86437, 'no_lang_code', 'name', 'Carrier (United States)'),
(104940, 86438, 'en', 'name', 'Childhood Cancer Canada Foundation'),
(104941, 86439, 'no_lang_code', 'name', 'OmniActive Health Technologies (United States)'),
(104942, 86440, 'es', 'name', 'ClĆ­nica Alemana'),
(104943, 86440, 'en', 'name', 'The German Hospital of Santiago'),
(104944, 86441, 'en', 'name', 'Animal Health Research Institute'),
(104945, 86442, 'no', 'name', 'Det kgl. Forsvarsdepartement'),
(104946, 86442, 'en', 'name', 'Ministry of Defence'),
(104947, 86443, 'en', 'name', 'Jilin Province Science and Technology Department'),
(104948, 86444, 'nl', 'name', 'Universitair Ziekenhuis Leuven'),
(104949, 86445, 'en', 'name', 'KROK University'),
(104950, 86445, 'tr', 'name', 'KROK Üni̇versi̇tesi̇'),
(104951, 86445, 'es', 'name', 'Universidad de ā€œKROKā€'),
(104952, 86445, 'fr', 'name', 'Université «KROK»'),
(104953, 86445, 'uk', 'name', 'Університет Ā«ŠšŠ ŠžŠšĀ»'),
(104954, 86445, 'ka', 'name', 'įƒ”įƒ™įƒįƒœįƒįƒ›įƒ˜įƒ™įƒ˜įƒ”įƒ įƒ“įƒ įƒ”įƒįƒ›įƒįƒ įƒ—įƒšįƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ ā€œKROKā€'),
(104955, 86445, 'az', 'name', 'ā€œKROKā€ Universitet'),
(104956, 86446, 'es', 'name', 'Centro Nacional de Información de Ciencias Médicas'),
(104957, 86446, 'en', 'name', 'National Information Center of Medical Sciences'),
(104958, 86447, 'es', 'name', 'AD&D 4D'),
(104959, 86448, 'no_lang_code', 'name', 'Donaldson (United States)'),
(104960, 86449, 'en', 'name', 'Encephalitis Society'),
(104961, 86450, 'en', 'name', 'Canada’s Oil Sands Innovation Alliance'),
(104962, 86451, 'en', 'name', 'Shenzhen Institutes of Advanced Technology'),
(104963, 86451, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę·±åœ³å…ˆčæ›ęŠ€ęœÆē ”ē©¶é™¢'),
(104964, 86452, 'sv', 'name', 'KK-stiftelsen'),
(104965, 86452, 'en', 'name', 'Knowledge Foundation'),
(104966, 86453, 'en', 'name', 'Iberoamerican University of Science and Technology'),
(104967, 86453, 'es', 'name', 'Universidad Iberoamericana de Ciencias y TecnologĆ­a'),
(104968, 86454, 'it', 'name', 'IRCCS Humanitas Research Hospital'),
(104969, 86455, 'en', 'name', 'Chartered Institute of Ergonomics and Human Factors'),
(104970, 86456, 'no_lang_code', 'name', 'Eli Lilly (Japan)'),
(104971, 86456, 'ja', 'name', 'ę—„ęœ¬ć‚¤ćƒ¼ćƒ©ć‚¤ćƒŖćƒŖćƒ¼ę Ŗå¼ä¼šē¤¾'),
(104972, 86457, 'no_lang_code', 'name', 'Takeda (Switzerland)'),
(104973, 86458, 'en', 'name', 'Islamic Azad University, Isfahan'),
(104974, 86458, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų®ŁˆŲ±Ų§Ų³ŚÆŲ§Ł†'),
(104975, 86459, 'en', 'name', 'Thoracic Society of Australia and New Zealand'),
(104976, 86460, 'en', 'name', 'Institute of Marine and Coastal Research'),
(104977, 86460, 'es', 'name', 'Instituto de Investigaciones Marinas y Costeras'),
(104978, 86461, 'no_lang_code', 'name', 'Lactomason'),
(104979, 86461, 'ko', 'name', 'ė½ķ† ė©”ģ“ģŠØ'),
(104980, 86462, 'en', 'name', 'Centre for Australian National Biodiversity Research'),
(104981, 86463, 'en', 'name', 'Ministry of Oil'),
(104982, 86463, 'ar', 'name', 'وزارة النفط - ŲÆŁˆŁ„Ų© Ų§Ł„ŁƒŁˆŁŠŲŖ'),
(104983, 86464, 'no_lang_code', 'name', 'Bayer (United Kingdom)'),
(104984, 86465, 'en', 'name', 'Endourological Society'),
(104985, 86466, 'en', 'name', 'Stockton University'),
(104986, 86467, 'de', 'name', 'Forschungsinstitut für Nutztierbiologie (FBN)'),
(104987, 86467, 'en', 'name', 'Research Institute for Farm Animal Biology (FBN)'),
(104988, 86468, 'en', 'name', 'Ministry of Electronics and Information Technology'),
(104989, 86468, 'hi', 'name', 'ą¤‡ą¤²ą„‡ą¤•ą„ą¤Ÿą„ą¤°ą„‰ą¤Øą¤æą¤•ą„€ और ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(104990, 86469, 'en', 'name', 'Mindanao State University – Iligan Institute of Technology'),
(104991, 86470, 'no_lang_code', 'name', 'NEC (Japan)'),
(104992, 86470, 'ja', 'name', 'ę—„ęœ¬é›»ę°—'),
(104993, 86471, 'no_lang_code', 'name', 'Novozymes (Denmark)'),
(104994, 86472, 'en', 'name', 'Forest Products Laboratory'),
(104995, 86473, 'en', 'name', 'Shendi University'),
(104996, 86473, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų“Ł†ŲÆŁŠ'),
(104997, 86474, 'en', 'name', 'Alberta Ministry of Agriculture and Forestry'),
(104998, 86475, 'en', 'name', 'Shahid Sadoughi University of Medical Sciences and Health Services'),
(104999, 86475, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų“Ł‡ŪŒŲÆ ŲµŲÆŁˆŁ‚ŪŒ یزد'),
(105000, 86476, 'no_lang_code', 'name', 'Mettler-Toledo (Switzerland)'),
(105001, 86477, 'en', 'name', 'Thomas Adewumi University'),
(105002, 86478, 'it', 'name', 'Ri.MED'),
(105003, 86479, 'en', 'name', 'Meat & Livestock Australia'),
(105004, 86480, 'en', 'name', 'Ministry of the Environment'),
(105005, 86480, 'pt', 'name', 'MinistƩrio do Meio Ambiente'),
(105006, 86481, 'de', 'name', 'Schweizerische ZahnƤrzte Gesellschaft'),
(105007, 86481, 'en', 'name', 'Swiss Dental Association'),
(105008, 86482, 'en', 'name', 'Shiga Medical Center for Adults'),
(105009, 86482, 'ja', 'name', 'ę»‹č³€ēœŒē«‹ęˆäŗŗē—…ć‚»ćƒ³ć‚æćƒ¼'),
(105010, 86483, 'en', 'name', 'A G Leventis Foundation'),
(105011, 86484, 'no_lang_code', 'name', 'Thermo Fisher Scientific (United States)'),
(105012, 86485, 'pl', 'name', 'Górnośląskie Centrum Zdrowia Dziecka w Katowicach'),
(105013, 86486, 'no_lang_code', 'name', 'Boehringer Ingelheim (France)'),
(105014, 86487, 'en', 'name', 'National Botanical Research Institute'),
(105015, 86488, 'en', 'name', 'RIKEN Center for Brain Science'),
(105016, 86488, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€č„³ē„žēµŒē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(105017, 86489, 'no_lang_code', 'name', 'Swiss Re (Switzerland)'),
(105018, 86490, 'pt', 'name', 'Centro Hospitalar do Porto'),
(105019, 86491, 'en', 'name', 'Australian Bureau of Agricultural and Resource Economics'),
(105020, 86492, 'en', 'name', 'Anti-Slavery'),
(105021, 86493, 'ro', 'name', 'Institutul National de Cercetari Economice "Costin C. Kiritescu"'),
(105022, 86494, 'es', 'name', 'Ministerio de Salud PĆŗblica'),
(105023, 86495, 'de', 'name', 'Dienstleistungszentrum LƤndlicher Raum'),
(105024, 86496, 'no_lang_code', 'name', 'Sakakibara Hospital'),
(105025, 86496, 'ja', 'name', 'ę¦ŠåŽŸē—…é™¢'),
(105026, 86497, 'da', 'name', 'NordsjƦllands Hospital'),
(105027, 86498, 'de', 'name', 'Dienstleistungszentrum LƤndlicher Raum Westerwald-Osteifel'),
(105028, 86499, 'de', 'name', 'Dienstleistungszentrum LƤndlicher Raum Westpfalz'),
(105029, 86500, 'no_lang_code', 'name', 'Reckitt Benckiser (United Kingdom)'),
(105030, 86501, 'en', 'name', 'National Cancer Centre Singapore'),
(105031, 86502, 'en', 'name', 'Tishk International University'),
(105032, 86502, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ؄يؓك'),
(105033, 86503, 'en', 'name', 'National Guard Health Affairs'),
(105034, 86503, 'ar', 'name', 'Ų§Ł„Ų“Ų¤ŁˆŁ† Ų§Ł„ŲµŲ­ŁŠŲ© بالحرس Ų§Ł„ŁˆŲ·Ł†ŁŠ'),
(105035, 86504, 'no_lang_code', 'name', 'Illumina (United States)'),
(105036, 86505, 'en', 'name', 'Institute of Applied Physics'),
(105037, 86505, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной физики Российской акаГемии наук'),
(105038, 86506, 'de', 'name', 'Bundesamt für Landwirtschaft'),
(105039, 86506, 'en', 'name', 'Federal Office for Agriculture'),
(105040, 86507, 'en', 'name', 'Prokhorov General Physics Institute'),
(105041, 86507, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей физики им. А.М. ŠŸŃ€Š¾Ń…Š¾Ń€Š¾Š²Š° Российской акаГемии наук'),
(105042, 86508, 'en', 'name', 'Guangxi University of Chinese Medicine'),
(105043, 86508, 'zh', 'name', 'å¹æč„æäø­åŒ»čÆå¤§å­¦'),
(105044, 86509, 'no_lang_code', 'name', 'EMD Group (Canada)'),
(105045, 86510, 'en', 'name', 'Japan Foundation'),
(105046, 86511, 'no_lang_code', 'name', 'Citrix (United States)'),
(105047, 86512, 'en', 'name', 'University of Science and Technology'),
(105048, 86512, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… و Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(105049, 86513, 'en', 'name', 'Petersburg Nuclear Physics Institute'),
(105050, 86513, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ физики им.Š‘.П.ŠšŠ¾Š½ŃŃ‚Š°Š½Ń‚ŠøŠ½Š¾Š²Š°'),
(105051, 86514, 'de', 'name', 'Deutsche Diabetes Gesellschaft'),
(105052, 86515, 'es', 'name', 'Departamento de Recursos Naturales y Ambientales'),
(105053, 86515, 'en', 'name', 'Department of Natural and Environmental Resources'),
(105054, 86516, 'en', 'name', 'Health Foundation Limburg'),
(105055, 86517, 'en', 'name', 'Kumasi Technical University'),
(105056, 86518, 'en', 'name', 'Institute of Nuclear Medicine & Allied Sciences'),
(105057, 86518, 'hi', 'name', 'ą¤Øą¤¾ą¤®ą¤æą¤•ą„€ą¤Æ औषिध तऄा ą¤øą¤‚ą¤¬ą¤¦ą„ą¤§ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(105058, 86519, 'en', 'name', 'Family Health International 360'),
(105059, 86520, 'en', 'name', 'Handong Global University'),
(105060, 86520, 'ko', 'name', 'ķ•œė™ėŒ€ķ•™źµ'),
(105061, 86521, 'no_lang_code', 'name', 'Zoetis (United States)'),
(105062, 86522, 'en', 'name', 'Texas A&M University – Kingsville'),
(105063, 86523, 'no_lang_code', 'name', 'Pacira (United States)'),
(105064, 86524, 'en', 'name', 'Science History Institute'),
(105065, 86525, 'en', 'name', 'Helmholtz Center for Information Security'),
(105066, 86525, 'de', 'name', 'Helmholtz-Zentrum für Informationssicherheit'),
(105067, 86526, 'it', 'name', 'Fondazione Giorgio Cini'),
(105068, 86526, 'en', 'name', 'Giorgio Cini Foundation'),
(105069, 86527, 'en', 'name', 'German Institute for Global and Area Studies'),
(105070, 86527, 'de', 'name', 'Leibniz-Institut für Globale und Regionale Studien'),
(105071, 86528, 'es', 'name', 'Universidad de Ciencias MƩdicas de GuantƔnamo'),
(105072, 86529, 'en', 'name', 'Institute of Agricultural Economics'),
(105073, 86529, 'ro', 'name', 'Institutul de Economie Agrara'),
(105074, 86530, 'nl', 'name', 'Medisch Centrum Haaglanden'),
(105075, 86531, 'en', 'name', 'Zhoushan Science and Technology Bureau'),
(105076, 86531, 'zh', 'name', 'čˆŸå±±åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(105077, 86532, 'en', 'name', 'Algarve Centre of Marine Sciences'),
(105078, 86532, 'pt', 'name', 'Centro de CiĆŖncias do Mar do Algarve'),
(105079, 86533, 'no_lang_code', 'name', 'Advanced Accelerator Applications (Italy)'),
(105080, 86534, 'de', 'name', 'Dienstleistungszentrum Ländlicher Raum Rheinhessen-Nahe-Hunsrück'),
(105081, 86535, 'no_lang_code', 'name', 'Ube (Japan)'),
(105082, 86535, 'ja', 'name', 'å®‡éƒØčˆˆē”£ę Ŗå¼ä¼šē¤¾'),
(105083, 86536, 'no_lang_code', 'name', 'Sinton Instruments'),
(105084, 86537, 'en', 'name', 'Fujian Women and Children Hospital'),
(105085, 86538, 'en', 'name', 'University of Lynchburg'),
(105086, 86539, 'en', 'name', 'Frimley Health NHS Foundation Trust'),
(105087, 86540, 'no_lang_code', 'name', 'Indivior (United Kingdom)'),
(105088, 86541, 'no_lang_code', 'name', 'Cisco Systems (Canada)'),
(105089, 86542, 'no_lang_code', 'name', 'Amgen (Canada)'),
(105090, 86543, 'en', 'name', 'Shanghai Xuhui Central Hospital'),
(105091, 86543, 'zh', 'name', 'äøŠęµ·å¾ę±‡äø­åæƒåŒ»é™¢'),
(105092, 86544, 'en', 'name', 'Institute of Normal Physiology named after P.K. Anokhin'),
(105093, 86544, 'ru', 'name', 'ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š¾Ń€Š¼Š°Š»ŃŒŠ½Š¾Š¹ физиологии имени П. К. Анохина'),
(105094, 86545, 'no_lang_code', 'name', 'Arcadis (Czechia)'),
(105095, 86546, 'en', 'name', 'European Climate Foundation'),
(105096, 86547, 'it', 'name', 'Fondazione Poliambulanza Istituto Ospedaliero'),
(105097, 86548, 'en', 'name', 'Higher Education Commission'),
(105098, 86548, 'ur', 'name', 'Ł„ŁŲ¬Ł†Ū‚ Ų§Ų¹Ł„ŪŒŁ° ŲŖŲ¹Ł„ŪŒŁ…'),
(105099, 86549, 'en', 'name', 'Pacific Southwest Research Station'),
(105100, 86550, 'en', 'name', 'CSIR National Physical Laboratory of India'),
(105101, 86550, 'hi', 'name', 'ą¤øą„€ą¤ą¤øą¤†ą¤ˆą¤†ą¤°-ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤­ą„Œą¤¤ą¤æą¤• ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(105102, 86551, 'no_lang_code', 'name', 'Kao Corporation (Japan)'),
(105103, 86551, 'ja', 'name', 'čŠ±ēŽ‹ę Ŗå¼ä¼šē¤¾'),
(105104, 86552, 'en', 'name', 'Izumi City General Hospital'),
(105105, 86552, 'ja', 'name', 'å’Œę³‰åø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(105106, 86553, 'en', 'name', 'Indus Hospital'),
(105107, 86554, 'no_lang_code', 'name', 'Boehringer Ingelheim (Spain)'),
(105108, 86555, 'en', 'name', 'TYTO - Association for the Management and Conservation of Biodiversity in Agricultural Ecosystems'),
(105109, 86555, 'el', 'name', 'ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ για τη Ī”Ī¹Ī±Ļ‡ĪµĪÆĻĪ¹ĻƒĪ· και Ī”Ī¹Ī±Ļ„Ī®ĻĪ·ĻƒĪ· της Ī’Ī¹ĪæĻ€ĪæĪ¹ĪŗĪ¹Ī»ĻŒĻ„Ī·Ļ„Ī±Ļ‚ ĻƒĻ„Ī± Αγροτικά ĪŸĪ¹ĪŗĪæĻƒĻ…ĻƒĻ„Ī®Ī¼Ī±Ļ„Ī± «Τ΄ΤΩ»'),
(105110, 86556, 'en', 'name', 'Shiga Medical Center'),
(105111, 86556, 'ja', 'name', 'ę»‹č³€åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(105112, 86557, 'en', 'name', 'Aichi Health Promotion Foundation'),
(105113, 86557, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę„›ēŸ„ēœŒå„åŗ·ć„ćć‚ŠęŒÆčˆˆäŗ‹ę„­å›£'),
(105114, 86558, 'en', 'name', 'Xinqiao Hospital'),
(105115, 86558, 'zh', 'name', 'ę–°ę”„åŒ»é™¢'),
(105116, 86559, 'en', 'name', 'Global Brain Health Institute'),
(105117, 86560, 'en', 'name', 'Northern Research Station'),
(105118, 86561, 'en', 'name', 'Yarmouk University'),
(105119, 86561, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŲ±Ł…ŁˆŁƒ'),
(105120, 86562, 'en', 'name', 'University of Erfurt'),
(105121, 86562, 'de', 'name', 'UniversitƤt Erfurt'),
(105122, 86563, 'fr', 'name', 'Gefluc Languedoc Roussillon'),
(105123, 86564, 'fr', 'name', 'Builders Ɖcole d''ingĆ©nieurs'),
(105124, 86565, 'en', 'name', 'Kohn Foundation'),
(105125, 86566, 'en', 'name', 'Affiliated Eye Hospital of Wenzhou Medical College'),
(105126, 86566, 'zh', 'name', 'ęø©å·žåŒ»ē§‘å¤§å­¦é™„å±žēœ¼č§†å…‰åŒ»é™¢'),
(105127, 86567, 'en', 'name', 'First Affiliated Hospital of Zhengzhou University'),
(105128, 86568, 'no_lang_code', 'name', 'Kemira (Finland)'),
(105129, 86569, 'fr', 'name', 'GƩnƩrale de SantƩ'),
(105130, 86570, 'de', 'name', 'Dienstleistungszentrum LƤndlicher Raum Mosel'),
(105131, 86571, 'en', 'name', 'Institute of Crop Sciences'),
(105132, 86571, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ä½œē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(105133, 86572, 'en', 'name', 'Noguchi Memorial Institute for Medical Research'),
(105134, 86573, 'en', 'name', 'Supreme Court of the United States'),
(105135, 86574, 'en', 'name', 'European Parkinsons Disease Association'),
(105136, 86575, 'en', 'name', 'Institute of Earth Environment'),
(105137, 86575, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åœ°ēƒēŽÆå¢ƒē ”ē©¶ę‰€'),
(105138, 86576, 'da', 'name', 'SjƦllands Universitetshospital'),
(105139, 86576, 'en', 'name', 'Zealand University Hospital'),
(105140, 86577, 'en', 'name', 'Changshu No. 2 People''s Hospital'),
(105141, 86577, 'zh', 'name', 'åøøē†Ÿåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(105142, 86578, 'en', 'name', 'Duke University Health System'),
(105143, 86579, 'en', 'name', 'Indian Veterinary Research Institute'),
(105144, 86579, 'fr', 'name', 'Institut indien de recherche vƩtƩrinaire'),
(105145, 86579, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą¤¶ą„ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(105146, 86580, 'no_lang_code', 'name', 'Bracco (Italy)'),
(105147, 86581, 'en', 'name', 'Northeast Institute of Geography and Agroecology'),
(105148, 86581, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøœåŒ—åœ°ē†äøŽå†œäøšē”Ÿę€ē ”ē©¶ę‰€'),
(105149, 86582, 'en', 'name', 'Takeda Science Foundation'),
(105150, 86582, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę­¦ē”°ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(105151, 86583, 'no', 'name', 'GenƘk'),
(105152, 86584, 'en', 'name', 'Institute of Biology of Inland Waters named Ivan Dmitrievich Papanin'),
(105153, 86584, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Š²Š½ŃƒŃ‚ренних воГ им. И.Š”.Папанина Российской акаГемии наук'),
(105154, 86585, 'en', 'name', 'Nemours Children''s Health System'),
(105155, 86586, 'en', 'name', 'The Kidney Fund'),
(105156, 86587, 'en', 'name', 'Ɩrebro County Council'),
(105157, 86587, 'sv', 'name', 'Ɩrebro lƤns landsting'),
(105158, 86588, 'en', 'name', 'Ocean Park Conservation Foundation'),
(105159, 86588, 'zh', 'name', 'é¦™ęøÆęµ·ę“‹å…¬åœ’äæč‚²åŸŗé‡‘'),
(105160, 86589, 'en', 'name', 'Texas A&M University – Central Texas'),
(105161, 86590, 'en', 'name', 'Higher Institue of Technological Studies'),
(105162, 86590, 'fr', 'name', 'Institut SupĆ©rieur des Ɖtudes Technologiques de Gafsa'),
(105163, 86590, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© بقفصة'),
(105164, 86591, 'en', 'name', 'Urology Foundation'),
(105165, 86592, 'en', 'name', 'Biomedical Research Foundation'),
(105166, 86593, 'en', 'name', 'Kawano Masanori Memorial Public Interest Incorporated Foundation for Promotion of Pediatrics'),
(105167, 86593, 'ja', 'name', 'å·é‡Žå°å…åŒ»å­¦å„Øå­¦č²”å›£'),
(105168, 86594, 'en', 'name', 'Indian Institute of Technology BHU'),
(105169, 86595, 'en', 'name', 'Damascus University'),
(105170, 86595, 'fr', 'name', 'UniversitƩ de damas'),
(105171, 86595, 'hy', 'name', 'Ō“Õ”Õ“Õ”Õ½ÕÆÕøÕ½Õ« Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(105172, 86595, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ…Ų“Ł‚'),
(105173, 86596, 'en', 'name', 'Nancy Yeary Women''s Cancer Research Foundation'),
(105174, 86597, 'no_lang_code', 'name', 'Covestro (Germany)'),
(105175, 86598, 'no_lang_code', 'name', 'Novartis (Spain)'),
(105176, 86599, 'en', 'name', 'University of Kurdistan Hewler'),
(105177, 86599, 'ku', 'name', 'Zankoy Kurdistan – HewlĆŖr'),
(105178, 86599, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁƒŲ±ŲÆŲ³ŲŖŲ§Ł†'),
(105179, 86600, 'no_lang_code', 'name', 'Shire (Australia)'),
(105180, 86601, 'en', 'name', 'Institute of Oceanology'),
(105181, 86601, 'zh', 'name', '中国科学院海擋研究所'),
(105182, 86602, 'fr', 'name', 'Institut SupƩrieur d''Informatique et de MathƩmatiques de Monastir'),
(105183, 86602, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ© ŁˆŲ§Ł„Ų±ŁŠŲ§Ų¶ŁŠŲ§ŲŖ ŲØŲ§Ł„Ł…Ł†Ų³ŲŖŁŠŲ±'),
(105184, 86603, 'en', 'name', 'Carlos Hilado Memorial State University'),
(105185, 86604, 'en', 'name', 'National University of Engineering'),
(105186, 86604, 'es', 'name', 'Universidad Nacional de IngenierĆ­a'),
(105187, 86605, 'en', 'name', 'Society of Urodynamics, Female Pelvic Medicine & Urogenital Reconstruction'),
(105188, 86606, 'en', 'name', 'Federal University of Sergipe'),
(105189, 86606, 'pt', 'name', 'Universidade Federal de Sergipe'),
(105190, 86607, 'no_lang_code', 'name', 'Australian Pork (Australia)'),
(105191, 86608, 'de', 'name', 'Dienstleistungszentrum LƤndlicher Raum Eifel'),
(105192, 86609, 'en', 'name', 'Delta Research and Educational Foundation'),
(105193, 86610, 'en', 'name', 'Great Barrier Reef Marine Park Authority'),
(105194, 86611, 'en', 'name', 'Centre for Development of Advanced Computing'),
(105195, 86611, 'mr', 'name', 'ą¤øą„€-ą¤”ą„…ą¤•'),
(105196, 86611, 'hi', 'name', 'ą¤øą„€-ą¤”ą„ˆą¤•'),
(105197, 86611, 'ta', 'name', 'ą®šą®æą®Ÿą®¾ą®•ąÆ'),
(105198, 86611, 'ml', 'name', 'ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“”ąµ†ą“µą“²ą“Ŗąµą“®ąµ†ą“Øąµą“±ąµ ą““ą“«ąµ ą“…ą“”ąµą“µą“¾ąµ»ą“øąµą“”ąµ ą“•ą“®ąµą“Ŗąµą“Æąµ‚ą“Ÿąµą“Ÿą“æą“™ąµą“™ąµ'),
(105199, 86612, 'en', 'name', 'Zhejiang Radio and Television University'),
(105200, 86612, 'zh', 'name', 'ęµ™ę±Ÿå¹æę’­ē”µč§†å¤§å­¦'),
(105201, 86613, 'no_lang_code', 'name', 'Imperial Oil (Canada)'),
(105202, 86613, 'fr', 'name', 'La Pétrolière Impériale'),
(105203, 86614, 'en', 'name', 'Calvary Mater Newcastle Hospital'),
(105204, 86615, 'en', 'name', 'National Metallurgical Academy of Ukraine'),
(105205, 86615, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Украины'),
(105206, 86615, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³Ń–Š¹Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України'),
(105207, 86616, 'en', 'name', 'Education Department of Jiangxi Province'),
(105208, 86617, 'en', 'name', 'International Center for Jefferson Studies at Monticello'),
(105209, 86618, 'fr', 'name', 'Institut SupƩrieur des Sciences AppliquƩes et de Technologies de Gafsa'),
(105210, 86618, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© بقفصة'),
(105211, 86619, 'en', 'name', 'Fraunhofer USA Center Mid-Atlantic CMA'),
(105212, 86620, 'en', 'name', 'Sohail University'),
(105213, 86621, 'no_lang_code', 'name', 'Steklov Mathematical Institute'),
(105214, 86621, 'ru', 'name', 'ŠœŠ°Ń‚ŠµŠ¼Š°Ń‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’. А. Дтеклова'),
(105215, 86622, 'en', 'name', 'Kappa Omicron Nu Honor Society'),
(105216, 86623, 'fr', 'name', 'Institut de MƩdecine et d''EpidƩmiologie Africaines'),
(105217, 86624, 'en', 'name', 'Grains Research and Development Corporation'),
(105218, 86625, 'en', 'name', 'Transnational University Limburg'),
(105219, 86625, 'nl', 'name', 'Transnationale Universiteit Limburg'),
(105220, 86626, 'fr', 'name', 'CancƩropƓle Grand Ouest'),
(105221, 86627, 'no_lang_code', 'name', 'PPG Industries (United States)'),
(105222, 86628, 'no_lang_code', 'name', 'Recordati (Spain)'),
(105223, 86629, 'sv', 'name', 'Landstinget i Uppsala lƤn'),
(105224, 86630, 'no_lang_code', 'name', 'Mallinckrodt (United States)'),
(105225, 86631, 'es', 'name', 'Centro de Investigaciones en Química Biológica de Córdoba'),
(105226, 86631, 'en', 'name', 'Research Centre in Biological Chemistry of Córdoba'),
(105227, 86632, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta ThrĆ” LĆ­'),
(105228, 86632, 'en', 'name', 'Institute of Technology Tralee'),
(105229, 86633, 'id', 'name', 'STIKOM Tunas Bangsa'),
(105230, 86634, 'es', 'name', 'Instituto Superior Pedro Francisco Bono'),
(105231, 86635, 'en', 'name', 'Manchester Mental Health and Social Care Trust'),
(105232, 86636, 'sl', 'name', 'PapeŔka univerza Gregoriana'),
(105233, 86636, 'en', 'name', 'Pontifical Gregorian University'),
(105234, 86636, 'it', 'name', 'Pontificia UniversitĆ  Gregoriana'),
(105235, 86636, 'ca', 'name', 'PontifĆ­cia Universitat Gregoriana'),
(105236, 86636, 'de', 'name', 'PƤpstliche UniversitƤt Gregoriana'),
(105237, 86636, 'fr', 'name', 'UniversitƩ pontificale grƩgorienne'),
(105238, 86637, 'en', 'name', 'Derby Hospitals NHS Foundation Trust'),
(105239, 86638, 'en', 'name', 'Sri Shankara Cancer Hospital and Research Center'),
(105240, 86638, 'kn', 'name', 'ą²¶ą³ą²°ą³€ ಶಂಕರ ą²•ą³ą²Æą²¾ą²Øą³ą²øą²°ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³† ą²®ą²¤ą³ą²¤ą³ ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(105241, 86639, 'en', 'name', 'National Standards and Calibration Laboratory'),
(105242, 86639, 'ar', 'name', 'المخبر Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„Ł…Ų¹Ų§ŁŠŁŠŲ± ŁˆŲ§Ł„Ł…Ų¹Ų§ŁŠŲ±Ų© Ų¢Ų±.Ų„Ų³.Ų„Ų³'),
(105243, 86640, 'fr', 'name', 'Epicentre'),
(105244, 86641, 'es', 'name', 'Universidad de la Tercera Edad'),
(105245, 86642, 'es', 'name', 'Universidad Católica del Este'),
(105246, 86643, 'es', 'name', 'Universidad Católica Santo Domingo'),
(105247, 86644, 'es', 'name', 'Hospital Infantil Dr. Robert Reid Cabral'),
(105248, 86645, 'en', 'name', 'MRC Centre for Medical Mycology'),
(105249, 86646, 'en', 'name', 'Stockholm Resilience Centre'),
(105250, 86647, 'en', 'name', 'City Hospitals Sunderland NHS Foundation Trust'),
(105251, 86648, 'en', 'name', 'Jeppiaar Engineering College'),
(105252, 86648, 'ta', 'name', 'ą®œąÆ†ą®ŖąÆą®Ŗą®æą®Æą®¾ą®°ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(105253, 86649, 'hu', 'name', 'Kijevi Egyetem'),
(105254, 86649, 'en', 'name', 'Taras Shevchenko National University of Kyiv'),
(105255, 86649, 'pl', 'name', 'Uniwersytet Kijowski'),
(105256, 86649, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Тараса Шевченко'),
(105257, 86649, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Тараса Шевченка'),
(105258, 86650, 'en', 'name', 'Anchor University Lagos'),
(105259, 86651, 'en', 'name', 'International Council for Science');
INSERT INTO `ror_settings` VALUES
(105260, 86652, 'en', 'name', 'Public University "Kadri Zeka"'),
(105261, 86652, 'sq', 'name', 'Universiteti Publik "Kadri Zeka"'),
(105262, 86653, 'en', 'name', 'Cadi Ayyad University'),
(105263, 86653, 'fr', 'name', 'UniversitƩ Cadi Ayyad'),
(105264, 86653, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ų§Ų¶ŁŠ عياض'),
(105265, 86654, 'en', 'name', 'Indian Institute of Information Technology Design and Manufacturing, Kurnool'),
(105266, 86654, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€, ą¤…ą¤­ą¤æą¤•ą¤²ą„ą¤Ŗą¤Øą¤¾ ą¤ą¤µą¤‚ ą¤µą¤æą¤Øą¤æą¤°ą„ą¤®ą¤¾ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą¤°ą„ą¤Øą„‚ą¤²'),
(105267, 86654, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°‡ą°Øą±ą°«ą°°ą±ą°®ą±‡ą°·ą°Øą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€, ą°”ą°æą°œą±ˆą°Øą± ą°…ą°‚ą°”ą± ą°®ą°¾ą°Øą±ą°Æą±ą°«ą±ą°Æą°¾ą°•ą±ą°šą°°ą°æą°‚ą°—ą±, ą°•ą°°ą±ą°Øą±‚ą°²ą±'),
(105268, 86655, 'en', 'name', 'Ghana Standards Authority'),
(105269, 86656, 'es', 'name', 'Universidad Federico HenrĆ­quez y Carvajal'),
(105270, 86657, 'no_lang_code', 'name', 'Praxair (United States)'),
(105271, 86658, 'en', 'name', 'Tahoe Environmental Research Center'),
(105272, 86659, 'es', 'name', 'Universidad Odontológica Dominicana'),
(105273, 86660, 'en', 'name', 'Faculty of Mechanical Engineering - University in Nis'),
(105274, 86660, 'sr', 'name', 'Masinski Fakultet - Univerziteta U Nisu'),
(105275, 86661, 'no_lang_code', 'name', 'Computer Sciences Corporation (United States)'),
(105276, 86662, 'en', 'name', 'Kala-Azar Medical Research Centre'),
(105277, 86663, 'es', 'name', 'Universidad Nacional de la PolicĆ­a de Honduras'),
(105278, 86664, 'no_lang_code', 'name', 'Drug Hunter'),
(105279, 86665, 'en', 'name', 'Botswana Bureau of Standards'),
(105280, 86666, 'en', 'name', 'Azerbaijan Institute of Metrology'),
(105281, 86666, 'az', 'name', 'Azerbaycan Metrologiya Institutu'),
(105282, 86667, 'en', 'name', 'Manara University'),
(105283, 86667, 'fr', 'name', 'UniversitƩ Manara'),
(105284, 86667, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المنارة'),
(105285, 86668, 'fr', 'name', 'RƩseau QuƩbec maritime'),
(105286, 86669, 'pt', 'name', 'Centro UniversitÔrio Católica de Santa Catarina'),
(105287, 86670, 'en', 'name', 'Technical University of Applied Sciences Würzburg-Schweinfurt'),
(105288, 86670, 'de', 'name', 'Technische Hochschule Würzburg-Schweinfurt'),
(105289, 86671, 'en', 'name', 'Colchester Hospital University NHS Foundation Trust'),
(105290, 86672, 'no_lang_code', 'name', 'Kosan Biosciences (United States)'),
(105291, 86673, 'en', 'name', 'Lanzhou City University'),
(105292, 86673, 'zh', 'name', 'å…°å·žåŸŽåø‚å­¦é™¢ę˜Æ'),
(105293, 86674, 'no_lang_code', 'name', 'Mountain Vista Medical Center'),
(105294, 86675, 'en', 'name', 'State Committee for Standardization of the Republic of Belarus'),
(105295, 86675, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ комитет по станГартизации Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(105296, 86675, 'be', 'name', 'Š”Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŠŗŠ°Š¼Ń–Ń‚ŃŃ‚ па станГартызацыі Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(105297, 86676, 'en', 'name', 'Saimaa University of Applied Sciences'),
(105298, 86676, 'fi', 'name', 'Saimaan ammattikorkeakoulu'),
(105299, 86677, 'es', 'name', 'Hospital Domingo Funes'),
(105300, 86678, 'no_lang_code', 'name', 'Georgia-Pacific (United States)'),
(105301, 86679, 'en', 'name', 'Leibniz-Centre for Contemporary History'),
(105302, 86679, 'de', 'name', 'Leibniz-Zentrum für Zeithistorische Forschung'),
(105303, 86680, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta Tamhlacht'),
(105304, 86680, 'en', 'name', 'Institute of Technology Tallaght'),
(105305, 86681, 'en', 'name', 'TCS Education System'),
(105306, 86682, 'en', 'name', 'Reef Check - Dominican Republic'),
(105307, 86682, 'es', 'name', 'Reef Check - RepĆŗblica Dominicana'),
(105308, 86683, 'en', 'name', 'Interactive Institute'),
(105309, 86684, 'en', 'name', 'Government College Women University Sialkot'),
(105310, 86684, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł¹ کالج ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒŲŒ Ų³ŪŒŲ§Ł„Ś©ŁˆŁ¹'),
(105311, 86685, 'en', 'name', 'Thiagarajar College of Engineering'),
(105312, 86686, 'en', 'name', 'National Institute of Radiological Sciences'),
(105313, 86686, 'ja', 'name', 'ę”¾å°„ē·šåŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(105314, 86687, 'so', 'name', 'Jaamacadda Salaam'),
(105315, 86687, 'en', 'name', 'Salaam University'),
(105316, 86687, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© السلام'),
(105317, 86688, 'en', 'name', 'Japan Electric Meters Inspection Corporation'),
(105318, 86688, 'ja', 'name', 'ę—„ęœ¬é›»ę°—čØˆå™Øę¤œå®šę‰€'),
(105319, 86689, 'tr', 'name', 'Serik Devlet Hastanesi'),
(105320, 86690, 'no_lang_code', 'name', 'Ashiya College'),
(105321, 86690, 'ja', 'name', 'čŠ¦å±‹å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(105322, 86691, 'de', 'name', 'E+E Elektronik'),
(105323, 86692, 'en', 'name', 'Rowland Institute at Harvard'),
(105324, 86693, 'en', 'name', 'University of the Rockies'),
(105325, 86694, 'fr', 'name', 'Institut Catholique d''Arts et MƩtiers'),
(105326, 86695, 'pt', 'name', 'Fundo Nacional de Desenvolvimento da Educação'),
(105327, 86696, 'de', 'name', 'Fachhochschule Ostschweiz'),
(105328, 86696, 'en', 'name', 'University of Applied Sciences of Eastern Switzerland'),
(105329, 86697, 'fr', 'name', 'ENCPB - LycƩe Pierre-Gilles-de-Gennes'),
(105330, 86698, 'pt', 'name', 'Editora JRG'),
(105331, 86699, 'en', 'name', 'University of Benin'),
(105332, 86699, 'yo', 'name', 'YunifÔsítì ìlú Benin'),
(105333, 86700, 'en', 'name', 'National Metrology Institute of Ethiopia'),
(105334, 86701, 'en', 'name', 'Kalinga State University'),
(105335, 86702, 'es', 'name', 'Universidad PsicologĆ­a Industrial Dominicana'),
(105336, 86703, 'es', 'name', 'Universidad Eugenio MarĆ­a de Hostos'),
(105337, 86704, 'en', 'name', 'National Metrology Laboratory of the Philippines'),
(105338, 86705, 'en', 'name', 'International Institute for Geo-Information Science and Earth Observation'),
(105339, 86706, 'no_lang_code', 'name', 'Beckman Coulter (United States)'),
(105340, 86707, 'es', 'name', 'Instituto Dermatológico y Cirugía de Piel "Dr. Huberto Bogaert Díaz"'),
(105341, 86708, 'es', 'name', 'Escuela Superior de Comercio Manuel Belgrano'),
(105342, 86709, 'en', 'name', 'Industrial Technology Development Institute'),
(105343, 86710, 'en', 'name', 'Government Laboratory'),
(105344, 86710, 'zh', 'name', 'ę”æåŗœåŒ–é©—ę‰€'),
(105345, 86711, 'en', 'name', 'United States Bureau of Reclamation'),
(105346, 86712, 'en', 'name', 'Doctors Without Borders'),
(105347, 86712, 'fr', 'name', 'Médecins Sans Frontières'),
(105348, 86713, 'es', 'name', 'Instituto de Investigaciones en Ciencias de la Salud'),
(105349, 86714, 'en', 'name', 'BioTherapeutics, Education and Research Foundation'),
(105350, 86715, 'en', 'name', 'National Metrology Center of Cambodia'),
(105351, 86715, 'km', 'name', 'įž˜įž‡įŸ’įžˆįž˜įžŽįŸ’įžŒįž›įž˜įž¶įžįŸ’įžšįž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšįž‡įž¶įžįž·'),
(105352, 86716, 'en', 'name', 'Namibian Standards Institution'),
(105353, 86717, 'en', 'name', 'Epicentre Uganda'),
(105354, 86718, 'no_lang_code', 'name', 'Yunnan Botanee Biotechnology Group Co.'),
(105355, 86718, 'zh', 'name', 'äŗ‘å—č“ę³°å¦®ē”Ÿē‰©ē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(105356, 86719, 'en', 'name', 'Precious Cornerstone University'),
(105357, 86720, 'en', 'name', 'Sri Lanka Technological Campus'),
(105358, 86721, 'en', 'name', 'Bangladesh Reference Institute for Chemical Measurements'),
(105359, 86722, 'es', 'name', 'Universidad Dominicana Organización & Métodos'),
(105360, 86723, 'es', 'name', 'Consorcio MadroƱo'),
(105361, 86724, 'fr', 'name', 'Ecole SupƩrieure de Technologie de Safi'),
(105362, 86725, 'es', 'name', 'Centro de Investigaciones en Ciencias de la Tierra'),
(105363, 86725, 'en', 'name', 'Research Center on Earth Sciences'),
(105364, 86726, 'no_lang_code', 'name', 'State Grid Hebei Electric Power Company'),
(105365, 86726, 'zh', 'name', 'å›½ē½‘ę²³åŒ—ēœē”µåŠ›ęœ‰é™å…¬åø'),
(105366, 86727, 'en', 'name', 'Association for the Conservation of Energy'),
(105367, 86728, 'fr', 'name', 'Institut SupƩrieur d''Informatique de Mahdia'),
(105368, 86728, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ© ŲØŲ§Ł„Ł…Ł‡ŲÆŁŠŲ©'),
(105369, 86729, 'en', 'name', 'Delta College of Science and Technology'),
(105370, 86729, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© دلتا Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(105371, 86730, 'en', 'name', 'Kansas Health Sciences Center'),
(105372, 86731, 'en', 'name', 'Pertamina University'),
(105373, 86731, 'id', 'name', 'Universitas Pertamina'),
(105374, 86732, 'en', 'name', 'Provincial University of Cordoba'),
(105375, 86732, 'es', 'name', 'Universidad Provincial de Córdoba'),
(105376, 86733, 'en', 'name', 'Carlos III Hospital'),
(105377, 86734, 'es', 'name', 'Colegio Nacional de Monserrat'),
(105378, 86735, 'es', 'name', 'Instituto Nacional de Normalización'),
(105379, 86736, 'en', 'name', 'Kharkiv International Medical University'),
(105380, 86736, 'uk', 'name', 'ŠŸŃ€ŠøŠ²Š°Ń‚Š½ŠøŠ¹ вищий Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ заклаГ "Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ міжнароГний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚"'),
(105381, 86737, 'en', 'name', 'Georgian National University SEU'),
(105382, 86737, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ įƒ”įƒ”įƒ£'),
(105383, 86738, 'pt', 'name', 'Unimed Belo Horizonte'),
(105384, 86739, 'no_lang_code', 'name', 'Shenzhen Chipscreen Biosciences Co.'),
(105385, 86739, 'zh', 'name', 'ę·±åœ³å¾®čŠÆē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(105386, 86740, 'es', 'name', 'Ministerio de Educación Superior, Ciencia y Tecnología'),
(105387, 86741, 'de', 'name', 'Staatliches Institut für Musikforschung'),
(105388, 86742, 'id', 'name', 'Sekolah Tinggi Agama Islam Ma''had Ali Cirebon'),
(105389, 86743, 'fr', 'name', 'Centre Henri Becquerel'),
(105390, 86744, 'en', 'name', 'Bangladesh Standards and Testing Institution'),
(105391, 86745, 'en', 'name', 'Waiariki Institute of Technology'),
(105392, 86745, 'mi', 'name', 'Whare Takiura o Waiariki'),
(105393, 86746, 'en', 'name', 'Usman Institute of Technology'),
(105394, 86747, 'en', 'name', 'Israa University- Palestine'),
(105395, 86747, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الاسراؔ-ŁŁ„Ų³Ų·ŁŠŁ†'),
(105396, 86748, 'no_lang_code', 'name', 'Freescale Semiconductor (Germany)'),
(105397, 86749, 'en', 'name', 'Kinneret College on the Sea of Galilee'),
(105398, 86749, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ כנרת בעמק ×”×™×Ø×“×Ÿ'),
(105399, 86749, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ŁƒŁŠŁ†ŁŠŲ±ŁŠŲŖ Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(105400, 86750, 'en', 'name', 'University of Hawaiʻi at Mānoa'),
(105401, 86750, 'fr', 'name', 'Université d''hawaï à mānoa'),
(105402, 86751, 'no_lang_code', 'name', 'Trescal'),
(105403, 86752, 'en', 'name', 'Malaria Consortium'),
(105404, 86753, 'es', 'name', 'Instituto Geológico Minero y Metalúrgico'),
(105405, 86754, 'en', 'name', 'National Water Commission'),
(105406, 86755, 'no_lang_code', 'name', 'LGC'),
(105407, 86756, 'no_lang_code', 'name', 'Calsonic Kansei (Japan)'),
(105408, 86756, 'ja', 'name', 'ć‚«ćƒ«ć‚½ćƒ‹ćƒƒć‚Æć‚«ćƒ³ć‚»ć‚¤'),
(105409, 86757, 'no_lang_code', 'name', 'Osram Opto Semiconductors'),
(105410, 86758, 'de', 'name', 'German BioImaging – Gesellschaft für Mikroskopie und Bildanalyse'),
(105411, 86758, 'en', 'name', 'German BioImaging – Society for Microscopy and Image Analysis'),
(105412, 86759, 'es', 'name', 'Instituto Tecnológico de las Américas'),
(105413, 86760, 'en', 'name', 'Malaria Consortium'),
(105414, 86761, 'en', 'name', 'Mauritius Standards Bureau'),
(105415, 86762, 'es', 'name', 'Instituto Nacional de Diabetes, Endocrinología y Nutrición'),
(105416, 86763, 'no_lang_code', 'name', 'Zylem Biosciences'),
(105417, 86764, 'en', 'name', 'Bureau of Standards, Metrology and Inspection'),
(105418, 86764, 'zh', 'name', 'ē¶“ęæŸéƒØęØ™ęŗ–ęŖ¢é©—å±€'),
(105419, 86765, 'es', 'name', 'Instituto Boliviano de Metrologia'),
(105420, 86766, 'en', 'name', 'National Radiological Protection Board'),
(105421, 86767, 'es', 'name', 'Instituto de Investigación Médica Mercedes y Martín Ferreyra'),
(105422, 86768, 'en', 'name', 'Azerbaijan Cooperation University'),
(105423, 86768, 'az', 'name', 'Azərbaycan Kooperasiya Universiteti'),
(105424, 86769, 'en', 'name', 'Cumbria Partnership NHS Foundation Trust'),
(105425, 86770, 'en', 'name', 'Divine Mercy University'),
(105426, 86771, 'no_lang_code', 'name', 'Swerea (Sweden)'),
(105427, 86772, 'en', 'name', 'Department of Infrastructure, Transport, Regional Development, Communications and the Arts'),
(105428, 86773, 'en', 'name', 'St. Joseph''s Institute of Technology'),
(105429, 86774, 'en', 'name', 'Art Institute of Fort Lauderdale'),
(105430, 86775, 'en', 'name', 'Malaria Consortium'),
(105431, 86776, 'no_lang_code', 'name', 'Quantitative Genomics Medicine Laboratories (qGenomics)'),
(105432, 86777, 'en', 'name', 'Moscow State University of Economics Statistics and Informatics'),
(105433, 86777, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, статистики Šø информатики'),
(105434, 86778, 'en', 'name', 'Wenzhou Polytechnic'),
(105435, 86778, 'zh', 'name', 'ęø©å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(105436, 86779, 'en', 'name', 'Mashhad University of Medical Sciences'),
(105437, 86779, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی مؓهد'),
(105438, 86780, 'en', 'name', 'Sri Venkatesa Perumal College of Engineering and Technology'),
(105439, 86781, 'no_lang_code', 'name', 'Affymetrix (United States)'),
(105440, 86782, 'no_lang_code', 'name', 'Sound Vaccine'),
(105441, 86782, 'ko', 'name', 'ģ‚¬ģš“ė“œė°±ģ‹  ģ£¼ģ‹ķšŒģ‚¬'),
(105442, 86783, 'en', 'name', 'Kabardino-Balkarian State University'),
(105443, 86783, 'ru', 'name', 'ŠšŠ°Š±Š°Ń€Š“ŠøŠ½Š¾-Балкарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105444, 86784, 'en', 'name', 'Ukrainian Centre for European Policy'),
(105445, 86784, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ центр Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠ¾Ń— політики'),
(105446, 86785, 'no_lang_code', 'name', 'Resonance (United States)'),
(105447, 86786, 'en', 'name', 'University of N''Djamena'),
(105448, 86786, 'fr', 'name', 'UniversitƩ de N''Djamena'),
(105449, 86787, 'en', 'name', 'Samara State University'),
(105450, 86787, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105451, 86788, 'en', 'name', 'Mabalacat City College'),
(105452, 86789, 'ga', 'name', 'Institiúid Teicneolaíochta Baile Bhlainséir'),
(105453, 86789, 'en', 'name', 'Institute of Technology, Blanchardstown'),
(105454, 86790, 'en', 'name', 'Brighton and Sussex University Hospitals NHS Trust'),
(105455, 86791, 'no_lang_code', 'name', 'Empresa Nacional de AeronƔutica'),
(105456, 86792, 'es', 'name', 'Universidad Nacional Tecnológica'),
(105457, 86793, 'no_lang_code', 'name', 'LymphoSign Journal (Canada)'),
(105458, 86794, 'en', 'name', 'Kosin University'),
(105459, 86794, 'ko', 'name', 'ź³ ģ‹ ėŒ€ķ•™źµ'),
(105460, 86795, 'en', 'name', 'American Society of Colon and Rectal Surgeons'),
(105461, 86796, 'no_lang_code', 'name', 'Scienion (United States)'),
(105462, 86797, 'no_lang_code', 'name', 'Polypico'),
(105463, 86798, 'pt', 'name', 'Escola Superior Pedagógica do Bengo'),
(105464, 86799, 'en', 'name', 'Target Ovarian Cancer'),
(105465, 86800, 'en', 'name', 'Government of Newfoundland and Labrador'),
(105466, 86801, 'en', 'name', 'Heart of England NHS Foundation Trust'),
(105467, 86802, 'en', 'name', 'Solihull Hospital'),
(105468, 86803, 'no_lang_code', 'name', 'China Railway Eryuan Engineering Group Co.'),
(105469, 86803, 'zh', 'name', 'äø­é“äŗŒé™¢å·„ēØ‹é›†å›¢ęœ‰é™č“£ä»»å…¬åø'),
(105470, 86804, 'en', 'name', 'Birzeit University'),
(105471, 86804, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بيرزيت'),
(105472, 86805, 'en', 'name', 'Hospital of the Brothers of St. John of God'),
(105473, 86805, 'de', 'name', 'Krankenhaus der Barmherzigen Brüder Wien'),
(105474, 86806, 'en', 'name', 'Bu-Ali Sina University'),
(105475, 86806, 'fa', 'name', 'دانؓگاه ŲØŁˆŲ¹Ł„ŪŒ Ų³ŪŒŁ†Ų§'),
(105476, 86807, 'en', 'name', 'Virginia Innovation Partnership Corporation'),
(105477, 86808, 'en', 'name', 'Convent Hospital of the Brothers of Saint John of God'),
(105478, 86808, 'de', 'name', 'Konventhospital der Barmherzigen Brüder Linz'),
(105479, 86809, 'en', 'name', 'Center for Social Inclusion'),
(105480, 86810, 'de', 'name', 'Niedersächsisches Ministerium für Wissenschaft und Kultur'),
(105481, 86811, 'en', 'name', 'Iran Nanotechnology Initiative Council'),
(105482, 86812, 'en', 'name', 'Zhetysu University named after Ilyas Zhansugurov'),
(105483, 86812, 'kk', 'name', 'Š†Š»ŠøŃŃ Жансүгіров атынГағы Š–ŠµŃ‚Ń–ŃŃƒ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(105484, 86812, 'ru', 'name', 'Š–ŠµŃ‚Ń‹ŃŃƒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š˜Š»ŃŒŃŃŠ° Š–Š°Š½ŃŃƒŠ³ŃƒŃ€Š¾Š²Š°'),
(105485, 86813, 'en', 'name', 'Swedish Cancer Society'),
(105486, 86814, 'en', 'name', 'C17 Council'),
(105487, 86815, 'en', 'name', 'Thailand Research Fund'),
(105488, 86816, 'es', 'name', 'Instituto Nacional de Tecnología, Normalización y Metrología'),
(105489, 86817, 'no_lang_code', 'name', 'Bolt Threads'),
(105490, 86818, 'no_lang_code', 'name', 'leadXpro'),
(105491, 86819, 'en', 'name', 'Sungshin Women''s University'),
(105492, 86819, 'ko', 'name', 'ģ„±ģ‹ ģ—¬ģžėŒ€ķ•™źµ'),
(105493, 86820, 'en', 'name', 'Journal of Medical Insight'),
(105494, 86821, 'en', 'name', 'Solamalai College of Engineering'),
(105495, 86822, 'en', 'name', 'University of Juba'),
(105496, 86823, 'en', 'name', 'Xi''an Technological University'),
(105497, 86823, 'zh', 'name', 'č„æå®‰å·„äøšå¤§å­¦'),
(105498, 86824, 'no_lang_code', 'name', 'Artep'),
(105499, 86825, 'en', 'name', 'Straub Medical Center'),
(105500, 86826, 'en', 'name', 'Ontario Centre of Innovation'),
(105501, 86827, 'fi', 'name', 'Puolustusvoimien tutkimuslaitos'),
(105502, 86828, 'en', 'name', 'Myeloma UK'),
(105503, 86829, 'it', 'name', 'Istituto Nazionale di Riposo e Cura per Anziani'),
(105504, 86830, 'en', 'name', 'Australasian Lung Cancer Trials Group'),
(105505, 86831, 'en', 'name', 'Bureau of Standards Jamaica'),
(105506, 86832, 'es', 'name', 'Ministerio de Cultura y Deporte'),
(105507, 86833, 'en', 'name', 'Central European University - Budapest Campus'),
(105508, 86834, 'en', 'name', 'University of Makeni'),
(105509, 86835, 'en', 'name', 'Public Authority for Industry'),
(105510, 86835, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة للصناعة'),
(105511, 86836, 'en', 'name', 'AndrƩs Bello Catholic University'),
(105512, 86836, 'es', 'name', 'Universidad Católica Andrés Bello'),
(105513, 86837, 'no_lang_code', 'name', 'R.B. Toth Associates'),
(105514, 86838, 'en', 'name', 'Qatar General Organization for Standards and Metrology'),
(105515, 86838, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ų§Ł„Ł‚Ų·Ų±ŁŠŲ© Ł„Ł„Ł…ŁˆŲ§ŲµŁŲ§ŲŖ و Ų§Ł„Ł…Ł‚Ų§ŁŠŁŠŲ³'),
(105516, 86839, 'en', 'name', 'PSP Association'),
(105517, 86840, 'az', 'name', 'Tbilisi Dƶvlət Universiteti'),
(105518, 86840, 'en', 'name', 'Tbilisi State University'),
(105519, 86840, 'ru', 'name', 'Тбилисский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105520, 86840, 'hy', 'name', 'Ō¹Õ¢Õ«Õ¬Õ«Õ½Õ«Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(105521, 86840, 'ka', 'name', 'įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(105522, 86841, 'no_lang_code', 'name', 'Scienion (Germany)'),
(105523, 86842, 'de', 'name', 'Hochschule der Polizei des Landes Brandenburg'),
(105524, 86843, 'es', 'name', 'Ministerio de Medio Ambiente y Recursos Naturales'),
(105525, 86844, 'en', 'name', 'International Society of Bipolar Disorders'),
(105526, 86845, 'fi', 'name', 'Euroopan kemikaalivirasto'),
(105527, 86845, 'en', 'name', 'European Chemicals Agency'),
(105528, 86846, 'en', 'name', 'Good Hope Hospital'),
(105529, 86847, 'pt', 'name', 'Instituto Dom Luiz'),
(105530, 86848, 'en', 'name', 'United States Army Research Office'),
(105531, 86849, 'en', 'name', 'Can Tho University'),
(105532, 86849, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Cįŗ§n ThĘ”'),
(105533, 86850, 'en', 'name', 'Duke-NUS Medical School'),
(105534, 86851, 'en', 'name', 'A-T Society'),
(105535, 86852, 'no_lang_code', 'name', 'Accelero Biostructures'),
(105536, 86853, 'en', 'name', 'Iran''s National Elites Foundation'),
(105537, 86853, 'fa', 'name', 'ŲØŁ†ŁŠŲ§ŲÆ Ł…Ł„ŁŠ Ł†Ų®ŲØŚÆŲ§Ł†ā€Ž'),
(105538, 86854, 'en', 'name', 'Gulf of Sidra University'),
(105539, 86854, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų®Ł„ŁŠŲ¬ السدرة'),
(105540, 86855, 'no_lang_code', 'name', 'China Railway Group (China)'),
(105541, 86855, 'zh', 'name', 'äø­åœ‹äø­éµč‚”ä»½ęœ‰é™å…¬åø'),
(105542, 86856, 'nl', 'name', 'Stenden Hogeschool'),
(105543, 86856, 'en', 'name', 'Stenden University of Applied Sciences'),
(105544, 86857, 'en', 'name', 'Institute for Citizens & Scholars'),
(105545, 86858, 'en', 'name', 'Madan Bhandari Academy of Health Sciences'),
(105546, 86859, 'en', 'name', 'Korea Institute of Planning and Evaluation for Technology in Food, Agriculture, Forestry and Fisheries'),
(105547, 86860, 'en', 'name', 'Hospitaller Order of St. John of God, Austrian Province'),
(105548, 86860, 'de', 'name', 'Ɩsterreichische Ordensprovinz des Hospitalordens des heiligen Johannes von Gott "Barmherzige Brüder"'),
(105549, 86861, 'uz', 'name', 'O''zbekiston Milliy Metrologiya Instituti'),
(105550, 86861, 'en', 'name', 'Uzbek National Institute of Metrology'),
(105551, 86861, 'ru', 'name', 'Узбекский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(105552, 86862, 'hr', 'name', 'Državni arhiv u Pazinu'),
(105553, 86862, 'en', 'name', 'State Archives in Pazin'),
(105554, 86863, 'es', 'name', 'Universidad de Ciencias MƩdicas de Pinar del Rƭo'),
(105555, 86864, 'hr', 'name', 'Državni zavod za mjeriteljstvo'),
(105556, 86864, 'en', 'name', 'State Office for Metrology'),
(105557, 86865, 'en', 'name', 'ILS – Research Institute for Regional and Urban Development'),
(105558, 86865, 'de', 'name', 'Institut für Landes- und Stadtentwicklungsforschung'),
(105559, 86866, 'no_lang_code', 'name', 'b.geos'),
(105560, 86867, 'fi', 'name', 'Maanmittauslaitos'),
(105561, 86868, 'en', 'name', 'Zhejiang Sci-Tech University'),
(105562, 86868, 'zh', 'name', 'ęµ™ę±Ÿē†å·„å¤§å­¦'),
(105563, 86869, 'en', 'name', 'Seoul Graduate School of Counseling Psychology'),
(105564, 86869, 'ko', 'name', 'ģ„œģšøģƒė‹“ģ‹¬ė¦¬ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(105565, 86870, 'is', 'name', 'Landsbókasavnið'),
(105566, 86870, 'en', 'name', 'National Library of the Faroe Islands'),
(105567, 86871, 'en', 'name', 'Jiangsu Ocean University'),
(105568, 86871, 'zh', 'name', 'ę±Ÿč‹ęµ·ę“‹å¤§å­¦'),
(105569, 86872, 'en', 'name', 'Brussels School of International Studies'),
(105570, 86873, 'en', 'name', 'Breast Cancer Trials'),
(105571, 86874, 'en', 'name', 'Pediatric Epilepsy Surgery Alliance'),
(105572, 86875, 'en', 'name', 'Rhode Island Foundation'),
(105573, 86876, 'en', 'name', 'Hawaii Pacific Health'),
(105574, 86877, 'no_lang_code', 'name', 'Rivian'),
(105575, 86878, 'no_lang_code', 'name', 'Anatrace'),
(105576, 86879, 'en', 'name', 'Taichung Veterans General Hospital'),
(105577, 86879, 'zh', 'name', '臺中榮民總醫院'),
(105578, 86880, 'en', 'name', 'EIFL'),
(105579, 86881, 'no_lang_code', 'name', 'Jj X-Ray'),
(105580, 86882, 'no_lang_code', 'name', 'Canadian Journal of Communication (Canada)'),
(105581, 86883, 'en', 'name', 'Muscular Dystrophy UK'),
(105582, 86884, 'hu', 'name', 'Mathias Corvinus Collegium'),
(105583, 86885, 'pt', 'name', 'Observatório Oceânico da Madeira'),
(105584, 86886, 'pt', 'name', 'Instituto de Tecnologias Interativas'),
(105585, 86886, 'en', 'name', 'Interactive Technologies Institute'),
(105586, 86887, 'nl', 'name', 'NHL Hogeschool'),
(105587, 86887, 'en', 'name', 'NHL University of Applied Sciences'),
(105588, 86888, 'no_lang_code', 'name', 'Cocrystal Pharma'),
(105589, 86889, 'is', 'name', 'Rannsóknamiưstƶư ƍslands'),
(105590, 86889, 'en', 'name', 'The Icelandic Centre for Research'),
(105591, 86890, 'en', 'name', 'Georgian National Agency for Standards and Metrology'),
(105592, 86890, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ¢įƒįƒœįƒ“įƒįƒ įƒ¢įƒ”įƒ‘įƒ˜ įƒ“įƒ įƒ›įƒ”įƒ¢įƒ įƒįƒšįƒįƒ’įƒ˜įƒ'),
(105593, 86891, 'en', 'name', 'Eastern Shore Community College'),
(105594, 86892, 'en', 'name', 'Guizhou Provincial Science and Technology Department'),
(105595, 86893, 'no_lang_code', 'name', 'Process NMR Associates'),
(105596, 86894, 'en', 'name', 'Cancer Council Australia'),
(105597, 86895, 'en', 'name', 'Finnish Defence Forces'),
(105598, 86896, 'en', 'name', 'Al-Ahgaff University'),
(105599, 86896, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأحقاف'),
(105600, 86897, 'en', 'name', 'Wessex Medical Research'),
(105601, 86898, 'es', 'name', 'Ministerio de Educación Cultura y Deporte'),
(105602, 86898, 'en', 'name', 'Ministry of Education, Culture and Sport'),
(105603, 86899, 'en', 'name', 'Slovenian Academy of Sciences and Arts'),
(105604, 86899, 'sl', 'name', 'Slovenska Akademija Znanosti in Umetnosti'),
(105605, 86900, 'en', 'name', 'Department of Tourism, Culture, Arts and Recreation'),
(105606, 86901, 'en', 'name', 'Canadian Journal of Community Mental Health'),
(105607, 86902, 'es', 'name', 'Ministerio de Educación y Formación Profesional'),
(105608, 86903, 'en', 'name', 'Department of Education of Guangdong Province'),
(105609, 86904, 'en', 'name', 'Pancreatic Cancer Action'),
(105610, 86905, 'no_lang_code', 'name', 'Sanofi (United States)'),
(105611, 86906, 'en', 'name', 'Armagh Observatory & Planetarium'),
(105612, 86907, 'en', 'name', 'Stenden University Qatar'),
(105613, 86908, 'en', 'name', 'Journal of Bone & Joint Surgery'),
(105614, 86909, 'en', 'name', 'Natural Resources Canada'),
(105615, 86910, 'en', 'name', 'Pancreatic Cancer Research Fund'),
(105616, 86911, 'en', 'name', 'Foundation for Liver Research'),
(105617, 86912, 'en', 'name', 'Abubakar Tafawa Balewa University'),
(105618, 86913, 'en', 'name', 'Hope Africa University'),
(105619, 86913, 'fr', 'name', 'UniversitƩ Espoir d''Afrique'),
(105620, 86914, 'en', 'name', 'Thoracic Oncology Group of Australasia'),
(105621, 86915, 'en', 'name', 'Advanced Electromagnetics Journal'),
(105622, 86916, 'en', 'name', 'Al Rayyan International University College'),
(105623, 86917, 'en', 'name', 'Beckman Research Institute'),
(105624, 86918, 'en', 'name', 'British Occupational Hygiene Society'),
(105625, 86919, 'nl', 'name', 'Ministerie van Economische Zaken en Klimaat'),
(105626, 86919, 'en', 'name', 'Ministry of Economic Affairs and Climate Policy'),
(105627, 86920, 'en', 'name', 'Scott Christian University'),
(105628, 86921, 'ro', 'name', 'Institutul Național de Metrologie'),
(105629, 86921, 'en', 'name', 'National Metrology Institute of the Republic of Moldova'),
(105630, 86922, 'en', 'name', 'Group Health Cooperative'),
(105631, 86923, 'en', 'name', 'China Medical University'),
(105632, 86923, 'zh', 'name', 'äø­åœ‹é†«č—„å¤§å­ø'),
(105633, 86924, 'en', 'name', 'University of Guam'),
(105634, 86925, 'no_lang_code', 'name', 'Synthekine'),
(105635, 86926, 'es', 'name', 'Hospital ClĆ­nico San Carlos'),
(105636, 86927, 'en', 'name', 'Action for AT'),
(105637, 86928, 'en', 'name', 'University of Toledo'),
(105638, 86928, 'fr', 'name', 'UniversitƩ de toledo'),
(105639, 86929, 'en', 'name', 'Tianjin Municipal Education Commission'),
(105640, 86930, 'fr', 'name', 'Ɖcole Nationale d''Administration'),
(105641, 86931, 'no_lang_code', 'name', 'UCB Pharma (United States)'),
(105642, 86932, 'en', 'name', 'National Institute of Technology, Kochi College'),
(105643, 86932, 'ja', 'name', 'é«˜ēŸ„å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(105644, 86933, 'en', 'name', 'Wings for Life'),
(105645, 86934, 'no_lang_code', 'name', 'Confluent Medical Technologies'),
(105646, 86935, 'en', 'name', 'Swiss Light Source'),
(105647, 86936, 'es', 'name', 'Fundación IE'),
(105648, 86936, 'en', 'name', 'IE Foundation'),
(105649, 86937, 'en', 'name', 'Canadian Journal of Administrative Sciences'),
(105650, 86937, 'fr', 'name', 'Revue Canadienne des Sciences de l''Administration'),
(105651, 86938, 'en', 'name', 'Palm Beach Museum of Natural History'),
(105652, 86939, 'en', 'name', 'Chernihiv Polytechnic National University'),
(105653, 86939, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š§ŠµŃ€Š½Ń–Š³Ń–Š²ŃŃŒŠŗŠ° політехніка»'),
(105654, 86940, 'en', 'name', 'Malta Competition and Consumer Affairs Authority'),
(105655, 86941, 'it', 'name', 'Instituto Nazionale Tumori Regina Elena'),
(105656, 86942, 'en', 'name', 'NourDanesh Institute of Higher Education'),
(105657, 86942, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ł†ŁˆŲ±ŲÆŲ§Ł†Ų“'),
(105658, 86943, 'da', 'name', 'MedicinrƄdet'),
(105659, 86944, 'en', 'name', 'Ministry of Forests'),
(105660, 86945, 'en', 'name', 'Victorian Health Promotion Foundation'),
(105661, 86946, 'en', 'name', 'Virginia Museum of History & Culture'),
(105662, 86947, 'en', 'name', 'Jilin Province Development and Reform Commission'),
(105663, 86948, 'no_lang_code', 'name', 'Quantumscape'),
(105664, 86949, 'en', 'name', 'Chinese Journal of Integrated Traditional and Western Medicine'),
(105665, 86950, 'en', 'name', 'Hungarian Scientific Research Fund'),
(105666, 86951, 'en', 'name', 'National Institute of Clean and Low-Carbon Energy'),
(105667, 86951, 'zh', 'name', 'åŒ—äŗ¬ä½Žē¢³ęø…ę“čƒ½ęŗē ”ē©¶ę‰€'),
(105668, 86952, 'en', 'name', 'Lady Tata Memorial Trust'),
(105669, 86953, 'no_lang_code', 'name', 'Lumenari'),
(105670, 86954, 'en', 'name', 'Autistica'),
(105671, 86955, 'en', 'name', 'Research & Development Corporation'),
(105672, 86956, 'en', 'name', 'Institute for Materials Research, Tohoku University'),
(105673, 86956, 'ja', 'name', 'ę±åŒ—å¤§å­¦é‡‘å±žęę–™ē ”ē©¶ę‰€'),
(105674, 86957, 'no_lang_code', 'name', 'Advanced hCMOS Systems'),
(105675, 86958, 'en', 'name', 'Canadian Literacy and Learning Network'),
(105676, 86959, 'en', 'name', 'University of Sistan and Baluchestan'),
(105677, 86959, 'fa', 'name', 'دانؓگاه Ų³ŪŒŲ³ŲŖŲ§Ł† و ŲØŁ„ŁˆŚ†Ų³ŲŖŲ§Ł†'),
(105678, 86960, 'en', 'name', 'Autonomous University of YucatƔn'),
(105679, 86960, 'es', 'name', 'Universidad Autónoma de YucatÔn'),
(105680, 86961, 'no_lang_code', 'name', 'NICE America Research'),
(105681, 86962, 'en', 'name', 'ILS Research'),
(105682, 86963, 'en', 'name', 'SingHealth Duke-NUS Academic Medical Centre'),
(105683, 86964, 'en', 'name', 'MQ: Transforming Mental Health'),
(105684, 86965, 'en', 'name', 'Canmet Mining'),
(105685, 86966, 'en', 'name', 'Australian Disorders of the Corpus Callosum'),
(105686, 86967, 'en', 'name', 'Foundation For Fundamental Research On Matter'),
(105687, 86968, 'no_lang_code', 'name', 'Interx'),
(105688, 86969, 'en', 'name', 'Bibliosan'),
(105689, 86970, 'en', 'name', 'Niemann Pick Research Foundation'),
(105690, 86971, 'it', 'name', 'Istituto di Ricovero e Cura a Carattere Scientifico San Raffaele'),
(105691, 86972, 'en', 'name', 'Tianjin Foreign Studies University'),
(105692, 86972, 'zh', 'name', '天擄外国语大学'),
(105693, 86973, 'es', 'name', 'Fundación Salud, Ciencia y Tecnologia'),
(105694, 86974, 'en', 'name', 'Dambi Dollo University'),
(105695, 86974, 'om', 'name', 'Yuunivasitii Dambii Dolloo'),
(105696, 86974, 'am', 'name', 'į‹°įˆį‰¢ į‹¶įˆŽ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(105697, 86975, 'no_lang_code', 'name', 'Molecular Dimensions'),
(105698, 86976, 'no_lang_code', 'name', 'Bioron'),
(105699, 86977, 'en', 'name', 'Child Neurology Society'),
(105700, 86978, 'en', 'name', 'American Studies Association'),
(105701, 86979, 'no_lang_code', 'name', 'Quantum Detectors'),
(105702, 86980, 'es', 'name', 'Hospital Universitario 12 De Octubre'),
(105703, 86981, 'no_lang_code', 'name', 'Scientific Analysis Of Fine Art'),
(105704, 86982, 'sr', 'name', 'Institut za KriminoloŔka i SocioloŔka Istraživanja'),
(105705, 86982, 'en', 'name', 'Institute of Criminological & Sociological Research'),
(105706, 86983, 'fr', 'name', 'Agence de la transition Ʃcologique'),
(105707, 86983, 'en', 'name', 'French Agency for Ecological Transition'),
(105708, 86984, 'es', 'name', 'Universidad EAFIT'),
(105709, 86985, 'en', 'name', 'Pohang Accelerator Laboratory'),
(105710, 86985, 'ko', 'name', 'ķ¬ķ•­ź°€ģ†źø°ģ—°źµ¬ģ†Œė”œź³ '),
(105711, 86986, 'en', 'name', 'Heartlands Hospital'),
(105712, 86987, 'es', 'name', 'Universidad de Wisconsin–Milwaukee'),
(105713, 86987, 'en', 'name', 'University of Wisconsin–Milwaukee'),
(105714, 86987, 'fr', 'name', 'UniversitĆ© du Wisconsin–Milwaukee'),
(105715, 86988, 'it', 'name', 'Regione Lombardia'),
(105716, 86989, 'no_lang_code', 'name', 'Sinnar University'),
(105717, 86989, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سنار'),
(105718, 86990, 'en', 'name', 'Ansgar University College'),
(105719, 86990, 'no', 'name', 'Ansgar hĆøyskole'),
(105720, 86991, 'en', 'name', 'Flanders Hydraulics'),
(105721, 86991, 'nl', 'name', 'Waterbouwkundig Laboratorium'),
(105722, 86992, 'es', 'name', 'Universidad Internacional Iberoamericana'),
(105723, 86993, 'no_lang_code', 'name', 'QB3'),
(105724, 86994, 'en', 'name', 'Lord Buddha Education Foundation'),
(105725, 86995, 'en', 'name', 'American Lebanese Syrian Associated Charities'),
(105726, 86996, 'no_lang_code', 'name', 'Ningxia Road and Bridge Construction Company'),
(105727, 86996, 'zh', 'name', 'å®å¤č·Æę”„å»ŗč®¾ęœ‰é™å…¬åø'),
(105728, 86997, 'en', 'name', 'Al-Balqa Applied University'),
(105729, 86997, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© البلقاؔ Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(105730, 86998, 'no_lang_code', 'name', 'Amgen (United States)'),
(105731, 86999, 'es', 'name', 'Fundación Universitaria Internacional de Colombia'),
(105732, 87000, 'da', 'name', '15. Juni Fonden'),
(105733, 87001, 'en', 'name', 'A Breath of Hope Lung Foundation'),
(105734, 87002, 'et', 'name', 'Eesti metroloogia keskasutus'),
(105735, 87002, 'no_lang_code', 'name', 'Metrosert'),
(105736, 87003, 'en', 'name', 'National Computational Infrastructure'),
(105737, 87004, 'en', 'name', 'National Sugar Institute'),
(105738, 87005, 'en', 'name', 'Khmelnytskyi Humanitarian-Pedagogical Academy'),
(105739, 87005, 'uk', 'name', 'Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ° Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½Š¾-пеГагогічна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(105740, 87006, 'en', 'name', 'Beijing Municipal Ecology and Environment Bureau'),
(105741, 87006, 'zh', 'name', 'åŒ—äŗ¬åø‚ē”Ÿę€ēŽÆå¢ƒå±€'),
(105742, 87007, 'pl', 'name', 'Narodowa Agencja Wymiany Akademickiej'),
(105743, 87008, 'en', 'name', 'International Commission on Missing Persons'),
(105744, 87009, 'es', 'name', 'Instituto de Investigaciones Psicológicas'),
(105745, 87010, 'es', 'name', 'Instituto Ecuatoriano de Normalización'),
(105746, 87011, 'fr', 'name', 'Organisation PanamƩricaine de la SantƩ'),
(105747, 87011, 'es', 'name', 'Organización Panamericana de la Salud'),
(105748, 87011, 'en', 'name', 'World Health Organization Regional Office for the Americas'),
(105749, 87012, 'en', 'name', 'Justice for Magdalenes Research'),
(105750, 87013, 'en', 'name', 'Ministry of Education'),
(105751, 87014, 'en', 'name', 'St. Jude Children''s Research Hospital'),
(105752, 87015, 'es', 'name', 'Universidad Internacional Iberoamericana'),
(105753, 87016, 'es', 'name', 'Consejo Nacional de Innovación, Ciencia y Tecnología'),
(105754, 87017, 'en', 'name', 'Pittsburgh Foundation'),
(105755, 87018, 'en', 'name', 'Tyndale House'),
(105756, 87019, 'no_lang_code', 'name', 'Poltava State Agrarian University'),
(105757, 87019, 'uk', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Гержавний аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105758, 87020, 'es', 'name', 'Organización Panamericana de la Salud (Cuba)'),
(105759, 87020, 'en', 'name', 'Pan American Health Organization (Cuba)'),
(105760, 87021, 'fr', 'name', 'Centre de droit international de Nanterre'),
(105761, 87022, 'de', 'name', 'Vector Stiftung'),
(105762, 87023, 'pt', 'name', 'Fatec Jahu'),
(105763, 87024, 'no_lang_code', 'name', 'Protagonist Therapeutics (Australia)'),
(105764, 87025, 'en', 'name', 'Erasmus+'),
(105765, 87026, 'en', 'name', 'Hellenic Foundation for Research and Innovation'),
(105766, 87026, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪˆĻĪµĻ…Ī½Ī±Ļ‚ & ĪšĪ±Ī¹Ī½ĪæĻ„ĪæĪ¼ĪÆĪ±Ļ‚'),
(105767, 87027, 'en', 'name', 'MAR Health Park'),
(105768, 87027, 'es', 'name', 'Parc de Salut'),
(105769, 87028, 'es', 'name', 'Fundación Cellex'),
(105770, 87029, 'en', 'name', 'Korea Institute of Marine Science and Technology Promotion'),
(105771, 87029, 'ko', 'name', 'ķ•“ģ–‘ģˆ˜ģ‚°ź³¼ķ•™źø°ģˆ ģ§„ķ„ģ›'),
(105772, 87030, 'fr', 'name', 'Centre de recherches Ʃducation et formation'),
(105773, 87031, 'en', 'name', 'National Research Foundation'),
(105774, 87031, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(105775, 87032, 'en', 'name', 'National Chi Nan University'),
(105776, 87032, 'zh', 'name', 'åœ‹ē«‹ęšØå—åœ‹éš›å¤§å­ø'),
(105777, 87033, 'en', 'name', 'European Association for the Study of the Liver'),
(105778, 87034, 'en', 'name', 'Wyoming Department of Transportation'),
(105779, 87035, 'en', 'name', 'Zambia Metrology Agency'),
(105780, 87036, 'fr', 'name', 'Centre de Recherches Pluridisciplinaires Multilingues'),
(105781, 87037, 'sv', 'name', 'Stiftelsen fƶr ƅbo Akademi'),
(105782, 87038, 'es', 'name', 'Instituto de MatemƔtica de Bahƭa Blanca'),
(105783, 87039, 'en', 'name', 'Australian Institute of Music'),
(105784, 87040, 'en', 'name', 'Department of Human Resources and Social Security of Jiangsu Province'),
(105785, 87040, 'zh', 'name', 'ę±Ÿč‹ēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(105786, 87041, 'en', 'name', 'Allen Whitehill Clowes Charitable Foundation'),
(105787, 87042, 'en', 'name', 'University of the Philippines Manila'),
(105788, 87043, 'en', 'name', 'Amran University'),
(105789, 87043, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عمران'),
(105790, 87044, 'en', 'name', 'Science Hub'),
(105791, 87044, 'hi', 'name', 'ą¤øą¤¾ą¤‡ą¤Øą„ą¤ø हव'),
(105792, 87045, 'da', 'name', 'Beckett-Fonden'),
(105793, 87046, 'no_lang_code', 'name', 'Nur-Mubarak University'),
(105794, 87046, 'kk', 'name', 'ŠŅ±Ń€-ŠœŅÆŠ±Š°Ń€Š°Šŗ Египет ислам мәГениеті ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(105795, 87047, 'en', 'name', 'Community Welfare Society Hospital'),
(105796, 87048, 'en', 'name', 'Ankara 29 Mayis State Hospital'),
(105797, 87048, 'tr', 'name', 'Ankara 29 Mayıs Devlet Hastanesi'),
(105798, 87049, 'no_lang_code', 'name', 'Amgen (China)'),
(105799, 87050, 'en', 'name', 'ICT University'),
(105800, 87051, 'en', 'name', 'Aljanad University for Science and Technology'),
(105801, 87051, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الجند Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(105802, 87052, 'it', 'name', 'Regione Toscana'),
(105803, 87053, 'en', 'name', 'University Hospital Aachen'),
(105804, 87053, 'de', 'name', 'UniversitƤtsklinikum Aachen'),
(105805, 87054, 'fr', 'name', 'Centre de Recherches Anglophones'),
(105806, 87055, 'en', 'name', 'Hellenic Complex Systems Laboratory'),
(105807, 87055, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Ī•ĻĪ³Ī±ĻƒĻ„Ī®ĻĪ¹Īæ Ī£ĻĪ¼Ļ€Ī»ĪæĪŗĻ‰Ī½ Ī£Ļ…ĻƒĻ„Ī·Ī¼Ī¬Ļ„Ļ‰Ī½'),
(105808, 87056, 'en', 'name', 'Charles E. Kaufman Foundation'),
(105809, 87057, 'en', 'name', 'Department of Chemistry Malaysia'),
(105810, 87057, 'ms', 'name', 'Jabatan Kimia Malaysia'),
(105811, 87058, 'es', 'name', 'Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona'),
(105812, 87059, 'en', 'name', 'Federal Authority for Nuclear Regulation'),
(105813, 87059, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų§ŲŖŲ­Ų§ŲÆŁŠŲ© للرقابة Ų§Ł„Ł†ŁˆŁˆŁŠŲ©'),
(105814, 87060, 'en', 'name', 'Judith Jane Mason and Harold Stannett Williams Memorial Foundation'),
(105815, 87061, 'en', 'name', 'International Mammalian Genome Society'),
(105816, 87062, 'en', 'name', 'Manash Kozybayev North Kazakhstan University'),
(105817, 87062, 'kk', 'name', 'М.ŅšŠ¾Š·Ń‹Š±Š°ŠµŠ² атынГағы Долтүстік ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(105818, 87062, 'ru', 'name', 'Деверо-ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М.ŠšŠ¾Š·Ń‹Š±Š°ŠµŠ²Š°'),
(105819, 87063, 'fr', 'name', 'Clinique, psychanalyse, dƩveloppement'),
(105820, 87064, 'en', 'name', 'Robert E. Webber Institute for Worship Studies'),
(105821, 87065, 'no_lang_code', 'name', 'Fiat Lux'),
(105822, 87066, 'en', 'name', 'Asia Pacific University of Technology & Innovation'),
(105823, 87066, 'ms', 'name', 'Universiti Teknologi dan Inovasi Asia Pasifik'),
(105824, 87067, 'no_lang_code', 'name', 'Protagonist Therapeutics (United States)'),
(105825, 87068, 'pt', 'name', 'Universidade Internacional do Cuanza'),
(105826, 87069, 'pt', 'name', 'Organização Pan-Americana da Saúde (Brazil)'),
(105827, 87069, 'en', 'name', 'Pan American Health Organization (Brasil)'),
(105828, 87070, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(105829, 87070, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(105830, 87071, 'tr', 'name', 'T.C. Cumhurbaşkanlığı Külliyesi'),
(105831, 87072, 'en', 'name', 'Institute for Safety Problems of Nuclear Power Plants'),
(105832, 87072, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ проблем безпеки атомних електростанцій'),
(105833, 87073, 'no_lang_code', 'name', 'Kvaerner (Finland)'),
(105834, 87074, 'en', 'name', 'Atal Bihari Vajpayee Indian Institute of Information Technology and Management'),
(105835, 87074, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤—ą„ą¤µą¤¾ą¤²ą¤æą¤Æą¤°'),
(105836, 87074, 'ne', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾-ą¤Ŗą„ą¤°ą¤µą¤æą¤§ą¤æ ą¤ą¤µą¤‚ ą¤µą„ą¤Æą¤µą¤øą„ą¤„ą¤¾ą¤Ŗą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø (ABV)'),
(105837, 87075, 'id', 'name', 'Universitas Budi Luhur'),
(105838, 87076, 'en', 'name', 'Clean Aviation'),
(105839, 87077, 'en', 'name', 'Eliette and Herbert von Karajan Institute'),
(105840, 87078, 'sl', 'name', 'Glasbenonarodopisni inŔtitut'),
(105841, 87078, 'en', 'name', 'Institute of Ethnomusicology'),
(105842, 87079, 'en', 'name', 'Institute of Anthropological and Spatial Studies'),
(105843, 87079, 'sl', 'name', 'InŔtitut za antropoloŔke in prostorske Ŕtudije'),
(105844, 87080, 'sl', 'name', 'Filozofski inŔtitut'),
(105845, 87080, 'en', 'name', 'Institute of Philosophy'),
(105846, 87081, 'fi', 'name', 'Norlannin yliopistollinen sairaala'),
(105847, 87081, 'sv', 'name', 'Norrlands universitetssjukhus'),
(105848, 87081, 'en', 'name', 'University Hospital of UmeƄ'),
(105849, 87082, 'en', 'name', 'Institute of High Performance Computing'),
(105850, 87083, 'en', 'name', 'Institute of Slovenian Literature and Literary Studies'),
(105851, 87083, 'sl', 'name', 'InŔtitut za slovensko literaturo in literarne vede'),
(105852, 87084, 'en', 'name', 'El Mastaba Center for Egyptian Folk Music'),
(105853, 87085, 'de', 'name', 'Deutsches Bergbau-Museum Bochum'),
(105854, 87086, 'en', 'name', 'A.N. Bukeikhan Kazakh Research Institute of Forestry and Agroforestry'),
(105855, 87086, 'kk', 'name', 'Ә.Š. Бөкейхан атынГағы ŅšŠ°Š·Š°Ņ› орман ŃˆŠ°Ń€ŃƒŠ°ŃˆŃ‹Š»Ń‹Ņ“Ń‹ және Š°Š³Ń€Š¾Š¾Ń€Š¼Š°Š½Š¼ŠµŠ»ŠøŠ¾Ń€Š°Ń†ŠøŃ ғылыми-Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(105856, 87087, 'no_lang_code', 'name', 'SKF (Sweden)'),
(105857, 87087, 'sv', 'name', 'Svenska Kullagerfabriken'),
(105858, 87088, 'en', 'name', 'Istanbul Şehir University'),
(105859, 87088, 'tr', 'name', 'İstanbul Şehir Üniversitesi'),
(105860, 87089, 'en', 'name', 'Netherlands Research School for Literary Studies'),
(105861, 87090, 'en', 'name', 'Ministry of Justice'),
(105862, 87091, 'en', 'name', 'HM Prison and Probation Service'),
(105863, 87092, 'en', 'name', 'Westerdijk Fungal Biodiversity Institute'),
(105864, 87093, 'en', 'name', 'Uniting Against Lung Cancer'),
(105865, 87094, 'en', 'name', 'Astronomical Observatory of Padova'),
(105866, 87094, 'it', 'name', 'Osservatorio Astronomico di Padova'),
(105867, 87095, 'en', 'name', 'Turkish Atomic Energy Authority'),
(105868, 87095, 'tr', 'name', 'Türkiye Atom Enerjisi Kurumu'),
(105869, 87096, 'en', 'name', 'Indonesian Bakti University of Banyuwangi'),
(105870, 87096, 'id', 'name', 'Universitas Bakti Indonesia'),
(105871, 87097, 'nl', 'name', 'De Bascule'),
(105872, 87098, 'es', 'name', 'Universidad Católica Nuestra Señora de la Asunción'),
(105873, 87099, 'en', 'name', 'Iran University of Science and Technology'),
(105874, 87099, 'fa', 'name', 'دانؓگاه علم و صنعت Ų§ŪŒŲ±Ų§Ł†'),
(105875, 87100, 'en', 'name', 'Institute of Slovenian Ethnology'),
(105876, 87100, 'sl', 'name', 'InŔtitut za slovensko narodopisje'),
(105877, 87101, 'no_lang_code', 'name', 'Rovedar'),
(105878, 87102, 'en', 'name', 'Cork University Hospital'),
(105879, 87102, 'ga', 'name', 'OspidƩal Ollscoil Chorcaƭ'),
(105880, 87103, 'tr', 'name', 'Hava Harp Okulu'),
(105881, 87103, 'en', 'name', 'Turkish Air Force Academy'),
(105882, 87104, 'en', 'name', 'Padjadjaran University'),
(105883, 87104, 'id', 'name', 'Universitas Padjadjaran'),
(105884, 87105, 'en', 'name', 'European University of Tirana'),
(105885, 87105, 'sq', 'name', 'Universiteti Europian i Tiranƫs'),
(105886, 87106, 'en', 'name', 'Gaston Memorial Hospital'),
(105887, 87107, 'en', 'name', 'City of Liverpool College'),
(105888, 87108, 'en', 'name', 'South Carolina Department of Alcohol and Other Drug Abuse Services'),
(105889, 87109, 'sl', 'name', 'Družbenomedicinski inŔtitut'),
(105890, 87109, 'en', 'name', 'Sociomedical Institute'),
(105891, 87110, 'en', 'name', 'Wuhan Municipal Health Commission'),
(105892, 87110, 'zh', 'name', 'ę­¦ę±‰åø‚å«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(105893, 87111, 'en', 'name', 'Gatot Soebroto Army Hospital'),
(105894, 87111, 'id', 'name', 'Rumah Sakit Pusat Angkatan Darat Gatot Soebroto'),
(105895, 87112, 'en', 'name', 'NHTI - Concord''s Community College'),
(105896, 87113, 'en', 'name', 'Results for Development Institute'),
(105897, 87114, 'hr', 'name', 'Naklada Slap'),
(105898, 87115, 'en', 'name', 'Hunan First Normal University'),
(105899, 87115, 'zh', 'name', 'ę¹–å—ē¬¬äø€åøˆčŒƒå­¦é™¢'),
(105900, 87116, 'ro', 'name', 'Universitatea din Craiova'),
(105901, 87116, 'en', 'name', 'University of Craiova'),
(105902, 87117, 'en', 'name', 'PolicyWise for Children & Families'),
(105903, 87118, 'en', 'name', 'University College Hospital Macmillan Cancer Centre'),
(105904, 87119, 'no_lang_code', 'name', 'Kvaerner (United Kingdom)'),
(105905, 87120, 'en', 'name', 'Alzheimer Europe'),
(105906, 87121, 'en', 'name', 'Shushrusha Citizens'' Co-operative Hospital'),
(105907, 87122, 'en', 'name', 'Catholic University of West Africa'),
(105908, 87122, 'fr', 'name', 'UniversitƩ Catholique de l''Afrique de l''Ouest'),
(105909, 87123, 'fr', 'name', 'BibliothĆØque huntington'),
(105910, 87123, 'en', 'name', 'The Huntington Library, Art Museum, and Botanical Gardens'),
(105911, 87124, 'en', 'name', 'Satya Wacana Christian University'),
(105912, 87124, 'id', 'name', 'Universitas Kristen Satya Wacana'),
(105913, 87125, 'en', 'name', 'RRF Foundation for Aging'),
(105914, 87126, 'pl', 'name', 'Uniwersytet WSB Merito Poznań'),
(105915, 87126, 'en', 'name', 'WSB Merito University in Poznan'),
(105916, 87127, 'fr', 'name', 'HÓpital universitaire de Bâle'),
(105917, 87127, 'en', 'name', 'University Hospital of Basel'),
(105918, 87127, 'de', 'name', 'UniversitƤtsspital Basel'),
(105919, 87128, 'ms', 'name', 'Zoo Negara'),
(105920, 87129, 'en', 'name', 'Institute of the Pacific United'),
(105921, 87130, 'tr', 'name', 'Deniz Harp Okulu'),
(105922, 87130, 'en', 'name', 'Naval Academy'),
(105923, 87131, 'en', 'name', 'Guangzhou Liwan District Traditional Chinese Medicine Hospital'),
(105924, 87132, 'de', 'name', 'Generaldirektion Kulturelles Erbe Rheinland-Pfalz'),
(105925, 87133, 'en', 'name', 'Institute of Musicology'),
(105926, 87133, 'sl', 'name', 'MuzikoloŔki inŔtitut'),
(105927, 87134, 'de', 'name', 'Deutsches ArchƤologisches Institut, Zentrale'),
(105928, 87134, 'en', 'name', 'German Archaeological Institute, Head Office'),
(105929, 87135, 'no_lang_code', 'name', 'Institut Mihajlo Pupin'),
(105930, 87135, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŃ…Š°Ń˜Š»Š¾ Пупин'),
(105931, 87136, 'en', 'name', 'Neuroblastoma UK'),
(105932, 87137, 'en', 'name', 'Shore Memorial Hospital'),
(105933, 87138, 'en', 'name', 'Daugavpils University'),
(105934, 87138, 'lv', 'name', 'Daugavpils Universitāte'),
(105935, 87138, 'lt', 'name', 'Daugpilio universitetas'),
(105936, 87138, 'ru', 'name', 'Š”Š°ŃƒŠ³Š°Š²ŠæŠøŠ»ŃŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105937, 87139, 'et', 'name', 'Eesti Kirjandusmuuseum'),
(105938, 87139, 'en', 'name', 'Estonian Literary Museum'),
(105939, 87140, 'fi', 'name', 'Koulutuskeskus Salpaus'),
(105940, 87140, 'en', 'name', 'Salpaus Further Education'),
(105941, 87141, 'en', 'name', 'Hamilton Psychiatric Hospital'),
(105942, 87142, 'en', 'name', 'Hokkaido University of Education'),
(105943, 87142, 'ja', 'name', 'åŒ—ęµ·é“ę•™č‚²å¤§å­¦'),
(105944, 87143, 'en', 'name', 'Institute of Bioengineering and Nanotechnology'),
(105945, 87144, 'sl', 'name', 'InŔtitut za raziskovanje krasa'),
(105946, 87144, 'en', 'name', 'Karst Research Institute'),
(105947, 87145, 'en', 'name', 'Zagreb School of Economics and Management'),
(105948, 87145, 'hr', 'name', 'Zagrebačka Ŕkola ekonomije i managementa'),
(105949, 87146, 'no_lang_code', 'name', 'Osakakita Teishin Hospital'),
(105950, 87146, 'ja', 'name', 'å¤§é˜ŖåŒ—é€“äæ”ē—…é™¢'),
(105951, 87147, 'id', 'name', 'Universitas Darma Agung'),
(105952, 87148, 'id', 'name', 'Universitas Brawijaya'),
(105953, 87148, 'en', 'name', 'University of Brawijaya'),
(105954, 87149, 'en', 'name', 'Fran RamovÅ” Institute of the Slovenian Language'),
(105955, 87149, 'sl', 'name', 'InŔtitut za slovenski jezik Frana RamovŔa'),
(105956, 87150, 'no_lang_code', 'name', 'Ivan Rakovec Institute of Palaeontology'),
(105957, 87150, 'sl', 'name', 'PaleontoloŔki inŔtitut Ivana Rakovca'),
(105958, 87151, 'en', 'name', 'Sussex Community NHS Foundation Trust'),
(105959, 87152, 'en', 'name', 'LabourƩ College'),
(105960, 87153, 'nl', 'name', 'Maaslandziekenhuis'),
(105961, 87154, 'en', 'name', 'Infocomm Media Development Authority'),
(105962, 87154, 'ms', 'name', 'Penguasa Pembangunan Infokom Media'),
(105963, 87154, 'zh', 'name', 'č³‡čØŠé€šäæ”åŖ’é«”ē™¼å±•å±€'),
(105964, 87155, 'es', 'name', 'Instituto Tecnológico de Santo Domingo'),
(105965, 87156, 'en', 'name', 'Institute of Culture and Memory Studies'),
(105966, 87156, 'sl', 'name', 'InŔtitut za kulturne in spominske Ŕtudije'),
(105967, 87157, 'en', 'name', 'P.M.N.M. Dental College and Hospital'),
(105968, 87158, 'en', 'name', 'Ethical Consumer Research Association'),
(105969, 87159, 'ms', 'name', 'Hospital Besar Singapura'),
(105970, 87159, 'en', 'name', 'Singapore General Hospital'),
(105971, 87159, 'ta', 'name', 'ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®¤ąÆ‡ą®šą®æą®Æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(105972, 87160, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta Sligeach'),
(105973, 87160, 'en', 'name', 'Institute of Technology Sligo'),
(105974, 87161, 'nl', 'name', 'Hogeschool Utrecht'),
(105975, 87161, 'en', 'name', 'University of Applied Sciences Utrecht');
INSERT INTO `ror_settings` VALUES
(105976, 87162, 'ms', 'name', 'Kolej Universiti Tunku Abdul Rahman'),
(105977, 87162, 'en', 'name', 'Tunku Abdul Rahman University of Management and Technology'),
(105978, 87162, 'zh', 'name', '拉曼大學學院'),
(105979, 87163, 'sv', 'name', 'NaturvƄrdsverket'),
(105980, 87163, 'fi', 'name', 'Ruotsin luonnonsuojeluvirasto'),
(105981, 87163, 'en', 'name', 'Swedish Environmental Protection Agency'),
(105982, 87164, 'sv', 'name', 'Universitetssjukhuset Ɩrebro'),
(105983, 87164, 'en', 'name', 'Ɩrebro University Hospital'),
(105984, 87165, 'en', 'name', 'Technical University of Moldova'),
(105985, 87165, 'ro', 'name', 'Universitatea Tehnică a Moldovei'),
(105986, 87165, 'ru', 'name', 'Технический Университет ŠœŠ¾Š»Š“Š¾Š²Ń‹'),
(105987, 87166, 'en', 'name', 'One Door Mental Health'),
(105988, 87167, 'en', 'name', 'NIA IMPACT Collaboratory'),
(105989, 87168, 'no_lang_code', 'name', 'Shikoku Cancer Center'),
(105990, 87168, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å››å›½ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(105991, 87169, 'en', 'name', 'Divine Word Missionaries'),
(105992, 87169, 'la', 'name', 'Societas Verbi Divini'),
(105993, 87170, 'de', 'name', 'Comenius-Institut'),
(105994, 87171, 'en', 'name', 'Academy of Arts, Architecture and Design in Prague'),
(105995, 87171, 'cs', 'name', 'VysokĆ” Å”kola uměleckoprÅÆmyslovĆ” v Praze'),
(105996, 87172, 'en', 'name', 'Association of Universities and Colleges of Canada'),
(105997, 87172, 'fr', 'name', 'UniversitƩs Canada'),
(105998, 87173, 'en', 'name', 'Oulu University Hospital'),
(105999, 87173, 'fi', 'name', 'Oulun yliopistollinen sairaala'),
(106000, 87174, 'es', 'name', 'Universidad Peruana de Las AmƩricas'),
(106001, 87175, 'en', 'name', 'All-Russian Scientific Research Institute for the Use of Machinery and Petroleum Products in Agriculture'),
(106002, 87175, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ техники Šø Š½ŠµŃ„Ń‚ŠµŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š² в сельском Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Šµ'),
(106003, 87176, 'fr', 'name', 'Centre Hospitalier Universitaire de Bordeaux'),
(106004, 87177, 'en', 'name', 'Black Dog Institute'),
(106005, 87178, 'en', 'name', 'University of Ljubljana'),
(106006, 87178, 'sl', 'name', 'Univerza v Ljubljani'),
(106007, 87179, 'en', 'name', 'Baku State University'),
(106008, 87179, 'az', 'name', 'Bakı Dƶvlət Universiteti'),
(106009, 87179, 'ru', 'name', 'Бакинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106010, 87179, 'hy', 'name', 'Ō²Õ”Ö„Õ¾Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(106011, 87180, 'en', 'name', 'Dutch postgraduate School for Art History'),
(106012, 87181, 'en', 'name', 'Electronics Research Institute'),
(106013, 87182, 'en', 'name', 'Korea Youth Association'),
(106014, 87182, 'ko', 'name', 'ķ•œźµ­ ģ²­ģ†Œė…„ ķ˜‘ķšŒ'),
(106015, 87183, 'en', 'name', 'A Shelter for Cancer Families'),
(106016, 87184, 'en', 'name', 'Mustafa Kemal University'),
(106017, 87184, 'tr', 'name', 'Mustafa Kemal Üniversitesi'),
(106018, 87185, 'en', 'name', 'Delivery of Advanced Network Technology to Europe (United Kingdom)'),
(106019, 87186, 'cy', 'name', 'Prifysgol Cymru'),
(106020, 87186, 'en', 'name', 'University of Wales'),
(106021, 87187, 'en', 'name', 'Polytechnic University of Tirana'),
(106022, 87187, 'sq', 'name', 'Universiteti Politeknik i Tiranƫs'),
(106023, 87188, 'en', 'name', 'Volgograd State University of Architecture and Civil Engineering'),
(106024, 87188, 'ru', 'name', 'ВолгограГский Š³Š¾ŃŃƒŠ“арственный Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106025, 87189, 'en', 'name', 'Estonian National Defense College'),
(106026, 87189, 'et', 'name', 'KaitsevƤe Ɯhendatud ƕppeasutused'),
(106027, 87190, 'sl', 'name', 'InŔtitut za slovensko izseljenstvo in migracije'),
(106028, 87190, 'en', 'name', 'Slovenian Migration Institute'),
(106029, 87191, 'en', 'name', 'Partido State University'),
(106030, 87192, 'en', 'name', 'Western Fire Chiefs Association'),
(106031, 87193, 'en', 'name', 'Polish Air Force Academy'),
(106032, 87193, 'pl', 'name', 'Wyższa Szkoła Oficerska Sił Powietrznych'),
(106033, 87194, 'en', 'name', 'HM Prison Service'),
(106034, 87195, 'en', 'name', 'Carteret General Hospital'),
(106035, 87196, 'sl', 'name', 'Narodna in univerzitetna knjižnica'),
(106036, 87196, 'en', 'name', 'National and University Library of Slovenia'),
(106037, 87197, 'tr', 'name', 'İzmir Ekonomi Üniversitesi'),
(106038, 87197, 'en', 'name', 'İzmir University of Economics'),
(106039, 87197, 'az', 'name', 'İzmir İqtisadiyyat Universiteti'),
(106040, 87198, 'en', 'name', 'National Library of Malaysia'),
(106041, 87198, 'ms', 'name', 'Perpustakaan Negara Malaysia'),
(106042, 87199, 'en', 'name', 'Access'),
(106043, 87200, 'de', 'name', 'Oel-Waerme-Institut'),
(106044, 87201, 'pl', 'name', 'Ministerstwo Nauki i Szkolnictwa Wyższego'),
(106045, 87201, 'en', 'name', 'Ministry of Science and Higher Education'),
(106046, 87202, 'en', 'name', 'Stockholm County Council'),
(106047, 87202, 'sv', 'name', 'Stockholms lƤns landsting'),
(106048, 87202, 'fi', 'name', 'Tukholman lƤƤnin maakƤrƤjƤkunta'),
(106049, 87203, 'en', 'name', 'Cascadia College'),
(106050, 87204, 'it', 'name', 'Libera UniversitĆ  Internazionale degli Studi Sociali Guido Carli'),
(106051, 87205, 'en', 'name', 'Academy of Finance and Management in Białystok'),
(106052, 87205, 'pl', 'name', 'Wyższa Szkoła Finansów i Zarządzania w Białymstoku'),
(106053, 87206, 'en', 'name', 'Near East University'),
(106054, 87206, 'tr', 'name', 'Yakın Doğu Üniversitesi'),
(106055, 87207, 'lt', 'name', 'Lietuvos humanitarinių ir socialinių mokslų duomenų archyvas'),
(106056, 87207, 'en', 'name', 'Lithuanian Data Archive for Social Sciences and Humanities'),
(106057, 87208, 'it', 'name', 'L''Ospedale Coloniale di Vittorio Emanuele III'),
(106058, 87208, 'en', 'name', 'Tripoli Central Hospital'),
(106059, 87208, 'ar', 'name', 'مستؓفى طرابلس Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(106060, 87209, 'en', 'name', 'Bioinformatics Institute'),
(106061, 87210, 'en', 'name', 'Gazi University'),
(106062, 87210, 'tr', 'name', 'Gazi Üniversitesi'),
(106063, 87210, 'az', 'name', 'Qazi Universiteti'),
(106064, 87211, 'sv', 'name', 'Tammerfors tekniska universitet'),
(106065, 87211, 'en', 'name', 'Tampere University of Technology'),
(106066, 87211, 'fi', 'name', 'Tampereen teknillinen yliopisto'),
(106067, 87212, 'en', 'name', 'Ceipa University Foundation'),
(106068, 87212, 'es', 'name', 'Fundacion Universitaria Ceipa'),
(106069, 87213, 'en', 'name', 'Anhembi Morumbi University'),
(106070, 87213, 'pt', 'name', 'Universidade Anhembi Morumbi'),
(106071, 87214, 'en', 'name', 'Genome Institute of Singapore'),
(106072, 87215, 'en', 'name', 'Erasmus University College Brussels'),
(106073, 87215, 'nl', 'name', 'Erasmushogeschool Brussel'),
(106074, 87215, 'fr', 'name', 'Erasmushogeschool brussel'),
(106075, 87216, 'en', 'name', 'Diponegoro University'),
(106076, 87216, 'id', 'name', 'Universitas Diponegoro'),
(106077, 87217, 'en', 'name', 'Trans-European Research and Education Networking Association'),
(106078, 87218, 'nl', 'name', 'Rathenau Instituut'),
(106079, 87219, 'en', 'name', 'American Psychiatric Foundation'),
(106080, 87220, 'it', 'name', 'Istituto di Radioastronomia di Bologna'),
(106081, 87221, 'en', 'name', 'Engineering School of Information and Digital Technologies'),
(106082, 87221, 'fr', 'name', 'Ɖcole d''IngĆ©nieur GĆ©nĆ©raliste en Informatique et Technologies du NumĆ©rique'),
(106083, 87222, 'en', 'name', 'University Hospital of Wales'),
(106084, 87222, 'cy', 'name', 'Ysbyty Athrofaol Cymru'),
(106085, 87223, 'en', 'name', 'Ufuk University'),
(106086, 87223, 'tr', 'name', 'Ufuk Üniversitesi'),
(106087, 87224, 'en', 'name', 'Geological Survey of Austria'),
(106088, 87224, 'de', 'name', 'Geologische Bundesanstalt'),
(106089, 87225, 'en', 'name', 'University of the Assumption'),
(106090, 87226, 'de', 'name', 'Jülich Aachen Research Alliance'),
(106091, 87227, 'fi', 'name', 'Ruotsin sƤteilyturvavirasto'),
(106092, 87227, 'sv', 'name', 'StrƄlsƤkerhetsmyndigheten'),
(106093, 87227, 'en', 'name', 'Swedish Radiation Safety Authority'),
(106094, 87228, 'en', 'name', 'Media Development Authority'),
(106095, 87228, 'zh', 'name', 'åŖ’ä½“å‘å±•ē®”ē†å±€'),
(106096, 87229, 'en', 'name', 'Mevlana University'),
(106097, 87229, 'tr', 'name', 'Mevlana Üniversitesi'),
(106098, 87230, 'es', 'name', 'Museo de Arte Popular'),
(106099, 87231, 'es', 'name', 'Universidad Francisco MarroquĆ­n'),
(106100, 87232, 'en', 'name', 'Chemnitz University of Technology'),
(106101, 87232, 'de', 'name', 'Technische UniversitƤt Chemnitz'),
(106102, 87233, 'es', 'name', 'Hospital Universitario Mayor, Mederi'),
(106103, 87234, 'en', 'name', 'National Chengchi University'),
(106104, 87235, 'en', 'name', 'InfectoGnostics Research Campus Jena'),
(106105, 87236, 'en', 'name', 'Highways England'),
(106106, 87237, 'en', 'name', 'Middle East Studies Association of North America'),
(106107, 87238, 'en', 'name', 'Centre for Ecotoxicological Research'),
(106108, 87239, 'id', 'name', 'Universitas Indo Global Mandiri'),
(106109, 87240, 'no', 'name', 'Standard Norge'),
(106110, 87240, 'en', 'name', 'Standards Norway'),
(106111, 87241, 'no_lang_code', 'name', 'Vivli'),
(106112, 87242, 'no_lang_code', 'name', 'EDF Renewables'),
(106113, 87243, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(106114, 87244, 'en', 'name', 'University of Zululand'),
(106115, 87245, 'pl', 'name', 'Uniwersytet WSB Merito Gdańsk'),
(106116, 87245, 'en', 'name', 'WSB Merito University in Gdańsk'),
(106117, 87246, 'es', 'name', 'Universidad Estatal PenĆ­nsula de Santa Elena'),
(106118, 87247, 'cy', 'name', 'Prifysgol Cymru Y Drindod Dewi Sant'),
(106119, 87247, 'en', 'name', 'University of Wales Trinity Saint David'),
(106120, 87248, 'en', 'name', 'Batalha Monastery'),
(106121, 87248, 'pt', 'name', 'Mosteiro da Batalha'),
(106122, 87249, 'en', 'name', 'Minnesota Veterans Medical Research and Education Foundation'),
(106123, 87250, 'en', 'name', 'Institute of Archaeology'),
(106124, 87250, 'sl', 'name', 'InŔtitut za arheologijo'),
(106125, 87251, 'en', 'name', 'ESIC Model Hospital & PGIMSR'),
(106126, 87252, 'en', 'name', 'Radiation and Nuclear Safety Authority'),
(106127, 87252, 'sv', 'name', 'StrƄlsƤkerhetscentralen'),
(106128, 87252, 'fi', 'name', 'SƤteilyturvakeskus'),
(106129, 87253, 'en', 'name', 'University of Tuzla'),
(106130, 87253, 'bs', 'name', 'Univerzitet u Tuzli'),
(106131, 87253, 'sr', 'name', 'Универзитет у Тузли'),
(106132, 87254, 'en', 'name', 'Saint Petersburg Mining University'),
(106133, 87254, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(106134, 87255, 'es', 'name', 'Universidad Nacional del Centro del PerĆŗ'),
(106135, 87256, 'en', 'name', 'Mount Zion College of Engineering and Technology'),
(106136, 87256, 'ta', 'name', 'ą®®ą®µąÆą®£ąÆą®ŸąÆ ą®šą®æą®ÆąÆ‹ą®©ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(106137, 87257, 'pl', 'name', 'Uniwersytet WSB Merito Toruń'),
(106138, 87257, 'en', 'name', 'WSB Merito University in Torun'),
(106139, 87258, 'tr', 'name', 'Kara Harp Okulu'),
(106140, 87258, 'en', 'name', 'Turkish Military Academy'),
(106141, 87259, 'en', 'name', 'Moore College'),
(106142, 87260, 'pt', 'name', 'Fundação Serralves'),
(106143, 87260, 'en', 'name', 'Serralves'),
(106144, 87261, 'es', 'name', 'Universidad Antonio Ruiz de Montoya'),
(106145, 87262, 'en', 'name', 'Central Institution for Meteorology and Geodynamics'),
(106146, 87262, 'de', 'name', 'Zentralanstalt für Meteorologie und Geodynamik'),
(106147, 87263, 'en', 'name', 'Arab Open University'),
(106148, 87264, 'en', 'name', 'Central Metallurgical Research and Development Institute'),
(106149, 87264, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ Ų§Ł„Ł…Ų¹ŲÆŁ†ŁŠŲ© معهد Ų§Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(106150, 87265, 'en', 'name', 'Maharishi International University'),
(106151, 87266, 'en', 'name', 'Israel Ministry of Health'),
(106152, 87266, 'he', 'name', '×žÖ“×©Ö°×‚×ØÖ·×“ הַבְּר֓יאוּת'),
(106153, 87267, 'en', 'name', 'Department for Infrastructure'),
(106154, 87268, 'id', 'name', 'Universitas Muhammadiyah Cirebon'),
(106155, 87269, 'ms', 'name', 'Pusat Perubatan Universiti Kebangsaan Malaysia'),
(106156, 87269, 'en', 'name', 'University Kebangsaan Malaysia Medical Centre'),
(106157, 87270, 'no_lang_code', 'name', 'Mindgardens Neuroscience Network'),
(106158, 87271, 'no_lang_code', 'name', 'Celgene (Switzerland)'),
(106159, 87272, 'en', 'name', 'Kantipur Engineering College'),
(106160, 87273, 'en', 'name', 'Academy of Fine Arts Prague'),
(106161, 87273, 'cs', 'name', 'Akademie výtvarných uměnĆ­ v Praze'),
(106162, 87274, 'en', 'name', 'Mater Misericordiae University Hospital'),
(106163, 87274, 'ga', 'name', 'OspidƩal an Mater Misercordiae'),
(106164, 87275, 'en', 'name', 'Griggs International Academy'),
(106165, 87276, 'es', 'name', 'Hospital del Gran Chaco Fray Quebracho'),
(106166, 87277, 'en', 'name', 'His Majesty''s Treasury'),
(106167, 87278, 'en', 'name', 'Hanoi National University of Education'),
(106168, 87278, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m HĆ  Nį»™i'),
(106169, 87279, 'es', 'name', 'Instituto Tecnológico de Cancún'),
(106170, 87280, 'en', 'name', 'Vancouver Film School'),
(106171, 87281, 'no_lang_code', 'name', 'Symantec (Ireland)'),
(106172, 87282, 'vi', 'name', 'Bệnh viện Việt Nam-ThỄy Điển'),
(106173, 87282, 'en', 'name', 'Vietnam Sweden hospital'),
(106174, 87283, 'de', 'name', 'StƤdtische Kliniken Mƶnchengladbach'),
(106175, 87284, 'en', 'name', 'Heritage College and Seminary'),
(106176, 87285, 'de', 'name', 'Helios Klinikum Krefeld'),
(106177, 87286, 'no_lang_code', 'name', 'Tenri Hospital'),
(106178, 87286, 'ja', 'name', 'å¤©ē†ć‚ˆć‚ć„ē›øč«‡ę‰€ē—…é™¢'),
(106179, 87287, 'en', 'name', 'SollefteƄ Hospital'),
(106180, 87287, 'sv', 'name', 'SollefteƄ sjukhus'),
(106181, 87288, 'es', 'name', 'Universidad Autónoma de Guadalajara'),
(106182, 87289, 'ms', 'name', 'Hospital Adventist'),
(106183, 87289, 'en', 'name', 'Penang Adventist Hospital'),
(106184, 87289, 'zh', 'name', 'ę§Ÿå®‰åŒ»é™¢'),
(106185, 87290, 'es', 'name', 'Universidad de Oriente'),
(106186, 87291, 'sl', 'name', 'BioloŔki inŔtitut Jovana Hadžija'),
(106187, 87291, 'en', 'name', 'Jovan Hadži Institute of Biology'),
(106188, 87292, 'de', 'name', 'Bundesministerium für Wissenschaft, Forschung und Wirtschaft'),
(106189, 87292, 'en', 'name', 'Federal Ministry of Science, Research and Economics'),
(106190, 87293, 'en', 'name', 'Infocomm Development Authority of Singapore'),
(106191, 87294, 'en', 'name', 'RoZetta Institute'),
(106192, 87295, 'hu', 'name', 'Szegedi TudomƔnyegyetem'),
(106193, 87295, 'en', 'name', 'University of Szeged'),
(106194, 87296, 'es', 'name', 'Centro de Investigación en Materiales Avanzados'),
(106195, 87297, 'en', 'name', 'Milko Kos Historical Institute'),
(106196, 87297, 'sl', 'name', 'Zgodovinski inŔtitut Milka Kosa'),
(106197, 87298, 'en', 'name', 'Singapore Management University'),
(106198, 87298, 'ms', 'name', 'Universiti Pengurusan Singapura'),
(106199, 87299, 'en', 'name', 'Fitzsimons Army Medical Center'),
(106200, 87300, 'pl', 'name', 'Uczelnia WSB Merito Warszawa'),
(106201, 87300, 'en', 'name', 'WSB Merito University in Warsaw'),
(106202, 87301, 'en', 'name', 'France Stele Institute of Art History'),
(106203, 87301, 'sl', 'name', 'Umetnostnozgodovinski inŔtitut Franceta Steleta'),
(106204, 87302, 'en', 'name', 'University Hospital Regensburg'),
(106205, 87302, 'de', 'name', 'UniversitƤtsklinikum Regensburg'),
(106206, 87303, 'es', 'name', 'Universidad Federal de Santa Catarina'),
(106207, 87303, 'pt', 'name', 'Universidade Federal de Santa Catarina'),
(106208, 87303, 'fr', 'name', 'UniversitƩ fƩdƩrale de santa catarina'),
(106209, 87304, 'en', 'name', 'Işık University'),
(106210, 87304, 'tr', 'name', 'Işık Üniversitesi'),
(106211, 87304, 'az', 'name', 'İşıq Universiteti'),
(106212, 87305, 'pl', 'name', 'Uniwersytet WSB Merito Wrocław'),
(106213, 87305, 'en', 'name', 'WSB Merito University in Wroclaw'),
(106214, 87306, 'pl', 'name', 'Centrum Badań Kosmicznych'),
(106215, 87306, 'en', 'name', 'Space Research Centre'),
(106216, 87307, 'de', 'name', 'Deutsches Archäologisches Institut, Kommission für Alte Geschichte und Epigraphik'),
(106217, 87307, 'en', 'name', 'German Archaeological Institute, Commission for Ancient History and Epigraphy Munich'),
(106218, 87308, 'en', 'name', 'New Valley University'),
(106219, 87308, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁ‰ Ų§Ł„Ų¬ŲÆŁŠŲÆ'),
(106220, 87309, 'en', 'name', 'Anton Melik Geographical Institute'),
(106221, 87309, 'sl', 'name', 'Geografski inŔtitut Antona Melika'),
(106222, 87310, 'id', 'name', 'Institut Seni Indonesia Denpasar'),
(106223, 87311, 'ga', 'name', 'OspidƩal Ollscoile Shligigh'),
(106224, 87311, 'en', 'name', 'Sligo University Hospital'),
(106225, 87312, 'en', 'name', 'Adnan Menderes University'),
(106226, 87312, 'tr', 'name', 'Adnan Menderes Üniversitesi'),
(106227, 87313, 'hu', 'name', 'Miskolci Egyetem'),
(106228, 87313, 'en', 'name', 'University of Miskolc'),
(106229, 87314, 'de', 'name', 'Flughafen Zürich'),
(106230, 87314, 'no_lang_code', 'name', 'Zürich Airport (Switzerland)'),
(106231, 87315, 'nl', 'name', 'Nederlands Olympisch ComitƩ Nederlandse Sport Federatie'),
(106232, 87316, 'es', 'name', 'Sistema de la Universidad de Alaska'),
(106233, 87316, 'en', 'name', 'University of Alaska System'),
(106234, 87317, 'de', 'name', 'Institut für Baustoff-Forschung'),
(106235, 87318, 'no_lang_code', 'name', 'EDF Energy North America'),
(106236, 87318, 'fr', 'name', 'ƉlectricitĆ© de France'),
(106237, 87319, 'ca', 'name', 'Corporació Catalana de Mitjans Audiovisuals'),
(106238, 87320, 'de', 'name', 'Bayerisches Staatsministerium des Innern, für Bau und Verkehr'),
(106239, 87320, 'en', 'name', 'The Bavarian Ministry of the Interior, for Building and Transport'),
(106240, 87321, 'no_lang_code', 'name', 'BIOVIA'),
(106241, 87322, 'en', 'name', 'Institute of Cultural History'),
(106242, 87322, 'sl', 'name', 'InŔtitut za kulturno zgodovino'),
(106243, 87323, 'en', 'name', 'Emek Medical Center'),
(106244, 87323, 'he', 'name', '×ž×Ø×›×– רפואי העמק'),
(106245, 87324, 'en', 'name', 'Max Planck Institute for the Study of Societies'),
(106246, 87324, 'de', 'name', 'Max-Planck-Institut für Gesellschaftsforschung'),
(106247, 87325, 'de', 'name', 'Aachener Centrum für Technologietransfer in der Ophthalmologie'),
(106248, 87326, 'no_lang_code', 'name', 'Theodor Bilharz Research Institute'),
(106249, 87327, 'en', 'name', 'Office of Research Infrastructure Programs'),
(106250, 87328, 'en', 'name', 'Neanderthal Museum'),
(106251, 87329, 'fr', 'name', 'Groupement des Industries de Construction and ActivitƩs Navales'),
(106252, 87330, 'ca', 'name', 'Hospital Universitari i PolitĆØcnic La Fe'),
(106253, 87330, 'es', 'name', 'Hospital Universitario y PolitƩcnico de La Fe'),
(106254, 87331, 'de', 'name', 'Berlin-Institut für Bevölkerung und Entwicklung'),
(106255, 87332, 'no_lang_code', 'name', 'Sjƶgren’s Foundation'),
(106256, 87333, 'es', 'name', 'Instituto Mexicano del Petróleo'),
(106257, 87333, 'en', 'name', 'Mexican Institute of Petroleum'),
(106258, 87334, 'no_lang_code', 'name', 'Scientific Center of Innovative Research'),
(106259, 87335, 'en', 'name', 'Ministry of Communications and Information'),
(106260, 87335, 'zh', 'name', 'ę–°åŠ å”é€šč®ÆåŠę–°é—»éƒØ'),
(106261, 87336, 'en', 'name', 'Artha Wacana Christian University'),
(106262, 87336, 'id', 'name', 'Universitas Kristen Artha Wacana'),
(106263, 87337, 'en', 'name', 'Siberian Research Institute of Animal Husbandry'),
(106264, 87337, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ животновоГства Дибирского Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра агробиотехнологий Российской акаГемии наук'),
(106265, 87338, 'en', 'name', 'Milano University Press'),
(106266, 87339, 'en', 'name', 'Hutchison/MRC Research Centre'),
(106267, 87340, 'en', 'name', 'Luisenhospital Aachen'),
(106268, 87341, 'en', 'name', 'Kaunas University of Technology'),
(106269, 87341, 'lt', 'name', 'Kauno technologijos universitetas'),
(106270, 87341, 'pl', 'name', 'Uniwersytet Techniczny w Kownie'),
(106271, 87341, 'ru', 'name', 'Каунасский технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106272, 87342, 'en', 'name', 'Vologda State University'),
(106273, 87342, 'ru', 'name', 'ВологоГский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106274, 87343, 'es', 'name', 'Escuela Latinoamericana de Medicina'),
(106275, 87343, 'en', 'name', 'Latin American School of Medicine'),
(106276, 87344, 'no_lang_code', 'name', 'PLASMASCIENCE'),
(106277, 87345, 'es', 'name', 'Instituto Nacional de EstadĆ­stica y GeografĆ­a'),
(106278, 87345, 'en', 'name', 'National Institute of Statistics and Geography'),
(106279, 87346, 'en', 'name', 'Institute of Molecular and Cell Biology'),
(106280, 87346, 'zh', 'name', 'åˆ†å­å’Œē”Ÿē‰©ē“°čƒžå­¦ē ”ē©¶é™¢'),
(106281, 87347, 'de', 'name', 'Ernst Strüngmann Institut'),
(106282, 87347, 'en', 'name', 'Ernst Strüngmann Institute for Neuroscience'),
(106283, 87348, 'no_lang_code', 'name', 'EDF Renouvelables'),
(106284, 87349, 'sv', 'name', 'Centralkriminalpolisen'),
(106285, 87349, 'fi', 'name', 'Keskusrikospoliisi'),
(106286, 87349, 'en', 'name', 'National Bureau of Investigation'),
(106287, 87350, 'en', 'name', 'National Institute on Aging'),
(106288, 87351, 'en', 'name', 'Korea Animal Medical Center'),
(106289, 87351, 'ko', 'name', 'ź³ ė ¤ė™ė¬¼ė©”ė””ģ»¬ģ„¼ķ„°'),
(106290, 87352, 'ga', 'name', 'Institiúid Teicneolaíochta Phort LÔirge'),
(106291, 87352, 'en', 'name', 'Waterford Institute of Technology'),
(106292, 87353, 'en', 'name', 'Pillar College'),
(106293, 87354, 'pt', 'name', 'Instituto Nacional de Cardiologia'),
(106294, 87355, 'en', 'name', 'University of Batangas'),
(106295, 87355, 'tl', 'name', 'Western Philippine College'),
(106296, 87356, 'hu', 'name', 'Semmelweis Egyetem'),
(106297, 87356, 'no_lang_code', 'name', 'Semmelweis University'),
(106298, 87357, 'en', 'name', 'International Institute of Tropical Agriculture'),
(106299, 87358, 'en', 'name', 'Schƶpflin Foundation'),
(106300, 87358, 'de', 'name', 'Schƶpflin Stiftung'),
(106301, 87359, 'de', 'name', 'Helmholtz-Zentrum Hereon'),
(106302, 87360, 'en', 'name', 'New York State Foundation for Science, Technology and Innovation'),
(106303, 87361, 'en', 'name', 'Pacific Rim National Park Reserve'),
(106304, 87361, 'fr', 'name', 'RƩserve de parc national Pacific Rim'),
(106305, 87362, 'en', 'name', 'Lviv Medical University'),
(106306, 87362, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106307, 87363, 'de', 'name', 'Staatliche Hochschule für Musik und Darstellende Kunst Stuttgart'),
(106308, 87363, 'en', 'name', 'State University of Music and Performing Arts Stuttgart'),
(106309, 87364, 'nl', 'name', 'AZ Groeninge'),
(106310, 87365, 'en', 'name', 'NÔÔts''įhch''oh National Park Reserve'),
(106311, 87365, 'fr', 'name', 'RƩserve de parc national NƔƔts''ihch''oh'),
(106312, 87366, 'en', 'name', 'National Library and Archives'),
(106313, 87366, 'ar', 'name', 'Ų§Ł„Ų£Ų±Ų“ŁŠŁ ŁˆŲ§Ł„Ł…ŁƒŲŖŲØŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(106314, 87367, 'fr', 'name', 'Centre Oscar Lambret'),
(106315, 87368, 'en', 'name', 'Jiangsu Provincial Commission of Health and Family Planning'),
(106316, 87369, 'fr', 'name', 'Parc national de l''Ǝle-du-Prince-Ɖdouard'),
(106317, 87369, 'en', 'name', 'Prince Edward Island National Park'),
(106318, 87370, 'en', 'name', 'Ohio Department of Higher Education'),
(106319, 87371, 'en', 'name', 'Musculoskeletal Transplant Foundation'),
(106320, 87372, 'en', 'name', 'Royal Bournemouth and Christchurch Hospitals NHS Foundation Trust'),
(106321, 87373, 'en', 'name', 'American Hotel & Lodging Association'),
(106322, 87374, 'fr', 'name', 'HƓpital Claude Huriez'),
(106323, 87375, 'en', 'name', 'Bulgarian Water Association'),
(106324, 87375, 'cu', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š°ŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ по воГите'),
(106325, 87376, 'en', 'name', 'Banner Alzheimer’s Institute'),
(106326, 87377, 'en', 'name', 'University of Kikwit'),
(106327, 87377, 'fr', 'name', 'UniversitƩ de kikwit'),
(106328, 87378, 'en', 'name', 'Health and Family Planning Commission of Hubei Province'),
(106329, 87378, 'zh', 'name', 'ę¹–åŒ—ēœå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(106330, 87379, 'en', 'name', 'Climate Service Center'),
(106331, 87380, 'hr', 'name', 'Institut za javnu upravu'),
(106332, 87380, 'en', 'name', 'Institute of Public Administration'),
(106333, 87381, 'fr', 'name', 'Parc national Yoho'),
(106334, 87381, 'en', 'name', 'Yoho National Park'),
(106335, 87382, 'en', 'name', 'Nahanni National Park Reserve'),
(106336, 87382, 'fr', 'name', 'RƩserve de parc national de Nahanni'),
(106337, 87383, 'en', 'name', 'International National Trusts Organisation'),
(106338, 87384, 'es', 'name', 'Hospital Maciel'),
(106339, 87385, 'fr', 'name', 'Parc national des Monts-Torngat'),
(106340, 87385, 'en', 'name', 'Torngat Mountains National Park'),
(106341, 87386, 'en', 'name', 'Georgian Bay Islands National Park'),
(106342, 87386, 'fr', 'name', 'Parc national des Ǝles-de-la-Baie-Georgienne'),
(106343, 87387, 'en', 'name', 'Sidney Kimmel Foundation'),
(106344, 87388, 'no_lang_code', 'name', 'Rosatom (Russia)'),
(106345, 87388, 'ru', 'name', 'Росатом'),
(106346, 87389, 'en', 'name', 'Bruce Peninsula National Park'),
(106347, 87389, 'fr', 'name', 'Parc national de la PƩninsule-Bruce'),
(106348, 87390, 'no_lang_code', 'name', 'IncellDx (United States)'),
(106349, 87391, 'en', 'name', 'Cape Breton Highlands National Park'),
(106350, 87391, 'fr', 'name', 'Parc national des Hautes-Terres-du-Cap-Breton'),
(106351, 87392, 'en', 'name', 'Gwaii Haanas National Park Reserve and Haida Heritage Site'),
(106352, 87392, 'fr', 'name', 'Réserve de parc national et site du patrimoine haïda Gwaii Haanas'),
(106353, 87393, 'fr', 'name', 'Laboratoire sur les interactions cognition, action, Ʃmotion'),
(106354, 87394, 'de', 'name', 'Internationale Innovative Ophthalmochirurgie'),
(106355, 87395, 'en', 'name', 'Izumi Science and Technology Promotion Foundation'),
(106356, 87395, 'ja', 'name', 'ę³‰ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(106357, 87396, 'en', 'name', 'Consortium For Ocean Leadership'),
(106358, 87397, 'en', 'name', 'Auyuittuq National Park'),
(106359, 87397, 'fr', 'name', 'Parc national Auyuittuq'),
(106360, 87398, 'en', 'name', 'Gros Morne National Park'),
(106361, 87398, 'fr', 'name', 'Parc national du Gros-Morne'),
(106362, 87399, 'fr', 'name', 'HƓpital Edouard Herriot'),
(106363, 87400, 'it', 'name', 'Fondazione di Sardegna'),
(106364, 87401, 'en', 'name', 'Banner McKee Medical Center'),
(106365, 87402, 'de', 'name', 'Sachverständigenrat für Umweltfragen'),
(106366, 87403, 'en', 'name', 'International Institute of Tropical Agriculture'),
(106367, 87404, 'pt', 'name', 'Faculdades Integradas do Vale do IvaĆ­'),
(106368, 87405, 'fr', 'name', 'HÓpital Femme Mère Enfant'),
(106369, 87406, 'en', 'name', 'University Hospitals Dorset NHS Foundation Trust'),
(106370, 87407, 'en', 'name', 'Qingdao National Laboratory for Marine Science and Technology'),
(106371, 87407, 'zh', 'name', 'é’å²›ęµ·ę“‹ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶å®žéŖŒå®¤'),
(106372, 87408, 'en', 'name', 'Bavarian Ministry for Family, Labour and Social Affairs'),
(106373, 87408, 'de', 'name', 'Bayerisches Staatsministerium für Familie, Arbeit und Soziales'),
(106374, 87409, 'en', 'name', 'Forillon National Park'),
(106375, 87409, 'fr', 'name', 'Parc national de Forillon'),
(106376, 87410, 'en', 'name', 'Northern Ireland Chest Heart and Stroke'),
(106377, 87411, 'no_lang_code', 'name', 'Medicines Company (United States)'),
(106378, 87412, 'en', 'name', 'Hamilton Psychiatric Hospital'),
(106379, 87413, 'no_lang_code', 'name', 'Atypon (United States)'),
(106380, 87414, 'en', 'name', 'Banner Wyoming Medical Center'),
(106381, 87415, 'en', 'name', 'Max Planck Institute for Ornithology'),
(106382, 87415, 'de', 'name', 'Max-Planck-Institut für Ornithologie'),
(106383, 87416, 'en', 'name', 'Zhejiang Provincial Health and Family Planning Commission'),
(106384, 87417, 'en', 'name', 'California Water Science Center'),
(106385, 87418, 'en', 'name', 'Cumbria Northumberland Tyne and Wear NHS Foundation Trust'),
(106386, 87419, 'no_lang_code', 'name', 'University of Kolwezi'),
(106387, 87419, 'fr', 'name', 'UniversitƩ de kolwezi'),
(106388, 87420, 'fr', 'name', 'Parc national Tuktut Nogait'),
(106389, 87420, 'en', 'name', 'Tuktut Nogait National Park'),
(106390, 87421, 'en', 'name', 'Shanghai Science and Technology Development Foundation'),
(106391, 87421, 'zh', 'name', 'äøŠęµ·ē§‘ęŠ€å‘å±•åŸŗé‡‘ä¼š'),
(106392, 87422, 'fr', 'name', 'UniversitƩ de Kisangani'),
(106393, 87423, 'en', 'name', 'Lutheran Academy of Theology Oberursel'),
(106394, 87423, 'de', 'name', 'Lutherische Theologische Hochschule Oberursel'),
(106395, 87424, 'en', 'name', 'Reliant Medical Group'),
(106396, 87425, 'fr', 'name', 'HƓpital Jeanne de Flandre'),
(106397, 87426, 'en', 'name', 'TSC Alliance'),
(106398, 87427, 'fr', 'name', 'Parc national Quttinirpaaq'),
(106399, 87427, 'en', 'name', 'Quttinirpaaq National Park'),
(106400, 87428, 'en', 'name', 'Charles Koch Foundation'),
(106401, 87429, 'en', 'name', 'Glacier National Park'),
(106402, 87429, 'fr', 'name', 'Parc national des Glaciers'),
(106403, 87430, 'en', 'name', 'Moses Mendelssohn Center for European Jewish Studies'),
(106404, 87430, 'de', 'name', 'Moses Mendelssohn Zentrum für Europäisch-Jüdische Studien'),
(106405, 87431, 'en', 'name', 'Vienna Vaccine Safety Initiative'),
(106406, 87432, 'ro', 'name', 'Universitatea de Stat ā€žBogdan Petriceicu Hasdeu" din Cahul'),
(106407, 87432, 'ru', 'name', 'Кагульский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени БогГана ŠŸŠµŃ‚Ń€ŠøŃ‡ŠµŠ¹ŠŗŃƒ ЄашГеу'),
(106408, 87433, 'en', 'name', 'Finnish Heritage Agency'),
(106409, 87433, 'sv', 'name', 'Museiverket'),
(106410, 87433, 'fi', 'name', 'Museovirasto'),
(106411, 87434, 'en', 'name', 'Hungarian Science and Technology Foundation'),
(106412, 87435, 'en', 'name', 'Beijing Municipal Administration of Hospitals'),
(106413, 87436, 'en', 'name', 'Boscombe Community Hospital'),
(106414, 87437, 'en', 'name', 'Pudong New Area Health and Family Planning Commission'),
(106415, 87437, 'zh', 'name', 'ęµ¦äøœę–°åŒŗå«ē”Ÿå±€'),
(106416, 87438, 'de', 'name', 'Zentrum für Konstruktive Erziehungswissenschaft'),
(106417, 87439, 'de', 'name', 'Schifffahrtmedizinisches Institut der Marine'),
(106418, 87440, 'id', 'name', 'Universitas Dhyana Pura'),
(106419, 87441, 'en', 'name', 'Kootenay National Park'),
(106420, 87441, 'fr', 'name', 'Parc national Kootenay'),
(106421, 87442, 'en', 'name', 'Max Planck Institute of Geoanthropology'),
(106422, 87442, 'de', 'name', 'Max-Planck-Institut für Geoanthropologie'),
(106423, 87443, 'en', 'name', 'Youth Innovation Promotion Association'),
(106424, 87443, 'zh', 'name', 'é™¢é’å¹“åˆ›ę–°äæƒčæ›ä¼š'),
(106425, 87444, 'en', 'name', 'M. Kh Dulati Taraz State University'),
(106426, 87444, 'kk', 'name', 'М.Š„. Š”ŃƒŠ»Š°Ń‚Šø атынГағы Тараз мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(106427, 87445, 'no_lang_code', 'name', 'BHP (Australia)'),
(106428, 87446, 'en', 'name', 'Euphrosyne Polotskaya State University'),
(106429, 87446, 'be', 'name', 'ŠŸŠ¾Š»Š°Ń†Šŗi Š“Š·ŃŃ€Š¶Š°Ć½Š½Ń‹ ýнiверсiтэт'),
(106430, 87446, 'ru', 'name', 'ŠŸŠ¾Š»Š¾Ń†ŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106431, 87447, 'fr', 'name', 'Centre de recherches et d’études sur les droits fondamentaux'),
(106432, 87448, 'en', 'name', 'National Chung Cheng University'),
(106433, 87448, 'zh', 'name', 'åœ‹ē«‹äø­ę­£å¤§å­ø'),
(106434, 87449, 'fr', 'name', 'Association Canadienne du DiabĆØte'),
(106435, 87449, 'en', 'name', 'Diabetes Canada'),
(106436, 87450, 'en', 'name', 'Jasper National Park'),
(106437, 87450, 'fr', 'name', 'Parc national Jasper'),
(106438, 87451, 'en', 'name', 'Max Planck Institute of Neurobiology'),
(106439, 87451, 'de', 'name', 'Max-Planck-Institut für Neurobiologie'),
(106440, 87452, 'es', 'name', 'LA Referencia'),
(106441, 87453, 'ms', 'name', 'Majlis Amanah Rakyat'),
(106442, 87454, 'pl', 'name', 'Instytut Historii Nauki im. Ludwika i Aleksandra Birkenmajerów Polskiej Akademii Nauk'),
(106443, 87455, 'en', 'name', 'Government of New Zealand'),
(106444, 87455, 'mi', 'name', 'Te Kāwanatanga o Aotearoa'),
(106445, 87456, 'en', 'name', 'China University of Geosciences (Beijing)'),
(106446, 87456, 'zh', 'name', 'äø­å›½åœ°č“Øå¤§å­¦ (åŒ—äŗ¬)'),
(106447, 87457, 'en', 'name', 'Mingan Archipelago National Park Reserve'),
(106448, 87457, 'fr', 'name', 'RƩserve de parc national de l''Archipel-de-Mingan'),
(106449, 87458, 'en', 'name', 'Institute of Hospitality Management in Prague'),
(106450, 87458, 'cs', 'name', 'VysokÔ Ŕkola HotelovÔ v Praze'),
(106451, 87459, 'es', 'name', 'Consejo Nacional de Ciencia y TecnologĆ­a'),
(106452, 87460, 'de', 'name', 'Kriminologische Zentralstelle'),
(106453, 87461, 'en', 'name', 'Lupus Research Alliance'),
(106454, 87462, 'en', 'name', 'Fundy National Park'),
(106455, 87462, 'fr', 'name', 'Parc national de Fundy'),
(106456, 87463, 'en', 'name', 'Xuzhou Kuangshan Hospital'),
(106457, 87463, 'zh', 'name', 'å¾å·žåø‚ēŸæå±±åŒ»é™¢'),
(106458, 87464, 'en', 'name', 'Mississippi Institutions of Higher Learning'),
(106459, 87465, 'en', 'name', 'Private Institution ā€œKaraganda University of Kazpotrebsoyuzā€'),
(106460, 87465, 'kk', 'name', 'ŅšŠ°Š·Ń‚Ņ±Ń‚Ń‹Š½ŃƒŠ¾Š“Š°Ņ“Ń‹ ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ°Š»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(106461, 87466, 'fr', 'name', 'Histoire des arts et des reprƩsentations'),
(106462, 87467, 'en', 'name', 'Banner North Colorado Medical Center'),
(106463, 87468, 'en', 'name', 'Taraz State Pedagogical University'),
(106464, 87468, 'kk', 'name', 'ТАРАЗ ŠœŠ•ŠœŠ›Š•ŠšŠ•Š¢Š¢Š†Šš ŠŸŠ•Š”ŠŠ“ŠžŠ“Š˜ŠšŠŠ›Š«Ņš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š†'),
(106465, 87469, 'en', 'name', 'Western Crop Genetics Alliance'),
(106466, 87470, 'en', 'name', 'Auckland War Memorial Museum'),
(106467, 87470, 'mi', 'name', 'Tāmaki Paenga Hira'),
(106468, 87471, 'fr', 'name', 'Institut SupƩrieur PƩdagogique de Bukavu'),
(106469, 87472, 'en', 'name', 'Royal Bournemouth Hospital'),
(106470, 87473, 'es', 'name', 'Universidad CLAEH'),
(106471, 87474, 'en', 'name', 'Yorkshire Cancer Research'),
(106472, 87475, 'en', 'name', 'China Railway Construction Investment Group Corporation'),
(106473, 87475, 'zh', 'name', 'äø­å›½é“å»ŗęŠ•čµ„é›†å›¢ęœ‰é™å…¬åø'),
(106474, 87476, 'fr', 'name', 'Parc national de la Pointe-PelƩe'),
(106475, 87476, 'en', 'name', 'Point Pelee National Park'),
(106476, 87477, 'de', 'name', 'Krankenhaus Mara'),
(106477, 87478, 'en', 'name', 'Guangdong Association of STD and AIDS Prevention and Control'),
(106478, 87478, 'zh', 'name', 'å¹æäøœēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(106479, 87479, 'fr', 'name', 'Laboratoire de thermique interfaces environnement'),
(106480, 87480, 'en', 'name', 'Interactive Advertising Bureau (United States)'),
(106481, 87481, 'fr', 'name', 'Parc national de Pukaskwa'),
(106482, 87481, 'en', 'name', 'Pukaskwa National Park'),
(106483, 87482, 'fr', 'name', 'Parc national Qausuittuq'),
(106484, 87482, 'en', 'name', 'Qausuittuq National Park'),
(106485, 87483, 'en', 'name', 'Science Media Center Taiwan'),
(106486, 87483, 'zh', 'name', 'å°ē£ē§‘ęŠ€åŖ’é«”äø­åæƒ'),
(106487, 87484, 'fr', 'name', 'BibliothĆØque de GenĆØve'),
(106488, 87485, 'de', 'name', 'Max-Reger-Institut'),
(106489, 87486, 'en', 'name', 'Ministry of Energy'),
(106490, 87486, 'he', 'name', '×ž×©×Ø×“ התשתיות ×”×œ××•×ž×™×•×Ŗ, האנרגיה והמים'),
(106491, 87487, 'es', 'name', 'Universidad de La Sabana'),
(106492, 87487, 'en', 'name', 'University of La Sabana'),
(106493, 87488, 'fr', 'name', 'Parc national des Lacs-Waterton'),
(106494, 87488, 'en', 'name', 'Waterton Lakes National Park'),
(106495, 87489, 'es', 'name', 'Hospital Central de las Fuerzas Armadas'),
(106496, 87490, 'no_lang_code', 'name', 'Merz (Germany)'),
(106497, 87491, 'en', 'name', 'EcoNexus'),
(106498, 87492, 'de', 'name', 'Staatsinstitut für Familienforschung an der Universität Bamberg'),
(106499, 87493, 'en', 'name', 'Wenner-Gren Foundations'),
(106500, 87494, 'fr', 'name', 'Laboratoire interdisciplinaire en neurosciences, physiologie et psychologie'),
(106501, 87495, 'en', 'name', 'La Mauricie National Park'),
(106502, 87495, 'fr', 'name', 'Parc national de la Mauricie'),
(106503, 87496, 'en', 'name', 'Banff National Park'),
(106504, 87496, 'fr', 'name', 'Parc national Banff'),
(106505, 87497, 'en', 'name', 'Los Molinos Observatory'),
(106506, 87497, 'es', 'name', 'Observatorio Astronómico Los Molinos'),
(106507, 87498, 'no_lang_code', 'name', 'Sumitomo Dainippon Pharma (United States)'),
(106508, 87499, 'fr', 'name', 'Parc national Wapusk'),
(106509, 87499, 'en', 'name', 'Wapusk National Park'),
(106510, 87500, 'en', 'name', 'Innovation, Science and Economic Development Canada'),
(106511, 87500, 'fr', 'name', 'Innovation, Sciences et DƩveloppement Ʃconomique Canada'),
(106512, 87501, 'de', 'name', 'Institut für Diabetesforschung'),
(106513, 87501, 'en', 'name', 'Institute of Diabetes Research'),
(106514, 87502, 'fr', 'name', 'RĆ©serve de parc national de l''Ǝle-de-Sable'),
(106515, 87502, 'en', 'name', 'Sable Island National Park Reserve'),
(106516, 87503, 'en', 'name', 'TOCA at Banner Health'),
(106517, 87504, 'es', 'name', 'Gobierno de Aragón'),
(106518, 87505, 'fr', 'name', 'HES-SO GenĆØve'),
(106519, 87506, 'en', 'name', 'Universal College of Medical Sciences'),
(106520, 87507, 'fr', 'name', 'Parc national des Mille-Ǝles'),
(106521, 87507, 'en', 'name', 'Thousand Islands National Park'),
(106522, 87508, 'fr', 'name', 'HƓpital Roger Salengro'),
(106523, 87509, 'fr', 'name', 'Parc national du Mont-Riding'),
(106524, 87509, 'en', 'name', 'Riding Mountain National Park'),
(106525, 87510, 'fr', 'name', 'Parc national de Prince Albert'),
(106526, 87510, 'en', 'name', 'Prince Albert National Park'),
(106527, 87511, 'en', 'name', 'Poole Hospital'),
(106528, 87512, 'en', 'name', 'Allen Institute for Artificial Intelligence'),
(106529, 87513, 'no_lang_code', 'name', 'BuroHappold (United Kingdom)'),
(106530, 87514, 'en', 'name', 'Max Planck Institute for Biological Intelligence'),
(106531, 87514, 'de', 'name', 'Max-Planck-Institut für biologische Intelligenz'),
(106532, 87515, 'en', 'name', 'Banner - University Medical Center Tucson'),
(106533, 87515, 'es', 'name', 'Centro mƩdico de la Universidad de Arizona'),
(106534, 87516, 'de', 'name', 'Orff-Zentrum München'),
(106535, 87517, 'en', 'name', 'Science Media Center Germany'),
(106536, 87518, 'fr', 'name', 'RƩserve de parc national Thaidene Nene'),
(106537, 87518, 'en', 'name', 'Thaidene NƫnƩ National Park Reserve'),
(106538, 87519, 'en', 'name', 'Banner Children''s at Desert'),
(106539, 87520, 'en', 'name', 'Ministry of Higher Education'),
(106540, 87520, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł…ŲµŲ±'),
(106541, 87521, 'en', 'name', 'Innovation Academy for Microsatellites of Chinese Academy of Sciences'),
(106542, 87521, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¾®å°å«ę˜Ÿåˆ›ę–°ē ”ē©¶é™¢å¤‡ę”ˆ'),
(106543, 87522, 'no_lang_code', 'name', 'John Wiley & Sons (United States)'),
(106544, 87523, 'fr', 'name', 'Parc national Wood Buffalo'),
(106545, 87523, 'en', 'name', 'Wood Buffalo National Park'),
(106546, 87524, 'en', 'name', 'Reinwardt Academie'),
(106547, 87525, 'en', 'name', 'Australian Alzheimer’s Research Foundation'),
(106548, 87526, 'fr', 'name', 'Institut d’HĆ©matologie et d’Oncologie PĆ©diatrique'),
(106549, 87527, 'en', 'name', 'Gulf Islands National Park Reserve'),
(106550, 87527, 'fr', 'name', 'RĆ©serve de parc national des Ǝles-Gulf'),
(106551, 87528, 'en', 'name', 'Mount Revelstoke National Park'),
(106552, 87528, 'fr', 'name', 'Parc national du Mont-Revelstoke'),
(106553, 87529, 'en', 'name', 'Kouchibouguac National Park'),
(106554, 87529, 'fr', 'name', 'Parc national de Kouchibouguac'),
(106555, 87530, 'en', 'name', 'SRH Berlin School of Design and Communication'),
(106556, 87531, 'fr', 'name', 'HƓpital de la Croix-Rousse'),
(106557, 87532, 'en', 'name', 'Mohamed Bin Zayed Species Conservation Fund'),
(106558, 87533, 'en', 'name', 'Grasslands National Park'),
(106559, 87533, 'fr', 'name', 'Parc national des Prairies'),
(106560, 87534, 'en', 'name', 'Elk Island National Park'),
(106561, 87534, 'fr', 'name', 'Parc national Elk Island'),
(106562, 87535, 'fr', 'name', 'Parc national Terra-Nova'),
(106563, 87535, 'en', 'name', 'Terra Nova National Park'),
(106564, 87536, 'fr', 'name', 'Parc national Ukkusiksalik'),
(106565, 87536, 'en', 'name', 'Ukkusiksalik National Park'),
(106566, 87537, 'en', 'name', 'Akami-Uapishkᵘ-KakKasuak-Mealy Mountains National Park Reserve'),
(106567, 87537, 'fr', 'name', 'RĆ©serve de parc national Akami-Uapishkįµ˜ā€“KakKasuak–Monts-Meal'),
(106568, 87538, 'de', 'name', 'StƤdelschule'),
(106569, 87539, 'es', 'name', 'Hospital Italiano de Montevideo'),
(106570, 87539, 'en', 'name', 'Italian Hospital of Montevideo'),
(106571, 87540, 'fr', 'name', 'Laboratoire de GƩographie Urbaine'),
(106572, 87541, 'es', 'name', 'Academia Mexicana de Investigación y Docencia en Innovación'),
(106573, 87542, 'en', 'name', 'Aulavik National Park'),
(106574, 87542, 'fr', 'name', 'Parc national Aulavik'),
(106575, 87543, 'no_lang_code', 'name', 'Imam Abdulrahman Bin Faisal University'),
(106576, 87543, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ال؄مام عبدالرحمن بن ŁŁŠŲµŁ„'),
(106577, 87544, 'no_lang_code', 'name', 'UCB Pharma (United Kingdom)'),
(106578, 87545, 'en', 'name', 'Kejimkujik National Park'),
(106579, 87545, 'fr', 'name', 'Parc national de Kejimkujik'),
(106580, 87546, 'en', 'name', 'IVC Evidensia'),
(106581, 87547, 'fr', 'name', 'Parc national Sirmilik'),
(106582, 87547, 'en', 'name', 'Sirmilik National Park'),
(106583, 87548, 'en', 'name', 'Gƶran Gustafsson Foundation'),
(106584, 87549, 'en', 'name', 'Khushal Khan Khattak University Karak'),
(106585, 87549, 'ps', 'name', 'ŲÆ Ų®ŁˆŲ“Ų­Ų§Ł„ خان خټک Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† کرک'),
(106586, 87550, 'de', 'name', 'Quadriga Hochschule Berlin'),
(106587, 87551, 'en', 'name', 'NBS Northern Business School'),
(106588, 87552, 'en', 'name', 'Poole Hospital NHS Foundation Trust'),
(106589, 87553, 'en', 'name', 'John Simon Guggenheim Memorial Foundation'),
(106590, 87554, 'en', 'name', 'University of International and Public Relations Prague'),
(106591, 87554, 'cs', 'name', 'VysokĆ” Å”kola mezinĆ”rodnĆ­ch a veřejných vztahÅÆ Praha'),
(106592, 87555, 'en', 'name', 'Ivvavik National Park'),
(106593, 87555, 'fr', 'name', 'Parc national Ivvavik'),
(106594, 87556, 'en', 'name', 'Jiangxi Provincial Department of Science and Technology'),
(106595, 87557, 'en', 'name', 'Torcuato Di Tella University'),
(106596, 87557, 'es', 'name', 'Universidad Torcuato Di Tella'),
(106597, 87558, 'fr', 'name', 'Parc national Vuntut'),
(106598, 87558, 'en', 'name', 'Vuntut National Park'),
(106599, 87559, 'es', 'name', 'RedCLARA'),
(106600, 87560, 'de', 'name', 'Nordrhein-Westfälische Akademie der Wissenschaften und der Künste'),
(106601, 87561, 'de', 'name', 'Technische UniversitƤt Kaiserslautern'),
(106602, 87561, 'en', 'name', 'University of Kaiserslautern'),
(106603, 87562, 'fr', 'name', 'HƓpital Cardiologique'),
(106604, 87562, 'en', 'name', 'Lille’s Cardiology Hospital'),
(106605, 87563, 'en', 'name', 'Russian Foundation for Basic Research'),
(106606, 87563, 'ru', 'name', 'Российский фонГ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Ń… исслеГований'),
(106607, 87564, 'en', 'name', 'Cancer Care Ontario'),
(106608, 87565, 'fr', 'name', 'Parcs Canada'),
(106609, 87565, 'en', 'name', 'Parks Canada'),
(106610, 87566, 'en', 'name', 'Ilam University'),
(106611, 87567, 'en', 'name', 'International Center for Tropical Agriculture'),
(106612, 87568, 'en', 'name', 'Banner - University Medical Center Phoenix'),
(106613, 87569, 'en', 'name', 'Kluane National Park and Reserve'),
(106614, 87569, 'fr', 'name', 'Parc national et rƩserve de parc national Kluane'),
(106615, 87570, 'en', 'name', 'University Press of Mississippi'),
(106616, 87571, 'fr', 'name', 'HƓpital RenƩe Sabran'),
(106617, 87572, 'en', 'name', 'Central University of Chile'),
(106618, 87572, 'es', 'name', 'Universidad Central de Chile'),
(106619, 87573, 'en', 'name', 'Health and Family Planning Commission of Hunan Province'),
(106620, 87573, 'zh', 'name', 'ę¹–å—å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(106621, 87574, 'no_lang_code', 'name', 'Mishima Kaiun Memorial Foundation'),
(106622, 87574, 'ja', 'name', 'äø‰å³¶ęµ·é›²čØ˜åæµč²”å›£ćƒ›'),
(106623, 87575, 'en', 'name', 'ACT'),
(106624, 87576, 'tr', 'name', 'Anka Teknoloji Üniversitesi'),
(106625, 87577, 'en', 'name', 'Finnish Advanced Microscopy Node'),
(106626, 87578, 'en', 'name', 'National Centre for Photovoltaic Research and Education'),
(106627, 87579, 'de', 'name', 'Technologie-Institut für Metall und Engineering (TIME)'),
(106628, 87580, 'de', 'name', 'Zentrum für Sportmedizin der Bundeswehr'),
(106629, 87581, 'tr', 'name', 'ASBU Kuzey Kibris Yerleşkesi̇'),
(106630, 87582, 'en', 'name', 'MRC Metabolic Diseases Unit'),
(106631, 87583, 'en', 'name', 'Presidency of the Republic of Türkiye, Defense Industry Agency'),
(106632, 87583, 'tr', 'name', 'Türkiye Cumhuriyeti Cumhurbaşkanlığı Savunma Sanayii Başkanlığı'),
(106633, 87584, 'en', 'name', 'Ministry of Science and Technology'),
(106634, 87584, 'bn', 'name', 'ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(106635, 87585, 'en', 'name', 'Bucerius Law School'),
(106636, 87586, 'de', 'name', 'Deutsche Verkehrswissenschaftliche Gesellschaft'),
(106637, 87587, 'en', 'name', 'Center for Environmental and Marine Studies'),
(106638, 87587, 'pt', 'name', 'Centro de Estudos Ambientais e Marinhos'),
(106639, 87588, 'en', 'name', 'Ventspils University of Applied Sciences'),
(106640, 87589, 'en', 'name', 'Piedmont Region'),
(106641, 87589, 'it', 'name', 'Regione Piemonte'),
(106642, 87590, 'en', 'name', 'Isfahan University of Medical Sciences'),
(106643, 87590, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی اصفهان'),
(106644, 87591, 'de', 'name', 'Zentrum für Militärgeschichte und Sozialwissenschaften der Bundeswehr'),
(106645, 87592, 'en', 'name', 'Directory of Open Access Books'),
(106646, 87593, 'fr', 'name', 'LittƩrature et poƩtique comparƩes'),
(106647, 87594, 'tr', 'name', 'Bahçeşehir Cyprus University'),
(106648, 87595, 'en', 'name', 'TEPCO Memorial Foundation'),
(106649, 87595, 'ja', 'name', 'ę±é›»čØ˜åæµē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(106650, 87596, 'sv', 'name', 'Fru Berta Kamprads stiftelse'),
(106651, 87596, 'en', 'name', 'Mrs. Berta Kamprad''s Cancer Foundation'),
(106652, 87597, 'en', 'name', 'Ministry of Treasury and Finance'),
(106653, 87597, 'tr', 'name', 'T.C. Hazine ve Maliye Bakanlığı'),
(106654, 87598, 'fr', 'name', 'Laboratoire Ethologie Cognition DƩveloppement'),
(106655, 87599, 'es', 'name', 'Instituto Nacional del CƔncer'),
(106656, 87599, 'en', 'name', 'National Cancer Institute'),
(106657, 87600, 'no_lang_code', 'name', 'Alrafidain University College'),
(106658, 87600, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų±Ų§ŁŲÆŁŠŁ† الجامعة'),
(106659, 87601, 'no_lang_code', 'name', 'Team HF'),
(106660, 87602, 'en', 'name', 'Presidency for Turks Abroad and Related Communities'),
(106661, 87602, 'tr', 'name', 'Yurtdışı Türkler ve Akraba Topluluklar Başkanlığı'),
(106662, 87603, 'en', 'name', 'Tokyo Medical University'),
(106663, 87603, 'ja', 'name', 'ę±äŗ¬åŒ»ē§‘å¤§å­¦'),
(106664, 87604, 'tr', 'name', 'Ankara Bilim Üniversitesi'),
(106665, 87604, 'en', 'name', 'Ankara Science University'),
(106666, 87605, 'en', 'name', 'Pazy Foundation'),
(106667, 87606, 'en', 'name', 'Ministry of Education'),
(106668, 87606, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ…'),
(106669, 87607, 'en', 'name', 'Great Ormond Street Hospital'),
(106670, 87608, 'no_lang_code', 'name', 'China Railway 18th Bureau Group Corporation'),
(106671, 87608, 'zh', 'name', 'äø­é“åå…«å±€é›†å›¢ęœ‰é™å…¬åø'),
(106672, 87609, 'tr', 'name', 'Kıbrıs Ada Kent Üniversitesi'),
(106673, 87610, 'en', 'name', 'Sherman Fairchild Foundation'),
(106674, 87611, 'en', 'name', 'Council for Science, Technology and Innovation'),
(106675, 87611, 'ja', 'name', 'ē·åˆē§‘å­¦ęŠ€č”“ćƒ»ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ä¼šč­°'),
(106676, 87612, 'en', 'name', 'Secretariat of Energy'),
(106677, 87612, 'es', 'name', 'SecretarĆ­a de EnergĆ­a'),
(106678, 87613, 'es', 'name', 'Consejo Nacional para Investigaciones Científicas y Tecnológicas'),
(106679, 87613, 'en', 'name', 'National Scientific and Technical Research Council'),
(106680, 87614, 'de', 'name', 'Besucherzentrum Welterbe Grube Messel'),
(106681, 87615, 'en', 'name', 'Mudanya University'),
(106682, 87615, 'tr', 'name', 'Mudanya Üniversitesi'),
(106683, 87616, 'no_lang_code', 'name', 'Centro de Desarrollo Tecnológico del Cesar'),
(106684, 87617, 'de', 'name', 'Theologische Hochschule Elstal'),
(106685, 87618, 'no_lang_code', 'name', 'Elea'),
(106686, 87619, 'de', 'name', 'VWA Hochschule'),
(106687, 87620, 'en', 'name', 'JCT College Of Engineering And Technology'),
(106688, 87620, 'ta', 'name', 'ą®œąÆ‡. சி. டி. ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(106689, 87621, 'de', 'name', 'Theologische Hochschule Reutlingen'),
(106690, 87622, 'en', 'name', 'University Library Johann Christian Senckenberg'),
(106691, 87622, 'de', 'name', 'UniversitƤtsbibliothek Johann Christian Senckenberg'),
(106692, 87623, 'no_lang_code', 'name', 'TEPCO (Japan)'),
(106693, 87623, 'ja', 'name', 'ę±äŗ¬é›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(106694, 87624, 'en', 'name', 'OAPEN Foundation'),
(106695, 87625, 'en', 'name', 'Environmental Restoration and Conservation Agency'),
(106696, 87625, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗē’°å¢ƒå†ē”Ÿäæå…Øę©Ÿę§‹'),
(106697, 87626, 'en', 'name', 'Government of Kenya'),
(106698, 87627, 'en', 'name', 'Federation of European Microbiological Societies'),
(106699, 87628, 'de', 'name', 'Wissenschaftspressekonferenz'),
(106700, 87629, 'en', 'name', 'Swiss Nanoscience Institute'),
(106701, 87630, 'cs', 'name', 'Agentura Pro Zdravotnický Výzkum České Republiky'),
(106702, 87631, 'de', 'name', 'Bundesamt für Ausrüstung, Informationstechnik und Nutzung der Bundeswehr'),
(106703, 87631, 'en', 'name', 'Federal Office of Bundeswehr Equipment, Information Technology and In-Service Support'),
(106704, 87632, 'en', 'name', 'Kunming Municipal Hospital of Traditional Chinese Medicine');
INSERT INTO `ror_settings` VALUES
(106705, 87633, 'en', 'name', 'Alzahra Medical and Education Center'),
(106706, 87634, 'en', 'name', 'Ministry of New and Renewable Energy'),
(106707, 87635, 'en', 'name', 'Cyprus Health and Social Sciences University'),
(106708, 87635, 'tr', 'name', 'Kıbrıs Sağlık ve Toplum Bilimleri Üniversitesi'),
(106709, 87636, 'de', 'name', 'Verband der deutschen Lack- und Druckfarbenindustrie'),
(106710, 87637, 'en', 'name', 'Savanna Institute'),
(106711, 87638, 'en', 'name', 'Let People Know'),
(106712, 87639, 'fr', 'name', 'Conseil rƩgional d''Auvergne-RhƓne-Alpe'),
(106713, 87639, 'en', 'name', 'Regional Council of Auvergne-RhƓne-Alpes'),
(106714, 87640, 'en', 'name', 'Archaeology Data Service'),
(106715, 87641, 'en', 'name', 'Arkin University of Creative Arts and Design'),
(106716, 87641, 'tr', 'name', 'Arkın Yaratıcı Sanatlar ve Tasarım Üniversitesi'),
(106717, 87642, 'de', 'name', 'Andrologicum München'),
(106718, 87643, 'en', 'name', 'Bundeswehr Joint Medical Service'),
(106719, 87643, 'de', 'name', 'SanitƤtsdienst der Bundeswehr'),
(106720, 87644, 'no_lang_code', 'name', 'Tunnell Consulting'),
(106721, 87645, 'en', 'name', 'University of Stuttgart'),
(106722, 87645, 'de', 'name', 'UniversitƤt Stuttgart'),
(106723, 87646, 'no_lang_code', 'name', 'Aggreko (United Kingdom)'),
(106724, 87647, 'en', 'name', 'Bundeswehr Hospital'),
(106725, 87647, 'de', 'name', 'Bundeswehrkrankenhaus'),
(106726, 87648, 'en', 'name', 'National Institute of Forestry Science'),
(106727, 87648, 'ko', 'name', '국립산림과학원'),
(106728, 87649, 'en', 'name', 'Rauf Denktas University'),
(106729, 87649, 'tr', 'name', 'Rauf Denktas Üniversitesi'),
(106730, 87650, 'sv', 'name', 'Tore Nilsons Stiftelse fƶr Medicinsk Forskning'),
(106731, 87651, 'en', 'name', 'Can Tho University of Medicine and Pharmacy'),
(106732, 87651, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y dược Cįŗ§n ThĘ”'),
(106733, 87652, 'id', 'name', 'Sekola Tinggi Agama Islam Islamic Centre Demak'),
(106734, 87653, 'en', 'name', 'Foundation for Data Protection'),
(106735, 87653, 'de', 'name', 'Stiftung Datenschutz'),
(106736, 87654, 'pt', 'name', 'Escola de SaĆŗde PĆŗblica do CearĆ”'),
(106737, 87655, 'en', 'name', 'AMAQUEN Foundation'),
(106738, 87656, 'fr', 'name', 'Canton d''Argovie'),
(106739, 87656, 'en', 'name', 'Canton of Argau'),
(106740, 87656, 'de', 'name', 'Kanton Aargau'),
(106741, 87657, 'en', 'name', 'Theoretical Physics and Mathematics Advancement Foundation ā€œBASISā€'),
(106742, 87657, 'ru', 'name', 'ФонГ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ теоретической физики Šø математики Ā«Š‘ŠŠ—Š˜Š”Ā»'),
(106743, 87658, 'de', 'name', 'Verband der UniversitƤtsklinika Deutschlands'),
(106744, 87659, 'de', 'name', 'Wehrwissenschaftliche Institut für Schutztechnologien'),
(106745, 87660, 'tr', 'name', 'Bilim Akademisi'),
(106746, 87661, 'de', 'name', 'Verband Forschender Arzneimittelhersteller'),
(106747, 87662, 'en', 'name', 'Normandy Region'),
(106748, 87662, 'fr', 'name', 'RƩgion Normandie'),
(106749, 87663, 'de', 'name', 'Theologische Hochschule Ewersbach'),
(106750, 87664, 'nl', 'name', 'Koninklijk Museum voor Schone Kunsten Antwerpen'),
(106751, 87664, 'fr', 'name', 'MusƩe Royal des Beaux-Arts Anvers'),
(106752, 87664, 'en', 'name', 'Royal Museum of Fine Arts Antwerp'),
(106753, 87665, 'en', 'name', 'Cyprus Science University'),
(106754, 87665, 'tr', 'name', 'Kıbrıs İlim Üniversitesi'),
(106755, 87666, 'en', 'name', 'Islamic Azad University, Sepidan'),
(106756, 87666, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų³Ł¾ŪŒŲÆŲ§Ł†'),
(106757, 87667, 'en', 'name', 'Federation of German Scientists'),
(106758, 87667, 'de', 'name', 'Verantwortung in der Wissenschaft'),
(106759, 87668, 'en', 'name', 'Tokyo Medical University Hospital'),
(106760, 87668, 'ja', 'name', 'ę±äŗ¬åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(106761, 87669, 'fr', 'name', 'Conseil rƩgional des Pays de la Loire'),
(106762, 87669, 'en', 'name', 'Regional Council of Pays de la Loire'),
(106763, 87670, 'en', 'name', 'Alborz University of Medical Sciences'),
(106764, 87670, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی البرز'),
(106765, 87671, 'en', 'name', 'Deep Ocean Observing Strategy'),
(106766, 87672, 'en', 'name', 'Hitachi Global Foundation'),
(106767, 87672, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ē«‹č²”å›£'),
(106768, 87673, 'en', 'name', 'United States Research Software Engineer Association'),
(106769, 87674, 'de', 'name', 'Stiftung des ƶffentlichen Rechts an der Martin-Luther-UniversitƤt Halle-Wittenberg'),
(106770, 87675, 'en', 'name', 'Israel Atomic Energy Commission'),
(106771, 87675, 'he', 'name', 'הוועדה ×œ×× ×Ø×’×™×” ××˜×•×ž×™×Ŗ'),
(106772, 87676, 'es', 'name', 'ELLIS Alicante'),
(106773, 87677, 'da', 'name', 'Hartmann Fonden'),
(106774, 87678, 'en', 'name', 'Directorate-General for Migration and Home Affairs'),
(106775, 87679, 'de', 'name', 'Fritz Bauer Institut'),
(106776, 87680, 'no_lang_code', 'name', 'Bernhardt Laboratories'),
(106777, 87681, 'en', 'name', 'Petroleum Technology Development Fund'),
(106778, 87682, 'id', 'name', 'UIN Sunan Ampel Surabaya'),
(106779, 87683, 'en', 'name', 'Garut Institute of Technology'),
(106780, 87683, 'id', 'name', 'Institut Teknologi Garut'),
(106781, 87684, 'en', 'name', 'Bundeswehr Medical Service Academy'),
(106782, 87684, 'de', 'name', 'SanitƤtsakademie der Bundeswehr'),
(106783, 87685, 'fr', 'name', 'Fondation du CollĆØge de France'),
(106784, 87686, 'de', 'name', 'Stammzellnetzwerk.NRW'),
(106785, 87686, 'en', 'name', 'Stem Cell Network North Rhine-Westphalia'),
(106786, 87687, 'en', 'name', 'Lazio Region'),
(106787, 87687, 'it', 'name', 'Regione Lazio'),
(106788, 87688, 'de', 'name', 'Führungsakademie der Bundeswehr'),
(106789, 87689, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Ostsee'),
(106790, 87690, 'en', 'name', 'International Institute of Tropical Agriculture'),
(106791, 87691, 'en', 'name', 'Eastern Savings Bank'),
(106792, 87692, 'en', 'name', 'Cancer Council Northern Territory'),
(106793, 87693, 'en', 'name', 'Korean Institute of Architects'),
(106794, 87693, 'ko', 'name', 'ķ•œźµ­ 걓축가 ķ˜‘ķšŒ'),
(106795, 87694, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Oder-Havel'),
(106796, 87695, 'en', 'name', 'American Chemistry Council'),
(106797, 87696, 'de', 'name', 'Wasserstraßen-Neubauamt Nord-Ostsee-Kanal'),
(106798, 87697, 'en', 'name', 'Via Christi Regional Medical Center'),
(106799, 87698, 'en', 'name', 'American Philosophical Society'),
(106800, 87699, 'en', 'name', 'International Maize and Wheat Improvement Center'),
(106801, 87700, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Ems-Nordsee'),
(106802, 87701, 'ko', 'name', '(주) źø°ģˆ ź³¼ź°€ģ¹˜'),
(106803, 87701, 'no_lang_code', 'name', 'TechnoValue'),
(106804, 87702, 'en', 'name', 'Sapporo Shiroishi Memorial Hospital'),
(106805, 87702, 'ja', 'name', 'ęœ­å¹Œē™½ēŸ³čØ˜åæµē—…é™¢'),
(106806, 87703, 'en', 'name', 'Scottish Storytelling Centre'),
(106807, 87704, 'en', 'name', 'Delaware General Assembly'),
(106808, 87705, 'fr', 'name', 'Cecos'),
(106809, 87706, 'en', 'name', 'Sichuan Tourism University'),
(106810, 87706, 'zh', 'name', 'å››å·ę—…ęøøå¤§å­¦'),
(106811, 87707, 'en', 'name', 'Culham Science Centre'),
(106812, 87708, 'en', 'name', 'Department of Land Resource Management'),
(106813, 87709, 'en', 'name', 'Wadsworth Center'),
(106814, 87710, 'es', 'name', 'Universidad Americana'),
(106815, 87711, 'en', 'name', 'Illinois Clean Coal Institute'),
(106816, 87712, 'en', 'name', 'Korean History Research Society'),
(106817, 87712, 'ko', 'name', 'ķ•œźµ­ģ‚¬ģ—°źµ¬ķšŒ'),
(106818, 87713, 'en', 'name', 'Sir Edward ''Weary'' Dunlop Medical Research Foundation'),
(106819, 87714, 'en', 'name', 'Swedish Association of Public Housing'),
(106820, 87715, 'fr', 'name', 'SociƩtƩ Suisse de Dermatologie et VƩnƩrƩologie'),
(106821, 87715, 'de', 'name', 'Swiss Society for Dermatology and Venereology'),
(106822, 87716, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Weser-Jade-Nordsee'),
(106823, 87717, 'it', 'name', 'Associazione Italiana per la Ricerca Industriale'),
(106824, 87718, 'en', 'name', 'Society of Professional Journalists'),
(106825, 87719, 'en', 'name', 'World Agroforestry Centre'),
(106826, 87720, 'de', 'name', 'Wasserstraßen-Neubauamt Berlin'),
(106827, 87721, 'en', 'name', 'Ara Parseghian Medical Research Fund'),
(106828, 87722, 'en', 'name', 'Arts South Australia'),
(106829, 87723, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Donau MDK'),
(106830, 87724, 'en', 'name', 'Health Professionals Advancing LGBT Equality'),
(106831, 87725, 'en', 'name', 'National Library of Vietnam'),
(106832, 87726, 'de', 'name', 'Bundesamt für Strassen'),
(106833, 87726, 'en', 'name', 'Federal Roads Office'),
(106834, 87726, 'fr', 'name', 'Office fƩdƩral des routes'),
(106835, 87726, 'it', 'name', 'Ufficio federale delle strade'),
(106836, 87727, 'en', 'name', 'IP Australia'),
(106837, 87728, 'en', 'name', 'London Borough Of Lewisham'),
(106838, 87729, 'no_lang_code', 'name', 'Australian Eggs'),
(106839, 87730, 'en', 'name', 'Office of Tribal Affairs and Strategic Alliances'),
(106840, 87731, 'no_lang_code', 'name', 'Federatie van Nederlandse Trombosediensten'),
(106841, 87732, 'en', 'name', 'Museum of Bagpipes in Strakonice'),
(106842, 87732, 'cs', 'name', 'Muzeum střednĆ­ho PootavĆ­ Strakonice'),
(106843, 87733, 'es', 'name', 'Caja Rural de JaƩn'),
(106844, 87734, 'de', 'name', 'Institut dal Dicziunari Rumantsch Grischun'),
(106845, 87735, 'no_lang_code', 'name', 'Conagra Brands (United States)'),
(106846, 87736, 'nl', 'name', 'Agentschap voor Natuur en Bos'),
(106847, 87737, 'en', 'name', 'Native Forward Scholars Fund'),
(106848, 87738, 'en', 'name', 'Austrian Electrotechnical Association'),
(106849, 87738, 'de', 'name', 'Ɩsterreichischer Verband für Elektrotechnik'),
(106850, 87739, 'no_lang_code', 'name', 'Meta (United States)'),
(106851, 87740, 'no_lang_code', 'name', 'Sikorsky Aircraft Corporation (United States)'),
(106852, 87741, 'en', 'name', 'Quitman County School District'),
(106853, 87742, 'en', 'name', 'Foundation S'),
(106854, 87743, 'en', 'name', 'International Maize and Wheat Improvement Center'),
(106855, 87744, 'en', 'name', 'Minnesota Department of Agriculture'),
(106856, 87745, 'en', 'name', 'Ecological Society of Australia'),
(106857, 87746, 'en', 'name', 'Forest Economic Research Institute'),
(106858, 87746, 'ja', 'name', 'ęž—ę„­ēµŒęøˆē ”ē©¶ę‰€'),
(106859, 87747, 'en', 'name', 'Korea Association of Literature for Children and Young Adults'),
(106860, 87747, 'ko', 'name', 'ķ•œźµ­ģ•„ė™ģ²­ģ†Œė…„ė¬øķ•™ķ•™ķšŒ ź¶Œķ˜ģ¤€ 올림'),
(106861, 87748, 'et', 'name', 'Eksperimentaalse ja Kliinilise Meditsiini Instituut'),
(106862, 87749, 'en', 'name', 'National Maritime Museums'),
(106863, 87750, 'en', 'name', 'Division of Equity for Excellence in STEM (EES)'),
(106864, 87751, 'en', 'name', 'Xiangya Hospital Central South University'),
(106865, 87751, 'zh', 'name', 'äø­å—å¤§å­¦ę¹˜é›…åŒ»é™¢'),
(106866, 87752, 'en', 'name', 'Division of Undergraduate Education'),
(106867, 87753, 'en', 'name', 'Eluna'),
(106868, 87754, 'en', 'name', 'North-American Interfraternity Conference'),
(106869, 87755, 'en', 'name', 'Department of Industry, Science, Energy and Resources'),
(106870, 87756, 'en', 'name', 'Taishan University'),
(106871, 87756, 'zh', 'name', '泰山学院'),
(106872, 87757, 'en', 'name', 'International Maize and Wheat Improvement Center'),
(106873, 87758, 'en', 'name', 'Health Services Research & Development'),
(106874, 87759, 'en', 'name', 'Net Zero Technology Centre'),
(106875, 87760, 'de', 'name', 'LEIZA - Leibniz-Zentrum für Archäologie'),
(106876, 87761, 'en', 'name', 'Ehlers-Danlos Society'),
(106877, 87762, 'en', 'name', 'CoreTrustSeal'),
(106878, 87763, 'en', 'name', 'American University of Cyprus'),
(106879, 87763, 'tr', 'name', 'Kıbrıs Amerikan Üniversitesi'),
(106880, 87764, 'en', 'name', 'Merle Chambers Fund'),
(106881, 87765, 'en', 'name', 'Ngee Ann Polytechnic'),
(106882, 87765, 'zh', 'name', '義安理巄學院'),
(106883, 87766, 'en', 'name', 'Vakhushti Bagrationi Institute of Geography'),
(106884, 87766, 'ka', 'name', 'įƒ•įƒįƒ®įƒ£įƒØįƒ¢įƒ˜ įƒ‘įƒįƒ’įƒ įƒįƒ¢įƒ˜įƒįƒœįƒ˜įƒ” įƒ’įƒ”įƒįƒ’įƒ įƒįƒ¤įƒ˜įƒ˜įƒ” ინეტიტუტი'),
(106885, 87767, 'en', 'name', 'Abbott Fund'),
(106886, 87768, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Rhein'),
(106887, 87769, 'no_lang_code', 'name', 'White arkitekter (Sweden)'),
(106888, 87770, 'en', 'name', 'Montgomery County Public Libraries'),
(106889, 87771, 'en', 'name', 'Australian National Low Emissions Coal Research and Development'),
(106890, 87772, 'en', 'name', 'Korean Operations Research and Management Science Society'),
(106891, 87772, 'ko', 'name', 'ķ•œźµ­ź²½ģ˜ź³¼ķ•™ķšŒ'),
(106892, 87773, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Elbe'),
(106893, 87774, 'en', 'name', 'Royal Osteoporosis Society'),
(106894, 87775, 'en', 'name', 'Department of State Development'),
(106895, 87776, 'es', 'name', 'Hospital de QuipuƩ'),
(106896, 87777, 'no_lang_code', 'name', 'Intesa Sanpaolo (Italy)'),
(106897, 87778, 'it', 'name', 'Agenzia Italiana del Farmaco'),
(106898, 87778, 'en', 'name', 'Italian Medicines Agency'),
(106899, 87779, 'fr', 'name', 'Femmes et ƉgalitĆ© des genres Canada'),
(106900, 87779, 'en', 'name', 'Women and Gender Equality Canada'),
(106901, 87780, 'de', 'name', 'Deutsche Stiftung Friedensforschung'),
(106902, 87780, 'en', 'name', 'German Foundation for Peace Research'),
(106903, 87781, 'no_lang_code', 'name', 'PVH (United States)'),
(106904, 87782, 'it', 'name', 'Centro Internazionale Scienze Meccaniche'),
(106905, 87782, 'en', 'name', 'International Centre for Mechanical Sciences'),
(106906, 87783, 'no_lang_code', 'name', 'Rolex SA (Switzerland)'),
(106907, 87784, 'en', 'name', 'Statistical Service'),
(106908, 87784, 'tr', 'name', 'İstatistiki Servis'),
(106909, 87785, 'es', 'name', 'Universidad Panamericana de Nuevo Laredo'),
(106910, 87786, 'de', 'name', 'Bundesverband Druck und Medien'),
(106911, 87787, 'fr', 'name', 'Centre National de la Recherche Scientifique et Technologique'),
(106912, 87788, 'en', 'name', 'International Society of Nephrology'),
(106913, 87789, 'en', 'name', 'Division of Research on Learning in Formal and Informal Settings'),
(106914, 87790, 'en', 'name', 'EMERGENCY'),
(106915, 87791, 'en', 'name', 'Division of Elementary, Secondary, and Informal Education'),
(106916, 87792, 'en', 'name', 'National Research Institute of Astronomy and Geophysics'),
(106917, 87793, 'it', 'name', 'Biblioteca Universitaria di Napoli'),
(106918, 87794, 'en', 'name', 'Innovative Health Initiative'),
(106919, 87795, 'en', 'name', 'European College of Economics and Management'),
(106920, 87795, 'bg', 'name', 'Европейско висше ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ по икономика Šø Š¼ŠµŠ½ŠøŠ“Š¶Š¼ŃŠŠ½Ń‚'),
(106921, 87796, 'en', 'name', 'Korea Foundation'),
(106922, 87797, 'en', 'name', 'Tropical Institute Of Community Health And Development'),
(106923, 87798, 'en', 'name', 'European Health Psychology Society'),
(106924, 87799, 'en', 'name', 'Office of Readiness and Response'),
(106925, 87800, 'en', 'name', 'San Bernardino County Library'),
(106926, 87801, 'en', 'name', 'Institute of International Relations of Moldova'),
(106927, 87801, 'ro', 'name', 'Institutul de Relații Internaționale din Moldova'),
(106928, 87802, 'en', 'name', 'Brno House of Arts'),
(106929, 87802, 'cs', 'name', 'DÅÆm uměnĆ­ města Brna'),
(106930, 87803, 'en', 'name', 'Hiroshima Prefectural Art Museum'),
(106931, 87803, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹ē¾Žč”“é¤Ø'),
(106932, 87804, 'nl', 'name', 'College ter Beoordeling van Geneesmiddelen'),
(106933, 87804, 'en', 'name', 'Medicines Evaluation Board'),
(106934, 87805, 'en', 'name', 'Cancer Council SA'),
(106935, 87806, 'de', 'name', 'Deutsche Gesellschaft für Gefäßchirurgie und Gefäßmedizin'),
(106936, 87807, 'en', 'name', 'Weinan Normal University'),
(106937, 87807, 'zh', 'name', 'ęø­å—åøˆčŒƒå­¦é™¢'),
(106938, 87808, 'en', 'name', 'Jane and Aatos Erkko Foundation'),
(106939, 87808, 'fi', 'name', 'Jane ja Aatos Erkon sƤƤtiƶ'),
(106940, 87809, 'no_lang_code', 'name', 'Digital Infuzion (United States)'),
(106941, 87810, 'de', 'name', 'Evangelische Stiftung Volmarstein'),
(106942, 87811, 'it', 'name', 'Fondazione Puglia'),
(106943, 87812, 'en', 'name', 'Scientific Education and Research Foundation'),
(106944, 87813, 'en', 'name', 'Swedish Association of Graduate Engineers'),
(106945, 87814, 'en', 'name', 'Korean Academy of International Business Management'),
(106946, 87814, 'ko', 'name', 'ķ•œźµ­źµ­ģ œź²½ģ˜ź“€ė¦¬ķ•™ķšŒ ķ™ˆķŽ˜'),
(106947, 87815, 'en', 'name', 'Manipal University College Malaysia'),
(106948, 87816, 'en', 'name', 'American Society of Safety Professionals'),
(106949, 87817, 'no_lang_code', 'name', '3i (United Kingdom)'),
(106950, 87818, 'en', 'name', 'Ohio Educational Technology Conference'),
(106951, 87819, 'de', 'name', 'Deutsche Diabetes Stiftung'),
(106952, 87820, 'en', 'name', 'National Institute on Disability, Independent Living, and Rehabilitation Research'),
(106953, 87821, 'nl', 'name', 'FOD Binnenlandse Zaken'),
(106954, 87821, 'de', 'name', 'FƖD Inneres'),
(106955, 87821, 'en', 'name', 'Ministry of the Interior'),
(106956, 87821, 'fr', 'name', 'Service Public FƩdƩral IntƩrieur'),
(106957, 87822, 'es', 'name', 'Tecnológico de Monterrey'),
(106958, 87823, 'en', 'name', 'Al-Mustafa International University'),
(106959, 87823, 'fa', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŲµŲ·ŁŪŒ Ų§Ł„Ų¹Ų§Ł„Ł…ŪŒŲ©'),
(106960, 87824, 'en', 'name', 'Okura Institute for the Study of Spiritual Culture'),
(106961, 87824, 'ja', 'name', 'ē²¾ē„žę–‡åŒ–ć®ćŸć‚ć®å¤§å€‰ē ”ē©¶ę‰€'),
(106962, 87825, 'en', 'name', 'GambleAware'),
(106963, 87826, 'en', 'name', 'American Society for Bioethics and Humanities'),
(106964, 87827, 'en', 'name', 'Australian Food Allergy Foundation'),
(106965, 87828, 'no', 'name', 'Ƙstfold Fylkeskommune'),
(106966, 87829, 'en', 'name', 'Kansas City University'),
(106967, 87830, 'en', 'name', 'Department of Environment, Parks and Water Security'),
(106968, 87831, 'en', 'name', 'Minnesota Department of Labor and Industry'),
(106969, 87832, 'no_lang_code', 'name', 'Kantar TNS (France)'),
(106970, 87833, 'de', 'name', 'Klinikum Darmstadt'),
(106971, 87834, 'no_lang_code', 'name', 'EVER Neuro Pharma (Austria)'),
(106972, 87835, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Oberrhein'),
(106973, 87836, 'nl', 'name', 'De Lisa Waller Hayes Stichting'),
(106974, 87836, 'en', 'name', 'Living With Hope'),
(106975, 87837, 'en', 'name', 'University "Haxhi Zeka"'),
(106976, 87838, 'en', 'name', 'Creative Victoria'),
(106977, 87839, 'fr', 'name', 'Institut des ingƩnieurs Ʃlectriciens et Ʃlectroniciens'),
(106978, 87839, 'no_lang_code', 'name', 'Institute of Electrical and Electronics Engineers'),
(106979, 87840, 'en', 'name', 'IU Health Foundation'),
(106980, 87841, 'en', 'name', 'Imam Mohammad ibn Saud Islamic University'),
(106981, 87841, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ال؄مام Ł…Ų­Ł…ŲÆ بن سعود Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(106982, 87842, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Mosel-Saar-Lahn'),
(106983, 87843, 'fr', 'name', 'FƩdƩration franƧaise de cardiologie'),
(106984, 87844, 'en', 'name', 'Princess Sumaya University for Technology'),
(106985, 87844, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ±Ų© Ų³Ł…ŁŠŲ© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(106986, 87845, 'en', 'name', 'WITH Foundation'),
(106987, 87846, 'en', 'name', 'Coastal and Estuarine Research Federation'),
(106988, 87847, 'sv', 'name', 'Svenska MƤssan'),
(106989, 87847, 'en', 'name', 'Swedish Exhibition & Congress Centre'),
(106990, 87848, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Elbe-Nordsee'),
(106991, 87849, 'en', 'name', 'Environmental and Occupational Health Sciences Institute'),
(106992, 87850, 'en', 'name', 'International Center for Responsible Gaming'),
(106993, 87851, 'en', 'name', 'Continuous Plankton Recorder Survey'),
(106994, 87852, 'en', 'name', 'Korean Society For The Study Of Physical Education'),
(106995, 87852, 'ko', 'name', 'ķ•œźµ­ģ²“ģœ”źµģœ”ķ•™ķšŒ'),
(106996, 87853, 'en', 'name', 'Foundation for Chemistry Research and Initiatives'),
(106997, 87854, 'en', 'name', 'Nara University of Education'),
(106998, 87854, 'ja', 'name', 'å„ˆč‰Æę•™č‚²å¤§å­¦'),
(106999, 87855, 'en', 'name', 'Hydropower Foundation'),
(107000, 87856, 'en', 'name', 'Peninsula College of Medicine and Dentistry'),
(107001, 87857, 'no_lang_code', 'name', 'Cirtec Medical (United States)'),
(107002, 87858, 'en', 'name', 'Department of Mines and Petroleum'),
(107003, 87859, 'es', 'name', 'Universidad de Especialidades TurĆ­sticas'),
(107004, 87860, 'en', 'name', 'American Academy of Sleep Medicine Foundation'),
(107005, 87861, 'de', 'name', 'Wasserstraßen-Neubauamt Hannover'),
(107006, 87862, 'en', 'name', 'Office of AIDS Research'),
(107007, 87863, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Main'),
(107008, 87864, 'en', 'name', 'Jiangsu Province Development and Reform Commission'),
(107009, 87864, 'zh', 'name', 'ę±Ÿč‹ēœå‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(107010, 87865, 'en', 'name', 'G. Harold & Leila Y. Mathers Foundation'),
(107011, 87866, 'de', 'name', 'G2W'),
(107012, 87867, 'en', 'name', 'Centre for International Mobility'),
(107013, 87868, 'en', 'name', 'National Institute for Psychobiology'),
(107014, 87868, 'he', 'name', 'המכון הלאומי לפהיכוביולוגיה ×‘×™×©×Ø××œ'),
(107015, 87869, 'fr', 'name', 'Agence wallonne Ơ l''Exportation et aux Investissements Ʃtrangers'),
(107016, 87870, 'en', 'name', 'Savonlinna Central Hospital'),
(107017, 87870, 'fi', 'name', 'Savonlinnan keskussairaala'),
(107018, 87871, 'en', 'name', 'American Society of Overseas Research'),
(107019, 87872, 'en', 'name', 'Shiga University of Medical Science Hospital'),
(107020, 87872, 'ja', 'name', 'ę»‹č³€åŒ»ē§‘å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(107021, 87873, 'no_lang_code', 'name', 'Sumeru Hospital'),
(107022, 87874, 'en', 'name', 'Food and Nutrition Service'),
(107023, 87875, 'en', 'name', 'Innovative Medicines Initiative'),
(107024, 87876, 'en', 'name', 'European Distance and E-Learning Network'),
(107025, 87877, 'en', 'name', 'Government Medical College and Hospital'),
(107026, 87878, 'pt', 'name', 'Escola UniversitƔria das Artes de Coimbra'),
(107027, 87879, 'en', 'name', 'Idaho Academy of Science'),
(107028, 87880, 'en', 'name', 'Buncombe County Schools'),
(107029, 87881, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Nord-Ostsee-Kanal'),
(107030, 87882, 'en', 'name', 'Social Protection Institute of the Republic of Slovenia'),
(107031, 87883, 'no_lang_code', 'name', 'Australian Carbon Innovation'),
(107032, 87884, 'de', 'name', 'Marum'),
(107033, 87885, 'en', 'name', 'Motor Neurone Disease Research Australia'),
(107034, 87886, 'de', 'name', 'Wasserstraßen-Neubauamt Aschaffenburg'),
(107035, 87887, 'en', 'name', 'Canadian Operational Research Society'),
(107036, 87887, 'fr', 'name', 'SociƩtƩ Canadienne de Recherche OpƩrationnelle'),
(107037, 87888, 'en', 'name', 'Graduate Women in Science'),
(107038, 87889, 'de', 'name', 'Landesamt für Landwirtschaft und nachhaltige Landentwicklung'),
(107039, 87890, 'en', 'name', 'American Physiological Society'),
(107040, 87891, 'en', 'name', 'College of Karlovy Vary'),
(107041, 87891, 'cs', 'name', 'VysokÔ Ŕkola Karlovy Vary'),
(107042, 87892, 'en', 'name', 'Kiwifruit Breeding Centre'),
(107043, 87893, 'de', 'name', 'Landesamt für Umwelt'),
(107044, 87894, 'en', 'name', 'Canadian Federation of University Women'),
(107045, 87894, 'fr', 'name', 'FƩdƩration canadienne des femmes diplƓmƩes des universitƩs'),
(107046, 87895, 'en', 'name', 'Guangdong Food and Drug Vocational College'),
(107047, 87895, 'zh', 'name', 'å¹æäøœé£Ÿå“čÆå“čŒäøšå­¦é™¢'),
(107048, 87896, 'en', 'name', 'National Measurement Institute'),
(107049, 87897, 'en', 'name', 'American Institute of Architecture Students'),
(107050, 87898, 'en', 'name', 'Department of Primary Industries and Regional Development'),
(107051, 87899, 'no_lang_code', 'name', 'Seagen (United States)'),
(107052, 87900, 'en', 'name', 'National Research Center for Rehabilitation Technical Aids'),
(107053, 87900, 'zh', 'name', 'å›½å®¶åŗ·å¤č¾…å…·ē ”ē©¶äø­åæƒ'),
(107054, 87901, 'sv', 'name', 'Finska LƤkaresƤllskapet'),
(107055, 87902, 'en', 'name', 'Amateur Chamber Music Players'),
(107056, 87903, 'de', 'name', 'Wasserstraßen-Neubauamt Helmstedt'),
(107057, 87904, 'en', 'name', 'Florida Center for Advanced Aero Propulsion'),
(107058, 87905, 'en', 'name', 'Knowles Teacher Initiative'),
(107059, 87906, 'en', 'name', 'Office of Multicultural Interests'),
(107060, 87907, 'fr', 'name', 'Fondation Alzheimer'),
(107061, 87908, 'en', 'name', 'West Virginia Department of Arts, Culture and History'),
(107062, 87909, 'en', 'name', 'North Carolina Land and Water Fund'),
(107063, 87910, 'en', 'name', 'Illinois Arts Council Agency'),
(107064, 87911, 'no', 'name', 'Barne-, ungdoms- og familiedirektoratet'),
(107065, 87911, 'en', 'name', 'Norwegian Directorate for Children, Youth and Family Affairs'),
(107066, 87912, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Westdeutsche Kanäle'),
(107067, 87913, 'en', 'name', 'Association of Physician Associates in Obstetrics and Gynecology'),
(107068, 87914, 'en', 'name', 'International Maize and Wheat Improvement Center'),
(107069, 87915, 'en', 'name', 'The Hegel Society of Korea'),
(107070, 87915, 'ko', 'name', 'ķ•œźµ­ķ—¤ź²”ķ•™ķšŒ'),
(107071, 87916, 'en', 'name', 'Stationers'' Company'),
(107072, 87917, 'en', 'name', 'Lyda Hill Philanthropies'),
(107073, 87918, 'en', 'name', 'Department of Mines, Industry Regulation and Safety'),
(107074, 87919, 'en', 'name', 'Department of Local Government, Sport and Cultural Industries'),
(107075, 87920, 'en', 'name', 'Parkinson Canada'),
(107076, 87920, 'fr', 'name', 'SociƩtƩ Parkinson Canada'),
(107077, 87921, 'nl', 'name', 'Bibliotheek van het Vredespaleis'),
(107078, 87921, 'fr', 'name', 'BibliothĆØque du Palais de la Paix'),
(107079, 87921, 'en', 'name', 'Peace Palace Library'),
(107080, 87922, 'en', 'name', 'Department of Sport and Recreation'),
(107081, 87923, 'en', 'name', 'Sacred Heart University'),
(107082, 87924, 'en', 'name', 'Ara Parseghian Medical Research Foundation'),
(107083, 87925, 'en', 'name', 'Academy of Fine Arts Münster'),
(107084, 87925, 'de', 'name', 'Kunstakademie Münster'),
(107085, 87926, 'en', 'name', 'Scarring Alopecia Foundation'),
(107086, 87927, 'en', 'name', 'Wenlock District Hospital'),
(107087, 87928, 'en', 'name', 'Kasturba Medical College, Manipal'),
(107088, 87929, 'no_lang_code', 'name', 'Tokyo Metropolitan Komagome Hospital'),
(107089, 87929, 'ja', 'name', 'ę„ŸęŸ“ē—‡ć‚»ćƒ³ć‚æćƒ¼éƒ½ē«‹é§’č¾¼ē—…é™¢'),
(107090, 87930, 'en', 'name', 'Geological Institute'),
(107091, 87930, 'ru', 'name', 'Š“Š•ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(107092, 87931, 'nl', 'name', 'Interuniversitair Cardiologisch Instituut Nederland'),
(107093, 87931, 'en', 'name', 'Netherlands Heart Institute'),
(107094, 87932, 'en', 'name', 'Healthy Communities Foundation'),
(107095, 87933, 'fr', 'name', 'Fondation SantƩ et DƩveloppement Durable'),
(107096, 87934, 'en', 'name', 'Texas Biomedical Research Institute'),
(107097, 87935, 'en', 'name', 'AgriFutures Australia'),
(107098, 87936, 'en', 'name', 'American Psychosocial Oncology Society'),
(107099, 87937, 'de', 'name', 'Wasserstraßen-Neubauamt Heidelberg'),
(107100, 87938, 'en', 'name', 'Race to Erase MS'),
(107101, 87939, 'en', 'name', 'Dr. TMA Pai Hospital'),
(107102, 87940, 'en', 'name', 'Australian Research Data Commons'),
(107103, 87941, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Mittellandkanal / Elbe-Seitenkanal'),
(107104, 87942, 'en', 'name', 'David Center for the American Revolution'),
(107105, 87943, 'hu', 'name', 'Magyar MadÔrtani és Természetvédelmi Egyesület'),
(107106, 87944, 'en', 'name', 'Department of the Premier and Cabinet'),
(107107, 87945, 'en', 'name', 'King Saud Medical City'),
(107108, 87945, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ سعود Ų§Ł„Ų·ŲØŁŠŲ©'),
(107109, 87946, 'en', 'name', 'Chongqing Municipal Health Commission'),
(107110, 87946, 'zh', 'name', 'é‡åŗ†åø‚å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(107111, 87947, 'es', 'name', 'Secretaria de Salud'),
(107112, 87948, 'en', 'name', 'Human Immunome Project'),
(107113, 87949, 'en', 'name', 'Kasturba Medical College Hospital'),
(107114, 87950, 'en', 'name', 'Noble Research Institute'),
(107115, 87951, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Weser'),
(107116, 87952, 'en', 'name', 'Nepal Open University'),
(107117, 87952, 'hi', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤–ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(107118, 87953, 'en', 'name', 'The International Center for Supporting Rights and Freedoms'),
(107119, 87953, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŲÆŁˆŁ„ŁŠ لدعم Ų§Ł„Ų­Ł‚ŁˆŁ‚ ŁˆŲ§Ł„Ų­Ų±ŁŠŲ§ŲŖ'),
(107120, 87954, 'en', 'name', 'Open International University of Human Development Ukraine'),
(107121, 87954, 'uk', 'name', 'ВіГкритий міжнароГний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ Š»ŃŽŠ“ŠøŠ½Šø Україна'),
(107122, 87954, 'ru', 'name', 'ŠžŃ‚ŠŗŃ€Ń‹Ń‚Ń‹Š¹ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ человека Украина'),
(107123, 87955, 'en', 'name', 'Geological Survey of Western Australia'),
(107124, 87956, 'en', 'name', 'International Society for Prosthetics and Orthotics'),
(107125, 87957, 'en', 'name', 'EveryCat Health Foundation'),
(107126, 87958, 'en', 'name', 'Center for Architecture Foundation'),
(107127, 87959, 'en', 'name', 'American Association for Anatomy'),
(107128, 87960, 'en', 'name', 'Chamroeun University of Poly-Technology'),
(107129, 87961, 'en', 'name', 'Christian Museum'),
(107130, 87962, 'en', 'name', 'Institute of Geosciences and Earth Resources'),
(107131, 87962, 'it', 'name', 'Istituto di Geoscienze e Georisorse'),
(107132, 87963, 'de', 'name', 'Landesamt für Landwirtschaft, Umwelt und ländliche Räume'),
(107133, 87964, 'en', 'name', 'Ctl Eurocollege'),
(107134, 87965, 'pt', 'name', 'Campo Arqueologico de Mertola'),
(107135, 87966, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Neckar'),
(107136, 87967, 'en', 'name', 'American Farmland Trust'),
(107137, 87968, 'it', 'name', 'Fondazione Memofonte'),
(107138, 87968, 'en', 'name', 'Memofonte Foundation'),
(107139, 87969, 'en', 'name', 'Defense Forensics and Biometrics Agency'),
(107140, 87970, 'en', 'name', 'Korean Association for Science Education'),
(107141, 87971, 'en', 'name', 'Human Vaccines Project Europe'),
(107142, 87971, 'nl', 'name', 'Stichting Human Vaccines Project Europe'),
(107143, 87972, 'en', 'name', 'Ministry of Education'),
(107144, 87973, 'fr', 'name', 'MinistĆØre du travail, de l''emploi et de l''insertion'),
(107145, 87974, 'id', 'name', 'Universitas Purwakarta'),
(107146, 87975, 'en', 'name', 'Cystinosis Ireland'),
(107147, 87976, 'en', 'name', 'The Women in Medicine Legacy Foundation'),
(107148, 87977, 'en', 'name', 'Japan Technical Association of the Pulp and Paper Industry'),
(107149, 87978, 'sk', 'name', 'Ministerstvo životného prostredia SR'),
(107150, 87978, 'en', 'name', 'Ministry of the Environment of the Slovak Republic'),
(107151, 87979, 'de', 'name', 'Wasserstraßen-Neubauamt Datteln'),
(107152, 87980, 'en', 'name', 'AmeriCorps'),
(107153, 87981, 'en', 'name', 'Aegean College'),
(107154, 87982, 'en', 'name', 'Society of Labor Law Theory and Profession'),
(107155, 87982, 'ko', 'name', 'ģ‚¬ė‹Øė²•ģø ė…øė™ė²•ģ“ė” ģ‹¤ė¬“ķ•™ķšŒ'),
(107156, 87983, 'en', 'name', 'Finnish Transport Safety Agency'),
(107157, 87983, 'fi', 'name', 'Liikenteen turvallisuusvirasto Trafi'),
(107158, 87984, 'en', 'name', 'Peter G. Peterson Foundation'),
(107159, 87985, 'en', 'name', 'HCR Manor Care'),
(107160, 87986, 'en', 'name', 'Dementia Australia'),
(107161, 87987, 'en', 'name', 'Sirindhorn College of Public Health'),
(107162, 87988, 'es', 'name', 'Universidad Alfonso X el Sabio'),
(107163, 87989, 'no_lang_code', 'name', 'Tata Trusts'),
(107164, 87990, 'en', 'name', 'Ames Aeronautical Laboratory'),
(107165, 87991, 'no_lang_code', 'name', 'Fort Wayne Metals (United States)'),
(107166, 87992, 'es', 'name', 'Centro Científico Tecnológico Salta - Jujuy'),
(107167, 87993, 'en', 'name', 'Iowa Space Grant Consortium'),
(107168, 87994, 'en', 'name', 'International Association for Plant Taxonomy'),
(107169, 87995, 'en', 'name', 'Center for the Advancement of Science in Space'),
(107170, 87996, 'en', 'name', 'Clinical Research Unit Nanoro'),
(107171, 87997, 'es', 'name', 'Universidad de Ciencias MƩdicas de Villa Clara'),
(107172, 87998, 'en', 'name', 'Amir Oncology Hospital'),
(107173, 87998, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¢Ł…ŁˆŲ²Ų“ŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų¢Ł†Ś©ŁˆŁ„ŁˆŚ˜ŪŒ Ų§Ł…ŪŒŲ±'),
(107174, 87999, 'es', 'name', 'Instituto de Estudios Sociales'),
(107175, 88000, 'es', 'name', 'Sociedad MatemƔtica Mexicana'),
(107176, 88001, 'en', 'name', 'State Enterprise «All-Ukrainian State Research and Production Center for Standardization, Metrology, Certification and Consumers Rights Protection»'),
(107177, 88001, 'uk', 'name', 'Š”Š•Š Š–ŠŠ’ŠŠ• ŠŸŠ†Š”ŠŸŠ Š˜Š„ŠœŠ”Š¢Š’Šž Ā«Š’Š”Š•Š£ŠšŠ ŠŠ‡ŠŠ”Š¬ŠšŠ˜Š™ Š”Š•Š Š–ŠŠ’ŠŠ˜Š™ ŠŠŠ£ŠšŠžŠ’Šž-Š’Š˜Š ŠžŠ‘ŠŠ˜Š§Š˜Š™ Š¦Š•ŠŠ¢Š  Š”Š¢ŠŠŠ”ŠŠ Š¢Š˜Š—ŠŠ¦Š†Š‡, ŠœŠ•Š¢Š ŠžŠ›ŠžŠ“Š†Š‡, Š”Š•Š Š¢Š˜Š¤Š†ŠšŠŠ¦Š†Š‡ ТА Š—ŠŠ„Š˜Š”Š¢Š£ ŠŸŠ ŠŠ’ Š”ŠŸŠžŠ–Š˜Š’ŠŠ§Š†Š’Ā»'),
(107178, 88002, 'no_lang_code', 'name', 'Geely (China)'),
(107179, 88002, 'zh', 'name', '吉利'),
(107180, 88003, 'no_lang_code', 'name', 'Kadmon Corporation (United States)'),
(107181, 88004, 'en', 'name', 'International Space Station'),
(107182, 88005, 'en', 'name', 'Foundation for Equity and Research New Zealand'),
(107183, 88006, 'es', 'name', 'Centro Espacial Lyndon B. Johnson'),
(107184, 88006, 'en', 'name', 'Johnson Space Center'),
(107185, 88007, 'en', 'name', 'Chicago Botanic Garden'),
(107186, 88008, 'en', 'name', 'White Sands Test Facility'),
(107187, 88009, 'en', 'name', 'NASA Engineering and Safety Center'),
(107188, 88010, 'en', 'name', 'Goddard Institute for Space Studies'),
(107189, 88011, 'fr', 'name', 'Ecole Nationale Supérieure des Forêts'),
(107190, 88011, 'en', 'name', 'Higher National School of Forests'),
(107191, 88012, 'en', 'name', 'New Mexico Economic Development Department'),
(107192, 88013, 'en', 'name', 'University of Educational Management'),
(107193, 88013, 'uk', 'name', 'Університет Š¼ŠµŠ½ŠµŠ“Š¶Š¼ŠµŠ½Ń‚Ńƒ освіти'),
(107194, 88014, 'es', 'name', 'Centro de Investigación y Extensión Forestal Andino Patagónico'),
(107195, 88015, 'en', 'name', 'Suez University'),
(107196, 88015, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŁŠŲ³'),
(107197, 88016, 'en', 'name', 'Alabama Space Grant Consortium'),
(107198, 88017, 'es', 'name', 'Centro Científico Tecnológico - Córdoba'),
(107199, 88018, 'no_lang_code', 'name', 'Ichor Life Sciences (United States)'),
(107200, 88019, 'no_lang_code', 'name', 'Shepherd Chemicals (United States)'),
(107201, 88020, 'en', 'name', 'Banner Gateway Medical Center'),
(107202, 88021, 'en', 'name', 'FH JOANNEUM University of Applied Sciences'),
(107203, 88021, 'de', 'name', 'FH Joanneum'),
(107204, 88022, 'en', 'name', 'Glenn Research Center'),
(107205, 88023, 'en', 'name', 'Alberta Environment and Protected Areas'),
(107206, 88024, 'en', 'name', 'Industrial Research Limited'),
(107207, 88025, 'pt', 'name', 'Associação Brasileira de Linguística'),
(107208, 88025, 'en', 'name', 'Brazilian Linguistics Association'),
(107209, 88026, 'no_lang_code', 'name', 'Cyberstar (France)'),
(107210, 88027, 'en', 'name', 'Arab Private University for Science and Technology'),
(107211, 88027, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© الخاصة Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(107212, 88028, 'en', 'name', 'Yemen Academy for Graduate Studies'),
(107213, 88028, 'ar', 'name', 'Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„ŁŠŁ…Ł†ŁŠŲ© للدراسات Ų§Ł„Ų¹Ł„ŁŠŲ§'),
(107214, 88029, 'no_lang_code', 'name', 'Inprentus (United States)'),
(107215, 88030, 'no_lang_code', 'name', 'Anax Laboratories (India)'),
(107216, 88031, 'en', 'name', 'Saint Lucia Bureau of Standards'),
(107217, 88032, 'no_lang_code', 'name', 'Lucid Motors (United States)'),
(107218, 88033, 'pt', 'name', 'Unimed Curitiba'),
(107219, 88034, 'en', 'name', 'Digital Scholar (United States)'),
(107220, 88035, 'no_lang_code', 'name', 'Pinney Associates (United States)'),
(107221, 88036, 'no_lang_code', 'name', 'Global Thermostat (United States)'),
(107222, 88037, 'en', 'name', 'Ministry of Commerce, Industry and Investment Promotion'),
(107223, 88037, 'ar', 'name', 'وزارة التجارة و الصناعة وترويج الاستثما'),
(107224, 88038, 'en', 'name', 'Government of Ukraine'),
(107225, 88038, 'uk', 'name', 'ŠšŠ°Š±Ń–Š½ŠµŃ‚ ŠœŃ–Š½Ń–ŃŃ‚Ń€Ń–Š² України'),
(107226, 88039, 'es', 'name', 'Centro de Recursos Naturales Renovables de la Zona SemiƔrida'),
(107227, 88040, 'en', 'name', 'Packet Clearing House'),
(107228, 88041, 'de', 'name', 'Albert-Ludwigs-UniversitƤt Freiburg'),
(107229, 88041, 'en', 'name', 'University of Freiburg'),
(107230, 88042, 'no_lang_code', 'name', 'Edgewise Therapeutics (United States)'),
(107231, 88043, 'no_lang_code', 'name', 'KJKP Sarajevogas (Bosnia-Herzegovina)'),
(107232, 88044, 'en', 'name', 'Harlem Hospital Center'),
(107233, 88045, 'en', 'name', 'National Science and Technology Library'),
(107234, 88045, 'zh', 'name', 'å›½å®¶ē§‘ęŠ€å›¾ä¹¦ę–‡ēŒ®äø­åæƒ'),
(107235, 88046, 'es', 'name', 'Hospital ClĆ­nico Universitario Virgen de la Victoria'),
(107236, 88047, 'no_lang_code', 'name', 'BPS Bioscience (United States)'),
(107237, 88048, 'es', 'name', 'Hospital Universitario Virgen del RocĆ­o'),
(107238, 88048, 'en', 'name', 'Virgen del RocĆ­o University Hospital'),
(107239, 88049, 'en', 'name', 'OpenResearch (United States)'),
(107240, 88050, 'no_lang_code', 'name', 'Curium (United Kingdom)'),
(107241, 88051, 'no_lang_code', 'name', 'John Crane (United States)'),
(107242, 88052, 'es', 'name', 'Instituto de Investigación y Desarrollo en Bioingeniería y BioinformÔtica'),
(107243, 88053, 'en', 'name', 'Neil A. Armstrong Test Facility'),
(107244, 88054, 'en', 'name', 'NASA Shared Services Center'),
(107245, 88055, 'no_lang_code', 'name', 'PulseRay (United States)'),
(107246, 88056, 'en', 'name', 'Child Care And Youth Empowerment Foundation'),
(107247, 88057, 'no_lang_code', 'name', 'Novalex Therapeutics (United States)'),
(107248, 88058, 'no_lang_code', 'name', 'X-Spectrum (Germany)'),
(107249, 88059, 'no_lang_code', 'name', 'Curium (France)'),
(107250, 88060, 'en', 'name', 'Oregon Space Grant Consortium'),
(107251, 88061, 'no_lang_code', 'name', 'Helix Biostructures (United States)'),
(107252, 88062, 'en', 'name', 'Infrared Processing and Analysis Center'),
(107253, 88063, 'en', 'name', 'Yale Peabody Museum'),
(107254, 88064, 'es', 'name', 'Centro de Estudios, Medición y Certificación de Calidad'),
(107255, 88065, 'es', 'name', 'Unidad Ejecutora Lillo'),
(107256, 88066, 'no_lang_code', 'name', 'Iris Light Technologies (United States)'),
(107257, 88067, 'no_lang_code', 'name', 'MyoKardia (United States)'),
(107258, 88068, 'en', 'name', 'Banner Poison and Drug Information Center'),
(107259, 88069, 'no_lang_code', 'name', 'Form Energy (United States)'),
(107260, 88070, 'en', 'name', 'Earth System Science Interdisciplinary Center'),
(107261, 88071, 'fr', 'name', 'ISIPCA'),
(107262, 88072, 'es', 'name', 'Instituto de Botanica Darwinion'),
(107263, 88073, 'no_lang_code', 'name', 'Pro-Metrics (Estonia)'),
(107264, 88074, 'no_lang_code', 'name', 'Improved Pharma (United States)'),
(107265, 88075, 'es', 'name', 'Centro Científico Tecnológico - San Juan'),
(107266, 88076, 'es', 'name', 'Hospital de Montilla'),
(107267, 88077, 'en', 'name', 'Directorate General for Specifications and Measurements'),
(107268, 88078, 'en', 'name', 'Indiana Space Grant Consortium'),
(107269, 88079, 'no_lang_code', 'name', 'Pajarito Powder (United States)'),
(107270, 88080, 'en', 'name', 'Katherine Johnson Independent Verification and Validation Facility'),
(107271, 88081, 'en', 'name', 'Banner Heart Hospital'),
(107272, 88082, 'es', 'name', 'Centro Científico Tecnológico - Patagonia Norte'),
(107273, 88083, 'en', 'name', 'Ministry of the Environment'),
(107274, 88084, 'es', 'name', 'Centro Científico Tecnológico - TucumÔn'),
(107275, 88085, 'en', 'name', 'Volodymyr Vynnychenko Central Ukrainian State University'),
(107276, 88085, 'uk', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВолоГимира Винниченка'),
(107277, 88086, 'no_lang_code', 'name', 'Finnish Research and Engineering (Finland)'),
(107278, 88087, 'no_lang_code', 'name', 'Capsida Biotherapeutics (United States)'),
(107279, 88088, 'en', 'name', 'The Federal State Budget Scientific Institution "Institute of Special Education"'),
(107280, 88088, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коррекционной пеГагогики»'),
(107281, 88089, 'id', 'name', 'Sekolah Tinggi Agama Kristen Teruna Bhakti'),
(107282, 88090, 'es', 'name', 'Instituto Multidisciplinario de BiologĆ­a Vegetal'),
(107283, 88090, 'en', 'name', 'Multidisciplinary Institute of Plant Biology'),
(107284, 88091, 'no_lang_code', 'name', 'Shoei Chemical (Japan)'),
(107285, 88091, 'ja', 'name', 'ę˜­ę „åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(107286, 88092, 'en', 'name', 'Aircraft Engine Research Laboratory'),
(107287, 88093, 'en', 'name', 'Jordan University of Science and Technology'),
(107288, 88093, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(107289, 88094, 'no_lang_code', 'name', 'C12 Quantum Electronics (France)'),
(107290, 88095, 'no_lang_code', 'name', 'Axalta Coating Systems (United States)'),
(107291, 88096, 'pt', 'name', 'ABRAN - Associação Brasileira de Nutrologia'),
(107292, 88096, 'en', 'name', 'ABRAN - Brazilian Association of Nutrology'),
(107293, 88097, 'nl', 'name', 'Nationaal Lucht- en Ruimtevaartlaboratorium'),
(107294, 88097, 'en', 'name', 'Netherlands Aerospace Centre'),
(107295, 88098, 'no_lang_code', 'name', 'State Grid Nanjing Power Supply Company (China)'),
(107296, 88098, 'zh', 'name', 'å›½ē½‘ę±Ÿč‹ēœē”µåŠ›ęœ‰é™å…¬åø'),
(107297, 88099, 'en', 'name', 'Virginia Space Grant Consortium'),
(107298, 88100, 'es', 'name', 'Museo Paleontológico Egidio Feruglio'),
(107299, 88100, 'en', 'name', 'Museum of Paleontology Egidio Feruglio'),
(107300, 88101, 'no_lang_code', 'name', 'Appco Pharma (United States)'),
(107301, 88102, 'es', 'name', 'Instituto de Química y Fisicoquímica Biológicas'),
(107302, 88103, 'en', 'name', 'Banner MD Anderson Cancer Center'),
(107303, 88104, 'en', 'name', 'Clarion University'),
(107304, 88105, 'bs', 'name', 'Institut za vode doo Bijeljina'),
(107305, 88106, 'sv', 'name', 'Chalmers Industriteknik'),
(107306, 88107, 'en', 'name', 'Argentine-German Geodetic Observatory'),
(107307, 88107, 'de', 'name', 'Argentinisch-Deutsche GeodƤtische Observatorium'),
(107308, 88107, 'es', 'name', 'Observatorio Argentino-AlemƔn de Geodesia'),
(107309, 88108, 'en', 'name', 'Muroc Army Air Base'),
(107310, 88109, 'en', 'name', 'Stennis Space Center'),
(107311, 88110, 'en', 'name', 'Institute of Legal Informatics and Judicial Systems'),
(107312, 88110, 'it', 'name', 'Istituto di Informatica Giuridica e Sistemi Giudiziari'),
(107313, 88111, 'no_lang_code', 'name', 'K&L Gates (United States)'),
(107314, 88112, 'es', 'name', 'Ministerio de Desarrollo Rural y Tierras'),
(107315, 88112, 'en', 'name', 'Ministry of Rural Development and Lands'),
(107316, 88113, 'en', 'name', 'DECHEMA Research Institute'),
(107317, 88113, 'de', 'name', 'DECHEMA-Forschungsinstitut'),
(107318, 88114, 'en', 'name', 'Tashkent State Transport University'),
(107319, 88114, 'uz', 'name', 'Toshkent temir yoʻl muhandislari instituti'),
(107320, 88114, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инженеров железноГорожного транспорта'),
(107321, 88115, 'pt', 'name', 'Centro UniversitÔrio União Dinâmica das Cataratas'),
(107322, 88116, 'es', 'name', 'Instituto de Tecnologías en Detección y Astropartículas'),
(107323, 88117, 'no_lang_code', 'name', 'Solution Engineering (United States)'),
(107324, 88118, 'en', 'name', 'National Space Science and Technology Center'),
(107325, 88119, 'en', 'name', 'Biochemical Society'),
(107326, 88120, 'en', 'name', 'Edinboro University'),
(107327, 88121, 'en', 'name', 'National Synchrotron Radiation Research Center'),
(107328, 88121, 'zh', 'name', 'åœ‹å®¶åŒę­„č¼»å°„ē ”ē©¶äø­åæƒ;'),
(107329, 88122, 'es', 'name', 'Hospital Universitario Virgen Macarena'),
(107330, 88123, 'es', 'name', 'Instituto de Ciencia y TecnologĆ­a de los Alimentos de Entre RĆ­os'),
(107331, 88124, 'no_lang_code', 'name', 'Advantech (United States)'),
(107332, 88125, 'no_lang_code', 'name', 'China National Petroleum Corporation (China)'),
(107333, 88125, 'zh', 'name', 'å¤§åŗ†ę²¹ē”°ęœ‰é™č“£ä»»å…¬åøę²¹ē”°å»ŗč®¾č®¾č®”ē ”ē©¶é™¢'),
(107334, 88126, 'no_lang_code', 'name', 'ExOne (United States)'),
(107335, 88127, 'en', 'name', 'National Advisory Committee for Aeronautics'),
(107336, 88128, 'en', 'name', 'Health Research Institute of the Balearic Islands'),
(107337, 88128, 'ca', 'name', 'Institut d''Investigació Sanitària Illes Balears'),
(107338, 88128, 'es', 'name', 'Instituto de Investigación Sanitaria Illes Balears'),
(107339, 88129, 'no_lang_code', 'name', 'Odyssey Therapeutics (United States)'),
(107340, 88130, 'es', 'name', 'Laboratorio Tecnológico del Uruguay'),
(107341, 88131, 'en', 'name', 'California University of Pennsylvania'),
(107342, 88132, 'en', 'name', 'Maine Space Grant Consortium'),
(107343, 88133, 'no_lang_code', 'name', 'Alcorix (United States)'),
(107344, 88134, 'no_lang_code', 'name', 'Hyundai Kefico (South Korea)'),
(107345, 88134, 'ko', 'name', 'ķ˜„ėŒ€ģ¼€ķ”¼ģ½”'),
(107346, 88135, 'en', 'name', 'NASA Research Park'),
(107347, 88136, 'en', 'name', 'Trinidad and Tobago Bureau of Standards'),
(107348, 88137, 'en', 'name', 'Glenbrook North High School'),
(107349, 88138, 'no_lang_code', 'name', 'Hyperion Materials & Technologies (United States)'),
(107350, 88139, 'no_lang_code', 'name', 'TerraPower (United States)'),
(107351, 88140, 'no_lang_code', 'name', 'Hansoh Pharma (China)'),
(107352, 88140, 'zh', 'name', 'ę±‰ē“¢åˆ¶čÆ'),
(107353, 88141, 'en', 'name', 'Innovation and Technology Commission'),
(107354, 88141, 'zh', 'name', 'å‰µę–°ē§‘ęŠ€ē½²'),
(107355, 88142, 'no_lang_code', 'name', 'Erasca (United States)'),
(107356, 88143, 'es', 'name', 'Centro Científico Tecnológico - Nordeste'),
(107357, 88144, 'en', 'name', 'Institute of Legal Information Theory and Techniques'),
(107358, 88144, 'it', 'name', 'Istituto di Teoria e Tecniche dell’Informazione Giuridica'),
(107359, 88145, 'no_lang_code', 'name', 'aixACCT Systems (United States)'),
(107360, 88146, 'no_lang_code', 'name', 'Hansoh Bio (United States)'),
(107361, 88147, 'en', 'name', 'Allen Institute'),
(107362, 88148, 'fr', 'name', 'Centre FranƧais des Ɖtudes Ɖthiopiennes'),
(107363, 88149, 'no_lang_code', 'name', 'HathiTrust'),
(107364, 88150, 'en', 'name', 'Dutch Language Institute'),
(107365, 88150, 'nl', 'name', 'Instituut voor de Nederlandse Taal'),
(107366, 88151, 'es', 'name', 'Instituto Nacional de Innovación Agropecuaria y Forestal'),
(107367, 88152, 'en', 'name', 'National Science and Technology Center for Disaster Reduction'),
(107368, 88152, 'zh', 'name', 'åœ‹å®¶ē½å®³é˜²ę•‘ē§‘ęŠ€äø­åæƒ'),
(107369, 88153, 'es', 'name', 'Centro Científico Tecnológico Mar del Plata'),
(107370, 88154, 'es', 'name', 'Centro Científico Tecnológico Patagónico'),
(107371, 88155, 'en', 'name', 'Nuclear Energy Research Institute'),
(107372, 88156, 'no_lang_code', 'name', 'Desktop Metal (United States)'),
(107373, 88157, 'en', 'name', 'Mechnikov Institute of Microbiology and Immunology'),
(107374, 88157, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŃ–ŠŗŃ€Š¾Š±Ń–Š¾Š»Š¾Š³Ń–Ń— та Š†Š¼ŃƒŠ½Š¾Š»Š¾Š³Ń–Ń— ім. І. І. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(107375, 88158, 'no_lang_code', 'name', 'FluxSense AB (Sweden)'),
(107376, 88159, 'en', 'name', 'New Mexico Space Grant Consortium'),
(107377, 88160, 'en', 'name', 'Delta Waterfowl Foundation'),
(107378, 88161, 'es', 'name', 'Centro Científico Tecnólogico - Rosario'),
(107379, 88162, 'no_lang_code', 'name', 'Aurobay (Sweden)'),
(107380, 88163, 'en', 'name', 'Mississippi Space Grant Consortium'),
(107381, 88164, 'es', 'name', 'Colombiana de Trasplantes'),
(107382, 88165, 'en', 'name', 'Kurdistan Technical Institute'),
(107383, 88165, 'ku', 'name', 'Ł¾Ū•ŪŒŁ…Ų§Ł†ŚÆŪ•ŪŒ ŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ Ś©ŁˆŲ±ŲÆŲ³ŲŖŲ§Ł†'),
(107384, 88166, 'en', 'name', 'Institute of Encyclopedic Research'),
(107385, 88166, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ енциклопеГичних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України"'),
(107386, 88167, 'no_lang_code', 'name', 'aixACCT Systems (Germany)'),
(107387, 88168, 'mi', 'name', 'Manatū Ahu Matua'),
(107388, 88168, 'en', 'name', 'Ministry for Primary Industries'),
(107389, 88169, 'en', 'name', 'Research Institute for Advanced Computer Science'),
(107390, 88170, 'en', 'name', 'ICAR - National Meat Research Institute'),
(107391, 88170, 'hi', 'name', 'ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ- ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ मांस ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(107392, 88171, 'no_lang_code', 'name', 'GCP Applied Technologies (United States)'),
(107393, 88172, 'es', 'name', 'Centro Científico Tecnológico - San Luis'),
(107394, 88173, 'no_lang_code', 'name', 'Cogent Biosciences (United States)'),
(107395, 88174, 'no_lang_code', 'name', 'Rio Tinto (Canada)'),
(107396, 88175, 'no_lang_code', 'name', 'Hitachi High-Tech (Japan)'),
(107397, 88175, 'ja', 'name', 'ę—„ē«‹ćƒć‚¤ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(107398, 88176, 'en', 'name', 'Training Centre in Communication'),
(107399, 88177, 'no_lang_code', 'name', 'Phase 3D (United States)'),
(107400, 88178, 'no_lang_code', 'name', 'Vita Nuova (United Kingdom)'),
(107401, 88179, 'no_lang_code', 'name', 'Sylvatex (United States)'),
(107402, 88180, 'de', 'name', 'Generaldirektion Wasserstraßen und Schifffahrt'),
(107403, 88181, 'en', 'name', 'Dana-Farber Brigham Cancer Center'),
(107404, 88182, 'en', 'name', 'Plum Island Ecosystems Long Term Ecological Research'),
(107405, 88183, 'en', 'name', 'Center for Neuro-Oncology'),
(107406, 88184, 'en', 'name', 'Cheshire and Wirral Partnership NHS Foundation Trust'),
(107407, 88185, 'no_lang_code', 'name', 'New Technologies and Services (Russia)'),
(107408, 88185, 'ru', 'name', 'ŠŠ¾Š²Ń‹Šµ Технологии'),
(107409, 88186, 'es', 'name', 'Hospital Universitario de Valme'),
(107410, 88187, 'no_lang_code', 'name', 'Instrumentation Technologies (Slovenia)'),
(107411, 88188, 'es', 'name', 'Centro Científico Tecnológico - Santa Fe'),
(107412, 88189, 'fr', 'name', 'Association Neurofibromatoses et Recklinghausen'),
(107413, 88190, 'it', 'name', 'Istituto di Ricerca sui Sistemi Giudiziari'),
(107414, 88190, 'en', 'name', 'The Research Institute on Judicial Systems'),
(107415, 88191, 'en', 'name', 'Aero Institute');
INSERT INTO `ror_settings` VALUES
(107416, 88192, 'es', 'name', 'Centro de Referencia de Investigación, Desarrollo e Innovación ATM'),
(107417, 88192, 'en', 'name', 'Reference Center for Research, Development and Innovation in ATM'),
(107418, 88193, 'no_lang_code', 'name', 'Volvo Cars (Sweden)'),
(107419, 88194, 'pt', 'name', 'Faculdade Ceres'),
(107420, 88195, 'en', 'name', 'Canteen'),
(107421, 88196, 'en', 'name', 'Taichung Municipal Taichung First Senior High School'),
(107422, 88196, 'zh', 'name', 'č‡ŗäø­åø‚ē«‹č‡ŗäø­ē¬¬äø€é«˜ē“šäø­ē­‰å­øę ”'),
(107423, 88197, 'no_lang_code', 'name', 'Advantech (Taiwan)'),
(107424, 88198, 'en', 'name', 'World Association for Disaster and Emergency Medicine'),
(107425, 88199, 'no_lang_code', 'name', 'FogPharma (United States)'),
(107426, 88200, 'en', 'name', 'Clermont-Ferrand’s Superior National School of Chemistry'),
(107427, 88200, 'fr', 'name', 'Ɖcole nationale supĆ©rieure de chimie de Clermont-Ferrand'),
(107428, 88201, 'no_lang_code', 'name', 'Namazi Hospital'),
(107429, 88201, 'fa', 'name', 'Ł…Ų¹Ų±ŁŪŒ ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł†Ł…Ų§Ų²ŪŒ'),
(107430, 88202, 'no_lang_code', 'name', 'Kairos Power (United States)'),
(107431, 88203, 'en', 'name', 'Portland Press'),
(107432, 88204, 'en', 'name', 'Knud HĆøjgaards Foundation'),
(107433, 88205, 'en', 'name', 'Louisiana Space Grant Consortium'),
(107434, 88206, 'no_lang_code', 'name', 'Zymtronix (United States)'),
(107435, 88207, 'fr', 'name', 'Centre de Vol Spatial Marshall'),
(107436, 88207, 'es', 'name', 'Centro Marshall de Vuelos Espaciales'),
(107437, 88207, 'en', 'name', 'Marshall Space Flight Center'),
(107438, 88208, 'no_lang_code', 'name', 'Hitachi Astemo (Japan)'),
(107439, 88208, 'ja', 'name', 'ę—„ē«‹Astemo'),
(107440, 88209, 'en', 'name', 'Bonanza Creek Long Term Ecological Research'),
(107441, 88210, 'no_lang_code', 'name', 'NASA Astrobiology Institute'),
(107442, 88211, 'no_lang_code', 'name', 'Hitachi (Japan)'),
(107443, 88211, 'ja', 'name', 'ę—„ē«‹č£½ä½œę‰€'),
(107444, 88212, 'en', 'name', 'NASA Safety Center'),
(107445, 88213, 'en', 'name', 'National Institute of Airborne Acoustic Metrology'),
(107446, 88214, 'en', 'name', 'Andalas University'),
(107447, 88214, 'id', 'name', 'Universitas Andalas'),
(107448, 88215, 'en', 'name', 'Jordan Research and Training Reactor'),
(107449, 88215, 'ar', 'name', 'مفاعل الأبحاث ŁˆŲ§Ł„ŲŖŲÆŲ±ŁŠŲØ Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ'),
(107450, 88216, 'no_lang_code', 'name', 'Opcondys (United States)'),
(107451, 88217, 'en', 'name', 'Mimika District General Hospital'),
(107452, 88217, 'id', 'name', 'Rumah Sakit Umum Daerah Kabupaten Mimika'),
(107453, 88218, 'no_lang_code', 'name', 'Husch Blackwell LLP (United States)'),
(107454, 88219, 'es', 'name', 'Instituto Tecnológico de Chascomús'),
(107455, 88220, 'de', 'name', 'Deutsche Geophysikalische Gesellschaft e.V.'),
(107456, 88220, 'en', 'name', 'German Geophysical Society'),
(107457, 88221, 'no_lang_code', 'name', 'Plug Power (United States)'),
(107458, 88222, 'de', 'name', 'FOSSGIS'),
(107459, 88223, 'no_lang_code', 'name', 'AlphaPortfolio (United States)'),
(107460, 88224, 'no_lang_code', 'name', 'Chemours (United States)'),
(107461, 88225, 'en', 'name', 'Advocacy Unified Network'),
(107462, 88226, 'en', 'name', 'Qom University of Medical Science and Health Services'),
(107463, 88226, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی قم'),
(107464, 88227, 'en', 'name', 'Banner Del E Webb Medical Center'),
(107465, 88228, 'en', 'name', 'Idaho Space Grant Consortium'),
(107466, 88229, 'no_lang_code', 'name', 'NanoPattern Technologies (United States)'),
(107467, 88230, 'en', 'name', 'Ez-Zitouna University'),
(107468, 88230, 'fr', 'name', 'UniversitƩ Ez-Zitouna'),
(107469, 88230, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų©'),
(107470, 88231, 'no_lang_code', 'name', 'DisChem (United States)'),
(107471, 88232, 'no_lang_code', 'name', 'Frontier Medicines (United States)'),
(107472, 88233, 'en', 'name', 'National Gear Metrology Laboratory'),
(107473, 88234, 'en', 'name', 'Magtymguly Turkmen State University'),
(107474, 88234, 'tk', 'name', 'Magtymguly adyndaky Türkmen döwlet uniwersiteti'),
(107475, 88235, 'no_lang_code', 'name', 'AKHAN Semiconductor (United States)'),
(107476, 88236, 'en', 'name', 'Bernardino Rivadavia Natural Sciences Museum'),
(107477, 88236, 'es', 'name', 'Museo Argentino de Ciencias Naturales Bernardino Rivadavia'),
(107478, 88237, 'fr', 'name', 'Institut National de Recherches et d''Analyses Physico-chimiques'),
(107479, 88237, 'en', 'name', 'National Institute of Research and Physico and Chemical Analysis'),
(107480, 88238, 'no_lang_code', 'name', 'Dragonfly Therapeutics (United States)'),
(107481, 88239, 'pt', 'name', 'Instituto CTEM+'),
(107482, 88240, 'de', 'name', 'Hugo Grotius'),
(107483, 88241, 'en', 'name', 'Armstrong Flight Research Center'),
(107484, 88241, 'es', 'name', 'Centro Dryden de Investigaciones de Vuelo'),
(107485, 88242, 'en', 'name', 'Costa Rican Institute of Electricity'),
(107486, 88242, 'es', 'name', 'Instituto Costarricense de Electricidad'),
(107487, 88243, 'en', 'name', 'Indian Institute of Information Technology Sri City'),
(107488, 88243, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¶ą„ą¤°ą„€ ą¤øą¤æą¤Ÿą„€'),
(107489, 88244, 'en', 'name', 'Unmanned Aerial Vehicle Collaborative'),
(107490, 88245, 'en', 'name', 'Maharishi Vedic Research Institute'),
(107491, 88246, 'no_lang_code', 'name', 'IniXium (Canada)'),
(107492, 88247, 'no_lang_code', 'name', 'Qlab Analytical Laboratory (Greece)'),
(107493, 88248, 'en', 'name', 'New England Botanical Club'),
(107494, 88249, 'es', 'name', 'Complejo Hospitalario de Salamanca'),
(107495, 88250, 'en', 'name', 'Mugda Medical College'),
(107496, 88250, 'bn', 'name', 'মুগদা মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(107497, 88251, 'en', 'name', 'Iowa Department of Transportation'),
(107498, 88252, 'fi', 'name', 'OLVI-SƤƤtiƶ'),
(107499, 88253, 'en', 'name', 'ICTP South American Institute for Fundamental Research'),
(107500, 88254, 'pt', 'name', 'Hospital UniversitƔrio GaffrƩe e Guinle'),
(107501, 88255, 'en', 'name', 'Langley Memorial Aeronautical Laboratory'),
(107502, 88256, 'en', 'name', 'ESCP Business School'),
(107503, 88257, 'en', 'name', 'Doncaster and Bassetlaw Teaching Hospitals NHS Foundation Trust'),
(107504, 88258, 'en', 'name', 'Henri-Mondor University Hospital'),
(107505, 88258, 'fr', 'name', 'HƓpitaux Universitaires Henri-Mondor'),
(107506, 88259, 'en', 'name', 'Belize Bureau of Standards'),
(107507, 88260, 'en', 'name', 'New Mexico Department of Game and Fish'),
(107508, 88261, 'es', 'name', 'Instituto Tecnológico de Ciudad JuÔrez'),
(107509, 88261, 'en', 'name', 'Technological Institute of Ciudad JuƔrez'),
(107510, 88262, 'de', 'name', 'Ernst Gƶhner Stiftung'),
(107511, 88263, 'es', 'name', 'Hospital Christus Muguerza Alta Especialidad'),
(107512, 88264, 'en', 'name', 'American Malacological Society'),
(107513, 88265, 'sv', 'name', 'Gyllenstiernska Krapperupsstiftelsen'),
(107514, 88266, 'en', 'name', 'ESCP Business School'),
(107515, 88267, 'en', 'name', 'United States Army Medical Research Directorate - West'),
(107516, 88268, 'en', 'name', 'Birmingham Children''s Hospital'),
(107517, 88269, 'en', 'name', 'International Iguana Foundation'),
(107518, 88270, 'en', 'name', 'Calleva Foundation'),
(107519, 88271, 'en', 'name', 'Global Young Academy'),
(107520, 88272, 'en', 'name', 'Dominica Bureau of Standards'),
(107521, 88273, 'no_lang_code', 'name', 'Vonova (United States)'),
(107522, 88274, 'en', 'name', 'Pushchino Scientific Center for Biological Research'),
(107523, 88274, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Ā«ŠŸŃƒŃ‰ŠøŠ½ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр биологических исслеГований Российской АкаГемии наук»'),
(107524, 88275, 'en', 'name', 'Dorrance Family Foundation'),
(107525, 88276, 'en', 'name', 'Office of the Royal Society'),
(107526, 88276, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø£ąø²ąøŠąøšąø±ąø“ąø‘ąø“ąø•ąø¢ąøŖąø ąø²'),
(107527, 88277, 'en', 'name', 'University of New Hampshire'),
(107528, 88277, 'fr', 'name', 'UniversitƩ du New Hampshire'),
(107529, 88278, 'fr', 'name', 'Fondation Richard-Lounsbery'),
(107530, 88278, 'en', 'name', 'Richard Lounsbery Foundation'),
(107531, 88279, 'es', 'name', 'Asociación de Ornitólogos de Campo'),
(107532, 88279, 'en', 'name', 'Association of Field Ornithologists'),
(107533, 88279, 'pt', 'name', 'Associação de Ornitólogos de Campo'),
(107534, 88280, 'en', 'name', 'Muley Fanatic Foundation'),
(107535, 88281, 'no_lang_code', 'name', 'Emerson Collective (United States)'),
(107536, 88282, 'nl', 'name', 'Ministerie van Economische Zaken, Ondernemerschap en Technologische Innovatie'),
(107537, 88282, 'en', 'name', 'Ministry of Economic Affairs, Entrepreneurship and Technological Innovation'),
(107538, 88283, 'en', 'name', 'Neotropical Bird Club'),
(107539, 88284, 'no_lang_code', 'name', 'Syngenta (France)'),
(107540, 88285, 'en', 'name', 'Doncaster Royal Infirmary'),
(107541, 88286, 'en', 'name', 'Center of New Drugs for Hypertension'),
(107542, 88287, 'en', 'name', 'Ames Research Center'),
(107543, 88287, 'es', 'name', 'Centro de Investigación Ames'),
(107544, 88288, 'de', 'name', 'Institut für Unternehmenskybernetik'),
(107545, 88289, 'no', 'name', 'Oslo Nye HĆøyskole'),
(107546, 88290, 'en', 'name', 'Fiona Wood Foundation'),
(107547, 88291, 'en', 'name', 'United States Army Medical Research Directorate - Africa'),
(107548, 88292, 'en', 'name', 'American Friends of the Alexander von Humboldt Foundation'),
(107549, 88293, 'en', 'name', 'Ichimura Foundation of New Technology'),
(107550, 88293, 'ja', 'name', 'åø‚ę‘ęø…ę–°ęŠ€č”“č²”å›£'),
(107551, 88294, 'en', 'name', 'European Society for Paediatric Research'),
(107552, 88295, 'fr', 'name', 'ExpƩdition MED'),
(107553, 88296, 'en', 'name', 'High Meadows Foundation'),
(107554, 88297, 'en', 'name', 'Bell Museum of Natural History'),
(107555, 88298, 'no_lang_code', 'name', 'AmƩlie - Ʃtudes environnementales et archƩologiques (France)'),
(107556, 88299, 'it', 'name', 'Confederazione Generale Italiana del Lavoro'),
(107557, 88300, 'en', 'name', 'Galapagos Conservation Trust'),
(107558, 88301, 'en', 'name', 'Saint Vincent and the Grenadines Bureau of Standards'),
(107559, 88302, 'no_lang_code', 'name', 'Pūrangakura'),
(107560, 88303, 'fr', 'name', 'Sciences Po Lille'),
(107561, 88304, 'es', 'name', 'Junta de Beneficencia de Guayaquil'),
(107562, 88305, 'en', 'name', 'United States Army Medical Directorate - Armed Forces Research Institute of Medical Sciences'),
(107563, 88306, 'en', 'name', 'California Ocean Protection Council'),
(107564, 88307, 'en', 'name', 'Society for Academic Facilitation and Extension'),
(107565, 88308, 'en', 'name', 'Temerty Family Foundation'),
(107566, 88309, 'no', 'name', 'L. Meltzers HĆøyskolefond'),
(107567, 88310, 'en', 'name', 'Winifred Violet Scott Charitable Trust'),
(107568, 88311, 'en', 'name', 'Radiation Biophysics Laboratory'),
(107569, 88312, 'nl', 'name', 'Vogelbescherming Nederland'),
(107570, 88313, 'fr', 'name', 'Centre MƩdical de La Teppe'),
(107571, 88314, 'en', 'name', 'Paris Biotech SantƩ'),
(107572, 88315, 'it', 'name', 'Osservatorio di Astrofisica e Scienza dello Spazio'),
(107573, 88316, 'en', 'name', 'Guyana National Bureau of Standards'),
(107574, 88317, 'en', 'name', 'Tiny Blue Dot Foundation'),
(107575, 88318, 'no_lang_code', 'name', 'Oritain (New Zealand)'),
(107576, 88319, 'en', 'name', 'International Higher School of Medicine'),
(107577, 88319, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š’Ń‹ŃŃˆŠ°Ń Школа ŠœŠµŠ“ицины'),
(107578, 88319, 'ky', 'name', 'Š­Š» аралык Š–Š¾Š³Š¾Ń€ŠŗŃƒ ŠœŠµŠ“ŠøŃ†ŠøŠ½Š°Š»Ń‹Šŗ ŠœŠµŠŗŃ‚ŠµŠ±Šø'),
(107579, 88320, 'de', 'name', 'PƤdagogisches Landesinstitut Rheinland-Pfalz'),
(107580, 88321, 'fr', 'name', 'Ecole SupƩrieure en GƩnie Electrique et EnergƩtique d''Oran'),
(107581, 88322, 'es', 'name', 'Cabildo de Tenerife'),
(107582, 88323, 'no_lang_code', 'name', 'Cryopep (France)'),
(107583, 88324, 'pt', 'name', 'Escola Superior de CiĆŖncias da SaĆŗde'),
(107584, 88325, 'es', 'name', 'Instituto Milenio de Física Subatómica en la Frontera de Altas Energías, Saphir'),
(107585, 88325, 'en', 'name', 'Millennium Institute for Subatomic Physics at High-Energy Frontier, Saphir'),
(107586, 88326, 'en', 'name', 'Minnesota Agricultural Experiment Station'),
(107587, 88327, 'en', 'name', 'Utah Department of Transportation'),
(107588, 88328, 'en', 'name', 'Saint Kitts and Nevis Bureau of Standards'),
(107589, 88329, 'en', 'name', 'Yellowstone to Yukon Conservation Initiative'),
(107590, 88330, 'es', 'name', 'Laboratorio Nacional de Materiales y Modelos Estructurales'),
(107591, 88331, 'en', 'name', 'Central Institute For Subtropical Horticulture'),
(107592, 88331, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤‰ą¤Ŗą„‹ą¤·ą„ą¤£ ą¤¬ą¤¾ą¤—ą¤µą¤¾ą¤Øą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(107593, 88332, 'en', 'name', 'Michigan Botanical Foundation'),
(107594, 88333, 'en', 'name', 'The Herbert Wertheim UF Scripps Institute for Biomedical Innovation & Technology'),
(107595, 88334, 'es', 'name', 'Instituto de Investigación Biomédica de Salamanca'),
(107596, 88335, 'en', 'name', 'Marisla Foundation'),
(107597, 88336, 'en', 'name', 'National Institute of Allergy and Infectious Diseases'),
(107598, 88337, 'id', 'name', 'Politeknik Negeri Tanah Laut'),
(107599, 88338, 'en', 'name', 'Cornell Lab of Ornithology'),
(107600, 88339, 'no_lang_code', 'name', 'Globeride (Japan)'),
(107601, 88340, 'fr', 'name', 'GERFLINT'),
(107602, 88341, 'en', 'name', 'Peninsula Open Space Trust'),
(107603, 88342, 'fr', 'name', 'SupƩlec'),
(107604, 88343, 'no', 'name', 'Patentstyret'),
(107605, 88344, 'nl', 'name', 'Vlaamse Interuniversitaire Raad'),
(107606, 88345, 'no_lang_code', 'name', 'KWS Momont (France)'),
(107607, 88346, 'en', 'name', 'Nick Simons Foundation'),
(107608, 88347, 'fr', 'name', 'ISblue'),
(107609, 88348, 'en', 'name', 'Ernst Ruska Centre'),
(107610, 88348, 'de', 'name', 'Ernst Ruska-Centrum'),
(107611, 88349, 'en', 'name', 'Australian Society of Herpetologists'),
(107612, 88350, 'en', 'name', 'Walter Reed Army Institute of Research'),
(107613, 88351, 'en', 'name', 'Earl H. and Ethel M. Myers Oceanographic and Marine Biology Trust'),
(107614, 88352, 'fr', 'name', 'Ecole supƩrieure d''art | Dunkerque - Tourcoing'),
(107615, 88353, 'en', 'name', 'Gerstner Philanthropies'),
(107616, 88354, 'en', 'name', 'Public Knowledge Project'),
(107617, 88355, 'en', 'name', 'The Oppenheimer Memorial Trust'),
(107618, 88356, 'en', 'name', 'Forest Resource Improvement Association of Alberta'),
(107619, 88357, 'en', 'name', 'David Suzuki Foundation'),
(107620, 88357, 'fr', 'name', 'Fondation David Suzuki'),
(107621, 88358, 'es', 'name', 'Sociedad de Aves MarĆ­timas'),
(107622, 88358, 'en', 'name', 'The Waterbird Society'),
(107623, 88359, 'en', 'name', 'California Waterfowl Association'),
(107624, 88360, 'en', 'name', 'Korea National Arboretum'),
(107625, 88360, 'ko', 'name', 'źµ­ė¦½ģˆ˜ėŖ©ģ›'),
(107626, 88361, 'en', 'name', 'Galapagos Conservancy'),
(107627, 88362, 'sv', 'name', 'Waldemar von Frenckells Stiftelse'),
(107628, 88363, 'en', 'name', 'Zegar Family Foundation'),
(107629, 88364, 'en', 'name', 'Langley Research Center'),
(107630, 88365, 'en', 'name', 'Foundation for Food and Agriculture Research'),
(107631, 88366, 'en', 'name', 'American Indonesian Exchange Foundation'),
(107632, 88367, 'pt', 'name', 'Instituto Serrapilheira'),
(107633, 88368, 'en', 'name', 'Philomathia Foundation'),
(107634, 88369, 'en', 'name', 'International Cytokine & Interferon Society'),
(107635, 88370, 'en', 'name', 'Ministry of Trade, Industry and Fisheries'),
(107636, 88371, 'en', 'name', 'Hyogo University of Health Sciences'),
(107637, 88371, 'ja', 'name', 'å…µåŗ«åŒ»ē™‚å¤§å­¦'),
(107638, 88372, 'es', 'name', 'Academia Joven de EspaƱa'),
(107639, 88373, 'en', 'name', 'Australasian Systematic Botany Society'),
(107640, 88374, 'es', 'name', 'Refinadora Costarricense de Petróleo'),
(107641, 88375, 'de', 'name', 'Zeppelin Universität gemeinnützige GmbH'),
(107642, 88376, 'en', 'name', 'Sorenson Legacy Foundation'),
(107643, 88377, 'no_lang_code', 'name', 'Dynasol Group (Spain)'),
(107644, 88378, 'fr', 'name', 'GIP CEI'),
(107645, 88379, 'en', 'name', 'ESCP Business School'),
(107646, 88380, 'en', 'name', 'Healthcare Research Unit'),
(107647, 88380, 'es', 'name', 'Unidad de Investigación en cuidados y servicios de salud (Investén-isciii)'),
(107648, 88381, 'en', 'name', 'Bologna Astronomical Observatory'),
(107649, 88381, 'it', 'name', 'Osservatorio astronomico di Bologna'),
(107650, 88382, 'en', 'name', 'AF Jochnick Foundation'),
(107651, 88383, 'en', 'name', 'Knobloch Family Foundation'),
(107652, 88384, 'de', 'name', 'Institut Jugend Film Fernsehen'),
(107653, 88385, 'en', 'name', 'ESCP Business School'),
(107654, 88386, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture et de Paysage de Lille'),
(107655, 88387, 'pt', 'name', 'Instituto Histórico da Ilha Terceira'),
(107656, 88388, 'en', 'name', 'Adlerbertska Foundations'),
(107657, 88389, 'en', 'name', 'Royal Thai Army'),
(107658, 88389, 'th', 'name', 'ąøąø­ąø‡ąø—ąø±ąøžąøšąøą¹„ąø—ąø¢'),
(107659, 88390, 'en', 'name', 'American Malting Barley Association'),
(107660, 88391, 'en', 'name', 'The Sackler Trust'),
(107661, 88392, 'no_lang_code', 'name', 'Fluor Marine Propulsion (United States)'),
(107662, 88393, 'en', 'name', 'American Arachnological Society'),
(107663, 88394, 'en', 'name', 'Coypu Foundation'),
(107664, 88395, 'fr', 'name', 'Bureau des Longitudes'),
(107665, 88396, 'en', 'name', 'Auckland Council'),
(107666, 88396, 'mi', 'name', 'Te Kaunihera o Tāmaki Makaurau'),
(107667, 88397, 'fr', 'name', 'Ɖcole Centrale Paris'),
(107668, 88398, 'en', 'name', 'United States Army Medical Research Directorate - Georgia'),
(107669, 88399, 'en', 'name', 'Sustainable Forestry Initiative'),
(107670, 88400, 'en', 'name', 'Kansas Wheat Commission'),
(107671, 88401, 'fr', 'name', 'UnitƩ de Recherche Interdisplinaire Octogone'),
(107672, 88402, 'en', 'name', 'Pennsylvania Game Commission'),
(107673, 88403, 'en', 'name', 'International Coral Reef Society'),
(107674, 88404, 'en', 'name', 'Dayton School District'),
(107675, 88405, 'en', 'name', 'Armed Forces Research Institute of Medical Science'),
(107676, 88405, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø§ąø“ąøˆąø±ąø¢ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąøąø²ąø£ą¹ąøžąø—ąø¢ą¹Œąø—ąø«ąø²ąø£'),
(107677, 88406, 'en', 'name', 'University of Mianwali'),
(107678, 88407, 'en', 'name', 'The Mary E. Groff Charitable Trust'),
(107679, 88408, 'no_lang_code', 'name', 'Daiwa Pharmaceutical Co. (Japan)'),
(107680, 88408, 'ja', 'name', 'å¤§å’Œč–¬å“ę Ŗå¼ä¼šē¤¾'),
(107681, 88409, 'fr', 'name', 'EuromƩtropole de Strasbourg'),
(107682, 88410, 'it', 'name', 'Rassegna Sindacale'),
(107683, 88411, 'en', 'name', 'Barbados National Standards Institution'),
(107684, 88412, 'fr', 'name', 'Agence Nationale de MƩtrologie'),
(107685, 88412, 'ar', 'name', 'Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…ŲŖŲ±ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(107686, 88413, 'en', 'name', 'University of Miami Health System'),
(107687, 88414, 'de', 'name', 'Bernd Thies-Stiftung'),
(107688, 88415, 'no', 'name', 'Departementenes sikkerhets- og serviceorganisasjon'),
(107689, 88415, 'en', 'name', 'Norwegian Government Security and Service Organisation'),
(107690, 88416, 'no_lang_code', 'name', 'JTEC Corporation (Japan)'),
(107691, 88416, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ†ćƒƒć‚Æć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(107692, 88417, 'en', 'name', 'Western Illinois University'),
(107693, 88418, 'en', 'name', 'Rocky Mountain Elk Foundation'),
(107694, 88419, 'en', 'name', 'Leibniz Institute for Neurobiology'),
(107695, 88419, 'de', 'name', 'Leibniz-Institut für Neurobiologie'),
(107696, 88420, 'fr', 'name', 'AcadƩmie de recherche et d''enseignement supƩrieur'),
(107697, 88421, 'en', 'name', 'Erasmus MC Cardiovascular Institute'),
(107698, 88421, 'nl', 'name', 'Erasmus MC Hart en Vaat Instituut'),
(107699, 88422, 'de', 'name', 'Heinrich Bƶll Stiftung'),
(107700, 88423, 'en', 'name', 'AI Sweden'),
(107701, 88424, 'en', 'name', 'Higher Education Complex of Bam'),
(107702, 88424, 'fa', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ ŲØŁ…'),
(107703, 88425, 'no_lang_code', 'name', 'Exploration and Development Research Institute of PetroChina Southwest Oil & Gas Field Company (China)'),
(107704, 88425, 'zh', 'name', 'äø­å›½ēŸ³ę²¹č„æå—ę²¹ę°”ē”°å…¬åøå‹˜ęŽ¢å¼€å‘ē ”ē©¶é™¢'),
(107705, 88426, 'it', 'name', 'Istituto di Astrofisica Spaziale e Fisica Cosmica di Bologna'),
(107706, 88427, 'en', 'name', 'Wet Tropics Management Authority'),
(107707, 88428, 'en', 'name', 'Henry L. and Grace Doherty Charitable Foundation'),
(107708, 88429, 'en', 'name', 'Australian Academy of Health and Medical Sciences'),
(107709, 88430, 'fr', 'name', 'Institut de Chirurgie GuidƩe par l''Image'),
(107710, 88430, 'en', 'name', 'Institute of Image-Guided Surgery'),
(107711, 88431, 'en', 'name', 'Genetics Society'),
(107712, 88432, 'en', 'name', 'Tasmanian Government'),
(107713, 88433, 'es', 'name', 'Universidad Católica de la Santísima Concepción'),
(107714, 88434, 'fr', 'name', 'Fondation SantƩ des Ʃtudiants de France'),
(107715, 88435, 'en', 'name', 'Wisconsin Potato and Vegetable Growers Association'),
(107716, 88436, 'en', 'name', 'Garfield Weston Foundation'),
(107717, 88437, 'id', 'name', 'STIKes Wira Medika Bali'),
(107718, 88438, 'en', 'name', 'AndrƩs Bello University'),
(107719, 88438, 'es', 'name', 'Universidad AndrƩs Bello'),
(107720, 88439, 'en', 'name', 'American University of Europe'),
(107721, 88439, 'mk', 'name', 'Š¤ŠžŠ Универзитет'),
(107722, 88440, 'es', 'name', 'Instituto de BiologĆ­a Marina y Pesquera Almirante Storni'),
(107723, 88441, 'en', 'name', 'Antigua and Barbuda Bureau of Standards'),
(107724, 88442, 'fr', 'name', 'ComitƩ National de Coordination de la Recherche'),
(107725, 88443, 'fr', 'name', 'Maison des Sciences de l’Homme et de la SociĆ©tĆ© de Toulouse'),
(107726, 88444, 'no_lang_code', 'name', 'Fluor (United States)'),
(107727, 88445, 'en', 'name', 'National University of Tainan'),
(107728, 88445, 'zh', 'name', 'åœ‹ē«‹č‡ŗå—å¤§å­ø'),
(107729, 88446, 'en', 'name', 'Ocean Frontier Institute'),
(107730, 88447, 'en', 'name', 'Grenada Bureau of Standards'),
(107731, 88448, 'en', 'name', 'The University of Texas Health Science Center'),
(107732, 88449, 'fr', 'name', 'Saint-Gobain Recherche Paris'),
(107733, 88450, 'en', 'name', 'The Danish Veteran Centre'),
(107734, 88450, 'da', 'name', 'Veterancentret'),
(107735, 88451, 'en', 'name', 'Department of Conservation'),
(107736, 88452, 'en', 'name', 'Social Program Evaluators & Consultants, Inc.'),
(107737, 88453, 'fr', 'name', 'ISEN MƩditerranƩe'),
(107738, 88454, 'en', 'name', 'Historical Commission at the Bavarian Academy of Sciences and Humanities'),
(107739, 88454, 'de', 'name', 'Historische Kommission bei der Bayerischen Akademie der Wissenschaften'),
(107740, 88455, 'en', 'name', 'Jilin Academy of Agricultural Sciences'),
(107741, 88455, 'zh', 'name', 'å‰ęž—ēœå†œäøšē§‘å­¦é™¢'),
(107742, 88456, 'de', 'name', 'BIO Deutschland'),
(107743, 88457, 'pl', 'name', 'Narodowy Instytut Onkologii im. Marii Skłodowskiej-Curie Państwowy Instytut Badawczy'),
(107744, 88457, 'en', 'name', 'The Maria Sklodowska-Curie National Research Institute of Oncology'),
(107745, 88458, 'en', 'name', 'National University Cancer Institute, Singapore'),
(107746, 88459, 'ga', 'name', 'An Roinn Comhshaoil, AerƔide agus CumarsƔide'),
(107747, 88459, 'en', 'name', 'Department of the Environment, Climate and Communications'),
(107748, 88460, 'en', 'name', 'National Center for Ecological Analysis and Synthesis'),
(107749, 88461, 'fr', 'name', 'HƓpitaux de Saint Maurice'),
(107750, 88462, 'en', 'name', 'Southern Research Station'),
(107751, 88463, 'en', 'name', 'Cape Town HVTN Immunology Laboratory / Hutchinson Centre Research Institute of South Africa'),
(107752, 88464, 'en', 'name', 'Cochrane'),
(107753, 88465, 'en', 'name', 'Einstein Forum'),
(107754, 88466, 'en', 'name', 'Center for Scientific Integrity'),
(107755, 88467, 'en', 'name', 'Royal Society of Biology'),
(107756, 88468, 'en', 'name', 'Forestry Commission England'),
(107757, 88469, 'en', 'name', 'Kerman University of Medical Sciences'),
(107758, 88469, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی کرمان'),
(107759, 88470, 'en', 'name', 'Tokyo Metropolitan Tama Medical Center'),
(107760, 88470, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å¤šę‘©ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(107761, 88471, 'en', 'name', 'Al-Furqan Islamic Heritage Foundation'),
(107762, 88472, 'de', 'name', 'Katholische UniversitƤt vom Heiligen Herzen'),
(107763, 88472, 'sl', 'name', 'KatoliŔka univerza Srca Jezusovega'),
(107764, 88472, 'ca', 'name', 'Universitat Catòlica del Sagrat Cor'),
(107765, 88472, 'it', 'name', 'UniversitĆ  Cattolica del Sacro Cuore'),
(107766, 88473, 'en', 'name', 'IBS Center for Climate Physics'),
(107767, 88474, 'en', 'name', 'Belnet'),
(107768, 88475, 'de', 'name', 'Historische Kommission zu Berlin e.V.'),
(107769, 88476, 'no_lang_code', 'name', 'Chement (United States)'),
(107770, 88477, 'de', 'name', 'Arnold-Bergstraesser-Institut'),
(107771, 88478, 'fr', 'name', 'Centre Européen de Recherche en Economie Financière et Gestion des Entreprises'),
(107772, 88478, 'es', 'name', 'Centro Europeo de Investigación en Economía Financiera y Gestión Empresaria'),
(107773, 88478, 'en', 'name', 'European Center for Research in Financial Economics and Business Management'),
(107774, 88478, 'de', 'name', 'Europäische Zentrum für Forschung in Finanzökonomie und Unternehmensführung'),
(107775, 88479, 'en', 'name', 'University of Quebec'),
(107776, 88479, 'fr', 'name', 'UniversitƩ du QuƩbec'),
(107777, 88480, 'no_lang_code', 'name', 'Juris (Germany)'),
(107778, 88481, 'no_lang_code', 'name', 'InfoEd Global (United States)'),
(107779, 88482, 'de', 'name', 'Institut für Ostrecht'),
(107780, 88482, 'en', 'name', 'Institute for East European Law'),
(107781, 88483, 'fr', 'name', 'Ɖcole nationale supĆ©rieure de la photographie'),
(107782, 88484, 'en', 'name', 'Hutchinson Centre Research Institute in Uganda'),
(107783, 88485, 'tr', 'name', 'Türk Tarih Kurumu'),
(107784, 88486, 'en', 'name', 'Bear Fight Institute'),
(107785, 88487, 'en', 'name', 'Food Packaging Forum Foundation'),
(107786, 88488, 'en', 'name', 'Fraunhofer Research Institution for Materials Recycling and Resource Strategies IWKS'),
(107787, 88488, 'de', 'name', 'Fraunhofer-Einrichtung für Wertstoffkreisläufe und Ressourcenstrategie IWKS'),
(107788, 88489, 'en', 'name', 'Ohio University Chillicothe'),
(107789, 88490, 'en', 'name', 'Emilia-Romagna Region'),
(107790, 88490, 'it', 'name', 'Regione Emilia-Romagna'),
(107791, 88491, 'no_lang_code', 'name', 'DataONE'),
(107792, 88492, 'en', 'name', 'Brand University of Applied Science Hamburg'),
(107793, 88493, 'en', 'name', 'Hessen Forest'),
(107794, 88493, 'de', 'name', 'HessenForst'),
(107795, 88494, 'de', 'name', 'Forschungsstelle für Zeitgeschichte in Hamburg'),
(107796, 88495, 'en', 'name', 'Free University of Stuttgart'),
(107797, 88495, 'de', 'name', 'Freie Hochschule Stuttgart'),
(107798, 88496, 'de', 'name', 'Fachhochschule für Interkulturelle Theologie Hermannsburg'),
(107799, 88497, 'fr', 'name', 'Semae'),
(107800, 88498, 'pl', 'name', 'Pomorska Szkoła Wyższa w Starogardzie Gdańskim'),
(107801, 88499, 'en', 'name', 'Congo Research Papers'),
(107802, 88500, 'no_lang_code', 'name', 'Carlson Caspers (United States)'),
(107803, 88501, 'en', 'name', 'Japanese-German Center Berlin'),
(107804, 88501, 'de', 'name', 'Japanisch-Deutsches Zentrum Berlin'),
(107805, 88501, 'ja', 'name', 'ćƒ™ćƒ«ćƒŖćƒ³ę—„ē‹¬ć‚»ćƒ³ć‚æćƒ¼'),
(107806, 88502, 'en', 'name', 'B. K. Mody Government Pharmacy College'),
(107807, 88503, 'de', 'name', 'Faserinstitut Bremen'),
(107808, 88504, 'de', 'name', 'Hochschule der bildenden Künste Essen'),
(107809, 88504, 'en', 'name', 'University of Fine Arts Essen'),
(107810, 88505, 'de', 'name', 'Deutscher Ethikrat'),
(107811, 88506, 'en', 'name', 'Yamashita Thyroid Hospital'),
(107812, 88506, 'ja', 'name', 'ć‚„ć¾ć—ćŸē”²ēŠ¶č…ŗē—…é™¢'),
(107813, 88507, 'es', 'name', 'Escuela Nacional de Salud PĆŗblica'),
(107814, 88508, 'no_lang_code', 'name', 'Vianode (Norway)'),
(107815, 88509, 'fr', 'name', 'Centre de Recherche de l''Institut de DƩmographie de l''UniversitƩ Paris 1'),
(107816, 88510, 'de', 'name', 'Alemannisches Institut'),
(107817, 88511, 'en', 'name', 'European Plate Observing System'),
(107818, 88512, 'fr', 'name', 'IPC – FacultĆ©s Libres de Philosophie et de Psychologie'),
(107819, 88513, 'en', 'name', 'BF/M-Bayreuth'),
(107820, 88514, 'en', 'name', 'Dharmsinh Desai University'),
(107821, 88515, 'en', 'name', 'Lucile Packard Foundation for Childrens Health'),
(107822, 88516, 'de', 'name', 'Institut für Qualitätssicherung und Transparenz im Gesundheitswesen'),
(107823, 88516, 'en', 'name', 'Institute for Quality Assurance and Transparency in Healthcare'),
(107824, 88517, 'fr', 'name', 'Ɖcole nationale supĆ©rieure d''arts de Paris-Cergy'),
(107825, 88518, 'en', 'name', 'Institute of Reflective Investigation and Specialization'),
(107826, 88518, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Рефлексивних Š”Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ & Дпеціалізації'),
(107827, 88518, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рефлексивных исслеГований Šø специализаций'),
(107828, 88519, 'en', 'name', 'Imec the Netherlands'),
(107829, 88520, 'fr', 'name', 'Ɖcole nationale supĆ©rieure de la Police'),
(107830, 88521, 'no_lang_code', 'name', 'Horizon Therapeutics (United Kingdom)'),
(107831, 88522, 'no_lang_code', 'name', 'ArianeGroup (France)'),
(107832, 88523, 'en', 'name', 'Australian Institute of Aboriginal and Torres Strait Islander Studies'),
(107833, 88524, 'en', 'name', 'Landmark University'),
(107834, 88525, 'no_lang_code', 'name', 'Syngenta (Switzerland)'),
(107835, 88526, 'de', 'name', 'Institut für Steinkonservierung e.V.'),
(107836, 88526, 'en', 'name', 'Institute for Stone Conservation'),
(107837, 88527, 'de', 'name', 'ESAB Fachhochschule für Sport und Management Potsdam'),
(107838, 88528, 'de', 'name', 'Hochschule für Kirchenmusik der Diözese Rottenburg-Stuttgart'),
(107839, 88528, 'en', 'name', 'University of Church Music of the Diocese of Rottenburg-Stuttgart'),
(107840, 88529, 'en', 'name', 'Myelopathy.org'),
(107841, 88530, 'fr', 'name', 'Conseil RƩgional des Hauts-de-France'),
(107842, 88531, 'en', 'name', 'Joint Institute of the Dalian University of Technology and Belarusian State University'),
(107843, 88531, 'zh', 'name', 'å¤§čæžē†å·„å¤§å­¦ē™½äæ„ē½—ę–Æå›½ē«‹å¤§å­¦č”åˆå­¦é™¢ ē”µčÆ'),
(107844, 88532, 'en', 'name', 'Ohio University Lancaster'),
(107845, 88533, 'en', 'name', 'North Dakota University System'),
(107846, 88534, 'de', 'name', 'Institut für Bildungsmonitoring und Qualitätsentwicklung'),
(107847, 88534, 'en', 'name', 'Institute for Educational Monitoring and Quality Development'),
(107848, 88535, 'de', 'name', 'Zentrum für Luft- und Raumfahrtmedizin der Luftwaffe'),
(107849, 88536, 'en', 'name', 'Ministry of Economic Development, Job Creation and Trade'),
(107850, 88536, 'fr', 'name', 'MinistĆØre du DĆ©veloppement Ɖconomique de la CrĆ©ation d’Emplois et du Commerce'),
(107851, 88537, 'en', 'name', 'Sidney Kimmel Cancer Center'),
(107852, 88538, 'fr', 'name', 'Caisse nationale de l''assurance vieillesse'),
(107853, 88539, 'no_lang_code', 'name', 'Nallamuthu Gounder Mahalingam College'),
(107854, 88540, 'en', 'name', 'Padmashri Dr. V. B. Kolte College of Engineering, Malkapur'),
(107855, 88540, 'mr', 'name', 'ą¤Ŗą¤¦ą„ą¤®ą¤¶ą„ą¤°ą„€ ą¤”ą„‰ ą¤µą„ą¤¹ą„€ ą¤¬ą„€ ą¤•ą„‹ą¤²ą¤¤ą„‡ ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ ą¤‡ą¤‚ą¤œą¤æą¤Øą„€ą¤…ą¤°ą¤æą¤‚ą¤—, ą¤®ą¤²ą¤•ą¤¾ą¤Ŗą„‚ą¤°'),
(107856, 88541, 'en', 'name', 'The US Oncology Network'),
(107857, 88542, 'en', 'name', 'A.V. Zhirmunsky National Scientific Center of Marine Biology Far Eastern Branch of the Russian Academy of Sciences'),
(107858, 88542, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки "ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр морской биологии им. А.Š’. Š–ŠøŃ€Š¼ŃƒŠ½ŃŠŗŠ¾Š³Š¾" Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(107859, 88543, 'en', 'name', 'Evangelical Church of Westphalia'),
(107860, 88543, 'de', 'name', 'Evangelische Kirche von Westfalen'),
(107861, 88544, 'en', 'name', 'National University Health System'),
(107862, 88544, 'zh', 'name', 'å›½ē«‹å¤§å­¦åŒ»å­¦ē»„ē»‡'),
(107863, 88545, 'tr', 'name', 'İstanbul Nişantaşı Üniversitesi'),
(107864, 88546, 'de', 'name', 'Neue Materialien Bayreuth GmbH'),
(107865, 88547, 'en', 'name', 'Government of Lower Austria'),
(107866, 88547, 'de', 'name', 'Land Niederosterreich'),
(107867, 88548, 'de', 'name', 'Arzneimittelkommission der deutschen Ƅrzteschaft'),
(107868, 88549, 'no_lang_code', 'name', 'Roche (United States)'),
(107869, 88550, 'fr', 'name', 'Institut national du patrimoine'),
(107870, 88551, 'de', 'name', 'Bremer Institut für Produktion und Logistik GmbH'),
(107871, 88552, 'en', 'name', 'University of Pittsburgh Medical Center'),
(107872, 88553, 'en', 'name', 'National Kaohsiung University of Applied Sciences'),
(107873, 88554, 'fr', 'name', 'ISART Digital'),
(107874, 88555, 'fr', 'name', 'PĆ“le d’Expertise de la RĆ©gulation NumĆ©rique'),
(107875, 88556, 'en', 'name', 'Agostino Gemelli University Polyclinic'),
(107876, 88556, 'it', 'name', 'Fondazione Policlinico Universitario Agostino Gemelli'),
(107877, 88557, 'fr', 'name', 'GEVES'),
(107878, 88558, 'it', 'name', 'Corte di giustizia dell''Unione europea'),
(107879, 88558, 'fr', 'name', 'Cour de justice de l''Union europƩenne'),
(107880, 88558, 'en', 'name', 'Court of Justice of the European Union'),
(107881, 88558, 'ro', 'name', 'Curtea de Justiție a Uniunii Europene'),
(107882, 88558, 'ga', 'name', 'CĆŗirt BhreithiĆŗnais an Aontais Eorpaigh'),
(107883, 88558, 'da', 'name', 'Den EuropƦiske Unions Domstol'),
(107884, 88558, 'lv', 'name', 'Eiropas Savienības Tiesa'),
(107885, 88558, 'et', 'name', 'Euroopa Liidu Kohus'),
(107886, 88558, 'fi', 'name', 'Euroopan unionin tuomioistuin'),
(107887, 88558, 'sv', 'name', 'Europeiska unionens domstol'),
(107888, 88558, 'lt', 'name', 'Europos Sąjungos Teisingumo Teismas'),
(107889, 88558, 'de', 'name', 'Gerichtshof der EuropƤischen Union'),
(107890, 88558, 'nl', 'name', 'Hof van Justitie van de Europese Unie'),
(107891, 88558, 'mt', 'name', 'Il-Qorti tal-Ä ustizzja tal-Unjoni Ewropea'),
(107892, 88558, 'sl', 'name', 'SodiŔče Evropske unije'),
(107893, 88558, 'cs', 'name', 'Soudní dvůr Evropské unie'),
(107894, 88558, 'hr', 'name', 'Sud Europske unije'),
(107895, 88558, 'sk', 'name', 'Súdny dvor Európskej únie'),
(107896, 88558, 'es', 'name', 'Tribunal de Justicia de la Unión Europea'),
(107897, 88558, 'pt', 'name', 'Tribunal de Justiça da União Europeia'),
(107898, 88558, 'pl', 'name', 'Trybunał Sprawiedliwości Unii Europejskiej'),
(107899, 88558, 'hu', 'name', 'az Európai Unió BírósÔga'),
(107900, 88558, 'el', 'name', 'Ī”Ī¹ĪŗĪ±ĻƒĻ„Ī®ĻĪ¹Īæ της Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĪ®Ļ‚ ĪˆĪ½Ļ‰ĻƒĪ·Ļ‚'),
(107901, 88558, 'bg', 'name', 'ДъГ на Š•Š²Ń€Š¾ŠæŠµŠ¹ŃŠŗŠøŃ ŃŃŠŃŽŠ·'),
(107902, 88559, 'en', 'name', 'Lusófona University of Porto'),
(107903, 88559, 'pt', 'name', 'Universidade Lusófona do Porto'),
(107904, 88560, 'en', 'name', 'Group for Research in Decision Analysis'),
(107905, 88561, 'de', 'name', 'Hochschule für Gesellschaftsgestaltung'),
(107906, 88562, 'en', 'name', 'Southern Illinois University Carbondale'),
(107907, 88562, 'es', 'name', 'Universidad del Sur de Illinois Carbondale'),
(107908, 88562, 'fr', 'name', 'UniversitƩ du sud de l''illinois Ơ carbondale'),
(107909, 88563, 'de', 'name', 'Kommission für Archäologische Landesforschung in Hessen e.V.'),
(107910, 88564, 'en', 'name', 'Cordoba Private University'),
(107911, 88564, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© قرطبة الخاصة'),
(107912, 88565, 'en', 'name', 'Government Polytechnic College, Rajkot'),
(107913, 88566, 'no_lang_code', 'name', 'Messer (Germany)'),
(107914, 88567, 'de', 'name', 'Konstanzer Arbeitskreis für Mittelalterliche Geschichte e.V.'),
(107915, 88568, 'en', 'name', 'Environmental System Science Data Infrastructure for a Virtual Ecosystem'),
(107916, 88569, 'en', 'name', 'National Kaohsiung Marine University'),
(107917, 88569, 'zh', 'name', 'åœ‹ē«‹é«˜é›„ęµ·ę“‹ē§‘ęŠ€å¤§å­ø'),
(107918, 88570, 'en', 'name', 'Dilla University'),
(107919, 88570, 'am', 'name', 'į‹²įˆ‹ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(107920, 88571, 'en', 'name', 'Moscow Psycho-Social University'),
(107921, 88571, 'ru', 'name', 'Московский психолого-ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(107922, 88572, 'de', 'name', 'Neue Materialien Fürth GmbH'),
(107923, 88573, 'en', 'name', 'Ohio University Southern'),
(107924, 88574, 'no_lang_code', 'name', 'Customcells Itzehoe GmbH (Germany)'),
(107925, 88575, 'en', 'name', 'Leibniz Institute for the Analysis of Biodiversity Change'),
(107926, 88575, 'de', 'name', 'Leibniz-Institut zur Analyse des BiodiversitƤtswandels'),
(107927, 88576, 'en', 'name', 'Ural State Medical University'),
(107928, 88576, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(107929, 88577, 'en', 'name', 'International Communication Association'),
(107930, 88578, 'en', 'name', 'National Kaohsiung First University of Science and Technology'),
(107931, 88579, 'en', 'name', 'Alzheimer''s Society'),
(107932, 88580, 'en', 'name', 'Henry Ford Health + Michigan State University Health Sciences'),
(107933, 88581, 'de', 'name', 'Bundesanstalt für Geowissenschaften und Rohstoffe'),
(107934, 88581, 'en', 'name', 'Federal Institute for Geosciences and Natural Resources'),
(107935, 88582, 'ga', 'name', 'An Roinn EalaĆ­on, Oidhreachta agus Gaeltachta'),
(107936, 88582, 'en', 'name', 'Department of Culture, Heritage and the Gaeltacht'),
(107937, 88583, 'de', 'name', 'Rheinische Fachhochschule Neuss'),
(107938, 88584, 'en', 'name', 'National Cancer Centre Japan'),
(107939, 88584, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹ćŒć‚“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(107940, 88585, 'es', 'name', 'Universidad de San Isidro "Dr. PlƔcido Marƭn"'),
(107941, 88586, 'de', 'name', 'Institut für Oberflächen- und Schichtanalytik GmbH'),
(107942, 88587, 'de', 'name', 'Wehrtechnische Dienststelle für Schiffe und Marinewaffen, Maritime Technologie und Forschung'),
(107943, 88588, 'en', 'name', 'Edinburgh Cancer Research'),
(107944, 88589, 'en', 'name', 'National Nanotechnology Research Center'),
(107945, 88589, 'tr', 'name', 'Ulusal Nanoteknoloji Araştırma Merkezi'),
(107946, 88590, 'no_lang_code', 'name', 'Rhodia (France)'),
(107947, 88591, 'no_lang_code', 'name', 'SAXSLAB (Denmark)'),
(107948, 88592, 'en', 'name', 'Tokyo Metropolitan Tama-Hokubu Medical Center'),
(107949, 88592, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å¤šę‘©åŒ—éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(107950, 88593, 'no_lang_code', 'name', 'Studio CEVAS'),
(107951, 88594, 'fr', 'name', 'Centre Technique Industriel de la Plasturgie et des Composites'),
(107952, 88595, 'en', 'name', 'Cancer Care Centers of Brevard'),
(107953, 88596, 'no_lang_code', 'name', 'DSM (Netherlands)'),
(107954, 88597, 'es', 'name', 'Organismo Autónomo Parques Nacionales'),
(107955, 88598, 'fr', 'name', 'Adaptateurs de Signalisation en HƩmatologie'),
(107956, 88599, 'es', 'name', 'Museo Histórico Municipal de Ecija'),
(107957, 88600, 'no_lang_code', 'name', 'International Diamond Services (United States)'),
(107958, 88601, 'en', 'name', 'Chica and Heinz Schaller Foundation'),
(107959, 88602, 'de', 'name', 'Zentrum für Telematik'),
(107960, 88603, 'en', 'name', 'Hanoi University of Mining and Geology'),
(107961, 88603, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Mį» - Địa chįŗ„t'),
(107962, 88604, 'en', 'name', 'Baptist Cancer Center'),
(107963, 88605, 'en', 'name', 'Greater Paris Sanitation Authority'),
(107964, 88605, 'fr', 'name', 'Syndicat InterdƩpartemental pour l''Assainissement de l''AgglomƩration Parisienne'),
(107965, 88606, 'de', 'name', 'Fachagentur Windenergie an Land'),
(107966, 88607, 'de', 'name', 'Behörde für Schule und Berufsbildung'),
(107967, 88608, 'en', 'name', 'Brain Research UK'),
(107968, 88609, 'en', 'name', 'Cancer Institute (WIA)'),
(107969, 88610, 'de', 'name', 'Doerner Institut'),
(107970, 88611, 'en', 'name', 'Kohsar University Murree'),
(107971, 88612, 'en', 'name', 'National Kaohsiung University of Science and Technology'),
(107972, 88612, 'zh', 'name', 'åœ‹ē«‹é«˜é›„ē§‘ęŠ€å¤§å­ø'),
(107973, 88613, 'de', 'name', 'Institut für Pharmakologie und Toxikologie der Bundeswehr'),
(107974, 88614, 'no_lang_code', 'name', 'Safran Ceramics (France)'),
(107975, 88615, 'en', 'name', 'Gansu Provincial Science and Technology Department'),
(107976, 88616, 'en', 'name', 'Comprehensive Cancer Centers of Nevada'),
(107977, 88617, 'es', 'name', 'Escriba. Escuela de Escritores'),
(107978, 88618, 'en', 'name', 'Aichi Synchrotron Radiation Center'),
(107979, 88618, 'ja', 'name', 'ć‚ć„ć”ć‚·ćƒ³ć‚Æćƒ­ćƒˆćƒ­ćƒ³å…‰ć‚»ćƒ³ć‚æćƒ¼'),
(107980, 88619, 'de', 'name', 'Institut für Radiobiologie der Bundeswehr'),
(107981, 88620, 'en', 'name', 'Zoological Research Museum Alexander Koenig'),
(107982, 88620, 'de', 'name', 'Zoologisches Forschungsmuseum Alexander Koenig'),
(107983, 88621, 'en', 'name', 'Transcultural Psychosocial Educational Foundation'),
(107984, 88621, 'bs', 'name', 'Transkulturna psihosocijalna obrazovna fondacija'),
(107985, 88622, 'de', 'name', 'Deutsches Polen-Institut'),
(107986, 88623, 'de', 'name', 'Kölner Forum für Internationale Beziehungen und Sicherheitspolitik'),
(107987, 88624, 'fr', 'name', 'Laboratoire d’Ethologie ExpĆ©rimentale et ComparĆ©e'),
(107988, 88625, 'en', 'name', 'Neuroelectronics Research Flanders'),
(107989, 88626, 'en', 'name', 'Falling Walls Foundation'),
(107990, 88627, 'en', 'name', 'Medical Research Foundation'),
(107991, 88628, 'de', 'name', 'Zentrum für Geoinformationswesen der Bundeswehr'),
(107992, 88629, 'fr', 'name', 'Ɖcole supĆ©rieure d''art et design Le Havre-Rouen'),
(107993, 88630, 'pl', 'name', 'WSHIU Akademia Nauk Stosowanych'),
(107994, 88631, 'da', 'name', 'Forsvarets Sanitetskommando'),
(107995, 88631, 'en', 'name', 'The Danish Armed Forces Medical Command'),
(107996, 88632, 'de', 'name', 'Fachhochschule Dresden'),
(107997, 88633, 'fr', 'name', 'MusƩe de l''Air et de l''Espace'),
(107998, 88634, 'en', 'name', 'Georgia Southern University'),
(107999, 88635, 'en', 'name', 'University of Veterinary Science'),
(108000, 88636, 'en', 'name', 'Kinship Conservation Fellows'),
(108001, 88637, 'de', 'name', 'Braunschweigische Wissenschaftliche Gesellschaft'),
(108002, 88638, 'fr', 'name', 'INSA Euro-MƩditerranƩe'),
(108003, 88639, 'en', 'name', 'Shree Medical and Technical College'),
(108004, 88640, 'en', 'name', 'Henry Ford Health System'),
(108005, 88641, 'fr', 'name', 'Centre Technique Interprofessionnel des Fruits et LƩgumes'),
(108006, 88642, 'no_lang_code', 'name', 'Elements Biosciences (United States)'),
(108007, 88643, 'no_lang_code', 'name', 'E-Lyte Innovations GmbH (Germany)'),
(108008, 88644, 'en', 'name', 'G. K. Skryabin Institute of Biochemistry and Physiology of Microorganisms'),
(108009, 88644, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø физиологии микроорганизмов им. Š“.К.Š”ŠŗŃ€ŃŠ±ŠøŠ½Š° Š ŠŠ'),
(108010, 88645, 'es', 'name', 'Benemérita Universidad Autónoma de Puebla'),
(108011, 88645, 'en', 'name', 'Meritorious Autonomous University of Puebla'),
(108012, 88646, 'en', 'name', 'AO Foundation'),
(108013, 88647, 'it', 'name', 'Alta scuola pedagogica dei Grigioni'),
(108014, 88647, 'de', 'name', 'Pädagogische Hochschule Graubünden'),
(108015, 88647, 'rm', 'name', 'Scola auta da pedagogia dal Grischun'),
(108016, 88647, 'en', 'name', 'University of Teacher Education of the Grisons'),
(108017, 88648, 'pt', 'name', 'Instituto Rio Branco'),
(108018, 88648, 'en', 'name', 'Rio Branco Institute'),
(108019, 88649, 'en', 'name', 'American School of Classical Studies at Athens'),
(108020, 88650, 'no_lang_code', 'name', 'Onex (United States)'),
(108021, 88651, 'fr', 'name', 'Institut National du Sport, de l''Expertise et de la Performance'),
(108022, 88651, 'en', 'name', 'National Institute of Sport, Expertise, and Performance'),
(108023, 88652, 'pl', 'name', 'Narodowe Centrum Promieniowania Synchrotronowego SOLARIS'),
(108024, 88652, 'en', 'name', 'SOLARIS National Synchrotron Radiation Centre'),
(108025, 88653, 'en', 'name', 'American College of Rheumatology'),
(108026, 88654, 'en', 'name', 'Bayan University'),
(108027, 88654, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁŠŲ§Ł†'),
(108028, 88655, 'en', 'name', 'Department of Health and Human Services'),
(108029, 88656, 'fr', 'name', 'BibliothĆØque Nationale de France'),
(108030, 88656, 'eu', 'name', 'Frantziako Liburutegi Nazionala'),
(108031, 88656, 'en', 'name', 'National Library of France'),
(108032, 88657, 'en', 'name', 'Arthritis Research UK'),
(108033, 88658, 'en', 'name', 'Pat Tillman Foundation'),
(108034, 88659, 'en', 'name', 'International Community Foundation'),
(108035, 88660, 'fr', 'name', 'Institut d''Histoire de la RƩvolution franƧaise'),
(108036, 88661, 'en', 'name', 'Tata Institute of Fundamental Research'),
(108037, 88661, 'hi', 'name', 'टाटा ą¤®ą„‚ą¤²ą¤­ą„‚ą¤¤ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(108038, 88661, 'ml', 'name', 'ą“Ÿą“¾ą“±ąµą“±ą“¾ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“«ą“£ąµą“Ÿą“®ąµ†ą“Øąµą“±ąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ'),
(108039, 88662, 'en', 'name', 'International University of Batam'),
(108040, 88662, 'id', 'name', 'Universitas Internasional Batam'),
(108041, 88663, 'no_lang_code', 'name', 'Vrana GmbH (Germany)'),
(108042, 88664, 'en', 'name', 'Guangzhou Women and Children Medical Center'),
(108043, 88664, 'zh', 'name', 'å¹æå·žåø‚å¦‡å„³å„æē«„åŒ»ē–—äø­åæƒ'),
(108044, 88665, 'en', 'name', 'Department of Education of Jilin Province'),
(108045, 88665, 'zh', 'name', 'å‰ęž—ēœę•™č‚²åŽ…'),
(108046, 88666, 'en', 'name', 'Mycoplasmoses animales'),
(108047, 88667, 'en', 'name', 'Digital Research Infrastructure for the Arts and Humanities'),
(108048, 88668, 'de', 'name', 'Institut für Geschichtliche Landeskunde Rheinland-Pfalz e.V.'),
(108049, 88669, 'en', 'name', 'Bernhard Nocht Institute for Tropical Medicine'),
(108050, 88669, 'de', 'name', 'Bernhard-Nocht-Institut für Tropenmedizin'),
(108051, 88670, 'en', 'name', 'United States Securities and Exchange Commission'),
(108052, 88671, 'en', 'name', 'NewSchool'),
(108053, 88672, 'fr', 'name', 'Centre EuropƩen de Recherche et de Formation AvancƩe en Calcul Scientifique'),
(108054, 88673, 'en', 'name', 'Bashkir State University'),
(108055, 88673, 'ru', 'name', 'Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108056, 88674, 'en', 'name', 'Helping Others in a Positive Environment'),
(108057, 88675, 'en', 'name', 'Fox Valley Technical College'),
(108058, 88676, 'pl', 'name', 'Dnieprzański Uniwersytet Narodowy im. Ołesia Honczara'),
(108059, 88676, 'de', 'name', 'Nationale Oles-Hontschar-UniversitƤt Dnipro'),
(108060, 88676, 'en', 'name', 'Oles Honchar Dnipro National University'),
(108061, 88676, 'fr', 'name', 'UniversitƩ nationale Oles-Hontchar de Dnipro'),
(108062, 88676, 'ru', 'name', 'Днипровский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ŠøŠ¼ŠµŠ½Šø ŠžŠ»ŠµŃŃ Гончара'),
(108063, 88676, 'uk', 'name', 'Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠžŠ»ŠµŃŃ Гончара'),
(108064, 88677, 'en', 'name', 'Veterinary Medical Teaching Hospital'),
(108065, 88678, 'en', 'name', 'Institute of Higher Education of NAES of Ukraine'),
(108066, 88678, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вищої освіти ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії пеГагогічних наук Україн'),
(108067, 88679, 'nl', 'name', 'Ministerie van Volksgezondheid Welzijn en Sport'),
(108068, 88679, 'en', 'name', 'Ministry of Health Welfare and Sport'),
(108069, 88680, 'en', 'name', 'Hasselblad Foundation'),
(108070, 88681, 'fr', 'name', 'Institut de Veille Sanitaire'),
(108071, 88681, 'en', 'name', 'Institute of Health Surveillance'),
(108072, 88682, 'no_lang_code', 'name', 'Herff Jones (United States)'),
(108073, 88683, 'en', 'name', 'California State Transportation Agency'),
(108074, 88684, 'fr', 'name', 'GƩnomique fonctionnelle comparative'),
(108075, 88685, 'sv', 'name', 'Wienerbageriet'),
(108076, 88686, 'no_lang_code', 'name', 'Humanitarian Institute'),
(108077, 88686, 'ru', 'name', 'Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(108078, 88687, 'en', 'name', 'Department of Jobs and Small Business'),
(108079, 88688, 'fr', 'name', 'MorphogenĆØse du coeur'),
(108080, 88689, 'es', 'name', 'Departamento de Educación de los Estados Unidos'),
(108081, 88689, 'fr', 'name', 'DĆ©partement de l''Ɖducation des Ɖtats-unis'),
(108082, 88689, 'en', 'name', 'United States Department of Education'),
(108083, 88690, 'es', 'name', 'Instituto Smithsonian de Investigaciones Tropicales'),
(108084, 88690, 'en', 'name', 'Smithsonian Tropical Research Institute'),
(108085, 88691, 'es', 'name', 'Departamento de Agricultura de los Estados Unidos'),
(108086, 88691, 'fr', 'name', 'DĆ©partement de l''Agriculture des Ɖtats-Unis'),
(108087, 88691, 'en', 'name', 'United States Department of Agriculture'),
(108088, 88692, 'en', 'name', 'Grantham Centre for Sustainable Futures'),
(108089, 88693, 'en', 'name', 'Health Protection Agency'),
(108090, 88694, 'en', 'name', 'State Key Laboratory of Hydrology Water Resources and Hydraulic Engineering'),
(108091, 88694, 'zh', 'name', 'ę°“ę–‡ę°“čµ„ęŗäøŽę°“åˆ©å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(108092, 88695, 'es', 'name', 'Centro de Metrologƭa del EjƩrcito Ecuatoriano'),
(108093, 88696, 'en', 'name', 'Lake Forest Academy'),
(108094, 88697, 'en', 'name', 'Colorado Water Center'),
(108095, 88698, 'no_lang_code', 'name', 'ExxonMobil (United States)'),
(108096, 88699, 'en', 'name', 'American Ornithological Society'),
(108097, 88700, 'en', 'name', 'American Museum of Natural History'),
(108098, 88700, 'es', 'name', 'Museo Americano de Historia Natural'),
(108099, 88700, 'fr', 'name', 'MusƩe amƩricain d''histoire naturelle'),
(108100, 88701, 'en', 'name', 'Regional Research Centres'),
(108101, 88701, 'ru', 'name', 'Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Šµ Š½Š°ŃƒŃ‡Š½Ń‹Šµ центры Российской акаГемии наук'),
(108102, 88702, 'en', 'name', 'Foundation Fighting Blindness'),
(108103, 88703, 'es', 'name', 'Ministerio de EconomĆ­a, Industria y Competitividad'),
(108104, 88703, 'en', 'name', 'Ministry of Economy, Industry and Competitiveness'),
(108105, 88704, 'en', 'name', 'American Bureau of Shipping'),
(108106, 88705, 'en', 'name', 'AVRDC - The World Vegetable Center'),
(108107, 88706, 'es', 'name', 'Comisión Nacional de Actividades Espaciales');
INSERT INTO `ror_settings` VALUES
(108108, 88706, 'en', 'name', 'National Space Activities Commission'),
(108109, 88707, 'no_lang_code', 'name', 'UHC'),
(108110, 88708, 'no_lang_code', 'name', 'Cemat (Italy)'),
(108111, 88709, 'en', 'name', 'Institute for Water and Environmental Problems of the Siberian Branch of the Russian Academy of Sciences'),
(108112, 88709, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГных Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… проблем Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(108113, 88710, 'en', 'name', 'Barro Colorado Island'),
(108114, 88710, 'es', 'name', 'Isla Barro Colorado'),
(108115, 88711, 'en', 'name', 'Xinjiang Uygur Autonomous Region Education Department'),
(108116, 88711, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗę•™č‚²åŽ…'),
(108117, 88712, 'no_lang_code', 'name', 'NIKIMT-Atomstroy'),
(108118, 88712, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ монтажной технологии — Атомстрой'),
(108119, 88713, 'en', 'name', 'Pontifical Catholic University of Argentina'),
(108120, 88713, 'es', 'name', 'Pontificia Universidad Católica Argentina'),
(108121, 88713, 'it', 'name', 'Pontificia universitĆ  cattolica argentina'),
(108122, 88713, 'de', 'name', 'PƤpstliche Katholische UniversitƤt von Argentinien'),
(108123, 88713, 'fr', 'name', 'UniversitƩ catholique argentine'),
(108124, 88714, 'en', 'name', 'Hult International Business School'),
(108125, 88715, 'en', 'name', 'State Institution National Antarctic Scientific Center'),
(108126, 88715, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ антарктичний науковий центр'),
(108127, 88716, 'en', 'name', 'Austrian Excellence Center for Tribology'),
(108128, 88716, 'de', 'name', 'Ɩsterreichisches Exzellenzzentrum für Tribologie'),
(108129, 88717, 'id', 'name', 'Sekolah Tinggi Pastoral Don Bosco Tomohon'),
(108130, 88718, 'fr', 'name', 'Office FranƧais de la BiodiversitƩ'),
(108131, 88719, 'fr', 'name', 'Investigations sur l’histoire et l’actualitĆ© des mutations architecturales et urbaines'),
(108132, 88720, 'en', 'name', 'University of Isfahan'),
(108133, 88720, 'fa', 'name', 'دانؓگاه اصفهان'),
(108134, 88721, 'en', 'name', 'Chengdu Research Base of Giant Panda Breeding'),
(108135, 88721, 'zh', 'name', 'ęˆéƒ½å¤§ē†ŠēŒ«ē¹č‚²ē ”ē©¶åŸŗåœ°'),
(108136, 88722, 'no_lang_code', 'name', 'Sigma Genosys (United States)'),
(108137, 88723, 'de', 'name', 'Debra'),
(108138, 88724, 'en', 'name', 'Research Institute of Technical Glass'),
(108139, 88724, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технического стекла'),
(108140, 88725, 'en', 'name', 'UPHLS'),
(108141, 88726, 'en', 'name', 'Ontario Turtle Conservation Centre'),
(108142, 88727, 'fr', 'name', 'MƩtabiot'),
(108143, 88728, 'en', 'name', 'China Meteorological Administration'),
(108144, 88728, 'zh', 'name', '中国气豔局'),
(108145, 88729, 'en', 'name', 'Public Health England'),
(108146, 88730, 'en', 'name', 'Woman''s Cancer Foundation'),
(108147, 88731, 'en', 'name', 'State Oceanic Administration'),
(108148, 88731, 'zh', 'name', '国家海擋局'),
(108149, 88732, 'en', 'name', 'University Medical Center Hamburg-Eppendorf'),
(108150, 88732, 'de', 'name', 'UniversitƤtsklinikum Hamburg-Eppendorf'),
(108151, 88733, 'cs', 'name', 'Ministerstvo životnĆ­ho prostředĆ­ ČeskĆ© republiky'),
(108152, 88733, 'en', 'name', 'Ministry of the Environment of the Czech Republic'),
(108153, 88734, 'en', 'name', 'Max Planck Institute for the Structure and Dynamics of Matter'),
(108154, 88734, 'de', 'name', 'Max-Planck-Institut für Struktur und Dynamik der Materie'),
(108155, 88735, 'en', 'name', 'Birla Institute of Technology, Mesra'),
(108156, 88735, 'hi', 'name', 'बिरला ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(108157, 88736, 'en', 'name', 'Tropical Resources Institute'),
(108158, 88737, 'fr', 'name', 'MobilitƩs: Vieillissement, Pathologie, SantƩ'),
(108159, 88738, 'en', 'name', 'Grantham Foundation'),
(108160, 88739, 'en', 'name', 'UKOLN'),
(108161, 88740, 'en', 'name', 'Chinese Academy of Agricultural Sciences'),
(108162, 88740, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢'),
(108163, 88741, 'fr', 'name', 'Physiopathologie et imagerie des troubles neurologiques'),
(108164, 88741, 'en', 'name', 'Physiopathology and Imaging of Neurological Disorders'),
(108165, 88742, 'en', 'name', 'National Institute for Materials Science'),
(108166, 88742, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē‰©č³Ŗćƒ»ęę–™ē ”ē©¶ę©Ÿę§‹'),
(108167, 88743, 'no_lang_code', 'name', 'Samsung (United Kingdom)'),
(108168, 88744, 'en', 'name', 'Nagase Science Technology Foundation'),
(108169, 88744, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé•·ē€¬ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(108170, 88745, 'no_lang_code', 'name', 'Research Institute of Measuring Devices (Russia)'),
(108171, 88745, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŠ·Š¼ŠµŃ€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… приборов — ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ завоГ имени ŠšŠ¾Š¼ŠøŠ½Ń‚ерна'),
(108172, 88746, 'fr', 'name', 'AcadƩmie de Grenoble'),
(108173, 88747, 'de', 'name', 'Zentrum für Datenverarbeitung'),
(108174, 88748, 'fr', 'name', 'Laboratoire National de MƩtrologie'),
(108175, 88749, 'en', 'name', 'Kharkiv State Academy of Physical Culture'),
(108176, 88749, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø'),
(108177, 88750, 'es', 'name', 'Secretaria de Salud'),
(108178, 88751, 'es', 'name', 'Instituto Tecnológico de Tijuana'),
(108179, 88752, 'en', 'name', 'American Academy in Rome'),
(108180, 88753, 'en', 'name', 'International Union Against Tuberculosis and Lung Disease'),
(108181, 88754, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Ɖlectronique de l''Ouest'),
(108182, 88755, 'en', 'name', 'EEA and Norway Grants'),
(108183, 88756, 'pt', 'name', 'Banco Nacional de Desenvolvimento EconƓmico e Social'),
(108184, 88756, 'en', 'name', 'Brazilian Development Bank'),
(108185, 88757, 'en', 'name', 'South African Society of Biochemistry and Molecular Biology'),
(108186, 88757, 'af', 'name', 'Suid-Afrikaanse Vereeniging vir Biochemie en MolekulĆŖre Biologie'),
(108187, 88758, 'en', 'name', 'Administration for Community Living'),
(108188, 88759, 'en', 'name', 'Rotary International'),
(108189, 88760, 'en', 'name', 'International Federation of Library Associations and Institutions'),
(108190, 88761, 'pt', 'name', 'Fundação para o Desenvolvimento da UNESP'),
(108191, 88762, 'en', 'name', 'Wellness Pointe'),
(108192, 88763, 'en', 'name', 'Henning and Johan Throne-Holst''s Foundation'),
(108193, 88763, 'sv', 'name', 'Henning och Johan Throne-Holst stiftelse'),
(108194, 88764, 'en', 'name', 'Texas State University System'),
(108195, 88765, 'no_lang_code', 'name', 'DuPont (United States)'),
(108196, 88766, 'en', 'name', 'American Brain Foundation'),
(108197, 88767, 'fr', 'name', 'Diabète athérothrombose et thérapies Réunion Océan Indien'),
(108198, 88768, 'fr', 'name', 'Ɖcole Nationale de la MĆ©tĆ©orologie'),
(108199, 88769, 'en', 'name', 'Ton Duc Thang University'),
(108200, 88769, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c TĆ“n Đức ThįŗÆng'),
(108201, 88770, 'en', 'name', 'Catholic University College of Bruges–Ostend'),
(108202, 88771, 'en', 'name', 'City Of Hope National Medical Center'),
(108203, 88772, 'en', 'name', 'City College Southampton'),
(108204, 88773, 'en', 'name', 'Australian National Data Service'),
(108205, 88774, 'no_lang_code', 'name', 'Calibraciones Industriales S.A. (Chile)'),
(108206, 88775, 'en', 'name', 'Odessa National Maritime University'),
(108207, 88775, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Š¼Š¾Ń€ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108208, 88776, 'en', 'name', 'Indian Ocean University'),
(108209, 88777, 'en', 'name', 'Center for Free-Electron Laser Science'),
(108210, 88778, 'en', 'name', 'State Horticultural Association of Pennsylvania'),
(108211, 88779, 'pt', 'name', 'Centro Nacional de Primatas'),
(108212, 88780, 'no_lang_code', 'name', 'Laboratori Guglielmo Marconi (Italy)'),
(108213, 88781, 'fr', 'name', 'Laboratoire Public d''Essais et d''Etudes'),
(108214, 88782, 'no_lang_code', 'name', 'Bayer (United States)'),
(108215, 88783, 'en', 'name', 'U.S. Geological Survey, Wetland and Aquatic Research Center'),
(108216, 88784, 'en', 'name', 'Networks of Centres of Excellence'),
(108217, 88784, 'fr', 'name', 'RƩseaux de centres d''excellence'),
(108218, 88785, 'fr', 'name', 'Institut ACTE - Arts CrƩations ThƩories EsthƩtiques'),
(108219, 88786, 'en', 'name', 'Wisconsin Society for Cardiovascular and Pulmonary Health & Rehabilitation'),
(108220, 88787, 'en', 'name', 'Victorian Heart Hospital'),
(108221, 88788, 'no_lang_code', 'name', 'Xenocs (France)'),
(108222, 88789, 'no_lang_code', 'name', 'Intel (United States)'),
(108223, 88790, 'es', 'name', 'Laboratorio de Tecnogestión'),
(108224, 88791, 'es', 'name', 'SubsecretarĆ­a de Control y Aplicaciones Nucleares'),
(108225, 88792, 'en', 'name', 'University of Wisconsin–Eau Claire – Barron County'),
(108226, 88793, 'en', 'name', 'National Institute of Science Communication and Information Resources'),
(108227, 88793, 'hi', 'name', 'ą¤Øą¤æą¤øą„ą¤•ą„‡ą¤Æą¤°'),
(108228, 88794, 'en', 'name', 'JRS Biodiversity Foundation'),
(108229, 88795, 'it', 'name', 'Ministero della Salute'),
(108230, 88795, 'en', 'name', 'Ministry of Health'),
(108231, 88796, 'en', 'name', 'North Advancement Center for Science and Technology'),
(108232, 88796, 'ja', 'name', 'åŒ—ęµ·é“ē§‘å­¦ęŠ€č”“ē·åˆęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(108233, 88797, 'fr', 'name', 'CEPN'),
(108234, 88798, 'en', 'name', 'Austrian Federal Ministry of Agriculture, Forestry, Environment and Water Management'),
(108235, 88798, 'de', 'name', 'Bundesministerium für Land- und Forstwirtschaft, Umwelt und Wasserwirtschaft'),
(108236, 88799, 'en', 'name', 'Worcester County Public Schools'),
(108237, 88800, 'fr', 'name', 'Philosophie, Histoire et Analyse des ReprĆ©sentations Ɖconomiques'),
(108238, 88801, 'id', 'name', 'Institut Agama Islam Negeri Sorong'),
(108239, 88802, 'en', 'name', 'Shandong Tumor Hospital'),
(108240, 88802, 'zh', 'name', 'å±±äøœēœč‚æē˜¤åŒ»é™¢'),
(108241, 88803, 'en', 'name', 'Thanh Do University'),
(108242, 88803, 'vi', 'name', 'ĐẔi hį»c ThĆ nh ĐƓ'),
(108243, 88804, 'no_lang_code', 'name', 'OncoDetect (United States)'),
(108244, 88805, 'no_lang_code', 'name', 'First Consulting Group (United States)'),
(108245, 88806, 'en', 'name', 'Pacific States Marine Fisheries Commission'),
(108246, 88807, 'en', 'name', 'Wildlife Management International'),
(108247, 88808, 'en', 'name', 'Temple University Health System'),
(108248, 88809, 'no_lang_code', 'name', 'Metron (Greece)'),
(108249, 88810, 'no_lang_code', 'name', 'Cengage Learning (United States)'),
(108250, 88811, 'en', 'name', 'National Science and Technology Development Agency'),
(108251, 88812, 'en', 'name', 'Centre for Safe Air'),
(108252, 88813, 'en', 'name', 'JƩrƓme Lejeune Foundation'),
(108253, 88814, 'fr', 'name', 'SociƩtƩ MathƩmatique de France'),
(108254, 88815, 'en', 'name', 'New York State Department of Health'),
(108255, 88816, 'en', 'name', 'Berkeley Public Health Division'),
(108256, 88817, 'en', 'name', 'Jinan City People''s Hospital'),
(108257, 88817, 'zh', 'name', 'ęµŽå—åø‚äŗŗę°‘åŒ»é™¢'),
(108258, 88818, 'en', 'name', 'Education, Formation, Travail, Savoirs'),
(108259, 88819, 'en', 'name', 'Colorado State University System'),
(108260, 88820, 'en', 'name', 'Elrha'),
(108261, 88821, 'en', 'name', 'Hiroshima Bunkyo University'),
(108262, 88821, 'ja', 'name', 'åŗƒå³¶ę–‡ę•™å¤§å­¦'),
(108263, 88822, 'no_lang_code', 'name', 'Yuracko and Hewitt Sustainable Global Solutions (United States)'),
(108264, 88823, 'no_lang_code', 'name', 'Recovered (United States)'),
(108265, 88824, 'en', 'name', 'Government of British Columbia'),
(108266, 88825, 'no_lang_code', 'name', 'Lafarge (Canada)'),
(108267, 88826, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Stan Im'),
(108268, 88827, 'no_lang_code', 'name', 'Biogen (Belgium)'),
(108269, 88828, 'no_lang_code', 'name', 'HREA'),
(108270, 88829, 'fr', 'name', 'Unité transversale de recherche en psychogénèse et psychopathologie'),
(108271, 88830, 'en', 'name', 'Alfred Friendly Foundation'),
(108272, 88831, 'no_lang_code', 'name', 'Bodycote (United Kingdom)'),
(108273, 88832, 'no_lang_code', 'name', 'Pacmar Technologies (United States)'),
(108274, 88833, 'en', 'name', 'Monash Health'),
(108275, 88834, 'en', 'name', 'University Grants Commission Nepal'),
(108276, 88835, 'en', 'name', 'Sorsogon State University'),
(108277, 88836, 'en', 'name', 'Fred Hollows Foundation'),
(108278, 88837, 'en', 'name', 'University of the Commonwealth Caribbean'),
(108279, 88838, 'en', 'name', 'Henan College of Transportation'),
(108280, 88838, 'zh', 'name', 'ę²³å—äŗ¤é€ščŒäøšęŠ€ęœÆå­¦é™¢'),
(108281, 88839, 'en', 'name', 'National Academies of Sciences, Engineering, and Medicine'),
(108282, 88840, 'en', 'name', 'Nuclear Organization and Oncogenesis'),
(108283, 88840, 'fr', 'name', 'Organisation Nucléaire et Oncogenèse'),
(108284, 88841, 'en', 'name', 'Ufa State Aviation Technical University'),
(108285, 88841, 'ru', 'name', 'Уфимский Š³Š¾ŃŃƒŠ“арственный авиационный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108286, 88841, 'ba', 'name', 'Өфө Гәүләт Š°Š²ŠøŠ°Ń†ŠøŃ техник ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(108287, 88842, 'en', 'name', 'Kharkiv Medical Academy of Postgraduate Education'),
(108288, 88842, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ¾Ń— меГичної акаГемії ŠæŃ–ŃŠ»ŃŠ“ŠøŠæŠ»Š¾Š¼Š½Š¾Ń— освіти'),
(108289, 88843, 'es', 'name', 'Sociedad Venezolana de Ecologia'),
(108290, 88843, 'en', 'name', 'Venezuelan Society of Ecology'),
(108291, 88844, 'no_lang_code', 'name', 'Biotec (United Kingdom)'),
(108292, 88845, 'fi', 'name', 'Maa- ja metsƤtalousministeriƶ'),
(108293, 88845, 'en', 'name', 'Ministry of Agriculture and Forestry'),
(108294, 88846, 'no_lang_code', 'name', 'Gebro Pharma (Spain)'),
(108295, 88847, 'en', 'name', 'Canadian Hydrographic Service'),
(108296, 88847, 'fr', 'name', 'Service hydrographique du Canada'),
(108297, 88848, 'ru', 'name', 'RSPC MT'),
(108298, 88848, 'en', 'name', 'Republican Scientific and Practical Center for Medical Technologies, Informatization, Administration and Management of Health'),
(108299, 88848, 'be', 'name', 'Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр меГицинских технологий, информатизации, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(108300, 88849, 'no_lang_code', 'name', 'Tonan Hospital'),
(108301, 88849, 'ja', 'name', 'ę–—å—ē—…é™¢'),
(108302, 88850, 'en', 'name', 'Office of the Assistant Secretary for Health'),
(108303, 88851, 'fr', 'name', 'Plateforme d''information et de services pour les maladies rares et les mƩdicaments orphelins'),
(108304, 88852, 'fr', 'name', 'Institut supƩrieur de l''automobile et des transports'),
(108305, 88853, 'en', 'name', 'Iran National Standards Organization'),
(108306, 88853, 'fa', 'name', 'سازمان Ł…Ł„ŪŒ استاندارد'),
(108307, 88854, 'so', 'name', 'Jaamacadda Zamzam'),
(108308, 88854, 'en', 'name', 'Zamzam University of Science and Technology'),
(108309, 88855, 'en', 'name', '(ISC)²'),
(108310, 88856, 'no_lang_code', 'name', 'ORLEN UniCRE'),
(108311, 88856, 'en', 'name', 'Unipetrol Centre of Research and Education'),
(108312, 88856, 'cs', 'name', 'Unipetrol výzkumně vzdělĆ”vacĆ­ centrum'),
(108313, 88857, 'en', 'name', 'Mechanisms of epigenetic inheritance'),
(108314, 88857, 'fr', 'name', 'MƩcanismes de l''HƩrƩditƩ ƩpigƩnƩtique'),
(108315, 88858, 'en', 'name', 'Third Xiangya Hospital'),
(108316, 88858, 'zh', 'name', 'äø­å—å¤§å­¦ę¹˜é›…äø‰åŒ»é™¢-é—Øę€„čÆŠę„¼'),
(108317, 88859, 'en', 'name', 'Science and Technology Department of Hubei Province'),
(108318, 88859, 'zh', 'name', 'ę¹–åŒ—ēœē§‘ęŠ€åŽ…'),
(108319, 88860, 'en', 'name', 'National Defense University'),
(108320, 88860, 'zh', 'name', 'åœ‹é˜²å¤§å­ø'),
(108321, 88861, 'en', 'name', 'Eqbal Lahoori Institute of Higher Education'),
(108322, 88861, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ اقبال Ł„Ų§Ł‡ŁˆŲ±ŪŒ'),
(108323, 88862, 'en', 'name', 'ITMO University'),
(108324, 88862, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ информационных технологий, механики Šø оптики'),
(108325, 88863, 'no_lang_code', 'name', 'BioOne'),
(108326, 88864, 'en', 'name', 'Joint Research Unit in Environmental Acoustics'),
(108327, 88864, 'fr', 'name', 'UnitƩ Mixte de Recherche en Acoustique Environnementale'),
(108328, 88865, 'en', 'name', 'Arctic Goose Joint Venture'),
(108329, 88865, 'fr', 'name', 'Plan conjoint des OIES de l''Arctique'),
(108330, 88865, 'es', 'name', 'Proyecto Conjunto para el Ganso del Ɓrtico'),
(108331, 88866, 'es', 'name', 'Agencia de Protección Ambiental de California'),
(108332, 88866, 'en', 'name', 'California Environmental Protection Agency'),
(108333, 88867, 'no_lang_code', 'name', 'IVC Evidensia France'),
(108334, 88868, 'en', 'name', 'Duke Regional Hospital'),
(108335, 88869, 'es', 'name', 'Fundación Canaria de Investigación Sanitaria'),
(108336, 88870, 'es', 'name', 'Ministerio de Industria, EnergĆ­a y MinerĆ­a'),
(108337, 88871, 'no', 'name', 'Kautokeino Kommune'),
(108338, 88872, 'en', 'name', 'Casey Hospital'),
(108339, 88873, 'en', 'name', 'Cambridge Information Group'),
(108340, 88874, 'no_lang_code', 'name', 'Shire (Ireland)'),
(108341, 88875, 'es', 'name', 'Instituto de Investigaciones y Control del EjƩrcito de Chile'),
(108342, 88876, 'en', 'name', 'Netherlands Enterprise Agency'),
(108343, 88876, 'nl', 'name', 'Ondersteunt ondernemend Nederland'),
(108344, 88877, 'en', 'name', 'American Association of Petroleum Geologists'),
(108345, 88878, 'en', 'name', 'Almaty Technological University'),
(108346, 88878, 'kk', 'name', 'Алматы Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃŠ»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(108347, 88879, 'en', 'name', 'New York State Education Department'),
(108348, 88880, 'en', 'name', 'Annenberg Foundation Trust at Sunnylands'),
(108349, 88881, 'en', 'name', 'Mandela Institute for Development Studies'),
(108350, 88882, 'en', 'name', 'Hormozgan University of Medical Sciences'),
(108351, 88882, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی هرمزگان'),
(108352, 88883, 'en', 'name', 'Virgin Islands Housing Finance Authority'),
(108353, 88884, 'en', 'name', 'World Vegetable Center'),
(108354, 88885, 'en', 'name', 'CODELCO'),
(108355, 88886, 'en', 'name', 'European Society for Evolutionary Biology'),
(108356, 88887, 'no_lang_code', 'name', 'Southern Water (United Kingdom)'),
(108357, 88888, 'en', 'name', 'Eastern Visayas State University'),
(108358, 88888, 'tl', 'name', 'Pamantasang Pambansa ng Silangang Kabisayaan'),
(108359, 88889, 'no_lang_code', 'name', 'Saint-Gobain (France)'),
(108360, 88890, 'en', 'name', 'Yunnan Provincial Department of Education'),
(108361, 88890, 'zh', 'name', 'äŗ‘å—ēœę•™č‚²åŽ…'),
(108362, 88891, 'no_lang_code', 'name', 'Thirst-Aid (United States)'),
(108363, 88892, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Switzerland)'),
(108364, 88893, 'en', 'name', 'China Health Promotion Foundation'),
(108365, 88893, 'zh', 'name', 'äø­å›½å„åŗ·äæƒčæ›åŸŗé‡‘ä¼š'),
(108366, 88894, 'fr', 'name', 'Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde'),
(108367, 88895, 'fr', 'name', 'Laboratoire de GƩnie Informatique, de Production et de Maintenance'),
(108368, 88896, 'en', 'name', 'Earth-Life Science Institute'),
(108369, 88897, 'fr', 'name', 'Agence de l''eau Loire-Bretagne'),
(108370, 88898, 'en', 'name', 'Empire State Development'),
(108371, 88899, 'en', 'name', 'Alexander S. Onassis Foundation'),
(108372, 88900, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(108373, 88900, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(108374, 88901, 'en', 'name', 'Hutton''s Shearwater Charitable Trust'),
(108375, 88902, 'id', 'name', 'Universitas Ubudiyah Indonesia'),
(108376, 88903, 'en', 'name', 'International Association for Bear Research and Management'),
(108377, 88904, 'no_lang_code', 'name', 'Agilent Technologies (Japan)'),
(108378, 88904, 'ja', 'name', 'ć‚¢ć‚øćƒ¬ćƒ³ćƒˆćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(108379, 88905, 'sv', 'name', 'Tammerfors universitet'),
(108380, 88905, 'fi', 'name', 'Tampereen yliopisto'),
(108381, 88905, 'en', 'name', 'University of Tampere'),
(108382, 88906, 'en', 'name', 'Pathogenesis of vascular infections'),
(108383, 88906, 'fr', 'name', 'PathogenĆØse des infections vasculaires'),
(108384, 88907, 'en', 'name', 'Assumption University'),
(108385, 88907, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø­ąø±ąøŖąøŖąø±ąø”ąøŠąø±ąø'),
(108386, 88908, 'es', 'name', 'Instituto de Investigaciones BioquĆ­micas de BahĆ­a Blanca, CONICET-UNS'),
(108387, 88909, 'en', 'name', 'Gans Collections and Charitable Fund'),
(108388, 88910, 'en', 'name', 'South African Genetics Society'),
(108389, 88910, 'af', 'name', 'Suid-Afrikaanse Genetiese Vereeniging'),
(108390, 88911, 'en', 'name', 'Japan Healthcare University'),
(108391, 88911, 'ja', 'name', 'ę—„ęœ¬åŒ»ē™‚å¤§å­¦'),
(108392, 88912, 'it', 'name', 'Dipartimento federale dell''ambiente, dei trasporti, dell''energia e delle comunicazioni'),
(108393, 88912, 'fr', 'name', 'DƩpartement fƩdƩral de l''environnement, des transports, de l''Ʃnergie et des communications'),
(108394, 88912, 'de', 'name', 'Eidgenössisches Departement für Umwelt, Verkehr, Energie und Kommunikation'),
(108395, 88912, 'en', 'name', 'Federal Department of Environment, Transport, Energy and Communications'),
(108396, 88913, 'de', 'name', 'Deutsche Allianz Meeresforschung'),
(108397, 88914, 'en', 'name', 'Ministry of Antiquities'),
(108398, 88914, 'ar', 'name', 'بوابة وزارة الاثار Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(108399, 88915, 'fr', 'name', 'Laboratoire Interdisciplinaire d''Ʃtude du Politique Hannah Arendt'),
(108400, 88916, 'en', 'name', 'British Institute at Ankara'),
(108401, 88917, 'no_lang_code', 'name', 'Avon (United States)'),
(108402, 88918, 'en', 'name', 'Mazaya University College'),
(108403, 88918, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ł…Ų²Ų§ŁŠŲ§ الجامعة'),
(108404, 88919, 'en', 'name', 'Italian institute for Genomic Medicine'),
(108405, 88920, 'nl', 'name', 'Alzheimer Nederland'),
(108406, 88921, 'en', 'name', 'African Development Bank Group'),
(108407, 88922, 'en', 'name', 'Leibniz Institute of Virology (LIV)'),
(108408, 88922, 'de', 'name', 'Leibniz-Institut für Virologie (LIV)'),
(108409, 88923, 'no_lang_code', 'name', 'Sir Ratan Tata Trust and Navajbai Ratan Tata Trust'),
(108410, 88924, 'id', 'name', 'Kementerian Pendidikan dan Kebudayaan'),
(108411, 88924, 'en', 'name', 'Ministry of Education and Culture'),
(108412, 88925, 'en', 'name', 'Jiangsu Provincial Center for Disease Control and Prevention'),
(108413, 88925, 'zh', 'name', 'ę±Ÿč‹ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(108414, 88926, 'fr', 'name', 'Centre d’Investigation Clinique des HĆ“pitaux Universitaires de Strasbourg'),
(108415, 88927, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Paris-La Villette'),
(108416, 88928, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture et de Paysage de Bordeaux'),
(108417, 88929, 'en', 'name', 'Azerbaijan State Oil and Industry University'),
(108418, 88929, 'az', 'name', 'Azərbaycan Dƶvlət Neft və Sənaye Universiteti'),
(108419, 88929, 'ru', 'name', 'AзербайГжанский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет ŠŠµŃ„Ń‚Šø Šø ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(108420, 88930, 'en', 'name', 'Saint-Petersburg State University Information Technologies, Mechanic and Optics'),
(108421, 88931, 'en', 'name', 'EIS AFRICA'),
(108422, 88932, 'en', 'name', 'Izeh Islamic Azad University'),
(108423, 88932, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ°Ł‡'),
(108424, 88933, 'pt', 'name', 'Instituto Superior Monitor'),
(108425, 88934, 'en', 'name', 'Rajamangala University of Technology Suvarnabhumi'),
(108426, 88934, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøŖąøøąø§ąø£ąø£ąø“ąø ąø¹ąø”ąø“'),
(108427, 88935, 'fr', 'name', 'Archives nationales'),
(108428, 88936, 'en', 'name', 'Wyoming Wildlife and Natural Resource Trust'),
(108429, 88937, 'fr', 'name', 'Conseil RƩgional Provence-Alpes-CƓte d''Azur'),
(108430, 88938, 'en', 'name', 'Gray''s Inn'),
(108431, 88939, 'en', 'name', 'fRI Research'),
(108432, 88940, 'fr', 'name', 'Fondation Vinetum'),
(108433, 88940, 'de', 'name', 'Stiftung Vinetum'),
(108434, 88941, 'fi', 'name', 'Suomen Biologian Seura Vanamo ry'),
(108435, 88942, 'en', 'name', 'Agency of Rural Development and Soil and Water Conservation'),
(108436, 88942, 'zh', 'name', 'č¾²ę„­éƒØč¾²ę‘ē™¼å±•åŠę°“åœŸäæęŒē½² ē‰ˆę¬Šę‰€ęœ‰'),
(108437, 88943, 'en', 'name', 'Endocrine Fellows Foundation'),
(108438, 88944, 'en', 'name', 'Central Organization for Standardization and Quality Control'),
(108439, 88944, 'ar', 'name', 'الجهاز Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ Ł„Ł„ŲŖŁ‚ŁŠŁŠŲ³ ŁˆŲ§Ł„Ų³ŁŠŲ·Ų±Ų© Ų§Ł„Ł†ŁˆŲ¹ŁŠŲ©'),
(108440, 88945, 'fr', 'name', 'BibliothĆØque municipale de Lyon'),
(108441, 88945, 'en', 'name', 'Lyon Public Library'),
(108442, 88946, 'de', 'name', 'Freistaat Thüringen'),
(108443, 88947, 'en', 'name', 'Berlin Mathematical School'),
(108444, 88948, 'en', 'name', 'Wolf Creek Charitable Foundation'),
(108445, 88949, 'en', 'name', 'Williamson County Conservation Foundation'),
(108446, 88950, 'en', 'name', 'Arizona Alzheimer’s Consortium'),
(108447, 88951, 'en', 'name', 'Lettie Pate Whitehead Foundation'),
(108448, 88952, 'de', 'name', 'Janggen-Pƶhn-Stiftung'),
(108449, 88953, 'en', 'name', 'Baha''i World Centre'),
(108450, 88954, 'en', 'name', 'Hector Fellow Academy'),
(108451, 88955, 'en', 'name', 'Tibet Autonomous Region Science and Technology Agency'),
(108452, 88955, 'zh', 'name', 'č„æč—č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(108453, 88956, 'fr', 'name', 'Centre national interprofessionnel de l''économie laitière'),
(108454, 88957, 'en', 'name', 'Winslow Foundation'),
(108455, 88958, 'en', 'name', 'Malacological Society of London'),
(108456, 88959, 'de', 'name', 'Triaplus AG'),
(108457, 88960, 'ga', 'name', 'An Roinn Tithiochta, Rialtais AitiĆŗil agus Oidhreachta'),
(108458, 88960, 'en', 'name', 'Department of Housing, Local Government and Heritage'),
(108459, 88961, 'en', 'name', 'Ministry of Education, Recreation and Sports'),
(108460, 88961, 'fr', 'name', 'MinistĆØre de l’Éducation, de l''Enseignement supĆ©rieur'),
(108461, 88962, 'fi', 'name', 'Karoliininen yliopistosairaala'),
(108462, 88962, 'sv', 'name', 'Karolinska Universitetssjukhuset'),
(108463, 88962, 'en', 'name', 'Karolinska University Hospital'),
(108464, 88963, 'en', 'name', 'Northwestern Polytechnic'),
(108465, 88964, 'it', 'name', 'Biblioteca di Storia Moderna e Contemporanea'),
(108466, 88965, 'tr', 'name', 'Canakkale Onsekiz Mart Universitesi Tip Fakultesi Hastanesi'),
(108467, 88965, 'en', 'name', 'Ƈanakkale University Hospital'),
(108468, 88966, 'en', 'name', 'Prairie Biotic Research'),
(108469, 88967, 'tr', 'name', 'Türkiye Büyük Millet Meclisi'),
(108470, 88968, 'en', 'name', 'Advanced Grid Institute'),
(108471, 88969, 'en', 'name', 'Conservation Action Research Network'),
(108472, 88970, 'en', 'name', 'Luhansk State Medical University'),
(108473, 88970, 'ru', 'name', 'Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108474, 88970, 'uk', 'name', 'Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108475, 88971, 'en', 'name', 'The Tim and Karen Hixon Foundation'),
(108476, 88972, 'en', 'name', 'British Phycological Society'),
(108477, 88973, 'en', 'name', 'Textbook and Academic Authors Association'),
(108478, 88974, 'en', 'name', 'Rainforest Trust'),
(108479, 88975, 'en', 'name', 'Seerave Foundation'),
(108480, 88976, 'en', 'name', 'Weierstrass Institute for Applied Analysis and Stochastics'),
(108481, 88976, 'de', 'name', 'Weierstraß-Institut für Angewandte Analysis und Stochastik'),
(108482, 88977, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Port Numbay Jayapura'),
(108483, 88978, 'en', 'name', 'International Life Sciences Institute'),
(108484, 88979, 'en', 'name', 'Nora Eccles Treadwell Foundation'),
(108485, 88980, 'id', 'name', 'Universitas Islam Nahdlatul Ulama Jepara'),
(108486, 88981, 'no_lang_code', 'name', 'Philips (United States)'),
(108487, 88982, 'nl', 'name', 'Stichting Lucie Burgers'),
(108488, 88983, 'en', 'name', 'Alikhan Bokeikhan University'),
(108489, 88984, 'en', 'name', 'Edmonton Community Foundation'),
(108490, 88985, 'en', 'name', 'Kentucky Department of Fish and Wildlife Resources'),
(108491, 88986, 'fr', 'name', 'Fonds de recherche du QuƩbec'),
(108492, 88987, 'en', 'name', 'Project Apis m.'),
(108493, 88988, 'en', 'name', 'Western Macedonia University Of Applied Science'),
(108494, 88989, 'de', 'name', 'Linden-Museum Stuttgart'),
(108495, 88990, 'de', 'name', 'Popakademie Baden-Württemberg'),
(108496, 88991, 'tr', 'name', 'Seferihisar Belediyesi'),
(108497, 88992, 'de', 'name', 'Botanische Staatssammlung München'),
(108498, 88993, 'en', 'name', 'Everglades Foundation'),
(108499, 88994, 'no_lang_code', 'name', 'Millor Battery (Spain)'),
(108500, 88995, 'en', 'name', 'Booz Allen Foundation'),
(108501, 88996, 'en', 'name', 'Georgia Ornithological Society'),
(108502, 88997, 'en', 'name', 'African Bird Club'),
(108503, 88998, 'en', 'name', 'Graduate School of Business and Entrepreneurship under the Cabinet of Ministers of the Republic of Uzbekistan'),
(108504, 88998, 'uz', 'name', 'Oʻzbekiston Respublikasi Vazirlar Mahkamasi huzuridagi biznes va tadbirkorlik oliy maktabi'),
(108505, 88998, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń школа бизнеса Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° при ŠšŠ°Š±ŠøŠ½ŠµŃ‚е ŠœŠøŠ½ŠøŃŃ‚ров Республики Узбекистан'),
(108506, 88999, 'en', 'name', 'Negaunee Foundation'),
(108507, 89000, 'pt', 'name', 'Instituto Estadual do Ambiente do Rio de Janeiro'),
(108508, 89001, 'id', 'name', 'Institut Agama Kristen Negeri Manado'),
(108509, 89002, 'no_lang_code', 'name', 'TED Conferences (United States)'),
(108510, 89003, 'en', 'name', 'Saint John of God Hospital'),
(108511, 89004, 'en', 'name', 'Czech Academy of Sciences, Institute of Physics of Materials'),
(108512, 89004, 'cs', 'name', 'Ústav fyziky materiÔlů AV ČR'),
(108513, 89005, 'en', 'name', 'Northern Ireland Environment Agency'),
(108514, 89006, 'en', 'name', 'Department of Agriculture and Rural Development'),
(108515, 89007, 'en', 'name', 'Women University Swabi'),
(108516, 89008, 'en', 'name', 'National Peanut Board'),
(108517, 89009, 'en', 'name', 'Avatar Alliance Foundation'),
(108518, 89010, 'es', 'name', 'Ministerio de Universidades'),
(108519, 89011, 'de', 'name', 'Evangelisches Krankenhaus Bethesda'),
(108520, 89012, 'en', 'name', 'Blavatnik Family Foundation'),
(108521, 89013, 'en', 'name', 'Başaksehir Ƈam and Sakura City Hospital, Istanbul'),
(108522, 89013, 'tr', 'name', 'İstanbul Başakşehir Ƈam ve Sakura Şehir Hastanesi'),
(108523, 89014, 'en', 'name', 'University of Georgia Research Foundation'),
(108524, 89015, 'en', 'name', 'Jefferson Scholars Foundation'),
(108525, 89016, 'nl', 'name', 'Hendrik Conscience Erfgoedbibliotheek'),
(108526, 89016, 'en', 'name', 'Hendrik Conscience Heritage Library'),
(108527, 89017, 'eu', 'name', 'HABE Liburutegia'),
(108528, 89018, 'en', 'name', 'Juvenile Diabetes Research Foundation in Israel'),
(108529, 89018, 'he', 'name', 'האגודה ×œ×”×•×›×Ø×Ŗ × ×¢×•×Ø×™× (הוג 1) ×‘×™×©×Ø××œ'),
(108530, 89019, 'de', 'name', 'Ministerium für Bildung, Wissenschaft und Kultur'),
(108531, 89019, 'en', 'name', 'Ministry of Education, Science and Culture'),
(108532, 89020, 'en', 'name', 'Bristol Zoological Society'),
(108533, 89021, 'en', 'name', 'Danish Ministry of Food, Agriculture and Fisheries'),
(108534, 89021, 'da', 'name', 'Ministeriet for FĆødevarer, Landbrug og Fiskeri'),
(108535, 89022, 'en', 'name', 'The Systematics Association'),
(108536, 89023, 'fr', 'name', 'Gouvernement du Yukon'),
(108537, 89023, 'en', 'name', 'Government of Yukon'),
(108538, 89024, 'en', 'name', 'Bioproducts Institute'),
(108539, 89025, 'en', 'name', 'Genome Alberta'),
(108540, 89026, 'de', 'name', 'Diözesanbibliothek Münster'),
(108541, 89027, 'fr', 'name', 'Ambassade de France Ć  Washington, D.C.'),
(108542, 89027, 'en', 'name', 'Embassy of France in Washington, D.C'),
(108543, 89028, 'no_lang_code', 'name', 'Samsung SDS (South Korea)'),
(108544, 89028, 'ko', 'name', '삼성SDS'),
(108545, 89029, 'en', 'name', 'National Institute for Medical Research Development'),
(108546, 89029, 'fa', 'name', 'مؤسسه Ł…Ł„ŪŒ ŲŖŁˆŲ³Ų¹Ł‡ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų¹Ł„ŁˆŁ… پزؓکی'),
(108547, 89030, 'en', 'name', 'Alrefak University'),
(108548, 89030, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الرفاق'),
(108549, 89031, 'en', 'name', 'Minnesota Soybean Research and Promotion Council'),
(108550, 89032, 'fr', 'name', 'Fondation TD des Amis de l''Environnement'),
(108551, 89032, 'en', 'name', 'TD Friends of the Environment Foundation'),
(108552, 89033, 'en', 'name', 'Alberta Prion Research Institute'),
(108553, 89034, 'nl', 'name', 'Tresoar'),
(108554, 89034, 'fy', 'name', 'Frysk Histoarysk en Letterkundich Sintrum'),
(108555, 89035, 'no_lang_code', 'name', 'Acta Digital Services (France)'),
(108556, 89036, 'en', 'name', 'Royal Entomological Society'),
(108557, 89037, 'pt', 'name', 'Autoridade de Supervisão de Seguros e Fundos de Pensões'),
(108558, 89038, 'en', 'name', 'John Marshall Law School'),
(108559, 89039, 'en', 'name', 'Animal and Plant Health Inspection Service'),
(108560, 89040, 'en', 'name', 'United States Science Support Program'),
(108561, 89041, 'de', 'name', 'Evangelisches Klinikum Niederrhei'),
(108562, 89042, 'es', 'name', 'Consejo Económico y Social'),
(108563, 89043, 'en', 'name', 'Oriental Bird Club'),
(108564, 89044, 'es', 'name', 'SIIS Centro de Documentación y Estudios'),
(108565, 89044, 'eu', 'name', 'SIIS Dokumentazio eta Ikerketa Zentroa'),
(108566, 89044, 'en', 'name', 'SIIS Research and Documentation Centre'),
(108567, 89045, 'en', 'name', 'Nemours Wildlife Foundation'),
(108568, 89046, 'ca', 'name', 'Museu de Prehistòria de València'),
(108569, 89047, 'en', 'name', 'Center for Islamic Studies (ISAM)'),
(108570, 89047, 'tr', 'name', 'İslam Araştırmaları Merkezi (İSAM)'),
(108571, 89048, 'da', 'name', 'Anti Doping Danmark'),
(108572, 89049, 'en', 'name', 'Central-Eastern-European Recreational Association'),
(108573, 89049, 'hu', 'name', 'Közép-Kelet-Európai RekreÔciós TÔrsasÔg'),
(108574, 89050, 'en', 'name', 'Graduate Fellowships for STEM Diversity'),
(108575, 89051, 'fr', 'name', 'L’Inserm dans Paris et lā€™ĆŽle-de-France Centre Nord'),
(108576, 89052, 'sv', 'name', 'Sveriges Riksdag'),
(108577, 89052, 'en', 'name', 'Swedish Parliament'),
(108578, 89053, 'no_lang_code', 'name', 'Booz Allen Hamilton (United States)'),
(108579, 89054, 'en', 'name', 'Shanghai Hospital Development Center'),
(108580, 89054, 'zh', 'name', 'äøŠęµ·ē”³åŗ·åŒ»é™¢å‘å±•äø­åæƒ'),
(108581, 89055, 'en', 'name', 'PsychoTropical Research'),
(108582, 89056, 'en', 'name', 'Fred C. Gloeckner Foundation, Inc.'),
(108583, 89057, 'en', 'name', 'Clean Cooking Alliance'),
(108584, 89058, 'en', 'name', 'Tusk Trust'),
(108585, 89059, 'en', 'name', 'United Bank of Carbon'),
(108586, 89060, 'en', 'name', 'Darwin Initiative'),
(108587, 89061, 'en', 'name', 'Guangxi Zhuang Autonomous Region Department of Education'),
(108588, 89061, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗę•™č‚²åŽ…'),
(108589, 89062, 'en', 'name', 'Lemelson Foundation'),
(108590, 89063, 'fr', 'name', 'Service Public de Wallonie'),
(108591, 89064, 'en', 'name', 'Clif Family Foundation'),
(108592, 89065, 'en', 'name', 'American Microscopical Society'),
(108593, 89066, 'nl', 'name', 'Parnassia Groep Academie'),
(108594, 89067, 'en', 'name', 'Lalor Foundation'),
(108595, 89068, 'en', 'name', 'The Athenaeum Club'),
(108596, 89069, 'no_lang_code', 'name', 'Tamkeen'),
(108597, 89069, 'ar', 'name', 'ŲŖŁ…ŁƒŁŠŁ†'),
(108598, 89070, 'en', 'name', 'Oticon Foundation'),
(108599, 89070, 'da', 'name', 'William Demant Fonden'),
(108600, 89071, 'en', 'name', 'Upper Great Plains Transportation Institute'),
(108601, 89072, 'en', 'name', 'Triangle Center for Evolutionary Medicine'),
(108602, 89073, 'en', 'name', 'ACT Government'),
(108603, 89074, 'it', 'name', 'Biblioteca Apostolica Vaticana'),
(108604, 89074, 'en', 'name', 'Vatican Apostolic Library'),
(108605, 89075, 'no_lang_code', 'name', 'Kentucky Science and Technology Corporation (United States)'),
(108606, 89076, 'en', 'name', 'Veterinary Research Institute'),
(108607, 89077, 'no', 'name', 'Norges Astma- og Allergiforbund'),
(108608, 89078, 'de', 'name', 'Planetarium Stuttgart'),
(108609, 89079, 'en', 'name', 'Marshall Aid Commemoration Commission'),
(108610, 89080, 'en', 'name', 'Nuclear Science and Technology Institute'),
(108611, 89081, 'en', 'name', 'South African Society for Microbiology'),
(108612, 89081, 'af', 'name', 'Suid-Afrikaanse Vereeniging vir Mikrobiologie'),
(108613, 89082, 'vi', 'name', 'Tįŗ­p đoĆ n Vingroup'),
(108614, 89082, 'no_lang_code', 'name', 'Vingroup (Vietnam)'),
(108615, 89083, 'de', 'name', 'Cusanuswerk'),
(108616, 89084, 'en', 'name', 'National Save the Sea Turtle Foundation'),
(108617, 89085, 'en', 'name', 'The Kempe Foundation'),
(108618, 89086, 'no', 'name', 'Stortinget'),
(108619, 89087, 'ga', 'name', 'An tSeirbhís PÔirceanna NÔisiúnta agus Fiadhúlra'),
(108620, 89087, 'en', 'name', 'National Parks and Wildlife Service'),
(108621, 89088, 'en', 'name', 'Rhode Island Agricultural Experiment Station'),
(108622, 89089, 'en', 'name', 'BAND foundation'),
(108623, 89090, 'en', 'name', 'Brazilian Biodiversity Fund'),
(108624, 89090, 'pt', 'name', 'Fundo Brasileiro para a Biodiversidade'),
(108625, 89091, 'en', 'name', 'Utah Division of Wildlife Resources'),
(108626, 89092, 'de', 'name', 'Das Schweizer Parlament'),
(108627, 89092, 'rm', 'name', 'Il Parlament svizzer'),
(108628, 89092, 'it', 'name', 'Il Parlamento svizzero'),
(108629, 89092, 'fr', 'name', 'Le Parlement suisse'),
(108630, 89092, 'en', 'name', 'The Swiss Parliament'),
(108631, 89093, 'en', 'name', 'Rocky Mountain Conservancy'),
(108632, 89094, 'en', 'name', 'Endeavour Foundation'),
(108633, 89095, 'en', 'name', 'State of Maryland'),
(108634, 89096, 'sv', 'name', 'Sven och Lilly Lawskis fond fƶr naturvetenskaplig forskning'),
(108635, 89097, 'de', 'name', 'Bundesverfassungsggericht'),
(108636, 89098, 'en', 'name', 'Australian Medical Council'),
(108637, 89099, 'en', 'name', 'World Animal Protection'),
(108638, 89100, 'no_lang_code', 'name', 'Kupat Holim Meuchedet'),
(108639, 89100, 'he', 'name', 'קופת חולים ושירותי בריאות'),
(108640, 89101, 'es', 'name', 'Loro Parque Fundación'),
(108641, 89101, 'de', 'name', 'Loro-Parque-Stiftung'),
(108642, 89102, 'sv', 'name', 'Region VƤstra Gƶtaland'),
(108643, 89103, 'en', 'name', 'Austrian Neuroscience Association'),
(108644, 89103, 'de', 'name', 'Ɩsterreichische Gesellschaft für Neurowissenschaften'),
(108645, 89104, 'de', 'name', 'Deutschen Ornithologen-Gesellschaft e.V.'),
(108646, 89104, 'en', 'name', 'German Ornithologists’ Society'),
(108647, 89105, 'fr', 'name', 'Institut Pontifical d’Études Arabes et d’Islamologie'),
(108648, 89105, 'en', 'name', 'Pontifical Institute for Arabic and Islamic Studies'),
(108649, 89105, 'it', 'name', 'Pontificio Istituto di Studi e d''Islamitica'),
(108650, 89105, 'ar', 'name', 'المعهد Ų§Ł„ŲØŲ§ŲØŁˆŁŠ للدراسات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© ŁˆŲ§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠ'),
(108651, 89106, 'en', 'name', 'Swedish Foundation for Strategic Research'),
(108652, 89107, 'en', 'name', 'Maine Department of Transportation'),
(108653, 89108, 'en', 'name', 'Harry Crossley Foundation'),
(108654, 89109, 'it', 'name', 'Istituto Nazionale di Studi sul Rinascimento'),
(108655, 89110, 'no_lang_code', 'name', 'Hill''s Pet Nutrition (United States)'),
(108656, 89111, 'en', 'name', 'Guizhou Provincial Education Department'),
(108657, 89111, 'zh', 'name', 'č“µå·žēœę•™č‚²åŽ… 编辑'),
(108658, 89112, 'en', 'name', 'Australasian Society for the Study of Animal Behaviour'),
(108659, 89113, 'en', 'name', 'Westpac Scholars Trust'),
(108660, 89114, 'en', 'name', 'Changcheng Institute of Metrology & Measurement'),
(108661, 89114, 'zh', 'name', 'čˆŖē©ŗå·„äøšåŒ—äŗ¬é•æåŸŽč®”é‡ęµ‹čÆ•ęŠ€ęœÆē ”ē©¶ę‰€'),
(108662, 89115, 'nl', 'name', 'Parnassia Groep'),
(108663, 89116, 'no', 'name', 'Norsk senter for forskningsdata'),
(108664, 89116, 'en', 'name', 'Norwegian Centre for Research Data'),
(108665, 89117, 'no_lang_code', 'name', 'RECETOX'),
(108666, 89118, 'fi', 'name', 'Nordenskiƶld-samfundet'),
(108667, 89119, 'en', 'name', 'Central European Institute of Technology'),
(108668, 89120, 'en', 'name', 'International Society of Hematology'),
(108669, 89120, 'fr', 'name', 'SociƩtƩ Internationale d''HƩmatologie'),
(108670, 89121, 'en', 'name', 'Central European Institute of Technology – Masaryk University'),
(108671, 89121, 'cs', 'name', 'Středoevropský technologický institut – Masarykova univerzita'),
(108672, 89122, 'en', 'name', 'Target ALS'),
(108673, 89123, 'de', 'name', 'DEval – Deutsches Evaluierungsinstitut der Entwicklungszusammenarbeit'),
(108674, 89123, 'en', 'name', 'DEval – German Institute for Development Evaluation'),
(108675, 89124, 'en', 'name', 'Central Committee of the Communist Party of China'),
(108676, 89125, 'en', 'name', 'Northwest Territories Department of Environment and Natural Resources'),
(108677, 89126, 'en', 'name', 'Utah Department of Natural Resources'),
(108678, 89127, 'en', 'name', 'Arizona Experiment Station'),
(108679, 89128, 'fi', 'name', 'Eduskunta'),
(108680, 89128, 'sv', 'name', 'Finlands riksdag'),
(108681, 89128, 'en', 'name', 'Parliament of Finland'),
(108682, 89129, 'fr', 'name', 'Groupe Banque TD'),
(108683, 89129, 'en', 'name', 'TD Bank Group'),
(108684, 89130, 'no_lang_code', 'name', 'Groupe Lactalis (France)'),
(108685, 89131, 'en', 'name', 'First Hospital of China Medical University'),
(108686, 89131, 'zh', 'name', 'äø­å›½åŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(108687, 89132, 'ca', 'name', 'Departament d''Acció Climàtica, Alimentació i Agenda Rural'),
(108688, 89133, 'en', 'name', 'Bavarian Natural History Collections'),
(108689, 89133, 'de', 'name', 'Staatliche Naturwissenschaftliche Sammlungen Bayerns'),
(108690, 89134, 'en', 'name', 'Association of Avian Veterinarians'),
(108691, 89135, 'no_lang_code', 'name', 'Samsung Medison (South Korea)'),
(108692, 89135, 'ko', 'name', '삼성 ė©”ė””ģŠØ'),
(108693, 89136, 'en', 'name', 'Bonefish and Tarpon Trust'),
(108694, 89137, 'en', 'name', 'Virginia Society of Ornithology'),
(108695, 89138, 'fr', 'name', 'Acta les instituts techniques agricoles'),
(108696, 89139, 'en', 'name', 'Constitutional Court of Spain'),
(108697, 89139, 'es', 'name', 'Tribunal Constitucional de EspaƱa'),
(108698, 89140, 'no_lang_code', 'name', 'Rayonier Advanced Materials (United States)'),
(108699, 89141, 'en', 'name', 'Al-Saeed University'),
(108700, 89141, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³Ų¹ŁŠŲÆ'),
(108701, 89142, 'en', 'name', 'South Dakota Game, Fish and Parks'),
(108702, 89143, 'en', 'name', 'The Wolfson Family Charitable Trust'),
(108703, 89144, 'no_lang_code', 'name', 'Mehr Alborz University'),
(108704, 89144, 'fa', 'name', 'دانؓگاه مهرالبرز'),
(108705, 89145, 'pt', 'name', 'Universidade de DĆ­li'),
(108706, 89146, 'en', 'name', 'The Second Affiliated Hospital of Xiamen Medical College'),
(108707, 89146, 'zh', 'name', 'åŽ¦é—Øåø‚ē¬¬äŗŒåŒ»é™¢'),
(108708, 89147, 'en', 'name', 'South African Society of Haematology'),
(108709, 89147, 'af', 'name', 'Suid-Afrikaanse Vereeniging vir Hematologie'),
(108710, 89148, 'en', 'name', 'Southeastern Ontario Academic Medical Organization'),
(108711, 89149, 'en', 'name', 'European Association of Zoos and Aquaria'),
(108712, 89150, 'it', 'name', 'Fondazione per le Scienze Religiose Giovanni XXIII'),
(108713, 89151, 'en', 'name', 'James B. Pendleton Charitable Trust'),
(108714, 89152, 'en', 'name', 'Jiangsu Province Science and Technology Department'),
(108715, 89153, 'en', 'name', 'North Dakota Department of Agriculture'),
(108716, 89154, 'en', 'name', 'Colorado Native Plant Society'),
(108717, 89155, 'fr', 'name', 'Cour PƩnale Internationale'),
(108718, 89155, 'en', 'name', 'International Criminal Court'),
(108719, 89156, 'en', 'name', 'Durst Group AG (Italy)'),
(108720, 89157, 'en', 'name', 'Science and Technology Department of Qinghai Province'),
(108721, 89157, 'zh', 'name', 'é’ęµ·ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(108722, 89158, 'en', 'name', 'IMEC'),
(108723, 89159, 'en', 'name', 'Southern California Academy of Sciences'),
(108724, 89160, 'en', 'name', 'Forrest Research Foundation'),
(108725, 89161, 'en', 'name', 'Republic of China Naval Academy'),
(108726, 89161, 'zh', 'name', 'äø­čÆę°‘åœ‹ęµ·č»č»å®˜å­øę ”'),
(108727, 89162, 'en', 'name', 'Center for Innovative Medicine'),
(108728, 89162, 'sv', 'name', 'Centrum fƶr Innovativ Medicin'),
(108729, 89163, 'en', 'name', 'Chongqing Vocational and Technical University of Mechatronics'),
(108730, 89163, 'zh', 'name', 'é‡åŗ†ęœŗē”µčŒäøšęŠ€ęœÆå¤§å­¦'),
(108731, 89164, 'pl', 'name', 'Szpital św. Wincentego a Paulo'),
(108732, 89165, 'en', 'name', 'Mercy University'),
(108733, 89166, 'af', 'name', 'Koninklike Vereeniging van Suid-Africa'),
(108734, 89166, 'en', 'name', 'Royal Society of South Africa'),
(108735, 89167, 'en', 'name', 'Rembrandt Institute of Cardiovascular Science'),
(108736, 89168, 'en', 'name', 'Flinders Foundation'),
(108737, 89169, 'sv', 'name', 'C.F. Lundstrƶms Stiftelse'),
(108738, 89170, 'en', 'name', 'J.W. & H.M. Goodman Foundation'),
(108739, 89171, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Mulia Pratama'),
(108740, 89172, 'no_lang_code', 'name', 'Separations (South Africa)'),
(108741, 89173, 'de', 'name', 'Medizinische FakultƤt Mannheim'),
(108742, 89174, 'en', 'name', 'Australian Centre for Advanced Photovoltaics'),
(108743, 89175, 'no_lang_code', 'name', 'Lush (United Kingdom)'),
(108744, 89176, 'en', 'name', 'John H. Tietze Foundation Trust'),
(108745, 89177, 'sv', 'name', 'Stiftelsen Stig och Gunborg Westman'),
(108746, 89178, 'no_lang_code', 'name', 'Inqaba Biotechnical Industries'),
(108747, 89178, 'af', 'name', 'Inqaba Biotegniese Nywerhede'),
(108748, 89179, 'en', 'name', 'Turku University Foundation'),
(108749, 89179, 'fi', 'name', 'Turun YliopistosƤƤtiƶ'),
(108750, 89180, 'en', 'name', 'American Sheep Industry Association'),
(108751, 89181, 'no', 'name', 'FHF – Fiskeri- og havbruksnƦringens forskningsfinansiering'),
(108752, 89181, 'en', 'name', 'FHF – Norwegian Seafood Research Fund'),
(108753, 89182, 'en', 'name', 'State Organization «Grigoriev Institute for Medical Radiology and Oncology of the National Academy of Medical Sciences of Ukraine»'),
(108754, 89182, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГичної раГіології та онкології ім. C. П. Григор’єва ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України»'),
(108755, 89183, 'en', 'name', 'European Climate, Infrastructure and Environment Executive Agency'),
(108756, 89184, 'en', 'name', 'Colorado Water Conservation Board'),
(108757, 89185, 'en', 'name', 'U.S. Coastal Research Program'),
(108758, 89186, 'en', 'name', 'Oakley Mental Health Research Foundation'),
(108759, 89187, 'en', 'name', 'Royal Zoological Society of New South Wales'),
(108760, 89188, 'fr', 'name', 'Acta - les Instituts Techniques Agricoles'),
(108761, 89189, 'no_lang_code', 'name', 'Celtic Molecular Diagnostics (South Africa)'),
(108762, 89189, 'af', 'name', 'Keltiese MolekulĆŖre Diagnostiek'),
(108763, 89190, 'sv', 'name', 'Stiftelsen VƤrldsnaturfonden WWF'),
(108764, 89191, 'en', 'name', 'International Elephant Foundation'),
(108765, 89192, 'en', 'name', 'National Marine Environmental Monitoring Center'),
(108766, 89193, 'en', 'name', 'Kingston Centre'),
(108767, 89194, 'en', 'name', 'State Key Laboratory of Palaeobiology and Stratigraphy'),
(108768, 89194, 'zh', 'name', 'ēŽ°ä»£å¤ē”Ÿē‰©å­¦å’Œåœ°å±‚å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(108769, 89195, 'en', 'name', 'Al-Zahraa University for Women'),
(108770, 89195, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الزهراؔ Ų¹Ł„ŁŠŁ‡Ų§ السلام للبنات'),
(108771, 89196, 'de', 'name', 'Amt der SteiermƤrkischen Landesregierung'),
(108772, 89197, 'en', 'name', 'Minderoo Foundation'),
(108773, 89198, 'en', 'name', 'Four Winds Foundation'),
(108774, 89199, 'en', 'name', 'Henry J. Predolin Foundation for Research in Leukemia'),
(108775, 89200, 'en', 'name', 'Edna Bailey Sussman Foundation'),
(108776, 89201, 'sv', 'name', 'ForskningsrƄdet i Sydƶstra Sverige'),
(108777, 89202, 'en', 'name', 'State Key Laboratory of Geohazard Prevention and Geoenvironment Protection'),
(108778, 89202, 'zh', 'name', 'åœ°č“Øē¾å®³é˜²ę²»äøŽåœ°č“ØēŽÆå¢ƒäæęŠ¤å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(108779, 89203, 'es', 'name', 'Universidad de Ciencias MƩdicas de Cienfuegos'),
(108780, 89204, 'en', 'name', 'New Zealand’s Biological Heritage'),
(108781, 89204, 'mi', 'name', 'Ngā Koiora Tuku Iho'),
(108782, 89205, 'en', 'name', 'Friday Harbor Laboratories'),
(108783, 89206, 'en', 'name', 'Western Wildland Environmental Threat Assessment Center'),
(108784, 89207, 'sv', 'name', 'RĆ„dman och Fru Ernst Collianders Stiftelse fƶr VƤlgƶrande ƄndamĆ„l'),
(108785, 89208, 'it', 'name', 'INGV Sezione di Roma 2'),
(108786, 89209, 'en', 'name', 'Hanbat National University'),
(108787, 89209, 'ko', 'name', 'ķ•œė°­ėŒ€ķ•™źµ'),
(108788, 89210, 'en', 'name', 'Marine Environmental Observation Prediction and Response Network'),
(108789, 89211, 'en', 'name', 'Cooperative Research Centre for Developing Northern Australia'),
(108790, 89212, 'en', 'name', 'Province of Noord-Brabant'),
(108791, 89212, 'nl', 'name', 'Provincie Noord-Brabant'),
(108792, 89213, 'no_lang_code', 'name', 'Separation Scientific (South Africa)'),
(108793, 89213, 'af', 'name', 'Separation Wetenskaplik'),
(108794, 89214, 'it', 'name', 'INGV Osservatorio Vesuviano'),
(108795, 89215, 'en', 'name', 'Hasso Plattner Foundation'),
(108796, 89216, 'fr', 'name', 'Fondation SegrƩ'),
(108797, 89217, 'fr', 'name', 'Orthophonie et Audiologie Canada'),
(108798, 89217, 'en', 'name', 'Speech-Language and Audiology Canada'),
(108799, 89218, 'en', 'name', 'Mongolian Foundation for Science and Technology'),
(108800, 89218, 'mn', 'name', 'ŠØŠøŠ½Š¶Š»ŃŃ… ŃƒŃ…Š°Š°Š½, технологийн сан'),
(108801, 89218, 'zh', 'name', 'č’™å¤ē§‘å­øęšØęŠ€č”“åŸŗé‡‘ęœƒ'),
(108802, 89219, 'en', 'name', 'Toxicology Society of South Africa');
INSERT INTO `ror_settings` VALUES
(108803, 89220, 'en', 'name', 'State Key Laboratory of Food Nutrition and Safety'),
(108804, 89220, 'zh', 'name', 'é£Ÿå“č„å…»äøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(108805, 89221, 'en', 'name', 'Woodcock-MuƱoz Foundation'),
(108806, 89222, 'en', 'name', 'State Key Laboratory of Plateau Ecology and Agriculture'),
(108807, 89222, 'zh', 'name', 'ēœéƒØå…±å»ŗäø‰ę±Ÿęŗē”Ÿę€äøŽé«˜åŽŸå†œē‰§äøšå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(108808, 89223, 'pt', 'name', 'Fundação Amparo e Desenvolvimento da Pesquisa'),
(108809, 89224, 'en', 'name', 'Ann and Gordon Getty Foundation'),
(108810, 89225, 'en', 'name', 'Dinosaur Research Institute'),
(108811, 89226, 'fr', 'name', 'ComitƩ National des Interprofessions des Vins Ơ Appellation d''Origine'),
(108812, 89227, 'en', 'name', 'National Museum of Natural History of the National Academy of Sciences of Ukraine'),
(108813, 89227, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науково-прироГничий музей ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(108814, 89228, 'en', 'name', 'Colorado Department of Natural Resources'),
(108815, 89229, 'no_lang_code', 'name', 'Medtronic (Japan)'),
(108816, 89229, 'ja', 'name', 'ęœ¬ćƒ”ćƒ‰ćƒˆćƒ­ćƒ‹ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(108817, 89230, 'en', 'name', 'Neuromatch'),
(108818, 89231, 'en', 'name', 'Health Commission of Shaanxi Province'),
(108819, 89231, 'zh', 'name', 'é™•č„æēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(108820, 89232, 'en', 'name', 'Ernest Kleinwort Charitable Trust'),
(108821, 89233, 'en', 'name', 'Colorado Scientific Society'),
(108822, 89234, 'it', 'name', 'INGV Sezione di Pisa'),
(108823, 89235, 'en', 'name', 'Manipal-Tata Medical College, Jamshedpur'),
(108824, 89236, 'en', 'name', 'Mandai Wildlife Group'),
(108825, 89237, 'de', 'name', 'Bauer-Hollmann Stiftung'),
(108826, 89238, 'en', 'name', 'Institute of Hydrobiology'),
(108827, 89238, 'zh', 'name', 'ę­¦ę±‰ę°“ē”Ÿē”Ÿē‰©ē ”ē©¶ę‰€'),
(108828, 89239, 'fi', 'name', 'TYKS-sƤƤtiƶ'),
(108829, 89240, 'sv', 'name', 'Kungl. Skogs- och Lantbruksakademien'),
(108830, 89240, 'en', 'name', 'Royal Swedish Academy of Agriculture and Forestry'),
(108831, 89241, 'en', 'name', 'National Health Fund'),
(108832, 89242, 'af', 'name', 'Dierkundige Vereeniging van Suidelike Afrika'),
(108833, 89242, 'en', 'name', 'Zoological Society of Southern Africa'),
(108834, 89243, 'id', 'name', 'Universitas Indonesia Membangun'),
(108835, 89244, 'fr', 'name', 'Laboratoire Matériaux Optiques, Photonique et Systèmes'),
(108836, 89245, 'en', 'name', 'Schlinger Foundation'),
(108837, 89246, 'en', 'name', 'Genome Atlantic'),
(108838, 89247, 'de', 'name', 'Private PƤdagogische Hochschule Augustinum'),
(108839, 89247, 'en', 'name', 'Private University College of Teacher Education Augustinum'),
(108840, 89248, 'en', 'name', 'ADEN University PanamĆ”'),
(108841, 89249, 'en', 'name', 'China National Textile and Apparel Council'),
(108842, 89249, 'zh', 'name', 'äø­å›½ēŗŗē»‡å·„äøšč”åˆä¼š'),
(108843, 89250, 'de', 'name', 'Fachhochschule Oldenburg/Ostfriesland/Wilhelmshaven'),
(108844, 89251, 'en', 'name', 'Foundation for Advanced Research'),
(108845, 89251, 'ru', 'name', 'ФонГ перспективных исслеГований'),
(108846, 89252, 'no_lang_code', 'name', 'Temasek Foundation'),
(108847, 89253, 'en', 'name', 'State Key Laboratory of Genetic Resources and Evolution'),
(108848, 89253, 'zh', 'name', 'é—ä¼ čµ„ęŗäøŽčæ›åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(108849, 89254, 'en', 'name', 'Taizhou Municipal Science and Technology Bureau'),
(108850, 89254, 'zh', 'name', 'ę ¹ę®å°å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(108851, 89255, 'no_lang_code', 'name', 'Sustainable Innovations Europe (Spain)'),
(108852, 89256, 'de', 'name', 'Gips-Schüle-Stiftung'),
(108853, 89257, 'fr', 'name', 'La Fondation Pour La Conservation Du Saumon Atlantique'),
(108854, 89257, 'en', 'name', 'The Foundation for Conservation of Atlantic Salmon'),
(108855, 89258, 'tr', 'name', 'Sağlık Hizmetleri Uygulama ve Araştırma Hastanesi'),
(108856, 89259, 'sv', 'name', 'Stiftelsen fƶr Gamla TjƤnarinnor'),
(108857, 89260, 'en', 'name', 'Southeast Climate Adaptation Science Center'),
(108858, 89261, 'it', 'name', 'INGV Sezione di Milano'),
(108859, 89262, 'no_lang_code', 'name', 'Anatech'),
(108860, 89263, 'sv', 'name', 'LƤnsstyrelsen Hallands LƤn'),
(108861, 89264, 'es', 'name', 'Universidad Bernardo O''Higgins'),
(108862, 89265, 'it', 'name', 'INGV Sezione Irpinia'),
(108863, 89266, 'en', 'name', 'South African Society for Basic and Clinical Pharmacology'),
(108864, 89266, 'af', 'name', 'Suid-Afrikaanse Vereeniging vir Basiese en Kliniese Farmakologie'),
(108865, 89267, 'fr', 'name', 'Fondation Schlumberger pour l’Education et la Recherche'),
(108866, 89268, 'sv', 'name', 'Stiftelsen Anna och Gunnar Vidfelts Fond fƶr Biologisk Forskning'),
(108867, 89269, 'en', 'name', 'Lloyd Carr-Harris Foundation'),
(108868, 89270, 'sv', 'name', 'Naturskyddsstiftelsen i Finland'),
(108869, 89270, 'fi', 'name', 'Suomen Luonnonsuojelun SƤƤtiƶ'),
(108870, 89270, 'en', 'name', 'The Finnish Foundation for Nature Conservation'),
(108871, 89271, 'en', 'name', 'Northwest Institute of Plateau Biology'),
(108872, 89271, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č„æåŒ—é«˜åŽŸē”Ÿē‰©ē ”ē©¶ę‰€'),
(108873, 89272, 'pt', 'name', 'Universidade da Paz'),
(108874, 89273, 'en', 'name', 'Hortgro Science'),
(108875, 89274, 'sv', 'name', 'Sveaskog'),
(108876, 89275, 'it', 'name', 'INGV Osservatorio Etneo'),
(108877, 89276, 'en', 'name', 'Fulbright Austria'),
(108878, 89277, 'en', 'name', 'The Stanton Foundation'),
(108879, 89278, 'fr', 'name', 'Conseil RƩgional Midi-PyrƩnƩes'),
(108880, 89279, 'no_lang_code', 'name', 'ISAGEN EnergĆ­a Productiva (Colombia)'),
(108881, 89280, 'en', 'name', 'Chinese Society of Clinical Oncology'),
(108882, 89280, 'zh', 'name', 'äø­å›½äø“åŗŠč‚æē˜¤å­¦ä¼š'),
(108883, 89281, 'en', 'name', 'Wuhan Ship Communication Research Institute'),
(108884, 89281, 'zh', 'name', 'ę­¦ę±‰čˆ¹čˆ¶é€šäæ”ē ”ē©¶ę‰€'),
(108885, 89282, 'en', 'name', 'Pears Foundation'),
(108886, 89283, 'en', 'name', 'European Huntington''s Disease Network'),
(108887, 89284, 'de', 'name', 'Landwirtschaftliche Rentenbank'),
(108888, 89285, 'de', 'name', 'Hochschule Emden / Leer'),
(108889, 89285, 'en', 'name', 'University of Applied Sciences Emden Leer'),
(108890, 89286, 'en', 'name', 'Cornell High Energy Synchrotron Source'),
(108891, 89287, 'it', 'name', 'Centro Polispecialistico Mediterraneo'),
(108892, 89288, 'es', 'name', 'Confederación HidrogrÔfica del Duero'),
(108893, 89289, 'en', 'name', 'National Microscopy Infrastructure'),
(108894, 89290, 'id', 'name', 'Badan Pengelola Dana Perkebunan Kelapa Sawit'),
(108895, 89291, 'en', 'name', 'The Dulverton Trust'),
(108896, 89292, 'de', 'name', 'Heubergstiftung'),
(108897, 89293, 'en', 'name', 'Guilin Municipal People''s Government'),
(108898, 89293, 'zh', 'name', 'ę”‚ęž—åø‚äŗŗę°‘ę”æåŗœ'),
(108899, 89294, 'en', 'name', 'Arab Open University'),
(108900, 89294, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(108901, 89295, 'nl', 'name', 'Alberta Mennega Stichting'),
(108902, 89296, 'en', 'name', 'Western Ecological Research Center'),
(108903, 89297, 'en', 'name', 'International Society of Biomechanics'),
(108904, 89298, 'en', 'name', 'Sarawak Multimedia Authority'),
(108905, 89299, 'en', 'name', 'Golden Key International Honour Society'),
(108906, 89300, 'en', 'name', 'Worldwide Book Services (United Kingdom)'),
(108907, 89301, 'ca', 'name', 'Conselleria d''Innovació, Universitats, Ciència i Societat Digital'),
(108908, 89301, 'es', 'name', 'Conselleria de Innovación, Universidades, Ciencia y Sociedad Digital'),
(108909, 89302, 'en', 'name', 'Australian Marine Mammal Centre'),
(108910, 89303, 'en', 'name', 'State Key Laboratory of Freshwater Ecology and Biotechnology'),
(108911, 89303, 'zh', 'name', 'ę·”ę°“ē”Ÿę€äøŽē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(108912, 89304, 'en', 'name', 'National Wildlife Research Center'),
(108913, 89305, 'en', 'name', 'DASSI - Data Archive for Social Sciences in Italy'),
(108914, 89306, 'en', 'name', 'Hutton Parker Foundation'),
(108915, 89307, 'en', 'name', 'Guilin Science and Technology Bureau'),
(108916, 89307, 'zh', 'name', 'ę”‚ęž—åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(108917, 89308, 'fr', 'name', 'MinistĆØre des Outre-mer'),
(108918, 89309, 'fr', 'name', 'Terres Australes et Antarctiques FranƧaises'),
(108919, 89310, 'mi', 'name', 'Te Pūnaha Matatini'),
(108920, 89311, 'en', 'name', 'Department of Jobs, Tourism, Science and Innovation'),
(108921, 89312, 'no_lang_code', 'name', 'Davies Diagnostics (South Africa)'),
(108922, 89312, 'af', 'name', 'Davies Diagnostiek'),
(108923, 89313, 'no_lang_code', 'name', 'Bio-protocol (United States)'),
(108924, 89314, 'it', 'name', 'INGV Osservatorio Nazionale Terremoti'),
(108925, 89315, 'fr', 'name', 'AndrƩ Losch Fondation'),
(108926, 89316, 'en', 'name', 'Giraffe Conservation Foundation'),
(108927, 89317, 'no_lang_code', 'name', 'Agrivet Research and Advisory Pvt Ltd (India)'),
(108928, 89318, 'sv', 'name', 'Ɩstersjƶcentrum'),
(108929, 89319, 'af', 'name', 'Nasionale Instituut vir Oordraagbare Siektes'),
(108930, 89319, 'en', 'name', 'National Institute for Communicable Diseases'),
(108931, 89320, 'it', 'name', 'INGV Sezione di Palermo'),
(108932, 89321, 'fr', 'name', 'Fondation de l''Ecole Normale Superieure'),
(108933, 89322, 'en', 'name', 'National Institute of Infectious Diseases'),
(108934, 89322, 'ja', 'name', 'åŽšē”ŸåŠ“åƒēœå›½ē«‹ę„ŸęŸ“ē—‡ē ”ē©¶ę‰€'),
(108935, 89323, 'en', 'name', 'Margaret Q. Landenberger Research Foundation'),
(108936, 89324, 'hu', 'name', 'Periféria Közpolitikai és Kutatóközpont'),
(108937, 89324, 'en', 'name', 'PerifƩria Policy and Research Center'),
(108938, 89325, 'en', 'name', 'Paddy Pallin Foundation'),
(108939, 89326, 'en', 'name', 'Turku University Hospital'),
(108940, 89326, 'fi', 'name', 'Turun yliopistollinen keskussairaala'),
(108941, 89327, 'en', 'name', 'Mayekawa Houonkai Foundation'),
(108942, 89327, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å‰å·å ±ę©ä¼š'),
(108943, 89328, 'en', 'name', 'Aalborg Zoo'),
(108944, 89329, 'da', 'name', 'Familien Erichsens Mindefond'),
(108945, 89330, 'en', 'name', 'Key Laboratory of Zoological Systematics and Evolution'),
(108946, 89330, 'zh', 'name', 'åŠØē‰©čæ›åŒ–äøŽē³»ē»Ÿå­¦é™¢é‡ē‚¹å®žéŖŒå®¤'),
(108947, 89331, 'en', 'name', 'Peter Sowerby Foundation'),
(108948, 89332, 'en', 'name', 'Ohsumi Frontier Science Foundation'),
(108949, 89332, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§éš…åŸŗē¤Žē§‘å­¦å‰µęˆč²”å›£'),
(108950, 89333, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia em Biodiversidade e Produtos Naturais'),
(108951, 89334, 'en', 'name', 'Kenneth M. Molson Foundation'),
(108952, 89335, 'no_lang_code', 'name', 'Whitehead Scientific (South Africa)'),
(108953, 89336, 'no_lang_code', 'name', 'Lasec (South Africa)'),
(108954, 89337, 'fr', 'name', 'Fondation des Sciences du Patrimoine'),
(108955, 89338, 'en', 'name', 'Farmer Family Foundation'),
(108956, 89339, 'no_lang_code', 'name', 'Biomerica (United States)'),
(108957, 89340, 'en', 'name', 'The Royal Society of Queensland'),
(108958, 89341, 'en', 'name', 'Ministry of Health'),
(108959, 89342, 'id', 'name', 'Politeknik Pertanian Negeri Kupang'),
(108960, 89342, 'en', 'name', 'State Agricultural Polytechnic of Kupang'),
(108961, 89343, 'en', 'name', 'Quebec Bio-Imaging Network'),
(108962, 89343, 'fr', 'name', 'RƩseau en Bio-Imagerie du Quebec'),
(108963, 89344, 'en', 'name', 'Critical Ecosystem Partnership Fund'),
(108964, 89345, 'en', 'name', 'Quahog Bay Conservancy'),
(108965, 89346, 'fr', 'name', 'Fondation Prof. Dr. Max Cloƫtta'),
(108966, 89346, 'en', 'name', 'Prof. Dr. Max Cloƫtta Foundation'),
(108967, 89346, 'de', 'name', 'Stiftung Prof. Dr. Max Cloƫtta'),
(108968, 89347, 'es', 'name', 'Ministerio de Educación y Ciencias'),
(108969, 89348, 'en', 'name', 'The Crustacean Society'),
(108970, 89349, 'pl', 'name', 'Centrum Medyczne Smoluchowskiego - Gdańsk'),
(108971, 89350, 'no_lang_code', 'name', 'Biocom Africa (South Africa)'),
(108972, 89351, 'pt', 'name', 'Conselho Nacional das FundaƧƵes Estaduais de Amparo Ơ Pesquisa'),
(108973, 89352, 'en', 'name', 'Davee Foundation'),
(108974, 89353, 'es', 'name', 'MarquƩs de Valdecilla University Hospital'),
(108975, 89354, 'en', 'name', 'Baoding No.1 Central Hospital'),
(108976, 89354, 'zh', 'name', 'äæå®šåø‚ē¬¬äø€äø­åæƒåŒ»é™¢'),
(108977, 89355, 'en', 'name', 'State Key Laboratory of Digital Medical Engineering'),
(108978, 89356, 'pt', 'name', 'Programa Operacional TemƔtico Factores de Competitividade'),
(108979, 89357, 'fi', 'name', 'Tiina ja Antti Herlinin sƤƤtiƶ'),
(108980, 89358, 'es', 'name', 'Fundación Williams'),
(108981, 89359, 'en', 'name', 'Offield Family Foundation'),
(108982, 89360, 'fr', 'name', 'Centre de Recherche sur les MƩdiations'),
(108983, 89361, 'pl', 'name', 'Wojewódzki Fundusz Ochrony Środowiska i Gospodarki Wodnej w Gdańsku'),
(108984, 89362, 'en', 'name', 'March of Dimes'),
(108985, 89363, 'en', 'name', 'The National Brain Appeal'),
(108986, 89364, 'en', 'name', 'Nanjing Institute of Geology and Paleontology'),
(108987, 89364, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å—äŗ¬åœ°č“Øå¤ē”Ÿē‰©ē ”ē©¶ę‰€'),
(108988, 89365, 'en', 'name', 'Wildlife Reserves Singapore Conservation Fund'),
(108989, 89366, 'sv', 'name', 'P. O. Zetterlings stiftelse'),
(108990, 89367, 'en', 'name', 'Life Science Center for Survival Dynamics, Tsukuba Advanced Research Alliance (TARA)'),
(108991, 89367, 'ja', 'name', '筑波大学 ē”Ÿå­˜ćƒ€ć‚¤ćƒŠćƒŸć‚Æć‚¹ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(108992, 89368, 'en', 'name', 'Pacific Northwest Research Station'),
(108993, 89369, 'es', 'name', 'Consejo Nacional de Rectores'),
(108994, 89370, 'en', 'name', 'Government of Western Australia'),
(108995, 89371, 'pl', 'name', 'Szpital Morski im. PCK'),
(108996, 89372, 'pl', 'name', 'Szpital Specjalistyczny im. F. Ceynowy'),
(108997, 89373, 'de', 'name', 'Bauhaus-UniversitƤt Weimar'),
(108998, 89374, 'en', 'name', 'Philippe Foundation'),
(108999, 89375, 'en', 'name', 'Kunming Institute of Zoology'),
(109000, 89375, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę˜†ę˜ŽåŠØē‰©ē ”ē©¶ę‰€'),
(109001, 89376, 'en', 'name', 'Hans Hoheisen Charitable Trust'),
(109002, 89377, 'en', 'name', 'Ricola Foundation'),
(109003, 89378, 'en', 'name', 'Global Environment Fund'),
(109004, 89379, 'en', 'name', 'South African Immunology Society'),
(109005, 89379, 'af', 'name', 'Suid-Afrikaanse Immunologie Vereeniging'),
(109006, 89380, 'fi', 'name', 'Niemi-sƤƤtiƶ'),
(109007, 89381, 'en', 'name', 'Society for Electronic Transactions and Security'),
(109008, 89382, 'en', 'name', 'Colorado Mountain Club Foundation'),
(109009, 89383, 'en', 'name', 'Korea Hydrographic and Oceanographic Agency'),
(109010, 89383, 'zh', 'name', 'åœ‹ē«‹ęµ·ę“‹čŖæęŸ»é™¢'),
(109011, 89383, 'ko', 'name', '국립핓양씰사원'),
(109012, 89384, 'en', 'name', 'South Central Climate Adaptation Science Center'),
(109013, 89385, 'es', 'name', 'Fundación Tatiana Pérez de GuzmÔn el Bueno'),
(109014, 89386, 'en', 'name', 'Camp Fire Conservation Fund'),
(109015, 89387, 'it', 'name', 'INGV Sezione di Bologna'),
(109016, 89388, 'en', 'name', 'Gulf Coast Ecosystem Restoration Council'),
(109017, 89389, 'en', 'name', 'State Key Laboratory of Urban and Regional Ecology'),
(109018, 89389, 'zh', 'name', 'åŸŽåø‚äøŽåŒŗåŸŸē”Ÿę€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(109019, 89390, 'en', 'name', 'Neurocritical Care Society'),
(109020, 89391, 'fr', 'name', 'Laboratoire de Chimie et Physique - Approche Multi-Ʃchelle des Milieux Complexes'),
(109021, 89392, 'tr', 'name', 'Taksim Eğitim ve Araştırma Hastanesi'),
(109022, 89393, 'en', 'name', 'Dubai Judicial Institute'),
(109023, 89393, 'ar', 'name', 'معهد دبي Ų§Ł„Ł‚Ų¶Ų§Ų¦ŁŠ'),
(109024, 89394, 'no_lang_code', 'name', 'CapeBio (South Africa)'),
(109025, 89395, 'en', 'name', 'Earth and Planets Laboratory'),
(109026, 89396, 'fr', 'name', 'SociƩtƩ FranƧaise de SantƩ Publique'),
(109027, 89397, 'no_lang_code', 'name', 'National Infrastructures for Research and Technology -  GRNET S.A'),
(109028, 89397, 'el', 'name', 'Ī•ĪøĪ½Ī¹ĪŗĻŒ Δίκτυο Ī„Ļ€ĪæĪ“ĪæĪ¼ĻŽĪ½ Τεχνολογίας και ĪˆĻĪµĻ…Ī½Ī±Ļ‚ Ī‘.Ī•. – GRNET'),
(109029, 89398, 'no_lang_code', 'name', 'FutureMeds (United Kingdom)'),
(109030, 89399, 'fr', 'name', 'Institut de recherches sur l''Ć©volution de la nation et de l''Ɖtat'),
(109031, 89400, 'no_lang_code', 'name', 'South China Biological Medicine (China)'),
(109032, 89400, 'zh', 'name', 'å¹æå·žåø‚åŽå—å†œå¤§ē”Ÿē‰©čÆå“ęœ‰é™å…¬åø'),
(109033, 89401, 'tr', 'name', 'Gaziosmanpaşa Taksim Eğitim ve Araştırma Hastanesi'),
(109034, 89402, 'en', 'name', 'Kherson State Agrarian and Economic University'),
(109035, 89402, 'uk', 'name', 'Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠøŠ¹ Гержавний аграрно-економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109036, 89403, 'it', 'name', 'INGV Amministrazione Centrale'),
(109037, 89404, 'no_lang_code', 'name', 'Alabama Audubon'),
(109038, 89405, 'pt', 'name', 'CETESB - Companhia Ambiental do Estado de SĆ£o Paulo'),
(109039, 89406, 'en', 'name', 'PƔpa Reformed Theological Seminary'),
(109040, 89406, 'hu', 'name', 'PÔpai ReformÔtus Teológiai Akadémia'),
(109041, 89407, 'hu', 'name', 'Anyag- Ʃs KƶrnyezetkƩmiai IntƩzet'),
(109042, 89407, 'en', 'name', 'Institute of Materials and Environmental Chemistry'),
(109043, 89408, 'en', 'name', 'Royal Society of Chemistry'),
(109044, 89409, 'fr', 'name', 'Centre d''Etudes Germaniques Interculturelles de Lorraine'),
(109045, 89410, 'en', 'name', 'South African Society for Animal Science'),
(109046, 89410, 'af', 'name', 'Suid-Afrikaanse Vereeniging vir Dierkunde'),
(109047, 89411, 'en', 'name', 'Federal University of São João del-Rei'),
(109048, 89411, 'pt', 'name', 'Universidade Federal de São João del-Rei'),
(109049, 89412, 'en', 'name', 'Acute and Chronic Cardiovascular Deficiency'),
(109050, 89412, 'fr', 'name', 'DƩfaillance Cardiovasculaire Aiguƫ et Chronique'),
(109051, 89413, 'en', 'name', 'Arak University of Medical Sciences'),
(109052, 89413, 'fa', 'name', 'Ł¾ŁˆŲ±ŲŖŲ§Ł„ دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§Ų±Ų§Ś©'),
(109053, 89414, 'en', 'name', 'Instituto Marangoni'),
(109054, 89415, 'en', 'name', 'South African Association of Botanists'),
(109055, 89415, 'af', 'name', 'Suid-Afrikaanse Vereeniging van Plantkundiges'),
(109056, 89416, 'it', 'name', 'Istituto Marangoni London'),
(109057, 89417, 'no_lang_code', 'name', 'Labotec (South Africa)'),
(109058, 89418, 'en', 'name', 'Nutrition-Genetics and Exposure to Environmental Risks'),
(109059, 89418, 'fr', 'name', 'Nutrition-GƩnƩtique et Exposition aux Risques Environnementaux'),
(109060, 89419, 'en', 'name', 'Macao Polytechnic University'),
(109061, 89419, 'pt', 'name', 'Universidade PolitƩcnica de Macau'),
(109062, 89419, 'zh', 'name', '澳門理巄大學'),
(109063, 89420, 'it', 'name', 'Provincia autonoma di Bolzano - Alto Adige'),
(109064, 89421, 'en', 'name', 'The Linnean Society of New South Wales'),
(109065, 89422, 'en', 'name', 'Administration for Strategic Preparedness and Response'),
(109066, 89423, 'en', 'name', 'Australian Data Archive'),
(109067, 89424, 'fr', 'name', 'Cibles thƩrapeutiques, formulation et expertise prƩclinique du mƩdicament'),
(109068, 89425, 'en', 'name', 'ISIS Neutron and Muon Source'),
(109069, 89426, 'en', 'name', 'Stephen F. Austin State University'),
(109070, 89427, 'fr', 'name', 'Centre de Recherche Universitaire Lorrain d’Histoire'),
(109071, 89428, 'en', 'name', 'Innovate UK'),
(109072, 89429, 'en', 'name', 'Nile University'),
(109073, 89429, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„'),
(109074, 89430, 'en', 'name', 'Biotechnology and Biological Sciences Research Council'),
(109075, 89431, 'en', 'name', 'Parkview Mirro Center for Research and Innovation'),
(109076, 89432, 'fr', 'name', 'Centre de Recherche sur les IdentitƩs, les Nations et l''InterculturalitƩ'),
(109077, 89433, 'en', 'name', 'Research Nova Scotia'),
(109078, 89434, 'it', 'name', 'Istituto Nazionale di Geofisica e Vulcanologia'),
(109079, 89435, 'es', 'name', 'Instituto de Innovación Agropecuaria de PanamÔ'),
(109080, 89436, 'no_lang_code', 'name', 'Copernicus.org (Germany)'),
(109081, 89437, 'id', 'name', 'Institut Teknologi PLN'),
(109082, 89438, 'no_lang_code', 'name', 'Sarawak Energy (Malaysia)'),
(109083, 89439, 'en', 'name', 'Research England'),
(109084, 89440, 'en', 'name', 'Office of Data Science Strategy'),
(109085, 89441, 'tr', 'name', 'Gaziosmanpaşa Eğitim Ve Araştırma Hastanesi'),
(109086, 89442, 'it', 'name', 'INGV Amministrazione Centrale'),
(109087, 89443, 'en', 'name', 'Manton Foundation'),
(109088, 89444, 'en', 'name', 'Department of Terrestrial Magnetism'),
(109089, 89445, 'fr', 'name', 'Centre de Recherche sur les Cultures et les LittƩratures EuropƩennes'),
(109090, 89446, 'fr', 'name', 'LittƩratures, Imaginaire, SociƩtƩs'),
(109091, 89447, 'en', 'name', 'Edward Waters University'),
(109092, 89448, 'de', 'name', 'Deutsche Gesellschaft für Psychologie e.V. (DGPs)'),
(109093, 89449, 'en', 'name', 'Economic and Social Research Council'),
(109094, 89450, 'hu', 'name', 'HUN-REN Atommagkutató Intézet'),
(109095, 89450, 'en', 'name', 'HUN-REN Institute for Nuclear Research'),
(109096, 89451, 'en', 'name', 'Foundation for Physical Therapy Research'),
(109097, 89452, 'en', 'name', 'Institute for Soil Sciences'),
(109098, 89452, 'hu', 'name', 'Talajtani IntƩzet'),
(109099, 89453, 'en', 'name', 'Geophysical Laboratory'),
(109100, 89454, 'en', 'name', 'Institute of Organic Chemistry'),
(109101, 89454, 'hu', 'name', 'MTA TermészettudomÔnyi Kutatóközpont Szerves Kémiai Intézet'),
(109102, 89455, 'es', 'name', 'Hospital Universitario Son Espases'),
(109103, 89456, 'en', 'name', 'Arts and Humanities Research Council'),
(109104, 89457, 'en', 'name', 'Institute of Cognitive Neuroscience and Psychology'),
(109105, 89457, 'hu', 'name', 'MTA TermészettudomÔnyi Kutatóközpont Kognitív IdegtudomÔnyi és Pszichológiai Intézet'),
(109106, 89458, 'fr', 'name', 'Centre de Recherche en GƩographie'),
(109107, 89459, 'pt', 'name', 'Escola Superior de Saúde Atlântica'),
(109108, 89460, 'en', 'name', 'Advanced Photon Source'),
(109109, 89461, 'en', 'name', 'NOAA National Marine Fisheries Service West Coast Region'),
(109110, 89462, 'en', 'name', 'NOAA Atlantic Oceanographic and Meteorological Laboratories'),
(109111, 89463, 'en', 'name', 'Tashkent Medical Academy Urgench Branch'),
(109112, 89463, 'uz', 'name', 'Toshkent tibbiyot akademiyasi Urganch filiali'),
(109113, 89463, 'ru', 'name', 'Ургенчский филиал Š¢Š°ŃˆŠŗŠµŠ½Ń‚ской меГицинской акаГемии'),
(109114, 89464, 'en', 'name', 'Carpathian Biosphere Reserve'),
(109115, 89464, 'uk', 'name', 'ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ біосферний заповіГник'),
(109116, 89465, 'en', 'name', 'Massachusetts Office of Coastal Zone Management'),
(109117, 89466, 'en', 'name', 'NOAA Ocean Prediction Center'),
(109118, 89467, 'en', 'name', 'NOAA Climate Program Office'),
(109119, 89468, 'fr', 'name', 'Direction des Sciences du Vivant'),
(109120, 89468, 'en', 'name', 'Life Sciences Division'),
(109121, 89469, 'en', 'name', 'Ho Chi Minh City University of Technology'),
(109122, 89469, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c BĆ”ch khoa, ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh'),
(109123, 89469, 'fr', 'name', 'UniversitƩ polytechnique d''hƓ-chi-minh-ville'),
(109124, 89470, 'en', 'name', 'NOAA National Marine Fisheries Service'),
(109125, 89471, 'en', 'name', 'NOAA Chemical Sciences Laboratory'),
(109126, 89472, 'en', 'name', 'NOAA Office of Response and Restoration'),
(109127, 89473, 'en', 'name', 'St Vincent Hospital'),
(109128, 89474, 'en', 'name', 'NOAA Storm Prediction Center'),
(109129, 89475, 'en', 'name', 'Olympic Coast Discovery Center'),
(109130, 89476, 'no_lang_code', 'name', 'JSC Viorica-Cosmetic (Moldova)'),
(109131, 89476, 'ro', 'name', 'S.A. ā€žVIORICA-COSMETICā€'),
(109132, 89476, 'ru', 'name', 'А.Šž. Ā«VIORICA-COSMETICĀ»'),
(109133, 89477, 'en', 'name', 'Saint Thomas Health'),
(109134, 89478, 'en', 'name', 'Swedish Institute for Children''s Books'),
(109135, 89479, 'en', 'name', 'Advanced Light Source'),
(109136, 89480, 'en', 'name', 'NOAA Office of Observations'),
(109137, 89481, 'en', 'name', 'Kutaisi University'),
(109138, 89481, 'ka', 'name', 'įƒ„įƒ£įƒ—įƒįƒ˜įƒ”įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(109139, 89482, 'en', 'name', 'National Measurement and Regulation Office'),
(109140, 89483, 'sv', 'name', 'VƤrnamo Sjukhus'),
(109141, 89484, 'en', 'name', 'V. B. Sochava Institute of Geography'),
(109142, 89484, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географии им. Š’.Š‘. Дочавы Š”Šž Š ŠŠ'),
(109143, 89485, 'en', 'name', 'The Japan Society of Applied Physics'),
(109144, 89485, 'ja', 'name', 'åæœē”Øē‰©ē†å­¦ä¼š'),
(109145, 89486, 'en', 'name', 'Environmental Science Services Administration'),
(109146, 89487, 'en', 'name', 'NOAA National Weather Service'),
(109147, 89487, 'es', 'name', 'Servicio Meteorológico Nacional'),
(109148, 89488, 'en', 'name', 'NOAA Office of Chief Operating Officer'),
(109149, 89489, 'en', 'name', 'NOAA Office of Coast Survey'),
(109150, 89490, 'en', 'name', 'Brenner Children''s Hospital'),
(109151, 89491, 'en', 'name', 'Alexian Brothers Health System'),
(109152, 89492, 'en', 'name', 'NOAA Pacific Marine Environmental Laboratory'),
(109153, 89493, 'en', 'name', 'NOAA National Weather Service Central Region'),
(109154, 89494, 'es', 'name', 'Red de Investigadores De la Transcomplejidad'),
(109155, 89495, 'en', 'name', 'Laboratory of Chemistry, Catalysis, Polymers and Process'),
(109156, 89496, 'en', 'name', 'NOAA Office of Aquaculture'),
(109157, 89497, 'fr', 'name', 'Institut de CancƩrologie de l''Ouest'),
(109158, 89497, 'en', 'name', 'Institute of Cancer Research'),
(109159, 89498, 'id', 'name', 'Institut Sains dan Teknologi Terpadu Surabaya'),
(109160, 89499, 'en', 'name', 'SINTEF Community'),
(109161, 89500, 'en', 'name', 'Maharshi Vishwamitra College, Buxar'),
(109162, 89501, 'en', 'name', 'St. John Medical Center'),
(109163, 89502, 'en', 'name', 'Providence Park Hospital'),
(109164, 89503, 'no_lang_code', 'name', 'TWT GmbH Science & Innovation (Germany)'),
(109165, 89504, 'en', 'name', 'NOAA Office of Climate, Water, and Weather Services'),
(109166, 89505, 'en', 'name', 'Linac Coherent Light Source'),
(109167, 89506, 'en', 'name', 'NOAA National Weather Service Alaska Region'),
(109168, 89507, 'en', 'name', 'Providence Hospital'),
(109169, 89508, 'en', 'name', 'Information Processing Society of Japan'),
(109170, 89508, 'ja', 'name', 'ęƒ…å ±å‡¦ē†å­¦ä¼š'),
(109171, 89509, 'en', 'name', 'NOAA Physical Sciences Laboratory'),
(109172, 89510, 'en', 'name', 'Marion County Public Health Department'),
(109173, 89511, 'en', 'name', 'NOAA Ocean Acidification Program'),
(109174, 89512, 'es', 'name', 'Voces de la educación'),
(109175, 89513, 'en', 'name', 'NOAA Air Resources Laboratory'),
(109176, 89514, 'en', 'name', 'NOAA National Marine Fisheries Service Southeast Regional Office'),
(109177, 89515, 'en', 'name', 'United States Coast and Geodetic Survey'),
(109178, 89516, 'en', 'name', 'NOAA National Weather Service Office of Science and Technology Integration'),
(109179, 89517, 'en', 'name', 'Ho Chi Minh City International University'),
(109180, 89517, 'vi', 'name', 'ĐẔi hį»c Quốc Tįŗæ ThĆ nh phố Hồ ChĆ­ Minh'),
(109181, 89518, 'it', 'name', 'Biblioteca nazionale svizzera'),
(109182, 89518, 'fr', 'name', 'BibliothĆØque nationale suisse'),
(109183, 89518, 'de', 'name', 'Schweizerische Nationalbibliothek'),
(109184, 89518, 'en', 'name', 'Swiss National Library'),
(109185, 89519, 'en', 'name', 'Eskenazi Health Foundation'),
(109186, 89520, 'en', 'name', 'NOAA Office for Coastal Management'),
(109187, 89521, 'sv', 'name', 'Entreprenƶrskapsforum'),
(109188, 89521, 'en', 'name', 'Swedish Entrepreneurship Forum'),
(109189, 89522, 'no_lang_code', 'name', 'Anthropic (United States)'),
(109190, 89523, 'en', 'name', 'Virginia Department of Transportation'),
(109191, 89524, 'en', 'name', 'Ascension St. Clare''s Hospital'),
(109192, 89525, 'mi', 'name', 'Hīkina Whakatutuki'),
(109193, 89525, 'en', 'name', 'Ministry of Business, Innovation and Employment'),
(109194, 89526, 'en', 'name', 'Ho Chi Minh City University of Science'),
(109195, 89526, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Khoa hį»c Tį»± nhiĆŖn, ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh'),
(109196, 89527, 'en', 'name', 'SINTEF Industry'),
(109197, 89528, 'en', 'name', 'Hospital Ibn Sina'),
(109198, 89528, 'fr', 'name', 'HƓpital Ibn Sina-Rabat'),
(109199, 89529, 'en', 'name', 'St. Vincent''s Medical Center'),
(109200, 89530, 'id', 'name', 'Badan Penelitian dan Pengembangan'),
(109201, 89530, 'en', 'name', 'Indonesian Agency for Agricultural Research and Development'),
(109202, 89531, 'en', 'name', 'Carondelet Health Network'),
(109203, 89532, 'en', 'name', 'NOAA National Marine Fisheries Service Alaska Fisheries Science Center'),
(109204, 89533, 'en', 'name', 'Stellwagen Bank National Marine Sanctuary'),
(109205, 89534, 'es', 'name', 'Hospital Infanta Margarita'),
(109206, 89535, 'en', 'name', 'Hanjiang Normal University'),
(109207, 89535, 'zh', 'name', 'ę±‰ę±ŸåøˆčŒƒå­¦é™¢'),
(109208, 89536, 'en', 'name', 'NOAA Environmental Modeling Center'),
(109209, 89537, 'en', 'name', 'NOAA National Geodetic Survey'),
(109210, 89538, 'en', 'name', 'NOAA National Marine Fisheries Office of Law Enforcement'),
(109211, 89539, 'en', 'name', 'NOAA Office of Protected Resources'),
(109212, 89540, 'no_lang_code', 'name', 'Sol-Tech'),
(109213, 89541, 'en', 'name', 'Molecular Foundry'),
(109214, 89542, 'en', 'name', 'Panamerican University'),
(109215, 89542, 'es', 'name', 'Universidad Panamericana'),
(109216, 89543, 'en', 'name', 'NOAA National Marine Fisheries Service Pacific Islands Fisheries Science Center'),
(109217, 89544, 'en', 'name', 'Indiana Health Information Exchange'),
(109218, 89545, 'en', 'name', 'ChaLearn'),
(109219, 89546, 'en', 'name', 'NOAA National Weather Service Eastern Region'),
(109220, 89547, 'es', 'name', 'CEDUC UCN'),
(109221, 89548, 'en', 'name', 'Ascension Via Christi'),
(109222, 89549, 'en', 'name', 'NOAA National Weather Service Southern Region'),
(109223, 89550, 'no_lang_code', 'name', 'Okavango Research Institute'),
(109224, 89551, 'en', 'name', 'SINTEF Digital'),
(109225, 89552, 'en', 'name', 'NOAA National Marine Fisheries Service Alaska Regional Office'),
(109226, 89553, 'fr', 'name', 'Centre Hospitalier Ibn Sina'),
(109227, 89554, 'en', 'name', 'Providence Hospital'),
(109228, 89555, 'en', 'name', 'NOAA National Weather Service Western Region'),
(109229, 89556, 'en', 'name', 'Brighton Hospital'),
(109230, 89557, 'en', 'name', 'Sacred Heart Health System'),
(109231, 89558, 'en', 'name', 'National Synchrotron Light Source II'),
(109232, 89559, 'en', 'name', 'European Institute for Systems Biology and Medicine'),
(109233, 89560, 'en', 'name', 'The Institute of Geotechnical Mechanics named by N. Polyakov NAS of Ukraine'),
(109234, 89560, 'uk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геотехнической механики им. Š.Š”. ŠŸŠ¾Š»ŃŠŗŠ¾Š²Š° ŠŠŠ Украины'),
(109235, 89561, 'en', 'name', 'NOAA International & Interagency Affairs Division'),
(109236, 89562, 'en', 'name', 'NOAA National Marine Fisheries Service Greater Atlantic Regional Fisheries Office'),
(109237, 89563, 'fr', 'name', 'Laboratoire de MathƩmatiques et Physique ThƩorique'),
(109238, 89564, 'en', 'name', 'Veer Kunwar Singh University'),
(109239, 89564, 'hi', 'name', 'ą¤µą„€ą¤° ą¤•ą„ą¤‚ą¤µą¤° सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(109240, 89565, 'en', 'name', 'NOAA Global Ocean Monitoring and Observing Program'),
(109241, 89566, 'en', 'name', 'Naval Oceanography Office'),
(109242, 89567, 'fr', 'name', 'Laboratoire de MathƩmatiques Analyse, ProbabilitƩs, ModƩlisation OrlƩans'),
(109243, 89568, 'no_lang_code', 'name', 'Wirsam Scientific (South Africa)'),
(109244, 89568, 'af', 'name', 'Wirsam Wetenskaplik'),
(109245, 89569, 'fr', 'name', 'Institut de Physique NuclĆ©aire d’Orsay'),
(109246, 89570, 'en', 'name', 'National Integrated Drought Information System'),
(109247, 89571, 'en', 'name', 'Eskenazi Health'),
(109248, 89572, 'en', 'name', 'NOAA National Water Center'),
(109249, 89573, 'en', 'name', 'Virginia Tech Transportation Institute'),
(109250, 89574, 'en', 'name', 'Department of Primary Industries and Regions South Australia'),
(109251, 89575, 'en', 'name', 'European University'),
(109252, 89575, 'ka', 'name', 'įƒ”įƒ•įƒ įƒįƒžįƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(109253, 89576, 'en', 'name', 'Association of Geographic Information Laboratories Europe'),
(109254, 89577, 'en', 'name', 'Vermont Center for the Book'),
(109255, 89578, 'en', 'name', 'NOAA Uncrewed Systems Research Transition Office'),
(109256, 89579, 'en', 'name', 'NOAA National Weather Service Pacific Region'),
(109257, 89580, 'en', 'name', 'Tashkent Medical Academy'),
(109258, 89580, 'uz', 'name', 'Toshkent Tibbiyot Akademiyasi'),
(109259, 89581, 'en', 'name', 'NOAA National Ice Center'),
(109260, 89582, 'en', 'name', 'NOAA Office of National Marine Sanctuaries'),
(109261, 89583, 'en', 'name', 'Dell Children''s Medical Center of Central Texas'),
(109262, 89584, 'en', 'name', 'NOAA Space Weather Prediction Center'),
(109263, 89585, 'en', 'name', 'Wellcome EPSRC Centre for Medical Engineering'),
(109264, 89586, 'en', 'name', 'The Achieve Foundation'),
(109265, 89587, 'en', 'name', 'Russian State Academy of Intellectual Property'),
(109266, 89587, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŠ½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Š¾Š¹ собственности'),
(109267, 89588, 'en', 'name', 'NOAA National Marine Fisheries Service Office of International Affairs and Seafood Inspection'),
(109268, 89589, 'en', 'name', 'NOAA Center for Satellite Applications and Research'),
(109269, 89590, 'en', 'name', 'St. John Medical Center'),
(109270, 89591, 'en', 'name', 'Wake Forest Baptist Comprehensive Cancer Center'),
(109271, 89592, 'en', 'name', 'WAPCOS Limited'),
(109272, 89592, 'hi', 'name', 'ą¤µą¤¾ą¤Ŗą„ą¤•ą„‹ą¤ø ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(109273, 89593, 'en', 'name', 'NOAA National Data Buoy Center'),
(109274, 89594, 'en', 'name', 'Ascension Providence Hospital'),
(109275, 89595, 'no_lang_code', 'name', 'CESAME-EXADEBIT (France)'),
(109276, 89596, 'en', 'name', 'NOAA Office of Habitat Conservation'),
(109277, 89597, 'en', 'name', 'Seton Healthcare Family'),
(109278, 89598, 'en', 'name', 'Ho Chi Minh City University of Social Sciences and Humanities'),
(109279, 89598, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Khoa hį»c XĆ£ hį»™i vĆ  NhĆ¢n văn, ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh'),
(109280, 89599, 'de', 'name', 'Museum Wiesbaden'),
(109281, 89600, 'nl', 'name', 'Nederlands Instituut voor Ecologie'),
(109282, 89600, 'en', 'name', 'Netherlands Institute of Ecology'),
(109283, 89601, 'en', 'name', 'Indiana State Department of Health'),
(109284, 89602, 'en', 'name', 'NOAA Office of Water Prediction'),
(109285, 89603, 'en', 'name', 'NOAA Weather Program Office'),
(109286, 89604, 'en', 'name', 'NOAA Office of Sustainable Fisheries'),
(109287, 89605, 'en', 'name', 'Health & Hospital Corporation of Marion County'),
(109288, 89606, 'en', 'name', 'Engineering and Physical Sciences Research Council'),
(109289, 89607, 'id', 'name', 'Badan Standardisasi Instrumen Pertanian'),
(109290, 89607, 'en', 'name', 'Indonesian Agency for Agricultural Instruments Standardization'),
(109291, 89608, 'en', 'name', 'SINTEF Manufacturing'),
(109292, 89609, 'en', 'name', 'Office of Scientific and Technical Information'),
(109293, 89610, 'en', 'name', 'UT Health Austin'),
(109294, 89611, 'en', 'name', 'South Australian Research and Development Institute'),
(109295, 89612, 'en', 'name', 'SINTEF Energy Research'),
(109296, 89613, 'en', 'name', 'NOAA National Severe Storms Laboratory'),
(109297, 89614, 'en', 'name', 'Seton Medical Center Austin'),
(109298, 89615, 'en', 'name', 'NOAA Global Systems Laboratory'),
(109299, 89616, 'no', 'name', 'SINTEF'),
(109300, 89617, 'en', 'name', 'SINTEF Ocean'),
(109301, 89618, 'en', 'name', 'University Medical Center Brackenridge'),
(109302, 89619, 'en', 'name', 'Atrium Health Wake Forest Baptist'),
(109303, 89620, 'en', 'name', 'NOAA Weather Prediction Center'),
(109304, 89621, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ – Luįŗ­t, ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh'),
(109305, 89621, 'en', 'name', 'University of Economics and Law'),
(109306, 89622, 'en', 'name', 'Reichman University'),
(109307, 89622, 'he', 'name', '××•× ×™×‘×Ø×”×™×˜×Ŗ ×Ø×™×™×›×ž×Ÿ'),
(109308, 89623, 'en', 'name', 'St. John Macomb Oakland Hospital'),
(109309, 89624, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ ThĆ“ng tin'),
(109310, 89624, 'en', 'name', 'University of Information Technology'),
(109311, 89625, 'en', 'name', 'Sidney & Lois Eskenazi Hospital'),
(109312, 89626, 'en', 'name', 'NOAA Climate Prediction Center'),
(109313, 89627, 'en', 'name', 'NOAA Technology Partnerships Office'),
(109314, 89628, 'en', 'name', 'NOAA National Marine Fisheries Service Southeast Fisheries Science Center'),
(109315, 89629, 'en', 'name', 'St. John Hospital & Medical Center'),
(109316, 89630, 'en', 'name', 'Catholic University of the North'),
(109317, 89630, 'es', 'name', 'Universidad Católica del Norte'),
(109318, 89631, 'fr', 'name', 'Institut International d''Agriculture Tropicale'),
(109319, 89631, 'en', 'name', 'International Center for Tropical Agriculture'),
(109320, 89632, 'en', 'name', 'NOAA Office of Research, Transition, & Application'),
(109321, 89633, 'en', 'name', 'NOAA Aviation Weather Center'),
(109322, 89634, 'en', 'name', 'Agricultural Economics Nonprofit Kft.'),
(109323, 89634, 'hu', 'name', 'AgrƔrkƶzgazdasƔgi IntƩzet'),
(109324, 89635, 'en', 'name', 'M.S. Poliakov Institute of Geotechnical Mechanics of the National Academy of Sciences of Ukraine'),
(109325, 89635, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геотехнічної механіки ім. М.Š”. ŠŸŠ¾Š»ŃŠŗŠ¾Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(109326, 89636, 'en', 'name', 'NOAA National Marine Fisheries Service Southwest Fisheries Science Center'),
(109327, 89637, 'en', 'name', 'NOAA National Marine Fisheries Service Pacific Islands Regional Office'),
(109328, 89638, 'fr', 'name', 'Laboratoire AssociƩ de DƩbitmƩtrie Gazeuse'),
(109329, 89639, 'no_lang_code', 'name', 'BlueGreen Labs (bv) (Belgium)'),
(109330, 89640, 'es', 'name', 'Universidad Nacional Experimental Sur del Lago "JesĆŗs MarĆ­a Semprum"'),
(109331, 89641, 'en', 'name', 'North Gate University'),
(109332, 89642, 'id', 'name', 'Institut Teknologi Tangerang Selatan'),
(109333, 89643, 'fr', 'name', 'Laboratoire de MƩcanique des Sols, Structures et MatƩriaux'),
(109334, 89644, 'en', 'name', 'University of Applied Management'),
(109335, 89645, 'es', 'name', 'Instituto de Fisica de Liquidos y Sistemas Biologicos'),
(109336, 89646, 'en', 'name', 'Southern Alamance Middle School'),
(109337, 89647, 'es', 'name', 'Centro Universitario Integral de ZacatlƔn'),
(109338, 89648, 'en', 'name', 'Lukuru Foundation'),
(109339, 89649, 'en', 'name', 'College Track'),
(109340, 89650, 'es', 'name', 'Instituto de BiotecnologĆ­a y BiologĆ­a Molecular'),
(109341, 89651, 'fr', 'name', 'Laboratoire de Chimie MolƩculaire'),
(109342, 89652, 'en', 'name', 'York District Hospital'),
(109343, 89653, 'en', 'name', 'Tajikistan Humanitarian International University'),
(109344, 89654, 'en', 'name', 'Directorate-General of Antiquities and Museums'),
(109345, 89654, 'ar', 'name', 'Ų§Ł„Ł…ŲÆŁŠŲ±ŁŠŲ© العامة للآثار ŁˆŲ§Ł„Ł…ŲŖŲ§Ų­Łā€Ž'),
(109346, 89655, 'no_lang_code', 'name', 'Jeans for Genes (United Kingdom)'),
(109347, 89656, 'en', 'name', 'Salem Methodist Preschool'),
(109348, 89657, 'pt', 'name', 'Universidade Lusófona da Guiné'),
(109349, 89658, 'no_lang_code', 'name', 'Geohabitat (Spain)'),
(109350, 89659, 'en', 'name', 'National University of Arts and Culture Yangon'),
(109351, 89659, 'my', 'name', 'į€šį€‰į€ŗį€€į€»į€±į€øį€™į€¾į€Æ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ ရန်ကုန်'),
(109352, 89660, 'fr', 'name', 'UniversitƩ d''ƩtƩ de Boulogne-sur-Mer'),
(109353, 89661, 'en', 'name', 'Batumi Independent University'),
(109354, 89662, 'no_lang_code', 'name', 'Vattenfall (Denmark)'),
(109355, 89663, 'en', 'name', 'St Grigol Peradze Tbilisi Teaching University'),
(109356, 89664, 'no_lang_code', 'name', 'Cognitive Radio Technologies'),
(109357, 89665, 'en', 'name', 'University of Islamic Studies'),
(109358, 89666, 'no_lang_code', 'name', 'Lallemand (France)'),
(109359, 89667, 'en', 'name', 'Hamilton Health Sciences'),
(109360, 89668, 'no_lang_code', 'name', 'Sapporo Hokuyu Hospital'),
(109361, 89668, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ—ę„”ä¼š'),
(109362, 89669, 'fr', 'name', 'Imagerie par RƩsonance MagnƩtique MƩdicale et Multi-ModalitƩs'),
(109363, 89670, 'fr', 'name', 'Laboratoire IngƩnierie, ProcƩdƩs, Aliments'),
(109364, 89671, 'en', 'name', 'Indian Medical Association'),
(109365, 89672, 'en', 'name', 'Republican Clinical Oncology Dispensary of the Ministry of Health of the Republic of Tatarstan named after Professor M.Z. Sigal'),
(109366, 89672, 'ru', 'name', 'ГАУЗ "Республиканский клинический онкологический Гиспансер ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Республики Татарстан имени профессора М.Š—. Дигала"'),
(109367, 89673, 'es', 'name', 'Centro de Investigación Educativa'),
(109368, 89674, 'no_lang_code', 'name', 'NeuRho Farmaceutica (United States)'),
(109369, 89675, 'en', 'name', 'Ho Chi Minh City University of Culture'),
(109370, 89675, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Văn hóa ThĆ nh phố Hồ ChĆ­ Minh'),
(109371, 89676, 'no_lang_code', 'name', 'Tonami General Hospital'),
(109372, 89676, 'ja', 'name', 'åø‚ē«‹ē ŗę³¢ē·åˆē—…é™¢'),
(109373, 89677, 'en', 'name', 'Center for MathematicaL studies and their Applications'),
(109374, 89677, 'fr', 'name', 'Centre de MathƩmatiques et de Leurs Applications'),
(109375, 89678, 'es', 'name', 'Centro Extremeño de iNvestigación,Innovación Tecnológica y Supercomputación'),
(109376, 89678, 'en', 'name', 'Extremadura Supercomputing, Technological Innovation and Research Center'),
(109377, 89679, 'no_lang_code', 'name', 'Enject (United States)'),
(109378, 89680, 'no_lang_code', 'name', 'Vidropol (Portugal)'),
(109379, 89681, 'de', 'name', 'Klinikum Coburg'),
(109380, 89682, 'es', 'name', 'Centro de Investigación y Desarrollo en Criotecnología de Alimentos'),
(109381, 89683, 'en', 'name', 'Ocean Data Factory Sweden'),
(109382, 89684, 'fr', 'name', 'Centre de Recherches sur le Sport et le Mouvement'),
(109383, 89685, 'en', 'name', 'Airline Training Program Flight School'),
(109384, 89686, 'en', 'name', 'Yerevan State Linguistic University'),
(109385, 89686, 'hy', 'name', 'ŌµÖ€Ö‡Õ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ¬Õ„Õ¦Õ¾Õ”Õ°Õ”Õ½Õ”Ö€Õ”ÕÆÕ”Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(109386, 89687, 'en', 'name', 'National Center on Complex Processing of Mineral Raw Materials of the Republic of Kazakhstan'),
(109387, 89687, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр по комплексной переработке Š¼ŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ сырья Республики ŠšŠ°Š·Š°Ń…стан'),
(109388, 89687, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ минералГық ŃˆŠøŠŗŃ–Š·Š°Ń‚Ń‚Ń‹ ŠŗŠµŃˆŠµŠ½Š“Ń– қайта өңГеу жөнінГегі ұлттық орталығы'),
(109389, 89688, 'en', 'name', 'Cerebral Palsy Research Network'),
(109390, 89689, 'en', 'name', 'Research Institute of Vaccines and Sera. Mechnikov of the Russian Academy of Medical Sciences'),
(109391, 89689, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вакцин Šø сывороток им. И.И. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(109392, 89690, 'en', 'name', 'Leibniz Institute of Freshwater Ecology and Inland Fisheries'),
(109393, 89690, 'de', 'name', 'Leibniz-Institut für Gewässerökologie und Binnenfischerei'),
(109394, 89691, 'en', 'name', 'InLeaVe'),
(109395, 89692, 'fr', 'name', 'Laboratoire Psychologie de la Perception'),
(109396, 89693, 'en', 'name', 'National Defence Medical Centre'),
(109397, 89694, 'en', 'name', 'Kremenchuk University of Economics Information Technology and Management'),
(109398, 89695, 'en', 'name', 'University of Florida Cancer Hospital'),
(109399, 89696, 'en', 'name', 'Tomori PƔl College'),
(109400, 89697, 'no_lang_code', 'name', 'Trans Tech Publications (Switzerland)'),
(109401, 89698, 'no_lang_code', 'name', 'Biostar (United States)'),
(109402, 89699, 'fr', 'name', 'UniversitƩ de Sarh'),
(109403, 89700, 'en', 'name', 'Caswell County Schools'),
(109404, 89701, 'no_lang_code', 'name', 'Baba Guru Nanak University'),
(109405, 89701, 'pa', 'name', 'ਬਾਬਾ ਗੁਰੂ ਨਾਨਕ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(109406, 89702, 'en', 'name', 'Louis and Harold Price Foundation'),
(109407, 89703, 'en', 'name', 'Technological University Monywa'),
(109408, 89703, 'my', 'name', 'မုံရွာ į€”į€Šį€ŗį€øį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(109409, 89704, 'en', 'name', 'Experimental Security University'),
(109410, 89705, 'fr', 'name', 'Laboratoire de l''AccƩlƩrateur LinƩaire'),
(109411, 89706, 'en', 'name', 'Swedish Institute for Health Services Development'),
(109412, 89707, 'en', 'name', 'Advanced Digital Sciences Center'),
(109413, 89708, 'en', 'name', 'Tajikistan–Russian Modern University'),
(109414, 89709, 'fr', 'name', 'UniversitƩ Hassan II Mohammedia'),
(109415, 89710, 'en', 'name', 'Sutton Trust'),
(109416, 89711, 'no_lang_code', 'name', 'WSP Civils (United Kingdom)'),
(109417, 89712, 'en', 'name', 'Technological University Pathein'),
(109418, 89713, 'en', 'name', 'Pamir University'),
(109419, 89714, 'en', 'name', 'Saint Petersburg University of Management and Economics'),
(109420, 89715, 'en', 'name', 'Peer Community In'),
(109421, 89716, 'es', 'name', 'Universidad de Cartago'),
(109422, 89717, 'en', 'name', 'Pfeiffer University at Charlotte'),
(109423, 89718, 'en', 'name', 'Stratford University'),
(109424, 89719, 'no_lang_code', 'name', 'Pax Press (Rwanda)'),
(109425, 89720, 'en', 'name', 'Computer Science Laboratory for Mechanics and Engineering Sciences'),
(109426, 89720, 'fr', 'name', 'Laboratoire d''Informatique pour la MƩcanique et les Sciences de l''IngƩnieur'),
(109427, 89721, 'en', 'name', 'EC-Earth Consortium'),
(109428, 89722, 'es', 'name', 'Centro Universitario Haller'),
(109429, 89723, 'en', 'name', 'University Physicians'),
(109430, 89724, 'no_lang_code', 'name', 'CodeX Discovery (Ireland)'),
(109431, 89725, 'en', 'name', 'Centre for Conservation and Research'),
(109432, 89726, 'en', 'name', 'Menelik II Medical and Health Science College'),
(109433, 89726, 'am', 'name', 'į‹³įŒįˆ›į‹Š įˆįŠ’įˆŠįŠ­ įˆ…įŠ­įˆįŠ“įŠ“ įŒ¤įŠ“ įˆ³į‹­įŠ•įˆµ įŠ®įˆŒįŒ…'),
(109434, 89727, 'en', 'name', 'Progressive Foundation'),
(109435, 89728, 'no_lang_code', 'name', 'Symtavision (Germany)'),
(109436, 89729, 'no_lang_code', 'name', 'Precision Castparts (United Kingdom)'),
(109437, 89730, 'no_lang_code', 'name', 'Empresa de Manutenção de Equipamento FerroviÔrio (Portugal)'),
(109438, 89731, 'en', 'name', 'The Institute for Education Research'),
(109439, 89732, 'en', 'name', 'Bilawal Medical College'),
(109440, 89733, 'en', 'name', 'Unit of Neuroscience Information and Complexity'),
(109441, 89733, 'fr', 'name', 'UnitƩ de Neurosciences Information et ComplexitƩ'),
(109442, 89734, 'no_lang_code', 'name', 'Rumbek University'),
(109443, 89735, 'sq', 'name', 'Shkollat ushtarake tƫ Shqipƫrisƫ'),
(109444, 89735, 'en', 'name', 'Skanderbeg Military University'),
(109445, 89736, 'en', 'name', 'Community Health Alliance'),
(109446, 89737, 'no_lang_code', 'name', 'Sicambeni Rural University'),
(109447, 89738, 'no_lang_code', 'name', 'Energy Power Resources (United Kingdom)'),
(109448, 89739, 'en', 'name', 'University of Missouri Hospital'),
(109449, 89740, 'no_lang_code', 'name', 'Aeron LifeCycles (United States)'),
(109450, 89741, 'fr', 'name', 'L''HƓpital Universitaire Justinien'),
(109451, 89742, 'fr', 'name', 'Institut Universitaire Quisqueya-AmƩrique'),
(109452, 89743, 'no_lang_code', 'name', 'Vodafone (Italy)'),
(109453, 89744, 'en', 'name', 'Universidad American College'),
(109454, 89745, 'no_lang_code', 'name', 'Intelligent Prosthetic Systems (United States)'),
(109455, 89746, 'en', 'name', 'Oldfield Surgery'),
(109456, 89747, 'en', 'name', 'Murayama Medical Center'),
(109457, 89747, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ ę‘å±±åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(109458, 89748, 'en', 'name', 'School of Clinical Research'),
(109459, 89749, 'en', 'name', 'Shanghai University of Traditional Chinese Medicine'),
(109460, 89749, 'zh', 'name', 'äøŠęµ·äø­åŒ»čÆå¤§å­¦'),
(109461, 89750, 'en', 'name', 'Pyongyang University of Music and Dance'),
(109462, 89750, 'ko', 'name', 'ź¹€ģ›ź· ķ‰ģ–‘ģŒģ•…ėŒ€ķ•™'),
(109463, 89751, 'no_lang_code', 'name', 'Mondragon Corporation (New Zealand)'),
(109464, 89752, 'no_lang_code', 'name', 'Adidas (Germany)'),
(109465, 89753, 'en', 'name', 'Paget Foundation'),
(109466, 89754, 'no_lang_code', 'name', 'SofTech (Italy)'),
(109467, 89755, 'no_lang_code', 'name', 'Universitet Kajnar'),
(109468, 89756, 'pt', 'name', 'Fundação Centro de Estudos do Universo'),
(109469, 89757, 'en', 'name', 'South Carolina Ovarian Cancer Foundation'),
(109470, 89758, 'en', 'name', 'Saint-Petersburg Humanitarian University of Trade Unions'),
(109471, 89759, 'en', 'name', 'National Scientific Centre ā€œInstitute of Agrarian Economicsā€'),
(109472, 89759, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрної економіки»'),
(109473, 89760, 'en', 'name', 'Bavarian State Archives'),
(109474, 89760, 'de', 'name', 'Staatlichen Archive Bayerns'),
(109475, 89761, 'no_lang_code', 'name', 'Miyama Composites Materials (Greece)'),
(109476, 89762, 'en', 'name', 'Delphi University'),
(109477, 89763, 'fr', 'name', 'UniversitƩ PrivƩe d''Enseignement SupƩrieur El Amel'),
(109478, 89764, 'en', 'name', 'Shanghai Universities E-Institute for Chemical Biology'),
(109479, 89765, 'en', 'name', 'Mid-Atlantic Association of Museums'),
(109480, 89766, 'es', 'name', 'Agencia Estatal de MeteorologĆ­a'),
(109481, 89766, 'ca', 'name', 'AgĆØncia Estatal de Meteorologia'),
(109482, 89766, 'eu', 'name', 'Meteorologiako Estatu Agentzia'),
(109483, 89766, 'en', 'name', 'State Meteorological Agency'),
(109484, 89767, 'en', 'name', 'Franciscan University Rugby'),
(109485, 89768, 'fr', 'name', 'Mondes Iranien et Indien'),
(109486, 89769, 'no_lang_code', 'name', 'Newron Pharmaceuticals (Sweden)'),
(109487, 89770, 'en', 'name', 'Chinese National Academy of Arts'),
(109488, 89770, 'zh', 'name', 'äø­å›½č‰ŗęœÆē ”ē©¶é™¢'),
(109489, 89771, 'en', 'name', 'Ulyanovsk State Pedagogical University'),
(109490, 89772, 'en', 'name', 'Orel Regional Academy of Public Administration');
INSERT INTO `ror_settings` VALUES
(109491, 89773, 'no_lang_code', 'name', 'Pedrini (Italy)'),
(109492, 89774, 'en', 'name', 'Peachtree Orthopaedic Clinic'),
(109493, 89775, 'no_lang_code', 'name', 'ImpactMedia (Spain)'),
(109494, 89776, 'es', 'name', 'Universidad de Ecatepec'),
(109495, 89777, 'id', 'name', 'Universitas Islam Ogan Komering Ilir'),
(109496, 89778, 'no_lang_code', 'name', 'Gedeon Programmes (France)'),
(109497, 89779, 'no_lang_code', 'name', 'BioReka (United States)'),
(109498, 89780, 'en', 'name', 'Institute for Biomedicine'),
(109499, 89780, 'it', 'name', 'Istituto di Biomedicina'),
(109500, 89781, 'en', 'name', 'Martin Health System'),
(109501, 89782, 'en', 'name', 'Everett Company Stage School'),
(109502, 89783, 'id', 'name', 'Universitas Veteran Republik Indonesia Makassar'),
(109503, 89784, 'en', 'name', 'Institute of Mountain Emergency Medicine'),
(109504, 89785, 'en', 'name', 'Biotherapy of Genetic Diseases, Inflammatory Disorders and Cancers'),
(109505, 89785, 'fr', 'name', 'BiothƩrapies des Maladies GƩnƩtiques Inflammatoires et Cancers'),
(109506, 89786, 'es', 'name', 'Instituto de Investigaciones Fisicoquímicas Teóricas y Aplicadas'),
(109507, 89787, 'en', 'name', 'Afghan Defense University'),
(109508, 89788, 'en', 'name', 'Technological University Bhamo'),
(109509, 89789, 'no_lang_code', 'name', 'Waves in Solids (United States)'),
(109510, 89790, 'en', 'name', 'Miami University Dolibois European Center'),
(109511, 89791, 'es', 'name', 'Universidad de Postgrado para la Investigación Estratégica en Bolivia'),
(109512, 89792, 'en', 'name', 'Shebin Teaching Hospital'),
(109513, 89793, 'es', 'name', 'Instituto Catequístico Universidad Católica'),
(109514, 89794, 'no_lang_code', 'name', 'Monal Group (France)'),
(109515, 89795, 'en', 'name', 'Church of Saint Abuseridze State University'),
(109516, 89796, 'no_lang_code', 'name', 'Semantico (United Kingdom)'),
(109517, 89797, 'en', 'name', 'International Charter School'),
(109518, 89798, 'en', 'name', 'Theological University of Northern Italy'),
(109519, 89799, 'no_lang_code', 'name', 'Enterprise Holdings'),
(109520, 89800, 'en', 'name', 'Sudanese Universities Information Network'),
(109521, 89801, 'en', 'name', 'One World University'),
(109522, 89802, 'en', 'name', 'Universal Healthwatch'),
(109523, 89803, 'en', 'name', 'Spiria Medical'),
(109524, 89804, 'en', 'name', 'Technological University Loikaw'),
(109525, 89805, 'fr', 'name', 'UniversitƩ de Notre-Dame du Kasai'),
(109526, 89806, 'en', 'name', 'Peterborough and Stamford Hospitals NHS Foundation Trust'),
(109527, 89807, 'en', 'name', 'Mulago School of Nursing and Midwifery'),
(109528, 89808, 'no_lang_code', 'name', 'United Business Media (Canada)'),
(109529, 89809, 'id', 'name', 'Universitas Kejuangan 45 Jakarta'),
(109530, 89810, 'en', 'name', 'Canadian University Society for Intercollegiate Debate'),
(109531, 89811, 'en', 'name', 'University System of Maryland at Hagerstown'),
(109532, 89812, 'es', 'name', 'Universidad Hispanoamericana'),
(109533, 89813, 'no_lang_code', 'name', 'ATAF (Italy)'),
(109534, 89814, 'en', 'name', 'Ild Care Foundation'),
(109535, 89815, 'en', 'name', 'Brackley Community Hospital'),
(109536, 89816, 'no_lang_code', 'name', 'EurActiv'),
(109537, 89817, 'it', 'name', 'Centro Universale del Bel Canto'),
(109538, 89818, 'no_lang_code', 'name', 'Interventi Geo Ambientali (Italy)'),
(109539, 89819, 'en', 'name', 'Ministry of the Brussels-Capital Region'),
(109540, 89820, 'en', 'name', 'Cariam Health'),
(109541, 89821, 'fr', 'name', 'Laboratoire de Biologie Cellulaire et MolƩculaire du ContrƓle de la ProlifƩration'),
(109542, 89822, 'en', 'name', 'University of Pedagogical Sciences'),
(109543, 89823, 'no_lang_code', 'name', 'Mott MacDonald (United Kingdom)'),
(109544, 89824, 'no_lang_code', 'name', 'AC Diagnostics (United States)'),
(109545, 89825, 'es', 'name', 'Universidad Cristiana del Sur'),
(109546, 89826, 'en', 'name', 'Teaching University European Academy'),
(109547, 89827, 'en', 'name', 'Queensland Self-Management Alliance'),
(109548, 89828, 'no_lang_code', 'name', 'Rominster (Cyprus)'),
(109549, 89829, 'id', 'name', 'Universitas Kristen Palangkaraya'),
(109550, 89830, 'no_lang_code', 'name', 'MiniSun (United States)'),
(109551, 89831, 'no_lang_code', 'name', 'CATX (United States)'),
(109552, 89832, 'no_lang_code', 'name', 'European Framework Program Consulting (United Kingdom)'),
(109553, 89833, 'no_lang_code', 'name', 'Areta International (Italy)'),
(109554, 89834, 'es', 'name', 'Universidad Pedagógica de Pinar del Río Rafael María de Mendive'),
(109555, 89835, 'en', 'name', 'Higher School of Privatization and Entrepreneurship'),
(109556, 89836, 'es', 'name', 'Centro de Investigaciones en Tecnologia de Pinturas'),
(109557, 89837, 'en', 'name', 'Beijing Climate Center'),
(109558, 89837, 'zh', 'name', 'å›½å®¶ę°”å€™äø­åæƒ'),
(109559, 89838, 'no_lang_code', 'name', 'Nuance Communications (United States)'),
(109560, 89839, 'es', 'name', 'Universidad Americana'),
(109561, 89840, 'en', 'name', 'Beaumont Hospital'),
(109562, 89841, 'es', 'name', 'Centro de Estudios Tecnológicos y Universitarios del Golfo'),
(109563, 89842, 'es', 'name', 'Instituto de GenƩtica Veterinaria'),
(109564, 89843, 'cs', 'name', 'Sdružení Pro Rozvoj Moravskoslezského Kraje'),
(109565, 89844, 'en', 'name', 'Kharkiv National Kotlyarevsky University of Arts'),
(109566, 89845, 'en', 'name', 'Hung Vuong University of Ho Chi Minh City'),
(109567, 89846, 'no_lang_code', 'name', 'Apintech (Greece)'),
(109568, 89847, 'no_lang_code', 'name', 'Croatian Biospeleological Society'),
(109569, 89847, 'hr', 'name', 'Hrvatsko biospeleoloŔko druŔtvo'),
(109570, 89848, 'no_lang_code', 'name', 'Voestalpine (Sweden)'),
(109571, 89849, 'en', 'name', 'Disability Practice Institute'),
(109572, 89850, 'ro', 'name', 'Universitatea Mihae Eminescu Timisoara'),
(109573, 89851, 'no_lang_code', 'name', 'Clear Hat Consulting (United States)'),
(109574, 89852, 'es', 'name', 'Universidad IndĆ­gena de Venezuela'),
(109575, 89853, 'no_lang_code', 'name', 'Solaris Bus & Coach (Poland)'),
(109576, 89854, 'en', 'name', 'European Bureau of Library, Information and Documentation Associations'),
(109577, 89855, 'en', 'name', 'Wachemo University'),
(109578, 89856, 'en', 'name', 'Bjerknes Centre for Climate Research'),
(109579, 89856, 'no', 'name', 'Bjerknessenteret for klimaforskning'),
(109580, 89857, 'en', 'name', 'North Lochs Historical Society'),
(109581, 89858, 'no_lang_code', 'name', 'Georex (France)'),
(109582, 89859, 'en', 'name', 'Technological University Maubin'),
(109583, 89860, 'no_lang_code', 'name', 'Axion Therapeutics (United States)'),
(109584, 89861, 'no_lang_code', 'name', 'Unidost (Austria)'),
(109585, 89862, 'no_lang_code', 'name', 'Sovremennyi Gomunitarnyi University'),
(109586, 89863, 'no_lang_code', 'name', 'Isos Housing (United Kingdom)'),
(109587, 89864, 'no_lang_code', 'name', 'Nasertic (Spain)'),
(109588, 89865, 'es', 'name', 'Universidad Tecnológica de Sinaloa'),
(109589, 89866, 'fr', 'name', 'Centre de SpectromƩtrie NuclƩaire et de SpectromƩtrie de Masse'),
(109590, 89867, 'en', 'name', 'Koryo Songgyungwan University'),
(109591, 89867, 'ko', 'name', '고려성균꓀'),
(109592, 89868, 'en', 'name', 'Moscow Open Social University'),
(109593, 89869, 'en', 'name', 'Indian Institute of Management Rohtak'),
(109594, 89870, 'en', 'name', 'Villa Maria School'),
(109595, 89871, 'en', 'name', 'National Institute of Telecommunications'),
(109596, 89872, 'es', 'name', 'Centro Universitario del Oriente de Hidalgo'),
(109597, 89873, 'en', 'name', 'Technological University Myeik'),
(109598, 89874, 'no_lang_code', 'name', 'Edge Foundation'),
(109599, 89875, 'no_lang_code', 'name', 'Research Institute of Bast Fibres (Czechia)'),
(109600, 89876, 'es', 'name', 'Centro Universitario de Bienestar Rural'),
(109601, 89877, 'en', 'name', 'Crest Middle School'),
(109602, 89878, 'en', 'name', 'Cixian People''s Hospital'),
(109603, 89879, 'no_lang_code', 'name', 'Boston De Novo Design (United States)'),
(109604, 89880, 'no_lang_code', 'name', 'Hanmin University'),
(109605, 89880, 'ko', 'name', 'ķ•œėÆ¼ķ•™źµ'),
(109606, 89881, 'fr', 'name', 'Institut Universitaire Polytechnique de Mongo'),
(109607, 89882, 'en', 'name', 'Leibniz Institute of Ecological Urban and Regional Development'),
(109608, 89882, 'de', 'name', 'Leibniz-Institut für ökologische Raumentwicklung'),
(109609, 89883, 'fr', 'name', 'REseau NAtional de Rpe interDisciplinaire'),
(109610, 89884, 'en', 'name', 'Islamic Azad University of Majlesi'),
(109611, 89884, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد علامه Ł…Ų¬Ł„Ų³ŪŒ'),
(109612, 89885, 'es', 'name', 'Corporación Universitaria de Ciencias Empresariales, Educación y Salud como proyecto Institucional'),
(109613, 89886, 'es', 'name', 'Universidad Ateneo de Monterrey'),
(109614, 89887, 'no_lang_code', 'name', 'Al Invest (Czechia)'),
(109615, 89888, 'en', 'name', 'Babel University Professional School of Translation'),
(109616, 89889, 'en', 'name', 'Technological University, Taunggyi'),
(109617, 89890, 'es', 'name', 'Universidad Quetzalcóatl'),
(109618, 89891, 'en', 'name', 'International Oil and Gas University'),
(109619, 89891, 'ru', 'name', 'Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефти Šø газа'),
(109620, 89892, 'es', 'name', 'Universidad Privada Del Chaco'),
(109621, 89893, 'en', 'name', 'Academe of Grassland And Animal Science'),
(109622, 89893, 'zh', 'name', 'äŗ‘å—ēœč‰åœ°åŠØē‰©ē§‘å­¦ē ”ē©¶é™¢'),
(109623, 89894, 'no_lang_code', 'name', 'Clothing Textile & Fibre Technology Development (Greece)'),
(109624, 89895, 'fr', 'name', 'Laboratoire de Neurosciences IntƩgratives et Adaptatives'),
(109625, 89896, 'nl', 'name', 'Stoas Hogeschool'),
(109626, 89896, 'en', 'name', 'Stoas University of Applied Sciences'),
(109627, 89897, 'en', 'name', 'Hara University'),
(109628, 89898, 'no_lang_code', 'name', 'Hanita Coatings (Israel)'),
(109629, 89899, 'es', 'name', 'Universidad Peruana Simón Bolívar'),
(109630, 89900, 'es', 'name', 'Instituto Nacional de CancerologĆ­a'),
(109631, 89901, 'no_lang_code', 'name', 'The Coatinc Company (Netherlands)'),
(109632, 89902, 'fr', 'name', 'UniversitƩ Cardinal Malula'),
(109633, 89903, 'no_lang_code', 'name', 'Knowledge Networking Solutions (Greece)'),
(109634, 89904, 'en', 'name', 'International Center for Quantum-field Measurement Systems for Studies of the Universe and Particles'),
(109635, 89904, 'ja', 'name', 'é‡å­å “čØˆęø¬ć‚·ć‚¹ćƒ†ćƒ å›½éš›ę‹ ē‚¹'),
(109636, 89905, 'no_lang_code', 'name', 'J2 Light (United States)'),
(109637, 89906, 'no_lang_code', 'name', 'PharmAgra Labs (United States)'),
(109638, 89907, 'no_lang_code', 'name', 'Prevent Safety (Austria)'),
(109639, 89908, 'no_lang_code', 'name', 'Instituttet for Anvendt Datateknik (Denmark)'),
(109640, 89909, 'no_lang_code', 'name', 'Buddhasravaka Bhiksu University'),
(109641, 89910, 'en', 'name', 'New York University Shanghai'),
(109642, 89910, 'zh', 'name', '上海纽约大学'),
(109643, 89911, 'en', 'name', 'Minu-Sepehr Aerospace University'),
(109644, 89912, 'en', 'name', 'Science and Information Organization'),
(109645, 89913, 'en', 'name', 'North Asheboro Middle School'),
(109646, 89914, 'no_lang_code', 'name', 'Fenris Technologies (United States)'),
(109647, 89915, 'fr', 'name', 'Ɖcole Nationale d''Administration et de Magistrature'),
(109648, 89916, 'en', 'name', 'Japan Meteorological Agency'),
(109649, 89916, 'ja', 'name', '気豔庁'),
(109650, 89917, 'no_lang_code', 'name', 'Ollo group (Lithuania)'),
(109651, 89918, 'es', 'name', 'Ministerio de Ciencia, Tecnología e Innovación'),
(109652, 89919, 'en', 'name', 'Shanghai American School'),
(109653, 89919, 'zh', 'name', 'äøŠęµ·ē¾Žå›½å­¦ę ”'),
(109654, 89920, 'no_lang_code', 'name', 'Ɖditions L''Harmattan (France)'),
(109655, 89921, 'en', 'name', 'Jagadguru Ramanandacharya Rajasthan Sanskrit University'),
(109656, 89921, 'hi', 'name', 'ą¤œą¤—ą¤¦ą„ą¤—ą„ą¤°ą„ ą¤°ą¤¾ą¤®ą¤¾ą¤Øą¤Øą„ą¤¦ą¤¾ą¤šą¤¾ą¤°ą„ą¤Æ ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(109657, 89922, 'en', 'name', 'Center for Excellence in Molecular Plant Sciences'),
(109658, 89922, 'zh', 'name', 'å‘½ē§‘å­¦ē ”ē©¶é™¢åˆ†å­ę¤ē‰©ē§‘å­¦å“č¶Šåˆ›ę–°äø­åæƒ'),
(109659, 89923, 'en', 'name', 'Daughters of Charity Health System'),
(109660, 89924, 'fr', 'name', 'Triangle de la Physique'),
(109661, 89925, 'fr', 'name', 'Centre d''Investigation Clinique de Nantes'),
(109662, 89926, 'en', 'name', 'Indiana Christian University'),
(109663, 89927, 'no_lang_code', 'name', 'Functional Coating Technology (United States)'),
(109664, 89928, 'en', 'name', 'Hai phong University Of Medicine and Pharmacy'),
(109665, 89929, 'es', 'name', 'Centro Universitario de Dirección Empresarial y de Negocios'),
(109666, 89930, 'en', 'name', 'General Hospital of Rhodes'),
(109667, 89930, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī”ĻŒĪ“ĪæĻ…'),
(109668, 89931, 'no_lang_code', 'name', 'Adventium Labs (United States)'),
(109669, 89932, 'en', 'name', 'Northeast Iowa Community College'),
(109670, 89933, 'no_lang_code', 'name', 'BioSyntha Technology (United Kingdom)'),
(109671, 89934, 'fr', 'name', 'Laboratoire de Glaciologie et GĆ©ophysique de l’Environnement'),
(109672, 89935, 'ca', 'name', 'Hospital Sant Joan de DƩu Barcelona'),
(109673, 89935, 'en', 'name', 'Sant Joan de DĆ©u-Barcelona Children’s Hospital'),
(109674, 89936, 'en', 'name', 'IgarapƩ Institute'),
(109675, 89936, 'pt', 'name', 'Instituto IgarapƩ'),
(109676, 89937, 'fr', 'name', 'Management et Ɖconomie Lyon Saint-Ɖtienne'),
(109677, 89938, 'en', 'name', 'Trinity Health Ann Arbor Hospital'),
(109678, 89939, 'en', 'name', 'Food Process Engineering and Microbiology'),
(109679, 89939, 'fr', 'name', 'GƩnie et Microbiologie des ProcƩdƩs Alimentaires'),
(109680, 89940, 'en', 'name', 'College of Accounting'),
(109681, 89941, 'en', 'name', 'University of August 17, 1945 Banyuwangi'),
(109682, 89942, 'en', 'name', 'Baghlan University'),
(109683, 89942, 'fa', 'name', 'دانؓگاه بغلان'),
(109684, 89943, 'en', 'name', 'European Genomic Institute for Diabetes'),
(109685, 89944, 'no_lang_code', 'name', 'Altakitin (Portugal)'),
(109686, 89945, 'en', 'name', 'Parkside Hospital'),
(109687, 89946, 'en', 'name', 'Technological University Lashio'),
(109688, 89947, 'en', 'name', 'Newport News Public Library System'),
(109689, 89948, 'fr', 'name', 'Le Laboratoire d''IngƩnierie OstƩo-Articulaire et Dentaire'),
(109690, 89949, 'en', 'name', 'Serine Proteases and Pathophysiology of the neurovascular Unit'),
(109691, 89949, 'fr', 'name', 'SƩrine protƩases et physiopathologie de l''unitƩ neurovasculaire'),
(109692, 89950, 'en', 'name', 'Mining Engineering Bandung Islamic University'),
(109693, 89951, 'en', 'name', 'James Graham Brown Foundation'),
(109694, 89952, 'en', 'name', 'Toronto General Hospital'),
(109695, 89953, 'no_lang_code', 'name', 'European Framework Program Consulting (Israel)'),
(109696, 89954, 'en', 'name', 'American University of Leadership'),
(109697, 89955, 'en', 'name', 'Ankole Western University'),
(109698, 89956, 'en', 'name', 'Touching Tiny Lives'),
(109699, 89957, 'en', 'name', 'Al-Khair University'),
(109700, 89958, 'no_lang_code', 'name', 'Prototype Productions (United States)'),
(109701, 89959, 'fr', 'name', 'Conseil RƩgional de Nouvelle-Aquitaine'),
(109702, 89960, 'en', 'name', 'Dalian Ocean University'),
(109703, 89960, 'zh', 'name', 'å¤§čæžęµ·ę“‹å¤§å­¦'),
(109704, 89961, 'en', 'name', 'Nansen International Environmental and Remote Sensing Center'),
(109705, 89962, 'fr', 'name', 'Laboratoire Sciences de l''Univers au Cerfacs'),
(109706, 89963, 'no_lang_code', 'name', 'Best Theratronics (Canada)'),
(109707, 89964, 'es', 'name', 'Universidad Tecnológico de Baja California'),
(109708, 89965, 'en', 'name', 'Russian Economic University after G.V. Plekhanov'),
(109709, 89965, 'ru', 'name', 'Российский ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š“.Š’. ŠŸŠ»ŠµŃ…Š°Š½Š¾Š²Š°'),
(109710, 89966, 'fr', 'name', 'Neurobiologie de l''Olfaction et ModƩlisation en Imagerie'),
(109711, 89967, 'fr', 'name', 'Sciences en SociƩtƩ'),
(109712, 89968, 'en', 'name', 'University of Houston System at Cinco Ranch'),
(109713, 89969, 'ca', 'name', 'Hospital de Sant Pau'),
(109714, 89969, 'en', 'name', 'Hospital of the Holy Cross and Saint Paul'),
(109715, 89970, 'en', 'name', 'Princess Margaret Cancer Foundation'),
(109716, 89971, 'en', 'name', 'Lebanese International University of Mauritania'),
(109717, 89971, 'fr', 'name', 'UniversitƩ libanaise internationale en mauritanie'),
(109718, 89972, 'fr', 'name', 'UniversitƩ Professionnelle d''Afrique'),
(109719, 89973, 'en', 'name', 'St. Mary''s University in Juba'),
(109720, 89974, 'es', 'name', 'Universidad Continental Justo Sierra'),
(109721, 89975, 'en', 'name', 'MedicalOne Market Research'),
(109722, 89976, 'no_lang_code', 'name', 'Icon Process Systems (United Kingdom)'),
(109723, 89977, 'en', 'name', 'South Dakota Public Universities and Research Center'),
(109724, 89978, 'en', 'name', 'Jinja District Health Directorate'),
(109725, 89979, 'es', 'name', 'Universidad Paccioli de Córdoba'),
(109726, 89980, 'en', 'name', 'Shota Meskhia State Teaching University of Zugdidi'),
(109727, 89981, 'en', 'name', 'Northwestern University Settlement Association'),
(109728, 89982, 'es', 'name', 'Universidad Privada Sergio Bernales'),
(109729, 89983, 'en', 'name', 'Love Your Breasts'),
(109730, 89984, 'fr', 'name', 'Centre de Recherche d''Histoire Quantitative'),
(109731, 89985, 'fr', 'name', 'Laboratoire Francis Perrin'),
(109732, 89986, 'no_lang_code', 'name', 'Voestalpine (Germany)'),
(109733, 89987, 'en', 'name', 'Sanaag University of Science and Technology'),
(109734, 89988, 'es', 'name', 'Universidad St. John''s'),
(109735, 89989, 'en', 'name', 'Autism Consortium'),
(109736, 89990, 'id', 'name', 'Universitas Mayjen Sungkono'),
(109737, 89991, 'no_lang_code', 'name', 'TDL Sensors (United Kingdom)'),
(109738, 89992, 'en', 'name', 'Bronx-Lebanon Hospital Center'),
(109739, 89993, 'en', 'name', 'Orenburg Municipal Higher College of Humanities and Natural Sciences'),
(109740, 89994, 'en', 'name', 'Department of Health Services'),
(109741, 89995, 'es', 'name', 'Universidad Latinoamericana de Comercio Exterior'),
(109742, 89996, 'en', 'name', 'Private University of Science and Arts'),
(109743, 89996, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŁŁ†ŁˆŁ†'),
(109744, 89997, 'no_lang_code', 'name', 'StromaLab'),
(109745, 89998, 'en', 'name', 'Toronto Western Hospital'),
(109746, 89999, 'id', 'name', 'Universitas Timbul Nusantara'),
(109747, 90000, 'en', 'name', 'Trinity Health'),
(109748, 90001, 'en', 'name', 'Shanghai Theatre Academy'),
(109749, 90001, 'zh', 'name', 'äøŠęµ·ęˆå‰§å­¦é™¢'),
(109750, 90002, 'en', 'name', 'Buncombe County Early College'),
(109751, 90003, 'no_lang_code', 'name', 'Foresight Science & Technology (United States)'),
(109752, 90004, 'en', 'name', 'Melbourne Free University'),
(109753, 90005, 'en', 'name', 'Educational University Interpharma Plus'),
(109754, 90006, 'en', 'name', 'Sandhills Theatre Arts Renaissance School'),
(109755, 90007, 'fr', 'name', 'Centre de Recherche sur l’Action Locale'),
(109756, 90008, 'en', 'name', 'Fairland University'),
(109757, 90009, 'fr', 'name', 'DƩlƩgation RƩgionale Nord Ouest'),
(109758, 90010, 'en', 'name', 'Shanghai Technical Institute of Electronics & Information'),
(109759, 90010, 'zh', 'name', 'äøŠęµ·ē”µå­äæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(109760, 90011, 'en', 'name', 'Toronto Rehabilitation Institute'),
(109761, 90012, 'en', 'name', 'Direct Health Media'),
(109762, 90013, 'en', 'name', 'Uttar Pradesh Rajarshi Tandon Open University'),
(109763, 90013, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤°ą¤¾ą¤œą¤°ą„ą¤·ą¤æ ą¤Ÿą¤‚ą¤”ą¤Ø ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(109764, 90014, 'en', 'name', 'Chinese People''s Liberation Army Navy Hospital of Guangzhou'),
(109765, 90015, 'en', 'name', 'Webster University Orlando'),
(109766, 90016, 'fr', 'name', 'Universite des Sciences AppliquƩe et Management'),
(109767, 90017, 'en', 'name', 'Asian Women’s Leadership University'),
(109768, 90018, 'es', 'name', 'Instituto Universitario Centro de Docencia, Investigación e Información en Aprendizaje'),
(109769, 90019, 'en', 'name', 'European Institute for Health Records'),
(109770, 90020, 'en', 'name', 'Syed Jamaluddin Afghan University'),
(109771, 90020, 'fa', 'name', 'دانؓگاه سید جمال Ų§Ł„ŲÆŪŒŁ† افغان'),
(109772, 90021, 'fr', 'name', 'Centre d’études d’agents PathogĆØnes et Biotechnologies Pour la SantĆ©'),
(109773, 90022, 'en', 'name', 'Rozgan University'),
(109774, 90022, 'fa', 'name', 'دانؓگاه ارزگان'),
(109775, 90023, 'en', 'name', 'School for Compassionate Action'),
(109776, 90024, 'es', 'name', 'Universidad Potosina'),
(109777, 90025, 'en', 'name', 'Taungoo Technological University'),
(109778, 90026, 'es', 'name', 'Universidad Autonoma de Chinandega'),
(109779, 90027, 'fr', 'name', 'Institut Nanosciences et CryogƩnie'),
(109780, 90028, 'en', 'name', 'Shanghai University of International Business and Economics'),
(109781, 90028, 'zh', 'name', 'äøŠęµ·åÆ¹å¤–ē»č“øå¤§å­¦'),
(109782, 90029, 'no_lang_code', 'name', 'Dolby (Canada)'),
(109783, 90030, 'en', 'name', 'Christian University of the Americas'),
(109784, 90031, 'en', 'name', 'Kim Il-Sung Military University'),
(109785, 90031, 'ko', 'name', 'ź¹€ģ¼ģ„±źµ°ģ‚¬ģ¢…ķ•©ėŒ€ķ•™'),
(109786, 90032, 'pt', 'name', 'Instituto Profissional de Canossa - IPDC'),
(109787, 90033, 'es', 'name', 'Centro Universitario de Chihuahua'),
(109788, 90034, 'en', 'name', 'Lutheran Theological University'),
(109789, 90035, 'en', 'name', 'Institute for Research in Language Teaching'),
(109790, 90035, 'ja', 'name', 'čŖžå­¦ę•™č‚²ē ”ē©¶ę‰€'),
(109791, 90036, 'en', 'name', 'Meteorological Research Institute'),
(109792, 90036, 'ja', 'name', '気豔庁気豔研究所'),
(109793, 90037, 'no_lang_code', 'name', 'Airbus (France)'),
(109794, 90038, 'en', 'name', 'Argentine Atlantis University'),
(109795, 90039, 'fr', 'name', 'Biologie Structurale des Processus Cellulaires et des Agents Infectieux'),
(109796, 90040, 'en', 'name', 'Nordic Cancer Union'),
(109797, 90041, 'no_lang_code', 'name', 'Excelitas Technologies (United Kingdom)'),
(109798, 90042, 'en', 'name', 'Islamic American University'),
(109799, 90043, 'no_lang_code', 'name', 'Festo (Germany)'),
(109800, 90044, 'pt', 'name', 'Escola Superior de Tecnologias e Artes de Lisboa'),
(109801, 90045, 'es', 'name', 'Instituto Multidisciplinario de BiologĆ­a Celular'),
(109802, 90046, 'no_lang_code', 'name', 'Tbilisi University Metekhi'),
(109803, 90047, 'es', 'name', 'Universidad Humanitas'),
(109804, 90048, 'nl', 'name', 'Nationaal Regieorgaan Onderwijsonderzoek'),
(109805, 90048, 'en', 'name', 'National Initiative for Education Research'),
(109806, 90049, 'no_lang_code', 'name', 'IIE MSA'),
(109807, 90050, 'en', 'name', 'Cincinnati Foundation for Biomedical Research and Education'),
(109808, 90051, 'es', 'name', 'Centro de Estudios Tecnológicos y Universitarios'),
(109809, 90052, 'no_lang_code', 'name', 'Smd Informatic (Portugal)'),
(109810, 90053, 'en', 'name', 'Technological University Meiktila'),
(109811, 90054, 'no_lang_code', 'name', 'Monguz Information Technology Ltd. (Hungary)'),
(109812, 90054, 'hu', 'name', 'Monguz InformÔciótechnológiai Kft.'),
(109813, 90055, 'no_lang_code', 'name', 'Total (France)'),
(109814, 90056, 'en', 'name', 'Tamil Nadu Horticulture University'),
(109815, 90056, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®¤ąÆ‹ą®ŸąÆą®Ÿą®•ąÆą®•ą®²ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(109816, 90057, 'en', 'name', 'NOAA Geophysical Fluid Dynamics Laboratory'),
(109817, 90058, 'no_lang_code', 'name', 'Carling Point (United Kingdom)'),
(109818, 90059, 'en', 'name', 'Livingston Public Schools'),
(109819, 90060, 'fr', 'name', 'Alimentation et Sciences Sociales'),
(109820, 90061, 'id', 'name', 'Universitas Teknologi Indonesia'),
(109821, 90062, 'no_lang_code', 'name', 'Biocon (United States)'),
(109822, 90063, 'es', 'name', 'Universidad San Anselmo de Canterbury'),
(109823, 90064, 'ro', 'name', 'Universitatea Romano-Germana din Sibiu'),
(109824, 90065, 'no_lang_code', 'name', 'Garmin (Germany)'),
(109825, 90066, 'en', 'name', 'Shanghai University of Medicine and Health Sciences'),
(109826, 90066, 'zh', 'name', 'äøŠęµ·å„åŗ·åŒ»å­¦é™¢'),
(109827, 90067, 'es', 'name', 'Centro de Estudios Universitarios Adolfo López Mateos'),
(109828, 90068, 'no_lang_code', 'name', 'BioGene (United Kingdom)'),
(109829, 90069, 'en', 'name', 'Foundation for the Development of Ophthalmology'),
(109830, 90069, 'pl', 'name', 'Fundacja Wspierania Rozwoju Okulistyki "Okulistyka 21"'),
(109831, 90070, 'en', 'name', 'Foundation for Healthcare Advancement'),
(109832, 90071, 'en', 'name', 'Bovey Tracey Hospital'),
(109833, 90072, 'no_lang_code', 'name', 'Eden’s Bowl (United States)'),
(109834, 90073, 'en', 'name', 'Khorugh State University'),
(109835, 90073, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии Š„Š¾Ń€ŃƒŅ“ ба номи М. ŠŠ°Š·Š°Ń€ŃˆŠ¾ŠµŠ²'),
(109836, 90074, 'en', 'name', 'Federal Department of Justice'),
(109837, 90075, 'en', 'name', 'Florida Ornithological Society'),
(109838, 90076, 'en', 'name', 'Popular University of Nicaragua'),
(109839, 90077, 'no_lang_code', 'name', 'L''Harmattan Publishing House, Budapest (Hungary)'),
(109840, 90077, 'hu', 'name', 'L’Harmattan Kƶnyvkiadó Kft.'),
(109841, 90078, 'pt', 'name', 'Instituto Superior de Tecnologias AvanƧadas'),
(109842, 90079, 'en', 'name', 'High School of Music of Sakha'),
(109843, 90080, 'en', 'name', 'National Nanotechnology Initiative'),
(109844, 90081, 'es', 'name', 'Universidad de Comunicación Avanzada'),
(109845, 90082, 'en', 'name', 'Migrant Assistance Program Foundation'),
(109846, 90083, 'en', 'name', 'Association of Black Women Historians'),
(109847, 90084, 'no_lang_code', 'name', 'Covalent Associates (United States)'),
(109848, 90085, 'no_lang_code', 'name', 'GEO Group (Czechia)'),
(109849, 90086, 'no_lang_code', 'name', 'Immersion (France)'),
(109850, 90087, 'ro', 'name', 'Universitatea Europeană Drăgan'),
(109851, 90088, 'es', 'name', 'Universidad Cristiana Latinoamericana'),
(109852, 90089, 'en', 'name', 'Amruta Sinchana Spiritual University'),
(109853, 90090, 'en', 'name', 'Ramakrishna Mission Vivekananda Educational and Research Institute'),
(109854, 90090, 'hi', 'name', 'ą¤°ą¤¾ą¤®ą¤•ą„ƒą¤·ą„ą¤£ मिशन ą¤µą¤æą¤µą„‡ą¤•ą¤¾ą¤Øą¤‚ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(109855, 90090, 'bn', 'name', 'ą¦°ą¦¾ą¦®ą¦•ą§ƒą¦·ą§ą¦£ মিশন ą¦¬ą¦æą¦¬ą§‡ą¦•ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109856, 90091, 'no_lang_code', 'name', 'Oxford Photovoltaics (United Kingdom)'),
(109857, 90092, 'es', 'name', 'Instituto Universitario Internacional de Toluca'),
(109858, 90093, 'en', 'name', 'Chamber of Labour'),
(109859, 90093, 'de', 'name', 'Kammer für Arbeiter und Angestellte'),
(109860, 90094, 'fr', 'name', 'Laboratoire d’Informatique Fondamentale de Marseille'),
(109861, 90095, 'no_lang_code', 'name', 'Custom Interconnect Limited (United Kingdom)'),
(109862, 90096, 'en', 'name', 'Malopolska Association For Agricultural Extension At The Agricultural University of Cracow'),
(109863, 90097, 'no_lang_code', 'name', 'Triangle Research and Development Corporation (United States)'),
(109864, 90098, 'es', 'name', 'Instituto de FisiologĆ­a Vegetal'),
(109865, 90099, 'no_lang_code', 'name', 'Aptiv (France)'),
(109866, 90100, 'en', 'name', 'Marshfield Clinic'),
(109867, 90101, 'en', 'name', 'Touro University Rome'),
(109868, 90102, 'es', 'name', 'Universidad Loyola de AmƩrica'),
(109869, 90103, 'en', 'name', 'University John of the Cross'),
(109870, 90104, 'en', 'name', 'Pennsylvania Elks Home Service Program'),
(109871, 90105, 'fr', 'name', 'Institut de Linguistique FranƧaise'),
(109872, 90106, 'es', 'name', 'Liga AtlƩtica Interuniversitaria de Puerto Rico'),
(109873, 90107, 'en', 'name', 'Runajambi Institute for the Study of Quichua Culture and Health'),
(109874, 90108, 'en', 'name', 'Biochemistry Research Institute of La Plata'),
(109875, 90109, 'en', 'name', 'Khurasan University'),
(109876, 90109, 'fa', 'name', 'دانؓگاه خراسان'),
(109877, 90110, 'no_lang_code', 'name', 'AT Sciences (United States)'),
(109878, 90111, 'no_lang_code', 'name', 'Forum (United States)'),
(109879, 90112, 'no_lang_code', 'name', 'Interactive Motion Technologies (United States)'),
(109880, 90113, 'no_lang_code', 'name', 'Ion Beam Applications (France)'),
(109881, 90114, 'en', 'name', 'Minnesota State University Student Association'),
(109882, 90115, 'en', 'name', 'Bolin Centre for Climate Research'),
(109883, 90116, 'en', 'name', 'Government of Western Australia Department of Health'),
(109884, 90117, 'no_lang_code', 'name', 'OpSaniTx (United States)'),
(109885, 90118, 'en', 'name', 'Dayton Children''s Hospital'),
(109886, 90119, 'en', 'name', 'Albuquerque Museum Foundation'),
(109887, 90120, 'en', 'name', 'Shanghai Academy of Science & Technology'),
(109888, 90120, 'zh', 'name', 'äøŠęµ·ē§‘å­¦é™¢'),
(109889, 90121, 'en', 'name', 'McEwen Stem Cell Institute'),
(109890, 90122, 'en', 'name', 'Specialist People Foundation'),
(109891, 90123, 'en', 'name', 'ARC Centre of Excellence for Climate System Science'),
(109892, 90124, 'en', 'name', 'Institute for Biocomputation and Physics of Complex Systems'),
(109893, 90124, 'es', 'name', 'Instituto de Biocomputación y Física de Sistemas Complejos'),
(109894, 90125, 'en', 'name', 'Ecology and Ecosystem Health'),
(109895, 90125, 'fr', 'name', 'Ɖcologie et santĆ© de l''Ć©cosystĆØme'),
(109896, 90126, 'en', 'name', 'British Institute in Eastern Africa'),
(109897, 90127, 'no_lang_code', 'name', 'Sparta Systems (United States)'),
(109898, 90128, 'it', 'name', 'InLaser'),
(109899, 90129, 'en', 'name', 'Chuluncayani Adventist University'),
(109900, 90130, 'en', 'name', 'South African School of Motion Picture Medium and Live Performance'),
(109901, 90131, 'es', 'name', 'Universidad Pedagógica Veracruzana'),
(109902, 90132, 'en', 'name', 'Penitentiary Academy of Ukraine'),
(109903, 90132, 'uk', 'name', 'ŠŸŠµŠ½Ń–Ń‚ŠµŠ½Ń†Ń–Š°Ń€Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України'),
(109904, 90133, 'es', 'name', 'Universidad Benavente'),
(109905, 90134, 'fr', 'name', 'Phosphorylation de protƩines et Pathologies Humaines'),
(109906, 90135, 'en', 'name', 'International University & Polytechnic of Benin'),
(109907, 90136, 'no_lang_code', 'name', 'Proteovista (United States)'),
(109908, 90137, 'no_lang_code', 'name', 'Inanovate (United Kingdom)'),
(109909, 90138, 'en', 'name', 'Informa Healthcare'),
(109910, 90139, 'en', 'name', 'Linda Vista University'),
(109911, 90139, 'es', 'name', 'Universidad Linda Vista'),
(109912, 90140, 'en', 'name', 'Trinity Health Livingston Hospital'),
(109913, 90141, 'en', 'name', 'Bhatkhande Music Institute University'),
(109914, 90142, 'en', 'name', 'Dyersburg State Community College'),
(109915, 90143, 'en', 'name', 'Independent Living Resources'),
(109916, 90144, 'en', 'name', 'Toronto General & Western Hospital Foundation'),
(109917, 90145, 'es', 'name', 'Universidad de Turismo y Ciencias Administrativas'),
(109918, 90146, 'no', 'name', 'Meteorologisk institutt'),
(109919, 90146, 'en', 'name', 'Norwegian Meteorological Institute'),
(109920, 90147, 'az', 'name', 'Bakı Asiya Universiteti'),
(109921, 90148, 'en', 'name', 'Ballarat Health Services'),
(109922, 90149, 'en', 'name', 'Parkwood Hospital'),
(109923, 90150, 'en', 'name', 'Sant Joan de DƩu Research Foundation'),
(109924, 90151, 'en', 'name', 'American Graduate University'),
(109925, 90152, 'en', 'name', 'Hibernia College'),
(109926, 90153, 'no_lang_code', 'name', 'Dittel Avionik (Germany)'),
(109927, 90154, 'es', 'name', 'Centro Universitario De Integracion Humanistico'),
(109928, 90155, 'es', 'name', 'Fundacion Allende'),
(109929, 90156, 'es', 'name', 'Centro Cochrane Iberoamericano'),
(109930, 90156, 'en', 'name', 'Iberoamerican Cochrane Centre'),
(109931, 90157, 'en', 'name', 'Unit of Virus Host Cell Interactions'),
(109932, 90158, 'fr', 'name', 'Institut de Recherche sur les Systèmes Atomiques et Moléculaires Complexes'),
(109933, 90158, 'en', 'name', 'Institute for Systems Research Atomic and Molecular Complexes'),
(109934, 90159, 'en', 'name', 'South Campus Community School'),
(109935, 90160, 'fr', 'name', 'DiffƩrenciation et Communication Neuronale et Neuroendocrine'),
(109936, 90161, 'en', 'name', 'Shanghai Civil Aviation College'),
(109937, 90161, 'zh', 'name', 'äøŠęµ·ę°‘čˆŖčŒäøšęŠ€ęœÆå­¦é™¢'),
(109938, 90162, 'no_lang_code', 'name', 'Berkenhoff (Germany)'),
(109939, 90163, 'en', 'name', 'Western Metropolitan Area University Association'),
(109940, 90163, 'ja', 'name', 'é¦–éƒ½åœč„æéƒØå¤§å­¦å˜ä½äŗ’ę›å”å®šä¼š'),
(109941, 90164, 'no_lang_code', 'name', 'AvidBiotics (United States)'),
(109942, 90165, 'es', 'name', 'Escuela Nacional de Administración y Hacienda Pública-Instituto Universitario de Tecnología'),
(109943, 90166, 'en', 'name', 'America Nepal Medical Foundation'),
(109944, 90167, 'en', 'name', 'Technological University Dawei'),
(109945, 90168, 'es', 'name', 'Universidad de Estudios Profesionales de Ciencias y Artes'),
(109946, 90169, 'en', 'name', 'University of Timbuktu'),
(109947, 90170, 'en', 'name', 'P S Jones Middle School'),
(109948, 90171, 'en', 'name', 'Technological University Sittwe'),
(109949, 90172, 'en', 'name', 'Kenya Library and Information Services Consortium'),
(109950, 90173, 'no_lang_code', 'name', 'SociƩtƩ d''Economie Mixte (France)'),
(109951, 90174, 'en', 'name', 'Carl Vogel Center'),
(109952, 90175, 'no_lang_code', 'name', 'Cybernetics Technology (Belgium)'),
(109953, 90176, 'en', 'name', 'Caldwell County Schools'),
(109954, 90177, 'en', 'name', 'Technological University Magway'),
(109955, 90178, 'en', 'name', 'Xing Wei College'),
(109956, 90178, 'zh', 'name', 'äøŠęµ·å…“ä¼Ÿå­¦é™¢'),
(109957, 90179, 'es', 'name', 'Universidad Privada de Irapuato'),
(109958, 90180, 'en', 'name', 'Moscow Art Theatre School'),
(109959, 90181, 'en', 'name', 'Rajabhat University System'),
(109960, 90181, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąø'),
(109961, 90182, 'no_lang_code', 'name', 'IMBIC (United States)'),
(109962, 90183, 'es', 'name', 'Centro de Estudios Universitarios de Periodismo y Arte en Radio y Televisión'),
(109963, 90184, 'en', 'name', 'Hasheminejad Kidney Center'),
(109964, 90184, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ Ł‡Ų§Ų“Ł…ŪŒ Ł†Ś˜Ų§ŲÆ'),
(109965, 90184, 'ar', 'name', 'Ł…Ų³ŲŖŲ“ŁŪŒ Ų§Ł„Ų“Ł‡ŪŒŲÆ Ł‡Ų§Ų“Ł…ŪŒ نجاد'),
(109966, 90185, 'no_lang_code', 'name', 'Paulo Freire University'),
(109967, 90186, 'en', 'name', 'University of Arts from TĆ¢rgu-Mureș'),
(109968, 90187, 'no_lang_code', 'name', 'Luceat (Italy)'),
(109969, 90188, 'hr', 'name', 'Institut za književnost i umetnost'),
(109970, 90188, 'en', 'name', 'Institute for Literature and Art'),
(109971, 90188, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠŗŃšŠøŠ¶ŠµŠ²Š½Š¾ŃŃ‚ Šø ŃƒŠ¼ŠµŃ‚Š½Š¾ŃŃ‚'),
(109972, 90189, 'en', 'name', 'Regional Health Administration of Thessaly'),
(109973, 90190, 'no_lang_code', 'name', 'McGraw Hill Financial (United States)'),
(109974, 90191, 'en', 'name', 'Graham A. Barden Elementary School'),
(109975, 90192, 'en', 'name', 'HealthSouth Rehabilitation Hospital of Tinton Falls'),
(109976, 90193, 'en', 'name', 'International Research Universities Network'),
(109977, 90194, 'no_lang_code', 'name', 'BioMar (United Kingdom)'),
(109978, 90195, 'en', 'name', 'Huichon University of Telecommunications'),
(109979, 90195, 'ko', 'name', 'ķ¬ģ²œ 공업 ėŒ€ķ•™'),
(109980, 90196, 'es', 'name', 'Universidad Metropolitana'),
(109981, 90197, 'es', 'name', 'Instituto de FĆ­sica La Plata'),
(109982, 90198, 'no_lang_code', 'name', 'Environmental Analysis and Remote Sensing (Netherlands)'),
(109983, 90199, 'en', 'name', 'Tilak Dhari Post Graduate College'),
(109984, 90200, 'so', 'name', 'Jaamacada Lafoole'),
(109985, 90200, 'en', 'name', 'Lafoole University'),
(109986, 90201, 'no_lang_code', 'name', 'Aptiv (Luxembourg)'),
(109987, 90202, 'en', 'name', 'Aljazeera University'),
(109988, 90202, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬Ų²ŁŠŲ±Ų© الخاصة'),
(109989, 90203, 'en', 'name', 'Consortium for Ocean-Sea Ice Modelling in Australia'),
(109990, 90204, 'fr', 'name', 'Institut de Recherche Scripps'),
(109991, 90204, 'en', 'name', 'Scripps Research Institute'),
(109992, 90205, 'no_lang_code', 'name', 'Khemarak University'),
(109993, 90206, 'fr', 'name', 'Institut Universitaire du BƩnin'),
(109994, 90207, 'en', 'name', 'Kiyv Municipal Medical College'),
(109995, 90208, 'en', 'name', 'Center for Hydrometeorology and Remote Sensing'),
(109996, 90209, 'en', 'name', 'University of Bandundu'),
(109997, 90209, 'fr', 'name', 'UniversitƩ de bandundu'),
(109998, 90210, 'en', 'name', 'Surakarta Christian University'),
(109999, 90211, 'fr', 'name', 'Centre de Biologie du DƩveloppement'),
(110000, 90212, 'en', 'name', 'National Institute Of Blood Disease and Bone Marrow Transplantation'),
(110001, 90213, 'en', 'name', 'Canadian Virtual University'),
(110002, 90214, 'en', 'name', 'New American Colleges and Universities'),
(110003, 90215, 'en', 'name', 'Vilentum University of applied sciences'),
(110004, 90216, 'en', 'name', 'Webster University Utah'),
(110005, 90217, 'en', 'name', 'Indian National Defence University'),
(110006, 90217, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą¤•ą„ą¤·ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(110007, 90218, 'no_lang_code', 'name', 'Barr and Stroud (United Kingdom)'),
(110008, 90219, 'en', 'name', 'Technological University Hinthada'),
(110009, 90220, 'en', 'name', 'Canada Research Chairs'),
(110010, 90220, 'fr', 'name', 'Chaires de recherche du Canada'),
(110011, 90221, 'en', 'name', 'Benghazi Military University Academy'),
(110012, 90222, 'fr', 'name', 'UniversitƩ William Booth'),
(110013, 90223, 'en', 'name', 'Finnish Meteorological Institute'),
(110014, 90223, 'fi', 'name', 'Ilmatieteen Laitos'),
(110015, 90223, 'sv', 'name', 'Meteorologiska Institutet'),
(110016, 90224, 'en', 'name', 'Carolina University of Theology'),
(110017, 90225, 'en', 'name', 'Karnataka Folklore University, Haveri'),
(110018, 90226, 'no_lang_code', 'name', '4D Technology (United States)'),
(110019, 90227, 'en', 'name', 'West Suffolk NHS Foundation Trust'),
(110020, 90228, 'en', 'name', 'Darlington Memorial Hospital'),
(110021, 90229, 'no_lang_code', 'name', 'ET Techtonics (United States)'),
(110022, 90230, 'no_lang_code', 'name', 'Apigenex (Czechia)'),
(110023, 90231, 'en', 'name', 'Russian International Academy of Tourism'),
(110024, 90231, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(110025, 90232, 'en', 'name', 'Adventist La Grange Memorial Hospital'),
(110026, 90233, 'en', 'name', 'Broadmoor Hospital'),
(110027, 90234, 'en', 'name', 'Brighton International University'),
(110028, 90235, 'es', 'name', 'Centro Universitario en Lenguas, Turismo y Empresas de Servicios'),
(110029, 90236, 'en', 'name', 'Lomi School Foundation and Psychotherapy Clinic'),
(110030, 90237, 'no_lang_code', 'name', 'Voxtel (United States)'),
(110031, 90238, 'es', 'name', 'Universidad Galilea'),
(110032, 90239, 'no_lang_code', 'name', 'Metadata Game Changers (United States)'),
(110033, 90240, 'en', 'name', 'Center for Excellence in Brain Science and Intelligence Technology'),
(110034, 90240, 'zh', 'name', 'å­¦é™¢č„‘ē§‘å­¦äøŽę™ŗčƒ½ęŠ€ęœÆå“č¶Šåˆ›ę–°äø­åæƒ'),
(110035, 90241, 'id', 'name', 'Universitas Tri Tunggal'),
(110036, 90242, 'en', 'name', 'Shanghai Police College'),
(110037, 90242, 'zh', 'name', 'äøŠęµ·å…¬å®‰å­¦é™¢'),
(110038, 90243, 'en', 'name', 'Kutaisi Musical College'),
(110039, 90244, 'en', 'name', 'Grampians Health'),
(110040, 90245, 'no_lang_code', 'name', 'Aircraft Industries (Czechia)'),
(110041, 90246, 'no_lang_code', 'name', 'ProbaYes (France)'),
(110042, 90247, 'no_lang_code', 'name', 'Parachute Health (United States)'),
(110043, 90248, 'en', 'name', 'International Union for Circumpolar Health'),
(110044, 90249, 'es', 'name', 'Universidad San Marcos'),
(110045, 90250, 'no_lang_code', 'name', 'Rio Tinto (Switzerland)'),
(110046, 90251, 'en', 'name', 'Dean Martin Neuromuscular Clinic'),
(110047, 90252, 'no_lang_code', 'name', 'BioMar (Denmark)'),
(110048, 90253, 'en', 'name', 'Brain Tumor Awareness Organization'),
(110049, 90254, 'en', 'name', 'Shanghai Jinyuan Senior High School'),
(110050, 90254, 'zh', 'name', 'äøŠęµ·åø‚ę™‹å…ƒé«˜ēŗ§äø­å­¦'),
(110051, 90255, 'no_lang_code', 'name', 'Hydro-Air (Germany)'),
(110052, 90256, 'en', 'name', 'University College of Aviation and Technology'),
(110053, 90257, 'en', 'name', 'Trinity Health Michigan'),
(110054, 90258, 'es', 'name', 'Universidad Michoacana de Oriente'),
(110055, 90259, 'no_lang_code', 'name', 'IS3D (United States)'),
(110056, 90260, 'es', 'name', 'Universidad Internacional Para el Desarrollo Sostenible'),
(110057, 90261, 'de', 'name', 'Institut für Angewandte Sprachforschung'),
(110058, 90261, 'en', 'name', 'Institute for Applied Linguistics'),
(110059, 90261, 'it', 'name', 'Istituto di linguistica applicata'),
(110060, 90262, 'no_lang_code', 'name', 'Berkeley Systems (United States)'),
(110061, 90263, 'no_lang_code', 'name', 'Consensus Pharmaceuticals (United States)'),
(110062, 90264, 'en', 'name', 'St Michaels Hospital'),
(110063, 90265, 'fr', 'name', 'Laboratoire d''informatique de Nantes Atlantique'),
(110064, 90266, 'no_lang_code', 'name', 'Escrypt (Germany)'),
(110065, 90267, 'id', 'name', 'Universitas Satria Makassar'),
(110066, 90268, 'en', 'name', 'Southern Middle School'),
(110067, 90269, 'en', 'name', 'Taguig City University'),
(110068, 90270, 'en', 'name', 'Chelsea Hospital'),
(110069, 90271, 'en', 'name', 'Ashley IB Elementary Magnet School'),
(110070, 90272, 'fr', 'name', 'Sciences Techniques Ɖducation Formation'),
(110071, 90273, 'en', 'name', 'Shanghai National Accounting Institute'),
(110072, 90273, 'zh', 'name', 'äøŠęµ·å›½å®¶ä¼šč®”å­¦é™¢'),
(110073, 90274, 'es', 'name', 'Universidad del Valle de Matatipac'),
(110074, 90275, 'en', 'name', 'South Osaka Neurosurgical Hospital'),
(110075, 90276, 'en', 'name', 'Launceston General Hospital'),
(110076, 90277, 'en', 'name', 'World Prevention Alliance'),
(110077, 90278, 'en', 'name', 'O’Loughlin Elementary School'),
(110078, 90279, 'en', 'name', 'Al Azhar University'),
(110079, 90279, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأزهر'),
(110080, 90280, 'en', 'name', 'Human Resources University'),
(110081, 90281, 'no_lang_code', 'name', 'Clinical Gene Networks (Sweden)'),
(110082, 90282, 'fr', 'name', 'Groupe de Recherche en FertilitƩ Humaine'),
(110083, 90283, 'en', 'name', 'Shanghai Academy of Educational Sciences'),
(110084, 90283, 'zh', 'name', 'äøŠęµ·åø‚ę•™č‚²ē§‘å­¦ē ”ē©¶é™¢'),
(110085, 90284, 'en', 'name', 'Malden Grade School'),
(110086, 90285, 'fr', 'name', 'Risques Travail MarchƩs Etat'),
(110087, 90286, 'en', 'name', 'Clarkton School of Discovery'),
(110088, 90287, 'fr', 'name', 'Laboratoire SpƩcification et VƩrification'),
(110089, 90288, 'en', 'name', 'African Organisation for Research and Training in Cancer'),
(110090, 90289, 'en', 'name', 'Queensland Climate Change Centre of Excellence'),
(110091, 90290, 'en', 'name', 'University of Gedo'),
(110092, 90291, 'en', 'name', 'Community Clinic Health Network'),
(110093, 90292, 'en', 'name', 'Venezuelan Adventist University'),
(110094, 90293, 'en', 'name', 'Toronto General Hospital Research Institute'),
(110095, 90294, 'en', 'name', 'National Institute of Abiotic Stress Management'),
(110096, 90294, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤œą„ˆą¤µą¤æą¤• तनाव ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(110097, 90295, 'es', 'name', 'Centro de Investigaciones Cardiovasculares'),
(110098, 90296, 'es', 'name', 'Centro de Estudios Universitarios del Norte'),
(110099, 90297, 'no_lang_code', 'name', 'Vermaat Technics (Netherlands)'),
(110100, 90298, 'en', 'name', 'Mongolian State University of Culture and Art'),
(110101, 90299, 'en', 'name', 'Nebraska State Office of the Governor'),
(110102, 90300, 'en', 'name', 'Florida International University Tianjin Center'),
(110103, 90301, 'fr', 'name', 'Universite Adventiste de Lukanga'),
(110104, 90302, 'no_lang_code', 'name', 'PreClinOmics (United States)'),
(110105, 90303, 'no_lang_code', 'name', 'Science-Metrix (Canada)'),
(110106, 90304, 'id', 'name', 'Universitas Karo'),
(110107, 90305, 'no_lang_code', 'name', 'VistaMotif (United States)'),
(110108, 90306, 'it', 'name', 'Istruzione Tecnica Superiore'),
(110109, 90307, 'es', 'name', 'Centro Universitario Promedac'),
(110110, 90308, 'en', 'name', 'Dublin Metropolitan University'),
(110111, 90309, 'en', 'name', 'Miami University Glee Club'),
(110112, 90310, 'en', 'name', 'Sheppard and Lapsley Presbyterian University of Congo'),
(110113, 90311, 'en', 'name', 'Arizona Department of Libraries, Archives and Public Records'),
(110114, 90312, 'en', 'name', 'Institute of Fish Resources - Varna (Agricultural Academy)'),
(110115, 90312, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ по рибни Ń€ŠµŃŃƒŃ€ŃŠø, ИРР – Варна, към Делскостопанска ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ (ДДА)'),
(110116, 90313, 'en', 'name', 'Population Health Research Institute'),
(110117, 90314, 'no_lang_code', 'name', 'Hachinohe Gakuin University'),
(110118, 90314, 'ja', 'name', 'å…«ęˆøå­¦é™¢å¤§å­¦'),
(110119, 90315, 'en', 'name', 'South Johnston High School'),
(110120, 90316, 'en', 'name', 'Sydney University Musical Society'),
(110121, 90317, 'en', 'name', 'UniCancer Group'),
(110122, 90318, 'it', 'name', 'Scuola Superiore Internazionale di Studi Universitari di Ricerca e Formazione'),
(110123, 90319, 'en', 'name', 'City University of Pasay'),
(110124, 90320, 'en', 'name', 'Duchess Of Kent Hospital'),
(110125, 90321, 'fr', 'name', 'Direction des Sciences de la MatiĆØre'),
(110126, 90322, 'en', 'name', 'East Burke High School'),
(110127, 90323, 'no_lang_code', 'name', 'Technical Union for the Automobile Motorcycle and Cycle Industries'),
(110128, 90323, 'fr', 'name', 'Union Technique de l’Automobile du motocycle et du Cycle'),
(110129, 90324, 'fr', 'name', 'UniversitƩ Dakar-Bourguiba'),
(110130, 90325, 'no_lang_code', 'name', 'RestorGenex (United States)'),
(110131, 90326, 'en', 'name', 'Market Harborough Hospital'),
(110132, 90327, 'no_lang_code', 'name', 'OnCyte (United States)'),
(110133, 90328, 'no_lang_code', 'name', 'Regatron (Switzerland)'),
(110134, 90329, 'en', 'name', 'Chalermkarnchana University'),
(110135, 90330, 'fr', 'name', 'Laboratoire MontpelliĆ©rain d’Economie ThĆ©orique et AppliquĆ©e'),
(110136, 90331, 'no_lang_code', 'name', 'Philips (Italy)'),
(110137, 90332, 'fr', 'name', 'UniversitƩ MƩditerranƩenne Libre de Tunis'),
(110138, 90333, 'en', 'name', 'Beijing Huajia University'),
(110139, 90334, 'fr', 'name', 'Laboratoire de Recherche en Informatique'),
(110140, 90335, 'en', 'name', 'University of Wales, Romania'),
(110141, 90336, 'en', 'name', 'Soil Science Research Unit'),
(110142, 90336, 'fr', 'name', 'UnitƩ de Recherche en Science du Sol'),
(110143, 90337, 'fr', 'name', 'Laboratoire d’Électronique, Informatique et Image'),
(110144, 90338, 'en', 'name', 'Missouri State University Branch Campus Dalian'),
(110145, 90339, 'en', 'name', 'Forest City People''s Hospital'),
(110146, 90340, 'en', 'name', 'eHope Foundation'),
(110147, 90341, 'en', 'name', 'Shanghai Medical College of Fudan University'),
(110148, 90341, 'zh', 'name', 'å¤ę—¦å¤§å­¦äøŠęµ·åŒ»å­¦é™¢'),
(110149, 90342, 'no_lang_code', 'name', 'Nouricia (France)'),
(110150, 90343, 'en', 'name', 'Shanghai Conservatory of Music'),
(110151, 90343, 'zh', 'name', 'äøŠęµ·éŸ³ä¹å­¦é™¢'),
(110152, 90344, 'en', 'name', 'Citizen Schools North Carolina'),
(110153, 90345, 'no_lang_code', 'name', 'Vindico Pharmaceuticals (United States)'),
(110154, 90346, 'en', 'name', 'Agency for Science, Technology and Research'),
(110155, 90346, 'zh', 'name', 'ę–°åŠ å”ē§‘ęŠ€ē ”ē©¶å±€'),
(110156, 90347, 'fr', 'name', 'Mécanismes de Tumorigenèse et Thérapies Ciblées'),
(110157, 90348, 'en', 'name', 'AGSB University'),
(110158, 90349, 'es', 'name', 'Centro Universitario Allende'),
(110159, 90350, 'en', 'name', 'IARIA'),
(110160, 90351, 'es', 'name', 'Departamento Universitario Obrero Campesino'),
(110161, 90352, 'en', 'name', 'Edenton Chowan School District'),
(110162, 90353, 'en', 'name', 'LearningSpring Elementary School'),
(110163, 90354, 'en', 'name', 'Shanghai Open University'),
(110164, 90354, 'zh', 'name', 'äøŠęµ·å¼€ę”¾å¤§å­¦'),
(110165, 90355, 'en', 'name', 'St. Joseph Regional Medical Center'),
(110166, 90356, 'en', 'name', 'Jacobi Medical Center'),
(110167, 90357, 'en', 'name', 'West Coast University – Panama'),
(110168, 90358, 'en', 'name', 'Open University of West Africa'),
(110169, 90359, 'en', 'name', 'Center for Molecular Dynamics - Nepal'),
(110170, 90360, 'en', 'name', 'Hinchingbrooke Health Care NHS Trust'),
(110171, 90361, 'no_lang_code', 'name', 'Bouwcentrum (Netherlands)'),
(110172, 90362, 'no_lang_code', 'name', 'Sigma Research (United States)'),
(110173, 90363, 'no_lang_code', 'name', 'Chiaro Technologies (United States)'),
(110174, 90364, 'es', 'name', 'Universidad Peruana de Integración Global'),
(110175, 90365, 'en', 'name', 'Children''s Hospital Central California'),
(110176, 90366, 'en', 'name', 'Angiogenesis and Cancer Microenvironment Laboratory'),
(110177, 90367, 'en', 'name', 'Beaumont Eye Institute'),
(110178, 90368, 'en', 'name', 'Mercy''s Wing Foundation'),
(110179, 90369, 'es', 'name', 'Universidad Libre de MĆŗsica'),
(110180, 90369, 'pt', 'name', 'Universidade Livre de MĆŗsica'),
(110181, 90370, 'no_lang_code', 'name', 'Biophy Research (France)'),
(110182, 90371, 'en', 'name', 'Metropolitan Hospital Central Division'),
(110183, 90372, 'en', 'name', 'Lane County Department of Youth Services'),
(110184, 90373, 'no_lang_code', 'name', 'Archimedes International (Cyprus)'),
(110185, 90374, 'no_lang_code', 'name', 'Geinsa (Panama)'),
(110186, 90375, 'ro', 'name', 'Universitatea Slavonă din Moldova'),
(110187, 90376, 'en', 'name', 'University of Wales Institute Cardiff'),
(110188, 90377, 'en', 'name', 'St. Petersburg Christian University'),
(110189, 90377, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ христианский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(110190, 90378, 'no_lang_code', 'name', 'DB Engineering & Consulting (Germany)'),
(110191, 90379, 'no_lang_code', 'name', 'Pareto BDM (Australia)'),
(110192, 90380, 'en', 'name', 'Hunan Communication Polytechnic'),
(110193, 90380, 'zh', 'name', 'ę¹–å—äŗ¤é€ščŒäøšęŠ€ęœÆå­¦é™¢'),
(110194, 90381, 'no_lang_code', 'name', 'TRW (United States)'),
(110195, 90382, 'en', 'name', 'Indian Society of Remote Sensing'),
(110196, 90383, 'no_lang_code', 'name', 'Raytheon Technologies (Finland)'),
(110197, 90384, 'en', 'name', 'Worldwide Protein Data Bank'),
(110198, 90385, 'en', 'name', '711th Human Performance Wing'),
(110199, 90386, 'en', 'name', 'Republican Specialized Scientific and Practical Medical Center of Oncology and Radiology');
INSERT INTO `ror_settings` VALUES
(110200, 90386, 'uz', 'name', 'Respublika ixtisoslashtirilgan onkologiya va radiologiya ilmiy-amaliy tibbiyot markazi'),
(110201, 90386, 'ru', 'name', 'Республиканский специализированный Š½Š°ŃƒŃ‡Š½Š¾-практический меГицинский центр онкологии Šø раГиологии'),
(110202, 90387, 'en', 'name', 'St. John''s College, Palayamkottai'),
(110203, 90387, 'ta', 'name', 'தூய ą®ÆąÆ‹ą®µą®¾ą®©ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ, ą®Ŗą®¾ą®³ąÆˆą®Æą®™ąÆą®•ąÆ‹ą®ŸąÆą®ŸąÆˆ'),
(110204, 90388, 'en', 'name', 'Milken Institute'),
(110205, 90389, 'en', 'name', 'Third People''s Hospital of Hangzhou'),
(110206, 90389, 'zh', 'name', 'ę­å·žåø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(110207, 90390, 'de', 'name', 'Deutsches Herzzentrum der CharitƩ'),
(110208, 90390, 'en', 'name', 'German Heart Center Berlin'),
(110209, 90391, 'en', 'name', 'Fiona Stanley Fremantle Hospitals Group'),
(110210, 90392, 'en', 'name', 'Naval Research Laboratory Marine Meteorology Division'),
(110211, 90393, 'es', 'name', 'SecretarĆ­a de la Defensa Nacional'),
(110212, 90394, 'en', 'name', 'Naval Research Laboratory Plasma Physics Division'),
(110213, 90395, 'no_lang_code', 'name', 'Loral (United States)'),
(110214, 90396, 'en', 'name', 'Helmholtz Institute for Translational Oncology Mainz'),
(110215, 90396, 'de', 'name', 'Helmholtz-Institut für Translationale Onkologie (HI-TRON, Mainz)'),
(110216, 90397, 'en', 'name', 'The Central Hospital of Enshi Tujia and Miao Autonomous Prefecture'),
(110217, 90397, 'zh', 'name', 'ę©ę–½åœŸå®¶ę—č‹—ę—č‡Ŗę²»å·žäø­åæƒåŒ»é™¢'),
(110218, 90398, 'en', 'name', 'Jinnah Sindh Medical University'),
(110219, 90398, 'ur', 'name', 'جناح سندھ Ł…ŪŒŚˆ ŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(110220, 90399, 'en', 'name', 'Systems Engineering Research Center'),
(110221, 90400, 'en', 'name', 'USC Institute for Creative Technologies'),
(110222, 90401, 'en', 'name', 'Naval Research Laboratory Electronics Science and Technology Division'),
(110223, 90402, 'it', 'name', 'Dipartimento federale dell''economia, della formazione e della ricerca'),
(110224, 90402, 'fr', 'name', 'DƩpartement fƩdƩral de l''Ʃconomie, de la formation et de la recherche'),
(110225, 90402, 'de', 'name', 'Eidgenössisches Departement für Wirtschaft, Bildung und Forschung'),
(110226, 90402, 'en', 'name', 'Federal Department of Economic Affairs, Education and Research'),
(110227, 90403, 'en', 'name', 'Naval Research Laboratory Information Technology Division'),
(110228, 90404, 'en', 'name', 'National Strategic Research Institute'),
(110229, 90405, 'en', 'name', 'Applied Research Laboratory for Intelligence and Security'),
(110230, 90406, 'en', 'name', 'U.S. Army Combat Capabilities Development Command Armaments Center'),
(110231, 90407, 'en', 'name', 'Dublin Institute of Technology'),
(110232, 90407, 'ga', 'name', 'Institiúid Teicneolaíochta Bhaile Átha Cliath'),
(110233, 90408, 'en', 'name', 'The Velux Foundations'),
(110234, 90409, 'sr', 'name', 'Institut tehničkih nauka SANU'),
(110235, 90409, 'en', 'name', 'Institute of Technical Sciences of SASA'),
(110236, 90410, 'de', 'name', 'WüSpace e.V.'),
(110237, 90411, 'no_lang_code', 'name', 'Raytheon Technologies (Singapore)'),
(110238, 90412, 'fr', 'name', 'CIGRE'),
(110239, 90413, 'en', 'name', 'Combat Capabilities Development Command Soldier Center'),
(110240, 90414, 'en', 'name', 'Ollscoil na Gaillimhe – University of Galway'),
(110241, 90415, 'en', 'name', 'Johns Hopkins University School of Medicine'),
(110242, 90416, 'en', 'name', 'Naval Research Laboratory Ocean Sciences Division'),
(110243, 90417, 'no_lang_code', 'name', 'Kurchatov Institute'),
(110244, 90417, 'ru', 'name', 'ŠšŃƒŃ€Ń‡Š°Ń‚Š¾Š²ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(110245, 90418, 'no_lang_code', 'name', 'Metafinanz'),
(110246, 90419, 'en', 'name', 'Applied Research Laboratories, The University of Texas at Austin'),
(110247, 90420, 'es', 'name', 'Real Sociedad EspaƱola de Fƭsica'),
(110248, 90421, 'no_lang_code', 'name', 'NKGen Biotech Inc. (United States)'),
(110249, 90422, 'en', 'name', 'Good Samaritan Medical Center'),
(110250, 90423, 'en', 'name', 'Rottnest Island Nursing Post'),
(110251, 90424, 'en', 'name', 'Georgia Tech Research Institute'),
(110252, 90425, 'en', 'name', 'National Academy of Psychology'),
(110253, 90426, 'es', 'name', 'Hospital Militar Regional de Especialidades Guadalajara'),
(110254, 90427, 'en', 'name', 'German Science and Humanities Council'),
(110255, 90427, 'de', 'name', 'Wissenschaftsrat'),
(110256, 90428, 'en', 'name', 'Naval Research Laboratory Spacecraft Engineering Division'),
(110257, 90429, 'no_lang_code', 'name', 'Xiyuan Hospital'),
(110258, 90429, 'zh', 'name', 'äø­å›½äø­åŒ»ē§‘å­¦é™¢č„æč‹‘åŒ»é™¢'),
(110259, 90430, 'en', 'name', 'Naval Research Laboratory Chemistry Division'),
(110260, 90431, 'en', 'name', 'Institute for Surface Chemistry'),
(110261, 90431, 'sv', 'name', 'Ytkemiska Institutet'),
(110262, 90432, 'en', 'name', 'Queen Elizabeth II Health Sciences Centre'),
(110263, 90433, 'no_lang_code', 'name', 'Ford Aerospace (United States)'),
(110264, 90434, 'it', 'name', 'Istituto Avventista Villa Aurora'),
(110265, 90435, 'de', 'name', 'Bundesministerium für Familien und Jugend'),
(110266, 90435, 'en', 'name', 'Federal Ministry of Families and Youth'),
(110267, 90436, 'en', 'name', 'Geophysical Detection of Nuclear Proliferation'),
(110268, 90437, 'en', 'name', 'Breakthrough Discoveries for thriving with Bipolar Disorder'),
(110269, 90438, 'pt', 'name', 'Academia de CiĆŖncias da Bahia'),
(110270, 90439, 'en', 'name', 'Ministry of Education, Science, Research and Sport of the Slovak Republic'),
(110271, 90440, 'sr', 'name', 'Elektrotehnički institut Nikola Tesla'),
(110272, 90440, 'en', 'name', 'The Nikola Tesla Institute of Electrical Engineering'),
(110273, 90441, 'no_lang_code', 'name', 'Institut za povrtarstvo Smederevska Palanka'),
(110274, 90441, 'en', 'name', 'Institute for Vegetable Crops'),
(110275, 90442, 'en', 'name', 'Komarov Botanical Institute of the Russian Academy of Sciences'),
(110276, 90442, 'ru', 'name', 'Ботанический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.Š›. ŠšŠ¾Š¼Š°Ń€Š¾Š²Š° Российской акаГемии наук'),
(110277, 90443, 'no_lang_code', 'name', 'Altice Portugal (Portugal)'),
(110278, 90444, 'en', 'name', 'NERC Environmental Omics Facility'),
(110279, 90445, 'en', 'name', 'Rockingham General Hospital'),
(110280, 90446, 'es', 'name', 'Banco Central de Chile'),
(110281, 90447, 'no_lang_code', 'name', 'Raytheon Technologies (Poland)'),
(110282, 90448, 'no_lang_code', 'name', 'Gamma Reality (United States)'),
(110283, 90449, 'en', 'name', 'Jinan Central Hospital'),
(110284, 90449, 'zh', 'name', 'ęµŽå—åø‚äø­åæƒåŒ»é™¢'),
(110285, 90450, 'en', 'name', 'Utah State University Space Dynamics Laboratory'),
(110286, 90451, 'en', 'name', 'Naval Research Laboratory Laboratories for Computational Physics & Fluid Dynamics'),
(110287, 90452, 'no_lang_code', 'name', 'Raytheon Technologies (United Kingdom)'),
(110288, 90453, 'en', 'name', 'Honolulu Star Advertiser'),
(110289, 90454, 'no_lang_code', 'name', 'Abbott (Spain)'),
(110290, 90455, 'en', 'name', 'Yixing People''s Hospital'),
(110291, 90455, 'zh', 'name', 'å®œå…“åø‚äŗŗę°‘åŒ»é™¢'),
(110292, 90456, 'en', 'name', 'Mangalmay Institute of Management and Technology'),
(110293, 90457, 'en', 'name', 'Mental Health Research Institute'),
(110294, 90458, 'no_lang_code', 'name', 'Hedgefog Research (United States)'),
(110295, 90459, 'en', 'name', 'National Centre for Nuclear Research'),
(110296, 90460, 'en', 'name', 'Applied Research Laboratory at the University of Hawaiā€˜i'),
(110297, 90461, 'en', 'name', 'Shandong First Medical University'),
(110298, 90461, 'zh', 'name', 'å±±äøœē¬¬äø€åŒ»ē§‘å¤§å­¦'),
(110299, 90462, 'en', 'name', 'U.S. Army Combat Capabilities Development Command Chemical Biological Center'),
(110300, 90463, 'no_lang_code', 'name', 'Confederação Nacional da Indústria (Brazil)'),
(110301, 90464, 'es', 'name', 'Centro Científico Tecnológico - Tandil'),
(110302, 90465, 'en', 'name', 'Applied Research Laboratory at Penn State'),
(110303, 90466, 'en', 'name', 'Second People''s Hospital of Yunnan Province'),
(110304, 90466, 'zh', 'name', 'äŗ‘å—ēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(110305, 90467, 'en', 'name', 'CRC183 - Entangled States of Matter'),
(110306, 90468, 'no_lang_code', 'name', 'Raytheon Technologies (Netherlands)'),
(110307, 90469, 'en', 'name', 'Fifth Hospital In Wuhan'),
(110308, 90469, 'zh', 'name', 'ę­¦ę±‰åø‚ē¬¬äŗ”åŒ»é™¢'),
(110309, 90470, 'es', 'name', 'Fundación Flores'),
(110310, 90471, 'en', 'name', 'Pattern Institute'),
(110311, 90472, 'no_lang_code', 'name', 'British Power International (United Kingdom)'),
(110312, 90473, 'en', 'name', 'Armadale Health Service'),
(110313, 90474, 'de', 'name', 'Translationale Onkologie an der UniversitƤtsmedizin der Johannes Gutenberg-UniversitƤt Mainz'),
(110314, 90475, 'en', 'name', 'Naval Research Laboratory Space Science Division'),
(110315, 90476, 'en', 'name', 'National University of Ireland, Maynooth'),
(110316, 90476, 'fy', 'name', 'Ollscoil na hƉireann MĆ” Nuad'),
(110317, 90477, 'en', 'name', 'Naval Research Laboratory Acoustics Division'),
(110318, 90478, 'no_lang_code', 'name', 'Raytheon Technologies (Australia)'),
(110319, 90479, 'no_lang_code', 'name', 'Raytheon Technologies (Italy)'),
(110320, 90480, 'en', 'name', 'National University of La Matanza'),
(110321, 90480, 'es', 'name', 'Universidad Nacional de La Matanza'),
(110322, 90481, 'no_lang_code', 'name', 'Nokia (Finland)'),
(110323, 90481, 'fi', 'name', 'Nokia Oyj'),
(110324, 90482, 'en', 'name', 'Kalamunda Hospital'),
(110325, 90483, 'en', 'name', 'Fisheries Research Services'),
(110326, 90484, 'fr', 'name', 'Centre FranƧois Baclesse'),
(110327, 90485, 'fr', 'name', 'Agence Nationale pour la Gestion des DƩchets Radioactifs'),
(110328, 90486, 'en', 'name', 'U.S. Army Space and Missile Defense Command Technical Center'),
(110329, 90487, 'no_lang_code', 'name', 'Raytheon Technologies (Canada)'),
(110330, 90488, 'no_lang_code', 'name', 'Raytheon Technologies (France)'),
(110331, 90489, 'en', 'name', 'Kwinana Community Health'),
(110332, 90490, 'it', 'name', 'Istituto nazionale per l’analisi delle politiche pubbliche'),
(110333, 90490, 'en', 'name', 'National Institute for Public Policy Analysis'),
(110334, 90491, 'no_lang_code', 'name', 'Loral Space & Communications (United States)'),
(110335, 90492, 'en', 'name', 'Swedish Institute of Computer Science'),
(110336, 90493, 'en', 'name', 'Naval Research Laboratory Center for Bio/Molecular Science and Engineering'),
(110337, 90494, 'fr', 'name', 'Institut de recherche de l''hƓpital d''Ottawa'),
(110338, 90494, 'en', 'name', 'Ottawa Hospital Research Institute'),
(110339, 90495, 'en', 'name', 'Mandurah Community Health Centre'),
(110340, 90496, 'en', 'name', 'Murray District Hospital'),
(110341, 90497, 'en', 'name', 'Institute of Otolaryngology named after Prof. A.I. Kolomiychenko of the National Academy of Medical Sciences of Ukraine'),
(110342, 90497, 'uk', 'name', 'ДУ ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ отоларингології ім. проф. Šž.Š”.ŠšŠ¾Š»Š¾Š¼Ń–Š¹Ń‡ŠµŠ½ŠŗŠ° ŠŠŠœŠ Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(110343, 90498, 'fr', 'name', 'SecrĆ©tariat d''Ɖtat Ć  la formation, Ć  la recherche et Ć  l''innovation'),
(110344, 90498, 'it', 'name', 'Segreteria di Stato per la formazione, la ricerca e l''innovazione'),
(110345, 90498, 'de', 'name', 'Staatssekretariat für Bildung, Forschung und Innovation'),
(110346, 90498, 'en', 'name', 'State Secretariat for Education, Research and Innovation'),
(110347, 90499, 'en', 'name', 'University Medical Center of the Johannes Gutenberg University Mainz'),
(110348, 90499, 'de', 'name', 'UniversitƤtsmedizin der Johannes Gutenberg-UniversitƤt Mainz'),
(110349, 90500, 'de', 'name', 'Klinikum Chemnitz'),
(110350, 90501, 'en', 'name', 'Geotechnical and Structures Laboratory'),
(110351, 90502, 'en', 'name', 'NOAA Center for Operational Oceanographic Products & Services'),
(110352, 90503, 'en', 'name', 'Institute of Gastroenterology of the National Academy of Medical Sciences of Ukraine'),
(110353, 90503, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гастроентерології ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України'),
(110354, 90504, 'en', 'name', 'Shenzhen MSU-BIT University'),
(110355, 90504, 'ru', 'name', 'Университет ŠœŠ“Š£-ППИ в ŠØŃŠ½ŃŒŃ‡Š¶ŃŠ½Šµ'),
(110356, 90504, 'zh', 'name', 'ę·±åœ³åŒ—ē†čŽ«ę–Æē§‘å¤§å­¦'),
(110357, 90505, 'no_lang_code', 'name', 'Raytheon Technologies (Germany)'),
(110358, 90506, 'es', 'name', 'Laboratorio de Investigación Naval de los Estados Unidos'),
(110359, 90506, 'en', 'name', 'United States Naval Research Laboratory'),
(110360, 90507, 'no_lang_code', 'name', 'ARES (United States)'),
(110361, 90508, 'no_lang_code', 'name', 'Cihan University Sulaimaniya'),
(110362, 90508, 'ar', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ Ų¬ŪŒŁ‡Ų§Ł† Ų³Ł„ŪŽŁ…Ų§Ł†ŪŒ'),
(110363, 90509, 'de', 'name', 'Deutsche Gesellschaft für Luft- und Raumfahrt - Lilienthal-Oberth e.V.'),
(110364, 90509, 'en', 'name', 'German Society for Aeronautics and Astronautics'),
(110365, 90510, 'en', 'name', 'New York University School of Medicine'),
(110366, 90511, 'en', 'name', 'Naval Research Laboratory Remote Sensing Division'),
(110367, 90512, 'en', 'name', 'NOAA National Marine Fisheries Service Northeast Fisheries Science Center'),
(110368, 90513, 'en', 'name', 'Washington Hospital'),
(110369, 90514, 'en', 'name', 'Nova Scotia Health Authority'),
(110370, 90515, 'en', 'name', 'Naval Research Laboratory Optical Sciences Division'),
(110371, 90516, 'en', 'name', 'Dr. Shroff’s Charity Eye Hospital'),
(110372, 90517, 'en', 'name', 'Danish Agency for Science and Higher Education'),
(110373, 90518, 'en', 'name', 'Open Library Foundation'),
(110374, 90519, 'en', 'name', 'Naval Research Laboratory Materials Science and Technology Division'),
(110375, 90520, 'en', 'name', 'Rockingham Peel Group'),
(110376, 90521, 'en', 'name', 'Naval Research Laboratory Radar Division'),
(110377, 90522, 'en', 'name', 'Cold Regions Research and Engineering Laboratory'),
(110378, 90523, 'en', 'name', 'Aichi Kidney Foundation'),
(110379, 90523, 'ja', 'name', 'ę„›ēŸ„č…Žč‡“č²”å›£'),
(110380, 90524, 'en', 'name', 'Mwanza University'),
(110381, 90525, 'no_lang_code', 'name', 'Goodyear Aerospace (United States)'),
(110382, 90526, 'no_lang_code', 'name', 'Collins Aerospace (United States)'),
(110383, 90527, 'en', 'name', 'Institute for Collaborative Biotechnologies'),
(110384, 90528, 'en', 'name', 'Naval Research Laboratory Space Systems Development Division'),
(110385, 90529, 'en', 'name', 'Prince William Sound Science Center'),
(110386, 90530, 'en', 'name', 'Office of the Governor State of California'),
(110387, 90531, 'az', 'name', 'Azərbaycan Texnologiya Universiteti'),
(110388, 90531, 'en', 'name', 'University of Technology of Azerbaijan'),
(110389, 90531, 'ru', 'name', 'АзербайГжанский Технологический Университет'),
(110390, 90532, 'en', 'name', 'Montana Fish, Wildlife & Parks'),
(110391, 90533, 'en', 'name', 'DKMS Foundation'),
(110392, 90534, 'en', 'name', 'Federal University of Rio Grande'),
(110393, 90534, 'pt', 'name', 'Universidade Federal do Rio Grande'),
(110394, 90535, 'en', 'name', 'Earthwatch Europe'),
(110395, 90536, 'en', 'name', 'University of Maryland Center for Environmental Science'),
(110396, 90537, 'en', 'name', 'Janelia Research Campus'),
(110397, 90538, 'es', 'name', 'Universidad de Puerto Rico en Arecibo'),
(110398, 90538, 'en', 'name', 'University of Puerto Rico at Arecibo'),
(110399, 90539, 'en', 'name', 'Global Crop Diversity Trust'),
(110400, 90540, 'no_lang_code', 'name', 'United Technologies (United States)'),
(110401, 90541, 'en', 'name', 'Federal University of Alfenas'),
(110402, 90541, 'pt', 'name', 'Universidade Federal de Alfenas'),
(110403, 90542, 'no_lang_code', 'name', 'Lockheed Martin (United States)'),
(110404, 90543, 'en', 'name', 'Federal Institute of Education, Science and Technology of Minas Gerais'),
(110405, 90543, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Minas Gerais'),
(110406, 90544, 'ro', 'name', 'Ministerul Cercetării și Inovării'),
(110407, 90544, 'en', 'name', 'Ministry of Research and Innovation'),
(110408, 90545, 'id', 'name', 'Institut Teknologi Dan Bisnis STIKOM Bali'),
(110409, 90546, 'no_lang_code', 'name', 'Allied Corporation (United States)'),
(110410, 90547, 'en', 'name', 'State University of Feira de Santana'),
(110411, 90547, 'pt', 'name', 'Universidade Estadual de Feira de Santana'),
(110412, 90548, 'no_lang_code', 'name', 'Showa Denko Materials Co., Ltd. (Japan)'),
(110413, 90548, 'ja', 'name', 'ę˜­å’Œé›»å·„ćƒžćƒ†ćƒŖć‚¢ćƒ«ć‚ŗę Ŗå¼ä¼šē¤¾'),
(110414, 90549, 'pt', 'name', 'Fundação Lemann'),
(110415, 90549, 'en', 'name', 'The Lemann Foundation'),
(110416, 90550, 'en', 'name', 'Canadian Statistical Sciences Institute'),
(110417, 90550, 'fr', 'name', 'Institut Canadien des Sciences Statistiques'),
(110418, 90551, 'en', 'name', 'KBase'),
(110419, 90552, 'en', 'name', 'Mato Grosso do Sul State University'),
(110420, 90552, 'pt', 'name', 'Universidade Estadual de Mato Grosso do Sul'),
(110421, 90553, 'en', 'name', 'Excelia Business School'),
(110422, 90554, 'cs', 'name', 'Alzheimer Nadačnƭ Fond'),
(110423, 90554, 'en', 'name', 'Czech Alzheimer''s Foundation'),
(110424, 90555, 'en', 'name', 'Phillips Laboratory'),
(110425, 90556, 'en', 'name', 'Rose Hills Foundation'),
(110426, 90557, 'en', 'name', 'Federal University of Triângulo Mineiro'),
(110427, 90557, 'pt', 'name', 'Universidade Federal do Triângulo Mineiro'),
(110428, 90558, 'en', 'name', 'Western Association of Fish and Wildlife Agencies'),
(110429, 90559, 'no_lang_code', 'name', 'Lockheed Missiles and Space Company (United States)'),
(110430, 90560, 'en', 'name', 'VNU Science and Technology Development Fund'),
(110431, 90561, 'en', 'name', 'Cluster of Excellence on Plant Sciences'),
(110432, 90561, 'de', 'name', 'Exzellenzcluster für Pflanzenwissenschaften'),
(110433, 90562, 'en', 'name', 'Shirley Ryan AbilityLab'),
(110434, 90563, 'en', 'name', 'Federal University of Para'),
(110435, 90563, 'pt', 'name', 'Universidade Federal do ParĆ”'),
(110436, 90564, 'pt', 'name', 'Hospital UniversitƔrio de Brasƭlia'),
(110437, 90565, 'no_lang_code', 'name', 'Empresas PĆŗblicas de MedellĆ­n (Colombia)'),
(110438, 90566, 'en', 'name', 'Federal Institute of Education, Science and Technology of Triângulo Mineiro'),
(110439, 90566, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Triângulo Mineiro'),
(110440, 90567, 'no_lang_code', 'name', 'Pratt & Whitney (United States)'),
(110441, 90568, 'no_lang_code', 'name', 'Dow Chemical (United States)'),
(110442, 90569, 'en', 'name', 'Federal University of RondƓnia'),
(110443, 90569, 'pt', 'name', 'Universidade Federal de RondƓnia'),
(110444, 90570, 'es', 'name', 'Colciencias'),
(110445, 90571, 'en', 'name', 'Liaoning Cancer Hospital & Institute'),
(110446, 90572, 'en', 'name', 'Royal Government of Bhutan'),
(110447, 90573, 'en', 'name', 'Cooperative Programs for the Advancement of Earth system science'),
(110448, 90574, 'en', 'name', 'Canadian Lyme Disease Foundation'),
(110449, 90574, 'fr', 'name', 'Fondation canadienne de la maladie de Lyme'),
(110450, 90575, 'no_lang_code', 'name', 'Union Carbide (United States)'),
(110451, 90576, 'en', 'name', 'BIO5 Institute'),
(110452, 90577, 'pt', 'name', 'Hospital UniversitÔrio da Universidade Federal do Maranhão'),
(110453, 90578, 'en', 'name', 'New York State Psychiatric Institute'),
(110454, 90579, 'da', 'name', 'Landbrugsstyrelsen'),
(110455, 90580, 'en', 'name', 'Indian Institute of Science Education and Research, Tirupati'),
(110456, 90581, 'en', 'name', 'Toho University'),
(110457, 90581, 'ja', 'name', 'ę±é‚¦å¤§å­¦'),
(110458, 90582, 'en', 'name', 'Federal University of Rio de Janeiro'),
(110459, 90582, 'pt', 'name', 'Universidade Federal do Rio de Janeiro'),
(110460, 90583, 'en', 'name', 'Krembil Brain Institute'),
(110461, 90584, 'en', 'name', 'Henan Provincial Department of Human Resources and Social Security'),
(110462, 90584, 'zh', 'name', 'ę²³å—ēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(110463, 90585, 'no_lang_code', 'name', 'Raytheon (United States)'),
(110464, 90586, 'no_lang_code', 'name', 'British Aerospace (United Kingdom)'),
(110465, 90587, 'en', 'name', 'Federal Institute of Education, Science and Technology of ParĆ”'),
(110466, 90587, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do ParÔ'),
(110467, 90588, 'en', 'name', 'Krembil Research Institute'),
(110468, 90589, 'en', 'name', 'Rajiv Gandhi Centre for Biotechnology'),
(110469, 90590, 'no_lang_code', 'name', 'Lockheed (United States)'),
(110470, 90591, 'en', 'name', 'National Heart Lung and Blood Institute'),
(110471, 90592, 'en', 'name', 'Wright Laboratory'),
(110472, 90593, 'no_lang_code', 'name', 'Litton Industries (United States)'),
(110473, 90594, 'en', 'name', 'KITE Research Institute'),
(110474, 90595, 'no_lang_code', 'name', 'Douglas Aircraft (United States)'),
(110475, 90596, 'en', 'name', 'Palestine Technical University - Kadoorie'),
(110476, 90596, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁŁ„Ų³Ų·ŁŠŁ† Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© - خضوري'),
(110477, 90597, 'en', 'name', 'Defense Threat Reduction Agency'),
(110478, 90598, 'en', 'name', 'Federal University of Pernambuco'),
(110479, 90598, 'pt', 'name', 'Universidade Federal de Pernambuco'),
(110480, 90599, 'en', 'name', 'Society for Integrative and Comparative Biology'),
(110481, 90600, 'pt', 'name', 'Hospital UniversitƔrio Regional do Norte do ParanƔ'),
(110482, 90601, 'en', 'name', 'MakeWay'),
(110483, 90602, 'id', 'name', 'Politeknik Negeri Semarang'),
(110484, 90603, 'no_lang_code', 'name', 'Hughes Aircraft (United States)'),
(110485, 90604, 'en', 'name', 'Erell Institute'),
(110486, 90605, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Brasília'),
(110487, 90606, 'nl', 'name', 'Uyttenboogaart-Eliasen Stichting'),
(110488, 90607, 'en', 'name', 'American Research Institute of the South Caucasus'),
(110489, 90608, 'en', 'name', 'Missouri Department of Conservation'),
(110490, 90609, 'en', 'name', 'National Heart, Lung, and Blood Institute Division of Intramural Research'),
(110491, 90610, 'no_lang_code', 'name', 'McDonnel Douglas (United States)'),
(110492, 90611, 'en', 'name', 'Department of Mathematical Sciences'),
(110493, 90612, 'en', 'name', 'International Centre for Climate Change and Development'),
(110494, 90613, 'en', 'name', 'Federal University of Roraima'),
(110495, 90613, 'pt', 'name', 'Universidade Federal de Roraima'),
(110496, 90614, 'pt', 'name', 'Universidade do Estado do Amazonas'),
(110497, 90615, 'en', 'name', 'New Mansoura University'),
(110498, 90615, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŲµŁˆŲ±Ų© Ų§Ł„Ų¬ŲÆŁŠŲÆŲ©'),
(110499, 90616, 'no_lang_code', 'name', 'Tennet (Netherlands)'),
(110500, 90617, 'en', 'name', 'Federal University of Maranhão'),
(110501, 90617, 'pt', 'name', 'Universidade Federal do Maranhão'),
(110502, 90618, 'no_lang_code', 'name', 'GTE (United States)'),
(110503, 90619, 'en', 'name', 'The Darwin Trust of Edinburgh'),
(110504, 90620, 'en', 'name', 'Upgrad (India)'),
(110505, 90621, 'no_lang_code', 'name', 'LIDSEN Publishing Inc. (United States)'),
(110506, 90622, 'no_lang_code', 'name', 'Orbital ATK (United States)'),
(110507, 90623, 'no_lang_code', 'name', 'Evident Corporation (Japan)'),
(110508, 90624, 'en', 'name', 'Southwestern Medical Center'),
(110509, 90625, 'en', 'name', 'North Pacific International University of Bangladesh'),
(110510, 90626, 'en', 'name', 'Federal University of Alagoas'),
(110511, 90626, 'pt', 'name', 'Universidade Federal de Alagoas'),
(110512, 90627, 'no_lang_code', 'name', 'Marconi Electronic Systems (United Kingdom)'),
(110513, 90628, 'en', 'name', 'State University of Ponta Grossa'),
(110514, 90628, 'pt', 'name', 'Universidade Estadual de Ponta Grossa'),
(110515, 90629, 'en', 'name', 'Partnership for Observation of the Global Ocean'),
(110516, 90630, 'en', 'name', 'Dom Bosco Catholic University'),
(110517, 90630, 'pt', 'name', 'Universidade Católica Dom Bosco'),
(110518, 90631, 'no_lang_code', 'name', 'McDonnel Aircraft (United States)'),
(110519, 90632, 'no_lang_code', 'name', 'Brandon Roberts + Associates (United States)'),
(110520, 90633, 'en', 'name', 'Donald K. Johnson Eye Institute'),
(110521, 90634, 'pt', 'name', 'Hospital SĆ£o Lucas da PUCRS'),
(110522, 90635, 'id', 'name', 'Politeknik Energi dan Mineral Akamigas'),
(110523, 90636, 'en', 'name', 'Danish Ministry of Environment and Food'),
(110524, 90636, 'da', 'name', 'MiljĆø- og FĆødevareministeriet'),
(110525, 90637, 'no_lang_code', 'name', 'Combustion Research and Flow Technology (United States)'),
(110526, 90638, 'no_lang_code', 'name', 'Showa Denko (Japan)'),
(110527, 90638, 'ja', 'name', 'ę˜­å’Œé›»å·„ę Ŗå¼ä¼šē¤¾'),
(110528, 90639, 'en', 'name', 'Bahia State University'),
(110529, 90639, 'pt', 'name', 'Universidade do Estado da Bahia'),
(110530, 90640, 'en', 'name', 'Bentham-Moxon Trust'),
(110531, 90641, 'en', 'name', 'State University of ParĆ”'),
(110532, 90641, 'pt', 'name', 'Universidade do Estado do ParĆ”'),
(110533, 90642, 'no_lang_code', 'name', 'Martin Marietta (United States)'),
(110534, 90643, 'pt', 'name', 'Escola Nacional de SaĆŗde PĆŗblica'),
(110535, 90644, 'en', 'name', 'Catholic University of Pernambuco'),
(110536, 90644, 'pt', 'name', 'Universidade Católica de Pernambuco'),
(110537, 90645, 'en', 'name', 'Federal University of Technology of ParanĆ”'),
(110538, 90645, 'pt', 'name', 'Universidade Tecnológica Federal do ParanÔ'),
(110539, 90646, 'en', 'name', 'Southern African Science Service Centre for Climate Change and Adaptive Land Management'),
(110540, 90647, 'en', 'name', 'Royal Botanic Gardens, Kew'),
(110541, 90648, 'en', 'name', 'State University of Santa Cruz'),
(110542, 90648, 'pt', 'name', 'Universidade Estadual de Santa Cruz'),
(110543, 90649, 'de', 'name', 'Nuklearmedizinische Klinik des Klinikums rechts der Isar'),
(110544, 90650, 'en', 'name', 'Hebei University of Economics and Business'),
(110545, 90650, 'zh', 'name', 'ę²³åŒ—ē»č“øå¤§å­¦'),
(110546, 90651, 'de', 'name', 'Frauenklinik der Technischen Universität München'),
(110547, 90652, 'en', 'name', 'Armstrong Laboratory'),
(110548, 90653, 'no_lang_code', 'name', 'Olympus (Japan)'),
(110549, 90653, 'ja', 'name', 'ć‚ŖćƒŖćƒ³ćƒ‘ć‚¹ę Ŗå¼ä¼šē¤¾'),
(110550, 90654, 'en', 'name', 'Valleywise Health'),
(110551, 90655, 'en', 'name', 'Bureau of Educational and Cultural Affairs'),
(110552, 90656, 'en', 'name', 'Federal Institute of Education, Science and Technology of Baiano'),
(110553, 90656, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia Baiano'),
(110554, 90657, 'en', 'name', 'Colorado Agricultural Experiment Station'),
(110555, 90658, 'en', 'name', 'State University of MaringĆ”'),
(110556, 90658, 'pt', 'name', 'Universidade Estadual de MaringĆ”'),
(110557, 90659, 'no_lang_code', 'name', '2i2c'),
(110558, 90660, 'nl', 'name', 'Gieskes-Strijbis Fonds'),
(110559, 90661, 'en', 'name', 'Federal University of Tocantins'),
(110560, 90661, 'pt', 'name', 'Universidade Federal do Tocantins'),
(110561, 90662, 'en', 'name', 'Federal University of RecƓncavo da Bahia'),
(110562, 90662, 'pt', 'name', 'Universidade Federal do RecƓncavo da Bahia'),
(110563, 90663, 'en', 'name', 'South Dakota School of Mines and Technology'),
(110564, 90664, 'pt', 'name', 'Universidade Estadual da Zona Oeste'),
(110565, 90665, 'pt', 'name', 'MapBiomas'),
(110566, 90666, 'no_lang_code', 'name', 'Sulkhan-Saba Orbeliani University'),
(110567, 90666, 'ka', 'name', 'ეულხან-įƒ”įƒįƒ‘įƒ įƒįƒ įƒ‘įƒ”įƒšįƒ˜įƒįƒœįƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(110568, 90667, 'no_lang_code', 'name', 'Orbital Sciences (United States)'),
(110569, 90668, 'en', 'name', 'North Carolina Department of Environmental Quality'),
(110570, 90669, 'en', 'name', 'Institute for Theoretical Physics and Modeling'),
(110571, 90669, 'hy', 'name', 'ÕÕ„Õ½Õ”ÕÆÕ”Õ¶ Õ–Õ«Õ¦Õ«ÕÆÕ”ÕµÕ« և Õ„ÕøÕ¤Õ„Õ¬Õ”Õ¾ÕøÖ€Õ“Õ”Õ¶ Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(110572, 90670, 'en', 'name', 'Alaska Department of Transportation and Public Facilities'),
(110573, 90671, 'en', 'name', 'University of Puerto Rico at Ponce'),
(110574, 90672, 'en', 'name', 'Federal University of Southern and Southeastern ParĆ”'),
(110575, 90672, 'pt', 'name', 'Universidade Federal do Sul e Sudeste do ParĆ”'),
(110576, 90673, 'fr', 'name', 'UniversitƩ Internationale Abulcasis des Sciences de la SantƩ'),
(110577, 90673, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ł‡Ų±Ų§ŁˆŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ų¹Ł„ŁˆŁ… الصحة'),
(110578, 90674, 'es', 'name', 'Prisma'),
(110579, 90675, 'en', 'name', 'Hazrat-e Masoumeh University'),
(110580, 90675, 'fa', 'name', 'دانؓگاه Ų­Ų¶Ų±ŲŖ Ł…Ų¹ŲµŁˆŁ…Ł‡'),
(110581, 90676, 'es', 'name', 'Instituto Universitario de Integración en la Comunidad'),
(110582, 90677, 'en', 'name', 'University Health Network'),
(110583, 90678, 'en', 'name', 'Federal University of the State of Rio de Janeiro'),
(110584, 90678, 'pt', 'name', 'Universidade Federal do Estado do Rio de Janeiro'),
(110585, 90679, 'en', 'name', 'Londrina State University'),
(110586, 90679, 'pt', 'name', 'Universidade Estadual de Londrina'),
(110587, 90680, 'en', 'name', 'New Zealand Antarctic Research Institute'),
(110588, 90681, 'en', 'name', 'Hellman Foundation'),
(110589, 90682, 'en', 'name', 'GoiƔs State University'),
(110590, 90682, 'pt', 'name', 'Universidade Estadual de GoiƔs'),
(110591, 90683, 'en', 'name', 'Fulbright Program'),
(110592, 90684, 'en', 'name', 'California Tomato Research Institute'),
(110593, 90685, 'no_lang_code', 'name', 'Bunker Ramo (United States)'),
(110594, 90686, 'pt', 'name', 'Hospital UniversitƔrio AntƓnio Pedro'),
(110595, 90687, 'pt', 'name', 'Hospital UniversitƔrio Clementino Fraga Filho'),
(110596, 90688, 'en', 'name', 'Sentinel North'),
(110597, 90688, 'fr', 'name', 'Sentinelle Nord'),
(110598, 90689, 'en', 'name', 'Catholic University of Petrópolis'),
(110599, 90689, 'pt', 'name', 'Universidade Católica de Petrópolis'),
(110600, 90690, 'en', 'name', 'Federal Rural University of Amazonia'),
(110601, 90690, 'pt', 'name', 'Universidade Federal Rural da AmazƓnia'),
(110602, 90691, 'en', 'name', 'Amphibian Ark'),
(110603, 90692, 'no_lang_code', 'name', 'Resonac (Japan)'),
(110604, 90692, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¬ć‚¾ćƒŠćƒƒć‚Æ'),
(110605, 90693, 'en', 'name', 'Bucharest Emergency University Hospital'),
(110606, 90693, 'ro', 'name', 'Spitalul Universitar de Urgenta Bucuresti'),
(110607, 90694, 'nl', 'name', 'Zuyderland Medisch Centrum'),
(110608, 90695, 'en', 'name', 'Lord Mayor’s Charitable Foundation'),
(110609, 90696, 'no_lang_code', 'name', 'Commonwealth Edison (United States)'),
(110610, 90697, 'no_lang_code', 'name', 'GEC (United Kingdom)'),
(110611, 90698, 'es', 'name', 'Universidad de Puerto Rico, Recinto de Ciencias MƩdicas'),
(110612, 90698, 'en', 'name', 'University of Puerto Rico, Medical Sciences Campus'),
(110613, 90699, 'en', 'name', 'Dubai Police Academy'),
(110614, 90699, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų“Ų±Ų·Ų© دبي'),
(110615, 90700, 'en', 'name', 'National Centre of Competence in Research Evolving Language'),
(110616, 90700, 'de', 'name', 'Nationale Forschungsschwerpunkt Evolving Language'),
(110617, 90700, 'fr', 'name', 'PƓle de Recherche National Evolving Language'),
(110618, 90701, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Pernambuco'),
(110619, 90701, 'en', 'name', 'Pernambuco Federal Institute'),
(110620, 90702, 'es', 'name', 'Ministerio de Educación y Cultura'),
(110621, 90703, 'pt', 'name', 'Universidade de ItaĆŗna'),
(110622, 90704, 'no_lang_code', 'name', 'Alliant Techsystems (United States)'),
(110623, 90705, 'pt', 'name', 'Hospital UniversitƔrio Onofre Lopes'),
(110624, 90706, 'en', 'name', 'Federal Ministry of Petroleum Resources'),
(110625, 90707, 'id', 'name', 'Institut Agama Islam Almuslim Aceh'),
(110626, 90708, 'en', 'name', 'University of Puerto Rico at Humacao'),
(110627, 90709, 'en', 'name', 'American Fisheries Society'),
(110628, 90710, 'en', 'name', 'Federal University of Bahia'),
(110629, 90710, 'pt', 'name', 'Universidade Federal da Bahia'),
(110630, 90711, 'en', 'name', 'California Strategic Growth Council'),
(110631, 90712, 'en', 'name', 'University of Puerto Rico at Cayey'),
(110632, 90713, 'pt', 'name', 'Universidade Estadual do Oeste do ParanĆ”'),
(110633, 90713, 'en', 'name', 'Western ParanĆ” State University'),
(110634, 90714, 'en', 'name', 'Federal University of Western Bahia'),
(110635, 90714, 'pt', 'name', 'Universidade Federal do Oeste da Bahia'),
(110636, 90715, 'en', 'name', 'Telford College'),
(110637, 90716, 'en', 'name', 'Texas Advanced Computing Center'),
(110638, 90717, 'en', 'name', 'Federal Office of Meteorology and Climatology MeteoSwiss'),
(110639, 90717, 'de', 'name', 'MeteoSchweiz'),
(110640, 90717, 'it', 'name', 'MeteoSvizzera'),
(110641, 90717, 'fr', 'name', 'MƩtƩoSuisse'),
(110642, 90718, 'en', 'name', 'Southwestern Medical Center'),
(110643, 90719, 'en', 'name', 'Bureau of International Narcotics and Law Enforcement Affairs'),
(110644, 90720, 'no_lang_code', 'name', 'GV20 Therapeutics (United States)'),
(110645, 90721, 'en', 'name', 'Federal University of Mato Grosso do Sul'),
(110646, 90721, 'pt', 'name', 'Universidade Federal de Mato Grosso do Sul'),
(110647, 90722, 'es', 'name', 'Instituto AntƔrtico Uruguayo'),
(110648, 90722, 'en', 'name', 'Uruguayan Antarctic Institute'),
(110649, 90723, 'en', 'name', 'Laboratories of Analytical Biology'),
(110650, 90724, 'en', 'name', 'AGE-WELL'),
(110651, 90725, 'en', 'name', 'White Rose East Asia Centre'),
(110652, 90726, 'no_lang_code', 'name', 'Knorr-Bremse (France)'),
(110653, 90727, 'en', 'name', 'Robert M. Fisher Memorial Foundation'),
(110654, 90728, 'en', 'name', 'PhRMA Foundation'),
(110655, 90729, 'pt', 'name', 'Universidade Estadual do ParanĆ”'),
(110656, 90730, 'es', 'name', 'Ministerio de Ciencia, Tecnología e Innovación'),
(110657, 90731, 'en', 'name', 'Rome Laboratory'),
(110658, 90732, 'no_lang_code', 'name', 'Boeing (United States)'),
(110659, 90733, 'en', 'name', 'Federal Institute of RondƓnia'),
(110660, 90733, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de RondÓnia'),
(110661, 90734, 'sv', 'name', 'Svensk biodiversitetsinfrastruktur'),
(110662, 90734, 'en', 'name', 'Swedish Biodiversity Data Infrastructure'),
(110663, 90735, 'no_lang_code', 'name', 'BDM International (United States)'),
(110664, 90736, 'pt', 'name', 'Instituto de BiofĆ­sica Carlos Chagas Filho'),
(110665, 90737, 'no_lang_code', 'name', 'BAE Systems (United Kingdom)'),
(110666, 90738, 'en', 'name', 'Fluminense Federal University'),
(110667, 90738, 'pt', 'name', 'Universidade Federal Fluminense'),
(110668, 90739, 'en', 'name', 'Munster Technological University'),
(110669, 90739, 'ga', 'name', 'Ollscoil TeicneolaĆ­ochta na Mumhan'),
(110670, 90740, 'en', 'name', 'The Dr. Mortimer and Theresa Sackler Foundation'),
(110671, 90741, 'es', 'name', 'Recinto Universitario de Mayagüez'),
(110672, 90741, 'en', 'name', 'University of Puerto Rico-Mayaguez'),
(110673, 90742, 'en', 'name', 'Federal University of PiauĆ­'),
(110674, 90742, 'pt', 'name', 'Universidade Federal do PiauĆ­'),
(110675, 90743, 'en', 'name', 'Ted Nash Long Life Foundation'),
(110676, 90744, 'en', 'name', 'Ministry of Education'),
(110677, 90744, 'pt', 'name', 'Ministério da Educação'),
(110678, 90745, 'en', 'name', 'BT Research'),
(110679, 90746, 'en', 'name', 'Royal Society of South Australia'),
(110680, 90747, 'no_lang_code', 'name', 'AlliedSignal (United States)'),
(110681, 90748, 'es', 'name', 'Escuela Superior PolitƩcnica del Chimborazo'),
(110682, 90749, 'en', 'name', 'Nigerian National Petroleum Company Limited'),
(110683, 90750, 'en', 'name', 'Federal University of Rio Grande do Norte'),
(110684, 90750, 'pt', 'name', 'Universidade Federal do Rio Grande do Norte'),
(110685, 90751, 'en', 'name', 'International Association for the Study of Popular Romance'),
(110686, 90752, 'no_lang_code', 'name', 'Philco-Ford (United States)'),
(110687, 90753, 'en', 'name', 'WCRP-CMIP International Project Office'),
(110688, 90754, 'en', 'name', 'Emory Global Health Institute'),
(110689, 90755, 'en', 'name', 'Federal University of AmapĆ”'),
(110690, 90755, 'pt', 'name', 'Universidade Federal do AmapĆ”'),
(110691, 90756, 'en', 'name', 'National Centre of Competence in Research Digital Fabrication'),
(110692, 90756, 'de', 'name', 'Nationaler Forschungsschwerpunkt Digitale Fabrikation'),
(110693, 90757, 'de', 'name', 'Deutsche Knochenmarkspenderdatei'),
(110694, 90758, 'en', 'name', 'Schroeder Arthritis Institute'),
(110695, 90759, 'sv', 'name', 'Stiftelsen Zoologisk Forskning'),
(110696, 90760, 'no_lang_code', 'name', 'Sandoz Group AG (Switzerland)'),
(110697, 90761, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Postes et des TĆ©lĆ©communications'),
(110698, 90762, 'no_lang_code', 'name', 'Northrop Grumman (United States)'),
(110699, 90763, 'en', 'name', 'Antarctica New Zealand'),
(110700, 90764, 'no_lang_code', 'name', 'Guangxi Communication Design Group Co., LTD (China)'),
(110701, 90764, 'zh', 'name', 'å¹æč„æäŗ¤é€šč®¾č®”é›†å›¢ęœ‰é™å…¬åø'),
(110702, 90765, 'en', 'name', 'Walton Institute for Information and Communications Systems Science'),
(110703, 90766, 'pt', 'name', 'Observatório do Valongo'),
(110704, 90766, 'en', 'name', 'Valongo Observatory'),
(110705, 90767, 'no_lang_code', 'name', 'Bendix (United States)'),
(110706, 90768, 'en', 'name', 'IISD Experimental Lakes Area'),
(110707, 90769, 'en', 'name', 'Maricopa Medical Center'),
(110708, 90770, 'en', 'name', 'State University of CearĆ”'),
(110709, 90770, 'pt', 'name', 'Universidade Estadual do CearĆ”'),
(110710, 90771, 'pt', 'name', 'Hospital UniversitƔrio Regional de MaringƔ'),
(110711, 90772, 'no_lang_code', 'name', 'Philco (United States)'),
(110712, 90773, 'pt', 'name', 'Ciências e Cognição'),
(110713, 90774, 'en', 'name', 'Oil Spill Recovery Institute'),
(110714, 90775, 'no_lang_code', 'name', 'Honeywell (United States)'),
(110715, 90776, 'pt', 'name', 'Universidade de Caxias do Sul'),
(110716, 90776, 'en', 'name', 'University of Caxias Do Sul'),
(110717, 90777, 'en', 'name', 'Federal Rural University of Pernambuco'),
(110718, 90777, 'pt', 'name', 'Universidade Federal Rural de Pernambuco'),
(110719, 90778, 'en', 'name', 'North Carolina Geological Survey'),
(110720, 90779, 'en', 'name', 'Royal Society Te Apārangi'),
(110721, 90780, 'es', 'name', 'Departamento de Salud de Puerto Rico'),
(110722, 90780, 'en', 'name', 'Puerto Rico Department of Health'),
(110723, 90781, 'en', 'name', 'San Juan City Hospital'),
(110724, 90782, 'en', 'name', 'Narcolepsy Network'),
(110725, 90783, 'en', 'name', 'St. Louis Children''s Hospital'),
(110726, 90784, 'en', 'name', 'Carlos Albizu University'),
(110727, 90784, 'es', 'name', 'Universidad Carlos Albizu'),
(110728, 90785, 'fr', 'name', 'HƓpital Charles-Foix'),
(110729, 90786, 'en', 'name', 'Office of Fossil Energy and Carbon Management'),
(110730, 90787, 'en', 'name', 'Ho Chi Minh City University of Economics and Finance'),
(110731, 90787, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ - TĆ i chĆ­nh ThĆ nh phố Hồ ChĆ­ Minh'),
(110732, 90788, 'es', 'name', 'Hospital Damas'),
(110733, 90789, 'en', 'name', 'California Department of Health Care Services'),
(110734, 90790, 'en', 'name', 'Department of Public Health'),
(110735, 90791, 'en', 'name', 'American University of Puerto Rico'),
(110736, 90792, 'en', 'name', 'Office of Regulatory and Policy Affairs'),
(110737, 90793, 'en', 'name', 'Oxford University Clinical Research Unit Indonesia'),
(110738, 90794, 'en', 'name', 'Reactor Fleet and Advanced Reactor Deployment'),
(110739, 90795, 'en', 'name', 'Office of Congressional and Intergovernmental Affairs'),
(110740, 90796, 'en', 'name', 'Guam Community College'),
(110741, 90797, 'fr', 'name', 'UMI MajuLab'),
(110742, 90798, 'en', 'name', 'St. Louis Ovarian Cancer Awareness'),
(110743, 90799, 'en', 'name', 'Nagao Natural Environment Foundation'),
(110744, 90800, 'fr', 'name', 'Enzymologie de l''ARN'),
(110745, 90801, 'es', 'name', 'Ministerio de Telecomunicaciones y de la Sociedad de la Información'),
(110746, 90802, 'en', 'name', 'Office of Materials and Chemical Technologies'),
(110747, 90803, 'en', 'name', 'Neighborhood Cancer Connection'),
(110748, 90804, 'en', 'name', 'DEVCOM Army Research Laboratory'),
(110749, 90805, 'en', 'name', 'Artificial Intelligence & Technology Office'),
(110750, 90806, 'en', 'name', 'Veterinary Services and Animal Health'),
(110751, 90807, 'en', 'name', 'Moana Connect'),
(110752, 90808, 'en', 'name', 'Lung Cancer Foundation of America'),
(110753, 90809, 'en', 'name', 'Nuclear Fuel Cycle and Supply Chain'),
(110754, 90810, 'en', 'name', 'Institute for Socio-Ecological Research'),
(110755, 90810, 'es', 'name', 'Instituto para Socio-Ecological Research'),
(110756, 90811, 'en', 'name', 'International Nuclear Energy Policy and Cooperation'),
(110757, 90812, 'en', 'name', 'Office of Bilateral, Multilateral, and Commercial Cooperation'),
(110758, 90813, 'en', 'name', 'Georgia Prostate Cancer Coalition'),
(110759, 90814, 'en', 'name', 'Akhmet Baitursynuly Kostanay Regional University'),
(110760, 90814, 'kk', 'name', 'Ахмет Байтұрсынұлы атынГағы ŅšŠ¾ŃŃ‚Š°Š½Š°Š¹ өңірлік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(110761, 90814, 'ru', 'name', 'ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ахмет Байтұрсынұлы'),
(110762, 90815, 'en', 'name', 'Ministry of Agriculture and Rural Development'),
(110763, 90815, 'he', 'name', '×ž×©×Ø×“ ×”×—×§×œ××•×Ŗ ופיתוח הכפר'),
(110764, 90816, 'en', 'name', 'Alamo Breast Cancer Foundation'),
(110765, 90817, 'en', 'name', 'National Museum of Japanese History'),
(110766, 90817, 'ja', 'name', 'å›½ē«‹ę­“å²ę°‘äæ—åšē‰©é¤Ø'),
(110767, 90818, 'en', 'name', 'Wind Energy Technologies Office'),
(110768, 90819, 'fr', 'name', 'Centre de linguistique en Sorbonne'),
(110769, 90819, 'en', 'name', 'Sorbonne Centre for Linguistics'),
(110770, 90820, 'no_lang_code', 'name', 'Sequoia Sciences (United States)'),
(110771, 90821, 'en', 'name', 'Doctors'' Center Hospital'),
(110772, 90822, 'en', 'name', 'National Gulf War Resource Center'),
(110773, 90823, 'en', 'name', 'California Department of Forestry and Fire Protection'),
(110774, 90824, 'en', 'name', 'Baba Raghav Das Medical College'),
(110775, 90824, 'hi', 'name', 'बाबा राघव दास ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(110776, 90825, 'en', 'name', 'U.S. Army Tropic Regions Test Center'),
(110777, 90826, 'en', 'name', 'Office of Buildings and Industry'),
(110778, 90827, 'fr', 'name', 'Flotte OcƩanographique FranƧaise'),
(110779, 90827, 'en', 'name', 'French Oceanographic Fleet'),
(110780, 90828, 'en', 'name', 'Industrial Efficiency and Decarbonization Office'),
(110781, 90829, 'en', 'name', 'High Energy Accelerator Research Organization'),
(110782, 90829, 'ja', 'name', 'é«˜ć‚Øćƒćƒ«ć‚®ćƒ¼åŠ é€Ÿå™Øē ”ē©¶ę©Ÿę§‹'),
(110783, 90830, 'fr', 'name', 'Centre d''Etudes et de Recherche sur la diplomatie, l’Administration Publique et le Politique'),
(110784, 90831, 'en', 'name', 'U.S. Army Evaluation Center'),
(110785, 90832, 'en', 'name', 'Queen Arwa University'),
(110786, 90832, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„ŁƒŲ© Ų£Ų±ŁˆŁ‰'),
(110787, 90833, 'fr', 'name', 'Centre Europeen pour le developpement de la Formation Professionnelle'),
(110788, 90833, 'es', 'name', 'Centro Europeo para el Desarrollo de la Formación Profesional'),
(110789, 90833, 'pt', 'name', 'Centro Europeu para o Desenvolvimento da Formação Profissional'),
(110790, 90833, 'it', 'name', 'Centro europeo per lo sviluppo della formazione professionale'),
(110791, 90833, 'ro', 'name', 'Centrul European pentru Dezvoltarea Formării Profesionale'),
(110792, 90833, 'en', 'name', 'European Centre for the Development of Vocational Training (CEDEFOP)'),
(110793, 90833, 'nl', 'name', 'Europees Centrum voor de ontwikkeling van de beroepsopleiding'),
(110794, 90833, 'pl', 'name', 'Europejskie Centrum Rozwoju Kształcenia Zawodowego'),
(110795, 90833, 'de', 'name', 'Europäisches Zentrum für die Förderung der Berufsbildung'),
(110796, 90833, 'el', 'name', 'Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ για την Ανάπτυξη της Επαγγελματικής ĪšĪ±Ļ„Ī¬ĻĻ„Ī¹ĻƒĪ·Ļ‚'),
(110797, 90834, 'fr', 'name', 'Agence Nationale pour la Gestion des DƩchets Radioactifs'),
(110798, 90835, 'en', 'name', 'Johns Hopkins University Center for AIDS Research'),
(110799, 90836, 'en', 'name', 'Marine Technology Unit'),
(110800, 90836, 'es', 'name', 'Unidad de TecnologĆ­a Marina'),
(110801, 90836, 'ca', 'name', 'Unitat de Tecnologia Marina'),
(110802, 90837, 'en', 'name', 'National Institute for Japanese Language and Linguistics'),
(110803, 90837, 'ja', 'name', 'å›½ē«‹å›½čŖžē ”ē©¶ę‰€'),
(110804, 90838, 'en', 'name', 'Deen Dayal Upadhyaya Gorakhpur University'),
(110805, 90838, 'hi', 'name', 'ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤‰ą¤Ŗą¤¾ą¤§ą„ą¤Æą¤¾ą¤Æ ą¤—ą„‹ą¤°ą¤–ą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(110806, 90838, 'ta', 'name', 'ą®¤ąÆ€ą®©ąÆ ą®¤ą®Æą®¾ą®³ąÆ ą®‰ą®Ŗą®¾ą®¤ąÆą®Æą®¾ą®ÆąÆ ą®•ąÆ‹ą®°ą®•ąÆą®ŖąÆ‚ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(110807, 90839, 'en', 'name', 'U.S. Army White Sands Test Center'),
(110808, 90840, 'en', 'name', 'NOAA National Hurricane Center'),
(110809, 90841, 'en', 'name', 'Bern University of Applied Sciences'),
(110810, 90841, 'de', 'name', 'Berner Fachhochschule'),
(110811, 90841, 'fr', 'name', 'Haute Ʃcole spƩcialisƩe bernoise'),
(110812, 90842, 'es', 'name', 'Universidad del Sagrado Corazón'),
(110813, 90842, 'en', 'name', 'University of The Sacred Heart'),
(110814, 90843, 'en', 'name', 'British Columbia Scholarship Society'),
(110815, 90844, 'es', 'name', 'Departamento de Educación de Puerto Rico'),
(110816, 90844, 'en', 'name', 'Puerto Rico Department of Education'),
(110817, 90845, 'en', 'name', 'Karaganda State Industrial University'),
(110818, 90845, 'ru', 'name', 'ŠšŠ°Ń€Š°Š³Š°Š½Š“ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(110819, 90846, 'en', 'name', 'Barnes-Jewish West County Hospital'),
(110820, 90847, 'de', 'name', 'Gertrude von Meissner-Stiftung, in Erinnerung an Annette und Clas Richter'),
(110821, 90848, 'en', 'name', 'Electronic Navigation Research Institute'),
(110822, 90848, 'ja', 'name', 'é›»å­čˆŖę³•ē ”ē©¶ę‰€'),
(110823, 90849, 'es', 'name', 'Universidad de La Frontera'),
(110824, 90849, 'en', 'name', 'University of La Frontera'),
(110825, 90850, 'en', 'name', 'California Department of Conservation'),
(110826, 90851, 'en', 'name', 'Institute of Puerto Rican Culture'),
(110827, 90851, 'es', 'name', 'Instituto de Cultura PuertorriqueƱa'),
(110828, 90852, 'fr', 'name', 'Laboratoire de Recherche sur les Apprentissages en Contexte'),
(110829, 90853, 'en', 'name', 'Cleveland Zoological Society'),
(110830, 90854, 'en', 'name', 'National University College'),
(110831, 90855, 'en', 'name', 'Lymphoma Research Foundation'),
(110832, 90856, 'en', 'name', 'Office of Federal Energy Management Programs'),
(110833, 90857, 'en', 'name', 'Institute of Physical Chemistry Blas Cabrera'),
(110834, 90857, 'es', 'name', 'Instituto de QuĆ­mica FĆ­sica Blas Cabrera'),
(110835, 90858, 'en', 'name', 'Ana G. Mendez University System'),
(110836, 90858, 'es', 'name', 'Sistema Universitario Ana G. MƩndez'),
(110837, 90859, 'en', 'name', 'Lobular Breast Cancer Alliance'),
(110838, 90860, 'en', 'name', 'Cancer Resource Center of the Finger Lakes'),
(110839, 90861, 'no_lang_code', 'name', 'Informa (United Kingdom)'),
(110840, 90862, 'en', 'name', 'California Department of Pesticide Regulation'),
(110841, 90863, 'en', 'name', 'Guam Department of Agriculture'),
(110842, 90864, 'en', 'name', 'Guam Waterworks Authority'),
(110843, 90865, 'en', 'name', 'Naval Ordnance Laboratory'),
(110844, 90866, 'en', 'name', 'National Institute for Basic Biology'),
(110845, 90866, 'ja', 'name', 'åŸŗē¤Žē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(110846, 90867, 'en', 'name', 'International Rett syndrome Foundation'),
(110847, 90868, 'es', 'name', 'Universidad Tecnológica Metropolitana'),
(110848, 90869, 'no_lang_code', 'name', 'Sigma-Aldrich (United States)'),
(110849, 90870, 'en', 'name', 'KEK Applied Research Laboratory'),
(110850, 90870, 'ja', 'name', 'å…±é€šåŸŗē›¤ē ”ē©¶ę–½čØ­'),
(110851, 90871, 'en', 'name', 'Lung Cancer Connection'),
(110852, 90872, 'fr', 'name', 'Analyses et Expérimentations pour les Ecosystèmes'),
(110853, 90873, 'en', 'name', 'Faces and Voices of Recovery'),
(110854, 90874, 'en', 'name', 'UL Research Institutes'),
(110855, 90875, 'en', 'name', 'Grid Deployment Office'),
(110856, 90876, 'no_lang_code', 'name', 'Knowledge Kingdom Publishing'),
(110857, 90877, 'en', 'name', 'Department of Lands and Natural Resources'),
(110858, 90878, 'en', 'name', 'Alberta Health Services'),
(110859, 90879, 'en', 'name', 'American Optometric Association'),
(110860, 90880, 'fr', 'name', 'Centre d''investigation clinique Quinze-Vingts'),
(110861, 90881, 'es', 'name', 'Hospital Oncológico Andrés Grillasca'),
(110862, 90882, 'en', 'name', 'Office of Security'),
(110863, 90883, 'en', 'name', 'Hope Center for Neurological Disorders'),
(110864, 90884, 'no_lang_code', 'name', 'Curium (United States)'),
(110865, 90885, 'nl', 'name', 'Missiemuseum'),
(110866, 90885, 'en', 'name', 'Mission Museum'),
(110867, 90886, 'en', 'name', 'Bosom Buddies Charities'),
(110868, 90887, 'en', 'name', 'Office of Isotope R&D and Production'),
(110869, 90888, 'en', 'name', 'California Department of Toxic Substances Control'),
(110870, 90889, 'en', 'name', 'NOAA National Centers for Environmental Prediction'),
(110871, 90890, 'fr', 'name', 'HƓpital Rothschild'),
(110872, 90891, 'en', 'name', 'National Marrow Donor Program'),
(110873, 90892, 'en', 'name', 'Ministry of Education, Culture, Sports, Science and Technology'),
(110874, 90892, 'ja', 'name', 'ę–‡éƒØē§‘å­¦ēœ'),
(110875, 90893, 'es', 'name', 'Red de Investigación de Conocimiento, Software y Hardware Libre'),
(110876, 90894, 'en', 'name', 'Oak Ridge Institute for Science and Education'),
(110877, 90895, 'en', 'name', 'Breast Cancer Action'),
(110878, 90896, 'en', 'name', 'Allison Family Foundation'),
(110879, 90897, 'en', 'name', 'Saint Louis University'),
(110880, 90897, 'es', 'name', 'Universidad de San Luis'),
(110881, 90897, 'fr', 'name', 'UniversitƩ de saint-louis'),
(110882, 90898, 'en', 'name', 'Pacific Marine Resources Institute'),
(110883, 90899, 'es', 'name', 'La Poly'),
(110884, 90899, 'en', 'name', 'Polytechnic University of Puerto Rico'),
(110885, 90900, 'es', 'name', 'Universidad Del Este'),
(110886, 90901, 'en', 'name', 'California Department of Education'),
(110887, 90901, 'es', 'name', 'Departamento de Educación de California'),
(110888, 90902, 'en', 'name', 'I AM ALS'),
(110889, 90903, 'en', 'name', 'Radboud Institute for Molecular Life Sciences'),
(110890, 90904, 'en', 'name', 'Air Force Institute of Technology');
INSERT INTO `ror_settings` VALUES
(110891, 90904, 'pl', 'name', 'Instytut Techniczny Wojsk Lotniczych'),
(110892, 90905, 'en', 'name', 'NAVWAR Space Field Activity'),
(110893, 90906, 'en', 'name', 'United States Virgin Islands Department of Health'),
(110894, 90907, 'en', 'name', 'Nuclear Infrastructure Programs'),
(110895, 90908, 'en', 'name', 'Breast Cancer Recovery'),
(110896, 90909, 'en', 'name', 'Regulatory Intergovernmental, and Stakeholder Engagement'),
(110897, 90910, 'en', 'name', 'Cleveland Metroparks Zoo'),
(110898, 90911, 'en', 'name', 'Office of the Chief Information Officer'),
(110899, 90912, 'en', 'name', 'Bioenergy Technologies Office'),
(110900, 90913, 'no_lang_code', 'name', 'Astrobiology Center'),
(110901, 90913, 'ja', 'name', 'č‡Ŗē„¶ē§‘å­¦ē ”ē©¶ę©Ÿę§‹ć‚¢ć‚¹ćƒˆćƒ­ćƒć‚¤ć‚Ŗćƒ­ć‚øćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(110902, 90914, 'en', 'name', 'Alzheimer Precision Medicine'),
(110903, 90915, 'fr', 'name', 'La FƩmis'),
(110904, 90916, 'en', 'name', 'University of the Arctic'),
(110905, 90917, 'fr', 'name', 'Centre de Recherche en LittƩrature ComparƩe'),
(110906, 90918, 'en', 'name', 'Wisconsin Breast Cancer Coalition'),
(110907, 90919, 'no_lang_code', 'name', 'Kerneos (France)'),
(110908, 90920, 'en', 'name', 'American Military Academy'),
(110909, 90921, 'en', 'name', 'Action to Cure Kidney Cancer'),
(110910, 90922, 'en', 'name', 'Caribbean University'),
(110911, 90923, 'en', 'name', 'Research Centre of the Slovenian Academy of Sciences and Arts'),
(110912, 90923, 'sl', 'name', 'Znanstvenoraziskovalni center Slovenske akademije znanosti in umetnosti'),
(110913, 90924, 'en', 'name', 'Missouri Foundation for Health'),
(110914, 90925, 'en', 'name', 'Grid Controls and Communications Division'),
(110915, 90926, 'en', 'name', 'FD/MAS Alliance'),
(110916, 90927, 'en', 'name', 'St. Petersburg Research Institute of Radiation Hygiene'),
(110917, 90927, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиационной гигиены имени профессора П.Š’.Рамзаева'),
(110918, 90928, 'en', 'name', 'Office of Renewable Energy'),
(110919, 90929, 'fr', 'name', 'Ɖrudit'),
(110920, 90930, 'es', 'name', 'Hospital Episcopal San Lucas'),
(110921, 90931, 'es', 'name', 'Universidad del Turabo'),
(110922, 90931, 'en', 'name', 'University of Turabo'),
(110923, 90932, 'en', 'name', 'Naval Air Warfare Center Weapons Division'),
(110924, 90933, 'en', 'name', 'Office of Enterprise Assessments'),
(110925, 90934, 'en', 'name', 'Institute for Bioscience and Biotechnology Research'),
(110926, 90935, 'en', 'name', 'Whitney R. Harris World Ecology Center'),
(110927, 90936, 'no_lang_code', 'name', 'VetStrong'),
(110928, 90937, 'no_lang_code', 'name', 'Colectica (United States)'),
(110929, 90938, 'en', 'name', 'Prostate Cancer Support Association of New Mexico'),
(110930, 90939, 'es', 'name', 'Consejo Latinoamericano de Ciencias Sociales'),
(110931, 90939, 'pt', 'name', 'Conselho Latino-americano de CiĆŖncias Sociais'),
(110932, 90939, 'en', 'name', 'Latin American Council of Social Sciences'),
(110933, 90940, 'en', 'name', 'U.S. Army Corp of Engineers Waterways Experiment Station'),
(110934, 90941, 'en', 'name', 'Texas Neurofibromatosis Foundation'),
(110935, 90942, 'no_lang_code', 'name', 'Albion Technologies (United Kingdom)'),
(110936, 90943, 'fr', 'name', 'Laboratoire de Neurosciences Cognitives et Computationnelles'),
(110937, 90944, 'fr', 'name', 'Histoire et Dynamique des Espaces Anglophones: du RƩel au Virtuel'),
(110938, 90945, 'en', 'name', 'Inter-University Research Institute Corporation'),
(110939, 90946, 'en', 'name', 'Queen Margaret University'),
(110940, 90947, 'no_lang_code', 'name', 'Nordfriisk Instituut'),
(110941, 90948, 'en', 'name', 'Office of International Nuclear Safety'),
(110942, 90949, 'en', 'name', 'California Department of Alcohol and Drug Programs'),
(110943, 90950, 'no_lang_code', 'name', 'EMS Press'),
(110944, 90951, 'en', 'name', 'Faculty SantĆ­ssima Trindade'),
(110945, 90952, 'en', 'name', 'Institute of Particle and Nuclear Studies'),
(110946, 90952, 'ja', 'name', 'ē“ ē²’å­åŽŸå­ę øē ”ē©¶ę‰€'),
(110947, 90953, 'en', 'name', 'Harry Diamond Laboratories'),
(110948, 90954, 'en', 'name', 'Bladder Cancer Advocacy Network'),
(110949, 90955, 'es', 'name', 'Hospital de Veteranos'),
(110950, 90955, 'en', 'name', 'VA Caribbean Healthcare System'),
(110951, 90956, 'en', 'name', 'National Institute of Genetics'),
(110952, 90956, 'ja', 'name', 'å›½ē«‹éŗä¼å­¦ē ”ē©¶ę‰€'),
(110953, 90957, 'en', 'name', '"Miguel Antonio CatalƔn" Physics Center'),
(110954, 90957, 'es', 'name', 'Centro de Fƭsica Miguel Antonio CatalƔn'),
(110955, 90958, 'en', 'name', 'Office of Secretary of Energy'),
(110956, 90959, 'en', 'name', 'International Research Center for Japanese Studies'),
(110957, 90959, 'ja', 'name', 'å›½éš›ę—„ęœ¬ę–‡åŒ–ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(110958, 90960, 'en', 'name', 'Spent Fuel and Waste Disposition'),
(110959, 90961, 'en', 'name', 'Clinical Research Puerto Rico'),
(110960, 90962, 'en', 'name', 'CureDuchenne'),
(110961, 90963, 'en', 'name', 'U.S. Army Ballistic Research Laboratory'),
(110962, 90964, 'en', 'name', 'Office of Indian Energy Policy and Programs'),
(110963, 90965, 'en', 'name', 'Office of Petroleum Reserves'),
(110964, 90966, 'en', 'name', 'Colorectal Cancer Alliance'),
(110965, 90967, 'en', 'name', 'Michigan Ovarian Cancer Alliance'),
(110966, 90968, 'en', 'name', 'National Institute of Japanese Literature'),
(110967, 90968, 'ja', 'name', '国文学研究資料館'),
(110968, 90969, 'en', 'name', 'Office of Integrated Waste Management'),
(110969, 90970, 'no_lang_code', 'name', 'Aduro BioTech (United States)'),
(110970, 90971, 'es', 'name', 'Clínica Planificación Familiar y Terminación de Embarazo'),
(110971, 90972, 'en', 'name', 'University of the Virgin Islands'),
(110972, 90973, 'es', 'name', 'Fundación Openlab Ecuador'),
(110973, 90974, 'en', 'name', 'Institute for the Structure of Matter'),
(110974, 90974, 'es', 'name', 'Instituto de Estructura de la Materia'),
(110975, 90975, 'en', 'name', 'California Department of Food and Agriculture'),
(110976, 90975, 'es', 'name', 'Departamento de Alimentos y Agricultura de California'),
(110977, 90975, 'fr', 'name', 'DƩpartement de l''alimentation et de l''agriculture de californie'),
(110978, 90976, 'en', 'name', 'Children''s National'),
(110979, 90977, 'en', 'name', 'Dr. Susan Love Foundation for Breast Cancer Research'),
(110980, 90978, 'en', 'name', 'Pathophysiology, Diagnosis and Treatment of Bone Diseases'),
(110981, 90978, 'fr', 'name', 'Physiopathologie, Diagnostic et Traitements des Maladies Osseuses'),
(110982, 90979, 'en', 'name', 'U.S. Army Cold Regions Test Center'),
(110983, 90980, 'en', 'name', 'Virgin Islands Department of Human Services'),
(110984, 90981, 'en', 'name', 'KEK Accelerator Laboratory'),
(110985, 90981, 'ja', 'name', 'åŠ é€Ÿå™Øē ”ē©¶ę–½čØ­'),
(110986, 90982, 'en', 'name', 'Washington University Physicians'),
(110987, 90983, 'en', 'name', 'Naval Information Warfare Center Atlantic'),
(110988, 90984, 'en', 'name', 'Maldives Business School'),
(110989, 90985, 'en', 'name', 'Western National Parks Association'),
(110990, 90986, 'fr', 'name', 'Laboratoire Instrumentation, Simulation et Informatique Scientifique'),
(110991, 90987, 'en', 'name', 'Rein in Sarcoma'),
(110992, 90988, 'en', 'name', 'National Alliance of State Prostate Cancer Coalitions'),
(110993, 90989, 'en', 'name', 'NUS High School of Mathematics and Science'),
(110994, 90990, 'en', 'name', 'Allegheny-Singer Research Institute'),
(110995, 90991, 'en', 'name', 'University Hospital Frankfurt'),
(110996, 90991, 'de', 'name', 'UniversitƤtsklinikum Frankfurt'),
(110997, 90992, 'no_lang_code', 'name', 'Societatea Națională de Gaze Naturale Romgaz SA (Romania)'),
(110998, 90993, 'en', 'name', 'The Virgin Islands Public Library System'),
(110999, 90994, 'en', 'name', 'Office of Emergency Operations'),
(111000, 90995, 'en', 'name', 'Rally Foundation for Childhood Cancer Research'),
(111001, 90996, 'en', 'name', 'Alberta Children''s Hospital Research Institute'),
(111002, 90997, 'en', 'name', 'Infrastructure Management and Disposition Policy'),
(111003, 90998, 'en', 'name', 'Breast Cancer Solutions'),
(111004, 90999, 'en', 'name', 'Virginia Soybean Board'),
(111005, 91000, 'en', 'name', 'Elrazi University'),
(111006, 91000, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ų§Ų²ŁŠ'),
(111007, 91001, 'no_lang_code', 'name', 'Us Too'),
(111008, 91002, 'no_lang_code', 'name', 'Laboratoires Contapharm (France)'),
(111009, 91003, 'ca', 'name', 'Institut de Microelectrònica de Barcelona'),
(111010, 91003, 'en', 'name', 'Institute of Microelectronics of Barcelona'),
(111011, 91003, 'es', 'name', 'Instituto de Microelectrónica de Barcelona'),
(111012, 91004, 'no_lang_code', 'name', 'UL (Germany)'),
(111013, 91005, 'en', 'name', 'Office of Spent Fuel and Waste Science and Technology'),
(111014, 91006, 'fr', 'name', 'Groupe de recherche interdisciplinaire sur les processus d''information et de communication'),
(111015, 91007, 'en', 'name', 'Charles Harwood Memorial Hospital'),
(111016, 91008, 'en', 'name', 'Governor Juan F. Luis Hospital & Medical Center'),
(111017, 91009, 'fr', 'name', 'Laboratoire de Linguistique et Didactique des Langues EtrangĆØres et Maternelles'),
(111018, 91010, 'es', 'name', 'Instituto Nacional de Pesca y Acuacultura'),
(111019, 91011, 'en', 'name', 'Office of Nuclear Materials Production, Management, and Protection'),
(111020, 91012, 'en', 'name', 'Water Power Technologies Office'),
(111021, 91013, 'en', 'name', 'Colorado Clinical and Translational Sciences Institute'),
(111022, 91014, 'en', 'name', 'Center for Advanced Studies on Puerto Rico and the Caribbean'),
(111023, 91014, 'es', 'name', 'Centro de Estudios Avanzados de Puerto Rico y El Caribe'),
(111024, 91015, 'en', 'name', 'McCune Foundation'),
(111025, 91016, 'en', 'name', 'InterAmerican University of Puerto Rico'),
(111026, 91016, 'es', 'name', 'Universidad Interamericana de Puerto Rico'),
(111027, 91017, 'en', 'name', 'Semey Medical University'),
(111028, 91017, 'kk', 'name', '«Демей меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–Ā» ŠŗŠ¾Š¼Š¼ŠµŃ€Ń†ŠøŃŠ»Ń‹Ņ› емес акционерлік қоғамы'),
(111029, 91017, 'ru', 'name', 'ŠŠµŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ¾Šµ акционерное общество Ā«ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Демей»'),
(111030, 91018, 'de', 'name', 'Deutsches Herzzentrum München'),
(111031, 91018, 'en', 'name', 'German Heart Centre Munich'),
(111032, 91019, 'en', 'name', 'National Institutes for the Humanities'),
(111033, 91019, 'ja', 'name', 'äŗŗé–“ę–‡åŒ–ē ”ē©¶ę©Ÿę§‹'),
(111034, 91020, 'en', 'name', 'Annie Appleseed Project'),
(111035, 91021, 'en', 'name', 'Alberta Children''s Hospital'),
(111036, 91022, 'id', 'name', 'Universitas Indonesia'),
(111037, 91022, 'en', 'name', 'University of Indonesia'),
(111038, 91023, 'en', 'name', 'Sisters Network Inc.'),
(111039, 91024, 'en', 'name', 'National Astronomical Observatory of Japan'),
(111040, 91024, 'ja', 'name', 'å›½ē«‹å¤©ę–‡å°'),
(111041, 91025, 'en', 'name', 'UL Standards & Engagement'),
(111042, 91026, 'no_lang_code', 'name', 'UL Solutions (United States)'),
(111043, 91027, 'en', 'name', 'U.S. Army Yuma Test Center'),
(111044, 91028, 'en', 'name', 'WomenHeart'),
(111045, 91029, 'en', 'name', 'American Samoa Government'),
(111046, 91030, 'en', 'name', 'American Chronic Pain Association'),
(111047, 91031, 'en', 'name', 'Office of Policy'),
(111048, 91032, 'es', 'name', 'Hospital Metropolitano Dr. Pila'),
(111049, 91033, 'en', 'name', 'Wright Research and Development Center'),
(111050, 91034, 'en', 'name', 'National Museum of Ethnology'),
(111051, 91034, 'ja', 'name', 'å›½ē«‹ę°‘ę—å­¦åšē‰©é¤Ø'),
(111052, 91035, 'en', 'name', 'NOAA Tropical Analysis and Forecast Branch'),
(111053, 91036, 'id', 'name', 'Universitas Banten Jaya'),
(111054, 91037, 'en', 'name', 'Survivors on Purpose Inc.'),
(111055, 91038, 'en', 'name', 'Edward M. Calvo Cancer Foundation'),
(111056, 91039, 'en', 'name', 'California Department of Transportation'),
(111057, 91040, 'en', 'name', 'Office of Accelerator R&D and Production'),
(111058, 91041, 'en', 'name', 'Institute for Molecular Science'),
(111059, 91041, 'ja', 'name', 'åˆ†å­ē§‘å­¦ē ”ē©¶ę‰€'),
(111060, 91042, 'en', 'name', 'Australian Synchrotron'),
(111061, 91043, 'es', 'name', 'Administración Nacional de Medicamentos, Alimentos y Tecnología Médica'),
(111062, 91044, 'fr', 'name', 'UniversitƩ des Sciences Sociales et de Gestion de Bamako'),
(111063, 91045, 'es', 'name', 'Colegio Universitario de San Juan'),
(111064, 91046, 'no_lang_code', 'name', 'Taylor and Francis (United Kingdom)'),
(111065, 91047, 'en', 'name', 'Nuclear Energy University Program'),
(111066, 91048, 'fr', 'name', 'Centre d''Etudes et de Recherches AppliquƩes Ơ la Gestion'),
(111067, 91049, 'en', 'name', 'U.S. Army West Desert Test Center'),
(111068, 91050, 'en', 'name', 'NASA Planetary Science'),
(111069, 91051, 'en', 'name', 'Office of Public Affairs'),
(111070, 91052, 'fr', 'name', 'Sens, Texte, Informatique, Histoire'),
(111071, 91053, 'en', 'name', 'Federal Service for Surveillance on Consumer Rights Protection and Human Wellbeing'),
(111072, 91053, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба по Š½Š°Š“Š·Š¾Ń€Ńƒ в сфере защиты прав потребителей Šø Š±Š»Š°Š³Š¾ŠæŠ¾Š»ŃƒŃ‡ŠøŃ человека'),
(111073, 91054, 'fr', 'name', 'Laboratoire Inter-universitaire de Psychologie: PersonnalitƩ, Cognition, Changement Social'),
(111074, 91055, 'no_lang_code', 'name', 'CDI Laboratories (United States)'),
(111075, 91056, 'en', 'name', 'HJR Reefscaping'),
(111076, 91057, 'en', 'name', 'Office of State and Community Energy Programs'),
(111077, 91058, 'en', 'name', 'Sana''a University'),
(111078, 91058, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© صنعاؔ'),
(111079, 91059, 'en', 'name', 'European Mathematical Society'),
(111080, 91060, 'en', 'name', 'Scottish Universities Press'),
(111081, 91061, 'en', 'name', 'Office of Resource Sustainability'),
(111082, 91062, 'en', 'name', 'Office of Environmental Protection and ES&H Reporting'),
(111083, 91063, 'en', 'name', 'Office of Defense Programs'),
(111084, 91064, 'en', 'name', 'Amputee Coalition of America'),
(111085, 91065, 'pl', 'name', 'Powiślańska Szkoła Wyższa'),
(111086, 91066, 'en', 'name', 'International Lyme and Associated Diseases Society'),
(111087, 91067, 'en', 'name', 'Naval Nuclear Propulsion Program (Naval Reactors)'),
(111088, 91068, 'en', 'name', 'The Institute of Statistical Mathematics'),
(111089, 91068, 'ja', 'name', 'ēµ±čØˆę•°ē†ē ”ē©¶ę‰€'),
(111090, 91069, 'en', 'name', 'Institute for Tropical Technology'),
(111091, 91069, 'vi', 'name', 'Viện Kỹ thuįŗ­t nhiệt đới'),
(111092, 91070, 'en', 'name', 'Huertas College'),
(111093, 91071, 'es', 'name', 'Centro de Neumologia Pediatrica'),
(111094, 91072, 'it', 'name', 'Ente Ospedaliero Specializzato in Gastroenterologia Saverio de Bellis'),
(111095, 91072, 'en', 'name', 'Gastroenterology Hospital "Saverio de Bellis"'),
(111096, 91073, 'en', 'name', 'National Institute for Physiological Sciences'),
(111097, 91073, 'ja', 'name', 'ē”Ÿē†å­¦ē ”ē©¶ę‰€'),
(111098, 91074, 'en', 'name', 'Debbie''s Dream Foundation'),
(111099, 91075, 'en', 'name', 'Center of Research in Myology'),
(111100, 91075, 'fr', 'name', 'Centre de Recherche en Myologie'),
(111101, 91076, 'en', 'name', 'Atlantic University College'),
(111102, 91077, 'en', 'name', 'Children''s Hospital Foundation'),
(111103, 91078, 'en', 'name', 'Bayamón Central University'),
(111104, 91078, 'es', 'name', 'Universidad Central de Bayamón'),
(111105, 91079, 'no_lang_code', 'name', 'Routledge (United Kingdom)'),
(111106, 91080, 'en', 'name', 'Air Force Space Technology Center'),
(111107, 91081, 'en', 'name', 'Building Technologies Office'),
(111108, 91082, 'en', 'name', 'American Samoa Department of Homeland Security'),
(111109, 91083, 'en', 'name', 'Nuclear Energy Enabling Technologies'),
(111110, 91084, 'en', 'name', 'Department of Human and Social Services'),
(111111, 91085, 'en', 'name', 'U.S. Army Redstone Test Center'),
(111112, 91086, 'en', 'name', 'Canadian Policy Research Networks'),
(111113, 91087, 'en', 'name', 'Academy of Science St. Louis'),
(111114, 91088, 'en', 'name', 'Adam Smith University'),
(111115, 91089, 'de', 'name', 'Europa-UniversitƤt Flensburg'),
(111116, 91090, 'en', 'name', 'Conservation Trust of Puerto Rico'),
(111117, 91091, 'fr', 'name', 'HƓpital de la Roche-Guyon'),
(111118, 91092, 'no_lang_code', 'name', 'Unite 2 Fight Paralysis'),
(111119, 91093, 'es', 'name', 'Escuela de Artes PlƔsticas y DiseƱo de Puerto Rico'),
(111120, 91093, 'en', 'name', 'School of Plastic Arts of Puerto Rico'),
(111121, 91094, 'en', 'name', 'Office of Nuclear Facilities Management'),
(111122, 91095, 'en', 'name', 'Prince Bernhard Nature Fund'),
(111123, 91096, 'en', 'name', 'Puerto Rico Community Network for Clinical Research on AIDS'),
(111124, 91097, 'en', 'name', 'Naval Electronics Laboratory Center'),
(111125, 91098, 'en', 'name', 'The Geneva Learning Foundation'),
(111126, 91099, 'en', 'name', 'U.S. Army Aberdeen Test Center'),
(111127, 91100, 'en', 'name', 'California Department of Parks and Recreation'),
(111128, 91101, 'en', 'name', 'Breast Cancer Options'),
(111129, 91102, 'en', 'name', 'Advanced Materials and Manufacturing Technologies Office'),
(111130, 91103, 'en', 'name', 'Washington University in St. Louis School of Medicine'),
(111131, 91104, 'en', 'name', 'Virgin Islands Territorial Emergency Management Agency'),
(111132, 91105, 'en', 'name', 'Naval Information Warfare Center Pacific'),
(111133, 91106, 'en', 'name', 'Pacific Islands University'),
(111134, 91107, 'fr', 'name', 'Ɖcole des Neurosciences de Paris'),
(111135, 91108, 'en', 'name', 'Massachusetts Breast Cancer Coalition'),
(111136, 91109, 'en', 'name', 'Office of Sustainable Transportation and Fuels'),
(111137, 91110, 'en', 'name', 'Naval Air Warfare Center Warminster'),
(111138, 91111, 'en', 'name', 'Institute of Materials Structure Science'),
(111139, 91111, 'ja', 'name', '物質構造科学研究所'),
(111140, 91112, 'en', 'name', 'Neurofibromatosis Network'),
(111141, 91113, 'en', 'name', 'Naval Air Warfare Center Aircraft Division'),
(111142, 91114, 'en', 'name', 'ZERO Prostate Cancer'),
(111143, 91115, 'en', 'name', 'Team Survivor Northwest'),
(111144, 91116, 'en', 'name', 'Catanduanes State University'),
(111145, 91117, 'en', 'name', 'American Samoa Community Cancer Coalition'),
(111146, 91118, 'es', 'name', 'Instituto de Microelectrónica de Sevilla'),
(111147, 91119, 'en', 'name', 'Kostanay State University A Baitursynov'),
(111148, 91119, 'ru', 'name', 'ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ахмета Š‘Š°Š¹Ń‚ŃƒŃ€ŃŃ‹Š½Š¾Š²Š°'),
(111149, 91119, 'kk', 'name', 'ŅšŠ¾ŃŃ‚Š°Š½Š°Š¹ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(111150, 91120, 'fr', 'name', 'Institut de Chimie MolƩculaire de Grenoble'),
(111151, 91121, 'en', 'name', 'Auxilio Mutuo Hospital'),
(111152, 91122, 'en', 'name', 'N.N. Krasovskii Institute of Mathematics and Mechanics of the Ural Branch of the Russian Academy of Sciences'),
(111153, 91122, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики Šø механики'),
(111154, 91123, 'en', 'name', 'Metropolitan University'),
(111155, 91123, 'es', 'name', 'Universidad Metropolitana'),
(111156, 91124, 'en', 'name', 'Grid Systems and Components'),
(111157, 91125, 'en', 'name', 'Finnish Geospatial Research Institute'),
(111158, 91126, 'en', 'name', 'U.S. Army Electronic Proving Ground'),
(111159, 91127, 'fr', 'name', 'Centre d''Ɖtudes MĆ©diĆ©vales Anglaises'),
(111160, 91128, 'en', 'name', 'Naval Weapons Center'),
(111161, 91129, 'en', 'name', 'Office of Under Secretary for Science and Innovation'),
(111162, 91130, 'en', 'name', 'San Juan Quarantine Station'),
(111163, 91131, 'en', 'name', 'Office of Technology Transitions'),
(111164, 91132, 'en', 'name', 'Ann''s Place'),
(111165, 91133, 'en', 'name', 'California Department of Public Health'),
(111166, 91133, 'es', 'name', 'Departamento de Salud PĆŗblica de California'),
(111167, 91134, 'en', 'name', 'Ascension'),
(111168, 91135, 'en', 'name', 'ICPR Junior College'),
(111169, 91136, 'en', 'name', 'Facing Our Risk of Cancer Empowered'),
(111170, 91137, 'en', 'name', 'Graceland International University'),
(111171, 91138, 'fr', 'name', 'Neuropsychologie et Imagerie de la MƩmoire Humaine'),
(111172, 91139, 'en', 'name', 'Naval Ocean Systems Center'),
(111173, 91140, 'en', 'name', 'Office of Defense Nuclear Security'),
(111174, 91141, 'en', 'name', 'Nutrition and Obesities: Systemic Approaches'),
(111175, 91141, 'fr', 'name', 'Nutrition et obƩsitƩ : approches systƩmiques'),
(111176, 91142, 'en', 'name', 'Department of Administration'),
(111177, 91143, 'en', 'name', 'Office of Advanced Fuels Technologies'),
(111178, 91144, 'en', 'name', 'Northern Marianas College'),
(111179, 91145, 'en', 'name', 'Research Institute for Humanity and Nature'),
(111180, 91145, 'ja', 'name', 'ē·åˆåœ°ēƒē’°å¢ƒå­¦ē ”ē©¶ę‰€'),
(111181, 91146, 'en', 'name', 'Natural Resources Institute Finland'),
(111182, 91147, 'en', 'name', 'Antillean Adventist University'),
(111183, 91147, 'es', 'name', 'Universidad Adventista de las Antillas'),
(111184, 91148, 'lv', 'name', 'Baltijas jūras aizsardzības fonds'),
(111185, 91148, 'en', 'name', 'The Baltic Sea Conservation Foundation'),
(111186, 91148, 'ru', 'name', 'ФонГ охраны Балтийского Š¼Š¾Ń€Ń'),
(111187, 91149, 'en', 'name', 'Max Planck Foundation'),
(111188, 91149, 'de', 'name', 'Max-Planck-Fƶrderstiftung'),
(111189, 91150, 'en', 'name', 'Office of Environment, Safety, and Health'),
(111190, 91151, 'no_lang_code', 'name', 'Achaogen (United States)'),
(111191, 91152, 'en', 'name', 'Department of Public Health and Social Services'),
(111192, 91152, 'ch', 'name', 'Dipattamenton Salut Pupbleko Yan Setbision Susiat'),
(111193, 91153, 'en', 'name', 'Kostanai State Pedagogical University'),
(111194, 91153, 'kk', 'name', 'ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(111195, 91154, 'en', 'name', 'Adult Congenital Heart Association'),
(111196, 91155, 'en', 'name', 'Higher Education Authority'),
(111197, 91156, 'en', 'name', 'The Red Door Community'),
(111198, 91157, 'en', 'name', 'Society for the Study of Evolution'),
(111199, 91158, 'en', 'name', 'Thailand Center of Excellence for Life Sciences'),
(111200, 91158, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œąø„ąø§ąø²ąø”ą¹€ąø›ą¹‡ąø™ą¹€ąø„ąø“ąøØąø”ą¹‰ąø²ąø™ąøŠąøµąø§ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(111201, 91159, 'en', 'name', 'National Institutes of Natural Sciences'),
(111202, 91159, 'ja', 'name', 'č‡Ŗē„¶ē§‘å­¦ē ”ē©¶ę©Ÿę§‹'),
(111203, 91160, 'no_lang_code', 'name', 'Tafuna High School'),
(111204, 91161, 'no_lang_code', 'name', 'ITER'),
(111205, 91162, 'en', 'name', 'Central Asian Medical University'),
(111206, 91162, 'ru', 'name', 'ДреГнеазиатский меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111207, 91163, 'no_lang_code', 'name', 'Malecare'),
(111208, 91164, 'fr', 'name', 'Civilisations et littératures d''Espagne et d''Amérique du Moyen-Age aux Lumières'),
(111209, 91165, 'en', 'name', 'Northern Marianas Humanities Council'),
(111210, 91166, 'en', 'name', 'Seismological Observatory at the Faculty of Natural Sciences and Mathematics, Ss. Cyril and Methodius University, Skopje, Republic of Macedonia'),
(111211, 91166, 'mk', 'name', 'Деизмолошка Š¾ŠæŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ˜Š°, ŠŸŃ€ŠøŃ€Š¾Š“Š½Š¾-математички Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚, Универзитет Дв. ŠšŠøŃ€ŠøŠ» Šø ŠœŠµŃ‚Š¾Š“ŠøŃ˜ во Дкопје'),
(111212, 91167, 'en', 'name', 'National Autism Association'),
(111213, 91168, 'es', 'name', 'Administración de Servicios de Salud Mental y Contra la Adicción'),
(111214, 91168, 'en', 'name', 'Puerto Rico Administration of Mental Health and Anti-Addiction Services'),
(111215, 91169, 'en', 'name', 'Office of Infrastructure'),
(111216, 91170, 'en', 'name', 'U.S. Army Combat Capabilities Development Command Aviation & Missile Center'),
(111217, 91171, 'en', 'name', 'Prostate Cancer Research Institute'),
(111218, 91172, 'en', 'name', 'Bayer Fund'),
(111219, 91173, 'no_lang_code', 'name', 'Assheuer + Pott (Germany)'),
(111220, 91174, 'fr', 'name', 'Corteam'),
(111221, 91175, 'no_lang_code', 'name', 'Accentus Medical (United Kingdom)'),
(111222, 91176, 'no_lang_code', 'name', 'Bureau Veritas (Australia)'),
(111223, 91177, 'no_lang_code', 'name', 'Eurofins (United Kingdom)'),
(111224, 91178, 'en', 'name', 'Institute for Advancing Computing Education'),
(111225, 91179, 'fr', 'name', 'Centre d''Immunologie et des Maladies Infectieuses'),
(111226, 91179, 'en', 'name', 'Centre of Immunology and Microbial Infections'),
(111227, 91180, 'en', 'name', 'Dartmouth Health'),
(111228, 91181, 'no_lang_code', 'name', 'Triad National Security (United States)'),
(111229, 91182, 'fr', 'name', 'Remodelage et Reparation du Tissu Renal'),
(111230, 91183, 'fr', 'name', 'Laboratoire d’immunologie intĆ©grative du cancer'),
(111231, 91183, 'en', 'name', 'Laboratory of Integrative Cancer Immunology'),
(111232, 91184, 'en', 'name', 'Guts UK'),
(111233, 91185, 'en', 'name', 'University of Arizona Cancer Center'),
(111234, 91186, 'no_lang_code', 'name', 'I-Five (South Korea)'),
(111235, 91186, 'ko', 'name', 'ģ•„ģ“ķŒŒģ“ėøŒ'),
(111236, 91187, 'fr', 'name', 'Centre de recherche et de dƩveloppement de QuƩbec'),
(111237, 91187, 'en', 'name', 'Quebec Research and Development Centre'),
(111238, 91188, 'en', 'name', 'Harold C. Simmons Comprehensive Cancer Center'),
(111239, 91189, 'fr', 'name', 'Onco-Urologie PrƩdictive'),
(111240, 91190, 'no_lang_code', 'name', 'Miele (Germany)'),
(111241, 91191, 'fr', 'name', 'Conseil dƩpartemental de la Dordogne'),
(111242, 91192, 'en', 'name', 'Cornell Atkinson Center for Sustainability'),
(111243, 91193, 'en', 'name', 'Arid Regions Institute'),
(111244, 91193, 'fr', 'name', 'Institut des RƩgions Arides'),
(111245, 91193, 'ar', 'name', 'معهد المناطق القاحلة'),
(111246, 91194, 'en', 'name', 'Center for Functional Nanomaterials'),
(111247, 91195, 'no_lang_code', 'name', 'Santen (France)'),
(111248, 91195, 'ja', 'name', 'å‚å¤©č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(111249, 91196, 'no_lang_code', 'name', 'Aptar (United States)'),
(111250, 91197, 'no_lang_code', 'name', 'Exedy (Japan)'),
(111251, 91198, 'en', 'name', 'Huntsman Cancer Institute'),
(111252, 91199, 'en', 'name', 'Indian Institute of Technology Kharagpur'),
(111253, 91199, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾, ą¤–ą¤”ą„ą¤—ą¤Ŗą„‚ą¤°'),
(111254, 91199, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤–ą¤”ą¤¼ą¤—ą¤Ŗą„ą¤°'),
(111255, 91199, 'bn', 'name', 'ভারতীয় ą¦Ŗą§ą¦°ą§Œą¦¦ą§ą¦Æą§‹ą¦—ą¦æą¦•ą§€ ą¦øą¦‚ą¦øą§ą¦„ą¦¾ą¦Ø, খঔ়গপুর'),
(111256, 91199, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®°ą®•ąÆą®ŖąÆ‚ą®°ąÆ'),
(111257, 91199, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“–ą“°ą“—ąµā€Œą“Ŗąµ‚ąµ¼'),
(111258, 91200, 'en', 'name', 'Landcare Australia'),
(111259, 91201, 'en', 'name', 'Rusk Rehabilitation'),
(111260, 91202, 'no_lang_code', 'name', 'ChorusOS (France)'),
(111261, 91203, 'en', 'name', 'Moinhos de Vento Agroecology Research Centre'),
(111262, 91204, 'no_lang_code', 'name', 'Tenaris (Luxembourg)'),
(111263, 91205, 'no_lang_code', 'name', 'StƤubli (France)'),
(111264, 91206, 'fr', 'name', 'Conseil dƩpartemental de l''Essonne'),
(111265, 91207, 'no_lang_code', 'name', 'Solutions Inc. (Japan)'),
(111266, 91207, 'ja', 'name', 'ć‚½ćƒ«ćƒ¼ć‚·ćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(111267, 91208, 'en', 'name', 'Southern New Hampshire Medical Center'),
(111268, 91209, 'en', 'name', 'National Microbiome Data Collaborative'),
(111269, 91210, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Harrow'),
(111270, 91210, 'en', 'name', 'Harrow Research and Development Centre'),
(111271, 91211, 'en', 'name', 'National Energy Technology Laboratory'),
(111272, 91212, 'en', 'name', 'Systematics, Adaptation, Evolution'),
(111273, 91212, 'fr', 'name', 'SystƩmatique, adaptation, Ʃvolution'),
(111274, 91213, 'en', 'name', 'University of Alabama System'),
(111275, 91214, 'en', 'name', 'South Carolina Spinal Cord Injury Association'),
(111276, 91215, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Guelph'),
(111277, 91215, 'en', 'name', 'Guelph Research and Development Centre'),
(111278, 91216, 'en', 'name', 'Bandung Institute of Technology'),
(111279, 91216, 'id', 'name', 'Institut Teknologi Bandung'),
(111280, 91216, 'jv', 'name', 'Institut TĆØknologi Bandung'),
(111281, 91216, 'nl', 'name', 'Technische Hogeschool Bandoeng'),
(111282, 91217, 'en', 'name', 'UC Davis Comprehensive Cancer Center'),
(111283, 91218, 'en', 'name', 'Oak Ridge Leadership Computing Facility'),
(111284, 91219, 'en', 'name', 'Center for Nanophase Materials Sciences'),
(111285, 91220, 'no_lang_code', 'name', 'General Electric (France)'),
(111286, 91221, 'no_lang_code', 'name', 'Aptar (France)'),
(111287, 91222, 'en', 'name', 'Environmental Molecular Sciences Laboratory'),
(111288, 91223, 'es', 'name', 'Universidad de HawƔi'),
(111289, 91223, 'en', 'name', 'University of Hawaii System'),
(111290, 91223, 'fr', 'name', 'Université d''hawaï'),
(111291, 91224, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Lethbridge'),
(111292, 91224, 'en', 'name', 'Lethbridge Research and Development Centre'),
(111293, 91225, 'en', 'name', 'University of Chicago Medicine Comprehensive Cancer Center'),
(111294, 91226, 'en', 'name', 'National Institute of Diabetes and Digestive and Kidney Diseases'),
(111295, 91227, 'en', 'name', 'Shanghai Posts & Telecommunications Designing Consulting Institute'),
(111296, 91227, 'zh', 'name', 'äøŠęµ·é‚®ē”µč®¾č®”å’ØčÆ¢ē ”ē©¶é™¢ęœ‰é™å…¬åøåˆ›'),
(111297, 91228, 'en', 'name', 'Cancer Council Western Australia'),
(111298, 91229, 'en', 'name', 'High Flux Isotope Reactor'),
(111299, 91230, 'en', 'name', 'Emory Healthcare'),
(111300, 91231, 'en', 'name', 'Arc Research Institute'),
(111301, 91232, 'fr', 'name', 'Ɖcole nationale supĆ©rieure Louis-LumiĆØre'),
(111302, 91233, 'no_lang_code', 'name', 'NG Biotech (France)'),
(111303, 91234, 'en', 'name', 'Ministry of AYUSH'),
(111304, 91234, 'hi', 'name', 'ą¤†ą¤Æą„ą¤· ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(111305, 91235, 'no_lang_code', 'name', 'NEAL (Algeria)'),
(111306, 91236, 'fr', 'name', 'THERANOSCAN : Biomarqueurs ThƩranostiques des Cancers Bronchiques Non Ơ Petites Cellules'),
(111307, 91237, 'en', 'name', 'Technion – Israel Institute of Technology'),
(111308, 91237, 'he', 'name', 'הטכניון – מכון טכנולוגי ×œ×™×©×Ø××œ'),
(111309, 91237, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŲ®Ł†ŁŠŁˆŁ†'),
(111310, 91238, 'en', 'name', 'Masonic Cancer Center'),
(111311, 91239, 'en', 'name', 'Oak Spring Garden Foundation'),
(111312, 91240, 'en', 'name', 'Scientific and Industrial Research and Development Centre'),
(111313, 91241, 'en', 'name', 'OU Health'),
(111314, 91242, 'fr', 'name', 'Dynamiques patrimoniales et culturelles'),
(111315, 91243, 'en', 'name', 'Kazakh National Agrarian Research University'),
(111316, 91243, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ аграрный ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111317, 91243, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› ұлттық аграрлық Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(111318, 91244, 'fr', 'name', 'Laboratoire d''Economie et de Management de Nantes Atlantique'),
(111319, 91245, 'en', 'name', 'Mayo Clinic Comprehensive Cancer Center (Florida)'),
(111320, 91246, 'no_lang_code', 'name', 'Ritsumeikan University'),
(111321, 91246, 'ja', 'name', '立命館大学'),
(111322, 91247, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Saint-Jean-sur-Richelieu'),
(111323, 91247, 'en', 'name', 'Saint-Jean-sur-Richelieu Research and Development Centre'),
(111324, 91248, 'en', 'name', 'OU Health Stephenson Cancer Center'),
(111325, 91249, 'en', 'name', 'NYU Langone Health'),
(111326, 91250, 'en', 'name', 'University of Chicago Medical Center'),
(111327, 91251, 'en', 'name', 'Johns Hopkins University SAIS Bologna Center'),
(111328, 91252, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Saskatoon'),
(111329, 91252, 'en', 'name', 'Saskatoon Research and Development Centre'),
(111330, 91253, 'no_lang_code', 'name', 'Uniboard (Canada)'),
(111331, 91254, 'en', 'name', 'The Ohio State University Comprehensive Cancer Center – Arthur G. James Cancer Hospital and Richard J. Solove Research Institute'),
(111332, 91255, 'en', 'name', 'Accelerator Test Facility'),
(111333, 91256, 'en', 'name', 'Department of Agriculture, Water and the Environment'),
(111334, 91257, 'fr', 'name', 'Réanimation et soins intensifs du patient en Insuffisance respiratoire aigüe'),
(111335, 91258, 'no_lang_code', 'name', 'InnaVirVax (France)'),
(111336, 91259, 'no_lang_code', 'name', 'Chunghwa Picture Tubes (Taiwan)'),
(111337, 91259, 'zh', 'name', 'äø­čÆę˜ ē®”č‚”ä»½ęœ‰é™å…¬åø'),
(111338, 91260, 'en', 'name', 'Sankofa Healing Studio'),
(111339, 91261, 'no_lang_code', 'name', 'Boyds (United Kingdom)'),
(111340, 91262, 'fr', 'name', 'Groupe de recherche clinique – Tumeurs ThyroĆÆdiennes'),
(111341, 91263, 'en', 'name', 'University of Florida Health'),
(111342, 91264, 'no_lang_code', 'name', 'Semmtech (Netherlands)'),
(111343, 91265, 'en', 'name', 'Mathematical Institute of the Serbian Academy of Sciences and Arts'),
(111344, 91266, 'en', 'name', 'The University of Kansas Cancer Center'),
(111345, 91267, 'no_lang_code', 'name', 'Laboratoire Dielen (France)'),
(111346, 91268, 'fr', 'name', 'Centre de la lutte antiparasitaire'),
(111347, 91268, 'en', 'name', 'Pest Management Centre'),
(111348, 91269, 'en', 'name', 'Dana-Farber/Harvard Cancer Center'),
(111349, 91270, 'fr', 'name', 'Institut Pierre Louis dā€˜Ć‰pidĆ©miologie et de SantĆ© Publique'),
(111350, 91270, 'en', 'name', 'Pierre Louis Institute of Epidemiology and Public Health'),
(111351, 91271, 'no_lang_code', 'name', 'IntegraGen (France)'),
(111352, 91272, 'fr', 'name', 'Centre de Recherche Saint-Antoine'),
(111353, 91272, 'en', 'name', 'Saint-Antoine Research Center'),
(111354, 91273, 'en', 'name', 'Princeton Plasma Physics Laboratory'),
(111355, 91274, 'fr', 'name', 'Grenoble Alpes MƩtropole'),
(111356, 91275, 'en', 'name', 'O''Neal Comprehensive Cancer Center'),
(111357, 91276, 'fr', 'name', 'Laboratoire des Applications NumƩriques'),
(111358, 91277, 'en', 'name', 'Dartmouth Cancer Center'),
(111359, 91278, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Charlottetown'),
(111360, 91278, 'en', 'name', 'Charlottetown Research and Development Centre'),
(111361, 91279, 'en', 'name', 'Indira Gandhi Institute of Development Research'),
(111362, 91280, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Summerland'),
(111363, 91280, 'en', 'name', 'Summerland Research and Development Centre'),
(111364, 91281, 'it', 'name', 'WWF Italia'),
(111365, 91282, 'en', 'name', 'United Nations University World Institute for Development Economics Research'),
(111366, 91283, 'en', 'name', 'White River Junction VA Medical Center'),
(111367, 91284, 'en', 'name', 'Mayo Clinic Hospital'),
(111368, 91285, 'en', 'name', 'Lawrence Livermore National Security'),
(111369, 91286, 'en', 'name', 'WWF Tanzania'),
(111370, 91287, 'en', 'name', 'Savannah River National Laboratory'),
(111371, 91288, 'en', 'name', 'Tisch Cancer Institute'),
(111372, 91289, 'en', 'name', 'Lucile Packard Children''s Hospital'),
(111373, 91290, 'en', 'name', 'Dan L Duncan Comprehensive Cancer Center'),
(111374, 91291, 'en', 'name', 'USC Norris Comprehensive Cancer Center'),
(111375, 91292, 'en', 'name', 'Texas State University'),
(111376, 91293, 'no_lang_code', 'name', 'Bio-Medical Science (South Korea)'),
(111377, 91294, 'no_lang_code', 'name', 'Arianespace (France)'),
(111378, 91295, 'en', 'name', 'Canadian Dairy Commission'),
(111379, 91295, 'fr', 'name', 'Commission canadienne du lait'),
(111380, 91296, 'fr', 'name', 'Handicap moteur et cognitif et rƩadaptation'),
(111381, 91297, 'en', 'name', 'University of Virginia Cancer Center'),
(111382, 91298, 'en', 'name', 'Tabriz University of Medical Sciences'),
(111383, 91298, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تبریز'),
(111384, 91299, 'en', 'name', 'UC Irvine Chao Family Comprehensive Cancer Center'),
(111385, 91300, 'en', 'name', 'Department of Agriculture Food and the Marine'),
(111386, 91301, 'en', 'name', 'Mayo Clinic in Arizona'),
(111387, 91302, 'en', 'name', 'Central Mechanical Engineering Research Institute'),
(111388, 91303, 'no_lang_code', 'name', 'WWF-India'),
(111389, 91304, 'no_lang_code', 'name', 'ZIN Technologies (United States)'),
(111390, 91305, 'en', 'name', 'Center for Integrated Nanotechnologies'),
(111391, 91306, 'en', 'name', 'UNC Lineberger Comprehensive Cancer Center'),
(111392, 91307, 'no_lang_code', 'name', 'Pioneers Research and Consulting Group (Switzerland)'),
(111393, 91308, 'en', 'name', 'Gifu University'),
(111394, 91308, 'ja', 'name', '岐阜大学'),
(111395, 91309, 'no_lang_code', 'name', 'Systems Engineering Associates Corporation (United States)'),
(111396, 91310, 'en', 'name', 'Office of the Director'),
(111397, 91311, 'en', 'name', 'University of Maryland Medical System'),
(111398, 91312, 'no_lang_code', 'name', 'Military Electronic Works (Poland)'),
(111399, 91313, 'fr', 'name', 'Institut des Sciences du Calcul et des DonnƩes'),
(111400, 91313, 'en', 'name', 'Institute of Computing and Data Sciences'),
(111401, 91314, 'de', 'name', 'Deutscher Akademischer Austauschdienst'),
(111402, 91314, 'en', 'name', 'German Academic Exchange Service'),
(111403, 91315, 'en', 'name', 'UNM Comprehensive Cancer Center'),
(111404, 91316, 'en', 'name', 'Joslin Diabetes Center'),
(111405, 91317, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Lacombe'),
(111406, 91317, 'en', 'name', 'Lacombe Research and Development Centre'),
(111407, 91318, 'fr', 'name', 'Institut de Biologie Paris-Seine'),
(111408, 91319, 'no_lang_code', 'name', 'Suez (France)'),
(111409, 91320, 'en', 'name', 'Fermi Research Alliance'),
(111410, 91321, 'en', 'name', 'Duke Medical Center'),
(111411, 91322, 'no_lang_code', 'name', 'ORTEC (Netherlands)'),
(111412, 91323, 'en', 'name', 'WWF Germany'),
(111413, 91324, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Fredericton'),
(111414, 91324, 'en', 'name', 'Fredericton Research and Development Centre'),
(111415, 91325, 'no_lang_code', 'name', 'OpenAI (United States)'),
(111416, 91326, 'en', 'name', 'Kidney Foundation Hospital and Research Institute, Bangladesh'),
(111417, 91327, 'pt', 'name', 'Hospital UniversitÔrio da Universidade de São Paulo'),
(111418, 91327, 'en', 'name', 'University Hospital of the University of SĆ£o Paulo'),
(111419, 91328, 'en', 'name', 'Fred and Pamela Buffett Cancer Center'),
(111420, 91329, 'en', 'name', 'New York University Langone Orthopedic Hospital'),
(111421, 91330, 'en', 'name', 'Federal University of ParaĆ­ba'),
(111422, 91330, 'pt', 'name', 'Universidade Federal da ParaĆ­ba'),
(111423, 91331, 'en', 'name', 'Princess Nourah bint Abdulrahman University'),
(111424, 91331, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ±Ų© Ł†ŁˆŲ±Ų© بنت Ų¹ŲØŲÆ الرحمن'),
(111425, 91332, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Morden'),
(111426, 91332, 'en', 'name', 'Morden Research and Development Centre'),
(111427, 91333, 'fr', 'name', 'Centre Expert en EndomƩtriose'),
(111428, 91334, 'no_lang_code', 'name', 'Nāgānanda International Institute for Buddhist Studies'),
(111429, 91334, 'si', 'name', 'ą¶±ą·ą¶œą·ą¶±ą¶±ą·Šą¶Æ ą¶¢ą·ą¶­ą·Šā€ą¶ŗą¶±ą·Šą¶­ą¶» ą¶¶ą·žą¶Æą·Šą¶° ą¶…ą¶°ą·Šā€ą¶ŗą¶ŗą¶± ආයතනය'),
(111430, 91335, 'en', 'name', 'State Enterprise "Ivano-Frankivsk Scientific and Production Center for Standardization, Metrology and Certification"'),
(111431, 91335, 'uk', 'name', 'Державне ŠŸŃ–Гприємство ā€žŃ–Š²Š°Š½Š¾-Š¤Ń€Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ ŠŠ°ŃƒŠŗŠ¾Š²Š¾-Виробничий Центр ДтанГартизації, ŠœŠµŃ‚Ń€Š¾Š»Š¾Š³Ń–Ń— Та Š”ŠµŃ€Ń‚ŠøŃ„Ń–ŠŗŠ°Ń†Ń–Ń—ā€'),
(111432, 91336, 'en', 'name', 'National Snow and Ice Data Center'),
(111433, 91337, 'en', 'name', 'UAB Medicine'),
(111434, 91338, 'no_lang_code', 'name', 'Sport-Elec (France)'),
(111435, 91339, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Saint-Hyacinthe'),
(111436, 91339, 'en', 'name', 'Saint-Hyacinthe Research and Development Centre'),
(111437, 91340, 'fr', 'name', 'MƩthodes et Outils pour les Sciences Participatives'),
(111438, 91341, 'en', 'name', 'Scottish Government Health and Social Care Directorates'),
(111439, 91342, 'no_lang_code', 'name', 'Gipsi (France)'),
(111440, 91343, 'en', 'name', 'Modern Specialized University'),
(111441, 91343, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŲ®ŲµŲµŁŠŲ© Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(111442, 91344, 'en', 'name', 'Inter-university Institute for Data Intensive Astronomy'),
(111443, 91345, 'no_lang_code', 'name', 'Napata College'),
(111444, 91345, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© نبتة'),
(111445, 91346, 'no_lang_code', 'name', 'Thea Energy, Inc. (United States)'),
(111446, 91347, 'en', 'name', 'Education University of Hong Kong'),
(111447, 91347, 'zh', 'name', '香港教育大學'),
(111448, 91348, 'fr', 'name', 'Evolution des RƩgulations Endocriniennes'),
(111449, 91348, 'en', 'name', 'Evolution of Endocrine Regulations'),
(111450, 91349, 'no_lang_code', 'name', 'Mistral AI (France)'),
(111451, 91350, 'no_lang_code', 'name', 'WWF-Cambodia'),
(111452, 91351, 'no_lang_code', 'name', 'EMD Serono (United States)'),
(111453, 91352, 'no_lang_code', 'name', 'Verona Pharma (United Kingdom)'),
(111454, 91353, 'en', 'name', 'Canada Agricultural Review Tribunal'),
(111455, 91353, 'fr', 'name', 'Commission de rƩvision agricole du Canada'),
(111456, 91354, 'en', 'name', 'The JAX Cancer Center'),
(111457, 91355, 'de', 'name', 'Institut für Ɩkonomische Bildung'),
(111458, 91355, 'en', 'name', 'Institute for Economic Education'),
(111459, 91356, 'fr', 'name', 'Robotique et Innovation Chirurgicale'),
(111460, 91357, 'en', 'name', 'Croucher Foundation'),
(111461, 91358, 'en', 'name', 'Center for Nanoscale Materials'),
(111462, 91359, 'en', 'name', 'University of Pennsylvania Health System'),
(111463, 91360, 'en', 'name', 'WWF Cameroon'),
(111464, 91361, 'en', 'name', 'Stanford Synchrotron Radiation Lightsource'),
(111465, 91362, 'en', 'name', 'Agriculture and Agri-Food Canada'),
(111466, 91362, 'fr', 'name', 'Agriculture et Agroalimentaire Canada'),
(111467, 91363, 'no_lang_code', 'name', 'EMD Group (United States)'),
(111468, 91364, 'no_lang_code', 'name', 'Ipsen (United States)'),
(111469, 91365, 'no_lang_code', 'name', 'Interscience (France)'),
(111470, 91366, 'fr', 'name', 'Centre de recherche et de dƩveloppement de St. John''s'),
(111471, 91366, 'en', 'name', 'St. John''s Research and Development Centre'),
(111472, 91367, 'en', 'name', 'The Barbara Ann Karmanos Cancer Institute'),
(111473, 91368, 'fr', 'name', 'Groupe d’Étude sur l’HyperTension Intra CrĆ¢nienne idiopathique'),
(111474, 91369, 'no_lang_code', 'name', 'ThermoAnalytics (United States)'),
(111475, 91370, 'en', 'name', 'University of Iowa Holden Comprehensive Cancer Center'),
(111476, 91371, 'no_lang_code', 'name', 'i-Sense (South Korea)'),
(111477, 91371, 'ko', 'name', 'ćˆœģ•„ģ“ģ„¼ģŠ¤ėŠ”'),
(111478, 91372, 'no_lang_code', 'name', 'Calvagone (France)'),
(111479, 91373, 'en', 'name', 'RPH Research Foundation'),
(111480, 91374, 'en', 'name', 'PremUP'),
(111481, 91375, 'en', 'name', 'Copenhagen Municipal Hospital'),
(111482, 91375, 'da', 'name', 'KĆøbenhavns Kommunehospital'),
(111483, 91376, 'no_lang_code', 'name', 'BAE Systems Electronic Systems (United States)'),
(111484, 91377, 'en', 'name', 'Association for the Development of Enterprises and Competencies'),
(111485, 91377, 'fr', 'name', 'Association pour le DƩveloppement des Entreprises et des CompƩtences'),
(111486, 91378, 'en', 'name', 'Case Comprehensive Cancer Center'),
(111487, 91379, 'sq', 'name', 'Universiteti i GjakovĆ«s ā€œFehmi Aganiā€'),
(111488, 91379, 'en', 'name', 'University of Gjakova ā€œFehmi Aganiā€'),
(111489, 91380, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Sherbrooke'),
(111490, 91380, 'en', 'name', 'Sherbrooke Research and Development Centre'),
(111491, 91381, 'en', 'name', 'WWF-Indonesia'),
(111492, 91382, 'en', 'name', 'Mayo Clinic Comprehensive Cancer Center (Arizona)'),
(111493, 91383, 'no_lang_code', 'name', 'Bureau Veritas (France)'),
(111494, 91384, 'en', 'name', 'Farm Credit Canada'),
(111495, 91384, 'fr', 'name', 'Financement agricole Canada'),
(111496, 91385, 'no_lang_code', 'name', 'Equinor (Norway)'),
(111497, 91386, 'no_lang_code', 'name', 'Anterogen (South Korea)'),
(111498, 91386, 'ko', 'name', 'ģ•ˆķŠøė”œģ  '),
(111499, 91387, 'no_lang_code', 'name', 'Limited Liability Company Kiev International Forensic Expert Institute Of Psychological Expertise And Researchs On Polygraph (Ukraine)'),
(111500, 91387, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ міжнароГний суГово-експертний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологічної експертизи і Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ на поліграфі'),
(111501, 91388, 'en', 'name', 'Medical University of Ilam'),
(111502, 91388, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§ŪŒŁ„Ų§Ł…'),
(111503, 91389, 'fr', 'name', 'Ɖcole SupĆ©rieure des Techniques AĆ©ronautiques et de Construction Automobile'),
(111504, 91390, 'no_lang_code', 'name', 'The Ritsumeikan Trust'),
(111505, 91390, 'ja', 'name', '学栔法人立命館'),
(111506, 91391, 'fr', 'name', 'Conseil des produits agricoles du Canada'),
(111507, 91391, 'en', 'name', 'Farm Products Council of Canada'),
(111508, 91392, 'no_lang_code', 'name', 'Tenaris (Argentina)'),
(111509, 91393, 'no_lang_code', 'name', 'Tenaris (Venezuela)'),
(111510, 91394, 'no_lang_code', 'name', 'Triad Interactive (United States)'),
(111511, 91395, 'fr', 'name', 'MusƩe du Nouveau-Brunswick'),
(111512, 91395, 'en', 'name', 'New Brunswick Museum'),
(111513, 91396, 'fr', 'name', 'Centre d''Investigation Clinique Antilles Guyane'),
(111514, 91397, 'no_lang_code', 'name', 'Alstom (France)'),
(111515, 91398, 'fr', 'name', 'Genoscope'),
(111516, 91399, 'en', 'name', 'UPMC Hillman Cancer Center'),
(111517, 91400, 'en', 'name', 'Georgetown Lombardi Comprehensive Cancer Center'),
(111518, 91401, 'en', 'name', 'Alzheimer’s Disease Neuroimaging Initiative'),
(111519, 91402, 'no_lang_code', 'name', 'Barber-Nichols (United States)'),
(111520, 91403, 'id', 'name', 'Institut Agama Kristen Negeri Palangka Raya'),
(111521, 91404, 'en', 'name', 'Purdue University Institute for Cancer Research'),
(111522, 91405, 'es', 'name', 'Centro de Investigación en Red en Enfermedades Cardiovasculares'),
(111523, 91406, 'es', 'name', 'Escuela Militar de IngenierĆ­a'),
(111524, 91407, 'en', 'name', 'Tokai National Higher Education and Research System'),
(111525, 91407, 'ja', 'name', 'ę±ęµ·å›½ē«‹å¤§å­¦ę©Ÿę§‹'),
(111526, 91408, 'en', 'name', 'UCLA Jonsson Comprehensive Cancer Center'),
(111527, 91409, 'no_lang_code', 'name', 'Rastriya Banijya Bank Limited'),
(111528, 91410, 'en', 'name', 'University of Hawaii Cancer Center'),
(111529, 91411, 'no_lang_code', 'name', 'Egis (France)'),
(111530, 91412, 'en', 'name', 'Al-Rashid International Private University for Science and Technology'),
(111531, 91412, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ų“ŁŠŲÆ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© الخاصة Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(111532, 91413, 'en', 'name', 'Heriot-Watt University Malaysia'),
(111533, 91414, 'en', 'name', 'WWF-UK'),
(111534, 91415, 'en', 'name', 'Woodhull Medical and Mental Health Center'),
(111535, 91416, 'no_lang_code', 'name', 'BAE Systems (United States)'),
(111536, 91417, 'en', 'name', 'Cooperative Institute for Research in Environmental Sciences'),
(111537, 91418, 'fr', 'name', 'Transplantation et ThƩrapies Innovantes de la CornƩe'),
(111538, 91419, 'en', 'name', 'Abramson Cancer Center'),
(111539, 91420, 'en', 'name', 'Tula Foundation'),
(111540, 91421, 'fr', 'name', 'Groupe de Recherche Clinique en Neuro-urologie'),
(111541, 91422, 'no_lang_code', 'name', 'Uni Pharma (Greece)'),
(111542, 91423, 'es', 'name', 'Instituto Nacional de CancerologĆ­a'),
(111543, 91424, 'en', 'name', 'Relativistic Heavy Ion Collider'),
(111544, 91425, 'no_lang_code', 'name', 'BWI Group (Luxembourg)'),
(111545, 91426, 'en', 'name', 'Keck Hospital of USC'),
(111546, 91427, 'no_lang_code', 'name', 'Shanghai Liangyou (China)'),
(111547, 91427, 'zh', 'name', 'äøŠęµ·č‰Æå‹'),
(111548, 91428, 'en', 'name', 'University of Colorado Cancer Center'),
(111549, 91429, 'en', 'name', 'Joint Genome Institute'),
(111550, 91430, 'en', 'name', 'Argonne Tandem Linac Accelerator System'),
(111551, 91431, 'no_lang_code', 'name', 'ObeTherapy Biotechnology (France)'),
(111552, 91432, 'en', 'name', 'Sandia National Laboratories'),
(111553, 91433, 'no_lang_code', 'name', 'Asseco (Poland)'),
(111554, 91434, 'en', 'name', 'Mayo Clinic in Florida'),
(111555, 91435, 'en', 'name', 'Yuzhang Normal University'),
(111556, 91435, 'zh', 'name', 'č±«ē« åøˆčŒƒå­¦é™¢'),
(111557, 91436, 'en', 'name', 'Battelle'),
(111558, 91437, 'en', 'name', 'NYU Langone’s Laura and Isaac Perlmutter Cancer Center'),
(111559, 91438, 'en', 'name', 'National Children’s Research Centre'),
(111560, 91439, 'no_lang_code', 'name', 'FDI (France)'),
(111561, 91440, 'en', 'name', 'Cancer Center at Cold Spring Harbor Laboratory'),
(111562, 91441, 'en', 'name', 'Facility for Rare Isotope Beams'),
(111563, 91442, 'en', 'name', 'Winship Cancer Institute'),
(111564, 91443, 'en', 'name', 'Scottish Confederation of University and Research Libraries'),
(111565, 91444, 'en', 'name', 'National Spherical Torus Experiment – Upgrade'),
(111566, 91445, 'en', 'name', 'Montefiore Einstein Comprehensive Cancer Center'),
(111567, 91446, 'en', 'name', 'Kermanshah University of Medical Sciences'),
(111568, 91446, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی کرمانؓاه'),
(111569, 91447, 'en', 'name', 'Diabetes Research Foundation'),
(111570, 91447, 'fi', 'name', 'Diabetes Tutkimussaatio'),
(111571, 91448, 'en', 'name', 'MUSC Hollings Cancer Center'),
(111572, 91449, 'en', 'name', 'Vanderbilt-Ingram Cancer Center'),
(111573, 91450, 'fr', 'name', 'IMAGES : La mĆ©decine de la femme et de l’enfant assistĆ©e par l’image'),
(111574, 91451, 'en', 'name', 'Yale Cancer Center'),
(111575, 91452, 'no_lang_code', 'name', 'AstraZeneca (Switzerland)'),
(111576, 91453, 'fr', 'name', 'Groupe de recherche clinique en anesthƩsie rƩanimation mƩdecine pƩriopƩratoire'),
(111577, 91454, 'fr', 'name', 'Centre de recherche et de dƩveloppement de London'),
(111578, 91454, 'en', 'name', 'London Research and Development Centre'),
(111579, 91455, 'no_lang_code', 'name', 'Economia (Czechia)'),
(111580, 91456, 'en', 'name', 'National Metrology Institute'),
(111581, 91457, 'en', 'name', 'WWF Senegal');
INSERT INTO `ror_settings` VALUES
(111582, 91458, 'fr', 'name', 'Centre mƩdical de l''universitƩ columbia'),
(111583, 91458, 'en', 'name', 'Columbia University Irving Medical Center'),
(111584, 91458, 'es', 'name', 'centro mƩdico de la Universidad de Columbia'),
(111585, 91459, 'de', 'name', 'Deutsche Gesellschaft für Soziale Arbeit e. V.'),
(111586, 91459, 'en', 'name', 'The German Association of Social Work'),
(111587, 91460, 'no_lang_code', 'name', 'Electronics Design (Estonia)'),
(111588, 91461, 'no_lang_code', 'name', 'Alcare (Japan)'),
(111589, 91461, 'ja', 'name', 'ć‚¢ćƒ«ć‚±ć‚¢ę Ŗå¼ä¼šē¤¾'),
(111590, 91462, 'en', 'name', 'Texas State University'),
(111591, 91462, 'es', 'name', 'Universidad Estatal de Texas'),
(111592, 91462, 'fr', 'name', 'UniversitĆ© d''Ɖtat du Texas'),
(111593, 91463, 'en', 'name', 'Blueprint for Neuroscience Research'),
(111594, 91464, 'no_lang_code', 'name', 'IQVIA (France)'),
(111595, 91465, 'en', 'name', 'Belgian Federal Science Policy Office'),
(111596, 91465, 'nl', 'name', 'Federaal Wetenschapsbeleid'),
(111597, 91465, 'fr', 'name', 'Politique scientifique fƩdƩrale'),
(111598, 91466, 'en', 'name', 'Herbert Irving Comprehensive Cancer Center'),
(111599, 91467, 'en', 'name', 'Smilow Cancer Hospital'),
(111600, 91468, 'en', 'name', 'KMAN Research Institute'),
(111601, 91469, 'no_lang_code', 'name', 'Pfizer (Netherlands)'),
(111602, 91470, 'fr', 'name', 'Centre de recherche et de dƩveloppement d''Ottawa'),
(111603, 91470, 'en', 'name', 'Ottawa Research and Development Centre'),
(111604, 91471, 'fr', 'name', 'Complications Cardiovasculaires et MƩtaboliques chez les patients vivant avec le VIH'),
(111605, 91472, 'en', 'name', 'MRC Clinical Trials Unit at UCL'),
(111606, 91473, 'en', 'name', 'Canada Grain Commission'),
(111607, 91473, 'fr', 'name', 'Commission canadienne des grains'),
(111608, 91474, 'en', 'name', 'Helmholtz Institute for Functional Marine Biodiversity'),
(111609, 91474, 'de', 'name', 'Helmholtz-Institut für Funktionelle Marine Biodiversität'),
(111610, 91475, 'fr', 'name', 'NeurON : Interface Neuro-machine'),
(111611, 91476, 'fr', 'name', 'Laboratoire de MinƩralogie & Cosmochimie du MusƩum'),
(111612, 91477, 'no_lang_code', 'name', 'Insightful Modelling Limited (New Zealand)'),
(111613, 91478, 'en', 'name', 'Spallation Neutron Source'),
(111614, 91479, 'fr', 'name', 'Centre hospitalier national d''ophtalmologie des Quinze-Vingts'),
(111615, 91480, 'no_lang_code', 'name', 'Link Institut (Switzerland)'),
(111616, 91481, 'en', 'name', 'Dartmouth–Hitchcock Medical Center'),
(111617, 91482, 'en', 'name', 'Duke Cancer Institute'),
(111618, 91483, 'en', 'name', 'Ritsumeikan Asia Pacific University'),
(111619, 91483, 'ja', 'name', '立命館アジア太平擋大学'),
(111620, 91484, 'fr', 'name', 'GƩnƩtique et Immunologie des Maladies Parasitaires'),
(111621, 91485, 'es', 'name', 'Centro de Investigación Biomédica en Red de CÔncer'),
(111622, 91486, 'en', 'name', 'Barnes-Jewish Hospital'),
(111623, 91487, 'en', 'name', 'Indian Health Service'),
(111624, 91488, 'en', 'name', 'OHSU Knight Cancer Institute'),
(111625, 91489, 'en', 'name', 'Pacific Northwest National Laboratory'),
(111626, 91490, 'no_lang_code', 'name', 'Sabancı Holding (Turkey)'),
(111627, 91491, 'no_lang_code', 'name', 'Elekta (Sweden)'),
(111628, 91492, 'no_lang_code', 'name', 'GenoSafe'),
(111629, 91493, 'fr', 'name', 'Centre Hospitalier Public du Cotentin'),
(111630, 91494, 'fr', 'name', 'Laboratoire de la Mer'),
(111631, 91495, 'no_lang_code', 'name', 'Genopole (France)'),
(111632, 91496, 'fr', 'name', 'DƩlƩgation Paris 6'),
(111633, 91497, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Kentville'),
(111634, 91497, 'en', 'name', 'Kentville Research and Development Centre'),
(111635, 91498, 'fr', 'name', 'DrĆ©panocytose : groupe de Recherche de Paris – Sorbonne UniversitĆ©'),
(111636, 91499, 'no_lang_code', 'name', 'Owens Corning (France)'),
(111637, 91500, 'en', 'name', 'University of Maryland Marlene and Stewart Greenebaum Comprehensive Cancer Center'),
(111638, 91501, 'no_lang_code', 'name', 'Eurofins (Luxembourg)'),
(111639, 91502, 'no_lang_code', 'name', 'Tenaris (United States)'),
(111640, 91503, 'no_lang_code', 'name', 'Infotec (United Kingdom)'),
(111641, 91504, 'en', 'name', 'Johns Hopkins University – Nanjing University Center for Chinese and American Studies'),
(111642, 91504, 'zh', 'name', 'å—äŗ¬å¤§å­¦ā€”ēŗ¦ēæ°ę–ÆĀ·éœę™®é‡‘ę–Æå¤§å­¦äø­ē¾Žę–‡åŒ–ē ”ē©¶äø­åæƒ'),
(111643, 91505, 'en', 'name', 'Agassiz Research and Development Centre'),
(111644, 91505, 'fr', 'name', 'Centre de recherche et de dƩveloppement d''Agassiz'),
(111645, 91506, 'en', 'name', 'Bellevue Hospital Center'),
(111646, 91507, 'no_lang_code', 'name', 'Apollo Medical Imaging Technology (Australia)'),
(111647, 91508, 'no_lang_code', 'name', 'Alpenglow Instruments (United States)'),
(111648, 91509, 'en', 'name', 'Max Planck Institute for Dynamics of Complex Technical Systems'),
(111649, 91509, 'de', 'name', 'Max-Planck-Institut für Dynamik Komplexer Technischer Systeme'),
(111650, 91510, 'en', 'name', 'International College of Management and Sports'),
(111651, 91511, 'fr', 'name', 'Agence canadienne du pari mutuel'),
(111652, 91511, 'en', 'name', 'Canadian Pari-Mutuel Agency'),
(111653, 91512, 'de', 'name', 'Landes Tirols'),
(111654, 91513, 'fr', 'name', 'Centre Hospitalier de Versailles'),
(111655, 91514, 'fr', 'name', 'Des Maladies RƩnales Rares aux Maladies FrƩquentes, Remodelage et RƩparation'),
(111656, 91515, 'en', 'name', 'Mayo Clinic Comprehensive Cancer Center (Minnesota)'),
(111657, 91516, 'nl', 'name', 'Nuffic'),
(111658, 91517, 'no_lang_code', 'name', 'Centene Corporation (United States)'),
(111659, 91518, 'en', 'name', 'William Harvey Research Institute'),
(111660, 91519, 'en', 'name', 'Brandon Research and Development Centre'),
(111661, 91519, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Brandon'),
(111662, 91520, 'en', 'name', 'Sandia National Laboratories California'),
(111663, 91521, 'fr', 'name', 'CERES - Centre d''expƩrimentation en mƩthodes numƩriques pour les recherches en sciences humaines et sociales'),
(111664, 91522, 'en', 'name', 'ITI International Team for Implantology'),
(111665, 91523, 'no_lang_code', 'name', 'General Dynamics (United States)'),
(111666, 91524, 'en', 'name', 'National Energy Research Scientific Computing Center'),
(111667, 91525, 'en', 'name', 'Tisch Hospital'),
(111668, 91526, 'en', 'name', 'McLaren Health Care'),
(111669, 91527, 'en', 'name', 'Hakai Institute'),
(111670, 91528, 'en', 'name', 'VCU Massey Comprehensive Cancer Center'),
(111671, 91529, 'fr', 'name', 'La Maison de la RiviĆØre'),
(111672, 91530, 'id', 'name', 'Balai Besar Pengujian Standar Instrumen Mekanisasi Pertanian'),
(111673, 91530, 'en', 'name', 'Indonesian Center for Agricultural Mechanization Standard Testing'),
(111674, 91531, 'no_lang_code', 'name', 'Broderies Leveaux (France)'),
(111675, 91532, 'fr', 'name', 'Biomarqueurs d’urgence et de rĆ©animation'),
(111676, 91533, 'en', 'name', 'Berry College'),
(111677, 91534, 'no_lang_code', 'name', 'Da Vinci Labs (France)'),
(111678, 91535, 'de', 'name', 'Thüringer Ministerium für Wirtschaft, Wissenschaft und Digitale Gesellschaft'),
(111679, 91536, 'fr', 'name', 'Analyse, Recherche, DƩveloppement et Evaluation en Endourologie et Lithiase Urinaire'),
(111680, 91537, 'en', 'name', 'Iowa Academy of Science'),
(111681, 91538, 'es', 'name', 'WWF Colombia'),
(111682, 91539, 'en', 'name', 'Bavarian Ministry of Economic Affairs and Media, Energy and Technology'),
(111683, 91539, 'de', 'name', 'Bayerisches Staatsministerium für Wirtschaft und Medien, Energie und Technologie'),
(111684, 91540, 'no_lang_code', 'name', 'Philip Morris International (United States)'),
(111685, 91541, 'fr', 'name', 'Centre Hospitalier de Saint-Malo'),
(111686, 91542, 'en', 'name', 'UF Health Cancer Center'),
(111687, 91543, 'en', 'name', 'University of Eloued'),
(111688, 91543, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁŠ'),
(111689, 91544, 'no_lang_code', 'name', 'Pristyn Care (India)'),
(111690, 91544, 'hi', 'name', 'ą¤Ŗą„ą¤°ą¤æą¤øą„ą¤Ÿą„€ą¤Ø ą¤•ą„‡ą¤Æą¤°'),
(111691, 91545, 'es', 'name', 'Observatorio del Caribe Colombiano'),
(111692, 91546, 'pt', 'name', 'Associação Azul Moçambique'),
(111693, 91547, 'en', 'name', 'World Wildlife Fund'),
(111694, 91548, 'en', 'name', 'Johns Hopkins University School of Advanced International Studies'),
(111695, 91549, 'no_lang_code', 'name', 'RĆøros Vinduer og DĆører (Norway)'),
(111696, 91550, 'en', 'name', 'California Pacific Medical Center'),
(111697, 91551, 'da', 'name', 'WWF Danmark'),
(111698, 91552, 'en', 'name', 'Zahedan University of Medical Sciences'),
(111699, 91553, 'en', 'name', 'Henri PoincarƩ Institute'),
(111700, 91553, 'fr', 'name', 'Institut Henri PoincarƩ'),
(111701, 91554, 'fr', 'name', 'HƓpital AndrƩ Mignot'),
(111702, 91555, 'en', 'name', 'Ministry of Agriculture'),
(111703, 91556, 'en', 'name', 'metaBUS'),
(111704, 91557, 'no_lang_code', 'name', 'Amsterdam Scientific Instruments (Netherlands)'),
(111705, 91558, 'en', 'name', 'Dana-Farber Cancer Institute'),
(111706, 91559, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Swift Current'),
(111707, 91559, 'en', 'name', 'Swift Current Research and Development Centre'),
(111708, 91560, 'fr', 'name', 'Centre de toxicomanie et de santƩ mentale'),
(111709, 91560, 'en', 'name', 'Centre for Addiction and Mental Health'),
(111710, 91561, 'fr', 'name', 'Centre d''Ʃtudes sur la mondialisation, les conflits, les territoires et les vulnƩrabilitƩs'),
(111711, 91562, 'no_lang_code', 'name', 'Spectroswiss (Switzerland)'),
(111712, 91563, 'en', 'name', 'Argonne Leadership Computing Facility'),
(111713, 91564, 'en', 'name', 'Institute of Oceanology Polish Academy of Sciences'),
(111714, 91564, 'pl', 'name', 'Instytut Oceanologii Polskiej Akademii Nauk'),
(111715, 91565, 'en', 'name', 'Happier Lives Institute'),
(111716, 91566, 'en', 'name', 'Indiana State University'),
(111717, 91567, 'en', 'name', 'Continuous Electron Beam Accelerator Facility'),
(111718, 91568, 'es', 'name', 'Fundación Medina'),
(111719, 91569, 'en', 'name', 'St. Clare Hospital in Lakewood'),
(111720, 91570, 'en', 'name', 'CHI Health Good Samaritan'),
(111721, 91571, 'en', 'name', 'Canada First Research Excellence Fund'),
(111722, 91571, 'fr', 'name', 'Fonds d’excellence en recherche ApogĆ©e Canada'),
(111723, 91572, 'en', 'name', 'Pathwest Laboratory Medicine'),
(111724, 91573, 'en', 'name', 'National Transportation Library'),
(111725, 91574, 'en', 'name', 'CHI Health St. Mary’s'),
(111726, 91575, 'en', 'name', 'International Isocyanate Institute, Inc.'),
(111727, 91576, 'no_lang_code', 'name', 'HRS Heat Exchangers (Spain)'),
(111728, 91577, 'en', 'name', 'Virginia Mason Medical Center'),
(111729, 91578, 'en', 'name', 'Virginia Mason Memorial'),
(111730, 91579, 'en', 'name', 'Virginia Mason Lynnwood Medical Center'),
(111731, 91580, 'bs', 'name', 'JNU Institut za zaŔtitu i ekologiju Republike Srpske, Banja Luka'),
(111732, 91580, 'en', 'name', 'PSI Institute for Protection and Ecology of the Republic of Srpska, Banja'),
(111733, 91580, 'sr', 'name', 'ŠˆŠŠ£ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š·Š°ŃˆŃ‚ŠøŃ‚Ńƒ Šø екологију Републике Дрпске, Š‘Š°ŃšŠ° Š›ŃƒŠŗŠ°'),
(111734, 91581, 'en', 'name', 'Annapoorana Medical College and Hospitals'),
(111735, 91582, 'en', 'name', 'Jio Institute'),
(111736, 91583, 'en', 'name', 'Bailey-Boushay House'),
(111737, 91584, 'fi', 'name', 'Teknologian Tutkimuskeskus VTT'),
(111738, 91584, 'en', 'name', 'VTT Technical Research Centre of Finland'),
(111739, 91585, 'en', 'name', 'Facility for Advanced Accelerator Experimental Tests-II'),
(111740, 91586, 'en', 'name', 'CHI Health Lakeside'),
(111741, 91587, 'fr', 'name', 'Institut National du Cancer'),
(111742, 91587, 'es', 'name', 'Instituto Nacional del CƔncer'),
(111743, 91587, 'en', 'name', 'National Cancer Institute'),
(111744, 91588, 'en', 'name', 'T.K.M. College of Arts and Science'),
(111745, 91589, 'en', 'name', 'Herat Regional Hospital'),
(111746, 91590, 'nl', 'name', 'Noord-Hollands Archief'),
(111747, 91591, 'ca', 'name', 'TicSalut'),
(111748, 91592, 'en', 'name', 'Loyola University Chicago'),
(111749, 91592, 'es', 'name', 'Universidad Loyola Chicago'),
(111750, 91592, 'fr', 'name', 'UniversitƩ loyola de chicago'),
(111751, 91593, 'en', 'name', 'CICON - Center for Innovation in Construction'),
(111752, 91593, 'pt', 'name', 'CICON - Centro para a Inovação na Construção'),
(111753, 91594, 'en', 'name', 'Congressionally Directed Medical Research Programs'),
(111754, 91595, 'en', 'name', 'University Hospital Erlangen'),
(111755, 91595, 'de', 'name', 'UniversitƤtsklinikum Erlangen'),
(111756, 91596, 'fr', 'name', 'UniversitƩ PrivƩe Africaine Franco-Arabe'),
(111757, 91597, 'en', 'name', 'St. Anne Hospital in Burien'),
(111758, 91598, 'es', 'name', 'SINPROMI'),
(111759, 91599, 'de', 'name', 'Otto Brenner Stiftung'),
(111760, 91600, 'en', 'name', 'National University of Natural Medicine'),
(111761, 91601, 'en', 'name', 'American Burn Association'),
(111762, 91602, 'en', 'name', 'North Carolina Agricultural and Technical State University'),
(111763, 91602, 'fr', 'name', 'UniversitĆ© agricole et technique d''Ɖtat de caroline du nord'),
(111764, 91603, 'en', 'name', 'Deendayal Research Institute'),
(111765, 91604, 'en', 'name', 'Hopkins Extreme Materials Institute'),
(111766, 91605, 'en', 'name', 'Arctic Sciences'),
(111767, 91606, 'no_lang_code', 'name', 'GEOMAR Technologie GmbH - GTG'),
(111768, 91607, 'es', 'name', 'Instituto Portuario de Estudios y Cooperación'),
(111769, 91607, 'en', 'name', 'Port Institute for Studies and Cooperation'),
(111770, 91608, 'en', 'name', 'CHI Health Schuyler'),
(111771, 91609, 'en', 'name', 'Institute for Foundations of Machine Learning'),
(111772, 91610, 'no_lang_code', 'name', 'Biomax Informatics (Germany)'),
(111773, 91611, 'pt', 'name', 'Academia Itapecuruense de CiĆŖncias, Letras e Artes'),
(111774, 91612, 'en', 'name', 'CHI Health Immanuel'),
(111775, 91613, 'en', 'name', 'Indian Numismatic, Historical and Cultural Research Foundation'),
(111776, 91613, 'hi', 'name', 'इंऔियन ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤°ą¤æą¤øą¤°ą„ą¤š इन ą¤Øą„ą¤®ą¤æą¤øą„ą¤®ą¤¾ą¤Ÿą¤æą¤• ą¤øą„ą¤Ÿą¤”ą„€ą¤ø'),
(111777, 91614, 'en', 'name', 'Anderson University - South Carolina'),
(111778, 91615, 'en', 'name', 'Arctic Submarine Laboratory'),
(111779, 91616, 'no_lang_code', 'name', 'Raja Shankar Shah University'),
(111780, 91617, 'en', 'name', 'CCT College Dublin'),
(111781, 91618, 'fi', 'name', 'Mittatekniikan keskus'),
(111782, 91618, 'en', 'name', 'National metrology institute VTT MIKES'),
(111783, 91619, 'no_lang_code', 'name', 'Bahauddin Zakariya University'),
(111784, 91619, 'ur', 'name', 'ŲØŪŲ§Ų¤Ų§Ł„ŲÆŪŒŁ† زکریا ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(111785, 91620, 'de', 'name', 'Klinikum Fichtelgebirge'),
(111786, 91621, 'en', 'name', 'Clifford University'),
(111787, 91622, 'en', 'name', 'Mother Teresa University'),
(111788, 91622, 'sq', 'name', 'Universiteti Nƫnƫ Tereza nƫ Shkup'),
(111789, 91622, 'mk', 'name', 'Универзитет Мајка Тереза'),
(111790, 91623, 'en', 'name', 'Shanghai Artificial Intelligence Laboratory'),
(111791, 91623, 'zh', 'name', 'äøŠęµ·äŗŗå·„ę™ŗčƒ½å®žéŖŒå®¤'),
(111792, 91624, 'es', 'name', 'Fundación Madrimasd Para el Conocimiento'),
(111793, 91625, 'it', 'name', 'Gruppo Nazionale per l''Analisi Matematica, la ProbabilitĆ  e le loro Applicazioni'),
(111794, 91625, 'en', 'name', 'National Group for Mathematical Analysis, Probability and their Applications'),
(111795, 91626, 'en', 'name', 'St. Francis Hospital in Federal Way'),
(111796, 91627, 'en', 'name', 'University of Monastir'),
(111797, 91627, 'fr', 'name', 'UniversitƩ de monastir'),
(111798, 91627, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†Ų³ŲŖŁŠŲ±'),
(111799, 91628, 'no_lang_code', 'name', 'EnergĆ­a & Celulosa (Spain)'),
(111800, 91629, 'en', 'name', 'St. Joseph Medical Center in Tacoma'),
(111801, 91630, 'no_lang_code', 'name', 'ELCOGAS (Spain)'),
(111802, 91631, 'no_lang_code', 'name', 'Vicomtech'),
(111803, 91632, 'en', 'name', 'Bavarian Polymer Institute'),
(111804, 91632, 'de', 'name', 'Bayerisches Polymerinstitut'),
(111805, 91633, 'en', 'name', 'St. Anthony Hospital in Gig Harbor'),
(111806, 91634, 'en', 'name', 'Council for Higher Education'),
(111807, 91634, 'he', 'name', 'המועצה להשכלה גבוהה'),
(111808, 91634, 'ar', 'name', 'مجلس Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ'),
(111809, 91635, 'en', 'name', 'International Audio Laboratories Erlangen'),
(111810, 91636, 'en', 'name', 'Harrison Medical Center'),
(111811, 91637, 'en', 'name', 'Venter Pharma (Spain)'),
(111812, 91638, 'en', 'name', 'CHI Health'),
(111813, 91639, 'en', 'name', 'Virginia Mason Institute'),
(111814, 91640, 'no_lang_code', 'name', 'Anı Yayıncılık (Turkey)'),
(111815, 91641, 'en', 'name', 'Intelligent Transportation Systems Joint Program Office'),
(111816, 91642, 'en', 'name', 'Amrita Institute of Medical Sciences and Research Centre'),
(111817, 91642, 'ml', 'name', 'ą“…ą“®ąµƒą“¤ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“øą“Æąµ»ą“øą“øąµ'),
(111818, 91643, 'it', 'name', 'Fondazione Centro Nazionale di Adroterapia Oncologica'),
(111819, 91643, 'en', 'name', 'National Center for Oncological Hadrontherapy'),
(111820, 91644, 'en', 'name', 'Federal Motor Carrier Safety Administration'),
(111821, 91645, 'ms', 'name', 'Institut Kesihatan Negara'),
(111822, 91645, 'en', 'name', 'National Institutes of Health'),
(111823, 91646, 'en', 'name', 'Fermilab Accelerator Complex'),
(111824, 91647, 'en', 'name', 'National University of Sciences and Technology'),
(111825, 91648, 'es', 'name', 'Fundación Séneca - Agencia de Ciencia y Tecnología de la Región de Murcia'),
(111826, 91649, 'fr', 'name', 'Ecole Mohammadia d''IngƩnieurs'),
(111827, 91649, 'ar', 'name', 'المدرسة Ų§Ł„Ł…Ų­Ł…ŲÆŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ†'),
(111828, 91650, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado do Rio Grande do Sul'),
(111829, 91651, 'en', 'name', 'Maduka University'),
(111830, 91652, 'en', 'name', 'Donetsk State University'),
(111831, 91653, 'en', 'name', 'University of Garmsar'),
(111832, 91654, 'ca', 'name', 'Grup CHM Mental Salut'),
(111833, 91655, 'no_lang_code', 'name', 'Affimed Therapeutics (Germany)'),
(111834, 91656, 'en', 'name', 'UT-Battelle'),
(111835, 91657, 'en', 'name', 'CHI Franciscan Rehabilitation Hospital'),
(111836, 91658, 'id', 'name', 'Universitas Trinita'),
(111837, 91659, 'en', 'name', 'University Transportation Centers Program'),
(111838, 91660, 'no_lang_code', 'name', 'Novartis (United States)'),
(111839, 91661, 'en', 'name', 'Swamy Vivekanadha Medical College Hospital and Research Institute'),
(111840, 91662, 'en', 'name', 'Turkish Society of Anesthesiology and Reanimation'),
(111841, 91662, 'tr', 'name', 'Türk Anesteziyoloji ve Reanimasyon Derneği'),
(111842, 91663, 'en', 'name', 'Lonestar Education and Research Network'),
(111843, 91664, 'es', 'name', 'Fundación Bancaja'),
(111844, 91665, 'pt', 'name', 'Museu de Ciências Naturais da Fundação Zoobotânica do Rio Grande do Sul'),
(111845, 91665, 'en', 'name', 'Museum of Natural Sciences of the Rio Grande do Sul Zoobotanical Foundation'),
(111846, 91666, 'ms', 'name', 'Kementerian Kesihatan Malaysia'),
(111847, 91666, 'en', 'name', 'Ministry of Health'),
(111848, 91667, 'en', 'name', 'Japanese Society of Toxicologic Pathology'),
(111849, 91667, 'ja', 'name', 'ę—„ęœ¬ęÆ’ę€§ē—…ē†å­¦ä¼š'),
(111850, 91668, 'en', 'name', 'AAA College of Engineering and Technology'),
(111851, 91669, 'en', 'name', 'American Civil Liberties Union'),
(111852, 91670, 'en', 'name', 'Ural Scientific Research Institute for Metrology'),
(111853, 91670, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(111854, 91671, 'no_lang_code', 'name', 'Abbott Vascular (United States)'),
(111855, 91672, 'en', 'name', 'Division of Cancer Epidemiology and Genetics'),
(111856, 91673, 'es', 'name', 'Gobierno de Extremadura'),
(111857, 91673, 'en', 'name', 'Government of Extremadura'),
(111858, 91674, 'en', 'name', 'CHI Health Creighton University Medical Center - Bergan Mercy'),
(111859, 91675, 'es', 'name', 'All World Certificación'),
(111860, 91676, 'en', 'name', 'The Valentine'),
(111861, 91677, 'fr', 'name', 'Ecole Nationale d''IngƩnieurs de Monastir'),
(111862, 91677, 'hy', 'name', 'National Engineering School of Monastir'),
(111863, 91677, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† ŲØŲ§Ł„Ł…Ł†Ų³ŲŖŁŠŲ±'),
(111864, 91678, 'en', 'name', 'Fanconi Anemia Research Fund'),
(111865, 91679, 'no_lang_code', 'name', 'Forest Laboratories (United States)'),
(111866, 91680, 'en', 'name', 'Max Planck Institute for Heart and Lung Research'),
(111867, 91680, 'de', 'name', 'Max-Planck-Institut für Herz- und Lungenforschung'),
(111868, 91681, 'id', 'name', 'Universitas Borneo Tarakan'),
(111869, 91682, 'en', 'name', 'Nebraska Spine Hospital'),
(111870, 91683, 'en', 'name', 'Meridian Behavioral Health'),
(111871, 91684, 'en', 'name', 'The College of Industrial Technology'),
(111872, 91684, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„ŲµŁ†Ų§Ų¹ŁŠŲ©- Ł…ŲµŲ±Ų§ŲŖŲ© - Ł„ŁŠŲØŁŠŲ§'),
(111873, 91685, 'en', 'name', 'CHI Health Plainview'),
(111874, 91686, 'en', 'name', 'Lasting Hope Recovery Center'),
(111875, 91687, 'en', 'name', 'Perfect Harmony Health'),
(111876, 91688, 'en', 'name', 'Louisiana Tech University'),
(111877, 91688, 'fr', 'name', 'UniversitƩ de louisiana tech'),
(111878, 91689, 'en', 'name', 'Industrial Union of Metalworkers'),
(111879, 91689, 'de', 'name', 'Industriegewerkschaft Metall'),
(111880, 91690, 'en', 'name', 'Undersea Warfighting Development Center'),
(111881, 91691, 'en', 'name', 'Barcelona Macula Foundation'),
(111882, 91692, 'en', 'name', 'CHI Health St. Francis'),
(111883, 91693, 'no_lang_code', 'name', 'Empresa Municipal de Transportes de Madrid'),
(111884, 91694, 'en', 'name', 'Robotiker'),
(111885, 91695, 'no_lang_code', 'name', 'Asociación de Investigación de las Industrias de la Construcción'),
(111886, 91696, 'no_lang_code', 'name', 'Novartis Gene Therapies Switzerland GmbH'),
(111887, 91697, 'no_lang_code', 'name', 'Universal Learning Systems (Ireland)'),
(111888, 91698, 'en', 'name', 'U.S. Geological Survey, Alaska Science Center'),
(111889, 91699, 'en', 'name', 'Centre of Hydrometeorological Service'),
(111890, 91699, 'uz', 'name', 'Gidrometeorologiya xizmati markazi'),
(111891, 91700, 'en', 'name', 'Triagon Academy'),
(111892, 91701, 'en', 'name', 'Atlantic White Shark Conservancy'),
(111893, 91702, 'en', 'name', 'Kailash Healthcare'),
(111894, 91703, 'id', 'name', 'Politeknik Negeri Sriwijaya'),
(111895, 91704, 'fr', 'name', 'Centre universitaire Salhi Ahmed - Naama'),
(111896, 91704, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ ŲµŲ§Ł„Ų­ŁŠ Ų£Ų­Ł…ŲÆ النعامة'),
(111897, 91705, 'en', 'name', 'Afrischolar Discovery Initiative'),
(111898, 91706, 'en', 'name', 'Virginia Mason Federal Way Medical Center'),
(111899, 91707, 'en', 'name', 'Cold Spring Harbor Laboratory'),
(111900, 91708, 'en', 'name', 'Rawalpindi Women University'),
(111901, 91709, 'en', 'name', 'OSG Consortium'),
(111902, 91710, 'en', 'name', 'Tashkent State University of Economics'),
(111903, 91710, 'uz', 'name', 'Toshkent Davlat Iqtisodiyot Universiteti'),
(111904, 91710, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111905, 91711, 'de', 'name', 'Optotransmitter-Umweltschutz-Technologie e.V.'),
(111906, 91712, 'en', 'name', 'Virginia Mason Bainbridge Island Medical Center'),
(111907, 91713, 'en', 'name', 'Benaroya Research Institute'),
(111908, 91714, 'en', 'name', 'Van Leeuwenhoek Centre for Advanced Microscopy'),
(111909, 91715, 'en', 'name', 'King Salman International University'),
(111910, 91716, 'en', 'name', 'Taiwanese American Arts Council'),
(111911, 91716, 'zh', 'name', 'å°ē¾Žę–‡č—å”ęœƒ'),
(111912, 91717, 'en', 'name', 'Tashenev University'),
(111913, 91717, 'kk', 'name', 'Жұмабек Š¢Ó™ŃˆŠµŠ½ŠµŠ² атынГағы Университеті'),
(111914, 91718, 'es', 'name', 'Instituto de Evaluación e Ingeniería Avanzada'),
(111915, 91719, 'en', 'name', 'Arctic Athabaskan Council'),
(111916, 91720, 'tr', 'name', 'Seyhan Devlet Hastanesi'),
(111917, 91721, 'en', 'name', 'CHI Health Missouri Valley'),
(111918, 91722, 'es', 'name', 'Ministerio de Desarrollo Agrario y Riego'),
(111919, 91723, 'en', 'name', 'Eastern Kentucky University'),
(111920, 91724, 'en', 'name', 'Commonwealth of Learning'),
(111921, 91725, 'en', 'name', 'Virginia Mason Franciscan Health'),
(111922, 91726, 'en', 'name', 'Ontario Research Foundation'),
(111923, 91727, 'en', 'name', 'BioCruces Health research Institute'),
(111924, 91728, 'en', 'name', 'International Economic Association'),
(111925, 91729, 'no_lang_code', 'name', 'PREreview'),
(111926, 91730, 'no_lang_code', 'name', 'Labvantage - Biomax GmbH (Germany)'),
(111927, 91731, 'en', 'name', 'WIN Consortium'),
(111928, 91732, 'no_lang_code', 'name', 'GMV Innovating Solutions (Spain)'),
(111929, 91733, 'es', 'name', 'Centro Nacional de EnergĆ­as Renovables'),
(111930, 91733, 'en', 'name', 'National Renewable Energy Centre'),
(111931, 91734, 'en', 'name', 'CHI Health Mercy Corning'),
(111932, 91735, 'id', 'name', 'Sekolah Tinggi Agama Islam Kuningan'),
(111933, 91736, 'en', 'name', 'Bureau of Transportation Statistics'),
(111934, 91737, 'en', 'name', 'Catholic Health Initiatives'),
(111935, 91738, 'en', 'name', 'St. Elizabeth Hospital in Enumclaw'),
(111936, 91739, 'es', 'name', 'Solti'),
(111937, 91740, 'no_lang_code', 'name', 'Novartis Gene Therapies, Inc. (United States)'),
(111938, 91741, 'en', 'name', 'Institute of Geology and Geophysics named after Kh.M. Abdullaev'),
(111939, 91741, 'uz', 'name', 'X.M.Аbdullaev nomidagi "Geologiya va geofizika instituti"'),
(111940, 91741, 'ru', 'name', 'Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø геофизики» имени Š„.М.АбГуллаева'),
(111941, 91742, 'es', 'name', 'Centro de Satélites de la Unión Europea'),
(111942, 91742, 'en', 'name', 'European Union Satellite Centre'),
(111943, 91743, 'en', 'name', 'CHI Health Nebraska Heart'),
(111944, 91744, 'en', 'name', 'The Japanese Society of Toxicology'),
(111945, 91744, 'ja', 'name', 'ę—„ęœ¬ęÆ’ę€§å­¦ä¼š'),
(111946, 91745, 'en', 'name', 'Antarctic Sciences'),
(111947, 91746, 'en', 'name', 'Thu Dau Mot University'),
(111948, 91746, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Thį»§ Dįŗ§u Mį»™t'),
(111949, 91747, 'no_lang_code', 'name', 'Industria de Alimentos ZenĆŗ S.A.S. (Colombia)'),
(111950, 91748, 'en', 'name', 'University of Siedlce'),
(111951, 91748, 'pl', 'name', 'Uniwersytet w Siedlcach'),
(111952, 91749, 'en', 'name', 'Pipeline and Hazardous Materials Safety Administration'),
(111953, 91750, 'no_lang_code', 'name', 'Boeing (Spain)'),
(111954, 91751, 'en', 'name', 'St. Michael Medical Center in Silverdale'),
(111955, 91752, 'en', 'name', 'Ajou University in Tashkent'),
(111956, 91752, 'uz', 'name', 'Toshkent shahridagi Adju Universiteti'),
(111957, 91752, 'ru', 'name', 'Университет АГжу в гороГе Š¢Š°ŃˆŠŗŠµŠ½Ń‚'),
(111958, 91753, 'no_lang_code', 'name', 'Bolding & Bruggeman'),
(111959, 91754, 'en', 'name', 'Resnick Sustainability Institute'),
(111960, 91755, 'it', 'name', 'Regione Autonoma della Sardegna'),
(111961, 91756, 'no_lang_code', 'name', 'Helvia.ai (Greece)'),
(111962, 91757, 'en', 'name', 'Office of the Assistant Secretary for Research and Technology'),
(111963, 91758, 'en', 'name', 'Tertiary Education Trust Fund'),
(111964, 91759, 'no_lang_code', 'name', 'Alcon (United States)'),
(111965, 91760, 'en', 'name', 'Chinese Academy of Social Sciences'),
(111966, 91760, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢'),
(111967, 91761, 'en', 'name', 'National Engineering School of Sfax'),
(111968, 91761, 'fr', 'name', 'Ɖcole nationale d''IngĆ©nieurs de Sfax'),
(111969, 91761, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† بصفاقس'),
(111970, 91762, 'nl', 'name', 'Stichting OpenAccess'),
(111971, 91763, 'en', 'name', 'Trisakti University'),
(111972, 91763, 'id', 'name', 'Universitas Trisakti'),
(111973, 91764, 'en', 'name', 'Go2 for Lung Cancer'),
(111974, 91765, 'en', 'name', 'Sohn Conference Foundation'),
(111975, 91766, 'en', 'name', 'China Academy of Railway Sciences'),
(111976, 91766, 'zh', 'name', '中国铁道科学研究院'),
(111977, 91767, 'en', 'name', 'State Key Laboratory of Media Convergence and Communication'),
(111978, 91767, 'zh', 'name', 'åŖ’ä½“čžåˆäøŽä¼ ę’­å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(111979, 91768, 'fr', 'name', 'Ministre Du DĆ©veloppement Ɖconomique Et De L’innovation'),
(111980, 91768, 'en', 'name', 'Ontario Ministry of Economic Development and Innovation'),
(111981, 91769, 'en', 'name', 'Rotterdam Foundation for Blind People'),
(111982, 91769, 'nl', 'name', 'Rotterdamse Stichting Blindenbelangen'),
(111983, 91770, 'en', 'name', 'State Key Laboratory of Mechanical Structure Mechanics and Control'),
(111984, 91770, 'zh', 'name', 'ęœŗę¢°ē»“ęž„åŠ›å­¦åŠęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(111985, 91771, 'es', 'name', 'Agencia de Salud Pública de Cataluña'),
(111986, 91771, 'ca', 'name', 'AgĆØncia de Salut PĆŗblica de Catalunya'),
(111987, 91771, 'en', 'name', 'Public Health Agency of Catalonia'),
(111988, 91772, 'fr', 'name', 'Réceptions et médiations de littératures et de cultures étrangères et comparées'),
(111989, 91773, 'es', 'name', 'Fundación General'),
(111990, 91774, 'no_lang_code', 'name', 'New Infrared Technologies (Spain)'),
(111991, 91775, 'en', 'name', 'International Society for the Advancement of Spine Surgery'),
(111992, 91776, 'en', 'name', 'Neurofibromatosis Therapeutic Acceleration Program'),
(111993, 91777, 'en', 'name', 'Vinzenz Pallotti University'),
(111994, 91778, 'en', 'name', 'Solar Technologies go Hybrid'),
(111995, 91779, 'no_lang_code', 'name', 'Taiyuan Iron and Steel Group (China)'),
(111996, 91779, 'zh', 'name', 'å¤ŖåŽŸé’¢é“é›†å›¢'),
(111997, 91780, 'en', 'name', 'Philippine Council for Industry, Energy, and Emerging Technology Research and Development'),
(111998, 91781, 'en', 'name', 'Aragon Chemistry and Materials Center'),
(111999, 91781, 'es', 'name', 'Centro de Química y Materiales de Aragón'),
(112000, 91782, 'es', 'name', 'Museo de Arqueologƭa de CataluƱa'),
(112001, 91782, 'ca', 'name', 'Museu d''Arqueologia de Catalunya'),
(112002, 91783, 'en', 'name', 'Northwest University'),
(112003, 91783, 'zh', 'name', 'č„æåŒ—å¤§å­¦'),
(112004, 91784, 'es', 'name', 'Universidad Laboral de Córdoba'),
(112005, 91784, 'ca', 'name', 'Universitat Laboral de Còrdova'),
(112006, 91785, 'en', 'name', 'Institute of Software'),
(112007, 91785, 'zh', 'name', '中国科学院软件研究所'),
(112008, 91786, 'en', 'name', 'Shanghai Institute of Microsystem and Information Technology'),
(112009, 91786, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·å¾®ē³»ē»ŸäøŽäæ”ęÆęŠ€ęœÆē ”ē©¶ę‰€'),
(112010, 91787, 'fr', 'name', 'Laboratoire de conception et contrÓle des systèmes de production'),
(112011, 91787, 'en', 'name', 'Laboratory of Design and Control of Production Systems'),
(112012, 91788, 'en', 'name', 'Institute for Molecular and Cell Biology'),
(112013, 91788, 'pt', 'name', 'Instituto de Biologia Molecular e Celular'),
(112014, 91789, 'en', 'name', 'State Key Laboratory of Rail Transit Control and Safety'),
(112015, 91789, 'zh', 'name', 'č½Øé“äŗ¤é€šęŽ§åˆ¶äøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112016, 91790, 'en', 'name', 'Bayan University'),
(112017, 91790, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŁŠŲ§Ł†'),
(112018, 91790, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ ŲØŪ•ŪŒŲ§Ł†'),
(112019, 91791, 'en', 'name', 'AlmuƱecar International School'),
(112020, 91792, 'en', 'name', 'State Key Laboratory of Surface Physics'),
(112021, 91792, 'zh', 'name', 'åŗ”ē”Øč”Øé¢ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112022, 91793, 'en', 'name', 'Institute of Biomedicine and Biotechnology of Cantabria'),
(112023, 91793, 'es', 'name', 'Instituto de Biomedicina y BiotecnologĆ­a de Cantabria'),
(112024, 91794, 'en', 'name', 'State Key Laboratory of Geomechanics and Geotechnical Engineering'),
(112025, 91794, 'zh', 'name', 'å²©åœŸåŠ›å­¦äøŽå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112026, 91795, 'en', 'name', 'Julian Schwinger Foundation for Physics Research'),
(112027, 91796, 'en', 'name', 'Institute of Information Engineering'),
(112028, 91796, 'zh', 'name', '中国科学院俔息巄程研究所'),
(112029, 91797, 'en', 'name', 'DoƱana Biological Station'),
(112030, 91797, 'es', 'name', 'Estación Biológica de Doñana'),
(112031, 91798, 'de', 'name', 'Data Futures GmbH'),
(112032, 91799, 'fr', 'name', 'Centre de recherche juridique Pothier'),
(112033, 91800, 'ca', 'name', 'Institut de Biologia Molecular de Barcelona'),
(112034, 91800, 'en', 'name', 'Molecular Biology Institute of Barcelona'),
(112035, 91801, 'en', 'name', 'State Key Laboratory of Precision Spectroscopy Science and Technology'),
(112036, 91801, 'zh', 'name', 'ē²¾åÆ†å…‰č°±ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112037, 91802, 'en', 'name', 'Institute of Economics, Geography and Demography'),
(112038, 91802, 'es', 'name', 'Instituto de EconomĆ­a, GeografĆ­a y DemografĆ­a'),
(112039, 91803, 'en', 'name', 'Climate Adaptation Science Centers'),
(112040, 91804, 'en', 'name', 'State Key Laboratory of Software Development Environment'),
(112041, 91804, 'zh', 'name', 'č½Æä»¶å¼€å‘ēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112042, 91805, 'en', 'name', 'State Key Laboratory of Crop Biology'),
(112043, 91805, 'zh', 'name', 'ä½œē‰©ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112044, 91806, 'en', 'name', 'State Key Laboratory of New Technology of Pharmaceutical Preparations'),
(112045, 91806, 'zh', 'name', 'čÆē‰©åˆ¶å‰‚ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112046, 91807, 'en', 'name', 'State Key Laboratory of Experimental Hematology'),
(112047, 91807, 'zh', 'name', 'å®žéŖŒč”€ę¶²å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112048, 91808, 'no_lang_code', 'name', 'Uriach (Spain)'),
(112049, 91809, 'en', 'name', 'Ignatius Ajuru University of Education'),
(112050, 91810, 'en', 'name', 'Lanzhou Veterinary Research Institute'),
(112051, 91810, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å…°å·žå…½åŒ»ē ”ē©¶ę‰€'),
(112052, 91811, 'en', 'name', 'AIR Institute'),
(112053, 91811, 'es', 'name', 'Fundación Instituto Internacional de Investigación en Inteligencia Artificial y Ciencias de la Computación'),
(112054, 91812, 'en', 'name', 'Shanghai Synchrotron Radiation Facility'),
(112055, 91812, 'zh', 'name', 'äøŠęµ·åŒę­„č¾å°„å…‰ęŗ'),
(112056, 91813, 'en', 'name', 'State Key Laboratory of Environmental Standards and Risk Assessment'),
(112057, 91813, 'zh', 'name', 'ēŽÆå¢ƒåŸŗå‡†äøŽé£Žé™©čÆ„ä¼°å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112058, 91814, 'en', 'name', 'State Key Laboratory Fluid Power and Mechatronic Systems'),
(112059, 91814, 'zh', 'name', 'ęµä½“åŠØåŠ›äøŽęœŗē”µē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112060, 91815, 'fr', 'name', 'Centre d''Etudes sur le DƩveloppement des Territoires et Environnement'),
(112061, 91816, 'en', 'name', 'State Key Laboratory of High Field Laser Physics'),
(112062, 91816, 'zh', 'name', 'å¼ŗåœŗęæ€å…‰ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112063, 91817, 'en', 'name', 'State Key Laboratory of Rare Earth Resources Utilization'),
(112064, 91817, 'zh', 'name', 'ēØ€åœŸčµ„ęŗåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112065, 91818, 'en', 'name', 'State Key Laboratory of Collateral Disease Research and Innovative Traditional Chinese Medicine'),
(112066, 91818, 'zh', 'name', 'ē»œē—…ē ”ē©¶äøŽåˆ›ę–°äø­čÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112067, 91819, 'en', 'name', 'State Key Laboratory of Hydraulics and Mountain River Engineering'),
(112068, 91819, 'zh', 'name', 'ę°“åŠ›å­¦äøŽå±±åŒŗę²³ęµå¼€å‘äæęŠ¤å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112069, 91820, 'en', 'name', 'Elite Network of Bavaria'),
(112070, 91820, 'de', 'name', 'Elitenetzwerk Bayern'),
(112071, 91821, 'en', 'name', 'Genentech Foundation'),
(112072, 91822, 'ca', 'name', 'Centre d’Investigació i Desenvolupament'),
(112073, 91823, 'en', 'name', 'Sunnybrook Health Science Centre'),
(112074, 91824, 'es', 'name', 'Institut Municipal D''InformƔtica de Barcelona'),
(112075, 91824, 'en', 'name', 'The Municipal Institute for Information Technology'),
(112076, 91825, 'es', 'name', 'Instituto de Investigaciones QuĆ­micas'),
(112077, 91826, 'en', 'name', 'Research Center for Eco-Environmental Sciences'),
(112078, 91826, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē”Ÿę€ēŽÆå¢ƒē ”ē©¶äø­åæƒ'),
(112079, 91827, 'es', 'name', 'Consejería de Empleo, Formación y Trabajo Autónomo'),
(112080, 91828, 'es', 'name', 'Asociacion de Investigacion de Materiales Plasticos y Conexas'),
(112081, 91829, 'en', 'name', 'Centre for Automation and Robotics'),
(112082, 91829, 'es', 'name', 'Centro de Automatización y Robótica'),
(112083, 91830, 'en', 'name', 'State Key Laboratory of Pathogenic Biology of Livestock Diseases'),
(112084, 91830, 'zh', 'name', 'å®¶ē•œē–«ē—…ē—…åŽŸē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112085, 91831, 'no_lang_code', 'name', 'Fuwai Yunnan Cardiovascular Hospital'),
(112086, 91831, 'zh', 'name', 'äŗ‘å—ēœé˜œå¤–åæƒč”€ē®”ē—…åŒ»é™¢'),
(112087, 91832, 'fr', 'name', 'Laboratoire de recherche sur l’ingĆ©nierie des organisations dans un contexte d’entreprise numĆ©rique'),
(112088, 91832, 'en', 'name', 'Organizational Engineering Research Laboratory for the Digital Enterprise'),
(112089, 91833, 'es', 'name', 'Navarrabiomed'),
(112090, 91834, 'en', 'name', 'Hospital General Universitario Reina SofĆ­a'),
(112091, 91834, 'es', 'name', 'Hospital Reina SofĆ­a de Murcia'),
(112092, 91835, 'en', 'name', 'Aeronautical Research Laboratory in Active Control, Avionics and Aeroservoelasticity'),
(112093, 91835, 'fr', 'name', 'Laboratoire de recherche en commande active, avionique et aƩroservoƩlasticitƩ'),
(112094, 91836, 'en', 'name', 'State Key Laboratory of Oxo Synthesis and Selective Oxidation'),
(112095, 91836, 'zh', 'name', 'ē¾°åŸŗåˆęˆäøŽé€‰ę‹©ę°§åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112096, 91837, 'es', 'name', 'Asociación Española de Normalización y Certificación'),
(112097, 91837, 'en', 'name', 'Spanish Association for Standardisation and Certification'),
(112098, 91838, 'en', 'name', 'Institute of studies gallegos Padre Sarmiento'),
(112099, 91838, 'es', 'name', 'Instituto de Estudios Gallegos Padre Sarmiento'),
(112100, 91839, 'en', 'name', 'State Key Laboratory of Mechanical Structure Strength and Vibration'),
(112101, 91839, 'zh', 'name', 'ęœŗę¢°ē»“ęž„å¼ŗåŗ¦äøŽęŒÆåŠØå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112102, 91840, 'en', 'name', 'State Key Laboratory of Organic-Inorganic Composite Materials'),
(112103, 91840, 'zh', 'name', 'ęœ‰ęœŗę— ęœŗå¤åˆęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112104, 91841, 'en', 'name', 'China University of Petroleum, Beijing'),
(112105, 91841, 'zh', 'name', 'äø­å›½ēŸ³ę²¹å¤§å­¦'),
(112106, 91842, 'es', 'name', 'Instituto de Ciencia de Materiales de Sevilla'),
(112107, 91843, 'en', 'name', 'Institute of Mechanics'),
(112108, 91843, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŠ›å­¦ē ”ē©¶ę‰€'),
(112109, 91844, 'es', 'name', 'Ministerio de Hacienda y Función Pública'),
(112110, 91844, 'en', 'name', 'Ministry of Finance'),
(112111, 91845, 'en', 'name', 'Institute of Computing Technology'),
(112112, 91845, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č®”ē®—ęŠ€ęœÆē ”ē©¶ę‰€'),
(112113, 91846, 'es', 'name', 'Museo Nacional de Ciencias Naturales'),
(112114, 91846, 'en', 'name', 'National Museum of Natural Sciences'),
(112115, 91847, 'es', 'name', 'Complejo Hospitalario Universitario de Granada'),
(112116, 91848, 'en', 'name', 'State Key Laboratory of Optical Fiber Communication and Network Technology'),
(112117, 91848, 'zh', 'name', 'å…‰ēŗ¤é€šäæ”ęŠ€ęœÆäøŽē½‘ē»œå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112118, 91849, 'en', 'name', 'Agrobiotechnology Institute'),
(112119, 91849, 'es', 'name', 'Instituto de AgrobiotecnologĆ­a'),
(112120, 91850, 'en', 'name', 'Zhengzhou Institute of Machinery'),
(112121, 91850, 'zh', 'name', 'éƒ‘å·žęœŗę¢°ē ”ē©¶ę‰€'),
(112122, 91851, 'fr', 'name', 'Centre de collaboration nationale des mƩthodes et outils'),
(112123, 91851, 'en', 'name', 'National Collaborating Centre for Methods and Tools'),
(112124, 91852, 'en', 'name', 'Frances and Augustus Newman Foundation'),
(112125, 91853, 'en', 'name', 'State Key Laboratory of Cardiovascular Disease'),
(112126, 91853, 'zh', 'name', 'åæƒč”€ē®”ē–¾ē—…å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112127, 91854, 'en', 'name', 'State Key Laboratory of Estuarine and Coastal Research'),
(112128, 91854, 'zh', 'name', 'ę²³å£ęµ·å²øå­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112129, 91855, 'no_lang_code', 'name', 'Gree (China)'),
(112130, 91855, 'zh', 'name', 'ē ęµ·ę ¼åŠ›ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(112131, 91856, 'en', 'name', 'ARC Centre for Nanoscale BioPhotonics'),
(112132, 91857, 'en', 'name', 'Europe Regional Chapter of the International Society of Exposure Science'),
(112133, 91858, 'en', 'name', 'Factum Foundation'),
(112134, 91858, 'es', 'name', 'Fundación Factum'),
(112135, 91859, 'es', 'name', 'Fundación BBVA'),
(112136, 91860, 'es', 'name', 'Ministerio de Transportes, Movilidad y Agenda Urbana'),
(112137, 91860, 'en', 'name', 'Ministry of Public Works and Transport'),
(112138, 91861, 'en', 'name', 'State Key Laboratory of Electrical Insulation and Power Equipment'),
(112139, 91861, 'zh', 'name', 'ē”µåŠ›č®¾å¤‡ē”µę°”ē»ē¼˜å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112140, 91862, 'en', 'name', 'ARUP Institute for Clinical and Experimental Pathology'),
(112141, 91863, 'es', 'name', 'Consejería de la Presidencia, Interior, DiÔlogo Social y Simplificación Administrativa'),
(112142, 91864, 'en', 'name', 'State Key Laboratory of Coal Mine Disaster Dynamics and Control'),
(112143, 91864, 'zh', 'name', 'ē…¤ēŸæē¾å®³åŠØåŠ›å­¦äøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112144, 91865, 'en', 'name', 'Institute of Polymer Science and Technology'),
(112145, 91865, 'es', 'name', 'Instituto de Ciencia y TecnologĆ­a de PolĆ­meros'),
(112146, 91866, 'no_lang_code', 'name', 'Danone North America (United States)'),
(112147, 91867, 'no_lang_code', 'name', 'Xuzhou Construction Machinery Group (China)'),
(112148, 91867, 'zh', 'name', '徐巄集团'),
(112149, 91868, 'en', 'name', 'Rural and Environment Science and Analytical Services'),
(112150, 91869, 'en', 'name', 'State Key Laboratory of Civil Aircraft Flight Simulation'),
(112151, 91869, 'zh', 'name', 'ę°‘ē”Øé£žęœŗęØ”ę‹Ÿé£žč”Œå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112152, 91870, 'de', 'name', 'AiF Projekt GmbH'),
(112153, 91871, 'es', 'name', 'Centro OceanogrƔfico de A CoruƱa'),
(112154, 91871, 'en', 'name', 'Oceanographic Center of A CoruƱa'),
(112155, 91872, 'en', 'name', 'State Key Laboratory of Construction Machinery Key Technology'),
(112156, 91872, 'zh', 'name', 'å»ŗč®¾ęœŗę¢°å…³é”®ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112157, 91873, 'id', 'name', 'STKIP Paris Barantai'),
(112158, 91874, 'en', 'name', 'Academy of Mathematics and Systems Science'),
(112159, 91874, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę•°å­¦äøŽē³»ē»Ÿē§‘å­¦ē ”ē©¶é™¢'),
(112160, 91875, 'en', 'name', 'Institute of Geographic Sciences and Natural Resources Research'),
(112161, 91875, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åœ°ē†ē§‘å­¦äøŽčµ„ęŗē ”ē©¶ę‰€'),
(112162, 91876, 'en', 'name', 'State Key Laboratory of Mineral Deposit Geochemistry'),
(112163, 91876, 'zh', 'name', 'ēŸæåŗŠåœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112164, 91877, 'en', 'name', 'Catalan Foundation for Research and Innovation'),
(112165, 91877, 'ca', 'name', 'Fundació Catalana per a la Recerca i la Innovació'),
(112166, 91877, 'es', 'name', 'Fundación Catalana para la investigación e Innovación'),
(112167, 91878, 'en', 'name', 'Brain Institute of Rio Grande do Sul'),
(112168, 91878, 'pt', 'name', 'Instituto do CƩrebro'),
(112169, 91879, 'en', 'name', 'Cajal Institute'),
(112170, 91879, 'es', 'name', 'Instituto Cajal'),
(112171, 91880, 'no_lang_code', 'name', 'State Grid Hunan Electric Power Company Limited'),
(112172, 91880, 'zh', 'name', 'å›½ē½‘ę¹–å—ēœē”µåŠ›ęœ‰é™å…¬åø'),
(112173, 91881, 'no_lang_code', 'name', 'Robotnik (Spain)'),
(112174, 91882, 'en', 'name', 'Institute of Cancer Research'),
(112175, 91883, 'en', 'name', 'Hydrogen and Fuel Cell Technologies Office'),
(112176, 91884, 'es', 'name', 'AMETIC'),
(112177, 91885, 'en', 'name', 'South Dakota Agricultural Experiment Station'),
(112178, 91886, 'en', 'name', 'Department of Science and Technology, Government of Rajasthan'),
(112179, 91887, 'en', 'name', 'State Key Laboratory of Advanced Brazing Filler Metals and Technology'),
(112180, 91887, 'zh', 'name', 'ę–°åž‹é’Žē„Šęę–™äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112181, 91888, 'es', 'name', 'ConsejerĆ­a de PolĆ­ticas Sociales, Familias, Igualdad y Natalidad'),
(112182, 91889, 'no_lang_code', 'name', 'Telnet Redes Inteligentes (Spain)'),
(112183, 91890, 'fr', 'name', 'Laboratoire de thermofluide pour le transport'),
(112184, 91890, 'en', 'name', 'Thermo-Fluids for Transport Laboratory'),
(112185, 91891, 'fr', 'name', 'Fondation SAPA, Archives suisses des arts de la scĆØne'),
(112186, 91891, 'en', 'name', 'SAPA Foundation, Swiss Archive of the Performing Arts'),
(112187, 91891, 'it', 'name', 'SAPA raccoglie e mette a disposizione del pubblico documenti'),
(112188, 91891, 'de', 'name', 'Stiftung SAPA, Schweizer Archiv der Darstellenden Künste'),
(112189, 91892, 'en', 'name', 'State Key Laboratory of Advanced Welding and Joining'),
(112190, 91892, 'zh', 'name', 'å…ˆčæ›ē„ŠęŽ„äøŽčæžęŽ„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112191, 91893, 'pt', 'name', 'Serviço Geológico do Brasil - CPRM'),
(112192, 91894, 'en', 'name', 'Chinese PLA General Hospital'),
(112193, 91894, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ę€»åŒ»é™¢'),
(112194, 91895, 'en', 'name', 'State Key Laboratory of Computer Aided Design and Graphics'),
(112195, 91895, 'zh', 'name', 'č®”ē®—ęœŗč¾…åŠ©č®¾č®”äøŽå›¾å½¢å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112196, 91896, 'en', 'name', 'Institute of Ceramics and Glass'),
(112197, 91896, 'es', 'name', 'Instituto de CerƔmica y Vidrio'),
(112198, 91897, 'en', 'name', 'Geotechnical and Geoenvironmental Engineering Laboratory'),
(112199, 91897, 'fr', 'name', 'Laboratoire de gƩotechnique et de gƩnie gƩoenvironnemental'),
(112200, 91898, 'en', 'name', 'Biomedical Information Processing Laboratory'),
(112201, 91898, 'fr', 'name', 'Laboratoire de traitement de l''information en santƩ'),
(112202, 91899, 'es', 'name', 'Complejo Hospitalario Universitario de Santiago'),
(112203, 91899, 'en', 'name', 'USC University Hospital Complex'),
(112204, 91900, 'en', 'name', 'European University of the Canary Islands'),
(112205, 91900, 'es', 'name', 'Universidad Europea de Canarias'),
(112206, 91901, 'en', 'name', 'Maryland-Delaware-D.C. Water Science Center'),
(112207, 91902, 'no_lang_code', 'name', 'Bial (Spain)'),
(112208, 91903, 'en', 'name', 'State Key Laboratory of Inorganic Synthesis and Preparative Chemistry'),
(112209, 91903, 'zh', 'name', 'ę— ęœŗåˆęˆäøŽåˆ¶å¤‡åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112210, 91904, 'ca', 'name', 'Institut CatalĆ  de Paleontologia Miquel Crusafont'),
(112211, 91904, 'es', 'name', 'Instituto CatalƔn de Paleontologƭa Miguel Crusafont'),
(112212, 91905, 'en', 'name', 'Animal Health Research Centre'),
(112213, 91905, 'es', 'name', 'Centro de Investigación en Sanidad Animal'),
(112214, 91906, 'pt', 'name', 'Instituto de TelecomunicaƧƵes'),
(112215, 91907, 'es', 'name', 'Fundación Omphis'),
(112216, 91908, 'en', 'name', 'Saudi Arabia Cultural Bureau in London'),
(112217, 91909, 'en', 'name', 'Cotton Research Institute'),
(112218, 91909, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ę£‰čŠ±ē ”ē©¶ę‰€'),
(112219, 91910, 'en', 'name', 'Institute of Physical and Information Technologies "Leonardo Torres Quevedo"'),
(112220, 91910, 'es', 'name', 'Instituto de TecnologĆ­as FĆ­sicas y de la Información ā€œLeonardo Torres Quevedoā€'),
(112221, 91911, 'en', 'name', 'State Key Laboratory of Advanced Design and Manufacturing of Automobile Body'),
(112222, 91911, 'zh', 'name', 'ę±½č½¦č½¦čŗ«å…ˆčæ›č®¾č®”åˆ¶é€ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112223, 91912, 'en', 'name', 'State Key Laboratory of Advanced Stainless Steel Materials'),
(112224, 91912, 'zh', 'name', 'å…ˆčæ›äøé”ˆé’¢ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112225, 91913, 'no_lang_code', 'name', 'Euroortodoncia (Spain)'),
(112226, 91914, 'en', 'name', 'State Key Laboratory of Soil Erosion and Dryland Farming on the Loess Plateau'),
(112227, 91914, 'zh', 'name', 'é»„åœŸé«˜åŽŸåœŸå£¤ä¾µčš€äøŽę—±åœ°å†œäøšå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112228, 91915, 'en', 'name', 'State Key Laboratory of Special Cable Technology'),
(112229, 91915, 'zh', 'name', 'ē‰¹ē§ē”µē¼†ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112230, 91916, 'es', 'name', 'Universidad Isabel I'),
(112231, 91917, 'es', 'name', 'Cenim - Centro Nacional de Investigaciones Metalurgicas'),
(112232, 91918, 'es', 'name', 'Estacion Experimental de Zonas Aridas'),
(112233, 91919, 'es', 'name', 'Fundación Pública Andaluza Centro de las Nuevas Tecnologías del Agua'),
(112234, 91920, 'en', 'name', 'State Key Laboratory of Multiphase Flow in Power Engineering'),
(112235, 91920, 'zh', 'name', 'åŠØåŠ›å·„ēØ‹å¤šē›øęµå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112236, 91921, 'fr', 'name', 'Ecole Nationale des Sciences GƩographiques'),
(112237, 91922, 'en', 'name', 'State Key Laboratory of Metastable Materials Science and Technology'),
(112238, 91922, 'zh', 'name', 'äŗšēØ³ęę–™åˆ¶å¤‡ęŠ€ęœÆäøŽē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112239, 91923, 'en', 'name', 'State Key Laboratory of Advanced Electromagnetic Engineering and Technology'),
(112240, 91923, 'zh', 'name', 'å¼ŗē”µē£å·„ēØ‹äøŽę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112241, 91924, 'en', 'name', 'State Key Laboratory for Structural Chemistry of Unstable and Stable Species'),
(112242, 91924, 'zh', 'name', 'åˆ†å­åŠØę€äøŽēØ³ę€ē»“ęž„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112243, 91925, 'no_lang_code', 'name', 'Immuneering (United States)'),
(112244, 91926, 'en', 'name', 'Institute of Agrochemistry and Food Technology'),
(112245, 91926, 'es', 'name', 'Instituto de AgroquĆ­mica y TecnologĆ­a de Alimentos'),
(112246, 91927, 'es', 'name', 'Real Jardƭn BotƔnico'),
(112247, 91927, 'en', 'name', 'Royal Botanical Garden'),
(112248, 91928, 'en', 'name', 'State Key Laboratory of Severe Weather'),
(112249, 91928, 'zh', 'name', 'ē¾å®³å¤©ę°”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112250, 91929, 'de', 'name', 'Paracelsus-Klinik Golzheim Düsseldorf'),
(112251, 91930, 'fr', 'name', 'Patrimoines, Transmissions, HƩritages'),
(112252, 91931, 'en', 'name', 'Alsace Regional Council'),
(112253, 91931, 'fr', 'name', 'Conseil RƩgional d''Alsace'),
(112254, 91932, 'en', 'name', 'Al-Ryada University for Science and Technology'),
(112255, 91932, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±ŁŠŲ§ŲÆŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(112256, 91933, 'en', 'name', 'State Key Laboratory of Crop Genetics and Germplasm Innovation'),
(112257, 91933, 'zh', 'name', 'ä½œē‰©é—ä¼ äøŽē§č“Øåˆ›ę–°å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112258, 91934, 'es', 'name', 'Instituto Nacional del Carbón'),
(112259, 91935, 'en', 'name', 'IPB University'),
(112260, 91935, 'id', 'name', 'Institut Pertanian Bogor'),
(112261, 91936, 'en', 'name', 'Institute of General Organic Chemistry'),
(112262, 91936, 'es', 'name', 'Instituto de Quƭmica OrgƔnica General');
INSERT INTO `ror_settings` VALUES
(112263, 91937, 'en', 'name', 'Swiss Competence Center for Energy Research – Supply of Electricity'),
(112264, 91938, 'es', 'name', 'Centro Andaluz de BiologĆ­a Molecular y Medicina Regenerativa'),
(112265, 91939, 'en', 'name', 'Central Energy Resources Science Center'),
(112266, 91940, 'en', 'name', 'State Key Laboratory of Tropical Crop Biotechnology'),
(112267, 91940, 'zh', 'name', 'ēƒ­åø¦ä½œē‰©ē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112268, 91941, 'nl', 'name', 'Rotterdamse Fondsen'),
(112269, 91942, 'en', 'name', 'University of Maine'),
(112270, 91943, 'en', 'name', 'Center for Plant Genetic Resources and Sustainable Agriculture'),
(112271, 91943, 'es', 'name', 'Centro de Recursos FitogenƩticos y Agricultura Sostenible'),
(112272, 91944, 'es', 'name', 'Centro de Estudios Andaluces'),
(112273, 91945, 'no_lang_code', 'name', 'Ordesa (Spain)'),
(112274, 91946, 'en', 'name', 'State Key Laboratory of Computer Architecture'),
(112275, 91946, 'zh', 'name', 'č®”ē®—ęœŗä½“ē³»ē»“ęž„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112276, 91947, 'en', 'name', 'Institute of Geology and Geophysics'),
(112277, 91947, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åœ°č“ØäøŽåœ°ēƒē‰©ē†ē ”ē©¶ę‰€'),
(112278, 91948, 'en', 'name', 'State Key Laboratory of Stem Cell and Reproductive Biology'),
(112279, 91948, 'zh', 'name', 'å¹²ē»†čƒžäøŽē”Ÿę®–ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112280, 91949, 'no_lang_code', 'name', 'China Railway Bridge and Tunnel Technologies Co. Ltd. (China)'),
(112281, 91949, 'zh', 'name', 'äø­é“ę”„éš§ęŠ€ęœÆęœ‰é™å…¬åø'),
(112282, 91950, 'en', 'name', 'State Key Laboratory of Biomacromolecules'),
(112283, 91950, 'zh', 'name', 'ē”Ÿē‰©å¤§åˆ†å­å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112284, 91951, 'eu', 'name', 'Biofisika Bizkaia Fundazioa'),
(112285, 91951, 'es', 'name', 'Fundación Biofísica Bizkaia'),
(112286, 91952, 'en', 'name', 'State Key Laboratory of Veterinary Biotechnology'),
(112287, 91952, 'zh', 'name', 'å…½åŒ»ē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112288, 91953, 'es', 'name', 'Ayuntamiento de Vitoria-Gasteiz'),
(112289, 91953, 'en', 'name', 'Vitoria-Gasteiz City Council'),
(112290, 91953, 'eu', 'name', 'Vitoria-Gasteizko Udala'),
(112291, 91954, 'en', 'name', 'Institute for Plant Molecular and Cellular Biology'),
(112292, 91954, 'es', 'name', 'Instituto de BiologĆ­a Molecular y Celular de Plantas'),
(112293, 91955, 'en', 'name', 'State Key Laboratory of Precision Testing Technology and Instruments'),
(112294, 91955, 'zh', 'name', 'ē²¾åÆ†ęµ‹čÆ•ęŠ€ęœÆåŠä»Ŗå™Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112295, 91956, 'en', 'name', 'State Key Laboratory of Acoustics'),
(112296, 91956, 'zh', 'name', 'å£°åœŗå£°äæ”ęÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112297, 91957, 'en', 'name', 'Namur Digital Institute'),
(112298, 91958, 'en', 'name', 'State Key Laboratory of Numerical Modeling for Atmospheric Sciences and Geophysical Fluid Dynamics'),
(112299, 91958, 'zh', 'name', 'å¤§ę°”ē§‘å­¦å’Œåœ°ēƒęµä½“åŠ›å­¦ę•°å€¼ęØ”ę‹Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112300, 91959, 'en', 'name', 'State Key Laboratory of Biology of Plant Diseases and Insect Pests'),
(112301, 91959, 'zh', 'name', 'ę¤ē‰©ē—…č™«å®³ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112302, 91960, 'ca', 'name', 'Institut de Quƭmica AvanƧada de Catalunya'),
(112303, 91960, 'en', 'name', 'Institute of Advanced Chemistry of Catalonia'),
(112304, 91960, 'es', 'name', 'Instituto de Quƭmica Avanzada de CataluƱa'),
(112305, 91961, 'en', 'name', 'Pacific Island Ecosystems Research Center'),
(112306, 91962, 'en', 'name', 'Wuhan Institute of Virology'),
(112307, 91962, 'zh', 'name', '中国科学院武汉病毒研究所'),
(112308, 91963, 'en', 'name', 'State Key Laboratory of Ocean Engineering'),
(112309, 91963, 'zh', 'name', 'ęµ·ę“‹å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112310, 91964, 'fr', 'name', 'Agence de l''innovation de dƩfense'),
(112311, 91964, 'en', 'name', 'Defense Innovation Agency'),
(112312, 91965, 'en', 'name', 'Fusion for Energy'),
(112313, 91965, 'es', 'name', 'Fusión para la Energía'),
(112314, 91966, 'es', 'name', 'Casa de VelƔzquez'),
(112315, 91967, 'es', 'name', 'Consejo de Seguridad Nuclear'),
(112316, 91967, 'en', 'name', 'Nuclear Safety Council'),
(112317, 91968, 'en', 'name', 'State Key Laboratory of Plasting Molding Technology'),
(112318, 91968, 'zh', 'name', 'å”‘ę€§ęˆå½¢ęØ”å…·ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112319, 91969, 'en', 'name', 'Massachusetts Life Sciences Center'),
(112320, 91970, 'en', 'name', 'State Key Laboratory of Membrane Biology'),
(112321, 91970, 'zh', 'name', 'č†œē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112322, 91971, 'es', 'name', 'Asociación de Industrias CÔrnicas'),
(112323, 91971, 'en', 'name', 'Meat Industry Association'),
(112324, 91972, 'fr', 'name', 'Association franƧaise de zootechnie'),
(112325, 91973, 'id', 'name', 'Institut Agama Islam Negeri Bengkulu'),
(112326, 91974, 'en', 'name', 'National Laboratory of Solid State Microstructures'),
(112327, 91974, 'zh', 'name', 'å›ŗä½“å¾®ē»“ęž„ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112328, 91975, 'en', 'name', 'Cognitive Sciences and Technologies Council'),
(112329, 91976, 'no_lang_code', 'name', 'China National Electric Apparatus Research Institute (China)'),
(112330, 91976, 'zh', 'name', 'äø­å›½ē”µå™Øē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(112331, 91977, 'ca', 'name', 'Ajuntament de ValĆØncia'),
(112332, 91977, 'es', 'name', 'Ayuntamiento de Valencia'),
(112333, 91978, 'en', 'name', 'State Key Laboratory of Isotope Geochemistry'),
(112334, 91978, 'zh', 'name', 'åŒä½ē“ åœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112335, 91979, 'en', 'name', 'Institute of Archaeology of Merida'),
(112336, 91979, 'es', 'name', 'Instituto de Arqueologƭa-MƩrida'),
(112337, 91980, 'en', 'name', 'State Key Laboratory of Mobile Networks and Mobile Multimedia Technology'),
(112338, 91980, 'zh', 'name', 'ē§»åŠØē½‘ē»œå’Œē§»åŠØå¤šåŖ’ä½“ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112339, 91981, 'en', 'name', 'State Key Laboratory of Silicon Materials'),
(112340, 91981, 'zh', 'name', 'ē”…ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112341, 91982, 'es', 'name', 'Centro OceanogrƔfico de Canarias'),
(112342, 91982, 'en', 'name', 'Oceanographic Center of Canarias'),
(112343, 91983, 'en', 'name', 'Danish National Advanced Technology Foundation'),
(112344, 91983, 'da', 'name', 'HĆøjteknologifonden'),
(112345, 91984, 'en', 'name', 'State Key Laboratory of Automobile Safety and Energy Conservation'),
(112346, 91984, 'zh', 'name', 'ę±½č½¦å®‰å…ØäøŽčŠ‚čƒ½å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112347, 91985, 'en', 'name', 'Institute of Plant Biochemistry and Photosynthesis'),
(112348, 91985, 'es', 'name', 'Instituto de BioquĆ­mica Vegetal y FotosĆ­ntesis'),
(112349, 91986, 'ro', 'name', 'Institutul de Chimie Macromoleculară Petru Poni'),
(112350, 91986, 'en', 'name', 'Petru Poni Institute of Macromolecular Chemistry'),
(112351, 91987, 'en', 'name', 'State Key Laboratory of Coal Conversion'),
(112352, 91987, 'zh', 'name', 'ē…¤ē‚­é«˜ę•ˆä½Žē¢³åˆ©ē”Øå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(112353, 91988, 'en', 'name', 'State Key Laboratory of Coal Resources and Safe Mining'),
(112354, 91988, 'zh', 'name', 'ē…¤ē‚­čµ„ęŗäøŽå®‰å…Øå¼€é‡‡å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112355, 91989, 'en', 'name', 'Pacific Fishery Management Council'),
(112356, 91990, 'en', 'name', 'Kyiv Academy of Arts'),
(112357, 91990, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń мистецтв'),
(112358, 91991, 'en', 'name', 'State Key Laboratory of Silkworm Genomic Biology'),
(112359, 91991, 'zh', 'name', 'å®¶čš•åŸŗå› ē»„ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112360, 91992, 'en', 'name', 'Montana Department of Agriculture'),
(112361, 91993, 'no_lang_code', 'name', 'Sermasa (Spain)'),
(112362, 91994, 'es', 'name', 'Instituto de Recursos Naturales y AgrobiologĆ­a de Salamanca'),
(112363, 91995, 'en', 'name', 'State Key Laboratory of Materials-Oriented Chemical Engineering'),
(112364, 91995, 'zh', 'name', 'ęę–™åŒ–å­¦å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112365, 91996, 'es', 'name', 'Centro Nacional de Datos Polares'),
(112366, 91996, 'en', 'name', 'Spanish Polar Data Centre'),
(112367, 91997, 'fr', 'name', 'Laboratoire d''Informatique Fondamentale d''OrlƩans'),
(112368, 91998, 'en', 'name', 'Saudi Arabian Cultural Mission'),
(112369, 91999, 'en', 'name', 'Shatt Al-Arab University College'),
(112370, 91999, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų“Ų· العرب الجامعة'),
(112371, 92000, 'es', 'name', 'Centro Tecnológico de Investigación, Desarrollo e Innovación en tecnologías de la Información y las Comunicaciones (TIC)'),
(112372, 92000, 'en', 'name', 'Technological Center for Research, Development and Innovation in Information and Communication Technologies (ICT)'),
(112373, 92001, 'es', 'name', 'Aceros especiales Europa'),
(112374, 92001, 'no_lang_code', 'name', 'Gerdau (Spain)'),
(112375, 92002, 'en', 'name', 'The Foundation for Science and Technology'),
(112376, 92003, 'en', 'name', 'J. Willard and Alice S. Marriott Foundation'),
(112377, 92004, 'no_lang_code', 'name', 'SCOAP3'),
(112378, 92005, 'no_lang_code', 'name', 'Johnson & Johnson (United States)'),
(112379, 92006, 'en', 'name', 'State Key Laboratory of Intelligent Technology and Systems'),
(112380, 92006, 'zh', 'name', 'ę™ŗčƒ½ęŠ€ęœÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112381, 92007, 'en', 'name', 'BE-Basic Foundation'),
(112382, 92008, 'en', 'name', 'State Key Laboratory of Loess and Quaternary Geology'),
(112383, 92008, 'zh', 'name', 'é»„åœŸäøŽē¬¬å››ēŗŖåœ°č“Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112384, 92009, 'eu', 'name', 'CITA-alzheimer Fundazioa'),
(112385, 92009, 'es', 'name', 'Fundacion CITA Alzheimer'),
(112386, 92010, 'en', 'name', 'State Key Laboratory of Molecular Developmental Biology'),
(112387, 92010, 'zh', 'name', 'åˆ†å­å‘č‚²ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112388, 92011, 'en', 'name', 'Eduardo Torroja Institute for Construction Sciences'),
(112389, 92011, 'es', 'name', 'Instituto de Ciencias de La Construcción Eduardo Torroja'),
(112390, 92012, 'en', 'name', 'Royal Hobart Hospital Research Foundation'),
(112391, 92013, 'en', 'name', 'ETH Zürich Foundation'),
(112392, 92014, 'fr', 'name', 'Pouvoirs, Lettres, Normes'),
(112393, 92015, 'en', 'name', 'Finnish Anti-Tuberculosis Foundation'),
(112394, 92015, 'fi', 'name', 'Suomen Tuberkuloosin Vastustamisyhdistyksen SƤƤtiƶ'),
(112395, 92016, 'es', 'name', 'Conservatorio Superior de Música de MÔlaga'),
(112396, 92016, 'en', 'name', 'MƔlaga Superior Conservatory of Music'),
(112397, 92017, 'en', 'name', 'National Cooperative Geologic Mapping Program'),
(112398, 92018, 'en', 'name', 'State Key Laboratory of Supramolecular Structure and Materials'),
(112399, 92018, 'zh', 'name', 'č¶…åˆ†å­ē»“ęž„äøŽęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112400, 92019, 'en', 'name', 'State Key Laboratory of Baiyunobo Rare Earth Resource Researches and Comprehensive Utilization'),
(112401, 92019, 'zh', 'name', 'ē™½äŗ‘é„‚åšēØ€åœŸčµ„ęŗē ”ē©¶äøŽē»¼åˆåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112402, 92020, 'es', 'name', 'COMSA (Spain)'),
(112403, 92021, 'no_lang_code', 'name', 'Automation Research and Design Institute of Metallurgical Industry (China)'),
(112404, 92021, 'zh', 'name', 'å†¶é‡‘č‡ŖåŠØåŒ–ē ”ē©¶č®¾č®”é™¢'),
(112405, 92022, 'en', 'name', 'State Key Laboratory of Pattern Recognition'),
(112406, 92022, 'zh', 'name', 'ęØ”å¼čÆ†åˆ«å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112407, 92023, 'en', 'name', 'State Key Laboratory of Metal Mine Safety Technology'),
(112408, 92023, 'zh', 'name', 'é‡‘å±žēŸæå±±å®‰å…ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112409, 92024, 'en', 'name', 'State Key Laboratory of Advanced Steel Processing and Products'),
(112410, 92024, 'zh', 'name', 'å…ˆčæ›é’¢é“ęµēØ‹åŠęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112411, 92025, 'en', 'name', 'State Key Laboratory of Structural Analysis for Industrial Equipment'),
(112412, 92025, 'zh', 'name', 'å·„äøšč£…å¤‡ē»“ęž„åˆ†ęžå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112413, 92026, 'en', 'name', 'Columbia Environmental Research Center'),
(112414, 92027, 'en', 'name', 'State Key Laboratory of Robotics and Systems'),
(112415, 92027, 'zh', 'name', 'ęœŗå™ØäŗŗęŠ€ęœÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112416, 92028, 'en', 'name', 'State Key Laboratory of Lake Science and Environment'),
(112417, 92028, 'zh', 'name', 'ę¹–ę³ŠäøŽēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112418, 92029, 'es', 'name', 'Ministerio de la Presidencia, Relaciones con las Cortes y Memoria DemocrƔtica'),
(112419, 92030, 'en', 'name', 'State Key Laboratory of Scientific and Engineering Computing'),
(112420, 92030, 'zh', 'name', 'ē§‘å­¦äøŽå·„ēØ‹č®”ē®—å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112421, 92031, 'es', 'name', 'Innovatec (Spain)'),
(112422, 92032, 'no_lang_code', 'name', 'Ayatollah Boroujerdi University'),
(112423, 92032, 'fa', 'name', 'دانؓگاه آیت الله Ų§Ł„Ų¹ŲøŁ…ŪŒ بروجردی'),
(112424, 92033, 'en', 'name', 'State Key Laboratory of Earth Surface Processes and Resource Ecology'),
(112425, 92033, 'zh', 'name', 'åœ°č”Øčæ‡ēØ‹äøŽčµ„ęŗē”Ÿę€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112426, 92034, 'es', 'name', 'Ayuntamiento de Bilbao'),
(112427, 92034, 'en', 'name', 'Bilbao Council'),
(112428, 92034, 'eu', 'name', 'Bilboko Udala'),
(112429, 92035, 'no_lang_code', 'name', 'Kensei Hospital, Tokushima'),
(112430, 92035, 'ja', 'name', 'å¾³å³¶å„ē”Ÿē—…é™¢'),
(112431, 92036, 'no_lang_code', 'name', 'China Guodian Corporation (China)'),
(112432, 92036, 'zh', 'name', 'äø­å›½å›½ē”µé›†å›¢å…¬åø'),
(112433, 92037, 'en', 'name', 'International Growth Centre'),
(112434, 92038, 'no_lang_code', 'name', 'Certis USA (United States)'),
(112435, 92039, 'en', 'name', 'State Key Laboratory for Innovation and Transformation of Luobing Theory'),
(112436, 92039, 'zh', 'name', 'ē»œē—…ē†č®ŗåˆ›ę–°č½¬åŒ–å…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(112437, 92040, 'ca', 'name', 'Ajuntament de Sant SebastiĆ '),
(112438, 92040, 'es', 'name', 'Ayuntamiento de San SebastiƔn'),
(112439, 92040, 'en', 'name', 'City council of San SebastiƔn'),
(112440, 92040, 'eu', 'name', 'Donostiako Udala'),
(112441, 92041, 'es', 'name', 'Farmacoeconomía e Investigación de Resultados en Salud'),
(112442, 92041, 'no_lang_code', 'name', 'Pharmacoeconomics and Health Outcomes Research Iberia (Spain)'),
(112443, 92042, 'en', 'name', 'Center for Hierarchical Materials Design'),
(112444, 92043, 'en', 'name', 'Lanzhou Institute of Chemical Physics'),
(112445, 92043, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å…°å·žåŒ–å­¦ē‰©ē†ē ”ē©¶ę‰€'),
(112446, 92044, 'es', 'name', 'Ayuntamiento de Vigo'),
(112447, 92044, 'gl', 'name', 'Concello de Vigo'),
(112448, 92045, 'en', 'name', 'State Key Laboratory of New Technology of Traditional Chinese Medicine Pharmaceutical Process'),
(112449, 92045, 'zh', 'name', 'äø­čÆåˆ¶čÆčæ‡ēØ‹ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112450, 92046, 'en', 'name', 'State Key Laboratory of Internal Combustion Engine Reliability'),
(112451, 92046, 'zh', 'name', 'å†…ē‡ƒęœŗåÆé ę€§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112452, 92047, 'fr', 'name', 'Centre Lyonnais d''Acoustique'),
(112453, 92048, 'en', 'name', 'ARS University'),
(112454, 92049, 'es', 'name', 'Instituto Municipal de Gestión Medioambiental'),
(112455, 92050, 'en', 'name', 'Achucarro Basque Center for Neuroscience'),
(112456, 92050, 'es', 'name', 'Centro Vasco de Investigación en Neurociencia'),
(112457, 92051, 'en', 'name', 'Afghanistan Center for Epidemiological Studies'),
(112458, 92051, 'fa', 'name', 'مرکز مطالعات Ų§Ł¾ŪŒŲÆŁ…ŪŒŁˆŁ„ŁˆŚ˜ŪŒŚ© افغانستان'),
(112459, 92052, 'no_lang_code', 'name', 'Haier Group (China)'),
(112460, 92052, 'zh', 'name', 'ęµ·å°”é›†å›¢ęŠ€ęœÆē ”å‘äø­åæƒ'),
(112461, 92053, 'en', 'name', 'State Key Laboratory of Civil Engineering Disaster Prevention'),
(112462, 92053, 'zh', 'name', 'åœŸęœØå·„ēØ‹é˜²ē¾å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112463, 92054, 'sv', 'name', 'Skogs- och Jordbrukets ForskningsrƄd'),
(112464, 92054, 'en', 'name', 'Swedish Council for Forestry and Agricultural Research'),
(112465, 92055, 'en', 'name', 'Institute of Biomedicine of Seville'),
(112466, 92055, 'es', 'name', 'Instituto de Biomedicina de Sevilla'),
(112467, 92056, 'en', 'name', 'State Key Laboratory of Polyolefin Catalysis Technology and High Performance Materials'),
(112468, 92056, 'zh', 'name', 'čšēƒÆēƒƒå‚¬åŒ–ęŠ€ęœÆäøŽé«˜ę€§čƒ½ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112469, 92057, 'en', 'name', 'Andalusian Institute of Agricultural and Fisheries Research and Training'),
(112470, 92057, 'es', 'name', 'Instituto Andaluz de Investigación y Formación Agraria, Pesquera, Alimentaria y de la Producción Ecológica'),
(112471, 92058, 'en', 'name', 'State Key Laboratory of Metallogenic Mechanism of Endogenous Metal Deposits'),
(112472, 92058, 'zh', 'name', 'å†…ē”Ÿé‡‘å±žēŸæåŗŠęˆēŸæęœŗåˆ¶ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112473, 92059, 'es', 'name', 'Agencia Sanitaria Costa del Sol'),
(112474, 92060, 'ca', 'name', 'Institut InfĆ ncia'),
(112475, 92060, 'en', 'name', 'Institute of Childhood and Urban World'),
(112476, 92060, 'es', 'name', 'Instituto Infancia'),
(112477, 92061, 'ca', 'name', 'Gabinet d''Estudis Socials'),
(112478, 92062, 'en', 'name', 'State Key Laboratory of Luminescence and Application'),
(112479, 92062, 'zh', 'name', 'å‘å…‰å­¦åŠåŗ”ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112480, 92063, 'fr', 'name', 'Fondation Institut de Cardiologie de MontrƩal'),
(112481, 92063, 'en', 'name', 'Montreal Heart Institute Foundation'),
(112482, 92064, 'en', 'name', 'Jilin Provincial Institute of Occupational Health'),
(112483, 92064, 'zh', 'name', 'å‰ęž—ēœčŒäøšē—…é˜²ę²»é™¢'),
(112484, 92065, 'es', 'name', 'ConsejerĆ­a de EconomĆ­a, Conocimiento, Empresas y Universidad'),
(112485, 92066, 'no_lang_code', 'name', 'Renfe Operadora (Spain)'),
(112486, 92067, 'en', 'name', 'State Key Laboratory of Industrial Automation Systems and Process Equipment Technology'),
(112487, 92067, 'zh', 'name', 'ę··åˆęµēØ‹å·„äøšč‡ŖåŠØåŒ–ē³»ē»ŸåŠč£…å¤‡ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112488, 92068, 'en', 'name', 'Macau University of Science and Technology Foundation'),
(112489, 92068, 'zh', 'name', 'ę¾³é—Øē§‘ęŠ€å¤§å­¦åŸŗé‡‘ä¼š'),
(112490, 92069, 'en', 'name', 'State Key Laboratory of Rare Metal Separation and Comprehensive Utilization'),
(112491, 92069, 'zh', 'name', 'ēØ€ęœ‰é‡‘å±žåˆ†ē¦»äøŽē»¼åˆåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112492, 92070, 'en', 'name', 'China National Hybrid Rice R&D Central Hunan Hybrid Rice Reserch Center'),
(112493, 92070, 'zh', 'name', 'å›½å®¶ę‚äŗ¤ę°“ēØ»å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(112494, 92071, 'en', 'name', 'Foundation for Research in Rheumatology'),
(112495, 92072, 'ca', 'name', 'Institut ValenciĆ  de Competitivitat Empresarial'),
(112496, 92072, 'en', 'name', 'Institute for Small and Medium Industry of the Generalitat Valenciana'),
(112497, 92072, 'es', 'name', 'Instituto Valenciano de Competitividad Empresarial'),
(112498, 92073, 'fr', 'name', 'Institut de Recherches en Didactiques et Ɖducation de l’UNamur'),
(112499, 92074, 'en', 'name', 'Geology, Minerals, Energy, and Geophysics Science Center'),
(112500, 92075, 'en', 'name', 'ISRIC - World Soil Information'),
(112501, 92076, 'en', 'name', 'State Key Laboratory of Infrared Physics'),
(112502, 92076, 'zh', 'name', 'ēŗ¢å¤–ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112503, 92077, 'en', 'name', 'Higher Council for Science and Technology'),
(112504, 92078, 'it', 'name', 'Fondazione Cassa di Risparmio di Firenze'),
(112505, 92079, 'es', 'name', 'Autoridad Portuaria de Gijon'),
(112506, 92079, 'en', 'name', 'Port Authority of Gijón'),
(112507, 92080, 'cs', 'name', 'BezpečnostnĆ­ informačnĆ­ služba'),
(112508, 92080, 'en', 'name', 'Security Information Service'),
(112509, 92081, 'en', 'name', 'State Key Laboratory of Rare Earth Materials Chemistry and Application'),
(112510, 92081, 'zh', 'name', 'ēØ€åœŸęę–™åŒ–å­¦åŠåŗ”ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112511, 92082, 'en', 'name', 'Namur Institute of Structured Matter'),
(112512, 92083, 'es', 'name', 'Fundació Puigvert'),
(112513, 92083, 'en', 'name', 'Puigvert Foundation'),
(112514, 92084, 'es', 'name', 'Geociencias Barcelona'),
(112515, 92085, 'en', 'name', 'Beijing Institute of Optoelectronic Technology'),
(112516, 92085, 'zh', 'name', 'åŒ—äŗ¬å…‰ē”µęŠ€ęœÆē ”ē©¶ę‰€'),
(112517, 92086, 'es', 'name', 'Agencia Santafesina de Ciencia, Tecnología e Innovación'),
(112518, 92086, 'en', 'name', 'Santa Fe Science, Technology and Innovation Agency'),
(112519, 92087, 'en', 'name', 'Sinopec Research Institute of Petroleum Processing'),
(112520, 92087, 'zh', 'name', 'äø­ēŸ³åŒ–ēŸ³ę²¹åŒ–å·„ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(112521, 92088, 'sr', 'name', 'Fond za nauku Republike Srbije'),
(112522, 92088, 'en', 'name', 'Science Fund of the Republic of Serbia'),
(112523, 92089, 'en', 'name', 'nccr – on the move'),
(112524, 92090, 'en', 'name', 'Mariupol State University'),
(112525, 92090, 'ru', 'name', 'ŠœŠ°Ń€ŠøŃƒŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(112526, 92090, 'uk', 'name', 'ŠœŠ°Ń€Ń–ŃƒŠæŠ¾Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(112527, 92091, 'es', 'name', 'Universidad de Vic - Universidad Central de Catalunya'),
(112528, 92091, 'ca', 'name', 'Universitat de Vic - Universitat Central de Catalunya'),
(112529, 92091, 'en', 'name', 'University of Vic - Central University of Catalonia'),
(112530, 92092, 'nl', 'name', 'Departement Omgeving'),
(112531, 92093, 'en', 'name', 'State Key Laboratory of Structural Chemistry'),
(112532, 92093, 'zh', 'name', 'ē»“ęž„åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112533, 92094, 'en', 'name', 'Institute of Automation'),
(112534, 92094, 'zh', 'name', 'č‡ŖåŠØåŒ–ē ”ē©¶ę‰€'),
(112535, 92095, 'en', 'name', 'State Key Laboratory of EMU and Locomotive Traction and Control'),
(112536, 92095, 'zh', 'name', 'åŠØč½¦ē»„å’Œęœŗč½¦ē‰µå¼•äøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112537, 92096, 'en', 'name', 'Research Laboratory in Machine, Process and Structural Dynamics'),
(112538, 92096, 'fr', 'name', 'Ɖquipe de recherche en dynamique des machines, des structures et des procĆ©dĆ©s'),
(112539, 92097, 'en', 'name', 'State Key Laboratory of Biogeology and Environmental Geology'),
(112540, 92097, 'zh', 'name', 'ē”Ÿē‰©åœ°č“ØäøŽēŽÆå¢ƒåœ°č“Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112541, 92098, 'fr', 'name', 'Laboratoire d’Économie d’OrlĆ©ans'),
(112542, 92099, 'no_lang_code', 'name', 'ZTE (China)'),
(112543, 92099, 'zh', 'name', 'äø­å…“é€šč®Æč‚”ä»½ęœ‰é™å…¬åø'),
(112544, 92100, 'ca', 'name', 'Institut de Diagnòstic Ambiental i Estudis de l''Aigua'),
(112545, 92100, 'en', 'name', 'Institute of Environmental Assessment and Water Research'),
(112546, 92100, 'es', 'name', 'Instituto de Diagnóstico Ambiental y Estudios del Agua'),
(112547, 92101, 'en', 'name', 'Korea Transportation Safety Authority'),
(112548, 92101, 'ko', 'name', 'ķ•œźµ­źµķ†µģ•ˆģ „ź³µė‹Ø'),
(112549, 92102, 'en', 'name', 'Institute of Optics "Daza de ValdƩs"'),
(112550, 92102, 'es', 'name', 'Instituto de Ɠptica "Daza de ValdĆ©s"'),
(112551, 92103, 'en', 'name', 'State Key Laboratory of High Temperature Gas Dynamics'),
(112552, 92103, 'zh', 'name', 'é«˜ęø©ę°”ä½“åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112553, 92104, 'en', 'name', 'Arizona-Nevada Academy of Science'),
(112554, 92105, 'en', 'name', 'Egypt University of Informatics'),
(112555, 92105, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ± Ł„Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖŁŠŲ©'),
(112556, 92106, 'es', 'name', 'Hospital Universitario Virgen de la Arrixaca'),
(112557, 92107, 'en', 'name', 'South East Asian Theological Schools, Inc.'),
(112558, 92108, 'en', 'name', 'Philippine Council for Health Research and Development'),
(112559, 92109, 'en', 'name', 'State Key Laboratory of Complex Electromagnetic Environment Effects on Electronics and Information System'),
(112560, 92109, 'zh', 'name', 'ē”µå­äæ”ęÆē³»ē»Ÿå¤ę‚ē”µē£ēŽÆå¢ƒę•ˆåŗ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112561, 92110, 'de', 'name', 'KRH Klinikum Nordstadt'),
(112562, 92110, 'en', 'name', 'Nordstadt Hospital'),
(112563, 92111, 'en', 'name', 'Topos Institute'),
(112564, 92112, 'en', 'name', 'State Key Laboratory of Cell Biology'),
(112565, 92112, 'zh', 'name', 'ē»†čƒžē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112566, 92113, 'en', 'name', 'Swine Innovation Porc'),
(112567, 92114, 'en', 'name', 'China Institute of Water Resources and Hydropower Research'),
(112568, 92114, 'zh', 'name', 'äø­å›½ę°“åˆ©ę°“ē”µē§‘å­¦ē ”ē©¶é™¢'),
(112569, 92115, 'id', 'name', 'STAI Miftahul Huda Al-Azhar Kota Banjar'),
(112570, 92116, 'en', 'name', 'African Union Development Agency-New Partnership for Africa''s Development'),
(112571, 92117, 'en', 'name', 'Foundation for the Study of Viral Hepatitis'),
(112572, 92117, 'es', 'name', 'Fundación para el Estudio de las Hepatitis Virales'),
(112573, 92118, 'eu', 'name', 'Bizkaiko Foru Aldundia'),
(112574, 92118, 'es', 'name', 'Diputación Foral de Vizcaya'),
(112575, 92119, 'es', 'name', 'Cabildo de La Palma'),
(112576, 92120, 'en', 'name', 'State Key Laboratory of Diagnosis and Treatment of Infectious Diseases'),
(112577, 92120, 'zh', 'name', 'ä¼ ęŸ“ē—…čÆŠę²»å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112578, 92121, 'tr', 'name', 'Kalkinma Bakanliği'),
(112579, 92121, 'en', 'name', 'Ministry of Development (Turkey)'),
(112580, 92122, 'en', 'name', 'Portia'),
(112581, 92123, 'en', 'name', 'Promedica Foundation'),
(112582, 92123, 'de', 'name', 'Promedica Stiftung'),
(112583, 92124, 'en', 'name', 'State Key Laboratory of Cognitive Neuroscience and Learning'),
(112584, 92124, 'zh', 'name', 'č®¤ēŸ„ē„žē»ē§‘å­¦äøŽå­¦ä¹ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112585, 92125, 'en', 'name', 'State Key Laboratory of Solid Waste Resource Utilization and Energy-Saving Building Materials'),
(112586, 92125, 'zh', 'name', 'å›ŗåŗŸčµ„ęŗåŒ–åˆ©ē”ØäøŽčŠ‚čƒ½å»ŗęå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112587, 92126, 'es', 'name', 'Fundación Progreso y Salud'),
(112588, 92127, 'no_lang_code', 'name', 'IbermƔtica (Spain)'),
(112589, 92128, 'es', 'name', 'Ayuntamiento de Castellón de la Plana'),
(112590, 92129, 'en', 'name', 'Bellvitge University Hospital'),
(112591, 92129, 'ca', 'name', 'Hospital Universitari de Bellvitge'),
(112592, 92130, 'fr', 'name', 'Laboratoire d’excellence Physique Atomes LumiĆØre MatiĆØre'),
(112593, 92131, 'no_lang_code', 'name', 'Treelogic (Spain)'),
(112594, 92132, 'it', 'name', 'Gruppo Nazionale per il Calcolo Scientifico'),
(112595, 92132, 'en', 'name', 'National Group for Scientific Computation'),
(112596, 92133, 'no_lang_code', 'name', 'Misurata University'),
(112597, 92133, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ±Ų§ŲŖŲ©'),
(112598, 92134, 'en', 'name', 'Government of Northern Ireland'),
(112599, 92135, 'en', 'name', 'Northwest Institute of Rare Metal Materials'),
(112600, 92135, 'zh', 'name', 'č„æåŒ—ēØ€ęœ‰é‡‘å±žęę–™ē ”ē©¶ę‰€'),
(112601, 92136, 'en', 'name', 'Centre for Structural Systems Biology'),
(112602, 92137, 'es', 'name', 'Centro Quƭmica OrgƔnica "LORA-TAMAYO"'),
(112603, 92138, 'no_lang_code', 'name', 'Commercial Aircraft Corporation of China (China)'),
(112604, 92138, 'zh', 'name', 'äø­å›½å•†ē”Øé£žęœŗęœ‰é™č“£ä»»å…¬åø'),
(112605, 92139, 'en', 'name', 'State Key Laboratory of Energy Conservation for Air Conditioning Equipment and System Operation'),
(112606, 92139, 'zh', 'name', 'ē©ŗč°ƒč®¾å¤‡åŠē³»ē»Ÿčæč”ŒčŠ‚čƒ½å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112607, 92140, 'en', 'name', 'State Key Laboratory of Magnetism'),
(112608, 92140, 'zh', 'name', 'ē£å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112609, 92141, 'en', 'name', 'Virginia Agricultural Experiment Station'),
(112610, 92142, 'no_lang_code', 'name', 'Geiser Pharma (Spain)'),
(112611, 92143, 'en', 'name', 'State Key Laboratory of Water and Sediment Science and Water Conservancy and Hydropower Engineering'),
(112612, 92143, 'zh', 'name', 'ę°“ę²™ē§‘å­¦äøŽę°“åˆ©ę°“ē”µå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112613, 92144, 'es', 'name', 'Instituto de Ganaderƭa de MontaƱa'),
(112614, 92145, 'en', 'name', 'Public Employment Service State'),
(112615, 92145, 'es', 'name', 'Servicio PĆŗblico de Empleo Estatal'),
(112616, 92146, 'en', 'name', 'State Key Laboratory of Engine and Powertrain System'),
(112617, 92146, 'zh', 'name', 'å†…ē‡ƒęœŗäøŽåŠØåŠ›ē³»ē»Ÿå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(112618, 92147, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (Spain)'),
(112619, 92148, 'no_lang_code', 'name', 'CRRC (China)'),
(112620, 92148, 'zh', 'name', 'äø­å›½äø­č½¦č‚”ä»½ęœ‰é™å…¬åø'),
(112621, 92149, 'no_lang_code', 'name', 'Tianjin Institute of Pharmaceutical Research (China)'),
(112622, 92149, 'zh', 'name', 'å¤©ę“„čÆē‰©ē ”ē©¶ę‰€'),
(112623, 92150, 'en', 'name', 'Center for the Development of Information and Communication Technologies'),
(112624, 92150, 'es', 'name', 'Fundación Centro Tecnológico de la Información y la Comunicación'),
(112625, 92151, 'es', 'name', 'Fundación Marcos Moshinsky'),
(112626, 92151, 'en', 'name', 'Marcos Moshinsky Foundation'),
(112627, 92152, 'es', 'name', 'Instituto de FĆ­sica Corpuscular'),
(112628, 92153, 'en', 'name', 'British Institute for Libyan and Northern African Studies'),
(112629, 92154, 'en', 'name', 'State Key Laboratory of Strength of Metallic Materials'),
(112630, 92154, 'zh', 'name', 'é‡‘å±žęę–™å¼ŗåŗ¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112631, 92155, 'en', 'name', 'Samarkand State University of Veterinary Medicine, Livestock and Biotechnologies'),
(112632, 92155, 'uz', 'name', 'Samarqand davlat veterinariya meditsinasi, chorvachilik va biotexnologiyalar universiteti'),
(112633, 92155, 'ru', 'name', 'ДамарканГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарной меГицины, животновоГства Šø биотехнологий'),
(112634, 92156, 'en', 'name', 'State Key Laboratory of Pathogenic Microorganism Biosafety'),
(112635, 92156, 'zh', 'name', 'ē—…åŽŸå¾®ē”Ÿē‰©ē”Ÿē‰©å®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112636, 92157, 'id', 'name', 'Institut Agama Islam Negeri Kendari'),
(112637, 92158, 'en', 'name', 'State Key Laboratory of High-Speed Railway Track Technology'),
(112638, 92158, 'zh', 'name', 'é«˜é€Ÿé“č·Æč½Øé“ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112639, 92159, 'es', 'name', 'Instituto de Acuicultura Torre de la Sal'),
(112640, 92160, 'en', 'name', 'State Key Laboratory of Protein and Plant Gene Research'),
(112641, 92160, 'zh', 'name', 'č›‹ē™½č“ØäøŽę¤ē‰©åŸŗå› ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112642, 92161, 'en', 'name', 'National Center for Research and Development'),
(112643, 92162, 'no_lang_code', 'name', 'Cambia Health Solutions (United States)'),
(112644, 92163, 'no_lang_code', 'name', 'Reig Jofre (Spain)'),
(112645, 92164, 'pt', 'name', 'Centro Nacional de Processamento de Alto Desempenho em SĆ£o Paulo'),
(112646, 92164, 'en', 'name', 'National Center for High Performance Processing in SĆ£o Paulo'),
(112647, 92165, 'en', 'name', 'National Center of Competence in Research Materials’ Revolution: Computational Design and Discovery of Novel Materials'),
(112648, 92166, 'en', 'name', 'State Key Laboratory of Tribology'),
(112649, 92166, 'zh', 'name', 'ę‘©ę“¦å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112650, 92167, 'en', 'name', 'State Key Laboratory of Coal Combustion'),
(112651, 92167, 'zh', 'name', 'ē…¤ē‡ƒēƒ§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112652, 92168, 'no_lang_code', 'name', 'John Benjamins Publishing Company (Netherlands)'),
(112653, 92169, 'es', 'name', 'Escuela de Estudios Ɓrabes'),
(112654, 92169, 'en', 'name', 'School of Arabic Studies'),
(112655, 92170, 'en', 'name', 'State Key Laboratory of Soil and Sustainable Agriculture'),
(112656, 92170, 'zh', 'name', 'åœŸå£¤äøŽå†œäøšåÆęŒē»­å‘å±•å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112657, 92171, 'en', 'name', 'Jürgen Manchot Foundation'),
(112658, 92171, 'de', 'name', 'Jürgen Manchot Stiftung'),
(112659, 92172, 'es', 'name', 'Estación Experimental del Zaidín'),
(112660, 92173, 'en', 'name', 'Institute of Semiconductors'),
(112661, 92173, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŠåÆ¼ä½“ē ”ē©¶ę‰€'),
(112662, 92174, 'fr', 'name', 'Val de Loire Recherche en Management'),
(112663, 92175, 'es', 'name', 'Archivo Histórico Nacional'),
(112664, 92175, 'en', 'name', 'National Historical Archive'),
(112665, 92176, 'en', 'name', 'Georgia Clinical and Translational Science Alliance'),
(112666, 92177, 'pt', 'name', 'Centro Latino-Americano de Estudos em Cultura'),
(112667, 92178, 'fr', 'name', 'Groupe de recherche en intégration et développement durable en environnement bâti'),
(112668, 92178, 'en', 'name', 'Research Group in Integration and Sustainable Development in Built Environment'),
(112669, 92179, 'en', 'name', 'Dalian Institute of Chemical Physics'),
(112670, 92179, 'zh', 'name', 'å¤§čæžåŒ–å­¦ē‰©ē†ē ”ē©¶ę‰€'),
(112671, 92180, 'es', 'name', 'Complejo Hospitalario de JaƩn'),
(112672, 92181, 'en', 'name', 'Cajal International Neuroscience Center'),
(112673, 92181, 'es', 'name', 'Centro Internacional de Neurociencia Cajal'),
(112674, 92182, 'en', 'name', 'Merchants Chongqing Communications Research and Design Institute'),
(112675, 92182, 'zh', 'name', 'ę‹›å•†å±€é‡åŗ†äŗ¤é€šē§‘ē ”č®¾č®”é™¢ęœ‰é™å…¬åø'),
(112676, 92183, 'sv', 'name', 'RƄdet fƶr Strategisk Forskning'),
(112677, 92183, 'en', 'name', 'Strategic Research Council'),
(112678, 92183, 'fi', 'name', 'Strategisen Tutkimuksen Neuvosto'),
(112679, 92184, 'ca', 'name', 'Ajuntament de Reus'),
(112680, 92184, 'es', 'name', 'Ayuntamiento de Reus'),
(112681, 92185, 'es', 'name', 'Instituto MediterrƔneo de Estudios Avanzados'),
(112682, 92185, 'en', 'name', 'Mediterranean Institute for Advanced Studies'),
(112683, 92186, 'en', 'name', 'State Key Laboratory of Catalysis'),
(112684, 92186, 'zh', 'name', 'å‚¬åŒ–åŸŗē”€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112685, 92187, 'es', 'name', 'Residencia de Investigadores y Biblioteca de Sevilla'),
(112686, 92187, 'en', 'name', 'Seville Residence for Researchers and Library'),
(112687, 92188, 'en', 'name', 'Sunnybrook Research Institute'),
(112688, 92189, 'en', 'name', 'Central Laser Facility'),
(112689, 92190, 'en', 'name', 'Vehicle Technologies Office'),
(112690, 92191, 'ca', 'name', 'Institució Milà i Fontanals de Recerca en Humanitats'),
(112691, 92191, 'es', 'name', 'Institución MilÔ y Fontanals de Investigación en Humanidades'),
(112692, 92192, 'en', 'name', 'State Key Laboratory of Plant Physiology and Biochemistry'),
(112693, 92192, 'zh', 'name', 'ę¤ē‰©ē”Ÿē†å­¦äøŽē”Ÿē‰©åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112694, 92193, 'fr', 'name', 'GƩnome QuƩbec'),
(112695, 92194, 'en', 'name', 'Donors Association for the Promotion of Humanities and Sciences in Germany'),
(112696, 92194, 'de', 'name', 'Stifterverband'),
(112697, 92195, 'en', 'name', 'National Agency for Agricultural Research'),
(112698, 92195, 'cs', 'name', 'NĆ”rodnĆ­ Agentura pro Zemědělský Výzkum'),
(112699, 92196, 'en', 'name', 'Texas A&M Engineering Experiment Station'),
(112700, 92197, 'en', 'name', 'Florence Bascom Geoscience Center'),
(112701, 92198, 'es', 'name', 'Centro Nacional de BiotecnologĆ­a'),
(112702, 92199, 'en', 'name', 'State Key Laboratory of Continental Dynamics'),
(112703, 92199, 'zh', 'name', 'å¤§é™†åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112704, 92200, 'en', 'name', 'State Key Laboratory of Plant Molecular Genetics'),
(112705, 92200, 'zh', 'name', 'ę¤ē‰©åˆ†å­é—ä¼ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112706, 92201, 'en', 'name', 'NASA Earth Science'),
(112707, 92202, 'en', 'name', 'State Key Laboratory of Phytochemistry and Sustainable Utilization of Western Plant Resources'),
(112708, 92202, 'zh', 'name', 'ę¤ē‰©åŒ–å­¦äøŽč„æéƒØę¤ē‰©čµ„ęŗęŒē»­åˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112709, 92203, 'en', 'name', 'State Key Laboratory of Power Transmission and Distribution Equipment and System Safety and New Technology'),
(112710, 92203, 'zh', 'name', 'č¾“é…ē”µč£…å¤‡åŠē³»ē»Ÿå®‰å…ØäøŽę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112711, 92204, 'no_lang_code', 'name', 'Alleo Labs (United States)'),
(112712, 92205, 'en', 'name', 'State Key Laboratory of Wireless Mobile Communications'),
(112713, 92205, 'zh', 'name', 'ę— ēŗæē§»åŠØé€šäæ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112714, 92206, 'en', 'name', 'Clinical and Translational Science Collaborative of Northern Ohio'),
(112715, 92207, 'en', 'name', 'METAvivor'),
(112716, 92208, 'es', 'name', 'CIC energiGUNE'),
(112717, 92209, 'fr', 'name', 'Laboratoire national de los alamos'),
(112718, 92209, 'es', 'name', 'Laboratorio Nacional de Los Ɓlamos'),
(112719, 92209, 'en', 'name', 'Los Alamos National Laboratory'),
(112720, 92210, 'en', 'name', 'State Key Laboratory of Satellite Ocean Environment Dynamics'),
(112721, 92210, 'zh', 'name', 'å«ę˜Ÿęµ·ę“‹ēŽÆå¢ƒåŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112722, 92211, 'es', 'name', 'Fundación Agustín de Betancourt'),
(112723, 92212, 'en', 'name', 'State Key Laboratory of Deep Sea Mineral Resources Development and Utilization of Technology'),
(112724, 92212, 'zh', 'name', 'ę·±ęµ·ēŸæäŗ§čµ„ęŗå¼€å‘åˆ©ē”ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112725, 92213, 'en', 'name', 'State Key Laboratory of Plant Cell and Chromosome Engineering'),
(112726, 92213, 'zh', 'name', 'ę¤ē‰©ē»†čƒžäøŽęŸ“č‰²ä½“å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112727, 92214, 'en', 'name', 'Institute of Plant Genetics, Polish Academy of Sciences'),
(112728, 92214, 'pl', 'name', 'Instytut Genetyki Roślin Polskiej Akademii Nauk'),
(112729, 92215, 'en', 'name', 'Institute of Agriculture and Natural Resources'),
(112730, 92216, 'en', 'name', 'State Key Laboratory of Materials Processing and Die & Mould Technology'),
(112731, 92216, 'zh', 'name', 'ęę–™ęˆå½¢äøŽęØ”å…·ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112732, 92217, 'en', 'name', 'Institute of Animal Sciences'),
(112733, 92217, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢åŒ—äŗ¬ē•œē‰§å…½åŒ»ē ”ē©¶ę‰€'),
(112734, 92218, 'es', 'name', 'Real Conservatorio Superior de MĆŗsica de Madrid'),
(112735, 92218, 'en', 'name', 'The Royal Conservatory of Madrid'),
(112736, 92219, 'fr', 'name', 'BibliothĆØque interuniversitaire de la Sorbonne'),
(112737, 92220, 'no_lang_code', 'name', 'Kanion Pharmaceutical (China)'),
(112738, 92220, 'zh', 'name', 'ę±Ÿč‹åŗ·ē¼˜čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(112739, 92221, 'en', 'name', 'International Society of Exposure Science'),
(112740, 92222, 'es', 'name', 'Centro OceanogrƔfico de CƔdiz'),
(112741, 92222, 'en', 'name', 'Oceanographic Center of CƔdiz'),
(112742, 92223, 'no_lang_code', 'name', 'Olive Quimica (Spain)'),
(112743, 92224, 'pt', 'name', 'Rede de QuĆ­mica e Tecnologia'),
(112744, 92225, 'en', 'name', 'State Key Laboratory of Virology'),
(112745, 92225, 'zh', 'name', 'ē—…ęÆ’å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112746, 92226, 'es', 'name', 'Centro Nacional de Aceleradores'),
(112747, 92226, 'en', 'name', 'National Center of Accelerators'),
(112748, 92227, 'ca', 'name', 'Institut d''Investigació i Innovació Parc Taulí'),
(112749, 92227, 'en', 'name', 'Institute of Research and Innovation Parc Tauli'),
(112750, 92227, 'es', 'name', 'Instituto de Investigación e Innovación Parc Taulí'),
(112751, 92228, 'es', 'name', 'Confederacion EspaƱola de Organizaciones Empresariales del Metal'),
(112752, 92229, 'en', 'name', 'Catalan Institute of Human Paleoecology and Social Evolution'),
(112753, 92229, 'ca', 'name', 'Institut Català de Paleoecologia Humana i Evolució Social'),
(112754, 92230, 'no_lang_code', 'name', 'Shaanxi Yanchang Petroleum (China)'),
(112755, 92230, 'zh', 'name', 'é™•č„æå»¶é•æēŸ³ę²¹ļ¼ˆé›†å›¢ļ¼‰ęœ‰é™č“£ä»»å…¬åø'),
(112756, 92231, 'es', 'name', 'Centro de Ciencias Humanas y Sociales'),
(112757, 92232, 'en', 'name', 'Earthquake Science Center'),
(112758, 92233, 'en', 'name', 'Mary and Georg C. Ehrnrooth Foundation'),
(112759, 92233, 'sv', 'name', 'Mary och Georg C. Ehrnrooths Stiftelse'),
(112760, 92234, 'en', 'name', 'State Key Laboratory of Pest Control and Resource Utilization'),
(112761, 92234, 'zh', 'name', 'ęœ‰å®³ē”Ÿē‰©ęŽ§åˆ¶äøŽčµ„ęŗåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112762, 92235, 'fr', 'name', 'Fondation OCP'),
(112763, 92235, 'en', 'name', 'OCP Foundation'),
(112764, 92236, 'ca', 'name', 'Institut QuĆ­mic de SarriĆ '),
(112765, 92236, 'es', 'name', 'Instituto Quimico de SarriĆ '),
(112766, 92237, 'en', 'name', 'State Key Laboratory of Oral Diseases'),
(112767, 92237, 'zh', 'name', 'å£č…”ē–¾ē—…ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112768, 92238, 'es', 'name', 'Hospital Nacional de ParaplƩjicos'),
(112769, 92239, 'en', 'name', 'Danish Council for Independent Research, Society and Business'),
(112770, 92239, 'da', 'name', 'Samfund og Erhverv, Det Frie ForskningsrƄd'),
(112771, 92240, 'de', 'name', 'Paracelsus-Harz-Klinik Bad Suderode'),
(112772, 92241, 'ca', 'name', 'Centre de Visió per Computador'),
(112773, 92241, 'en', 'name', 'Computer Vision Center'),
(112774, 92242, 'fr', 'name', 'fabriqueREL'),
(112775, 92243, 'en', 'name', 'Basque Government'),
(112776, 92243, 'eu', 'name', 'Eusko Jaurlaritza'),
(112777, 92243, 'gl', 'name', 'Goberno Vasco'),
(112778, 92243, 'es', 'name', 'Gobierno Vasco'),
(112779, 92243, 'ca', 'name', 'Govern Basc'),
(112780, 92244, 'en', 'name', 'Institute of Life, Earth and Environment'),
(112781, 92245, 'ca', 'name', 'Hospital Universitari Germans Trias i Pujol'),
(112782, 92246, 'en', 'name', 'State Key Laboratory of Tropical Oceanography'),
(112783, 92246, 'zh', 'name', 'ēƒ­åø¦ęµ·ę“‹ēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112784, 92247, 'en', 'name', 'Shanghai Institute of Pharmaceutical Industry'),
(112785, 92247, 'zh', 'name', 'äøŠęµ·åŒ»čÆå·„äøšē ”ē©¶é™¢'),
(112786, 92248, 'no_lang_code', 'name', 'Sinopec (China)'),
(112787, 92248, 'zh', 'name', 'äø­å›½ēŸ³ę²¹åŒ–å·„č‚”ä»½ęœ‰é™å…¬åøēŸ³ę²¹å‹˜ęŽ¢å¼€å‘ē ”ē©¶é™¢'),
(112788, 92249, 'es', 'name', 'Fundación Estatal, Salud, Infancia y Bienestar Social, F.S.P.'),
(112789, 92250, 'en', 'name', 'Revive & Restore'),
(112790, 92251, 'es', 'name', 'Instituto Nacional de Seguridad y Salud en el Trabajo'),
(112791, 92252, 'en', 'name', 'Institute of Genetics and Developmental Biology'),
(112792, 92252, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢é—ä¼ äøŽå‘č‚²ē”Ÿē‰©å­¦ē ”ē©¶ę‰€å†œäøščµ„ęŗē ”ē©¶äø­åæƒ'),
(112793, 92253, 'no_lang_code', 'name', 'VMware (United States)'),
(112794, 92254, 'en', 'name', 'State Key Laboratory of Modern Coordination Chemistry'),
(112795, 92254, 'zh', 'name', 'ēŽ°ä»£é…ä½åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112796, 92255, 'en', 'name', 'State Key Laboratory of Process Automation in Mining and Metallurgy'),
(112797, 92255, 'zh', 'name', 'ēŸæå†¶čæ‡ēØ‹č‡ŖåŠØęŽ§åˆ¶ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112798, 92256, 'no_lang_code', 'name', 'Sanifit (Spain)'),
(112799, 92257, 'en', 'name', 'State Key Laboratory of Biogenic Fiber Manufacturing Technology'),
(112800, 92257, 'zh', 'name', 'ē”Ÿē‰©ęŗēŗ¤ē»“åˆ¶é€ ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112801, 92258, 'en', 'name', 'Institute of Soil Science'),
(112802, 92258, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å—äŗ¬åœŸå£¤ē ”ē©¶ę‰€'),
(112803, 92259, 'es', 'name', 'Conselleria de Cultura, Educación y Ciencia, Generalitat Valenciana'),
(112804, 92260, 'en', 'name', 'State Key Laboratory of Metal Porous Materials'),
(112805, 92260, 'zh', 'name', 'é‡‘å±žå¤šå­”ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112806, 92261, 'ca', 'name', 'Institut CatalĆ  d''Energia'),
(112807, 92261, 'es', 'name', 'Instituto CatalƔn de Energƭa'),
(112808, 92262, 'en', 'name', 'State Key Laboratory of Co-mining of Coal and Coal-Bed Methane'),
(112809, 92262, 'zh', 'name', 'ē…¤äøŽē…¤å±‚ę°”å…±é‡‡å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112810, 92263, 'en', 'name', 'State Key Laboratory of Advanced Materials for Smart Sensing'),
(112811, 92263, 'zh', 'name', 'ę™ŗčƒ½ä¼ ę„ŸåŠŸčƒ½ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112812, 92264, 'es', 'name', 'Escuela de Negocios IESIDE'),
(112813, 92264, 'en', 'name', 'IESIDE Business School'),
(112814, 92265, 'es', 'name', 'Hospital Universitario Puerto Real'),
(112815, 92266, 'en', 'name', 'Second Military Medical University'),
(112816, 92266, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›å†›åŒ»å¤§å­¦'),
(112817, 92267, 'en', 'name', 'State Key Laboratory of Alternate Electrical Power System with Renewable Energy Sources'),
(112818, 92267, 'zh', 'name', 'ę–°čƒ½ęŗē”µåŠ›ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112819, 92268, 'en', 'name', 'State Key Laboratory of Life Organic Chemistry'),
(112820, 92268, 'zh', 'name', 'ē”Ÿå‘½ęœ‰ęœŗåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112821, 92269, 'en', 'name', 'Irma T. Hirschl Trust'),
(112822, 92270, 'ca', 'name', 'Fundació Balear d''Innovació i Tecnologia'),
(112823, 92270, 'es', 'name', 'Fundación Balear de Innovación y Tecnología'),
(112824, 92271, 'en', 'name', 'Geology, Energy and Minerals Science Center'),
(112825, 92272, 'fr', 'name', '3L.AM - Langues, LittĆ©ratures, Linguistique des UniversitĆ©s d’Angers et du Mans'),
(112826, 92273, 'en', 'name', 'North Dakota Agricultural Experiment Station'),
(112827, 92274, 'en', 'name', 'Institute of Coal Chemistry'),
(112828, 92274, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å±±č„æē…¤ē‚­åŒ–å­¦ē ”ē©¶ę‰€'),
(112829, 92275, 'en', 'name', 'Catalan Institute of Oncology'),
(112830, 92275, 'ca', 'name', 'Institut CatalĆ  d''Oncologia'),
(112831, 92275, 'es', 'name', 'Instituto CatalƔn de Oncologƭa'),
(112832, 92276, 'en', 'name', 'State Key Laboratory of Virus Genetic Engineering'),
(112833, 92276, 'zh', 'name', 'ē—…ęÆ’åŸŗå› å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112834, 92277, 'en', 'name', 'Yerevan Haybusak University'),
(112835, 92277, 'hy', 'name', 'ŌµÖ€Ö‡Õ”Õ¶Õ« «ՀՔյբուսՔկ» Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶Õ«'),
(112836, 92278, 'en', 'name', 'Geosciences and Environmental Change Science Center'),
(112837, 92279, 'en', 'name', 'Control and Robotics Laboratory'),
(112838, 92279, 'fr', 'name', 'Laboratoire de commande et de robotique'),
(112839, 92280, 'sv', 'name', 'Stiftelsen Konung Gustaf V:s 80-Ƅrsfond'),
(112840, 92280, 'en', 'name', 'The King Gustaf V Foundation''s 80-year fund'),
(112841, 92281, 'en', 'name', 'State Key Laboratory of Mechanical Manufacturing System Engineering'),
(112842, 92281, 'zh', 'name', 'ęœŗę¢°åˆ¶é€ ē³»ē»Ÿå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112843, 92282, 'no_lang_code', 'name', 'Kuang-Chi (China)'),
(112844, 92282, 'zh', 'name', '光志'),
(112845, 92283, 'en', 'name', 'Barcelona Graduate School of Mathematics'),
(112846, 92284, 'es', 'name', 'ConsejerĆ­a de Agricultura, Pesca, Agua y Desarrollo Rural'),
(112847, 92285, 'ca', 'name', 'Fundació Universitat-Empresa de les Illes Balears'),
(112848, 92285, 'es', 'name', 'Fundación Universidad-Empresa de las Islas Baleares'),
(112849, 92286, 'en', 'name', 'National Institute of Technology Nagaland'),
(112850, 92286, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Øą¤¾ą¤—ą¤¾ą¤²ą„ˆą¤‚ą¤”'),
(112851, 92287, 'en', 'name', 'State Key Laboratory of Applied Optics'),
(112852, 92287, 'zh', 'name', 'åŗ”ē”Øå…‰å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112853, 92288, 'en', 'name', 'Institute of Atmospheric Physics'),
(112854, 92288, 'zh', 'name', '中国科学院大气物理研究所'),
(112855, 92289, 'en', 'name', 'State Key Laboratory of Mechanical System and Vibration'),
(112856, 92289, 'zh', 'name', 'ęœŗę¢°ē³»ē»ŸäøŽęŒÆåŠØå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112857, 92290, 'en', 'name', 'Shanghai Institute of Technical Physics'),
(112858, 92290, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·ęŠ€ęœÆē‰©ē†ē ”ē©¶ę‰€'),
(112859, 92291, 'en', 'name', 'Air Force Medical University'),
(112860, 92291, 'zh', 'name', 'ē©ŗå†›å†›åŒ»å¤§å­¦'),
(112861, 92292, 'en', 'name', 'Great Lakes Science Center'),
(112862, 92293, 'en', 'name', 'Fort Collins Science Center'),
(112863, 92294, 'en', 'name', 'Dakota Water Science Center'),
(112864, 92295, 'en', 'name', 'Basque Foundation for Science'),
(112865, 92295, 'eu', 'name', 'Ikerbasque'),
(112866, 92296, 'es', 'name', 'Agencia Vasca de la Innovación'),
(112867, 92296, 'eu', 'name', 'Innobasque'),
(112868, 92297, 'en', 'name', 'State Key Laboratory of Herbage Improvement and Grassland Agro-ecosystems'),
(112869, 92297, 'zh', 'name', 'č‰ē§åˆ›ę–°äøŽč‰åœ°å†œäøšē”Ÿę€ē³»ē»Ÿå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(112870, 92298, 'en', 'name', 'Catalan Transplant Foundation'),
(112871, 92298, 'ca', 'name', 'Fundació Catalana de Trasplantament'),
(112872, 92299, 'ro', 'name', 'Agenția Națională pentru Cercetare și Dezvoltare'),
(112873, 92299, 'en', 'name', 'National Agency for Research and Development'),
(112874, 92300, 'es', 'name', 'Centro Tecnológico Lurederra'),
(112875, 92300, 'en', 'name', 'Technological Center Lurederra'),
(112876, 92301, 'en', 'name', 'Shanghai Institute of Materia Medica'),
(112877, 92301, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·čÆē‰©ē ”ē©¶ę‰€'),
(112878, 92302, 'en', 'name', 'Institute of Fundamental Physics'),
(112879, 92302, 'es', 'name', 'Instituto de FĆ­sica Fundamental'),
(112880, 92303, 'en', 'name', 'Fight Infections Foundation'),
(112881, 92303, 'ca', 'name', 'Fundació Lluita contra les Infeccions'),
(112882, 92304, 'en', 'name', 'China Agricultural University'),
(112883, 92304, 'zh', 'name', 'äø­å›½å†œäøšå¤§å­¦'),
(112884, 92305, 'en', 'name', 'State Key Laboratory of Disaster Prevention and Mitigation of Power Grid Transmission and Transformation Equipment'),
(112885, 92305, 'zh', 'name', 'ē”µē½‘č¾“å˜ē”µč®¾å¤‡é˜²ē¾å‡ē¾å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112886, 92306, 'en', 'name', 'Basrah University College of Science and Technology'),
(112887, 92306, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© البصرة الجامعة Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(112888, 92307, 'en', 'name', 'Health Sciences Research Institute of the ā€œGermans Trias i Pujolā€ Foundation'),
(112889, 92307, 'ca', 'name', 'Institut d''Investigació en Ciències de la Salut Germans Trias i Pujol'),
(112890, 92308, 'en', 'name', 'ProgHist Ltd.'),
(112891, 92309, 'en', 'name', 'State Key Laboratory of Biotherapy'),
(112892, 92309, 'zh', 'name', 'ē”Ÿē‰©ę²»ē–—å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112893, 92310, 'fr', 'name', 'Laboratoire de Psychologie des Pays de la Loire'),
(112894, 92311, 'en', 'name', 'State Key Laboratory of Modern Optical Instruments'),
(112895, 92311, 'zh', 'name', 'ēŽ°ä»£å…‰å­¦ä»Ŗå™Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112896, 92312, 'en', 'name', 'Institute of Hematology & Blood Diseases Hospital'),
(112897, 92312, 'zh', 'name', 'äø­å›½åŒ»å­¦ē§‘å­¦é™¢č”€ę¶²ē—…åŒ»é™¢'),
(112898, 92313, 'es', 'name', 'Centro OceanogrƔfico de Vigo'),
(112899, 92313, 'en', 'name', 'Oceanographic Center of Vigo'),
(112900, 92314, 'en', 'name', 'State Key Laboratory of Water Resources and Hydropower Engineering Science'),
(112901, 92314, 'zh', 'name', 'ę°“čµ„ęŗäøŽę°“ē”µå·„ēØ‹ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112902, 92315, 'tr', 'name', 'Bilim, Sanayi ve Teknoloji Bakanlığı'),
(112903, 92315, 'en', 'name', 'Ministry of Science, Industry and Technology'),
(112904, 92316, 'en', 'name', 'Ural Federal University'),
(112905, 92316, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(112906, 92317, 'es', 'name', 'Hospital Universitario RĆ­o Hortega'),
(112907, 92318, 'en', 'name', 'AlcalĆ” Center for Interdisciplinary Research'),
(112908, 92318, 'es', 'name', 'Centro de Investigaciones Interdisciplinares de AlcalĆ”'),
(112909, 92319, 'hu', 'name', 'Egészségügyi TudomÔnyos TanÔcs'),
(112910, 92319, 'en', 'name', 'Medical Research Council of Hungary'),
(112911, 92320, 'en', 'name', 'State Key Laboratory of Semiconductor Superlattice'),
(112912, 92320, 'zh', 'name', 'åŠåÆ¼ä½“č¶…ę™¶ę ¼å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112913, 92321, 'en', 'name', 'State Key Laboratory of Microbial Metabolism'),
(112914, 92321, 'zh', 'name', 'å¾®ē”Ÿē‰©ä»£č°¢å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112915, 92322, 'es', 'name', 'Asociacion Industrial de Optica Color e Imagen'),
(112916, 92323, 'es', 'name', 'Ayuntamiento de Zaragoza'),
(112917, 92324, 'en', 'name', 'State Key Laboratory of Intelligent Manufacturing of High-end Construction Machinery'),
(112918, 92324, 'zh', 'name', 'é«˜ē«Æå·„ēØ‹ęœŗę¢°ę™ŗčƒ½åˆ¶é€ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112919, 92325, 'es', 'name', 'Supercomputación Castilla y León'),
(112920, 92326, 'en', 'name', 'Institute of Soil and Water Conservation');
INSERT INTO `ror_settings` VALUES
(112921, 92326, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę°“åˆ©éƒØę°“åœŸäæęŒē ”ē©¶ę‰€'),
(112922, 92327, 'en', 'name', 'Chinese Academy of Agricultural Mechanization Sciences'),
(112923, 92327, 'zh', 'name', 'äø­å›½å†œäøšęœŗę¢°åŒ–ē§‘å­¦ē ”ē©¶é™¢'),
(112924, 92328, 'en', 'name', 'Civil Engineering Research and Innovation for Sustainability'),
(112925, 92329, 'es', 'name', 'Hospital Universitario Doctor Peset'),
(112926, 92330, 'es', 'name', 'Instituto de Investigación Sanitaria de Navarra'),
(112927, 92330, 'en', 'name', 'Navarre Institute of Health Research'),
(112928, 92331, 'en', 'name', 'State Key Laboratory of Elemental Organic Chemistry'),
(112929, 92331, 'zh', 'name', 'å…ƒē“ ęœ‰ęœŗåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112930, 92332, 'en', 'name', 'Swedish Society of Medicine'),
(112931, 92333, 'en', 'name', 'Cancer Hospital of Chinese Academy of Medical Sciences'),
(112932, 92333, 'zh', 'name', 'äø­å›½åŒ»å­¦ē§‘å­¦é™¢č‚æē˜¤åŒ»é™¢'),
(112933, 92334, 'fr', 'name', 'Laboratoire sur les alliages à mémoire et les systèmes intelligents'),
(112934, 92334, 'en', 'name', 'Shape Memory Alloys and Intelligent Systems Laboratory'),
(112935, 92335, 'no_lang_code', 'name', 'Diater (Spain)'),
(112936, 92336, 'en', 'name', 'Artificial Intelligence Research Institute'),
(112937, 92336, 'ca', 'name', 'Institut d''Investigació en Intel·ligència Artificial'),
(112938, 92336, 'es', 'name', 'Instituto de Investigación en Inteligencia Artificial'),
(112939, 92337, 'en', 'name', 'Petru Maior University'),
(112940, 92337, 'ro', 'name', 'Universitatea Petru Maior din Tîrgu Mureş'),
(112941, 92338, 'ca', 'name', 'Centro OceanogrƔfico de Illes Balears'),
(112942, 92338, 'en', 'name', 'Oceanographic Center of Illes Balears'),
(112943, 92339, 'en', 'name', 'Institute of Geochemistry'),
(112944, 92339, 'zh', 'name', 'åœ°ēƒåŒ–å­¦ē ”ē©¶ę‰€'),
(112945, 92340, 'en', 'name', 'Beijing General Research Institute of Mining and Metallurgy'),
(112946, 92340, 'zh', 'name', 'åŒ—äŗ¬ēŸæå†¶ē ”ē©¶ę€»é™¢'),
(112947, 92341, 'no_lang_code', 'name', 'Yangtze River Pharmaceutical Group (China)'),
(112948, 92341, 'zh', 'name', 'ę‰¬å­ę±ŸčÆäøšé›†å›¢'),
(112949, 92342, 'en', 'name', 'State Key Laboratory of Integrated Management of Pest Insects and Rodents'),
(112950, 92342, 'zh', 'name', 'å†œäøšč™«å®³é¼ å®³ē»¼åˆę²»ē†ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112951, 92343, 'en', 'name', 'State Key Laboratory of Medical Molecular Biology'),
(112952, 92343, 'zh', 'name', 'åŒ»å­¦åˆ†å­ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112953, 92344, 'no_lang_code', 'name', 'China Coal Research Institute (China)'),
(112954, 92344, 'zh', 'name', '中国煤炭科学研究总院'),
(112955, 92345, 'fr', 'name', 'La RƩgion Occitanie PyrƩnƩes-MƩditerranƩe'),
(112956, 92346, 'en', 'name', 'Doctors Without Borders'),
(112957, 92346, 'fr', 'name', 'Médecins Sans Frontières'),
(112958, 92346, 'es', 'name', 'MƩdicos Sin Fronteras'),
(112959, 92347, 'en', 'name', 'Core Research Center'),
(112960, 92348, 'en', 'name', 'State Key Laboratory of Fine Chemicals'),
(112961, 92348, 'zh', 'name', 'ē²¾ē»†åŒ–å·„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112962, 92349, 'en', 'name', 'State Key Laboratory of Shipping Technology and Safety'),
(112963, 92349, 'zh', 'name', 'čˆŖčæęŠ€ęœÆäøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112964, 92350, 'en', 'name', 'State Key Laboratory of Chemobiosensing and Chemometrics'),
(112965, 92350, 'zh', 'name', 'åŒ–å­¦ē”Ÿē‰©ä¼ ę„ŸäøŽč®”é‡å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112966, 92351, 'es', 'name', 'Centro de Investigación y Desarrollo'),
(112967, 92352, 'no_lang_code', 'name', 'Salvat (Spain)'),
(112968, 92353, 'en', 'name', 'Nanjing Institute of Geography and Limnology'),
(112969, 92353, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å—äŗ¬åœ°ē†äøŽę¹–ę³Šē ”ē©¶ę‰€'),
(112970, 92354, 'en', 'name', 'Maine Agricultural and Forest Experiment Station'),
(112971, 92355, 'en', 'name', 'Central Midwest Water Science Center'),
(112972, 92356, 'en', 'name', 'Chinese Academy of Meteorological Sciences'),
(112973, 92356, 'zh', 'name', '中国气豔科学研究院'),
(112974, 92357, 'en', 'name', 'Cancer Society of Finland'),
(112975, 92357, 'sv', 'name', 'Cancerorganisationerna'),
(112976, 92357, 'fi', 'name', 'SyƶpƤjƤrjestƶt'),
(112977, 92358, 'en', 'name', 'Guangzhou Institute of Geochemistry'),
(112978, 92358, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¹æå·žåœ°ēƒåŒ–å­¦ē ”ē©¶ę‰€'),
(112979, 92359, 'en', 'name', 'Consortia Advancing Standards in Research Administration Information'),
(112980, 92360, 'en', 'name', 'United States Atomic Energy Commission'),
(112981, 92361, 'fr', 'name', 'Laboratoire de communications multimƩdias en tƩlƩprƩsence'),
(112982, 92361, 'en', 'name', 'Multimedia Communication in Telepresence'),
(112983, 92362, 'es', 'name', 'Agencia de Medio Ambiente y Agua de AndalucĆ­a'),
(112984, 92363, 'en', 'name', 'Institute of Physics'),
(112985, 92363, 'zh', 'name', '中国科学院物理研究所'),
(112986, 92364, 'en', 'name', 'i3S - Institute for Research and Innovation in Health, University of Porto'),
(112987, 92364, 'pt', 'name', 'i3S - Instituto de Investigação e Inovação em Saúde, Universidade do Porto'),
(112988, 92365, 'en', 'name', 'Office of Nuclear Safety'),
(112989, 92366, 'en', 'name', 'State Key Laboratory of Special Surface Protection Materials and Application Technology'),
(112990, 92366, 'zh', 'name', 'ē‰¹ē§č”Øé¢äæęŠ¤ęę–™åŠåŗ”ē”ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112991, 92367, 'ca', 'name', 'Institut de FĆ­sica InterdisciplinĆ ria i Sistemes Complexos'),
(112992, 92367, 'en', 'name', 'Institute for Cross-Disciplinary Physics and Complex Systems'),
(112993, 92367, 'es', 'name', 'Instituto de FĆ­sica Interdisciplinar y Sistemas Complejos'),
(112994, 92368, 'en', 'name', 'State Key Laboratory of Geological Processes and Mineral Resources'),
(112995, 92368, 'zh', 'name', 'åœ°č“Øčæ‡ēØ‹äøŽēŸæäŗ§čµ„ęŗå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112996, 92369, 'en', 'name', 'Shanghai Research Institute of Chemical Industry'),
(112997, 92370, 'en', 'name', 'State Key Laboratory of Medical Neurobiology'),
(112998, 92370, 'zh', 'name', 'åŒ»å­¦ē„žē»ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112999, 92371, 'en', 'name', 'Solar Energy Technologies Office'),
(113000, 92372, 'en', 'name', 'State Key Laboratory of Software Engineering'),
(113001, 92372, 'zh', 'name', 'č½Æä»¶å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113002, 92373, 'es', 'name', 'Museo Arqueológico Nacional'),
(113003, 92373, 'en', 'name', 'National Archaeological Museum of Spain'),
(113004, 92374, 'es', 'name', 'Consellería de Cultura, Educación, Formación Profesional e Universidades'),
(113005, 92375, 'ca', 'name', 'Institut de Biologia Integrativa de Sistemes'),
(113006, 92375, 'en', 'name', 'Institute for Integrative Systems Biology'),
(113007, 92375, 'es', 'name', 'Instituto de BiologĆ­a Integrativa de Sistemas'),
(113008, 92376, 'no_lang_code', 'name', 'Centro de Estudios de Materiales y Control de Obra (Spain)'),
(113009, 92377, 'en', 'name', 'Karpagam Academy of Higher Education'),
(113010, 92378, 'no_lang_code', 'name', 'AB-Biotics (Spain)'),
(113011, 92379, 'en', 'name', 'BotĆ­n Foundation'),
(113012, 92379, 'es', 'name', 'Fundación Botín'),
(113013, 92380, 'en', 'name', 'Shenyang Research Institute of Foundry'),
(113014, 92380, 'zh', 'name', 'ę²ˆé˜³é“øé€ ē ”ē©¶ę‰€'),
(113015, 92381, 'es', 'name', 'Junta de Castilla y León'),
(113016, 92381, 'en', 'name', 'Junta of Castile and León'),
(113017, 92382, 'en', 'name', 'DST-NRF Centre of Excellence for Invasion Biology'),
(113018, 92383, 'en', 'name', 'State Key Laboratory of Molecular Oncology'),
(113019, 92383, 'zh', 'name', 'åˆ†å­č‚æē˜¤å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113020, 92384, 'en', 'name', 'Shenyang Institute of Automation'),
(113021, 92384, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę²ˆé˜³č‡ŖåŠØåŒ–ē ”ē©¶ę‰€'),
(113022, 92385, 'en', 'name', 'State Key Laboratory of Low-Dimensional Quantum Physics'),
(113023, 92385, 'zh', 'name', 'ä½Žē»“é‡å­ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113024, 92386, 'fr', 'name', 'UniversitƩ numƩrique Cheikh Hamidou KANE'),
(113025, 92387, 'en', 'name', 'Boston Medical Center'),
(113026, 92388, 'ca', 'name', 'Conselleria d''Educació, Universitats i Ocupació'),
(113027, 92388, 'es', 'name', 'Conselleria de Educación, Universidades y Empleo'),
(113028, 92389, 'en', 'name', 'Western Canada Research Grid'),
(113029, 92390, 'en', 'name', 'State Key Laboratory of Earthquake Dynamics'),
(113030, 92390, 'zh', 'name', 'åœ°éœ‡åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113031, 92391, 'es', 'name', 'Red de Fundaciones Universidad Empresa'),
(113032, 92392, 'en', 'name', 'CICE Consortium'),
(113033, 92393, 'en', 'name', 'Office of Academic Affiliations'),
(113034, 92394, 'es', 'name', 'Escuela de Estudios Hispano-Americanos'),
(113035, 92395, 'en', 'name', 'Institute of Botany'),
(113036, 92395, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę¤ē‰©ē ”ē©¶ę‰€'),
(113037, 92396, 'en', 'name', 'State Key Laboratory of Mechanical Transmission'),
(113038, 92396, 'zh', 'name', 'ęœŗę¢°ä¼ åŠØå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113039, 92397, 'en', 'name', 'Panimalar Medical College Hospital & Research Institute'),
(113040, 92398, 'en', 'name', 'Arkansas Rice Research and Promotion Board'),
(113041, 92399, 'en', 'name', 'State Key Laboratory of Information Photonics and Optical Communications'),
(113042, 92399, 'zh', 'name', 'äæ”ęÆå…‰å­å­¦äøŽå…‰é€šäæ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113043, 92400, 'en', 'name', 'State Key Laboratory of Reproductive Medicine'),
(113044, 92400, 'zh', 'name', 'ē”Ÿę®–åŒ»å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113045, 92401, 'en', 'name', 'Beijing Building Materials Academy of Sciences and Research'),
(113046, 92401, 'zh', 'name', 'åŒ—äŗ¬å»ŗē­‘ęę–™ē§‘å­¦ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(113047, 92402, 'en', 'name', 'State Key Laboratory of Drug Creation and Pharmaceutical Process'),
(113048, 92402, 'zh', 'name', 'åˆ›ę–°čÆē‰©äøŽåˆ¶čÆå·„č‰ŗå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113049, 92403, 'en', 'name', 'Gun and Bertil Stohne''s Foundation'),
(113050, 92403, 'sv', 'name', 'Gun och Bertil Stohnes Stiftelse'),
(113051, 92404, 'en', 'name', 'China Textile Academy'),
(113052, 92404, 'zh', 'name', '中国纺织科学研究院'),
(113053, 92405, 'en', 'name', 'Gruber Foundation'),
(113054, 92406, 'en', 'name', 'State Key Laboratory of Electronic Thin Films and Integrated Devices'),
(113055, 92406, 'zh', 'name', 'ē”µå­č–„č†œäøŽé›†ęˆå™Øä»¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113056, 92407, 'en', 'name', 'State Key Laboratory of Superhard Materials'),
(113057, 92407, 'zh', 'name', 'č¶…ē”¬ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113058, 92408, 'en', 'name', 'State Key Laboratory For Conservation and Utilization of Subtropical Agro-Bioresources'),
(113059, 92408, 'zh', 'name', 'äŗšēƒ­åø¦å†œäøšē”Ÿē‰©čµ„ęŗäæęŠ¤äøŽåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113060, 92409, 'en', 'name', 'Shanghai Ship and Shipping Research Institute'),
(113061, 92409, 'zh', 'name', 'äøŠęµ·čˆ¹čˆ¶čæč¾“ē§‘å­¦ē ”ē©¶ę‰€ęˆ'),
(113062, 92410, 'es', 'name', 'Instituto de Recursos Naturales y AgrobiologĆ­a de Sevilla'),
(113063, 92411, 'en', 'name', 'Brazilian National Institute for Science and Technology of Quantum Information'),
(113064, 92411, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia de Informação Quântica'),
(113065, 92412, 'en', 'name', 'Saint Louis University'),
(113066, 92413, 'en', 'name', 'State Key Laboratory of Functional Materials for Informatics'),
(113067, 92413, 'zh', 'name', 'äæ”ęÆåŠŸčƒ½ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113068, 92414, 'en', 'name', 'Novo Nordisk Foundation Center for Basic Metabolic Research'),
(113069, 92415, 'en', 'name', 'Northwest Institute of Nuclear Technology'),
(113070, 92415, 'zh', 'name', 'č„æåŒ—ę øęŠ€ęœÆē ”ē©¶ę‰€'),
(113071, 92416, 'en', 'name', 'State Key Laboratory of Nano-Fabrication and Micro-Fabrication'),
(113072, 92416, 'zh', 'name', 'å¾®ē»†åŠ å·„å…‰å­¦ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113073, 92417, 'ca', 'name', 'Institute CerdĆ '),
(113074, 92418, 'en', 'name', 'Cognitive and Semantic Interpretation Engineering Laboratory'),
(113075, 92418, 'fr', 'name', 'Laboratoire en ingƩnierie cognitive et sƩmantique'),
(113076, 92419, 'en', 'name', 'State Key Laboratory of Molecular Biology'),
(113077, 92419, 'zh', 'name', 'åˆ†å­ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113078, 92420, 'en', 'name', 'State Key Laboratory of Laser and Matter Interaction'),
(113079, 92420, 'zh', 'name', 'ęæ€å…‰äøŽē‰©č“Øē›øäŗ’ä½œē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113080, 92421, 'es', 'name', 'Centro OceanogrƔfico de Murcia'),
(113081, 92421, 'en', 'name', 'Oceanographic Center of Murcia'),
(113082, 92422, 'en', 'name', 'State Key Laboratory of Turbulence and Complex Systems'),
(113083, 92422, 'zh', 'name', 'ę¹ęµäøŽå¤ę‚ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113084, 92423, 'fr', 'name', 'Conseil dƩpartemental de la Marne'),
(113085, 92424, 'en', 'name', 'Cambia Health Foundation'),
(113086, 92425, 'no_lang_code', 'name', 'Mega Grants'),
(113087, 92425, 'ru', 'name', 'ŠœŠ•Š“ŠŠ“Š ŠŠŠ¢Š«'),
(113088, 92426, 'en', 'name', 'State Key Laboratory of Electromagnetic Metamaterials Modulation Technology'),
(113089, 92426, 'zh', 'name', 'č¶…ęę–™ē”µē£č°ƒåˆ¶ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113090, 92427, 'en', 'name', 'Collaborative Research in Engineering, Science and Technology Centre'),
(113091, 92428, 'es', 'name', 'Hospital Universitario de Canarias'),
(113092, 92428, 'en', 'name', 'University Hospital of the Canary Islands'),
(113093, 92429, 'en', 'name', 'Alpha Foundation'),
(113094, 92430, 'en', 'name', 'State Key Laboratory of Proteomics'),
(113095, 92430, 'zh', 'name', 'č›‹ē™½č“Øē»„å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113096, 92431, 'es', 'name', 'CIC biomaGUNE'),
(113097, 92431, 'en', 'name', 'Centre for Cooperative Research in Biomaterials'),
(113098, 92432, 'en', 'name', 'Loyola University Andalusia'),
(113099, 92432, 'es', 'name', 'Universidad Loyola AndalucĆ­a'),
(113100, 92433, 'fr', 'name', 'Conseil rƩgional du Grand Est'),
(113101, 92433, 'en', 'name', 'Grand Est Regional Council'),
(113102, 92434, 'en', 'name', 'State Key Laboratory of Soil-Plant System Technology Machines'),
(113103, 92434, 'zh', 'name', 'åœŸå£¤ę¤ē‰©ęœŗå™Øē³»ē»ŸęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113104, 92435, 'en', 'name', 'Earth Resources Observation and Science Center'),
(113105, 92436, 'en', 'name', 'Foundation to Support Research and Technological Innovation of the State of Sergipe'),
(113106, 92436, 'pt', 'name', 'Fundação de Apoio à Pesquisa e à Inovação Tecnológica do Estado de Sergipe'),
(113107, 92437, 'no_lang_code', 'name', 'Aplitec (Spain)'),
(113108, 92438, 'en', 'name', 'Fujian Institute of Research on the Structure of Matter'),
(113109, 92438, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē¦å»ŗē‰©č“Øē»“ęž„ē ”ē©¶ę‰€'),
(113110, 92439, 'en', 'name', 'State Key Laboratory of Applied Organic Chemistry'),
(113111, 92439, 'zh', 'name', 'åŠŸčƒ½ęœ‰ęœŗåˆ†å­åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113112, 92440, 'es', 'name', 'Clinica Universidad de Navarra'),
(113113, 92440, 'en', 'name', 'Navarra University Clinic'),
(113114, 92441, 'it', 'name', 'Gruppo Nazionale per la Fisica Matematica'),
(113115, 92441, 'en', 'name', 'National Group for Mathematical Physics'),
(113116, 92442, 'en', 'name', 'State Key Laboratory of Pharmacokinetics and Drug Delivery Technology'),
(113117, 92442, 'zh', 'name', 'é‡ŠčÆęŠ€ęœÆäøŽčÆä»£åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113118, 92443, 'en', 'name', 'Department of Health Research'),
(113119, 92443, 'hi', 'name', 'ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø विभाग'),
(113120, 92444, 'no_lang_code', 'name', 'Changsha Mining and Metallurgy Research Institute (China)'),
(113121, 92444, 'zh', 'name', 'é•æę²™ēŸæå†¶ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬'),
(113122, 92445, 'es', 'name', 'Hospital ClĆ­nico Universitario de Valladolid'),
(113123, 92446, 'en', 'name', 'Arkansas Archeological Survey'),
(113124, 92447, 'ca', 'name', 'Centre d''Investigacions sobre Desertificació'),
(113125, 92447, 'en', 'name', 'Desertification Research Centre'),
(113126, 92448, 'en', 'name', 'State Key Laboratory of Enhanced Oil Recovery'),
(113127, 92448, 'zh', 'name', 'ęé«˜ēŸ³ę²¹é‡‡ę”¶ēŽ‡å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113128, 92449, 'en', 'name', 'Illinois Department of Public Health'),
(113129, 92450, 'en', 'name', 'Hercules Foundation'),
(113130, 92450, 'nl', 'name', 'Herculesstichting'),
(113131, 92451, 'es', 'name', 'Consejería de Educación de la Junta de Castilla y León'),
(113132, 92452, 'en', 'name', 'Applied Molecular Biosciences Unit'),
(113133, 92452, 'pt', 'name', 'Unidade em CiĆŖncias Biomoleculares Aplicadas'),
(113134, 92453, 'en', 'name', 'State Key Laboratory of Cotton Biology'),
(113135, 92453, 'zh', 'name', 'ę£‰čŠ±ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113136, 92454, 'en', 'name', 'Institute of Environmental Research and QuĆ­micas Barcelona'),
(113137, 92454, 'es', 'name', 'Instituto de Investigaciones QuĆ­micas y Ambientales de Barcelona'),
(113138, 92455, 'en', 'name', 'State Key Laboratory of Special Functional Waterproof Materials'),
(113139, 92455, 'zh', 'name', 'ē‰¹ē§åŠŸčƒ½é˜²ę°“ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113140, 92456, 'no_lang_code', 'name', 'Alstom (Spain)'),
(113141, 92457, 'es', 'name', 'Instituto de Agricultura Sostenible'),
(113142, 92457, 'en', 'name', 'Sustainable Agriculture Institute'),
(113143, 92458, 'en', 'name', 'State Key Laboratory of Artificial Microstructure and Mesoscopic Physics'),
(113144, 92458, 'zh', 'name', 'äŗŗå·„å¾®ē»“ęž„å’Œä»‹č§‚ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113145, 92459, 'en', 'name', 'State Key Laboratory of Text Information Processing'),
(113146, 92459, 'zh', 'name', 'ę–‡å­—äæ”ęÆå¤„ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113147, 92460, 'en', 'name', 'Institute of Grapevine and Wine Sciences'),
(113148, 92460, 'es', 'name', 'Instituto de Ciencias de la Vid y del Vino'),
(113149, 92461, 'en', 'name', 'State Key Laboratory of Special Rare Metal Materials'),
(113150, 92461, 'zh', 'name', 'ēØ€ęœ‰é‡‘å±žē‰¹ē§ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113151, 92462, 'en', 'name', 'State Key Laboratory of Computer Science'),
(113152, 92462, 'zh', 'name', 'č®”ē®—ęœŗē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113153, 92463, 'en', 'name', 'State Key Laboratory of Medical Immunology'),
(113154, 92463, 'zh', 'name', 'åŒ»å­¦å…ē–«å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113155, 92464, 'en', 'name', 'Geothermal Technologies Office'),
(113156, 92465, 'es', 'name', 'Centro de EdafologĆ­a y BiologĆ­a Aplicada del Segura'),
(113157, 92466, 'no_lang_code', 'name', 'Ingurumen Jarduketarako Sozietate Publikoa, IHOBE, S.A.'),
(113158, 92466, 'es', 'name', 'Sociedad Pública De Gestión Ambiental IHOBE, S.A.'),
(113159, 92467, 'es', 'name', 'Escuela EspaƱola de Historia y Arqueologƭa en Roma'),
(113160, 92467, 'en', 'name', 'Spanish School of History and Archeology'),
(113161, 92468, 'no_lang_code', 'name', 'Avid Radiopharmaceuticals (United States)'),
(113162, 92469, 'fr', 'name', 'Groupe de recherche en Ʃlectronique de puissance et commande industrielle'),
(113163, 92469, 'en', 'name', 'Power Electronics and Industrial Control Research Group'),
(113164, 92470, 'id', 'name', 'Sekolah Tinggi Keguruan dan Ilmu Pendidikan PGRI Situbondo'),
(113165, 92471, 'en', 'name', 'Mitsui Sumitomo Insurance Welfare Foundation'),
(113166, 92472, 'en', 'name', 'Barcelona Provincial Council'),
(113167, 92472, 'es', 'name', 'Diputació de Barcelona'),
(113168, 92473, 'pt', 'name', 'Instituto Nacional de Energia ElƩtrica'),
(113169, 92473, 'en', 'name', 'National Institute of Electricity'),
(113170, 92474, 'es', 'name', 'Instituto de CarboquĆ­mica'),
(113171, 92475, 'es', 'name', 'Complejo Hospitalario de Navarra'),
(113172, 92476, 'en', 'name', 'Northwest Institute For Non-Ferrous Metal Research'),
(113173, 92476, 'zh', 'name', 'č„æåŒ—ęœ‰č‰²é‡‘å±žē ”ē©¶é™¢'),
(113174, 92477, 'en', 'name', 'State Key Laboratory of Digital Multimedia Chip Technology'),
(113175, 92477, 'zh', 'name', 'ę•°å­—å¤šåŖ’ä½“čŠÆē‰‡ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113176, 92478, 'en', 'name', 'Institute of Public Goods and Policies'),
(113177, 92478, 'es', 'name', 'Instituto de PolĆ­ticas y Bienes PĆŗblicos'),
(113178, 92479, 'ca', 'name', 'Ajuntament de Girona'),
(113179, 92479, 'es', 'name', 'Ayuntamiento de Girona'),
(113180, 92480, 'es', 'name', 'Estación Experimental de Aula Dei'),
(113181, 92481, 'en', 'name', 'Donald E. and Delia B. Baxter Foundation'),
(113182, 92482, 'es', 'name', 'Hospital Universitario Puerta del Mar'),
(113183, 92483, 'en', 'name', 'National Council for Eurasian and East European Research'),
(113184, 92484, 'en', 'name', 'State Key Laboratory of Heavy Oil'),
(113185, 92484, 'zh', 'name', 'é‡č“Øę²¹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113186, 92485, 'es', 'name', 'Aena'),
(113187, 92486, 'en', 'name', 'Vision Group on Science and Technology'),
(113188, 92487, 'en', 'name', 'Brotman Baty Institute'),
(113189, 92488, 'en', 'name', 'State Key Laboratory of Cancer Biology'),
(113190, 92488, 'zh', 'name', 'č‚æē˜¤ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113191, 92489, 'en', 'name', 'Cooperative Research Centre for Contamination Assessment and Remediation of the Environment'),
(113192, 92490, 'en', 'name', 'State Key Laboratory of Rolling Technology and Continuous Rolling Automation'),
(113193, 92490, 'zh', 'name', 'č½§åˆ¶ęŠ€ęœÆåŠčæžč½§č‡ŖåŠØåŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113194, 92491, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia: Física Nuclear e Aplicações'),
(113195, 92492, 'en', 'name', 'Cancer Foundation Finland'),
(113196, 92492, 'sv', 'name', 'Cancerstiftelsen'),
(113197, 92492, 'fi', 'name', 'SyƶpƤsƤƤtiƶ'),
(113198, 92493, 'no_lang_code', 'name', 'Euler Technology (China)'),
(113199, 92493, 'zh', 'name', 'åŒ—äŗ¬ä¼˜ä¹å¤ē”Ÿē§‘ęŠ€ęœ‰é™č“£ä»»å…¬åø'),
(113200, 92494, 'en', 'name', 'Institute of Process Engineering'),
(113201, 92494, 'zh', 'name', '中国科学院过程巄程研究所'),
(113202, 92495, 'no_lang_code', 'name', 'Datang Telecom Group (China)'),
(113203, 92495, 'zh', 'name', 'å¤§å”ē”µäæ”ē§‘ęŠ€äŗ§äøšé›†å›¢'),
(113204, 92496, 'en', 'name', 'State Key Laboratory of Trauma, Burns and Compound Injury Research'),
(113205, 92496, 'zh', 'name', 'åˆ›ä¼¤ć€ēƒ§ä¼¤äøŽå¤åˆä¼¤ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113206, 92497, 'fr', 'name', 'Centre Suisse de Toxicologie Humaine AppliquƩe'),
(113207, 92497, 'it', 'name', 'Centro Svizzero di Tossicologia Umana Applicata '),
(113208, 92497, 'de', 'name', 'Schweizerisches Zentrum für Angewandte Humantoxikologie'),
(113209, 92497, 'en', 'name', 'Swiss Centre for Applied Human Toxicology'),
(113210, 92498, 'no', 'name', 'Direktoratet for internasjonalisering og kvalitetsutvikling i hĆøyere utdanning'),
(113211, 92498, 'en', 'name', 'Norwegian Agency for International Cooperation and Quality Enhancement in Higher Education'),
(113212, 92499, 'en', 'name', 'State Key Laboratory of Basin Water Cycle Simulation and Regulation'),
(113213, 92499, 'zh', 'name', 'ęµåŸŸę°“å¾ŖēŽÆęØ”ę‹ŸäøŽč°ƒęŽ§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113214, 92500, 'ca', 'name', 'Escola PolitĆØcnica Superior d''Alcoi'),
(113215, 92500, 'es', 'name', 'Escuela PolitƩcnica Superior de Alcoy'),
(113216, 92501, 'en', 'name', 'Idaho Water Science Center'),
(113217, 92502, 'en', 'name', 'State Key Laboratory of Crystal Materials'),
(113218, 92502, 'zh', 'name', 'ę™¶ä½“ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113219, 92503, 'en', 'name', 'Gallatin Valley YMCA, Inc.'),
(113220, 92504, 'es', 'name', 'Fundación Prodintec'),
(113221, 92504, 'en', 'name', 'Prodintec Foundation'),
(113222, 92505, 'fr', 'name', 'Laboratoire des technologies spatiales, systèmes embarqués, navigation et avionique'),
(113223, 92505, 'en', 'name', 'Laboratory of Space Technologies, Embedded Systems, Navigation and Avionic'),
(113224, 92506, 'en', 'name', 'State Key Laboratory of Traction Power'),
(113225, 92506, 'zh', 'name', 'ē‰µå¼•åŠØåŠ›å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113226, 92507, 'en', 'name', 'State Key Laboratory of Digital Home Appliances'),
(113227, 92507, 'zh', 'name', 'ę•°å­—åŒ–å®¶ē”µå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113228, 92508, 'en', 'name', 'Office of Legacy Management'),
(113229, 92509, 'en', 'name', 'Ministry of Steel'),
(113230, 92510, 'en', 'name', 'Institute of Chemistry'),
(113231, 92510, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŒ–å­¦ē ”ē©¶ę‰€'),
(113232, 92511, 'es', 'name', 'Universidad de la Romana'),
(113233, 92512, 'eu', 'name', 'Ekonomiaren Garapen, Jasangarritasun eta Ingurumen Saila'),
(113234, 92513, 'en', 'name', 'State Key Laboratory of Rice Biology'),
(113235, 92513, 'zh', 'name', 'ę°“ēØ»ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113236, 92514, 'ca', 'name', 'Institut BotĆ nic de Barcelona'),
(113237, 92514, 'es', 'name', 'Instituto BotƔnico de Barcelona'),
(113238, 92515, 'en', 'name', 'State Key Laboratory of Animal Nutrition'),
(113239, 92515, 'zh', 'name', 'åŠØē‰©č„å…»å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113240, 92516, 'en', 'name', 'Institute of Cancer Molecular and Cellular Biology of Salamanca'),
(113241, 92516, 'es', 'name', 'Instituto de Biologƭa Molecular y Celular del CƔncer de Salamanca'),
(113242, 92517, 'es', 'name', 'Instituto de Instrumentación para Imagen Molecular'),
(113243, 92517, 'en', 'name', 'Instrumentation Institute For Molecular Image'),
(113244, 92518, 'en', 'name', 'State Key Laboratory of Coal Mine Safety Technology'),
(113245, 92518, 'zh', 'name', 'ē…¤ēŸæå®‰å…ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113246, 92519, 'es', 'name', 'Asociación de Amigos de la Universidad de Navarra'),
(113247, 92520, 'es', 'name', 'Agencia de Calidad y Evaluación sanitarias de Cataluña'),
(113248, 92520, 'ca', 'name', 'Agència de Qualitat i Avaluació Sanitàries de Catalunya'),
(113249, 92520, 'en', 'name', 'Catalan Agency for Health Information, Assessment and Quality'),
(113250, 92521, 'en', 'name', 'State Key Laboratory of Natural Medicine'),
(113251, 92521, 'zh', 'name', 'å¤©ē„¶čÆē‰©ę“»ę€§ē»„åˆ†äøŽčÆę•ˆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113252, 92522, 'en', 'name', 'Institute of Zoology'),
(113253, 92522, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŠØē‰©ē ”ē©¶ę‰€'),
(113254, 92523, 'en', 'name', 'Council of Government of the Principality of Asturias'),
(113255, 92523, 'es', 'name', 'Gobierno del Principado de Asturias'),
(113256, 92524, 'en', 'name', 'State Key Laboratory of Drug Research'),
(113257, 92524, 'zh', 'name', 'ę–°čÆē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113258, 92525, 'es', 'name', 'Instituto Pirenaico de EcologĆ­a'),
(113259, 92526, 'fr', 'name', 'CƩgep de Sherbrooke'),
(113260, 92527, 'en', 'name', 'State Key Laboratory of Rail Traffic Engineering and Information Technology'),
(113261, 92527, 'zh', 'name', 'č½Øé“äŗ¤é€šå·„ēØ‹äæ”ęÆåŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113262, 92528, 'es', 'name', 'Universidad de Colorado'),
(113263, 92528, 'en', 'name', 'University of Colorado System'),
(113264, 92528, 'fr', 'name', 'UniversitƩ du Colorado'),
(113265, 92529, 'pl', 'name', 'Wroclawskie Centrum Sieciowo-Superkomputerowe'),
(113266, 92529, 'en', 'name', 'Wrocław Networking and Supercomputing Center'),
(113267, 92530, 'en', 'name', 'Bellvitge Biomedical Research Institute'),
(113268, 92530, 'es', 'name', 'Institut d''Investigació Biomédica de Bellvitge'),
(113269, 92531, 'en', 'name', 'State Key Laboratory of Wireless Communication Access Technology'),
(113270, 92531, 'zh', 'name', 'ę— ēŗæé€šäæ”ęŽ„å…„ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113271, 92532, 'en', 'name', 'State Key Laboratory of Resources and Environmental Information System'),
(113272, 92532, 'zh', 'name', 'čµ„ęŗäøŽēŽÆå¢ƒäæ”ęÆē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113273, 92533, 'no_lang_code', 'name', 'Cilag (Switzerland)'),
(113274, 92534, 'en', 'name', 'National Centre of Competence in Research Robotics'),
(113275, 92535, 'es', 'name', 'Ministerio de Asuntos Exteriores, Unión Europea y Cooperación'),
(113276, 92535, 'en', 'name', 'Ministry of Foreign Affairs, European Union and Cooperation'),
(113277, 92536, 'no_lang_code', 'name', 'Idener (Spain)'),
(113278, 92536, 'es', 'name', 'Optimización Orientada a la Sostenibilidad'),
(113279, 92537, 'en', 'name', 'Mathematical Research Data Initiative'),
(113280, 92537, 'de', 'name', 'Mathematische Forschungsdateninitiative'),
(113281, 92538, 'es', 'name', 'Instituto de Fermentaciones Industriales'),
(113282, 92539, 'ca', 'name', 'Fundació Bosch i Gimpera'),
(113283, 92540, 'en', 'name', 'South China Sea Institute Of Oceanology'),
(113284, 92540, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å—ęµ·ęµ·ę“‹ē ”ē©¶ę‰€'),
(113285, 92541, 'en', 'name', 'TRANSITIONS'),
(113286, 92542, 'ca', 'name', 'Institut d''Anàlisi Econòmica'),
(113287, 92542, 'en', 'name', 'Institute for Economic Analysis'),
(113288, 92542, 'es', 'name', 'Instituto de AnÔlisis Económico'),
(113289, 92543, 'es', 'name', 'Instituto de Ciencias Marinas de AndalucĆ­a'),
(113290, 92544, 'en', 'name', 'International Institute for Nanotechnology'),
(113291, 92545, 'en', 'name', 'Biodiversity Research Institute'),
(113292, 92545, 'es', 'name', 'Instituto Mixto de Investigación en Biodiversidad'),
(113293, 92546, 'es', 'name', 'Hospital Universitario Virgen de las Nieves'),
(113294, 92547, 'en', 'name', 'Gillson Longenbaugh Foundation'),
(113295, 92548, 'en', 'name', 'State Key Laboratory of Marine Environmental Science'),
(113296, 92548, 'zh', 'name', 'čæ‘ęµ·ęµ·ę“‹ēŽÆå¢ƒē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113297, 92549, 'es', 'name', 'Laboratorio de Investigación en Tecnologías de la Combustión'),
(113298, 92549, 'en', 'name', 'Laboratory of Research in Fluid Dynamics and Combustion Technologies'),
(113299, 92550, 'no_lang_code', 'name', 'Ancodarq (Spain)'),
(113300, 92551, 'en', 'name', 'Blanes Center for Advanced Studies'),
(113301, 92551, 'ca', 'name', 'Centre d''Estudis AvanƧats de Blanes'),
(113302, 92551, 'es', 'name', 'Centro de Estudios Avanzados de Blane'),
(113303, 92552, 'en', 'name', 'Foundation on German-American Academic Relations'),
(113304, 92552, 'de', 'name', 'Stiftung Deutsch-Amerikanische Wissenschaftsbeziehungen'),
(113305, 92553, 'en', 'name', 'The Royal Children''s Hospital Foundation'),
(113306, 92554, 'en', 'name', 'State Key Laboratory of Neuroscience'),
(113307, 92554, 'zh', 'name', 'ē„žē»ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113308, 92555, 'en', 'name', 'Elcano Royal Institute for International and Strategic Studies'),
(113309, 92555, 'es', 'name', 'Real Instituto Elcano de Estudios Internacionales y EstratƩgicos'),
(113310, 92556, 'id', 'name', 'Politeknik Siber Cerdika Internasional'),
(113311, 92557, 'en', 'name', 'Institute for Game and Wildlife Research'),
(113312, 92557, 'es', 'name', 'Instituto de Investigación en Recursos Cinegéticos'),
(113313, 92558, 'en', 'name', 'State Key Laboratory of Kidney Diseases'),
(113314, 92558, 'zh', 'name', 'č‚¾č„ē–¾ē—…å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113315, 92559, 'en', 'name', 'State Key Laboratory of High Performance Ceramics and Superfine Microstructure'),
(113316, 92559, 'zh', 'name', 'é«˜ę€§čƒ½é™¶ē“·å’Œč¶…å¾®ē»“ęž„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113317, 92560, 'es', 'name', 'Centro de Investigaciones CientĆ­ficas Isla de la Cartuja'),
(113318, 92561, 'en', 'name', 'State Key Laboratory of ASIC and System'),
(113319, 92561, 'zh', 'name', 'äø“ē”Øé›†ęˆē”µč·ÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113320, 92562, 'en', 'name', 'Department of Agriculture, Environment and Rural Affairs of Northern Ireland'),
(113321, 92563, 'en', 'name', 'Cooperative Research Units'),
(113322, 92564, 'en', 'name', 'Netherlands Earth System Science Centre'),
(113323, 92565, 'en', 'name', 'Royal Hobart Hospital'),
(113324, 92566, 'en', 'name', 'National Comprehensive Cancer Network'),
(113325, 92567, 'en', 'name', 'Aage Bang Fund'),
(113326, 92567, 'da', 'name', 'Aage Bangs Fond'),
(113327, 92568, 'no_lang_code', 'name', 'Biocat'),
(113328, 92569, 'en', 'name', 'State Key Laboratory of Automatic Target Recognition'),
(113329, 92569, 'zh', 'name', 'č‡ŖåŠØē›®ę ‡čÆ†åˆ«å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113330, 92570, 'en', 'name', 'State Key Laboratory of Digital Publishing Technology'),
(113331, 92570, 'zh', 'name', 'ę•°å­—å‡ŗē‰ˆęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113332, 92571, 'en', 'name', 'State Key Laboratory of Infectious Disease Prevention and Control'),
(113333, 92571, 'zh', 'name', 'ä¼ ęŸ“ē—…é¢„é˜²ęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113334, 92572, 'co', 'name', 'Centro de Investigación Forestal'),
(113335, 92572, 'es', 'name', 'Instituto de Ciencias Forestales'),
(113336, 92573, 'en', 'name', 'State Key Laboratory of Ophthalmology'),
(113337, 92573, 'zh', 'name', 'ēœ¼ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113338, 92574, 'eu', 'name', 'Espainiako Estatistika Institutua'),
(113339, 92574, 'ca', 'name', 'Institut Nacional d''EstadĆ­stica d''Espanya'),
(113340, 92574, 'es', 'name', 'Instituto Nacional de EstadĆ­stica'),
(113341, 92574, 'en', 'name', 'National Institute of Statistics'),
(113342, 92575, 'en', 'name', 'Bengt Ihres Foundation'),
(113343, 92575, 'sv', 'name', 'Bengt Ihres fond'),
(113344, 92576, 'no_lang_code', 'name', 'Karpagam Hospital'),
(113345, 92577, 'en', 'name', 'State Key Laboratory of Bridge Engineering Structural Dynamics'),
(113346, 92577, 'zh', 'name', 'ę”„ę¢å·„ēØ‹ē»“ęž„åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113347, 92578, 'fi', 'name', 'Hengityssairauksien TutkimussƤƤtiƶ'),
(113348, 92579, 'en', 'name', 'Institute of Catalysis and Petrochemistry'),
(113349, 92579, 'es', 'name', 'Instituto de CatƔlisis y Petroleoquƭmica'),
(113350, 92580, 'en', 'name', 'Institute of Parasitology and Biomedicine López-Neyra'),
(113351, 92580, 'es', 'name', 'Instituto de Parasitología y Biomedicina "López - Neyra"'),
(113352, 92581, 'en', 'name', 'State Key Laboratory of Bioreactor Engineering'),
(113353, 92581, 'zh', 'name', 'ē”Ÿē‰©ååŗ”å™Øå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113354, 92582, 'ca', 'name', 'Departament d''Universitats, Recerca i Societat de la Informació'),
(113355, 92582, 'en', 'name', 'Research and Information Society of the Generalitat of Catalonia'),
(113356, 92583, 'es', 'name', 'Centro de Estudios PolĆ­ticos y Constitucionales'),
(113357, 92584, 'es', 'name', 'Agencia de Innovación y Desarrollo de Andalucía IDEA'),
(113358, 92585, 'en', 'name', 'State Key Laboratory of Systematic and Evolutionary Botany'),
(113359, 92585, 'zh', 'name', 'ē³»ē»ŸäøŽčæ›åŒ–ę¤ē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113360, 92586, 'en', 'name', 'State Key Laboratory of Mycology'),
(113361, 92586, 'zh', 'name', 'ēœŸčŒå­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113362, 92587, 'en', 'name', 'State Key Laboratory of Agricultural Microbiology'),
(113363, 92587, 'zh', 'name', 'å†œäøšå¾®ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113364, 92588, 'en', 'name', 'University Grants Committee'),
(113365, 92588, 'zh', 'name', 'å¤§å­øę•™č‚²č³‡åŠ©å§”å“”ęœƒ'),
(113366, 92589, 'en', 'name', 'State Key Laboratory of Oncology in South China'),
(113367, 92589, 'zh', 'name', 'åŽå—č‚æē˜¤å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113368, 92590, 'fr', 'name', 'Collège Gérald-Godin'),
(113369, 92591, 'no_lang_code', 'name', 'Janssen Scientific Affairs (United States)'),
(113370, 92592, 'es', 'name', 'Centro Singular de Investigación en Química Biológica y Materiales Moleculares'),
(113371, 92593, 'no_lang_code', 'name', 'HidroQuimia (Spain)'),
(113372, 92593, 'es', 'name', 'Hidroquimia tractaments i quimica industrial, S.L.'),
(113373, 92594, 'en', 'name', 'Radiation Oncology Institute'),
(113374, 92595, 'en', 'name', 'Institute of Marine Research'),
(113375, 92595, 'es', 'name', 'Instituto de Investigacións Mariñas'),
(113376, 92596, 'en', 'name', 'State Key Laboratory of Nonferrous Metals and Processes'),
(113377, 92596, 'zh', 'name', 'ęœ‰č‰²é‡‘å±žęę–™åˆ¶å¤‡åŠ å·„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113378, 92597, 'es', 'name', 'Ayuntamiento de Santander'),
(113379, 92598, 'en', 'name', 'Veski'),
(113380, 92599, 'es', 'name', 'Centro de FĆ­sica de Materiales'),
(113381, 92599, 'en', 'name', 'Material Physics Center'),
(113382, 92599, 'eu', 'name', 'Materialen Fisika Zentroa'),
(113383, 92600, 'en', 'name', 'Children''s Hospital Research Institute of Manitoba'),
(113384, 92601, 'es', 'name', 'Complexo Hospitalario Universitario A CoruƱa'),
(113385, 92602, 'en', 'name', 'State Key Laboratory of Solidification Processing'),
(113386, 92602, 'zh', 'name', 'å‡å›ŗęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113387, 92603, 'en', 'name', 'New Jersey Department of State'),
(113388, 92604, 'en', 'name', 'Irkutsk National Research Technical University'),
(113389, 92604, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(113390, 92605, 'en', 'name', 'Wrexham Maelor Hospital'),
(113391, 92606, 'en', 'name', 'Science and Technology Facilities Council'),
(113392, 92607, 'pt', 'name', 'Fundação de Apoio ao Ensino, Pesquisa e Assistência do Hospital das Clínicas da Faculdade de Medicina de Ribeirão Preto da Universidade de São Paulo'),
(113393, 92608, 'no_lang_code', 'name', 'Palobiofarma (Spain)'),
(113394, 92609, 'en', 'name', 'State Key Laboratory of Information Security'),
(113395, 92609, 'zh', 'name', 'äæ”ęÆå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113396, 92610, 'en', 'name', 'Institute of Chemical Technology'),
(113397, 92610, 'es', 'name', 'Instituto de TecnologĆ­a QuĆ­mica'),
(113398, 92611, 'en', 'name', 'State Key Laboratory of Safety and Health of Long Bridges in Service'),
(113399, 92611, 'zh', 'name', 'åœØå½¹é•æå¤§ę”„ę¢å®‰å…ØäøŽå„åŗ·å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113400, 92612, 'en', 'name', 'State Key Laboratory of Clean and Efficient Coal-Fired Power Generation and Pollution Control'),
(113401, 92612, 'zh', 'name', 'ęø…ę“é«˜ę•ˆē‡ƒē…¤å‘ē”µäøŽę±”ęŸ“ęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113402, 92613, 'en', 'name', 'State Key Laboratory for Advanced Metals and Materials'),
(113403, 92613, 'zh', 'name', 'ę–°é‡‘å±žęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113404, 92614, 'no_lang_code', 'name', 'Certis Europe (The Netherlands)'),
(113405, 92615, 'en', 'name', 'State Key Laboratory of New Technology of Computer Software'),
(113406, 92615, 'zh', 'name', 'č®”ē®—ęœŗč½Æä»¶ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113407, 92616, 'en', 'name', 'State Key Laboratory of High Performance Complex Manufacturing'),
(113408, 92616, 'zh', 'name', 'é«˜ę€§čƒ½å¤ę‚åˆ¶é€ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113409, 92617, 'en', 'name', 'North Dakota State University'),
(113410, 92617, 'es', 'name', 'Universidad Estatal de Dakota del Norte'),
(113411, 92617, 'fr', 'name', 'UniversitĆ© d''Ɖtat du dakota du nord'),
(113412, 92618, 'en', 'name', 'Communications and Microelectronic Integration Laboratory'),
(113413, 92618, 'fr', 'name', 'Laboratoire de communications et d''intƩgration de la microƩlectronique'),
(113414, 92619, 'de', 'name', 'Verband der Chemischen Industrie'),
(113415, 92620, 'en', 'name', 'State Key Laboratory of Pulp and Paper Engineering'),
(113416, 92620, 'zh', 'name', 'åˆ¶ęµ†é€ ēŗøå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113417, 92621, 'no_lang_code', 'name', 'Yunnan Metallurgical Group (China)'),
(113418, 92621, 'zh', 'name', 'äŗ‘å—å†¶é‡‘é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(113419, 92622, 'no_lang_code', 'name', 'AIA (Spain)'),
(113420, 92623, 'en', 'name', 'Centre for Plant Biotechnology and Genomics'),
(113421, 92623, 'es', 'name', 'Centro de Biotecnología y Genómica de Plantas'),
(113422, 92624, 'es', 'name', 'Confederación Española de Personas con Discapacidad Física y OrgÔnica'),
(113423, 92624, 'en', 'name', 'Spanish Confederation of People with Physical and Organic Disabilities'),
(113424, 92625, 'en', 'name', 'Cerebra'),
(113425, 92626, 'en', 'name', 'State Key Laboratory for Modification of Chemical Fibers and Polymer Materials'),
(113426, 92626, 'zh', 'name', 'ēŗ¤ē»“ęę–™ę”¹ę€§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113427, 92627, 'es', 'name', 'Servicio Navarro de Salud'),
(113428, 92628, 'no_lang_code', 'name', 'SM GEODIM (Spain)'),
(113429, 92629, 'en', 'name', 'Delta University for Science and Technology'),
(113430, 92629, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الدلتا Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(113431, 92630, 'hu', 'name', 'Belügyminisztérium'),
(113432, 92630, 'en', 'name', 'Ministry of Interior'),
(113433, 92631, 'ca', 'name', 'Institut de CiĆØncies del Mar'),
(113434, 92631, 'es', 'name', 'Instituto de Ciencias del Mar'),
(113435, 92632, 'en', 'name', 'State Key Laboratory of Subtropical Building Science'),
(113436, 92632, 'zh', 'name', 'äŗšēƒ­åø¦å»ŗē­‘ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113437, 92633, 'es', 'name', 'Centro OceanogrƔfico de MƔlaga'),
(113438, 92633, 'en', 'name', 'Oceanographic Center of MƔlaga'),
(113439, 92634, 'es', 'name', 'Instituto de Ciencia de Materiales de Madrid'),
(113440, 92634, 'en', 'name', 'Materials Science Institute of Madrid'),
(113441, 92635, 'en', 'name', 'State Key Laboratory of Nuclear Physics and Technology'),
(113442, 92635, 'zh', 'name', 'ę øē‰©ē†äøŽę øęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113443, 92636, 'en', 'name', 'Atlas of Variant Effects Alliance'),
(113444, 92637, 'en', 'name', 'Institute of History'),
(113445, 92637, 'es', 'name', 'Instituto de Historia'),
(113446, 92638, 'en', 'name', 'HiLIFE - Helsinki Institute of Life Science'),
(113447, 92638, 'fi', 'name', 'HiLIFE – ElƤmƤntieteiden Instituutti'),
(113448, 92639, 'en', 'name', 'National Health and Family Planning Commission'),
(113449, 92639, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(113450, 92640, 'en', 'name', 'Imaging and Orthopaedics Research Laboratory'),
(113451, 92640, 'fr', 'name', 'Laboratoire d''innovation ouverte en technologies de la santƩ'),
(113452, 92641, 'en', 'name', 'China Railway First Survey and Design Institute Group Co. Ltd.'),
(113453, 92642, 'en', 'name', 'Jiangxi Transportation Research Institute'),
(113454, 92642, 'zh', 'name', 'ę±Ÿč„æēœäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(113455, 92643, 'en', 'name', 'Dagmar Marshall Fund'),
(113456, 92643, 'da', 'name', 'Dagmar Marshalls Fond'),
(113457, 92644, 'az', 'name', 'Elmin Inkişafı Fondu'),
(113458, 92644, 'en', 'name', 'Science Development Foundation'),
(113459, 92645, 'es', 'name', 'SUR Escuela de Artes y Profesiones ArtĆ­sticas'),
(113460, 92646, 'en', 'name', 'State Key Laboratory of Space Weather'),
(113461, 92646, 'zh', 'name', 'ē©ŗé—“å¤©ę°”å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113462, 92647, 'en', 'name', 'Chemical Industry Fund'),
(113463, 92647, 'de', 'name', 'Fonds der Chemischen Industrie'),
(113464, 92648, 'en', 'name', 'State Key Laboratory of Silicate Materials for Architecture'),
(113465, 92648, 'zh', 'name', 'ē”…é…øē›å»ŗē­‘ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113466, 92649, 'en', 'name', 'Ebro Observatory'),
(113467, 92649, 'es', 'name', 'Observatori de l''Ebre'),
(113468, 92650, 'en', 'name', 'Institute of Languages ​​and Cultures of the Mediterranean and the Near East'),
(113469, 92650, 'es', 'name', 'Instituto de Lenguas y Culturas del MediterrÔneo y Oriente Próximo'),
(113470, 92651, 'fr', 'name', 'Arbres et RƩponses aux Contraintes Hydriques et Environnementales'),
(113471, 92652, 'en', 'name', 'State Key Laboratory of Advanced Technology For Materials Synthesis and Processing'),
(113472, 92652, 'zh', 'name', 'ęę–™å¤åˆę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113473, 92653, 'en', 'name', 'College of Management Academic Studies'),
(113474, 92654, 'en', 'name', 'Pershing Square Sohn Cancer Research Alliance'),
(113475, 92655, 'en', 'name', 'State Key Laboratory of Oil and Gas Resources and Exploration'),
(113476, 92655, 'zh', 'name', 'ę²¹ę°”čµ„ęŗäøŽęŽ¢ęµ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113477, 92656, 'en', 'name', 'State Key Laboratory of Microbial Technology'),
(113478, 92656, 'zh', 'name', 'å¾®ē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113479, 92657, 'en', 'name', 'Shanghai Institute of Optics and Fine Mechanics'),
(113480, 92657, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·å…‰å­¦ē²¾åÆ†ęœŗę¢°ē ”ē©¶ę‰€'),
(113481, 92658, 'no_lang_code', 'name', 'CompaƱƭa EspaƱola de Sistemas AeronƔuticos (Spain)'),
(113482, 92659, 'es', 'name', 'Dirección General de TrÔfico'),
(113483, 92659, 'en', 'name', 'Directorate General of Traffic'),
(113484, 92660, 'eu', 'name', 'Bizkaia Talent'),
(113485, 92661, 'en', 'name', 'International Society for Neurochemistry'),
(113486, 92662, 'es', 'name', 'Miranza'),
(113487, 92663, 'en', 'name', 'Imaging, Vision and Artificial Intelligence Laboratory'),
(113488, 92663, 'fr', 'name', 'Laboratoire d''imagerie, de vision et d''intelligence artificielle'),
(113489, 92664, 'en', 'name', 'State Key Laboratory of Macromolecular Engineering'),
(113490, 92664, 'zh', 'name', 'čšåˆē‰©åˆ†å­å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113491, 92665, 'en', 'name', 'Raden Fatah State Islamic University Palembang'),
(113492, 92665, 'id', 'name', 'Universitas Islam Negeri Raden Fatah Palembang'),
(113493, 92666, 'es', 'name', 'Ministerio de Industria, Comercio y Turismo'),
(113494, 92666, 'en', 'name', 'Ministry of Industry, Trade and Tourism'),
(113495, 92667, 'es', 'name', 'Centro Nacional de Microelectrónica'),
(113496, 92667, 'en', 'name', 'National Microelectronics Center'),
(113497, 92668, 'en', 'name', 'Institute of Robotics'),
(113498, 92668, 'cu', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по роботика'),
(113499, 92669, 'en', 'name', 'State Key Laboratory of Pharmaceutical Biotechnology'),
(113500, 92669, 'zh', 'name', 'åŒ»čÆē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113501, 92670, 'no_lang_code', 'name', 'Abbott Nutrition (United States)'),
(113502, 92671, 'ca', 'name', 'Fundació Jesuïtes Educació'),
(113503, 92671, 'es', 'name', 'Fundación de Educación Jesuíta'),
(113504, 92671, 'en', 'name', 'Jesuit Education Foundation'),
(113505, 92672, 'en', 'name', 'Lesya Ukrainka Volyn National University'),
(113506, 92672, 'uk', 'name', 'Š’Š¾Š»ŠøŠ½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Лесі Українки'),
(113507, 92672, 'ru', 'name', 'Волынский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Леси Украинки'),
(113508, 92673, 'en', 'name', 'Second Institute of Oceanography'),
(113509, 92673, 'zh', 'name', 'å›½å®¶ęµ·ę“‹å±€ē¬¬äŗŒęµ·ę“‹ē ”ē©¶ę‰€åˆ›å»ŗäŗŽ'),
(113510, 92674, 'es', 'name', 'Centro de Investigaciones Biológicas Margarita Salas'),
(113511, 92674, 'en', 'name', 'Margarita Salas Center for Biological Research'),
(113512, 92675, 'en', 'name', 'Torben and Alice Frimodts Foundation'),
(113513, 92675, 'da', 'name', 'Torben og Alice Frimodts Fond'),
(113514, 92676, 'no_lang_code', 'name', 'Sumitomo Mitsui Trust Holdings (Japan)'),
(113515, 92676, 'ja', 'name', 'äø‰äŗ•ä½å‹ćƒˆćƒ©ć‚¹ćƒˆćƒ»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(113516, 92677, 'fr', 'name', 'Institut de Valorisation des DonnƩes'),
(113517, 92677, 'en', 'name', 'Institute for Data Valorisation'),
(113518, 92678, 'en', 'name', 'Namur Research Institute for Life Sciences'),
(113519, 92679, 'es', 'name', 'Instituto de Ciencias del Patrimonio'),
(113520, 92680, 'en', 'name', 'Institute of Plant Protection'),
(113521, 92680, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ę¤ē‰©äæęŠ¤ē ”ē©¶ę‰€'),
(113522, 92681, 'es', 'name', 'Asociación de ParÔlisis Cerebral'),
(113523, 92681, 'ca', 'name', 'Associació de la Paràlisi Cerebral'),
(113524, 92682, 'ca', 'name', 'Centre Tecnologic de Telecomunicacions de Catalunya'),
(113525, 92683, 'de', 'name', 'Paracelsus-Kliniken'),
(113526, 92684, 'en', 'name', 'UTP Foundation'),
(113527, 92684, 'ms', 'name', 'Yayasan UTP'),
(113528, 92685, 'es', 'name', 'Consellería de Economía, Industria e Innovación'),
(113529, 92686, 'en', 'name', 'Children’s Hospital Foundation of Manitoba'),
(113530, 92687, 'en', 'name', 'Pershing Square Foundation'),
(113531, 92688, 'es', 'name', 'Hospital Universitario Ramón y Cajal'),
(113532, 92689, 'en', 'name', 'Xinjiang Institute of Ecology and Geography'),
(113533, 92689, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę–°ē–†ē”Ÿę€äøŽåœ°ē†ē ”ē©¶ę‰€'),
(113534, 92690, 'en', 'name', 'China Iron and Steel Research Institute Group'),
(113535, 92690, 'zh', 'name', '钢铁研究总院'),
(113536, 92691, 'ca', 'name', 'Ajuntament de Barcelona'),
(113537, 92691, 'es', 'name', 'Ayuntamiento de Barcelona'),
(113538, 92691, 'en', 'name', 'Barcelona City Council'),
(113539, 92692, 'ca', 'name', 'IrsiCaixa'),
(113540, 92693, 'fr', 'name', 'Laboratoire de MƩcanique Gabriel LamƩ'),
(113541, 92694, 'en', 'name', 'Institute for Integrated Transitions'),
(113542, 92694, 'es', 'name', 'Instituto para las Transiciones Integrales'),
(113543, 92695, 'en', 'name', 'Xi''an Institute of Optics and Precision Mechanics'),
(113544, 92695, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č„æå®‰å…‰å­¦ē²¾åÆ†ęœŗę¢°ē ”ē©¶ę‰€'),
(113545, 92696, 'no_lang_code', 'name', 'Saind (Spain)'),
(113546, 92697, 'en', 'name', 'Hydrology Climate & Climate Change Laboratory'),
(113547, 92697, 'fr', 'name', 'Laboratoire d’hydrologie, climat et changements climatiques'),
(113548, 92698, 'en', 'name', 'State Key Laboratory of Metal Matrix Composites'),
(113549, 92698, 'zh', 'name', 'é‡‘å±žåŸŗå¤åˆęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113550, 92699, 'en', 'name', 'Canadian Consortium on Neurodegeneration in Aging'),
(113551, 92699, 'fr', 'name', 'Consortium canadien en neurodƩgƩnƩrescence associƩe au vieillissement'),
(113552, 92700, 'en', 'name', 'Dokkyo Medical University Saitama Medical Center'),
(113553, 92700, 'ja', 'name', 'ēØå”åŒ»ē§‘å¤§å­¦åŸ¼ēŽ‰åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(113554, 92701, 'en', 'name', 'Office of Environment, Health, Safety and Security'),
(113555, 92702, 'no_lang_code', 'name', 'Eli Lilly (Spain)'),
(113556, 92703, 'en', 'name', 'New Jersey Water Science Center'),
(113557, 92704, 'sv', 'name', 'Region Ɩstergƶtland'),
(113558, 92704, 'en', 'name', 'Ɩstergƶtland County Council'),
(113559, 92705, 'es', 'name', 'Real Academia de Ciencias y Artes de Barcelona'),
(113560, 92705, 'ca', 'name', 'Reial AcadĆØmia de CiĆØncies i Arts de Barcelona'),
(113561, 92705, 'en', 'name', 'Royal Academy of Arts and Sciences of Barcelona'),
(113562, 92706, 'en', 'name', 'B.P. Eye Foundation'),
(113563, 92707, 'es', 'name', 'Ministerio de Educación'),
(113564, 92707, 'en', 'name', 'Ministry of Education'),
(113565, 92708, 'en', 'name', 'Development Finance and Public Policies'),
(113566, 92709, 'en', 'name', 'State Key Laboratory of Efficient Mining and Clean Utilization of Coal Resources'),
(113567, 92709, 'zh', 'name', 'ē…¤ē‚­čµ„ęŗé«˜ę•ˆå¼€é‡‡äøŽę“å‡€åˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113568, 92710, 'fr', 'name', 'La revue pour les etudiants en technologie et sciences'),
(113569, 92710, 'en', 'name', 'The Journal of Student Science and Technology'),
(113570, 92711, 'en', 'name', 'State Key Laboratory of Desert and Oasis Ecology'),
(113571, 92711, 'zh', 'name', 'č’ę¼ äøŽē»æę“²ē”Ÿę€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113572, 92712, 'en', 'name', 'China National Heavy Machinery Research Institute Co., Ltd.'),
(113573, 92713, 'no_lang_code', 'name', 'GPTech (Spain)'),
(113574, 92714, 'en', 'name', 'State Key Laboratory of Marine Geology'),
(113575, 92714, 'zh', 'name', 'ęµ·ę“‹åœ°č“Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113576, 92715, 'en', 'name', 'State Key Laboratory of Theoretical Chemical Computing'),
(113577, 92715, 'zh', 'name', 'ē†č®ŗåŒ–å­¦č®”ē®—å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113578, 92716, 'no_lang_code', 'name', 'Vimicro (China)'),
(113579, 92716, 'zh', 'name', 'äø­ę˜Ÿå¾®ē”µå­ęœ‰é™å…¬åø'),
(113580, 92717, 'en', 'name', 'Norwegian Board of Technology'),
(113581, 92717, 'no', 'name', 'TeknologirƄdet'),
(113582, 92718, 'no_lang_code', 'name', 'Industrial Galvanizadora (Spain)'),
(113583, 92719, 'hr', 'name', 'Institut za kozmologiju i filozofiju prirode'),
(113584, 92719, 'en', 'name', 'Institute for Cosmology and Philosophy of Nature'),
(113585, 92720, 'en', 'name', 'Society for the Improvement of Psychological Science');
INSERT INTO `ror_settings` VALUES
(113586, 92721, 'ca', 'name', 'Institut d''Investigacions BiomĆØdiques de Barcelona'),
(113587, 92721, 'es', 'name', 'Instituto de Investigaciones Biomedicas de Barcelona'),
(113588, 92722, 'es', 'name', 'Consejeria de Sanidad'),
(113589, 92722, 'ca', 'name', 'Conselleria de Sanitat Universal i Salut PĆŗblica'),
(113590, 92723, 'en', 'name', 'Basque Country Mobility And Logistics Cluster'),
(113591, 92723, 'es', 'name', 'Cluster de Movilidad y LogĆ­stica de Euskadi'),
(113592, 92723, 'eu', 'name', 'Euskadiko Mugikortasun Eta Logistika Klusterra'),
(113593, 92724, 'en', 'name', 'State Key Laboratory of Genetic Engineering'),
(113594, 92724, 'zh', 'name', 'é—ä¼ å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113595, 92725, 'es', 'name', 'Instituto de Neurociencias'),
(113596, 92726, 'en', 'name', 'Douglas Bomford Trust'),
(113597, 92727, 'en', 'name', 'Montana Wheat and Barley Committee'),
(113598, 92728, 'es', 'name', 'Ministerio de Trabajo y EconomĆ­a Social'),
(113599, 92728, 'en', 'name', 'Ministry of Labour and Social Economy'),
(113600, 92729, 'no_lang_code', 'name', 'Plexxikon (United States)'),
(113601, 92730, 'en', 'name', 'Institute of Chemical Synthesis and Homogeneous Catalysis'),
(113602, 92730, 'es', 'name', 'Instituto de Sƭntesis Quƭmica y CatƔlisis HomogƩnea'),
(113603, 92731, 'en', 'name', 'Institute of Innovation and Knowledge Management'),
(113604, 92731, 'es', 'name', 'Instituto de Gestión de la Innovación y del Conocimiento'),
(113605, 92732, 'ca', 'name', 'Centre de Recerca MatemĆ tica'),
(113606, 92733, 'es', 'name', 'Instituto de la Grasa'),
(113607, 92734, 'en', 'name', 'State Key Laboratory of Integrated Service Network Theory and Key Technology'),
(113608, 92734, 'zh', 'name', 'ē»¼åˆäøšåŠ”ē½‘ē†č®ŗåŠå…³é”®ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113609, 92735, 'es', 'name', 'Ministerio del Interior'),
(113610, 92735, 'en', 'name', 'Ministry of Interior'),
(113611, 92736, 'en', 'name', 'Chinese Research Academy of Environmental Sciences'),
(113612, 92736, 'zh', 'name', 'äø­å›½ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(113613, 92737, 'en', 'name', 'State Key Laboratory of Nonlinear Mechanics'),
(113614, 92737, 'zh', 'name', 'éžēŗæę€§åŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113615, 92738, 'no_lang_code', 'name', 'Shell (Brazil)'),
(113616, 92739, 'en', 'name', 'Urmia University of Medical Sciences'),
(113617, 92740, 'es', 'name', 'Fundación Universitaria de Navarra'),
(113618, 92741, 'pt', 'name', 'Hospital de São João'),
(113619, 92741, 'en', 'name', 'Hospital of St. John'),
(113620, 92742, 'en', 'name', 'Municipal Institution of Higher Education "Khortytsia National Educational and Rehabilitational Academy" of Zaporizhzhia Regional Council'),
(113621, 92742, 'uk', 'name', 'Комунальний заклаГ вищої освіти Ā«Š„Š¾Ń€Ń‚ŠøŃ†ŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š½Š°Š²Ń‡Š°Š»ŃŒŠ½Š¾-реабілітаційна Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ» Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ¾Ń— обласної раГи'),
(113622, 92743, 'id', 'name', 'STIE Enam Enam Kendari'),
(113623, 92744, 'en', 'name', 'Chinese Center For Disease Control and Prevention'),
(113624, 92744, 'zh', 'name', 'åŒ—äŗ¬åø‚é¢„é˜²åŒ»å­¦ē ”ē©¶äø­åæƒ'),
(113625, 92745, 'no_lang_code', 'name', 'Genentech'),
(113626, 92746, 'en', 'name', 'State Key Laboratory of Natural and Biomimetic Drugs'),
(113627, 92746, 'zh', 'name', 'å¤©ē„¶čÆē‰©åŠä»æē”ŸčÆē‰©å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113628, 92747, 'en', 'name', 'Forestry and Agricultural Biotechnology Institute'),
(113629, 92748, 'en', 'name', 'Institute of Mechanical Engineering and Industrial Mangement'),
(113630, 92749, 'en', 'name', 'State of New Jersey'),
(113631, 92750, 'en', 'name', 'State Key Laboratory of Organic Geochemistry'),
(113632, 92750, 'zh', 'name', 'ęœ‰ęœŗåœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113633, 92751, 'en', 'name', 'State Key Laboratory for Geomechanics and Deep Underground Engineering'),
(113634, 92751, 'zh', 'name', 'ę·±éƒØå²©åœŸåŠ›å­¦äøŽåœ°äø‹å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113635, 92752, 'es', 'name', 'Instituto de FĆ­sica de Cantabria'),
(113636, 92753, 'en', 'name', 'Harbin Veterinary Research Institute'),
(113637, 92753, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å“ˆå°”ę»Øå…½åŒ»ē ”ē©¶ę‰€'),
(113638, 92754, 'en', 'name', 'State Key Laboratory of Transient Optics and Photonics'),
(113639, 92754, 'zh', 'name', 'ēž¬ę€å…‰å­¦äøŽå…‰å­ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113640, 92755, 'en', 'name', 'Ministry of Innovative Development of the Republic of Uzbekistan'),
(113641, 92756, 'es', 'name', 'Consejería de Desarrollo Educativo y Formación Porfesional'),
(113642, 92757, 'en', 'name', 'John Wesley Powell Center for Analysis and Synthesis'),
(113643, 92758, 'en', 'name', 'Samarkand Institute of Veterinary Medicine'),
(113644, 92758, 'uz', 'name', 'Samarqand veterinariya meditsinasi instituti'),
(113645, 92758, 'ru', 'name', 'ДамарканГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарной меГицины'),
(113646, 92759, 'no_lang_code', 'name', 'Boluda División Industrial (Spain)'),
(113647, 92760, 'en', 'name', 'State Key Laboratory of Clean Energy Utilization'),
(113648, 92760, 'zh', 'name', 'čƒ½ęŗęø…ę“åˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113649, 92761, 'es', 'name', 'Fundación Universidad Empresa de la Región de Murcia'),
(113650, 92762, 'en', 'name', 'State Key Laboratory of Hybrid Rice'),
(113651, 92762, 'zh', 'name', 'ę‚äŗ¤ę°“ēØ»å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113652, 92763, 'ms', 'name', 'Universiti Teknologi Petronas'),
(113653, 92763, 'zh', 'name', '国油大学'),
(113654, 92764, 'pt', 'name', 'Centro de Recursos Naturais e Ambiente'),
(113655, 92765, 'en', 'name', 'State Key Laboratory of Environmental Adaptability for Industrial Products'),
(113656, 92765, 'zh', 'name', 'å·„äøšäŗ§å“ēŽÆå¢ƒé€‚åŗ”ę€§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113657, 92766, 'en', 'name', 'Epilepsy Action'),
(113658, 92767, 'es', 'name', 'Instituto de Productos Naturales y AgrobiologĆ­a'),
(113659, 92768, 'en', 'name', 'German Association of Joint Industrial Applied Research Institutes'),
(113660, 92769, 'no_lang_code', 'name', 'Jilin Jiangji Special Industries Co., Ltd (China)'),
(113661, 92769, 'zh', 'name', 'å‰ęž—ę±Ÿęœŗē‰¹ē§å·„äøšęœ‰é™å…¬åø'),
(113662, 92770, 'es', 'name', 'Agencia de Calidad Sanitaria de AndalucĆ­a'),
(113663, 92770, 'en', 'name', 'Andalusian Agency for Healthcare Quality'),
(113664, 92771, 'en', 'name', 'Chinese Academy of Tropical Agricultural Sciences'),
(113665, 92771, 'zh', 'name', 'äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢'),
(113666, 92772, 'en', 'name', 'Foundation for Research, Science and Technology'),
(113667, 92772, 'mi', 'name', 'Tūāpapa Rangahau Pūtaiao'),
(113668, 92773, 'es', 'name', 'Departamento de Educación'),
(113669, 92773, 'eu', 'name', 'Hezkuntza Departamentua'),
(113670, 92774, 'en', 'name', 'Department of Health'),
(113671, 92774, 'eu', 'name', 'Osasun Saila'),
(113672, 92775, 'no_lang_code', 'name', 'Biomar Microbial Technologies (Spain)'),
(113673, 92776, 'fr', 'name', 'Neuropsychologie Cognitive et Physiopathologie de la SchizophrƩnie'),
(113674, 92777, 'en', 'name', 'State Key Laboratory of Atmospheric Boundary Layer Physics and Atmospheric Chemistry'),
(113675, 92777, 'zh', 'name', 'å¤§ę°”č¾¹ē•Œå±‚ē‰©ē†äøŽå¤§ę°”åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113676, 92778, 'en', 'name', 'Shanghai Electric Cable Research Institute'),
(113677, 92778, 'zh', 'name', 'äøŠęµ·ē”µē¼†ē ”ē©¶ę‰€åˆ›å»ŗ'),
(113678, 92779, 'no_lang_code', 'name', 'Janssen (Switzerland)'),
(113679, 92779, 'de', 'name', 'Janssen Schweiz'),
(113680, 92779, 'fr', 'name', 'Janssen Suisse'),
(113681, 92780, 'en', 'name', 'Advance Queensland'),
(113682, 92781, 'en', 'name', 'Institute of Microbiology'),
(113683, 92781, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(113684, 92782, 'es', 'name', 'Museo Nacional de Arte de CataluƱa'),
(113685, 92782, 'ca', 'name', 'Museu Nacional d''Art de Catalunya'),
(113686, 92783, 'tr', 'name', 'Üniversite ve Araştırma Kütüphanecileri Derneği'),
(113687, 92784, 'en', 'name', 'Region of Calabria'),
(113688, 92784, 'it', 'name', 'Regione Calabria'),
(113689, 92785, 'no_lang_code', 'name', 'AMES Group (Spain)'),
(113690, 92786, 'es', 'name', 'Agencia Española de Consumo, Seguridad Alimentaría y Nutrición'),
(113691, 92786, 'en', 'name', 'Spanish Agency for Food Safety and Nutrition'),
(113692, 92787, 'en', 'name', 'Presidency University'),
(113693, 92788, 'fr', 'name', 'Laboratoire sur les chaussƩes et matƩriaux bitumineux'),
(113694, 92788, 'en', 'name', 'Pavements and Bituminous Materials Laboratory'),
(113695, 92789, 'es', 'name', 'Gobierno de EspaƱa'),
(113696, 92789, 'en', 'name', 'Government of Spain'),
(113697, 92790, 'en', 'name', 'Qaiwan International University'),
(113698, 92790, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‚ŁŠŁˆŲ§Ł† Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(113699, 92790, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ Ł†ŪŽŁˆŲÆŪ•ŁˆŚµŪ•ŲŖŪŒ Ł‚Ū•ŪŒŁˆŲ§Ł†'),
(113700, 92791, 'no_lang_code', 'name', 'Oriental Yuhong (China)'),
(113701, 92791, 'zh', 'name', 'äøœę–¹é›Øč™¹'),
(113702, 92792, 'es', 'name', 'Gerontologic Complex La Milagrosa'),
(113703, 92793, 'en', 'name', 'Institute for Health Systems Research'),
(113704, 92793, 'es', 'name', 'Instituto de Investigación en Sistemas de Salud'),
(113705, 92793, 'eu', 'name', 'Osasun Sistemen Ikerketa Institutua'),
(113706, 92794, 'en', 'name', 'State Key Laboratory of Environmental Geochemistry'),
(113707, 92794, 'zh', 'name', 'ēŽÆå¢ƒåœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113708, 92795, 'no_lang_code', 'name', 'China Energy Science and Technology Research Institute Co., Ltd. (China)'),
(113709, 92795, 'zh', 'name', 'å›½å®¶čƒ½ęŗé›†å›¢ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(113710, 92796, 'ca', 'name', 'Fundacio Privada Universitat I Tecnologia'),
(113711, 92797, 'no_lang_code', 'name', 'Mcrit (Spain)'),
(113712, 92797, 'en', 'name', 'Multicriteria Planning'),
(113713, 92798, 'ca', 'name', 'Consorci Administració Oberta de Catalunya'),
(113714, 92798, 'en', 'name', 'Open Administration Consortium of Catalonia'),
(113715, 92799, 'en', 'name', 'Department of Agriculture and Water Resources'),
(113716, 92800, 'en', 'name', 'AboutScience'),
(113717, 92801, 'en', 'name', 'State Key Laboratory of Vegetation and Environmental Change'),
(113718, 92801, 'zh', 'name', 'ę¤č¢«äøŽēŽÆå¢ƒå˜åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113719, 92802, 'es', 'name', 'Biobanco del Sistema Sanitario PĆŗblico de AndalucĆ­a'),
(113720, 92803, 'no_lang_code', 'name', 'Shanxi Jincheng Anthracite Mining Group (China)'),
(113721, 92803, 'zh', 'name', 'å±±č„æę™‹åŸŽę— ēƒŸē…¤ēŸæäøšé›†å›¢'),
(113722, 92804, 'en', 'name', 'Arizona Water Science Center'),
(113723, 92805, 'es', 'name', 'Ministerio de Agricultura, Pesca y Alimentación'),
(113724, 92806, 'es', 'name', 'Real Orquesta Sinfónica de Sevilla'),
(113725, 92806, 'en', 'name', 'Royal Seville Symphony Orchestra'),
(113726, 92807, 'en', 'name', 'State Key Laboratory of Fire Science'),
(113727, 92807, 'zh', 'name', 'ē«ē¾ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113728, 92808, 'nl', 'name', 'Landelijke Stichting voor Blinden en Slechtzienden'),
(113729, 92808, 'en', 'name', 'National Society for the Blind and Visually Impaired'),
(113730, 92809, 'en', 'name', 'Illinois Department of Agriculture'),
(113731, 92810, 'en', 'name', 'Tamil Nadu State Council for Higher Education'),
(113732, 92811, 'ca', 'name', 'AQU Catalunya'),
(113733, 92811, 'es', 'name', 'AgĆØncia per a la Qualitat del Sistema Universitari de Catalunya'),
(113734, 92812, 'en', 'name', 'State Key Laboratory of Powder Metallurgy'),
(113735, 92812, 'zh', 'name', 'ē²‰ęœ«å†¶é‡‘å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113736, 92813, 'en', 'name', 'State Key Laboratory of Cell Stress Biology'),
(113737, 92813, 'zh', 'name', 'ē»†čƒžåŗ”ęæ€ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113738, 92814, 'en', 'name', 'State Key Laboratory of Luminescent Materials and Devices'),
(113739, 92814, 'zh', 'name', 'å‘å…‰ęę–™äøŽå™Øä»¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113740, 92815, 'en', 'name', 'State Key Laboratory of Visual and Auditory Information Processing'),
(113741, 92815, 'zh', 'name', 'č§†č§‰äøŽå¬č§‰äæ”ęÆå¤„ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113742, 92816, 'en', 'name', 'State Key Laboratory of New Technology of Iron and Steel Metallurgy'),
(113743, 92816, 'zh', 'name', 'é’¢é“å†¶é‡‘ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113744, 92817, 'es', 'name', 'DiploCientƭfica, Red de Diplomacia cientƭfica para AmƩrica Latina y el Caribe'),
(113745, 92818, 'en', 'name', 'Motor Accident Insurance Commission'),
(113746, 92819, 'en', 'name', 'State Key Laboratory of Medicinal Chemical Biology'),
(113747, 92819, 'zh', 'name', 'čÆē‰©åŒ–å­¦ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113748, 92820, 'en', 'name', 'Office of International Affairs'),
(113749, 92821, 'en', 'name', 'Health Commission of Jilin Province'),
(113750, 92821, 'zh', 'name', 'å‰ęž—ēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(113751, 92822, 'fr', 'name', 'Calcul canada'),
(113752, 92822, 'en', 'name', 'Compute Canada'),
(113753, 92823, 'en', 'name', 'Ministry of Science and Technology'),
(113754, 92824, 'es', 'name', 'Asociación Innovalia'),
(113755, 92824, 'en', 'name', 'Innovalia Association'),
(113756, 92825, 'en', 'name', 'State Key Laboratory of Mineral Processing'),
(113757, 92825, 'zh', 'name', 'ēŸæē‰©åŠ å·„ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113758, 92826, 'pt', 'name', 'Casa de Hiram'),
(113759, 92827, 'de', 'name', 'Eidgenössische Hochschule für Sport Magglingen EHSM'),
(113760, 92827, 'fr', 'name', 'Haute Ʃcole fƩdƩrale de sport de Macolin HEFSM'),
(113761, 92827, 'en', 'name', 'Swiss Federal Institute of Sport Magglingen SFISM'),
(113762, 92828, 'en', 'name', 'State Key Laboratory of Pressurized Hydrometallurgy Technology for Co-Associated Nonferrous Metal Resources'),
(113763, 92828, 'zh', 'name', 'å…±ä¼“ē”Ÿęœ‰č‰²é‡‘å±žčµ„ęŗåŠ åŽ‹ę¹æę³•å†¶é‡‘ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113764, 92829, 'no_lang_code', 'name', 'Centro de TecnologĆ­as Aeronauticas (Spain)'),
(113765, 92830, 'ca', 'name', 'Centre Mediterrani d''Investigacions Marines i Ambientals'),
(113766, 92830, 'es', 'name', 'Centro MediterrƔneo de Investigaciones Marinas y Ambientale'),
(113767, 92831, 'no_lang_code', 'name', 'Weichai Power (China)'),
(113768, 92831, 'zh', 'name', 'ę½ęŸ“åŠØåŠ›'),
(113769, 92832, 'en', 'name', 'EuroBasque - Basque Council of the European Movement'),
(113770, 92832, 'es', 'name', 'EuroBasque - Consejo Vasco del Movimiento Europeo'),
(113771, 92833, 'en', 'name', 'Catalan Institution for Research and Advanced Studies'),
(113772, 92833, 'ca', 'name', 'Institució Catalana de Recerca i Estudis Avançats'),
(113773, 92833, 'es', 'name', 'Institución Catalana de Investigación y Estudios Avanzados'),
(113774, 92834, 'en', 'name', 'Institute of Basic Medical Sciences of the Chinese Academy of Medical Sciences'),
(113775, 92834, 'zh', 'name', 'äø­å›½åŒ»å­¦ē§‘å­¦é™¢åŸŗē”€åŒ»å­¦ē ”ē©¶ę‰€'),
(113776, 92835, 'en', 'name', 'State Key Laboratory of Microbial Resources'),
(113777, 92835, 'zh', 'name', 'å¾®ē”Ÿē‰©čµ„ęŗå‰ęœŸå¼€å‘å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113778, 92836, 'fr', 'name', 'Ɖquipe de Recherche Contextes et Acteurs de l''Ɖducation'),
(113779, 92837, 'no_lang_code', 'name', 'Modul-Bio (France)'),
(113780, 92838, 'en', 'name', 'Cancer Research Center'),
(113781, 92838, 'es', 'name', 'Centro de Investigación del CÔncer'),
(113782, 92839, 'es', 'name', 'Instituto de Investigación Biosanitaria de Granada'),
(113783, 92840, 'es', 'name', 'Centro OceanogrƔfico de Santander'),
(113784, 92840, 'en', 'name', 'Oceanographic Center of Santander'),
(113785, 92841, 'no_lang_code', 'name', 'C.P.Q. IbƩrica (Spain)'),
(113786, 92842, 'es', 'name', 'Centro OceanogrÔfico de Gijón'),
(113787, 92842, 'en', 'name', 'Oceanographic Center of Gijón'),
(113788, 92843, 'de', 'name', 'Stiftung Fiat Panis'),
(113789, 92843, 'en', 'name', 'The Foundation Fiat Panis'),
(113790, 92844, 'pt', 'name', 'Governo do Estado do Rio Grande do Sul'),
(113791, 92845, 'no_lang_code', 'name', 'PRG S&Tech (South Korea)'),
(113792, 92845, 'ko', 'name', 'ķ”¼ģ•Œģ§€ģ—ģŠ¤ģ•¤ķ…'),
(113793, 92846, 'es', 'name', 'Instituto de FilosofĆ­a'),
(113794, 92847, 'es', 'name', 'Consejeria de EconomĆ­a Hacienda y empleo de la Comunidad de Madrid'),
(113795, 92848, 'en', 'name', 'State Key Laboratory of New Ceramics and Fine Processing'),
(113796, 92848, 'zh', 'name', 'ę–°åž‹é™¶ē“·äøŽē²¾ē»†å·„č‰ŗå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113797, 92849, 'fi', 'name', 'Kansalliskirjasto'),
(113798, 92849, 'en', 'name', 'National Library of Finland'),
(113799, 92849, 'sv', 'name', 'Nationalbiblioteket'),
(113800, 92850, 'es', 'name', 'Fundacion Phantoms'),
(113801, 92850, 'en', 'name', 'Phantoms Foundation'),
(113802, 92851, 'en', 'name', 'Geosciences Institute'),
(113803, 92851, 'es', 'name', 'Instituto de Geociencias'),
(113804, 92852, 'es', 'name', 'Proyecto EspaƱol'),
(113805, 92853, 'en', 'name', 'Institute of Language, Literature and Anthropology'),
(113806, 92853, 'es', 'name', 'Instituto de Lengua Literatura y AntropologĆ­a'),
(113807, 92854, 'fr', 'name', 'Espace philosophique de Namur'),
(113808, 92855, 'cs', 'name', 'Ministerstvo ZemědělstvĆ­ ČeskĆ© Republiky'),
(113809, 92855, 'en', 'name', 'Ministry of Agriculture'),
(113810, 92856, 'en', 'name', 'State Key Laboratory of Multiphase Complex Systems'),
(113811, 92856, 'zh', 'name', 'å¤šē›øå¤ę‚ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113812, 92857, 'en', 'name', 'International Commission for the Conservation of Atlantic Tunas'),
(113813, 92858, 'en', 'name', 'State Key Laboratory of Nuclear Detection and Nuclear Electronics'),
(113814, 92858, 'zh', 'name', 'ę øęŽ¢ęµ‹äøŽę øē”µå­å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113815, 92859, 'en', 'name', 'Alaska Climate Adaptation Science Center'),
(113816, 92860, 'en', 'name', 'State Key Laboratory of Organometallic Chemistry'),
(113817, 92860, 'zh', 'name', 'é‡‘å±žęœ‰ęœŗåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113818, 92861, 'fr', 'name', 'Ontario Fonds ontarien pour l''innovation'),
(113819, 92861, 'en', 'name', 'Ontario Innovation Trust'),
(113820, 92862, 'no_lang_code', 'name', 'Deltex Medical (Spain)'),
(113821, 92863, 'en', 'name', 'Army Medical University'),
(113822, 92863, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬äø‰å†›åŒ»å¤§å­¦'),
(113823, 92864, 'en', 'name', 'State Key Laboratory of Analytical Chemistry for Life Science'),
(113824, 92864, 'zh', 'name', 'ē”Ÿå‘½åˆ†ęžåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113825, 92865, 'en', 'name', 'PAMO University of Medical Sciences'),
(113826, 92866, 'en', 'name', 'Namur Institute of Language, Text and Transmediality'),
(113827, 92867, 'es', 'name', 'Instituto de Neurociencias de Castilla y León'),
(113828, 92868, 'en', 'name', 'State Key Laboratory of Microwave and Digital Communication Technology'),
(113829, 92868, 'zh', 'name', 'å¾®ę³¢äøŽę•°å­—é€šäæ”ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113830, 92869, 'en', 'name', 'Institute for Functional Biology and Genomics'),
(113831, 92869, 'es', 'name', 'Instituto de Biología Funcional y Genómica'),
(113832, 92870, 'es', 'name', 'Departamento de Educación'),
(113833, 92870, 'en', 'name', 'Department of Education'),
(113834, 92870, 'eu', 'name', 'Hezkuntza Saila'),
(113835, 92871, 'en', 'name', 'Dutch Research School for Astronomy'),
(113836, 92871, 'nl', 'name', 'Nederlandse Onderzoekschool Voor Astronomie'),
(113837, 92872, 'en', 'name', 'China National Rice Research Institute'),
(113838, 92872, 'zh', 'name', '中国氓稻研究所'),
(113839, 92873, 'en', 'name', 'Institute of Agricultural Sciences'),
(113840, 92873, 'es', 'name', 'Instituto de Ciencias Agrarias'),
(113841, 92874, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Sergipe'),
(113842, 92875, 'en', 'name', 'Institute of Medicinal Chemistry'),
(113843, 92875, 'es', 'name', 'Instituto de Quƭmica MƩdica'),
(113844, 92876, 'en', 'name', 'William & Ella Owens Medical Research Foundation'),
(113845, 92877, 'en', 'name', 'Institute of Agrobiological Research of Galicia'),
(113846, 92877, 'es', 'name', 'Instituto de Investigaciones Agrobiológicas de Galicia'),
(113847, 92878, 'en', 'name', 'Free State of Saxony'),
(113848, 92878, 'de', 'name', 'Freistaat Sachsen'),
(113849, 92879, 'en', 'name', 'Institute of Acoustics'),
(113850, 92879, 'zh', 'name', '中国科学院声学研究所'),
(113851, 92880, 'en', 'name', 'CCTEG Shenyang Research Institute'),
(113852, 92880, 'zh', 'name', 'ē…¤ē§‘é›†å›¢ę²ˆé˜³ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(113853, 92881, 'en', 'name', 'HSNC University'),
(113854, 92882, 'en', 'name', 'Epilepsy Society'),
(113855, 92883, 'fr', 'name', 'Physiologie, Ecologie et Environnement'),
(113856, 92883, 'en', 'name', 'Physiology, Ecology, Environment'),
(113857, 92884, 'en', 'name', 'Baotou Research Institute of Rare Earths'),
(113858, 92884, 'zh', 'name', 'åŒ…å¤“ēØ€åœŸē ”ē©¶é™¢'),
(113859, 92885, 'no_lang_code', 'name', 'General Research Institute for Nonferrous Metals (China)'),
(113860, 92885, 'zh', 'name', 'åŒ—äŗ¬ęœ‰č‰²é‡‘å±žē ”ē©¶ę€»é™¢'),
(113861, 92886, 'no_lang_code', 'name', 'Meiji Pharma Spain'),
(113862, 92887, 'en', 'name', 'Shanghai Institute of Ceramics'),
(113863, 92887, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·ē”…é…øē›ē ”ē©¶ę‰€'),
(113864, 92888, 'en', 'name', 'Shanghai Institute of Organic Chemistry'),
(113865, 92888, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·ęœ‰ęœŗåŒ–å­¦ē ”ē©¶ę‰€'),
(113866, 92889, 'en', 'name', 'State Key Laboratory of Space Medicine Fundamentals and Application'),
(113867, 92889, 'zh', 'name', 'čˆŖå¤©åŒ»å­¦åŸŗē”€äøŽåŗ”ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113868, 92890, 'es', 'name', 'Ayuntamiento de Sevilla'),
(113869, 92890, 'en', 'name', 'City Council of Seville'),
(113870, 92891, 'de', 'name', 'Paracelsus Elena Klinik Kassel'),
(113871, 92892, 'en', 'name', 'Guangzhou Research Institute of Non-ferrous Metals'),
(113872, 92892, 'zh', 'name', 'å¹æå·žęœ‰č‰²é‡‘å±žē ”ē©¶é™¢'),
(113873, 92893, 'en', 'name', 'State Key Laboratory of Coastal and Offshore Engineering'),
(113874, 92893, 'zh', 'name', 'ęµ·å²øå’Œčæ‘ęµ·å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113875, 92894, 'en', 'name', 'Centre for Individualised Infection Medicine'),
(113876, 92895, 'en', 'name', 'Office of Health and Safety'),
(113877, 92896, 'no_lang_code', 'name', 'Faes Farma (Spain)'),
(113878, 92897, 'en', 'name', 'National Center of Competence in Research Quantum Science and Technology'),
(113879, 92898, 'en', 'name', 'State Key Laboratory of Lithospheric Evolution'),
(113880, 92898, 'zh', 'name', 'å²©ēŸ³åœˆę¼”åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113881, 92899, 'en', 'name', 'King Gustaf V and Queen Victoria''s Foundation of Freemasons'),
(113882, 92899, 'sv', 'name', 'Konung Gustaf V:s och Drottning Victorias Frimurarestiftelse'),
(113883, 92900, 'it', 'name', 'CSCS - Centro Svizzero di Calcolo Scientifico'),
(113884, 92900, 'en', 'name', 'CSCS - Swiss National Supercomputing Centre'),
(113885, 92901, 'en', 'name', 'State Key Laboratory of Molecular Reaction Dynamics'),
(113886, 92901, 'zh', 'name', 'åˆ†å­ååŗ”åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113887, 92902, 'en', 'name', 'Research Institute of Petroleum Exploration and Development'),
(113888, 92902, 'zh', 'name', 'äø­å›½ēŸ³ę²¹å¤©ē„¶ę°”č‚”ä»½ęœ‰é™å…¬åøå‹˜ęŽ¢å¼€å‘ē ”ē©¶é™¢'),
(113889, 92903, 'es', 'name', 'Instituto Tecnológico de Oaxaca'),
(113890, 92903, 'en', 'name', 'Oaxaca Institute of Technology'),
(113891, 92904, 'en', 'name', 'Forest and Rangeland Ecosystem Science Center'),
(113892, 92905, 'en', 'name', 'State Key Laboratory of Digital Manufacturing Equipment and Technology'),
(113893, 92905, 'zh', 'name', 'ę•°å­—åˆ¶é€ č£…å¤‡äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113894, 92906, 'en', 'name', 'State Key Laboratory of Mobile Communications'),
(113895, 92906, 'zh', 'name', 'ē§»åŠØé€šäæ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113896, 92907, 'en', 'name', 'State Key Laboratory of Digital Multimedia Technology'),
(113897, 92907, 'zh', 'name', 'ę•°å­—å¤šåŖ’ä½“ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113898, 92908, 'en', 'name', 'State Key Laboratory of Light Alloy Casting Technology for High-end Equipment'),
(113899, 92908, 'zh', 'name', 'é«˜ē«Æč£…å¤‡č½»åˆé‡‘é“øé€ ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113900, 92909, 'en', 'name', 'State Key Laboratory of Concrete Materials Research'),
(113901, 92909, 'zh', 'name', 'ę··å‡åœŸęę–™ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113902, 92910, 'en', 'name', 'State Key Laboratory of Complex System Management and Control'),
(113903, 92910, 'zh', 'name', 'å¤ę‚ē³»ē»Ÿē®”ē†äøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113904, 92911, 'en', 'name', 'Illinois Department of Transportation'),
(113905, 92912, 'en', 'name', 'State Key Laboratory of Agricultural Biotechnology'),
(113906, 92912, 'zh', 'name', 'å†œäøšē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113907, 92913, 'en', 'name', 'Beijing Jiaotong University'),
(113908, 92913, 'zh', 'name', 'åŒ—äŗ¬äŗ¤é€šå¤§å­¦'),
(113909, 92914, 'no_lang_code', 'name', 'Hisense (China)'),
(113910, 92914, 'zh', 'name', '海俔集团'),
(113911, 92915, 'es', 'name', 'Hospital Universitario de Guadalajara'),
(113912, 92916, 'no_lang_code', 'name', 'Zoomlion (China)'),
(113913, 92916, 'zh', 'name', 'äø­č”é‡ē§‘'),
(113914, 92917, 'fr', 'name', 'Laboratoire Pluridisciplinaire de Recherche en Ingénierie des Systèmes, Mécanique et Energétique'),
(113915, 92918, 'en', 'name', 'State Key Laboratory of Synthetical Automation for Process Industries'),
(113916, 92918, 'zh', 'name', 'ęµēØ‹å·„äøšē»¼åˆč‡ŖåŠØåŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113917, 92919, 'en', 'name', 'Institute of Limnology of the Russian Academy of Sciences'),
(113918, 92919, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠžŠ·ŠµŃ€Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(113919, 92920, 'en', 'name', 'State Key Laboratory of Optoelectronic Materials and Technology'),
(113920, 92920, 'zh', 'name', 'å…‰ē”µęę–™äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113921, 92921, 'en', 'name', 'State of Illinois'),
(113922, 92922, 'en', 'name', 'Institute of Molecular Genetics and Genetic Engineering'),
(113923, 92923, 'en', 'name', 'Ministry of Water Resources of the People''s Republic of China'),
(113924, 92923, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½ę°“åˆ©éƒØ'),
(113925, 92924, 'en', 'name', 'Bavarian State Ministry for Science and Art'),
(113926, 92924, 'de', 'name', 'Bayerisches Staatsministerium für Wissenschaft und Kunst'),
(113927, 92925, 'en', 'name', 'Jeffrey Cheah Foundation'),
(113928, 92926, 'en', 'name', 'Scottish Government'),
(113929, 92927, 'en', 'name', 'State Key Laboratory of Electroanalytical Chemistry'),
(113930, 92927, 'zh', 'name', 'ē”µåˆ†ęžåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113931, 92928, 'en', 'name', 'Weston Havens Foundation'),
(113932, 92929, 'en', 'name', 'Toyota Research Institute'),
(113933, 92930, 'en', 'name', 'State Key Laboratory of Brain and Cognitive Science'),
(113934, 92930, 'zh', 'name', 'č„‘äøŽč®¤ēŸ„ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113935, 92931, 'es', 'name', 'Asociación de Investigación de la Industria Textil'),
(113936, 92932, 'es', 'name', 'Departamento de Desarrollo Económico, Sostenibilidad y Medio Ambiente'),
(113937, 92932, 'eu', 'name', 'Ekonomiaren Garapen eta Lehiakortasun Saila'),
(113938, 92933, 'en', 'name', 'Kunming Institute of Botany'),
(113939, 92933, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę˜†ę˜Žę¤ē‰©ē ”ē©¶ę‰€'),
(113940, 92934, 'en', 'name', 'State Key Laboratory of Crop Genetic Improvement'),
(113941, 92934, 'zh', 'name', 'ä½œē‰©é—ä¼ ę”¹č‰Æå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113942, 92935, 'ca', 'name', 'Museu d’Art Contemporani de Barcelona'),
(113943, 92936, 'ca', 'name', 'Fundacio Pere Tarres'),
(113944, 92937, 'fr', 'name', 'Laboratoire d''ingénierie des produits, procédés et systèmes'),
(113945, 92937, 'en', 'name', 'Products, Processes and Systems Engineering Laboratory'),
(113946, 92938, 'en', 'name', 'National Space Science Center'),
(113947, 92938, 'zh', 'name', 'å›½å®¶ē©ŗé—“ē§‘å­¦äø­åæƒ'),
(113948, 92939, 'en', 'name', 'State Key Laboratory of Environmental Chemistry and Ecotoxicology'),
(113949, 92939, 'zh', 'name', 'ēŽÆå¢ƒåŒ–å­¦äøŽē”Ÿę€ęÆ’ē†å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113950, 92940, 'no_lang_code', 'name', 'Family Process Institute (United States)'),
(113951, 92941, 'es', 'name', 'Instituto de Biomedicina de Valencia'),
(113952, 92942, 'en', 'name', 'State Key Laboratory of Industrial Control Technology'),
(113953, 92942, 'zh', 'name', 'å·„äøšęŽ§åˆ¶ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113954, 92943, 'fr', 'name', 'Agence de la santƩ publique du Canada'),
(113955, 92943, 'en', 'name', 'Public Health Agency of Canada'),
(113956, 92944, 'en', 'name', 'Hospital Real de Granada'),
(113957, 92945, 'en', 'name', 'State Key Laboratory of Marine Pollution'),
(113958, 92945, 'zh', 'name', 'ęµ·ę“‹ę±”ęŸ“å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113959, 92946, 'en', 'name', 'Institute of Physical Chemistry Blas Cabrera'),
(113960, 92946, 'es', 'name', 'Instituto de QuĆ­mica FĆ­sica Blas Cabrera'),
(113961, 92947, 'en', 'name', 'Shanghai Institutes for Biological Sciences'),
(113962, 92947, 'zh', 'name', 'äøŠęµ·ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(113963, 92948, 'en', 'name', 'State Key Laboratory of Solid Lubrication'),
(113964, 92948, 'zh', 'name', 'å›ŗä½“ę¶¦ę»‘å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113965, 92949, 'es', 'name', 'Instituto Nacional de ToxicologĆ­a y Ciencias Forenses'),
(113966, 92950, 'no_lang_code', 'name', 'Abengoa (Spain)'),
(113967, 92951, 'no_lang_code', 'name', 'Toyota Group (Japan)'),
(113968, 92951, 'ja', 'name', 'ćƒˆćƒØć‚æć‚°ćƒ«ćƒ¼ćƒ—'),
(113969, 92952, 'pl', 'name', 'Politechnika Wrocławska'),
(113970, 92952, 'en', 'name', 'Wrocław University of Science and Technology'),
(113971, 92953, 'en', 'name', 'State Key Laboratory of Hydraulic Engineering Simulation and Safety'),
(113972, 92953, 'zh', 'name', 'ę°“åˆ©å·„ēØ‹ä»æēœŸäøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113973, 92954, 'en', 'name', 'Wuhan Research Institute of Materials Protection'),
(113974, 92954, 'zh', 'name', 'ę­¦ę±‰ęę–™äæęŠ¤ē ”ē©¶ę‰€'),
(113975, 92955, 'es', 'name', 'Hospital Universitario PrĆ­ncipe de Asturias'),
(113976, 92956, 'en', 'name', 'Legislative-Citizen Commission on Minnesota Resources'),
(113977, 92957, 'ca', 'name', 'Parc CientĆ­fic de la Universitat de ValĆØncia'),
(113978, 92958, 'no_lang_code', 'name', 'Acorde (Spain)'),
(113979, 92959, 'ca', 'name', 'Institut de Biomedicina de la Universitat de Barcelona'),
(113980, 92959, 'en', 'name', 'Institute of Biomedicine of the University of Barcelona'),
(113981, 92960, 'en', 'name', 'Institute of Rock and Soil Mechanics'),
(113982, 92960, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę­¦ę±‰å²©åœŸåŠ›å­¦ē ”ē©¶ę‰€'),
(113983, 92961, 'en', 'name', 'Colorado Water Science Center'),
(113984, 92962, 'en', 'name', 'Institute of Geology, China Earthquake Administration'),
(113985, 92962, 'zh', 'name', 'äø­å›½åœ°éœ‡å±€åœ°č“Øē ”ē©¶ę‰€'),
(113986, 92963, 'es', 'name', 'Hospital Central de la Defensa Gómez Ulla'),
(113987, 92964, 'no_lang_code', 'name', 'Zama (France)'),
(113988, 92965, 'en', 'name', 'State Key Laboratory of Reproductive Biology for Family Planning'),
(113989, 92965, 'zh', 'name', 'č®”åˆ’ē”Ÿč‚²ē”Ÿę®–ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113990, 92966, 'en', 'name', 'State Key Laboratory of Compressor Technology'),
(113991, 92966, 'zh', 'name', 'åŽ‹ē¼©ęœŗęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113992, 92967, 'es', 'name', 'Fundación Ignacio Larramendi'),
(113993, 92968, 'en', 'name', 'Linkƶping University Hospital'),
(113994, 92968, 'sv', 'name', 'Universitetssjukhuset i Linkƶping'),
(113995, 92969, 'en', 'name', 'Upper Midwest Environmental Sciences Center'),
(113996, 92970, 'fr', 'name', 'Normandie Innovation MarchƩ Entreprise Consommation'),
(113997, 92971, 'en', 'name', 'National Minerals Information Center'),
(113998, 92972, 'en', 'name', 'The Human Diagnosis Project'),
(113999, 92973, 'fr', 'name', 'Vertige ExtrĆŖme'),
(114000, 92974, 'de', 'name', 'Institut für Rechtspolitik an der Universität Trier'),
(114001, 92975, 'en', 'name', 'State Key Laboratory of Advanced Optical Communication Systems and Networks'),
(114002, 92975, 'zh', 'name', 'å…‰ēŗ¤é€šäæ”ęŠ€ęœÆå’Œē½‘ē»œå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114003, 92976, 'eu', 'name', 'Euskadiko Parke Teknologikoa'),
(114004, 92977, 'fr', 'name', 'Laboratoire d''Analyse des SociƩtƩs, Transformations et Adaptations'),
(114005, 92978, 'fr', 'name', 'Laboratoire de MƩcanique de Normandie'),
(114006, 92979, 'en', 'name', 'Pacific Islands Water Science Center'),
(114007, 92980, 'de', 'name', 'Deutsches ArchƤologisches Institut, Rƶmisch-Germanische Kommission'),
(114008, 92980, 'en', 'name', 'German Archaeological Institute, Romano Germanic Commission'),
(114009, 92981, 'no_lang_code', 'name', 'DNV (Germany)'),
(114010, 92982, 'en', 'name', 'Western Fisheries Research Center'),
(114011, 92983, 'en', 'name', 'Hawaiian Volcano Observatory'),
(114012, 92984, 'fr', 'name', 'Centre Interdisciplinaire de Recherche Normand en Education et Formation'),
(114013, 92985, 'en', 'name', 'Nevada Water Science Center'),
(114014, 92986, 'it', 'name', 'Governo Italiano'),
(114015, 92987, 'en', 'name', 'International Oceanographic Data and Information Exchange (IODE)'),
(114016, 92988, 'de', 'name', 'Cusanus Institut'),
(114017, 92988, 'en', 'name', 'Cusanus Institute'),
(114018, 92989, 'fr', 'name', 'DƩlƩgation RƩgionale Nouvelle-Aquitaine'),
(114019, 92990, 'en', 'name', 'Sunway University'),
(114020, 92990, 'ms', 'name', 'Universiti Sunway'),
(114021, 92990, 'zh', 'name', 'åŒåØå¤§å­¦'),
(114022, 92991, 'en', 'name', 'State Key Laboratory of Internal Combustion Engines'),
(114023, 92991, 'zh', 'name', 'å†…ē‡ƒęœŗē‡ƒēƒ§å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114024, 92992, 'no_lang_code', 'name', 'JK Fenner (India)'),
(114025, 92993, 'fr', 'name', 'Histoire, Territoires & MƩmoires'),
(114026, 92994, 'en', 'name', 'Oregon Water Science Center'),
(114027, 92995, 'no_lang_code', 'name', 'Shell (Netherlands)'),
(114028, 92996, 'en', 'name', 'Geologic Hazards Science Center'),
(114029, 92997, 'en', 'name', 'Research and Innovation Foundation'),
(114030, 92997, 'el', 'name', 'ĪŠĪ“ĻĻ…Ī¼Ī± ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και ĪšĪ±Ī¹Ī½ĪæĻ„ĪæĪ¼ĪÆĪ±Ļ‚'),
(114031, 92998, 'fr', 'name', 'Commission de l''Ethique en Science et en Technologie'),
(114032, 92999, 'fr', 'name', 'Centre d''Etudes et de Recherche sur le MƩdicament de Normandie'),
(114033, 93000, 'en', 'name', 'Baker Heart and Diabetes Institute'),
(114034, 93001, 'fr', 'name', 'Laboratoire Universitaire des Sciences AppliquƩes de Cherbourg'),
(114035, 93002, 'en', 'name', 'Andalusian Center for Developmental Biology'),
(114036, 93002, 'es', 'name', 'Centro Andaluz de BiologĆ­a del Desarrollo'),
(114037, 93003, 'en', 'name', 'British Oceanographic Data Centre'),
(114038, 93004, 'en', 'name', 'State Key Laboratory of Tree Genetics and Breeding'),
(114039, 93004, 'zh', 'name', 'ęž—ęœØé—ä¼ č‚²ē§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114040, 93005, 'en', 'name', 'New York Water Science Center'),
(114041, 93006, 'fr', 'name', 'Physiopathologie et StratƩgies d''Imagerie du Remodelage cardiovasculaire'),
(114042, 93007, 'en', 'name', 'Aljeel Aljadeed University'),
(114043, 93007, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬ŁŠŁ„ Ų§Ł„Ų¬ŲÆŁŠŲÆ'),
(114044, 93008, 'fr', 'name', 'Laboratoire Sciences et MƩthodes SƩparatives'),
(114045, 93009, 'en', 'name', 'Manchester Community College - Connecticut'),
(114046, 93010, 'de', 'name', 'Deutsches ArchƤologisches Institut, Abteilung Cairo'),
(114047, 93010, 'en', 'name', 'German Archaeological Institute, Cairo Department'),
(114048, 93011, 'en', 'name', 'HMU Potsdam – Health and Medical University Potsdam'),
(114049, 93012, 'en', 'name', 'R. R. Lalan College'),
(114050, 93013, 'no_lang_code', 'name', 'Drohobych Ivan Franko State Pedagogical University'),
(114051, 93013, 'uk', 'name', 'Š”Ń€Š¾Š³Š¾Š±ŠøŃ†ŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана Франка'),
(114052, 93014, 'id', 'name', 'Universitas Multi Data Palembang'),
(114053, 93015, 'en', 'name', 'Oklahoma-Texas Water Science Center'),
(114054, 93016, 'en', 'name', 'Lower Mississippi-Gulf Water Science Center'),
(114055, 93017, 'en', 'name', 'Animal Free Research UK'),
(114056, 93018, 'en', 'name', 'WZB Berlin Social Science Center'),
(114057, 93018, 'de', 'name', 'Wissenschaftszentrum Berlin für Sozialforschung gGmbH'),
(114058, 93019, 'it', 'name', 'Ministero dell''Istruzione e del Merito'),
(114059, 93019, 'en', 'name', 'Ministry of Education and Merit'),
(114060, 93020, 'en', 'name', 'Youth Scotland'),
(114061, 93021, 'en', 'name', 'Western Geographic Science Center'),
(114062, 93022, 'en', 'name', 'National Science Foundation of Sri Lanka'),
(114063, 93022, 'si', 'name', 'ą¶¢ą·ą¶­ą·’ą¶š ą·€ą·’ą¶Æą·Šā€ą¶ŗą· ඓදනම, ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą·ą·€'),
(114064, 93023, 'de', 'name', 'Culinary Medicine Deutschland e.V.'),
(114065, 93024, 'de', 'name', 'Deutsches Archäologisches Institut, Kommission für Archäologie Außereuropäischer Kulturen'),
(114066, 93024, 'en', 'name', 'German Archaeological Institute, Commission for Archaeology of Non-European Cultures'),
(114067, 93025, 'id', 'name', 'Institut Teknologi Statistika dan Bisnis Muhammadiyah Semarang'),
(114068, 93026, 'de', 'name', 'Universitätsklinik für Chirurgie Wien'),
(114069, 93027, 'en', 'name', 'JSS Dental College and Hospital'),
(114070, 93028, 'en', 'name', 'Berlin University of the Arts'),
(114071, 93028, 'de', 'name', 'Universität der Künste Berlin'),
(114072, 93029, 'en', 'name', 'International Hellenic University'),
(114073, 93029, 'fr', 'name', 'UniversitƩ internationale hellƩnique'),
(114074, 93029, 'el', 'name', 'Διεθνές Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ΕλλάΓος'),
(114075, 93030, 'fr', 'name', 'Biologie du cartilage, biotechnologie et tƩlƩmƩdecine'),
(114076, 93031, 'en', 'name', 'Vinnytsia Mykhailo Kotsiubynskyi State Pedagogical University'),
(114077, 93031, 'uk', 'name', 'Š’Ń–Š½Š½ŠøŃ†ŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠœŠøŃ…Š°Š¹Š»Š° ŠšŠ¾Ń†ŃŽŠ±ŠøŠ½ŃŃŒŠŗŠ¾Š³Š¾'),
(114078, 93032, 'fr', 'name', 'Institut de recherche en droit privƩ'),
(114079, 93033, 'es', 'name', 'Servicio Gallego de Salud'),
(114080, 93034, 'de', 'name', 'Deutsches ArchƤologisches Institut, Orient-Abteilung'),
(114081, 93034, 'en', 'name', 'German Archaeological Institute, Orient Department'),
(114082, 93035, 'en', 'name', 'Washington Water Science Center'),
(114083, 93036, 'fr', 'name', 'Institut de Recherche en Systèmes Electroniques Embarqués'),
(114084, 93037, 'es', 'name', 'Centro de AstrobiologĆ­a'),
(114085, 93038, 'fr', 'name', 'Laboratoire de psychologie Caen Normandie'),
(114086, 93039, 'en', 'name', 'Mindanao State University - Tawi-Tawi College of Technology and Oceanography'),
(114087, 93040, 'en', 'name', 'Trier University'),
(114088, 93040, 'de', 'name', 'UniversitƤt Trier'),
(114089, 93041, 'es', 'name', 'Fundación para el Fomento de la Innovación Industrial'),
(114090, 93042, 'en', 'name', 'Jozac Publishers'),
(114091, 93043, 'en', 'name', 'Center for Remote Sensing and Integrated Systems'),
(114092, 93044, 'en', 'name', 'Eurographics'),
(114093, 93045, 'de', 'name', 'Deutsches ArchƤologisches Institut, Eurasien-Abteilung'),
(114094, 93045, 'en', 'name', 'German Archaeological Institute, Eurasia Department'),
(114095, 93046, 'en', 'name', 'State Key Laboratory of Pulsed Power Laser Technology'),
(114096, 93046, 'zh', 'name', 'č„‰å†²åŠŸēŽ‡ęæ€å…‰ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114097, 93047, 'en', 'name', 'Science and Decisions Center'),
(114098, 93048, 'en', 'name', 'Volcano Science Center'),
(114099, 93049, 'en', 'name', 'Connecticut State Colleges and Universities'),
(114100, 93050, 'fr', 'name', 'Laboratoire de Glycobiologie et Matrice Extracellulaire VƩgƩtale'),
(114101, 93051, 'en', 'name', 'National University of Defense Technology'),
(114102, 93051, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›å›½é˜²ē§‘å­¦ęŠ€ęœÆå¤§å­¦'),
(114103, 93052, 'es', 'name', 'Fundación Sancho el Sabio Fundazioa'),
(114104, 93052, 'en', 'name', 'Sancho el Sabio Foundation'),
(114105, 93053, 'no_lang_code', 'name', 'TRAPIL (France)'),
(114106, 93054, 'en', 'name', 'Collaborative Innovation Centre for Advanced Ship and Deep-Sea Exploration'),
(114107, 93054, 'zh', 'name', 'é«˜ę–°čˆ¹čˆ¶äøŽę·±ęµ·å¼€å‘č£…å¤‡ååŒåˆ›ę–°äø­åæƒ'),
(114108, 93055, 'es', 'name', 'Instituto Universitario de Ciencias de la Educación'),
(114109, 93056, 'fr', 'name', 'Biologie, GƩnƩtique et ThƩrapies ostƩoArticulaires et Respiratoires'),
(114110, 93057, 'no_lang_code', 'name', 'BSP Business & Law School – Hochschule für Management und Recht'),
(114111, 93058, 'fr', 'name', 'UnitƩ de recherche interdisciplinaire pour la prƩvention et le traitement des cancers'),
(114112, 93059, 'no_lang_code', 'name', 'Canal de Experiencias HidrodinƔmicas de El Pardo (Spain)'),
(114113, 93060, 'en', 'name', 'Namur Institute for Complex Systems'),
(114114, 93061, 'fr', 'name', 'Institut Caennais de Recherche Juridique'),
(114115, 93062, 'en', 'name', 'MSB Medical School Berlin'),
(114116, 93063, 'de', 'name', 'Deutsches Rettungsrobotik-Zentrum'),
(114117, 93064, 'en', 'name', 'Science Analytics and Synthesis'),
(114118, 93065, 'en', 'name', 'MSH Medical School Hamburg – University of Applied Sciences and Medical University'),
(114119, 93066, 'en', 'name', 'Bohdan Khmelnytskyi National Academy of the State Border Guard Service of Ukraine'),
(114120, 93066, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Державної прикорГонної служби України імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(114121, 93067, 'fr', 'name', 'Laboratoire d''Ingénierie des Systèmes'),
(114122, 93068, 'no_lang_code', 'name', 'DNV (United Kingdom)'),
(114123, 93069, 'en', 'name', 'Northern Prairie Wildlife Research Center'),
(114124, 93070, 'en', 'name', 'National Pirogov Memorial Medical University, Vinnytsya'),
(114125, 93070, 'ru', 'name', 'Винницкий Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š.И. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(114126, 93070, 'uk', 'name', 'Š’Ń–Š½Š½ŠøŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ім. М.І. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(114127, 93071, 'en', 'name', 'Tianjin University'),
(114128, 93071, 'zh', 'name', '天擄大学'),
(114129, 93072, 'pl', 'name', 'Instytut Medycyny Doświadczalnej i Klinicznej im. Mirosława Mossakowskiego Polskiej Akademii Nauk'),
(114130, 93072, 'en', 'name', 'Mossakowski Medical Research Institute,  Polish Academy of Sciences'),
(114131, 93073, 'de', 'name', 'Deutsches ArchƤologisches Institut, Abteilung Rom'),
(114132, 93073, 'en', 'name', 'German Archaeological Institute, Rome Department'),
(114133, 93074, 'en', 'name', 'State Key Laboratory of Advanced Optical Communication Systems and Networks'),
(114134, 93074, 'zh', 'name', 'åŒŗåŸŸå…‰ēŗ¤é€šäæ”ē½‘äøŽę–°åž‹å…‰é€šäæ”ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114135, 93075, 'en', 'name', 'North Borneo University College'),
(114136, 93076, 'en', 'name', 'Manchester Community College - New Hampshire'),
(114137, 93077, 'en', 'name', 'Southwest Biological Science Center'),
(114138, 93078, 'fr', 'name', 'Laboratoire d''Ʃconomie Rouen Normandie'),
(114139, 93079, 'es', 'name', 'Instituto Milenio Centro de Regulación del Genoma'),
(114140, 93079, 'en', 'name', 'Millenium Institute Center for Genome Regulation'),
(114141, 93080, 'fr', 'name', 'IdentitƩ et subjectivitƩ'),
(114142, 93081, 'it', 'name', 'Istituto Nazionale di Ricerca Metrologica'),
(114143, 93082, 'no_lang_code', 'name', 'Shandong Sinder Technology Co., Ltd.'),
(114144, 93082, 'zh', 'name', 'å±±äøœäæ”å¾—ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(114145, 93083, 'en', 'name', 'Geology, Geophysics, and Geochemistry Science Center'),
(114146, 93084, 'fr', 'name', 'Equipe de recherche interdisciplinaire sur la Grande Bretagne, l’Irlande et l’AmĆ©rique du Nord'),
(114147, 93085, 'en', 'name', 'International University of Science and Technology in Kuwait'),
(114148, 93086, 'es', 'name', 'Laboratorio Central Oficial de Electrotecnica'),
(114149, 93087, 'en', 'name', 'AIDA Data Hub'),
(114150, 93088, 'en', 'name', 'Independent Authority for Public Revenue'),
(114151, 93089, 'de', 'name', 'Vereinigung Ɩsterreichischer Bibliothekarinnen und Bibliothekare'),
(114152, 93090, 'de', 'name', 'Ithaka Institut ist ein internationales Netzwerk für Kohlenstoff-Strategien und Klimafarming'),
(114153, 93090, 'en', 'name', 'Ithaka Institute for Carbon Strategies'),
(114154, 93091, 'fr', 'name', 'Groupe de Recherche sur le Handicap Ventilatoire et Neurologique'),
(114155, 93092, 'en', 'name', 'St. Petersburg Coastal and Marine Science Center'),
(114156, 93093, 'no_lang_code', 'name', 'Fiberhome Technology Group (China)'),
(114157, 93094, 'fr', 'name', 'Laboratoire de SƩcuritƩ des ProcƩdƩs Chimiques'),
(114158, 93095, 'en', 'name', 'Chinese Academy of Forestry'),
(114159, 93095, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(114160, 93096, 'it', 'name', 'Consorzio Interuniversitario per lo Sviluppo dei Sistemi a Grande Interfase'),
(114161, 93096, 'en', 'name', 'Research Center for Colloids and Nanoscience'),
(114162, 93097, 'fr', 'name', 'CNRT MatƩriaux'),
(114163, 93098, 'ca', 'name', 'Institut de CiĆØncies del Cosmos'),
(114164, 93098, 'en', 'name', 'Institute of Cosmos Sciences'),
(114165, 93099, 'it', 'name', 'Centro di ricerche scientifiche Capodistria'),
(114166, 93099, 'en', 'name', 'Science and Research Centre of Koper'),
(114167, 93099, 'sl', 'name', 'Znanstveno-raziskovalno srediŔče Koper'),
(114168, 93100, 'en', 'name', 'Abu Dhabi Department of Education and Knowledge'),
(114169, 93100, 'ar', 'name', 'ŲÆŲ§Ų¦Ų±Ų© Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… ŁˆŲ§Ł„Ł…Ų¹Ų±ŁŲ©'),
(114170, 93101, 'en', 'name', 'ICMR National Institute for Research in Environmental Health'),
(114171, 93102, 'en', 'name', 'Australian and New Zealand College of Anaesthetists'),
(114172, 93103, 'en', 'name', 'Jizzakh branch of the National University of Uzbekistan named after Mirzo Ulugbek'),
(114173, 93103, 'uz', 'name', 'Mirzo Ulug`bek nomidagi O`zbekiston milliy universiteti Jizzax filiali'),
(114174, 93104, 'no_lang_code', 'name', 'Sinomach (China)'),
(114175, 93104, 'zh', 'name', 'äø­å›½ęœŗę¢°å·„äøšé›†å›¢ęœ‰é™å…¬åø'),
(114176, 93105, 'en', 'name', 'University of Eastern Philippines'),
(114177, 93106, 'es', 'name', 'Espacio ECP - Núcleo de Estudios y Formación en Terapia Centrada en la Persona'),
(114178, 93107, 'en', 'name', 'International Vision University'),
(114179, 93107, 'mk', 'name', 'Uluslarası Vizyon Ünversitesi'),
(114180, 93108, 'it', 'name', 'Conservatorio di Musica Giuseppe Tartini'),
(114181, 93109, 'en', 'name', 'Northern Rocky Mountain Science Center'),
(114182, 93110, 'en', 'name', 'State Key Laboratory of Networking and Switching Technology'),
(114183, 93110, 'zh', 'name', 'ē½‘ē»œäøŽäŗ¤ę¢ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114184, 93111, 'en', 'name', 'Virginia and West Virginia Water Science Center'),
(114185, 93112, 'en', 'name', 'NCCOS Hollings Marine Laboratory'),
(114186, 93113, 'en', 'name', 'State Key Laboratory of Special Fiber Composite Materials'),
(114187, 93113, 'zh', 'name', 'ē‰¹ē§ēŗ¤ē»“å¤åˆęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114188, 93114, 'en', 'name', 'New England Water Science Center'),
(114189, 93115, 'en', 'name', 'Weston Family Foundation'),
(114190, 93116, 'en', 'name', 'National University of Uzbekistan'),
(114191, 93116, 'uz', 'name', 'Oʻzbekiston Milliy Universiteti'),
(114192, 93116, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Узбекистана'),
(114193, 93117, 'fr', 'name', 'Architecture, Territoire, Environnement'),
(114194, 93118, 'en', 'name', 'The Federal Polytechnic Ilaro'),
(114195, 93119, 'en', 'name', 'State Enterprise "Scientific and Research Institute for Metrology of Measurement and Control Systems"'),
(114196, 93120, 'en', 'name', 'Pacific Coastal and Marine Science Center'),
(114197, 93121, 'en', 'name', 'Institute for Research and Innovation in Biomedicine'),
(114198, 93122, 'de', 'name', 'Deutsches ArchƤologisches Institut, Abteilung Athen'),
(114199, 93122, 'en', 'name', 'German Archaeological Institute, Athens Department'),
(114200, 93123, 'en', 'name', 'Almaty Humanitarian-Economic University'),
(114201, 93123, 'ru', 'name', 'Алматинский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114202, 93124, 'en', 'name', 'Transnational Press London'),
(114203, 93125, 'es', 'name', 'Centro Internacional de MƩtodos NumƩricos en Ingenierƭa'),
(114204, 93125, 'en', 'name', 'International Center for Numerical Methods in Engineering'),
(114205, 93126, 'fr', 'name', 'Equipe de recherche sur les littƩratures, les imaginaires et les sociƩtƩs'),
(114206, 93127, 'fr', 'name', 'Groupe de recherche Rouennais en Informatique Fondamentale'),
(114207, 93128, 'en', 'name', 'NSW Department of Planning and Environment'),
(114208, 93129, 'en', 'name', 'New Mexico Water Science Center'),
(114209, 93130, 'no_lang_code', 'name', 'Medidata (United States)'),
(114210, 93131, 'en', 'name', 'South Atlantic Water Science Center'),
(114211, 93132, 'en', 'name', 'International Computer Science Institute'),
(114212, 93133, 'en', 'name', 'Technological Educational Institute of Eastern Macedonia and Thrace'),
(114213, 93133, 'el', 'name', 'Ī‘Ī½ĻŽĻ„Ī±Ļ„Īæ Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ανατολικής ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚ και Ī˜ĻĪ¬ĪŗĪ·Ļ‚'),
(114214, 93134, 'fr', 'name', 'Centre d’Etude et de recherche Editer/InterprĆ©ter'),
(114215, 93135, 'es', 'name', 'Escuela Oficial de Idiomas de Granada'),
(114216, 93136, 'fr', 'name', 'Dynamique du langage in situ'),
(114217, 93137, 'en', 'name', 'Pennsylvania Water Science Center'),
(114218, 93138, 'fr', 'name', 'GƩnomique du cancer et du cerveau'),
(114219, 93139, 'de', 'name', 'Deutsches ArchƤologisches Institut, Abteilung Madrid'),
(114220, 93139, 'en', 'name', 'German Archaeological Institute, Madrid Department'),
(114221, 93140, 'en', 'name', 'Fujian Academy of Environmental Sciences'),
(114222, 93140, 'zh', 'name', 'ē¦å»ŗēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(114223, 93141, 'en', 'name', 'National Geospatial Technical Operations Center'),
(114224, 93142, 'en', 'name', 'Pontifical Bolivarian University'),
(114225, 93142, 'es', 'name', 'Universidad Pontificia Bolivariana'),
(114226, 93143, 'es', 'name', 'Complejo Hospitalario Universitario de Ferrol'),
(114227, 93144, 'ca', 'name', 'Institut de Recerca Sant Joan de DƩu'),
(114228, 93145, 'en', 'name', 'Hypothesis Fund'),
(114229, 93146, 'en', 'name', 'Natural Environment Research Council'),
(114230, 93147, 'en', 'name', 'ANZCA Clinical Trials Network'),
(114231, 93148, 'fr', 'name', 'Dynamique Microbienne associƩe aux Infections Urinaires et Respiratoires'),
(114232, 93149, 'en', 'name', 'State Key Laboratory of High Performance Civil Engineering Materials'),
(114233, 93149, 'zh', 'name', 'é«˜ę€§čƒ½åœŸęœØå·„ēØ‹ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114234, 93150, 'en', 'name', 'Wyoming-Montana Water Science Center'),
(114235, 93151, 'en', 'name', 'Eastern Ecological Science Center'),
(114236, 93152, 'fr', 'name', 'Gouvernement du QuƩbec'),
(114237, 93152, 'en', 'name', 'Government of Quebec'),
(114238, 93153, 'de', 'name', 'Deutsches ArchƤologisches Institut, Abteilung Istanbul'),
(114239, 93153, 'en', 'name', 'German Archaeological Institute, Istanbul Department'),
(114240, 93154, 'fr', 'name', 'Laboratoire d''Informatique, du Traitement de l''Information et des SystĆØmes'),
(114241, 93155, 'fr', 'name', 'Centre Hospitalier Universitaire de Rouen');
INSERT INTO `ror_settings` VALUES
(114242, 93156, 'fr', 'name', 'Physiopathologie, autoimmunitƩ, maladies neuromusculaire et thƩrapie rƩgƩnƩratrice'),
(114243, 93157, 'it', 'name', 'Fondazione ICSC Centro Nazionale di Ricerca in High Performance Computing, Big Data e Quantum Computing'),
(114244, 93158, 'en', 'name', 'Stanford Maternal and Child Health Research Institute'),
(114245, 93159, 'no_lang_code', 'name', 'DNV (Netherlands)'),
(114246, 93160, 'en', 'name', 'Wallenberg Wood Science Center'),
(114247, 93161, 'no_lang_code', 'name', 'Sinoma Science & Technology Co., Ltd. (China)'),
(114248, 93161, 'zh', 'name', 'äø­ęē§‘ęŠ€'),
(114249, 93162, 'no_lang_code', 'name', 'Jiangsu Provincial Academy of Building Research (China)'),
(114250, 93162, 'zh', 'name', 'ę±Ÿč‹ēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(114251, 93163, 'en', 'name', 'Science for Life Laboratory'),
(114252, 93164, 'it', 'name', 'Museo Civico Alpino "Arnaldo Tazzetti"'),
(114253, 93165, 'no_lang_code', 'name', 'Dassault SystĆØmes (France)'),
(114254, 93166, 'en', 'name', 'ASL Environmental Sciences'),
(114255, 93166, 'no_lang_code', 'name', 'ASL Environmental Sciences (Canada)'),
(114256, 93167, 'en', 'name', 'Utah Water Science Center'),
(114257, 93168, 'fr', 'name', 'Nutrition, Inflammation et axe Microbiote-Intestin-Cerveau'),
(114258, 93169, 'en', 'name', 'Plekhanov Russian University of Economics'),
(114259, 93169, 'ru', 'name', 'Российский ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š“. Š’. ŠŸŠ»ŠµŃ…Š°Š½Š¾Š²Š°'),
(114260, 93170, 'fr', 'name', 'Lettres, arts du spectacle, langues romanes'),
(114261, 93171, 'en', 'name', 'State Key Laboratory of Medical Genomics'),
(114262, 93171, 'zh', 'name', 'åŒ»å­¦é—ä¼ å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114263, 93172, 'en', 'name', 'Caribbean-Florida Water Science Center'),
(114264, 93173, 'en', 'name', 'Bath Clinic'),
(114265, 93174, 'en', 'name', 'Azarbaijan Shahid Madani University'),
(114266, 93174, 'fa', 'name', 'دانؓگاه Ų“Ł‡ŪŒŲÆ Ł…ŲÆŁ†ŪŒ Ų¢Ų°Ų±ŲØŲ§ŪŒŲ¬Ų§Ł†'),
(114267, 93175, 'fr', 'name', 'Centre de Recherche Risques et VulnƩrabilitƩs'),
(114268, 93176, 'en', 'name', 'Natural Resources, Energy and Science Authority of Sri Lanka'),
(114269, 93177, 'fr', 'name', 'CEntre de Recherche sur les MUtations du Droit et les mutations sociales'),
(114270, 93178, 'en', 'name', 'National Geological and Geophysical Data Preservation Program'),
(114271, 93179, 'fr', 'name', 'Laboratoire des dynamiques sociales'),
(114272, 93180, 'en', 'name', 'State Key Laboratory of Medical Genomics'),
(114273, 93180, 'zh', 'name', 'åŒ»å­¦åŸŗå› ē»„å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114274, 93181, 'en', 'name', 'NSW Department of Planning, Housing and Infrastructure'),
(114275, 93182, 'no_lang_code', 'name', 'Cell2Cure ApS'),
(114276, 93183, 'fr', 'name', 'UniversitƩ Le Havre Normandie'),
(114277, 93184, 'fr', 'name', 'Communication BactƩrienne et StratƩgie Anti-infectieuses'),
(114278, 93185, 'fr', 'name', 'Groupe de recherche d’histoire'),
(114279, 93186, 'fr', 'name', 'Normandie UniversitƩ'),
(114280, 93187, 'fr', 'name', 'EndothƩlium, valvulopathies et insuffisance cardiaque'),
(114281, 93188, 'en', 'name', 'Arab Academy For E-Business'),
(114282, 93189, 'en', 'name', 'Ohio-Kentucky-Indiana Water Science Center'),
(114283, 93190, 'en', 'name', 'General Chemical State Laboratory'),
(114284, 93190, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĪæĻ Χημείου του ĪšĻĪ¬Ļ„ĪæĻ…Ļ‚'),
(114285, 93191, 'en', 'name', 'Neuroendocrine, Endocrine and Germinal Differentiation Communication'),
(114286, 93192, 'en', 'name', 'Skyfox Publishing Group'),
(114287, 93193, 'fr', 'name', 'Aliments BioprocƩdƩs Toxicologie Environnements'),
(114288, 93194, 'fr', 'name', 'Groupe de recherche IdentitƩs et Cultures'),
(114289, 93195, 'en', 'name', 'National Geospatial Program'),
(114290, 93196, 'es', 'name', 'Universidad de San AndrƩs'),
(114291, 93196, 'en', 'name', 'University of San AndrƩs'),
(114292, 93196, 'fr', 'name', 'UniversitƩ de san andrƩs'),
(114293, 93197, 'en', 'name', 'Northwestern Medicine'),
(114294, 93198, 'en', 'name', 'Bristol General Hospital'),
(114295, 93199, 'en', 'name', 'Leukaemia UK'),
(114296, 93200, 'en', 'name', 'Guilin Tourism University'),
(114297, 93200, 'zh', 'name', 'ę”‚ęž—ę—…ęøøå­¦é™¢'),
(114298, 93201, 'no_lang_code', 'name', 'Beijing Renchuang Technology Group Co., Ltd. (China)'),
(114299, 93201, 'zh', 'name', 'åŒ—äŗ¬ä»åˆ›ē§‘ęŠ€é›†å›¢ęœ‰é™å…¬åø'),
(114300, 93202, 'es', 'name', 'Universidad Estatal de Estudios Pedagógicos'),
(114301, 93203, 'en', 'name', 'University of Oklahoma - Tulsa'),
(114302, 93204, 'en', 'name', 'Family Planning NSW'),
(114303, 93205, 'en', 'name', 'Spectrum Health'),
(114304, 93206, 'en', 'name', 'Network for Oral and Bone Health Research'),
(114305, 93206, 'fr', 'name', 'RƩseau de Recherche en SantƩ Buccodentaire et Osseuse'),
(114306, 93207, 'es', 'name', 'Instituto GeogrƔfico Nacional'),
(114307, 93207, 'en', 'name', 'National Geographic Institute'),
(114308, 93208, 'no_lang_code', 'name', 'Ninja Theory (United Kingdom)'),
(114309, 93209, 'de', 'name', 'Alice-Salomon-Hochschule Berlin'),
(114310, 93210, 'es', 'name', 'Control Adaptativo Predictivo Experto'),
(114311, 93210, 'en', 'name', 'Optimized Adaptive Control Systems'),
(114312, 93211, 'eu', 'name', 'BegoƱako Andra Mari Irakasleen Unibertsitate Eskola'),
(114313, 93211, 'en', 'name', 'BegoƱako Andra Mari Teacher Training University College'),
(114314, 93211, 'es', 'name', 'Escuela Universitaria de Magisterio BegoƱako Andra Mari'),
(114315, 93212, 'en', 'name', 'Asthma UK Centre for Applied Research'),
(114316, 93213, 'de', 'name', 'Universitäts-Kinderklinik Würzburg'),
(114317, 93214, 'en', 'name', 'The Virgo Consortium'),
(114318, 93215, 'no_lang_code', 'name', 'Scapa Group (United Kingdom)'),
(114319, 93216, 'en', 'name', 'Autonomous University of Baja California'),
(114320, 93216, 'es', 'name', 'Universidad Autónoma de Baja California'),
(114321, 93217, 'ca', 'name', 'Fundació Salut i Envelliment UAB'),
(114322, 93218, 'de', 'name', 'Damp Stiftung'),
(114323, 93219, 'en', 'name', 'Institute of Agriculture and Agrotechnologies of Karakalpakstan'),
(114324, 93219, 'tt', 'name', 'Qaraqalpaqstan awıl xojalıǵı hÔm agrotexnologiyalar institutı'),
(114325, 93219, 'uz', 'name', 'Qoraqalpog''iston qishloq xo''jaligi va agrotexnologiyalar instituti'),
(114326, 93219, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø агротехнологий ŠšŠ°Ń€Š°ŠŗŠ°Š»ŠæŠ°ŠŗŃŃ‚ана'),
(114327, 93220, 'es', 'name', 'Fundación Ciudad de la Energía'),
(114328, 93221, 'en', 'name', 'Affiliated Hospital of Changzhi Institute of Traditional Chinese Medicine'),
(114329, 93221, 'zh', 'name', 'é•æę²»åø‚äø­åŒ»ē ”ē©¶ę‰€é™„å±žåŒ»é™¢'),
(114330, 93222, 'en', 'name', 'National Academy of Neuropsychology'),
(114331, 93223, 'en', 'name', 'University Hospitals Bristol NHS Foundation Trust'),
(114332, 93224, 'nl', 'name', 'Vrije Universiteit Brussel'),
(114333, 93225, 'hu', 'name', 'Biofizikai Intézet Szegedi Biológiai Kutatóközpont'),
(114334, 93225, 'en', 'name', 'Institute of Biophysics'),
(114335, 93226, 'en', 'name', 'Bristol Royal Infirmary'),
(114336, 93227, 'en', 'name', 'Jinka University'),
(114337, 93227, 'am', 'name', 'įŒ‚įŠ•įŠ« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(114338, 93228, 'no_lang_code', 'name', 'AT4 wireless (Spain)'),
(114339, 93229, 'en', 'name', 'National Institute for the Humanities and Social Sciences'),
(114340, 93230, 'en', 'name', 'State Key Laboratory of Quantum Optics and Quantum Optics Devices'),
(114341, 93230, 'zh', 'name', 'é‡å­å…‰å­¦äøŽå…‰é‡å­å™Øä»¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114342, 93231, 'no_lang_code', 'name', 'Tinamenor (Spain)'),
(114343, 93232, 'en', 'name', 'Capiz State University'),
(114344, 93233, 'en', 'name', 'Catalan Institute of Climate Sciences'),
(114345, 93233, 'ca', 'name', 'Institut CatalĆ  de CiĆØncies del Clima'),
(114346, 93234, 'en', 'name', 'Laboratory Signaling and Cardiovascular Pathophysiology'),
(114347, 93234, 'fr', 'name', 'Singnalisation et physiopathologie cardiaque'),
(114348, 93235, 'en', 'name', 'Design for All Foundation'),
(114349, 93236, 'en', 'name', 'National Research Institute for Earth Science and Disaster Resilience'),
(114350, 93236, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗé˜²ē½ē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(114351, 93237, 'en', 'name', 'Concordia Theological Seminary'),
(114352, 93238, 'en', 'name', 'Pink Ribbon Foundation'),
(114353, 93239, 'en', 'name', 'Agricultural Experiment Station'),
(114354, 93240, 'pt', 'name', 'IST-ID - Associação do Instituto Superior Técnico para a Investigação e Desenvolvimento'),
(114355, 93241, 'en', 'name', 'Huo Family Foundation'),
(114356, 93242, 'en', 'name', 'Galicia Biological Mission'),
(114357, 93242, 'es', 'name', 'Misión Biológica de Galicia'),
(114358, 93243, 'en', 'name', 'Catalonian Research and Innovation Centre'),
(114359, 93244, 'es', 'name', 'Sistema Nacional de Salud'),
(114360, 93245, 'en', 'name', 'State Key Laboratory of Automotive Simulation and Control'),
(114361, 93245, 'zh', 'name', 'ę±½č½¦ä»æēœŸäøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114362, 93246, 'en', 'name', 'Hobart and William Smith Colleges'),
(114363, 93247, 'de', 'name', 'Leibniz-Institut für Werkstofforientierte Technologien - IWT'),
(114364, 93248, 'it', 'name', 'Fondazione Giannino Bassetti'),
(114365, 93249, 'es', 'name', 'Diputación Foral de Gipuzkoa'),
(114366, 93250, 'en', 'name', 'Institut Agama Islam Tafaqquh Fiddin Dumai'),
(114367, 93251, 'en', 'name', 'Engineering Research Network Wales'),
(114368, 93251, 'cy', 'name', 'Rhwydwaith Ymchwil Peirianneg Cymru'),
(114369, 93252, 'en', 'name', 'Salvadoran Lutheran University'),
(114370, 93252, 'es', 'name', 'Universidad Luterana SalvadoreƱa'),
(114371, 93253, 'no_lang_code', 'name', 'Asahi Kasei (Japan)'),
(114372, 93253, 'ja', 'name', 'ę—­åŒ–ęˆ'),
(114373, 93254, 'no_lang_code', 'name', 'CETEMMSA Technological Centre (Spain)'),
(114374, 93255, 'en', 'name', 'Israel Democracy Institute'),
(114375, 93255, 'he', 'name', 'המכון ×”×™×©×Ø××œ×™ ×œ×“×ž×•×§×Ø×˜×™×”'),
(114376, 93256, 'es', 'name', 'Conservatorio Profesional de MĆŗsica ā€œTeresa Berganzaā€'),
(114377, 93257, 'en', 'name', 'Ontario Veterinary College'),
(114378, 93258, 'en', 'name', 'National Transportation Center'),
(114379, 93259, 'en', 'name', 'Multiple Sclerosis International Federation'),
(114380, 93260, 'en', 'name', 'Beatrice and Samuel A. Seaver Foundation'),
(114381, 93261, 'de', 'name', 'Kommission für Forschungsinformationen in Deutschland'),
(114382, 93262, 'en', 'name', 'Werner Siemens Foundation'),
(114383, 93262, 'de', 'name', 'Werner Siemens-Stiftung'),
(114384, 93263, 'en', 'name', 'Fishing in Ireland'),
(114385, 93264, 'es', 'name', 'Ministerio de Sanidad Servicios Sociales e Igualdad'),
(114386, 93264, 'en', 'name', 'Ministry of Health'),
(114387, 93265, 'en', 'name', 'State University of New York at Oswego'),
(114388, 93265, 'es', 'name', 'Universidad Estatal de Nueva York en Oswego'),
(114389, 93266, 'en', 'name', 'Bristol Royal Hospital for Children'),
(114390, 93267, 'en', 'name', 'Foundation for Strategic Environmental Research'),
(114391, 93268, 'en', 'name', 'Center for Alcohol Studies'),
(114392, 93269, 'ca', 'name', 'Institut de Ciències Fotòniques'),
(114393, 93269, 'en', 'name', 'Institute of Photonic Sciences'),
(114394, 93269, 'es', 'name', 'Instituto de Ciencias Fotónicas'),
(114395, 93270, 'es', 'name', 'Observatorio de Prospectiva Tecnológica Industrial'),
(114396, 93270, 'en', 'name', 'Observatory for Prospective Technological Industry'),
(114397, 93271, 'en', 'name', 'MAX IV Laboratory'),
(114398, 93272, 'fr', 'name', 'CREA Mont-Blanc'),
(114399, 93273, 'en', 'name', 'Augmanity Nano Ltd.'),
(114400, 93273, 'no_lang_code', 'name', 'Augmanity Nano Ltd. (Israel)'),
(114401, 93274, 'en', 'name', 'Pratt Foundation'),
(114402, 93275, 'en', 'name', 'Corewell Health Children''s'),
(114403, 93276, 'pt', 'name', 'FCiências.ID - Associação para a Investigação e Desenvolvimento de Ciências'),
(114404, 93277, 'no_lang_code', 'name', 'Genertec Shenyang Machine Tool Co., Ltd. (China)'),
(114405, 93277, 'zh', 'name', 'é€šē”ØęŠ€ęœÆę²ˆé˜³ęœŗåŗŠč‚”ä»½ęœ‰é™å…¬åøå®˜ē½‘'),
(114406, 93278, 'cy', 'name', 'Canolfan Polisi Cyhoeddus Cymru'),
(114407, 93278, 'en', 'name', 'Wales Centre for Public Policy'),
(114408, 93279, 'en', 'name', 'Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development'),
(114409, 93280, 'en', 'name', 'NIH Common Fund'),
(114410, 93281, 'no_lang_code', 'name', 'Roche (Switzerland)'),
(114411, 93282, 'pt', 'name', 'Iscte-Conhecimento e Inovação é um Centro de Valorização e Transferência de Tecnologias'),
(114412, 93283, 'en', 'name', 'Earlham College'),
(114413, 93284, 'en', 'name', 'Carlo Besta Neurological Institute'),
(114414, 93284, 'it', 'name', 'Fondazione IRCCS Istituto Neurologico Carlo Besta'),
(114415, 93285, 'en', 'name', 'The Affiliated Shunde Hospital of Jinan University'),
(114416, 93285, 'zh', 'name', 'ęšØå—å¤§å­¦é™„å±žé”ŗå¾·åŒ»é™¢'),
(114417, 93286, 'en', 'name', 'Corewell Health Reed City Hospital'),
(114418, 93287, 'no_lang_code', 'name', 'Xiangtan Electric Manufacturing Group (China)'),
(114419, 93287, 'zh', 'name', 'ę¹˜ę½­ē”µęœŗč‚”ä»½ęœ‰é™å…¬åø'),
(114420, 93288, 'en', 'name', 'Particle Physics and Astronomy Research Council'),
(114421, 93289, 'en', 'name', 'University of Insubria'),
(114422, 93289, 'it', 'name', 'UniversitĆ  degli Studi dell''Insubria'),
(114423, 93289, 'fr', 'name', 'UniversitƩ de l''insubrie'),
(114424, 93290, 'no_lang_code', 'name', 'Medtronic (United States)'),
(114425, 93291, 'no_lang_code', 'name', 'Biomendi (Spain)'),
(114426, 93292, 'en', 'name', 'Equinox Corporation'),
(114427, 93292, 'no_lang_code', 'name', 'Equinox Corporation (United States)'),
(114428, 93293, 'es', 'name', 'Instituto Forestal'),
(114429, 93294, 'en', 'name', 'Royal Marsden Hospital'),
(114430, 93295, 'pt', 'name', 'Instituto AgrƔrio de Chimoio'),
(114431, 93296, 'en', 'name', 'Brigham and Women''s Hospital'),
(114432, 93297, 'en', 'name', 'Defence and Security Accelerator'),
(114433, 93298, 'en', 'name', 'Roche Pharma AG'),
(114434, 93298, 'no_lang_code', 'name', 'Roche Pharma AG (Germany)'),
(114435, 93299, 'en', 'name', 'State Key Laboratory of Power System and Generation Equipment'),
(114436, 93299, 'zh', 'name', 'ē”µåŠ›ē³»ē»ŸåŠå¤§åž‹å‘ē”µč®¾å¤‡å®‰å…ØęŽ§åˆ¶å’Œä»æēœŸå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114437, 93300, 'eu', 'name', 'Bilboko metroa'),
(114438, 93300, 'es', 'name', 'Metro Bilbao'),
(114439, 93301, 'en', 'name', 'Medical College of Wisconsin Cancer Center'),
(114440, 93302, 'es', 'name', 'Universidad Nacional de Hurlingham'),
(114441, 93303, 'en', 'name', 'Einaudi Institute for Economics and Finance'),
(114442, 93303, 'it', 'name', 'Istituto Einaudi per l''Economia e la Finanza'),
(114443, 93304, 'fr', 'name', 'Centre intƩgrƩ de santƩ et de services sociaux de la MontƩrƩgie-Est'),
(114444, 93305, 'es', 'name', 'Ministerio de Asuntos Económicos y Transformación Digital'),
(114445, 93305, 'en', 'name', 'Ministry of Economic Affairs and Digital Transformation'),
(114446, 93306, 'en', 'name', 'Stanley Center for Psychiatric Research'),
(114447, 93307, 'es', 'name', 'Barcelona Activa'),
(114448, 93308, 'pt', 'name', 'Plataforma Internacional para Ciência, Tecnologia e Inovação em Saúde'),
(114449, 93309, 'fr', 'name', 'CƩgep de Drummondville'),
(114450, 93310, 'no_lang_code', 'name', 'Cegid (France)'),
(114451, 93311, 'en', 'name', 'United Nations University'),
(114452, 93311, 'ja', 'name', '国際連合大学'),
(114453, 93312, 'en', 'name', 'Teseo'),
(114454, 93312, 'no_lang_code', 'name', 'Teseo (Argentina)'),
(114455, 93313, 'hu', 'name', 'Biokémiai Intézet Szegedi Biológiai Kutatóközpont Magyar TudomÔnyos Akadémia'),
(114456, 93313, 'en', 'name', 'Institute of Biochemistry'),
(114457, 93314, 'en', 'name', 'Special Pathogens Research Network Ltd.'),
(114458, 93315, 'en', 'name', 'Helen DeVos Children''s Hospital'),
(114459, 93316, 'en', 'name', 'Heinrich Heine University Düsseldorf'),
(114460, 93316, 'de', 'name', 'Heinrich-Heine-Universität Düsseldorf'),
(114461, 93317, 'de', 'name', 'Leibniz-Institut für Wissensmedien'),
(114462, 93318, 'en', 'name', 'QPS Taiwan'),
(114463, 93318, 'no_lang_code', 'name', 'QPS Taiwan (Taiwan)'),
(114464, 93319, 'es', 'name', 'Fundación Confemetal'),
(114465, 93320, 'en', 'name', 'Saint Mary''s College'),
(114466, 93321, 'es', 'name', 'Instituto Sindical de Trabajo Ambiente y Salud'),
(114467, 93322, 'en', 'name', 'European Institute of Innovation and Technology'),
(114468, 93322, 'hu', 'name', 'Európai InnovÔciós és Technológiai Intézet'),
(114469, 93323, 'en', 'name', 'Medicover Genetics'),
(114470, 93323, 'no_lang_code', 'name', 'Medicover Genetics (Cyprus)'),
(114471, 93324, 'en', 'name', 'CHU Dinant Godinne UCL Namur'),
(114472, 93325, 'en', 'name', 'Grace College & Seminary'),
(114473, 93326, 'en', 'name', 'Gerald Kerkut Charitable Trust'),
(114474, 93327, 'da', 'name', 'Egmont Fonden'),
(114475, 93327, 'en', 'name', 'Egmont Foundation'),
(114476, 93328, 'en', 'name', 'The Nonwovens Institute'),
(114477, 93329, 'en', 'name', 'Private Academic Library Network of Indiana, Inc. (PALNI)'),
(114478, 93330, 'en', 'name', 'Astronomical Observatory of Mallorca'),
(114479, 93331, 'en', 'name', 'Australian National Algae Culture Collection'),
(114480, 93332, 'no_lang_code', 'name', 'Geocisa (Spain)'),
(114481, 93333, 'en', 'name', 'Delaware INBRE'),
(114482, 93334, 'en', 'name', 'The Fourth Affiliated Hospital of Soochow University (Suzhou Dushu Lake Hospital)'),
(114483, 93334, 'zh', 'name', 'č‹å·žå¤§å­¦é™„å±žē¬¬å››åŒ»é™¢ (č‹å·žåø‚ē‹¬å¢…ę¹–åŒ»é™¢)'),
(114484, 93335, 'fr', 'name', 'HƓpital d''Youville de Sherbrooke'),
(114485, 93336, 'fr', 'name', 'Centre intĆ©grĆ© universitaire de santĆ© et de services sociaux du Nord-de-lā€™ĆŽle-de-MontrĆ©al'),
(114486, 93337, 'en', 'name', 'Birla Institute of Technology and Science, Pilani'),
(114487, 93337, 'hi', 'name', 'बिरला ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(114488, 93337, 'mr', 'name', 'ą¤¬ą¤æą¤°ą„ą¤²ą¤¾ ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€ अँऔ ą¤øą¤¾ą¤Æą¤Øą„ą¤ø'),
(114489, 93337, 'pa', 'name', 'ਬਿਰਲਾ ąØ¤ąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ਅਤੇ ਵਿਗਿਆਨ ਸੰਸ਄ਾ'),
(114490, 93337, 'ta', 'name', 'ą®Ŗą®æą®°ąÆą®²ą®¾ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®®ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(114491, 93337, 'te', 'name', 'ą°¬ą°æą°Ÿą±ą°øą± పిలానీ'),
(114492, 93337, 'ml', 'name', 'ą“¬ą“æąµ¼ą“³ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“†ą“Øąµą“±ąµ ą“øą“Æąµ»ą“øąµ'),
(114493, 93338, 'en', 'name', 'Nuclear Science and Technology Research Institute'),
(114494, 93339, 'es', 'name', 'Asociación Cluster de Telecomunicaciones'),
(114495, 93339, 'en', 'name', 'Association of Electronic and Information Technologies'),
(114496, 93340, 'no_lang_code', 'name', 'SwissLumix (Switzerland)'),
(114497, 93341, 'en', 'name', 'Strategic Environmental Research and Development Program'),
(114498, 93342, 'no_lang_code', 'name', 'Luto Research (United Kingdom)'),
(114499, 93343, 'fr', 'name', 'Institut de tourisme et d''hƓtellerie du QuƩbec'),
(114500, 93344, 'ca', 'name', 'Institut Universitari D''Estudis Europeus'),
(114501, 93345, 'en', 'name', 'Aga Khan University'),
(114502, 93345, 'ur', 'name', 'Ų¢ŲŗŲ§ خان ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(114503, 93346, 'en', 'name', 'Northwestern University in Qatar'),
(114504, 93346, 'es', 'name', 'Universidad del noroeste'),
(114505, 93347, 'no_lang_code', 'name', 'Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China)'),
(114506, 93347, 'zh', 'name', 'ę²ˆé˜³äø­åŒ–å†œčÆåŒ–å·„ē ”å‘ęœ‰é™å…¬åø'),
(114507, 93348, 'en', 'name', 'Dennis Osadebay University'),
(114508, 93349, 'es', 'name', 'Hospital Virgen del Valle'),
(114509, 93350, 'en', 'name', 'Barcelonaβeta Brain Research Center'),
(114510, 93351, 'en', 'name', 'Administration for Children and Families'),
(114511, 93352, 'en', 'name', 'New Zealand Agricultural Greenhouse Gas Research Centre'),
(114512, 93353, 'en', 'name', 'Gilchrist Educational Trust'),
(114513, 93354, 'fr', 'name', 'Centre intƩgrƩ de santƩ et de services sociaux de la CƓte-Nord'),
(114514, 93355, 'es', 'name', 'Hospital Universitario Nuestra SeƱora de Candelaria'),
(114515, 93355, 'en', 'name', 'University Hospital of the Nuestra SeƱora de Candelaria'),
(114516, 93356, 'es', 'name', 'Agencia Europea para la Seguridad y la Salud en el Trabajo'),
(114517, 93356, 'en', 'name', 'European Agency for Safety and Health at Work'),
(114518, 93357, 'es', 'name', 'Ministerio de Agricultura'),
(114519, 93357, 'en', 'name', 'Ministry of Agriculture'),
(114520, 93358, 'de', 'name', 'Max Buchner Forschungsstiftung'),
(114521, 93358, 'en', 'name', 'Max Buchner Research Foundation'),
(114522, 93359, 'no_lang_code', 'name', 'Barcelona Digital Centro Tecnológico'),
(114523, 93360, 'es', 'name', 'Fundación Pronokal'),
(114524, 93361, 'en', 'name', 'South Bristol Community Hospital'),
(114525, 93362, 'no_lang_code', 'name', 'Yankuang Energy Group Company Limited (China)'),
(114526, 93362, 'zh', 'name', 'å…–ēŸæčƒ½ęŗé›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(114527, 93363, 'es', 'name', 'Asociación Española de Linfedema'),
(114528, 93364, 'no_lang_code', 'name', 'Geolica Innovations (Spain)'),
(114529, 93365, 'es', 'name', 'Conservatori Superior de Música de Castelló'),
(114530, 93366, 'en', 'name', 'Ch. Pervaiz Elahi Institute of Cardiology, Multan'),
(114531, 93367, 'en', 'name', 'Hintze Family Charitable Foundation'),
(114532, 93368, 'en', 'name', 'Japan Foundation Endowment Committee'),
(114533, 93369, 'de', 'name', 'Forum transregionale Studien e.V.'),
(114534, 93370, 'en', 'name', 'Dutch Arthritis Foundation'),
(114535, 93370, 'nl', 'name', 'ReumaNederland'),
(114536, 93371, 'en', 'name', 'Waltham Centre for Pet Nutrition'),
(114537, 93372, 'es', 'name', 'Universidad de Saint Francis'),
(114538, 93372, 'en', 'name', 'University of Saint Francis'),
(114539, 93373, 'en', 'name', 'Michigan Center for Urban African American Aging Research'),
(114540, 93374, 'id', 'name', 'Direktorat Riset Dan Pengabdian Kepada Masyarakat'),
(114541, 93375, 'en', 'name', 'Corewell Health Butterworth Hospital'),
(114542, 93376, 'en', 'name', 'Charmo University'),
(114543, 93377, 'en', 'name', 'King Christian the Tenth Foundation'),
(114544, 93377, 'da', 'name', 'Kong Christian den Tiendes Fond'),
(114545, 93378, 'en', 'name', 'State Key Laboratory of Aerodynamics'),
(114546, 93378, 'zh', 'name', 'ē©ŗå¤©é£žč”Œē©ŗę°”åŠØåŠ›ē§‘å­¦äøŽęŠ€ęœÆå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(114547, 93379, 'en', 'name', 'Thonburi University'),
(114548, 93380, 'it', 'name', 'Regione Umbria'),
(114549, 93380, 'en', 'name', 'Umbria Region'),
(114550, 93381, 'ca', 'name', 'Ecoinstitut'),
(114551, 93382, 'en', 'name', 'Scottish Home and Health Department'),
(114552, 93383, 'no_lang_code', 'name', 'Bloomsbury Publishing (United Kingdom)'),
(114553, 93384, 'ca', 'name', 'Corporació Sanitària Parc Taulí'),
(114554, 93384, 'es', 'name', 'Corporación Sanitaria y Universitaria Parc Taulí'),
(114555, 93385, 'fr', 'name', 'Ɖcole nationale de police du QuĆ©bec'),
(114556, 93386, 'en', 'name', 'Kids Brain Health Network'),
(114557, 93386, 'fr', 'name', 'RƩseau pour la SantƩ du Cerveau des Enfants'),
(114558, 93387, 'no_lang_code', 'name', 'Acerinox (Spain)'),
(114559, 93388, 'en', 'name', 'UCL Hospitals Charitable Foundation'),
(114560, 93389, 'es', 'name', 'Fundación TyPA'),
(114561, 93389, 'en', 'name', 'TyPA Foundation'),
(114562, 93390, 'en', 'name', 'European Orthodontic Society'),
(114563, 93390, 'de', 'name', 'Europäische Gesellschaft für Orthodontie'),
(114564, 93391, 'fr', 'name', 'Institut de Recherches MĆ©dicales et d’Etudes des Plantes MĆ©dicinales'),
(114565, 93391, 'en', 'name', 'Institute of Research Medical and Medicinal Plants Studies'),
(114566, 93392, 'no_lang_code', 'name', 'Grundfos (Denmark)'),
(114567, 93392, 'da', 'name', 'ˈkʁɔnĖ€fɒs'),
(114568, 93393, 'pt', 'name', 'NOVA.id.FCT - Associação para a Inovação e Desenvolvimento da FCT'),
(114569, 93394, 'it', 'name', 'FacoltĆ  di Teologia di Lugano'),
(114570, 93395, 'en', 'name', 'Ministry of Defence'),
(114571, 93396, 'de', 'name', 'Landesbibliothek Oldenburg'),
(114572, 93397, 'fr', 'name', 'Cliniques Universitaires Saint-Luc'),
(114573, 93397, 'nl', 'name', 'Universitair ziekenhuis Sint-Lambrechts-Woluwe'),
(114574, 93398, 'es', 'name', 'Centro Multidisciplinar de TecnologĆ­as para la Industria'),
(114575, 93398, 'en', 'name', 'Cetena Foundation“s Multidisciplinary Innovation and Technology Centre of Navarre'),
(114576, 93399, 'pt', 'name', 'Instituto de Investigação AgrÔria de Moçambique'),
(114577, 93400, 'en', 'name', 'Association for Research and Industrial Development of Natural Resources'),
(114578, 93401, 'de', 'name', 'Deutsches Diabetes-Zentrum e.V.'),
(114579, 93402, 'en', 'name', 'Federal University for Latin American Integration'),
(114580, 93402, 'pt', 'name', 'Universidade Federal da Integração Latino-Americana'),
(114581, 93403, 'en', 'name', 'Southwest Research & Design Institute of the Chemical Industry'),
(114582, 93403, 'zh', 'name', 'č„æå—åŒ–å·„ē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åø'),
(114583, 93404, 'en', 'name', 'St. Lawrence University'),
(114584, 93404, 'es', 'name', 'Universidad de St. Lawrence'),
(114585, 93404, 'fr', 'name', 'UniversitƩ de st. lawrence'),
(114586, 93405, 'es', 'name', 'Fundación para la innovación tecnológica'),
(114587, 93406, 'en', 'name', 'Washington Grain Commission'),
(114588, 93407, 'no_lang_code', 'name', 'PQShield (United Kingdom)'),
(114589, 93408, 'en', 'name', 'Robert H. Lurie Comprehensive Cancer Center of Northwestern University'),
(114590, 93409, 'en', 'name', 'Institute of Plant Biology'),
(114591, 93409, 'hu', 'name', 'Növénybiológiai Intézet Szegedi Biológiai Kutatóközpont Magyar TudomÔnyos Akadémia'),
(114592, 93410, 'no_lang_code', 'name', 'Yingli Energy Technology Group (China)'),
(114593, 93410, 'zh', 'name', 'č‹±åˆ©čƒ½ęŗē§‘ęŠ€é›†å›¢'),
(114594, 93411, 'en', 'name', 'Ministry of Education'),
(114595, 93411, 'fr', 'name', 'MinistĆØre de l''Ɖducation'),
(114596, 93412, 'en', 'name', 'Indonesian Journal Publisher'),
(114597, 93412, 'no_lang_code', 'name', 'Indonesian Journal Publisher (Indonesia)'),
(114598, 93412, 'id', 'name', 'Penerbit Jurnal Indonesia'),
(114599, 93413, 'no_lang_code', 'name', 'Going Green (Spain)'),
(114600, 93414, 'en', 'name', 'QuantIC'),
(114601, 93415, 'no_lang_code', 'name', 'Almaarefa University'),
(114602, 93415, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المعرفة'),
(114603, 93416, 'pt', 'name', 'ACATE - Associação Catarinense de Tecnologia'),
(114604, 93417, 'en', 'name', 'Queen Elizabeth Hospital'),
(114605, 93418, 'en', 'name', 'United Nations Development Programme'),
(114606, 93419, 'en', 'name', 'Leibniz Institute for Immunotherapy'),
(114607, 93419, 'de', 'name', 'Leibniz-Institut für Immuntherapie'),
(114608, 93420, 'en', 'name', 'Agricultural Research Institute of Ontario'),
(114609, 93420, 'fr', 'name', 'Institut de Recherche Agricole de l''Ontario'),
(114610, 93421, 'en', 'name', 'Pacific Earthquake Engineering Research Center'),
(114611, 93422, 'en', 'name', 'European Association for Education Law and Policy'),
(114612, 93423, 'id', 'name', 'Universitas Pelita Bangsa'),
(114613, 93424, 'en', 'name', 'Clarkson University'),
(114614, 93425, 'fr', 'name', 'CƩgep Saint-Jean-sur-Richelieu'),
(114615, 93426, 'no_lang_code', 'name', 'Lipotec (Spain)'),
(114616, 93427, 'pt', 'name', 'Faculdade de Odontologia do Recife'),
(114617, 93428, 'fr', 'name', 'HƓpital Marie Lannelongue'),
(114618, 93429, 'en', 'name', 'Elite School of Optometry'),
(114619, 93430, 'es', 'name', 'Sociedad EspaƱola de Bioquƭmica y Biologƭa Molecular'),
(114620, 93430, 'en', 'name', 'Spanish Society of Biochemistry and Molecular Biology'),
(114621, 93431, 'no_lang_code', 'name', 'Panskura Banamali College'),
(114622, 93432, 'id', 'name', 'Universitas Islam Internasional Indonesia'),
(114623, 93433, 'en', 'name', 'Osher Center for Integrative Medicine'),
(114624, 93434, 'no_lang_code', 'name', 'Genetrix (Spain)'),
(114625, 93435, 'en', 'name', 'Beaumont Hospital, Dearborn'),
(114626, 93436, 'en', 'name', 'Institute for South-East European Studies'),
(114627, 93436, 'ro', 'name', 'Institutul de Studii Sud-Est Europene'),
(114628, 93437, 'es', 'name', 'Universidad Internacional Valenciana'),
(114629, 93437, 'en', 'name', 'Valencian International University'),
(114630, 93438, 'fr', 'name', 'CƩgep de Granby'),
(114631, 93439, 'de', 'name', 'Helmholtz-Zentrum Dresden-Rossendorf'),
(114632, 93440, 'en', 'name', 'Mount Kigali University'),
(114633, 93441, 'en', 'name', 'Public Policy Institute for Wales'),
(114634, 93442, 'en', 'name', 'State Grid Shanxi Electric Power Company Electric Power Research Institute'),
(114635, 93442, 'zh', 'name', 'å›½ē½‘å±±č„æēœē”µåŠ›å…¬åøē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢'),
(114636, 93443, 'en', 'name', 'Department of Water'),
(114637, 93444, 'de', 'name', 'Ministerium für Umwelt, Landwirtschaft und Energie des Landes Sachsen-Anhalt'),
(114638, 93445, 'en', 'name', 'Shanghai Institute of Pollution Control and Ecological Security'),
(114639, 93445, 'zh', 'name', 'äøŠęµ·ę±”ęŸ“ęŽ§åˆ¶äøŽē”Ÿę€å®‰å…Øē ”ē©¶é™¢'),
(114640, 93446, 'no_lang_code', 'name', 'Windey Energy Technology Group Co., Ltd. (China)'),
(114641, 93446, 'zh', 'name', 'ęµ™ę±Ÿčæč¾¾é£Žē”µč‚”ä»½ęœ‰é™å…¬åø'),
(114642, 93447, 'en', 'name', 'Special Programme for Research and Training in Tropical Diseases'),
(114643, 93448, 'en', 'name', 'International College of Business and Technology'),
(114644, 93449, 'en', 'name', 'Centre for Climate Change Economics and Policy'),
(114645, 93450, 'en', 'name', 'Queen Elizabeth Diamond Jubilee Trust'),
(114646, 93451, 'en', 'name', 'Beaumont Hospital, Royal Oak'),
(114647, 93452, 'en', 'name', 'dpr-barcelona'),
(114648, 93453, 'en', 'name', 'King Fahad National Library'),
(114649, 93453, 'ar', 'name', 'Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(114650, 93454, 'en', 'name', 'Butler University'),
(114651, 93454, 'es', 'name', 'Universidad Butler'),
(114652, 93455, 'en', 'name', 'Simons Initiative for the Developing Brain'),
(114653, 93456, 'en', 'name', 'University Of Bristol Dental Hospital'),
(114654, 93457, 'en', 'name', 'National Research Council of the Philippines'),
(114655, 93458, 'en', 'name', 'Office of Planning, Research and Evaluation'),
(114656, 93459, 'ca', 'name', 'Centre de Recerca en Sanitat Animal'),
(114657, 93460, 'en', 'name', 'Cornell University Agricultural Experiment Station'),
(114658, 93461, 'en', 'name', 'Andijan State Pedagogical Institute'),
(114659, 93461, 'no_lang_code', 'name', 'Andijon Davlat Pedagogika instituti'),
(114660, 93462, 'de', 'name', 'Institut für Qualität und Wirtschaftlichkeit im Gesundheitswesen'),
(114661, 93462, 'en', 'name', 'Institute for Quality and Efficiency in Health Care'),
(114662, 93463, 'no_lang_code', 'name', 'China Huaneng Group Co., Ltd. (China)'),
(114663, 93463, 'zh', 'name', 'äø­å›½åŽčƒ½é›†å›¢'),
(114664, 93464, 'pt', 'name', 'Instituto PortuguĆŖs de Oncologia de Coimbra Francisco Gentil'),
(114665, 93465, 'en', 'name', 'Ministry of Education and Child Care'),
(114666, 93466, 'en', 'name', 'Centre on Innovation and Energy Demand'),
(114667, 93467, 'en', 'name', 'Vodafone Foundation'),
(114668, 93468, 'en', 'name', 'SUNY Brockport'),
(114669, 93469, 'en', 'name', 'Center for Excellence in Molecular Cell Science'),
(114670, 93469, 'zh', 'name', 'äø­ē§‘é™¢åˆ†å­ē»†čƒžå“č¶Šåˆ›ę–°äø­åæƒ'),
(114671, 93470, 'en', 'name', 'EIT Food'),
(114672, 93471, 'en', 'name', 'Suffolk University Madrid'),
(114673, 93471, 'es', 'name', 'Universidad Suffolk Madrid'),
(114674, 93472, 'en', 'name', 'Foundation for International Relations and Foreign Dialogue'),
(114675, 93472, 'es', 'name', 'Fundación para las Relaciones Internacionales y el DiÔlogo Exterior'),
(114676, 93473, 'en', 'name', 'Gulf College'),
(114677, 93473, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų®Ł„ŁŠŲ¬'),
(114678, 93474, 'hu', 'name', 'Genetikai Intézet Szegedi Biológiai Kutatóközpont Magyar TudomÔnyos Akadémia'),
(114679, 93474, 'en', 'name', 'Institute of Genetics'),
(114680, 93475, 'en', 'name', 'Fundacion Araucaria Foundation'),
(114681, 93476, 'fr', 'name', 'CƩgep de Saint-FƩlicien'),
(114682, 93477, 'en', 'name', 'Oakland City University'),
(114683, 93478, 'de', 'name', 'Deutsche Institut für angewandte Pflegeforschung e.V.'),
(114684, 93479, 'es', 'name', 'Fundación Eugenio Rodríguez Pascual'),
(114685, 93480, 'en', 'name', 'Johnson Cancer Research Center'),
(114686, 93481, 'en', 'name', 'Christian Theological Seminary'),
(114687, 93482, 'no_lang_code', 'name', 'Nvidia (United States)'),
(114688, 93483, 'es', 'name', 'Ayuntamiento de Valladolid'),
(114689, 93484, 'no_lang_code', 'name', 'Climate Resource (Australia)'),
(114690, 93485, 'ca', 'name', 'Biblioteca de Catalunya'),
(114691, 93485, 'gl', 'name', 'Biblioteca de Catalunya'),
(114692, 93485, 'es', 'name', 'Biblioteca de CataluƱa'),
(114693, 93485, 'oc', 'name', 'BibliotĆØca de Catalonha'),
(114694, 93485, 'eu', 'name', 'Kataluniako Liburutegia'),
(114695, 93485, 'en', 'name', 'National Library of Catalonia'),
(114696, 93486, 'en', 'name', 'Division of Program Coordination Planning and Strategic Initiatives'),
(114697, 93487, 'es', 'name', 'Servicios TƩcnicos y Suministros'),
(114698, 93487, 'no_lang_code', 'name', 'Technical Services and Supplies (Spain)'),
(114699, 93488, 'en', 'name', 'Alexandria Archive Institute'),
(114700, 93489, 'en', 'name', 'Bristol Eye Hospital'),
(114701, 93490, 'no_lang_code', 'name', 'Meta4 (Spain)'),
(114702, 93491, 'no_lang_code', 'name', 'Bloomsbury (United States)'),
(114703, 93492, 'en', 'name', 'London School of Economics and Political Science'),
(114704, 93492, 'cy', 'name', 'Ysgol Economeg a Gwyddor Gwleidyddiaeth Llundain'),
(114705, 93493, 'en', 'name', 'University of Mazandaran'),
(114706, 93493, 'fa', 'name', 'دانؓگاه مازندران'),
(114707, 93494, 'en', 'name', 'Beaumont Health'),
(114708, 93495, 'no_lang_code', 'name', 'State Grid Shanxi Electric Power Company (China)'),
(114709, 93495, 'zh', 'name', 'å›½ē½‘å±±č„æēœē”µåŠ›å…¬åø'),
(114710, 93496, 'en', 'name', 'Vaccine and Gene Therapy Institute'),
(114711, 93497, 'es', 'name', 'Ministerio para la Transformación Digital y de la Función Pública'),
(114712, 93498, 'de', 'name', 'Ministerium für Wissenschaft, Energie, Klimaschutz und Umwelt des Landes Sachsen-Anhalt'),
(114713, 93499, 'en', 'name', 'Corewell Health'),
(114714, 93500, 'en', 'name', 'Royal Marsden Cancer Charity'),
(114715, 93501, 'en', 'name', 'Trond Mohn Foundation'),
(114716, 93501, 'no', 'name', 'Trond Mohn stiftelse'),
(114717, 93502, 'no_lang_code', 'name', 'Ningxia Forestry Research Institute Co., Ltd. (China)'),
(114718, 93502, 'zh', 'name', 'å®å¤ęž—äøšē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(114719, 93503, 'fr', 'name', 'Globus et Locus'),
(114720, 93504, 'en', 'name', 'Trine University'),
(114721, 93505, 'en', 'name', 'Steven & Alexandra Cohen Foundation'),
(114722, 93506, 'en', 'name', 'BMA Foundation for Medical Research'),
(114723, 93507, 'no_lang_code', 'name', 'Ramem (Spain)'),
(114724, 93508, 'en', 'name', 'Harbin Institute of Large Electric Machinery'),
(114725, 93508, 'zh', 'name', 'å“ˆå°”ę»Øå¤§ē”µęœŗē ”ē©¶ę‰€'),
(114726, 93509, 'es', 'name', 'Instituto de Investigaciones de la AmazonĆ­a Peruana'),
(114727, 93510, 'es', 'name', 'Wikimedia EspaƱa'),
(114728, 93511, 'en', 'name', 'Weston General Hospital'),
(114729, 93512, 'es', 'name', 'Servicio de Salud de Castilla La Mancha'),
(114730, 93513, 'es', 'name', 'Asociación Española de Industriales de PlÔsticos'),
(114731, 93514, 'en', 'name', 'Institute for Research in Biomedicine'),
(114732, 93514, 'es', 'name', 'Istituto di Ricerca in Biomedicina'),
(114733, 93515, 'en', 'name', 'Anatomical Society'),
(114734, 93516, 'en', 'name', 'Central Adelaide Local Health Network'),
(114735, 93517, 'en', 'name', 'Aage and Johanne Louis-Hansen''s Foundation'),
(114736, 93517, 'da', 'name', 'Aage og Johanne Louis-Hansens Fond'),
(114737, 93518, 'en', 'name', 'Lund Trust'),
(114738, 93519, 'fr', 'name', 'Centre National Universitaire de Documentation Scientifique et Technique'),
(114739, 93519, 'en', 'name', 'University National Center of Scientific and Technical Documentation'),
(114740, 93519, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł„Ł„ŲŖŁˆŲ«ŁŠŁ‚ Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠ'),
(114741, 93520, 'en', 'name', 'SSN Educational and Charitable Trust'),
(114742, 93521, 'es', 'name', 'Sociedad Estatal de Participaciones Industriales'),
(114743, 93522, 'fr', 'name', 'Centre intĆ©grĆ© de santĆ© et des services sociaux de l’Outaouais'),
(114744, 93523, 'en', 'name', 'Saint Mary-of-the-Woods College'),
(114745, 93524, 'no_lang_code', 'name', 'Ecosystem (Spain)'),
(114746, 93525, 'en', 'name', 'National Research Foundation of Ukraine'),
(114747, 93525, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ фонГ Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ України'),
(114748, 93526, 'en', 'name', 'Office of Electricity'),
(114749, 93527, 'pl', 'name', 'Fundacja Adeptów i Miłośników Ekonomii'),
(114750, 93528, 'en', 'name', 'International Progressive MS Alliance'),
(114751, 93529, 'es', 'name', 'Instituto EspaƱol de Oceanografƭa'),
(114752, 93530, 'de', 'name', 'Stiftung CharitƩ'),
(114753, 93531, 'en', 'name', 'Corewell Health William Beaumont University Hospital'),
(114754, 93532, 'no_lang_code', 'name', 'Emerald Group Publishing (United Kingdom)'),
(114755, 93533, 'en', 'name', 'Neurotech, LLC'),
(114756, 93533, 'no_lang_code', 'name', 'Neurotech, LLC (United States)'),
(114757, 93534, 'en', 'name', 'Life Sciences Research Network Wales'),
(114758, 93534, 'cy', 'name', 'Rhwydwaith Gwyddorau Bywyd Cymru'),
(114759, 93535, 'en', 'name', 'Center for Innovative Medicine'),
(114760, 93536, 'en', 'name', 'United Kingdom Clinical Research Collaboration'),
(114761, 93537, 'en', 'name', 'Iranian Research Institute for Information Science and Technology'),
(114762, 93537, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų¹Ł„ŁˆŁ… و ŁŁ†Ų§ŁˆŲ±ŪŒ اطلاعات Ų§ŪŒŲ±Ų§Ł†'),
(114763, 93538, 'es', 'name', 'AIDIMA - Instituto Tecnológico del Mueble'),
(114764, 93538, 'en', 'name', 'AIDIMA Technology Institute'),
(114765, 93539, 'en', 'name', 'New Mexico State University Alamogordo'),
(114766, 93540, 'en', 'name', 'Leverhulme Centre for Integrative Research on Agriculture and Health'),
(114767, 93541, 'en', 'name', 'Government of Pakistan'),
(114768, 93541, 'ur', 'name', 'Ų­Ś©ŁˆŁ…ŲŖŁ پاکستان'),
(114769, 93542, 'en', 'name', 'Flemish Supercomputer Centre'),
(114770, 93542, 'nl', 'name', 'Vlaams Supercomputer Centrum'),
(114771, 93543, 'en', 'name', 'State University of New York at Potsdam'),
(114772, 93544, 'en', 'name', 'Gujarat Council on Science and Technology'),
(114773, 93545, 'en', 'name', 'Medtronic Foundation'),
(114774, 93546, 'no_lang_code', 'name', 'Scapa Healthcare (United Kingdom)'),
(114775, 93547, 'es', 'name', 'Autobuses Urbanos Elche'),
(114776, 93548, 'en', 'name', 'Eva Crane Trust'),
(114777, 93549, 'en', 'name', 'Beaumont Hospital, Troy'),
(114778, 93550, 'fr', 'name', 'Centre quƩbƩcois sur les matƩriaux fonctionnels'),
(114779, 93550, 'en', 'name', 'Quebec Centre for Advanced Materials'),
(114780, 93551, 'en', 'name', 'Humanities in the European Research Area'),
(114781, 93552, 'en', 'name', 'Barcelona Media'),
(114782, 93553, 'nl', 'name', 'Amalia Kinderziekenhuis'),
(114783, 93554, 'en', 'name', 'Suzhou Yongding Hospital'),
(114784, 93554, 'zh', 'name', 'ęµ·å‰äŗšč‹å·žę°øé¼ŽåŒ»é™¢'),
(114785, 93555, 'en', 'name', 'ARCHER Service'),
(114786, 93556, 'en', 'name', 'Northwest A&F University'),
(114787, 93556, 'zh', 'name', 'č„æåŒ—å†œęž—ē§‘ęŠ€å¤§å­¦'),
(114788, 93557, 'en', 'name', 'Packard Center'),
(114789, 93558, 'en', 'name', 'Cancer Imaging Centre'),
(114790, 93559, 'no_lang_code', 'name', 'IberEspacio (Spain)'),
(114791, 93560, 'en', 'name', 'Region of Liguria'),
(114792, 93560, 'it', 'name', 'Regione Liguria'),
(114793, 93561, 'fr', 'name', 'Fondation Saint-Luc'),
(114794, 93561, 'en', 'name', 'Saint-Luc Foundation'),
(114795, 93562, 'en', 'name', 'MND Scotland'),
(114796, 93563, 'en', 'name', 'Emory National Primate Research Center'),
(114797, 93564, 'es', 'name', 'Fundación ONCE'),
(114798, 93564, 'en', 'name', 'Fundación ONCE for Cooperation and Social Inclusion of Persons with Disabilities'),
(114799, 93565, 'en', 'name', 'NCCR SwissMAP'),
(114800, 93566, 'no_lang_code', 'name', 'Inabensa (Spain)'),
(114801, 93567, 'en', 'name', 'China Electric Power Research Institute'),
(114802, 93567, 'zh', 'name', 'äø­å›½ē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(114803, 93568, 'en', 'name', 'National Centre for Energy Systems Integration'),
(114804, 93569, 'no_lang_code', 'name', 'Astellas Pharma (Canada)'),
(114805, 93569, 'en', 'name', 'Astellas Pharmaceuticals'),
(114806, 93570, 'en', 'name', 'SINOPEC Research Institute of Safety Engineering Co., Ltd.'),
(114807, 93570, 'zh', 'name', 'äø­ēŸ³åŒ–å®‰å…Øå·„ēØ‹ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(114808, 93571, 'it', 'name', 'C.R.E.A.T.E. Consorzio Di Ricerca Per L''Energia E Le Applicazioni Technologiche Dell''Elettromagnetismo'),
(114809, 93572, 'en', 'name', 'J.M. Kaplan Fund'),
(114810, 93573, 'en', 'name', 'Ruhr Museum'),
(114811, 93574, 'de', 'name', 'Bundesministerium für Klimaschutz, Umwelt, Energie, Mobilität, Innovation und Technologie'),
(114812, 93574, 'en', 'name', 'Ministry of Climate Action, Environment, Energy, Mobility, Innovation and Technology'),
(114813, 93575, 'es', 'name', 'Hospital Virgen de la Salud'),
(114814, 93576, 'en', 'name', 'LUPUS UK'),
(114815, 93577, 'en', 'name', 'Stanford SystemX Alliance'),
(114816, 93578, 'en', 'name', 'Comprehensive Cancer Center Mainfranken'),
(114817, 93579, 'en', 'name', 'United Nations University Institute on Globalization, Culture and Mobility'),
(114818, 93580, 'en', 'name', 'Communicating Diet and Activity Research'),
(114819, 93581, 'en', 'name', 'American Genetic Association'),
(114820, 93582, 'en', 'name', 'Ontario Agri-Food Innovation Alliance'),
(114821, 93583, 'fr', 'name', 'Institut de recherche et d’informations socioĆ©conomiques'),
(114822, 93584, 'no_lang_code', 'name', 'NVIDIA (Italy)'),
(114823, 93585, 'en', 'name', 'Dorothea Olivia, Karl Walter and Jarl Walter PerklƩns Memorial Foundation'),
(114824, 93585, 'sv', 'name', 'Stiftelsen Dorothea Olivia, Karl Walter och Jarl Walter PerklƩns Minne'),
(114825, 93586, 'en', 'name', 'Vitebsk State Academy of Veterinary Medicine'),
(114826, 93586, 'be', 'name', 'Š’Ń–Ń†ŠµŠ±ŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š²ŠµŃ‚ŃŃ€Ń‹Š½Š°Ń€Š½Š°Š¹ меГыцыны'),
(114827, 93587, 'en', 'name', 'MRC Centre for Environment and Health'),
(114828, 93588, 'en', 'name', 'The Filipino Nurses Association in the Nordic Region'),
(114829, 93589, 'es', 'name', 'Provita'),
(114830, 93590, 'sq', 'name', 'Instituti i Historisƫ "Ali Hadri" Prishtinƫ'),
(114831, 93591, 'en', 'name', 'NestlƩ Health Science'),
(114832, 93591, 'no_lang_code', 'name', 'NestlƩ Health Science (United States)'),
(114833, 93592, 'ca', 'name', 'Institut de CiĆØncies de l''Espai'),
(114834, 93592, 'en', 'name', 'Institute of Space Sciences'),
(114835, 93592, 'es', 'name', 'Instituto de Ciencias del Espacio'),
(114836, 93593, 'pt', 'name', 'Centro de Estudos Sociais'),
(114837, 93594, 'en', 'name', 'Anabaptist Mennonite Biblical Seminary'),
(114838, 93595, 'en', 'name', 'Dalle Molle Institute for Artificial Intelligence Research'),
(114839, 93595, 'it', 'name', 'Istituto Dalle Molle di Studi sull''Intelligenza Artificiale'),
(114840, 93596, 'no_lang_code', 'name', 'DRACE GEOCISA S.A. (Spain)'),
(114841, 93597, 'it', 'name', 'Istituto Sperimentale Italiano Lazzaro Spallanzani'),
(114842, 93597, 'en', 'name', 'Italian Experimental Institute Lazzaro Spallanzani'),
(114843, 93598, 'es', 'name', 'Fundación Tripartita para la Formación en el Empleo'),
(114844, 93599, 'en', 'name', 'Corewell Health Zeeland Hospital'),
(114845, 93600, 'en', 'name', 'Federal University of ItajubĆ”'),
(114846, 93600, 'pt', 'name', 'Universidade Federal de ItajubĆ”'),
(114847, 93601, 'de', 'name', 'Augenklinik Universitätsklinikum Würzburg'),
(114848, 93602, 'de', 'name', 'Institut für Produktives Lernen in Europa'),
(114849, 93602, 'en', 'name', 'Institute for Productive Learning in Europe'),
(114850, 93603, 'en', 'name', 'Accelleran NV'),
(114851, 93603, 'no_lang_code', 'name', 'Accelleran NV (Belgium)'),
(114852, 93604, 'fr', 'name', 'Centre intĆ©grĆ© universitaire de santĆ© et de services sociaux de l''Ouest-de-lā€™ĆŽle-de-MontrĆ©al'),
(114853, 93605, 'da', 'name', 'DHI'),
(114854, 93606, 'en', 'name', 'ZOLL Medical Corporation'),
(114855, 93606, 'no_lang_code', 'name', 'ZOLL Medical Corporation (United States)'),
(114856, 93607, 'en', 'name', 'American Bird Conservancy'),
(114857, 93608, 'en', 'name', 'Institute of Chinese Materia Medica'),
(114858, 93608, 'zh', 'name', 'äø­å›½åŒ»å­¦ē§‘å­¦é™¢čÆē‰©ē ”ē©¶ę‰€'),
(114859, 93609, 'en', 'name', 'Manchester University'),
(114860, 93610, 'fr', 'name', 'Banque Mondiale'),
(114861, 93610, 'en', 'name', 'World Bank'),
(114862, 93611, 'no_lang_code', 'name', 'Vodafone (United Kingdom)'),
(114863, 93612, 'en', 'name', 'Rochester Academy of Science'),
(114864, 93613, 'fr', 'name', 'Centre intƩgrƩ de santƩ et de services sociaux de la MontƩrƩgie-Ouest'),
(114865, 93614, 'en', 'name', 'Syreon Corporation'),
(114866, 93614, 'no_lang_code', 'name', 'Syreon Corporation (Canada)'),
(114867, 93615, 'pt', 'name', 'Instituto Vita Alere'),
(114868, 93616, 'en', 'name', 'State Key Laboratory of Virtual Reality Technology and Systems'),
(114869, 93616, 'zh', 'name', 'č™šę‹ŸēŽ°å®žęŠ€ęœÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114870, 93617, 'en', 'name', 'Taylor Family Institute for Innovative Psychiatric Research'),
(114871, 93618, 'es', 'name', 'Asociacion Valenciana de empresarios de plasticos'),
(114872, 93619, 'fr', 'name', 'CƩgep Beauce-Appalaches'),
(114873, 93620, 'en', 'name', 'Weston Area Health NHS Trust'),
(114874, 93621, 'en', 'name', 'Carnegie Observatories'),
(114875, 93622, 'en', 'name', 'Federal University of ParanĆ”'),
(114876, 93622, 'pt', 'name', 'Universidade Federal do ParanĆ”'),
(114877, 93623, 'en', 'name', 'UK Regenerative Medicine Platform'),
(114878, 93624, 'en', 'name', 'SASTRA University'),
(114879, 93624, 'ta', 'name', 'ą®šą®£ąÆą®®ąÆą®•ą®¾ ą®•ą®²ąÆˆ, ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ, ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®®ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ அகாதமி'),
(114880, 93625, 'en', 'name', 'Society for Education, Music and Psychology Research'),
(114881, 93626, 'pt', 'name', 'Instituto Superior de Engenharia do Porto'),
(114882, 93627, 'fr', 'name', 'Fondation Jean-Marie Lehn'),
(114883, 93628, 'fr', 'name', 'CƩgep de LƩvis'),
(114884, 93629, 'no_lang_code', 'name', 'CHN Energy (China)'),
(114885, 93629, 'zh', 'name', 'å›½å®¶čƒ½ęŗęŠ•čµ„é›†å›¢'),
(114886, 93630, 'es', 'name', 'Fundación de los Ferrocarriles Españoles'),
(114887, 93630, 'en', 'name', 'Spanish Railway Foundation'),
(114888, 93631, 'en', 'name', 'The Emerald Foundation'),
(114889, 93632, 'en', 'name', 'University College at Rockland'),
(114890, 93633, 'en', 'name', 'FluxMagic, Inc.'),
(114891, 93633, 'no_lang_code', 'name', 'FluxMagic, Inc. (United States)'),
(114892, 93634, 'en', 'name', 'Center for Open Neuroscience'),
(114893, 93635, 'en', 'name', 'Foundation Medicine'),
(114894, 93635, 'no_lang_code', 'name', 'Foundation Medicine (United States)'),
(114895, 93636, 'es', 'name', 'Concello de Cervo'),
(114896, 93637, 'en', 'name', 'St Michael''s Hospital'),
(114897, 93638, 'es', 'name', 'Fundación Aula Virtual'),
(114898, 93639, 'en', 'name', 'Lakeland Health'),
(114899, 93640, 'en', 'name', 'Ministry of Education'),
(114900, 93640, 'mi', 'name', 'Te Tāhuhu o te Mātauranga'),
(114901, 93641, 'de', 'name', 'NFDI4DS'),
(114902, 93642, 'no_lang_code', 'name', 'Parsons (United States)'),
(114903, 93643, 'en', 'name', 'Kharkiv National University of Internal Affairs'),
(114904, 93643, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(114905, 93644, 'en', 'name', 'Ʃklore-ed School of Management'),
(114906, 93645, 'es', 'name', 'Universidad Nacional de Educación'),
(114907, 93646, 'fr', 'name', 'Centre intégré de santé et de services sociaux de Lanaudière'),
(114908, 93647, 'en', 'name', 'Ghana Health Service'),
(114909, 93648, 'en', 'name', 'Cancer Research UK Manchester Centre'),
(114910, 93649, 'en', 'name', 'Society for the Study of Addiction'),
(114911, 93650, 'en', 'name', 'BabelFamily'),
(114912, 93651, 'es', 'name', 'Grupo EspaƱol de CƔncer de Ovario'),
(114913, 93651, 'en', 'name', 'Spanish Ovarian Cancer Research Group'),
(114914, 93652, 'es', 'name', 'Instituto Nacional de la Salud'),
(114915, 93653, 'en', 'name', 'ISCIII Museum'),
(114916, 93653, 'es', 'name', 'Museo Nacional de Sanidad'),
(114917, 93654, 'no_lang_code', 'name', 'STCube (United States)'),
(114918, 93655, 'en', 'name', 'OVC Pet Trust'),
(114919, 93656, 'pt', 'name', 'Fundação Oswaldo Cruz'),
(114920, 93656, 'en', 'name', 'Oswaldo Cruz Foundation'),
(114921, 93657, 'es', 'name', 'Ministerio de Ciencia, Innovación y Universidades'),
(114922, 93658, 'en', 'name', 'Ecopath International Initiative'),
(114923, 93659, 'en', 'name', 'Agricultural Research Institute'),
(114924, 93660, 'en', 'name', 'Diamond Light Source'),
(114925, 93661, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia Translacional em Medicina'),
(114926, 93661, 'en', 'name', 'National Science and Technology Institute for Translational Medicine'),
(114927, 93662, 'en', 'name', 'Row Fogo Charitable Trust'),
(114928, 93663, 'en', 'name', 'National Organization of Spanish blind people'),
(114929, 93663, 'es', 'name', 'Organización Nacional de Ciegos Españoles'),
(114930, 93664, 'es', 'name', 'Universidad de las AmƩricas'),
(114931, 93665, 'en', 'name', 'The Aga Khan University (International) in the United Kingdom'),
(114932, 93666, 'en', 'name', 'Government of Northwest Territories'),
(114933, 93667, 'no_lang_code', 'name', 'Institut Universitari de Ciencia i Tecnologia (Spain)'),
(114934, 93668, 'en', 'name', 'Atomic Energy Organization of Iran'),
(114935, 93668, 'fa', 'name', 'سازمان Ų§Ł†Ų±Ś˜ŪŒ Ų§ŲŖŁ…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(114936, 93669, 'en', 'name', 'Corewell Health Blodgett Hospital'),
(114937, 93670, 'en', 'name', 'FURTHERMORE grants in publishing'),
(114938, 93671, 'en', 'name', 'Real Colegio Complutense'),
(114939, 93672, 'en', 'name', 'Academy of Marketing'),
(114940, 93673, 'de', 'name', 'Ministerium für Landwirtschaft und Verbraucherschutz des Landes Nordrhein-Westfalen'),
(114941, 93674, 'no_lang_code', 'name', 'Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China)'),
(114942, 93674, 'zh', 'name', 'ę²ˆé˜³äø­åŒ–å†œčÆåŒ–å·„ē ”å‘ęœ‰é™å…¬åø');
INSERT INTO `ror_settings` VALUES
(114943, 93675, 'ab', 'name', 'Azərbaycan Mi̇lli̇ Elmlər Akademi̇yasi Şəki̇ Regi̇onal Elmi̇ Mərkəzi̇'),
(114944, 93675, 'en', 'name', 'Sheki Regional Scientific Center'),
(114945, 93675, 'na', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°ŃƒŠŗ АзербайГжана Шекинский Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр'),
(114946, 93676, 'fr', 'name', 'Laboratoire d''Informatique MƩdicale et d''IngƩnierie des Connaissances en e-SantƩ'),
(114947, 93677, 'en', 'name', 'Academy of Pharmaceutical Sciences'),
(114948, 93678, 'en', 'name', 'University of Pennsylvania Press'),
(114949, 93679, 'fr', 'name', 'Ɖcole Nationale d''IngĆ©nieurs des Techniques des Industries Agro-Alimentaires'),
(114950, 93680, 'en', 'name', 'National Nuclear Security Administration'),
(114951, 93681, 'en', 'name', 'White Rose College of the Arts and Humanities'),
(114952, 93682, 'en', 'name', 'Prostate Action'),
(114953, 93683, 'es', 'name', 'Universidad Católica Redemptoris Mater'),
(114954, 93684, 'pt', 'name', 'Clinics Hospital of Ribeirão Preto'),
(114955, 93685, 'en', 'name', 'Vanderbilt University Medical Center'),
(114956, 93686, 'fr', 'name', 'Laboratoire des Symbioses Tropicales et MƩditerranƩennes'),
(114957, 93687, 'en', 'name', 'Office of Science'),
(114958, 93688, 'en', 'name', 'Office of Biological and Environmental Research'),
(114959, 93689, 'en', 'name', 'International Society of Hypertension'),
(114960, 93690, 'en', 'name', 'Laboratory for Integrated Micro-Mechatronic Systems'),
(114961, 93691, 'en', 'name', 'Royal College of Chiropractors'),
(114962, 93692, 'fr', 'name', 'Centre d''Ʃtude des discours, images, textes, Ʃcrits et communications'),
(114963, 93693, 'fr', 'name', 'Savoirs et Pratiques du Moyen Ƃge au XIXe siĆØcle'),
(114964, 93694, 'es', 'name', 'Operador Nacional de Electricidad - CENACE'),
(114965, 93695, 'fr', 'name', 'Institut des Mondes Anglophone, Germanique et Roman'),
(114966, 93696, 'en', 'name', 'British Society for Neuroendocrinology'),
(114967, 93697, 'fr', 'name', 'Gouvernement de l''Ontario'),
(114968, 93697, 'en', 'name', 'Government of Ontario'),
(114969, 93698, 'en', 'name', 'Yeshiva University'),
(114970, 93699, 'es', 'name', 'Departamento del Interior de los Estados Unidos'),
(114971, 93699, 'fr', 'name', 'DĆ©partement de l''intĆ©rieur des Ɖtats-unis'),
(114972, 93699, 'en', 'name', 'United States Department of the Interior'),
(114973, 93700, 'fr', 'name', 'Laboratoire d''Urbanisme'),
(114974, 93701, 'id', 'name', 'Universitas Karya Husada Semarang'),
(114975, 93702, 'de', 'name', 'Bundesministerium für Umwelt, Naturschutz, nukleare Sicherheit und Verbraucherschutz'),
(114976, 93703, 'es', 'name', 'Universidad Tecnológica de La Paz'),
(114977, 93704, 'fr', 'name', 'UniversitƩ Bretagne Loire'),
(114978, 93705, 'en', 'name', 'Office of Nuclear Energy'),
(114979, 93706, 'fr', 'name', 'Fondation pour l''Ʃvaluation des choix technologiques'),
(114980, 93706, 'it', 'name', 'Fondazione per la valutazione delle scelte tecnologiche'),
(114981, 93706, 'en', 'name', 'Foundation for Technology Assessment'),
(114982, 93706, 'de', 'name', 'Stiftung für Technologiefolgen-Abschätzung'),
(114983, 93707, 'en', 'name', 'Kentucky Academy of Science'),
(114984, 93708, 'en', 'name', 'Argosy University'),
(114985, 93709, 'fr', 'name', 'IRT Saint ExupƩry'),
(114986, 93710, 'en', 'name', 'The Bronx Defenders'),
(114987, 93711, 'es', 'name', 'RegistradurĆ­a Nacional del Estado Civil de Colombia'),
(114988, 93712, 'en', 'name', 'Safety, Security, and Quality Assurance'),
(114989, 93713, 'en', 'name', 'United States Department of Health and Human Services'),
(114990, 93714, 'en', 'name', 'University Hospitals Bristol and Weston NHS Foundation Trust'),
(114991, 93715, 'en', 'name', 'Bhailal Amin General Hospital'),
(114992, 93716, 'en', 'name', 'Bristol University Press'),
(114993, 93717, 'en', 'name', 'Wesley Research Institute'),
(114994, 93718, 'en', 'name', 'Biodiversity Information Standards (TDWG)'),
(114995, 93719, 'en', 'name', 'Tennessee Academy of Science'),
(114996, 93720, 'en', 'name', 'Central States Center for Agricultural Safety and Health'),
(114997, 93721, 'fr', 'name', 'DiversitƩ, adaptation, dƩveloppement des plantes'),
(114998, 93722, 'no_lang_code', 'name', 'AIM at Melanoma'),
(114999, 93723, 'en', 'name', 'The University of Kansas Health System'),
(115000, 93724, 'pt', 'name', 'Fundação Instituto de Educação de Barueri'),
(115001, 93725, 'fr', 'name', 'Nutrition et Alimentation des Populations aux Suds'),
(115002, 93726, 'en', 'name', 'Office of Fusion Energy Sciences'),
(115003, 93727, 'en', 'name', 'Johns Hopkins University Press'),
(115004, 93728, 'en', 'name', 'Brain Tumour Charity'),
(115005, 93729, 'en', 'name', 'Acquisition and Project Management'),
(115006, 93730, 'en', 'name', 'American Society for Transplantation and Cellular Therapy'),
(115007, 93731, 'en', 'name', 'Office of Fissile Materials Disposition'),
(115008, 93732, 'fr', 'name', 'Laboratoire d''Algorithmique, ComplexitƩ et Logique'),
(115009, 93733, 'en', 'name', 'Prostate Cancer UK'),
(115010, 93734, 'en', 'name', 'Swedish Veterinary Agency'),
(115011, 93735, 'en', 'name', 'UNAD Florida'),
(115012, 93736, 'sv', 'name', 'Svensk nationell datatjƤnst'),
(115013, 93736, 'en', 'name', 'Swedish National Data Service'),
(115014, 93737, 'en', 'name', 'Kurdistan Institute for Strategic Studies and Scientific Research'),
(115015, 93737, 'ki', 'name', 'ŲÆŪ•Ų³ŲŖŪ•ŪŒ Ś©ŁˆŲ±ŲÆŲ³ŲŖŲ§Ł†ŪŒ ŲØŪ† دراساتی ستراتیجی و ŲŖŁˆŪŽŚ˜ŪŒŁ†Ū•ŁˆŪ•ŪŒ Ų²Ų§Ł†Ų³ŲŖŪŒ'),
(115016, 93738, 'en', 'name', 'Office of Small Business Innovation Research and Small Business Technology Transfer Programs'),
(115017, 93739, 'fr', 'name', 'Laboratoire Images, signaux et systĆØmes intelligents'),
(115018, 93739, 'en', 'name', 'Laboratory of Images, Signals and Intelligent Systems'),
(115019, 93740, 'en', 'name', 'Institute of Biomolecular Chemistry'),
(115020, 93740, 'it', 'name', 'Istituto di Chimica Biomolecolare'),
(115021, 93741, 'en', 'name', 'ICAR - Central Island Agricultural Research Institute'),
(115022, 93741, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¦ą„ą¤Ŗą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(115023, 93742, 'en', 'name', 'Weir Advanced Research Centre'),
(115024, 93743, 'en', 'name', 'UC San Diego Health System'),
(115025, 93744, 'en', 'name', 'Brazilian Center for Research in Energy and Materials'),
(115026, 93745, 'de', 'name', 'Hochschule Wismar'),
(115027, 93745, 'en', 'name', 'Wismar University of Applied Sciences'),
(115028, 93746, 'en', 'name', 'Office of Energy Analysis'),
(115029, 93747, 'fr', 'name', 'Centre d''Ɖtudes et de Recherche en Thermique, Environnement et SystĆØmes'),
(115030, 93748, 'en', 'name', 'Office of Intelligence and Counterintelligence'),
(115031, 93749, 'de', 'name', 'Schweizerische Akademie der Medizinischen Wissenschaften'),
(115032, 93749, 'en', 'name', 'Swiss Academy of Medical Sciences'),
(115033, 93750, 'en', 'name', 'Ignite Life Science Foundation'),
(115034, 93751, 'en', 'name', 'Ersilia Open Source Initiative'),
(115035, 93752, 'en', 'name', 'Office of Energy Statistics'),
(115036, 93753, 'fr', 'name', 'RMN BiomƩdicale et Neurosciences'),
(115037, 93754, 'en', 'name', 'Australian Biological Resources Study'),
(115038, 93755, 'de', 'name', 'Sächsisches Staatsministerium für Energie, Klimaschutz, Umwelt und Landwirtschaft'),
(115039, 93756, 'en', 'name', 'National Ignition Facility'),
(115040, 93757, 'en', 'name', 'Office of Environmental Management'),
(115041, 93758, 'no_lang_code', 'name', 'The Tomorrow Companies Inc. (United States)'),
(115042, 93759, 'en', 'name', 'ATI Inc.'),
(115043, 93759, 'no_lang_code', 'name', 'ATI Inc. (United States)'),
(115044, 93760, 'en', 'name', 'NƦstved Hospital'),
(115045, 93760, 'da', 'name', 'NƦstved Sygehus'),
(115046, 93761, 'en', 'name', 'People''s Hospital of Wangcheng District Changsha'),
(115047, 93761, 'zh', 'name', 'é•æę²™åø‚ęœ›åŸŽåŒŗäŗŗę°‘åŒ»é™¢'),
(115048, 93762, 'es', 'name', 'Centro de Documentación Musical de Andalucía'),
(115049, 93763, 'en', 'name', 'Office of Clean Energy Demonstrations'),
(115050, 93764, 'en', 'name', 'UNSW Canberra'),
(115051, 93765, 'en', 'name', 'Office of Fossil Energy'),
(115052, 93766, 'en', 'name', 'Precast/Prestressed Concrete Institute'),
(115053, 93767, 'de', 'name', 'Sächsisches Landesamt für Umwelt, Landwirtschaft und Geologie'),
(115054, 93768, 'no_lang_code', 'name', 'Toray (United States)'),
(115055, 93769, 'en', 'name', 'Academy of Neonatal Nursing'),
(115056, 93770, 'en', 'name', 'Israel Institute'),
(115057, 93771, 'en', 'name', 'Department of Employment and Workplace Relations'),
(115058, 93772, 'en', 'name', 'Mike and Josie Harper Cancer Research Institute'),
(115059, 93773, 'pt', 'name', 'Laboratório Nacional de Nanotecnologia'),
(115060, 93774, 'es', 'name', 'Centro Universitario Franciscano'),
(115061, 93774, 'pt', 'name', 'Universidade Franciscana'),
(115062, 93775, 'fr', 'name', 'Laboratoire de Neurosciences Cognitives'),
(115063, 93776, 'en', 'name', 'University of Nordland'),
(115064, 93777, 'en', 'name', 'Higher Education Careers Services Unit'),
(115065, 93778, 'es', 'name', 'Universidad Nacional Abierta y a Distancia'),
(115066, 93779, 'es', 'name', 'Universidad Mayor'),
(115067, 93780, 'id', 'name', 'Universitas Negeri Surabaya'),
(115068, 93781, 'en', 'name', 'Office of Energy Policy'),
(115069, 93782, 'en', 'name', 'The Bryden Centre'),
(115070, 93783, 'no_lang_code', 'name', 'OICC Press (United Kingdom)'),
(115071, 93784, 'en', 'name', 'Eastern Institute of Technology, Ningbo'),
(115072, 93784, 'zh', 'name', 'å®ę³¢äøœę–¹ē†å·„å¤§å­¦'),
(115073, 93785, 'en', 'name', 'Office of High Energy Physics'),
(115074, 93786, 'en', 'name', 'Chandler–Gilbert Community College'),
(115075, 93787, 'en', 'name', 'Iloilo State University of Fisheries Science and Technology'),
(115076, 93788, 'en', 'name', 'Patrick Berthoud Charitable Trust'),
(115077, 93789, 'en', 'name', 'Advanced Research Projects Agency - Energy'),
(115078, 93790, 'fr', 'name', 'Signalisation, Neurobiologie et Cancer'),
(115079, 93791, 'en', 'name', 'Materials Sciences and Engineering Division'),
(115080, 93792, 'fr', 'name', 'Lettres, idƩes, savoirs'),
(115081, 93793, 'en', 'name', 'Ministry of Education'),
(115082, 93794, 'en', 'name', 'Office of the General Counsel'),
(115083, 93795, 'en', 'name', 'Louisiana Academy of Sciences'),
(115084, 93796, 'no_lang_code', 'name', 'Bendix Field Engineering Corporation (United States)'),
(115085, 93797, 'es', 'name', 'Hospital la Pedrera'),
(115086, 93798, 'en', 'name', 'International Panel on the Information Environment'),
(115087, 93799, 'en', 'name', 'Office of Nuclear Physics'),
(115088, 93800, 'en', 'name', '1907 Foundation'),
(115089, 93801, 'en', 'name', 'Office of Defense Nuclear Nonproliferation'),
(115090, 93802, 'en', 'name', 'Ministry of Economic Development, Employment and Infrastructure'),
(115091, 93802, 'fr', 'name', 'Ministère du Développement économique, de l''Emploi et de l''Infrastructure'),
(115092, 93803, 'en', 'name', 'Office of Advanced Scientific Computing Research'),
(115093, 93804, 'no_lang_code', 'name', 'Toray (Thailand)'),
(115094, 93805, 'en', 'name', 'Office of Basic Energy Sciences'),
(115095, 93806, 'en', 'name', 'Mindanao State University - Maguindanao'),
(115096, 93807, 'en', 'name', 'Montana Agricultural Experiment Station'),
(115097, 93808, 'en', 'name', 'Inflammation, Microbiome and Immunosurveillance'),
(115098, 93809, 'en', 'name', 'France Business School'),
(115099, 93810, 'es', 'name', 'Superintendencia Nacional de Aduanas y de Administración Tributaria'),
(115100, 93811, 'es', 'name', 'Instituto de Biotecnología de León'),
(115101, 93812, 'en', 'name', 'Slagelse Hospital'),
(115102, 93812, 'da', 'name', 'Slagelse Sygehus'),
(115103, 93813, 'en', 'name', 'Epidemiology in dermatology and evaluation of therapeutics'),
(115104, 93814, 'en', 'name', 'Bell'),
(115105, 93814, 'no_lang_code', 'name', 'Bell (Canada)'),
(115106, 93815, 'en', 'name', 'Office of Environmental Protection, Sustainability Support and Corporate Safety Analysis'),
(115107, 93816, 'en', 'name', 'Infrastructure Security & Energy Restoration'),
(115108, 93817, 'fr', 'name', 'Sorbonne Paris CitƩ'),
(115109, 93818, 'en', 'name', 'Roswell Park Comprehensive Cancer Center'),
(115110, 93819, 'no_lang_code', 'name', 'Tonix Pharmaceuticals (United States)'),
(115111, 93820, 'no_lang_code', 'name', 'Arconic (United States)'),
(115112, 93821, 'en', 'name', 'Disaster Prevention & Water Environment Research Center'),
(115113, 93821, 'zh', 'name', 'é˜²ē½čˆ‡ę°“ē’°å¢ƒē ”ē©¶äø­åæƒ'),
(115114, 93822, 'en', 'name', 'Office of Space and Defense Power Systems'),
(115115, 93823, 'no_lang_code', 'name', 'Alcoa (United States)'),
(115116, 93824, 'no_lang_code', 'name', 'Lifetime Omics (United States)'),
(115117, 93825, 'en', 'name', 'Astrophysics Science Division'),
(115118, 93826, 'es', 'name', 'Instituto de Estudios DemocrƔticos'),
(115119, 93827, 'es', 'name', 'Asociación Colombiana de Hematología y Oncología'),
(115120, 93828, 'en', 'name', 'Health Research'),
(115121, 93829, 'en', 'name', 'Astrophysics Science Division'),
(115122, 93830, 'es', 'name', 'Universidad Nacional Francisco Luis Espinoza Pineda'),
(115123, 93831, 'it', 'name', 'Academia Svizra da Scienzas Umanas e Socialas'),
(115124, 93831, 'fr', 'name', 'AcadƩmie Suisse des Sciences Humaines et Sociales'),
(115125, 93831, 'de', 'name', 'Schweizerische Akademie der Geistes- und Sozialwissenschaften'),
(115126, 93831, 'en', 'name', 'Swiss Academy of Humanities and Social Sciences'),
(115127, 93832, 'es', 'name', 'Instituto Tecnológico de Úrsulo GalvÔn'),
(115128, 93833, 'en', 'name', 'Office of Cybersecurity, Energy Security, and Emergency Response'),
(115129, 93834, 'fr', 'name', 'AcadƩmie Suisse des Sciences Naturelles'),
(115130, 93834, 'it', 'name', 'Accademia Svizzera di Scienze Naturali'),
(115131, 93834, 'de', 'name', 'Akademie der Naturwissenschaften Schweiz'),
(115132, 93834, 'en', 'name', 'Swiss Academy of Sciences'),
(115133, 93835, 'en', 'name', 'City and Guilds College Association'),
(115134, 93836, 'es', 'name', 'Asociación Colombiana de Neumología y Cirugía de Tórax'),
(115135, 93837, 'en', 'name', 'NHS Lothian'),
(115136, 93838, 'es', 'name', 'Universidad EAN'),
(115137, 93839, 'no_lang_code', 'name', 'Bell Canada Enterprises (Canada)'),
(115138, 93840, 'en', 'name', 'United States Department of Transportation'),
(115139, 93841, 'en', 'name', 'Office of Inspector General'),
(115140, 93842, 'en', 'name', 'Bradens'' Hope For Childhood Cancer'),
(115141, 93843, 'en', 'name', 'United States Army Combat Capabilities Development Command'),
(115142, 93844, 'en', 'name', 'UK Brain Tumour Society'),
(115143, 93845, 'en', 'name', 'Moores Cancer Center'),
(115144, 93846, 'en', 'name', 'Civilian Nuclear Programs'),
(115145, 93847, 'fr', 'name', 'CƩgep GƩrald-Godin'),
(115146, 93848, 'es', 'name', 'Universidad Tecnológica del Centro de Veracruz'),
(115147, 93849, 'en', 'name', 'Santander Universities'),
(115148, 93850, 'en', 'name', 'National Yang Ming Chiao Tung University'),
(115149, 93851, 'en', 'name', 'Franciscan University'),
(115150, 93852, 'no_lang_code', 'name', 'Tullow Oil (United Kingdom)'),
(115151, 93853, 'en', 'name', 'Point Pedro Institute of Development'),
(115152, 93854, 'en', 'name', 'South-East Scotland School of Anaesthesia'),
(115153, 93855, 'en', 'name', 'Roswell Park Comprehensive Cancer Center'),
(115154, 93856, 'en', 'name', 'Andrology Gerontechnology Inflammation Modelisation'),
(115155, 93857, 'en', 'name', 'Office of Workforce Development for Teachers and Scientists'),
(115156, 93858, 'en', 'name', 'China Astronaut Research and Training Center'),
(115157, 93858, 'zh', 'name', 'äø­å›½čˆŖå¤©å‘˜ē§‘ē ”č®­ē»ƒäø­åæƒ'),
(115158, 93859, 'it', 'name', 'Ospedale Misericordia - Grosseto'),
(115159, 93860, 'sr', 'name', 'Institut za nuklearne nauke Vinča'),
(115160, 93860, 'en', 'name', 'Vinča Institute of Nuclear Sciences'),
(115161, 93861, 'en', 'name', 'Changchun Institute of Applied Chemistry'),
(115162, 93861, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢é•æę˜„åŗ”ē”ØåŒ–å­¦ē ”ē©¶ę‰€'),
(115163, 93862, 'en', 'name', 'UCD Centre for Veterinary Epidemiology and Risk Analysis'),
(115164, 93863, 'en', 'name', 'Saint Francis University'),
(115165, 93863, 'zh', 'name', 'ę˜Žę„›å°ˆäøŠå­øé™¢'),
(115166, 93864, 'en', 'name', 'State Key Laboratory of Laser Technology'),
(115167, 93864, 'zh', 'name', 'ęæ€å…‰ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(115168, 93865, 'en', 'name', 'Government of Santa Catarina'),
(115169, 93865, 'pt', 'name', 'Governo de Santa Catarina'),
(115170, 93866, 'en', 'name', 'InnovaWood'),
(115171, 93867, 'en', 'name', 'Pharmaceutical Research and Manufacturers of America'),
(115172, 93868, 'pt', 'name', 'Fundação Catarinense de Educação Especial'),
(115173, 93869, 'de', 'name', 'Niedersächsisches Ministerium für Umwelt, Energie und Klimaschutz'),
(115174, 93870, 'en', 'name', 'Institute for Marine and Antarctic Studies'),
(115175, 93871, 'es', 'name', 'Escuela Nacional de ArchivĆ­stica'),
(115176, 93872, 'en', 'name', 'Australian Maritime College'),
(115177, 93873, 'fr', 'name', 'MƩcanismes Centraux et PƩriphƩriques de la NeurodƩgƩnƩrescence'),
(115178, 93874, 'en', 'name', 'Institute for Social Change'),
(115179, 93875, 'de', 'name', 'inspire research Beratungsgesellschaft m.b.H. (Austria)'),
(115180, 93876, 'pt', 'name', 'Prefeitura da Cidade do Recife'),
(115181, 93877, 'en', 'name', 'Karaganda Medical University'),
(115182, 93877, 'ru', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Университет ŠšŠ°Ń€Š°Š³Š°Š½Š“Ń‹'),
(115183, 93877, 'kk', 'name', 'ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(115184, 93878, 'pt', 'name', 'Hospital de ClĆ­nicas da Unicamp'),
(115185, 93879, 'en', 'name', 'The University of Tokyo'),
(115186, 93879, 'ja', 'name', 'ę±äŗ¬å¤§å­¦'),
(115187, 93880, 'en', 'name', 'VERSES (United States)'),
(115188, 93881, 'en', 'name', 'SANT Herbarium'),
(115189, 93882, 'en', 'name', 'The Liverpool Blue Coat School'),
(115190, 93883, 'fr', 'name', 'Fondation HEC'),
(115191, 93883, 'en', 'name', 'HEC Foundation'),
(115192, 93884, 'en', 'name', 'Center for Advanced Security Research Darmstadt'),
(115193, 93885, 'en', 'name', 'Bluecoat'),
(115194, 93886, 'en', 'name', 'Species 2000'),
(115195, 93887, 'en', 'name', 'European Center for Security and Privacy by Design'),
(115196, 93888, 'en', 'name', 'Bülent Ecevit University'),
(115197, 93888, 'tr', 'name', 'Bülent Ecevit Üniversitesi'),
(115198, 93889, 'no_lang_code', 'name', 'Microwave Medical Systems (United States)'),
(115199, 93890, 'en', 'name', 'Rotterdam Study'),
(115200, 93891, 'en', 'name', 'Xuzhou College of Industrial Technology'),
(115201, 93891, 'zh', 'name', 'å¾å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(115202, 93892, 'en', 'name', 'Wildlife Conservation Society Vietnam'),
(115203, 93893, 'en', 'name', 'Southern Skies Network'),
(115204, 93894, 'en', 'name', 'National Coordination Office'),
(115205, 93895, 'en', 'name', 'Department of Agriculture, Fisheries and Forestry'),
(115206, 93896, 'en', 'name', 'ARC Research Hub for Sustainable Onshore Lobster Aquaculture'),
(115207, 93897, 'no_lang_code', 'name', 'Eastern Research Group (United States)'),
(115208, 93898, 'es', 'name', 'Escuela Superior de Artes de Circo'),
(115209, 93898, 'fr', 'name', 'Ɖcole SupĆ©rieure des Arts du Cirque'),
(115210, 93899, 'en', 'name', 'ARC Centre for Forest Value'),
(115211, 93900, 'en', 'name', 'State Enterprise ā€œDnipropetrovsk Regional State Research and Technical Center for Standardization, Metrology and Certificationā€'),
(115212, 93900, 'uk', 'name', 'Державне піГприємство Ā«Š”Š½Ń–ŠæŃ€Š¾ŠæŠµŃ‚Ń€Š¾Š²ŃŃŒŠŗŠøŠ¹ Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Гержавний науково-технічний центр станГартизації, метрології та сертифікації»'),
(115213, 93901, 'en', 'name', 'University of Lethbridge Faculty Association'),
(115214, 93902, 'en', 'name', 'Government Polytechnic, Chhatrapati Sambhaji Nagar'),
(115215, 93902, 'mr', 'name', 'ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤Øą¤æą¤•ą„‡ą¤¤ą¤Ø,ą¤›ą¤¤ą„ą¤°ą¤Ŗą¤¤ą„€ ą¤øą¤‚ą¤­ą¤¾ą¤œą„€ą¤Øą¤—ą¤°'),
(115216, 93903, 'en', 'name', 'Stanford Medicine'),
(115217, 93904, 'en', 'name', 'Shanghai Yangpu Senior High School'),
(115218, 93904, 'zh', 'name', 'äøŠęµ·åø‚ęØęµ¦é«˜ēŗ§äø­å­¦'),
(115219, 93905, 'en', 'name', 'Woolcock Institute of Medical Research'),
(115220, 93906, 'id', 'name', 'Universitas DIPA Makassar'),
(115221, 93907, 'en', 'name', 'All Russian Research Institute of Animal Breeding'),
(115222, 93907, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ племенного Гела'),
(115223, 93908, 'en', 'name', 'CBE Consultants, Inc. (United States)'),
(115224, 93909, 'pt', 'name', 'Instituto de Educação Superior de Brasília'),
(115225, 93910, 'en', 'name', 'Government of Punjab'),
(115226, 93911, 'pt', 'name', 'Editora da Universidade do Estado de Minas Gerais'),
(115227, 93912, 'en', 'name', 'Centre for Ore Deposit and Earth Sciences'),
(115228, 93913, 'es', 'name', 'Consejo Argentino de OftalmologĆ­a'),
(115229, 93914, 'en', 'name', 'Minas Gerais State University'),
(115230, 93914, 'pt', 'name', 'Universidade do Estado de Minas Gerais'),
(115231, 93915, 'fr', 'name', 'Collège américain de grèce'),
(115232, 93915, 'en', 'name', 'The American College of Greece'),
(115233, 93916, 'en', 'name', 'Multimedia Nusantara Polytechnic'),
(115234, 93917, 'en', 'name', 'University of Doha for Science and Technology'),
(115235, 93918, 'en', 'name', 'Australian Centre for Research on Separation Science'),
(115236, 93919, 'en', 'name', 'NSW Department of Climate Change, Energy, the Environment and Water'),
(115237, 93920, 'no_lang_code', 'name', 'Renesas Electronics (Japan)'),
(115238, 93920, 'ja', 'name', 'ćƒ«ćƒć‚µć‚¹ ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(115239, 93921, 'en', 'name', 'Centre for Renewable Energy and Power Systems'),
(115240, 93922, 'en', 'name', 'Australian Institute of Health Service Management'),
(115241, 93923, 'es', 'name', 'Universidad Nacional de La Pampa'),
(115242, 93924, 'en', 'name', 'Liaocheng Fifth People''s Hospital'),
(115243, 93924, 'zh', 'name', 'čŠåŸŽåø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(115244, 93925, 'no_lang_code', 'name', 'Integrated Device Technology (United States)'),
(115245, 93926, 'en', 'name', 'Multimedia Nusantara University'),
(115246, 93926, 'id', 'name', 'Universitas Multimedia Nusantara'),
(115247, 93927, 'en', 'name', 'ECSI Fibrotools (United States)'),
(115248, 93928, 'pt', 'name', 'Associação Catarinense de BibliotecÔrios'),
(115249, 93929, 'en', 'name', 'International Clinical Epidemiology Network'),
(115250, 93930, 'en', 'name', 'Salim Habib University'),
(115251, 93931, 'en', 'name', 'Ayub Agriculture Research Institute'),
(115252, 93932, 'fr', 'name', 'Centre de GƩnie Industriel'),
(115253, 93933, 'en', 'name', 'Institute for Stem Cell Biology and Regenerative Medicine'),
(115254, 93934, 'en', 'name', 'Brown Institute for Media Innovation'),
(115255, 93935, 'en', 'name', 'Centre for Sustainable Architecture with Wood'),
(115256, 93936, 'en', 'name', 'Magnum Semiconductor (United States)'),
(115257, 93937, 'en', 'name', 'Methodist College'),
(115258, 93938, 'it', 'name', 'IRCCS Istituto Auxologico Italiano'),
(115259, 93938, 'en', 'name', 'Italian Institute for Auxology'),
(115260, 93939, 'tr', 'name', 'Germencik Devlet Hastanesi'),
(115261, 93940, 'en', 'name', 'The Greater Harlem Chamber of Commerce'),
(115262, 93941, 'id', 'name', 'IAIN Syekh Nurjati Cirebon'),
(115263, 93942, 'en', 'name', 'Lilongwe University of Agriculture and Natural Resources'),
(115264, 93943, 'en', 'name', 'Menzies Institute for Medical Research'),
(115265, 93944, 'no_lang_code', 'name', 'CA Technologies (United States)'),
(115266, 93945, 'en', 'name', 'Tasmania Law Reform Institute'),
(115267, 93946, 'en', 'name', 'Wicking Dementia Centre'),
(115268, 93947, 'en', 'name', 'Tasmanian Behavioural Lab'),
(115269, 93948, 'en', 'name', 'Tasmanian Institute of Agriculture'),
(115270, 93949, 'no_lang_code', 'name', 'Broadcom (United States)'),
(115271, 93950, 'en', 'name', 'Odesa I. I. Mechnikov National University'),
(115272, 93950, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені І. І. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(115273, 93951, 'en', 'name', 'TAS Farm Innovation Hub'),
(115274, 93952, 'en', 'name', 'University of Technology - Iraq'),
(115275, 93952, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ©'),
(115276, 93953, 'en', 'name', 'Nickan Research Institute'),
(115277, 93954, 'en', 'name', 'BD Biosciences'),
(115278, 93954, 'no_lang_code', 'name', 'BD Biosciences (United States)'),
(115279, 93955, 'en', 'name', 'Indiana University School of Medicine'),
(115280, 93956, 'en', 'name', 'FREYR Battery (Norway)'),
(115281, 93957, 'en', 'name', 'Suzhou Hongyuan Biotech Inc. (China)'),
(115282, 93957, 'zh', 'name', 'č‹å·žå®å…ƒē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(115283, 93958, 'en', 'name', 'Africa Renewal University'),
(115284, 93959, 'no_lang_code', 'name', 'Magnum Semiconductor (Canada)'),
(115285, 93960, 'en', 'name', 'Cullinan Oncology (United States)'),
(115286, 93961, 'es', 'name', 'Instituto Superior de CiĆŖncias Policiais'),
(115287, 93962, 'en', 'name', 'Corvus Energy (Norway)'),
(115288, 93963, 'en', 'name', 'Alstom'),
(115289, 93963, 'no_lang_code', 'name', 'Alstom (United States)'),
(115290, 93964, 'en', 'name', 'Sofia University "St. Kliment Ohridski"'),
(115291, 93964, 'bg', 'name', 'Дофийски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ "Дв. ŠšŠ»ŠøŠ¼ŠµŠ½Ń‚ ŠžŃ…Ń€ŠøŠ“ŃŠŗŠø"'),
(115292, 93965, 'ro', 'name', 'Institutul Național de Cercetări Economice'),
(115293, 93965, 'en', 'name', 'National Institute for Economic Research'),
(115294, 93966, 'no_lang_code', 'name', 'GigPeak (United States)'),
(115295, 93967, 'en', 'name', 'STRIX (Portugal)'),
(115296, 93968, 'en', 'name', 'Business and Technology University'),
(115297, 93968, 'ka', 'name', 'įƒ‘įƒ˜įƒ–įƒœįƒ”įƒ”įƒ˜įƒ”įƒ įƒ“įƒ įƒ¢įƒ”įƒ„įƒœįƒįƒšįƒįƒ’įƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(115298, 93969, 'en', 'name', 'Synergy America (United States)'),
(115299, 93970, 'en', 'name', 'Samarkand branch of Tashkent State University of Economics'),
(115300, 93970, 'uz', 'name', 'Toshkent davlat iqtisodiyot universiteti samarqand filiali'),
(115301, 93970, 'ru', 'name', 'Филиал Š¢Š°ŃˆŠŗŠµŠ½Ń‚ского Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Экономического Университета'),
(115302, 93971, 'en', 'name', 'HEC Paris in Qatar'),
(115303, 93972, 'id', 'name', 'Universitas KH Abdul Chalim'),
(115304, 93973, 'fr', 'name', 'Neuropsychologie Cognitive et Physiopathologie de la SchizophrƩnie'),
(115305, 93974, 'en', 'name', 'Neurological Institute of Thailand'),
(115306, 93974, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø›ąø£ąø°ąøŖąø²ąø—ąø§ąø“ąø—ąø¢ąø²'),
(115307, 93975, 'en', 'name', 'G.T.N. Arts College'),
(115308, 93976, 'en', 'name', 'Istec Business School Paris'),
(115309, 93977, 'en', 'name', 'Wuhan Myhalic Biotechnological Co., Ltd (China)'),
(115310, 93977, 'zh', 'name', 'ę­¦ę±‰åŽč”ē§‘ē”Ÿē‰©ęŠ€ęœÆęœ‰é™å…¬åø'),
(115311, 93978, 'no_lang_code', 'name', 'Integrated Device Technology (South Korea)'),
(115312, 93979, 'en', 'name', 'Wildlife Conservation Society'),
(115313, 93980, 'en', 'name', 'National Research Center for Applied Cybersecurity ATHENE'),
(115314, 93980, 'de', 'name', 'Nationales Forschungszentrum für angewandte Cybersicherheit ATHENE'),
(115315, 93981, 'en', 'name', 'InnovaWood'),
(115316, 93982, 'en', 'name', 'Integrated Marine Observing System'),
(115317, 93983, 'en', 'name', 'Mehboob Charity Vision International Eye and General Hospital'),
(115318, 93984, 'de', 'name', 'Deutschen Phytomedizinischen Gesellschaft e.V.'),
(115319, 93985, 'es', 'name', 'Consejo PortuguƩs de Salud y Medio Ambiente'),
(115320, 93985, 'pt', 'name', 'Conselho PortuguĆŖs para a SaĆŗde e Ambiente'),
(115321, 93985, 'en', 'name', 'Portuguese Council for Health and Environment'),
(115322, 93986, 'en', 'name', 'Sainsbury Wellcome Centre'),
(115323, 93987, 'en', 'name', 'Open Access Publishing Association'),
(115324, 93988, 'es', 'name', 'Hospital Gineco ObstƩtrico Isidro Ayora'),
(115325, 93989, 'en', 'name', 'Center for Research and Studies in the Dialogue of Cultures and Comparative Religions'),
(115326, 93989, 'fr', 'name', 'Centre de Recherches et des Etudes pour le Dialogue des Civilisations et des Religions Comparees'),
(115327, 93990, 'ro', 'name', 'Anelis Plus'),
(115328, 93990, 'en', 'name', 'Association of Universities Research Centres and Central University Libraries in Romania'),
(115329, 93991, 'fr', 'name', 'Institut Polytechnique des Sciences AvancƩes'),
(115330, 93992, 'en', 'name', 'University of Wollongong Malaysia'),
(115331, 93993, 'en', 'name', 'Ho Chi Minh City University of Industry and Trade'),
(115332, 93993, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng Thʰʔng TP. Hồ ChĆ­ Minh'),
(115333, 93994, 'en', 'name', 'Modern Humanities Research Association'),
(115334, 93995, 'en', 'name', 'CABI Switzerland'),
(115335, 93996, 'es', 'name', 'Universidad Tecnológica de la Selva'),
(115336, 93997, 'en', 'name', 'Defence Science and Technology'),
(115337, 93998, 'en', 'name', 'Central European Society for Anticancer Drug Research'),
(115338, 93999, 'en', 'name', 'Eszterhazy Karoly Catholic University'),
(115339, 93999, 'hu', 'name', 'EszterhƔzy KƔroly Katolikus Egyetem'),
(115340, 94000, 'en', 'name', 'China People''s Police University'),
(115341, 94000, 'zh', 'name', 'äø­å›½äŗŗę°‘č­¦åÆŸå¤§å­¦'),
(115342, 94001, 'en', 'name', 'Janaki Medical College'),
(115343, 94001, 'ne', 'name', 'ą¤œą¤¾ą¤Øą¤•ą„€ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤²ą„‡ą¤œ'),
(115344, 94002, 'en', 'name', 'Uncle Kory Foundation'),
(115345, 94003, 'en', 'name', 'Agency for the Protection of Health of Garda'),
(115346, 94003, 'it', 'name', 'Azienda Socio Sanitaria Territoriale del Garda'),
(115347, 94004, 'es', 'name', 'Instituto Tecnológico Victoria - ITV'),
(115348, 94005, 'de', 'name', 'Ministerium für Wirtschaft, Arbeit und Wohnungsbau Baden-Württemberg'),
(115349, 94006, 'es', 'name', 'Instituto de Investigación sobre Sociedades, Territorios y Culturas'),
(115350, 94007, 'de', 'name', 'Deutsche Film- und Fernsehakademie Berlin'),
(115351, 94008, 'fr', 'name', 'Centre National de Recherches en Sciences des Materiaux'),
(115352, 94008, 'en', 'name', 'National Center for Research in Materials Science'),
(115353, 94009, 'de', 'name', 'Universitätsklinik für Hals-, Nasen- und Ohrenkrankheiten'),
(115354, 94010, 'ro', 'name', 'Institutul National de Cercetare-Dezvoltare pentru Inginerie Electrica ICPE-CA'),
(115355, 94010, 'en', 'name', 'National Institute for R&D in Electrical Engineering ICPE-CA'),
(115356, 94011, 'es', 'name', 'Escuela Normal de Atlacomulco'),
(115357, 94012, 'es', 'name', 'Centenaria y BenemƩrita Escuela Normal para Profesores'),
(115358, 94013, 'en', 'name', 'National Health Care Institute'),
(115359, 94013, 'nl', 'name', 'Zorginstituut Nederland'),
(115360, 94014, 'it', 'name', 'Aziende Socio Sanitarie Territoriale Lodi'),
(115361, 94014, 'en', 'name', 'Regional Health Care and Social Agency of Lodi'),
(115362, 94015, 'en', 'name', 'terraPulse, Inc. (United States)'),
(115363, 94016, 'en', 'name', 'Bulgarian Academy of Sciences and Arts'),
(115364, 94016, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ на Š½Š°ŃƒŠŗŠøŃ‚е Šø ŠøŠ·ŠŗŃƒŃŃ‚Š²Š°Ń‚Š°'),
(115365, 94017, 'fr', 'name', 'Laboratoire de Droit PrivƩ'),
(115366, 94018, 'en', 'name', 'Chinese People''s Armed Police Force'),
(115367, 94018, 'zh', 'name', 'äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜Ÿ'),
(115368, 94019, 'en', 'name', 'Chan Zuckerberg Biohub Chicago'),
(115369, 94020, 'en', 'name', 'General Directorate of Health Affairs in Riyadh Region'),
(115370, 94020, 'ar', 'name', 'Ų§Ł„Ł…ŲÆŁŠŲ±ŁŠŲ© العامة Ł„Ł„Ų“Ų¤ŁˆŁ† Ų§Ł„ŲµŲ­ŁŠŲ© بمنطقة Ų§Ł„Ų±ŁŠŲ§Ų¶'),
(115371, 94021, 'az', 'name', 'Təfəkkür Universiteti'),
(115372, 94022, 'en', 'name', 'Access to Advanced Health Institute'),
(115373, 94023, 'en', 'name', 'Center of Economic and Social Studies and Researches'),
(115374, 94023, 'fr', 'name', 'Centre d''Etudes et de Recherches Economiques et Sociales'),
(115375, 94024, 'en', 'name', 'Osborne Park Hospital'),
(115376, 94025, 'en', 'name', 'Research Centre for Olive Growing and Olive Oil Industry'),
(115377, 94026, 'pl', 'name', 'Samodzielny Publiczny Zakład Opieki Zdrowotnej RM-MEDITRANS Stacja Pogotowia Ratunkowego i Transportu Sanitarnego w Siedlcach'),
(115378, 94027, 'en', 'name', 'Yunnan Key Laboratory of Gastrodia Elata and Fungal Symbiotic Biology'),
(115379, 94027, 'zh', 'name', 'å¤©éŗ»äøŽēœŸčŒå…±ē”Ÿē”Ÿē‰©å­¦é‡ē‚¹å®žéŖŒå®¤'),
(115380, 94028, 'en', 'name', 'Faculty of Humanities and Social Sciences in Zagreb'),
(115381, 94028, 'hr', 'name', 'Filozofski fakultet u Zagrebu'),
(115382, 94029, 'ca', 'name', 'Fundació Esclerosi Múltiple'),
(115383, 94030, 'en', 'name', 'Berlin State Museums'),
(115384, 94030, 'de', 'name', 'Staatliche Museen zu Berlin'),
(115385, 94031, 'en', 'name', 'RTI International'),
(115386, 94032, 'en', 'name', 'Yunnan Engineering Research Center of Green Planting and Processing of Gastrodia Elata'),
(115387, 94032, 'zh', 'name', 'å¤©éŗ»ē»æč‰²ē§ę¤äøŽåŠ å·„å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(115388, 94033, 'de', 'name', 'Ministerium für Verkehr Baden-Württemberg'),
(115389, 94034, 'it', 'name', 'Istituto Sperimentale per la Zootecnia'),
(115390, 94035, 'en', 'name', 'Academy of Civil Aviation'),
(115391, 94035, 'kk', 'name', 'Азаматтық Š°Š²ŠøŠ°Ń†ŠøŃ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(115392, 94036, 'en', 'name', 'Australian Consortium for Social and Political Research Incorporated'),
(115393, 94037, 'en', 'name', 'Tindiret Technical and Vocational College'),
(115394, 94038, 'fr', 'name', 'Ɖcole nationale supĆ©rieure de chimie de Mulhouse'),
(115395, 94039, 'en', 'name', 'Sarala Birla University'),
(115396, 94040, 'en', 'name', 'The Federal Polytechnic, Ado-Ekiti'),
(115397, 94041, 'en', 'name', 'Agusan del Sur State College of Agriculture and Technology'),
(115398, 94042, 'en', 'name', 'Fathom (United Kingdom)'),
(115399, 94043, 'en', 'name', 'Defence Science and Technology Group'),
(115400, 94044, 'fr', 'name', 'HƓpital Charles-Nicolle'),
(115401, 94045, 'da', 'name', 'Mercantec'),
(115402, 94046, 'en', 'name', 'Polytechnic University of Nicaragua'),
(115403, 94046, 'es', 'name', 'Universidad PolitƩcnica de Nicaragua'),
(115404, 94047, 'pt', 'name', 'Centro UniversitÔrio das Américas (FAM) - São Paulo'),
(115405, 94048, 'it', 'name', 'Azienda Ospedaliera Ospedale Maggiore'),
(115406, 94049, 'fr', 'name', 'RƩsistances ThƩrapeutiques du Cancer de la Prostate'),
(115407, 94050, 'es', 'name', 'Instituto Tecnológico Superior Progreso'),
(115408, 94051, 'en', 'name', 'CHORUS'),
(115409, 94052, 'en', 'name', 'Universiteti Metropolitan Tirana'),
(115410, 94053, 'en', 'name', 'Sir Charles Gairdner Osborne Park Health Care Group'),
(115411, 94054, 'en', 'name', 'Forestry Research Centre'),
(115412, 94055, 'no_lang_code', 'name', 'Research Space (United Kingdom)'),
(115413, 94056, 'en', 'name', 'ASAPbio'),
(115414, 94057, 'it', 'name', 'Azienda Ospedaliero Universitaria Maggiore della Carita'),
(115415, 94058, 'en', 'name', 'Oceanum Ltd (New Zealand)'),
(115416, 94059, 'en', 'name', 'Fuller Laboratories (United States)'),
(115417, 94060, 'it', 'name', 'Azienda Socio Sanitaria Territoriale della Valtellina e Alto Lario'),
(115418, 94060, 'en', 'name', 'Regional Health and Social Agency of Valtellina and Alto Lario'),
(115419, 94061, 'da', 'name', 'Det Kongelige Akademi'),
(115420, 94061, 'en', 'name', 'Royal Danish Academy – Architecture, Design, Conservation'),
(115421, 94062, 'id', 'name', 'Institut Pesantren Babakan'),
(115422, 94063, 'en', 'name', 'American University of Iraq Baghdad'),
(115423, 94063, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في ŲØŲŗŲÆŲ§ŲÆ'),
(115424, 94064, 'en', 'name', 'New Zealand Defence Force'),
(115425, 94065, 'en', 'name', 'Minneapolis-St. Paul Long Term Ecological Research'),
(115426, 94066, 'en', 'name', 'South China Botanical Garden'),
(115427, 94066, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŽå—ę¤ē‰©å›­'),
(115428, 94067, 'en', 'name', 'Quantinuum (United States)'),
(115429, 94068, 'en', 'name', 'Cyprus West University'),
(115430, 94068, 'tr', 'name', 'Kıbrıs Batı Üniversitesi'),
(115431, 94069, 'it', 'name', 'Azienda Socio Sanitaria Territoriale degli Spedali Civili di Brescia'),
(115432, 94069, 'en', 'name', 'Regional Health Care and Social Agency Civil Hospitals of Brescia'),
(115433, 94070, 'en', 'name', 'Rio de Janeiro State University'),
(115434, 94070, 'pt', 'name', 'Universidade do Estado do Rio de Janeiro'),
(115435, 94071, 'pt', 'name', 'Instituto PolitƩcnico do Rio de Janeiro'),
(115436, 94072, 'en', 'name', 'Bernstein Center for Computational Neuroscience Berlin'),
(115437, 94073, 'es', 'name', 'Hospital General del Sur de Quito, IESS'),
(115438, 94074, 'en', 'name', 'Leidos Biomedical Research Inc. (United States)'),
(115439, 94075, 'no_lang_code', 'name', 'NGIS (China)'),
(115440, 94076, 'it', 'name', 'Azienda Socio Sanitaria Territoriale della Franciacorta'),
(115441, 94076, 'en', 'name', 'Regional Health Care of Franciacorta'),
(115442, 94077, 'en', 'name', 'Amal Jyothi College of Engineering'),
(115443, 94078, 'en', 'name', 'Dr. B. R. Ambedkar School of Economics University'),
(115444, 94079, 'en', 'name', 'Institute for Environmental Futures'),
(115445, 94080, 'no_lang_code', 'name', 'Thales (Italy)'),
(115446, 94081, 'en', 'name', 'Lawgorithm'),
(115447, 94082, 'fr', 'name', 'Academie navale de Menzel Bourguiba'),
(115448, 94082, 'en', 'name', 'Menzel Bourguiba Naval Academy'),
(115449, 94083, 'pt', 'name', 'Hospital UniversitƔrio Pedro Ernesto'),
(115450, 94084, 'pt', 'name', 'Centro Superior de Ensino e Pesquisa de Machado'),
(115451, 94085, 'en', 'name', 'China Chemical Safety Association'),
(115452, 94085, 'zh', 'name', 'äø­å›½åŒ–å­¦å“å®‰å…Øåä¼š'),
(115453, 94086, 'en', 'name', 'Hong Kong Institute of Certified Public Accountants'),
(115454, 94086, 'zh', 'name', 'é¦™ęøÆęœƒčØˆåø«å…¬ęœƒ'),
(115455, 94087, 'en', 'name', 'Minneapolis Heart Institute Foundation'),
(115456, 94088, 'en', 'name', 'Asia University'),
(115457, 94088, 'zh', 'name', 'äŗžę“²å¤§å­ø'),
(115458, 94089, 'en', 'name', 'Zhaotong University'),
(115459, 94089, 'zh', 'name', 'ę˜­é€šå­¦é™¢'),
(115460, 94090, 'en', 'name', 'Agency for the Protection of Health of Treviglio Caravaggio'),
(115461, 94090, 'it', 'name', 'Azienda Socio Sanitaria Territoriale di Bergamo Ovest'),
(115462, 94091, 'de', 'name', 'Landesanstalt für Umwelt Baden-Württemberg'),
(115463, 94092, 'es', 'name', 'Instituto Consorcio Clavijero'),
(115464, 94093, 'en', 'name', 'Asia University'),
(115465, 94093, 'zh', 'name', 'äŗžę“²å¤§å­ø'),
(115466, 94094, 'it', 'name', 'Centro di Ricerca per la Patologia Vegetale'),
(115467, 94095, 'es', 'name', 'Fundación PROINPA'),
(115468, 94096, 'es', 'name', 'Asociación de Estudios Históricos de Tacna'),
(115469, 94097, 'en', 'name', 'Columban College'),
(115470, 94097, 'tl', 'name', 'Dalubhasaang Columban'),
(115471, 94098, 'de', 'name', 'Landesgesundheitsamt Baden-Württemberg'),
(115472, 94099, 'fr', 'name', 'Fonds des Nations Unies pour l''Enfance'),
(115473, 94099, 'en', 'name', 'United Nations Children''s Fund'),
(115474, 94100, 'it', 'name', 'Istituto Sperimentale per la Frutticoltura'),
(115475, 94101, 'en', 'name', 'American University Kyiv'),
(115476, 94101, 'uk', 'name', 'Амерікан Юніверсіті ŠšŠøŃ—Š²'),
(115477, 94102, 'en', 'name', 'Scientific Research WorkS Peer Support Group'),
(115478, 94103, 'es', 'name', 'Universidad del BĆ­o-BĆ­o'),
(115479, 94103, 'en', 'name', 'University of BĆ­o-BĆ­o'),
(115480, 94104, 'id', 'name', 'Sekolah Tinggi Ilmu Kepolisian'),
(115481, 94105, 'en', 'name', 'Survey of Pakistan'),
(115482, 94105, 'ar', 'name', 'مساحتِ پاکستان'),
(115483, 94106, 'es', 'name', 'Universidad Nacional PolitƩcnica'),
(115484, 94107, 'it', 'name', 'Aziende Socio Sanitarie Territoriale di Crema'),
(115485, 94107, 'en', 'name', 'Regional Health Care and Social Agency of Crema'),
(115486, 94108, 'en', 'name', 'NGIS (Australia)'),
(115487, 94109, 'en', 'name', 'Centre for Experimental Agricultural Zoology'),
(115488, 94109, 'it', 'name', 'Istituto Sperimentale per la Zoologia Agraria'),
(115489, 94110, 'en', 'name', 'National University of General San MartĆ­n'),
(115490, 94110, 'es', 'name', 'Universidad Nacional de General San MartĆ­n'),
(115491, 94110, 'fr', 'name', 'UniversitƩ Nationale de San Martƭn'),
(115492, 94111, 'en', 'name', 'Hunan Provincial Expressway Group Co., Ltd (China)'),
(115493, 94111, 'zh', 'name', 'ę¹–å—é«˜é€Ÿå…¬č·Æé›†å›¢ęœ‰é™å…¬åø'),
(115494, 94112, 'en', 'name', 'Kyoto Min-iren Asukai Hospital'),
(115495, 94112, 'ja', 'name', 'äŗ¬éƒ½ę°‘åŒ»é€£ć‚ć™ć‹ć„ē—…é™¢'),
(115496, 94113, 'en', 'name', 'The University of Chenab, Gujrat'),
(115497, 94114, 'it', 'name', 'Aziende Socio Sanitaria Territoriale Rhodense'),
(115498, 94114, 'en', 'name', 'Regional Health Care and Social Agency Rhodense'),
(115499, 94115, 'pt', 'name', 'Universidade do Vale do ParaĆ­ba'),
(115500, 94115, 'en', 'name', 'University of ParaĆ­ba Valley'),
(115501, 94116, 'es', 'name', 'Instituto Nacional de TecnologĆ­a Agropecuaria'),
(115502, 94116, 'en', 'name', 'National Agricultural Technology Institute'),
(115503, 94117, 'es', 'name', 'Hospital Oncológico Docente "Conrado Benítez García"'),
(115504, 94118, 'en', 'name', 'Synsint Research Group'),
(115505, 94119, 'es', 'name', 'Escuela Interdisciplinaria de Altos Estudios Sociales'),
(115506, 94120, 'en', 'name', 'State Key Laboratory of Robotics'),
(115507, 94120, 'zh', 'name', 'ęœŗå™Øäŗŗå­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(115508, 94121, 'en', 'name', 'Skidaway Institute of Oceanography'),
(115509, 94122, 'en', 'name', 'Lions Clubs International Foundation'),
(115510, 94123, 'en', 'name', 'Business Europe'),
(115511, 94124, 'id', 'name', 'Universitas Nahdlatul Ulama Sidoarjo'),
(115512, 94125, 'en', 'name', 'Food Technology Research Unit'),
(115513, 94125, 'it', 'name', 'Istituto Sperimentale per la Valorizzazione Tecnologica dei Prodotti Agricoli'),
(115514, 94126, 'en', 'name', 'Engineers Australia'),
(115515, 94127, 'en', 'name', 'Wickramarachchi University of Indigenous Medicine'),
(115516, 94127, 'si', 'name', 'ą¶œą¶øą·Šą¶“ą·„ ą·€ą·’ą¶šą·Šą¶»ą¶øą·ą¶»ą¶ ą·Šą¶ ą·’ ą¶Æą·šą·ą·“ą¶ŗ ą·€ą·›ą¶Æą·Šą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šą¶ŗą·ą¶½ą¶ŗ'),
(115517, 94128, 'it', 'name', 'Azienda Socio Sanitaria Territoriale della Valle Olona'),
(115518, 94128, 'en', 'name', 'Regional Health Care and Social Agency Valle Olona'),
(115519, 94129, 'en', 'name', 'Dinghushan National Nature Reserve'),
(115520, 94129, 'zh', 'name', 'é¼Žę¹–å±±å›½å®¶ēŗ§č‡Ŗē„¶äæęŠ¤åŒŗ'),
(115521, 94130, 'es', 'name', 'Ministerio de Educación'),
(115522, 94131, 'en', 'name', 'Chemical and Veterinary Investigation Agency Karlsruhe'),
(115523, 94131, 'de', 'name', 'Chemisches und VeterinƤruntersuchungsamt Karlsruhe'),
(115524, 94132, 'de', 'name', 'Helmholtz-Zentrum Berlin für Materialien und Energie'),
(115525, 94133, 'nl', 'name', 'OLVG'),
(115526, 94134, 'en', 'name', 'European Association for Forwarding, Transport, Logistics and Customs Services'),
(115527, 94135, 'en', 'name', 'Aequitas Victoria Foundation'),
(115528, 94136, 'en', 'name', 'Al-Turath University'),
(115529, 94136, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© التراث'),
(115530, 94137, 'es', 'name', 'Centro Regional de Investigaciones Multidisciplinarias'),
(115531, 94138, 'fr', 'name', 'HƓpital Pontchaillou'),
(115532, 94138, 'en', 'name', 'Pontchaillou Hospital'),
(115533, 94139, 'it', 'name', 'Centro di Ricerca per le Colture Industriali'),
(115534, 94139, 'en', 'name', 'Research Centre for Cereal and Industrial Crops'),
(115535, 94140, 'en', 'name', 'Independent Schools of New Zealand'),
(115536, 94141, 'en', 'name', 'Frederick National Laboratory for Cancer Research'),
(115537, 94142, 'en', 'name', 'Ministry of National Defense of the People''s Republic of China'),
(115538, 94142, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å›½é˜²éƒØ'),
(115539, 94143, 'en', 'name', 'Forest and Range Management Research Institute'),
(115540, 94144, 'en', 'name', 'University of Wisconsin Health'),
(115541, 94145, 'en', 'name', 'University of Wisconsin Carbone Cancer Center'),
(115542, 94146, 'en', 'name', 'Comprehensive Cancer Center Vienna'),
(115543, 94147, 'it', 'name', 'Aziende Socio Sanitarie Territoriale Ovest Milanese'),
(115544, 94147, 'en', 'name', 'Regional Health Care and Social Agency West Milan'),
(115545, 94148, 'en', 'name', 'The Federal Polytechnic, Ado-Ekiti'),
(115546, 94149, 'fr', 'name', 'Institut Carnot ARTS'),
(115547, 94149, 'en', 'name', 'Carnot Institute ARTS'),
(115548, 94150, 'de', 'name', 'Universitätsklinik für Neurologie'),
(115549, 94151, 'de', 'name', 'Ministerium für Kultus, Jugend und Sport Baden-Württemberg'),
(115550, 94152, 'en', 'name', 'Agency for the Protection of Health Bergamo East'),
(115551, 94152, 'it', 'name', 'Azienda Socio Sanitaria Territoriale Bergamo Est'),
(115552, 94153, 'it', 'name', 'Centro di Ricerca per l’Orticoltura'),
(115553, 94154, 'id', 'name', 'Institut Seni Indonesia Yogyakarta'),
(115554, 94155, 'it', 'name', 'Azienda Socio Sanitaria Territoriale di Cremona'),
(115555, 94155, 'en', 'name', 'Regional Health Care and Social Agency of Cremona'),
(115556, 94156, 'en', 'name', 'Association of Medical Microbiology and Infectious Disease Canada'),
(115557, 94157, 'en', 'name', 'Kesmonds International University'),
(115558, 94158, 'en', 'name', 'North Metropolitan Health Service'),
(115559, 94159, 'it', 'name', 'Istituto Sperimentale Agronomico'),
(115560, 94160, 'en', 'name', 'Encompass Health (United States)'),
(115561, 94161, 'no_lang_code', 'name', 'Ōtani University'),
(115562, 94161, 'ja', 'name', '大谷大学'),
(115563, 94162, 'es', 'name', 'Instituto de Investigaciones Económicas y Sociales del Sur'),
(115564, 94163, 'it', 'name', 'Azienda Socio Sanitaria Territoriale di Pavia'),
(115565, 94163, 'en', 'name', 'Regional Health Care and Social Agency of Pavia'),
(115566, 94164, 'es', 'name', 'Escuela Normal de Tlalnepantla'),
(115567, 94165, 'no_lang_code', 'name', 'Leidos (United States)'),
(115568, 94166, 'de', 'name', 'Ostfriesische Landschaft'),
(115569, 94167, 'en', 'name', 'RTI Press'),
(115570, 94168, 'en', 'name', 'UBS Optimus Foundation'),
(115571, 94169, 'en', 'name', 'Orlando College of Osteopathic Medicine'),
(115572, 94170, 'de', 'name', 'Berufsgenossenschaftliche Unfallklinik Murnau'),
(115573, 94171, 'de', 'name', 'Ministerium für Ländlichen Raum und Verbraucherschutz Baden-Württemberg'),
(115574, 94172, 'de', 'name', 'Allgemeines Krankenhaus der Stadt Wien'),
(115575, 94172, 'en', 'name', 'Vienna General Hospital'),
(115576, 94173, 'en', 'name', 'UW Health University Hospital'),
(115577, 94174, 'en', 'name', 'Women University of Azad Jammu & Kashmir Bagh'),
(115578, 94175, 'en', 'name', 'Krea University'),
(115579, 94176, 'en', 'name', 'ASrid'),
(115580, 94176, 'ja', 'name', 'äŗŗć‚¢ć‚¹ćƒŖćƒƒćƒ‰'),
(115581, 94177, 'en', 'name', 'Faculty of Mechanical Engineering and Naval Architecture in Zagreb'),
(115582, 94177, 'hr', 'name', 'Fakultet strojarstva i brodogradnje'),
(115583, 94178, 'en', 'name', 'Rabindra Maitree University'),
(115584, 94178, 'bn', 'name', 'ą¦°ą¦¬ą§€ą¦Øą§ą¦¦ą§ą¦° ą¦®ą§ˆą¦¤ą§ą¦°ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(115585, 94179, 'en', 'name', 'Radical Data (Netherlands)'),
(115586, 94180, 'no_lang_code', 'name', 'Narxoz University'),
(115587, 94180, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š¢. Š Ń‹ŃŠŗŃƒŠ»Š¾Š²Š°'),
(115588, 94180, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ°Š»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(115589, 94181, 'en', 'name', 'Honey bee and Silkworm Research Unit'),
(115590, 94181, 'it', 'name', 'Unita'' di Ricerca di Apicoltura e Bachicoltura'),
(115591, 94182, 'en', 'name', 'International Arctic Research Center'),
(115592, 94183, 'en', 'name', 'DYNAMYC MYCOLOGY'),
(115593, 94184, 'de', 'name', 'Ministerium für Wissenschaft, Forschung und Kunst Baden-Württemberg'),
(115594, 94185, 'en', 'name', 'Union Bank of Switzerland'),
(115595, 94186, 'es', 'name', 'Instituto de Investigaciones para el Desarrollo Territorial y el HƔbitat Humano'),
(115596, 94187, 'en', 'name', 'Chan Zuckerberg Biohub San Francisco'),
(115597, 94188, 'en', 'name', 'Lirio, Inc. (United States)'),
(115598, 94189, 'it', 'name', 'Foraggere e Lattiero Casearie'),
(115599, 94190, 'en', 'name', 'OASIS International Hospital'),
(115600, 94190, 'zh', 'name', 'åŒ—äŗ¬ę˜Žå¾·åŒ»é™¢'),
(115601, 94191, 'en', 'name', '52°North Spatial Information Research'),
(115602, 94192, 'en', 'name', 'Medical College in Prague'),
(115603, 94192, 'cs', 'name', 'VysokÔ Ŕkola zdravotnickÔ, o. p. s.'),
(115604, 94193, 'en', 'name', 'EXP (Canada)'),
(115605, 94194, 'it', 'name', 'Consiglio per la ricerca in agricoltura e l’analisi dell’economia agraria'),
(115606, 94194, 'en', 'name', 'Council for Agricultural Research and Economics'),
(115607, 94195, 'it', 'name', 'Aziende Socio Sanitarie Territoriale della Valcamonica'),
(115608, 94195, 'en', 'name', 'Regional Health Care and Social Agency Valcamonica'),
(115609, 94196, 'es', 'name', 'Ministerio de Trabajo, Empleo y Seguridad Social de la Nación'),
(115610, 94197, 'en', 'name', 'Scout Association of Hong Kong'),
(115611, 94197, 'zh', 'name', 'é¦™ęøÆē«„č»ēø½ęœƒ'),
(115612, 94198, 'it', 'name', 'Aziende Socio Sanitarie Territoriale Nord Milano'),
(115613, 94198, 'en', 'name', 'Regional Health Care and Social Agency North Milan'),
(115614, 94199, 'fr', 'name', 'Centre National de la Cartographie et de la teledetection'),
(115615, 94199, 'en', 'name', 'National Mapping and Remote Sensing Center'),
(115616, 94200, 'en', 'name', 'Trion Tec Radion (Brazil)'),
(115617, 94201, 'en', 'name', 'United Nations Children''s Fund Ecuador'),
(115618, 94202, 'en', 'name', 'CAB International'),
(115619, 94203, 'de', 'name', 'Landesuntersuchungsamt Rheinland-Pfalz'),
(115620, 94204, 'en', 'name', 'Canadian Research Data Centre Network'),
(115621, 94205, 'no_lang_code', 'name', 'IBM (Netherlands)'),
(115622, 94206, 'en', 'name', 'Chan Zuckerberg Biohub New York'),
(115623, 94207, 'it', 'name', 'Ospedale Maggiore di Lodi'),
(115624, 94208, 'en', 'name', 'Andean University of Cuzco'),
(115625, 94208, 'es', 'name', 'Universidad Andina del Cusco'),
(115626, 94209, 'en', 'name', 'IGRAC'),
(115627, 94210, 'de', 'name', 'Landesregierung von Baden-Württemberg'),
(115628, 94210, 'en', 'name', 'State Government of Baden-Württemberg'),
(115629, 94211, 'en', 'name', 'Texas Heart Institute'),
(115630, 94212, 'en', 'name', 'National University of the Northeast'),
(115631, 94212, 'es', 'name', 'Universidad Nacional del Nordeste');
INSERT INTO `ror_settings` VALUES
(115632, 94213, 'en', 'name', 'Humanology Sdn Bhd (Malaysia)'),
(115633, 94214, 'en', 'name', 'DTU Space'),
(115634, 94215, 'en', 'name', 'CamEd Business School'),
(115635, 94216, 'en', 'name', 'Great Lakes Water Authority'),
(115636, 94217, 'it', 'name', 'Azienda Ospedaliera Treviglio'),
(115637, 94218, 'es', 'name', 'Instituto de Investigación y Desarrollo de la Vivienda'),
(115638, 94219, 'en', 'name', 'Trinity Health Oakland Hospital'),
(115639, 94220, 'de', 'name', 'Ministerium für Soziales und Integration Baden-Württemberg'),
(115640, 94221, 'id', 'name', 'Universitas Hang Tuah Pekanbaru'),
(115641, 94222, 'it', 'name', 'Istituti Clinici di Perfezionamento'),
(115642, 94223, 'fr', 'name', 'Groupement LigƩrien pour le Calcul Intensif DistribuƩ'),
(115643, 94224, 'es', 'name', 'Centro de Investigación y Desarrollo Tecnológico para la Agricultura Familiar'),
(115644, 94225, 'fr', 'name', 'UniversitƩ de webster'),
(115645, 94225, 'en', 'name', 'Webster University'),
(115646, 94226, 'en', 'name', 'Minneapolis VA Health Care System'),
(115647, 94227, 'de', 'name', 'Chemisches und VeterinƤruntersuchungsamt Stuttgart'),
(115648, 94228, 'en', 'name', 'Centre for Advanced Microscopy'),
(115649, 94229, 'no_lang_code', 'name', 'Czech Welding Institute (Czechia)'),
(115650, 94229, 'cs', 'name', 'Český svÔřečský Ćŗstav'),
(115651, 94230, 'ga', 'name', 'An tÚdarÔs um Fhaisnéis agus CÔilíocht SlÔinte'),
(115652, 94230, 'en', 'name', 'Health Information and Quality Authority'),
(115653, 94231, 'en', 'name', 'European Future Innovation System (EFIS) Centre'),
(115654, 94232, 'en', 'name', 'Minneapolis Foundation'),
(115655, 94233, 'de', 'name', 'Chemisches und VeterinƤruntersuchungsamt Freiburg'),
(115656, 94234, 'en', 'name', 'Center for Research in Microelectronics and Nanotechnology'),
(115657, 94234, 'fr', 'name', 'Centre de Recherche en Microelectronique et Nanotechnologie'),
(115658, 94235, 'sv', 'name', 'Stiftelsen Invandrarinstitut och Museum MƄngkulturellt centrum'),
(115659, 94236, 'en', 'name', 'East-West University'),
(115660, 94236, 'ka', 'name', 'įƒįƒ¦įƒ›įƒįƒ”įƒįƒ•įƒšįƒ”įƒ—-įƒ“įƒįƒ”įƒįƒ•įƒšįƒ”įƒ— įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(115661, 94237, 'en', 'name', 'Great Bay University'),
(115662, 94237, 'zh', 'name', '大湾区大学'),
(115663, 94238, 'en', 'name', 'Altoosi University College'),
(115664, 94238, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų·ŁˆŲ³ŁŠ الجامعة'),
(115665, 94239, 'es', 'name', 'Instituto de Investigaciones en Diversidad Cultural y Procesos de Cambio'),
(115666, 94240, 'en', 'name', 'National Health Care Institute'),
(115667, 94240, 'nl', 'name', 'Zorginstituut Nederland'),
(115668, 94241, 'en', 'name', 'Federal Institute of Bahia'),
(115669, 94241, 'pt', 'name', 'Instituto Federal da Bahia'),
(115670, 94241, 'fr', 'name', 'Ɖcole polytechnique fĆ©dĆ©rale de bahia'),
(115671, 94242, 'en', 'name', 'NumFOCUS'),
(115672, 94243, 'en', 'name', 'NOAA National Centers for Environmental Information'),
(115673, 94244, 'en', 'name', 'Cereal Research Centre'),
(115674, 94245, 'de', 'name', 'Chemisches und VeterinƤruntersuchungsamt Sigmaringen'),
(115675, 94246, 'hr', 'name', 'Ministarstvo Gospodarstva, PodruzeniŔtva i Obrta'),
(115676, 94246, 'en', 'name', 'Ministry of Economy, Entrepreneurship and Crafts'),
(115677, 94247, 'id', 'name', 'Universitas Ciputra'),
(115678, 94248, 'es', 'name', 'Tecnológico de Estudios Superiores de Ecatepec'),
(115679, 94249, 'en', 'name', 'Bukhara State University'),
(115680, 94249, 'uz', 'name', 'Buxoro davlat universiteti'),
(115681, 94249, 'ru', 'name', 'Š‘ŃƒŃ…Š°Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115682, 94250, 'en', 'name', 'National Council for Scientific Research'),
(115683, 94251, 'en', 'name', 'Ho Chi Minh University of Banking'),
(115684, 94251, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c NgĆ¢n hĆ ng ThĆ nh phố Hồ ChĆ­ Minh'),
(115685, 94252, 'pl', 'name', 'Wojewódzki Szpital Specjalistyczny im. J. Gromkowskiego we Wrocławiu'),
(115686, 94253, 'en', 'name', 'University of Silesia in Katowice'),
(115687, 94254, 'de', 'name', 'Addisca'),
(115688, 94255, 'en', 'name', 'BGMEA University of Fashion & Technology'),
(115689, 94256, 'en', 'name', 'Catholic University of Zimbabwe'),
(115690, 94257, 'id', 'name', 'Sekolah Tinggi Pembangunan Masyarakat Desa APMD'),
(115691, 94258, 'en', 'name', 'Agrovyzkum Rapotin (Czechia)'),
(115692, 94258, 'cs', 'name', 'Agrovýzkum Rapotín s.r.o.'),
(115693, 94259, 'fr', 'name', 'Centre National de Semences ForestiĆØres'),
(115694, 94260, 'en', 'name', 'G. Venkataswamy Naidu College'),
(115695, 94260, 'ta', 'name', 'ஜி. ą®µąÆ†ą®™ąÆą®•ą®Ÿą®šą®¾ą®®ą®æ நாயுடு ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(115696, 94261, 'es', 'name', 'Red Española de Esclerosis Múltiple'),
(115697, 94261, 'en', 'name', 'Spanish Multiple Sclerosis Network'),
(115698, 94262, 'es', 'name', 'Ministerio de Salud PĆŗblica'),
(115699, 94263, 'no', 'name', 'Universitets- og høgskolerÄdet'),
(115700, 94263, 'en', 'name', 'Universities Norway'),
(115701, 94264, 'en', 'name', 'Ateneo de Davao University'),
(115702, 94264, 'tl', 'name', 'Pamantasang Ateneo de Davao'),
(115703, 94265, 'es', 'name', 'Consejería de Educación, Universidades, Ciencia y Portavocía'),
(115704, 94266, 'en', 'name', 'Daiko Foundation'),
(115705, 94267, 'en', 'name', 'Naval Facilities Engineering Service Center'),
(115706, 94268, 'en', 'name', 'Institute of Science and Technology'),
(115707, 94268, 'ne', 'name', 'ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø तऄा ą¤Ŗą„ą¤°ą¤µą¤æą¤§ą¤æ ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(115708, 94269, 'nl', 'name', 'FOD Volksgezondheid, Veiligheid van de Voedselketen en Leefmilieu'),
(115709, 94269, 'en', 'name', 'FPS Public Health, Food Chain Safety and Environment'),
(115710, 94269, 'de', 'name', 'FƖD Volksgesundheit, Sicherheit der Nahrungsmittelkette und Umwelt'),
(115711, 94269, 'fr', 'name', 'SPF SantƩ publique, SƩcuritƩ de la ChaƮne alimentaire et Environnement'),
(115712, 94270, 'es', 'name', 'El Colegio de Morelos'),
(115713, 94271, 'en', 'name', 'Miva Open University'),
(115714, 94272, 'no_lang_code', 'name', 'Gamesa (Spain)'),
(115715, 94273, 'en', 'name', 'Ghana Tertiary Education Commission'),
(115716, 94274, 'en', 'name', 'PacifiCan'),
(115717, 94275, 'fr', 'name', 'Jeunesse - ActivitƩ Physique et Sportive, santƩ'),
(115718, 94276, 'en', 'name', 'Citizens Specialty Hospitals'),
(115719, 94277, 'cs', 'name', 'Knihovna ÚsteckĆ©ho kraje, příspěvkovĆ” organizace'),
(115720, 94277, 'en', 'name', 'Ústí Regional Library'),
(115721, 94278, 'en', 'name', 'Arizona College of Emergency Physicians'),
(115722, 94279, 'en', 'name', 'University of Iowa Hospitals and Clinics'),
(115723, 94280, 'sv', 'name', 'Kungliga Krigsvetenskapsakademien'),
(115724, 94280, 'en', 'name', 'The Royal Swedish Academy of War Sciences'),
(115725, 94281, 'en', 'name', 'Nordic International University'),
(115726, 94281, 'uz', 'name', 'Xalqaro Nordik universiteti'),
(115727, 94281, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет ŠŠ¾Ń€Š“ŠøŠŗ'),
(115728, 94282, 'no_lang_code', 'name', 'Research Institute for Cattle Breeding (Czechia)'),
(115729, 94282, 'cs', 'name', 'Výzkumný Ustav pro Chov Skotu'),
(115730, 94283, 'en', 'name', 'Canadian Glycomics Network'),
(115731, 94284, 'en', 'name', 'State Agrarian University of Moldova'),
(115732, 94284, 'ro', 'name', 'Universitatea Agrară de Stat din Moldova'),
(115733, 94285, 'en', 'name', 'Japan Private School Promotion Foundation'),
(115734, 94285, 'ja', 'name', 'ę—„ęœ¬ē§ē«‹å­¦ę ”ęŒÆčˆˆč²”å›£'),
(115735, 94286, 'cs', 'name', 'Pardubice Region'),
(115736, 94287, 'en', 'name', 'Yasuda Memorial Medical Foundation'),
(115737, 94288, 'de', 'name', 'Thüringer Universitäts- und Landesbibliothek'),
(115738, 94289, 'en', 'name', 'Farhangian University'),
(115739, 94289, 'fa', 'name', 'دانؓگاه ŁŲ±Ł‡Ł†ŚÆŪŒŲ§Ł†'),
(115740, 94290, 'nl', 'name', '4TU'),
(115741, 94291, 'en', 'name', 'China University of Mining and Technology - Beijing'),
(115742, 94291, 'zh', 'name', 'äø­å›½ēŸæäøšå¤§å­¦ļ¼ˆåŒ—äŗ¬ļ¼‰'),
(115743, 94292, 'en', 'name', 'ProMedica'),
(115744, 94293, 'en', 'name', 'AIMST University'),
(115745, 94294, 'tl', 'name', 'Pamantasang STI ng Kanlurang Negros'),
(115746, 94294, 'en', 'name', 'West Negros University'),
(115747, 94295, 'en', 'name', 'Guangzhou Zengcheng District Traditional Chinese Medicine Hospital'),
(115748, 94295, 'zh', 'name', 'å¹æå·žåø‚å¢žåŸŽåŒŗäø­åŒ»åŒ»é™¢'),
(115749, 94296, 'en', 'name', 'Tokyo Ohka Foundation for The Promotion of Science and Technology'),
(115750, 94297, 'en', 'name', 'Unity Health Toronto'),
(115751, 94298, 'en', 'name', 'Piri Reis University'),
(115752, 94298, 'tr', 'name', 'Pîrî Reis Üniversitesi'),
(115753, 94299, 'uz', 'name', 'Britaniya Menejment Universiteti'),
(115754, 94299, 'en', 'name', 'British Management University Tashkent'),
(115755, 94299, 'ru', 'name', 'Британский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ менеГжмента в Š¢Š°ŃˆŠŗŠµŠ½Ń‚е'),
(115756, 94300, 'de', 'name', 'Bundeskanzleramt'),
(115757, 94300, 'en', 'name', 'Federal Chancellery Republic of Austria'),
(115758, 94301, 'sv', 'name', 'SprƄkbanken Tal'),
(115759, 94302, 'fr', 'name', 'Agence ThƩmatique de Recherche en Sciences et Technologie'),
(115760, 94303, 'en', 'name', 'Canon Medical Systems Corporation (Japan)'),
(115761, 94303, 'ja', 'name', 'ć‚­ćƒ¤ćƒŽćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚·ć‚¹ćƒ†ćƒ ć‚ŗę Ŗå¼ä¼šē¤¾'),
(115762, 94304, 'es', 'name', 'Universidad Tecnológica del Cibao Oriental'),
(115763, 94305, 'fr', 'name', 'Institut de Recherche en Sciences AppliquƩes et Technologies'),
(115764, 94306, 'en', 'name', 'SickKids Foundation'),
(115765, 94307, 'en', 'name', 'Simon Diedong Dombo University of Business and Integrated Development Studies'),
(115766, 94308, 'es', 'name', 'Universidad de Moa'),
(115767, 94309, 'en', 'name', 'Institute for Philosophical Studies'),
(115768, 94309, 'pt', 'name', 'Instituto de Estudos Filosóficos'),
(115769, 94310, 'en', 'name', 'Hue University of Education'),
(115770, 94310, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m Huįŗæ'),
(115771, 94311, 'es', 'name', 'Instituto de Investigaciones GeogrƔficas de la Patagonia'),
(115772, 94312, 'en', 'name', 'Fatty Acid Research Institute'),
(115773, 94313, 'en', 'name', 'Educational and Rehabilitation Institution of Higher Education "Kamianets-Podilskyi State Institute"'),
(115774, 94313, 'uk', 'name', 'ŠŠ°Š²Ń‡Š°Š»ŃŒŠ½Š¾-реабілітаційний заклаГ вищої освіти "Кам''ŃŠ½ŠµŃ†ŃŒ-ŠŸŠ¾Š“Ń–Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚"'),
(115775, 94314, 'no_lang_code', 'name', 'OPERAS'),
(115776, 94315, 'en', 'name', 'Department of Industry, Science and Resources'),
(115777, 94316, 'en', 'name', 'Swiss Vaccine Research Institute'),
(115778, 94317, 'en', 'name', 'Queensland Department of Natural Resources, Mines and Energy'),
(115779, 94318, 'es', 'name', 'Universidad Evangelica de El Salvador'),
(115780, 94319, 'en', 'name', 'Lottery Health Research'),
(115781, 94320, 'no_lang_code', 'name', 'Advanced Digital Imaging Research'),
(115782, 94321, 'hr', 'name', 'Ministarstvo gospodarstva i održivog razvoja'),
(115783, 94321, 'en', 'name', 'Ministry of Economy and Sustainable Development'),
(115784, 94322, 'en', 'name', 'Swiss UMEF'),
(115785, 94323, 'fr', 'name', 'Institut Sciences du vivant'),
(115786, 94323, 'en', 'name', 'Institute of Life Sciences'),
(115787, 94323, 'de', 'name', 'Instituts für Life Sciences'),
(115788, 94324, 'es', 'name', 'Universidad de California en Santa Cruz'),
(115789, 94324, 'en', 'name', 'University of California, Santa Cruz'),
(115790, 94324, 'fr', 'name', 'UniversitƩ de Californie Ơ Santa Cruz'),
(115791, 94325, 'en', 'name', 'Far Eastern University'),
(115792, 94326, 'en', 'name', 'Asian Theological Seminary'),
(115793, 94327, 'en', 'name', 'Solomon Islands National University'),
(115794, 94328, 'en', 'name', 'Takhar University'),
(115795, 94328, 'fa', 'name', 'دانؓگاه ŲŖŲ®Ų§Ų±'),
(115796, 94329, 'en', 'name', 'Marie Curie Alumni Association'),
(115797, 94330, 'fr', 'name', 'Fondation CentraleSupƩlec'),
(115798, 94331, 'es', 'name', 'Universidad de California en Merced'),
(115799, 94331, 'en', 'name', 'University of California, Merced'),
(115800, 94331, 'fr', 'name', 'UniversitƩ de Californie Ơ Merced'),
(115801, 94332, 'en', 'name', 'Ada College of Education'),
(115802, 94333, 'en', 'name', 'Ministry of Defence'),
(115803, 94334, 'cs', 'name', 'KrajskĆ” knihovna v PardubicĆ­ch'),
(115804, 94334, 'en', 'name', 'Pardubice Regional Library'),
(115805, 94335, 'de', 'name', 'Energieinstitut an der Johannes Kepler UniversitƤt Linz'),
(115806, 94336, 'en', 'name', 'Government of Seattle'),
(115807, 94337, 'no_lang_code', 'name', 'Chinhoyi University of Technology'),
(115808, 94338, 'en', 'name', 'Rubin'),
(115809, 94339, 'en', 'name', 'Kokand University'),
(115810, 94339, 'uz', 'name', 'Qoʻqon universiteti'),
(115811, 94340, 'en', 'name', 'Tamale Technical University'),
(115812, 94341, 'en', 'name', 'Nowgong Girls'' College'),
(115813, 94342, 'en', 'name', 'River Security Inc. (China)'),
(115814, 94342, 'zh', 'name', 'ē‘žę•°äæ”ęÆ'),
(115815, 94343, 'en', 'name', 'Ministry of Communications, Knowledge and Technology'),
(115816, 94344, 'it', 'name', 'Galleria Borghese'),
(115817, 94345, 'en', 'name', 'Ono Medical Research Foundation'),
(115818, 94346, 'en', 'name', 'St Joseph''s Health Centre'),
(115819, 94347, 'en', 'name', 'Samsung Advanced Institute of Technology (South Korea)'),
(115820, 94347, 'ko', 'name', 'ģ‚¼ģ„±ģ¢…ķ•©źø°ģˆ ģ›'),
(115821, 94348, 'en', 'name', 'Japan Atomic Energy Agency'),
(115822, 94348, 'ja', 'name', 'ę—„ęœ¬åŽŸå­åŠ›ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(115823, 94349, 'en', 'name', 'Foso College of Education'),
(115824, 94350, 'en', 'name', 'Youth Peer Education Network'),
(115825, 94351, 'fr', 'name', 'Labex UnivEarthS'),
(115826, 94352, 'en', 'name', 'Space Research Institute'),
(115827, 94352, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космических исслеГований'),
(115828, 94353, 'en', 'name', 'Federal Rostov Agrarian Research Centre'),
(115829, 94353, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Ростовский Аграрный ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр'),
(115830, 94354, 'en', 'name', 'American Institutes for Research'),
(115831, 94355, 'en', 'name', 'National Agricultural Research and Development Institute'),
(115832, 94356, 'de', 'name', 'Clienia AG'),
(115833, 94357, 'no_lang_code', 'name', 'MEDAV (Germany)'),
(115834, 94358, 'fr', 'name', 'LabEx PRIMES'),
(115835, 94359, 'en', 'name', 'Ahmed Draia University'),
(115836, 94359, 'ar', 'name', 'الجامعة Ų§Ł„Ų£ŁŲ±ŁŠŁ‚ŁŠŲ©'),
(115837, 94360, 'en', 'name', 'European Network of Logistics Competence Centres'),
(115838, 94361, 'fr', 'name', 'Histoire et ArchƩologie Maritimes'),
(115839, 94362, 'ca', 'name', 'Andorra Recerca + Innovació'),
(115840, 94363, 'en', 'name', 'Bagadhar Brahma Kishan College'),
(115841, 94364, 'en', 'name', 'Rajalakshmi Engineering College'),
(115842, 94365, 'en', 'name', 'Agricultural Research Institute Kromeriz'),
(115843, 94365, 'cs', 'name', 'Zemědělský Výzkumný Ustav Kroměříž'),
(115844, 94366, 'es', 'name', 'Universidad del Gran Rosario'),
(115845, 94367, 'en', 'name', 'Eachtra Archaeological Projects (Ireland)'),
(115846, 94368, 'fr', 'name', 'Laboratoire d''Excellence Dynamiques Territoriales et Spatiales'),
(115847, 94369, 'fr', 'name', 'Pathologies Pulmonaires et PlasticitƩ Cellulaire'),
(115848, 94370, 'ro', 'name', 'Institutul Naţional de Cercetare-Dezvoltare în Turism'),
(115849, 94371, 'en', 'name', 'State Key Laboratory of Millimeter Waves'),
(115850, 94371, 'zh', 'name', 'ęÆ«ē±³ę³¢å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(115851, 94372, 'pt', 'name', 'Faculdade Católica de Mato Grosso'),
(115852, 94373, 'en', 'name', 'Alba Graduate Business School, The American College of Greece'),
(115853, 94374, 'en', 'name', 'Association for the Development of Industrial Aerodynamics'),
(115854, 94374, 'pt', 'name', 'Associação para o Desenvolvimento da Aerodinâmica Industrial'),
(115855, 94375, 'en', 'name', 'Council of Science and Technology, Uttar Pradesh'),
(115856, 94376, 'en', 'name', 'Institute for Work and Health'),
(115857, 94377, 'fr', 'name', 'Centre de recherche interdisciplinaire sur les modèles esthétiques et littéraires'),
(115858, 94378, 'en', 'name', 'Kibi Presbyterian College of Education'),
(115859, 94379, 'en', 'name', 'GMT Technology (Shenzhen) Co., Ltd. (China)'),
(115860, 94380, 'en', 'name', 'Pontifical Catholic University of Ecuador, Ibarra Campus'),
(115861, 94380, 'es', 'name', 'Pontificia Universidad Católica del Ecuador Sede Ibarra'),
(115862, 94381, 'en', 'name', 'dsafsdf'),
(115863, 94382, 'en', 'name', 'Laserlab Europe'),
(115864, 94383, 'cs', 'name', 'Liberec Region'),
(115865, 94384, 'en', 'name', 'Kharkiv National Medical University'),
(115866, 94384, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115867, 94385, 'en', 'name', 'Idlib University'),
(115868, 94385, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ؄دلب'),
(115869, 94386, 'en', 'name', '4TU.ResearchData'),
(115870, 94387, 'en', 'name', 'Crystal Impact (Germany)'),
(115871, 94388, 'en', 'name', 'WinnMed'),
(115872, 94389, 'no_lang_code', 'name', 'LG (United States)'),
(115873, 94390, 'en', 'name', 'Cascadia Seaweed (Canada)'),
(115874, 94391, 'en', 'name', 'Queensland Department of Transport and Main Roads'),
(115875, 94392, 'fr', 'name', 'DƩlƩgation CƓte d''Azur'),
(115876, 94393, 'en', 'name', 'Institute of Social and Preventive Medicine'),
(115877, 94394, 'en', 'name', 'International Network of Nuclear Reaction Data Centres'),
(115878, 94395, 'es', 'name', 'Sociedad Latinoamericana de Nutrición'),
(115879, 94396, 'en', 'name', 'Koneru Lakshmaiah Education Foundation'),
(115880, 94397, 'fr', 'name', 'Centre universitaire de mƩdecine gƩnƩrale et santƩ publique, Lausanne'),
(115881, 94398, 'en', 'name', 'Institute of Haematology and Blood Transfusion'),
(115882, 94398, 'cs', 'name', 'Ústav hematologie a krevní transfuze'),
(115883, 94399, 'tl', 'name', 'Dalubhasaang San Miguel ng Caraga'),
(115884, 94399, 'en', 'name', 'Saint Michael College of Caraga'),
(115885, 94400, 'en', 'name', 'Our Lady of Apostles College of Education'),
(115886, 94401, 'en', 'name', 'Seattle Public Utilities'),
(115887, 94402, 'en', 'name', 'Shunan University'),
(115888, 94402, 'ja', 'name', 'å‘Øå—å…¬ē«‹å¤§å­¦'),
(115889, 94403, 'en', 'name', 'SBS Swiss Business School'),
(115890, 94404, 'en', 'name', 'Agrotest Fyto (Czechia)'),
(115891, 94404, 'cs', 'name', 'Agrotest fyto, s.r.o.'),
(115892, 94405, 'en', 'name', 'Australia Telescope National Facility'),
(115893, 94406, 'en', 'name', 'Canadian Sleep & Circadian Network'),
(115894, 94406, 'fr', 'name', 'Centre d''Ɖtudes AvancĆ©es en MĆ©decine du Sommeil'),
(115895, 94407, 'en', 'name', 'Swedish Infrastructure for Ecosystem Science'),
(115896, 94408, 'en', 'name', 'Georgian International University'),
(115897, 94408, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒ”įƒ įƒ—įƒįƒØįƒįƒ įƒ˜įƒ”įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(115898, 94409, 'en', 'name', 'Ghana Academy of Arts and Sciences'),
(115899, 94410, 'fr', 'name', 'UniversitĆ© Saint Thomas d’Aquin'),
(115900, 94411, 'es', 'name', 'Escuela Normal de Jilotepec'),
(115901, 94412, 'id', 'name', 'Politeknik Negeri Jember'),
(115902, 94413, 'en', 'name', 'Palompon Institute of Technology'),
(115903, 94414, 'en', 'name', 'Innopolis University'),
(115904, 94414, 'ru', 'name', 'ŠŠ²Ń‚Š¾Š½Š¾Š¼Š½Š°Ń Š½ŠµŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Университет Иннополис'),
(115905, 94415, 'en', 'name', 'Samsung Science and Technology Foundation (South Korea)'),
(115906, 94415, 'ko', 'name', 'ģ‚¼ģ„±ėÆøėž˜źø°ģˆ ģœ”ģ„±ģž¬ė‹Ø'),
(115907, 94416, 'es', 'name', 'Escuela Normal de Zumpango'),
(115908, 94417, 'en', 'name', 'International Ice Hockey Federation'),
(115909, 94418, 'en', 'name', 'Rift Valley Technical Training Institute'),
(115910, 94419, 'en', 'name', 'Research Foundation for the Electrotechnology of Chubu'),
(115911, 94419, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­éƒØé›»ę°—åˆ©ē”ØåŸŗē¤Žē ”ē©¶ęŒÆčˆˆč²”å›£'),
(115912, 94420, 'es', 'name', 'Ministerio del Comercio Interior'),
(115913, 94421, 'en', 'name', 'NOVARTIS Foundation for the Promotion of Science (Japan)'),
(115914, 94422, 'de', 'name', 'Bundesdenkmalamt'),
(115915, 94423, 'nl', 'name', 'Internationale Stichting Alzheimer Onderzoek'),
(115916, 94424, 'fr', 'name', 'Centre Gabriel NaudƩ'),
(115917, 94425, 'ro', 'name', 'Ministerul Educației și Cercetării Științifice'),
(115918, 94425, 'en', 'name', 'Ministry of Education'),
(115919, 94426, 'fr', 'name', 'Centre d''Etudes et de Recherche en Gestion d''Aix-Marseille'),
(115920, 94427, 'en', 'name', 'Usti Region'),
(115921, 94427, 'cs', 'name', 'Ústecký kraj'),
(115922, 94428, 'en', 'name', 'KDDI Foundation'),
(115923, 94429, 'en', 'name', 'Czech Aerospace Research Centre'),
(115924, 94429, 'cs', 'name', 'Výzkumný a zkuŔební letecký ústav, a. s.'),
(115925, 94430, 'es', 'name', 'Hospital General Docente de Calderón'),
(115926, 94431, 'en', 'name', 'The College of European and Regional Studies'),
(115927, 94431, 'cs', 'name', 'VysokÔ Ŕkola evropských a regionÔlních studií, z. ú.'),
(115928, 94432, 'en', 'name', 'Darmstadt University of Applied Sciences'),
(115929, 94432, 'de', 'name', 'Hochschule Darmstadt'),
(115930, 94433, 'no_lang_code', 'name', 'Thiokol (United States)'),
(115931, 94434, 'id', 'name', 'Universitas Bosowa'),
(115932, 94435, 'en', 'name', 'International Institute for Management Development'),
(115933, 94436, 'en', 'name', 'Max Planck School Matter to Life'),
(115934, 94437, 'en', 'name', 'Okinaka Memorial Institute for Medical Research'),
(115935, 94438, 'en', 'name', 'Institute of Intelligent Industrial Systems and Technologies for Advanced Manufacturing'),
(115936, 94438, 'it', 'name', 'Istituto di Sistemi e Tecnologie Industriali Intelligenti per il Manifatturiero Avanzato'),
(115937, 94439, 'es', 'name', 'Dirección General de Universidades e Investigación'),
(115938, 94439, 'en', 'name', 'General Directorate of Universities and Research'),
(115939, 94440, 'no_lang_code', 'name', 'Research Institute for Fodder Crops (Czechia)'),
(115940, 94440, 'cs', 'name', 'výzkumný Ćŗstav pĆ­cninÔřský spol. s r.o'),
(115941, 94441, 'en', 'name', 'European Research Center for Information Systems'),
(115942, 94442, 'fr', 'name', 'CentrEau - Centre QuƩbƩcois de Recherche sur la Gestion de l''Eau'),
(115943, 94442, 'en', 'name', 'CentrEau - Quebec Water Management Research Centre'),
(115944, 94443, 'en', 'name', 'Korea Medical Device Development Fund'),
(115945, 94443, 'ko', 'name', 'ė²”ė¶€ģ²˜ģ‹ ģ•½ź°œė°œģ‚¬ģ—…ė‹Ø'),
(115946, 94444, 'en', 'name', 'Naval History and Heritage Command'),
(115947, 94445, 'en', 'name', 'Ankara Bilkent City Hospital'),
(115948, 94445, 'tr', 'name', 'Ankara Bilkent Şehir Hastanesi'),
(115949, 94445, 'ru', 'name', 'ŠŠ½ŠŗŠ°Ń€ŃŠŗŠ°Ń Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š‘Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(115950, 94445, 'ar', 'name', 'مستؓفى محافظة انقرة'),
(115951, 94446, 'en', 'name', 'Royal Botanic Garden Sydney'),
(115952, 94447, 'en', 'name', 'Buildwise'),
(115953, 94448, 'en', 'name', 'Mount Mary College of Education'),
(115954, 94449, 'en', 'name', 'Brocher Foundation'),
(115955, 94449, 'de', 'name', 'Fondation Brocher'),
(115956, 94450, 'fr', 'name', 'HƓpital St. Michael'),
(115957, 94450, 'en', 'name', 'St. Michael''s Hospital'),
(115958, 94451, 'en', 'name', 'Ho Technical University'),
(115959, 94452, 'fr', 'name', 'UniversitƩ Publique du Sud''Est'),
(115960, 94453, 'fr', 'name', 'Fonds National de la Recherche et de L''Innovation pour le DƩveloppement'),
(115961, 94454, 'fr', 'name', 'Institut des Sciences des SociƩtƩs'),
(115962, 94455, 'fr', 'name', 'Grand Port Maritime de Nantes Saint-Nazaire'),
(115963, 94456, 'fr', 'name', 'BibliothĆØque Royale de Belgique'),
(115964, 94456, 'nl', 'name', 'Koninklijke Bibliotheek Belgiƫ'),
(115965, 94456, 'en', 'name', 'Royal Library of Belgium'),
(115966, 94457, 'en', 'name', 'Global Frontier Hybrid Interface Materials'),
(115967, 94458, 'en', 'name', 'Mater Foundation'),
(115968, 94459, 'en', 'name', 'Urasoe General Hospital'),
(115969, 94460, 'en', 'name', 'National Science Library'),
(115970, 94461, 'fr', 'name', 'Institut de radiophysique'),
(115971, 94461, 'en', 'name', 'Institute of Radiation Physics'),
(115972, 94462, 'fr', 'name', 'Canal Savoir'),
(115973, 94463, 'en', 'name', 'Steel Authority of India Limited'),
(115974, 94464, 'en', 'name', 'University of Iowa Stead Family Children’s Hospital'),
(115975, 94465, 'en', 'name', 'Samangan Higher Education Institute'),
(115976, 94465, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† سمنگان'),
(115977, 94466, 'en', 'name', 'Science Center for Information Technologies in Design'),
(115978, 94466, 'ru', 'name', 'Центр информационных технологий в проектировании'),
(115979, 94467, 'en', 'name', 'Kyoto University Institute for Chemical Research'),
(115980, 94467, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦åŒ–å­¦ē ”ē©¶ę‰€'),
(115981, 94468, 'en', 'name', 'St. Francis Hospital'),
(115982, 94469, 'es', 'name', 'Grupo EspaƱol de Tumores Neuroendocrinos'),
(115983, 94470, 'en', 'name', 'Military Hospital Brno'),
(115984, 94470, 'cs', 'name', 'VojenskĆ” nemocnice Brno'),
(115985, 94471, 'en', 'name', 'Swiss School of Public Health'),
(115986, 94472, 'fr', 'name', 'DƩlƩgation Ile-de-France Ouest et Nord'),
(115987, 94473, 'en', 'name', 'BIMM University'),
(115988, 94474, 'en', 'name', 'ProMedica Toledo Hospital'),
(115989, 94475, 'de', 'name', 'Klinik Hietzing'),
(115990, 94476, 'en', 'name', 'Interdisciplinary Research Centre for Technology, Work and Culture'),
(115991, 94476, 'de', 'name', 'Interdisziplinäre Forschungszentrum für Technik, Arbeit und Kultur'),
(115992, 94477, 'en', 'name', 'Associate Laboratory of Energy, Transports and Aerospace'),
(115993, 94477, 'pt', 'name', 'Laboratório Associado de Energia, Transportes e AeronÔutica'),
(115994, 94478, 'sv', 'name', 'SprƄkbanken Sam'),
(115995, 94479, 'en', 'name', 'Basque Centre for Climate Change'),
(115996, 94479, 'es', 'name', 'Centro Vasco para el Cambio ClimƔtico'),
(115997, 94479, 'eu', 'name', 'Klima Aldaketa Ikergai'),
(115998, 94480, 'cs', 'name', 'Výzkumný Ústav MlékÔrenský'),
(115999, 94481, 'it', 'name', 'Ministero della cultura'),
(116000, 94482, 'de', 'name', 'Rosenpass e.V.'),
(116001, 94483, 'fr', 'name', 'La Policlinique mƩdicale universitaire'),
(116002, 94483, 'en', 'name', 'Polyclinic Medical University'),
(116003, 94484, 'en', 'name', 'Advisory Board for Research, Development and Innovation'),
(116004, 94484, 'ro', 'name', 'Colegiul Consultativ pentru Cercetare-Dezvoltare şi Inovare'),
(116005, 94485, 'en', 'name', 'Southern University and Agricultural and Mechanical College'),
(116006, 94486, 'en', 'name', 'Agricultural Research, Ltd.'),
(116007, 94486, 'cs', 'name', 'Agricultural Research, Ltd. (Czechia)'),
(116008, 94487, 'en', 'name', 'Naval Aerospace Medical Research Laboratory'),
(116009, 94488, 'en', 'name', 'Africa University'),
(116010, 94489, 'en', 'name', 'Institute of Intelligent Systems for Automation'),
(116011, 94489, 'it', 'name', 'Istituto di Studi sui Sistemi Intelligenti per l''Automazione'),
(116012, 94490, 'en', 'name', 'Arkansas State University'),
(116013, 94490, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''arkansas'),
(116014, 94491, 'en', 'name', 'St. John Bosco College of Education'),
(116015, 94492, 'fr', 'name', 'DƩlƩgation Paris-Villejuif-03'),
(116016, 94493, 'fr', 'name', 'UniversitƩ de Ouahigouya'),
(116017, 94494, 'fr', 'name', 'Institut de Recherche en Sciences de la SantƩ'),
(116018, 94495, 'en', 'name', 'Menorah Medical Center'),
(116019, 94496, 'en', 'name', 'Quantinuum (United Kingdom)'),
(116020, 94497, 'es', 'name', 'Universidad Tecnológica de Jalisco'),
(116021, 94498, 'en', 'name', 'Gƶttingen Academy of Sciences and Humanities'),
(116022, 94498, 'de', 'name', 'NiedersƤchsische Akademie der Wissenschaften zu Gƶttingen'),
(116023, 94499, 'es', 'name', 'Universidad Tecnológica de San Juan del Río'),
(116024, 94500, 'en', 'name', 'Presbyterian Women''s College of Education'),
(116025, 94501, 'fr', 'name', 'Laboratoire de Statistique ThƩorique et AppliquƩe'),
(116026, 94502, 'sv', 'name', 'SprƄkbanken'),
(116027, 94503, 'pl', 'name', 'Syntea'),
(116028, 94504, 'fr', 'name', 'DƩlƩgation Normandie'),
(116029, 94505, 'en', 'name', 'Presbyterian College of Education'),
(116030, 94506, 'ca', 'name', 'Centre de CiĆØncia i Tecnologia Forestal de Catalunya'),
(116031, 94506, 'fr', 'name', 'Centre des Sciences et des Technologies ForestiĆØres de Catalogne'),
(116032, 94506, 'es', 'name', 'Centro de Ciencia y Tecnologƭa Forestal de CataluƱa'),
(116033, 94506, 'en', 'name', 'Forest Science and Technology Centre of Catalonia'),
(116034, 94507, 'de', 'name', 'Schweizerisches Universitäres Institut für Traditionelle Chinesische Medizin'),
(116035, 94508, 'en', 'name', 'Dongyang Red Cross Hospital'),
(116036, 94508, 'zh', 'name', 'äøœé˜³åø‚ēŗ¢ä¼šåŒ»é™¢'),
(116037, 94509, 'en', 'name', 'Beijing Police College'),
(116038, 94509, 'zh', 'name', 'åŒ—äŗ¬č­¦åÆŸå­¦é™¢'),
(116039, 94510, 'de', 'name', 'Schweizerisches Institut für Kunstwissenschaft'),
(116040, 94510, 'en', 'name', 'Swiss Institute for Art Research'),
(116041, 94511, 'nl', 'name', 'Onderwijsraad'),
(116042, 94512, 'en', 'name', 'Constructor Institute'),
(116043, 94513, 'en', 'name', 'Queensland Department of the Premier and Cabinet'),
(116044, 94514, 'sv', 'name', 'Nordregio'),
(116045, 94515, 'fr', 'name', 'UniversitƩ Thomas SANKARA'),
(116046, 94516, 'en', 'name', 'University of Zimbabwe'),
(116047, 94517, 'en', 'name', 'Armed Forces Hospital Southern Region'),
(116048, 94517, 'ar', 'name', 'مستؓفى Ų§Ł„Ł‚ŁˆŲ§ŲŖ المسلحة ŲØŲ§Ł„Ų¬Ł†ŁˆŲØ'),
(116049, 94518, 'fr', 'name', 'DƩlƩgation Midi PyrƩnƩes'),
(116050, 94519, 'pt', 'name', 'Faculdade Católica de VÔrzea Grande'),
(116051, 94520, 'es', 'name', 'Universidad Autónoma del Carmen'),
(116052, 94521, 'fr', 'name', 'Institut suisse de droit comparƩ'),
(116053, 94521, 'it', 'name', 'Istituto svizzero di diritto comparato'),
(116054, 94521, 'de', 'name', 'Schweizerische Institut für Rechtsvergleichung'),
(116055, 94521, 'en', 'name', 'Swiss Institute of Comparative Law'),
(116056, 94522, 'cs', 'name', 'ZlĆ­n Region'),
(116057, 94523, 'en', 'name', 'Agency for the Cooperation of Energy Regulators'),
(116058, 94524, 'en', 'name', 'Soft Imaging LLC (United States)'),
(116059, 94525, 'es', 'name', 'Observatorio CientĆ­fico Comercio Interior'),
(116060, 94526, 'en', 'name', 'Children''s Hospital of Los Angeles'),
(116061, 94527, 'fr', 'name', 'Institut SYMLOG de France'),
(116062, 94528, 'en', 'name', 'University of Iowa Health Care'),
(116063, 94529, 'fr', 'name', 'Matériaux Polymères Interfaces - Environnement Marin'),
(116064, 94530, 'nl', 'name', 'Eerste Kamer der Staten-Generaal'),
(116065, 94530, 'no_lang_code', 'name', 'Senate'),
(116066, 94531, 'az', 'name', 'Ege Universiteti'),
(116067, 94531, 'en', 'name', 'Ege University'),
(116068, 94531, 'tr', 'name', 'Ege Üniversitesi'),
(116069, 94532, 'fr', 'name', 'Fondation Leenaards'),
(116070, 94533, 'sv', 'name', 'SprƄkbanken Text'),
(116071, 94534, 'de', 'name', 'Hochschulinstitut Schaffhausen'),
(116072, 94535, 'en', 'name', 'ResearchConcepts io GmbH (Germany)'),
(116073, 94536, 'en', 'name', 'Biodiversity Research Institute of the Universiy of Barcelona'),
(116074, 94536, 'ca', 'name', 'Institut de Recerca de la Biodiversitat de la Universitat de Barcelona'),
(116075, 94536, 'zh', 'name', 'Instituto de Investigación de la Biodiversidad de la Universidad de Barcelona'),
(116076, 94537, 'no_lang_code', 'name', 'Cambridge Quantum Computing (United Kingdom)'),
(116077, 94538, 'en', 'name', 'Madan Bhandari University of Science and Technology'),
(116078, 94538, 'ne', 'name', 'मदन ą¤­ą¤£ą„ą¤”ą¤¾ą¤°ą„€ ą¤¬ą¤æą¤œą„ą¤žą¤¾ą¤Ø तऄा ą¤Ŗą„ą¤°ą¤¬ą¤æą¤§ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤¬ą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(116079, 94539, 'en', 'name', 'Association Of Research Organizations'),
(116080, 94540, 'en', 'name', 'Cambodian University for Specialties'),
(116081, 94540, 'km', 'name', 'įžŸįž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžÆįž€įž‘įŸįžŸįž€įž˜įŸ’įž–įž»įž‡įž¶'),
(116082, 94541, 'en', 'name', 'Komenda College of Education'),
(116083, 94542, 'en', 'name', 'Mercy Hospital'),
(116084, 94543, 'fr', 'name', 'FORS – Centre de compĆ©tences Suisse en sciences sociales'),
(116085, 94543, 'de', 'name', 'FORS – Schweizer Kompetenzzentrum Sozialwissenschaften'),
(116086, 94543, 'en', 'name', 'FORS – Swiss Centre of Expertise in the Social Sciences'),
(116087, 94544, 'no_lang_code', 'name', 'LG (China)'),
(116088, 94545, 'en', 'name', 'Vienna Hospital Association'),
(116089, 94545, 'de', 'name', 'Wiener Krankenanstaltenverbund'),
(116090, 94546, 'en', 'name', 'Korea Semiconductor Research Consortium'),
(116091, 94547, 'en', 'name', 'Fedorovsky Polar State University'),
(116092, 94547, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ УчрежГение Š’Ń‹ŃŃˆŠµŠ³Š¾ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ā«Š·Š°ŠæŠ¾Š»ŃŃ€Š½Ń‹Š¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет Им. Š.М. ФеГоровского»'),
(116093, 94548, 'en', 'name', 'The Ichiro Kanehara Foundation for the Promotion of Medical Sciences and Medical Care'),
(116094, 94548, 'ja', 'name', 'ē›Šč²”å›£ę³•äŗŗé‡‘åŽŸäø€éƒŽčØ˜åæµåŒ»å­¦åŒ»ē™‚ęŒÆčˆˆč²”å›£'),
(116095, 94549, 'en', 'name', '"Ion Ionescu de la Brad" Iasi University of Life Sciences'),
(116096, 94550, 'en', 'name', 'Innovative Ghar Nepal'),
(116097, 94551, 'en', 'name', 'Tumu College of Education'),
(116098, 94552, 'pt', 'name', 'Faculdade Católica de CuiabÔ'),
(116099, 94553, 'en', 'name', 'BC Centre for Disease Control'),
(116100, 94554, 'cs', 'name', 'Vysočina Region'),
(116101, 94555, 'cs', 'name', 'AMBIS vysokÔ Ŕkola, a.s.'),
(116102, 94555, 'en', 'name', 'College of Regional Development and Banking Institute - AMBIS'),
(116103, 94556, 'en', 'name', 'Ghana Communication Technology University'),
(116104, 94557, 'fr', 'name', 'HƓpital d''instruction des ArmƩes Desgenettes'),
(116105, 94558, 'en', 'name', 'Open Science NL'),
(116106, 94559, 'en', 'name', 'Nusrat Jahan Ahmadiyya College of Education'),
(116107, 94560, 'fr', 'name', 'Conseil Arabe pour les Sciences Sociales'),
(116108, 94560, 'en', 'name', 'The Arab Council for the Social Sciences'),
(116109, 94560, 'ar', 'name', 'المجلس Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(116110, 94561, 'en', 'name', 'Abetifi Presbyterian College of Education'),
(116111, 94562, 'en', 'name', 'Australian Institute of Botanical Science'),
(116112, 94563, 'en', 'name', 'University of Koudougou'),
(116113, 94563, 'fr', 'name', 'UniversitƩ Norbert Zongo'),
(116114, 94564, 'fr', 'name', 'GaNeXT'),
(116115, 94565, 'en', 'name', 'School of Management Fribourg'),
(116116, 94566, 'pt', 'name', 'União das Faculdades Católicas de Mato Grosso'),
(116117, 94567, 'en', 'name', 'Midlands State University'),
(116118, 94568, 'en', 'name', 'Accra College of Education'),
(116119, 94569, 'fr', 'name', 'Laboratoire de Conception et d''Intégration des Systèmes'),
(116120, 94570, 'fr', 'name', 'Laboratoire architecture anthropologie'),
(116121, 94571, 'fr', 'name', 'Structure FƩdƩrative de Recherche Bonamy'),
(116122, 94572, 'en', 'name', 'Thales Alenia Space'),
(116123, 94572, 'no_lang_code', 'name', 'Thales Alenia Space (Italy)'),
(116124, 94573, 'sr', 'name', 'Institut za bioloÅ”ka istraživanja ā€žSiniÅ”a Stanković"'),
(116125, 94573, 'en', 'name', 'Institute for Biological Research ā€œSiniÅ”a StankoviÄ‡ā€'),
(116126, 94574, 'en', 'name', 'B-com Institute of Research and Technology'),
(116127, 94574, 'fr', 'name', 'Institut de Recherche Technologique B-com'),
(116128, 94575, 'fr', 'name', 'AlgoSolis'),
(116129, 94576, 'en', 'name', 'NSWC Port Hueneme Division'),
(116130, 94577, 'en', 'name', 'Nutrition Obesity & Risk of Thrombosis'),
(116131, 94577, 'fr', 'name', 'Nutrition, ObƩsitƩ et Risque Thrombotique'),
(116132, 94578, 'en', 'name', 'LINK - Laboratory for Innovative Key Materials and Structures'),
(116133, 94579, 'fr', 'name', 'Institut d’EpidĆ©miologie et de Neurologie Tropicale'),
(116134, 94580, 'en', 'name', 'Catholic University of Rennes'),
(116135, 94580, 'fr', 'name', 'Institut catholique de rennes'),
(116136, 94581, 'es', 'name', 'Fundación Almanaque Azul'),
(116137, 94582, 'fr', 'name', 'Institut de MicroƩlectronique, ElectromagnƩtisme et Photonique'),
(116138, 94583, 'fr', 'name', 'Institut des Maladies MƩtaboliques et Cardiovasculaires'),
(116139, 94583, 'en', 'name', 'Institute of Cardiovascular and Metabolic Diseases'),
(116140, 94584, 'fr', 'name', 'BibliothĆØques sans frontiĆØres'),
(116141, 94584, 'en', 'name', 'Libraries without Borders'),
(116142, 94585, 'pt', 'name', 'Faculdade EstƔcio de Alagoas'),
(116143, 94586, 'no_lang_code', 'name', 'NXP (France)'),
(116144, 94587, 'en', 'name', 'Institute of Physics, Bhubaneshwar'),
(116145, 94588, 'en', 'name', 'National Center for Public Health Informatics'),
(116146, 94589, 'fr', 'name', 'Groupe d’Etude des CĆ©tacĆ©s du Cotentin'),
(116147, 94589, 'en', 'name', 'The Cotentin Cetacean Study Group'),
(116148, 94590, 'fr', 'name', 'Centre de recherche franƧais Ơ JƩrusalem'),
(116149, 94591, 'fr', 'name', 'ARMINES'),
(116150, 94592, 'fr', 'name', 'Montpellier GenomiX'),
(116151, 94593, 'fr', 'name', 'Cooperative Internationale de Recherche et d’Action en matiĆØre de Communication'),
(116152, 94593, 'en', 'name', 'International Cooperative for Research and Action on the Field of Communication'),
(116153, 94594, 'en', 'name', 'Fractionnation of AgroResources and Environment'),
(116154, 94594, 'fr', 'name', 'Fractionnement des AgroRessources et Environnement'),
(116155, 94595, 'en', 'name', 'Center for Risk-Based Community Resilience Planning'),
(116156, 94596, 'fr', 'name', 'Groupe d''Ɖtude sur les GĆ©omatĆ©riaux et ENvironnements AnthropisĆ©s'),
(116157, 94597, 'en', 'name', 'EPF - Graduate School of Engineering'),
(116158, 94597, 'fr', 'name', 'EPF - Ɖcole d''ingĆ©nieurs'),
(116159, 94598, 'en', 'name', 'Economic & Social Sciences, Health Systems & Medical Informatics'),
(116160, 94598, 'fr', 'name', 'Sciences Economiques & Sociales de la SantƩ & Traitement de l''Information MƩdicale'),
(116161, 94599, 'en', 'name', 'Center for Statistics and Applications in Forensic Evidence'),
(116162, 94600, 'no_lang_code', 'name', 'Finmeccanica (United Kingdom)'),
(116163, 94601, 'en', 'name', 'Protein Information Resource'),
(116164, 94602, 'en', 'name', 'Air-Lock (United States)'),
(116165, 94603, 'fr', 'name', 'DƩlƩgation RƩgionale Est'),
(116166, 94604, 'de', 'name', 'Institut für Forschungsinformation und Qualitätssicherung'),
(116167, 94604, 'en', 'name', 'Institute for Research Information and Quality Assurance'),
(116168, 94605, 'fr', 'name', 'Centre Interuniversitaire de MicroElectronique et Nanotechnologies'),
(116169, 94606, 'en', 'name', 'Max Planck Institute for Sustainable Materials'),
(116170, 94606, 'de', 'name', 'Max-Planck-Institut für Nachhaltige Materialien'),
(116171, 94607, 'en', 'name', 'NHS England'),
(116172, 94608, 'fr', 'name', 'Institut des Vaisseaux et du Sang'),
(116173, 94608, 'en', 'name', 'Vessels and Blood Institute'),
(116174, 94609, 'en', 'name', 'Oxford University Clinical Research Unit Nepal'),
(116175, 94610, 'fr', 'name', 'Agence Nationale des Titres SƩcurisƩs'),
(116176, 94610, 'en', 'name', 'National Safe Securities Agency'),
(116177, 94611, 'fr', 'name', 'Conseil International pour l''Information Scientifique et Technique'),
(116178, 94611, 'en', 'name', 'International Council for Scientific and Technical Information'),
(116179, 94612, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Nantes'),
(116180, 94613, 'fr', 'name', 'Architecture, Milieu, Paysage'),
(116181, 94614, 'fr', 'name', 'Centre d''Ɖtudes et de Documentation Ɖconomiques, Juridiques et sociales'),
(116182, 94615, 'id', 'name', 'Universitas Mega Buana Palopo'),
(116183, 94616, 'en', 'name', 'Alte University'),
(116184, 94617, 'fr', 'name', 'Laboratoire de Linguistique de Nantes'),
(116185, 94618, 'en', 'name', 'Banner MD Anderson Cancer Center at Banner McKee Medical Center'),
(116186, 94619, 'en', 'name', 'Issyk-Kul State University'),
(116187, 94619, 'ru', 'name', 'Š˜ŃŃŃ‹Šŗ-Кульский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(116188, 94620, 'fr', 'name', 'Laboratoire de Traitement de l''Information MƩdicale'),
(116189, 94620, 'en', 'name', 'Laboratory of Medical Information Processing'),
(116190, 94621, 'fr', 'name', 'Institut d''Etudes AvancƩes Paris'),
(116191, 94621, 'en', 'name', 'Paris Institute for Advanced Study'),
(116192, 94622, 'en', 'name', 'Engarouines Observatory'),
(116193, 94622, 'fr', 'name', 'Observatoire des Engarouines'),
(116194, 94623, 'en', 'name', 'Translational Research in Gene Therapy'),
(116195, 94624, 'fr', 'name', 'Association Internationale de GĆ©omagnĆ©tisme et d’AĆ©ronomie'),
(116196, 94624, 'en', 'name', 'International Association of Geomagnetism and Aeronomy'),
(116197, 94625, 'fr', 'name', 'Institut MƩmoires de l''Edition Contemporaine'),
(116198, 94625, 'en', 'name', 'Institute for Contemporary Publishing Archives'),
(116199, 94626, 'en', 'name', 'Connected Farms Pty Ltd. (Australia)'),
(116200, 94627, 'fr', 'name', 'GESTE - Gestion Territoriale de l''Eau et de l''Environnement'),
(116201, 94628, 'en', 'name', 'Cancer Registry of Norway'),
(116202, 94629, 'fr', 'name', 'Direction GƩnƩrale DƩlƩguƩe aux Ressources'),
(116203, 94630, 'fr', 'name', 'Centre d''Innovation des Technologies sans Contact'),
(116204, 94630, 'en', 'name', 'Centre of Innovations in Contactless Technologies'),
(116205, 94631, 'fr', 'name', 'Centre d''Ʃtudes franco-russe de Moscou'),
(116206, 94631, 'ru', 'name', 'Центр франко-российских исслеГований'),
(116207, 94632, 'fr', 'name', 'Centre International de Rencontres MathƩmatiques'),
(116208, 94633, 'en', 'name', 'Marathwada Mitra Mandal''s College of Pharmacy'),
(116209, 94634, 'fr', 'name', 'Biologie et GƩnƩtique des Interactions Plante-Parasite'),
(116210, 94634, 'en', 'name', 'Biology and Genetics of Plant-Pathogen Interactions'),
(116211, 94635, 'en', 'name', 'Vietnamese Academy of Forest Sciences'),
(116212, 94636, 'en', 'name', 'Saint Joseph University'),
(116213, 94636, 'fr', 'name', 'UniversitƩ Saint-Joseph'),
(116214, 94636, 'hy', 'name', 'ÕÕøÖ‚Ö€Õ¢ ŌŗÕøÕ¦Õ„Ö†Õ« Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(116215, 94636, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚ŲÆŁŠŲ³ يوسف'),
(116216, 94637, 'en', 'name', 'Integrated Genetic Approaches in Therapeutic Discovery for Rare Diseases'),
(116217, 94638, 'en', 'name', 'French Institute of Science and Technology for Transport, Spatial Planning, Development and Networks'),
(116218, 94638, 'fr', 'name', 'Institut FranƧais des Sciences et Technologies des Transports, de l''AmƩnagement et des RƩseaux'),
(116219, 94639, 'id', 'name', 'Sekolah Tinggi Agama Buddha Negeri Sriwijaya Tangerang Banten'),
(116220, 94640, 'en', 'name', 'Osol Aldeen University College'),
(116221, 94640, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų£ŲµŁˆŁ„ Ų§Ł„ŲÆŁŠŁ† الجامعة'),
(116222, 94641, 'fr', 'name', 'EntrepƓts, ReprƩsentation et IngƩnierie des Connaissances'),
(116223, 94642, 'fr', 'name', 'CommunautƩ d''universitƩs et Ʃtablissements d''Aquitaine'),
(116224, 94642, 'en', 'name', 'Community of Universities and Higher Education Institutions of Aquitaine'),
(116225, 94643, 'fr', 'name', 'GƩographie de l''environnement'),
(116226, 94644, 'es', 'name', 'Universidad del Valle'),
(116227, 94644, 'en', 'name', 'University of Valle'),
(116228, 94645, 'es', 'name', 'Universidad de Ixtlahuaca CUI'),
(116229, 94646, 'fr', 'name', 'Zone Atelier Moselle'),
(116230, 94647, 'en', 'name', 'NUWC Keyport Division'),
(116231, 94648, 'fr', 'name', 'Laboratoire des Systèmes Mécaniques et d''Ingénierie Simultanée'),
(116232, 94648, 'en', 'name', 'Laboratory of Mechanical Systems and Concurrent Engineering'),
(116233, 94649, 'en', 'name', 'Bordeaux Plurithematic Clinical Research Center'),
(116234, 94649, 'fr', 'name', 'Centre d''Investigation Clinique PlurithƩmatique de Bordeaux'),
(116235, 94650, 'fr', 'name', 'Institut Carnot PolyNat'),
(116236, 94651, 'fr', 'name', 'Centre d''ImmunophƩnomique'),
(116237, 94652, 'fr', 'name', 'Centre de Recherche Jean Pierre Aubert'),
(116238, 94652, 'en', 'name', 'Jean-Pierre Aubert Research Center'),
(116239, 94653, 'en', 'name', 'methodS in Patient-centered outcomes and HEalth ResEarch'),
(116240, 94654, 'fr', 'name', 'Laboratoire de Recherche en Nanosciences'),
(116241, 94655, 'fr', 'name', 'Institut SupƩrieur d''Agriculture RhƓne-Alpes'),
(116242, 94656, 'fr', 'name', 'PƓle de Recherche Francophonies, Interculturel, Communication, Sociolinguistique'),
(116243, 94657, 'fr', 'name', 'Institut des sciences de la communication'),
(116244, 94657, 'en', 'name', 'Institute for Communication Sciences'),
(116245, 94658, 'fr', 'name', 'Lasers, Plasmas et ProcƩdƩs Photoniques'),
(116246, 94659, 'fr', 'name', 'Institut des MatƩriaux Poreux de Paris'),
(116247, 94660, 'fr', 'name', 'Laboratoire de Physique ThĆ©orique d’Orsay'),
(116248, 94660, 'en', 'name', 'Laboratory of Theoretical Physics'),
(116249, 94661, 'en', 'name', 'Ministry of Agrarian Policy and Food'),
(116250, 94661, 'uk', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ аграрної політики та ŠæŃ€Š¾Š“Š¾Š²Š¾Š»ŃŒŃŃ‚Š²Š°'),
(116251, 94662, 'en', 'name', 'Theories and Approaches of Genomic Complexity'),
(116252, 94663, 'en', 'name', 'Shri Gurudeo Ayurved College'),
(116253, 94664, 'fr', 'name', 'Laboratoire de Neurosciences ExpƩrimentales et Cliniques'),
(116254, 94665, 'en', 'name', 'Ogun State Ministry of Health'),
(116255, 94666, 'fr', 'name', 'Fondation Lenval'),
(116256, 94666, 'en', 'name', 'Lenval Foundation'),
(116257, 94667, 'fr', 'name', 'Ɖcole Nationale VĆ©tĆ©rinaire d''Alfort'),
(116258, 94668, 'en', 'name', 'Laboratory of Nanotechnology Instrumentation and Optics'),
(116259, 94669, 'fr', 'name', 'Linguistique IngƩnierie et Didactique des Langues'),
(116260, 94670, 'en', 'name', 'Baden State Library'),
(116261, 94670, 'de', 'name', 'Badische Landesbibliothek'),
(116262, 94671, 'fr', 'name', 'Institut de Recherche sur la Biologie de l''Insecte UMR 7261'),
(116263, 94672, 'en', 'name', 'Enchi College of Education'),
(116264, 94673, 'fr', 'name', 'Academie Polonaise des Sciences - Centre Scientifique Ć  Paris'),
(116265, 94673, 'en', 'name', 'Polish Academy of Sciences - Scientific Station in Paris'),
(116266, 94674, 'fr', 'name', 'Laboratoire Biologie Ơ Grande Ɖchelle'),
(116267, 94674, 'en', 'name', 'Large Scale Biology Laboratory'),
(116268, 94675, 'en', 'name', 'Baku Research Institute'),
(116269, 94676, 'en', 'name', 'Evidence In Motion'),
(116270, 94677, 'fr', 'name', 'Agence FranƧaise Pour la BiodiversitƩ'),
(116271, 94677, 'en', 'name', 'French National Agency for Water and Aquatic Environments'),
(116272, 94678, 'fr', 'name', 'Institut Pierre-Gilles de Gennes pour la Microfluidique'),
(116273, 94678, 'en', 'name', 'Pierre-Gilles de Gennes Institute'),
(116274, 94679, 'fr', 'name', 'Laboratoire d''électronique, systèmes de communication et microsystèmes'),
(116275, 94680, 'fr', 'name', 'Fonctionnement et Conduite des Systèmes de Culture Tropicaux et Méditerranéens'),
(116276, 94680, 'en', 'name', 'Tropical and Mediterranean Cropping System Functioning and Management'),
(116277, 94681, 'fr', 'name', 'GƩnƩtique MƩdicale & GƩnomique Fonctionelle'),
(116278, 94681, 'en', 'name', 'Medical Genetics & Functional Genomics'),
(116279, 94682, 'fr', 'name', 'Centre de Recherche Magellan'),
(116280, 94683, 'en', 'name', 'Ion Channel and Synaptic Neurobiology Laboratory'),
(116281, 94683, 'fr', 'name', 'UnitƩ de Neurobiologie des canaux Ioniques et de la Synapse'),
(116282, 94684, 'fr', 'name', 'Centre de recherche Droit et territoire'),
(116283, 94685, 'fr', 'name', 'Foie, MƩtabolisme, Cancer'),
(116284, 94685, 'en', 'name', 'Liver, Metabolisms and Cancer'),
(116285, 94686, 'en', 'name', 'Tokyo Institute of Technology'),
(116286, 94686, 'ja', 'name', 'ę±äŗ¬å·„ę„­å¤§å­¦'),
(116287, 94687, 'fr', 'name', 'Observatoire des Sciences de l''Univers de la RƩunion'),
(116288, 94688, 'fr', 'name', 'Groupe de Recherche en Psychologie Sociale'),
(116289, 94689, 'fr', 'name', 'Plateforme d''Imagerie BiomƩdicale'),
(116290, 94690, 'en', 'name', 'Navigable Waterways of France'),
(116291, 94690, 'fr', 'name', 'Voies navigables de France'),
(116292, 94691, 'en', 'name', 'NSWC Dahlgren Division'),
(116293, 94692, 'en', 'name', 'Galala University'),
(116294, 94692, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الجلالة'),
(116295, 94693, 'en', 'name', 'Mingachevir State University'),
(116296, 94694, 'fr', 'name', 'Centre Gilles-Gaston Granger'),
(116297, 94695, 'en', 'name', 'Nepal Mountain Academy'),
(116298, 94696, 'en', 'name', 'NSWC Indian Head'),
(116299, 94697, 'fr', 'name', 'Tempora'),
(116300, 94698, 'en', 'name', 'Aging and Chronic Diseases Epidemiological and Public Health Approaches'),
(116301, 94698, 'fr', 'name', 'Vieillissement et Maladies Chroniques. Approches EpidƩmiologiques et de santƩ publique'),
(116302, 94699, 'fr', 'name', 'Institut Cellule Souche et Cerveau'),
(116303, 94699, 'en', 'name', 'Stem-Cell and Brain Research Institute'),
(116304, 94700, 'ca', 'name', 'AgĆØncia de Qualitat UniversitĆ ria de les Illes Balears'),
(116305, 94701, 'pt', 'name', 'Santa Casa de Montes Claros - Irmandade Nossa Senhora das MercĆŖs'),
(116306, 94702, 'fr', 'name', 'Laboratoire de Biologie MolƩculaire des Eucaryotes'),
(116307, 94702, 'en', 'name', 'Laboratory of Eukaryotic Molecular Biology'),
(116308, 94703, 'en', 'name', 'Joseph Fourier University'),
(116309, 94703, 'fr', 'name', 'UniversitƩ Joseph Fourier'),
(116310, 94704, 'fr', 'name', 'BioSpectroscopie Translationnelle'),
(116311, 94705, 'en', 'name', 'Japan Society for the Promotion of Science London'),
(116312, 94706, 'fr', 'name', 'Ɖcole des MĆ©tiers de l’Environnement'),
(116313, 94707, 'fr', 'name', 'Imagerie et StratƩgies ThƩrapeutiques des Pathologies CƩrƩbrales et Tumorales'),
(116314, 94707, 'en', 'name', 'Imaging and Therapeutical Strategies in Cerebral and Tumoral Pathologies'),
(116315, 94708, 'es', 'name', 'Hospital Universitario del Valle ESE'),
(116316, 94709, 'en', 'name', 'Sacred Heart College of Lucena City, Inc.'),
(116317, 94710, 'no_lang_code', 'name', 'Patan Hospital'),
(116318, 94711, 'fr', 'name', 'Micro et NanomƩdecines translationnelles'),
(116319, 94712, 'en', 'name', 'Flinders Microscopy and Microanalysis'),
(116320, 94713, 'fr', 'name', 'Centre EuropƩen de Recherches et de Formation aux Arts Verriers'),
(116321, 94713, 'en', 'name', 'European Center for Researches and Training in the Glass-Work');
INSERT INTO `ror_settings` VALUES
(116322, 94714, 'en', 'name', 'Centurion Pharma (Turkey)'),
(116323, 94715, 'en', 'name', 'Alicante Institute for Health and Biomedical Research'),
(116324, 94715, 'es', 'name', 'Instituto de investigación sanitaria y biomédica de Alicante'),
(116325, 94716, 'fr', 'name', 'Infections Cardiovasculaires Virales et inflammation en pathologie humaine'),
(116326, 94717, 'fr', 'name', 'Chimie, Structures et PropriƩtƩs de BiomatƩriaux et d''Agents ThƩrapeutiques'),
(116327, 94718, 'fr', 'name', 'Biologie MolƩculaire Structurale et Processus Infectieux'),
(116328, 94719, 'fr', 'name', 'Laboratoire de SpectromƩtrie Ionique et MolƩculaire'),
(116329, 94720, 'fr', 'name', 'Ɖcole EuropĆ©enne SupĆ©rieure de l''Image'),
(116330, 94721, 'en', 'name', 'Charles de Gaulle University Lille III'),
(116331, 94721, 'fr', 'name', 'Charles de Gaulle UniversitƩ de Lille III'),
(116332, 94722, 'en', 'name', 'The First People''s Hospital of Guangyuan'),
(116333, 94722, 'zh', 'name', 'å¹æå…ƒåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(116334, 94723, 'fr', 'name', 'Architecture Histoire Technique Territoire Patrimoine'),
(116335, 94724, 'fr', 'name', 'Groupe de Recherche en Ɖconomie ThĆ©orique et AppliquĆ©e'),
(116336, 94724, 'en', 'name', 'Research Group in Theoretical and Applied Economics'),
(116337, 94725, 'fr', 'name', 'Institut du DƩveloppement Durable et des Relations Internationales'),
(116338, 94725, 'en', 'name', 'Institute for Sustainable Development and International Relations'),
(116339, 94726, 'en', 'name', 'Health Technologies'),
(116340, 94726, 'fr', 'name', 'Technologies pour la SantƩ'),
(116341, 94727, 'en', 'name', 'Audencia Business School'),
(116342, 94728, 'en', 'name', 'French National School for Advanced Studies in Design'),
(116343, 94728, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de CrĆ©ation Industrielle'),
(116344, 94729, 'fr', 'name', 'Centre de Recherche en Sciences et Technologies de l''Information et de la Communication'),
(116345, 94730, 'en', 'name', 'Higher Institute for Electronics and Digital Training'),
(116346, 94730, 'fr', 'name', 'Institut SupĆ©rieur de l''Ɖlectronique et du NumĆ©rique'),
(116347, 94731, 'fr', 'name', 'DƩlƩgation Paris Michel-Ange'),
(116348, 94732, 'no_lang_code', 'name', 'NXP (Netherlands)'),
(116349, 94733, 'es', 'name', 'Universidad PolitƩcnica de Guanajuato'),
(116350, 94734, 'en', 'name', 'University of Providence'),
(116351, 94735, 'fr', 'name', 'Ecologie et Ecophysiologie ForestiĆØres'),
(116352, 94735, 'en', 'name', 'Forest Ecology and Ecophysiology'),
(116353, 94736, 'en', 'name', 'Alfalah University'),
(116354, 94736, 'uz', 'name', 'Alfalah universiteti'),
(116355, 94736, 'ps', 'name', 'الفلاح Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(116356, 94737, 'en', 'name', 'Cancer Research Center'),
(116357, 94738, 'fr', 'name', 'Ɖcole Navale'),
(116358, 94739, 'en', 'name', 'Nice Sophia Antipolis University'),
(116359, 94739, 'fr', 'name', 'UniversitƩ Nice Sophia Antipolis'),
(116360, 94740, 'fr', 'name', 'DƩlƩgation Paris 11'),
(116361, 94741, 'fr', 'name', 'Institut de Neurobiologie de la MƩditerranƩe'),
(116362, 94742, 'en', 'name', 'Organisation For Economic Co-Operation and Development'),
(116363, 94742, 'fr', 'name', 'Organisation de CoopƩration et de DƩveloppement Economiques'),
(116364, 94743, 'en', 'name', 'Chemistry for Life Sciences'),
(116365, 94743, 'fr', 'name', 'Chimie Biologique pour le Vivant'),
(116366, 94744, 'fr', 'name', 'Climat, Environnement, Couplages et Incertitudes'),
(116367, 94745, 'es', 'name', 'Universidad Tecnológica de Torreón'),
(116368, 94746, 'fr', 'name', 'Microscopies, imageries et ressources analytiques en rƩgion Centre-Val de Loire'),
(116369, 94747, 'fr', 'name', 'Institut thƩmatique GƩnƩtique, gƩnomique et bioinformatique'),
(116370, 94748, 'fr', 'name', 'Brigade des Sapeurs Pompiers de Paris'),
(116371, 94748, 'en', 'name', 'Paris Fire Brigade'),
(116372, 94749, 'en', 'name', 'NUWC Newport Division'),
(116373, 94750, 'fr', 'name', 'Laboratoire Universitaire Histoire Cultures Italie Europe'),
(116374, 94751, 'fr', 'name', 'UnitƩ Mixte de Recherche EpidƩmiologique et de Surveillance Transport Travail Environnement'),
(116375, 94752, 'fr', 'name', 'Institut Marcel Mauss'),
(116376, 94753, 'en', 'name', 'Holy Child College of Education'),
(116377, 94754, 'pl', 'name', 'Instytut Badań i Innowacji w Edukacji'),
(116378, 94755, 'en', 'name', 'Asian University of Bangladesh'),
(116379, 94755, 'bn', 'name', 'ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(116380, 94756, 'en', 'name', 'National Maritime College of France'),
(116381, 94756, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure Maritime'),
(116382, 94757, 'en', 'name', 'Wuhan City College'),
(116383, 94757, 'zh', 'name', 'ę­¦ę±‰åŸŽåø‚å­¦é™¢'),
(116384, 94758, 'fr', 'name', 'DƩlƩgation Paris B'),
(116385, 94759, 'fr', 'name', 'Institut de Myologie'),
(116386, 94759, 'en', 'name', 'Institute of Myology'),
(116387, 94760, 'fr', 'name', 'Laboratoire de MƩcanique Paris-Saclay'),
(116388, 94761, 'fr', 'name', 'CommunautƩ urbaine de Lyon'),
(116389, 94761, 'en', 'name', 'Urban Community of Lyon'),
(116390, 94762, 'en', 'name', 'Banner MD Anderson Cancer Center at Banner North Colorado Medical Center'),
(116391, 94763, 'fr', 'name', 'Stress Environnementaux et Biosurveillance des Milieux Aquatiques'),
(116392, 94764, 'en', 'name', 'U.S. Army Center for Health Promotion and Preventive Medicine'),
(116393, 94765, 'fr', 'name', 'BISCEm - Biologie IntƩgrative SantƩ Chimie Environnement'),
(116394, 94766, 'es', 'name', 'Universidad de Ciencias MƩdicas de Ciego de Ɓvila'),
(116395, 94767, 'en', 'name', 'French National School for the Judiciary'),
(116396, 94767, 'fr', 'name', 'Ɖcole Nationale de la Magistrature'),
(116397, 94768, 'fr', 'name', 'Sciences, SociĆ©tĆ©, HistoricitĆ©, Ɖducation et Pratiques'),
(116398, 94769, 'fr', 'name', 'Institut franƧais du Proche-Orient'),
(116399, 94770, 'fr', 'name', 'Acquisition et Analyse de DonnƩes pour l''Histoire naturelle'),
(116400, 94771, 'fr', 'name', 'Laboratoire d''Ingénierie des Systèmes Biologiques et des Procédés'),
(116401, 94772, 'fr', 'name', 'Institut de Biologie MolƩculaire et Cellulaire'),
(116402, 94772, 'en', 'name', 'Institute of Molecular and Cellular Biology'),
(116403, 94773, 'en', 'name', 'Lille 1 University'),
(116404, 94773, 'fr', 'name', 'UniversitƩ Lille 1'),
(116405, 94774, 'fr', 'name', 'AcadƩmie Nationale de MƩdecine'),
(116406, 94774, 'en', 'name', 'National Academy of Medicine'),
(116407, 94775, 'en', 'name', 'NSWC Panama City Division'),
(116408, 94776, 'fr', 'name', 'Institut de Recherche contre les Cancers de l’Appareil Digestif'),
(116409, 94776, 'en', 'name', 'Research Institute against Digestive Cancer'),
(116410, 94777, 'fr', 'name', 'Institut National de Recherche en Sciences et Technologies pour l''Environnement et l''Agriculture'),
(116411, 94777, 'en', 'name', 'National Research Institute of Science and Technology for Environment and Agriculture'),
(116412, 94778, 'en', 'name', 'Jashore University of Science and Technology'),
(116413, 94778, 'bn', 'name', 'যশোর ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(116414, 94779, 'fr', 'name', 'Laboratoire d’Étude des MĆ©canismes Cognitifs'),
(116415, 94780, 'en', 'name', 'Max Delbrück Center'),
(116416, 94780, 'de', 'name', 'Max-Delbrück-Centrum für Molekulare Medizin in der Helmholtz-Gemeinschaft'),
(116417, 94781, 'es', 'name', 'Instituto de Problemas Nacionales'),
(116418, 94782, 'fr', 'name', 'Plateforme de chimie biologique intƩgrative de Strasbourg'),
(116419, 94783, 'en', 'name', 'National University of LanĆŗs'),
(116420, 94783, 'es', 'name', 'Universidad Nacional de LanĆŗs'),
(116421, 94784, 'en', 'name', 'EDHEC Business School'),
(116422, 94784, 'fr', 'name', 'Ecole des Hautes Etudes Commerciales du Nord'),
(116423, 94785, 'fr', 'name', 'Conseil de L''Europe'),
(116424, 94785, 'es', 'name', 'Consejo de Europa'),
(116425, 94785, 'it', 'name', 'Consiglio d''Europa'),
(116426, 94785, 'en', 'name', 'Council of Europe'),
(116427, 94785, 'de', 'name', 'Europarat'),
(116428, 94786, 'sr', 'name', 'Institut za primenu nuklearne energije'),
(116429, 94786, 'en', 'name', 'Institute for the Application of Nuclear Energy'),
(116430, 94787, 'en', 'name', 'Defense Center for Public Health - Aberdeen'),
(116431, 94788, 'en', 'name', 'Tokyo Medical and Dental University'),
(116432, 94788, 'ja', 'name', 'ę±äŗ¬åŒ»ē§‘ę­Æē§‘å¤§å­¦'),
(116433, 94789, 'fr', 'name', 'UMS BioCore'),
(116434, 94790, 'fr', 'name', 'Centre de Recherche sur la Conservation'),
(116435, 94791, 'fr', 'name', 'Centre FranƧais des Fonds et Fondations'),
(116436, 94791, 'en', 'name', 'French Foundation Centre'),
(116437, 94792, 'fr', 'name', 'Château de Longchamp'),
(116438, 94793, 'en', 'name', 'DIII-D National Fusion Facility'),
(116439, 94794, 'en', 'name', 'European and Mediterranean Plant Protection Organization'),
(116440, 94794, 'fr', 'name', 'Organisation EuropƩenne et MƩditerranƩenne pour la Protection de Plantes'),
(116441, 94795, 'fr', 'name', 'Observatoire des sciences de l''Univers Paris-Centre Ecce Terra'),
(116442, 94796, 'de', 'name', 'Hochschule für angewandte Wissenschaft und Kunst Hildesheim/Holzminden/Göttingen'),
(116443, 94796, 'en', 'name', 'University of Applied Sciences and Arts Hildesheim/Holzminden/Gƶttingen'),
(116444, 94797, 'en', 'name', 'National Institute of Technology'),
(116445, 94797, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹é«˜ē­‰å°‚é–€å­¦ę ”ę©Ÿę§‹'),
(116446, 94798, 'en', 'name', 'Pact for Youth Association'),
(116447, 94799, 'en', 'name', 'The Small Earth Nepal'),
(116448, 94800, 'fr', 'name', 'Institut SupƩrieur de Gestion de Tunis'),
(116449, 94801, 'fr', 'name', 'UniLaSalle Amiens (ESIEE-Amiens)'),
(116450, 94802, 'en', 'name', 'Naval Surface Warfare Center'),
(116451, 94803, 'sr', 'name', 'Institut za medicinska istraživanja'),
(116452, 94803, 'en', 'name', 'Institute for Medical Research'),
(116453, 94804, 'en', 'name', 'CICERO Center for International Climate Research'),
(116454, 94804, 'no', 'name', 'CICERO Senter for Klimaforskning'),
(116455, 94805, 'fr', 'name', 'Laboratoire de MathƩmatiques Nicolas Oresme'),
(116456, 94806, 'en', 'name', 'Isesaki Municipal Hospital'),
(116457, 94807, 'no_lang_code', 'name', 'Framatome (Germany)'),
(116458, 94808, 'en', 'name', 'Phu Yen Vocational College'),
(116459, 94809, 'fr', 'name', 'Maison des Sciences de l''Homme et de la SociƩtƩ Sud-Est'),
(116460, 94810, 'es', 'name', 'Instituto de Investigaciones y PolĆ­ticas del Ambiente Construido (IIPAC)'),
(116461, 94811, 'en', 'name', 'Lomonosov Moscow State University Marine Research Center LLC'),
(116462, 94811, 'ru', 'name', 'Центр морских исслеГований ŠœŠ“Š£ имени М. Š’.Ломоносова'),
(116463, 94812, 'fr', 'name', 'Maison FranƧaise d''Oxford'),
(116464, 94813, 'fr', 'name', 'Immunologie et Nouveaux Concepts en ImmunothƩrapie'),
(116465, 94813, 'en', 'name', 'Immunology and New Concepts in Immunotherapy'),
(116466, 94814, 'fr', 'name', 'HƓpital Tenon'),
(116467, 94814, 'en', 'name', 'Tenon Hospital'),
(116468, 94815, 'fr', 'name', 'HƓpital Raymond-PoincarƩ'),
(116469, 94815, 'en', 'name', 'Raymond PoincarƩ University Hospital'),
(116470, 94816, 'fr', 'name', 'SystĆØmes d’élevage mĆ©diterranĆ©ens et tropicaux'),
(116471, 94816, 'en', 'name', 'Tropical and Mediterranean Animal Production Systems'),
(116472, 94817, 'en', 'name', 'Czech Association of Doctoral Researchers'),
(116473, 94818, 'es', 'name', 'Escuela Normal Superior Federal de Aguascalientes "Profr. JosƩ Santos ValdƩs"'),
(116474, 94819, 'es', 'name', 'Gobierno de la Provincia de Mendoza'),
(116475, 94820, 'fr', 'name', 'Collecte Localisation Satellites (France)'),
(116476, 94821, 'fr', 'name', 'Lieux, IdentitƩs, eSpaces, ActivitƩs'),
(116477, 94822, 'en', 'name', 'Ukrainian Institute for Plant Variety Examination'),
(116478, 94823, 'en', 'name', 'Olga Mayenfisch Foundation'),
(116479, 94823, 'de', 'name', 'Olga Mayenfisch Stiftung'),
(116480, 94824, 'es', 'name', 'Centro Nacional de MetrologĆ­a de PanamĆ” (CENAMEP AIP)'),
(116481, 94825, 'fr', 'name', 'HƓpital de la Conception'),
(116482, 94826, 'fr', 'name', 'Institut de Recherche Vaccinale'),
(116483, 94826, 'en', 'name', 'Vaccine Research Institute'),
(116484, 94827, 'fr', 'name', 'Agence franƧaise de lutte contre le dopage'),
(116485, 94827, 'en', 'name', 'French Anti-Doping Agency'),
(116486, 94828, 'es', 'name', 'Instituto de Ambiente, HƔbitat y Energƭa'),
(116487, 94829, 'fr', 'name', 'Economie Publique'),
(116488, 94829, 'en', 'name', 'Public Economics'),
(116489, 94830, 'fr', 'name', 'Cibles et MƩdicaments des Infections et de l''ImmunitƩ'),
(116490, 94831, 'fr', 'name', 'Laboratoire Environnements, Dynamiques et Territoires de Montagne'),
(116491, 94832, 'fr', 'name', 'UniversitƩ Montesquieu Bordeaux IV'),
(116492, 94833, 'fr', 'name', 'Infections Virales et Pathologie ComparƩe'),
(116493, 94834, 'fr', 'name', 'Institut de MƩdecine de la Reproduction'),
(116494, 94834, 'en', 'name', 'Institute for Reproductive Medicine'),
(116495, 94835, 'fr', 'name', 'Centre Val de Loire'),
(116496, 94835, 'en', 'name', 'Loire Valley Centre'),
(116497, 94836, 'fr', 'name', 'Institut de Recherche en SƩmiochimie et Ethologie AppliquƩe'),
(116498, 94836, 'en', 'name', 'Research Institute and Applied Ethology in Semiochemistry'),
(116499, 94837, 'fr', 'name', 'Irasia Recherche'),
(116500, 94838, 'fr', 'name', 'MƩthodes et Histoire de l''architecture'),
(116501, 94839, 'en', 'name', 'Computer Science and Systems Laboratory'),
(116502, 94839, 'fr', 'name', 'Laboratoire d’Informatique et SystĆØmes'),
(116503, 94840, 'en', 'name', 'Paris Network for Advanced Microscopy'),
(116504, 94841, 'en', 'name', 'Institute of Applied Computing & Community Code'),
(116505, 94842, 'fr', 'name', 'Clinique VƩtƩrinaire Occitanie'),
(116506, 94843, 'fr', 'name', 'Biologie du DƩveloppement et Cellules Souches'),
(116507, 94843, 'en', 'name', 'Developmental and Stem Cell Biology'),
(116508, 94844, 'en', 'name', 'Brazilian Center for Research in Physics'),
(116509, 94844, 'pt', 'name', 'Centro Brasileiro de Pesquisas FĆ­sicas'),
(116510, 94845, 'fr', 'name', 'BiomƩcanique et Pathologie Locomotrice du Cheval'),
(116511, 94846, 'fr', 'name', 'Maison de la Recherche en Sciences Humaines'),
(116512, 94846, 'en', 'name', 'Social Sciences Research House'),
(116513, 94847, 'fr', 'name', 'HƓpital Salvator'),
(116514, 94848, 'fr', 'name', 'GƩnomique Ʃvolutive, modƩlisation et santƩ'),
(116515, 94849, 'fr', 'name', 'Catalyse, PolymƩrisation, ProcƩdƩs et MatƩriaux'),
(116516, 94849, 'en', 'name', 'Catalysis, Polymerisation, Process and Materials'),
(116517, 94850, 'fr', 'name', 'HƓpitaux Universitaires de Strasbourg'),
(116518, 94851, 'da', 'name', 'Sjællands Universitetshospital, Nykøbing F.'),
(116519, 94851, 'en', 'name', 'Zealand University Hospital, NykĆøbing F.'),
(116520, 94852, 'fr', 'name', 'ESIEE Paris'),
(116521, 94853, 'fr', 'name', 'Agence Nationale de Recherches sur le Sida et les HƩpatites Virales'),
(116522, 94854, 'fr', 'name', 'Institut de la Mer de Villefranche'),
(116523, 94855, 'en', 'name', 'Kharkiv Institute of Medicine and Biomedical Sciences'),
(116524, 94855, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицини та біомеГичних наук'),
(116525, 94856, 'fr', 'name', 'Physiopathologie, mƩtabolisme et nutrition'),
(116526, 94856, 'en', 'name', 'Physiopathology, metabolism and nutrition'),
(116527, 94857, 'en', 'name', 'Physics for Medicine Paris'),
(116528, 94857, 'fr', 'name', 'Physique pour la mƩdecine Paris'),
(116529, 94858, 'fr', 'name', 'Centre EuropƩen de la CƩramique'),
(116530, 94858, 'en', 'name', 'European Ceramics Centre'),
(116531, 94859, 'fr', 'name', 'Institut thƩmatique Bases molƩculaires et structurales du vivant'),
(116532, 94860, 'en', 'name', 'Rennes School of Business'),
(116533, 94860, 'fr', 'name', 'Ɖcole SupĆ©rieure de Commerce de Rennes'),
(116534, 94861, 'fr', 'name', 'Centre d’Etudes des Langues, Territoires et IdentitĆ©s Culturelles – Bretagne et Langues Minoritaires'),
(116535, 94862, 'fr', 'name', 'Laboratoire d’HYdrologie et de GEochimie'),
(116536, 94862, 'en', 'name', 'Laboratory of Hydrology and Geochemistry'),
(116537, 94863, 'fr', 'name', 'Biologie Fonctionnelle Insectes et Interactions'),
(116538, 94864, 'fr', 'name', 'EMMAH - Environnement Méditerranéen et Modélisation des Agro-Hydrosystèmes'),
(116539, 94865, 'fr', 'name', 'Sport et environnement social'),
(116540, 94866, 'fr', 'name', 'Institut Clinique de la Souris'),
(116541, 94866, 'en', 'name', 'Mouse Clinical Institute'),
(116542, 94867, 'en', 'name', 'Gene Therapy Laboratory'),
(116543, 94867, 'fr', 'name', 'Laboratoire de ThƩrapie GƩnique'),
(116544, 94868, 'fr', 'name', 'Architecture, Environnement & Cultures Constructives'),
(116545, 94869, 'fr', 'name', 'Caisse des DƩpƓts et Consignations'),
(116546, 94869, 'en', 'name', 'Deposits and Consignments Fund'),
(116547, 94870, 'en', 'name', 'CINEC Campus (Pvt) Ltd.'),
(116548, 94871, 'fr', 'name', 'Equipe RhizogenĆØse'),
(116549, 94871, 'en', 'name', 'Rhizogenesis Lab'),
(116550, 94872, 'fr', 'name', 'GƩnomique Bioinformatique et Applications'),
(116551, 94872, 'en', 'name', 'Laboratory Genomics, Bioinformatics, and Applications'),
(116552, 94873, 'fr', 'name', 'Institut Parisien de Chimie Physique et ThƩorique'),
(116553, 94874, 'fr', 'name', 'Autonomie, GƩrontologie, E-santƩ, Imagerie et SociƩtƩ'),
(116554, 94875, 'en', 'name', 'Light, nanomaterials, nanotechnologies'),
(116555, 94875, 'fr', 'name', 'Lumière, nanomatériaux et nanotechnologies'),
(116556, 94876, 'fr', 'name', 'Maison des Sciences de l''Homme-Alpes'),
(116557, 94877, 'en', 'name', 'Image and Pervasive Access Laboratory'),
(116558, 94878, 'no_lang_code', 'name', 'Hansa Biopharma (Sweden)'),
(116559, 94879, 'fr', 'name', 'Centre d''Etudes et de Recherches sur les Emplois et les Professionnalisations'),
(116560, 94880, 'fr', 'name', 'TBM-Core'),
(116561, 94881, 'fr', 'name', 'Imagerie et StratƩgies ThƩrapeutiques pour les Cancers et Tissus cƩrƩbraux'),
(116562, 94882, 'fr', 'name', 'Laboratoire de GƩnƩtique Cellulaire'),
(116563, 94883, 'fr', 'name', 'Neuropsychiatrie : Recherche Epidemiologique et Clinique'),
(116564, 94883, 'en', 'name', 'Neuropsychiatry Epidemiological and Clinical Research'),
(116565, 94884, 'fr', 'name', 'Institut de Relations Internationales et StratƩgiques'),
(116566, 94884, 'en', 'name', 'The French Institute for International and Strategic Affairs'),
(116567, 94885, 'en', 'name', 'S. U. Umarov Physical-Technical Institute'),
(116568, 94886, 'sv', 'name', 'IVL Svenska Miljƶinstitutet'),
(116569, 94886, 'en', 'name', 'IVL Swedish Environmental Research Institute'),
(116570, 94886, 'zh', 'name', 'ē‘žå…øēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(116571, 94887, 'id', 'name', 'Institut Teknologi dan Bisnis Kalla'),
(116572, 94888, 'fr', 'name', 'Institut d’EpidĆ©miologie Neurologique et de Neurologie Tropicale'),
(116573, 94889, 'en', 'name', 'CIHR Skin Research Training Centre'),
(116574, 94890, 'en', 'name', 'Banner Health'),
(116575, 94891, 'fr', 'name', 'Stress Abiotiques et DiffƩrenciation des VƩgƩtaux CultivƩs'),
(116576, 94892, 'es', 'name', 'Centro Internacional Franco-Argentino de Ciencias de la Información y de Sistemas'),
(116577, 94893, 'en', 'name', 'Institute of Paleoprimatology Human Paleontology Evolution and Paleoenvironments'),
(116578, 94894, 'fr', 'name', 'COMUE Languedoc-Roussillon UniversitƩs'),
(116579, 94894, 'en', 'name', 'Languedoc-Roussillon Universities'),
(116580, 94895, 'fr', 'name', 'Institut de Biologie systƩmique et synthƩtique'),
(116581, 94895, 'en', 'name', 'Institute of Systems & Synthetic Biology'),
(116582, 94896, 'en', 'name', 'Center for Research in Psychopathology and Clinical Psychology'),
(116583, 94896, 'fr', 'name', 'Centre de Recherches en Psychopathologie et Psychologie Clinique'),
(116584, 94897, 'en', 'name', 'QuantumBasel (Switzerland)'),
(116585, 94898, 'en', 'name', 'National Graduate School of Engineering Chemistry of Lille'),
(116586, 94898, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Chimie de Lille'),
(116587, 94899, 'en', 'name', 'Catholic Institute of Higher Studies'),
(116588, 94899, 'fr', 'name', 'Institut catholique d’études supĆ©rieures'),
(116589, 94900, 'en', 'name', 'IDEMS International Community Interest Company'),
(116590, 94901, 'en', 'name', 'Curvenote Inc. (Canada)'),
(116591, 94902, 'en', 'name', 'Field Observatory in Urban Hydrology'),
(116592, 94902, 'fr', 'name', 'Observatoire de terrain en hydrologie urbaine'),
(116593, 94903, 'en', 'name', 'Biomechanics and Impact Mechanics Laboratory'),
(116594, 94903, 'fr', 'name', 'Laboratoire de BiomƩcanique et MƩcanique des Chocs'),
(116595, 94904, 'fr', 'name', 'Institut de Recherche et d’Innovation'),
(116596, 94904, 'en', 'name', 'Institute of Research and Innovation'),
(116597, 94905, 'en', 'name', 'Chuo University'),
(116598, 94905, 'ja', 'name', '中央大学'),
(116599, 94906, 'fr', 'name', 'Groupe Hospitalier Mutualiste de Grenoble'),
(116600, 94906, 'en', 'name', 'Mutual Hospital Group of Grenoble'),
(116601, 94907, 'fr', 'name', 'Etude et ComprƩhension de la biodiversitƩ'),
(116602, 94908, 'fr', 'name', 'Temps, Mondes, SociƩtƩs'),
(116603, 94909, 'fr', 'name', 'AGIR Ć  dom'),
(116604, 94910, 'en', 'name', 'Westminster University'),
(116605, 94911, 'fr', 'name', 'Institut thƩmatique Immunologie, inflammation, infectiologie et microbiologie'),
(116606, 94912, 'en', 'name', 'Nakhchivan University'),
(116607, 94912, 'az', 'name', 'NaxƧıvan Universiteti'),
(116608, 94913, 'fr', 'name', 'Laboratoire Morphodynamique Continentale et CÓtière'),
(116609, 94914, 'en', 'name', 'Cergy-Pontoise University'),
(116610, 94914, 'fr', 'name', 'UniversitƩ de Cergy-Pontoise'),
(116611, 94915, 'en', 'name', 'Royal National Institute for Deaf People'),
(116612, 94916, 'fr', 'name', 'Laboratoire interdisciplinaire d’études sur les rĆ©flexivitĆ©s - Fonds Yan Thomas'),
(116613, 94917, 'fr', 'name', 'BioingƩnierie et Dynamique Microbienne aux Interfaces Alimentaires'),
(116614, 94918, 'en', 'name', 'MoreBrains Cooperative (United Kingdom)'),
(116615, 94919, 'en', 'name', 'AgroResonance Platform'),
(116616, 94919, 'fr', 'name', 'Plateforme AgroResonance'),
(116617, 94920, 'en', 'name', 'Center for Research in Neurobiology and Neurophysiology of Marseille'),
(116618, 94920, 'fr', 'name', 'Centre de Recherche en Neurobiologie - Neurophysiologie de Marseille'),
(116619, 94921, 'es', 'name', 'Laboratorio de Planificación y Gestión Estratégica'),
(116620, 94922, 'sr', 'name', 'Institut za filozofiju i druŔtvenu teoriju'),
(116621, 94922, 'en', 'name', 'Institute for Philosophy and Social Theory'),
(116622, 94923, 'fr', 'name', 'Fondation Nationale des Sciences Politiques'),
(116623, 94923, 'en', 'name', 'National Foundation of Political Science'),
(116624, 94924, 'fr', 'name', 'HƓpital Lyon Sud'),
(116625, 94925, 'fr', 'name', 'Etude longitudinale franƧaise depuis l''enfance'),
(116626, 94926, 'fr', 'name', 'Institut Mondor de Recherche BiomƩdicale'),
(116627, 94926, 'en', 'name', 'Mondor Institute of Biomedical Research'),
(116628, 94927, 'fr', 'name', 'CEPN - Centre d''Economie de l''UniversitƩ Paris Nord'),
(116629, 94928, 'fr', 'name', 'Centre Hospitalier RƩgional Universitaire de Brest'),
(116630, 94929, 'fr', 'name', 'Observatoire Oceanologique de Banyuls sur Mer'),
(116631, 94929, 'en', 'name', 'Oceanographic Observatory in Banyuls-sur-Mer'),
(116632, 94930, 'en', 'name', 'Mitochondrial and Cardiovascular Physiopathology'),
(116633, 94930, 'fr', 'name', 'Physiopathologie Cardiovasculaire et Mitochondriale'),
(116634, 94931, 'no_lang_code', 'name', 'BioData.pt'),
(116635, 94932, 'fr', 'name', 'Laboratoire des applications ThƩrapeutiques des Ultrasons'),
(116636, 94933, 'fr', 'name', 'Institut de Recherche et DƩbat sur la Gouvernance'),
(116637, 94933, 'en', 'name', 'Institute for Research and Debate on Governance'),
(116638, 94934, 'fr', 'name', 'Centre Technique du Papier'),
(116639, 94934, 'en', 'name', 'Pulp and Paper Technical Centre'),
(116640, 94935, 'en', 'name', 'Oxford University Clinical Research Unit'),
(116641, 94936, 'fr', 'name', 'Biologie des interactions hƓte-parasite'),
(116642, 94936, 'en', 'name', 'Biology of Host-parasite Interactions'),
(116643, 94937, 'sr', 'name', 'Institut za multidisciplinarna istraživanja'),
(116644, 94937, 'en', 'name', 'Institute for Multidisciplinary Research'),
(116645, 94938, 'en', 'name', 'American Hospital of Paris'),
(116646, 94938, 'fr', 'name', 'HƓpital amƩricain de paris'),
(116647, 94939, 'fr', 'name', 'Fondation Franco-NorvƩgienne'),
(116648, 94939, 'en', 'name', 'French Norwegian Foundation'),
(116649, 94940, 'no_lang_code', 'name', 'PanThera Biopharma, LLC (United States)'),
(116650, 94941, 'id', 'name', 'Politeknik Negeri Bandung'),
(116651, 94942, 'no_lang_code', 'name', 'Sirius'),
(116652, 94943, 'fr', 'name', 'Ɖcole Nationale d''Administration de Madagascar'),
(116653, 94944, 'fr', 'name', 'Institut de philosophie de Grenoble'),
(116654, 94945, 'en', 'name', 'CƩvennes National Park'),
(116655, 94945, 'fr', 'name', 'Parc national des CƩvennes'),
(116656, 94946, 'fr', 'name', 'ConfƩdƩration franƧaise dƩmocratique du travail'),
(116657, 94946, 'en', 'name', 'French Democratic Confederation of Labour'),
(116658, 94947, 'en', 'name', 'NSWC Crane Division'),
(116659, 94948, 'en', 'name', 'National Institute of Technology, Nara College'),
(116660, 94948, 'ja', 'name', 'å„ˆč‰Æå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(116661, 94949, 'fr', 'name', 'HƓpital Royal Victoria'),
(116662, 94949, 'en', 'name', 'Royal Victoria Hospital'),
(116663, 94950, 'no_lang_code', 'name', 'Alenia Aermacchi'),
(116664, 94951, 'fr', 'name', 'Centre de Recherche en Linguistique AppliquƩe'),
(116665, 94952, 'fr', 'name', 'Laboratoire Physiopathologie et GƩnƩtique du Neurone et du Muscle'),
(116666, 94953, 'en', 'name', 'Automation and Process Engineering Laboratory'),
(116667, 94953, 'fr', 'name', 'Laboratoire d''Automatique et de GƩnie des ProcƩdƩs'),
(116668, 94954, 'en', 'name', 'Center for Physiopathology of Toulouse Purpan'),
(116669, 94954, 'fr', 'name', 'Centre de Physiopathologie de Toulouse-Purpan'),
(116670, 94955, 'fr', 'name', 'Institut des Sciences Cognitives'),
(116671, 94955, 'en', 'name', 'Institute for Cognitive Science'),
(116672, 94956, 'fr', 'name', 'Groupe de recherche sur les enjeux de la communication'),
(116673, 94957, 'fr', 'name', 'Trajectoires. De la sĆ©dentarisation Ć  l’État'),
(116674, 94958, 'fr', 'name', 'Maladies rƩnales frƩquentes et rares : des mƩcanismes molƩculaires Ơ la mƩdecine personnalisƩe'),
(116675, 94959, 'fr', 'name', 'Observatoire OcƩanologique de Banyuls-sur-Mer'),
(116676, 94960, 'fr', 'name', 'Espaces et SociƩtƩs'),
(116677, 94961, 'fr', 'name', 'BibliothĆØque publique d''information'),
(116678, 94961, 'en', 'name', 'Public Information Library'),
(116679, 94962, 'es', 'name', 'Instituto de Investigaciones Sociales'),
(116680, 94963, 'fr', 'name', 'Centre de donnƩes socio-politiques de Sciences Po'),
(116681, 94963, 'en', 'name', 'Sciences Po Center for Socio-Political Data'),
(116682, 94964, 'fr', 'name', 'Observatoire des Sciences de l''Univers de Grenoble'),
(116683, 94965, 'fr', 'name', 'Institut de recherches philosophiques de Lyon'),
(116684, 94966, 'fr', 'name', 'Laboratoire d''Excellence Canaux Ioniques d''Intérêt Thérapeutique'),
(116685, 94966, 'en', 'name', 'Laboratory of Excellence in Ion Channel Science and Therapeutics'),
(116686, 94967, 'en', 'name', 'University of Lille Nord de France'),
(116687, 94967, 'fr', 'name', 'UniversitƩ Lille Nord de France'),
(116688, 94968, 'fr', 'name', 'Centre de Recherche d''Albi en gĆ©nie des ProcĆ©dĆ©s, des SOlides DivisĆ©s, de l''Ɖnergie et de l''Environnement'),
(116689, 94969, 'en', 'name', 'Autonomous University of Nuevo León'),
(116690, 94969, 'es', 'name', 'Universidad Autónoma de Nuevo León'),
(116691, 94970, 'es', 'name', 'Instituto de Radioastronomƭa MilimƩtrica'),
(116692, 94971, 'en', 'name', 'Unit in Biological Sciences and Biotechnologies'),
(116693, 94971, 'fr', 'name', 'UnitƩ en Sciences Biologiques et Biotechnologies de Nantes'),
(116694, 94972, 'en', 'name', 'Allegro'),
(116695, 94972, 'no_lang_code', 'name', 'Allegro (Poland)'),
(116696, 94973, 'fr', 'name', 'Centre d’Investigation Clinique Innovation Technologique de Nancy'),
(116697, 94973, 'en', 'name', 'Nancy Clinical Investigation Centre Innovative Technology'),
(116698, 94974, 'fr', 'name', 'Centre RĆ©gional d’Innovation et de Transferts Technologiques des Industries du Bois'),
(116699, 94975, 'en', 'name', 'RMeS - Regenerative Medicine and Skeleton'),
(116700, 94976, 'en', 'name', 'Institute of Chemical Physics NAS RA'),
(116701, 94977, 'en', 'name', 'Center for Research in Transplantation and Translational Immunology'),
(116702, 94977, 'fr', 'name', 'Centre de Recherche en Transplantation et Immunologie'),
(116703, 94978, 'en', 'name', 'Avalanche Canada'),
(116704, 94979, 'fr', 'name', 'Institut Denis Poisson'),
(116705, 94980, 'en', 'name', 'Paris Diderot University'),
(116706, 94980, 'fr', 'name', 'UniversitƩ Paris Diderot'),
(116707, 94981, 'fr', 'name', 'Centre d''Ʃtudes sud-asiatiques et himalayennes'),
(116708, 94982, 'en', 'name', 'Panthera Biopartners'),
(116709, 94983, 'en', 'name', 'VF Calibration Laboratory (Czechia)'),
(116710, 94984, 'en', 'name', 'Biology of Extremophiles Laboratory'),
(116711, 94984, 'fr', 'name', 'Laboratoire de Biologie Moleculaire du GĆØne chez les Extremophiles'),
(116712, 94985, 'fr', 'name', 'Institut de Neurosciences des SystĆØmes'),
(116713, 94986, 'fr', 'name', 'DĆ©lĆ©gation RĆ©gionale Provence-Alpes-CĆ“te d’Azur et Corse'),
(116714, 94987, 'fr', 'name', 'Institut franƧais d''Ʃtudes sur l''Asie centrale'),
(116715, 94988, 'en', 'name', 'The Enteric Nervous System in Gut and Brain Disorders'),
(116716, 94989, 'en', 'name', 'B. Verkin Institute for Low Temperature Physics and Engineering of the National Academy of Sciences of Ukraine'),
(116717, 94989, 'uk', 'name', 'Фізико-технічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠøŠ·ŃŒŠŗŠøŃ… Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€ ім. Š‘.І. Вєркіна ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(116718, 94990, 'en', 'name', 'Nepal Academy of Tourism and Hotel Management'),
(116719, 94991, 'en', 'name', 'Research Unit on Infectious and Emerging Tropical Diseases'),
(116720, 94991, 'fr', 'name', 'UnitƩ de Recherche sur les Maladies Infectieuses et Tropicales Emergentes'),
(116721, 94992, 'fr', 'name', 'Laboratoire MatƩriaux et DurabilitƩ des Constructions'),
(116722, 94992, 'en', 'name', 'Laboratory for Materials and Construction Works Durability'),
(116723, 94993, 'fr', 'name', 'Organisation Mondiale de la SantƩ Animale'),
(116724, 94993, 'en', 'name', 'World Organisation for Animal Health'),
(116725, 94994, 'fr', 'name', 'Ecole d''ingénieurs en génie des systèmes industriels'),
(116726, 94995, 'fr', 'name', 'Forum international des transports'),
(116727, 94995, 'en', 'name', 'International Transport Forum'),
(116728, 94996, 'fr', 'name', 'Conseil international des monuments et des sites'),
(116729, 94996, 'en', 'name', 'International Council on Monuments and Sites'),
(116730, 94997, 'en', 'name', 'Dragomanov Ukrainian State University'),
(116731, 94997, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠœŠøŃ…Š°Š¹Š»Š° Драгоманова'),
(116732, 94998, 'en', 'name', 'Transportation Security Administration'),
(116733, 94999, 'en', 'name', 'Pierre MendĆØs-France University'),
(116734, 94999, 'fr', 'name', 'Université Pierre Mendès France'),
(116735, 95000, 'en', 'name', 'Astronomical Observatory of Rome'),
(116736, 95000, 'it', 'name', 'Osservatorio Astronomico di Roma'),
(116737, 95001, 'fr', 'name', 'Centre de recherche sur les InƩgalitƩs Sociales'),
(116738, 95002, 'fr', 'name', 'Bipar'),
(116739, 95003, 'no', 'name', 'MiljĆøfaglig Utredning AS (Norway)'),
(116740, 95004, 'fr', 'name', 'Nutrition, DiabĆØte et Cerveau'),
(116741, 95005, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de CĆ©ramique Industrielle'),
(116742, 95006, 'es', 'name', 'Instituto Nacional de EstƔndares y Tecnologƭa'),
(116743, 95006, 'en', 'name', 'National Institute of Standards and Technology'),
(116744, 95007, 'en', 'name', 'NanƧay Radio Observatory'),
(116745, 95007, 'fr', 'name', 'Observatoire Radioastronomique de NanƧay'),
(116746, 95008, 'fr', 'name', 'Institut pour la Recherche AppliquƩe et l''ExpƩrimentation en GƩnie Civil'),
(116747, 95008, 'en', 'name', 'Institute for Applied Research and Experimentation in Civil Engineering'),
(116748, 95009, 'en', 'name', 'ADS Environmental Services (Malaysia)'),
(116749, 95010, 'sr', 'name', 'Institut za hemiju, tehnologiju i metalurgiju'),
(116750, 95010, 'en', 'name', 'Institute of Chemistry, Technology and Metallurgy'),
(116751, 95011, 'sl', 'name', 'InŔtitut za Nutricionistiko'),
(116752, 95011, 'en', 'name', 'Slovenian Nutrition Institute'),
(116753, 95012, 'fr', 'name', 'MatƩriaux DivisƩs, Interfaces, RƩactivitƩ, Electrochimie'),
(116754, 95013, 'fr', 'name', 'HƓpital de Melun'),
(116755, 95013, 'en', 'name', 'Melun Hospital'),
(116756, 95014, 'fr', 'name', 'Institut universitaire du cancer de Toulouse Oncopole'),
(116757, 95014, 'en', 'name', 'University Cancer Institute Toulouse Oncopole'),
(116758, 95015, 'fr', 'name', 'Agence Parisienne du Climat'),
(116759, 95015, 'en', 'name', 'Paris Climate Agency'),
(116760, 95016, 'fr', 'name', 'Sommeil, Addiction et Neuropsychiatrie'),
(116761, 95017, 'en', 'name', 'Science and Technology of Music and Sound Laboratory'),
(116762, 95017, 'fr', 'name', 'Sciences et Technologies de la Musique et du Son'),
(116763, 95018, 'en', 'name', 'Naval Undersea Warfare Center'),
(116764, 95019, 'en', 'name', 'University of Regensburg'),
(116765, 95019, 'de', 'name', 'UniversitƤt Regensburg'),
(116766, 95020, 'fr', 'name', 'Ministere de l''Education Nationale'),
(116767, 95020, 'en', 'name', 'Ministry of National Education'),
(116768, 95021, 'no_lang_code', 'name', 'Cree (China)'),
(116769, 95022, 'en', 'name', 'University of the Littoral Opal Coast'),
(116770, 95022, 'fr', 'name', 'UniversitƩ du littoral cƓte d''opale'),
(116771, 95023, 'fr', 'name', 'Observatoire des sciences de l''Univers en rƩgion Centre Val de Loire'),
(116772, 95023, 'en', 'name', 'Universe Sciences Observatory of the Centre Val de Loire region'),
(116773, 95024, 'fr', 'name', 'Institut FranƧais d''Ɖtudes Anatoliennes'),
(116774, 95025, 'es', 'name', 'Instituto de Investigaciones en Desarrollo Urbano, TecnologĆ­a y Vivienda'),
(116775, 95026, 'fr', 'name', 'Institut de CancƩrologie de Lorraine'),
(116776, 95027, 'fr', 'name', 'Direction GƩnƩrale DƩlƩguƩe Ơ la Science'),
(116777, 95028, 'fr', 'name', 'Biologie des maladies cardiovasculaires'),
(116778, 95028, 'en', 'name', 'Biology of Cardiovascular Diseases'),
(116779, 95029, 'fr', 'name', 'Institut des Technologies AvancƩes en sciences du Vivant'),
(116780, 95029, 'en', 'name', 'Institute for Advanced Technology in life science'),
(116781, 95030, 'fr', 'name', 'Centre Hospitalier Universitaire de Grenoble'),
(116782, 95030, 'en', 'name', 'Grenoble University Hospital Centre'),
(116783, 95031, 'fr', 'name', 'Ɖcole Nationale d''Administration'),
(116784, 95032, 'fr', 'name', 'Chambre de Commerce et d''industrie de Paris'),
(116785, 95032, 'en', 'name', 'Paris Chamber of Commerce'),
(116786, 95033, 'en', 'name', 'Health and Care Research Wales'),
(116787, 95033, 'cy', 'name', 'Ymchwil Iechyd a Gofal Cymru'),
(116788, 95034, 'fr', 'name', 'Association Francaise contre les Myopathies'),
(116789, 95034, 'en', 'name', 'French Muscular Dystrophy Association'),
(116790, 95035, 'en', 'name', 'Wolfspeed, Inc. (United States)'),
(116791, 95036, 'en', 'name', 'Nelson College London'),
(116792, 95037, 'fr', 'name', 'Laboratoire de Vectorologie et ThƩrapeutiques AnticancƩreuses'),
(116793, 95037, 'en', 'name', 'Laboratory for Vectorology in Anticancer Therapy'),
(116794, 95038, 'fr', 'name', 'Assistance Publique HƓpitaux de Marseille'),
(116795, 95038, 'en', 'name', 'Marseille Public University Hospital System'),
(116796, 95039, 'es', 'name', 'Universidad de las Illes Balears'),
(116797, 95039, 'gl', 'name', 'Universidade das Illas Baleares'),
(116798, 95039, 'ca', 'name', 'Universitat de les Illes Balears'),
(116799, 95039, 'en', 'name', 'University of the Balearic Islands'),
(116800, 95040, 'fr', 'name', 'Equipe de recherche de Lyon en Sciences de l''Information et de la Communication'),
(116801, 95041, 'en', 'name', 'International Society for Biocuration'),
(116802, 95042, 'en', 'name', 'Wiawso College of Education'),
(116803, 95043, 'en', 'name', 'SRKR Engineering College'),
(116804, 95044, 'en', 'name', 'Brazilian Synchrotron Light Laboratory'),
(116805, 95044, 'pt', 'name', 'Laboratório Nacional de Luz Síncrotron'),
(116806, 95045, 'fr', 'name', 'Laboratoire Informatique d''Avignon'),
(116807, 95046, 'fr', 'name', 'Centre Hospitalier Universitaire de Nantes'),
(116808, 95047, 'en', 'name', 'Vancouver Coastal Health Research Institute'),
(116809, 95048, 'en', 'name', 'French Defence Health Service'),
(116810, 95048, 'fr', 'name', 'Service de SantƩ des ArmƩes'),
(116811, 95049, 'no_lang_code', 'name', 'AIntelia (Turkey)'),
(116812, 95050, 'en', 'name', 'NSWC Corona Division'),
(116813, 95051, 'fr', 'name', 'Architecture Urbanisme SociƩtƩ : Savoirs, Enseignement, Recherche'),
(116814, 95052, 'en', 'name', 'Chevreul Institute'),
(116815, 95052, 'fr', 'name', 'Institut Chevreul'),
(116816, 95053, 'fr', 'name', 'MARGE'),
(116817, 95054, 'fr', 'name', 'Laboratoire d''Ecophysiologie VƩgƩtale, Agronomie & nutritions N.C.S'),
(116818, 95055, 'fr', 'name', 'HƓpital Arnaud de Villeneuve'),
(116819, 95056, 'en', 'name', 'National Institute for Innovation in Manufacturing Biopharmaceuticals'),
(116820, 95057, 'no_lang_code', 'name', 'Signatope GmbH (Germany)'),
(116821, 95058, 'en', 'name', 'Station Marine d''Endoume'),
(116822, 95059, 'fr', 'name', 'Laboratoire Interdisciplinaire de Recherche en Innovations SociƩtales'),
(116823, 95060, 'en', 'name', 'Max Planck Institute for Physics'),
(116824, 95060, 'de', 'name', 'Max-Planck-Institut für Physik'),
(116825, 95061, 'en', 'name', 'University of Marne la VallƩe'),
(116826, 95061, 'fr', 'name', 'UniversitƩ Paris-Est Marne-la-VallƩe'),
(116827, 95062, 'fr', 'name', 'Signalisation Fonctionnelle des Canaux Ioniques et RƩcepteurs'),
(116828, 95063, 'fr', 'name', 'HƓpital de la Timone'),
(116829, 95064, 'en', 'name', 'United States National Committee of the International Council on Monuments and Sites'),
(116830, 95065, 'en', 'name', 'Sigma Clermont'),
(116831, 95066, 'fr', 'name', 'Conservatoire national supƩrieur de musique et de danse de Paris'),
(116832, 95066, 'en', 'name', 'Paris Conservatory'),
(116833, 95067, 'fr', 'name', 'HƓpital Nord'),
(116834, 95068, 'fr', 'name', 'Institut thƩmatique Biologie cellulaire, dƩveloppement et Ʃvolution'),
(116835, 95069, 'fr', 'name', 'Agence d''Aide Ơ la CoopƩration Technique Et au DƩveloppement'),
(116836, 95069, 'en', 'name', 'Agency for Technical Cooperation and Development'),
(116837, 95070, 'en', 'name', 'Daejeon Woori Hospital'),
(116838, 95070, 'ko', 'name', 'ėŒ€ģ „ģš°ė¦¬ė³‘ģ›'),
(116839, 95071, 'fr', 'name', 'IschƩmie Reperfusion, MƩtabolisme et Inflammation StƩrile en Transplantation'),
(116840, 95072, 'fr', 'name', 'Centre de recherche en Ʃconomie de Grenoble'),
(116841, 95073, 'en', 'name', 'ColdQuanta, Inc., DBA Infleqtion (United States)'),
(116842, 95074, 'en', 'name', 'National Institute for Social Care and Health Research'),
(116843, 95075, 'en', 'name', 'Auckland Institute of Studies'),
(116844, 95075, 'mi', 'name', 'Te Whare Wānanga ki Hato Herena'),
(116845, 95076, 'fr', 'name', 'Pratiques et ThƩories de l''art contemporain'),
(116846, 95077, 'fr', 'name', 'Institut d''Etudes Transtextuelles et Transculturelles'),
(116847, 95078, 'fr', 'name', 'FƩdƩration Hospitalo-Universitaire, Paris Center for Microbiome Medicine'),
(116848, 95079, 'fr', 'name', 'Centre de recherche en droit et management des services de santƩ'),
(116849, 95080, 'fr', 'name', 'Laboratoire d’Informatique Signal et Image de la CĆ“te d’Opale'),
(116850, 95080, 'en', 'name', 'Opal Coast Signal and Image Computer Laboratory'),
(116851, 95081, 'en', 'name', 'International Astronomical Union'),
(116852, 95081, 'fr', 'name', 'Union astronomique internationale'),
(116853, 95082, 'en', 'name', 'University of Delta Agbor'),
(116854, 95083, 'fr', 'name', 'Centre de recherche Douglas'),
(116855, 95083, 'en', 'name', 'Douglas Mental Health University Institute'),
(116856, 95084, 'en', 'name', 'Paris Descartes University'),
(116857, 95084, 'fr', 'name', 'UniversitƩ Paris Descartes'),
(116858, 95085, 'en', 'name', 'Cyprus University of Technology'),
(116859, 95085, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(116860, 95086, 'no_lang_code', 'name', 'Freescale Semiconductor (France)'),
(116861, 95087, 'en', 'name', 'Royal Holloway University of London'),
(116862, 95088, 'es', 'name', 'Red Iberoamericana de Neurociencia Cognitiva'),
(116863, 95089, 'ca', 'name', 'Instituto del Conurbano'),
(116864, 95090, 'fr', 'name', 'Laboratoire Interdisciplinaire Sciences, Innovations, SociƩtƩs'),
(116865, 95091, 'fr', 'name', 'Agence franƧaise de dƩveloppement'),
(116866, 95091, 'en', 'name', 'French Development Agency'),
(116867, 95092, 'en', 'name', 'Seventh-day Adventist College of Education'),
(116868, 95093, 'no_lang_code', 'name', 'Bayer (France)'),
(116869, 95094, 'fr', 'name', 'Relais d''information sur les sciences de la cognition'),
(116870, 95095, 'fr', 'name', 'France, AmƩriques, Espagne, SociƩtƩs, Pouvoirs, Acteurs'),
(116871, 95096, 'fr', 'name', 'Fondation Fyssen'),
(116872, 95096, 'en', 'name', 'Fyssen Foundation'),
(116873, 95097, 'fr', 'name', 'Laboratoire de Psychologie Cognitive'),
(116874, 95098, 'no_lang_code', 'name', 'Ceralink (United States)'),
(116875, 95099, 'en', 'name', 'NSWC Carderock Division'),
(116876, 95100, 'no_lang_code', 'name', 'Arkansas Power Electronics International'),
(116877, 95101, 'no_lang_code', 'name', 'Orano (France)'),
(116878, 95102, 'fr', 'name', 'Maison Asie Pacifique'),
(116879, 95103, 'fr', 'name', 'UniversitƩ Bordeaux-I'),
(116880, 95104, 'fr', 'name', 'Agence internationale de l''Ʃnergie'),
(116881, 95104, 'en', 'name', 'International Energy Agency'),
(116882, 95105, 'fr', 'name', 'Centre d’Archives en Philosophie, Histoire et Ɖdition des Sciences'),
(116883, 95106, 'fr', 'name', 'BiodiversitƩ et Biotechnologie Fongiques'),
(116884, 95106, 'en', 'name', 'Fungal Biodiversity and Biotechnology'),
(116885, 95107, 'es', 'name', 'Departamento de Seguridad Nacional de los Estados Unidos'),
(116886, 95107, 'en', 'name', 'United States Department of Homeland Security'),
(116887, 95108, 'en', 'name', 'NHS Digital'),
(116888, 95109, 'fr', 'name', 'Direction des Services de la Navigation AƩrienne'),
(116889, 95109, 'en', 'name', 'Directorate of Air Navigation Services'),
(116890, 95110, 'fr', 'name', 'Bases de donnƩes sur la BiodiversitƩ, Ecologie, Environnement et SociƩtƩs'),
(116891, 95111, 'fr', 'name', 'Ɖcole de Psychologues Praticien'),
(116892, 95112, 'fr', 'name', 'Centre d’histoire de Sciences Po'),
(116893, 95112, 'en', 'name', 'Sciences Po Centre for History'),
(116894, 95113, 'fr', 'name', 'Laboratoire Roberval'),
(116895, 95114, 'fr', 'name', 'Laboratoire Arts et pratiques du texte, de l’image, de l’écran et de la scĆØne'),
(116896, 95115, 'fr', 'name', 'Laboratoire de Recherche sur la Croissance Cellulaire, la RƩparation et la RƩgƩnƩration Tissulaires'),
(116897, 95116, 'fr', 'name', 'Institut MƩditerranƩen des Sciences de l''Information et de la Communication'),
(116898, 95117, 'no_lang_code', 'name', 'Agri Obtentions (France)'),
(116899, 95118, 'no', 'name', 'Nasjonalt folkehelseinstitutt'),
(116900, 95118, 'en', 'name', 'Norwegian Institute of Public Health'),
(116901, 95119, 'en', 'name', 'National Forests Office'),
(116902, 95119, 'fr', 'name', 'Office National des ForĆŖts'),
(116903, 95120, 'en', 'name', 'Safety and Quality of Processed Fruit and Vegetables'),
(116904, 95120, 'fr', 'name', 'SƩcuritƩ et QualitƩ des Produits d''Origine VƩgƩtale'),
(116905, 95121, 'fr', 'name', 'Centre Hospitalier Universitaire de Poitiers'),
(116906, 95122, 'fr', 'name', 'Chimie Biologie Innovation'),
(116907, 95123, 'en', 'name', 'Baku Eurasian University'),
(116908, 95124, 'fr', 'name', 'Institut de Chimie MolƩculaire de Paris : organique, inorganique et biologique'),
(116909, 95125, 'en', 'name', 'Epigenetics, Data, Politics'),
(116910, 95126, 'en', 'name', 'World Organisation for Animal Health'),
(116911, 95127, 'en', 'name', 'NextSense'),
(116912, 95128, 'fr', 'name', 'Equipe de Recherche en EpidƩmiologie Nutritionnelle'),
(116913, 95128, 'en', 'name', 'Nutritional Epidemiology Research Unit'),
(116914, 95129, 'fr', 'name', 'Laboratoire de Biochimie'),
(116915, 95129, 'en', 'name', 'Laboratory of BioChemistry'),
(116916, 95130, 'en', 'name', 'Innovation and Development in Agriculture and Food'),
(116917, 95131, 'fr', 'name', 'Institut de Radioastronomie MillimƩtrique'),
(116918, 95131, 'en', 'name', 'International Research Institute for Radio Astronomy'),
(116919, 95132, 'fr', 'name', 'Laboratoire Physiologie Biotechnologie des Algues'),
(116920, 95132, 'en', 'name', 'Physiology and Biotechnology of Algae laboratory'),
(116921, 95133, 'en', 'name', 'U.S. Army Engineer Research and Development Center'),
(116922, 95134, 'fr', 'name', 'Laboratoire des MatƩriaux Surfaces et ProcƩdƩs pour la Catalyse'),
(116923, 95135, 'en', 'name', 'Quang Nam University'),
(116924, 95136, 'fr', 'name', 'Laboratoire sur le Langage, le Cerveau et la Cognition'),
(116925, 95136, 'en', 'name', 'Laboratory for Language, Brain and Cognition'),
(116926, 95137, 'no_lang_code', 'name', 'Imam Khomeini Hospital'),
(116927, 95137, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų§Ł…Ų§Ł… Ų®Ł…ŪŒŁ†ŪŒ تهران'),
(116928, 95138, 'fr', 'name', 'Conseil RƩgional Limousin'),
(116929, 95138, 'en', 'name', 'Limousin Regional Council'),
(116930, 95139, 'fr', 'name', 'Centre de GƩnƩtique MƩdicale de Marseille'),
(116931, 95139, 'en', 'name', 'Marseille Medical Genetics'),
(116932, 95140, 'fr', 'name', 'Laboratoire Souterrain Ć  Bas Bruit'),
(116933, 95140, 'en', 'name', 'Low Noise Inter-Disciplinary Underground Science & Technology'),
(116934, 95141, 'en', 'name', 'Police Staff College'),
(116935, 95141, 'bn', 'name', 'পুলিশ ą¦øą§ą¦Ÿą¦¾ą¦« ą¦•ą¦²ą§‡ą¦œ'),
(116936, 95142, 'id', 'name', 'UIN Raden Mas Said Surakarta'),
(116937, 95143, 'no_lang_code', 'name', 'Telsy (Italy)'),
(116938, 95144, 'fr', 'name', 'Laboratoire CarMeN'),
(116939, 95145, 'fr', 'name', 'Institut d’Etudes Sociales et MĆ©diatiques'),
(116940, 95145, 'en', 'name', 'Social and Media Studies Institute'),
(116941, 95145, 'ar', 'name', 'معهدالدراسات Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© و Ų§Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ©'),
(116942, 95146, 'tr', 'name', 'Değerler Eğitimi Merkezi'),
(116943, 95147, 'en', 'name', 'International Criminal Police Organization'),
(116944, 95147, 'fr', 'name', 'Organisation internationale de police criminelle'),
(116945, 95148, 'fr', 'name', 'HƓpital Sainte-Marguerite'),
(116946, 95149, 'en', 'name', 'NSWC Philadelphia Division'),
(116947, 95150, 'en', 'name', 'French National Institute for Agricultural Research'),
(116948, 95150, 'fr', 'name', 'Institut National de la Recherche Agronomique'),
(116949, 95151, 'fr', 'name', 'Centre d’études des langues et littĆ©ratures anciennes et modernes'),
(116950, 95152, 'fr', 'name', 'Laboratoire Passages XX_XXI'),
(116951, 95153, 'no_lang_code', 'name', 'Framatome (France)'),
(116952, 95154, 'fr', 'name', 'Union des HƓpitaux pour les Achats'),
(116953, 95154, 'en', 'name', 'Union of Hospitals for Purchasing'),
(116954, 95155, 'en', 'name', 'Construction Engineering Research Laboratory'),
(116955, 95156, 'fr', 'name', 'Institut supƩrieur des arts de Toulouse'),
(116956, 95157, 'fr', 'name', 'Institut National de la Recherche Agronomique'),
(116957, 95158, 'no_lang_code', 'name', 'TDK (United States)'),
(116958, 95159, 'fr', 'name', 'DƩlƩgation RƩgionale Grand Ouest'),
(116959, 95160, 'fr', 'name', 'Pharmacologie des anti-infectieux et antibiorƩsistance'),
(116960, 95160, 'en', 'name', 'Pharmacology of Antimicrobial Agents and antibioResistance'),
(116961, 95161, 'fr', 'name', 'Agence pour les MathƩmatiques en Interaction avec l''Entreprise et la SociƩtƩ'),
(116962, 95162, 'en', 'name', 'Indo-French Centre for Applied Mathematics'),
(116963, 95163, 'en', 'name', 'Offinso College of Education'),
(116964, 95164, 'fr', 'name', 'Structure et PropriƩtƩs d''Architectures MolƩculaires'),
(116965, 95165, 'de', 'name', 'Stiftung Alfried Krupp Kolleg Greifswald'),
(116966, 95166, 'es', 'name', 'Institut Pasteur de Montevideo'),
(116967, 95167, 'fr', 'name', 'HƓpital privƩ du Confluent'),
(116968, 95168, 'en', 'name', 'Sheikh Saqr Laboratory'),
(116969, 95169, 'en', 'name', 'Rufus Giwa Polytechnic'),
(116970, 95170, 'es', 'name', 'Fundación Universitaria María Cano'),
(116971, 95171, 'fr', 'name', 'Ɖquipe de Recherche sur les Mutations de l''Europe et de ses SociĆ©tĆ©s'),
(116972, 95172, 'en', 'name', 'Humanities Montana'),
(116973, 95173, 'en', 'name', 'Israel National Research Center for Electrochemical Propulsion'),
(116974, 95174, 'en', 'name', 'Nevada Humanities'),
(116975, 95175, 'fr', 'name', 'Institut Pasteur du Cambodge'),
(116976, 95176, 'fr', 'name', 'Institut Pasteur de Dakar'),
(116977, 95177, 'fr', 'name', 'Psychologie : Interactions, Temps, Emotions, Cognition'),
(116978, 95178, 'id', 'name', 'Universitas Islam Negeri Ar-Raniry'),
(116979, 95179, 'fr', 'name', 'UnitƩ de Recherche Pluridisciplinaire Sport, SantƩ, SociƩtƩ'),
(116980, 95180, 'es', 'name', 'Universidad Tecnologica de Durango'),
(116981, 95181, 'fr', 'name', 'Laboratoire AimƩ Cotton'),
(116982, 95182, 'es', 'name', 'Escuela Nacional de AntropologĆ­a e Historia'),
(116983, 95183, 'en', 'name', 'Abbott Diabetes Care (United States)'),
(116984, 95184, 'en', 'name', 'Methodist College of Education'),
(116985, 95185, 'en', 'name', 'North Carolina Humanities Council'),
(116986, 95186, 'fr', 'name', 'Institut de Recherche sur les Composants logiciels et matƩriels pour l''Information et la Communication AvancƩe'),
(116987, 95187, 'en', 'name', 'Ministry of Justice'),
(116988, 95187, 'fr', 'name', 'MinistĆØre de la Justice'),
(116989, 95188, 'fr', 'name', 'Transitions Savoirs MƩdias Territoires'),
(116990, 95189, 'it', 'name', 'Biogem'),
(116991, 95190, 'en', 'name', 'McCoy College of Education'),
(116992, 95191, 'fr', 'name', 'Centre pour les humanitƩs numƩriques et l''histoire de la justice');
INSERT INTO `ror_settings` VALUES
(116993, 95192, 'en', 'name', 'Moscow University of the Ministry of Internal Affairs of Russia'),
(116994, 95192, 'ru', 'name', 'Московский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации имени Š’. ŠÆ. ŠšŠøŠŗŠ¾Ń‚Ń'),
(116995, 95193, 'sv', 'name', 'Futurum - Akademin fƶr HƤlsa och VƄrd'),
(116996, 95194, 'en', 'name', 'Humanities North Dakota'),
(116997, 95195, 'en', 'name', 'Korea Hydro and Nuclear Power (Korea)'),
(116998, 95195, 'ko', 'name', 'ķ•œźµ­ģˆ˜ė „ģ›ģžė „'),
(116999, 95196, 'fr', 'name', 'UnitƩ de MƩcanique de Lille - Joseph Boussinesq'),
(117000, 95197, 'fr', 'name', 'Laboratoire de Virologie - PathogenĆØse virale'),
(117001, 95198, 'en', 'name', 'University of Education, Winneba'),
(117002, 95199, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ¤ć‚Æćƒ«ćƒˆćƒ»ćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶č²”å›£'),
(117003, 95199, 'en', 'name', 'Yakult Bio-Science Foundation (Japan)'),
(117004, 95200, 'fr', 'name', 'Ramsay SantƩ HƓpital privƩ des Peupliers'),
(117005, 95201, 'en', 'name', 'Beijing Intelligent Entropy Science & Technology Co. Ltd.'),
(117006, 95202, 'en', 'name', 'Karnavati University'),
(117007, 95203, 'fr', 'name', 'Institut thƩmatique SantƩ Publique'),
(117008, 95204, 'fr', 'name', 'Centre d''Etudes en Civilisations, Langues et Littératures Etrangères'),
(117009, 95205, 'fr', 'name', 'Laboratoire ModƩlisation et Exploration des MatƩriaux'),
(117010, 95206, 'en', 'name', 'Institute for Translational Research in Inflammation'),
(117011, 95207, 'ha', 'name', 'Kwalejin Ilimi ta St. Teresa'),
(117012, 95207, 'en', 'name', 'St. Teresa''s College of Education'),
(117013, 95208, 'fr', 'name', 'Facteurs de risque et dƩterminants molƩculaires des maladies liƩes au vieillissement'),
(117014, 95209, 'ha', 'name', 'Kwalejin Ilimi ta Wesley'),
(117015, 95209, 'en', 'name', 'Wesley College of Education'),
(117016, 95210, 'en', 'name', 'Cluster in Biomedicine'),
(117017, 95211, 'en', 'name', 'KISTI National Supercomputing Center'),
(117018, 95211, 'ko', 'name', 'źµ­ź°€ģŠˆķ¼ģ»“ķ“ØķŒ…ģ„¼ķ„°ėŠ”'),
(117019, 95212, 'en', 'name', 'Japan Cardiovascular Research Foundation'),
(117020, 95212, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å¾Ŗē’°å™Øē—…ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(117021, 95213, 'en', 'name', 'Humanities Nebraska'),
(117022, 95214, 'en', 'name', 'School of Engineering of the City of Paris'),
(117023, 95214, 'fr', 'name', 'Ɖcole des IngĆ©nieurs de la Ville de Paris'),
(117024, 95215, 'pt', 'name', 'Autarquia de Ensino Superior de Garanhuns'),
(117025, 95216, 'en', 'name', 'Humanities West'),
(117026, 95217, 'en', 'name', 'Agricultural Sciences and Natural Resources University of Khuzestan'),
(117027, 95218, 'es', 'name', 'Universidad de Ciego de Ɓvila'),
(117028, 95219, 'es', 'name', 'Instituto Tecnológico de Aguascalientes'),
(117029, 95220, 'fr', 'name', 'Centre d''Ʃtudes et de recherche en droit administratif, constitutionnel, financier et fiscal'),
(117030, 95221, 'en', 'name', 'Wenzhou University of Technology'),
(117031, 95222, 'en', 'name', 'Lille Inflammation Research International Center'),
(117032, 95223, 'fr', 'name', 'Groupe de Recherche sur les formes Injectables et les Technologies AssociƩes'),
(117033, 95224, 'en', 'name', 'Catholic University of Santa MarĆ­a'),
(117034, 95224, 'es', 'name', 'Universidad Católica de Santa María'),
(117035, 95225, 'no_lang_code', 'name', 'Novartis (Switzerland)'),
(117036, 95226, 'en', 'name', 'Humanities Kansas'),
(117037, 95227, 'en', 'name', 'Vermont Humanities'),
(117038, 95228, 'en', 'name', 'Yamaguchi Heisei Hospital'),
(117039, 95229, 'pt', 'name', 'Faculdade de Tecnologia de SĆ£o Paulo'),
(117040, 95230, 'en', 'name', 'Salale University'),
(117041, 95231, 'en', 'name', 'National Institute of Technology, Puducherry'),
(117042, 95231, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤¦ą„ą¤šą„ą¤šą„‡ą¤°ą„€, ą¤•ą¤¾ą¤°ą„ˆą¤•ą„ą¤•ą¤¾ą¤²'),
(117043, 95231, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®ŖąÆą®¤ąÆą®šąÆą®šąÆ‡ą®°ą®æ, ą®•ą®¾ą®°ąÆˆą®•ąÆą®•ą®¾ą®²ąÆ'),
(117044, 95232, 'fr', 'name', 'Haute Technologie Animale Grenobloise'),
(117045, 95233, 'en', 'name', 'Indiana Humanities'),
(117046, 95234, 'en', 'name', 'Agglomeration Community of La Rochelle'),
(117047, 95234, 'fr', 'name', 'CommunautƩ d''agglomƩration de La Rochelle'),
(117048, 95235, 'en', 'name', 'Leipzig Research Centre Global Dynamics'),
(117049, 95236, 'ha', 'name', 'Kwalejin Ilimi ta St. Ambrose'),
(117050, 95236, 'en', 'name', 'St. Ambrose College of Education'),
(117051, 95237, 'en', 'name', 'Nickel Institute'),
(117052, 95238, 'en', 'name', 'Pacific University'),
(117053, 95239, 'en', 'name', 'KolaDaisi University'),
(117054, 95240, 'de', 'name', 'Bundesinstitut für Kultur und Geschichte des östlichen Europa'),
(117055, 95241, 'en', 'name', 'Ohio Humanities Council'),
(117056, 95242, 'fr', 'name', 'Physiopathogénèse et Traitement des Maladies du Foie'),
(117057, 95243, 'pt', 'name', 'Catavento Instituto'),
(117058, 95244, 'fr', 'name', 'Laboratoire de Droit International et EuropƩen'),
(117059, 95245, 'fr', 'name', 'Plant Health Institute de Montpellier'),
(117060, 95246, 'no_lang_code', 'name', 'OncoThAI'),
(117061, 95247, 'en', 'name', 'Foreign, Commonwealth & Development Office'),
(117062, 95248, 'en', 'name', 'Rhode Island Council for the Humanities'),
(117063, 95249, 'en', 'name', 'Sir Salimullah Medical College'),
(117064, 95250, 'en', 'name', 'East West College of Natural Medicine'),
(117065, 95251, 'fr', 'name', 'Institut de Biologie de Lille'),
(117066, 95252, 'fr', 'name', 'Laboratoire de physique des Solides'),
(117067, 95252, 'en', 'name', 'Laboratory of Solid State Physics'),
(117068, 95253, 'en', 'name', 'Oregon Humanities'),
(117069, 95254, 'en', 'name', 'Pratap University'),
(117070, 95255, 'no_lang_code', 'name', 'Textron Systems (Germany)'),
(117071, 95256, 'en', 'name', 'Research Institute for Sustainable Humanosphere'),
(117072, 95256, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦ē”Ÿå­˜åœē ”ē©¶ę‰€'),
(117073, 95257, 'en', 'name', 'Society of Dramatic Authors and Composers'),
(117074, 95257, 'fr', 'name', 'SociƩtƩ des Auteurs et Compositeurs Dramatiques'),
(117075, 95258, 'en', 'name', 'Wenhua College'),
(117076, 95258, 'zh', 'name', 'ę–‡åŽå­¦é™¢'),
(117077, 95259, 'en', 'name', 'Louvre-Lens'),
(117078, 95259, 'fr', 'name', 'MusƩe du Louvre-Lens'),
(117079, 95260, 'en', 'name', 'Northeastern University London'),
(117080, 95261, 'fr', 'name', 'Centre d''Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse'),
(117081, 95262, 'en', 'name', 'Georgia Humanities Council'),
(117082, 95263, 'it', 'name', 'Seminario Arcivescovile di Milano'),
(117083, 95264, 'en', 'name', 'Immunity and Cancer'),
(117084, 95264, 'fr', 'name', 'ImmunitƩ et Cancer'),
(117085, 95265, 'en', 'name', 'Humanities Tennessee'),
(117086, 95266, 'en', 'name', 'Field Applied Research Australia'),
(117087, 95267, 'en', 'name', 'Aquitaine Regional Council'),
(117088, 95267, 'fr', 'name', 'Conseil RƩgional d''Aquitaine'),
(117089, 95268, 'fr', 'name', 'UnitƩ Mixte de Recherche sur les Fromages'),
(117090, 95269, 'en', 'name', 'French National Cancer Institute'),
(117091, 95269, 'fr', 'name', 'Institut National du Cancer'),
(117092, 95270, 'fr', 'name', 'Lyon Genou Centre Albert Trillat'),
(117093, 95271, 'en', 'name', 'Stephan Angeloff Institute of Microbiology'),
(117094, 95271, 'bg', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ŠŖŠ¢ ŠŸŠž ŠœŠ˜ŠšŠ ŠžŠ‘Š˜ŠžŠ›ŠžŠ“Š˜ŠÆ Дтефан Ангелов'),
(117095, 95272, 'en', 'name', 'Humanities Council of Washington'),
(117096, 95273, 'en', 'name', 'Sinopharm Animal Health Co., Ltd. (China)'),
(117097, 95273, 'zh', 'name', 'å›½čÆé›†å›¢åŠØē‰©äæå„č‚”ä»½ęœ‰é™å…¬åø'),
(117098, 95274, 'en', 'name', 'Guam Humanities Council'),
(117099, 95275, 'en', 'name', 'Kashi University'),
(117100, 95275, 'zh', 'name', '喀什大学'),
(117101, 95276, 'fr', 'name', 'Laboratoire d''Excellence en Recherche sur le MƩdicament et l''Innovation ThƩrapeutique'),
(117102, 95276, 'en', 'name', 'Laboratory of Excellence in Research on Medication and Innovative Therapeutics'),
(117103, 95277, 'fr', 'name', 'Centre Transdisciplinaire d''ƉpistĆ©mologie de la LittĆ©rature et des Arts vivants'),
(117104, 95278, 'en', 'name', 'University of Ghana'),
(117105, 95279, 'en', 'name', 'AERIS/ICARE Data and Services Center'),
(117106, 95280, 'en', 'name', 'Al-Faruq College of Education'),
(117107, 95280, 'uz', 'name', 'Al-Faruq taʼlim kolleji'),
(117108, 95280, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŁŲ§Ų±ŁˆŁ‚ Ł„Ł„ŲŖŲ±ŲØŁŠŲ©'),
(117109, 95281, 'en', 'name', 'Bia Lamplighter College of Education'),
(117110, 95282, 'fr', 'name', 'Syndicat des SƩlectionneurs Avicoles et Aquacoles FranƧais'),
(117111, 95283, 'fr', 'name', 'Laboratoire de Photonique Quantique et MolƩculaire'),
(117112, 95283, 'en', 'name', 'Laboratory of Quantum and Molecular Photonics'),
(117113, 95284, 'en', 'name', 'European Center for the Humanities and Social Sciences'),
(117114, 95284, 'fr', 'name', 'Maison EuropƩenne des Sciences de l''Homme et de la SociƩtƩ'),
(117115, 95285, 'en', 'name', 'New Mexico Humanities Council'),
(117116, 95286, 'fr', 'name', 'Laboratoire d''imagerie translationnelle en oncologie'),
(117117, 95286, 'en', 'name', 'Laboratory of Translational Imaging in Oncology'),
(117118, 95287, 'en', 'name', 'Carnot Institute Qualiment'),
(117119, 95287, 'fr', 'name', 'Institut Carnot Qualiment'),
(117120, 95288, 'fr', 'name', 'Systèmes Membranaires, Photobiologie, Stress et Détoxication'),
(117121, 95289, 'fr', 'name', 'Maladies RAres du DEveloppement embryonnaire et du MEtabolisme'),
(117122, 95290, 'no_lang_code', 'name', 'Rakon (France)'),
(117123, 95291, 'en', 'name', 'Action Against Hunger'),
(117124, 95291, 'fr', 'name', 'Action Contre la Faim'),
(117125, 95292, 'es', 'name', 'Instituto Tecnológico de Conkal'),
(117126, 95293, 'en', 'name', 'Open Molecular Software Foundation'),
(117127, 95294, 'en', 'name', 'Amerika Samoa Humanities Council'),
(117128, 95295, 'fr', 'name', 'Laboratoire Polytech''Lab'),
(117129, 95296, 'en', 'name', 'Jinzhou Medical University'),
(117130, 95296, 'zh', 'name', 'é”¦å·žåŒ»ē§‘å¤§å­¦'),
(117131, 95297, 'fr', 'name', 'ProtƩomique, RƩponse Inflammatoire et SpectromƩtrie de Masse'),
(117132, 95298, 'en', 'name', 'Corpus Christi College'),
(117133, 95299, 'en', 'name', 'UCLA Clinical and Translational Science Institute'),
(117134, 95300, 'ga', 'name', 'ColĆ”iste RĆ­oga na MĆ”inlianna in Ɖirinn'),
(117135, 95300, 'en', 'name', 'Royal College of Surgeons in Ireland'),
(117136, 95301, 'fr', 'name', 'Laboratoire de MathƩmatiques d''Orsay'),
(117137, 95301, 'en', 'name', 'Mathematics Laboratory of Orsay'),
(117138, 95302, 'en', 'name', 'French Cooperative Thoracic Group'),
(117139, 95302, 'fr', 'name', 'Intergroupe Francophone de CancƩrologie Thoracique'),
(117140, 95303, 'fr', 'name', 'Laboratoire de dƩveloppement instrumental et de mƩthodologies innovantes pour les Biens Culturels'),
(117141, 95304, 'en', 'name', 'NOAA National Marine Fisheries Service Northwest Fisheries Science Center'),
(117142, 95305, 'en', 'name', 'Bambino Gesù Children''s Hospital'),
(117143, 95305, 'it', 'name', 'Ospedale Pediatrico Bambino Gesù'),
(117144, 95306, 'en', 'name', 'Agogo Presbyterian Women''s College of Education'),
(117145, 95307, 'en', 'name', 'Input Output (Singapore)'),
(117146, 95308, 'fr', 'name', 'Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète'),
(117147, 95309, 'en', 'name', 'Mersin University'),
(117148, 95309, 'tr', 'name', 'Mersin Üniversitesi'),
(117149, 95310, 'no_lang_code', 'name', 'Ushahidi, Inc. (Kenya)'),
(117150, 95311, 'fr', 'name', 'Institut Pasteur de Nouvelle CalƩdonie'),
(117151, 95312, 'en', 'name', 'Federal Polytechnic, Bauchi'),
(117152, 95313, 'en', 'name', 'Humanities Iowa'),
(117153, 95314, 'oc', 'name', 'EPITECH European Institute of Information Technology'),
(117154, 95314, 'en', 'name', 'European Institute of Technology'),
(117155, 95314, 'fr', 'name', 'Ɖcole pour l''informatique et les nouvelles technologies'),
(117156, 95315, 'en', 'name', 'Chartered Institute of Personnel Management Sri Lanka (Inc.)'),
(117157, 95316, 'en', 'name', 'Maine Humanities Council'),
(117158, 95317, 'en', 'name', 'Indian Institute of Science Bangalore'),
(117159, 95317, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(117160, 95317, 'bn', 'name', 'ভারতীয় ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦øą¦‚ą¦øą§ą¦„ą¦¾'),
(117161, 95317, 'pa', 'name', 'ਭਾਰਤੀ ਵਿਗਿਆਨ ਅਦਾਰਾ'),
(117162, 95317, 'gu', 'name', 'ભારતીય ąŖµąŖæąŖœą«ąŖžąŖ¾ąŖØ ąŖøąŖ‚ąŖøą«ąŖ„ąŖ¾'),
(117163, 95317, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(117164, 95317, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą± ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°øą±ˆą°Øą±ą°øą±'),
(117165, 95317, 'kn', 'name', 'ಭಾರತೀಯ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(117166, 95317, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“øą“Æąµ»ą“øąµ'),
(117167, 95318, 'en', 'name', 'Mills College'),
(117168, 95319, 'en', 'name', 'Nature Inspires Creativity Engineers Lab'),
(117169, 95320, 'no_lang_code', 'name', 'Abcerion Diagnostics GmbH (Germany)'),
(117170, 95321, 'fr', 'name', 'LabEx Chimie des SystĆØmes Complexes'),
(117171, 95321, 'en', 'name', 'LabEx-Chemistry of Complex Systems'),
(117172, 95322, 'fr', 'name', 'Institut Pasteur du Maroc'),
(117173, 95323, 'en', 'name', 'Teikyo University Hospital, Mizonokuchi'),
(117174, 95323, 'ja', 'name', 'åøäŗ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žęŗå£ē—…é™¢'),
(117175, 95324, 'en', 'name', 'Brite Divinity School'),
(117176, 95325, 'en', 'name', 'Ilocos Training and Regional Medical Center'),
(117177, 95326, 'fr', 'name', 'AdipositƩ MƩdullaire et Os'),
(117178, 95326, 'en', 'name', 'Marrow Adiposity & Bone Lab'),
(117179, 95327, 'en', 'name', 'University of Montpellier 2'),
(117180, 95327, 'fr', 'name', 'UniversitƩ Montpellier 2'),
(117181, 95328, 'en', 'name', 'Center for Research and Restoration of Museums of France'),
(117182, 95328, 'fr', 'name', 'Centre de recherche et de restauration des musƩes de France'),
(117183, 95329, 'fr', 'name', 'UnitƩ de Recherche Clinique CƓte d''Azur'),
(117184, 95330, 'en', 'name', 'Judson College'),
(117185, 95331, 'fr', 'name', 'Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes'),
(117186, 95331, 'en', 'name', 'Functional Ecology and Biogeochemistry of Soils and Agrosystems'),
(117187, 95332, 'fr', 'name', 'Institut Galien Paris-Saclay'),
(117188, 95333, 'en', 'name', 'National Marine Data and Information Service'),
(117189, 95333, 'zh', 'name', 'å›½å®¶ęµ·ę“‹äæ”ęÆäø­åæƒ'),
(117190, 95334, 'fr', 'name', 'Physiologie et Physiopathlogie Endocriniennes'),
(117191, 95335, 'en', 'name', 'Michigan Humanities Council'),
(117192, 95336, 'en', 'name', 'Florida Humanities Council'),
(117193, 95337, 'en', 'name', 'SEI Group CSR Foundation (Japan)'),
(117194, 95337, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä½å‹é›»å·„ć‚°ćƒ«ćƒ¼ćƒ—ē¤¾ä¼šč²¢ēŒ®åŸŗé‡‘'),
(117195, 95338, 'en', 'name', 'Hyogo Prefectural Institute of Environmental Sciences'),
(117196, 95339, 'en', 'name', 'Guangzhou Xinhua University'),
(117197, 95339, 'zh', 'name', 'å¹æå·žę–°åŽå­¦é™¢'),
(117198, 95340, 'sv', 'name', 'Region Jƶnkƶpings lƤn'),
(117199, 95341, 'en', 'name', 'Yeungnam University College'),
(117200, 95342, 'fr', 'name', 'MƩdipole Garonne'),
(117201, 95343, 'oc', 'name', 'Universitat de Tolosa'),
(117202, 95343, 'en', 'name', 'University of Toulouse'),
(117203, 95343, 'fr', 'name', 'UniversitƩ de Toulouse'),
(117204, 95344, 'fr', 'name', 'Institut Pasteur du Laos'),
(117205, 95344, 'lo', 'name', 'ąŗŖąŗ°ąŗ–ąŗ²ąŗšąŗ±ąŗ™ ປັດສະເຕີ ຄາວ'),
(117206, 95345, 'en', 'name', 'Project Seagrass'),
(117207, 95346, 'en', 'name', 'Gulf of Mexico Fishery Management Council'),
(117208, 95347, 'en', 'name', 'Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences'),
(117209, 95348, 'en', 'name', 'Cancer Thematics Institute'),
(117210, 95348, 'fr', 'name', 'Institut ThƩmatique Cancer'),
(117211, 95349, 'en', 'name', 'Xingzhi College Zhejiang Normal University'),
(117212, 95349, 'zh', 'name', 'ęµ™ę±ŸåøˆčŒƒå¤§å­¦č”ŒēŸ„å­¦é™¢'),
(117213, 95350, 'fr', 'name', 'Laboratoire GƩnie et MatƩriaux Textiles'),
(117214, 95351, 'en', 'name', 'Playa Ancha University of Educational Sciences'),
(117215, 95351, 'es', 'name', 'Universidad de Playa Ancha de Ciencias de la Educación'),
(117216, 95352, 'en', 'name', 'University of Fada N''gourma'),
(117217, 95352, 'fr', 'name', 'UniversitƩ de Fada N''gourma'),
(117218, 95353, 'en', 'name', 'Regional Institute of Education, Mysuru'),
(117219, 95354, 'en', 'name', 'Institut Pasteur in Ho Chi Minh City'),
(117220, 95355, 'en', 'name', 'Evangelical Presbyterian College of Education, Bimbilla'),
(117221, 95355, 'ha', 'name', 'Kwalejin Ilimi ta Presbyterian, Bimbilla'),
(117222, 95356, 'en', 'name', 'International Union for Conservation of Nature, French Committee'),
(117223, 95356, 'fr', 'name', 'Union Internationale Pour la Conservation de la Nature, ComitƩ FranƧais'),
(117224, 95357, 'en', 'name', 'Hangzhou City University'),
(117225, 95358, 'en', 'name', 'Atebubu College of Education'),
(117226, 95359, 'en', 'name', 'Board of Cooperative Educational Services of Nassau County'),
(117227, 95360, 'no_lang_code', 'name', 'Sciensano (Belgium)'),
(117228, 95361, 'en', 'name', 'Life Science Foundation of Japan'),
(117229, 95361, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹ęŒÆčˆˆč²”å›£'),
(117230, 95362, 'en', 'name', 'Mass Humanities'),
(117231, 95363, 'en', 'name', 'Pfizer Health Research Foundation'),
(117232, 95364, 'en', 'name', 'Ministry of Power'),
(117233, 95364, 'hi', 'name', 'ą¤µą¤æą¤¦ą„ą¤Æą„ą¤¤ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(117234, 95365, 'en', 'name', 'International Open University'),
(117235, 95366, 'en', 'name', 'Lille School of Management Research Center'),
(117236, 95367, 'fr', 'name', 'Microbiologie Orale, ImmunothƩrapie et SantƩ'),
(117237, 95368, 'en', 'name', 'FolkhƤlsan Research Foundation'),
(117238, 95368, 'fi', 'name', 'FolkhƤlsanin TutkimussƤƤtiƶ'),
(117239, 95369, 'fr', 'name', 'Institut Agronomique MƩditerranƩen de Montpellier'),
(117240, 95369, 'en', 'name', 'Mediterranean Agronomic Institute of Montpellier'),
(117241, 95370, 'no_lang_code', 'name', 'Textron Systems (United Kingdom)'),
(117242, 95371, 'de', 'name', 'Institut für Klimaschutz, Energie und Mobilität'),
(117243, 95372, 'en', 'name', 'Institute of Public Administration'),
(117244, 95372, 'ar', 'name', 'لمعهد ال؄دارة العامة'),
(117245, 95373, 'en', 'name', 'Eastern International University'),
(117246, 95373, 'vi', 'name', 'ĐẔi hį»c Quốc tįŗæ Miền ĐƓng'),
(117247, 95374, 'en', 'name', 'European University of Brittany'),
(117248, 95374, 'fr', 'name', 'UniversitƩ EuropƩenne de Bretagne'),
(117249, 95375, 'en', 'name', 'Gulf States Marine Fisheries Commission'),
(117250, 95376, 'no_lang_code', 'name', 'TÜV Nord (United States)'),
(117251, 95377, 'no_lang_code', 'name', 'Candela (United States)'),
(117252, 95378, 'en', 'name', 'Colorado Technical University'),
(117253, 95379, 'en', 'name', 'Virginia Foundation for the Humanities'),
(117254, 95380, 'en', 'name', 'Institute of Management Technology, Dubai'),
(117255, 95381, 'vi', 'name', 'Hį»c Viện CĆ“ng Nghệ Bʰu ChĆ­nh Viį»…n ThĆ“ng CĘ” sở TP. Hồ ChĆ­ Minh'),
(117256, 95381, 'en', 'name', 'Posts and Telecommunications Institute of Technology - Ho Chi Minh City'),
(117257, 95382, 'en', 'name', 'New York Council for the Humanities'),
(117258, 95383, 'de', 'name', 'Technischer Überwachungsverein'),
(117259, 95383, 'no_lang_code', 'name', 'TÜV Nord (Germany)'),
(117260, 95384, 'en', 'name', 'Atal Bihari Vajpayee Institute of Medical Sciences and Dr. Ram Manohar Lohia Hospital'),
(117261, 95385, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Rennes'),
(117262, 95386, 'es', 'name', 'Universidad Tecnologica de Tijuana'),
(117263, 95387, 'id', 'name', 'Universitas Prasetiya Mulya'),
(117264, 95388, 'en', 'name', 'Inflammation, Microbiome and Immunosurveillance'),
(117265, 95389, 'fr', 'name', 'France Parkinson'),
(117266, 95390, 'en', 'name', 'West Virginia Humanities Council'),
(117267, 95391, 'en', 'name', 'Humanities Council of South Carolina'),
(117268, 95392, 'en', 'name', 'Erasmus Fund'),
(117269, 95392, 'fr', 'name', 'Fonds Erasme'),
(117270, 95393, 'en', 'name', 'Al-Mustaqbal University'),
(117271, 95393, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© المستقبل الجامعة'),
(117272, 95394, 'en', 'name', 'Guangzhou Huashang College'),
(117273, 95394, 'zh', 'name', 'å¹æå·žåŽå•†å­¦é™¢'),
(117274, 95395, 'en', 'name', 'Center for Process Studies'),
(117275, 95396, 'en', 'name', 'NOAA National Ocean Service'),
(117276, 95397, 'en', 'name', 'Foreign and Commonwealth Office'),
(117277, 95397, 'cy', 'name', 'Y Swyddfa Dramor a Chymanwlad'),
(117278, 95398, 'en', 'name', 'Pasteur Hellenic Institute'),
(117279, 95399, 'en', 'name', 'Claremont School of Theology'),
(117280, 95400, 'fr', 'name', 'Centre d''Ʃtudes et de recherches en droit des procƩdures'),
(117281, 95401, 'en', 'name', 'Minnesota Children''s Museum'),
(117282, 95402, 'en', 'name', 'Center for Global Change and Sustainability'),
(117283, 95402, 'es', 'name', 'Centro del Cambio Global y la Sustentabilidad A.C.'),
(117284, 95403, 'fr', 'name', 'Polyclinique Bordeaux Nord Aquitaine'),
(117285, 95404, 'en', 'name', 'GHU Paris psychiatrie & neurosciences'),
(117286, 95405, 'en', 'name', 'Northeastern University'),
(117287, 95406, 'en', 'name', 'Omohundro Institute of Early American History and Culture'),
(117288, 95407, 'en', 'name', 'Oklahoma Humanities Council'),
(117289, 95408, 'en', 'name', 'United Nations Office for Outer Space Affairs'),
(117290, 95409, 'en', 'name', 'Zhenjiang College'),
(117291, 95409, 'zh', 'name', 'é•‡ę±Ÿåø‚é«˜ē­‰äø“ē§‘å­¦ę ”'),
(117292, 95410, 'de', 'name', 'HochschuljubilƤumsstiftung der Stadt Wien'),
(117293, 95410, 'en', 'name', 'University Jubilee Foundation of the City of Vienna'),
(117294, 95411, 'es', 'name', 'Universidad de Colima'),
(117295, 95411, 'en', 'name', 'University of Colima'),
(117296, 95412, 'en', 'name', 'Amrutvahini College of Engineering'),
(117297, 95413, 'en', 'name', 'Virgin Islands Humanities Council'),
(117298, 95414, 'es', 'name', 'Institución Universitaria Centro de Estudios Superiores María Goretti'),
(117299, 95415, 'en', 'name', 'KLS Gogte Institute of Technology'),
(117300, 95416, 'fr', 'name', 'Paris-Est Sup'),
(117301, 95417, 'fr', 'name', 'Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux'),
(117302, 95418, 'en', 'name', 'Adventist University of France'),
(117303, 95418, 'fr', 'name', 'Campus adventiste du salĆØve'),
(117304, 95419, 'id', 'name', 'Sekolah Tinggi Olahraga dan Kesehatan Bina Guna'),
(117305, 95420, 'en', 'name', 'Wilhelm and Else Stockmann Foundation'),
(117306, 95420, 'sv', 'name', 'Wilhelm och Else Stockmanns Stiftelse'),
(117307, 95421, 'en', 'name', 'Akrokerri College of Education'),
(117308, 95422, 'en', 'name', 'Wisconsin Humanities Council'),
(117309, 95423, 'pt', 'name', 'Centro UniversitƔrio EstƔcio de Santa Catarina'),
(117310, 95424, 'en', 'name', 'Institute of Science Tokyo'),
(117311, 95424, 'ja', 'name', 'ę±äŗ¬ē§‘å­¦å¤§å­¦'),
(117312, 95425, 'en', 'name', 'Institute of Women Social Workers'),
(117313, 95426, 'tr', 'name', 'Bursa Uludağ Üni̇versi̇tesi̇'),
(117314, 95427, 'en', 'name', 'Laboratory of Fundamental and Applied Bioenergetics'),
(117315, 95428, 'en', 'name', 'Lille Neurosciences & Cognition'),
(117316, 95429, 'pt', 'name', 'Instituto Federal de Educação Ciência e Tecnologia da Paraíba'),
(117317, 95430, 'en', 'name', 'Humanities Texas'),
(117318, 95431, 'fr', 'name', 'France GƩnomique'),
(117319, 95432, 'en', 'name', 'Beibu Gulf University'),
(117320, 95432, 'zh', 'name', 'åŒ—éƒØę¹¾å¤§å­¦'),
(117321, 95433, 'es', 'name', 'Universidad Isalud'),
(117322, 95434, 'en', 'name', 'Wyoming Humanities Council'),
(117323, 95435, 'en', 'name', 'National Council Of Educational Research And Training'),
(117324, 95435, 'kn', 'name', 'ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ą²¶ą³ˆą²•ą³ą²·ą²£ą²æą²• ಸಂಶೋಧನಾ ą²®ą²¤ą³ą²¤ą³ ತರಬೇತಿ ą²Ŗą²°ą²æą²·ą²¤ą³'),
(117325, 95436, 'no_lang_code', 'name', 'Textron (United States)'),
(117326, 95437, 'id', 'name', 'Universitas Amikom Yogyakarta'),
(117327, 95438, 'en', 'name', 'French Statistical Society'),
(117328, 95438, 'fr', 'name', 'SociƩtƩ FranƧaise de Statistique'),
(117329, 95439, 'en', 'name', 'College of Technological Studies'),
(117330, 95440, 'fr', 'name', 'RƩgie des transports mƩtropolitains'),
(117331, 95441, 'en', 'name', 'University of Montpellier 1'),
(117332, 95441, 'fr', 'name', 'UniversitƩ Montpellier 1'),
(117333, 95442, 'en', 'name', 'Federal Polytechnic, Bida'),
(117334, 95443, 'en', 'name', 'Korn Ferry (United States)'),
(117335, 95444, 'en', 'name', 'Candys Foundation'),
(117336, 95445, 'fr', 'name', 'HƓpital Saint Eloi'),
(117337, 95446, 'en', 'name', 'Precise Measurement Technology Promotion Foundation'),
(117338, 95446, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē²¾åÆ†ęø¬å®šęŠ€č”“ęŒÆčˆˆč²”å›£'),
(117339, 95447, 'ha', 'name', 'Kwalejin Ilimi ta St. Vincent'),
(117340, 95447, 'en', 'name', 'St. Vincent College of Education'),
(117341, 95448, 'en', 'name', 'Mampong Technical College of Education'),
(117342, 95449, 'ha', 'name', 'Kwalejin Ilimi ta St. Louis'),
(117343, 95449, 'en', 'name', 'St. Louis College of Education'),
(117344, 95450, 'en', 'name', 'Lille University Management'),
(117345, 95451, 'no_lang_code', 'name', 'Robert Bosch (Hungary)'),
(117346, 95452, 'fr', 'name', 'Hypertension pulmonaire : physiopathologie et innovation thƩrapeutique'),
(117347, 95452, 'en', 'name', 'Pulmonary Hypertension: Pathophysiology and Novel Therapies'),
(117348, 95453, 'fr', 'name', 'Genopolys'),
(117349, 95454, 'en', 'name', 'Federal College of Forestry, Ibadan'),
(117350, 95455, 'fr', 'name', 'Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes'),
(117351, 95456, 'en', 'name', 'Hope for Communities and Children Initiative'),
(117352, 95457, 'en', 'name', 'St. Monica''s College of Education'),
(117353, 95458, 'fr', 'name', 'Laboratoire interdisciplinaire RƩcits Cultures et SociƩtƩs'),
(117354, 95459, 'en', 'name', 'Aisyah University'),
(117355, 95460, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Gentiaras'),
(117356, 95461, 'fr', 'name', 'Laboratoire de Radiopharmaceutiques Biocliniques'),
(117357, 95462, 'en', 'name', 'Bengbu University'),
(117358, 95462, 'zh', 'name', 'čšŒåŸ å­¦é™¢'),
(117359, 95463, 'fr', 'name', 'Institut Pasteur de Nha Trang'),
(117360, 95464, 'en', 'name', 'Islamic Azad University, Babol'),
(117361, 95464, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲØŲ§ŲØŁ„'),
(117362, 95465, 'sl', 'name', 'Javna agencija za znanstvenoraziskovalno in inovacijsko dejavnost'),
(117363, 95465, 'en', 'name', 'The Slovenian Research and Innovation Agency'),
(117364, 95466, 'en', 'name', 'Istanbul Topkapi University'),
(117365, 95466, 'tr', 'name', 'İstanbul Topkapı Üniversitesi'),
(117366, 95467, 'fr', 'name', 'Pathogénèse Bactérienne et Réponses Cellulaires'),
(117367, 95468, 'fr', 'name', 'Centre de RadiofrƩquences, Optique et Micro-nanoƩlectronique des Alpes'),
(117368, 95469, 'es', 'name', 'Instituto de Investigación en Cambio Global'),
(117369, 95470, 'fr', 'name', 'Centre MĆ©diterranĆ©en de l’Environnement et de la BiodiversitĆ©'),
(117370, 95471, 'en', 'name', 'Kano State Polytechnic'),
(117371, 95472, 'en', 'name', 'Graduate School of Computer Science and Advanced Technologies'),
(117372, 95472, 'fr', 'name', 'Ɖcole Pour l''Informatique et les Techniques AvancĆ©es'),
(117373, 95472, 'oc', 'name', 'Ɖcole pour l''informatique et les techniques avancĆ©es'),
(117374, 95473, 'fr', 'name', 'Institut SupĆ©rieur d’Informatique et de Gestion de Goma'),
(117375, 95474, 'en', 'name', 'Jilin Business and Technology College'),
(117376, 95475, 'ms', 'name', 'Universiti Cyberjaya'),
(117377, 95475, 'en', 'name', 'University of Cyberjaya'),
(117378, 95476, 'en', 'name', 'Hemostase Inflammation Thrombosis'),
(117379, 95477, 'es', 'name', 'Instituto MadrileƱo de Antropologƭa'),
(117380, 95478, 'en', 'name', 'Illinois Humanities Council'),
(117381, 95479, 'es', 'name', 'Universidad de Investigación e Innovación de México'),
(117382, 95480, 'en', 'name', 'Lesbian Herstory Archives'),
(117383, 95481, 'en', 'name', 'Gambaga College of Education'),
(117384, 95482, 'fr', 'name', 'Analyses LittƩraires et Histoire de la Langue'),
(117385, 95483, 'fr', 'name', 'Laboratoire Universitaire de Recherche en Production AutomatisƩe'),
(117386, 95484, 'fr', 'name', 'Institut Paoli-Calmettes'),
(117387, 95484, 'en', 'name', 'Institute Paoli-Calmettes'),
(117388, 95485, 'en', 'name', 'Haryana State Council for Science and Technology'),
(117389, 95486, 'en', 'name', 'Humanities Washington'),
(117390, 95487, 'en', 'name', 'Institute Cancer De La Loire Lucien Neuwirth'),
(117391, 95488, 'en', 'name', 'The Schwarzman Animal Medical Center'),
(117392, 95489, 'fr', 'name', 'France Europe Innovation'),
(117393, 95490, 'en', 'name', 'Shahid Beheshti University of Medical Sciences'),
(117394, 95490, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų“Ł‡ŪŒŲÆ ŲØŁ‡Ų“ŲŖŪŒ'),
(117395, 95491, 'en', 'name', 'Forests and Societies'),
(117396, 95491, 'fr', 'name', 'Forêts et Sociétés'),
(117397, 95492, 'fr', 'name', 'HƓpital Lapeyronie'),
(117398, 95493, 'fr', 'name', 'Miniaturisation pour la Synthèse, l''Analyse et la Protéomique'),
(117399, 95494, 'en', 'name', 'Alabama Humanities Foundation'),
(117400, 95495, 'fr', 'name', 'Institut Charles Viollette'),
(117401, 95496, 'sk', 'name', 'Nemocnica Bory, a.s'),
(117402, 95497, 'en', 'name', 'Kangda College of Nanjing Medical University'),
(117403, 95497, 'zh', 'name', 'å—äŗ¬åŒ»ē§‘å¤§å­¦åŗ·č¾¾å­¦é™¢'),
(117404, 95498, 'en', 'name', 'National Institute of Technology Uttarakhand'),
(117405, 95499, 'fr', 'name', 'Centre d''Etude des Arts Contemporains'),
(117406, 95500, 'no_lang_code', 'name', 'Lo.La Peak Solutions GmbH (Austria)'),
(117407, 95501, 'pt', 'name', 'Universidade Save'),
(117408, 95502, 'fr', 'name', 'Laboratoire en Sciences et Technologies de l''Information GƩographique pour la ville intelligente et les territoires durables'),
(117409, 95503, 'no_lang_code', 'name', 'Panteia (Netherlands)'),
(117410, 95504, 'en', 'name', 'Capital College'),
(117411, 95505, 'fr', 'name', 'Laboratoire Nanotechnologies et NanosystĆØmes'),
(117412, 95506, 'fr', 'name', 'Institut Pasteur d''AlgƩrie'),
(117413, 95507, 'en', 'name', 'Gbewaa College of Education'),
(117414, 95508, 'fr', 'name', 'Institut Pasteur D''Iran'),
(117415, 95508, 'en', 'name', 'Pasteur Institute of Iran'),
(117416, 95509, 'fr', 'name', 'Centre de Recherche en Design'),
(117417, 95510, 'en', 'name', 'Indian Institute of Science Education and Research Thiruvananthapuram'),
(117418, 95510, 'ne', 'name', 'ą¤†ą¤‡ą¤†ą¤‡ą¤ą¤øą¤‡ą¤†ą¤° ą¤¤ą¤æą¤°ą„‚ą¤…ą¤Øą¤‚ą¤¤ą¤Ŗą„ą¤°ą¤®'),
(117419, 95510, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¤ą¤æą¤°ą„ą¤µą¤Øą¤‚ą¤¤ą¤Ŗą„ą¤°ą¤®'),
(117420, 95511, 'en', 'name', 'Chengdu Neusoft University'),
(117421, 95511, 'zh', 'name', 'ęˆéƒ½äøœč½Æå­¦é™¢'),
(117422, 95512, 'fr', 'name', 'Strasbourg Oncologie LibƩrale'),
(117423, 95513, 'en', 'name', 'Akatsi College of Education'),
(117424, 95514, 'en', 'name', 'Bijagual Ecological Reserve'),
(117425, 95515, 'en', 'name', 'St. Xavier''s University Kolkata'),
(117426, 95516, 'en', 'name', 'European Union Agency for Railways'),
(117427, 95517, 'en', 'name', 'NOAA National Centers for Coastal Ocean Science'),
(117428, 95518, 'en', 'name', 'Dambai College of Education'),
(117429, 95519, 'fr', 'name', 'Centre d''Investigation Clinique - Innovation Technologique de Lille'),
(117430, 95520, 'en', 'name', 'Beibu Gulf University'),
(117431, 95520, 'zh', 'name', 'åŒ—éƒØę¹¾å¤§å­¦'),
(117432, 95521, 'fr', 'name', 'Laboratoire de GĆ©nie Ɖlectrique et Ɖlectronique de Paris'),
(117433, 95522, 'en', 'name', 'Tamale College of Education'),
(117434, 95523, 'fr', 'name', 'Association Histiocytose France'),
(117435, 95524, 'fr', 'name', 'Laboratoire d''Innovation et NumĆ©rique pour l''Ɖducation'),
(117436, 95525, 'en', 'name', 'Minnesota Humanities Center'),
(117437, 95526, 'es', 'name', 'Instituto de Investigación e Innovación en Energías Renovables y Medio Ambiente'),
(117438, 95527, 'en', 'name', 'Idaho Humanities Council'),
(117439, 95528, 'en', 'name', 'Institute of Chartered Accountants of Nigeria'),
(117440, 95529, 'pt', 'name', 'Faculdade Anhanguera'),
(117441, 95530, 'en', 'name', 'CGFNS International, Inc.'),
(117442, 95531, 'en', 'name', 'Honeywell Federal Manufacturing and Technologies (United States)'),
(117443, 95532, 'fr', 'name', 'Ɖquipe de Recherche sur l’Utilisation des DonnĆ©es Individuelles en Lien avec la ThĆ©orie Ɖconomique'),
(117444, 95533, 'fr', 'name', 'Association France Alzheimer'),
(117445, 95534, 'id', 'name', 'Institut Agama Islam Negeri Parepare'),
(117446, 95535, 'fr', 'name', 'Imagerie MolƩculaire et StratƩgies ThƩranostiques'),
(117447, 95536, 'en', 'name', 'King Danylo University'),
(117448, 95537, 'en', 'name', 'French-German Research Institute of Saint-Louis'),
(117449, 95537, 'fr', 'name', 'Institut Franco-Allemand de Recherches de Saint-Louis'),
(117450, 95538, 'en', 'name', 'Colorado Humanities'),
(117451, 95539, 'en', 'name', 'Arkansas Humanities Council'),
(117452, 95540, 'es', 'name', 'Universidad Tecnológica de Chihuahua'),
(117453, 95541, 'en', 'name', 'KPJ Healthcare University'),
(117454, 95542, 'fr', 'name', 'Fluides, Automatique et SystĆØmes Thermiques'),
(117455, 95543, 'fr', 'name', 'RadiothƩrapie MolƩculaire et Innovation ThƩrapeutique'),
(117456, 95544, 'en', 'name', 'Korea Display Research Corporation'),
(117457, 95545, 'en', 'name', 'Alaska Humanities Forum'),
(117458, 95546, 'en', 'name', 'Royal Numismatic Society'),
(117459, 95547, 'fr', 'name', 'Centre Hospitalier Universitaire de Lille'),
(117460, 95548, 'fr', 'name', 'Institut des Cellules Souches pour le Traitement et l''Ɖtude des Maladies MonogĆ©niques'),
(117461, 95549, 'fr', 'name', 'Maison de Sante Protestante de Bordeaux-Bagatelle'),
(117462, 95550, 'fr', 'name', 'Risques, EpidƩmiologie, Territoires, Informations, Education et SantƩ'),
(117463, 95551, 'it', 'name', 'Istituto Pasteur'),
(117464, 95552, 'en', 'name', 'Berekum College of Education'),
(117465, 95553, 'fr', 'name', 'Laboratoire Charles Fabry'),
(117466, 95554, 'en', 'name', 'Mustaqbal University'),
(117467, 95555, 'en', 'name', 'Cal Humanities'),
(117468, 95556, 'fr', 'name', 'Universidad Tecnológica de Tecamachalco'),
(117469, 95557, 'en', 'name', 'HKU-Pasteur Research Pole'),
(117470, 95558, 'fr', 'name', 'Campus France'),
(117471, 95559, 'en', 'name', 'Bergen School of Architecture'),
(117472, 95560, 'en', 'name', 'Centre for Nursing Studies'),
(117473, 95561, 'en', 'name', 'Istanbul Topkapi University'),
(117474, 95561, 'tr', 'name', 'İstanbul Topkapı Üniversitesi'),
(117475, 95562, 'en', 'name', 'French Intensive Care Society'),
(117476, 95562, 'fr', 'name', 'SociƩtƩ de RƩanimation de Langue FranƧaise'),
(117477, 95563, 'en', 'name', 'French Society of Periodontology'),
(117478, 95563, 'fr', 'name', 'SociĆ©tĆ© FranƧaise de Parodontologie et d’Implantologie Orale'),
(117479, 95564, 'no_lang_code', 'name', 'Wyle (United States)'),
(117480, 95565, 'fr', 'name', 'ContrĆ“le transcriptionnel et Ć©pigĆ©nĆ©tique de l’hĆ©matopoĆÆĆØse maligne'),
(117481, 95566, 'no_lang_code', 'name', 'Avco (United States)'),
(117482, 95567, 'fr', 'name', 'Laboratoire de Physiologie Cellulaire'),
(117483, 95567, 'en', 'name', 'Laboratory of Cell Physiology'),
(117484, 95568, 'fr', 'name', 'BibliothĆØque Jacques Hadamard'),
(117485, 95569, 'en', 'name', 'Fasa University'),
(117486, 95570, 'cs', 'name', 'Policie České republiky - Kriminalistický ústav'),
(117487, 95571, 'ha', 'name', 'Kwalejin Ilimi ta St. Joseph'),
(117488, 95571, 'en', 'name', 'St. Joseph''s College of Education'),
(117489, 95572, 'en', 'name', 'Peki College of Education'),
(117490, 95573, 'en', 'name', 'Indian Institute of Management Bodh Gaya'),
(117491, 95574, 'fr', 'name', 'ScanMAT'),
(117492, 95575, 'fr', 'name', 'Groupe de Recherche en Management'),
(117493, 95576, 'id', 'name', 'Institut Teknologi Nasional Yogyakarta'),
(117494, 95577, 'fr', 'name', 'Laboratoire de Recherche Translationnelle en Oncologie'),
(117495, 95578, 'vi', 'name', 'Hį»c Viện CĆ“ng Nghệ Bʰu ChĆ­nh Viį»…n ThĆ“ng'),
(117496, 95578, 'en', 'name', 'Posts and Telecommunications Institute of Technology'),
(117497, 95579, 'fr', 'name', 'Laboratoire de Biologie de l''Exercice pour la Performance et la SantƩ'),
(117498, 95580, 'en', 'name', 'Maharaja Agrasen University'),
(117499, 95581, 'fr', 'name', 'LACTH - Laboratoire d''Architecture Conception Territoire Histoire MatƩrialitƩ'),
(117500, 95582, 'en', 'name', 'Batterjee Medical College'),
(117501, 95583, 'fr', 'name', 'Centre Hospitalier des Pays de Morlaix'),
(117502, 95584, 'fr', 'name', 'Centre de Recherche "Individus, Epreuves, SociƩtƩs"'),
(117503, 95585, 'fr', 'name', 'CancƩropƓle Est'),
(117504, 95586, 'en', 'name', 'Bayan Islamic Graduate School'),
(117505, 95587, 'en', 'name', 'Byrd Polar and Climate Research Center'),
(117506, 95588, 'fr', 'name', 'UnitƩ de Taphonomie MƩdico-LƩgale'),
(117507, 95589, 'en', 'name', 'Kentucky Humanities Council'),
(117508, 95590, 'en', 'name', 'Snowflake Inc. (United States)'),
(117509, 95591, 'en', 'name', 'Alfried Krupp von Bohlen und Halbach Foundation'),
(117510, 95591, 'de', 'name', 'Alfried Krupp von Bohlen und Halbach-Stiftung'),
(117511, 95592, 'fr', 'name', 'Ɖcole SupĆ©rieure des GĆ©omĆØtres et Topographes'),
(117512, 95593, 'en', 'name', 'Fujian Chuanzheng Communications College'),
(117513, 95593, 'zh', 'name', 'ē¦å»ŗčˆ¹ę”æäŗ¤é€ščŒäøšå­¦é™¢'),
(117514, 95594, 'fr', 'name', 'Institut Pasteur de Bangui'),
(117515, 95594, 'en', 'name', 'Pasteur Institute of Bangui'),
(117516, 95595, 'fr', 'name', 'PrƩdicteurs molƩculaires et nouvelles cibles en oncologie'),
(117517, 95596, 'en', 'name', 'Masdar Institute of Science and Technology'),
(117518, 95597, 'no_lang_code', 'name', 'Siemens Healthcare (United States)'),
(117519, 95598, 'en', 'name', 'National Endowment for the Humanities'),
(117520, 95599, 'en', 'name', 'Delaware Humanities Forum'),
(117521, 95600, 'en', 'name', 'Leibniz Institute on Aging - Fritz Lipmann Institute (FLI)'),
(117522, 95600, 'de', 'name', 'Leibniz-Institut für Alternsforschung - Fritz-Lipmann-Institut (FLI)'),
(117523, 95601, 'en', 'name', 'Guangdong Peizheng College'),
(117524, 95602, 'en', 'name', 'Mississippi Humanities Council'),
(117525, 95603, 'en', 'name', 'New Jersey Council for the Humanities'),
(117526, 95604, 'en', 'name', 'Urban Studies Foundation'),
(117527, 95605, 'en', 'name', 'New Hampshire Humanities Council'),
(117528, 95606, 'fr', 'name', 'DƩlƩgation Alpes'),
(117529, 95607, 'en', 'name', 'Ecology and Conservation Science for Sustainable Seas'),
(117530, 95608, 'en', 'name', 'Arizona Humanities'),
(117531, 95609, 'en', 'name', 'Guangdong Technical College of Water Resources and Electric Engineering'),
(117532, 95609, 'zh', 'name', 'å¹æäøœę°“åˆ©ē”µåŠ›čŒäøšęŠ€ęœÆå­¦é™¢'),
(117533, 95610, 'en', 'name', 'University College of Science and Technology - Khan Younis'),
(117534, 95610, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ - خان ŁŠŁˆŁ†Ų³'),
(117535, 95611, 'en', 'name', 'Southern Baptist Theological Seminary'),
(117536, 95612, 'en', 'name', 'Louisiana Endowment for the Humanities'),
(117537, 95613, 'en', 'name', 'Evangelical Presbyterian College of Education, Amedzofe'),
(117538, 95613, 'ha', 'name', 'Kwalejin Ilimi ta Presbyterian na Bishara, Amedzofe'),
(117539, 95614, 'en', 'name', 'Toray Industries, Inc.'),
(117540, 95614, 'no_lang_code', 'name', 'Toray Industries, Inc. (Japan)'),
(117541, 95614, 'ja', 'name', 'ę±ćƒ¬ę Ŗå¼ä¼šē¤¾'),
(117542, 95615, 'en', 'name', 'Holy Family Red Crescent Medical College'),
(117543, 95616, 'en', 'name', 'East of England Secure Data Environment'),
(117544, 95617, 'en', 'name', 'Mitford Hospital, Dhaka'),
(117545, 95618, 'en', 'name', 'Microbe, Intestine, Inflammation and Host Susceptibility'),
(117546, 95619, 'en', 'name', 'Utah Humanities Council'),
(117547, 95620, 'en', 'name', 'Joint Programming Initiative Urban Europe'),
(117548, 95621, 'en', 'name', 'New Higher Education Institute - NEWUNI'),
(117549, 95621, 'ka', 'name', 'ახალი įƒ£įƒ›įƒįƒ¦įƒšįƒ”įƒ”įƒ˜ įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ”įƒ‘įƒ”įƒšįƒ˜ - ნიუუნი'),
(117550, 95622, 'fr', 'name', 'Le rƩseau des Carnot'),
(117551, 95622, 'en', 'name', 'The Carnot Network'),
(117552, 95623, 'fr', 'name', 'Institut Pasteur Korea'),
(117553, 95624, 'fr', 'name', 'Territoires, Villes, Environnement & SociƩtƩ'),
(117554, 95625, 'fr', 'name', 'Louvre'),
(117555, 95626, 'no_lang_code', 'name', 'Robert Bosch (Germany)'),
(117556, 95627, 'fr', 'name', 'Evaluation des technologies de santƩ et des pratiques mƩdicales'),
(117557, 95628, 'en', 'name', 'Institute for Humanities and Cultural Studies'),
(117558, 95628, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų¹Ł„ŁˆŁ… Ų§Ł†Ų³Ų§Ł†ŪŒ و مطالعات ŁŲ±Ł‡Ł†ŚÆŪŒ'),
(117559, 95629, 'es', 'name', 'Sociedad de Lucha Contra el CƔncer del Ecuador'),
(117560, 95630, 'fr', 'name', 'Centre de Recherche Droits et Perspectives du droit'),
(117561, 95631, 'en', 'name', 'Guangzhou College of Commerce'),
(117562, 95631, 'zh', 'name', 'å¹æå·žå•†å­¦é™¢'),
(117563, 95632, 'fr', 'name', 'Institut Pasteur de la Guyane'),
(117564, 95633, 'fr', 'name', 'Laboratoire des Sciences de l’Information et de la Communication'),
(117565, 95634, 'en', 'name', 'Akanu Ibiam, Federal Polytechnic Unwana'),
(117566, 95635, 'fr', 'name', 'Laboratoire des systèmes et applications des technologies de l''information et de l''énergie'),
(117567, 95635, 'en', 'name', 'Laboratory of Systems and Applications of Information and Energy Technologies'),
(117568, 95636, 'en', 'name', 'University of Minnesota Libraries Publishing'),
(117569, 95637, 'en', 'name', 'Pennsylvania Humanities Council'),
(117570, 95638, 'fr', 'name', 'Centre International deHautes Etudes Agronomiques MƩditerranƩennes'),
(117571, 95639, 'en', 'name', 'Odisha University of Technology and Research'),
(117572, 95640, 'en', 'name', 'Drugs and Molecules for Living Systems'),
(117573, 95640, 'fr', 'name', 'Médicaments et Molécules pour Agir sur les Systèmes Vivants'),
(117574, 95641, 'en', 'name', 'Maryland Humanities Council'),
(117575, 95642, 'en', 'name', 'Hunan University of Technology and Business'),
(117576, 95642, 'zh', 'name', 'ę¹–å—å·„å•†å¤§å­¦'),
(117577, 95643, 'fr', 'name', 'Recherche translationnelle sur le diabĆØte'),
(117578, 95644, 'en', 'name', 'European X-Ray Free-Electron Laser'),
(117579, 95645, 'fr', 'name', 'Institut Pasteur de la Guadeloupe'),
(117580, 95646, 'fr', 'name', 'Centre Interuniversitaire de Recherche en Education de Lille'),
(117581, 95647, 'en', 'name', 'Max Planck Institute for Biogeochemistry'),
(117582, 95647, 'de', 'name', 'Max-Planck-Institut für Biogeochemie'),
(117583, 95648, 'fr', 'name', 'Hypoxie et Physiopathologies cardiovasculaires et respiratoires'),
(117584, 95649, 'es', 'name', 'Fundación Puertorriqueña de las Humanidades'),
(117585, 95650, 'de', 'name', 'FIR e. V. an der RWTH Aachen'),
(117586, 95651, 'en', 'name', 'State of Florida'),
(117587, 95652, 'en', 'name', 'Yonsei University College of Dentistry'),
(117588, 95653, 'fr', 'name', 'Recherches Translationnelles sur le VIH et les Maladies Infectieuses'),
(117589, 95654, 'en', 'name', 'Jackson University College'),
(117590, 95655, 'fr', 'name', 'EDP Sciences'),
(117591, 95656, 'en', 'name', 'Connecticut Humanities Council'),
(117592, 95657, 'en', 'name', 'National Institute of Biotechnology'),
(117593, 95657, 'bn', 'name', 'ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦¬ą¦¾ą¦Æą¦¼ą§‹ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(117594, 95658, 'en', 'name', 'Tara Oceans Systems Ecology & Evolution'),
(117595, 95659, 'fr', 'name', 'Institut d''Ɖtudes Scientifiques de CargĆØse'),
(117596, 95660, 'pt', 'name', 'Instituto Pasteur'),
(117597, 95660, 'en', 'name', 'Pasteur Institute'),
(117598, 95661, 'en', 'name', 'Department for International Development'),
(117599, 95661, 'cy', 'name', 'Yr Adran dros Ddatblygu Rhyngwladol'),
(117600, 95662, 'en', 'name', 'RWTH Aachen University'),
(117601, 95662, 'de', 'name', 'Rheinisch-WestfƤlische Technische Hochschule Aachen'),
(117602, 95663, 'fr', 'name', 'Sciences Po Rennes'),
(117603, 95664, 'fr', 'name', 'Centre Méditerranéen de Médecine Moléculaire'),
(117604, 95664, 'en', 'name', 'Mediterranean Center for Molecular Medicine'),
(117605, 95665, 'fr', 'name', 'Mathématiques et Informatique pour la Complexité et les Systèmes'),
(117606, 95666, 'fr', 'name', 'Institut Pasteur de Lille'),
(117607, 95666, 'en', 'name', 'Pasteur Institute of Lille'),
(117608, 95667, 'en', 'name', 'Guangzhou City Polytechnic'),
(117609, 95667, 'zh', 'name', 'å¹æå·žåŸŽåø‚čŒäøšå­¦é™¢'),
(117610, 95668, 'en', 'name', 'Teikyo University'),
(117611, 95668, 'ja', 'name', 'åøäŗ¬å¤§å­¦'),
(117612, 95669, 'en', 'name', 'General Royalties System'),
(117613, 95669, 'es', 'name', 'Sistema General de RegalĆ­as de Colombia'),
(117614, 95670, 'en', 'name', 'Vemu Institute of Technology'),
(117615, 95671, 'en', 'name', 'Khalifa University of Science and Technology'),
(117616, 95671, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų®Ł„ŁŠŁŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„ŲØŲ­ŁˆŲ«'),
(117617, 95672, 'en', 'name', 'Anna University Regional Campus, Coimbatore'),
(117618, 95673, 'ro', 'name', 'Universitatea Națională de Știință și Tehnologie Politehnica București'),
(117619, 95674, 'en', 'name', 'Federal University Wukari'),
(117620, 95675, 'fr', 'name', 'UniversitƩ de YaoundƩ II'),
(117621, 95676, 'es', 'name', 'Universidad Tecnologica de Cancun'),
(117622, 95677, 'en', 'name', 'Data & Society Research Institute'),
(117623, 95678, 'fr', 'name', 'Institut Pasteur de Tunis'),
(117624, 95679, 'fr', 'name', 'Institut Universitaire de Recherche Clinique'),
(117625, 95680, 'es', 'name', 'Universidad CES'),
(117626, 95681, 'ga', 'name', 'An Foras RiarachƔin'),
(117627, 95681, 'en', 'name', 'Institute of Public Administration'),
(117628, 95682, 'fr', 'name', 'Alliance nationale pour les sciences de la vie et de la santƩ'),
(117629, 95683, 'en', 'name', 'Hawai''i Council for the Humanities'),
(117630, 95684, 'en', 'name', 'Cancer, Heterogeneity, Instability and Plasticity'),
(117631, 95684, 'fr', 'name', 'Cancer, HƩtƩrogƩnƩitƩ, InstabilitƩ et PlasticitƩ'),
(117632, 95685, 'en', 'name', 'Institute of Civil-Military Technology Cooperation'),
(117633, 95685, 'ko', 'name', 'ėÆ¼źµ°ķ˜‘ė „ģ§„ķ„ģ›'),
(117634, 95686, 'fr', 'name', 'IMPact de l''Environnement Chimique sur la SantƩ humaine'),
(117635, 95687, 'fr', 'name', 'Interactions Cellulaires et Physiopathologie HƩpathique'),
(117636, 95688, 'en', 'name', 'Bethany College'),
(117637, 95689, 'en', 'name', 'Nanfang College Guangzhou'),
(117638, 95689, 'zh', 'name', 'å¹æå·žå—ę–¹å­¦é™¢'),
(117639, 95690, 'en', 'name', 'Danone Nutricia Research (Netherlands)'),
(117640, 95691, 'en', 'name', 'The Federal Polytechnic Offa'),
(117641, 95692, 'en', 'name', 'Jasikan College of Education'),
(117642, 95693, 'en', 'name', 'South Dakota Humanities Council'),
(117643, 95694, 'ha', 'name', 'Kwalejin Ilimi ta St. Francis'),
(117644, 95694, 'en', 'name', 'St. Francis College of Education'),
(117645, 95695, 'en', 'name', 'Sichuan Medical Association'),
(117646, 95695, 'zh', 'name', 'å››å·ēœåŒ»å­¦ä¼š'),
(117647, 95696, 'en', 'name', 'Missouri Humanities Council'),
(117648, 95697, 'pt', 'name', 'Faculdade de Direito de Vitória'),
(117649, 95698, 'en', 'name', 'Hajee Mohammad Danesh Science and Technology University'),
(117650, 95698, 'bn', 'name', 'ą¦¹ą¦¾ą¦œą§€ ą¦®ą§‹ą¦¹ą¦¾ą¦®ą§ą¦®ą¦¦ দানেশ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(117651, 95699, 'en', 'name', 'Rangpur Medical College'),
(117652, 95700, 'fr', 'name', 'MusƩe Curie'),
(117653, 95701, 'en', 'name', 'Xingtai Medical College'),
(117654, 95701, 'zh', 'name', '邢台医学院'),
(117655, 95702, 'en', 'name', 'Bagabaga College of Education'),
(117656, 95703, 'it', 'name', 'Istituto Nazionale di Alta Matematica Francesco Severi'),
(117657, 95704, 'no_lang_code', 'name', 'Rakon (New Zealand)'),
(117658, 95705, 'en', 'name', 'Official Development Assistance'),
(117659, 95706, 'en', 'name', 'Wuchang Shouyi University'),
(117660, 95706, 'zh', 'name', 'ę­¦ę˜Œé¦–ä¹‰å­¦é™¢'),
(117661, 95707, 'en', 'name', 'Novartis Institutes for BioMedical Research'),
(117662, 95708, 'pt', 'name', 'Instituto Superior de Angola'),
(117663, 95709, 'en', 'name', 'Advanced Drug Delivery Systems'),
(117664, 95709, 'fr', 'name', 'Systèmes avancés de délivrance de principes actifs'),
(117665, 95710, 'en', 'name', 'Thammasat University'),
(117666, 95710, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø˜ąø£ąø£ąø”ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(117667, 95711, 'fr', 'name', 'ComplexitƩ, Innovation et ActivitƩs Motrices et Sportives'),
(117668, 95712, 'fr', 'name', 'Association Futuribles International'),
(117669, 95712, 'en', 'name', 'Futuribles International'),
(117670, 95713, 'es', 'name', 'Universidad de las Artes'),
(117671, 95714, 'en', 'name', 'Arsi University'),
(117672, 95715, 'en', 'name', 'Nippon Life Insurance Foundation'),
(117673, 95715, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿå‘½č²”å›£'),
(117674, 95716, 'en', 'name', 'University of Saint Katherine'),
(117675, 95717, 'en', 'name', 'Grenoble Institute of Neurosciences'),
(117676, 95717, 'fr', 'name', 'Institut des Neurosciences de Grenoble'),
(117677, 95718, 'en', 'name', 'Shenzhen Ruipuxun Academy for Stem Cell & Regenerative Medicine'),
(117678, 95719, 'fr', 'name', 'Plateformes Lilloises en Biologie et SantƩ'),
(117679, 95720, 'it', 'name', 'Gruppo Nazionale per le Strutture Algebriche, Geometriche e le loro Applicazioni'),
(117680, 95720, 'en', 'name', 'National Group for Algebraic, Geometric Structures and their Applications'),
(117681, 95721, 'en', 'name', 'CANTHER - Cancer, Heterogeneity, Plasticity and Resistance to Therapies'),
(117682, 95721, 'fr', 'name', 'CANTHER - HƩtƩrogƩnƩitƩ, PlasticitƩ et RƩsistance aux ThƩrapies des Cancers'),
(117683, 95722, 'id', 'name', 'Universitas Muhammadiyah Kotabumi'),
(117684, 95723, 'en', 'name', 'Brooklyn Academy of Music'),
(117685, 95724, 'ca', 'name', 'Universitat de Tolon'),
(117686, 95724, 'en', 'name', 'University of Toulon'),
(117687, 95724, 'fr', 'name', 'UniversitƩ de Toulon');
INSERT INTO `ror_settings` VALUES
(117688, 95725, 'es', 'name', 'Instituto Tecnológico Superior de Huatusco'),
(117689, 95726, 'en', 'name', 'College of Charleston'),
(117690, 95727, 'cs', 'name', 'Hydrobiologický Ústav Biologické Centrum AV ČR'),
(117691, 95727, 'en', 'name', 'Institute of Hydrobiology, Biology Centre, Academy of Sciences of the Czech Republic'),
(117692, 95728, 'en', 'name', 'Lusail University'),
(117693, 95728, 'ar', 'name', 'Ų¬ŁŽŲ§Ł…ŁŲ¹ŁŽŲ© Ł„ŁŁˆŲ³ŁŽŁŠŁ’Ł„'),
(117694, 95729, 'pl', 'name', 'Instytut Biologii Doświadczalnej im. Marcelego Nenckiego'),
(117695, 95730, 'es', 'name', 'AuditorĆ­a General de la RepĆŗblica'),
(117696, 95731, 'en', 'name', 'Northeast Brooklyn Housing Development Corporation'),
(117697, 95732, 'fr', 'name', 'Centre de l’infection, de l’immunitĆ© et de l’inflammation'),
(117698, 95732, 'en', 'name', 'Centre for Infection, Immunity and Inflammation'),
(117699, 95733, 'pt', 'name', 'Conservatório Superior de Música de Gaia'),
(117700, 95734, 'en', 'name', 'Georgian Technical University'),
(117701, 95734, 'ru', 'name', 'Š“Ń€ŃƒŠ·ŠøŠ½ŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(117702, 95734, 'hy', 'name', 'ÕŽÖ€Õ”Õ½ÕæÕ”Õ¶Õ« ÕæÕ„Õ­Õ¶Õ«ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(117703, 95734, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ¢įƒ”įƒ„įƒœįƒ˜įƒ™įƒ£įƒ įƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(117704, 95735, 'es', 'name', 'Hospital de Especialidades de Portoviejo'),
(117705, 95736, 'en', 'name', 'JanĆ”Äek Academy of Performing Arts'),
(117706, 95736, 'cs', 'name', 'JanĆ”Äkova akademie mĆŗzických uměnĆ­'),
(117707, 95737, 'en', 'name', 'Northamptonshire County Council'),
(117708, 95738, 'de', 'name', 'Die Autobahn GmbH des Bundes (Germany)'),
(117709, 95739, 'no_lang_code', 'name', 'August Storck KG (Germany)'),
(117710, 95740, 'pt', 'name', 'Fundo Nacional de Investigação'),
(117711, 95741, 'de', 'name', 'Klinik und Poliklinik für Hautkrankheiten'),
(117712, 95742, 'fr', 'name', 'Centre Interdisciplinaire pour la santƩ des Noir'),
(117713, 95742, 'en', 'name', 'Interdisciplinary Centre for Black Health'),
(117714, 95743, 'en', 'name', 'Virginia Serious Game Institute'),
(117715, 95744, 'en', 'name', 'Youxi County General Hospital'),
(117716, 95745, 'en', 'name', 'Alaska Center for Energy and Power'),
(117717, 95746, 'no_lang_code', 'name', 'Wolfram Research (United States)'),
(117718, 95747, 'en', 'name', 'Vermont State University'),
(117719, 95748, 'de', 'name', 'Fachhochschule Westschweiz - Genf'),
(117720, 95748, 'fr', 'name', 'HES-SO GenĆØve'),
(117721, 95748, 'en', 'name', 'University of Applied Sciences and Arts Western Switzerland – Geneva'),
(117722, 95749, 'en', 'name', 'Canton of St. Gallen-Hospital'),
(117723, 95749, 'de', 'name', 'Kantonsspital St. Gallen'),
(117724, 95750, 'en', 'name', 'Innovation Fund Denmark'),
(117725, 95750, 'da', 'name', 'Innovationsfonden'),
(117726, 95751, 'en', 'name', 'International Dairy Federation'),
(117727, 95752, 'fr', 'name', 'Centre de recherche sur le futur des villes'),
(117728, 95752, 'en', 'name', 'Research Centre on the Future of Cities'),
(117729, 95753, 'en', 'name', 'Monash Institute of Medical Research'),
(117730, 95754, 'en', 'name', 'Aktobe Regional State University named after K.Zhubanov'),
(117731, 95754, 'kk', 'name', 'Қ.Жұбанов атынГағы Ақтөбе өңірлік мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(117732, 95755, 'en', 'name', 'Microscopy Australia'),
(117733, 95756, 'en', 'name', 'Imam Ja’afar Al-Sadiq University'),
(117734, 95757, 'en', 'name', 'PhytoTrade Africa'),
(117735, 95758, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Normandie'),
(117736, 95759, 'de', 'name', 'Deutsch-Franzƶsisches Institut'),
(117737, 95760, 'en', 'name', 'Northwest University First Hospital'),
(117738, 95760, 'zh', 'name', 'č„æåŒ—å¤§å­¦ē¬¬äø€åŒ»é™¢'),
(117739, 95761, 'fr', 'name', 'Centre de recherche en santƩ et sciences infirmieres'),
(117740, 95761, 'en', 'name', 'Centre for Research on Health and Nursing'),
(117741, 95762, 'en', 'name', 'Wolfram Institute for Computational Foundations of Science'),
(117742, 95763, 'es', 'name', 'Universidad Tecnológica Fidel VelÔzquez'),
(117743, 95764, 'fr', 'name', 'Centre de Droit de l''environnement'),
(117744, 95764, 'en', 'name', 'Centre for Environmental Law and Global Sustainability'),
(117745, 95765, 'en', 'name', 'Dutch Heart Foundation'),
(117746, 95765, 'nl', 'name', 'Hartstichting'),
(117747, 95766, 'en', 'name', 'Thales Alenia Space'),
(117748, 95766, 'no_lang_code', 'name', 'Thales Alenia Space (France)'),
(117749, 95767, 'en', 'name', 'Assalam International University'),
(117750, 95767, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© السلام Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© - Ų³Ų±ŲŖ'),
(117751, 95768, 'en', 'name', 'University of Al-Hamdaniya'),
(117752, 95768, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­Ł…ŲÆŲ§Ł†ŁŠŲ©'),
(117753, 95769, 'pt', 'name', 'Escola Superior de Tecnologias de Fafe'),
(117754, 95770, 'en', 'name', 'Khorezm Rural Advisory Support Service'),
(117755, 95770, 'uz', 'name', 'Xorazm Agromaslahat Markazi'),
(117756, 95770, 'ru', 'name', 'Єорезмский Агро-ŠšŠ¾Š½ŃŃƒŠ»ŃŒŃ‚Š°Ń‚ŠøŠ²Š½Ń‹Š¹ Центр'),
(117757, 95771, 'fr', 'name', 'Laboratoire GƩnie Industriel'),
(117758, 95772, 'es', 'name', 'Centro de Recursos para el Aprendizaje y la Investigación P. Florentino Idoate S.J.'),
(117759, 95773, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure'),
(117760, 95774, 'en', 'name', 'Chengdu Technological University'),
(117761, 95774, 'zh', 'name', 'ęˆéƒ½å·„äøšå­¦é™¢'),
(117762, 95775, 'en', 'name', 'Himalayan College of Agricultural Sciences and Technology'),
(117763, 95776, 'pt', 'name', 'Centro UniversitƔrio Internacional UNINTER'),
(117764, 95777, 'pt', 'name', 'Instituto Politécnico de Saúde do Norte - CESPU'),
(117765, 95778, 'de', 'name', 'Nordzucker AG (Germany)'),
(117766, 95779, 'en', 'name', 'Institute of Physics and Technology'),
(117767, 95780, 'fr', 'name', 'Sciences Po Grenoble'),
(117768, 95781, 'en', 'name', 'Centre for Health Law, Policy and Ethics'),
(117769, 95782, 'en', 'name', 'Data Observatory Foundation'),
(117770, 95782, 'es', 'name', 'Fundación Observatorio de Datos'),
(117771, 95783, 'pl', 'name', 'Akademii Nauk Stosowanych im. Józefa Gołuchowskiego'),
(117772, 95784, 'it', 'name', 'Fondazione Ricerca Biomedica Avanzata Onlus - VIMM'),
(117773, 95785, 'de', 'name', 'Klinik und Poliklinik für Strahlentherapie und Radioonkologie'),
(117774, 95786, 'en', 'name', 'Clermont Auvergne INP'),
(117775, 95787, 'en', 'name', 'World Data System'),
(117776, 95788, 'en', 'name', 'Volga Region State University of Service'),
(117777, 95788, 'ru', 'name', 'Поволжский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ сервиса'),
(117778, 95789, 'en', 'name', 'Veneto Institute of Molecular Medicine'),
(117779, 95790, 'en', 'name', 'Complex Oncology Center - Ruse'),
(117780, 95790, 'bg', 'name', 'Kompleksen Onkologichen Tsentar – Ruse'),
(117781, 95791, 'fr', 'name', 'BibliothĆØque interuniversitaire Cujas'),
(117782, 95792, 'fr', 'name', 'Institut National des Sciences AppliquƩes Rouen Normandie'),
(117783, 95793, 'de', 'name', 'Deutsche Stiftung für Engagement und Ehrenamt'),
(117784, 95794, 'es', 'name', 'Universidad Tecnológica de TehuacÔn'),
(117785, 95795, 'en', 'name', 'Dalian Naval Academy'),
(117786, 95795, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›å¤§čæžčˆ°č‰‡å­¦é™¢'),
(117787, 95796, 'fr', 'name', 'Institute Mutualiste Montsouris'),
(117788, 95797, 'en', 'name', 'Saint Paul & Minnesota Foundation'),
(117789, 95798, 'en', 'name', 'Nansen Environmental and Remote Sensing Center'),
(117790, 95798, 'no', 'name', 'Stiftelsen Nansen Senter For Miljƶ OG FjernmƄling'),
(117791, 95799, 'pt', 'name', 'Cruz Vermelha Portuguesa'),
(117792, 95800, 'en', 'name', 'Institute of Entomology'),
(117793, 95801, 'en', 'name', 'Institute of Soil Biology'),
(117794, 95802, 'pt', 'name', 'Instituto PolitƩcnico da Maia'),
(117795, 95803, 'en', 'name', 'Autonomous University of Mexico State'),
(117796, 95803, 'es', 'name', 'Universidad Autónoma del Estado de México'),
(117797, 95804, 'fr', 'name', 'Centre de recherche en droit, technologie et sociƩtƩ'),
(117798, 95804, 'en', 'name', 'Centre for Law, Technology and Society'),
(117799, 95805, 'es', 'name', 'ESIC Universidad'),
(117800, 95805, 'en', 'name', 'ESIC University'),
(117801, 95806, 'en', 'name', 'Birds Canada'),
(117802, 95806, 'fr', 'name', 'Oiseaux Canada'),
(117803, 95807, 'en', 'name', 'Alfred Landecker Foundation'),
(117804, 95808, 'tr', 'name', 'Aile ve Sosyal Hizmetler Bakanlığı'),
(117805, 95809, 'de', 'name', 'Klinik und Poliklinik für Psychiatrie und Psychotherapie'),
(117806, 95810, 'en', 'name', 'University of the South Pacific - Solomon Islands Campus'),
(117807, 95811, 'it', 'name', 'Istituto Italiano di Studi Germanici'),
(117808, 95812, 'fr', 'name', 'CHANGINS - Haute Ć©cole de viticulture et œnologie'),
(117809, 95813, 'en', 'name', 'Tobruk University'),
(117810, 95813, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طبرق'),
(117811, 95814, 'en', 'name', 'Munich Center for Quantum Science and Technology'),
(117812, 95815, 'no_lang_code', 'name', 'Wolfram Research (United Kingdom)'),
(117813, 95816, 'fr', 'name', 'Galaxies, Etoiles, Physique et Instrumentation'),
(117814, 95817, 'en', 'name', 'Data Literacy Research Institute'),
(117815, 95817, 'fr', 'name', 'Institut de recherche en littƩratie des donnƩes'),
(117816, 95818, 'en', 'name', 'Monash University European Research Foundation ETS'),
(117817, 95819, 'en', 'name', 'Ministry of Technical and Higher Education'),
(117818, 95820, 'en', 'name', 'Walk21'),
(117819, 95821, 'fr', 'name', 'LIFE Institute de Recherches'),
(117820, 95821, 'en', 'name', 'LIFE Research Institute'),
(117821, 95822, 'en', 'name', 'Sawa University'),
(117822, 95822, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ساوة'),
(117823, 95823, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(117824, 95824, 'en', 'name', 'Pew Charitable Trusts'),
(117825, 95825, 'es', 'name', 'Instituto de Assistência Médica ao Servidor Público Estadual'),
(117826, 95826, 'en', 'name', 'State Education Development Agency'),
(117827, 95826, 'lv', 'name', 'Valsts izglītības attīstības aģentūra'),
(117828, 95827, 'pt', 'name', 'ISPA - Instituto UniversitƔrio'),
(117829, 95828, 'en', 'name', 'East Asia Institute of Management'),
(117830, 95829, 'es', 'name', 'Tecnológico de Estudios Superiores de Coacalco'),
(117831, 95830, 'de', 'name', 'Fachklinik für Neurologie Dietenbronn'),
(117832, 95831, 'la', 'name', 'Collegium Polonicum'),
(117833, 95832, 'en', 'name', 'Kotebe University of Education'),
(117834, 95833, 'en', 'name', 'Baden Württemberg Cancer-Registry'),
(117835, 95833, 'de', 'name', 'Krebsregister Baden-Württemberg'),
(117836, 95834, 'pt', 'name', 'Instituto Chico Mendes de Conservação da Biodiversidade'),
(117837, 95834, 'en', 'name', 'Chico Mendes Institute for Biodiversity Conservation'),
(117838, 95835, 'de', 'name', 'Klinik für Schweine'),
(117839, 95836, 'en', 'name', 'Southwest Alaska Inventory and Monitoring Network'),
(117840, 95837, 'no_lang_code', 'name', 'DoCoMo Communications Laboratories Europe GmbH'),
(117841, 95838, 'en', 'name', 'Urganch Innovation University'),
(117842, 95839, 'en', 'name', 'Medicines360'),
(117843, 95840, 'en', 'name', 'Nuu Chah Nulth Tribal Council'),
(117844, 95841, 'en', 'name', 'Munich Cluster for Systems Neurology'),
(117845, 95842, 'en', 'name', 'Assumption College of Davao'),
(117846, 95843, 'en', 'name', 'Cor Jesu College'),
(117847, 95844, 'en', 'name', 'Regional Environmental Center For Central Asia'),
(117848, 95844, 'ru', 'name', 'Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Экологический Центр Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(117849, 95845, 'fr', 'name', 'Centre de recherche sur les services Ʃducatifs et communautaires'),
(117850, 95845, 'en', 'name', 'Centre for Research on Educational and Community Services'),
(117851, 95846, 'en', 'name', 'Veterinary Standards and Drug Regulatory Laboratory'),
(117852, 95847, 'pt', 'name', 'Escola Superior de Saúde da Fundação ''Fernando Pessoa'''),
(117853, 95848, 'en', 'name', 'Center for NanoScience'),
(117854, 95849, 'pt', 'name', 'Universidade Lusíada de Vila Nova de Famalicão'),
(117855, 95850, 'en', 'name', 'North Central Climate Adaptation Science Center'),
(117856, 95851, 'es', 'name', 'Universidad Tecnológica de la Región Carbonífera'),
(117857, 95852, 'en', 'name', 'Pew Research Center'),
(117858, 95853, 'en', 'name', 'Munich Institute for Astro- and Particle Physics'),
(117859, 95854, 'en', 'name', 'University of Oran 2 Mohamed Ben Ahmed'),
(117860, 95854, 'fr', 'name', 'UniversitƩ d''Oran 2 Mohamed Ben Ahme'),
(117861, 95854, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁˆŁ‡Ų±Ų§Ł† 2 Ł…Ų­Ł…ŲÆ بن Ų£Ų­Ł…ŲÆ'),
(117862, 95855, 'en', 'name', 'Rocket Force Sergeant School'),
(117863, 95855, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē«ē®­å†›å£«å®˜å­¦ę ”'),
(117864, 95856, 'en', 'name', 'Czech Archaeological Society'),
(117865, 95856, 'cs', 'name', 'ČeskĆ” archeologickĆ” společnost'),
(117866, 95857, 'en', 'name', 'University of the South Pacific - Samoa Campus'),
(117867, 95858, 'en', 'name', 'OLS'),
(117868, 95859, 'en', 'name', 'Mashreq University'),
(117869, 95859, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المؓرق'),
(117870, 95860, 'id', 'name', 'Universitas Muhammadiyah Kalimantan Timur'),
(117871, 95861, 'en', 'name', 'North Northamptonshire Council'),
(117872, 95862, 'fr', 'name', 'Centre commun de recherche sur les systèmes et la pharmacologie personnalisée'),
(117873, 95862, 'en', 'name', 'Joint Research Center on Systems and Personalized Pharmacology'),
(117874, 95863, 'de', 'name', 'Ministerium für Landwirtschaft, Ernährung und Weinbau'),
(117875, 95863, 'en', 'name', 'Ministry of Agriculture, Food and Viticulture'),
(117876, 95863, 'fr', 'name', 'MinistĆØre de l''Agriculture, de l''Alimentation et de la Viticultur'),
(117877, 95863, 'lu', 'name', 'Ministère fir Landwirtschaft, Ernärung a Wäibau'),
(117878, 95864, 'en', 'name', 'West Northamptonshire Council'),
(117879, 95865, 'fr', 'name', 'Centre de recherche sur les francophonies canadiennes'),
(117880, 95865, 'en', 'name', 'Centre for Research on French Canadian Culture'),
(117881, 95866, 'de', 'name', 'Forschungsinstitut für Anwendungsorientierte Wissensverarbeitung'),
(117882, 95867, 'en', 'name', 'Center for Integrated Protein Science Munich'),
(117883, 95868, 'fr', 'name', 'PHOTOSYNTHESE'),
(117884, 95869, 'no_lang_code', 'name', 'Plazi Verein'),
(117885, 95870, 'id', 'name', 'Institut Nalanda'),
(117886, 95870, 'en', 'name', 'Nalanda Institute'),
(117887, 95871, 'en', 'name', 'Gaziantep Islam Science and Technology University'),
(117888, 95871, 'tr', 'name', 'Gaziantep İslam Bilim ve Teknoloji Üniversitesi'),
(117889, 95872, 'en', 'name', 'Brooklyn Perinatal Network'),
(117890, 95873, 'en', 'name', 'Modern Business School'),
(117891, 95873, 'sr', 'name', 'Visoka Ŕkola modernog biznisa'),
(117892, 95874, 'en', 'name', 'Canada Energy Regulator'),
(117893, 95874, 'fr', 'name', 'RĆ©gie de l’énergie du Canada'),
(117894, 95875, 'la', 'name', 'Collegium Carolinum'),
(117895, 95876, 'en', 'name', 'Algiers 2 University'),
(117896, 95876, 'fr', 'name', 'UniversitƩ d''Alger 2'),
(117897, 95876, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الجزائر 2'),
(117898, 95877, 'en', 'name', 'California Earthquake Authority'),
(117899, 95878, 'en', 'name', 'Society for Ecological Restoration'),
(117900, 95879, 'en', 'name', 'Springer Nature (India)'),
(117901, 95880, 'en', 'name', 'Falkland Islands Fisheries Department'),
(117902, 95881, 'ru', 'name', 'Institut geografii Respubliki Kazahstan'),
(117903, 95881, 'en', 'name', 'Institute of Geography'),
(117904, 95881, 'kk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географии'),
(117905, 95882, 'en', 'name', 'Denison University'),
(117906, 95883, 'en', 'name', 'Institute of Plant Molecular Biology'),
(117907, 95884, 'en', 'name', 'University of Duhok'),
(117908, 95884, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ‡ŁˆŁƒ'),
(117909, 95885, 'pt', 'name', 'Fundação Minerva - Cultura - Ensino e Investigação Científica'),
(117910, 95886, 'en', 'name', 'Bridging Access to Care'),
(117911, 95887, 'de', 'name', 'Institut für Sonnenphysik'),
(117912, 95887, 'en', 'name', 'Institute for Solar Physics'),
(117913, 95888, 'es', 'name', 'Universidad de Colorado en Boulder'),
(117914, 95888, 'en', 'name', 'University of Colorado Boulder'),
(117915, 95888, 'fr', 'name', 'UniversitƩ du Colorado Ơ Boulder'),
(117916, 95889, 'en', 'name', 'Institute for Wildlife Studies'),
(117917, 95890, 'en', 'name', 'Devki Devi Foundation'),
(117918, 95891, 'de', 'name', 'Klinik und Poliklinik für Frauenheilkunde und Geburtshilfe'),
(117919, 95892, 'de', 'name', 'Klinik und Poliklinik für Orthopädie, Physikalische Medizin und Rehabilitation'),
(117920, 95893, 'vi', 'name', 'Hį»c viện PhỄ nữ Việt Nam'),
(117921, 95893, 'en', 'name', 'Vietnam Women''s Academy'),
(117922, 95894, 'de', 'name', 'Deutsche Gesellschaft für Limnologie'),
(117923, 95895, 'no', 'name', 'Stord hospital'),
(117924, 95896, 'pt', 'name', 'Uninter'),
(117925, 95897, 'es', 'name', 'Universidad Privada San Francisco de AsĆ­s'),
(117926, 95898, 'fr', 'name', 'Centre de Droit Public'),
(117927, 95898, 'en', 'name', 'Public Law Centre'),
(117928, 95899, 'en', 'name', 'The Fund for Science, Technology and Innovation'),
(117929, 95900, 'en', 'name', 'Center for Integrated Quantum Science and Technology'),
(117930, 95901, 'en', 'name', 'Australian National Soil Archive'),
(117931, 95902, 'en', 'name', 'Rachel Carson Center for Environment and Society'),
(117932, 95903, 'es', 'name', 'Escuela Normal Rural "Gral. MatĆ­as Ramos Santos"'),
(117933, 95904, 'en', 'name', 'Fonna Hospital Trust'),
(117934, 95905, 'en', 'name', 'Prague Advanced Technology and Research Innovation Center, a.s.'),
(117935, 95906, 'pt', 'name', 'Hospital do Servidor PĆŗblico Estadual'),
(117936, 95907, 'en', 'name', 'Montana University System'),
(117937, 95907, 'es', 'name', 'Sistema Universitario de Montana'),
(117938, 95908, 'en', 'name', 'Laoshan Laboratory'),
(117939, 95909, 'en', 'name', 'Institute of Agriculture and Animal Science'),
(117940, 95910, 'hr', 'name', 'SveučiliŔte Privredna akademija'),
(117941, 95910, 'en', 'name', 'University Business Academy in Novi Sad'),
(117942, 95910, 'sh', 'name', 'Univerzitet Privredna akademija u Novom Sadu'),
(117943, 95910, 'sr', 'name', 'Универзитет ŠŸŃ€ŠøŠ²Ń€ŠµŠ“Š½Š° акаГемија'),
(117944, 95911, 'en', 'name', 'National Commission on Research Science and Technology'),
(117945, 95912, 'en', 'name', 'WWF Hungary'),
(117946, 95912, 'hu', 'name', 'WWF MagyarorszƔg'),
(117947, 95913, 'en', 'name', 'Technology Research Institute of Osaka Prefecture'),
(117948, 95913, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(117949, 95914, 'en', 'name', 'Open Modeling Foundation'),
(117950, 95915, 'fr', 'name', 'UniversitƩ Oran 1 Ahmed Ben Bella'),
(117951, 95915, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁˆŁ‡Ų±Ų§Ł†1 Ų£Ų­Ł…ŲÆ بن بلة'),
(117952, 95916, 'en', 'name', 'Roy Rosenzweig Center for History and New Media'),
(117953, 95917, 'en', 'name', 'University of Bamberg Press'),
(117954, 95918, 'fr', 'name', 'Centre Virchow-VillermƩ'),
(117955, 95919, 'es', 'name', 'Universidad de Alaska Fairbanks'),
(117956, 95919, 'en', 'name', 'University of Alaska Fairbanks'),
(117957, 95919, 'fr', 'name', 'UniversitƩ de l''alaska Ơ fairbanks'),
(117958, 95920, 'en', 'name', 'Excellence Cluster Origins'),
(117959, 95920, 'de', 'name', 'Exzellenzcluster Origins'),
(117960, 95921, 'id', 'name', 'Universitas Mochammad Sroedji Jember'),
(117961, 95922, 'en', 'name', 'EHL Hospitality Business School'),
(117962, 95923, 'fr', 'name', 'Institut de l''environnement'),
(117963, 95923, 'en', 'name', 'Institute of the Environment'),
(117964, 95924, 'cs', 'name', 'Institut klinickƩ a experimentƔlnƭ medicƭny'),
(117965, 95924, 'en', 'name', 'Institute of Clinical and Experimental Medicine'),
(117966, 95925, 'fr', 'name', 'Institut de recherche sur la science, la sociƩtƩ et la politique publique'),
(117967, 95925, 'en', 'name', 'Institute for Science, Society and Policy'),
(117968, 95926, 'en', 'name', 'Wulin Academy of Arts'),
(117969, 95926, 'zh', 'name', 'ę­¦ęž—ę›øē•«é™¢'),
(117970, 95927, 'en', 'name', 'ALS CURE Project'),
(117971, 95928, 'en', 'name', 'Ministry of Education and Science of the Republic of Kazakhstan'),
(117972, 95929, 'en', 'name', 'Hudson Institute of Medical Research'),
(117973, 95930, 'fr', 'name', 'Laboratoire d''Automatique, GƩnie Informatique et Signal'),
(117974, 95931, 'en', 'name', 'Research Council of Zimbabwe'),
(117975, 95932, 'en', 'name', 'Shota Rustaveli National Science Foundation'),
(117976, 95933, 'en', 'name', 'Gaia College'),
(117977, 95934, 'fr', 'name', 'L’Institut de biologie des systĆØmes d’Ottawa'),
(117978, 95934, 'en', 'name', 'Ottawa Institute of Systems Biology'),
(117979, 95935, 'fr', 'name', 'DƩlƩgation Nord, Pas-de-Calais et Picardie'),
(117980, 95936, 'en', 'name', 'University College of Allameh Helli'),
(117981, 95936, 'fa', 'name', 'دانؓگاه علامه Ų­Ł„ŪŒ Ś†Ų§Ł„ŁˆŲ³'),
(117982, 95937, 'id', 'name', 'Institut Teknologi dan Sains Mandala'),
(117983, 95938, 'en', 'name', 'Saskatchewan Epidemiology Association'),
(117984, 95939, 'fr', 'name', 'Centre Intégré de Santé et Services Sociaux de Chaudière-Appalache'),
(117985, 95940, 'en', 'name', 'National Coalition of Independent Scholars'),
(117986, 95941, 'fr', 'name', 'Centre de recherche et d''enseignement sur les droits de la personne'),
(117987, 95941, 'en', 'name', 'Human Rights Research and Education Centre'),
(117988, 95942, 'en', 'name', 'Institute of Zoology'),
(117989, 95942, 'kk', 'name', 'Š—Š¾Š¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(117990, 95943, 'de', 'name', 'Institut für Qualitätsentwicklung an Schulen Schleswig-Holstein'),
(117991, 95944, 'pt', 'name', 'Escola Superior de SaĆŗde Cruz Vermelha Portuguesa - Alto TĆ¢mega'),
(117992, 95945, 'pt', 'name', 'Associação De Conservação Do Ambiente E Desenvolvimento Integrado Rural'),
(117993, 95946, 'fr', 'name', 'Centre d''Ʃtudes en politiques internationales'),
(117994, 95946, 'en', 'name', 'Centre on International Policy Studies'),
(117995, 95947, 'de', 'name', 'Fachhochschule Westschweiz Freiburg'),
(117996, 95947, 'fr', 'name', 'HES-SO Fribourg'),
(117997, 95947, 'en', 'name', 'University of Applied Sciences and Arts Western Switzerland Fribourg'),
(117998, 95948, 'pt', 'name', 'Escola Superior de SaĆŗde Jean Piaget de Viseu'),
(117999, 95949, 'en', 'name', 'Jaipuria School of Business, Ghaziabad'),
(118000, 95950, 'pt', 'name', 'Escola Superior de Educação de Fafe'),
(118001, 95951, 'fr', 'name', 'HEMU - Haute Ɖcole de Musique'),
(118002, 95952, 'en', 'name', 'Slovenian Language Technologies Society'),
(118003, 95953, 'en', 'name', 'Nanosystems Initiative Munich'),
(118004, 95954, 'fr', 'name', 'Institut de recherche en musique et santƩ'),
(118005, 95954, 'en', 'name', 'Music and Health Research Institute'),
(118006, 95955, 'en', 'name', 'ACR+'),
(118007, 95956, 'it', 'name', 'Istituto Nazionale per la Valutazione del Sistema dell''Istruzione'),
(118008, 95957, 'no_lang_code', 'name', 'NTT (Germany)'),
(118009, 95958, 'en', 'name', 'Institute of Plant Biology and Biotechnology'),
(118010, 95958, 'kk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Šø биотехнологии растений'),
(118011, 95959, 'es', 'name', 'Universidad Tecnológica de Puebla'),
(118012, 95960, 'de', 'name', 'Jade Hochschule'),
(118013, 95960, 'en', 'name', 'Jade University of Applied Sciences'),
(118014, 95961, 'en', 'name', 'University of Gibraltar'),
(118015, 95962, 'fr', 'name', 'Centre de recherche et d’innovation en catalyse'),
(118016, 95962, 'en', 'name', 'Centre for Catalysis Research and Innovation'),
(118017, 95963, 'de', 'name', 'Fƶrderverein Bioƶkonomieforschung e.V.'),
(118018, 95964, 'en', 'name', 'BLOOM'),
(118019, 95965, 'fr', 'name', 'Institut Nexus de technologies quantiques'),
(118020, 95965, 'en', 'name', 'Nexus for Quantum Technologies Institute'),
(118021, 95966, 'en', 'name', 'Al-Farahidi University'),
(118022, 95966, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŲ±Ų§Ł‡ŁŠŲÆŁŠ'),
(118023, 95967, 'fr', 'name', 'Institut de recherche et d’études autochtones'),
(118024, 95967, 'en', 'name', 'Research Institute for Indigenous studies'),
(118025, 95968, 'en', 'name', 'SWPS University'),
(118026, 95968, 'pl', 'name', 'Uniwersytet SWPS'),
(118027, 95969, 'fr', 'name', 'Structure FƩdƩrative de Recherche SantƩ Lyon Est'),
(118028, 95970, 'en', 'name', 'Brooklyn Navy Yard'),
(118029, 95971, 'pt', 'name', 'Instituto Europeu de Estudos Superiores'),
(118030, 95972, 'fr', 'name', 'Ministère de la Transition écologique et de la Cohésion des territoires'),
(118031, 95973, 'en', 'name', 'Finnish Food Authority'),
(118032, 95973, 'sv', 'name', 'Livsmedelsverket'),
(118033, 95973, 'fi', 'name', 'Ruokavirasto'),
(118034, 95974, 'en', 'name', 'Integrated Rural Development And Nature Conservation'),
(118035, 95975, 'fr', 'name', 'HES-SO Arc'),
(118036, 95976, 'en', 'name', 'Debere Berhan Health Science College'),
(118037, 95977, 'en', 'name', 'Mahatma Gandhi Institute of Technology'),
(118038, 95978, 'en', 'name', 'NorthEast Pacific Deep-sea Exploration Project'),
(118039, 95979, 'no_lang_code', 'name', 'Leonardo (France)'),
(118040, 95980, 'en', 'name', 'Czech Botanical Society'),
(118041, 95980, 'cs', 'name', 'ČeskĆ” botanickĆ” společnost'),
(118042, 95981, 'en', 'name', 'Royal British Columbia Museum'),
(118043, 95982, 'pt', 'name', 'Instituto PolitƩcnico da Lusofonia'),
(118044, 95983, 'en', 'name', 'Insilico Medicine (United States)'),
(118045, 95984, 'fr', 'name', 'L''Institut de recherche sur le cerveau'),
(118046, 95984, 'en', 'name', 'uOttawa Brain and Mind Research Institute'),
(118047, 95985, 'en', 'name', 'Computer Science Laboratory of Lille'),
(118048, 95985, 'fr', 'name', 'Laboratoire d''Informatique Fondamentale de Lille'),
(118049, 95986, 'en', 'name', 'Castleton University'),
(118050, 95987, 'en', 'name', 'Kempelen Institute of Intelligent Technologies'),
(118051, 95988, 'en', 'name', 'Vermont Technical College'),
(118052, 95989, 'no_lang_code', 'name', 'Glycomine, Inc. (United States)'),
(118053, 95990, 'en', 'name', 'Institute for Telecommunication Sciences'),
(118054, 95991, 'en', 'name', 'International Institute of Health Management Research, Delhi'),
(118055, 95992, 'en', 'name', 'Institute of Parasitology'),
(118056, 95993, 'no_lang_code', 'name', 'Leonardo (Poland)'),
(118057, 95994, 'fr', 'name', 'Centre d’études en gouvernance'),
(118058, 95994, 'en', 'name', 'Centre on Governance'),
(118059, 95995, 'en', 'name', 'Eterna Therapeutics (United States)'),
(118060, 95996, 'en', 'name', 'Brooklyn Children’s Museum'),
(118061, 95997, 'de', 'name', 'Otto-Friedrich-UniversitƤt Bamberg'),
(118062, 95997, 'en', 'name', 'University of Bamberg'),
(118063, 95998, 'id', 'name', 'Universitas Gorontalo'),
(118064, 95999, 'en', 'name', 'National Telecommunications and Information Administration'),
(118065, 96000, 'no_lang_code', 'name', 'Global Ecology Unit CREAF-CSIC-UAB'),
(118066, 96001, 'de', 'name', 'Fachhochschule Westschweiz - Waadt'),
(118067, 96001, 'fr', 'name', 'HES-SO Vaud'),
(118068, 96001, 'en', 'name', 'University of Applied Sciences and Arts Western Switzerland - Vaud'),
(118069, 96002, 'fr', 'name', 'La Manufacture - Haute école des arts de la scène'),
(118070, 96003, 'en', 'name', 'Centre for Interdisciplinary Research on Citizenship and Minorities'),
(118071, 96003, 'fr', 'name', 'Centre interdisciplinaire de recherche sur la citoyennetƩ et les minoritƩs'),
(118072, 96004, 'fr', 'name', 'INFRANALYTICS'),
(118073, 96005, 'en', 'name', 'Central American University José Simeón Cañas'),
(118074, 96005, 'es', 'name', 'Universidad Centroamericana José Simeón Cañas'),
(118075, 96006, 'en', 'name', 'Francisk Skorina Gomel State University'),
(118076, 96006, 'ru', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Франциска Дкорины'),
(118077, 96006, 'be', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń Францыска Дкарыны'),
(118078, 96007, 'en', 'name', 'Northern Vermont University'),
(118079, 96008, 'fr', 'name', 'Ecole Nationale du GƩnie de l''Eau et de l''Environnement de Strasbourg (ENGEES)'),
(118080, 96009, 'en', 'name', 'Council of the Haida Nation'),
(118081, 96010, 'es', 'name', 'Universidad Tecnologica de la Huasteca Hidalguense'),
(118082, 96011, 'fr', 'name', 'Haute Ɖcole de SantĆ© Vaud'),
(118083, 96012, 'de', 'name', 'Zentrum für Klinische Tiermedizin'),
(118084, 96013, 'en', 'name', 'Higher Institute of Science and Technology Sabratha'),
(118085, 96013, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ© - ŲµŲØŲ±Ų§ŲŖŲ©'),
(118086, 96014, 'de', 'name', 'Eberhard Karls Universität Tübingen'),
(118087, 96014, 'en', 'name', 'University of Tübingen'),
(118088, 96015, 'no_lang_code', 'name', 'Didi Chuxing (China)'),
(118089, 96015, 'zh', 'name', 'åŒ—äŗ¬å°ę””ē§‘ęŠ€ęœ‰é™å…¬åø'),
(118090, 96016, 'en', 'name', 'Dish Network (United States)'),
(118091, 96017, 'en', 'name', 'EOG Resources (United States)'),
(118092, 96018, 'en', 'name', 'University of Business in Prague'),
(118093, 96018, 'cs', 'name', 'VysokÔ Ŕkola obchodní v Praze'),
(118094, 96019, 'en', 'name', 'Nobel International Business School'),
(118095, 96020, 'no_lang_code', 'name', 'Aeroflex'),
(118096, 96021, 'en', 'name', 'Cincinnati Financial (United States)'),
(118097, 96022, 'en', 'name', 'S. M. Kirov Military Medical Academy'),
(118098, 96023, 'en', 'name', 'Museum of Glass and Jewellery in Jablonec nad Nisou'),
(118099, 96023, 'cs', 'name', 'Muzeum skla a bižuterie v Jablonci nad Nisou'),
(118100, 96024, 'en', 'name', 'Society for the Study of Human Development'),
(118101, 96025, 'en', 'name', 'MORSE (United States)'),
(118102, 96026, 'en', 'name', 'Pratt & Whitney Rocketdyne (United States)'),
(118103, 96027, 'en', 'name', 'Bridgewater Associates (United States)'),
(118104, 96028, 'en', 'name', 'Darden Restaurants (United States)'),
(118105, 96029, 'en', 'name', 'Patel Institute of Science and Management'),
(118106, 96030, 'no_lang_code', 'name', 'NamesforLife (United States)'),
(118107, 96031, 'en', 'name', 'NRG Energy (United States)'),
(118108, 96032, 'en', 'name', 'Thai Nguyen University of Medicine and Pharmacy'),
(118109, 96032, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y - Dược, ĐẔi hį»c ThĆ”i NguyĆŖn'),
(118110, 96033, 'en', 'name', 'Chongqing Airport'),
(118111, 96034, 'no_lang_code', 'name', 'Martin Marietta Materials (United States)'),
(118112, 96035, 'no_lang_code', 'name', 'Aibee (China)'),
(118113, 96035, 'zh', 'name', 'ēˆ±ē¬”ę™ŗčƒ½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(118114, 96036, 'en', 'name', 'Hong Kong Chu Hai College'),
(118115, 96036, 'zh', 'name', 'é¦™ęøÆē ęµ·å­øé™¢'),
(118116, 96037, 'en', 'name', 'General Hospital of Central Theater Command'),
(118117, 96037, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›äø­éƒØęˆ˜åŒŗę€»åŒ»é™¢'),
(118118, 96038, 'en', 'name', 'City College of New York'),
(118119, 96039, 'en', 'name', 'Arizona Western College'),
(118120, 96040, 'no_lang_code', 'name', 'CSX (United States)'),
(118121, 96041, 'en', 'name', 'Exelon (United States)'),
(118122, 96042, 'en', 'name', 'Animal and Plant Inspection and Quarantine Technology Center of Shenzhen Customs District'),
(118123, 96042, 'zh', 'name', 'ę·±åœ³ęµ·å…³åŠØę¤ē‰©ę£€éŖŒę£€ē–«ęŠ€ęœÆäø­åæƒ'),
(118124, 96043, 'en', 'name', 'Brooklyn Public Library'),
(118125, 96044, 'no_lang_code', 'name', 'A.O. Smith (United States)'),
(118126, 96045, 'en', 'name', 'Taunton & Somerset NHS Foundation Trust'),
(118127, 96046, 'en', 'name', 'Wellington Community Hospital'),
(118128, 96047, 'en', 'name', 'Alfa University College'),
(118129, 96048, 'en', 'name', 'PG&E Corporation (United States)'),
(118130, 96049, 'en', 'name', 'Rock Flow Dynamics (United Kingdom)'),
(118131, 96050, 'en', 'name', 'Vulcan Materials (United States)'),
(118132, 96051, 'en', 'name', 'Ministry of Culture'),
(118133, 96052, 'es', 'name', 'Universidad Tecnológica de Querétaro'),
(118134, 96053, 'en', 'name', 'Wuhan General Hospital of Guangzhou'),
(118135, 96053, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›å¹æå·žå†›åŒŗę­¦ę±‰ę€»åŒ»é™¢'),
(118136, 96054, 'en', 'name', 'Eversource Energy (United States)'),
(118137, 96055, 'en', 'name', 'Williton Community Hospital'),
(118138, 96056, 'en', 'name', 'U.S. Bancorp (United States)'),
(118139, 96057, 'fr', 'name', 'Fonctionnement écologique et gestion durable des agrosystèmes bananiers et ananas'),
(118140, 96057, 'en', 'name', 'Functioning and Sustainable Management of Banana and Pineapple'),
(118141, 96058, 'en', 'name', 'Raymond James Financial (United States)'),
(118142, 96059, 'fr', 'name', 'Analyses des eaux, sols et vƩgƩtaux'),
(118143, 96059, 'en', 'name', 'Water, Soil and Plant Analysis'),
(118144, 96060, 'es', 'name', 'Universidad Tecnológica de Manzanillo'),
(118145, 96061, 'en', 'name', 'Minehead Community Hospital'),
(118146, 96062, 'en', 'name', 'Abt Global (United States)'),
(118147, 96063, 'en', 'name', 'Somerset Partnership NHS Foundation Trust'),
(118148, 96064, 'en', 'name', 'Governmental Agency for IT Development'),
(118149, 96065, 'en', 'name', 'University of Cassino and Southern Lazio'),
(118150, 96065, 'it', 'name', 'UniversitĆ  degli studi di Cassino e del Lazio Meridionale'),
(118151, 96065, 'fr', 'name', 'UniversitƩ de cassino'),
(118152, 96066, 'en', 'name', 'McMurdo Dry Valleys Long Term Ecological Research'),
(118153, 96067, 'en', 'name', 'Centers for Disease Control and Prevention'),
(118154, 96067, 'fr', 'name', 'Centres pour le contrƓle et la prƩvention des maladies'),
(118155, 96067, 'es', 'name', 'Centros para el Control y Prevención de Enfermedades'),
(118156, 96068, 'no_lang_code', 'name', 'Verisign (United States)'),
(118157, 96069, 'en', 'name', 'Harris (United States)'),
(118158, 96070, 'en', 'name', 'Shahid Matangini Hazra Government College for Women'),
(118159, 96071, 'no_lang_code', 'name', 'Pinterest (United States)'),
(118160, 96072, 'en', 'name', 'Yum! Brands (United States)'),
(118161, 96073, 'fr', 'name', 'Peuplements vƩgƩtaux et bioagresseurs en milieu tropical'),
(118162, 96073, 'en', 'name', 'Plant Communities and Biological Invaders in Tropical Environments'),
(118163, 96074, 'es', 'name', 'Instituto Tecnológico de San Luis Potosí'),
(118164, 96075, 'en', 'name', 'Universal Health Services (United States)'),
(118165, 96076, 'id', 'name', 'Universitas Nahdlatul Ulama Purwokerto'),
(118166, 96077, 'en', 'name', 'Paramount Global (United States)'),
(118167, 96078, 'es', 'name', 'Universidad de Denver'),
(118168, 96078, 'en', 'name', 'University of Denver'),
(118169, 96078, 'fr', 'name', 'UniversitƩ de denver'),
(118170, 96079, 'en', 'name', 'Institute of High Energy Physics'),
(118171, 96079, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢é«˜čƒ½ē‰©ē†ē ”ē©¶ę‰€'),
(118172, 96080, 'es', 'name', 'Asociación Colombiana de Medicina Física y Rehabilitación'),
(118173, 96081, 'es', 'name', 'Asociación Colombiana de Cirugía de la Mano'),
(118174, 96082, 'en', 'name', 'Tusimple (United States)'),
(118175, 96083, 'en', 'name', 'Crown Castle International (United States)'),
(118176, 96084, 'en', 'name', 'North Bohemian Museum in Liberec'),
(118177, 96084, 'cs', 'name', 'SeveročeskĆ© muzeum v Liberci'),
(118178, 96085, 'en', 'name', 'University of Washington Bothell'),
(118179, 96086, 'sr', 'name', 'DruÅ”tvo ekonomista ā€žEkonomikaā€œ, NiÅ”'),
(118180, 96086, 'en', 'name', 'Society of Economists "Ekonomika" NiÅ”'),
(118181, 96087, 'en', 'name', 'Mininglamp (China)'),
(118182, 96087, 'zh', 'name', 'åŒ—äŗ¬ę˜Žē•„ę˜­č¾‰ē§‘ęŠ€ęœ‰é™å…¬åø'),
(118183, 96088, 'en', 'name', 'Bridgwater Community Hospital'),
(118184, 96089, 'es', 'name', 'Centro Universitario del Sur'),
(118185, 96090, 'es', 'name', 'Tecnológico de Estudios Superiores de Chalco'),
(118186, 96091, 'es', 'name', 'Instituto de la Democracia'),
(118187, 96092, 'en', 'name', 'xAI (United States)'),
(118188, 96093, 'en', 'name', 'Aon (United Kingdom)'),
(118189, 96094, 'en', 'name', 'The Fafo Institute for Labour and Social Research'),
(118190, 96095, 'en', 'name', 'American Tower (United States)'),
(118191, 96096, 'en', 'name', 'Somerset NHS Foundation Trust'),
(118192, 96097, 'no_lang_code', 'name', 'Leonardo (United States)'),
(118193, 96098, 'en', 'name', 'Climate Equity Reference Project'),
(118194, 96099, 'de', 'name', 'Forschungszentrum L3S'),
(118195, 96099, 'en', 'name', 'L3S Research Center'),
(118196, 96100, 'en', 'name', 'Yeovil District Hospital'),
(118197, 96101, 'cs', 'name', 'ElektronickÔ Zdravotní Knížka'),
(118198, 96101, 'no_lang_code', 'name', 'Izip (Czechia)'),
(118199, 96102, 'no_lang_code', 'name', 'DAF Trucks (Netherlands)'),
(118200, 96103, 'en', 'name', 'Biomass, Wood, Energy, Bioproducts'),
(118201, 96103, 'fr', 'name', 'Biomasse, bois, Ʃnergie, bio-produits'),
(118202, 96104, 'en', 'name', 'Information Society Development Institute'),
(118203, 96105, 'en', 'name', 'Cabio Biotech (Wuhan) Biotechnology Co. Ltd (China)'),
(118204, 96105, 'zh', 'name', 'å˜‰åæ…ä¼˜ē”Ÿē‰©ęŠ€ęœÆ(ꭦ걉)č‚”ä»½ęœ‰é™å…¬åø'),
(118205, 96106, 'fr', 'name', 'AAU - Ambiances, Architectures, UrbanitƩs'),
(118206, 96107, 'en', 'name', 'Monolithic Power Systems (United States)'),
(118207, 96108, 'en', 'name', 'Northern Trust (United States)'),
(118208, 96109, 'en', 'name', 'University of Vavuniya'),
(118209, 96109, 'ta', 'name', 'ą®µą®µąÆą®©ą®æą®Æą®¾ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(118210, 96110, 'en', 'name', 'Union Pacific (United States)'),
(118211, 96111, 'en', 'name', 'Czech Office for Surveying, Mapping and Cadastre'),
(118212, 96111, 'cs', 'name', 'Český ĆŗÅ™ad zeměměřický a katastrĆ”lnĆ­'),
(118213, 96112, 'en', 'name', 'Burnham On Sea War Memorial Hospital'),
(118214, 96113, 'da', 'name', 'De Nationale Geologiske UndersĆøgelser for Danmark og GrĆønland'),
(118215, 96113, 'en', 'name', 'Geological Survey of Denmark and Greenland'),
(118216, 96114, 'en', 'name', 'Pan-European University'),
(118217, 96114, 'cs', 'name', 'PanevropskĆ” univerzita, a.s.'),
(118218, 96115, 'no_lang_code', 'name', 'Pultegroup (United States)'),
(118219, 96116, 'en', 'name', 'CCCC Comprehensive Planning and Design Institute Co., Ltd. (China)'),
(118220, 96116, 'zh', 'name', 'äø­äŗ¤ē»¼åˆč§„åˆ’č®¾č®”é™¢ęœ‰é™å…¬åø'),
(118221, 96117, 'es', 'name', 'Instituto Tecnólogico de La Laguna'),
(118222, 96118, 'id', 'name', 'STIKES Muhammadiyah Kuningan'),
(118223, 96119, 'es', 'name', 'Universidad PolitƩcnica de CuautitlƔn Izcalli'),
(118224, 96120, 'en', 'name', 'Center for the Analysis of Sustainable Agricultural Systems'),
(118225, 96121, 'es', 'name', 'Universidad de Montana'),
(118226, 96121, 'en', 'name', 'University of Montana'),
(118227, 96121, 'fr', 'name', 'UniversitƩ du montana'),
(118228, 96122, 'no_lang_code', 'name', 'NGimat (United States)'),
(118229, 96123, 'en', 'name', 'Fafo Foundation'),
(118230, 96124, 'en', 'name', 'Grassroot Soccer, Inc.'),
(118231, 96125, 'ru', 'name', 'Oбщество ŠøŠ½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»Š¾Š² за развитие науки в Дербии ā€žŠ”ŠµŃ€Š±ŃŠŗŠøŠ¹ aкаГемический Ń†ŠµŠ½Ń‚Ń€ā€ ŠŠ¾Š²Šø-ДаГ'),
(118232, 96125, 'en', 'name', 'The Association of Intellectuals for the Development of Science in Serbia ā€œThe Serbian Academic Centerā€'),
(118233, 96125, 'sr', 'name', 'Š£Š“Ń€ŃƒŠ¶ŠµŃšŠµ ŠøŠ½Ń‚ŠµŠ»ŠµŠŗŃ‚ŃƒŠ°Š»Š°Ń†Š° за Ń€Š°Š·Š²Š¾Ń˜ науке у Š”Ń€Š±ŠøŃ˜Šø - ā€žŠ”Š ŠŸŠ”ŠšŠ˜ ŠŠšŠŠ”Š•ŠœŠ”ŠšŠ˜ Š¦Š•ŠŠ¢ŠŠ ā€'),
(118234, 96126, 'en', 'name', 'Disability Community Resource Center'),
(118235, 96127, 'no_lang_code', 'name', 'Daimler (United States)'),
(118236, 96128, 'no_lang_code', 'name', 'Brown-Forman'),
(118237, 96128, 'en', 'name', 'Brown-Forman (United States)'),
(118238, 96129, 'es', 'name', 'Instituto Tecnológico Superior de Loreto'),
(118239, 96130, 'no_lang_code', 'name', 'MeteoIA (Brazil)'),
(118240, 96131, 'en', 'name', 'Czech Geological Survey'),
(118241, 96131, 'cs', 'name', 'ČeskÔ geologickÔ služba'),
(118242, 96132, 'en', 'name', 'American Electric Power (United States)'),
(118243, 96133, 'es', 'name', 'Asociación Colombiana de Hepatología'),
(118244, 96134, 'en', 'name', 'Guangzhou Baiyun Airport Customs Comprehensive Technical Service Center'),
(118245, 96134, 'zh', 'name', 'å¹æå·žē™½äŗ‘ęœŗåœŗęµ·å…³ē»¼åˆęŠ€ęœÆęœåŠ”äø­åæƒ'),
(118246, 96135, 'en', 'name', 'Bitmain Technologies (China)'),
(118247, 96135, 'zh', 'name', 'ęÆ”ē‰¹å¤§é™†ē§‘ęŠ€ęœ‰é™å…¬åø'),
(118248, 96136, 'no_lang_code', 'name', 'Reactive Innovations (United States)'),
(118249, 96137, 'no_lang_code', 'name', 'Verizon Media (United States)'),
(118250, 96138, 'en', 'name', 'Molson Coors Brewing Company (United States)'),
(118251, 96139, 'en', 'name', 'Crewkerne Community Hospital'),
(118252, 96140, 'no_lang_code', 'name', 'Nippon Steel (Japan)'),
(118253, 96141, 'no_lang_code', 'name', 'Koje College'),
(118254, 96141, 'ko', 'name', 'ź±°ģ œėŒ€ķ•™'),
(118255, 96142, 'pt', 'name', 'Centro UniversitÔrio Católica de QuixadÔ'),
(118256, 96143, 'en', 'name', 'Cloudwalk (China)'),
(118257, 96143, 'zh', 'name', 'äŗ‘ä»Žē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(118258, 96144, 'no_lang_code', 'name', 'Agari Data (United States)'),
(118259, 96145, 'no_lang_code', 'name', 'Nippon Steel (Germany)'),
(118260, 96146, 'en', 'name', 'Ramon Magsaysay Memorial Colleges'),
(118261, 96147, 'no_lang_code', 'name', 'IFlyTek (China)'),
(118262, 96147, 'zh', 'name', 'ē§‘å¤§č®Æé£žč‚”ä»½ęœ‰é™å…¬åø'),
(118263, 96148, 'en', 'name', 'Hennepin Healthcare Research Institute'),
(118264, 96149, 'en', 'name', 'Equifax (United States)'),
(118265, 96150, 'de', 'name', 'Institut für Tourismus- und Bäderforschung in Nordeuropa (NIT) GmbH (Germany)'),
(118266, 96151, 'es', 'name', 'Instituto Tecnológico de Ciudad GuzmÔn'),
(118267, 96152, 'en', 'name', 'CoStar Group (United States)'),
(118268, 96153, 'en', 'name', 'Second Affiliated Hospital of Nantong University'),
(118269, 96153, 'zh', 'name', 'å—é€šå¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(118270, 96154, 'es', 'name', 'Instituto Tecnológico Superior de Los Reyes'),
(118271, 96155, 'no_lang_code', 'name', 'Continental (United States)'),
(118272, 96156, 'en', 'name', 'Comerica (United States)'),
(118273, 96157, 'en', 'name', 'Agroecological Functioning and Performances of Horticultural Systems'),
(118274, 96157, 'fr', 'name', 'Fonctionnement agroécologique et performances des systèmes de culture horticoles'),
(118275, 96158, 'no_lang_code', 'name', 'Daimler (United Kingdom)'),
(118276, 96159, 'pt', 'name', 'Faculdade Pernambucana de SaĆŗde'),
(118277, 96160, 'en', 'name', 'Fox Corporation (United States)'),
(118278, 96161, 'en', 'name', 'Anand International College of Engineering'),
(118279, 96162, 'no_lang_code', 'name', 'Megvii (China)'),
(118280, 96162, 'zh', 'name', 'åŒ—äŗ¬ę—·č§†ē§‘ęŠ€ęœ‰é™å…¬åø'),
(118281, 96163, 'en', 'name', 'Shanghai Marine Meteorological Center'),
(118282, 96163, 'zh', 'name', 'äøŠęµ·ęµ·ę“‹äø­åæƒę°”č±”å°'),
(118283, 96164, 'no_lang_code', 'name', 'Coupang (South Korea)'),
(118284, 96165, 'es', 'name', 'Instituto Tecnológico de La Paz'),
(118285, 96166, 'en', 'name', 'University of Washington Tacoma'),
(118286, 96167, 'en', 'name', 'EPAM Systems (United States)'),
(118287, 96168, 'en', 'name', 'Molina Healthcare (United States)'),
(118288, 96169, 'en', 'name', 'Office of Education'),
(118289, 96170, 'en', 'name', 'Microsoft Research New York City (United States)'),
(118290, 96171, 'en', 'name', 'Rai University'),
(118291, 96172, 'es', 'name', 'Instituto Tecnológico Superior de Atlixco'),
(118292, 96173, 'en', 'name', 'EQT (United States)'),
(118293, 96174, 'no_lang_code', 'name', 'State Research Institute for Material Protection (Czechia)'),
(118294, 96175, 'no_lang_code', 'name', 'Costco Wholesale (United States)'),
(118295, 96176, 'no_lang_code', 'name', 'ECS (United States)'),
(118296, 96177, 'es', 'name', 'Universidad Veracruzana'),
(118297, 96177, 'en', 'name', 'University of Veracruz'),
(118298, 96178, 'en', 'name', 'Dropbox (United States)'),
(118299, 96179, 'en', 'name', 'Zhongshan Ophthalmic Center, Sun Yat-sen University'),
(118300, 96179, 'zh', 'name', 'äø­å±±å¤§å­¦ēœ¼ē§‘äø­åæƒ'),
(118301, 96180, 'no_lang_code', 'name', 'Daimler (Japan)'),
(118302, 96181, 'no_lang_code', 'name', 'Paccar (United States)'),
(118303, 96182, 'en', 'name', 'IPG Photonics (United States)'),
(118304, 96183, 'bs', 'name', 'Evropski univerzitet Brčko distrikt'),
(118305, 96184, 'en', 'name', 'Boston Consulting Group (United States)'),
(118306, 96185, 'en', 'name', 'Steel Dynamics (United States)'),
(118307, 96186, 'es', 'name', 'Instituto Tecnologico Superior de Misantla'),
(118308, 96187, 'de', 'name', 'CAIMed - Niedersächsisches Zentrum für KI und Kausale Methoden in der Medizin'),
(118309, 96188, 'fr', 'name', 'Association de lutte contre le sida (ALCS)'),
(118310, 96189, 'en', 'name', 'Lyft (United States)'),
(118311, 96190, 'en', 'name', 'Frome Community Hospital'),
(118312, 96191, 'en', 'name', 'Entergy (United States)'),
(118313, 96192, 'en', 'name', 'Guidedwave (United States)'),
(118314, 96193, 'en', 'name', 'Travelers Companies (United States)'),
(118315, 96194, 'en', 'name', 'DTE Energy (United States)'),
(118316, 96195, 'en', 'name', '4Thparadigm (China)'),
(118317, 96195, 'zh', 'name', 'ē¬¬å››čŒƒå¼ļ¼ˆåŒ—äŗ¬ļ¼‰ęŠ€ęœÆęœ‰é™å…¬åø'),
(118318, 96196, 'es', 'name', 'Universidad ORT Uruguay'),
(118319, 96197, 'en', 'name', 'Berlin Institute for the Foundations of Learning and Data'),
(118320, 96198, 'en', 'name', 'NOAA Center for Earth System Sciences and Remote Sensing Technologies'),
(118321, 96199, 'en', 'name', 'Brooklyn Philharmonic'),
(118322, 96200, 'es', 'name', 'Universidad PolitƩcnica de la Zona Metropolitana de Guadalajara'),
(118323, 96201, 'en', 'name', 'APA Corporation (United States)'),
(118324, 96202, 'en', 'name', 'Prague College of Psychosocial Studies'),
(118325, 96202, 'cs', 'name', 'PražskÔ vysokÔ Ŕkola psychosociÔlních studií, s.r.o.'),
(118326, 96203, 'no_lang_code', 'name', 'Epson (United States)'),
(118327, 96204, 'no_lang_code', 'name', 'Europeum'),
(118328, 96205, 'es', 'name', 'Universidad Tecnológica de Oriental'),
(118329, 96206, 'en', 'name', 'General Tire (United States)'),
(118330, 96207, 'en', 'name', 'Daimler Truck (United States)'),
(118331, 96208, 'en', 'name', 'Pioneer Natural Resources (United States)'),
(118332, 96209, 'en', 'name', 'Association of Engineering Technology'),
(118333, 96209, 'cs', 'name', 'Svaz strojƭrenskƩ technologie'),
(118334, 96210, 'no_lang_code', 'name', 'Eni (Italy)'),
(118335, 96211, 'en', 'name', 'Xiaohongshu (Little Red Book) (China)'),
(118336, 96211, 'zh', 'name', 'č”ŒåŸäæ”ęÆē§‘ęŠ€ļ¼ˆäøŠęµ·ļ¼‰ęœ‰é™å…¬åø'),
(118337, 96212, 'en', 'name', 'Axon Enterprise (United States)'),
(118338, 96213, 'es', 'name', 'Sociedad Colombiana de Anestesiología y Reanimación'),
(118339, 96214, 'no_lang_code', 'name', 'Kroger (United States)'),
(118340, 96215, 'en', 'name', 'Enphase Energy (United States)'),
(118341, 96216, 'en', 'name', 'State Regional Archives in Prague'),
(118342, 96216, 'cs', 'name', 'StƔtnƭ oblastnƭ archiv v Praze'),
(118343, 96217, 'en', 'name', 'Saybrook University'),
(118344, 96218, 'en', 'name', 'Liaocheng Center for Disease Control and Prevention'),
(118345, 96218, 'zh', 'name', 'čŠåŸŽåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(118346, 96219, 'en', 'name', 'Cambricon (China)'),
(118347, 96219, 'zh', 'name', 'åŒ—äŗ¬äø­ē§‘åÆ’ę­¦ēŗŖē§‘ęŠ€ęœ‰é™å…¬åø'),
(118348, 96220, 'en', 'name', 'Florida Global University'),
(118349, 96220, 'es', 'name', 'Universidad Global de Florida'),
(118350, 96221, 'es', 'name', 'Instituto Tecnológico de Boca del Río'),
(118351, 96222, 'en', 'name', 'The Society of Occupational Medicine'),
(118352, 96223, 'cs', 'name', 'Dětský domov a MateřskĆ” Å”kola Beroun'),
(118353, 96224, 'es', 'name', 'Instituto Tecnológico Superior Zacatecas Norte'),
(118354, 96225, 'no_lang_code', 'name', 'Cobham (United Kingdom)'),
(118355, 96226, 'no_lang_code', 'name', 'Lululemon Athletica (United States)'),
(118356, 96227, 'en', 'name', 'CareQuest Institute for Oral Health'),
(118357, 96228, 'no_lang_code', 'name', 'Ping An (China)'),
(118358, 96228, 'zh', 'name', 'äø­å›½å¹³å®‰äæé™©ļ¼ˆé›†å›¢ļ¼‰č‚”ä»½ęœ‰é™å…¬åø'),
(118359, 96229, 'no_lang_code', 'name', 'Lowe''s (United States)'),
(118360, 96230, 'es', 'name', 'Ministerio de Educación del Ecuador'),
(118361, 96231, 'en', 'name', 'National Center for Emerging and Zoonotic Infectious Diseases'),
(118362, 96232, 'no_lang_code', 'name', 'Mercedes-Benz (Japan)'),
(118363, 96232, 'ja', 'name', 'ćƒ”ćƒ«ć‚»ćƒ‡ć‚¹ćƒ™ćƒ³ćƒ„ę—„ęœ¬'),
(118364, 96233, 'en', 'name', 'Imam Alkadhim University College'),
(118365, 96233, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الامام Ų§Ł„ŁƒŲ§ŲøŁ…'),
(118366, 96234, 'en', 'name', 'Center for Brooklyn History'),
(118367, 96235, 'en', 'name', 'TeX Users Group'),
(118368, 96236, 'en', 'name', 'Broadridge Financial Solutions (United States)'),
(118369, 96237, 'en', 'name', 'Australian Plant Phenomics Network'),
(118370, 96238, 'no_lang_code', 'name', 'Chubb (Switzerland)'),
(118371, 96239, 'en', 'name', 'Deepblue Technology (China)'),
(118372, 96239, 'zh', 'name', 'ę·±å…°ē§‘ęŠ€ļ¼ˆäøŠęµ·ļ¼‰ęœ‰é™å…¬åø'),
(118373, 96240, 'en', 'name', 'Pony.AI (China)'),
(118374, 96241, 'en', 'name', 'Mosaic Company (United States)'),
(118375, 96242, 'es', 'name', 'Emedic Salud'),
(118376, 96243, 'no_lang_code', 'name', 'SGS Germany GmbH (Germany)'),
(118377, 96244, 'en', 'name', 'V.F. Corporation (United States)'),
(118378, 96245, 'es', 'name', 'Sociedad Colombiana de Cirugƭa OrtopƩdica y Traumatologƭa'),
(118379, 96246, 'id', 'name', 'Universitas Muhammadiyah Kuningan'),
(118380, 96247, 'es', 'name', 'Universidad Tecnológica del Valle de Toluca'),
(118381, 96248, 'en', 'name', 'Jiangmen Underground Neutrino Observatory'),
(118382, 96248, 'zh', 'name', 'ę±Ÿé—Øåœ°äø‹äø­å¾®å­å®žéŖŒč§‚ęµ‹ē«™'),
(118383, 96249, 'en', 'name', 'Global Citizenship Foundation'),
(118384, 96250, 'en', 'name', 'Daimler Truck (Germany)'),
(118385, 96251, 'en', 'name', 'Shanghai Ecological Forecasting and Remote Sensing Center'),
(118386, 96251, 'zh', 'name', 'äøŠęµ·åø‚ē”Ÿę€ę°”č±”å’Œå«ę˜Ÿé„ę„Ÿäø­åæƒ'),
(118387, 96252, 'en', 'name', 'MGM Resorts International (United States)'),
(118388, 96253, 'en', 'name', 'Huntington Bancshares (United States)'),
(118389, 96254, 'en', 'name', 'Civilization University'),
(118390, 96254, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الحضارة'),
(118391, 96255, 'de', 'name', 'Deutsche Gesellschaft für Patientensicherheit gGmbH'),
(118392, 96256, 'no_lang_code', 'name', 'Zhipu AI (China)'),
(118393, 96256, 'zh', 'name', 'åŒ—äŗ¬ę™ŗč°±åŽē« ē§‘ęŠ€ęœ‰é™å…¬åø'),
(118394, 96257, 'en', 'name', 'St. Xavier''s College (Autonomous)'),
(118395, 96258, 'en', 'name', 'Kookje College'),
(118396, 96258, 'kr', 'name', 'źµ­ģ œėŒ€ķ•™źµ'),
(118397, 96259, 'en', 'name', 'Al-Hadi University College'),
(118398, 96259, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł‡Ų§ŲÆŁŠ الجامعة'),
(118399, 96260, 'no_lang_code', 'name', 'Sysco');
INSERT INTO `ror_settings` VALUES
(118400, 96260, 'en', 'name', 'Sysco (United States)'),
(118401, 96261, 'en', 'name', 'CBRE Group (United States)'),
(118402, 96262, 'en', 'name', 'Deepglint (China)'),
(118403, 96262, 'zh', 'name', 'åŒ—äŗ¬ę ¼ēµę·±ēž³äæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(118404, 96263, 'en', 'name', 'Aerojet Rocketdyne (United States)'),
(118405, 96264, 'en', 'name', 'Delhi Skill and Entrepreneurship University'),
(118406, 96265, 'en', 'name', 'Wincanton Community Hospital'),
(118407, 96266, 'en', 'name', 'Charter Communications (United States)'),
(118408, 96267, 'en', 'name', 'FactSet (United States)'),
(118409, 96268, 'no_lang_code', 'name', 'Mercedes-Benz (United States)'),
(118410, 96269, 'en', 'name', 'Phramongkutklao College of Medicine'),
(118411, 96270, 'en', 'name', 'Empower AI (United States)'),
(118412, 96271, 'no_lang_code', 'name', 'Invesco (United States)'),
(118413, 96272, 'en', 'name', 'Fifth Third Bancorp (United States)'),
(118414, 96273, 'en', 'name', 'T. Rowe Price Group (United States)'),
(118415, 96274, 'en', 'name', 'Daimler Center for Automotive Information Technology Innovations'),
(118416, 96275, 'en', 'name', 'Hilton Worldwide Holdings (United States)'),
(118417, 96276, 'no_lang_code', 'name', 'Fortinet (United States)'),
(118418, 96277, 'no_lang_code', 'name', 'Anduril Industries (United States)'),
(118419, 96278, 'en', 'name', 'South Petherton Community Hospital'),
(118420, 96279, 'en', 'name', 'J. B. Hunt Transport Services (United States)'),
(118421, 96280, 'en', 'name', 'Yeovil District Hospital NHS Foundation Trust'),
(118422, 96281, 'en', 'name', 'CMS Energy (United States)'),
(118423, 96282, 'no_lang_code', 'name', 'Phramongkutklao Hospital'),
(118424, 96283, 'en', 'name', 'Huntington Ingalls Industries (United States)'),
(118425, 96284, 'id', 'name', 'STKIP Muhammadiyah Kuningan'),
(118426, 96285, 'no_lang_code', 'name', 'Tamr (United States)'),
(118427, 96286, 'en', 'name', 'West Mendip Community Hospital'),
(118428, 96287, 'en', 'name', 'University of Sciences and Technology Houari Boumediene'),
(118429, 96287, 'fr', 'name', 'UniversitƩ des Sciences et de la Technologie Houari-Boumediene'),
(118430, 96287, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ Ł‡ŁˆŲ§Ų±ŁŠ ŲØŁˆŁ…ŲÆŁŠŁ†'),
(118431, 96288, 'en', 'name', 'PPL (United States)'),
(118432, 96289, 'pt', 'name', 'Enflame'),
(118433, 96289, 'en', 'name', 'Enflame (China)'),
(118434, 96290, 'en', 'name', 'Data Documentation Initiative Alliance'),
(118435, 96291, 'en', 'name', 'National Center for Infectious Diseases'),
(118436, 96292, 'no_lang_code', 'name', 'Daimler (Germany)'),
(118437, 96293, 'en', 'name', 'Maine College of Health Professions'),
(118438, 96294, 'no_lang_code', 'name', 'CF Industries Holdings (United States)'),
(118439, 96295, 'no_lang_code', 'name', 'Ekologické Služby (Czechia)'),
(118440, 96295, 'cs', 'name', 'Ekologické služby, s.r.o'),
(118441, 96296, 'no_lang_code', 'name', 'Kuaishou (China)'),
(118442, 96296, 'zh', 'name', 'åŒ—äŗ¬åæ«ę‰‹ē§‘ęŠ€ęœ‰é™å…¬åø'),
(118443, 96297, 'en', 'name', 'VIT-AP University'),
(118444, 96298, 'en', 'name', 'An Giang University'),
(118445, 96298, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c An Giang'),
(118446, 96299, 'no_lang_code', 'name', 'Mercedes-Benz (Germany)'),
(118447, 96300, 'en', 'name', 'Datarobot (United States)'),
(118448, 96301, 'en', 'name', 'Exergetic Systems (Canada)'),
(118449, 96302, 'en', 'name', 'Vanguard (United States)'),
(118450, 96303, 'no_lang_code', 'name', 'Kinder Morgan (United States)'),
(118451, 96304, 'en', 'name', 'Lakeside University College Ghana'),
(118452, 96305, 'de', 'name', 'Beethoven-Haus Bonn'),
(118453, 96306, 'en', 'name', 'Pima Community College'),
(118454, 96307, 'en', 'name', 'Regions Financial (United States)'),
(118455, 96308, 'no_lang_code', 'name', 'Zymergen (United States)'),
(118456, 96309, 'no_lang_code', 'name', 'Spotify (Sweden)'),
(118457, 96310, 'en', 'name', 'Jane Street (United States)'),
(118458, 96311, 'no_lang_code', 'name', 'Hikvision (China)'),
(118459, 96311, 'zh', 'name', 'ę­å·žęµ·åŗ·åØč§†ę•°å­—ęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(118460, 96312, 'en', 'name', 'Mitsubishi Fuso Truck and Bus (Japan)'),
(118461, 96312, 'ja', 'name', 'äø‰č±ćµćć†ćƒˆćƒ©ćƒƒć‚Æćƒć‚¹ę Ŗå¼ä¼šē¤¾'),
(118462, 96313, 'en', 'name', 'AutoZone (United States)'),
(118463, 96314, 'de', 'name', 'Abgeordnetenhaus Berlin'),
(118464, 96315, 'en', 'name', 'Xiaopeng Motors (China)'),
(118465, 96315, 'zh', 'name', 'å¹æå·žå°é¹ę±½č½¦ē§‘ęŠ€ęœ‰é™å…¬åø'),
(118466, 96316, 'no_lang_code', 'name', 'Nucor (United States)'),
(118467, 96317, 'no_lang_code', 'name', 'Generac (United States)'),
(118468, 96318, 'en', 'name', 'Council of Graduate Departments of Psychology'),
(118469, 96319, 'fr', 'name', 'Agro-Ʃcologie et intensification durable des cultures annuelles'),
(118470, 96319, 'en', 'name', 'Agroecology and Sustainable Intensification for Annual Crops'),
(118471, 96320, 'id', 'name', 'Dinas Pendidikan Kabupaten Grobogan'),
(118472, 96321, 'en', 'name', 'Dene Barton Community Hospital'),
(118473, 96322, 'en', 'name', 'Keycorp (United States)'),
(118474, 96323, 'en', 'name', 'Bath & Body Works (United States)'),
(118475, 96324, 'no_lang_code', 'name', 'Seiko (United States)'),
(118476, 96325, 'en', 'name', 'Tübingen AI Center'),
(118477, 96326, 'en', 'name', 'Los Altos History Museum'),
(118478, 96327, 'no_lang_code', 'name', 'Evenor-Tech (Spain)'),
(118479, 96328, 'en', 'name', 'AbbĆØs Laghrour University of Khenchela'),
(118480, 96328, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¹ŲØŲ§Ų³ Ł„ŲŗŲ±ŁˆŲ± خنؓلة'),
(118481, 96329, 'es', 'name', 'Universidad de Los Lagos'),
(118482, 96330, 'es', 'name', 'Universidad Tecnológica del Valle del Mezquital'),
(118483, 96331, 'en', 'name', 'University of Colorado Anschutz Medical Campus'),
(118484, 96332, 'no_lang_code', 'name', 'GE Vernova (United States)'),
(118485, 96333, 'en', 'name', 'T. Rowe Price Program for Charitable Giving'),
(118486, 96334, 'en', 'name', 'Concord University'),
(118487, 96335, 'en', 'name', 'Airbnb (United States)'),
(118488, 96336, 'no_lang_code', 'name', 'NeuroInDx (United States)'),
(118489, 96337, 'pt', 'name', 'Faculdade do Futuro'),
(118490, 96338, 'en', 'name', 'Best Buy (United States)'),
(118491, 96339, 'en', 'name', 'Dataminr (United States)'),
(118492, 96340, 'en', 'name', 'Waste Management (United States)'),
(118493, 96341, 'en', 'name', 'Gap (United States)'),
(118494, 96342, 'es', 'name', 'Universidad Tecnológica de Coahuila'),
(118495, 96343, 'en', 'name', 'The Royal Photographic Society'),
(118496, 96344, 'en', 'name', 'Western Colorado University'),
(118497, 96345, 'en', 'name', 'Diversity-Adaptation-Development of Plants'),
(118498, 96345, 'fr', 'name', 'DiversitƩ, adaptation et dƩveloppement des plantes'),
(118499, 96346, 'es', 'name', 'JLA Ediciones'),
(118500, 96347, 'en', 'name', 'Cohere (Canada)'),
(118501, 96348, 'en', 'name', 'Institute for Cultural Research of the National Academy of Arts of Ukraine'),
(118502, 96349, 'no_lang_code', 'name', 'Nisource (United States)'),
(118503, 96350, 'en', 'name', 'Serbian Sociological Association'),
(118504, 96351, 'en', 'name', 'Firstenergy (United States)'),
(118505, 96352, 'en', 'name', 'Principal Financial Group (United States)'),
(118506, 96353, 'en', 'name', 'Discover Financial Services (United States)'),
(118507, 96354, 'en', 'name', 'Charles Schwab Corporation (United States)'),
(118508, 96355, 'en', 'name', 'Cerebras Systems (United States)'),
(118509, 96356, 'la', 'name', 'Collegium Intermarium'),
(118510, 96356, 'pl', 'name', 'Uczelnia Collegium Intermarium'),
(118511, 96357, 'en', 'name', 'Nextera Energy (United States)'),
(118512, 96358, 'en', 'name', 'Shepton Mallet Community Hospital'),
(118513, 96359, 'de', 'name', 'Agentur für Natur- und Landschaftsschutz der Tschechischen Republik'),
(118514, 96359, 'en', 'name', 'Nature Conservation Agency of the Czech Republic'),
(118515, 96360, 'en', 'name', 'Cobham (United States)'),
(118516, 96361, 'en', 'name', 'National Academy of Arts'),
(118517, 96361, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(118518, 96362, 'en', 'name', 'Horizon Robotics (China)'),
(118519, 96362, 'zh', 'name', 'åŒ—äŗ¬åœ°å¹³ēŗæäæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(118520, 96363, 'en', 'name', 'Hartford Financial Services (United States)'),
(118521, 96364, 'en', 'name', 'City College of Calamba'),
(118522, 96364, 'tl', 'name', 'Dalubhasaan ng Calamba'),
(118523, 96365, 'en', 'name', 'Olomouc Research Library'),
(118524, 96365, 'cs', 'name', 'VědeckĆ” knihovna v Olomouci'),
(118525, 96365, 'de', 'name', 'Wissenschaftliche Bibliothek Olomouc'),
(118526, 96366, 'no_lang_code', 'name', 'Research International (United States)'),
(118527, 96367, 'en', 'name', 'Al-Amal College for Specialized Medical Sciences'),
(118528, 96367, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الأمل Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„ŲŖŲ®ŲµŲµŁŠŲ©'),
(118529, 96368, 'en', 'name', 'Databricks (United States)'),
(118530, 96369, 'es', 'name', 'Universidad PolitƩcnica de TecƔmac'),
(118531, 96370, 'en', 'name', 'Duolingo (United States)'),
(118532, 96371, 'en', 'name', 'BlackSky Global (United States)'),
(118533, 96372, 'es', 'name', 'AlcaldĆ­a de Barranquilla'),
(118534, 96373, 'no_lang_code', 'name', 'Sigma Group (Czechia)'),
(118535, 96374, 'es', 'name', 'Instituto Tecnológico Superior de Tantoyuca'),
(118536, 96375, 'de', 'name', 'Freies Institut für Bauforschung und Dokumentation e.V.'),
(118537, 96376, 'es', 'name', 'Universidad de Colorado en Colorado Springs'),
(118538, 96376, 'en', 'name', 'University of Colorado Colorado Springs'),
(118539, 96376, 'fr', 'name', 'UniversitƩ du Colorado Ơ Colorado Springs'),
(118540, 96377, 'en', 'name', 'Deraya University'),
(118541, 96377, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© دراية'),
(118542, 96378, 'no_lang_code', 'name', 'Nio (China)'),
(118543, 96378, 'zh', 'name', 'äøŠęµ·č”šę„ę±½č½¦ęœ‰é™å…¬åø'),
(118544, 96379, 'en', 'name', 'Centre for Hydraulic Research'),
(118545, 96379, 'cs', 'name', 'Centrum hydraulického výzkumu spol. s r.o.'),
(118546, 96380, 'en', 'name', 'Grand Canyon University'),
(118547, 96381, 'no_lang_code', 'name', 'Harris (United States)'),
(118548, 96382, 'no_lang_code', 'name', 'Epi Biotech Co., Ltd. (South Korea)'),
(118549, 96382, 'ko', 'name', 'ģ—ķ”¼ė°”ģ“ģ˜¤ķ…'),
(118550, 96383, 'en', 'name', 'Citizens Financial Group (United States)'),
(118551, 96384, 'en', 'name', 'Marathon Petroleum (United States)'),
(118552, 96385, 'en', 'name', 'Bureau of Quality and Safety of Food'),
(118553, 96385, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø„ąøøąø“ąø ąø²ąøžą¹ąø„ąø°ąø„ąø§ąø²ąø”ąø›ąø„ąø­ąø”ąø ąø±ąø¢ąø­ąø²ąø«ąø²ąø£'),
(118554, 96386, 'en', 'name', 'King''s Fertility'),
(118555, 96387, 'ca', 'name', 'Institut de NanociĆØncia i Nanotecnologia de la Universitat de Barcelona'),
(118556, 96387, 'en', 'name', 'Institute of Nanoscience and Nanotechnology of the University of Barcelona'),
(118557, 96387, 'es', 'name', 'Instituto de Nanociencia y NanotecnologĆ­a de la Universitat de Barcelona'),
(118558, 96388, 'en', 'name', 'Iranian National Commission for UNESCO'),
(118559, 96388, 'fa', 'name', 'Ś©Ł…ŪŒŲ³ŪŒŁˆŁ† Ł…Ł„ŪŒ ŪŒŁˆŁ†Ų³Ś©Łˆ-Ų§ŪŒŲ±Ų§Ł†'),
(118560, 96389, 'en', 'name', 'Foundation for Physical Medicine and Rehabilitation'),
(118561, 96390, 'en', 'name', 'British Society of Interventional Radiology'),
(118562, 96391, 'en', 'name', 'NOAA Great Lakes Environmental Research Laboratory'),
(118563, 96392, 'fr', 'name', 'Institut Desbrest d''EpidƩmiologie et de SantƩ Publique'),
(118564, 96393, 'fr', 'name', 'Institut des neurosciences de Montpellier'),
(118565, 96393, 'en', 'name', 'Institute for Neurosciences of Montpellier'),
(118566, 96394, 'en', 'name', 'Freedom''s Wings International'),
(118567, 96395, 'it', 'name', 'Conservatorio di musica "Vecchi Tonelli"'),
(118568, 96396, 'fr', 'name', 'Institut National de Recherches ArchƩologiques PrƩventives'),
(118569, 96397, 'en', 'name', 'Finger Lakes Community College'),
(118570, 96398, 'en', 'name', 'Texas A&M University – Texarkana'),
(118571, 96399, 'en', 'name', 'Onondaga Community College'),
(118572, 96400, 'en', 'name', 'Mohawk Valley Community College'),
(118573, 96401, 'fr', 'name', 'Observatoire de Recherche MontpelliƩrain de l''Environnement OREME'),
(118574, 96402, 'en', 'name', 'Azerbaijan State University of Economics'),
(118575, 96402, 'az', 'name', 'Azərbaycan Dƶvlət İqtisad Universiteti'),
(118576, 96402, 'ru', 'name', 'АзербайГжанский Š³Š¾ŃŃƒŠ“арственный ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(118577, 96403, 'en', 'name', 'Palau Community College'),
(118578, 96404, 'en', 'name', 'Purchase College'),
(118579, 96404, 'fr', 'name', 'UniversitĆ© d''Ɖtat de new york Ć  purchase'),
(118580, 96405, 'en', 'name', 'Public Health Laboratory'),
(118581, 96406, 'ca', 'name', 'Institut AstrofĆ­sic de les Illes CanĆ ries'),
(118582, 96406, 'es', 'name', 'Instituto de AstrofĆ­sica de Canarias'),
(118583, 96407, 'fr', 'name', 'Biocommunication en Cardio-MƩtabolique'),
(118584, 96408, 'en', 'name', 'Mattel Children''s Hospital'),
(118585, 96409, 'es', 'name', 'Tecnológico de Estudios Superiores de Ixtapaluca'),
(118586, 96410, 'en', 'name', 'Crystal Bridges Museum of American Art'),
(118587, 96411, 'en', 'name', 'International Center for Relativistic Astrophysics Network'),
(118588, 96412, 'en', 'name', 'Chronic Granulomatous Disorder Society'),
(118589, 96413, 'no_lang_code', 'name', 'Telecom Italia (Italy)'),
(118590, 96414, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization Afghanistan'),
(118591, 96415, 'en', 'name', 'Yamagata University'),
(118592, 96415, 'ja', 'name', '山形大学'),
(118593, 96416, 'ms', 'name', 'Kementerian Kesihatan'),
(118594, 96416, 'en', 'name', 'Ministry of Health'),
(118595, 96417, 'no_lang_code', 'name', 'Genus (United Kingdom)'),
(118596, 96418, 'fr', 'name', 'Ɖquipe Monde Arabe MĆ©diterranĆ©e'),
(118597, 96419, 'en', 'name', 'Central Institute for Arid Horticulture'),
(118598, 96420, 'en', 'name', 'Fetal Medicine Foundation'),
(118599, 96421, 'pt', 'name', 'Faculdade Faci Wyden'),
(118600, 96422, 'en', 'name', 'Islamic Azad University, Abadan'),
(118601, 96422, 'ar', 'name', 'Ų§Ų²Ų§ŲÆ فرع آبادان Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(118602, 96422, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد آبادان'),
(118603, 96423, 'en', 'name', 'Great Lakes Research Consortium'),
(118604, 96424, 'fr', 'name', 'Dynamique Musculaire et MƩtabolisme'),
(118605, 96425, 'en', 'name', 'Harrisburg University of Science and Technology'),
(118606, 96426, 'en', 'name', 'Crohn''s in Childhood Research Association'),
(118607, 96427, 'no_lang_code', 'name', 'Biocompatibles (United Kingdom)'),
(118608, 96428, 'fr', 'name', 'Département des Systèmes Basses Températures'),
(118609, 96429, 'en', 'name', 'Blood Cancer UK'),
(118610, 96430, 'en', 'name', 'Society of British Neurological Surgeons'),
(118611, 96431, 'de', 'name', 'Hochschule Ravensburg-Weingarten'),
(118612, 96431, 'en', 'name', 'University of Applied Sciences Ravensburg-Weingarten'),
(118613, 96432, 'en', 'name', 'Moshood Abiola Polytechnic'),
(118614, 96433, 'fr', 'name', 'Agence Spatiale EuropƩenne'),
(118615, 96433, 'es', 'name', 'Agencia Espacial Europea'),
(118616, 96433, 'en', 'name', 'European Space Astronomy Centre'),
(118617, 96434, 'en', 'name', 'Scottish Salmon Producers Organisation'),
(118618, 96435, 'fr', 'name', 'Laboratoire Parisien de Psychologie Sociale'),
(118619, 96436, 'en', 'name', 'Guangxi Logistics Vocational and Technical College'),
(118620, 96436, 'zh', 'name', 'å¹æč„æē‰©ęµčŒäøšęŠ€ęœÆå­¦é™¢'),
(118621, 96437, 'en', 'name', 'Miriam Foundation'),
(118622, 96438, 'en', 'name', 'Benefit-sharing Fund of the International Treaty on Plant Genetic Resources for Food and Agriculture'),
(118623, 96439, 'en', 'name', 'Rockland Community College'),
(118624, 96440, 'fr', 'name', 'Lettres et Civilisations EtrangĆØres'),
(118625, 96441, 'de', 'name', 'W. von Borries-Eckendorf GmbH & Co. KG (Germany)'),
(118626, 96442, 'fr', 'name', 'Neurophysiologie respiratoire expƩrimentale et clinique'),
(118627, 96443, 'no_lang_code', 'name', 'Bioland e.V.'),
(118628, 96444, 'en', 'name', 'Tompkins Cortland Community College'),
(118629, 96445, 'en', 'name', 'Federal College of Education, Zaria'),
(118630, 96446, 'en', 'name', 'Hospital Pharmacy of North Norway Trust'),
(118631, 96446, 'no', 'name', 'Sykehusapotek Nord HF'),
(118632, 96447, 'en', 'name', 'European Centre for Space Applications and Telecommunications'),
(118633, 96448, 'en', 'name', 'Chittagong Medical University'),
(118634, 96448, 'bn', 'name', 'ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® মেঔিকেল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(118635, 96448, 'ta', 'name', 'ą®šą®æą®ŸąÆą®Ÿą®•ą®¾ą®™ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(118636, 96449, 'en', 'name', 'European Space Research Institute'),
(118637, 96450, 'en', 'name', 'Healthcare Quality Improvement Partnership'),
(118638, 96451, 'en', 'name', 'SUNY Ulster'),
(118639, 96452, 'en', 'name', 'Indian Institute of Technology Jodhpur'),
(118640, 96452, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤œą„‹ą¤§ą¤Ŗą„ą¤°'),
(118641, 96453, 'pt', 'name', 'Centro UniversitƔrio FEI'),
(118642, 96454, 'en', 'name', 'Sheffield Teaching Hospitals NHS Foundation Trust'),
(118643, 96455, 'no_lang_code', 'name', 'Riverlane (United Kingdom)'),
(118644, 96456, 'it', 'name', 'Accademia di Belle Arti di Catania'),
(118645, 96457, 'no_lang_code', 'name', 'Saab (Sweden)'),
(118646, 96458, 'no_lang_code', 'name', 'Sekisui Medical (Japan)'),
(118647, 96458, 'ja', 'name', 'ē©ę°“ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(118648, 96459, 'en', 'name', 'Telefónica Digital Innovation'),
(118649, 96459, 'es', 'name', 'Telefónica Innovación Digital (Spain)'),
(118650, 96460, 'it', 'name', 'Telecom Italia Lab'),
(118651, 96461, 'en', 'name', 'International Centre for Theoretical Sciences'),
(118652, 96461, 'kn', 'name', 'ą²øą³†ą³–ą²¦ą³ą²§ą²¾ą²‚ą²¤ą²æą²• ą²µą²æą²œą³ą²žą²¾ą²Ø ą²…ą²‚ą²¤ą²°ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą²æą³•ą²Æ ą²•ą³†ą³•ą²‚ą²¦ą³ą²°'),
(118653, 96462, 'es', 'name', 'Colfuturo'),
(118654, 96463, 'fr', 'name', 'Centre de Recherche sur les Expertises, les Arts et les Transitions'),
(118655, 96464, 'fr', 'name', 'Institut d''Histoire du Droit'),
(118656, 96465, 'fr', 'name', 'Centre du Droit de l''Entreprise'),
(118657, 96466, 'en', 'name', 'Cambridge University Hospitals NHS Foundation Trust'),
(118658, 96467, 'no_lang_code', 'name', 'Aisin (Japan)'),
(118659, 96467, 'ja', 'name', 'ć‚¢ć‚¤ć‚·ćƒ³ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(118660, 96468, 'no_lang_code', 'name', 'Teledyne FLIR (United States)'),
(118661, 96469, 'en', 'name', 'SUNY Erie'),
(118662, 96470, 'en', 'name', 'Scientific Research Institute of State Building and Local Government of the NALS of Ukraine'),
(118663, 96470, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гержавного Š±ŃƒŠ“івництва та місцевого ŃŠ°Š¼Š¾Š²Ń€ŃŠ“ŃƒŠ²Š°Š½Š½Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії правових наук України'),
(118664, 96471, 'it', 'name', 'Istituto Nazionale di Astrofisica'),
(118665, 96471, 'en', 'name', 'National Institute for Astrophysics'),
(118666, 96472, 'en', 'name', 'City Institute for Public Health - Belgrade'),
(118667, 96473, 'en', 'name', 'Federal Polytechnic, Mubi'),
(118668, 96473, 'ha', 'name', 'Kwalejin Kimiyya da Fasaha ta Tarayya, Mubi'),
(118669, 96474, 'no_lang_code', 'name', 'Impaq International (United States)'),
(118670, 96475, 'en', 'name', 'National Information Society Agency'),
(118671, 96476, 'en', 'name', 'Institute of Advanced Manufacturing Technology'),
(118672, 96477, 'en', 'name', 'Department for the Economy'),
(118673, 96478, 'en', 'name', 'SUNY Schenectady County Community College'),
(118674, 96479, 'en', 'name', 'Donald Danforth Plant Science Center'),
(118675, 96480, 'en', 'name', 'Nepal Bureau of Standards and Metrology'),
(118676, 96480, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤—ą„ą¤£ą¤øą„ą¤¤ą¤° तऄा ą¤Øą¤¾ą¤Ŗą¤¤ą„Œą¤² विभाग'),
(118677, 96481, 'lt', 'name', 'Utenos kolegija'),
(118678, 96481, 'en', 'name', 'Utenos kolegija Higher Education Institution'),
(118679, 96482, 'en', 'name', 'Max Planck Institute for Solid State Research'),
(118680, 96482, 'de', 'name', 'Max-Planck-Institut für Festkörperforschung'),
(118681, 96483, 'en', 'name', 'Indiana University Melvin and Bren Simon Comprehensive Cancer Center'),
(118682, 96484, 'en', 'name', 'Institute of Spain'),
(118683, 96484, 'es', 'name', 'Instituto de EspaƱa'),
(118684, 96485, 'en', 'name', 'Zhijiang College of Zhejiang University of Technology'),
(118685, 96485, 'zh', 'name', 'ęµ™ę±Ÿå·„äøšå¤§å­¦ä¹‹ę±Ÿå­¦é™¢'),
(118686, 96486, 'fr', 'name', 'Laboratoire Interuniversitaire ExpƩrience, Ressources culturelles, Education'),
(118687, 96487, 'en', 'name', 'Ifo Institute for Economic Research'),
(118688, 96487, 'de', 'name', 'ifo Institut für Wirtschaftsforschung'),
(118689, 96488, 'no_lang_code', 'name', 'AlphaSense (United States)'),
(118690, 96489, 'en', 'name', 'SUNY Orange'),
(118691, 96490, 'fr', 'name', 'Laboratoire écologie, évolution, interactions des systèmes amazoniens'),
(118692, 96491, 'es', 'name', 'Real Academia de Bellas Artes de San Fernando'),
(118693, 96491, 'en', 'name', 'Royal Academy of Fine Arts of San Fernando'),
(118694, 96492, 'en', 'name', 'North Atlantic Treaty Organization'),
(118695, 96492, 'fr', 'name', 'Organisation du traitƩ de l''Atlantique Nord'),
(118696, 96493, 'en', 'name', 'Chiba University'),
(118697, 96493, 'ja', 'name', 'åƒč‘‰å¤§å­¦'),
(118698, 96494, 'en', 'name', 'IPMA Serbia'),
(118699, 96494, 'sr', 'name', 'IPMA Srbija'),
(118700, 96495, 'en', 'name', 'Air Force Harbin Flying College'),
(118701, 96495, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›å“ˆå°”ę»Øé£žč”Œå­¦é™¢'),
(118702, 96496, 'en', 'name', 'NSW Roads and Maritime Services'),
(118703, 96497, 'en', 'name', 'Hiroshima University'),
(118704, 96497, 'ja', 'name', '広島大学'),
(118705, 96498, 'en', 'name', 'Indonesian Institute for Counseling, Education, and Therapy'),
(118706, 96499, 'en', 'name', 'Higher Technological Institute of Irapuato'),
(118707, 96499, 'es', 'name', 'Instituto Tecnológico Superior de Irapuato'),
(118708, 96500, 'en', 'name', 'Ovarian Cancer Research Alliance'),
(118709, 96501, 'no_lang_code', 'name', 'Telefónica (Spain)'),
(118710, 96502, 'en', 'name', 'King''s College Hospital'),
(118711, 96503, 'en', 'name', 'National Hospital Organization Saitama Hospital'),
(118712, 96503, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē—…é™¢ę©Ÿę§‹ åŸ¼ēŽ‰ē—…é™¢'),
(118713, 96504, 'sw', 'name', 'Chuo Kikuu cha Tharaka'),
(118714, 96504, 'en', 'name', 'Tharaka University'),
(118715, 96505, 'no_lang_code', 'name', 'Roche (United Kingdom)'),
(118716, 96506, 'en', 'name', 'Synchrotron Radiation for Biomedicine'),
(118717, 96507, 'en', 'name', 'Tongji Zhejiang College'),
(118718, 96507, 'zh', 'name', 'åŒęµŽå¤§å­¦ęµ™ę±Ÿå­¦é™¢'),
(118719, 96508, 'en', 'name', 'National Institute of Academic Anaesthesia'),
(118720, 96509, 'en', 'name', 'National Institute of Standards & Industrial Technology'),
(118721, 96510, 'en', 'name', 'Zhenhai District Center for Disease Control and Prevention'),
(118722, 96510, 'zh', 'name', 'é•‡ęµ·åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(118723, 96511, 'en', 'name', 'Institute for Cosmic Ray Research'),
(118724, 96511, 'ja', 'name', 'ę±äŗ¬å¤§å­¦å®‡å®™ē·šē ”ē©¶ę‰€'),
(118725, 96512, 'en', 'name', 'Cambridge IVF'),
(118726, 96513, 'es', 'name', 'Editorial Mar Caribe'),
(118727, 96514, 'es', 'name', 'Universidad Tecnológica Gral. Mariano Escobedo'),
(118728, 96515, 'es', 'name', 'Tecnológico de Estudios Superiores de Valle de Bravo'),
(118729, 96516, 'fr', 'name', 'AcadƩmies suisses des sciences'),
(118730, 96516, 'de', 'name', 'Akademien der Wissenschaften Schweiz'),
(118731, 96516, 'en', 'name', 'Swiss Academies of Arts and Sciences'),
(118732, 96517, 'en', 'name', 'MSD Life Science Foundation'),
(118733, 96517, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗMSDē”Ÿå‘½ē§‘å­¦č²”å›£'),
(118734, 96518, 'no_lang_code', 'name', 'Rail Safety and Standards Board (United Kingdom)'),
(118735, 96519, 'en', 'name', 'Himachal Pradesh National Law University, Shimla'),
(118736, 96520, 'en', 'name', 'Florida State University'),
(118737, 96520, 'es', 'name', 'Universidad Estatal de Florida'),
(118738, 96520, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Floride'),
(118739, 96521, 'en', 'name', 'Taylor Geospatial Institute'),
(118740, 96522, 'en', 'name', 'Institute For Cancer Vaccine & Immunotherapy'),
(118741, 96523, 'fr', 'name', 'Agence Spatiale EuropƩenne'),
(118742, 96523, 'ca', 'name', 'AgĆØncia Espacial Europea'),
(118743, 96523, 'en', 'name', 'European Space Agency'),
(118744, 96524, 'tr', 'name', 'Ziraat Bankası'),
(118745, 96525, 'en', 'name', 'Research Institute in Science of Cyber Security'),
(118746, 96526, 'no_lang_code', 'name', 'Becton Dickinson (United States)'),
(118747, 96527, 'no_lang_code', 'name', 'SUNY Canton'),
(118748, 96528, 'es', 'name', 'Instituto Tecnológico Superior de Perote'),
(118749, 96529, 'es', 'name', 'Instituto de MeteorologĆ­a'),
(118750, 96530, 'en', 'name', 'UCLy (Lyon Catholic University)'),
(118751, 96530, 'fr', 'name', 'UniversitƩ catholique de lyon'),
(118752, 96531, 'en', 'name', 'Franklin Templeton (United States)'),
(118753, 96532, 'en', 'name', 'Fulton–Montgomery Community College'),
(118754, 96533, 'en', 'name', 'Tokai University'),
(118755, 96533, 'ja', 'name', 'ę±ęµ·å¤§å­¦'),
(118756, 96534, 'en', 'name', 'National Institute of Advanced Manufacturing Technology'),
(118757, 96534, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤‰ą¤Øą„ą¤Øą¤¤ ą¤µą¤æą¤Øą¤æą¤°ą„ą¤®ą¤¾ą¤£ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(118758, 96535, 'en', 'name', 'IBM Research (China)'),
(118759, 96536, 'en', 'name', 'City of Flagstaff'),
(118760, 96537, 'en', 'name', 'Brookdale University Hospital and Medical Center'),
(118761, 96538, 'pt', 'name', 'Faculdade Damas da Instrução Cristã'),
(118762, 96539, 'fr', 'name', 'Fondation contre le Cancer'),
(118763, 96539, 'nl', 'name', 'Stichting tegen Kanker'),
(118764, 96540, 'en', 'name', 'Remotely Operated Platform for Ocean Sciences'),
(118765, 96541, 'en', 'name', 'Federal Polytechnic, Idah'),
(118766, 96542, 'en', 'name', 'Stony Brook University'),
(118767, 96542, 'es', 'name', 'Universidad de Stony Brook'),
(118768, 96542, 'fr', 'name', 'UniversitĆ© d''Ɖtat de new york Ć  stony brook'),
(118769, 96543, 'no_lang_code', 'name', 'Teledyne Technologies (United States)'),
(118770, 96544, 'en', 'name', 'Institute of Development Studies'),
(118771, 96544, 'hi', 'name', 'विकास ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(118772, 96545, 'en', 'name', 'Department of Pharmaceuticals'),
(118773, 96546, 'en', 'name', 'SUNY College of Optometry'),
(118774, 96547, 'fr', 'name', 'Laboratoire d''Ʃtudes de genre et de sexualitƩ'),
(118775, 96548, 'en', 'name', 'Severe Weather Institute - Radar & Lightning Laboratory'),
(118776, 96549, 'en', 'name', 'University of Missouri–St. Louis'),
(118777, 96550, 'en', 'name', 'Southwest University of Science and Technology'),
(118778, 96550, 'zh', 'name', 'č„æå—ē§‘ęŠ€å¤§å­¦'),
(118779, 96551, 'no_lang_code', 'name', 'Sekisui Kasei (Japan)'),
(118780, 96551, 'en', 'name', 'Sekisui Plastics'),
(118781, 96551, 'ja', 'name', 'ē©ę°“åŒ–ęˆå“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(118782, 96552, 'es', 'name', 'Universidad Autónoma de Zacatecas "Francisco García Salinas"'),
(118783, 96553, 'en', 'name', 'King''s College Hospital Charity'),
(118784, 96554, 'en', 'name', 'Quantum Source Labs Ltd (Israel)'),
(118785, 96555, 'en', 'name', 'Clinton Community College'),
(118786, 96556, 'en', 'name', 'International Centre for Mathematical Sciences'),
(118787, 96557, 'en', 'name', 'NSW Forestry Corporation'),
(118788, 96558, 'en', 'name', 'SUNY Plattsburgh'),
(118789, 96559, 'no_lang_code', 'name', 'Gryphon Scientific (United States)'),
(118790, 96560, 'en', 'name', 'IMRA Europe'),
(118791, 96560, 'no_lang_code', 'name', 'IMRA Europe SAS'),
(118792, 96561, 'en', 'name', 'UGC-DAE Consortium for Scientific Research, Kolkata Centre'),
(118793, 96562, 'en', 'name', 'Catholic International University'),
(118794, 96563, 'en', 'name', 'Eton College'),
(118795, 96564, 'fr', 'name', 'UMS-Autonomie'),
(118796, 96565, 'en', 'name', 'New Phytologist Foundation'),
(118797, 96566, 'en', 'name', 'St George’s University Hospitals NHS Foundation Trust'),
(118798, 96567, 'en', 'name', 'Heilbronn University'),
(118799, 96567, 'de', 'name', 'Hochschule Heilbronn'),
(118800, 96568, 'fr', 'name', 'Laboratoire Innovation Communication et MarchƩ'),
(118801, 96569, 'en', 'name', 'Imperial College Healthcare Charity'),
(118802, 96570, 'en', 'name', 'Department for Transport'),
(118803, 96571, 'en', 'name', 'Max Planck Institutes for Intelligent Systems & Solid State Research Library'),
(118804, 96571, 'de', 'name', 'Max-Planck-Institute für Intelligente Systeme & Festkörperforschung Bibliothek'),
(118805, 96572, 'en', 'name', 'Empire State University'),
(118806, 96573, 'en', 'name', 'PAP Non-commissioned Officer School'),
(118807, 96573, 'zh', 'name', 'äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜Ÿå£«å®˜å­¦ę ”'),
(118808, 96574, 'en', 'name', 'Washington State Department of Transportation'),
(118809, 96575, 'fr', 'name', 'UR CONFLUENCE: Sciences et HumanitƩs'),
(118810, 96576, 'fr', 'name', 'Laboratoire d''Informatique Fondamentale et AppliquƩe de Tours'),
(118811, 96576, 'en', 'name', 'Laboratory of Fundamental and Applied Computer Science of Tours'),
(118812, 96577, 'fr', 'name', 'Sciences pour L’Œnologie'),
(118813, 96578, 'en', 'name', 'Central Institute of Mining and Fuel Research'),
(118814, 96578, 'hi', 'name', 'ą¤øą„€ą¤ą¤øą¤†ą¤ˆą¤†ą¤°-ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ खनन ą¤ą¤µą¤‚ ą¤ˆą¤‚ą¤§ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(118815, 96579, 'fr', 'name', 'Laboratoire Biosciences et bioingƩnierie pour la SantƩ'),
(118816, 96580, 'en', 'name', 'University "St. Kliment Ohridski" - Bitola'),
(118817, 96580, 'mk', 'name', 'Универзитет Дв. ā€žŠšŠ»ŠøŠ¼ŠµŠ½Ń‚ ŠžŃ…Ń€ŠøŠ“ŃŠŗŠøā€œ Битола'),
(118818, 96581, 'en', 'name', 'Institute of Astrophysics La Plata'),
(118819, 96581, 'es', 'name', 'Instituto de AstrofĆ­sica de La Plata'),
(118820, 96582, 'en', 'name', 'New York State School of Industrial and Labor Relations'),
(118821, 96583, 'en', 'name', 'Les Roches International School of Hotel Management'),
(118822, 96584, 'en', 'name', 'PLA Air Force Xi''an Flying College'),
(118823, 96584, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›č„æå®‰é£žč”Œå­¦é™¢'),
(118824, 96585, 'en', 'name', 'University of Chemical Technology and Metallurgy'),
(118825, 96585, 'bg', 'name', 'Єимикотехнологичен Šø Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³ŠøŃ‡ŠµŠ½ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(118826, 96586, 'en', 'name', 'Cebu Normal University'),
(118827, 96586, 'tl', 'name', 'Pamantasang Normal ng Cebu'),
(118828, 96587, 'es', 'name', 'Instituto Educativo Dolores Del Rio Extensión Santiago Papasquiaro Durango'),
(118829, 96588, 'en', 'name', 'Liverpool Womens NHS Foundation Trust'),
(118830, 96589, 'en', 'name', 'IHE Delft Institute for Water Education'),
(118831, 96590, 'en', 'name', 'Yibin Vocational and Technical College'),
(118832, 96590, 'zh', 'name', 'å®œå®¾čŒäøšęŠ€ęœÆå­¦é™¢'),
(118833, 96591, 'no_lang_code', 'name', 'Ecopetrol (Colombia)'),
(118834, 96592, 'en', 'name', 'Tateisi Science and Technology Foundation'),
(118835, 96592, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ē«‹ēŸ³ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(118836, 96593, 'no_lang_code', 'name', 'Dayforce (United States)'),
(118837, 96594, 'en', 'name', 'Kings Dental Center'),
(118838, 96595, 'no_lang_code', 'name', 'Lancium (United States)'),
(118839, 96596, 'en', 'name', 'Baranavichy State University'),
(118840, 96597, 'en', 'name', 'Max Planck Institute for Intelligent Systems'),
(118841, 96597, 'de', 'name', 'Max-Planck-Institut für Intelligente Systeme'),
(118842, 96598, 'fr', 'name', 'SantƩ, Education et Situations de Handicap'),
(118843, 96599, 'en', 'name', 'NSW Department of Communities and Justice'),
(118844, 96600, 'en', 'name', 'Soleil Synchrotron'),
(118845, 96600, 'fr', 'name', 'Synchrotron soleil'),
(118846, 96601, 'es', 'name', 'Centro de Investigaciones Interdisciplinarias en Ciencias y Humanidades'),
(118847, 96602, 'en', 'name', 'Genocide and Resistance Research Centre of Lithuania'),
(118848, 96602, 'lt', 'name', 'Lietuvos gyventojų genocido ir rezistencijos tyrimo centras'),
(118849, 96603, 'fr', 'name', 'DƩlƩgation RƩgionale Occitanie MƩditerranƩe'),
(118850, 96604, 'fr', 'name', 'Equipe de Droit PƩnal et de sciences Forensiques de Montpellier'),
(118851, 96605, 'en', 'name', 'British Association for Applied Linguistics'),
(118852, 96606, 'es', 'name', 'Tecnológico Nacional de México de Ciudad Jiménez'),
(118853, 96607, 'en', 'name', 'Bacterial Virulence and Chronic Infections'),
(118854, 96607, 'fr', 'name', 'Virulence BactƩrienne et Infections Chroniques'),
(118855, 96608, 'fr', 'name', 'DƩveloppement Individu Processus Handicap Education'),
(118856, 96609, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghiệp Việt – Hung'),
(118857, 96609, 'en', 'name', 'Viet-Hung Industrial University'),
(118858, 96610, 'fr', 'name', 'Centre LƩon BƩrard'),
(118859, 96611, 'en', 'name', 'SUNY Sullivan'),
(118860, 96612, 'en', 'name', 'Institution of Mechanical Engineers'),
(118861, 96613, 'de', 'name', 'Dietrich Bonhoeffer Klinikum'),
(118862, 96614, 'en', 'name', 'Office for Learning and Teaching'),
(118863, 96615, 'en', 'name', 'Higher Technological Institute of Lerdo'),
(118864, 96615, 'es', 'name', 'Instituto Tecnológico Superior de Lerdo'),
(118865, 96616, 'en', 'name', 'Texas A&M Health Science Center'),
(118866, 96617, 'en', 'name', 'Fujian Provincial Department of Ecology and Environment'),
(118867, 96617, 'zh', 'name', 'ē¦å»ŗēœē”Ÿę€ēŽÆå¢ƒåŽ…'),
(118868, 96618, 'sr', 'name', 'Srpsko arheoloŔko druŔtvo'),
(118869, 96619, 'en', 'name', 'XIM University'),
(118870, 96620, 'en', 'name', 'Macao University of Tourism'),
(118871, 96620, 'pt', 'name', 'Universidade de Turismo de Macau'),
(118872, 96620, 'zh', 'name', 'ę¾³é–€ę—…éŠå¤§å­ø'),
(118873, 96621, 'en', 'name', 'Royal Asiatic Society'),
(118874, 96622, 'en', 'name', 'SUNY Delhi'),
(118875, 96623, 'en', 'name', 'Institute for Nuclear Research and Nuclear Energy'),
(118876, 96623, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŃŠ“Ń€ŠµŠ½Šø ŠøŠ·ŃŠ»ŠµŠ“Š²Š°Š½ŠøŃ Šø ŃŠ“Ń€ŠµŠ½Š° енергетика'),
(118877, 96624, 'en', 'name', 'Canadian Research Knowledge Network'),
(118878, 96624, 'fr', 'name', 'RƩseau canadien de documentation pour la recherche'),
(118879, 96625, 'en', 'name', 'University of the South Pacific - Emalus Campus'),
(118880, 96626, 'es', 'name', 'Tecnológico Nacional de México, Campus Pachuca'),
(118881, 96627, 'en', 'name', 'Department of National Trade Measurement and Standards'),
(118882, 96628, 'fr', 'name', 'Laboratoire Biologie et Biotechnologie pour la SantƩ'),
(118883, 96629, 'fr', 'name', 'Laboratoire d''anthropologie des enjeux contemporains'),
(118884, 96630, 'en', 'name', 'SUNY Corning Community College'),
(118885, 96631, 'en', 'name', 'European Space Operations Centre'),
(118886, 96632, 'fr', 'name', 'Montpellier Recherche en Economie'),
(118887, 96633, 'en', 'name', 'Ministry of Trade, Co-operatives, Small and Medium Enterprises'),
(118888, 96634, 'en', 'name', 'Life Sciences International Postgraduate Educational Center'),
(118889, 96635, 'fr', 'name', 'Direction GƩnƩrale de l''Armement'),
(118890, 96636, 'en', 'name', 'Moscow Institute of Psychoanalysis'),
(118891, 96636, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психоанализа'),
(118892, 96637, 'en', 'name', 'Association for Project Management'),
(118893, 96638, 'en', 'name', 'North Country Community College'),
(118894, 96639, 'en', 'name', 'Institute of Information and Communication Technologies'),
(118895, 96639, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по информационни Šø ŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¾Š½Š½Šø технологии'),
(118896, 96640, 'en', 'name', 'Buffalo State University'),
(118897, 96641, 'no_lang_code', 'name', 'Novartis (Italy)'),
(118898, 96641, 'it', 'name', 'Novartis Italia'),
(118899, 96642, 'en', 'name', 'Naval Research Academy'),
(118900, 96642, 'zh', 'name', '中国人民解放军海军研究院'),
(118901, 96643, 'en', 'name', 'New York State University College of Human Ecology'),
(118902, 96644, 'en', 'name', 'SUNY New Paltz'),
(118903, 96645, 'es', 'name', 'Instituto Colombiano del Petróleo y Energías de la Transición - Icpet'),
(118904, 96646, 'en', 'name', 'Green Cross Laboratories (South Korea)'),
(118905, 96647, 'no_lang_code', 'name', 'Shell (United Kingdom)'),
(118906, 96648, 'en', 'name', 'Intergovernmental Oceanographic Commission of UNESCO'),
(118907, 96649, 'id', 'name', 'Badan Strategi Kebijakan Dalam Negeri'),
(118908, 96650, 'no_lang_code', 'name', 'Vision RT (United Kingdom)'),
(118909, 96651, 'en', 'name', 'Federal Center for Cardiovascular Surgery Astrakhan'),
(118910, 96651, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Центр ДерГечно-Š”Š¾ŃŃƒŠ“ŠøŃŃ‚Š¾Š¹ Š„ŠøŃ€ŃƒŃ€Š³ŠøŠø ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России г. ŠŃŃ‚Ń€Š°Ń…Š°Š½ŃŒ'),
(118911, 96652, 'es', 'name', 'Instituto Tecnológico de Tuxtepec'),
(118912, 96653, 'en', 'name', 'Institute of Optics and Electronics, Chinese Academy of Sciences'),
(118913, 96654, 'en', 'name', 'Montana State University Foundation'),
(118914, 96655, 'en', 'name', 'Pingtan Environmental Monitoring Center of Fujian'),
(118915, 96655, 'zh', 'name', 'ē¦å»ŗēœå¹³ę½­ēŽÆå¢ƒē›‘ęµ‹äø­åæƒē«™'),
(118916, 96656, 'no_lang_code', 'name', 'Vuela for Health'),
(118917, 96657, 'en', 'name', 'Ethiopian Technology Authority'),
(118918, 96657, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« į‰“įŠ­įŠ–įˆŽįŒ‚ į‰£įˆˆįˆµįˆįŒ£įŠ•'),
(118919, 96658, 'no_lang_code', 'name', 'medica mondiale e.V.'),
(118920, 96659, 'en', 'name', 'Great Lakes Observing System'),
(118921, 96660, 'fr', 'name', 'Haute Ɖcole Provinciale de Hainaut Condorcet'),
(118922, 96661, 'en', 'name', 'World Glacier Monitoring Service'),
(118923, 96662, 'fr', 'name', 'Laboratoire Cognitions Humaine et Artificielle'),
(118924, 96663, 'en', 'name', 'Stanford Cancer Institute'),
(118925, 96664, 'en', 'name', 'Les Roches Marbella International School of Hotel Management'),
(118926, 96665, 'en', 'name', 'The Centre for Reproductive & Genetic Health'),
(118927, 96666, 'en', 'name', 'SUNY Westchester Community College'),
(118928, 96667, 'es', 'name', 'INESPASA (Spain)'),
(118929, 96668, 'en', 'name', 'Historic England'),
(118930, 96669, 'es', 'name', 'Instituto Tecnológico Superior de Centla'),
(118931, 96670, 'en', 'name', 'RFF-CMCC European Institute on Economics and the Environment'),
(118932, 96671, 'de', 'name', 'Forschungsanstalt für Waldökologie und Forstwirtschaft Rheinland-Pfalz'),
(118933, 96672, 'id', 'name', 'Kementerian Dalam Negeri'),
(118934, 96672, 'en', 'name', 'Ministry of Home Affairs'),
(118935, 96673, 'fr', 'name', 'Ecole de droit social de Montpellier'),
(118936, 96674, 'en', 'name', 'Air Force Communication NCO Academy'),
(118937, 96674, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›é€šäæ”å£«å®˜å­¦ę ”'),
(118938, 96675, 'es', 'name', 'Centro de Investigaciones Biológicas del Noroeste S.C.'),
(118939, 96676, 'en', 'name', 'SMA Trust'),
(118940, 96677, 'en', 'name', 'Microsoft Research MontrƩal (Canada)'),
(118941, 96678, 'en', 'name', 'Indonesian Muslim University of Makassar'),
(118942, 96678, 'id', 'name', 'Universitas Muslim Indonesia'),
(118943, 96679, 'sv', 'name', 'ƅForsk'),
(118944, 96680, 'pt', 'name', 'Universidade de Luanda'),
(118945, 96680, 'en', 'name', 'University of Luanda'),
(118946, 96681, 'en', 'name', 'Anaesthetic Research Society'),
(118947, 96682, 'en', 'name', 'National Metrology Institute of Malaysia'),
(118948, 96683, 'en', 'name', 'Khulna Agricultural University'),
(118949, 96683, 'bn', 'name', 'খুলনা ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(118950, 96684, 'en', 'name', 'NSW Department of Education'),
(118951, 96685, 'en', 'name', 'Mediterranean Experts on Climate and environmental Change'),
(118952, 96686, 'pt', 'name', 'Faculdade de Direito de Franca'),
(118953, 96687, 'en', 'name', 'AbbVie (Australia)'),
(118954, 96688, 'en', 'name', 'Jiangnan Social University'),
(118955, 96689, 'en', 'name', 'Army Command College'),
(118956, 96689, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›é™†å†›ęŒ‡ęŒ„å­¦é™¢ę’­ęŠ„'),
(118957, 96690, 'en', 'name', 'River Lane Research'),
(118958, 96691, 'en', 'name', 'Xavier Institute of Management and Entrepreneurship'),
(118959, 96692, 'es', 'name', 'Tecnológico de Estudios Superiores de CuautitlÔn Izcalli'),
(118960, 96693, 'sr', 'name', 'SMEITS'),
(118961, 96693, 'en', 'name', 'Union of Mechanical and Electrical Engineers and Technicians of Serbia'),
(118962, 96694, 'en', 'name', 'Suffolk County Community College'),
(118963, 96695, 'en', 'name', 'SUNY Broome Community College'),
(118964, 96696, 'fr', 'name', 'Fonctionnement et dysfonctionnement cognitifs: les âges de la vie'),
(118965, 96697, 'en', 'name', 'Jamestown Community College'),
(118966, 96698, 'sv', 'name', 'Rune and Ulla Amlƶvs Stiftelse'),
(118967, 96699, 'vi', 'name', 'Bį»™ CĆ“ng Thʰʔng'),
(118968, 96699, 'en', 'name', 'Ministry of Industry and Trade'),
(118969, 96700, 'fr', 'name', 'Guiana Space Centre'),
(118970, 96701, 'en', 'name', 'Saba University School of Medicine'),
(118971, 96702, 'no_lang_code', 'name', 'Hyundai Motor Group (South Korea)'),
(118972, 96703, 'en', 'name', 'European Astronaut Centre'),
(118973, 96703, 'de', 'name', 'EuropƤisches Astronautenzentrum'),
(118974, 96704, 'en', 'name', 'Central Institute of Metrology'),
(118975, 96705, 'fr', 'name', 'ECAL/Ecole cantonale d''art de Lausanne'),
(118976, 96706, 'en', 'name', 'Rajshahi Medical University'),
(118977, 96706, 'bn', 'name', 'ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ মেঔিকেল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(118978, 96707, 'it', 'name', 'Fondazione Roma'),
(118979, 96708, 'fr', 'name', 'Institut de Recherche sur l''Architecture Antique'),
(118980, 96709, 'en', 'name', 'Northern Netherlands Provinces alliance'),
(118981, 96709, 'nl', 'name', 'samenwerkingsverband Noord-Nederland'),
(118982, 96710, 'en', 'name', 'United Nations Economic and Social Council'),
(118983, 96711, 'en', 'name', 'Weston Park Cancer Centre'),
(118984, 96712, 'en', 'name', 'UNESCO-UNEVOC International Centre for Technical and Vocational Education and Training'),
(118985, 96713, 'sr', 'name', 'DruŔtvo lekara Vojvodine'),
(118986, 96714, 'en', 'name', 'Rosalind Franklin Institute'),
(118987, 96715, 'en', 'name', 'New Zealand Equine Research Foundation'),
(118988, 96716, 'es', 'name', 'Fundación Naturaleza El Salvador'),
(118989, 96717, 'fr', 'name', 'Institut FranƧais de la Mer'),
(118990, 96717, 'en', 'name', 'Oceanographic Institute'),
(118991, 96718, 'tr', 'name', 'Ƈanakkale Savaşları Enstitüsü'),
(118992, 96719, 'no_lang_code', 'name', 'Gilead Sciences (United Kingdom)'),
(118993, 96720, 'en', 'name', 'National Center for Measurement and Calibration Center'),
(118994, 96721, 'tr', 'name', 'Bornova Türkan Ɩzilhan Devlet Hastanesi'),
(118995, 96722, 'en', 'name', 'Zhangir Khan West Kazakhstan Agrarian Technical University'),
(118996, 96722, 'ru', 'name', 'Жангир Єан Университет'),
(118997, 96722, 'kk', 'name', 'Жәңгір Єан Университеті'),
(118998, 96723, 'pt', 'name', 'UningƔ - Centro UniversitƔrio IngƔ'),
(118999, 96724, 'fr', 'name', 'PHotonique ELectronique et IngƩnierie QuantiqueS'),
(119000, 96725, 'en', 'name', 'Harbin Finance University'),
(119001, 96725, 'zh', 'name', 'å“ˆå°”ę»Øé‡‘čžå­¦é™¢'),
(119002, 96726, 'en', 'name', 'South East Coast Ambulance Service NHS Foundation Trust'),
(119003, 96727, 'es', 'name', 'Tecnológico Nacional de México Campus Cancún'),
(119004, 96728, 'en', 'name', 'Saint Louis University'),
(119005, 96728, 'tl', 'name', 'Unibersidad ng San Luis'),
(119006, 96729, 'id', 'name', 'Sekolah Tinggi Ilmu Hukum Sumpah Pemuda'),
(119007, 96729, 'en', 'name', 'Sumpah Pemuda School of Law'),
(119008, 96730, 'en', 'name', 'K.S. Rangasamy College of Technology'),
(119009, 96730, 'hi', 'name', 'கே. ą®Žą®øąÆ. ą®°ą®™ąÆą®•ą®šą®¾ą®®ą®æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(119010, 96731, 'en', 'name', 'Directorate General for Scientific Research and Technological Development'),
(119011, 96731, 'ar', 'name', 'Ų§Ł„Ł…ŲÆŁŠŲ±ŁŠŲ© العامة للبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŲ·ŁˆŁŠŲ± Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(119012, 96732, 'en', 'name', 'CMCC Foundation - Euro-Mediterranean Center on Climate Change'),
(119013, 96733, 'en', 'name', 'University of Bayreuth'),
(119014, 96733, 'de', 'name', 'UniversitƤt Bayreuth'),
(119015, 96734, 'no_lang_code', 'name', 'Supernal (United States)'),
(119016, 96735, 'en', 'name', 'Cool Roof Rating Council'),
(119017, 96736, 'pl', 'name', 'Collegium Medicum in Bydgoszcz'),
(119018, 96737, 'es', 'name', 'Universidad del Chubut'),
(119019, 96737, 'en', 'name', 'University of Chubut'),
(119020, 96738, 'en', 'name', 'Harris–Stowe State University'),
(119021, 96739, 'no_lang_code', 'name', 'Anglian Water Services (United Kingdom)'),
(119022, 96740, 'en', 'name', 'Vesalius College'),
(119023, 96741, 'en', 'name', 'Jefferson Community College'),
(119024, 96742, 'en', 'name', 'Newlife the Charity for Disabled Children'),
(119025, 96743, 'en', 'name', 'LIDYL, Lasers, Interactions, and Dynamics Laboratory'),
(119026, 96743, 'fr', 'name', 'Laboratoire Interactions, Dynamiques et Lasers'),
(119027, 96744, 'es', 'name', 'Universidad Multitecnica Profesional'),
(119028, 96745, 'no_lang_code', 'name', 'Kowa (United Kingdom)'),
(119029, 96746, 'no_lang_code', 'name', 'Kellogg''s (United Kingdom)'),
(119030, 96747, 'es', 'name', 'Tecnológico Nacional de México Campus San Juan de los Ríos'),
(119031, 96748, 'en', 'name', 'Federal Highway Administration'),
(119032, 96749, 'en', 'name', 'Islamic Arabic University'),
(119033, 96749, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(119034, 96749, 'bn', 'name', 'ইসলামি আরবি ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(119035, 96750, 'en', 'name', 'Energi Simulation'),
(119036, 96751, 'en', 'name', 'Florida Museum of Natural History'),
(119037, 96752, 'en', 'name', 'Distributed System of Scientific Collections'),
(119038, 96753, 'en', 'name', 'Saudi Standards, Metrology and Quality Organization'),
(119039, 96753, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© Ł„Ł„Ł…ŁˆŲ§ŲµŁŲ§ŲŖ ŁˆŲ§Ł„Ł…Ł‚Ų§ŁŠŁŠŲ³ ŁˆŲ§Ł„Ų¬ŁˆŲÆŲ©'),
(119040, 96754, 'no_lang_code', 'name', 'Shell (United States)'),
(119041, 96755, 'en', 'name', 'CNIB Foundation'),
(119042, 96755, 'fr', 'name', 'Fondation INCA'),
(119043, 96756, 'no_lang_code', 'name', 'Technicolor (France)'),
(119044, 96757, 'en', 'name', 'North Carolina State Climate Office'),
(119045, 96758, 'en', 'name', 'Chengdu Fine Optical Engineering Research Center'),
(119046, 96758, 'zh', 'name', 'ęˆéƒ½ē²¾åÆ†å…‰å­¦å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(119047, 96759, 'sv', 'name', 'Station LinnƩ'),
(119048, 96760, 'en', 'name', 'Measurement Standards Section'),
(119049, 96761, 'en', 'name', 'Janeway Children''s Health and Rehabilitation Centre'),
(119050, 96762, 'fr', 'name', 'Laboratoire de sociologie des Territoires, du travail, des âges et de la santé'),
(119051, 96763, 'en', 'name', 'Utah Agricultural Experiment Station'),
(119052, 96764, 'en', 'name', 'Alfred State College'),
(119053, 96765, 'no_lang_code', 'name', 'Silence Therapeutics (United Kingdom)'),
(119054, 96766, 'de', 'name', 'Institut für soziale Gegenwartsfragen, Stuttgart, e.V.'),
(119055, 96767, 'en', 'name', 'New York State College of Veterinary Medicine'),
(119056, 96768, 'en', 'name', 'Herkimer College'),
(119057, 96769, 'en', 'name', 'LS Cable & System (South Korea)'),
(119058, 96769, 'ko', 'name', 'LSģ „ģ„ '),
(119059, 96770, 'es', 'name', 'Instituto Tecnológico Superior de Naranjos'),
(119060, 96771, 'es', 'name', 'Centro Científico Tecnológico - La Plata'),
(119061, 96772, 'en', 'name', 'New York Sea Grant'),
(119062, 96773, 'en', 'name', 'New York State College of Ceramics'),
(119063, 96774, 'fr', 'name', 'CEA Paris-Saclay - Etablissement de Fontenay-aux-roses'),
(119064, 96775, 'fr', 'name', 'Institut des Sciences des Plantes de Montpellier'),
(119065, 96775, 'en', 'name', 'Institute for Plant Sciences of Montpellier'),
(119066, 96776, 'en', 'name', 'Indian Institute of Management Ahmedabad'),
(119067, 96776, 'mr', 'name', 'इंऔियन ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤®ą„…ą¤Øą„‡ą¤œą¤®ą„‡ą¤Øą„ą¤Ÿ'),
(119068, 96776, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(119069, 96776, 'gu', 'name', 'આઇ.આઇ.ąŖąŖ®. અમદાવાદ'),
(119070, 96776, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ ą®…ą®•ą®®ą®¤ą®¾ą®Ŗą®¾ą®¤ąÆ'),
(119071, 96776, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ą“¾ą“Øąµ‡ą“œąµą“®ąµ†ą“Øąµą“±ąµ'),
(119072, 96777, 'es', 'name', 'Unidad AcadƩmica del Norte del Estado de Nayarit'),
(119073, 96778, 'en', 'name', 'Kennedy Memorial Trust'),
(119074, 96779, 'en', 'name', 'Fashion Institute of Technology'),
(119075, 96780, 'en', 'name', 'Government of New South Wales'),
(119076, 96781, 'en', 'name', 'Structural Genomics Consortium'),
(119077, 96782, 'en', 'name', 'Rare Disease Foundation'),
(119078, 96783, 'en', 'name', 'Kingsbrook Jewish Medical Center'),
(119079, 96784, 'en', 'name', 'Mildred Elley College'),
(119080, 96785, 'en', 'name', 'EuroMov Digital Health in Motion'),
(119081, 96786, 'en', 'name', 'Chr. Michelsen Institute'),
(119082, 96787, 'en', 'name', 'Sami Shamoon College of Engineering'),
(119083, 96787, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ להנדהה ×¢"ש ×”Öø×žÖ“×™ שַמְעוּן'),
(119084, 96788, 'en', 'name', 'Institute of Physics'),
(119085, 96789, 'en', 'name', 'National Labor College'),
(119086, 96790, 'en', 'name', 'A. Alikhanyan National Laboratory'),
(119087, 96790, 'hy', 'name', 'Ō±. Ō». Ō±Õ¬Õ«Õ­Õ”Õ¶ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ Õ¬Õ”Õ¢ÕøÖ€Õ”ÕæÕøÖ€Õ«Õ”'),
(119088, 96791, 'en', 'name', 'Missouri University of Science and Technology'),
(119089, 96791, 'fr', 'name', 'UniversitƩ du missouri-columbia de science et technologie'),
(119090, 96792, 'pt', 'name', 'Instituto Federal Farroupilha'),
(119091, 96793, 'en', 'name', 'PLA Rocket Force University of Engineering'),
(119092, 96793, 'zh', 'name', '中国人民解放军火箭军巄程大学'),
(119093, 96794, 'es', 'name', 'Universidad Tecnológica del Norte de Aguascalientes'),
(119094, 96795, 'fr', 'name', 'Centre Hospitalier Universitaire de LiĆØge'),
(119095, 96796, 'en', 'name', 'Khwaja Yunus Ali Medical College'),
(119096, 96796, 'bn', 'name', 'ą¦–ą¦¾ą¦œą¦¾ ইউনুস আলী মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(119097, 96797, 'en', 'name', 'Anahuac Mayab University'),
(119098, 96797, 'es', 'name', 'Universidad AnƔhuac Mayab');
INSERT INTO `ror_settings` VALUES
(119099, 96798, 'es', 'name', 'Instituto Tecnológico Superior del Occidente del Estado de Hidalgo'),
(119100, 96799, 'id', 'name', 'Yayasan Insanulhaq Cidadungu'),
(119101, 96800, 'no_lang_code', 'name', 'Johnson Matthey (United Kingdom)'),
(119102, 96801, 'en', 'name', 'Wild Animal Initiative'),
(119103, 96802, 'no_lang_code', 'name', 'Sekisui XenoTech (United States)'),
(119104, 96803, 'en', 'name', 'Monroe Community College'),
(119105, 96804, 'no_lang_code', 'name', 'Northumbrian Water Group (United Kingdom)'),
(119106, 96805, 'en', 'name', 'Niagara County Community College'),
(119107, 96806, 'en', 'name', 'Initial MAnagement and prevention of acute orGan failures IN critically ill patiEnts'),
(119108, 96807, 'uz', 'name', 'Fan va Texnologiyalar universiteti'),
(119109, 96807, 'en', 'name', 'University of Science and Technologies'),
(119110, 96808, 'fr', 'name', 'DGA Techniques aƩrospatiales'),
(119111, 96809, 'no_lang_code', 'name', 'arXiv'),
(119112, 96810, 'en', 'name', 'Guangxi Research Institute of Chemical Industry'),
(119113, 96810, 'zh', 'name', 'å¹æč„æåŒ–å·„ē ”ē©¶é™¢'),
(119114, 96811, 'fr', 'name', 'BioCampus Montpellier'),
(119115, 96812, 'en', 'name', 'Konan University'),
(119116, 96812, 'ja', 'name', 'ē”²å—å¤§å­¦'),
(119117, 96813, 'en', 'name', 'Ministry of Public Health'),
(119118, 96813, 'th', 'name', 'ąøąø£ąø°ąø—ąø£ąø§ąø‡ąøŖąø²ąø˜ąø²ąø£ąø“ąøŖąøøąø‚'),
(119119, 96814, 'en', 'name', 'Wales Institute of Social and Economic Research, Data and Methods'),
(119120, 96815, 'en', 'name', 'Association for Cancer Surgery'),
(119121, 96816, 'en', 'name', 'Nagoya University'),
(119122, 96816, 'ja', 'name', '名古屋大学'),
(119123, 96817, 'en', 'name', 'The Navigation Fund'),
(119124, 96818, 'en', 'name', 'SUNY Adirondack'),
(119125, 96819, 'en', 'name', 'National Highway Traffic Safety Administration'),
(119126, 96820, 'en', 'name', 'IBM Research - Thomas J. Watson Research Center'),
(119127, 96821, 'en', 'name', 'The Kericho National Polytechnic'),
(119128, 96822, 'en', 'name', 'The Charitable Foundation "BELA. Butterfly Children"'),
(119129, 96822, 'ru', 'name', 'Š‘Š»Š°Š³Š¾Ń‚Š²Š¾Ń€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ фонГ «БЭЛА. Дети-бабочки»'),
(119130, 96823, 'fr', 'name', 'Le Centre d’innovation et de recherche The Sense'),
(119131, 96823, 'en', 'name', 'The Sense Innovation and Research Center'),
(119132, 96824, 'en', 'name', 'Byte Road (Portugal)'),
(119133, 96825, 'fr', 'name', 'Laboratoire Lorrain de Sciences Sociales'),
(119134, 96826, 'no_lang_code', 'name', 'Telefonica Research and Development'),
(119135, 96826, 'es', 'name', 'Telefónica Investigación y Desarrollo'),
(119136, 96827, 'en', 'name', 'Ministry of Commerce, Industry and Cooperatives'),
(119137, 96828, 'en', 'name', 'Cayuga Community College'),
(119138, 96829, 'en', 'name', 'Childhood genetic diseases laboratory'),
(119139, 96829, 'fr', 'name', 'Maladies gĆ©nĆ©tiques d’expression pĆ©diatrique'),
(119140, 96830, 'en', 'name', 'Hudson Valley Community College'),
(119141, 96831, 'fr', 'name', 'Centre d''Etudes et de Recherches Comparatives Constitutionnelles et Politiques'),
(119142, 96832, 'en', 'name', 'UNESCO Institute for Lifelong Learning'),
(119143, 96833, 'en', 'name', 'Ahmadu Bello University'),
(119144, 96833, 'yo', 'name', 'YunifĆ”sĆ­tƬ ƀmį»Ģdù BĆ©llò'),
(119145, 96834, 'fr', 'name', 'Théâtre antique : textes, histoire et réception'),
(119146, 96835, 'en', 'name', 'Franklin Resources (United States)'),
(119147, 96836, 'no_lang_code', 'name', 'Daiichi Sankyo (Germany)'),
(119148, 96836, 'de', 'name', 'ē¬¬äø€äø‰å…±ę Ŗå¼ä¼šē¤¾'),
(119149, 96837, 'no', 'name', 'NODA Nordnorsk Design- og Arkitektursenter'),
(119150, 96838, 'en', 'name', 'Genesee Community College'),
(119151, 96839, 'es', 'name', 'Escuela Normal Rural "Justo Sierra MƩndez"'),
(119152, 96840, 'en', 'name', 'Kansas Geological Survey'),
(119153, 96841, 'en', 'name', 'University of the South Pacific'),
(119154, 96842, 'en', 'name', 'Guangdong Teachers College of Foreign Language and Arts'),
(119155, 96842, 'zh', 'name', 'å¹æäøœēœå¤–čÆ­č‰ŗęœÆčŒäøšå­¦é™¢'),
(119156, 96843, 'fr', 'name', 'Centre de Recherche en Technologies Agro-Alimentaires'),
(119157, 96844, 'en', 'name', 'Lullaby Trust'),
(119158, 96845, 'no_lang_code', 'name', 'Teledyne FLIR (Belgium)'),
(119159, 96846, 'en', 'name', 'European Space Research and Technology Centre'),
(119160, 96847, 'en', 'name', 'MIT Art, Design and Technology University'),
(119161, 96848, 'en', 'name', 'The Christie NHS Foundation Trust'),
(119162, 96849, 'en', 'name', 'NHS Grampian'),
(119163, 96850, 'es', 'name', 'Iren Centro'),
(119164, 96851, 'en', 'name', 'National Institute of Metrology Myanmar'),
(119165, 96851, 'my', 'name', 'į€į€­į€€į€»į€…į€½į€¬į€į€­į€Æį€„į€ŗį€øį€į€¬į€į€¼į€„į€ŗį€øį€”į€Šį€ŗį€øį€•į€Šį€¬į€Œį€¬į€”'),
(119166, 96852, 'en', 'name', 'NSW Office for Learning and Teaching'),
(119167, 96853, 'fr', 'name', 'Centre d’histoire des sociĆ©tĆ©s MĆ©diĆ©vales et Modernes'),
(119168, 96854, 'no_lang_code', 'name', 'Sekisui Chemical (Japan)'),
(119169, 96854, 'ja', 'name', 'ē©ę°“åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(119170, 96855, 'en', 'name', 'Guarapari City Hall'),
(119171, 96855, 'pt', 'name', 'Prefeitura Municipal de Guarapari'),
(119172, 96856, 'fr', 'name', 'AcadƩmie suisse des sciences techniques'),
(119173, 96856, 'it', 'name', 'Accademia svizzera delle scienze tecniche'),
(119174, 96856, 'de', 'name', 'Schweizerische Akademie der Technischen Wissenschaften'),
(119175, 96856, 'en', 'name', 'Swiss Academy of Engineering Sciences SATW'),
(119176, 96857, 'es', 'name', 'Universidad Autónoma de Nayarit'),
(119177, 96858, 'en', 'name', 'European Regional Centre for Ecohydrology'),
(119178, 96859, 'es', 'name', 'Instituto Tecnológico Superior de Cananea'),
(119179, 96860, 'es', 'name', 'Universidad Nacional "Siglo XX"'),
(119180, 96861, 'en', 'name', 'Chandpur Science and Technology University'),
(119181, 96861, 'bn', 'name', 'চাঁদপুর ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(119182, 96862, 'en', 'name', 'Lyceum of the Philippines University – Batangas'),
(119183, 96863, 'en', 'name', 'Central Geological Laboratory of Mongolia'),
(119184, 96864, 'es', 'name', 'Instituto Tecnologico de Delicias'),
(119185, 96865, 'en', 'name', 'Bureau of Public Roads'),
(119186, 96866, 'en', 'name', 'Glasgow Childrens Hospital Charity'),
(119187, 96867, 'en', 'name', 'Department of Science Service'),
(119188, 96867, 'th', 'name', 'ąøąø£ąø”ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąøšąø£ąø“ąøąø²ąø£'),
(119189, 96868, 'en', 'name', 'SUNY Fredonia'),
(119190, 96869, 'en', 'name', 'Tommy''s'),
(119191, 96870, 'fr', 'name', 'UMR Espace-Dev'),
(119192, 96871, 'en', 'name', 'Jan Biziel University Hospital No. 2 in Bydgoszcz'),
(119193, 96871, 'pl', 'name', 'Szpital Uniwersytecki nr 2 im. dr. Jana Biziela w Bydgoszczy'),
(119194, 96872, 'en', 'name', 'Oregon Department of Transportation'),
(119195, 96873, 'id', 'name', 'Politeknik Negeri Batam'),
(119196, 96874, 'en', 'name', 'Chongqing Zhijian Life Technology Co., Ltd (China)'),
(119197, 96874, 'zh', 'name', 'é‡åŗ†ēŸ„č§ē”Ÿå‘½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(119198, 96875, 'en', 'name', 'SUNY Downstate Health Sciences University'),
(119199, 96876, 'en', 'name', 'Nekton'),
(119200, 96877, 'no_lang_code', 'name', 'Sonova (United States)'),
(119201, 96878, 'en', 'name', 'Canadian Scientific Submersible Facility'),
(119202, 96879, 'en', 'name', 'Anzac Research Institute'),
(119203, 96880, 'en', 'name', 'Northern Health and Social Care Trust'),
(119204, 96881, 'en', 'name', 'Nassau Community College'),
(119205, 96882, 'no_lang_code', 'name', 'BioIVT (United States)'),
(119206, 96883, 'en', 'name', 'Columbia-Greene Community College'),
(119207, 96884, 'en', 'name', 'American Society of Neuroradiology'),
(119208, 96885, 'en', 'name', 'Great Lakes Indian Fish & Wildlife Commission'),
(119209, 96886, 'es', 'name', 'Tecnológico Nacional de México Campus Ciudad SerdÔn'),
(119210, 96887, 'es', 'name', 'Centro de Información de Medicamentos de la Universidad Nacional'),
(119211, 96888, 'en', 'name', 'North Carolina School of Science and Mathematics'),
(119212, 96889, 'en', 'name', 'Meningitis Now'),
(119213, 96890, 'en', 'name', 'KS Rangasamy College of Arts and Science'),
(119214, 96890, 'ta', 'name', 'கே ą®Žą®øąÆ ą®°ą®™ąÆą®•ą®šą®¾ą®®ą®æ ą®•ą®²ąÆˆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(119215, 96891, 'no_lang_code', 'name', 'Sonova (Switzerland)'),
(119216, 96892, 'es', 'name', 'Instituto Tecnológico Superior de Calkiní'),
(119217, 96893, 'no_lang_code', 'name', 'China National Building Materials Group (China)'),
(119218, 96894, 'en', 'name', 'Institute of Geology and Mineral Exploration'),
(119219, 96895, 'en', 'name', 'New York State College of Agriculture & Life Sciences'),
(119220, 96896, 'no_lang_code', 'name', 'IMRA America (United States)'),
(119221, 96897, 'es', 'name', 'Tecnológico Nacional de México Campus Ciudad Valles'),
(119222, 96898, 'en', 'name', 'Habiganj Agricultural University'),
(119223, 96898, 'bn', 'name', 'ą¦¹ą¦¬ą¦æą¦—ą¦žą§ą¦œ ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(119224, 96899, 'en', 'name', 'Al Hikma University'),
(119225, 96900, 'en', 'name', 'Institute of Astrophysics of Andalusia'),
(119226, 96900, 'es', 'name', 'Instituto de AstrofĆ­sica de AndalucĆ­a'),
(119227, 96901, 'fr', 'name', 'Centre Hospitalier Universitaire Vaudois'),
(119228, 96901, 'en', 'name', 'University Hospital of Lausanne'),
(119229, 96902, 'en', 'name', 'Sociological Scientific Society of Serbia'),
(119230, 96902, 'sr', 'name', 'SocioloŔko naučno druŔtvo Srbije'),
(119231, 96903, 'en', 'name', 'Society of Swedish Literature in Finland'),
(119232, 96903, 'fi', 'name', 'Svenska LitteratursƤllskapet i Finland'),
(119233, 96904, 'en', 'name', 'FSU Coastal and Marine Laboratory'),
(119234, 96905, 'ro', 'name', 'Universitatea de Științele Vieții ā€œRegele Mihai Iā€ din Timișoara'),
(119235, 96905, 'en', 'name', 'Univesity of Life Science "King Mihai I" from Timisoara'),
(119236, 96906, 'no_lang_code', 'name', 'Almac (United Kingdom)'),
(119237, 96907, 'en', 'name', 'Thames Valley Air Ambulance'),
(119238, 96908, 'en', 'name', 'Toko University'),
(119239, 96908, 'zh', 'name', 'ēØ»ę±Ÿē§‘ęŠ€ęšØē®”ē†å­øé™¢'),
(119240, 96909, 'en', 'name', 'Pain Labs'),
(119241, 96910, 'fr', 'name', 'Laboratoire de Chimie Bio-inspirĆ©e et d’Innovations Ecologiques'),
(119242, 96911, 'de', 'name', 'Stiftung Synapsis'),
(119243, 96911, 'en', 'name', 'Synapsis Foundation'),
(119244, 96912, 'en', 'name', 'New York State Museum'),
(119245, 96913, 'en', 'name', 'Sogang University'),
(119246, 96913, 'ko', 'name', 'ģ„œź°•ėŒ€ķ•™źµ'),
(119247, 96914, 'en', 'name', 'Cure Parkinson''s Trust'),
(119248, 96915, 'it', 'name', 'Liceo scientifico statale Ulisse Dini'),
(119249, 96915, 'en', 'name', 'Ulisse Dini Scientific High School'),
(119250, 96916, 'no_lang_code', 'name', 'Low Carbon Living CRC (Australia)'),
(119251, 96917, 'id', 'name', 'Universitas Islam Negeri Syekh Ali Hasan Ahmad Addary Padangsidimpuan'),
(119252, 96918, 'fr', 'name', 'Laboratoire de droit privƩ'),
(119253, 96919, 'en', 'name', 'Center for Community Progress'),
(119254, 96920, 'en', 'name', 'Nwafor Orizu College of Education'),
(119255, 96921, 'pt', 'name', 'Madan Parque'),
(119256, 96922, 'pt', 'name', 'Santa Marcelina Colégio São Paulo'),
(119257, 96923, 'en', 'name', 'Punta Galeta Marine Laboratory'),
(119258, 96924, 'en', 'name', 'Al-Rayan University'),
(119259, 96924, 'ar', 'name', 'لجامعة Ų§Ł„Ų±ŁŠŲ§Ł†'),
(119260, 96925, 'fr', 'name', 'Education, Discours et Apprentissages'),
(119261, 96926, 'pt', 'name', 'Lógica EM SA (Portugal)'),
(119262, 96927, 'no_lang_code', 'name', 'Qilimanjaro Quantum Tech (Spain)'),
(119263, 96928, 'fr', 'name', 'Chimie mƩdicinale et recherche translationnelle'),
(119264, 96929, 'fr', 'name', 'Ɖcole de l''air et de l''espace'),
(119265, 96930, 'fr', 'name', 'Centre de recherches en histoire internationale et atlantique'),
(119266, 96931, 'en', 'name', 'Ministry of Defence of the Russian Federation'),
(119267, 96931, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ обороны Российской ФеГерации'),
(119268, 96932, 'en', 'name', 'Federal College of Wildlife Management'),
(119269, 96933, 'fr', 'name', 'FƩdƩration de Chimie de l''UniversitƩ Paris'),
(119270, 96934, 'en', 'name', 'Mātai Medical Research Institute'),
(119271, 96934, 'mi', 'name', 'Te Mata Mātai Hura'),
(119272, 96935, 'pt', 'name', 'Polícia de Segurança Pública'),
(119273, 96936, 'pt', 'name', 'Instituto de Estudos Sociais e Económicos'),
(119274, 96937, 'de', 'name', 'Deutsches Humangenom-PhƤnomarchiv'),
(119275, 96937, 'en', 'name', 'German Human Genome-Phenome Archive'),
(119276, 96938, 'pt', 'name', 'Jardim Zoológico'),
(119277, 96939, 'en', 'name', 'African Reproducibility Network'),
(119278, 96940, 'en', 'name', 'PRX Research'),
(119279, 96941, 'en', 'name', 'Software Engineering Institute of Guangzhou'),
(119280, 96941, 'zh', 'name', 'å¹æå·žč½Æä»¶å­¦é™¢'),
(119281, 96942, 'en', 'name', 'Cross-Border Institute'),
(119282, 96943, 'es', 'name', 'Universidad de Connecticut'),
(119283, 96943, 'en', 'name', 'University of Connecticut'),
(119284, 96943, 'fr', 'name', 'UniversitƩ du connecticut'),
(119285, 96944, 'en', 'name', 'Czech Academy of Sciences, Institute of Geonics'),
(119286, 96944, 'cs', 'name', 'Ústav geoniky AV ČR'),
(119287, 96945, 'fr', 'name', 'Centre de Robotique'),
(119288, 96945, 'en', 'name', 'Mines Paris, PSL University, Centre for Robotics (CAOR)'),
(119289, 96946, 'en', 'name', 'Pharma Health Science College'),
(119290, 96947, 'pt', 'name', 'Laboratório Associado CICECO – Instituto de Materiais de Aveiro'),
(119291, 96948, 'pt', 'name', 'Associação Para as Ciências do Mar'),
(119292, 96949, 'en', 'name', 'Tanta University'),
(119293, 96949, 'fr', 'name', 'UniversitƩ de Tanta'),
(119294, 96949, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طنطا'),
(119295, 96950, 'en', 'name', 'Institute of Earth Sciences'),
(119296, 96950, 'pt', 'name', 'Instituto de CiĆŖncias da Terra'),
(119297, 96951, 'en', 'name', 'Leon Technological University'),
(119298, 96951, 'es', 'name', 'Universidad Tecnológica de León'),
(119299, 96952, 'en', 'name', 'National Fertilizer Corporation (Pakistan)'),
(119300, 96952, 'ur', 'name', 'Ł†ŪŒŲ“Ł†Ł„ ŁŲ±Ł¹ŪŒŁ„Ų§Ų¦Ų²Ų± Ś©Ų§Ų±Ł¾ŁˆŲ±ŪŒŲ“Ł† پاکستان'),
(119301, 96953, 'pt', 'name', 'Amgen Biofarmaceutica Lda (Portugal)'),
(119302, 96953, 'en', 'name', 'Amgen Biopharmaceutical'),
(119303, 96954, 'en', 'name', 'Islamic Azad University, Ashkezar'),
(119304, 96954, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد اؓکذر'),
(119305, 96955, 'en', 'name', 'California Science Center'),
(119306, 96956, 'en', 'name', 'Munich Center for Machine Learning'),
(119307, 96957, 'en', 'name', 'Smithsonian Center for Folklife and Cultural Heritage'),
(119308, 96958, 'pt', 'name', 'Tribunal de Contas'),
(119309, 96959, 'en', 'name', 'Avesta Battery & Energy Engineering (Belgium)'),
(119310, 96960, 'en', 'name', 'NFDI4Memory'),
(119311, 96961, 'en', 'name', 'Posit Software, PBC (United States)'),
(119312, 96962, 'pt', 'name', 'Sociedade Portuguesa para o Estudo das Aves'),
(119313, 96963, 'en', 'name', 'Shantou University'),
(119314, 96963, 'zh', 'name', '汕夓大学'),
(119315, 96964, 'fr', 'name', 'Recherche clinique appliquƩe Ơ l''hƩmatologie'),
(119316, 96965, 'pt', 'name', 'Museu Nacional de Etnologia'),
(119317, 96966, 'it', 'name', 'Ospedale di Macerata'),
(119318, 96967, 'fr', 'name', 'Dispositifs d''information et de communication à l''ère du numérique - Paris Ile-de-france'),
(119319, 96968, 'pt', 'name', 'Academia Nacional de Belas Artes'),
(119320, 96969, 'en', 'name', 'pyOpenSci'),
(119321, 96970, 'en', 'name', 'Systems Plus College Foundation'),
(119322, 96971, 'en', 'name', 'Smithsonian American Art Museum'),
(119323, 96972, 'en', 'name', 'Modern University College'),
(119324, 96972, 'ar', 'name', 'Ų§Ł„Ł€ŁƒŁ„Ł€ŁŠŁ€Ų© Ų§Ł„Ł€Ų¹Ł€ŲµŁ€Ų±ŁŠŁ€Ų© Ų§Ł„Ł€Ų¬Ł€Ł€Ų§Ł…Ų¹Ł€ŁŠŁ€Ł€Ł€Ų©'),
(119325, 96973, 'en', 'name', 'IFOAM Organics Europe'),
(119326, 96974, 'cs', 'name', 'Botanický ústav AV ČR'),
(119327, 96974, 'en', 'name', 'Czech Academy of Sciences, Institute of Botany'),
(119328, 96975, 'en', 'name', 'Robert Bosch Foundation'),
(119329, 96975, 'de', 'name', 'Robert Bosch Stiftung'),
(119330, 96976, 'en', 'name', 'Institute of Hydrology of the Slovak Academy of Sciences'),
(119331, 96976, 'sk', 'name', 'Ústav hydrológie Slovenskej akadémie vied'),
(119332, 96977, 'pt', 'name', 'Governo da República Portuguesa Ministério do Mar'),
(119333, 96978, 'en', 'name', 'NFDI4Ing'),
(119334, 96978, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für die Ingenieurwissenschaften'),
(119335, 96979, 'fr', 'name', 'Dynamique des GƩnomes et Adaptation Microbienne'),
(119336, 96979, 'en', 'name', 'Genome dynamics and microbial adaptation'),
(119337, 96980, 'fr', 'name', 'Centre des Politiques de la Terre'),
(119338, 96981, 'en', 'name', 'Ivy Enber Christian University'),
(119339, 96982, 'en', 'name', 'NOAA National Marine Fisheries Service Office of Science and Technology'),
(119340, 96983, 'en', 'name', 'Polytechnic University of Sinaloa'),
(119341, 96983, 'es', 'name', 'Universidad PolitƩcnica de Sinaloa'),
(119342, 96984, 'pt', 'name', 'Ministério Público'),
(119343, 96985, 'en', 'name', 'Interdisciplinary Laboratory for Applied Research in Health Economics'),
(119344, 96985, 'fr', 'name', 'Laboratoire Interdisciplinaire de Recherche AppliquƩe en Economie-Gestion et SantƩ'),
(119345, 96986, 'en', 'name', 'Maqsut Narikbayev University'),
(119346, 96987, 'no_lang_code', 'name', 'Faghihi Hospital'),
(119347, 96987, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ ŁŁ‚ŪŒŁ‡ŪŒ'),
(119348, 96988, 'es', 'name', 'Laboratorios de isla Naos'),
(119349, 96988, 'en', 'name', 'Naos Marine and Molecular Laboratories'),
(119350, 96989, 'pt', 'name', 'Academia de Software (Portugal)'),
(119351, 96989, 'en', 'name', 'Software Academy'),
(119352, 96990, 'de', 'name', 'Technische Hochschule Ulm'),
(119353, 96991, 'en', 'name', 'National Postal Museum'),
(119354, 96992, 'de', 'name', 'Eidgenössisches Departement für auswärtige Angelegenheiten'),
(119355, 96992, 'en', 'name', 'Federal Department of Foreign Affairs'),
(119356, 96993, 'pt', 'name', 'Egas Moniz - Cooperativa de Ensino Superior Crl'),
(119357, 96994, 'en', 'name', 'Basic Education College'),
(119358, 96994, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŲŖŲ±ŲØŁŠŲ© Ų§Ł„Ų£Ų³Ų§Ų³ŁŠŲ©'),
(119359, 96995, 'es', 'name', 'Universidad PolitƩcnica de Francisco I. Madero'),
(119360, 96996, 'pt', 'name', 'Santa Marcelina Educação'),
(119361, 96997, 'en', 'name', 'City Institute, Dalian University of Technology'),
(119362, 96997, 'zh', 'name', 'å¤§čæžē†å·„å¤§å­¦åŸŽåø‚å­¦é™¢'),
(119363, 96998, 'en', 'name', 'Czech Academy of Sciences, Institute of Geology'),
(119364, 96998, 'cs', 'name', 'Geologický ústav AV ČR'),
(119365, 96999, 'en', 'name', 'Center for Astrophysics Harvard & Smithsonian'),
(119366, 97000, 'en', 'name', 'German National Research Data Infrastructure'),
(119367, 97000, 'de', 'name', 'Nationale Forschungsdateninfrastruktur'),
(119368, 97001, 'pt', 'name', 'Estado-Maior da ForƧa AƩrea'),
(119369, 97002, 'no_lang_code', 'name', 'SELEX Sistemi Integrati'),
(119370, 97003, 'en', 'name', 'Waziri Umaru Federal Polytechnic, Birnin Kebbi'),
(119371, 97004, 'en', 'name', 'Zhejiang Gongshang University Hangzhou College of Commerce'),
(119372, 97004, 'zh', 'name', 'ęµ™ę±Ÿå·„å•†å¤§å­¦ę­å·žå•†å­¦é™¢'),
(119373, 97005, 'en', 'name', 'Smithsonian Libraries'),
(119374, 97006, 'no_lang_code', 'name', 'NFDI4BIOIMAGE'),
(119375, 97006, 'en', 'name', 'National Research Data Infrastructure for Microscopy, Biophotonics and Bioimage Analysis'),
(119376, 97006, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für Mikroskopie und Bildanalyse'),
(119377, 97007, 'en', 'name', 'Engineering Biology Research Consortium'),
(119378, 97008, 'en', 'name', 'Varastegan Institute for Medical Sciences'),
(119379, 97008, 'fa', 'name', 'مرکز Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų¹Ł„ŁˆŁ… پزؓکی ŁˆŲ§Ų±Ų³ŲŖŚÆŲ§Ł†'),
(119380, 97009, 'en', 'name', 'Smithsonian Conservation Biology Institute'),
(119381, 97010, 'en', 'name', 'Petroleum Training Institute'),
(119382, 97011, 'fr', 'name', 'Bibliothèque Interuniversitaire de Santé'),
(119383, 97012, 'pt', 'name', 'Instituto Mediterrâneo para a Agricultura Ambiente e Desenvolvimento'),
(119384, 97013, 'no_lang_code', 'name', 'Selex ES (Italy)'),
(119385, 97014, 'pt', 'name', 'Instituto Superior de Estudos Interculturais e Transdisciplinares de Almada'),
(119386, 97015, 'no_lang_code', 'name', 'Text+'),
(119387, 97016, 'fr', 'name', 'SantƩ, vulnƩrabilitƩs et relations de genre au Sud'),
(119388, 97017, 'en', 'name', 'National Museum of African American History and Culture'),
(119389, 97018, 'es', 'name', 'Universidad Tecnológica de Altamira, Tamaulipas'),
(119390, 97019, 'en', 'name', 'KonsortSWD'),
(119391, 97019, 'de', 'name', 'Konsortium für die Sozial-, Bildungs-, Verhaltens- und Wirtschaftswissenschaften'),
(119392, 97020, 'de', 'name', 'Humboldt-UniversitƤt zu Berlin'),
(119393, 97021, 'pt', 'name', 'Instituto Superior de Lisboa e Vale do Tejo'),
(119394, 97022, 'en', 'name', 'PLA Rocket Force Research Institute'),
(119395, 97022, 'zh', 'name', '中国人民解放军火箭军研究院'),
(119396, 97023, 'en', 'name', 'Foothills Medical Centre'),
(119397, 97024, 'en', 'name', 'Guangzhou Huali College'),
(119398, 97024, 'zh', 'name', 'å¹æå·žåŽē«‹å­¦é™¢'),
(119399, 97025, 'en', 'name', 'Smithsonian Latino Center'),
(119400, 97026, 'en', 'name', 'Center for Jewish History'),
(119401, 97027, 'de', 'name', 'Vereinigung der DenkmalfachƤmter in den LƤndern'),
(119402, 97028, 'en', 'name', 'Holland Particle Therapy Center'),
(119403, 97029, 'en', 'name', 'Czech Academy of Sciences, Institute of Mathematics'),
(119404, 97029, 'cs', 'name', 'Matematický ústav AV ČR'),
(119405, 97030, 'pt', 'name', 'Centro Internacional de MatemƔtica'),
(119406, 97031, 'fr', 'name', 'Centre d''Investigation Clinique Saint-Louis'),
(119407, 97032, 'en', 'name', 'National School of Nanoscience and Nanotechnology'),
(119408, 97033, 'pt', 'name', 'Estado-Maior-General das ForƧas Armadas'),
(119409, 97034, 'pt', 'name', 'Museu Nacional de História Natural e da Ciência'),
(119410, 97035, 'en', 'name', 'EDP University'),
(119411, 97035, 'pt', 'name', 'Universidade EDP'),
(119412, 97036, 'en', 'name', 'Stem Cell Technology Research Center'),
(119413, 97037, 'en', 'name', 'NFDI4Culture'),
(119414, 97038, 'pt', 'name', 'Conselho Nacional de Educação'),
(119415, 97039, 'pt', 'name', 'Instituto Superior de Tecnologias AvanƧadas do Porto'),
(119416, 97040, 'no_lang_code', 'name', 'NFDI4Microbiota'),
(119417, 97040, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für Mikrobiota-Forschung'),
(119418, 97041, 'pt', 'name', 'Faculdade Santa Marcelina MuriaƩ'),
(119419, 97042, 'pt', 'name', 'Instituto Superior de Estudos Interculturais e Transdisciplinares de Viseu'),
(119420, 97043, 'no_lang_code', 'name', 'NFDI4Biodiversity'),
(119421, 97044, 'fr', 'name', 'Laboratoire MƩmoire et Cognition'),
(119422, 97044, 'en', 'name', 'Memory and Cognition Laboratory'),
(119423, 97045, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Bologna'),
(119424, 97045, 'en', 'name', 'National Institute for Nuclear Physics, Bologna Division'),
(119425, 97046, 'pt', 'name', 'Grupo Jose de Mello (Portugal)'),
(119426, 97046, 'en', 'name', 'JosƩ de Mello Group'),
(119427, 97047, 'en', 'name', 'Faculty of Medicine of Tunis'),
(119428, 97047, 'fr', 'name', 'FacultƩ de mƩdecine de Tunis'),
(119429, 97047, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الطب ŲØŲŖŁˆŁ†Ų³'),
(119430, 97048, 'fr', 'name', 'Centre Observation, Impacts, Ɖnergie'),
(119431, 97048, 'en', 'name', 'Centre for Observation, Impacts, Energy'),
(119432, 97049, 'pt', 'name', 'Academia de Engenharia'),
(119433, 97050, 'fr', 'name', 'Polytech Nice Sophia'),
(119434, 97051, 'pt', 'name', 'Centro Hospitalar Leiria EPE'),
(119435, 97052, 'en', 'name', 'Great Lakes Institute for Environmental Research'),
(119436, 97053, 'en', 'name', 'Smithsonian Tropical Research Institute'),
(119437, 97054, 'sk', 'name', 'Geografický Ústav Slovenskej akadémie vied'),
(119438, 97054, 'en', 'name', 'Institute of Geography of the Slovak Academy of Sciences'),
(119439, 97055, 'pt', 'name', 'NAV (Portugal)'),
(119440, 97056, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Padova'),
(119441, 97056, 'en', 'name', 'National Institute for Nuclear Physics, Padova Division'),
(119442, 97057, 'en', 'name', 'National Center for Post Traumatic Stress Disorder'),
(119443, 97058, 'pt', 'name', 'Sociedade Brasileira de Urologia'),
(119444, 97059, 'en', 'name', 'Smithsonian Environmental Research Center'),
(119445, 97060, 'en', 'name', 'National Institute of Financial Management'),
(119446, 97060, 'hi', 'name', 'ą¤…ą¤°ą„ą¤£ ą¤œą„‡ą¤Ÿą¤²ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¤ą„ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(119447, 97061, 'pt', 'name', 'Instituto PolitƩcnico Jean Piaget do Sul'),
(119448, 97062, 'en', 'name', 'Rabindra University'),
(119449, 97062, 'bn', 'name', 'ą¦°ą¦¬ą§€ą¦Øą§ą¦¦ą§ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(119450, 97063, 'en', 'name', 'Suzhou City University'),
(119451, 97063, 'zh', 'name', 'č˜‡å·žåŸŽåø‚å­¦é™¢'),
(119452, 97064, 'pt', 'name', 'Centro Hospitalar Póvoa de Varzim Vila do Conde EPE'),
(119453, 97065, 'pt', 'name', 'Laboratório de Robótica e Sistemas de Engenharia'),
(119454, 97066, 'en', 'name', 'Know Center Research GmbH (Austria)'),
(119455, 97067, 'en', 'name', 'Naval Facilities Engineering and Expeditionary Warfare Center'),
(119456, 97068, 'de', 'name', 'FAIRe Dateninfrastruktur für die Physik der kondensierten Materie und die chemische Physik fester Stoffe'),
(119457, 97068, 'en', 'name', 'FAIRmat'),
(119458, 97069, 'fr', 'name', 'Nature Canada'),
(119459, 97069, 'en', 'name', 'Nature Canada'),
(119460, 97070, 'en', 'name', 'Open Preservation Foundation'),
(119461, 97071, 'pt', 'name', 'Laboratório de Ensaios Desgaste e Materiais'),
(119462, 97072, 'no_lang_code', 'name', 'Aviation Industry Corporation of China (China)'),
(119463, 97072, 'zh', 'name', 'äø­å›½čˆŖē©ŗå·„äøšé›†å›¢å…¬åø'),
(119464, 97073, 'en', 'name', 'Czech Academy of Sciences, Institute of Animal Physiology and Genetics'),
(119465, 97073, 'cs', 'name', 'Ústav živočiÅ”nĆ© fyziologie a genetiky AV ČR'),
(119466, 97074, 'en', 'name', 'Nanjing University of Science and Technology ZiJin College'),
(119467, 97074, 'zh', 'name', 'å—äŗ¬ē†å·„å¤§å­¦ē“«é‡‘å­¦é™¢'),
(119468, 97075, 'en', 'name', 'Anacostia Community Museum'),
(119469, 97076, 'pt', 'name', 'Centro de Maricultura da Calheta'),
(119470, 97077, 'fr', 'name', 'Institut la Personne en mƩdecine'),
(119471, 97078, 'en', 'name', 'Fresenius Medical Care Portugal (Portugal)'),
(119472, 97079, 'pt', 'name', 'Ordem Hospitaleira de São João de Deus'),
(119473, 97080, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Salerno'),
(119474, 97081, 'pt', 'name', 'Agri-CiĆŖncia (Portugal)'),
(119475, 97081, 'en', 'name', 'Agri-Science'),
(119476, 97082, 'pt', 'name', 'Hospital CUF Descobertas'),
(119477, 97083, 'en', 'name', 'Membrane dynamics in and outside the cell'),
(119478, 97084, 'pt', 'name', 'Jardim Botânico Tropical'),
(119479, 97084, 'en', 'name', 'Lisbon Tropical Botanical Garden'),
(119480, 97085, 'fr', 'name', 'Gouvernement de la RƩpublique franƧaise'),
(119481, 97085, 'en', 'name', 'Government of France'),
(119482, 97086, 'en', 'name', 'Cooper Hewitt, Smithsonian Design Museum'),
(119483, 97087, 'en', 'name', 'Kogi State Polytechnic'),
(119484, 97088, 'en', 'name', 'Centre for Advanced Material Application of the Slovak Academy of Sciences'),
(119485, 97088, 'sk', 'name', 'Centrum pre využitie pokročilých materiĆ”lov Slovenskej akadĆ©mie vied'),
(119486, 97089, 'en', 'name', 'Prestige Institute of Management and Research, Bhopal'),
(119487, 97090, 'en', 'name', 'Chinese People''s Liberation Army'),
(119488, 97090, 'zh', 'name', '中国人民解放军'),
(119489, 97091, 'en', 'name', 'NFDI for Catalysis-Related Sciences'),
(119490, 97091, 'de', 'name', 'NFDI für Wissenschaften mit Bezug zur Katalyse'),
(119491, 97091, 'no_lang_code', 'name', 'NFDI4Cat'),
(119492, 97092, 'en', 'name', 'Dalian Jiaotong University'),
(119493, 97092, 'zh', 'name', 'å¤§čæžäŗ¤é€šå¤§å­¦'),
(119494, 97093, 'en', 'name', 'MILA University'),
(119495, 97094, 'en', 'name', 'Akwa Ibom State Polytechnic'),
(119496, 97095, 'en', 'name', 'Chengdu Jincheng College'),
(119497, 97095, 'zh', 'name', 'ęˆéƒ½é”¦åŸŽå­¦é™¢'),
(119498, 97096, 'en', 'name', 'Qingdao City University'),
(119499, 97096, 'zh', 'name', 'é’å²›åŸŽåø‚å­¦é™¢'),
(119500, 97097, 'en', 'name', 'Federation for the Study and Evaluation of Intra-Uterine Therapeutics'),
(119501, 97097, 'fr', 'name', 'FƩdƩration pour la recherche en explorations thƩrapeutiques innovantes in utero'),
(119502, 97098, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Laboratori Nazionali di Legnaro'),
(119503, 97098, 'en', 'name', 'National Institute for Nuclear Physics, Legnaro National Laboratories'),
(119504, 97099, 'en', 'name', 'Mahatma Gandhi University, Nalgonda'),
(119505, 97100, 'en', 'name', 'North Bengal International University'),
(119506, 97101, 'en', 'name', 'Paris Public Health'),
(119507, 97102, 'es', 'name', 'Colegio De La Salle'),
(119508, 97103, 'pt', 'name', 'Centro de Investigação em Desporto Saúde e Desenvolvimento Humano'),
(119509, 97104, 'pt', 'name', 'Instituto de Desenvolvimento Social'),
(119510, 97105, 'en', 'name', 'Robert Bosch Hospital'),
(119511, 97105, 'de', 'name', 'Robert-Bosch-Krankenhaus'),
(119512, 97106, 'en', 'name', 'National Air and Space Museum'),
(119513, 97107, 'pt', 'name', 'Hospital São João de Deus'),
(119514, 97108, 'en', 'name', 'Cancer Research UK Scotland Institute'),
(119515, 97109, 'en', 'name', 'S P Jain School of Global Management'),
(119516, 97110, 'pt', 'name', 'LEO FarmacĆŖuticos (Portugal)'),
(119517, 97110, 'en', 'name', 'LEO Pharmaceutical'),
(119518, 97111, 'en', 'name', 'Institute of Biochemistry, Molecular Biology and Biotechnology'),
(119519, 97112, 'en', 'name', 'Woman Online University'),
(119520, 97112, 'fa', 'name', 'دانؓگاه Ų¢Ł†Ł„Ų§ŪŒŁ† زن'),
(119521, 97113, 'es', 'name', 'Universidad Ciudadana de Nuevo León'),
(119522, 97114, 'pt', 'name', 'Fundacao Escola Superior da Defensoria Publica do Estado do Rio de Janeiro'),
(119523, 97115, 'pt', 'name', 'Ordem dos Farmaceuticos'),
(119524, 97116, 'en', 'name', 'Anahuac University Network'),
(119525, 97116, 'es', 'name', 'Red de Universidades AnƔhuac'),
(119526, 97117, 'en', 'name', 'Ajeenkya DY Patil University'),
(119527, 97117, 'mr', 'name', 'ą¤…ą¤œą¤æą¤‚ą¤•ą„ą¤Æ ą¤”ą„€.वाय. ą¤Ŗą¤¾ą¤Ÿą„€ą¤² ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(119528, 97118, 'no_lang_code', 'name', 'NFDI4Energy'),
(119529, 97118, 'en', 'name', 'National Research Data Infrastructure for Interdisciplinary Energy System Research'),
(119530, 97118, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für die interdisziplinäre Energiesystemforschung'),
(119531, 97119, 'fr', 'name', 'Observatoire pour la Conservation de la MƩgafaune Marine'),
(119532, 97120, 'en', 'name', 'Bangladesh Army International University of Science and Technology'),
(119533, 97120, 'bn', 'name', 'বাংলাদেশ সেনাবাহিনী ą¦†ą¦Øą§ą¦¤ą¦°ą§ą¦œą¦¾ą¦¤ą¦æą¦• ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(119534, 97121, 'pt', 'name', 'Liga Portuguesa Contra o Cancro'),
(119535, 97122, 'pt', 'name', 'Museu de Lisboa'),
(119536, 97123, 'en', 'name', 'Fuzhou Melbourne Polytechnic'),
(119537, 97123, 'zh', 'name', 'ē¦å·žå¢Øå°”ęœ¬ē†å·„čŒäøšå­¦é™¢'),
(119538, 97124, 'pt', 'name', 'Hospital das ForƧas Armadas'),
(119539, 97125, 'en', 'name', 'Fluid Dynamics Research Institute'),
(119540, 97126, 'pt', 'name', 'Teva Portugal (Portugal)'),
(119541, 97127, 'no_lang_code', 'name', 'Leonardo (United Kingdom)'),
(119542, 97128, 'pt', 'name', 'Instituto da Construção'),
(119543, 97129, 'en', 'name', 'Czech Academy of Sciences, Institute of Geophysics'),
(119544, 97129, 'cs', 'name', 'GeofyzikÔlní ústav AV ČR'),
(119545, 97130, 'en', 'name', 'Parkinson''s Foundation'),
(119546, 97131, 'en', 'name', 'Khyber Girls Medical College'),
(119547, 97131, 'ur', 'name', 'خیبر Ų®ŁˆŲ§ŲŖŪŒŁ† طبی کالج'),
(119548, 97131, 'ps', 'name', 'ŲÆ خیبر ښځو Ų·ŲØ Ł¾ŁˆŁ‡Ł†ŚŪŒ'),
(119549, 97132, 'en', 'name', 'Czech Academy of Sciences, Institute of Art History'),
(119550, 97132, 'cs', 'name', 'ƚstav dějin uměnƭ AV ČR'),
(119551, 97133, 'pt', 'name', 'Administração Regional De Saude Do Centro'),
(119552, 97134, 'en', 'name', 'Hirshhorn Museum and Sculpture Garden'),
(119553, 97135, 'en', 'name', 'High Energy Astrophysics Science Archive Research Center'),
(119554, 97136, 'pt', 'name', 'Defensoria PĆŗblica do Rio de Janeiro'),
(119555, 97136, 'en', 'name', 'Rio de Janeiro State Public Defender''s Office'),
(119556, 97137, 'en', 'name', 'BMJ Group (United Kingdom)'),
(119557, 97138, 'pt', 'name', 'Departamento de CiĆŖncia e de Recursos Naturais'),
(119558, 97139, 'en', 'name', 'Hanoi Academy of Theater and Cinema'),
(119559, 97139, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c SĆ¢n khįŗ„u vĆ  Điện įŗ£nh HĆ  Nį»™i'),
(119560, 97140, 'pt', 'name', 'Laboratório de Polícia Científica'),
(119561, 97141, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Centro Nazionale Analisi Fotogrammi'),
(119562, 97141, 'en', 'name', 'National Institute for Nuclear Physics, National Center for Frame Analysis'),
(119563, 97142, 'en', 'name', 'Arthur M. Sackler Gallery'),
(119564, 97143, 'en', 'name', 'Montes Claros State University'),
(119565, 97143, 'es', 'name', 'Universidad Estatal de Montes Claros'),
(119566, 97143, 'pt', 'name', 'Universidade Estadual de Montes Claros'),
(119567, 97144, 'en', 'name', 'PUNCH4NFDI'),
(119568, 97145, 'no_lang_code', 'name', 'JURA Bio, Inc. (United States)'),
(119569, 97146, 'pt', 'name', 'Centro de Geofƭsica de Ɖvora'),
(119570, 97147, 'no_lang_code', 'name', 'Leonardo (Italy)'),
(119571, 97148, 'fr', 'name', 'Centre d''Investigation Clinique Robert DebrƩ'),
(119572, 97149, 'de', 'name', 'Dr. Margarete Fischer-Bosch Institut für Klinische Pharmakologie'),
(119573, 97149, 'en', 'name', 'Dr. Margarete Fischer-Bosch-Institute of Clinical Pharmacology'),
(119574, 97150, 'pt', 'name', 'Ordem dos Economistas'),
(119575, 97151, 'de', 'name', 'Deutscher Verband für Landschaftspflege'),
(119576, 97151, 'en', 'name', 'German Association for Landscape Conservation'),
(119577, 97152, 'pt', 'name', 'Estado-Maior do ExƩrcito'),
(119578, 97153, 'en', 'name', 'Coibita Island'),
(119579, 97153, 'es', 'name', 'Isla Coibita, RancherĆ­a'),
(119580, 97154, 'en', 'name', 'Punta Culebra Nature Center'),
(119581, 97155, 'de', 'name', 'Senatsverwaltung für Mobilität, Verkehr, Klimaschutz und Umwelt'),
(119582, 97156, 'en', 'name', 'Michoud Assembly Facility'),
(119583, 97157, 'pt', 'name', 'Instituto Superior de CiĆŖncias Educativas do Douro'),
(119584, 97158, 'en', 'name', 'Institute of Oceanography'),
(119585, 97159, 'es', 'name', 'Bocas del Toro Estación de Investigación'),
(119586, 97159, 'en', 'name', 'Bocas del Toro Research Station'),
(119587, 97160, 'es', 'name', 'Universidad AnƔhuac Xalapa'),
(119588, 97161, 'fr', 'name', 'Gendarmerie Nationale'),
(119589, 97161, 'en', 'name', 'National Gendarmerie'),
(119590, 97162, 'en', 'name', 'Mental Illness Research, Education and Clinical Centers'),
(119591, 97163, 'pt', 'name', 'Kimera Biotecnologia (Brazil)'),
(119592, 97164, 'fr', 'name', 'AssemblƩe Nationale de France'),
(119593, 97165, 'en', 'name', 'Islamic Azad University, East Tehran Branch'),
(119594, 97165, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران ؓرق'),
(119595, 97166, 'pt', 'name', 'Faculdade Metropolitana de Manaus'),
(119596, 97166, 'en', 'name', 'Metropolitan College of Manaus'),
(119597, 97167, 'en', 'name', 'Concordia University'),
(119598, 97168, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Cosenza'),
(119599, 97169, 'fr', 'name', 'Direction du dƩveloppement et de la coopƩration DDC'),
(119600, 97169, 'de', 'name', 'Direktion für Entwicklung und Zusammenarbeit DEZA'),
(119601, 97169, 'it', 'name', 'Direzione dello sviluppo e della cooperazione DSC'),
(119602, 97169, 'en', 'name', 'Swiss Agency for Development and Cooperation'),
(119603, 97170, 'en', 'name', 'Henan Academy of Sciences'),
(119604, 97170, 'zh', 'name', 'ę²³å—ēœē§‘å­¦é™¢'),
(119605, 97171, 'pt', 'name', 'Instituto para a Sustentabilidade e Inovação em Estruturas de Engenharia'),
(119606, 97172, 'en', 'name', 'Islamic Azad University, West Tehran Branch'),
(119607, 97172, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران ŲŗŲ±ŲØ'),
(119608, 97173, 'en', 'name', 'Almedina Group'),
(119609, 97173, 'pt', 'name', 'Grupo Almedina'),
(119610, 97174, 'pt', 'name', 'Instituto da SeguranƧa Social'),
(119611, 97175, 'en', 'name', 'WE-SPARK Health Institute'),
(119612, 97176, 'en', 'name', 'S P Jain School of Global Management'),
(119613, 97177, 'en', 'name', 'National Center for Theoretical Sciences, Mathematics Division'),
(119614, 97177, 'zh', 'name', 'åœ‹å®¶ē†č«–ē§‘å­øē ”ē©¶äø­åæƒ 數學組'),
(119615, 97178, 'fr', 'name', 'Interactions Arbres-Microorganismes'),
(119616, 97179, 'en', 'name', 'Obafemi Awolowo University'),
(119617, 97179, 'yo', 'name', 'YunifĆ”sĆ­tƬ ỌbĆ”fẹ́mi Awólį»Ģwį»Ģ€'),
(119618, 97180, 'en', 'name', 'Institute for Diagnostic Imaging Research'),
(119619, 97181, 'en', 'name', 'National Center for Theoretical Sciences, Physics Division'),
(119620, 97181, 'zh', 'name', 'åœ‹å®¶ē†č«–ē§‘å­øē ”ē©¶äø­åæƒ 物理組'),
(119621, 97182, 'en', 'name', 'Bader College'),
(119622, 97183, 'pt', 'name', 'Franciscanas MissionƔrias de Nossa Senhora'),
(119623, 97184, 'fr', 'name', 'Centre d''Investigation Clinique BiothƩrapies Necker'),
(119624, 97185, 'en', 'name', 'Woodrow Wilson International Center for Scholars'),
(119625, 97186, 'pt', 'name', 'Instituto de Investigação em Design Media e Cultura'),
(119626, 97187, 'pt', 'name', 'Instituto de Investigação e Formação Avançada em Ciências e Tecnologias da Saúde'),
(119627, 97188, 'es', 'name', 'Centro de Vuelo Espacial Goddard'),
(119628, 97188, 'en', 'name', 'Goddard Space Flight Center'),
(119629, 97189, 'en', 'name', 'Smithsonian Institution'),
(119630, 97190, 'en', 'name', 'PAU Excellencia Global Academy Foundation, Inc.'),
(119631, 97191, 'en', 'name', 'Liaoning Academy of Materials'),
(119632, 97192, 'pt', 'name', 'Fundação da Juventude'),
(119633, 97193, 'en', 'name', 'Wing Luke Museum of the Asian Pacific American Experience'),
(119634, 97194, 'en', 'name', 'Ahl Al Bayt University'),
(119635, 97194, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أهل Ų§Ł„ŲØŁŠŲŖ'),
(119636, 97194, 'fa', 'name', 'دانؓگاه Ų§Ł‡Ł„Ų§Ł„ŲØŪŒŲŖ'),
(119637, 97195, 'en', 'name', 'Beijing Institute of Aeronautical Materials'),
(119638, 97195, 'zh', 'name', 'äø­å›½čˆŖå‘åŒ—äŗ¬čˆŖē©ŗęę–™ē ”ē©¶é™¢'),
(119639, 97196, 'en', 'name', 'Proteus Ocean Group (United States)'),
(119640, 97197, 'en', 'name', 'Upper Midwest Water Science Center'),
(119641, 97198, 'en', 'name', 'Sri Siddhartha Academy of Higher Education'),
(119642, 97199, 'de', 'name', 'NFDI-MatWerk'),
(119643, 97199, 'en', 'name', 'National Research Data Infrastructure for Materials Science & Engineering'),
(119644, 97200, 'en', 'name', 'Institute of Integrative Medicine'),
(119645, 97200, 'pt', 'name', 'Instituto Medicina Integrativa (Portugal)'),
(119646, 97201, 'pt', 'name', 'Direccao-Geral de Agricultura e Desenvolvimento Rural'),
(119647, 97202, 'pt', 'name', 'Polƭcia JudiciƔria'),
(119648, 97203, 'en', 'name', 'TOO Solid Research Group (Kazakhstan)'),
(119649, 97204, 'pt', 'name', 'Agrupamento de Escolas Carlos Amarante'),
(119650, 97204, 'en', 'name', 'Carlos Amarante Group of Schools'),
(119651, 97205, 'fr', 'name', 'D2iA - Dynamiques, Interactions et InterculturalitƩ en Asie'),
(119652, 97206, 'fr', 'name', 'Laboratoire de Changement Social et Politique'),
(119653, 97207, 'en', 'name', 'Smithsonian Institution Archives'),
(119654, 97208, 'en', 'name', 'British Medical Association'),
(119655, 97209, 'no_lang_code', 'name', 'L3Harris (United States)'),
(119656, 97210, 'en', 'name', 'Museum of the Rockies'),
(119657, 97211, 'en', 'name', 'Petrified Forest National Park'),
(119658, 97212, 'es', 'name', 'Instituto de Investigación de Enfermedades Raras'),
(119659, 97212, 'en', 'name', 'Research Institute for Rare Diseases'),
(119660, 97213, 'en', 'name', 'Nanjing Normal University Taizhou College'),
(119661, 97213, 'zh', 'name', 'å—äŗ¬åøˆčŒƒå¤§å­¦ę³°å·žå­¦é™¢'),
(119662, 97214, 'en', 'name', 'Banking Academy of Vietnam'),
(119663, 97214, 'vi', 'name', 'Hį»c viện NgĆ¢n hĆ ng'),
(119664, 97215, 'pt', 'name', 'CTT (Portugal)'),
(119665, 97216, 'en', 'name', 'NFDI4Earth'),
(119666, 97217, 'en', 'name', 'National Museum of Natural History'),
(119667, 97218, 'en', 'name', 'Cat Clinic'),
(119668, 97218, 'pt', 'name', 'ClĆ­nica dos Gatos (Portugal)'),
(119669, 97219, 'en', 'name', 'IFOAM – Organics International'),
(119670, 97220, 'en', 'name', 'NFC Institute of Engineering and Technology'),
(119671, 97220, 'ur', 'name', 'Ų§ŪŒŁ† ایف سی Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ آف Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(119672, 97221, 'en', 'name', 'National Zoological Park'),
(119673, 97222, 'en', 'name', 'Shandong University of Arts'),
(119674, 97222, 'zh', 'name', 'å±±äøœč‰ŗęœÆå­¦é™¢'),
(119675, 97223, 'pt', 'name', 'Instituto Superior de Gestão'),
(119676, 97224, 'en', 'name', 'UK Reproducibility Network'),
(119677, 97225, 'en', 'name', 'Gambella University'),
(119678, 97226, 'en', 'name', 'Hebei Provincial Communications Planning, Design and Research Institute Co., Ltd. (China)'),
(119679, 97226, 'zh', 'name', 'ę²³åŒ—ēœäŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(119680, 97227, 'no_lang_code', 'name', 'Clarivate (United States)'),
(119681, 97228, 'en', 'name', 'Osaka Women''s and Children''s Hospital'),
(119682, 97228, 'ja', 'name', 'å¤§é˜ŖęÆå­åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(119683, 97229, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Laboratorio di Tecniche Nucleari per l''Ambiente e i Beni Culturali'),
(119684, 97229, 'en', 'name', 'National Institute for Nuclear Physics, Laboratory of Nuclear Techniques for Environment and Cultural Heritage'),
(119685, 97230, 'es', 'name', 'Instituto Tecnológico de Zacatepec'),
(119686, 97231, 'en', 'name', 'BERD@NFDI'),
(119687, 97232, 'pt', 'name', 'Instituto de Nanoestruturas Nanomodelação e Nanofabricação'),
(119688, 97233, 'en', 'name', 'ColibrĆ­ Gorriazul Research Center'),
(119689, 97234, 'de', 'name', 'DAPHNE4NFDI'),
(119690, 97235, 'en', 'name', 'Freer Gallery of Art'),
(119691, 97236, 'en', 'name', 'Agronomy and Environment Laboratory'),
(119692, 97236, 'fr', 'name', 'Laboratoire Agronomie et Environnement'),
(119693, 97237, 'pt', 'name', 'Instituto da Qualidade em SaĆŗde'),
(119694, 97238, 'en', 'name', 'Guangdong Technology College'),
(119695, 97238, 'zh', 'name', 'å¹æäøœē†å·„å­¦é™¢'),
(119696, 97239, 'no_lang_code', 'name', 'NFDIxCS'),
(119697, 97239, 'en', 'name', 'National Research Data Infrastructure for and with Computer Science'),
(119698, 97239, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für und mit Computer Science'),
(119699, 97240, 'en', 'name', 'TU Dortmund University'),
(119700, 97240, 'de', 'name', 'Technische UniversitƤt Dortmund'),
(119701, 97241, 'no_lang_code', 'name', 'Hanwha Group (South Korea)'),
(119702, 97241, 'ko', 'name', 'ķ•œķ™”ź·øė£¹'),
(119703, 97242, 'en', 'name', 'NFDI4Chem'),
(119704, 97243, 'en', 'name', 'Czech Academy of Sciences, Institute of Contemporary History'),
(119705, 97243, 'cs', 'name', 'Ústav pro soudobĆ© dějiny AV ČR'),
(119706, 97244, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Laboratori Nazionali di Frascati'),
(119707, 97244, 'en', 'name', 'National Institute for Nuclear Physics, National Laboratory of Frascati'),
(119708, 97245, 'pt', 'name', 'Instituto Nacional de Engenharia BiomƩdica'),
(119709, 97246, 'en', 'name', 'Zhejiang Institute of Subtropical Crops'),
(119710, 97246, 'zh', 'name', 'ęµ™ę±Ÿēœäŗšēƒ­åø¦ä½œē‰©ē ”ē©¶ę‰€'),
(119711, 97247, 'en', 'name', 'Osun State Polytechnic, Iree'),
(119712, 97248, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Laboratori Nazionali del Sud'),
(119713, 97248, 'no_lang_code', 'name', 'National Institute for Nuclear Physics, Laboratori Nazionali del Sud'),
(119714, 97249, 'pt', 'name', 'Laboratório de Inteligência Artificial e Apoio à Decisão'),
(119715, 97250, 'pt', 'name', 'INESC TEC'),
(119716, 97251, 'no_lang_code', 'name', 'Rinnoco Ltd (Cyprus)'),
(119717, 97252, 'no_lang_code', 'name', 'Hanwha Techwin (South Korea)'),
(119718, 97252, 'ko', 'name', 'ķ•œķ™”ķ…Œķ¬ģœˆ'),
(119719, 97253, 'pt', 'name', 'Tranquilidade (Portugal)'),
(119720, 97253, 'en', 'name', 'Tranquility'),
(119721, 97254, 'no_lang_code', 'name', 'Hanwha Solutions (South Korea)'),
(119722, 97254, 'ko', 'name', 'ķ•œķ™”ģ†”ė£Øģ…˜'),
(119723, 97255, 'pt', 'name', 'ISLA - Instituto Politécnico de Gestão e Tecnologia'),
(119724, 97255, 'en', 'name', 'ISLA - Polytechnic Institute of Management and Technology'),
(119725, 97256, 'en', 'name', 'University of Texas Institute for Geophysics'),
(119726, 97257, 'en', 'name', 'National Institute of Social Development'),
(119727, 97257, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®šą®®ąÆ‚ą®• ą®…ą®Ŗą®æą®µą®æą®°ąÆą®¤ąÆą®¤ą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(119728, 97257, 'si', 'name', 'ą¶¢ą·ą¶­ą·’ą¶š ą·ƒą¶øą·ą¶¢ ą·ƒą¶‚ą·€ą¶»ą·Šą¶°ą¶± ආයතනය'),
(119729, 97258, 'pt', 'name', 'Nephrocare Portugal SA (Portugal)'),
(119730, 97259, 'en', 'name', 'Institute of Adult Education'),
(119731, 97259, 'sw', 'name', 'Taasisi ya Elimu ya Watu Wazima'),
(119732, 97260, 'en', 'name', 'University Hospital MĆŗtua de Terrassa'),
(119733, 97261, 'fr', 'name', 'Institut d''Histoire du Droit'),
(119734, 97261, 'en', 'name', 'Institute of the History of Law'),
(119735, 97262, 'en', 'name', 'The Engineering & Technical College of Chengdu University of Technology'),
(119736, 97262, 'zh', 'name', 'ęˆéƒ½ē†å·„å¤§å­¦å·„ēØ‹ęŠ€ęœÆå­¦é™¢'),
(119737, 97263, 'en', 'name', 'National Center for Theoretical Sciences'),
(119738, 97263, 'zh', 'name', 'åœ‹å®¶ē†č«–ē§‘å­øē ”ē©¶äø­åæƒ'),
(119739, 97264, 'pt', 'name', 'Instituto de Ciência e Inovação em Engenharia Mecânica e Engenharia Industrial'),
(119740, 97265, 'en', 'name', 'Lamarr Institute for Machine Learning and Artificial Intelligence'),
(119741, 97265, 'de', 'name', 'Lamarr-Institut für Maschinelles Lernen und Künstliche Intelligenz'),
(119742, 97266, 'pt', 'name', 'Instituto do Mar'),
(119743, 97267, 'en', 'name', 'Bosch Health Campus'),
(119744, 97267, 'no_lang_code', 'name', 'Bosch Health Campus GmbH'),
(119745, 97268, 'en', 'name', 'Base4NFDI'),
(119746, 97268, 'de', 'name', 'Basisdienste für die NFDI'),
(119747, 97269, 'fr', 'name', 'Laboratoire de Neurobiologie Orofaciale'),
(119748, 97270, 'en', 'name', 'Public Authority for Applied Education and Training'),
(119749, 97270, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠ ŁˆŲ§Ł„ŲŖŲÆŲ±ŁŠŲØ'),
(119750, 97271, 'ru', 'name', '46 Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны Российской ФеГерации'),
(119751, 97271, 'en', 'name', '46th Central Research Institute of the Ministry of Defense of the Russian Federation'),
(119752, 97272, 'no_lang_code', 'name', 'HÜBNER GmbH & Co. KG'),
(119753, 97272, 'en', 'name', 'HÜBNER Group (Germany)'),
(119754, 97272, 'de', 'name', 'Hübner-Gruppe'),
(119755, 97273, 'en', 'name', 'Maria Luigia Hospital'),
(119756, 97273, 'it', 'name', 'Ospedale Maria Luigia'),
(119757, 97274, 'no_lang_code', 'name', 'Istituto Nazionale di Fisica Nucleare, Galileo Galilei Institute for Theoretical Physics'),
(119758, 97275, 'it', 'name', 'Istituto Teologico Leoniano di Anagni'),
(119759, 97276, 'pt', 'name', 'Tribunal Constitucional'),
(119760, 97277, 'en', 'name', 'University Center of Aflou'),
(119761, 97278, 'no_lang_code', 'name', 'CH2M (United States)'),
(119762, 97279, 'en', 'name', 'World Forest ID'),
(119763, 97280, 'en', 'name', 'Enam Medical College & Hospital'),
(119764, 97280, 'bn', 'name', 'ą¦ą¦Øą¦¾ą¦® মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ও হাসপাতাল'),
(119765, 97281, 'en', 'name', 'Astronomical Institute of the Slovak Academy of Sciences'),
(119766, 97281, 'sk', 'name', 'Astronomický ústav Slovenskej akadémie vied'),
(119767, 97282, 'en', 'name', 'AESE Business School'),
(119768, 97283, 'pt', 'name', 'Associação Científica Proteomass'),
(119769, 97283, 'en', 'name', 'Proteomass Scientific Society'),
(119770, 97284, 'fr', 'name', 'Institut Covid-19 Ad Memoriam'),
(119771, 97285, 'de', 'name', 'Deutsche Physikalische Gesellschaft e.V.'),
(119772, 97285, 'en', 'name', 'German Physical Society'),
(119773, 97286, 'fr', 'name', 'Centre d''Investigation Clinique Bichat'),
(119774, 97287, 'en', 'name', 'S P Jain School of Global Management'),
(119775, 97288, 'pt', 'name', 'Instituto PolitƩcnico Jean Piaget do Norte'),
(119776, 97289, 'en', 'name', 'Smithsonian Asian Pacific American Center'),
(119777, 97290, 'en', 'name', 'VA Sierra Pacific Network'),
(119778, 97291, 'fr', 'name', 'NF-kappaB, DiffƩrenciation et Cancer'),
(119779, 97292, 'pt', 'name', 'CoLAB +ATLANTIC'),
(119780, 97293, 'fr', 'name', 'Groupe Hospitalo-Universitaire Paris Nord'),
(119781, 97294, 'pt', 'name', 'Laboratório da Paisagem'),
(119782, 97295, 'pt', 'name', 'GlaxoSmithKline Produtos FarmacĆŖuticos Lda (Portugal)'),
(119783, 97296, 'no_lang_code', 'name', 'NFDI4Objects'),
(119784, 97297, 'fr', 'name', 'Centre de Recherches Psychanalyse, MƩdecine et SociƩtƩ'),
(119785, 97298, 'it', 'name', 'Centro Siciliano di Fisica Nucleare e di Struttura della Materia'),
(119786, 97298, 'en', 'name', 'Sicilian Center of Nuclear Physics and Physics of Matter'),
(119787, 97299, 'fr', 'name', 'Centre de recherches en Philosophie, Sociologie, SƩmiologie et Politique'),
(119788, 97300, 'en', 'name', 'Global Research Institute of Paris'),
(119789, 97301, 'es', 'name', 'Tecnológico Universitario del Valle de Chalco'),
(119790, 97302, 'en', 'name', 'Museum Conservation Institute'),
(119791, 97303, 'en', 'name', 'All Saints University School of Medicine'),
(119792, 97304, 'en', 'name', 'National University «Odesa Maritime Academy»'),
(119793, 97304, 'uk', 'name', 'ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢ Ā«ŠžŠ”Š•Š”Š¬ŠšŠ ŠœŠžŠ Š”Š¬ŠšŠ ŠŠšŠŠ”Š•ŠœŠ†ŠÆĀ»'),
(119794, 97305, 'en', 'name', 'Brazilian School of Economics and Finance'),
(119795, 97305, 'pt', 'name', 'Escola Brasileira de Economia e FinanƧas'),
(119796, 97306, 'pt', 'name', 'Centro de Investigação em Gestão');
INSERT INTO `ror_settings` VALUES
(119797, 97307, 'id', 'name', 'Sekolah Tinggi Ilmu Kesehatan Kendal'),
(119798, 97308, 'nl', 'name', 'HAS green academy'),
(119799, 97308, 'en', 'name', 'HAS green academy'),
(119800, 97309, 'en', 'name', 'Czech Academy of Sciences, Institute of Analytical Chemistry'),
(119801, 97309, 'cs', 'name', 'Ústav analytické chemie AV ČR'),
(119802, 97310, 'en', 'name', 'NOAA National Systematics Laboratory'),
(119803, 97311, 'en', 'name', 'IFP School'),
(119804, 97311, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure du PĆ©trole et des Moteurs'),
(119805, 97312, 'en', 'name', 'National University of Malaysia'),
(119806, 97312, 'ms', 'name', 'Universiti Kebangsaan Malaysia'),
(119807, 97312, 'zh', 'name', 'é©¬ę„č„æäŗšå›½ę°‘å¤§å­¦'),
(119808, 97313, 'en', 'name', 'Fortuna Field Station'),
(119809, 97314, 'pt', 'name', 'Assembleia da RepĆŗblica'),
(119810, 97315, 'en', 'name', 'Gran Sasso Science Institute'),
(119811, 97316, 'pt', 'name', 'Centro de Informação de Biotecnologia'),
(119812, 97317, 'en', 'name', 'Raffles University'),
(119813, 97318, 'en', 'name', 'Yanching Institute of Technology'),
(119814, 97318, 'zh', 'name', '燕京理巄学院'),
(119815, 97319, 'no_lang_code', 'name', 'NFDI4Immuno'),
(119816, 97319, 'en', 'name', 'National Research Data Infrastructure for Immunology'),
(119817, 97319, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für Immunologie'),
(119818, 97320, 'en', 'name', 'IB Agency for Economic Dynamization'),
(119819, 97320, 'pt', 'name', 'InvestBraga Agência para a Dinamização Económica EM'),
(119820, 97321, 'en', 'name', 'Hartford Hospital'),
(119821, 97322, 'en', 'name', 'Melbourne Polytechnic'),
(119822, 97323, 'en', 'name', 'People''s Liberation Army Air Force'),
(119823, 97323, 'zh', 'name', '中国人民解放军空军'),
(119824, 97324, 'en', 'name', 'University of Milano-Bicocca'),
(119825, 97324, 'it', 'name', 'UniversitĆ  degli Studi di Milano-Bicocca'),
(119826, 97325, 'no_lang_code', 'name', 'Selex ES (United Kingdom)'),
(119827, 97326, 'fr', 'name', 'Trajectoires dƩveloppementales & psychiatrie'),
(119828, 97327, 'en', 'name', 'Federal Polytechnic, Nasarawa'),
(119829, 97328, 'de', 'name', 'Bundesverband der Recherche- und Informationsstellen Antisemitismus'),
(119830, 97329, 'pt', 'name', 'Universidade Lusƭada - Centro UniversitƔrio Lusƭada - Norte (campus do Porto)'),
(119831, 97330, 'en', 'name', 'Weizenbaum Institute'),
(119832, 97330, 'de', 'name', 'Weizenbaum-Institut'),
(119833, 97331, 'en', 'name', 'European Federation for Services to Individuals'),
(119834, 97332, 'fr', 'name', 'Centre d''Investigation Clinique MĆØre-Enfant Necker Cochin Paris Centre'),
(119835, 97333, 'en', 'name', 'Kazakh Leading Academy of Architecture and Civil Engineering'),
(119836, 97333, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠ°Ń Š³Š¾Š»Š¾Š²Š½Š°Ń Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(119837, 97333, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› бас ŃÓ™ŃƒŠ»ŠµŃ‚-құрылыс Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(119838, 97334, 'pt', 'name', 'Unidade Local de SaĆŗde da Guarda EPE'),
(119839, 97335, 'en', 'name', 'Centre of materials and civil engineering for sustainability'),
(119840, 97335, 'pt', 'name', 'Centro de Materiais e Tecnologias Construtivas'),
(119841, 97336, 'en', 'name', 'Hebei Petroleum University of Technology'),
(119842, 97336, 'zh', 'name', 'ę²³åŒ—ēŸ³ę²¹čŒäøšęŠ€ęœÆå¤§å­¦'),
(119843, 97337, 'en', 'name', 'National Fund for Health Insurance'),
(119844, 97337, 'fr', 'name', 'l''Assurance Maladie'),
(119845, 97338, 'pt', 'name', 'CADIn'),
(119846, 97339, 'en', 'name', 'Gamboa Laboratories'),
(119847, 97339, 'es', 'name', 'Laboratorios de Gamboa'),
(119848, 97340, 'en', 'name', 'Dianchi College'),
(119849, 97340, 'zh', 'name', '滇池學院'),
(119850, 97341, 'es', 'name', 'Instituto Tecnológico de ZitÔcuaro'),
(119851, 97342, 'fr', 'name', 'Usages du numƩrique pour le dƩveloppement durable'),
(119852, 97343, 'en', 'name', 'Archives of American Art'),
(119853, 97344, 'en', 'name', 'Laboratory of Mechanics Physics of Materials'),
(119854, 97345, 'en', 'name', 'National Enterprise for NanoScience and NanoTechnology'),
(119855, 97346, 'en', 'name', 'National Museum of the American Indian'),
(119856, 97347, 'en', 'name', 'Institute for Computing in Research'),
(119857, 97348, 'pt', 'name', 'Instituto de Engenheiros Eletricistas e EletrƓnicos'),
(119858, 97349, 'id', 'name', 'Universitas Islam Negeri Profesor Kiai Haji Saifuddin Zuhri Purwokerto'),
(119859, 97350, 'pt', 'name', 'Blanc Hospital'),
(119860, 97351, 'no_lang_code', 'name', 'Amir-Al-Momenin Hospital'),
(119861, 97351, 'fa', 'name', 'مرکز Ų¢Ł…ŁˆŲ²Ų“ŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų³ŁˆŲ§Ł†Ų­ سوختگی و ŲŖŲ±Ł…ŪŒŁ…ŪŒ Ų§Ł…ŪŒŲ±Ų§Ł„Ł…ŁˆŁ…Ł†ŪŒŁ†'),
(119862, 97352, 'fr', 'name', 'Centre de Support en SantƩ Internationale'),
(119863, 97353, 'en', 'name', 'DataPLANT'),
(119864, 97353, 'de', 'name', 'Daten in Pflanzen-Grundlagenforschung'),
(119865, 97354, 'en', 'name', 'Zhejiang Gongshang University'),
(119866, 97354, 'zh', 'name', 'ęµ™ę±Ÿå·„å•†å¤§å­¦'),
(119867, 97355, 'sw', 'name', 'Chuo Kikuu Cha Kikatoliki cha Mwenge'),
(119868, 97355, 'en', 'name', 'Mwenge Catholic University'),
(119869, 97356, 'en', 'name', 'National Parkinson''s Foundation'),
(119870, 97357, 'no_lang_code', 'name', 'L-3 Communications (United States)'),
(119871, 97358, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Laboratori Acceleratori e SuperconduttivitĆ  Applicata'),
(119872, 97359, 'es', 'name', 'Universidad Tecnológica del Suroeste de Guanajuato'),
(119873, 97360, 'en', 'name', 'Southeast University Chengxian College'),
(119874, 97360, 'zh', 'name', 'äøœå—å¤§å­¦ęˆč“¤å­¦é™¢'),
(119875, 97361, 'sk', 'name', 'FyzikÔlny ústav Slovenskej akadémie vied'),
(119876, 97361, 'en', 'name', 'Institute of Physics of the Slovak Academy of Sciences'),
(119877, 97362, 'en', 'name', 'Iron and Steel Institute of Z. I. Nekrasov National Academy of Sciences of Ukraine'),
(119878, 97362, 'uk', 'name', 'Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ чорної Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³Ń–Ń— ім. Š—.І. ŠŠµŠŗŃ€Š°ŃŠ¾Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(119879, 97363, 'en', 'name', 'Mineralogical Society of the United Kingdom and Ireland'),
(119880, 97364, 'en', 'name', 'Southwest Jiaotong University Hope College'),
(119881, 97364, 'zh', 'name', 'č„æå—äŗ¤é€šå¤§å­¦åøŒęœ›å­¦é™¢'),
(119882, 97365, 'pt', 'name', 'Centro de Investigação de Políticas do Ensino Superior'),
(119883, 97366, 'en', 'name', 'Theological University Utrecht'),
(119884, 97366, 'nl', 'name', 'Theologische Universiteit Utrecht'),
(119885, 97367, 'en', 'name', 'Smithsonian Marine Station'),
(119886, 97368, 'fr', 'name', 'Centre d’Études et de Recherches Interdisciplinaires en Lettres, Arts et CinĆ©ma'),
(119887, 97369, 'en', 'name', 'Bangladesh Army University of Science and Technology'),
(119888, 97369, 'bn', 'name', 'বাংলাদেশ ą¦†ą¦°ą§ą¦®ą¦æ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(119889, 97370, 'pt', 'name', 'Sociedade de História Natural'),
(119890, 97371, 'no_lang_code', 'name', 'Istituto Nazionale di Fisica Nucleare, Trento Institute for Fundamental Physics And Applications'),
(119891, 97372, 'en', 'name', 'NFDI consortium for Personal Health Data'),
(119892, 97372, 'no_lang_code', 'name', 'NFDI4Health'),
(119893, 97372, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für personenbezogene Gesundheitsdaten'),
(119894, 97373, 'en', 'name', 'National Portrait Gallery'),
(119895, 97374, 'en', 'name', 'Biomolecular Engineering Laboratory'),
(119896, 97374, 'fr', 'name', 'Laboratoire d''IngƩnierie des BiomolƩcules'),
(119897, 97375, 'pt', 'name', 'Instituto PortuguĆŖs de Reumatologia'),
(119898, 97376, 'en', 'name', 'Czech Academy of Sciences, Institute of Ethnology'),
(119899, 97376, 'cs', 'name', 'Etnologický ústav AV ČR'),
(119900, 97377, 'en', 'name', 'ForestGEO'),
(119901, 97378, 'en', 'name', 'Abia State Polytechnic'),
(119902, 97379, 'en', 'name', 'Slovak Astronomical Society at the Slovak Academy of Sciences'),
(119903, 97379, 'sk', 'name', 'SlovenskĆ” astronomickĆ” spoločnosÅ„ pri Slovenskej akadĆ©mii vied'),
(119904, 97380, 'en', 'name', 'Dalian Institute of Science and Technology'),
(119905, 97380, 'zh', 'name', 'å¤§čæžē§‘ęŠ€å­¦é™¢'),
(119906, 97381, 'en', 'name', 'Kateb University'),
(119907, 97381, 'fa', 'name', 'دانؓگاه کاتب'),
(119908, 97382, 'en', 'name', 'S P Jain School of Global Management'),
(119909, 97383, 'fr', 'name', 'Centre d''Investigation Clinique HƓpital EuropƩen Georges Pompidou'),
(119910, 97384, 'fr', 'name', 'Laboratoire MathƩmatiques, Image et Applications'),
(119911, 97385, 'en', 'name', 'University of Eyvanekey'),
(119912, 97385, 'fa', 'name', 'دانؓگاه Ų§ŪŒŁˆŲ§Ł† کی'),
(119913, 97386, 'pt', 'name', 'Instituto da Vinha e do Vinho IP'),
(119914, 97387, 'es', 'name', 'CUNEF Universidad'),
(119915, 97387, 'en', 'name', 'CUNEF University'),
(119916, 97388, 'en', 'name', 'Biostatistic, Biological Data Treatment and Modelisation'),
(119917, 97388, 'fr', 'name', 'Biostatistique, traitement et modƩlisation des donnƩes biologiques'),
(119918, 97389, 'en', 'name', 'Czech Society for Biochemistry and Molecular Biology'),
(119919, 97389, 'cs', 'name', 'ČeskĆ” Společnost pro Biochemii a MolekulĆ”rnĆ­ Biologii, z. s.'),
(119920, 97390, 'en', 'name', 'Geological Materials Repository'),
(119921, 97391, 'pt', 'name', 'Cooperativa de Ensino Superior PolitƩcnico e UniversitƔrio'),
(119922, 97392, 'en', 'name', 'National Museum of American Jewish History'),
(119923, 97393, 'en', 'name', 'Bolgatanga Technical University'),
(119924, 97394, 'pt', 'name', 'Instituto Ivoti'),
(119925, 97395, 'pt', 'name', 'Grupo Lusófona (Portugal)'),
(119926, 97395, 'en', 'name', 'Lusophone Group'),
(119927, 97396, 'en', 'name', 'University of Novi Sad'),
(119928, 97396, 'sr', 'name', 'Универзитет у ŠŠ¾Š²Š¾Š¼ ДаГу'),
(119929, 97397, 'en', 'name', 'DePauw University'),
(119930, 97398, 'en', 'name', 'Medical University of Lodz'),
(119931, 97398, 'pl', 'name', 'Uniwersytet Medyczny w Łodzi'),
(119932, 97399, 'en', 'name', 'University of Lucerne'),
(119933, 97399, 'it', 'name', 'UniversitĆ  di Lucerna'),
(119934, 97399, 'de', 'name', 'UniversitƤt Luzern'),
(119935, 97399, 'fr', 'name', 'UniversitƩ de Lucerne'),
(119936, 97400, 'de', 'name', 'Hochschule für Philosophie München'),
(119937, 97400, 'en', 'name', 'Munich School of Philosophy'),
(119938, 97401, 'en', 'name', 'MidKent College'),
(119939, 97402, 'en', 'name', 'Cotton University'),
(119940, 97402, 'as', 'name', 'ą¦•ą¦Ÿą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(119941, 97403, 'en', 'name', 'Lake Tahoe Community College'),
(119942, 97404, 'en', 'name', 'Copenhagen Hospitality College'),
(119943, 97404, 'da', 'name', 'Hotel og Restaurantskolen'),
(119944, 97405, 'en', 'name', 'Harbin University of Commerce'),
(119945, 97405, 'zh', 'name', 'å“ˆå°”ę»Øå•†äøšå¤§å­¦'),
(119946, 97406, 'en', 'name', 'Le Moyne College'),
(119947, 97407, 'en', 'name', 'Trakya University'),
(119948, 97407, 'tr', 'name', 'Trakya Üniversitesi'),
(119949, 97408, 'en', 'name', 'Zhejiang Normal University'),
(119950, 97408, 'zh', 'name', 'ęµ™ę±ŸåøˆčŒƒå¤§å­¦'),
(119951, 97409, 'en', 'name', 'Medical University of Warsaw'),
(119952, 97409, 'pl', 'name', 'Warszawski Uniwersytet Medyczny'),
(119953, 97410, 'es', 'name', 'Universidad de Huelva'),
(119954, 97410, 'en', 'name', 'University of Huelva'),
(119955, 97411, 'es', 'name', 'Universidad Abat Oliba CEU'),
(119956, 97411, 'ca', 'name', 'Universitat Abat Oliba CEU'),
(119957, 97412, 'en', 'name', 'Guildford College'),
(119958, 97413, 'en', 'name', 'Tilburg University'),
(119959, 97413, 'nl', 'name', 'Universiteit van Tilburg'),
(119960, 97414, 'en', 'name', 'Gdynia Maritime University'),
(119961, 97414, 'pl', 'name', 'Uniwersytet Morski w Gdyni'),
(119962, 97415, 'en', 'name', 'Royal Veterinary College'),
(119963, 97416, 'en', 'name', 'Minzu University of China'),
(119964, 97416, 'zh', 'name', 'äø­å¤®ę°‘ę—å¤§å­¦'),
(119965, 97417, 'en', 'name', 'West Dean College of Arts and Conservation'),
(119966, 97418, 'no_lang_code', 'name', 'Xi’an Jiaotong-Liverpool University'),
(119967, 97418, 'zh', 'name', 'č„æäŗ¤åˆ©ē‰©ęµ¦å¤§å­¦'),
(119968, 97419, 'en', 'name', 'Health Research Board'),
(119969, 97420, 'en', 'name', 'Royal College of Art'),
(119970, 97420, 'cy', 'name', 'Y Coleg Celf Brenhinol'),
(119971, 97421, 'it', 'name', 'UniversitĆ  Vita-Salute San Raffaele'),
(119972, 97421, 'fr', 'name', 'UniversitƩ vie-santƩ Saint Raphaƫl'),
(119973, 97421, 'en', 'name', 'Vita-Salute San Raffaele University'),
(119974, 97422, 'en', 'name', 'Nagoya Institute of Technology'),
(119975, 97422, 'ja', 'name', 'åå¤å±‹å·„ę„­å¤§å­¦'),
(119976, 97423, 'en', 'name', 'Central University of Kerala'),
(119977, 97423, 'ml', 'name', 'ą“•ąµ‡ą“Øąµą“¦ąµą“° ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“², ą“•ąµ‡ą“°ą“³ą“‚'),
(119978, 97424, 'en', 'name', 'Fordham University'),
(119979, 97424, 'es', 'name', 'Universidad de Fordham'),
(119980, 97425, 'en', 'name', 'Pitzer College'),
(119981, 97426, 'pt', 'name', 'Instituto Federal de GoiƔs'),
(119982, 97427, 'en', 'name', 'University of Maine System'),
(119983, 97428, 'en', 'name', 'Central South University of Forestry and Technology'),
(119984, 97428, 'zh', 'name', 'äø­å—ęž—äøšē§‘ęŠ€å¤§å­¦'),
(119985, 97429, 'en', 'name', 'National Centre for Social research'),
(119986, 97430, 'no_lang_code', 'name', 'Shenyang Ligong University'),
(119987, 97431, 'en', 'name', 'State Center Community College District'),
(119988, 97432, 'en', 'name', 'Mohawk College'),
(119989, 97433, 'en', 'name', 'Cedarville University'),
(119990, 97434, 'nl', 'name', 'Hogeschool Leiden'),
(119991, 97434, 'en', 'name', 'University of Applied Sciences Leiden'),
(119992, 97435, 'en', 'name', 'University of the Aegean'),
(119993, 97435, 'fr', 'name', 'UniversitĆ© de l''ƉgĆ©e'),
(119994, 97435, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Αιγαίου'),
(119995, 97436, 'es', 'name', 'Universidad de Richmond'),
(119996, 97436, 'en', 'name', 'University of Richmond'),
(119997, 97436, 'fr', 'name', 'UniversitƩ de richmond'),
(119998, 97437, 'en', 'name', 'Civil Aviation University of China'),
(119999, 97437, 'zh', 'name', 'äø­å›½ę°‘čˆŖå¤§å­¦'),
(120000, 97438, 'en', 'name', 'Hampshire County Council'),
(120001, 97439, 'en', 'name', 'Indian Institute of Technology Bhubaneswar'),
(120002, 97439, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤­ą„ą¤µą¤Øą„‡ą¤¶ą„ą¤µą¤°'),
(120003, 97439, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®ŖąÆą®µą®©ąÆ‡ą®šąÆą®µą®°ąÆ'),
(120004, 97440, 'en', 'name', 'Moravian Silesian Research Library in Ostrava'),
(120005, 97440, 'cs', 'name', 'MoravskoslezskĆ” vědeckĆ” knihovna v Ostravě, příspěvkovĆ” organizace'),
(120006, 97441, 'en', 'name', 'University of Canberra'),
(120007, 97442, 'sw', 'name', 'Chuo Kikuu cha Strathmore'),
(120008, 97442, 'en', 'name', 'Strathmore University'),
(120009, 97443, 'en', 'name', 'Dar Al-Hekma University'),
(120010, 97443, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± Ų§Ł„Ų­ŁƒŁ…Ų©'),
(120011, 97444, 'en', 'name', 'Zhejiang Shuren University'),
(120012, 97445, 'en', 'name', 'National Center for Supercomputing Applications'),
(120013, 97446, 'en', 'name', 'New College of Florida'),
(120014, 97447, 'en', 'name', 'Switch'),
(120015, 97448, 'en', 'name', 'Ningde Normal University'),
(120016, 97448, 'zh', 'name', 'å®å¾·åøˆčŒƒå­¦é™¢'),
(120017, 97449, 'en', 'name', 'National Library of Technology'),
(120018, 97449, 'cs', 'name', 'NƔrodnƭ TechnickƔ Knihovna'),
(120019, 97450, 'en', 'name', 'Techno India University'),
(120020, 97450, 'bn', 'name', 'ą¦Ÿą§‡ą¦•ą¦Øą§‹ ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(120021, 97451, 'en', 'name', 'Chengdu University'),
(120022, 97452, 'en', 'name', 'Kırıkkale University'),
(120023, 97452, 'tr', 'name', 'Kırıkkale Üniversitesi'),
(120024, 97453, 'en', 'name', 'Wuhan Technology and Business University'),
(120025, 97454, 'en', 'name', 'National Library of Greece'),
(120026, 97454, 'el', 'name', 'Εθνική βιβλιοθήκη της ΕλλάΓος'),
(120027, 97455, 'en', 'name', 'University of Lagos'),
(120028, 97455, 'yo', 'name', 'YunifÔsítì ìlú Èkó'),
(120029, 97456, 'cy', 'name', 'Prifysgol Sussex'),
(120030, 97456, 'en', 'name', 'University of Sussex'),
(120031, 97457, 'en', 'name', 'Kafkas University'),
(120032, 97457, 'tr', 'name', 'Kafkas Üniversitesi'),
(120033, 97458, 'en', 'name', 'Zaragoza Logistics Center'),
(120034, 97459, 'en', 'name', 'Harbin Institute of Technology'),
(120035, 97459, 'zh', 'name', 'å“ˆå°”ę»Øå·„äøšå¤§å­¦'),
(120036, 97460, 'en', 'name', 'Jahangirnagar University'),
(120037, 97460, 'bn', 'name', 'ą¦œą¦¾ą¦¹ą¦¾ą¦™ą§ą¦—ą§€ą¦°ą¦Øą¦—ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(120038, 97461, 'en', 'name', 'Ocean University of China'),
(120039, 97461, 'zh', 'name', '中国海擋大学'),
(120040, 97462, 'en', 'name', 'Mody University of Science and Technology'),
(120041, 97463, 'en', 'name', 'Hasan Kalyoncu University'),
(120042, 97463, 'tr', 'name', 'Hasan Kalyoncu Üniversitesi'),
(120043, 97464, 'en', 'name', 'Dalian Minzu University'),
(120044, 97464, 'zh', 'name', 'å¤§čæžę°‘ę—å¤§å­¦'),
(120045, 97465, 'en', 'name', 'Liaoning University'),
(120046, 97465, 'zh', 'name', '辽宁大学'),
(120047, 97466, 'en', 'name', 'University of Western Macedonia'),
(120048, 97466, 'fr', 'name', 'UniversitƩ de MacƩdoine-Occidentale'),
(120049, 97466, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Δυτικής ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(120050, 97467, 'en', 'name', 'Sichuan International Studies University'),
(120051, 97467, 'zh', 'name', 'å››å·å¤–čÆ­å­¦é™¢'),
(120052, 97468, 'en', 'name', 'Jiangxi University of Finance and Economics'),
(120053, 97468, 'zh', 'name', 'ę±Ÿč„æč“¢ē»å¤§å­¦'),
(120054, 97469, 'en', 'name', 'Zhengzhou University of Light Industry'),
(120055, 97469, 'zh', 'name', 'éƒ‘å·žč½»å·„äøšå­¦é™¢'),
(120056, 97470, 'pt', 'name', 'Instituto PolitƩcnico de SantarƩm'),
(120057, 97470, 'en', 'name', 'Polytechnic Institute of SantarƩm'),
(120058, 97471, 'en', 'name', 'Federal University Gusau'),
(120059, 97471, 'ha', 'name', 'Jami''ar Tarayya ta Gusau'),
(120060, 97472, 'en', 'name', 'University of Library Studies and Information Technologies'),
(120061, 97472, 'bg', 'name', 'Университет по библиотекознание Šø информационни технологии'),
(120062, 97473, 'en', 'name', 'China University of Petroleum, East China'),
(120063, 97473, 'zh', 'name', 'äø­å›½ēŸ³ę²¹å¤§å­¦'),
(120064, 97474, 'en', 'name', 'Wuhan Polytechnic University'),
(120065, 97474, 'zh', 'name', '武汉轻巄大学'),
(120066, 97475, 'en', 'name', 'Foshan University'),
(120067, 97475, 'zh', 'name', 'ä½›å±±ē§‘å­¦ęŠ€ęœÆå­¦é™¢'),
(120068, 97476, 'en', 'name', 'Hefei University of Technology'),
(120069, 97476, 'zh', 'name', 'åˆč‚„å·„äøšå¤§å­¦'),
(120070, 97477, 'en', 'name', 'JAMK University of Applied Sciences'),
(120071, 97477, 'fi', 'name', 'JyvƤskylƤn ammattikorkeakoulu'),
(120072, 97478, 'hu', 'name', 'HUN-REN Földfizikai és ŰrtudomÔnyi Kutatóintézet'),
(120073, 97478, 'en', 'name', 'HUN-REN Institute of Earth Physics and Space Science'),
(120074, 97479, 'no_lang_code', 'name', 'Karunya University'),
(120075, 97479, 'ta', 'name', 'ą®•ą®¾ą®°ąÆą®£ąÆą®Æą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(120076, 97480, 'en', 'name', 'University of Liechtenstein'),
(120077, 97480, 'de', 'name', 'UniversitƤt Liechtenstein'),
(120078, 97481, 'en', 'name', 'Weston College'),
(120079, 97482, 'en', 'name', 'Harbin Engineering University'),
(120080, 97482, 'zh', 'name', 'å“ˆå°”ę»Øå·„ēØ‹å¤§å­¦'),
(120081, 97483, 'en', 'name', 'Chang''an University'),
(120082, 97483, 'zh', 'name', '长安大学'),
(120083, 97484, 'en', 'name', 'Sikkim University'),
(120084, 97484, 'hi', 'name', 'ą¤øą¤æą¤•ą„ą¤•ą¤æą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(120085, 97485, 'en', 'name', 'Royal Central School of Speech and Drama'),
(120086, 97486, 'en', 'name', 'Milwaukee School of Engineering'),
(120087, 97487, 'en', 'name', 'Dalian University of Foreign Languages'),
(120088, 97487, 'zh', 'name', 'å¤§čæžå¤–å›½čÆ­å­¦é™¢'),
(120089, 97488, 'en', 'name', 'Tokyo University of Foreign Studies'),
(120090, 97488, 'ja', 'name', 'ę±äŗ¬å¤–å›½čŖžå¤§å­¦'),
(120091, 97489, 'en', 'name', 'Flanders Marine Institute'),
(120092, 97489, 'nl', 'name', 'Vlaams Instituut voor de Zee'),
(120093, 97490, 'en', 'name', 'Erasmus MC'),
(120094, 97491, 'cy', 'name', 'Prifysgol Caerwysg'),
(120095, 97491, 'en', 'name', 'University of Exeter'),
(120096, 97492, 'en', 'name', 'University of Electronic Science and Technology of China'),
(120097, 97492, 'zh', 'name', 'ē”µå­ē§‘ęŠ€å¤§å­¦'),
(120098, 97493, 'en', 'name', 'Colorado Mesa University'),
(120099, 97494, 'en', 'name', 'Mount Allison University'),
(120100, 97495, 'en', 'name', 'Shanghai Lixin University of Accounting and Finance'),
(120101, 97495, 'zh', 'name', 'äøŠęµ·ē«‹äæ”ä¼šč®”é‡‘čžå­¦é™¢'),
(120102, 97496, 'en', 'name', 'University of Hertfordshire'),
(120103, 97497, 'nl', 'name', 'Amphia Ziekenhuis'),
(120104, 97498, 'en', 'name', 'Usak University'),
(120105, 97498, 'tr', 'name', 'Uşak Üniversitesi'),
(120106, 97499, 'en', 'name', 'Sultan Qaboos University'),
(120107, 97499, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© السلطان Ł‚Ų§ŲØŁˆŲ³'),
(120108, 97500, 'en', 'name', 'Colorado College'),
(120109, 97501, 'en', 'name', 'Educause'),
(120110, 97502, 'sv', 'name', 'Hƶgskolan i BorƄs'),
(120111, 97502, 'en', 'name', 'University of BorƄs'),
(120112, 97503, 'en', 'name', 'Westlake University'),
(120113, 97503, 'zh', 'name', '脿湖大学'),
(120114, 97504, 'it', 'name', 'UniversitĆ  di Camerino'),
(120115, 97504, 'de', 'name', 'UniversitƤt Camerino'),
(120116, 97504, 'fr', 'name', 'UniversitƩ de camerino'),
(120117, 97505, 'en', 'name', 'Cyprus Institute of Neurology and Genetics'),
(120118, 97506, 'en', 'name', 'Claremont Graduate University'),
(120119, 97506, 'fr', 'name', 'UniversitƩ de claremont'),
(120120, 97507, 'en', 'name', 'Manisa Celal Bayar University'),
(120121, 97507, 'tr', 'name', 'Manisa Celal Bayar Üniversitesi'),
(120122, 97508, 'en', 'name', 'Michigan Technological University'),
(120123, 97509, 'en', 'name', 'Jiangxi Academy of Sciences'),
(120124, 97509, 'zh', 'name', 'ę±Ÿč„æēœē§‘å­¦é™¢'),
(120125, 97510, 'en', 'name', 'Chubu University'),
(120126, 97510, 'ja', 'name', '中部大学'),
(120127, 97511, 'en', 'name', 'University at Albany, State University of New York'),
(120128, 97511, 'fr', 'name', 'UniversitĆ© d''Ɖtat de new york Ć  albany'),
(120129, 97512, 'de', 'name', 'ZBW – Leibniz-Informationszentrum Wirtschaft'),
(120130, 97513, 'es', 'name', 'Universidad de San Diego'),
(120131, 97513, 'en', 'name', 'University of San Diego'),
(120132, 97513, 'fr', 'name', 'UniversitƩ de san diego'),
(120133, 97514, 'en', 'name', 'Center for Monetary and Financial Studies'),
(120134, 97514, 'es', 'name', 'Centro de Estudios Monetarios y Financieros'),
(120135, 97515, 'en', 'name', 'National Institute of Technology Delhi'),
(120136, 97515, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(120137, 97516, 'fr', 'name', 'Haute Ɖcole de Gand'),
(120138, 97516, 'nl', 'name', 'Hogeschool Gent'),
(120139, 97516, 'en', 'name', 'University College Ghent'),
(120140, 97517, 'en', 'name', 'Northwest Normal University'),
(120141, 97517, 'zh', 'name', 'č„æåŒ—åøˆčŒƒå¤§å­¦'),
(120142, 97518, 'es', 'name', 'Universidad Villanueva'),
(120143, 97518, 'en', 'name', 'Villanueva University'),
(120144, 97519, 'en', 'name', 'KoƧ University'),
(120145, 97519, 'tr', 'name', 'Koç Üniversitesi'),
(120146, 97519, 'az', 'name', 'QoƧ Universiteti'),
(120147, 97520, 'en', 'name', 'Jan Albrecht Music and Art Academy'),
(120148, 97521, 'fi', 'name', 'Keski-Ruotsin yliopisto'),
(120149, 97521, 'en', 'name', 'Mid Sweden University'),
(120150, 97521, 'sv', 'name', 'Mittuniversitetet'),
(120151, 97522, 'en', 'name', 'University of Chinese Academy of Social Sciences'),
(120152, 97522, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å¤§å­¦'),
(120153, 97523, 'en', 'name', 'Burnley College'),
(120154, 97524, 'nl', 'name', 'Erasmus Universiteit Rotterdam'),
(120155, 97524, 'en', 'name', 'Erasmus University Rotterdam'),
(120156, 97525, 'en', 'name', 'Debrecen Reformed Theological University'),
(120157, 97525, 'hu', 'name', 'Debreceni ReformƔtus HittudomƔnyi Egyetem'),
(120158, 97526, 'en', 'name', 'Jinan University'),
(120159, 97526, 'zh', 'name', 'ęšØå—å¤§å­¦'),
(120160, 97527, 'en', 'name', 'Ostim Technical University'),
(120161, 97527, 'tr', 'name', 'Ostim Teknik Üniversitesi'),
(120162, 97528, 'ro', 'name', 'Academia de Muzica, Teatru si Arte Plastice'),
(120163, 97528, 'en', 'name', 'Academy of Music Theatre and Fine Arts'),
(120164, 97528, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø, театра Šø ŠøŠ·Š¾Š±Ń€Š°Š·ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(120165, 97529, 'en', 'name', 'Qilu University of Technology'),
(120166, 97529, 'zh', 'name', '齐鲁巄业大学'),
(120167, 97530, 'en', 'name', 'Weifang Medical University'),
(120168, 97530, 'zh', 'name', 'ę½åŠåŒ»å­¦é™¢'),
(120169, 97531, 'en', 'name', 'University of Winchester'),
(120170, 97532, 'en', 'name', 'China University of Geosciences'),
(120171, 97532, 'zh', 'name', 'äø­å›½åœ°č“Øå¤§å­¦'),
(120172, 97533, 'en', 'name', 'Centennial College'),
(120173, 97534, 'en', 'name', 'Harran University'),
(120174, 97534, 'tr', 'name', 'Harran Üniversitesi'),
(120175, 97535, 'sv', 'name', 'Institutet fƶr rymdfysik'),
(120176, 97535, 'fi', 'name', 'Ruotsin avaruusfysiikan laitos'),
(120177, 97535, 'en', 'name', 'Swedish Institute of Space Physics'),
(120178, 97536, 'en', 'name', 'Japan Aerospace Exploration Agency'),
(120179, 97536, 'ja', 'name', 'å®‡å®™čˆŖē©ŗē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(120180, 97537, 'cs', 'name', 'OstravskĆ” univerzita v Ostravě'),
(120181, 97537, 'en', 'name', 'University of Ostrava'),
(120182, 97538, 'en', 'name', 'University of Southern Mississippi'),
(120183, 97539, 'en', 'name', 'Xi’an International University'),
(120184, 97539, 'zh', 'name', '脿安国际大学'),
(120185, 97540, 'en', 'name', 'LAB University of Applied Sciences'),
(120186, 97540, 'fi', 'name', 'LAB-ammattikorkeakoulu'),
(120187, 97541, 'it', 'name', 'Stazione Zoologica Anton Dohrn'),
(120188, 97542, 'en', 'name', 'National Heritage Institute'),
(120189, 97543, 'en', 'name', 'Okinawa International University'),
(120190, 97543, 'ja', 'name', 'ę²–ēø„å›½éš›å¤§å­¦'),
(120191, 97544, 'en', 'name', 'University of Verona'),
(120192, 97544, 'it', 'name', 'UniversitĆ  degli Studi di Verona'),
(120193, 97544, 'de', 'name', 'UniversitƤt Verona'),
(120194, 97544, 'fr', 'name', 'UniversitƩ de vƩrone'),
(120195, 97545, 'en', 'name', 'Catholic University of Louvain'),
(120196, 97545, 'fr', 'name', 'UCLouvain'),
(120197, 97546, 'en', 'name', 'Environmental Protection Agency'),
(120198, 97547, 'cy', 'name', 'Prifysgol Dwyrain Anglia'),
(120199, 97547, 'en', 'name', 'University of East Anglia'),
(120200, 97548, 'en', 'name', 'Northern State University'),
(120201, 97549, 'pt', 'name', 'Instituto de Biologia Experimental e Tecnológica'),
(120202, 97550, 'en', 'name', 'Czech Academy of Sciences, Institute of Information Theory and Automation'),
(120203, 97550, 'cs', 'name', 'Ústav teorie informace a automatizace AV ČR'),
(120204, 97551, 'en', 'name', 'Leuphana University of Lüneburg'),
(120205, 97551, 'de', 'name', 'Leuphana Universität Lüneburg'),
(120206, 97552, 'en', 'name', 'Tokyo Dental College'),
(120207, 97552, 'ja', 'name', 'ę±äŗ¬ę­Æē§‘å¤§å­¦'),
(120208, 97553, 'nl', 'name', 'Christelijke Hogeschool Ede'),
(120209, 97553, 'en', 'name', 'Christian University of Applied Sciences'),
(120210, 97554, 'en', 'name', 'Sanda University'),
(120211, 97554, 'zh', 'name', 'äøŠęµ·ę‰č¾¾å­¦é™¢'),
(120212, 97555, 'en', 'name', 'Shenyang University of Chemical Technology'),
(120213, 97555, 'zh', 'name', 'ę²ˆé˜³åŒ–å·„å¤§å­¦'),
(120214, 97556, 'en', 'name', 'University of Lethbridge'),
(120215, 97556, 'fr', 'name', 'UniversitƩ de lethbridge'),
(120216, 97557, 'en', 'name', 'North China University of Technology'),
(120217, 97557, 'zh', 'name', 'åŒ—ę–¹å·„äøšå¤§å­¦'),
(120218, 97558, 'en', 'name', 'Kurukshetra University'),
(120219, 97558, 'hi', 'name', 'ą¤•ą„ą¤°ą„ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(120220, 97558, 'pa', 'name', 'ਕੁਰੂਕਸ਼ੇਤਰ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(120221, 97559, 'en', 'name', 'Worcestershire County Council'),
(120222, 97560, 'en', 'name', 'Wuhan Sports University'),
(120223, 97560, 'zh', 'name', '武汉体育学院'),
(120224, 97561, 'en', 'name', 'Leeds College of Music'),
(120225, 97562, 'en', 'name', 'King Fahd Medical City'),
(120226, 97562, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„Ų·ŲØŁŠŲ©'),
(120227, 97563, 'pt', 'name', 'Escola Superior de Hotelaria e Turismo do Estoril'),
(120228, 97564, 'en', 'name', 'Shanghai Jiao Tong University'),
(120229, 97564, 'zh', 'name', 'äøŠęµ·äŗ¤é€šå¤§å­¦'),
(120230, 97565, 'en', 'name', 'Shunde Polytechnic'),
(120231, 97565, 'zh', 'name', 'é”ŗå¾·čŒäøšęŠ€ęœÆå­¦é™¢'),
(120232, 97566, 'en', 'name', 'Cirencester College'),
(120233, 97567, 'en', 'name', 'Lucerne Central and University Library'),
(120234, 97567, 'de', 'name', 'Zentral und Hochschulbibliothek Luzern'),
(120235, 97568, 'en', 'name', 'IMT School for Advanced Studies Lucca'),
(120236, 97568, 'it', 'name', 'Scuola IMT Alti Studi Lucca'),
(120237, 97569, 'en', 'name', 'Brockenhurst College'),
(120238, 97570, 'en', 'name', 'College of New Caledonia'),
(120239, 97571, 'en', 'name', 'Zhejiang Wanli University'),
(120240, 97571, 'zh', 'name', 'ęµ™ę±Ÿäø‡é‡Œå­¦é™¢'),
(120241, 97572, 'fr', 'name', 'FacultƩs universitaires saint-louis'),
(120242, 97572, 'en', 'name', 'UCLouvain Saint-Louis Brussels'),
(120243, 97573, 'en', 'name', 'Changchun Institute of Technology'),
(120244, 97573, 'zh', 'name', 'é•æę˜„å·„ēØ‹å­¦é™¢'),
(120245, 97574, 'en', 'name', 'Waseda University'),
(120246, 97574, 'ja', 'name', '早稲田大学'),
(120247, 97575, 'fr', 'name', 'UniversitĆ© d''Ɖtat de wichita'),
(120248, 97575, 'en', 'name', 'Wichita State University'),
(120249, 97576, 'en', 'name', 'Camosun College'),
(120250, 97577, 'en', 'name', 'Royal College of Nursing'),
(120251, 97578, 'en', 'name', 'Bratislava International School of Liberal Arts'),
(120252, 97579, 'en', 'name', 'James Madison University'),
(120253, 97579, 'es', 'name', 'Universidad James Madison'),
(120254, 97580, 'en', 'name', 'Oak Ridge National Laboratory'),
(120255, 97581, 'en', 'name', 'Darlington College'),
(120256, 97582, 'en', 'name', 'Dr. B. R. Ambedkar National Institute of Technology Jalandhar'),
(120257, 97582, 'hi', 'name', 'औा. ą¤¬ą„€. आर. ą¤…ą¤®ą„ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤œą¤¾ą¤²ą¤‚ą¤§ą¤°'),
(120258, 97583, 'en', 'name', 'Leibniz Institute for Catalysis'),
(120259, 97583, 'de', 'name', 'Leibniz-Institut für Katalyse e.V.'),
(120260, 97584, 'en', 'name', 'University of Trento'),
(120261, 97584, 'it', 'name', 'UniversitĆ  degli Studi di Trento'),
(120262, 97584, 'de', 'name', 'UniversitƤt Trient'),
(120263, 97584, 'fr', 'name', 'UniversitƩ de Trente'),
(120264, 97585, 'en', 'name', 'Beijing Foreign Studies University'),
(120265, 97585, 'zh', 'name', 'åŒ—äŗ¬å¤–å›½čÆ­å¤§å­¦'),
(120266, 97586, 'en', 'name', 'Southwest University of Political Science & Law'),
(120267, 97586, 'zh', 'name', 'č„æå—ę”æę³•å¤§å­¦'),
(120268, 97587, 'en', 'name', 'Harbin Medical University'),
(120269, 97587, 'zh', 'name', 'å“ˆå°”ę»ØåŒ»ē§‘å¤§å­¦'),
(120270, 97588, 'en', 'name', 'Walter and Eliza Hall Institute of Medical Research'),
(120271, 97589, 'cy', 'name', 'Prifysgol Plymouth'),
(120272, 97589, 'en', 'name', 'University of Plymouth'),
(120273, 97590, 'en', 'name', 'Yellow River Conservancy Technical Institute'),
(120274, 97590, 'zh', 'name', 'é»„ę²³ę°“åˆ©čŒäøšęŠ€ęœÆå­¦é™¢'),
(120275, 97591, 'en', 'name', 'Kenyon College'),
(120276, 97592, 'en', 'name', 'HZ University of Applied Sciences'),
(120277, 97592, 'nl', 'name', 'Hogeschool Zeeland'),
(120278, 97593, 'en', 'name', 'Chongqing University'),
(120279, 97593, 'zh', 'name', 'é‡åŗ†å¤§å­¦'),
(120280, 97594, 'es', 'name', 'Universidad de Alicante'),
(120281, 97594, 'ca', 'name', 'Universitat d''Alacant'),
(120282, 97594, 'en', 'name', 'University of Alicante'),
(120283, 97595, 'en', 'name', 'Dublin City University'),
(120284, 97595, 'ga', 'name', 'Ollscoil Chathair Bhaile Ɓtha Cliath'),
(120285, 97596, 'en', 'name', 'Chesterfield College'),
(120286, 97597, 'en', 'name', 'Wuhan University'),
(120287, 97597, 'zh', 'name', '武汉大学'),
(120288, 97598, 'en', 'name', 'Beijing Forestry University'),
(120289, 97598, 'zh', 'name', 'åŒ—äŗ¬ęž—äøšå¤§å­¦'),
(120290, 97599, 'fi', 'name', 'Karoliininen instituutti'),
(120291, 97599, 'sv', 'name', 'Karolinska Institutet'),
(120292, 97600, 'en', 'name', 'Medical University of Lublin'),
(120293, 97600, 'pl', 'name', 'Uniwersytet Medyczny w Lublinie'),
(120294, 97601, 'en', 'name', 'Ɩrebro University'),
(120295, 97601, 'sv', 'name', 'Ɩrebro universitet'),
(120296, 97601, 'fi', 'name', 'Ɩrebron yliopisto'),
(120297, 97602, 'en', 'name', 'University of Greenwich'),
(120298, 97603, 'en', 'name', 'University of Veterinary Sciences Brno'),
(120299, 97603, 'cs', 'name', 'VeterinƔrnƭ univerzita Brno'),
(120300, 97604, 'en', 'name', 'Northumbria University'),
(120301, 97604, 'cy', 'name', 'Prifysgol Northymbria'),
(120302, 97605, 'en', 'name', 'Chongqing University of Technology'),
(120303, 97605, 'zh', 'name', 'é‡åŗ†ē†å·„å¤§å­¦'),
(120304, 97606, 'en', 'name', 'Başkent University'),
(120305, 97606, 'tr', 'name', 'Başkent Üniversitesi'),
(120306, 97607, 'en', 'name', 'National Technical Museum'),
(120307, 97607, 'cs', 'name', 'NƔrodnƭ TechnickƩ Muzeum'),
(120308, 97608, 'en', 'name', 'Novia University of Applied Sciences'),
(120309, 97608, 'sv', 'name', 'Yrkeshƶgskolan Novia'),
(120310, 97609, 'en', 'name', 'Coleg Gwent'),
(120311, 97610, 'en', 'name', 'Czech Academy of Sciences, Centre of Administration and Operations'),
(120312, 97610, 'cs', 'name', 'Středisko společných činnostĆ­ AV ČR'),
(120313, 97611, 'es', 'name', 'Universidad de JaƩn'),
(120314, 97611, 'en', 'name', 'University of JaƩn'),
(120315, 97612, 'en', 'name', 'Institute of the Lithuanian Language'),
(120316, 97612, 'lt', 'name', 'Lietuvių Kalbos Institutas'),
(120317, 97613, 'en', 'name', 'Breda University of Applied Sciences'),
(120318, 97613, 'nl', 'name', 'NHTV internationaal hoger onderwijs Breda'),
(120319, 97614, 'en', 'name', 'Northern Michigan University'),
(120320, 97614, 'fr', 'name', 'UniversitƩ du Nord du Michigan'),
(120321, 97615, 'en', 'name', 'Shihezi University'),
(120322, 97615, 'zh', 'name', '石河子大学'),
(120323, 97616, 'sk', 'name', 'TrnavskĆ” univerzita v Trnave'),
(120324, 97616, 'en', 'name', 'University of Trnava'),
(120325, 97617, 'en', 'name', 'University of Szczecin'),
(120326, 97617, 'pl', 'name', 'Uniwersytet Szczeciński'),
(120327, 97618, 'en', 'name', 'Nanjing Audit University'),
(120328, 97618, 'zh', 'name', 'å—äŗ¬å®”č®”å­¦é™¢'),
(120329, 97619, 'en', 'name', 'Kirklees College'),
(120330, 97620, 'en', 'name', 'University of Macerata'),
(120331, 97620, 'it', 'name', 'UniversitĆ  degli Studi di Macerata'),
(120332, 97620, 'fr', 'name', 'UniversitƩ de macerata'),
(120333, 97621, 'en', 'name', 'Giresun University'),
(120334, 97621, 'tr', 'name', 'Giresun Üniversitesi'),
(120335, 97622, 'en', 'name', 'CEPT University'),
(120336, 97622, 'gu', 'name', 'ąŖøą«‡ąŖŖą«ąŖŸ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(120337, 97623, 'no_lang_code', 'name', 'University of Primorska'),
(120338, 97623, 'it', 'name', 'UniversitĆ  del Litorale'),
(120339, 97623, 'sl', 'name', 'Univerza na Primorskem'),
(120340, 97624, 'en', 'name', 'SGH Warsaw School of Economics'),
(120341, 97624, 'pl', 'name', 'Szkoła Główna Handlowa w Warszawie'),
(120342, 97625, 'en', 'name', 'The Sixth Form College Colchester'),
(120343, 97626, 'en', 'name', 'Indian Institute of Technology Delhi'),
(120344, 97626, 'fr', 'name', 'Institut indien de technologie de delhi'),
(120345, 97626, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(120346, 97626, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(120347, 97626, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®¤ą®æą®²ąÆą®²ą®æ'),
(120348, 97626, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°¢ą°æą°²ą±ą°²ą±€'),
(120349, 97626, 'kn', 'name', 'ą²‡ą²‚ą²”ą²æą²Æą²Øą³ ą²‡ą²Øą³ ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²«ą³ ą²Ÿą³†ą²•ą³ą²Øą²¾ą²²ą²œą²æ ದೆಹಲಿ'),
(120350, 97626, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“”ąµ†ąµ½ą“¹ą“æ'),
(120351, 97627, 'no_lang_code', 'name', 'Ochanomizu University'),
(120352, 97627, 'ja', 'name', 'お茶の氓儳子大学'),
(120353, 97628, 'es', 'name', 'Universidad de Salamanca'),
(120354, 97628, 'en', 'name', 'University of Salamanca'),
(120355, 97629, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Strasbourg'),
(120356, 97630, 'en', 'name', 'Otis College of Art and Design'),
(120357, 97631, 'en', 'name', 'Mid Cheshire College'),
(120358, 97632, 'en', 'name', 'Harvey Mudd College'),
(120359, 97633, 'en', 'name', 'College of Physicians and Surgeons Pakistan'),
(120360, 97634, 'en', 'name', 'Malaghan Institute of Medical Research'),
(120361, 97635, 'en', 'name', 'Apor Vilmos Catholic College'),
(120362, 97635, 'hu', 'name', 'Apor Vilmos Katolikus Főiskola'),
(120363, 97636, 'en', 'name', 'Glasgow Clyde College'),
(120364, 97637, 'fr', 'name', 'CollĆØge de Maisonneuve'),
(120365, 97638, 'en', 'name', 'Tun Hussein Onn University of Malaysia'),
(120366, 97638, 'ms', 'name', 'Universiti Tun Hussein Onn Malaysia'),
(120367, 97639, 'en', 'name', 'Marymount University'),
(120368, 97640, 'en', 'name', 'Guangdong Technion-Israel Institute of Technology'),
(120369, 97640, 'zh', 'name', 'å¹æäøœä»„č‰²åˆ—ē†å·„å­¦é™¢'),
(120370, 97641, 'en', 'name', 'Full Sail University'),
(120371, 97642, 'en', 'name', 'South Dakota State University'),
(120372, 97642, 'es', 'name', 'Universidad Estatal de Dakota del Sur'),
(120373, 97642, 'fr', 'name', 'UniversitĆ© d''Ɖtat du Dakota du Sud'),
(120374, 97643, 'cy', 'name', 'Prifysgol Gorllewin yr Alban'),
(120375, 97643, 'en', 'name', 'University of the West of Scotland'),
(120376, 97644, 'pt', 'name', 'Insper'),
(120377, 97645, 'en', 'name', 'University of Nottingham Ningbo China'),
(120378, 97645, 'zh', 'name', '宁波诺丁汉大学'),
(120379, 97646, 'hu', 'name', 'PĆ©csi Püspƶki HittudomĆ”nyi Főiskola'),
(120380, 97647, 'en', 'name', 'Hebei University of Engineering'),
(120381, 97647, 'zh', 'name', 'ę²³åŒ—å·„ēØ‹å¤§å­¦'),
(120382, 97648, 'en', 'name', 'Amherst College'),
(120383, 97649, 'en', 'name', 'Lanzhou University'),
(120384, 97649, 'zh', 'name', '兰州大学'),
(120385, 97650, 'en', 'name', 'Istanbul Galata University'),
(120386, 97650, 'tr', 'name', 'İstanbul Galata Üniversitesi'),
(120387, 97651, 'en', 'name', 'Rhodes University'),
(120388, 97652, 'en', 'name', 'Brest National Engineering School'),
(120389, 97652, 'fr', 'name', 'Ɖcole nationale d''ingĆ©nieurs de Brest'),
(120390, 97653, 'en', 'name', 'University of Wisconsin–River Falls'),
(120391, 97653, 'fr', 'name', 'UniversitĆ© du Wisconsin–River Falls'),
(120392, 97654, 'en', 'name', 'Üsküdar University'),
(120393, 97654, 'tr', 'name', 'Üsküdar Üniversitesi'),
(120394, 97655, 'en', 'name', 'Fort Lewis College'),
(120395, 97656, 'en', 'name', 'Clemson University'),
(120396, 97656, 'fr', 'name', 'UniversitƩ de clemson'),
(120397, 97657, 'en', 'name', 'Walsall College'),
(120398, 97658, 'en', 'name', 'Indian Institute of Technology Ropar'),
(120399, 97658, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(120400, 97658, 'ne', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø,ą¤°ą„‹ą¤Ŗą¤”ą¤¼'),
(120401, 97658, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®Ŗą®žąÆą®šą®¾ą®ŖąÆ'),
(120402, 97659, 'en', 'name', 'Quinnipiac University'),
(120403, 97660, 'en', 'name', 'Dhofar University'),
(120404, 97660, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ظفار'),
(120405, 97661, 'de', 'name', 'Swissuniversities'),
(120406, 97662, 'no_lang_code', 'name', 'Walter Sisulu University'),
(120407, 97663, 'en', 'name', 'Trinity College'),
(120408, 97664, 'en', 'name', 'Trent University'),
(120409, 97664, 'fr', 'name', 'UniversitƩ de trent'),
(120410, 97665, 'ga', 'name', 'Acadamh Rƭoga na hƉireann'),
(120411, 97665, 'en', 'name', 'Royal Irish Academy'),
(120412, 97666, 'hu', 'name', 'SzínhÔz- és Filmművészeti Egyetem'),
(120413, 97666, 'en', 'name', 'University of Theatre and Film Arts'),
(120414, 97667, 'en', 'name', 'Foundation for Research and Technology Hellas'),
(120415, 97667, 'el', 'name', 'ĪŠĪ“ĻĻ…Ī¼Ī± Τεχνολογίας και ĪˆĻĪµĻ…Ī½Ī±Ļ‚'),
(120416, 97668, 'nl', 'name', 'Universiteit voor Humanistiek'),
(120417, 97668, 'en', 'name', 'University of Humanistic Studies'),
(120418, 97669, 'en', 'name', 'Wuhan Business University'),
(120419, 97670, 'en', 'name', 'Sinop University'),
(120420, 97670, 'tr', 'name', 'Sinop Üniversitesi'),
(120421, 97671, 'en', 'name', 'Dalian University of Technology'),
(120422, 97671, 'zh', 'name', 'å¤§čæžē†å·„å¤§å­¦'),
(120423, 97672, 'no_lang_code', 'name', 'Linyi University'),
(120424, 97672, 'zh', 'name', '专沂大学'),
(120425, 97673, 'en', 'name', 'İzmir Democracy University'),
(120426, 97673, 'tr', 'name', 'İzmir Demokrasi Üniversitesi'),
(120427, 97674, 'en', 'name', 'Southwest University'),
(120428, 97674, 'zh', 'name', 'č„æå—å¤§å­¦'),
(120429, 97675, 'en', 'name', 'Ƈankaya University'),
(120430, 97675, 'tr', 'name', 'Ƈankaya Ɯniversitesi'),
(120431, 97676, 'en', 'name', 'National Institute of Biology'),
(120432, 97677, 'hu', 'name', 'TemesvƔri Nyugati TudomƔnyegyetem'),
(120433, 97677, 'ro', 'name', 'Universitatea de Vest din Timișoara'),
(120434, 97677, 'en', 'name', 'West University of Timişoara'),
(120435, 97678, 'en', 'name', 'Berkshire College of Agriculture'),
(120436, 97679, 'de', 'name', 'GESIS - Leibniz-Institut für Sozialwissenschaften'),
(120437, 97679, 'en', 'name', 'GESIS - Leibniz-Institute for the Social Sciences'),
(120438, 97680, 'en', 'name', 'Autonomous University of Barcelona'),
(120439, 97680, 'eu', 'name', 'Bartzelonako Unibertsitate Autonomoa'),
(120440, 97680, 'es', 'name', 'Universidad Autónoma de Barcelona'),
(120441, 97680, 'gl', 'name', 'Universidade Autónoma de Barcelona'),
(120442, 97680, 'ca', 'name', 'Universitat Autònoma de Barcelona'),
(120443, 97681, 'en', 'name', 'Robert Gordon University'),
(120444, 97682, 'no_lang_code', 'name', 'Shenyang University'),
(120445, 97683, 'en', 'name', 'Cleveland State University'),
(120446, 97683, 'fr', 'name', 'UniversitĆ© d''Ɖtat de cleveland'),
(120447, 97684, 'en', 'name', 'Bryn Mawr College'),
(120448, 97685, 'en', 'name', 'Jimei University'),
(120449, 97685, 'zh', 'name', 'é›†ē¾Žå¤§å­¦'),
(120450, 97686, 'en', 'name', 'Digital Research Alliance of Canada'),
(120451, 97686, 'fr', 'name', 'L’Alliance de recherche numĆ©rique du Canada'),
(120452, 97687, 'en', 'name', 'Yulin University'),
(120453, 97687, 'zh', 'name', 'ę¦†ęž—å­¦é™¢'),
(120454, 97688, 'en', 'name', 'Liverpool School of Tropical Medicine'),
(120455, 97689, 'en', 'name', 'Chaminade University of Honolulu'),
(120456, 97690, 'sv', 'name', 'Hƶgskolan Kristianstad'),
(120457, 97690, 'en', 'name', 'Kristianstad University'),
(120458, 97690, 'fi', 'name', 'Kristianstadin korkeakoulu'),
(120459, 97691, 'en', 'name', 'Indiana University of Pennsylvania'),
(120460, 97691, 'es', 'name', 'Universidad de Pensilvania en Indiana'),
(120461, 97692, 'cy', 'name', 'Prifysgol Gorllewin Lloegr'),
(120462, 97692, 'en', 'name', 'University of the West of England'),
(120463, 97693, 'en', 'name', 'Brandeis University'),
(120464, 97694, 'en', 'name', 'ShanghaiTech University'),
(120465, 97694, 'zh', 'name', 'äøŠęµ·ē§‘ęŠ€å¤§å­¦'),
(120466, 97695, 'pt', 'name', 'Instituto Superior de Contabilidade e Administração de Coimbra'),
(120467, 97696, 'en', 'name', 'Ardahan University'),
(120468, 97696, 'tr', 'name', 'Ardahan Üniversitesi'),
(120469, 97696, 'az', 'name', 'ʏrdəhan Universiteti'),
(120470, 97697, 'en', 'name', 'Nanchang University'),
(120471, 97697, 'zh', 'name', 'å—ę˜Œå¤§å­¦'),
(120472, 97698, 'en', 'name', 'NORDUnet'),
(120473, 97699, 'en', 'name', 'Mykolas Romeris University'),
(120474, 97699, 'lt', 'name', 'Mykolo Romerio universitetas'),
(120475, 97700, 'pl', 'name', 'Społeczna Akademia Nauk'),
(120476, 97700, 'en', 'name', 'University of Social Sciences'),
(120477, 97701, 'hu', 'name', 'Moholy-Nagy Művészeti Egyetem'),
(120478, 97701, 'en', 'name', 'Moholy-Nagy University of Art and Design'),
(120479, 97702, 'sv', 'name', 'Hƶgskolan i Skƶvde'),
(120480, 97702, 'en', 'name', 'University of Skƶvde'),
(120481, 97703, 'en', 'name', 'TƉLUQ University'),
(120482, 97703, 'fr', 'name', 'UniversitĆ© TƉLUQ'),
(120483, 97704, 'en', 'name', 'Coast Mountain College'),
(120484, 97705, 'en', 'name', 'University of Leicester'),
(120485, 97706, 'en', 'name', 'Tokyo Ariake University of Medical and Health Sciences'),
(120486, 97706, 'ja', 'name', 'ę±äŗ¬ęœ‰ę˜ŽåŒ»ē™‚å¤§å­¦'),
(120487, 97707, 'es', 'name', 'Universidad Regional Amazónica IKIAM'),
(120488, 97708, 'en', 'name', 'Brock University'),
(120489, 97709, 'en', 'name', 'South China Agricultural University'),
(120490, 97709, 'zh', 'name', 'åŽå—å†œäøšå¤§å­¦'),
(120491, 97710, 'en', 'name', 'Maryland Institute College of Art'),
(120492, 97711, 'en', 'name', 'Centurion University of Technology and Management'),
(120493, 97711, 'bn', 'name', 'ą¦øą§‡ą¦žą§ą¦šą§ą¦°ą¦æą¦Æą¦¼ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(120494, 97712, 'es', 'name', 'Universidad de Extremadura'),
(120495, 97712, 'en', 'name', 'University of Extremadura'),
(120496, 97713, 'en', 'name', 'Selby College'),
(120497, 97714, 'en', 'name', 'Tamil Nadu Physical Education and Sports University'),
(120498, 97714, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®‰ą®Ÿą®±ąÆą®•ą®²ąÆą®µą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®æą®³ąÆˆą®Æą®¾ą®ŸąÆą®ŸąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(120499, 97715, 'it', 'name', 'UniversitĆ  Iuav di Venezia'),
(120500, 97716, 'en', 'name', 'Duquesne University'),
(120501, 97717, 'es', 'name', 'ESS Bilbao'),
(120502, 97718, 'en', 'name', 'University of North Carolina at Greensboro'),
(120503, 97718, 'fr', 'name', 'UniversitƩ de caroline du nord Ơ greensboro'),
(120504, 97719, 'sv', 'name', 'Kungliga biblioteket'),
(120505, 97719, 'en', 'name', 'National Library of Sweden'),
(120506, 97719, 'fi', 'name', 'Ruotsin kuninkaallinen kirjasto'),
(120507, 97720, 'es', 'name', 'Universidad Wesleyana'),
(120508, 97720, 'en', 'name', 'Wesleyan University'),
(120509, 97721, 'en', 'name', 'Lancaster and Morecambe College'),
(120510, 97722, 'en', 'name', 'East Berkshire College'),
(120511, 97723, 'nl', 'name', 'Politieacademie'),
(120512, 97724, 'en', 'name', 'Chongqing Technology and Business University'),
(120513, 97724, 'zh', 'name', 'é‡åŗ†å·„å•†å¤§å­¦'),
(120514, 97725, 'en', 'name', 'Blekinge Institute of Technology'),
(120515, 97725, 'sv', 'name', 'Blekinge tekniska hƶgskola'),
(120516, 97725, 'fi', 'name', 'Blekingen teknillinen korkeakoulu'),
(120517, 97726, 'en', 'name', 'Education and Research Library of the Pilsen Region'),
(120518, 97727, 'en', 'name', 'Kyambogo University'),
(120519, 97728, 'en', 'name', 'Central University of Finance and Economics'),
(120520, 97728, 'zh', 'name', 'äø­å¤®č“¢ē»å¤§å­¦'),
(120521, 97729, 'en', 'name', 'Japan Advanced Institute of Science and Technology'),
(120522, 97729, 'ja', 'name', 'åŒ—é™øå…ˆē«Æē§‘å­¦ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(120523, 97730, 'en', 'name', 'Tianjin Normal University'),
(120524, 97730, 'zh', 'name', '天擄师范大学'),
(120525, 97731, 'en', 'name', 'University of Aosta Valley'),
(120526, 97731, 'it', 'name', 'UniversitĆ  della Valle d''Aosta'),
(120527, 97731, 'fr', 'name', 'UniversitƩ de la vallƩe d''aoste'),
(120528, 97732, 'en', 'name', 'Victoria University'),
(120529, 97733, 'en', 'name', 'Catholic University of Paris'),
(120530, 97733, 'fr', 'name', 'Institut catholique de paris'),
(120531, 97734, 'en', 'name', 'Korea National Open University'),
(120532, 97734, 'ko', 'name', 'ķ•œźµ­ė°©ģ†”ķ†µģ‹ ėŒ€ķ•™źµ'),
(120533, 97735, 'en', 'name', 'Hunan University of Finance and Economics'),
(120534, 97735, 'zh', 'name', 'ę¹–å—č“¢ę”æē»ęµŽå­¦é™¢'),
(120535, 97736, 'en', 'name', 'Xiamen National Accounting Institute'),
(120536, 97736, 'zh', 'name', 'å›½å®¶ä¼šč®”å­¦é™¢'),
(120537, 97737, 'is', 'name', 'HÔskólinn Ô Akureyri'),
(120538, 97737, 'en', 'name', 'University of Akureyri'),
(120539, 97738, 'cs', 'name', 'Nemocnice PardubickƩho Kraje'),
(120540, 97739, 'es', 'name', 'Universidad de MƔlaga'),
(120541, 97739, 'ca', 'name', 'Universitat de MĆ laga'),
(120542, 97739, 'en', 'name', 'University of Malaga'),
(120543, 97740, 'af', 'name', 'Nelson Mandela Metropolitaanse Universiteit'),
(120544, 97740, 'en', 'name', 'Nelson Mandela University'),
(120545, 97741, 'no_lang_code', 'name', 'National NanoFab Center'),
(120546, 97741, 'ko', 'name', 'ė‚˜ė…øģ¢…ķ•©źø°ģˆ ģ›'),
(120547, 97742, 'en', 'name', 'University of Macedonia'),
(120548, 97742, 'fr', 'name', 'UniversitƩ de macƩdoine'),
(120549, 97742, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(120550, 97743, 'en', 'name', 'National Institute of Fashion Technology'),
(120551, 97743, 'ne', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤«ą¤¼ą„ˆą¤¶ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾'),
(120552, 97743, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤«ą„ˆą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą¤¾ą¤²ą„‰ą¤œą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(120553, 97743, 'bn', 'name', 'ą¦Øą§ą¦Æą¦¾ą¦¶ą¦¾ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦«ą§ą¦Æą¦¾ą¦¶ą¦Ø ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(120554, 97743, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®‰ą®ŸąÆˆą®Æą®²ą®™ąÆą®•ą®¾ą®° ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(120555, 97744, 'en', 'name', 'Metropolitan University Prague'),
(120556, 97744, 'cs', 'name', 'MetropolitnĆ­ univerzita Praha'),
(120557, 97745, 'en', 'name', 'Huaiyin Normal University'),
(120558, 97745, 'zh', 'name', 'ę·®é˜“åøˆčŒƒå­¦é™¢'),
(120559, 97746, 'en', 'name', 'Akdeniz University'),
(120560, 97746, 'tr', 'name', 'Akdeniz Üniversitesi'),
(120561, 97747, 'en', 'name', 'College of Polytechnics Jihlava'),
(120562, 97747, 'cs', 'name', 'VysokÔ Ŕkola polytechnickÔ Jihlava'),
(120563, 97748, 'en', 'name', 'The University of Law'),
(120564, 97749, 'en', 'name', 'Central University of Technology'),
(120565, 97750, 'en', 'name', 'Muscat College'),
(120566, 97751, 'en', 'name', 'Creighton University');
INSERT INTO `ror_settings` VALUES
(120567, 97752, 'en', 'name', 'Istanbul University-Cerrahpaşa'),
(120568, 97752, 'tr', 'name', 'İstanbul Üniversitesi-Cerrahpaşa'),
(120569, 97753, 'en', 'name', 'Gautam Buddha University'),
(120570, 97753, 'hi', 'name', 'ą¤—ą„Œą¤¤ą¤® ą¤¬ą„ą¤¦ą„ą¤§ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(120571, 97753, 'ta', 'name', 'ą®•ąÆŒą®¤ą®®ąÆ ą®ŖąÆą®¤ąÆą®¤ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(120572, 97754, 'en', 'name', 'Transylvania University of Brașov'),
(120573, 97754, 'ro', 'name', 'Universitatea Transilvania din Brașov'),
(120574, 97755, 'pl', 'name', 'Kujawsko-Pomorska Szkoła Wyższa w Bydgoszczy'),
(120575, 97755, 'en', 'name', 'Kujawy and Pomorze University in Bydgoszcz'),
(120576, 97756, 'fr', 'name', 'UniversitƩ wilfrid-laurier'),
(120577, 97756, 'en', 'name', 'Wilfrid Laurier University'),
(120578, 97757, 'en', 'name', 'University of Regina'),
(120579, 97757, 'fr', 'name', 'UniversitƩ de regina'),
(120580, 97758, 'en', 'name', 'Norwich BioScience Institutes'),
(120581, 97759, 'en', 'name', 'SelƧuk University'),
(120582, 97759, 'tr', 'name', 'Selçuk Üniversitesi'),
(120583, 97759, 'az', 'name', 'Səlcuq Universiteti'),
(120584, 97760, 'cs', 'name', 'KrajskĆ” knihovna Vysočiny'),
(120585, 97760, 'en', 'name', 'Vysočina Regional Library'),
(120586, 97761, 'en', 'name', 'Jianghan University'),
(120587, 97761, 'zh', 'name', 'ę±Ÿę±‰å¤§å­¦'),
(120588, 97762, 'en', 'name', 'Bath Spa University'),
(120589, 97763, 'en', 'name', 'Gaziantep University'),
(120590, 97763, 'tr', 'name', 'Gaziantep Üniversitesi'),
(120591, 97764, 'en', 'name', 'Yunnan University'),
(120592, 97764, 'zh', 'name', 'äŗ‘å—å¤§å­¦'),
(120593, 97765, 'en', 'name', 'Bangor University'),
(120594, 97765, 'cy', 'name', 'Prifysgol Bangor'),
(120595, 97766, 'en', 'name', 'Dickinson College'),
(120596, 97767, 'de', 'name', 'Hochschule München University of Applied Sciences'),
(120597, 97767, 'en', 'name', 'Munich University of Applied Sciences'),
(120598, 97768, 'en', 'name', 'University Hospital Ostrava'),
(120599, 97769, 'en', 'name', 'Fujian University of Traditional Chinese Medicine'),
(120600, 97769, 'zh', 'name', 'ē¦å»ŗēœäø­åŒ»čÆē ”ē©¶é™¢'),
(120601, 97770, 'es', 'name', 'Universidad de O''Higgins'),
(120602, 97770, 'en', 'name', 'University of O''Higgins'),
(120603, 97771, 'en', 'name', 'Longwood University'),
(120604, 97772, 'en', 'name', 'Bates College'),
(120605, 97773, 'en', 'name', 'Georgia State University'),
(120606, 97774, 'en', 'name', 'Pace University'),
(120607, 97775, 'en', 'name', 'Anhui University'),
(120608, 97775, 'zh', 'name', '安徽大学'),
(120609, 97776, 'en', 'name', 'Zhoukou Normal University'),
(120610, 97777, 'en', 'name', 'Sohar University'),
(120611, 97777, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲµŲ­Ų§Ų±'),
(120612, 97778, 'en', 'name', 'Central Conservatory of Music'),
(120613, 97778, 'zh', 'name', 'äø­å¤®éŸ³ä¹å­¦é™¢'),
(120614, 97779, 'es', 'name', 'Universidad de Dayton'),
(120615, 97779, 'en', 'name', 'University of Dayton'),
(120616, 97779, 'fr', 'name', 'UniversitƩ de dayton'),
(120617, 97780, 'en', 'name', 'Central University of Odisha'),
(120618, 97780, 'hi', 'name', 'ओऔिशा ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(120619, 97780, 'or', 'name', 'ଓଔ଼ିଶା ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ą¬¬ą¬æą¬¶ą­ą¬¬ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(120620, 97781, 'en', 'name', 'Tianjin Vocational Institute'),
(120621, 97781, 'zh', 'name', '天擄职业大学'),
(120622, 97782, 'en', 'name', 'Hubei Normal University'),
(120623, 97782, 'zh', 'name', 'ę¹–åŒ—åøˆčŒƒå­¦é™¢'),
(120624, 97783, 'en', 'name', 'Coastal Carolina University'),
(120625, 97784, 'en', 'name', 'Yaşar University'),
(120626, 97784, 'tr', 'name', 'Yaşar Üniversitesi'),
(120627, 97785, 'en', 'name', 'Sivas Cumhuriyet University'),
(120628, 97785, 'tr', 'name', 'Sivas Cumhuriyet Üniversitesi'),
(120629, 97786, 'en', 'name', 'Hechi University'),
(120630, 97786, 'zh', 'name', '河池学院'),
(120631, 97787, 'en', 'name', 'PƔzmƔny PƩter Catholic University'),
(120632, 97787, 'hu', 'name', 'PƔzmƔny PƩter Katolikus Egyetem'),
(120633, 97788, 'en', 'name', 'Guangxi University'),
(120634, 97788, 'zh', 'name', '广脿大学'),
(120635, 97789, 'en', 'name', 'TED University'),
(120636, 97790, 'cy', 'name', 'Coleg Brenhinol Cerdd a Drama Cymru'),
(120637, 97790, 'en', 'name', 'Royal Welsh College of Music and Drama'),
(120638, 97791, 'en', 'name', 'Teesside University'),
(120639, 97792, 'pt', 'name', 'Instituto Federal Fluminense'),
(120640, 97793, 'en', 'name', 'Adıyaman University'),
(120641, 97793, 'tr', 'name', 'Adıyaman Üniversitesi'),
(120642, 97794, 'en', 'name', 'University of Reading'),
(120643, 97795, 'en', 'name', 'DePaul University'),
(120644, 97796, 'en', 'name', 'Netherlands eScience Center'),
(120645, 97797, 'en', 'name', 'California State University, Sacramento'),
(120646, 97797, 'es', 'name', 'Universidad Estatal de Sacramento'),
(120647, 97797, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  sacramento'),
(120648, 97798, 'en', 'name', 'Central University of Himachal Pradesh'),
(120649, 97799, 'en', 'name', 'Macclesfield College'),
(120650, 97800, 'en', 'name', 'Rakai Health Sciences Program'),
(120651, 97801, 'en', 'name', 'Jilin Normal University'),
(120652, 97801, 'zh', 'name', 'å‰ęž—åøˆčŒƒå¤§å­¦'),
(120653, 97802, 'de', 'name', 'Fachhochschule Wiener Neustadt'),
(120654, 97802, 'en', 'name', 'University of Applied Sciences Wiener Neustadt'),
(120655, 97803, 'en', 'name', 'Institute for Advanced Study'),
(120656, 97804, 'en', 'name', 'Hellenic Naval Academy'),
(120657, 97804, 'el', 'name', 'Σχολή ĪĪ±Ļ…Ļ„Ī¹ĪŗĻŽĪ½ Δοκίμων'),
(120658, 97805, 'en', 'name', 'Fareham College'),
(120659, 97806, 'en', 'name', 'Hubei University for Nationalities'),
(120660, 97806, 'zh', 'name', 'ę¹–åŒ—ę°‘ę—å­¦é™¢'),
(120661, 97807, 'en', 'name', 'Franklin & Marshall College'),
(120662, 97808, 'en', 'name', 'Southern Oregon University'),
(120663, 97809, 'en', 'name', 'Keio University'),
(120664, 97809, 'ja', 'name', '慶應義唾大学'),
(120665, 97810, 'en', 'name', 'Donghua University'),
(120666, 97810, 'zh', 'name', 'äøœåŽå¤§å­¦'),
(120667, 97811, 'en', 'name', 'Liberty University'),
(120668, 97812, 'en', 'name', 'Technical University of Cartagena'),
(120669, 97812, 'es', 'name', 'Universidad PolitƩcnica de Cartagena'),
(120670, 97813, 'en', 'name', 'Anyang Normal University'),
(120671, 97813, 'zh', 'name', 'å®‰é˜³åøˆčŒƒå­¦é™¢'),
(120672, 97814, 'en', 'name', 'Henan University of Science and Technology'),
(120673, 97814, 'zh', 'name', 'ę²³å—ē§‘ęŠ€å¤§å­¦'),
(120674, 97815, 'en', 'name', 'University of Wisconsin–Stout'),
(120675, 97815, 'fr', 'name', 'UniversitĆ© du Wisconsin–Stout'),
(120676, 97816, 'en', 'name', 'Belfast Metropolitan College'),
(120677, 97817, 'en', 'name', 'North Carolina Central University'),
(120678, 97817, 'fr', 'name', 'UniversitƩ centrale de caroline du nord'),
(120679, 97818, 'en', 'name', 'Usmanu Danfodiyo University'),
(120680, 97818, 'yo', 'name', 'YunifƔsƭtƬ Usman Dan Fodio'),
(120681, 97819, 'en', 'name', 'University of the Visual & Performing Arts'),
(120682, 97819, 'ta', 'name', 'ą®•ą®ŸąÆą®ŖąÆą®² ą®†ą®±ąÆą®±ąÆą®•ąÆˆą®•ąÆ ą®•ą®²ąÆˆą®•ą®³ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(120683, 97820, 'en', 'name', 'Philadelphia University'),
(120684, 97820, 'fr', 'name', 'UniversitƩ de philadelphie'),
(120685, 97821, 'en', 'name', 'Shaanxi University of Technology'),
(120686, 97821, 'zh', 'name', '陕脿理巄大学'),
(120687, 97822, 'en', 'name', 'Atlas University'),
(120688, 97822, 'tr', 'name', 'Atlas Üniversitesi'),
(120689, 97823, 'en', 'name', 'Ondokuz Mayıs University'),
(120690, 97823, 'tr', 'name', 'Ondokuz Mayıs Üniversitesi'),
(120691, 97824, 'en', 'name', 'Azusa Pacific University'),
(120692, 97825, 'en', 'name', 'University of Northern British Columbia'),
(120693, 97826, 'en', 'name', 'National Institute for Fusion Science'),
(120694, 97826, 'ja', 'name', 'ę øčžåˆē§‘å­¦ē ”ē©¶ę‰€'),
(120695, 97827, 'gd', 'name', 'Conservatoire RƬoghail na h-Alba'),
(120696, 97827, 'en', 'name', 'Royal Conservatoire of Scotland'),
(120697, 97828, 'en', 'name', 'Oklahoma State University System'),
(120698, 97829, 'tr', 'name', 'Ankara Sosyal Bilimler Üniversitesi'),
(120699, 97830, 'en', 'name', 'Zhaoqing University'),
(120700, 97830, 'zh', 'name', '肇庆学院'),
(120701, 97831, 'en', 'name', 'Ordu University'),
(120702, 97831, 'tr', 'name', 'Ordu Üniversitesi'),
(120703, 97832, 'en', 'name', 'California State University, Long Beach'),
(120704, 97832, 'es', 'name', 'Universidad Estatal de California, Long Beach'),
(120705, 97832, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  long beach'),
(120706, 97833, 'sk', 'name', 'AkadƩmia Umenƭ v Banskej Bystrici'),
(120707, 97834, 'en', 'name', 'Morgan State University'),
(120708, 97834, 'es', 'name', 'Universidad Estatal de Morgan'),
(120709, 97834, 'fr', 'name', 'UniversitĆ© d''Ɖtat morgan'),
(120710, 97835, 'en', 'name', 'Finnish Institute for Health and Welfare'),
(120711, 97836, 'en', 'name', 'Manipur University'),
(120712, 97836, 'hi', 'name', 'ą¤®ą¤£ą¤æą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(120713, 97837, 'fr', 'name', 'Agence de Mutualisation des UniversitƩs et Etablissements'),
(120714, 97838, 'en', 'name', 'Chongqing University of Posts and Telecommunications'),
(120715, 97838, 'zh', 'name', 'é‡åŗ†é‚®ē”µå¤§å­¦'),
(120716, 97839, 'de', 'name', 'Alfred-Wegener-Institut Helmholtz-Zentrum für Polar- und Meeresforschung'),
(120717, 97840, 'en', 'name', 'Gettysburg College'),
(120718, 97841, 'en', 'name', 'University of Messina'),
(120719, 97841, 'it', 'name', 'UniversitĆ  degli Studi di Messina'),
(120720, 97841, 'de', 'name', 'UniversitƤt Messina'),
(120721, 97841, 'fr', 'name', 'UniversitƩ de messine'),
(120722, 97842, 'en', 'name', 'University of Foggia'),
(120723, 97842, 'it', 'name', 'UniversitĆ  degli Studi di Foggia'),
(120724, 97842, 'fr', 'name', 'UniversitƩ de foggia'),
(120725, 97843, 'en', 'name', 'Wayne State College'),
(120726, 97844, 'en', 'name', 'Xuchang University'),
(120727, 97845, 'en', 'name', 'North China Institute of Science and Technology'),
(120728, 97845, 'zh', 'name', 'åŽåŒ—ē§‘ęŠ€å­¦é™¢'),
(120729, 97846, 'en', 'name', 'Mott Community College'),
(120730, 97847, 'en', 'name', 'Shanxi University'),
(120731, 97847, 'zh', 'name', '山脿大学'),
(120732, 97848, 'en', 'name', 'National Film and Television School'),
(120733, 97849, 'es', 'name', 'Universidad de Houston'),
(120734, 97849, 'en', 'name', 'University of Houston'),
(120735, 97849, 'fr', 'name', 'UniversitƩ de houston'),
(120736, 97850, 'en', 'name', 'Prince Sattam Bin Abdulaziz University'),
(120737, 97850, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³Ų·Ų§Ł… بن Ų¹ŲØŲÆŲ§Ł„Ų¹Ų²ŁŠŲ²'),
(120738, 97851, 'en', 'name', 'DĆŗn Laoghaire Institute of Art, Design and Technology'),
(120739, 97851, 'ga', 'name', 'InstitiĆŗid EalaĆ­ona,Dearadh agus TeicneolaĆ­ochta DhĆŗn Laoghaire'),
(120740, 97852, 'en', 'name', 'Tokyo Metropolitan Institute of Medical Science'),
(120741, 97852, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬éƒ½åŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(120742, 97853, 'en', 'name', 'Isparta University of Applied Sciences'),
(120743, 97853, 'tr', 'name', 'Isparta Uygulamalı Bilimler Üniversitesi'),
(120744, 97854, 'en', 'name', 'Pan-European University'),
(120745, 97854, 'sk', 'name', 'Paneurópska VysokÔ Ŕkola'),
(120746, 97855, 'en', 'name', 'Oakland University'),
(120747, 97856, 'en', 'name', 'University of Wisconsin–Whitewater'),
(120748, 97857, 'fr', 'name', 'Haute Ɖcole Albert Jacquard'),
(120749, 97858, 'pl', 'name', 'Akademia Sztuki w Szczecinie'),
(120750, 97858, 'en', 'name', 'Szczecin Academy of Arts'),
(120751, 97859, 'en', 'name', 'Belarusian State University'),
(120752, 97859, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(120753, 97859, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(120754, 97860, 'de', 'name', 'Technische Universität Nürnberg'),
(120755, 97860, 'en', 'name', 'University of Technology Nuremberg'),
(120756, 97861, 'en', 'name', 'Aksaray University'),
(120757, 97861, 'tr', 'name', 'Aksaray Üniversitesi'),
(120758, 97862, 'en', 'name', 'Meredith College'),
(120759, 97863, 'en', 'name', 'Afyonkarahisar Health Sciences University'),
(120760, 97863, 'tr', 'name', 'Afyonkarahisar Sağlık Bilimleri Üniversitesi'),
(120761, 97864, 'en', 'name', 'China Pharmaceutical University'),
(120762, 97864, 'zh', 'name', 'äø­å›½čÆē§‘å¤§å­¦'),
(120763, 97865, 'en', 'name', 'Istanbul Health and Technology University'),
(120764, 97865, 'tr', 'name', 'İstanbul Sağlık ve Teknoloji Üniversitesi'),
(120765, 97866, 'en', 'name', 'Hakkari University'),
(120766, 97866, 'tr', 'name', 'Hakkari Üniversitesi'),
(120767, 97867, 'en', 'name', 'Chengdu University of Information Technology'),
(120768, 97867, 'zh', 'name', 'ęˆéƒ½äæ”ęÆå·„ēØ‹å¤§å­¦'),
(120769, 97868, 'it', 'name', 'Istituto Nazionale di Oceanografia e di Geofisica Sperimentale'),
(120770, 97868, 'en', 'name', 'National Institute of Oceanography and Applied Geophysics'),
(120771, 97869, 'en', 'name', 'Camilo JosƩ Cela University'),
(120772, 97869, 'es', 'name', 'Universidad Camilo JosƩ Cela'),
(120773, 97870, 'en', 'name', 'Guangdong Medical College'),
(120774, 97870, 'zh', 'name', 'å¹æäøœåŒ»å­¦é™¢'),
(120775, 97871, 'en', 'name', 'Eastern Washington University'),
(120776, 97872, 'en', 'name', 'Salish Kootenai College'),
(120777, 97873, 'en', 'name', 'Sul Ross State University'),
(120778, 97873, 'fr', 'name', 'UniversitĆ© d''Ɖtat Sul Ross'),
(120779, 97874, 'en', 'name', 'University of L''Aquila'),
(120780, 97874, 'it', 'name', 'UniversitĆ  degli Studi dell''Aquila'),
(120781, 97874, 'fr', 'name', 'UniversitƩ de l''aquila'),
(120782, 97875, 'en', 'name', 'Henan University'),
(120783, 97875, 'zh', 'name', 'ę²³å—å¤§å­¦'),
(120784, 97876, 'en', 'name', 'University of Žilina'),
(120785, 97876, 'sk', 'name', 'ŽilinskÔ univerzita v Žiline'),
(120786, 97877, 'en', 'name', 'Zhejiang Technical Institute of Economics'),
(120787, 97877, 'zh', 'name', 'ęµ™ę±ŸēœęŠ€ęœÆē»ęµŽē ”ē©¶é™¢'),
(120788, 97878, 'en', 'name', 'Beijing University of Chinese Medicine'),
(120789, 97878, 'zh', 'name', 'åŒ—äŗ¬äø­åŒ»čÆå¤§å­¦'),
(120790, 97879, 'en', 'name', 'Toros University'),
(120791, 97879, 'tr', 'name', 'Toros Üniversitesi'),
(120792, 97880, 'en', 'name', 'Aquinas College'),
(120793, 97881, 'en', 'name', 'Altınbaş University'),
(120794, 97881, 'tr', 'name', 'Altınbaş Üniversitesi'),
(120795, 97882, 'en', 'name', 'Athens University of Economics and Business'),
(120796, 97882, 'fr', 'name', 'UniversitĆ© d’économie d’athĆØnes'),
(120797, 97882, 'el', 'name', 'Οικονομικό Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(120798, 97883, 'fr', 'name', 'Cyceron'),
(120799, 97884, 'en', 'name', 'Sant Longowal Institute of Engineering and Technology'),
(120800, 97885, 'en', 'name', 'Ventura County Community College District'),
(120801, 97886, 'en', 'name', 'Barnsley College'),
(120802, 97887, 'en', 'name', 'University of Shanghai for Science and Technology'),
(120803, 97887, 'zh', 'name', 'äøŠęµ·ē†å·„å¤§å­¦'),
(120804, 97888, 'en', 'name', 'Los Rios Community College District'),
(120805, 97889, 'en', 'name', 'Hradec KrƔlovƩ City Library'),
(120806, 97889, 'cs', 'name', 'Knihovna města Hradce KrĆ”lovĆ©'),
(120807, 97890, 'en', 'name', 'Prague University of Economics and Business'),
(120808, 97890, 'cs', 'name', 'VysokÔ Ŕkola ekonomickÔ v Praze'),
(120809, 97891, 'en', 'name', 'Rhythmic Music Conservatory'),
(120810, 97891, 'da', 'name', 'Rytmisk Musikkonservatorium'),
(120811, 97892, 'en', 'name', 'Saudi Electronic University'),
(120812, 97892, 'ar', 'name', 'الجامعة Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†ŁŠŲ©'),
(120813, 97893, 'en', 'name', 'Beihang University'),
(120814, 97893, 'zh', 'name', 'åŒ—äŗ¬čˆŖē©ŗčˆŖå¤©å¤§å­¦'),
(120815, 97894, 'en', 'name', 'Mendel University in Brno'),
(120816, 97894, 'cs', 'name', 'Mendelova univerzita v Brně'),
(120817, 97895, 'en', 'name', 'Hacettepe University'),
(120818, 97895, 'tr', 'name', 'Hacettepe Üniversitesi'),
(120819, 97896, 'en', 'name', 'Vassar College'),
(120820, 97897, 'en', 'name', 'Istanbul University'),
(120821, 97897, 'tr', 'name', 'İstanbul Üniversitesi'),
(120822, 97898, 'nl', 'name', 'Koninklijk Belgisch Instituut voor Ruimte-Aeronomie'),
(120823, 97898, 'de', 'name', 'Königlich Belgisches Institut für Raumfahrt'),
(120824, 97898, 'fr', 'name', 'L''Institut royal d''AƩronomie Spatiale de Belgique'),
(120825, 97898, 'en', 'name', 'Royal Belgian Institute for Space Aeronomy'),
(120826, 97899, 'en', 'name', 'Shanghai University of Finance and Economics'),
(120827, 97899, 'zh', 'name', 'äøŠęµ·č“¢ē»å¤§å­¦'),
(120828, 97900, 'en', 'name', 'Idaho State University'),
(120829, 97900, 'es', 'name', 'Universidad Estatal de Idaho'),
(120830, 97900, 'fr', 'name', 'UniversitĆ© d''Ɖtat d''idaho'),
(120831, 97901, 'nl', 'name', 'Koninklijk Instituut voor de Tropen'),
(120832, 97901, 'en', 'name', 'Royal Tropical Institute'),
(120833, 97902, 'en', 'name', 'Pacific University'),
(120834, 97902, 'es', 'name', 'Universidad del PacĆ­fico'),
(120835, 97903, 'en', 'name', 'Hellenic Centre for Marine Research'),
(120836, 97904, 'en', 'name', 'Liverpool John Moores University'),
(120837, 97904, 'cy', 'name', 'Prifysgol John Moores, Lerpwl'),
(120838, 97905, 'nl', 'name', 'Hogeschool Inholland'),
(120839, 97905, 'en', 'name', 'Inholland University of Applied Sciences'),
(120840, 97906, 'en', 'name', 'Fairleigh Dickinson University'),
(120841, 97907, 'fi', 'name', 'Kaakkois Suomen Ammattikorkeakoulu'),
(120842, 97907, 'en', 'name', 'South Eastern Finland University of Applied Sciences'),
(120843, 97908, 'en', 'name', 'University of Ruhuna'),
(120844, 97908, 'ta', 'name', 'ą®‰ą®±ąÆą®•ąÆą®£ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(120845, 97908, 'si', 'name', 'රුහුණ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗą¶ŗ'),
(120846, 97909, 'fr', 'name', 'Ɖcole SupĆ©rieure des Beaux-Arts de Nantes MĆ©tropole'),
(120847, 97910, 'en', 'name', 'Dr. B. R. Ambedkar Open University'),
(120848, 97910, 'fr', 'name', 'UniversitƩ ouverte de l''andhra pradesh'),
(120849, 97910, 'hi', 'name', 'ą¤†ą¤Øą„ą¤§ą„ą¤°ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤–ą„ą¤²ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(120850, 97911, 'en', 'name', 'Nantong University'),
(120851, 97911, 'zh', 'name', '南通大学'),
(120852, 97912, 'en', 'name', 'Slovak Centre of Scientific and Technical Information'),
(120853, 97913, 'en', 'name', 'Zhejiang Institute of Communications'),
(120854, 97913, 'zh', 'name', 'ęµ™ę±Ÿäŗ¤é€ščŒäøšęŠ€ęœÆå­¦é™¢'),
(120855, 97914, 'en', 'name', 'Gebze Technical University'),
(120856, 97914, 'tr', 'name', 'Gebze Teknik Üniversitesi'),
(120857, 97914, 'az', 'name', 'Qəbzə Texnologiya İnstitutu'),
(120858, 97915, 'en', 'name', 'Istanbul Medipol University'),
(120859, 97916, 'en', 'name', 'Blackburn College'),
(120860, 97917, 'sv', 'name', 'Hƶgskolan pĆ„ ƅland'),
(120861, 97917, 'en', 'name', 'ƅland University of Applied Sciences'),
(120862, 97918, 'en', 'name', 'Institute for Basic Science'),
(120863, 97919, 'de', 'name', 'Bundesinstitut für Arzneimittel und Medizinprodukte'),
(120864, 97919, 'en', 'name', 'Federal Institute for Drugs and Medical Devices'),
(120865, 97920, 'de', 'name', 'Konrad-Zuse-Zentrum für Informationstechnik Berlin'),
(120866, 97920, 'en', 'name', 'Zuse Institute Berlin'),
(120867, 97921, 'en', 'name', 'Capital University of Economics and Business'),
(120868, 97921, 'zh', 'name', 'é¦–éƒ½ē»ęµŽč“øę˜“å¤§å­¦'),
(120869, 97922, 'en', 'name', 'Mozarteum University of Salzburg'),
(120870, 97922, 'de', 'name', 'UniversitƤt Mozarteum Salzburg'),
(120871, 97923, 'en', 'name', 'Alexander Fleming Biomedical Sciences Research Center'),
(120872, 97923, 'el', 'name', 'Ī•ĻĪµĻ…Ī½Ī·Ļ„Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ Ī’Ī¹ĪæĻŠĪ±Ļ„ĻĪ¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ ΑλέξανΓρος Φλέμιγκ'),
(120873, 97924, 'en', 'name', 'Mardin Artuklu University'),
(120874, 97924, 'tr', 'name', 'Mardin Artuklu Üniversitesi'),
(120875, 97925, 'en', 'name', 'Yeditepe University'),
(120876, 97925, 'tr', 'name', 'Yeditepe Üniversitesi'),
(120877, 97926, 'en', 'name', 'Communication University of China'),
(120878, 97926, 'zh', 'name', '中国传媒大学'),
(120879, 97927, 'en', 'name', 'Munzur University'),
(120880, 97927, 'tr', 'name', 'Munzur Üniversitesi'),
(120881, 97928, 'en', 'name', 'Akita International University'),
(120882, 97928, 'ja', 'name', 'å›½éš›ę•™é¤Šå¤§å­¦'),
(120883, 97929, 'no_lang_code', 'name', 'GƉANT'),
(120884, 97930, 'da', 'name', 'Danmarks Tekniske Universitet'),
(120885, 97930, 'de', 'name', 'DƤnemarks Technische UniversitƤt'),
(120886, 97930, 'en', 'name', 'Technical University of Denmark'),
(120887, 97931, 'en', 'name', 'Anhui University of Technology'),
(120888, 97931, 'zh', 'name', 'å®‰å¾½å·„äøšå¤§å­¦'),
(120889, 97932, 'en', 'name', 'Tumkur University'),
(120890, 97933, 'en', 'name', 'Colorado State University Pueblo'),
(120891, 97934, 'en', 'name', 'Henan Institute of Technology'),
(120892, 97934, 'zh', 'name', 'ę²³å—å·„å­¦é™¢'),
(120893, 97935, 'ga', 'name', 'ColÔiste na Tríonóide Baile Átha Cliath'),
(120894, 97935, 'en', 'name', 'Trinity College Dublin'),
(120895, 97936, 'en', 'name', 'Neapolis University Pafos'),
(120896, 97936, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪĪµĪ¬Ļ€ĪæĪ»Ī¹Ļ‚ Πάφου'),
(120897, 97937, 'en', 'name', 'Anhui Polytechnic University'),
(120898, 97937, 'zh', 'name', '安徽巄程大学'),
(120899, 97938, 'en', 'name', 'Middle East College'),
(120900, 97939, 'en', 'name', 'California State University, Bakersfield'),
(120901, 97939, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  bakersfield'),
(120902, 97940, 'en', 'name', 'Marshall University'),
(120903, 97941, 'en', 'name', 'Yanbian University'),
(120904, 97941, 'zh', 'name', '延边大学'),
(120905, 97942, 'en', 'name', 'Algoma University'),
(120906, 97943, 'en', 'name', 'IT University of Copenhagen'),
(120907, 97943, 'da', 'name', 'IT-Universitetet i KĆøbenhavn'),
(120908, 97943, 'de', 'name', 'IT-UniversitƤt Kopenhagen'),
(120909, 97944, 'es', 'name', 'Universidad de Córdoba'),
(120910, 97944, 'ca', 'name', 'Universitat de Còrdova'),
(120911, 97944, 'en', 'name', 'University of Córdoba'),
(120912, 97945, 'en', 'name', 'Shandong University of Traditional Chinese Medicine'),
(120913, 97945, 'zh', 'name', 'å±±äøœäø­åŒ»čÆå¤§å­¦'),
(120914, 97946, 'en', 'name', 'Xi''an Medical University'),
(120915, 97946, 'zh', 'name', 'č„æå®‰åŒ»å­¦é™¢'),
(120916, 97947, 'en', 'name', 'Alliance University'),
(120917, 97948, 'de', 'name', 'CAMPUS 02 Fachhochschule der Wirtschaft'),
(120918, 97948, 'en', 'name', 'CAMPUS 02 University for Applied Sciences'),
(120919, 97949, 'en', 'name', 'Pomona College'),
(120920, 97950, 'es', 'name', 'Port d''Informació Científica'),
(120921, 97951, 'en', 'name', 'Guilin University of Technology'),
(120922, 97951, 'zh', 'name', 'ę”‚ęž—ē†å·„å¤§å­¦'),
(120923, 97952, 'en', 'name', 'Binzhou Medical University'),
(120924, 97952, 'zh', 'name', 'ę»Øå·žåŒ»å­¦é™¢'),
(120925, 97953, 'en', 'name', 'Vancouver Community College'),
(120926, 97954, 'en', 'name', 'University of Ioannina'),
(120927, 97954, 'fr', 'name', 'UniversitƩ d''ioannina'),
(120928, 97954, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ιωαννίνων'),
(120929, 97955, 'en', 'name', 'Shaanxi Normal University'),
(120930, 97955, 'zh', 'name', 'é™•č„æåøˆčŒƒå¤§å­¦'),
(120931, 97956, 'en', 'name', 'Max Planck Computing and Data Facility'),
(120932, 97956, 'de', 'name', 'Rechenzentrum Garching der Max-Planck-Gesellschaft'),
(120933, 97957, 'en', 'name', 'South West College'),
(120934, 97958, 'es', 'name', 'Universidad de Colorado en Denver'),
(120935, 97958, 'en', 'name', 'University of Colorado Denver'),
(120936, 97958, 'fr', 'name', 'UniversitƩ du Colorado Ơ Denver'),
(120937, 97959, 'en', 'name', 'Deccan College Post Graduate and Research Institute'),
(120938, 97959, 'mr', 'name', 'ą¤”ą„‡ą¤•ą„ą¤•ą¤Ø ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤Ŗą¤¦ą¤µą„ą¤Æą„ą¤¤ą„ą¤¤ą¤° आणि ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(120939, 97960, 'en', 'name', 'Edinburgh Napier University'),
(120940, 97961, 'hu', 'name', 'Eƶtvƶs József Főiskola'),
(120941, 97962, 'es', 'name', 'Centro Ramón Piñeiro para a Investigación en Humanidades'),
(120942, 97963, 'en', 'name', 'Pablo de Olavide University'),
(120943, 97963, 'es', 'name', 'Universidad Pablo de Olavide'),
(120944, 97964, 'en', 'name', 'Taizhou University'),
(120945, 97964, 'zh', 'name', '台州学院'),
(120946, 97965, 'en', 'name', 'South Devon College'),
(120947, 97966, 'en', 'name', 'Chizhou University'),
(120948, 97966, 'zh', 'name', 'ę± å·žå­¦é™¢'),
(120949, 97967, 'en', 'name', 'Regent''s University London'),
(120950, 97968, 'es', 'name', 'Centro Nacional de Investigaciones Oncológicas'),
(120951, 97968, 'en', 'name', 'Spanish National Cancer Research Centre'),
(120952, 97969, 'ro', 'name', 'Universitatea din Oradea'),
(120953, 97969, 'en', 'name', 'University of Oradea'),
(120954, 97970, 'en', 'name', 'DESY'),
(120955, 97970, 'de', 'name', 'Deutsches Elektronen-Synchrotron DESY'),
(120956, 97971, 'en', 'name', 'The Wistar Institute'),
(120957, 97972, 'en', 'name', 'University of Science and Technology Beijing'),
(120958, 97972, 'zh', 'name', 'åŒ—äŗ¬ē§‘ęŠ€å¤§å­¦'),
(120959, 97973, 'en', 'name', 'Nanjing Medical University'),
(120960, 97973, 'zh', 'name', 'å—äŗ¬åŒ»ē§‘å¤§å­¦'),
(120961, 97974, 'en', 'name', 'Hubei University of Education'),
(120962, 97974, 'zh', 'name', 'ę¹–åŒ—ę•™č‚²å­¦é™¢'),
(120963, 97975, 'en', 'name', 'Shanghai University of Political Science and Law'),
(120964, 97975, 'zh', 'name', 'äøŠęµ·ę”æę³•å­¦é™¢'),
(120965, 97976, 'en', 'name', 'Dumlupinar University'),
(120966, 97976, 'tr', 'name', 'Dumlupınar Üniversitesi'),
(120967, 97977, 'en', 'name', 'Augsburg University'),
(120968, 97978, 'en', 'name', 'Ankara Medipol University'),
(120969, 97978, 'tr', 'name', 'Ankara Medipol Üniversitesi'),
(120970, 97979, 'en', 'name', 'National Institute of Chemistry'),
(120971, 97980, 'en', 'name', 'Cedar Crest College'),
(120972, 97981, 'en', 'name', 'Oregon Institute of Technology'),
(120973, 97982, 'en', 'name', 'Nanyang Institute of Technology'),
(120974, 97982, 'zh', 'name', 'å—é˜³ē†å·„å­¦é™¢'),
(120975, 97983, 'en', 'name', 'PES University'),
(120976, 97984, 'en', 'name', 'Afyon Kocatepe University'),
(120977, 97984, 'tr', 'name', 'Afyon Kocatepe Üniversitesi'),
(120978, 97985, 'en', 'name', 'Wenzhou University'),
(120979, 97985, 'zh', 'name', 'ęø©å·žå¤§å­¦'),
(120980, 97986, 'en', 'name', 'Royal College of Surgeons of England'),
(120981, 97987, 'nl', 'name', 'Academisch Ziekenhuis Maastricht'),
(120982, 97987, 'en', 'name', 'Maastricht University Medical Centre'),
(120983, 97988, 'en', 'name', 'Dundalk Institute of Technology'),
(120984, 97988, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta DhĆŗn Dealgan'),
(120985, 97989, 'en', 'name', 'National Institute of Technology Calicut'),
(120986, 97989, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€, ą¤•ą¤¾ą¤²ą„€ą¤•ą¤Ÿ'),
(120987, 97989, 'ml', 'name', 'ą“Øą“¾ą“·ą“£ą“²ąµā€ ą“‡ą“Øąµā€ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“•ą“¾ą“²ą“æą“•ąµą“•ą“±ąµą“±ąµā€Œ'),
(120988, 97990, 'en', 'name', 'Leeds City College'),
(120989, 97991, 'de', 'name', 'Technische Hochschule Ingolstadt'),
(120990, 97992, 'en', 'name', 'Wiltshire College'),
(120991, 97993, 'en', 'name', 'Hebei University of Technology'),
(120992, 97993, 'zh', 'name', 'ę²³åŒ—å·„äøšå¤§å­¦'),
(120993, 97994, 'en', 'name', 'Guangxi Normal University'),
(120994, 97994, 'zh', 'name', '广脿师范大学'),
(120995, 97995, 'es', 'name', 'Sistema Universitario del Norte de Texas'),
(120996, 97995, 'en', 'name', 'University of North Texas System'),
(120997, 97996, 'fr', 'name', 'Collège Boréal'),
(120998, 97997, 'nl', 'name', 'Koninklijke Bibliotheek'),
(120999, 97997, 'en', 'name', 'National Library of the Netherlands'),
(121000, 97998, 'en', 'name', 'Carleton University'),
(121001, 97999, 'en', 'name', 'Kilis 7 Aralık University'),
(121002, 97999, 'tr', 'name', 'Kilis 7 Aralık Üniversitesi'),
(121003, 98000, 'en', 'name', 'Sakarya University'),
(121004, 98000, 'tr', 'name', 'Sakarya Üniversitesi'),
(121005, 98001, 'de', 'name', 'AuslƤnderuniversitƤt Perugia'),
(121006, 98001, 'en', 'name', 'University for Foreigners Perugia'),
(121007, 98001, 'it', 'name', 'UniversitĆ  per stranieri di Perugia'),
(121008, 98001, 'fr', 'name', 'UniversitƩ pour Ʃtrangers de pƩrouse'),
(121009, 98002, 'es', 'name', 'Universidad de Massachusetts Boston'),
(121010, 98002, 'en', 'name', 'University of Massachusetts Boston'),
(121011, 98002, 'fr', 'name', 'UniversitƩ du Massachusetts'),
(121012, 98003, 'en', 'name', 'Obihiro University of Agriculture and Veterinary Medicine'),
(121013, 98003, 'ja', 'name', 'åøÆåŗƒē•œē”£å¤§å­¦'),
(121014, 98004, 'en', 'name', 'KTO Karatay University'),
(121015, 98004, 'tr', 'name', 'KTO Karatay Üniversitesi'),
(121016, 98005, 'en', 'name', 'Wuhan University of Science and Technology'),
(121017, 98005, 'zh', 'name', 'ę­¦ę±‰ē§‘ęŠ€å¤§å­¦'),
(121018, 98006, 'no_lang_code', 'name', 'Shijiazhuang Tiedao University'),
(121019, 98006, 'zh', 'name', 'ēŸ³å®¶åŗ„é“é“å¤§å­¦'),
(121020, 98007, 'en', 'name', 'Miami University'),
(121021, 98008, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Arts et Industries Textiles'),
(121022, 98009, 'es', 'name', 'Instituto Tecnológico Agrario de Castilla y León'),
(121023, 98010, 'en', 'name', 'MƤlardalen University'),
(121024, 98010, 'sv', 'name', 'MƤlardalens hƶgskola'),
(121025, 98010, 'fi', 'name', 'MƤlarinlaakson korkeakoulu'),
(121026, 98011, 'es', 'name', 'Universidad Estatal de Utah'),
(121027, 98011, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''utah'),
(121028, 98011, 'en', 'name', 'Utah State University'),
(121029, 98012, 'en', 'name', 'Idiap Research Institute'),
(121030, 98013, 'en', 'name', 'Xinjiang University'),
(121031, 98013, 'zh', 'name', '新疆大学'),
(121032, 98014, 'en', 'name', 'Community College of Baltimore County'),
(121033, 98015, 'en', 'name', 'Cawthron Institute'),
(121034, 98016, 'tr', 'name', 'Kutahya Saglik Bilimleri Universitesi'),
(121035, 98016, 'en', 'name', 'Kütahya Health Sciences University'),
(121036, 98017, 'en', 'name', 'Research and Educational Networking Association of Moldova'),
(121037, 98018, 'en', 'name', 'Jingdezhen Ceramic Institute'),
(121038, 98018, 'zh', 'name', '景德镇陶瓷学院'),
(121039, 98019, 'en', 'name', 'B.S. Abdur Rahman Crescent Institute of Science & Technology'),
(121040, 98019, 'ta', 'name', 'பி. ą®Žą®øąÆ. ą®…ą®ŖąÆą®¤ąÆą®°ąÆ ą®°ą®•ąÆą®®ą®¾ą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(121041, 98020, 'en', 'name', 'International Islamic University Chittagong'),
(121042, 98020, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ইসলামিক ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ, ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦®'),
(121043, 98021, 'en', 'name', 'Tokyo Denki University'),
(121044, 98021, 'ja', 'name', 'ę±äŗ¬é›»ę©Ÿå¤§å­¦'),
(121045, 98022, 'en', 'name', 'Claremont McKenna College'),
(121046, 98023, 'en', 'name', 'Å koda Auto University'),
(121047, 98023, 'cs', 'name', 'Škoda Auto VysokÔ Ŕkola'),
(121048, 98024, 'en', 'name', 'Xinxiang University'),
(121049, 98024, 'zh', 'name', '新乔学院'),
(121050, 98025, 'en', 'name', 'O. P. Jindal Global University'),
(121051, 98025, 'hi', 'name', 'ओ.ą¤Ŗą„€. ą¤œą¤æą¤‚ą¤¦ą¤² ą¤—ą„ą¤²ą„‹ą¤¬ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121052, 98026, 'en', 'name', 'New Brunswick Community College'),
(121053, 98027, 'en', 'name', 'Shenzhen Technology University'),
(121054, 98027, 'zh', 'name', 'ę·±åœ³ęŠ€ęœÆå¤§å­¦'),
(121055, 98028, 'en', 'name', 'Gwangju Institute of Science and Technology'),
(121056, 98028, 'ko', 'name', 'ź“‘ģ£¼ź³¼ķ•™źø°ģˆ ģ›'),
(121057, 98029, 'en', 'name', 'East China Normal University'),
(121058, 98029, 'zh', 'name', 'åŽäøœåøˆčŒƒå¤§å­¦'),
(121059, 98030, 'en', 'name', 'Istanbul Bilgi University'),
(121060, 98030, 'tr', 'name', 'İstanbul Bilgi Üniversitesi'),
(121061, 98031, 'en', 'name', 'Kastamonu University'),
(121062, 98031, 'tr', 'name', 'Kastamonu Üniversitesi'),
(121063, 98032, 'en', 'name', 'Olds College'),
(121064, 98033, 'en', 'name', 'Amsterdam University of the Arts'),
(121065, 98033, 'nl', 'name', 'Amsterdamse Hogeschool voor de Kunsten'),
(121066, 98034, 'en', 'name', 'Atlantic Technological University'),
(121067, 98034, 'ga', 'name', 'Ollscoil TeicneolaĆ­ochta an Atlantaigh'),
(121068, 98035, 'en', 'name', 'Thapar Institute of Engineering & Technology'),
(121069, 98035, 'pa', 'name', '਄ਾਪਰ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(121070, 98036, 'en', 'name', 'Helsinki Metropolia University of Applied Sciences'),
(121071, 98037, 'en', 'name', 'LIP - Laboratory of Instrumentation and Experimental Particle Physics'),
(121072, 98037, 'pt', 'name', 'LIP - Laboratório de Instrumentação e Física Experimental de Partículas'),
(121073, 98038, 'en', 'name', 'Beijing Information Science & Technology University'),
(121074, 98038, 'zh', 'name', 'åŒ—äŗ¬äæ”ęÆē§‘ęŠ€å¤§å­¦'),
(121075, 98039, 'en', 'name', 'University of Kansas Medical Center'),
(121076, 98040, 'en', 'name', 'Mount Holyoke College'),
(121077, 98041, 'en', 'name', 'Henan University of Technology'),
(121078, 98041, 'zh', 'name', 'ę²³å—å·„äøšå¤§å­¦'),
(121079, 98042, 'en', 'name', 'International Institute of Information Technology Bangalore'),
(121080, 98043, 'no_lang_code', 'name', 'HEAnet'),
(121081, 98044, 'en', 'name', 'Beijing Wuzi University'),
(121082, 98044, 'zh', 'name', 'åŒ—äŗ¬ē‰©čµ„å­¦é™¢'),
(121083, 98045, 'en', 'name', 'Bergen Community College'),
(121084, 98046, 'es', 'name', 'Instituto Valenciano de Investigaciones Económicas'),
(121085, 98046, 'en', 'name', 'The Valencian Institute of Economic Research'),
(121086, 98047, 'en', 'name', 'Ahsanullah University of Science and Technology'),
(121087, 98047, 'bn', 'name', 'ą¦†ą¦¹ą¦øą¦¾ą¦Øą¦‰ą¦²ą§ą¦²ą¦¾ą¦¹ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(121088, 98048, 'en', 'name', 'International Centre of Insect Physiology and Ecology'),
(121089, 98049, 'en', 'name', 'Albert Einstein College of Medicine'),
(121090, 98050, 'lt', 'name', 'Lietuvos sporto universitetas'),
(121091, 98050, 'en', 'name', 'Lithuanian Sports University'),
(121092, 98051, 'en', 'name', 'Qinghai University'),
(121093, 98051, 'zh', 'name', 'é’ęµ·å¤§å­¦'),
(121094, 98052, 'es', 'name', 'Agencia Europea de Control de la Pesca'),
(121095, 98052, 'en', 'name', 'European Fisheries Control Agency'),
(121096, 98053, 'en', 'name', 'University of Baltimore'),
(121097, 98053, 'fr', 'name', 'UniversitƩ de Baltimore'),
(121098, 98054, 'en', 'name', 'University of Mpumalanga'),
(121099, 98055, 'en', 'name', 'South China University of Technology'),
(121100, 98055, 'zh', 'name', 'åŽå—ē†å·„å¤§å­¦'),
(121101, 98056, 'fr', 'name', 'Haute Ɖcole Louvain en Hainaut'),
(121102, 98057, 'en', 'name', 'Svendborg International Maritime Academy'),
(121103, 98058, 'en', 'name', 'Reed College'),
(121104, 98059, 'en', 'name', 'Erciyes University'),
(121105, 98059, 'tr', 'name', 'Erciyes Üniversitesi'),
(121106, 98059, 'az', 'name', 'ʏrciyəs Universiteti'),
(121107, 98060, 'en', 'name', 'Skidmore College'),
(121108, 98061, 'en', 'name', 'Selkirk College'),
(121109, 98062, 'en', 'name', 'Mittelhessen University of Applied Sciences'),
(121110, 98062, 'de', 'name', 'Technische Hochschule Mittelhessen'),
(121111, 98063, 'en', 'name', 'Bridgewater College'),
(121112, 98064, 'en', 'name', 'North Hertfordshire College'),
(121113, 98065, 'en', 'name', 'Eskişehir Osmangazi University'),
(121114, 98065, 'tr', 'name', 'Eskişehir Osmangazi Üniversitesi'),
(121115, 98066, 'sv', 'name', 'Hƶgskolan VƤst'),
(121116, 98066, 'en', 'name', 'University West'),
(121117, 98067, 'en', 'name', 'Indian Institute of Technology Goa'),
(121118, 98067, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤—ą„‹ą¤µą¤¾'),
(121119, 98068, 'en', 'name', 'Inter-University Accelerator Centre'),
(121120, 98069, 'en', 'name', 'Future University Hakodate'),
(121121, 98069, 'ja', 'name', 'å…¬ē«‹ćÆć“ć ć¦ęœŖę„å¤§å­¦'),
(121122, 98070, 'en', 'name', 'Preston''s College'),
(121123, 98071, 'en', 'name', 'Nanyang Normal University'),
(121124, 98071, 'zh', 'name', 'å—é˜³åøˆčŒƒå­¦é™¢'),
(121125, 98072, 'en', 'name', 'Irish Centre for High-End Computing'),
(121126, 98073, 'en', 'name', 'Southwest Jiaotong University'),
(121127, 98073, 'zh', 'name', 'č„æå—äŗ¤é€šå¤§å­¦'),
(121128, 98074, 'en', 'name', 'Dalian Maritime University'),
(121129, 98074, 'zh', 'name', 'å¤§čæžęµ·äŗ‹å¤§å­¦'),
(121130, 98075, 'en', 'name', 'Hebei Medical University'),
(121131, 98075, 'zh', 'name', 'ę²³åŒ—åŒ»ē§‘å¤§å­¦'),
(121132, 98076, 'en', 'name', 'University of Teramo'),
(121133, 98076, 'it', 'name', 'UniversitĆ  degli Studi di Teramo'),
(121134, 98076, 'fr', 'name', 'UniversitƩ de teramo'),
(121135, 98077, 'pl', 'name', 'Uniwersytet Medyczny im. Piastów Śląskich we Wrocławiu'),
(121136, 98077, 'en', 'name', 'Wroclaw Medical University'),
(121137, 98078, 'en', 'name', 'Xinjiang Medical University'),
(121138, 98078, 'zh', 'name', 'ę–°ē–†åŒ»ē§‘å¤§å­¦'),
(121139, 98079, 'de', 'name', 'Eidgenössische Anstalt für Wasserversorgung, Abwasserreinigung und Gewässerschutz'),
(121140, 98079, 'fr', 'name', 'Institut fĆ©dĆ©ral pour l’amĆ©nagement, l’épuration et la protection des eaux'),
(121141, 98079, 'en', 'name', 'Swiss Federal Institute of Aquatic Science and Technology'),
(121142, 98080, 'en', 'name', 'Wuyi University'),
(121143, 98080, 'zh', 'name', '武夷学院'),
(121144, 98081, 'en', 'name', 'Southern Methodist University'),
(121145, 98081, 'es', 'name', 'Universidad Metodista del Sur'),
(121146, 98081, 'fr', 'name', 'UniversitƩ mƩthodiste du sud'),
(121147, 98082, 'en', 'name', 'Illinois Institute of Technology'),
(121148, 98082, 'fr', 'name', 'Institut de technologie de l''illinois'),
(121149, 98082, 'es', 'name', 'Instituto de TecnologĆ­a de Illinois'),
(121150, 98083, 'en', 'name', 'University of Chester'),
(121151, 98084, 'en', 'name', 'International University of AndalucĆ­a'),
(121152, 98084, 'es', 'name', 'Universidad Internacional de AndalucĆ­a'),
(121153, 98084, 'ca', 'name', 'Universitat Internacional d''Andalusia'),
(121154, 98085, 'en', 'name', 'New York University'),
(121155, 98085, 'es', 'name', 'Universidad de Nueva York'),
(121156, 98085, 'fr', 'name', 'UniversitƩ de New York'),
(121157, 98086, 'en', 'name', 'Scripps College'),
(121158, 98087, 'en', 'name', 'University of Finance and Administration'),
(121159, 98087, 'cs', 'name', 'VysokĆ” Å”kola finančnĆ­ a sprĆ”vnĆ­'),
(121160, 98088, 'en', 'name', 'Inner Mongolia University'),
(121161, 98088, 'zh', 'name', 'å†…č’™å¤å¤§å­¦'),
(121162, 98089, 'en', 'name', 'Shanghai Business School'),
(121163, 98089, 'zh', 'name', 'äøŠęµ·å•†å­¦é™¢'),
(121164, 98090, 'en', 'name', 'Yavapai College'),
(121165, 98091, 'en', 'name', 'Erzurum Technical University'),
(121166, 98091, 'tr', 'name', 'Erzurum Teknik Üniversitesi'),
(121167, 98092, 'no_lang_code', 'name', 'Cenaero (Belgium)'),
(121168, 98093, 'en', 'name', 'Lingnan University'),
(121169, 98094, 'en', 'name', 'Karabük University'),
(121170, 98094, 'tr', 'name', 'Karabük Üniversitesi'),
(121171, 98095, 'en', 'name', 'Anhui Normal University'),
(121172, 98095, 'zh', 'name', 'å®‰å¾½åøˆčŒƒå¤§å­¦'),
(121173, 98096, 'tr', 'name', 'Malatya Turgut Ɩzal Ɯniversitesi'),
(121174, 98097, 'en', 'name', 'Beijing Academy of Agricultural and Forestry Sciences'),
(121175, 98097, 'zh', 'name', 'åŒ—äŗ¬åø‚å†œęž—ē§‘å­¦é™¢'),
(121176, 98098, 'en', 'name', 'College of the Rockies'),
(121177, 98099, 'en', 'name', 'Inner Mongolia Medical University'),
(121178, 98099, 'zh', 'name', 'å†…č’™å¤åŒ»ē§‘å¤§å­¦'),
(121179, 98100, 'en', 'name', 'Fife College'),
(121180, 98101, 'en', 'name', 'University of Hradec KrƔlovƩ'),
(121181, 98101, 'cs', 'name', 'Univerzita Hradec KrƔlovƩ'),
(121182, 98102, 'en', 'name', 'Glasgow Kelvin College'),
(121183, 98103, 'en', 'name', 'Hospital Jihlava'),
(121184, 98104, 'en', 'name', 'Qinghai Normal University'),
(121185, 98104, 'zh', 'name', 'é’ęµ·åøˆčŒƒå¤§å­¦'),
(121186, 98105, 'en', 'name', 'Estonian Business School'),
(121187, 98106, 'en', 'name', 'Yeovil College'),
(121188, 98107, 'en', 'name', 'Loughborough College'),
(121189, 98108, 'en', 'name', 'William Paterson University'),
(121190, 98109, 'fr', 'name', 'HƓpital universitaire de Zurich'),
(121191, 98109, 'en', 'name', 'University Hospital of Zurich'),
(121192, 98109, 'de', 'name', 'Universitätsspital Zürich'),
(121193, 98110, 'en', 'name', 'Galatasaray University'),
(121194, 98110, 'tr', 'name', 'Galatasaray Üniversitesi'),
(121195, 98111, 'en', 'name', 'Springfield College'),
(121196, 98112, 'en', 'name', 'University of West London'),
(121197, 98113, 'es', 'name', 'Universidad de Georgia'),
(121198, 98113, 'en', 'name', 'University of Georgia'),
(121199, 98113, 'fr', 'name', 'UniversitƩ de gƩorgie'),
(121200, 98114, 'en', 'name', 'Trinity University'),
(121201, 98114, 'es', 'name', 'Universidad Trinidad'),
(121202, 98115, 'en', 'name', 'University of Maryland, Baltimore County'),
(121203, 98115, 'fr', 'name', 'UniversitƩ du maryland, comtƩ de baltimore'),
(121204, 98116, 'tr', 'name', 'Niğde Ɩmer Halisdemir Ɯniversitesi'),
(121205, 98117, 'en', 'name', 'Tallinn University'),
(121206, 98117, 'et', 'name', 'Tallinna Ülikool'),
(121207, 98117, 'ru', 'name', 'Таллинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(121208, 98118, 'nl', 'name', 'Hogeschool de Kempel'),
(121209, 98119, 'en', 'name', 'Sur University College'),
(121210, 98119, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سور'),
(121211, 98120, 'en', 'name', 'National School of Computer Science for Industry and Business'),
(121212, 98120, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d’Informatique pour l’Industrie et l’Entreprise'),
(121213, 98121, 'en', 'name', 'Cornwall College'),
(121214, 98122, 'en', 'name', 'DTI University'),
(121215, 98122, 'sk', 'name', 'VysokÔ Ŕkola'),
(121216, 98123, 'en', 'name', 'Dudley College'),
(121217, 98124, 'hu', 'name', 'Debreceni Egyetem'),
(121218, 98124, 'en', 'name', 'University of Debrecen'),
(121219, 98125, 'fr', 'name', 'UniversitƩ de la VallƩe de l''Utah'),
(121220, 98125, 'en', 'name', 'Utah Valley University'),
(121221, 98126, 'en', 'name', 'Southern Medical University'),
(121222, 98126, 'zh', 'name', 'å—ę–¹åŒ»ē§‘å¤§å­¦'),
(121223, 98127, 'en', 'name', 'Rensselaer Polytechnic Institute'),
(121224, 98128, 'en', 'name', 'Arts University Bournemouth'),
(121225, 98129, 'en', 'name', 'Tianjin University of Commerce'),
(121226, 98129, 'zh', 'name', 'å¤©ę“„å•†äøšå¤§å­¦'),
(121227, 98130, 'en', 'name', 'Max Planck Institute for Plasma Physics'),
(121228, 98130, 'de', 'name', 'Max-Planck-Institut für Plasmaphysik'),
(121229, 98131, 'de', 'name', 'Eidgenössische Materialprüfungs- und Forschungsanstalt'),
(121230, 98131, 'fr', 'name', 'Laboratoire fƩdƩral d''essai des matƩriaux et de recherche'),
(121231, 98131, 'en', 'name', 'Swiss Federal Laboratories for Materials Science and Technology'),
(121232, 98132, 'en', 'name', 'Rey Juan Carlos University'),
(121233, 98132, 'es', 'name', 'Universidad Rey Juan Carlos'),
(121234, 98133, 'en', 'name', 'Hubei University of Automotive Technology'),
(121235, 98133, 'zh', 'name', 'ę¹–åŒ—ę±½č½¦å·„äøšå­¦é™¢'),
(121236, 98134, 'en', 'name', 'Jining Medical University'),
(121237, 98134, 'zh', 'name', 'ęµŽå®åŒ»å­¦é™¢'),
(121238, 98135, 'en', 'name', 'Malone University'),
(121239, 98136, 'en', 'name', 'Shanghai University of Sport'),
(121240, 98136, 'zh', 'name', 'äøŠęµ·ä½“č‚²å­¦é™¢'),
(121241, 98137, 'en', 'name', 'Beijing University of Civil Engineering and Architecture'),
(121242, 98137, 'zh', 'name', 'åŒ—äŗ¬å»ŗē­‘å·„ēØ‹å­¦é™¢'),
(121243, 98138, 'cy', 'name', 'Prifysgol Aberdeen'),
(121244, 98138, 'en', 'name', 'University of Aberdeen'),
(121245, 98139, 'en', 'name', 'Balıkesir University'),
(121246, 98139, 'tr', 'name', 'Balıkesir Üniversitesi'),
(121247, 98140, 'en', 'name', 'Slovak Medical University'),
(121248, 98140, 'sk', 'name', 'SlovenskĆ” zdravotnĆ­cka univerzita v Bratislave'),
(121249, 98141, 'en', 'name', 'Diaconia University of Applied Sciences'),
(121250, 98141, 'fi', 'name', 'Diakonia-ammattikorkeakoulu'),
(121251, 98141, 'sv', 'name', 'Yrkeshƶgskolan Diakonia'),
(121252, 98142, 'en', 'name', 'Stranmillis University College'),
(121253, 98143, 'en', 'name', 'Shandong Normal University'),
(121254, 98143, 'zh', 'name', '山东师范大学'),
(121255, 98144, 'en', 'name', 'Huaiyin Institute of Technology'),
(121256, 98145, 'en', 'name', 'Conservatoire for Dance and Drama'),
(121257, 98146, 'en', 'name', 'California Maritime Academy'),
(121258, 98147, 'en', 'name', 'Kielce University of Technology'),
(121259, 98147, 'pl', 'name', 'Politechnika Świętokrzyska'),
(121260, 98148, 'en', 'name', 'St. Thomas University'),
(121261, 98148, 'fr', 'name', 'UniversitƩ Saint-Thomas'),
(121262, 98149, 'en', 'name', 'Sree Sankaracharya University of Sanskrit'),
(121263, 98149, 'ur', 'name', 'جامعہ ؓری ؓنکر Ų§Ś†Ų§Ų±ŪŒŪ ŲØŲ±Ų§Ų¦Ū’ سنسکرت'),
(121264, 98149, 'ml', 'name', 'ą“¶ąµą“°ąµ€ ą“¶ą“™ąµą“•ą“°ą“¾ą“šą“¾ą“°ąµą“Æ ą“øą“‚ą“øąµą“•ąµƒą“¤ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(121265, 98150, 'en', 'name', 'City of Glasgow College'),
(121266, 98150, 'gd', 'name', 'Colaiste Baile Ghlaschu'),
(121267, 98151, 'en', 'name', 'Copenhagen Business School'),
(121268, 98152, 'en', 'name', 'Bifrƶst University'),
(121269, 98152, 'is', 'name', 'HÔskólinn Ô Bifröst'),
(121270, 98153, 'en', 'name', 'LuleƄ University of Technology'),
(121271, 98153, 'sv', 'name', 'LuleƄ tekniska universitet'),
(121272, 98153, 'fi', 'name', 'Luulajan teknillinen yliopisto'),
(121273, 98154, 'en', 'name', 'Wirral Metropolitan College'),
(121274, 98155, 'en', 'name', 'Southern Regional College'),
(121275, 98156, 'en', 'name', 'New York Genome Center'),
(121276, 98157, 'en', 'name', 'Shenyang Agricultural University'),
(121277, 98158, 'en', 'name', 'South African Radio Astronomy Observatory'),
(121278, 98159, 'en', 'name', 'Reaseheath College'),
(121279, 98160, 'en', 'name', 'Bucknell University'),
(121280, 98161, 'en', 'name', 'Xiamen Medical College'),
(121281, 98161, 'zh', 'name', 'åŽ¦é—ØåŒ»å­¦é™¢'),
(121282, 98162, 'en', 'name', 'Moulton College'),
(121283, 98163, 'hu', 'name', 'Szent PƔl AkadƩmia'),
(121284, 98164, 'nl', 'name', 'Universiteit van Luik'),
(121285, 98164, 'en', 'name', 'University of LiĆØge'),
(121286, 98164, 'de', 'name', 'Universität Lüttich'),
(121287, 98164, 'fr', 'name', 'Université de Liège'),
(121288, 98165, 'en', 'name', 'Suffolk New College'),
(121289, 98166, 'en', 'name', 'University of Stirling'),
(121290, 98167, 'en', 'name', 'Indian Institute of Science Education and Research Berhampur'),
(121291, 98168, 'en', 'name', 'Kyoto Institute of Technology'),
(121292, 98168, 'ja', 'name', '京都巄芸繊維大学'),
(121293, 98169, 'en', 'name', 'California State University, East Bay'),
(121294, 98169, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  east bay'),
(121295, 98170, 'en', 'name', 'Library and Information Centre of the Hungarian Academy of Sciences'),
(121296, 98170, 'hu', 'name', 'Magyar TudomÔnyos Akadémia KönyvtÔr és InformÔciós Központ'),
(121297, 98171, 'en', 'name', 'Shaanxi University of Chinese Medicine'),
(121298, 98171, 'zh', 'name', 'é™•č„æäø­åŒ»å­¦é™¢'),
(121299, 98172, 'hu', 'name', 'KƔroli GƔspƔr ReformƔtus Egyetem'),
(121300, 98172, 'en', 'name', 'KƔroli GƔspƔr University of the Reformed Church in Hungary'),
(121301, 98173, 'en', 'name', 'San Jose State University'),
(121302, 98173, 'es', 'name', 'Universidad Estatal de San JosƩ'),
(121303, 98173, 'fr', 'name', 'UniversitĆ© d''Ɖtat de san josĆ©'),
(121304, 98174, 'es', 'name', 'Universidad de Detroit Misericordia'),
(121305, 98174, 'en', 'name', 'University of Detroit Mercy'),
(121306, 98174, 'fr', 'name', 'UniversitƩ de detroit misƩricorde'),
(121307, 98175, 'en', 'name', 'Birmingham Metropolitan College'),
(121308, 98176, 'en', 'name', 'Shanghai International Studies University'),
(121309, 98176, 'zh', 'name', 'äøŠęµ·å¤–å›½čÆ­å¤§å­¦'),
(121310, 98177, 'en', 'name', 'CMR University'),
(121311, 98177, 'kn', 'name', 'ಸಿ ą²Žą²®ą³ ą²†ą²°ą³ ą²µą²æą²¶ą³ą²µą²µą²æą²§ą³ą²Æą²¾ą²²ą²Æ'),
(121312, 98178, 'en', 'name', 'Energy Sciences Network'),
(121313, 98179, 'en', 'name', 'Danish School of Media and Journalism'),
(121314, 98179, 'da', 'name', 'Danmarks Medie- og JournalisthĆøjskole'),
(121315, 98180, 'en', 'name', 'Hamilton College'),
(121316, 98181, 'en', 'name', 'Karlstad University'),
(121317, 98181, 'fi', 'name', 'Karlstadin yliopisto'),
(121318, 98181, 'sv', 'name', 'Karlstads universitet'),
(121319, 98182, 'en', 'name', 'Fuzhou University'),
(121320, 98182, 'zh', 'name', 'ē¦å·žå¤§å­¦'),
(121321, 98183, 'en', 'name', 'University of Basel'),
(121322, 98183, 'it', 'name', 'UniversitĆ  di Basilea'),
(121323, 98183, 'de', 'name', 'UniversitƤt Basel'),
(121324, 98183, 'fr', 'name', 'Université de Bâle'),
(121325, 98184, 'en', 'name', 'Children''s Hospital of Philadelphia'),
(121326, 98185, 'en', 'name', 'University of Wisconsin–Oshkosh'),
(121327, 98185, 'fr', 'name', 'UniversitĆ© du Wisconsin–Oshkosh'),
(121328, 98186, 'en', 'name', 'Jiangxi University of Traditional Chinese Medicine'),
(121329, 98186, 'zh', 'name', 'ę±Ÿč„æäø­åŒ»čÆå¤§å­¦'),
(121330, 98187, 'tr', 'name', 'Sirnak Üniversitesi'),
(121331, 98187, 'en', 'name', 'Şırnak University'),
(121332, 98188, 'de', 'name', 'Hochschule für Wirtschaft und Umwelt Nürtingen-Geislingen'),
(121333, 98188, 'en', 'name', 'Nürtingen-Geislingen University of Applied Science'),
(121334, 98189, 'fi', 'name', 'Satakunnan Ammattikorkeakoulu'),
(121335, 98189, 'en', 'name', 'Satakunta University of Applied Sciences'),
(121336, 98190, 'en', 'name', 'Bilkent University'),
(121337, 98190, 'tr', 'name', 'İhsan Doğramacı Bilkent Üniversitesi'),
(121338, 98191, 'en', 'name', 'National Institute for Public Health and the Environment'),
(121339, 98191, 'nl', 'name', 'Rijksinstituut voor Volksgezondheid en Milieu'),
(121340, 98192, 'en', 'name', 'University of Namur'),
(121341, 98192, 'fr', 'name', 'UniversitƩ de Namur'),
(121342, 98193, 'es', 'name', 'Universidad Europea Miguel de Cervantes'),
(121343, 98194, 'en', 'name', 'Vermont State Colleges'),
(121344, 98195, 'et', 'name', 'Eesti Kunstiakadeemia'),
(121345, 98195, 'en', 'name', 'Estonian Academy of Arts'),
(121346, 98195, 'ru', 'name', 'Š­ŃŃ‚Š¾Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²'),
(121347, 98196, 'et', 'name', 'Eesti Lennuakadeemia'),
(121348, 98196, 'en', 'name', 'Estonian Aviation Academy'),
(121349, 98196, 'ru', 'name', 'Š­ŃŃ‚Š¾Š½ŃŠŗŠ°Ń Š°Š²ŠøŠ°Ń†ŠøŠ¾Š½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(121350, 98197, 'en', 'name', 'Pingdingshan University'),
(121351, 98197, 'zh', 'name', '平锶山学院'),
(121352, 98198, 'en', 'name', 'Nanjing University'),
(121353, 98198, 'zh', 'name', 'å—äŗ¬å¤§å­¦'),
(121354, 98199, 'sv', 'name', 'Kungliga Musikhƶgskolan i Stockholm'),
(121355, 98199, 'en', 'name', 'Royal College of Music in Stockholm');
INSERT INTO `ror_settings` VALUES
(121356, 98200, 'en', 'name', 'Mahindra University'),
(121357, 98201, 'en', 'name', 'Shaanxi University of Science and Technology'),
(121358, 98201, 'zh', 'name', 'é™•č„æē§‘ęŠ€å¤§å­¦'),
(121359, 98202, 'no_lang_code', 'name', 'Alexandra Institute (Denmark)'),
(121360, 98203, 'en', 'name', 'Bury College'),
(121361, 98204, 'en', 'name', 'Estonian Academy of Security Sciences'),
(121362, 98204, 'et', 'name', 'Sisekaitseakadeemia'),
(121363, 98205, 'it', 'name', 'Scuola Normale Superiore'),
(121364, 98206, 'en', 'name', 'World University of Bangladesh'),
(121365, 98206, 'bn', 'name', 'ą¦“ą¦Æą¦¼ą¦¾ą¦°ą§ą¦²ą§ą¦” ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(121366, 98207, 'en', 'name', 'Portland State University'),
(121367, 98208, 'en', 'name', 'WHU – Otto Beisheim School of Management'),
(121368, 98209, 'en', 'name', 'Doncaster College'),
(121369, 98210, 'en', 'name', 'Radford University'),
(121370, 98211, 'en', 'name', 'Great Yarmouth College'),
(121371, 98212, 'es', 'name', 'Universidad de AlmerĆ­a'),
(121372, 98212, 'en', 'name', 'University of AlmerĆ­a'),
(121373, 98213, 'en', 'name', 'Xinxiang Medical University'),
(121374, 98213, 'zh', 'name', 'ę–°ä¹”åŒ»å­¦é™¢'),
(121375, 98214, 'en', 'name', 'Canarie'),
(121376, 98215, 'en', 'name', 'National Institute of Economic and Social Research'),
(121377, 98216, 'nl', 'name', 'Hogeschool Van Hall Larenstein'),
(121378, 98216, 'en', 'name', 'Van Hall Larenstein University of Applied Sciences'),
(121379, 98217, 'en', 'name', 'Zhejiang University of Finance and Economics'),
(121380, 98217, 'zh', 'name', 'ęµ™ę±Ÿč“¢ē»å¤§å­¦'),
(121381, 98218, 'en', 'name', 'California State University, Chico'),
(121382, 98218, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  chico'),
(121383, 98219, 'en', 'name', 'University of Warmia and Mazury in Olsztyn'),
(121384, 98219, 'pl', 'name', 'Uniwersytet Warmińsko-Mazurski w Olsztynie'),
(121385, 98220, 'pt', 'name', 'Escola Superior NƔutica Infante Dom Henrique'),
(121386, 98221, 'en', 'name', 'Royal College of Physicians'),
(121387, 98222, 'en', 'name', 'London Library'),
(121388, 98223, 'en', 'name', 'Technical University of KoŔice'),
(121389, 98223, 'sk', 'name', 'TechnickÔ univerzita v KoŔiciach'),
(121390, 98224, 'en', 'name', 'University of Alabama in Huntsville'),
(121391, 98224, 'fr', 'name', 'UniversitƩ d''alabama Ơ huntsville'),
(121392, 98225, 'en', 'name', 'Hebrew Union College - Jewish Institute of Religion'),
(121393, 98226, 'de', 'name', 'Palucca Hochschule für Tanz Dresden'),
(121394, 98227, 'en', 'name', 'York St John University'),
(121395, 98228, 'es', 'name', 'Universidad de Talca'),
(121396, 98228, 'en', 'name', 'University of Talca'),
(121397, 98229, 'fr', 'name', 'UniversitĆ© d''Ɖtat de weber'),
(121398, 98229, 'en', 'name', 'Weber State University'),
(121399, 98230, 'en', 'name', 'FrantiŔek BartoŔ Regional Library in Zlín'),
(121400, 98230, 'cs', 'name', 'KrajskĆ” knihovna FrantiÅ”ka BartoÅ”e ve ZlĆ­ně'),
(121401, 98231, 'en', 'name', 'University of Moratuwa'),
(121402, 98231, 'ta', 'name', 'ą®®ąÆŠą®±ą®ŸąÆą®ŸąÆą®µąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(121403, 98231, 'si', 'name', 'ą¶øą·œą¶»ą¶§ą·”ą·€ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(121404, 98232, 'en', 'name', 'Qingdao University of Science and Technology'),
(121405, 98232, 'zh', 'name', 'é’å²›ē§‘ęŠ€å¤§å­¦'),
(121406, 98233, 'en', 'name', 'Clackamas Community College'),
(121407, 98234, 'en', 'name', 'University of Nicosia'),
(121408, 98234, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī›ĪµĻ…ĪŗĻ‰ĻƒĪÆĪ±Ļ‚'),
(121409, 98235, 'fr', 'name', 'Ɖcole SupĆ©rieure des Sciences Ɖconomiques et Commerciales'),
(121410, 98236, 'en', 'name', 'Oceanic Platform of the Canary Islands'),
(121411, 98236, 'es', 'name', 'Plataforma OceƔnica de Canarias'),
(121412, 98237, 'en', 'name', 'Alanya Alaaddin Keykubat University'),
(121413, 98237, 'tr', 'name', 'Alanya Alaaddin Keykubat Üniversitesi'),
(121414, 98238, 'sv', 'name', 'Enskilda Hƶgskolan Stockholm'),
(121415, 98238, 'en', 'name', 'University College Stockholm'),
(121416, 98239, 'sv', 'name', 'Fƶrsvarshƶgskolan'),
(121417, 98239, 'fi', 'name', 'Maanpuolustuskorkeakoulu'),
(121418, 98239, 'en', 'name', 'Swedish Defence University'),
(121419, 98240, 'en', 'name', 'Magna Graecia University'),
(121420, 98240, 'it', 'name', 'UniversitƠ degli studi Magna GrƦcia di Catanzaro'),
(121421, 98241, 'en', 'name', 'Binghamton University'),
(121422, 98241, 'es', 'name', 'Universidad de Binghamton'),
(121423, 98242, 'en', 'name', 'University of Ss. Cyril and Methodius in Trnava'),
(121424, 98242, 'sk', 'name', 'Univerzita sv. Cyrila a Metoda v Trnave'),
(121425, 98243, 'en', 'name', 'Shanghai Jian Qiao University'),
(121426, 98243, 'zh', 'name', 'äøŠęµ·å»ŗę”„å­¦é™¢'),
(121427, 98244, 'en', 'name', 'Panteion University'),
(121428, 98244, 'fr', 'name', 'UniversitƩ panteion'),
(121429, 98244, 'el', 'name', 'Πάντειο Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(121430, 98245, 'en', 'name', 'Amasya University'),
(121431, 98245, 'tr', 'name', 'Amasya Üniversitesi'),
(121432, 98246, 'es', 'name', 'Centro de Investigaciones Energéticas, Medioambientales y Tecnológicas'),
(121433, 98247, 'en', 'name', 'Ohio Library and Information Network'),
(121434, 98248, 'no_lang_code', 'name', 'Tongji University'),
(121435, 98248, 'de', 'name', 'Tongji-UniversitƤt'),
(121436, 98248, 'zh', 'name', 'åŒęµŽå¤§å­¦'),
(121437, 98249, 'en', 'name', 'Institute for Road Safety Research'),
(121438, 98249, 'nl', 'name', 'Stichting Wetenschappelijk Onderzoek Verkeersveiligheid'),
(121439, 98250, 'en', 'name', 'Bangladesh Agricultural University'),
(121440, 98250, 'bn', 'name', 'বাংলাদেশ ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(121441, 98251, 'en', 'name', 'University of Basilicata'),
(121442, 98251, 'it', 'name', 'UniversitĆ  degli Studi della Basilicata'),
(121443, 98251, 'fr', 'name', 'UniversitƩ de la basilicate'),
(121444, 98252, 'en', 'name', 'Kazimierz Wielki University in Bydgoszcz'),
(121445, 98252, 'pl', 'name', 'Uniwersytet Kazimierza Wielkiego'),
(121446, 98253, 'sl', 'name', 'Å olski Center Ptuj'),
(121447, 98254, 'en', 'name', 'University of Campania "Luigi Vanvitelli"'),
(121448, 98254, 'it', 'name', 'UniversitĆ  degli Studi della Campania "Luigi Vanvitelli"'),
(121449, 98255, 'en', 'name', 'IULM University'),
(121450, 98255, 'it', 'name', 'Libera UniversitĆ  di Lingue e Comunicazione IULM'),
(121451, 98255, 'fr', 'name', 'UniversitƩ libre des langues et de la communication'),
(121452, 98256, 'fi', 'name', 'University of JyvƤskylƤ'),
(121453, 98257, 'ga', 'name', 'ColƔiste Mhuire Gan SmƔl'),
(121454, 98257, 'en', 'name', 'Mary Immaculate College'),
(121455, 98258, 'fr', 'name', 'Centre d''Ɖtudes et de Recherches sur les Qualifications'),
(121456, 98258, 'en', 'name', 'French Centre for Research on Education, Training and Employment'),
(121457, 98259, 'en', 'name', 'Military University of Technology in Warsaw'),
(121458, 98259, 'pl', 'name', 'Wojskowa Akademia Techniczna im. Jarosława Dąbrowskiego w Warszawie'),
(121459, 98260, 'en', 'name', 'Hitit University'),
(121460, 98260, 'tr', 'name', 'Hitit Üniversitesi'),
(121461, 98261, 'no_lang_code', 'name', 'Sabaragamuwa University of Sri Lanka'),
(121462, 98261, 'ta', 'name', 'ą®šą®Ŗą®°ą®•ą®®ąÆą®µą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(121463, 98261, 'si', 'name', 'ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą·ƒą¶¶ą¶»ą¶œą¶øą·”ą·€ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(121464, 98262, 'en', 'name', 'Changchun University'),
(121465, 98262, 'zh', 'name', 'é•æę˜„å¤§å­¦'),
(121466, 98263, 'en', 'name', 'Catholic University of the West'),
(121467, 98263, 'fr', 'name', 'UniversitƩ catholique de l''ouest'),
(121468, 98264, 'en', 'name', 'Leeds Trinity University'),
(121469, 98265, 'en', 'name', 'Nanjing Normal University'),
(121470, 98265, 'zh', 'name', 'å—äŗ¬åøˆčŒƒå¤§å­¦'),
(121471, 98266, 'en', 'name', 'Guizhou University of Finance and Economics'),
(121472, 98266, 'zh', 'name', 'č“µå·žč“¢ē»å¤§å­¦'),
(121473, 98267, 'en', 'name', 'St Helens College'),
(121474, 98268, 'sl', 'name', 'Institut Jožef Stefan'),
(121475, 98268, 'en', 'name', 'Jožef Stefan Institute'),
(121476, 98269, 'en', 'name', 'Shanghai Maritime University'),
(121477, 98269, 'zh', 'name', 'äøŠęµ·ęµ·äŗ‹å¤§å­¦'),
(121478, 98270, 'en', 'name', 'Hangzhou Dianzi University'),
(121479, 98270, 'zh', 'name', 'ę­å·žē”µå­ē§‘ęŠ€å¤§å­¦'),
(121480, 98271, 'en', 'name', 'National Institute of Research in Tuberculosis'),
(121481, 98272, 'en', 'name', 'University of Bedfordshire'),
(121482, 98273, 'ca', 'name', 'Universitat de Palerm'),
(121483, 98273, 'en', 'name', 'University of Palermo'),
(121484, 98273, 'it', 'name', 'UniversitĆ  degli Studi di Palermo'),
(121485, 98273, 'de', 'name', 'UniversitƤt Palermo'),
(121486, 98273, 'fr', 'name', 'UniversitƩ de palerme'),
(121487, 98274, 'en', 'name', 'Solihull College'),
(121488, 98275, 'en', 'name', 'Suzhou Art & Design Technology Institute'),
(121489, 98275, 'zh', 'name', 'č‹å·žå·„č‰ŗē¾ŽęœÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(121490, 98276, 'en', 'name', 'Drew University'),
(121491, 98276, 'fr', 'name', 'UniversitƩ de drew'),
(121492, 98277, 'es', 'name', 'Universidad San Jorge'),
(121493, 98278, 'en', 'name', 'Furman University'),
(121494, 98279, 'en', 'name', 'Anyang Institute of Technology'),
(121495, 98279, 'zh', 'name', '安阳巄学院'),
(121496, 98280, 'en', 'name', 'Capilano University'),
(121497, 98281, 'en', 'name', 'Northeast Forestry University'),
(121498, 98281, 'zh', 'name', 'äøœåŒ—ęž—äøšå¤§å­¦'),
(121499, 98282, 'en', 'name', 'Jining University'),
(121500, 98283, 'en', 'name', 'Istanbul Arel University'),
(121501, 98283, 'tr', 'name', 'İstanbul Arel Üniversitesi'),
(121502, 98284, 'en', 'name', 'University of Pavol Jozef ŠafÔrik'),
(121503, 98284, 'sk', 'name', 'Univerzita Pavla Jozefa ŠafÔrika v KoŔiciach'),
(121504, 98285, 'ca', 'name', 'Universitat de SĆ sser'),
(121505, 98285, 'en', 'name', 'University of Sassari'),
(121506, 98285, 'it', 'name', 'UniversitĆ  degli Studi di Sassari'),
(121507, 98285, 'fr', 'name', 'UniversitƩ de Sassari'),
(121508, 98286, 'en', 'name', 'Indian Institute of Technology Madras'),
(121509, 98286, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(121510, 98286, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą¤¦ą„ą¤°ą¤¾ą¤ø'),
(121511, 98286, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®šąÆ†ą®©ąÆą®©ąÆˆ'),
(121512, 98286, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą± ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°®ą°¦ą±ą°°ą°¾ą°øą±'),
(121513, 98286, 'kn', 'name', 'ಭಾರತೀಯ ą²¤ą²‚ą²¤ą³ą²°ą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³† ą²®ą²¦ą³ą²°ą²¾ą²øą³'),
(121514, 98286, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“®ą“¦ąµą“°ą“¾ą“øąµ'),
(121515, 98287, 'en', 'name', 'Suzhou Vocational Health College'),
(121516, 98287, 'zh', 'name', 'č‹å·žčŒäøšå„åŗ·å­¦é™¢'),
(121517, 98288, 'en', 'name', 'Unicorn University'),
(121518, 98289, 'en', 'name', 'University of Illinois at Springfield'),
(121519, 98289, 'fr', 'name', 'UniversitƩ de l''illinois Ơ Springfield'),
(121520, 98290, 'en', 'name', 'University of West Florida'),
(121521, 98291, 'en', 'name', 'Emory University'),
(121522, 98292, 'en', 'name', 'Luoyang Institute of Science and Technology'),
(121523, 98292, 'zh', 'name', 'ę“›é˜³ē†å·„å­¦é™¢'),
(121524, 98293, 'en', 'name', 'National Institute of Chemical Physics and Biophysics'),
(121525, 98294, 'en', 'name', 'Hubei University of Technology'),
(121526, 98294, 'zh', 'name', 'ę¹–åŒ—å·„äøšå¤§å­¦'),
(121527, 98295, 'ca', 'name', 'Institut Nacional de TĆØcnica Aeroespacial d''Espanya'),
(121528, 98295, 'es', 'name', 'Instituto Nacional de TƩcnica Aeroespacial'),
(121529, 98295, 'en', 'name', 'National Institute for Aerospace Technology'),
(121530, 98295, 'eu', 'name', 'Teknika Aeroespazialaren Institutu Nazionala'),
(121531, 98296, 'en', 'name', 'Vels University'),
(121532, 98296, 'ta', 'name', 'ą®µąÆ‡ą®²ąÆą®øąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(121533, 98297, 'en', 'name', 'Texas A&M University – Corpus Christi'),
(121534, 98298, 'en', 'name', 'Cardiff Metropolitan University'),
(121535, 98298, 'cy', 'name', 'Prifysgol Fetropolitan Caerdydd'),
(121536, 98299, 'en', 'name', 'China Medical University'),
(121537, 98299, 'zh', 'name', 'äø­å›½åŒ»ē§‘å¤§å­¦'),
(121538, 98300, 'en', 'name', 'Academy of Performing Arts in Prague'),
(121539, 98300, 'cs', 'name', 'Akademie mĆŗzických uměnĆ­ v Praze'),
(121540, 98301, 'cy', 'name', 'Prifysgol Dwyrain Llundain'),
(121541, 98301, 'en', 'name', 'University of East London'),
(121542, 98302, 'fi', 'name', 'Ruotsin meteorologinen ja hydrologinen laitos'),
(121543, 98302, 'sv', 'name', 'Sveriges meteorologiska och hydrologiska institut'),
(121544, 98302, 'en', 'name', 'Swedish Meteorological and Hydrological Institute'),
(121545, 98303, 'pl', 'name', 'Politechnika Warszawska'),
(121546, 98303, 'en', 'name', 'Warsaw University of Technology'),
(121547, 98304, 'en', 'name', 'Uganda Christian University'),
(121548, 98305, 'en', 'name', 'University of Jinan'),
(121549, 98305, 'zh', 'name', 'ęµŽå—å¤§å­¦'),
(121550, 98306, 'en', 'name', 'Willamette University'),
(121551, 98307, 'en', 'name', 'Borders College'),
(121552, 98308, 'en', 'name', 'California State University, San Marcos'),
(121553, 98309, 'ms', 'name', 'Universiti Sains Islam Malaysia'),
(121554, 98310, 'en', 'name', 'Shanghai Normal University'),
(121555, 98310, 'zh', 'name', '上海师范大学'),
(121556, 98311, 'en', 'name', 'Shenzhen University'),
(121557, 98311, 'zh', 'name', '深圳大学'),
(121558, 98312, 'en', 'name', 'Kocaeli University'),
(121559, 98312, 'tr', 'name', 'Kocaeli Üniversitesi'),
(121560, 98313, 'en', 'name', 'Shanghai University'),
(121561, 98313, 'zh', 'name', '上海大学'),
(121562, 98314, 'pl', 'name', 'Akademia Leona KoÅŗmińskiego'),
(121563, 98314, 'en', 'name', 'Kozminski University'),
(121564, 98315, 'en', 'name', 'Fukushima Medical University'),
(121565, 98315, 'ja', 'name', 'ē¦å³¶ēœŒē«‹åŒ»ē§‘å¤§å­¦'),
(121566, 98316, 'en', 'name', 'Hefei University'),
(121567, 98316, 'zh', 'name', 'åˆč‚„å­¦é™¢'),
(121568, 98317, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''IngĆ©nieurs de Caen'),
(121569, 98318, 'en', 'name', 'University of Zielona Góra'),
(121570, 98318, 'pl', 'name', 'Uniwersytet Zielonogórski'),
(121571, 98319, 'en', 'name', 'Anhui Science and Technology University'),
(121572, 98319, 'zh', 'name', 'å®‰å¾½ē§‘ęŠ€å­¦é™¢'),
(121573, 98320, 'en', 'name', 'University of Allahabad'),
(121574, 98320, 'hi', 'name', 'इलाहाबाद ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121575, 98320, 'pa', 'name', 'ਇਲਾਹਾਬਾਦ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(121576, 98320, 'ta', 'name', 'ą®…ą®²ą®•ą®¾ą®Ŗą®¾ą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(121577, 98320, 'te', 'name', 'ą°…ą°²ą°¹ą°¾ą°¬ą°¾ą°¦ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(121578, 98321, 'en', 'name', 'Manchester Metropolitan University'),
(121579, 98322, 'en', 'name', 'Huainan Normal University'),
(121580, 98322, 'zh', 'name', 'ę·®å—åøˆčŒƒå­¦é™¢'),
(121581, 98323, 'en', 'name', 'Ibn Haldun University'),
(121582, 98323, 'tr', 'name', 'İbn Haldun Üniversitesi'),
(121583, 98324, 'en', 'name', 'SOMT University of Physiotherapy'),
(121584, 98325, 'en', 'name', 'Jazan University'),
(121585, 98325, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© جازان'),
(121586, 98326, 'sv', 'name', 'Gymnastik- och Idrottshƶgskolan'),
(121587, 98326, 'en', 'name', 'Swedish School of Sport and Health Sciences'),
(121588, 98327, 'ga', 'name', 'ColĆ”iste RĆ­oga Lianna na hƉireann'),
(121589, 98327, 'en', 'name', 'Royal College of Physicians of Ireland'),
(121590, 98328, 'en', 'name', 'Eastern University, Sri Lanka'),
(121591, 98328, 'ta', 'name', 'ą®•ą®æą®“ą®•ąÆą®•ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®‡ą®²ą®™ąÆą®•ąÆˆ'),
(121592, 98328, 'si', 'name', 'ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶±ą·ą¶œą·™ą¶±ą·„ą·’ą¶» ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(121593, 98329, 'es', 'name', 'Universidad Cardenal Herrera CEU'),
(121594, 98329, 'ca', 'name', 'Universitat CEU Cardenal Herrera'),
(121595, 98330, 'en', 'name', 'California State University, Dominguez Hills'),
(121596, 98330, 'es', 'name', 'Universidad Estatal de California'),
(121597, 98330, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  dominguez hills'),
(121598, 98331, 'en', 'name', 'Jagiellonian University'),
(121599, 98331, 'pl', 'name', 'Uniwersytet Jagielloński'),
(121600, 98332, 'en', 'name', 'National Defence University of Malaysia'),
(121601, 98332, 'ms', 'name', 'Universiti Pertahanan Nasional Malaysia'),
(121602, 98333, 'nl', 'name', 'Deltares'),
(121603, 98334, 'en', 'name', 'Oregon Health & Science University'),
(121604, 98335, 'en', 'name', 'Hainan Normal University'),
(121605, 98335, 'zh', 'name', 'ęµ·å—åøˆčŒƒå¤§å­¦'),
(121606, 98336, 'en', 'name', 'ƅbo Akademi University'),
(121607, 98337, 'en', 'name', 'Shanghai Institute of Technology'),
(121608, 98337, 'zh', 'name', 'äøŠęµ·åŗ”ē”ØęŠ€ęœÆå¤§å­¦'),
(121609, 98338, 'es', 'name', 'Universidad de León'),
(121610, 98338, 'gl', 'name', 'Universidade de León'),
(121611, 98338, 'en', 'name', 'University of Leon'),
(121612, 98339, 'en', 'name', 'Riyadh Elm University'),
(121613, 98339, 'ar', 'name', 'ŁƒŁ„ŁŠŲ§ŲŖ Ų§Ł„Ų±ŁŠŲ§Ų¶ لطب الأسنان ŁˆŲ§Ł„ŲµŁŠŲÆŁ„Ų©'),
(121614, 98340, 'en', 'name', 'New Bulgarian University'),
(121615, 98340, 'bg', 'name', 'ŠŠ¾Š² Š±ŃŠŠ»Š³Š°Ń€ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(121616, 98341, 'en', 'name', 'Bocconi University'),
(121617, 98341, 'it', 'name', 'UniversitĆ  Commerciale Luigi Bocconi'),
(121618, 98341, 'de', 'name', 'WirtschaftsuniversitƤt Luigi Bocconi'),
(121619, 98342, 'en', 'name', 'Institute of Engineering Seismology and Earthquake Engineering'),
(121620, 98343, 'en', 'name', 'Beijing University of Chemical Technology'),
(121621, 98343, 'zh', 'name', 'åŒ—äŗ¬åŒ–å·„å¤§å­¦'),
(121622, 98344, 'en', 'name', 'Lishui University'),
(121623, 98344, 'zh', 'name', '丽氓学院'),
(121624, 98345, 'en', 'name', 'Wellcome Sanger Institute'),
(121625, 98346, 'en', 'name', 'Basque Center on Cognition, Brain and Language'),
(121626, 98347, 'en', 'name', 'Nanjing Tech University'),
(121627, 98347, 'zh', 'name', 'å—äŗ¬å·„äøšå¤§å­¦'),
(121628, 98348, 'en', 'name', 'National Institute of Technology Durgapur'),
(121629, 98348, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¦ą„ą¤°ą„ą¤—ą¤¾ą¤Ŗą„ą¤°'),
(121630, 98348, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ, ą®¤ąÆą®°ąÆą®•ą®¾ą®ŖąÆ‚ą®°ąÆ'),
(121631, 98349, 'fr', 'name', 'Ɖcole nationale supĆ©rieure d''architecture de Marseille'),
(121632, 98350, 'en', 'name', 'Seijo University'),
(121633, 98350, 'ja', 'name', 'ęˆåŸŽå¤§å­¦'),
(121634, 98351, 'nl', 'name', 'Universiteit van CuraƧao'),
(121635, 98351, 'no_lang_code', 'name', 'University of CuraƧao'),
(121636, 98352, 'af', 'name', 'Universiteit van Wes-Kaapland'),
(121637, 98352, 'en', 'name', 'University of the Western Cape'),
(121638, 98353, 'en', 'name', 'National Museum'),
(121639, 98353, 'cs', 'name', 'NƔrodnƭ muzeum'),
(121640, 98354, 'en', 'name', 'Owens Community College'),
(121641, 98355, 'en', 'name', 'Temple University'),
(121642, 98355, 'es', 'name', 'Universidad de Temple'),
(121643, 98356, 'en', 'name', 'Anadolu University'),
(121644, 98356, 'tr', 'name', 'Anadolu Üniversitesi'),
(121645, 98357, 'en', 'name', 'National College of Ireland'),
(121646, 98358, 'en', 'name', 'AlfrƩd RƩnyi Institute of Mathematics'),
(121647, 98358, 'hu', 'name', 'MTA Rényi Alfréd Matematikai Kutatóintézet'),
(121648, 98359, 'en', 'name', 'Perdana University'),
(121649, 98360, 'en', 'name', 'University of Essex'),
(121650, 98361, 'en', 'name', 'Nanjing Forestry University'),
(121651, 98361, 'zh', 'name', 'å—äŗ¬ęž—äøšå¤§å­¦'),
(121652, 98362, 'en', 'name', 'Qiannan Normal College For Nationalities'),
(121653, 98362, 'zh', 'name', 'é»”å—ę°‘ę—åøˆčŒƒå­¦é™¢'),
(121654, 98363, 'no_lang_code', 'name', 'Ningxia University'),
(121655, 98363, 'zh', 'name', '宁夏大学'),
(121656, 98364, 'en', 'name', 'Inter-University Centre for Astronomy and Astrophysics'),
(121657, 98364, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°-ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦° ফর ą¦…ą§ą¦Æą¦¾ą¦øą§ą¦Ÿą§ą¦°ą§‹ą¦Øą¦®ą¦æ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦…ą§ą¦Æą¦¾ą¦øą§ą¦Ÿą§ą¦°ą§‹ą¦«ą¦æą¦œą¦æą¦•ą§ą¦ø'),
(121658, 98364, 'ml', 'name', 'ą“‡ą“Øąµą“±ąµ¼ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“†ą“øąµą“Ÿąµą“°ąµ‹ą“£ą“®ą“æ ą“†ąµ»ą“”ąµ ą“†ą“øąµą“Ÿąµą“°ąµ‹ą“«ą“æą“øą“æą“•ąµą“øąµ'),
(121659, 98365, 'en', 'name', 'MenƩndez Pelayo International University'),
(121660, 98365, 'es', 'name', 'Universidad Internacional MenƩndez Pelayo'),
(121661, 98365, 'gl', 'name', 'Universidade Internacional MenƩndez Pelayo'),
(121662, 98366, 'en', 'name', 'American University'),
(121663, 98366, 'es', 'name', 'Universidad Americana'),
(121664, 98367, 'en', 'name', 'Kennesaw State University'),
(121665, 98367, 'fr', 'name', 'UniversitĆ© d''Ɖtat de kennesaw'),
(121666, 98368, 'en', 'name', 'University of Northern Colorado'),
(121667, 98369, 'en', 'name', 'Zhengzhou University of Science and Technology'),
(121668, 98369, 'zh', 'name', 'éƒ‘å·žē§‘ęŠ€å­¦é™¢'),
(121669, 98370, 'en', 'name', 'Texas A&M University – San Antonio'),
(121670, 98371, 'en', 'name', 'Lingnan Normal University'),
(121671, 98371, 'zh', 'name', 'ę¹›ę±ŸåøˆčŒƒå­¦é™¢'),
(121672, 98372, 'en', 'name', 'St. Catherine University'),
(121673, 98372, 'fr', 'name', 'UniversitƩ sainte-catherine'),
(121674, 98373, 'en', 'name', 'Cambridge Regional College'),
(121675, 98374, 'en', 'name', 'Radboud University Medical Center'),
(121676, 98374, 'nl', 'name', 'Radboudumc'),
(121677, 98375, 'en', 'name', 'Catholic University of EichstƤtt-Ingolstadt'),
(121678, 98375, 'de', 'name', 'Katholische UniversitƤt EichstƤtt-Ingolstadt'),
(121679, 98376, 'en', 'name', 'San Diego State University'),
(121680, 98376, 'es', 'name', 'Universidad Estatal de San Diego'),
(121681, 98376, 'fr', 'name', 'UniversitĆ© d''Ɖtat de san diego'),
(121682, 98377, 'en', 'name', 'Kumaraguru College of Technology'),
(121683, 98378, 'en', 'name', 'California State University, Monterey Bay'),
(121684, 98379, 'en', 'name', 'Guangdong University Of Finances and Economics'),
(121685, 98379, 'zh', 'name', 'å¹æäøœå•†å­¦é™¢'),
(121686, 98380, 'en', 'name', 'Wuhan Textile University'),
(121687, 98381, 'en', 'name', 'Birkenhead Sixth Form College'),
(121688, 98382, 'en', 'name', 'Trafford College'),
(121689, 98383, 'en', 'name', 'Central University of Haryana'),
(121690, 98383, 'ne', 'name', 'हरियाणा ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121691, 98384, 'en', 'name', 'Shanghai Customs College'),
(121692, 98384, 'zh', 'name', 'äøŠęµ·ęµ·å…³å­¦é™¢'),
(121693, 98385, 'ga', 'name', 'Ollscoil TeicneolaĆ­ochta Bhaile Atha Cliath'),
(121694, 98385, 'en', 'name', 'Technological University Dublin'),
(121695, 98386, 'en', 'name', 'Savonia University of Applied Sciences'),
(121696, 98386, 'fi', 'name', 'Savonia-ammattikorkeakoulu'),
(121697, 98387, 'no_lang_code', 'name', 'Xijing University'),
(121698, 98388, 'en', 'name', 'John Paul II Catholic University of Lublin'),
(121699, 98388, 'pl', 'name', 'Katolicki Uniwersytet Lubelski Jana Pawła II'),
(121700, 98389, 'en', 'name', 'Institute for Social and Economic Change'),
(121701, 98390, 'en', 'name', 'University of Chichester'),
(121702, 98391, 'en', 'name', 'Dalarna University'),
(121703, 98391, 'sv', 'name', 'Hƶgskolan Dalarna'),
(121704, 98391, 'fi', 'name', 'Taalainmaan korkeakoulu'),
(121705, 98392, 'en', 'name', 'Florida Atlantic University'),
(121706, 98393, 'en', 'name', 'Dalian University'),
(121707, 98393, 'zh', 'name', 'å¤§čæžå¤§å­¦'),
(121708, 98394, 'en', 'name', 'Tokyo University of Pharmacy and Life Sciences'),
(121709, 98394, 'ja', 'name', 'ę±äŗ¬č–¬ē§‘å¤§å­¦'),
(121710, 98395, 'es', 'name', 'Universidad de AlcalĆ”'),
(121711, 98395, 'en', 'name', 'University of AlcalĆ”'),
(121712, 98396, 'en', 'name', 'Kangwon National University'),
(121713, 98396, 'ko', 'name', 'ź°•ģ›ėŒ€ķ•™źµ'),
(121714, 98397, 'cs', 'name', 'JihočeskĆ” VědeckĆ” Knihovna v Českých BudějovicĆ­ch'),
(121715, 98397, 'en', 'name', 'Research Library of South Bohemia'),
(121716, 98398, 'en', 'name', 'Klaipėda University'),
(121717, 98398, 'lt', 'name', 'Klaipėdos universitetas'),
(121718, 98398, 'pl', 'name', 'Uniwersytet Kłajpedzki'),
(121719, 98398, 'ru', 'name', 'КлайпеГский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(121720, 98399, 'en', 'name', 'Fujian Jiangxia University'),
(121721, 98399, 'zh', 'name', 'ē¦å»ŗę±Ÿå¤å­¦é™¢'),
(121722, 98400, 'en', 'name', 'MacEwan University'),
(121723, 98401, 'en', 'name', 'Business Academy SouthWest'),
(121724, 98402, 'en', 'name', 'International School of Management Slovakia'),
(121725, 98402, 'sk', 'name', 'VysokÔ Ŕkola medzinÔrodného podnikania ISM Slovakia v PreŔove'),
(121726, 98403, 'en', 'name', 'Ringling College of Art and Design'),
(121727, 98404, 'en', 'name', 'Institute for Fiscal Studies'),
(121728, 98405, 'en', 'name', 'California State University, Fullerton'),
(121729, 98405, 'es', 'name', 'Universidad Estatal de California'),
(121730, 98405, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  fullerton'),
(121731, 98406, 'en', 'name', 'Zhengzhou University'),
(121732, 98406, 'zh', 'name', '郑州大学'),
(121733, 98407, 'en', 'name', 'Ames National Laboratory'),
(121734, 98408, 'en', 'name', 'National Institute of Polar Research'),
(121735, 98408, 'ja', 'name', 'å›½ē«‹ę„µåœ°ē ”ē©¶ę‰€'),
(121736, 98409, 'en', 'name', 'Chuzhou University'),
(121737, 98410, 'en', 'name', 'Northeastern University'),
(121738, 98410, 'zh', 'name', 'äøœåŒ—å¤§å­¦'),
(121739, 98411, 'da', 'name', 'Roskilde Universitet'),
(121740, 98411, 'en', 'name', 'Roskilde University'),
(121741, 98412, 'en', 'name', 'Gateshead College'),
(121742, 98413, 'en', 'name', 'University of Fort Hare'),
(121743, 98414, 'en', 'name', 'Lehigh University'),
(121744, 98414, 'es', 'name', 'Universidad de Lehigh'),
(121745, 98415, 'en', 'name', 'East China University of Political Science and Law'),
(121746, 98415, 'zh', 'name', 'åŽäøœę”æę³•å¤§å­¦'),
(121747, 98416, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Grenoble'),
(121748, 98417, 'en', 'name', 'New Design University'),
(121749, 98418, 'en', 'name', 'Istanbul 29 Mayis University'),
(121750, 98419, 'en', 'name', 'University of Cumbria'),
(121751, 98420, 'en', 'name', 'Anton Bruckner Private University'),
(121752, 98420, 'de', 'name', 'Anton Bruckner PrivatuniversitƤt'),
(121753, 98421, 'en', 'name', 'University of Puget Sound'),
(121754, 98421, 'fr', 'name', 'UniversitƩ de puget sound'),
(121755, 98422, 'en', 'name', 'North Minzu University'),
(121756, 98422, 'zh', 'name', 'åŒ—ę–¹ę°‘ę—å¤§å­¦'),
(121757, 98423, 'en', 'name', 'Süleyman Demirel University'),
(121758, 98423, 'tr', 'name', 'Süleyman Demirel Üniversitesi'),
(121759, 98423, 'az', 'name', 'Süleyman Dəmirəl Universiteti'),
(121760, 98424, 'en', 'name', 'Center for Advanced Studies Research and Development in Sardinia'),
(121761, 98424, 'it', 'name', 'Centro di Ricerca, Sviluppo e Studi Superiori in Sardegna'),
(121762, 98425, 'en', 'name', 'University of Salford'),
(121763, 98426, 'en', 'name', 'Thompson Rivers University'),
(121764, 98427, 'en', 'name', 'University of Brescia'),
(121765, 98427, 'it', 'name', 'UniversitĆ  degli Studi di Brescia'),
(121766, 98427, 'de', 'name', 'UniversitƤt Brescia'),
(121767, 98427, 'fr', 'name', 'UniversitƩ de brescia'),
(121768, 98428, 'en', 'name', 'Korea Advanced Institute of Science and Technology'),
(121769, 98428, 'ko', 'name', 'ķ•œźµ­ź³¼ķ•™źø°ģˆ ģ›'),
(121770, 98429, 'en', 'name', 'Nevşehir Hacı Bektaş Veli University'),
(121771, 98429, 'tr', 'name', 'Nevşehir Üniversitesi'),
(121772, 98430, 'en', 'name', 'Liaoning Technical University'),
(121773, 98430, 'zh', 'name', 'č¾½å®å·„ēØ‹ęŠ€ęœÆå¤§å­¦'),
(121774, 98431, 'en', 'name', 'Loughborough University'),
(121775, 98431, 'cy', 'name', 'Prifysgol Loughborough'),
(121776, 98432, 'en', 'name', 'Shandong University of Science and Technology'),
(121777, 98432, 'zh', 'name', 'å±±äøœē§‘ęŠ€å¤§å­¦'),
(121778, 98433, 'en', 'name', 'Rush University Medical Center'),
(121779, 98434, 'en', 'name', 'Brooklands College'),
(121780, 98435, 'en', 'name', 'Davidson College'),
(121781, 98436, 'is', 'name', 'LandspĆ­tali'),
(121782, 98436, 'en', 'name', 'National University Hospital of Iceland'),
(121783, 98437, 'en', 'name', 'Simmons University'),
(121784, 98438, 'pt', 'name', 'Instituto PolitƩcnico da Guarda'),
(121785, 98438, 'en', 'name', 'Polytechnic of Guarda'),
(121786, 98439, 'en', 'name', 'Chaohu University'),
(121787, 98439, 'zh', 'name', '巢湖学院'),
(121788, 98440, 'en', 'name', 'North West Regional College'),
(121789, 98441, 'en', 'name', 'United International University'),
(121790, 98441, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦¾ą¦‡ą¦Ÿą§‡ą¦” ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(121791, 98442, 'es', 'name', 'Universidad de Costa Este de Maryland'),
(121792, 98442, 'en', 'name', 'University of Maryland Eastern Shore'),
(121793, 98443, 'en', 'name', 'Leiden University Medical Center'),
(121794, 98443, 'nl', 'name', 'Leids Universitair Medisch Centrum'),
(121795, 98444, 'en', 'name', 'Indian Institute of Technology Bhilai'),
(121796, 98445, 'pl', 'name', 'Politechnika Rzeszowska im. Ignacego Łukasiewicza'),
(121797, 98445, 'en', 'name', 'Rzeszów University of Technology'),
(121798, 98446, 'en', 'name', 'Guildhall School of Music and Drama'),
(121799, 98446, 'cy', 'name', 'Ysgol Gerdd a Drama y Guildhall'),
(121800, 98447, 'en', 'name', 'Kakatiya University'),
(121801, 98447, 'hi', 'name', 'ą¤•ą¤¾ą¤•ą¤¤ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121802, 98447, 'te', 'name', 'కాకతీయ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(121803, 98448, 'en', 'name', 'Maltepe University'),
(121804, 98448, 'tr', 'name', 'Maltepe Üniversitesi'),
(121805, 98449, 'fr', 'name', 'Haute Ɖcole Charlemagne'),
(121806, 98450, 'en', 'name', 'Max Planck Institute of Biochemistry'),
(121807, 98450, 'de', 'name', 'Max-Planck-Institut für Biochemie'),
(121808, 98451, 'en', 'name', 'Vaasa University of Applied Sciences'),
(121809, 98451, 'fi', 'name', 'Vaasan ammattikorkeakoulu'),
(121810, 98451, 'sv', 'name', 'Vasa yrkeshƶgskola'),
(121811, 98452, 'en', 'name', 'Kalasalingam Academy of Research and Education'),
(121812, 98452, 'ta', 'name', 'ą®•ą®²ą®šą®²ą®æą®™ąÆą®•ą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(121813, 98453, 'en', 'name', 'Angelo State University'),
(121814, 98454, 'nl', 'name', 'Integraal Kankercentrum Nederland'),
(121815, 98454, 'en', 'name', 'Netherlands Comprehensive Cancer Organisation'),
(121816, 98455, 'fr', 'name', 'Haute Ɖcole LĆ©onard de Vinci'),
(121817, 98456, 'en', 'name', 'Cardiff and Vale College'),
(121818, 98456, 'cy', 'name', 'Coleg Caerdydd a''r Fro'),
(121819, 98457, 'en', 'name', 'Beijing University of Technology'),
(121820, 98457, 'zh', 'name', 'åŒ—äŗ¬å·„äøšå¤§å­¦'),
(121821, 98458, 'en', 'name', 'Zhengzhou Business University'),
(121822, 98458, 'zh', 'name', '郑州商学院'),
(121823, 98459, 'en', 'name', 'Central University of Jammu'),
(121824, 98460, 'en', 'name', 'South Gloucestershire and Stroud College'),
(121825, 98461, 'en', 'name', 'University of Gloucestershire'),
(121826, 98462, 'en', 'name', 'Beijing Union University'),
(121827, 98462, 'zh', 'name', 'åŒ—äŗ¬č”åˆå¤§å­¦'),
(121828, 98463, 'nl', 'name', 'Nederlands Instituut voor Onderzoek van de Gezondheidszorg'),
(121829, 98463, 'en', 'name', 'Netherlands Institute for Health Services Research'),
(121830, 98464, 'en', 'name', 'Fudan University'),
(121831, 98464, 'zh', 'name', 'å¤ę—¦å¤§å­¦'),
(121832, 98465, 'pt', 'name', 'Asociacion Centro De Investigacion Cooperativa En Biociencias'),
(121833, 98465, 'es', 'name', 'CIC bioGUNE'),
(121834, 98465, 'en', 'name', 'Center for Cooperative Research in Biosciences'),
(121835, 98466, 'nl', 'name', 'NHL Stenden Hogeschool'),
(121836, 98466, 'en', 'name', 'NHL Stenden University of Applied Sciences'),
(121837, 98467, 'en', 'name', 'Khulna University of Engineering and Technology'),
(121838, 98467, 'bn', 'name', 'খুলনা ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(121839, 98468, 'en', 'name', 'Xi''an University of Architecture and Technology'),
(121840, 98468, 'zh', 'name', 'č„æå®‰å»ŗē­‘ē§‘ęŠ€å¤§å­¦'),
(121841, 98469, 'en', 'name', 'South China Normal University'),
(121842, 98469, 'zh', 'name', 'åŽå—åøˆčŒƒå¤§å­¦'),
(121843, 98470, 'en', 'name', 'Eskisehir Technical University'),
(121844, 98470, 'tr', 'name', 'Eskişehir Teknik Üniversitesi'),
(121845, 98471, 'en', 'name', 'Coleg Cambria'),
(121846, 98472, 'en', 'name', 'Bahçeşehir University'),
(121847, 98472, 'tr', 'name', 'Bahçeşehir Üniversitesi'),
(121848, 98473, 'en', 'name', 'Krakow University of Economics'),
(121849, 98473, 'pl', 'name', 'Uniwersytet Ekonomiczny w Krakowie'),
(121850, 98474, 'nl', 'name', 'Zuyd Hogeschool'),
(121851, 98474, 'en', 'name', 'Zuyd University of Applied Sciences'),
(121852, 98475, 'en', 'name', 'PSG INSTITUTE OF TECHNOLOGY AND APPLIED RESEARCH'),
(121853, 98475, 'ta', 'name', 'பி ą®Žą®øąÆ ஜி ą®ą®ŸąÆ†ą®•ąÆ'),
(121854, 98476, 'en', 'name', 'Colchester Institute'),
(121855, 98477, 'en', 'name', 'Veer Narmad South Gujarat University'),
(121856, 98477, 'gu', 'name', 'વીર ąŖØąŖ°ą«ąŖ®ąŖ¦ ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(121857, 98478, 'lt', 'name', 'Lietuvos Muzikos ir Teatro Akademija'),
(121858, 98478, 'en', 'name', 'Lithuanian Academy of Music and Theatre'),
(121859, 98478, 'ru', 'name', 'Š›ŠøŃ‚Š¾Š²ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø Šø театра'),
(121860, 98479, 'en', 'name', 'Connecticut College'),
(121861, 98480, 'en', 'name', 'Atlantic University'),
(121862, 98480, 'pt', 'name', 'Atlântica Instituto UniversitÔrio'),
(121863, 98481, 'en', 'name', 'Lublin University of Technology'),
(121864, 98481, 'pl', 'name', 'Politechnika Lubelska'),
(121865, 98482, 'en', 'name', 'Medical College of Wisconsin'),
(121866, 98483, 'en', 'name', 'Singapore Advanced Research and Education Network'),
(121867, 98484, 'hu', 'name', 'HUN-REN Szegedi Biológiai Kutatóközpont'),
(121868, 98485, 'en', 'name', 'Harbin University of Science and Technology'),
(121869, 98485, 'zh', 'name', 'å“ˆå°”ę»Øē†å·„å¤§å­¦'),
(121870, 98486, 'en', 'name', 'Syracuse University'),
(121871, 98486, 'es', 'name', 'Universidad de Siracusa'),
(121872, 98486, 'fr', 'name', 'UniversitƩ de syracuse'),
(121873, 98487, 'en', 'name', 'City of Wolverhampton College'),
(121874, 98488, 'en', 'name', 'National Institute of Technology Tiruchirappalli'),
(121875, 98488, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(121876, 98488, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(121877, 98488, 'te', 'name', 'ą°Øą±‡ą°·ą°Øą°²ą± ą°‡ą°Øą± ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€'),
(121878, 98489, 'en', 'name', 'Istanbul Commerce University'),
(121879, 98489, 'tr', 'name', 'İstanbul Ticaret Üniversitesi'),
(121880, 98489, 'az', 'name', 'İstanbul Ticarət Universiteti'),
(121881, 98490, 'en', 'name', 'Lakehead University'),
(121882, 98490, 'fr', 'name', 'UniversitƩ de lakehead'),
(121883, 98491, 'en', 'name', 'Guangdong Pharmaceutical University'),
(121884, 98491, 'zh', 'name', 'å¹æäøœčÆå­¦é™¢'),
(121885, 98492, 'en', 'name', 'Naif Arab University for Security Sciences'),
(121886, 98492, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†Ų§ŁŠŁ Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų£Ł…Ł†ŁŠŲ©'),
(121887, 98493, 'en', 'name', 'Shaoxing University'),
(121888, 98493, 'zh', 'name', 'ē»å…“ę–‡ē†å­¦é™¢'),
(121889, 98494, 'en', 'name', 'University of Bridgeport'),
(121890, 98495, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de l''Ɖlectronique et de ses Applications'),
(121891, 98496, 'sw', 'name', 'Chuo Kikuu cha Kenyatta'),
(121892, 98496, 'en', 'name', 'Kenyatta University'),
(121893, 98497, 'en', 'name', 'Northern College'),
(121894, 98498, 'en', 'name', 'Chapman University'),
(121895, 98499, 'en', 'name', 'Vancouver Island University'),
(121896, 98500, 'en', 'name', 'Inner Mongolia University of Technology'),
(121897, 98500, 'zh', 'name', 'å†…č’™å¤å·„äøšå¤§å­¦'),
(121898, 98501, 'en', 'name', 'Ruskin College'),
(121899, 98502, 'en', 'name', 'Atilim University'),
(121900, 98502, 'tr', 'name', 'Atılım Üniversitesi'),
(121901, 98503, 'en', 'name', 'Salford City College'),
(121902, 98504, 'en', 'name', 'Guilin Medical University'),
(121903, 98504, 'zh', 'name', 'ę”‚ęž—åŒ»å­¦é™¢'),
(121904, 98505, 'en', 'name', 'Southwest Petroleum University'),
(121905, 98505, 'zh', 'name', 'č„æå—ēŸ³ę²¹å¤§å­¦'),
(121906, 98506, 'en', 'name', 'Xi’an University of Posts and Telecommunications'),
(121907, 98506, 'zh', 'name', '脿安邮电大学'),
(121908, 98507, 'en', 'name', 'National Institute of Technology Jamshedpur'),
(121909, 98507, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤œą¤®ą¤¶ą„‡ą¤¦ą¤Ŗą„ą¤°'),
(121910, 98508, 'en', 'name', 'Tomas Bata University in ZlĆ­n'),
(121911, 98508, 'cs', 'name', 'Univerzita TomÔŔe Bati ve ZlĆ­ně'),
(121912, 98509, 'en', 'name', 'Laurea University of Applied Sciences'),
(121913, 98510, 'de', 'name', 'Evangelische Hochschule Nürnberg'),
(121914, 98510, 'en', 'name', 'Lutheran University of Applied Sciences Nuremberg'),
(121915, 98511, 'en', 'name', 'Guizhou Normal University'),
(121916, 98511, 'zh', 'name', 'č“µå·žåøˆčŒƒå¤§å­¦'),
(121917, 98512, 'en', 'name', 'Film University Babelsberg KONRAD WOLF'),
(121918, 98512, 'de', 'name', 'FilmuniversitƤt Babelsberg KONRAD WOLF'),
(121919, 98513, 'en', 'name', 'Tongling University'),
(121920, 98513, 'zh', 'name', '铜陵学院'),
(121921, 98514, 'en', 'name', 'Armed Forces Academy'),
(121922, 98515, 'en', 'name', 'Jiangsu University'),
(121923, 98515, 'zh', 'name', 'ę±Ÿč‹å¤§å­¦'),
(121924, 98516, 'en', 'name', 'Istanbul Technical University'),
(121925, 98516, 'tr', 'name', 'İstanbul Teknik Üniversitesi'),
(121926, 98516, 'az', 'name', 'İstanbul Texniki Universiteti'),
(121927, 98517, 'en', 'name', 'Sanjiang University'),
(121928, 98517, 'zh', 'name', 'äø‰ę±Ÿå­¦é™¢'),
(121929, 98518, 'en', 'name', 'Western Sydney University'),
(121930, 98519, 'en', 'name', 'Democritus University of Thrace'),
(121931, 98519, 'fr', 'name', 'UniversitƩ dƩmocrite de thrace'),
(121932, 98519, 'el', 'name', 'Δημοκρίτειο Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī˜ĻĪ¬ĪŗĪ·Ļ‚'),
(121933, 98520, 'en', 'name', 'Emily Carr University of Art and Design'),
(121934, 98521, 'en', 'name', 'University of Derby'),
(121935, 98522, 'en', 'name', 'Dalian Neusoft University of Information'),
(121936, 98522, 'zh', 'name', 'å¤§čæžäøœč½Æäæ”ęÆå¤§å­¦'),
(121937, 98523, 'en', 'name', 'National Engineering School of Saint-Ɖtienne'),
(121938, 98523, 'fr', 'name', 'Ɖcole Nationale d''IngĆ©nieurs de Saint-Ɖtienne'),
(121939, 98524, 'en', 'name', 'Sultan Zainal Abidin University'),
(121940, 98524, 'ms', 'name', 'Universiti Sultan Zainal Abidin'),
(121941, 98525, 'en', 'name', 'Marine Biological Laboratory'),
(121942, 98526, 'en', 'name', 'Taif University'),
(121943, 98526, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الطائف'),
(121944, 98527, 'en', 'name', 'Sparsholt College'),
(121945, 98528, 'en', 'name', 'Colgate University'),
(121946, 98528, 'es', 'name', 'Universidad Colgate'),
(121947, 98528, 'fr', 'name', 'UniversitƩ de colgate'),
(121948, 98529, 'en', 'name', 'Catholic University in Ruzomberok'),
(121949, 98529, 'sk', 'name', 'Katolícka univerzita v Ružomberku'),
(121950, 98530, 'cs', 'name', 'TechnologickÔ agentura České republiky'),
(121951, 98530, 'en', 'name', 'Technology Agency of the Czech Republic'),
(121952, 98531, 'en', 'name', 'Fanshawe College'),
(121953, 98532, 'en', 'name', 'Yangzhou University'),
(121954, 98532, 'zh', 'name', 'ę‰¬å·žå¤§å­¦'),
(121955, 98533, 'tr', 'name', 'Ankara Müzik ve Güzel Sanatlar Üniversitesi'),
(121956, 98533, 'en', 'name', 'Ankara University of Music and Fine Arts'),
(121957, 98534, 'en', 'name', 'Suzhou University of Science and Technology'),
(121958, 98534, 'zh', 'name', 'č‹å·žē§‘ęŠ€å­¦é™¢'),
(121959, 98535, 'en', 'name', 'Xi''an University of Finance and Economics'),
(121960, 98535, 'zh', 'name', 'č„æå®‰č“¢ē»å­¦é™¢'),
(121961, 98536, 'en', 'name', 'The Open University'),
(121962, 98536, 'cy', 'name', 'Y Brifysgol Agored'),
(121963, 98537, 'en', 'name', 'Antalya Bilim University'),
(121964, 98537, 'tr', 'name', 'Antalya Bilim Üniversitesi'),
(121965, 98538, 'fr', 'name', 'Observatoire de la CĆ“te d’Azur'),
(121966, 98539, 'ca', 'name', 'Biblioteca Nacional d''Espanya'),
(121967, 98539, 'es', 'name', 'Biblioteca Nacional de EspaƱa'),
(121968, 98539, 'eu', 'name', 'Espainiako Liburutegi Nazionala'),
(121969, 98539, 'en', 'name', 'National Library of Spain'),
(121970, 98540, 'en', 'name', 'Jinling Institute of Technology'),
(121971, 98540, 'zh', 'name', 'é‡‘é™µē§‘ęŠ€å­¦é™¢'),
(121972, 98541, 'en', 'name', 'Western Oregon University'),
(121973, 98542, 'en', 'name', 'Minjiang University'),
(121974, 98542, 'zh', 'name', 'é—½ę±Ÿå­¦é™¢'),
(121975, 98543, 'en', 'name', 'University of New York in Prague'),
(121976, 98544, 'en', 'name', 'Sapientia College of Theology of Religious Orders'),
(121977, 98544, 'hu', 'name', 'Sapientia Szerzetesi HittudomĆ”nyi Főiskola'),
(121978, 98545, 'en', 'name', 'Hainan University'),
(121979, 98545, 'zh', 'name', 'ęµ·å—å¤§å­¦'),
(121980, 98546, 'en', 'name', 'Pamukkale University'),
(121981, 98546, 'tr', 'name', 'Pamukkale Üniversitesi'),
(121982, 98547, 'en', 'name', 'Nirma University'),
(121983, 98547, 'gu', 'name', 'નિરમા ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(121984, 98548, 'en', 'name', 'Rikkyo University'),
(121985, 98548, 'ja', 'name', '立教大学'),
(121986, 98549, 'en', 'name', 'California State University, Stanislaus'),
(121987, 98549, 'fr', 'name', 'UniversitƩ d''Ʃtat de californie Ơ stanislaus'),
(121988, 98550, 'en', 'name', 'City University of Macau'),
(121989, 98550, 'pt', 'name', 'Universidade da Cidade de Macau'),
(121990, 98550, 'zh', 'name', 'ę¾³é–€åŸŽåø‚å¤§å­ø'),
(121991, 98551, 'da', 'name', 'Erhvervsakademi MidtVest'),
(121992, 98552, 'en', 'name', 'Vocational Training Council'),
(121993, 98552, 'zh', 'name', '職愭訓緓局'),
(121994, 98553, 'tr', 'name', 'Fatih Sultan Mehmet Vakıf Üniversitesi'),
(121995, 98553, 'en', 'name', 'Fatih Sultan Mehmet Waqf University'),
(121996, 98554, 'en', 'name', 'Sichuan Normal University'),
(121997, 98554, 'zh', 'name', 'å››å·åøˆčŒƒå¤§å­¦'),
(121998, 98555, 'nl', 'name', 'Koninklijke Academie van Beeldende Kunsten'),
(121999, 98555, 'en', 'name', 'Royal Academy of Art'),
(122000, 98556, 'en', 'name', 'Jiangnan University'),
(122001, 98556, 'zh', 'name', 'ę±Ÿå—å¤§å­¦'),
(122002, 98557, 'nl', 'name', 'Hogeschool West-Vlaanderen'),
(122003, 98557, 'en', 'name', 'University College West Flanders'),
(122004, 98558, 'en', 'name', 'Xuzhou University of Technology'),
(122005, 98558, 'zh', 'name', 'å¾å·žå·„ēØ‹å­¦é™¢'),
(122006, 98559, 'en', 'name', 'Indian Institute of Engineering Science and Technology, Shibpur'),
(122007, 98559, 'hi', 'name', 'बंगाल ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(122008, 98559, 'bn', 'name', 'ą¦¬ą§‡ą¦™ą§ą¦—ą¦² ą¦‡ą¦žą§ą¦œą¦æą¦Øą¦æą¦Æą¦¼ą¦¾ą¦°ą¦æą¦‚ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(122009, 98560, 'en', 'name', 'Berlin-Brandenburg Academy of Sciences and Humanities'),
(122010, 98560, 'de', 'name', 'Berlin-Brandenburgische Akademie der Wissenschaften'),
(122011, 98561, 'en', 'name', 'SOAS University of London'),
(122012, 98561, 'cy', 'name', 'SOAS, Prifysgol Llundain'),
(122013, 98562, 'en', 'name', 'Dicle University'),
(122014, 98562, 'tr', 'name', 'Dicle Üniversitesi'),
(122015, 98563, 'en', 'name', 'City College Norwich'),
(122016, 98564, 'en', 'name', 'University of Music and Performing Arts Graz'),
(122017, 98564, 'de', 'name', 'Universität für Musik und darstellende Kunst Graz'),
(122018, 98565, 'fi', 'name', 'Lapin yliopisto'),
(122019, 98565, 'sv', 'name', 'Lapplands universitet'),
(122020, 98565, 'en', 'name', 'University of Lapland'),
(122021, 98566, 'en', 'name', 'Max Planck Institute for Chemical Ecology'),
(122022, 98566, 'de', 'name', 'Max-Planck-Institut für Chemische Ɩkologie'),
(122023, 98567, 'en', 'name', 'Indian Institute of Technology Palakkad'),
(122024, 98567, 'ml', 'name', 'ą“Ŗą“¾ą“²ą“•ąµą“•ą“¾ą“Ÿąµ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ą“æą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(122025, 98568, 'en', 'name', 'British Universities Film & Video Council'),
(122026, 98569, 'en', 'name', 'Southwestern University'),
(122027, 98570, 'en', 'name', 'Ionian University'),
(122028, 98570, 'fr', 'name', 'UniversitƩ ionienne'),
(122029, 98570, 'el', 'name', 'Ī™ĻŒĪ½Ī¹Īæ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(122030, 98571, 'en', 'name', 'General Sir John Kotelawala Defence University'),
(122031, 98571, 'ta', 'name', 'ą®œąÆ†ą®©ą®°ą®²ąÆ ą®šąÆ‡ą®°ąÆ ą®œąÆ‹ą®©ąÆ ą®•ąÆŠą®¤ąÆą®¤ą®²ą®¾ą®µą®² ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ą®¾ą®©ą®¤ąÆ'),
(122032, 98571, 'si', 'name', 'ą¶¢ą·™ą¶±ą¶»ą·ą¶½ą·Š ą·ą·Šā€ą¶»ą·“ą¶øą¶­ą·Š ą¶¢ą·ą¶±ą·Š ą¶šą·œą¶­ą¶½ą·ą·€ą¶½ ą¶†ą¶»ą¶šą·Šą·‚ą¶š ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(122033, 98572, 'en', 'name', 'Kingston University'),
(122034, 98573, 'en', 'name', 'Shanghai Ocean University'),
(122035, 98573, 'zh', 'name', 'äøŠęµ·ęµ·ę“‹å¤§å­¦'),
(122036, 98574, 'en', 'name', 'German University of Technology'),
(122037, 98574, 'ar', 'name', 'تسعى الجامعة Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(122038, 98575, 'hu', 'name', 'NyƭregyhƔzi Egyetem'),
(122039, 98575, 'en', 'name', 'University of NyƭregyhƔza'),
(122040, 98576, 'en', 'name', 'Renmin University of China'),
(122041, 98576, 'zh', 'name', '中国人民大学'),
(122042, 98577, 'en', 'name', 'Royal College of Music'),
(122043, 98577, 'cy', 'name', 'Y Coleg Cerddoriaeth Brenhinol'),
(122044, 98578, 'en', 'name', 'Netherlands Institute for Social Research'),
(122045, 98579, 'en', 'name', 'Cyprus Research and Academic Network'),
(122046, 98580, 'en', 'name', 'Florida International University'),
(122047, 98580, 'es', 'name', 'Universidad Internacional de Florida'),
(122048, 98580, 'fr', 'name', 'UniversitƩ internationale de floride'),
(122049, 98581, 'en', 'name', 'Courtauld Institute of Art'),
(122050, 98581, 'cy', 'name', 'Sefydliad Celf Courtauld'),
(122051, 98582, 'en', 'name', 'Northeast Normal University'),
(122052, 98582, 'zh', 'name', 'äøœåŒ—åøˆčŒƒå¤§å­¦'),
(122053, 98583, 'en', 'name', 'Hungarian University of Fine Arts'),
(122054, 98583, 'hu', 'name', 'Magyar KĆ©pzőművĆ©szeti Egyetem'),
(122055, 98584, 'en', 'name', 'Kadir Has University'),
(122056, 98584, 'tr', 'name', 'Kadir Has Üniversitesi'),
(122057, 98585, 'en', 'name', 'University of Białystok'),
(122058, 98585, 'pl', 'name', 'Uniwersytet w Białymstoku'),
(122059, 98586, 'no_lang_code', 'name', 'Curio'),
(122060, 98586, 'nl', 'name', 'Stichting ROC West-Brabant'),
(122061, 98587, 'en', 'name', 'Zhongyuan University of Technology'),
(122062, 98587, 'zh', 'name', 'äø­åŽŸå·„å­¦é™¢'),
(122063, 98588, 'en', 'name', 'Barnfield College'),
(122064, 98589, 'pt', 'name', 'Escola Superior de Enfermagem de Coimbra'),
(122065, 98589, 'en', 'name', 'Nursing School of Coimbra'),
(122066, 98590, 'en', 'name', 'Jan Kochanowski University'),
(122067, 98590, 'pl', 'name', 'Uniwersytet Jana Kochanowskiego w Kielcach'),
(122068, 98591, 'en', 'name', 'Wuhu Institute of Technology'),
(122069, 98591, 'zh', 'name', 'čŠœę¹–å·„å­¦é™¢'),
(122070, 98592, 'en', 'name', 'British Columbia Institute of Technology'),
(122071, 98592, 'fr', 'name', 'Institut de technologie de la colombie-britannique'),
(122072, 98593, 'en', 'name', 'Nicolaus Copernicus University'),
(122073, 98593, 'pl', 'name', 'Uniwersytet Mikołaja Kopernika w Toruniu'),
(122074, 98594, 'en', 'name', 'Liaoning University of Traditional Chinese Medicine'),
(122075, 98594, 'zh', 'name', 'č¾½å®äø­åŒ»čÆå¤§å­¦'),
(122076, 98595, 'en', 'name', 'Frederick University'),
(122077, 98596, 'en', 'name', 'University College Prague'),
(122078, 98597, 'en', 'name', 'Lafayette College'),
(122079, 98598, 'en', 'name', 'Ball State University'),
(122080, 98598, 'es', 'name', 'Universidad Estatal Ball'),
(122081, 98599, 'en', 'name', 'Oxford Brookes University'),
(122082, 98599, 'cy', 'name', 'Prifysgol Brookes Rhydychen'),
(122083, 98600, 'en', 'name', 'Zhejiang University of Technology'),
(122084, 98600, 'zh', 'name', 'ęµ™ę±Ÿå·„äøšå¤§å­¦'),
(122085, 98601, 'en', 'name', 'Dublin Institute For Advanced Studies'),
(122086, 98601, 'ga', 'name', 'Institiúid Ard-Léinn Bhaile Átha Cliath'),
(122087, 98602, 'en', 'name', 'Indian Institute of Information Technology, Design and Manufacturing, Kancheepuram'),
(122088, 98603, 'it', 'name', 'IRCCS Eugenio Medea'),
(122089, 98604, 'en', 'name', 'Shanxi University of Finance and Economics'),
(122090, 98604, 'zh', 'name', 'å±±č„æč“¢ē»å¤§å­¦'),
(122091, 98605, 'en', 'name', 'Masaryk Memorial Cancer Institute'),
(122092, 98606, 'en', 'name', 'Lincoln University'),
(122093, 98606, 'mi', 'name', 'Te Whare Wanaka o Aoraki'),
(122094, 98607, 'es', 'name', 'Universidad de Misisipi'),
(122095, 98607, 'en', 'name', 'University of Mississippi'),
(122096, 98607, 'fr', 'name', 'UniversitƩ du Mississippi'),
(122097, 98608, 'en', 'name', 'Kean University'),
(122098, 98609, 'en', 'name', 'Oaklands College'),
(122099, 98610, 'es', 'name', 'Universidad del Norte de Florida'),
(122100, 98610, 'en', 'name', 'University of North Florida'),
(122101, 98611, 'en', 'name', 'University of Wolverhampton'),
(122102, 98612, 'en', 'name', 'University College of Arts Crafts and Design'),
(122103, 98613, 'en', 'name', 'Rose Bruford College'),
(122104, 98614, 'fi', 'name', 'SeinƤjoen ammattikorkeakoulu'),
(122105, 98614, 'en', 'name', 'SeinƤjoki University of Applied Sciences'),
(122106, 98615, 'en', 'name', 'Nanjing University of Chinese Medicine'),
(122107, 98615, 'zh', 'name', 'å—äŗ¬äø­åŒ»čÆå¤§å­¦'),
(122108, 98616, 'en', 'name', 'Kajaani University of Applied Sciences'),
(122109, 98616, 'fi', 'name', 'Kajaanin ammattikorkeakoulu'),
(122110, 98617, 'en', 'name', 'Kingston Maurward College'),
(122111, 98618, 'en', 'name', 'Yalova University'),
(122112, 98618, 'tr', 'name', 'Yalova Üniversitesi'),
(122113, 98619, 'en', 'name', 'Nanjing University of Aeronautics and Astronautics'),
(122114, 98619, 'zh', 'name', 'å—äŗ¬čˆŖē©ŗčˆŖå¤©å¤§å­¦'),
(122115, 98620, 'en', 'name', 'Halesowen College'),
(122116, 98621, 'en', 'name', 'Xinjiang University of Finance and Economics');
INSERT INTO `ror_settings` VALUES
(122117, 98621, 'zh', 'name', 'ę–°ē–†č“¢ē»å¤§å­¦'),
(122118, 98622, 'hu', 'name', 'A Tan Kapuja Buddhista Főiskola'),
(122119, 98622, 'en', 'name', 'Dharma Gate Buddhist College'),
(122120, 98623, 'en', 'name', 'Agricultural University of Iceland'),
(122121, 98623, 'is', 'name', 'LandbĆŗnaưarhĆ”skóli ƍslands'),
(122122, 98624, 'en', 'name', 'University of Lincoln'),
(122123, 98625, 'en', 'name', 'Inter University Computation Centre'),
(122124, 98625, 'he', 'name', '×ž×Ø×›×– החישובים הבין-××•× ×™×‘×Ø×”×™×˜××™'),
(122125, 98626, 'en', 'name', 'London School of Theology'),
(122126, 98627, 'en', 'name', 'Santa Clara University'),
(122127, 98627, 'es', 'name', 'Universidad de Santa Clara'),
(122128, 98627, 'fr', 'name', 'UniversitƩ de santa clara'),
(122129, 98628, 'en', 'name', 'Shanghai Dianji University'),
(122130, 98628, 'zh', 'name', 'äøŠęµ·ē”µęœŗå­¦é™¢'),
(122131, 98629, 'en', 'name', 'Stevenson University'),
(122132, 98630, 'en', 'name', 'Princess MƔxima Center'),
(122133, 98630, 'nl', 'name', 'Prinses MƔxima Centrum'),
(122134, 98631, 'tr', 'name', 'TOBB Ekonomi ve Teknoloji Üniversitesi'),
(122135, 98631, 'en', 'name', 'TOBB University of Economics and Technology'),
(122136, 98631, 'az', 'name', 'TOBB İqtisadiyyat və Texnologiya Universiteti'),
(122137, 98632, 'en', 'name', 'Elon University'),
(122138, 98633, 'en', 'name', 'Huanghuai University'),
(122139, 98633, 'zh', 'name', '黄淮学院'),
(122140, 98634, 'en', 'name', 'Gdańsk University of Technology'),
(122141, 98634, 'pl', 'name', 'Politechnika Gdańska'),
(122142, 98635, 'en', 'name', 'Henan University of Urban Construction'),
(122143, 98635, 'zh', 'name', 'ę²³å—åŸŽå»ŗå­¦é™¢'),
(122144, 98636, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Nancy'),
(122145, 98637, 'en', 'name', 'Halmstad University'),
(122146, 98637, 'sv', 'name', 'Hƶgskolan i Halmstad'),
(122147, 98638, 'it', 'name', 'Istituto Zooprofilattico Sperimentale dell''Abruzzo e del Molise G. Caporale'),
(122148, 98639, 'ga', 'name', 'Ollscoil Teicneolaƭochta na Sionainne: LƔr Tƭre Iarthar LƔir'),
(122149, 98639, 'en', 'name', 'Technological University of the Shannon: Midlands Midwest'),
(122150, 98640, 'en', 'name', 'Karamanoğlu Mehmetbey University'),
(122151, 98640, 'tr', 'name', 'Karamanoğlu Mehmetbey Üniversitesi'),
(122152, 98641, 'en', 'name', 'Guangzhou Academy of Fine Arts'),
(122153, 98641, 'zh', 'name', 'å¹æå·žē¾ŽęœÆå­¦é™¢'),
(122154, 98642, 'en', 'name', 'Tarleton State University'),
(122155, 98642, 'fr', 'name', 'UniversitĆ© d''Ɖtat de tarleton'),
(122156, 98643, 'en', 'name', 'Majan College'),
(122157, 98644, 'en', 'name', 'University of Jaffna'),
(122158, 98644, 'ta', 'name', 'ą®Æą®¾ą®“ąÆą®ŖąÆą®Ŗą®¾ą®£ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(122159, 98644, 'si', 'name', 'ą¶ŗą·ą¶“ą¶±ą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(122160, 98645, 'en', 'name', 'Kutztown University'),
(122161, 98646, 'de', 'name', 'Deutsches Forschungszentrum für Künstliche Intelligenz'),
(122162, 98646, 'en', 'name', 'German Research Centre for Artificial Intelligence'),
(122163, 98647, 'en', 'name', 'Longley Park Sixth Form College'),
(122164, 98648, 'en', 'name', 'Carleton College'),
(122165, 98649, 'en', 'name', 'Jawaharlal Nehru University'),
(122166, 98649, 'hi', 'name', 'जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(122167, 98649, 'pa', 'name', 'ਜਵਾਹਿਰ ਲਾਲ ਨਹਿਰੂ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€, ਨਵੀਂ ਦਿੱਲੀ'),
(122168, 98649, 'ta', 'name', 'ą®œą®µą®•ą®°ąÆą®²ą®¾ą®²ąÆ நேரு ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(122169, 98649, 'te', 'name', 'ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(122170, 98649, 'kn', 'name', 'ą²œą²µą²¾ą²¹ą²°ą²²ą²¾ą²²ą³ ನೆಹರು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(122171, 98649, 'ml', 'name', 'ą“œą“µą“¹ąµ¼ą“²ą“¾ąµ½ ą“Øąµ†ą“¹ąµą“°ąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(122172, 98650, 'en', 'name', 'Shiv Nadar University'),
(122173, 98651, 'en', 'name', 'Shanxi Medical University'),
(122174, 98651, 'zh', 'name', 'å±±č„æåŒ»ē§‘å¤§å­¦'),
(122175, 98652, 'en', 'name', 'Tartu Health Care College'),
(122176, 98652, 'et', 'name', 'Tartu Tervishoiu kƵrgkool'),
(122177, 98653, 'pt', 'name', 'Instituto PortuguĆŖs do Mar e da Atmosfera'),
(122178, 98653, 'en', 'name', 'Portuguese Sea and Atmosphere Institute'),
(122179, 98654, 'de', 'name', 'FZI Forschungszentrum Informatik'),
(122180, 98654, 'en', 'name', 'FZI Research Center for Information Technology'),
(122181, 98655, 'en', 'name', 'Technological University of Pereira'),
(122182, 98655, 'es', 'name', 'Universidad Tecnológica de Pereira'),
(122183, 98656, 'en', 'name', 'North East Surrey College of Technology'),
(122184, 98657, 'en', 'name', 'Guangzhou University'),
(122185, 98657, 'zh', 'name', 'å¹æå·žå¤§å­¦'),
(122186, 98658, 'en', 'name', 'Stockholm University of the Arts'),
(122187, 98658, 'sv', 'name', 'Stockholms KonstnƤrliga Hƶgskola'),
(122188, 98659, 'en', 'name', 'Hebei Agricultural University'),
(122189, 98659, 'zh', 'name', 'ę²³åŒ—å†œäøšå¤§å­¦'),
(122190, 98660, 'en', 'name', 'California State University, San Bernardino'),
(122191, 98660, 'es', 'name', 'Universidad Estatal de California, San Bernardino'),
(122192, 98661, 'en', 'name', 'Beijing University of Agriculture'),
(122193, 98661, 'zh', 'name', 'åŒ—äŗ¬å†œå­¦é™¢'),
(122194, 98662, 'en', 'name', 'Ƈanakkale Onsekiz Mart University'),
(122195, 98662, 'tr', 'name', 'Ƈanakkale Onsekiz Mart Ɯniversitesi'),
(122196, 98663, 'en', 'name', 'North Island College'),
(122197, 98664, 'en', 'name', 'University of North Georgia'),
(122198, 98665, 'en', 'name', 'Tianjin University of Finance and Economics'),
(122199, 98665, 'zh', 'name', 'å¤©ę“„č“¢ē»å¤§å­¦'),
(122200, 98666, 'ms', 'name', 'Politeknik Tuanku Syed Sirajuddin'),
(122201, 98667, 'en', 'name', 'Fujian Medical University'),
(122202, 98667, 'zh', 'name', 'ē¦å»ŗåŒ»ē§‘å¤§å­¦'),
(122203, 98668, 'sk', 'name', 'PreŔovskÔ univerzita v PreŔove'),
(122204, 98668, 'en', 'name', 'University of PreŔov'),
(122205, 98669, 'en', 'name', 'Van Yuzuncu Yil University'),
(122206, 98669, 'tr', 'name', 'Van Yüzüncü Yıl Üniversitesi'),
(122207, 98670, 'hu', 'name', 'SzƩchenyi IstvƔn Egyetem'),
(122208, 98670, 'en', 'name', 'SzƩchenyi IstvƔn University'),
(122209, 98671, 'fi', 'name', 'Turun yliopisto'),
(122210, 98671, 'en', 'name', 'University of Turku'),
(122211, 98671, 'sv', 'name', 'ƅbo universitet'),
(122212, 98672, 'da', 'name', 'Det Kongelige Bibliotek'),
(122213, 98672, 'en', 'name', 'Royal Danish Library'),
(122214, 98673, 'en', 'name', 'University of South China'),
(122215, 98673, 'zh', 'name', '南华大学'),
(122216, 98674, 'en', 'name', 'Hebei University'),
(122217, 98674, 'zh', 'name', 'ę²³åŒ—å¤§å­¦'),
(122218, 98675, 'en', 'name', 'International University of La Rioja'),
(122219, 98675, 'es', 'name', 'Universidad Internacional De La Rioja'),
(122220, 98676, 'en', 'name', 'Zhejiang Ocean University'),
(122221, 98676, 'zh', 'name', 'ęµ™ę±Ÿęµ·ę“‹å­¦é™¢'),
(122222, 98677, 'sk', 'name', 'VysokÔ Ŕkola manažmentu, City University of Seattle'),
(122223, 98678, 'en', 'name', 'Stevens Institute of Technology'),
(122224, 98679, 'en', 'name', 'Jaume I University'),
(122225, 98679, 'es', 'name', 'Universidad Jaime I'),
(122226, 98679, 'ca', 'name', 'Universitat Jaume I'),
(122227, 98680, 'en', 'name', 'Wuhan University of Technology'),
(122228, 98680, 'zh', 'name', '武汉理巄大学'),
(122229, 98681, 'en', 'name', 'Academy of Media Arts Cologne'),
(122230, 98681, 'de', 'name', 'Kunsthochschule für Medien Köln'),
(122231, 98682, 'en', 'name', 'Wentworth Institute of Technology'),
(122232, 98683, 'en', 'name', 'University of Niigata Prefecture'),
(122233, 98683, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹å¤§å­¦'),
(122234, 98684, 'en', 'name', 'Pohang University of Science and Technology'),
(122235, 98684, 'ko', 'name', 'ķ¬ķ•­ź³µź³¼ėŒ€ķ•™źµ'),
(122236, 98685, 'cs', 'name', 'KrajskĆ” vědeckĆ” knihovna v Liberci, příspěvkovĆ” organizace'),
(122237, 98685, 'en', 'name', 'Regional Research Library in Liberec'),
(122238, 98686, 'en', 'name', 'Wuhan Conservatory of Music'),
(122239, 98686, 'zh', 'name', 'ę­¦ę±‰éŸ³ä¹å­¦é™¢'),
(122240, 98687, 'en', 'name', 'West Anhui University'),
(122241, 98687, 'zh', 'name', 'ēš–č„æå­¦é™¢'),
(122242, 98688, 'en', 'name', 'Heilongjiang University of Chinese Medicine'),
(122243, 98689, 'en', 'name', 'Fujian Agriculture and Forestry University'),
(122244, 98689, 'zh', 'name', 'ē¦å»ŗå†œęž—å¤§å­¦'),
(122245, 98690, 'en', 'name', 'National Law University Odisha'),
(122246, 98691, 'en', 'name', 'Florida Gulf Coast University'),
(122247, 98692, 'es', 'name', 'Centro de Supercomputación de Galicia'),
(122248, 98692, 'en', 'name', 'The Supercomputing Center of Galicia'),
(122249, 98693, 'en', 'name', 'Xidian University'),
(122250, 98693, 'zh', 'name', 'č„æå®‰ē”µå­ē§‘ęŠ€å¤§å­¦'),
(122251, 98694, 'de', 'name', 'UniversitƤtsklinik Balgrist'),
(122252, 98695, 'en', 'name', 'Ankara University'),
(122253, 98695, 'tr', 'name', 'Ankara Üniversitesi'),
(122254, 98696, 'en', 'name', 'Putian University'),
(122255, 98696, 'zh', 'name', 'čŽ†ē”°å­¦é™¢'),
(122256, 98697, 'en', 'name', 'King Khalid University'),
(122257, 98697, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ خالد'),
(122258, 98698, 'en', 'name', 'Falmouth University'),
(122259, 98699, 'en', 'name', 'Shanghai University of Engineering Science'),
(122260, 98699, 'zh', 'name', 'äøŠęµ·å·„ēØ‹ęŠ€ęœÆå¤§å­¦'),
(122261, 98700, 'nl', 'name', 'Nederlands Instituut voor Beeld en Geluid'),
(122262, 98700, 'en', 'name', 'Netherlands Institute for Sound and Vision'),
(122263, 98701, 'en', 'name', 'National SzƩchƩnyi Library'),
(122264, 98701, 'hu', 'name', 'OrszƔgos SzƩchƩnyi KƶnyvtƔr'),
(122265, 98702, 'en', 'name', 'Guangxi Medical University'),
(122266, 98702, 'zh', 'name', 'å¹æč„æåŒ»ē§‘å¤§å­¦'),
(122267, 98703, 'en', 'name', 'Design Academy Eindhoven'),
(122268, 98704, 'en', 'name', 'Bayburt University'),
(122269, 98704, 'tr', 'name', 'Bayburt Üniversitesi'),
(122270, 98705, 'en', 'name', 'Bengbu Medical College'),
(122271, 98705, 'zh', 'name', 'čšŒåŸ åŒ»å­¦é™¢'),
(122272, 98706, 'en', 'name', 'Boise State University'),
(122273, 98706, 'es', 'name', 'Universidad Estatal de Boise'),
(122274, 98706, 'fr', 'name', 'UniversitĆ© d''Ɖtat de boise'),
(122275, 98707, 'en', 'name', 'Burdur Mehmet Akif Ersoy University'),
(122276, 98707, 'tr', 'name', 'Burdur Mehmet Akif Ersoy Üniversitesi'),
(122277, 98708, 'en', 'name', 'University of Winnipeg'),
(122278, 98708, 'fr', 'name', 'UniversitƩ de winnipeg'),
(122279, 98709, 'pt', 'name', 'Instituto HidrogrƔfico'),
(122280, 98710, 'en', 'name', 'Aalto University'),
(122281, 98710, 'fi', 'name', 'Aalto-yliopisto'),
(122282, 98711, 'es', 'name', 'CARTIF'),
(122283, 98712, 'en', 'name', 'European University Institute'),
(122284, 98712, 'de', 'name', 'EuropƤisches Hochschulinstitut'),
(122285, 98712, 'ca', 'name', 'Institut Universitari Europeu'),
(122286, 98712, 'fr', 'name', 'Institut universitaire europƩen de florence'),
(122287, 98712, 'it', 'name', 'Istituto Universitario Europeo'),
(122288, 98713, 'en', 'name', 'Boğaziçi University'),
(122289, 98713, 'tr', 'name', 'Boğaziçi Üniversitesi'),
(122290, 98714, 'en', 'name', 'Goldsmiths University of London'),
(122291, 98714, 'cy', 'name', 'Goldsmiths, Prifysgol Llundain'),
(122292, 98715, 'en', 'name', 'European Humanities University'),
(122293, 98715, 'pl', 'name', 'Europejski Uniwersytet Humanistyczny'),
(122294, 98715, 'lt', 'name', 'Europos humanitarinis universitetas'),
(122295, 98715, 'ru', 'name', 'Европейский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(122296, 98716, 'en', 'name', 'Northern Illinois University'),
(122297, 98716, 'es', 'name', 'Universidad del Norte de Illinois'),
(122298, 98717, 'en', 'name', 'University of Peloponnese'),
(122299, 98717, 'fr', 'name', 'Université du péloponnèse'),
(122300, 98717, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī ĪµĪ»ĪæĻ€ĪæĪ½Ī½Ī®ĻƒĪæĻ…'),
(122301, 98718, 'en', 'name', 'Vinoba Bhave University'),
(122302, 98718, 'hi', 'name', 'ą¤µą¤æą¤Øą„‹ą¤¬ą¤¾ ą¤­ą¤¾ą¤µą„‡ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(122303, 98719, 'en', 'name', 'Middlesex University'),
(122304, 98720, 'en', 'name', 'Technical University of Crete'),
(122305, 98720, 'fr', 'name', 'Université technique de crète'),
(122306, 98720, 'el', 'name', 'Πολυτεχνείο ĪšĻĪ®Ļ„Ī·Ļ‚'),
(122307, 98721, 'en', 'name', 'Shenyang Aerospace University'),
(122308, 98721, 'zh', 'name', '沈阳航空航天大学'),
(122309, 98722, 'en', 'name', 'Drexel University'),
(122310, 98723, 'en', 'name', 'Aristotle University of Thessaloniki'),
(122311, 98723, 'fr', 'name', 'UniversitƩ aristote de thessalonique'),
(122312, 98723, 'el', 'name', 'Ī‘ĻĪ¹ĻƒĻ„ĪæĻ„Ī­Ī»ĪµĪ¹Īæ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(122313, 98724, 'en', 'name', 'Indian Institute of Technology Guwahati'),
(122314, 98724, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(122315, 98724, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€'),
(122316, 98724, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ąÆą®µą®•ą®¾ą®¤ąÆą®¤ą®æ'),
(122317, 98724, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“—ąµą“µą“¹ą“¾ą“Ÿąµą“Ÿą“æ'),
(122318, 98725, 'en', 'name', 'Lauder Business School'),
(122319, 98726, 'en', 'name', 'University of Patras'),
(122320, 98726, 'fr', 'name', 'UniversitƩ de patras'),
(122321, 98726, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī Ī±Ļ„ĻĻŽĪ½'),
(122322, 98727, 'en', 'name', 'CPB Netherlands Bureau for Economic Policy Analysis'),
(122323, 98727, 'nl', 'name', 'Centraal Planbureau, Central Planning Bureau'),
(122324, 98728, 'fo', 'name', 'Fróðskaparsetur Føroya'),
(122325, 98728, 'da', 'name', 'Færøernes Universitet'),
(122326, 98728, 'en', 'name', 'University of the Faroe Islands'),
(122327, 98729, 'en', 'name', 'Longyan University'),
(122328, 98729, 'zh', 'name', '龙岩学院'),
(122329, 98730, 'en', 'name', 'Tokyo Metropolitan University'),
(122330, 98730, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å¤§å­¦'),
(122331, 98731, 'en', 'name', 'Institute of Rheumatology'),
(122332, 98731, 'cs', 'name', 'Revmatologický Ústav'),
(122333, 98732, 'sv', 'name', 'Hƶgskolan i GƤvle'),
(122334, 98732, 'en', 'name', 'University of GƤvle'),
(122335, 98733, 'en', 'name', 'City University of Hong Kong'),
(122336, 98734, 'en', 'name', 'Nanjing Agricultural University'),
(122337, 98734, 'zh', 'name', 'å—äŗ¬å†œäøšå¤§å­¦'),
(122338, 98735, 'en', 'name', 'Ibn TofaĆÆl University'),
(122339, 98735, 'fr', 'name', 'UniversitƩ Ibn-Tofail'),
(122340, 98735, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ابن Ų·ŁŁŠŁ„'),
(122341, 98736, 'en', 'name', 'Shandong University of Art and Design'),
(122342, 98736, 'zh', 'name', 'å±±äøœå·„č‰ŗē¾ŽęœÆå­¦é™¢'),
(122343, 98737, 'cs', 'name', 'Ústav ArcheologickĆ© PamĆ”tkovĆ© PĆ©Äe Brno'),
(122344, 98738, 'en', 'name', 'Konya Technical University'),
(122345, 98738, 'tr', 'name', 'Konya Teknik Üniversitesi'),
(122346, 98739, 'en', 'name', 'Hunan Normal University'),
(122347, 98739, 'zh', 'name', 'ę¹–å—åøˆčŒƒå¤§å­¦'),
(122348, 98740, 'no_lang_code', 'name', 'AARNet (Australia)'),
(122349, 98741, 'en', 'name', 'AGH University of Krakow'),
(122350, 98741, 'pl', 'name', 'Akademia Górniczo-Hutnicza im. Stanisława Staszica w Krakowie'),
(122351, 98742, 'de', 'name', 'Karl Landsteiner Privatuniversität für Gesundheitswissenschaften'),
(122352, 98742, 'en', 'name', 'Karl Landsteiner University of Health Sciences'),
(122353, 98743, 'en', 'name', 'University College Birmingham'),
(122354, 98744, 'en', 'name', 'University of Wisconsin–Green Bay'),
(122355, 98744, 'fr', 'name', 'UniversitĆ© du Wisconsin–Green Bay'),
(122356, 98745, 'es', 'name', 'Universidad de Idaho'),
(122357, 98745, 'en', 'name', 'University of Idaho'),
(122358, 98746, 'en', 'name', 'Qassim University'),
(122359, 98746, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚ŲµŁŠŁ…'),
(122360, 98747, 'en', 'name', 'Sichuan Agricultural University'),
(122361, 98747, 'zh', 'name', 'å››å·å†œäøšå¤§å­¦'),
(122362, 98748, 'en', 'name', 'University of Windsor'),
(122363, 98748, 'fr', 'name', 'UniversitƩ de windsor'),
(122364, 98749, 'en', 'name', 'Royal Northern College of Music'),
(122365, 98750, 'en', 'name', 'Royal Academy of Music'),
(122366, 98751, 'en', 'name', 'Ozarks Technical Community College'),
(122367, 98752, 'es', 'name', 'Universidad de Murcia'),
(122368, 98752, 'gl', 'name', 'Universidade de Murcia'),
(122369, 98752, 'ca', 'name', 'Universitat de MĆŗrcia'),
(122370, 98752, 'en', 'name', 'University of Murcia'),
(122371, 98753, 'en', 'name', 'Kahramanmaraş İstiklal University'),
(122372, 98753, 'tr', 'name', 'Kahramanmaraş İstiklal Üniversitesi'),
(122373, 98754, 'no_lang_code', 'name', 'Academic Analytics'),
(122374, 98755, 'en', 'name', 'Intercollege'),
(122375, 98756, 'en', 'name', 'Hubei University Of Economics'),
(122376, 98756, 'zh', 'name', 'ę¹–åŒ—ē»ęµŽå­¦é™¢'),
(122377, 98757, 'en', 'name', 'National Academy of Chinese Theatre Arts'),
(122378, 98757, 'zh', 'name', 'äø­å›½ęˆę›²å­¦é™¢'),
(122379, 98758, 'en', 'name', 'California State University, Northridge'),
(122380, 98758, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  northridge'),
(122381, 98759, 'en', 'name', 'Institute of Nuclear Physics, Polish Academy of Sciences'),
(122382, 98759, 'pl', 'name', 'Instytut Fizyki Jądrowej im. Henryka Niewodniczańskiego'),
(122383, 98760, 'en', 'name', 'M. Kumarasamy College of Engineering'),
(122384, 98761, 'en', 'name', 'Eckerd College'),
(122385, 98762, 'en', 'name', 'Sonoma State University'),
(122386, 98763, 'en', 'name', 'Hanken School of Economics'),
(122387, 98763, 'sv', 'name', 'Hanken Svenska handelshƶgskolan'),
(122388, 98764, 'en', 'name', 'Hebei University of Science and Technology'),
(122389, 98764, 'zh', 'name', 'ę²³åŒ—ē§‘ęŠ€å¤§å­¦'),
(122390, 98765, 'en', 'name', 'Bishop Auckland College'),
(122391, 98766, 'en', 'name', 'North Idaho College'),
(122392, 98767, 'en', 'name', 'Doğuş University'),
(122393, 98767, 'tr', 'name', 'Doğuş Üniversitesi'),
(122394, 98768, 'en', 'name', 'Fujian University of Technology'),
(122395, 98768, 'zh', 'name', 'ē¦å»ŗå·„ēØ‹å­¦é™¢'),
(122396, 98769, 'en', 'name', 'University of Ha''il'),
(122397, 98769, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© حائل'),
(122398, 98770, 'en', 'name', 'Central University of Punjab'),
(122399, 98770, 'pa', 'name', 'ਪੰਜਾਬ ਕੇਂਦਰੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ਬਠਿੰਔਾ'),
(122400, 98771, 'en', 'name', 'Poznań University of Economics and Business'),
(122401, 98771, 'pl', 'name', 'Uniwersytet Ekonomiczny w Poznaniu'),
(122402, 98772, 'en', 'name', 'University of Parma'),
(122403, 98772, 'it', 'name', 'UniversitĆ  degli Studi di Parma'),
(122404, 98772, 'de', 'name', 'UniversitƤt Parma'),
(122405, 98772, 'fr', 'name', 'UniversitƩ de parme'),
(122406, 98773, 'en', 'name', 'University of Neuchâtel'),
(122407, 98773, 'de', 'name', 'UniversitƤt Neuenburg'),
(122408, 98773, 'fr', 'name', 'Université de Neuchâtel'),
(122409, 98774, 'en', 'name', 'KWR Water Research Institute'),
(122410, 98775, 'en', 'name', 'Hunan Institute of Technology'),
(122411, 98775, 'zh', 'name', 'ę¹–å—å·„å­¦é™¢'),
(122412, 98776, 'en', 'name', 'Athens School of Fine Arts'),
(122413, 98776, 'fr', 'name', 'Ɖcole des beaux-arts d''athĆØnes'),
(122414, 98776, 'el', 'name', 'Ανωτάτη Σχολή ĪšĪ±Ī»ĻŽĪ½ Ī¤ĪµĻ‡Ī½ĻŽĪ½'),
(122415, 98777, 'en', 'name', 'Sabancı University'),
(122416, 98777, 'tr', 'name', 'Sabancı Üniversitesi'),
(122417, 98778, 'en', 'name', 'Changchun University of Science and Technology'),
(122418, 98778, 'zh', 'name', 'é•æę˜„ē†å·„å¤§å­¦'),
(122419, 98779, 'en', 'name', 'Brigham Young University'),
(122420, 98780, 'en', 'name', 'Acıbadem University'),
(122421, 98780, 'tr', 'name', 'Acıbadem Üniversitesi'),
(122422, 98781, 'en', 'name', 'Leibniz Supercomputing Centre'),
(122423, 98781, 'de', 'name', 'Leibniz-Rechenzentrum'),
(122424, 98782, 'tr', 'name', 'Bakırçay Üniversitesi'),
(122425, 98782, 'en', 'name', 'İzmir BakırƧay University'),
(122426, 98783, 'no_lang_code', 'name', 'Matej Bel University'),
(122427, 98783, 'sk', 'name', 'Univerzita Mateja Bela'),
(122428, 98784, 'en', 'name', 'Augusta University'),
(122429, 98785, 'en', 'name', 'Salisbury University'),
(122430, 98786, 'en', 'name', 'FenerbahƧe University'),
(122431, 98786, 'tr', 'name', 'Fenerbahçe Üniversitesi'),
(122432, 98787, 'sw', 'name', 'Chuo Kikuu cha Makerere'),
(122433, 98787, 'en', 'name', 'Makerere University'),
(122434, 98787, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų§ŁƒŁŠŲ±ŁŠŲ±ŁŠ'),
(122435, 98788, 'en', 'name', 'Marine Institute'),
(122436, 98789, 'en', 'name', 'Inner Mongolia Agricultural University'),
(122437, 98789, 'zh', 'name', 'å†…č’™å¤å†œäøšå¤§å­¦'),
(122438, 98790, 'en', 'name', 'Hanze University of Applied Sciences'),
(122439, 98790, 'nl', 'name', 'Hanzehogeschool Groningen'),
(122440, 98791, 'en', 'name', 'National Institute of Technology Goa'),
(122441, 98792, 'en', 'name', 'Hackney Community College'),
(122442, 98793, 'en', 'name', 'Free University of Bozen-Bolzano'),
(122443, 98793, 'de', 'name', 'Freie UniversitƤt Bozen'),
(122444, 98793, 'it', 'name', 'Libera UniversitĆ  di Bolzano'),
(122445, 98793, 'fr', 'name', 'UniversitƩ libre de bolzano'),
(122446, 98794, 'en', 'name', 'National Institute of Informatics'),
(122447, 98794, 'ja', 'name', 'å›½ē«‹ęƒ…å ±å­¦ē ”ē©¶ę‰€'),
(122448, 98795, 'hu', 'name', 'Lucian Blaga Egyetem'),
(122449, 98795, 'en', 'name', 'Lucian Blaga University of Sibiu'),
(122450, 98795, 'ro', 'name', 'Universitatea Lucian Blaga din Sibiu'),
(122451, 98796, 'en', 'name', 'Bilborough Sixth Form College'),
(122452, 98797, 'en', 'name', 'Yantai University'),
(122453, 98797, 'zh', 'name', 'ēƒŸå°å¤§å­¦'),
(122454, 98798, 'en', 'name', 'Irish Management Institute'),
(122455, 98799, 'sv', 'name', 'Kungliga Vetenskapsakademien'),
(122456, 98799, 'en', 'name', 'Royal Swedish Academy of Sciences'),
(122457, 98799, 'fi', 'name', 'Ruotsin kuninkaallinen tiedeakatemia'),
(122458, 98800, 'en', 'name', 'West College Scotland'),
(122459, 98801, 'en', 'name', 'Cape Peninsula University of Technology'),
(122460, 98801, 'af', 'name', 'Kaapse Skiereiland Universiteit van Tegnologie'),
(122461, 98802, 'de', 'name', 'Deutsches Institut für Wirtschaftsforschung'),
(122462, 98802, 'en', 'name', 'German Institute for Economic Research'),
(122463, 98803, 'fr', 'name', 'Haute Ɖcole Robert Schuman'),
(122464, 98804, 'en', 'name', 'Old Dominion University'),
(122465, 98805, 'en', 'name', 'Ɩzyeğin University'),
(122466, 98805, 'tr', 'name', 'Ɩzyeğin Ɯniversitesi'),
(122467, 98806, 'ms', 'name', 'Universiti Malaysia Sabah'),
(122468, 98806, 'en', 'name', 'Universiti of Malaysia Sabah'),
(122469, 98806, 'zh', 'name', '沙巓大学'),
(122470, 98807, 'en', 'name', 'China West Normal University'),
(122471, 98807, 'zh', 'name', 'č„æåŽåøˆčŒƒå¤§å­¦'),
(122472, 98808, 'en', 'name', 'South Staffordshire College'),
(122473, 98809, 'en', 'name', 'Cukurova University'),
(122474, 98809, 'tr', 'name', 'Ƈukurova Ɯniversitesi'),
(122475, 98810, 'en', 'name', 'University of Technology of Troyes'),
(122476, 98810, 'fr', 'name', 'UniversitƩ de Technologie de Troyes'),
(122477, 98811, 'en', 'name', 'St. Francis Xavier University'),
(122478, 98811, 'fr', 'name', 'UniversitƩ saint-francis-xavier'),
(122479, 98812, 'en', 'name', 'Gujarat Biotechnology University'),
(122480, 98813, 'en', 'name', 'Flemish Institute for Technological Research'),
(122481, 98813, 'nl', 'name', 'Vlaamse Instelling voor Technologisch Onderzoek'),
(122482, 98814, 'nl', 'name', 'Scalda'),
(122483, 98815, 'en', 'name', 'Croydon College'),
(122484, 98816, 'en', 'name', 'Anhui University of Science and Technology'),
(122485, 98816, 'zh', 'name', '安徽理巄大学'),
(122486, 98817, 'de', 'name', 'Deutsches Institut für Ernährungsforschung Potsdam-Rehbrücke'),
(122487, 98817, 'en', 'name', 'German Institute of Human Nutrition'),
(122488, 98818, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Arts DĆ©coratifs'),
(122489, 98819, 'en', 'name', 'University of the Highlands and Islands'),
(122490, 98820, 'en', 'name', 'Guangdong Ocean University'),
(122491, 98820, 'zh', 'name', 'å¹æäøœęµ·ę“‹å¤§å­¦'),
(122492, 98821, 'en', 'name', 'Sam Houston State University'),
(122493, 98821, 'fr', 'name', 'UniversitĆ© d''Ɖtat Sam Houston'),
(122494, 98822, 'az', 'name', 'Memar Sinan Gƶzəl Sənətlər Universiteti'),
(122495, 98822, 'en', 'name', 'Mimar Sinan Fine Arts University'),
(122496, 98822, 'tr', 'name', 'Mimar Sinan Güzel Sanatlar Üniversitesi'),
(122497, 98823, 'en', 'name', 'San Diego Community College District'),
(122498, 98824, 'en', 'name', 'Stockport College'),
(122499, 98825, 'fr', 'name', 'Centre Informatique National de l''Enseignement SupƩrieur'),
(122500, 98825, 'en', 'name', 'National Computer Center for Higher Education'),
(122501, 98826, 'en', 'name', 'Bolu Abant İzzet Baysal University'),
(122502, 98826, 'tr', 'name', 'Bolu Abant İzzet Baysal Üniversitesi'),
(122503, 98827, 'en', 'name', 'Dongguan University of Technology'),
(122504, 98827, 'zh', 'name', 'äøœčŽžē†å·„å­¦é™¢'),
(122505, 98828, 'pt', 'name', 'Agencia Regional para o Desenvolvimento da Investigacao Tecnologia e Inovacao'),
(122506, 98829, 'fr', 'name', 'UniversitƩ du QuƩbec en Abitibi-TƩmiscamingue'),
(122507, 98830, 'en', 'name', 'University of Bergamo'),
(122508, 98830, 'it', 'name', 'UniversitĆ  degli Studi di Bergamo'),
(122509, 98830, 'de', 'name', 'UniversitƤt Bergamo'),
(122510, 98830, 'fr', 'name', 'UniversitƩ de bergame'),
(122511, 98831, 'en', 'name', 'Okayama University of Science'),
(122512, 98831, 'ja', 'name', '岔山理科大学'),
(122513, 98832, 'is', 'name', 'HÔskólinn í Reykjavík'),
(122514, 98832, 'en', 'name', 'ReykjavĆ­k University'),
(122515, 98833, 'en', 'name', 'Nanjing University of Science and Technology'),
(122516, 98833, 'zh', 'name', 'å—äŗ¬ē†å·„å¤§å­¦'),
(122517, 98834, 'no_lang_code', 'name', 'Sapporo Gakuin University'),
(122518, 98834, 'ja', 'name', 'ęœ­å¹Œå­¦é™¢å¤§å­¦'),
(122519, 98835, 'en', 'name', 'Shandong Sport University'),
(122520, 98835, 'zh', 'name', 'å±±äøœä½“č‚²å­¦é™¢'),
(122521, 98836, 'en', 'name', 'Thomas Jefferson University'),
(122522, 98837, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de MĆ©canique et d''AĆ©rotechnique'),
(122523, 98838, 'en', 'name', 'Truman State University'),
(122524, 98839, 'fi', 'name', 'Lapin ammattikorkeakoulu'),
(122525, 98839, 'en', 'name', 'Lapland University of Applied Sciences'),
(122526, 98840, 'en', 'name', 'Tianjin Medical University'),
(122527, 98840, 'zh', 'name', 'å¤©ę“„åŒ»ē§‘å¤§å­¦'),
(122528, 98841, 'en', 'name', 'Thomas Jefferson National Accelerator Facility'),
(122529, 98842, 'en', 'name', 'University of Economics in Katowice'),
(122530, 98842, 'pl', 'name', 'Uniwersytet Ekonomiczny w Katowicach'),
(122531, 98843, 'en', 'name', 'Hellenic Open University'),
(122532, 98843, 'fr', 'name', 'Université ouverte de grèce'),
(122533, 98843, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Ī‘Ī½ĪæĪ¹ĪŗĻ„ĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(122534, 98844, 'en', 'name', 'Northwest Minzu University'),
(122535, 98844, 'zh', 'name', 'č„æåŒ—ę°‘ę—å¤§å­¦'),
(122536, 98845, 'es', 'name', 'Universidad de Oviedo'),
(122537, 98845, 'en', 'name', 'University of Oviedo'),
(122538, 98846, 'en', 'name', 'Marmara University'),
(122539, 98846, 'tr', 'name', 'Marmara Üniversitesi'),
(122540, 98846, 'az', 'name', 'Mərmərə Universiteti'),
(122541, 98847, 'en', 'name', 'University for the Creative Arts'),
(122542, 98848, 'rm', 'name', 'Academia Europeica de Bulsan'),
(122543, 98848, 'it', 'name', 'Accademia Europea di Bolzano'),
(122544, 98848, 'en', 'name', 'Eurac Research'),
(122545, 98848, 'de', 'name', 'EuropƤische Akademie Bozen'),
(122546, 98849, 'en', 'name', 'Wenzhou Medical University'),
(122547, 98849, 'zh', 'name', 'ęø©å·žåŒ»ē§‘å¤§å­¦'),
(122548, 98850, 'en', 'name', 'Indian Institute of Technology Dhanbad'),
(122549, 98850, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(122550, 98850, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®šąÆą®°ą®™ąÆą®•ą®µą®æą®Æą®²ąÆ ą®Ŗą®³ąÆą®³ą®æ ą®¤ą®©ąÆą®Ŗą®¾ą®¤ąÆ'),
(122551, 98851, 'en', 'name', 'Gümüşhane University'),
(122552, 98851, 'tr', 'name', 'Gümüşhane Üniversitesi'),
(122553, 98852, 'en', 'name', 'University of Reggio Calabria'),
(122554, 98852, 'it', 'name', 'UniversitĆ  degli Studi Mediterranea di Reggio Calabria'),
(122555, 98852, 'fr', 'name', 'UniversitƩ de reggio de calabre'),
(122556, 98853, 'en', 'name', 'Middlesbrough College'),
(122557, 98854, 'en', 'name', 'Amsterdam University of Applied Sciences'),
(122558, 98854, 'nl', 'name', 'Hogeschool van Amsterdam'),
(122559, 98855, 'en', 'name', 'Aarhus School of Architecture'),
(122560, 98855, 'da', 'name', 'Arkitektskolen Aarhus'),
(122561, 98856, 'en', 'name', 'Prin. L. N. Welingkar Institute of Management Development and Research'),
(122562, 98857, 'en', 'name', 'Jilin Agricultural University'),
(122563, 98857, 'zh', 'name', 'å‰ęž—å†œäøšå¤§å­¦'),
(122564, 98858, 'en', 'name', 'Artvin Coruh University'),
(122565, 98858, 'tr', 'name', 'Artvin Ƈoruh Ɯniversitesi'),
(122566, 98859, 'de', 'name', 'Fachhochschule Vorarlberg'),
(122567, 98859, 'en', 'name', 'Vorarlberg University of Applied Sciences'),
(122568, 98860, 'pl', 'name', 'Uniwersytet Wileński'),
(122569, 98860, 'lt', 'name', 'Vilniaus universitetas'),
(122570, 98860, 'en', 'name', 'Vilnius University'),
(122571, 98860, 'ru', 'name', 'Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(122572, 98861, 'en', 'name', 'West Herts College'),
(122573, 98862, 'en', 'name', 'London Business School'),
(122574, 98862, 'cy', 'name', 'Ysgol Fusnes Llundain'),
(122575, 98863, 'en', 'name', 'Nottingham College'),
(122576, 98864, 'en', 'name', 'Occidental College'),
(122577, 98865, 'en', 'name', 'Istanbul Aydın University'),
(122578, 98865, 'tr', 'name', 'İstanbul Aydın Üniversitesi'),
(122579, 98866, 'en', 'name', 'Naturalis Biodiversity Center'),
(122580, 98866, 'nl', 'name', 'Nederlands Centrum voor Biodiversiteit Naturalis'),
(122581, 98867, 'en', 'name', 'Central Michigan University'),
(122582, 98867, 'fr', 'name', 'UniversitƩ de central michigan'),
(122583, 98868, 'en', 'name', 'Institute of Communication and Computer Systems'),
(122584, 98869, 'en', 'name', 'Glasgow School of Art'),
(122585, 98870, 'en', 'name', 'Pentecostal Theological College'),
(122586, 98870, 'hu', 'name', 'Pünkƶsdi Teológiai Főiskola'),
(122587, 98871, 'en', 'name', 'Qingdao University'),
(122588, 98871, 'zh', 'name', '青岛大学'),
(122589, 98872, 'en', 'name', 'East China University of Science and Technology'),
(122590, 98872, 'zh', 'name', 'åŽäøœē†å·„å¤§å­¦'),
(122591, 98873, 'en', 'name', 'Jilin International Studies University'),
(122592, 98873, 'zh', 'name', 'å‰ęž—åŽä¾Øå¤–å›½čÆ­å­¦é™¢'),
(122593, 98874, 'ca', 'name', 'Universitat de MilĆ '),
(122594, 98874, 'en', 'name', 'University of Milan'),
(122595, 98874, 'it', 'name', 'UniversitĆ  degli Studi di Milano'),
(122596, 98874, 'de', 'name', 'UniversitƤt Mailand'),
(122597, 98874, 'fr', 'name', 'UniversitƩ de milan'),
(122598, 98875, 'en', 'name', 'HAN University of Applied Sciences'),
(122599, 98875, 'nl', 'name', 'Hogeschool van Arnhem en Nijmegen'),
(122600, 98876, 'en', 'name', 'Najran University'),
(122601, 98876, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© نجران'),
(122602, 98877, 'en', 'name', 'ZhengZhou Shengda University Of Economics, Business & Management'),
(122603, 98877, 'zh', 'name', 'éƒ‘å·žå‡č¾¾ē»č“øē®”ē†å­¦é™¢'),
(122604, 98878, 'en', 'name', 'York College'),
(122605, 98879, 'es', 'name', 'Universidad de Castilla-La Mancha'),
(122606, 98879, 'en', 'name', 'University of Castilla-La Mancha'),
(122607, 98880, 'en', 'name', 'Aberystwyth University'),
(122608, 98880, 'cy', 'name', 'Prifysgol Aberystwyth'),
(122609, 98881, 'en', 'name', 'Henan University of Economic and Law'),
(122610, 98881, 'zh', 'name', 'ę²³å—č“¢ē»å­¦é™¢;'),
(122611, 98882, 'et', 'name', 'Eesti Muusika- ja Teatriakadeemia'),
(122612, 98882, 'en', 'name', 'Estonian Academy of Music and Theatre'),
(122613, 98882, 'ru', 'name', 'Š­ŃŃ‚Š¾Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø Šø театра'),
(122614, 98883, 'en', 'name', 'University of Tabuk'),
(122615, 98883, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© تبوك'),
(122616, 98884, 'en', 'name', 'Sapporo City University'),
(122617, 98884, 'ja', 'name', 'ęœ­å¹Œåø‚ē«‹å¤§å­¦'),
(122618, 98885, 'en', 'name', 'Guilin University of Aerospace Technology'),
(122619, 98885, 'zh', 'name', 'ę”‚ęž—čˆŖå¤©å·„äøšå­¦é™¢'),
(122620, 98886, 'en', 'name', 'Xinjiang University of Science and Technology'),
(122621, 98886, 'zh', 'name', 'ę–°ē–†ē§‘ęŠ€å­¦é™¢'),
(122622, 98887, 'en', 'name', 'Royal Academy of Music'),
(122623, 98887, 'cy', 'name', 'yr Academi Gerddoriaeth Frenhinol'),
(122624, 98888, 'en', 'name', 'Grand Valley State University'),
(122625, 98889, 'en', 'name', 'Graduate School of Engineering'),
(122626, 98889, 'fr', 'name', 'Ɖcole SupĆ©rieure d''IngĆ©nieurs en GĆ©nie Ɖlectrique'),
(122627, 98890, 'ca', 'name', 'Universitat Gabriele d''Annunzio'),
(122628, 98890, 'en', 'name', 'University of Chieti-Pescara'),
(122629, 98890, 'it', 'name', 'UniversitĆ  degli Studi "G. d''Annunzio" Chieti-Pescara'),
(122630, 98890, 'fr', 'name', 'UniversitƩ de chieti'),
(122631, 98891, 'en', 'name', 'Loma Linda University'),
(122632, 98891, 'fr', 'name', 'UniversitƩ de loma linda'),
(122633, 98892, 'en', 'name', 'Hanshan Normal University'),
(122634, 98893, 'en', 'name', 'Changchun University of Technology'),
(122635, 98893, 'zh', 'name', 'é•æę˜„å·„äøšå¤§å­¦'),
(122636, 98894, 'en', 'name', 'Oldham College'),
(122637, 98895, 'en', 'name', 'Hugh Baird College'),
(122638, 98896, 'en', 'name', 'Huainan Union University'),
(122639, 98896, 'zh', 'name', 'ę·®å—č”åˆå¤§å­¦'),
(122640, 98897, 'en', 'name', 'Shandong Management University'),
(122641, 98897, 'zh', 'name', 'å±±äøœē®”ē†å¤§å­¦'),
(122642, 98898, 'ms', 'name', 'Politeknik Ungku Omar'),
(122643, 98898, 'en', 'name', 'Ungku Omar Polytechnic'),
(122644, 98899, 'en', 'name', 'South Eastern Regional College'),
(122645, 98900, 'es', 'name', 'Biblioteca PĆŗblica de Nueva York'),
(122646, 98900, 'en', 'name', 'New York Public Library'),
(122647, 98901, 'en', 'name', 'Xiangtan University'),
(122648, 98901, 'zh', 'name', '湘潭大学'),
(122649, 98902, 'en', 'name', 'Lanzhou Jiaotong University'),
(122650, 98902, 'zh', 'name', 'å…°å·žäŗ¤é€šå¤§å­¦'),
(122651, 98903, 'en', 'name', 'American University of Sharjah'),
(122652, 98903, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في الؓارقة'),
(122653, 98903, 'fa', 'name', 'دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ ؓارجه'),
(122654, 98904, 'en', 'name', 'International University of Catalonia'),
(122655, 98904, 'es', 'name', 'Universidad Internacional de CataluƱa'),
(122656, 98904, 'ca', 'name', 'Universitat Internacional de Catalunya'),
(122657, 98905, 'en', 'name', 'Zhengzhou University of Aeronautics'),
(122658, 98905, 'zh', 'name', 'éƒ‘å·žčˆŖē©ŗå·„äøšē®”ē†å­¦é™¢'),
(122659, 98906, 'en', 'name', 'Institute of Rural Management Anand'),
(122660, 98906, 'te', 'name', 'ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°°ą±‚ą°°ą°²ą± ą°®ą±‡ą°Øą±‡ą°œą±ą°®ą±†ą°‚ą°Ÿą±'),
(122661, 98907, 'en', 'name', 'Anhui Jianzhu University'),
(122662, 98907, 'zh', 'name', 'å®‰å¾½å»ŗē­‘å·„äøšå­¦é™¢'),
(122663, 98908, 'en', 'name', 'Henan Polytechnic University'),
(122664, 98908, 'zh', 'name', 'ę²³å—ē†å·„å¤§å­¦'),
(122665, 98909, 'en', 'name', 'Northern Kentucky University'),
(122666, 98910, 'en', 'name', 'Guiyang Medical University'),
(122667, 98910, 'zh', 'name', 'č“µé˜³åŒ»å­¦é™¢'),
(122668, 98911, 'no_lang_code', 'name', 'A''Sharqiyah University'),
(122669, 98911, 'ar', 'name', 'جــــــامـعـة Ų§Ł„Ł€Ų“Ł€Ų±Ł‚Ł€Ł€Ł€Ł€Ł€Ł€Ł€ŁŠŁ€Ų©'),
(122670, 98912, 'en', 'name', 'Edge Hill University'),
(122671, 98913, 'no_lang_code', 'name', 'Internet2'),
(122672, 98914, 'en', 'name', 'University of Science and Technology Liaoning'),
(122673, 98914, 'zh', 'name', 'č¾½å®ē§‘ęŠ€å¤§å­¦'),
(122674, 98915, 'en', 'name', 'Yokohama National University'),
(122675, 98915, 'ja', 'name', 'ęØŖęµœå›½ē«‹å¤§å­¦'),
(122676, 98916, 'es', 'name', 'Universidad de Las Palmas de Gran Canaria'),
(122677, 98916, 'gl', 'name', 'Universidade das Palmas de Gran Canaria'),
(122678, 98916, 'en', 'name', 'University of Las Palmas de Gran Canaria'),
(122679, 98917, 'en', 'name', 'Indira Gandhi National Open University'),
(122680, 98917, 'fr', 'name', 'UniversitƩ nationale ouverte indira gandhi'),
(122681, 98917, 'hi', 'name', 'ą¤‡ą¤Øą„ą¤¦ą¤æą¤°ą¤¾ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(122682, 98917, 'ne', 'name', 'ą¤ˆą¤Øą„ą¤¦ą¤æą¤°ą¤¾ ą¤—ą¤¾ą¤Øą„ą¤§ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤–ą„ą¤²ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(122683, 98917, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦¦ą¦æą¦°ą¦¾ ą¦—ą¦¾ą¦Øą§ą¦§ą§€ ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(122684, 98917, 'pa', 'name', 'ਇੰਦਰਾ ਗਾਂਧੀ ਨੈਸ਼ਨਲ ਓਪਨ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(122685, 98917, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®°ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ą®æą®±ą®ØąÆą®¤ą®Øą®æą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(122686, 98917, 'ml', 'name', 'ą“‡ą“Øąµą“¦ą“æą“°ą“¾ą“—ą“¾ą“Øąµą“§ą“æ ą“Øą“¾ą“·ą“£ąµ½ ą““ą“Ŗąµą“Ŗąµŗ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(122687, 98918, 'no_lang_code', 'name', 'Meiji Gakuin University'),
(122688, 98918, 'ja', 'name', 'ę˜Žę²»å­¦é™¢å¤§å­¦'),
(122689, 98919, 'en', 'name', 'Coast Community College District'),
(122690, 98920, 'en', 'name', 'Manipal University Jaipur'),
(122691, 98921, 'en', 'name', 'Sias University'),
(122692, 98921, 'zh', 'name', 'éƒ‘å·žč„æäŗšę–Æå­¦é™¢'),
(122693, 98922, 'en', 'name', 'Yunnan Normal University'),
(122694, 98922, 'zh', 'name', 'äŗ‘å—åøˆčŒƒå¤§å­¦'),
(122695, 98923, 'en', 'name', 'Newham College'),
(122696, 98924, 'ms', 'name', 'Universiti Nottingham Malaysia'),
(122697, 98924, 'en', 'name', 'University of Nottingham Malaysia Campus'),
(122698, 98925, 'fr', 'name', 'UniversitƩ du QuƩbec Ơ Chicoutimi'),
(122699, 98926, 'en', 'name', 'Xiamen University'),
(122700, 98926, 'zh', 'name', 'åŽ¦é—Øå¤§å­¦'),
(122701, 98927, 'fr', 'name', 'Laboratoire national lawrence-berkeley'),
(122702, 98927, 'en', 'name', 'Lawrence Berkeley National Laboratory'),
(122703, 98928, 'en', 'name', 'Lund University'),
(122704, 98928, 'fi', 'name', 'Lundin yliopisto'),
(122705, 98928, 'sv', 'name', 'Lunds universitet'),
(122706, 98929, 'cs', 'name', 'StudijnĆ­ a vědeckĆ” knihovna v Hradci KrĆ”lovĆ©'),
(122707, 98929, 'en', 'name', 'The Research Library in Hradec Kralove'),
(122708, 98930, 'en', 'name', 'Bridgend College'),
(122709, 98931, 'en', 'name', 'Hebei Normal University'),
(122710, 98931, 'zh', 'name', 'ę²³åŒ—åøˆčŒƒå¤§å­¦'),
(122711, 98932, 'en', 'name', 'Beijing International Studies University'),
(122712, 98932, 'zh', 'name', 'åŒ—äŗ¬ē¬¬äŗŒå¤–å›½čÆ­å­¦é™¢'),
(122713, 98933, 'en', 'name', 'Anhui Business College'),
(122714, 98934, 'en', 'name', 'Southwest Minzu University'),
(122715, 98934, 'zh', 'name', 'č„æå—ę°‘ę—å¤§å­¦'),
(122716, 98935, 'en', 'name', 'Liaocheng University'),
(122717, 98935, 'zh', 'name', 'čŠåŸŽå¤§å­¦'),
(122718, 98936, 'en', 'name', 'Gendarmerie and Coast Guard Academy'),
(122719, 98936, 'tr', 'name', 'Jandarma ve Sahil Güvenlik Akademisi'),
(122720, 98937, 'en', 'name', 'Grimsby Institute'),
(122721, 98938, 'en', 'name', 'Dokkyo Medical University'),
(122722, 98938, 'ja', 'name', 'ēØå”åŒ»ē§‘å¤§å­¦'),
(122723, 98939, 'en', 'name', 'Great Plains Network'),
(122724, 98940, 'en', 'name', 'Düzce University'),
(122725, 98940, 'tr', 'name', 'Düzce Üniversitesi'),
(122726, 98941, 'en', 'name', 'Northeast Agricultural University'),
(122727, 98941, 'zh', 'name', 'äøœåŒ—å†œäøšå¤§å­¦'),
(122728, 98942, 'en', 'name', 'Grinnell College'),
(122729, 98943, 'en', 'name', 'Izmir Institute of Technology'),
(122730, 98943, 'az', 'name', 'İzmir Texnologiya İnstitutu'),
(122731, 98943, 'tr', 'name', 'İzmir Yüksek Teknoloji Enstitüsü'),
(122732, 98944, 'en', 'name', 'Nara Institute of Science and Technology'),
(122733, 98944, 'ja', 'name', 'å„ˆč‰Æå…ˆē«Æē§‘å­¦ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(122734, 98945, 'en', 'name', 'Baylor University'),
(122735, 98946, 'en', 'name', 'Northern Arizona University'),
(122736, 98947, 'en', 'name', 'Xinjiang Normal University'),
(122737, 98947, 'ug', 'name', 'ؓىنجاڭ Ł¾Ł‰ŲÆŲ§ŚÆŁˆŚÆŪŁƒŲ§ ئۇنىۋېرسىتېتى'),
(122738, 98947, 'zh', 'name', 'ę–°ē–†åøˆčŒƒå¤§å­¦'),
(122739, 98948, 'en', 'name', 'Arden University'),
(122740, 98949, 'en', 'name', 'Grantham College'),
(122741, 98950, 'en', 'name', 'Hefei Normal University'),
(122742, 98950, 'zh', 'name', 'åˆč‚„åøˆčŒƒå­¦é™¢'),
(122743, 98951, 'en', 'name', 'University of Thessaly'),
(122744, 98951, 'fr', 'name', 'UniversitƩ de thessalie'),
(122745, 98951, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī˜ĪµĻƒĻƒĪ±Ī»ĪÆĪ±Ļ‚'),
(122746, 98952, 'en', 'name', 'Carilion Clinic'),
(122747, 98953, 'en', 'name', 'Municipal Library of Prague'),
(122748, 98953, 'cs', 'name', 'MěstskĆ” knihovna v Praze'),
(122749, 98954, 'en', 'name', 'HƤme University of Applied Sciences'),
(122750, 98954, 'fi', 'name', 'HƤmeen ammattikorkeakoulu'),
(122751, 98955, 'en', 'name', 'Institute of Science and Technology Austria'),
(122752, 98956, 'en', 'name', 'Daegu Gyeongbuk Institute of Science and Technology'),
(122753, 98956, 'ko', 'name', 'ėŒ€źµ¬ź²½ė¶ź³¼ķ•™źø°ģˆ ģ›'),
(122754, 98957, 'en', 'name', 'ESIEA University'),
(122755, 98958, 'en', 'name', 'Runshaw College'),
(122756, 98959, 'ms', 'name', 'Universiti Malaysia Sarawak'),
(122757, 98959, 'en', 'name', 'University of Malaysia, Sarawak'),
(122758, 98960, 'en', 'name', 'Istinye University'),
(122759, 98960, 'tr', 'name', 'İstinye Üniversitesi'),
(122760, 98961, 'en', 'name', 'Sandwell College'),
(122761, 98962, 'en', 'name', 'Zhejiang Yuexiu University'),
(122762, 98962, 'zh', 'name', 'ęµ™ę±Ÿč¶Šē§€å¤–å›½čÆ­å­¦é™¢'),
(122763, 98963, 'en', 'name', 'Arthur C. Clarke Centre for Modern Technologies'),
(122764, 98964, 'en', 'name', 'Northwestern Polytechnical University'),
(122765, 98964, 'zh', 'name', 'č„æåŒ—å·„äøšå¤§å­¦'),
(122766, 98965, 'en', 'name', 'Poznan University of Medical Sciences'),
(122767, 98965, 'pl', 'name', 'Uniwersytet Medyczny im. Karola Marcinkowskiego w Poznaniu'),
(122768, 98966, 'en', 'name', 'Fairfield University'),
(122769, 98966, 'es', 'name', 'Universidad de Fairfield'),
(122770, 98967, 'en', 'name', 'Batman University'),
(122771, 98967, 'tr', 'name', 'Batman Üniversitesi'),
(122772, 98968, 'es', 'name', 'Universidad de Nevada, Las Vegas'),
(122773, 98968, 'en', 'name', 'University of Nevada, Las Vegas'),
(122774, 98968, 'fr', 'name', 'UniversitƩ du Nevada Ơ las Vegas'),
(122775, 98969, 'en', 'name', 'Sheridan College'),
(122776, 98970, 'en', 'name', 'University of Northern Iowa'),
(122777, 98970, 'fr', 'name', 'UniversitƩ d''iowa du nord'),
(122778, 98971, 'en', 'name', 'Xi''an University of Science and Technology'),
(122779, 98971, 'zh', 'name', 'č„æå®‰ē§‘ęŠ€å¤§å­¦'),
(122780, 98972, 'et', 'name', 'Tartu Ülikool'),
(122781, 98972, 'en', 'name', 'University of Tartu'),
(122782, 98972, 'ru', 'name', 'Š¢Š°Ń€Ń‚ŃƒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(122783, 98973, 'en', 'name', 'Shandong Youth University of Political Science'),
(122784, 98973, 'zh', 'name', 'å±±äøœé’å¹“ę”æę²»å­¦é™¢'),
(122785, 98974, 'en', 'name', 'University of Suffolk'),
(122786, 98975, 'en', 'name', 'Recep Tayyip Erdoğan University'),
(122787, 98975, 'tr', 'name', 'Recep Tayyip Erdoğan Üniversitesi'),
(122788, 98976, 'en', 'name', 'University of Massachusetts Chan Medical School'),
(122789, 98977, 'en', 'name', 'Tianjin Academy of Fine Arts'),
(122790, 98977, 'zh', 'name', 'å¤©ę“„ē¾ŽęœÆå­¦é™¢'),
(122791, 98978, 'en', 'name', 'North China Electric Power University'),
(122792, 98978, 'zh', 'name', 'åŽåŒ—ē”µåŠ›å¤§å­¦'),
(122793, 98979, 'da', 'name', 'GrĆønlands Universitet'),
(122794, 98979, 'kl', 'name', 'Ilisimatusarfik'),
(122795, 98979, 'en', 'name', 'University of Greenland'),
(122796, 98980, 'hu', 'name', 'Tokaj-Hegyalja Egyetem'),
(122797, 98980, 'no_lang_code', 'name', 'University of Tokaj'),
(122798, 98981, 'en', 'name', 'Jiangsu University of Science and Technology'),
(122799, 98981, 'zh', 'name', 'ę±Ÿč‹ē§‘ęŠ€å¤§å­¦'),
(122800, 98982, 'en', 'name', 'Bartin University'),
(122801, 98983, 'en', 'name', 'Macalester College'),
(122802, 98984, 'en', 'name', 'University of Wisconsin–Platteville'),
(122803, 98984, 'fr', 'name', 'UniversitĆ© du Wisconsin–Platteville'),
(122804, 98985, 'en', 'name', 'University of the Fraser Valley'),
(122805, 98986, 'en', 'name', 'Leibniz Institute for Analytical Sciences - ISAS'),
(122806, 98986, 'de', 'name', 'Leibniz-Institut für Analytische Wissenschaften - ISAS'),
(122807, 98987, 'en', 'name', 'Shenyang University of Technology'),
(122808, 98987, 'zh', 'name', '沈阳巄业大学'),
(122809, 98988, 'en', 'name', 'Hangzhou Normal University'),
(122810, 98988, 'zh', 'name', 'ę­å·žåøˆčŒƒå¤§å­¦'),
(122811, 98989, 'en', 'name', 'Wuhan Institute of Technology'),
(122812, 98989, 'zh', 'name', '武汉巄程大学'),
(122813, 98990, 'en', 'name', 'Xihua University'),
(122814, 98990, 'zh', 'name', 'č„æåŽå¤§å­¦'),
(122815, 98991, 'en', 'name', 'University of Northampton'),
(122816, 98992, 'sv', 'name', 'Sophiahemmet Hƶgskola'),
(122817, 98992, 'en', 'name', 'Sophiahemmet University College'),
(122818, 98993, 'en', 'name', 'School of Pedagogical and Technological Education'),
(122819, 98993, 'el', 'name', 'Ī‘Ī½ĻŽĻ„Ī±Ļ„Ī· Σχολή ΠαιΓαγωγικής και Τεχνολογικής Ī•ĪŗĻ€Ī±ĪÆĪ“ĪµĻ…ĻƒĪ·Ļ‚'),
(122820, 98994, 'es', 'name', 'Universidad de Valencia'),
(122821, 98994, 'gl', 'name', 'Universidade de Valencia'),
(122822, 98994, 'ca', 'name', 'Universitat de ValĆØncia'),
(122823, 98994, 'en', 'name', 'University of Valencia'),
(122824, 98995, 'en', 'name', 'Bialystok University of Technology'),
(122825, 98995, 'pl', 'name', 'Politechnika Białostocka'),
(122826, 98996, 'en', 'name', 'Chongqing Jiaotong University'),
(122827, 98996, 'zh', 'name', 'é‡åŗ†äŗ¤é€šå¤§å­¦'),
(122828, 98997, 'en', 'name', 'Keck Graduate Institute'),
(122829, 98998, 'en', 'name', 'Tonghua Normal University'),
(122830, 98998, 'zh', 'name', 'é€šåŒ–åøˆčŒƒå­¦é™¢'),
(122831, 98999, 'es', 'name', 'Universidad de Burgos'),
(122832, 98999, 'en', 'name', 'University of Burgos'),
(122833, 99000, 'en', 'name', 'Somerset College'),
(122834, 99001, 'en', 'name', 'Chengdu University of Technology'),
(122835, 99001, 'zh', 'name', 'ęˆéƒ½ē†å·„å¤§å­¦'),
(122836, 99002, 'en', 'name', 'National School for Statistics and Information Analysis'),
(122837, 99002, 'fr', 'name', 'Ɖcole Nationale de la Statistique et de l''Analyse de l''Information'),
(122838, 99003, 'en', 'name', 'Nankai University'),
(122839, 99003, 'zh', 'name', '南开大学'),
(122840, 99004, 'en', 'name', 'Istanbul Rumeli University'),
(122841, 99004, 'tr', 'name', 'TC İstanbul Rumeli Üniversitesi'),
(122842, 99005, 'fr', 'name', 'Institut national du design'),
(122843, 99005, 'en', 'name', 'National Institute of Design'),
(122844, 99005, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤”ą¤æą¤œą¤¾ą¤‡ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(122845, 99005, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®µą®Ÿą®æą®µą®®ąÆˆą®ŖąÆą®ŖąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(122846, 99006, 'en', 'name', 'Hubei University'),
(122847, 99006, 'zh', 'name', 'ę¹–åŒ—å¤§å­¦'),
(122848, 99007, 'en', 'name', 'Richmond upon Thames College'),
(122849, 99008, 'no_lang_code', 'name', 'Jinggangshan University'),
(122850, 99008, 'zh', 'name', 'äŗ•å†ˆå±±å¤§å­¦'),
(122851, 99009, 'en', 'name', 'Kyushu Institute of Technology'),
(122852, 99009, 'ja', 'name', 'ä¹å·žå·„ę„­å¤§å­¦'),
(122853, 99010, 'en', 'name', 'Concordia University of Edmonton'),
(122854, 99011, 'en', 'name', 'Oulu University of Applied Sciences'),
(122855, 99011, 'fi', 'name', 'Oulun seudun ammattikorkeakoulu'),
(122856, 99012, 'en', 'name', 'California State University Los Angeles'),
(122857, 99012, 'es', 'name', 'Universidad Estatal de California, Los Ɓngeles'),
(122858, 99012, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  los angeles'),
(122859, 99013, 'en', 'name', 'East Riding College'),
(122860, 99014, 'en', 'name', 'Harokopio University of Athens'),
(122861, 99014, 'el', 'name', 'Ī§Ī±ĻĪæĪŗĻŒĻ€ĪµĪ¹Īæ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(122862, 99015, 'en', 'name', 'Chongqing Normal University'),
(122863, 99015, 'zh', 'name', 'é‡åŗ†åøˆčŒƒå¤§å­¦'),
(122864, 99016, 'en', 'name', 'Gheorghe Asachi Technical University of Iași'),
(122865, 99016, 'ro', 'name', 'Universitatea Tehnică Gheorghe Asachi din Iași'),
(122866, 99017, 'en', 'name', 'Douglas College'),
(122867, 99018, 'en', 'name', 'Xiamen University of Technology'),
(122868, 99018, 'zh', 'name', 'åŽ¦é—Øē†å·„å­¦é™¢'),
(122869, 99019, 'en', 'name', 'Pacific Lutheran University'),
(122870, 99020, 'en', 'name', 'ESIC Business & Marketing School'),
(122871, 99021, 'en', 'name', 'Tokyo Women''s Medical University'),
(122872, 99021, 'ja', 'name', 'ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦'),
(122873, 99022, 'no_lang_code', 'name', 'Suqian University'),
(122874, 99022, 'zh', 'name', '宿迁学院'),
(122875, 99023, 'en', 'name', 'Beijing City University'),
(122876, 99023, 'zh', 'name', 'åŒ—äŗ¬åŸŽåø‚å­¦é™¢'),
(122877, 99024, 'en', 'name', 'Shippensburg University'),
(122878, 99025, 'en', 'name', 'Kahramanmaraş Sütçü İmam University'),
(122879, 99025, 'tr', 'name', 'Kahramanmaraş Sütçü İmam Üniversitesi'),
(122880, 99026, 'en', 'name', 'Beijing University of Posts and Telecommunications'),
(122881, 99026, 'zh', 'name', 'åŒ—äŗ¬é‚®ē”µå¤§å­¦'),
(122882, 99027, 'pt', 'name', 'Instituto PolitƩcnico de Beja'),
(122883, 99027, 'en', 'name', 'Polytechnic Institute of Beja'),
(122884, 99028, 'nl', 'name', 'Avans Hogeschool'),
(122885, 99028, 'en', 'name', 'Avans University of Applied Sciences'),
(122886, 99029, 'en', 'name', 'Shandong Women’s University'),
(122887, 99029, 'zh', 'name', 'å±±äøœå„³å­å­¦é™¢'),
(122888, 99030, 'en', 'name', 'French Institute for Research and Security'),
(122889, 99030, 'fr', 'name', 'Institut National de Recherche et de SƩcuritƩ'),
(122890, 99031, 'en', 'name', 'Tokyo Woman''s Christian University'),
(122891, 99031, 'ja', 'name', 'ę±äŗ¬å„³å­å¤§å­¦'),
(122892, 99032, 'en', 'name', 'Union College'),
(122893, 99033, 'fr', 'name', 'Fondation nationale de recherche hellƩnique'),
(122894, 99033, 'en', 'name', 'National Hellenic Research Foundation'),
(122895, 99033, 'el', 'name', 'Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ī•ĻĪµĻ…Ī½ĻŽĪ½'),
(122896, 99034, 'en', 'name', 'AMET University'),
(122897, 99034, 'ta', 'name', 'ą®…ą®®ąÆ†ą®ŸąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(122898, 99035, 'en', 'name', 'Western Carolina University'),
(122899, 99036, 'no_lang_code', 'name', 'Det Danske Sprog- og Litteraturselskab (Denmark)'),
(122900, 99037, 'en', 'name', 'University of Venda'),
(122901, 99038, 'en', 'name', 'Max Planck Institute of Biophysics');
INSERT INTO `ror_settings` VALUES
(122902, 99038, 'de', 'name', 'Max-Planck-Institut für Biophysik'),
(122903, 99039, 'it', 'name', 'Elettra-Sincrotrone Trieste S.C.p.A.'),
(122904, 99040, 'af', 'name', 'Universiteit van Pretoria'),
(122905, 99040, 'en', 'name', 'University of Pretoria'),
(122906, 99041, 'pt', 'name', 'Centro Interdisciplinar de Investigação Marinha e Ambiental'),
(122907, 99041, 'en', 'name', 'Interdisciplinary Centre of Marine and Environmental Research'),
(122908, 99042, 'en', 'name', 'University of Portsmouth'),
(122909, 99043, 'en', 'name', 'Foothill-De Anza Community College District'),
(122910, 99044, 'fr', 'name', 'Institut national d''histoire de l''art'),
(122911, 99044, 'en', 'name', 'National Institute for Art History'),
(122912, 99045, 'en', 'name', 'Indian Institute of Information Technology, Nagpur'),
(122913, 99046, 'en', 'name', 'Yunnan University of Finance And Economics'),
(122914, 99046, 'zh', 'name', 'äŗ‘å—č“¢ē»å¤§å­¦'),
(122915, 99047, 'en', 'name', 'Texas Woman''s University'),
(122916, 99048, 'en', 'name', 'Linnaeus University'),
(122917, 99048, 'fi', 'name', 'LinnƩ-yliopisto'),
(122918, 99048, 'sv', 'name', 'LinnƩuniversitetet'),
(122919, 99049, 'no_lang_code', 'name', 'Jiaxing University'),
(122920, 99050, 'en', 'name', 'Yıldız Technical University'),
(122921, 99050, 'tr', 'name', 'Yıldız Teknik Üniversitesi'),
(122922, 99051, 'en', 'name', 'Hebei GEO University'),
(122923, 99051, 'zh', 'name', 'ēŸ³å®¶åŗ„ē»ęµŽå­¦é™¢'),
(122924, 99052, 'cy', 'name', 'Birkbeck, Prifysgol Llundain'),
(122925, 99052, 'en', 'name', 'Birkbeck, University of London'),
(122926, 99053, 'en', 'name', 'Allegheny College'),
(122927, 99054, 'tr', 'name', 'Sivas Bilim ve Teknoloji Üniversitesi'),
(122928, 99054, 'en', 'name', 'Sivas University of Science and Technology'),
(122929, 99055, 'en', 'name', 'Foro Italico University of Rome'),
(122930, 99055, 'fr', 'name', 'Institut universitaire de sciences motrices'),
(122931, 99055, 'it', 'name', 'UniversitĆ  degli Studi di Roma Foro italico'),
(122932, 99056, 'en', 'name', 'Jiangxi University of Science and Technology'),
(122933, 99056, 'zh', 'name', 'ę±Ÿč„æē†å·„å¤§å­¦'),
(122934, 99057, 'no_lang_code', 'name', 'Qufu Normal University'),
(122935, 99057, 'zh', 'name', 'ę›²é˜œåøˆčŒƒå¤§å­¦'),
(122936, 99058, 'en', 'name', 'Samsun University'),
(122937, 99058, 'tr', 'name', 'Samsun Üniversitesi'),
(122938, 99059, 'en', 'name', 'Muş Alparslan University'),
(122939, 99059, 'tr', 'name', 'Muş Alparslan Üniversitesi'),
(122940, 99060, 'en', 'name', 'Northern Regional College'),
(122941, 99061, 'en', 'name', 'Terra'),
(122942, 99062, 'de', 'name', 'MontanuniversitƤt Leoben'),
(122943, 99062, 'sl', 'name', 'Univerza v Leobnu'),
(122944, 99063, 'en', 'name', 'Florida Agricultural and Mechanical University'),
(122945, 99063, 'es', 'name', 'Universidad Agrónoma y MecÔnica de Florida'),
(122946, 99064, 'fr', 'name', 'UniversitƩ York'),
(122947, 99064, 'en', 'name', 'York University'),
(122948, 99065, 'en', 'name', 'Southwestern University of Finance and Economics'),
(122949, 99065, 'zh', 'name', 'č„æå—č“¢ē»å¤§å­¦'),
(122950, 99066, 'en', 'name', 'New Jersey Institute of Technology'),
(122951, 99067, 'ms', 'name', 'Universiti Malaysia Terengganu'),
(122952, 99067, 'en', 'name', 'University of Malaysia, Terengganu'),
(122953, 99068, 'en', 'name', 'Green University of Bangladesh'),
(122954, 99068, 'bn', 'name', 'ą¦—ą§ą¦°ą¦æą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(122955, 99069, 'en', 'name', 'Taiyuan University of Technology'),
(122956, 99069, 'zh', 'name', 'å¤ŖåŽŸē†å·„å¤§å­¦'),
(122957, 99070, 'pl', 'name', 'Akademia Marynarki Wojennej im. Bohaterów Westerplatte'),
(122958, 99070, 'en', 'name', 'Polish Naval Academy'),
(122959, 99071, 'en', 'name', 'Qingdao Binhai University'),
(122960, 99071, 'zh', 'name', 'é’å²›ę»Øęµ·å­¦é™¢'),
(122961, 99072, 'ca', 'name', 'Consorci de Serveis Universitaris de Catalunya'),
(122962, 99072, 'es', 'name', 'Consorcio de Servicios Universitarios de CataluƱa'),
(122963, 99073, 'en', 'name', 'Agricultural University of Athens'),
(122964, 99073, 'fr', 'name', 'Université d''agriculture d''athènes'),
(122965, 99073, 'el', 'name', 'Ī“ĪµĻ‰Ļ€ĪæĪ½Ī¹ĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(122966, 99074, 'en', 'name', 'Bursa Technical University'),
(122967, 99074, 'tr', 'name', 'Bursa Teknik Üniversitesi'),
(122968, 99075, 'en', 'name', 'Nanjing Institute of Technology'),
(122969, 99076, 'en', 'name', 'JK Lakshmipat University'),
(122970, 99077, 'en', 'name', 'China University of Mining and Technology'),
(122971, 99077, 'zh', 'name', 'äø­å›½ēŸæäøšå¤§å­¦'),
(122972, 99078, 'en', 'name', 'Iceland University of the Arts'),
(122973, 99078, 'is', 'name', 'ListahĆ”skóli ƍslands'),
(122974, 99079, 'en', 'name', 'Ağrı İbrahim ƇeƧen University'),
(122975, 99079, 'tr', 'name', 'Ağrı İbrahim ƇeƧen Üniversitesi'),
(122976, 99080, 'eu', 'name', 'Deustuko Unibertsitatea'),
(122977, 99080, 'es', 'name', 'Universidad de Deusto'),
(122978, 99080, 'gl', 'name', 'Universidade de Deusto'),
(122979, 99080, 'en', 'name', 'University of Deusto'),
(122980, 99081, 'en', 'name', 'University of Sunderland'),
(122981, 99082, 'en', 'name', 'Heilongjiang University'),
(122982, 99082, 'zh', 'name', 'é»‘é¾™ę±Ÿå¤§å­¦'),
(122983, 99083, 'en', 'name', 'UniNettuno University'),
(122984, 99083, 'it', 'name', 'UniversitĆ  Telematica Internazionale Uninettuno'),
(122985, 99084, 'en', 'name', 'Taiyuan University of Science and Technology'),
(122986, 99084, 'zh', 'name', 'å¤ŖåŽŸē§‘ęŠ€å¤§å­¦'),
(122987, 99085, 'es', 'name', 'Centro de LƔseres Pulsados'),
(122988, 99085, 'en', 'name', 'Spanish Center for Pulsed Lasers'),
(122989, 99086, 'tr', 'name', 'Bandirma Onyedi Eylul Universitesi'),
(122990, 99086, 'en', 'name', 'Bandırma Onyedi Eylül University'),
(122991, 99087, 'en', 'name', 'George Mason University'),
(122992, 99087, 'es', 'name', 'Universidad George Mason'),
(122993, 99088, 'en', 'name', 'Texas Christian University'),
(122994, 99088, 'es', 'name', 'Universidad Cristiana de Texas'),
(122995, 99089, 'en', 'name', 'Wenshan University'),
(122996, 99090, 'en', 'name', 'Shandong Agricultural University'),
(122997, 99090, 'zh', 'name', 'å±±äøœå†œäøšå¤§å­¦'),
(122998, 99091, 'fr', 'name', 'UniversitƩ Libre de Bruxelles'),
(122999, 99092, 'en', 'name', 'Ibaraki University'),
(123000, 99092, 'ja', 'name', 'čŒØåŸŽå¤§å­¦'),
(123001, 99093, 'en', 'name', 'Yanshan University'),
(123002, 99093, 'zh', 'name', '燕山大学'),
(123003, 99094, 'en', 'name', 'Sri Eshwar College of Engineering'),
(123004, 99095, 'en', 'name', 'National Security Authority'),
(123005, 99096, 'en', 'name', 'General Jonas Žemaitis Military Academy of Lithuania'),
(123006, 99096, 'lt', 'name', 'Generolo Jono Žemaičio Lietuvos karo akademija'),
(123007, 99097, 'pt', 'name', 'Escola Superior de Enfermagem do Porto'),
(123008, 99098, 'en', 'name', 'Sri Ramakrishna Engineering College'),
(123009, 99099, 'en', 'name', 'Holy Cross College'),
(123010, 99100, 'it', 'name', 'Istituto Universitario di Studi Superiori di Pavia'),
(123011, 99100, 'en', 'name', 'University School for Advanced Studies - IUSS Pavia'),
(123012, 99101, 'en', 'name', 'University of Salerno'),
(123013, 99101, 'it', 'name', 'UniversitĆ  degli Studi di Salerno'),
(123014, 99101, 'fr', 'name', 'UniversitƩ de salerne'),
(123015, 99102, 'en', 'name', 'Huaqiao University'),
(123016, 99102, 'zh', 'name', 'åŽä¾Øå¤§å­¦'),
(123017, 99103, 'en', 'name', 'Huazhong Agricultural University'),
(123018, 99103, 'zh', 'name', 'åŽäø­å†œäøšå¤§å­¦'),
(123019, 99104, 'en', 'name', 'University of Tsukuba'),
(123020, 99104, 'ja', 'name', '筑波大学'),
(123021, 99105, 'en', 'name', 'Sol Plaatje University'),
(123022, 99106, 'tr', 'name', 'Türk Hava Kurumu Üniversitesi'),
(123023, 99106, 'en', 'name', 'University of Turkish Aeronautical Association'),
(123024, 99107, 'en', 'name', 'St. Olaf College'),
(123025, 99108, 'en', 'name', 'Centria University of Applied Sciences'),
(123026, 99108, 'fi', 'name', 'Centria ammattikorkeakoulu'),
(123027, 99108, 'sv', 'name', 'Centria yrkeshƶgskola'),
(123028, 99109, 'en', 'name', 'National Centre of Scientific Research "Demokritos"'),
(123029, 99109, 'el', 'name', 'Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ Ī¦Ļ…ĻƒĪ¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ Ī”Ī·Ī¼ĻŒĪŗĻĪ¹Ļ„ĪæĻ‚'),
(123030, 99110, 'en', 'name', 'Delft University of Technology'),
(123031, 99110, 'nl', 'name', 'Technische Universiteit Delft'),
(123032, 99111, 'en', 'name', 'Williams College'),
(123033, 99112, 'nl', 'name', 'Gerrit Rietveld Academie'),
(123034, 99112, 'en', 'name', 'Gerrit Rietveld Academy'),
(123035, 99113, 'en', 'name', 'Sakarya University of Applied Sciences'),
(123036, 99113, 'tr', 'name', 'Sakarya Uygulamalı Bilimler Üniversitesi'),
(123037, 99114, 'en', 'name', 'California State University, Channel Islands'),
(123038, 99114, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  channel islands'),
(123039, 99115, 'en', 'name', 'Langara College'),
(123040, 99116, 'en', 'name', 'City Literary Institute'),
(123041, 99117, 'en', 'name', 'Shenyang Pharmaceutical University'),
(123042, 99118, 'ca', 'name', 'Esade'),
(123043, 99119, 'en', 'name', 'Huangshan University'),
(123044, 99119, 'zh', 'name', '黄山学院'),
(123045, 99120, 'en', 'name', 'Capital Normal University'),
(123046, 99120, 'zh', 'name', 'é¦–éƒ½åøˆčŒƒå¤§å­¦'),
(123047, 99121, 'de', 'name', 'PƤdagogische Hochschule Schaffhausen'),
(123048, 99122, 'en', 'name', 'Australian National University'),
(123049, 99123, 'en', 'name', 'Bingƶl University'),
(123050, 99123, 'tr', 'name', 'Bingöl Üniversitesi'),
(123051, 99124, 'hu', 'name', 'Műszaki Egyetem'),
(123052, 99124, 'en', 'name', 'Technical University of Cluj-Napoca'),
(123053, 99124, 'ro', 'name', 'Universitatea Tehnică Cluj-Napoca'),
(123054, 99125, 'ga', 'name', 'ColƔiste na hOllscoile'),
(123055, 99125, 'en', 'name', 'University College Cork'),
(123056, 99126, 'en', 'name', 'Royal Roads University'),
(123057, 99127, 'en', 'name', 'Tshwane University of Technology'),
(123058, 99127, 'af', 'name', 'Tshwane-Universiteit van Tegnologie'),
(123059, 99128, 'en', 'name', 'Loyola University Maryland'),
(123060, 99128, 'es', 'name', 'Universidad Loyola Maryland'),
(123061, 99129, 'en', 'name', 'Karadeniz Technical University'),
(123062, 99129, 'tr', 'name', 'Karadeniz Teknik Üniversitesi'),
(123063, 99130, 'en', 'name', 'National Museums Scotland'),
(123064, 99131, 'en', 'name', 'Istanbul Sabahattin Zaim University'),
(123065, 99131, 'tr', 'name', 'İstanbul Sabahattin Zaim Üniversitesi'),
(123066, 99132, 'en', 'name', 'Slovak University of Technology in Bratislava'),
(123067, 99132, 'sk', 'name', 'SlovenskĆ” technickĆ” univerzita v Bratislave'),
(123068, 99133, 'en', 'name', 'Southwest Medical University'),
(123069, 99133, 'zh', 'name', 'ę³øå·žåŒ»å­¦é™¢'),
(123070, 99134, 'da', 'name', 'Det Kongelige Danske Musikkonservatorium'),
(123071, 99134, 'en', 'name', 'Royal Danish Academy of Music'),
(123072, 99135, 'sv', 'name', 'Kungliga Konsthƶgskolan'),
(123073, 99135, 'fi', 'name', 'Kuninkaallinen taidekorkeakoulu'),
(123074, 99135, 'en', 'name', 'Royal Institute of Art'),
(123075, 99136, 'es', 'name', 'Colegio Ithaca'),
(123076, 99136, 'en', 'name', 'Ithaca College'),
(123077, 99137, 'en', 'name', 'Beijing Institute of Petrochemical Technology'),
(123078, 99137, 'zh', 'name', 'åŒ—äŗ¬ēŸ³ę²¹åŒ–å·„å­¦é™¢'),
(123079, 99138, 'en', 'name', 'National Institute of Mental Health'),
(123080, 99139, 'en', 'name', 'Xi''an Polytechnic University'),
(123081, 99139, 'zh', 'name', '脿安巄程大学'),
(123082, 99140, 'de', 'name', 'PƤdagogische Hochschule Steiermark'),
(123083, 99140, 'en', 'name', 'University of Teacher Education Styria'),
(123084, 99141, 'en', 'name', 'Calderdale College'),
(123085, 99142, 'en', 'name', 'South African Theological Seminary'),
(123086, 99143, 'en', 'name', 'National Institute of Technology Rourkela'),
(123087, 99143, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤°ą¤¾ą¤‰ą¤°ą¤•ą„‡ą¤²ą¤¾'),
(123088, 99143, 'or', 'name', 'ą¬œą¬¾ą¬¤ą­€ą­Ÿ ą¬Ŗą­ą¬°ą¬Æą­ą¬•ą­ą¬¤ą¬æ ą¬Ŗą­ą¬°ą¬¤ą¬æą¬·ą­ą¬ ą¬¾ą¬Ø, ରାଉରକେଲା'),
(123089, 99144, 'no_lang_code', 'name', 'Yamanashi Gakuin University'),
(123090, 99144, 'ja', 'name', '山梨学院大学'),
(123091, 99145, 'en', 'name', 'National School of Political Science and Public Administration'),
(123092, 99145, 'ro', 'name', 'Şcoala Naţională de Studii Politice şi Administrative din Bucureşti'),
(123093, 99146, 'en', 'name', 'Rajarata University of Sri Lanka'),
(123094, 99146, 'ta', 'name', 'ą®°ą®œą®°ą®ŸąÆą®Ÿ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(123095, 99146, 'si', 'name', 'රජරට ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(123096, 99147, 'en', 'name', 'Pomeranian Medical University'),
(123097, 99147, 'de', 'name', 'Pommersche Medizinische UniversitƤt'),
(123098, 99147, 'pl', 'name', 'Pomorski Uniwersytet Medyczny w Szczecinie'),
(123099, 99148, 'en', 'name', 'Inner Mongolia Normal University'),
(123100, 99148, 'zh', 'name', 'å†…č’™å¤åøˆčŒƒå¤§å­¦'),
(123101, 99149, 'en', 'name', 'Indian Institute of Information Technology Design and Manufacturing Jabalpur'),
(123102, 99149, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤…ą¤­ą¤æą¤•ą¤²ą„ą¤Ŗą¤Ø ą¤ą¤µą¤‚ ą¤µą¤æą¤Øą¤æą¤°ą„ą¤®ą¤¾ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(123103, 99149, 'ne', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾-ą¤Ŗą„ą¤°ą¤µą¤æą¤§ą¤æ ą¤”ą¤æą¤œą¤¾ą¤‡ą¤Ø ą¤ą¤µą¤‚ ą¤‰ą¤¤ą„ą¤Ŗą¤¾ą¤¦ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø PDPM'),
(123104, 99150, 'en', 'name', 'Korea Research Institute of Ships and Ocean Engineering'),
(123105, 99151, 'en', 'name', 'Heart of Worcestershire College'),
(123106, 99152, 'es', 'name', 'Universidad de LƩrida'),
(123107, 99152, 'gl', 'name', 'Universidade de Lleida'),
(123108, 99152, 'ca', 'name', 'Universitat de Lleida'),
(123109, 99152, 'en', 'name', 'University of Lleida'),
(123110, 99153, 'nl', 'name', 'Iselinge Hogeschool'),
(123111, 99154, 'en', 'name', 'Istanbul Kültür University'),
(123112, 99154, 'tr', 'name', 'İstanbul Kültür Üniversitesi'),
(123113, 99155, 'en', 'name', 'South Eastern University of Sri Lanka'),
(123114, 99155, 'ta', 'name', 'ą®¤ąÆ†ą®©ąÆą®•ą®æą®“ą®•ąÆą®•ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®‡ą®²ą®™ąÆą®•ąÆˆ'),
(123115, 99155, 'si', 'name', 'ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶…ą¶œą·Šą¶±ą·’ą¶Æą·’ą¶œ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(123116, 99156, 'en', 'name', 'Tianjin University of Technology'),
(123117, 99156, 'zh', 'name', '天擄理巄大学'),
(123118, 99157, 'en', 'name', 'Wakefield College'),
(123119, 99158, 'en', 'name', 'Moravian University College Olomouc'),
(123120, 99158, 'cs', 'name', 'MoravskĆ” VysokĆ” Skola Olomouc'),
(123121, 99159, 'tr', 'name', 'Iskenderun Teknik Üniversitesi'),
(123122, 99159, 'en', 'name', 'İskenderun Technical University'),
(123123, 99160, 'en', 'name', 'Bishop''s University'),
(123124, 99160, 'fr', 'name', 'UniversitƩ Bishop'),
(123125, 99161, 'en', 'name', 'Hasselt University'),
(123126, 99161, 'nl', 'name', 'Universiteit Hasselt'),
(123127, 99161, 'fr', 'name', 'UniversitƩ de Hasselt'),
(123128, 99162, 'en', 'name', 'Keele University'),
(123129, 99163, 'en', 'name', 'Institute of Infrastructure Technology Research and Management'),
(123130, 99164, 'en', 'name', 'Stafford College'),
(123131, 99165, 'en', 'name', 'Hohai University'),
(123132, 99165, 'zh', 'name', '河海大学'),
(123133, 99166, 'en', 'name', 'Tianjin University of Science and Technology'),
(123134, 99166, 'zh', 'name', 'å¤©ę“„ē§‘ęŠ€å¤§å­¦'),
(123135, 99167, 'en', 'name', 'Swarthmore College'),
(123136, 99168, 'eu', 'name', 'Errioxako Unibertsitatea'),
(123137, 99168, 'es', 'name', 'Universidad de La Rioja'),
(123138, 99168, 'gl', 'name', 'Universidade da Rioxa'),
(123139, 99168, 'en', 'name', 'University of La Rioja'),
(123140, 99169, 'en', 'name', 'Marche Polytechnic University'),
(123141, 99169, 'it', 'name', 'UniversitĆ  Politecnica delle Marche'),
(123142, 99169, 'fr', 'name', 'UniversitƩ polytechnique des marches'),
(123143, 99170, 'es', 'name', 'Universidad a Distancia de Madrid'),
(123144, 99171, 'en', 'name', 'Argonne National Laboratory'),
(123145, 99171, 'es', 'name', 'Laboratorio Nacional Argonne'),
(123146, 99172, 'en', 'name', 'Maryland Geological Survey'),
(123147, 99173, 'en', 'name', 'Czech Academy of Sciences, Institute of Theoretical and Applied Mechanics'),
(123148, 99173, 'cs', 'name', 'Ústav teoretické a aplikované mechaniky AV ČR'),
(123149, 99174, 'en', 'name', 'Uro Oncology Research Center'),
(123150, 99174, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ سرطان Ł‡Ų§ŪŒ دستگاه ادراری ŲŖŁ†Ų§Ų³Ł„ŪŒ'),
(123151, 99175, 'en', 'name', 'Rosemont College'),
(123152, 99176, 'en', 'name', 'Forest Research Institute Baden-Wuerttemberg'),
(123153, 99176, 'de', 'name', 'Forstliche Versuchs- und Forschungsanstalt Baden-Württemberg'),
(123154, 99177, 'fr', 'name', 'CƩgep Limoilou'),
(123155, 99178, 'fr', 'name', 'La CitƩ du Genre'),
(123156, 99179, 'en', 'name', 'Institute for Research in Social Communication of the Slovak Academy of Sciences'),
(123157, 99179, 'sk', 'name', 'Ústav výskumu sociÔlnej komunikÔcie SlovenskÔ akadémia vied'),
(123158, 99180, 'en', 'name', 'Czech Academy of Sciences, Institute of Vertebrate Biology'),
(123159, 99180, 'cs', 'name', 'Ústav biologie obratlovců AV ČR'),
(123160, 99181, 'en', 'name', 'International Clinical Research Center, St. Anne''s University Hospital Brno'),
(123161, 99181, 'cs', 'name', 'MezinÔrodní centrum klinického výzkumu ve Fakultní nemocnici u sv. Anny'),
(123162, 99182, 'en', 'name', 'Exceptional Talents Development Center'),
(123163, 99182, 'fa', 'name', 'مرکز Ų±Ų“ŲÆ Ų§Ų³ŲŖŲ¹ŲÆŲ§ŲÆŁ‡Ų§ŪŒ درخؓان'),
(123164, 99183, 'en', 'name', 'Pharmaceutical Sciences Research Center'),
(123165, 99183, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… دارویی'),
(123166, 99184, 'es', 'name', 'Congreso de los Diputados'),
(123167, 99184, 'en', 'name', 'Congress of Deputies'),
(123168, 99185, 'en', 'name', 'Cell Therapy and Regenerative Medicine Research Center'),
(123169, 99185, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų³Ł„ŁˆŁ„ ŲÆŲ±Ł…Ų§Ł†ŪŒ و پزؓکی بازساختی'),
(123170, 99186, 'en', 'name', 'Metabolomics and Genomics Research Center'),
(123171, 99186, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ł…ŲŖŲ§ŲØŁˆŁ„ŁˆŁ…ŪŒŚ©Ų³ و Ś˜Ł†ŁˆŁ…ŪŒŚ©Ų³'),
(123172, 99187, 'en', 'name', 'Uganda National Academy of Sciences'),
(123173, 99188, 'en', 'name', 'New Mexico Bureau of Geology and Mineral Resources'),
(123174, 99189, 'no_lang_code', 'name', 'ƉlectricitĆ© de France (France)'),
(123175, 99190, 'no_lang_code', 'name', 'Valneva (Austria)'),
(123176, 99191, 'en', 'name', 'Baraka Agricultural College'),
(123177, 99192, 'es', 'name', 'Universidad Tecnologica de Ciudad Juarez'),
(123178, 99193, 'es', 'name', 'Universidad Tecnológica del Norte de Guanajuato'),
(123179, 99194, 'en', 'name', 'Nigeria Maritime University'),
(123180, 99195, 'en', 'name', 'University of Phayao'),
(123181, 99195, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø°ą¹€ąø¢ąø²'),
(123182, 99196, 'en', 'name', 'Museums Victoria'),
(123183, 99197, 'en', 'name', 'National College, Trichy'),
(123184, 99198, 'en', 'name', 'Institute of Measurement Science of the Slovak Academy of Sciences'),
(123185, 99198, 'sk', 'name', 'Ústav Merania SlovenskÔ akadémia vied'),
(123186, 99199, 'en', 'name', 'Farabi Hospital'),
(123187, 99199, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† فارابی'),
(123188, 99200, 'en', 'name', 'Northern Territory Geological Survey'),
(123189, 99201, 'en', 'name', 'Aju Pharm (South Korea)'),
(123190, 99201, 'ko', 'name', 'ģ•„ģ£¼ģ•½ķ’ˆ'),
(123191, 99202, 'en', 'name', 'Institute of Forest Ecology of the Slovak Academy of Sciences'),
(123192, 99202, 'sk', 'name', 'Ústav ekológie lesa SlovenskÔ akadémia vied'),
(123193, 99203, 'en', 'name', 'Federal College of Education (Technical), Umunze'),
(123194, 99204, 'en', 'name', 'LaserNetUS'),
(123195, 99205, 'en', 'name', 'inhbar, Inc. (Japan)'),
(123196, 99205, 'ja', 'name', 'ć‚¤ćƒ³ć‚Øć‚¤ćƒćƒćƒ¼åˆåŒä¼šē¤¾'),
(123197, 99206, 'en', 'name', 'Tianjin Renai College'),
(123198, 99206, 'zh', 'name', '天擄仁愛學院'),
(123199, 99207, 'en', 'name', 'Ethiopian Forestry Development'),
(123200, 99208, 'en', 'name', 'Center for Solid Waste Research'),
(123201, 99208, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ł…ŁˆŲ§ŲÆ Ų²Ų§Ų¦ŲÆ Ų¬Ų§Ł…ŲÆ'),
(123202, 99209, 'en', 'name', 'Elderly Health Research Center'),
(123203, 99209, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ سلامت سالمندان'),
(123204, 99210, 'es', 'name', 'Centro Internacional de Agricultura Tropical'),
(123205, 99210, 'en', 'name', 'International Center for Tropical Agriculture'),
(123206, 99211, 'es', 'name', 'Biblioteca Judicial "Dr. Ricardo Gallardo"'),
(123207, 99212, 'en', 'name', 'Federal University of SĆ£o Paulo'),
(123208, 99212, 'pt', 'name', 'Universidade Federal de SĆ£o Paulo'),
(123209, 99213, 'id', 'name', 'Poltekkes Kemenkes Surabaya'),
(123210, 99214, 'pt', 'name', 'Faculdade Patos de Minas - FPM'),
(123211, 99215, 'en', 'name', 'Geoscience Australia'),
(123212, 99216, 'fr', 'name', 'Laboratoire de physique des lasers'),
(123213, 99216, 'en', 'name', 'Laser Physics Laboratory'),
(123214, 99217, 'en', 'name', 'Open Knowledge Nepal'),
(123215, 99218, 'en', 'name', 'Institute of Materials and Machine Mechanics of the Slovak Academy of Sciences'),
(123216, 99218, 'sk', 'name', 'Ústav MateriÔlov a Mechaniky Strojov SlovenskÔ akadémia vied'),
(123217, 99219, 'fr', 'name', 'Laboratoire Informatique, Image et Interaction (L3i)'),
(123218, 99220, 'fr', 'name', 'Silva'),
(123219, 99221, 'en', 'name', 'Harry Butler Institute'),
(123220, 99222, 'en', 'name', 'Endocrine and Metabolism Research Center'),
(123221, 99222, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲŗŲÆŲÆ و Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŲ³Ł…'),
(123222, 99223, 'it', 'name', 'Istituto Imaging della Svizzera Italiana'),
(123223, 99224, 'en', 'name', 'Guangdong University of Foreign Studies'),
(123224, 99224, 'zh', 'name', 'å¹æäøœå¤–čÆ­å¤–č“øå¤§å­¦'),
(123225, 99225, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Milano Bicocca'),
(123226, 99225, 'en', 'name', 'National Institute for Nuclear Physics, Milano Bicocca Division'),
(123227, 99226, 'en', 'name', 'Shanghai Institute for Mathematics and Interdisciplinary Sciences'),
(123228, 99227, 'en', 'name', 'La Salle University Northwest'),
(123229, 99227, 'es', 'name', 'Universidad La Salle Noroeste'),
(123230, 99228, 'en', 'name', 'Cardiovascular Diseases Research Institute'),
(123231, 99228, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ قلب و Ų¹Ų±ŁˆŁ‚'),
(123232, 99229, 'es', 'name', 'Instituto Campechano'),
(123233, 99230, 'en', 'name', 'Medical College For Women and Hospital'),
(123234, 99231, 'en', 'name', 'Committee on Data of the International Science Council'),
(123235, 99232, 'en', 'name', 'Sendai Tokushukai Hospital'),
(123236, 99232, 'ja', 'name', 'ä»™å°å¾³ę“²ä¼šē—…é™¢'),
(123237, 99233, 'en', 'name', 'Environmental Protection Authority'),
(123238, 99233, 'mi', 'name', 'Te Mana Rauhī Taiao'),
(123239, 99234, 'en', 'name', 'Open Book Collective'),
(123240, 99235, 'en', 'name', 'University of Siena'),
(123241, 99235, 'it', 'name', 'UniversitĆ  degli Studi di Siena'),
(123242, 99235, 'de', 'name', 'UniversitƤt Siena'),
(123243, 99235, 'fr', 'name', 'UniversitƩ de sienne'),
(123244, 99235, 'sl', 'name', 'Univerza v Sieni'),
(123245, 99236, 'en', 'name', 'ToxStrategies LLC (United States)'),
(123246, 99237, 'en', 'name', 'Laboratory for Research on Enterprise and Decisions'),
(123247, 99238, 'ms', 'name', 'Universiti Malaysia Pahang Al-Sultan Abdullah'),
(123248, 99239, 'fr', 'name', 'GĆ©nĆ©tique Quantitative et Ɖvolution Le Moulon'),
(123249, 99239, 'en', 'name', 'Quantitative Genetics and Evolution - Le Moulon'),
(123250, 99240, 'no_lang_code', 'name', 'Thales (France)'),
(123251, 99241, 'fr', 'name', 'Association pour la sauvegarde de la mƩdina de Gafsa Asm Gafsa'),
(123252, 99242, 'it', 'name', 'Ministero dell''universitĆ  e della ricerca'),
(123253, 99242, 'en', 'name', 'Ministry of Universities and Research'),
(123254, 99243, 'es', 'name', 'Instituto Nacional de Ciencias Penales'),
(123255, 99243, 'en', 'name', 'National Institute of Criminal Science'),
(123256, 99244, 'fr', 'name', 'ArmƩe de l''air et de l''espace'),
(123257, 99245, 'de', 'name', 'Bundeswehr'),
(123258, 99246, 'pt', 'name', 'Fundação de Ensino e Pesquisa em Ciências da Saúde Secretaria de Estado de Saúde'),
(123259, 99247, 'it', 'name', 'Ospedale Regionale di Mendrisio'),
(123260, 99248, 'en', 'name', 'Hong Kong Sanatorium and Hospital'),
(123261, 99248, 'zh', 'name', '養和醫院'),
(123262, 99249, 'de', 'name', 'Institut für Mikrobiologie der Bundeswehr'),
(123263, 99250, 'en', 'name', 'Library and Archives Northern Territory'),
(123264, 99251, 'en', 'name', 'Hessian Ministry for Science and the Arts'),
(123265, 99251, 'de', 'name', 'Hessisches Ministerium für Wissenschaft und Kunst'),
(123266, 99252, 'en', 'name', 'Institute of Construction and Architecture of the Slovak Academy of Sciences'),
(123267, 99252, 'sk', 'name', 'Ústav stavebníctva a architektúry SlovenskÔ akadémia vied'),
(123268, 99253, 'pt', 'name', 'AIMM - Associação para a Investigação do Meio Marinho'),
(123269, 99254, 'en', 'name', 'Center for Air Pollution Research'),
(123270, 99254, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų¢Ł„ŁˆŲÆŚÆŪŒ Ł‡ŁˆŲ§'),
(123271, 99255, 'en', 'name', 'Vishnu Dental College'),
(123272, 99256, 'en', 'name', 'Czech Academy of Sciences, Institute of Photonics and Electronics'),
(123273, 99256, 'cs', 'name', 'Ústav fotoniky a elektroniky AV ČR'),
(123274, 99257, 'sk', 'name', 'Chemický ústav SlovenskÔ akadémia vied'),
(123275, 99257, 'en', 'name', 'Institute of Chemistry of the Slovak Academy of Sciences'),
(123276, 99258, 'en', 'name', 'Amal College of Advanced Studies'),
(123277, 99259, 'en', 'name', 'Kogi State College of Education, Ankpa'),
(123278, 99260, 'en', 'name', 'Siirt University'),
(123279, 99260, 'tr', 'name', 'Siirt Üniversitesi'),
(123280, 99261, 'en', 'name', 'Czech Academy of Sciences, Institute of Rock Structure and Mechanics'),
(123281, 99261, 'cs', 'name', 'Ústav struktury a mechaniky hornin AV ČR'),
(123282, 99262, 'fr', 'name', 'Ɖcole Centrale de Lille'),
(123283, 99263, 'en', 'name', 'LEM International (Switzerland)'),
(123284, 99264, 'en', 'name', 'Beijing Institute of Mathematical Sciences and Applications'),
(123285, 99264, 'zh', 'name', 'åŒ—äŗ¬é›ę –ę¹–åŗ”ē”Øę•°å­¦ē ”ē©¶é™¢'),
(123286, 99265, 'es', 'name', 'Observatorio Colombiano de Ciencia y TecnologĆ­a'),
(123287, 99266, 'en', 'name', 'Mental Health Research Institute, Tomsk National Research Medical Center, Russian Academy of Sciences'),
(123288, 99266, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Томский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский центр Российской акаГемии наук" ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психического Š·Š“Š¾Ń€Š¾Š²ŃŒŃ'),
(123289, 99267, 'fr', 'name', 'Ecologie des ForĆŖts de Guyane'),
(123290, 99267, 'en', 'name', 'Ecology of Guianan Forests'),
(123291, 99268, 'en', 'name', 'Office for Government Policy Coordination Prime Minister''s Secretariat'),
(123292, 99268, 'ko', 'name', '국묓씰정실 źµ­ė¬“ģ“ė¦¬ė¹„ģ„œģ‹¤'),
(123293, 99269, 'fr', 'name', 'Marine nationale'),
(123294, 99270, 'fr', 'name', 'Collège Jean-de-Brébeuf'),
(123295, 99271, 'en', 'name', 'Texas Southmost College'),
(123296, 99272, 'it', 'name', 'Istituto di Scienze e Tecnologie Chimiche "Giulio Natta"'),
(123297, 99273, 'sk', 'name', 'Ekonomický ústav SlovenskÔ akadémia vied'),
(123298, 99273, 'en', 'name', 'Institute of Economic Research of the Slovak Academy of Sciences'),
(123299, 99274, 'no_lang_code', 'name', 'Iberdrola (Spain)'),
(123300, 99275, 'en', 'name', 'Non-Communicable Diseases Research Center'),
(123301, 99275, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁ…Ų§Ų±ŪŒ Ł‡Ų§ŪŒ غیرواگی'),
(123302, 99276, 'en', 'name', 'Royal University of Bhutan'),
(123303, 99276, 'dz', 'name', 'འབྲནག་རྒྱལ་འཛིན་གཙནག་ལག་སློབ་སྔེ'),
(123304, 99277, 'en', 'name', 'Hessian State Office for Historical Studies'),
(123305, 99277, 'de', 'name', 'Hessische Institut für Landesgeschichte'),
(123306, 99278, 'es', 'name', 'Instituto Traumatológico Dr. Teodoro Gebauer Weisser'),
(123307, 99279, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Amministrazione Centrale'),
(123308, 99280, 'no_lang_code', 'name', 'Bentham Science Publishers (China)'),
(123309, 99281, 'en', 'name', 'Region SkƄne'),
(123310, 99281, 'se', 'name', 'Region SkƄne'),
(123311, 99282, 'en', 'name', 'Advanced Diagnostic and Interventional Radiology Research Center'),
(123312, 99282, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų±Ų§ŲÆŪŒŁˆŁ„ŁˆŚ˜ŪŒ Ł†ŁˆŪŒŁ† و ŲŖŁ‡Ų§Ų¬Ł…ŪŒ'),
(123313, 99283, 'en', 'name', 'Zoology Museum of the University of Athens'),
(123314, 99284, 'en', 'name', 'Centre for Biodiversity Genomics'),
(123315, 99285, 'fr', 'name', 'Centre d''Investigation Clinique Pierre Drouin'),
(123316, 99286, 'en', 'name', 'Development, Adaptation and Handicap'),
(123317, 99286, 'fr', 'name', 'DƩveloppement, Adaptation et Handicap'),
(123318, 99287, 'it', 'name', 'L’Agenzia per la Meteorologia e Climatologia "ItaliaMeteo"'),
(123319, 99288, 'pt', 'name', 'Instituto de Estudos Superiores Militares'),
(123320, 99288, 'en', 'name', 'Portuguese Joint Command and Staff College'),
(123321, 99289, 'en', 'name', 'Hungarian Dance University'),
(123322, 99289, 'hu', 'name', 'Magyar TÔncművészeti Egyetem'),
(123323, 99290, 'en', 'name', 'Institute of Virology of the Slovak Academy of Sciences'),
(123324, 99290, 'sk', 'name', 'Virologického ústavu SlovenskÔ akadémia vied'),
(123325, 99291, 'es', 'name', 'Instituto Tecnológico de TehuacÔn'),
(123326, 99292, 'en', 'name', 'MineraLogic LLC (United States)'),
(123327, 99293, 'en', 'name', 'Polymer Institute of the Slovak Academy of Sciences'),
(123328, 99293, 'sk', 'name', 'Ústav polymérov SlovenskÔ akadémia vied'),
(123329, 99294, 'en', 'name', 'Astana International University'),
(123330, 99294, 'kk', 'name', 'Астана халықаралық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(123331, 99294, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Астана'),
(123332, 99295, 'en', 'name', 'Concordia University'),
(123333, 99295, 'fr', 'name', 'UniversitƩ Concordia'),
(123334, 99296, 'en', 'name', 'National Institute of Textile Engineering and Research'),
(123335, 99296, 'bn', 'name', 'ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦¬ą¦øą§ą¦¤ą§ą¦° ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(123336, 99297, 'no_lang_code', 'name', 'Carnegie Learning, Inc. (United States)'),
(123337, 99298, 'de', 'name', 'Oikoplus GmbH'),
(123338, 99299, 'fr', 'name', 'UniversitƩ de Mayotte'),
(123339, 99300, 'en', 'name', 'WSP (New Zealand)'),
(123340, 99301, 'en', 'name', 'Emmanuel University'),
(123341, 99302, 'es', 'name', 'CIRCE - Centro Tecnológico'),
(123342, 99302, 'en', 'name', 'CIRCE - Technology Centre'),
(123343, 99303, 'en', 'name', 'Pratiksha Institute of Pharmaceutical Sciences'),
(123344, 99304, 'en', 'name', 'Jiangsu Frontier Electric Technology Co., Ltd. (China)'),
(123345, 99304, 'zh', 'name', 'ę±Ÿč‹ę–¹å¤©ē”µåŠ›ęŠ€ęœÆęœ‰é™å…¬åø'),
(123346, 99305, 'en', 'name', 'Red Sea Global (Saudi Arabia)'),
(123347, 99305, 'ar', 'name', 'البحر الأحمر Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(123348, 99306, 'en', 'name', 'Institute of Geotechnics of the Slovak Academy of Sciences'),
(123349, 99306, 'sk', 'name', 'Ústav Geotechniky SlovenskÔ akadémia vied'),
(123350, 99307, 'en', 'name', 'Iqra University'),
(123351, 99308, 'en', 'name', 'Institute of Informatics of the Slovak Academy of Sciences'),
(123352, 99308, 'sk', 'name', 'Ustav Informatiky SlovenskƔ akadƩmia vied'),
(123353, 99309, 'no_lang_code', 'name', 'PetroChina Southwest Oil and Gas Field Company (China)'),
(123354, 99309, 'zh', 'name', 'äø­å›½ēŸ³ę²¹č„æå—ę²¹ę°”ē”°åˆ†å…¬åø'),
(123355, 99310, 'en', 'name', 'Concord University College Fujian Normal University'),
(123356, 99310, 'zh', 'name', 'ē¦å»ŗåøˆčŒƒå¤§å­¦åå’Œå­¦é™¢'),
(123357, 99311, 'fr', 'name', 'Nantes UniversitƩ'),
(123358, 99312, 'it', 'name', 'Ministero dell''Istruzione, dell''UniversitĆ  e della Ricerca'),
(123359, 99312, 'en', 'name', 'Ministry of Education, Universities and Research'),
(123360, 99313, 'en', 'name', 'Hai Phong University of Management and Technology'),
(123361, 99313, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Quįŗ£n lý vĆ  CĆ“ng nghệ Hįŗ£i Phòng'),
(123362, 99314, 'pt', 'name', 'Sociedade Brasileira de Estudos em Sexualidade Humana'),
(123363, 99315, 'en', 'name', 'Maryland Department of Natural Resources'),
(123364, 99316, 'en', 'name', 'Shanxi Normal University'),
(123365, 99317, 'pt', 'name', 'Centro de Estudos Jurídicos Celso Barroso Leite da Associação Nacional dos Procuradores e Advogados Públicos Federais'),
(123366, 99318, 'en', 'name', 'Stress, Immunity, Pathogens'),
(123367, 99318, 'fr', 'name', 'Stress, immunité, pathogènes'),
(123368, 99319, 'en', 'name', 'Bentham Science Publishers (United Arab Emirates)'),
(123369, 99320, 'en', 'name', 'Hong Kong Baptist Hospital'),
(123370, 99321, 'fr', 'name', 'Centre National de CrƩation Musicale'),
(123371, 99322, 'en', 'name', 'Source International ETS'),
(123372, 99323, 'fr', 'name', 'Agro-Biotechnologies Industrielles'),
(123373, 99324, 'en', 'name', 'Institute of Parasitology of the Slovak Academy of Sciences'),
(123374, 99324, 'sk', 'name', 'Parazitologický ústav a biotechnológií rastlín SlovenskÔ akadémia vied'),
(123375, 99325, 'en', 'name', 'Avangrid Renewables'),
(123376, 99326, 'pt', 'name', 'Corpo de Bombeiros Militar de Minas Gerais'),
(123377, 99327, 'en', 'name', 'Bureau of Economic Geology'),
(123378, 99328, 'es', 'name', 'Centro para el Control Estatal de Medicamentos, Equipos y Dispositivos MƩdicos'),
(123379, 99329, 'ca', 'name', 'Hospital de Figueres'),
(123380, 99330, 'sk', 'name', 'Archeologický ústav SlovenskÔ akadémia vied'),
(123381, 99330, 'en', 'name', 'Institute of Archaeology of the Slovak Academy of Sciences'),
(123382, 99331, 'pt', 'name', 'Instituto Nacional de Traumatologia e Ortopedia'),
(123383, 99332, 'ca', 'name', 'Institut de Recerca Glòria Compte'),
(123384, 99333, 'en', 'name', 'Plaksha University'),
(123385, 99334, 'en', 'name', 'Charles Darwin University'),
(123386, 99335, 'id', 'name', 'Universitas Muhammadiyah Banjarmasin'),
(123387, 99336, 'en', 'name', 'Institute of Landscape Ecology of the Slovak Academy of Sciences'),
(123388, 99336, 'sk', 'name', 'Ústav krajinnej ekológie SlovenskÔ akadémia vied'),
(123389, 99337, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do CearÔ'),
(123390, 99338, 'en', 'name', 'Tomsk National Research Medical Center'),
(123391, 99338, 'ru', 'name', 'Томский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский центр'),
(123392, 99339, 'fr', 'name', 'UniversitƩ du QuƩbec en Outaouais'),
(123393, 99340, 'en', 'name', 'Evidence Based Medicine Research Center'),
(123394, 99340, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ پزؓکی Ł…ŲØŲŖŁ†ŪŒ ŲØŲ± Ų“ŁˆŲ§Ł‡ŲÆ'),
(123395, 99341, 'en', 'name', 'Institute of Oriental Studies of the Slovak Academy of Sciences'),
(123396, 99341, 'sk', 'name', 'Ústav orientalistiky SlovenskÔ akadémia vied'),
(123397, 99342, 'en', 'name', 'Nepal Orthopaedic Hospital'),
(123398, 99343, 'fr', 'name', 'Sciences de l''AntiquitƩ et du Moyen-Age'),
(123399, 99344, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Udine'),
(123400, 99345, 'pt', 'name', 'Instituto de CiĆŖncias Ambientais, QuĆ­micas e FarmacĆŖuticas'),
(123401, 99346, 'no_lang_code', 'name', 'Sina Hospital'),
(123402, 99346, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų³ŪŒŁ†Ų§'),
(123403, 99347, 'es', 'name', 'Instituto Tecnológico de LÔzaro CÔrdenas'),
(123404, 99348, 'en', 'name', 'Institute of Plant Genetics and Biotechnology of the Slovak Academy of Sciences'),
(123405, 99348, 'sk', 'name', 'Ústav genetiky a biotechnológií rastlín SlovenskÔ akadémia vied'),
(123406, 99349, 'en', 'name', 'University of YaoundƩ I'),
(123407, 99349, 'fr', 'name', 'UniversitƩ de YaoundƩ I'),
(123408, 99350, 'en', 'name', 'Aga Khan University'),
(123409, 99351, 'en', 'name', 'University of Mons'),
(123410, 99351, 'fr', 'name', 'UniversitƩ de Mons'),
(123411, 99352, 'en', 'name', 'St. Aloysius (Deemed to Be University)'),
(123412, 99353, 'fr', 'name', 'Centre Paul Broca'),
(123413, 99354, 'en', 'name', 'University of Al Dhaid'),
(123414, 99354, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų°ŁŠŲÆ'),
(123415, 99355, 'ca', 'name', 'Consorci Institut D''Investigacions Biomediques August Pi I Sunyer'),
(123416, 99356, 'fr', 'name', 'Laboratoire lorrain de psychologie et neurosciences de la dynamique des comportements'),
(123417, 99356, 'en', 'name', 'Lorraine Laboratory of Psychology and Neuroscience of Behavioral Dynamics'),
(123418, 99357, 'en', 'name', 'Kent Scientific Corporation (United States)'),
(123419, 99358, 'en', 'name', 'Endocrinology and Metabolism Molecular-Cellular Sciences Institute'),
(123420, 99358, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… Ų³Ł„ŁˆŁ„ŪŒ و Ł…ŁˆŁ„Ś©ŁˆŁ„ŪŒ ŲŗŲÆŲÆ'),
(123421, 99359, 'en', 'name', 'NSF Unidata'),
(123422, 99360, 'es', 'name', 'Unidad Funcional de Investigación de Enfermedades Crónicas'),
(123423, 99361, 'en', 'name', 'University of GabĆØs'),
(123424, 99361, 'fr', 'name', 'Université de gabès'),
(123425, 99361, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© قابس'),
(123426, 99362, 'en', 'name', 'National and Kapodistrian University of Athens'),
(123427, 99362, 'fr', 'name', 'Université nationale et capodistrienne d''athènes'),
(123428, 99362, 'el', 'name', 'Ī•ĪøĪ½Ī¹ĪŗĻŒ και ĪšĪ±Ļ€ĪæĪ“Ī¹ĻƒĻ„ĻĪ¹Ī±ĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(123429, 99363, 'en', 'name', 'Obuda University'),
(123430, 99363, 'la', 'name', 'Universitas Budensis'),
(123431, 99363, 'de', 'name', 'UniversitƤt Ɠbuda'),
(123432, 99363, 'hu', 'name', 'Ɠbudai Egyetem'),
(123433, 99364, 'en', 'name', 'Institute of Experimental Pharmacology and Toxicology of the Slovak Academy of Sciences'),
(123434, 99364, 'sk', 'name', 'Ústav experimentÔlnej farmakológie a toxikológie SlovenskÔ akadémia vied'),
(123435, 99365, 'en', 'name', 'Larbi Ben M''hidi University of Oum El Bouaghi'),
(123436, 99365, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أم Ų§Ł„ŲØŁˆŲ§Ł‚ŁŠ'),
(123437, 99366, 'en', 'name', 'Technical University "Metinvest Polytechnic" LLC'),
(123438, 99367, 'es', 'name', 'Centro de Investigación en Ciencias Atómicas, Nucleares y Moleculares'),
(123439, 99368, 'sk', 'name', 'Botanický ústav SlovenskÔ akadémia vied'),
(123440, 99368, 'en', 'name', 'Institute of Botany of the Slovak Academy of Sciences'),
(123441, 99369, 'en', 'name', 'Institute of State and Law of the Slovak Academy of Sciences'),
(123442, 99369, 'sk', 'name', 'Ústav ŔtÔtu a prÔva SlovenskÔ akadémia vied'),
(123443, 99370, 'en', 'name', 'Lahn-Dill District'),
(123444, 99370, 'de', 'name', 'Lahn-Dill-Kreis'),
(123445, 99371, 'en', 'name', 'Endocrinology and Metabolism Clinical Sciences Institute'),
(123446, 99371, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… ŲØŲ§Ł„ŪŒŁ†ŪŒ ŲŗŲÆŲÆ'),
(123447, 99372, 'es', 'name', 'IE Universidad'),
(123448, 99372, 'en', 'name', 'IE University'),
(123449, 99373, 'el', 'name', 'Ethnicon Metsovion Polytechnion'),
(123450, 99373, 'en', 'name', 'National Technical University of Athens'),
(123451, 99373, 'fr', 'name', 'Ɖcole polytechnique d''athĆØnes'),
(123452, 99374, 'sk', 'name', 'Elektrotechnický ústav SlovenskÔ akadémia vied'),
(123453, 99374, 'en', 'name', 'Institute of Electrical Engineering of the Slovak Academy of Sciences'),
(123454, 99375, 'es', 'name', 'Tecnológico de Estudios Superiores de JocotitlÔn'),
(123455, 99376, 'tr', 'name', 'Nobel Tip Kitabevleri'),
(123456, 99377, 'en', 'name', 'Digestive Disease Research Institute'),
(123457, 99377, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ ŲØŪŒŁ…Ų§Ų±ŪŒ Ł‡Ų§ŪŒ گوارؓ و کبد دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تهران'),
(123458, 99378, 'en', 'name', 'Japan Fisheries Research and Education Agency'),
(123459, 99378, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę°“ē”£ē ”ē©¶ćƒ»ę•™č‚²ę©Ÿę§‹'),
(123460, 99379, 'nl', 'name', 'Gemeente Maastricht'),
(123461, 99380, 'en', 'name', 'Adeyemi Federal University of Education, Ondo, Nigeria'),
(123462, 99381, 'en', 'name', 'International Laboratory on Learning Systems'),
(123463, 99382, 'en', 'name', 'Institute of Biomedicine and Molecular Genetics of Valladolid'),
(123464, 99382, 'es', 'name', 'Instituto de Biomedicina y GenƩtica Molecular de Valladolid'),
(123465, 99383, 'en', 'name', 'Pharmaceutical Quality Assurance Research Center'),
(123466, 99383, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲŖŲ¶Ł…ŪŒŁ† کیفیت دارو'),
(123467, 99384, 'id', 'name', 'Institut Parahikma Indonesia'),
(123468, 99385, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Alessandria'),
(123469, 99386, 'en', 'name', 'University of Udine'),
(123470, 99386, 'it', 'name', 'UniversitĆ  degli Studi di Udine'),
(123471, 99386, 'de', 'name', 'UniversitƤt Udine'),
(123472, 99386, 'sl', 'name', 'Univerza v Vidmu'),
(123473, 99387, 'ca', 'name', 'Fundació Privada Clínic per a La Recerca Biomèdica'),
(123474, 99388, 'fr', 'name', 'Ministère des Armées'),
(123475, 99389, 'en', 'name', 'Iranian Research Center for HIV/AIDS'),
(123476, 99389, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ایدز Ų§ŪŒŲ±Ų§Ł†'),
(123477, 99390, 'en', 'name', 'Center for Water Quality Research'),
(123478, 99390, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ کیفیت Ų¢ŲØ'),
(123479, 99391, 'en', 'name', 'University of Guelph'),
(123480, 99391, 'fr', 'name', 'UniversitƩ de guelph'),
(123481, 99392, 'en', 'name', 'Indian Institute of Management Sambalpur'),
(123482, 99393, 'es', 'name', 'Corporación Universitaria Lasallista'),
(123483, 99394, 'en', 'name', 'Ba Ria - Vung Tau College of Engineering and Technology'),
(123484, 99394, 'vi', 'name', 'TrĘ°į»ng Cao đẳng Kỹ thuįŗ­t CĆ“ng nghệ BĆ  Rịa - VÅ©ng TĆ u'),
(123485, 99395, 'pt', 'name', 'Instituto para os Comportamentos Aditivos e as DependĆŖncias, I.P.'),
(123486, 99396, 'en', 'name', 'Ergolight'),
(123487, 99396, 'he', 'name', '××Ø×’×•×œ×™×™×˜'),
(123488, 99397, 'ca', 'name', 'Fundació Salut Empordà'),
(123489, 99398, 'ca', 'name', 'Fundació Clínic per a la Recerca Biomèdica'),
(123490, 99399, 'en', 'name', 'Endocrine & Metabolism Research Institute'),
(123491, 99399, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų¹Ł„ŁˆŁ… ŲŗŲÆŲÆ و Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŲ³Ł…'),
(123492, 99400, 'en', 'name', 'University of Guelma'),
(123493, 99400, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© 8 Ł…Ų§ŁŠ 45-قالمة'),
(123494, 99401, 'es', 'name', 'Instituto de Investigacion Traslacional y Biotransversal Ayru'),
(123495, 99402, 'en', 'name', 'Personalized Medicine Research Center'),
(123496, 99402, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ پزؓکی فردی'),
(123497, 99403, 'en', 'name', 'Research and Environmental Education Foundation'),
(123498, 99404, 'en', 'name', 'Jan Stanislav Institute of Slavistics of the Slovak Academy of Sciences'),
(123499, 99404, 'sk', 'name', 'Slavistický ústav JÔna Stanislava SlovenskÔ akadémia vied'),
(123500, 99405, 'en', 'name', 'Open Science Community Iraq'),
(123501, 99405, 'ar', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų© العراق'),
(123502, 99406, 'en', 'name', 'Ohio Department of Natural Resources'),
(123503, 99407, 'en', 'name', 'VCCT Inc. (Japan)'),
(123504, 99408, 'en', 'name', 'Pharmaceutical Management and Economics Research Center'),
(123505, 99408, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اقتصاد و Ł…ŲÆŪŒŲ±ŪŒŲŖ دارو'),
(123506, 99409, 'en', 'name', 'Cancer Council NSW'),
(123507, 99410, 'en', 'name', 'Diagnosis and International Adaptive Imaging'),
(123508, 99410, 'fr', 'name', 'Imagerie Adaptative Diagnostique et Interventionnelle'),
(123509, 99411, 'en', 'name', 'Institute of Criminology and Social Prevention'),
(123510, 99412, 'es', 'name', 'Instituto Tecnologico de Nuevo Laredo'),
(123511, 99413, 'en', 'name', 'Metabolic Diseases Research Center'),
(123512, 99413, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اختلالات Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŚ©'),
(123513, 99414, 'fr', 'name', 'ArmƩe de terre'),
(123514, 99415, 'en', 'name', 'VIB Single Cell Core'),
(123515, 99416, 'en', 'name', 'Institute of Experimental Physics of the Slovak Academy of Sciences'),
(123516, 99416, 'sk', 'name', 'Ústav ExperimentÔlnej Fyziky SlovenskÔ akadémia vied'),
(123517, 99417, 'en', 'name', 'Medical Center "LORIMED" LLC'),
(123518, 99418, 'en', 'name', 'Region of Attica'),
(123519, 99419, 'en', 'name', 'Washington Department of Natural Resources'),
(123520, 99420, 'en', 'name', 'Third Geological Brigade of Hubei Geological Bureau'),
(123521, 99421, 'sk', 'name', 'InŔtitut za hmeljarstvo in pivovarstvo Slovenije'),
(123522, 99421, 'en', 'name', 'Slovenian Institute of Hop Research and Brewing'),
(123523, 99422, 'es', 'name', 'IEEG'),
(123524, 99423, 'en', 'name', 'Archaeological Museum in Zagreb'),
(123525, 99424, 'en', 'name', 'Radiant Earth'),
(123526, 99425, 'en', 'name', 'BitsLab (Singapore)'),
(123527, 99426, 'en', 'name', 'Portsmouth College'),
(123528, 99427, 'fr', 'name', 'Microbiologie de l’alimentation au service de la santĆ©'),
(123529, 99428, 'sk', 'name', 'Jednota slovenských matematikov a fyzikov'),
(123530, 99428, 'en', 'name', 'Union of Slovak Mathematicians and Physicists'),
(123531, 99429, 'fr', 'name', 'Laboratoire Lorrain de Chimie MolƩculaire'),
(123532, 99430, 'de', 'name', 'Deutscher Fachverband für Agroforstwirtschaft'),
(123533, 99430, 'en', 'name', 'German Association for Agroforestry'),
(123534, 99431, 'en', 'name', 'Research Team on Innovation Process'),
(123535, 99431, 'fr', 'name', 'Ɖquipe de Recherche sur les Processus Innovatifs'),
(123536, 99432, 'de', 'name', 'Hessisches Landesarchiv'),
(123537, 99433, 'fr', 'name', 'MathƩmatiques et Informatique AppliquƩes'),
(123538, 99434, 'en', 'name', 'Zero Waste Scotland'),
(123539, 99435, 'da', 'name', 'Velux Fonden'),
(123540, 99436, 'fr', 'name', 'Laboratoire Dynamique de la BiodiversitƩ'),
(123541, 99437, 'tr', 'name', 'Tokat Gaziosmanpaşa Üniversitesi'),
(123542, 99438, 'en', 'name', 'Austrian Atherosclerosis Society'),
(123543, 99438, 'de', 'name', 'Ɩsterreichischen Atherosklerosegesellschaft'),
(123544, 99439, 'en', 'name', 'FOCUS Strategic Thinking Consultants'),
(123545, 99440, 'en', 'name', 'World Bladder Cancer Patient Coalition aisbl'),
(123546, 99441, 'en', 'name', 'Brazilian School of Public and Business Administration'),
(123547, 99441, 'pt', 'name', 'Escola Brasileira de Administração Pública e de Empresas'),
(123548, 99442, 'sk', 'name', 'Jazykovedný ústav Ľudovíta Štúra SlovenskÔ akadémia vied'),
(123549, 99442, 'en', 'name', 'Ludovit Stur Institute of Linguistics of the Slovak Academy of Sciences'),
(123550, 99443, 'pt', 'name', 'Escola de SaĆŗde PĆŗblica do Distrito Federal'),
(123551, 99444, 'en', 'name', 'Institute of World Literature of the Slovak Academy of Sciences'),
(123552, 99444, 'sk', 'name', 'Ústav etnológie a sociÔlnej antropológie SlovenskÔ akadémia vied'),
(123553, 99445, 'pt', 'name', 'Associação Nacional dos Procuradores e Advogados Públicos Federais'),
(123554, 99446, 'fr', 'name', 'CollĆØge de Bois-de-Boulogne'),
(123555, 99447, 'en', 'name', 'Institute of Political Science of the Slovak Academy of Sciences'),
(123556, 99447, 'sk', 'name', 'Ústav politických vied SlovenskÔ akadémia vied'),
(123557, 99448, 'en', 'name', 'Thoth Open Metadata'),
(123558, 99449, 'fr', 'name', 'HƓpital Saint-Julien'),
(123559, 99450, 'en', 'name', 'Centre for Digital Humanities'),
(123560, 99451, 'fr', 'name', 'IFP Ɖnergies nouvelles'),
(123561, 99452, 'de', 'name', 'ai-quanton GmbH'),
(123562, 99453, 'en', 'name', 'Occupational Sleep Research Center'),
(123563, 99453, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اختلالات خواب Ų“ŲŗŁ„ŪŒ'),
(123564, 99454, 'en', 'name', 'Dezful University of Medical Sciences'),
(123565, 99454, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ ŲÆŲ²ŁŁˆŁ„'),
(123566, 99455, 'fr', 'name', 'Institut franƧais Deutschland'),
(123567, 99456, 'es', 'name', 'Centro Mexicano para la Producción mÔs Limpia'),
(123568, 99457, 'en', 'name', 'Guangdong Polytechnic of Industry and Commerce'),
(123569, 99457, 'zh', 'name', 'å»£ę±å·„č²æč·ę„­ęŠ€č”“å­øé™¢'),
(123570, 99458, 'en', 'name', 'Nozaki Tokushukai Hospital'),
(123571, 99458, 'ja', 'name', 'é‡Žå“Žå¾³ę“²ä¼šē—…é™¢'),
(123572, 99459, 'es', 'name', 'Unión Médica Clínica Universitaria'),
(123573, 99460, 'en', 'name', 'Craniomaxillofacial Research Center'),
(123574, 99460, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ جراحی Ł‡Ų§ŪŒ فک و صورت'),
(123575, 99461, 'en', 'name', 'Biosensor Research Center'),
(123576, 99461, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁˆŲ³Ł†Ų³ŁˆŲ±'),
(123577, 99462, 'es', 'name', 'Instituto Tecnológico Superior de Huauchinango'),
(123578, 99463, 'en', 'name', 'Malawi College of Forestry and Wildlife'),
(123579, 99464, 'es', 'name', 'Instituto Superior de Educación Normal del Estado de Colima "Profr. Gregorio Torres Quintero"'),
(123580, 99465, 'sk', 'name', 'Filozofický ústav SlovenskÔ akadémia vied'),
(123581, 99465, 'en', 'name', 'Institute of Philosophy of the Slovak Academy of Sciences'),
(123582, 99466, 'es', 'name', 'BenemƩrita Escuela Normal Urbana "Profr. Domingo Carballo FƩlix"'),
(123583, 99467, 'fr', 'name', 'Groupe de Recherche en Ɖnergie Ɖlectrique de Nancy'),
(123584, 99468, 'en', 'name', 'Institute for Forecasting of the Slovak Academy of Sciences'),
(123585, 99468, 'sk', 'name', 'Prognostický ústav SlovenskÔ akadémia vied'),
(123586, 99469, 'en', 'name', 'Huayun Sounding Meteorological Technology Co. Ltd. (China)'),
(123587, 99469, 'zh', 'name', 'åŽäŗ‘å‡č¾¾ļ¼ˆåŒ—äŗ¬ļ¼‰ę°”č±”ē§‘ęŠ€ęœ‰é™č“£ä»»å…¬åø'),
(123588, 99470, 'en', 'name', 'City of Portsmouth College'),
(123589, 99471, 'pt', 'name', 'Serviço de Intervenção nos Comportamentos Aditivos e nas Dependências'),
(123590, 99472, 'en', 'name', 'EMERGREEN'),
(123591, 99473, 'en', 'name', 'Ohio Division of Geological Survey'),
(123592, 99474, 'en', 'name', 'Local Contexts Inc.'),
(123593, 99475, 'en', 'name', 'Czech Academy of Sciences, Institute of Thermomechanics'),
(123594, 99475, 'cs', 'name', 'Ústav termomechaniky AV ČR'),
(123595, 99476, 'fr', 'name', 'Conseil International des Sciences'),
(123596, 99476, 'en', 'name', 'International Science Council'),
(123597, 99477, 'en', 'name', 'Institute for Environmental Research'),
(123598, 99477, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ł…Ų­ŪŒŲ· زیست'),
(123599, 99478, 'en', 'name', 'Australasian Sarcoma Study Group'),
(123600, 99479, 'en', 'name', 'Research Center for Chronic Inflammatory Diseases');
INSERT INTO `ror_settings` VALUES
(123601, 99479, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁ…Ų§Ų±ŪŒ Ł‡Ų§ŪŒ Ų§Ł„ŲŖŁ‡Ų§ŲØŪŒ مزمن'),
(123602, 99480, 'fr', 'name', 'Institut FranƧais'),
(123603, 99481, 'fr', 'name', 'ABSys'),
(123604, 99482, 'en', 'name', 'Writtle University College'),
(123605, 99483, 'no_lang_code', 'name', 'Intercell (Austria)'),
(123606, 99484, 'fr', 'name', 'Ɖcole Nationale d''Administration Publique'),
(123607, 99485, 'en', 'name', 'Aga Khan University Institute for Study of Muslim Civilisations'),
(123608, 99486, 'en', 'name', 'Institute of Animal Physiology of the Slovak Academy of Sciences'),
(123609, 99486, 'sk', 'name', 'Ústav fyziológie hospodÔrskych zviera SlovenskÔ akadémia vied'),
(123610, 99487, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Chimie de Rennes'),
(123611, 99488, 'en', 'name', 'Association for Farmers Rights Defense'),
(123612, 99488, 'ka', 'name', 'įƒ¤įƒ”įƒ įƒ›įƒ”įƒ įƒ—įƒ įƒ£įƒ¤įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜įƒ” įƒ“įƒįƒŖįƒ•įƒ˜įƒ” įƒįƒ”įƒįƒŖįƒ˜įƒįƒŖįƒ˜įƒ'),
(123613, 99489, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Siena'),
(123614, 99490, 'en', 'name', 'Institute of Slovak Literature of the Slovak Academy of Sciences'),
(123615, 99490, 'sk', 'name', 'Ústav svetovej literatúry SlovenskÔ akadémia vied'),
(123616, 99491, 'en', 'name', 'Murdoch University'),
(123617, 99492, 'en', 'name', 'Kharkiv University of Technology "STEP"'),
(123618, 99493, 'fr', 'name', 'Agence spatiale brƩsilienne'),
(123619, 99493, 'es', 'name', 'Agencia Espacial BrasileƱa'),
(123620, 99493, 'pt', 'name', 'AgĆŖncia Espacial Brasileira'),
(123621, 99493, 'en', 'name', 'Brazilian Space Agency'),
(123622, 99494, 'en', 'name', 'Osteoporosis Research Center'),
(123623, 99494, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ استئوپروز'),
(123624, 99495, 'en', 'name', '13 Aban Pharmacy'),
(123625, 99495, 'fa', 'name', 'ŲÆŲ§Ų±ŁˆŲ®Ų§Ł†Ł‡ Ł‡Ų§ŪŒ دانؓکده داروسازی دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تهران'),
(123626, 99496, 'fr', 'name', 'Ɖcole d''IngĆ©nieurs en Chimie et Sciences du NumĆ©rique'),
(123627, 99497, 'en', 'name', 'Graw Radiosondes GmbH & Co. KG (Germany)'),
(123628, 99498, 'es', 'name', 'Universidad Central "Marta Abreu" de las Villas (UCLV)'),
(123629, 99499, 'en', 'name', 'Research Institute of Natural Gas Technology'),
(123630, 99499, 'zh', 'name', 'äø­å›½ēŸ³ę²¹č„æå—ę²¹ę°”ē”°å…¬åøå¤©ē„¶ę°”ē ”ē©¶é™¢'),
(123631, 99500, 'en', 'name', 'Institute of Molecular Life Sciences'),
(123632, 99500, 'hu', 'name', 'MolekulĆ”ris ƉlettudomĆ”nyi IntĆ©zetben'),
(123633, 99501, 'en', 'name', 'Cancer Research Institute of the Slovak Academy of Sciences'),
(123634, 99501, 'sk', 'name', 'Ústav experimentalnej onkológie SlovenskÔ akadémia vied'),
(123635, 99502, 'en', 'name', 'Sleep Breathing Disorders Research Center'),
(123636, 99502, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اختلالات ŲŖŁ†ŁŲ³ŪŒ Ų­ŪŒŁ† خواب'),
(123637, 99503, 'en', 'name', 'Iowa Geological Survey'),
(123638, 99504, 'en', 'name', 'Institute of Zoology of the Slovak Academy of Sciences'),
(123639, 99504, 'sk', 'name', 'Ústav zoológie SlovenskÔ akadémia vied'),
(123640, 99505, 'en', 'name', 'Ziaeian Hospital'),
(123641, 99505, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¶ŪŒŲ§Ų¦ŪŒŲ§Ł†'),
(123642, 99506, 'fr', 'name', 'AtmoSud'),
(123643, 99507, 'en', 'name', 'Hekima University College'),
(123644, 99508, 'pt', 'name', 'Faculdade Municipal de PalhoƧa'),
(123645, 99509, 'id', 'name', 'Universitas Kiai Abdullah Faqih Gresik'),
(123646, 99510, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare'),
(123647, 99510, 'en', 'name', 'National Institute for Nuclear Physics'),
(123648, 99511, 'en', 'name', 'Institute of Normal and Pathological Physiology of the Slovak Academy of Sciences'),
(123649, 99511, 'sk', 'name', 'Ústav normÔlnej a patologickej fyziológie SlovenskÔ akadémia vied'),
(123650, 99512, 'fr', 'name', 'ESPCI Paris'),
(123651, 99513, 'en', 'name', 'University of Blida 2'),
(123652, 99514, 'en', 'name', 'Museum of Prague'),
(123653, 99514, 'cs', 'name', 'Muzeum hlavnƭho města Prahy'),
(123654, 99515, 'en', 'name', 'HUN-REN Research Centre for Natural Sciences'),
(123655, 99515, 'hu', 'name', 'HUN-REN TermészettudomÔnyi Kutatóközpont'),
(123656, 99516, 'es', 'name', 'Universidad Tecmilenio - Campus Veracruz'),
(123657, 99517, 'en', 'name', 'Osh Technological University'),
(123658, 99517, 'ky', 'name', 'ŠžŠØ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜ŠÆŠ›Š«Šš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š˜'),
(123659, 99517, 'ru', 'name', 'ŠžŠØŠ”ŠšŠ˜Š™ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•CŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(123660, 99518, 'en', 'name', 'Institute of Molecular Biology of the Slovak Academy of Sciences'),
(123661, 99518, 'sk', 'name', 'Ústav molekulÔrnej biológie SlovenskÔ akadémia vied'),
(123662, 99519, 'en', 'name', 'Tehran Heart Center'),
(123663, 99519, 'fa', 'name', 'مرکز قلب تهران'),
(123664, 99520, 'es', 'name', 'Universidad de Oriente'),
(123665, 99521, 'en', 'name', 'Concordia University Press'),
(123666, 99522, 'en', 'name', 'Nnamdi Azikiwe University'),
(123667, 99523, 'en', 'name', 'Institute of Experimental Endocrinology of the Slovak Academy of Sciences'),
(123668, 99523, 'sk', 'name', 'Ústav experimentÔlnej endokrinológie SlovenskÔ akadémia vied'),
(123669, 99524, 'sk', 'name', 'Matematický ústav Slovenskej akadémie vied'),
(123670, 99524, 'en', 'name', 'Mathematical Institute of the Slovak Academy of Sciences'),
(123671, 99525, 'fr', 'name', 'Institut Jean-Pierre Bourgin'),
(123672, 99526, 'fr', 'name', 'Atmo Guyane'),
(123673, 99527, 'en', 'name', 'Linux Foundation'),
(123674, 99528, 'en', 'name', 'Sherubtse College'),
(123675, 99528, 'dz', 'name', 'ą½¤ą½ŗą½¦ą¼‹ą½¢ą½–ą¼‹ą½¢ą¾©ą½ŗą¼‹ą½˜ą½ą½¼ą¼‹ą½¢ą½²ą½˜ą¼‹ą½¦ą¾³ą½¼ą½–ą¼‹ą½‚ą¾²ą¾­ą¼'),
(123676, 99529, 'en', 'name', 'Al-Azhar University'),
(123677, 99530, 'en', 'name', 'Czech Academy of Sciences, Institute of State and Law'),
(123678, 99530, 'cs', 'name', 'Ústav stÔtu a prÔva AV ČR'),
(123679, 99531, 'en', 'name', 'Communication University of China, Nanjing'),
(123680, 99531, 'zh', 'name', 'å—äŗ¬ä¼ åŖ’å­¦é™¢'),
(123681, 99532, 'en', 'name', 'New Mexico Institute of Mining and Technology'),
(123682, 99532, 'fr', 'name', 'Ɖcole des mines du nouveau-mexique'),
(123683, 99533, 'en', 'name', 'Al Fajr College of Science and Technology'),
(123684, 99533, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الفجر Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(123685, 99534, 'en', 'name', 'Wuhan Engineering Science & Technology Institute'),
(123686, 99534, 'zh', 'name', 'ę­¦ę±‰åø‚å·„ēØ‹ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(123687, 99535, 'no_lang_code', 'name', 'WSP (Canada)'),
(123688, 99536, 'en', 'name', 'Kamuzu University of Health Sciences'),
(123689, 99537, 'es', 'name', 'Universidad Autónoma de Guerrero'),
(123690, 99538, 'de', 'name', 'Institut für Wohnbauforschung'),
(123691, 99539, 'en', 'name', 'Royal Botanic Gardens Victoria'),
(123692, 99540, 'es', 'name', 'Universidad de Valladolid'),
(123693, 99540, 'gl', 'name', 'Universidade de Valladolid'),
(123694, 99540, 'en', 'name', 'University of Valladolid'),
(123695, 99540, 'eu', 'name', 'Valladolideko Unibertsitatea'),
(123696, 99541, 'en', 'name', 'Kuras Institute of Political and Ethnic Studies of the National Academy of Sciences of Ukraine'),
(123697, 99541, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ політичних і ŠµŃ‚Š½Š¾Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ім. І.Ф. ŠšŃƒŃ€Š°ŃŠ° ŠŠŠ України'),
(123698, 99542, 'en', 'name', 'Czech Academy of Sciences, Institute of Slavonic Studies'),
(123699, 99542, 'cs', 'name', 'Slovanský ústav AV ČR'),
(123700, 99543, 'en', 'name', 'Alaska Department of Natural Resources'),
(123701, 99544, 'da', 'name', 'Villum Fonden'),
(123702, 99545, 'en', 'name', 'China National Botanical Garden'),
(123703, 99545, 'zh', 'name', 'å›½å®¶ę¤ē‰©å›­'),
(123704, 99546, 'en', 'name', 'Fırat University'),
(123705, 99546, 'tr', 'name', 'Fırat Üniversitesi'),
(123706, 99547, 'en', 'name', 'Republican Specialised Scientific and Practical Medical Centre of Eye Microsurgery'),
(123707, 99548, 'en', 'name', 'Government of the Northern Territory'),
(123708, 99549, 'en', 'name', 'Center for Marine Sciences and Technology'),
(123709, 99550, 'en', 'name', 'Washington Geological Survey'),
(123710, 99551, 'en', 'name', 'Alaska Division of Geological and Geophysical Surveys'),
(123711, 99552, 'en', 'name', 'Berkeley Yeast'),
(123712, 99553, 'en', 'name', 'Protestant University of Rwanda'),
(123713, 99554, 'en', 'name', 'Institute of Musicology of the Slovak Academy of Sciences'),
(123714, 99554, 'sk', 'name', 'Ústav hudobnej vedy SlovenskÔ akadémia vied'),
(123715, 99555, 'en', 'name', 'Rheumatology Research Center'),
(123716, 99555, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų±ŁˆŁ…Ų§ŲŖŁˆŁ„ŁˆŚ˜ŪŒ'),
(123717, 99556, 'en', 'name', 'Health Equity Research Center'),
(123718, 99556, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ عدالت ŲÆŲ± سلامت'),
(123719, 99557, 'en', 'name', 'Penobscot Marine Museum'),
(123720, 99558, 'en', 'name', 'Vancouver School of Theology'),
(123721, 99559, 'fr', 'name', 'Paris Jourdan Sciences Economiques'),
(123722, 99560, 'en', 'name', 'Institute of Inorganic Chemistry of the Slovak Academy of Sciences'),
(123723, 99560, 'sk', 'name', 'Ústav anorganickej chémie SlovenskÔ akadémia vied'),
(123724, 99561, 'en', 'name', 'Institute for Sociology of the Slovak Academy of Sciences'),
(123725, 99561, 'sk', 'name', 'Sociologický ústav SlovenskÔ akadémia vied'),
(123726, 99562, 'en', 'name', 'IP Innovative Publication Pvt. Ltd. (India)'),
(123727, 99563, 'en', 'name', 'Highbury College'),
(123728, 99564, 'fr', 'name', 'Polytech Tours'),
(123729, 99565, 'en', 'name', 'Al-Hawash Private University'),
(123730, 99565, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŁˆŲ§Ų“ الخاصة'),
(123731, 99566, 'en', 'name', 'Nune Eye Hospital'),
(123732, 99566, 'ko', 'name', 'ėˆ„ė„¤ģ•ˆź³¼ė³‘ģ›'),
(123733, 99567, 'en', 'name', 'Institute of Health Carlos III'),
(123734, 99567, 'es', 'name', 'Instituto de Salud Carlos III'),
(123735, 99568, 'fr', 'name', 'Ɖcole de Technologie SupĆ©rieure'),
(123736, 99569, 'en', 'name', 'VNUHCM – High School for the Gifted'),
(123737, 99570, 'es', 'name', 'Instituto Electoral del Estado de MƩxico'),
(123738, 99571, 'no_lang_code', 'name', 'CGIAR'),
(123739, 99572, 'en', 'name', 'Department of Primary Industry and Resources'),
(123740, 99573, 'pt', 'name', 'Instituto de Estudos Avançados da Universidade de São Paulo'),
(123741, 99574, 'de', 'name', 'ARDIG - ArchƤologischer Dienst GesmbH'),
(123742, 99575, 'fr', 'name', 'HEC MontrƩal'),
(123743, 99576, 'en', 'name', 'Obesity and Eating Habits Research Center'),
(123744, 99576, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ś†Ų§Ł‚ŪŒ و Ų¹Ų§ŲÆŲ§ŲŖ غذایی'),
(123745, 99577, 'fr', 'name', 'Laboratoire de Physique et Chimie ThƩoriques'),
(123746, 99578, 'en', 'name', 'Shiseikai Daini Hospital'),
(123747, 99578, 'ja', 'name', 'č‡³čŖ ä¼šē¬¬äŗŒē—…é™¢'),
(123748, 99579, 'en', 'name', 'Raparin Technical and Vocational Institute'),
(123749, 99579, 'ar', 'name', 'معهد Ų±Ų§ŲØŲ±ŁŠŁ† Ų§Ł„ŲŖŁ‚Ł†ŁŠ ŁˆŲ§Ł„Ł…Ł‡Ł†ŁŠ'),
(123750, 99579, 'ku', 'name', 'Ł¾Ū•ŪŒŁ…Ų§Ł†ŚÆŪ•ŪŒ ŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ و Ł¾ŪŒŲ“Ū•ŪŒ Ś•Ų§Ł¾Ū•Ś•ŪŒŁ†'),
(123751, 99580, 'fr', 'name', 'INSA Hauts-de-France'),
(123752, 99581, 'en', 'name', 'Endocrinology and Metabolism Population Sciences Institute'),
(123753, 99581, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… Ų¬Ł…Ų¹ŪŒŲŖŪŒ ŲŗŲÆŲÆ'),
(123754, 99582, 'en', 'name', 'Northwest Association of Networked Ocean Observing Systems'),
(123755, 99583, 'en', 'name', 'Bioversity International'),
(123756, 99584, 'es', 'name', 'Universidad La Salle'),
(123757, 99585, 'en', 'name', 'Veni Creator Christian University'),
(123758, 99586, 'pl', 'name', 'Centrum Astronomiczne im. Mikołaja Kopernika'),
(123759, 99586, 'en', 'name', 'Nicolaus Copernicus Astronomical Center'),
(123760, 99587, 'en', 'name', 'European Research University'),
(123761, 99587, 'cs', 'name', 'EvropskÔ výzkumnÔ univerzita, z.ú.'),
(123762, 99588, 'de', 'name', 'Institut für Kultur- und Geistesgeschichte Asiens'),
(123763, 99589, 'en', 'name', 'Southern California Coastal Ocean Observing System'),
(123764, 99590, 'es', 'name', 'Universidad Tecnologica de Tlaxcala'),
(123765, 99591, 'en', 'name', 'NRI Medical College'),
(123766, 99592, 'en', 'name', 'Czech Academy of Sciences, Institute of Psychology'),
(123767, 99592, 'cs', 'name', 'Psychologický ústav AV ČR'),
(123768, 99593, 'en', 'name', 'TecMilenio University'),
(123769, 99593, 'es', 'name', 'Universidad TecMilenio'),
(123770, 99594, 'en', 'name', 'Paris-Est CrƩteil University'),
(123771, 99594, 'fr', 'name', 'UniversitƩ Paris-Est CrƩteil'),
(123772, 99595, 'fr', 'name', 'FƩdƩration de Chimie et MatƩriaux de Paris-Centre'),
(123773, 99596, 'it', 'name', 'Istituto Pediatrico della Svizzera Italiana'),
(123774, 99597, 'es', 'name', 'Universidad Tecnológica de la Sierra Hidalguense'),
(123775, 99598, 'en', 'name', 'Czech Academy of Sciences, Oriental Institute'),
(123776, 99598, 'cs', 'name', 'OrientÔlní ústav AV ČR'),
(123777, 99599, 'en', 'name', 'Diabetes Research Center'),
(123778, 99599, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ دیابت'),
(123779, 99600, 'en', 'name', 'Center for Environmental Economics - Montpellier'),
(123780, 99600, 'fr', 'name', 'Centre d''Economie de l''Environnement - Montpellier'),
(123781, 99601, 'nl', 'name', 'CBG|Centrum voor familiegeschiedenis'),
(123782, 99602, 'en', 'name', 'Wuhan University of Engineering Science'),
(123783, 99602, 'zh', 'name', 'ę­¦ę±‰å·„ēØ‹ē§‘ęŠ€å­¦é™¢'),
(123784, 99603, 'fr', 'name', 'UMR QualiSud'),
(123785, 99604, 'en', 'name', 'Institute of Ethnology and Social Anthropology of the Slovak Academy of Sciences'),
(123786, 99604, 'sk', 'name', 'Ústav etnológie a sociÔlnej antropológie SlovenskÔ akadémia vied'),
(123787, 99605, 'es', 'name', 'Tribunal Electoral del Estado de MƩxico'),
(123788, 99606, 'no_lang_code', 'name', 'T4D GmbH (Switzerland)'),
(123789, 99607, 'en', 'name', 'National Meanchey University'),
(123790, 99607, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž‡įž¶įžįž·įž˜įž¶įž“įž‡įŸįž™'),
(123791, 99608, 'it', 'name', 'Comune di Venezia'),
(123792, 99609, 'fr', 'name', 'CollĆØge d’enseignement gĆ©nĆ©ral et professionnel'),
(123793, 99609, 'en', 'name', 'Dawson College'),
(123794, 99610, 'fr', 'name', 'Centre de Recherche en Nutrition Humaine d''Auvergne'),
(123795, 99611, 'en', 'name', 'Centre for Research and Technology Hellas'),
(123796, 99611, 'el', 'name', 'Ethniko Kentro Erevnas Kai Technologikis Anaptyxis'),
(123797, 99612, 'pt', 'name', 'Escola de Economia de SĆ£o Paulo'),
(123798, 99612, 'en', 'name', 'SĆ£o Paulo School of Economics'),
(123799, 99613, 'fr', 'name', 'HƓpital Jeanne d''Arc'),
(123800, 99614, 'en', 'name', 'MwAPATA Institute'),
(123801, 99615, 'en', 'name', 'Marine Biodiversity Hub'),
(123802, 99616, 'en', 'name', 'Nan Tien Institute'),
(123803, 99617, 'es', 'name', 'Universidad de Costa Rica'),
(123804, 99617, 'en', 'name', 'University of Costa Rica'),
(123805, 99618, 'en', 'name', 'Climate Change and Health Research Center'),
(123806, 99618, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ تغیر Ų§Ł‚Ł„ŪŒŁ… و سلامت'),
(123807, 99619, 'en', 'name', 'Pharmaceutical Incubators'),
(123808, 99619, 'fa', 'name', 'مرکز Ų±Ų“ŲÆ ŁŲ±Ų¢ŁˆŲ±ŲÆŁ‡ Ł‡Ų§ŪŒ دارویی'),
(123809, 99620, 'en', 'name', 'Nune Eye Hospital'),
(123810, 99621, 'en', 'name', 'Ocean Discovery League'),
(123811, 99622, 'fr', 'name', 'Ɖcole Nationale des Travaux Publics de l''Ɖtat'),
(123812, 99623, 'en', 'name', 'South China Business College Guangdong University of Foreign Studies'),
(123813, 99623, 'zh', 'name', 'å¹æäøœå¤–čÆ­å¤–č“øå¤§å­¦å—å›½å•†å­¦é™¢'),
(123814, 99624, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Parma'),
(123815, 99624, 'en', 'name', 'National Institute for Nuclear Physics, Parma Unit'),
(123816, 99625, 'de', 'name', 'Leibniz-Institut für Verbundwerkstoffe GmbH'),
(123817, 99626, 'es', 'name', 'Universidad del Azuay'),
(123818, 99626, 'en', 'name', 'University of Azuay'),
(123819, 99627, 'en', 'name', 'Fujian Normal University'),
(123820, 99627, 'zh', 'name', 'ē¦å»ŗåøˆčŒƒå¤§å­¦'),
(123821, 99628, 'no_lang_code', 'name', 'Wyeth'),
(123822, 99629, 'en', 'name', 'Alaska Volcano Observatory'),
(123823, 99629, 'fr', 'name', 'Observatoire volcanologique d''alaska'),
(123824, 99629, 'es', 'name', 'Observatorio Vulcanológico de Alaska'),
(123825, 99630, 'en', 'name', 'Polytechnic University of the Gulf of Mexico'),
(123826, 99630, 'es', 'name', 'Universidad PolitƩcnica del Golfo de MƩxico'),
(123827, 99631, 'en', 'name', 'Institute of Materials Research of the Slovak Academy of Sciences'),
(123828, 99631, 'sk', 'name', 'Ústav materiÔlového výskumu SlovenskÔ akadémia vied'),
(123829, 99632, 'en', 'name', 'Institute of Neuroimmunology of the Slovak Academy of Sciences'),
(123830, 99632, 'sk', 'name', 'Neuroimunologického ústavu SlovenskÔ akadémia vied'),
(123831, 99633, 'en', 'name', 'Federal Government of Brazil'),
(123832, 99634, 'en', 'name', 'Australia and New Zealand Sarcoma Association'),
(123833, 99635, 'en', 'name', 'Soran University'),
(123834, 99635, 'ar', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ سۆران'),
(123835, 99636, 'en', 'name', 'University of Alkafeel'),
(123836, 99636, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁŁŠŁ„'),
(123837, 99637, 'es', 'name', 'Centro de Investigaciones en Optica'),
(123838, 99638, 'en', 'name', 'Sri Lanka Institute of Information Technology'),
(123839, 99638, 'si', 'name', 'ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶­ą·œą¶»ą¶­ą·”ą¶»ą·” ą¶­ą·ā€Œą¶šą·Šą·‚ą¶« ආයතනය'),
(123840, 99639, 'en', 'name', 'Bryant University'),
(123841, 99639, 'es', 'name', 'Universidad Bryant'),
(123842, 99640, 'en', 'name', 'International AIDS Vaccine Initiative'),
(123843, 99641, 'en', 'name', 'University of Tripoli'),
(123844, 99641, 'it', 'name', 'UniversitĆ  di Tripoli'),
(123845, 99641, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طرابلس'),
(123846, 99642, 'en', 'name', 'Ion Creangă Pedagogical State University'),
(123847, 99642, 'ro', 'name', 'Universitatea Pedagogică de Stat Ion Creangă din Chișinău'),
(123848, 99642, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Иона ŠšŃ€ŃŠ½Š³Ń'),
(123849, 99643, 'hr', 'name', 'Klinika za infektivne bolesti Dr. Fran Mihaljević'),
(123850, 99643, 'en', 'name', 'University Hospital for Infectious Diseases "Dr Fran Mihaljevic"'),
(123851, 99644, 'en', 'name', 'University of Memphis'),
(123852, 99644, 'fr', 'name', 'UniversitƩ de memphis'),
(123853, 99645, 'en', 'name', 'JSS Science and Technology University'),
(123854, 99645, 'kn', 'name', 'ą²œą³†ą²Žą²øą³ą²Žą²øą³ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²®ą²¤ą³ą²¤ą³ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(123855, 99646, 'en', 'name', 'IFTM University'),
(123856, 99647, 'en', 'name', 'Udayana University'),
(123857, 99647, 'id', 'name', 'Universitas Udayana'),
(123858, 99648, 'fr', 'name', 'Bureau de Recherches Géologiques et Minières'),
(123859, 99648, 'en', 'name', 'Geological and Mining Research Bureau'),
(123860, 99649, 'en', 'name', 'University of Sialkot'),
(123861, 99649, 'ur', 'name', 'جامعہ Ų³ŪŒŲ§Ł„Ś©ŁˆŁ¹'),
(123862, 99650, 'en', 'name', 'Dubai Medical College'),
(123863, 99650, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© دبي Ų§Ł„Ų·ŲØŁŠŲ©'),
(123864, 99651, 'es', 'name', 'Universidad de Atacama'),
(123865, 99651, 'en', 'name', 'University of Atacama'),
(123866, 99652, 'cs', 'name', 'Centrum Dopravního Výzkumu'),
(123867, 99652, 'en', 'name', 'Transport Research Centre'),
(123868, 99653, 'en', 'name', 'Pratt Institute'),
(123869, 99654, 'en', 'name', 'Centre for Human Drug Research'),
(123870, 99655, 'it', 'name', 'Azienda Ospedaliero-Universitaria Careggi'),
(123871, 99656, 'en', 'name', 'Belarusian State Economic University'),
(123872, 99656, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃŠŗŠ°Š½Š°Š¼Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(123873, 99656, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(123874, 99657, 'en', 'name', 'Croatian Geological Survey'),
(123875, 99658, 'es', 'name', 'Universidad Agraria del Ecuador'),
(123876, 99659, 'en', 'name', 'Norwegian School of Sport Sciences'),
(123877, 99660, 'it', 'name', 'Istituto Zooprofilattico Sperimentale Della Sicilia'),
(123878, 99661, 'en', 'name', 'Chattogram Veterinary and Animal Sciences University'),
(123879, 99661, 'bn', 'name', 'ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦­ą§‡ą¦Ÿą§‡ą¦°ą¦æą¦Øą¦¾ą¦°ą¦æ ও ą¦ą¦Øą¦æą¦®ą§ą¦Æą¦¾ą¦² ą¦øą¦¾ą¦‡ą¦Øą§ą¦øą§‡ą¦ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(123880, 99662, 'id', 'name', 'Universitas Bhayangkara Surabaya'),
(123881, 99663, 'en', 'name', 'University of the Punjab'),
(123882, 99663, 'ur', 'name', 'جامعہ پنجاب'),
(123883, 99663, 'pa', 'name', 'ਪੰਜਾਬ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(123884, 99664, 'en', 'name', 'Center for Physical Sciences and Technology'),
(123885, 99664, 'lt', 'name', 'Fizinių ir technologijos mokslų centras'),
(123886, 99665, 'es', 'name', 'Escuela de DiseƱo de Rhode Island'),
(123887, 99665, 'en', 'name', 'Rhode Island School of Design'),
(123888, 99666, 'no_lang_code', 'name', 'Altos Labs'),
(123889, 99667, 'en', 'name', 'Angel Kanchev University of Ruse'),
(123890, 99667, 'bg', 'name', 'Русенски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(123891, 99668, 'en', 'name', 'University American College Skopje'),
(123892, 99669, 'en', 'name', 'III V Lab'),
(123893, 99670, 'nl', 'name', 'De Nederlandsche Bank'),
(123894, 99671, 'en', 'name', 'King Fahd University of Petroleum and Minerals'),
(123895, 99671, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ فهد Ł„Ł„ŲØŲŖŲ±ŁˆŁ„ ŁˆŲ§Ł„Ł…Ų¹Ų§ŲÆŁ†'),
(123896, 99672, 'en', 'name', 'Center for Hierarchical Manufacturing'),
(123897, 99673, 'no_lang_code', 'name', 'Musashino University'),
(123898, 99673, 'ja', 'name', 'ę­¦č”µé‡Žå¤§å­¦'),
(123899, 99674, 'en', 'name', 'Hansung University'),
(123900, 99674, 'ko', 'name', 'ķ•œģ„±ėŒ€ķ•™źµ'),
(123901, 99675, 'ga', 'name', 'OspidƩal Ollscoile Thamhlachta'),
(123902, 99675, 'en', 'name', 'Tallaght University Hospital'),
(123903, 99676, 'en', 'name', 'Enverga University'),
(123904, 99677, 'de', 'name', 'Paris-Lodron-UniversitƤt Salzburg'),
(123905, 99677, 'en', 'name', 'University of Salzburg'),
(123906, 99678, 'en', 'name', 'Hakim Children Hospital'),
(123907, 99678, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ś©ŁˆŲÆŚ©Ų§Ł† Ų­Ś©ŪŒŁ…'),
(123908, 99679, 'en', 'name', 'Patuakhali Science and Technology University'),
(123909, 99679, 'bn', 'name', 'ą¦Ŗą¦Ÿą§ą¦Æą¦¼ą¦¾ą¦–ą¦¾ą¦²ą§€ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(123910, 99680, 'no_lang_code', 'name', 'Aso Iizuka Hospital'),
(123911, 99680, 'ja', 'name', 'é£Æå”šē—…é™¢'),
(123912, 99681, 'en', 'name', 'Institute of Management Sciences Peshawar'),
(123913, 99682, 'en', 'name', 'Galgotias College of Engineering & Technology'),
(123914, 99683, 'en', 'name', 'Extreme Light Infrastructure Beamlines'),
(123915, 99684, 'en', 'name', 'University of Illinois Chicago, Rockford campus'),
(123916, 99685, 'en', 'name', 'Chatham University'),
(123917, 99686, 'no', 'name', 'Lovisenberg Diakonale Sykehus'),
(123918, 99687, 'id', 'name', 'Universitas Islam Makassar'),
(123919, 99688, 'sv', 'name', 'VƤsterbotten County'),
(123920, 99689, 'en', 'name', 'HonorHealth'),
(123921, 99690, 'en', 'name', 'National Bioinformatics Infrastructure Sweden'),
(123922, 99691, 'en', 'name', 'Adamas University'),
(123923, 99691, 'bn', 'name', 'ą¦…ą§ą¦Æą¦¾ą¦”ą¦¾ą¦®ą¦¾ą¦ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(123924, 99692, 'en', 'name', 'Psychiatry and Psychology Research Center'),
(123925, 99692, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų±ŁˆŲ§Ł†Ł¾Ų²Ų“Ś©ŪŒ و Ų±ŁˆŲ§Ł†Ų“Ł†Ų§Ų³ŪŒ دانؓگاه'),
(123926, 99693, 'es', 'name', 'Universidad de NariƱo'),
(123927, 99693, 'en', 'name', 'University of NariƱo'),
(123928, 99694, 'en', 'name', 'Herzen University'),
(123929, 99694, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. А. И. Герцена'),
(123930, 99695, 'pt', 'name', 'Centro de Computação GrÔfica'),
(123931, 99696, 'en', 'name', 'University Ferhat Abbas of Setif'),
(123932, 99696, 'fr', 'name', 'UniversitƩ Ferhat Abbas de SƩtif'),
(123933, 99696, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© فرحات Ų¹ŲØŲ§Ų³'),
(123934, 99697, 'en', 'name', 'Shahid Chamran University of Ahvaz'),
(123935, 99697, 'fa', 'name', 'دانؓگاه Ų“Ł‡ŪŒŲÆ چمران Ų§Ł‡ŁˆŲ§Ų²'),
(123936, 99698, 'en', 'name', 'Ardhi University'),
(123937, 99698, 'sw', 'name', 'Chuo Kikuu Ardhi'),
(123938, 99699, 'no_lang_code', 'name', 'Cihan University-Erbil'),
(123939, 99699, 'ku', 'name', 'Zankoy Cihan'),
(123940, 99699, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ‡Ų§Ł†'),
(123941, 99700, 'en', 'name', 'Liceo de Cagayan University'),
(123942, 99701, 'en', 'name', 'Institute of Human Virology'),
(123943, 99702, 'en', 'name', 'University of Saida Dr.Moulay Tahar'),
(123944, 99702, 'fr', 'name', 'UniversitƩ de Saida Dr.Moulay Tahar'),
(123945, 99702, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سعيدة'),
(123946, 99703, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Roraima'),
(123947, 99704, 'en', 'name', 'Elizade University'),
(123948, 99705, 'en', 'name', 'Gokhale Institute of Politics and Economics'),
(123949, 99705, 'hi', 'name', 'ą¤—ą„‹ą¤–ą¤²ą„‡ ą¤°ą¤¾ą¤œą¤Øą„€ą¤¤ą¤æ ą¤ą¤µą¤‚ ą¤…ą¤°ą„ą¤„ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(123950, 99706, 'en', 'name', 'Istanbul Esenyurt University'),
(123951, 99706, 'tr', 'name', 'İstanbul Esenyurt Üniversitesi'),
(123952, 99707, 'en', 'name', 'KLE Technological University'),
(123953, 99707, 'kn', 'name', 'ಕೆ ą²Žą²²ą³ ಇ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²¶ą²æą²•ą³ą²·ą²£ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(123954, 99708, 'en', 'name', 'University of Environment and Sustainable Development'),
(123955, 99709, 'ro', 'name', 'Academia de Studii Economice'),
(123956, 99709, 'en', 'name', 'Bucharest University of Economic Studies'),
(123957, 99710, 'en', 'name', 'Federal State Budgetary Scientific Institution "Federal Research Center for Agrarian Economy and Social Development of Rural Areas - All-Russian Research Institute for Agricultural Economics"'),
(123958, 99710, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр аграрной ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ ŃŠµŠ»ŃŒŃŠŗŠøŃ… территорий - Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(123959, 99711, 'pt', 'name', 'Instituto Brasileiro de Informação em Ciência e Tecnologia'),
(123960, 99712, 'en', 'name', 'National University of La Rioja'),
(123961, 99712, 'es', 'name', 'Universidad Nacional de La Rioja'),
(123962, 99712, 'fr', 'name', 'UniversitƩ nationale de la rioja'),
(123963, 99713, 'en', 'name', 'National Law School of India University'),
(123964, 99713, 'fr', 'name', 'Ɖcole nationale de droit de l''universitĆ© de l''inde'),
(123965, 99713, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(123966, 99713, 'kn', 'name', 'ą²Øą³ą²Æą²¾ą²·ą²Øą²²ą³ā€Œ ಲಾ ą²øą³ą²•ą³‚ą²²ą³ā€Œ ą²†ą²«ą³ā€Œ ಇಂಔಿಯಾ'),
(123967, 99714, 'en', 'name', 'N.I. Vavilov Research Institute of Plant Industry'),
(123968, 99714, 'ru', 'name', 'Вавилов Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ растениевоГства'),
(123969, 99715, 'en', 'name', 'Covenant University'),
(123970, 99715, 'yo', 'name', 'YunifƔsƭtƬ Covenant'),
(123971, 99716, 'ms', 'name', 'Universiti Kuala Lumpur'),
(123972, 99716, 'en', 'name', 'University of Kuala Lumpur'),
(123973, 99716, 'zh', 'name', '吉隆坔大学'),
(123974, 99717, 'es', 'name', 'Universidad Gerardo Barrios'),
(123975, 99718, 'en', 'name', 'Palestine Ahliya University'),
(123976, 99718, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁŁ„Ų³Ų·ŁŠŁ† Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(123977, 99719, 'en', 'name', 'Albert Einstein Israelite Hospital'),
(123978, 99719, 'pt', 'name', 'Hospital Israelita Albert Einstein'),
(123979, 99720, 'en', 'name', 'Uttaranchal University'),
(123980, 99721, 'nl', 'name', 'Isala'),
(123981, 99722, 'pt', 'name', 'Universidade Federal de Rondonópolis'),
(123982, 99723, 'id', 'name', 'Badan Pusat Statistik'),
(123983, 99724, 'en', 'name', 'Plymouth Marjon University'),
(123984, 99725, 'no_lang_code', 'name', 'Access 2 Perspectives'),
(123985, 99726, 'en', 'name', 'University of Mary Hardin–Baylor'),
(123986, 99727, 'de', 'name', 'Medizinische Einrichtungen des Bezirks Oberpfalz'),
(123987, 99728, 'de', 'name', 'Fachhochschule Potsdam'),
(123988, 99728, 'en', 'name', 'University of Applied Sciences Potsdam'),
(123989, 99729, 'fr', 'name', 'Centre Hospitalier MƩtropole Savoie'),
(123990, 99730, 'en', 'name', 'Technological University of Choco'),
(123991, 99730, 'es', 'name', 'Universidad Tecnológica del Chocó Diego Luis Córdoba'),
(123992, 99731, 'sw', 'name', 'Chuo Kikuu cha Embu'),
(123993, 99731, 'en', 'name', 'University of Embu'),
(123994, 99732, 'en', 'name', 'Kibbutzim College of Education, Technology and the Arts'),
(123995, 99732, 'he', 'name', '×”×ž×™× ×Ø הקיבוצים'),
(123996, 99733, 'en', 'name', 'Albukhary International University'),
(123997, 99733, 'ms', 'name', 'Universiti Antarabangsa Albukhary'),
(123998, 99734, 'id', 'name', 'Universitas Pembangunan Nasional Veteran Jakarta'),
(123999, 99735, 'en', 'name', 'Gorgas Memorial Institute for Health Studies'),
(124000, 99735, 'es', 'name', 'Instituto Conmemorativo Gorgas de Estudios de la Salud'),
(124001, 99736, 'id', 'name', 'Universitas Timor'),
(124002, 99736, 'en', 'name', 'University of Timor'),
(124003, 99737, 'en', 'name', 'Federal University of Petroleum Resource Effurun'),
(124004, 99738, 'es', 'name', 'Universidad Alas Peruanas'),
(124005, 99739, 'en', 'name', 'Meshalkin National Medical Research Center'),
(124006, 99739, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр имени акаГемика Š•.Š. Мешалкина»'),
(124007, 99740, 'en', 'name', 'Jawaharlal Nehru Technological University Anantapur'),
(124008, 99740, 'te', 'name', 'ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ సాంకేతిక ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(124009, 99741, 'en', 'name', 'University of Business and Technology'),
(124010, 99741, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأعمال ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§.'),
(124011, 99742, 'en', 'name', 'Indian Institute of Information Technology Dharwad'),
(124012, 99743, 'es', 'name', 'Universidad Fraternidad de Agrupaciones Santo TomƔs de Aquino'),
(124013, 99744, 'en', 'name', 'National Information Processing Institute'),
(124014, 99744, 'pl', 'name', 'Ośrodek Przetwarzania Informacji'),
(124015, 99745, 'it', 'name', 'Consorzio Nazionale Interuniversitario per le Telecomunicazioni'),
(124016, 99745, 'en', 'name', 'National Inter-University Consortium for Telecommunications'),
(124017, 99746, 'sv', 'name', 'Miljƶdepartementet'),
(124018, 99746, 'en', 'name', 'Ministry of the Environment'),
(124019, 99747, 'en', 'name', 'Dnipro State Agrarian and Economic University'),
(124020, 99747, 'uk', 'name', 'Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний аграрно-економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(124021, 99748, 'pt', 'name', 'Instituto Superior Politécnico de Tecnologia e Ciências'),
(124022, 99749, 'en', 'name', 'Academy of Music in Łódź'),
(124023, 99749, 'pl', 'name', 'Akademia Muzyczna im. Grażyny i Kiejstuta Bacewiczów w Łodzi'),
(124024, 99750, 'en', 'name', 'National University of Quilmes'),
(124025, 99750, 'es', 'name', 'Universidad Nacional de Quilmes'),
(124026, 99751, 'en', 'name', 'Korea Aerospace University'),
(124027, 99751, 'ko', 'name', 'ķ•œźµ­ķ•­ź³µėŒ€ķ•™źµ'),
(124028, 99752, 'en', 'name', 'IEEE Computer Society'),
(124029, 99753, 'id', 'name', 'Universitas Teknologi Digital'),
(124030, 99754, 'no_lang_code', 'name', 'Alnylam Pharmaceuticals (United States)'),
(124031, 99755, 'en', 'name', 'National Engineering Research Center for Information Technology in Agriculture'),
(124032, 99755, 'zh', 'name', 'å›½å®¶å†œäøšäæ”ęÆåŒ–å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(124033, 99756, 'en', 'name', 'Polymat'),
(124034, 99757, 'en', 'name', 'Kaliningrad State Technical University'),
(124035, 99757, 'ru', 'name', 'ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(124036, 99758, 'en', 'name', 'National Opinion Research Center'),
(124037, 99759, 'en', 'name', 'Ferris State University'),
(124038, 99759, 'fr', 'name', 'UniversitĆ© d''Ɖtat ferris'),
(124039, 99760, 'en', 'name', 'Amazon National University of Madre de Dios'),
(124040, 99760, 'es', 'name', 'Universidad Nacional Amazónica de Madre de Dios'),
(124041, 99761, 'en', 'name', 'The University of Kitakyushu'),
(124042, 99761, 'ja', 'name', 'åŒ—ä¹å·žåø‚ē«‹å¤§å­¦'),
(124043, 99762, 'en', 'name', 'Collin College'),
(124044, 99763, 'en', 'name', 'Mahatma Gandhi Central University'),
(124045, 99764, 'en', 'name', 'Czech Immunological Society'),
(124046, 99764, 'aa', 'name', 'ČeskĆ” ImunologickĆ” Společnost'),
(124047, 99765, 'id', 'name', 'Universitas PGRI Palembang'),
(124048, 99766, 'en', 'name', 'University of Maragheh'),
(124049, 99766, 'fa', 'name', 'دانؓگاه مراغه'),
(124050, 99767, 'id', 'name', 'Universitas Warmadewa'),
(124051, 99767, 'en', 'name', 'Warmadewa University'),
(124052, 99768, 'en', 'name', 'San Juan Bautista School of Medicine'),
(124053, 99769, 'en', 'name', 'Greater Poland Cancer Center'),
(124054, 99770, 'es', 'name', 'Universidad de los Llanos'),
(124055, 99770, 'en', 'name', 'University of the Llanos'),
(124056, 99771, 'en', 'name', 'Mohamed-Cherif Messaadia University'),
(124057, 99771, 'ar', 'name', 'جــــامـعــة محــمــد Ų§Ł„Ų“Ł€Ł€Ų±ŁŠŁ Ł…Ų³Ł€Ų§Ų¹Ł€Ł€Ł€Ł€ŲÆŁŠŲ©'),
(124058, 99772, 'es', 'name', 'Fundación Universitaria Agraria de Colombia - UNIAGRARIA'),
(124059, 99773, 'en', 'name', 'Panthera Corporation'),
(124060, 99774, 'en', 'name', 'Polytechnic of Rijeka'),
(124061, 99774, 'hr', 'name', 'VeleučiliŔte u Rijeci'),
(124062, 99775, 'en', 'name', 'Institute of Transport Economics'),
(124063, 99776, 'en', 'name', 'L. N. Gumilyov Eurasian National University'),
(124064, 99776, 'ru', 'name', 'Евразийский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š›. Š. Š“ŃƒŠ¼ŠøŠ»Ń‘Š²Š°'),
(124065, 99776, 'kk', 'name', 'Š•ŃƒŃ€Š°Š·ŠøŃ ұлттық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(124066, 99777, 'en', 'name', 'Ovidius University'),
(124067, 99778, 'en', 'name', 'Babcock University'),
(124068, 99779, 'en', 'name', 'Transport Research Laboratory'),
(124069, 99779, 'no_lang_code', 'name', 'Transport Research Laboratory (United Kingdom)'),
(124070, 99780, 'en', 'name', 'University of Babylon'),
(124071, 99780, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŲ§ŲØŁ„'),
(124072, 99781, 'en', 'name', 'National Marine Fisheries Research Institute'),
(124073, 99782, 'en', 'name', 'University of Sahiwal'),
(124074, 99783, 'en', 'name', 'Malmƶ University'),
(124075, 99783, 'sv', 'name', 'Malmƶ universitet'),
(124076, 99784, 'id', 'name', 'Universitas Muhammadiyah Tangerang'),
(124077, 99785, 'en', 'name', 'Guilford College'),
(124078, 99786, 'en', 'name', 'Kobe University of Future Health Sciences'),
(124079, 99786, 'ja', 'name', 'ē„žęˆøåŒ»ē™‚ęœŖę„å¤§å­¦'),
(124080, 99787, 'en', 'name', 'Office of Budget, Finance and Award Management'),
(124081, 99788, 'no_lang_code', 'name', 'Avinashilingam University'),
(124082, 99788, 'ta', 'name', 'ą®…ą®µą®æą®Øą®¾ą®šą®æą®²ą®æą®™ąÆą®•ą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(124083, 99789, 'en', 'name', 'San SebastiƔn University'),
(124084, 99789, 'es', 'name', 'Universidad San SebastiƔn'),
(124085, 99790, 'en', 'name', 'Liaquat University of Medical & Health Sciences'),
(124086, 99791, 'es', 'name', 'Centro Científico Tecnológico - Mendoza'),
(124087, 99792, 'en', 'name', 'Zagazig University'),
(124088, 99792, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ł‚Ų§Ų²ŁŠŁ‚'),
(124089, 99793, 'en', 'name', 'Latvia University of Life Sciences and Technologies'),
(124090, 99793, 'lv', 'name', 'Latvijas Biozinātņu un tehnoloģiju universitāte'),
(124091, 99793, 'lt', 'name', 'Latvijos Žemės Ükio Universitetas'),
(124092, 99793, 'ru', 'name', 'Латвийский ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(124093, 99794, 'en', 'name', 'Hungarian National Bank'),
(124094, 99794, 'hu', 'name', 'Magyar Nemzeti Bank'),
(124095, 99795, 'es', 'name', 'Institución Universitaria Escolme'),
(124096, 99796, 'pl', 'name', 'Akademia Wychowania Fizycznego Józefa Piłsudskiego w Warszawie'),
(124097, 99796, 'en', 'name', 'Józef Piłsudski University of Physical Education in Warsaw'),
(124098, 99797, 'it', 'name', 'L''UniversitĆ  Internazionale a Roma'),
(124099, 99797, 'en', 'name', 'Link Campus University'),
(124100, 99798, 'es', 'name', 'National University of Tres de Febrero'),
(124101, 99799, 'en', 'name', 'University of Fine Arts in Poznań'),
(124102, 99799, 'pl', 'name', 'Uniwersytet Artystyczny w Poznaniu'),
(124103, 99800, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Hydraulique'),
(124104, 99800, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų±ŁŠ'),
(124105, 99801, 'en', 'name', 'London Borough of Redbridge'),
(124106, 99802, 'en', 'name', 'Atma Jaya Catholic University of Indonesia'),
(124107, 99802, 'id', 'name', 'Universitas Katolik Atma Jaya'),
(124108, 99803, 'en', 'name', 'Jaime Bausate y Meza University'),
(124109, 99803, 'es', 'name', 'Universidad Jaime Bausate y Meza'),
(124110, 99804, 'en', 'name', 'University of Calabria'),
(124111, 99804, 'it', 'name', 'UniversitĆ  della Calabria'),
(124112, 99804, 'de', 'name', 'UniversitƤt Kalabrien'),
(124113, 99804, 'fr', 'name', 'UniversitƩ de la calabre'),
(124114, 99805, 'en', 'name', 'Niroo Research Institute'),
(124115, 99806, 'es', 'name', 'Centro Tecnolóxico de Telecomunicacións de Galicia'),
(124116, 99806, 'en', 'name', 'Galician Research and Development Center in Advanced Telecommunications'),
(124117, 99807, 'en', 'name', 'Admiral Makarov State University of Maritime and Inland Shipping'),
(124118, 99807, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ морского Šø речного флота имени аГмирала Š”.Šž. ŠœŠ°ŠŗŠ°Ń€Š¾Š²Š°'),
(124119, 99808, 'pl', 'name', 'Akademia Sztuk Pięknych im. Jana Matejki w Krakowie'),
(124120, 99808, 'en', 'name', 'Jan Matejko Academy Of Fine Arts'),
(124121, 99809, 'de', 'name', 'Management Center Innsbruck'),
(124122, 99810, 'es', 'name', 'Universidad de El Salvador'),
(124123, 99810, 'en', 'name', 'University of El Salvador'),
(124124, 99811, 'en', 'name', 'Alasmarya Islamic University'),
(124125, 99811, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ų³Ł…Ų±ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(124126, 99812, 'en', 'name', 'Friedrich Miescher Institute'),
(124127, 99813, 'en', 'name', 'Al-Hikmah University'),
(124128, 99814, 'no_lang_code', 'name', 'Kharazmi University'),
(124129, 99814, 'fa', 'name', 'دانؓگاه Ų®ŁˆŲ§Ų±Ų²Ł…ŪŒ'),
(124130, 99815, 'en', 'name', 'V.E. Zuev Institute of Atmospheric Optics'),
(124131, 99815, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптики атмосферы им. Š’.Š•. Š—ŃƒŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(124132, 99816, 'en', 'name', 'Karnatak University'),
(124133, 99816, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(124134, 99817, 'es', 'name', 'Instituto de TecnologĆ­a Rose-Hulman'),
(124135, 99817, 'en', 'name', 'Rose–Hulman Institute of Technology'),
(124136, 99818, 'en', 'name', 'Biomechanics Institute of Valencia'),
(124137, 99818, 'es', 'name', 'Instituto de BiomecƔnica de Valencia'),
(124138, 99819, 'no_lang_code', 'name', 'MSD (Finland)'),
(124139, 99820, 'en', 'name', 'Alabama Agricultural and Mechanical University'),
(124140, 99821, 'en', 'name', 'Feevale University'),
(124141, 99821, 'pt', 'name', 'Universidade Feevale'),
(124142, 99822, 'fr', 'name', 'UniversitƩ Mohammed VI Polytechnique'),
(124143, 99823, 'en', 'name', 'Vidyasirimedhi Institute of Science and Technology'),
(124144, 99824, 'en', 'name', 'Colombian Corporation for Agricultural Research - AGROSAVIA'),
(124145, 99824, 'es', 'name', 'Corporación Colombiana de Investigación Agropecuaria – AGROSAVIA'),
(124146, 99825, 'en', 'name', 'East West University'),
(124147, 99825, 'bn', 'name', 'ą¦‡ą¦øą§ą¦Ÿą¦“ą¦Æą¦¼ą§‡ą¦øą§ą¦Ÿ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(124148, 99826, 'de', 'name', 'Bundesanstalt für Gewässerkunde'),
(124149, 99826, 'en', 'name', 'Federal Institute of Hydrology'),
(124150, 99827, 'id', 'name', 'Universitas Widyagama Mahakam Samarinda'),
(124151, 99827, 'en', 'name', 'Widya Gama Mahakam University'),
(124152, 99828, 'en', 'name', 'Cancer Council Victoria'),
(124153, 99829, 'en', 'name', 'Shri Ramswaroop Memorial College of Engineering and Management'),
(124154, 99830, 'es', 'name', 'Universidad de La Guajira'),
(124155, 99830, 'en', 'name', 'University of La Guajira'),
(124156, 99831, 'en', 'name', 'Polis University'),
(124157, 99832, 'en', 'name', 'Ministry of Economy of the Republic of Armenia'),
(124158, 99832, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Экономики Республики ŠŃ€Š¼ŠµŠ½ŠøŃ'),
(124159, 99832, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ€Õ”Õ¶Ö€Õ”ÕŗÕ„ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ Ō·ÕÆÕøÕ¶ÕøÕ“Õ«ÕÆÕ”ÕµÕ« Õ†Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(124160, 99833, 'en', 'name', 'Office of Inspector General'),
(124161, 99834, 'en', 'name', 'Swedish National Road and Transport Research Institute'),
(124162, 99835, 'en', 'name', 'Rijnstate Hospital'),
(124163, 99836, 'en', 'name', 'Ibnu Sina University'),
(124164, 99836, 'id', 'name', 'Universitas Ibnu Sina'),
(124165, 99837, 'en', 'name', 'Indira Gandhi National Tribal University'),
(124166, 99837, 'hi', 'name', 'इंदिरा ą¤—ą¤¾ą¤ą¤§ą„€ ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤Ÿą„ą¤°ą¤¾ą¤‡ą¤¬ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(124167, 99838, 'it', 'name', 'UniversitĆ  degli Studi Internazionali di Roma'),
(124168, 99838, 'en', 'name', 'University of International Studies of Rome'),
(124169, 99839, 'es', 'name', 'Instituto Nacional de TecnologĆ­a Industrial'),
(124170, 99839, 'en', 'name', 'National Institute of Industrial Technology'),
(124171, 99840, 'de', 'name', 'Gesundheit Ɩsterreich'),
(124172, 99841, 'en', 'name', 'Ghazi University'),
(124173, 99841, 'ur', 'name', 'غازی ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(124174, 99842, 'en', 'name', 'Eberswalde University for Sustainable Development'),
(124175, 99842, 'de', 'name', 'Hochschule für Nachhaltige Entwicklung Eberswalde'),
(124176, 99843, 'en', 'name', 'Whitman College'),
(124177, 99844, 'es', 'name', 'Fundación Universitaria Cafam'),
(124178, 99845, 'en', 'name', 'European University of Lefke'),
(124179, 99845, 'tr', 'name', 'Lefke Avrupa Üniversitesi'),
(124180, 99846, 'id', 'name', 'Universitas Pembangunan Nasional Veteran Jawa Timur'),
(124181, 99846, 'en', 'name', 'University of Pembangunan Nasional Veteran Jawa Timur'),
(124182, 99847, 'es', 'name', 'Fundación Universitaria Católica Lumen Gentium'),
(124183, 99848, 'en', 'name', 'European University at Saint Petersburg'),
(124184, 99848, 'ru', 'name', 'Европейский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³Šµ'),
(124185, 99849, 'en', 'name', 'University of Kelaniya'),
(124186, 99849, 'ta', 'name', 'களனி ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(124187, 99849, 'si', 'name', 'ą¶šą·ą·…ą¶«ą·’ą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(124188, 99850, 'ro', 'name', 'Comisia Națională pentru Controlul Activităților Nucleare'),
(124189, 99850, 'en', 'name', 'National Commission for Nuclear Activities Control'),
(124190, 99851, 'no_lang_code', 'name', 'Alfaisal University'),
(124191, 99851, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŁŠŲµŁ„'),
(124192, 99852, 'en', 'name', 'Dong A University'),
(124193, 99852, 'vi', 'name', 'ĐẔi hį»c ĐƓng Ɓ'),
(124194, 99853, 'en', 'name', 'Flame University'),
(124195, 99854, 'en', 'name', 'Children''s Cancer Institute Australia'),
(124196, 99855, 'es', 'name', 'Universidad de San Francisco'),
(124197, 99855, 'en', 'name', 'University of San Francisco'),
(124198, 99855, 'fr', 'name', 'UniversitƩ de san francisco'),
(124199, 99856, 'fi', 'name', 'Agderin yliopisto'),
(124200, 99856, 'en', 'name', 'University of Agder'),
(124201, 99857, 'es', 'name', 'Instituto Tecnológico Autónomo de México'),
(124202, 99857, 'en', 'name', 'Mexico Autonomous Institute of Technology'),
(124203, 99858, 'de', 'name', 'Kepler UniversitƤtsklinikum'),
(124204, 99859, 'en', 'name', 'State Serum Institute'),
(124205, 99859, 'da', 'name', 'Statens Serum Institut'),
(124206, 99860, 'en', 'name', 'British Library'),
(124207, 99860, 'cy', 'name', 'Llyfrgell Brydeinig'),
(124208, 99861, 'en', 'name', 'Malawi University of Business and Applied Sciences'),
(124209, 99862, 'en', 'name', 'Omsk State Technical University'),
(124210, 99862, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(124211, 99863, 'it', 'name', 'Ospedale di Parma'),
(124212, 99864, 'en', 'name', 'Juarez University of the State of Durango'),
(124213, 99864, 'es', 'name', 'Universidad JuƔrez del Estado de Durango'),
(124214, 99865, 'en', 'name', 'Indian Institute of Technology Mandi'),
(124215, 99865, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą¤£ą„ą¤”ą„€'),
(124216, 99865, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®®ą®£ąÆą®Ÿą®æ'),
(124217, 99866, 'de', 'name', 'Evangelisches Krankenhaus Bielefeld'),
(124218, 99867, 'de', 'name', 'Hochschule Reutlingen'),
(124219, 99867, 'en', 'name', 'Reutlingen University'),
(124220, 99868, 'sr', 'name', 'Institut za onkologiju i radiologiju Srbije'),
(124221, 99869, 'en', 'name', 'Directorate for Computer & Information Science & Engineering'),
(124222, 99870, 'en', 'name', 'Ningbo No. 2 Hospital'),
(124223, 99870, 'zh', 'name', 'å®ę³¢åø‚ē¬¬äŗŒåŒ»é™¢'),
(124224, 99871, 'en', 'name', 'Department of Earth Sciences'),
(124225, 99872, 'es', 'name', 'Universidad Xavier'),
(124226, 99872, 'fr', 'name', 'UniversitƩ xavier de cincinnati'),
(124227, 99872, 'en', 'name', 'Xavier University'),
(124228, 99873, 'es', 'name', 'Corporación Tecnológica Industrial Colombiana'),
(124229, 99874, 'tr', 'name', 'İstanbul Sisli Meslek Yüksekokulu'),
(124230, 99875, 'pt', 'name', 'Associação Caruaruense de Ensino Superior e Técnico'),
(124231, 99876, 'es', 'name', 'Universidad Privada San Juan Bautista'),
(124232, 99877, 'en', 'name', 'Institute for Theoretical Physics'),
(124233, 99877, 'es', 'name', 'Instituto de Física Teórica'),
(124234, 99878, 'en', 'name', 'State University of Management'),
(124235, 99878, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(124236, 99879, 'en', 'name', 'University of Southeastern Philippines'),
(124237, 99880, 'en', 'name', 'Royal Agricultural University'),
(124238, 99880, 'cy', 'name', 'Y Brifysgol Amaethyddol Frenhinol'),
(124239, 99881, 'es', 'name', 'Universidad de IbaguƩ'),
(124240, 99881, 'en', 'name', 'University of IbaguƩ'),
(124241, 99882, 'en', 'name', 'National Institute of Health Researches of Iran'),
(124242, 99882, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ł…Ł„ŪŒ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ سلامت'),
(124243, 99883, 'pl', 'name', 'Igor Sikorsky Kijowski Instytut Politechniczny'),
(124244, 99883, 'en', 'name', 'National Technical University of Ukraine ā€œIgor Sikorsky Kyiv Polytechnic Instituteā€'),
(124245, 99883, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украины ""Киевский политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š˜Š³Š¾Ń€Ń Дикорского""'),
(124246, 99883, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ України ""ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ політехнічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імені Š†Š³Š¾Ń€Ń Š”Ń–ŠŗŠ¾Ń€ŃŃŒŠŗŠ¾Š³Š¾""'),
(124247, 99884, 'en', 'name', 'Reserve Bank of India'),
(124248, 99884, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤°ą¤æą¤œą¤¼ą¤°ą„ą¤µ ą¤¬ą„ˆą¤‚ą¤•'),
(124249, 99885, 'it', 'name', 'Istituto Zooprofilattico Sperimentale della Lombardia e dell''Emilia Romagna "Bruno Ubertini"'),
(124250, 99886, 'en', 'name', 'Lambung Mangkurat University'),
(124251, 99886, 'id', 'name', 'Universitas Lambung Mangkurat'),
(124252, 99887, 'en', 'name', 'Iran Broadcasting University'),
(124253, 99887, 'fa', 'name', 'دانؓکده ŲµŲÆŲ§ و Ų³ŪŒŁ…Ų§'),
(124254, 99888, 'en', 'name', 'Chaitanya Bharathi Institute of Technology'),
(124255, 99888, 'te', 'name', 'ą°šą±ˆą°¤ą°Øą±ą°Æ భారతి ą°‡ą°Øą±ā€Œą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€'),
(124256, 99889, 'en', 'name', 'University of Anbar'),
(124257, 99889, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأنبار'),
(124258, 99890, 'es', 'name', 'Instituto Especializado de Profesionales de la Salud'),
(124259, 99891, 'en', 'name', 'Aston University'),
(124260, 99891, 'cy', 'name', 'Prifysgol Aston'),
(124261, 99892, 'en', 'name', 'Helmholtz Metadata Collaboration'),
(124262, 99893, 'en', 'name', 'Humanitas University'),
(124263, 99894, 'en', 'name', 'Centre of Excellence in Molecular Biology'),
(124264, 99895, 'en', 'name', 'Austrian Institute of Economic Research'),
(124265, 99895, 'de', 'name', 'Ɩsterreichisches Institut für Wirtschaftsforschung'),
(124266, 99896, 'en', 'name', 'Police Academy of the Czech Republic in Prague'),
(124267, 99896, 'cs', 'name', 'Policejní akademie České republiky v Praze'),
(124268, 99897, 'es', 'name', 'Corporación Universitaria del Caribe'),
(124269, 99898, 'en', 'name', 'Mount St. Joseph University'),
(124270, 99899, 'es', 'name', 'Universidad TƩcnica Particular de Loja'),
(124271, 99900, 'en', 'name', 'Raman Research Institute'),
(124272, 99900, 'ta', 'name', 'ą®‡ą®°ą®¾ą®®ą®©ąÆ ą®†ą®ÆąÆą®µąÆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(124273, 99901, 'es', 'name', 'Universidad de Quintana Roo'),
(124274, 99901, 'en', 'name', 'University of Quintana Roo'),
(124275, 99902, 'en', 'name', 'General University Hospital in Prague'),
(124276, 99902, 'cs', 'name', 'VŔeobecnÔ Fakultní Nemocnice v Praze'),
(124277, 99903, 'en', 'name', 'Western Governors University'),
(124278, 99904, 'en', 'name', 'Central Institute of Mental Health'),
(124279, 99904, 'de', 'name', 'Zentralinstitut für Seelische Gesundheit'),
(124280, 99905, 'en', 'name', 'State University of Papua'),
(124281, 99905, 'id', 'name', 'Universitas Negeri Papua'),
(124282, 99906, 'en', 'name', 'Valdosta State University'),
(124283, 99907, 'en', 'name', 'GIFT University');
INSERT INTO `ror_settings` VALUES
(124284, 99908, 'fr', 'name', 'UniversitƩ de Mostaganem'),
(124285, 99909, 'es', 'name', 'Corporación Universitaria Latinoamericana'),
(124286, 99910, 'en', 'name', 'Tennessee Technological University'),
(124287, 99911, 'en', 'name', 'Shifa Tameer-e-Millat University'),
(124288, 99912, 'en', 'name', 'Taiwan Agricultural Research Institute Council of Agriculture, Executive Yuan'),
(124289, 99912, 'zh', 'name', 'č”Œę”æé™¢č¾²ę„­å§”å“”ęœƒč¾²ę„­č©¦é©—ę‰€'),
(124290, 99913, 'en', 'name', 'Central University of Karnataka'),
(124291, 99913, 'ta', 'name', 'ą®•ą®°ąÆą®Øą®¾ą®Ÿą®• ą®®ą®¤ąÆą®¤ą®æą®Æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(124292, 99913, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²•ą³†ą³•ą²‚ą²¦ą³ą²°ą²æą³•ą²Æ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(124293, 99914, 'en', 'name', 'Sunan Kalijaga State Islamic University Yogyakarta'),
(124294, 99914, 'id', 'name', 'Universitas Islam Negeri Sunan Kalijaga Yogyakarta'),
(124295, 99915, 'no_lang_code', 'name', 'Inagro (Belgium)'),
(124296, 99916, 'en', 'name', 'Ganesha University of Education'),
(124297, 99916, 'id', 'name', 'Universitas Pendidikan Ganesha'),
(124298, 99917, 'en', 'name', 'Mbarara University of Science and Technology'),
(124299, 99918, 'en', 'name', 'Daemen College'),
(124300, 99919, 'it', 'name', 'Aziende Socio Sanitarie Territoriale dei Sette Laghi'),
(124301, 99919, 'en', 'name', 'Regional Health Care and Social Agency Seven Lakes'),
(124302, 99920, 'id', 'name', 'Politeknik Negeri Banjarmasin'),
(124303, 99921, 'en', 'name', 'National University of Laos'),
(124304, 99921, 'fr', 'name', 'UniversitƩ nationale du laos'),
(124305, 99921, 'lo', 'name', 'ąŗ”ąŗ°ąŗ«ąŗ²ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ą»„ąŗ„ą»ąŗ«ą»ˆąŗ‡ąŗŠąŗ²ąŗ”'),
(124306, 99922, 'en', 'name', 'Brigham Young University - Idaho'),
(124307, 99923, 'it', 'name', 'Policlinico Tor Vergata'),
(124308, 99924, 'en', 'name', 'Central University of Tamil Nadu'),
(124309, 99924, 'hi', 'name', 'ą¤¤ą¤®ą¤æą¤²ą¤Øą¤¾ą¤”ą„ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(124310, 99924, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®®ą®¤ąÆą®¤ą®æą®Æą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(124311, 99925, 'en', 'name', 'Bangladesh University of Business and Technology'),
(124312, 99925, 'bn', 'name', 'বাংলাদেশ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(124313, 99926, 'en', 'name', 'Wilkes University'),
(124314, 99927, 'es', 'name', 'Universidad de Montemorelos'),
(124315, 99927, 'en', 'name', 'University of Montemorelos'),
(124316, 99928, 'en', 'name', 'FPInnovations'),
(124317, 99929, 'en', 'name', 'Catholic University of Mozambique'),
(124318, 99929, 'pt', 'name', 'Universidade Católica de Moçambique'),
(124319, 99930, 'de', 'name', 'Botanischer Garten Meise'),
(124320, 99930, 'fr', 'name', 'Jardin botanique de Meise'),
(124321, 99930, 'en', 'name', 'Meise Botanic Garden'),
(124322, 99930, 'nl', 'name', 'Plantentuin Meise'),
(124323, 99931, 'en', 'name', 'Drake University'),
(124324, 99931, 'es', 'name', 'Universidad Drake'),
(124325, 99932, 'en', 'name', 'Andhra University'),
(124326, 99932, 'hi', 'name', 'ą¤†ą¤Øą„ą¤§ą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(124327, 99932, 'ta', 'name', 'ą®†ą®ØąÆą®¤ą®æą®°ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(124328, 99932, 'te', 'name', 'ą°†ą°‚ą°§ą±ą°° ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(124329, 99933, 'pt', 'name', 'Laboratório Cedro (Brazil)'),
(124330, 99934, 'en', 'name', 'California Institute of Integral Studies'),
(124331, 99935, 'en', 'name', 'Central University of Jharkhand'),
(124332, 99935, 'hi', 'name', 'ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤¾ą¤°ą¤–ą¤£ą„ą¤”'),
(124333, 99936, 'en', 'name', 'James Hutton Institute'),
(124334, 99937, 'en', 'name', 'Leading University'),
(124335, 99937, 'bn', 'name', 'লিঔিং ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(124336, 99938, 'es', 'name', 'Universidad Bolivariana del Ecuador'),
(124337, 99939, 'en', 'name', 'University of Jos'),
(124338, 99939, 'yo', 'name', 'YunifÔsítì ìlú Jos'),
(124339, 99940, 'de', 'name', 'Hochschule Düsseldorf'),
(124340, 99940, 'en', 'name', 'Hochschule Düsseldorf University of Applied Sciences'),
(124341, 99941, 'en', 'name', 'Singapore Polytechnic'),
(124342, 99941, 'zh', 'name', 'ę–°åŠ å”ē†å·„å­¦é™¢'),
(124343, 99942, 'es', 'name', 'Escuela Superior Politecnica del Litoral'),
(124344, 99943, 'en', 'name', 'Krida Wacana Christian University'),
(124345, 99943, 'id', 'name', 'Universitas Kristen Krida Wacana'),
(124346, 99944, 'en', 'name', 'Alma College'),
(124347, 99945, 'en', 'name', 'NLA University College'),
(124348, 99946, 'en', 'name', 'O.M. Beketov National University of Urban Economy in Kharkiv'),
(124349, 99946, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¼Ń–ŃŃŒŠŗŠ¾Š³Š¾ госпоГарства імені Šž. М. Бекетова'),
(124350, 99946, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ гороГского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(124351, 99947, 'en', 'name', 'C.V. Raman Global University'),
(124352, 99948, 'fi', 'name', 'Ruotsin kokonaismaanpuolustuksen tutkimuslaitos'),
(124353, 99948, 'en', 'name', 'Swedish Defence Research Agency'),
(124354, 99948, 'sv', 'name', 'Totalfƶrsvarets forskningsinstitut'),
(124355, 99949, 'en', 'name', 'Military University Hospital Prague'),
(124356, 99950, 'en', 'name', 'Institute of Animal Science'),
(124357, 99950, 'cs', 'name', 'Výzkumný Ústav ŽivočiÅ”nĆ© Výroby'),
(124358, 99951, 'en', 'name', 'Abertay University'),
(124359, 99952, 'no_lang_code', 'name', 'Novosibirsk State University'),
(124360, 99952, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(124361, 99953, 'no_lang_code', 'name', 'MSD (India)'),
(124362, 99954, 'en', 'name', 'National Nuclear Center of the Republic of Kazakhstan'),
(124363, 99954, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠ“ŠµŃ€Š½Ń‹Š¹ центр Республики ŠšŠ°Š·Š°Ń…стан'),
(124364, 99955, 'en', 'name', 'King Hamad University Hospital'),
(124365, 99955, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ Ų­Ł…ŲÆ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(124366, 99956, 'en', 'name', 'Lagos State University of Education'),
(124367, 99957, 'en', 'name', 'Nuh Naci Yazgan University'),
(124368, 99957, 'tr', 'name', 'Nuh Naci Yazgan Üniversitesi'),
(124369, 99958, 'no_lang_code', 'name', 'Polymer Competence Center Leoben (Austria)'),
(124370, 99959, 'en', 'name', 'Liverpool Hope University'),
(124371, 99960, 'en', 'name', 'NASK National Research Institute'),
(124372, 99960, 'pl', 'name', 'NASK Państwowy Instytut Badawczy'),
(124373, 99961, 'en', 'name', 'Tanjungpura University'),
(124374, 99961, 'id', 'name', 'Universitas Tanjungpura'),
(124375, 99962, 'en', 'name', 'Eastern Virginia Medical School'),
(124376, 99963, 'en', 'name', 'Lorestan University'),
(124377, 99964, 'en', 'name', 'Center of Research and Technologic Development in Electrochemistry'),
(124378, 99964, 'es', 'name', 'Centro de Investigación y Desarrollo Tecnológico en Electroquímica'),
(124379, 99965, 'jv', 'name', 'Teuku Umar University'),
(124380, 99965, 'id', 'name', 'Universitas Teuku Umar'),
(124381, 99966, 'en', 'name', 'Jose Matias Delgado University'),
(124382, 99966, 'es', 'name', 'Universidad Dr. JosƩ Matƭas Delgado'),
(124383, 99967, 'pt', 'name', 'Escola Superior de SaĆŗde Norte da Cruz Vermelha Portuguesa'),
(124384, 99968, 'es', 'name', 'Universidad Privada Franz Tamayo'),
(124385, 99969, 'es', 'name', 'Universidad Tecnológica Oteima'),
(124386, 99970, 'en', 'name', '"Dunarea de Jos" University of Galati'),
(124387, 99970, 'ro', 'name', 'Universitatea ā€žDunărea de Josā€ din Galați'),
(124388, 99971, 'en', 'name', 'Institute of Urban and Regional Development'),
(124389, 99971, 'pl', 'name', 'Krajowy Instytut Polityki Przestrzennej i Mieszkalnictwa'),
(124390, 99972, 'es', 'name', 'Fundación Instituto Leloir'),
(124391, 99973, 'en', 'name', 'Mohammed Bin Rashid University of Medicine and Health Sciences'),
(124392, 99974, 'es', 'name', 'Universidad de HolguĆ­n'),
(124393, 99974, 'en', 'name', 'University of HolguĆ­n'),
(124394, 99975, 'de', 'name', 'Hochschule Mittweida'),
(124395, 99975, 'en', 'name', 'University of Applied Sciences Mittweida'),
(124396, 99976, 'en', 'name', 'Sam Ratulangi University'),
(124397, 99976, 'id', 'name', 'Universitas Sam Ratulangi'),
(124398, 99977, 'no_lang_code', 'name', 'Shizuoka Cancer Center'),
(124399, 99977, 'ja', 'name', 'é™å²”ēœŒē«‹é™å²”ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(124400, 99978, 'en', 'name', 'Ladoke Akintola University of Technology'),
(124401, 99979, 'pt', 'name', 'Escola Superior de Artes e Design'),
(124402, 99980, 'en', 'name', 'Benito JuƔrez Autonomous University of Oaxaca'),
(124403, 99980, 'es', 'name', 'Universidad Autónoma Benito JuÔrez de Oaxaca'),
(124404, 99981, 'no_lang_code', 'name', 'MSD (Italy)'),
(124405, 99982, 'en', 'name', 'University of Life Sciences in Lublin'),
(124406, 99982, 'pl', 'name', 'Uniwersytet Przyrodniczy w Lublinie'),
(124407, 99983, 'ca', 'name', 'Universitat Nicolau de Cusa'),
(124408, 99983, 'en', 'name', 'University Niccolò Cusano'),
(124409, 99983, 'it', 'name', 'Università degli Studi Niccolò Cusano'),
(124410, 99983, 'fr', 'name', 'UniversitƩ nicolas de cues'),
(124411, 99983, 'sl', 'name', 'Univerza Nikolaj Kuzanski'),
(124412, 99984, 'en', 'name', 'Victorian Institute of Forensic Medicine'),
(124413, 99985, 'en', 'name', 'International European University'),
(124414, 99985, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(124415, 99986, 'en', 'name', 'Sukhoi State Technical University of Gomel'),
(124416, 99986, 'ru', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П.Šž.Š”ŃƒŃ…Š¾Š³Š¾'),
(124417, 99986, 'be', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń П.Š’.Š”ŃƒŃ…Š¾Š³Š°'),
(124418, 99987, 'en', 'name', 'Salem State University'),
(124419, 99987, 'fr', 'name', 'UniversitƩ d''Ʃtat de salem'),
(124420, 99988, 'en', 'name', 'Indian Institute of Management Tiruchirappalli'),
(124421, 99988, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¤ą¤æą¤°ą„ą¤šą„ą¤šą¤æą¤°ą¤¾ą¤Ŗą¤²ą„ą¤²ą„€'),
(124422, 99988, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ,ą®¤ą®æą®°ąÆą®šąÆą®šą®æą®°ą®¾ą®ŖąÆą®Ŗą®³ąÆą®³ą®æ'),
(124423, 99989, 'es', 'name', 'Universidad Antonio NariƱo'),
(124424, 99990, 'en', 'name', 'University of Hartford'),
(124425, 99990, 'fr', 'name', 'UniversitƩ de Hartford'),
(124426, 99991, 'en', 'name', 'University of Batna 2'),
(124427, 99991, 'fr', 'name', 'UniversitƩ de Batna 2'),
(124428, 99991, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© باتنة 2 مصطفى بن ŲØŁˆŁ„Ų¹ŁŠ'),
(124429, 99992, 'en', 'name', 'ABES Engineering College'),
(124430, 99993, 'no_lang_code', 'name', 'Navrachana University'),
(124431, 99994, 'en', 'name', 'Kingston Health Sciences Centre'),
(124432, 99995, 'en', 'name', 'California Academy of Sciences'),
(124433, 99996, 'en', 'name', 'Joint Global Change Research Institute'),
(124434, 99997, 'en', 'name', 'Mouloud Mammeri University of Tizi-Ouzou'),
(124435, 99997, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŁˆŁ„ŁˆŲÆ Ł…Ų¹Ł…Ų±ŁŠ'),
(124436, 99998, 'en', 'name', 'Curtin University Sarawak'),
(124437, 99999, 'en', 'name', 'Division of Ocean Sciences'),
(124438, 100000, 'id', 'name', 'Universitas Sulawesi Barat'),
(124439, 100000, 'en', 'name', 'West Sulawesi University'),
(124440, 100001, 'es', 'name', 'Universidad del QuindĆ­o'),
(124441, 100001, 'en', 'name', 'University of QuindĆ­o'),
(124442, 100002, 'en', 'name', 'University for Development Studies'),
(124443, 100003, 'es', 'name', 'Universidad de Illinois'),
(124444, 100003, 'en', 'name', 'University of Illinois System'),
(124445, 100003, 'fr', 'name', 'UniversitƩ de l''illinois'),
(124446, 100004, 'en', 'name', 'Shinawatra University'),
(124447, 100004, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŠąø“ąø™ąø§ąø±ąø•ąø£'),
(124448, 100005, 'en', 'name', 'Philadelphia University'),
(124449, 100005, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁŁŠŁ„Ų§ŲÆŁ„ŁŁŠŲ§'),
(124450, 100006, 'id', 'name', 'Universitas Bung Hatta'),
(124451, 100007, 'en', 'name', 'National Institute of Technology Warangal'),
(124452, 100007, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, वारांगल'),
(124453, 100008, 'fr', 'name', 'Fonds de Recherche du QuƩbec - SociƩtƩ et culture'),
(124454, 100009, 'en', 'name', 'Danylo Halytsky Lviv National Medical University'),
(124455, 100009, 'pl', 'name', 'Lwowski Narodowy Uniwersytet Medyczny im. Daniela Halickiego'),
(124456, 100009, 'ru', 'name', 'Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Данила Галицкого'),
(124457, 100009, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Данила Š“Š°Š»ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(124458, 100010, 'es', 'name', 'Corporación Universitaria Empresarial Alexander von Humboldt'),
(124459, 100011, 'en', 'name', 'Norwegian Defence Research Establishment'),
(124460, 100012, 'en', 'name', 'R.V. College of Engineering'),
(124461, 100013, 'es', 'name', 'Instituto Superior Tecnológico Bolivariano de Tecnología'),
(124462, 100014, 'en', 'name', 'Dwarkadas J. Sanghvi College of Engineering'),
(124463, 100015, 'en', 'name', 'Federal University of Technology Owerri'),
(124464, 100016, 'fr', 'name', 'Ɖcole SupĆ©rieure des Technologies Industrielles AvancĆ©es'),
(124465, 100017, 'en', 'name', 'Mongolian National University of Medical Sciences'),
(124466, 100017, 'mn', 'name', 'Анагаахын ŠØŠøŠ½Š¶Š»ŃŃ… Ухааны Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(124467, 100018, 'en', 'name', 'Khorramshahr University of Marine Science and Technology'),
(124468, 100018, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† دریایی خرمؓهر'),
(124469, 100019, 'sv', 'name', 'Hƶgskolan i Jƶnkƶping'),
(124470, 100019, 'en', 'name', 'Jƶnkƶping University'),
(124471, 100020, 'id', 'name', 'Universitas Serambi Mekkah'),
(124472, 100021, 'en', 'name', 'Educational Research Institute'),
(124473, 100022, 'en', 'name', 'Ho Chi Minh City University of Education'),
(124474, 100022, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m ThĆ nh phố Hồ ChĆ­ Minh'),
(124475, 100023, 'no', 'name', 'Norsk institutt for bioĆøkonomi'),
(124476, 100023, 'en', 'name', 'Norwegian Institute of Bioeconomy Research'),
(124477, 100024, 'en', 'name', 'St Mary''s University Twickenham London'),
(124478, 100025, 'en', 'name', 'Sharda University'),
(124479, 100026, 'en', 'name', 'Omar Al-Mukhtar University'),
(124480, 100026, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عمر المختار'),
(124481, 100027, 'es', 'name', 'Instituto de HistologĆ­a y EmbriologĆ­a de Mendoza'),
(124482, 100028, 'en', 'name', 'Pittsburg State University'),
(124483, 100029, 'nl', 'name', 'Albert Schweitzer Ziekenhuis'),
(124484, 100030, 'it', 'name', 'UniversitĆ  degli Studi eCampus'),
(124485, 100031, 'en', 'name', 'CETAQUA Water Technology Centre'),
(124486, 100031, 'es', 'name', 'Centro Tecnológico del Agua'),
(124487, 100032, 'es', 'name', 'Universidad de Manizales'),
(124488, 100033, 'en', 'name', 'University of Port Harcourt'),
(124489, 100033, 'yo', 'name', 'YunifÔsítì ìlú Ebute Harcourt'),
(124490, 100034, 'en', 'name', 'Dhirubhai Ambani Institute of Information and Communication Technology'),
(124491, 100034, 'gu', 'name', 'ધીરુભાઇ અંબાણી ąŖ‡ąŖØą«ąŖøą«ąŖŸąŖæąŖŸą«ąŖÆą«ąŖŸ ąŖ“ąŖ« ąŖ‡ąŖØą«ąŖ«ą«‹ąŖ°ą«ąŖ®ą«‡ąŖ¶ąŖØ ąŖąŖØą«ąŖ” ąŖ•ąŖ®ą«ąŖÆą«ąŖØąŖæąŖ•ą«‡ąŖ¶ąŖØ ąŖŸą«‡ąŖ•ą«ąŖØą«‹ąŖ²ą«‹ąŖœą«€'),
(124492, 100035, 'en', 'name', 'Libyan Academy'),
(124493, 100035, 'ar', 'name', 'Ų§Ł„Ų£ŁƒŁ€Ł€Ų§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ł„ŁŠŲØŁŠŲ©'),
(124494, 100036, 'de', 'name', 'Hochschule Rosenheim'),
(124495, 100036, 'en', 'name', 'Rosenheim Technical University of Applied Sciences'),
(124496, 100037, 'nl', 'name', 'Koninklijk Museum voor Centraal -Afrika'),
(124497, 100037, 'fr', 'name', 'MusƩe royal de l''Afrique central'),
(124498, 100037, 'en', 'name', 'Royal Museum for Central Africa'),
(124499, 100038, 'en', 'name', 'Akal University'),
(124500, 100038, 'pa', 'name', 'ਅਕਾਲ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(124501, 100039, 'es', 'name', 'Universidad San Francisco de Quito'),
(124502, 100040, 'es', 'name', 'Banco de MƩxico'),
(124503, 100040, 'en', 'name', 'Bank of Mexico'),
(124504, 100041, 'en', 'name', 'Leitat Technological Center'),
(124505, 100042, 'en', 'name', 'Slovenian National Building and Civil Engineering Institute'),
(124506, 100043, 'en', 'name', 'Mindanao State University'),
(124507, 100043, 'tl', 'name', 'Pamantasang Mindanao'),
(124508, 100044, 'no_lang_code', 'name', 'MSD (Singapore)'),
(124509, 100045, 'en', 'name', 'Saint Mary''s University'),
(124510, 100045, 'fr', 'name', 'UniversitƩ saint mary'),
(124511, 100046, 'es', 'name', 'Universidad de Cuenca'),
(124512, 100046, 'en', 'name', 'University of Cuenca'),
(124513, 100047, 'en', 'name', 'Parul University'),
(124514, 100048, 'no_lang_code', 'name', 'Marwadi University'),
(124515, 100049, 'en', 'name', 'Tennessee State University'),
(124516, 100049, 'fr', 'name', 'UniversitĆ© d''Ɖtat du tennessee'),
(124517, 100050, 'en', 'name', 'INSA Strasbourg'),
(124518, 100050, 'fr', 'name', 'Institut National des Sciences AppliquƩes de Strasbourg'),
(124519, 100051, 'es', 'name', 'Corporación Unificada Nacional de Educación Superior'),
(124520, 100052, 'en', 'name', 'Presidency University'),
(124521, 100052, 'hi', 'name', 'ą¤Ŗą„ą¤°ą„‡ą¤øą¤æą¤”ą„‡ą¤‚ą¤øą„€ ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(124522, 100052, 'bn', 'name', 'ą¦Ŗą§ą¦°ą§‡ą¦øą¦æą¦”ą§‡ą¦Øą§ą¦øą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(124523, 100052, 'ta', 'name', 'ą®®ą®¾ą®Øą®æą®²ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(124524, 100053, 'en', 'name', 'Institute of Power Engineering'),
(124525, 100054, 'en', 'name', 'Sarhad University of Science and Information Technology'),
(124526, 100054, 'ur', 'name', 'جامعہ Ų³Ų±Ų­ŲÆ'),
(124527, 100055, 'fr', 'name', 'Institut de mƩdecine tropicale'),
(124528, 100055, 'en', 'name', 'Institute of Tropical Medicine Antwerp'),
(124529, 100055, 'nl', 'name', 'Instituut voor Tropische Geneeskunde'),
(124530, 100056, 'id', 'name', 'Universitas Semarang'),
(124531, 100057, 'en', 'name', 'Tata Medical Center'),
(124532, 100057, 'bn', 'name', 'টাটা ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦°'),
(124533, 100058, 'en', 'name', 'University of Nebraska Foundation'),
(124534, 100059, 'en', 'name', 'Langston University'),
(124535, 100060, 'id', 'name', 'Universitas Cokroaminoto Palopo'),
(124536, 100061, 'en', 'name', 'SRM University, Andhra Pradesh'),
(124537, 100061, 'te', 'name', 'ą°Žą°øą±.ą°†ą°°ą±.ą°Žą°‚ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ అమరావతి ą°†ą°‚ą°§ą±ą°°ą°Ŗą±ą°°ą°¦ą±‡ą°¶ą±'),
(124538, 100062, 'en', 'name', 'Museum of London Archaeology'),
(124539, 100063, 'en', 'name', 'Yerevan State University'),
(124540, 100063, 'hy', 'name', 'ŌµÖ€Ö‡Õ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(124541, 100064, 'en', 'name', 'Institute of Field and Vegetable Crops'),
(124542, 100065, 'en', 'name', 'African Institute for Mathematical Sciences Senegal'),
(124543, 100065, 'fr', 'name', 'Institut Africain des Sciences MathƩmatiques SƩnƩgal'),
(124544, 100066, 'fr', 'name', 'Ɖcole SupĆ©rieure PrivĆ©e d''IngĆ©nierie et de Technologies'),
(124545, 100066, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ الخاصة للهندسة و Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(124546, 100067, 'es', 'name', 'Escuela Superior Politécnica Agropecuaria de Manabí Manuel Félix López'),
(124547, 100068, 'en', 'name', 'Trinity Laban Conservatoire of Music and Dance'),
(124548, 100069, 'fr', 'name', 'Centre wallon de Recherches Agronomiques'),
(124549, 100069, 'en', 'name', 'Walloon Agricultural Research Centre'),
(124550, 100070, 'en', 'name', 'Washington State Department of Health'),
(124551, 100071, 'en', 'name', 'NIMS University'),
(124552, 100072, 'pl', 'name', 'Instytut Matki i Dziecka'),
(124553, 100073, 'en', 'name', 'National Institute of Technology Kurukshetra'),
(124554, 100074, 'id', 'name', 'Universitas Wijaya Putra'),
(124555, 100075, 'en', 'name', 'Al Rasheed University College'),
(124556, 100076, 'en', 'name', 'Center for Unmanned Aircraft Systems'),
(124557, 100077, 'en', 'name', 'University of St. Thomas - Texas'),
(124558, 100078, 'es', 'name', 'Centro de Investigacion Principe Felipe'),
(124559, 100078, 'en', 'name', 'PrĆ­ncipe Felipe Research Center'),
(124560, 100079, 'en', 'name', 'University of Ilorin'),
(124561, 100079, 'yo', 'name', 'YunifÔsítì ìlú Ilorin'),
(124562, 100080, 'es', 'name', 'Escuela Colombiana de Carreras Industriales'),
(124563, 100081, 'en', 'name', 'MSD (UK) Limited (United Kingdom)'),
(124564, 100082, 'de', 'name', 'Hochschule Aalen'),
(124565, 100083, 'es', 'name', 'Universidad Tecnológica de Nayarit'),
(124566, 100084, 'en', 'name', 'Malayer University'),
(124567, 100085, 'en', 'name', 'National University Zaporizhzhia Polytechnic'),
(124568, 100085, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ° політехніка»'),
(124569, 100086, 'en', 'name', 'GeoEcoMar'),
(124570, 100086, 'ro', 'name', 'Institutul Național de Cercetare-Dezvoltare pentru Geologie și Geoecologie Marină'),
(124571, 100087, 'en', 'name', 'Kettering University'),
(124572, 100088, 'en', 'name', 'University of Blida'),
(124573, 100088, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁ„ŁŠŲÆŲ©'),
(124574, 100089, 'en', 'name', 'KIMEP University'),
(124575, 100089, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Š½ŠøŃ'),
(124576, 100089, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ менеГжмент'),
(124577, 100090, 'en', 'name', 'Khwaja Fareed University of Engineering and Information Technology'),
(124578, 100090, 'ur', 'name', 'خواجہ فرید ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§Ł†Ų¬ŪŒŁ†ŪŒŲ¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(124579, 100091, 'es', 'name', 'Fundación Universitaria CIEO - UNICIEO'),
(124580, 100092, 'en', 'name', 'St. Antonius Hospital'),
(124581, 100092, 'nl', 'name', 'St. Antonius Ziekenhuis'),
(124582, 100093, 'de', 'name', 'Hochschule Hannover'),
(124583, 100094, 'en', 'name', 'Shoolini University'),
(124584, 100095, 'en', 'name', 'Federal University Dutse'),
(124585, 100096, 'en', 'name', 'University of Religions and Denominations'),
(124586, 100096, 'fa', 'name', 'دانؓگاه Ų§ŲÆŪŒŲ§Ł† و مذاهب'),
(124587, 100097, 'nl', 'name', 'GGZ inGeest'),
(124588, 100098, 'en', 'name', 'Thomayer University Hospital'),
(124589, 100098, 'cs', 'name', 'Thomayerova nemocnice'),
(124590, 100099, 'en', 'name', 'Institute of Nano Science and Technology'),
(124591, 100099, 'hi', 'name', 'ą¤Øą„ˆą¤Øą„‹ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(124592, 100100, 'et', 'name', 'Eesti Maaülikool'),
(124593, 100100, 'en', 'name', 'Estonian University of Life Sciences'),
(124594, 100101, 'en', 'name', 'United Arab Emirates University'),
(124595, 100101, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ال؄مارات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© المتحدة'),
(124596, 100102, 'es', 'name', 'Asociación de Investigación Metalúrgica del Noroeste'),
(124597, 100103, 'en', 'name', 'NATO Centre for Maritime Research and Experimentation'),
(124598, 100104, 'no_lang_code', 'name', 'MSD (France)'),
(124599, 100105, 'ro', 'name', 'Universitatea Valahia din TĆ¢rgoviște'),
(124600, 100105, 'en', 'name', 'Valahia University of Targoviste'),
(124601, 100106, 'en', 'name', 'Center for Theoretical Physics and Mathematics'),
(124602, 100106, 'es', 'name', 'Centro de Física Teórica y MatemÔticas'),
(124603, 100107, 'en', 'name', 'National Autonomous University of Honduras'),
(124604, 100107, 'es', 'name', 'Universidad Nacional Autónoma de Honduras'),
(124605, 100108, 'id', 'name', 'Universitas Nusantara PGRI Kediri'),
(124606, 100109, 'fr', 'name', 'BIOASTER'),
(124607, 100110, 'en', 'name', 'Kinnaird College for Women University'),
(124608, 100110, 'ur', 'name', 'Ś©Ł†ŪŒŲ¦Ų±Śˆ کالج'),
(124609, 100111, 'en', 'name', 'University Clinical Center Tuzla'),
(124610, 100112, 'en', 'name', 'Dr. N.G.P. Institute of Technology'),
(124611, 100113, 'en', 'name', 'Federal University of Pampa'),
(124612, 100113, 'pt', 'name', 'Universidade Federal do Pampa'),
(124613, 100114, 'pt', 'name', 'Universidade JosƩ do RosƔrio Vellano'),
(124614, 100115, 'es', 'name', 'Universidad de Antioquia'),
(124615, 100115, 'en', 'name', 'University of Antioquia'),
(124616, 100116, 'en', 'name', 'Oak Ridge Associated Universities'),
(124617, 100117, 'en', 'name', 'Kaohsiung Veterans General Hospital'),
(124618, 100118, 'en', 'name', 'European University of the Atlantic'),
(124619, 100118, 'es', 'name', 'Universidad Europea del AtlƔntico'),
(124620, 100119, 'en', 'name', 'Kyrgyz National University'),
(124621, 100119, 'uz', 'name', 'Qirgʻiz milliy universiteti'),
(124622, 100119, 'ky', 'name', 'Š–ŃƒŃŃƒŠæ Баласагын атынГагы ŠšŃ‹Ń€Š³Ń‹Š· Š£Š»ŃƒŃ‚Ń‚ŃƒŠŗ Университети'),
(124623, 100119, 'ru', 'name', 'ŠšŠøŃ€Š³ŠøŠ·ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š–ŃƒŃŃƒŠæŠ° Баласагына'),
(124624, 100120, 'it', 'name', 'Azienda UnitĆ  Sanitaria Locale di Ferrara'),
(124625, 100121, 'en', 'name', 'Thai Nguyen University Of Education'),
(124626, 100121, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m ThĆ”i NguyĆŖn'),
(124627, 100122, 'en', 'name', 'Mountain Area Health Education Center'),
(124628, 100123, 'es', 'name', 'Universidad El Bosque'),
(124629, 100124, 'en', 'name', 'Hull York Medical School'),
(124630, 100125, 'en', 'name', 'University of Swat'),
(124631, 100125, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų³ŁˆŲ§ŲŖā€Ž'),
(124632, 100126, 'en', 'name', 'Kazan State Technical University named after A. N. Tupolev'),
(124633, 100126, 'ru', 'name', 'Казанский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š. Туполева'),
(124634, 100127, 'fr', 'name', 'Institut de Recherche Technologique SystemX'),
(124635, 100128, 'en', 'name', 'Petra Christian University'),
(124636, 100128, 'id', 'name', 'Universitas Kristen Petra'),
(124637, 100129, 'en', 'name', 'Epoka University'),
(124638, 100129, 'sq', 'name', 'Universiteti Epoka'),
(124639, 100130, 'en', 'name', 'Raisoni Group of Institutions'),
(124640, 100131, 'en', 'name', 'Seton Hill University'),
(124641, 100132, 'en', 'name', 'Lala Lajpat Rai University of Veterinary and Animal Sciences'),
(124642, 100132, 'hi', 'name', 'लाला लाजपतराय ą¤Ŗą¤¶ą„ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤ą¤µą¤‚ ą¤Ŗą¤¶ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(124643, 100132, 'ta', 'name', 'லாலா ą®²ą®œą®Ŗą®¤ą®æą®°ą®¾ą®ÆąÆ ą®•ą®¾ą®²ąÆą®Øą®ŸąÆˆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®æą®²ą®™ąÆą®•ą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(124644, 100133, 'en', 'name', 'B.M.S. College of Engineering'),
(124645, 100133, 'kn', 'name', 'ಬೀ.ą²Žą²‚.ą²Žą²øą³. ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(124646, 100134, 'en', 'name', 'National Institute of Fundamental Studies'),
(124647, 100134, 'si', 'name', 'ą¶¢ą·ą¶­ą·’ą¶š ą¶øą·–ą¶½ą·’ą¶š ą¶…ą¶°ą·Šā€ą¶ŗą¶± ආයතනය'),
(124648, 100135, 'en', 'name', 'Riphah International University'),
(124649, 100136, 'en', 'name', 'Aschaffenburg University of Applied Sciences'),
(124650, 100136, 'de', 'name', 'Technische Hochschule Aschaffenburg'),
(124651, 100137, 'en', 'name', 'Sylhet Agricultural University'),
(124652, 100137, 'bn', 'name', 'ą¦øą¦æą¦²ą§‡ą¦Ÿ ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(124653, 100138, 'en', 'name', 'E.G.S. Pillay Engineering College'),
(124654, 100139, 'no_lang_code', 'name', 'MSD (Sweden)'),
(124655, 100140, 'en', 'name', 'Chandrakasem Rajabhat University'),
(124656, 100140, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøˆąø±ąø™ąø—ąø£ą¹€ąøąø©ąø”'),
(124657, 100141, 'no', 'name', 'HĆøgskulen i Volda'),
(124658, 100141, 'en', 'name', 'Volda University College'),
(124659, 100142, 'es', 'name', 'Universidad Nacional Hermilio ValdizƔn'),
(124660, 100143, 'en', 'name', 'St. Edward''s University'),
(124661, 100144, 'en', 'name', 'Dordt University'),
(124662, 100145, 'es', 'name', 'Althaia'),
(124663, 100146, 'sw', 'name', 'Chuo cha Elimu ya Biashara'),
(124664, 100146, 'en', 'name', 'College of Business Education'),
(124665, 100147, 'no', 'name', 'Institutt for fredsforskning'),
(124666, 100147, 'en', 'name', 'Peace Research Institute Oslo'),
(124667, 100148, 'sw', 'name', 'Chuo Kikuu cha Taifa cha Zanzibar'),
(124668, 100148, 'en', 'name', 'State University of Zanzibar'),
(124669, 100149, 'en', 'name', 'Moravian University'),
(124670, 100150, 'en', 'name', 'Viterbo University'),
(124671, 100151, 'en', 'name', 'Kyrgyz State Technical University'),
(124672, 100151, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š· мамлекеттик техникалык ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(124673, 100151, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(124674, 100152, 'en', 'name', 'Hamm-Lippstadt University of Applied Sciences'),
(124675, 100152, 'de', 'name', 'Hochschule Hamm-Lippstadt'),
(124676, 100153, 'en', 'name', 'Zimbabwe Open University'),
(124677, 100154, 'en', 'name', 'Linfield College'),
(124678, 100155, 'de', 'name', 'FOM - Hochschule für Oekonomie und Management'),
(124679, 100155, 'en', 'name', 'FOM University of Applied Sciences for Economics and Management'),
(124680, 100156, 'en', 'name', 'Indian Institute of Management Raipur'),
(124681, 100156, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(124682, 100157, 'en', 'name', 'RENA Technologies Austria GmbH (Austria)'),
(124683, 100158, 'en', 'name', 'Heidelberg University of Education'),
(124684, 100158, 'de', 'name', 'PƤdagogische Hochschule Heidelberg'),
(124685, 100159, 'en', 'name', 'Calvin University'),
(124686, 100160, 'en', 'name', 'Jayoti Vidyapeeth Women''s University'),
(124687, 100160, 'hi', 'name', 'ą¤œą„ą¤Æą„‹ą¤¤ą¤æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  महिला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(124688, 100161, 'no_lang_code', 'name', 'Viatris'),
(124689, 100162, 'en', 'name', 'Superior University'),
(124690, 100162, 'ur', 'name', 'سپیریئر کالج'),
(124691, 100163, 'en', 'name', 'Open University of Cyprus'),
(124692, 100163, 'el', 'name', 'Ī‘Ī½ĪæĪ¹ĪŗĻ„ĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(124693, 100164, 'en', 'name', 'Kyoto University of Advanced Science'),
(124694, 100164, 'ja', 'name', 'äŗ¬éƒ½å…ˆē«Æē§‘å­¦å¤§å­¦'),
(124695, 100165, 'en', 'name', 'University of Kurdistan'),
(124696, 100165, 'fa', 'name', 'دانؓگاه کردستان'),
(124697, 100166, 'id', 'name', 'Universitas Dehasen Bengkulu'),
(124698, 100167, 'it', 'name', 'Aziende Socio Sanitarie Territoriali di Lecco'),
(124699, 100167, 'en', 'name', 'Regional Health Care and Social Agency of Lecco'),
(124700, 100168, 'en', 'name', 'Institute of Food Science Research'),
(124701, 100168, 'es', 'name', 'Instituto de Investigación en Ciencias de la Alimentación'),
(124702, 100169, 'en', 'name', 'Easwari Engineering College'),
(124703, 100170, 'it', 'name', 'Libera UniversitĆ  Maria SS. Assunta'),
(124704, 100170, 'en', 'name', 'Maria SS. Assunta University of Rome'),
(124705, 100171, 'en', 'name', 'Federal University Dutsin-Ma'),
(124706, 100172, 'en', 'name', 'Moscow Witte University'),
(124707, 100173, 'no_lang_code', 'name', 'Bilad Alrafidain University College'),
(124708, 100173, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© بلاد Ų§Ł„Ų±Ų§ŁŲÆŁŠŁ† الجامعة'),
(124709, 100174, 'pt', 'name', 'Pontifícia Universidade Católica de Campinas'),
(124710, 100174, 'fr', 'name', 'UniversitƩ pontificale catholique de campinas'),
(124711, 100175, 'en', 'name', 'Vlerick Business School'),
(124712, 100176, 'es', 'name', 'Instituto de Altos Estudios Nacionales'),
(124713, 100177, 'id', 'name', 'Universitas Bengkulu'),
(124714, 100177, 'en', 'name', 'University of Bengkulu'),
(124715, 100178, 'es', 'name', 'Universidad Nacional de San MartĆ­n'),
(124716, 100179, 'ms', 'name', 'Lembaga Getah Malaysia'),
(124717, 100179, 'en', 'name', 'Malaysian Rubber Board'),
(124718, 100180, 'pt', 'name', 'Instituto Federal do Sudeste de Minas Gerais'),
(124719, 100181, 'en', 'name', 'Borys Grinchenko Kyiv Metropolitan University'),
(124720, 100181, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ столичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Бориса Грінченка'),
(124721, 100182, 'de', 'name', 'SLUB Dresden'),
(124722, 100182, 'en', 'name', 'Saxon State and University Library Dresden'),
(124723, 100183, 'id', 'name', 'Universitas Islam Negeri Sumatera Utara'),
(124724, 100184, 'de', 'name', 'Luzerner Kantonsspital'),
(124725, 100185, 'pt', 'name', 'Laboratório Nacional de Computação Científica'),
(124726, 100186, 'no_lang_code', 'name', 'Temasek Polytechnic'),
(124727, 100186, 'zh', 'name', '淔马锔理巄学院'),
(124728, 100187, 'en', 'name', 'Ghulam Ishaq Khan Institute of Engineering Sciences and Technology'),
(124729, 100187, 'ur', 'name', 'غلام Ų§Ų³Ų­Ų§Ł‚ Ų§Ł†Ų³Ł¹ŪŒŁ¹ŪŒŁˆŁ¹ ŲØŲ±Ų§Ų¦Ū’ Ų§Ł†Ų¬ŪŒŁ†ŪŒŲ±Ł†ŚÆ سائنس Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(124730, 100188, 'en', 'name', 'Muhammadiyah University of Ponorogo'),
(124731, 100189, 'en', 'name', 'Colombian Geological Survey'),
(124732, 100189, 'es', 'name', 'Servicio Geológico Colombiano'),
(124733, 100190, 'en', 'name', 'Peoria campus of the University of Illinois System'),
(124734, 100191, 'en', 'name', 'Poornima University'),
(124735, 100192, 'en', 'name', 'North Estonia Medical Centre'),
(124736, 100193, 'en', 'name', 'Indian Institute of Technology Tirupati'),
(124737, 100193, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą±‹ą°²ą°œą±€ తిరుపతి'),
(124738, 100194, 'en', 'name', 'Odense University Hospital'),
(124739, 100195, 'no_lang_code', 'name', 'Satbayev University'),
(124740, 100195, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. И. Датпаева'),
(124741, 100195, 'kk', 'name', 'ŅšŠ°Š½Ń‹Ńˆ Дәтбаев атынГағы ŅšŠ°Š·Š°Ņ› ұлттық техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(124742, 100196, 'en', 'name', 'Esslingen University of Applied Sciences'),
(124743, 100196, 'de', 'name', 'Hochschule Esslingen'),
(124744, 100197, 'en', 'name', 'Academy of Athens'),
(124745, 100197, 'fr', 'name', 'Académie d''athènes'),
(124746, 100197, 'el', 'name', 'ΑκαΓημία Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(124747, 100198, 'en', 'name', 'Afe Babalola University'),
(124748, 100199, 'en', 'name', 'COMTES FHT a.s.'),
(124749, 100199, 'no_lang_code', 'name', 'Comtes Fht (Czechia)'),
(124750, 100200, 'en', 'name', 'Essen University Hospital'),
(124751, 100200, 'de', 'name', 'UniversitƤtsklinikum Essen'),
(124752, 100201, 'en', 'name', 'Shanghai Academy of Agricultural Sciences'),
(124753, 100201, 'zh', 'name', 'äøŠęµ·åø‚å†œäøšē§‘å­¦é™¢'),
(124754, 100202, 'en', 'name', 'University of Haripur'),
(124755, 100202, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ہری Ł¾ŁˆŲ±ā€Ž'),
(124756, 100203, 'en', 'name', 'REVA University'),
(124757, 100203, 'kn', 'name', 'ರೇವ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(124758, 100204, 'en', 'name', 'Pilot University of Colombia'),
(124759, 100204, 'es', 'name', 'Universidad Piloto de Colombia'),
(124760, 100205, 'en', 'name', 'Deggendorf Institute of Technology'),
(124761, 100205, 'de', 'name', 'Technische Hochschule Deggendorf'),
(124762, 100206, 'en', 'name', 'Saitama Prefectural University'),
(124763, 100206, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹å¤§å­¦'),
(124764, 100207, 'es', 'name', 'Instituto Nacional de Investigacion y Desarrollo Pesquero'),
(124765, 100208, 'en', 'name', 'Shanghai Children''s Hospital'),
(124766, 100208, 'zh', 'name', 'äøŠęµ·åø‚å„æē«„åŒ»é™¢'),
(124767, 100209, 'en', 'name', 'Abia State University'),
(124768, 100209, 'yo', 'name', 'YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ ƁbĆ­Ć”'),
(124769, 100210, 'en', 'name', 'Office of the Director'),
(124770, 100211, 'en', 'name', 'Kerala Veterinary and Animal Sciences University'),
(124771, 100211, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“µąµ†ą“±ąµą“±ą“±ą“æą“Øą“±ą“æ ą“†ą“Øąµą“±ąµ ą“…ą“Øą“æą“®ąµ½ ą“øą“Æąµ»ą“øąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(124772, 100212, 'en', 'name', 'University of Buea'),
(124773, 100212, 'fr', 'name', 'UniversitƩ de Buea'),
(124774, 100213, 'en', 'name', 'Science and Arts University'),
(124775, 100213, 'fa', 'name', 'دانؓگاه علم و هنر'),
(124776, 100214, 'es', 'name', 'Universidad del Salvador'),
(124777, 100214, 'fr', 'name', 'UniversitƩ del salvador'),
(124778, 100215, 'es', 'name', 'Centro Pfizer - Universidad de Granada - Junta de Andalucía de Genómica e Investigación Oncológica'),
(124779, 100215, 'en', 'name', 'Pfizer-University of Granada-Junta de AndalucĆ­a Centre for Genomics and Oncological Research'),
(124780, 100216, 'en', 'name', 'University of Limpopo'),
(124781, 100217, 'en', 'name', 'Federal University of Lavras'),
(124782, 100217, 'pt', 'name', 'Universidade Federal de Lavras'),
(124783, 100218, 'en', 'name', 'Pacific Northwest University of Health Sciences'),
(124784, 100219, 'en', 'name', 'University of Agricultural and Horticultural Sciences'),
(124785, 100219, 'kn', 'name', 'ą²Æą³‚ą²Øą²æą²µą²°ą³ą²øą²æą²Ÿą²æ ą²†ą²«ą³ ą²…ą²—ą³ą²°ą²æą²•ą²²ą³ą²šą²°ą²²ą³ ą²…ą²‚ą²”ą³ ą²¹ą²¾ą²°ą³ą²Ÿą²æą²•ą²²ą³ą²šą²°ą³ ą²øą³ˆą²Øą³ą²øą²øą³ - ą²øą³€ą²”ą³ ą²Æą³‚ą²Øą²æą²Ÿą³'),
(124786, 100220, 'en', 'name', 'Xavier Institute of Social Service'),
(124787, 100220, 'hi', 'name', 'ą¤œą„‡ą¤µą¤æą¤Æą¤° समाज ą¤øą„‡ą¤µą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(124788, 100221, 'no_lang_code', 'name', 'Uninova'),
(124789, 100222, 'en', 'name', 'University of Southern Philippines Foundation'),
(124790, 100223, 'no_lang_code', 'name', 'Bangkokthonburi University'),
(124791, 100223, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø£ąøøąø‡ą¹€ąø—ąøžąø˜ąø™ąøšąøøąø£ąøµ'),
(124792, 100224, 'no_lang_code', 'name', 'Roozbeh Hospital'),
(124793, 100224, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų±ŁˆŲ²ŲØŁ‡'),
(124794, 100225, 'en', 'name', 'University of Kashmir'),
(124795, 100225, 'hi', 'name', 'ą¤•ą¤¶ą„ą¤®ą„€ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(124796, 100225, 'bn', 'name', 'ą¦•ą¦¾ą¦¶ą§ą¦®ą§€ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(124797, 100225, 'ta', 'name', 'ą®•ą®¾ą®šąÆą®®ąÆ€ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(124798, 100226, 'en', 'name', 'Beit Berl College'),
(124799, 100226, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ בית ×‘×Ø×œ'),
(124800, 100227, 'en', 'name', 'Agnes Scott College'),
(124801, 100228, 'en', 'name', 'Vikram Sarabhai Space Centre'),
(124802, 100228, 'mr', 'name', 'ą¤µą¤æą¤•ą„ą¤°ą¤® साराभाई अंतराळ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(124803, 100228, 'hi', 'name', 'ą¤µą¤æą¤•ą„ą¤°ą¤® साराभाई ą¤…ą¤‚ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(124804, 100228, 'ta', 'name', 'ą®µą®æą®•ąÆą®°ą®®ąÆ ą®šą®¾ą®°ą®¾ą®Ŗą®¾ą®ÆąÆ ą®µą®æą®£ąÆą®µąÆ†ą®³ą®æ ą®®ąÆˆą®Æą®®ąÆ'),
(124805, 100228, 'ml', 'name', 'ą“µą“æą“•ąµą“°ą“‚ ą“øą“¾ą“°ą“¾ą“­ą“¾ą“Æąµ ą“¬ą“¹ą“æą“°ą“¾ą“•ą“¾ą“¶ą“•ąµ‡ą“Øąµą“¦ąµą“°ą“‚'),
(124806, 100229, 'es', 'name', 'Fundación Universitaria Juan N. Corpas'),
(124807, 100230, 'en', 'name', 'Gonzaga University'),
(124808, 100230, 'es', 'name', 'Universidad Gonzaga'),
(124809, 100231, 'en', 'name', 'Wollega University'),
(124810, 100232, 'en', 'name', 'ITM University'),
(124811, 100232, 'hi', 'name', 'ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(124812, 100233, 'en', 'name', 'Al Zawiya University'),
(124813, 100233, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ų§ŁˆŁŠŲ©'),
(124814, 100234, 'en', 'name', 'Institute for Circular Economy Development'),
(124815, 100234, 'vi', 'name', 'Viện NghiĆŖn cứu PhĆ”t triển Kinh tįŗæ tuįŗ§n hoĆ n'),
(124816, 100235, 'en', 'name', 'National University Ostroh Academy'),
(124817, 100235, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠžŃŃ‚Ń€Š¾Š·ŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ»'),
(124818, 100236, 'en', 'name', 'Brandon University'),
(124819, 100237, 'en', 'name', 'Mercatorum University'),
(124820, 100237, 'it', 'name', 'UniversitĆ  Telematica Universitas Mercatorum'),
(124821, 100238, 'fr', 'name', 'UniversitƩ Ibn Zohr'),
(124822, 100238, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ابن زهر'),
(124823, 100239, 'es', 'name', 'Instituto Tecnológico de Costa Rica'),
(124824, 100240, 'en', 'name', 'Westmont College'),
(124825, 100241, 'en', 'name', 'Debapriya Mukhopadhyay Vision Research Institute & Foundation'),
(124826, 100242, 'en', 'name', 'National Autonomous University of Tayacaja Daniel HernƔndez Morillo'),
(124827, 100242, 'es', 'name', 'Universidad Nacional Autónoma de Tayacaja Daniel HernÔndez Morillo'),
(124828, 100243, 'id', 'name', 'Mahkamah Agung Republik Indonesia'),
(124829, 100243, 'en', 'name', 'Supreme Court of the Republic of Indonesia'),
(124830, 100244, 'id', 'name', 'Universitas Garut'),
(124831, 100245, 'en', 'name', 'Westcliff University'),
(124832, 100246, 'de', 'name', 'Hochschule Bielefeld'),
(124833, 100247, 'en', 'name', 'Maasai Mara University'),
(124834, 100248, 'en', 'name', 'Caldwell University'),
(124835, 100249, 'en', 'name', 'Federal University of Fronteira Sul'),
(124836, 100249, 'pt', 'name', 'Universidade Federal da Fronteira Sul'),
(124837, 100250, 'en', 'name', 'Holland Bloorview Kids Rehabilitation Hospital'),
(124838, 100251, 'en', 'name', 'Joint Institute for Nuclear Research'),
(124839, 100251, 'ru', 'name', 'ŠžŠ±ŃŠŠµŠ“ŠøŠ½Ń‘Š½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(124840, 100252, 'en', 'name', 'State University of Novi Pazar'),
(124841, 100252, 'sr', 'name', 'Државни ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ у ŠŠ¾Š²Š¾Š¼ ŠŸŠ°Š·Š°Ń€Ńƒ'),
(124842, 100253, 'et', 'name', 'Küberkaitsekoostöö Keskus'),
(124843, 100253, 'en', 'name', 'NATO Cooperative Cyber Defence Centre of Excellence'),
(124844, 100254, 'de', 'name', 'Hochschule Weihenstephan-Triesdorf'),
(124845, 100254, 'en', 'name', 'Weihenstephan-Triesdorf University of Applied Sciences'),
(124846, 100255, 'no_lang_code', 'name', 'Sciex (Canada)'),
(124847, 100256, 'en', 'name', 'Shiraz University'),
(124848, 100256, 'fa', 'name', 'دانؓگاه ؓیراز'),
(124849, 100257, 'fr', 'name', 'Institut de santa fe'),
(124850, 100257, 'en', 'name', 'Santa Fe Institute'),
(124851, 100258, 'en', 'name', 'Akita Prefectural University'),
(124852, 100258, 'ja', 'name', 'ē§‹ē”°ēœŒē«‹å¤§å­¦'),
(124853, 100259, 'en', 'name', 'Huntington University'),
(124854, 100260, 'en', 'name', 'Mohamed Sathak College of Arts and Science'),
(124855, 100261, 'no_lang_code', 'name', 'Flatiron Health (United States)'),
(124856, 100262, 'en', 'name', 'Kyoto Tachibana University'),
(124857, 100262, 'ja', 'name', '京都橘大学'),
(124858, 100263, 'en', 'name', 'Patan Academy of Health Sciences'),
(124859, 100263, 'ne', 'name', 'पाटन ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(124860, 100264, 'en', 'name', 'ORFEO-CINQA Research Network'),
(124861, 100265, 'en', 'name', 'Aurel Vlaicu University of Arad'),
(124862, 100265, 'ro', 'name', 'Universitatea Aurel Vlaicu din Arad'),
(124863, 100266, 'en', 'name', 'University of the City of Manila'),
(124864, 100267, 'es', 'name', 'Instituto Argentino de Investigaciones de las Zonas Aridas'),
(124865, 100268, 'en', 'name', 'World Maritime University'),
(124866, 100269, 'es', 'name', 'Universidad Internacional del Ecuador'),
(124867, 100270, 'id', 'name', 'Universitas Negeri Yogyakarta'),
(124868, 100270, 'en', 'name', 'Yogyakarta State University'),
(124869, 100271, 'en', 'name', 'Antwerp University Hospital'),
(124870, 100271, 'nl', 'name', 'Universitair Ziekenhuis Antwerpen'),
(124871, 100272, 'pt', 'name', 'Instituto Federal do Sertão Pernambucano'),
(124872, 100273, 'no_lang_code', 'name', 'Canadian Light Source (Canada)'),
(124873, 100273, 'fr', 'name', 'Centre Canadien de Rayonnement Synchrotron'),
(124874, 100274, 'es', 'name', 'Sociedad EspaƱola de Neumologƭa y Cirugƭa TorƔcica'),
(124875, 100275, 'en', 'name', 'International Centre for Diarrhoeal Disease Research'),
(124876, 100275, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦° ফর ঔাইরিয়াল ঔিজিজ ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š, বাংলাদেশ'),
(124877, 100276, 'en', 'name', 'Research Experiences for Undergraduates'),
(124878, 100277, 'en', 'name', 'Mzuzu University'),
(124879, 100278, 'en', 'name', 'Forestry Research Institute of Sweden'),
(124880, 100279, 'tr', 'name', 'FCR Yayin LTD'),
(124881, 100280, 'no_lang_code', 'name', 'Noorul Islam University'),
(124882, 100280, 'ta', 'name', 'ą®ØąÆ‚ą®°ąÆą®²ąÆ ą®‡ą®øąÆą®²ą®¾ą®®ą®æą®Æą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(124883, 100280, 'ml', 'name', 'ą“Øąµ‚ą“±ąµąµ½ ą“‡ą“øąµą“²ą“¾ą“‚ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(124884, 100281, 'en', 'name', 'Taylor University'),
(124885, 100282, 'en', 'name', 'Global Academy of Technology'),
(124886, 100283, 'id', 'name', 'Universitas Madura'),
(124887, 100284, 'en', 'name', 'Cappadocia University'),
(124888, 100285, 'en', 'name', 'Sukhothai Thammathirat Open University'),
(124889, 100285, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŖąøøą¹‚ąø‚ąø—ąø±ąø¢ąø˜ąø£ąø£ąø”ąø²ąø˜ąø“ąø£ąø²ąøŠ'),
(124890, 100286, 'tl', 'name', 'Pamantasan ng Bohol'),
(124891, 100286, 'en', 'name', 'University of Bohol'),
(124892, 100287, 'es', 'name', 'CIC nanoGUNE'),
(124893, 100287, 'en', 'name', 'Nanoscience Cooperative Research Center'),
(124894, 100288, 'en', 'name', 'Vaal University of Technology'),
(124895, 100289, 'en', 'name', 'Athabasca University'),
(124896, 100290, 'en', 'name', 'Palmer College of Chiropractic'),
(124897, 100291, 'en', 'name', 'Shahid Rajaee Teacher Training University'),
(124898, 100291, 'fa', 'name', 'دانؓگاه تربیت دبیر Ų“Ł‡ŪŒŲÆ رجایی'),
(124899, 100292, 'en', 'name', 'SCMS Group of Educational Institutions'),
(124900, 100293, 'it', 'name', 'Banca d''Italia'),
(124901, 100293, 'en', 'name', 'Bank of Italy'),
(124902, 100294, 'en', 'name', 'Belarusian State Technological University'),
(124903, 100294, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Š°Š»Š°Š³Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(124904, 100294, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(124905, 100295, 'en', 'name', 'Great Zimbabwe University'),
(124906, 100296, 'en', 'name', 'Distance State University'),
(124907, 100296, 'es', 'name', 'Universidad Estatal a Distancia'),
(124908, 100297, 'en', 'name', 'Matsumoto Dental University'),
(124909, 100297, 'ja', 'name', 'ę¾ęœ¬ę­Æē§‘å¤§å­¦'),
(124910, 100298, 'de', 'name', 'Ostfalia Hochschule für Angewandte Wissenschaften'),
(124911, 100298, 'en', 'name', 'Ostfalia University of Applied Sciences'),
(124912, 100299, 'en', 'name', 'Saint Mary''s College of California'),
(124913, 100300, 'no_lang_code', 'name', 'Flanders Make (Belgium)'),
(124914, 100301, 'es', 'name', 'Centro de Cirugía de Mínima Invasión Jesús Usón'),
(124915, 100301, 'en', 'name', 'Minimally Invasive Surgery centre'),
(124916, 100302, 'en', 'name', 'Roanoke College'),
(124917, 100303, 'en', 'name', 'Washington College'),
(124918, 100304, 'en', 'name', 'Information Technologies Institute'),
(124919, 100304, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĻŽĪ½ Πληροφορικής και Ī•Ļ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½'),
(124920, 100305, 'de', 'name', 'FH Münster'),
(124921, 100306, 'en', 'name', 'Stepan Gzhytskyi National University of Veterinary Medicine and Biotechnologies Lviv'),
(124922, 100306, 'ru', 'name', 'Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарной меГицины Šø биотехнологий имени Š”.Š—. Гжицкого'),
(124923, 100306, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарної меГицини та біотехнологій імені Дтепана Š“Š¶ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(124924, 100307, 'es', 'name', 'Instituto de Fomento Pesquero'),
(124925, 100308, 'en', 'name', 'Aliah University'),
(124926, 100308, 'bn', 'name', 'আলিয়া ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(124927, 100309, 'es', 'name', 'Universidad Metropolitana'),
(124928, 100310, 'en', 'name', 'French National Institute for Industrial Environment and Risks'),
(124929, 100310, 'fr', 'name', 'Institut national de l''environnement industriel et des risques'),
(124930, 100311, 'es', 'name', 'Universidad del Valle de Guatemala'),
(124931, 100311, 'en', 'name', 'University of the Valley of Guatemala'),
(124932, 100312, 'en', 'name', 'COMTES FHT a.s.'),
(124933, 100313, 'en', 'name', 'L V Prasad Eye Institute'),
(124934, 100314, 'es', 'name', 'Universidad Católica de El Salvador'),
(124935, 100315, 'en', 'name', 'University of Abuja'),
(124936, 100315, 'yo', 'name', 'YunifÔsítì ìlú AbùjÔ'),
(124937, 100316, 'en', 'name', 'Connecticut Children''s Medical Center'),
(124938, 100317, 'no_lang_code', 'name', 'MSD (Netherlands)'),
(124939, 100318, 'es', 'name', 'Pontificia Universidad Católica Madre y Maestra'),
(124940, 100319, 'en', 'name', 'Sigma University'),
(124941, 100320, 'no_lang_code', 'name', 'MSD (South Korea)'),
(124942, 100321, 'en', 'name', 'Pham Ngoc Thach University of Medicine'),
(124943, 100321, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y khoa Phįŗ”m Ngį»c Thįŗ”ch'),
(124944, 100322, 'en', 'name', 'Ardakan University'),
(124945, 100322, 'fa', 'name', 'دانؓگاه اردکان'),
(124946, 100323, 'en', 'name', 'Fukui Prefectural University'),
(124947, 100323, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹å¤§å­¦'),
(124948, 100324, 'es', 'name', 'Centro de Investigación en MatemÔticas'),
(124949, 100324, 'en', 'name', 'Mathematics Research Center'),
(124950, 100325, 'en', 'name', 'National University of San Juan'),
(124951, 100325, 'es', 'name', 'Universidad Nacional de San Juan'),
(124952, 100326, 'en', 'name', 'Rockhurst University'),
(124953, 100327, 'en', 'name', 'King Abdullah Petroleum Studies and Research Center'),
(124954, 100327, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ عبدالله للدراسات ŁˆŲ§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„ŲØŲŖŲ±ŁˆŁ„ŁŠŲ©'),
(124955, 100328, 'en', 'name', 'GƤvle Hospital'),
(124956, 100328, 'sv', 'name', 'GƤvle Sjukhus'),
(124957, 100329, 'es', 'name', 'Academia Espaola de Dermatologa y Venereologa'),
(124958, 100329, 'en', 'name', 'Spanish Academy of Dermatology and Venereology');
INSERT INTO `ror_settings` VALUES
(124959, 100330, 'id', 'name', 'Universitas Muhammadiyah Purworejo'),
(124960, 100331, 'pt', 'name', 'Universidade Paranaense'),
(124961, 100332, 'en', 'name', 'Natural History Museum'),
(124962, 100333, 'en', 'name', 'Materials Research Science and Engineering Centers'),
(124963, 100334, 'en', 'name', 'Le Cordon Bleu University'),
(124964, 100334, 'es', 'name', 'Universidad Le Cordon Bleu'),
(124965, 100335, 'en', 'name', 'American University of Kuwait'),
(124966, 100335, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ų§Ł„ŁƒŁˆŁŠŲŖ'),
(124967, 100336, 'en', 'name', 'Mangosuthu University of Technology'),
(124968, 100337, 'no_lang_code', 'name', 'Wayamba University of Sri Lanka'),
(124969, 100337, 'ta', 'name', 'ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®µą®Æą®®ąÆą®Ŗ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(124970, 100337, 'si', 'name', 'ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· වයඹ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(124971, 100338, 'en', 'name', 'Radiological Society of North America'),
(124972, 100339, 'hr', 'name', 'Klinički Bolnički Centar Sestre Milosrdnice'),
(124973, 100339, 'en', 'name', 'Sisters of Charity Hospital'),
(124974, 100340, 'en', 'name', 'University of Shkodra "Luigj Gurakuqi"'),
(124975, 100341, 'no_lang_code', 'name', 'OMV (Austria)'),
(124976, 100342, 'en', 'name', 'University of Urbino'),
(124977, 100342, 'it', 'name', 'UniversitĆ  degli Studi di Urbino Carlo Bo'),
(124978, 100343, 'en', 'name', 'Hankuk University of Foreign Studies'),
(124979, 100343, 'ko', 'name', 'ķ•œźµ­ģ™øźµ­ģ–“ėŒ€ķ•™źµ'),
(124980, 100344, 'en', 'name', 'Directorate for Biological Sciences'),
(124981, 100345, 'es', 'name', 'Universidad Privada Domingo Savio'),
(124982, 100346, 'pt', 'name', 'Univates'),
(124983, 100347, 'en', 'name', 'Seattle University'),
(124984, 100347, 'es', 'name', 'Universidad de Seattle'),
(124985, 100347, 'fr', 'name', 'UniversitƩ de seattle'),
(124986, 100348, 'en', 'name', 'Dzemal Bijedic University of Mostar'),
(124987, 100348, 'bs', 'name', 'Univerzitet "Džemal Bijedić" u Mostaru'),
(124988, 100348, 'sr', 'name', 'Универзитет "ŠŠµŠ¼Š°Š» Š‘ŠøŃ˜ŠµŠ“ŠøŃ›" у ŠœŠ¾ŃŃ‚Š°Ń€Ńƒ'),
(124989, 100349, 'pt', 'name', 'Centro UniversitƔrio Integrado'),
(124990, 100350, 'ms', 'name', 'Universiti Selangor'),
(124991, 100350, 'en', 'name', 'University of Selangor'),
(124992, 100351, 'en', 'name', 'Norwegian Computing Center'),
(124993, 100352, 'en', 'name', 'Medical University of Varna'),
(124994, 100352, 'bg', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Варна'),
(124995, 100353, 'no_lang_code', 'name', 'Austrian Centre of Industrial Biotechnology (Austria)'),
(124996, 100354, 'en', 'name', 'Gulu University'),
(124997, 100355, 'en', 'name', 'University of Jiroft'),
(124998, 100355, 'fa', 'name', 'دانؓگاه جیرفت'),
(124999, 100356, 'sw', 'name', 'Chuo Kikuu cha Kabarak'),
(125000, 100356, 'no_lang_code', 'name', 'Kabarak University'),
(125001, 100357, 'de', 'name', 'Ordensklinikum Linz Barmherzige Schwestern'),
(125002, 100358, 'pt', 'name', 'Instituto Federal de Educação Ciência e Tecnologia do Mato Grosso do Sul'),
(125003, 100359, 'en', 'name', 'Indian Institute of Information Technology Vadodara'),
(125004, 100360, 'en', 'name', 'Volgograd State University'),
(125005, 100360, 'ru', 'name', 'ВолгограГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(125006, 100361, 'fr', 'name', 'JUNIA'),
(125007, 100362, 'es', 'name', 'Universidad Central del Este'),
(125008, 100363, 'en', 'name', 'Narsee Monjee Institute of Management Studies'),
(125009, 100364, 'en', 'name', 'State University of Norte Fluminense'),
(125010, 100364, 'es', 'name', 'Universidad Estatal del Norte Fluminense'),
(125011, 100364, 'pt', 'name', 'Universidade Estadual do Norte Fluminense Darcy Ribeiro'),
(125012, 100365, 'en', 'name', 'American Institute of Mathematics'),
(125013, 100366, 'en', 'name', 'Sunamganj Science and Technology University'),
(125014, 100366, 'bn', 'name', 'ą¦øą§ą¦Øą¦¾ą¦®ą¦—ą¦žą§ą¦œ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(125015, 100367, 'en', 'name', 'Sainsbury Laboratory'),
(125016, 100368, 'en', 'name', 'Draper Laboratory'),
(125017, 100369, 'en', 'name', 'Indian Institute of Technology Dharwad'),
(125018, 100370, 'es', 'name', 'Universidad Virtual del Estado de Guanajuato'),
(125019, 100371, 'en', 'name', 'Our Lady of Fatima University'),
(125020, 100371, 'tl', 'name', 'Pamantasang Our Lady of Fatima'),
(125021, 100372, 'en', 'name', 'Whitworth University'),
(125022, 100373, 'no_lang_code', 'name', 'Sartorius (Germany)'),
(125023, 100374, 'en', 'name', 'Technical University of Gabrovo'),
(125024, 100374, 'bg', 'name', 'Технически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Габрово'),
(125025, 100375, 'en', 'name', 'Kerala Agricultural University'),
(125026, 100375, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“•ą“¾ąµ¼ą“·ą“æą“• ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(125027, 100376, 'pt', 'name', 'Academia da ForƧa AƩrea'),
(125028, 100376, 'en', 'name', 'Brazilian Air Force Academy'),
(125029, 100377, 'fr', 'name', 'UniversitƩ Catholique de Bukavu'),
(125030, 100378, 'en', 'name', 'North Eastern Regional Institute of Science and Technology'),
(125031, 100378, 'hi', 'name', 'ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø और ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤•ą„‡ ą¤Ŗą„‚ą¤°ą„ą¤µą„‹ą¤¤ą„ą¤¤ą¤° ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(125032, 100379, 'en', 'name', 'D. A. Tsenov Academy of Economics'),
(125033, 100379, 'bg', 'name', 'Дтопанска Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ā€žŠ”. А. Ценов'),
(125034, 100380, 'en', 'name', 'Akenten Appiah-Menka University of Skills Training and Entrepreneurial Development'),
(125035, 100381, 'en', 'name', 'Bethlehem University'),
(125036, 100381, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بيت لحم'),
(125037, 100382, 'en', 'name', 'Royal Botanic Garden Edinburgh'),
(125038, 100383, 'no_lang_code', 'name', 'Sripatum University'),
(125039, 100383, 'th', 'name', 'ดหาวณทยาคัยศรีปทุด'),
(125040, 100384, 'en', 'name', 'University of East Sarajevo'),
(125041, 100384, 'bs', 'name', 'Univerzitet u Istočnom Sarajevu'),
(125042, 100384, 'sr', 'name', 'Универзитет у Š˜ŃŃ‚Š¾Ń‡Š½Š¾Š¼ Š”Š°Ń€Š°Ń˜ŠµŠ²Ńƒ'),
(125043, 100385, 'en', 'name', 'Euro-Mediterranean University of Fes'),
(125044, 100385, 'fr', 'name', 'université Euro-Méditerranéenne de Fès'),
(125045, 100386, 'es', 'name', 'Universidad para el Desarrollo Andino'),
(125046, 100387, 'en', 'name', 'Delhi Technological University'),
(125047, 100387, 'hi', 'name', 'ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(125048, 100387, 'ta', 'name', 'ą®ŸąÆ†ą®²ąÆą®²ą®æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(125049, 100388, 'en', 'name', 'Telethon Institute Of Genetics And Medicine'),
(125050, 100389, 'pl', 'name', 'Akademia Morska w Szczecinie'),
(125051, 100389, 'en', 'name', 'Maritime University of Szczecin'),
(125052, 100390, 'en', 'name', 'Rezekne Academy of Technologies'),
(125053, 100390, 'lv', 'name', 'Rēzeknes Tehnoloģiju Akadēmija'),
(125054, 100391, 'en', 'name', 'Maejo University'),
(125055, 100391, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąø”ą¹ˆą¹‚ąøˆą¹‰'),
(125056, 100392, 'en', 'name', 'Arcada University of Applied Sciences'),
(125057, 100392, 'sv', 'name', 'Arcada – Nylands svenska yrkeshƶgskola'),
(125058, 100393, 'en', 'name', 'Southampton Solent University'),
(125059, 100394, 'en', 'name', 'Al Noor University College'),
(125060, 100394, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł†ŁˆŲ± الجامعة'),
(125061, 100395, 'sq', 'name', 'Universiteti "Ismail Qemali" Vlorƫ'),
(125062, 100395, 'en', 'name', 'University of Vlora "Ismail Qemali"'),
(125063, 100396, 'en', 'name', 'Centre for Social Innovation'),
(125064, 100396, 'de', 'name', 'Zentrum für Soziale Innovation'),
(125065, 100397, 'en', 'name', 'University of Duisburg-Essen'),
(125066, 100397, 'de', 'name', 'UniversitƤt Duisburg-Essen'),
(125067, 100398, 'en', 'name', 'Institute of Bioinformatics'),
(125068, 100399, 'no', 'name', 'Universitetet i SĆørĆøst-Norge'),
(125069, 100399, 'en', 'name', 'University of South-Eastern Norway'),
(125070, 100400, 'en', 'name', 'Ivy Tech Community College of Indiana'),
(125071, 100401, 'id', 'name', 'Universitas Muhammadiyah Palangkaraya'),
(125072, 100402, 'no_lang_code', 'name', 'Nikola Vaptsarov Naval Academy'),
(125073, 100402, 'bg', 'name', 'Š’ŠøŃŃˆŠµ военноморско ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ, Варна'),
(125074, 100403, 'fr', 'name', 'Fonds de Recherche du QuĆ©bec – Nature et Technologies'),
(125075, 100404, 'en', 'name', 'Norwegian Polar Institute'),
(125076, 100405, 'en', 'name', 'Wabash College'),
(125077, 100406, 'en', 'name', 'Shenzhen Bay Laboratory'),
(125078, 100406, 'zh', 'name', 'ę·±åœ³ę¹¾å®žéŖŒå®¤'),
(125079, 100407, 'no_lang_code', 'name', 'MSD (Mexico)'),
(125080, 100408, 'en', 'name', 'Western New England University'),
(125081, 100409, 'en', 'name', 'University of Aleppo'),
(125082, 100409, 'fr', 'name', 'UniversitƩ d''alep'),
(125083, 100409, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© حلب'),
(125084, 100410, 'en', 'name', 'Community University of Chapecó Region - Unochapecó'),
(125085, 100411, 'es', 'name', 'Fundación Universitaria Konrad Lorenz'),
(125086, 100412, 'no_lang_code', 'name', 'Centro Nacional de Biopreparados (Cuba)'),
(125087, 100413, 'no_lang_code', 'name', 'Stiftung Rehabilitation Heidelberg (Germany)'),
(125088, 100414, 'fr', 'name', 'UniversitƩ de walla walla'),
(125089, 100414, 'en', 'name', 'Walla Walla University'),
(125090, 100415, 'en', 'name', 'Razi Hospital'),
(125091, 100415, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† رازی'),
(125092, 100416, 'en', 'name', 'Bauchi State University'),
(125093, 100417, 'en', 'name', 'Indian Institute of Technology Gandhinagar'),
(125094, 100417, 'gu', 'name', 'iit ni jankari'),
(125095, 100417, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®¾ą®ØąÆą®¤ą®æą®Øą®•ą®°ąÆ'),
(125096, 100418, 'en', 'name', 'National University Toribio RodrĆ­guez de Mendoza'),
(125097, 100418, 'es', 'name', 'Universidad Nacional Toribio Rodriguez de Mendoza de Amazonas'),
(125098, 100419, 'it', 'name', 'Fondazione LINKS'),
(125099, 100419, 'en', 'name', 'LINKS Foundation'),
(125100, 100420, 'no_lang_code', 'name', 'HRL Laboratories (United States)'),
(125101, 100421, 'en', 'name', 'Varna Free University'),
(125102, 100421, 'tr', 'name', 'Varna Hür Üniversitesi'),
(125103, 100421, 'bg', 'name', 'Варненски свобоГен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(125104, 100422, 'pt', 'name', 'Instituto Federal Catarinense'),
(125105, 100423, 'es', 'name', 'Universidad de Especialidades EspĆ­ritu Santo'),
(125106, 100424, 'en', 'name', 'St. Joseph’s Healthcare Hamilton'),
(125107, 100425, 'de', 'name', 'Eidgenössische Institut für Metrologie'),
(125108, 100425, 'fr', 'name', 'Institut FƩdƩral de MƩtrologie'),
(125109, 100425, 'it', 'name', 'Istituto Federale di Metrologia'),
(125110, 100425, 'en', 'name', 'Swiss Federal Institute of Metrology'),
(125111, 100426, 'fr', 'name', 'Institut militaire de virginie'),
(125112, 100426, 'en', 'name', 'Virginia Military Institute'),
(125113, 100427, 'en', 'name', 'Indian Institute of Information Technology Allahabad'),
(125114, 100427, 'fr', 'name', 'Institut indien d''informatique d''allahabad'),
(125115, 100428, 'en', 'name', 'Indus University'),
(125116, 100429, 'sv', 'name', 'Region VƤstmanland'),
(125117, 100430, 'en', 'name', 'AfricArXiv'),
(125118, 100431, 'en', 'name', 'Sari Agricultural Sciences and Natural Resources University'),
(125119, 100431, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… کؓاورزی و منابع طبیعی ساری'),
(125120, 100432, 'en', 'name', 'Stonehill College'),
(125121, 100433, 'de', 'name', 'Deutsches Museum'),
(125122, 100433, 'en', 'name', 'German Museum'),
(125123, 100434, 'en', 'name', 'University of Warith Al-Anbiyaa'),
(125124, 100434, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© وارث Ų§Ł„Ų£Ł†ŲØŁŠŲ§Ų”'),
(125125, 100435, 'en', 'name', 'University Hospital in Motol'),
(125126, 100436, 'mt', 'name', 'Il-KulleĔĔ Malti tal-Arti, Xjenza u TeknoloĔija'),
(125127, 100436, 'en', 'name', 'Malta College of Arts, Science and Technology'),
(125128, 100437, 'id', 'name', 'Huria Kristen Batak Protestan'),
(125129, 100437, 'en', 'name', 'University of HKBP Nommensen'),
(125130, 100438, 'no_lang_code', 'name', 'Invitae (United States)'),
(125131, 100439, 'en', 'name', 'Baltic State Technical University Voenmeh'),
(125132, 100439, 'ru', 'name', 'Балтийский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Военмех'),
(125133, 100440, 'en', 'name', 'Florida Department of Transportation'),
(125134, 100441, 'en', 'name', 'Caltex Riau Polytechnic'),
(125135, 100441, 'id', 'name', 'Politeknik Caltex Riau'),
(125136, 100442, 'en', 'name', 'College of the Atlantic'),
(125137, 100443, 'en', 'name', 'National Institute for Laser Plasma and Radiation Physics'),
(125138, 100444, 'en', 'name', 'Bandung Islamic University'),
(125139, 100444, 'id', 'name', 'Universitas Islam Bandung'),
(125140, 100445, 'en', 'name', 'Petroleum & Gas University of Ploieşti'),
(125141, 100445, 'ro', 'name', 'Universitatea Petrol-Gaze din Ploiești'),
(125142, 100446, 'id', 'name', 'Universitas Wijaya Kusuma Surabaya'),
(125143, 100447, 'en', 'name', 'Chapingo Autonomous University'),
(125144, 100447, 'es', 'name', 'Universidad Autónoma Chapingo'),
(125145, 100448, 'en', 'name', 'Alexandru Ioan Cuza University'),
(125146, 100448, 'ro', 'name', 'Universitatea Alexandru Ioan Cuza'),
(125147, 100449, 'id', 'name', 'Universitas Muhammadiyah Sidoarjo'),
(125148, 100450, 'pl', 'name', 'Uniwersytet Ekonomiczny we Wrocławiu'),
(125149, 100450, 'en', 'name', 'Wroclaw University of Economics and Business'),
(125150, 100451, 'it', 'name', 'Ospedale Santa Chiara'),
(125151, 100452, 'es', 'name', 'Universidad Marcelino Champagnat'),
(125152, 100453, 'en', 'name', 'Southern Leyte State University'),
(125153, 100454, 'en', 'name', 'Defence Institute of Advanced Technology'),
(125154, 100455, 'en', 'name', 'Thi Qar University'),
(125155, 100455, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ذي قار'),
(125156, 100456, 'en', 'name', 'Modern College of Business and Science'),
(125157, 100457, 'fr', 'name', 'FacultƩ des Lettres et des Sciences Humaines de Sfax'),
(125158, 100457, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الآداب ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ł†Ų³Ų§Ł†ŁŠŲ© بصفاقس'),
(125159, 100458, 'en', 'name', 'Veritas University'),
(125160, 100459, 'ms', 'name', 'Universiti Teknologi Sarawak'),
(125161, 100459, 'en', 'name', 'University of Technology Sarawak'),
(125162, 100460, 'en', 'name', 'The NorthCap University'),
(125163, 100461, 'en', 'name', 'University of Diyala'),
(125164, 100461, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŁŠŲ§Ł„Ł‰'),
(125165, 100462, 'no_lang_code', 'name', 'Sri Chandrasekharendra Saraswathi Viswa Mahavidyalaya'),
(125166, 100462, 'ta', 'name', 'சிறி ą®šą®ØąÆą®¤ą®°ą®šąÆ‡ą®•ą®°ąÆ‡ą®ØąÆą®¤ą®°ą®¾ ą®šą®°ą®øąÆą®µą®¤ą®æ ą®µą®æą®øąÆą®µ ą®®ą®•ą®¾ą®µą®æą®¤ąÆą®Æą®¾ą®²ą®Æą®¾'),
(125167, 100463, 'en', 'name', 'Morehead State University'),
(125168, 100463, 'fr', 'name', 'UniversitĆ© d''Ɖtat de morehead'),
(125169, 100464, 'en', 'name', 'Comilla University'),
(125170, 100464, 'bn', 'name', 'ą¦•ą§ą¦®ą¦æą¦²ą§ą¦²ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(125171, 100465, 'en', 'name', 'Shobhit University'),
(125172, 100466, 'en', 'name', 'Center for Discrete Mathematics and Theoretical Computer Science'),
(125173, 100467, 'de', 'name', 'Hochschule Niederrhein'),
(125174, 100468, 'en', 'name', 'Federal University of Southern Bahia'),
(125175, 100468, 'pt', 'name', 'Universidade Federal do Sul da Bahia'),
(125176, 100469, 'no_lang_code', 'name', 'University Centre in Svalbard'),
(125177, 100470, 'en', 'name', 'Catholic University of Applied Sciences of North Rhine – Westphalia'),
(125178, 100470, 'de', 'name', 'Katholische Hochschule Nordrhein-Westfalen'),
(125179, 100471, 'en', 'name', 'Tay Nguyen University'),
(125180, 100471, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c TĆ¢y NguyĆŖn'),
(125181, 100472, 'es', 'name', 'Fundación Universitaria Monserrate'),
(125182, 100473, 'it', 'name', 'Istituto Zooprofilattico Sperimentale delle Regioni Lazio e Toscana'),
(125183, 100474, 'es', 'name', 'Universidad de BoyacĆ”'),
(125184, 100474, 'en', 'name', 'University of Boyaca'),
(125185, 100475, 'es', 'name', 'Universidad de Sucre'),
(125186, 100475, 'en', 'name', 'University of Sucre'),
(125187, 100476, 'en', 'name', 'Scottish Association For Marine Science'),
(125188, 100477, 'en', 'name', 'Vietnam National University Ho Chi Minh City'),
(125189, 100477, 'vi', 'name', 'ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh'),
(125190, 100478, 'en', 'name', 'National Institute of Materials Physics'),
(125191, 100479, 'en', 'name', 'Graduate Institute of International and Development Studies'),
(125192, 100479, 'de', 'name', 'Hochschulinstitut für internationale Studien und Entwicklung'),
(125193, 100479, 'fr', 'name', 'Institut de Hautes Ʃtudes Internationales et du DƩveloppement'),
(125194, 100480, 'en', 'name', 'Bursa Metropolitan Municipality'),
(125195, 100481, 'en', 'name', 'All-Russian Scientific Research Institute of Physical-Technical and Radiotechnical Measurements'),
(125196, 100481, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физико-технических Šø раГиотехнических измерений'),
(125197, 100482, 'de', 'name', 'Hochschule Macromedia'),
(125198, 100482, 'en', 'name', 'Macromedia University'),
(125199, 100483, 'en', 'name', 'Botswana International University of Science and Technology'),
(125200, 100484, 'fr', 'name', 'UniversitƩ Alioune Diop de Bambey'),
(125201, 100485, 'en', 'name', 'University of Basrah'),
(125202, 100485, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© البصرة'),
(125203, 100486, 'de', 'name', 'Fachhochschule Technikum Wien'),
(125204, 100486, 'en', 'name', 'University of Applied Sciences Technikum Wien'),
(125205, 100487, 'en', 'name', 'University of Gezira'),
(125206, 100487, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬Ų²ŁŠŲ±Ų©'),
(125207, 100488, 'en', 'name', 'Illinois Wesleyan University'),
(125208, 100489, 'en', 'name', 'Samford University'),
(125209, 100490, 'no_lang_code', 'name', 'Tarbiat Modares University'),
(125210, 100490, 'fa', 'name', 'دانؓگاه تربیت Ł…ŲÆŲ±Ų³'),
(125211, 100491, 'en', 'name', 'St. Anna Children''s Cancer Research Institute'),
(125212, 100491, 'de', 'name', 'St. Anna Kinderkrebsforschung GmbH'),
(125213, 100492, 'en', 'name', 'Menzies School of Health Research'),
(125214, 100493, 'en', 'name', 'University College South Denmark'),
(125215, 100493, 'da', 'name', 'University College Syddanmark'),
(125216, 100494, 'de', 'name', 'Kantonsspital Winterthur'),
(125217, 100495, 'en', 'name', 'Yancheng Institute of Technology'),
(125218, 100495, 'zh', 'name', 'ē›åŸŽå·„å­¦é™¢'),
(125219, 100496, 'en', 'name', 'Mongolian University of Life Sciences'),
(125220, 100496, 'mn', 'name', 'ЄөГөө Аж ŠŃ…ŃƒŠ¹Š½ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(125221, 100497, 'en', 'name', 'Avrasya University'),
(125222, 100497, 'tr', 'name', 'Avrasya Üniversitesi'),
(125223, 100498, 'es', 'name', 'El Colegio de Sonora'),
(125224, 100499, 'no_lang_code', 'name', 'Deutsche Bahn (Germany)'),
(125225, 100500, 'no_lang_code', 'name', 'Pertamina (Indonesia)'),
(125226, 100501, 'en', 'name', 'Nelson Mandela African Institution of Science and Technology'),
(125227, 100501, 'sw', 'name', 'Taasisi ya Sayansi na Teknolojia ya Nelson Mandela'),
(125228, 100502, 'nl', 'name', 'Koninklijk Meteorologisch Instituut van Belgiƫ'),
(125229, 100502, 'fr', 'name', 'L''Institut Royal MƩtƩorologique de Belgique'),
(125230, 100502, 'en', 'name', 'Royal Meteorological Institute of Belgium'),
(125231, 100503, 'en', 'name', 'National Physical Laboratory'),
(125232, 100504, 'es', 'name', 'IK4-Lortek'),
(125233, 100505, 'es', 'name', 'Universidad Nacional del Santa'),
(125234, 100506, 'en', 'name', 'Graphic Era University'),
(125235, 100506, 'hi', 'name', 'ą¤—ą„ą¤°ą¤¾ą¤«ą¤¼ą¤æą¤• ą¤ą¤°ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(125236, 100507, 'es', 'name', 'Corporación Universitaria del Meta'),
(125237, 100508, 'es', 'name', 'Instituto de Investigación Sanitaria La Fe'),
(125238, 100509, 'es', 'name', 'Corporación Universitaria Minuto de Dios'),
(125239, 100510, 'en', 'name', 'Lokman Hekim University'),
(125240, 100510, 'tr', 'name', 'Lokman Hekim Üniversitesi'),
(125241, 100511, 'pt', 'name', 'Universidade Federal de Juiz de Fora'),
(125242, 100512, 'fr', 'name', 'Institut de Cardiologie de MontrƩal'),
(125243, 100512, 'en', 'name', 'Montreal Heart Institute'),
(125244, 100513, 'en', 'name', 'Technical University of Mombasa'),
(125245, 100514, 'nl', 'name', 'Ziekenhuis Oost-Limburg'),
(125246, 100515, 'en', 'name', 'Sabzevar University of Medical Sciences'),
(125247, 100516, 'en', 'name', 'University of Bonab'),
(125248, 100516, 'fa', 'name', 'دانؓگاه بناب'),
(125249, 100517, 'en', 'name', 'Norwegian Institute for Nature Research'),
(125250, 100518, 'en', 'name', 'Atma Jaya University Yogyakarta'),
(125251, 100518, 'id', 'name', 'Universitas Atma Jaya Yogyakarta'),
(125252, 100519, 'en', 'name', 'Industrial Technology Institute'),
(125253, 100520, 'id', 'name', 'Universitas Sains dan Teknologi Komputer'),
(125254, 100521, 'fr', 'name', 'UniversitƩ Joseph Ki-Zerbo'),
(125255, 100522, 'ro', 'name', 'Universitatea de Medicină și Farmacie Victor Babeș'),
(125256, 100522, 'en', 'name', 'Victor Babeș University of Medicine and Pharmacy Timișoara'),
(125257, 100523, 'en', 'name', 'KOMAG Institute of Mining Technology'),
(125258, 100524, 'fr', 'name', 'AcadƩmie Arabe des Sciences, de la Technologie et des Transports Maritimes'),
(125259, 100524, 'en', 'name', 'Arab Academy for Science, Technology, and Maritime Transport'),
(125260, 100524, 'ar', 'name', 'Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ł†Ł‚Ł„ Ų§Ł„ŲØŲ­Ų±ŁŠ'),
(125261, 100525, 'en', 'name', 'Saint Anselm College'),
(125262, 100526, 'en', 'name', 'Sanata Dharma University'),
(125263, 100526, 'id', 'name', 'Universitas Sanata Dharma'),
(125264, 100526, 'jv', 'name', 'UnivĆØrsitas Sanata Dharma'),
(125265, 100527, 'en', 'name', 'Incedo Inc.'),
(125266, 100528, 'en', 'name', 'TH Bingen University of Applied Sciences'),
(125267, 100528, 'de', 'name', 'Technische Hochschule Bingen'),
(125268, 100529, 'en', 'name', 'University of Mining and Geology "Saint Ivan Rilski"'),
(125269, 100529, 'bg', 'name', 'ŠœŠ˜ŠŠŠž-Š“Š•ŠžŠ›ŠžŠ–ŠšŠ˜ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢ "ДВ. Š˜Š’ŠŠ Š Š˜Š›Š”ŠšŠ˜"'),
(125270, 100530, 'en', 'name', 'Collegium Civitas'),
(125271, 100531, 'en', 'name', 'Botswana Harvard AIDS Institute Partnership'),
(125272, 100532, 'en', 'name', 'Methodist University of SĆ£o Paulo'),
(125273, 100532, 'pt', 'name', 'Universidade Metodista de SĆ£o Paulo'),
(125274, 100533, 'en', 'name', 'Trinity Western University'),
(125275, 100534, 'en', 'name', 'University of Huddersfield'),
(125276, 100535, 'en', 'name', 'Bharath University'),
(125277, 100536, 'es', 'name', 'Red Española de Supercomputación'),
(125278, 100537, 'en', 'name', 'Daejin University'),
(125279, 100537, 'ko', 'name', 'ėŒ€ģ§„ėŒ€ķ•™źµ'),
(125280, 100538, 'no_lang_code', 'name', 'MSD (Spain)'),
(125281, 100539, 'en', 'name', 'Federal University of Western ParĆ”'),
(125282, 100539, 'pt', 'name', 'Universidade Federal do Oeste do ParĆ”'),
(125283, 100540, 'en', 'name', 'Central University of the Caribbean'),
(125284, 100540, 'es', 'name', 'Universidad Central del Caribe'),
(125285, 100541, 'en', 'name', 'Niigata University of Health and Welfare'),
(125286, 100541, 'ja', 'name', 'ę–°ę½ŸåŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(125287, 100542, 'en', 'name', 'University of Konstanz'),
(125288, 100542, 'de', 'name', 'UniversitƤt Konstanz'),
(125289, 100543, 'no', 'name', 'Arkitektur- og designhĆøgskolen i Oslo'),
(125290, 100543, 'en', 'name', 'Oslo School of Architecture and Design'),
(125291, 100544, 'en', 'name', 'Zarqa University'),
(125292, 100544, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الزرقاؔ'),
(125293, 100545, 'en', 'name', 'UbuntuNet Alliance for Research and Education Networking'),
(125294, 100546, 'en', 'name', 'Baharloo Hospital'),
(125295, 100546, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ŲØŁ‡Ų§Ų±Ł„Łˆ'),
(125296, 100547, 'no_lang_code', 'name', 'TRIUMF'),
(125297, 100548, 'en', 'name', 'Thai-Nichi Institute of Technology'),
(125298, 100548, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹„ąø—ąø¢-ąøąøµą¹ˆąø›ąøøą¹ˆąø™'),
(125299, 100549, 'en', 'name', 'State University of Padang'),
(125300, 100549, 'id', 'name', 'Universitas Negeri Padang'),
(125301, 100550, 'en', 'name', 'HUTECH University'),
(125302, 100550, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ ThĆ nh phố Hồ ChĆ­ Minh, ĐẔi hį»c HUTECH'),
(125303, 100551, 'de', 'name', 'Deutsches Institut für Lebensmitteltechnik'),
(125304, 100551, 'en', 'name', 'German Institute of Food Technologies'),
(125305, 100552, 'no', 'name', 'Norges HandelshĆøyskole'),
(125306, 100552, 'en', 'name', 'Norwegian School of Economics'),
(125307, 100553, 'en', 'name', 'Saint Leo University'),
(125308, 100554, 'en', 'name', 'Shumen University'),
(125309, 100554, 'bg', 'name', 'Шуменски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(125310, 100555, 'en', 'name', 'Mercyhurst University'),
(125311, 100556, 'en', 'name', 'HHL Leipzig Graduate School of Management'),
(125312, 100556, 'de', 'name', 'Handelshochschule Leipzig'),
(125313, 100557, 'fr', 'name', 'Institut Pasteur de Madagascar'),
(125314, 100558, 'en', 'name', 'National Science Foundation Ice Core Facility'),
(125315, 100559, 'en', 'name', 'Husson University'),
(125316, 100560, 'en', 'name', 'Institute for Technological Research'),
(125317, 100560, 'pt', 'name', 'Instituto de Pesquisas Tecnológicas'),
(125318, 100561, 'en', 'name', 'Ontario College of Art and Design'),
(125319, 100561, 'fr', 'name', 'UniversitĆ© de l''Ɖcole d''art et de design de l''ontario'),
(125320, 100562, 'en', 'name', 'Millikin University'),
(125321, 100563, 'en', 'name', 'Donetsk National University of Economics and Trade named after Mykhailo Tugan-Baranovsky'),
(125322, 100563, 'ru', 'name', 'Донецкий ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń–й Университет Экономики Šø Торговли имени ŠœŠøŃ…аила Туган-Барановского'),
(125323, 100563, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Університет Економіки і Торгівлі імені ŠœŠøŃ…Š°Š¹Š»Š° Туган-Š‘Š°Ń€Š°Š½Š¾Š²ŃŃŒŠŗŠ¾Š³Š¾'),
(125324, 100564, 'en', 'name', 'Waag Futurelab'),
(125325, 100565, 'en', 'name', 'University of Taipei'),
(125326, 100565, 'zh', 'name', 'č‡ŗåŒ—åø‚ē«‹å¤§å­øę ”ęœ¬éƒØ'),
(125327, 100566, 'en', 'name', 'Lorestan University of Medical Sciences'),
(125328, 100566, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ لرستان'),
(125329, 100567, 'en', 'name', 'Wittenberg University'),
(125330, 100568, 'en', 'name', 'Surgical Research and Global Education Lab (SURGE Lab)'),
(125331, 100569, 'es', 'name', 'Instituto Tecnológico de Villahermosa'),
(125332, 100569, 'en', 'name', 'Villahermosa Institute of Technology'),
(125333, 100570, 'no_lang_code', 'name', 'Manufacturing Technology Centre (United Kingdom)'),
(125334, 100571, 'en', 'name', 'Lancaster University'),
(125335, 100571, 'cy', 'name', 'Prifysgol Caerhirfryn'),
(125336, 100572, 'en', 'name', 'University of Computer Studies Yangon'),
(125337, 100572, 'my', 'name', 'į€›į€”į€ŗį€€į€Æį€”į€ŗį€€į€½į€”į€ŗį€•į€»į€°į€į€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(125338, 100573, 'nl', 'name', 'Nederlands Kanker Instituut'),
(125339, 100573, 'en', 'name', 'The Netherlands Cancer Institute'),
(125340, 100574, 'en', 'name', 'Brandenburg University of Applied Sciences'),
(125341, 100574, 'de', 'name', 'Technische Hochschule Brandenburg'),
(125342, 100575, 'en', 'name', 'Karl Landsteiner University Hospital St. Pƶlten'),
(125343, 100575, 'de', 'name', 'UniversitƤtsklinikum St. Pƶlten'),
(125344, 100576, 'en', 'name', 'Building Research Institute'),
(125345, 100576, 'pl', 'name', 'Instytut Techniki Budowlanej'),
(125346, 100577, 'en', 'name', 'Al-Bayan University'),
(125347, 100577, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁŠŲ§Ł†'),
(125348, 100578, 'es', 'name', 'Hospital Universitario San Ignacio'),
(125349, 100579, 'fr', 'name', 'UniversitƩ Mustapha Stambouli de Mascara'),
(125350, 100580, 'en', 'name', 'Balsillie School of International Affairs'),
(125351, 100581, 'en', 'name', 'British Trust for Ornithology'),
(125352, 100582, 'en', 'name', 'Samara National Research University'),
(125353, 100582, 'ru', 'name', 'Дамарский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика Š”. П. ŠšŠ¾Ń€Š¾Š»Ń‘Š²Š°'),
(125354, 100583, 'en', 'name', 'MSD (Belgium)'),
(125355, 100584, 'en', 'name', 'Federal University Oye Ekiti'),
(125356, 100585, 'de', 'name', 'PƤdagogische Hochschule Luzern'),
(125357, 100585, 'en', 'name', 'University of Teacher Education Lucerne'),
(125358, 100586, 'fr', 'name', 'Centre Hospitalier Universitaire de Reims'),
(125359, 100587, 'en', 'name', 'Methodist University of Piracicaba'),
(125360, 100587, 'pt', 'name', 'Universidade Metodista de Piracicaba'),
(125361, 100588, 'en', 'name', 'University of Bechar'),
(125362, 100588, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŲ“Ų§Ų±'),
(125363, 100589, 'en', 'name', 'Saint Peter''s University'),
(125364, 100589, 'es', 'name', 'Universidad de San Pedro'),
(125365, 100590, 'en', 'name', 'Kharkiv Institute of Physics and Technology'),
(125366, 100590, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ фізико-технічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(125367, 100590, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(125368, 100591, 'es', 'name', 'Fundación La Salle de Ciencias Naturales'),
(125369, 100592, 'sq', 'name', 'Universiteti i Tiranƫs'),
(125370, 100592, 'en', 'name', 'University of Tirana'),
(125371, 100592, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ των Τιράνων'),
(125372, 100593, 'en', 'name', 'National Autonomous High Andean University of Tarma'),
(125373, 100593, 'es', 'name', 'Universidad Nacional Autónoma Altoandina de Tarma'),
(125374, 100594, 'en', 'name', 'Popular University of Cesar'),
(125375, 100594, 'es', 'name', 'Universidad Popular del Cesar'),
(125376, 100595, 'en', 'name', 'Tashkent Chemical-Technological Institute'),
(125377, 100595, 'uz', 'name', 'Toshkent Kimyo-Texnologiya Instituti'),
(125378, 100595, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ химико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(125379, 100596, 'de', 'name', 'Zentralbibliothek Zürich'),
(125380, 100596, 'en', 'name', 'Zurich Central Library'),
(125381, 100597, 'en', 'name', 'Qatar Foundation'),
(125382, 100597, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© قطر'),
(125383, 100598, 'de', 'name', 'Nordakademie'),
(125384, 100599, 'de', 'name', 'Wuppertal Institut für Klima, Umwelt, Energie'),
(125385, 100599, 'en', 'name', 'Wuppertal Institute for Climate, Environment and Energy'),
(125386, 100600, 'fr', 'name', 'L’UniversitĆ© Nationale Technique Ā«Institut Polytechnique de KharkovĀ»'),
(125387, 100600, 'pl', 'name', 'Narodowy Techniczny Uniwersytet Politechnika Charkowska'),
(125388, 100600, 'en', 'name', 'National Technical University "Kharkiv Polytechnic Institute"'),
(125389, 100600, 'tr', 'name', 'Ulusal Teknik Üniversitesi "Kharkov Politeknik Enstitüsü"'),
(125390, 100600, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ політехнічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ā»'),
(125391, 100600, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(125392, 100601, 'en', 'name', 'Chung Shan Medical University Hospital'),
(125393, 100602, 'en', 'name', 'Industrial University of Tyumen'),
(125394, 100602, 'ru', 'name', 'Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(125395, 100603, 'id', 'name', 'IAIN Kudus'),
(125396, 100604, 'no_lang_code', 'name', 'SIMAD University'),
(125397, 100605, 'en', 'name', 'Toplica Academy of Applied Studies'),
(125398, 100605, 'sr', 'name', 'Топличка акаГемија ŃŃ‚Ń€ŃƒŠŗŠ¾Š²Š½ŠøŃ… ŃŃ‚ŃƒŠ“ŠøŃ˜Š°'),
(125399, 100606, 'en', 'name', 'Indian Institute of Science Education and Research, Bhopal'),
(125400, 100606, 'ne', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤­ą„‹ą¤Ŗą¤¾ą¤²'),
(125401, 100607, 'sv', 'name', 'Region VƤrmland Kommunalfƶrbund'),
(125402, 100608, 'no_lang_code', 'name', 'Yanka Kupala State University of Grodno'),
(125403, 100608, 'be', 'name', 'ГроГзенскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń Янкі ŠšŃƒŠæŠ°Š»Ń‹'),
(125404, 100608, 'ru', 'name', 'ГроГненский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Янки ŠšŃƒŠæŠ°Š»Ń‹'),
(125405, 100609, 'en', 'name', 'University of Hyderabad'),
(125406, 100609, 'hi', 'name', 'ą¤¹ą„ˆą¤¦ą¤°ą¤¾ą¤¬ą¤¾ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(125407, 100609, 'bn', 'name', 'ą¦¹ą¦¾ą¦Æą¦¼ą¦¦ą§ą¦°ą¦¾ą¦¬ą¦¾ą¦¦ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(125408, 100609, 'te', 'name', 'హైదరాబాదు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(125409, 100610, 'en', 'name', 'Wofford College'),
(125410, 100611, 'es', 'name', 'Universidad Nacional Agraria de la Selva'),
(125411, 100612, 'en', 'name', 'South-West University "Neofit Rilski"'),
(125412, 100612, 'bg', 'name', 'ЮгозапаГен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŠµŠ¾Ń„ŠøŃ‚ Рилски'),
(125413, 100613, 'en', 'name', 'Taraba State University'),
(125414, 100614, 'es', 'name', 'Fundación Universitaria Sanitas'),
(125415, 100615, 'it', 'name', 'Azienda Socio Sanitaria Territoriale Santi Paolo e Carlo'),
(125416, 100615, 'en', 'name', 'Regional Health Care and Social Agency Saint Paul and Carlo'),
(125417, 100616, 'en', 'name', 'Autonomous University of Tlaxcala'),
(125418, 100616, 'es', 'name', 'Universidad Autónoma de Tlaxcala'),
(125419, 100617, 'en', 'name', 'State Research Institute Centre for Innovative Medicine'),
(125420, 100617, 'lt', 'name', 'Valstybinis Mokslinių Tyrimų Institutas Inovatyvios Medicinos Centras'),
(125421, 100618, 'it', 'name', 'Istituto Nazionale Genetica Molecolare'),
(125422, 100619, 'en', 'name', 'Ravenshaw University'),
(125423, 100619, 'or', 'name', 'ą¬°ą­‡ą¬­ą­‡ą¬Øą­ą¬øą¬¾ ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(125424, 100620, 'pt', 'name', 'Instituto Superior de Ciências da Educação da Huíla'),
(125425, 100621, 'es', 'name', 'Universidad Argentina de la Empresa'),
(125426, 100621, 'fr', 'name', 'UniversitƩ argentine de la empresa'),
(125427, 100622, 'es', 'name', 'Universidad de Las Tunas'),
(125428, 100623, 'hr', 'name', 'SveučiliŔte u Dubrovniku'),
(125429, 100623, 'en', 'name', 'University of Dubrovnik'),
(125430, 100624, 'en', 'name', 'Indian Institute of Astrophysics'),
(125431, 100624, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤¾ą¤°ą¤¾ą¤­ą„Œą¤¤ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(125432, 100624, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µą®¾ą®©ą®æą®Æą®±ąÆą®Ŗą®æą®Æą®²ąÆ ą®®ąÆˆą®Æą®®ąÆ'),
(125433, 100625, 'en', 'name', 'Edo State University Uzairue'),
(125434, 100626, 'en', 'name', 'Hasanuddin University'),
(125435, 100626, 'id', 'name', 'Universitas Hasanuddin'),
(125436, 100627, 'es', 'name', 'Universidad Católica de Manizales'),
(125437, 100628, 'en', 'name', 'Royal Society for the Protection of Birds'),
(125438, 100629, 'no_lang_code', 'name', 'Banco Bilbao Vizcaya Argentaria (Spain)'),
(125439, 100630, 'en', 'name', 'JosƩ Benito Vives de AndrƩis Marine and Coastal Research Institute'),
(125440, 100631, 'no', 'name', 'Nasjonalt Kunnskapssenter om Vold og Traumatisk Stress'),
(125441, 100631, 'en', 'name', 'Norwegian Centre for Violence and Traumatic Stress Studies'),
(125442, 100632, 'en', 'name', 'Rajiv Gandhi National University of Law'),
(125443, 100632, 'pa', 'name', 'ąØ°ąØ¾ąØœą©€ąØµ ਗਾਂਧੀ ਨੈਸ਼ਨਲ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ਆਫ਼ ਲਾ'),
(125444, 100633, 'en', 'name', 'Kyrgyz-Türkish Manas Üniversity'),
(125445, 100633, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·-Түрк «Манас» ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(125446, 100633, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾-Š¢ŃƒŃ€ŠµŃ†ŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ «Манас»'),
(125447, 100634, 'en', 'name', 'Jaipuria Institute of Management'),
(125448, 100635, 'sw', 'name', 'Chuo Kikuu cha Dodoma'),
(125449, 100635, 'en', 'name', 'The University of Dodoma'),
(125450, 100636, 'en', 'name', 'National Institute of Technology Raipur'),
(125451, 100636, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(125452, 100637, 'de', 'name', 'Bayerisches Landesamt für Gesundheit und Lebensmittelsicherheit'),
(125453, 100638, 'fr', 'name', 'Centre National de Recherche Agronomique'),
(125454, 100639, 'en', 'name', 'Ministry of Science Technology and Higher Education'),
(125455, 100639, 'pt', 'name', 'Ministério da Ciência Tecnologia e Ensino Superior'),
(125456, 100640, 'fr', 'name', 'Université de Thiès'),
(125457, 100641, 'en', 'name', 'Electronic Engineering Polytechnic Institute of Surabaya'),
(125458, 100641, 'id', 'name', 'Politeknik Elektronika Negeri Surabaya'),
(125459, 100642, 'en', 'name', 'National Superconducting Cyclotron Laboratory'),
(125460, 100643, 'en', 'name', 'Plant Breeding and Acclimatization Institute - National Research Institute'),
(125461, 100644, 'en', 'name', 'African Institute for Mathematical Sciences'),
(125462, 100645, 'no_lang_code', 'name', 'BEST - Bioenergy and Sustainable Technologies (Austria)'),
(125463, 100646, 'no_lang_code', 'name', 'Navamindradhiraj University'),
(125464, 100646, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø§ąø”ąø“ąø™ąø—ąø£ąø²ąø˜ąø“ąø£ąø²ąøŠ'),
(125465, 100647, 'id', 'name', 'Universitas Galuh'),
(125466, 100648, 'fr', 'name', 'UniversitƩ IBN Khaldoun Tiaret'),
(125467, 100648, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ابن Ų®Ł„ŲÆŁˆŁ† تيارت'),
(125468, 100649, 'en', 'name', 'NOAA RESTORE Science Program'),
(125469, 100650, 'es', 'name', 'Universidad Nacional de Ciencias Forestales'),
(125470, 100651, 'tr', 'name', 'Girne Üniversitesi'),
(125471, 100651, 'en', 'name', 'University of Kyrenia'),
(125472, 100652, 'en', 'name', 'Tampa General Hospital'),
(125473, 100653, 'en', 'name', 'Ministry of Defence'),
(125474, 100653, 'pt', 'name', 'MinistƩrio da Defesa'),
(125475, 100654, 'en', 'name', 'Mount Saint Vincent University'),
(125476, 100655, 'en', 'name', 'Institute of Natural Fibres and Medicinal Plants'),
(125477, 100656, 'en', 'name', 'University of Mary'),
(125478, 100657, 'es', 'name', 'Sociedad EspaƱola de Nefrologƭa'),
(125479, 100658, 'en', 'name', 'Ibero American University'),
(125480, 100658, 'es', 'name', 'Universidad Iberoamericana'),
(125481, 100659, 'es', 'name', 'Universidad Tecnológica Empresarial de Guayaquil'),
(125482, 100660, 'no_lang_code', 'name', 'CeNTI (Portugal)'),
(125483, 100661, 'en', 'name', 'Autonomous University of Chiriqui'),
(125484, 100661, 'es', 'name', 'Universidad Autónoma de Chiriquí'),
(125485, 100662, 'pl', 'name', 'Instytut Nafty i Gazu – Państwowy Instytutu Badawczy'),
(125486, 100662, 'en', 'name', 'Oil and Gas Institute - National Research Institute'),
(125487, 100663, 'en', 'name', 'College of Wooster'),
(125488, 100664, 'en', 'name', 'Laurentian University'),
(125489, 100664, 'fr', 'name', 'UniversitƩ Laurentienne'),
(125490, 100665, 'en', 'name', 'National Oceanography Centre'),
(125491, 100666, 'en', 'name', 'University of Staffordshire'),
(125492, 100667, 'vi', 'name', 'TrĘ°į»ng ĐH Nguyį»…n Tįŗ„t ThĆ nh'),
(125493, 100668, 'en', 'name', 'Goce Delcev University'),
(125494, 100668, 'mk', 'name', 'Универзитет Гоце Делчев Штип'),
(125495, 100669, 'en', 'name', 'University Mohamed El Bachir El Ibrahimi of Bordj Bou Arreridj'),
(125496, 100669, 'fr', 'name', 'UniversitƩ Mohamed El Bachir El Ibrahimi de Bordj Bou ArrƩridj'),
(125497, 100669, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ Ų§Ł„ŲØŲ“ŁŠŲ± Ų§Ł„Ų§ŲØŲ±Ų§Ł‡ŁŠŁ…ŁŠŲŒ ŲØŲ±Ų¬ بوعريريج'),
(125498, 100670, 'id', 'name', 'Universitas Katolik Widya Mandira'),
(125499, 100671, 'en', 'name', 'Office of Information and Resource Management'),
(125500, 100672, 'en', 'name', 'St. Joseph’s College of Engineering'),
(125501, 100673, 'lv', 'name', 'Paula Stradiņa Klīniskā universitātes slimnīca'),
(125502, 100673, 'en', 'name', 'Pauls StradiņŔ Clinical University Hospital'),
(125503, 100674, 'en', 'name', 'Texas Children''s Hospital'),
(125504, 100675, 'en', 'name', 'Coburg University of Applied Sciences'),
(125505, 100675, 'de', 'name', 'Hochschule Coburg'),
(125506, 100676, 'en', 'name', 'African Institute for Mathematical Sciences'),
(125507, 100677, 'en', 'name', 'Office of Legislative & Public Affairs'),
(125508, 100678, 'en', 'name', 'Marwadi Education Foundation'),
(125509, 100679, 'en', 'name', 'Technical University of Applied Sciences Lübeck'),
(125510, 100679, 'de', 'name', 'Technische Hochschule Lübeck'),
(125511, 100680, 'en', 'name', 'Technical University of Kenya'),
(125512, 100681, 'en', 'name', 'Dr. Yashwant Singh Parmar University of Horticulture and Forestry'),
(125513, 100681, 'hi', 'name', 'ą¤”ą„‰. यशवंत ą¤øą¤æą¤‚ą¤˜ परमार ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤¹ą„‰ą¤°ą„ą¤Ÿą¤æą¤•ą¤²ą„ą¤šą¤° ą¤ą¤‚ą¤” ą¤«ą„‹ą¤°ą„‡ą¤øą„ą¤Ÿą„ą¤°ą„€'),
(125514, 100682, 'en', 'name', 'Indian Institute of Management Ranchi'),
(125515, 100682, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤‚ą¤šą„€'),
(125516, 100683, 'en', 'name', 'Technical University of Malaysia Malacca'),
(125517, 100683, 'ms', 'name', 'Universiti Teknikal Malaysia Melaka'),
(125518, 100684, 'en', 'name', 'University Colleges Leuven-Limburg'),
(125519, 100685, 'en', 'name', 'Burapha University'),
(125520, 100685, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøšąø¹ąø£ąøžąø²'),
(125521, 100686, 'en', 'name', 'Molde University College'),
(125522, 100687, 'en', 'name', 'Merck Canada Inc. (Canada)'),
(125523, 100688, 'en', 'name', 'QIMR Berghofer Medical Research Institute'),
(125524, 100689, 'en', 'name', 'Irish Research eLibrary'),
(125525, 100690, 'id', 'name', 'Universitas Jember'),
(125526, 100691, 'en', 'name', 'Indian Institute of Management Calcutta'),
(125527, 100691, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤²ą¤•ą¤¤ą„ą¤¤ą¤¾'),
(125528, 100691, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦•ą§ą¦Æą¦¾ą¦²ą¦•ą¦¾ą¦Ÿą¦¾'),
(125529, 100691, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ ą®•ąÆŠą®²ąÆą®•ą®¤ąÆą®¤ą®¾'),
(125530, 100692, 'en', 'name', 'Ohio Wesleyan University'),
(125531, 100692, 'es', 'name', 'Universidad Wesleyana de Ohio'),
(125532, 100692, 'fr', 'name', 'UniversitƩ wesleyenne de l''ohio'),
(125533, 100693, 'en', 'name', 'Å iauliai State Higher Education Institution'),
(125534, 100693, 'lt', 'name', 'Šiaulių valstybinė kolegija'),
(125535, 100694, 'en', 'name', 'National University'),
(125536, 100694, 'tl', 'name', 'Pamantasang Pambansa'),
(125537, 100695, 'en', 'name', 'Forman Christian College'),
(125538, 100695, 'ur', 'name', 'ŁŲ§Ų±Ł…ŪŒŁ† Ś©Ų±Ų³Ś†ŪŒŁ† کالج'),
(125539, 100696, 'en', 'name', 'California University of Science and Medicine'),
(125540, 100697, 'en', 'name', 'Rockefeller University'),
(125541, 100697, 'es', 'name', 'Universidad Rockefeller'),
(125542, 100698, 'en', 'name', 'South Ural State University'),
(125543, 100698, 'ru', 'name', 'Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(125544, 100699, 'en', 'name', 'Lupane State University'),
(125545, 100700, 'no_lang_code', 'name', 'Compuscript (Ireland)'),
(125546, 100701, 'pl', 'name', 'Akademia Humanistyczno-Ekonomiczna w Łodzi'),
(125547, 100701, 'en', 'name', 'University of Humanities and Economics in Lodz'),
(125548, 100702, 'en', 'name', 'Institute of Rural Development Planning'),
(125549, 100703, 'en', 'name', 'Florida Fish and Wildlife Conservation Commission'),
(125550, 100704, 'id', 'name', 'Universitas Dharmawangsa'),
(125551, 100705, 'en', 'name', 'Montefiore Medical Center'),
(125552, 100706, 'id', 'name', 'Institut Agama Islam Negeri Curup'),
(125553, 100707, 'es', 'name', 'Instituto de Educación Técnica Profesional de Roldanillo'),
(125554, 100707, 'en', 'name', 'Professional and Technical Education Institute from Roldanillo'),
(125555, 100708, 'en', 'name', 'Informatics Institute of Technology'),
(125556, 100709, 'en', 'name', 'Nationwide Children''s Hospital'),
(125557, 100710, 'en', 'name', 'University of Economics Varna'),
(125558, 100710, 'bg', 'name', 'Š˜ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Варна'),
(125559, 100711, 'en', 'name', 'Bowen University'),
(125560, 100712, 'es', 'name', 'Universidad Hipócrates'),
(125561, 100713, 'en', 'name', 'Medi-Caps University'),
(125562, 100713, 'hi', 'name', 'ą¤®ą„‡ą¤”ą„€-ą¤•ą„ˆą¤Ŗą„ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(125563, 100714, 'es', 'name', 'Universidad Tecnológica de Los Andes'),
(125564, 100715, 'en', 'name', 'University of Medical Sciences, Ondo'),
(125565, 100716, 'es', 'name', 'Universidad de Louisville'),
(125566, 100716, 'en', 'name', 'University of Louisville'),
(125567, 100716, 'fr', 'name', 'UniversitƩ de louisville'),
(125568, 100717, 'es', 'name', 'Universidad Nacional Arturo Jauretche'),
(125569, 100718, 'pt', 'name', 'CEJAM - Centro de Estudos e Pesquisas Dr João Amorim'),
(125570, 100719, 'nl', 'name', 'Maasstad Ziekenhuis'),
(125571, 100720, 'es', 'name', 'Universidad de Los Andes, Chile'),
(125572, 100720, 'en', 'name', 'University of the Andes, Chile'),
(125573, 100721, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Văn Lang'),
(125574, 100721, 'en', 'name', 'Van Lang University'),
(125575, 100722, 'en', 'name', 'MVJ College of Engineering'),
(125576, 100723, 'en', 'name', 'King Khaled Eye Specialist Hospital'),
(125577, 100724, 'nl', 'name', 'AZ Sint-Jan'),
(125578, 100725, 'en', 'name', 'Albany College of Pharmacy and Health Sciences'),
(125579, 100726, 'en', 'name', 'Ernst Abbe University of Applied Sciences Jena'),
(125580, 100726, 'de', 'name', 'Ernst-Abbe-Hochschule Jena'),
(125581, 100727, 'sw', 'name', 'Chuo Kikuu cha Dar es Salaam'),
(125582, 100727, 'en', 'name', 'University of Dar es Salaam'),
(125583, 100727, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± السلام'),
(125584, 100728, 'es', 'name', 'Universidad Internacional SEK'),
(125585, 100729, 'en', 'name', 'Integrative Graduate Education and Research Traineeship'),
(125586, 100730, 'de', 'name', 'Schweizerische Vogelwarte'),
(125587, 100730, 'en', 'name', 'Swiss Ornithological Institute'),
(125588, 100731, 'en', 'name', 'International Institute of Earthquake Engineering and Seismology'),
(125589, 100732, 'en', 'name', 'School of Planning and Architecture Delhi'),
(125590, 100732, 'hi', 'name', 'ą¤Æą„‹ą¤œą¤Øą¤¾ तऄा ą¤µą¤¾ą¤øą„ą¤¤ą„ą¤•ą¤²ą¤¾ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(125591, 100733, 'en', 'name', 'University of Koblenz'),
(125592, 100733, 'de', 'name', 'UniversitƤt Koblenz'),
(125593, 100734, 'de', 'name', 'Bundesinstitut für Berufsbildung'),
(125594, 100734, 'en', 'name', 'Federal Institute for Vocational Education and Training'),
(125595, 100735, 'en', 'name', 'Regis University'),
(125596, 100735, 'es', 'name', 'Universidad RƩgis'),
(125597, 100736, 'en', 'name', 'Pakistan Institute of Engineering and Applied Sciences'),
(125598, 100737, 'id', 'name', 'Universitas Islam Negeri Imam Bonjol Padang'),
(125599, 100738, 'en', 'name', 'University of Siegen'),
(125600, 100738, 'de', 'name', 'UniversitƤt Siegen'),
(125601, 100739, 'en', 'name', 'Murang''a University of Technology'),
(125602, 100740, 'en', 'name', 'Pepperdine University'),
(125603, 100741, 'de', 'name', 'WestsƤchsische Hochschule Zwickau'),
(125604, 100742, 'no_lang_code', 'name', 'Haramaya University'),
(125605, 100742, 'am', 'name', 'įˆįˆØįˆ›į‹« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(125606, 100743, 'en', 'name', 'Ukrainian State University of Railway Transport'),
(125607, 100743, 'uk', 'name', 'ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ залізничного Ń‚Ń€Š°Š½ŃŠæŠ¾Ń€Ń‚Ńƒ'),
(125608, 100744, 'en', 'name', 'Esan University'),
(125609, 100744, 'es', 'name', 'Universidad ESAN'),
(125610, 100745, 'id', 'name', 'Bank Indonesia'),
(125611, 100746, 'en', 'name', 'Molloy College'),
(125612, 100747, 'no_lang_code', 'name', 'Ambry Genetics (United States)'),
(125613, 100748, 'no', 'name', 'Lovisenberg Diakonale HĆøgskole'),
(125614, 100749, 'en', 'name', 'Dev Sanskriti Vishwavidyalaya'),
(125615, 100749, 'hi', 'name', 'ą¤¦ą„‡ą¤µ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(125616, 100750, 'en', 'name', 'University of Asia Pacific'),
(125617, 100750, 'bn', 'name', 'ą¦¦ą§ą¦Æ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ ą¦Ŗą§ą¦Æą¦¾ą¦øą¦æą¦«ą¦æą¦•'),
(125618, 100751, 'en', 'name', 'Bonn-Rhein-Sieg University of Applied Sciences'),
(125619, 100751, 'de', 'name', 'Hochschule Bonn-Rhein-Sieg'),
(125620, 100752, 'no_lang_code', 'name', 'Uka Tarsadia University'),
(125621, 100753, 'en', 'name', 'Veer Surendra Sai University of Technology'),
(125622, 100754, 'fr', 'name', 'Centre Hospitalier de Luxembourg'),
(125623, 100755, 'en', 'name', 'Riga Technical University'),
(125624, 100755, 'lt', 'name', 'Rygos technikos universitetas'),
(125625, 100755, 'lv', 'name', 'Rīgas Tehniskā universitāte'),
(125626, 100755, 'ru', 'name', 'Рижский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(125627, 100756, 'en', 'name', 'University Medical Centre Mannheim'),
(125628, 100756, 'de', 'name', 'UniversitƤtsklinikum Mannheim'),
(125629, 100757, 'en', 'name', 'Romanian Research and Development Institute for Gas Turbines'),
(125630, 100758, 'en', 'name', 'Harare Institute of Technology'),
(125631, 100759, 'en', 'name', 'Indian Institute of Science Education and Research Kolkata'),
(125632, 100759, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾'),
(125633, 100759, 'bn', 'name', 'ভারতীয় ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¶ą¦æą¦•ą§ą¦·ą¦¾ ও গবেষণা ą¦øą¦‚ą¦øą§ą¦„ą¦¾, কলকাতা'),
(125634, 100760, 'en', 'name', 'La Sierra University'),
(125635, 100760, 'es', 'name', 'Universidad de La Sierra'),
(125636, 100761, 'uz', 'name', 'Toshkent Xalqaro Vestminster Universiteti'),
(125637, 100761, 'en', 'name', 'Westminster International University in Tashkent'),
(125638, 100761, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Вестминстерский Университет в Š¢Š°ŃˆŠŗŠµŠ½Ń‚е');
INSERT INTO `ror_settings` VALUES
(125639, 100762, 'en', 'name', 'Hokkaido Research Organization'),
(125640, 100762, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŒ—ęµ·é“ē«‹ē·åˆē ”ē©¶ę©Ÿę§‹'),
(125641, 100763, 'es', 'name', 'Hospital Son Llatzer'),
(125642, 100764, 'en', 'name', 'Montclair State University'),
(125643, 100764, 'es', 'name', 'Universidad Estatal de Montclair'),
(125644, 100764, 'fr', 'name', 'UniversitĆ© d''Ɖtat de montclair'),
(125645, 100765, 'en', 'name', 'Trunojoyo University'),
(125646, 100765, 'id', 'name', 'Universitas Trunojoyo Madura'),
(125647, 100766, 'en', 'name', 'Barry University'),
(125648, 100767, 'de', 'name', 'Kerckhoff Klinik'),
(125649, 100768, 'en', 'name', 'Tashkent State University of Law'),
(125650, 100768, 'uz', 'name', 'Toshkent davlat yuridik universiteti'),
(125651, 100769, 'de', 'name', 'Hochschule Offenburg'),
(125652, 100769, 'en', 'name', 'Offenburg University of Applied Sciences'),
(125653, 100770, 'es', 'name', 'Instituto Nacional de Salud'),
(125654, 100771, 'en', 'name', 'Institute of Cardiology'),
(125655, 100772, 'en', 'name', 'University of Zambia'),
(125656, 100773, 'en', 'name', 'Royal Shrewsbury Hospital'),
(125657, 100774, 'es', 'name', 'Corporación Universitaria Remington'),
(125658, 100775, 'es', 'name', 'Fundación Universitaria Compensar'),
(125659, 100776, 'en', 'name', 'Neuroscience Research Australia'),
(125660, 100777, 'en', 'name', 'Tripura University'),
(125661, 100777, 'hi', 'name', 'ą¤¤ą„ą¤°ą¤æą¤Ŗą„ą¤°ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(125662, 100777, 'bn', 'name', 'ą¦¤ą§ą¦°ą¦æą¦Ŗą§ą¦°ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(125663, 100777, 'ta', 'name', 'திரிபுரா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(125664, 100778, 'hr', 'name', 'Nacionalna i SveučiliŔna Knjižnica u Zagrebu'),
(125665, 100778, 'en', 'name', 'National and University Library in Zagreb'),
(125666, 100779, 'en', 'name', 'Edgewood College'),
(125667, 100780, 'en', 'name', 'Agricultural Biotechnology Research Institute of Iran'),
(125668, 100781, 'id', 'name', 'Universitas Gadjah Mada'),
(125669, 100782, 'en', 'name', 'Kenya Medical Training College'),
(125670, 100783, 'en', 'name', 'British University in Egypt'),
(125671, 100783, 'fr', 'name', 'UniversitĆ© britannique en Ɖgypte'),
(125672, 100783, 'ar', 'name', 'الجامعة Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ© فى Ł…ŲµŲ±'),
(125673, 100784, 'en', 'name', 'Golestan University of Medical Sciences'),
(125674, 100785, 'en', 'name', 'China Aerodynamics Research and Development Center'),
(125675, 100785, 'zh', 'name', 'äø­å›½ē©ŗę°”åŠØåŠ›ē ”ē©¶äøŽå‘å±•äø­åæƒ'),
(125676, 100786, 'en', 'name', 'Sriwijaya University'),
(125677, 100786, 'id', 'name', 'Universitas Sriwijaya'),
(125678, 100787, 'en', 'name', 'Kazan Federal University'),
(125679, 100787, 'ru', 'name', 'Казанский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(125680, 100788, 'no_lang_code', 'name', 'Pioneer Hi-Bred'),
(125681, 100789, 'en', 'name', 'Philipps University of Marburg'),
(125682, 100789, 'de', 'name', 'Philipps-UniversitƤt Marburg'),
(125683, 100790, 'id', 'name', 'Kementerian Kelautan dan Perikanan'),
(125684, 100790, 'en', 'name', 'Ministry of Marine Affairs and Fisheries'),
(125685, 100791, 'en', 'name', 'Ministry of Environment Protection and Agriculture of Georgia'),
(125686, 100791, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ’įƒįƒ įƒ”įƒ›įƒįƒ” įƒ“įƒįƒŖįƒ•įƒ˜įƒ”įƒ įƒ“įƒ įƒ”įƒįƒ¤įƒšįƒ˜įƒ” įƒ›įƒ”įƒ£įƒ įƒœįƒ”įƒįƒ‘įƒ˜įƒ” įƒ”įƒįƒ›įƒ˜įƒœįƒ˜įƒ”įƒ¢įƒ įƒ'),
(125687, 100792, 'en', 'name', 'Metropolitan Museum of Art'),
(125688, 100792, 'es', 'name', 'Museo Metropolitano de Arte'),
(125689, 100793, 'en', 'name', 'EBS University of Business and Law'),
(125690, 100793, 'de', 'name', 'EBS Universität für Wirtschaft und Recht'),
(125691, 100794, 'en', 'name', 'Hindustan Institute of Technology and Science'),
(125692, 100794, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ąÆą®šąÆą®¤ąÆą®¤ą®¾ą®©ąÆ ą®Ŗā€Œą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(125693, 100795, 'en', 'name', 'Marian University - Indiana'),
(125694, 100796, 'fi', 'name', 'Stavangerin yliopisto'),
(125695, 100796, 'en', 'name', 'University of Stavanger'),
(125696, 100797, 'en', 'name', 'University Hospital Olomouc'),
(125697, 100798, 'en', 'name', 'Galgotias University'),
(125698, 100799, 'id', 'name', 'Universitas PGRI Adi Buana Surabaya'),
(125699, 100800, 'es', 'name', 'Centro de BiologĆ­a Molecular Severo Ochoa'),
(125700, 100801, 'en', 'name', 'Woxsen School of Business'),
(125701, 100802, 'nl', 'name', 'Noordwest Ziekenhuisgroep'),
(125702, 100803, 'en', 'name', 'Fayoum University'),
(125703, 100803, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŁŠŁˆŁ…'),
(125704, 100804, 'id', 'name', 'Universitas Krisnadwipayana'),
(125705, 100805, 'en', 'name', 'Moshi Co-operative University'),
(125706, 100806, 'pl', 'name', 'Akademia Wychowania Fizycznego im. Eugeniusza Piaseckiego w Poznaniu'),
(125707, 100807, 'en', 'name', 'Barnard College'),
(125708, 100808, 'en', 'name', 'Public Health Agency of Sweden'),
(125709, 100809, 'en', 'name', 'National University of Science and Technology'),
(125710, 100810, 'en', 'name', 'University Hospital Münster'),
(125711, 100810, 'de', 'name', 'Universitätsklinikum Münster'),
(125712, 100811, 'sv', 'name', 'Naturhistoriska riksmuseet'),
(125713, 100811, 'en', 'name', 'Swedish Museum of Natural History'),
(125714, 100811, 'fi', 'name', 'Valtion luonnonhistoriallinen museo'),
(125715, 100812, 'en', 'name', 'Teagasc - The Irish Agriculture and Food Development Authority'),
(125716, 100813, 'en', 'name', 'Lithuanian Energy Institute'),
(125717, 100814, 'pt', 'name', 'Universidade de Passo Fundo'),
(125718, 100814, 'en', 'name', 'University of Passo Fundo'),
(125719, 100815, 'pl', 'name', 'Akademia Sztuk Pieknych im. Eugeniusza Gepperta we Wroclawiu'),
(125720, 100815, 'en', 'name', 'Eugeniusz Geppert Academy of Art and Design in Wroclaw'),
(125721, 100816, 'id', 'name', 'Universitas Pendidikan Nasional'),
(125722, 100816, 'en', 'name', 'University of National Education'),
(125723, 100817, 'en', 'name', 'National University of Juliaca'),
(125724, 100817, 'es', 'name', 'Universidad Nacional de Juliaca'),
(125725, 100818, 'uz', 'name', 'O''zbekiston Davlat Jahon tillari universiteti'),
(125726, 100818, 'en', 'name', 'Uzbek State University of World Languages'),
(125727, 100819, 'es', 'name', 'Escuela de Comunicación Mónica Herrera'),
(125728, 100820, 'en', 'name', 'Uganda Martyrs University'),
(125729, 100821, 'en', 'name', 'African Institute for Mathematical Sciences'),
(125730, 100822, 'pt', 'name', 'Universidade do Contestado'),
(125731, 100823, 'en', 'name', 'Concordia University Wisconsin'),
(125732, 100824, 'de', 'name', 'HTWG Hochschule Konstanz - Technik, Wirtschaft und Gestaltung'),
(125733, 100824, 'en', 'name', 'HTWG Konstanz - University of Applied Sciences'),
(125734, 100825, 'fr', 'name', 'Centre Universitaire Nour Bachir El Bayadh'),
(125735, 100825, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł†ŁˆŲ± Ų§Ł„ŲØŲ“ŁŠŲ± Ų§Ł„ŲØŁŠŲ¶'),
(125736, 100826, 'en', 'name', 'Bigelow Laboratory for Ocean Sciences'),
(125737, 100827, 'de', 'name', 'Deutsches Biomasseforschungszentrum'),
(125738, 100828, 'en', 'name', 'Bahrami Hospital'),
(125739, 100828, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ŲØŁ‡Ų±Ų§Ł…ŪŒ'),
(125740, 100829, 'en', 'name', 'Tay Bac University'),
(125741, 100829, 'vi', 'name', 'ĐẔi hį»c TĆ¢y BįŗÆc'),
(125742, 100830, 'en', 'name', 'National College of Business Administration and Economics'),
(125743, 100830, 'ur', 'name', 'Ł†ŪŒŲ“Ł†Ł„ کالج آف بزنس Ų§ŪŒŚˆŁ…Ł†Ų³Ł¹Ų±ŪŒŲ“Ł† Ų§ŪŒŁ†Śˆ اکنامکس'),
(125744, 100831, 'en', 'name', 'Koya University'),
(125745, 100831, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁƒŁˆŁŠŁ‡'),
(125746, 100832, 'fr', 'name', 'CollĆØge Militaire Royal du Canada'),
(125747, 100832, 'en', 'name', 'Royal Military College of Canada'),
(125748, 100833, 'en', 'name', 'University of Zenica'),
(125749, 100833, 'bs', 'name', 'Univerzitet u Zenici'),
(125750, 100833, 'sr', 'name', 'Универзитет у Зеници'),
(125751, 100834, 'en', 'name', 'Fitchburg State University'),
(125752, 100834, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Fitchburg'),
(125753, 100835, 'en', 'name', 'Benue State University'),
(125754, 100836, 'en', 'name', 'Thomas More Kempen'),
(125755, 100837, 'de', 'name', 'Fachhochschule des bfi Wien'),
(125756, 100837, 'en', 'name', 'University of Applied Sciences BFI Vienna'),
(125757, 100838, 'en', 'name', 'University Hospital Centre Zagreb'),
(125758, 100838, 'sr', 'name', 'ŠšŠ‘Š¦ Загреб'),
(125759, 100839, 'en', 'name', 'Institute of Environmental Protection'),
(125760, 100840, 'en', 'name', 'Dulaty University'),
(125761, 100840, 'kk', 'name', 'М.Š„.Š”ŃƒŠ»Š°Ń‚Šø атынГағы Тараз өңірлік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(125762, 100841, 'en', 'name', 'MIT Academy of Engineering'),
(125763, 100842, 'en', 'name', 'Huanta National Autonomous University'),
(125764, 100842, 'es', 'name', 'Universidad Nacional Autónoma de Huanta'),
(125765, 100843, 'en', 'name', 'National University of Lesotho'),
(125766, 100844, 'en', 'name', 'Tashkent Pharmaceutical Institute'),
(125767, 100844, 'uz', 'name', 'Toshkent farmatsevtika instituti'),
(125768, 100845, 'no_lang_code', 'name', 'WakeMed'),
(125769, 100846, 'en', 'name', 'Koszalin University of Technology'),
(125770, 100846, 'pl', 'name', 'Politechnika Koszalińska'),
(125771, 100847, 'id', 'name', 'Universitas Islam Negeri Antasari Banjarmasin'),
(125772, 100848, 'no_lang_code', 'name', 'Kibabii University'),
(125773, 100849, 'en', 'name', 'Al Akhawayn University'),
(125774, 100849, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ų®ŁˆŁŠŁ†'),
(125775, 100850, 'en', 'name', 'Academy of Christian Humanism University'),
(125776, 100850, 'es', 'name', 'Universidad Academia de Humanismo Cristiano'),
(125777, 100851, 'en', 'name', 'Karlsruhe University of Education'),
(125778, 100851, 'de', 'name', 'PƤdagogische Hochschule Karlsruhe'),
(125779, 100852, 'en', 'name', 'Twente Hospital Group'),
(125780, 100852, 'nl', 'name', 'Ziekenhuis Groep Twente'),
(125781, 100853, 'en', 'name', 'Islamic University of Gaza'),
(125782, 100853, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ŲŗŲ²Ų©'),
(125783, 100854, 'en', 'name', 'AISSMS Institute of Information Technology'),
(125784, 100855, 'en', 'name', 'Wheaton College - Illinois'),
(125785, 100856, 'en', 'name', 'Institute for Scientific and Technological Research'),
(125786, 100856, 'es', 'name', 'Instituto Potosino de Investigación Científica y Tecnológica'),
(125787, 100857, 'en', 'name', 'University of Indianapolis'),
(125788, 100858, 'fr', 'name', 'EMNO UniversitƩ'),
(125789, 100858, 'en', 'name', 'NOSM University'),
(125790, 100859, 'pl', 'name', 'Akademia Wychowania Fizycznego w Krakowie'),
(125791, 100859, 'en', 'name', 'University School of Physical Education in Kraków'),
(125792, 100860, 'hr', 'name', 'Institut za oceanografiju i ribarstvo'),
(125793, 100860, 'en', 'name', 'Institute of Oceanography and Fisheries'),
(125794, 100861, 'pt', 'name', 'Universidade do Tocantins'),
(125795, 100862, 'en', 'name', 'Imam Reza International University'),
(125796, 100862, 'fa', 'name', 'دانؓگاه ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ Ų§Ł…Ų§Ł… Ų±Ų¶Ų§'),
(125797, 100863, 'en', 'name', 'Topfaith University'),
(125798, 100864, 'en', 'name', 'Caro and Cuervo Institute'),
(125799, 100864, 'es', 'name', 'Instituto Caro y Cuervo'),
(125800, 100865, 'en', 'name', 'Mahidol Wittayanusorn School'),
(125801, 100865, 'th', 'name', 'ą¹‚ąø£ąø‡ą¹€ąø£ąøµąø¢ąø™ąø”ąø«ąø“ąø”ąø„ąø§ąø“ąø—ąø¢ąø²ąø™ąøøąøŖąø£ąø“ą¹Œ'),
(125802, 100866, 'en', 'name', 'Endicott College'),
(125803, 100867, 'en', 'name', 'National Center for Tumor Diseases'),
(125804, 100867, 'de', 'name', 'Nationale Centrum für Tumorerkrankungen'),
(125805, 100868, 'en', 'name', 'Association of American Medical Colleges'),
(125806, 100869, 'en', 'name', 'Galileo University'),
(125807, 100869, 'es', 'name', 'Universidad Galileo'),
(125808, 100870, 'en', 'name', 'Jadara University'),
(125809, 100870, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŲÆŲ§Ų±Ų§'),
(125810, 100871, 'tr', 'name', 'Ozanteks Tekstil San. Ve TİC. A.Ş.'),
(125811, 100872, 'es', 'name', 'Universidad Estatal Amazónica'),
(125812, 100873, 'en', 'name', 'Kherson National Technical University'),
(125813, 100873, 'ru', 'name', 'Єерсонский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(125814, 100873, 'uk', 'name', 'Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(125815, 100874, 'en', 'name', 'Olabisi Onabanjo University'),
(125816, 100874, 'yo', 'name', 'YunifƔsƭtƬ Olabisi Onabanjo'),
(125817, 100875, 'en', 'name', 'Bandung University of Technology'),
(125818, 100875, 'id', 'name', 'Universitas Teknologi Bandung'),
(125819, 100876, 'en', 'name', 'Kocaeli Health and Technology University'),
(125820, 100876, 'tr', 'name', 'Kocaeli Sağlık ve Teknoloji Üniversitesi'),
(125821, 100877, 'no_lang_code', 'name', 'ArchLab'),
(125822, 100878, 'ro', 'name', 'Universitatea Din Petrosani'),
(125823, 100878, 'en', 'name', 'University of Petroșani'),
(125824, 100879, 'es', 'name', 'Universidad Católica de Cuenca'),
(125825, 100880, 'en', 'name', 'Catholic University Los Angeles of Chimbote'),
(125826, 100880, 'es', 'name', 'Universidad Católica Los Ángeles de Chimbote'),
(125827, 100881, 'en', 'name', 'Chittagong University of Engineering & Technology'),
(125828, 100881, 'bn', 'name', 'ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(125829, 100882, 'es', 'name', 'Universidad Tecnológica del Perú'),
(125830, 100883, 'es', 'name', 'Universidad de Las AmƩricas'),
(125831, 100884, 'en', 'name', 'Danish Institute for International Studies'),
(125832, 100885, 'cs', 'name', 'Fakultnƭ Nemocnice Hradec KrƔlovƩ'),
(125833, 100885, 'en', 'name', 'University Hospital Hradec KrƔlovƩ'),
(125834, 100886, 'no_lang_code', 'name', 'Geosyntec Consultants (United States)'),
(125835, 100887, 'en', 'name', 'Canadian Blood Services'),
(125836, 100888, 'no_lang_code', 'name', 'Kisii University'),
(125837, 100889, 'id', 'name', 'Politeknik Negeri Samarinda'),
(125838, 100890, 'es', 'name', 'Universidad Popular de la Chontalpa'),
(125839, 100891, 'en', 'name', 'National Heart Institute'),
(125840, 100892, 'en', 'name', 'Baze University'),
(125841, 100893, 'en', 'name', 'Directorate for STEM Education (EDU)'),
(125842, 100894, 'fr', 'name', 'Ɖcole SupĆ©rieure des Metiers Artistiques'),
(125843, 100895, 'en', 'name', 'SAIT Polytechnic'),
(125844, 100896, 'de', 'name', 'Institut für Höhere Studien - Institute for Advanced Studies (IHS)'),
(125845, 100897, 'en', 'name', 'International Center for Chemical and Biological Sciences'),
(125846, 100897, 'ur', 'name', 'Ś©ŪŒŁ…ŪŒŲ§Ų¦ŪŒ اور حیاتیاتی سائنس کے لئے ŲØŪŒŁ† Ų§Ł„Ų§Ł‚ŁˆŲ§Ł…ŪŒ مرکز'),
(125847, 100898, 'en', 'name', 'Vijayanagara Sri Krishnadevaraya University'),
(125848, 100898, 'kn', 'name', 'ą²µą²æą²œą²Æą²Øą²—ą²° ą²¶ą³ą²°ą³€ ą²•ą³ƒą²·ą³ą²£ą²¦ą³‡ą²µą²°ą²¾ą²Æ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(125849, 100899, 'en', 'name', 'Duksung Women''s University'),
(125850, 100899, 'ko', 'name', 'ė•ģ„±ģ—¬ģžėŒ€ķ•™źµ'),
(125851, 100900, 'es', 'name', 'Universidad Autónoma del Estado de Morelos'),
(125852, 100901, 'en', 'name', 'Kalamazoo College'),
(125853, 100902, 'es', 'name', 'Instituto Tecnológico MetalmecÔnico, Mueble, Madera, Embalaje y Afines'),
(125854, 100903, 'en', 'name', 'Quaid-e-Awam University of Engineering, Science and Technology'),
(125855, 100903, 'sd', 'name', 'Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś± Ū½ Ł½ŁŠŚŖŁ†ŁŠŚ€ŁŠŲ§Ų³ جي جامعہ قائد Ų¹ŁˆŲ§Ł…ā€Ž'),
(125856, 100903, 'ur', 'name', 'قائد Ų¹ŁˆŲ§Ł… يورسٽي آف Ų§Ł†Ų¬Ł†ŁŠŲ±Ł†ŚÆ Ų§ŁŠŁ†ŚŠ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ'),
(125857, 100904, 'en', 'name', 'University of Science and Technology Chittagong'),
(125858, 100904, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦øą¦¾ą¦‡ą¦Øą§ą¦ø ą¦ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦®'),
(125859, 100905, 'en', 'name', 'Machakos University'),
(125860, 100906, 'en', 'name', 'Financial Research Institute of the Ministry of Finance of the Russian Federation'),
(125861, 100906, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ финансовый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(125862, 100907, 'en', 'name', 'Korea National Sport University'),
(125863, 100907, 'ko', 'name', 'ķ•œźµ­ģ²“ģœ”ėŒ€ķ•™źµ'),
(125864, 100908, 'en', 'name', 'Santa Catarina State University'),
(125865, 100908, 'pt', 'name', 'Universidade do Estado de Santa Catarina'),
(125866, 100908, 'fr', 'name', 'UniversitĆ© de l''Ɖtat de santa catarina'),
(125867, 100909, 'nl', 'name', 'Hogeschool PXL'),
(125868, 100910, 'en', 'name', 'University of Biskra'),
(125869, 100910, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ خيضر بسكرة'),
(125870, 100911, 'tr', 'name', 'Iğdır Üniversitesi'),
(125871, 100912, 'id', 'name', 'Universitas Mahasaraswati Denpasar'),
(125872, 100913, 'id', 'name', 'Universitas Muslim Nusantara Al Washliyah'),
(125873, 100914, 'ro', 'name', 'Academia de Studii Economice a Moldovei'),
(125874, 100914, 'en', 'name', 'Academy of Economic Studies of Moldova'),
(125875, 100915, 'en', 'name', 'National Institute of Technology Sikkim'),
(125876, 100915, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„‹ą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤øą¤æą¤•ą„ą¤•ą¤æą¤®'),
(125877, 100916, 'es', 'name', 'Universidad TƩcnica Nacional'),
(125878, 100917, 'es', 'name', 'Agencia de Salud PĆŗblica de Barcelona'),
(125879, 100918, 'en', 'name', 'Nottingham Trent University'),
(125880, 100919, 'en', 'name', 'Samarkand State University named after Sharof Rashidov'),
(125881, 100919, 'uz', 'name', 'Sharof Rashidov nomidagi Samarqand davlat universiteti'),
(125882, 100919, 'ru', 'name', 'ДамарканГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шарофа РашиГова'),
(125883, 100920, 'id', 'name', 'Universitas Islam Negeri Sultan Syarif Kasim Riau'),
(125884, 100921, 'es', 'name', 'Universidad de Ciencias y Humanidades'),
(125885, 100922, 'en', 'name', 'Tomsk Polytechnic University'),
(125886, 100922, 'ru', 'name', 'Томский политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(125887, 100923, 'de', 'name', 'Krankenhaus Barmherzige Brüder'),
(125888, 100924, 'hr', 'name', 'SveučiliŔte Sjever'),
(125889, 100924, 'en', 'name', 'University North'),
(125890, 100925, 'en', 'name', 'University Elmergib'),
(125891, 100925, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ų±Ų§ŲŗŁŠŲØ'),
(125892, 100926, 'en', 'name', 'National Museum in Kraków'),
(125893, 100927, 'tl', 'name', 'Pamantasan ng Antique'),
(125894, 100927, 'en', 'name', 'University of Antique'),
(125895, 100928, 'en', 'name', 'Institute of Nuclear Physics'),
(125896, 100928, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ физики'),
(125897, 100928, 'kk', 'name', 'ЯГролық физика ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(125898, 100929, 'en', 'name', 'Hochschule für Technik und Wirtschaft Dresden – University of Applied Sciences'),
(125899, 100930, 'es', 'name', 'Universidad de TarapacĆ”'),
(125900, 100930, 'en', 'name', 'University of TarapacĆ”'),
(125901, 100931, 'en', 'name', 'Central Mining Institute'),
(125902, 100932, 'en', 'name', 'CenGen (Pty) Ltd'),
(125903, 100933, 'en', 'name', 'HELP University'),
(125904, 100933, 'ms', 'name', 'Universiti HELP'),
(125905, 100934, 'pt', 'name', 'Universidade Vale do Rio Doce'),
(125906, 100935, 'en', 'name', 'LĆŗrio University'),
(125907, 100935, 'pt', 'name', 'Universidade LĆŗrio'),
(125908, 100936, 'en', 'name', 'Fore School of Management'),
(125909, 100937, 'en', 'name', 'Earth University'),
(125910, 100937, 'es', 'name', 'Universidad EARTH'),
(125911, 100938, 'pt', 'name', 'Instituto Nacional de TelecomunicaƧƵes'),
(125912, 100938, 'en', 'name', 'National Institute of Telecommunications'),
(125913, 100939, 'en', 'name', 'Catholic University of Croatia'),
(125914, 100939, 'hr', 'name', 'Hrvatsko Katoličko SveučiliŔte'),
(125915, 100940, 'en', 'name', 'European School of Management and Technology'),
(125916, 100941, 'en', 'name', 'University of Montenegro'),
(125917, 100941, 'sr', 'name', 'Универзитет Црне Горе'),
(125918, 100942, 'pt', 'name', 'Centro UniversitƔrio de Brusque'),
(125919, 100943, 'en', 'name', 'Malawi University of Science and Technology'),
(125920, 100944, 'en', 'name', 'Statistics Norway'),
(125921, 100945, 'pt', 'name', 'Universidade de Santa Cruz do Sul'),
(125922, 100945, 'en', 'name', 'University of Santa Cruz do Sul'),
(125923, 100946, 'es', 'name', 'Universidad Católica del Cibao'),
(125924, 100947, 'en', 'name', 'D. Serikbayev East Kazakhstan State Technical University'),
(125925, 100947, 'ru', 'name', 'Восточно-ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. Дерикбаева'),
(125926, 100947, 'kk', 'name', 'Š”Ó™ŃƒŠ»ŠµŃ‚ Дерікбаев атынГағы Шығыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ мемлекеттік техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(125927, 100948, 'de', 'name', 'Institut für Solarenergieforschung'),
(125928, 100948, 'en', 'name', 'Institute for Solar Energy Research Hamelin'),
(125929, 100949, 'de', 'name', 'Schweizerische Nationalbank'),
(125930, 100949, 'en', 'name', 'Swiss National Bank'),
(125931, 100950, 'hi', 'name', 'Rajkiya Mahila Mahavidyalaya, Budaun'),
(125932, 100951, 'en', 'name', 'North Atlantic Treaty Organization'),
(125933, 100951, 'fr', 'name', 'Organisation du traitƩ de l''Atlantique Nord'),
(125934, 100952, 'en', 'name', 'Pancasila University'),
(125935, 100952, 'id', 'name', 'Universitas Pancasila'),
(125936, 100953, 'id', 'name', 'Politeknik Kesehatan Kemenkes Semarang'),
(125937, 100954, 'en', 'name', 'Kwantlen Polytechnic University'),
(125938, 100955, 'en', 'name', 'George Fox University'),
(125939, 100956, 'en', 'name', 'Children''s of Alabama'),
(125940, 100957, 'en', 'name', 'Kazakhstan-Russian Medical University'),
(125941, 100957, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾-Российский ŠœŠµŠ“ицинский Университет'),
(125942, 100957, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½-Ресей ŠœŠµŠ“ициналық Университеті'),
(125943, 100958, 'en', 'name', 'Mindanao State University – General Santos'),
(125944, 100959, 'en', 'name', 'Government College Women University Faisalabad'),
(125945, 100959, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ کالج ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(125946, 100960, 'en', 'name', 'Federal Research Institute for Health Organization and Informatics'),
(125947, 100961, 'en', 'name', 'Centre for Electrochemical Technologies'),
(125948, 100962, 'en', 'name', 'Chouaib Doukkali University'),
(125949, 100962, 'fr', 'name', 'UniversitƩ Chouaib Doukkali'),
(125950, 100962, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ؓعيب Ų§Ł„ŲÆŁƒŲ§Ł„ŁŠ'),
(125951, 100963, 'en', 'name', 'National Cancer Institute'),
(125952, 100964, 'fr', 'name', 'UniversitƩ de ain TƩmouchent'),
(125953, 100965, 'es', 'name', 'Universidad de ValparaĆ­so'),
(125954, 100965, 'en', 'name', 'Valparaiso University'),
(125955, 100966, 'en', 'name', 'AmirAlam Hospital'),
(125956, 100966, 'fa', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł†ŪŒ Ų§Ł…ŪŒŲ± اعلم'),
(125957, 100967, 'en', 'name', 'Sri Karan Narendra Agriculture University, Jobner'),
(125958, 100968, 'no_lang_code', 'name', 'Shimizu (Japan)'),
(125959, 100968, 'ja', 'name', 'ęø…ę°“å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(125960, 100969, 'en', 'name', 'Tashkent Institute of Irrigation and Agricultural Mechanization Engineers'),
(125961, 100969, 'uz', 'name', 'Uzbe ikromjon alijonov Mexanizatsiyalash Muhandislari Instituti'),
(125962, 100970, 'en', 'name', 'State University of Trade and Economics'),
(125963, 100970, 'uk', 'name', 'Державний Ń‚Š¾Ń€Š³Š¾Š²ŠµŠ»ŃŒŠ½Š¾-економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(125964, 100971, 'en', 'name', 'North-Western State Medical University named after I.I. Mechnikov'),
(125965, 100971, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени И. И. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(125966, 100972, 'no_lang_code', 'name', 'MSD (Belgium)'),
(125967, 100973, 'en', 'name', 'Palm Beach Atlantic University'),
(125968, 100974, 'fr', 'name', 'HÓpital universitaire pédiatrique des deux Bâle'),
(125969, 100974, 'en', 'name', 'University Children’s Hospital Basel'),
(125970, 100974, 'de', 'name', 'UniversitƤts-Kinderspital beider Basel'),
(125971, 100975, 'en', 'name', 'Mathematica Policy Research'),
(125972, 100976, 'en', 'name', 'Hanover College'),
(125973, 100977, 'no_lang_code', 'name', 'Ajinomoto (Japan)'),
(125974, 100977, 'ja', 'name', 'å‘³ć®ē“ ę Ŗå¼ä¼šē¤¾'),
(125975, 100978, 'en', 'name', 'McDaniel College'),
(125976, 100979, 'pt', 'name', 'Universidade para o Desenvolvimento do Alto Vale do ItajaĆ­'),
(125977, 100980, 'en', 'name', 'Architectural Association School of Architecture'),
(125978, 100981, 'en', 'name', 'University of Kashan'),
(125979, 100982, 'en', 'name', 'Leeds Beckett University'),
(125980, 100983, 'no_lang_code', 'name', 'Research Center Pharmaceutical Engineering (Austria)'),
(125981, 100984, 'id', 'name', 'Universitas Islam As-Syafi''iyah'),
(125982, 100985, 'es', 'name', 'Caja Costarricense de Seguro Social'),
(125983, 100985, 'en', 'name', 'Costa Rican Department of Social Security'),
(125984, 100986, 'en', 'name', 'General Directorate of Mineral Research and Exploration'),
(125985, 100986, 'tr', 'name', 'Maden Tetkik ve Arama Genel Müdürlüğü'),
(125986, 100987, 'en', 'name', 'NatCen Social Research'),
(125987, 100988, 'en', 'name', 'New York Botanical Garden'),
(125988, 100989, 'en', 'name', 'Faculty of Medicine of Sfax'),
(125989, 100990, 'no_lang_code', 'name', 'Daystar University'),
(125990, 100991, 'en', 'name', 'Arka Jain University'),
(125991, 100991, 'hi', 'name', 'आरका ą¤œą„ˆą¤Ø ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(125992, 100992, 'en', 'name', 'Texas Wesleyan University'),
(125993, 100993, 'de', 'name', 'Europa-UniversitƤt Viadrina Frankfurt'),
(125994, 100993, 'en', 'name', 'European University Viadrina'),
(125995, 100994, 'ms', 'name', 'Universiti Teknologi Malaysia'),
(125996, 100994, 'en', 'name', 'University of Technology Malaysia'),
(125997, 100994, 'zh', 'name', 'é©¬ę„č„æäŗšå·„č‰ŗå¤§å­¦'),
(125998, 100995, 'en', 'name', 'Migal - Galilee Technology Center'),
(125999, 100996, 'no_lang_code', 'name', 'MatĆ­s (Iceland)'),
(126000, 100997, 'en', 'name', 'Lake Forest College'),
(126001, 100998, 'en', 'name', 'Catholic University of Eastern Africa'),
(126002, 100999, 'es', 'name', 'Universidad Católica de Salta'),
(126003, 101000, 'id', 'name', 'Universitas Katolik Widya Mandala Surabaya'),
(126004, 101000, 'en', 'name', 'Widya Mandala Catholic University'),
(126005, 101001, 'de', 'name', 'PƤdagogische Hochschule Weingarten'),
(126006, 101001, 'en', 'name', 'University of Education Weingarten'),
(126007, 101002, 'en', 'name', 'University of Central Missouri'),
(126008, 101003, 'no_lang_code', 'name', 'Maseno University'),
(126009, 101004, 'en', 'name', 'Interactive Research and Development'),
(126010, 101005, 'en', 'name', 'Pontifical University of John Paul II in Kraków'),
(126011, 101005, 'pl', 'name', 'Uniwersytet Papieski Jana Pawła II w Krakowie'),
(126012, 101006, 'en', 'name', 'GNA University'),
(126013, 101007, 'en', 'name', 'Kanagawa University'),
(126014, 101007, 'ja', 'name', 'ē„žå„ˆå·å¤§å­¦'),
(126015, 101008, 'en', 'name', 'Yas Hospital'),
(126016, 101008, 'fa', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł†ŪŒ یاس'),
(126017, 101009, 'en', 'name', 'Lahore University of Management Sciences'),
(126018, 101009, 'ur', 'name', 'Ł„Ų§ŪŁˆŲ± ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŁ†Ų¬Ł…Ł†Ł¹ سائنسز'),
(126019, 101010, 'es', 'name', 'Universidad Tecnológica Emiliano Zapata del Estado de Morelos'),
(126020, 101011, 'fr', 'name', 'Centre Hospitalier de Valenciennes'),
(126021, 101012, 'es', 'name', 'Servicio CƔntabro de Salud'),
(126022, 101013, 'id', 'name', 'Universitas Islam Negeri Walisongo Semarang'),
(126023, 101013, 'en', 'name', 'Walisongo State Islamic University'),
(126024, 101014, 'fr', 'name', 'Centrale Marseille'),
(126025, 101015, 'es', 'name', 'El Colegio de Tlaxcala, A. C.'),
(126026, 101016, 'en', 'name', 'Community Coordinated Modeling Center'),
(126027, 101017, 'es', 'name', 'Escuela Superior de Administración Pública'),
(126028, 101018, 'en', 'name', 'Research Ireland'),
(126029, 101018, 'ga', 'name', 'Taighde Ɖireann'),
(126030, 101018, 'no_lang_code', 'name', 'Taighde Ɖireann - Research Ireland'),
(126031, 101019, 'es', 'name', 'Universidad Inca Garcilaso de la Vega'),
(126032, 101020, 'en', 'name', 'Osh State University'),
(126033, 101020, 'tr', 'name', 'Oş Devlet Üniversitesi'),
(126034, 101020, 'ky', 'name', 'ŠžŃˆ мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(126035, 101020, 'ru', 'name', 'ŠžŃˆŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(126036, 101021, 'en', 'name', 'Indian Institute of Management Lucknow'),
(126037, 101022, 'en', 'name', 'Central University of Rajasthan'),
(126038, 101022, 'hi', 'name', 'ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(126039, 101023, 'en', 'name', 'Partners In Health'),
(126040, 101024, 'en', 'name', 'National University of Rafaela'),
(126041, 101024, 'es', 'name', 'Universidad Nacional de Rafaela'),
(126042, 101025, 'en', 'name', 'Babeș-Bolyai University'),
(126043, 101025, 'de', 'name', 'Babeș-Bolyai UniversitƤt'),
(126044, 101025, 'hu', 'name', 'Babeș–Bolyai TudomĆ”nyegyetem'),
(126045, 101025, 'ro', 'name', 'Universitatea Babeș-Bolyai'),
(126046, 101026, 'no_lang_code', 'name', 'RENA Technologies (Germany)'),
(126047, 101027, 'en', 'name', 'Konya Food and Agriculture University'),
(126048, 101027, 'tr', 'name', 'Konya Gıda ve Tarım Üniversitesi'),
(126049, 101028, 'en', 'name', 'Jambi University'),
(126050, 101028, 'id', 'name', 'Universitas Jambi'),
(126051, 101029, 'id', 'name', 'Universitas Maritim Raja Ali Haji'),
(126052, 101030, 'en', 'name', 'King Edward Memorial Hospital and Seth G.S. Medical College'),
(126053, 101030, 'mr', 'name', 'राजा ą¤ą¤”ą„ą¤µą¤°ą„ą¤” ą¤øą„ą¤®ą¤¾ą¤°ą¤• ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ व ą¤øą„‡ą¤  ą¤—ą„‹ą¤µą¤°ą„ą¤§ą¤Øą¤¦ą¤¾ą¤ø ą¤øą„ą¤‚ą¤¦ą¤°ą¤¦ą¤¾ą¤ø ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(126054, 101030, 'ta', 'name', 'ą®•ą®æą®™ąÆ ą®Žą®ŸąÆą®µą®°ąÆą®ŸąÆ நினைவு ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(126055, 101031, 'id', 'name', 'Universitas Nahdlatul Ulama Indonesia'),
(126056, 101032, 'id', 'name', 'Universitas ''Aisyiyah Yogyakarta'),
(126057, 101033, 'es', 'name', 'Universidad de PanamĆ”'),
(126058, 101034, 'id', 'name', 'Universitas Prima Indonesia'),
(126059, 101035, 'en', 'name', 'Metropolitan Polytechnic University of Puebla'),
(126060, 101035, 'es', 'name', 'Universidad PolitƩcnica Metropolitana de Puebla'),
(126061, 101036, 'no_lang_code', 'name', 'Natera (United States)'),
(126062, 101037, 'en', 'name', 'International School for Advanced Studies'),
(126063, 101037, 'it', 'name', 'Scuola Internazionale Superiore di Studi Avanzati'),
(126064, 101037, 'fr', 'name', 'Ɖcole internationale supĆ©rieure d''Ć©tudes avancĆ©es'),
(126065, 101038, 'nl', 'name', 'Reade'),
(126066, 101039, 'tl', 'name', 'Pamantasang Xavier – Ateneo de Cagayan'),
(126067, 101039, 'en', 'name', 'Xavier University'),
(126068, 101040, 'no_lang_code', 'name', 'M.J.P. Rohilkhand University'),
(126069, 101040, 'hi', 'name', 'ą¤°ą„ą¤¹ą„‡ą¤²ą¤–ą¤£ą„ą¤” ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(126070, 101040, 'ta', 'name', 'ą®®ą®•ą®¾ą®¤ąÆą®®ą®¾ ą®œąÆ‹ą®¤ą®æą®Ŗą®¾ பூலே ą®°ąÆ‹ą®•ą®æą®²ąÆą®•ą®ØąÆą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(126071, 101041, 'en', 'name', 'University Psychiatric Clinics Basel'),
(126072, 101041, 'de', 'name', 'UniversitƤre Psychiatrische Kliniken Basel'),
(126073, 101042, 'en', 'name', 'Rayat Bahra University'),
(126074, 101043, 'en', 'name', 'MSD K.K. (Japan)'),
(126075, 101044, 'en', 'name', 'Kano State University of Technology'),
(126076, 101045, 'lt', 'name', 'Lietuvos Sveikatos Mokslų Universitetas'),
(126077, 101045, 'en', 'name', 'Lithuanian University of Health Sciences'),
(126078, 101045, 'pl', 'name', 'Uniwersytet Medyczny w Kownie'),
(126079, 101045, 'ru', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Литовского ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š° Š“Š»Ń наук Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(126080, 101046, 'es', 'name', 'Universidad Regional Autónoma de Los Andes'),
(126081, 101047, 'pt', 'name', 'Instituto Federal do EspĆ­rito Santo'),
(126082, 101048, 'en', 'name', 'T. G. Masaryk Water Research Institute'),
(126083, 101049, 'en', 'name', 'Center for Experimental and Clinical Infection Research'),
(126084, 101049, 'de', 'name', 'Zentrum für Experimentelle und Klinische Infektionsforschung'),
(126085, 101050, 'en', 'name', 'Irish Research Council'),
(126086, 101051, 'en', 'name', 'Saint Aloysius Gonzaga National University'),
(126087, 101051, 'es', 'name', 'Universidad Nacional San Luis Gonzaga'),
(126088, 101052, 'id', 'name', 'Universitas 17 Agustus 1945 Semarang'),
(126089, 101053, 'en', 'name', 'Soka University of America'),
(126090, 101054, 'en', 'name', 'NATO Science and Technology Organization'),
(126091, 101054, 'fr', 'name', 'Organisation pour la Recherche et la Technologie OTAN in French'),
(126092, 101055, 'id', 'name', 'Politeknik Negeri Ujung Pandang'),
(126093, 101056, 'en', 'name', 'Darshan University'),
(126094, 101057, 'en', 'name', 'University of Mohaghegh Ardabili'),
(126095, 101057, 'fa', 'name', 'دانؓگاه محقق Ų§Ų±ŲÆŲØŪŒŁ„ŪŒ'),
(126096, 101058, 'en', 'name', 'Al-Hadba University'),
(126097, 101058, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الحدباؔ'),
(126098, 101059, 'en', 'name', 'St. Marianna University School of Medicine'),
(126099, 101059, 'ja', 'name', 'č–ćƒžćƒŖć‚¢ćƒ³ćƒŠåŒ»ē§‘å¤§å­¦'),
(126100, 101060, 'en', 'name', 'University of Georgia'),
(126101, 101061, 'en', 'name', 'Artois University'),
(126102, 101061, 'fr', 'name', 'UniversitƩ d''Artois'),
(126103, 101062, 'en', 'name', 'Muni University'),
(126104, 101063, 'en', 'name', 'Rothman Orthopaedics'),
(126105, 101064, 'en', 'name', 'Armenian State Pedagogical University after Khachatur Abovian'),
(126106, 101064, 'hy', 'name', 'Õ€Õ”ÕµÕÆÕ”ÕÆÕ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ“Õ”Õ¶ÕÆÕ”Õ¾Õ”Ö€ÕŖÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(126107, 101065, 'en', 'name', 'Institute of Meteorology and Water Management'),
(126108, 101065, 'pl', 'name', 'Instytut Meteorologii i Gospodarki Wodnej – Państwowy Instytut Badawczy'),
(126109, 101066, 'en', 'name', 'Institute of Play'),
(126110, 101067, 'en', 'name', 'College of Europe'),
(126111, 101067, 'fr', 'name', 'CollĆØge d''Europe'),
(126112, 101068, 'en', 'name', 'Sri Sri University'),
(126113, 101069, 'en', 'name', 'Westfield State University'),
(126114, 101070, 'no_lang_code', 'name', 'Aptara (United States)'),
(126115, 101071, 'en', 'name', 'Foundation University of Health Sciences'),
(126116, 101071, 'es', 'name', 'Fundación Universitaria de Ciencias de la Salud'),
(126117, 101072, 'en', 'name', 'Petra University'),
(126118, 101072, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© البتراؔ'),
(126119, 101073, 'en', 'name', 'Cooperation on International Traceability in Analytical Chemistry'),
(126120, 101074, 'fr', 'name', 'Institut mƩditerranƩen pour les transplantations et thƩrapies de palerme'),
(126121, 101074, 'it', 'name', 'Istituto Mediterraneo per i Trapianti e Terapie ad Alta Specializzazione'),
(126122, 101074, 'en', 'name', 'Mediterranean Institute for Transplantation and Advanced Specialized Therapies'),
(126123, 101075, 'en', 'name', 'Directorate for Technology, Innovation and Partnerships'),
(126124, 101076, 'en', 'name', 'Marine Biological Association of the United Kingdom'),
(126125, 101077, 'en', 'name', 'University of New Haven'),
(126126, 101077, 'fr', 'name', 'UniversitƩ de new haven'),
(126127, 101078, 'en', 'name', 'Roointan Arash Hospital'),
(126128, 101078, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¬Ų§Ł…Ų¹ ŲØŲ§Ł†ŁˆŲ§Ł† Ų¢Ų±Ų“'),
(126129, 101079, 'de', 'name', 'Hochschule für Technik und Wirtschaft des Saarlandes'),
(126130, 101079, 'en', 'name', 'htw saar - University of Applied Sciences'),
(126131, 101080, 'en', 'name', 'GIET University'),
(126132, 101080, 'or', 'name', 'ą¬—ą¬¾ą¬Øą­ą¬§ą­€ ą¬Æą¬¾ą¬Øą­ą¬¤ą­ą¬°ą¬æą¬• ଓ ą¬Ŗą­ą¬°ą­Œą¬¦ą­ą­Ÿą­‹ą¬—ą¬æą¬• ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(126133, 101081, 'en', 'name', 'Northeastern State University'),
(126134, 101082, 'en', 'name', 'University of Mauritius'),
(126135, 101082, 'fr', 'name', 'UniversitƩ de Maurice'),
(126136, 101083, 'es', 'name', 'Hospital Universitario Puerta de Hierro Majadahonda'),
(126137, 101084, 'es', 'name', 'Instituto de Investigaciones Agropecuarias'),
(126138, 101085, 'id', 'name', 'Sejarah berdirinya Universitas Islam Negeri'),
(126139, 101085, 'en', 'name', 'Sunan Gunung Djati State Islamic University Bandung'),
(126140, 101086, 'en', 'name', 'Center for Open Science'),
(126141, 101087, 'en', 'name', 'National Veterinary Research Institute'),
(126142, 101088, 'de', 'name', 'Gesellschaft für Anlagen und Reaktorsicherheit'),
(126143, 101088, 'en', 'name', 'Global Research for Safety'),
(126144, 101089, 'en', 'name', 'IESEG School of Management'),
(126145, 101089, 'fr', 'name', 'Institut d''Economie Scientifique Et de Gestion'),
(126146, 101090, 'en', 'name', 'University of Engineering and Technology Peshawar'),
(126147, 101090, 'ur', 'name', 'Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ پؓاور ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ.'),
(126148, 101091, 'pt', 'name', 'Fundação Dom Cabral'),
(126149, 101092, 'en', 'name', 'Parahyangan Catholic University'),
(126150, 101092, 'id', 'name', 'Universitas Katolik Parahyangan'),
(126151, 101093, 'es', 'name', 'Universidad Nacional Intercultural de la AmazonĆ­a'),
(126152, 101094, 'en', 'name', 'Oberlin College'),
(126153, 101095, 'en', 'name', 'Nordic Institute for Studies in Innovation, Research and Education'),
(126154, 101096, 'en', 'name', 'Lindsey Wilson College'),
(126155, 101097, 'en', 'name', 'University of Arts and Industrial Design Linz'),
(126156, 101097, 'de', 'name', 'Universität für künstlerische und industrielle Gestaltung Linz'),
(126157, 101098, 'en', 'name', 'Balseiro Institute'),
(126158, 101098, 'es', 'name', 'Instituto Balseiro'),
(126159, 101099, 'en', 'name', 'Bradley University'),
(126160, 101099, 'es', 'name', 'Universidad Bradley'),
(126161, 101100, 'ro', 'name', 'Universitatea din Pitești'),
(126162, 101100, 'en', 'name', 'University of Pitesti'),
(126163, 101101, 'en', 'name', 'Hyogo Medical University'),
(126164, 101101, 'ja', 'name', 'å…µåŗ«åŒ»ē§‘å¤§å­¦'),
(126165, 101102, 'en', 'name', 'Moscow Power Engineering Institute'),
(126166, 101102, 'ru', 'name', 'Московский ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(126167, 101103, 'no_lang_code', 'name', 'Exponent (United States)'),
(126168, 101104, 'en', 'name', 'Namibia University of Science and Technology'),
(126169, 101104, 'af', 'name', 'Polytechnikum van Namibiƫ'),
(126170, 101105, 'en', 'name', 'Francisco de Vitoria University'),
(126171, 101105, 'es', 'name', 'Universidad Francisco de Vitoria'),
(126172, 101106, 'fr', 'name', 'Centre Universitaire de Mila'),
(126173, 101106, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ-Ł…ŁŠŁ„Ų©'),
(126174, 101107, 'de', 'name', 'Laser Zentrum Hannover'),
(126175, 101108, 'id', 'name', 'Universitas Ibn Khaldun Bogor'),
(126176, 101109, 'en', 'name', 'Motilal Nehru National Institute of Technology'),
(126177, 101109, 'hi', 'name', 'ą¤®ą„‹ą¤¤ą„€ą¤²ą¤¾ą¤² ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø इलाहाबाद'),
(126178, 101110, 'no_lang_code', 'name', 'Uva Wellassa University'),
(126179, 101110, 'ta', 'name', 'ஊவா ą®µąÆ†ą®²ąÆą®²ą®š ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(126180, 101110, 'si', 'name', 'ą¶Œą·€ ą·€ą·™ą¶½ą·Šą¶½ą·ƒą·Šą·ƒ ą·€ą·’ą·ą·Šą·€ ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(126181, 101111, 'en', 'name', 'Matt''s Promise'),
(126182, 101112, 'en', 'name', 'Bindura University of Science Education'),
(126183, 101113, 'en', 'name', 'Swiss Tropical and Public Health Institute'),
(126184, 101114, 'no_lang_code', 'name', 'Mintek'),
(126185, 101115, 'en', 'name', 'Federation University'),
(126186, 101116, 'en', 'name', 'Network for Earthquake Engineering Simulation'),
(126187, 101117, 'en', 'name', 'Institute of Business Management'),
(126188, 101117, 'sd', 'name', 'Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف بزنس Ł…ŁŠŁ†ŁŠŲ¬Ł…ŁŠŁ†Ł½ā€Ž'),
(126189, 101118, 'en', 'name', 'Tomsk State University of Control Systems and Radio-Electronics'),
(126190, 101118, 'ru', 'name', 'Томский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ систем ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(126191, 101119, 'es', 'name', 'Universidad Nacional Santiago AntĆŗnez de Mayolo'),
(126192, 101120, 'en', 'name', 'National Formosa University'),
(126193, 101121, 'en', 'name', 'Aleksandƫr Moisiu University'),
(126194, 101121, 'sq', 'name', 'Universiteti Aleksandƫr Moisiu'),
(126195, 101122, 'en', 'name', 'academyEX'),
(126196, 101123, 'en', 'name', 'Technological University of Huejotzingo'),
(126197, 101123, 'es', 'name', 'Universidad Tecnológica de Huejotzingo'),
(126198, 101124, 'en', 'name', 'Flensburg University of Applied Sciences'),
(126199, 101124, 'de', 'name', 'Hochschule Flensburg'),
(126200, 101125, 'de', 'name', 'Hochschule Pforzheim'),
(126201, 101125, 'en', 'name', 'Pforzheim University of Applied Sciences'),
(126202, 101126, 'en', 'name', 'Kayseri University'),
(126203, 101126, 'tr', 'name', 'Kayseri Üniversitesi'),
(126204, 101127, 'en', 'name', 'Mohanlal Sukhadia University'),
(126205, 101127, 'hi', 'name', 'ą¤®ą„‹ą¤¹ą¤Øą¤²ą¤¾ą¤² ą¤øą„ą¤–ą¤¾ą¤”ą¤¼ą¤æą¤Æą¤¾ ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(126206, 101128, 'no_lang_code', 'name', 'Celltrion (South Korea)'),
(126207, 101129, 'id', 'name', 'Universitas Abdurrab'),
(126208, 101130, 'no_lang_code', 'name', 'Headland Archaeology (UK) Limited (United Kingdom)'),
(126209, 101131, 'en', 'name', 'Bicol University'),
(126210, 101132, 'gl', 'name', 'GAIKER Centro Tecnológico'),
(126211, 101132, 'en', 'name', 'GAIKER Technology Centre'),
(126212, 101133, 'no_lang_code', 'name', 'MSD (Australia)'),
(126213, 101134, 'pt', 'name', 'Universidade da Região da Campanha'),
(126214, 101135, 'en', 'name', 'Drury University'),
(126215, 101136, 'en', 'name', 'National Center For Child Health and Development'),
(126216, 101136, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹ęˆč‚²åŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(126217, 101137, 'en', 'name', 'Cochin University of Science and Technology'),
(126218, 101137, 'ta', 'name', 'ą®•ąÆŠą®šąÆą®šą®æą®©ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(126219, 101137, 'ml', 'name', 'ą“•ąµŠą“šąµą“šą“æąµ» ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµ ą“øą“æą“±ąµą“±ą“æ ą““ą“«ąµ ą“øą“Æąµ»ą“øąµ ą“†ą“Øąµą“±ąµ ą“Ÿąµ†ą“•ąµ ą“Øąµ‹ą“³ą“œą“æ'),
(126220, 101138, 'en', 'name', 'Harding University Main Campus'),
(126221, 101139, 'id', 'name', 'Universitas Suryakancana'),
(126222, 101140, 'en', 'name', 'Municipality of Chios'),
(126223, 101140, 'el', 'name', 'Δήμος Χίου'),
(126224, 101141, 'en', 'name', 'Research Institute of Forests and Rangelands'),
(126225, 101141, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ جنگلها و Ł…Ų±Ų§ŲŖŲ¹ کؓور'),
(126226, 101142, 'no_lang_code', 'name', 'Bogdan Khmelnitsky Melitopol State Pedagogical University'),
(126227, 101142, 'uk', 'name', 'ŠœŠµŠ»Ń–Ń‚Š¾ŠæŠ¾Š»ŃŒŃŃŒŠøŠŗŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(126228, 101143, 'en', 'name', 'National Institute of Research and Development for Optoelectronics'),
(126229, 101144, 'en', 'name', 'Acharya N. G. Ranga Agricultural University'),
(126230, 101145, 'en', 'name', 'Termez Institute of Engineering and Technology'),
(126231, 101146, 'sq', 'name', 'Universiteti i Prishtinƫs'),
(126232, 101146, 'en', 'name', 'University of Prishtina'),
(126233, 101147, 'es', 'name', 'Universidad de Evansville'),
(126234, 101147, 'en', 'name', 'University of Evansville'),
(126235, 101148, 'en', 'name', 'Mahatma Gandhi Dental College & Hospital'),
(126236, 101149, 'no_lang_code', 'name', 'Alvernia University'),
(126237, 101150, 'en', 'name', 'Adventist University of Africa'),
(126238, 101151, 'en', 'name', 'Mount St. Mary''s University'),
(126239, 101152, 'en', 'name', 'Sardar Patel University'),
(126240, 101152, 'hi', 'name', 'सरदार ą¤Ŗą¤Ÿą„‡ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(126241, 101152, 'gu', 'name', 'સરદાર ąŖŖąŖŸą«‡ąŖ² ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(126242, 101153, 'ms', 'name', 'Universiti Brunei Darussalam'),
(126243, 101153, 'en', 'name', 'University of Brunei Darussalam'),
(126244, 101154, 'en', 'name', 'International University of Japan'),
(126245, 101154, 'ja', 'name', '国際大学'),
(126246, 101155, 'id', 'name', 'Politeknik Kesehatan Kementerian Kesehatan Jakarta II'),
(126247, 101156, 'fr', 'name', 'UniversitĆ© d''Ɖtat de virginie-occidentale'),
(126248, 101156, 'en', 'name', 'West Virginia State University'),
(126249, 101157, 'en', 'name', 'Okan University'),
(126250, 101157, 'tr', 'name', 'Okan Üniversitesi'),
(126251, 101158, 'no', 'name', 'Norges miljĆø- og biovitenskapelige universitet'),
(126252, 101158, 'fi', 'name', 'Norjan ympƤristƶtieteen ja biologian yliopisto'),
(126253, 101158, 'en', 'name', 'Norwegian University of Life Sciences'),
(126254, 101159, 'es', 'name', 'Universidad UTE'),
(126255, 101160, 'en', 'name', 'Ibero-American University Puebla'),
(126256, 101160, 'es', 'name', 'Universidad Iberoamericana Puebla'),
(126257, 101161, 'es', 'name', 'Universidad de BogotĆ” Jorge Tadeo Lozano'),
(126258, 101162, 'en', 'name', 'Tai Solarin University of Education'),
(126259, 101163, 'en', 'name', 'Babson College'),
(126260, 101164, 'en', 'name', 'Effat University'),
(126261, 101164, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عفت'),
(126262, 101165, 'en', 'name', 'University of Illinois Hospital & Health Sciences System'),
(126263, 101166, 'en', 'name', 'Ostwestfalen-Lippe University of Applied Sciences and Arts'),
(126264, 101166, 'de', 'name', 'Technische Hochschule Ostwestfalen-Lippe'),
(126265, 101167, 'sq', 'name', 'University of PriŔtina - Kosovska Mitrovica'),
(126266, 101167, 'sr', 'name', 'Универзитет у ŠŸŃ€ŠøŃˆŃ‚ŠøŠ½Šø са привременим ŃŠµŠ“ŠøŃˆŃ‚ŠµŠ¼ у Косовској ŠœŠøŃ‚Ń€Š¾Š²ŠøŃ†Šø'),
(126267, 101168, 'en', 'name', 'University of South Alabama'),
(126268, 101169, 'en', 'name', 'Tashkent State University of Oriental Studies'),
(126269, 101169, 'uz', 'name', 'Toshkent davlat sharqshunoslik universiteti'),
(126270, 101169, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š¾ŃŃ‚Š¾ŠŗŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(126271, 101170, 'en', 'name', 'University of Karachi'),
(126272, 101170, 'ur', 'name', 'جامعہ Ś©Ų±Ų§Ś†ŪŒ'),
(126273, 101171, 'en', 'name', 'University of Kalyani'),
(126274, 101171, 'bn', 'name', 'ą¦•ą¦²ą§ą¦Æą¦¾ą¦£ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(126275, 101172, 'en', 'name', 'Mount Sinai Medical Center'),
(126276, 101173, 'en', 'name', 'Basque Center for Applied Mathematics'),
(126277, 101174, 'en', 'name', 'Bydgoszcz University of Science and Technology'),
(126278, 101174, 'pl', 'name', 'Uniwersytet Technologiczno-Przyrodniczy im. Jana i Jędrzeja Śniadeckich w Bydgoszczy'),
(126279, 101175, 'es', 'name', 'Centro de Investigación y Estudios Superiores en Antropología Social'),
(126280, 101176, 'no_lang_code', 'name', 'Costello Medical Consulting (United Kingdom)'),
(126281, 101177, 'en', 'name', 'State University of Roraima'),
(126282, 101177, 'pt', 'name', 'Universidade Estadual de Roraima'),
(126283, 101178, 'en', 'name', 'Murray State University'),
(126284, 101178, 'fr', 'name', 'UniversitĆ© d''Ɖtat de murray'),
(126285, 101179, 'en', 'name', 'Autonomous University of Peru'),
(126286, 101179, 'es', 'name', 'Universidad Autónoma del Perú'),
(126287, 101180, 'en', 'name', 'Yaba College of Technology'),
(126288, 101181, 'en', 'name', 'National Institute for Mathematical and Biological Synthesis'),
(126289, 101182, 'en', 'name', 'Shri Dharmasthala Manjunatheswara College of Ayurveda and Hospital'),
(126290, 101183, 'en', 'name', 'Council for Geoscience'),
(126291, 101184, 'sv', 'name', 'Handelshƶgskolan i Stockholm'),
(126292, 101184, 'en', 'name', 'Stockholm School of Economics'),
(126293, 101184, 'fi', 'name', 'Tukholman kauppakorkeakoulu'),
(126294, 101185, 'en', 'name', 'Rajagiri College of Social Sciences (Autonomous)'),
(126295, 101186, 'en', 'name', 'Statistical and Applied Mathematical Sciences Institute'),
(126296, 101187, 'en', 'name', 'SKEMA Business School'),
(126297, 101188, 'en', 'name', 'University of Khartoum'),
(126298, 101188, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ų±Ų·ŁˆŁ…'),
(126299, 101189, 'en', 'name', 'University of Okara'),
(126300, 101189, 'ur', 'name', 'جامعہ Ų§ŁˆŚ©Ų§Ś‘Ū'),
(126301, 101190, 'en', 'name', 'Agharkar Research Institute'),
(126302, 101191, 'no_lang_code', 'name', 'Chitkara University'),
(126303, 101191, 'hi', 'name', 'ą¤šą¤æą¤¤ą¤•ą¤¾ą¤°ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(126304, 101192, 'hu', 'name', 'Iuliu Hațieganu Orvosi Ć©s GyógyszerĆ©szeti Egyetem'),
(126305, 101192, 'en', 'name', 'Iuliu Hațieganu University of Medicine and Pharmacy'),
(126306, 101192, 'ro', 'name', 'Universitatea de Medicină și Farmacie Iuliu Hațieganu'),
(126307, 101193, 'en', 'name', 'Nile University of Nigeria'),
(126308, 101194, 'en', 'name', 'Ƈağ University'),
(126309, 101194, 'tr', 'name', 'Ƈağ Ɯniversitesi'),
(126310, 101195, 'en', 'name', 'Geological and Mining Institute of Spain'),
(126311, 101195, 'es', 'name', 'Instituto Geológico y Minero de España'),
(126312, 101196, 'en', 'name', 'University of Brighton'),
(126313, 101197, 'en', 'name', 'Columbia College Chicago'),
(126314, 101198, 'en', 'name', 'National Institute of Science and Technology'),
(126315, 101198, 'or', 'name', 'ନେସନାଲ ą¬‡ą¬Øą¬·ą­ą¬Ÿą¬æą¬šą­ą­Ÿą­ą¬Ÿą­ ą¬…ą¬«ą­ ą¬øą¬¾ą¬‡ą¬Øą­ą¬ø ą¬†ą¬£ą­ą¬” ą¬Ÿą­‡ą¬•ą­ą¬Øą­‹ą¬²ą­‹ą¬œą¬æ'),
(126316, 101199, 'en', 'name', 'Government College University, Faisalabad'),
(126317, 101199, 'ur', 'name', 'جی سی ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(126318, 101200, 'es', 'name', 'CETYS Universidad'),
(126319, 101201, 'no_lang_code', 'name', 'ALBA Synchrotron (Spain)'),
(126320, 101202, 'nl', 'name', 'Open Universiteit Nederland'),
(126321, 101202, 'en', 'name', 'Open University of the Netherlands'),
(126322, 101203, 'hu', 'name', 'KolozsvƔri AgrƔrtudomƔnyi Ʃs Ɓllatorvosi Egyetem'),
(126323, 101203, 'ro', 'name', 'Universitatea de Științe Agricole și Medicină Veterinară Cluj-Napoca'),
(126324, 101203, 'en', 'name', 'University of Agricultural Sciences and Veterinary Medicine of Cluj-Napoca');
INSERT INTO `ror_settings` VALUES
(126325, 101204, 'en', 'name', 'Central University of Gujarat'),
(126326, 101205, 'en', 'name', 'English and Foreign Languages University'),
(126327, 101205, 'hi', 'name', 'ą¤…ą¤‚ą¤—ą„ą¤°ą„‡ą¤œą„€ और ą¤µą¤æą¤¦ą„‡ą¤¶ą„€ भाषाओ का ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(126328, 101205, 'pa', 'name', 'ąØ…ą©°ąØ—ą©ąØ°ą©‡ąØœąØ¼ą©€ ਅਤੇ ਵਿਦੇਸ਼ੀ ਭਾਸ਼ਾਵਾਂ ਦੀ ਕੇਂਦਰੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(126329, 101205, 'te', 'name', 'ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°‡ą°‚ą°—ą±ą°²ą±€ą°·ą± ą°…ą°‚ą°”ą± ą°«ą°¾ą°°ą°æą°Øą± ą°²ą°¾ą°‚ą°—ą±ą°µą±‡ą°œą±†ą°øą±'),
(126330, 101206, 'en', 'name', 'Minhaj University Lahore'),
(126331, 101206, 'ur', 'name', 'منہاج ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(126332, 101207, 'en', 'name', 'Muhammadiyah University of Yogyakarta'),
(126333, 101207, 'id', 'name', 'Universitas Muhammadiyah Yogyakarta'),
(126334, 101208, 'en', 'name', 'ADA University'),
(126335, 101208, 'az', 'name', 'Azərbaycan Diplomatik Akademiyası'),
(126336, 101209, 'en', 'name', 'Primeasia University'),
(126337, 101209, 'bn', 'name', 'ą¦Ŗą§ą¦°ą¦¾ą¦‡ą¦®ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(126338, 101210, 'en', 'name', 'University of Mines and Technology'),
(126339, 101211, 'en', 'name', 'MIT World Peace University'),
(126340, 101211, 'hi', 'name', 'ą¤ą¤®ą¤†ą¤Æą¤Ÿą„€ ą¤µą¤°ą„ą¤²ą„ą¤” ą¤Ŗą„€ą¤ø ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(126341, 101212, 'en', 'name', 'Duhok Polytechnic University'),
(126342, 101213, 'en', 'name', 'Komar University of Science and Technology'),
(126343, 101213, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁƒŁˆŁ…Ų§Ų± Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(126344, 101214, 'es', 'name', 'Fundacion Universitaria Inpahu'),
(126345, 101215, 'id', 'name', 'Universitas Muhammadiyah Surabaya'),
(126346, 101216, 'en', 'name', 'Begum Rokeya University'),
(126347, 101216, 'bn', 'name', 'বেগম রোকেয়া ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(126348, 101217, 'en', 'name', 'Vignan''s Foundation for Science, Technology & Research'),
(126349, 101218, 'en', 'name', 'Vishwakarma University'),
(126350, 101218, 'mr', 'name', 'ą¤µą¤æą¤¶ą„ą¤µą¤•ą¤°ą„ą¤®ą¤¾ ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€ / ą¤µą¤æą¤¶ą„ą¤µą¤•ą¤°ą„ą¤®ą¤¾ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(126351, 101219, 'en', 'name', 'Tadulako University'),
(126352, 101219, 'id', 'name', 'Universitas Tadulako'),
(126353, 101220, 'nl', 'name', 'VieCuri Medisch Centrum'),
(126354, 101221, 'en', 'name', 'Sukkur IBA University'),
(126355, 101221, 'ur', 'name', 'سکر آئي بي اي ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(126356, 101222, 'en', 'name', 'Campbell University'),
(126357, 101223, 'en', 'name', 'Pramukhswami Medical College'),
(126358, 101224, 'en', 'name', 'Canterbury Christ Church University'),
(126359, 101225, 'en', 'name', 'Khatam University'),
(126360, 101225, 'fa', 'name', 'دانؓگاه Ų®Ų§ŲŖŁ…'),
(126361, 101226, 'ms', 'name', 'Lembaga Minyak Sawit Malaysia'),
(126362, 101226, 'en', 'name', 'Malaysian Palm Oil Board'),
(126363, 101227, 'en', 'name', 'American University in Dubai'),
(126364, 101227, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في دبي'),
(126365, 101227, 'fa', 'name', 'دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ دبی'),
(126366, 101228, 'en', 'name', 'Ishikawa Prefectural University'),
(126367, 101228, 'ja', 'name', 'ēŸ³å·ēœŒē«‹å¤§å­¦'),
(126368, 101229, 'sw', 'name', 'Chuo Kikuu Huria cha Tanzania'),
(126369, 101229, 'en', 'name', 'Open University of Tanzania'),
(126370, 101230, 'en', 'name', 'Mawlana Bhashani Science and Technology University'),
(126371, 101230, 'bn', 'name', 'মাওলানা ভাসানী ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(126372, 101231, 'it', 'name', 'Azienda Socio Sanitaria Territoriale Grande Ospedale Metropolitano Niguarda'),
(126373, 101232, 'id', 'name', 'Institut Teknologi Sepuluh Nopember'),
(126374, 101232, 'jv', 'name', 'Institut TĆØknologi Sepuluh NopĆØmber'),
(126375, 101232, 'en', 'name', 'Sepuluh Nopember Institute of Technology'),
(126376, 101233, 'en', 'name', 'University of Lubumbashi'),
(126377, 101233, 'fr', 'name', 'UniversitƩ de Lubumbashi'),
(126378, 101234, 'es', 'name', 'Universidad Externado de Colombia'),
(126379, 101235, 'en', 'name', 'Constantine the Philosopher University in Nitra'),
(126380, 101235, 'hu', 'name', 'Nyitrai Konstantin Filozófus Egyetem'),
(126381, 101235, 'sk', 'name', 'Univerzita KonŔtantína Filozofa v Nitre'),
(126382, 101236, 'nl', 'name', 'Centraal Bureau voor de Statistiek'),
(126383, 101236, 'en', 'name', 'Statistics Netherlands'),
(126384, 101237, 'id', 'name', 'Universitas Kanjuruhan'),
(126385, 101238, 'en', 'name', 'Pabna University of Science and Technology'),
(126386, 101238, 'bn', 'name', 'পাবনা ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(126387, 101239, 'en', 'name', 'Tartu University Hospital'),
(126388, 101239, 'et', 'name', 'Tartu Ülikooli Kliinikum'),
(126389, 101240, 'en', 'name', 'Suranaree University of Technology'),
(126390, 101240, 'th', 'name', 'ดหาวณทยาคัยเทคโนโคยีสุรนารี'),
(126391, 101241, 'no_lang_code', 'name', 'PTC Therapeutics (United States)'),
(126392, 101242, 'de', 'name', 'Interkantonale Hochschule für Heilpädagogik'),
(126393, 101242, 'en', 'name', 'University of Teacher Education in Special Needs'),
(126394, 101243, 'en', 'name', 'Hamdard University'),
(126395, 101243, 'ur', 'name', 'Ų¬Ų§Ł…Ų¹Ū‚ ہمدرد'),
(126396, 101244, 'en', 'name', 'Alexander von Humboldt Biological Resources Research Institute'),
(126397, 101244, 'es', 'name', 'Instituto de Investigación de Recursos Biológicos Alexander von Humboldt'),
(126398, 101245, 'sw', 'name', 'Chuo Kikuu cha Egerton'),
(126399, 101245, 'en', 'name', 'Egerton University'),
(126400, 101246, 'es', 'name', 'Secretaría de Educación del Distrito Capital'),
(126401, 101247, 'en', 'name', 'Institute of Space Science - INFLPR Subsidiary'),
(126402, 101247, 'ro', 'name', 'Institutul de Stiinte Spatiale - Filiala INFLPR'),
(126403, 101248, 'ca', 'name', 'Institut Guttmann'),
(126404, 101248, 'es', 'name', 'Instituto Guttmann'),
(126405, 101249, 'en', 'name', 'Sir H.N. Reliance Foundation Hospital and Research Centre'),
(126406, 101250, 'es', 'name', 'Universidad Nacional Tecnológica de Lima Sur'),
(126407, 101251, 'en', 'name', 'National Institute for Biological Standards and Control'),
(126408, 101252, 'en', 'name', 'Jenderal Soedirman University'),
(126409, 101252, 'id', 'name', 'Universitas Jenderal Soedirman'),
(126410, 101253, 'en', 'name', 'William James College'),
(126411, 101254, 'en', 'name', 'Mattu University'),
(126412, 101254, 'am', 'name', 'įˆ˜į‰± į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(126413, 101255, 'es', 'name', 'Universidad PolitƩcnica de Puebla'),
(126414, 101256, 'en', 'name', 'Yasuj University of Medical Sciences'),
(126415, 101257, 'fr', 'name', 'Institut National des Sciences AppliquƩes de Rennes'),
(126416, 101258, 'en', 'name', 'University of Uyo'),
(126417, 101258, 'yo', 'name', 'YunifÔsítì ìlú Uyo'),
(126418, 101259, 'fr', 'name', 'Polytech Lille'),
(126419, 101260, 'en', 'name', 'University of Zakho'),
(126420, 101260, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų²Ų§Ų®Ū†'),
(126421, 101261, 'no_lang_code', 'name', 'Kompetenzzentrum Holz'),
(126422, 101262, 'en', 'name', 'Ajman University'),
(126423, 101262, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عجمان Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(126424, 101263, 'en', 'name', 'Kuwait Institute for Scientific Research'),
(126425, 101264, 'en', 'name', 'Adeleke University'),
(126426, 101265, 'en', 'name', 'University of Eldoret'),
(126427, 101266, 'no_lang_code', 'name', 'Nuclear Research Institute Rez (Czechia)'),
(126428, 101267, 'nl', 'name', 'Pro Persona'),
(126429, 101268, 'de', 'name', 'Hochschule für Technik, Wirtschaft und Kultur Leipzig'),
(126430, 101268, 'en', 'name', 'Leipzig University of Applied Sciences'),
(126431, 101269, 'en', 'name', 'Dayalbagh Educational Institute'),
(126432, 101270, 'en', 'name', 'Khazar University'),
(126433, 101270, 'az', 'name', 'Xəzər Universiteti'),
(126434, 101270, 'ru', 'name', 'Университет Єазар'),
(126435, 101271, 'en', 'name', 'Poltekkes Kemenkes Aceh'),
(126436, 101272, 'en', 'name', 'Bale Bandung District Court'),
(126437, 101272, 'id', 'name', 'Pengadilan Negeri Bale Bandung'),
(126438, 101273, 'en', 'name', 'Mindanao State University-Sulu'),
(126439, 101274, 'en', 'name', 'Dubna State University'),
(126440, 101274, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”ŃƒŠ±Š½Š°Ā»'),
(126441, 101275, 'en', 'name', 'International University of Business Agriculture and Technology'),
(126442, 101275, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø, ą¦•ą¦¾ą¦²ą¦šą¦¾ą¦° ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(126443, 101276, 'en', 'name', 'University of Waikato'),
(126444, 101277, 'en', 'name', 'The Lundquist Institute'),
(126445, 101278, 'no_lang_code', 'name', 'Varendra University'),
(126446, 101278, 'bn', 'name', 'ą¦¬ą¦°ą§‡ą¦Øą§ą¦¦ą§ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(126447, 101279, 'en', 'name', 'National Institute of Geriatrics, Rheumatology and Rehabilitation'),
(126448, 101280, 'en', 'name', 'University of Nova Gorica'),
(126449, 101280, 'sl', 'name', 'Univerza v Novi Gorici'),
(126450, 101281, 'en', 'name', 'Marietta College'),
(126451, 101282, 'es', 'name', 'Institución Universitaria Escuela Nacional del Deporte'),
(126452, 101283, 'en', 'name', 'University of Hohenheim'),
(126453, 101283, 'de', 'name', 'UniversitƤt Hohenheim'),
(126454, 101284, 'en', 'name', 'Caleb University'),
(126455, 101285, 'no_lang_code', 'name', 'Syngene International (India)'),
(126456, 101286, 'en', 'name', 'Children''s Hospital of The King''s Daughters'),
(126457, 101287, 'es', 'name', 'Universidad Tecnica de Machala'),
(126458, 101288, 'en', 'name', 'Second Hospital of Hebei Medical University'),
(126459, 101289, 'en', 'name', 'Vasil Levski National Military University'),
(126460, 101289, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ военен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(126461, 101290, 'en', 'name', 'Directorate for Geosciences'),
(126462, 101291, 'no_lang_code', 'name', 'MSD (Serbia)'),
(126463, 101292, 'pl', 'name', 'Instytut Transportu Samochodowego'),
(126464, 101292, 'en', 'name', 'Motor Transport Institute'),
(126465, 101293, 'en', 'name', 'Belarussian State Pedagogical University Named After Maxim Tank'),
(126466, 101293, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ пеГагагічны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń ŠœŠ°ŠŗŃŃ–Š¼Š° Танка'),
(126467, 101293, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(126468, 101294, 'en', 'name', 'Stanisław Sakowicz Inland Fisheries Institute'),
(126469, 101295, 'en', 'name', 'Advanced Telecommunications Research Institute International'),
(126470, 101295, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å›½éš›é›»ę°—é€šäæ”åŸŗē¤ŽęŠ€č”“ē ”ē©¶ę‰€'),
(126471, 101296, 'en', 'name', 'Hamedan University of Medical Sciences'),
(126472, 101296, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ استان همدان'),
(126473, 101297, 'en', 'name', 'West Bengal National University of Juridical Sciences'),
(126474, 101297, 'hi', 'name', 'ą¤Ŗą¤¶ą„ą¤šą¤æą¤® बंगाल ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Øą„ą¤Æą¤¾ą¤Æą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(126475, 101297, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦†ą¦‡ą¦Øą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(126476, 101298, 'en', 'name', 'Teikyo University of Science'),
(126477, 101298, 'ja', 'name', 'åøäŗ¬ē§‘å­¦å¤§å­¦'),
(126478, 101299, 'en', 'name', 'Goucher College'),
(126479, 101300, 'en', 'name', 'Cooper Union'),
(126480, 101301, 'en', 'name', 'Mining and Metallurgy Institute Bor'),
(126481, 101301, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Ń€ŃƒŠ“Š°Ń€ŃŃ‚Š²Š¾ Šø Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³ŠøŃ˜Ńƒ Бор'),
(126482, 101302, 'en', 'name', 'Antenor Orrego Private University'),
(126483, 101302, 'es', 'name', 'Universidad Privada Antenor Orrego'),
(126484, 101303, 'hr', 'name', 'SveučiliŔte u Zadru'),
(126485, 101303, 'en', 'name', 'University of Zadar'),
(126486, 101303, 'sr', 'name', 'Š”Š²ŠµŃƒŃ‡ŠøŠ»ŠøŃˆŃ‚Šµ у Š—Š°Š“Ń€Ńƒ'),
(126487, 101304, 'en', 'name', 'Illinois Indiana Sea Grant'),
(126488, 101305, 'en', 'name', 'Centre College'),
(126489, 101306, 'en', 'name', 'University of Southern Queensland'),
(126490, 101307, 'en', 'name', 'George Brown College'),
(126491, 101308, 'en', 'name', 'Kabale University'),
(126492, 101309, 'fr', 'name', 'UniversitĆ© d''Ɖtat de worcester'),
(126493, 101309, 'en', 'name', 'Worcester State University'),
(126494, 101310, 'en', 'name', 'Microbial Chemistry Research Foundation'),
(126495, 101310, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¾®ē”Ÿē‰©åŒ–å­¦ē ”ē©¶ä¼š'),
(126496, 101311, 'en', 'name', 'Thuongmai University'),
(126497, 101311, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Thʰʔng mįŗ”i'),
(126498, 101312, 'en', 'name', 'President University'),
(126499, 101312, 'id', 'name', 'Universitas Presiden'),
(126500, 101313, 'en', 'name', 'KPR Institute of Engineering and Technology'),
(126501, 101314, 'de', 'name', 'Ostbayerische Technische Hochschule Amberg-Weiden'),
(126502, 101315, 'en', 'name', 'Ahlia University'),
(126503, 101315, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(126504, 101316, 'en', 'name', 'Tehran University of Medical Sciences'),
(126505, 101316, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تهران'),
(126506, 101317, 'en', 'name', 'Scientific and Research Centre for Fire Protection'),
(126507, 101318, 'en', 'name', 'Ludwigsburg University of Education'),
(126508, 101318, 'de', 'name', 'PƤdagogische Hochschule Ludwigsburg'),
(126509, 101319, 'de', 'name', 'Deutsches Klimarechenzentrum'),
(126510, 101319, 'en', 'name', 'German Climate Computing Centre'),
(126511, 101320, 'en', 'name', 'Bellarmine University'),
(126512, 101321, 'de', 'name', 'Hochschule Nordhausen'),
(126513, 101321, 'en', 'name', 'Nordhausen University of Applied Sciences'),
(126514, 101322, 'en', 'name', 'University of Vechta'),
(126515, 101322, 'de', 'name', 'UniversitƤt Vechta'),
(126516, 101323, 'en', 'name', 'Heidelberg Institute for Theoretical Studies'),
(126517, 101323, 'de', 'name', 'Heidelberger Institut für Theoretische Studien'),
(126518, 101324, 'en', 'name', 'Federal University Birnin Kebbi'),
(126519, 101325, 'no', 'name', 'Høgskolen i Østfold'),
(126520, 101325, 'en', 'name', 'Ƙstfold University College'),
(126521, 101326, 'en', 'name', 'University of Bouira'),
(126522, 101326, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁˆŁŠŲ±Ų©'),
(126523, 101327, 'en', 'name', 'HudsonAlpha Institute for Biotechnology'),
(126524, 101328, 'en', 'name', 'R.M.D. Engineering College'),
(126525, 101329, 'en', 'name', 'College of the Holy Cross'),
(126526, 101330, 'en', 'name', 'Plovdiv University'),
(126527, 101330, 'bg', 'name', 'ПловГивски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(126528, 101331, 'en', 'name', 'Siam University'),
(126529, 101331, 'th', 'name', 'ดหาวณทยาคัยสยาด'),
(126530, 101332, 'ms', 'name', 'Universiti Malaysia Kelantan'),
(126531, 101332, 'en', 'name', 'University of Malaysia Kelantan'),
(126532, 101333, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ ThĆ nh phố Hồ ChĆ­ Minh'),
(126533, 101333, 'en', 'name', 'University of Economics Ho Chi Minh City'),
(126534, 101333, 'fr', 'name', 'UniversitƩ d''Ʃconomie d''hƓ-chi-minh-ville'),
(126535, 101334, 'es', 'name', 'Instituto Universitario de La Paz'),
(126536, 101335, 'en', 'name', '1 Decembrie 1918 University'),
(126537, 101335, 'ro', 'name', 'Universitatea 1 Decembrie 1918 din Alba Iulia'),
(126538, 101336, 'no_lang_code', 'name', 'Software Competence Center Hagenberg (Austria)'),
(126539, 101337, 'en', 'name', 'State University of Tetova'),
(126540, 101337, 'sq', 'name', 'Universiteti Shtetƫror i Tetovƫs'),
(126541, 101337, 'mk', 'name', 'Државен ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ во Тетово'),
(126542, 101338, 'en', 'name', 'Claflin University'),
(126543, 101339, 'en', 'name', 'University Clinical Centre Maribor'),
(126544, 101340, 'no_lang_code', 'name', 'MSD (Germany)'),
(126545, 101341, 'no_lang_code', 'name', 'Acciona (Spain)'),
(126546, 101342, 'en', 'name', 'North Chiang Mai University'),
(126547, 101342, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø­ąø£ą¹Œąø—-ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(126548, 101343, 'it', 'name', 'UniversitĆ  della Svizzera italiana'),
(126549, 101344, 'en', 'name', 'GLS University'),
(126550, 101345, 'id', 'name', 'Institut Seni Indonesia Surakarta'),
(126551, 101346, 'en', 'name', 'Petersburg State Transport University'),
(126552, 101346, 'ru', 'name', 'ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(126553, 101347, 'en', 'name', 'Muhammad Nawaz Shareef University of Agriculture'),
(126554, 101347, 'ur', 'name', 'Ł…Ų­Ł…ŲÆ Ł†ŁˆŲ§Ų² ؓریف ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§ŪŒŚÆŲ±ŪŒŚ©Ł„Ś†Ų±'),
(126555, 101348, 'ca', 'name', 'Universitat d''Andorra'),
(126556, 101348, 'en', 'name', 'University of Andorra'),
(126557, 101349, 'en', 'name', 'Federal College of Education, Kontagora'),
(126558, 101350, 'es', 'name', 'Instituto Maimónides de Investigación Biomédica de Córdoba'),
(126559, 101351, 'en', 'name', 'St. Mary''s University, Texas'),
(126560, 101351, 'fr', 'name', 'UniversitƩ sainte-marie'),
(126561, 101352, 'en', 'name', 'Mizoram University'),
(126562, 101352, 'hi', 'name', 'ą¤®ą¤æą¤œą¤¼ą„‹ą¤°ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(126563, 101353, 'en', 'name', 'Siberian State Medical University'),
(126564, 101353, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(126565, 101354, 'en', 'name', 'National Autonomous University of Nicaragua'),
(126566, 101354, 'es', 'name', 'Universidad Nacional Autónoma de Nicaragua'),
(126567, 101355, 'pt', 'name', 'Empresa de Pesquisa AgropecuƔria de Minas Gerais'),
(126568, 101356, 'en', 'name', 'Indira Gandhi Mirpur University'),
(126569, 101356, 'hi', 'name', 'इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(126570, 101357, 'en', 'name', 'Federal University of SĆ£o Carlos'),
(126571, 101357, 'pt', 'name', 'Universidade Federal de SĆ£o Carlos'),
(126572, 101358, 'en', 'name', 'Surgut State University'),
(126573, 101358, 'ru', 'name', 'Š”ŃƒŃ€Š³ŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(126574, 101359, 'pt', 'name', 'Escola Superior de SaĆŗde da Cruz Vermelha Portuguesa'),
(126575, 101360, 'fr', 'name', 'Centre Suisse d''Ɖlectronique et de Microtechnique'),
(126576, 101360, 'no_lang_code', 'name', 'Swiss Center for Electronics and Microtechnology (Switzerland)'),
(126577, 101361, 'en', 'name', 'Montgomery College'),
(126578, 101362, 'es', 'name', 'Universidad de Mendoza'),
(126579, 101362, 'en', 'name', 'University of Mendoza'),
(126580, 101363, 'es', 'name', 'Dirección General Marítima'),
(126581, 101364, 'en', 'name', 'National Science Board'),
(126582, 101365, 'en', 'name', 'Mogilev State A.Kuleshov University'),
(126583, 101365, 'be', 'name', 'ŠœŠ°Š³Ń–Š»Ń‘ŃžŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń ŠŃ€ŠŗŠ°Š“Š·Ń ŠšŃƒŠ»ŃŃˆŠ¾Š²Š°'),
(126584, 101366, 'no_lang_code', 'name', 'Repsol (Spain)'),
(126585, 101367, 'en', 'name', 'Alrijne Hospital'),
(126586, 101367, 'nl', 'name', 'Alrijne Ziekenhuis'),
(126587, 101368, 'en', 'name', 'Albright College'),
(126588, 101369, 'en', 'name', 'Antioquia Institute of Technology'),
(126589, 101369, 'es', 'name', 'Tecnológico de Antioquia'),
(126590, 101370, 'en', 'name', 'De La Salle-College of Saint Benilde'),
(126591, 101371, 'en', 'name', 'Okinawa Institute of Science and Technology Graduate University'),
(126592, 101371, 'ja', 'name', 'ę²–ēø„ē§‘å­¦ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(126593, 101372, 'es', 'name', 'Universidad PolitƩcnica de Pachuca'),
(126594, 101373, 'en', 'name', 'Hochschule Augsburg University of Applied Sciences'),
(126595, 101373, 'de', 'name', 'Technische Hochschule Augsburg'),
(126596, 101374, 'en', 'name', 'National Institute for Aerospace Research Elie Carafoli'),
(126597, 101375, 'pt', 'name', 'Instituto Superior PolitƩcnico de Gaza'),
(126598, 101376, 'es', 'name', 'Universidad de Scranton'),
(126599, 101376, 'en', 'name', 'University of Scranton'),
(126600, 101376, 'fr', 'name', 'UniversitƩ de scranton'),
(126601, 101377, 'es', 'name', 'Universidad Fernando Pessoa Canarias'),
(126602, 101378, 'en', 'name', 'ICFAI University, Tripura'),
(126603, 101379, 'en', 'name', 'National Institute of Technology Andhra Pradesh'),
(126604, 101379, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤†ą¤‚ą¤§ą„ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶'),
(126605, 101380, 'es', 'name', 'Universidad Nacional Pedro RuĆ­z Gallo'),
(126606, 101381, 'en', 'name', 'Spelman College'),
(126607, 101382, 'en', 'name', 'Daffodil International University'),
(126608, 101382, 'bn', 'name', 'ą¦”ą§ą¦Æą¦¾ą¦«ą§‹ą¦”ą¦æą¦² ą¦†ą¦Øą§ą¦¤ą¦°ą§ą¦œą¦¾ą¦¤ą¦æą¦• ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(126609, 101383, 'en', 'name', 'Fasa University of Medical Sciences'),
(126610, 101384, 'en', 'name', 'Kampala International University'),
(126611, 101385, 'en', 'name', 'Fielding Graduate University'),
(126612, 101386, 'en', 'name', 'Sir Padampat Singhania University'),
(126613, 101386, 'hi', 'name', 'सर पदमपत ą¤øą¤æą¤‚ą¤˜ą¤¾ą¤Øą¤æą¤Æą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(126614, 101387, 'es', 'name', 'Universidad de Otavalo'),
(126615, 101388, 'en', 'name', 'Berdyansk State Pedagogical University'),
(126616, 101388, 'uk', 'name', 'Š‘ŠµŃ€Š“ŃŠ½ŃŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(126617, 101389, 'it', 'name', 'Ente Ospedaliero Cantonale'),
(126618, 101390, 'fr', 'name', 'Centre Hospitalier Universitaire d''Angers'),
(126619, 101391, 'en', 'name', 'Washburn University'),
(126620, 101392, 'en', 'name', 'Panca Bhakti University'),
(126621, 101392, 'id', 'name', 'Universitas Panca Bhakti'),
(126622, 101393, 'en', 'name', 'Moscow Aviation Institute'),
(126623, 101393, 'ru', 'name', 'Московский авиационный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(126624, 101394, 'en', 'name', 'Gulf Medical University'),
(126625, 101394, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ų§Ł„Ų·ŲØŁŠŲ©'),
(126626, 101395, 'en', 'name', 'ICT Research Institute'),
(126627, 101395, 'fa', 'name', 'صفحه Ų§ŲµŁ„ŪŒ : Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų§Ų±ŲŖŲØŲ§Ų·Ų§ŲŖ و ŁŁ†Ų§ŁˆŲ±ŪŒ اطلاعات'),
(126628, 101396, 'hr', 'name', 'Institut DruŔtvenih Znanosti Ivo Pilar'),
(126629, 101397, 'en', 'name', 'Siberian Branch of the Russian Academy of Sciences'),
(126630, 101397, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космофизических исслеГований Šø Š°ŃŃ€Š¾Š½Š¾Š¼ŠøŠø им. Š®.Š“.Шафера Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(126631, 101398, 'en', 'name', 'American University of Central Asia'),
(126632, 101398, 'uz', 'name', 'Oʻrta Osiyo Amerika Universiteti'),
(126633, 101398, 'ru', 'name', 'Американский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(126634, 101399, 'en', 'name', 'Online Computer Library Center'),
(126635, 101400, 'no_lang_code', 'name', 'Fortiss'),
(126636, 101401, 'en', 'name', 'Polytechnic University of Timişoara'),
(126637, 101401, 'ro', 'name', 'Universitatea Politehnica din Timișoara'),
(126638, 101402, 'en', 'name', 'University Hospital Ulm'),
(126639, 101402, 'de', 'name', 'UniversitƤtsklinikum Ulm'),
(126640, 101403, 'en', 'name', 'European Organisation for the Exploitation of Meteorological Satellites'),
(126641, 101403, 'de', 'name', 'Europäische Organisation für die Nutzung meteorologischer Satelliten'),
(126642, 101404, 'en', 'name', 'Middle Georgia State College'),
(126643, 101405, 'pl', 'name', 'Akademia WSB'),
(126644, 101405, 'en', 'name', 'WSB University'),
(126645, 101406, 'en', 'name', 'Instituto Federal Goiano'),
(126646, 101407, 'en', 'name', 'Emporia State University'),
(126647, 101407, 'fr', 'name', 'UniversitĆ© d''Ɖtat d''emporia'),
(126648, 101408, 'no_lang_code', 'name', 'Grifols (Spain)'),
(126649, 101409, 'en', 'name', 'Cracow University of Technology'),
(126650, 101409, 'pl', 'name', 'Politechnika Krakowska im. Tadeusza Kościuszki'),
(126651, 101410, 'es', 'name', 'Universidad Ricardo Palma'),
(126652, 101411, 'en', 'name', 'University Clinical Centre'),
(126653, 101411, 'pl', 'name', 'Uniwersyteckie Centrum Kliniczne w Gdańsku'),
(126654, 101412, 'no_lang_code', 'name', 'Genethon (France)'),
(126655, 101412, 'fr', 'name', 'GƩnƩthon'),
(126656, 101413, 'en', 'name', 'Gulf College'),
(126657, 101413, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų®Ł„ŁŠŲ¬'),
(126658, 101414, 'en', 'name', 'Beijing Academy of Quantum Information Sciences'),
(126659, 101415, 'en', 'name', 'Natural and Medical Sciences Institute'),
(126660, 101415, 'de', 'name', 'Naturwissenschaftliches und Medizinisches Institut'),
(126661, 101416, 'es', 'name', 'Instituto Interdisciplinario de Ciencias BƔsicas'),
(126662, 101417, 'en', 'name', 'Institute of Mathematical Sciences'),
(126663, 101417, 'es', 'name', 'Instituto de Ciencias MatemƔticas'),
(126664, 101418, 'en', 'name', 'University of Sharjah'),
(126665, 101418, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الؓارقة'),
(126666, 101419, 'en', 'name', 'University of Applied Health Sciences'),
(126667, 101419, 'hr', 'name', 'Zdravstveno veleučiliŔte u Zagrebu'),
(126668, 101420, 'no_lang_code', 'name', 'MSD (Norway)'),
(126669, 101421, 'no_lang_code', 'name', 'Wiss Janney Elstner Associates'),
(126670, 101422, 'it', 'name', 'Arcispedale Sant''Anna'),
(126671, 101423, 'en', 'name', 'Central Institute for Labour Protection'),
(126672, 101423, 'pl', 'name', 'Centralny Instytut Ochrony Pracy'),
(126673, 101424, 'en', 'name', 'Grigore T. Popa University of Medicine and Pharmacy'),
(126674, 101424, 'ro', 'name', 'Universitatea de Medicină și Farmacie Grigore T. Popa'),
(126675, 101425, 'en', 'name', 'University Of Fallujah'),
(126676, 101425, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŁ„ŁˆŲ¬Ų©'),
(126677, 101426, 'en', 'name', 'La Salle Green Hills'),
(126678, 101427, 'no_lang_code', 'name', 'MSD (Austria)'),
(126679, 101428, 'no_lang_code', 'name', 'Kitware (United States)'),
(126680, 101429, 'en', 'name', 'Norwegian Veterinary Institute'),
(126681, 101430, 'en', 'name', 'Pontifical Catholic University of Puerto Rico'),
(126682, 101430, 'es', 'name', 'Pontificia Universidad Catolica de Puerto Rico'),
(126683, 101431, 'es', 'name', 'Universidad Tecnológica de Bolívar'),
(126684, 101432, 'en', 'name', 'University of San Jose–Recoletos'),
(126685, 101433, 'es', 'name', 'Universidad de las Regiones Autónomas de la Costa Caribe Nicaragüense'),
(126686, 101433, 'en', 'name', 'University of the Autonomous Regions of the Nicaraguan Caribbean Coast'),
(126687, 101434, 'en', 'name', 'Indian Institute of Management Kozhikode'),
(126688, 101435, 'en', 'name', 'Directorate for Engineering'),
(126689, 101436, 'en', 'name', 'National Library of China'),
(126690, 101436, 'zh', 'name', '中国国家图书馆'),
(126691, 101437, 'en', 'name', 'International Iberian Nanotechnology Laboratory'),
(126692, 101437, 'pt', 'name', 'Laboratório Ibérico Internacional de Nanotecnologia'),
(126693, 101438, 'yo', 'name', 'AkÔdẹ́mì àbò asà Nàìjíríà'),
(126694, 101438, 'en', 'name', 'Nigerian Defence Academy'),
(126695, 101439, 'ca', 'name', 'Parc Sanitari Sant Joan de DƩu'),
(126696, 101440, 'en', 'name', 'Colombia Adventist University'),
(126697, 101440, 'es', 'name', 'Corporacion Universitaria Adventista'),
(126698, 101441, 'en', 'name', 'Rajabhat Maha Sarakham University'),
(126699, 101441, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøŽąø”ąø«ąø²ąøŖąø²ąø£ąø„ąø²ąø”'),
(126700, 101442, 'en', 'name', 'Institute of Molecular and Clinical Ophthalmology Basel'),
(126701, 101443, 'es', 'name', 'Instituto Nacional de Investigación y Tecnología Agraria y Alimentaria'),
(126702, 101443, 'en', 'name', 'National Institute for Agricultural and Food Research and Technology'),
(126703, 101444, 'de', 'name', 'Bergische UniversitƤt Wuppertal'),
(126704, 101444, 'en', 'name', 'University of Wuppertal'),
(126705, 101445, 'es', 'name', 'Universidad De Aquino Bolivia'),
(126706, 101446, 'en', 'name', 'Emerson College'),
(126707, 101447, 'en', 'name', 'National Center for Biotechnology'),
(126708, 101447, 'kk', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр биотехнологии'),
(126709, 101448, 'en', 'name', 'PARADIM'),
(126710, 101449, 'sk', 'name', 'Trencianska Univerzita Alexandra Dubceka V Trencine'),
(126711, 101450, 'en', 'name', 'Mulawarman University'),
(126712, 101450, 'id', 'name', 'Universitas Mulawarman'),
(126713, 101451, 'fr', 'name', 'Institut International d''IngƩnierie de l''Eau et de l''Environnement'),
(126714, 101451, 'en', 'name', 'International Institute for Water and Environmental Engineering'),
(126715, 101452, 'en', 'name', 'Sultan Agung Islamic University'),
(126716, 101452, 'id', 'name', 'Universitas Islam Sultan Agung'),
(126717, 101453, 'es', 'name', 'Universidad Autónoma del Beni'),
(126718, 101454, 'fr', 'name', 'HƓpital du Valais'),
(126719, 101455, 'en', 'name', 'Gonabad University of Medical Sciences'),
(126720, 101455, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓكي گناباد'),
(126721, 101456, 'en', 'name', 'University of Dschang'),
(126722, 101456, 'fr', 'name', 'UniversitƩ de Dschang'),
(126723, 101457, 'en', 'name', 'Ontario Institute for Cancer Research'),
(126724, 101458, 'en', 'name', 'Karatina University'),
(126725, 101459, 'en', 'name', 'IPS Academy'),
(126726, 101460, 'en', 'name', 'University of Garmian'),
(126727, 101460, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ ŚÆŪ•Ų±Ł…ŪŒŲ§Ł†'),
(126728, 101461, 'es', 'name', 'Instituto de Investigaciones BiomƩdicas Sols-Morreale'),
(126729, 101461, 'en', 'name', 'Sols-Morreale Biomedical Research Institute'),
(126730, 101462, 'no_lang_code', 'name', 'Razi Vaccine and Serum Research Institute'),
(126731, 101463, 'en', 'name', 'Hampshire College'),
(126732, 101464, 'en', 'name', 'DeSales University'),
(126733, 101465, 'de', 'name', 'Hochschule Zittau/Gƶrlitz'),
(126734, 101465, 'en', 'name', 'Zittau/Gƶrlitz University of Applied Sciences'),
(126735, 101466, 'en', 'name', 'Institute of Oncology Ljubljana'),
(126736, 101467, 'id', 'name', 'Universitas Islam Negeri Maulana Malik Ibrahim'),
(126737, 101468, 'fr', 'name', 'HƓpital Intercommunal de CrƩteil'),
(126738, 101469, 'en', 'name', 'Rhodes College'),
(126739, 101470, 'en', 'name', 'Russian State Library'),
(126740, 101470, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń библиотека'),
(126741, 101471, 'en', 'name', 'Riga StradiņŔ University'),
(126742, 101471, 'lt', 'name', 'Rygos Stradinio universitetas'),
(126743, 101471, 'lv', 'name', 'Rīgas Stradiņa universitāte'),
(126744, 101471, 'ru', 'name', 'Рижский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Паула Š”Ń‚Ń€Š°Š“ŠøŠ½Ń'),
(126745, 101472, 'en', 'name', 'Nipissing University'),
(126746, 101472, 'fr', 'name', 'UniversitƩ de nipissing'),
(126747, 101473, 'en', 'name', 'Tamil Nadu Agricultural University'),
(126748, 101473, 'fr', 'name', 'UniversitƩ agricole de tamil nadu'),
(126749, 101473, 'hi', 'name', 'तमिल ą¤Øą¤¾ą¤”ą„ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(126750, 101473, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®µąÆ‡ą®³ą®¾ą®£ąÆą®®ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(126751, 101473, 'ml', 'name', 'ą“¤ą“®ą“æą““ąµą“Øą“¾ą“Ÿąµ ą“•ą“¾ąµ¼ą“·ą“æą“• ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(126752, 101474, 'pl', 'name', 'Akademia Muzyczna im. Stanisława Moniuszki w Gdańsku'),
(126753, 101474, 'en', 'name', 'The Stanisław Moniuszko Academy of Music in Gdańsk'),
(126754, 101475, 'en', 'name', 'University of Wollongong'),
(126755, 101476, 'no_lang_code', 'name', 'Materials Center Leoben (Austria)'),
(126756, 101477, 'en', 'name', 'Albukhary Foundation'),
(126757, 101477, 'ms', 'name', 'Yayasan Albukhary'),
(126758, 101478, 'en', 'name', 'Albany State University'),
(126759, 101479, 'en', 'name', 'Ramapo College'),
(126760, 101480, 'en', 'name', 'Saskatchewan Polytechnic'),
(126761, 101481, 'en', 'name', 'National University of Mongolia'),
(126762, 101481, 'mn', 'name', 'Монгол Улсын Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(126763, 101481, 'ru', 'name', 'Монгольский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(126764, 101482, 'en', 'name', 'Cornell College'),
(126765, 101483, 'en', 'name', 'Centre for English, Translation, and Anglo-Portuguese Studies'),
(126766, 101484, 'pt', 'name', 'Centro de Investigação e Desenvolvimento em MatemÔtica e Aplicações'),
(126767, 101485, 'sr', 'name', 'Etnografski institut Srpske akademije nauka i umetnosti'),
(126768, 101486, 'en', 'name', 'MSD (Thailand)'),
(126769, 101487, 'en', 'name', 'Computing Technology Industry Association'),
(126770, 101488, 'pt', 'name', 'Autoridade de Segurança Alimentar e Económica'),
(126771, 101489, 'no_lang_code', 'name', 'Xennia Technology (United Kingdom)'),
(126772, 101490, 'pt', 'name', 'Centro de Biologia Molecular e Ambiental'),
(126773, 101491, 'nl', 'name', 'Koninklijke Nederlandse Akademie van Wetenschappen'),
(126774, 101491, 'en', 'name', 'Royal Netherlands Academy of Arts and Sciences'),
(126775, 101492, 'en', 'name', 'U.S. Air Force Space Command'),
(126776, 101493, 'en', 'name', 'Norwalk Hospital'),
(126777, 101494, 'pt', 'name', 'Sociedade Portuguesa de Psiquiatria e SaĆŗde Mental'),
(126778, 101495, 'en', 'name', 'IRCCS San Camillo Hospital'),
(126779, 101496, 'en', 'name', 'Japan Endocrine Society'),
(126780, 101496, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†…åˆ†ę³Œå­¦ä¼š'),
(126781, 101497, 'es', 'name', 'Fundación Instituto Nacional de Heridas'),
(126782, 101498, 'pt', 'name', 'Centro de Economia e FinanƧas'),
(126783, 101499, 'en', 'name', 'Biology as a Solution (France)'),
(126784, 101500, 'pt', 'name', 'Rede Interagencial de Informações para a Saúde'),
(126785, 101501, 'en', 'name', 'Nevada System of Higher Education'),
(126786, 101502, 'ro', 'name', 'Asociatia Romana pentru Industria Electronica si Software'),
(126787, 101503, 'pt', 'name', 'Centro de Formação Cristã'),
(126788, 101504, 'de', 'name', 'Bundesministerium für Inneres'),
(126789, 101504, 'en', 'name', 'Federal Ministry for the Interior'),
(126790, 101505, 'no_lang_code', 'name', 'AlmavivA (Italy)'),
(126791, 101506, 'es', 'name', 'Universidad Unicervantes'),
(126792, 101507, 'en', 'name', 'Saudi Health Council'),
(126793, 101507, 'ar', 'name', 'المجلس Ų§Ł„ŲµŲ­ŁŠ Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠ'),
(126794, 101508, 'en', 'name', 'The National Gallery'),
(126795, 101509, 'en', 'name', 'Japan Society for Analytical Chemistry'),
(126796, 101509, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åˆ†ęžåŒ–å­¦ä¼š'),
(126797, 101510, 'pt', 'name', 'Centro de Investigação Desenvolvimento e Inovação em Turismo'),
(126798, 101511, 'en', 'name', 'University of Arkansas at Little Rock'),
(126799, 101511, 'fr', 'name', 'UniversitƩ de l''arkansas Ơ little rock'),
(126800, 101512, 'en', 'name', 'ASLAB Science'),
(126801, 101513, 'pt', 'name', 'Universidade de Lisboa Centro de Estudos Anglisticos'),
(126802, 101514, 'pt', 'name', 'Fundação Convento da Orada'),
(126803, 101515, 'en', 'name', 'Chemical Society of Japan'),
(126804, 101515, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬ē†å­¦ä¼š'),
(126805, 101516, 'en', 'name', 'VERITAS'),
(126806, 101517, 'pt', 'name', 'Sociedade Brasileira de Geriatria e Gerontologia'),
(126807, 101518, 'en', 'name', 'R Foundation for Statistical Computing'),
(126808, 101518, 'de', 'name', 'R Vereinigung für statistisches Rechnen'),
(126809, 101519, 'en', 'name', 'U.S. Air Force Research Laboratory AFWERX Directorate'),
(126810, 101520, 'en', 'name', 'Sino-Africa Joint Research Center'),
(126811, 101520, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äø­éžč”åˆē ”ē©¶äø­åæƒ'),
(126812, 101521, 'en', 'name', 'Indiana University Hospital'),
(126813, 101522, 'en', 'name', 'IEEE Magnetics Society'),
(126814, 101523, 'en', 'name', 'Ministry of Foreign Affairs, Dhaka'),
(126815, 101524, 'pt', 'name', 'Centro CientĆ­fico e Cultural de Macau'),
(126816, 101525, 'pt', 'name', 'Centro de Investigação em Ciência Política'),
(126817, 101526, 'pt', 'name', 'Associação BIOPOLIS - Rede de Investigação em Biodiversidade e Biologia Evolutiva'),
(126818, 101527, 'en', 'name', 'Institute of Chemistry of Ireland'),
(126819, 101527, 'ga', 'name', 'InstitĆŗid Ceimice na hƉireann'),
(126820, 101528, 'no_lang_code', 'name', 'MSD (Latvia)'),
(126821, 101529, 'pt', 'name', 'ServiƧo de InformaƧƵes de SeguranƧa'),
(126822, 101530, 'pt', 'name', 'Fundação Bissaya Barreto'),
(126823, 101531, 'en', 'name', 'Guangzhou Laboratory'),
(126824, 101531, 'zh', 'name', 'å¹æå·žå®žéŖŒå®¤'),
(126825, 101532, 'en', 'name', 'OP Jindal University'),
(126826, 101533, 'pt', 'name', 'Sociedade Portuguesa de Endocrinologia Diabetes e Metabolismo'),
(126827, 101534, 'pt', 'name', 'Centro de Engenharia Mecânica e Sustentabilidade de Recursos'),
(126828, 101535, 'en', 'name', '7Degrees'),
(126829, 101535, 'pt', 'name', '7Graus (Portugal)'),
(126830, 101536, 'ro', 'name', 'Spitalul Clinic de Nefrologie Dr. Carol Davila'),
(126831, 101537, 'en', 'name', 'Bhawanipur Anchalik College'),
(126832, 101538, 'en', 'name', 'Huzhou College'),
(126833, 101538, 'zh', 'name', 'ę¹–å·žå­¦é™¢'),
(126834, 101539, 'pt', 'name', 'ComitƩ Olƭmpico de Portugal'),
(126835, 101540, 'el', 'name', 'EXELISIS IKE (Greece)'),
(126836, 101541, 'en', 'name', 'Centre for the Protection of National Infrastructure'),
(126837, 101542, 'en', 'name', 'National Taitung University'),
(126838, 101543, 'pt', 'name', 'PresidĆŖncia do Conselho de Ministros'),
(126839, 101544, 'pt', 'name', 'Centro de Estudos Fiscais'),
(126840, 101545, 'en', 'name', 'Fair Math (United States)'),
(126841, 101546, 'en', 'name', 'MSD (Czech Republic)'),
(126842, 101547, 'en', 'name', 'Mute'),
(126843, 101548, 'en', 'name', 'United States Air Force Research Laboratory'),
(126844, 101549, 'en', 'name', 'Delaware Asteroseismic Research Center'),
(126845, 101550, 'en', 'name', 'Cogitatio Press'),
(126846, 101551, 'en', 'name', 'Minneapolis Business College'),
(126847, 101552, 'pt', 'name', 'Grupo Lobo'),
(126848, 101553, 'de', 'name', 'Hochschule für Musik und Theater München'),
(126849, 101553, 'en', 'name', 'University of Music and Theatre Munich'),
(126850, 101554, 'en', 'name', 'Riley Hospital for Children'),
(126851, 101555, 'pt', 'name', 'Sociedade Portuguesa de Gastrenterologia'),
(126852, 101556, 'en', 'name', 'The Asian International School'),
(126853, 101557, 'pt', 'name', 'Centro AcadƩmico de Medicina de Lisboa'),
(126854, 101558, 'en', 'name', 'Institute of Desert Meteorology, China Meteorological Administration'),
(126855, 101558, 'zh', 'name', 'äø­å›½ę°”č±”å±€ä¹Œé²ęœØé½ę²™ę¼ ę°”č±”ē ”ē©¶ę‰€'),
(126856, 101559, 'en', 'name', 'Air Force Installation and Mission Support Center'),
(126857, 101560, 'en', 'name', 'American Association of Teachers of Spanish and Portuguese'),
(126858, 101561, 'pt', 'name', 'Centro ALGORITMI'),
(126859, 101562, 'fr', 'name', 'Fondation Familiale Trottier'),
(126860, 101562, 'en', 'name', 'Trottier Family Foundation'),
(126861, 101563, 'es', 'name', 'ANCAP (Uruguay)'),
(126862, 101563, 'en', 'name', 'National Administration of Fuels, Alcohols and Portland'),
(126863, 101564, 'pt', 'name', 'Universidade de Coimbra Centro de Investigação em Neuropsicologia e Intervenção Cognitivo-Comportamental'),
(126864, 101565, 'no_lang_code', 'name', 'Huawei Technologies (China)'),
(126865, 101565, 'zh', 'name', 'åŽäøŗęŠ€ęœÆęœ‰é™å…¬åø'),
(126866, 101566, 'no_lang_code', 'name', 'Cramer Fish Sciences (United States)'),
(126867, 101567, 'de', 'name', 'Deutsches Zentrum für Luft- und Raumfahrt e. V. (DLR)'),
(126868, 101568, 'en', 'name', 'Japan Surgical Association'),
(126869, 101568, 'ja', 'name', 'ę—„ęœ¬č‡ØåŗŠå¤–ē§‘å­¦ä¼š'),
(126870, 101569, 'en', 'name', 'W. M. Keck Foundation'),
(126871, 101570, 'pt', 'name', 'Instituto Para Os Sistemas e Tecnologias de Informação Controlo e Comunicação'),
(126872, 101571, 'pt', 'name', 'Centro de Investigação em Actividade Física Saúde e Lazer'),
(126873, 101572, 'tr', 'name', 'MSD (Turkiye)'),
(126874, 101573, 'en', 'name', 'Polytechnic University of Valencia'),
(126875, 101573, 'es', 'name', 'Universidad PolitƩcnica de Valencia'),
(126876, 101573, 'no_lang_code', 'name', 'Universitat PolitĆØcnica de ValĆØncia'),
(126877, 101574, 'pt', 'name', 'Sociedade Portuguesa de Cuidados Intensivos'),
(126878, 101575, 'lt', 'name', 'Vilniaus universiteto ligoninės SantariÅ”kių klinikos'),
(126879, 101575, 'en', 'name', 'Vilnius University Hospital Santariskiu Klinikos'),
(126880, 101576, 'pt', 'name', 'Instituto Paulo Freire de Portugal'),
(126881, 101577, 'ca', 'name', 'Institut de Recerca en Energia de Catalunya'),
(126882, 101578, 'pt', 'name', 'Astellas Farma Lda (Portugal)'),
(126883, 101578, 'en', 'name', 'Astellas Pharma Ltd'),
(126884, 101579, 'en', 'name', 'Institute of China and Modern Asia of the Russian Academy of Sciences'),
(126885, 101579, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŠøŃ‚Š°Ń Šø современной Азии Российской акаГемии наук'),
(126886, 101580, 'en', 'name', 'Karlsruhe University of Arts and Design'),
(126887, 101580, 'de', 'name', 'Staatliche Hochschule für Gestaltung Karlsruhe'),
(126888, 101581, 'en', 'name', 'National Academy of Education named after Y. Altynsarin'),
(126889, 101581, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Имени И.Алтынсарина'),
(126890, 101581, 'kk', 'name', 'Ыбырай Алтынсарин атынГағы Ұлттық білім Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(126891, 101582, 'de', 'name', 'Land Salzburg'),
(126892, 101582, 'en', 'name', 'State of Salzburg'),
(126893, 101583, 'vi', 'name', 'Bệnh viện Thống Nhįŗ„t'),
(126894, 101583, 'en', 'name', 'Thong Nhat Hospital'),
(126895, 101584, 'en', 'name', 'American Indian Law Alliance'),
(126896, 101585, 'en', 'name', 'University of Douala'),
(126897, 101585, 'fr', 'name', 'UniversitƩ de Douala'),
(126898, 101586, 'en', 'name', 'National Museum Lagos'),
(126899, 101587, 'pt', 'name', 'Deloitte Portugal (Portugal)'),
(126900, 101588, 'pt', 'name', 'Centro de Território Ambiente e Construção'),
(126901, 101589, 'pt', 'name', 'Centro de Inovação em Tecnologias e Cuidados de Saúde'),
(126902, 101590, 'pt', 'name', 'Goethe Institut Portugal'),
(126903, 101591, 'en', 'name', 'College of Business Runata'),
(126904, 101591, 'id', 'name', 'Sekolah Tinggi Bisnis Runata'),
(126905, 101592, 'en', 'name', 'Bhupal Nobles University'),
(126906, 101592, 'hi', 'name', 'ą¤­ą„‚ą¤Ŗą¤¾ą¤² ą¤Øą„‹ą¤¬ą¤²ą„ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(126907, 101593, 'en', 'name', 'Swedish Agency for Economic and Regional Growth'),
(126908, 101594, 'en', 'name', 'U.S. Air Force Research Laboratory Sensors Directorate'),
(126909, 101595, 'en', 'name', 'Wind Engineering, Energy and Environment Research Institute'),
(126910, 101596, 'de', 'name', 'Deutsche Gesellschaft für Materialkunde'),
(126911, 101597, 'pt', 'name', 'Centro para o Desenvolvimento RƔpido e Sustentado de Produto'),
(126912, 101598, 'en', 'name', 'R. E. Beverly III and Associates (United States)'),
(126913, 101599, 'es', 'name', 'Instituto AragonƩs de Ciencias de la Salud'),
(126914, 101600, 'pt', 'name', 'Centro Nacional de Reprodução de Lince Ibérico'),
(126915, 101601, 'es', 'name', 'Universidad PolitƩcnica de Juventino Rosas'),
(126916, 101602, 'no_lang_code', 'name', 'Teleflex (Ireland)'),
(126917, 101603, 'pt', 'name', 'Hospital SAMS'),
(126918, 101604, 'no_lang_code', 'name', 'OxyMem (Ireland)'),
(126919, 101605, 'pt', 'name', 'Fundação António Aleixo'),
(126920, 101606, 'pt', 'name', 'Centro Champalimaud'),
(126921, 101607, 'es', 'name', 'Instituto Tecnológico de Tlalnepantla'),
(126922, 101608, 'pt', 'name', 'Sociedade Portuguesa de Alergologia e Imunologia ClĆ­nica'),
(126923, 101609, 'en', 'name', 'Arab States Research and Education Network'),
(126924, 101610, 'en', 'name', 'Japanese Society of Veterinary Science'),
(126925, 101610, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē£åŒ»å­¦ä¼š'),
(126926, 101611, 'en', 'name', 'Institute of Hematology and Transfusion Medicine'),
(126927, 101611, 'pl', 'name', 'Instytut Hematologii i Transfuzjologi'),
(126928, 101612, 'en', 'name', 'The Japanese Association for Chest Surgery'),
(126929, 101612, 'ja', 'name', 'ę—„ęœ¬å‘¼åøå™Øå¤–ē§‘å­¦ä¼š'),
(126930, 101613, 'fr', 'name', 'Institut des sciences de la mer'),
(126931, 101614, 'en', 'name', 'Friends of the Earth Czech Republic'),
(126932, 101614, 'cs', 'name', 'HnutĆ­ DUHA'),
(126933, 101615, 'nl', 'name', 'Kennispunt Twente'),
(126934, 101616, 'pt', 'name', 'Comissão para a Cidadania e Igualdade de Género'),
(126935, 101617, 'en', 'name', 'BICC - Bonn International Centre for Conflict Studies'),
(126936, 101618, 'en', 'name', 'Robarts Clinical Trials'),
(126937, 101619, 'en', 'name', 'The Society of Polymer Science, Japan'),
(126938, 101619, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗ'),
(126939, 101620, 'pt', 'name', 'Câmara Municipal de Guimarães'),
(126940, 101621, 'en', 'name', 'Guthrie Robert Packer Hospital'),
(126941, 101622, 'en', 'name', 'Marist College'),
(126942, 101623, 'pt', 'name', 'Escola de Negócios de Lisboa (Portugal)'),
(126943, 101623, 'en', 'name', 'Lisbon Business School'),
(126944, 101624, 'pt', 'name', 'Hospital LusĆ­adas Lisboa'),
(126945, 101625, 'pt', 'name', 'Fundação Portuguesa de Cardiologia'),
(126946, 101626, 'en', 'name', 'Western Connecticut Health Network'),
(126947, 101627, 'pt', 'name', 'Centro de Estudos Transdisciplinares para o Desenvolvimento'),
(126948, 101628, 'pt', 'name', 'Centro de QuĆ­mica'),
(126949, 101629, 'en', 'name', 'Gil Vicente Football Club'),
(126950, 101629, 'pt', 'name', 'Gil Vicente Futebol Clube Futebol SDUQ Lda (Portugal)'),
(126951, 101630, 'pt', 'name', 'Centro de Estudos de Comunicação e Sociedade'),
(126952, 101631, 'nl', 'name', 'Strukton (Netherlands)'),
(126953, 101632, 'en', 'name', 'National Institute of Food Technology, Entrepreneurship and Management - Thanjavur'),
(126954, 101633, 'es', 'name', 'Centro de Biomateriales e IngenierĆ­a Tisular'),
(126955, 101634, 'pt', 'name', 'GrƩmio LiterƔrio'),
(126956, 101635, 'en', 'name', 'Communal Institution of Higher Education «Dnipro Academy of Continuing Education» of Dnipropetrovsk Regional Council'),
(126957, 101635, 'uk', 'name', 'Комунальний заклаГ вищої освіти "Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń неперервної освіти" Š”Š½Ń–ŠæŃ€Š¾ŠæŠµŃ‚Ń€Š¾Š²ŃŃŒŠŗŠ¾Ń— обласної раГи'),
(126958, 101636, 'en', 'name', 'Al-Farabi University College'),
(126959, 101636, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŁŲ§Ų±Ų§ŲØŁŠ الجامعة'),
(126960, 101637, 'en', 'name', 'U.S. Air Force Sustainment Center'),
(126961, 101638, 'en', 'name', 'People’s Hospital of Rizhao'),
(126962, 101639, 'pt', 'name', 'Centro de Reabilitação Profissional de Gaia'),
(126963, 101640, 'en', 'name', 'The CHILDS Trust Medical Research Foundation'),
(126964, 101641, 'pt', 'name', 'CĆ¢mara Municipal de Coimbra'),
(126965, 101642, 'en', 'name', 'Sano – Centre for Computational Personalised Medicine International Research Foundation'),
(126966, 101643, 'ro', 'name', 'Asociatia Românã a Cãrnii'),
(126967, 101644, 'pt', 'name', 'Sociedade Portuguesa de Dermatologia e Venereologia'),
(126968, 101645, 'en', 'name', 'Atomic Energy Society of Japan'),
(126969, 101645, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŽŸå­åŠ›å­¦ä¼š'),
(126970, 101646, 'pt', 'name', 'Instituto de Investigação e Desenvolvimento Tecnológico para a Construção Energia Ambiente e Sustentabilidade'),
(126971, 101647, 'pt', 'name', 'Fundação Amadeu Dias'),
(126972, 101648, 'es', 'name', 'Universidad Tecnológica de Zinacantepec'),
(126973, 101649, 'pt', 'name', 'Centro de Biotecnologia de Plantas da Beira Interior'),
(126974, 101650, 'en', 'name', 'Chinese Mechanical Engineering Society'),
(126975, 101650, 'zh', 'name', 'äø­å›½ęœŗę¢°å·„ēØ‹å­¦ä¼š'),
(126976, 101651, 'en', 'name', 'Ministry of Food Processing Industries'),
(126977, 101652, 'en', 'name', 'Bedford College'),
(126978, 101653, 'pt', 'name', 'Centro de Investigação em Antropologia e Saúde'),
(126979, 101654, 'pt', 'name', 'Centro de MatemƔtica'),
(126980, 101655, 'en', 'name', 'Brazilian Air Force'),
(126981, 101655, 'fr', 'name', 'Force aƩrienne brƩsilienne'),
(126982, 101655, 'pt', 'name', 'ForƧa AƩrea Brasileira'),
(126983, 101655, 'es', 'name', 'Fuerza AƩrea BrasileƱa'),
(126984, 101656, 'pt', 'name', 'Centro de Imagem Biomédica e Investigação Translacional'),
(126985, 101657, 'en', 'name', 'International Organization for Standardization'),
(126986, 101658, 'pt', 'name', 'CĆ¢mara Municipal de Loures'),
(126987, 101659, 'tr', 'name', 'Ɩzgür Yayınları'),
(126988, 101660, 'en', 'name', 'Japan Radiological Society'),
(126989, 101660, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»å­¦ę”¾å°„ē·šå­¦ä¼š'),
(126990, 101661, 'pt', 'name', 'Instituto de Estudos Avançados em Catolicismo e Globalização'),
(126991, 101662, 'en', 'name', 'IEEE Communications Society'),
(126992, 101663, 'de', 'name', 'VRVis GmbH (Austria)'),
(126993, 101664, 'pt', 'name', 'Qualiseg Engenharia e Gestão Lda (Portugal)'),
(126994, 101664, 'en', 'name', 'Qualiseg Engineering and Management'),
(126995, 101665, 'en', 'name', 'Mining and Metallurgical Institute of Tajikistan'),
(126996, 101665, 'ru', 'name', 'Горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ТаГжикистана'),
(126997, 101665, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠŗŠ°Š“Š°Šø ŠŗÓÆŅ³ŠøŃŽ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Тоҷикистон'),
(126998, 101666, 'pt', 'name', 'Fatec Praia Grande'),
(126999, 101667, 'en', 'name', 'Astroserver (Hungary)'),
(127000, 101668, 'en', 'name', 'IMPACT School of Architecture'),
(127001, 101669, 'en', 'name', 'National Commission for Museums and Monuments'),
(127002, 101670, 'es', 'name', 'Nodos Culturales'),
(127003, 101671, 'no_lang_code', 'name', 'North Bay Shellfish (United Kingdom)'),
(127004, 101672, 'pt', 'name', 'ForƧa AƩrea Portuguesa'),
(127005, 101673, 'fr', 'name', 'ArmƩe canadienne'),
(127006, 101673, 'en', 'name', 'Canadian Army'),
(127007, 101674, 'ro', 'name', 'Regia Autonomă de Transport București'),
(127008, 101674, 'en', 'name', 'Romanian Society of Trams'),
(127009, 101675, 'en', 'name', 'Champalimaud Foundation'),
(127010, 101676, 'pt', 'name', 'Escola de Hotelaria e Turismo do Porto'),
(127011, 101677, 'pt', 'name', 'Centro de Direito da FamĆ­lia'),
(127012, 101678, 'es', 'name', 'ClĆ­nica Mayo');
INSERT INTO `ror_settings` VALUES
(127013, 101678, 'en', 'name', 'Mayo Clinic'),
(127014, 101679, 'pt', 'name', 'Centro de Estudos IbƩricos'),
(127015, 101680, 'pt', 'name', 'Comissão Nacional de Eleições'),
(127016, 101681, 'en', 'name', 'Autonomous University of Bucaramanga'),
(127017, 101681, 'es', 'name', 'Universidad Autónoma de Bucaramanga'),
(127018, 101682, 'es', 'name', 'Instituto Tecnológico y de Estudios Superiores de Occidente'),
(127019, 101683, 'en', 'name', 'IEEE Standards Association'),
(127020, 101684, 'en', 'name', 'Andrzej Frycz Modrzewski Krakow University'),
(127021, 101684, 'pl', 'name', 'Uniwersytet Andrzeja Frycza Modrzewskiego w Krakowie'),
(127022, 101685, 'en', 'name', 'U.S. Air Force Research Laboratory Space Vehicles Directorate'),
(127023, 101686, 'en', 'name', 'Institute of High Temperature Electrochemistry'),
(127024, 101686, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŠø Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(127025, 101687, 'en', 'name', 'Future Evidence Foundation'),
(127026, 101688, 'pt', 'name', 'Instituto Gulbenkian de CiĆŖncia'),
(127027, 101689, 'en', 'name', 'NSF Ocean Observatories Initiative'),
(127028, 101690, 'pt', 'name', 'Secretaria Regional da Saúde e Segurança Social'),
(127029, 101691, 'en', 'name', 'Minneapolis College'),
(127030, 101692, 'en', 'name', 'Defence Research and Development Canada'),
(127031, 101692, 'fr', 'name', 'Recherche & dƩveloppement pour la dƩfense Canada'),
(127032, 101693, 'pt', 'name', 'Centro Tecnológico da Cortiça'),
(127033, 101694, 'fr', 'name', 'Le Village FranƧais du NigƩria'),
(127034, 101694, 'en', 'name', 'The Nigeria French Language Village'),
(127035, 101695, 'en', 'name', 'International Nosocomial Infection Control Consortium Foundation'),
(127036, 101696, 'pt', 'name', 'Content Ed Net Ltda (Portugal)'),
(127037, 101697, 'en', 'name', 'U.S. Air Force Research Laboratory Aerospace Systems Directorate'),
(127038, 101698, 'en', 'name', 'Hospice Africa France'),
(127039, 101699, 'en', 'name', 'Korean Society for Aeronautical and Space Science'),
(127040, 101699, 'ko', 'name', 'ķ•œźµ­ķ•­ź³µģš°ģ£¼ķ•™ķšŒ'),
(127041, 101700, 'pt', 'name', 'Instituto de Investigação em Vulcanologia e Avaliação de Riscos'),
(127042, 101701, 'fr', 'name', 'Aviation royale canadienne'),
(127043, 101701, 'en', 'name', 'Royal Canadian Air Force'),
(127044, 101702, 'en', 'name', 'Institute for Education Bucharest'),
(127045, 101702, 'ro', 'name', 'Institutul pentru Educatie (Bucuresti)'),
(127046, 101703, 'pt', 'name', 'História Territórios e Comunidades'),
(127047, 101704, 'en', 'name', 'Department of National Defence'),
(127048, 101704, 'fr', 'name', 'Ministère de la Défense nationale'),
(127049, 101705, 'pt', 'name', 'Fidelidade Companhia de Seguros SA (Portugal)'),
(127050, 101705, 'en', 'name', 'Fidelidade Insurance Company'),
(127051, 101706, 'en', 'name', 'Athenaeum University'),
(127052, 101706, 'ro', 'name', 'Universitatea Athenaeum'),
(127053, 101707, 'en', 'name', 'Bjelovar University of Applied Sciences'),
(127054, 101707, 'hr', 'name', 'VeleučiliŔte u Bjelovaru'),
(127055, 101708, 'en', 'name', 'Sacred Heart Seminary and School of Theology'),
(127056, 101709, 'pt', 'name', 'Centro Tecnológico da Cerâmica e do Vidro (Portugal)'),
(127057, 101709, 'en', 'name', 'Technological Centre for Ceramics and Glass'),
(127058, 101710, 'fr', 'name', 'Centre de Droit Social'),
(127059, 101711, 'en', 'name', 'Berkeley Eye Center'),
(127060, 101712, 'pt', 'name', 'Instituto Rocha Cabral'),
(127061, 101713, 'en', 'name', 'Institute of Geological Sciences'),
(127062, 101714, 'id', 'name', 'Kementerian Luar Negeri Republik Indonesia'),
(127063, 101714, 'en', 'name', 'Ministry of Foreign Affairs'),
(127064, 101715, 'en', 'name', 'Shiite Endowment Diwan'),
(127065, 101716, 'en', 'name', 'Ivey Business School'),
(127066, 101717, 'pt', 'name', 'Jerónimo Martins (Portugal)'),
(127067, 101718, 'pt', 'name', 'Centro de Estudos e Formação Avançada em Gestão e Economia'),
(127068, 101719, 'en', 'name', 'Adera Medical Center'),
(127069, 101720, 'en', 'name', 'Wekerle Business School'),
(127070, 101720, 'hu', 'name', 'Wekerle SĆ”ndor Üzleti Főiskola'),
(127071, 101721, 'en', 'name', 'Institute of Oncology Research'),
(127072, 101722, 'es', 'name', 'Escuela de Posgrado Newman'),
(127073, 101722, 'en', 'name', 'Newman Graduate School'),
(127074, 101723, 'en', 'name', 'Federal University of Health Sciences Azare'),
(127075, 101724, 'en', 'name', 'Minneapolis Public Library'),
(127076, 101725, 'pt', 'name', 'Centro de Investigação Naval'),
(127077, 101726, 'en', 'name', 'GeoSphere Austria'),
(127078, 101727, 'pt', 'name', 'Centro de Medicina de Reabilitação da Região Centro Rovisco Pais'),
(127079, 101728, 'en', 'name', 'American Bryological and Lichenological Society'),
(127080, 101729, 'en', 'name', 'Benghazi Modern University'),
(127081, 101729, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŲŗŲ§Ų²ŁŠ Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(127082, 101730, 'no_lang_code', 'name', 'Shijonawate Gakuen University'),
(127083, 101730, 'ja', 'name', 'å››ę¢ē•·å­¦åœ’å¤§å­¦'),
(127084, 101731, 'en', 'name', 'International Kidney Stone Institute'),
(127085, 101732, 'pt', 'name', 'Hospital da Horta EPER'),
(127086, 101733, 'en', 'name', 'Health Data Hub'),
(127087, 101734, 'pt', 'name', 'Centro de Investigação e Intervenção Educativas'),
(127088, 101735, 'pt', 'name', 'Unidade Local de SaĆŗde de Castelo Branco EPE'),
(127089, 101736, 'pt', 'name', 'Sociedade Portuguesa de Enfermagem de SaĆŗde Mental'),
(127090, 101737, 'en', 'name', 'In-Service Aircraft for a Global Observing System'),
(127091, 101738, 'es', 'name', 'Instituto Tecnológico de MazatlÔn'),
(127092, 101739, 'en', 'name', 'LBJ Tropical Medical Center'),
(127093, 101740, 'en', 'name', 'La Jolla Institute for Immunology'),
(127094, 101741, 'en', 'name', 'Korean Orthopaedic Association'),
(127095, 101741, 'ko', 'name', 'ėŒ€ķ•œģ •ķ˜•ģ™øź³¼ķ•™ķšŒ'),
(127096, 101742, 'pt', 'name', 'Centro de Psicologia'),
(127097, 101743, 'pt', 'name', 'Instituto das Florestas e Conservação da Natureza'),
(127098, 101744, 'en', 'name', 'China Resources Cement Technology Research and Development (Guangxi) Company Limited (China)'),
(127099, 101744, 'zh', 'name', 'åŽę¶¦å»ŗęē§‘ęŠ€å®˜ē½‘'),
(127100, 101745, 'pl', 'name', 'Uniwersytet Witolda Wielkiego'),
(127101, 101745, 'en', 'name', 'Vytautas Magnus University'),
(127102, 101745, 'lt', 'name', 'Vytauto Didžiojo universitetas'),
(127103, 101745, 'ru', 'name', 'Университет Витовта Великого'),
(127104, 101746, 'en', 'name', 'Leibniz Institute for Tropospheric Research'),
(127105, 101746, 'de', 'name', 'Leibniz-Institut für Troposphärenforschung'),
(127106, 101747, 'pt', 'name', 'Santa Casa da Misericórdia do Porto'),
(127107, 101748, 'en', 'name', 'Bangladesh Agricultural Research Council'),
(127108, 101749, 'en', 'name', 'Australia''s Climate Simulator'),
(127109, 101750, 'en', 'name', 'Institute of Advanced Social Studies'),
(127110, 101750, 'es', 'name', 'Instituto de Estudios Sociales Avanzados'),
(127111, 101751, 'en', 'name', 'Center for Translational Medicine'),
(127112, 101751, 'pl', 'name', 'Centrum Medycyny Translacyjnej'),
(127113, 101752, 'en', 'name', 'Center for Health Research Studies'),
(127114, 101752, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„ŲµŲ­ŁŠŲ©'),
(127115, 101753, 'fr', 'name', 'Groupe de Recherche sur l''Inadaptation Psychosociale Chez l''Enfant'),
(127116, 101753, 'en', 'name', 'Research Unit on Children''s Psychosocial Maladjustment'),
(127117, 101754, 'sr', 'name', 'Institut za higijenu i tehnologiju mesa'),
(127118, 101755, 'fr', 'name', 'Territoires'),
(127119, 101756, 'en', 'name', 'TIB Open Publishing'),
(127120, 101757, 'pt', 'name', 'Direção Geral do Património Cultural'),
(127121, 101758, 'pt', 'name', 'Instituto de HidrƔulica e Recursos Hƭdricos'),
(127122, 101759, 'en', 'name', 'Institute of European Studies'),
(127123, 101760, 'en', 'name', 'MSD (Greece)'),
(127124, 101761, 'pt', 'name', 'Instituto Federal Sul-rio-grandense'),
(127125, 101761, 'en', 'name', 'Sul-rio-grandense Federal Institute'),
(127126, 101762, 'pt', 'name', 'Direção Regional dos Assuntos do Mar'),
(127127, 101763, 'fr', 'name', 'ModƩlisation SystƩmique AppliquƩe aux Ruminants'),
(127128, 101764, 'pt', 'name', 'Centro de Informação Antivenenos'),
(127129, 101765, 'pt', 'name', 'Centro de Investigação do Território Transportes e Ambiente'),
(127130, 101766, 'en', 'name', 'NOAA Earth System Research Laboratory'),
(127131, 101767, 'en', 'name', 'National Protective Security Authority'),
(127132, 101768, 'en', 'name', 'Agronomie'),
(127133, 101769, 'en', 'name', 'Canadian Armed Forces'),
(127134, 101769, 'fr', 'name', 'Forces ArmƩes Canadiennes'),
(127135, 101770, 'en', 'name', 'University of Technology Nowshera'),
(127136, 101771, 'en', 'name', 'Common Language Resources and Technology Infrastructure, Slovenia'),
(127137, 101772, 'pt', 'name', 'Fundação Francisco Manuel dos Santos'),
(127138, 101773, 'en', 'name', 'Alda Research Institute'),
(127139, 101774, 'pt', 'name', 'Centro de Estudos e Recuperação de Animais Selvagens'),
(127140, 101775, 'pt', 'name', 'Fundo Regional para a CiĆŖncia e Tecnologia'),
(127141, 101776, 'pt', 'name', 'Centro de Investigação Marinha e Ambiental'),
(127142, 101777, 'en', 'name', 'U.S. Air Force Research Laboratory Materials and Manufacturing Directorate'),
(127143, 101778, 'pt', 'name', 'Centro de Investigação em Cidades Inteligentes'),
(127144, 101779, 'pt', 'name', 'Hospital VeterinƔrio do Porto (Portugal)'),
(127145, 101779, 'en', 'name', 'Porto Veterinary Hospital'),
(127146, 101780, 'en', 'name', 'Federal Medical Center, Birnin Kudu'),
(127147, 101781, 'en', 'name', 'Northwell Health'),
(127148, 101782, 'en', 'name', 'Kyushu Dental Society'),
(127149, 101782, 'ja', 'name', 'ä¹å·žę­Æē§‘å­¦ä¼š'),
(127150, 101783, 'pt', 'name', 'Laboratório Associado ICVS 3B''s'),
(127151, 101784, 'pt', 'name', 'Centro de Investigação em Justiça e Governação'),
(127152, 101785, 'pt', 'name', 'Centro de Investigação em Informação Comunicação e Cultura Digital'),
(127153, 101786, 'en', 'name', 'Balfour Hospital'),
(127154, 101787, 'en', 'name', 'Inter-Research Science Publisher (Germany)'),
(127155, 101788, 'pt', 'name', 'Escola das Armas'),
(127156, 101789, 'en', 'name', 'Bucharest National University of Arts'),
(127157, 101789, 'ro', 'name', 'Universitatea Națională de Arte București'),
(127158, 101790, 'pt', 'name', 'Sociedade Portuguesa de Endoscopia Digestiva'),
(127159, 101791, 'en', 'name', 'The Royal Melbourne Hospital'),
(127160, 101792, 'en', 'name', 'Ball Memorial Hospital'),
(127161, 101793, 'en', 'name', 'University of Opole'),
(127162, 101794, 'en', 'name', 'The Korea Academia-Industrial Cooperation Society'),
(127163, 101794, 'ko', 'name', 'ķ•œźµ­ģ‚°ķ•™źø°ģˆ ķ•™ķšŒ'),
(127164, 101795, 'en', 'name', 'National University of Colombia'),
(127165, 101795, 'es', 'name', 'Universidad Nacional de Colombia'),
(127166, 101796, 'en', 'name', 'Salymbekov University'),
(127167, 101796, 'ky', 'name', 'Далымбеков ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(127168, 101797, 'fr', 'name', 'Territoires, Environnement, TƩlƩdƩtection et Information Spatiale'),
(127169, 101798, 'es', 'name', 'Instituto Tecnológico José Mario Molina Pasquel y Henrique'),
(127170, 101799, 'en', 'name', 'Arkalyk State Pedagogical Institute named after Ibrai Altynsarin'),
(127171, 101799, 'ru', 'name', 'Аркалыкский пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. И. Алтынсарина'),
(127172, 101799, 'kk', 'name', 'Š«.Алтынсарин атынГағы Арқалық пеГагогикалық ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(127173, 101800, 'en', 'name', 'U.S. Air Force Research Laboratory Information Directorate'),
(127174, 101801, 'pt', 'name', 'Centro de Estudos e Formação Avançada em Gestão e Economia'),
(127175, 101802, 'en', 'name', 'Srinivas University'),
(127176, 101802, 'ta', 'name', 'ą®šą®æą®±ąÆ€ą®©ą®æą®µą®¾ą®šąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(127177, 101803, 'fr', 'name', 'FƩdƩration RƩgionale des Acteurs en Promotion de la SantƩ'),
(127178, 101804, 'pt', 'name', 'Centro de Medicina AeronƔutica'),
(127179, 101805, 'ro', 'name', 'Garda Nationala de Mediu'),
(127180, 101806, 'en', 'name', 'Vassar Brothers Medical Center'),
(127181, 101807, 'no_lang_code', 'name', 'Blue Point IT Solutions (Romania)'),
(127182, 101808, 'en', 'name', 'Aleksandras Stulginskis University'),
(127183, 101808, 'lt', 'name', 'Aleksandro Stulginskio universitetas'),
(127184, 101808, 'pl', 'name', 'Uniwersytet Aleksandrasa Stulginskisa'),
(127185, 101809, 'pt', 'name', 'Hospital de Sant''Ana'),
(127186, 101810, 'en', 'name', 'SSH-council of the Netherlands'),
(127187, 101810, 'nl', 'name', 'SSH-raad'),
(127188, 101811, 'en', 'name', 'Dublin Tenants'),
(127189, 101812, 'pt', 'name', 'Centro de Investigação em Reabilitação'),
(127190, 101813, 'en', 'name', 'Union Adventist University'),
(127191, 101814, 'pt', 'name', 'Grupo Tecnimede (Portugal)'),
(127192, 101814, 'en', 'name', 'Tecnimede Group'),
(127193, 101815, 'en', 'name', 'Shijonawate Gakuen Junior College'),
(127194, 101815, 'ja', 'name', 'å››ę¢ē•·å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(127195, 101816, 'en', 'name', 'Technical University of Civil Engineering of Bucharest'),
(127196, 101816, 'ro', 'name', 'Universitatea Tehnică de Construcții din București'),
(127197, 101817, 'en', 'name', 'Q University'),
(127198, 101817, 'ru', 'name', 'коллеГжа Ā«ŠšŠ°Š¹Š½Š°Ń€Ā»'),
(127199, 101817, 'kk', 'name', 'ŅšŠ°Š¹Š½Š°Ń€ ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(127200, 101818, 'en', 'name', 'Institute of Electrical and Electronics Engineers'),
(127201, 101819, 'de', 'name', 'DVGW-Forschungsstelle TUHH'),
(127202, 101820, 'en', 'name', 'Specialized Hospital for Active Treatment of Children''s Diseases "Prof. Ivan Mitev" ЕАD-Sofia'),
(127203, 101820, 'bg', 'name', 'Дпециализирана болница за активно лечение по Гетски болести – проф.Иван ŠœŠøŃ‚ев ЕАД-Š”Š¾Ń„ŠøŃ'),
(127204, 101821, 'pt', 'name', 'Direção de Formação'),
(127205, 101822, 'lt', 'name', 'Lietuvos edukologijos universitetas'),
(127206, 101822, 'en', 'name', 'Lithuanian University of Educational Sciences'),
(127207, 101822, 'pl', 'name', 'Wileński Uniwersytet Pedagogiczny'),
(127208, 101822, 'ru', 'name', 'Литовский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Ń… наук'),
(127209, 101823, 'pt', 'name', 'Embaixada da República da Indonésia'),
(127210, 101823, 'en', 'name', 'Embassy of the Republic of Indonesia Lisabon'),
(127211, 101823, 'id', 'name', 'Kedutaan Besar Republik Indonesia Lisabon Republik Portugal'),
(127212, 101824, 'en', 'name', 'Dutchess Community College'),
(127213, 101825, 'id', 'name', 'Lembaga Pengelola Dana Pendidikan'),
(127214, 101826, 'pt', 'name', 'Hospital-Escola da Universidade Fernando Pessoa'),
(127215, 101827, 'en', 'name', 'Romanian Educational and Research Network'),
(127216, 101828, 'en', 'name', 'Institute of Agriculture of Carpathian Region of National Academy of Agrarian Sciences of Ukraine'),
(127217, 101828, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ Ń€ŠµŠ³Ń–Š¾Š½Ńƒ ŠŠ°Ń†Ń–Š¾Š½Š°ĢŠ»ŃŒŠ½Š¾Ń— акаГе́мії агра́рних нау́к України'),
(127218, 101829, 'en', 'name', 'Maryam Abacha American University of Niger'),
(127219, 101830, 'en', 'name', 'Observation International'),
(127220, 101831, 'en', 'name', 'Indian Society of Agricultural Engineers'),
(127221, 101831, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ अभियंता ą¤øą„‹ą¤øą¤¾ą¤Æą¤Ÿą„€'),
(127222, 101832, 'pt', 'name', 'Universidade de Coimbra Centro de GeociĆŖncias'),
(127223, 101833, 'en', 'name', 'Datascope Analytics'),
(127224, 101834, 'no_lang_code', 'name', 'BioClin (Ireland)'),
(127225, 101835, 'en', 'name', 'IEEE Photonics Society'),
(127226, 101836, 'en', 'name', 'MSD (Hungary)'),
(127227, 101837, 'en', 'name', 'Medical University of Sofia'),
(127228, 101837, 'bg', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Š”Š¾Ń„ŠøŃ'),
(127229, 101838, 'en', 'name', 'Mt. Cuba Astronomical Observatory'),
(127230, 101839, 'pt', 'name', 'Base Naval de Lisboa'),
(127231, 101840, 'pt', 'name', 'Centro de FĆ­sica'),
(127232, 101841, 'en', 'name', 'Institute of Natural Sciences and Applied Technology'),
(127233, 101842, 'pt', 'name', 'Grupo HPA SaĆŗde'),
(127234, 101843, 'pt', 'name', 'Centro de Engenharia Mecânica Materiais e Processos'),
(127235, 101844, 'en', 'name', 'Audio Engineering Society, Inc. (United States)'),
(127236, 101845, 'pt', 'name', 'Centro de Investigação em Estudos da Criança'),
(127237, 101846, 'en', 'name', 'The Japanese Association of Indian and Buddhist Studies'),
(127238, 101846, 'ja', 'name', 'ę—„ęœ¬å°åŗ¦å­¦ä»ę•™å­¦ä¼š'),
(127239, 101847, 'en', 'name', 'Methodist Hospital'),
(127240, 101848, 'en', 'name', 'Hamburg University of Music and Drama'),
(127241, 101848, 'de', 'name', 'Hochschule für Musik und Theater Hamburg'),
(127242, 101849, 'en', 'name', 'Kyiv Institute of the National Guard of Ukraine'),
(127243, 101850, 'pt', 'name', 'Centro de Filosofia'),
(127244, 101851, 'it', 'name', 'Istituti di Ricovero e Cura a Carattere Scientifico'),
(127245, 101852, 'en', 'name', 'Henan Vocational University of Science and Technology'),
(127246, 101853, 'pt', 'name', 'Centro de Desenvolvimento do Potencial Humano'),
(127247, 101854, 'pt', 'name', 'Centro de Estudos da População Economia e Sociedade'),
(127248, 101855, 'pt', 'name', 'Fundação José Saramago'),
(127249, 101856, 'ro', 'name', 'Spitalul Clinic de Psihiatrie Alexandru Obregia'),
(127250, 101857, 'en', 'name', 'Japanese Society of Medical Instrumentation'),
(127251, 101857, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»ē™‚ę©Ÿå™Øå­¦ä¼š'),
(127252, 101858, 'en', 'name', 'MSD (Peru)'),
(127253, 101859, 'fr', 'name', 'Institut des Hautes Ɖtudes pour l’Innovation et l’Entreprenariat - IHEIE'),
(127254, 101859, 'en', 'name', 'Institute of Higher Education for Innovation and Entrepreneurship - IHEIE'),
(127255, 101860, 'es', 'name', 'Sistema Universitario de Nebraska'),
(127256, 101860, 'en', 'name', 'University of Nebraska System'),
(127257, 101860, 'fr', 'name', 'UniversitƩ du nebraska'),
(127258, 101861, 'en', 'name', 'U.S. Air Force Institute of Technology'),
(127259, 101862, 'en', 'name', 'German Environment Agency'),
(127260, 101862, 'de', 'name', 'Umweltbundesamt'),
(127261, 101863, 'en', 'name', 'The Society of Chemical Engineers, Japan'),
(127262, 101863, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ–å­¦å·„å­¦ä¼š'),
(127263, 101864, 'en', 'name', 'Royal Military Academy Sandhurst'),
(127264, 101865, 'pt', 'name', 'Ordem dos Nutricionistas'),
(127265, 101866, 'pt', 'name', 'Fundação Oriente'),
(127266, 101867, 'pt', 'name', 'Sociedade Portuguesa de ObstetrĆ­cia e Medicina Materno-Fetal'),
(127267, 101868, 'en', 'name', 'Bir Tikendrajit University'),
(127268, 101869, 'pt', 'name', 'Unidade Local de SaĆŗde do Baixo Alentejo'),
(127269, 101870, 'en', 'name', 'Chilean Institute for Disaster Resilience'),
(127270, 101870, 'es', 'name', 'Instituto para la Resiliencia ante Desastres'),
(127271, 101871, 'pt', 'name', 'Comando do Pessoal'),
(127272, 101872, 'en', 'name', 'Nigerian Army University Biu'),
(127273, 101873, 'pt', 'name', 'Centro de Investigação em Agronomia Alimentos Ambiente e Paisagem'),
(127274, 101874, 'en', 'name', 'Pharmaceutical Society of Japan'),
(127275, 101874, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬å­¦ä¼š'),
(127276, 101875, 'en', 'name', 'Facility for Airborne Atmospheric Measurements'),
(127277, 101876, 'no_lang_code', 'name', 'MSD (Lithuania)'),
(127278, 101877, 'en', 'name', 'Japanese Pharmacological Society'),
(127279, 101877, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬ē†å­¦ä¼š'),
(127280, 101878, 'en', 'name', 'Japanese Dermatological Association'),
(127281, 101878, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēš®č†šē§‘å­¦ä¼š'),
(127282, 101879, 'pt', 'name', 'Centro de LinguĆ­stica da Universidade do Porto'),
(127283, 101880, 'pl', 'name', 'Szkoła Główna Gospodarstwa Wiejskiego w Warszawie'),
(127284, 101880, 'en', 'name', 'Warsaw University of Life Sciences'),
(127285, 101881, 'pt', 'name', 'Centro de Investigação DidÔtica e Tecnologia na Formação de Formadores'),
(127286, 101882, 'pt', 'name', 'Instituto Nacional da Propriedade Industrial'),
(127287, 101883, 'en', 'name', 'Woods Hole Oceanographic Institution'),
(127288, 101884, 'en', 'name', 'Yantai Institute of Coastal Zone Research'),
(127289, 101884, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ēƒŸå°ęµ·å²øåø¦ē ”ē©¶ę‰€'),
(127290, 101885, 'en', 'name', 'The Meteorological Society of Japan'),
(127291, 101885, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°—č±”å­¦ä¼š'),
(127292, 101886, 'en', 'name', 'IEEE Antennas and Propagation Society'),
(127293, 101887, 'fr', 'name', 'Centre de recherche multidisciplinaire en sciences humaines et sociales'),
(127294, 101888, 'pt', 'name', 'Museu Nacional da MĆŗsica'),
(127295, 101889, 'pt', 'name', 'Direcção-Geral de Alimentação e VeterinÔria'),
(127296, 101890, 'en', 'name', 'Institute of Ethnomusicology - Center for Studies in Music and Dance'),
(127297, 101890, 'pt', 'name', 'Instituto de Etnomusicologia - Centro de Estudos em Música e Dança'),
(127298, 101891, 'en', 'name', 'The Bedford College Group'),
(127299, 101892, 'en', 'name', 'The Charutar Vidya Mandal (CVM) University'),
(127300, 101893, 'en', 'name', 'European Doctoral School'),
(127301, 101894, 'en', 'name', 'University of Laghouat'),
(127302, 101894, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عمار Ų«Ł„ŁŠŲ¬ŁŠ'),
(127303, 101895, 'sr', 'name', 'Naučni institut za veterinarstvo Novi Sad'),
(127304, 101895, 'en', 'name', 'Scientific Veterinary Institute "Novi Sad"'),
(127305, 101896, 'pt', 'name', 'Conselho de Reitores das Universidades Portuguesas'),
(127306, 101897, 'pt', 'name', 'Instituto de Oftalmologia Dr Gama Pinto'),
(127307, 101898, 'pt', 'name', 'Centro de Estudo de BioƩtica'),
(127308, 101899, 'pt', 'name', 'Centro de Estudos Florestais'),
(127309, 101900, 'no_lang_code', 'name', 'ArheoloŔki Institut'),
(127310, 101900, 'en', 'name', 'Institute of Archaeology'),
(127311, 101900, 'sr', 'name', 'ŠŃ€Ń…ŠµŠ¾Š»Š¾ŃˆŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(127312, 101901, 'en', 'name', 'Western Nevada College'),
(127313, 101902, 'no_lang_code', 'name', 'Target Active Training (Romania)'),
(127314, 101903, 'en', 'name', 'International Information and Engineering Technology Association'),
(127315, 101904, 'fr', 'name', 'Louvre Abou Dabi'),
(127316, 101904, 'en', 'name', 'Louvre Abu Dhabi'),
(127317, 101904, 'ar', 'name', 'Ų§Ł„Ł„ŁˆŁŲ± أبوظبي'),
(127318, 101905, 'it', 'name', 'Istituto Oncologico della Svizzera Italiana'),
(127319, 101906, 'en', 'name', 'Brazilian Air Force University'),
(127320, 101906, 'pt', 'name', 'Universidade da ForƧa AƩrea'),
(127321, 101907, 'pt', 'name', 'Centro de CiĆŖncia e Tecnologia TĆŖxtil'),
(127322, 101908, 'en', 'name', 'Military Review'),
(127323, 101908, 'pt', 'name', 'Revista Militar (Portugal)'),
(127324, 101909, 'en', 'name', 'Indiana University Health'),
(127325, 101910, 'en', 'name', 'Srinath University'),
(127326, 101911, 'en', 'name', 'Civil Aeronautics Authority'),
(127327, 101912, 'en', 'name', 'Richard L. Roudebush VA Medical Center'),
(127328, 101913, 'eu', 'name', 'Bizkaiko Farmazilarien Elkargo Ofiziala'),
(127329, 101913, 'es', 'name', 'Colegio Oficial de FarmacƩuticos de Bizkaia'),
(127330, 101914, 'pt', 'name', 'Escola de Direito de São Paulo da Fundação Getulio Vargas'),
(127331, 101914, 'en', 'name', 'Fundação Getulio Vargas São Paulo Law School'),
(127332, 101915, 'pt', 'name', 'Centro de Tecnologia Mecânica e Automação'),
(127333, 101916, 'en', 'name', 'New Europe College'),
(127334, 101917, 'pt', 'name', 'Centro Português de Geo-História e Pré-História'),
(127335, 101918, 'pt', 'name', 'Fundação Gaspar Frutuoso'),
(127336, 101919, 'pt', 'name', 'Instituto Nacional de Administração'),
(127337, 101920, 'en', 'name', 'National Association for Practical Nurse Education and Service, Inc. (United States)'),
(127338, 101921, 'pt', 'name', 'CĆ¢mara Municipal de Aveiro'),
(127339, 101922, 'pt', 'name', 'Centro de Investigação em Arquitetura Urbanismo e Design'),
(127340, 101923, 'en', 'name', 'Danbury Hospital'),
(127341, 101924, 'en', 'name', 'Government of Sweden'),
(127342, 101924, 'sv', 'name', 'Konungariket Sveriges regering'),
(127343, 101925, 'fr', 'name', 'Centre de Sociologie EuropƩenne'),
(127344, 101926, 'en', 'name', 'FishEye Collaborative'),
(127345, 101927, 'no_lang_code', 'name', 'Astellas Pharma (Japan)'),
(127346, 101927, 'ja', 'name', 'ć‚¢ć‚¹ćƒ†ćƒ©ć‚¹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(127347, 101928, 'en', 'name', 'e-think energy research'),
(127348, 101929, 'en', 'name', 'National Research And Development Institute For Energy'),
(127349, 101930, 'pt', 'name', 'Centro de Investigação em Sociologia Económica e das Organizações'),
(127350, 101931, 'pt', 'name', 'Centro de Investigação Desenvolvimento e Inovação em Turismo Leiria'),
(127351, 101932, 'es', 'name', 'Instituto Tecnológico Superior de Salvatierra'),
(127352, 101933, 'es', 'name', 'Escuela Normal Superior del Estado'),
(127353, 101933, 'en', 'name', 'State Higher Normal School'),
(127354, 101934, 'en', 'name', 'Huawei Technologies (Poland)'),
(127355, 101935, 'en', 'name', 'Minnesota State Colleges and Universities System'),
(127356, 101936, 'en', 'name', 'Association of College and Research Libraries'),
(127357, 101937, 'en', 'name', 'The Korean Association of Internal Medicine'),
(127358, 101937, 'ko', 'name', 'ėŒ€ķ•œė‚“ź³¼ķ•™ķšŒ'),
(127359, 101938, 'pt', 'name', 'Instituto do Ambiente Tecnologia e Vida'),
(127360, 101939, 'de', 'name', 'Technischer Überwachungsverein'),
(127361, 101939, 'no_lang_code', 'name', 'TÜV Rheinland (Germany)'),
(127362, 101940, 'pt', 'name', 'Instituto de Medicina Molecular João Lobo Antunes'),
(127363, 101941, 'en', 'name', 'American Society for Horticultural Science'),
(127364, 101942, 'pt', 'name', 'Centro de Investigação em Sistemas Computacionais Embebidos e de Tempo-Real'),
(127365, 101943, 'pt', 'name', 'Direcção-Geral da Saúde'),
(127366, 101944, 'pt', 'name', 'Centro de Estudos e Investigação em Saúde'),
(127367, 101945, 'pt', 'name', 'Centro de Física Teórica e Computacional'),
(127368, 101946, 'en', 'name', 'International Image Sensor Society'),
(127369, 101947, 'pt', 'name', 'Centro de Estudos ClƔssicos e Humanƭsticos'),
(127370, 101948, 'en', 'name', 'U.S. Air Force Research Laboratory Directed Energy Directorate'),
(127371, 101949, 'en', 'name', 'IEEE Microwave Theory and Techniques Society'),
(127372, 101950, 'pt', 'name', 'Centro de Investigação em Sistemas e Tecnologias'),
(127373, 101951, 'pt', 'name', 'Associação BLC3 Campus de Tecnologia e Inovação'),
(127374, 101952, 'pt', 'name', 'APDSI'),
(127375, 101953, 'id', 'name', 'Sekolah Tinggi Ilmu Komunikasi Almamater Wartawan Surabaya'),
(127376, 101954, 'en', 'name', 'Maryam Abacha American University of Nigeria'),
(127377, 101955, 'en', 'name', 'Leibniz Centre for Agricultural Landscape Research'),
(127378, 101955, 'de', 'name', 'Leibniz-Zentrum für Agrarlandschaftsforschung'),
(127379, 101956, 'pt', 'name', 'Centro de Investigação em Meio Ambiente Genética e Oncobiologia'),
(127380, 101957, 'en', 'name', 'Fatima Animal Medical Center'),
(127381, 101958, 'es', 'name', 'Facultad de Contaduría y Administración'),
(127382, 101959, 'en', 'name', 'College of Science and Technology'),
(127383, 101960, 'pt', 'name', 'BPI Lisboa (Portugal)'),
(127384, 101960, 'en', 'name', 'BPI Lisbon'),
(127385, 101961, 'sr', 'name', 'Institut za zaŔtitu bilja i životnu sredinu'),
(127386, 101961, 'en', 'name', 'Institute for Plant Protection and Environment'),
(127387, 101962, 'pt', 'name', 'Administração do Porto de Lisboa SA (Portugal)'),
(127388, 101962, 'en', 'name', 'Port of Lisbon'),
(127389, 101963, 'pt', 'name', 'Centro de Investigação em Ciências da Saúde'),
(127390, 101964, 'en', 'name', 'Anthony J. Leggett Institute for Condensed Matter Theory'),
(127391, 101965, 'pt', 'name', 'Centro MƩdico DentƔrio (Portugal)'),
(127392, 101965, 'en', 'name', 'Dental Medical Centre'),
(127393, 101966, 'pt', 'name', 'Colaboratório para as Geociências'),
(127394, 101967, 'en', 'name', 'Mama Ngina University College'),
(127395, 101968, 'pt', 'name', 'Centro de Ecologia Evolução e Alterações Ambientais'),
(127396, 101969, 'en', 'name', 'American Association of Immunologists'),
(127397, 101970, 'id', 'name', 'Universitas Sari Mulia'),
(127398, 101971, 'en', 'name', 'South Ethiopia Regional State Health Bureau'),
(127399, 101972, 'pt', 'name', 'Autoridade Nacional de Comunicacoes'),
(127400, 101973, 'pt', 'name', 'Centro de Física Teórica de Partículas'),
(127401, 101974, 'en', 'name', 'Community Action Tenants Union'),
(127402, 101975, 'pt', 'name', 'Centro de Estudos GeogrƔficos'),
(127403, 101976, 'pt', 'name', 'Academia das CiĆŖncias de Lisboa'),
(127404, 101977, 'pt', 'name', 'Comando das ForƧas Terrestres'),
(127405, 101978, 'it', 'name', 'Ospedale generale di zona San Camillo Treviso'),
(127406, 101979, 'de', 'name', 'Deutscher EDV-Gerichtstag'),
(127407, 101980, 'en', 'name', 'Mt. Cuba Astronomical Foundation'),
(127408, 101981, 'pt', 'name', 'Centro de Estudos do Ambiente e do Mar'),
(127409, 101982, 'en', 'name', 'Chinese Medical Association'),
(127410, 101982, 'zh', 'name', 'äø­åŽåŒ»å­¦ä¼šåæƒč”€ē®”ē—…å­¦åˆ†ä¼š'),
(127411, 101983, 'pt', 'name', 'Centro de Investigação em Engenharia dos Processos Químicos e dos Produtos da Floresta'),
(127412, 101984, 'pt', 'name', 'Centro de Apoio Tecnológico à Indústria Metalomecânica'),
(127413, 101985, 'de', 'name', 'Deutscher Verein des Gas und Wasserfaches'),
(127414, 101985, 'en', 'name', 'German Technical and Scientific Association for Gas and Water'),
(127415, 101986, 'en', 'name', 'U.S. Army Research Institute of Environmental Medicine'),
(127416, 101987, 'nl', 'name', 'Provincie Overijssel'),
(127417, 101988, 'fr', 'name', 'CollĆØge international des sciences territoriales'),
(127418, 101989, 'en', 'name', 'NOAA Global Monitoring Laboratory'),
(127419, 101990, 'en', 'name', 'U.S. Air Force Test Center'),
(127420, 101991, 'pt', 'name', 'Centro Hospitalar do MƩdio Ave EPE'),
(127421, 101992, 'pt', 'name', 'Centro de Investigação de Montanha'),
(127422, 101993, 'en', 'name', 'Academy of Public Administration under the President of the Republic of Kazakhstan'),
(127423, 101993, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при ŠŸŃ€ŠµŠ·ŠøŠ“енте Республики ŠšŠ°Š·Š°Ń…стан'),
(127424, 101993, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Ń–Š½Ń–Ņ£ жанынГағы ŠœŠµŠ¼Š»ŠµŠŗŠµŃ‚Ń‚Ń–Šŗ Š±Š°ŃŅ›Š°Ń€Ńƒ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(127425, 101994, 'pt', 'name', 'Autoridade da ConcorrĆŖncia'),
(127426, 101995, 'pt', 'name', 'Grupo de Ativistas em Tratamentos'),
(127427, 101996, 'en', 'name', 'Cesar Vallejo University'),
(127428, 101996, 'es', 'name', 'Universidad CƩsar Vallejo'),
(127429, 101997, 'en', 'name', 'Thanh Dong University'),
(127430, 101997, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c ThĆ nh ĐƓng'),
(127431, 101998, 'en', 'name', 'State Biotechnological University'),
(127432, 101998, 'uk', 'name', 'Державний біотехнологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(127433, 101999, 'en', 'name', 'Nevada State University'),
(127434, 102000, 'en', 'name', 'Japanese Society of Otorhinolaryngology-Head and Neck Surgery, Inc. (Japan)'),
(127435, 102000, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č€³é¼»å’½å–‰ē§‘é ­é øéƒØå¤–ē§‘å­¦ä¼š'),
(127436, 102001, 'ro', 'name', 'Consiliul National pentru Dezvoltare si Inovare'),
(127437, 102001, 'en', 'name', 'National Council for Development and Innovation'),
(127438, 102002, 'en', 'name', 'NCCR Catalysis'),
(127439, 102003, 'pt', 'name', 'Centro de QuĆ­mica de Coimbra'),
(127440, 102004, 'en', 'name', 'Nuvance Health'),
(127441, 102005, 'pt', 'name', 'Guarda Nacional Republicana'),
(127442, 102006, 'no_lang_code', 'name', 'Bluepoint (Romania)'),
(127443, 102007, 'no_lang_code', 'name', 'Accent Pro 2000 (Romania)'),
(127444, 102008, 'en', 'name', 'Pabna Medical College'),
(127445, 102009, 'pt', 'name', 'Fundação Rebikoff-Niggeler'),
(127446, 102010, 'es', 'name', 'Instituto Tecnológico de Nuevo Leon'),
(127447, 102011, 'en', 'name', 'Guthrie Corning Hospital'),
(127448, 102012, 'pt', 'name', 'Centro de Investigação em Economia e Gestão'),
(127449, 102013, 'en', 'name', 'Brixsana Private Clinic'),
(127450, 102014, 'id', 'name', 'Sekolah Tinggi Ilmu Kesehatan Medistra Indonesia'),
(127451, 102015, 'no_lang_code', 'name', 'Industriplast (Norway)'),
(127452, 102016, 'lt', 'name', 'Lietuvos Mokslo Taryba'),
(127453, 102016, 'en', 'name', 'Research Council of Lithuania'),
(127454, 102017, 'en', 'name', 'U.S. Air Force Research Laboratory Munitions Directorate'),
(127455, 102018, 'en', 'name', 'Society of Motion Picture and Television Engineers'),
(127456, 102019, 'pt', 'name', 'Museu de Cerâmica'),
(127457, 102020, 'en', 'name', 'R Core Team'),
(127458, 102021, 'pt', 'name', 'Ordem dos Psicólogos Portugueses'),
(127459, 102022, 'nl', 'name', 'Provincie Gelderland'),
(127460, 102023, 'en', 'name', 'SOLFARCOS - Pharmaceutical and Cosmetic Solutions Ltd'),
(127461, 102023, 'pt', 'name', 'Solfarcos LDA (Portugal)'),
(127462, 102024, 'fr', 'name', 'Montpellier Recherche en Management'),
(127463, 102025, 'eu', 'name', 'Andaluziako Junta'),
(127464, 102025, 'es', 'name', 'Junta de AndalucĆ­a'),
(127465, 102025, 'en', 'name', 'Regional Government of Andalusia'),
(127466, 102026, 'de', 'name', 'Institut für digitale Gesundheitsdaten Rheinland-Pfalz'),
(127467, 102027, 'en', 'name', 'Pravara Rural College of Pharmacy Pravaranagar'),
(127468, 102028, 'en', 'name', 'The Japanese Psychological Association'),
(127469, 102028, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åæƒē†å­¦ä¼š'),
(127470, 102029, 'de', 'name', 'Deutsche Rentenversicherung Bund'),
(127471, 102030, 'no_lang_code', 'name', 'SolanoTech (Ireland)'),
(127472, 102031, 'en', 'name', 'Music Library Association'),
(127473, 102032, 'fr', 'name', 'SUMMIT'),
(127474, 102033, 'no_lang_code', 'name', 'Innocoll (Ireland)'),
(127475, 102034, 'en', 'name', 'The Japanese Society of Internal Medicine'),
(127476, 102034, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†…ē§‘å­¦ä¼š'),
(127477, 102035, 'en', 'name', 'Institute for Information Technologies Kragujevac'),
(127478, 102035, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за информационе Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ˜Šµ ŠšŃ€Š°Š³ŃƒŃ˜ŠµŠ²Š°Ń†'),
(127479, 102036, 'pt', 'name', 'Centro de Estudos e Investigação em Direito'),
(127480, 102037, 'en', 'name', 'Sunni Endowment Diwan'),
(127481, 102038, 'en', 'name', 'Turkish Radio and Television Corporation'),
(127482, 102038, 'tr', 'name', 'Türkiye Radyo ve Televizyon Kurumu'),
(127483, 102039, 'es', 'name', 'Hospital Zambrano Hellion'),
(127484, 102040, 'de', 'name', 'Virtuelle Hochschule Bayern'),
(127485, 102041, 'pt', 'name', 'Comissão do Mercado de Valores MobiliÔrios'),
(127486, 102042, 'no_lang_code', 'name', 'Reuniwatt (France)'),
(127487, 102042, 'fr', 'name', 'Reuniwatt SAS'),
(127488, 102043, 'no_lang_code', 'name', 'ThyssenKrupp (Brazil)'),
(127489, 102044, 'de', 'name', 'Michael Succow Stiftung zum Schutz der Natur'),
(127490, 102045, 'pt', 'name', 'Instituto de Gestão e Administração Pública'),
(127491, 102046, 'en', 'name', 'Centre for Human Genetics'),
(127492, 102047, 'en', 'name', 'Japan Audiological Society'),
(127493, 102047, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č“č¦šåŒ»å­¦ä¼š'),
(127494, 102048, 'en', 'name', 'Zymo Research Corporation (United States)'),
(127495, 102049, 'pt', 'name', 'Observatório da Comunicação'),
(127496, 102050, 'en', 'name', 'University of Hillah'),
(127497, 102050, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الحلة'),
(127498, 102051, 'no_lang_code', 'name', 'MSD (Switzerland)'),
(127499, 102052, 'en', 'name', 'Minnesota State University, Mankato'),
(127500, 102052, 'fr', 'name', 'UniversitĆ© d''Ɖtat du Minnesota'),
(127501, 102053, 'pt', 'name', 'Centro de Estudos em Educação e Inovação'),
(127502, 102054, 'en', 'name', 'Unnan City Hospital'),
(127503, 102054, 'ja', 'name', 'é›²å—åø‚ē«‹ē—…é™¢'),
(127504, 102055, 'en', 'name', 'Sapporo Yamanoue Hospital'),
(127505, 102055, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗęœ­å¹Œå±±ć®äøŠē—…é™¢'),
(127506, 102056, 'en', 'name', 'Japan Automobile Manufacturers Association, Inc.'),
(127507, 102056, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»Šå·„ę„­ä¼š'),
(127508, 102057, 'en', 'name', 'Tochigi Prefectural Government'),
(127509, 102057, 'ja', 'name', '栃木県庁'),
(127510, 102058, 'en', 'name', 'IUCN World Commission on Environmental Law'),
(127511, 102059, 'en', 'name', 'Kawasaki Saiwai Hospital'),
(127512, 102059, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ēŸ³åæƒä¼šå·å“Žå¹øē—…é™¢'),
(127513, 102060, 'en', 'name', 'Japan Sabo Association'),
(127514, 102060, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ę²»ę°“ē ‚é˜²å”ä¼š'),
(127515, 102061, 'en', 'name', 'Japan AeroSpace Technology Foundation'),
(127516, 102061, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčˆŖē©ŗå®‡å®™ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(127517, 102062, 'en', 'name', 'Shizuoka Professional University of Agriculture'),
(127518, 102062, 'ja', 'name', 'é™å²”ēœŒē«‹č¾²ęž—ē’°å¢ƒå°‚é–€č·å¤§å­¦'),
(127519, 102063, 'en', 'name', 'Japan Fisheries Association'),
(127520, 102063, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§ę—„ęœ¬ę°“ē”£ä¼š'),
(127521, 102064, 'en', 'name', 'The Sasakawa Peace Foundation'),
(127522, 102064, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē¬¹å·å¹³å’Œč²”å›£'),
(127523, 102065, 'es', 'name', 'Hospital Royo Villanova'),
(127524, 102066, 'en', 'name', 'Iwaki City Medical Center'),
(127525, 102066, 'ja', 'name', 'ć„ć‚ćåø‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(127526, 102067, 'en', 'name', 'Koga Red Cross Hospital'),
(127527, 102067, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾å¤ę²³čµ¤åå­—ē—…é™¢'),
(127528, 102068, 'en', 'name', 'Japan Marrow Donor Program'),
(127529, 102068, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éŖØé«„ćƒćƒ³ć‚Æ'),
(127530, 102069, 'en', 'name', 'The Life Planning Center Foundation'),
(127531, 102069, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ©ć‚¤ćƒ•ćƒ»ćƒ—ćƒ©ćƒ³ćƒ‹ćƒ³ć‚°ćƒ»ć‚»ćƒ³ć‚æćƒ¼'),
(127532, 102070, 'fr', 'name', 'UniversitƩ de Versailles Saint-Quentin-en-Yvelines'),
(127533, 102070, 'en', 'name', 'Versailles Saint-Quentin-en-Yvelines University'),
(127534, 102071, 'en', 'name', 'Miyagi Prefecture Fisheries Technology Institute'),
(127535, 102071, 'ja', 'name', 'å®®åŸŽēœŒę°“ē”£ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(127536, 102072, 'de', 'name', 'Bundesministerium der Verteidigung'),
(127537, 102072, 'en', 'name', 'Federal Ministry of Defence'),
(127538, 102072, 'fr', 'name', 'Ministère Fédéral de la Défense'),
(127539, 102073, 'en', 'name', 'Tochigi Prefectural Livestock & Dairy Experimental Center'),
(127540, 102073, 'ja', 'name', 'ę ƒęœØēœŒē•œē”£é…Ŗč¾²ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(127541, 102074, 'en', 'name', 'Hirosaki University of Health and Welfare'),
(127542, 102074, 'ja', 'name', 'å¼˜å‰åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(127543, 102075, 'en', 'name', 'The Japanese Society of Nutrition and Dietetics'),
(127544, 102075, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ę „é¤Šę”¹å–„å­¦ä¼š'),
(127545, 102076, 'en', 'name', 'The Society of Photography and Imaging of Japan'),
(127546, 102076, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†™ēœŸå­¦ä¼š'),
(127547, 102077, 'fr', 'name', 'Ministère des Solidarités et de la Santé'),
(127548, 102078, 'en', 'name', 'Mie Prefectural Government'),
(127549, 102078, 'ja', 'name', 'äø‰é‡ēœŒåŗ'),
(127550, 102079, 'en', 'name', 'JR Sapporo Hospital'),
(127551, 102079, 'ja', 'name', 'JRęœ­å¹Œē—…é™¢'),
(127552, 102080, 'en', 'name', 'Central Japan Industries'),
(127553, 102080, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­éƒØē”£ę„­é€£ē›Ÿ'),
(127554, 102081, 'en', 'name', 'Gifu Prefectural Industrial Technology Center'),
(127555, 102081, 'ja', 'name', 'å²é˜œēœŒē”£ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(127556, 102082, 'en', 'name', 'Association for Disaster Prevention Research'),
(127557, 102082, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé˜²ē½ē ”ē©¶å”ä¼š'),
(127558, 102083, 'en', 'name', 'Robarts Research Institute'),
(127559, 102084, 'en', 'name', 'Musashino Central Hospital'),
(127560, 102084, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·åˆä¼šę­¦č”µé‡Žäø­å¤®ē—…é™¢'),
(127561, 102085, 'ja', 'name', 'JAē§‹ē”°åŽšē”Ÿé€£åŒ—ē§‹ē”°åø‚ę°‘ē—…é™¢'),
(127562, 102085, 'en', 'name', 'Kita-akita Municipal Hospital'),
(127563, 102086, 'en', 'name', 'IUCN Climate Crisis Commission'),
(127564, 102087, 'en', 'name', 'Gifu Prefectural Agricultural Technology Center'),
(127565, 102087, 'ja', 'name', 'å²é˜œēœŒč¾²ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(127566, 102088, 'en', 'name', 'National Sanatorium Hoshizuka Keiaien'),
(127567, 102088, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€ę˜Ÿå”šę•¬ę„›åœ’'),
(127568, 102089, 'en', 'name', 'J A Kyosai Research Institute'),
(127569, 102089, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗJAå…±ęøˆē·åˆē ”ē©¶ę‰€'),
(127570, 102090, 'en', 'name', 'Daido Hospital'),
(127571, 102090, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå®ę½¤ä¼šå¤§åŒē—…é™¢'),
(127572, 102091, 'en', 'name', 'Atago Hospital'),
(127573, 102091, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę–°ę¾ē”°ä¼šę„›å®•ē—…é™¢'),
(127574, 102092, 'en', 'name', 'Omiya Medical Association'),
(127575, 102092, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§å®®åŒ»åø«ä¼š'),
(127576, 102093, 'sl', 'name', 'Rimska Univerza La Sapienza'),
(127577, 102093, 'en', 'name', 'Sapienza University of Rome'),
(127578, 102093, 'it', 'name', 'Sapienza – UniversitĆ  di Roma'),
(127579, 102093, 'ca', 'name', 'Universitat de Roma La Sapienza'),
(127580, 102093, 'fr', 'name', 'UniversitƩ La Sapienza de Rome'),
(127581, 102094, 'ja', 'name', 'JAē§‹ē”°åŽšē”Ÿé€£ē”±åˆ©ēµ„åˆē·åˆē—…é™¢'),
(127582, 102094, 'en', 'name', 'Yuri Kumiai General Hospital'),
(127583, 102095, 'en', 'name', 'ms consultants, inc.'),
(127584, 102096, 'en', 'name', 'Yamanashi Prefectural Industrial Technology Center'),
(127585, 102096, 'ja', 'name', 'å±±ę¢ØēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(127586, 102097, 'en', 'name', 'Osaka Design Center'),
(127587, 102097, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¤§é˜Ŗćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(127588, 102098, 'en', 'name', 'Minamiosaka Hospital'),
(127589, 102098, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę™Æå²³ä¼šå—å¤§é˜Ŗē—…é™¢'),
(127590, 102099, 'en', 'name', 'Ramaiah Institute of Technology'),
(127591, 102100, 'en', 'name', 'Nuclear Safety Research Association'),
(127592, 102100, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›å®‰å…Øē ”ē©¶å”ä¼š'),
(127593, 102101, 'en', 'name', 'Natural Hazards Research Australia'),
(127594, 102102, 'en', 'name', 'Shonan Keiiku Hospital'),
(127595, 102102, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å„č‚²ä¼šę¹˜å—ę…¶č‚²ē—…é™¢'),
(127596, 102103, 'en', 'name', 'Gifu International Center'),
(127597, 102103, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå²é˜œēœŒå›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(127598, 102104, 'en', 'name', 'Electric Technology Research Association'),
(127599, 102104, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—å”åŒē ”ē©¶ä¼š'),
(127600, 102105, 'en', 'name', 'Nagoya International Center'),
(127601, 102105, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(127602, 102106, 'en', 'name', 'Japan Food Industry Center'),
(127603, 102106, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé£Ÿå“ē”£ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(127604, 102107, 'en', 'name', 'Land Information Center'),
(127605, 102107, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœŸåœ°ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(127606, 102108, 'en', 'name', 'Tokyo Professional University of Health Sciences'),
(127607, 102108, 'ja', 'name', 'ę±äŗ¬äæå„åŒ»ē™‚å°‚é–€č·å¤§å­¦'),
(127608, 102109, 'en', 'name', 'Mimihara General Hospital'),
(127609, 102109, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒä»ä¼šč€³åŽŸē·åˆē—…é™¢'),
(127610, 102110, 'en', 'name', 'Minami Seikyo Hospital'),
(127611, 102110, 'ja', 'name', 'å—åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆē·åˆē—…é™¢å—ē”Ÿå”ē—…é™¢'),
(127612, 102111, 'uz', 'name', 'Alfraganus Universiteti'),
(127613, 102111, 'en', 'name', 'Alfraganus University'),
(127614, 102112, 'en', 'name', 'Hiroshima Prefectural Government'),
(127615, 102112, 'ja', 'name', '広島県庁'),
(127616, 102113, 'en', 'name', 'National Sanatorium Suruga'),
(127617, 102113, 'ja', 'name', 'å›½ē«‹é§æę²³ē™‚é¤Šę‰€'),
(127618, 102114, 'en', 'name', 'Dinajpur Medical College'),
(127619, 102114, 'bn', 'name', 'দিনাজপুর মেঔিকেল ą¦•ą¦²ą§‡ą¦œ, দিনাজপুর'),
(127620, 102115, 'en', 'name', 'University of Piemonte Orientale Amedeo Avogadro'),
(127621, 102115, 'it', 'name', 'UniversitĆ  degli Studi del Piemonte Orientale ā€œAmedeo Avogadroā€'),
(127622, 102116, 'en', 'name', 'Japanese Society of Tribologists'),
(127623, 102116, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒˆćƒ©ć‚¤ćƒœćƒ­ć‚øćƒ¼å­¦ä¼š'),
(127624, 102117, 'en', 'name', 'Fukui General Hospital'),
(127625, 102117, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę–°ē”°å”šåŒ»ē™‚ē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼ē¦äŗ•ē·åˆē—…é™¢'),
(127626, 102118, 'en', 'name', 'Northwest Pacific Region Environmental Cooperation Center'),
(127627, 102118, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē’°ę—„ęœ¬ęµ·ē’°å¢ƒå”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(127628, 102119, 'en', 'name', 'KKR Takamatsu Hospital'),
(127629, 102119, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šKKRé«˜ę¾ē—…é™¢'),
(127630, 102120, 'en', 'name', 'Environmental Management And Technology Center'),
(127631, 102120, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æē’°å¢ƒē®”ē†ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(127632, 102121, 'en', 'name', 'The Robotics Society of Japan'),
(127633, 102121, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ­ćƒœćƒƒćƒˆå­¦ä¼š'),
(127634, 102122, 'en', 'name', 'Institute of Kampo Medicine'),
(127635, 102122, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę¼¢ę–¹åŒ»å­¦ē ”ē©¶ę‰€'),
(127636, 102123, 'fr', 'name', 'BibliothĆØque cantonale et universitaire – Lausanne'),
(127637, 102123, 'en', 'name', 'Cantonal and University Library of Lausanne'),
(127638, 102124, 'en', 'name', 'Asakura Medical Association Hospital'),
(127639, 102124, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęœå€‰åŒ»åø«ä¼šęœå€‰åŒ»åø«ä¼šē—…é™¢'),
(127640, 102125, 'en', 'name', 'The Japan Geriatrics Society'),
(127641, 102125, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č€å¹“åŒ»å­¦ä¼š'),
(127642, 102126, 'en', 'name', 'Midocean University'),
(127643, 102126, 'fr', 'name', 'UniversitƩ Midocean'),
(127644, 102126, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŁŠŲÆŲ£ŁˆŲ“Ł†'),
(127645, 102127, 'en', 'name', 'Hokkaido Development Association'),
(127646, 102127, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“é–‹ē™ŗå”ä¼š'),
(127647, 102128, 'en', 'name', 'Niigata Prefecture Yoshida Hospital'),
(127648, 102128, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹å‰ē”°ē—…é™¢'),
(127649, 102129, 'en', 'name', 'Japan Institute of Navigation'),
(127650, 102129, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čˆŖęµ·å­¦ä¼š'),
(127651, 102130, 'en', 'name', 'Miyagi Prefectural Institute of Agriculture and Horticulture'),
(127652, 102130, 'ja', 'name', 'å®®åŸŽēœŒč¾²ę„­ćƒ»åœ’čŠøē·åˆē ”ē©¶ę‰€'),
(127653, 102131, 'en', 'name', 'Fujinomiya City General Hospital'),
(127654, 102131, 'ja', 'name', 'åÆŒå£«å®®åø‚ē«‹ē—…é™¢'),
(127655, 102132, 'en', 'name', 'University of Ferrara'),
(127656, 102132, 'it', 'name', 'UniversitĆ  degli Studi di Ferrara'),
(127657, 102132, 'de', 'name', 'UniversitƤt Ferrara'),
(127658, 102132, 'fr', 'name', 'UniversitƩ de ferrare'),
(127659, 102133, 'en', 'name', 'The Society for Near Eastern Studies in Japan'),
(127660, 102133, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚ŖćƒŖć‚Øćƒ³ćƒˆå­¦ä¼š'),
(127661, 102134, 'en', 'name', 'Aichi Medical Association'),
(127662, 102134, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę„›ēŸ„ēœŒåŒ»åø«ä¼š'),
(127663, 102135, 'en', 'name', 'Kochi Prefectural Livestock Experiment Station'),
(127664, 102135, 'ja', 'name', 'é«˜ēŸ„ēœŒē•œē”£č©¦éØ“å “'),
(127665, 102136, 'en', 'name', 'Biwako Gakuin University Junior College'),
(127666, 102136, 'ja', 'name', 'ć³ć‚ć“å­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(127667, 102137, 'en', 'name', 'Construction Research Institute'),
(127668, 102137, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ē‰©ä¾”čŖæęŸ»ä¼š'),
(127669, 102138, 'en', 'name', 'Newman College'),
(127670, 102138, 'ml', 'name', 'ą“Øąµą“Æąµ‚ą“®ą“¾ąµ» ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(127671, 102139, 'en', 'name', 'University of Bari Aldo Moro'),
(127672, 102139, 'it', 'name', 'UniversitĆ  degli Studi di Bari Aldo Moro'),
(127673, 102139, 'fr', 'name', 'UniversitƩ de bari'),
(127674, 102140, 'en', 'name', 'KIDS First'),
(127675, 102140, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚­ćƒƒć‚ŗćƒ•ć‚”ćƒ¼ć‚¹ćƒˆ'),
(127676, 102141, 'en', 'name', 'Japan Association For Advancement Of PHYTO-REGULATORS'),
(127677, 102141, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©čŖæēÆ€å‰¤ē ”ē©¶å”ä¼š'),
(127678, 102142, 'en', 'name', 'Wiki Movement Brazil'),
(127679, 102142, 'pt', 'name', 'Wiki Movimento Brasil'),
(127680, 102143, 'en', 'name', 'International Union for Conservation of Nature (Bangladesh)'),
(127681, 102144, 'en', 'name', 'The Association for Preventive Medicine of Japan'),
(127682, 102144, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬äŗˆé˜²åŒ»å­¦å”ä¼š'),
(127683, 102145, 'en', 'name', 'Yamagata Integrated Agricultural Research Center'),
(127684, 102145, 'ja', 'name', 'å±±å½¢ēœŒč¾²ę„­ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(127685, 102146, 'en', 'name', 'IUCN World Commission on Protected Areas'),
(127686, 102147, 'en', 'name', 'Osaka Management Association'),
(127687, 102147, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗčƒ½ēŽ‡å”ä¼š'),
(127688, 102148, 'en', 'name', 'Fujiyoshida Municipal Medical Center'),
(127689, 102148, 'ja', 'name', 'å›½ę°‘å„åŗ·äæé™ŗåÆŒå£«å‰ē”°åø‚ē«‹ē—…é™¢'),
(127690, 102149, 'en', 'name', 'Kohsei Chuo General Hospital'),
(127691, 102149, 'ja', 'name', 'å…Øå›½åœŸęœØå»ŗēÆ‰å›½ę°‘å„åŗ·äæé™ŗēµ„åˆē·åˆē—…é™¢åŽšē”Ÿäø­å¤®ē—…é™¢'),
(127692, 102150, 'en', 'name', 'Miyagi Prefectural Government'),
(127693, 102150, 'ja', 'name', 'å®®åŸŽēœŒåŗ'),
(127694, 102151, 'en', 'name', 'Tsurugi Municipal Handa Hospital'),
(127695, 102151, 'ja', 'name', 'ć¤ć‚‹ćŽē”ŗē«‹åŠē”°ē—…é™¢'),
(127696, 102152, 'en', 'name', 'Kyoto Prefectural International Center'),
(127697, 102152, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½åŗœå›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(127698, 102153, 'en', 'name', 'Nagano Vegetable and Ornamental Crops Experiment Station'),
(127699, 102153, 'ja', 'name', 'é•·é‡ŽēœŒé‡ŽčœčŠ±ćč©¦éØ“å “'),
(127700, 102154, 'en', 'name', 'Cardiovascular Hospital of Central Japan'),
(127701, 102154, 'ja', 'name', 'åŒ—é–¢ę±å¾Ŗē’°å™Øē—…é™¢'),
(127702, 102155, 'en', 'name', 'Suzuki Foundation'),
(127703, 102155, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¹ć‚ŗć‚­č²”å›£'),
(127704, 102156, 'en', 'name', 'Kumamoto Regional Medical Center'),
(127705, 102156, 'ja', 'name', 'ē†Šęœ¬åø‚åŒ»åø«ä¼šē†Šęœ¬åœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(127706, 102157, 'pt', 'name', 'Universidade Paulista Campinas'),
(127707, 102158, 'en', 'name', 'Japan Meteorological Business Support Center'),
(127708, 102158, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę°—č±”ę„­å‹™ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(127709, 102159, 'en', 'name', 'Nishichita General Hospital'),
(127710, 102159, 'ja', 'name', 'å…¬ē«‹č„æēŸ„å¤šē·åˆē—…é™¢');
INSERT INTO `ror_settings` VALUES
(127711, 102160, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Roma Tre'),
(127712, 102160, 'en', 'name', 'National Institute for Nuclear Physics, Roma Tre Division'),
(127713, 102161, 'en', 'name', 'Telecom Engineering Center'),
(127714, 102161, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ†ćƒ¬ć‚³ćƒ ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ć‚»ćƒ³ć‚æćƒ¼'),
(127715, 102162, 'en', 'name', 'Shaheed Zulfiqar Ali Bhutto Medical University, Islamabad'),
(127716, 102162, 'ur', 'name', 'ؓہید Ų°ŁˆŲ§Ł„ŁŁ‚Ų§Ų± Ų¹Ł„ŪŒ بھٹو Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒŲŒ اسلام Ų¢ŲØŲ§ŲÆ'),
(127717, 102163, 'en', 'name', 'Saitama Health Promotion'),
(127718, 102163, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒå„åŗ·ć„ćć‚Šäŗ‹ę„­å›£'),
(127719, 102164, 'en', 'name', 'All Japan Labor Welfare Foundation'),
(127720, 102164, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…Øę—„ęœ¬åŠ“åƒē¦ē„‰å”ä¼š'),
(127721, 102165, 'en', 'name', 'Fukuoka Wajiro Hospital'),
(127722, 102165, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ę± å‹ä¼šē¦å²”å’Œē™½ē—…é™¢'),
(127723, 102166, 'en', 'name', 'Hokkaido Nuclear Energy Environmental Research Center'),
(127724, 102166, 'ja', 'name', 'åŒ—ęµ·é“åŽŸå­åŠ›ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(127725, 102167, 'en', 'name', 'Eisei Hospital'),
(127726, 102167, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę°øē”Ÿä¼šę°øē”Ÿē—…é™¢'),
(127727, 102168, 'fr', 'name', 'Centre hospitalier de l''UniversitƩ Laval'),
(127728, 102169, 'en', 'name', 'Iwate Prefectural Kuji Hospital'),
(127729, 102169, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ä¹…ę…ˆē—…é™¢'),
(127730, 102170, 'en', 'name', 'Trinity Health Grand Rapids'),
(127731, 102171, 'en', 'name', 'THE Nippon Agricultural Research Institute'),
(127732, 102171, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č¾²ę„­ē ”ē©¶ę‰€'),
(127733, 102172, 'en', 'name', 'Japan Health Promotion and Fitness Foundation'),
(127734, 102172, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå„åŗ·ćƒ»ä½“åŠ›ć„ćć‚Šäŗ‹ę„­č²”å›£'),
(127735, 102173, 'en', 'name', 'Toyota Yahagi River Institute'),
(127736, 102173, 'ja', 'name', 'č±Šē”°åø‚ēŸ¢ä½œå·ē ”ē©¶ę‰€'),
(127737, 102174, 'en', 'name', 'Kanagawa Prefectural Government'),
(127738, 102174, 'ja', 'name', 'ē„žå„ˆå·ēœŒåŗ'),
(127739, 102175, 'en', 'name', 'Tottori Municipal Hospital'),
(127740, 102175, 'ja', 'name', 'é³„å–åø‚ē«‹ē—…é™¢'),
(127741, 102176, 'en', 'name', 'Science and Technology Promotion Foundation of Ibaraki'),
(127742, 102176, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčŒØåŸŽēœŒē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(127743, 102177, 'en', 'name', 'Gifu Prefectural Research Institute for Health and Environmental Sciences'),
(127744, 102177, 'ja', 'name', 'å²é˜œēœŒäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(127745, 102178, 'en', 'name', 'Tsukiji Neurological Clinic'),
(127746, 102178, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£é«˜ęµä¼šēÆ‰åœ°ē„žēµŒē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(127747, 102179, 'pt', 'name', 'Universidade Paulista'),
(127748, 102180, 'en', 'name', 'The Dia Foundation for Research on Ageing Societies'),
(127749, 102180, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ€ć‚¤ćƒ¤é«˜é½¢ē¤¾ä¼šē ”ē©¶č²”å›£'),
(127750, 102181, 'en', 'name', 'Shimane Prefectural Mountainous Regions Research Center'),
(127751, 102181, 'ja', 'name', 'å³¶ę ¹ēœŒäø­å±±é–“åœ°åŸŸē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(127752, 102182, 'en', 'name', 'Akita Research Center for Public Health and Environment'),
(127753, 102182, 'ja', 'name', 'ē§‹ē”°ēœŒå„åŗ·ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(127754, 102183, 'en', 'name', 'Japan Environmental Management Association for Industry'),
(127755, 102183, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē”£ę„­ē’°å¢ƒē®”ē†å”ä¼š'),
(127756, 102184, 'en', 'name', 'Shizuoka Prefectural Research Institute of Fishery'),
(127757, 102184, 'ja', 'name', 'é™å²”ēœŒę°“ē”£ćƒ»ęµ·ę“‹ęŠ€č”“ē ”ē©¶ę‰€'),
(127758, 102185, 'en', 'name', 'Kyoto Prefectural Government'),
(127759, 102185, 'ja', 'name', '京都府庁'),
(127760, 102186, 'en', 'name', 'Atsugi City Hospital'),
(127761, 102186, 'ja', 'name', 'åŽšęœØåø‚ē«‹ē—…é™¢'),
(127762, 102187, 'en', 'name', 'Kumamoto Prefectural Fisheries Research Center'),
(127763, 102187, 'ja', 'name', 'ē†Šęœ¬ēœŒę°“ē”£ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(127764, 102188, 'de', 'name', 'Deutsches Zentrum für integrative Biodiversitätsforschung'),
(127765, 102188, 'en', 'name', 'German Centre for Integrative Biodiversity Research'),
(127766, 102189, 'en', 'name', 'Japan Pharmaceutical Information Center'),
(127767, 102189, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åŒ»č–¬ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(127768, 102190, 'en', 'name', 'Society of Environmental Science, Japan'),
(127769, 102190, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē’°å¢ƒē§‘å­¦ä¼š'),
(127770, 102191, 'en', 'name', 'Nishiwaki Municipal Hospital'),
(127771, 102191, 'ja', 'name', '脿脇市立脿脇病院'),
(127772, 102192, 'en', 'name', 'Fisheries Infrastructure Development Center'),
(127773, 102192, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę°“ē”£åœŸęœØå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(127774, 102193, 'en', 'name', 'Japan Space Systems'),
(127775, 102193, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå®‡å®™ć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗåˆ©ē”ØęŽØé€²ę©Ÿę§‹'),
(127776, 102194, 'en', 'name', 'Institute of Local Finance'),
(127777, 102194, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°ę–¹č²”å‹™å”ä¼š'),
(127778, 102195, 'en', 'name', 'Tsukuba International Junior College'),
(127779, 102195, 'ja', 'name', 'ć¤ćć°å›½éš›ēŸ­ęœŸå¤§å­¦'),
(127780, 102196, 'en', 'name', 'Japan Inspection Association of Food and Food Industry Environment'),
(127781, 102196, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé£Ÿå“ē’°å¢ƒę¤œęŸ»å”ä¼š'),
(127782, 102197, 'en', 'name', 'Tokushima Prefectural Industrial Technology Center'),
(127783, 102197, 'ja', 'name', 'å¾³å³¶ēœŒē«‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(127784, 102198, 'en', 'name', 'Howard University Hospital'),
(127785, 102199, 'en', 'name', 'Manicaland State University of Applied Sciences'),
(127786, 102200, 'en', 'name', 'University of Cagliari'),
(127787, 102200, 'it', 'name', 'UniversitĆ  degli Studi di Cagliari'),
(127788, 102200, 'fr', 'name', 'UniversitƩ de Cagliari'),
(127789, 102201, 'no_lang_code', 'name', 'Biwako Gakuin University'),
(127790, 102201, 'ja', 'name', 'ć³ć‚ć“å­¦é™¢å¤§å­¦'),
(127791, 102202, 'en', 'name', 'Tamakyuryo Hospital'),
(127792, 102202, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å¹øéš†ä¼šå¤šę‘©äø˜é™µē—…é™¢'),
(127793, 102203, 'en', 'name', 'The Illuminating Engineering Institute of Japan'),
(127794, 102203, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē…§ę˜Žå­¦ä¼š'),
(127795, 102204, 'en', 'name', 'Policy Research Institute for Land Infrastructure and Transport'),
(127796, 102204, 'ja', 'name', 'å›½åœŸäŗ¤é€šēœå›½åœŸäŗ¤é€šę”æē­–ē ”ē©¶ę‰€'),
(127797, 102205, 'en', 'name', 'Hokkaido Center Of Environmental Sciences & Technology'),
(127798, 102205, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“ē’°å¢ƒē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(127799, 102206, 'en', 'name', 'Chihaya Hospital'),
(127800, 102206, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šåƒę—©ē—…é™¢'),
(127801, 102207, 'en', 'name', 'Food and Agricultural Materials Inspection Center'),
(127802, 102207, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗč¾²ęž—ę°“ē”£ę¶ˆč²»å®‰å…ØęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(127803, 102208, 'en', 'name', 'Brest State A.S. Pushkin University'),
(127804, 102208, 'ru', 'name', 'Брестский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š”. Пушкина'),
(127805, 102208, 'be', 'name', 'Š‘Ń€ŃŃŃ†ŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń А. Š”. ŠŸŃƒŃˆŠŗŃ–Š½Š°'),
(127806, 102209, 'en', 'name', 'Sasebo Chuo Hospital'),
(127807, 102209, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ē™½åå­—ä¼šä½äø–äæäø­å¤®ē—…é™¢'),
(127808, 102210, 'en', 'name', 'Japanese Nursing Association'),
(127809, 102210, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēœ‹č­·å”ä¼š'),
(127810, 102211, 'en', 'name', 'Hyogo Emergency Medical Center'),
(127811, 102211, 'ja', 'name', 'å…µåŗ«ēœŒē½å®³åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(127812, 102212, 'en', 'name', 'Reproduction Clinic Osaka'),
(127813, 102212, 'ja', 'name', 'ćƒŖćƒ—ćƒ­ćƒ€ć‚Æć‚·ćƒ§ćƒ³ć‚ÆćƒŖćƒ‹ćƒƒć‚Æå¤§é˜Ŗ'),
(127814, 102213, 'en', 'name', 'Hirosaki University of Health and Welfare Junior College'),
(127815, 102213, 'ja', 'name', 'å¼˜å‰åŒ»ē™‚ē¦ē„‰å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(127816, 102214, 'en', 'name', 'The Holstein Cattle Association of Japan'),
(127817, 102214, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ›ćƒ«ć‚¹ć‚æć‚¤ćƒ³ē™»éŒ²å”ä¼š'),
(127818, 102215, 'en', 'name', 'Shimonoseki Junior College'),
(127819, 102215, 'ja', 'name', 'äø‹é–¢ēŸ­ęœŸå¤§å­¦'),
(127820, 102216, 'en', 'name', 'House of Councillors, the National Diet of Japan'),
(127821, 102216, 'ja', 'name', 'å‚č­°é™¢'),
(127822, 102217, 'no_lang_code', 'name', 'Aldakin'),
(127823, 102217, 'es', 'name', 'Aldakin S.L.'),
(127824, 102217, 'en', 'name', 'Aldakin S.L. (Spain)'),
(127825, 102218, 'en', 'name', 'Hiroshima City Industrial Technology Center'),
(127826, 102218, 'ja', 'name', 'åŗƒå³¶åø‚å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(127827, 102219, 'en', 'name', 'The Society of Materials Science, Japan'),
(127828, 102219, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęę–™å­¦ä¼š'),
(127829, 102220, 'en', 'name', 'Tsudanuma Central General Hospital'),
(127830, 102220, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę„›å‹ä¼šę“„ē”°ę²¼äø­å¤®ē·åˆē—…é™¢'),
(127831, 102221, 'en', 'name', 'The Institute of Electrical Engineers of Japan'),
(127832, 102221, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—å­¦ä¼š'),
(127833, 102222, 'en', 'name', 'University of Cyprus'),
(127834, 102222, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(127835, 102223, 'en', 'name', 'St. Catherine Junior College'),
(127836, 102223, 'ja', 'name', 'č–ć‚«ć‚æćƒŖćƒŠå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(127837, 102224, 'en', 'name', 'Medical Information System Development Center'),
(127838, 102224, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ»ē™‚ęƒ…å ±ć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(127839, 102225, 'en', 'name', 'The Hyogo Institute of Assistive Technology'),
(127840, 102225, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ē¦ē„‰ć®ć¾ć”ć„ćć‚Šē ”ē©¶ę‰€'),
(127841, 102226, 'en', 'name', 'Martin Luther University Halle-Wittenberg'),
(127842, 102226, 'de', 'name', 'Martin-Luther-UniversitƤt Halle-Wittenberg'),
(127843, 102227, 'en', 'name', 'University of Perugia'),
(127844, 102227, 'it', 'name', 'UniversitĆ  degli Studi di Perugia'),
(127845, 102227, 'de', 'name', 'UniversitƤt Perugia'),
(127846, 102227, 'fr', 'name', 'UniversitƩ de pƩrouse'),
(127847, 102228, 'en', 'name', 'Japan Weathering Test Center'),
(127848, 102228, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¦ć‚Øć‚¶ćƒŖćƒ³ć‚°ćƒ†ć‚¹ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(127849, 102229, 'en', 'name', 'Institute for Agriculture, Medicine, and the Environment'),
(127850, 102229, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč¾²ę„­ćƒ»ē’°å¢ƒćƒ»å„åŗ·ē ”ē©¶ę‰€'),
(127851, 102230, 'en', 'name', 'Gifu Prefectural Government'),
(127852, 102230, 'ja', 'name', '岐阜県庁'),
(127853, 102231, 'en', 'name', 'Oyokyo Kidney Research Institute'),
(127854, 102231, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé·¹ęšéƒ·č…Žē ”ē©¶ę‰€'),
(127855, 102232, 'en', 'name', 'JIPDEC'),
(127856, 102232, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęƒ…å ±ēµŒęøˆē¤¾ä¼šęŽØé€²å”ä¼š'),
(127857, 102233, 'en', 'name', 'Kiryu Kosei General Hospital'),
(127858, 102233, 'ja', 'name', 'ę”ē”ŸåŽšē”Ÿē·åˆē—…é™¢'),
(127859, 102234, 'en', 'name', 'The Japanese Respiratory Society'),
(127860, 102234, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å‘¼åøå™Øå­¦ä¼š'),
(127861, 102235, 'en', 'name', 'Japan Consulting Institute'),
(127862, 102235, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ©ćƒ³ćƒˆå”ä¼š'),
(127863, 102236, 'en', 'name', 'Nishinihon Hospital'),
(127864, 102236, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£č–åå­—ä¼šč„æę—„ęœ¬ē—…é™¢'),
(127865, 102237, 'en', 'name', 'KKR Hokuriku Hospital'),
(127866, 102237, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šåŒ—é™øē—…é™¢'),
(127867, 102238, 'en', 'name', 'Shinjo Ophthalmologic Institute'),
(127868, 102238, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£ć‚·ćƒ­ć‚¢ćƒ ä¼šę–°åŸŽēœ¼ē§‘åŒ»é™¢'),
(127869, 102239, 'en', 'name', 'Minamisoma Municipal General Hospital'),
(127870, 102239, 'ja', 'name', 'å—ē›øé¦¬åø‚ē«‹ē·åˆē—…é™¢'),
(127871, 102240, 'en', 'name', 'Tottori Prefectural Government'),
(127872, 102240, 'ja', 'name', 'é³„å–ēœŒåŗ'),
(127873, 102241, 'en', 'name', 'Tohoku Institute for Management of Blood Pressure'),
(127874, 102241, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę±åŒ—č”€åœ§ē®”ē†å”ä¼š'),
(127875, 102242, 'en', 'name', 'Hyogo Prefectural Harima-Himeji General Medical Center'),
(127876, 102242, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ćÆć‚Šć¾å§«č·Æē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(127877, 102243, 'en', 'name', 'Japan Power Engineering and Inspection Corporation'),
(127878, 102243, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē™ŗé›»čØ­å‚™ęŠ€č”“ę¤œęŸ»å”ä¼š'),
(127879, 102244, 'en', 'name', 'Ibaraki Kasumigaura Environmental Science Center'),
(127880, 102244, 'ja', 'name', 'čŒØåŸŽēœŒéœžć‚±ęµ¦ē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(127881, 102245, 'en', 'name', 'Professional College of Arts and Tourism'),
(127882, 102245, 'ja', 'name', 'čŠøč”“ę–‡åŒ–č¦³å…‰å°‚é–€č·å¤§å­¦'),
(127883, 102246, 'en', 'name', 'Manufacturing Technology Association of Biologics'),
(127884, 102246, 'ja', 'name', 'ę¬”äø–ä»£ćƒć‚¤ć‚ŖåŒ»č–¬å“č£½é€ ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(127885, 102247, 'en', 'name', 'Chugoku Regional Research Center'),
(127886, 102247, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäø­å›½åœ°ę–¹ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(127887, 102248, 'en', 'name', 'Sanyo Gakuen Junior College'),
(127888, 102248, 'ja', 'name', 'å±±é™½å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(127889, 102249, 'en', 'name', 'Ushiku Aiwa General Hospital'),
(127890, 102249, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£åøøä»ä¼šē‰›ä¹…ę„›å’Œē·åˆē—…é™¢'),
(127891, 102250, 'en', 'name', 'Japan Foods Inspection Corporation'),
(127892, 102250, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ę¤œęŸ»'),
(127893, 102251, 'en', 'name', 'Sugita Genpaku Memorial Obama Municipal Hospital'),
(127894, 102251, 'ja', 'name', 'ę‰ē”°ēŽ„ē™½čØ˜åæµå…¬ē«‹å°ęµœē—…é™¢'),
(127895, 102252, 'en', 'name', 'Konan Medical Center'),
(127896, 102252, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē”²å—ä¼šē”²å—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(127897, 102253, 'en', 'name', 'Kinjo College'),
(127898, 102253, 'ja', 'name', 'é‡‘åŸŽå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(127899, 102254, 'en', 'name', 'Fujieda Heisei Memorial Hospital'),
(127900, 102254, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å¹³ęˆä¼šč—¤ęžå¹³ęˆčØ˜åæµē—…é™¢'),
(127901, 102255, 'en', 'name', 'Okayama Prefectural Institute for Environmental Science and Public Health'),
(127902, 102255, 'ja', 'name', 'å²”å±±ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(127903, 102256, 'en', 'name', 'Ehime Prefectural Government'),
(127904, 102256, 'ja', 'name', 'ę„›åŖ›ēœŒåŗ'),
(127905, 102257, 'en', 'name', 'Kagoshima Prefectural Institute for Environmental Research and Public Health'),
(127906, 102257, 'ja', 'name', 'é¹æå…å³¶ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(127907, 102258, 'en', 'name', 'Akita Prefectural Livestock Experiment Station'),
(127908, 102258, 'ja', 'name', 'ē§‹ē”°ēœŒē•œē”£č©¦éØ“å “'),
(127909, 102259, 'en', 'name', 'Chiba Prefectural Environmental Research Center'),
(127910, 102259, 'ja', 'name', 'åƒč‘‰ēœŒē’°å¢ƒē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(127911, 102260, 'en', 'name', 'Industrial Technology Innovation Center of Ibaraki Prefecture'),
(127912, 102260, 'ja', 'name', 'čŒØåŸŽēœŒē”£ę„­ęŠ€č”“ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(127913, 102261, 'en', 'name', 'Japan Livestock Technology Association'),
(127914, 102261, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē•œē”£ęŠ€č”“å”ä¼š'),
(127915, 102262, 'en', 'name', 'Matsusaka City Hospital'),
(127916, 102262, 'ja', 'name', 'ę¾é˜Ŗåø‚ę°‘ē—…é™¢'),
(127917, 102263, 'en', 'name', 'Kusatsu General Hospital'),
(127918, 102263, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗčŖ å…‰ä¼šč‰ę“„ē·åˆē—…é™¢'),
(127919, 102264, 'en', 'name', 'Sanjo City University'),
(127920, 102264, 'ja', 'name', 'äø‰ę”åø‚ē«‹å¤§å­¦'),
(127921, 102265, 'en', 'name', 'Yawatahama City General Hospital'),
(127922, 102265, 'ja', 'name', 'åø‚ē«‹å…«å¹”ęµœē·åˆē—…é™¢'),
(127923, 102266, 'en', 'name', 'Radioactive and Decommissioning Center'),
(127924, 102266, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›ćƒćƒƒć‚Æć‚Øćƒ³ćƒ‰ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(127925, 102267, 'en', 'name', 'Niigata Seiryo WOMEN''S Junior College'),
(127926, 102267, 'ja', 'name', 'ę–°ę½Ÿé’é™µå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(127927, 102268, 'en', 'name', 'Association of Radio Industries and Businesses'),
(127928, 102268, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę³¢ē”£ę„­ä¼š'),
(127929, 102269, 'en', 'name', 'Saga Tea Research Laboratory'),
(127930, 102269, 'ja', 'name', 'ä½č³€ēœŒčŒ¶ę„­č©¦éØ“å “'),
(127931, 102270, 'en', 'name', 'Asahi General Hospital'),
(127932, 102270, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē·åˆē—…é™¢å›½äæę—­äø­å¤®ē—…é™¢'),
(127933, 102271, 'en', 'name', 'Tanaka Growth Clinic'),
(127934, 102271, 'ja', 'name', 'ćŸćŖć‹ęˆé•·ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(127935, 102272, 'en', 'name', 'Tango Central Hospital'),
(127936, 102272, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø¹å¾Œäø­å¤®ē—…é™¢'),
(127937, 102273, 'en', 'name', 'Japan Municipal Hospital Association'),
(127938, 102273, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č‡Ŗę²»ä½“ē—…é™¢å”č­°ä¼š'),
(127939, 102274, 'en', 'name', 'Osaka Heavy Ion Therapy Center'),
(127940, 102274, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗå›½éš›ćŒć‚“ę²»ē™‚č²”å›£å¤§é˜Ŗé‡ē²’å­ē·šć‚»ćƒ³ć‚æćƒ¼'),
(127941, 102275, 'en', 'name', 'Rissho Kosei-kai Hospital'),
(127942, 102275, 'ja', 'name', 'ē«‹ę­£ä½¼ęˆä¼šé™„å±žä½¼ęˆē—…é™¢'),
(127943, 102276, 'en', 'name', 'University of Salento'),
(127944, 102276, 'it', 'name', 'UniversitĆ  degli Studi di Lecce'),
(127945, 102276, 'de', 'name', 'UniversitƤt Salento'),
(127946, 102276, 'fr', 'name', 'UniversitƩ du salento'),
(127947, 102277, 'en', 'name', 'PRO Natura Foundation Japan'),
(127948, 102277, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč‡Ŗē„¶äæč­·åŠ©ęˆåŸŗé‡‘'),
(127949, 102278, 'en', 'name', 'Kyoto Medical Association'),
(127950, 102278, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗ¬éƒ½åŗœåŒ»åø«ä¼š'),
(127951, 102279, 'en', 'name', 'Yamaguchi Prefectural Government'),
(127952, 102279, 'ja', 'name', 'å±±å£ēœŒåŗ'),
(127953, 102280, 'fr', 'name', 'Centre d''Investigation Clinique - Innovation Technologique de Garches'),
(127954, 102281, 'en', 'name', 'R Professional University Of Rehabilitation'),
(127955, 102281, 'ja', 'name', 'ć‚¢ćƒ¼ćƒ«åŒ»ē™‚å°‚é–€č·å¤§å­¦'),
(127956, 102282, 'en', 'name', 'Japan Industrial Waste Management Foundation'),
(127957, 102282, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē”£ę„­å»ƒę£„ē‰©å‡¦ē†äŗ‹ę„­ęŒÆčˆˆč²”å›£'),
(127958, 102283, 'en', 'name', 'Tsuruoka Municipal Shonai Hospital'),
(127959, 102283, 'ja', 'name', 'é¶“å²”åø‚ē«‹č˜å†…ē—…é™¢'),
(127960, 102284, 'en', 'name', 'Akita City Hospital'),
(127961, 102284, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåø‚ē«‹ē§‹ē”°ē·åˆē—…é™¢'),
(127962, 102285, 'no_lang_code', 'name', 'Okayama Gakuin University'),
(127963, 102285, 'ja', 'name', '岔山学院大学'),
(127964, 102286, 'en', 'name', 'Yokosuka General Hospital Uwamachi'),
(127965, 102286, 'ja', 'name', 'ęØŖé ˆč³€åø‚ē«‹ć†ć‚ć¾ć”ē—…é™¢'),
(127966, 102287, 'en', 'name', 'Kido Hospital'),
(127967, 102287, 'ja', 'name', 'ę–°ę½ŸåŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆęœØęˆøē—…é™¢'),
(127968, 102288, 'en', 'name', 'Policy Study Group'),
(127969, 102288, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›ēµŒęøˆę”æē­–čŖæęŸ»ä¼š'),
(127970, 102289, 'en', 'name', 'Japan Bioindustry Association'),
(127971, 102289, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒć‚¤ć‚Ŗć‚¤ćƒ³ćƒ€ć‚¹ćƒˆćƒŖćƒ¼å”ä¼š'),
(127972, 102290, 'en', 'name', 'Mie Prefectural Shima Hospital'),
(127973, 102290, 'ja', 'name', 'äø‰é‡ēœŒē«‹åæ—ę‘©ē—…é™¢'),
(127974, 102291, 'en', 'name', 'St. Andrew''s University of Education'),
(127975, 102291, 'ja', 'name', 'ę”ƒå±±å­¦é™¢ę•™č‚²å¤§å­¦'),
(127976, 102292, 'lv', 'name', 'LU Matemātikas un informātikas institūts'),
(127977, 102292, 'en', 'name', 'UL Institute of Mathematics and Computer Science'),
(127978, 102293, 'fr', 'name', 'WSL Institut pour l''Ʃtude de la neige et des avalanches SLF'),
(127979, 102293, 'en', 'name', 'WSL Institute for Snow and Avalanche Research SLF'),
(127980, 102293, 'it', 'name', 'WSL Istituto per lo studio della neve e delle valanghe SLF'),
(127981, 102293, 'de', 'name', 'WSL-Institut für Schnee-und Lawinenforschung SLF'),
(127982, 102294, 'en', 'name', 'Tokyo Bay Rehabilitation Hospital'),
(127983, 102294, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£äæå„ä¼šę±äŗ¬ę¹¾å²øćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(127984, 102295, 'en', 'name', 'Hokkaido Regional Research'),
(127985, 102295, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ćƒŖćƒ¼ć‚øćƒ§ćƒŠćƒ«ćƒŖć‚µćƒ¼ćƒ'),
(127986, 102296, 'en', 'name', 'Japan Institute of Marine Engineering'),
(127987, 102296, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒžćƒŖćƒ³ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°å­¦ä¼š'),
(127988, 102297, 'en', 'name', 'Institute for Building Environment and Energy Conservation'),
(127989, 102297, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰ē’°å¢ƒćƒ»ēœć‚Øćƒćƒ«ć‚®ćƒ¼ę©Ÿę§‹'),
(127990, 102298, 'en', 'name', 'Osaka Medical Association'),
(127991, 102298, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜ŖåŗœåŒ»åø«ä¼š'),
(127992, 102299, 'en', 'name', 'Kyoto Industrial Association'),
(127993, 102299, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½å·„ę„­ä¼š'),
(127994, 102300, 'en', 'name', 'Tokyo Kasei Junior College'),
(127995, 102300, 'ja', 'name', 'ę±äŗ¬å®¶ę”æå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(127996, 102301, 'en', 'name', 'Research Institute for Local Government'),
(127997, 102301, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°ę–¹č‡Ŗę²»ē ”ē©¶ę©Ÿę§‹'),
(127998, 102302, 'en', 'name', 'Chigasaki Municipal Hospital'),
(127999, 102302, 'ja', 'name', 'čŒ…ćƒ¶å“Žåø‚ē«‹ē—…é™¢'),
(128000, 102303, 'en', 'name', 'Ibaraki Prefectural Medical Center of Psychiatry'),
(128001, 102303, 'ja', 'name', 'čŒØåŸŽēœŒē«‹ć“ć“ć‚ć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(128002, 102304, 'en', 'name', 'Higashisumiyoshi Morimoto Hospital'),
(128003, 102304, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę©˜ä¼šę±ä½å‰ę£®ęœ¬ē—…é™¢'),
(128004, 102305, 'en', 'name', 'PL Hospital'),
(128005, 102305, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå®ē”Ÿä¼šPL病院'),
(128006, 102306, 'en', 'name', 'Botanic Gardens of Toyama'),
(128007, 102306, 'ja', 'name', 'åÆŒå±±ēœŒäø­å¤®ę¤ē‰©åœ’'),
(128008, 102307, 'en', 'name', 'Quantum Science and Technology in Arcetri'),
(128009, 102308, 'en', 'name', 'AKO City Hospital'),
(128010, 102308, 'ja', 'name', '赤穂市民病院'),
(128011, 102309, 'en', 'name', 'Cryogenics and Superconductivity Society of Japan'),
(128012, 102309, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗä½Žęø©å·„å­¦ćƒ»č¶…é›»å°Žå­¦ä¼š'),
(128013, 102310, 'en', 'name', 'Shiga Prefectural Fishery Experiment Station'),
(128014, 102310, 'ja', 'name', 'ę»‹č³€ēœŒę°“ē”£č©¦éØ“å “'),
(128015, 102311, 'en', 'name', 'Fukuoka Fisheries and Marine Technology Research Center'),
(128016, 102311, 'ja', 'name', 'ē¦å²”ēœŒę°“ē”£ęµ·ę“‹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(128017, 102312, 'en', 'name', 'Japan Medical Women''s Association'),
(128018, 102312, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å„³åŒ»ä¼š'),
(128019, 102313, 'en', 'name', 'Foundation for Innovation in Higher Education'),
(128020, 102313, 'de', 'name', 'Stiftung Innovation in der Hochschullehre'),
(128021, 102314, 'en', 'name', 'Danish Cardiovascular Academy'),
(128022, 102315, 'en', 'name', 'Ube Frontier College'),
(128023, 102315, 'ja', 'name', 'å®‡éƒØćƒ•ćƒ­ćƒ³ćƒ†ć‚£ć‚¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(128024, 102316, 'en', 'name', 'Urban Innovation Institute'),
(128025, 102316, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚ę“»åŠ›ē ”ē©¶ę‰€'),
(128026, 102317, 'en', 'name', 'Gunma Industry Support Organization'),
(128027, 102317, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē¾¤é¦¬ēœŒē”£ę„­ę”Æę“ę©Ÿę§‹'),
(128028, 102318, 'en', 'name', 'Sodegaura Satsukidai Hospital'),
(128029, 102318, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē¤¾å›£ć•ć¤ćä¼šč¢–ć‚±ęµ¦ć•ć¤ćå°ē—…é™¢'),
(128030, 102319, 'en', 'name', 'Kawakita General Hospital'),
(128031, 102319, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę²³åŒ—åŒ»ē™‚č²”å›£ę²³åŒ—ē·åˆē—…é™¢'),
(128032, 102320, 'en', 'name', 'Fukui Science Education Academy'),
(128033, 102320, 'ja', 'name', 'NPOę³•äŗŗćµćć„ē§‘å­¦å­¦åœ’'),
(128034, 102321, 'en', 'name', 'Japan Institute of Energy'),
(128035, 102321, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Øćƒćƒ«ć‚®ćƒ¼å­¦ä¼š'),
(128036, 102322, 'en', 'name', 'Kunduz University'),
(128037, 102322, 'ps', 'name', 'ŲÆ کندز Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(128038, 102322, 'fa', 'name', 'دانؓگاه_Ł‚Ł†ŲÆŁˆŲ²'),
(128039, 102323, 'en', 'name', 'Association for Health Economics Research and Social Insurance and Welfare'),
(128040, 102323, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ»ē™‚ēµŒęøˆē ”ē©¶ćƒ»ē¤¾ä¼šäæé™ŗē¦ē„‰å”ä¼š'),
(128041, 102324, 'en', 'name', 'Avicenna Medical College'),
(128042, 102324, 'ur', 'name', 'ابن Ų³ŪŒŁ†Ų§ Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(128043, 102325, 'en', 'name', 'Iwate Prefectural Isawa Hospital'),
(128044, 102325, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹čƒ†ę²¢ē—…é™¢'),
(128045, 102326, 'en', 'name', 'Japan Industrial Location Center'),
(128046, 102326, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē«‹åœ°ć‚»ćƒ³ć‚æćƒ¼'),
(128047, 102327, 'en', 'name', 'Gihu Prefecture Research Institute for Human Life Technology'),
(128048, 102327, 'ja', 'name', 'å²é˜œēœŒē”Ÿę“»ęŠ€č”“ē ”ē©¶ę‰€'),
(128049, 102328, 'en', 'name', 'Obihiro First Hospital'),
(128050, 102328, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“åŒ»ē™‚å›£åøÆåŗƒē¬¬äø€ē—…é™¢'),
(128051, 102329, 'en', 'name', 'Omihachiman Community Medical Center'),
(128052, 102329, 'ja', 'name', 'čæ‘ę±Ÿå…«å¹”åø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(128053, 102330, 'en', 'name', 'Kuwana City Medical Center'),
(128054, 102330, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę”‘ååø‚ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(128055, 102331, 'en', 'name', 'Aidu Chuo Hospital'),
(128056, 102331, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęø©ēŸ„ä¼šä¼šę“„äø­å¤®ē—…é™¢'),
(128057, 102332, 'en', 'name', 'Kasukabe Medical Center'),
(128058, 102332, 'ja', 'name', 'ę˜„ę—„éƒØåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(128059, 102333, 'en', 'name', 'Saitama Cooperative Hospital'),
(128060, 102333, 'ja', 'name', 'åŒ»ē™‚ē”Ÿå”ć•ć„ćŸć¾ē”Ÿę“»å”åŒēµ„åˆåŸ¼ēŽ‰å”åŒē—…é™¢'),
(128061, 102334, 'en', 'name', 'International Economy and Work Research Institute'),
(128062, 102334, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå›½éš›ēµŒęøˆåŠ“åƒē ”ē©¶ę‰€'),
(128063, 102335, 'en', 'name', 'Yokohama Women''s Junior College'),
(128064, 102335, 'ja', 'name', '横浜儳子短期大学'),
(128065, 102336, 'en', 'name', 'Ohda Municipal Hospital'),
(128066, 102336, 'ja', 'name', '大田市立病院'),
(128067, 102337, 'en', 'name', 'Tsukazaki Hospital'),
(128068, 102337, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗäø‰ę „ä¼šćƒ„ć‚«ć‚¶ć‚­ē—…é™¢'),
(128069, 102338, 'en', 'name', 'Okitama Public General Hospital'),
(128070, 102338, 'ja', 'name', 'å…¬ē«‹ē½®č³œē·åˆē—…é™¢'),
(128071, 102339, 'en', 'name', 'Nishio Municipal Hospital'),
(128072, 102339, 'ja', 'name', '脿尾市民病院'),
(128073, 102340, 'en', 'name', 'Tagawa Hospital'),
(128074, 102340, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē¦å²”ēœŒē¤¾ä¼šäæé™ŗåŒ»ē™‚å”ä¼šē¤¾ä¼šäæé™ŗē”°å·ē—…é™¢'),
(128075, 102341, 'fr', 'name', 'HƓpital de l''Enfant-JƩsus'),
(128076, 102342, 'en', 'name', 'Munakata Suikokai General Hospital'),
(128077, 102342, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę°“å…‰ä¼šå®—åƒę°“å…‰ä¼šē·åˆē—…é™¢'),
(128078, 102343, 'fr', 'name', 'Centre de MathƩmatiques AppliquƩes - CMA'),
(128079, 102343, 'en', 'name', 'Centre for Applied Mathematics - CMA'),
(128080, 102344, 'en', 'name', 'Kyoto Promotion Center'),
(128081, 102344, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½äø­å°ä¼ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(128082, 102345, 'en', 'name', 'The Salt Industry Center of Japan'),
(128083, 102345, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå”©äŗ‹ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(128084, 102346, 'en', 'name', 'Jissen Women''s Junior College'),
(128085, 102346, 'ja', 'name', '実践儳子大学短期大学部'),
(128086, 102347, 'en', 'name', 'Kyoto Kizugawa Hospital'),
(128087, 102347, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå•“äæ”ä¼šäŗ¬éƒ½ćć„å·ē—…é™¢'),
(128088, 102348, 'en', 'name', 'Gunma Prefectural Police'),
(128089, 102348, 'ja', 'name', '群馬県警察'),
(128090, 102349, 'en', 'name', 'University of Rome Tor Vergata'),
(128091, 102349, 'it', 'name', 'UniversitĆ  degli Studi di Roma Tor Vergata'),
(128092, 102350, 'en', 'name', 'Otakanomori Hospital'),
(128093, 102350, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é«˜ä¼šćŠćŠćŸć‹ć®ę£®ē—…é™¢'),
(128094, 102351, 'en', 'name', 'Nagoya City Public Health Research Institute'),
(128095, 102351, 'ja', 'name', 'åå¤å±‹åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(128096, 102352, 'en', 'name', 'University of the Bundeswehr Munich'),
(128097, 102352, 'de', 'name', 'Universität der Bundeswehr München'),
(128098, 102353, 'en', 'name', 'Fujimoto General Hospital'),
(128099, 102353, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč—¤å…ƒćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚·ć‚¹ćƒ†ćƒ č—¤å…ƒē·åˆē—…é™¢'),
(128100, 102354, 'en', 'name', 'Fort Hays Tech North Central'),
(128101, 102355, 'en', 'name', 'Gunma Prefectural Government'),
(128102, 102355, 'ja', 'name', '群馬県庁'),
(128103, 102356, 'en', 'name', 'Osaka Gyoumeikan Hospital'),
(128104, 102356, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗå¤§é˜Ŗęšę˜Žé¤Øå¤§é˜Ŗęšę˜Žé¤Øē—…é™¢'),
(128105, 102357, 'en', 'name', 'Toyama College of Welfare Science'),
(128106, 102357, 'ja', 'name', 'åÆŒå±±ē¦ē„‰ēŸ­ęœŸå¤§å­¦'),
(128107, 102358, 'en', 'name', 'Kimitsu Chuo Hospital'),
(128108, 102358, 'ja', 'name', 'å›½äæē›“å–¶ē·åˆē—…é™¢å›ę“„äø­å¤®ē—…é™¢'),
(128109, 102359, 'en', 'name', 'Japan Child and Family Research Institute'),
(128110, 102359, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęÆå­ę„›č‚²ä¼šę—„ęœ¬å­ć©ć‚‚å®¶åŗ­ē·åˆē ”ē©¶ę‰€'),
(128111, 102360, 'en', 'name', 'Shonai Amarume Hospital'),
(128112, 102360, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å±±å½¢ę„›åæƒä¼šåŗ„å†…ä½™ē›®ē—…é™¢'),
(128113, 102361, 'en', 'name', 'Iwate University of Health and Medical Sciences'),
(128114, 102361, 'ja', 'name', 'å²©ę‰‹äæå„åŒ»ē™‚å¤§å­¦'),
(128115, 102362, 'en', 'name', 'Tottori College of Nursing'),
(128116, 102362, 'ja', 'name', 'é³„å–ēœ‹č­·å¤§å­¦'),
(128117, 102363, 'en', 'name', 'Architectural Research Association'),
(128118, 102363, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰ē ”ē©¶å”ä¼š'),
(128119, 102364, 'ja', 'name', 'JAé¦™å·åŽšē”Ÿé€£å±‹å³¶ē·åˆē—…é™¢'),
(128120, 102364, 'en', 'name', 'Yashima General hospital'),
(128121, 102365, 'en', 'name', 'Kochi Prefectural Freshwater Fisheries Center'),
(128122, 102365, 'ja', 'name', 'é«˜ēŸ„ēœŒå†…ę°“é¢ę¼ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(128123, 102366, 'en', 'name', 'Japan Quality Assurance Organization'),
(128124, 102366, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å“č³ŖäæčØ¼ę©Ÿę§‹'),
(128125, 102367, 'en', 'name', 'Kuwait International Law School'),
(128126, 102367, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł‚Ų§Ł†ŁˆŁ† Ų§Ł„ŁƒŁˆŁŠŲŖŁŠŲ© Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(128127, 102368, 'en', 'name', 'International Union for Conservation of Nature (United States)'),
(128128, 102369, 'en', 'name', 'Fukushima Agricultural Technology Centre'),
(128129, 102369, 'ja', 'name', 'ē¦å³¶ēœŒč¾²ę„­ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(128130, 102370, 'en', 'name', 'Hiroshima Bunka Gakuen Two-Year College'),
(128131, 102370, 'ja', 'name', 'åŗƒå³¶ę–‡åŒ–å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(128132, 102371, 'en', 'name', 'Shikoku University, Junior College'),
(128133, 102371, 'ja', 'name', 'å››å›½å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(128134, 102372, 'de', 'name', 'Eidgenössische Forschungsanstalt für Wald, Schnee und Landschaft'),
(128135, 102372, 'fr', 'name', 'Institut Fédéral de Recherches sur la Forêt, la Neige et le Paysage'),
(128136, 102372, 'it', 'name', 'Istituto Federale di Ricerca per la Foresta, la Neve e il Paesaggio'),
(128137, 102372, 'en', 'name', 'Swiss Federal Institute for Forest, Snow and Landscape Research'),
(128138, 102373, 'en', 'name', 'SENSCIENCE'),
(128139, 102374, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Lecce'),
(128140, 102374, 'en', 'name', 'National Institute for Nuclear Physics, Lecce Section'),
(128141, 102375, 'en', 'name', 'The Japanese Society of Gastroenterology'),
(128142, 102375, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę¶ˆåŒ–å™Øē—…å­¦ä¼š'),
(128143, 102376, 'en', 'name', 'Fukui Industrial Support Center'),
(128144, 102376, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćµćć„ē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(128145, 102377, 'en', 'name', 'Masuda Medical Association Hospital'),
(128146, 102377, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē›Šē”°åø‚åŒ»åø«ä¼šē«‹ē›Šē”°åœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼åŒ»åø«ä¼šē—…é™¢'),
(128147, 102378, 'pt', 'name', 'Centro de Investigação em Artes e Comunicação'),
(128148, 102379, 'en', 'name', 'National Printing Bureau'),
(128149, 102379, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹å°åˆ·å±€'),
(128150, 102380, 'en', 'name', 'Japan Association for Real Estate Sciences'),
(128151, 102380, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äøå‹•ē”£å­¦ä¼š'),
(128152, 102381, 'ja', 'name', 'JAå²é˜œåŽšē”Ÿé€£ä¹…ē¾Žę„›åŽšē”Ÿē—…é™¢'),
(128153, 102381, 'en', 'name', 'Kumiai Kousei Hospital'),
(128154, 102382, 'en', 'name', 'ByteDance (China)'),
(128155, 102383, 'en', 'name', 'Meijibashi Hospital'),
(128156, 102383, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåž£č°·ä¼šę˜Žę²»ę©‹ē—…é™¢'),
(128157, 102384, 'en', 'name', 'Japan Water Research Center'),
(128158, 102384, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę°“é“ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(128159, 102385, 'en', 'name', 'Chiba Prefectural Fisheries Research Center'),
(128160, 102385, 'ja', 'name', 'åƒč‘‰ēœŒę°“ē”£ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(128161, 102386, 'en', 'name', 'Nexus Institute of Research and Innovation (NIRI)'),
(128162, 102387, 'en', 'name', 'Tottori Prefectural Police'),
(128163, 102387, 'ja', 'name', 'é³„å–ēœŒč­¦åÆŸ'),
(128164, 102388, 'en', 'name', 'Saka General Hospital'),
(128165, 102388, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå®®åŸŽåŽšē”Ÿå”ä¼šå‚ē·åˆē—…é™¢'),
(128166, 102389, 'en', 'name', 'National Sanatorium Oku-Komyoen'),
(128167, 102389, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€é‚‘ä¹…å…‰ę˜Žåœ’'),
(128168, 102390, 'en', 'name', 'Mie Prefecture Industrial Research Institute'),
(128169, 102390, 'ja', 'name', 'äø‰é‡ēœŒå·„ę„­ē ”ē©¶ę‰€'),
(128170, 102391, 'en', 'name', 'Debra'),
(128171, 102392, 'en', 'name', 'The Institute For Zen Studies'),
(128172, 102392, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē¦…ę–‡åŒ–ē ”ē©¶ę‰€'),
(128173, 102393, 'en', 'name', 'Mie Prefectural General Medical Center'),
(128174, 102393, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗäø‰é‡ēœŒē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(128175, 102394, 'en', 'name', 'Asahino General Hospital'),
(128176, 102394, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗęœę—„é‡Žä¼šęœę—„é‡Žē·åˆē—…é™¢'),
(128177, 102395, 'en', 'name', 'The Japanese Association for Infectious Diseases'),
(128178, 102395, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę„ŸęŸ“ē—‡å­¦ä¼š'),
(128179, 102396, 'fr', 'name', 'Observatoire des sciences de l''univers de l''UniversitƩ Versailles Saint-Quentin'),
(128180, 102396, 'en', 'name', 'Universe Sciences Observatory of University Versailles Saint-Quentin'),
(128181, 102397, 'en', 'name', 'Carl von Ossietzky University of Oldenburg'),
(128182, 102397, 'de', 'name', 'Carl von Ossietzky UniversitƤt Oldenburg'),
(128183, 102398, 'en', 'name', 'Fukui Prefectural General Green Center'),
(128184, 102398, 'ja', 'name', 'ē¦äŗ•ēœŒē·åˆć‚°ćƒŖćƒ¼ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(128185, 102399, 'en', 'name', 'Nagasaki Agriculture and Forestry Technical Development Center'),
(128186, 102399, 'ja', 'name', 'é•·å“ŽēœŒč¾²ęž—ęŠ€č”“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(128187, 102400, 'en', 'name', 'Nagasaki Prefectural Police'),
(128188, 102400, 'ja', 'name', 'é•·å“ŽēœŒč­¦åÆŸ'),
(128189, 102401, 'en', 'name', 'Hyogo Health Service Association'),
(128190, 102401, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…µåŗ«ēœŒäŗˆé˜²åŒ»å­¦å”ä¼š'),
(128191, 102402, 'en', 'name', 'Sakura General Hospital'),
(128192, 102402, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåŒ»ä»ä¼šć•ćć‚‰ē·åˆē—…é™¢'),
(128193, 102403, 'en', 'name', 'Yamanashi Gakuin Junior College'),
(128194, 102403, 'ja', 'name', 'å±±ę¢Øå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(128195, 102404, 'en', 'name', 'Shimane Prefectural Government'),
(128196, 102404, 'ja', 'name', '島根県庁'),
(128197, 102405, 'en', 'name', 'Omuta City Hospital'),
(128198, 102405, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§ē‰Ÿē”°åø‚ē«‹ē—…é™¢'),
(128199, 102406, 'en', 'name', 'Toho Gakuen College of Drama and Music'),
(128200, 102406, 'ja', 'name', 'ę”ęœ‹å­¦åœ’čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(128201, 102407, 'en', 'name', 'Union of Japanese Scientists and Engineers'),
(128202, 102407, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦ęŠ€č”“é€£ē›Ÿ'),
(128203, 102408, 'en', 'name', 'SANKO Research Institute'),
(128204, 102408, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø‰åŗ·ę–‡åŒ–ē ”ē©¶ę‰€'),
(128205, 102409, 'en', 'name', 'Research Institute for Animal Science in Biochemistry and Toxicology'),
(128206, 102409, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē”Ÿē‰©ē§‘å­¦å®‰å…Øē ”ē©¶ę‰€'),
(128207, 102410, 'en', 'name', 'Ehime Prefectural International Center'),
(128208, 102410, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę„›åŖ›ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(128209, 102411, 'en', 'name', 'Industrial Research Center of Shiga Prefecture'),
(128210, 102411, 'ja', 'name', 'ę»‹č³€ēœŒå·„ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(128211, 102412, 'en', 'name', 'Kumamoto Kenhoku Hospital'),
(128212, 102412, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗćć¾ć‚‚ćØēœŒåŒ—ē—…é™¢'),
(128213, 102413, 'en', 'name', 'Kyoto Kujo Hospital'),
(128214, 102413, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåŒä»ä¼šäŗ¬éƒ½ä¹ę”ē—…é™¢'),
(128215, 102414, 'en', 'name', 'Aichi Prefectural Forestry Research Institute'),
(128216, 102414, 'ja', 'name', 'ę„›ēŸ„ēœŒę£®ęž—ćƒ»ęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(128217, 102415, 'en', 'name', 'Yamagata Prefectural Government'),
(128218, 102415, 'ja', 'name', '山形県庁'),
(128219, 102416, 'en', 'name', 'Tochigi Prefectural Museum'),
(128220, 102416, 'ja', 'name', 'ę ƒęœØēœŒē«‹åšē‰©é¤Ø'),
(128221, 102417, 'en', 'name', 'Incorporated Foundation Okinawa Prefecture Environment Science Center'),
(128222, 102417, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę²–ēø„ēœŒē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(128223, 102418, 'en', 'name', 'Ichinomiyanishi Hospital'),
(128224, 102418, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęå¶ŗä¼šäø€å®®č„æē—…é™¢'),
(128225, 102419, 'en', 'name', 'Keidanren'),
(128226, 102419, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒęøˆå›£ä½“é€£åˆä¼š'),
(128227, 102420, 'en', 'name', 'The Society of Non-Traditional Technology'),
(128228, 102420, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęœŖčøē§‘å­¦ęŠ€č”“å”ä¼š'),
(128229, 102421, 'en', 'name', 'Snow Research Center'),
(128230, 102421, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé›Ŗć‚»ćƒ³ć‚æćƒ¼'),
(128231, 102422, 'en', 'name', 'Yamaguchi Prefectural Institute of Public Health and Environment'),
(128232, 102422, 'ja', 'name', 'å±±å£ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(128233, 102423, 'en', 'name', 'Osaka Industrial Design Center'),
(128234, 102423, 'ja', 'name', 'å¤§é˜Ŗåŗœē”£ę„­ćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(128235, 102424, 'en', 'name', 'Viral Hepatitis Research Foundation of Japan'),
(128236, 102424, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¦ć‚¤ćƒ«ć‚¹č‚ē‚Žē ”ē©¶č²”å›£'),
(128237, 102425, 'en', 'name', 'Wakayama Prefectural Government'),
(128238, 102425, 'ja', 'name', 'å’Œę­Œå±±ēœŒåŗ'),
(128239, 102426, 'en', 'name', 'Gyoda General Hospital'),
(128240, 102426, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå£®å¹øä¼šč”Œē”°ē·åˆē—…é™¢'),
(128241, 102427, 'en', 'name', 'Nagano Animal Industry Experiment Station'),
(128242, 102427, 'ja', 'name', 'é•·é‡ŽēœŒē•œē”£č©¦éØ“å “'),
(128243, 102428, 'en', 'name', 'Yamaguchi Prefectural Fisheries Research Center'),
(128244, 102428, 'ja', 'name', 'å±±å£ēœŒę°“ē”£ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(128245, 102429, 'en', 'name', 'Agency for Natural Resources and Energy'),
(128246, 102429, 'ja', 'name', 'č³‡ęŗć‚Øćƒćƒ«ć‚®ćƒ¼åŗ'),
(128247, 102430, 'en', 'name', 'Kumagaya General Hospital'),
(128248, 102430, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē†Šč°·ē·åˆē—…é™¢'),
(128249, 102431, 'en', 'name', 'Japan Institute of Information Technology'),
(128250, 102431, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗä¼ę„­ęƒ…å ±åŒ–å”ä¼š'),
(128251, 102432, 'en', 'name', 'Archaeological Information System of the Czech Republic'),
(128252, 102433, 'en', 'name', 'Coastal Development Institute of Technology'),
(128253, 102433, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę²æå²øęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(128254, 102434, 'en', 'name', 'Gifu Prefectural Livestock Research Institute'),
(128255, 102434, 'ja', 'name', 'å²é˜œēœŒē•œē”£ē ”ē©¶ę‰€'),
(128256, 102435, 'en', 'name', 'Machida Municipal Hospital'),
(128257, 102435, 'ja', 'name', '町田市民病院'),
(128258, 102436, 'en', 'name', 'Jikei University of Health Care Sciences'),
(128259, 102436, 'ja', 'name', 'ę»‹ę…¶åŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(128260, 102437, 'en', 'name', 'Gifu Prefectural Research Institute for Agricultural Technology in Hilly and Mountainous Areas'),
(128261, 102437, 'ja', 'name', 'å²é˜œēœŒäø­å±±é–“č¾²ę„­ē ”ē©¶ę‰€'),
(128262, 102438, 'en', 'name', 'Ibaraki Prefectural Institute of Public Health'),
(128263, 102438, 'ja', 'name', 'čŒØåŸŽēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(128264, 102439, 'en', 'name', 'Kochi Prefectural Deep Seawater Laboratory'),
(128265, 102439, 'ja', 'name', 'é«˜ēŸ„ēœŒęµ·ę“‹ę·±å±¤ę°“ē ”ē©¶ę‰€'),
(128266, 102440, 'en', 'name', 'Kyoto Nursing Association'),
(128267, 102440, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½åŗœēœ‹č­·å”ä¼š'),
(128268, 102441, 'en', 'name', 'Miyazaki Prefectural Government'),
(128269, 102441, 'ja', 'name', 'å®®å“ŽēœŒåŗ'),
(128270, 102442, 'en', 'name', 'Toyama Prefectural Government'),
(128271, 102442, 'ja', 'name', '富山県庁'),
(128272, 102443, 'en', 'name', 'Nagasaki Prefectural Institute for Environmental Research and Public Health'),
(128273, 102443, 'ja', 'name', 'é•·å“ŽēœŒē’°å¢ƒäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(128274, 102444, 'en', 'name', 'Shioda Hospital'),
(128275, 102444, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗSHIODA唩田病院'),
(128276, 102445, 'en', 'name', 'International Development Center of Japan'),
(128277, 102445, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(128278, 102446, 'en', 'name', 'Kyoto Industrial Health Association'),
(128279, 102446, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäŗ¬éƒ½å·„å “äæå„ä¼š'),
(128280, 102447, 'en', 'name', 'The Japan Research Institute of Industrial Science'),
(128281, 102447, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē”£ę„­ē§‘å­¦ē ”ē©¶ę‰€'),
(128282, 102448, 'en', 'name', 'Suzuka Kaisei Hospital'),
(128283, 102448, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå³°å’Œä¼šéˆ“é¹æå›žē”Ÿē—…é™¢'),
(128284, 102449, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Roma I'),
(128285, 102449, 'en', 'name', 'National Institute for Nuclear Physics, Rome I Division'),
(128286, 102450, 'en', 'name', 'Research and Training Institute of the Ministry of Justice'),
(128287, 102450, 'ja', 'name', 'ę³•å‹™ēœę³•å‹™ē·åˆē ”ē©¶ę‰€'),
(128288, 102451, 'it', 'name', 'Istituto Nazionale di Ottica'),
(128289, 102451, 'en', 'name', 'National Institute of Optics'),
(128290, 102452, 'en', 'name', 'Industrial Research Institute of Niigata Prefecture'),
(128291, 102452, 'ja', 'name', 'ę–°ę½ŸēœŒå·„ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(128292, 102453, 'en', 'name', 'Wakayama City Institute Of Public Health'),
(128293, 102453, 'ja', 'name', 'å’Œę­Œå±±åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(128294, 102454, 'en', 'name', 'Hikone Municipal Hospital'),
(128295, 102454, 'ja', 'name', '彦根市立病院'),
(128296, 102455, 'en', 'name', 'Uji-Tokushukai Medical Center'),
(128297, 102455, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šå®‡ę²»å¾³ę“²ä¼šē—…é™¢'),
(128298, 102456, 'en', 'name', 'THE Research Foundation For Pharmaceutical Sciences'),
(128299, 102456, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč–¬å­¦ē ”ē©¶å„ØåŠ±č²”å›£'),
(128300, 102457, 'en', 'name', 'Tokai Technology Center'),
(128301, 102457, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę±ęµ·ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(128302, 102458, 'en', 'name', 'Kashiwa Kousei General Hospital'),
(128303, 102458, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å”å‹ä¼šęŸåŽšē”Ÿē·åˆē—…é™¢'),
(128304, 102459, 'en', 'name', 'Tsukuba Central Hospital'),
(128305, 102459, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč‹„ē«¹ä¼šć¤ćć°ć‚»ćƒ³ćƒˆćƒ©ćƒ«ē—…é™¢'),
(128306, 102460, 'en', 'name', 'Japan Dam Engineering Center'),
(128307, 102460, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ€ćƒ ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(128308, 102461, 'en', 'name', 'Chiba Tokushukai Hospital'),
(128309, 102461, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šåƒč‘‰å¾³ę“²ä¼šē—…é™¢'),
(128310, 102462, 'en', 'name', 'Toyosato Hospital'),
(128311, 102462, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč±Šéƒ·ē—…é™¢'),
(128312, 102463, 'en', 'name', 'Yamanashi Prefectural Government'),
(128313, 102463, 'ja', 'name', '山梨県庁'),
(128314, 102464, 'en', 'name', 'Japan Visiting Nursing Foundation'),
(128315, 102464, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬čØŖå•ēœ‹č­·č²”å›£'),
(128316, 102465, 'en', 'name', 'Kitakyushu General Hospital'),
(128317, 102465, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗåŒ—ä¹å·žē—…é™¢åŒ—ä¹å·žē·åˆē—…é™¢'),
(128318, 102466, 'en', 'name', 'Research Institute for Regional Planning and Development'),
(128319, 102466, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåœ°åŸŸå•é”Œē ”ē©¶ę‰€'),
(128320, 102467, 'en', 'name', 'Yonemori Hospital'),
(128321, 102467, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē·‘ę³‰ä¼šē±³ē››ē—…é™¢'),
(128322, 102468, 'en', 'name', 'Ibaraki Agriculture Institute'),
(128323, 102468, 'ja', 'name', 'čŒØåŸŽēœŒč¾²ę„­ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(128324, 102469, 'en', 'name', 'National Institute for Research Advancement'),
(128325, 102469, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē·åˆē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(128326, 102470, 'en', 'name', 'Hyogo Prefectural Tamba Medical Center'),
(128327, 102470, 'ja', 'name', 'å…µåŗ«ēœŒē«‹äø¹ę³¢åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(128328, 102471, 'en', 'name', 'Forestry Agency'),
(128329, 102471, 'ja', 'name', 'ęž—é‡Žåŗ'),
(128330, 102472, 'en', 'name', 'Miyazaki Prefectural Industrial Support Foundation'),
(128331, 102472, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå®®å“ŽēœŒē”£ę„­ęŒÆčˆˆę©Ÿę§‹'),
(128332, 102473, 'en', 'name', 'Tokushima Prefectural Government'),
(128333, 102473, 'ja', 'name', '徳島県庁'),
(128334, 102474, 'en', 'name', 'Service Center of Port Engineering'),
(128335, 102474, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęøÆę¹¾ē©ŗęøÆē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(128336, 102475, 'en', 'name', 'Kyoto Prefectural Technology Center for Small and Medium Enterprises'),
(128337, 102475, 'ja', 'name', 'äŗ¬éƒ½åŗœäø­å°ä¼ę„­ęŠ€č”“ć‚»ćƒ³ć‚æāˆ’'),
(128338, 102476, 'en', 'name', 'Kansai Occupational Health Association'),
(128339, 102476, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æåŠ“åƒäæå„å”ä¼š'),
(128340, 102477, 'en', 'name', 'Ishikawa Prefecture Fisheries Research Center'),
(128341, 102477, 'ja', 'name', 'ēŸ³å·ēœŒę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(128342, 102478, 'en', 'name', 'The Institute of Environmental Toxicology'),
(128343, 102478, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę®‹ē•™č¾²č–¬ē ”ē©¶ę‰€'),
(128344, 102479, 'en', 'name', 'Tokiwa Junior College'),
(128345, 102479, 'ja', 'name', '常磐短期大学'),
(128346, 102480, 'en', 'name', 'Variable Star Observers League in Japan'),
(128347, 102480, 'ja', 'name', 'ę—„ęœ¬å¤‰å…‰ę˜Ÿč¦³ęø¬č€…é€£ē›Ÿ'),
(128348, 102481, 'en', 'name', 'Shiraniwa Hospital'),
(128349, 102481, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę¾äø‹ä¼šē™½åŗ­ē—…é™¢'),
(128350, 102482, 'en', 'name', 'Iwate Prefectural Nihohe Hospital'),
(128351, 102482, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹äŗŒęˆøē—…é™¢'),
(128352, 102483, 'en', 'name', 'Geological Carbon Dioxide Storage Technology Research Association'),
(128353, 102483, 'ja', 'name', 'äŗŒé…øåŒ–ē‚­ē“ åœ°äø­č²Æē•™ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(128354, 102484, 'en', 'name', 'KIOS Research and Innovation Center of Excellence'),
(128355, 102485, 'en', 'name', 'Hiroshima International Center'),
(128356, 102485, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć²ć‚ć—ć¾å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(128357, 102486, 'en', 'name', 'Kurate Hospital'),
(128358, 102486, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗćć‚‰ć¦ē—…é™¢'),
(128359, 102487, 'en', 'name', 'Shakomae Kokorono Clinic'),
(128360, 102487, 'ja', 'name', 'č»Šåŗ«å‰ć“ć“ć‚ć®ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(128361, 102488, 'en', 'name', 'Nagasaki Prefectural Institute of Fisheries'),
(128362, 102488, 'ja', 'name', 'é•·å“ŽēœŒē·åˆę°“ē”£č©¦éØ“å “'),
(128363, 102489, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Torino'),
(128364, 102489, 'en', 'name', 'National Institute for Nuclear Physics, Turin Section'),
(128365, 102490, 'en', 'name', 'Chugoku Junior College'),
(128366, 102490, 'ja', 'name', 'äø­å›½ēŸ­ęœŸå¤§å­¦'),
(128367, 102491, 'en', 'name', 'Saitama Citizens Medical Center'),
(128368, 102491, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć•ć„ćŸć¾åø‚ę°‘åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(128369, 102492, 'fr', 'name', 'Centre de Morphologie MathƩmatique - CMM'),
(128370, 102492, 'en', 'name', 'Centre for mathematical morphology - CMM'),
(128371, 102493, 'en', 'name', 'The Japanese Institute of Irrigation and Drainage'),
(128372, 102493, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę°“åœŸē·åˆē ”ē©¶ę‰€'),
(128373, 102494, 'en', 'name', 'Nihon Medical Association'),
(128374, 102494, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»å­¦å”ä¼š'),
(128375, 102495, 'en', 'name', 'Tokyo Metropolitan Hospital Organization'),
(128376, 102495, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę±äŗ¬éƒ½ē«‹ē—…é™¢ę©Ÿę§‹'),
(128377, 102496, 'lv', 'name', 'LU Literatūras, Folkloras Un Mākslas Instituts'),
(128378, 102496, 'en', 'name', 'UL Institute of Literature, Folklore and Art'),
(128379, 102497, 'en', 'name', 'St Joseph''s Health Care'),
(128380, 102498, 'en', 'name', 'Oita Prefectural Agriculture, Forestry and Fisheries Research Center'),
(128381, 102498, 'ja', 'name', 'å¤§åˆ†ēœŒč¾²ęž—ę°“ē”£ē ”ē©¶ęŒ‡å°Žć‚»ćƒ³ć‚æćƒ¼'),
(128382, 102499, 'en', 'name', 'Shinbeppu Hospital'),
(128383, 102499, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šę–°åˆ„åŗœē—…é™¢'),
(128384, 102500, 'fr', 'name', 'HƓpital du Saint-Sacrement'),
(128385, 102501, 'en', 'name', 'Musashino Junior College'),
(128386, 102501, 'ja', 'name', 'ę­¦č”µé‡ŽēŸ­ęœŸå¤§å­¦'),
(128387, 102502, 'en', 'name', 'Saitama Agricultural Technology Research Center'),
(128388, 102502, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒč¾²ę„­ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(128389, 102503, 'en', 'name', 'Optoelectronic Industry and Technology Development Association'),
(128390, 102503, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…‰ē”£ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(128391, 102504, 'en', 'name', 'Akita Prefectural Resources Technology Development Organization'),
(128392, 102504, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē§‹ē”°ēœŒč³‡ęŗęŠ€č”“é–‹ē™ŗę©Ÿę§‹'),
(128393, 102505, 'en', 'name', 'Aichi Blood Disease Research Foundation'),
(128394, 102505, 'ja', 'name', 'č²”å›£ę³•äŗŗę„›ēŸ„č”€ę¶²ē–¾ę‚£ē ”ē©¶č²”å›£'),
(128395, 102506, 'en', 'name', 'Gifu Prefectural Ceramics Research Institute'),
(128396, 102506, 'ja', 'name', 'å²é˜œēœŒć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ē ”ē©¶ę‰€'),
(128397, 102507, 'en', 'name', 'Sendai Medical Association'),
(128398, 102507, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗä»™å°åø‚åŒ»åø«ä¼š'),
(128399, 102508, 'de', 'name', 'Institut für Chemie und Biologie des Meeres'),
(128400, 102508, 'en', 'name', 'Institute for Chemistry and Biology of the Marine Environment'),
(128401, 102509, 'en', 'name', 'Chiba City Institute of Health and Environment'),
(128402, 102509, 'ja', 'name', 'åƒč‘‰åø‚ē’°å¢ƒäæå„ē ”ē©¶ę‰€'),
(128403, 102510, 'en', 'name', 'Fukuoka Nursing College'),
(128404, 102510, 'ja', 'name', 'ē¦å²”ēœ‹č­·å¤§å­¦'),
(128405, 102511, 'en', 'name', 'SAM Global University'),
(128406, 102512, 'en', 'name', 'Nippon Koukan Hospital'),
(128407, 102512, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ć“ć†ć‹ć‚“ä¼šę—„ęœ¬é‹¼ē®”ē—…é™¢'),
(128408, 102513, 'en', 'name', 'Fukuoka Prefectural Police'),
(128409, 102513, 'ja', 'name', 'ē¦å²”ēœŒč­¦åÆŸ'),
(128410, 102514, 'en', 'name', 'Kumamoto Prefectural Agricultural Research Center'),
(128411, 102514, 'ja', 'name', 'ē†Šęœ¬ēœŒč¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼');
INSERT INTO `ror_settings` VALUES
(128412, 102515, 'en', 'name', 'Tsugaru General Hospital'),
(128413, 102515, 'ja', 'name', 'ć¤ćŒć‚‹ē·åˆē—…é™¢'),
(128414, 102516, 'en', 'name', 'Hanshin Expressway Research Institute for Advanced Technology'),
(128415, 102516, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé˜Ŗē„žé«˜é€Ÿå…ˆé€²ęŠ€č”“ē ”ē©¶ę‰€'),
(128416, 102517, 'en', 'name', 'Nagano Techno Foundation'),
(128417, 102517, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé•·é‡ŽēœŒćƒ†ć‚ÆćƒŽč²”å›£'),
(128418, 102518, 'en', 'name', 'Hirakata Kohsai Hospital'),
(128419, 102518, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šęžšę–¹å…¬ęøˆē—…é™¢'),
(128420, 102519, 'en', 'name', 'Madurai Medical College'),
(128421, 102519, 'ta', 'name', 'மதுரை ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(128422, 102520, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Milano'),
(128423, 102520, 'en', 'name', 'National Institute for Nuclear Physics, Milan Unit'),
(128424, 102521, 'en', 'name', 'The Japanese Society for Artificial Intelligence'),
(128425, 102521, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗŗå·„ēŸ„čƒ½å­¦ä¼š'),
(128426, 102522, 'en', 'name', 'Micromachine Center'),
(128427, 102522, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒžć‚¤ć‚Æćƒ­ćƒžć‚·ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(128428, 102523, 'en', 'name', 'Japan Association For Inspection And Investigation Of Foods Including Fats And Oils'),
(128429, 102523, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ę²¹č„‚ę¤œęŸ»å”ä¼š'),
(128430, 102524, 'en', 'name', 'Miyazaki Medical Association Hospital'),
(128431, 102524, 'ja', 'name', 'å®®å“Žåø‚éƒ”åŒ»åø«ä¼šē—…é™¢'),
(128432, 102525, 'en', 'name', 'The Building Center of Japan'),
(128433, 102525, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ć‚»ćƒ³ć‚æćƒ¼'),
(128434, 102526, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Ferrara'),
(128435, 102526, 'en', 'name', 'National Institute for Nuclear Physics, Ferrara Division'),
(128436, 102527, 'en', 'name', 'Kakogawa City Hospital Organization'),
(128437, 102527, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ å¤å·åø‚ę°‘ē—…é™¢ę©Ÿę§‹'),
(128438, 102528, 'en', 'name', 'Obihiro Kyokai Hospital'),
(128439, 102528, 'ja', 'name', 'åŒ—ęµ·é“ē¤¾ä¼šäŗ‹ę„­å”ä¼šåøÆåŗƒē—…é™¢'),
(128440, 102529, 'en', 'name', 'Yokohama General Hospital'),
(128441, 102529, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·‘ęˆä¼šęØŖęµœē·åˆē—…é™¢'),
(128442, 102530, 'en', 'name', 'Lawson Health Research Institute'),
(128443, 102531, 'en', 'name', 'Isehara Kyodo Hospital'),
(128444, 102531, 'ja', 'name', 'JAē„žå„ˆå·åŽšē”Ÿé€£ä¼Šå‹¢åŽŸå”åŒē—…é™¢'),
(128445, 102532, 'en', 'name', 'Hokusho College'),
(128446, 102532, 'ja', 'name', 'åŒ—ēæ”å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(128447, 102533, 'en', 'name', 'Canadian Social Prescribing Student Collective'),
(128448, 102534, 'en', 'name', 'Iwate Prefectural Forestry Technology Center'),
(128449, 102534, 'ja', 'name', 'å²©ę‰‹ēœŒęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(128450, 102535, 'en', 'name', 'Kokugakuin Tochigi Junior College'),
(128451, 102535, 'ja', 'name', 'åœ‹å­øé™¢å¤§å­¦ę ƒęœØēŸ­ęœŸå¤§å­¦'),
(128452, 102536, 'en', 'name', 'Liaoning Police College'),
(128453, 102536, 'zh', 'name', 'č¾½å®č­¦åÆŸå­¦é™¢'),
(128454, 102537, 'en', 'name', 'Saga Forestry Research Laboratory'),
(128455, 102537, 'ja', 'name', 'ä½č³€ēœŒęž—ę„­č©¦éØ“å “'),
(128456, 102538, 'en', 'name', 'Nara Prefectural Pharmaceutical Research Center'),
(128457, 102538, 'ja', 'name', 'å„ˆč‰ÆēœŒč–¬äŗ‹ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(128458, 102539, 'en', 'name', 'Hyogo Nursing Association'),
(128459, 102539, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…µåŗ«ēœŒēœ‹č­·å”ä¼š'),
(128460, 102540, 'en', 'name', 'Japan Environmental Technology Association'),
(128461, 102540, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒęŠ€č”“å”ä¼š'),
(128462, 102541, 'en', 'name', 'Ceramic Research Center of Nagasaki'),
(128463, 102541, 'ja', 'name', 'é•·å“ŽēœŒēŖÆę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(128464, 102542, 'en', 'name', 'Institute for Traffic Accident Research and Data Analysis'),
(128465, 102542, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗ¤é€šäŗ‹ę•…ē·åˆåˆ†ęžć‚»ćƒ³ć‚æćƒ¼'),
(128466, 102543, 'en', 'name', 'Ajinomoto Dietary Culture Center'),
(128467, 102543, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå‘³ć®ē“ é£Ÿć®ę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(128468, 102544, 'en', 'name', 'Matsuyama Junior College'),
(128469, 102544, 'ja', 'name', 'ę¾å±±ēŸ­ęœŸå¤§å­¦'),
(128470, 102545, 'en', 'name', 'Yokohama Environmental Science Research Institute'),
(128471, 102545, 'ja', 'name', 'ęØŖęµœåø‚ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(128472, 102546, 'en', 'name', 'Institute of Solid State Physics, UL'),
(128473, 102546, 'lv', 'name', 'LU Cietvielu fizikas institūts'),
(128474, 102547, 'en', 'name', 'Kurashiki Sweet Hospital'),
(128475, 102547, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå’Œé¦™ä¼šå€‰ę•·ć‚¹ć‚¤ćƒ¼ćƒˆćƒ›ć‚¹ćƒ”ć‚æćƒ«'),
(128476, 102548, 'en', 'name', 'Association of Polish Surveyors'),
(128477, 102549, 'en', 'name', 'Oita Prefectural Police'),
(128478, 102549, 'ja', 'name', 'å¤§åˆ†ēœŒč­¦åÆŸ'),
(128479, 102550, 'en', 'name', 'Kumamoto City Environmental Research Center'),
(128480, 102550, 'ja', 'name', 'ē†Šęœ¬åø‚ē’°å¢ƒē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(128481, 102551, 'en', 'name', 'The Japan Foundation Center'),
(128482, 102551, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŠ©ęˆč²”å›£ć‚»ćƒ³ć‚æćƒ¼'),
(128483, 102552, 'en', 'name', 'Osaka University of Arts Junior College'),
(128484, 102552, 'ja', 'name', 'å¤§é˜ŖčŠøč”“å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(128485, 102553, 'en', 'name', 'Kyoto Okamoto Memorial Hospital'),
(128486, 102553, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå²”ęœ¬ē—…é™¢ļ¼ˆč²”å›£ļ¼‰äŗ¬éƒ½å²”ęœ¬čØ˜åæµē—…é™¢'),
(128487, 102554, 'en', 'name', 'The Operations Research Society of Japan'),
(128488, 102554, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Ŗćƒšćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗćƒ»ćƒŖć‚µćƒ¼ćƒå­¦ä¼š'),
(128489, 102555, 'en', 'name', 'Hokkaido Cardiovascular Hospital'),
(128490, 102555, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ—ęµ·é“å¾Ŗē’°å™Øē—…é™¢'),
(128491, 102556, 'en', 'name', 'University of Trieste'),
(128492, 102556, 'it', 'name', 'UniversitĆ  degli Studi di Trieste'),
(128493, 102556, 'de', 'name', 'UniversitƤt Triest'),
(128494, 102556, 'fr', 'name', 'UniversitƩ de Trieste'),
(128495, 102556, 'sl', 'name', 'Univerza v Trstu'),
(128496, 102557, 'en', 'name', 'Thermal and Nuclear Power Engineering Society'),
(128497, 102557, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē«åŠ›åŽŸå­åŠ›ē™ŗé›»ęŠ€č”“å”ä¼š'),
(128498, 102558, 'en', 'name', 'Japan Patent Information Organization'),
(128499, 102558, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē‰¹čØ±ęƒ…å ±ę©Ÿę§‹'),
(128500, 102559, 'en', 'name', 'Chemical Materials Evaluation and Research Base'),
(128501, 102559, 'ja', 'name', 'ę¬”äø–ä»£åŒ–å­¦ęę–™č©•ä¾”ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(128502, 102560, 'en', 'name', 'Civil Aviation College'),
(128503, 102560, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗčˆŖē©ŗå¤§å­¦ę ”'),
(128504, 102561, 'en', 'name', 'Yamanoue Hospital'),
(128505, 102561, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å„åÆæä¼šå±±ć®äøŠē—…é™¢'),
(128506, 102562, 'en', 'name', 'The Distribution Economics Institute of Japan'),
(128507, 102562, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęµé€šēµŒęøˆē ”ē©¶ę‰€'),
(128508, 102563, 'en', 'name', 'Wakayama Shin-ai University'),
(128509, 102563, 'ja', 'name', 'å’Œę­Œå±±äæ”ę„›å¤§å­¦'),
(128510, 102564, 'en', 'name', 'Shin-Oyama City Hospital'),
(128511, 102564, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę–°å°å±±åø‚ę°‘ē—…é™¢'),
(128512, 102565, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Cagliari'),
(128513, 102565, 'en', 'name', 'National Institute for Nuclear Physics, Cagliari Division'),
(128514, 102566, 'en', 'name', 'Itabashi Chuo Medical Center'),
(128515, 102566, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę˜ŽčŠ³ä¼šęæę©‹äø­å¤®ē·åˆē—…é™¢'),
(128516, 102567, 'en', 'name', 'Japan Grassland Agriculture and Forage Seed Association'),
(128517, 102567, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‰åœ°ē•œē”£ēØ®å­å”ä¼š'),
(128518, 102568, 'en', 'name', 'Saga Prefectural Ariake Fisheries Research and Development Center'),
(128519, 102568, 'ja', 'name', 'ä½č³€ēœŒęœ‰ę˜Žę°“ē”£ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(128520, 102569, 'en', 'name', 'Japan Medical Education Foundation'),
(128521, 102569, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ»å­¦ę•™č‚²ęŒÆčˆˆč²”å›£'),
(128522, 102570, 'en', 'name', 'Japan Concrete Institute'),
(128523, 102570, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚³ćƒ³ć‚ÆćƒŖćƒ¼ćƒˆå·„å­¦ä¼š'),
(128524, 102571, 'en', 'name', 'The Japanese Society of Pathology'),
(128525, 102571, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē—…ē†å­¦ä¼š'),
(128526, 102572, 'en', 'name', 'Yoka Hospital'),
(128527, 102572, 'ja', 'name', '公立八鹿病院'),
(128528, 102573, 'en', 'name', 'Fukui Memorial Hospital'),
(128529, 102573, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£é’å±±ä¼šē¦äŗ•čØ˜åæµē—…é™¢'),
(128530, 102574, 'en', 'name', 'Kaken Test Center'),
(128531, 102574, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚«ć‚±ćƒ³ćƒ†ć‚¹ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(128532, 102575, 'en', 'name', 'Miyagi Prefectural Furukawa Agricultural Experiment Station'),
(128533, 102575, 'ja', 'name', 'å®®åŸŽēœŒå¤å·č¾²ę„­č©¦éØ“å “'),
(128534, 102576, 'en', 'name', 'Niigata Prefectural Institute Of Brewing'),
(128535, 102576, 'ja', 'name', 'ę–°ę½ŸēœŒé†øé€ č©¦éØ“å “'),
(128536, 102577, 'en', 'name', 'Japan Association on Odor Environment'),
(128537, 102577, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗć«ćŠć„ćƒ»ć‹ćŠć‚Šē’°å¢ƒå”ä¼š'),
(128538, 102578, 'en', 'name', 'Rural Development Planning Commission'),
(128539, 102578, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč¾²ę‘é–‹ē™ŗä¼ē”»å§”å“”ä¼š'),
(128540, 102579, 'en', 'name', 'The Japanese Society for Cardiovascular Surgery'),
(128541, 102579, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬åæƒč‡“č”€ē®”å¤–ē§‘å­¦ä¼š'),
(128542, 102580, 'en', 'name', 'THE Institute Of Clinical Psychiatry'),
(128543, 102580, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē²¾ē„žåŒ»å­¦ē ”ē©¶ę‰€'),
(128544, 102581, 'en', 'name', 'Kumamoto Prefecture Forestry Research Guidance Place'),
(128545, 102581, 'ja', 'name', 'ē†Šęœ¬ēœŒęž—ę„­ē ”ē©¶ćƒ»ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(128546, 102582, 'en', 'name', 'Fukushima Prefectural Government'),
(128547, 102582, 'ja', 'name', 'ē¦å³¶ēœŒåŗ'),
(128548, 102583, 'en', 'name', 'Miyamoto Hospital'),
(128549, 102583, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå®®ęœ¬ē—…é™¢'),
(128550, 102584, 'en', 'name', 'Nagano Environmental Conservation Research Institute'),
(128551, 102584, 'ja', 'name', 'é•·é‡ŽēœŒē’°å¢ƒäæå…Øē ”ē©¶ę‰€'),
(128552, 102585, 'en', 'name', 'Iwate Prefectural Ofunato Hospital'),
(128553, 102585, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹å¤§čˆ¹ęø”ē—…é™¢'),
(128554, 102586, 'en', 'name', 'Caltech Alumni Association'),
(128555, 102587, 'en', 'name', 'Agano City Hospital'),
(128556, 102587, 'ja', 'name', 'ć‚ćŒć®åø‚ę°‘ē—…é™¢'),
(128557, 102588, 'en', 'name', 'Public Health Research Foundation'),
(128558, 102588, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ‘ćƒ–ćƒŖćƒƒć‚Æćƒ˜ćƒ«ć‚¹ćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(128559, 102589, 'en', 'name', 'Materials Process Technology Center'),
(128560, 102589, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē“ å½¢ęć‚»ćƒ³ć‚æćƒ¼'),
(128561, 102590, 'en', 'name', 'Josai Junior College'),
(128562, 102590, 'ja', 'name', 'åŸŽč„æēŸ­ęœŸå¤§å­¦'),
(128563, 102591, 'en', 'name', 'Japan Forest Technology Association'),
(128564, 102591, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę£®ęž—ęŠ€č”“å”ä¼š'),
(128565, 102592, 'en', 'name', 'SMART Reading'),
(128566, 102593, 'en', 'name', 'Hokkaido Cancer Society'),
(128567, 102593, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“åÆ¾ćŒć‚“å”ä¼š'),
(128568, 102594, 'en', 'name', 'Japan Fisheries Resource Conservation Association'),
(128569, 102594, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“ē”£č³‡ęŗäæč­·å”ä¼š'),
(128570, 102595, 'en', 'name', 'IVF Namba Clinic'),
(128571, 102595, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗäø‰ę…§ä¼šIVFćŖć‚“ć°ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(128572, 102596, 'en', 'name', 'The Advanced Materials Processing Institute Kinki Japan'),
(128573, 102596, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčæ‘ē•æé«˜ć‚Øćƒćƒ«ć‚®ćƒ¼åŠ å·„ęŠ€č”“ē ”ē©¶ę‰€'),
(128574, 102597, 'en', 'name', 'Yaizu City Hospital'),
(128575, 102597, 'ja', 'name', 'ē„¼ę“„åø‚ē«‹ē·åˆē—…é™¢'),
(128576, 102598, 'en', 'name', 'Fukuoka Mirai Hospital'),
(128577, 102598, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē›øē”Ÿä¼šē¦å²”ćæć‚‰ć„ē—…é™¢'),
(128578, 102599, 'en', 'name', 'Nagayoshi General Hospital'),
(128579, 102599, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåÆŗč„æå ±ę©ä¼šé•·å‰ē·åˆē—…é™¢'),
(128580, 102600, 'en', 'name', 'Okinawa Prefectural Forest Resources Research Center'),
(128581, 102600, 'ja', 'name', 'ę²–ēø„ēœŒę£®ęž—č³‡ęŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(128582, 102601, 'es', 'name', 'Universidad de Massachusetts Dartmouth'),
(128583, 102601, 'en', 'name', 'University of Massachusetts Dartmouth'),
(128584, 102601, 'fr', 'name', 'UniversitƩ du massachusetts de dartmouth'),
(128585, 102602, 'en', 'name', 'Japan Seafarers Relief Association'),
(128586, 102602, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęµ·å“”ęŽ–ęøˆä¼š'),
(128587, 102603, 'en', 'name', 'Japan Environment Association'),
(128588, 102603, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒå”ä¼š'),
(128589, 102604, 'en', 'name', 'Japan Frozen Food Association'),
(128590, 102604, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡é£Ÿå“å”ä¼š'),
(128591, 102605, 'en', 'name', 'Tatebayashi Kosei General Hospital'),
(128592, 102605, 'ja', 'name', 'å…¬ē«‹é¤Øęž—åŽšē”Ÿē—…é™¢'),
(128593, 102606, 'en', 'name', 'Water Re-use Promotion Center'),
(128594, 102606, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé€ ę°“äæƒé€²ć‚»ćƒ³ć‚æćƒ¼'),
(128595, 102607, 'en', 'name', 'Aichi Children''s Health and Medical Center'),
(128596, 102607, 'ja', 'name', 'ć‚ć„ć”å°å…äæå„åŒ»ē™‚ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(128597, 102608, 'en', 'name', 'Kochi Professional University of Rehabilitation'),
(128598, 102608, 'ja', 'name', 'é«˜ēŸ„ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(128599, 102609, 'en', 'name', 'Public Opinion Research Center'),
(128600, 102609, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč¼æč«–ē§‘å­¦å”ä¼š'),
(128601, 102610, 'en', 'name', 'Tokyo Dental Junior College'),
(128602, 102610, 'ja', 'name', 'ę±äŗ¬ę­Æē§‘å¤§å­¦ēŸ­ęœŸå¤§å­¦'),
(128603, 102611, 'en', 'name', 'Japan International Forestry Promotion and Cooperation Center'),
(128604, 102611, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē·‘åŒ–ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(128605, 102612, 'en', 'name', 'The Institute of Statistical Research'),
(128606, 102612, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗēµ±čØˆē ”ē©¶ä¼š'),
(128607, 102613, 'en', 'name', 'Toyama Prefectural Environmental Science Research Center'),
(128608, 102613, 'ja', 'name', 'åÆŒå±±ēœŒē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(128609, 102614, 'en', 'name', 'Fukui Prefectural Livestock Experimental Station'),
(128610, 102614, 'ja', 'name', 'ē¦äŗ•ēœŒē•œē”£č©¦éØ“å “'),
(128611, 102615, 'en', 'name', 'Central Japan Cord Blood Bank'),
(128612, 102615, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­éƒØć•ć„åøÆč”€ćƒćƒ³ć‚Æ'),
(128613, 102616, 'en', 'name', 'Seikeikai Hospital'),
(128614, 102616, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęø…ęµä¼šęø…ęµä¼šē—…é™¢'),
(128615, 102617, 'en', 'name', 'Nagoya Tokushukai General Hospital'),
(128616, 102617, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šåå¤å±‹å¾³ę“²ä¼šē·åˆē—…é™¢'),
(128617, 102618, 'en', 'name', 'Takamatsu Junior College'),
(128618, 102618, 'ja', 'name', 'é«˜ę¾ēŸ­ęœŸå¤§å­¦'),
(128619, 102619, 'en', 'name', 'Tochigi Prefectural Forestry Research Center'),
(128620, 102619, 'ja', 'name', 'ę ƒęœØēœŒęž—ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(128621, 102620, 'en', 'name', 'National Sanatorium Kikuchi Keifuen'),
(128622, 102620, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€čŠę± ęµę„“åœ’'),
(128623, 102621, 'en', 'name', 'Nagasaki Industrial Promotion Foundation'),
(128624, 102621, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé•·å“ŽēœŒē”£ę„­ęŒÆčˆˆč²”å›£'),
(128625, 102622, 'en', 'name', 'Chiba Industrial Technology Research Institute'),
(128626, 102622, 'ja', 'name', 'åƒč‘‰ēœŒē”£ę„­ę”Æę“ęŠ€č”“ē ”ē©¶ę‰€'),
(128627, 102623, 'en', 'name', 'Teikyo Gakuen Junior College'),
(128628, 102623, 'ja', 'name', 'åøäŗ¬å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(128629, 102624, 'en', 'name', 'The Mathematical Society of Japan'),
(128630, 102624, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę•°å­¦ä¼š'),
(128631, 102625, 'en', 'name', 'Japan Die Casting Association'),
(128632, 102625, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ€ć‚¤ć‚«ć‚¹ćƒˆå”ä¼š'),
(128633, 102626, 'en', 'name', 'Kawaguchi Municipal Medical Center'),
(128634, 102626, 'ja', 'name', 'å·å£åø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(128635, 102627, 'en', 'name', 'Asada Ladies Clinic'),
(128636, 102627, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗęµ…ē”°ćƒ¬ćƒ‡ć‚£ćƒ¼ć‚¹ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(128637, 102628, 'en', 'name', 'Kanagawa Health Foundation'),
(128638, 102628, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‹ćŖćŒć‚å„åŗ·č²”å›£'),
(128639, 102629, 'en', 'name', 'Yamato Takada Municipal Hospital'),
(128640, 102629, 'ja', 'name', 'å¤§å’Œé«˜ē”°åø‚ē«‹ē—…é™¢'),
(128641, 102630, 'en', 'name', 'National Sanatorium KURIU-RAKUSENEN'),
(128642, 102630, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€ę —ē”Ÿę„½ę³‰åœ’'),
(128643, 102631, 'en', 'name', 'KANO General Hospital'),
(128644, 102631, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå”å’Œä¼šåŠ ē“ē·åˆē—…é™¢'),
(128645, 102632, 'en', 'name', 'Kitakyushu City Hospital Organization'),
(128646, 102632, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŒ—ä¹å·žåø‚ē«‹ē—…é™¢ę©Ÿę§‹'),
(128647, 102633, 'en', 'name', 'SOUSEIKAI Hakata Clinic'),
(128648, 102633, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē›øē”Ÿä¼šåšå¤šć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(128649, 102634, 'en', 'name', 'Kihara Memorial Yokohama Foundation for the Advancement of Life Sciences'),
(128650, 102634, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęœØåŽŸčØ˜åæµęØŖęµœē”Ÿå‘½ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(128651, 102635, 'en', 'name', 'Danish Cardiovascular Research Academy'),
(128652, 102635, 'da', 'name', 'Dansk KardiovaskulƦrt Forskningsakademi'),
(128653, 102636, 'en', 'name', 'Kochi Prefectural Fisheries Experiment Station'),
(128654, 102636, 'ja', 'name', 'é«˜ēŸ„ēœŒę°“ē”£č©¦éØ“å “'),
(128655, 102637, 'en', 'name', 'Hekinan Municipal Hospital'),
(128656, 102637, 'ja', 'name', 'ē¢§å—åø‚ę°‘ē—…é™¢'),
(128657, 102638, 'en', 'name', 'Eikei University Of Hiroshima'),
(128658, 102638, 'ja', 'name', '叔啓大学'),
(128659, 102639, 'en', 'name', 'Nuclear Regulation Authority'),
(128660, 102639, 'ja', 'name', 'åŽŸå­åŠ›č¦åˆ¶å§”å“”ä¼š'),
(128661, 102640, 'en', 'name', 'The Japan Electrical Manufacturers'' Association'),
(128662, 102640, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę©Ÿå·„ę„­ä¼š'),
(128663, 102641, 'en', 'name', 'Hot Spring Research Center'),
(128664, 102641, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­å¤®ęø©ę³‰ē ”ē©¶ę‰€'),
(128665, 102642, 'en', 'name', 'Seirei Hamamatsu City Rehabilitation Hospital'),
(128666, 102642, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£ęµœę¾åø‚ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(128667, 102643, 'en', 'name', 'Johoku Hospital'),
(128668, 102643, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗēŸ³å·å‹¤åŠ“č€…åŒ»ē™‚å”ä¼šåŸŽåŒ—ē—…é™¢'),
(128669, 102644, 'en', 'name', 'Japanese Olympic Committee'),
(128670, 102644, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚ŖćƒŖćƒ³ćƒ”ćƒƒć‚Æå§”å“”ä¼š'),
(128671, 102645, 'en', 'name', 'Chukyo Eye Clinic'),
(128672, 102645, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗć„ć•ćŖä¼šäø­äŗ¬ēœ¼ē§‘'),
(128673, 102646, 'en', 'name', 'Jiyugaoka Sanno College'),
(128674, 102646, 'ja', 'name', 'č‡Ŗē”±ćŒäø˜ē”£čƒ½ēŸ­ęœŸå¤§å­¦'),
(128675, 102647, 'en', 'name', 'Japan Pharmaceutical Manufacturers Association'),
(128676, 102647, 'ja', 'name', 'ę—„ęœ¬č£½č–¬å·„ę„­å”ä¼š'),
(128677, 102648, 'en', 'name', 'Japanese Society of Periodontology'),
(128678, 102648, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ę­Æå‘Øē—…å­¦ä¼š'),
(128679, 102649, 'en', 'name', 'Hyogo Prefectural Technology Center for Agriculture, Forestry and Fisheries'),
(128680, 102649, 'ja', 'name', 'å…µåŗ«ēœŒē«‹č¾²ęž—ę°“ē”£ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(128681, 102650, 'en', 'name', 'Miyagi Prefectural Livestock Experiment Station'),
(128682, 102650, 'ja', 'name', 'å®®åŸŽēœŒē•œē”£č©¦éØ“å “'),
(128683, 102651, 'en', 'name', 'Mie Industry and Enterprise Support Center'),
(128684, 102651, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø‰é‡ēœŒē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(128685, 102652, 'en', 'name', 'Tagawa Municipal Hospital'),
(128686, 102652, 'ja', 'name', 'ē”°å·åø‚ē«‹ē—…é™¢'),
(128687, 102653, 'en', 'name', 'Friedrich Schiller University Jena'),
(128688, 102653, 'de', 'name', 'Friedrich-Schiller-UniversitƤt Jena'),
(128689, 102654, 'en', 'name', 'Tohoku Seikatsu Bunka Junior College'),
(128690, 102654, 'ja', 'name', 'ę±åŒ—ē”Ÿę“»ę–‡åŒ–å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(128691, 102655, 'en', 'name', 'Tajimi Iwase Eye Clinic'),
(128692, 102655, 'ja', 'name', 'ćŸć˜ćæå²©ē€¬ēœ¼ē§‘'),
(128693, 102656, 'en', 'name', 'Olusegun Agagu University of Science and Technology'),
(128694, 102657, 'en', 'name', 'SAGA Prefectural Environmental Research Center'),
(128695, 102657, 'ja', 'name', 'ä½č³€ēœŒē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(128696, 102658, 'en', 'name', 'Textile Research Institute of Gunma'),
(128697, 102658, 'ja', 'name', 'ē¾¤é¦¬ēœŒē¹Šē¶­å·„ę„­č©¦éØ“å “'),
(128698, 102659, 'en', 'name', 'Inabe General Hospital'),
(128699, 102659, 'ja', 'name', 'JAäø‰é‡åŽšē”Ÿé€£äø‰é‡åŒ—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ć„ćŖć¹ē·åˆē—…é™¢'),
(128700, 102660, 'en', 'name', 'The Pharmaceutical Manufacturers'' Association of Tokyo'),
(128701, 102660, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬åŒ»č–¬å“å·„ę„­å”ä¼š'),
(128702, 102661, 'es', 'name', 'Estacion Experimental Agraria Pucallpa - INIA'),
(128703, 102662, 'en', 'name', 'Kofu Municipal Hospital'),
(128704, 102662, 'ja', 'name', 'åø‚ē«‹ē”²åŗœē—…é™¢'),
(128705, 102663, 'en', 'name', 'Rinku General Medical Center'),
(128706, 102663, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗć‚Šć‚“ćć†ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(128707, 102664, 'en', 'name', 'Hiroshima City Institute of Public Health'),
(128708, 102664, 'ja', 'name', 'åŗƒå³¶åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(128709, 102665, 'en', 'name', 'Shin Koga Hospital'),
(128710, 102665, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤©ē„žä¼šę–°å¤č³€ē—…é™¢'),
(128711, 102666, 'en', 'name', 'Toyama Prefectural Police'),
(128712, 102666, 'ja', 'name', '富山県警察'),
(128713, 102667, 'en', 'name', 'Chikugo City Hospital'),
(128714, 102667, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē­‘å¾Œåø‚ē«‹ē—…é™¢'),
(128715, 102668, 'en', 'name', 'Fraunhofer Innovation Platform for Composites Research'),
(128716, 102669, 'en', 'name', 'IsoArcH'),
(128717, 102670, 'en', 'name', 'Japan Grain Inspection Association'),
(128718, 102670, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē©€ē‰©ę¤œå®šå”ä¼š'),
(128719, 102671, 'en', 'name', 'Fuel Cell Cutting-Edge Research Center Technology Research Association'),
(128720, 102671, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆFC-Cubic'),
(128721, 102672, 'om', 'name', 'Inistiitiyuutii Qorannoo Qonna Oromiyaa'),
(128722, 102672, 'en', 'name', 'Oromia Agricultural Research Institute'),
(128723, 102672, 'am', 'name', 'į‹ØįŠ¦įˆ®įˆšį‹« įŒį‰„įˆ­įŠ“ įˆįˆ­įˆįˆ­ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(128724, 102673, 'en', 'name', 'Hokkaido Veterinary Medical Association'),
(128725, 102673, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ē£åŒ»åø«ä¼š'),
(128726, 102674, 'en', 'name', 'Okayama Prefecture Industrial Promotion Foundation'),
(128727, 102674, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå²”å±±ēœŒē”£ę„­ęŒÆčˆˆč²”å›£'),
(128728, 102675, 'en', 'name', 'Japan Meat Processors Association'),
(128729, 102675, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿč‚‰åŠ å·„å”ä¼š'),
(128730, 102676, 'en', 'name', 'Japan Plant Protection Association'),
(128731, 102676, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©é˜²ē–«å”ä¼š'),
(128732, 102677, 'en', 'name', 'CARE International Japan'),
(128733, 102677, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚±ć‚¢ćƒ»ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«ć‚øćƒ£ćƒ‘ćƒ³'),
(128734, 102678, 'en', 'name', 'Iwate Prefectural Miyako Hospital'),
(128735, 102678, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹å®®å¤ē—…é™¢'),
(128736, 102679, 'en', 'name', 'Iwaki Junior College'),
(128737, 102679, 'ja', 'name', 'ć„ć‚ćēŸ­ęœŸå¤§å­¦'),
(128738, 102680, 'en', 'name', 'The Japan Welding Engineering Society'),
(128739, 102680, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęŗ¶ęŽ„å”ä¼š'),
(128740, 102681, 'en', 'name', 'Takaoka City Hospital'),
(128741, 102681, 'ja', 'name', 'é«˜å²”åø‚ę°‘ē—…é™¢'),
(128742, 102682, 'en', 'name', 'The New Industry Research Organization'),
(128743, 102682, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę–°ē”£ę„­å‰µé€ ē ”ē©¶ę©Ÿę§‹'),
(128744, 102683, 'en', 'name', 'Okayama Southern Institute of Health'),
(128745, 102683, 'ja', 'name', 'å²”å±±ēœŒå—éƒØå„åŗ·ć„ćć‚Šć‚»ćƒ³ć‚æćƒ¼'),
(128746, 102684, 'en', 'name', 'Charles LeMoyne Hospital'),
(128747, 102684, 'fr', 'name', 'HƓpital Charles-Le Moyne'),
(128748, 102685, 'en', 'name', 'Tottori Horticultural Experiment Station'),
(128749, 102685, 'ja', 'name', 'é³„å–ēœŒåœ’čŠøč©¦éØ“å “'),
(128750, 102686, 'en', 'name', 'Inokashira Hospital'),
(128751, 102686, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗ•ä¹‹é ­ē—…é™¢'),
(128752, 102687, 'en', 'name', 'Houju Memorial Hospital'),
(128753, 102687, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å’Œę„½ä»čŠ³ē čØ˜åæµē—…é™¢'),
(128754, 102688, 'en', 'name', 'Japanese Standards Association'),
(128755, 102688, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬č¦ę ¼å”ä¼š'),
(128756, 102689, 'en', 'name', 'Institute of Administrative Management'),
(128757, 102689, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč”Œę”æē®”ē†ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(128758, 102690, 'en', 'name', 'Institute for Animal Science'),
(128759, 102690, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå®¶ē•œå­¦ē ”ē©¶ę‰€'),
(128760, 102691, 'en', 'name', 'Highway Technology Research Center'),
(128761, 102691, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé¦–éƒ½é«˜é€Ÿé“č·ÆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(128762, 102692, 'en', 'name', 'Industrial Property Cooperation Center'),
(128763, 102692, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå·„ę„­ę‰€ęœ‰ęØ©å”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(128764, 102693, 'en', 'name', 'Nitobe Memorial Nakano General Hospital'),
(128765, 102693, 'ja', 'name', 'ę±äŗ¬åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆę–°ęø”ęˆøčØ˜åæµäø­é‡Žē·åˆē—…é™¢'),
(128766, 102694, 'en', 'name', 'Hayama Heart Center'),
(128767, 102694, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šč‘‰å±±ćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(128768, 102695, 'en', 'name', 'Yonezawa City Hospital'),
(128769, 102695, 'ja', 'name', '米沢市立病院'),
(128770, 102696, 'en', 'name', 'Nagano Chuo Hospital'),
(128771, 102696, 'ja', 'name', 'é•·é‡ŽåŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆé•·é‡Žäø­å¤®ē—…é™¢'),
(128772, 102697, 'en', 'name', 'Tachikawa Sogo Hospital'),
(128773, 102697, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē¤¾å›£å„ē”Ÿä¼šē«‹å·ē›øäŗ’ē—…é™¢'),
(128774, 102698, 'en', 'name', 'Shin-yurigaoka General Hospital'),
(128775, 102698, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£äø‰ęˆä¼šę–°ē™¾åˆćƒ¶äø˜ē·åˆē—…é™¢'),
(128776, 102699, 'en', 'name', 'Biwako Professional University of Rehabilitation'),
(128777, 102699, 'ja', 'name', 'ć³ć‚ć“ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(128778, 102700, 'en', 'name', 'Economic Research Association'),
(128779, 102700, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗēµŒęøˆčŖæęŸ»ä¼š'),
(128780, 102701, 'en', 'name', 'Research Institute for Safety Engineering'),
(128781, 102701, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē·åˆå®‰å…Øå·„å­¦ē ”ē©¶ę‰€'),
(128782, 102702, 'en', 'name', 'Systems Research & Development Institute of Japan'),
(128783, 102702, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗē ”ē©¶ę‰€'),
(128784, 102703, 'en', 'name', 'The Occupational Health Promotion Foundation'),
(128785, 102703, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē”£ę„­åŒ»å­¦ęŒÆčˆˆč²”å›£'),
(128786, 102704, 'en', 'name', 'Atatürk University'),
(128787, 102704, 'tr', 'name', 'Atatürk Üniversitesi'),
(128788, 102705, 'en', 'name', 'Shin-Kuki General Hospital'),
(128789, 102705, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£åŸ¼ēŽ‰å·ØęØ¹ć®ä¼šę–°ä¹…å–œē·åˆē—…é™¢'),
(128790, 102706, 'en', 'name', 'Nagano Prefectural Police'),
(128791, 102706, 'ja', 'name', 'é•·é‡ŽēœŒč­¦åÆŸ'),
(128792, 102707, 'en', 'name', 'Industrial Technology Center of Wakayama Prefecture'),
(128793, 102707, 'ja', 'name', 'å’Œę­Œå±±ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(128794, 102708, 'en', 'name', 'Iwate Prefectural Iwai Hospital'),
(128795, 102708, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ē£äŗ•ē—…é™¢'),
(128796, 102709, 'en', 'name', 'Yokohama City Institute of Public Health'),
(128797, 102709, 'ja', 'name', 'ęØŖęµœåø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(128798, 102710, 'ca', 'name', 'Universitat de TorĆ­'),
(128799, 102710, 'en', 'name', 'University of Turin'),
(128800, 102710, 'it', 'name', 'UniversitĆ  degli Studi di Torino'),
(128801, 102710, 'de', 'name', 'UniversitƤt Turin'),
(128802, 102710, 'fr', 'name', 'UniversitƩ de Turin'),
(128803, 102711, 'en', 'name', 'Vector Magnetic Characteristic Technical Lavoratory'),
(128804, 102711, 'ja', 'name', 'ćƒ™ć‚Æćƒˆćƒ«ē£ę°—ē‰¹ę€§ęŠ€č”“ē ”ē©¶ę‰€'),
(128805, 102712, 'en', 'name', 'Yame General Hospital'),
(128806, 102712, 'ja', 'name', 'å…¬ē«‹å…«å„³ē·åˆē—…é™¢'),
(128807, 102713, 'en', 'name', 'Nagano Fruit Tree Experiment Station'),
(128808, 102713, 'ja', 'name', 'é•·é‡ŽēœŒęžœęØ¹č©¦éØ“å “'),
(128809, 102714, 'en', 'name', 'Photocoding'),
(128810, 102714, 'ja', 'name', 'ćƒ•ć‚©ćƒˆć‚³ćƒ¼ćƒ‡ć‚£ćƒ³ć‚°'),
(128811, 102715, 'en', 'name', 'Matsuoka Research Institute for Science'),
(128812, 102715, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę¾å²”ē§‘å­¦ē ”ē©¶ę‰€'),
(128813, 102716, 'en', 'name', 'Kagawa Prefectural Agricultural Experiment Station'),
(128814, 102716, 'ja', 'name', 'é¦™å·ēœŒč¾²ę„­č©¦éØ“å “'),
(128815, 102717, 'en', 'name', 'Chuno Kosei Hospital'),
(128816, 102717, 'ja', 'name', 'JAå²é˜œåŽšē”Ÿé€£äø­ęæƒåŽšē”Ÿē—…é™¢'),
(128817, 102718, 'en', 'name', 'Kagoshima Prefectural Fisheries Technology and Development Center'),
(128818, 102718, 'ja', 'name', 'é¹æå…å³¶ēœŒę°“ē”£ęŠ€č”“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(128819, 102719, 'en', 'name', 'Saga Prefectural Government'),
(128820, 102719, 'ja', 'name', 'ä½č³€ēœŒåŗ'),
(128821, 102720, 'en', 'name', 'Jyuzen General Hospital'),
(128822, 102720, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē©å–„ä¼šåå…Øē·åˆē—…é™¢'),
(128823, 102721, 'en', 'name', 'National Sanatorium Nagashima-Aiseien'),
(128824, 102721, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€é•·å³¶ę„›ē”Ÿåœ’'),
(128825, 102722, 'en', 'name', 'The Miyagi Prefectural Izunuma-Uchinuma Environmental Foundation'),
(128826, 102722, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå®®åŸŽēœŒä¼Šč±†ę²¼ćƒ»å†…ę²¼ē’°å¢ƒäæå…Øč²”å›£'),
(128827, 102723, 'en', 'name', 'Kyoto Interdisciplinary Institute of Community Medicine'),
(128828, 102723, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäŗ¬éƒ½åœ°åŸŸåŒ»ē™‚å­¦éš›ē ”ē©¶ę‰€'),
(128829, 102724, 'en', 'name', 'International Media Research Foundation'),
(128830, 102724, 'ja', 'name', 'č²”å›£ę³•äŗŗå›½éš›ćƒ”ćƒ‡ć‚£ć‚¢ē ”ē©¶č²”å›£'),
(128831, 102725, 'en', 'name', 'Miyazaki Prefectural NOBEOKA Hospital'),
(128832, 102725, 'ja', 'name', 'å®®å“ŽēœŒē«‹å»¶å²”ē—…é™¢'),
(128833, 102726, 'en', 'name', 'Akita Prefectural Institute of Fisheries'),
(128834, 102726, 'ja', 'name', 'ē§‹ē”°ēœŒę°“ē”£ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(128835, 102727, 'en', 'name', 'Center for Legal and Political Philosophy'),
(128836, 102727, 'fr', 'name', 'Centre de Philosophie Juridique et Politique'),
(128837, 102728, 'en', 'name', 'Gifu Junior College of Health Science'),
(128838, 102728, 'ja', 'name', 'å²é˜œäæå„å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(128839, 102729, 'en', 'name', 'Suiseikai Kajikawa Hospital'),
(128840, 102729, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗēæ ęø…ä¼šēæ ęø…ä¼šę¢¶å·ē—…é™¢'),
(128841, 102730, 'en', 'name', 'Biliran Province State University'),
(128842, 102731, 'en', 'name', 'The Japan Forestry Association'),
(128843, 102731, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§ę—„ęœ¬å±±ęž—ä¼š'),
(128844, 102732, 'en', 'name', 'SongShan ShaoLin WuShu College'),
(128845, 102732, 'zh', 'name', 'åµ©å±±å°‘ęž—ę­¦ęœÆčŒäøšå­¦é™¢'),
(128846, 102733, 'en', 'name', 'Tohoku Bunkyo Junior College'),
(128847, 102733, 'ja', 'name', 'ę±åŒ—ę–‡ę•™å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(128848, 102734, 'en', 'name', 'Motojima General hospital'),
(128849, 102734, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå³¶é–€ä¼šęœ¬å³¶ē·åˆē—…é™¢'),
(128850, 102735, 'en', 'name', 'Hiroshima Prefectural Technology Research Institute'),
(128851, 102735, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹ē·åˆęŠ€č”“ē ”ē©¶ę‰€'),
(128852, 102736, 'en', 'name', 'Saga Prefectural Upland Farming Research and Extension Center'),
(128853, 102736, 'ja', 'name', 'ä½č³€ēœŒäøŠå “å–¶č¾²ć‚»ćƒ³ć‚æćƒ¼'),
(128854, 102737, 'en', 'name', 'Fukui Health Sciences University'),
(128855, 102737, 'ja', 'name', 'ē¦äŗ•åŒ»ē™‚å¤§å­¦'),
(128856, 102738, 'en', 'name', 'Japan Society for Design Engineering'),
(128857, 102738, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čØ­čØˆå·„å­¦ä¼š'),
(128858, 102739, 'en', 'name', 'Niigata Industrial Creation Organization'),
(128859, 102739, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć«ć„ćŒćŸē”£ę„­å‰µé€ ę©Ÿę§‹'),
(128860, 102740, 'en', 'name', 'High Pressure Institute of Japan'),
(128861, 102740, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é«˜åœ§åŠ›ęŠ€č”“å”ä¼š'),
(128862, 102741, 'en', 'name', 'The Gunma Prefectural Education Center'),
(128863, 102741, 'ja', 'name', 'ē¾¤é¦¬ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(128864, 102742, 'en', 'name', 'Nagano Prefectural Government'),
(128865, 102742, 'ja', 'name', 'é•·é‡ŽēœŒåŗ'),
(128866, 102743, 'en', 'name', 'Hokkaido Prefectural Government'),
(128867, 102743, 'ja', 'name', 'åŒ—ęµ·é“åŗ'),
(128868, 102744, 'en', 'name', 'Akita Prefectural Government'),
(128869, 102744, 'ja', 'name', 'ē§‹ē”°ēœŒåŗ'),
(128870, 102745, 'en', 'name', 'Business Research Institute'),
(128871, 102745, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗä¼ę„­ē ”ē©¶ä¼š'),
(128872, 102746, 'en', 'name', 'THE General Insurance Institute Of Japan'),
(128873, 102746, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęå®³äæé™ŗäŗ‹ę„­ē·åˆē ”ē©¶ę‰€'),
(128874, 102747, 'en', 'name', 'Gunma Prefectural Livestock Experiment Station'),
(128875, 102747, 'ja', 'name', 'ē¾¤é¦¬ēœŒē•œē”£č©¦éØ“å “'),
(128876, 102748, 'en', 'name', 'Association for Nuclear Technology in Medicine'),
(128877, 102748, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ»ē”ØåŽŸå­åŠ›ęŠ€č”“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(128878, 102749, 'en', 'name', 'Kohka Public Hospital'),
(128879, 102749, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå…¬ē«‹ē”²č³€ē—…é™¢'),
(128880, 102750, 'en', 'name', 'Fukushima Forestry Research Center'),
(128881, 102750, 'ja', 'name', 'ē¦å³¶ēœŒęž—ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(128882, 102751, 'en', 'name', 'Naval State University'),
(128883, 102752, 'en', 'name', 'Japan Railway Construction, Transport and Technology Agency'),
(128884, 102752, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗé‰„é“å»ŗčØ­ćƒ»é‹č¼øę–½čØ­ę•“å‚™ę”Æę“ę©Ÿę§‹'),
(128885, 102753, 'en', 'name', 'Kochi Prefectural Government'),
(128886, 102753, 'ja', 'name', '高矄県庁'),
(128887, 102754, 'en', 'name', 'North Eastern Industrial Research Center of Shiga Prefecture'),
(128888, 102754, 'ja', 'name', 'ę»‹č³€ēœŒę±åŒ—éƒØå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(128889, 102755, 'lv', 'name', 'Latvijas Universitāte'),
(128890, 102755, 'lt', 'name', 'Latvijos universitetas'),
(128891, 102755, 'en', 'name', 'University of Latvia'),
(128892, 102755, 'ru', 'name', 'Латвийский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(128893, 102756, 'en', 'name', 'Japan Canners Association'),
(128894, 102756, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē¼¶č©°ć³ć‚“č©°ćƒ¬ćƒˆćƒ«ćƒˆé£Ÿå“å”ä¼š'),
(128895, 102757, 'en', 'name', 'Urban Renaissance Agency'),
(128896, 102757, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗéƒ½åø‚å†ē”Ÿę©Ÿę§‹'),
(128897, 102758, 'en', 'name', 'National Sanatorium Okinawa Airakuen'),
(128898, 102758, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€ę²–ēø„ę„›ę„½åœ’'),
(128899, 102759, 'en', 'name', 'Livestock Industry''s Environmental Improvement Organization'),
(128900, 102759, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē•œē”£ē’°å¢ƒę•“å‚™ę©Ÿę§‹'),
(128901, 102760, 'en', 'name', 'Research Institute on Building Cost'),
(128902, 102760, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰ć‚³ć‚¹ćƒˆē®”ē†ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę‰€'),
(128903, 102761, 'en', 'name', 'Sugiyama Chemical and Industrial Laboratory'),
(128904, 102761, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę‰å±±ē”£ę„­åŒ–å­¦ē ”ē©¶ę‰€'),
(128905, 102762, 'en', 'name', 'Toyota Regional Medical Center'),
(128906, 102762, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč±Šē”°åœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(128907, 102763, 'en', 'name', 'Aichi Center for Industry and Science Technology'),
(128908, 102763, 'ja', 'name', 'ć‚ć„ć”ē”£ę„­ē§‘å­¦ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(128909, 102764, 'en', 'name', 'Itami Kousei Neurosurgical Hospital'),
(128910, 102764, 'ja', 'name', 'ä¼Šäø¹ę’ē”Ÿč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(128911, 102765, 'en', 'name', 'Fukuoka City Education Center'),
(128912, 102765, 'ja', 'name', 'ē¦å²”åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(128913, 102766, 'en', 'name', 'Niigata Prefectural Fisheries and Marine Research Institute'),
(128914, 102766, 'ja', 'name', 'ę–°ę½ŸēœŒę°“ē”£ęµ·ę“‹ē ”ē©¶ę‰€'),
(128915, 102767, 'en', 'name', 'NIIZASHIKI Central General Hospital'),
(128916, 102767, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę­¦č”µé‡Žä¼šę–°åŗ§åæ—ęœØäø­å¤®ē·åˆē—…é™¢'),
(128917, 102768, 'en', 'name', 'Fussa Hospital'),
(128918, 102768, 'ja', 'name', 'å…¬ē«‹ē¦ē”Ÿē—…é™¢'),
(128919, 102769, 'en', 'name', 'Shizuoka Professional University Junior College of Agriculture'),
(128920, 102769, 'ja', 'name', 'é™å²”ēœŒē«‹č¾²ęž—ē’°å¢ƒå°‚é–€č·å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(128921, 102770, 'en', 'name', 'Japan Food Hygiene Association'),
(128922, 102770, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“č”›ē”Ÿå”ä¼š'),
(128923, 102771, 'en', 'name', 'Technology Research Association for Next generation natural products chemistry'),
(128924, 102771, 'ja', 'name', 'ę¬”äø–ä»£å¤©ē„¶ē‰©åŒ–å­¦ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(128925, 102772, 'de', 'name', 'Hochschule Schmalkalden'),
(128926, 102772, 'en', 'name', 'Schmalkalden University of Applied Sciences'),
(128927, 102773, 'lt', 'name', 'Klaipėdos valstybinė kolegija / Higher Education Institution'),
(128928, 102774, 'en', 'name', 'Defense Research Center'),
(128929, 102774, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ‡ć‚£ćƒ•ć‚§ćƒ³ć‚¹ćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(128930, 102775, 'en', 'name', 'THE Japan Soy Sauce Technology Center'),
(128931, 102775, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é†¤ę²¹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(128932, 102776, 'en', 'name', 'The Japan Electric Association'),
(128933, 102776, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę°—å”ä¼š'),
(128934, 102777, 'en', 'name', 'Japan Gastroenterological Endoscopy Society'),
(128935, 102777, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¶ˆåŒ–å™Øå†…č¦–é”å­¦ä¼š'),
(128936, 102778, 'en', 'name', 'Nakatsugawa Municipal General Hospital'),
(128937, 102778, 'ja', 'name', 'ē·åˆē—…é™¢äø­ę“„å·åø‚ę°‘ē—…é™¢'),
(128938, 102779, 'en', 'name', 'Japan Racing Horse Association'),
(128939, 102779, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē«¶čµ°é¦¬å”ä¼š'),
(128940, 102780, 'en', 'name', 'Ishikawa Agriculture and Forestry Research Center'),
(128941, 102780, 'ja', 'name', 'ēŸ³å·ēœŒč¾²ęž—ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(128942, 102781, 'en', 'name', 'Ise Municipal General Hospital'),
(128943, 102781, 'ja', 'name', 'åø‚ē«‹ä¼Šå‹¢ē·åˆē—…é™¢'),
(128944, 102782, 'en', 'name', 'Nagoya Medical Association'),
(128945, 102782, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåå¤å±‹åø‚åŒ»åø«ä¼š'),
(128946, 102783, 'en', 'name', 'Kyorin University'),
(128947, 102783, 'ja', 'name', 'ęęž—å¤§å­¦'),
(128948, 102784, 'en', 'name', 'Nerima Hikarigaoka Hospital'),
(128949, 102784, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåœ°åŸŸåŒ»ē™‚ęŒÆčˆˆå”ä¼šē·“é¦¬å…‰ćŒäø˜ē—…é™¢'),
(128950, 102785, 'en', 'name', 'Ibaraki Medical Association'),
(128951, 102785, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗčŒØęœØåø‚åŒ»åø«ä¼š'),
(128952, 102786, 'en', 'name', 'Center for Reproductive Medicine and Implantation Research, Sugiyama Clinic'),
(128953, 102786, 'ja', 'name', 'ę‰å±±ē”£å©¦äŗŗē§‘'),
(128954, 102787, 'en', 'name', 'HLA Laboratory'),
(128955, 102787, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗHLA研究所'),
(128956, 102788, 'en', 'name', 'Defense Facilities Environment Improvement Association'),
(128957, 102788, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé˜²č”›ę–½čØ­å”ä¼š'),
(128958, 102789, 'en', 'name', 'The Takeda Foundation'),
(128959, 102789, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę­¦ē”°čØˆęø¬å…ˆē«ÆēŸ„č²”å›£'),
(128960, 102790, 'en', 'name', 'Japan Center for Regional Development'),
(128961, 102790, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(128962, 102791, 'en', 'name', 'The Electrochemical Society of Japan'),
(128963, 102791, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé›»ę°—åŒ–å­¦ä¼š'),
(128964, 102792, 'en', 'name', 'Japan Prosthodontic Society'),
(128965, 102792, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č£œē¶“ę­Æē§‘å­¦ä¼š'),
(128966, 102793, 'en', 'name', 'Lasso Informatics'),
(128967, 102794, 'en', 'name', 'The Japan P.E.N. club'),
(128968, 102794, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒšćƒ³ć‚Æćƒ©ćƒ–'),
(128969, 102795, 'en', 'name', 'Luxembourg Centre for Systems Biomedicine'),
(128970, 102796, 'en', 'name', 'Yachiyo Hospital'),
(128971, 102796, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ę–°å’Œä¼šå…«åƒä»£ē—…é™¢'),
(128972, 102797, 'ja', 'name', 'JAę–°ę½ŸåŽšē”Ÿé€£ęŸå“Žē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(128973, 102797, 'en', 'name', 'Kashiwazaki General Hospital and Medical Center'),
(128974, 102798, 'en', 'name', 'Japan Association for Building Research Promotion'),
(128975, 102798, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå»ŗēÆ‰ē ”ē©¶ęŒÆčˆˆå”ä¼š'),
(128976, 102799, 'en', 'name', 'Japan Energy Association'),
(128977, 102799, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•åŠ›å”ä¼š'),
(128978, 102800, 'en', 'name', 'Moscow State University of Psychology & Education'),
(128979, 102800, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный психолого-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(128980, 102801, 'ja', 'name', 'JAē§‹ē”°åŽšē”Ÿé€£å¤§ę›²åŽšē”ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(128981, 102801, 'en', 'name', 'Omagari Kousei Medical Center'),
(128982, 102802, 'en', 'name', 'Islamic Azad University Roudehen Branch'),
(128983, 102802, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų±ŁˆŲÆŁ‡Ł†'),
(128984, 102803, 'en', 'name', 'Tokyo University of Science'),
(128985, 102803, 'ja', 'name', 'ę±äŗ¬ē†ē§‘å¤§å­¦'),
(128986, 102804, 'en', 'name', 'Tokyo Metropolitan College of Industrial Technology'),
(128987, 102804, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ē”£ę„­ęŠ€č”“é«˜ē­‰å°‚é–€å­¦ę ”'),
(128988, 102805, 'en', 'name', 'Tokyo Health Service Association'),
(128989, 102805, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬éƒ½äŗˆé˜²åŒ»å­¦å”ä¼š'),
(128990, 102806, 'en', 'name', 'Iwate Prefectural Inland Fisheries Technology Center'),
(128991, 102806, 'ja', 'name', 'å²©ę‰‹ēœŒå†…ę°“é¢ę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(128992, 102807, 'en', 'name', 'Japan Foundation for AIDS Prevention'),
(128993, 102807, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚Øć‚¤ć‚ŗäŗˆé˜²č²”å›£'),
(128994, 102808, 'en', 'name', 'Tokyo Metropolitan Park Association'),
(128995, 102808, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬éƒ½å…¬åœ’å”ä¼š'),
(128996, 102809, 'en', 'name', 'The Nature Conservation Society of Japan'),
(128997, 102809, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č‡Ŗē„¶äæč­·å”ä¼š'),
(128998, 102810, 'en', 'name', 'Okinawa Churaumi Aquarium'),
(128999, 102810, 'ja', 'name', 'ę²–ēø„ē¾Žć‚‰ęµ·ę°“ę—é¤Ø'),
(129000, 102811, 'en', 'name', 'Shiretoko Nature Foundation'),
(129001, 102811, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗēŸ„åŗŠč²”å›£'),
(129002, 102812, 'en', 'name', 'Toyama International Center'),
(129003, 102812, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćØć‚„ć¾å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(129004, 102813, 'en', 'name', 'Fujita General Hospital'),
(129005, 102813, 'ja', 'name', 'å…¬ē«‹č—¤ē”°ē·åˆē—…é™¢'),
(129006, 102814, 'en', 'name', 'River Center Of Hokkaido'),
(129007, 102814, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“ę²³å·č²”å›£'),
(129008, 102815, 'en', 'name', 'Tokyo Medical Association'),
(129009, 102815, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½åŒ»åø«ä¼š'),
(129010, 102816, 'en', 'name', 'Akashio Research Institute of Kagawa Prefecture'),
(129011, 102816, 'ja', 'name', 'é¦™å·ēœŒčµ¤ę½®ē ”ē©¶ę‰€'),
(129012, 102817, 'en', 'name', 'Japan Testing Center for Construction Materials'),
(129013, 102817, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗęč©¦éØ“ć‚»ćƒ³ć‚æćƒ¼'),
(129014, 102818, 'en', 'name', 'Ikegami General Hospital'),
(129015, 102818, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę¾å’Œä¼šę± äøŠē·åˆē—…é™¢'),
(129016, 102819, 'en', 'name', 'Kamma Memorial Hospital'),
(129017, 102819, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåšę„›ä¼šč…é–“čØ˜åæµē—…é™¢'),
(129018, 102820, 'fr', 'name', 'HƓpital Saint-FranƧois d''Assise'),
(129019, 102821, 'en', 'name', 'Software Information Center'),
(129020, 102821, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(129021, 102822, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Pisa'),
(129022, 102822, 'en', 'name', 'National Institute for Nuclear Physics, Pisa Division'),
(129023, 102823, 'en', 'name', 'Hyogo Prefectural Government'),
(129024, 102823, 'ja', 'name', 'å…µåŗ«ēœŒåŗ'),
(129025, 102824, 'en', 'name', 'Hiroshima City Education Center'),
(129026, 102824, 'ja', 'name', 'åŗƒå³¶åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(129027, 102825, 'en', 'name', 'South Australian Museum'),
(129028, 102826, 'en', 'name', 'Tokoha Gakuen Junior College'),
(129029, 102826, 'ja', 'name', 'åøøč‘‰å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129030, 102827, 'pt', 'name', 'Instituto Nacional de Administração, I. P.'),
(129031, 102827, 'en', 'name', 'National Institute for Public Administration'),
(129032, 102828, 'en', 'name', 'RajaRajeswari College of Engineering'),
(129033, 102829, 'en', 'name', 'Technology Research Association for Future Additive Manufacturing'),
(129034, 102829, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆę¬”äø–ä»£3Dē©å±¤é€ å½¢ęŠ€č”“ē·åˆé–‹ē™ŗę©Ÿę§‹'),
(129035, 102830, 'en', 'name', 'Tokyo Veterinary Medical Association'),
(129036, 102830, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½ē£åŒ»åø«ä¼š'),
(129037, 102831, 'en', 'name', 'Fujioka General Hospital'),
(129038, 102831, 'ja', 'name', 'å…¬ē«‹č—¤å²”ē·åˆē—…é™¢'),
(129039, 102832, 'en', 'name', 'Electron Science Institute'),
(129040, 102832, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé›»å­ē§‘å­¦ē ”ē©¶ę‰€'),
(129041, 102833, 'fr', 'name', 'Institut National Agronomique de Tunisie'),
(129042, 102833, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŁŁ„Ų§Ų­ŁŠŲ© ŲØŲŖŁˆŁ†Ų³'),
(129043, 102834, 'en', 'name', 'Foundation of River&Basin Integrated Communications'),
(129044, 102834, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę²³å·ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(129045, 102835, 'en', 'name', 'University of Emerging Technologies'),
(129046, 102835, 'uk', 'name', 'Університет новітніх технологій'),
(129047, 102836, 'en', 'name', 'Wakakusa-Tatsuma Rehabilitation Hospital'),
(129048, 102836, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč‹„å¼˜ä¼šć‚ć‹ćć•ē«œé–“ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(129049, 102837, 'en', 'name', 'Shiga Prefectural Government'),
(129050, 102837, 'ja', 'name', 'ę»‹č³€ēœŒåŗ'),
(129051, 102838, 'en', 'name', 'Kawasaki City Institute for Public Health'),
(129052, 102838, 'ja', 'name', 'å·å“Žåø‚å„åŗ·å®‰å…Øē ”ē©¶ę‰€'),
(129053, 102839, 'en', 'name', 'Osaka City Research Center of Environmental Science'),
(129054, 102839, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹ē’°å¢ƒē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129055, 102840, 'en', 'name', 'Public Telephone Communication'),
(129056, 102840, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å…¬č”†é›»č©±ä¼š'),
(129057, 102841, 'en', 'name', 'Nagoya Public Institute of Medicine'),
(129058, 102841, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåå¤å±‹å…¬č”†åŒ»å­¦ē ”ē©¶ę‰€'),
(129059, 102842, 'id', 'name', 'Politeknik Kesehatan Bhakti Setya Indonesia'),
(129060, 102843, 'en', 'name', 'Ibaraki Prefectural Forestry Research Institute'),
(129061, 102843, 'ja', 'name', 'čŒØåŸŽēœŒęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129062, 102844, 'en', 'name', 'Kyoto University of Foreign Studies'),
(129063, 102844, 'ja', 'name', 'äŗ¬éƒ½å¤–å›½čŖžå¤§å­¦'),
(129064, 102845, 'ja', 'name', 'JAē„žå„ˆå·åŽšē”Ÿé€£ē›øęØ”åŽŸå”åŒē—…é™¢'),
(129065, 102845, 'en', 'name', 'Sagamihara Kyodo Hospital'),
(129066, 102846, 'en', 'name', 'The Japan Society of Information and Communication'),
(129067, 102846, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęƒ…å ±é€šäæ”å­¦ä¼š'),
(129068, 102847, 'en', 'name', 'North China University of Water Resources and Electric Power'),
(129069, 102847, 'zh', 'name', 'åŽåŒ—ę°“åˆ©ę°“ē”µå¤§å­¦'),
(129070, 102848, 'fr', 'name', 'Laboratoire d''Immunologie et d''ImmunothƩrapie des Cancers'),
(129071, 102849, 'en', 'name', 'Wild Bird Society of Japan'),
(129072, 102849, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é‡Žé³„ć®ä¼š'),
(129073, 102850, 'en', 'name', 'Takeda General Hospital'),
(129074, 102850, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē«¹ē”°å„åŗ·č²”å›£ē«¹ē”°ē¶œåˆē—…é™¢'),
(129075, 102851, 'en', 'name', 'Chidoribashi Hospital'),
(129076, 102851, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē¦å²”åŒ»ē™‚å›£åƒé³„ę©‹ē—…é™¢'),
(129077, 102852, 'en', 'name', 'Miyamoto Hospital'),
(129078, 102852, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē›”čŖ ä¼šå®®ęœ¬ē—…é™¢'),
(129079, 102853, 'en', 'name', 'Okinawa Prefectural Institute of Animal Health'),
(129080, 102853, 'ja', 'name', 'ę²–ēø„ēœŒå®¶ē•œč”›ē”Ÿč©¦éØ“å “'),
(129081, 102854, 'en', 'name', 'Kansai Institute of Information Systems'),
(129082, 102854, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(129083, 102855, 'en', 'name', 'The Mushroom Research Institute of Japan'),
(129084, 102855, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćć®ć“ē ”ē©¶ę‰€'),
(129085, 102856, 'en', 'name', 'Sanda City Hospital'),
(129086, 102856, 'ja', 'name', '三田市民病院'),
(129087, 102857, 'en', 'name', 'Institute for Health Outcomes & Process Evaluation Research'),
(129088, 102857, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗå„åŗ·åŒ»ē™‚č©•ä¾”ē ”ē©¶ę©Ÿę§‹'),
(129089, 102858, 'en', 'name', 'Japanese Society for Rehabilitation of Persons with Disabilities'),
(129090, 102858, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éšœå®³č€…ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å”ä¼š'),
(129091, 102859, 'en', 'name', 'Japan Cement Association'),
(129092, 102859, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚»ćƒ”ćƒ³ćƒˆå”ä¼š'),
(129093, 102860, 'en', 'name', 'Kurihara Central Hospital'),
(129094, 102860, 'ja', 'name', 'ę —åŽŸåø‚ē«‹ę —åŽŸäø­å¤®ē—…é™¢'),
(129095, 102861, 'en', 'name', 'Copenhagen University Hospital'),
(129096, 102861, 'da', 'name', 'KĆøbenhavns Universitetshospital'),
(129097, 102862, 'en', 'name', 'Shimane Institute Of Health Science'),
(129098, 102862, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ˜ćƒ«ć‚¹ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼å³¶ę ¹'),
(129099, 102863, 'fr', 'name', 'Centre d''Investigation Clinique - Innovation Technologique'),
(129100, 102863, 'en', 'name', 'Clinical Investigation Centre for Innovative Technology Network'),
(129101, 102864, 'en', 'name', 'Mitoyo General Hospital'),
(129102, 102864, 'ja', 'name', 'äø‰č±Šē·åˆē—…é™¢'),
(129103, 102865, 'en', 'name', 'Kizawa Memorial Hospital'),
(129104, 102865, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŽšē”Ÿä¼šęœØę²¢čØ˜åæµē—…é™¢'),
(129105, 102866, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Catania'),
(129106, 102866, 'en', 'name', 'National Institute for Nuclear Physics, Catania Division'),
(129107, 102867, 'en', 'name', 'MiCAN Technologies Inc. (Japan)'),
(129108, 102867, 'ja', 'name', 'ćƒžć‚¤ć‚­ćƒ£ćƒ³ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(129109, 102868, 'en', 'name', 'The Hokkaido Centre for Family Medicine'),
(129110, 102868, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåŒ—ęµ·é“å®¶åŗ­åŒ»ē™‚å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(129111, 102869, 'en', 'name', 'Aomori Prefectural Nuclear Power Safety Center'),
(129112, 102869, 'ja', 'name', 'é’ę£®ēœŒåŽŸå­åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(129113, 102870, 'en', 'name', 'Miyazaki Prefectural Institute for Public Health and Environment'),
(129114, 102870, 'ja', 'name', 'å®®å“ŽēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€');
INSERT INTO `ror_settings` VALUES
(129115, 102871, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Roma Tor Vergata'),
(129116, 102871, 'en', 'name', 'National Institute for Nuclear Physics, Rome Tor Vergata'),
(129117, 102872, 'en', 'name', 'Information Technology Association of America'),
(129118, 102873, 'en', 'name', 'Zama General Hospital'),
(129119, 102873, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć‚øćƒ£ćƒ‘ćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚¢ćƒ©ć‚¤ćƒ³ć‚¹åŗ§é–“ē·åˆē—…é™¢'),
(129120, 102874, 'en', 'name', 'The Iron and Steel Institute of Japan'),
(129121, 102874, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é‹¼å”ä¼š'),
(129122, 102875, 'en', 'name', 'International Research Institute for Nuclear Decommissioning'),
(129123, 102875, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆå›½éš›å»ƒē‚‰ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(129124, 102876, 'en', 'name', 'Okinawa Prefectural Fisheries Research and Extension Center'),
(129125, 102876, 'ja', 'name', 'ę²–ēø„ēœŒę°“ē”£ęµ·ę“‹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129126, 102877, 'en', 'name', 'Chiba Prefectural Livestock Research Center'),
(129127, 102877, 'ja', 'name', 'åƒč‘‰ēœŒē•œē”£ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129128, 102878, 'en', 'name', 'The Graduate School of Project Design'),
(129129, 102878, 'ja', 'name', 'äŗ‹ę„­ę§‹ęƒ³å¤§å­¦é™¢å¤§å­¦'),
(129130, 102879, 'en', 'name', 'Morioka Yuai Hospital'),
(129131, 102879, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå‹ę„›ä¼šē››å²”å‹ę„›ē—…é™¢'),
(129132, 102880, 'en', 'name', 'Komazawa Women''s Junior College'),
(129133, 102880, 'ja', 'name', 'é§’ę²¢å„³å­ēŸ­ęœŸå¤§å­¦'),
(129134, 102881, 'en', 'name', 'Hakusan Nature Conservation Center'),
(129135, 102881, 'ja', 'name', 'ēŸ³å·ēœŒē™½å±±č‡Ŗē„¶äæč­·ć‚»ćƒ³ć‚æćƒ¼'),
(129136, 102882, 'en', 'name', 'Institute of Local Government'),
(129137, 102882, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½č‡Ŗę²»å”ä¼š'),
(129138, 102883, 'en', 'name', 'Fukui Prefectural Government'),
(129139, 102883, 'ja', 'name', 'ē¦äŗ•ēœŒåŗ'),
(129140, 102884, 'en', 'name', 'Aomori Prefectural Government'),
(129141, 102884, 'ja', 'name', 'é’ę£®ēœŒåŗ'),
(129142, 102885, 'en', 'name', 'Fukushima Institute of Public Health'),
(129143, 102885, 'ja', 'name', 'ē¦å³¶ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(129144, 102886, 'en', 'name', 'Sakuyo Junior College'),
(129145, 102886, 'ja', 'name', 'ä½œé™½éŸ³ę„½ēŸ­ęœŸå¤§å­¦'),
(129146, 102887, 'en', 'name', 'Japanese Society of Allergology'),
(129147, 102887, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ¬ćƒ«ć‚®ćƒ¼å­¦ä¼š'),
(129148, 102888, 'en', 'name', 'Nagoya College of Music'),
(129149, 102888, 'ja', 'name', 'åå¤å±‹éŸ³ę„½å¤§å­¦'),
(129150, 102889, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Pavia'),
(129151, 102889, 'en', 'name', 'National Institute for Nuclear Physics, Pavia Section'),
(129152, 102890, 'en', 'name', 'Dr. Om Parkash Eye Institute Pvt Ltd'),
(129153, 102891, 'en', 'name', 'The Japanese Red Cross Junior College of Akita'),
(129154, 102891, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē§‹ē”°ēŸ­ęœŸå¤§å­¦'),
(129155, 102892, 'en', 'name', 'Niigata Prefectural Inland Water Fisheries Experiment Station'),
(129156, 102892, 'ja', 'name', 'ę–°ę½ŸēœŒå†…ę°“é¢ę°“ē”£č©¦éØ“å “'),
(129157, 102893, 'en', 'name', 'Kumamoto Prefectural Institute of Public-Health and Environmental Science'),
(129158, 102893, 'ja', 'name', 'ē†Šęœ¬ēœŒäæå„ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(129159, 102894, 'en', 'name', 'Sendai Akamon College'),
(129160, 102894, 'ja', 'name', 'ä»™å°čµ¤é–€ēŸ­ęœŸå¤§å­¦'),
(129161, 102895, 'en', 'name', 'Japan Maritime Center'),
(129162, 102895, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęµ·äŗ‹ć‚»ćƒ³ć‚æćƒ¼'),
(129163, 102896, 'en', 'name', 'Sainokuni Higashiomiya Medical Center'),
(129164, 102896, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å”å‹ä¼šå½©ć®å›½ę±å¤§å®®ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(129165, 102897, 'en', 'name', 'Global Environmental Forum'),
(129166, 102897, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°ēƒćƒ»äŗŗé–“ē’°å¢ƒćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(129167, 102898, 'en', 'name', 'Nakagami Hospital'),
(129168, 102898, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę•¬ę„›ä¼šäø­é ­ē—…é™¢'),
(129169, 102899, 'en', 'name', 'The Acoustical Society of Japan'),
(129170, 102899, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬éŸ³éŸæå­¦ä¼š'),
(129171, 102900, 'en', 'name', 'Shinozaki Medical Clinic'),
(129172, 102900, 'ja', 'name', 'ēÆ å“Žå†…ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(129173, 102901, 'en', 'name', 'Technology Research Association of Highly Efficient Gene Design'),
(129174, 102901, 'ja', 'name', 'é«˜ę©Ÿčƒ½éŗä¼å­ćƒ‡ć‚¶ć‚¤ćƒ³ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(129175, 102902, 'en', 'name', 'Professional Institute of International Fashion'),
(129176, 102902, 'ja', 'name', 'å›½éš›ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(129177, 102903, 'en', 'name', 'Miyoshi Central Hospital'),
(129178, 102903, 'ja', 'name', '市立三欔中央病院'),
(129179, 102904, 'en', 'name', 'Nagoya City Institute For Environmental Sciences'),
(129180, 102904, 'ja', 'name', 'åå¤å±‹åø‚ē’°å¢ƒē§‘å­¦čŖæęŸ»ć‚»ćƒ³ć‚æćƒ¼'),
(129181, 102905, 'en', 'name', 'Wakayama Prefectural Research Center of Environment and Public Health'),
(129182, 102905, 'ja', 'name', 'å’Œę­Œå±±ēœŒē’°å¢ƒč”›ē”Ÿē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129183, 102906, 'en', 'name', 'Nexford University'),
(129184, 102907, 'en', 'name', 'Abashiri-Kosei General Hospital'),
(129185, 102907, 'ja', 'name', 'JAåŒ—ęµ·é“åŽšē”Ÿé€£ē¶²čµ°åŽšē”Ÿē—…é™¢'),
(129186, 102908, 'en', 'name', 'Sugino Fashion Junior College'),
(129187, 102908, 'ja', 'name', 'ę‰é‡Žęœé£¾å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129188, 102909, 'en', 'name', 'Miyagi Prefectural Forestry Technology Institute'),
(129189, 102909, 'ja', 'name', 'å®®åŸŽēœŒęž—ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(129190, 102910, 'en', 'name', 'Miyazaki Agricultural Research Institute'),
(129191, 102910, 'ja', 'name', 'å®®å“Žč¾²ę„­å®ŸéØ“å “'),
(129192, 102911, 'en', 'name', 'Zikei Institute of Psychiatry'),
(129193, 102911, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę…ˆåœ­ä¼šę…ˆåœ­ē—…é™¢'),
(129194, 102912, 'en', 'name', 'Sanshikai Toho Hospital'),
(129195, 102912, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£äø‰ę€ä¼šę±é‚¦ē—…é™¢'),
(129196, 102913, 'en', 'name', 'Yashio Central General hospital'),
(129197, 102913, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å”å‹ä¼šå…«ę½®äø­å¤®ē·åˆē—…é™¢'),
(129198, 102914, 'en', 'name', 'Okinawa Miyako Hospital'),
(129199, 102914, 'ja', 'name', 'ę²–ēø„ēœŒē«‹å®®å¤ē—…é™¢'),
(129200, 102915, 'en', 'name', 'Federation of National Public Service Personnel Mutual Aid Associations'),
(129201, 102915, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼š'),
(129202, 102916, 'en', 'name', 'International Medical Information Center'),
(129203, 102916, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›åŒ»å­¦ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(129204, 102917, 'en', 'name', 'Gunma Prefectural Cancer Center'),
(129205, 102917, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(129206, 102918, 'en', 'name', 'Chiba Industry Advancement Center'),
(129207, 102918, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåƒč‘‰ēœŒē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(129208, 102919, 'en', 'name', 'Advanced Construction Technology Center'),
(129209, 102919, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…ˆē«Æå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129210, 102920, 'en', 'name', 'Helmholtz Centre for Environmental Research'),
(129211, 102920, 'de', 'name', 'Helmholtz-Zentrum für Umweltforschung'),
(129212, 102921, 'en', 'name', 'Kameoka Municipal Hospital'),
(129213, 102921, 'ja', 'name', '亀岔市立病院'),
(129214, 102922, 'en', 'name', 'Shizuoka Prefectural Environmental Radiation Monitoring Center'),
(129215, 102922, 'ja', 'name', 'é™å²”ēœŒē’°å¢ƒę”¾å°„ē·šē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(129216, 102923, 'en', 'name', 'Yasuda Women''s College'),
(129217, 102923, 'ja', 'name', 'å®‰ē”°å„³å­ēŸ­ęœŸå¤§å­¦'),
(129218, 102924, 'en', 'name', 'Japan Health Food & Nutrition Food Association'),
(129219, 102924, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·ćƒ»ę „é¤Šé£Ÿå“å”ä¼š'),
(129220, 102925, 'en', 'name', 'Okayama Healthcare Professional University'),
(129221, 102925, 'ja', 'name', 'å²”å±±åŒ»ē™‚å°‚é–€č·å¤§å­¦'),
(129222, 102926, 'en', 'name', 'Japan Organ Transplant Network'),
(129223, 102926, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č‡“å™Øē§»ę¤ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(129224, 102927, 'en', 'name', 'The Social Development Research Center'),
(129225, 102927, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē¤¾ä¼šé–‹ē™ŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129226, 102928, 'en', 'name', 'DeepSeek (China)'),
(129227, 102928, 'zh', 'name', 'ę­å·žę·±åŗ¦ę±‚ē“¢äŗŗå·„ę™ŗčƒ½åŸŗē”€ęŠ€ęœÆē ”ē©¶ęœ‰é™å…¬åø'),
(129228, 102929, 'en', 'name', 'International Medical Foundation of Japan'),
(129229, 102929, 'ja', 'name', 'č²”å›£ę³•äŗŗę—„ęœ¬å›½éš›åŒ»ē™‚å›£'),
(129230, 102930, 'en', 'name', 'Japan Osteoporosis Foundation'),
(129231, 102930, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéŖØē²—é¬†ē—‡č²”å›£'),
(129232, 102931, 'en', 'name', 'Waterfront Vitalization and Environment Research Foundation'),
(129233, 102931, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćæćŖćØē·åˆē ”ē©¶č²”å›£'),
(129234, 102932, 'en', 'name', 'Kumamoto Rehabilitation Hospital'),
(129235, 102932, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗä»¤å’Œä¼šē†Šęœ¬ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(129236, 102933, 'en', 'name', 'Tokyo Seitoku College'),
(129237, 102933, 'ja', 'name', 'ę±äŗ¬ęˆå¾³ēŸ­ęœŸå¤§å­¦'),
(129238, 102934, 'en', 'name', 'Geo-Research Institute'),
(129239, 102934, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸåœ°ē›¤ē’°å¢ƒē ”ē©¶ę‰€'),
(129240, 102935, 'en', 'name', 'Tsuchiya General Hospital'),
(129241, 102935, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗć‚ć‹ć­ä¼šåœŸč°·ē·åˆē—…é™¢'),
(129242, 102936, 'ja', 'name', 'JAå²é˜œåŽšē”Ÿé€£č„æē¾ŽęæƒåŽšē”Ÿē—…é™¢'),
(129243, 102936, 'en', 'name', 'Nishimino Kosei Hospital'),
(129244, 102937, 'en', 'name', 'National Sanatorium Amami-Wakouen'),
(129245, 102937, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€å„„ē¾Žå’Œå…‰åœ’'),
(129246, 102938, 'en', 'name', 'Okinawa Prefectural Plant Protection Center'),
(129247, 102938, 'ja', 'name', 'ę²–ēø„ēœŒē—…å®³č™«é˜²é™¤ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129248, 102939, 'en', 'name', 'Nippon Life Hospital'),
(129249, 102939, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿå‘½ęøˆē”Ÿä¼šę—„ęœ¬ē”Ÿå‘½ē—…é™¢'),
(129250, 102940, 'en', 'name', 'Public Works Research Center'),
(129251, 102940, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœŸęœØē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129252, 102941, 'en', 'name', 'HORAC GRAND FRONT OSAKA Clinic'),
(129253, 102941, 'ja', 'name', 'HORACć‚°ćƒ©ćƒ³ćƒ•ćƒ­ćƒ³ćƒˆå¤§é˜Ŗć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(129254, 102942, 'en', 'name', 'Ikuei University'),
(129255, 102942, 'ja', 'name', '育英大学'),
(129256, 102943, 'fr', 'name', 'Centre Hospitalier Universitaire de Nice'),
(129257, 102944, 'en', 'name', 'Tsushima City Hospital'),
(129258, 102944, 'ja', 'name', '擄島市民病院'),
(129259, 102945, 'en', 'name', 'Chiba City Education Center'),
(129260, 102945, 'ja', 'name', 'åƒč‘‰åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(129261, 102946, 'en', 'name', 'Nagaoka Sutoku University'),
(129262, 102946, 'ja', 'name', '長岔哇徳大学'),
(129263, 102947, 'en', 'name', 'The Japan Society of Acupuncture and Moxibustion'),
(129264, 102947, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬é¼ēøå­¦ä¼š'),
(129265, 102948, 'en', 'name', 'Institute of Systems Science Research'),
(129266, 102948, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚·ć‚¹ćƒ†ćƒ ē§‘å­¦ē ”ē©¶ę‰€'),
(129267, 102949, 'en', 'name', 'Kagoshima Prefectural Government'),
(129268, 102949, 'ja', 'name', 'é¹æå…å³¶ēœŒåŗ'),
(129269, 102950, 'en', 'name', 'St. Marguerite Hospital'),
(129270, 102950, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ęµä»ä¼šć‚»ćƒ³ćƒˆćƒžćƒ¼ć‚¬ćƒ¬ćƒƒćƒˆē—…é™¢'),
(129271, 102951, 'id', 'name', 'Paurastya Vidyāpīṭham'),
(129272, 102951, 'en', 'name', 'Pontifical Oriental Institute of Religious Studies'),
(129273, 102952, 'en', 'name', 'Association of International Research Initiatives for Environmental Studies'),
(129274, 102952, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›ē’°å¢ƒē ”ē©¶å”ä¼š'),
(129275, 102953, 'en', 'name', 'Ecosystem Conservation SOCIETY-JAPAN'),
(129276, 102953, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿę…‹ē³»å”ä¼š'),
(129277, 102954, 'en', 'name', 'Japan Aluminium Association'),
(129278, 102954, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ«ćƒŸćƒ‹ć‚¦ćƒ å”ä¼š'),
(129279, 102955, 'en', 'name', 'Plastic Waste Management Institute'),
(129280, 102955, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ—ćƒ©ć‚¹ćƒćƒƒć‚Æå¾Ŗē’°åˆ©ē”Øå”ä¼š'),
(129281, 102956, 'en', 'name', 'Wakayama Prefectural Agricultural Experiment Station'),
(129282, 102956, 'ja', 'name', 'å’Œę­Œå±±ēœŒč¾²ę„­č©¦éØ“å “'),
(129283, 102957, 'en', 'name', 'Life Sports Foundation'),
(129284, 102957, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ©ć‚¤ćƒ•ć‚¹ćƒćƒ¼ćƒ„č²”å›£'),
(129285, 102958, 'en', 'name', 'Teikyo Junior College'),
(129286, 102958, 'ja', 'name', 'åøäŗ¬ēŸ­ęœŸå¤§å­¦'),
(129287, 102959, 'en', 'name', 'Tokyo Geographical Society'),
(129288, 102959, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬åœ°å­¦å”ä¼š'),
(129289, 102960, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Bari'),
(129290, 102960, 'en', 'name', 'National Institute for Nuclear Physics, Bari Division'),
(129291, 102961, 'en', 'name', 'Japan Science Foundation'),
(129292, 102961, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(129293, 102962, 'en', 'name', 'Iwate Fisheries Technology Center'),
(129294, 102962, 'ja', 'name', 'å²©ę‰‹ēœŒę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129295, 102963, 'en', 'name', 'Japan Organization for Metals and Energy Security (Japan)'),
(129296, 102963, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»é‡‘å±žé‰±ē‰©č³‡ęŗę©Ÿę§‹'),
(129297, 102964, 'en', 'name', 'OKINAWA Science and Technology Promotion Center'),
(129298, 102964, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę²–ēø„ē§‘å­¦ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(129299, 102965, 'en', 'name', 'Institute for Horticultural Plant Breeding'),
(129300, 102965, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåœ’čŠøę¤ē‰©č‚²ēØ®ē ”ē©¶ę‰€'),
(129301, 102966, 'en', 'name', 'Yamanashi Prefectural Agricultural Technology Center'),
(129302, 102966, 'ja', 'name', 'å±±ę¢ØēœŒē·åˆč¾²ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129303, 102967, 'en', 'name', 'Tottori Agricultural Experiment Station'),
(129304, 102967, 'ja', 'name', 'é³„å–ēœŒč¾²ę„­č©¦éØ“å “'),
(129305, 102968, 'en', 'name', 'Japan Antibiotics Research Association'),
(129306, 102968, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę„ŸęŸ“ē—‡åŒ»č–¬å“å”ä¼š'),
(129307, 102969, 'en', 'name', 'Matsue Seikyo General Hospital'),
(129308, 102969, 'ja', 'name', 'ę¾ę±Ÿäæå„ē”Ÿę“»å”åŒēµ„åˆē·åˆē—…é™¢ę¾ę±Ÿē”Ÿå”ē—…é™¢'),
(129309, 102970, 'bs', 'name', 'Institut za ispitivanje materijala IMS a.d. Beograd'),
(129310, 102970, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠøŃŠæŠøŃ‚ŠøŠ²Š°ŃšŠµ Š¼Š°Ń‚ŠµŃ€ŠøŃ˜Š°Š»Š° а.Š“.'),
(129311, 102971, 'en', 'name', 'Mito Kyodo General Hospital'),
(129312, 102971, 'ja', 'name', 'ē·åˆē—…é™¢ę°“ęˆøå”åŒē—…é™¢'),
(129313, 102972, 'en', 'name', 'Japan Industrial Waste Information Center'),
(129314, 102972, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”£ę„­å»ƒę£„ē‰©å‡¦ē†ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(129315, 102973, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Firenze'),
(129316, 102973, 'en', 'name', 'National Institute for Nuclear Physics, Florence Division'),
(129317, 102974, 'en', 'name', 'Stichting Arab West Foundation'),
(129318, 102975, 'en', 'name', 'Nagasaki Prefectural Government'),
(129319, 102975, 'ja', 'name', 'é•·å“ŽēœŒåŗ'),
(129320, 102976, 'fr', 'name', 'Centre hospitalier universitaire de QuƩbec'),
(129321, 102977, 'en', 'name', 'Cancer Research Horizons'),
(129322, 102978, 'en', 'name', 'Osaka Nursing Association'),
(129323, 102978, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗåŗœēœ‹č­·å”ä¼š'),
(129324, 102979, 'en', 'name', 'Gifu Prefectural Police'),
(129325, 102979, 'ja', 'name', '岐阜県警察'),
(129326, 102980, 'en', 'name', 'Medical Corporation JR Hiroshima Hospital'),
(129327, 102980, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗJRåŗƒå³¶ē—…é™¢'),
(129328, 102981, 'en', 'name', 'Hino Municipal Hospital'),
(129329, 102981, 'ja', 'name', 'ę—„é‡Žåø‚ē«‹ē—…é™¢'),
(129330, 102982, 'en', 'name', 'Council of Australasian University Librarians'),
(129331, 102983, 'en', 'name', 'Kagawa Prefectural Industrial Technology Center'),
(129332, 102983, 'ja', 'name', 'é¦™å·ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129333, 102984, 'en', 'name', 'Wakkanai City Hospital'),
(129334, 102984, 'ja', 'name', 'åø‚ē«‹ēØšå†…ē—…é™¢'),
(129335, 102985, 'en', 'name', 'Japan Cooperation Center Petroleum'),
(129336, 102985, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗJCCPå›½éš›ēŸ³ę²¹ćƒ»ć‚¬ć‚¹å”åŠ›ę©Ÿé–¢'),
(129337, 102986, 'en', 'name', 'Miyazaki Prefectural Fisheries Research Institute'),
(129338, 102986, 'ja', 'name', 'å®®å“ŽēœŒę°“ē”£č©¦éØ“å “'),
(129339, 102987, 'en', 'name', 'Suwa University of Science'),
(129340, 102987, 'ja', 'name', 'å…¬ē«‹č«čØŖę±äŗ¬ē†ē§‘å¤§å­¦'),
(129341, 102988, 'en', 'name', 'University of Pisa'),
(129342, 102988, 'it', 'name', 'UniversitĆ  di Pisa'),
(129343, 102988, 'de', 'name', 'UniversitƤt Pisa'),
(129344, 102988, 'fr', 'name', 'UniversitƩ de Pise'),
(129345, 102989, 'ja', 'name', 'JAä½é‡ŽåŽšē”Ÿé€£ä½é‡ŽåŽšē”Ÿē·åˆē—…é™¢'),
(129346, 102989, 'en', 'name', 'Sanokousei General Hospital'),
(129347, 102990, 'en', 'name', 'The Land Institute of Japan'),
(129348, 102990, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœŸåœ°ē·åˆē ”ē©¶ę‰€'),
(129349, 102991, 'en', 'name', 'Seirei Yokohama Hospital'),
(129350, 102991, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£č–éš·ęØŖęµœē—…é™¢'),
(129351, 102992, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Trieste'),
(129352, 102992, 'en', 'name', 'National Institute for Nuclear Physics, Division in Trieste'),
(129353, 102993, 'en', 'name', 'International Union for Conservation of Nature (United Kingdom)'),
(129354, 102994, 'en', 'name', 'Roma Tre University'),
(129355, 102994, 'it', 'name', 'UniversitĆ  degli Studi Roma Tre'),
(129356, 102994, 'fr', 'name', 'UniversitƩ de Rome III'),
(129357, 102995, 'en', 'name', 'Hakodate Goryoukaku Hospital'),
(129358, 102995, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗå‡½é¤ØåŽšē”Ÿé™¢å‡½é¤Øäŗ”ēØœéƒ­ē—…é™¢'),
(129359, 102996, 'en', 'name', 'Tsurugaya Hospital'),
(129360, 102996, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗé¶“č°·ä¼šé¶“č°·ē—…é™¢'),
(129361, 102997, 'en', 'name', 'Hokusho Central Hospital'),
(129362, 102997, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŒ—ę¾äø­å¤®ē—…é™¢'),
(129363, 102998, 'en', 'name', 'NTT WEST Osaka Hospital'),
(129364, 102998, 'ja', 'name', 'NTTč„æę—„ęœ¬å¤§é˜Ŗē—…é™¢'),
(129365, 102999, 'en', 'name', 'Tottori Institute of Industrial Technology'),
(129366, 102999, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗé³„å–ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129367, 103000, 'en', 'name', 'The Japan Iron and Steel Federation'),
(129368, 103000, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é‹¼é€£ē›Ÿ'),
(129369, 103001, 'en', 'name', 'Takeda Hospital'),
(129370, 103001, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£åŗ·ē”Ÿä¼šę­¦ē”°ē—…é™¢'),
(129371, 103002, 'en', 'name', 'Saga Prefectural Genkai Fisheries Research and Development Center'),
(129372, 103002, 'ja', 'name', 'ä½č³€ēœŒēŽ„ęµ·ę°“ē”£ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(129373, 103003, 'en', 'name', 'Capital Region of Denmark'),
(129374, 103003, 'da', 'name', 'Region Hovedstaden'),
(129375, 103004, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Napoli'),
(129376, 103004, 'en', 'name', 'National Institute for Nuclear Physics, Naples Unit'),
(129377, 103005, 'en', 'name', 'Kawasaki Rinko General Hospital'),
(129378, 103005, 'ja', 'name', 'ē·åˆå·å“Žč‡ØęøÆē—…é™¢'),
(129379, 103006, 'en', 'name', 'Gihoku Kosei Hospital'),
(129380, 103006, 'ja', 'name', 'JAå²é˜œåŽšē”Ÿé€£å²åŒ—åŽšē”Ÿē—…é™¢'),
(129381, 103007, 'en', 'name', 'Child Information and Research Center'),
(129382, 103007, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå­ć©ć‚‚ęƒ…å ±ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129383, 103008, 'en', 'name', 'Kanazawa Gakuin College'),
(129384, 103008, 'ja', 'name', 'é‡‘ę²¢å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(129385, 103009, 'en', 'name', 'Japan Industrial Management Association'),
(129386, 103009, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒå–¶å·„å­¦ä¼š'),
(129387, 103010, 'en', 'name', 'State Islamic University Datokarama Palu'),
(129388, 103010, 'id', 'name', 'Universitas Islam Negeri Datokarama Palu'),
(129389, 103011, 'en', 'name', 'Shizuoka Graduate University of Public Health'),
(129390, 103011, 'ja', 'name', 'é™å²”ē¤¾ä¼šå„åŗ·åŒ»å­¦å¤§å­¦é™¢å¤§å­¦'),
(129391, 103012, 'en', 'name', 'Nagano Prefecture General Industrial Technology Center'),
(129392, 103012, 'ja', 'name', 'é•·é‡ŽēœŒå·„ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(129393, 103013, 'en', 'name', 'National Agrarian University La Molina'),
(129394, 103013, 'es', 'name', 'Universidad Nacional Agraria La Molina'),
(129395, 103014, 'en', 'name', 'Al-Naji University'),
(129396, 103014, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†Ų§Ų¬ŁŠ'),
(129397, 103015, 'en', 'name', 'Marondera University of Agricultural Sciences and Technology'),
(129398, 103016, 'en', 'name', 'Aisei Hospital'),
(129399, 103016, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę„›äø–ä¼šę„›čŖ ē—…é™¢'),
(129400, 103017, 'en', 'name', 'Heisei Memorial Hospital'),
(129401, 103017, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¹³ęˆčØ˜åæµē—…é™¢'),
(129402, 103018, 'en', 'name', 'Organization for Landscape and Urban Green Infrastructure'),
(129403, 103018, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚ē·‘åŒ–ę©Ÿę§‹'),
(129404, 103019, 'en', 'name', 'Control System Security Center'),
(129405, 103019, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆåˆ¶å¾”ć‚·ć‚¹ćƒ†ćƒ ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£ć‚»ćƒ³ć‚æćƒ¼'),
(129406, 103020, 'en', 'name', 'Asakayama General Hospital'),
(129407, 103020, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęµ…é¦™å±±ē—…é™¢'),
(129408, 103021, 'en', 'name', 'Livit Ottobock Care'),
(129409, 103022, 'en', 'name', 'Brewing Society of Japan'),
(129410, 103022, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é†øé€ å”ä¼š'),
(129411, 103023, 'en', 'name', 'European Agroforestry Federation'),
(129412, 103023, 'fr', 'name', 'FƩdƩration europƩenne d''agroforesterie'),
(129413, 103024, 'en', 'name', 'Ishikawa Insect Museum'),
(129414, 103024, 'ja', 'name', 'ēŸ³å·ēœŒćµć‚Œć‚ć„ę˜†č™«é¤Ø'),
(129415, 103025, 'en', 'name', 'SAGA Light Source'),
(129416, 103025, 'ja', 'name', 'ä½č³€ēœŒē«‹ä¹å·žć‚·ćƒ³ć‚Æćƒ­ćƒˆćƒ­ćƒ³å…‰ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129417, 103026, 'en', 'name', 'Miyazaki Prefectural Forestry Technology Center'),
(129418, 103026, 'ja', 'name', 'å®®å“ŽēœŒęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129419, 103027, 'en', 'name', 'Ishinkai Yao General Hospital'),
(129420, 103027, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ»ēœŸä¼šå…«å°¾ē·åˆē—…é™¢'),
(129421, 103028, 'en', 'name', 'Kansai Airport Research Institute'),
(129422, 103028, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æē©ŗęøÆčŖæęŸ»ä¼š'),
(129423, 103029, 'en', 'name', 'Industrial Technology Center of Tochigi Prefecture'),
(129424, 103029, 'ja', 'name', 'ę ƒęœØēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129425, 103030, 'en', 'name', 'Nuclear Material Control Center'),
(129426, 103030, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę øē‰©č³Ŗē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(129427, 103031, 'en', 'name', 'Consortium for Lithium Ion Battery Technology and Evaluation Center'),
(129428, 103031, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆćƒŖćƒć‚¦ćƒ ć‚¤ć‚Ŗćƒ³é›»ę± ęę–™č©•ä¾”ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129429, 103032, 'en', 'name', 'Mie Prefecture Fisheries Research Institute'),
(129430, 103032, 'ja', 'name', 'äø‰é‡ēœŒę°“ē”£ē ”ē©¶ę‰€'),
(129431, 103033, 'en', 'name', 'Niigata Rheumatic Center'),
(129432, 103033, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ćƒŖć‚¦ćƒžćƒć‚»ćƒ³ć‚æćƒ¼'),
(129433, 103034, 'en', 'name', 'Sakurajyuji Hospital'),
(129434, 103034, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę”œåå­—ę”œåå­—ē—…é™¢'),
(129435, 103035, 'en', 'name', 'Yamaguchi College of Arts'),
(129436, 103035, 'ja', 'name', 'å±±å£čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(129437, 103036, 'en', 'name', 'Ibaraki Prefectural Government'),
(129438, 103036, 'ja', 'name', 'čŒØåŸŽēœŒåŗ'),
(129439, 103037, 'en', 'name', 'Toyama Design Center'),
(129440, 103037, 'ja', 'name', 'åÆŒå±±ēœŒē·åˆćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(129441, 103038, 'en', 'name', 'Agricultural Society of Japan'),
(129442, 103038, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§ę—„ęœ¬č¾²ä¼š'),
(129443, 103039, 'en', 'name', 'Japanese Society of School Health'),
(129444, 103039, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å­¦ę ”äæå„ä¼š'),
(129445, 103040, 'en', 'name', 'Japan Marine Science Foundation'),
(129446, 103040, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęµ·ę“‹ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(129447, 103041, 'en', 'name', 'Japan Techno-Economics Society'),
(129448, 103041, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē§‘å­¦ęŠ€č”“ćØēµŒęøˆć®ä¼š'),
(129449, 103042, 'en', 'name', 'Wakayama Prefectural Police'),
(129450, 103042, 'ja', 'name', 'å’Œę­Œå±±ēœŒč­¦åÆŸ'),
(129451, 103043, 'en', 'name', 'Penang Institute'),
(129452, 103044, 'en', 'name', 'Database Center for Life Science'),
(129453, 103044, 'ja', 'name', 'ćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹ēµ±åˆćƒ‡ćƒ¼ć‚æćƒ™ćƒ¼ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(129454, 103045, 'en', 'name', 'National Center for Educational Technology'),
(129455, 103045, 'zh', 'name', 'äø­å¤®ē”µåŒ–ę•™č‚²é¦†'),
(129456, 103046, 'en', 'name', 'The Japan Lung Cancer Society'),
(129457, 103046, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬č‚ŗē™Œå­¦ä¼š'),
(129458, 103047, 'en', 'name', 'Fukushima Prefectural Inland Water Fisheries Experimental Station'),
(129459, 103047, 'ja', 'name', 'ē¦å³¶ēœŒå†…ę°“é¢ę°“ē”£č©¦éØ“å “'),
(129460, 103048, 'ro', 'name', 'Academia de Politie Alexandru Ioan Cuza'),
(129461, 103049, 'en', 'name', 'Hokkaido Gastroenterology Hospital'),
(129462, 103049, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå½°å’Œä¼šåŒ—ęµ·é“ę¶ˆåŒ–å™Øē§‘ē—…é™¢'),
(129463, 103050, 'en', 'name', 'The City Planning Institute of Japan'),
(129464, 103050, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬éƒ½åø‚čØˆē”»å­¦ä¼š'),
(129465, 103051, 'en', 'name', 'SAITAMA SEKISHINKAI Hospital'),
(129466, 103051, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ēŸ³åæƒä¼šåŸ¼ēŽ‰ēŸ³åæƒä¼šē—…é™¢'),
(129467, 103052, 'en', 'name', 'Sonoda Women''s College'),
(129468, 103052, 'ja', 'name', 'åœ’ē”°å­¦åœ’å„³å­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129469, 103053, 'en', 'name', 'Fukuoka Prefectural Government'),
(129470, 103053, 'ja', 'name', 'ē¦å²”ēœŒåŗ'),
(129471, 103054, 'en', 'name', 'NMEMS Technology Research Organization'),
(129472, 103054, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆNMEMSęŠ€č”“ē ”ē©¶ę©Ÿę§‹'),
(129473, 103055, 'en', 'name', 'Shiraumegakuen College'),
(129474, 103055, 'ja', 'name', 'ē™½ę¢…å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(129475, 103056, 'en', 'name', 'Mary Ann Liebert'),
(129476, 103056, 'no_lang_code', 'name', 'Mary Ann Liebert (United States)'),
(129477, 103057, 'en', 'name', 'Sapporo International Junior College'),
(129478, 103057, 'ja', 'name', 'ęœ­å¹Œå›½éš›å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129479, 103058, 'ca', 'name', 'Universitat de NĆ pols Frederic II'),
(129480, 103058, 'en', 'name', 'University of Naples Federico II'),
(129481, 103058, 'it', 'name', 'UniversitĆ  degli Studi di Napoli Federico II'),
(129482, 103058, 'de', 'name', 'UniversitƤt Neapel Federico II'),
(129483, 103058, 'fr', 'name', 'UniversitƩ de Naples - FrƩdƩric-II'),
(129484, 103059, 'en', 'name', 'Fort Hays Tech Northwest'),
(129485, 103060, 'en', 'name', 'Okinawa Prefectural Sea Farming Center'),
(129486, 103060, 'ja', 'name', 'ę²–ēø„ēœŒę ½åŸ¹ę¼ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(129487, 103061, 'en', 'name', 'IUCN Species Survival Commission'),
(129488, 103062, 'en', 'name', 'Henan University of Traditional Chinese Medicine'),
(129489, 103062, 'zh', 'name', 'ę²³å—äø­åŒ»å­¦é™¢'),
(129490, 103063, 'en', 'name', 'Kanagawa Institute of Industrial Science and Technology'),
(129491, 103063, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē„žå„ˆå·ēœŒē«‹ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(129492, 103064, 'en', 'name', 'The Engineering Academy of Japan'),
(129493, 103064, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å·„å­¦ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(129494, 103065, 'en', 'name', 'Hiroshima HIGH-PRECISION Radiotherapy Cancer Center'),
(129495, 103065, 'ja', 'name', 'åŗƒå³¶ćŒć‚“é«˜ē²¾åŗ¦ę”¾å°„ē·šę²»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(129496, 103066, 'en', 'name', 'Kobe Institute of Urban Research'),
(129497, 103066, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøéƒ½åø‚å•é”Œē ”ē©¶ę‰€'),
(129498, 103067, 'en', 'name', 'Osaka Health Medical Foundation'),
(129499, 103067, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗåŗœäæå„åŒ»ē™‚č²”å›£'),
(129500, 103068, 'en', 'name', 'Hokkaido Tokachi Area Regional Food Processing Technology Center'),
(129501, 103068, 'ja', 'name', 'åŒ—ęµ·é“ē«‹åå‹åœåœ°åŸŸé£Ÿå“åŠ å·„ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129502, 103069, 'en', 'name', 'Chukyo Junior College'),
(129503, 103069, 'ja', 'name', 'äø­äŗ¬å­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129504, 103070, 'ja', 'name', 'JAę–°ę½ŸåŽšē”Ÿé€£ę–°ę½ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(129505, 103070, 'en', 'name', 'Niigata Medical Center'),
(129506, 103071, 'en', 'name', 'General Building Research Corporation of Japan'),
(129507, 103071, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ē·åˆč©¦éØ“ę‰€'),
(129508, 103072, 'en', 'name', 'Yoshida Hospital'),
(129509, 103072, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¹³å’Œä¼šå‰ē”°ē—…é™¢'),
(129510, 103073, 'en', 'name', 'Sasebo Kyosai Hospital'),
(129511, 103073, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šä½äø–äæå…±ęøˆē—…é™¢'),
(129512, 103074, 'en', 'name', 'Slovak University of Agriculture in Nitra'),
(129513, 103074, 'sk', 'name', 'SlovenskÔ poľnohospodÔrska univerzita v Nitre'),
(129514, 103075, 'en', 'name', 'Kamakura Women''s Junior College'),
(129515, 103075, 'ja', 'name', 'éŽŒå€‰å„³å­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129516, 103076, 'en', 'name', 'Aiseikai Yamashina Hospital'),
(129517, 103076, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę„›ē”Ÿä¼šå±±ē§‘ē—…é™¢'),
(129518, 103077, 'en', 'name', 'Kyoto Koka Women''s College'),
(129519, 103077, 'ja', 'name', 'äŗ¬éƒ½å…‰čÆå„³å­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129520, 103078, 'en', 'name', 'Shiseido General Hospital'),
(129521, 103078, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę¾ęŸä¼šč‡³čŖ å ‚ē·åˆē—…é™¢'),
(129522, 103079, 'en', 'name', 'Kita Harima Medical Center'),
(129523, 103079, 'ja', 'name', 'åŒ—ę’­ē£Øē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(129524, 103080, 'en', 'name', 'Hanyu General Hospital'),
(129525, 103080, 'ja', 'name', 'åŸ¼ēŽ‰åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆē¾½ē”Ÿē·åˆē—…é™¢'),
(129526, 103081, 'en', 'name', 'Sendai City Institute of Public Health'),
(129527, 103081, 'ja', 'name', 'ä»™å°åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(129528, 103082, 'en', 'name', 'Chubu Region Institute for Social and Economic Research'),
(129529, 103082, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­éƒØåœē¤¾ä¼šēµŒęøˆē ”ē©¶ę‰€'),
(129530, 103083, 'en', 'name', 'Osaka Pediatric Association'),
(129531, 103083, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗå°å…ē§‘åŒ»ä¼š'),
(129532, 103084, 'en', 'name', 'Kumamoto Prefectural Government'),
(129533, 103084, 'ja', 'name', 'ē†Šęœ¬ēœŒåŗ'),
(129534, 103085, 'en', 'name', 'Engaru-Kosei General Hospital'),
(129535, 103085, 'ja', 'name', 'JAåŒ—ęµ·é“åŽšē”Ÿé€£é č»½åŽšē”Ÿē—…é™¢'),
(129536, 103086, 'so', 'name', 'Hay’adda Istaatistikada Qaranka Soomaaliya'),
(129537, 103086, 'en', 'name', 'Somalia National Bureau of Statistics'),
(129538, 103087, 'en', 'name', 'The River Foundation'),
(129539, 103087, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę²³å·č²”å›£'),
(129540, 103088, 'en', 'name', 'Hokkaido Medical Association'),
(129541, 103088, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“åŒ»åø«ä¼š'),
(129542, 103089, 'en', 'name', 'Japanese Drug Organization of Appropriate Use and Research'),
(129543, 103089, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗåŒ»č–¬å“é©ę­£ä½æē”ØęŽØé€²ę©Ÿę§‹'),
(129544, 103090, 'en', 'name', 'Hara Genitourinary Hospital'),
(129545, 103090, 'ja', 'name', 'åŽŸę³Œå°æå™Øē§‘ē—…é™¢'),
(129546, 103091, 'en', 'name', 'Shimane Prefectural Agriculture And Livestock Industry Promotion Division'),
(129547, 103091, 'ja', 'name', 'å³¶ę ¹ēœŒč¾²ęž—ę°“ē”£éƒØ'),
(129548, 103092, 'en', 'name', 'Clinical Research Education and Management Services'),
(129549, 103093, 'en', 'name', 'Kumamoto Shinto General Hospital'),
(129550, 103093, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå‰µčµ·ä¼šćć¾ć‚‚ćØę£®éƒ½ē·åˆē—…é™¢'),
(129551, 103094, 'en', 'name', 'Yokohama Asahi Chuo General Hospital'),
(129552, 103094, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę˜ŽčŠ³ä¼šęØŖęµœę—­äø­å¤®ē·åˆē—…é™¢'),
(129553, 103095, 'en', 'name', 'Okinawa Christian Junior College'),
(129554, 103095, 'ja', 'name', 'ę²–ēø„ć‚­ćƒŖć‚¹ćƒˆę•™ēŸ­ęœŸå¤§å­¦'),
(129555, 103096, 'en', 'name', 'Inuyama Hospital'),
(129556, 103096, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę”œę”‚ä¼šēŠ¬å±±ē—…é™¢'),
(129557, 103097, 'en', 'name', 'BioSafety Research Center'),
(129558, 103097, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé£Ÿå“č¾²åŒ»č–¬å“å®‰å…Øę€§č©•ä¾”ć‚»ćƒ³ć‚æćƒ¼'),
(129559, 103098, 'en', 'name', 'Nanpuh Hospital'),
(129560, 103098, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé¹æå…å³¶å…±ęøˆä¼šå—é¢Øē—…é™¢'),
(129561, 103099, 'fr', 'name', 'Centre de recherche du CHU de QuƩbec-UniversitƩ Laval'),
(129562, 103100, 'en', 'name', 'Takamatsu Municipal Hospital'),
(129563, 103100, 'ja', 'name', 'é«˜ę¾åø‚ē«‹ćæć‚“ćŖć®ē—…é™¢'),
(129564, 103101, 'en', 'name', 'Nagasaki Memorial Hospital'),
(129565, 103101, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé•·å“ŽčØ˜åæµē—…é™¢'),
(129566, 103102, 'en', 'name', 'Tokyo Metropolitan Leather Technology Center'),
(129567, 103102, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ēš®é©ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129568, 103103, 'en', 'name', 'Aomori Prefectural Public Health and Environment Center'),
(129569, 103103, 'ja', 'name', 'é’ę£®ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(129570, 103104, 'en', 'name', 'Kurobe City Hospital'),
(129571, 103104, 'ja', 'name', 'é»’éƒØåø‚ę°‘ē—…é™¢'),
(129572, 103105, 'en', 'name', 'Hyogo College'),
(129573, 103105, 'ja', 'name', 'å…µåŗ«å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129574, 103106, 'en', 'name', 'Jusendo Hospital'),
(129575, 103106, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę¹Æęµ…å ±ę©ä¼šåÆæę³‰å ‚ē¶œåˆē—…é™¢'),
(129576, 103107, 'en', 'name', 'Yamagata Promotional Organization for Industrial Technology'),
(129577, 103107, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå±±å½¢ēœŒē”£ę„­ęŠ€č”“ęŒÆčˆˆę©Ÿę§‹'),
(129578, 103108, 'en', 'name', 'Wakayama Prefectural Forestry Experiment Station'),
(129579, 103108, 'ja', 'name', 'å’Œę­Œå±±ēœŒęž—ę„­č©¦éØ“å “'),
(129580, 103109, 'en', 'name', 'Iwate Prefectural Government'),
(129581, 103109, 'ja', 'name', 'å²©ę‰‹ēœŒåŗ'),
(129582, 103110, 'en', 'name', 'Institute Of Geriatric Medicine And Dentistry'),
(129583, 103110, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč€å¹“ę­Æē§‘åŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(129584, 103111, 'en', 'name', 'Kyoto City Institute of Health and Environmental Sciences'),
(129585, 103111, 'ja', 'name', 'äŗ¬éƒ½åø‚č”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(129586, 103112, 'en', 'name', 'National Statistics Center'),
(129587, 103112, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗēµ±čØˆć‚»ćƒ³ć‚æćƒ¼'),
(129588, 103113, 'en', 'name', 'Musashimurayama Hospital'),
(129589, 103113, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£å¤§å’Œä¼šę­¦č”µę‘å±±ē—…é™¢'),
(129590, 103114, 'en', 'name', 'Wagyu Registry Association'),
(129591, 103114, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½å’Œē‰›ē™»éŒ²å”ä¼š'),
(129592, 103115, 'en', 'name', 'Aino University Junior College'),
(129593, 103115, 'ja', 'name', 'č—é‡Žå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129594, 103116, 'en', 'name', 'Sensho-kai Eye Institute'),
(129595, 103116, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåƒē…§ä¼šåƒåŽŸēœ¼ē§‘åŒ»é™¢'),
(129596, 103117, 'en', 'name', 'Mahrah University'),
(129597, 103117, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المهرة'),
(129598, 103118, 'en', 'name', 'NUCLEAR Safety Technology Center'),
(129599, 103118, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›å®‰å…ØęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129600, 103119, 'en', 'name', 'National Sanatorium Tama Zenshoen'),
(129601, 103119, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€å¤šē£Øå…Øē”Ÿåœ’'),
(129602, 103120, 'en', 'name', 'Tsukuba Gakuen Hospital'),
(129603, 103120, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē­‘ę³¢éŗ“ä»ä¼šē­‘ę³¢å­¦åœ’ē—…é™¢'),
(129604, 103121, 'en', 'name', 'Shizuoka Prefectural Research Institute of Animal Industry'),
(129605, 103121, 'ja', 'name', 'é™å²”ēœŒē•œē”£ęŠ€č”“ē ”ē©¶ę‰€'),
(129606, 103122, 'en', 'name', 'Gakushuin Women''s College'),
(129607, 103122, 'ja', 'name', '学習院儳子大学'),
(129608, 103123, 'en', 'name', 'Kagoshima Seikyo Hospital'),
(129609, 103123, 'ja', 'name', 'é¹æå…å³¶åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆé¹æå…å³¶ē”Ÿå”ē—…é™¢'),
(129610, 103124, 'en', 'name', 'Japan Travel Bureau Foundation'),
(129611, 103124, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äŗ¤é€šå…¬ē¤¾'),
(129612, 103125, 'en', 'name', 'Hakodate Medical Association'),
(129613, 103125, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå‡½é¤Øåø‚åŒ»åø«ä¼š'),
(129614, 103126, 'fr', 'name', 'CHU de QuƩbec-UniversitƩ Laval'),
(129615, 103127, 'en', 'name', 'Istanbul Provincial Directorate of National Education'),
(129616, 103127, 'tr', 'name', 'İstanbul İl Millî Eğitim Müdürlüğü'),
(129617, 103128, 'en', 'name', 'Inazawa Municipal Hospital'),
(129618, 103128, 'ja', 'name', '稲沢市民病院'),
(129619, 103129, 'en', 'name', 'Kyoto Junior College of Foreign Languages'),
(129620, 103129, 'ja', 'name', 'äŗ¬éƒ½å¤–å›½čŖžēŸ­ęœŸå¤§å­¦'),
(129621, 103130, 'en', 'name', 'Japan RiverFront research Center'),
(129622, 103130, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒŖćƒćƒ¼ćƒ•ćƒ­ćƒ³ćƒˆē ”ē©¶ę‰€'),
(129623, 103131, 'en', 'name', 'Yamaguchi Prefectural Industrial Technology Institute'),
(129624, 103131, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå±±å£ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129625, 103132, 'en', 'name', 'Research Institute for Urban & Environmental Development'),
(129626, 103132, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é–‹ē™ŗę§‹ęƒ³ē ”ē©¶ę‰€'),
(129627, 103133, 'en', 'name', 'Kagawa Forestry Center'),
(129628, 103133, 'ja', 'name', 'é¦™å·ēœŒę£®ęž—ć‚»ćƒ³ć‚æćƒ¼'),
(129629, 103134, 'en', 'name', 'Akita Prefecture Forestry Research and Training Center'),
(129630, 103134, 'ja', 'name', 'ē§‹ē”°ēœŒęž—ę„­ē ”ē©¶ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(129631, 103135, 'en', 'name', 'Tokyo Online University'),
(129632, 103135, 'ja', 'name', 'ę±äŗ¬é€šäæ”å¤§å­¦'),
(129633, 103136, 'en', 'name', 'Foundation for Detection of Early Gastric Carcinoma'),
(129634, 103136, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—©ęœŸčƒƒē™Œę¤œčØŗå”ä¼š'),
(129635, 103137, 'en', 'name', 'Kobe Tokushukai Hospital'),
(129636, 103137, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šē„žęˆøå¾³ę“²ä¼šē—…é™¢'),
(129637, 103138, 'en', 'name', 'Daiyukai General Hospital'),
(129638, 103138, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤§é›„ä¼šē·åˆå¤§é›„ä¼šē—…é™¢'),
(129639, 103139, 'en', 'name', 'Tobacco Academic Studies Center'),
(129640, 103139, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćŸć°ć“ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129641, 103140, 'en', 'name', 'Osaka International College'),
(129642, 103140, 'ja', 'name', 'å¤§é˜Ŗå›½éš›å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129643, 103141, 'en', 'name', 'Gifu Prefectural Gero Hospital'),
(129644, 103141, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå²é˜œēœŒē«‹äø‹å‘‚ęø©ę³‰ē—…é™¢'),
(129645, 103142, 'ja', 'name', 'JAé•·é‡ŽåŽšē”Ÿé€£é¹æę•™ę¹Æäø‰ę‰å±±ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(129646, 103142, 'en', 'name', 'Kakeyu-Misayama Rehabilitation Center'),
(129647, 103143, 'en', 'name', 'Hakuhokai Central Hospital'),
(129648, 103143, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗä¼Æé³³ä¼šćÆćć»ć†ä¼šć‚»ćƒ³ćƒˆćƒ©ćƒ«ē—…é™¢'),
(129649, 103144, 'en', 'name', 'Osaka College of Music'),
(129650, 103144, 'ja', 'name', '大阪音愽大学'),
(129651, 103145, 'en', 'name', 'Yamanashi Kosei Hospital'),
(129652, 103145, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå±±ę¢ØåŽšē”Ÿä¼šå±±ę¢ØåŽšē”Ÿē—…é™¢'),
(129653, 103146, 'en', 'name', 'Kochi Prefectural Forest Technology Center'),
(129654, 103146, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹ę£®ęž—ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129655, 103147, 'en', 'name', 'Japan Pharmacists Education Center'),
(129656, 103147, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č–¬å‰¤åø«ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(129657, 103148, 'en', 'name', 'Ishikawa Prefectural Institute of Public Health and Environmental Science'),
(129658, 103148, 'ja', 'name', 'ēŸ³å·ēœŒäæå„ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(129659, 103149, 'en', 'name', 'Asama Nanroku Komoro Medical Center'),
(129660, 103149, 'ja', 'name', 'JAé•·é‡ŽåŽšē”Ÿé€£ęµ…é–“å—éŗ“ć“ć‚‚ć‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(129661, 103150, 'en', 'name', 'Sakai City Institute of Public Health'),
(129662, 103150, 'ja', 'name', 'å ŗåø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(129663, 103151, 'en', 'name', 'Research Institute of Human Engineering for Quality Life'),
(129664, 103151, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗŗé–“ē”Ÿę“»å·„å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129665, 103152, 'en', 'name', 'Cupid Clinic'),
(129666, 103152, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗć‚Æćƒ”ćƒ‰ćƒ»ćƒ•ć‚§ć‚¢ćć“ć©ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(129667, 103153, 'en', 'name', 'Kagoshima Prefectural Institute For Agricultural Development'),
(129668, 103153, 'ja', 'name', 'é¹æå…å³¶ēœŒč¾²ę„­é–‹ē™ŗē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(129669, 103154, 'en', 'name', 'JAIS'),
(129670, 103154, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é€šäæ”ę•™č‚²ęŒÆčˆˆå”ä¼š'),
(129671, 103155, 'en', 'name', 'Electro-Chemical and Cancer Institute'),
(129672, 103155, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ē å…‰ä¼šč“®č¦‹ē™Œē ”ē©¶ę‰€'),
(129673, 103156, 'en', 'name', 'Photovoltaic Power Generation Technology Research Association'),
(129674, 103156, 'ja', 'name', 'å¤Ŗé™½å…‰ē™ŗé›»ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(129675, 103157, 'en', 'name', 'The Japan Bird Research Association'),
(129676, 103157, 'ja', 'name', 'čŖå®šNPOę³•äŗŗćƒćƒ¼ćƒ‰ćƒŖć‚µćƒ¼ćƒ'),
(129677, 103158, 'en', 'name', 'Fukuoka Renal Clinic'),
(129678, 103158, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåŒ»åæƒä¼šē¦å²”č…Žč‡“å†…ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(129679, 103159, 'en', 'name', 'Kameda Daiichi Hospital'),
(129680, 103159, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę„›ä»ä¼šäŗ€ē”°ē¬¬äø€ē—…é™¢'),
(129681, 103160, 'en', 'name', 'Tanushimaru Central Hospital'),
(129682, 103160, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč–å³°ä¼šē”°äø»äøøäø­å¤®ē—…é™¢'),
(129683, 103161, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Perugia'),
(129684, 103161, 'en', 'name', 'National Institute for Nuclear Physics, Perugia Unit'),
(129685, 103162, 'en', 'name', 'Wikimedia Brasil'),
(129686, 103163, 'no_lang_code', 'name', 'Shiraume Gakuen University'),
(129687, 103163, 'ja', 'name', 'ē™½ę¢…å­¦åœ’å¤§å­¦'),
(129688, 103164, 'en', 'name', 'Center for Environmental Information Science'),
(129689, 103164, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē’°å¢ƒęƒ…å ±ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(129690, 103165, 'en', 'name', 'International Association of Privacy Professionals'),
(129691, 103166, 'en', 'name', 'Japan Library Association'),
(129692, 103166, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›³ę›øé¤Øå”ä¼š'),
(129693, 103167, 'en', 'name', 'New Technology Foundation'),
(129694, 103167, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ‹ćƒ„ćƒ¼ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ęŒÆčˆˆč²”å›£'),
(129695, 103168, 'pt', 'name', 'Hospital de Santo AndrƩ'),
(129696, 103169, 'en', 'name', 'Japan Medical Imaging and Radiological Systems Industries Association'),
(129697, 103169, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”»åƒåŒ»ē™‚ć‚·ć‚¹ćƒ†ćƒ å·„ę„­ä¼š'),
(129698, 103170, 'en', 'name', 'Yokosuka City Hospital'),
(129699, 103170, 'ja', 'name', 'ęØŖé ˆč³€åø‚ē«‹åø‚ę°‘ē—…é™¢'),
(129700, 103171, 'fr', 'name', 'Centre hospitalier affiliƩ universitaire de QuƩbec'),
(129701, 103172, 'en', 'name', 'Fuji City General Hospital'),
(129702, 103172, 'ja', 'name', 'åÆŒå£«åø‚ē«‹äø­å¤®ē—…é™¢'),
(129703, 103173, 'en', 'name', 'University of Crete'),
(129704, 103173, 'fr', 'name', 'Université de crète'),
(129705, 103173, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĪ®Ļ„Ī·Ļ‚'),
(129706, 103174, 'en', 'name', 'Japan Public Health Association'),
(129707, 103174, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å…¬č”†č”›ē”Ÿå”ä¼š'),
(129708, 103175, 'en', 'name', 'Al-Qalam University for Humanities and Applied Sciences'),
(129709, 103175, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القلم Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ł†Ų³Ų§Ł†ŁŠŲ© ŁˆŲ§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(129710, 103176, 'en', 'name', 'Japan Hydrographic Association'),
(129711, 103176, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę°“č·Æå”ä¼š'),
(129712, 103177, 'en', 'name', 'Okayama College'),
(129713, 103177, 'ja', 'name', '岔山短期大学'),
(129714, 103178, 'en', 'name', 'Japan Textile Products Quality and Technology Center'),
(129715, 103178, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē¹Šē¶­č£½å“å“č³ŖęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129716, 103179, 'en', 'name', 'Nagoya Industries Promotion Corporation'),
(129717, 103179, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹ē”£ę„­ęŒÆčˆˆå…¬ē¤¾'),
(129718, 103180, 'en', 'name', 'Fukushima Prefectual Center for Environmental Creation'),
(129719, 103180, 'ja', 'name', 'ē¦å³¶ēœŒē’°å¢ƒå‰µé€ ć‚»ćƒ³ć‚æćƒ¼'),
(129720, 103181, 'en', 'name', 'Kato Ladies Clinic'),
(129721, 103181, 'ja', 'name', 'åŠ č—¤ćƒ¬ćƒ‡ć‚£ć‚¹ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(129722, 103182, 'en', 'name', 'Matsuyama Shinonome Junior College'),
(129723, 103182, 'ja', 'name', 'ę¾å±±ę±é›²ēŸ­ęœŸå¤§å­¦'),
(129724, 103183, 'en', 'name', 'Policy Research Institute, Ministry of Finance'),
(129725, 103183, 'ja', 'name', 'č²”å‹™ēœč²”å‹™ē·åˆę”æē­–ē ”ē©¶ę‰€'),
(129726, 103184, 'en', 'name', 'The Nakamura Hajime Eastern Institute'),
(129727, 103184, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­ę‘å…ƒę±ę–¹ē ”ē©¶ę‰€'),
(129728, 103185, 'it', 'name', 'Politecnico di Milano'),
(129729, 103185, 'en', 'name', 'Polytechnic University of Milan'),
(129730, 103185, 'fr', 'name', 'Ɖcole Polytechnique de Milan'),
(129731, 103186, 'en', 'name', 'Infrastructure Development INSTITUTE-JAPAN'),
(129732, 103186, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›å»ŗčØ­ęŠ€č”“å”ä¼š'),
(129733, 103187, 'en', 'name', 'Miyazaki Prefecture Foods Development Center'),
(129734, 103187, 'ja', 'name', 'å®®å“ŽēœŒé£Ÿå“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(129735, 103188, 'en', 'name', 'Tochigi Prefecture Kenou Animal Hygiene Service Center Of Tochigi'),
(129736, 103188, 'ja', 'name', 'ę ƒęœØēœŒēœŒå¤®å®¶ē•œäæå„č”›ē”Ÿę‰€'),
(129737, 103189, 'en', 'name', 'Yamaguchi Prefectural Agriculture and Forestry General Technology Center'),
(129738, 103189, 'ja', 'name', 'å±±å£ēœŒč¾²ęž—ē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129739, 103190, 'en', 'name', 'Japan Educational Research Institute'),
(129740, 103190, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę•™č‚²čŖæęŸ»ē ”ē©¶ę‰€'),
(129741, 103191, 'en', 'name', 'Gamagori City Hospital'),
(129742, 103191, 'ja', 'name', 'č’²éƒ”åø‚ę°‘ē—…é™¢'),
(129743, 103192, 'en', 'name', 'Japan Network Information Center'),
(129744, 103192, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æć‚¤ćƒ³ćƒ•ć‚©ćƒ”ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(129745, 103193, 'en', 'name', 'Kyoto Prefectural Agriculture, Forestry and Fisheries Technology Center'),
(129746, 103193, 'ja', 'name', 'äŗ¬éƒ½åŗœč¾²ęž—ę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129747, 103194, 'en', 'name', 'Japan Accreditation Board'),
(129748, 103194, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é©åˆę€§čŖå®šå”ä¼š'),
(129749, 103195, 'en', 'name', 'The Energy Conservation Center, Japan'),
(129750, 103195, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗēœć‚Øćƒćƒ«ć‚®ćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(129751, 103196, 'en', 'name', 'Ishikawa Prefectural Government'),
(129752, 103196, 'ja', 'name', 'ēŸ³å·ēœŒåŗ'),
(129753, 103197, 'en', 'name', 'Saga Fruit Research Laboratory'),
(129754, 103197, 'ja', 'name', 'ä½č³€ēœŒęžœęØ¹č©¦éØ“å “'),
(129755, 103198, 'en', 'name', 'Japan Building Management Institute'),
(129756, 103198, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ“ćƒ«ćƒ‚ćƒ³ć‚°ēµŒå–¶ć‚»ćƒ³ć‚æćƒ¼'),
(129757, 103199, 'en', 'name', 'Japan Health & Research Institute'),
(129758, 103199, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·é–‹ē™ŗč²”å›£'),
(129759, 103200, 'en', 'name', 'Kaizuka City Hospital'),
(129760, 103200, 'ja', 'name', 'åø‚ē«‹č²å”šē—…é™¢'),
(129761, 103201, 'en', 'name', 'Nagasaki Rehabilitation'),
(129762, 103201, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę˜ÆēœŸä¼šé•·å“ŽćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(129763, 103202, 'en', 'name', 'Japanese Organisation for Research and Treatment of Cancer'),
(129764, 103202, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗJORTC'),
(129765, 103203, 'en', 'name', 'Shingu Municipal Medical Center'),
(129766, 103203, 'ja', 'name', 'ę–°å®®åø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(129767, 103204, 'en', 'name', 'Japan Society for the Promotion of Machine Industry'),
(129768, 103204, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę©Ÿę¢°ęŒÆčˆˆå”ä¼š'),
(129769, 103205, 'en', 'name', 'Hiroshima Community Research Center'),
(129770, 103205, 'ja', 'name', 'č²”å›£ę³•äŗŗåŗƒå³¶åœ°åŸŸē¤¾ä¼šē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129771, 103206, 'en', 'name', 'Hyogo Environmental Advancement Association'),
(129772, 103206, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć²ć‚‡ć†ć”ē’°å¢ƒå‰µé€ å”ä¼š'),
(129773, 103207, 'en', 'name', 'The Institute of Cetacean Research'),
(129774, 103207, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬éÆØé”žē ”ē©¶ę‰€'),
(129775, 103208, 'en', 'name', 'Fukuoka Sanno Hospital'),
(129776, 103208, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£é«˜é‚¦ä¼šē¦å²”å±±ēŽ‹ē—…é™¢'),
(129777, 103209, 'en', 'name', 'Japan Council for Quality Health Care'),
(129778, 103209, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åŒ»ē™‚ę©Ÿčƒ½č©•ä¾”ę©Ÿę§‹'),
(129779, 103210, 'en', 'name', 'Kagoshima Prefectural Forestry Technology Center'),
(129780, 103210, 'ja', 'name', 'é¹æå…å³¶ēœŒę£®ęž—ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(129781, 103211, 'en', 'name', 'Tokushima Agriculture, Forestry and Fisheries Technology Support Center'),
(129782, 103211, 'ja', 'name', 'å¾³å³¶ēœŒē«‹č¾²ęž—ę°“ē”£ē·åˆęŠ€č”“ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(129783, 103212, 'en', 'name', 'Nozaki Hospital'),
(129784, 103212, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¼˜ę½¤ä¼šé‡Žå“Žē—…é™¢'),
(129785, 103213, 'fr', 'name', 'Fondation Maison franco-japonaise'),
(129786, 103213, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ä»ä¼šé¤Ø'),
(129787, 103214, 'en', 'name', 'Katsuragi Hospital'),
(129788, 103214, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¤§ę¤ä¼šč‘›åŸŽē—…é™¢'),
(129789, 103215, 'en', 'name', 'Carnegie Institution for Science'),
(129790, 103216, 'en', 'name', 'Yokohama Brain and Spine Center'),
(129791, 103216, 'ja', 'name', 'ęØŖęµœåø‚ē«‹č„³å’äø­ćƒ»ē„žēµŒč„Šę¤Žć‚»ćƒ³ć‚æćƒ¼'),
(129792, 103217, 'en', 'name', 'Mie Prefecture Livestock Research Institute'),
(129793, 103217, 'ja', 'name', 'äø‰é‡ēœŒē•œē”£ē ”ē©¶ę‰€'),
(129794, 103218, 'en', 'name', 'Kumamoto Kinoh Hospital'),
(129795, 103218, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£åÆæé‡ä¼šē†Šęœ¬ę©Ÿčƒ½ē—…é™¢'),
(129796, 103219, 'en', 'name', 'Chutoen General Medical Center'),
(129797, 103219, 'ja', 'name', 'ęŽ›å·åø‚ćƒ»č¢‹äŗ•åø‚ē—…é™¢ä¼ę„­å›£ē«‹äø­ę±é ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(129798, 103220, 'en', 'name', 'International Society for Mangrove Ecosystems'),
(129799, 103220, 'ja', 'name', 'ē‰¹åˆ„éžå–¶åˆ©ę“»å‹•ę³•äŗŗå›½éš›ćƒžćƒ³ć‚°ćƒ­ćƒ¼ćƒ–ē”Ÿę…‹ē³»å”ä¼š'),
(129800, 103221, 'en', 'name', 'The Japan Society of Hepatology'),
(129801, 103221, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‚č‡“å­¦ä¼š'),
(129802, 103222, 'en', 'name', 'Radiation Effects Association'),
(129803, 103222, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę”¾å°„ē·šå½±éŸæå”ä¼š'),
(129804, 103223, 'es', 'name', 'Instituto Tecnológico de Agua Prieta'),
(129805, 103224, 'en', 'name', 'Miyazaki Prefecture Industrial Technology Center'),
(129806, 103224, 'ja', 'name', 'å®®å“ŽēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129807, 103225, 'en', 'name', 'Research Centre in Digitalization and Intelligent Robotics'),
(129808, 103226, 'en', 'name', 'Japanese Society of Oral Implantology'),
(129809, 103226, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å£č…”ć‚¤ćƒ³ćƒ—ćƒ©ćƒ³ćƒˆå­¦ä¼š'),
(129810, 103227, 'en', 'name', 'Ibaraki Fisheries Research Institute'),
(129811, 103227, 'ja', 'name', 'čŒØåŸŽēœŒę°“ē”£č©¦éØ“å “'),
(129812, 103228, 'en', 'name', 'Saitamaken Chagyo Research Institute'),
(129813, 103228, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒčŒ¶ę„­ē ”ē©¶ę‰€'),
(129814, 103229, 'en', 'name', 'Sapporo City Institute of Public Health'),
(129815, 103229, 'ja', 'name', 'ęœ­å¹Œåø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(129816, 103230, 'en', 'name', 'Yamagata Prefectural Forest Research and Instruction Center'),
(129817, 103230, 'ja', 'name', 'å±±å½¢ēœŒę£®ęž—ē ”ē©¶ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼');
INSERT INTO `ror_settings` VALUES
(129818, 103231, 'en', 'name', 'Aichi University of Technology Automotive Junior College'),
(129819, 103231, 'ja', 'name', 'ę„›ēŸ„å·„ē§‘å¤§å­¦č‡Ŗå‹•č»ŠēŸ­ęœŸå¤§å­¦'),
(129820, 103232, 'en', 'name', 'Hoa Binh University'),
(129821, 103232, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c HoĆ  BƬnh'),
(129822, 103233, 'en', 'name', 'Sakurakai Takahashi Hospital'),
(129823, 103233, 'ja', 'name', 'åŒ»ē™‚ē¤¾å›£ę³•äŗŗć•ćć‚‰ä¼šé«˜ę©‹ē—…é™¢'),
(129824, 103234, 'en', 'name', 'Hokkaido Medical Center for Child Health and Rehabilitation'),
(129825, 103234, 'ja', 'name', 'åŒ—ęµ·é“ē«‹å­ć©ć‚‚ē·åˆåŒ»ē™‚ćƒ»ē™‚č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(129826, 103235, 'en', 'name', 'Foundation for Ambulance Service Development'),
(129827, 103235, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę•‘ę€„ęŒÆčˆˆč²”å›£'),
(129828, 103236, 'en', 'name', 'Japan Foundry Engineering Society'),
(129829, 103236, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é‹³é€ å·„å­¦ä¼š'),
(129830, 103237, 'en', 'name', 'Sekizen Hospital'),
(129831, 103237, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę±ŸåŽŸē©å–„ä¼šē©å–„ē—…é™¢'),
(129832, 103238, 'en', 'name', 'Steel Memorial Muroran Hospital'),
(129833, 103238, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč£½é‰„čØ˜åæµå®¤č˜­ē—…é™¢'),
(129834, 103239, 'en', 'name', 'The Institute of Medical Science, Asahi Life Foundation'),
(129835, 103239, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęœę—„ē”Ÿå‘½ęˆäŗŗē—…ē ”ē©¶ę‰€ 附属医院'),
(129836, 103240, 'en', 'name', 'Civil Engineering Research Laboratory'),
(129837, 103240, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ęŠ€č”“ē ”ē©¶ę‰€'),
(129838, 103241, 'en', 'name', 'Carnegie Department of Plant Biology'),
(129839, 103242, 'en', 'name', 'Soseikai General Hospital'),
(129840, 103242, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£č˜‡ē”Ÿä¼šč˜‡ē”Ÿä¼šē·åˆē—…é™¢'),
(129841, 103243, 'en', 'name', 'Institute of Radiation Measurements'),
(129842, 103243, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę”¾å°„ē·ščØˆęø¬å”ä¼š'),
(129843, 103244, 'en', 'name', 'Okinawa Prefectural Livestock and Grassland Research Center'),
(129844, 103244, 'ja', 'name', 'ę²–ēø„ēœŒē•œē”£ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129845, 103245, 'en', 'name', 'Nishinomiya Watanabe Cardiovascular Center'),
(129846, 103245, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęø”é‚Šé«˜čØ˜åæµä¼šč„æå®®ęø”č¾ŗåæƒč‡“ćƒ»č”€ē®”ć‚»ćƒ³ć‚æćƒ¼'),
(129847, 103246, 'en', 'name', 'Japan Management Association'),
(129848, 103246, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čƒ½ēŽ‡å”ä¼š'),
(129849, 103247, 'en', 'name', 'Amagasaki Chuo Hospital'),
(129850, 103247, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗäø­å¤®ä¼šå°¼å“Žäø­å¤®ē—…é™¢'),
(129851, 103248, 'en', 'name', 'Todachuo General Hospital'),
(129852, 103248, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę±å…‰ä¼šęˆøē”°äø­å¤®ē·åˆē—…é™¢'),
(129853, 103249, 'en', 'name', 'Koriyama Women''s College'),
(129854, 103249, 'ja', 'name', '郔山儳子大学短期大学部'),
(129855, 103250, 'en', 'name', 'Osaka Gakuin Junior College'),
(129856, 103250, 'ja', 'name', 'å¤§é˜Ŗå­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129857, 103251, 'en', 'name', 'Social Sports Center'),
(129858, 103251, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē¤¾ä¼šć‚¹ćƒćƒ¼ćƒ„ć‚»ćƒ³ć‚æćƒ¼'),
(129859, 103252, 'en', 'name', 'Asian Health Institute'),
(129860, 103252, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚øć‚¢äæå„ē ”äæ®ę‰€'),
(129861, 103253, 'en', 'name', 'Akita Fruit-Tree Experiment Station'),
(129862, 103253, 'ja', 'name', 'ē§‹ē”°ēœŒęžœęØ¹č©¦éØ“å “'),
(129863, 103254, 'en', 'name', 'Gunma Prefectural Forestry Experiment Station'),
(129864, 103254, 'ja', 'name', 'ē¾¤é¦¬ēœŒęž—ę„­č©¦éØ“å “'),
(129865, 103255, 'en', 'name', 'Ogaki Tokushukai Hospital'),
(129866, 103255, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šå¤§åž£å¾³ę“²ä¼šē—…é™¢'),
(129867, 103256, 'en', 'name', 'IUCN Commission on Ecosystem Management'),
(129868, 103257, 'en', 'name', 'Mimasaka Junior College'),
(129869, 103257, 'ja', 'name', 'ē¾Žä½œå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129870, 103258, 'en', 'name', 'Research Institute of Urbanization'),
(129871, 103258, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚åŒ–ē ”ē©¶å…¬å®¤'),
(129872, 103259, 'en', 'name', 'Utsunomiya Junior College'),
(129873, 103259, 'ja', 'name', 'å®‡éƒ½å®®ēŸ­ęœŸå¤§å­¦'),
(129874, 103260, 'en', 'name', 'KKR Sapporo Medical Center'),
(129875, 103260, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šęœ­å¹ŒåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(129876, 103261, 'en', 'name', 'Aino Hospital'),
(129877, 103261, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę’ę˜­ä¼šč—é‡Žē—…é™¢'),
(129878, 103262, 'en', 'name', 'YAO Municipal Hospital'),
(129879, 103262, 'ja', 'name', '八尾市立病院'),
(129880, 103263, 'en', 'name', 'Mie Prefecture Health and Environment Research Institute'),
(129881, 103263, 'ja', 'name', 'äø‰é‡ēœŒäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(129882, 103264, 'fr', 'name', 'Centre de recherche Charles-Le Moyne'),
(129883, 103265, 'en', 'name', 'THE Japan Welding Technology Center'),
(129884, 103265, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęŗ¶ęŽ„ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(129885, 103266, 'en', 'name', 'Reconstruction Agency'),
(129886, 103266, 'ja', 'name', '復興庁'),
(129887, 103267, 'en', 'name', 'Centre for Innovative Biomedicine and Biotechnology'),
(129888, 103267, 'pt', 'name', 'Centro de Inovação em Biomedicina e Biotecnologia'),
(129889, 103268, 'en', 'name', 'Kostanay Socio-Technical University named after academician Z. Aldamzhar'),
(129890, 103268, 'kk', 'name', 'АкаГемик Š—. АлГамжар атынГағы ŅšŠ¾ŃŃ‚Š°Š½Š°Š¹ Ó™Š»ŠµŃƒŠ¼ŠµŃ‚Ń‚Ń–Šŗ-техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(129891, 103268, 'ru', 'name', 'ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š—.АлГамжар'),
(129892, 103269, 'en', 'name', 'Mutsu General Hospital'),
(129893, 103269, 'ja', 'name', 'ć‚€ć¤ē·åˆē—…é™¢'),
(129894, 103270, 'en', 'name', 'Tomakomai City Hospital'),
(129895, 103270, 'ja', 'name', 'č‹«å°ē‰§åø‚ē«‹ē—…é™¢'),
(129896, 103271, 'en', 'name', 'Kobe Tokiwa Junior College'),
(129897, 103271, 'ja', 'name', 'ē„žęˆøåøøē›¤å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129898, 103272, 'en', 'name', 'The Tokyo Foundation for Policy Research'),
(129899, 103272, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬č²”å›£ę”æē­–ē ”ē©¶ę‰€'),
(129900, 103273, 'en', 'name', 'Omuta Tenryo Hospital'),
(129901, 103273, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē¦å²”ēœŒē¤¾ä¼šäæé™ŗåŒ»ē™‚å”ä¼šē¤¾ä¼šäæé™ŗå¤§ē‰Ÿē”°å¤©é ˜ē—…é™¢'),
(129902, 103274, 'en', 'name', 'Japan Welding Society'),
(129903, 103274, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęŗ¶ęŽ„å­¦ä¼š'),
(129904, 103275, 'en', 'name', 'Kawasaki Environment Research Institute'),
(129905, 103275, 'ja', 'name', 'å·å“Žåø‚ē’°å¢ƒē·åˆē ”ē©¶ę‰€'),
(129906, 103276, 'en', 'name', 'Nanbu Child Medical Center'),
(129907, 103276, 'ja', 'name', 'ę²–ēø„ēœŒē«‹å—éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ćƒ»ć“ć©ć‚‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(129908, 103277, 'en', 'name', 'The Japanese Society of Hematology'),
(129909, 103277, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č”€ę¶²å­¦ä¼š'),
(129910, 103278, 'en', 'name', 'Sanno Hospital'),
(129911, 103278, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗēæ ę˜Žä¼šå±±ēŽ‹ē—…é™¢'),
(129912, 103279, 'en', 'name', 'Kyoaikai Hospital'),
(129913, 103279, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗå‡½é¤Øå…±ę„›ä¼šå…±ę„›ä¼šē—…é™¢'),
(129914, 103280, 'en', 'name', 'Nishina Memorial Foundation'),
(129915, 103280, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä»ē§‘čØ˜åæµč²”å›£'),
(129916, 103281, 'en', 'name', 'Nagasaki City Medical Association'),
(129917, 103281, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé•·å“Žåø‚åŒ»åø«ä¼š'),
(129918, 103282, 'en', 'name', 'The Medical and Pharmacological Research Center Foundation'),
(129919, 103282, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…ˆē«ÆåŒ»å­¦č–¬å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(129920, 103283, 'en', 'name', 'Kagawa Prefectural Government'),
(129921, 103283, 'ja', 'name', 'é¦™å·ēœŒåŗ'),
(129922, 103284, 'en', 'name', 'Navitas Clinic'),
(129923, 103284, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£é‰„åŒ»ä¼šćƒŠćƒ“ć‚æć‚¹ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(129924, 103285, 'en', 'name', 'Niigata Prefectural Forest Experiment Station'),
(129925, 103285, 'ja', 'name', 'ę–°ę½ŸēœŒę£®ęž—ē ”ē©¶ę‰€'),
(129926, 103286, 'en', 'name', 'Ibaraki Medical Association'),
(129927, 103286, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗčŒØåŸŽēœŒåŒ»åø«ä¼š'),
(129928, 103287, 'en', 'name', 'Kobe College of Education'),
(129929, 103287, 'ja', 'name', 'ē„žęˆøę•™č‚²ēŸ­ęœŸå¤§å­¦'),
(129930, 103288, 'en', 'name', 'The Japan Institute of Metals and Materials'),
(129931, 103288, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é‡‘å±žå­¦ä¼š'),
(129932, 103289, 'en', 'name', 'Soka Women''s College'),
(129933, 103289, 'ja', 'name', 'å‰µä¾”å„³å­ēŸ­ęœŸå¤§å­¦'),
(129934, 103290, 'en', 'name', 'Japan Packaging Institute'),
(129935, 103290, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ…č£…ęŠ€č”“å”ä¼š'),
(129936, 103291, 'en', 'name', 'The Institute of Professional Engineers, Japan'),
(129937, 103291, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęŠ€č”“å£«ä¼š'),
(129938, 103292, 'en', 'name', 'Wakayama Prefectural Fisheries Experiment Station'),
(129939, 103292, 'ja', 'name', 'å’Œę­Œå±±ēœŒę°“ē”£č©¦éØ“å “'),
(129940, 103293, 'en', 'name', 'Narimasu Kosei Hospital'),
(129941, 103293, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ēæ ä¼šęˆå¢—åŽšē”Ÿē—…é™¢'),
(129942, 103294, 'en', 'name', 'American Library Association'),
(129943, 103295, 'en', 'name', 'South Miyagi Medical Center'),
(129944, 103295, 'ja', 'name', 'ćæć‚„ćŽēœŒå—äø­ę øē—…é™¢'),
(129945, 103296, 'en', 'name', 'Asahikawa Medical Association'),
(129946, 103296, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—­å·åø‚åŒ»åø«ä¼š'),
(129947, 103297, 'es', 'name', 'Asociación Colombiana de Ciencias Biológicas'),
(129948, 103298, 'en', 'name', 'Osaka Police Hospital'),
(129949, 103298, 'ja', 'name', 'å¤§é˜Ŗć‘ć„ć•ć¤ē—…é™¢'),
(129950, 103299, 'en', 'name', 'Hosogi Hospital'),
(129951, 103299, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗä»ē”Ÿä¼šē“°ęœØē—…é™¢'),
(129952, 103300, 'en', 'name', 'National Medical Library'),
(129953, 103300, 'cs', 'name', 'NĆ”rodnĆ­ LĆ©kařskĆ” Knihovna'),
(129954, 103301, 'en', 'name', 'Japan Guide Dog Association'),
(129955, 103301, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē›²å°ŽēŠ¬å”ä¼š'),
(129956, 103302, 'en', 'name', 'Sanno Hospital'),
(129957, 103302, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£é †å’Œä¼šå±±ēŽ‹ē—…é™¢'),
(129958, 103303, 'en', 'name', 'INA Central Hospital'),
(129959, 103303, 'ja', 'name', 'ä¼Šé‚£äø­å¤®ē—…é™¢'),
(129960, 103304, 'en', 'name', 'Nepal College of Management'),
(129961, 103305, 'en', 'name', 'International College of Technology, Kanazawa'),
(129962, 103305, 'ja', 'name', 'å›½éš›é«˜ē­‰å°‚é–€å­¦ę ”'),
(129963, 103306, 'en', 'name', 'Akitsu Kounoike Hospital'),
(129964, 103306, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗé“»ę± ä¼šē§‹ę“„é“»ę± ē—…é™¢'),
(129965, 103307, 'en', 'name', 'The University of Shimane Junior College'),
(129966, 103307, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(129967, 103308, 'en', 'name', 'Fukuoka Agriculture and Forestry Research Center'),
(129968, 103308, 'ja', 'name', 'ē¦å²”ēœŒč¾²ęž—ę„­ē·åˆč©¦éØ“å “'),
(129969, 103309, 'en', 'name', 'Nissenken Quality Evaluation Center'),
(129970, 103309, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ‹ćƒƒć‚»ćƒ³ć‚±ćƒ³å“č³Ŗč©•ä¾”ć‚»ćƒ³ć‚æćƒ¼'),
(129971, 103310, 'en', 'name', 'Nagano Prefectural Institute of Technology'),
(129972, 103310, 'ja', 'name', 'é•·é‡ŽēœŒå·„ē§‘ēŸ­ęœŸå¤§å­¦ę ”'),
(129973, 103311, 'en', 'name', 'Nagano Nanshin Agricultural Experiment Station'),
(129974, 103311, 'ja', 'name', 'é•·é‡ŽēœŒå—äæ”č¾²ę„­č©¦éØ“å “'),
(129975, 103312, 'en', 'name', 'Akita Kousei Medical Center'),
(129976, 103312, 'ja', 'name', 'JAē§‹ē”°åŽšē”Ÿé€£ē§‹ē”°åŽšē”ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(129977, 103313, 'en', 'name', 'Tokyo Nursing Association'),
(129978, 103313, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½ēœ‹č­·å”ä¼š'),
(129979, 103314, 'en', 'name', 'Fukushima Prefectural Environmental Center'),
(129980, 103314, 'ja', 'name', 'ē¦å³¶ēœŒē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(129981, 103315, 'ja', 'name', 'JAē§‹ē”°åŽšē”Ÿé€£é›„å‹äø­å¤®ē—…é™¢'),
(129982, 103315, 'en', 'name', 'Ogachi Central Hospital'),
(129983, 103316, 'en', 'name', 'Nissho'),
(129984, 103316, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę¶ˆé˜²å”ä¼š'),
(129985, 103317, 'fr', 'name', 'Bien-ĆŖtre, Organisations, NumĆ©rique, HabitabilitĆ©, Ɖducation, UniversalitĆ©, Relations, Savoirs - BONHEURS'),
(129986, 103317, 'en', 'name', 'Well-being, Organizations, Digital, Habitability, Education, Universality, Relations, Knowledge'),
(129987, 103318, 'en', 'name', 'Tottori Swine & Poultry Experiment Station'),
(129988, 103318, 'ja', 'name', 'é³„å–ēœŒäø­å°å®¶ē•œč©¦éØ“å “'),
(129989, 103319, 'en', 'name', 'Hata Kenmin Hospital'),
(129990, 103319, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹å¹”å¤šć‘ć‚“ćæć‚“ē—…é™¢'),
(129991, 103320, 'en', 'name', 'King Mongkut''s University of Technology Thonburi'),
(129992, 103320, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ąø˜ąø™ąøšąøøąø£ąøµ'),
(129993, 103321, 'en', 'name', 'Iwamizawa Asuka Hospital'),
(129994, 103321, 'ja', 'name', 'å²©č¦‹ę²¢ę˜Žę—„ä½³ē—…é™¢'),
(129995, 103322, 'de', 'name', 'Deutsche Gartenbauwissenschaftliche Gesellschaft e. V.'),
(129996, 103322, 'en', 'name', 'German Society for Horticultural Science'),
(129997, 103323, 'en', 'name', 'International Union for Conservation of Nature (Guinea-Bissau)'),
(129998, 103323, 'fr', 'name', 'Union Internationale Pour la Conservation de la Nature'),
(129999, 103324, 'en', 'name', 'Hirosaki Stroke and Rehabilitation Center'),
(130000, 103324, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé»Žę˜Žéƒ·å¼˜å‰č„³å’äø­ćƒ»ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(130001, 103325, 'en', 'name', 'Uonuma kikan Hospital'),
(130002, 103325, 'ja', 'name', 'ę–°ę½Ÿå¤§å­¦åœ°åŸŸåŒ»ē™‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼é­šę²¼åŸŗå¹¹ē—…é™¢'),
(130003, 103326, 'en', 'name', 'Humboldt International University'),
(130004, 103327, 'en', 'name', 'SUWA Central Hospital'),
(130005, 103327, 'ja', 'name', 'ēµ„åˆē«‹č«čØŖäø­å¤®ē—…é™¢'),
(130006, 103328, 'sv', 'name', 'Marie Cederschiƶld Hƶgskola'),
(130007, 103328, 'en', 'name', 'Marie Cederschiƶld University'),
(130008, 103329, 'en', 'name', 'Japan Building Materials Association'),
(130009, 103329, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ęę–™å”ä¼š'),
(130010, 103330, 'en', 'name', 'Shinseikai-Toyama Hospital'),
(130011, 103330, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗēœŸē”Ÿä¼šåÆŒå±±ē—…é™¢'),
(130012, 103331, 'en', 'name', 'Yamaha Music Foundation'),
(130013, 103331, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ¤ćƒžćƒéŸ³ę„½ęŒÆčˆˆä¼š'),
(130014, 103332, 'en', 'name', 'Ofuna Chuo Hospital'),
(130015, 103332, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£äŗ’ęµä¼šå¤§čˆ¹äø­å¤®ē—…é™¢'),
(130016, 103333, 'en', 'name', 'Kyoto Saga Art College'),
(130017, 103333, 'ja', 'name', 'åµÆå³Øē¾Žč”“ēŸ­ęœŸå¤§å­¦'),
(130018, 103334, 'en', 'name', 'The SKYLARK Food Science Institute'),
(130019, 103334, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć™ć‹ć„ć‚‰ćƒ¼ććƒ•ćƒ¼ćƒ‰ć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶ę‰€'),
(130020, 103335, 'fr', 'name', 'PrƩhistoire et Technologie'),
(130021, 103336, 'en', 'name', 'Japan Dairy Association'),
(130022, 103336, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗJćƒŸćƒ«ć‚Æ'),
(130023, 103337, 'en', 'name', 'University of Shizuoka Junior College'),
(130024, 103337, 'ja', 'name', 'é™å²”ēœŒē«‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(130025, 103338, 'en', 'name', 'Saga Livestock Research Laboratory'),
(130026, 103338, 'ja', 'name', 'ä½č³€ēœŒē•œē”£č©¦éØ“å “'),
(130027, 103339, 'en', 'name', 'IUCN Commission on Environmental, Economic and Social Policy'),
(130028, 103340, 'en', 'name', 'Saitama Medical Association'),
(130029, 103340, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒåŒ»åø«ä¼š'),
(130030, 103341, 'en', 'name', 'Public Tomioka General Hospital'),
(130031, 103341, 'ja', 'name', 'å…¬ē«‹åÆŒå²”ē·åˆē—…é™¢'),
(130032, 103342, 'en', 'name', 'The Japan Diabetes Society'),
(130033, 103342, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē³–å°æē—…å­¦ä¼š'),
(130034, 103343, 'fr', 'name', 'HƓtel-Dieu de QuƩbec'),
(130035, 103344, 'en', 'name', 'New Glass Forum'),
(130036, 103344, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ‹ćƒ„ćƒ¼ć‚¬ćƒ©ć‚¹ćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(130037, 103345, 'en', 'name', 'The Nigerian Baptist Theological Seminary'),
(130038, 103346, 'en', 'name', 'Kitasato Research Center of Environmental Sciences'),
(130039, 103346, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—é‡Œē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(130040, 103347, 'en', 'name', 'Center for Better Living'),
(130041, 103347, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ™ć‚æćƒ¼ćƒŖćƒ“ćƒ³ć‚°'),
(130042, 103348, 'en', 'name', 'Industrial Technology Center of Nagasaki'),
(130043, 103348, 'ja', 'name', 'é•·å“ŽēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(130044, 103349, 'en', 'name', 'Kyoto Yamashiro General Medical Center'),
(130045, 103349, 'ja', 'name', 'äŗ¬éƒ½å±±åŸŽē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(130046, 103350, 'en', 'name', 'Nanbu Tokushukai Hospital'),
(130047, 103350, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šå—éƒØå¾³ę“²ä¼šē—…é™¢'),
(130048, 103351, 'ja', 'name', 'JAę–°ę½ŸåŽšē”Ÿé€£é•·å²”äø­å¤®ē¶œåˆē—…é™¢'),
(130049, 103351, 'en', 'name', 'Nagaoka Chuo General hospital'),
(130050, 103352, 'en', 'name', 'Laboratories of Image Information Science and Technology'),
(130051, 103352, 'ja', 'name', 'č²”å›£ę³•äŗŗć‚¤ćƒ”ćƒ¼ć‚øęƒ…å ±ē§‘å­¦ē ”ē©¶ę‰€'),
(130052, 103353, 'en', 'name', 'Seikei-kai Chiba Medical Center'),
(130053, 103353, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é¦Øä¼šåƒč‘‰ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(130054, 103354, 'en', 'name', 'Policy Research Institute, Ministry of Agriculture, Forestry and Fisheries'),
(130055, 103354, 'ja', 'name', 'č¾²ęž—ę°“ē”£ēœč¾²ęž—ę°“ē”£ę”æē­–ē ”ē©¶ę‰€'),
(130056, 103355, 'en', 'name', 'Senzoku Junior College of Childhood Education'),
(130057, 103355, 'ja', 'name', 'ę“—č¶³ć“ć©ć‚‚ēŸ­ęœŸå¤§å­¦'),
(130058, 103356, 'en', 'name', 'Nara Kasuga Hospital'),
(130059, 103356, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗę–°ä»ä¼šå„ˆč‰Æę˜„ę—„ē—…é™¢'),
(130060, 103357, 'en', 'name', 'Ohara General Hospital'),
(130061, 103357, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¤§åŽŸē¶œåˆē—…é™¢'),
(130062, 103358, 'en', 'name', 'General Hospital Uzice'),
(130063, 103358, 'sr', 'name', 'ЗГравствени центар Ужице'),
(130064, 103359, 'en', 'name', 'Gunma Livestock Health Laboratory'),
(130065, 103359, 'ja', 'name', 'ē¾¤é¦¬ēœŒå®¶ē•œč”›ē”Ÿē ”ē©¶ę‰€'),
(130066, 103360, 'en', 'name', 'Saitama Prefectural Hospital Organization'),
(130067, 103360, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŸ¼ēŽ‰ēœŒē«‹ē—…é™¢ę©Ÿę§‹'),
(130068, 103361, 'es', 'name', 'Hospital Universitario de Jerez'),
(130069, 103362, 'en', 'name', 'Research Institute for High-Life'),
(130070, 103362, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒć‚¤ćƒ©ć‚¤ćƒ•ē ”ē©¶ę‰€'),
(130071, 103363, 'es', 'name', 'Instituto Nacional de Innovación Agraria'),
(130072, 103363, 'en', 'name', 'National Institute of Agrarian Innovation'),
(130073, 103364, 'en', 'name', 'Japan Industrial Association'),
(130074, 103364, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē”£ę„­å”ä¼š'),
(130075, 103365, 'en', 'name', 'Japan Association for Techno-innovation in Agriculture, Forestry and Fisheries'),
(130076, 103365, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗč¾²ęž—ę°“ē”£ćƒ»é£Ÿå“ē”£ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(130077, 103366, 'en', 'name', 'Yamanashi Institute for Public Health and Environment'),
(130078, 103366, 'ja', 'name', 'å±±ę¢ØēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(130079, 103367, 'en', 'name', 'Chubu Gakuin Junior College'),
(130080, 103367, 'ja', 'name', 'äø­éƒØå­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(130081, 103368, 'pt', 'name', 'Centro de Investigação em Biodiversidade e Recursos Genéticos'),
(130082, 103369, 'en', 'name', 'Kagoshima Prefectural Institute of Industrial Technology'),
(130083, 103369, 'ja', 'name', 'é¹æå…å³¶ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(130084, 103370, 'en', 'name', 'Uekusa Gakuen Junior College'),
(130085, 103370, 'ja', 'name', 'ę¤č‰å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(130086, 103371, 'en', 'name', 'Kyushu Industrial Technology Center'),
(130087, 103371, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä¹å·žē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(130088, 103372, 'ja', 'name', 'JAē§‹ē”°åŽšē”Ÿé€£čƒ½ä»£åŽšē”ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(130089, 103372, 'en', 'name', 'Noshiro Kousei Medical Center'),
(130090, 103373, 'es', 'name', 'Universidad para el Bienestar Benito JuƔrez Garcƭa'),
(130091, 103374, 'en', 'name', 'Hakodate Municipal Hospital'),
(130092, 103374, 'ja', 'name', '市立函館病院'),
(130093, 103375, 'en', 'name', 'Nara Prefecture Agricultural Research and Development Center'),
(130094, 103375, 'ja', 'name', 'å„ˆč‰ÆēœŒč¾²ę„­ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(130095, 103376, 'en', 'name', 'S. C. Institute of Health Science and Research'),
(130096, 103376, 'ja', 'name', 'ć•ć„ćŸć¾åø‚å„åŗ·ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(130097, 103377, 'fr', 'name', 'Technologie et Ethnologie des Mondes PrƩhistoriqueS'),
(130098, 103378, 'en', 'name', 'Fukui Prefectural Sea Farming Center'),
(130099, 103378, 'ja', 'name', 'ē¦äŗ•ēœŒę ½åŸ¹ę¼ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(130100, 103379, 'en', 'name', 'Manufacturing Science and Technology Center'),
(130101, 103379, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč£½é€ ē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(130102, 103380, 'it', 'name', 'Politecnico di Bari'),
(130103, 103380, 'en', 'name', 'Polytechnic University of Bari'),
(130104, 103380, 'fr', 'name', 'Ɖcole Polytechnique de Bari'),
(130105, 103381, 'en', 'name', 'The Japan Society for Oriental Medicine'),
(130106, 103381, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę±ę“‹åŒ»å­¦ä¼š'),
(130107, 103382, 'en', 'name', 'Shizuoka Prefectural Government'),
(130108, 103382, 'ja', 'name', 'é™å²”ēœŒåŗ'),
(130109, 103383, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Genova'),
(130110, 103383, 'en', 'name', 'National Institute for Nuclear Physics, Genoa'),
(130111, 103384, 'en', 'name', 'Wakayama Prefectural Fruit Tree Experiment Station'),
(130112, 103384, 'ja', 'name', 'å’Œę­Œå±±ēœŒęžœęØ¹č©¦éØ“å “'),
(130113, 103385, 'en', 'name', 'Niigata Prefectural Police'),
(130114, 103385, 'ja', 'name', 'ę–°ę½ŸēœŒč­¦åÆŸ'),
(130115, 103386, 'en', 'name', 'National Institution for Academic Degrees and Quality Enhancement of Higher Education'),
(130116, 103386, 'ja', 'name', 'å¤§å­¦ę”¹é©ę”Æę“ćƒ»å­¦ä½ęŽˆäøŽę©Ÿę§‹'),
(130117, 103387, 'en', 'name', 'Miyazaki Livestock Research Institute'),
(130118, 103387, 'ja', 'name', 'å®®å“ŽēœŒē•œē”£č©¦éØ“å “'),
(130119, 103388, 'en', 'name', 'Japan Society of Obstetrics and Gynecology'),
(130120, 103388, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£ē§‘å©¦äŗŗē§‘å­¦ä¼š'),
(130121, 103389, 'en', 'name', 'Chrisland University'),
(130122, 103390, 'en', 'name', 'Iwate Industry Promotion Center'),
(130123, 103390, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć„ć‚ć¦ē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(130124, 103391, 'en', 'name', 'Shirahama Foundation for Health and Welfare'),
(130125, 103391, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē™½ęµœåŒ»ē™‚ē¦ē„‰č²”å›£'),
(130126, 103392, 'en', 'name', 'Japan Aging Research Center'),
(130127, 103392, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚Øć‚¤ć‚øćƒ³ć‚°ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(130128, 103393, 'en', 'name', 'Sapporo Medical Association'),
(130129, 103393, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęœ­å¹Œåø‚åŒ»åø«ä¼š'),
(130130, 103394, 'en', 'name', 'Hokkaido Aquaculture Promotion Corporation'),
(130131, 103394, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ę ½åŸ¹ę¼ę„­ęŒÆčˆˆå…¬ē¤¾'),
(130132, 103395, 'en', 'name', 'Japan Education Center of Environmental Sanitation'),
(130133, 103395, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒę•“å‚™ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(130134, 103396, 'en', 'name', 'Kochi Health Sciences Center'),
(130135, 103396, 'ja', 'name', 'é«˜ēŸ„ēœŒćƒ»é«˜ēŸ„åø‚ē—…é™¢ä¼ę„­å›£ē«‹é«˜ēŸ„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(130136, 103397, 'en', 'name', 'Japan Fisheries Information Service Center'),
(130137, 103397, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę¼ę„­ęƒ…å ±ć‚µćƒ¼ćƒ“ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(130138, 103398, 'en', 'name', 'Muroran City General Hospital'),
(130139, 103398, 'ja', 'name', 'åø‚ē«‹å®¤č˜­ē·åˆē—…é™¢'),
(130140, 103399, 'en', 'name', 'Osaka College of Music Junior College'),
(130141, 103399, 'ja', 'name', '大阪音愽大学短期大学部'),
(130142, 103400, 'en', 'name', 'Choshi Hospital'),
(130143, 103400, 'ja', 'name', 'éŠšå­åø‚ē«‹ē—…é™¢'),
(130144, 103401, 'en', 'name', 'Tobacco Institute of Japan'),
(130145, 103401, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćŸć°ć“å”ä¼š'),
(130146, 103402, 'en', 'name', 'Hiraoka Environmental Science Laboratory'),
(130147, 103402, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¹³å²”ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(130148, 103403, 'en', 'name', 'Japan Society of Plastic and Reconstructive Surgery'),
(130149, 103403, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å½¢ęˆå¤–ē§‘å­¦ä¼š'),
(130150, 103404, 'en', 'name', 'Tajimi City Pottery Design and Technical Center'),
(130151, 103404, 'ja', 'name', 'å¤šę²»č¦‹åø‚é™¶ē£å™Øę„åŒ ē ”ē©¶ę‰€'),
(130152, 103405, 'en', 'name', 'Kobe Institute of Health'),
(130153, 103405, 'ja', 'name', 'ē„žęˆøåø‚å„åŗ·ē§‘å­¦ē ”ē©¶ę‰€'),
(130154, 103406, 'en', 'name', 'Tokyo Information Design Professional University'),
(130155, 103406, 'ja', 'name', 'ę±äŗ¬ęƒ…å ±ćƒ‡ć‚¶ć‚¤ćƒ³å°‚é–€č·å¤§å­¦'),
(130156, 103407, 'en', 'name', 'Institute of Housing and Urban Technology'),
(130157, 103407, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä½å®…éƒ½åø‚å·„å­¦ē ”ē©¶ę‰€'),
(130158, 103408, 'ja', 'name', 'JAē¦å³¶åŽšē”Ÿé€£ē™½ę²³åŽšē”Ÿē·åˆē—…é™¢'),
(130159, 103408, 'en', 'name', 'Shirakawa Kosei General Hospital'),
(130160, 103409, 'en', 'name', 'Japan Scientific Feeds Association'),
(130161, 103409, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦é£¼ę–™å”ä¼š'),
(130162, 103410, 'en', 'name', 'Zimbabwe University Libraries Consortium'),
(130163, 103411, 'en', 'name', 'Fukui Food Processing Research Institute'),
(130164, 103411, 'ja', 'name', 'ē¦äŗ•ēœŒé£Ÿå“åŠ å·„ē ”ē©¶ę‰€'),
(130165, 103412, 'en', 'name', 'Chiba Children''s Hospital'),
(130166, 103412, 'ja', 'name', 'åƒč‘‰ēœŒć“ć©ć‚‚ē—…é™¢'),
(130167, 103413, 'en', 'name', 'The Society for Biotechnology, Japan'),
(130168, 103413, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”Ÿē‰©å·„å­¦ä¼š'),
(130169, 103414, 'en', 'name', 'Hasuda Hospital'),
(130170, 103414, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗé”•ę­£ä¼šč“®ē”°ē—…é™¢'),
(130171, 103415, 'en', 'name', 'Ochanomizu Institute for Medical Mycology and Allergology'),
(130172, 103415, 'ja', 'name', 'ćŠčŒ¶ć®ę°“ēœŸčŒć‚¢ćƒ¬ćƒ«ć‚®ćƒ¼ē ”ē©¶ę‰€'),
(130173, 103416, 'en', 'name', 'Tokyo Bay Urayasu Ichikawa Medical Center'),
(130174, 103416, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåœ°åŸŸåŒ»ē™‚ęŒÆčˆˆå”ä¼šę±äŗ¬ćƒ™ć‚¤ćƒ»ęµ¦å®‰åø‚å·åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(130175, 103417, 'en', 'name', 'Chiba Keizai College'),
(130176, 103417, 'ja', 'name', 'åƒč‘‰ēµŒęøˆå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(130177, 103418, 'en', 'name', 'Institute for Information and Communications Policy'),
(130178, 103418, 'ja', 'name', 'ē·å‹™ēœęƒ…å ±é€šäæ”ę”æē­–ē ”ē©¶ę‰€'),
(130179, 103419, 'en', 'name', 'Koto Memorial Hospital'),
(130180, 103419, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę˜“ä¼šę¹–ę±čØ˜åæµē—…é™¢'),
(130181, 103420, 'en', 'name', 'Shiga Prefecture Agricultural Technology Promotion Center'),
(130182, 103420, 'ja', 'name', 'ę»‹č³€ēœŒč¾²ę„­ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(130183, 103421, 'en', 'name', 'The Japan Research Institute for Local Government'),
(130184, 103421, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåœ°ę–¹č‡Ŗę²»ē·åˆē ”ē©¶ę‰€'),
(130185, 103422, 'en', 'name', 'Research Institute for Environmental Development'),
(130186, 103422, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē’°å¢ƒę–‡åŒ–ē ”ē©¶ę‰€'),
(130187, 103423, 'en', 'name', 'Soka University'),
(130188, 103423, 'ja', 'name', '創侔大学'),
(130189, 103424, 'en', 'name', 'Okayama Prefectural Technology Center for Agriculture, Forestry and Fisheries'),
(130190, 103424, 'ja', 'name', 'å²”å±±ēœŒč¾²ęž—ę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(130191, 103425, 'en', 'name', 'Hokkaido Club'),
(130192, 103425, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“å€¶ę„½éƒØ'),
(130193, 103426, 'de', 'name', 'Institut für Biotechnologie und Wirkstoff-Forschung'),
(130194, 103426, 'en', 'name', 'Institute of Biotechnology and Drug Research'),
(130195, 103427, 'en', 'name', 'Zimbabwe National Defence University'),
(130196, 103428, 'en', 'name', 'Kyorin University Suginami Hospital'),
(130197, 103428, 'ja', 'name', 'ęęž—å¤§å­¦åŒ»å­¦éƒØä»˜å±žę‰äø¦ē—…é™¢'),
(130198, 103429, 'en', 'name', 'Radioactive Waste Management Funding and Research Center'),
(130199, 103429, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›ē’°å¢ƒę•“å‚™äæƒé€²ćƒ»č³‡é‡‘ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(130200, 103430, 'en', 'name', 'Japan Gas Association'),
(130201, 103430, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¬ć‚¹å”ä¼š'),
(130202, 103431, 'en', 'name', 'Kyushu Environmental Evaluation Association'),
(130203, 103431, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä¹å·žē’°å¢ƒē®”ē†å”ä¼š'),
(130204, 103432, 'no_lang_code', 'name', 'SAGE Publishing (United States)'),
(130205, 103433, 'en', 'name', 'Akiru Municipal Medical Center'),
(130206, 103433, 'ja', 'name', 'å…¬ē«‹é˜æä¼Žē•™åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(130207, 103434, 'en', 'name', 'KAISEI Hospital'),
(130208, 103434, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤§ęØ¹ä¼šē·åˆē—…é™¢å›žē”Ÿē—…é™¢'),
(130209, 103435, 'en', 'name', 'Warakukai Incorporated Medical Institution'),
(130210, 103435, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå’Œę„½ä¼š'),
(130211, 103436, 'en', 'name', 'Kagoshima Prefectural Police'),
(130212, 103436, 'ja', 'name', 'é¹æå…å³¶ēœŒč­¦åÆŸ'),
(130213, 103437, 'en', 'name', 'Sagami Chemical Research Institute'),
(130214, 103437, 'ja', 'name', 'ē›øęØ”äø­å¤®åŒ–å­¦ē ”ē©¶ę‰€'),
(130215, 103438, 'en', 'name', 'Islamic Azad University, Shahrebabak'),
(130216, 103438, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓهربابک'),
(130217, 103439, 'en', 'name', 'Hyogo Prefectural Kakogawa Medical Center'),
(130218, 103439, 'ja', 'name', 'å…µåŗ«ēœŒē«‹åŠ å¤å·åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(130219, 103440, 'en', 'name', 'Kyoto Min-iren Chuo Hospital'),
(130220, 103440, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½äæå„ä¼šäŗ¬éƒ½ę°‘åŒ»é€£äø­å¤®ē—…é™¢'),
(130221, 103441, 'en', 'name', 'Shonan Kamakura University of Medical Sciences'),
(130222, 103441, 'ja', 'name', 'ę¹˜å—éŽŒå€‰åŒ»ē™‚å¤§å­¦'),
(130223, 103442, 'en', 'name', 'Okinawa Hokubu Hospital'),
(130224, 103442, 'ja', 'name', 'ę²–ēø„ēœŒē«‹åŒ—éƒØē—…é™¢'),
(130225, 103443, 'en', 'name', 'Okayama City General Medical Center'),
(130226, 103443, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå²”å±±åø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(130227, 103444, 'en', 'name', 'Sanmu Medical Center'),
(130228, 103444, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗć•ć‚“ć‚€åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(130229, 103445, 'en', 'name', 'Miyakojima iGRT Clinic'),
(130230, 103445, 'ja', 'name', 'éƒ½å³¶ę”¾å°„ē·šē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(130231, 103446, 'cs', 'name', 'Archeologický ústav AV ČR, Brno, v. v. i.'),
(130232, 103446, 'en', 'name', 'Czech Academy of Sciences, Institute of Archaeology, Brno'),
(130233, 103447, 'en', 'name', 'Japan Housing & Wood Technology Center'),
(130234, 103447, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä½å®…ćƒ»ęœØęęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(130235, 103448, 'en', 'name', 'Kansai Gaidai College'),
(130236, 103448, 'ja', 'name', 'é–¢č„æå¤–å›½čŖžå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(130237, 103449, 'en', 'name', 'Japan Sport Association'),
(130238, 103449, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„å”ä¼š'),
(130239, 103450, 'en', 'name', 'Osaka Seikei College'),
(130240, 103450, 'ja', 'name', '大阪成蹊短期大学'),
(130241, 103451, 'en', 'name', 'Civil Engineering Center Tokyo Metropolitan Government'),
(130242, 103451, 'ja', 'name', 'ę±äŗ¬éƒ½åœŸęœØęŠ€č”“ę”Æę“ćƒ»äŗŗęč‚²ęˆć‚»ćƒ³ć‚æćƒ¼'),
(130243, 103452, 'en', 'name', 'Yuai Memorial Hospital'),
(130244, 103452, 'ja', 'name', 'čŒØåŸŽēœŒę°‘ē”Ÿę“»å”åŒēµ„åˆå‹ę„›čØ˜åæµē—…é™¢'),
(130245, 103453, 'cs', 'name', 'Archeologický ústav AV ČR, Praha'),
(130246, 103453, 'en', 'name', 'Czech Academy of Sciences, Institute of Archaeology, Prague'),
(130247, 103454, 'en', 'name', 'Chugoku Occupational Health Association'),
(130248, 103454, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­å›½åŠ“åƒč”›ē”Ÿå”ä¼š'),
(130249, 103455, 'en', 'name', 'Niigata Prefectural Government'),
(130250, 103455, 'ja', 'name', 'ę–°ę½ŸēœŒåŗ'),
(130251, 103456, 'en', 'name', 'Mishuku Hospital'),
(130252, 103456, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šäø‰å®æē—…é™¢'),
(130253, 103457, 'en', 'name', 'Seiyo Municipal Hospital'),
(130254, 103457, 'ja', 'name', 'č„æäŗˆåø‚ē«‹č„æäŗˆåø‚ę°‘ē—…é™¢'),
(130255, 103458, 'en', 'name', 'Fukuchiyama City Hospital'),
(130256, 103458, 'ja', 'name', 'åø‚ē«‹ē¦ēŸ„å±±åø‚ę°‘ē—…é™¢'),
(130257, 103459, 'en', 'name', 'International Nature Farming Research Center'),
(130258, 103459, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč‡Ŗē„¶č¾²ę³•å›½éš›ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(130259, 103460, 'en', 'name', 'Japan Institute of Electronics Packaging'),
(130260, 103460, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹å®Ÿč£…å­¦ä¼š'),
(130261, 103461, 'en', 'name', 'The Japanese Association of Rehabilitation Medicine'),
(130262, 103461, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³åŒ»å­¦ä¼š'),
(130263, 103462, 'en', 'name', 'Japan Map Center'),
(130264, 103462, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åœ°å›³ć‚»ćƒ³ć‚æćƒ¼'),
(130265, 103463, 'en', 'name', 'Institute for Applied Optics'),
(130266, 103463, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåæœē”Øå…‰å­¦ē ”ē©¶ę‰€'),
(130267, 103464, 'en', 'name', 'Urban Design Center'),
(130268, 103464, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚ć„ćć‚Šćƒ‘ćƒ–ćƒŖćƒƒć‚Æćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(130269, 103465, 'en', 'name', 'Japan Health Promotion Foundation'),
(130270, 103465, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·å¢—é€²č²”å›£'),
(130271, 103466, 'en', 'name', 'Japan Water Agency'),
(130272, 103466, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗę°“č³‡ęŗę©Ÿę§‹'),
(130273, 103467, 'en', 'name', 'Research Organization of Information and Systems'),
(130274, 103467, 'ja', 'name', 'ęƒ…å ±ćƒ»ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę©Ÿę§‹'),
(130275, 103468, 'fr', 'name', 'Centre de Recherche sur les Fonctionnements et Dysfonctionnements Psychologiques'),
(130276, 103469, 'en', 'name', 'Japan Productivity Center'),
(130277, 103469, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿē”£ę€§ęœ¬éƒØ'),
(130278, 103470, 'en', 'name', 'IUCN Commission on Education and Communication'),
(130279, 103471, 'en', 'name', 'Tsurumi Junior College'),
(130280, 103471, 'ja', 'name', 'é¶“č¦‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(130281, 103472, 'es', 'name', 'Escuela Superior de Guerra Naval'),
(130282, 103473, 'en', 'name', 'Yamanashi Fruit Tree Experiment Station'),
(130283, 103473, 'ja', 'name', 'å±±ę¢ØēœŒęžœęØ¹č©¦éØ“å “'),
(130284, 103474, 'en', 'name', 'The Laser Society of Japan'),
(130285, 103474, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ¬ćƒ¼ć‚¶ćƒ¼å­¦ä¼š'),
(130286, 103475, 'en', 'name', 'International Consortium on Landslides'),
(130287, 103475, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗå›½éš›ę–œę–œé¢ē½å®³ē ”ē©¶ę©Ÿę§‹'),
(130288, 103476, 'en', 'name', 'Kawanishi City Hospital'),
(130289, 103476, 'ja', 'name', 'åø‚ē«‹å·č„æē—…é™¢'),
(130290, 103477, 'en', 'name', 'SABO & Landslide Technical Center'),
(130291, 103477, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē ‚é˜²ćƒ»åœ°ć™ć¹ć‚ŠęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(130292, 103478, 'en', 'name', 'Kamagaya General Hospital'),
(130293, 103478, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē¤¾å›£ęœØäø‹ä¼šéŽŒć‚±č°·ē·åˆē—…é™¢'),
(130294, 103479, 'en', 'name', 'State Institution of Science «Center of Innovative Healthcare Technologies» State Administrative Department'),
(130295, 103479, 'uk', 'name', 'Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° «Центр інноваційних технологій охорони Š·Š“Š¾Ń€Š¾Š²ā€™ŃĀ» Державного ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń справами'),
(130296, 103480, 'en', 'name', 'Yamanashi Prefectural Police'),
(130297, 103480, 'ja', 'name', '山梨県警察'),
(130298, 103481, 'en', 'name', 'Shizuoka City Institute Of Environmental Sciences And Public Health'),
(130299, 103481, 'ja', 'name', 'é™å²”åø‚ē’°å¢ƒäæå„ē ”ē©¶ę‰€'),
(130300, 103482, 'en', 'name', 'Aomori City Hospital'),
(130301, 103482, 'ja', 'name', 'é’ę£®åø‚ę°‘ē—…é™¢'),
(130302, 103483, 'en', 'name', 'Gunma Sericultural Technology Center'),
(130303, 103483, 'ja', 'name', 'ē¾¤é¦¬ēœŒčš•ē³øęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(130304, 103484, 'en', 'name', 'Nihon Wellness Sports University'),
(130305, 103484, 'ja', 'name', 'ę—„ęœ¬ć‚¦ć‚§ćƒ«ćƒć‚¹ć‚¹ćƒćƒ¼ćƒ„å¤§å­¦'),
(130306, 103485, 'en', 'name', 'Hachinohe City Hospital'),
(130307, 103485, 'ja', 'name', 'å…«ęˆøåø‚ē«‹åø‚ę°‘ē—…é™¢'),
(130308, 103486, 'en', 'name', 'Japanese Association of Medical Technologists'),
(130309, 103486, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡ØåŗŠč”›ē”Ÿę¤œęŸ»ęŠ€åø«ä¼š'),
(130310, 103487, 'de', 'name', 'Schloss Dagstuhl – Leibniz Center for Informatics'),
(130311, 103488, 'en', 'name', 'Delaware Geological Survey'),
(130312, 103489, 'en', 'name', 'Department of Behavioral Health'),
(130313, 103490, 'es', 'name', 'Universidad Privada MarĆ­a Serrana'),
(130314, 103491, 'en', 'name', 'Grameen Caledonian College of Nursing'),
(130315, 103492, 'fr', 'name', 'Laboratoire de sociologie juridique'),
(130316, 103493, 'en', 'name', 'Edwards Aquifer Authority'),
(130317, 103494, 'fr', 'name', 'Institut de recherche en droit des affaires (Paris)'),
(130318, 103495, 'en', 'name', 'Naval Medical Research Unit INDO PACIFIC'),
(130319, 103496, 'en', 'name', 'Embry-Riddle Aeronautical University Worldwide & Online'),
(130320, 103497, 'en', 'name', 'Florida Native Plant Society'),
(130321, 103498, 'en', 'name', 'Northern Mindanao Colleges, Inc.'),
(130322, 103499, 'fr', 'name', 'Centre National d''Ɖtudes Spatiales'),
(130323, 103499, 'en', 'name', 'National Centre for Space Studies'),
(130324, 103500, 'hu', 'name', 'HUN-REN Wigner Fizikai Kutatóközpont'),
(130325, 103500, 'en', 'name', 'HUN-REN Wigner Research Centre for Physics'),
(130326, 103501, 'fr', 'name', 'Centre de recherche sur les droits de l''Homme et le droit humanitaire'),
(130327, 103502, 'en', 'name', 'Lakulish Yoga University'),
(130328, 103503, 'fr', 'name', 'Centre de recherche sur le droit des marchƩs et des investissements internationaux'),
(130329, 103504, 'en', 'name', 'Delta State Polytechnic Otefe-Oghara'),
(130330, 103505, 'en', 'name', 'Multidisciplinary Institute of Ageing'),
(130331, 103506, 'en', 'name', 'Westmead Institute for Medical Research'),
(130332, 103507, 'en', 'name', 'Iida Junior College'),
(130333, 103507, 'ja', 'name', 'é£Æē”°ēŸ­ęœŸå¤§å­¦'),
(130334, 103508, 'ga', 'name', 'ColƔiste Uƭ Ghrƭofa, Corcaigh'),
(130335, 103508, 'en', 'name', 'Griffith College Cork'),
(130336, 103509, 'en', 'name', 'State Herbarium of South Australia'),
(130337, 103510, 'en', 'name', 'National Defense University'),
(130338, 103511, 'en', 'name', 'Nelson University'),
(130339, 103512, 'en', 'name', 'Royal Perth Bentley Group'),
(130340, 103513, 'fr', 'name', 'Laboratoire de Physique des MatƩriaux et des Surfaces'),
(130341, 103513, 'en', 'name', 'Laboratory Physics of Materials and Surfaces'),
(130342, 103514, 'en', 'name', 'Osaka Tokiwakai Gakuen University'),
(130343, 103514, 'ja', 'name', 'å¤§é˜Ŗåøøē£ä¼šå­¦åœ’'),
(130344, 103515, 'hu', 'name', 'Energia- Ʃs KƶrnyezetbiztonsƔgi IntƩzet'),
(130345, 103515, 'en', 'name', 'Institute for Energy Security and Environmental Safety'),
(130346, 103516, 'en', 'name', 'National Examinations Council'),
(130347, 103517, 'en', 'name', 'Amhara Agricultural Research Institute'),
(130348, 103518, 'en', 'name', 'Law Enforcement Academy of the Republic of Uzbekistan'),
(130349, 103518, 'uz', 'name', 'Oʻzbekiston Respublikasi Huquqni muhofaza qilish akademiyasi'),
(130350, 103518, 'ru', 'name', 'ŠŸŃ€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Республики Узбекистан'),
(130351, 103519, 'en', 'name', 'Pars University of Art and Architecture'),
(130352, 103519, 'fa', 'name', 'دانؓگاه Ł…Ų¹Ł…Ų§Ų±ŪŒ و هنر پارس'),
(130353, 103520, 'en', 'name', 'Division of Advanced Cyberinfrastructure'),
(130354, 103521, 'en', 'name', 'Fukushima Institute for Research, Education and Innovation'),
(130355, 103522, 'en', 'name', 'Dynamic Ideas (United States)'),
(130356, 103523, 'id', 'name', 'Teknologi Pendidikan ID (Indonesia)'),
(130357, 103524, 'en', 'name', 'LJ University'),
(130358, 103525, 'es', 'name', 'Universidad Nacional de San Agustin de Arequipa'),
(130359, 103526, 'fr', 'name', 'Laboratoire de Droit Social'),
(130360, 103527, 'en', 'name', 'Next Step Drug and Alcohol Services'),
(130361, 103528, 'en', 'name', 'Priyadharshani Research and Development (OPC) Pvt. Ltd. (India)'),
(130362, 103529, 'en', 'name', 'Bank of Canada'),
(130363, 103529, 'fr', 'name', 'Banque du Canada'),
(130364, 103530, 'en', 'name', '3billion, Inc. (South Korea)'),
(130365, 103531, 'en', 'name', 'Bishkek International Medical Institute'),
(130366, 103531, 'kg', 'name', 'Š‘ŠøŃˆŠŗŠµŠŗ ŃŠ» аралык меГициналык ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ'),
(130367, 103531, 'ru', 'name', 'Š‘ŠøŃˆŠŗŠµŠŗŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(130368, 103532, 'en', 'name', 'Economic Scientific Research Institute'),
(130369, 103532, 'az', 'name', 'İqtisadi Elmi Tədqiqat İnstitutu'),
(130370, 103533, 'en', 'name', 'St. Xavier''s College'),
(130371, 103534, 'en', 'name', 'St. Elizabeths Hospital'),
(130372, 103535, 'en', 'name', 'CREATe Centre'),
(130373, 103536, 'en', 'name', 'Agriculture University, Jodhpur'),
(130374, 103537, 'en', 'name', 'Space Sciences Laboratory'),
(130375, 103538, 'en', 'name', 'Shibata Gakuen University'),
(130376, 103538, 'ja', 'name', 'ęŸ“ē”°å­¦åœ’å¤§å­¦'),
(130377, 103539, 'fr', 'name', 'Culture/s, Patrimoine/s, CrƩation/s - HƩritages'),
(130378, 103540, 'en', 'name', 'Bangladesh Institute of Governance and Management'),
(130379, 103541, 'en', 'name', 'Mekdela Amba University'),
(130380, 103542, 'en', 'name', 'Sumgayit State University'),
(130381, 103542, 'az', 'name', 'Sumqayıt Dƶvlət Universiteti'),
(130382, 103542, 'ru', 'name', 'Š”ŃƒŠ¼Š³Š°ŠøŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(130383, 103543, 'en', 'name', 'Natural Science Institute of Iceland'),
(130384, 103543, 'is', 'name', 'NÔttúrufræðistofnun'),
(130385, 103544, 'en', 'name', 'Nasus Pharma (Israel)'),
(130386, 103545, 'en', 'name', 'Environmental Data Initiative'),
(130387, 103546, 'en', 'name', 'State University of Information and Communication Technologies'),
(130388, 103546, 'uk', 'name', 'Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ інформаційно-ŠŗŠ¾Š¼ŃƒŠ½Ń–ŠŗŠ°Ń†Ń–Š¹Š½ŠøŃ… технологій'),
(130389, 103547, 'fr', 'name', 'ENSIT'),
(130390, 103547, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† ŲØŲŖŁˆŁ†Ų³'),
(130391, 103548, 'en', 'name', 'National Centre for Coastal Research'),
(130392, 103549, 'en', 'name', 'Islamic University of Madinah'),
(130393, 103549, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(130394, 103550, 'fr', 'name', 'Laboratoire Interdisciplinaire Carnot de Bourgogne'),
(130395, 103551, 'en', 'name', 'Centre of Estonian Rural Research and Knowledge'),
(130396, 103551, 'et', 'name', 'Maaelu Teadmuskeskus'),
(130397, 103552, 'en', 'name', 'Shandiz Institute of Higher Education'),
(130398, 103552, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų“Ų§Ł†ŲÆŪŒŲ² مؓهد'),
(130399, 103553, 'en', 'name', 'Ministry of Natural Resources and Forests'),
(130400, 103553, 'fr', 'name', 'MinistĆØre des Ressources naturelles et des ForĆŖts'),
(130401, 103554, 'en', 'name', 'Australian Urban Research Infrastructure Network'),
(130402, 103555, 'en', 'name', 'Economic Interest Group'),
(130403, 103555, 'fr', 'name', 'Groupement d''Intérêt Economique'),
(130404, 103556, 'en', 'name', 'U.S. Army Tank-automotive and Armaments Command'),
(130405, 103557, 'en', 'name', 'Croatian Meteorological and Hydrological Service'),
(130406, 103557, 'hr', 'name', 'Državni hidrometeoroloŔki zavod'),
(130407, 103558, 'en', 'name', 'Nabarangpur College'),
(130408, 103558, 'or', 'name', 'ą¬Øą¬¬ą¬°ą¬™ą­ą¬—ą¬Ŗą­ą¬° ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(130409, 103559, 'en', 'name', 'Yaroslavl State Technical University'),
(130410, 103559, 'ru', 'name', 'Ярославский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(130411, 103560, 'en', 'name', 'National Blood Authority'),
(130412, 103561, 'en', 'name', 'Shri BM Patil Medical College'),
(130413, 103562, 'en', 'name', 'Brain Corporation (United States)'),
(130414, 103563, 'pt', 'name', 'Leitão Guerra - Oftalmologia'),
(130415, 103564, 'en', 'name', 'Space Rapid Capabilities Office'),
(130416, 103565, 'id', 'name', 'Universitas Ahmad Dahlan'),
(130417, 103566, 'en', 'name', 'Colorado School of Mines'),
(130418, 103567, 'de', 'name', 'Heinrich-Barth-Institut'),
(130419, 103568, 'en', 'name', 'ARC Centre of Excellence for Particle Physics at the Terascale'),
(130420, 103569, 'nl', 'name', 'Municipality of Nijmegen'),
(130421, 103570, 'en', 'name', 'TKM College of Engineering'),
(130422, 103571, 'en', 'name', 'Centre for Microscopy and Microanalysis'),
(130423, 103572, 'en', 'name', 'Canadian University of Bangladesh'),
(130424, 103573, 'en', 'name', 'Bankstown Lidcombe Hospital'),
(130425, 103574, 'en', 'name', 'Research Unit on Cardiovascular and Metabolic Diseases'),
(130426, 103574, 'fr', 'name', 'UnitƩ de recherche sur les maladies cardiovasculaires et mƩtaboliques'),
(130427, 103575, 'en', 'name', 'King George V Memorial Hospital'),
(130428, 103576, 'es', 'name', 'Tecnológico de Estudios Superiores de Tianguistenco'),
(130429, 103577, 'en', 'name', 'Australian Commission on Safety and Quality in Health Care'),
(130430, 103578, 'en', 'name', 'Geelong Hospital'),
(130431, 103579, 'pl', 'name', 'Akademia Tarnowska'),
(130432, 103579, 'en', 'name', 'University of Applied Sciences in Tarnow'),
(130433, 103580, 'en', 'name', 'Xindu District People''s Hospital of Chengdu'),
(130434, 103580, 'zh', 'name', 'ęˆéƒ½åø‚ę–°éƒ½åŒŗäŗŗę°‘åŒ»é™¢'),
(130435, 103581, 'en', 'name', 'Kaiyuan E-Commerce (Shenzhen) Co., Ltd. (China)'),
(130436, 103582, 'en', 'name', 'Institute of Clinical and Translational Research of the Slovak Academy of Sciences'),
(130437, 103582, 'sk', 'name', 'Ústav klinickĆ©ho a translačnĆ©ho výskumu BiomedicĆ­nskeho centra Slovenskej akadĆ©mie vied'),
(130438, 103583, 'pl', 'name', 'Akademia Pożarnicza'),
(130439, 103583, 'en', 'name', 'Fire University'),
(130440, 103584, 'en', 'name', 'Nuclear Science User Facilities'),
(130441, 103585, 'fr', 'name', 'Laboratoire d’études juridiques et politiques'),
(130442, 103585, 'en', 'name', 'Legal and Political Studies Laboratory'),
(130443, 103586, 'en', 'name', 'Indiana University Northwest'),
(130444, 103587, 'fr', 'name', 'Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles'),
(130445, 103588, 'en', 'name', 'Federal University of Health Sciences, Otukpo'),
(130446, 103589, 'id', 'name', 'Universitas Darunnajah'),
(130447, 103589, 'en', 'name', 'University of Darunnajah'),
(130448, 103590, 'en', 'name', 'Greenhood Nepal'),
(130449, 103590, 'ne', 'name', 'ą¤—ą„ą¤°ą¤æą¤Øą¤¹ą„ą¤” ą¤Øą„‡ą¤Ŗą¤¾ą¤²'),
(130450, 103591, 'en', 'name', 'Institute of Art History of the Art Research Centre of the Slovak Academy of Sciences'),
(130451, 103591, 'sk', 'name', 'Ústav dejín umenia Centra vied o umení Slovenskej akadémie vied'),
(130452, 103592, 'en', 'name', 'Royal Children''s Hospital'),
(130453, 103593, 'en', 'name', 'National Center for Presons with Severe Intellectual Disabilities, Nozominosono'),
(130454, 103593, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹é‡åŗ¦ēŸ„ēš„éšœå®³č€…ē·åˆę–½čØ­ć®ćžćæć®åœ’'),
(130455, 103594, 'en', 'name', 'The Affiliated Yongchuan Hospital of Chongqing Medical University'),
(130456, 103594, 'zh', 'name', 'é‡åŗ†åŒ»ē§‘å¤§å­¦é™„å±žę°øå·åŒ»é™¢'),
(130457, 103595, 'en', 'name', 'Wildlife Trust of India'),
(130458, 103596, 'no', 'name', 'HĆøyskolen Kristiania'),
(130459, 103596, 'en', 'name', 'Kristiania University of Applied Sciences'),
(130460, 103597, 'en', 'name', 'IMAQ Research'),
(130461, 103598, 'en', 'name', 'Organ and Tissue Authority'),
(130462, 103599, 'en', 'name', 'Academia.edu Journals'),
(130463, 103600, 'en', 'name', 'Leibniz Institute of Photonic Technology'),
(130464, 103600, 'de', 'name', 'Leibniz-Institut für Photonische Technologien'),
(130465, 103601, 'en', 'name', 'Tianshui Normal University'),
(130466, 103601, 'zh', 'name', 'å¤©ę°“åøˆčŒƒå­¦é™¢ę¬¢čæŽę‚Ø'),
(130467, 103602, 'en', 'name', 'Naval Information Warfare Systems Command'),
(130468, 103603, 'en', 'name', 'Society for the Protection of Underground Networks'),
(130469, 103604, 'en', 'name', 'Bolan University of Medical and Health Sciences'),
(130470, 103604, 'ur', 'name', 'ŲØŁˆŁ„Ų§Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŚˆŪŒŚ©Ł„ Ų§ŪŒŁ†Śˆ ŪŪŒŁ„ŲŖŚ¾ سائنسز'),
(130471, 103605, 'en', 'name', 'National Council for Civilian Research and Development'),
(130472, 103606, 'de', 'name', 'Katholische Stiftungshochschule München'),
(130473, 103607, 'en', 'name', 'Thomas More University'),
(130474, 103608, 'vi', 'name', 'Bį»™ NĆ“ng nghiệp vĆ  PhĆ”t triển NĆ“ng thĆ“n'),
(130475, 103608, 'en', 'name', 'Ministry of Agriculture and Rural Development'),
(130476, 103609, 'en', 'name', 'Central Research Institute for Machine Building'),
(130477, 103609, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(130478, 103610, 'en', 'name', 'University of Franche-ComtƩ'),
(130479, 103610, 'fr', 'name', 'UniversitƩ de franche-comtƩ'),
(130480, 103611, 'en', 'name', 'Space Delta 8'),
(130481, 103612, 'en', 'name', 'Ala-Too International University'),
(130482, 103612, 'uz', 'name', 'OlatogŹ» xalqaro universiteti'),
(130483, 103612, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет Ала-Тоо'),
(130484, 103613, 'en', 'name', 'Space Delta 4'),
(130485, 103614, 'en', 'name', 'Shenzhen Babel InfoTech. Co., Ltd. (China)'),
(130486, 103614, 'zh', 'name', 'ę·±åœ³å·“č“å°”äæ”ęÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(130487, 103615, 'en', 'name', 'ARC Centre of Excellence for Children and Families over the Life Course'),
(130488, 103616, 'id', 'name', 'Universitas PGRI Madiun'),
(130489, 103617, 'en', 'name', 'University of Minnesota Itasca Biological Station and Laboratories'),
(130490, 103618, 'en', 'name', 'Hadhramout University'),
(130491, 103618, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų­Ų¶Ų±Ł…ŁˆŲŖ'),
(130492, 103619, 'en', 'name', 'Sydney Dental Hospital'),
(130493, 103620, 'en', 'name', 'Crediton Hospital'),
(130494, 103621, 'en', 'name', 'BLDE (Deemed to be University)'),
(130495, 103622, 'en', 'name', 'Bishkek Academy of Finance and Economics'),
(130496, 103622, 'ky', 'name', 'Š‘ŠøŃˆŠŗŠµŠŗŃŠŗŠ°Ń Финансово – Š­ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(130497, 103623, 'es', 'name', 'Instituto de Altos Estudios Espaciales ā€œMario Gulichā€'),
(130498, 103624, 'en', 'name', 'North-Eastern University, Gombe'),
(130499, 103625, 'pt', 'name', 'Centro UniversitÔrio de Telêmaco Borba'),
(130500, 103626, 'en', 'name', 'eMOTIONAL Cities'),
(130501, 103627, 'uz', 'name', 'Farg`ona davlat universiteti'),
(130502, 103627, 'en', 'name', 'Ferghana State University'),
(130503, 103627, 'ru', 'name', 'Ферганский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(130504, 103628, 'fr', 'name', 'Institut Michel Villey pour la Culture Juridique et la Philosophie du Droit'),
(130505, 103629, 'fr', 'name', 'Institut de Chimie MolƩculaire de l''UniversitƩ de Bourgogne'),
(130506, 103629, 'en', 'name', 'Institute of Molecular Chemistry of the University of Burgundy');
INSERT INTO `ror_settings` VALUES
(130507, 103630, 'en', 'name', 'Institute of Agricultural and Forestry Defense of EspĆ­rito Santo'),
(130508, 103630, 'pt', 'name', 'Instituto de Defesa AgropecuƔria e Florestal do Espƭrito Santo'),
(130509, 103631, 'en', 'name', 'Institute of Experimental Psychology of the Centre of Social and Psychological Sciences of the Slovak Academy of Sciences'),
(130510, 103631, 'sk', 'name', 'Ústav experimentĆ”lnej psychológie Centra spoločenských a psychologických vied Slovenskej akadĆ©mie vied'),
(130511, 103632, 'en', 'name', 'Polytechnic University of Gómez Palacio'),
(130512, 103632, 'es', 'name', 'Universidad Politécnica de Gómez Palacio'),
(130513, 103633, 'sv', 'name', 'If SkadefƶrsƤkring AB'),
(130514, 103634, 'en', 'name', 'Reiwa Health Sciences University'),
(130515, 103634, 'ja', 'name', 'ä»¤å’Œå„åŗ·ē§‘å­¦å¤§å­¦'),
(130516, 103635, 'en', 'name', 'Gentex'),
(130517, 103635, 'no_lang_code', 'name', 'Gentex (United States)'),
(130518, 103636, 'es', 'name', 'Servicios de Salud de YucatƔn'),
(130519, 103637, 'en', 'name', 'Cyber University Indonesia'),
(130520, 103637, 'id', 'name', 'Universitas Siber Indonesia'),
(130521, 103638, 'fr', 'name', 'Laboratoire de Droit Civil'),
(130522, 103639, 'en', 'name', 'Canterbury Hospital'),
(130523, 103640, 'en', 'name', 'Concord Repatriation General Hospital'),
(130524, 103641, 'fr', 'name', 'Centre de Recherche LƩon Duguit'),
(130525, 103642, 'en', 'name', 'Baqai Institute of Diabetology and Endocrinology'),
(130526, 103643, 'en', 'name', 'CodeDay'),
(130527, 103644, 'no', 'name', 'Universitetet i Innlandet'),
(130528, 103644, 'en', 'name', 'University of Inland Norway'),
(130529, 103645, 'en', 'name', 'ARC Centre of Excellence for Environmental Decisions'),
(130530, 103646, 'en', 'name', 'U.S. Army Communications-Electronics Command'),
(130531, 103647, 'en', 'name', 'U.S. Army Information Systems Engineering Command'),
(130532, 103648, 'en', 'name', 'Axminster Hospital'),
(130533, 103649, 'en', 'name', 'Commonwealth of Virginia'),
(130534, 103650, 'id', 'name', 'Institut Kesehatan Helvetia'),
(130535, 103651, 'en', 'name', 'Research Institute of Communication in Art'),
(130536, 103651, 'cs', 'name', 'Výzkumný Ćŗstav komunikace v uměnĆ­'),
(130537, 103652, 'fr', 'name', 'Laboratoire Sols et Environnement'),
(130538, 103652, 'en', 'name', 'Laboratory of Soil and Environmental Sciences'),
(130539, 103653, 'en', 'name', 'National Health and Medical Research Council'),
(130540, 103654, 'en', 'name', 'Institute of Molecular Physiology and Genetics of the Slovak Academy of Sciences'),
(130541, 103654, 'sk', 'name', 'Ústav molekulÔrnej fyziológie agenetiky Centra biovied Slovenskej akadémie vied'),
(130542, 103655, 'en', 'name', 'Creative Education Technology (Shenzhen) Co., Ltd. (China)'),
(130543, 103655, 'zh', 'name', 'å¼€å…ƒę•™č‚²ē§‘ęŠ€ļ¼ˆę·±åœ³ļ¼‰ęœ‰é™å…¬åø'),
(130544, 103656, 'en', 'name', 'Center for Media Research - Nepal'),
(130545, 103657, 'en', 'name', 'Institute of Vocational Education of the National Academy of Educational Sciences of Ukraine'),
(130546, 103657, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ професійної освіти ŠŠŠŸŠ України'),
(130547, 103658, 'en', 'name', 'Military Health System'),
(130548, 103658, 'es', 'name', 'Sistema Militar de Salud de EUA'),
(130549, 103659, 'en', 'name', 'Children''s Medical Research Institute'),
(130550, 103660, 'en', 'name', 'Ferox Therapeutics (United States)'),
(130551, 103661, 'de', 'name', 'Hogrefe AG (Switzerland)'),
(130552, 103662, 'pt', 'name', 'Secretaria de Estado de Cultura e Turismo de Minas Gerais'),
(130553, 103663, 'en', 'name', 'Simmaron Research'),
(130554, 103664, 'en', 'name', 'Mamun University'),
(130555, 103664, 'uz', 'name', 'Ma’mun Universiteti'),
(130556, 103664, 'ru', 'name', 'Мамун Университет'),
(130557, 103665, 'en', 'name', 'Women and Infants Research Foundation'),
(130558, 103666, 'en', 'name', 'The Apollo University'),
(130559, 103667, 'en', 'name', 'United States Army Intelligence and Security Command'),
(130560, 103668, 'es', 'name', 'Universidad Nacional Rosario Castellanos'),
(130561, 103669, 'en', 'name', 'Victorian Comprehensive Cancer Centre'),
(130562, 103670, 'en', 'name', 'Nephro Care India Limited (India)'),
(130563, 103671, 'en', 'name', 'University of Burgundy'),
(130564, 103671, 'fr', 'name', 'UniversitƩ de Bourgogne'),
(130565, 103672, 'et', 'name', 'MPhysX OÜ'),
(130566, 103673, 'en', 'name', 'Federal Budgetary Institution "Research Center for Applied Metrology - Rostest"'),
(130567, 103673, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр приклаГной метрологии – Ростест»'),
(130568, 103674, 'en', 'name', 'Science Europe'),
(130569, 103675, 'de', 'name', 'Forschungsinstitut Gesellschaftlicher Zusammenhalt'),
(130570, 103676, 'en', 'name', 'University of Education'),
(130571, 103676, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§ŪŒŲ¬ŁˆŚ©ŪŒŲ“Ł†'),
(130572, 103677, 'en', 'name', 'ICAR - Agricultural Technology Application Research Institute'),
(130573, 103678, 'en', 'name', 'Institute for Heart Research of the Slovak Academy of Sciences'),
(130574, 103678, 'sk', 'name', 'Ústav pre výskum srdca Centra experimentÔlnej medicíny Slovenskej akadémie vied'),
(130575, 103679, 'en', 'name', 'Mona Vale Hospital'),
(130576, 103680, 'fr', 'name', 'ProcƩdƩs Alimentaires et Microbiologiques'),
(130577, 103681, 'fr', 'name', 'Ecole SupƩrieure de Management Tlemcen'),
(130578, 103681, 'en', 'name', 'Higher School of Management of Tlemcen'),
(130579, 103682, 'es', 'name', 'Comisión Nacional de Energía Atómica'),
(130580, 103682, 'en', 'name', 'National Atomic Energy Commission'),
(130581, 103683, 'en', 'name', 'Applied Science Private University'),
(130582, 103683, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© الخاصة'),
(130583, 103684, 'en', 'name', 'Australian Government'),
(130584, 103685, 'en', 'name', 'The Royal Victorian Eye & Ear Hospital'),
(130585, 103686, 'en', 'name', 'Kumamoto Chuo Hospital'),
(130586, 103686, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šē†Šęœ¬äø­å¤®ē—…é™¢'),
(130587, 103687, 'en', 'name', 'United States Army Institute of Surgical Research'),
(130588, 103688, 'en', 'name', 'Epworth Hospital'),
(130589, 103689, 'en', 'name', 'United States Army Medical Research and Development Command'),
(130590, 103690, 'en', 'name', 'Navy and Marine Corps Force Health Protection Command'),
(130591, 103691, 'fr', 'name', 'Centre d''Ɖtude sur la FiscalitĆ© des Entreprises de Paris'),
(130592, 103692, 'en', 'name', 'Naval Postgraduate School'),
(130593, 103693, 'en', 'name', 'Hornsby Ku-ring-gai Hospital'),
(130594, 103694, 'it', 'name', 'Confederazione Generale dell’Agricoltura Italiana (Italy)'),
(130595, 103695, 'en', 'name', 'Burnet Institute'),
(130596, 103696, 'en', 'name', 'United States Army'),
(130597, 103697, 'en', 'name', 'Uniformed Services University of the Health Sciences'),
(130598, 103698, 'en', 'name', 'ARC Centre of Excellence for Innovations in Peptide and Protein Science'),
(130599, 103699, 'en', 'name', 'Nagano Prefectural College'),
(130600, 103699, 'ja', 'name', 'é•·é‡ŽēœŒēŸ­ęœŸå¤§å­¦'),
(130601, 103700, 'en', 'name', 'Naval Strike and Air Warfare Center'),
(130602, 103701, 'no_lang_code', 'name', 'L''OrƩal (France)'),
(130603, 103702, 'en', 'name', 'Sydney Adventist Hospital'),
(130604, 103703, 'en', 'name', 'U.S. Army Joint Munitions Command'),
(130605, 103704, 'en', 'name', 'University of Algiers 3'),
(130606, 103704, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الجزائر 3'),
(130607, 103705, 'es', 'name', 'Instituto Superior de Artes y Ciencias de la Comunicación'),
(130608, 103706, 'en', 'name', 'Sidmouth Hospital'),
(130609, 103707, 'en', 'name', 'Hooghly Engineering & Technology College'),
(130610, 103708, 'en', 'name', 'Naval Aerospace Medical Institute'),
(130611, 103709, 'en', 'name', 'University of Ilesa'),
(130612, 103710, 'fr', 'name', 'Institut de Radioprotection et de SƻretƩ NuclƩaire'),
(130613, 103710, 'en', 'name', 'Institute for Radiological Protection and Nuclear Safety'),
(130614, 103711, 'en', 'name', 'East Metropolitan Health Service'),
(130615, 103712, 'en', 'name', 'Academy of Applied Studies Belgrade'),
(130616, 103712, 'sr', 'name', 'Akademija strukovnih studija Beograd'),
(130617, 103713, 'en', 'name', 'Strategic Systems Programs'),
(130618, 103714, 'is', 'name', 'NƔtturustofa Suưurlands'),
(130619, 103715, 'en', 'name', 'Virginia Department of Behavioral Health and Developmental Services'),
(130620, 103716, 'en', 'name', 'Appalachian State University'),
(130621, 103717, 'en', 'name', 'National Policing Institute'),
(130622, 103718, 'en', 'name', 'Al-Qasim Green University'),
(130623, 103718, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القاسم الخضراؔ'),
(130624, 103719, 'en', 'name', 'Kano Independent Research Centre Trust'),
(130625, 103720, 'en', 'name', 'Society for AgroEnvironmental Sustainability'),
(130626, 103721, 'id', 'name', 'Politeknik Harapan Bersama'),
(130627, 103722, 'en', 'name', 'Tripler Army Medical Center'),
(130628, 103723, 'fr', 'name', 'Corps des ingĆ©nieurs de l''armĆ©e des Ɖtats-unis'),
(130629, 103723, 'es', 'name', 'Cuerpo de Ingenieros del EjƩrcito de los Estados Unidos'),
(130630, 103723, 'en', 'name', 'United States Army Corps of Engineers'),
(130631, 103724, 'en', 'name', 'Flanders Heritage Agency'),
(130632, 103724, 'nl', 'name', 'Onroerend Erfgoed'),
(130633, 103725, 'en', 'name', 'Naval Medical Center Portsmouth'),
(130634, 103726, 'en', 'name', 'Transparent Products, Inc. (United States)'),
(130635, 103727, 'en', 'name', 'National Institute of Rock Mechanics'),
(130636, 103727, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą„‰ą¤• ą¤®ą„ˆą¤•ą„‡ą¤Øą¤æą¤•ą„ą¤ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(130637, 103728, 'en', 'name', 'Bangladesh Army University of Engineering & Technology'),
(130638, 103728, 'bn', 'name', 'বাংলাদেশ সেনাবাহিনী ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(130639, 103729, 'fr', 'name', 'Fondation Montagne Sùre'),
(130640, 103729, 'it', 'name', 'Fondazione Montagna Sicura'),
(130641, 103730, 'en', 'name', 'Vlatacom Institute (Serbia)'),
(130642, 103730, 'sr', 'name', 'Vlatacom institut visokih tehnologija d.o.o.'),
(130643, 103731, 'en', 'name', 'Defense Health Agency'),
(130644, 103732, 'en', 'name', 'Philomath University'),
(130645, 103733, 'en', 'name', 'Institute for Evaluation of Labour Market and Education Policy'),
(130646, 103733, 'sv', 'name', 'Institutet fƶr arbetsmarknads- och utbildningspolitisk utvƤrdering'),
(130647, 103734, 'en', 'name', 'Mahatma Basaveshwar Education Society''s College of Engineering, Ambajogai'),
(130648, 103735, 'id', 'name', 'Universitas Bina Sarana Informatika'),
(130649, 103736, 'en', 'name', 'Naval Medical Research Unit EURAFCENT'),
(130650, 103737, 'en', 'name', 'Extracellular Matrix-Cell Relations Research Tea'),
(130651, 103737, 'fr', 'name', 'Ɖquipe de Recherche sur les Relations Matrice Extracellulaire-Cellules'),
(130652, 103738, 'fr', 'name', 'Institut national de l’information gĆ©ographique et forestiĆØre'),
(130653, 103738, 'en', 'name', 'National Geographic Institute'),
(130654, 103739, 'en', 'name', 'Institute for Solid State Physics and Optics'),
(130655, 103739, 'hu', 'name', 'SzilƔrdtestfizikai Ʃs Optikai IntƩzet'),
(130656, 103740, 'id', 'name', 'Institut Teknologi Calvin'),
(130657, 103741, 'fr', 'name', 'Ecole Nationale SupĆ©rieur des TĆ©lĆ©communications et des Technologies de l’Information et de la Communication, Abdelhafid Boussouf'),
(130658, 103741, 'en', 'name', 'Higher National School of Telecommunications and Information and Communication Technologies Abdelhafid Boussouf'),
(130659, 103741, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ لل؄تصالات ŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ŲŖ ال؄علام ŁˆŲ§Ł„Ų„ŲŖŲµŲ§Ł„'),
(130660, 103742, 'id', 'name', 'Universitas Nias'),
(130661, 103742, 'en', 'name', 'University of Nias'),
(130662, 103743, 'fr', 'name', 'DƩlƩgation Provence et Corse'),
(130663, 103744, 'en', 'name', 'Defense & Veterans Center for Integrative Pain Management'),
(130664, 103745, 'de', 'name', 'Institut für Entwicklungsplanung und Strukturforschung'),
(130665, 103745, 'no_lang_code', 'name', 'Institut für Entwicklungsplanung und Strukturforschung (Germany)'),
(130666, 103746, 'en', 'name', 'Al Wasl University'),
(130667, 103747, 'en', 'name', 'Santa Anna IT Research Institute'),
(130668, 103748, 'en', 'name', 'Institute for Regional Studies'),
(130669, 103748, 'hu', 'name', 'Magyar TudomÔnyos Akadémia KözgazdasÔg- és RegionÔlis TudomÔnyi Kutatóközpont RegionÔlis KutatÔsok Intézete'),
(130670, 103749, 'en', 'name', 'Institute of World Economics'),
(130671, 103749, 'hu', 'name', 'MTA KözgazdasÔg- és RegionÔlis TudomÔnyi Kutatóközpont'),
(130672, 103750, 'en', 'name', 'Program for Climate Model Diagnosis and Intercomparison'),
(130673, 103751, 'en', 'name', 'Princess Elizabeth Orthopaedic Centre'),
(130674, 103752, 'en', 'name', 'Embry-Riddle Aeronautical University Prescott Arizona Campus'),
(130675, 103753, 'no_lang_code', 'name', 'Dr. D.Y. Patil Vidyapeeth, Pune'),
(130676, 103754, 'fr', 'name', 'Centre Energie Environnement ProcƩdƩs'),
(130677, 103754, 'en', 'name', 'Mines Paris, PSL University, Centre for Energy, Environment & Processes (CEEP)'),
(130678, 103755, 'fr', 'name', 'Centre de droit public comparƩ'),
(130679, 103756, 'fr', 'name', 'Institut d''Astrophysique Spatiale'),
(130680, 103757, 'en', 'name', 'DUG Technology (Australia)'),
(130681, 103758, 'en', 'name', 'The Microsampling Laboratory'),
(130682, 103759, 'fr', 'name', 'Institut Des HumanitƩs NumƩriques'),
(130683, 103759, 'en', 'name', 'Institute of Digital Humanities'),
(130684, 103760, 'es', 'name', 'Centro MƩdico Naval Nacional'),
(130685, 103760, 'en', 'name', 'Walter Reed National Military Medical Center'),
(130686, 103761, 'en', 'name', 'NSF CI Compass'),
(130687, 103762, 'en', 'name', 'Institute of Marine Research'),
(130688, 103762, 'es', 'name', 'Instituto de Investigaciones Marinas'),
(130689, 103763, 'en', 'name', 'Rockefeller University Press'),
(130690, 103764, 'en', 'name', 'Jouf University'),
(130691, 103765, 'en', 'name', 'University of Wrocław'),
(130692, 103765, 'de', 'name', 'UniversitƤt Breslau'),
(130693, 103765, 'pl', 'name', 'Uniwersytet Wrocławski'),
(130694, 103766, 'en', 'name', 'The Evaluation Center'),
(130695, 103767, 'en', 'name', 'Fisheries Education and Training Agency'),
(130696, 103768, 'de', 'name', 'Kuratorium Pfahlbauten'),
(130697, 103769, 'en', 'name', 'Naval Air Systems Command'),
(130698, 103770, 'en', 'name', 'Institute of Theatre and Film Research of the Art Research Centre of the Slovak Academy of Sciences'),
(130699, 103770, 'sk', 'name', 'Ústav divadelnej afilmovej vedy Centra vied o umení Slovenskej akadémie vied'),
(130700, 103771, 'en', 'name', 'Florey Institute of Neuroscience and Mental Health'),
(130701, 103772, 'en', 'name', 'St. Petersburg State Technological Institute'),
(130702, 103772, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(130703, 103773, 'en', 'name', 'Physics Research Initiatives'),
(130704, 103774, 'en', 'name', 'Nepean Hospital'),
(130705, 103775, 'en', 'name', 'Air Education and Training Command'),
(130706, 103776, 'en', 'name', 'Sydney Microscopy & Microanalysis'),
(130707, 103777, 'pt', 'name', 'Instituto Superior de Administração e Finanças'),
(130708, 103778, 'es', 'name', 'Observatorio Nacional de Ciencia, Tecnología e Innovación'),
(130709, 103779, 'en', 'name', 'Naval Medical Research Unit San Antonio'),
(130710, 103780, 'en', 'name', 'Space Delta 3'),
(130711, 103781, 'en', 'name', 'Indiana University Fort Wayne'),
(130712, 103782, 'en', 'name', 'IRL HealthDEEP'),
(130713, 103783, 'en', 'name', 'Institute of Molecular Physics of the Polish Academy of Sciences'),
(130714, 103783, 'pl', 'name', 'Instytut Fizyki Molekularnej Polskiej Akademii Nauk'),
(130715, 103784, 'en', 'name', 'China Construction Sixth Engineering Bureau Corp., Ltd (China)'),
(130716, 103784, 'zh', 'name', 'äø­å›½å»ŗē­‘ē¬¬å…­å·„ēØ‹å±€ęœ‰é™å…¬åø'),
(130717, 103785, 'de', 'name', 'Museum Burg Golling'),
(130718, 103786, 'en', 'name', 'ARC Centre of Excellence for Plant Success in Nature and Agriculture'),
(130719, 103787, 'en', 'name', 'Francophone Society of Nutritherapy and Applied Nutrigenetics'),
(130720, 103787, 'fr', 'name', 'SociƩtƩ Francophone de NutrithƩrapie et de NutrigƩnƩtique AppliquƩe'),
(130721, 103788, 'en', 'name', 'Government College of Pharmacy Rohru'),
(130722, 103789, 'fr', 'name', 'Observatoire Aquitain des Sciences de l''Univers'),
(130723, 103790, 'en', 'name', 'All-Russian research Institute of metrological service'),
(130724, 103790, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологической ŃŠ»ŃƒŠ¶Š±Ń‹'),
(130725, 103791, 'en', 'name', 'Cancer Australia'),
(130726, 103792, 'en', 'name', 'Bihar National College'),
(130727, 103793, 'en', 'name', 'Royal Hospital for Women'),
(130728, 103794, 'en', 'name', 'Patna University'),
(130729, 103794, 'hi', 'name', 'पटना ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(130730, 103794, 'bn', 'name', 'পটনা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(130731, 103794, 'pa', 'name', 'ਪਟਨਾ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(130732, 103795, 'en', 'name', 'Centre of Excellence for Biosecurity Risk Analysis'),
(130733, 103796, 'en', 'name', 'Rice University'),
(130734, 103796, 'es', 'name', 'Universidad Rice'),
(130735, 103797, 'en', 'name', 'Women Fund Tanzania Trust'),
(130736, 103798, 'en', 'name', 'Arts Flanders Japan'),
(130737, 103798, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ćƒ¼ćƒ„ćƒ•ćƒ©ćƒ³ćƒ€ćƒ¼ć‚¹ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(130738, 103799, 'fr', 'name', 'Structure et activitƩ des biomolƩcules normales et pathologiques'),
(130739, 103800, 'en', 'name', 'Chadli Bendjedid El Tarf University'),
(130740, 103800, 'fr', 'name', 'UniversitƩ Chadli Bendjedid d''El Tarf'),
(130741, 103800, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų“Ų§Ų°Ł„ŁŠ بن جديد -الطارف'),
(130742, 103801, 'en', 'name', 'U.S. Army Sustainment Command'),
(130743, 103802, 'en', 'name', 'American Counseling Association'),
(130744, 103803, 'en', 'name', 'Austin Health'),
(130745, 103804, 'en', 'name', 'Association for Water and Rural Development'),
(130746, 103805, 'es', 'name', 'Instituto de Investigación, Desarrollo e Innovación en Biotecnología Sanitaria de Elche (IDiBE)'),
(130747, 103806, 'es', 'name', 'Instituto Tecnológico Superior de Huichapan'),
(130748, 103807, 'en', 'name', 'Geography and Planning Laboratory'),
(130749, 103807, 'fr', 'name', 'Laboratoire de gƩographie et d''amƩnagement'),
(130750, 103808, 'en', 'name', 'Institute of Biology Bucharest'),
(130751, 103809, 'en', 'name', 'IRYO Sosei University'),
(130752, 103809, 'ja', 'name', 'åŒ»ē™‚å‰µē”Ÿå¤§å­¦'),
(130753, 103810, 'da', 'name', 'Museum Lolland-Falster'),
(130754, 103811, 'en', 'name', 'Emergent Behaviors of Integrated Cellular Systems'),
(130755, 103812, 'en', 'name', 'Iida Junior College'),
(130756, 103812, 'ja', 'name', 'é£Æē”°ēŸ­ęœŸå¤§å­¦'),
(130757, 103813, 'id', 'name', 'Universitas Nahdlatul Ulama Blitar'),
(130758, 103814, 'en', 'name', 'Kogi State University'),
(130759, 103815, 'en', 'name', 'ARC Centre of Excellence for Dark Matter Particle Physics'),
(130760, 103816, 'en', 'name', 'Ministry of Agriculture'),
(130761, 103816, 'et', 'name', 'Regionaal - Ja PƵllumajandusministeerium'),
(130762, 103817, 'ta', 'name', 'Bangko Sentral ng Pilipinas'),
(130763, 103817, 'en', 'name', 'Central Bank of the Philippines'),
(130764, 103818, 'en', 'name', 'Brightpoint Community College'),
(130765, 103819, 'en', 'name', 'Kokand branch of Tashkent State Technical University named after Islam Karimov'),
(130766, 103820, 'en', 'name', 'Venkateswara Homoeopathic Medical College and Hospital'),
(130767, 103821, 'en', 'name', 'Oceans Institute'),
(130768, 103822, 'en', 'name', 'Abdou Moumouni University'),
(130769, 103822, 'fr', 'name', 'UniversitƩ Abdou Moumouni'),
(130770, 103823, 'en', 'name', 'Phasecraft Inc. (United States)'),
(130771, 103824, 'en', 'name', 'J. Selye University'),
(130772, 103824, 'hu', 'name', 'Selye JƔnos Egyetem'),
(130773, 103824, 'sk', 'name', 'Univerzita J. Selyeho'),
(130774, 103825, 'en', 'name', 'Haute-Provence Observatory'),
(130775, 103825, 'fr', 'name', 'Observatoire de Haute-Provence'),
(130776, 103826, 'en', 'name', 'Argosy University'),
(130777, 103827, 'en', 'name', 'The State Archives in Dubrovnik'),
(130778, 103828, 'en', 'name', 'North Devon District Hospital'),
(130779, 103829, 'en', 'name', 'Rogante Engineering'),
(130780, 103830, 'en', 'name', 'Northern Devon Healthcare NHS Trust'),
(130781, 103831, 'en', 'name', 'Chongqing Medical University'),
(130782, 103831, 'zh', 'name', 'é‡åŗ†åŒ»ē§‘å¤§å­¦'),
(130783, 103832, 'en', 'name', 'U.S. Army Materiel Command'),
(130784, 103833, 'fr', 'name', 'Biopathologie de la myƩline, neuroprotection et stratƩgies thƩrapeutiques'),
(130785, 103834, 'eu', 'name', 'Euskalmet'),
(130786, 103835, 'en', 'name', 'KMEA Engineering College'),
(130787, 103836, 'id', 'name', 'STMIK Widya Cipta Dharma'),
(130788, 103837, 'en', 'name', 'Biomedical Research Center of the Slovak Academy of Sciences'),
(130789, 103837, 'sk', 'name', 'Biomedicƭnske Centrum SlovenskƔ akadƩmia vied'),
(130790, 103838, 'en', 'name', 'Steno Diabetes Centers'),
(130791, 103839, 'en', 'name', 'Autonomous Nonprofit Organization Scientific Research Center for Information Technologies in the Museum'),
(130792, 103839, 'ru', 'name', 'ŠŠ²Ń‚Š¾Š½Š¾Š¼Š½Š°Ń ŠŠµŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ°Ń ŠžŃ€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Ń‹Ń… Технологий Š’ Музее ā€œŠ˜Ń‚Š¼ŃƒŃā€'),
(130793, 103840, 'en', 'name', 'Curtin Hub for Immersive Visualisation and eResearch'),
(130794, 103841, 'en', 'name', 'United States Navy'),
(130795, 103842, 'en', 'name', 'Melbourne Health'),
(130796, 103843, 'en', 'name', 'Botany Foundation'),
(130797, 103844, 'az', 'name', 'Azərbaycan Respublikası Təhsil Nazirliyinin'),
(130798, 103844, 'en', 'name', 'Ministry of Education of Azerbaijan Republic'),
(130799, 103845, 'en', 'name', 'The University of Nagano'),
(130800, 103845, 'ja', 'name', 'é•·é‡ŽēœŒē«‹å¤§å­¦'),
(130801, 103846, 'en', 'name', 'University of Forestry and Environmental Science'),
(130802, 103846, 'my', 'name', 'į€žį€…į€ŗį€į€±į€¬į€”į€¾į€„į€·į€ŗį€•į€į€ŗį€į€”į€ŗį€øį€€į€»į€„į€ŗį€†į€­į€Æį€„į€ŗį€›į€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ-ရေဆင်း'),
(130803, 103847, 'en', 'name', 'Physical Sciences Division'),
(130804, 103847, 'ru', 'name', 'ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ физических наук Š ŠŠ'),
(130805, 103848, 'fr', 'name', 'Laboratoire de MƩcanique et MatƩriaux du GƩnie Civil'),
(130806, 103848, 'en', 'name', 'Mechanics and Materials Laboratory of Civil Engineering'),
(130807, 103849, 'en', 'name', 'Centre of Experimental Medicine of the Slovak Academy of Sciences'),
(130808, 103849, 'sk', 'name', 'Centrum experimentƔlnej medicƭny SlovenskƔ akadƩmia vied'),
(130809, 103850, 'en', 'name', 'Naval Facilities Engineering Systems Command'),
(130810, 103851, 'en', 'name', 'Kinder Institute for Urban Research'),
(130811, 103852, 'en', 'name', 'Indonesian Palm Oil Technology Institute'),
(130812, 103852, 'id', 'name', 'Institut Teknologi Sawit Indonesia'),
(130813, 103852, 'ar', 'name', 'المعهد Ų§Ł„Ų„Ł†ŲÆŁˆŁ†ŁŠŲ³ŁŠ Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ زيت Ų§Ł„Ł†Ų®ŁŠŁ„'),
(130814, 103853, 'en', 'name', 'Tokyo Shinagawa Hospital'),
(130815, 103853, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·‘é‡Žä¼šę±äŗ¬å“å·ē—…é™¢'),
(130816, 103854, 'en', 'name', 'International Association of Computer Science in Sport'),
(130817, 103855, 'en', 'name', 'Data Archiving Networked Services (DANS)'),
(130818, 103855, 'nl', 'name', 'Het Nationale expertisecentrum en repository voor onderzoeksdata'),
(130819, 103856, 'fr', 'name', 'Centre d''Ɖtudes Constitutionnelles et Politiques'),
(130820, 103857, 'fr', 'name', 'Institut de recherche en propriƩtƩ intellectuelle'),
(130821, 103858, 'en', 'name', 'Space Delta 2'),
(130822, 103859, 'en', 'name', 'Shibata Gakuen University'),
(130823, 103859, 'ja', 'name', 'ęŸ“ē”°å­¦åœ’å¤§å­¦'),
(130824, 103860, 'en', 'name', 'Global Mountain Action'),
(130825, 103861, 'en', 'name', 'Australian Institute of Health and Welfare'),
(130826, 103862, 'fr', 'name', 'Centre de Recherches de l''Institut des Hautes Ɖtudes Internationales'),
(130827, 103863, 'en', 'name', 'Afya na Haki Institute'),
(130828, 103864, 'fr', 'name', 'UnitƩ d''Appui et de Recherche PythƩas'),
(130829, 103865, 'en', 'name', 'Tokyo Shinagawa Hospital'),
(130830, 103865, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·‘é‡Žä¼šę±äŗ¬å“å·ē—…é™¢'),
(130831, 103866, 'en', 'name', 'Geosciences and Environment Laboratory'),
(130832, 103866, 'fr', 'name', 'Laboratoire GƩosciences et Environnement Cergy'),
(130833, 103867, 'hu', 'name', 'Atomenergia Kutatóintézet'),
(130834, 103867, 'en', 'name', 'Institute for Atomic Energy Research'),
(130835, 103868, 'en', 'name', 'Research Association of High-Throughput Design and Development for Advanced Functional Materials'),
(130836, 103868, 'ja', 'name', 'å…ˆē«Æē“ ęé«˜é€Ÿé–‹ē™ŗęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(130837, 103869, 'pl', 'name', 'Politechnika Poznańska'),
(130838, 103869, 'en', 'name', 'Poznań University of Technology'),
(130839, 103870, 'fr', 'name', 'Centre de recherche en amƩnagement et dƩveloppement'),
(130840, 103871, 'fr', 'name', 'Centre de Microbiologie du Sol et de l''Environnement'),
(130841, 103872, 'fr', 'name', 'Fondation pour l''Innovation en CardiomƩtabolisme et Nutrition'),
(130842, 103872, 'en', 'name', 'Foundation for Innovation in Cardiometabolism and Nutrition'),
(130843, 103873, 'en', 'name', 'Combined Military Hospital Dhaka'),
(130844, 103873, 'bn', 'name', 'ą¦øą¦®ą§ą¦®ą¦æą¦²ą¦æą¦¤ সামরিক হাসপাতাল (ঢাকা)'),
(130845, 103874, 'ro', 'name', 'Spitalul Clinic de Ortopedie, Traumatologie și TBC Osteoarticular Foișor'),
(130846, 103874, 'en', 'name', 'ā€œFoisorā€ Clinical Hospital of Orthopaedics, Traumatology and Osteoarticular TB'),
(130847, 103875, 'en', 'name', 'Nablus University for Vocational and Technical Education'),
(130848, 103876, 'fr', 'name', 'Formation, Innovation, Recherche, Services et Transfert en Temps-FrƩquence'),
(130849, 103877, 'en', 'name', 'Terrestrial Ecosystem Research Network'),
(130850, 103878, 'en', 'name', 'Equator University of Science and Technology'),
(130851, 103879, 'pl', 'name', 'Ministerstwo Spraw Wewnętrznych i Administracji'),
(130852, 103879, 'en', 'name', 'Ministry of Interior and Administration'),
(130853, 103880, 'en', 'name', 'Mahidol University'),
(130854, 103880, 'th', 'name', 'ดหาวณทยาคัยดหณดค'),
(130855, 103881, 'en', 'name', 'University of Cross River State'),
(130856, 103882, 'en', 'name', 'Naval Submarine Medical Research Laboratory'),
(130857, 103883, 'sk', 'name', 'Ministerstvo pƓdohospodƔrstva a rozvoja vidieka Slovenskej republiky'),
(130858, 103883, 'en', 'name', 'Ministry of Agriculture and Rural Development of the Slovak Republic'),
(130859, 103884, 'en', 'name', 'Presence Foundation'),
(130860, 103884, 'nl', 'name', 'Stichting Presentie'),
(130861, 103885, 'es', 'name', 'Banco de Germoplasma Vegetal de la UPM "César Gómez Campo"'),
(130862, 103885, 'en', 'name', 'Germplasm bank of the Technical University of Madrid'),
(130863, 103886, 'no_lang_code', 'name', 'Kasetsart University'),
(130864, 103886, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøąø©ąø•ąø£ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(130865, 103887, 'sk', 'name', 'Centrum biológie rastlín a biodiverzity Slovenskej akadémie vied'),
(130866, 103887, 'en', 'name', 'Plant Science and Biodiversity Centre of the Slovak Academy of Sciences'),
(130867, 103888, 'pt', 'name', 'Instituto PolitƩcnico de Coimbra'),
(130868, 103888, 'en', 'name', 'Polytechnic Institute of Coimbra'),
(130869, 103889, 'id', 'name', 'Badan Pengembangan Sumber Daya Manusia Provinsi DKI Jakarta'),
(130870, 103890, 'en', 'name', 'Institute of Social Sciences of the Centre of Social and Psychological Sciences of the Slovak Academy of Sciences'),
(130871, 103890, 'sk', 'name', 'Spoločenskovedný Ćŗstav Centra spoločenských a psychologických vied Slovenskej akadĆ©mie vied'),
(130872, 103891, 'en', 'name', 'Bureau of Medicine and Surgery'),
(130873, 103892, 'es', 'name', 'Grupo Empresarial LABIOFAM'),
(130874, 103893, 'en', 'name', 'Naval Medical Research Command'),
(130875, 103894, 'fr', 'name', 'Institut Pytheas'),
(130876, 103895, 'en', 'name', 'Royal Devon & Exeter NHS Foundation Trust'),
(130877, 103896, 'en', 'name', 'European Multidisciplinary Seafloor and water column Observatory'),
(130878, 103897, 'en', 'name', 'Institute of Animal Biochemistry and Genetics of the Slovak Academy of Sciences'),
(130879, 103897, 'sk', 'name', 'Ústav biochĆ©mie a genetiky živočƭchov Centra biovied Slovenskej akadĆ©mie vied'),
(130880, 103898, 'en', 'name', 'Naval Hospital Bremerton'),
(130881, 103899, 'fr', 'name', 'MƩtƩo-France'),
(130882, 103900, 'fr', 'name', 'Institut de Criminologie et de Droit PƩnal de Paris'),
(130883, 103901, 'en', 'name', 'Australian Coral Reef Society'),
(130884, 103902, 'en', 'name', 'Centre of Biosciences of the Slovak Academy of Sciences'),
(130885, 103902, 'sk', 'name', 'Centrum biovied SlovenskƔ akadƩmia vied'),
(130886, 103903, 'en', 'name', 'Vertical Farm Institute'),
(130887, 103904, 'en', 'name', 'Academic Perpective'),
(130888, 103904, 'tr', 'name', 'Akademik Perspektif Derneği'),
(130889, 103905, 'en', 'name', 'Telemedicine & Advanced Technology Research Center'),
(130890, 103906, 'en', 'name', 'Dr. Babasaheb Ambedkar Technological University'),
(130891, 103906, 'mr', 'name', 'ą¤”ą„‰. ą¤¬ą¤¾ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤†ą¤‚ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(130892, 103907, 'en', 'name', 'Tanzania Fisheries Research Institute'),
(130893, 103908, 'en', 'name', 'Austin Hospital'),
(130894, 103909, 'en', 'name', 'The Nature Center at Steele Creek Park'),
(130895, 103910, 'en', 'name', 'American International Theism University'),
(130896, 103911, 'en', 'name', 'Federal Polytechnic Wannune'),
(130897, 103912, 'en', 'name', 'National Taipei University of Technology'),
(130898, 103912, 'zh', 'name', 'åœ‹ē«‹č‡ŗåŒ—ē§‘ęŠ€å¤§å­ø'),
(130899, 103913, 'en', 'name', 'Institute for Technical Physics and Materials Science'),
(130900, 103913, 'hu', 'name', 'Műszaki Fizikai és AnyagtudomÔnyi Intézet'),
(130901, 103914, 'fr', 'name', 'Synergies Langues Arts Musique'),
(130902, 103915, 'en', 'name', 'Korea Football Association'),
(130903, 103916, 'en', 'name', 'Argosy University'),
(130904, 103917, 'en', 'name', 'Sydney Hospital'),
(130905, 103918, 'en', 'name', 'National University of Battambang'),
(130906, 103918, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž‡įž¶įžįž·įž”įž¶įžįŸ‹įžŠįŸ†įž”įž„'),
(130907, 103919, 'en', 'name', 'Tiverton and District Hospital'),
(130908, 103920, 'en', 'name', 'Pakistan Museum of Natural History'),
(130909, 103920, 'ur', 'name', 'پاکستا ن Ł…ŪŒŁˆŲ²ŪŒŁ… آف Ł†ŪŒŚ†Ų±Ł„ ہسٹرئ'),
(130910, 103921, 'en', 'name', 'Budleigh Salterton Hospital'),
(130911, 103922, 'id', 'name', 'Universitas Harapan Bangsa'),
(130912, 103923, 'en', 'name', 'Tianjin University of Technology and Education'),
(130913, 103923, 'zh', 'name', 'å¤©ę“„čŒäøšęŠ€ęœÆåøˆčŒƒå¤§å­¦'),
(130914, 103924, 'fr', 'name', 'UniversitƩ Bordeaux Segalen'),
(130915, 103925, 'en', 'name', 'Southern Institute of Water Resources Research'),
(130916, 103925, 'vi', 'name', 'Viện Khoa hį»c Thį»§y lợi miền Nam'),
(130917, 103926, 'en', 'name', 'Catholic Institute of Technology'),
(130918, 103927, 'en', 'name', 'Symbiosis International University'),
(130919, 103928, 'en', 'name', 'Life Science Alliance LLC (United States)'),
(130920, 103929, 'en', 'name', 'GreenCross Veterinary Products Co. (South Korea)'),
(130921, 103930, 'ca', 'name', 'Universitat de ParĆ­s Sud'),
(130922, 103930, 'en', 'name', 'University of Paris-Sud'),
(130923, 103930, 'fr', 'name', 'UniversitƩ Paris-Sud'),
(130924, 103931, 'fr', 'name', 'Institut de Recherche et Coordination Acoustique Musique'),
(130925, 103931, 'en', 'name', 'Institute for Research and Coordination in Acoustics/Music'),
(130926, 103932, 'en', 'name', 'Sumerian Scriptum Synthesis Publisher'),
(130927, 103933, 'en', 'name', 'ARC Centre of Excellence for Engineered Quantum Systems'),
(130928, 103934, 'es', 'name', 'Escuela Radical'),
(130929, 103935, 'en', 'name', 'Government of India'),
(130930, 103936, 'en', 'name', 'International Taraz University named after Sherkhan Murtaza'),
(130931, 103937, 'en', 'name', 'Asia Technology Research Institute'),
(130932, 103938, 'en', 'name', 'Capacity Development in Nutrition'),
(130933, 103939, 'en', 'name', 'Center for Documentation and Research on Left-Wing Culture'),
(130934, 103939, 'es', 'name', 'Centro de Documentación e Investigación de la Cultura de Izquierdas'),
(130935, 103940, 'en', 'name', 'XploreOpen'),
(130936, 103941, 'en', 'name', 'University of Hormozgan'),
(130937, 103942, 'en', 'name', 'Central State Scientific and Technical Archive of Ukraine'),
(130938, 103942, 'uk', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ Гержавний науково-технічний архів України'),
(130939, 103943, 'en', 'name', 'Naval Sea Systems Command'),
(130940, 103944, 'en', 'name', 'Canadian Cancer Society'),
(130941, 103944, 'fr', 'name', 'SociƩtƩ canadienne du cancer'),
(130942, 103945, 'id', 'name', 'Universitas Aufa Royhan'),
(130943, 103946, 'en', 'name', 'Womack Army Medical Center'),
(130944, 103947, 'no_lang_code', 'name', 'L''OrƩal (India)'),
(130945, 103948, 'en', 'name', 'Tokyo Metropolitan Islands Area Research and Development Center for Agriculture, Forestry and Fisheries'),
(130946, 103948, 'ja', 'name', 'ę±äŗ¬éƒ½å³¶ć—ć‚‡č¾²ęž—ę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(130947, 103949, 'en', 'name', 'Poltava State Medical University'),
(130948, 103949, 'uk', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(130949, 103950, 'en', 'name', 'HUN-REN Centre for Energy Research'),
(130950, 103950, 'hu', 'name', 'HUN-REN EnergiatudomÔnyi Kutatóközpont'),
(130951, 103951, 'en', 'name', 'Aerosol d.o.o. (Slovenia)'),
(130952, 103952, 'fr', 'name', 'Laboratoire de recherche en sciences de gestion PanthƩon-Assas'),
(130953, 103953, 'en', 'name', 'Jan Długosz University'),
(130954, 103953, 'pl', 'name', 'Uniwersytet Jana Długosza wCzęstochowie'),
(130955, 103954, 'en', 'name', 'Foraminifera.eu Lab'),
(130956, 103955, 'tr', 'name', 'Sincan Eğitim ve Araştırma Hastanesi'),
(130957, 103955, 'en', 'name', 'Sincan Training and Research Hospital'),
(130958, 103956, 'en', 'name', 'Xichong County People''s Hospital'),
(130959, 103956, 'zh', 'name', 'č„æå……åŽæäŗŗę°‘åŒ»é™¢'),
(130960, 103957, 'en', 'name', 'Biophysics Institute'),
(130961, 103957, 'it', 'name', 'Instituto di Biofisica'),
(130962, 103958, 'en', 'name', 'Alandalus University For Science & Technology'),
(130963, 103958, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأندلس Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(130964, 103959, 'de', 'name', 'Bundesanstalt für Straßenwesen'),
(130965, 103959, 'en', 'name', 'Federal Highway and Transport Research Institute'),
(130966, 103960, 'en', 'name', 'Sarsen Amanzholov East Kazakhstan University'),
(130967, 103960, 'ru', 'name', 'Š’ŠžŠ”Š¢ŠžŠ§ŠŠž-ŠšŠŠ—ŠŠ„Š”Š¢ŠŠŠ”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢ Š˜ŠœŠ•ŠŠ˜ Š”ŠŠ Š”Š•ŠŠ ŠŠœŠŠŠ–ŠžŠ›ŠžŠ’Š'),
(130968, 103960, 'kk', 'name', 'Š”Ó˜Š Š”Š•Š ŠŠœŠŠŠ–ŠžŠ›ŠžŠ’ ŠŠ¢Š«ŠŠ”ŠŅ’Š« ШЫҒЫД ŅšŠŠ—ŠŅšŠ”Š¢ŠŠ ŠœŠ•ŠœŠ›Š•ŠšŠ•Š¢Š¢Š†Šš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š†'),
(130969, 103961, 'en', 'name', 'Sydney College of Divinity'),
(130970, 103962, 'fr', 'name', 'DƩlƩgation Paris 5'),
(130971, 103963, 'sr', 'name', 'Centar za istraživanje i razvoj druŔtva IDEAS'),
(130972, 103963, 'en', 'name', 'Centre for Research and Social Development IDEAS'),
(130973, 103964, 'en', 'name', 'Tunis University'),
(130974, 103964, 'fr', 'name', 'UniversitƩ de Tunis'),
(130975, 103964, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³'),
(130976, 103965, 'en', 'name', 'International Platform on Mental Health'),
(130977, 103965, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½Š° ŠŸŠ»Š°Ń‚Ń„Š¾Ń€Š¼Š° Ā«ŠŸŃŠøŃ…Ń–Ń‡Š½Šµ Š·Š“Š¾Ń€Š¾Š²ā€™Ń: Š³Š»Š¾Š±Š°Š»ŃŒŠ½Ń– виклики»'),
(130978, 103966, 'pl', 'name', 'Sieć Badawcza Łukasiewicz –Instytut Inżynierii Materiałów Polimerowych i Barwników'),
(130979, 103966, 'en', 'name', 'Łukasiewicz Research Network - Institute for Engineering of Polymer Materials and Dyes'),
(130980, 103967, 'no_lang_code', 'name', 'L''Oreal (United States)'),
(130981, 103968, 'en', 'name', 'College of Engineering Trivandrum'),
(130982, 103969, 'fr', 'name', 'Pitié-Salpêtrière Hospital'),
(130983, 103970, 'en', 'name', 'Queen''s University Belfast'),
(130984, 103971, 'en', 'name', 'Sir Charles Gairdner Hospital'),
(130985, 103972, 'fr', 'name', 'Labex EMC3'),
(130986, 103973, 'en', 'name', 'School, Mutations, Learning'),
(130987, 103973, 'fr', 'name', 'Ɖcole, Mutations, Apprentissages'),
(130988, 103974, 'en', 'name', 'Nuclear Institute of Agriculture, Tandojam'),
(130989, 103975, 'es', 'name', 'Fundación Observatorio Ƒuble'),
(130990, 103975, 'en', 'name', 'Ƒuble Observatory Foundation'),
(130991, 103976, 'en', 'name', 'Kanazawa Municipal Hospital'),
(130992, 103976, 'ja', 'name', '金沢市立病院'),
(130993, 103977, 'en', 'name', 'Madigan Army Medical Center'),
(130994, 103978, 'fr', 'name', 'Connaissance & Intelligence Artificielle DistribuƩes'),
(130995, 103979, 'en', 'name', 'Yildirim Beyazit University Yenimahalle Education and Research Hospital'),
(130996, 103980, 'en', 'name', 'Pakistan Science Foundation'),
(130997, 103981, 'no', 'name', 'Universitetssenteret pƄ Kjeller'),
(130998, 103981, 'en', 'name', 'University Graduate Center'),
(130999, 103982, 'en', 'name', 'Australian Centre for Excellence in Antarctic Science'),
(131000, 103983, 'en', 'name', 'International Space Centre'),
(131001, 103984, 'en', 'name', 'CECOM Software Engineering Center'),
(131002, 103985, 'en', 'name', 'Swedish National Space Agency'),
(131003, 103986, 'en', 'name', 'Catholic University of Santiago de Guayaquil'),
(131004, 103986, 'es', 'name', 'Universidad Católica de Santiago de Guayaquil'),
(131005, 103987, 'en', 'name', 'International Centre for Radio Astronomy Research'),
(131006, 103988, 'fr', 'name', 'Observatoire des Sciences de l''Environnement de Rennes'),
(131007, 103989, 'en', 'name', 'Abadan University of Medical Sciences'),
(131008, 103989, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی آبادان'),
(131009, 103990, 'en', 'name', 'Denau Institute of Entrepreneurship and Pedagogy'),
(131010, 103990, 'uz', 'name', 'Denov tadbirkorlik va pedagogika instituti'),
(131011, 103990, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° Šø пеГагогики имени Денова'),
(131012, 103990, 'ps', 'name', 'ŲÆŪŒŁ†ŁˆŁ ŲÆ Ł…ŲŖŲ“ŲØŲ«ŪŒŲŖ او تدریس Ų§Ł†Ų³Ł¼ŪŒŁ¼ŪŒŁˆŁ¼'),
(131013, 103991, 'en', 'name', 'Department of Livestock Services'),
(131014, 103991, 'bn', 'name', 'ą¦Ŗą§ą¦°ą¦¾ą¦£ą¦æą¦øą¦®ą§ą¦Ŗą¦¦ ą¦…ą¦§ą¦æą¦¦ą¦Ŗą§ą¦¤ą¦°'),
(131015, 103992, 'en', 'name', 'Space Delta 6'),
(131016, 103993, 'en', 'name', 'Northern Hospital'),
(131017, 103994, 'az', 'name', 'Geologiya və Geofizika İnstitutu'),
(131018, 103994, 'en', 'name', 'Institute of Geology and Geophysics'),
(131019, 103995, 'es', 'name', 'Universidad Nacional Experimental del Yaracuy'),
(131020, 103996, 'en', 'name', 'United States Naval Hospital Okinawa'),
(131021, 103996, 'ja', 'name', 'ē±³å›½ęµ·č»ē—…é™¢'),
(131022, 103997, 'en', 'name', 'IRYO Sosei University'),
(131023, 103997, 'ja', 'name', 'åŒ»ē™‚å‰µē”Ÿå¤§å­¦'),
(131024, 103998, 'en', 'name', 'EMSO-France'),
(131025, 103999, 'en', 'name', 'Navy Expeditionary Combat Command'),
(131026, 104000, 'en', 'name', 'Institute of Climate-Smart Agriculture of the National Academy of Agrarian Sciences of Ukraine'),
(131027, 104000, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кліматично орієнтованого ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(131028, 104001, 'en', 'name', 'Osipyan Institute of Solid State Physics RAS'),
(131029, 104002, 'en', 'name', 'Okanagan College'),
(131030, 104003, 'en', 'name', 'Kyzylorda Open University'),
(131031, 104003, 'ru', 'name', 'ŠšŃ‹Š·Ń‹Š»Š¾Ń€Š“ŠøŠ½ŃŠŗŠøŠ¹ открытый ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(131032, 104003, 'kk', 'name', 'ŅšŃ‹Š·Ń‹Š»Š¾Ń€Š“Š° Š°ŃˆŃ‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(131033, 104004, 'es', 'name', 'Instituto de Investigación en Paleobiología y Geología'),
(131034, 104005, 'fr', 'name', 'Geosciences Paris-Saclay'),
(131035, 104006, 'en', 'name', 'Center for Emergency Situations and Disaster Risk Reduction'),
(131036, 104007, 'en', 'name', 'CUPA-HR'),
(131037, 104008, 'en', 'name', 'Russian Association of Computer Science in Sport'),
(131038, 104008, 'ru', 'name', 'ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ ŠŗŠ¾Š¼ŠæŃŒŃŽŃ‚ŠµŃ€Š½Ń‹Ń… наук в спорте'),
(131039, 104009, 'en', 'name', 'U.S. Army CECOM Integrated Logistics Support Center'),
(131040, 104010, 'en', 'name', 'Heavitree Hospital'),
(131041, 104011, 'en', 'name', 'Autonomous State Medical College, Pilibhit'),
(131042, 104011, 'hi', 'name', 'ą¤øą„ą¤µą¤¶ą¤¾ą¤øą„€ ą¤°ą¤¾ą¤œą„ą¤Æ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤Ŗą„€ą¤²ą„€ą¤­ą„€ą¤¤'),
(131043, 104012, 'en', 'name', 'Australian Sports Commission'),
(131044, 104013, 'en', 'name', 'Scottish Avalanche Information Service'),
(131045, 104014, 'en', 'name', 'State Organization "Institute of Market and Economic&Ecological Researches of NAS of Ukraine"'),
(131046, 104014, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŠøŠ½ŠŗŃƒ і економіко-екологічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ŠŠŠ України"'),
(131047, 104015, 'de', 'name', 'Hogrefe Verlag GmbH & Co. KG (Germany)'),
(131048, 104016, 'en', 'name', 'TYDEX, LLC (Russia)'),
(131049, 104017, 'en', 'name', 'Anglo-American University'),
(131050, 104017, 'cs', 'name', 'Anglo-americkÔ vysokÔ Ŕkola'),
(131051, 104018, 'en', 'name', 'Naval Hospital Jacksonville'),
(131052, 104019, 'en', 'name', 'Naval Hospital Pensacola'),
(131053, 104020, 'en', 'name', 'GENESIS Hospital'),
(131054, 104020, 'el', 'name', 'ĪšĪ»Ī¹Ī½Ī¹ĪŗĪ®Ļ‚ Ī“Ī•ĪĪ•Ī£Ī™Ī£'),
(131055, 104021, 'en', 'name', 'United States Army Futures Command'),
(131056, 104022, 'en', 'name', 'Centre for Quantum Computation and Communication Technology'),
(131057, 104023, 'en', 'name', 'Australian Health Practitioner Regulation Agency'),
(131058, 104024, 'en', 'name', 'GlobalNeurology'),
(131059, 104025, 'en', 'name', 'Dharanidhar University, Keonjhar'),
(131060, 104026, 'en', 'name', 'Project Data Sphere'),
(131061, 104027, 'no_lang_code', 'name', 'Mahasarakham University'),
(131062, 104027, 'th', 'name', 'ดหาวณทยาคัยดหาสารคาด'),
(131063, 104028, 'en', 'name', 'Co-design Center for Quantum Advantage'),
(131064, 104029, 'en', 'name', 'Bentley Health Service'),
(131065, 104030, 'de', 'name', 'Praxisklinik Rennbahn AG'),
(131066, 104031, 'en', 'name', 'PSG College of Technology'),
(131067, 104032, 'it', 'name', 'Institut Agricole RƩgional'),
(131068, 104033, 'en', 'name', 'United States Army Test and Evaluation Command'),
(131069, 104034, 'en', 'name', 'University of Kotli, Azad Jammu and Kashmir'),
(131070, 104035, 'en', 'name', 'Izmir KĆ¢tip Ƈelebi University'),
(131071, 104035, 'tr', 'name', 'İzmir KĆ¢tip Ƈelebi Üniversitesi'),
(131072, 104036, 'en', 'name', 'AuScope'),
(131073, 104037, 'en', 'name', 'Royal Devon University Healthcare NHS Foundation Trust'),
(131074, 104038, 'no_lang_code', 'name', 'Engility (United States)'),
(131075, 104039, 'en', 'name', 'Wilford Hall Ambulatory Surgical Center'),
(131076, 104040, 'en', 'name', 'National Institute of Fisheries Science'),
(131077, 104040, 'ko', 'name', 'źµ­ė¦½ģˆ˜ģ‚°ź³¼ķ•™ģ›'),
(131078, 104041, 'en', 'name', 'Kailai Technology (Shenzhen) Co., Ltd. (China)'),
(131079, 104042, 'en', 'name', 'Indiana University – Purdue University Fort Wayne'),
(131080, 104043, 'id', 'name', 'Universitas Nahdlatul Ulama Lampung'),
(131081, 104044, 'en', 'name', 'Guru Nanak First Grade College Bidar'),
(131082, 104045, 'id', 'name', 'Universitas Maarif Hasyim Latif'),
(131083, 104046, 'en', 'name', 'Central Institute of Pedagogical Sciences'),
(131084, 104046, 'es', 'name', 'Instituto Central de Ciencias Pedagógicas'),
(131085, 104047, 'en', 'name', 'St. Xavier''s College (Autonomous), Kolkata'),
(131086, 104048, 'en', 'name', 'Northern Virginia Mental Health Institute'),
(131087, 104049, 'en', 'name', 'Royal Women''s Hospital'),
(131088, 104050, 'en', 'name', 'Royal Brisbane and Women''s Hospital'),
(131089, 104051, 'en', 'name', 'Imam Ali University'),
(131090, 104052, 'en', 'name', 'University of Larestan'),
(131091, 104052, 'fa', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ لارستان'),
(131092, 104053, 'en', 'name', 'Digitisation Centre of Western Australia'),
(131093, 104054, 'en', 'name', 'Nusamandiri University'),
(131094, 104054, 'id', 'name', 'Universitas Nusa Mandiri'),
(131095, 104055, 'en', 'name', 'Malcolm Grow Medical Clinic'),
(131096, 104056, 'en', 'name', 'Moretonhampstead Hospital'),
(131097, 104057, 'en', 'name', 'Institute of Neurobiology of the Slovak Academy of Sciences'),
(131098, 104057, 'sk', 'name', 'Neurobiologický ústav Biomedicínskeho centra Slovenskej akadémie vied'),
(131099, 104058, 'en', 'name', 'Nicolaus Copernicus Superior School'),
(131100, 104058, 'pl', 'name', 'Szkoła Główna Mikołaja Kopernika'),
(131101, 104059, 'en', 'name', 'Solers Research Group (United States)'),
(131102, 104060, 'id', 'name', 'Universitas Islam Negeri Kiai Haji Achmad Siddiq Jember'),
(131103, 104061, 'it', 'name', 'Ordine Architetti Pianificatori Paesaggisti Conservatori di Napoli e Provincia'),
(131104, 104062, 'id', 'name', 'Universitas Harapan Medan'),
(131105, 104063, 'ga', 'name', 'Bord Iascaigh Mharaga'),
(131106, 104064, 'en', 'name', 'Croatian Natural History Museum'),
(131107, 104065, 'id', 'name', 'Universitas Islam Negeri Alauddin Makassar'),
(131108, 104066, 'en', 'name', 'Naval Education and Training Command'),
(131109, 104067, 'en', 'name', 'Government of South Australia'),
(131110, 104068, 'en', 'name', 'Ircam Amplify (France)'),
(131111, 104069, 'en', 'name', 'Symbiosis University of Applied Sciences'),
(131112, 104070, 'en', 'name', 'Art Research Centre of the Slovak Academy of Sciences'),
(131113, 104070, 'sk', 'name', 'Centrum vied o umenƭ SlovenskƔ akadƩmia vied'),
(131114, 104071, 'en', 'name', 'The London Interdisciplinary School'),
(131115, 104072, 'es', 'name', 'Fundación Cóndor Andino'),
(131116, 104073, 'de', 'name', 'PƤdagogische Hochschule Vorarlberg'),
(131117, 104074, 'en', 'name', 'Ottery St Mary Hospital'),
(131118, 104075, 'en', 'name', 'International University named after K.Sh.Toktomamatov'),
(131119, 104076, 'en', 'name', 'Space Delta 7'),
(131120, 104077, 'es', 'name', 'Laboratorio Nacional Lawrence Livermore'),
(131121, 104077, 'en', 'name', 'Lawrence Livermore National Laboratory'),
(131122, 104078, 'en', 'name', 'Naval Medical Research Unit DAYTON'),
(131123, 104079, 'en', 'name', 'State Institution «Dobrov Institute for Scientific and Technological Potential and Science History Studies of the NAS of Ukraine»'),
(131124, 104079, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ науково-технічного ŠæŠ¾Ń‚ŠµŠ½Ń†Ń–Š°Š»Ńƒ та історії науки ім. Š“. М. Доброва ŠŠŠ України»'),
(131125, 104080, 'fr', 'name', 'Institut des MatƩriaux'),
(131126, 104080, 'en', 'name', 'Materials Institute'),
(131127, 104081, 'en', 'name', 'Long Term Ecological Research Network'),
(131128, 104082, 'en', 'name', 'Naval Meteorology and Oceanography Command'),
(131129, 104083, 'en', 'name', 'Saxon Academy of Sciences and Humanities in Leipzig'),
(131130, 104083, 'de', 'name', 'SƤchsische Akademie der Wissenschaften zu Leipzig'),
(131131, 104084, 'en', 'name', 'Centre of Social and Psychological Sciences of the Slovak Academy of Sciences'),
(131132, 104084, 'sk', 'name', 'Centrum spoločenských a psychologických vied SlovenskĆ” akadĆ©mia vied'),
(131133, 104085, 'en', 'name', 'National University of Science and Technology'),
(131134, 104086, 'en', 'name', 'Nusmetics Pte Ltd (Singapore)'),
(131135, 104087, 'en', 'name', 'Okehampton Hospital'),
(131136, 104088, 'en', 'name', 'Cedar Creek Ecosystem Science Reserve'),
(131137, 104089, 'en', 'name', 'Federal College of Animal Health and Production Technology Ibadan'),
(131138, 104090, 'en', 'name', 'Lexicons, Texts, Speeches, Dictionaries'),
(131139, 104090, 'fr', 'name', 'Lexiques, Textes, Discours, Dictionnaires'),
(131140, 104091, 'en', 'name', 'South Central Minzu University'),
(131141, 104091, 'zh', 'name', 'äø­å—ę°‘ę—å¤§å­¦'),
(131142, 104092, 'en', 'name', 'Victor Chang Cardiac Research Institute'),
(131143, 104093, 'en', 'name', 'Exmouth Hospital'),
(131144, 104094, 'fr', 'name', 'UniversitƩ AndrƩ Salifou'),
(131145, 104095, 'en', 'name', 'Embry-Riddle Aeronautical University Daytona Beach Florida Campus'),
(131146, 104096, 'es', 'name', 'Universidad PolitƩcnica de Otzolotepec'),
(131147, 104097, 'en', 'name', 'National Science and Technology Commission'),
(131148, 104098, 'ro', 'name', 'Institutul Național de Cercetare - Dezvoltare Ć®n Informatică ICI București'),
(131149, 104098, 'en', 'name', 'National Institute for Research and Development in Informatics - ICI Bucharest'),
(131150, 104099, 'en', 'name', 'Mercu Buana University of Yogyakarta'),
(131151, 104099, 'id', 'name', 'Universitas Mercu Buana Yogyakarta'),
(131152, 104100, 'en', 'name', 'Baqai Medical University'),
(131153, 104100, 'ur', 'name', 'ŲØŁ‚Ų§Ų¦ŪŒ Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(131154, 104101, 'en', 'name', 'Zhangjiang Laboratory'),
(131155, 104101, 'zh', 'name', 'å¼ ę±Ÿå®žéŖŒå®¤'),
(131156, 104102, 'fr', 'name', 'Centre de Recherche de Droit International PrivƩ et du Commerce International'),
(131157, 104103, 'en', 'name', 'Ukrainian Medical Stomatological Academy'),
(131158, 104103, 'ru', 'name', 'Š£ŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń ŃŃ‚Š¾Š¼Š°Ń‚Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(131159, 104103, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° меГична стоматологічна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(131160, 104104, 'en', 'name', 'Ministry of Mines'),
(131161, 104104, 'hi', 'name', 'खान ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ');
INSERT INTO `ror_settings` VALUES
(131162, 104105, 'fr', 'name', 'Laboratoire Population Environnement DƩveloppement'),
(131163, 104105, 'en', 'name', 'Population Environment Development Laboratory'),
(131164, 104106, 'tr', 'name', 'İzmir Akademi Derneği'),
(131165, 104107, 'en', 'name', 'Institute of Economics'),
(131166, 104107, 'hu', 'name', 'Magyar TudomƔnyos AkadƩmia KƶzgazdasƔgtudomƔnyi IntƩzet'),
(131167, 104108, 'en', 'name', '59th Medical Wing'),
(131168, 104109, 'en', 'name', 'Image Insight Inc. (United States)'),
(131169, 104110, 'en', 'name', 'Mukuba University'),
(131170, 104111, 'en', 'name', 'United States Naval Medical Research Unit SOUTH'),
(131171, 104112, 'en', 'name', 'Mobilities, Planning, Transport, Risks and Society'),
(131172, 104112, 'fr', 'name', 'MobilitƩs, AmƩnagement, Transports, Risques et SociƩtƩ'),
(131173, 104113, 'en', 'name', '"Silk Road" International University of Tourism and Cultural Heritage'),
(131174, 104114, 'en', 'name', 'Mokhuri Oriental Medicine Hospital'),
(131175, 104114, 'ko', 'name', 'ėŖØģ»¤ė¦¬ķ•œė°©ė³‘ģ›'),
(131176, 104115, 'es', 'name', 'Pontificia Universidad Católica del Ecuador Sede Manabí'),
(131177, 104116, 'uz', 'name', 'Namangan Davlat Universiteti'),
(131178, 104116, 'en', 'name', 'Namangan State University'),
(131179, 104117, 'en', 'name', 'Helmholtz Association of German Research Centres'),
(131180, 104117, 'de', 'name', 'Helmholtz-Gemeinschaft Deutscher Forschungszentren'),
(131181, 104118, 'en', 'name', 'North Sea Transition Authority'),
(131182, 104119, 'en', 'name', 'Kumamoto Chuo Hospital'),
(131183, 104119, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šē†Šęœ¬äø­å¤®ē—…é™¢'),
(131184, 104120, 'en', 'name', 'Office of Naval Intelligence'),
(131185, 104121, 'cs', 'name', 'BiofyzikÔlní ústav AV ČR'),
(131186, 104121, 'en', 'name', 'Czech Academy of Sciences, Institute of Biophysics'),
(131187, 104122, 'en', 'name', 'Colorado Geological Survey'),
(131188, 104123, 'en', 'name', 'Ministry of Innovation, Science and Technology'),
(131189, 104124, 'en', 'name', 'LMU Open Science Center'),
(131190, 104125, 'en', 'name', 'Royal Perth Hospital'),
(131191, 104126, 'en', 'name', 'Royal Prince Alfred Hospital'),
(131192, 104127, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure Maritime'),
(131193, 104127, 'ar', 'name', 'المدرسة_Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©_Ų§Ł„Ų¹Ł„ŁŠŲ§_Ł„Ł„ŲØŲ­Ų±ŁŠŲ©'),
(131194, 104128, 'en', 'name', 'Steno Diabetes Center North Jutland'),
(131195, 104129, 'en', 'name', 'Phasecraft Ltd. (United Kingdom)'),
(131196, 104130, 'en', 'name', 'Carl R. Darnall Army Medical Center'),
(131197, 104131, 'en', 'name', 'Ochsner Medical Center'),
(131198, 104132, 'sw', 'name', 'Makumbusho ya Taifa la Tanzania'),
(131199, 104132, 'en', 'name', 'National Museum of Tanzania'),
(131200, 104133, 'en', 'name', 'Kanazawa Municipal Hospital'),
(131201, 104133, 'ja', 'name', '金沢市立病院'),
(131202, 104134, 'en', 'name', 'Imam Maturidi International Scientific Research Center'),
(131203, 104135, 'id', 'name', 'Politeknik Statistika STIS'),
(131204, 104136, 'en', 'name', 'Texas Tech University'),
(131205, 104137, 'en', 'name', 'Department for Environment and Water'),
(131206, 104138, 'en', 'name', 'European Powder Metallugy Association'),
(131207, 104139, 'en', 'name', 'Children''s Hospital at Westmead'),
(131208, 104140, 'en', 'name', 'Honiton Hospital'),
(131209, 104141, 'en', 'name', 'Naval Supply Systems Command'),
(131210, 104142, 'en', 'name', 'ARC Centre of Excellence for Mathematical and Statistical Frontiers'),
(131211, 104143, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c Vinh'),
(131212, 104143, 'en', 'name', 'Vinh University'),
(131213, 104144, 'en', 'name', 'Central Library of the Slovak Academy of Sciences'),
(131214, 104144, 'sk', 'name', 'ÚstrednÔ knižnica Slovenskej akadémie vied'),
(131215, 104145, 'en', 'name', 'GenesisCare'),
(131216, 104146, 'id', 'name', 'STMIK Methodist Binjai'),
(131217, 104147, 'en', 'name', 'Andalusian Earth Sciences Institute'),
(131218, 104147, 'es', 'name', 'Instituto Andaluz de Ciencias de la Tierra'),
(131219, 104148, 'en', 'name', 'Lutsk National Technical University'),
(131220, 104148, 'pl', 'name', 'Łucki Narodowy Uniwersytet Techniczny'),
(131221, 104148, 'ru', 'name', 'Š›ŃƒŃ†ŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(131222, 104148, 'uk', 'name', 'Š›ŃƒŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(131223, 104149, 'en', 'name', 'Kogi State University, Kabba'),
(131224, 104150, 'en', 'name', 'Nuremberg Zoo'),
(131225, 104150, 'de', 'name', 'Tiergarten Nürnberg'),
(131226, 104151, 'en', 'name', 'Steno Diabetes Center Copenhagen'),
(131227, 104152, 'en', 'name', 'Royal Devon and Exeter Hospital'),
(131228, 104153, 'fr', 'name', 'Centre Universitaire de Maghnia'),
(131229, 104153, 'en', 'name', 'University Centre of Maghnia'),
(131230, 104153, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł…ŲŗŁ†ŁŠŲ©'),
(131231, 104154, 'en', 'name', 'Griffith College'),
(131232, 104155, 'en', 'name', 'Renaissance Computing Institute'),
(131233, 104156, 'fr', 'name', 'Centre de droit europƩen'),
(131234, 104157, 'en', 'name', 'Syiah Kuala University'),
(131235, 104157, 'id', 'name', 'Universitas Syiah Kuala'),
(131236, 104158, 'en', 'name', 'ARC Centre of Excellence for All-sky Astrophysics'),
(131237, 104159, 'en', 'name', 'Seaton Hospital'),
(131238, 104160, 'en', 'name', 'Midway University'),
(131239, 104161, 'en', 'name', 'HauHau Research (New Zealand)'),
(131240, 104162, 'en', 'name', 'Research on healthcare performance'),
(131241, 104163, 'ro', 'name', 'Asociatia TEAM4Excellence'),
(131242, 104163, 'en', 'name', 'TEAM4Excellence Association'),
(131243, 104164, 'en', 'name', 'St. Francis Institute of Management and Research'),
(131244, 104165, 'en', 'name', 'Space Development Agency'),
(131245, 104166, 'en', 'name', 'Bureau of Naval Personnel'),
(131246, 104167, 'en', 'name', 'S. G. Balekundri Institute of Technology Belagavi'),
(131247, 104168, 'en', 'name', 'Sylhet Engineering College'),
(131248, 104169, 'en', 'name', 'U.S. Army Aviation and Missile Command'),
(131249, 104170, 'en', 'name', 'European Research Laboratory for Rheumatoid Polyarthritis'),
(131250, 104170, 'fr', 'name', 'Laboratoire de recherche européen pour la polyarthrite rhumatoïde'),
(131251, 104171, 'es', 'name', 'Centro de ToxicologĆ­a y Biomedicina'),
(131252, 104172, 'no_lang_code', 'name', 'Asemmas n unadi deg tutlayt d yidles n tmaziɣt'),
(131253, 104172, 'fr', 'name', 'Centre de recherche en langue et culture amazighes'),
(131254, 104173, 'en', 'name', 'Delta State Polytechnic Ogwashi-Uku'),
(131255, 104174, 'en', 'name', 'Assumption College'),
(131256, 104175, 'en', 'name', 'Trinity University'),
(131257, 104176, 'en', 'name', 'SƔrospatak Reformed Theological University'),
(131258, 104176, 'hu', 'name', 'SƔrospataki ReformƔtus HittudomƔnyi Egyetem'),
(131259, 104177, 'en', 'name', 'Ahi Evran University'),
(131260, 104177, 'tr', 'name', 'Ahi Evran Üniversitesi'),
(131261, 104178, 'en', 'name', 'Central Coastal Agricultural Research Institute'),
(131262, 104179, 'en', 'name', 'Naval Medical Center San Diego'),
(131263, 104180, 'fr', 'name', 'Laboratoire de MĆ©canique et d''EnergĆ©tique d''Ɖvry'),
(131264, 104181, 'en', 'name', 'Lake Biwa Museum'),
(131265, 104181, 'ja', 'name', 'ę»‹č³€ēœŒē«‹ēµē¶ę¹–åšē‰©é¤Ø'),
(131266, 104182, 'es', 'name', 'Universidad del Sur de California'),
(131267, 104182, 'en', 'name', 'University of Southern California'),
(131268, 104182, 'fr', 'name', 'UniversitƩ de Californie du Sud'),
(131269, 104183, 'en', 'name', 'Centenary Institute'),
(131270, 104184, 'no_lang_code', 'name', 'Science Applications International Corporation (United States)'),
(131271, 104185, 'en', 'name', 'EcoFaxina Institute'),
(131272, 104185, 'pt', 'name', 'Instituto EcoFaxina'),
(131273, 104186, 'en', 'name', 'Peter Doherty Institute'),
(131274, 104187, 'fr', 'name', 'FƩdƩration de Recherche FCLAB'),
(131275, 104188, 'en', 'name', 'Griffith College Limerick'),
(131276, 104189, 'id', 'name', 'Universitas Buana Perjuangan Karawang'),
(131277, 104190, 'fr', 'name', 'Laboratoire de Physicochimie des PolymĆØres et des Interfaces'),
(131278, 104190, 'en', 'name', 'Laboratory of Physical Chemistry of Polymers and Interfaces'),
(131279, 104191, 'id', 'name', 'Universitas Hasyim Asy''ari'),
(131280, 104192, 'en', 'name', 'Hellenic Agricultural Organization - DIMITRA'),
(131281, 104192, 'el', 'name', 'Ī•Ī›Ī›Ī—ĪĪ™ĪšĪŸĪ£ Ī“Ī•Ī©Ī”Ī“Ī™ĪšĪŸĪ£ ĪŸĪ”Ī“Ī‘ĪĪ™Ī£ĪœĪŸĪ£ - Ī”Ī—ĪœĪ—Ī¤Ī”Ī‘'),
(131282, 104193, 'en', 'name', 'Higher institute for environmental engineering and management - ISIGE'),
(131283, 104193, 'fr', 'name', 'Institut SupƩrieur d''IngƩnierie et Gestion de l''Environnement - ISIGE'),
(131284, 104194, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de MĆ©canique et des Microtechniques'),
(131285, 104195, 'en', 'name', 'Takasaki Advanced Radiation Research Institute'),
(131286, 104195, 'ja', 'name', 'é«˜å“Žé‡å­åæœē”Øē ”ē©¶ę‰€'),
(131287, 104196, 'en', 'name', 'Islamic University of Science and Technology, Kashmir'),
(131288, 104197, 'en', 'name', 'David Grant USAF Medical Center'),
(131289, 104198, 'en', 'name', 'Smart University College for Modern Education'),
(131290, 104198, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų°ŁƒŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų­ŲÆŁŠŲ«'),
(131291, 104199, 'en', 'name', 'Delta State University of Science and Technology Ozoro'),
(131292, 104200, 'es', 'name', 'Universidad de Camagüey'),
(131293, 104200, 'en', 'name', 'University of Camagüey'),
(131294, 104201, 'id', 'name', 'Universitas Imelda Medan'),
(131295, 104202, 'en', 'name', 'Osun State College of Education, Ila-Orangun'),
(131296, 104203, 'en', 'name', 'Animal Production Research Centre'),
(131297, 104204, 'fr', 'name', 'Institut National de Recherches en SantƩ Publique'),
(131298, 104204, 'en', 'name', 'National Institute of Public Health Research'),
(131299, 104204, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„ŲØŲ­ŁˆŲ« الصحة العامة'),
(131300, 104205, 'en', 'name', 'Nepal Mediciti Hospital'),
(131301, 104206, 'pl', 'name', 'Polskie Towarzystwo Teologiczne'),
(131302, 104207, 'en', 'name', 'Naval Health Research Center'),
(131303, 104208, 'en', 'name', 'Space Delta 9'),
(131304, 104209, 'en', 'name', 'Thomas More University Biology Field Station'),
(131305, 104210, 'en', 'name', 'Singapore University of Social Sciences'),
(131306, 104210, 'zh', 'name', 'ę–°åŠ å”ē¤¾ē§‘å¤§å­¦'),
(131307, 104211, 'en', 'name', 'Ipswich Hospital'),
(131308, 104212, 'en', 'name', 'Love Wildlife Foundation'),
(131309, 104213, 'en', 'name', 'Indiana University – Purdue University Columbus'),
(131310, 104214, 'en', 'name', 'Fremantle Hospital'),
(131311, 104215, 'es', 'name', 'Academia Naval de los Estados Unidos'),
(131312, 104215, 'fr', 'name', 'AcadƩmie Navale d''Annapolis'),
(131313, 104215, 'en', 'name', 'United States Naval Academy'),
(131314, 104216, 'no_lang_code', 'name', 'Tianjin Chengjian University'),
(131315, 104216, 'zh', 'name', 'å¤©ę“„åŸŽå»ŗå¤§å­¦'),
(131316, 104217, 'en', 'name', 'Hogrefe Publishing GmbH (Germany)'),
(131317, 104218, 'en', 'name', 'P.E.L.C. - Private Entomological Laboratory and Collection'),
(131318, 104219, 'en', 'name', 'Lions Eye Institute'),
(131319, 104220, 'en', 'name', 'ARC Centre of Excellence for Coherent X-ray Science'),
(131320, 104221, 'en', 'name', 'Bionics Institute'),
(131321, 104222, 'en', 'name', 'Geo-Environmental Protection Center'),
(131322, 104222, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåœŸå£Œē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(131323, 104223, 'en', 'name', 'Slovak Academy of Sciences'),
(131324, 104223, 'sk', 'name', 'SlovenskƔ AkadƩmia Vied'),
(131325, 104223, 'hu', 'name', 'SzlovƔk TudomƔnyos AkadƩmia'),
(131326, 104224, 'fr', 'name', 'Parlement du Canada'),
(131327, 104224, 'en', 'name', 'Parliament of Canada'),
(131328, 104225, 'en', 'name', 'Urawa Medical Association'),
(131329, 104225, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ¦å’ŒåŒ»åø«ä¼š'),
(131330, 104226, 'fr', 'name', 'Institut sur la nutrition et les aliments fonctionnels (INAF)'),
(131331, 104226, 'en', 'name', 'Institute of Nutrition and Functional Foods'),
(131332, 104227, 'en', 'name', 'Public Buildings Association'),
(131333, 104227, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…¬å…±å»ŗēÆ‰å”ä¼š'),
(131334, 104228, 'en', 'name', 'The Cell Science Research Foundation'),
(131335, 104228, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē“°čƒžē§‘å­¦ē ”ē©¶č²”å›£'),
(131336, 104229, 'en', 'name', 'United States Naval Special Warfare Command'),
(131337, 104230, 'id', 'name', 'Universitas PGRI Silampari'),
(131338, 104231, 'es', 'name', 'Instituto para la Conservación de Especies Amenazadas'),
(131339, 104232, 'en', 'name', 'Japan Paint Manufacturers Association'),
(131340, 104232, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å”—ę–™å·„ę„­ä¼š'),
(131341, 104233, 'pt', 'name', 'Universidade SENAI CIMATEC'),
(131342, 104234, 'en', 'name', 'Arkansas Game and Fish Commission'),
(131343, 104235, 'en', 'name', 'Chemical Insights Research Institute'),
(131344, 104236, 'en', 'name', 'Tochigi International Association'),
(131345, 104236, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę ƒęœØēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(131346, 104237, 'no_lang_code', 'name', 'Jacobs (Spain)'),
(131347, 104238, 'en', 'name', 'Iwate Prefectural Ichinohe Hospital'),
(131348, 104238, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹äø€ęˆøē—…é™¢'),
(131349, 104239, 'en', 'name', 'Kawasaki International Association'),
(131350, 104239, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå·å“Žåø‚å›½éš›äŗ¤ęµå”ä¼š'),
(131351, 104240, 'en', 'name', 'Saibalaji International Institute of Management Sciences Pune'),
(131352, 104241, 'fr', 'name', 'Presses Universitaires de Franche-ComtƩ'),
(131353, 104242, 'en', 'name', 'United Lutheran Seminary'),
(131354, 104243, 'en', 'name', 'Japan Association of Charitable Organizations'),
(131355, 104243, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…¬ē›Šę³•äŗŗå”ä¼š'),
(131356, 104244, 'en', 'name', 'Japan Bridge Engineering Center'),
(131357, 104244, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę©‹ę¢čŖæęŸ»ä¼š'),
(131358, 104245, 'en', 'name', 'Sunstar Foundation'),
(131359, 104245, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚µćƒ³ć‚¹ć‚æćƒ¼č²”å›£'),
(131360, 104246, 'en', 'name', 'Niigata Prefectural Institute of Environmental Radiation Monitoring'),
(131361, 104246, 'ja', 'name', 'ę–°ę½ŸēœŒę”¾å°„ē·šē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(131362, 104247, 'en', 'name', 'Akita Prefectural Police'),
(131363, 104247, 'ja', 'name', 'ē§‹ē”°ēœŒč­¦åÆŸ'),
(131364, 104248, 'en', 'name', 'Zhengzhou Normal University'),
(131365, 104249, 'en', 'name', 'General Hanamaki Hospital'),
(131366, 104249, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē·åˆčŠ±å·»ē—…é™¢'),
(131367, 104250, 'en', 'name', 'United States Pacific Air Forces'),
(131368, 104251, 'en', 'name', 'United States Air Forces in Europe – Air Forces Africa'),
(131369, 104252, 'en', 'name', 'Kanazawa Seiryo University Women''s Junior College'),
(131370, 104252, 'ja', 'name', 'é‡‘ę²¢ę˜ŸēØœå¤§å­¦å„³å­ēŸ­ęœŸå¤§å­¦éƒØ'),
(131371, 104253, 'en', 'name', 'Digital Content Association of Japan'),
(131372, 104253, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ‡ć‚øć‚æćƒ«ć‚³ćƒ³ćƒ†ćƒ³ćƒ„å”ä¼š'),
(131373, 104254, 'en', 'name', 'Federal College of Education, Eha-Amufu'),
(131374, 104255, 'en', 'name', 'The Japanese Society of Fisheries Science'),
(131375, 104255, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“ē”£å­¦ä¼š'),
(131376, 104256, 'en', 'name', 'Blood Products Research Organization'),
(131377, 104256, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč”€ę¶²č£½å‰¤čŖæęŸ»ę©Ÿę§‹'),
(131378, 104257, 'en', 'name', 'Public Welfare Institute of Scientific Research Foundation'),
(131379, 104257, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę°‘ē”Ÿē§‘å­¦å”ä¼š'),
(131380, 104258, 'en', 'name', 'Ellison Institute of Technology'),
(131381, 104259, 'en', 'name', 'Japan Wood Protection Association'),
(131382, 104259, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęœØęäæå­˜å”ä¼š'),
(131383, 104260, 'cs', 'name', 'TechnologickƩ centrum Praha'),
(131384, 104260, 'en', 'name', 'Technology Centre Prague'),
(131385, 104261, 'en', 'name', 'The Association for Promotion of Advanced Broadcasting Services'),
(131386, 104261, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę”¾é€ć‚µćƒ¼ćƒ“ć‚¹é«˜åŗ¦åŒ–ęŽØé€²å”ä¼š'),
(131387, 104262, 'en', 'name', 'Yamagata Prefectural Inland Water Fisheries Experiment Station'),
(131388, 104262, 'ja', 'name', 'å±±å½¢ēœŒå†…ę°“é¢ę°“ē”£ē ”ē©¶ę‰€'),
(131389, 104263, 'en', 'name', 'Puducherry Technological University'),
(131390, 104264, 'en', 'name', 'Kanagawa Nursing Association'),
(131391, 104264, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē„žå„ˆå·ēœŒēœ‹č­·å”ä¼š'),
(131392, 104265, 'en', 'name', 'Yamazaki University of Animal Health Technology'),
(131393, 104265, 'ja', 'name', 'ćƒ¤ćƒžć‚¶ć‚­å‹•ē‰©ēœ‹č­·å¤§å­¦'),
(131394, 104266, 'en', 'name', 'Kawasaki Nursing Association'),
(131395, 104266, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå·å“Žåø‚ēœ‹č­·å”ä¼š'),
(131396, 104267, 'en', 'name', 'Japan Association for Promotion of Educational Technology'),
(131397, 104267, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę•™č‚²ęƒ…å ±åŒ–ęŒÆčˆˆä¼š'),
(131398, 104268, 'en', 'name', 'School of Planning and Architecture, Vijayawada'),
(131399, 104269, 'en', 'name', 'Japan Industrial Designers'' Association'),
(131400, 104269, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¤ćƒ³ćƒ€ć‚¹ćƒˆćƒŖć‚¢ćƒ«ćƒ‡ć‚¶ć‚¤ćƒŠćƒ¼å”ä¼š'),
(131401, 104270, 'en', 'name', 'University Hospitals of Cleveland'),
(131402, 104271, 'en', 'name', 'International Institute of Food Technology and Engineering'),
(131403, 104272, 'en', 'name', 'Queensland Government'),
(131404, 104273, 'en', 'name', 'Japan Electric Power Information Center, Inc.'),
(131405, 104273, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–é›»åŠ›čŖæęŸ»ä¼š'),
(131406, 104274, 'en', 'name', 'Missenyi District Council'),
(131407, 104275, 'en', 'name', 'Japan Copper Development Association'),
(131408, 104275, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬éŠ…ć‚»ćƒ³ć‚æćƒ¼'),
(131409, 104276, 'en', 'name', 'Japan Waste MANAGEMENT&3R Reserch Foundation'),
(131410, 104276, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå»ƒę£„ē‰©ćƒ»3R研究貔団'),
(131411, 104277, 'en', 'name', 'Earth Science Institute of the Slovak Academy of Sciences'),
(131412, 104277, 'sk', 'name', 'Ústav vied o Zemi Slovenskej akadémie vied'),
(131413, 104278, 'fr', 'name', 'Laboratoire de Biologie et ModƩlisation de la Cellule'),
(131414, 104279, 'en', 'name', 'University of Saba Region'),
(131415, 104279, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł‚Ł„ŁŠŁ… Ų³ŲØŲ£'),
(131416, 104280, 'en', 'name', 'International Tourism Center of Japan'),
(131417, 104280, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›č¦³å…‰ć‚µćƒ¼ćƒ“ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(131418, 104281, 'en', 'name', 'Research Institute for Advancement of Living Standards'),
(131419, 104281, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé€£åˆē·åˆē”Ÿę“»é–‹ē™ŗē ”ē©¶ę‰€'),
(131420, 104282, 'en', 'name', 'Japan Organics Recycling Association'),
(131421, 104282, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęœ‰ę©Ÿč³‡ęŗå”ä¼š'),
(131422, 104283, 'es', 'name', 'Sociedad Micológica de Gran Canaria'),
(131423, 104284, 'es', 'name', 'Fundación I+D Software Libre'),
(131424, 104285, 'en', 'name', 'Japanese Society of Animal Science'),
(131425, 104285, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē•œē”£å­¦ä¼š'),
(131426, 104286, 'en', 'name', 'Nippon International Cooperation for Community Development'),
(131427, 104286, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›½éš›ę°‘é–“å”åŠ›ä¼š'),
(131428, 104287, 'en', 'name', 'CSIRO Environment'),
(131429, 104288, 'en', 'name', 'Stem Cell Evaluation Technology Research Association'),
(131430, 104288, 'ja', 'name', 'å¹¹ē“°čƒžč©•ä¾”åŸŗē›¤ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(131431, 104289, 'en', 'name', 'Jhargram Raj College'),
(131432, 104290, 'en', 'name', 'Cold Region Port and Harbor Engineering Research Center'),
(131433, 104290, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåÆ’åœ°ęøÆę¹¾ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(131434, 104291, 'en', 'name', 'Japan Association for Safety of Hazardous Materials'),
(131435, 104291, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½å±é™ŗē‰©å®‰å…Øå”ä¼š'),
(131436, 104292, 'en', 'name', 'National Sanatorium Matuoka Hoyoen'),
(131437, 104292, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€ę¾äø˜äæé¤Šåœ’'),
(131438, 104293, 'en', 'name', 'St. Hedwig Hospital in Trzebnica'),
(131439, 104293, 'pl', 'name', 'Szpital im Świętej Jadwigi w Trzebnicy'),
(131440, 104294, 'en', 'name', 'Institute of Metal Research'),
(131441, 104295, 'en', 'name', 'De Montfort University Kazakhstan'),
(131442, 104295, 'kk', 'name', 'Де ŠœŠ¾Š½Ń„орт ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½'),
(131443, 104296, 'en', 'name', 'Misono Gakuen Junior College'),
(131444, 104296, 'ja', 'name', 'č–åœ’å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(131445, 104297, 'en', 'name', 'Ibaraki Nursing Association'),
(131446, 104297, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗčŒØåŸŽēœŒēœ‹č­·å”ä¼š'),
(131447, 104298, 'en', 'name', 'Japan Foundation For Emergency Medicine'),
(131448, 104298, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę•‘ę€„åŒ»ē™‚č²”å›£'),
(131449, 104299, 'pl', 'name', 'Akademia Nauk Stosowanych w Bielsku-Białej'),
(131450, 104299, 'en', 'name', 'Bielsko-Biala University of Applied Sciences'),
(131451, 104300, 'ca', 'name', 'EURECAT Centre Tecnològic de Catalunya'),
(131452, 104301, 'en', 'name', 'Hajjah University'),
(131453, 104301, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų­Ų¬Ų©'),
(131454, 104302, 'en', 'name', 'United States Naval Forces Europe-Africa'),
(131455, 104303, 'en', 'name', 'World Wide Fund for Nature Japan'),
(131456, 104303, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø–ē•Œč‡Ŗē„¶äæč­·åŸŗé‡‘ć‚øćƒ£ćƒ‘ćƒ³'),
(131457, 104304, 'en', 'name', 'Japanese Society of Radiological Technology'),
(131458, 104304, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę”¾å°„ē·šęŠ€č”“å­¦ä¼š'),
(131459, 104305, 'en', 'name', 'The Japan Society for Bioscience, Biotechnology, and Agrochemistry'),
(131460, 104305, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č¾²čŠøåŒ–å­¦ä¼š'),
(131461, 104306, 'en', 'name', 'United States Department of the Air Force'),
(131462, 104307, 'en', 'name', 'Ministry of Justice, Iran'),
(131463, 104307, 'fa', 'name', 'وزارت دادگستری Ų¬Ł…Ł‡ŁˆŲ±ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(131464, 104308, 'en', 'name', 'The KIRIN Foundation'),
(131465, 104308, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚­ćƒŖćƒ³ē¦ē„‰č²”å›£'),
(131466, 104309, 'en', 'name', 'Nagano City Education Center'),
(131467, 104309, 'ja', 'name', 'é•·é‡Žåø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(131468, 104310, 'en', 'name', 'Naha Medical Association'),
(131469, 104310, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé‚£č¦‡åø‚åŒ»åø«ä¼š'),
(131470, 104311, 'en', 'name', 'THE Kajima Foundation'),
(131471, 104311, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé¹æå³¶å­¦č”“ęŒÆčˆˆč²”å›£'),
(131472, 104312, 'en', 'name', 'United States Air Combat Command'),
(131473, 104313, 'en', 'name', 'Hokkaido Industrial Technology Center'),
(131474, 104313, 'ja', 'name', 'åŒ—ęµ·é“ē«‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(131475, 104314, 'en', 'name', 'Japan Association of Specialists in Textiles and Apparel'),
(131476, 104314, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č”£ę–™ē®”ē†å”ä¼š'),
(131477, 104315, 'en', 'name', 'Japanese Association for Laboratory Animal Science'),
(131478, 104315, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å®ŸéØ“å‹•ē‰©å­¦ä¼š'),
(131479, 104316, 'en', 'name', 'Public Health Research Society Nepal'),
(131480, 104317, 'en', 'name', 'Japan Railway Electrical Engineering Association'),
(131481, 104317, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é“é›»ę°—ęŠ€č”“å”ä¼š'),
(131482, 104318, 'uk', 'name', 'Polissya Institute of Agriculture of National Academy of Agrarian Sciences of Ukraine'),
(131483, 104319, 'en', 'name', 'SHIN Nihon Kentei Kyokai'),
(131484, 104319, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę–°ę—„ęœ¬ę¤œå®šå”ä¼š'),
(131485, 104320, 'en', 'name', 'The Osaka Community Foundation'),
(131486, 104320, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£č²”å›£'),
(131487, 104321, 'en', 'name', 'Kenya National Bureau of Statistics'),
(131488, 104322, 'en', 'name', 'United States Cyberspace Capabilities Center'),
(131489, 104323, 'en', 'name', 'Japan Agricultural Development and Extension Association'),
(131490, 104323, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½č¾²ę„­ę”¹č‰Æę™®åŠę”Æę“å”ä¼š'),
(131491, 104324, 'en', 'name', 'United States Transportation Command'),
(131492, 104325, 'en', 'name', 'TAMA CITY Medical Association'),
(131493, 104325, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤šę‘©åø‚åŒ»åø«ä¼š'),
(131494, 104326, 'en', 'name', 'Japan Rehabilitation Nursing Association'),
(131495, 104326, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ēœ‹č­·å­¦ä¼š'),
(131496, 104327, 'en', 'name', 'Japan Electronics Packaging and Circuits Association'),
(131497, 104327, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»å­å›žč·Æå·„ę„­ä¼š'),
(131498, 104328, 'en', 'name', 'Japan Association for Working Environment Measurement'),
(131499, 104328, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ä½œę„­ē’°å¢ƒęø¬å®šå”ä¼š'),
(131500, 104329, 'fr', 'name', 'Observatoire Terre et environnement de Lorraine'),
(131501, 104330, 'it', 'name', 'Cogentech S.R.L. SocietĆ  Benefit a Socio Unico soggetta all’attivitĆ  di direzione e coordinamento di IFOM - Istituto Fondazione di Oncologia Molecolare ETS (Italy)'),
(131502, 104331, 'en', 'name', 'Health and Welfare Information Association'),
(131503, 104331, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäæå„ē¦ē„‰åŗƒå ±å”ä¼š'),
(131504, 104332, 'en', 'name', 'Saisyukan Hospital'),
(131505, 104332, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗęøˆč”†é¤Øęøˆč”†é¤Øē—…é™¢'),
(131506, 104333, 'en', 'name', 'The Japan Landslide Society'),
(131507, 104333, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åœ°ć™ć¹ć‚Šå­¦ä¼š'),
(131508, 104334, 'en', 'name', 'Kathmandu Diabetes and Thyroid Center Pvt Ltd'),
(131509, 104335, 'en', 'name', 'YEZO Deer Association'),
(131510, 104335, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚Øć‚¾ć‚·ć‚«å”ä¼š'),
(131511, 104336, 'en', 'name', 'Fujisawa Medical Association'),
(131512, 104336, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗč—¤ę²¢åø‚åŒ»åø«ä¼š'),
(131513, 104337, 'en', 'name', 'Center of Iizuka Research and Development'),
(131514, 104337, 'ja', 'name', 'ē¦å²”ēœŒē«‹é£Æå”šē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(131515, 104338, 'en', 'name', 'Japan Association of Physical Education for Women'),
(131516, 104338, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å„³å­ä½“č‚²é€£ē›Ÿ'),
(131517, 104339, 'en', 'name', 'Japan Arts Foundation'),
(131518, 104339, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę–‡åŒ–č—č”“č²”å›£'),
(131519, 104340, 'en', 'name', 'National Research Institute for Chemical Technology'),
(131520, 104341, 'en', 'name', 'New Unmanned Construction Technology Research Association'),
(131521, 104341, 'ja', 'name', 'ę¬”äø–ä»£ē„”äŗŗåŒ–ę–½å·„ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(131522, 104342, 'en', 'name', 'The MRC Foundation'),
(131523, 104342, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē§»å‹•ē„”ē·šć‚»ćƒ³ć‚æćƒ¼'),
(131524, 104343, 'en', 'name', 'Nippon Badminton Association'),
(131525, 104343, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒćƒ‰ćƒŸćƒ³ćƒˆćƒ³å”ä¼š'),
(131526, 104344, 'en', 'name', 'Matsumoto College of Nursing'),
(131527, 104344, 'ja', 'name', 'ę¾ęœ¬ēœ‹č­·å¤§å­¦'),
(131528, 104345, 'de', 'name', 'Triemli Hospital'),
(131529, 104346, 'es', 'name', 'Hospital Clƭnico FƩlix Bulnes'),
(131530, 104347, 'de', 'name', 'Gesellschaft für Arbeits-, Wirtschafts- und Organisationspsychologische Forschung e.V.'),
(131531, 104348, 'en', 'name', 'White Rose Libraries'),
(131532, 104349, 'en', 'name', 'United States Africa Command'),
(131533, 104350, 'en', 'name', 'United States Central Command'),
(131534, 104351, 'en', 'name', 'Japan Subway Association'),
(131535, 104351, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åœ°äø‹é‰„å”ä¼š'),
(131536, 104352, 'en', 'name', 'ALERT Geomaterials – Alliance of Laboratories in Europe for Education, Research and Technology'),
(131537, 104353, 'en', 'name', 'Okayama Construction Technology Center'),
(131538, 104353, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå²”å±±ēœŒå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(131539, 104354, 'pt', 'name', 'Centro Paula Souza'),
(131540, 104355, 'en', 'name', 'Insurance Research Center'),
(131541, 104356, 'en', 'name', 'National Office for Sanitary Safety of Food Products'),
(131542, 104356, 'fr', 'name', 'Office National de SƩcuritƩ Sanitaire des Produits Alimentaires'),
(131543, 104356, 'ar', 'name', 'Ų§Ł„Ł…ŁƒŲŖŲØ Ų§Ł„ŁˆŲ·Ł†ŁŠ للسلامة Ų§Ł„ŲµŲ­ŁŠŲ© للمنتجات Ų§Ł„ŲŗŲ°Ų§Ų¦ŁŠŲ©'),
(131544, 104357, 'en', 'name', 'Okinawa Industrial Federation'),
(131545, 104357, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę²–ēø„ēœŒå·„ę„­é€£åˆä¼š'),
(131546, 104358, 'de', 'name', 'Landesforschungsanstalt für Landwirtschaft und Fischerei Mecklenburg-Vorpommern'),
(131547, 104358, 'en', 'name', 'Mecklenburg-Vorpommern Research Centre for Agriculture and Fisheries'),
(131548, 104359, 'en', 'name', 'Maeda Ippoen Foundation'),
(131549, 104359, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå‰ē”°äø€ę­©åœ’č²”å›£'),
(131550, 104360, 'en', 'name', 'Kamibayashi Memorial Hospital'),
(131551, 104360, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęå¶ŗä¼šäøŠęž—čØ˜åæµē—…é™¢'),
(131552, 104361, 'en', 'name', 'Japan Association for Clinical Engineers'),
(131553, 104361, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č‡ØåŗŠå·„å­¦ęŠ€å£«ä¼š'),
(131554, 104362, 'en', 'name', 'Japan Project-Industry Council'),
(131555, 104362, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ­ć‚øć‚§ć‚Æćƒˆē”£ę„­å”č­°ä¼š'),
(131556, 104363, 'en', 'name', 'The Japan Association of Marine Safety'),
(131557, 104363, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęµ·é›£é˜²ę­¢å”ä¼š'),
(131558, 104364, 'en', 'name', 'Japan Dental Hygienists'' Association'),
(131559, 104364, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę­Æē§‘č”›ē”Ÿå£«ä¼š'),
(131560, 104365, 'en', 'name', 'Nagano Medical Association'),
(131561, 104365, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé•·é‡ŽēœŒåŒ»åø«ä¼š'),
(131562, 104366, 'en', 'name', 'Japan Society for Reproductive Medicine'),
(131563, 104366, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”Ÿę®–åŒ»å­¦ä¼š'),
(131564, 104367, 'en', 'name', 'DeSci Foundation'),
(131565, 104368, 'en', 'name', 'Boken Quality Evaluation Institute'),
(131566, 104368, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒœćƒ¼ć‚±ćƒ³å“č³Ŗč©•ä¾”ę©Ÿę§‹'),
(131567, 104369, 'en', 'name', 'Japan International Labour Foundation'),
(131568, 104369, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›åŠ“åƒč²”å›£'),
(131569, 104370, 'en', 'name', 'Ecrins National Park'),
(131570, 104371, 'en', 'name', 'Japan Building Maintenance Association'),
(131571, 104371, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½ćƒ“ćƒ«ćƒ”ćƒ³ćƒ†ćƒŠćƒ³ć‚¹å”ä¼š'),
(131572, 104372, 'no_lang_code', 'name', 'Hatch (Canada)'),
(131573, 104373, 'en', 'name', 'Uyo Gakuen College'),
(131574, 104373, 'ja', 'name', 'ē¾½é™½å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(131575, 104374, 'en', 'name', 'Japanese Foundation for Sexual Health Medicine'),
(131576, 104374, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę€§ć®å„åŗ·åŒ»å­¦č²”å›£'),
(131577, 104375, 'en', 'name', 'Japan Center for International Exchange'),
(131578, 104375, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(131579, 104376, 'en', 'name', 'Felicia College of Childhood Education'),
(131580, 104376, 'ja', 'name', 'ćƒ•ć‚§ćƒŖć‚·ć‚¢ć“ć©ć‚‚ēŸ­ęœŸå¤§å­¦'),
(131581, 104377, 'en', 'name', 'Nagaoka Healthcare Center'),
(131582, 104377, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé•·å²”čØ˜åæµč²”å›£é•·å²”ćƒ˜ćƒ«ć‚¹ć‚±ć‚¢ć‚»ćƒ³ć‚æćƒ¼'),
(131583, 104378, 'en', 'name', 'University of Waterloo'),
(131584, 104378, 'fr', 'name', 'UniversitƩ de waterloo'),
(131585, 104379, 'en', 'name', 'CO2-free Hydrogen Energy Supply-chain Technology Research Association'),
(131586, 104379, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆCO2ćƒ•ćƒŖćƒ¼ę°“ē“ ć‚µćƒ—ćƒ©ć‚¤ćƒć‚§ćƒ¼ćƒ³ęŽØé€²ę©Ÿę§‹'),
(131587, 104380, 'en', 'name', 'Haverford College'),
(131588, 104381, 'en', 'name', 'Institute of Eastern Culture'),
(131589, 104381, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę±ę–¹å­¦ä¼š'),
(131590, 104382, 'en', 'name', 'APEF'),
(131591, 104382, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ•ćƒ©ćƒ³ć‚¹čŖžę•™č‚²ęŒÆčˆˆå”ä¼š'),
(131592, 104383, 'en', 'name', 'Jawaharlal Nehru Technological University-Gurajada, Vizianagaram'),
(131593, 104384, 'en', 'name', 'Czech Infrastructure for Integrative Structural Biology'),
(131594, 104384, 'cs', 'name', 'ČeskÔ infrastruktura pro integrativní strukturní biologii'),
(131595, 104385, 'en', 'name', 'Japan Handball Association'),
(131596, 104385, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒćƒ³ćƒ‰ćƒœćƒ¼ćƒ«å”ä¼š'),
(131597, 104386, 'en', 'name', 'Japan Professional Football League'),
(131598, 104386, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ­ć‚µćƒƒć‚«ćƒ¼ćƒŖćƒ¼ć‚°'),
(131599, 104387, 'en', 'name', 'TwinEdge Bioscience (Switzerland)'),
(131600, 104388, 'en', 'name', 'NHK Engineering System, Inc.'),
(131601, 104388, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗNHKć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ć‚·ć‚¹ćƒ†ćƒ '),
(131602, 104389, 'en', 'name', 'The Zoological Society of Japan'),
(131603, 104389, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©å­¦ä¼š'),
(131604, 104390, 'en', 'name', 'Rokko Island Kohnan Hospital'),
(131605, 104390, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē”²å—ä¼šå…­ē”²ć‚¢ć‚¤ćƒ©ćƒ³ćƒ‰ē”²å—ē—…é™¢'),
(131606, 104391, 'en', 'name', 'Aichi Medical Foundation of Diagnostic Technology'),
(131607, 104391, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę„›ēŸ„čØŗę–­ę²»ē™‚ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(131608, 104392, 'en', 'name', 'Research Institute of Construction and Economy'),
(131609, 104392, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ēµŒęøˆē ”ē©¶ę‰€'),
(131610, 104393, 'en', 'name', 'M S Ramaiah Institute of Management'),
(131611, 104394, 'en', 'name', 'The Magnetics Society of Japan'),
(131612, 104394, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē£ę°—å­¦ä¼š'),
(131613, 104395, 'en', 'name', 'Institute for Areal Studies, Foundation'),
(131614, 104395, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸé–‹ē™ŗē ”ē©¶ę‰€'),
(131615, 104396, 'en', 'name', 'Japan Farriery Association'),
(131616, 104396, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č£…å‰Šč¹„å”ä¼š'),
(131617, 104397, 'en', 'name', 'Japan Association of International Relations'),
(131618, 104397, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å›½éš›ę”æę²»å­¦ä¼š'),
(131619, 104398, 'en', 'name', 'National Agricultural Insurance Association'),
(131620, 104398, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č¾²ę„­å…±ęøˆå”ä¼š'),
(131621, 104399, 'en', 'name', 'Japan Allergy Foundation'),
(131622, 104399, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ¬ćƒ«ć‚®ćƒ¼å”ä¼š'),
(131623, 104400, 'en', 'name', 'Hakodate Regional Industry Promotion Organization'),
(131624, 104400, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå‡½é¤Øåœ°åŸŸē”£ę„­ęŒÆčˆˆč²”å›£'),
(131625, 104401, 'en', 'name', 'Yokohama City Industrial Technical Support Center'),
(131626, 104401, 'ja', 'name', 'ęØŖęµœåø‚å·„ę„­ęŠ€č”“ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(131627, 104402, 'cy', 'name', 'Prifysgol Leeds'),
(131628, 104402, 'en', 'name', 'University of Leeds'),
(131629, 104403, 'en', 'name', 'The Japan Building Disaster Prevention Association'),
(131630, 104403, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰é˜²ē½å”ä¼š'),
(131631, 104404, 'en', 'name', 'National Agency for Automotive Safety & Victims'' Aid'),
(131632, 104404, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗč‡Ŗå‹•č»Šäŗ‹ę•…åÆ¾ē­–ę©Ÿę§‹'),
(131633, 104405, 'en', 'name', 'R. N. G. Patel Institute of Technology'),
(131634, 104406, 'en', 'name', 'Ibaraki Prefectural Environmental Radiation Monitoring Center'),
(131635, 104406, 'ja', 'name', 'čŒØåŸŽēœŒē’°å¢ƒę”¾å°„ē·šē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(131636, 104407, 'en', 'name', 'Osaka Nuclear Science Association'),
(131637, 104407, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗćƒ‹ćƒ„ćƒ¼ć‚ÆćƒŖć‚¢ć‚µć‚¤ć‚Øćƒ³ć‚¹å”ä¼š'),
(131638, 104408, 'en', 'name', 'Miyagi International Association'),
(131639, 104408, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå®®åŸŽēœŒå›½éš›åŒ–å”ä¼š'),
(131640, 104409, 'en', 'name', 'C. K. Pithawalla Institute of Pharmaceutical Science and Research'),
(131641, 104410, 'en', 'name', 'Japan Society of Powder and Powder Metallurgy'),
(131642, 104410, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē²‰ä½“ē²‰ęœ«å†¶é‡‘å”ä¼š'),
(131643, 104411, 'en', 'name', 'Dobrudzha Agricultural Institute - General Toshevo'),
(131644, 104411, 'bg', 'name', 'Š”Š¾Š±Ń€ŃƒŠ“Š¶Š°Š½ŃŠŗŠø земеГелски ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ - Генерал Тошево'),
(131645, 104412, 'en', 'name', 'Takarazuka Medical Association'),
(131646, 104412, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå®å”šåø‚åŒ»åø«ä¼š'),
(131647, 104413, 'en', 'name', 'Gifu Municipal Institute of Public Health'),
(131648, 104413, 'ja', 'name', 'å²é˜œåø‚č”›ē”Ÿč©¦éØ“ę‰€'),
(131649, 104414, 'en', 'name', 'lululab Inc. (South Korea)'),
(131650, 104415, 'en', 'name', 'United States Space Command'),
(131651, 104416, 'en', 'name', 'Spinal Injuries Japan'),
(131652, 104416, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č„Šé«„ęå‚·č€…é€£åˆä¼š'),
(131653, 104417, 'en', 'name', 'The Institute of Administrative Information Systems'),
(131654, 104417, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč”Œę”æęƒ…å ±ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę‰€'),
(131655, 104418, 'en', 'name', 'United States Indo-Pacific Command'),
(131656, 104419, 'en', 'name', 'Osaka Shin-Ai Gakuin University'),
(131657, 104419, 'ja', 'name', 'å¤§é˜Ŗäæ”ę„›å­¦é™¢å¤§å­¦'),
(131658, 104420, 'en', 'name', 'Professional University of Information and Management for Innovation'),
(131659, 104420, 'ja', 'name', 'ęƒ…å ±ēµŒå–¶ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(131660, 104421, 'en', 'name', 'IBADAT International University Islamabad'),
(131661, 104422, 'en', 'name', 'EMLYON Business School'),
(131662, 104422, 'fr', 'name', 'Ɖcole de management de Lyon'),
(131663, 104423, 'en', 'name', 'Next generation Space system Technology Research Association'),
(131664, 104423, 'ja', 'name', 'ę¬”äø–ä»£å®‡å®™ć‚·ć‚¹ćƒ†ćƒ ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(131665, 104424, 'en', 'name', 'Kitakyushu Municipal Education Center'),
(131666, 104424, 'ja', 'name', 'åŒ—ä¹å·žåø‚ē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(131667, 104425, 'en', 'name', 'National University of Callao'),
(131668, 104425, 'es', 'name', 'Universidad Nacional del Callao'),
(131669, 104426, 'en', 'name', 'Technology Research Association of Secure IoT Edge application based on RISC-V Open architecture'),
(131670, 104426, 'ja', 'name', 'ć‚»ć‚­ćƒ„ć‚¢ć‚Ŗćƒ¼ćƒ—ćƒ³ć‚¢ćƒ¼ć‚­ćƒ†ć‚Æćƒćƒ£ćƒ»ć‚Øćƒƒć‚øåŸŗē›¤ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(131671, 104427, 'en', 'name', 'Broadcast Programming Center of Japan'),
(131672, 104427, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę”¾é€ē•Ŗēµ„ć‚»ćƒ³ć‚æćƒ¼'),
(131673, 104428, 'en', 'name', 'Wyoming State Geological Survey'),
(131674, 104429, 'es', 'name', 'Departamento de Defensa de los Estados Unidos'),
(131675, 104429, 'fr', 'name', 'DĆ©partement de la DĆ©fense des Ɖtats-Unis'),
(131676, 104429, 'en', 'name', 'United States Department of Defense'),
(131677, 104430, 'en', 'name', 'National Institute of Unani Medicine'),
(131678, 104431, 'es', 'name', 'Universidad PolitƩcnica de Santa Rosa Jauregui'),
(131679, 104432, 'en', 'name', 'Food Research Institute Prague'),
(131680, 104433, 'en', 'name', 'United States Naval Forces Southern Command'),
(131681, 104434, 'en', 'name', 'United States Air Force Special Operations Command'),
(131682, 104435, 'id', 'name', 'Sekolah Tingi Pertanian Kutai Timur'),
(131683, 104436, 'en', 'name', 'The Japanese Society for Quality Control'),
(131684, 104436, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å“č³Ŗē®”ē†å­¦ä¼š'),
(131685, 104437, 'en', 'name', 'Japanese Society of Nutrition and Food Science'),
(131686, 104437, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę „é¤Šćƒ»é£Ÿē³§å­¦ä¼š'),
(131687, 104438, 'en', 'name', 'Federal Polytechnic Ohodo'),
(131688, 104439, 'en', 'name', 'United States Cyber Command'),
(131689, 104440, 'en', 'name', 'MR Education & Accreditation Center of Japan'),
(131690, 104440, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗMRčŖå®šć‚»ćƒ³ć‚æćƒ¼'),
(131691, 104441, 'en', 'name', 'Organization for Promoting Urban Development'),
(131692, 104441, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę°‘é–“éƒ½åø‚é–‹ē™ŗęŽØé€²ę©Ÿę§‹'),
(131693, 104442, 'en', 'name', 'Aichi Seaside Environment Center'),
(131694, 104442, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę„›ēŸ„č‡Øęµ·ē’°å¢ƒę•“å‚™ć‚»ćƒ³ć‚æćƒ¼'),
(131695, 104443, 'en', 'name', 'Solana Research (Germany)'),
(131696, 104444, 'en', 'name', 'M&S Research Hub'),
(131697, 104445, 'en', 'name', 'Sousen Hospital'),
(131698, 104445, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é¦Øä¼šē·ę³‰ē—…é™¢'),
(131699, 104446, 'en', 'name', 'Global Environment Centre Foundation'),
(131700, 104446, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåœ°ēƒē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(131701, 104447, 'nl', 'name', 'Nederlandse Hart Registratie'),
(131702, 104447, 'en', 'name', 'Netherlands Heart Registration'),
(131703, 104448, 'en', 'name', 'Paper Recycling Promotion Center'),
(131704, 104448, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤ē“™å†ē”Ÿäæƒé€²ć‚»ćƒ³ć‚æćƒ¼'),
(131705, 104449, 'da', 'name', 'HF & VUC Klar'),
(131706, 104450, 'en', 'name', 'Japan International Medical TEchnology Foundation'),
(131707, 104450, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›åŒ»ē™‚ęŠ€č”“č²”å›£'),
(131708, 104451, 'en', 'name', 'Japan Wrestling Federation'),
(131709, 104451, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ¬ć‚¹ćƒŖćƒ³ć‚°å”ä¼š'),
(131710, 104452, 'en', 'name', 'Shimadzu Science Foundation'),
(131711, 104452, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå³¶ę“„ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(131712, 104453, 'en', 'name', 'Japan Association of Geriatric Health Services Facilities'),
(131713, 104453, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č€äŗŗäæå„ę–½čØ­å”ä¼š'),
(131714, 104454, 'en', 'name', 'Federal Polytechnic Orogun'),
(131715, 104455, 'en', 'name', 'Japan Confectionery and Innovative Food Ingredients Research Center'),
(131716, 104455, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč“å­ćƒ»é£Ÿå“ę–°ē“ ęęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(131717, 104456, 'en', 'name', 'Japanese Heart Rhythm Society'),
(131718, 104456, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬äøę•“č„ˆåæƒé›»å­¦ä¼š'),
(131719, 104457, 'en', 'name', 'Overseas Fishery Cooperation Foundation of Japan'),
(131720, 104457, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęµ·å¤–ę¼ę„­å”åŠ›č²”å›£'),
(131721, 104458, 'en', 'name', 'THE Institute Of Marketing & Distribution Research'),
(131722, 104458, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµé€šå•é”Œē ”ē©¶å”ä¼š'),
(131723, 104459, 'en', 'name', 'PROPUL Evidence LLP (India)'),
(131724, 104460, 'pt', 'name', 'Legale Educacional'),
(131725, 104461, 'es', 'name', 'Fundación Ecotonos'),
(131726, 104462, 'en', 'name', 'KEN I Kai Foundation'),
(131727, 104462, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē ”åŒ»ä¼š'),
(131728, 104463, 'en', 'name', 'University Hospital Wiener Neustadt'),
(131729, 104463, 'de', 'name', 'UniversitƤtsklinikum Wiener Neustadt'),
(131730, 104464, 'en', 'name', 'National Institute for Freshwater Fisheries Research - NIFFR'),
(131731, 104465, 'en', 'name', 'Association for Rainwater Storage and Infiltration Technology'),
(131732, 104465, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé›Øę°“č²Æē•™ęµøé€ęŠ€č”“å”ä¼š'),
(131733, 104466, 'en', 'name', 'Maritime Disaster Prevention Center'),
(131734, 104466, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęµ·äøŠē½å®³é˜²ę­¢ć‚»ćƒ³ć‚æćƒ¼'),
(131735, 104467, 'en', 'name', 'ECHO Inc.'),
(131736, 104468, 'en', 'name', 'KEC Electronic Industry Development Center'),
(131737, 104468, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗKECé–¢č„æé›»å­å·„ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(131738, 104469, 'en', 'name', 'Wakayama Prefectural Kokoro Medical Center'),
(131739, 104469, 'ja', 'name', 'å’Œę­Œå±±ēœŒē«‹ć“ć“ć‚ć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(131740, 104470, 'en', 'name', 'Center for Criminological Research Saxony'),
(131741, 104470, 'de', 'name', 'Zentrum für kriminologische Forschung Sachsen'),
(131742, 104471, 'en', 'name', 'Hanawa Kousei Hospital'),
(131743, 104471, 'ja', 'name', 'JAē¦å³¶åŽšē”Ÿé€£å”™åŽšē”Ÿē—…é™¢'),
(131744, 104472, 'fr', 'name', 'CIRAD - Direction gƩnƩrale dƩlƩguƩe Ơ la recherche et Ơ la stratƩgie'),
(131745, 104472, 'en', 'name', 'CIRAD-Office of the Director General in charge of Research and Strategy'),
(131746, 104473, 'en', 'name', 'NSBM Green University'),
(131747, 104474, 'en', 'name', 'LoveYourself Inc.'),
(131748, 104475, 'en', 'name', 'UTMS Society of Japan'),
(131749, 104475, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗUTMS協会'),
(131750, 104476, 'en', 'name', 'Hyogo Prefectural Center for Advanced Science and Technonogy'),
(131751, 104476, 'ja', 'name', 'å…µåŗ«ēœŒē«‹å…ˆē«Æē§‘å­¦ęŠ€č”“ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(131752, 104477, 'en', 'name', 'Aichi International Association'),
(131753, 104477, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę„›ēŸ„ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(131754, 104478, 'en', 'name', 'The Japanese Association of Anatomists'),
(131755, 104478, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č§£å‰–å­¦ä¼š'),
(131756, 104479, 'en', 'name', 'Japan Soil Association'),
(131757, 104479, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åœŸå£Œå”ä¼š'),
(131758, 104480, 'en', 'name', 'Wakayama Professional University of Rehabilitation'),
(131759, 104480, 'ja', 'name', 'å’Œę­Œå±±ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(131760, 104481, 'en', 'name', 'The Association of Japanese Geographers'),
(131761, 104481, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åœ°ē†å­¦ä¼š'),
(131762, 104482, 'en', 'name', 'Institute of Chinese Affairs'),
(131763, 104482, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å›½ē ”ē©¶ę‰€'),
(131764, 104483, 'en', 'name', 'Yokosuka City Institute Of Public Health'),
(131765, 104483, 'ja', 'name', 'ęØŖé ˆč³€åø‚å„åŗ·å®‰å…Øē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(131766, 104484, 'en', 'name', 'Japan Skating Federation'),
(131767, 104484, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¹ć‚±ćƒ¼ćƒˆé€£ē›Ÿ'),
(131768, 104485, 'en', 'name', 'Good Ventures'),
(131769, 104486, 'en', 'name', 'Research Center for Applied Zoology'),
(131770, 104487, 'en', 'name', 'Takatsuki Medical Association'),
(131771, 104487, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé«˜ę§»åø‚åŒ»åø«ä¼š'),
(131772, 104488, 'en', 'name', 'De Montfort University'),
(131773, 104489, 'en', 'name', 'National Defense Medical Society'),
(131774, 104489, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é˜²č”›č”›ē”Ÿå­¦ä¼š'),
(131775, 104490, 'en', 'name', 'The Institute of Oriental Philosophy'),
(131776, 104490, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±ę“‹å“²å­¦ē ”ē©¶ę‰€'),
(131777, 104491, 'en', 'name', 'International Foundation for Information Technology'),
(131778, 104491, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›IT貔団'),
(131779, 104492, 'en', 'name', 'Information Center for Building Administration'),
(131780, 104492, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰č”Œę”æęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(131781, 104493, 'en', 'name', 'Japan Institute of Baking'),
(131782, 104493, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ‘ćƒ³ęŠ€č”“ē ”ē©¶ę‰€'),
(131783, 104494, 'en', 'name', 'Japan Arts Council'),
(131784, 104494, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗę—„ęœ¬čŠøč”“ę–‡åŒ–ęŒÆčˆˆä¼š'),
(131785, 104495, 'en', 'name', 'Japan Bicycle Technical Center'),
(131786, 104495, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč‡Ŗč»¢č»Šē”£ę„­ęŒÆčˆˆå”ä¼šęŠ€č”“ē ”ē©¶ę‰€'),
(131787, 104496, 'en', 'name', 'Chiba Meitoku College'),
(131788, 104496, 'ja', 'name', 'åƒč‘‰ę˜Žå¾³ēŸ­ęœŸå¤§å­¦'),
(131789, 104497, 'en', 'name', 'Esaka Hospital'),
(131790, 104497, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę¾ęŸä¼šę¦Žå‚ē—…é™¢'),
(131791, 104498, 'en', 'name', 'Kanagawa Physical Therapy Association'),
(131792, 104498, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē„žå„ˆå·ēœŒē†å­¦ē™‚ę³•å£«ä¼š'),
(131793, 104499, 'en', 'name', 'Kouki Hospital'),
(131794, 104499, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå…‰č¼ä¼šå…‰č¼ē—…é™¢'),
(131795, 104500, 'en', 'name', 'The Foundation for the Promotion of Industrial Science'),
(131796, 104500, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē”Ÿē”£ęŠ€č”“ē ”ē©¶å„ØåŠ±ä¼š'),
(131797, 104501, 'en', 'name', 'Independent National Electoral Commission'),
(131798, 104502, 'en', 'name', 'Institute for Political Studies, Belgrade'),
(131799, 104502, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за политичке ŃŃ‚ŃƒŠ“ŠøŃ˜Šµ, БеограГ'),
(131800, 104503, 'en', 'name', 'Caledonian College of Engineering'),
(131801, 104504, 'en', 'name', 'Japan Pediatric Association'),
(131802, 104504, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°å…ē§‘åŒ»ä¼š'),
(131803, 104505, 'en', 'name', 'The Nukada Institute for Medical and Biological Research'),
(131804, 104505, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé”ē”°åŒ»å­¦ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(131805, 104506, 'en', 'name', 'White Rose University Consortium'),
(131806, 104507, 'en', 'name', 'Nagoya Ryujo Women''s University'),
(131807, 104507, 'ja', 'name', 'åå¤å±‹ęŸ³åŸŽå„³å­å¤§å­¦'),
(131808, 104508, 'en', 'name', 'Tottori Prefectural Animal Husbandry Experiment Station'),
(131809, 104508, 'ja', 'name', 'é³„å–ēœŒē•œē”£č©¦éØ“å “'),
(131810, 104509, 'en', 'name', 'Aeon Environmental Foundation'),
(131811, 104509, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¤ć‚Ŗćƒ³ē’°å¢ƒč²”å›£'),
(131812, 104510, 'en', 'name', 'Hokkaido International Foundation'),
(131813, 104510, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(131814, 104511, 'en', 'name', 'Japan Sediments Management Association'),
(131815, 104511, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę°“åŗ•č³Ŗęµ„åŒ–ęŠ€č”“å”ä¼š'),
(131816, 104512, 'en', 'name', 'Next Generation Laser Processing Technology Research Association'),
(131817, 104512, 'ja', 'name', 'ę¬”äø–ä»£ćƒ¬ćƒ¼ć‚¶ćƒ¼ćƒ—ćƒ­ć‚»ćƒƒć‚·ćƒ³ć‚°ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(131818, 104513, 'de', 'name', 'Institut für Theorie und Empirie des Sozialen - Werkstatt für sozialpädagogisches Denken e.V.'),
(131819, 104514, 'es', 'name', 'Universidad de Ciencias MƩdicas de la Habana'),
(131820, 104515, 'en', 'name', 'Japanese Society for Mastication Science and Health Promotion'),
(131821, 104515, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å’€åš¼å­¦ä¼š'),
(131822, 104516, 'en', 'name', 'Shibata Gakuen University Junior College'),
(131823, 104516, 'ja', 'name', 'ęŸ“ē”°å­¦åœ’å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(131824, 104517, 'en', 'name', 'National Sanatorium Miyako Nanseien'),
(131825, 104517, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€å®®å¤å—é™åœ’'),
(131826, 104518, 'en', 'name', 'eDNA solutions AB (Sweden)'),
(131827, 104519, 'en', 'name', 'Japanese Educational Clinical Cardiology Society'),
(131828, 104519, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗč‡ØåŗŠåæƒč‡“ē—…å­¦ę•™č‚²ē ”ē©¶ä¼š'),
(131829, 104520, 'en', 'name', 'Japan Society of Physical Education, Health and Sport Sciences'),
(131830, 104520, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½“č‚²å­¦ä¼š'),
(131831, 104521, 'en', 'name', 'Technology Research Association of Magnetic Materials for High-Efficiency Motors'),
(131832, 104521, 'ja', 'name', 'é«˜åŠ¹ēŽ‡ćƒ¢ćƒ¼ć‚æćƒ¼ē”Øē£ę€§ęę–™ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(131833, 104522, 'en', 'name', 'The Japan Titanium Society'),
(131834, 104522, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒć‚æćƒ³å”ä¼š'),
(131835, 104523, 'en', 'name', 'Nagano Society for the Promotion of Science'),
(131836, 104523, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé•·é‡ŽēœŒē§‘å­¦ęŒÆčˆˆä¼š'),
(131837, 104524, 'hr', 'name', 'VeleučiliŔte u Šibeniku'),
(131838, 104524, 'en', 'name', 'Å ibenik University of Applied Sciences'),
(131839, 104525, 'en', 'name', 'Indian Institute of Technology Delhi Abu Dhabi'),
(131840, 104526, 'en', 'name', 'Japanese Society of Steel Construction'),
(131841, 104526, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‹¼ę§‹é€ å”ä¼š'),
(131842, 104527, 'en', 'name', 'Hokkaido Intellect Tank'),
(131843, 104527, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ē·åˆē ”ē©¶čŖæęŸ»ä¼š'),
(131844, 104528, 'en', 'name', 'Osaka Tennoji Zoo'),
(131845, 104528, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤©ēŽ‹åÆŗå‹•ē‰©åœ’'),
(131846, 104529, 'en', 'name', 'National Art School');
INSERT INTO `ror_settings` VALUES
(131847, 104530, 'en', 'name', 'International Institute of Socionics'),
(131848, 104531, 'ja', 'name', 'JAäø‰é‡åŽšē”Ÿé€£ę¾é˜Ŗäø­å¤®ē·åˆē—…é™¢'),
(131849, 104531, 'en', 'name', 'Matsuzaka Central General Hospital'),
(131850, 104532, 'en', 'name', 'Research Institute of Meteorology and Atmospheric Science'),
(131851, 104532, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł‡ŁˆŲ§Ų“Ł†Ų§Ų³ŪŒ و Ų¹Ł„ŁˆŁ… جو'),
(131852, 104533, 'en', 'name', 'SOWA Hospital'),
(131853, 104533, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£ę„›ę…ˆä¼šē›øå’Œē—…é™¢'),
(131854, 104534, 'en', 'name', 'Japan Research Foundation for Clinical Pharmacology'),
(131855, 104534, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč‡ØåŗŠč–¬ē†ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(131856, 104535, 'en', 'name', 'Azal University for Human Development'),
(131857, 104535, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¢Ų²Ų§Ł„ Ł„Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„ŲØŲ“Ų±ŁŠŲ©'),
(131858, 104536, 'en', 'name', 'CSIRO Oceans and Atmosphere'),
(131859, 104537, 'en', 'name', 'Japan Boiler Association'),
(131860, 104537, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒœć‚¤ćƒ©å”ä¼š'),
(131861, 104538, 'en', 'name', 'Nara Prefectural Institute of Industrial Development'),
(131862, 104538, 'ja', 'name', 'å„ˆč‰ÆēœŒē”£ę„­ęŒÆčˆˆē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(131863, 104539, 'en', 'name', 'Japan Society of Colour Material'),
(131864, 104539, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč‰²ęå”ä¼š'),
(131865, 104540, 'en', 'name', 'Japan Swimming Federation'),
(131866, 104540, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę°“ę³³é€£ē›Ÿ'),
(131867, 104541, 'en', 'name', 'United States Air Force Global Strike Command'),
(131868, 104542, 'en', 'name', 'Japan Recreation And Miscellaneous Goods Safety Laboratory'),
(131869, 104542, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę–‡åŒ–ē”Øå“å®‰å…Øč©¦éØ“ę‰€'),
(131870, 104543, 'en', 'name', 'Chulabhorn Royal Academy'),
(131871, 104544, 'en', 'name', 'Japan Institute of Invention and Innovation'),
(131872, 104544, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē™ŗę˜Žå”ä¼š'),
(131873, 104545, 'en', 'name', 'Consumer Co-operative Institute of Japan'),
(131874, 104545, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē”Ÿå”ē·åˆē ”ē©¶ę‰€'),
(131875, 104546, 'en', 'name', 'Japan Road Association'),
(131876, 104546, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é“č·Æå”ä¼š'),
(131877, 104547, 'en', 'name', 'Asia-Pacific Cultural Centre for UNESCO'),
(131878, 104547, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ¦ćƒć‚¹ć‚³ćƒ»ć‚¢ć‚øć‚¢ę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(131879, 104548, 'uz', 'name', 'Paxta Ilmiy-innovasiya Markazi (Uzbekistan)'),
(131880, 104549, 'en', 'name', 'Termez University of Economics and Service'),
(131881, 104550, 'en', 'name', 'Japan Indonesia Association'),
(131882, 104550, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¤ćƒ³ćƒ‰ćƒć‚·ć‚¢å”ä¼š'),
(131883, 104551, 'de', 'name', 'de-RSE e.V.'),
(131884, 104552, 'en', 'name', 'MARINO-FORUM 21'),
(131885, 104552, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒžćƒŖćƒŽćƒ•ć‚©ćƒ¼ćƒ©ćƒ 21'),
(131886, 104553, 'en', 'name', 'University of Buner'),
(131887, 104554, 'en', 'name', 'Japan Aircraft Development Corporation'),
(131888, 104554, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬čˆŖē©ŗę©Ÿé–‹ē™ŗå”ä¼š'),
(131889, 104555, 'en', 'name', 'Shakhrisabz State Pedagogical Institute'),
(131890, 104556, 'en', 'name', 'Anshin Zaidan'),
(131891, 104556, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäø­å°ä¼ę„­ē½å®³č£œå„Ÿå…±ęøˆē¦ē„‰č²”å›£'),
(131892, 104557, 'en', 'name', 'Real Estate Transaction Improvement Organization'),
(131893, 104557, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäøå‹•ē”£é©ę­£å–å¼•ęŽØé€²ę©Ÿę§‹'),
(131894, 104558, 'en', 'name', 'Japanese Society of Psychosomatic Medicine'),
(131895, 104558, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åæƒčŗ«åŒ»å­¦ä¼š'),
(131896, 104559, 'de', 'name', 'Stadtspital Waid'),
(131897, 104560, 'en', 'name', 'Defense Technology Foundation'),
(131898, 104560, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé˜²č”›ęŠ€č”“å”ä¼š'),
(131899, 104561, 'en', 'name', 'Industrial Science Research Promotion Foundation'),
(131900, 104561, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē”Ÿē”£ē§‘å­¦ē ”ē©¶å„ØåŠ±ä¼š'),
(131901, 104562, 'en', 'name', 'Haryugaoka Hospital'),
(131902, 104562, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé‡‘ę£®å’Œåæƒä¼šé‡ē”Ÿćƒ¶äø˜ē—…é™¢'),
(131903, 104563, 'en', 'name', 'Electrochemical Safety Research Institute'),
(131904, 104564, 'en', 'name', 'The Japanese Society of Snow and Ice'),
(131905, 104564, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é›Ŗę°·å­¦ä¼š'),
(131906, 104565, 'en', 'name', 'The Organization for Industrial, Spiritual and Cultural Advancement-International'),
(131907, 104565, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚Ŗć‚¤ć‚¹ć‚«'),
(131908, 104566, 'en', 'name', 'Genius University for Sciences & Technology'),
(131909, 104566, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ†ŁŠŲ³ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(131910, 104567, 'en', 'name', 'Japan Dairy Technical Association'),
(131911, 104567, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä¹³ę„­ęŠ€č”“å”ä¼š'),
(131912, 104568, 'en', 'name', 'Highway Industry Development Organization'),
(131913, 104568, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé“č·Æę–°ē”£ę„­é–‹ē™ŗę©Ÿę§‹'),
(131914, 104569, 'en', 'name', 'Arctic Research Foundation'),
(131915, 104570, 'en', 'name', 'Ebara Medical Association'),
(131916, 104570, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗčåŽŸåŒ»åø«ä¼š'),
(131917, 104571, 'en', 'name', 'Mochida Memorial Foundation For Medical And Pharmaceutical Research'),
(131918, 104571, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęŒē”°čØ˜åæµåŒ»å­¦č–¬å­¦ęŒÆčˆˆč²”å›£'),
(131919, 104572, 'en', 'name', 'Sendai Foundation for Applied Information Sciences'),
(131920, 104572, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä»™å°åæœē”Øęƒ…å ±å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(131921, 104573, 'en', 'name', 'Japan Polar Research Association'),
(131922, 104573, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę„µåœ°ē ”ē©¶ęŒÆčˆˆä¼š'),
(131923, 104574, 'en', 'name', 'Japan Marine Industry Association'),
(131924, 104574, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒžćƒŖćƒ³äŗ‹ę„­å”ä¼š'),
(131925, 104575, 'fr', 'name', 'University FrĆØres Mentouri Constantine 1'),
(131926, 104576, 'en', 'name', 'Scientific Certification Services, Inc. (United States)'),
(131927, 104577, 'es', 'name', 'Universidad de Ciencias MƩdicas de Matanzas'),
(131928, 104578, 'en', 'name', 'Al-Irsyad Cilacap University'),
(131929, 104578, 'id', 'name', 'Universitas Al-Irsyad Cilacap'),
(131930, 104579, 'hi', 'name', 'Balagarh Bijoy Krishna Mahavidyalaya'),
(131931, 104579, 'bn', 'name', 'বলাগঔ় ą¦¬ą¦æą¦œą¦Æą¦¼ą¦•ą§ƒą¦·ą§ą¦£ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(131932, 104580, 'en', 'name', 'Japan Association of Obstetricians and Gynecologists'),
(131933, 104580, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£å©¦äŗŗē§‘åŒ»ä¼š'),
(131934, 104581, 'en', 'name', 'Japanese Society of Pediatric Cardiology and Cardiac Surgery'),
(131935, 104581, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å°å…å¾Ŗē’°å™Øå­¦ä¼š'),
(131936, 104582, 'en', 'name', 'Japan Forest Recreation Association'),
(131937, 104582, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ę£®ęž—ćƒ¬ć‚ÆćƒŖć‚Øćƒ¼ć‚·ćƒ§ćƒ³å”ä¼š'),
(131938, 104583, 'en', 'name', 'Honda Foundation'),
(131939, 104583, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęœ¬ē”°č²”å›£'),
(131940, 104584, 'en', 'name', 'Center for Environmental Creative Studies'),
(131941, 104584, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē’°å¢ƒå‰µé€ ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(131942, 104585, 'en', 'name', 'Springer Nature (Beijing, China)'),
(131943, 104586, 'en', 'name', 'Japan Industrial Promotion Association'),
(131944, 104586, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½ę°‘å·„ę„­ęŒÆčˆˆä¼š'),
(131945, 104587, 'en', 'name', 'Japanese Association of Occupational Therapists'),
(131946, 104587, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½œę„­ē™‚ę³•å£«å”ä¼š'),
(131947, 104588, 'en', 'name', 'Japan Basketball Association'),
(131948, 104588, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒć‚¹ć‚±ćƒƒćƒˆćƒœćƒ¼ćƒ«å”ä¼š'),
(131949, 104589, 'en', 'name', 'UmeƄ Marine Sciences Centre'),
(131950, 104590, 'en', 'name', 'Royal Borough of Kingston upon Thames'),
(131951, 104591, 'en', 'name', 'Alupe University'),
(131952, 104592, 'en', 'name', 'Japan Association of Refrigeration and Air-Conditioning Contractors'),
(131953, 104592, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡ē©ŗčŖæčØ­å‚™å·„ę„­é€£åˆä¼š'),
(131954, 104593, 'en', 'name', 'Kadoorie Farm and Botanic Garden'),
(131955, 104593, 'zh', 'name', 'å˜‰é“ē†å†œåœŗęšØę¤ē‰©å›­'),
(131956, 104594, 'en', 'name', 'WHO Association of Japan'),
(131957, 104594, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬WHO協会'),
(131958, 104595, 'en', 'name', 'Swami Vivekananda University'),
(131959, 104596, 'en', 'name', 'Australian Centre for Sustainable Development Research & Innovation'),
(131960, 104597, 'id', 'name', 'Politeknik Manufaktur Negeri Bangka Belitung'),
(131961, 104598, 'en', 'name', 'The Institute of Image Information and Television Engineers'),
(131962, 104598, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę˜ åƒęƒ…å ±ćƒ”ćƒ‡ć‚£ć‚¢å­¦ä¼š'),
(131963, 104599, 'en', 'name', 'Koto Medical Association'),
(131964, 104599, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±Ÿę±åŒŗåŒ»åø«ä¼š'),
(131965, 104600, 'en', 'name', 'The Institute of Labour Administration'),
(131966, 104600, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŠ“å‹™č”Œę”æē ”ē©¶ę‰€'),
(131967, 104601, 'en', 'name', 'Government Post Graduate College, Karak'),
(131968, 104601, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ پوسٹ گریجویٹ کالج کرک'),
(131969, 104602, 'es', 'name', 'Centro de Investigación y Conservación Marina'),
(131970, 104603, 'en', 'name', 'Japan Environmental Education Forum'),
(131971, 104603, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒę•™č‚²ćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(131972, 104604, 'en', 'name', 'Japan Pest Control Association'),
(131973, 104604, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒšć‚¹ćƒˆć‚³ćƒ³ćƒˆćƒ­ćƒ¼ćƒ«å”ä¼š'),
(131974, 104605, 'en', 'name', 'Asahigawasou Rehabilitation and Medical Center'),
(131975, 104605, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę—­å·č˜ē™‚č‚²ćƒ»åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(131976, 104606, 'en', 'name', 'Japanese Society of Soil Science and Plant Nutrition'),
(131977, 104606, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åœŸå£Œč‚„ę–™å­¦ä¼š'),
(131978, 104607, 'en', 'name', 'Japan Center for Cities'),
(131979, 104607, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éƒ½åø‚ć‚»ćƒ³ć‚æćƒ¼'),
(131980, 104608, 'en', 'name', 'RV University'),
(131981, 104609, 'de', 'name', 'Fachhochschule Westschweiz - Wallis'),
(131982, 104609, 'fr', 'name', 'HES-SO Valais-Wallis'),
(131983, 104610, 'en', 'name', 'K. Matsushita Foundation'),
(131984, 104611, 'fr', 'name', 'HƓpital HƓtel-Dieu de LƩvis'),
(131985, 104612, 'en', 'name', 'Housing RESEARCH&ADVANCEMENT Foundation Of Japan'),
(131986, 104612, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä½å®…ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(131987, 104613, 'en', 'name', 'Japan Light Metal Welding Association'),
(131988, 104613, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč»½é‡‘å±žęŗ¶ęŽ„å”ä¼š'),
(131989, 104614, 'en', 'name', 'The Japanese Society of Psychiatry and Neurology'),
(131990, 104614, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē²¾ē„žē„žēµŒå­¦ä¼š'),
(131991, 104615, 'en', 'name', 'Reliability Center for Electronic Components of Japan'),
(131992, 104615, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é›»å­éƒØå“äæ”é ¼ę€§ć‚»ćƒ³ć‚æćƒ¼'),
(131993, 104616, 'en', 'name', 'Japan Poison Information Center'),
(131994, 104616, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äø­ęÆ’ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(131995, 104617, 'en', 'name', 'Kyoto City International Foundation'),
(131996, 104617, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½åø‚å›½éš›äŗ¤ęµå”ä¼š'),
(131997, 104618, 'en', 'name', 'Japan Association for International Collaboration of Agriculture and Forestry'),
(131998, 104618, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå›½éš›č¾²ęž—ę„­å”åƒå”ä¼š'),
(131999, 104619, 'en', 'name', 'Eden University'),
(132000, 104620, 'en', 'name', 'The Africa Society of Japan'),
(132001, 104620, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚¢ćƒ•ćƒŖć‚«å”ä¼š'),
(132002, 104621, 'en', 'name', 'Japan Steel Constructors Association'),
(132003, 104621, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé‰„éŖØå»ŗčØ­ę„­å”ä¼š'),
(132004, 104622, 'en', 'name', 'The Japanese Association of Rural Medicine'),
(132005, 104622, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč¾²ę‘åŒ»å­¦ä¼š'),
(132006, 104623, 'en', 'name', 'Rocky Mountain Humanistic Counseling and Psychological Association'),
(132007, 104624, 'en', 'name', 'Swiss Economics (Switzerland)'),
(132008, 104625, 'en', 'name', 'Far Eastern Branch of the Russian Academy of Sciences'),
(132009, 104625, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø процессов ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(132010, 104626, 'en', 'name', 'Japan Digital Road Map Association'),
(132011, 104626, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ‡ć‚øć‚æćƒ«é“č·Æåœ°å›³å”ä¼š'),
(132012, 104627, 'de', 'name', 'Berufsbildungswerk Leipzig für Hör- und Sprachgeschädigte gGmbH'),
(132013, 104628, 'id', 'name', 'Universitas Kristen Wira Wacana Sumba'),
(132014, 104629, 'en', 'name', 'Indonesia Fuel Cell and Hydrogen Energy'),
(132015, 104630, 'en', 'name', 'The Architectural Association of Japan'),
(132016, 104630, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰å”ä¼š'),
(132017, 104631, 'en', 'name', 'United States Southern Command'),
(132018, 104632, 'en', 'name', 'Saitama Arts Foundation'),
(132019, 104632, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒčŠøč”“ę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(132020, 104633, 'en', 'name', 'Tokyo Fisheries Promotion Foundation'),
(132021, 104633, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę±äŗ¬ę°“ē”£ęŒÆčˆˆä¼š'),
(132022, 104634, 'en', 'name', 'Kawaguchi Medical Association'),
(132023, 104634, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå·å£åŒ»åø«ä¼š'),
(132024, 104635, 'en', 'name', 'Hachioji Medical Association'),
(132025, 104635, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…«ēŽ‹å­åø‚åŒ»åø«ä¼š'),
(132026, 104636, 'en', 'name', 'The Japan Food Machinery Manufacturers'' Association'),
(132027, 104636, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ę©Ÿę¢°å·„ę„­ä¼š'),
(132028, 104637, 'en', 'name', 'Hamamatsu City Institute of Health and Environment'),
(132029, 104637, 'ja', 'name', 'ęµœę¾åø‚äæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(132030, 104638, 'en', 'name', 'Fukui Prefecture Inland Waters Center'),
(132031, 104638, 'ja', 'name', 'ē¦äŗ•ēœŒå†…ę°“é¢ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(132032, 104639, 'en', 'name', 'Materials Discovery Research Institute'),
(132033, 104640, 'en', 'name', 'Japan Sports Medicine Foundation'),
(132034, 104640, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„ę²»ē™‚åŒ»å­¦ē ”ē©¶ä¼š'),
(132035, 104641, 'en', 'name', 'Saitama Toho Junior College'),
(132036, 104641, 'ja', 'name', 'åŸ¼ēŽ‰ę±čŒēŸ­ęœŸå¤§å­¦'),
(132037, 104642, 'en', 'name', 'Japan Atherosclerosis Research Foundation'),
(132038, 104642, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå‹•č„ˆē”¬åŒ–ē ”ē©¶å„ØåŠ±ä¼š'),
(132039, 104643, 'en', 'name', 'Konya Veterinary Control Institute'),
(132040, 104643, 'tr', 'name', 'Konya Veteriner Kontrol Enstitüsü'),
(132041, 104644, 'en', 'name', 'Hokkaido Road Management Engineering Center'),
(132042, 104644, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“é“č·Æē®”ē†ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(132043, 104645, 'fr', 'name', 'SociƩtƩ de MathƩmatiques AppliquƩes et Industrielles'),
(132044, 104646, 'en', 'name', 'Housing and Community Foundation'),
(132045, 104646, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒć‚¦ć‚øćƒ³ć‚°ć‚¢ćƒ³ćƒ‰ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£č²”å›£'),
(132046, 104647, 'en', 'name', 'Japan Society of Newer Metals'),
(132047, 104647, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę–°é‡‘å±žå”ä¼š'),
(132048, 104648, 'en', 'name', 'THE Oita Prefectural Organization For Industry Creation'),
(132049, 104648, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§åˆ†ēœŒē”£ę„­å‰µé€ ę©Ÿę§‹'),
(132050, 104649, 'en', 'name', 'Environmental Science Research Center Of Yamagata Prefecture'),
(132051, 104649, 'ja', 'name', 'å±±å½¢ēœŒē’°å¢ƒē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(132052, 104650, 'en', 'name', 'Nippon Electric Control Equipment Industries Association'),
(132053, 104650, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę°—åˆ¶å¾”ę©Ÿå™Øå·„ę„­ä¼š'),
(132054, 104651, 'en', 'name', 'The Japan Transportation Planning Association'),
(132055, 104651, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äŗ¤é€ščØˆē”»å”ä¼š'),
(132056, 104652, 'en', 'name', 'Kyoto Prefectural Institute for Northern Industry'),
(132057, 104652, 'ja', 'name', 'äŗ¬éƒ½åŗœē¹”ē‰©ćƒ»ę©Ÿę¢°é‡‘å±žęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(132058, 104653, 'en', 'name', 'The Horological Institute of Japan'),
(132059, 104653, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę™‚čØˆå­¦ä¼š'),
(132060, 104654, 'en', 'name', 'Japan Aeromedical Research Center'),
(132061, 104654, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčˆŖē©ŗåŒ»å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(132062, 104655, 'en', 'name', 'Jigawa State Polytechnic, Dutse'),
(132063, 104656, 'en', 'name', 'Gazipur Agricultural University'),
(132064, 104656, 'bn', 'name', 'ą¦—ą¦¾ą¦œą§€ą¦Ŗą§ą¦° ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą§Ÿ'),
(132065, 104657, 'en', 'name', 'Japanese Animal Hospital Association'),
(132066, 104657, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©ē—…é™¢å”ä¼š'),
(132067, 104658, 'en', 'name', 'Fire Safety Research Institute'),
(132068, 104659, 'en', 'name', 'KOBE Tourism Bureau'),
(132069, 104659, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē„žęˆøč¦³å…‰å±€'),
(132070, 104660, 'en', 'name', 'Energy Institute for Higher Education'),
(132071, 104660, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų§Ł†Ų±Ś˜ŪŒ'),
(132072, 104661, 'en', 'name', 'The Foundation of Research Institute for Oriental Medicine'),
(132073, 104661, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę±ę“‹åŒ»å­¦ē ”ē©¶ę‰€'),
(132074, 104662, 'en', 'name', 'National Sanatorium Tohokushinseien'),
(132075, 104662, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€ę±åŒ—ę–°ē”Ÿåœ’'),
(132076, 104663, 'en', 'name', 'Department of Mineral and Geoscience Malaysia'),
(132077, 104663, 'ms', 'name', 'Jabatan Mineral dan Geosains Malaysia'),
(132078, 104664, 'en', 'name', 'International Centre for Materials Physics'),
(132079, 104664, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å›½é™…ęę–™ē‰©ē†äø­åæƒ'),
(132080, 104665, 'de', 'name', 'Fachhochschule Südwestfalen'),
(132081, 104665, 'en', 'name', 'South Westphalia University of Applied Sciences'),
(132082, 104666, 'en', 'name', 'All Japan Judo Federation'),
(132083, 104666, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…Øę—„ęœ¬ęŸ”é“é€£ē›Ÿ'),
(132084, 104667, 'en', 'name', 'MetroHealth'),
(132085, 104668, 'id', 'name', 'Sekolah Tinggi Pastoral - Yayasan Institut Pastoral Indonesia Malang'),
(132086, 104669, 'en', 'name', 'Nippon Koei Bangladesh Ltd. (Bangladesh)'),
(132087, 104670, 'es', 'name', 'Plataforma de Acción, Gestión e Investigación Social S.A.S. (Colombia)'),
(132088, 104671, 'en', 'name', 'State Key Laboratory of Metal Corrosion and Protection'),
(132089, 104671, 'zh', 'name', 'é‡‘å±žč…čš€äøŽé˜²ęŠ¤å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(132090, 104672, 'en', 'name', 'Shiga Prefectural Livestock Technology Promotion Center'),
(132091, 104672, 'ja', 'name', 'ę»‹č³€ēœŒē•œē”£ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(132092, 104673, 'en', 'name', 'Association for Technical Aids, Inc.'),
(132093, 104673, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ†ć‚ÆćƒŽć‚Øć‚¤ćƒ‰å”ä¼š'),
(132094, 104674, 'en', 'name', 'Japan Association of Athletics Federations'),
(132095, 104674, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é™øäøŠē«¶ęŠ€é€£ē›Ÿ'),
(132096, 104675, 'en', 'name', 'Okinawa Prefectural Deep See Water Research Center'),
(132097, 104675, 'ja', 'name', 'ę²–ēø„ēœŒęµ·ę“‹ę·±å±¤ę°“ē ”ē©¶ę‰€'),
(132098, 104676, 'en', 'name', 'Magnetic Resonance Imaging Institute for Biomedical Research'),
(132099, 104677, 'en', 'name', 'Kagawa Industry Support Foundation'),
(132100, 104677, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‹ćŒć‚ē”£ę„­ę”Æę“č²”å›£'),
(132101, 104678, 'en', 'name', 'Hakujuji General Hospital'),
(132102, 104678, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗē™½åå­—ä¼šē™½åå­—ē·åˆē—…é™¢'),
(132103, 104679, 'en', 'name', 'National Ecological Observatory Network'),
(132104, 104680, 'en', 'name', 'Japan Ship Technology Research Association'),
(132105, 104680, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬čˆ¹čˆ¶ęŠ€č”“ē ”ē©¶å”ä¼š'),
(132106, 104681, 'en', 'name', 'Hokkaido Building Engineering Association'),
(132107, 104681, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“å»ŗēÆ‰ęŠ€č”“å”ä¼š'),
(132108, 104682, 'en', 'name', 'Department of National Museums'),
(132109, 104682, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®ØąÆ‚ą®¤ą®©ą®šą®¾ą®²ąÆˆą®¤ąÆ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ'),
(132110, 104682, 'si', 'name', 'ą¶¢ą·ą¶­ą·’ą¶š ą¶šą·žą¶­ą·”ą¶šą·ą¶œą·ą¶» ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(132111, 104683, 'en', 'name', 'Ankara Yıldırım Beyazıt University'),
(132112, 104683, 'tr', 'name', 'Yıldırım Beyazıt Üniversitesi'),
(132113, 104684, 'en', 'name', 'Suga Weathering Technology Foundation'),
(132114, 104684, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¹ć‚¬ć‚¦ć‚§ć‚¶ćƒŖćƒ³ć‚°ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(132115, 104685, 'en', 'name', 'THE Institute Of Electrical Installation Engineers Of Japan'),
(132116, 104685, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—čØ­å‚™å­¦ä¼š'),
(132117, 104686, 'en', 'name', 'Japan Oilseed Processors Association'),
(132118, 104686, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©ę²¹å”ä¼š'),
(132119, 104687, 'en', 'name', 'Osaka Prefectural Management Foundation'),
(132120, 104687, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¤§é˜Ŗåŗœć‚æć‚¦ćƒ³ē®”ē†č²”å›£'),
(132121, 104688, 'en', 'name', 'Japanese Society of Oral and Maxillofacial Surgeons'),
(132122, 104688, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å£č…”å¤–ē§‘å­¦ä¼š'),
(132123, 104689, 'en', 'name', 'The Telecommunication Technology Committee'),
(132124, 104689, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęƒ…å ±é€šäæ”ęŠ€č”“å§”å“”ä¼š'),
(132125, 104690, 'en', 'name', 'Fishing Boat And System Engineering Association of Japan'),
(132126, 104690, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·ę“‹ę°“ē”£ć‚·ć‚¹ćƒ†ćƒ å”ä¼š'),
(132127, 104691, 'en', 'name', 'Cape Town Creative Academy'),
(132128, 104692, 'en', 'name', 'Aerospace Technologies of Australia (Australia)'),
(132129, 104693, 'en', 'name', 'Vellore Institute of Technology University'),
(132130, 104693, 'ta', 'name', 'ą®µąÆ‡ą®²ąÆ‚ą®°ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(132131, 104694, 'en', 'name', 'Foundation for Mehir and Youth Marriage'),
(132132, 104694, 'tr', 'name', 'GenƧleri Evlendirme ve Mehir Vakfı'),
(132133, 104695, 'en', 'name', 'The Japan Stroke Association'),
(132134, 104695, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č„³å’äø­å”ä¼š'),
(132135, 104696, 'en', 'name', 'Environmental Radioactivity Monitoring Center of Fukushima'),
(132136, 104696, 'ja', 'name', 'ē¦å³¶ēœŒåŽŸå­åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(132137, 104697, 'en', 'name', 'Japan Federation Of Printing Industries'),
(132138, 104697, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å°åˆ·ē”£ę„­é€£åˆä¼š'),
(132139, 104698, 'en', 'name', 'The Academy of Pharmaceutical Science and Technology, Japan'),
(132140, 104698, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬å‰¤å­¦ä¼š'),
(132141, 104699, 'ja', 'name', 'JAäø‰é‡åŽšē”Ÿé€£éˆ“é¹æåŽšē”Ÿē—…é™¢'),
(132142, 104699, 'en', 'name', 'Suzuka Kosei Hospital'),
(132143, 104700, 'en', 'name', 'Ube-kohsan Central Hospital Corp'),
(132144, 104700, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å®‡éƒØčˆˆē”£äø­å¤®ē—…é™¢'),
(132145, 104701, 'en', 'name', 'Japan Synchrotron Radiation Research Institute'),
(132146, 104701, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé«˜č¼åŗ¦å…‰ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(132147, 104702, 'en', 'name', 'Japan Bicycle Promotion Institute'),
(132148, 104702, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč‡Ŗč»¢č»Šē”£ę„­ęŒÆčˆˆå”ä¼š'),
(132149, 104703, 'fr', 'name', 'Laboratoire de Biophotonique et Pharmacologie'),
(132150, 104703, 'en', 'name', 'Laboratory of Biophotonics and Pharmacology'),
(132151, 104704, 'en', 'name', 'NEC C&C Foundation'),
(132152, 104704, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗNEC C&C貔団'),
(132153, 104705, 'en', 'name', 'Ohara Graduate School of Business'),
(132154, 104705, 'ja', 'name', '大原大学院大学'),
(132155, 104706, 'en', 'name', 'Interdisciplinary Center for Archaeology and the Evolution of Human Behaviour'),
(132156, 104707, 'en', 'name', 'Kochi Prefectural Police'),
(132157, 104707, 'ja', 'name', '高矄県警察'),
(132158, 104708, 'en', 'name', 'Nagasaki International Association'),
(132159, 104708, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé•·å“ŽēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(132160, 104709, 'en', 'name', 'SBI Graduate School'),
(132161, 104709, 'ja', 'name', 'SBI大学院大学'),
(132162, 104710, 'fr', 'name', 'Unité sous contrat Caractérisation et suivi des phénomènes d''évolution des résistances'),
(132163, 104711, 'en', 'name', 'Raw Materials Research and Development Council'),
(132164, 104712, 'en', 'name', 'Saga Pharmaceutical Sanitation Center'),
(132165, 104712, 'ja', 'name', 'ä½č³€ēœŒč”›ē”Ÿč–¬ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(132166, 104713, 'fr', 'name', 'Ecole SupĆ©rieure en Sciences Biologiques d’Oran'),
(132167, 104713, 'en', 'name', 'Higher School of Biological Sciences of Oran'),
(132168, 104714, 'en', 'name', 'Japan Traffic Management Technology Association'),
(132169, 104714, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äŗ¤é€šē®”ē†ęŠ€č”“å”ä¼š'),
(132170, 104715, 'en', 'name', 'KV Institute of Management and Information Studies'),
(132171, 104716, 'en', 'name', 'Papua New Guinea National Research Institute'),
(132172, 104717, 'en', 'name', 'The Foundation for Development of the Community'),
(132173, 104717, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåœ°åŸŸē¤¾ä¼šęŒÆčˆˆč²”å›£'),
(132174, 104718, 'en', 'name', 'Water Resources Environment Center, Japan'),
(132175, 104718, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę°“ęŗåœ°ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(132176, 104719, 'en', 'name', 'Sakakibara Onsen hospital'),
(132177, 104719, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗęš²ē“”ä¼šę¦ŠåŽŸęø©ę³‰ē—…é™¢'),
(132178, 104720, 'en', 'name', 'The Japanese Society of Irrigation, Drainage and Rural Engineering'),
(132179, 104720, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗč¾²ę„­č¾²ę‘å·„å­¦ä¼š'),
(132180, 104721, 'en', 'name', 'North-East Interdisciplinary Scientific Research Institute'),
(132181, 104721, 'ru', 'name', 'Деверо-Восточный комплексный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(132182, 104722, 'en', 'name', 'Iwate International Association'),
(132183, 104722, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå²©ę‰‹ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(132184, 104723, 'en', 'name', 'Rowden Technologies (United Kingdom)'),
(132185, 104724, 'en', 'name', 'Ellison Institute of Technology'),
(132186, 104725, 'en', 'name', 'San Isidro College'),
(132187, 104726, 'en', 'name', 'Akita International Association'),
(132188, 104726, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē§‹ē”°ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(132189, 104727, 'en', 'name', 'Nerima Medical Association'),
(132190, 104727, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē·“é¦¬åŒŗåŒ»åø«ä¼š'),
(132191, 104728, 'en', 'name', 'Saint Gabriel College'),
(132192, 104729, 'en', 'name', 'Semiconductor Equipment Association of Japan'),
(132193, 104729, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŠå°Žä½“č£½é€ č£…ē½®å”ä¼š'),
(132194, 104730, 'en', 'name', 'Shanti Volunteer Association'),
(132195, 104730, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗć‚·ćƒ£ćƒ³ćƒ†ć‚£å›½éš›ćƒœćƒ©ćƒ³ćƒ†ć‚£ć‚¢ä¼š'),
(132196, 104731, 'en', 'name', 'KOBE Ymca'),
(132197, 104731, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøYMCA'),
(132198, 104732, 'en', 'name', 'Indian Institute of Information Technology Lucknow'),
(132199, 104733, 'en', 'name', 'Amagasaki Medical Association'),
(132200, 104733, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå°¼å“Žåø‚åŒ»åø«ä¼š'),
(132201, 104734, 'pt', 'name', 'Escola da Magistratura do Estado de RondƓnia - Emeron'),
(132202, 104735, 'en', 'name', 'Nagasaki Nursing Association'),
(132203, 104735, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé•·å“ŽēœŒēœ‹č­·å”ä¼š'),
(132204, 104736, 'sk', 'name', 'GeofyzikÔlny odbor Ústav vied o Zemi v.v.i SlovenskÔ Akadémia Vied'),
(132205, 104736, 'en', 'name', 'Geophysical Division of the Earth Science Institute of the Slovak Academy of Sciences'),
(132206, 104737, 'es', 'name', 'Centro de Normalización Lingüística de la Lengua de Signos Española'),
(132207, 104738, 'id', 'name', 'Universitas Islam Negeri Mahmud Yunus Batusangkar'),
(132208, 104739, 'en', 'name', 'Japan Association of Graphic Arts Technology'),
(132209, 104739, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°åˆ·ęŠ€č”“å”ä¼š'),
(132210, 104740, 'en', 'name', 'Southern United Academy of Sciences Limited'),
(132211, 104740, 'zh', 'name', 'å—ę–¹čÆåˆē§‘å­øē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(132212, 104741, 'en', 'name', 'Japanese Society of Gastrointestinal Cancer Screening'),
(132213, 104741, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¶ˆåŒ–å™ØćŒć‚“ę¤œčØŗå­¦ä¼š'),
(132214, 104742, 'en', 'name', 'International Relations Council of Turkey'),
(132215, 104743, 'en', 'name', 'Nippon Association of Consumer Specialists'),
(132216, 104743, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę¶ˆč²»ē”Ÿę“»ć‚¢ćƒ‰ćƒć‚¤ć‚¶ćƒ¼ćƒ»ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆćƒ»ē›øč«‡å“”å”ä¼š'),
(132217, 104744, 'en', 'name', 'Real Estate Companies Association of Japan'),
(132218, 104744, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäøå‹•ē”£å”ä¼š'),
(132219, 104745, 'en', 'name', 'Japan Wellness Foundation'),
(132220, 104745, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¦ć‚Øćƒ«ćƒć‚¹å”ä¼š'),
(132221, 104746, 'en', 'name', 'Japan Mint'),
(132222, 104746, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗé€ å¹£å±€'),
(132223, 104747, 'en', 'name', 'Tottori Prefectural Education Center'),
(132224, 104747, 'ja', 'name', 'é³„å–ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(132225, 104748, 'en', 'name', 'CSIRO Land and Water'),
(132226, 104749, 'en', 'name', 'Japan Industrial Furnace Manufacturers Association'),
(132227, 104749, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·„ę„­ē‚‰å”ä¼š'),
(132228, 104750, 'en', 'name', 'Japan Association for Trade with Russia & NIS'),
(132229, 104750, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ­ć‚·ć‚¢NISč²æę˜“ä¼š'),
(132230, 104751, 'en', 'name', 'Museum of Natural History Solothurn'),
(132231, 104751, 'fr', 'name', 'MusĆ©e d’histoire naturelle de Soleure'),
(132232, 104751, 'de', 'name', 'Naturmuseum Solothurn'),
(132233, 104752, 'en', 'name', 'The Japan Neurosurgical Society'),
(132234, 104752, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č„³ē„žēµŒå¤–ē§‘å­¦ä¼š'),
(132235, 104753, 'es', 'name', 'Ministerio de Medio Ambiente y Recursos Naturales'),
(132236, 104754, 'en', 'name', 'Japan Electrical Safety & Environment Technology Laboratories'),
(132237, 104754, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé›»ę°—å®‰å…Øē’°å¢ƒē ”ē©¶ę‰€'),
(132238, 104755, 'en', 'name', 'Japan Acupuncture & Moxibustion Association'),
(132239, 104755, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é¼ēøåø«ä¼š'),
(132240, 104756, 'en', 'name', 'THE Osaka Medical Research Foundation For Intractable Diseases'),
(132241, 104756, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗé›£ē—…ē ”ē©¶č²”å›£'),
(132242, 104757, 'en', 'name', 'Foundation for Senior Citizens'' Housing'),
(132243, 104757, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé«˜é½¢č€…ä½å®…č²”å›£'),
(132244, 104758, 'en', 'name', 'Kyoai Gakuen Junior College'),
(132245, 104758, 'ja', 'name', 'å…±ę„›å­¦åœ’å‰ę©‹å›½éš›å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(132246, 104759, 'en', 'name', 'Nagasaki Food Hygiene Association'),
(132247, 104759, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé•·å“ŽēœŒé£Ÿå“č”›ē”Ÿå”ä¼š'),
(132248, 104760, 'en', 'name', 'Kagoshima International Association'),
(132249, 104760, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé¹æå…å³¶ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(132250, 104761, 'en', 'name', 'The Optical Society of Japan'),
(132251, 104761, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…‰å­¦ä¼š'),
(132252, 104762, 'en', 'name', 'The Japanese Midwives Association'),
(132253, 104762, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŠ©ē”£åø«ä¼š'),
(132254, 104763, 'en', 'name', 'Yamagata Prefecture Fisheries Experiment Station'),
(132255, 104763, 'ja', 'name', 'å±±å½¢ēœŒę°“ē”£ē ”ē©¶ę‰€'),
(132256, 104764, 'en', 'name', 'Japan Camera Industry Institute'),
(132257, 104764, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚«ćƒ”ćƒ©č²”å›£'),
(132258, 104765, 'en', 'name', 'The Japan Containers And Packaging Recycling Association'),
(132259, 104765, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å®¹å™ØåŒ…č£…ćƒŖć‚µć‚¤ć‚Æćƒ«å”ä¼š'),
(132260, 104766, 'it', 'name', 'Ospedale "Santa Maria delle Croci" di Ravenna'),
(132261, 104767, 'en', 'name', 'Oral Health Association of Japan'),
(132262, 104767, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå£č…”äæå„å”ä¼š'),
(132263, 104768, 'en', 'name', 'JIS University'),
(132264, 104769, 'en', 'name', 'Higashikyushu Junior College'),
(132265, 104769, 'ja', 'name', 'ę±ä¹å·žēŸ­ęœŸå¤§å­¦'),
(132266, 104770, 'en', 'name', 'International Association of Traffic and Safety Sciences'),
(132267, 104770, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›äŗ¤é€šå®‰å…Øå­¦ä¼š'),
(132268, 104771, 'fr', 'name', 'AutoritƩ de SƻretƩ NuclƩaire'),
(132269, 104771, 'en', 'name', 'French Nuclear Safety Authority'),
(132270, 104772, 'en', 'name', 'Sharjah Maritime Academy'),
(132271, 104773, 'en', 'name', 'The Japan Society for Precision Engineering'),
(132272, 104773, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē²¾åÆ†å·„å­¦ä¼š'),
(132273, 104774, 'en', 'name', 'Save the Children Japan'),
(132274, 104774, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗć‚»ćƒ¼ćƒ–ćƒ»ć‚¶ćƒ»ćƒćƒ«ćƒ‰ćƒ¬ćƒ³ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(132275, 104775, 'en', 'name', 'Ministry of Health and Social Services'),
(132276, 104775, 'fr', 'name', 'Ministère de la Santé et des Services Sociaux'),
(132277, 104776, 'en', 'name', 'Hiroshima Industrial Promotion Organization'),
(132278, 104776, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć²ć‚ć—ć¾ē”£ę„­ęŒÆčˆˆę©Ÿę§‹'),
(132279, 104777, 'en', 'name', 'Institute of Public Administration'),
(132280, 104777, 'ar', 'name', 'معهد ال؄دارة العامة'),
(132281, 104778, 'id', 'name', 'Institut Teknologi dan Bisnis Asia Malang'),
(132282, 104779, 'en', 'name', 'Omiya-Kyoritsu Hospital'),
(132283, 104779, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£ę–°ē”Ÿä¼šå¤§å®®å…±ē«‹ē—…é™¢'),
(132284, 104780, 'en', 'name', 'Japan Construction Training Center'),
(132285, 104780, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½å»ŗčØ­ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(132286, 104781, 'en', 'name', 'Kochi Prefecture Paper Technology Center'),
(132287, 104781, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹ē“™ē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(132288, 104782, 'fr', 'name', 'Mission de Promotion des Materiaux Locaux'),
(132289, 104783, 'en', 'name', 'Sendai gender equal opportunity foundation'),
(132290, 104783, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć›ć‚“ć ć„ē”·å„³å…±åŒå‚ē”»č²”å›£'),
(132291, 104784, 'en', 'name', 'The Japan Institute of Light Metals'),
(132292, 104784, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč»½é‡‘å±žå­¦ä¼š'),
(132293, 104785, 'en', 'name', 'Japan Atomic Industrial Forum, Inc.'),
(132294, 104785, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŽŸå­åŠ›ē”£ę„­å”ä¼š'),
(132295, 104786, 'en', 'name', 'Amagasaki City Institute of Public Health'),
(132296, 104786, 'ja', 'name', 'å°¼å“Žåø‚ē«‹č”›ē”Ÿē ”ē©¶ę‰€'),
(132297, 104787, 'en', 'name', 'RINRI Institute of Ethics'),
(132298, 104787, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå€«ē†ē ”ē©¶ę‰€'),
(132299, 104788, 'it', 'name', 'Fondazione Paolo Procacci'),
(132300, 104789, 'en', 'name', 'Marine & Environmental Research Lab Ltd (Cyprus)'),
(132301, 104790, 'fr', 'name', 'CIRAD - Direction gƩnƩrale'),
(132302, 104791, 'en', 'name', 'Mathematics in Open Access'),
(132303, 104792, 'en', 'name', 'Aijinkai Healthcare Corporation'),
(132304, 104792, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę„›ä»ä¼š'),
(132305, 104793, 'en', 'name', 'Japan Agricultural Mechanization Association'),
(132306, 104793, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č¾²ę„­ę©Ÿę¢°åŒ–å”ä¼š'),
(132307, 104794, 'en', 'name', 'Tada Tomohiro The Institute of Gastroenterology & Proctology'),
(132308, 104794, 'ja', 'name', 'ćŸć ćØć‚‚ć²ć‚čƒƒč…øē§‘č‚›é–€ē§‘'),
(132309, 104795, 'en', 'name', 'Max Weber Foundation - German Humanities Institutes Abroad'),
(132310, 104795, 'de', 'name', 'Max Weber Stiftung - Deutsche Geisteswissenschaftliche Institute im Ausland'),
(132311, 104796, 'en', 'name', 'Japan International Cooperation System'),
(132312, 104796, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å›½éš›å”åŠ›ć‚·ć‚¹ćƒ†ćƒ '),
(132313, 104797, 'en', 'name', 'Association of Urban Housing Sciences'),
(132314, 104797, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗéƒ½åø‚ä½å®…å­¦ä¼š'),
(132315, 104798, 'en', 'name', 'Japan Federation Of HEALTH&SPORTS'),
(132316, 104798, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·ć‚¹ćƒćƒ¼ćƒ„é€£ē›Ÿ'),
(132317, 104799, 'es', 'name', 'Fundación para el Desarrollo de las Ciencias Físicas, MatemÔticas y Naturales'),
(132318, 104800, 'en', 'name', 'Ishikawa Sunrise Industries Creation Organization'),
(132319, 104800, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗēŸ³å·ēœŒē”£ę„­å‰µå‡ŗę”Æę“ę©Ÿę§‹'),
(132320, 104801, 'en', 'name', 'Surya Sen Mahavidyalaya'),
(132321, 104802, 'en', 'name', 'Japan Crane Association'),
(132322, 104802, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Æćƒ¬ćƒ¼ćƒ³å”ä¼š'),
(132323, 104803, 'en', 'name', 'Nishinomiya Medical Association'),
(132324, 104803, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč„æå®®åø‚åŒ»åø«ä¼š'),
(132325, 104804, 'fr', 'name', 'Haute Ecole de SantƩ - HES-SO Valais-Wallis'),
(132326, 104804, 'de', 'name', 'Hochschule für Gesundheit - HES-SO Valais-Wallis'),
(132327, 104804, 'en', 'name', 'School of Health Sciences - HES-SO Valais-Wallis'),
(132328, 104805, 'en', 'name', 'Kawada Hospital'),
(132329, 104805, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę²³ē”°ē—…é™¢'),
(132330, 104806, 'en', 'name', 'National Surimi Manufacturers Association'),
(132331, 104806, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ć™ć‚Ščŗ«å”ä¼š'),
(132332, 104807, 'en', 'name', 'United States Air Force Reserve Command'),
(132333, 104808, 'en', 'name', 'Japan Painting Contractors Association'),
(132334, 104808, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å”—č£…å·„ę„­ä¼š'),
(132335, 104809, 'en', 'name', 'Nagano Nursing Association'),
(132336, 104809, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé•·é‡ŽēœŒēœ‹č­·å”ä¼š'),
(132337, 104810, 'en', 'name', 'Japan Construction Machinery and Construction Association'),
(132338, 104810, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗčØ­ę©Ÿę¢°ę–½å·„å”ä¼š'),
(132339, 104811, 'en', 'name', 'Global Infrastructure Fund Research Foundation Japan'),
(132340, 104811, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚°ćƒ­ćƒ¼ćƒćƒ«ćƒ»ć‚¤ćƒ³ćƒ•ćƒ©ć‚¹ćƒˆćƒ©ć‚Æćƒćƒ£ćƒ¼ē ”ē©¶č²”å›£'),
(132341, 104812, 'en', 'name', 'Nihon Sumo Kyokai'),
(132342, 104812, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē›øę’²å”ä¼š'),
(132343, 104813, 'en', 'name', 'Federal State Budgetary Institution Russian Center of Forensic Medical Expertise of the Ministry of Health of Russian Federation'),
(132344, 104813, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Российский центр суГебно-меГицинской ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(132345, 104814, 'en', 'name', 'Showa University of Music'),
(132346, 104814, 'ja', 'name', 'ę˜­å’ŒéŸ³ę„½å¤§å­¦'),
(132347, 104815, 'en', 'name', 'Computer Graphic Arts Society'),
(132348, 104815, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē”»åƒęƒ…å ±ę•™č‚²ęŒÆčˆˆå”ä¼š'),
(132349, 104816, 'en', 'name', 'Shinano Educational Association'),
(132350, 104816, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäæ”ęæƒę•™č‚²ä¼š'),
(132351, 104817, 'en', 'name', 'U.S. Army Space and Missile Defense Command'),
(132352, 104818, 'cy', 'name', 'Prifysgol Sheffield'),
(132353, 104818, 'en', 'name', 'University of Sheffield'),
(132354, 104819, 'es', 'name', 'Universidad Intercultural del Estado de Tabasco'),
(132355, 104820, 'en', 'name', 'Japan Technology Transfer Association'),
(132356, 104820, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·„ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(132357, 104821, 'en', 'name', 'Japan Science Support Foundation'),
(132358, 104821, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å­¦č”“å”åŠ›č²”å›£'),
(132359, 104822, 'en', 'name', 'Japan Housing Association'),
(132360, 104822, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½å®…å”ä¼š'),
(132361, 104823, 'en', 'name', 'Society for Promotion of Space Science'),
(132362, 104823, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå®‡å®™ē§‘å­¦ęŒÆčˆˆä¼š'),
(132363, 104824, 'en', 'name', 'Nara Prefectural Livestock Experiment Station'),
(132364, 104824, 'ja', 'name', 'å„ˆč‰ÆēœŒē•œē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(132365, 104825, 'en', 'name', 'Institute of Engineering Mechanics, China Earthquake Administration'),
(132366, 104825, 'zh', 'name', 'äø­å›½åœ°éœ‡å±€å·„ēØ‹åŠ›å­¦ē ”ē©¶ę‰€'),
(132367, 104826, 'en', 'name', 'Center of Research for Environment, Energy and Water'),
(132368, 104826, 'ne', 'name', 'वातावरण, ą¤‰ą¤°ą„ą¤œą¤¾ तऄा जल ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(132369, 104827, 'en', 'name', 'Japan Water Works Association'),
(132370, 104827, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“é“å”ä¼š'),
(132371, 104828, 'en', 'name', 'Japan Cycling Federation'),
(132372, 104828, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č‡Ŗč»¢č»Šē«¶ęŠ€é€£ē›Ÿ'),
(132373, 104829, 'fr', 'name', 'Clinique TrƩnel'),
(132374, 104830, 'en', 'name', 'Federal College of Education (Technical) Bichi'),
(132375, 104831, 'fr', 'name', 'AcadƩmie des sciences'),
(132376, 104831, 'en', 'name', 'French Academy of Sciences'),
(132377, 104832, 'en', 'name', 'MARUGAME Medical Center'),
(132378, 104832, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£é‡ä»ä¼šć¾ć‚‹ćŒć‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(132379, 104833, 'en', 'name', 'Fukuoka Asian Urban Research Center'),
(132380, 104833, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē¦å²”ć‚¢ć‚øć‚¢éƒ½åø‚ē ”ē©¶ę‰€'),
(132381, 104834, 'en', 'name', 'Shivnagar Vidya Prasarak Mandal Institute of Technology and Engineering'),
(132382, 104835, 'en', 'name', 'Overseas Environmental Cooperation Center, Japan'),
(132383, 104835, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–ē’°å¢ƒå”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(132384, 104836, 'en', 'name', 'Research Institute Of Regional And Urban Planning'),
(132385, 104836, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸęŒÆčˆˆē ”ē©¶ę‰€'),
(132386, 104837, 'en', 'name', 'Council for Nutritional and Environmental Medicine'),
(132387, 104838, 'es', 'name', 'Instituto Peruano de Neurociencias'),
(132388, 104839, 'en', 'name', 'Japanese Association of Surveyors'),
(132389, 104839, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęø¬é‡å”ä¼š'),
(132390, 104840, 'en', 'name', 'Vehicle Information and Communication System Center'),
(132391, 104840, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé“č·Æäŗ¤é€šęƒ…å ±é€šäæ”ć‚·ć‚¹ćƒ†ćƒ ć‚»ćƒ³ć‚æćƒ¼'),
(132392, 104841, 'en', 'name', 'Central Research Services, Inc.'),
(132393, 104841, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å¤®čŖæęŸ»ē¤¾'),
(132394, 104842, 'en', 'name', 'Small Business Institute Japan'),
(132395, 104842, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å°ä¼ę„­ē ”ē©¶ę‰€'),
(132396, 104843, 'en', 'name', 'THE Botanical Society Of Japan'),
(132397, 104843, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©å­¦ä¼š'),
(132398, 104844, 'en', 'name', 'Nethermind (United Kingdom)'),
(132399, 104845, 'en', 'name', 'Bangladesh Institute of Innovative Health Research'),
(132400, 104846, 'en', 'name', 'Hatch (Australia)'),
(132401, 104847, 'en', 'name', 'Rockwell International (United States)'),
(132402, 104848, 'en', 'name', 'Yokohama Medical Associations'),
(132403, 104848, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęØŖęµœåø‚åŒ»åø«ä¼š'),
(132404, 104849, 'en', 'name', 'Osumikanoya Hospital'),
(132405, 104849, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé¹æå…å³¶ę„›åæƒä¼šå¤§éš…é¹æå±‹ē—…é™¢'),
(132406, 104850, 'en', 'name', 'Research Institute of Marine Invertebrates'),
(132407, 104850, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę°“ē”£ē„”č„Šę¤Žå‹•ē‰©ē ”ē©¶ę‰€'),
(132408, 104851, 'en', 'name', 'Inazawa Kosei Hospital'),
(132409, 104851, 'ja', 'name', 'JAę„›ēŸ„åŽšē”Ÿé€£ēØ²ę²¢åŽšē”Ÿē—…é™¢'),
(132410, 104852, 'en', 'name', 'Collaborative Institutional Training Initiative'),
(132411, 104853, 'tr', 'name', 'Türkiye Eğitim Gönüllüleri Vakfı'),
(132412, 104854, 'sv', 'name', 'Region JƤmtland HƤrjedalen'),
(132413, 104855, 'en', 'name', 'Japan Lubricating Oil Society'),
(132414, 104855, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę½¤ę»‘ę²¹å”ä¼š'),
(132415, 104856, 'en', 'name', 'Springer Nature (Shanghai, China)'),
(132416, 104857, 'ro', 'name', 'Stațiunea de Cercetare-Dezvoltare pentru Pomicultură Bistrița'),
(132417, 104858, 'en', 'name', 'Association of Management Consultants in Japan'),
(132418, 104858, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒå–¶å£«ä¼š'),
(132419, 104859, 'fr', 'name', 'Office pour les insectes et leur environnement (Opie)'),
(132420, 104860, 'en', 'name', 'Comprehensive Research Organization for Science and Technology, Yamanashi Prefectural Government'),
(132421, 104860, 'ja', 'name', 'å±±ę¢ØēœŒē·åˆē†å·„å­¦ē ”ē©¶ę©Ÿę§‹'),
(132422, 104861, 'en', 'name', 'Agricultural Development Consultants Association'),
(132423, 104861, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–č¾²ę„­é–‹ē™ŗć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒ„å”ä¼š'),
(132424, 104862, 'en', 'name', 'Shirai Hospital'),
(132425, 104862, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē™½åÆä¼šē™½äŗ•ē—…é™¢'),
(132426, 104863, 'en', 'name', 'The Academy of Clinical Dentistry'),
(132427, 104863, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬é”Žå’¬åˆå­¦ä¼š'),
(132428, 104864, 'en', 'name', 'Osaka Architecture Technology Association'),
(132429, 104864, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¤§é˜Ŗå»ŗēÆ‰ęŠ€č”“å”ä¼š'),
(132430, 104865, 'en', 'name', 'Japan Property Management Association'),
(132431, 104865, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č³ƒč²øä½å®…ē®”ē†å”ä¼š'),
(132432, 104866, 'en', 'name', 'JAPAN Anti-Doping Agency'),
(132433, 104866, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ³ćƒćƒ»ćƒ‰ćƒ¼ćƒ”ćƒ³ć‚°ę©Ÿę§‹'),
(132434, 104867, 'en', 'name', 'Ɩstersunds Hospital'),
(132435, 104867, 'sv', 'name', 'Ɩstersunds sjukhus'),
(132436, 104868, 'en', 'name', 'Institute of Earthquake Forecasting, China Earthquake Administration'),
(132437, 104868, 'zh', 'name', 'äø­å›½åœ°éœ‡å±€åœ°éœ‡é¢„ęµ‹ē ”ē©¶ę‰€'),
(132438, 104869, 'en', 'name', 'Hokkaido Guide Dogs Association'),
(132439, 104869, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“ē›²å°ŽēŠ¬å”ä¼š'),
(132440, 104870, 'en', 'name', 'The Japan Bloodhorse Breeders''Association'),
(132441, 104870, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č»½ēØ®é¦¬å”ä¼š'),
(132442, 104871, 'de', 'name', 'Ministerium für Klimaschutz, Landwirtschaft, ländliche Räume und Umwelt des Landes Mecklenburg-Vorpommern'),
(132443, 104872, 'en', 'name', 'Advanced Technological Center'),
(132444, 104872, 'no_lang_code', 'name', 'Fundació CTM Centre Tecnològic'),
(132445, 104873, 'en', 'name', 'Turan International University'),
(132446, 104874, 'en', 'name', 'Joshibi Junior College of Art and Design'),
(132447, 104874, 'ja', 'name', 'å„³å­ē¾Žč”“å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(132448, 104875, 'id', 'name', 'Universitas Islam An Nur Lampung'),
(132449, 104876, 'en', 'name', 'Japan Association for Women''s Education'),
(132450, 104876, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å„³ę€§å­¦ēæ’č²”å›£'),
(132451, 104877, 'en', 'name', 'Future Cities Institute'),
(132452, 104878, 'es', 'name', 'CEDEU - Centro de Estudios Universitarios'),
(132453, 104879, 'en', 'name', 'Japan Designers Association'),
(132454, 104879, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›³ę”ˆå®¶å”ä¼š'),
(132455, 104880, 'en', 'name', 'Society for Art in Education'),
(132456, 104880, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę•™č‚²ē¾Žč”“ęŒÆčˆˆä¼š'),
(132457, 104881, 'en', 'name', 'Shonan Institute of Chemoinformatics and Mathmatical Chemistry'),
(132458, 104881, 'ja', 'name', 'ę¹˜å—ęƒ…å ±ę•°ē†åŒ–å­¦ē ”ē©¶ę‰€'),
(132459, 104882, 'en', 'name', 'Thermal Management Materials and technology Research Association'),
(132460, 104882, 'ja', 'name', 'ęœŖåˆ©ē”Øē†±ć‚Øćƒćƒ«ć‚®ćƒ¼é©ę–°ēš„ę“»ē”ØęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(132461, 104883, 'en', 'name', 'Japan Family Care Association'),
(132462, 104883, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å®¶åŗ­ē”Ÿę“»ē ”ē©¶å”ä¼š'),
(132463, 104884, 'en', 'name', 'Japanese Society for Preservation of Birds'),
(132464, 104884, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é³„é”žäæč­·é€£ē›Ÿ'),
(132465, 104885, 'en', 'name', 'Center of Research in Mechanics'),
(132466, 104885, 'fr', 'name', 'Centre de recherche en mƩcanique'),
(132467, 104885, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„ŲØŲ­ŁˆŲ« في الهندسة Ų§Ł„Ł…ŁŠŁƒŲ§Ł†ŁŠŁƒŁŠŲ©'),
(132468, 104886, 'en', 'name', 'Japan Volleyball Association'),
(132469, 104886, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒćƒ¬ćƒ¼ćƒœćƒ¼ćƒ«å”ä¼š'),
(132470, 104887, 'en', 'name', 'Express Highway Research Foundation of Japan'),
(132471, 104887, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé«˜é€Ÿé“č·ÆčŖæęŸ»ä¼š'),
(132472, 104888, 'en', 'name', 'Kenwakai Ootemachi Hospital'),
(132473, 104888, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå„å’Œä¼šå¤§ę‰‹ē”ŗē—…é™¢'),
(132474, 104889, 'no_lang_code', 'name', 'Boeing (Australia)'),
(132475, 104890, 'en', 'name', 'The Association of Powder Process Industry and Engineering, JAPAN'),
(132476, 104890, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē²‰ä½“å·„ę„­ęŠ€č”“å”ä¼š'),
(132477, 104891, 'de', 'name', 'Stadtspital Zürich'),
(132478, 104892, 'en', 'name', 'IESE Business School'),
(132479, 104893, 'en', 'name', 'Japan Meat Technology Institute'),
(132480, 104893, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é£Ÿč‚‰ē”Ÿē”£ęŠ€č”“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(132481, 104894, 'en', 'name', 'David Umahi Federal University of Health Sciences Uburu'),
(132482, 104895, 'en', 'name', 'Society for Agricultural Education Research Development Abroad'),
(132483, 104895, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–č¾²ę„­ę•™č‚²ćƒ»ē ”ē©¶é–‹ē™ŗå”ä¼š'),
(132484, 104896, 'en', 'name', 'The Asahi Glass Foundation'),
(132485, 104896, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—­ē”å­č²”å›£'),
(132486, 104897, 'en', 'name', 'The Radiation Science Society of Japan'),
(132487, 104897, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč¼»å°„ē§‘å­¦ē ”ē©¶ä¼š'),
(132488, 104898, 'en', 'name', 'Center for Digital Narrative'),
(132489, 104898, 'no', 'name', 'Senter for digitale fortellinger'),
(132490, 104899, 'it', 'name', 'SocietĆ  Storica e Antropologica di Valle Camonica'),
(132491, 104900, 'en', 'name', 'Hyogo International Association'),
(132492, 104900, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…µåŗ«ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(132493, 104901, 'en', 'name', 'STEI Yogyakarta'),
(132494, 104902, 'en', 'name', 'Sofar Ocean (United States)'),
(132495, 104903, 'en', 'name', 'Louis Stokes Cleveland VA Medical Center'),
(132496, 104904, 'en', 'name', 'Kuroshio Biology Research Institute'),
(132497, 104904, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé»’ę½®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(132498, 104905, 'es', 'name', 'Instituto de BiologĆ­a de Organismos Marinos'),
(132499, 104906, 'en', 'name', 'The Mori Memorial Foundation'),
(132500, 104906, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę£®čØ˜åæµč²”å›£'),
(132501, 104907, 'en', 'name', 'Tashkent State Agrarian University'),
(132502, 104907, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(132503, 104908, 'it', 'name', 'IFOM'),
(132504, 104909, 'en', 'name', 'Japanese Association of Zoos and Aquariums'),
(132505, 104909, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©åœ’ę°“ę—é¤Øå”ä¼š'),
(132506, 104910, 'en', 'name', 'Joshibi University of Art and Design'),
(132507, 104910, 'ja', 'name', 'å„³å­ē¾Žč”“å¤§å­¦'),
(132508, 104911, 'en', 'name', 'Junior Chamber International');
INSERT INTO `ror_settings` VALUES
(132509, 104911, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§ę±é’å¹“ä¼šč­°ę‰€'),
(132510, 104912, 'en', 'name', 'Harajuku Rehabilitation Hospital'),
(132511, 104912, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå·ØęØ¹ć®ä¼šåŽŸå®æćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(132512, 104913, 'en', 'name', 'Ibarakiken Medical Center'),
(132513, 104913, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčŒØåŸŽēœŒćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(132514, 104914, 'en', 'name', 'Nature Conservation Society of Hokkaido'),
(132515, 104914, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“č‡Ŗē„¶äæč­·å”ä¼š'),
(132516, 104915, 'en', 'name', 'The Graduate School of Social Design'),
(132517, 104915, 'ja', 'name', 'ē¤¾ä¼šę§‹ęƒ³å¤§å­¦é™¢å¤§å­¦'),
(132518, 104916, 'en', 'name', 'Tochigi Prefectural Okamotodai Hospital'),
(132519, 104916, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę ƒęœØēœŒē«‹å²”ęœ¬å°ē—…é™¢'),
(132520, 104917, 'en', 'name', 'NHK Service Center, Inc.'),
(132521, 104917, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗNHKć‚µćƒ¼ćƒ“ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(132522, 104918, 'en', 'name', 'Japan Rugby Football Union'),
(132523, 104918, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ©ć‚°ćƒ“ćƒ¼ćƒ•ćƒƒćƒˆćƒœćƒ¼ćƒ«å”ä¼š'),
(132524, 104919, 'en', 'name', 'The Japan Refrigeration and Air Conditioning Industry Association'),
(132525, 104919, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡ē©ŗčŖæå·„ę„­ä¼š'),
(132526, 104920, 'en', 'name', 'The Japan Association of Rural Solutions for Environmental Conservation and Resource Recycling'),
(132527, 104920, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåœ°åŸŸē’°å¢ƒč³‡ęŗć‚»ćƒ³ć‚æćƒ¼'),
(132528, 104921, 'en', 'name', 'Kanagawa International Foundation'),
(132529, 104921, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‹ćŖćŒć‚å›½éš›äŗ¤ęµč²”å›£'),
(132530, 104922, 'en', 'name', 'The Japanese Society for Food Science and Technology Secretariat'),
(132531, 104922, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ē§‘å­¦å·„å­¦ä¼š'),
(132532, 104923, 'en', 'name', 'PFA Pension (Denmark)'),
(132533, 104924, 'en', 'name', 'Kinugasa Research Foundation for Textile Science'),
(132534, 104924, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč”£ē¬ ē¹Šē¶­ē ”ē©¶ę‰€'),
(132535, 104925, 'en', 'name', 'Organization for Small & Medium Enterprises and Regional Innovation, JAPAN'),
(132536, 104925, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗäø­å°ä¼ę„­åŸŗē›¤ę•“å‚™ę©Ÿę§‹'),
(132537, 104926, 'en', 'name', 'International Professional University of Technology in Tokyo'),
(132538, 104926, 'ja', 'name', 'ę±äŗ¬å›½éš›å·„ē§‘å°‚é–€č·å¤§å­¦'),
(132539, 104927, 'en', 'name', 'Japanese Society of Pediatric Surgeons'),
(132540, 104927, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å°å…å¤–ē§‘å­¦ä¼š'),
(132541, 104928, 'en', 'name', 'Japan Society for Atmospheric Environment'),
(132542, 104928, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§ę°—ē’°å¢ƒå­¦ä¼š'),
(132543, 104929, 'en', 'name', 'Human Media Creation Center'),
(132544, 104929, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä¹å·žćƒ’ćƒ„ćƒ¼ćƒžćƒ³ćƒ”ćƒ‡ć‚£ć‚¢å‰µé€ ć‚»ćƒ³ć‚æćƒ¼'),
(132545, 104930, 'en', 'name', 'Japan Monorail Association'),
(132546, 104930, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ¢ćƒŽćƒ¬ćƒ¼ćƒ«å”ä¼š'),
(132547, 104931, 'en', 'name', 'Nagasaki City Public Health and Environmental Testing Center'),
(132548, 104931, 'ja', 'name', 'é•·å“Žåø‚äæå„ē’°å¢ƒč©¦éØ“ę‰€'),
(132549, 104932, 'en', 'name', 'Yamanashi International Association'),
(132550, 104932, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå±±ę¢ØēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(132551, 104933, 'en', 'name', 'Federal State Budgetary Institution ā€˜Scientific Centre for Expert Evaluation of Medicinal Products’ of the Ministry of Health of the Russian Federation (SCEEMP)'),
(132552, 104933, 'ru', 'name', 'Ā«ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ среГств меГицинского ŠæŃ€ŠøŠ¼ŠµŠ½ŠµŠ½ŠøŃĀ» ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации (ФГБУ Ā«ŠŠ¦Š­Š”ŠœŠŸĀ» ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России)'),
(132553, 104934, 'en', 'name', 'Yamamoto the Third Hospital'),
(132554, 104934, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå±±ē“€ä¼šå±±ęœ¬ē¬¬äø‰ē—…é™¢'),
(132555, 104935, 'en', 'name', 'The Japanese Society of Printing Science and Technology'),
(132556, 104935, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å°åˆ·å­¦ä¼š'),
(132557, 104936, 'en', 'name', 'Japan Art Association'),
(132558, 104936, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē¾Žč”“å”ä¼š'),
(132559, 104937, 'en', 'name', 'Saijo City Shuso Hospital'),
(132560, 104937, 'ja', 'name', 'č„æę”åø‚ē«‹å‘Øę”‘ē—…é™¢'),
(132561, 104938, 'en', 'name', 'Suzhou University'),
(132562, 104938, 'zh', 'name', 'å®æå·žå­¦é™¢'),
(132563, 104939, 'en', 'name', 'The Japan Muscular Dystrophy Association'),
(132564, 104939, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē­‹ć‚øć‚¹ćƒˆćƒ­ćƒ•ć‚£ćƒ¼å”ä¼š'),
(132565, 104940, 'en', 'name', 'Valahia Medical Center'),
(132566, 104941, 'en', 'name', 'International Lake Environment Committee Foundation'),
(132567, 104941, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ę¹–ę²¼ē’°å¢ƒå§”å“”ä¼š'),
(132568, 104942, 'en', 'name', 'Chubu Okinawa Medical Association'),
(132569, 104942, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­éƒØåœ°åŒŗåŒ»åø«ä¼š'),
(132570, 104943, 'en', 'name', 'Genkikai Yokohama Hospital'),
(132571, 104943, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å…ƒę°—ä¼šęØŖęµœē—…é™¢'),
(132572, 104944, 'en', 'name', 'Kagawa Prefecture Livestock Experiment Station'),
(132573, 104944, 'ja', 'name', 'é¦™å·ēœŒē•œē”£č©¦éØ“å “'),
(132574, 104945, 'en', 'name', 'Shipbuilding Research Centre of Japan'),
(132575, 104945, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é€ čˆ¹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(132576, 104946, 'en', 'name', 'The Life Insurance Association of Japan'),
(132577, 104946, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē”Ÿå‘½äæé™ŗå”ä¼š'),
(132578, 104947, 'en', 'name', 'Superconducting Sensing Technology Research Association'),
(132579, 104947, 'ja', 'name', 'č¶…é›»å°Žć‚»ćƒ³ć‚·ćƒ³ć‚°ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(132580, 104948, 'en', 'name', 'Landscape Research Institute'),
(132581, 104948, 'cs', 'name', 'Výzkumný ústav pro kraj'),
(132582, 104949, 'en', 'name', 'Yamazaki Professional College of Animal Health Technology'),
(132583, 104949, 'ja', 'name', 'ćƒ¤ćƒžć‚¶ć‚­å‹•ē‰©ēœ‹č­·å°‚é–€č·ēŸ­ęœŸå¤§å­¦'),
(132584, 104950, 'en', 'name', 'Functional Water Foundation'),
(132585, 104950, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę©Ÿčƒ½ę°“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(132586, 104951, 'en', 'name', 'Japan Dairy Industry Association'),
(132587, 104951, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä¹³ę„­å”ä¼š'),
(132588, 104952, 'en', 'name', 'Agricultural Development and Training Center'),
(132589, 104952, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč¾²ę„­é–‹ē™ŗē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(132590, 104953, 'es', 'name', 'Instituto Interuniversitario de Investigación Avanzada sobre Evaluación de la Ciencia y la Universidad'),
(132591, 104953, 'en', 'name', 'Research Institute for Higher Education and Science'),
(132592, 104954, 'en', 'name', 'The Overseas Coastal Area Development Institute of Japan'),
(132593, 104954, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›č‡Øęµ·é–‹ē™ŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(132594, 104955, 'en', 'name', 'United States Northern Command'),
(132595, 104956, 'en', 'name', 'Laghman University'),
(132596, 104956, 'ps', 'name', 'لغمان Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(132597, 104957, 'en', 'name', 'Jacobs (Australia)'),
(132598, 104958, 'sr', 'name', 'Institut za proučavanje lekovitog bilja "Dr Josif Pančić" u Beogradu'),
(132599, 104958, 'en', 'name', 'Institute for Medicinal Plants Research "dr Josif Pančić"'),
(132600, 104959, 'fr', 'name', 'Ecole Nationale Polytechnique de Constantine'),
(132601, 104960, 'en', 'name', 'Asahi Group Foundation'),
(132602, 104960, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚µćƒ’ć‚°ćƒ«ćƒ¼ćƒ—å­¦č”“ęŒÆčˆˆč²”å›£'),
(132603, 104961, 'en', 'name', 'Japan Family Planning Association, Inc.'),
(132604, 104961, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å®¶ę—čØˆē”»å”ä¼š'),
(132605, 104962, 'en', 'name', 'Matsuyama International Center'),
(132606, 104962, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę¾å±±å›½éš›äŗ¤ęµå”ä¼š'),
(132607, 104963, 'en', 'name', 'AIC Yaesu Clinic'),
(132608, 104963, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£č±Šę™ŗä¼šAICå…«é‡ę“²ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(132609, 104964, 'en', 'name', 'Niigata Psychiatric Center'),
(132610, 104964, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ē²¾ē„žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(132611, 104965, 'en', 'name', 'Bayazid Rokhan Institute of Higher Education'),
(132612, 104966, 'en', 'name', 'The Japanese Orthopaedic Association'),
(132613, 104966, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę•“å½¢å¤–ē§‘å­¦ä¼š'),
(132614, 104967, 'en', 'name', 'The Calamity Science Institute'),
(132615, 104967, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē½å®³ē§‘å­¦ē ”ē©¶ę‰€'),
(132616, 104968, 'en', 'name', 'Saitama International Association'),
(132617, 104968, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(132618, 104969, 'it', 'name', 'Consorzio Polo Tecnologico Magona'),
(132619, 104970, 'en', 'name', 'Association of New Urban Housing Technology'),
(132620, 104970, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę–°éƒ½åø‚ćƒć‚¦ć‚øćƒ³ć‚°å”ä¼š'),
(132621, 104971, 'en', 'name', 'Glass MANUFACTURERS'' Association Of Japan'),
(132622, 104971, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”å­č£½å“å·„ę„­ä¼š'),
(132623, 104972, 'en', 'name', 'Japan Center for Area Development Research'),
(132624, 104972, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åœ°åŸŸé–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(132625, 104973, 'en', 'name', 'Abdulrahman Al-Sumait University'),
(132626, 104973, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عبدالرحمن Ų§Ł„Ų³Ł…ŁŠŲ·'),
(132627, 104974, 'en', 'name', 'Japan Plywood Inspection Corporation'),
(132628, 104974, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åˆęæę¤œęŸ»ä¼š'),
(132629, 104975, 'en', 'name', 'IDEA College, Malta'),
(132630, 104976, 'en', 'name', 'Kanagawa Industrial Promotion Center'),
(132631, 104976, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žå„ˆå·ē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(132632, 104977, 'en', 'name', 'College of Mexico'),
(132633, 104977, 'es', 'name', 'El Colegio de MƩxico'),
(132634, 104978, 'en', 'name', 'The Remote Sensing Society of Japan'),
(132635, 104978, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒŖćƒ¢ćƒ¼ćƒˆć‚»ćƒ³ć‚·ćƒ³ć‚°å­¦ä¼š'),
(132636, 104979, 'en', 'name', 'Agriculture & Livestock Industries Corporation'),
(132637, 104979, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗč¾²ē•œē”£ę„­ęŒÆčˆˆę©Ÿę§‹'),
(132638, 104980, 'en', 'name', 'Japan Society for Safety Engineering'),
(132639, 104980, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗå®‰å…Øå·„å­¦ä¼š'),
(132640, 104981, 'en', 'name', 'Humanitec Junior College'),
(132641, 104981, 'ja', 'name', 'ćƒ¦ćƒžćƒ‹ćƒ†ć‚ÆēŸ­ęœŸå¤§å­¦'),
(132642, 104982, 'en', 'name', 'Kanazawa Seiryo University'),
(132643, 104982, 'ja', 'name', 'é‡‘ę²¢ę˜ŸēØœå¤§å­¦'),
(132644, 104983, 'en', 'name', 'Japan Media Communication Center'),
(132645, 104983, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę”¾é€ē•Ŗēµ„å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(132646, 104984, 'en', 'name', 'Japan Telework Association'),
(132647, 104984, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ†ćƒ¬ćƒÆćƒ¼ć‚Æå”ä¼š'),
(132648, 104985, 'en', 'name', 'Yokohama Sports Association'),
(132649, 104985, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęØŖęµœåø‚ä½“č‚²å”ä¼š'),
(132650, 104986, 'en', 'name', 'United States European Command'),
(132651, 104987, 'en', 'name', 'Medical Corporation Kyowakai Senri Chuo Hospital'),
(132652, 104987, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå”å’Œä¼šåƒé‡Œäø­å¤®ē—…é™¢'),
(132653, 104988, 'en', 'name', 'The Japan Federation of Engineering Societies'),
(132654, 104988, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å·„å­¦ä¼š'),
(132655, 104989, 'en', 'name', 'Nihon Ki-in'),
(132656, 104989, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę£‹é™¢'),
(132657, 104990, 'en', 'name', 'Southern Philippines Agri-Business and Marine and Aquatic School of Technology'),
(132658, 104991, 'en', 'name', 'Society of Automotive Engineers of Japan, Inc.'),
(132659, 104991, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗč‡Ŗå‹•č»ŠęŠ€č”“ä¼š'),
(132660, 104992, 'en', 'name', 'Al Maaref University'),
(132661, 104992, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المعارف'),
(132662, 104993, 'en', 'name', 'Chiba Aiyukai Kinen Hospital'),
(132663, 104993, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę„›å‹ä¼šåƒč‘‰ę„›å‹ä¼ščØ˜åæµē—…é™¢'),
(132664, 104994, 'en', 'name', 'Chiba City International Association'),
(132665, 104994, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåƒč‘‰åø‚å›½éš›äŗ¤ęµå”ä¼š'),
(132666, 104995, 'en', 'name', 'The Japan Council of Traffic Science'),
(132667, 104995, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬äŗ¤é€šē§‘å­¦å­¦ä¼š'),
(132668, 104996, 'en', 'name', 'Niigata City Institute of Public Health and Environment'),
(132669, 104996, 'ja', 'name', 'ę–°ę½Ÿåø‚č”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(132670, 104997, 'en', 'name', 'United States Strategic Command'),
(132671, 104998, 'en', 'name', 'Government Pension Investment Fund'),
(132672, 104998, 'ja', 'name', 'å¹“é‡‘ē©ē«‹é‡‘ē®”ē†é‹ē”Øē‹¬ē«‹č”Œę”æę³•äŗŗ'),
(132673, 104999, 'en', 'name', 'Kenkoigaku Associaton'),
(132674, 104999, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå„åŗ·åŒ»å­¦å”ä¼š'),
(132675, 105000, 'en', 'name', 'European Infrastructure for Translational Medicine'),
(132676, 105001, 'en', 'name', 'Tochigi Mental Health & Welfare Center'),
(132677, 105001, 'ja', 'name', 'ę ƒęœØēœŒē²¾ē„žäæå„ē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼'),
(132678, 105002, 'en', 'name', 'Japan Civil engineering Consultants Association'),
(132679, 105002, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå»ŗčØ­ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒ„å”ä¼š'),
(132680, 105003, 'en', 'name', 'Information Center For Petroleum Exploration And Production'),
(132681, 105003, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗēŸ³ę²¹é–‹ē™ŗęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(132682, 105004, 'no_lang_code', 'name', 'Rockwell Automation (United States)'),
(132683, 105005, 'en', 'name', 'Dr. Subhash University'),
(132684, 105006, 'en', 'name', 'American International University Kuwait'),
(132685, 105007, 'fr', 'name', 'CIRAD - Direction gƩnƩrale dƩlƩguƩe aux ressources et aux dispositifs'),
(132686, 105007, 'en', 'name', 'CIRAD-Office of the Director General in charge of Resources and Organization'),
(132687, 105008, 'en', 'name', 'Okinawa Prefectural Police'),
(132688, 105008, 'ja', 'name', 'ę²–ēø„ēœŒč­¦åÆŸ'),
(132689, 105009, 'en', 'name', 'Institute for Balkan Studies SASA'),
(132690, 105009, 'sr', 'name', 'Š‘Š°Š»ŠŗŠ°Š½Š¾Š»Š¾ŃˆŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(132691, 105010, 'en', 'name', 'Japan Lighting Manufacturers Association'),
(132692, 105010, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē…§ę˜Žå·„ę„­ä¼š'),
(132693, 105011, 'en', 'name', 'Institute for HyperNetwork Society'),
(132694, 105011, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒć‚¤ćƒ‘ćƒ¼ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æē¤¾ä¼šē ”ē©¶ę‰€'),
(132695, 105012, 'en', 'name', 'Ski Association of Japan'),
(132696, 105012, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…Øę—„ęœ¬ć‚¹ć‚­ćƒ¼é€£ē›Ÿ'),
(132697, 105013, 'en', 'name', 'Foundation for MultiMedia Communications'),
(132698, 105013, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒžćƒ«ćƒćƒ”ćƒ‡ć‚£ć‚¢ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(132699, 105014, 'en', 'name', 'Japan Geotechnical Consultants Association'),
(132700, 105014, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½åœ°č³ŖčŖæęŸ»ę„­å”ä¼šé€£åˆä¼š'),
(132701, 105015, 'en', 'name', 'Springer Nature (Nanjing, China)'),
(132702, 105016, 'en', 'name', 'National Land Planning Association'),
(132703, 105016, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½åœŸčØˆē”»å”ä¼š'),
(132704, 105017, 'en', 'name', 'The Accessible Design Foundation of Japan'),
(132705, 105017, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…±ē”Øå“ęŽØé€²ę©Ÿę§‹'),
(132706, 105018, 'en', 'name', 'Yokohama Minatomirai'),
(132707, 105018, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęØŖęµœćæćŖćØćæć‚‰ć„21'),
(132708, 105019, 'en', 'name', 'Japan Robot Association'),
(132709, 105019, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ­ćƒœćƒƒćƒˆå·„ę„­ä¼š'),
(132710, 105020, 'en', 'name', 'Federal Housing Finance Agency'),
(132711, 105021, 'en', 'name', 'Hokkaido Construction Technology Center'),
(132712, 105021, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“å»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(132713, 105022, 'en', 'name', 'University Hospitals Cleveland Medical Center'),
(132714, 105023, 'en', 'name', 'United States Air Mobility Command'),
(132715, 105024, 'en', 'name', 'Sa''ada University'),
(132716, 105024, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲµŲ¹ŲÆŲ©'),
(132717, 105025, 'en', 'name', 'Japan Elevator Association'),
(132718, 105025, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Øćƒ¬ćƒ™ćƒ¼ć‚æćƒ¼å”ä¼š'),
(132719, 105026, 'en', 'name', 'Woogene B&G Co., Ltd. (South Korea)'),
(132720, 105026, 'ko', 'name', 'ģš°ģ§„ė¹„ģ•¤ģ§€ ģ£¼ģ‹ķšŒģ‚¬'),
(132721, 105027, 'en', 'name', 'United States Pacific Fleet'),
(132722, 105028, 'en', 'name', 'University Ahmed Zabana of Relizane'),
(132723, 105028, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų£Ų­Ł…ŲÆ زبانة - ŲŗŁ„ŁŠŲ²Ų§Ł†'),
(132724, 105029, 'en', 'name', 'UL Research Institutes'),
(132725, 105030, 'en', 'name', 'Japan Atomic Energy Relations Organization'),
(132726, 105030, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åŽŸå­åŠ›ę–‡åŒ–č²”å›£'),
(132727, 105031, 'en', 'name', 'New Energy Foundation'),
(132728, 105031, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę–°ć‚Øćƒćƒ«ć‚®ćƒ¼č²”å›£'),
(132729, 105032, 'en', 'name', 'Fukui Prefectural Environmental Radiation Research and Monitoring Center'),
(132730, 105032, 'ja', 'name', 'ē¦äŗ•ēœŒåŽŸå­åŠ›ē’°å¢ƒē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(132731, 105033, 'en', 'name', 'Japan Table Tennis Association'),
(132732, 105033, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å“ēƒå”ä¼š'),
(132733, 105034, 'en', 'name', 'Gifu Seiryu Hospital'),
(132734, 105034, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗęø…å…‰ä¼šå²é˜œęø…ęµē—…é™¢'),
(132735, 105035, 'pt', 'name', 'Faculdade de Tecnologia da Zona Leste'),
(132736, 105036, 'en', 'name', 'Japanese Association of Neuro-Psychiatric Clinics'),
(132737, 105036, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē²¾ē„žē„žēµŒē§‘čØŗē™‚ę‰€å”ä¼š'),
(132738, 105037, 'en', 'name', 'United States Naval Forces Central Command'),
(132739, 105038, 'pt', 'name', 'Associação Brasileira de Estudos do Trabalho'),
(132740, 105039, 'en', 'name', 'Japan Greenery Research and Development Center'),
(132741, 105039, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē·‘åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(132742, 105040, 'en', 'name', 'Japan Groundwork Association'),
(132743, 105040, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚°ćƒ©ć‚¦ćƒ³ćƒ‰ćƒÆćƒ¼ć‚Æå”ä¼š'),
(132744, 105041, 'en', 'name', 'Fire Technology and Safety Laboratory, Tokyo Fire Department'),
(132745, 105041, 'ja', 'name', 'ę±äŗ¬ę¶ˆé˜²åŗę¶ˆé˜²ęŠ€č”“å®‰å…Øę‰€'),
(132746, 105042, 'en', 'name', 'Saito Koyu Medical Center'),
(132747, 105042, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗč„æéƒ½å…ę¹ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(132748, 105043, 'en', 'name', 'Japan Marine Oil Association'),
(132749, 105043, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę°“ē”£ę²¹č„‚å”ä¼š'),
(132750, 105044, 'en', 'name', 'Japan Karatedo Federation'),
(132751, 105044, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…Øę—„ęœ¬ē©ŗę‰‹é“é€£ē›Ÿ'),
(132752, 105045, 'en', 'name', 'Tatra National Park'),
(132753, 105045, 'pl', 'name', 'Tatrzański Park Narodowy'),
(132754, 105046, 'en', 'name', 'Foundation for Advancement of Essential Diagnostics'),
(132755, 105047, 'en', 'name', 'Ibaraki International Association'),
(132756, 105047, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗčŒØåŸŽēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(132757, 105048, 'pt', 'name', 'Centro UniversitĆ”rio Cesusc – UNICESUSC'),
(132758, 105049, 'fr', 'name', 'Institut de France'),
(132759, 105050, 'en', 'name', 'Australian College of Environmental Studies'),
(132760, 105051, 'en', 'name', 'Showa College of Music'),
(132761, 105051, 'ja', 'name', 'ę˜­å’ŒéŸ³ę„½å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(132762, 105052, 'en', 'name', 'Center for the Study of Democracy'),
(132763, 105053, 'en', 'name', 'International Information Science Foundation'),
(132764, 105053, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęƒ…å ±ē§‘å­¦å›½éš›äŗ¤ęµč²”å›£'),
(132765, 105054, 'en', 'name', 'Japan Electronics and Information Technology Industries Association'),
(132766, 105054, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»å­ęƒ…å ±ęŠ€č”“ē”£ę„­å”ä¼š'),
(132767, 105055, 'en', 'name', 'United States Fleet Cyber Command'),
(132768, 105056, 'en', 'name', 'GREEN CROSS japan'),
(132769, 105056, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚°ćƒŖćƒ¼ćƒ³ć‚Æćƒ­ć‚¹ć‚øćƒ£ćƒ‘ćƒ³'),
(132770, 105057, 'en', 'name', 'Wakayama Prefectural Livestock Experiment Station'),
(132771, 105057, 'ja', 'name', 'å’Œę­Œå±±ēœŒē•œē”£č©¦éØ“å “'),
(132772, 105058, 'en', 'name', 'Advanced Neuroscience Institute of Barcelona'),
(132773, 105058, 'ca', 'name', 'Institut de Neurociència Avançada de Barcelona'),
(132774, 105058, 'es', 'name', 'Instituto de Neurociencia Avanzada de Barcelona'),
(132775, 105059, 'en', 'name', 'Sapporo Tokusyukai Medecal Corporation'),
(132776, 105059, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šęœ­å¹Œå¾³ę“²ä¼šē—…é™¢'),
(132777, 105060, 'fr', 'name', 'GeoRessources'),
(132778, 105061, 'en', 'name', 'Joint Vietnam-Russia Tropical Science and Technology Research Center'),
(132779, 105061, 'vi', 'name', 'Trung TĆ¢m Nhiệt Đới Việt - Nga'),
(132780, 105061, 'ru', 'name', 'Российско-Š’ŃŒŠµŃ‚Š½Š°Š¼ŃŠŗŠøŠ¹ тропический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø технологический центр'),
(132781, 105062, 'en', 'name', 'Kanadevia (Japan)'),
(132782, 105062, 'ja', 'name', 'ć‚«ćƒŠćƒ‡ćƒ“ć‚¢ę Ŗå¼ä¼šē¤¾'),
(132783, 105063, 'en', 'name', 'Indian Institute of Management Mumbai'),
(132784, 105063, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą„ą¤‚ą¤¬ą¤ˆ'),
(132785, 105063, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą„ą¤Æą¤µą¤øą„ą¤„ą¤¾ą¤Ŗą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤®ą„ą¤‚ą¤¬ą¤ˆ'),
(132786, 105064, 'en', 'name', 'Japan Oil Chemists'' Society'),
(132787, 105064, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę²¹åŒ–å­¦ä¼š'),
(132788, 105065, 'en', 'name', 'Japan Fitness Association'),
(132789, 105065, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ•ć‚£ćƒƒćƒˆćƒć‚¹å”ä¼š'),
(132790, 105066, 'id', 'name', 'LP2M Institut Teknologi dan Bisnis Asia Malang'),
(132791, 105067, 'en', 'name', 'Japan Image and Information Management Association'),
(132792, 105067, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę–‡ę›øęƒ…å ±ćƒžćƒć‚øćƒ”ćƒ³ćƒˆå”ä¼š'),
(132793, 105068, 'en', 'name', 'The Japan Machinery Federation'),
(132794, 105068, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę©Ÿę¢°å·„ę„­é€£åˆä¼š'),
(132795, 105069, 'en', 'name', 'The Society for Teaching Japanese as a Foreign Language'),
(132796, 105069, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čŖžę•™č‚²å­¦ä¼š'),
(132797, 105070, 'en', 'name', 'Toyama New Industry Organization'),
(132798, 105070, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåÆŒå±±ēœŒę–°äø–ē“€ē”£ę„­ę©Ÿę§‹'),
(132799, 105071, 'en', 'name', 'Technology Institution of Industrial Safety'),
(132800, 105071, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē”£ę„­å®‰å…ØęŠ€č”“å”ä¼š'),
(132801, 105072, 'en', 'name', 'Japan Society of Corrosion Engineering'),
(132802, 105072, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗč…é£Ÿé˜²é£Ÿå­¦ä¼š'),
(132803, 105073, 'en', 'name', 'Japan Gymnastics Association'),
(132804, 105073, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä½“ę“å”ä¼š'),
(132805, 105074, 'en', 'name', 'Japanese Organization for International Cooperation in Family Planning'),
(132806, 105074, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚øćƒ§ć‚¤ć‚»ćƒ•'),
(132807, 105075, 'en', 'name', 'Amano Institute of Technology'),
(132808, 105075, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤©é‡Žå·„ę„­ęŠ€č”“ē ”ē©¶ę‰€'),
(132809, 105076, 'en', 'name', 'Westlake Robotics (China)'),
(132810, 105077, 'fr', 'name', 'Centre de Recherche en Anthropologie Sociale et Culturelle'),
(132811, 105077, 'en', 'name', 'Centre of Research in Social and Cultural Anthropology'),
(132812, 105077, 'ar', 'name', 'Ł…Ų±ŁƒŲ² البحث في Ų§Ł„Ų£Ł†Ų«Ų±ŁˆŲØŁˆŲ¬ŁŠŲ§ Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŁŠŲ©'),
(132813, 105078, 'en', 'name', 'Hatsutomi Hoken Hospital'),
(132814, 105078, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£äø€åæƒä¼šåˆåÆŒäæå„ē—…é™¢'),
(132815, 105079, 'en', 'name', 'Military Sealift Command'),
(132816, 105080, 'en', 'name', 'Kobe Parks and Greenery Association'),
(132817, 105080, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøåø‚å…¬åœ’ē·‘åŒ–å”ä¼š'),
(132818, 105081, 'cy', 'name', 'Prifysgol Efrog'),
(132819, 105081, 'en', 'name', 'University of York'),
(132820, 105082, 'en', 'name', 'Czech Academy of Sciences, Institute of Sociology'),
(132821, 105082, 'cs', 'name', 'Sociologický ústav AV ČR'),
(132822, 105083, 'de', 'name', 'Forschungsinstitut für Nachhaltigkeit am GFZ'),
(132823, 105083, 'en', 'name', 'Research Institute for Sustainability at GFZ'),
(132824, 105084, 'en', 'name', 'Praxis Business School'),
(132825, 105085, 'en', 'name', 'Celligenics Pte. Ltd. (Singapore)'),
(132826, 105086, 'en', 'name', 'Davao Oriental State University'),
(132827, 105087, 'en', 'name', 'Goethe Institut'),
(132828, 105088, 'en', 'name', 'Helmholtz Centre for Infection Research'),
(132829, 105088, 'de', 'name', 'Helmholtz-Zentrum für Infektionsforschung'),
(132830, 105089, 'en', 'name', 'Technical University of Liberec'),
(132831, 105089, 'cs', 'name', 'TechnickĆ” univerzita v Liberci'),
(132832, 105090, 'en', 'name', 'Budapest University of Economics and Business'),
(132833, 105090, 'hu', 'name', 'Budapesti GazdasƔgi Egyetem'),
(132834, 105091, 'es', 'name', 'Centro de Investigaciones en GeografĆ­a Ambiental'),
(132835, 105092, 'en', 'name', 'QIB Extra Ltd (United Kingdom)'),
(132836, 105093, 'en', 'name', 'Sempra Energy (United States)'),
(132837, 105094, 'en', 'name', 'Royal Metropolitan University'),
(132838, 105095, 'es', 'name', 'Instituto Tecnológico Superior de la Región Sierra'),
(132839, 105096, 'en', 'name', 'Center for Research in Agricultural Genomics'),
(132840, 105096, 'es', 'name', 'Centre de Recerca en Agrigenomica'),
(132841, 105096, 'ca', 'name', 'Centre de Recerca en Agrigenòmica'),
(132842, 105097, 'es', 'name', 'Instituto de Investigaciones Filosóficas'),
(132843, 105098, 'es', 'name', 'Museo de Ciencias Naturales de Barcelona'),
(132844, 105098, 'ca', 'name', 'Museu de CiĆØncies Naturals de Barcelona'),
(132845, 105099, 'es', 'name', 'Unidad de Investigación sobre Representaciones Culturales y Sociales'),
(132846, 105100, 'en', 'name', 'Yueyang Vocational Technical College'),
(132847, 105100, 'zh', 'name', 'å²³é˜³čŒäøšęŠ€ęœÆå­¦é™¢'),
(132848, 105101, 'en', 'name', 'High Pressure-High Temperature Laboratory of the Istituto Nazionale di Geofisica e Vulcanologia of Rome'),
(132849, 105101, 'it', 'name', 'Laboratorio per le Alte Pressioni e Alte Temperature di Geofisica e Vulcanologia Sperimentali'),
(132850, 105102, 'en', 'name', 'Al-Kunooze University'),
(132851, 105102, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁ†ŁˆŲ² الجامعة'),
(132852, 105103, 'en', 'name', 'Haluoleo University'),
(132853, 105103, 'id', 'name', 'Universitas Halu Oleo'),
(132854, 105104, 'en', 'name', 'Ministry of Municipal Affairs, Regions and Land Occupancy'),
(132855, 105104, 'fr', 'name', 'MinistĆØre des Affaires Municipales et de l''Occupation du Territoire'),
(132856, 105105, 'en', 'name', 'Pierre Auger Observatory'),
(132857, 105106, 'en', 'name', 'Sexuality Education Resource Centre'),
(132858, 105107, 'en', 'name', 'Union Nikola Tesla University'),
(132859, 105107, 'no_lang_code', 'name', 'Univerzitet Union Nikola Tesla'),
(132860, 105107, 'sr', 'name', 'Универзитет Унион ŠŠøŠŗŠ¾Š»Š° Тесла'),
(132861, 105108, 'en', 'name', 'University Center of Illizi'),
(132862, 105109, 'en', 'name', 'Barcelona Biomedical Research Park'),
(132863, 105109, 'es', 'name', 'Parc de Recerca BiomĆØdica de Barcelona'),
(132864, 105109, 'ca', 'name', 'Parque de Investigación Biomédica de Barcelona'),
(132865, 105110, 'en', 'name', 'Max Weber Network Eastern Europe'),
(132866, 105110, 'de', 'name', 'Max Weber Netzwerk Osteuropa'),
(132867, 105111, 'en', 'name', 'Endo-ERN'),
(132868, 105112, 'en', 'name', 'Agricultural Research Center'),
(132869, 105113, 'en', 'name', 'Wadi Alshatti University'),
(132870, 105113, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© وادي الؓاطئ'),
(132871, 105114, 'it', 'name', 'Agenzia Regionale per la Protezione dell''Ambiente Campania'),
(132872, 105115, 'en', 'name', 'Hellenic Society of Emergency Prehospital Care'),
(132873, 105115, 'el', 'name', 'Ελληνική Εταιρεία Ī•Ļ€ĪµĪÆĪ³ĪæĻ…ĻƒĪ±Ļ‚ Ī ĻĪæĪ½ĪæĻƒĪæĪŗĪæĪ¼ĪµĪ¹Ī±ĪŗĪ®Ļ‚ ΦροντίΓας'),
(132874, 105116, 'en', 'name', 'Czech Academy of Sciences, Institute of Experimental Medicine'),
(132875, 105116, 'cs', 'name', 'Ústav experimentÔlní medicíny AV ČR'),
(132876, 105117, 'en', 'name', 'Mobius Labs GmbH (Germany)'),
(132877, 105118, 'it', 'name', 'Agenzia Provinciale per l’ambiente e la tutela del clima'),
(132878, 105119, 'es', 'name', 'Universitario de Formación'),
(132879, 105120, 'fr', 'name', 'Centre Procédés, Energies Renouvelables et Systèmes Energétiques'),
(132880, 105120, 'en', 'name', 'Centre for Processes, Renewable Energies and Energy Systems'),
(132881, 105121, 'en', 'name', 'Osaka Tokiwakai Junior College'),
(132882, 105121, 'ja', 'name', '大阪常磐会大学短期大学部'),
(132883, 105122, 'en', 'name', 'St Joseph''s University, Bengaluru, India'),
(132884, 105123, 'en', 'name', 'Autodesk (Singapore)'),
(132885, 105124, 'fr', 'name', 'Centre de Recherche sur les Risques et les Crises'),
(132886, 105124, 'en', 'name', 'Centre for Research on Risks and Crises'),
(132887, 105125, 'es', 'name', 'Fundación JardĆ­n BotĆ”nico ā€œJoaquĆ­n Antonio Uribeā€ de MedellĆ­n'),
(132888, 105126, 'en', 'name', 'Civil Aviation Authority of Singapore'),
(132889, 105127, 'fr', 'name', 'ERN ITHACA'),
(132890, 105128, 'en', 'name', 'Dresden College of Music'),
(132891, 105128, 'de', 'name', 'Hochschule für Musik Dresden'),
(132892, 105129, 'fr', 'name', 'Association des Annales de l''institut Fourier'),
(132893, 105130, 'fr', 'name', 'Gouvernance et dƩveloppement insulaire'),
(132894, 105131, 'en', 'name', 'CHRIST (Deemed to be) University, Delhi NCR'),
(132895, 105132, 'en', 'name', 'Belgrade Business and Arts Academy of Applied Studies'),
(132896, 105133, 'en', 'name', 'A.E. Arbuzov Institute of Organic and Physical Chemistry'),
(132897, 105133, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органической Šø физической химии им. А. Š•. ŠŃ€Š±ŃƒŠ·Š¾Š²Š° Казанского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(132898, 105134, 'en', 'name', 'Czech Academy of Sciences, Institute of Macromolecular Chemistry'),
(132899, 105134, 'cs', 'name', 'Ústav makromolekulÔrní chemie AV ČR'),
(132900, 105135, 'en', 'name', 'Asian Office of Aerospace Research and Development'),
(132901, 105136, 'en', 'name', 'Center for International Relations and International Security'),
(132902, 105137, 'es', 'name', 'Centro Interdisciplinario de Estudios Complejos'),
(132903, 105138, 'en', 'name', 'Canadian Coast Guard'),
(132904, 105138, 'fr', 'name', 'Garde cÓtière canadienne'),
(132905, 105139, 'en', 'name', 'Minnesota Supercomputing Institute'),
(132906, 105140, 'en', 'name', 'COMPASS – Tokamak for Thermonuclear Fusion Research'),
(132907, 105140, 'cs', 'name', 'COMPASS – Tokamak pro výzkum termonukleĆ”rnĆ­ fĆŗze'),
(132908, 105141, 'en', 'name', 'Qaujigiartiit Health Research Centre'),
(132909, 105142, 'en', 'name', 'Czech Academy of Sciences, Institute of Computer Science'),
(132910, 105142, 'cs', 'name', 'Ústav informatiky AV ČR'),
(132911, 105143, 'de', 'name', 'Ministerium für Umwelt, Landwirtschaft, Natur- und Verbraucherschutz des Landes Nordrhein-Westfalen'),
(132912, 105143, 'en', 'name', 'Ministry for Environment, Agriculture, Conservation and Consumer Protection'),
(132913, 105144, 'it', 'name', 'Agenzia Regionale per la Prevenzione e Protezione Ambientale del Veneto'),
(132914, 105145, 'en', 'name', 'All India Institute of Ayurveda, New Delhi'),
(132915, 105146, 'id', 'name', 'Universitas Islam Negeri Sulthan Thaha Saifuddin Jambi'),
(132916, 105147, 'en', 'name', 'Lutheran Theological Seminary at Gettysburg'),
(132917, 105148, 'en', 'name', 'Seoul Digital University'),
(132918, 105149, 'en', 'name', 'Czech Academy of Sciences, J. Heyrovský Institute of Physical Chemistry'),
(132919, 105149, 'cs', 'name', 'Ústav fyzikÔlní chemie J. Heyrovského AV ČR'),
(132920, 105150, 'en', 'name', 'European Solar Telescope – participation of the Czech Republic'),
(132921, 105150, 'cs', 'name', 'Evropský slunečnĆ­ teleskop'),
(132922, 105151, 'fr', 'name', 'Laboratoire d''Informatique en Calcul Intensif et Image pour la Simulation'),
(132923, 105152, 'en', 'name', 'National Institute of Education, Sri Lanka'),
(132924, 105153, 'en', 'name', 'Sumathi Reddy Institute of Technology for Women'),
(132925, 105154, 'fr', 'name', 'DigiHub (Canada)'),
(132926, 105155, 'en', 'name', 'ERN BOND'),
(132927, 105156, 'en', 'name', 'Institute of Mineralogy and Crystallography "Acad. Ivan Kostov" Bulgarian Academy of Sciences'),
(132928, 105156, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ По ŠœŠøŠ½ŠµŃ€Š°Š»Š¾Š³ŠøŃ И ŠšŃ€ŠøŃŃ‚Š°Š»Š¾Š³Ń€Š°Ń„ŠøŃ ā€œŠŠŗŠ°Š“. Иван ŠšŠ¾ŃŃ‚Š¾Š²ā€ Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ° ŠŠ°ŃƒŠŗŠøŃ‚Šµ'),
(132929, 105157, 'en', 'name', 'Center for Psychobiology and Behavioral Medicine'),
(132930, 105157, 'de', 'name', 'Institut für Psychobiologie und Verhaltensmedizin'),
(132931, 105158, 'en', 'name', 'Novorossiysk Polytechnic Institute'),
(132932, 105158, 'ru', 'name', 'ŠŠ¾Š²Š¾Ń€Š¾ŃŃŠøŠ¹ŃŠŗŠøŠ¹ политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(132933, 105159, 'no_lang_code', 'name', 'RELX Group (United Kingdom)'),
(132934, 105160, 'en', 'name', 'Infrastructure for Promoting Metrology in Food and Nutrition in the Czech Republic'),
(132935, 105160, 'cs', 'name', 'Infrastruktura pro propagaci metrologie v potravinÔřstvĆ­ a výživě v ČR'),
(132936, 105161, 'en', 'name', 'Hungarian University of Sports Science'),
(132937, 105162, 'fr', 'name', 'Institut FranƧais de l''Ɖducation'),
(132938, 105163, 'en', 'name', 'Academy of Applied Studies Å abac'),
(132939, 105163, 'sr', 'name', 'Akademija strukovnih studija Å abac'),
(132940, 105164, 'en', 'name', 'American University of Kurdistan'),
(132941, 105164, 'tr', 'name', 'Kürdistan Amerikan Üniversitesi'),
(132942, 105164, 'la', 'name', 'Universitas Americana Kurdistanensis'),
(132943, 105164, 'ku', 'name', 'Zanîngeha Amerîkayî ya Kurdistanê'),
(132944, 105164, 'ar', 'name', 'الجامعة_Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ©_في_ŲÆŁ‡ŁˆŁƒ'),
(132945, 105165, 'en', 'name', 'Munger University'),
(132946, 105165, 'hi', 'name', 'ą¤®ą„ą¤‚ą¤—ą„‡ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(132947, 105166, 'en', 'name', 'The Align Foundation'),
(132948, 105167, 'en', 'name', 'Czech Academy of Sciences, Economics Institute'),
(132949, 105167, 'cs', 'name', 'Ekonomický ústav AV ČR'),
(132950, 105168, 'en', 'name', 'Turkish Association for Landscape Architecture Education and Science'),
(132951, 105169, 'en', 'name', 'Czech Academy of Sciences, Institute of Inorganic Chemistry'),
(132952, 105169, 'cs', 'name', 'Ústav anorganické chemie AV ČR'),
(132953, 105170, 'en', 'name', 'Institute of Public Health Bengaluru'),
(132954, 105171, 'en', 'name', 'Airbus Defence and Space GmbH (Germany)'),
(132955, 105172, 'es', 'name', 'Centre de Recerca en Economia Internacional'),
(132956, 105173, 'es', 'name', 'El Colegio de San Luis, A.C.'),
(132957, 105174, 'cs', 'name', 'FakultnĆ­ Nemocnice Brno'),
(132958, 105174, 'en', 'name', 'University Hospital Brno'),
(132959, 105175, 'pt', 'name', 'Faculdades Nova EsperanƧa'),
(132960, 105176, 'fr', 'name', 'Vieillissement, FragilitƩ'),
(132961, 105177, 'es', 'name', 'Instituto de Investigaciones JurĆ­dicas'),
(132962, 105178, 'en', 'name', 'Czech International Centre of Research Reactors'),
(132963, 105178, 'cs', 'name', 'České mezinÔrodní centrum výzkumných reaktorů'),
(132964, 105179, 'en', 'name', 'National Archives'),
(132965, 105179, 'cs', 'name', 'NƔrodnƭ archiv'),
(132966, 105180, 'fr', 'name', 'Recyclage et risque'),
(132967, 105180, 'en', 'name', 'Recycling and Risk'),
(132968, 105181, 'en', 'name', 'Czech National Node to the European Clinical Research Infrastructure Network'),
(132969, 105181, 'cs', 'name', 'Český nĆ”rodnĆ­ uzel EvropskĆ© sĆ­tě infrastruktur klinickĆ©ho výzkumu'),
(132970, 105182, 'en', 'name', 'Centre of Materials and Nanotechnologies'),
(132971, 105182, 'cs', 'name', 'Centrum materiÔlů a nanotechnologií'),
(132972, 105183, 'en', 'name', 'Center or Research on North America'),
(132973, 105183, 'es', 'name', 'Centro de Investigaciones sobre AmƩrica del Norte'),
(132974, 105184, 'fr', 'name', 'Institut National de l''Ɖnergie Solaire'),
(132975, 105185, 'en', 'name', 'University of Loralai'),
(132976, 105186, 'en', 'name', 'Institute of Polar Sciences'),
(132977, 105186, 'it', 'name', 'Istituto di Scienze Polari'),
(132978, 105187, 'en', 'name', 'National Football League'),
(132979, 105188, 'en', 'name', 'Bukovinian University'),
(132980, 105188, 'uk', 'name', 'ŠŸŠ’ŠŠ— "Š‘ŃƒŠŗŠ¾Š²ŠøŠ½ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚"'),
(132981, 105189, 'en', 'name', 'Leibniz Institute for High Performance Microelectronics'),
(132982, 105189, 'de', 'name', 'Leibniz-Institut für innovative Mikroelektronik'),
(132983, 105190, 'en', 'name', 'Texas Instruments (Singapore)'),
(132984, 105191, 'en', 'name', 'TerezĆ­n Memorial'),
(132985, 105192, 'en', 'name', 'Autonomous Community of the Region of Murcia'),
(132986, 105192, 'es', 'name', 'Comunidad Autónoma de la Región de Murcia'),
(132987, 105193, 'en', 'name', 'Alexandra Health Pte Ltd'),
(132988, 105194, 'en', 'name', 'Tyndale University'),
(132989, 105195, 'es', 'name', 'Hospital Universitario de Neiva'),
(132990, 105196, 'en', 'name', 'National Institute of Hydrology'),
(132991, 105197, 'id', 'name', 'Universitas Muhammadiyah Madiun'),
(132992, 105198, 'en', 'name', 'National Health Innovation Centre'),
(132993, 105199, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Lyon'),
(132994, 105200, 'en', 'name', 'Korea Radioactive Waste Agency'),
(132995, 105201, 'id', 'name', 'Universitas Saintek Muhammadiyah'),
(132996, 105202, 'en', 'name', 'Graduate School of China Academy of Engineering Physics'),
(132997, 105202, 'zh', 'name', 'äø­ē‰©é™¢ē ”ē©¶ē”Ÿé™¢'),
(132998, 105203, 'en', 'name', 'Agricultural Engineering Research Institute'),
(132999, 105203, 'ar', 'name', 'معهد بحوث الهندسة Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(133000, 105204, 'sw', 'name', 'Chuo Kikuu cha Kikatoliki cha Ruaha'),
(133001, 105204, 'en', 'name', 'Ruaha Catholic University'),
(133002, 105205, 'it', 'name', 'Istituto Nazionale di Statistica'),
(133003, 105205, 'en', 'name', 'National Institute of Statistics'),
(133004, 105206, 'fr', 'name', 'Linguistique et lexicographie latines et romanes'),
(133005, 105207, 'en', 'name', 'ERN eUROGEN'),
(133006, 105208, 'en', 'name', 'Czech Centre for Phenogenomics'),
(133007, 105208, 'cs', 'name', 'České centrum pro fenogenomiku'),
(133008, 105209, 'en', 'name', 'Occupational Safety Research Institute'),
(133009, 105210, 'pt', 'name', 'Centro Latino-Americano e do Caribe de Informação em Ciências da Saúde'),
(133010, 105210, 'es', 'name', 'Centro Latinoamericano y del Caribe de Información en Ciencias de la Salud'),
(133011, 105210, 'en', 'name', 'Latin American and Caribbean Center on Health Sciences Information'),
(133012, 105211, 'en', 'name', 'Islamia College of Science and Commerce, Srinagar'),
(133013, 105212, 'en', 'name', 'Czech Academy of Sciences, Library'),
(133014, 105212, 'cs', 'name', 'Knihovna AV ČR'),
(133015, 105213, 'en', 'name', 'READ Global'),
(133016, 105214, 'id', 'name', 'Bina Bangsa School Pantai Indah Kapuk'),
(133017, 105215, 'en', 'name', 'Euro-BioImaging ERIC'),
(133018, 105216, 'id', 'name', 'Sekolah Tinggi Filsafat Theologia Jaffray'),
(133019, 105217, 'en', 'name', 'Foundation for Information Society'),
(133020, 105218, 'en', 'name', 'Ships of Exploration and Discovery Research'),
(133021, 105219, 'fr', 'name', 'ERN EYE'),
(133022, 105220, 'no_lang_code', 'name', 'Horizon Discovery Group (United States)'),
(133023, 105221, 'en', 'name', 'BellSouth Foundation'),
(133024, 105222, 'en', 'name', 'Czech Academy of Sciences, Institute of Organic Chemistry and Biochemistry'),
(133025, 105222, 'cs', 'name', 'Ústav organické chemie a biochemie AV ČR'),
(133026, 105223, 'en', 'name', 'Czech Academy of Sciences, Institute of Experimental Botany'),
(133027, 105223, 'cs', 'name', 'Ústav experimentÔlní botaniky AV ČR'),
(133028, 105224, 'en', 'name', 'The Sharp Foundation'),
(133029, 105225, 'en', 'name', 'Kuban State Technological University'),
(133030, 105225, 'ru', 'name', 'Кубанский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(133031, 105226, 'en', 'name', 'China Science and Technology Publishing & Media'),
(133032, 105226, 'zh', 'name', 'äø­å›½ē§‘ęŠ€å‡ŗē‰ˆä¼ åŖ’č‚”ä»½ęœ‰é™å…¬åø'),
(133033, 105227, 'en', 'name', 'Brookhaven National Laboratory - Participation of the Czech Republic'),
(133034, 105227, 'cs', 'name', 'BrookhavenskĆ” nĆ”rodnĆ­ laboratoř'),
(133035, 105228, 'en', 'name', 'National Football League Players Association'),
(133036, 105229, 'en', 'name', 'Horizon Discovery (United Kingdom)'),
(133037, 105230, 'en', 'name', 'Cluster University of Jammu'),
(133038, 105231, 'es', 'name', 'TecnoCampus'),
(133039, 105232, 'en', 'name', 'Institute of International Relations Prague'),
(133040, 105232, 'cs', 'name', 'Ústav mezinÔrodních vztahů, v. v. i.'),
(133041, 105233, 'en', 'name', 'Czech Academy of Sciences, Institute of Microbiology'),
(133042, 105233, 'cs', 'name', 'Mikrobiologický ústav AV ČR'),
(133043, 105234, 'fr', 'name', 'Laboratoire Souterrain de Modane'),
(133044, 105234, 'en', 'name', 'Laboratoire Souterrain de Modane – participation of the Czech Republic'),
(133045, 105234, 'cs', 'name', 'PodzemnĆ­ laboratoř LSM'),
(133046, 105235, 'es', 'name', 'Centro de Isotopos'),
(133047, 105236, 'en', 'name', 'HJ International Graduate School for Peace and Public Leadership'),
(133048, 105236, 'ja', 'name', 'ēµ±äø€ē„žå­¦ę ”'),
(133049, 105237, 'en', 'name', 'Czech Academy of Sciences, Institute of Scientific Instruments'),
(133050, 105237, 'cs', 'name', 'Ústav přístrojovĆ© techniky AV ČR'),
(133051, 105238, 'it', 'name', 'Agenzia Regionale per la Protezione ambientale Molise'),
(133052, 105239, 'en', 'name', 'SRH Fernhochschule – The Mobile University'),
(133053, 105240, 'en', 'name', 'Danish Meteorological Institute'),
(133054, 105241, 'en', 'name', 'Armavir Institute of Economics and Finance'),
(133055, 105241, 'ru', 'name', 'Армавирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø финансов'),
(133056, 105242, 'es', 'name', 'Armada de Chile'),
(133057, 105242, 'pt', 'name', 'Armada do Chile'),
(133058, 105242, 'en', 'name', 'Chilean Navy'),
(133059, 105242, 'fr', 'name', 'Marine chilienne'),
(133060, 105243, 'en', 'name', 'Lorraine Institute for Social Sciences and Humanities'),
(133061, 105243, 'fr', 'name', 'Maison des Sciences sociales et des HumanitƩs Lorraine'),
(133062, 105244, 'en', 'name', 'Czech Academy of Sciences, Institute of Plasma Physics'),
(133063, 105244, 'cs', 'name', 'Ústav fyziky plazmatu AV ČR'),
(133064, 105245, 'en', 'name', 'ClearWay Minnesota'),
(133065, 105246, 'it', 'name', 'Agenzia Regionale Protezione Ambiente Valle d''Aosta'),
(133066, 105247, 'es', 'name', 'Instituto de Investigaciones Bibliotecológicas y de la Información'),
(133067, 105248, 'it', 'name', 'Agenzia Regionale Prevenzione e Ambiente della Regione Emilia-Romagna'),
(133068, 105248, 'en', 'name', 'Regional Agency for Environmental Protection in the Emilia-Romagna region'),
(133069, 105249, 'en', 'name', 'Karabakh University'),
(133070, 105250, 'en', 'name', 'UK Health Security Agency'),
(133071, 105251, 'en', 'name', 'OpenSky Network'),
(133072, 105252, 'de', 'name', 'SRH Fernhochschule Riedlingen'),
(133073, 105253, 'en', 'name', 'Alliance to End Plastic Waste, Inc.'),
(133074, 105254, 'nl', 'name', 'Amsterdam UMC Location Vrije Universiteit Amsterdam'),
(133075, 105255, 'en', 'name', 'BIST Dolors Aleu Graduate Centre'),
(133076, 105256, 'de', 'name', 'Deutsches Historisches Institut Moskau'),
(133077, 105256, 'en', 'name', 'German Historical Institute Moscow'),
(133078, 105256, 'ru', 'name', 'Германский исторический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ в Москве'),
(133079, 105257, 'en', 'name', 'Wildlife Research and Training Institute'),
(133080, 105258, 'en', 'name', 'Amsterdam Gastroenterology Endocrinology Metabolism'),
(133081, 105259, 'en', 'name', 'Niigata University of Pharmacy and Medical and Life Sciences'),
(133082, 105259, 'ja', 'name', 'ę–°ę½Ÿč–¬ē§‘å¤§å­¦'),
(133083, 105260, 'it', 'name', 'Agenzia Regionale per la Protezione dell''Ambiente della Basilicata'),
(133084, 105261, 'en', 'name', 'Gulf of America Coastal Ocean Observing System'),
(133085, 105262, 'en', 'name', 'Czech Literary Bibliography'),
(133086, 105262, 'cs', 'name', 'ČeskÔ literÔrní bibliografie'),
(133087, 105263, 'en', 'name', 'Bishkek Humanities University'),
(133088, 105263, 'ru', 'name', 'Š‘ŠøŃˆŠŗŠµŠŗŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(133089, 105264, 'en', 'name', 'Czech Academy of Sciences, Institute of Philosophy'),
(133090, 105264, 'cs', 'name', 'Filosofický ústav AV ČR'),
(133091, 105265, 'en', 'name', 'Justus Liebig University Giessen'),
(133092, 105265, 'de', 'name', 'Justus-Liebig-Universität Gießen'),
(133093, 105266, 'no_lang_code', 'name', 'PerkinElmer (United States)'),
(133094, 105267, 'en', 'name', 'ST Engineering (Singapore)'),
(133095, 105268, 'en', 'name', 'Srusti Academy of Management'),
(133096, 105269, 'fr', 'name', 'Groupe de Recherches en Ɖtudes Indiennes'),
(133097, 105270, 'en', 'name', 'Advanced Technology Research Centre Pte Ltd (Singapore)'),
(133098, 105271, 'no_lang_code', 'name', 'InfectControl'),
(133099, 105272, 'cs', 'name', 'Laboratoř fyziky povrchÅÆ – OptickĆ” drĆ”ha pro výzkum materiĆ”lÅÆ'),
(133100, 105272, 'en', 'name', 'Surface Physics Laboratory – Hydrogen Technology Centre'),
(133101, 105273, 'en', 'name', 'Survey of Health, Ageing and Retirement in Europe'),
(133102, 105273, 'cs', 'name', 'Survey of Health, Ageing and Retirement in Europe – ĆŗÄast ČR'),
(133103, 105274, 'en', 'name', 'Gradiant International Holdings Pte Ltd (Singapore)'),
(133104, 105275, 'en', 'name', 'VASCERN'),
(133105, 105276, 'ca', 'name', 'Escola Superior de ComerƧ Internacional'),
(133106, 105277, 'no_lang_code', 'name', 'Vallen Systeme (Germany)'),
(133107, 105277, 'de', 'name', 'Vallen Systeme GmbH'),
(133108, 105278, 'en', 'name', 'Changjiang River Scientific Research Institute'),
(133109, 105278, 'zh', 'name', 'é•æę±Ÿę°“åˆ©å§”å‘˜ä¼šé•æę±Ÿē§‘å­¦é™¢'),
(133110, 105279, 'en', 'name', 'The International Maglev Board'),
(133111, 105280, 'it', 'name', 'Agenzia Regionale per la Protezione dell''Ambiente Sicilia'),
(133112, 105281, 'no_lang_code', 'name', 'EU-OPENSCREEN'),
(133113, 105282, 'en', 'name', 'Central Research Institute of Mechanical Engineering'),
(133114, 105283, 'es', 'name', 'Instituto de Investigaciones Económicas'),
(133115, 105284, 'en', 'name', 'Sant''Anna School of Advanced Studies'),
(133116, 105284, 'it', 'name', 'Scuola Superiore Sant''Anna'),
(133117, 105284, 'fr', 'name', 'Ɖcole supĆ©rieure sainte-anne de pise'),
(133118, 105285, 'en', 'name', 'Kalivir Immunotherapeutics, Inc. (United States)'),
(133119, 105286, 'no_lang_code', 'name', 'KPMG (Netherlands)'),
(133120, 105287, 'en', 'name', 'Central European Research Infrastructure Consortium'),
(133121, 105288, 'en', 'name', 'Guilin Institute of Information Technology'),
(133122, 105288, 'zh', 'name', 'ę”‚ęž—äæ”ęÆē§‘ęŠ€å­¦é™¢'),
(133123, 105289, 'en', 'name', 'UPF Barcelona School of Management'),
(133124, 105290, 'en', 'name', 'Atacama Large Millimeter Submillimeter Array'),
(133125, 105291, 'pt', 'name', 'ICI - Instituto de CiĆŖncias Integradas (Portugal)'),
(133126, 105292, 'en', 'name', 'University of Chakwal'),
(133127, 105293, 'en', 'name', 'European Organization for Nuclear Research'),
(133128, 105293, 'de', 'name', 'Europäische Organisation für Kernforschung'),
(133129, 105293, 'fr', 'name', 'Organisation europƩenne pour la recherche nuclƩaire'),
(133130, 105294, 'en', 'name', 'Eurasian Institute of Osteopathic Medicine'),
(133131, 105295, 'en', 'name', 'Lower Shabelle University'),
(133132, 105296, 'en', 'name', 'K. N. Bhise Arts, Commerce and Vinayakrao Patil Science College'),
(133133, 105297, 'en', 'name', 'Private University College of Economic Studies'),
(133134, 105297, 'cs', 'name', 'SoukromÔ VysokÔ Skola Ekonomických Studií'),
(133135, 105298, 'en', 'name', 'Lumoscribe (Cyprus)'),
(133136, 105299, 'en', 'name', 'Centre for Genomic Regulation'),
(133137, 105300, 'en', 'name', 'European Innovation Council'),
(133138, 105301, 'en', 'name', 'Evonik (Singapore)'),
(133139, 105302, 'ca', 'name', 'Universitat de Mòdena'),
(133140, 105302, 'en', 'name', 'University of Modena and Reggio Emilia'),
(133141, 105302, 'it', 'name', 'UniversitĆ  degli Studi di Modena e Reggio Emilia'),
(133142, 105302, 'de', 'name', 'UniversitƤt Modena und Reggio Emilia'),
(133143, 105302, 'fr', 'name', 'UniversitĆ© de modĆØne et de reggio d''Ɖmilie'),
(133144, 105303, 'en', 'name', 'Cancer Research UK'),
(133145, 105304, 'en', 'name', 'Northern Iloilo State University'),
(133146, 105305, 'en', 'name', 'Chaoyang University of Technology'),
(133147, 105306, 'en', 'name', 'Research Infrastructure for Fermilab Experiments'),
(133148, 105306, 'cs', 'name', 'VýzkumnÔ infrastruktura pro experimenty ve Fermilab'),
(133149, 105307, 'fr', 'name', 'Ɖlisabeth BruyĆØre Hospital'),
(133150, 105308, 'en', 'name', 'Hamburg Port Authority'),
(133151, 105309, 'en', 'name', 'Moravian Library in Brno'),
(133152, 105309, 'cs', 'name', 'MoravskĆ” zemskĆ” knihovna v Brně'),
(133153, 105310, 'fr', 'name', 'Histoire, ArchƩologie, LittƩratures des Mondes ChrƩtiens et Musulmans MƩdiƩvaux'),
(133154, 105311, 'en', 'name', 'Gombe State College of Health Sciences and Technology Kaltungo'),
(133155, 105312, 'ca', 'name', 'Escola Superior d''Infermeria del Mar'),
(133156, 105313, 'en', 'name', 'Strategies for Open Science (Stratos)'),
(133157, 105314, 'en', 'name', 'Federal Research and Clinical Center of Physical-Chemical Medicine named after Y.M. Lopukhin'),
(133158, 105314, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-клинический центр физико-химической меГицины им. акаГемика Š®. М. Š›Š¾ŠæŃƒŃ…ŠøŠ½Š° Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(133159, 105315, 'it', 'name', 'Istituto di Scienze Marine del Consiglio Nazionale delle Ricerche'),
(133160, 105316, 'ro', 'name', 'BRGV Buzău'),
(133161, 105317, 'es', 'name', 'Pronatura Peninsula de Yucatan, A.C.'),
(133162, 105318, 'fr', 'name', 'Cegep de Sainte Foy'),
(133163, 105319, 'en', 'name', 'National High Magnetic Field Laboratory'),
(133164, 105320, 'en', 'name', 'Institute of Genetics and Cancer'),
(133165, 105321, 'en', 'name', 'Carinthia University of Applied Sciences'),
(133166, 105321, 'de', 'name', 'FH KƤrnten'),
(133167, 105322, 'en', 'name', 'Australian University, Kuwait'),
(133168, 105323, 'en', 'name', 'Ben-Gurion University of the Negev'),
(133169, 105323, 'he', 'name', '××•× ×™×‘×Ø×”×™×˜×Ŗ בן-×’×•×Ø×™×•×Ÿ בנגב');
INSERT INTO `ror_settings` VALUES
(133170, 105323, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بن ŲŗŁˆŲ±ŁŠŁˆŁ†'),
(133171, 105324, 'fr', 'name', 'Rome et ses renaissances : arts, archƩologie, littƩrature et philosophie'),
(133172, 105325, 'en', 'name', 'Shanghai Polytechnic University'),
(133173, 105325, 'zh', 'name', '上海第二巄业大学'),
(133174, 105326, 'en', 'name', 'Deep Eye Care Foundation'),
(133175, 105327, 'en', 'name', 'University of Media, Arts and Communication'),
(133176, 105328, 'en', 'name', 'Korea Racing Authority'),
(133177, 105329, 'es', 'name', 'Centro de Investigaciones y Estudios de GƩnero'),
(133178, 105330, 'en', 'name', 'Ontario HIV Treatment Network'),
(133179, 105331, 'en', 'name', 'College of Regional Development'),
(133180, 105331, 'cs', 'name', 'VysokÔ Ŕkola regionÔlního rozvoje'),
(133181, 105332, 'no_lang_code', 'name', 'Toyota Motor Corporation (Japan)'),
(133182, 105332, 'ja', 'name', 'ćƒˆćƒØć‚æč‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(133183, 105333, 'en', 'name', 'Skin Research Institute of Singapore'),
(133184, 105334, 'en', 'name', 'Nile University of Science and Technology'),
(133185, 105335, 'ca', 'name', 'Hospital Universitari Sant Joan de Reus'),
(133186, 105335, 'en', 'name', 'University Hospital Sant Joan de Reus'),
(133187, 105336, 'en', 'name', 'Ayurved Mahavidyalaya & Seth RV Ayurved Hospital'),
(133188, 105337, 'en', 'name', 'University of Chemistry and Technology, Prague'),
(133189, 105337, 'cs', 'name', 'VysokÔ Ŕkola chemicko-technologickÔ v Praze'),
(133190, 105338, 'en', 'name', 'Toyooka Junior College'),
(133191, 105338, 'ja', 'name', '豊岔短期大学'),
(133192, 105339, 'fr', 'name', 'Technologie Hoola One Inc. (Canada)'),
(133193, 105340, 'en', 'name', 'SUNY Geneseo'),
(133194, 105341, 'en', 'name', 'Monetary Authority of Singapore'),
(133195, 105342, 'en', 'name', 'TUM CREATE'),
(133196, 105343, 'en', 'name', 'National Superior School of Information Science and Libraries'),
(133197, 105343, 'fr', 'name', 'Ɖcole nationale supĆ©rieure des sciences de l''information et des bibliothĆØques'),
(133198, 105344, 'fr', 'name', 'Mission ArchƩologique FranƧaise du Bassin de l''Indus'),
(133199, 105345, 'en', 'name', 'ERN EURO-NMD'),
(133200, 105346, 'en', 'name', 'International Patient Organisation for Primary Immunodeficiencies'),
(133201, 105347, 'en', 'name', 'GlaxoSmithKline Consumer Healthcare Pte Ltd (Singapore)'),
(133202, 105348, 'es', 'name', 'Instituto de Investigaciones Antropológicas'),
(133203, 105349, 'cs', 'name', 'Biologické centrum AV ČR'),
(133204, 105349, 'en', 'name', 'Czech Academy of Sciences, Biology Centre'),
(133205, 105350, 'en', 'name', 'ERN TRANSPLANT-CHILD'),
(133206, 105351, 'en', 'name', 'Futures Forward Research Institute'),
(133207, 105352, 'en', 'name', 'Christ University'),
(133208, 105352, 'kn', 'name', 'ą²•ą³ą²°ą³ˆą²øą³ą²Ÿą³ ą²Æą³‚ą²Øą²æą²µą²°ą³ą²øą²æą²Ÿą²æ'),
(133209, 105353, 'en', 'name', 'Tanzania Institute of Education (TIE)'),
(133210, 105354, 'en', 'name', 'Ventio (France)'),
(133211, 105355, 'en', 'name', 'Sinai Health System'),
(133212, 105356, 'fr', 'name', 'Centre de Formation des journalistes'),
(133213, 105357, 'en', 'name', 'Institute for Circumpolar Health Research'),
(133214, 105358, 'es', 'name', 'Acanits'),
(133215, 105359, 'en', 'name', 'Czech National Node to the European Infrastructure for Translational Medicine'),
(133216, 105359, 'cs', 'name', 'Český nĆ”rodnĆ­ uzel EvropskĆ© infrastruktury pro translačnĆ­ medicĆ­nu'),
(133217, 105360, 'es', 'name', 'Instituto de Investigaciones Sociales'),
(133218, 105361, 'fr', 'name', 'Merinov (Canada)'),
(133219, 105362, 'en', 'name', 'Precision Health Research, Singapore'),
(133220, 105363, 'en', 'name', 'Cyber-Complex Foundation'),
(133221, 105363, 'pl', 'name', 'Fundacja Cyber-Complex'),
(133222, 105364, 'en', 'name', 'MiRXES Lab Pte. Ltd. (Singapore)'),
(133223, 105365, 'en', 'name', 'ERN PaedCan'),
(133224, 105366, 'en', 'name', 'Indigo Rock Marine Research Centre'),
(133225, 105367, 'fr', 'name', 'Centre de recherche en Agropastoralisme (CRAPast)'),
(133226, 105367, 'ar', 'name', 'Ł…Ų±ŁƒŲ² البحث في الفلاحة Ų§Ł„Ų±Ų¹ŁˆŁŠŲ©'),
(133227, 105368, 'en', 'name', 'Lubrizol (United States)'),
(133228, 105369, 'de', 'name', 'Deutschen Institute für Textil und Faserforschung'),
(133229, 105369, 'en', 'name', 'German Institutes of Textile and Fiber Research Denkendorf'),
(133230, 105370, 'en', 'name', 'Chugai Pharmaceutical Co., Ltd. (Japan)'),
(133231, 105370, 'ja', 'name', 'äø­å¤–č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(133232, 105371, 'en', 'name', 'Kingsley Ozumba Mbadiwe University'),
(133233, 105372, 'fr', 'name', 'Haute Ʃcole de travail social et de la santƩ Lausanne - HETSL, HES-SO'),
(133234, 105373, 'en', 'name', 'Gritstone Oncology, Inc (United States)'),
(133235, 105374, 'en', 'name', 'ERN CRANIO'),
(133236, 105375, 'en', 'name', 'Wellcome Trust'),
(133237, 105376, 'en', 'name', 'Amsterdam institute for Immunology and Infectious Diseases'),
(133238, 105377, 'en', 'name', 'Royal Birmingham Conservatoire'),
(133239, 105378, 'en', 'name', 'Fermi National Accelerator Laboratory'),
(133240, 105379, 'en', 'name', 'Barcelona Institute of International Studies'),
(133241, 105379, 'ca', 'name', 'Institut Barcelona d''Estudis Internacionals'),
(133242, 105380, 'en', 'name', 'Southern Illinois University School of Medicine'),
(133243, 105381, 'pl', 'name', 'Akademia Wychowania Fizycznego imienia Polskich Olimpijczyków we Wrocławiu'),
(133244, 105381, 'en', 'name', 'Wroclaw University of Health and Sport Sciences'),
(133245, 105382, 'it', 'name', 'Centro interuniversitario per la ricerca sull''influenza e le altre infezioni trasmissibili'),
(133246, 105383, 'cs', 'name', 'TerezĆ­n Initiative Institute'),
(133247, 105384, 'en', 'name', 'ATLAS SkillTech University'),
(133248, 105385, 'en', 'name', 'Shenzhen University of Advanced Technology'),
(133249, 105386, 'en', 'name', 'SIA StarBridge (Latvia)'),
(133250, 105387, 'en', 'name', 'Czech Academy of Sciences, Institute of Molecular Genetics'),
(133251, 105387, 'cs', 'name', 'Ústav molekulÔrní genetiky AV ČR'),
(133252, 105388, 'en', 'name', 'University of Jeddah'),
(133253, 105388, 'ar', 'name', 'جامعـــة Ų¬ŲÆŲ©'),
(133254, 105389, 'en', 'name', 'Gilgamesh University'),
(133255, 105390, 'mi', 'name', 'Te Wānanga o Aotearoa'),
(133256, 105391, 'no_lang_code', 'name', 'Danylo Zabolotny Institute of Microbiology and Virology'),
(133257, 105391, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мікробіології і Š²Ń–Ń€ŃƒŃŠ¾Š»Š¾Š³Ń–Ń— ім. Š”.К. Заболотного'),
(133258, 105392, 'es', 'name', 'Hospital Universitari Joan XXIII de Tarragona'),
(133259, 105393, 'en', 'name', 'Rethink Learning Inc'),
(133260, 105394, 'en', 'name', 'Sabratha University'),
(133261, 105395, 'fr', 'name', 'Centre d''enseignement et de recherche en foresterie'),
(133262, 105396, 'en', 'name', 'Raoul Wallenberg Institute of Human Rights and Humanitarian Law'),
(133263, 105397, 'en', 'name', 'Heyou Hospital'),
(133264, 105397, 'zh', 'name', 'å’Œē„åŒ»é™¢'),
(133265, 105398, 'es', 'name', 'Instituto de Investigaciones Históricas'),
(133266, 105399, 'es', 'name', 'Programa Universitario de Estudios del Desarrollo'),
(133267, 105400, 'pl', 'name', 'Akademia Podlaska w Białymstoku'),
(133268, 105400, 'en', 'name', 'The Podlasie Academy of Applied Sciences in Białystok'),
(133269, 105401, 'es', 'name', 'Instituto de GeografĆ­a'),
(133270, 105402, 'cs', 'name', 'Observatoř Pierra Augera'),
(133271, 105402, 'en', 'name', 'Research Infrastructure AUGER‑CZ'),
(133272, 105403, 'en', 'name', 'Modelica Association'),
(133273, 105404, 'es', 'name', 'Centro Peninsular en Humanidades y Ciencias Sociales'),
(133274, 105405, 'en', 'name', 'Portage College'),
(133275, 105406, 'it', 'name', 'Agenzia Regionale per la Protezione ambientale Marche'),
(133276, 105407, 'fr', 'name', 'CHU Dijon Bourgogne'),
(133277, 105408, 'en', 'name', 'Guang''anmen Hospital Jinan Hospital, China Academy of Chinese Medical Sciences'),
(133278, 105408, 'zh', 'name', 'ęµŽå—åø‚äø­åŒ»åŒ»é™¢'),
(133279, 105409, 'es', 'name', 'Oficina del Censo de los Estados Unidos'),
(133280, 105409, 'en', 'name', 'United States Census Bureau'),
(133281, 105410, 'en', 'name', 'Democracy X'),
(133282, 105411, 'hr', 'name', 'DunaújvÔrosi Egyetem'),
(133283, 105411, 'en', 'name', 'University of DunaújvÔros'),
(133284, 105412, 'en', 'name', 'Vivekanandha College of Nursing'),
(133285, 105413, 'en', 'name', 'The Palliative Care Centre for Excellence in Research and Education'),
(133286, 105414, 'en', 'name', 'Amili Pte Ltd (Singapore)'),
(133287, 105415, 'en', 'name', 'Sport Singapore'),
(133288, 105416, 'es', 'name', 'Centro de Emergencias Sanitarias 061'),
(133289, 105417, 'en', 'name', 'Rajah Serfoji Government College (Autonomous)'),
(133290, 105418, 'fr', 'name', 'Centre de Recherche en Informatique'),
(133291, 105418, 'en', 'name', 'Mines Paris, PSL University, Centre for computer science (CRI)'),
(133292, 105419, 'en', 'name', 'CzechNanoLab Research Infrastructure'),
(133293, 105419, 'cs', 'name', 'VýzkumnÔ infrastruktura CzechNanoLab'),
(133294, 105420, 'fr', 'name', 'Maison des Sciences de l''Homme du Pacifique'),
(133295, 105421, 'en', 'name', 'Oda Bultum University'),
(133296, 105422, 'no_lang_code', 'name', 'GlaxoSmithKline (United Kingdom)'),
(133297, 105423, 'es', 'name', 'Centro de EnseƱanza para Extranjeros'),
(133298, 105424, 'it', 'name', 'Ospedale Castelfranco Veneto'),
(133299, 105425, 'no_lang_code', 'name', 'Neurolixis (United States)'),
(133300, 105426, 'en', 'name', 'Federal University of Health Sciences, Ila-Orangun'),
(133301, 105427, 'en', 'name', 'Montreal Clinical Research Institute'),
(133302, 105428, 'de', 'name', 'Institut für Psychologie, Umwelt, Nachhaltigkeit und Kybernetik (Germany)'),
(133303, 105429, 'id', 'name', 'Sekolah Tinggi Ilmu Keguruan Dan Ilmu Pendidikan Yayasan Pendidikan Ujung Pandang'),
(133304, 105430, 'en', 'name', 'Polytechnic University of Tlaxcala'),
(133305, 105430, 'es', 'name', 'Universidad PolitƩcnica de Tlaxcala'),
(133306, 105431, 'cs', 'name', 'Laboratoř pro syntĆ©zu a měřenĆ­ materiĆ”lÅÆ'),
(133307, 105431, 'en', 'name', 'Materials Growth and Measurement Laboratory'),
(133308, 105432, 'en', 'name', 'Kansai Medical University'),
(133309, 105432, 'ja', 'name', 'é–¢č„æåŒ»ē§‘å¤§å­¦'),
(133310, 105433, 'en', 'name', 'Army Infantry College of PLA'),
(133311, 105433, 'zh', 'name', '中国人民解放军陆军歄兵学院'),
(133312, 105434, 'en', 'name', 'Common Language Resources and Technology Infrastructure'),
(133313, 105435, 'en', 'name', 'Northland Regional Council'),
(133314, 105435, 'mi', 'name', 'Te Kaunihera Ć  rohe o Te Taitokerau'),
(133315, 105436, 'en', 'name', 'Autonomous a2z Corporation (South Korea)'),
(133316, 105437, 'en', 'name', 'Waco Mammoth National Monument'),
(133317, 105438, 'en', 'name', 'Coiba Scientific Station (Coiba AIP)'),
(133318, 105439, 'pt', 'name', 'Universidade do Minho Centro de Engenharia Biológica'),
(133319, 105440, 'en', 'name', 'Ahmadi Hospital-Kuwait Oil Company'),
(133320, 105441, 'es', 'name', 'Universidad Tecnológica de Mineral de la Reforma'),
(133321, 105442, 'en', 'name', 'Mitsubishi Electric Research Laboratories (United States)'),
(133322, 105443, 'en', 'name', 'Southern Institute of Ecology'),
(133323, 105443, 'vi', 'name', 'Viện Sinh thĆ”i hį»c Miền Nam'),
(133324, 105444, 'en', 'name', 'SUNY Old Westbury'),
(133325, 105445, 'es', 'name', 'Corporación Universitaria de Asturias'),
(133326, 105446, 'it', 'name', 'Agenzia Regionale protezione ambientale del Lazio'),
(133327, 105447, 'es', 'name', 'Servicio Regional de Investigación y Desarrollo Agroalimentario'),
(133328, 105448, 'fr', 'name', 'Ɖtudes approfondies des sociĆ©tĆ©s traditionnelles et contemporaines en OcĆ©anie'),
(133329, 105449, 'en', 'name', 'Nalla Narasimha Reddy Education Society''s Group of Institutions'),
(133330, 105450, 'en', 'name', 'OEKOTEAM - Institute for Animal Ecology and Landscape Planning (Austria)'),
(133331, 105450, 'de', 'name', 'ƖKOTEAM - Institut für Tierƶkologie und Naturraumplanung'),
(133332, 105451, 'en', 'name', 'Peter Cohen Foundation DBA EverythingALS'),
(133333, 105452, 'en', 'name', 'U.S. Virgin Islands Division of Fish and Wildlife'),
(133334, 105453, 'en', 'name', 'Research Data Alliance'),
(133335, 105454, 'en', 'name', 'UniMAC-GIJ'),
(133336, 105455, 'es', 'name', 'Escuela Normal de San Felipe del Progreso'),
(133337, 105456, 'pt', 'name', 'Hospital Santa Luzia'),
(133338, 105457, 'en', 'name', 'Federal University of Agriculture Zuru'),
(133339, 105458, 'en', 'name', 'Barcelonaβeta Brain Research Center'),
(133340, 105459, 'fr', 'name', 'Ville de Sherbrooke'),
(133341, 105460, 'en', 'name', 'Electrical Research and Development Association'),
(133342, 105461, 'no_lang_code', 'name', 'Advanced Micro Devices (United States)'),
(133343, 105462, 'es', 'name', 'Instituto de GeologĆ­a'),
(133344, 105463, 'en', 'name', 'Clinical Practice Research Datalink'),
(133345, 105464, 'cs', 'name', 'Astronomický ústav AV ČR'),
(133346, 105464, 'en', 'name', 'Czech Academy of Sciences, Astronomical Institute'),
(133347, 105465, 'en', 'name', 'Federal University of Technology, Babura'),
(133348, 105466, 'en', 'name', 'Bamidele Olumilua University of Education, Science and Technology'),
(133349, 105467, 'en', 'name', 'Fire and Emergency New Zealand'),
(133350, 105468, 'en', 'name', 'Illumina (Singapore)'),
(133351, 105469, 'id', 'name', 'Politeknik Negeri Madiun'),
(133352, 105469, 'en', 'name', 'State Polytechnic of Madiun'),
(133353, 105470, 'en', 'name', 'International Center for Advanced Training and Research in Physics'),
(133354, 105471, 'no_lang_code', 'name', 'Airbus (Netherlands)'),
(133355, 105472, 'en', 'name', 'The Atlantis Project'),
(133356, 105473, 'en', 'name', 'Edinburgh Systems (United Kingdom)'),
(133357, 105474, 'en', 'name', 'Pompeu Fabra University'),
(133358, 105474, 'es', 'name', 'Universidad Pompeu Fabra'),
(133359, 105474, 'ca', 'name', 'Universitat Pompeu Fabra'),
(133360, 105475, 'en', 'name', 'Institute of Economics'),
(133361, 105475, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук'),
(133362, 105476, 'en', 'name', 'Adler'),
(133363, 105477, 'de', 'name', 'ERKNet'),
(133364, 105478, 'eu', 'name', 'LEA ARTIBAI Ikastetxea'),
(133365, 105479, 'en', 'name', 'National Infrastructure for Chemical Biology'),
(133366, 105479, 'cs', 'name', 'NƔrodnƭ infrastruktura chemickƩ biologie'),
(133367, 105480, 'de', 'name', 'Austrian Biolmaging - Verein zur innovativen, korrelativen, multimodalen Bildgebung in Ɩsterreich'),
(133368, 105481, 'en', 'name', 'Association of Accountants and Auditors of Republic of Srpska'),
(133369, 105482, 'en', 'name', 'KwaZulu-Natal Museum'),
(133370, 105483, 'en', 'name', 'Dr. Franjo Tudman Defense and Security University'),
(133371, 105484, 'en', 'name', 'ERN ReCONNET'),
(133372, 105485, 'en', 'name', 'SUNY Maritime College'),
(133373, 105486, 'en', 'name', 'Kannur Dental College'),
(133374, 105487, 'de', 'name', 'Universitätsklinikum Würzburg'),
(133375, 105488, 'el', 'name', 'Elliniki Archi Geologikon Kai Metalleftikon Erevnon'),
(133376, 105488, 'en', 'name', 'Hellenic Survey of Geology and Mineral Exploration'),
(133377, 105489, 'es', 'name', 'Centro Cultural Universitario Tlatelolco'),
(133378, 105490, 'es', 'name', 'Instituto de Investigaciones sobre la Universidad y la Educación'),
(133379, 105491, 'fr', 'name', 'Cégep de Rivière-du-Loup'),
(133380, 105492, 'es', 'name', 'Universidad de la Isla de la Juventud "Jesús Montané Oropesa"'),
(133381, 105493, 'cs', 'name', 'EnergetickĆ© využitĆ­ odpadÅÆ a čiÅ”těnĆ­ plynÅÆ'),
(133382, 105493, 'en', 'name', 'Energy Waste Recovery and Gas Treatment'),
(133383, 105494, 'en', 'name', 'Pacific AIDS Network'),
(133384, 105495, 'en', 'name', 'Sister Nibedita Government General Degree College for Girls'),
(133385, 105496, 'en', 'name', 'Kannur Medical College'),
(133386, 105496, 'ml', 'name', 'ą“•ą“£ąµą“£ąµ‚ąµ¼ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‡ą“¾ą“³ąµ‡ą“œąµ'),
(133387, 105497, 'en', 'name', 'Amsterdam Cardiovascular Sciences'),
(133388, 105498, 'fr', 'name', 'Institut SupƩrieur de Technologie d''Antananarivo'),
(133389, 105499, 'en', 'name', 'British Columbia Centre of Excellence for Women''s Health'),
(133390, 105500, 'en', 'name', 'Eco Research'),
(133391, 105501, 'en', 'name', 'Czech Academy of Sciences, Czech Language Institute'),
(133392, 105501, 'cs', 'name', 'Ústav pro jazyk český AV ČR'),
(133393, 105502, 'en', 'name', 'Minnesota Project'),
(133394, 105503, 'cs', 'name', 'Centrum výzkumu Řež'),
(133395, 105503, 'en', 'name', 'Research Centre Rez'),
(133396, 105504, 'en', 'name', 'Institute for European Energy and Climate Policy'),
(133397, 105505, 'en', 'name', 'Latin American Cooperative Oncology Group (LACOG)'),
(133398, 105506, 'en', 'name', 'Nanofiber Quantum Technologies, Inc. (Japan)'),
(133399, 105507, 'pt', 'name', 'Faculdade Santa Marcelina'),
(133400, 105508, 'en', 'name', 'Vienna BioCenter Core Facilities'),
(133401, 105509, 'en', 'name', 'KeAi Communications Co., Ltd. (China)'),
(133402, 105509, 'zh', 'name', 'åŒ—äŗ¬ē§‘ēˆ±ę£®č“ę–‡åŒ–ä¼ ę’­ęœ‰é™å…¬åø'),
(133403, 105510, 'es', 'name', 'Instituto de IngenierĆ­a'),
(133404, 105511, 'en', 'name', 'Blue Quills University'),
(133405, 105511, 'no_lang_code', 'name', 'University nuhelot''ine thaiyots''i nistameyimâkanak Blue Quills'),
(133406, 105512, 'en', 'name', 'European Rare Disease Research Coordination and Support Action'),
(133407, 105513, 'pt', 'name', 'Instituto de Pesquisa para Economia Digital'),
(133408, 105514, 'fr', 'name', 'Centre Hospitalier RƩgional et Universitaire de Nancy'),
(133409, 105515, 'es', 'name', 'Consejo Superior de Investigaciones CientĆ­ficas'),
(133410, 105515, 'ca', 'name', 'Consell Superior d''Investigacions CientĆ­fiques'),
(133411, 105515, 'gl', 'name', 'Consello Superior de Investigacións Científicas'),
(133412, 105515, 'en', 'name', 'Spanish National Research Council'),
(133413, 105516, 'en', 'name', 'Bharathiyar Institute of Engineering for Women'),
(133414, 105517, 'en', 'name', 'University of the City of Muntinlupa'),
(133415, 105518, 'fr', 'name', 'Institut des Sciences naturelles'),
(133416, 105518, 'de', 'name', 'Institut für Naturwissenschaften'),
(133417, 105518, 'en', 'name', 'Institute of Natural Sciences'),
(133418, 105519, 'sl', 'name', 'InŔtitut za Razvoj Družbene Odgovornosti'),
(133419, 105520, 'en', 'name', 'Atacama Large Millimeter / Submillimeter Array – participation of the Czech Republic'),
(133420, 105520, 'cs', 'name', 'Atacama Large Millimeter /submillimeter Array – ĆŗÄast ČeskĆ© republiky'),
(133421, 105521, 'fr', 'name', '2degrƩs'),
(133422, 105522, 'en', 'name', 'Inuvialuit Regional Corporation'),
(133423, 105523, 'en', 'name', 'Kalaroa Govt. College'),
(133424, 105524, 'en', 'name', 'Czech Academy of Sciences, Institute of Atmospheric Physics'),
(133425, 105524, 'cs', 'name', 'Ústav fyziky atmosféry AV ČR'),
(133426, 105525, 'no_lang_code', 'name', 'Lubrizol Life Science Health (United States)'),
(133427, 105526, 'en', 'name', 'Center for Economic Research on Governance, Inequality and Conflict'),
(133428, 105527, 'es', 'name', 'Universidad De Santander'),
(133429, 105527, 'en', 'name', 'University of Santander'),
(133430, 105528, 'en', 'name', 'Gandaki Medical College'),
(133431, 105529, 'en', 'name', 'Nature Conservation and Study Centre'),
(133432, 105530, 'en', 'name', 'The Gurdon Institute'),
(133433, 105531, 'en', 'name', 'Institute of Malariology, Parasitology, and Entomology Quy Nhon'),
(133434, 105531, 'vi', 'name', 'Viện sốt rĆ©t ký sinh trùng Quy NhĘ”n'),
(133435, 105532, 'it', 'name', 'Azienda Ospedaliero-Universitaria di Modena'),
(133436, 105533, 'en', 'name', 'Philippine Association of State Universities and Colleges'),
(133437, 105534, 'de', 'name', 'Europäische Hochschule für Innovation und Perspektive'),
(133438, 105535, 'en', 'name', 'CNRS@CREATE Ltd (Singapore)'),
(133439, 105536, 'fr', 'name', 'MusƩe national d''archƩologie, d''historie et d''art'),
(133440, 105537, 'en', 'name', 'UXtweak j.s.a. (Slovakia)'),
(133441, 105538, 'sv', 'name', 'K2'),
(133442, 105538, 'en', 'name', 'The Swedish Knowledge Centre for Public Transport'),
(133443, 105539, 'es', 'name', 'Centro de Investigación Flamenco Telethusa'),
(133444, 105540, 'it', 'name', 'Agenzia Regionale per la Prevenzione e la Protezione dell''Ambiente Puglia'),
(133445, 105541, 'en', 'name', 'Sree Abirami College of Occupational Therapy'),
(133446, 105542, 'en', 'name', 'GFZ Helmholtz Centre for Geosciences'),
(133447, 105542, 'de', 'name', 'GFZ Helmholtz-Zentrum für Geoforschung'),
(133448, 105543, 'en', 'name', 'TheCombinatorics Consortium'),
(133449, 105544, 'en', 'name', 'Black Sea Agricultural Research Institute'),
(133450, 105545, 'en', 'name', 'Punjab Tianjin University of Technology'),
(133451, 105546, 'en', 'name', 'Youthscape'),
(133452, 105547, 'eu', 'name', 'Leartiker'),
(133453, 105548, 'en', 'name', 'ERN RITA'),
(133454, 105549, 'fr', 'name', 'Centre de GƩosciences'),
(133455, 105549, 'en', 'name', 'Geosciences and Geoengineering Research Department'),
(133456, 105550, 'en', 'name', 'Kyiv Zoological Park of National Importance'),
(133457, 105551, 'en', 'name', 'Institute for Work & Health'),
(133458, 105552, 'en', 'name', 'Research Data Alliance-US'),
(133459, 105553, 'en', 'name', 'Lifecare Hospital'),
(133460, 105554, 'en', 'name', 'ERN EuroBloodNet'),
(133461, 105555, 'en', 'name', 'Khwopa College of Engineering'),
(133462, 105555, 'ne', 'name', 'ą¤–ą„ą¤µą¤Ŗ ą¤•ą¤²ą„‡ą¤œ अफ ą¤ˆą¤Øą„ą¤œą¤æą¤Øą¤æą¤Æą¤°ą¤æą¤™ą„ą¤—'),
(133463, 105556, 'en', 'name', 'Urban Redevelopment Authority'),
(133464, 105557, 'fr', 'name', 'Association Nationale des Centres d''amitiƩ'),
(133465, 105557, 'en', 'name', 'National Association of Friendship Centres'),
(133466, 105558, 'vi', 'name', 'Bệnh Viện Mỹ Đức'),
(133467, 105558, 'en', 'name', 'My Duc Hospital'),
(133468, 105559, 'cs', 'name', 'BIVÅ  VysokĆ” Å”kola v Praze a v Brně'),
(133469, 105560, 'en', 'name', 'Taiwan Banana Research Institute'),
(133470, 105560, 'zh', 'name', 'å°ē£é¦™č•‰ē ”ē©¶ę‰€'),
(133471, 105561, 'fr', 'name', 'Centre intégré de santé et de services sociaux de Chaudière-Appalaches'),
(133472, 105562, 'ne', 'name', 'Nepal Netra Jyoti Sangh (NNJS)'),
(133473, 105563, 'cs', 'name', 'JihočeskĆ” univerzita v Českých BudějovicĆ­ch'),
(133474, 105563, 'en', 'name', 'University of South Bohemia in ČeskĆ© Budějovice'),
(133475, 105564, 'en', 'name', 'Geological Survey of Bangladesh'),
(133476, 105564, 'bn', 'name', 'বাংলাদেশ ą¦­ą§‚ą¦¤ą¦¾ą¦¤ą§ą¦¤ą§ą¦¬ą¦æą¦• জরিপ ą¦…ą¦§ą¦æą¦¦ą¦Ŗą§ą¦¤ą¦°'),
(133477, 105565, 'en', 'name', 'Bangladesh Foreign Trade Institute'),
(133478, 105565, 'bn', 'name', 'বাংলাদেশ ফরেন ą¦Ÿą§ą¦°ą§‡ą¦” ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(133479, 105566, 'en', 'name', 'Anglia Ruskin University'),
(133480, 105566, 'cy', 'name', 'Prifysgol Anglia Ruskin'),
(133481, 105567, 'fr', 'name', 'Association pour la diffusion de la recherche francophone en intelligence artificielle'),
(133482, 105568, 'no_lang_code', 'name', 'Wolaita Sodo University'),
(133483, 105568, 'am', 'name', 'į‹ˆįˆ‹į‹­į‰³ įˆ¶į‹¶ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(133484, 105569, 'en', 'name', 'Articares Pte Ltd (Singapore)'),
(133485, 105570, 'en', 'name', 'University of Pardubice'),
(133486, 105571, 'en', 'name', 'Lutheran Theological Seminary at Philadelphia'),
(133487, 105572, 'it', 'name', 'Agenzia Regionale per la Protezione dell''ambiente del Friuli Venezia Giulia'),
(133488, 105573, 'de', 'name', 'Institut für donauschwäbische Geschichte und Landeskunde'),
(133489, 105574, 'cs', 'name', 'Biotechnologický ústav AV ČR'),
(133490, 105574, 'en', 'name', 'Czech Academy of Sciences, Institute of Biotechnology'),
(133491, 105575, 'en', 'name', 'International Society of Biomechanics in Sports'),
(133492, 105576, 'en', 'name', 'Association of Food Technology, Turkey'),
(133493, 105576, 'tr', 'name', 'Gıda Teknolojisi Derneği'),
(133494, 105577, 'es', 'name', 'Officina Nacional de Normalizacion'),
(133495, 105578, 'en', 'name', 'Cardio-Pulmonary Institute'),
(133496, 105579, 'de', 'name', 'St. Josef-Stift Sendenhorst'),
(133497, 105580, 'es', 'name', 'FUNDECYT PCTEX'),
(133498, 105581, 'es', 'name', 'Dirección General de Bibliotecas y Servicios Digitales de Información'),
(133499, 105582, 'es', 'name', 'Hospital General Docente HƩroes del Baire'),
(133500, 105583, 'en', 'name', 'Testament Theological Seminary'),
(133501, 105584, 'en', 'name', 'Peace Corps'),
(133502, 105585, 'en', 'name', 'Maine Mineral & Gem Museum'),
(133503, 105586, 'id', 'name', 'Sekretariat Jenderal Dewan Perwakilan Rakyat Republik Indonesia'),
(133504, 105587, 'en', 'name', 'National Library of the Czech Republic'),
(133505, 105587, 'cs', 'name', 'NÔrodní knihovna České republiky'),
(133506, 105588, 'en', 'name', 'AI Singapore'),
(133507, 105589, 'en', 'name', 'Czech National Cluster for Family Research'),
(133508, 105589, 'cs', 'name', 'Český nÔrodní uzel pro výzkum rodiny GGP-CZ'),
(133509, 105590, 'en', 'name', 'Vladivostok State University'),
(133510, 105590, 'ru', 'name', 'ВлаГивостокский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(133511, 105591, 'fr', 'name', 'GƩopƓle du Pacifique Sud'),
(133512, 105592, 'en', 'name', 'Institute of Biophysics and Cell Engineering'),
(133513, 105592, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Š±Ń–ŃŃ„Ń–Š·Ń–ŠŗŃ– і клетачнай інжынерыі'),
(133514, 105593, 'en', 'name', 'Birmingham City University'),
(133515, 105594, 'fr', 'name', 'PHEN X - Physiopathologie, Environnement et Exposome'),
(133516, 105595, 'en', 'name', 'Consortium of European Social Science Data Archives'),
(133517, 105596, 'fr', 'name', 'Laboratoire Animal et Agroécosystèmes'),
(133518, 105597, 'cs', 'name', 'Centrum výzkumu a vývoje plazmatu a nanotechnologických povrchových úprav'),
(133519, 105597, 'en', 'name', 'R&D Centre for Low-Cost Plasma and Nanotechnology Surface Modifications'),
(133520, 105598, 'no_lang_code', 'name', 'ERNICA'),
(133521, 105599, 'de', 'name', 'Julius-Maximilians-Universität Würzburg'),
(133522, 105599, 'en', 'name', 'University of Würzburg'),
(133523, 105600, 'de', 'name', 'TÜV AI.Lab (Germany)'),
(133524, 105601, 'en', 'name', 'The Aurum Project'),
(133525, 105602, 'fr', 'name', 'Groupe de Recherche sur la Socialisation'),
(133526, 105603, 'en', 'name', 'Tiangong University'),
(133527, 105603, 'zh', 'name', '天擄巄业大学'),
(133528, 105604, 'fr', 'name', 'Les Cultures de l''Europe MƩditerranƩenne Occidentale'),
(133529, 105605, 'it', 'name', 'Agenzia Regionale per la Tutela dell''Ambiente'),
(133530, 105606, 'en', 'name', 'Montserrat National Trust'),
(133531, 105607, 'en', 'name', 'ICAR - Central Institute for Research on Cotton Technology'),
(133532, 105608, 'en', 'name', 'Czech Academy of Sciences, Global Change Research Institute'),
(133533, 105608, 'cs', 'name', 'Ústav výzkumu globĆ”lnĆ­ změny AV ČR'),
(133534, 105609, 'en', 'name', 'Public Health Concern Trust, Nepal'),
(133535, 105609, 'ne', 'name', 'जन ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤øą¤°ą„‹ą¤•ą¤¾ą¤° ą¤Ÿą„ą¤°ą¤·ą„ą¤Ÿ'),
(133536, 105610, 'es', 'name', 'Centro de Proteccion e Higiene de la Radiociones'),
(133537, 105611, 'en', 'name', 'TÜV Association'),
(133538, 105611, 'de', 'name', 'TÜV-Verband'),
(133539, 105612, 'nl', 'name', 'Internationaal Instituut voor Sociale Geschiedenis'),
(133540, 105612, 'en', 'name', 'International Institute of Social History'),
(133541, 105613, 'en', 'name', 'Lesbian, Gay, Bisexual and Transgender Community Center'),
(133542, 105614, 'en', 'name', 'Mount Royal University'),
(133543, 105615, 'en', 'name', 'College of Technical Sciences Derna'),
(133544, 105615, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŁŁ†ŁŠŲ© درنة'),
(133545, 105616, 'en', 'name', 'Maharshi Dayanand Science College, Porbandar'),
(133546, 105617, 'en', 'name', 'Rahman Institute of Higher Education'),
(133547, 105617, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ رحمان Ų±Ų§Ł…Ų³Ų±'),
(133548, 105618, 'en', 'name', 'Czech Academy of Sciences, Institute of Chemical Process Fundamentals'),
(133549, 105618, 'cs', 'name', 'Ústav chemických procesů AV ČR'),
(133550, 105619, 'nl', 'name', 'Nederlands Instituut Publieke Veiligheid'),
(133551, 105619, 'en', 'name', 'Netherlands Institute for Public Safety'),
(133552, 105620, 'fr', 'name', 'ComposƩs Alimentaires : BiofonctionnalitƩs et risques Neurotoxiques'),
(133553, 105620, 'en', 'name', 'Food Compounds: Biofunctionalities and Neurotoxic Risks'),
(133554, 105621, 'en', 'name', 'Kansas Department of Wildlife and Parks'),
(133555, 105622, 'no_lang_code', 'name', 'RELX Group (Netherlands)'),
(133556, 105623, 'en', 'name', 'Sydenham College of Commerce and Economics, Mumbai'),
(133557, 105624, 'en', 'name', 'GM University Davanagere Karnataka'),
(133558, 105625, 'en', 'name', 'National Healthcare Group'),
(133559, 105626, 'en', 'name', 'Erbil Polytechnic University'),
(133560, 105626, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų£Ų±ŲØŁŠŁ„ Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(133561, 105626, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ Ł¾Ū†Ł„ŪŒŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ Ś¾Ū•ŁˆŁ„ŪŽŲ±'),
(133562, 105627, 'fr', 'name', 'Centre international de l''ISSN'),
(133563, 105627, 'en', 'name', 'ISSN International Centre'),
(133564, 105628, 'es', 'name', 'Instituto Nacional de Metrologia'),
(133565, 105629, 'et', 'name', 'Tartu Observatoorium'),
(133566, 105629, 'en', 'name', 'Tartu Observatory'),
(133567, 105630, 'en', 'name', 'Astana IT University'),
(133568, 105631, 'es', 'name', 'Institut de Biologia Evolutiva'),
(133569, 105631, 'en', 'name', 'Institute of Evolutionary Biology'),
(133570, 105632, 'en', 'name', 'Google (Singapore)'),
(133571, 105633, 'de', 'name', 'Goethe-Institut Singapore'),
(133572, 105634, 'fr', 'name', 'Centre de Recherche sur les Poétiques du XIXe siècle'),
(133573, 105635, 'fr', 'name', 'Institut de GƩnomique Fonctionnelle de Lyon'),
(133574, 105636, 'en', 'name', 'MetabERN'),
(133575, 105637, 'en', 'name', 'EyeSmart Technology Ltd. (China)'),
(133576, 105637, 'zh', 'name', 'åŒ—äŗ¬é‡Šē å¤§åŽē§‘ęŠ€ęœ‰é™å…¬åø'),
(133577, 105638, 'en', 'name', 'TU Braunschweig'),
(133578, 105638, 'de', 'name', 'Technische UniversitƤt Braunschweig'),
(133579, 105639, 'en', 'name', 'Adisseo France SAS (France)'),
(133580, 105640, 'de', 'name', 'Vorarlberger Landesbibliothek'),
(133581, 105641, 'en', 'name', 'Maharashtra Institute of Medical Science and Research'),
(133582, 105642, 'it', 'name', 'Agenzia Regionale per la Protezione dell''ambiente ligure'),
(133583, 105643, 'en', 'name', 'Bryansk State University'),
(133584, 105643, 'ru', 'name', 'Š‘Ń€ŃŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика И. Š“. ŠŸŠµŃ‚Ń€Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(133585, 105644, 'en', 'name', 'JFE Engineering Pte Ltd (Singapore)'),
(133586, 105645, 'en', 'name', 'ERN EpiCARE'),
(133587, 105646, 'de', 'name', 'CharitƩ - UniversitƤtsmedizin Berlin'),
(133588, 105647, 'en', 'name', 'American Musicological Society'),
(133589, 105648, 'en', 'name', 'Department of Health and Social Care'),
(133590, 105649, 'it', 'name', 'Agenzia Regionale per la Protezione Ambientale della Toscana'),
(133591, 105650, 'nl', 'name', 'Koninklijke Militaire School'),
(133592, 105650, 'de', 'name', 'Kƶnigliche MilitƤrakademie'),
(133593, 105650, 'en', 'name', 'Royal Military Academy'),
(133594, 105650, 'fr', 'name', 'Ɖcole Royale Militaire'),
(133595, 105651, 'fr', 'name', 'Centre de Recherche sur l''AmƩrique PrƩ-hispanique'),
(133596, 105652, 'fr', 'name', 'GƩomƩtrie algƩbrique et applications Ơ la thƩorie de l''information'),
(133597, 105653, 'en', 'name', 'Elsevier BV (Netherlands)'),
(133598, 105654, 'en', 'name', 'Novartis Institute For Tropical Diseases'),
(133599, 105655, 'en', 'name', 'Research Institute for Labour and Social Affairs'),
(133600, 105656, 'pt', 'name', 'Unidade Local de SaĆŗde do Alto Minho'),
(133601, 105657, 'en', 'name', 'Open University of Kenya'),
(133602, 105658, 'en', 'name', 'Yuriy Fedkovych Chernivtsi National University'),
(133603, 105658, 'uk', 'name', 'Š§ŠµŃ€Š½Ń–Š²ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š®Ń€Ń–Ń Š¤ŠµŠ“ŃŒŠŗŠ¾Š²ŠøŃ‡Š°'),
(133604, 105659, 'en', 'name', 'ERN GENTURIS'),
(133605, 105660, 'en', 'name', 'U.S. Virgin Islands Department of Planning and Natural Resources'),
(133606, 105661, 'en', 'name', 'JFE Engineering Corporation (Japan)'),
(133607, 105661, 'ja', 'name', 'JFEć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚° ę Ŗå¼ä¼šē¤¾'),
(133608, 105662, 'en', 'name', 'Bani-Waleed University'),
(133609, 105662, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŁŠ ŁˆŁ„ŁŠŲÆ'),
(133610, 105663, 'es', 'name', 'Centro Nacional de TecnologĆ­a QuĆ­mica'),
(133611, 105664, 'ro', 'name', 'Universitatea Adventus'),
(133612, 105665, 'en', 'name', 'SUNY Cortland'),
(133613, 105666, 'en', 'name', 'Quantum Science Center of Guangdong-Hong Kong-Macao Greater Bay Area'),
(133614, 105666, 'zh', 'name', 'ē²¤ęøÆę¾³é‡å­ē§‘å­¦äø­åæƒ'),
(133615, 105667, 'it', 'name', 'Agenzia Provinciale per la Protezione dell''ambiente'),
(133616, 105668, 'es', 'name', 'Sociedad de Doctores e Investigadores de Colombia'),
(133617, 105669, 'fr', 'name', 'Fondation Saint Helier'),
(133618, 105670, 'en', 'name', 'Seichiryo Hospital'),
(133619, 105670, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗäŗ¤ę­£ä¼šē²¾ę²»åÆ®ē—…é™¢'),
(133620, 105671, 'en', 'name', 'John Adams Institute for Accelerator Science'),
(133621, 105672, 'en', 'name', 'National Film Archive'),
(133622, 105672, 'cs', 'name', 'NÔrodní filmový archiv'),
(133623, 105673, 'en', 'name', 'National Research Infrastructure for Biological and Medical Imaging'),
(133624, 105673, 'cs', 'name', 'NƔrodnƭ infrastruktura pro biologickƩ a medicƭnskƩ zobrazovƔnƭ'),
(133625, 105674, 'en', 'name', 'Professional Compounding Centers of America (United States)'),
(133626, 105675, 'en', 'name', 'Global Green Growth Institute (South Korea)'),
(133627, 105675, 'ko', 'name', 'źø€ė”œė²Œė…¹ģƒ‰ģ„±ģž„ģ—°źµ¬ģ†Œ'),
(133628, 105676, 'en', 'name', 'EDF LAB Singapore Pte Ltd (Singapore)'),
(133629, 105677, 'es', 'name', 'Centro Especializado en Diabetes, Obesidad y Prevención de Enfermedades Cardiovasculares'),
(133630, 105678, 'en', 'name', 'SUNY Morrisville'),
(133631, 105679, 'en', 'name', 'Cherenkov Telescope Array – participation of the Czech Republic'),
(133632, 105679, 'cs', 'name', 'Cherenkov Telescope Array – ĆŗÄast ČR'),
(133633, 105680, 'en', 'name', 'Armavir Institute of Mechanics and Technology'),
(133634, 105680, 'ru', 'name', 'Армавирский механико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(133635, 105681, 'de', 'name', 'Institut für Marine Biotechnologie'),
(133636, 105681, 'en', 'name', 'Institute of Marine Biotechnology'),
(133637, 105682, 'fr', 'name', 'ZĆŗ'),
(133638, 105683, 'en', 'name', 'CTA Observatory'),
(133639, 105684, 'en', 'name', 'University of Narowal'),
(133640, 105685, 'id', 'name', 'Institut Agama Islam Negeri Ponorogo'),
(133641, 105686, 'it', 'name', 'RINA Consulting - Centro Sviluppo Materiali S.p.A. (Italy)'),
(133642, 105687, 'en', 'name', 'Gopalganj Science and Technology University'),
(133643, 105687, 'bn', 'name', 'ą¦—ą§‹ą¦Ŗą¦¾ą¦²ą¦—ą¦žą§ą¦œ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(133644, 105688, 'es', 'name', 'Centro de Investigaciones Multidisciplinarias sobre Chiapas y la Frontera Sur'),
(133645, 105689, 'en', 'name', 'Agricultural and Rural Management Training Institute'),
(133646, 105690, 'en', 'name', 'Maharashtra Institute of Dental Science and Research'),
(133647, 105691, 'pt', 'name', 'Universidade de Macau'),
(133648, 105691, 'en', 'name', 'University of Macau'),
(133649, 105692, 'en', 'name', 'Cisbio (France)'),
(133650, 105693, 'en', 'name', 'University of Sciences and Arts in Lebanon'),
(133651, 105693, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„Ų¢ŲÆŲ§ŲØ Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ©'),
(133652, 105694, 'fr', 'name', 'Centre de rƩadaptation en dƩpendance de QuƩbec'),
(133653, 105695, 'en', 'name', 'World Health Organization Regional Office for South-East Asia'),
(133654, 105696, 'en', 'name', 'European Clinical Research Infrastructure Network'),
(133655, 105697, 'en', 'name', 'Institute for Studies on the Mediterranean (CNR - ISMed)'),
(133656, 105697, 'it', 'name', 'Istituto di Studi sul Mediterraneo (CNR - ISMed)'),
(133657, 105698, 'en', 'name', 'Thunder Bay Regional Research Institute'),
(133658, 105699, 'en', 'name', 'Prague Asterix Laser System'),
(133659, 105700, 'en', 'name', 'NFL Foundation'),
(133660, 105701, 'en', 'name', 'Data Intelligence Institute of Paris'),
(133661, 105702, 'en', 'name', 'IVL Swedish Environmental Research Institute'),
(133662, 105702, 'sv', 'name', 'IVL Svenska Miljƶinstitutet'),
(133663, 105703, 'en', 'name', 'University of Belgrade – Faculty of Pharmacy'),
(133664, 105703, 'sr', 'name', 'Univerzitet u Beogradu – Farmaceutski fakultet'),
(133665, 105704, 'it', 'name', 'Agenzia Regionale per la Protezione Ambientale dell''Umbria'),
(133666, 105705, 'en', 'name', 'Max Planck Institute for Infection Biology'),
(133667, 105705, 'de', 'name', 'Max-Planck-Institut für Infektionsbiologie'),
(133668, 105706, 'en', 'name', 'Peninsula Health'),
(133669, 105707, 'en', 'name', 'Czech University of Life Sciences Prague'),
(133670, 105707, 'cs', 'name', 'ČeskĆ” zemědělskĆ” univerzita v Praze'),
(133671, 105708, 'en', 'name', 'Nootan Ayurvedic College & Research Centre'),
(133672, 105709, 'en', 'name', 'AMSolutions Inc. (Korea)'),
(133673, 105710, 'en', 'name', 'Czech Academy of Sciences, Institute of Czech Literature'),
(133674, 105710, 'cs', 'name', 'ƚstav pro českou literaturu AV ČR'),
(133675, 105711, 'en', 'name', 'Neurophet (South Korea)'),
(133676, 105711, 'ko', 'name', 'ė‰“ė”œķŽ« ģ£¼ģ‹ķšŒģ‚¬'),
(133677, 105712, 'es', 'name', 'Biblioteca del Congreso Nacional de Chile'),
(133678, 105713, 'en', 'name', 'Exactpro Systems (United Kingdom)'),
(133679, 105714, 'es', 'name', 'Comisión Nacional de Investigación y Desarrollo Aeroespacial'),
(133680, 105714, 'en', 'name', 'National Commission for Aerospace Research and Development'),
(133681, 105715, 'en', 'name', 'Acknowledge Education'),
(133682, 105716, 'en', 'name', 'ERN RARE-LIVER'),
(133683, 105717, 'en', 'name', 'World Health Organization - Bangladesh'),
(133684, 105718, 'en', 'name', 'VR-1 – Training Reactor for Research Activities'),
(133685, 105718, 'cs', 'name', 'VR-1 – Å kolnĆ­ reaktor pro výzkumnou činnost'),
(133686, 105719, 'en', 'name', 'National Institute of Biologicals'),
(133687, 105720, 'no_lang_code', 'name', 'Mitsubishi Group (Japan)'),
(133688, 105720, 'ja', 'name', 'äø‰č±ć‚°ćƒ«ćƒ¼ćƒ—'),
(133689, 105721, 'no_lang_code', 'name', 'Microsoft (United States)'),
(133690, 105722, 'fr', 'name', 'Ecole Normale SupƩrieure of Laghouat'),
(133691, 105722, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ŲØŲ§Ł„Ų£ŲŗŁˆŲ§Ų·'),
(133692, 105723, 'en', 'name', 'Czech Agrifood Research Center'),
(133693, 105723, 'cs', 'name', 'NĆ”rodnĆ­ centrum zemědělskĆ©ho a potravinÔřskĆ©ho výzkumu'),
(133694, 105724, 'fr', 'name', 'Cegep de Trois-Rivieres'),
(133695, 105724, 'en', 'name', 'College of general and vocational education Trois-Rivieres'),
(133696, 105725, 'pt', 'name', 'Secretaria de Estado de Educação de Minas Gerais'),
(133697, 105726, 'no_lang_code', 'name', 'Jamia Millia Islamia'),
(133698, 105726, 'ur', 'name', 'جامعہ Ł…Ł„ŪŒŪ Ų§Ų³Ł„Ų§Ł…ŪŒŪ'),
(133699, 105726, 'hi', 'name', 'जामिया मिलिया ą¤‡ą¤øą„ą¤²ą¤¾ą¤®ą¤æą¤Æą¤¾'),
(133700, 105726, 'bn', 'name', 'জামিয়া মিলিয়া ইসলামিয়া'),
(133701, 105726, 'pa', 'name', 'ąØœąØ¾ąØ®ą©€ąØ† ਮਿਲੀਆ ਇਸਲਾਮੀਆ'),
(133702, 105726, 'ml', 'name', 'ą“œą“¾ą“®ą“æą“Æ ą“®ą“æą“²ąµą“²ą“æą“Æ ą“‡ą“øąµą“²ą“¾ą“®ą“æą“Æ'),
(133703, 105727, 'en', 'name', 'Kwansei Gakuin Junior College'),
(133704, 105727, 'ja', 'name', 'é–¢č„æå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(133705, 105728, 'en', 'name', 'Maharana Pratap Polytechnic Gorakhpur'),
(133706, 105729, 'en', 'name', 'Quadram Institute'),
(133707, 105730, 'es', 'name', 'Instituto Tecnológico Superior de AcatlÔn de Osorio'),
(133708, 105731, 'en', 'name', 'Toyota Motor Engineering & Manufacturing North America, Inc. (United States)'),
(133709, 105731, 'ja', 'name', 'ćƒˆćƒØć‚æč‡Ŗå‹•č»ŠåŒ—ē±³'),
(133710, 105732, 'en', 'name', 'Taizhou Central Hospital'),
(133711, 105732, 'zh', 'name', 'å°å·žåø‚äø­åæƒåŒ»é™¢'),
(133712, 105733, 'en', 'name', 'Dechinta Bush University Centre for Research and Learning'),
(133713, 105734, 'en', 'name', 'Czech Carbon Observation System'),
(133714, 105734, 'cs', 'name', 'ČeskÔ infrastruktura sledovÔní uhlíku'),
(133715, 105735, 'en', 'name', 'Institute of Mathematics National Academy of Science of Tajikistan'),
(133716, 105735, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ°Ń‚ŠµŠ¼Š°Ń‚ŠøŠŗŠø ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ АкаГемии ŠŠ°ŃƒŠŗ ТаГжикистана'),
(133717, 105736, 'en', 'name', 'Biophysics Institute'),
(133718, 105736, 'eu', 'name', 'Instituto Biofisika'),
(133719, 105737, 'en', 'name', 'Navoi State University'),
(133720, 105737, 'uz', 'name', 'Navoiy davlat universiteti'),
(133721, 105738, 'es', 'name', 'Instituto de Ciencias de la Atmósfera y Cambio ClimÔtico'),
(133722, 105739, 'it', 'name', 'AULSS 2 Marca Trevigiana'),
(133723, 105740, 'fr', 'name', 'Ecole Nationale SupƩrieure des Sciences de la Mer et de l''AmƩnagement du Littoral'),
(133724, 105741, 'en', 'name', 'Czech Academy of Sciences, Masaryk Institute and Archives'),
(133725, 105741, 'cs', 'name', 'Masarykův ústav a Archiv AV ČR'),
(133726, 105742, 'en', 'name', 'National Radiation Protection Institute'),
(133727, 105743, 'en', 'name', 'ERN EURACAN'),
(133728, 105744, 'en', 'name', 'The No. 2 People''s Hospital of Lanzhou'),
(133729, 105744, 'zh', 'name', 'å…°å·žåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(133730, 105745, 'en', 'name', 'Czech Academy of Sciences, Institute of History'),
(133731, 105745, 'cs', 'name', 'Historický ústav AV ČR'),
(133732, 105746, 'en', 'name', 'Government of the United States of America'),
(133733, 105747, 'fr', 'name', 'Centre de Recherche en Environnement'),
(133734, 105747, 'en', 'name', 'Environmental Research Center'),
(133735, 105747, 'ar', 'name', 'Ł…Ų±ŁƒŲ² البحث في Ų§Ł„ŲØŁŠŲ¦Ų©'),
(133736, 105748, 'en', 'name', 'University Hospital of Giessen and Marburg'),
(133737, 105748, 'de', 'name', 'Universitätsklinikum Gießen und Marburg'),
(133738, 105749, 'en', 'name', 'Brookhaven National Laboratory'),
(133739, 105750, 'es', 'name', 'Escuela Nacional de Lenguas, Lingüística y Traducción'),
(133740, 105751, 'de', 'name', 'Hochschule Karlsruhe Technik und Wirtschaft'),
(133741, 105751, 'en', 'name', 'Karlsruhe University of Applied Sciences'),
(133742, 105752, 'da', 'name', 'LEO Fondet'),
(133743, 105752, 'en', 'name', 'LEO Foundation'),
(133744, 105753, 'en', 'name', 'Advancing Sight Network'),
(133745, 105754, 'en', 'name', 'Hospital del Mar Research Institute'),
(133746, 105755, 'en', 'name', 'Shonan Fujisawa Tokusyukai Hospital'),
(133747, 105755, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šę¹˜å—č—¤ę²¢å¾³ę“²ä¼šē—…é™¢'),
(133748, 105756, 'en', 'name', 'Shenyang Maternity and Child Health Hospital'),
(133749, 105756, 'zh', 'name', 'ę²ˆé˜³åø‚å¦‡å¹¼äæå„é™¢'),
(133750, 105757, 'en', 'name', 'Avient Colorants Singapore Pte. Ltd. (Singapore)'),
(133751, 105758, 'tr', 'name', 'Milli Savunma Üniversitesi'),
(133752, 105758, 'en', 'name', 'National Defense University'),
(133753, 105759, 'en', 'name', 'Circular Economy Foundation'),
(133754, 105760, 'en', 'name', 'Western Atlantic University School of Medicine'),
(133755, 105761, 'pt', 'name', 'Centro UniversitƔrio Ateneu'),
(133756, 105762, 'en', 'name', 'National Institute of Oceanography, Pakistan'),
(133757, 105763, 'ca', 'name', 'Institut CatalĆ  d''Arqueologia ClĆ ssica'),
(133758, 105763, 'es', 'name', 'Instituto CatalƔn de Arqueologƭa ClƔsica'),
(133759, 105764, 'en', 'name', 'MicroMir'),
(133760, 105764, 'ru', 'name', 'ŠœŠøŠŗŃ€Š¾Š¼ŠøŃ€'),
(133761, 105765, 'es', 'name', 'Centro de Estudios e Investigaciones Laborales'),
(133762, 105766, 'en', 'name', 'Advanced Micro Devices (Singapore)'),
(133763, 105767, 'it', 'name', 'INGV Sezione di Roma 1'),
(133764, 105768, 'en', 'name', 'Kharkiv National Automobile and Highway University'),
(133765, 105768, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Š°Š²Ń‚Š¾Š¼Š¾Š±Ń–Š»ŃŒŠ½Š¾-Горожній ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(133766, 105769, 'it', 'name', 'Agenzia Regionale per la Protezione dell''Ambiente della Calabria'),
(133767, 105770, 'en', 'name', 'Al-Farabi Kazakh National University'),
(133768, 105770, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени аль-Фараби'),
(133769, 105770, 'kk', 'name', 'Әл-Фараби атынГағы ŅšŠ°Š·Š°Ņ› ұлттық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(133770, 105771, 'en', 'name', 'Greifswald University Hospital'),
(133771, 105771, 'de', 'name', 'UniversitƤtsmedizin Greifswald'),
(133772, 105772, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Instytut Lotnictwa'),
(133773, 105772, 'en', 'name', 'Łukasiewicz Research Network - Institute of Aviation'),
(133774, 105773, 'en', 'name', 'Stichting Innovations in Graph Theory'),
(133775, 105774, 'de', 'name', 'Institut für Textilchemie- und Chemiefasern'),
(133776, 105774, 'en', 'name', 'Institute of Textile Chemistry and Chemical Fibers'),
(133777, 105775, 'no_lang_code', 'name', 'Novartis (Singapore)'),
(133778, 105776, 'en', 'name', 'd-Matrix Inc. (United States)'),
(133779, 105777, 'en', 'name', 'HITEC Institute of Medical Sciences'),
(133780, 105778, 'en', 'name', 'Health and Research Collaborative'),
(133781, 105779, 'it', 'name', 'Agenzia Regionale per la Protezione dell''Ambiente della Sardegna'),
(133782, 105780, 'en', 'name', 'NSF National eXtreme Ultrafast Science Facility'),
(133783, 105781, 'en', 'name', 'University of Business Engineering and Management'),
(133784, 105781, 'bs', 'name', 'Univerzitet za poslovni inženjering i menadžment Banja Luka'),
(133785, 105781, 'sr', 'name', 'Универзитет за пословни ŠøŠ½Š¶ŠµŃšŠµŃ€ŠøŠ½Š³ Šø Š¼ŠµŠ½Š°ŃŸŠ¼ŠµŠ½Ń‚'),
(133786, 105782, 'de', 'name', 'ERN LUNG'),
(133787, 105783, 'en', 'name', 'Maharshi Vashishtha Autonomous State Medical College, Basti'),
(133788, 105784, 'en', 'name', 'Dr. Dayaram Patel Pharmacy College'),
(133789, 105785, 'en', 'name', 'Hunan Credo Pump Co., Ltd (China)'),
(133790, 105785, 'zh', 'name', 'ę¹–å—å‡Æåˆ©ē‰¹ę³µäøšęœ‰é™å…¬åø'),
(133791, 105786, 'no_lang_code', 'name', 'Researcherenye Wappayalawangka - Central Australia Academic Health Science Network'),
(133792, 105787, 'en', 'name', 'Guangzhou Institute of Science and Technology'),
(133793, 105787, 'zh', 'name', 'å¹æå·žē†å·„å­¦é™¢'),
(133794, 105788, 'hu', 'name', 'Budapest Neutron Centre'),
(133795, 105789, 'es', 'name', 'Dirección General de Publicaciones y Fomento Editorial'),
(133796, 105790, 'no_lang_code', 'name', 'Texas Instruments (United States)'),
(133797, 105791, 'fr', 'name', 'Catalyseur Technologie SantƩ'),
(133798, 105792, 'en', 'name', 'Tigray Health Research Institute THRI'),
(133799, 105792, 'am', 'name', 'įŠ¢įŠ’įˆµį‰²į‰µį‹©į‰µ įˆįˆ­įˆįˆ­ įŒ„į‹•įŠ“ į‰µįŒįˆ«į‹­'),
(133800, 105793, 'en', 'name', 'ERN Skin'),
(133801, 105794, 'en', 'name', 'KPMG (Singapore)'),
(133802, 105795, 'en', 'name', 'St. Anne''s University Hospital Brno'),
(133803, 105796, 'en', 'name', 'cynkra GmbH (Switzerland)'),
(133804, 105797, 'id', 'name', 'Sekolah Tinggi Ilmu Pemerintahan Abdi Negara'),
(133805, 105798, 'en', 'name', 'Advanced Remanufacturing & Technology Centre'),
(133806, 105799, 'en', 'name', 'National Gallery in Prague'),
(133807, 105800, 'en', 'name', 'National Centre for Medical Genomics'),
(133808, 105800, 'cs', 'name', 'NĆ”rodnĆ­ centrum lĆ©kařskĆ© genomiky'),
(133809, 105801, 'en', 'name', 'Microsoft (Singapore)'),
(133810, 105802, 'en', 'name', 'China Building Materials Academy'),
(133811, 105802, 'zh', 'name', 'äø­å›½å»ŗē­‘ęę–™ē§‘å­¦ē ”ē©¶'),
(133812, 105803, 'en', 'name', 'Czech Academy of Sciences, Institute of Physiology'),
(133813, 105803, 'cs', 'name', 'Fyziologický ústav AV ČR'),
(133814, 105804, 'en', 'name', 'The University Of Agriculture Dera Ismail Khan'),
(133815, 105805, 'en', 'name', 'Arkansas Colleges of Health Education'),
(133816, 105806, 'fr', 'name', 'CollĆØge Communautaire du Nouveau-Brunswick'),
(133817, 105807, 'en', 'name', 'Czech Hydrometeorological Institute'),
(133818, 105808, 'ca', 'name', 'Universitat de GĆØnova'),
(133819, 105808, 'en', 'name', 'University of Genoa'),
(133820, 105808, 'it', 'name', 'UniversitĆ  degli Studi di Genova'),
(133821, 105808, 'de', 'name', 'UniversitƤt Genua'),
(133822, 105808, 'fr', 'name', 'Université de gênes'),
(133823, 105809, 'en', 'name', 'Nanomaterials and Nanotechnologies for Environment Protection and Sustainable Future'),
(133824, 105809, 'cs', 'name', 'NanomateriĆ”ly a nanotechnologie pro ochranu životnĆ­ho prostředĆ­ a udržitelnou budoucnost'),
(133825, 105810, 'de', 'name', 'ERN-RND'),
(133826, 105811, 'de', 'name', 'Duale Hochschule Sachsen'),
(133827, 105812, 'tr', 'name', 'Yilmaz Bilisim'),
(133828, 105812, 'en', 'name', 'Yılmaz Bilişim R&D Consulting Software Engineering and Services Trade Limited Company (Türkiye)'),
(133829, 105813, 'en', 'name', 'Airbus Group Singapore Pte Ltd (Singapore)'),
(133830, 105814, 'en', 'name', 'Konya City Hospital'),
(133831, 105814, 'tr', 'name', 'Konya Şehir Hastanesi'),
(133832, 105815, 'en', 'name', 'Dhanalakshmi Srinivasan University'),
(133833, 105816, 'en', 'name', 'National School of Electronics and Telecommunications of Sfax, Tunisia'),
(133834, 105817, 'de', 'name', 'Institut für Polymere'),
(133835, 105817, 'en', 'name', 'Institute of Polymers'),
(133836, 105818, 'en', 'name', 'Institute of Pharmaceutical Education and Research'),
(133837, 105819, 'en', 'name', 'Centre for Sustainable Development'),
(133838, 105819, 'de', 'name', 'Zentrum Nachhaltige Entwicklung'),
(133839, 105820, 'es', 'name', 'Escuela Superior de Audio y AcĆŗstica'),
(133840, 105821, 'no_lang_code', 'name', 'AmpliPhi Biosciences (United States)'),
(133841, 105822, 'en', 'name', 'European Association for Higher Education Advancement'),
(133842, 105823, 'de', 'name', 'Institut für Chemie- und Bioingenieurwissenschaften'),
(133843, 105823, 'en', 'name', 'Institute for Chemical and Bioengineering'),
(133844, 105824, 'no_lang_code', 'name', 'E4SMA (Italy)'),
(133845, 105825, 'en', 'name', 'K.M.G. College of Arts and Science (Autonomous)'),
(133846, 105826, 'en', 'name', 'SEEK Education, Inc. (United States)'),
(133847, 105827, 'en', 'name', 'The Klamath Tribes'),
(133848, 105828, 'de', 'name', 'Institut für Operations Research'),
(133849, 105828, 'en', 'name', 'Institute for Operations Research'),
(133850, 105829, 'en', 'name', 'Centre of Professional Studies'),
(133851, 105829, 'de', 'name', 'Zentrum Berufspraktische Studien');
INSERT INTO `ror_settings` VALUES
(133852, 105830, 'de', 'name', 'Institut für Integrierte Systeme'),
(133853, 105830, 'en', 'name', 'Integrated Systems Laboratory'),
(133854, 105831, 'en', 'name', 'Scientific Academy for Service Technology (ServTech)'),
(133855, 105832, 'en', 'name', 'Arctic Long Term Ecological Research'),
(133856, 105833, 'en', 'name', 'InnoTech Alberta'),
(133857, 105834, 'sq', 'name', 'Tirana Business University'),
(133858, 105835, 'en', 'name', 'Swiss SkyLab'),
(133859, 105836, 'tl', 'name', 'Unibersidad ng Pilipinas'),
(133860, 105836, 'en', 'name', 'University of the Philippines System'),
(133861, 105837, 'de', 'name', 'Institut für Informationssicherheit'),
(133862, 105837, 'en', 'name', 'Institute of Information Security'),
(133863, 105838, 'en', 'name', 'University of Home Economics'),
(133864, 105839, 'no_lang_code', 'name', 'Marzano Research (United States)'),
(133865, 105840, 'en', 'name', 'Infectious Diseases Labs'),
(133866, 105841, 'en', 'name', 'Neotropical Primates Research Group'),
(133867, 105842, 'en', 'name', 'LINQ management (Germany)'),
(133868, 105843, 'en', 'name', 'Scientific Center for Optical and Electron Microscopy'),
(133869, 105844, 'de', 'name', 'Labor für Immunologische und Molekulare Krebsforschung'),
(133870, 105845, 'en', 'name', 'Coalition for Advancing Research Assessment'),
(133871, 105846, 'de', 'name', 'Institut für Metallforschung'),
(133872, 105846, 'en', 'name', 'Institute of Metals Research'),
(133873, 105847, 'es', 'name', 'Grupo de Ecología y Conservación de Islas, A.C.'),
(133874, 105848, 'fr', 'name', 'Institut national du service public (INSP)'),
(133875, 105849, 'en', 'name', 'Singapore-ETH Centre'),
(133876, 105850, 'id', 'name', 'Poltekkes Kemenkes Gorontalo'),
(133877, 105851, 'fr', 'name', 'CEA Paris-Saclay - Etablissement de Saclay'),
(133878, 105851, 'en', 'name', 'Saclay Nuclear Research Centre'),
(133879, 105852, 'en', 'name', 'Ethiopian Roads Administration'),
(133880, 105853, 'de', 'name', 'ETH Institut für Theoretische Studien'),
(133881, 105853, 'en', 'name', 'ETH Institute for Theoretical Studies'),
(133882, 105854, 'en', 'name', 'A*STAR Research Entities'),
(133883, 105855, 'it', 'name', 'Associazione Internazionale di Archeologia Classica'),
(133884, 105856, 'tr', 'name', 'Akademik Bilişim Araştırmaları Derneği'),
(133885, 105857, 'ms', 'name', 'Universiti Tunku Abdul Rahman Sungai Long Campus'),
(133886, 105858, 'fr', 'name', 'Laboratoire de l''Ɖducation'),
(133887, 105859, 'en', 'name', 'Geological Institute'),
(133888, 105859, 'de', 'name', 'Geologisches Institut'),
(133889, 105860, 'en', 'name', 'Eduvos'),
(133890, 105861, 'de', 'name', 'Institut für Geschichte und Theorie der Architektur GTA'),
(133891, 105861, 'en', 'name', 'Institute for the History and Theory of Architecture'),
(133892, 105862, 'de', 'name', 'Institut für Fluiddynamik'),
(133893, 105862, 'en', 'name', 'Institute of Fluid Dynamics'),
(133894, 105863, 'fr', 'name', 'Couplage Multi-physiques et Multi-Ʃchelles en mƩcanique gƩo-environnemental'),
(133895, 105863, 'en', 'name', 'Multi-Physics and Multi-scale Couplings in Geo-environmental Mechanics'),
(133896, 105864, 'en', 'name', 'Al Zaytona University of Science and Technology'),
(133897, 105864, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†Ł„ŁˆŲ¬ŁŠŲ§'),
(133898, 105865, 'en', 'name', 'American Society for Inclusion, Diversity, and Equity in Healthcare (ASIDE)'),
(133899, 105866, 'es', 'name', 'Red Gobernanza Metropolitana'),
(133900, 105867, 'de', 'name', 'Gesellschaft für Biologische Daten e.V.'),
(133901, 105868, 'en', 'name', 'JAM MUSIC LAB Private University for Jazz and Popular Music Vienna'),
(133902, 105869, 'en', 'name', 'Computer Engineering and Networks Laboratory'),
(133903, 105869, 'de', 'name', 'Institut für Technische Informatik und Kommunikationsnetze'),
(133904, 105870, 'de', 'name', 'Institut für Theoretische Informatik'),
(133905, 105870, 'en', 'name', 'Institute of Theoretical Computer Science'),
(133906, 105871, 'de', 'name', 'Laboratorium für Festkörperphysik'),
(133907, 105871, 'en', 'name', 'Laboratory for Solid State Physics'),
(133908, 105872, 'en', 'name', 'Centre of Internationalisation, Mobility and External Relations'),
(133909, 105872, 'de', 'name', 'Zentrum Internationalisierung, MobilitƤt und Aussenbeziehungen'),
(133910, 105873, 'en', 'name', 'The Reward Foundation'),
(133911, 105874, 'de', 'name', 'Institut für Quantenelektronik'),
(133912, 105874, 'en', 'name', 'Institute for Quantum Electronics'),
(133913, 105875, 'en', 'name', 'Ecosmic (Italy)'),
(133914, 105876, 'de', 'name', 'Institut Bewegung, Sport und Gesundheit'),
(133915, 105876, 'en', 'name', 'Institute of Physical Education, Sports, and Health'),
(133916, 105877, 'es', 'name', 'Sinergias Alianzas EstratƩgicas para la Salud y el Desarrollo Social'),
(133917, 105878, 'en', 'name', 'University of the Philippines Tacloban College'),
(133918, 105879, 'en', 'name', 'PT Indonesia Comnets Plus (Indonesia)'),
(133919, 105880, 'de', 'name', 'Anstalt für Verbrennungskraftmaschinen List (Germany)'),
(133920, 105881, 'es', 'name', 'Grupo Docente 2.0 C.A.'),
(133921, 105882, 'pt', 'name', 'Centro de ReferĆŖncia da SaĆŗde da Mulher - Hospital da Mulher SĆ£o Paulo'),
(133922, 105883, 'en', 'name', 'University of Telafer'),
(133923, 105883, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© تلعفر'),
(133924, 105884, 'de', 'name', 'Institut für Verhaltenswissenschaften'),
(133925, 105884, 'en', 'name', 'Institute of Behavioral Sciences'),
(133926, 105885, 'en', 'name', 'University of Mosul'),
(133927, 105885, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŁˆŲµŁ„'),
(133928, 105886, 'de', 'name', 'Wiener Psychoanalytische Vereinigung'),
(133929, 105887, 'de', 'name', 'Institut für Umweltingenieurwissenschaften'),
(133930, 105887, 'en', 'name', 'Institute of Environmental Engineering'),
(133931, 105888, 'en', 'name', 'Manitoba Geological Survey'),
(133932, 105889, 'en', 'name', 'AITHYRA GmbH- Research Institute for Biomedical Artificial Intelligence (Austria)'),
(133933, 105890, 'de', 'name', 'Institut für Agrarwissenschaften'),
(133934, 105890, 'en', 'name', 'Institute of Agricultural Sciences'),
(133935, 105891, 'id', 'name', 'Universitas Islam Negeri Sultan Maulana Hasanuddin Banten'),
(133936, 105892, 'es', 'name', 'Hospital AlcĆ­var'),
(133937, 105893, 'en', 'name', 'College of Engineering and Management, Kolaghat'),
(133938, 105894, 'en', 'name', 'Punjab Institute of Neurosciences'),
(133939, 105895, 'de', 'name', 'Salzburg Research Forschungsgesellschaft mbH (Austria)'),
(133940, 105896, 'de', 'name', 'Anstalt für Verbrennungskraftmaschinen List (Austria)'),
(133941, 105897, 'en', 'name', 'Nigerian Army College of Education'),
(133942, 105898, 'de', 'name', 'Schƶnbrunner Tiergarten-GmbH'),
(133943, 105899, 'es', 'name', 'Servicios Especiales de Salud Hospital Universitario de Caldas'),
(133944, 105900, 'en', 'name', 'Tigray Agricultural Research Institute (TARI)'),
(133945, 105900, 'ti', 'name', 'įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ įˆįˆ­įˆįˆ­ įˆ•įˆ­įˆ» į‰µįŒįˆ«'),
(133946, 105901, 'de', 'name', 'Institut Sprachliche und Literarische Bildung'),
(133947, 105901, 'en', 'name', 'Institute for Language and Literary Education'),
(133948, 105902, 'en', 'name', 'Sylhet MAG Osmani Medical College Hospital'),
(133949, 105903, 'en', 'name', 'CHASE center'),
(133950, 105903, 'de', 'name', 'Competence Center CHASE GmbH (Austria)'),
(133951, 105904, 'en', 'name', 'Kaminari Medical (Netherlands)'),
(133952, 105905, 'en', 'name', 'Bayelsa Medical University'),
(133953, 105906, 'en', 'name', 'AgroVet-Strickhof'),
(133954, 105907, 'vi', 'name', 'Bệnh Viện Ung Bướu HĆ  Nį»™i'),
(133955, 105907, 'en', 'name', 'Hanoi Oncology Hospital'),
(133956, 105908, 'en', 'name', 'Medical Center of the Americas Foundation'),
(133957, 105909, 'de', 'name', 'Institut für Intelligente interaktive Systeme'),
(133958, 105909, 'en', 'name', 'Institute for Intelligent Interactive Systems'),
(133959, 105910, 'de', 'name', 'Gustav Mahler PrivatuniversitƤt'),
(133960, 105911, 'de', 'name', 'Institut für Baustatik und Konstruktion'),
(133961, 105911, 'en', 'name', 'Institute of Structural Engineering'),
(133962, 105912, 'de', 'name', 'Institut Gesellschaftswissenschaftliche Bildung'),
(133963, 105912, 'en', 'name', 'Institute of Social Studies Education'),
(133964, 105913, 'en', 'name', 'International Glaciological Society'),
(133965, 105914, 'en', 'name', 'Edna Adan University'),
(133966, 105915, 'en', 'name', 'Nano Center Indonesia'),
(133967, 105916, 'en', 'name', 'Regional Didactic Centres'),
(133968, 105916, 'de', 'name', 'Regionale Didaktische Zentren PHSG'),
(133969, 105917, 'en', 'name', 'Ministry of Municipality'),
(133970, 105917, 'ar', 'name', 'وزارة Ų§Ł„ŲØŁ„ŲÆŁŠŲ©'),
(133971, 105918, 'en', 'name', 'Emmanuel Alayande University of Education, Oyo'),
(133972, 105919, 'en', 'name', 'American Shark Conservancy'),
(133973, 105920, 'fr', 'name', 'Laboratoire de sociologie et d''anthropologie'),
(133974, 105921, 'en', 'name', 'Michigan Medicine'),
(133975, 105921, 'fr', 'name', 'Système de santé de l''université du michigan'),
(133976, 105922, 'en', 'name', 'Swedish College of Engineering & Technology Rahim Yar Khan'),
(133977, 105923, 'en', 'name', 'Leifur EirĆ­ksson Foundation'),
(133978, 105924, 'de', 'name', 'Institut für Bewegungswissenschaften und Sport'),
(133979, 105924, 'en', 'name', 'Institute of Human Movement Sciences and Sport'),
(133980, 105925, 'en', 'name', 'Sanaka Educational Trust’s Group of Institutions'),
(133981, 105926, 'en', 'name', 'University of Michigan–Flint'),
(133982, 105927, 'en', 'name', 'Statistics Poland'),
(133983, 105928, 'sv', 'name', 'Finlands LƤkarfƶrbund'),
(133984, 105928, 'en', 'name', 'Finnish Medical Association'),
(133985, 105928, 'fi', 'name', 'Suomen LƤƤkƤriliitto'),
(133986, 105929, 'ca', 'name', 'Institut de Recerca i Innovació Educativa'),
(133987, 105930, 'de', 'name', 'Institut für Computing Platforms'),
(133988, 105930, 'en', 'name', 'Institute for Computing Platforms'),
(133989, 105931, 'de', 'name', 'Institut für Robotik und Intelligente Systeme'),
(133990, 105931, 'en', 'name', 'Institute of Robotics and Intelligent Systems'),
(133991, 105932, 'de', 'name', 'Institut für Dynamische Systeme und Regelungstechnik'),
(133992, 105932, 'en', 'name', 'Institute for Dynamic Systems and Control'),
(133993, 105933, 'de', 'name', 'Institut für Umweltentscheidungen'),
(133994, 105933, 'en', 'name', 'Institute for Environmental Decisions'),
(133995, 105934, 'es', 'name', 'Universidad de Magallanes'),
(133996, 105934, 'en', 'name', 'University of Magallanes'),
(133997, 105935, 'en', 'name', 'Azenta (United States)'),
(133998, 105936, 'de', 'name', 'Institut für Geochemie und Petrologie'),
(133999, 105936, 'en', 'name', 'Institute of Geochemistry and Petrology'),
(134000, 105937, 'en', 'name', 'Centre for Academic Consulting'),
(134001, 105937, 'de', 'name', 'Zentrum Wissenschaftsberatung'),
(134002, 105938, 'en', 'name', 'Seminar for Statistics'),
(134003, 105938, 'de', 'name', 'Seminar für Statistik'),
(134004, 105939, 'de', 'name', 'Institut für Programmiersprachen und -systeme'),
(134005, 105939, 'en', 'name', 'Institute for Programming Languages and Systems'),
(134006, 105940, 'en', 'name', 'Michigan Space Grant Consortium'),
(134007, 105941, 'fr', 'name', 'HEC Paris'),
(134008, 105942, 'en', 'name', 'Language Center of UZH and ETH Zürich'),
(134009, 105942, 'de', 'name', 'Sprachenzentrum der Universität und der ETH Zürich'),
(134010, 105943, 'de', 'name', 'Institut für Signal- und Informationsverarbeitung'),
(134011, 105943, 'en', 'name', 'Signal and Information Processing Laboratory'),
(134012, 105944, 'no_lang_code', 'name', 'Schlumberger (United States)'),
(134013, 105945, 'en', 'name', 'Good Manufacturing Practice Facility'),
(134014, 105946, 'en', 'name', 'ETH Phenomics Center'),
(134015, 105947, 'pt', 'name', 'Faculdade de MĆŗsica do EspĆ­rito Santo "MaurĆ­cio de Oliveira" - FAMES'),
(134016, 105948, 'de', 'name', 'Institut für Geophysik'),
(134017, 105948, 'en', 'name', 'Institute of Geophysics'),
(134018, 105949, 'de', 'name', 'Institut Berufsbildung'),
(134019, 105949, 'en', 'name', 'Institut of Vocational Education and Training'),
(134020, 105950, 'en', 'name', 'Institute of Health Management Research Bangalore'),
(134021, 105951, 'pl', 'name', 'Akademia Nauk Stosowanych w Wałcz'),
(134022, 105951, 'en', 'name', 'University of Applied Sciences in Wałcz'),
(134023, 105952, 'de', 'name', 'Institut für Geotechnik'),
(134024, 105952, 'en', 'name', 'Institute for Geotechnical Engineering'),
(134025, 105953, 'de', 'name', 'Institut für Molekulare Pflanzenbiologie'),
(134026, 105953, 'en', 'name', 'Institute of Molecular Plant Biology'),
(134027, 105954, 'en', 'name', 'Cooperative Institute for Great Lakes Research'),
(134028, 105955, 'en', 'name', 'University of Michigan–Dearborn'),
(134029, 105956, 'de', 'name', 'Institut Mathematische, Naturwissenschaftliche und Technische Bildung'),
(134030, 105956, 'en', 'name', 'Institute of Mathematical, Scientific and Technological Education'),
(134031, 105957, 'de', 'name', 'alchemia-nova research and innovation gemeinnützige GmbH'),
(134032, 105958, 'de', 'name', 'Institut für Baustoffe'),
(134033, 105958, 'en', 'name', 'Institute for Building Materials'),
(134034, 105959, 'de', 'name', 'Collegium Helveticum'),
(134035, 105960, 'de', 'name', 'Kompetenznetzwerk Informationstechnologie zur Fƶrderung der Integration von Menschen mit Behinderungen (KI-I)'),
(134036, 105961, 'en', 'name', 'MMGH Consulting (Switzerland)'),
(134037, 105962, 'en', 'name', 'Center for Climate Systems Modeling'),
(134038, 105963, 'tr', 'name', 'Maliye ve Finans Yazıları Yayıncılık Ltd. Şti. (Türkiye)'),
(134039, 105964, 'en', 'name', 'The Fluoromatics Lab'),
(134040, 105965, 'en', 'name', 'Sultan Qaboos Comprehensive Cancer Care & Research Center'),
(134041, 105966, 'en', 'name', 'Lawson Research Institute'),
(134042, 105967, 'en', 'name', 'Lakes Country Service Cooperative'),
(134043, 105968, 'es', 'name', 'Universidad de Guadalajara'),
(134044, 105968, 'en', 'name', 'University of Guadalajara'),
(134045, 105969, 'de', 'name', 'Institut PƤdagogische Psychologie'),
(134046, 105969, 'en', 'name', 'Institute of Educational Psychology'),
(134047, 105970, 'fr', 'name', 'mƩdialab Sciences Po'),
(134048, 105971, 'en', 'name', 'Binnig and Rohrer Nanotechnology Center'),
(134049, 105972, 'fr', 'name', 'Le Centre International de Recherches et Ɖtudes Transdisciplinaires'),
(134050, 105973, 'de', 'name', 'Forschungsinstitut für Mathematik'),
(134051, 105973, 'en', 'name', 'Institute for Mathematical Research'),
(134052, 105974, 'de', 'name', 'Institut für Terrestrische Oekosysteme'),
(134053, 105974, 'en', 'name', 'Institute of Terrestrial Ecosystems'),
(134054, 105975, 'de', 'name', 'Institut Kulturelle und Ƅsthetische Bildung'),
(134055, 105975, 'en', 'name', 'Institute of Cultural and Aesthetic Education'),
(134056, 105976, 'en', 'name', 'General Hospital of Larisa, Greece'),
(134057, 105977, 'de', 'name', 'Institut für Maschinelles Lernen'),
(134058, 105977, 'en', 'name', 'Institute for Machine Learning'),
(134059, 105978, 'de', 'name', 'Institut für Design, Materialien und Fabrikation'),
(134060, 105978, 'en', 'name', 'Institute of Design, Materials and Fabrication'),
(134061, 105979, 'de', 'name', 'Institut für Teilchen- und Astrophysik'),
(134062, 105979, 'en', 'name', 'Institute for Particle Physics and Astrophysics'),
(134063, 105980, 'es', 'name', 'Universidad Naval'),
(134064, 105981, 'de', 'name', 'Institut für Kartografie und Geoinformation'),
(134065, 105981, 'en', 'name', 'Institute of Cartography and Geoinformation'),
(134066, 105982, 'en', 'name', 'BillionToOne (United States)'),
(134067, 105983, 'en', 'name', 'Gout Support Group of America'),
(134068, 105984, 'id', 'name', 'Universitas Islam Negeri Fatmawati Sukarno Bengkulu'),
(134069, 105985, 'de', 'name', 'Institut für Geodäsie und Photogrammetrie'),
(134070, 105985, 'en', 'name', 'Institute of Geodesy and Photogrammetry'),
(134071, 105986, 'en', 'name', 'Federal College of Education (Technical) Asaba'),
(134072, 105987, 'it', 'name', 'Congressi Stefano Franscini'),
(134073, 105988, 'en', 'name', 'University of Al Maarif'),
(134074, 105988, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© المعارف الجامعة'),
(134075, 105989, 'en', 'name', 'Atiba University'),
(134076, 105990, 'de', 'name', 'Institut für Denkmalpflege und historische Bauforschung IDB'),
(134077, 105990, 'en', 'name', 'Institute for Preservation and Construction History'),
(134078, 105991, 'en', 'name', 'ETH Zürich Campus Heilbronn gGmbH'),
(134079, 105992, 'de', 'name', 'Institut für Technologie in der Architektur ITA'),
(134080, 105992, 'en', 'name', 'Institute for Technology in Architecture'),
(134081, 105993, 'no_lang_code', 'name', 'C3J Therapeutics (United States)'),
(134082, 105994, 'en', 'name', 'Wigwe University'),
(134083, 105995, 'en', 'name', 'Shivharsh Kisan Post Graduate College, Basti'),
(134084, 105996, 'en', 'name', 'NEXUS Personalized Health Technologies'),
(134085, 105997, 'tr', 'name', 'Dr. Yaşar Eryilmaz Doğubeyazit Devlet Hastanesi̇'),
(134086, 105998, 'en', 'name', 'Communication Technology Laboratory'),
(134087, 105998, 'de', 'name', 'Institut für Kommunikationstechnik'),
(134088, 105999, 'de', 'name', 'SWISDATA gGmbH'),
(134089, 106000, 'de', 'name', 'Institut für Neurowissenschaften'),
(134090, 106000, 'en', 'name', 'Institute for Neuroscience'),
(134091, 106001, 'de', 'name', 'Institut für Molekularbiologie und Biophysik'),
(134092, 106001, 'en', 'name', 'Institute of Molecular Biology and Biophysics'),
(134093, 106002, 'de', 'name', 'Topas GmbH (Germany)'),
(134094, 106003, 'en', 'name', 'Center for Complex Particle Systems'),
(134095, 106004, 'de', 'name', 'Institut für Raum- und Landschaftsentwicklung'),
(134096, 106004, 'en', 'name', 'Institute for Spatial and Landscape Development'),
(134097, 106005, 'de', 'name', 'Institut für Bau- und Infrastrukturmanagement'),
(134098, 106005, 'en', 'name', 'Institute of Construction and Infrastructure Management'),
(134099, 106006, 'de', 'name', 'Institut für Entwurf und Architektur IEA'),
(134100, 106006, 'en', 'name', 'Institute of Design and Architecture'),
(134101, 106007, 'en', 'name', 'Millennium Institute for Care Research'),
(134102, 106008, 'es', 'name', 'Instituto Superior Universitario RumiƱahui'),
(134103, 106009, 'es', 'name', 'Universidad Laica Eloy Alfaro de ManabĆ­'),
(134104, 106010, 'de', 'name', 'Institut für Hochleistungsrechnersysteme'),
(134105, 106010, 'en', 'name', 'Institute for High Performance Computing Systems'),
(134106, 106011, 'en', 'name', 'Turkish Chemical Society'),
(134107, 106012, 'pt', 'name', 'Escola Superior Pedagógica do Cuanza Norte'),
(134108, 106013, 'en', 'name', 'Ethiopian Policy Studies Institute'),
(134109, 106014, 'de', 'name', 'Institut für Integrative Biologie'),
(134110, 106014, 'en', 'name', 'Institute of Integrative Biology'),
(134111, 106015, 'en', 'name', 'Institute of Science, Technology and Policy'),
(134112, 106016, 'en', 'name', 'Centre for Digitalisation and Education'),
(134113, 106016, 'de', 'name', 'Zentrum Digitalisierung und Bildung'),
(134114, 106017, 'de', 'name', 'Institut für Pharmazeutische Wissenschaften'),
(134115, 106017, 'en', 'name', 'Institute of Pharmaceutical Sciences'),
(134116, 106018, 'en', 'name', 'Eco Astronomy Inc'),
(134117, 106019, 'en', 'name', 'Oxford BioDynamics (United Kingdom)'),
(134118, 106020, 'en', 'name', 'Centre for Origin and Prevalence of Life'),
(134119, 106021, 'de', 'name', 'Institut für Theoretische Physik'),
(134120, 106021, 'en', 'name', 'Institute for Theoretical Physics'),
(134121, 106022, 'de', 'name', 'Institut Frühe Bildung 0 bis 8'),
(134122, 106022, 'en', 'name', 'Institute of Early Childhood Education 0 to 8 years'),
(134123, 106023, 'en', 'name', 'Institute for Protein Physics'),
(134124, 106024, 'de', 'name', 'OƖ Landes-Kultur GmbH (Austria)'),
(134125, 106025, 'en', 'name', 'Xinghua People''s Hospital Affiliated to Yangzhou University'),
(134126, 106025, 'zh', 'name', 'å…“åŒ–åø‚äŗŗę°‘åŒ»é™¢'),
(134127, 106026, 'en', 'name', 'Hurley Medical Center'),
(134128, 106027, 'en', 'name', 'Functional Genomics Center Zurich'),
(134129, 106028, 'de', 'name', 'Institut für Lebensmittelwissenschaften, Ernährung und Gesundheit'),
(134130, 106028, 'en', 'name', 'Institute of Food, Nutrition, and Health'),
(134131, 106029, 'de', 'name', 'Institut für Translationale Medizin'),
(134132, 106029, 'en', 'name', 'Institute of Translational Medicine'),
(134133, 106030, 'es', 'name', 'Instituto del Patrimonio Cultural de EspaƱa'),
(134134, 106031, 'de', 'name', 'Institut für Biochemie'),
(134135, 106031, 'en', 'name', 'Institute of Biochemistry'),
(134136, 106032, 'en', 'name', 'Afro-American University of Central Africa'),
(134137, 106033, 'en', 'name', 'Armata Pharmaceuticals (United States)'),
(134138, 106034, 'en', 'name', 'Government College of Engineering, Nagpur'),
(134139, 106035, 'en', 'name', 'Centre of Further Education'),
(134140, 106035, 'de', 'name', 'Zentrum Weiterbildung'),
(134141, 106036, 'en', 'name', 'Anderson Orthopaedic Clinic'),
(134142, 106037, 'de', 'name', 'Institut für Biogeochemie und Schadstoffdynamik'),
(134143, 106037, 'en', 'name', 'Institute of Biogeochemistry and Pollutant Dynamics'),
(134144, 106038, 'en', 'name', 'EnGreen (Italy)'),
(134145, 106039, 'en', 'name', 'Alliance to Feed the Earth in Disasters'),
(134146, 106040, 'en', 'name', 'International Business University'),
(134147, 106041, 'de', 'name', 'Institut für Energie- und Verfahrenstechnik'),
(134148, 106041, 'en', 'name', 'Institute of Energy and Process Engineering'),
(134149, 106042, 'de', 'name', 'Institut Schule und Profession'),
(134150, 106042, 'en', 'name', 'Institute of Education and Professional Studies'),
(134151, 106043, 'en', 'name', 'Ionosphere Institute'),
(134152, 106043, 'ba', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š˜Š¾Š½Š¾ŃŃ„ŠµŃ€Ń‹'),
(134153, 106044, 'de', 'name', 'WPZ Research GmbH (Austria)'),
(134154, 106045, 'en', 'name', 'University Center of Barika'),
(134155, 106046, 'de', 'name', 'Institut für Visual Computing'),
(134156, 106046, 'en', 'name', 'Institute for Visual Computing'),
(134157, 106047, 'es', 'name', 'Centro de AstropartĆ­culas y FĆ­sica de Altas EnergĆ­as'),
(134158, 106048, 'en', 'name', 'Group on Earth Observations'),
(134159, 106049, 'en', 'name', 'Hamburg Media School'),
(134160, 106050, 'de', 'name', 'Institut für Elektronik'),
(134161, 106050, 'en', 'name', 'Institute for Electronics'),
(134162, 106051, 'de', 'name', 'PƤdagogische Hochschule St.Gallen'),
(134163, 106051, 'en', 'name', 'St.Gallen University of Teacher Education'),
(134164, 106052, 'de', 'name', 'Laboratorium für Physikalische Chemie'),
(134165, 106052, 'en', 'name', 'Laboratory of Physical Chemistry'),
(134166, 106053, 'no_lang_code', 'name', 'University of Kragujevac'),
(134167, 106053, 'sr', 'name', 'Универзитет у ŠšŃ€Š°Š³ŃƒŃ˜ŠµŠ²Ń†Ńƒ'),
(134168, 106054, 'es', 'name', 'Instituto de Biodiversidad de Ecosistemas AntƔrticos y SubantƔrticos'),
(134169, 106055, 'de', 'name', 'Schweiz. Erdbebendienst'),
(134170, 106055, 'en', 'name', 'Swiss Seismological Service'),
(134171, 106056, 'de', 'name', 'Institut für Mechanische Systeme'),
(134172, 106056, 'en', 'name', 'Institute of Mechanical Systems'),
(134173, 106057, 'en', 'name', 'Wyss Zurich Translational Center'),
(134174, 106058, 'en', 'name', 'Electromagnetic Fields Laboratory'),
(134175, 106058, 'de', 'name', 'Institut für Elektromagnetische Felder'),
(134176, 106059, 'de', 'name', 'Bertha von Suttner PrivatuniversitƤt St. Pƶlten GmbH'),
(134177, 106060, 'en', 'name', 'Atria Institute of Technology'),
(134178, 106061, 'en', 'name', 'CETT Barcelona School of Tourism, Hospitality and Gastronomy'),
(134179, 106062, 'no_lang_code', 'name', 'Piezocryst (Austria)'),
(134180, 106063, 'de', 'name', 'Spatial Services GmbH (Austria)'),
(134181, 106064, 'en', 'name', 'Nigeria Police Academy'),
(134182, 106065, 'en', 'name', 'Malla Reddy Engineering College for Women'),
(134183, 106066, 'en', 'name', 'Laboratory of Hydraulics, Hydrology and Glaciology'),
(134184, 106066, 'de', 'name', 'Versuchsanstalt für Wasserbau, Hydrologie und Glaziologie'),
(134185, 106067, 'de', 'name', 'Institut für Molecular Health Sciences'),
(134186, 106067, 'en', 'name', 'Institute of Molecular Health Sciences'),
(134187, 106068, 'en', 'name', 'Tashkent Institute of Management and Economics'),
(134188, 106069, 'en', 'name', 'Maulana Azad University Jodhpur'),
(134189, 106070, 'oc', 'name', 'Escòla Nacionala d''Administracion'),
(134190, 106070, 'en', 'name', 'National School of Administration'),
(134191, 106070, 'fr', 'name', 'Ɖcole nationale d''administration'),
(134192, 106071, 'en', 'name', 'Iligan Capitol College'),
(134193, 106072, 'de', 'name', 'Anstalt für Verbrennungskraftmaschinen List (United Kingdom)'),
(134194, 106073, 'en', 'name', 'Vienna Circle Society'),
(134195, 106073, 'de', 'name', 'Wiener Kreis Gesellschaft - Verein z. Fƶrderung wissenschaftl. Weltauffassung'),
(134196, 106074, 'en', 'name', 'Al-Sham Private University'),
(134197, 106074, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الؓام الخاصة'),
(134198, 106075, 'en', 'name', 'Association for the Conservation of Biodiversity of Kazakhstan'),
(134199, 106076, 'en', 'name', 'Flow Cytometry Core Facility'),
(134200, 106077, 'en', 'name', 'University of Michigan Press'),
(134201, 106078, 'en', 'name', 'State University of Medical and Applied Sciences'),
(134202, 106079, 'en', 'name', 'University of New Mexico Health Sciences Center'),
(134203, 106080, 'en', 'name', 'Tunku Abdul Rahman University'),
(134204, 106080, 'ms', 'name', 'Universiti Tunku Abdul Rahman'),
(134205, 106080, 'ta', 'name', 'ą®¤ąÆą®™ąÆą®•ąÆ ą®…ą®ŖąÆą®¤ąÆą®²ąÆ ą®°ą®•ąÆą®®ą®¾ą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(134206, 106081, 'en', 'name', 'openRxiv'),
(134207, 106082, 'en', 'name', 'University of Michigan Biological Station'),
(134208, 106083, 'de', 'name', 'Institut für Mikrobiologie'),
(134209, 106083, 'en', 'name', 'Institute of Microbiology'),
(134210, 106084, 'en', 'name', 'FIRST Center for Micro- and Nanoscience'),
(134211, 106085, 'de', 'name', 'Institut für Biomechanik'),
(134212, 106085, 'en', 'name', 'Institute for Biomechanics'),
(134213, 106086, 'de', 'name', 'Laserdata GmbH (Austria)'),
(134214, 106087, 'de', 'name', 'Institut für Verkehrsplanung und Transportsysteme'),
(134215, 106087, 'en', 'name', 'Institute for Transport Planning and Systems'),
(134216, 106088, 'en', 'name', 'Michigan Sea Grant'),
(134217, 106089, 'de', 'name', 'Laboratorium für Organische Chemie'),
(134218, 106089, 'en', 'name', 'Laboratory of Organic Chemistry'),
(134219, 106090, 'en', 'name', 'Altai Economics and Law Institute'),
(134220, 106090, 'ru', 'name', 'Алтайский ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(134221, 106091, 'en', 'name', 'Abu Dhabi Stem Cells Center'),
(134222, 106092, 'en', 'name', 'Center for Health and Migration (Austria)'),
(134223, 106092, 'de', 'name', 'Trummer & Novak-Zezula OG'),
(134224, 106093, 'es', 'name', 'Editorial de la Universidad de Cantabria'),
(134225, 106094, 'de', 'name', 'Institut für virtuelle Produktion'),
(134226, 106094, 'en', 'name', 'Institute of Virtual Manufacturing'),
(134227, 106095, 'en', 'name', 'Automatic Control Laboratory'),
(134228, 106095, 'de', 'name', 'Institut für Automatik'),
(134229, 106096, 'en', 'name', 'Computer Vision Laboratory'),
(134230, 106096, 'de', 'name', 'Institut für Bildverarbeitung'),
(134231, 106097, 'en', 'name', 'digital Trial Innovation Platform'),
(134232, 106098, 'fr', 'name', 'Sinergies'),
(134233, 106099, 'en', 'name', 'Schlumberger Middle East SA (Saudi Arabia)'),
(134234, 106100, 'de', 'name', 'Institut für Landschaft und Urbane Studien LUS'),
(134235, 106100, 'en', 'name', 'Institute for Urban and Landscape Studies'),
(134236, 106101, 'en', 'name', 'Seminar for Applied Mathematics'),
(134237, 106101, 'de', 'name', 'Seminar für Angewandte Mathematik'),
(134238, 106102, 'en', 'name', 'Sustainable Futures Collaborative'),
(134239, 106103, 'en', 'name', 'Naga College Foundation, Inc.'),
(134240, 106104, 'en', 'name', 'Pordis (United States)'),
(134241, 106105, 'en', 'name', 'Yakpermas Banyumas Polytechnic'),
(134242, 106106, 'en', 'name', 'Socioeconomic Institute for Advanced Studies (Rwanda)'),
(134243, 106107, 'es', 'name', 'Hospital Central Norte de Petroleos Mexicanos'),
(134244, 106108, 'de', 'name', 'Stella Vorarlberg Privathochschule für Musik'),
(134245, 106109, 'de', 'name', 'Institut für Elektrische Energieübertragung und Hochspannungstechnik'),
(134246, 106109, 'en', 'name', 'Power Systems and High Voltage Laboratory'),
(134247, 106110, 'en', 'name', 'AGST Philippines'),
(134248, 106111, 'en', 'name', 'The Chicago School'),
(134249, 106112, 'en', 'name', 'Shri Lal Bahadur Shastri Degree College, Gonda'),
(134250, 106112, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ लाल ą¤¬ą¤¹ą¤¾ą¤¦ą„ą¤° ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤°ą„€ ą¤”ą¤æą¤—ą„ą¤°ą„€ ą¤•ą„‰ą¤²ą„‡ą¤œ, ą¤—ą„‹ą¤£ą„ą¤”ą¤¾'),
(134251, 106113, 'de', 'name', 'Institut für Molekulare Systembiologie'),
(134252, 106113, 'en', 'name', 'Institute for Molecular Systems Biology'),
(134253, 106114, 'en', 'name', 'Kumamoto Saishun Medical Center'),
(134254, 106114, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ ē†Šęœ¬å†ę˜„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(134255, 106115, 'de', 'name', 'Leistungssport Austria'),
(134256, 106116, 'de', 'name', 'Institut Digitale und Informatische Bildung'),
(134257, 106116, 'en', 'name', 'Institute Digital and Computer Science Education'),
(134258, 106117, 'en', 'name', 'School for Continuing Education'),
(134259, 106118, 'fr', 'name', 'Haute Ɖcole de Lucerne'),
(134260, 106118, 'de', 'name', 'Hochschule Luzern'),
(134261, 106118, 'en', 'name', 'Lucerne University of Applied Sciences and Arts'),
(134262, 106119, 'id', 'name', 'Politeknik Pariwisata NHI Bandung'),
(134263, 106120, 'de', 'name', 'Institut für Neuroinformatik'),
(134264, 106120, 'en', 'name', 'Institute of Neuroinformatics'),
(134265, 106121, 'de', 'name', 'Institut für Geschichte'),
(134266, 106121, 'en', 'name', 'Institute of History'),
(134267, 106122, 'en', 'name', 'MAKAM Research GmbH (Austria)'),
(134268, 106123, 'de', 'name', 'Institut für Werkzeugmaschinen und Fertigung'),
(134269, 106123, 'en', 'name', 'Institute of Machine Tools and Manufacturing'),
(134270, 106124, 'de', 'name', 'Institut für Molekulare Physikalische Wissenschaft'),
(134271, 106124, 'en', 'name', 'Institute of Molecular Physical Science'),
(134272, 106125, 'en', 'name', 'Environmental Monitoring and Modeling Laboratory for the Sustainable Development'),
(134273, 106125, 'it', 'name', 'Laboratorio di Monitoraggio e Modellistica Ambientale per lo sviluppo sostenibile'),
(134274, 106126, 'de', 'name', 'Institut für Atmosphäre und Klima'),
(134275, 106126, 'en', 'name', 'Institute for Atmospheric and Climate Science'),
(134276, 106127, 'es', 'name', 'Universidad de Caldas'),
(134277, 106127, 'en', 'name', 'University of Caldas'),
(134278, 106128, 'de', 'name', 'Laboratorium für Anorganische Chemie'),
(134279, 106128, 'en', 'name', 'Laboratory of Inorganic Chemistry'),
(134280, 106129, 'pt', 'name', 'Jardim Botânico da Ajuda'),
(134281, 106130, 'no_lang_code', 'name', 'Sincolor (Czechia)'),
(134282, 106131, 'pt', 'name', 'Sociedade Portuguesa da Psicanalise'),
(134283, 106132, 'pt', 'name', 'Conservatório Bomfim'),
(134284, 106133, 'fr', 'name', 'Centre Hospitalier Universitaire de Montpellier'),
(134285, 106133, 'en', 'name', 'University Hospital of Montpellier'),
(134286, 106134, 'pt', 'name', 'Unidade de Investigação e Desenvolvimento de Nefrologia'),
(134287, 106135, 'pt', 'name', 'Laboratório Colaborativo para a Bioeconomia Azul'),
(134288, 106136, 'no_lang_code', 'name', 'Laboratório de Biologia Alimentar e Farmacêutica (Portugal)'),
(134289, 106137, 'no_lang_code', 'name', 'Algardata Sistemas InformƔticos (Portugal)'),
(134290, 106138, 'en', 'name', 'Azores Oncology Center'),
(134291, 106138, 'pt', 'name', 'Centro de Oncologia dos AƧores'),
(134292, 106139, 'pt', 'name', 'Instituto de Estudos de Literatura e Tradição'),
(134293, 106140, 'fr', 'name', 'Centre intƩgrƩ universitaire de santƩ et de services sociaux de la Capitale-Nationale'),
(134294, 106141, 'pt', 'name', 'Ispa CRL'),
(134295, 106142, 'pt', 'name', 'Governo do Estado de SĆ£o Paulo'),
(134296, 106143, 'en', 'name', 'Eishinkai Kishiwada Rehabilitation Hospital'),
(134297, 106143, 'ja', 'name', 'å²øå’Œē”°ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(134298, 106144, 'no_lang_code', 'name', 'Pfizer (Portugal)'),
(134299, 106145, 'no_lang_code', 'name', 'Atena Equity Partners (Portugal)'),
(134300, 106146, 'pt', 'name', 'Centro de Administração e Políticas Públicas'),
(134301, 106147, 'pt', 'name', 'Direção Geral de Energia e Geologia'),
(134302, 106148, 'no_lang_code', 'name', 'Brainanswer (Portugal)'),
(134303, 106149, 'en', 'name', 'Institute of Agricultural Biology and Biotechnology'),
(134304, 106149, 'it', 'name', 'Istituto di Biologia e Biotecnologia Agraria'),
(134305, 106150, 'en', 'name', 'Nexcelom (United States)'),
(134306, 106151, 'pt', 'name', 'Republica Portuguesa Direção-Geral das Artes'),
(134307, 106152, 'pt', 'name', 'Medical Art Center Clƭnica MƩdica (Portugal)'),
(134308, 106152, 'en', 'name', 'Medical Art Center Medical Clinic'),
(134309, 106153, 'pt', 'name', 'Instituto de Investigação em Ciências do Mar Okeanos'),
(134310, 106154, 'en', 'name', 'Chuadanga Government College'),
(134311, 106154, 'bn', 'name', 'ą¦šą§ą¦Æą¦¼ą¦¾ą¦”ą¦¾ą¦™ą§ą¦—ą¦¾ সরকারি ą¦•ą¦²ą§‡ą¦œ'),
(134312, 106155, 'pt', 'name', 'Sociedade Portuguesa de Psicodrama'),
(134313, 106156, 'no_lang_code', 'name', 'Prime Matter Consulting (Portugal)'),
(134314, 106157, 'pt', 'name', 'Conservatório de Música e Artes do Centro'),
(134315, 106158, 'en', 'name', 'Van der Waals-Zeeman Institute'),
(134316, 106159, 'en', 'name', 'Animal Health Research Center'),
(134317, 106160, 'pt', 'name', 'Câmara Municipal de Vila Nova de Famalicão'),
(134318, 106161, 'en', 'name', 'Institute of Polymers'),
(134319, 106161, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠŸŠ¾Š»ŠøŠ¼ŠµŃ€Šø'),
(134320, 106162, 'no_lang_code', 'name', 'CIENGIS (Portugal)'),
(134321, 106163, 'pt', 'name', 'CENERTEC Centro de Energia e Tecnologia'),
(134322, 106164, 'it', 'name', 'Aplysia APS'),
(134323, 106165, 'pt', 'name', 'Unidade Local de SaĆŗde do Arco Ribeirinho'),
(134324, 106166, 'no_lang_code', 'name', 'Parque de Ciência e Tecnologia da Covilhã (Portugal)'),
(134325, 106167, 'pt', 'name', 'Sociedade Portuguesa de Psiquiatria e Psicologia da JustiƧa'),
(134326, 106168, 'pt', 'name', 'Centro de Investigação e Informação da Música Portuguesa'),
(134327, 106169, 'ms', 'name', 'Kolej Universiti Linton'),
(134328, 106169, 'en', 'name', 'Linton University College'),
(134329, 106170, 'pt', 'name', 'Sociedade Portuguesa de Osteoporose e DoenƧas Ɠsseas Metabólicas'),
(134330, 106171, 'pt', 'name', 'Escola de MĆŗsica Nossa Senhora do Cabo'),
(134331, 106172, 'no_lang_code', 'name', 'Sanofi (France)'),
(134332, 106173, 'no_lang_code', 'name', 'Dryas (Portugal)'),
(134333, 106174, 'pt', 'name', 'Direção-Geral de Estatísticas da Educação e Ciência'),
(134334, 106175, 'pt', 'name', 'CĆ¢mara Municipal de Sever do Vouga'),
(134335, 106176, 'no_lang_code', 'name', 'PricewaterhouseCoopers (Portugal)'),
(134336, 106177, 'no_lang_code', 'name', 'Atomedical (Portugal)'),
(134337, 106178, 'pt', 'name', 'Instituto de Higiene e Medicina Tropical Biblioteca'),
(134338, 106179, 'fr', 'name', 'Interactions, Corpus, Apprentissages, ReprƩsentations'),
(134339, 106180, 'fr', 'name', 'Centre Technique de la Conservation des Produits Agricoles'),
(134340, 106180, 'en', 'name', 'Technical Center for the Preservation of Agricultural Products'),
(134341, 106181, 'en', 'name', 'City College, Kolkata'),
(134342, 106181, 'bn', 'name', 'সিটি ą¦•ą¦²ą§‡ą¦œ'),
(134343, 106182, 'pt', 'name', 'AgĆŖncia Municipal de Energia do Seixal'),
(134344, 106183, 'en', 'name', 'Fraunhofer Center for Smart Agriculture and Water Management – AWAM'),
(134345, 106184, 'pt', 'name', 'Centro Interpretativo do Tapete de Arraiolos'),
(134346, 106185, 'en', 'name', 'Marine Ecosystems and oRganisms reSEArch Lab'),
(134347, 106186, 'en', 'name', 'Yavuz Selim Bone Diseases and Rehabilitation Hospital'),
(134348, 106186, 'tr', 'name', 'Yavuz Seli̇m Kemi̇k Hastaliklari ve Rehabi̇li̇tasyon Hastanesi̇'),
(134349, 106187, 'pt', 'name', 'RELACRE - Associação de Laboratórios Acreditados de Portugal'),
(134350, 106188, 'pt', 'name', 'Federação das Indústrias Portuguesas Agro-Alimentares'),
(134351, 106189, 'no_lang_code', 'name', 'Tuamutunga Internacional (Portugal)'),
(134352, 106190, 'pt', 'name', 'Sociedade Portuguesa de Materiais'),
(134353, 106191, 'no_lang_code', 'name', 'Arouconstrói Engenharia e Construções (Portugal)'),
(134354, 106192, 'pt', 'name', 'Sociedade Portuguesa de Espeleologia'),
(134355, 106193, 'no_lang_code', 'name', 'Mentortec Serviços de Apoio a Projectos Tecnológicos (Portugal)'),
(134356, 106194, 'pt', 'name', 'Centro de AnƔlise Funcional Estruturas Lineares e AplicaƧƵes'),
(134357, 106195, 'en', 'name', 'Adler University'),
(134358, 106196, 'no_lang_code', 'name', 'Lusomedicamenta (Portugal)'),
(134359, 106197, 'pt', 'name', 'Casa da AmƩrica Latina'),
(134360, 106198, 'fr', 'name', 'Laboratoire de Chimie'),
(134361, 106199, 'pt', 'name', 'Centro de MatemÔtica Pólo da Universidade de TrÔs-os-Montes e Alto Douro'),
(134362, 106200, 'pt', 'name', 'Governo Regional da Madeira'),
(134363, 106200, 'en', 'name', 'Regional Government of Madeira'),
(134364, 106201, 'no_lang_code', 'name', 'Serraic Create and Innovate (Portugal)'),
(134365, 106202, 'pt', 'name', 'Conservatório de Música de Barcelos'),
(134366, 106203, 'es', 'name', 'Centro Regional de Formación Docente e Investigación Educativa'),
(134367, 106203, 'en', 'name', 'Regional Center for Teacher Training and Educational Research'),
(134368, 106204, 'pt', 'name', 'ARS Associação Investigação Desenvolvimento'),
(134369, 106205, 'pt', 'name', 'Unidade Local de Saúde de Santo António EPE'),
(134370, 106206, 'pt', 'name', 'Portugal Inovação Social'),
(134371, 106207, 'en', 'name', 'Portuguese Clinical Research Infrastructure Network'),
(134372, 106208, 'es', 'name', 'La Universidad Americana'),
(134373, 106209, 'pt', 'name', 'Sociedade Portuguesa de Microbiologia'),
(134374, 106210, 'pt', 'name', 'Sociedade Portuguesa de Neurocirurgia'),
(134375, 106211, 'en', 'name', 'Littoral Power Systems, Inc. (United States)'),
(134376, 106212, 'en', 'name', 'Velalar College of Engineering and Technology'),
(134377, 106212, 'ta', 'name', 'ą®µąÆ‡ą®³ą®¾ą®³ą®°ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(134378, 106213, 'no_lang_code', 'name', 'McKinsey & Company (United States)'),
(134379, 106214, 'en', 'name', 'Center for Scalable Data Analytics and Artificial Intelligence'),
(134380, 106215, 'pt', 'name', 'Biobanco.pt'),
(134381, 106216, 'pt', 'name', 'Assembleia da RepĆŗblica Biblioteca Passos Manuel'),
(134382, 106217, 'en', 'name', 'Idorsia Pharmaceuticals Ltd (Switzerland)'),
(134383, 106218, 'pt', 'name', 'Câmara Municipal de Portimão'),
(134384, 106219, 'pt', 'name', 'Centro de Tecnologia e Inovação Industrial'),
(134385, 106220, 'pt', 'name', 'Sociedade Portuguesa de Relatividade e Gravitação'),
(134386, 106221, 'pt', 'name', 'Centro de Investigação em Comunicação Aplicada Cultura e Novas Tecnologias'),
(134387, 106222, 'pt', 'name', 'Unidade Local de SaĆŗde de Amadora/Sintra'),
(134388, 106223, 'no_lang_code', 'name', 'MCretail SGPS (Portugal)'),
(134389, 106224, 'pt', 'name', 'Direção de História e Cultura Militar'),
(134390, 106225, 'pt', 'name', 'Escola de Comunicação Arquitectura Artes e Tecnologias da Informação'),
(134391, 106226, 'pt', 'name', 'Sociedade Portuguesa de Astronomia'),
(134392, 106227, 'pt', 'name', 'Companhia de MĆŗsica Teatral'),
(134393, 106228, 'pt', 'name', 'Centro para o Direito Ambiental e Desenvolvimento Sustentado'),
(134394, 106229, 'pt', 'name', 'ClĆ­nica de Otorrinolaringologia Dr Agostinho Pereira da Silva (Portugal)'),
(134395, 106229, 'en', 'name', 'Dr Agostinho Pereira da Silva Otorhinolaryngology Clinic'),
(134396, 106230, 'pt', 'name', 'EurolĆ­nguas'),
(134397, 106231, 'en', 'name', 'Atlantic International Research Centre'),
(134398, 106232, 'en', 'name', 'Facility for Antiproton and Ion Research'),
(134399, 106232, 'de', 'name', 'Internationale Beschleuniger-Anlage zur Forschung mit Antiprotonen und Ionen'),
(134400, 106233, 'pt', 'name', 'Novotecna - Associação para o Desenvolvimento Tecnológico'),
(134401, 106234, 'no_lang_code', 'name', 'Omnidea (Portugal)'),
(134402, 106235, 'no_lang_code', 'name', 'Puratos (Portugal)'),
(134403, 106236, 'no_lang_code', 'name', 'Oceano Fresco (Portugal)'),
(134404, 106237, 'no_lang_code', 'name', 'Shine 2Europe (Portugal)'),
(134405, 106238, 'no_lang_code', 'name', 'Pharol SGPS (Portugal)'),
(134406, 106239, 'es', 'name', 'Universidad Autónoma de Entre Ríos'),
(134407, 106240, 'no_lang_code', 'name', 'Eli Lilly (Portugal)'),
(134408, 106241, 'no_lang_code', 'name', 'Egoclinic Prestação de Serviços Médicos (Portugal)'),
(134409, 106242, 'pt', 'name', 'Fundação AstraZeneca'),
(134410, 106243, 'en', 'name', 'BSC Engineering (United States)'),
(134411, 106244, 'pt', 'name', 'PalƔcio Nacional da Ajuda'),
(134412, 106245, 'es', 'name', 'Instituto Superior Tecnológico Portoviejo con condición Superior Universitario "ITSUP"'),
(134413, 106246, 'pt', 'name', 'CĆ¢mara Municipal da Maia'),
(134414, 106247, 'en', 'name', 'Photon Science Innovation Center'),
(134415, 106247, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…‰ē§‘å­¦ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(134416, 106248, 'en', 'name', 'Network of Extreme Conditions Laboratories'),
(134417, 106249, 'no_lang_code', 'name', 'FairJourney Biologics (Portugal)'),
(134418, 106250, 'no_lang_code', 'name', 'Smartwatt (Portugal)'),
(134419, 106251, 'pt', 'name', 'Câmara Municipal de AlvaiÔzere'),
(134420, 106252, 'no_lang_code', 'name', 'Docapesca Portos e Lotas (Portugal)'),
(134421, 106253, 'no_lang_code', 'name', 'Perceive3D (Portugal)'),
(134422, 106254, 'pt', 'name', 'ServiƧo de Estrangeiros e Fronteiras'),
(134423, 106255, 'pt', 'name', 'Instituto Superior de Direito Canónico'),
(134424, 106256, 'pt', 'name', 'Centro de Investigação em Produção Agroalimentar SustentÔvel'),
(134425, 106257, 'it', 'name', 'Fondazione Ethoikos'),
(134426, 106258, 'pt', 'name', 'Alto Comissariado para as MigraƧƵes'),
(134427, 106259, 'pt', 'name', 'ConferĆŖncia Episcopal Portuguesa'),
(134428, 106260, 'pt', 'name', 'Sociedade Portuguesa de Otorrinolaringologia e Cirurgia de CabeƧa e PescoƧo'),
(134429, 106261, 'pt', 'name', 'Centro de Estudos de História do Atlântico Alberto Vieira'),
(134430, 106262, 'pt', 'name', 'Instituto Superior Tecnico Campus Tecnológico e Nuclear'),
(134431, 106263, 'en', 'name', 'Portuguese Additive Manufacturing Initiative'),
(134432, 106264, 'pt', 'name', 'APHVIN GEHVID - Associação Portuguesa de História da Vinha e do Vinho'),
(134433, 106265, 'pt', 'name', 'Laboratório de Investigação e Reabilitação Respiratória'),
(134434, 106266, 'no_lang_code', 'name', 'Fresenius Kabi Pharma Portugal (Portugal)'),
(134435, 106267, 'en', 'name', 'Aeronautics and Astronautics Research Center'),
(134436, 106268, 'en', 'name', 'DTX Digital Transformation CoLAB'),
(134437, 106269, 'pt', 'name', 'Estação Nacional de Fruticultura Vieira Natividade'),
(134438, 106270, 'pt', 'name', 'Sociedade Broteriana'),
(134439, 106271, 'pt', 'name', 'Unidade de Ensino e Investigação de Clínica Tropical'),
(134440, 106272, 'en', 'name', 'Smart Energy LAB'),
(134441, 106273, 'pt', 'name', 'Centro de Medicina Laboratorial Germano de Sousa (Portugal)'),
(134442, 106273, 'en', 'name', 'Germano de Sousa Centre for Laboratory Medicine'),
(134443, 106274, 'en', 'name', 'Metropolitan Water Reclamation District of Greater Chicago'),
(134444, 106275, 'no_lang_code', 'name', 'Caetano de Freitas & Associados (Portugal)'),
(134445, 106276, 'pt', 'name', 'Sociedade Portuguesa de Cardiologia VeterinƔria'),
(134446, 106277, 'fr', 'name', 'Clermont UniversitƩ'),
(134447, 106278, 'pt', 'name', 'Centro de Informação Europeia Jacques Delors'),
(134448, 106279, 'no_lang_code', 'name', 'UCB Pharma (Belgium)'),
(134449, 106280, 'en', 'name', 'Wageningen Marine Research'),
(134450, 106281, 'pt', 'name', 'Centro de Competências em Envelhecimento Ativo e SaudÔvel'),
(134451, 106282, 'en', 'name', 'Laboratory for Advanced Computing'),
(134452, 106283, 'en', 'name', 'Felician University'),
(134453, 106284, 'en', 'name', 'Southeast University'),
(134454, 106284, 'zh', 'name', 'äøœå—å¤§å­¦'),
(134455, 106285, 'en', 'name', 'Diversity, Genomes and Insects-Microorganisms Interactions'),
(134456, 106285, 'fr', 'name', 'DiversitƩ, gƩnomes et interactions micro-organismes-insectes'),
(134457, 106286, 'pt', 'name', 'Centro para a Valorização de Resíduos'),
(134458, 106287, 'pt', 'name', 'Centro de FĆ­sica Computacional'),
(134459, 106288, 'pt', 'name', 'Cooperativa para a Educação e Reabilitação de Cidadãos Inadaptados de Vila Nova de Gaia'),
(134460, 106289, 'pt', 'name', 'Escola Naval Unidade Orgânica de Ensino Politécnico'),
(134461, 106290, 'pt', 'name', 'Laboratório Hercules Herança Cultural Estudos e Salvaguarda'),
(134462, 106291, 'no_lang_code', 'name', 'Laboratórios Basi - Indústria Farmacêutica (Portugal)'),
(134463, 106292, 'pt', 'name', 'Ordem dos Advogados'),
(134464, 106293, 'hu', 'name', 'FelsőbbfokĆŗ TanulmĆ”nyok IntĆ©zete'),
(134465, 106293, 'en', 'name', 'Institute of Advanced Studies Kőszeg'),
(134466, 106294, 'en', 'name', 'Museu de Arte Contemporânea de Serralves'),
(134467, 106295, 'en', 'name', 'Bochum University of Applied Sciences Health Campus'),
(134468, 106295, 'de', 'name', 'Hochschule Bochum Standort Gesundheitscampus'),
(134469, 106296, 'no_lang_code', 'name', 'Unidad Renal Nefrodial SAS (Portugal)'),
(134470, 106297, 'pt', 'name', 'Secretaria Regional de Agricultura e Pescas Direção Regional de Agricultura'),
(134471, 106298, 'pt', 'name', 'Centro de Estudos de Arquitetura Cidade e Território'),
(134472, 106299, 'en', 'name', 'CHEM.I.NET CO., Ltd. (South Korea)'),
(134473, 106299, 'kr', 'name', 'ģ¼ģ•„ģ“ė„·(주)'),
(134474, 106300, 'en', 'name', 'University of Kerbala'),
(134475, 106301, 'pt', 'name', 'Sociedade Portuguesa de Pneumologia'),
(134476, 106302, 'pt', 'name', 'Unidade de Arqueologia'),
(134477, 106303, 'pt', 'name', 'Sociedade Portuguesa de Anestesiologia'),
(134478, 106304, 'pt', 'name', 'Biblioteca Francisco Pereira de Moura'),
(134479, 106305, 'en', 'name', 'School of Management and Banking in Cracow'),
(134480, 106305, 'pl', 'name', 'Wyższa Szkoła Zarządzania i Bankowości w Krakowie'),
(134481, 106306, 'en', 'name', 'National Center for Tumor Diseases Partner Site Dresden'),
(134482, 106306, 'de', 'name', 'Nationales Centrum für Tumorerkrankungen Dresden'),
(134483, 106307, 'en', 'name', 'Network of Micro- and Nano-Fabrication Research Facilities in Portugal'),
(134484, 106308, 'fr', 'name', 'Plateforme d''Analyses et de CaractƩrisations Chimie Balard'),
(134485, 106309, 'en', 'name', 'SciKA-Association for Promotion and Dissemination of Scientific Knowledge'),
(134486, 106310, 'es', 'name', 'Instituto Multidisciplinario para la Investigación y el Desarrollo Productivo y Social de la Cuenca del Golfo San Jorge'),
(134487, 106311, 'no_lang_code', 'name', 'OmniserviƧos RepresentaƧƵes e ServiƧos (Portugal)'),
(134488, 106312, 'pt', 'name', 'Sociedade Portuguesa da CiĆŖncia do Solo'),
(134489, 106313, 'pt', 'name', 'Academia de MĆŗsica de Lisboa'),
(134490, 106314, 'pt', 'name', 'Sociedade Portuguesa de Arte-Terapia'),
(134491, 106315, 'no_lang_code', 'name', 'R&D Nester (Portugal)'),
(134492, 106316, 'en', 'name', 'Soochow University'),
(134493, 106316, 'zh', 'name', 'č‹å·žå¤§å­¦'),
(134494, 106317, 'no_lang_code', 'name', 'Eli Lilly (United States)'),
(134495, 106318, 'pt', 'name', 'Sociedade Portuguesa das DoenƧas do Movimento'),
(134496, 106319, 'en', 'name', 'Osh State Pedagogical University named after A. Myrsabekov'),
(134497, 106320, 'pt', 'name', 'Sociedade da LĆ­ngua Portuguesa'),
(134498, 106321, 'en', 'name', 'Stanbridge University'),
(134499, 106322, 'pt', 'name', 'Santa Casa da Misericórdia de Anadia'),
(134500, 106323, 'en', 'name', 'Collaborative Innovation Center of Suzhou Nano Science and Technology'),
(134501, 106323, 'zh', 'name', 'č‹å·žēŗ³ē±³ē§‘ęŠ€ååŒåˆ›ę–°äø­åæƒ'),
(134502, 106324, 'pt', 'name', 'Unidade de Ensino e Investigação em Saúde Pública Global'),
(134503, 106325, 'no_lang_code', 'name', 'Valmet (Portugal)'),
(134504, 106326, 'en', 'name', 'National Institute for Nigerian Languages'),
(134505, 106327, 'pt', 'name', 'Centro de Literatura Portuguesa'),
(134506, 106328, 'pt', 'name', 'Sociedade Portuguesa de CiĆŖncias FarmacĆŖuticas'),
(134507, 106329, 'es', 'name', 'Instituto de GeografĆ­a, Historia y Ciencias Sociales'),
(134508, 106330, 'pt', 'name', 'Sociedade Ibero-Americana para o Desenvolvimento das Biorrefinarias'),
(134509, 106331, 'no_lang_code', 'name', 'Secil Companhia Geral de Cal e Cimento (Portugal)'),
(134510, 106332, 'en', 'name', 'Maremma Natural History Museum'),
(134511, 106332, 'it', 'name', 'Museo di Storia Naturale della Maremma'),
(134512, 106333, 'pt', 'name', 'Centro de MatemƔtica Computacional e EstocƔstica'),
(134513, 106334, 'pt', 'name', 'Sociedade Portuguesa do Acidente Vascular Cerebral'),
(134514, 106335, 'pt', 'name', 'Direcção-Geral do Emprego e das Relações de Trabalho'),
(134515, 106336, 'pt', 'name', 'Sociedade Portuguesa de FĆ­sica'),
(134516, 106337, 'no_lang_code', 'name', 'Toxfinder (Portugal)'),
(134517, 106338, 'fr', 'name', 'Atmo Normandie'),
(134518, 106339, 'es', 'name', 'Hospital Santa Rosa'),
(134519, 106340, 'no_lang_code', 'name', 'VTM Global (Portugal)'),
(134520, 106341, 'en', 'name', 'Messiah University'),
(134521, 106342, 'pt', 'name', 'Casa do Professor'),
(134522, 106343, 'pt', 'name', 'Centro de Investigação em Ciências Históricas'),
(134523, 106344, 'pt', 'name', 'Sociedade Portuguesa de AcĆŗstica'),
(134524, 106345, 'pt', 'name', 'Museu Municipal Amadeo de Souza-Cardoso'),
(134525, 106346, 'no_lang_code', 'name', 'EDUGEP (Portugal)'),
(134526, 106347, 'no_lang_code', 'name', 'Cofina SGPS (Portugal)'),
(134527, 106348, 'pt', 'name', 'CĆ¢mara Municipal do Seixal'),
(134528, 106349, 'no_lang_code', 'name', 'Sanofi (Portugal)'),
(134529, 106350, 'pt', 'name', 'Ordem dos Enfermeiros'),
(134530, 106351, 'pt', 'name', 'Sociedade Portuguesa de NeurociĆŖncias'),
(134531, 106352, 'pt', 'name', 'AgĆŖncia de Desenvolvimento Regional do Alentejo'),
(134532, 106353, 'pt', 'name', 'Governo dos AƧores');
INSERT INTO `ror_settings` VALUES
(134533, 106354, 'no_lang_code', 'name', 'Megajoule (Portugal)'),
(134534, 106355, 'pt', 'name', 'Centro de LinguĆ­stica'),
(134535, 106356, 'pt', 'name', 'Sociedade Portuguesa de Investigação em Música'),
(134536, 106357, 'pt', 'name', 'Pavilhão do Conhecimento-Centro Ciência Viva'),
(134537, 106358, 'en', 'name', 'West Midlands Open University'),
(134538, 106359, 'no_lang_code', 'name', 'Biotronik (Germany)'),
(134539, 106360, 'no_lang_code', 'name', 'Medac (Germany)'),
(134540, 106361, 'en', 'name', 'Air Force Institute of Technology Kaduna'),
(134541, 106362, 'pt', 'name', 'Biblioteca PĆŗblica e Arquivo Regional de Ponta Delgada'),
(134542, 106363, 'pt', 'name', 'Centro de Investigação Transdisciplinar Cultura Espaço e Memória'),
(134543, 106364, 'no_lang_code', 'name', 'Pierre Fabre (France)'),
(134544, 106365, 'pt', 'name', 'Direção-Geral da Administração e do Emprego Público'),
(134545, 106366, 'pt', 'name', 'Sociedade Portuguesa de GenƩtica Humana'),
(134546, 106367, 'no_lang_code', 'name', 'Vieira de Almeida e Associados (Portugal)'),
(134547, 106368, 'pt', 'name', 'Laboratório Nacional de Engenharia Civil'),
(134548, 106368, 'en', 'name', 'National Laboratory for Civil Engineering'),
(134549, 106369, 'fr', 'name', 'UniversitƩ Virtuelle de CƓte d''Ivoire'),
(134550, 106369, 'en', 'name', 'Virtual University of Cote d''Ivoire'),
(134551, 106370, 'en', 'name', 'Schmidt Family Foundation'),
(134552, 106371, 'no_lang_code', 'name', 'Empresa Portuguesa de Ɓguas Livres (Portugal)'),
(134553, 106372, 'no_lang_code', 'name', 'Lusodoc Documentação Técnico-Científica (Portugal)'),
(134554, 106373, 'no_lang_code', 'name', 'Zimmer Biomet (United States)'),
(134555, 106374, 'no_lang_code', 'name', 'Flex2000 (Portugal)'),
(134556, 106375, 'no_lang_code', 'name', 'Stachema (Czechia)'),
(134557, 106376, 'pt', 'name', 'Laboratório de Protecção e Segurança Radiológica'),
(134558, 106377, 'no_lang_code', 'name', 'Dias de Sousa (Portugal)'),
(134559, 106378, 'pt', 'name', 'Biblioteca da Ajuda'),
(134560, 106379, 'no_lang_code', 'name', 'Sinfic (Portugal)'),
(134561, 106380, 'no_lang_code', 'name', 'Lima Implantes Portugal SU (Portugal)'),
(134562, 106381, 'no_lang_code', 'name', 'Continental Engineering Services Portugal (Portugal)'),
(134563, 106382, 'nl', 'name', 'Karel de Grote Hogeschool'),
(134564, 106382, 'en', 'name', 'KdG University of Applied Sciences and Arts'),
(134565, 106383, 'pt', 'name', 'Turismo de Portugal'),
(134566, 106384, 'en', 'name', 'Bochum University of Applied Sciences'),
(134567, 106384, 'de', 'name', 'Hochschule Bochum'),
(134568, 106385, 'en', 'name', 'Production and Archive of Social Science Data'),
(134569, 106386, 'no_lang_code', 'name', 'Epicentre (South Africa)'),
(134570, 106387, 'no_lang_code', 'name', 'Behavioral and Molecular Lab (Portugal)'),
(134571, 106388, 'no_lang_code', 'name', 'Viagens Abreu (Portugal)'),
(134572, 106389, 'no_lang_code', 'name', 'Alfasigma Portugal (Portugal)'),
(134573, 106390, 'fr', 'name', 'Institut Regional du Cancer de Montpellier'),
(134574, 106391, 'pt', 'name', 'TecMinho'),
(134575, 106392, 'en', 'name', 'Portugal Football School'),
(134576, 106393, 'en', 'name', 'Obninsk Institute for Nuclear Power Engineering'),
(134577, 106393, 'ru', 'name', 'ŠžŠ‘ŠŠ˜ŠŠ”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŠ¢ŠžŠœŠŠžŠ™ Š­ŠŠ•Š Š“Š•Š¢Š˜ŠšŠ˜'),
(134578, 106394, 'pt', 'name', 'Sociedade Portuguesa de Angiologia e Cirurgia Vascular'),
(134579, 106395, 'pt', 'name', 'Centro de Investigação em Marketing e AnÔlise de Dados'),
(134580, 106396, 'no_lang_code', 'name', 'Linklaters LLP Lisbon (Portugal)'),
(134581, 106397, 'en', 'name', 'All India Institute of Medical Sciences Rishikesh'),
(134582, 106397, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‹ą¤·ą¤æą¤•ą„‡ą¤¶'),
(134583, 106398, 'no_lang_code', 'name', 'Novo Nordisk (Portugal)'),
(134584, 106399, 'pt', 'name', 'Escola Superior Aveiro Norte'),
(134585, 106400, 'de', 'name', 'Förderverein Institut für Medizintechnik Dresden'),
(134586, 106401, 'en', 'name', 'Ministry of Ecology and Environment'),
(134587, 106401, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½ēŽÆå¢ƒäæęŠ¤éƒØ'),
(134588, 106402, 'pt', 'name', 'Sociedade de Ciências AgrÔrias de Portugal'),
(134589, 106403, 'en', 'name', 'Sichuan University'),
(134590, 106403, 'zh', 'name', '四川大学'),
(134591, 106404, 'fr', 'name', 'Centre Spatial de l''UniversitƩ de Montpellier'),
(134592, 106404, 'en', 'name', 'Space center of the University of Montpellier'),
(134593, 106405, 'pt', 'name', 'Eborae Mvsica'),
(134594, 106406, 'pt', 'name', 'CĆ¢mara Municipal de Tavira'),
(134595, 106407, 'pt', 'name', 'Sociedade Portuguesa de Biologia de Plantas'),
(134596, 106408, 'pt', 'name', 'Arquivo Histórico Municipal do Porto'),
(134597, 106409, 'pt', 'name', 'Museu Municipal Dr Santos Rocha'),
(134598, 106410, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Portugal)'),
(134599, 106411, 'pt', 'name', 'AquaValor Centro de Valorização e Transferência de Tecnologia da Água'),
(134600, 106412, 'en', 'name', 'Cancer Center Amsterdam'),
(134601, 106413, 'pt', 'name', 'Universidade Norte do ParanĆ”'),
(134602, 106414, 'en', 'name', 'Forward College'),
(134603, 106415, 'de', 'name', 'Allectra GmbH'),
(134604, 106415, 'en', 'name', 'Allectra Limited (Germany)'),
(134605, 106416, 'no_lang_code', 'name', 'Multinfor Equipamento e Manutenção Hospitalar (Portugal)'),
(134606, 106417, 'pt', 'name', 'Unidade de Investigação e Desenvolvimento Cardiovascular'),
(134607, 106418, 'en', 'name', 'Emirates Academy for Identity and Citizenship'),
(134608, 106418, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© الامارات Ł„Ł„Ł‡ŁˆŁŠŲ© ŁˆŲ§Ł„Ų¬Ł†Ų³ŁŠŲ©'),
(134609, 106419, 'en', 'name', 'Bezmialem Vakıf University'),
(134610, 106419, 'tr', 'name', 'Bezmiâlem Vakıf Üniversitesi'),
(134611, 106420, 'pt', 'name', 'Sociedade Portuguesa de NumismƔtica'),
(134612, 106421, 'en', 'name', 'The Millennium Project'),
(134613, 106422, 'pt', 'name', 'Ballet Teatro Contemporâneo do Porto'),
(134614, 106423, 'en', 'name', 'Molecular Mechanisms in Neurodegenerative Diseases'),
(134615, 106423, 'fr', 'name', 'MƩcanismes molƩculaires dans les dƩmences neurodƩgƩnƩratives'),
(134616, 106424, 'en', 'name', 'Facility for Antiproton and Ion Research (FAIR) – participation of the Czech Republic'),
(134617, 106424, 'cs', 'name', 'Laboratoř pro výzkum s antiprotony a těžkými ionty (FAIR) – ĆŗÄast ČR'),
(134618, 106425, 'es', 'name', 'Institución Universitaria Pascual Bravo'),
(134619, 106426, 'en', 'name', 'All India Institute of Medical Sciences Jodhpur'),
(134620, 106426, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤œą„‹ą¤§ą¤Ŗą„ą¤°'),
(134621, 106427, 'en', 'name', 'Oliva Creative Factory'),
(134622, 106428, 'pt', 'name', 'Biblioteca de Arte Gulbenkian'),
(134623, 106429, 'no_lang_code', 'name', 'Wipro (Portugal)'),
(134624, 106430, 'pt', 'name', 'CETERA'),
(134625, 106431, 'en', 'name', 'Lamezia Terme Hospital'),
(134626, 106431, 'it', 'name', 'Presidio Ospedaliero Lamezia Terme'),
(134627, 106432, 'pt', 'name', 'Sociedade Portuguesa de ElectroquĆ­mica'),
(134628, 106433, 'pt', 'name', 'Academia de LĆ­nguas da Madeira'),
(134629, 106434, 'no_lang_code', 'name', 'ISQe (Portugal)'),
(134630, 106435, 'fr', 'name', 'Centre Européen de Résonance Magnétique Nucléaire A Très Hauts Champs'),
(134631, 106435, 'en', 'name', 'The European Center for High Field NMR'),
(134632, 106436, 'pt', 'name', 'Cooperativa de Formação e Animação Cultural CRL'),
(134633, 106437, 'no_lang_code', 'name', 'TMG Group (Portugal)'),
(134634, 106438, 'en', 'name', 'French Network on Material Under high Strain Rate. Applications to Material Under Extreme Conditions, Processes and Structures'),
(134635, 106438, 'fr', 'name', 'Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures'),
(134636, 106439, 'es', 'name', 'ClĆ­nica privada de Ojos Dr. Enrique Alza'),
(134637, 106439, 'en', 'name', 'Dr. Enrique Alza Private Eye Clinic'),
(134638, 106440, 'de', 'name', 'Hochschule 21'),
(134639, 106441, 'pt', 'name', 'Associação Rede de Competência em Polímeros'),
(134640, 106442, 'no_lang_code', 'name', 'WINNING Scientific Management (Portugal)'),
(134641, 106443, 'no_lang_code', 'name', 'Companhia Industrial de Resinas SintƩticas (Portugal)'),
(134642, 106444, 'pt', 'name', 'Biblioteca Municipal de Santa Maria da Feira'),
(134643, 106445, 'pt', 'name', 'AMEC Metropolitana'),
(134644, 106446, 'no_lang_code', 'name', 'Bluepharma (Portugal)'),
(134645, 106447, 'pt', 'name', 'Centro de História'),
(134646, 106448, 'en', 'name', 'CAEP Software Center for High Performance Numerical Simulation'),
(134647, 106448, 'zh', 'name', 'äø­ę— é™¢é«˜ę€§čƒ½ę•°å€¼ęØ”ę‹Ÿč½Æä»¶äø­åæƒ'),
(134648, 106449, 'pt', 'name', 'AlmaScience'),
(134649, 106450, 'pt', 'name', 'Centro de Formação de Associação de Escolas Braga/Sul'),
(134650, 106451, 'pt', 'name', 'Riscos e Sustentabilidade na Construção'),
(134651, 106452, 'pt', 'name', 'Centro de Investigação em Química'),
(134652, 106453, 'pt', 'name', 'Centro Ciência Viva de Bragança'),
(134653, 106454, 'pt', 'name', 'Fundacao de Computacao Cientifica Nacional'),
(134654, 106455, 'pt', 'name', 'Teatro AcadƩmico de Gil Vicente'),
(134655, 106456, 'pt', 'name', 'Centro de Engenharia Mecânica e Sustentabilidade de Recursos'),
(134656, 106457, 'pt', 'name', 'LabComIFP - Comunicação Filosofia e Humanidades'),
(134657, 106458, 'en', 'name', 'NSF NCAR Climate and Global Dynamics Laboratory'),
(134658, 106459, 'pt', 'name', 'Academia Portuguesa da História'),
(134659, 106460, 'pt', 'name', 'Sociedade de Ɖtica Ambiental'),
(134660, 106461, 'pt', 'name', 'Serviço de Documentação e Bibliotecas'),
(134661, 106462, 'pt', 'name', 'SaĆŗde Global e Medicina Tropical'),
(134662, 106463, 'pt', 'name', 'Associação Portuguesa de Estudos sobre as Mulheres'),
(134663, 106464, 'es', 'name', 'Jardƭn BotƔnico Nacional de ViƱa del Mar'),
(134664, 106465, 'no_lang_code', 'name', 'Eurocasmedica - Produtos Hospitalares (Portugal)'),
(134665, 106466, 'no_lang_code', 'name', 'Abbott (Portugal)'),
(134666, 106467, 'en', 'name', 'All India Institute of Medical Sciences, Kalyani'),
(134667, 106467, 'bn', 'name', 'অখিল ভারতীয় ą¦†ą¦Æą¦¼ą§ą¦°ą§ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦øą¦‚ą¦øą§ą¦„ą¦¾ą¦Ø, ą¦•ą¦²ą§ą¦Æą¦¾ą¦£ą§€'),
(134668, 106468, 'pt', 'name', 'Centro de Estudos de História Religiosa'),
(134669, 106469, 'en', 'name', 'European Spallation Source – participation of the Czech Republic'),
(134670, 106469, 'cs', 'name', 'Evropský spalačnĆ­ zdroj'),
(134671, 106470, 'en', 'name', 'Institute for Modeling Plasma, Atmospheres and Cosmic Dust'),
(134672, 106471, 'pt', 'name', 'Republica Portuguesa Direção-Geral do Livro dos Arquivos e das Bibliotecas'),
(134673, 106472, 'pt', 'name', 'Ordem dos Médicos Secção Regional do Sul'),
(134674, 106473, 'no_lang_code', 'name', 'Areal Editores (Portugal)'),
(134675, 106474, 'en', 'name', 'Católica Global School of Law'),
(134676, 106475, 'no_lang_code', 'name', 'Manitoba Portugal'),
(134677, 106476, 'pt', 'name', 'Rede Portuguesa de Monitorização Costeira'),
(134678, 106477, 'pt', 'name', 'Observatório de Ciberjornalismo'),
(134679, 106478, 'pt', 'name', 'Sociedade Portuguesa de Biotecnologia'),
(134680, 106479, 'pt', 'name', 'Escola de Música São Teotónio'),
(134681, 106480, 'pt', 'name', 'Centro Criatividade Digital'),
(134682, 106481, 'es', 'name', 'Asociación para la Conservación y el Desarrollo Sostenible Sallqa Perú'),
(134683, 106482, 'pt', 'name', 'Centro de Estudos em Património Paisagem e Construção'),
(134684, 106483, 'pt', 'name', 'Sociedade Portuguesa de Biologia do Desenvolvimento'),
(134685, 106484, 'no_lang_code', 'name', 'CSL Behring (Portugal)'),
(134686, 106485, 'pt', 'name', 'Sociedade Portuguesa de Recursos GenƩticos Animais'),
(134687, 106486, 'pt', 'name', 'Centro de MatemƔtica e AplicaƧƵes'),
(134688, 106487, 'pt', 'name', 'Centro Social Paroquial São Romão de Carnaxide'),
(134689, 106488, 'en', 'name', 'Government of Portugal'),
(134690, 106488, 'pt', 'name', 'Governo de Portugal'),
(134691, 106489, 'es', 'name', 'Instituto Superior Tecnológico ITCA'),
(134692, 106490, 'no_lang_code', 'name', 'Angelini Pharma (Portugal)'),
(134693, 106491, 'nl', 'name', 'Katholieke Hogeschool Vives'),
(134694, 106491, 'en', 'name', 'VIVES University of Applied Sciences'),
(134695, 106492, 'pt', 'name', 'Museu do Abade de BaƧal'),
(134696, 106493, 'pt', 'name', 'CĆ¢mara Municipal de Viana do Castelo'),
(134697, 106494, 'no_lang_code', 'name', 'YƤbulu (Portugal)'),
(134698, 106495, 'en', 'name', 'Interdisciplinary Center for Children and Adolescents'),
(134699, 106495, 'pt', 'name', 'Núcleo Interdisciplinar da Criança e do Adolescente'),
(134700, 106496, 'en', 'name', 'EVICR Network'),
(134701, 106497, 'no_lang_code', 'name', 'Wipro (India)'),
(134702, 106498, 'pt', 'name', 'c5Lab'),
(134703, 106499, 'pt', 'name', 'Centro de Investigacao em Direito Europeu Economico Financeiro e Fiscal'),
(134704, 106500, 'no_lang_code', 'name', 'Mundiconvenius (Portugal)'),
(134705, 106501, 'en', 'name', 'Shaoxing Shangyu Women and Children Hospital'),
(134706, 106501, 'zh', 'name', 'ē»å…“åø‚äøŠč™žå¦‡å¹¼äæå„é™¢'),
(134707, 106502, 'en', 'name', 'Department of Medical Sciences'),
(134708, 106503, 'pt', 'name', 'Centro de Investigação em Estruturas e Construção'),
(134709, 106504, 'pt', 'name', 'Enercoutim - Associação Empresarial de Energia Solar de Alcoutim'),
(134710, 106505, 'pt', 'name', 'ProvĆ­ncia Portuguesa da Companhia de Jesus'),
(134711, 106506, 'pt', 'name', 'Comissao de Coordenacao e Desenvolvimento Regional do Norte'),
(134712, 106507, 'pt', 'name', 'Entidade Reguladora da SaĆŗde'),
(134713, 106508, 'pt', 'name', 'Secretaria Regional de Agricultura e Pescas'),
(134714, 106509, 'pt', 'name', 'Unidade de Investigação Educação e Desenvolvimento'),
(134715, 106510, 'pt', 'name', 'Instituto de Cultura e LĆ­ngua Portuguesa'),
(134716, 106511, 'no_lang_code', 'name', 'AdvanceCare Gestão em Saúde (Portugal)'),
(134717, 106512, 'no_lang_code', 'name', 'Consulmark 2 Estudos de Mercado e Trabalho de Campo (Portugal)'),
(134718, 106513, 'pt', 'name', 'Centro CiĆŖncia Viva de Lagos'),
(134719, 106514, 'pt', 'name', 'Arquivo Nacional da Torre do Tombo'),
(134720, 106515, 'en', 'name', 'SFCOLAB - Smart Farm Collaborative Laboratory'),
(134721, 106516, 'pt', 'name', 'S. ENERGIA – AgĆŖncia Regional de Energia para os Concelhos do Barreiro, Moita e Montijo'),
(134722, 106517, 'no_lang_code', 'name', 'Radosys Atlantic (Portugal)'),
(134723, 106518, 'pt', 'name', 'Santa Casa da Misericórdia de Serpa'),
(134724, 106519, 'pt', 'name', 'Autoridade de Gestão do Programa Operacional Competitividade e Internacionalização'),
(134725, 106520, 'pt', 'name', 'Parques de Sintra Monte da Lua SA'),
(134726, 106521, 'en', 'name', 'Publishing House ā€œAkademperiodykaā€ of the National Academy of Sciences of Ukraine'),
(134727, 106521, 'uk', 'name', 'ВиГавничий Гім «АкаГемперіоГика» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(134728, 106522, 'en', 'name', 'Toxicology Excellence for Risk Assessment'),
(134729, 106523, 'pt', 'name', 'Açores Direção Regional da Educação'),
(134730, 106524, 'no_lang_code', 'name', 'Público Comunicação Social (Portugal)'),
(134731, 106525, 'en', 'name', 'Federal Polytechnic Ugep'),
(134732, 106526, 'pt', 'name', 'Nonagon - Parque de CiĆŖncia e Tecnologia de SĆ£o Miguel'),
(134733, 106527, 'pt', 'name', 'Centro CiĆŖncia Viva de Tavira'),
(134734, 106528, 'no_lang_code', 'name', 'Alcon Portugal Produtos e Equipamentos Oftalmológicos (Portugal)'),
(134735, 106529, 'no_lang_code', 'name', 'I-Sensis Perfume Design (Portugal)'),
(134736, 106530, 'en', 'name', 'TransDeN Lab'),
(134737, 106531, 'pt', 'name', 'Centro Interdisciplinar de Estudos de GƩnero'),
(134738, 106532, 'no_lang_code', 'name', 'Gades Training (Portugal)'),
(134739, 106533, 'en', 'name', 'Margaret Lawrence University'),
(134740, 106534, 'en', 'name', 'Czech Technical University in Prague'),
(134741, 106534, 'cs', 'name', 'ČeskĆ© vysokĆ© učenĆ­ technickĆ© v Praze'),
(134742, 106535, 'fr', 'name', 'Institut de Science des DonnƩes de Montpellier'),
(134743, 106536, 'no_lang_code', 'name', 'Jorge Evandro Alves Unip (Portugal)'),
(134744, 106537, 'no_lang_code', 'name', 'REABE Centro de Reabilitação de Benfica (Portugal)'),
(134745, 106538, 'no_lang_code', 'name', 'SPEMD Eventos CientĆ­ficos e Culturais (Portugal)'),
(134746, 106539, 'pt', 'name', 'Centro de Investigação em Saúde Pública'),
(134747, 106540, 'pt', 'name', 'Comissão de Coordenação e Desenvolvimento Regional do Centro'),
(134748, 106541, 'pt', 'name', 'Ribadial Clƭnica de DiƔlise de SantarƩm (Portugal)'),
(134749, 106542, 'en', 'name', 'Revvity (United States)'),
(134750, 106543, 'en', 'name', 'Sudden Cardiac Arrest UK'),
(134751, 106544, 'pt', 'name', 'Laboratório de Ɠptica Lasers e Sistemas'),
(134752, 106545, 'en', 'name', 'Federation of Orthopaedic Trainees in Europe'),
(134753, 106546, 'pt', 'name', 'Centro de Ciências e Tecnologias da Engenharia Mecânica e Aeroespacial'),
(134754, 106547, 'pt', 'name', 'ATEVA - Associação Técnica dos Viticultores do Alentejo'),
(134755, 106548, 'pt', 'name', 'Centro da Ciências e Tecnologias Mecânicas e Aeroespaciais'),
(134756, 106549, 'pt', 'name', 'Arquivo Municipal de Lisboa'),
(134757, 106550, 'en', 'name', 'Mongolian National Institute for Educational Research'),
(134758, 106550, 'mn', 'name', 'Š‘ŠžŠ»Š¾Š²ŃŃ€Š¾Š»Ń‹Š½ Š”ŃƒŠ“Š°Š»Š³Š°Š°Š½Ń‹ Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Š„ŅÆŃ€ŃŃŠ»ŃŠ½'),
(134759, 106551, 'pt', 'name', 'Ordem dos MƩdicos Dentistas'),
(134760, 106552, 'pt', 'name', 'Parque Tecnológico de Ɠbidos'),
(134761, 106553, 'pt', 'name', 'Laboratório Nacional de Investigação VeterinÔria'),
(134762, 106554, 'pt', 'name', 'CiĆŖncia Viva'),
(134763, 106555, 'en', 'name', 'Kishoreganj University'),
(134764, 106555, 'bn', 'name', 'ą¦•ą¦æą¦¶ą§‹ą¦°ą¦—ą¦žą§ą¦œ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(134765, 106556, 'pt', 'name', 'Unidade de Investigação Vidro e Cerâmica para as Artes'),
(134766, 106557, 'pt', 'name', 'Centro de MatemƔtica'),
(134767, 106558, 'pt', 'name', 'Instituto de Filosofia'),
(134768, 106559, 'pt', 'name', 'Unidade Local de SaĆŗde Santa Maria'),
(134769, 106560, 'pt', 'name', 'Biblioteca do Conhecimento Online'),
(134770, 106561, 'no_lang_code', 'name', 'Startup Madeira More Than Ideas (Portugal)'),
(134771, 106562, 'en', 'name', 'Central Clinical Hospital'),
(134772, 106562, 'pl', 'name', 'Centralny Szpital Kliniczny Ministerstwa Spraw Wewnętrznych'),
(134773, 106563, 'pt', 'name', 'LaserLab Portugal'),
(134774, 106564, 'pt', 'name', 'Centro de Investigação em Sistemas Electromecatrónicos'),
(134775, 106565, 'en', 'name', 'Institute for High Energy Physics'),
(134776, 106566, 'pt', 'name', 'PresidĆŖncia da RepĆŗblica Portuguesa'),
(134777, 106567, 'no_lang_code', 'name', 'Riasearch (Portugal)'),
(134778, 106568, 'pt', 'name', 'Sociedade Portuguesa de Cefaleias'),
(134779, 106569, 'pt', 'name', 'Republica Portuguesa Direção-Geral do Património Cultural'),
(134780, 106570, 'pt', 'name', 'Laboratório da Cor'),
(134781, 106571, 'no_lang_code', 'name', 'Omni – Aviação e Tecnologia (Portugal)'),
(134782, 106572, 'pt', 'name', 'Agência para a Competitividade e Inovação IP'),
(134783, 106573, 'pt', 'name', 'Modatex Centro de Formação Profissional da Indústria Têxtil VestuÔrio Confecção e Lanifícios'),
(134784, 106574, 'pt', 'name', 'Sociedade Portuguesa de Cerâmica e Vidro'),
(134785, 106575, 'en', 'name', 'CMMI – Cyprus Marine & Maritime Institute (Cyprus)'),
(134786, 106576, 'no_lang_code', 'name', 'Associação Centro de Medicina P5 (Portugal)'),
(134787, 106577, 'no_lang_code', 'name', 'EuromƩdice EdiƧƵes MƩdicas (Portugal)'),
(134788, 106578, 'en', 'name', 'The Assam Royal Global University'),
(134789, 106579, 'no_lang_code', 'name', 'Bonera Group (Portugal)'),
(134790, 106580, 'en', 'name', 'International Research Association of Feed Technology'),
(134791, 106580, 'de', 'name', 'Internationale Forschungsgemeinschaft Futtermitteltechnik'),
(134792, 106581, 'no_lang_code', 'name', 'Krantiguru Shyamji Krishna Verma Kachchh University'),
(134793, 106581, 'en', 'name', 'ąŖ•ą«ąŖ°ąŖ¾ąŖ‚ąŖ¤ąŖæąŖ—ą«ąŖ°ą« ąŖ¶ą«ąŖÆąŖ¾ąŖ®ąŖœą«€ ąŖ•ą«ƒąŖ·ą«ąŖ£ąŖµąŖ°ą«ąŖ®ąŖ¾ ąŖ•ąŖšą«ąŖ› ąŖµąŖæąŖ¶ą«ąŖµąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖ²ąŖÆ'),
(134794, 106581, 'te', 'name', 'ą°•ą±ą°°ą°¾ą°‚ą°¤ą°æą°—ą±ą°°ą±‚ ą°¶ą±ą°Æą°¾ą°®ą±ą°œą°æ ą°•ą±ƒą°·ą±ą°£ ą°µą±†ą°°ą±ą°® ą°•ą°¾ą°šą±ą°šą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(134795, 106582, 'no_lang_code', 'name', 'FC PaƧos de Ferreira (Portugal)'),
(134796, 106583, 'pt', 'name', 'Sociedade Portuguesa de MatemƔtica'),
(134797, 106584, 'pl', 'name', 'Akademia Ignatianum w Krakowie'),
(134798, 106584, 'en', 'name', 'Ignatianum University in Cracow'),
(134799, 106585, 'en', 'name', 'Osaka International Cancer Institute'),
(134800, 106585, 'ja', 'name', 'å¤§é˜Ŗå›½éš›ćŒć‚“ē ”ē©¶ę‰€'),
(134801, 106586, 'en', 'name', 'Knowledge to Innovate Professions in Tourism'),
(134802, 106587, 'en', 'name', 'State Key Laboratory of Polymer Materials Engineering'),
(134803, 106587, 'zh', 'name', 'é«˜åˆ†å­ęę–™å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(134804, 106588, 'en', 'name', 'National Supercomputer Center in Guangzhou'),
(134805, 106588, 'zh', 'name', 'äø­å±±å¤§å­¦å›½å®¶č¶…ēŗ§č®”ē®—å¹æå·žäø­åæƒ'),
(134806, 106589, 'pt', 'name', 'Entidade Reguladora dos ServiƧos de Ɓguas e Resƭduos'),
(134807, 106590, 'en', 'name', 'State University of Campinas (UNICAMP)'),
(134808, 106590, 'pt', 'name', 'Universidade Estadual de Campinas (UNICAMP)'),
(134809, 106591, 'no_lang_code', 'name', 'Tetra Pak (Sweden)'),
(134810, 106592, 'en', 'name', 'Tio Business School'),
(134811, 106593, 'en', 'name', 'In Vivo Arthropod Security Facility'),
(134812, 106594, 'fr', 'name', 'Laboratoire des pathogènes et de l''immunité de l''hÓte'),
(134813, 106594, 'en', 'name', 'Laboratory of Pathogens and Host Immunity'),
(134814, 106595, 'en', 'name', 'Division of Atmospheric and Geospace Sciences'),
(134815, 106596, 'no_lang_code', 'name', 'Biogen (United States)'),
(134816, 106597, 'pt', 'name', 'CĆ¢mara Municipal de Matosinhos'),
(134817, 106598, 'en', 'name', 'Kazakh Academy of Transport and Communications named after M.Tynyshpaev'),
(134818, 106598, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ транспорта Šø ŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹ имени М. Š¢Ń‹Š½Ń‹ŃˆŠæŠ°ŠµŠ²Š°'),
(134819, 106598, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› көлік және ŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŃ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(134820, 106599, 'en', 'name', 'State University of Milagro'),
(134821, 106599, 'es', 'name', 'Universidad Estatal de Milagro'),
(134822, 106600, 'lv', 'name', 'Biznesa, mākslas un tehnoloģiju augstskola RISEBA'),
(134823, 106600, 'en', 'name', 'RISEBA University of Applied Sciences'),
(134824, 106601, 'no_lang_code', 'name', 'Bloom Up (Portugal)'),
(134825, 106602, 'pt', 'name', 'Biblioteca UniversitÔria João Paulo II'),
(134826, 106603, 'pt', 'name', 'Sociedade Portuguesa de Botânica'),
(134827, 106604, 'no_lang_code', 'name', 'Oracle (Portugal)'),
(134828, 106605, 'fr', 'name', 'Interactions hotes-vecteurs-parasites-environnement dans les maladies tropicales nƩgligƩes dues aux trypanosomatides'),
(134829, 106606, 'pt', 'name', 'Infraestrutura de Investigação para a Biomassa e a Bioenergia'),
(134830, 106607, 'no_lang_code', 'name', 'Raporal (Portugal)'),
(134831, 106608, 'en', 'name', 'Laboratory for Atmospheric and Space Physics'),
(134832, 106609, 'en', 'name', 'All India Institute of Medical Sciences Bhopal'),
(134833, 106610, 'pt', 'name', 'FÔbrica Centro Ciência Viva de Aveiro'),
(134834, 106611, 'pt', 'name', 'Centro Cultural de BelƩm'),
(134835, 106612, 'no_lang_code', 'name', 'Logiser (Portugal)'),
(134836, 106613, 'en', 'name', 'Science and Technology Department of Ningxia'),
(134837, 106613, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(134838, 106614, 'pt', 'name', 'Centro de Empresas Inovadoras'),
(134839, 106615, 'no_lang_code', 'name', 'MSD (Portugal)'),
(134840, 106616, 'pt', 'name', 'Secretaria Regional do Turismo e Cultura'),
(134841, 106617, 'pt', 'name', 'Centro Interdisciplinar de CiĆŖncias Sociais'),
(134842, 106618, 'no_lang_code', 'name', 'Tecnifar (Portugal)'),
(134843, 106619, 'pt', 'name', 'Madeira N-Lincs'),
(134844, 106620, 'pt', 'name', 'Centro de Investigação para Tecnologias Interactivas'),
(134845, 106621, 'pt', 'name', 'Sociedade Portuguesa de Medicina Física e Reabilitação'),
(134846, 106622, 'pt', 'name', 'Escola Superior de Educação de Paula Frassinetti'),
(134847, 106623, 'pt', 'name', 'Sociedade Portuguesa de Entomologia'),
(134848, 106624, 'pt', 'name', 'Confederação do Comércio e Serviços de Portugal'),
(134849, 106625, 'no_lang_code', 'name', 'Bondalti (Portugal)'),
(134850, 106626, 'de', 'name', 'Institut für Holztechnologie Dresden'),
(134851, 106627, 'en', 'name', 'National Research Nuclear University MEPhI'),
(134852, 106627, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃŠ“ŠµŃ€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ МИФИ'),
(134853, 106628, 'pt', 'name', 'Instituto de Literatura Comparada Margarida Losa'),
(134854, 106629, 'no_lang_code', 'name', 'Oracle (United States)'),
(134855, 106630, 'pt', 'name', 'CoLAB BIOREF'),
(134856, 106631, 'no_lang_code', 'name', 'Joaquim Chaves SaĆŗde (Portugal)'),
(134857, 106632, 'en', 'name', 'Centre for Neuroscience and Cell Biology'),
(134858, 106632, 'pt', 'name', 'Centro de NeurociĆŖncias e Biologia Celular'),
(134859, 106633, 'no_lang_code', 'name', 'J Garraio & Ca (Portugal)'),
(134860, 106634, 'pt', 'name', 'Federação Portuguesa de Espeleologia'),
(134861, 106635, 'en', 'name', 'Czech Academy of Sciences, Nuclear Physics Institute'),
(134862, 106635, 'cs', 'name', 'Ústav jaderné fyziky AV ČR'),
(134863, 106636, 'en', 'name', 'Alnukhba University College'),
(134864, 106636, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© النخبة الجامعة'),
(134865, 106637, 'pt', 'name', 'Quercus - Associação Nacional de Conservação da Natureza'),
(134866, 106638, 'uz', 'name', 'Toshkent Amaliy Fanlar Universiteti'),
(134867, 106638, 'en', 'name', 'University of Tashkent for Applied Sciences'),
(134868, 106638, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Университет ŠŸŃ€ŠøŠŗŠ»Š°Š“Š½Ń‹Ń… ŠŠ°ŃƒŠŗ'),
(134869, 106639, 'en', 'name', 'Sri Dev Suman Uttarakhand University'),
(134870, 106639, 'mr', 'name', 'Sri Dev Suman Uttarakhand Vishwavidyalay'),
(134871, 106640, 'pt', 'name', 'Sociedade Portuguesa de Radiologia e Medicina Nuclear'),
(134872, 106641, 'no_lang_code', 'name', 'Escola de Negócios das Beiras (Portugal)'),
(134873, 106642, 'de', 'name', 'Tumor Zentrum Aargau'),
(134874, 106643, 'no_lang_code', 'name', 'Laboratoires Bailleul Portugal, S.A. (Portugal)'),
(134875, 106644, 'pt', 'name', 'Centro CiĆŖncia Viva de Vila do Conde'),
(134876, 106645, 'pt', 'name', 'Ordem dos Engenheiros'),
(134877, 106646, 'pt', 'name', 'Centro de Estudos Europeus'),
(134878, 106647, 'no_lang_code', 'name', 'Valmet (Finland)'),
(134879, 106648, 'no_lang_code', 'name', 'Whiteboard (Portugal)'),
(134880, 106649, 'no_lang_code', 'name', 'Findmore Consulting (Portugal)'),
(134881, 106650, 'en', 'name', 'Ministry of Health and Family Welfare'),
(134882, 106651, 'en', 'name', 'CoLAB ForestWISE'),
(134883, 106652, 'en', 'name', 'New England School of Acupuncture'),
(134884, 106653, 'en', 'name', 'Hochschule für Gesundheit - University of Applied Sciences'),
(134885, 106653, 'de', 'name', 'Hochschule für Gesundheit Bochum'),
(134886, 106654, 'es', 'name', 'Instituto Tecnológico Superior de Tlaxco'),
(134887, 106655, 'pt', 'name', 'Centro de Investigação em Educação de Adultos e Intervenção ComunitÔria'),
(134888, 106656, 'fr', 'name', 'Centre National pour la Recherche Scientifique et Technique (CNRST)'),
(134889, 106656, 'en', 'name', 'National Center for Scientific and Technical Research (CNRST)'),
(134890, 106656, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ للبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠ'),
(134891, 106657, 'ms', 'name', 'Jabatan Muzium Sarawak'),
(134892, 106657, 'en', 'name', 'Sarawak Museum Department'),
(134893, 106658, 'pt', 'name', 'CUF Infante Santo Hospital'),
(134894, 106659, 'pt', 'name', 'Serviço Regional de Proteção Civil e Bombeiros dos Açores'),
(134895, 106660, 'de', 'name', 'Institut für Angewandte Manuelle Therapie'),
(134896, 106660, 'en', 'name', 'Institute for Applied Manual Therapy'),
(134897, 106661, 'en', 'name', 'The Bible Seminary'),
(134898, 106662, 'pt', 'name', 'Centro de Investigação e Desenvolvimento em Ciências Jurídicas Ratio Legis'),
(134899, 106663, 'es', 'name', 'Universidad de las Fuerzas Armadas ESPE'),
(134900, 106663, 'en', 'name', 'University of the Armed Forces (ESPE)'),
(134901, 106664, 'pt', 'name', 'Sociedade Portuguesa de EstatĆ­stica'),
(134902, 106665, 'no_lang_code', 'name', 'WEGEURO Indústria Eléctrica (Portugal)'),
(134903, 106666, 'pt', 'name', 'Centro de Materiais'),
(134904, 106667, 'pt', 'name', 'Conselho Nacional de Ɖtica para as CiĆŖncias da Vida'),
(134905, 106668, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Chimie de Montpellier'),
(134906, 106669, 'pt', 'name', 'Centro de Estudos do Território Cultura e Desenvolvimento'),
(134907, 106670, 'pt', 'name', 'Unidade Local de SaĆŗde de Braga'),
(134908, 106671, 'pt', 'name', 'Associação Portuguesa de Estudantes de Agricultura'),
(134909, 106672, 'no_lang_code', 'name', 'Costa NƔutica (Portugal)'),
(134910, 106673, 'no_lang_code', 'name', 'Tecnoveritas Serviços de Engenharia e Sistemas Tecnológicos (Portugal)'),
(134911, 106674, 'pt', 'name', 'Centro de História de Arte e Investigação Artística'),
(134912, 106675, 'en', 'name', '3B''s Research Group'),
(134913, 106676, 'es', 'name', 'Instituto Nacional de Capacitación Profesional'),
(134914, 106677, 'no_lang_code', 'name', 'FI Group (Portugal)'),
(134915, 106678, 'en', 'name', 'Research Institute for Environmental Studies'),
(134916, 106679, 'no_lang_code', 'name', 'AstraZeneca (Portugal)'),
(134917, 106680, 'de', 'name', 'Hochschule für Angewandte Wissenschaften Burgenland'),
(134918, 106680, 'en', 'name', 'University of Applied Sciences Burgenland'),
(134919, 106681, 'pt', 'name', 'Centro de Investigação em Educação'),
(134920, 106682, 'pt', 'name', 'Sociedade Portuguesa de QuĆ­mica'),
(134921, 106683, 'en', 'name', 'Sun Yat-sen University'),
(134922, 106683, 'zh', 'name', '中山大学'),
(134923, 106684, 'pt', 'name', 'Casa das Artes'),
(134924, 106685, 'pt', 'name', 'Sociedade das Ciências Médicas de Lisboa'),
(134925, 106686, 'no_lang_code', 'name', 'Affidea Portugal (Portugal)'),
(134926, 106687, 'pt', 'name', 'Sociedade Portuguesa de Terapia Familiar'),
(134927, 106688, 'pt', 'name', 'Centro de CiĆŖncia e Tecnologia do Ambiente e do Mar'),
(134928, 106689, 'no_lang_code', 'name', 'MarSensing (Portugal)'),
(134929, 106690, 'pt', 'name', 'Mosteiro dos Jerónimos'),
(134930, 106691, 'no_lang_code', 'name', 'Atelier de Lisboa (Portugal)'),
(134931, 106692, 'en', 'name', 'Seribiotechnology Research Laboratory'),
(134932, 106693, 'pt', 'name', 'Aletheia - Associação Científica e Cultural'),
(134933, 106694, 'en', 'name', 'European Marine Biological Resource Centre Portugal'),
(134934, 106695, 'en', 'name', 'School of Freudian Psychoanalysis'),
(134935, 106695, 'it', 'name', 'Scuola di Psicanalisi Freudiana'),
(134936, 106696, 'en', 'name', 'Ministry of Education'),
(134937, 106696, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ©'),
(134938, 106697, 'pt', 'name', 'Centro Operativo e Tecnológico Hortofrutícola Nacional'),
(134939, 106698, 'no_lang_code', 'name', 'NaMLab (Germany)'),
(134940, 106699, 'en', 'name', 'Regentropfen University College'),
(134941, 106700, 'no_lang_code', 'name', 'Skyros Congressos (Portugal)'),
(134942, 106701, 'no_lang_code', 'name', 'Lightning Packs (United States)'),
(134943, 106702, 'en', 'name', 'Jamalpur Science and Technology University'),
(134944, 106702, 'bn', 'name', 'জামালপুর ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(134945, 106703, 'pt', 'name', 'Instituto Superior de Economia e Gestão Campus Tecnológico e Nuclear'),
(134946, 106704, 'pt', 'name', 'Comunidade Intermunicipal do Alentejo Litoral'),
(134947, 106705, 'es', 'name', 'Universidad para la Cooperación Internacional'),
(134948, 106705, 'en', 'name', 'University for International Cooperation'),
(134949, 106706, 'pt', 'name', 'Instituto Europeu'),
(134950, 106707, 'pt', 'name', 'Instituto de Comunicação da Nova'),
(134951, 106708, 'pt', 'name', 'Centro de Investigação em Educação e Psicologia'),
(134952, 106709, 'pt', 'name', 'Entidade Reguladora para a Comunicação Social'),
(134953, 106710, 'no_lang_code', 'name', 'MBA Lisboa (Portugal)'),
(134954, 106711, 'en', 'name', 'Spinal Injuries Association'),
(134955, 106712, 'pt', 'name', 'NĆŗcleo Empresarial da RegiĆ£o de Ɖvora'),
(134956, 106713, 'no_lang_code', 'name', 'CBRAIN Group'),
(134957, 106714, 'no_lang_code', 'name', 'Pfizer (United States)'),
(134958, 106715, 'pt', 'name', 'Centro de Estudos de Sociologia e EstƩtica Musical'),
(134959, 106716, 'en', 'name', '65th Force Support Squadron'),
(134960, 106717, 'pt', 'name', 'Museu MonogrƔfico de Conimbriga'),
(134961, 106718, 'no_lang_code', 'name', 'NestlƩ (Switzerland)'),
(134962, 106719, 'en', 'name', 'Oxford Immunotec (United Kingdom)'),
(134963, 106720, 'pt', 'name', 'OPEN - Associação para Oportunidades Específicas de Negócio'),
(134964, 106721, 'no_lang_code', 'name', 'Amkor Technology (United States)'),
(134965, 106722, 'pt', 'name', 'Sociedade Portuguesa de Hematologia'),
(134966, 106723, 'en', 'name', 'Institute of Physics'),
(134967, 106724, 'pt', 'name', 'Sociedade Portuguesa de Estomatologia e Medicina DentƔria'),
(134968, 106725, 'pt', 'name', 'Sociedade Portuguesa de Investigação em Educação MatemÔtica'),
(134969, 106726, 'fr', 'name', 'Laboratoire de Chimie Agro-Industrielle'),
(134970, 106726, 'en', 'name', 'Laboratory of Agro-Industrial Chemistry'),
(134971, 106727, 'en', 'name', 'MyFace Clinic'),
(134972, 106728, 'pt', 'name', 'Marinha Portuguesa'),
(134973, 106729, 'no_lang_code', 'name', 'Almedina, S.A. (Portugal)'),
(134974, 106730, 'pt', 'name', 'Centro CiĆŖncia Viva de Estremoz'),
(134975, 106731, 'pt', 'name', 'Cinemateca Portuguesa Museu do Cinema'),
(134976, 106732, 'pt', 'name', 'Escola de Artes do Norte Alentejano'),
(134977, 106733, 'pt', 'name', 'Centimfe'),
(134978, 106734, 'en', 'name', 'University of Torbat-e Jam'),
(134979, 106734, 'ar', 'name', 'دانؓگاه ŲŖŲ±ŲØŲŖ Ų¬Ų§Ł…'),
(134980, 106735, 'es', 'name', 'FundaQuim'),
(134981, 106736, 'en', 'name', 'Luxoft (Germany)'),
(134982, 106736, 'de', 'name', 'Luxoft GmbH'),
(134983, 106737, 'en', 'name', 'Ho Chi Minh City University of Foreign Languages and Information Technology'),
(134984, 106738, 'pt', 'name', 'Sociedade Portuguesa de Psicoterapias Construtivistas'),
(134985, 106739, 'pt', 'name', 'Ordem dos MƩdicos VeterinƔrios'),
(134986, 106740, 'en', 'name', 'Portuguese microBiological Resources Center Network'),
(134987, 106741, 'fr', 'name', 'Gestion de l''Eau, Acteurs, Usages'),
(134988, 106742, 'no_lang_code', 'name', 'Sociedade MƩdica de Entrecampos (Portugal)'),
(134989, 106743, 'en', 'name', 'North Caucasian State Humanitarian Technological Academy'),
(134990, 106743, 'ru', 'name', 'Деверо-ŠšŠ°Š²ŠŗŠ°Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(134991, 106744, 'no_lang_code', 'name', 'Zimmer (Portugal)'),
(134992, 106745, 'de', 'name', 'Novetus GmbH (Austria)'),
(134993, 106746, 'en', 'name', 'EGI'),
(134994, 106747, 'pt', 'name', 'Associação Empresarial da Região de Viseu'),
(134995, 106748, 'pt', 'name', 'Centro de Física e Investigação Tecnológica'),
(134996, 106749, 'pt', 'name', 'Caritas Diocesana de Coimbra'),
(134997, 106750, 'pt', 'name', 'CoLAB VORTEX'),
(134998, 106751, 'pt', 'name', 'Centro de Intervenção Para o Desenvolvimento Amílcar Cabral'),
(134999, 106752, 'pt', 'name', 'Unidade de I e D em AnƔlise de Ciclo de Vida de Produtos e Componentes Industriais Soldados'),
(135000, 106753, 'en', 'name', 'Smartgridslab'),
(135001, 106754, 'es', 'name', 'Universidad Antropológica de Guadalajara'),
(135002, 106755, 'pt', 'name', 'Serviço de Assistência Médico-Social'),
(135003, 106756, 'no_lang_code', 'name', 'DIGESTAID (Portugal)'),
(135004, 106757, 'no_lang_code', 'name', 'Escrever Escrever (Portugal)'),
(135005, 106758, 'no_lang_code', 'name', 'Maldral Scientia (Portugal)'),
(135006, 106759, 'no_lang_code', 'name', 'Nestle (Portugal)'),
(135007, 106760, 'no_lang_code', 'name', 'Arsenal do Alfeite (Portugal)'),
(135008, 106761, 'pt', 'name', 'SANJOTEC - Centro Empresarial e Tecnológico de São João da Madeira'),
(135009, 106762, 'no_lang_code', 'name', 'Daiichi-Sankyo (Japan)'),
(135010, 106762, 'ja', 'name', 'ē¬¬äø€äø‰å…±ę Ŗå¼ä¼šē¤¾'),
(135011, 106763, 'en', 'name', 'Institute for Theoretical Physics Amsterdam'),
(135012, 106764, 'no_lang_code', 'name', 'SGS Academy Portugal (Portugal)'),
(135013, 106765, 'no_lang_code', 'name', 'Flatlantic (Portugal)'),
(135014, 106766, 'pt', 'name', 'Centro de Investigação em MatemÔtica e Aplicações'),
(135015, 106767, 'id', 'name', 'STAI Al-Falah Cicalengka'),
(135016, 106768, 'pt', 'name', 'Sociedade Portuguesa de Virologia'),
(135017, 106769, 'no_lang_code', 'name', 'Chrysea Labs (Portugal)'),
(135018, 106770, 'es', 'name', 'Universidad Tecnológica de Chile INACAP'),
(135019, 106771, 'no_lang_code', 'name', 'Congento - Consortium for Genetically Tractable Organisms'),
(135020, 106772, 'no_lang_code', 'name', 'Corte Velada (Portugal)'),
(135021, 106773, 'pt', 'name', 'Escola de Tecnologias Inovação e Criação'),
(135022, 106774, 'pt', 'name', 'Biblioteca Municipal Almeida Garrett'),
(135023, 106775, 'en', 'name', 'Luxoft (Switzerland)'),
(135024, 106776, 'en', 'name', 'Neu-Ulm University of Applied Sciences'),
(135025, 106777, 'no_lang_code', 'name', 'Servidor de Apontadores Portugueses Online (Portugal)'),
(135026, 106778, 'no_lang_code', 'name', 'SEMTDistribuição (Portugal)'),
(135027, 106779, 'en', 'name', 'Santiago University of Technology'),
(135028, 106779, 'es', 'name', 'Universidad Tecnológica de Santiago'),
(135029, 106780, 'no_lang_code', 'name', 'Lima Cabrita SGPS S.A. (Portugal)'),
(135030, 106781, 'pt', 'name', 'Investigação em Ciências Sociais e Gestão'),
(135031, 106782, 'pt', 'name', 'Autoridade para as CondiƧƵes do Trabalho'),
(135032, 106783, 'de', 'name', 'Technologie- und Förderzentrum im Kompetenzzentrum für Nachwachsende Rohstoffe'),
(135033, 106783, 'en', 'name', 'Technology and Support Centre in the Centre of Excellence for Renewable Resources'),
(135034, 106784, 'en', 'name', 'National University of Entre Rios'),
(135035, 106784, 'es', 'name', 'Universidad Nacional de Entre RĆ­os'),
(135036, 106785, 'en', 'name', 'PT OPENSCREEN National Infrastructure for Chemical Biology and Genetics'),
(135037, 106786, 'en', 'name', 'Satellite Application Center for Ecology and Environment'),
(135038, 106786, 'zh', 'name', 'ē”Ÿę€ēŽÆå¢ƒéƒØå«ę˜ŸēŽÆå¢ƒåŗ”ē”Øäø­åæƒ'),
(135039, 106787, 'no_lang_code', 'name', 'Metablue Solution (Portugal)'),
(135040, 106788, 'pt', 'name', 'Sociedade Portuguesa de Patologia Animal'),
(135041, 106789, 'no_lang_code', 'name', 'MOG Technologies (Portugal)'),
(135042, 106790, 'pt', 'name', 'Instituto de Investigação Inovação e Desenvolvimento'),
(135043, 106791, 'no_lang_code', 'name', 'UltraWise (Portugal)'),
(135044, 106792, 'no_lang_code', 'name', 'Archeofactu (Portugal)'),
(135045, 106793, 'pt', 'name', 'CĆ¢mara Municipal de Albergaria'),
(135046, 106794, 'pt', 'name', 'Sociedade Portuguesa de Ciências Cosmetológicas'),
(135047, 106795, 'pt', 'name', 'ClĆ­nica do Bom Jesus'),
(135048, 106796, 'no_lang_code', 'name', 'MyFace Academy (Portugal)'),
(135049, 106797, 'en', 'name', 'Ukrainian Research Institute of Design and Ergonomics of the National Aviation University'),
(135050, 106797, 'uk', 'name', 'Š£ŠŗŃ€ŠŠ”Š† ДЕ ŠŠŠ£'),
(135051, 106798, 'no_lang_code', 'name', 'AbbVie (United States)'),
(135052, 106799, 'pt', 'name', 'Centro de Psicologia Aplicada do ExƩrcito'),
(135053, 106800, 'pt', 'name', 'Centro de Documentação 25 de Abril'),
(135054, 106801, 'no_lang_code', 'name', 'Pioneer Europe NV (Portugal)'),
(135055, 106802, 'pt', 'name', 'Universidade de Coimbra Arquivo'),
(135056, 106803, 'de', 'name', 'Carl-Thiem-Klinikum Cottbus'),
(135057, 106804, 'pt', 'name', 'Sociedade Portuguesa de Disfunção Temporomandibular e Dor Orofacial'),
(135058, 106805, 'en', 'name', 'Institute for Regenerative Medicine & Biotherapy'),
(135059, 106806, 'pt', 'name', 'Direção Regional dos Recursos Florestais'),
(135060, 106807, 'en', 'name', 'International Institute of Management and Business'),
(135061, 106807, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(135062, 106808, 'no_lang_code', 'name', 'Biogen (Portugal)'),
(135063, 106809, 'en', 'name', 'Portuguese Nuclear Magnetic Resonance Network'),
(135064, 106810, 'pt', 'name', 'Centro de Estudos JudiciƔrios'),
(135065, 106811, 'pt', 'name', 'Centro Nacional de Cultura'),
(135066, 106812, 'en', 'name', 'Tashkent Islamic University'),
(135067, 106813, 'pt', 'name', 'Associação Fibrenamics'),
(135068, 106814, 'pt', 'name', 'Centro de Investigação em Ambiente e Sustentabilidade'),
(135069, 106815, 'pt', 'name', 'Companhia de DanƧa ContemporĆ¢nea de Ɖvora'),
(135070, 106816, 'pt', 'name', 'NET4CO2'),
(135071, 106817, 'en', 'name', 'English Language Centre'),
(135072, 106818, 'pt', 'name', 'Laboratório de Aceleradores e Difracção de Raios-X'),
(135073, 106819, 'pt', 'name', 'CĆ¢mara Municipal da Amadora'),
(135074, 106820, 'en', 'name', 'Sarov Institute of Physics and Technology'),
(135075, 106820, 'ru', 'name', 'Даровский Š³Š¾ŃŃƒŠ“арственный физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(135076, 106821, 'pt', 'name', 'Autoridade Antidopagem de Portugal'),
(135077, 106822, 'pt', 'name', 'Museu Carlos Machado'),
(135078, 106823, 'pt', 'name', 'Fundação ÁrpÔd Szenes Vieira da Silva'),
(135079, 106824, 'pt', 'name', 'Vigararia de Oeiras'),
(135080, 106825, 'pt', 'name', 'Centro de Investigação e Estudos João de Deus'),
(135081, 106826, 'pt', 'name', 'Data CoLAB'),
(135082, 106827, 'en', 'name', 'Computer and Robot Vision Laboratory'),
(135083, 106828, 'pt', 'name', 'Unidade de Investigação e Desenvolvimento em Engenharia Mecânica e Industrial'),
(135084, 106829, 'no_lang_code', 'name', 'Lundbeck (Denmark)'),
(135085, 106830, 'fr', 'name', 'Centre Ellipse'),
(135086, 106831, 'en', 'name', 'Charles University'),
(135087, 106831, 'sk', 'name', 'Univerzita Karlova'),
(135088, 106832, 'pt', 'name', 'Sindicato dos BancƔrios do Centro'),
(135089, 106833, 'en', 'name', 'Merck & Co., Inc., Rahway, NJ, USA (United States)'),
(135090, 106834, 'pt', 'name', 'Infraestrutura Nacional de Investigação para Energia Solar de Concentração'),
(135091, 106835, 'pt', 'name', 'Centro de Estudos Farmaceuticos'),
(135092, 106836, 'pt', 'name', 'Sociedade Portuguesa de Medicina Laboratorial'),
(135093, 106837, 'pt', 'name', 'Centro de Investigação em Ciências Geo-Espaciais'),
(135094, 106838, 'pt', 'name', 'Fraterna - Centro ComunitÔrio de Solidariedade e Integração Social'),
(135095, 106839, 'pt', 'name', 'Sindicato dos Enfermeiros Portugueses'),
(135096, 106840, 'no_lang_code', 'name', 'ViiV Healthcare (United Kingdom)'),
(135097, 106841, 'pt', 'name', 'Sociedade Portuguesa de Biomecânica'),
(135098, 106842, 'en', 'name', 'Xi''an Jiaotong University'),
(135099, 106842, 'zh', 'name', 'č„æå®‰äŗ¤é€šå¤§å­¦'),
(135100, 106843, 'pt', 'name', 'Açores Direção Regional da Saúde'),
(135101, 106844, 'en', 'name', 'The Ecclesiastical History Society'),
(135102, 106845, 'pt', 'name', 'Conselho Coordenador dos Institutos Superiores PolitƩcnicos'),
(135103, 106846, 'en', 'name', 'Dentavis Avis Clinic'),
(135104, 106846, 'pt', 'name', 'Dentavis ClĆ­nica de Avis (Portugal)'),
(135105, 106847, 'pt', 'name', 'Escola de Pós-Graduação em Saúde e Gestão'),
(135106, 106848, 'pt', 'name', 'Centro de Investigacao em Recursos Naturais'),
(135107, 106849, 'pt', 'name', 'Oftalcare Clínica Oftalmológica (Portugal)'),
(135108, 106849, 'en', 'name', 'Oftalcare Eye Clinic'),
(135109, 106850, 'es', 'name', 'Universidad Nacional del Centro de la Provincia de Buenos Aires'),
(135110, 106851, 'pt', 'name', 'Portugal Direção-Geral do Tesouro e Finanças'),
(135111, 106852, 'pt', 'name', 'Sociedade Portuguesa de Estudos Rurais'),
(135112, 106853, 'en', 'name', 'All India Institute of Medical Sciences Raipur'),
(135113, 106853, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(135114, 106854, 'pt', 'name', 'Sociedade Portuguesa de Doenças Metabólicas'),
(135115, 106855, 'no_lang_code', 'name', 'Schréder Iluminação (Portugal)'),
(135116, 106856, 'en', 'name', 'Darul Uloom Deoband'),
(135117, 106856, 'ar', 'name', 'ŲÆŲ§Ų± Ų§Ł„Ų¹Ł„ŁˆŁ… ŲÆŁŠŁˆŲØŁ†ŲÆ'),
(135118, 106856, 'ur', 'name', 'ŲÆŲ§Ų± Ų§Ł„Ų¹Ł„ŁˆŁ… ŲÆŪŒŁˆŲØŁ†ŲÆ'),
(135119, 106856, 'hi', 'name', 'ą¤¦ą¤¾ą¤°ą„ą¤² ą¤‰ą¤²ą„‚ą¤® ą¤¦ą„‡ą¤µą¤¬ą¤‚ą¤¦'),
(135120, 106857, 'pt', 'name', 'Autoridade para a Prevenção e o Combate à Violência no Desporto'),
(135121, 106858, 'en', 'name', 'Cranfield University'),
(135122, 106858, 'cy', 'name', 'Prifysgol Cranfield'),
(135123, 106859, 'en', 'name', 'Portuguese Research Infrastructure of Scientific Collections'),
(135124, 106860, 'pt', 'name', 'PORBIOTA'),
(135125, 106861, 'pt', 'name', 'Laboratório Nacional de Energia e Geologia'),
(135126, 106861, 'en', 'name', 'National Laboratory of Energy and Geology'),
(135127, 106862, 'no_lang_code', 'name', 'EnviSolutions (Portugal)'),
(135128, 106863, 'pt', 'name', 'Câmara Municipal de São João da Madeira'),
(135129, 106864, 'en', 'name', 'Palacký University Olomouc'),
(135130, 106864, 'sk', 'name', 'Univerzita PalackƩho'),
(135131, 106864, 'cs', 'name', 'Univerzita PalackƩho v Olomouci'),
(135132, 106865, 'pt', 'name', 'Sociedade Portuguesa de Medicina da Reprodução'),
(135133, 106866, 'en', 'name', 'Revvity Gene Delivery (Germany)'),
(135134, 106867, 'pt', 'name', 'Laboratório para a Ciência da Computação e InformÔtica'),
(135135, 106868, 'pt', 'name', 'Centro de Investigação de MatemÔtica e Aplicações'),
(135136, 106869, 'en', 'name', 'Idorsia'),
(135137, 106869, 'no_lang_code', 'name', 'Idorsia (Switzerland)'),
(135138, 106870, 'pt', 'name', 'Escolas do Turismo de Portugal'),
(135139, 106871, 'en', 'name', 'First Capital University of Bangladesh'),
(135140, 106871, 'bn', 'name', 'ą¦«ą¦¾ą¦°ą§ą¦øą§ą¦Ÿ ą¦•ą§ą¦Æą¦¾ą¦Ŗą¦æą¦Ÿą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব বাংলাদেশ'),
(135141, 106872, 'no_lang_code', 'name', '3M (Portugal)'),
(135142, 106873, 'pt', 'name', 'Rede Nacional de Centros Integrais de CĆ¢ncer'),
(135143, 106874, 'pt', 'name', 'CĆ¢mara Municipal de Braga'),
(135144, 106875, 'pt', 'name', 'Patriarcado de Lisboa'),
(135145, 106876, 'pt', 'name', 'Rede CiĆŖncia Tecnologia e Sociedade'),
(135146, 106877, 'en', 'name', 'Zhejiang Department of Finance'),
(135147, 106877, 'zh', 'name', 'ęµ™ę±Ÿēœč“¢ę”æåŽ…'),
(135148, 106878, 'pt', 'name', 'Sociedade Portuguesa de CƩlulas Estaminais e Terapia Celular'),
(135149, 106879, 'pt', 'name', 'Centro de Arqueologia da Almada'),
(135150, 106880, 'no_lang_code', 'name', 'Trinap Equipamentos Industriais (Portugal)'),
(135151, 106881, 'en', 'name', 'Federal Institute of Education, Science and Technology of Santa Catarina'),
(135152, 106881, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Santa Catarina'),
(135153, 106882, 'pt', 'name', 'Magellan - Associação para a Representação dos Interesses Portugueses no Exterior'),
(135154, 106883, 'no_lang_code', 'name', 'Banco Santander (Portugal)'),
(135155, 106884, 'en', 'name', 'LusĆ­ada University of Porto'),
(135156, 106885, 'no_lang_code', 'name', 'Medicineone SGPS (Portugal)'),
(135157, 106886, 'pt', 'name', 'Centro de Estudos Interdisciplinares em Educação e Desenvolvimento'),
(135158, 106887, 'de', 'name', 'Krankenhaus Dresden-Friedrichstadt'),
(135159, 106888, 'pt', 'name', 'Academia ClĆ­nica Espregueira'),
(135160, 106889, 'fr', 'name', 'Institut Universitaire en SantƩ Mentale de QuƩbec'),
(135161, 106889, 'en', 'name', 'University Institute in Mental Health of Quebec'),
(135162, 106890, 'pt', 'name', 'Instituto de Estudos ClƔssicos'),
(135163, 106891, 'pt', 'name', 'Conservatório de Música e Artes do Dão'),
(135164, 106892, 'no_lang_code', 'name', 'Biosurfit (Portugal)'),
(135165, 106893, 'pt', 'name', 'Sociedade Portuguesa de Robótica'),
(135166, 106894, 'pl', 'name', 'Górnoslaska Wyzsza Szkola Handlowa'),
(135167, 106894, 'en', 'name', 'Katowice School of Economics'),
(135168, 106895, 'en', 'name', 'St. Andrews Institute of Technology and Management'),
(135169, 106896, 'no_lang_code', 'name', 'Milupa Comercial (Portugal)'),
(135170, 106897, 'pt', 'name', 'Escola Superior de Artes e Design Associação para a Promoção da Investigação em Design e Arte'),
(135171, 106898, 'en', 'name', 'G. H. Gillespie Associates'),
(135172, 106898, 'no_lang_code', 'name', 'G. H. Gillespie Associates (United States)'),
(135173, 106899, 'pt', 'name', 'Direção Geral do Território'),
(135174, 106900, 'en', 'name', 'Advanced Computing Center'),
(135175, 106901, 'en', 'name', 'RESTART'),
(135176, 106902, 'no_lang_code', 'name', 'Logiters Portugal (Portugal)'),
(135177, 106903, 'no_lang_code', 'name', 'Banco Santander (Spain)'),
(135178, 106904, 'fr', 'name', 'Vision pour la Robotique'),
(135179, 106905, 'en', 'name', 'United Nations University Operating Unit on Policy-Driven Electronic Governance'),
(135180, 106906, 'en', 'name', 'Schmidt Sciences'),
(135181, 106907, 'pt', 'name', 'AgĆŖncia Espacial Portuguesa'),
(135182, 106908, 'no_lang_code', 'name', 'Sermail LogĆ­stica Integrada (Portugal)'),
(135183, 106909, 'en', 'name', 'Museu de Arte Contemporânea de Elvas'),
(135184, 106910, 'en', 'name', 'Research and Development Station for Cattle Breeding Dancu'),
(135185, 106910, 'ro', 'name', 'Stațiunea de Cercetare Dezvoltare pentru Creșterea Bovinelor Dancu'),
(135186, 106911, 'pt', 'name', 'Unidade de Microbiologia MƩdica'),
(135187, 106912, 'pt', 'name', 'Sociedade Portuguesa de Esclerose MĆŗltipla'),
(135188, 106913, 'no_lang_code', 'name', 'WSA Portugal (Portugal)'),
(135189, 106914, 'pt', 'name', 'Museu Doutor Joaquim Manso');
INSERT INTO `ror_settings` VALUES
(135190, 106915, 'en', 'name', 'Center for Studies in Ethnobiology Biodiversity & Sustainability'),
(135191, 106916, 'pt', 'name', 'Centro de Biotecnologia e QuĆ­mica Fina'),
(135192, 106917, 'en', 'name', 'The Crichton Trust'),
(135193, 106918, 'pt', 'name', 'Centro de Estudos em Inovação Tecnologia e Políticas de Desenvolvimento'),
(135194, 106919, 'pt', 'name', 'Luz SaĆŗde SA'),
(135195, 106920, 'no_lang_code', 'name', 'Widex Reabilitação Auditiva Unip (Portugal)'),
(135196, 106921, 'pt', 'name', 'Agência Nacional para a Qualificação e o Ensino Profissional IP'),
(135197, 106922, 'pt', 'name', 'Sociedade Portuguesa de Cirurgia Cardƭaca TorƔcica e Vascular'),
(135198, 106923, 'pt', 'name', 'Exército Português'),
(135199, 106923, 'en', 'name', 'Portuguese Army'),
(135200, 106924, 'fr', 'name', 'Centre d''Ʃtudes et de recherches comparƩes sur la crƩation'),
(135201, 106925, 'pt', 'name', 'Rede Nacional de Computação Avançada'),
(135202, 106926, 'pt', 'name', 'Engage-SKA Portugal'),
(135203, 106927, 'en', 'name', 'Seversk Technological Institute'),
(135204, 106927, 'ru', 'name', 'Деверский технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(135205, 106928, 'pt', 'name', 'Tapada Nacional de Mafra'),
(135206, 106929, 'pt', 'name', 'Centro de Conservação das Borboletas de Portugal'),
(135207, 106930, 'fr', 'name', 'GloNeuro'),
(135208, 106931, 'en', 'name', 'Kyrgyz-Uzbek International University named after Batyraly Sydykov'),
(135209, 106931, 'ky', 'name', 'Батыралы ДыГыков атынГагы ŠšŃ‹Ń€Š³Ń‹Š·-Өзбек Š­Š» аралык ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(135210, 106931, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾-Узбекский ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Батыралы ДыГыкова'),
(135211, 106932, 'pt', 'name', 'Rede de Investigação sobre Condições de Trabalho'),
(135212, 106933, 'pt', 'name', 'Associação Para o Desenvolvimento da Engenharia Química'),
(135213, 106934, 'pt', 'name', 'Hospital de Cascais Dr JosƩ de Almeida'),
(135214, 106935, 'pt', 'name', 'Escola Superior de Artes Decorativas'),
(135215, 106936, 'pt', 'name', 'Sociedade Portuguesa de Suicidologia'),
(135216, 106937, 'pt', 'name', 'Centro de Estudos de Arquitectura e Urbanismo'),
(135217, 106938, 'en', 'name', 'International Association of Advanced Materials'),
(135218, 106938, 'sv', 'name', 'Internationella fƶreningen fƶr avancerade material'),
(135219, 106939, 'no_lang_code', 'name', 'CiviTest Pesquisa de Novos Materiais para a Engenharia Civil (Portugal)'),
(135220, 106940, 'pt', 'name', 'Casa Fernando Pessoa'),
(135221, 106941, 'pt', 'name', 'Centro CiĆŖncia Viva de Alviela'),
(135222, 106942, 'pt', 'name', 'Biblioteca Victor de SĆ”'),
(135223, 106943, 'pt', 'name', 'Diocese de Coimbra'),
(135224, 106944, 'en', 'name', 'Govt. College Mananthavady'),
(135225, 106945, 'hu', 'name', 'KaposvƔri Egyetem'),
(135226, 106945, 'en', 'name', 'University of KaposvƔr'),
(135227, 106946, 'en', 'name', 'Baptist College of Theology, Obinze'),
(135228, 106947, 'en', 'name', 'Ministry of Education'),
(135229, 106947, 'pt', 'name', 'Ministério da Educação'),
(135230, 106948, 'pt', 'name', 'Sociedade Portuguesa de Psicologia da SaĆŗde'),
(135231, 106949, 'en', 'name', 'CoLab4Food'),
(135232, 106950, 'pt', 'name', 'Câmara Municipal de Águeda'),
(135233, 106951, 'pt', 'name', 'Centro de Direito do Consumo'),
(135234, 106952, 'pt', 'name', 'Sociedade Portuguesa de Ciências VeterinÔrias'),
(135235, 106953, 'no_lang_code', 'name', 'Mercurius Health (Portugal)'),
(135236, 106954, 'no_lang_code', 'name', 'Caixa Geral de Depositos (Portugal)'),
(135237, 106955, 'pt', 'name', 'Camões - Instituto da Cooperação e da Língua'),
(135238, 106956, 'fr', 'name', 'DƩlƩgation RhƓne Auvergne'),
(135239, 106957, 'pt', 'name', 'Unidade Nacional de Gestão do Mecanismo Financeiro do Espaço Económico Europeu'),
(135240, 106958, 'en', 'name', 'National University of Patagonia San Juan Bosco'),
(135241, 106958, 'es', 'name', 'Universidad Nacional de la Patagonia San Juan Bosco'),
(135242, 106959, 'no_lang_code', 'name', 'Tetra Pak (Portugal)'),
(135243, 106960, 'en', 'name', 'VectorB2B'),
(135244, 106961, 'en', 'name', 'Thailand National Sports University'),
(135245, 106961, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø²ąø£ąøąøµąø¬ąø²ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(135246, 106962, 'en', 'name', 'University Hospital Carl Gustav Carus'),
(135247, 106962, 'de', 'name', 'UniversitƤtsklinikum Carl Gustav Carus Dresden'),
(135248, 106963, 'en', 'name', 'United Nations University'),
(135249, 106964, 'pt', 'name', 'Republica Portuguesa Secretaria-Geral da Educação e Ciência'),
(135250, 106965, 'no_lang_code', 'name', 'Sistemas do Futuro Multimédia Gestão e Arte (Portugal)'),
(135251, 106966, 'en', 'name', 'Shenzhen Municipal Human Resources and Social Security Bureau'),
(135252, 106966, 'zh', 'name', 'ę·±åœ³åø‚äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœå±€'),
(135253, 106967, 'es', 'name', 'Instituto de GeofĆ­sica'),
(135254, 106968, 'de', 'name', 'Paul Langerhans Institut Dresden'),
(135255, 106968, 'en', 'name', 'Paul Langerhans Institute Dresden'),
(135256, 106969, 'en', 'name', 'Solar System Exploration Research Virtual Institute'),
(135257, 106970, 'no_lang_code', 'name', 'Biotronik (Portugal)'),
(135258, 106971, 'en', 'name', 'Shodh Sagar (India)'),
(135259, 106972, 'en', 'name', 'International Islamic Academy of Uzbekistan'),
(135260, 106973, 'no_lang_code', 'name', 'UCB Pharma (Portugal)'),
(135261, 106974, 'pt', 'name', 'Instituto Coordenador da Investigação'),
(135262, 106975, 'pt', 'name', 'Biblioteca PĆŗblica de Braga'),
(135263, 106976, 'en', 'name', 'North Caucasian State Academy'),
(135264, 106976, 'ru', 'name', 'Деверо-ŠšŠ°Š²ŠŗŠ°Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(135265, 106977, 'no_lang_code', 'name', 'Forcerebrus (Portugal)'),
(135266, 106978, 'fr', 'name', 'Centre hospitalier universitaire d''OrlƩans'),
(135267, 106979, 'en', 'name', 'Sharing Foundation'),
(135268, 106980, 'pt', 'name', 'LISPOLIS - Associação para o Pólo Tecnológico de Lisboa'),
(135269, 106981, 'en', 'name', 'Bahaudin Mudhary Madura University'),
(135270, 106981, 'id', 'name', 'Universitas Bahaudin Mudhary Madura'),
(135271, 106982, 'de', 'name', 'Berliner Hochschule für Technik'),
(135272, 106983, 'pt', 'name', 'Beira Serra Associação de Desenvolvimento'),
(135273, 106984, 'fr', 'name', 'Laboratoire de Recherche Historique RhƓne-Alpes'),
(135274, 106985, 'pt', 'name', 'Comissão de Coordenação e Desenvolvimento Regional do Algarve'),
(135275, 106986, 'en', 'name', 'Central Clinic Povoa Santa Iria'),
(135276, 106986, 'pt', 'name', 'Clínica Central Póvoa Santa Iria (Portugal)'),
(135277, 106987, 'fr', 'name', 'QuƩbec-OcƩan'),
(135278, 106988, 'pt', 'name', 'Clínica Oftalmológica Rufino Ribeiro (Portugal)'),
(135279, 106988, 'en', 'name', 'Rufino Ribeiro Ophthalmic Clinic'),
(135280, 106989, 'pt', 'name', 'Sociedade Portuguesa MƩdica de Acupunctura'),
(135281, 106990, 'pt', 'name', 'AgĆŖncia DNA Cascais Cascais um concelho empreendedor'),
(135282, 106991, 'pt', 'name', 'Centro de Estudos M. Manuela Eloi International Language School'),
(135283, 106992, 'pt', 'name', 'Centro de Formação Interação UBI Tecido Empresarial'),
(135284, 106993, 'pt', 'name', 'Faust LĆ­ngua e Cultura'),
(135285, 106994, 'pt', 'name', 'Centro de Investigação Interdisciplinar em Sanidade Animal'),
(135286, 106995, 'en', 'name', 'Atmo France'),
(135287, 106996, 'no_lang_code', 'name', 'AG da Cunha Ferreira (Portugal)'),
(135288, 106997, 'pt', 'name', 'Centro de Matematica Aplicada à Previsão e Decisão Económica'),
(135289, 106998, 'en', 'name', 'Regia-Douro Park'),
(135290, 106999, 'no_lang_code', 'name', 'PHAGECON - Serviços e Consultoria Farmacêutica Ltd (Portugal)'),
(135291, 107000, 'no_lang_code', 'name', 'SiliconGate (Portugal)'),
(135292, 107001, 'es', 'name', 'Benemérito Instituto Normal del Estado "Gral. Juan Crisóstomo Bonilla"'),
(135293, 107002, 'no_lang_code', 'name', 'Fresenius Medical Care (Germany)'),
(135294, 107003, 'pt', 'name', 'Instituto Nacional de Investigação AgrÔria e VeterinÔria'),
(135295, 107004, 'pt', 'name', 'Laboratório de Sistemas InformÔticos de Grande Escala'),
(135296, 107005, 'pt', 'name', 'Centro de Investigação Formação Inovação e Intervenção em Desporto'),
(135297, 107006, 'pt', 'name', 'Centro de Estudos HumanĆ­sticos'),
(135298, 107007, 'no_lang_code', 'name', 'Muroplas Industria de Plasticos (Portugal)'),
(135299, 107008, 'en', 'name', 'Proplast Consortium for the Promotion of the Plastic Culture'),
(135300, 107009, 'no_lang_code', 'name', 'AromƔticas Vivas (Portugal)'),
(135301, 107010, 'en', 'name', 'University of Management and Technology'),
(135302, 107011, 'pt', 'name', 'PORTUCALEA - Associação Florestal do Grande Porto'),
(135303, 107012, 'pt', 'name', 'Escola Artística de Dança do Conservatório Nacional'),
(135304, 107013, 'pt', 'name', 'Centro de Investigação em Serviço Social e Intervenção Social'),
(135305, 107014, 'pt', 'name', 'DECO - Associação Portuguesa para a Defesa do Consumidor'),
(135306, 107015, 'pt', 'name', 'Fundação António Quadros Cultura e Pensamento'),
(135307, 107016, 'no_lang_code', 'name', 'AtralCipan (Portugal)'),
(135308, 107017, 'pt', 'name', 'Casa de Sarmento'),
(135309, 107018, 'pt', 'name', 'Laboratório de Educação a Distância e E-learning'),
(135310, 107019, 'no_lang_code', 'name', 'Novo Nordisk (Denmark)'),
(135311, 107020, 'en', 'name', 'National University Bangladesh'),
(135312, 107020, 'bn', 'name', 'ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(135313, 107021, 'en', 'name', 'ACTRIS ARES Data Centre Unit'),
(135314, 107022, 'pt', 'name', 'Agência para o Investimento e Comércio Externo de Portugal EPE'),
(135315, 107023, 'no_lang_code', 'name', 'Vygon Portugal (Portugal)'),
(135316, 107024, 'no_lang_code', 'name', 'Ferraz Lynce Especialidades FarmacĆŖuticas (Portugal)'),
(135317, 107025, 'en', 'name', 'Antalya Bilim University'),
(135318, 107025, 'tr', 'name', 'Antalya Bilim Üniversitesi'),
(135319, 107026, 'en', 'name', 'Health University of Applied Sciences Tyrol'),
(135320, 107026, 'de', 'name', 'Zentrum fur Gesundheitsberufe Tirol'),
(135321, 107027, 'en', 'name', 'Free Economic Society of Russia'),
(135322, 107027, 'ru', 'name', 'Š’Š¾Š»ŃŒŠ½Š¾Šµ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Šµ общество России'),
(135323, 107028, 'pt', 'name', 'Rede Nacional de Espectrometria de Massa'),
(135324, 107029, 'no_lang_code', 'name', 'Isurgical3D (Portugal)'),
(135325, 107030, 'no_lang_code', 'name', 'Building Global Innovators (Portugal)'),
(135326, 107031, 'en', 'name', 'All India Institute of Medical Sciences Gorakhpur'),
(135327, 107032, 'fr', 'name', 'Ambassade de France au Portugal'),
(135328, 107033, 'no_lang_code', 'name', 'Unidad Renal Nefrodial SAS Servicio de HemodiƔlisis (Portugal)'),
(135329, 107034, 'en', 'name', 'Institute of Public Health of Sabac'),
(135330, 107034, 'sr', 'name', 'Zavod za javno zdravlje Å abac'),
(135331, 107035, 'en', 'name', 'World Climate Research Programme'),
(135332, 107036, 'en', 'name', 'European Maritime Safety Agency'),
(135333, 107037, 'no_lang_code', 'name', 'AEROMEC (Portugal)'),
(135334, 107038, 'en', 'name', 'SciencePark Corporation (Japan)'),
(135335, 107039, 'pt', 'name', 'Instituto Superior TƩcnico Biblioteca'),
(135336, 107040, 'no_lang_code', 'name', 'Rovensa (Portugal)'),
(135337, 107041, 'es', 'name', 'Universidad de la RepĆŗblica de Uruguay'),
(135338, 107042, 'pt', 'name', 'Fundação Amélia de Mello'),
(135339, 107043, 'pt', 'name', 'Universidade Virtual do Estado de SĆ£o Paulo'),
(135340, 107044, 'pt', 'name', 'Centro PortuguĆŖs de Fotografia'),
(135341, 107045, 'no_lang_code', 'name', 'OneVet Group (Portugal)'),
(135342, 107046, 'pt', 'name', 'Sociedade Portuguesa de Ortopedia e Traumatologia'),
(135343, 107047, 'pt', 'name', 'Prevenção RodoviÔria Portuguesa'),
(135344, 107048, 'pt', 'name', 'Centro Protocolar de Formação Profissional para Jornalistas'),
(135345, 107049, 'en', 'name', 'Value for Health CoLAB'),
(135346, 107050, 'pt', 'name', 'Laboratório de Ciências do Mar'),
(135347, 107051, 'no_lang_code', 'name', 'LeYa (Portugal)'),
(135348, 107052, 'pt', 'name', 'Direção Regional de Agricultura e Pescas do Centro'),
(135349, 107053, 'no_lang_code', 'name', 'medac (Portugal)'),
(135350, 107054, 'no_lang_code', 'name', 'blueCAPE (Portugal)'),
(135351, 107055, 'en', 'name', 'All India Institute of Medical Sciences Bhubaneswar'),
(135352, 107056, 'pt', 'name', 'Sistema Nacional de Informação GeogrÔfica'),
(135353, 107057, 'no_lang_code', 'name', 'Flying Sharks Consultoria e Inovação (Portugal)'),
(135354, 107058, 'no_lang_code', 'name', 'EAV-L-Estudos ArtƩrio Veno-LinfƔticos (Portugal)'),
(135355, 107059, 'pt', 'name', 'Escola Superior de Educação de João de Deus'),
(135356, 107060, 'pt', 'name', 'MORE – Laboratório Colaborativo Montanhas de Investigação – Associação'),
(135357, 107061, 'pt', 'name', 'Centro de Estudos de Desenvolvimento TurĆ­stico'),
(135358, 107062, 'en', 'name', 'KeyLogic (United States)'),
(135359, 107063, 'fr', 'name', 'Association des graduƩes et graduƩs en agriculture et alimentation'),
(135360, 107064, 'pt', 'name', 'SerQ Centro de Inovação e Competências da Floresta'),
(135361, 107065, 'fr', 'name', 'Haute Ɖcole de Musique de Lausanne'),
(135362, 107065, 'en', 'name', 'University of Music Lausanne'),
(135363, 107066, 'fr', 'name', 'DƩlƩgation Languedoc Roussillon'),
(135364, 107067, 'pt', 'name', 'Centro de Estudos AvanƧados em Direito Francisco SuƔrez'),
(135365, 107068, 'pt', 'name', 'Laboratório de Software ConfiÔvel'),
(135366, 107069, 'no_lang_code', 'name', 'Cromeleque (Portugal)'),
(135367, 107070, 'no_lang_code', 'name', 'FƔbrica de Startups (Portugal)'),
(135368, 107071, 'pt', 'name', 'ASIC - Associação de Saúde Infantil de Coimbra'),
(135369, 107072, 'en', 'name', 'All India Institute of Medical Sciences, Vijaypur, Jammu'),
(135370, 107073, 'pt', 'name', 'Arquitectura Investigação e Desenvolvimento'),
(135371, 107074, 'no_lang_code', 'name', 'ViiV Healthcare (Portugal)'),
(135372, 107075, 'no_lang_code', 'name', 'Clinical Trial and Consulting (Portugal)'),
(135373, 107076, 'en', 'name', 'University of Science and Technology of China'),
(135374, 107076, 'zh', 'name', 'äø­å›½ē§‘å­¦ęŠ€ęœÆå¤§å­¦'),
(135375, 107077, 'no_lang_code', 'name', 'Companhia das LezĆ­rias (Portugal)'),
(135376, 107078, 'no_lang_code', 'name', 'Farcimar SGPS (Portugal)'),
(135377, 107079, 'en', 'name', 'WCRP-ESMO International Project Office'),
(135378, 107080, 'no_lang_code', 'name', 'ASCENZA AGRO (Portugal)'),
(135379, 107081, 'no_lang_code', 'name', 'Unidade de SaĆŗde Familiar Alphamouro (Portugal)'),
(135380, 107082, 'it', 'name', 'Iridra Srl (Italy)'),
(135381, 107083, 'no_lang_code', 'name', 'Direct e Quixa Seguros y Reaseguros SAU Sucursal em Portugal (Portugal)'),
(135382, 107084, 'pt', 'name', 'Escola de Pós-Graduação e Formação Avançada'),
(135383, 107085, 'pt', 'name', 'Universidade Católica Portuguesa - Braga'),
(135384, 107086, 'pt', 'name', 'CECOLAB'),
(135385, 107087, 'no_lang_code', 'name', 'ADDSOLUTIONS (Portugal)'),
(135386, 107088, 'pt', 'name', 'Câmara Municipal da Covilhã'),
(135387, 107089, 'en', 'name', 'Sree Narayana College, Punalur'),
(135388, 107090, 'en', 'name', 'Esfarayen University of Technology'),
(135389, 107090, 'fa', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ ŁŁ†ŪŒ و Ł…Ł‡Ł†ŲÆŲ³ŪŒ Ų§Ų³ŁŲ±Ų§ŪŒŁ†'),
(135390, 107091, 'en', 'name', 'Worldwide Hospice Palliative Care Alliance'),
(135391, 107092, 'pt', 'name', 'Sociedade Portuguesa de Ciências da Nutrição e Alimentação'),
(135392, 107093, 'pt', 'name', 'Laboratório de Plasmas Hipersónicos'),
(135393, 107094, 'eu', 'name', 'Donostiako Unibertsitate Ospitalea'),
(135394, 107094, 'es', 'name', 'Hospital Universitario de Donostia'),
(135395, 107094, 'en', 'name', 'University Hospital Donostia'),
(135396, 107095, 'en', 'name', 'International Lead and Zinc Study Group'),
(135397, 107096, 'no_lang_code', 'name', 'Maria Design (Portugal)'),
(135398, 107097, 'no_lang_code', 'name', '3M (United States)'),
(135399, 107098, 'pt', 'name', 'Sociedade Portuguesa de Anatomia Patológica'),
(135400, 107099, 'lt', 'name', 'Kauno Kolegija'),
(135401, 107099, 'en', 'name', 'Kauno kolegija Higher Education Institution'),
(135402, 107100, 'en', 'name', 'Ispahani Islamia Eye Institute and Hospital'),
(135403, 107101, 'pt', 'name', 'Arquidiocese de Braga'),
(135404, 107102, 'pt', 'name', 'Culturgest - Fundação Caixa Geral de Depósitos'),
(135405, 107103, 'pt', 'name', 'Universidade de Coimbra Imprensa'),
(135406, 107104, 'no_lang_code', 'name', 'Frotcom International (Portugal)'),
(135407, 107105, 'en', 'name', 'Royal School of Languages'),
(135408, 107106, 'pt', 'name', 'Núcleo de Investigação Científica de Incêndios Florestais'),
(135409, 107107, 'pt', 'name', 'Instituto de Direito Penal e CiĆŖncias Criminais'),
(135410, 107108, 'fr', 'name', 'Atmo Hauts-de-France'),
(135411, 107109, 'pt', 'name', 'Sociedade CientĆ­fica de Pedagogia do Desporto'),
(135412, 107110, 'pt', 'name', 'Centro de Astrofísica e Gravitação'),
(135413, 107111, 'pt', 'name', 'Centro de MatemƔtica'),
(135414, 107112, 'es', 'name', 'Centro de Estudios Sociales de AmƩrica Latina'),
(135415, 107113, 'es', 'name', 'Jardƭn BotƔnico de Missouri'),
(135416, 107114, 'pt', 'name', 'CĆ¢mara Municipal de Vila do Conde'),
(135417, 107115, 'no_lang_code', 'name', 'Upstream Portugal (Portugal)'),
(135418, 107116, 'pt', 'name', 'Sociedade Portuguesa de Imunologia'),
(135419, 107117, 'en', 'name', 'Fun Languages'),
(135420, 107118, 'pt', 'name', 'Casa do Douro Federação Renovação do Douro'),
(135421, 107119, 'pt', 'name', 'FeedInov'),
(135422, 107120, 'pt', 'name', 'Sociedade Portuguesa de Ecologia'),
(135423, 107121, 'en', 'name', 'MagIC'),
(135424, 107122, 'en', 'name', 'Jabalpur Engineering College'),
(135425, 107122, 'hi', 'name', 'ą¤œą¤¬ą¤²ą¤Ŗą„ą¤° ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(135426, 107123, 'pt', 'name', 'Instituto Português de Relações Internacionais'),
(135427, 107124, 'en', 'name', 'All India Institute of Medical Sciences Bibinagar'),
(135428, 107125, 'pt', 'name', 'Sociedade Portuguesa de BioquĆ­mica'),
(135429, 107126, 'no_lang_code', 'name', 'Equigerminal (Portugal)'),
(135430, 107127, 'en', 'name', 'B.E.S.T Innovation University'),
(135431, 107128, 'en', 'name', 'Marine Biodiversity Exploitation and Conservation'),
(135432, 107129, 'en', 'name', 'Research Infrastructure on Integration of Solar Energy Systems in Buildings'),
(135433, 107130, 'no_lang_code', 'name', 'JosƩ Maria da Fonseca Vinhos (Portugal)'),
(135434, 107131, 'pt', 'name', 'Administração Regional de Saúde do Alentejo IP'),
(135435, 107132, 'pt', 'name', 'Sociedade Portuguesa de Neuropsicologia'),
(135436, 107133, 'no_lang_code', 'name', 'Exigo Consultores (Portugal)'),
(135437, 107134, 'pt', 'name', 'Centro CiĆŖncia Viva do Algarve'),
(135438, 107135, 'pt', 'name', 'Museu de Arte Arquitetura e Tecnologia'),
(135439, 107136, 'en', 'name', 'Food4Sustainability CoLAB'),
(135440, 107137, 'no_lang_code', 'name', 'Ar Telecom (Portugal)'),
(135441, 107138, 'no_lang_code', 'name', 'Valorsul (Portugal)'),
(135442, 107139, 'pt', 'name', 'Centro de Investigação em Psicologia para o Desenvolvimento'),
(135443, 107140, 'no_lang_code', 'name', 'Startup Braga (Portugal)'),
(135444, 107141, 'pt', 'name', 'CĆ¢mara Municipal de Santa Maria da Feira'),
(135445, 107142, 'en', 'name', 'All India Institute of Medical Sciences, Nagpur'),
(135446, 107143, 'en', 'name', 'Amsterdam Reproduction Development'),
(135447, 107144, 'pt', 'name', 'Instituto de Investigação em Arte Design e Sociedade'),
(135448, 107145, 'fr', 'name', 'Centre d''Investigation Clinique de BesanƧon'),
(135449, 107146, 'pt', 'name', 'Sociedade Portuguesa de Défice de Atenção'),
(135450, 107147, 'pt', 'name', 'Sociedade Portuguesa de Cirurgia'),
(135451, 107148, 'pt', 'name', 'Centro de Direito BiomƩdico'),
(135452, 107149, 'es', 'name', 'Centro de Investigaciones Históricas, Antropológicas y Culturales - AIP'),
(135453, 107150, 'pt', 'name', 'Centro de Ɖtica Polƭtica e Sociedade'),
(135454, 107151, 'pt', 'name', 'Paróquia de Nossa Senhora do Cabo de Linda-a-Velha'),
(135455, 107152, 'no_lang_code', 'name', 'Amkor Technology (Portugal)'),
(135456, 107153, 'pt', 'name', 'Escola de Moda do Porto'),
(135457, 107154, 'pt', 'name', 'Sociedade Portuguesa para o Estudo da SaĆŗde Mental'),
(135458, 107155, 'en', 'name', 'Bangladesh Institute of Law and International Affairs'),
(135459, 107155, 'bn', 'name', 'বাংলাদেশ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ল'' ą¦ą¦Øą§ą¦” ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦…ą§ą¦Æą¦¾ą¦«ą§‡ą§Ÿą¦¾ą¦°ą§ą¦ø'),
(135460, 107156, 'fr', 'name', 'Centre Hospitalier Universitaire de Caen Normandie'),
(135461, 107157, 'no_lang_code', 'name', 'Dinalivro Distribuidora Nacional de Livros (Portugal)'),
(135462, 107158, 'pt', 'name', 'Centro de Estudos Africanos'),
(135463, 107159, 'pt', 'name', 'CĆ¢mara Municipal de Cascais'),
(135464, 107160, 'pt', 'name', 'Rede de Investigação em Biodiversidade e Biologia Evolutiva'),
(135465, 107161, 'en', 'name', 'Catholic University of Córdoba'),
(135466, 107161, 'de', 'name', 'Katholische Universität Córdoba'),
(135467, 107161, 'es', 'name', 'Universidad Católica de Córdoba'),
(135468, 107161, 'fr', 'name', 'UniversitƩ Catholique de Cordoba'),
(135469, 107162, 'no_lang_code', 'name', 'Success Gadget Nanotecnologia e Novos Materiais (Portugal)'),
(135470, 107163, 'pt', 'name', 'Sociedade Portuguesa de Antropologia e Etnologia'),
(135471, 107164, 'en', 'name', 'Sindh Institute of Ophthalmology & Visual Sciences (SIOVS)'),
(135472, 107165, 'en', 'name', 'National Medical Institute of the Ministry of Interior and Administration'),
(135473, 107165, 'pl', 'name', 'Państwowy Instytut Medyczny Ministerstwa Spraw Wewnętrznych i Administracji'),
(135474, 107166, 'en', 'name', 'BGI Research, Wuhan'),
(135475, 107166, 'zh', 'name', 'ę­¦ę±‰åŽå¤§ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(135476, 107167, 'no_lang_code', 'name', 'Neurowave (Portugal)'),
(135477, 107168, 'fr', 'name', 'Centre Universitaire Morsli Abdellah de Tipaza'),
(135478, 107168, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł…Ų±Ų³Ł„ŁŠ Ų¹ŲØŲÆ الله تيبازة الجزائر'),
(135479, 107169, 'no_lang_code', 'name', 'Korn Ferry Lisbon (Portugal)'),
(135480, 107170, 'en', 'name', 'Kyrgyz National Agrarian University named after K.I. Skryabin'),
(135481, 107170, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š· ŃƒŠ»ŃƒŃ‚Ń‚ŃƒŠŗ аграрГык ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø К. И. Š”ŠŗŃ€ŃŠ±ŠøŠ½ атынГагы'),
(135482, 107170, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. К.И.Š”ŠŗŃ€ŃŠ±ŠøŠ½Š°'),
(135483, 107171, 'pt', 'name', 'CĆ¢mara Municipal de Ɖvora'),
(135484, 107172, 'no_lang_code', 'name', 'Lidel EdiƧƵes TƩcnicas (Portugal)'),
(135485, 107173, 'en', 'name', 'Science and Technology Department of Xinjiang Uyghur Autonomous Region'),
(135486, 107173, 'ug', 'name', 'ؓىنجاڭ Ų¦Ū‡ŁŠŲŗŪ‡Ų± Ų¦Ų§Ł¾ŲŖŁˆŁ†ŁˆŁ… Ų±Ų§ŁŠŁˆŁ†Ł„Ū‡Ł‚ Ł¾Ū•Ł†ā€“ŲŖŪŲ®Ł†Ł‰ŁƒŲ§ نازارىتى'),
(135487, 107173, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(135488, 107174, 'pt', 'name', 'Vasco da Gama CoLAB'),
(135489, 107175, 'de', 'name', 'Hannah-Arendt-Institut für Totalitarismusforschung e.V. an der TU Dresden'),
(135490, 107176, 'en', 'name', 'International Committee on Taxonomy of Viruses'),
(135491, 107177, 'pt', 'name', 'Instituto de Direito Penal Económico e Europeu'),
(135492, 107178, 'no_lang_code', 'name', 'ChemiTek - Quƭmica AvanƧada (Portugal)'),
(135493, 107179, 'pt', 'name', 'Sistema Nacional de Informação de Recursos Hídricos'),
(135494, 107180, 'pt', 'name', 'União da Floresta Mediterrânica'),
(135495, 107181, 'no_lang_code', 'name', 'AbbVie (Portugal)'),
(135496, 107182, 'en', 'name', 'Aviation and Aerospace University, Bangladesh'),
(135497, 107182, 'bn', 'name', 'ą¦…ą§ą¦Æą¦¾ą¦­ą¦æą¦Æą¦¼ą§‡ą¦¶ą¦Ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦…ą§ą¦Æą¦¾ą¦°ą§‹ą¦øą§ą¦Ŗą§‡ą¦ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼, বাংলাদেশ'),
(135498, 107183, 'pt', 'name', 'Centro de AnÔlise MatemÔtica Geometria e Sistemas Dinâmicos'),
(135499, 107184, 'en', 'name', 'Dravet Syndrome Foundation'),
(135500, 107185, 'en', 'name', 'Center for Systems Biology Dresden'),
(135501, 107186, 'pt', 'name', 'Conselho Científico-Pedagógico da Formação Contínua'),
(135502, 107187, 'en', 'name', 'ACTRIS Czech Republic'),
(135503, 107187, 'cs', 'name', 'ACTRIS – ĆŗÄast ČeskĆ© republiky'),
(135504, 107188, 'de', 'name', 'Klinikum Gƶrlitz'),
(135505, 107189, 'en', 'name', 'Naval Research Laboratory Tactical Electronic Warfare Division'),
(135506, 107190, 'no_lang_code', 'name', 'Unidade de SaĆŗde Familiar Joane (Portugal)'),
(135507, 107191, 'en', 'name', 'Sona College of Technology'),
(135508, 107192, 'pt', 'name', 'CĆ¢mara Municipal de Tondela'),
(135509, 107193, 'no_lang_code', 'name', 'Partex Oil and Gas Holdings Corp (Portugal)'),
(135510, 107194, 'pt', 'name', 'Câmara Municipal do Fundão'),
(135511, 107195, 'no_lang_code', 'name', 'DXC Technology (United States)'),
(135512, 107196, 'pt', 'name', 'Centro de Investigação em Teologia e Estudos da Religião'),
(135513, 107197, 'pt', 'name', 'Centro de Toxicogenómica e Saúde Humana'),
(135514, 107198, 'pt', 'name', 'Junta de Freguesia de SĆ£o Domingos de Benfica'),
(135515, 107199, 'fr', 'name', 'SociƩtƩ ArithmƩtique de Bordeaux'),
(135516, 107200, 'pt', 'name', 'Comunidade Intermunicipal do Alto TĆ¢mega e Barroso'),
(135517, 107201, 'en', 'name', 'ESSCA School of Management'),
(135518, 107202, 'pt', 'name', 'Centro de Instrumentação Científica'),
(135519, 107203, 'pt', 'name', 'Centro de Investigação Paula Frassinetti'),
(135520, 107204, 'no_lang_code', 'name', 'J. Pereira da Cruz, S.A .(Portugal)'),
(135521, 107205, 'pt', 'name', 'Centro de Documentação Europeia'),
(135522, 107206, 'en', 'name', 'Amsterdam Movement Sciences'),
(135523, 107207, 'no_lang_code', 'name', 'Sistemas e Informação GeogrÔfica, S.A. (Portugal)'),
(135524, 107208, 'en', 'name', 'SPI Research Centre'),
(135525, 107209, 'pt', 'name', 'Museu Nacional Soares dos Reis'),
(135526, 107210, 'en', 'name', 'Baikal State University'),
(135527, 107210, 'mn', 'name', 'Байгалийн Улсын Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŠøŠ¹Š³'),
(135528, 107210, 'ru', 'name', 'Š‘Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(135529, 107210, 'zh', 'name', 'č“åŠ å°”å›½ē«‹å¤§å­¦'),
(135530, 107211, 'pt', 'name', 'Aerogare Civil das Lajes'),
(135531, 107212, 'no_lang_code', 'name', 'MPO Portugal (Portugal)'),
(135532, 107213, 'nl', 'name', 'Universitair Ziekenhuis Brussel'),
(135533, 107214, 'en', 'name', 'Tampere University'),
(135534, 107214, 'fi', 'name', 'Tampereen Yliopisto'),
(135535, 107215, 'pt', 'name', 'Sociedade Portuguesa de Geotecnia'),
(135536, 107216, 'pt', 'name', 'Pólo de Inovação em Engenharia de Polímeros'),
(135537, 107217, 'pt', 'name', 'Instituto de Direito Económico Financeiro e Fiscal'),
(135538, 107218, 'en', 'name', 'Zhejiang Provincial Health Commission'),
(135539, 107218, 'zh', 'name', 'ęµ™ę±Ÿēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(135540, 107219, 'no_lang_code', 'name', 'McKinsey and Company (Portugal)'),
(135541, 107220, 'en', 'name', 'All India Institute of Medical Sciences, Rajkot'),
(135542, 107221, 'pt', 'name', 'Instituto de Historia da Arte'),
(135543, 107222, 'en', 'name', 'Ecological University of Bucharest'),
(135544, 107222, 'ro', 'name', 'Universitatea Ecologica din Bucuresti'),
(135545, 107223, 'no_lang_code', 'name', 'Cabopol Polymer Compounds (Portugal)'),
(135546, 107224, 'no_lang_code', 'name', 'Servier Portugal Especialidades FarmacĆŖuticas (Portugal)'),
(135547, 107225, 'en', 'name', 'Program for the Development of Basic Sciences'),
(135548, 107225, 'es', 'name', 'Programa de Desarrollo de las Ciencias BƔsicas'),
(135549, 107226, 'no_lang_code', 'name', 'Bristol-Myers Squibb (United States)'),
(135550, 107227, 'pt', 'name', 'Ar.Co Centro de Arte e Comunicação Visual'),
(135551, 107228, 'en', 'name', 'Washington State Department of Enterprise Services'),
(135552, 107229, 'pt', 'name', 'Centro de Gestão Empresa Agrícola Entre Douro e CÓa'),
(135553, 107230, 'pt', 'name', 'Fundação Átrio da Música'),
(135554, 107231, 'no_lang_code', 'name', 'Daiichi Sankyo (Portugal)'),
(135555, 107232, 'pt', 'name', 'Reactor Português de Investigação'),
(135556, 107233, 'pt', 'name', 'Federação Portuguesa de Futebol'),
(135557, 107234, 'pt', 'name', 'Centro de Arqueologia'),
(135558, 107235, 'fr', 'name', 'Structure FƩdƩrative de Recherche Biosciences'),
(135559, 107236, 'en', 'name', 'NOVA School of Business and Economics'),
(135560, 107237, 'pt', 'name', 'Direção Regional da Cultura'),
(135561, 107238, 'pt', 'name', 'Observatório de Economia e Gestão de Fraude'),
(135562, 107239, 'no_lang_code', 'name', 'Carlos Pinto de Abreu e Associados (Portugal)'),
(135563, 107240, 'pt', 'name', 'Fórum Oceano Associação da Economia do Mar'),
(135564, 107241, 'no_lang_code', 'name', 'CAETSU TWO (Portugal)'),
(135565, 107242, 'ru', 'name', 'ALT Университет имени ŠœŃƒŃ…амеГжана Š¢Ń‹Š½Ń‹ŃˆŠæŠ°ŠµŠ²Š°'),
(135566, 107242, 'en', 'name', 'Mukhametzhan Tynyshbayev ALT University'),
(135567, 107242, 'kk', 'name', 'ŠœŅ±Ń…Š°Š¼ŠµŃ‚Š¶Š°Š½ Š¢Ń‹Š½Ń‹ŃˆŠ±Š°ŠµŠ² атынГағы ALT ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(135568, 107243, 'pt', 'name', 'Escola Artística do Conservatório de Música Calouste Gulbenkian de Braga'),
(135569, 107244, 'fr', 'name', 'Interactions HÓtes-Pathogènes-Environnements'),
(135570, 107245, 'en', 'name', 'HódmezővĆ”sĆ”rhely-Makó Healthcare Center'),
(135571, 107245, 'hu', 'name', 'HódmezővĆ”sĆ”rhelyi-Makói EgĆ©szsĆ©gügyi Kƶzpont'),
(135572, 107246, 'pt', 'name', 'Instituto de Estudos Medievais'),
(135573, 107247, 'pt', 'name', 'Observatório do Mar dos Açores'),
(135574, 107248, 'en', 'name', 'BUILT CoLAB'),
(135575, 107249, 'no_lang_code', 'name', 'PricewaterhouseCoopers (United Kingdom)'),
(135576, 107250, 'en', 'name', 'Institute of Advanced Materials'),
(135577, 107251, 'pt', 'name', 'Cooperativa de Ensino UniversitƔrio CRL'),
(135578, 107252, 'no_lang_code', 'name', 'Distrifarma Companhia de Distribuição Farmacêutica (Portugal)'),
(135579, 107253, 'no_lang_code', 'name', 'Servensino (Portugal)'),
(135580, 107254, 'pt', 'name', 'Plataforma Tecnológica Portuguesa da Construção'),
(135581, 107255, 'en', 'name', 'Complexity and Topology in Quantum Matter'),
(135582, 107256, 'pt', 'name', 'Sociedade Portuguesa de Enfermagem Oncológica'),
(135583, 107257, 'no_lang_code', 'name', 'Mulher Avestruz ProduƧƵes e Eventos (Portugal)'),
(135584, 107258, 'en', 'name', 'Tashkent International University'),
(135585, 107258, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет'),
(135586, 107259, 'en', 'name', 'Houston Christian University'),
(135587, 107260, 'fr', 'name', 'Edition, LittƩratures, Langages, Informatique, Arts, Didactiques, Discours'),
(135588, 107261, 'pt', 'name', 'SPACE Portugal'),
(135589, 107262, 'no_lang_code', 'name', 'Blue Geo Lighthouse (Portugal)'),
(135590, 107263, 'en', 'name', 'Leibniz Institute for Natural Product Research and Infection Biology - Hans Knƶll Institute (HKI)'),
(135591, 107263, 'de', 'name', 'Leibniz-Institut für Naturstoff-Forschung und Infektionsbiologie e. V. - Hans-Knöll-Institut (HKI)'),
(135592, 107264, 'en', 'name', 'Ecotec University'),
(135593, 107264, 'es', 'name', 'Universidad Ecotec'),
(135594, 107265, 'en', 'name', 'Langford Research Institute'),
(135595, 107266, 'no_lang_code', 'name', 'Portimonense Futebol SAD (Portugal)'),
(135596, 107267, 'en', 'name', 'International Medical Center in Jeddah'),
(135597, 107267, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų·ŲØŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠ ŲØŲ¬ŲÆŲ©'),
(135598, 107268, 'no_lang_code', 'name', 'Media Invest (Portugal)'),
(135599, 107269, 'pt', 'name', 'Centro de Investigação de Direito Privado'),
(135600, 107270, 'no_lang_code', 'name', 'Bayer (Portugal)'),
(135601, 107271, 'pt', 'name', 'Sociedade Portuguesa de Filosofia'),
(135602, 107272, 'en', 'name', 'Fulbright Portugal'),
(135603, 107273, 'no_lang_code', 'name', 'Atlantik Fish (Portugal)'),
(135604, 107274, 'en', 'name', 'Zambia Information and Communications Technology Authority (ZICTA)'),
(135605, 107275, 'en', 'name', 'Lajes Airman and Family Readiness Center'),
(135606, 107276, 'no_lang_code', 'name', 'Pierre Fabre (Portugal)'),
(135607, 107277, 'fr', 'name', 'Institut d''Etudes Politiques de Paris'),
(135608, 107278, 'no_lang_code', 'name', 'SHL Portugal (Portugal)'),
(135609, 107279, 'en', 'name', 'Baldwin Wallace University'),
(135610, 107280, 'no_lang_code', 'name', 'Lundbeck (Portugal)'),
(135611, 107281, 'pt', 'name', 'CĆ¢mara Municipal de Mafra'),
(135612, 107282, 'no_lang_code', 'name', 'Grupo Italfarmaco (Portugal)'),
(135613, 107283, 'no_lang_code', 'name', 'Medjournal (Portugal)'),
(135614, 107284, 'en', 'name', 'Space & Earth Geodetic Analysis Laboratory'),
(135615, 107285, 'en', 'name', 'Zimbabwe Library Association (ZimLA)'),
(135616, 107286, 'no_lang_code', 'name', 'Printipo Indústrias GrÔficas (Portugal)'),
(135617, 107287, 'de', 'name', 'Institut für Automatisierungstechnik'),
(135618, 107287, 'en', 'name', 'Institute of Automation'),
(135619, 107288, 'no_lang_code', 'name', 'Octapharma Produtos FarmacĆŖuticos (Portugal)'),
(135620, 107289, 'en', 'name', 'Suzhou Institute of Nano-tech and Nano-bionics'),
(135621, 107289, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č‹å·žēŗ³ē±³ęŠ€ęœÆäøŽēŗ³ē±³ä»æē”Ÿē ”ē©¶ę‰€'),
(135622, 107290, 'pt', 'name', 'Instituto JurĆ­dico Portucalense'),
(135623, 107291, 'pt', 'name', 'Sociedade Portuguesa de Oftalmologia'),
(135624, 107292, 'no_lang_code', 'name', 'Formasau Formação e Saúde (Portugal)'),
(135625, 107293, 'pt', 'name', 'Jardim Botânico da Madeira Engenheiro Rui Vieira'),
(135626, 107294, 'pt', 'name', 'Centro de Investigação em Materiais'),
(135627, 107295, 'no_lang_code', 'name', 'TNA Tecnologia e Nutrição Animal (Portugal)'),
(135628, 107296, 'en', 'name', 'Heart Center Dresden, University Hospital'),
(135629, 107296, 'de', 'name', 'Herzzentrum Dresden Universitaetsklinik'),
(135630, 107297, 'pt', 'name', 'Crescer na Maior Associação de Intervenção ComunitÔria'),
(135631, 107298, 'no_lang_code', 'name', 'Terraprima (Portugal)'),
(135632, 107299, 'es', 'name', 'Universidad Tecnológica de la Región Centro de Coahuila'),
(135633, 107300, 'pt', 'name', 'CĆ¢mara Municipal de Vendas Novas'),
(135634, 107301, 'en', 'name', 'ProChild CoLAB'),
(135635, 107302, 'en', 'name', 'Massachusetts College of Pharmacy and Health Sciences'),
(135636, 107303, 'no_lang_code', 'name', 'SGS Portugal (Portugal)'),
(135637, 107304, 'pt', 'name', 'Sociedade Portuguesa de Neuropediatria'),
(135638, 107305, 'fr', 'name', 'Centre de REcherche En Gestion des Organisations'),
(135639, 107306, 'no_lang_code', 'name', 'VilaWork Barcelos Business Center (Portugal)'),
(135640, 107307, 'it', 'name', 'Regional Science Association International'),
(135641, 107308, 'no_lang_code', 'name', 'Fresenius Medical Care North America (United States)'),
(135642, 107309, 'en', 'name', 'The People''s Government of Liaoning Province'),
(135643, 107309, 'zh', 'name', 'č¾½å®ēœäŗŗę°‘ę”æåŗœ'),
(135644, 107310, 'en', 'name', 'Lisbon Institute of Global Mental Health'),
(135645, 107311, 'en', 'name', 'Silesian University in Opava'),
(135646, 107311, 'cs', 'name', 'SlezskĆ” univerzita v Opavě'),
(135647, 107312, 'fr', 'name', 'Institut d’Optique Graduate School'),
(135648, 107313, 'no_lang_code', 'name', 'SGS (Switzerland)'),
(135649, 107313, 'fr', 'name', 'SociƩtƩ GƩnƩrale de Surveillance'),
(135650, 107314, 'ca', 'name', 'Institut de Robòtica i Informàtica Industrial'),
(135651, 107314, 'en', 'name', 'Institute of Robotics and Industrial Informatics'),
(135652, 107314, 'es', 'name', 'Instituto de Robótica e InformÔtica Industrial'),
(135653, 107315, 'en', 'name', 'All India Institute of Medical Sciences, Mangalagiri'),
(135654, 107316, 'pt', 'name', 'Centro NOVAFRICA'),
(135655, 107317, 'pt', 'name', 'Instituto Jurídico da Comunicação'),
(135656, 107318, 'pt', 'name', 'MOVELTEX Centro de Competências e de Incubação de Empresas'),
(135657, 107319, 'pt', 'name', 'Centro de Investigação em Ciências da Construção'),
(135658, 107320, 'de', 'name', 'Gesellschaft für Klinische Forschung'),
(135659, 107321, 'pt', 'name', 'Sociedade Portuguesa de Farmacologia'),
(135660, 107322, 'no_lang_code', 'name', 'Tonic App (Portugal)'),
(135661, 107323, 'pt', 'name', 'Instituto de Direito das Empresas e do Trabalho'),
(135662, 107324, 'pt', 'name', 'Centro de Investigação em Desporto Educação Física Exercício e Saúde'),
(135663, 107325, 'en', 'name', 'Carnegie Mellon Portugal'),
(135664, 107326, 'pt', 'name', 'Centro de Investigação Tecnológica do Algarve'),
(135665, 107327, 'es', 'name', 'Universidad de GuantƔnamo'),
(135666, 107327, 'en', 'name', 'University of Guantanamo'),
(135667, 107328, 'pt', 'name', 'Consultores de LĆ­nguas'),
(135668, 107329, 'pt', 'name', 'Academia Livre de PMC-Conservatório Interativo'),
(135669, 107330, 'es', 'name', 'Fundación Síndrome de Dravet'),
(135670, 107331, 'pt', 'name', 'Sociedade Portuguesa de Sexologia ClĆ­nica'),
(135671, 107332, 'pt', 'name', 'echLab Centro de Investigação em Tecnologias'),
(135672, 107333, 'en', 'name', 'Anatolii Pidhornyi Institute of Power Machines and Systems'),
(135673, 107333, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ енергетичних машин і систем ім. А. М. ŠŸŃ–Š“Š³Š¾Ń€Š½Š¾Š³Š¾'),
(135674, 107334, 'en', 'name', 'Kohzu Precision Co., Ltd. (Japan)'),
(135675, 107334, 'ja', 'name', 'ē„žę“„ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(135676, 107335, 'en', 'name', 'National Brain Imaging Network'),
(135677, 107336, 'pt', 'name', 'Laboratório de Energia Solar'),
(135678, 107337, 'en', 'name', 'Molecular Structural and Cellular Microbiology'),
(135679, 107338, 'en', 'name', 'Boston College'),
(135680, 107339, 'en', 'name', 'The University of Texas at Tyler'),
(135681, 107340, 'en', 'name', 'California Walnut Growers Association'),
(135682, 107341, 'en', 'name', 'University of Alabama at Birmingham'),
(135683, 107341, 'fr', 'name', 'UniversitƩ d''alabama Ơ birmingham'),
(135684, 107342, 'no_lang_code', 'name', 'Hilti (Liechtenstein)'),
(135685, 107343, 'en', 'name', 'Johannes Kepler University of Linz'),
(135686, 107343, 'de', 'name', 'Johannes Kepler UniversitƤt Linz'),
(135687, 107344, 'en', 'name', 'University of Missouri System'),
(135688, 107345, 'en', 'name', 'Centre for Economic Policy Research'),
(135689, 107346, 'en', 'name', 'Advanced Centre for Treatment, Research and Education in Cancer'),
(135690, 107347, 'en', 'name', 'Egyptian Ministry of Environment'),
(135691, 107347, 'ar', 'name', 'وزارة Ų§Ł„ŲØŁŠŲ¦Ų©- جهاز Ų“Ų¦ŁˆŁ† Ų§Ł„ŲØŁŠŲ¦Ų©Ų§Ł„Ł…Ų¹Ų§ŲÆŁ‰'),
(135692, 107348, 'es', 'name', 'Universidad de Dakota del Sur'),
(135693, 107348, 'en', 'name', 'University of South Dakota'),
(135694, 107348, 'fr', 'name', 'UniversitƩ du Dakota du Sud'),
(135695, 107349, 'es', 'name', 'Bioef - Fundación Vasca de Innovación e Investigación Sanitarias'),
(135696, 107350, 'en', 'name', 'Bureau of Meteorology'),
(135697, 107351, 'de', 'name', 'Salzburger Landeskliniken'),
(135698, 107352, 'en', 'name', 'Naito Foundation'),
(135699, 107352, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå†…č—¤čØ˜åæµē§‘å­¦ęŒÆčˆˆč²”å›£'),
(135700, 107353, 'en', 'name', 'European Forest Institute'),
(135701, 107354, 'en', 'name', 'Institution of Engineers'),
(135702, 107355, 'es', 'name', 'Instituto Nacional de CardiologĆ­a'),
(135703, 107355, 'en', 'name', 'National Institute of Cardiology'),
(135704, 107356, 'en', 'name', 'National Institute of Technology Agartala'),
(135705, 107356, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, अगरतला'),
(135706, 107356, 'bn', 'name', 'ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø, আগরতলা'),
(135707, 107357, 'no_lang_code', 'name', 'Biosensors International Group (Singapore)'),
(135708, 107358, 'en', 'name', 'Purdue University System'),
(135709, 107359, 'no_lang_code', 'name', 'Elkem (Norway)'),
(135710, 107360, 'es', 'name', 'Universidad de Santiago de Chile'),
(135711, 107360, 'en', 'name', 'University of Santiago Chile'),
(135712, 107361, 'no_lang_code', 'name', 'GKN (United Kingdom)'),
(135713, 107362, 'en', 'name', 'Ministry of External Affairs'),
(135714, 107363, 'en', 'name', 'Nature Research Centre'),
(135715, 107364, 'en', 'name', 'Ministry of Education and Research'),
(135716, 107364, 'sv', 'name', 'Utbildningsdepartementet'),
(135717, 107365, 'en', 'name', 'Bioplatforms Australia'),
(135718, 107366, 'en', 'name', 'Hong Kong Polytechnic University'),
(135719, 107366, 'zh', 'name', '香港理巄大學'),
(135720, 107367, 'en', 'name', 'China Earthquake Administration'),
(135721, 107367, 'zh', 'name', 'äø­å›½åœ°éœ‡å±€'),
(135722, 107368, 'en', 'name', 'University of Catania'),
(135723, 107368, 'it', 'name', 'UniversitĆ  degli Studi di Catania'),
(135724, 107368, 'de', 'name', 'UniversitƤt Catania'),
(135725, 107368, 'fr', 'name', 'UniversitƩ de catane'),
(135726, 107369, 'en', 'name', 'Foundation for Rural and Regional Renewal'),
(135727, 107370, 'cy', 'name', 'Prifysgol Bryste'),
(135728, 107370, 'en', 'name', 'University of Bristol'),
(135729, 107371, 'en', 'name', 'Fushun Seismological Bureau'),
(135730, 107371, 'zh', 'name', 'ęŠšé”ŗåø‚åœ°éœ‡å±€'),
(135731, 107372, 'fr', 'name', 'Commission des subventions aux universitƩs'),
(135732, 107372, 'en', 'name', 'University Grants Commission'),
(135733, 107372, 'hi', 'name', 'ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤…ą¤Øą„ą¤¦ą¤¾ą¤Ø ą¤†ą¤Æą„‹ą¤—'),
(135734, 107372, 'bn', 'name', 'ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą¦®ą¦žą§ą¦œą§ą¦°ą¦æ কমিশন'),
(135735, 107372, 'pa', 'name', 'ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ąØ—ą©ąØ°ąØ¾ąØ‚ąØŸ ਕਮਿਸ਼ਨ'),
(135736, 107372, 'ta', 'name', 'ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®• ą®®ą®¾ą®©ą®æą®Æą®•ąÆ குஓு'),
(135737, 107372, 'ml', 'name', 'ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą“—ąµą“°ą“¾ą“Øąµą“±ąµą“øąµ ą“•ą“®ąµą“®ąµ€ą“·ąµ»'),
(135738, 107373, 'es', 'name', 'Universidad de Pittsburgh'),
(135739, 107373, 'en', 'name', 'University of Pittsburgh'),
(135740, 107373, 'fr', 'name', 'UniversitƩ de Pittsburgh'),
(135741, 107374, 'no_lang_code', 'name', 'AstraZeneca (France)'),
(135742, 107375, 'en', 'name', 'Health Canada'),
(135743, 107375, 'fr', 'name', 'SantƩ Canada'),
(135744, 107376, 'de', 'name', 'Rheinische Friedrich-Wilhelms-UniversitƤt Bonn'),
(135745, 107376, 'en', 'name', 'University of Bonn'),
(135746, 107377, 'en', 'name', 'Empowers Africa'),
(135747, 107378, 'en', 'name', 'American Quarter Horse Association'),
(135748, 107379, 'en', 'name', 'George Washington University'),
(135749, 107379, 'es', 'name', 'Universidad George Washington'),
(135750, 107380, 'en', 'name', 'JSS Academy of Higher Education and Research'),
(135751, 107381, 'en', 'name', 'Institute of Oceanology. PP Shirshov Russian Academy of Sciences'),
(135752, 107381, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ океанологии имени П. П. ŠØŠøŃ€ŃˆŠ¾Š²Š°'),
(135753, 107382, 'es', 'name', 'Universidad de Carolina del Sur'),
(135754, 107382, 'en', 'name', 'University of South Carolina'),
(135755, 107382, 'fr', 'name', 'UniversitƩ de caroline du sud'),
(135756, 107383, 'de', 'name', 'Deutsches Krebsforschungszentrum'),
(135757, 107383, 'en', 'name', 'German Cancer Research Center'),
(135758, 107384, 'de', 'name', 'Deutsche Sporthochschule Kƶln'),
(135759, 107384, 'en', 'name', 'German Sport University Cologne'),
(135760, 107385, 'en', 'name', 'Danish Energy Agency'),
(135761, 107385, 'da', 'name', 'Energistyrelsen'),
(135762, 107386, 'en', 'name', 'Fatih University'),
(135763, 107386, 'tr', 'name', 'Fatih Üniversitesi'),
(135764, 107387, 'no_lang_code', 'name', 'Merck (Germany)'),
(135765, 107388, 'en', 'name', 'United Nations Environment Programme'),
(135766, 107389, 'en', 'name', 'University of Notre Dame'),
(135767, 107389, 'fr', 'name', 'UniversitƩ notre-dame'),
(135768, 107390, 'es', 'name', 'Universidad SEK'),
(135769, 107391, 'en', 'name', 'Federal University of Grande Dourados'),
(135770, 107391, 'es', 'name', 'Universidad Federal de Grande Dourados'),
(135771, 107391, 'pt', 'name', 'Universidade Federal da Grande Dourados'),
(135772, 107391, 'fr', 'name', 'UniversitƩ FƩdƩrale de Grande Dourados'),
(135773, 107392, 'en', 'name', 'Urakami Food and Food Culture Promotion Foundation'),
(135774, 107392, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęµ¦äøŠé£Ÿå“é£Ÿę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(135775, 107393, 'en', 'name', 'Agricultural University Plovdiv'),
(135776, 107393, 'bg', 'name', 'Аграрен Университет'),
(135777, 107394, 'en', 'name', 'Indian Institute of Technology Bombay'),
(135778, 107394, 'fr', 'name', 'Institut indien de technologie de bombay'),
(135779, 107394, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾, ą¤®ą„ą¤‚ą¤¬ą¤ˆ'),
(135780, 107394, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą„ą¤®ą„ą¤¬ą¤ˆ'),
(135781, 107394, 'pa', 'name', 'ਇੰਔੀਅਨ ąØ‡ą©°ąØøąØŸą©€ąØšąØæąØŠąØŸ ਆਫ਼ ąØŸą©ˆąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€'),
(135782, 107394, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®®ąÆą®®ąÆą®ŖąÆˆ'),
(135783, 107394, 'te', 'name', 'ą°ą°ą°Ÿą±€ బాంబే'),
(135784, 107394, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“¬ąµ‹ą“‚ą“¬ąµ†'),
(135785, 107395, 'en', 'name', 'Catalan Institute for Water Research'),
(135786, 107395, 'es', 'name', 'Instituto Catalan de Investigacion del Agua'),
(135787, 107396, 'en', 'name', 'International Union of Pure and Applied Physics'),
(135788, 107397, 'no_lang_code', 'name', 'Empresa Nacional de Residuos Radiactivos'),
(135789, 107398, 'en', 'name', 'Curtin University'),
(135790, 107399, 'es', 'name', 'Universidad del Pacifico'),
(135791, 107399, 'en', 'name', 'University of the Pacific'),
(135792, 107400, 'no_lang_code', 'name', 'Almirall (Spain)'),
(135793, 107401, 'en', 'name', 'Singapore University of Technology and Design'),
(135794, 107401, 'zh', 'name', 'ę–°åŠ å”ē§‘ęŠ€č®¾č®”å¤§å­¦'),
(135795, 107402, 'en', 'name', 'Towson University'),
(135796, 107403, 'no_lang_code', 'name', 'Topcon (Netherlands)'),
(135797, 107404, 'es', 'name', 'Universidad de Lima'),
(135798, 107404, 'en', 'name', 'University of Lima'),
(135799, 107405, 'en', 'name', 'University of Dundee'),
(135800, 107406, 'ms', 'name', 'Universiti Teknologi Brunei'),
(135801, 107407, 'en', 'name', 'University of Minnesota'),
(135802, 107408, 'es', 'name', 'Consejería de Inclusión Social, Juventud, Familias e Igualdad'),
(135803, 107409, 'en', 'name', 'University of Nis'),
(135804, 107409, 'sr', 'name', 'Универзитет у ŠŠøŃˆŃƒ'),
(135805, 107410, 'en', 'name', 'Indian Institute of Chemical Biology'),
(135806, 107411, 'pl', 'name', 'Instytut Farmakologii im. Jerzego Maja Polskiej Akademii Nauk'),
(135807, 107411, 'en', 'name', 'Maj Institute of Pharmacology'),
(135808, 107412, 'fi', 'name', 'Bergenin Yliopisto'),
(135809, 107412, 'la', 'name', 'Universitas Bergensis'),
(135810, 107412, 'no', 'name', 'Universitetet i Bergen'),
(135811, 107412, 'en', 'name', 'University of Bergen'),
(135812, 107413, 'tr', 'name', 'Sağlık Bilimleri Üniversitesi'),
(135813, 107413, 'en', 'name', 'University of Health Sciences'),
(135814, 107414, 'en', 'name', 'U-M Rogel Cancer Center'),
(135815, 107415, 'no', 'name', 'Sykehuset i Vestfold'),
(135816, 107415, 'en', 'name', 'Vestfold Hospital Trust'),
(135817, 107416, 'en', 'name', 'Ministry of Energy'),
(135818, 107416, 'th', 'name', 'ąøąø£ąø°ąø—ąø£ąø§ąø‡ąøžąø„ąø±ąø‡ąø‡ąø²ąø™'),
(135819, 107417, 'hu', 'name', 'BƩcsi Egyetem'),
(135820, 107417, 'hr', 'name', 'SveučiliŔte u Beču'),
(135821, 107417, 'en', 'name', 'University of Vienna'),
(135822, 107417, 'de', 'name', 'UniversitƤt Wien'),
(135823, 107417, 'sl', 'name', 'Univerza na Dunaju'),
(135824, 107418, 'en', 'name', 'Medical University of South Carolina'),
(135825, 107419, 'sv', 'name', 'Svenska Frimurare Orden'),
(135826, 107420, 'en', 'name', 'British Broadcasting Corporation (United Kingdom)'),
(135827, 107421, 'pt', 'name', 'Sociedade Portuguesa de Diabetologia'),
(135828, 107422, 'no_lang_code', 'name', 'Turkish Aerospace Industries (Turkey)'),
(135829, 107422, 'tr', 'name', 'Türk Havacılık ve Uzay Sanayii'),
(135830, 107423, 'es', 'name', 'Universidad de Minnesota'),
(135831, 107423, 'en', 'name', 'University of Minnesota System'),
(135832, 107423, 'fr', 'name', 'UniversitƩ du Minnesota'),
(135833, 107424, 'af', 'name', 'Universiteit van Kaapstad'),
(135834, 107424, 'en', 'name', 'University of Cape Town'),
(135835, 107424, 'xh', 'name', 'iYunivesithi yaseKapa'),
(135836, 107425, 'es', 'name', 'Sociedad para el Desarrollo Regional de Cantabria'),
(135837, 107425, 'en', 'name', 'Sodercan'),
(135838, 107426, 'da', 'name', 'Aarhus Universitet'),
(135839, 107426, 'en', 'name', 'Aarhus University'),
(135840, 107427, 'en', 'name', 'Toronto Metropolitan University'),
(135841, 107428, 'en', 'name', 'International Institute of Information Technology, Hyderabad'),
(135842, 107428, 'hi', 'name', 'ą¤…ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(135843, 107429, 'en', 'name', 'Vancouver Foundation'),
(135844, 107430, 'es', 'name', 'Universidad de BĆŗfalo'),
(135845, 107430, 'en', 'name', 'University at Buffalo, State University of New York'),
(135846, 107430, 'fr', 'name', 'UniversitĆ© d''Ɖtat de new york Ć  buffalo'),
(135847, 107431, 'es', 'name', 'Departamento de Salud'),
(135848, 107431, 'eu', 'name', 'Osasun Departamentua'),
(135849, 107432, 'ms', 'name', 'Universiti Malaya'),
(135850, 107432, 'en', 'name', 'University of Malaya'),
(135851, 107432, 'ta', 'name', 'மலாயா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(135852, 107432, 'th', 'name', 'ดหาวณทยาคัยดาคายา'),
(135853, 107432, 'zh', 'name', 'é©¬ę„äŗšå¤§å­¦'),
(135854, 107433, 'no_lang_code', 'name', 'Evonik (Germany)'),
(135855, 107434, 'es', 'name', 'Universidad Autónoma de Ciudad JuÔrez'),
(135856, 107435, 'en', 'name', 'Nitte University'),
(135857, 107436, 'fi', 'name', 'Lappeenranta-Lahti University of Technology'),
(135858, 107437, 'en', 'name', 'First Institute of Oceanography'),
(135859, 107438, 'en', 'name', 'John Jay College of Criminal Justice'),
(135860, 107439, 'en', 'name', 'University of Architecture, Civil Engineering and Geodesy');
INSERT INTO `ror_settings` VALUES
(135861, 107439, 'bg', 'name', 'Университет по Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š°, строителство Šø Š³ŠµŠ¾Š“ŠµŠ·ŠøŃ'),
(135862, 107440, 'es', 'name', 'Universidad de Vermont'),
(135863, 107440, 'en', 'name', 'University of Vermont'),
(135864, 107440, 'fr', 'name', 'UniversitƩ du vermont'),
(135865, 107441, 'mi', 'name', 'Te Whare Wānanga o Waitaha'),
(135866, 107441, 'en', 'name', 'University of Canterbury'),
(135867, 107442, 'en', 'name', 'Jaypee University of Information Technology'),
(135868, 107442, 'hi', 'name', 'ą¤œą„‡ą¤Ŗą„€ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤¤ą¤•ą¤Øą„€ą¤• ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(135869, 107443, 'en', 'name', 'Economic and Social Research Institute'),
(135870, 107444, 'en', 'name', 'Johns Hopkins Medicine'),
(135871, 107445, 'en', 'name', 'SingHealth'),
(135872, 107446, 'en', 'name', 'Agriculture and Horticulture Development Board'),
(135873, 107447, 'en', 'name', 'D’Or Institute for Research and Education'),
(135874, 107447, 'pt', 'name', 'Instituto D’Or de Pesquisa e Ensino'),
(135875, 107448, 'no_lang_code', 'name', 'Bayer (Germany)'),
(135876, 107449, 'en', 'name', 'Shiv Nadar Foundation'),
(135877, 107449, 'hi', 'name', 'शिव नादर ą¤«ą¤¾ą¤‰ą¤‚ą¤”ą„‡ą¤¶ą¤Ø'),
(135878, 107450, 'no_lang_code', 'name', 'The Navigator (Portugal)'),
(135879, 107451, 'en', 'name', 'University of Gdańsk'),
(135880, 107451, 'pl', 'name', 'Uniwersytet Gdański'),
(135881, 107452, 'en', 'name', 'Kansas State University'),
(135882, 107452, 'es', 'name', 'Universidad Estatal de Kansas'),
(135883, 107452, 'fr', 'name', 'UniversitĆ© d''Ɖtat du kansas'),
(135884, 107453, 'en', 'name', 'Ministry of Higher Education And Scientific Research'),
(135885, 107453, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ Ų§Ł„Ų³ŁˆŲÆŲ§Ł†'),
(135886, 107454, 'en', 'name', 'Mutah University'),
(135887, 107454, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų¤ŲŖŲ©'),
(135888, 107455, 'en', 'name', 'G.B. Pant Institute of Himalayan Environment and Development'),
(135889, 107456, 'en', 'name', 'Ministry of Interior'),
(135890, 107457, 'en', 'name', 'Indian Institute of Advanced Research'),
(135891, 107458, 'cy', 'name', 'Prifysgol Surrey'),
(135892, 107458, 'en', 'name', 'University of Surrey'),
(135893, 107459, 'no_lang_code', 'name', 'RTX (United States)'),
(135894, 107460, 'en', 'name', 'Institute of Soil Science and Plant Cultivation'),
(135895, 107461, 'no_lang_code', 'name', 'Henkel (Germany)'),
(135896, 107462, 'en', 'name', 'Office of the Principal Scientific Adviser'),
(135897, 107463, 'pl', 'name', 'Akademia Obrony Narodowej'),
(135898, 107463, 'en', 'name', 'National Defence University of Warsaw'),
(135899, 107464, 'en', 'name', 'Koch Institute for Integrative Cancer Research At MIT'),
(135900, 107465, 'es', 'name', 'Corporación Ecuatoriana para el Desarrollo de la Investigación y la Academia'),
(135901, 107465, 'en', 'name', 'Ecuadorian Corporation for the Development of Research and Academia'),
(135902, 107466, 'en', 'name', 'Academic Computer Centre Cyfronet AGH'),
(135903, 107466, 'pl', 'name', 'Akademickie Centrum Komputerowe Cyfronet AGH'),
(135904, 107467, 'en', 'name', 'Sefako Makgatho Health Sciences University'),
(135905, 107468, 'en', 'name', 'Japan International Cooperation Agency'),
(135906, 107468, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½éš›å”åŠ›ę©Ÿę§‹'),
(135907, 107469, 'es', 'name', 'ConsejerĆ­a de Salud y Consumo'),
(135908, 107470, 'en', 'name', 'Indian Agricultural Statistics Research Institute'),
(135909, 107470, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤øą¤¾ą¤‚ą¤–ą„ą¤Æą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(135910, 107471, 'no_lang_code', 'name', 'Guam Sea Grant'),
(135911, 107472, 'en', 'name', 'Queensland Department of Environment and Science'),
(135912, 107473, 'no_lang_code', 'name', 'Tessa Therapeutic (Singapore)'),
(135913, 107474, 'en', 'name', 'Medical University of Białystok'),
(135914, 107474, 'pl', 'name', 'Uniwersytet Medyczny w Białymstoku'),
(135915, 107475, 'en', 'name', 'Indian Institute of Technology Hyderabad'),
(135916, 107475, 'fr', 'name', 'Institut de technologie indien d''hyderabad'),
(135917, 107475, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(135918, 107475, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ஐதராபாது'),
(135919, 107475, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°¹ą±ˆą°¦ą°°ą°¾ą°¬ą°¾ą°¦ą±'),
(135920, 107475, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ą“±ą“æą“±ą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“•ąµ†ą“®ą“æą“•ąµą“•ąµ½ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(135921, 107476, 'en', 'name', 'California Polytechnic State University'),
(135922, 107476, 'es', 'name', 'Universidad PolitƩcnica Estatal de California'),
(135923, 107476, 'fr', 'name', 'UniversitĆ© d''Ɖtat polytechnique de californie'),
(135924, 107477, 'en', 'name', 'Indian Institute of Technology Jammu'),
(135925, 107478, 'en', 'name', 'Competence Center Energy and Mobility'),
(135926, 107478, 'de', 'name', 'Kompetenzzentrum für Energie und Mobilität'),
(135927, 107479, 'no_lang_code', 'name', 'AstraZeneca (Poland)'),
(135928, 107480, 'no_lang_code', 'name', 'Mundipharma (United Kingdom)'),
(135929, 107481, 'no_lang_code', 'name', 'State Grid Corporation of China (China)'),
(135930, 107481, 'zh', 'name', 'å›½å®¶ē”µē½‘å…¬åø'),
(135931, 107482, 'en', 'name', 'Middle East University'),
(135932, 107482, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الؓرق Ų§Ł„Ų£ŁˆŲ³Ų·'),
(135933, 107483, 'no_lang_code', 'name', 'OCP Group (Morocco)'),
(135934, 107483, 'fr', 'name', 'Office chƩrifien des phosphates'),
(135935, 107483, 'ar', 'name', 'Ų§Ł„Ł…ŁƒŲŖŲØ Ų§Ł„Ų“Ų±ŁŠŁ Ł„Ł„ŁŁˆŲ³ŁŲ§Ų·'),
(135936, 107484, 'en', 'name', 'Heilongjiang Provincial Science and Technology Department'),
(135937, 107484, 'zh', 'name', 'é»‘é¾™ę±Ÿēœē§‘ęŠ€åŽ…'),
(135938, 107485, 'pl', 'name', 'Politechnika Śląska'),
(135939, 107485, 'en', 'name', 'Silesian University of Technology'),
(135940, 107486, 'en', 'name', 'European Renal Association – European Dialysis and Transplant Association'),
(135941, 107487, 'no_lang_code', 'name', 'Solvay (Belgium)'),
(135942, 107488, 'en', 'name', 'Glasgow Caledonian University'),
(135943, 107489, 'en', 'name', 'South Eastern Sydney Local Health District'),
(135944, 107490, 'is', 'name', 'HĆ”skóli ƍslands'),
(135945, 107490, 'en', 'name', 'University of Iceland'),
(135946, 107491, 'nl', 'name', 'Jan Kornelis de Cock Stichting'),
(135947, 107492, 'en', 'name', 'Ministry of Agriculture'),
(135948, 107492, 'lv', 'name', 'Zemkopības ministrija'),
(135949, 107493, 'no_lang_code', 'name', 'General Electric (United Kingdom)'),
(135950, 107494, 'en', 'name', 'BI Norwegian Business School'),
(135951, 107495, 'en', 'name', 'Government of Jiangsu Province'),
(135952, 107496, 'en', 'name', 'Hausdorff Center for Mathematics'),
(135953, 107497, 'en', 'name', 'Shanghai Municipal Education Commission'),
(135954, 107498, 'af', 'name', 'Universiteit van die Vrystaat'),
(135955, 107498, 'en', 'name', 'University of the Free State'),
(135956, 107498, 'st', 'name', 'Yunivesithi ya Freistata'),
(135957, 107499, 'en', 'name', 'Cystic Fibrosis Ireland'),
(135958, 107500, 'en', 'name', 'National Taiwan University'),
(135959, 107501, 'no_lang_code', 'name', 'Robert Bosch (Australia)'),
(135960, 107502, 'en', 'name', 'China International Science and Technology Cooperation'),
(135961, 107502, 'zh', 'name', 'äø­å›½å›½é™…ē§‘ęŠ€åˆä½œē½‘'),
(135962, 107503, 'no_lang_code', 'name', 'Bayer (Canada)'),
(135963, 107504, 'en', 'name', 'University of Sri Jayewardenepura'),
(135964, 107504, 'ta', 'name', 'ą®øąÆą®°ąÆ€ ą®œą®Æą®µą®°ąÆą®¤ą®©ą®ŖąÆą®° ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(135965, 107504, 'si', 'name', 'ශ් රී ą¶¢ą¶ŗą·€ą¶»ą·Šą¶°ą¶±ą¶“ą·”ą¶» ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(135966, 107505, 'fr', 'name', 'Le ministère de la Santé'),
(135967, 107505, 'en', 'name', 'Saskatchewan Health'),
(135968, 107506, 'it', 'name', 'SocietĆ  Italiana dell’Ipertensione Arteriosa'),
(135969, 107507, 'no_lang_code', 'name', 'Asahi Glass (Japan)'),
(135970, 107507, 'ja', 'name', 'ę—­ē”å­'),
(135971, 107508, 'no_lang_code', 'name', 'CytoSorbents (Germany)'),
(135972, 107509, 'en', 'name', 'Institute for Plasma Research'),
(135973, 107509, 'hi', 'name', 'ą¤Ŗą„ą¤²ą¤¾ą¤œą„ą¤®ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(135974, 107510, 'no_lang_code', 'name', 'Pfizer (Ireland)'),
(135975, 107511, 'en', 'name', 'Colorado State University'),
(135976, 107511, 'es', 'name', 'Universidad Estatal de Colorado'),
(135977, 107511, 'fr', 'name', 'UniversitĆ© d''Ɖtat du colorado'),
(135978, 107512, 'en', 'name', 'Kırklareli University'),
(135979, 107512, 'tr', 'name', 'Kırklareli Üniversitesi'),
(135980, 107513, 'en', 'name', 'University of Illinois Chicago'),
(135981, 107513, 'fr', 'name', 'UniversitƩ de l''illinois Ơ chicago'),
(135982, 107514, 'en', 'name', 'King Abdulaziz University'),
(135983, 107514, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ²'),
(135984, 107515, 'en', 'name', 'Southern Centre For Inequality Studies'),
(135985, 107516, 'en', 'name', 'Siddaganga Institute of Technology'),
(135986, 107517, 'en', 'name', 'Mississippi State University'),
(135987, 107517, 'fr', 'name', 'UniversitĆ© d''Ɖtat du Mississippi'),
(135988, 107518, 'no_lang_code', 'name', 'Syngenta (Canada)'),
(135989, 107519, 'en', 'name', 'Marquette University'),
(135990, 107519, 'es', 'name', 'Universidad Marquette'),
(135991, 107520, 'en', 'name', 'University of Geneva'),
(135992, 107520, 'it', 'name', 'UniversitĆ  di Ginevra'),
(135993, 107520, 'fr', 'name', 'Université de Genève'),
(135994, 107521, 'en', 'name', 'Nunavut Wildlife Management Board'),
(135995, 107522, 'es', 'name', 'Generalidad Valenciana'),
(135996, 107522, 'ca', 'name', 'Generalitat Valenciana'),
(135997, 107523, 'en', 'name', 'Bielefeld University'),
(135998, 107523, 'de', 'name', 'UniversitƤt Bielefeld'),
(135999, 107524, 'en', 'name', 'Hungarian University of Agriculture and Life Sciences'),
(136000, 107524, 'hu', 'name', 'Magyar AgrĆ”r- Ć©s ƉlettudomĆ”nyi Egyetem'),
(136001, 107525, 'no_lang_code', 'name', 'Bracco (United States)'),
(136002, 107526, 'en', 'name', 'University of Kent'),
(136003, 107527, 'en', 'name', 'Spanish Clinical Research Network'),
(136004, 107528, 'en', 'name', 'University of Bern'),
(136005, 107528, 'it', 'name', 'UniversitĆ  di Berna'),
(136006, 107528, 'de', 'name', 'UniversitƤt Bern'),
(136007, 107528, 'fr', 'name', 'UniversitƩ de Berne'),
(136008, 107529, 'en', 'name', 'University of Maiduguri'),
(136009, 107529, 'yo', 'name', 'YunifÔsítì ìlú Màídúgùri'),
(136010, 107530, 'en', 'name', 'Duke University'),
(136011, 107530, 'es', 'name', 'Universidad de Duke'),
(136012, 107531, 'en', 'name', 'Pennsylvania State System of Higher Education'),
(136013, 107532, 'en', 'name', 'Foundation for Assistance to Small Innovative Enterprises in Science and Technology'),
(136014, 107533, 'en', 'name', 'Brown University'),
(136015, 107533, 'es', 'name', 'Universidad Brown'),
(136016, 107534, 'da', 'name', 'TrygFonden'),
(136017, 107535, 'en', 'name', 'Georgetown University'),
(136018, 107535, 'es', 'name', 'Universidad de Georgetown'),
(136019, 107535, 'fr', 'name', 'UniversitƩ de Georgetown'),
(136020, 107536, 'en', 'name', 'National Institute of Nutrition'),
(136021, 107536, 'te', 'name', 'ą°œą°¾ą°¤ą±€ą°Æ ą°Ŗą±Œą°·ą±ą°Ÿą°æą°•ą°¾ą°¹ą°¾ą°° పరిశోధన శాల'),
(136022, 107537, 'en', 'name', 'INTI International University'),
(136023, 107537, 'ms', 'name', 'Kolej Universiti Antarabangsa INTI'),
(136024, 107538, 'pt', 'name', 'Novartis Farma SA (Portugal)'),
(136025, 107539, 'en', 'name', 'Grosses LF Foghts Fund'),
(136026, 107540, 'en', 'name', 'Turkish Energy, Nuclear and Mineral Research Agency'),
(136027, 107540, 'tr', 'name', 'Türkiye Enerji Nükleer ve Maden Araştırma Kurumu'),
(136028, 107541, 'en', 'name', 'Bowling Green State University'),
(136029, 107541, 'es', 'name', 'Universidad Estatal de Bowling Green'),
(136030, 107541, 'fr', 'name', 'UniversitĆ© d''Ɖtat de bowling green'),
(136031, 107542, 'no_lang_code', 'name', 'Fresenius (Germany)'),
(136032, 107542, 'de', 'name', 'Fresenius SE & Co. KGaA'),
(136033, 107543, 'no_lang_code', 'name', 'Aimmune Therapeutics (United Kingdom)'),
(136034, 107544, 'en', 'name', 'Science and Technology Commission of Shanghai Municipality'),
(136035, 107545, 'en', 'name', 'ICMR-National Institute of Virology'),
(136036, 107545, 'mr', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤·ą¤¾ą¤£ą„‚ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(136037, 107546, 'en', 'name', 'Binus University'),
(136038, 107546, 'id', 'name', 'Universitas Bina Nusantara'),
(136039, 107547, 'en', 'name', 'University of Tennessee at Knoxville'),
(136040, 107548, 'en', 'name', 'De La Salle University'),
(136041, 107549, 'en', 'name', 'University of North Carolina at Pembroke'),
(136042, 107550, 'en', 'name', 'Henan Science and Technology Department'),
(136043, 107550, 'zh', 'name', 'ę²³å—ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(136044, 107551, 'fi', 'name', 'Norjan tiedeneuvosto'),
(136045, 107551, 'en', 'name', 'The Research Council of Norway'),
(136046, 107552, 'ca', 'name', 'Universitat de Pavia'),
(136047, 107552, 'en', 'name', 'University of Pavia'),
(136048, 107552, 'it', 'name', 'UniversitĆ  degli Studi di Pavia'),
(136049, 107552, 'fr', 'name', 'UniversitƩ de pavie'),
(136050, 107553, 'es', 'name', 'Universidad de ValparaĆ­so'),
(136051, 107553, 'en', 'name', 'University of ValparaĆ­so'),
(136052, 107554, 'en', 'name', 'Sidney Kimmel Comprehensive Cancer Center'),
(136053, 107555, 'en', 'name', 'Society of Economic Geologists'),
(136054, 107556, 'en', 'name', 'Alzheimer’s Research UK'),
(136055, 107557, 'cy', 'name', 'Prifysgol Birmingham'),
(136056, 107557, 'en', 'name', 'University of Birmingham'),
(136057, 107558, 'en', 'name', 'University of Piraeus'),
(136058, 107558, 'fr', 'name', 'UniversitƩ du pirƩe'),
(136059, 107558, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī ĪµĪ¹ĻĪ±Ī¹ĻŽĻ‚'),
(136060, 107559, 'es', 'name', 'Universidad de Iowa'),
(136061, 107559, 'en', 'name', 'University of Iowa'),
(136062, 107559, 'fr', 'name', 'UniversitƩ de l''iowa'),
(136063, 107560, 'sv', 'name', 'Helsingfors Universitet'),
(136064, 107560, 'fi', 'name', 'Helsingin Yliopisto'),
(136065, 107560, 'en', 'name', 'University of Helsinki'),
(136066, 107561, 'es', 'name', 'Fundació Markets Organizations and Votes in Economics (MOVE)'),
(136067, 107561, 'en', 'name', 'MOVE (Markets, Organizations and Votes in Economics)'),
(136068, 107562, 'sv', 'name', 'UmeƄ Universitet'),
(136069, 107562, 'en', 'name', 'UmeƄ University'),
(136070, 107562, 'fi', 'name', 'Uumajan Yliopisto'),
(136071, 107563, 'pt', 'name', 'Sociedade Portuguesa de Pediatria'),
(136072, 107564, 'en', 'name', 'Mehran University of Engineering and Technology'),
(136073, 107564, 'ur', 'name', 'مھراڻ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ آف Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ł†ŚÆ Ų§ŁŠŁ†ŚŠ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ'),
(136074, 107565, 'en', 'name', 'Uttarakhand Forest Department'),
(136075, 107565, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤£ą„ą¤” वन'),
(136076, 107566, 'en', 'name', 'National Institute of Technology Hamirpur'),
(136077, 107566, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¹ą¤®ą„€ą¤°ą¤Ŗą„ą¤°'),
(136078, 107567, 'en', 'name', 'St. John''s University'),
(136079, 107567, 'es', 'name', 'Universidad de San Juan'),
(136080, 107568, 'no_lang_code', 'name', 'Hebei Seismological Bureau'),
(136081, 107568, 'zh', 'name', 'ę²³åŒ—ēœåœ°éœ‡å±€'),
(136082, 107569, 'es', 'name', 'Universidad de Misuri'),
(136083, 107569, 'en', 'name', 'University of Missouri'),
(136084, 107569, 'fr', 'name', 'UniversitƩ du Missouri'),
(136085, 107570, 'de', 'name', 'Max Planck Institut für Astrophysik'),
(136086, 107570, 'en', 'name', 'Max Planck Institute for Astrophysics'),
(136087, 107571, 'en', 'name', 'King’s University College'),
(136088, 107572, 'en', 'name', 'Institute of Physics Belgrade'),
(136089, 107573, 'tr', 'name', 'Muğla Sıtkı Koçman Üniversitesi'),
(136090, 107573, 'en', 'name', 'Muğla University'),
(136091, 107574, 'no_lang_code', 'name', 'South African Nuclear Energy Corporation (South Africa)'),
(136092, 107575, 'en', 'name', 'University of Rochester Medical Center'),
(136093, 107576, 'es', 'name', 'Centro MƩdico de la Universidad de Texas'),
(136094, 107576, 'en', 'name', 'The University of Texas Medical Branch at Galveston'),
(136095, 107577, 'no_lang_code', 'name', 'Tata Steel (Netherlands)'),
(136096, 107578, 'en', 'name', 'George Emil Palade University of Medicine, Pharmacy, Science and Technology of TĆ¢rgu Mureș'),
(136097, 107578, 'hu', 'name', 'MarosvÔsÔrhelyi Orvosi és Gyógyszerészeti Egyetem'),
(136098, 107578, 'ro', 'name', 'Universitatea de Medicină, Farmacie, Științe și Tehnologie ā€žGeorge Emil Paladeā€ din TĆ¢rgu Mureș'),
(136099, 107579, 'en', 'name', 'Alagappa University'),
(136100, 107579, 'ta', 'name', 'ą®…ą®“ą®•ą®ŖąÆą®Ŗą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(136101, 107580, 'en', 'name', 'Northwestern University'),
(136102, 107581, 'no_lang_code', 'name', 'Octapharma (Switzerland)'),
(136103, 107582, 'en', 'name', 'Washington Center'),
(136104, 107583, 'no_lang_code', 'name', 'Chevron (Australia)'),
(136105, 107584, 'en', 'name', 'New York University Abu Dhabi'),
(136106, 107584, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†ŁŠŁˆŁŠŁˆŲ±Łƒ أبوظبي'),
(136107, 107585, 'no_lang_code', 'name', 'Nofima'),
(136108, 107586, 'nl', 'name', 'Parkinson Vereniging'),
(136109, 107587, 'no_lang_code', 'name', 'Acorda Therapeutics (United States)'),
(136110, 107588, 'en', 'name', 'National Health Service'),
(136111, 107589, 'en', 'name', 'Hang Seng University of Hong Kong'),
(136112, 107589, 'zh', 'name', 'é¦™ęøÆę’ē”Ÿå¤§å­ø'),
(136113, 107590, 'sv', 'name', 'Arbets- och nƤringsministeriet'),
(136114, 107590, 'en', 'name', 'Ministry of Economic Affairs and Employment'),
(136115, 107590, 'fi', 'name', 'Tyƶ- ja elinkeinoministeriƶ'),
(136116, 107591, 'hu', 'name', 'PƩcsi TudomƔnyegyetem'),
(136117, 107591, 'en', 'name', 'University of Pecs'),
(136118, 107592, 'en', 'name', 'Prime Minister''s Office'),
(136119, 107592, 'zh', 'name', 'ę–°åŠ å”ę€»ē†åŠžå…¬å®¤'),
(136120, 107593, 'en', 'name', 'Western Washington University'),
(136121, 107594, 'en', 'name', 'University of Auckland'),
(136122, 107594, 'mi', 'name', 'Waipapa Taumata Rau'),
(136123, 107595, 'fr', 'name', 'AcadƩmie Hassan II des Sciences et Techniques'),
(136124, 107595, 'en', 'name', 'Hassan II Academy of Science and Technology'),
(136125, 107596, 'fr', 'name', 'INSEAD'),
(136126, 107597, 'en', 'name', 'Abu Dhabi University'),
(136127, 107597, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ابوظبي'),
(136128, 107598, 'no_lang_code', 'name', 'Medtronic (Switzerland)'),
(136129, 107599, 'cy', 'name', 'Prifysgol St Andrews'),
(136130, 107599, 'en', 'name', 'University of St Andrews'),
(136131, 107600, 'es', 'name', 'Universidad de La Serena'),
(136132, 107600, 'en', 'name', 'University of La Serena'),
(136133, 107601, 'en', 'name', 'Lodz University of Technology'),
(136134, 107601, 'pl', 'name', 'Politechnika Łódzka'),
(136135, 107602, 'es', 'name', 'Universidad de la Commonwealth de Virginia'),
(136136, 107602, 'en', 'name', 'Virginia Commonwealth University'),
(136137, 107603, 'es', 'name', 'Fundación Interhospitalaria para la Investigación Cardiovascular'),
(136138, 107604, 'no_lang_code', 'name', 'Otsuka (United States)'),
(136139, 107605, 'de', 'name', 'Ruhrlandklinik'),
(136140, 107606, 'es', 'name', 'Universidad de Oregón'),
(136141, 107606, 'en', 'name', 'University of Oregon'),
(136142, 107607, 'en', 'name', 'Hualien Tzu Chi Medical Center'),
(136143, 107608, 'es', 'name', 'Universidad de Carolina del Norte en Charlotte'),
(136144, 107608, 'en', 'name', 'University of North Carolina at Charlotte'),
(136145, 107608, 'fr', 'name', 'UniversitƩ de caroline du nord Ơ charlotte'),
(136146, 107609, 'no_lang_code', 'name', 'LG Chem (South Korea)'),
(136147, 107609, 'ko', 'name', 'LG화학'),
(136148, 107610, 'en', 'name', 'University of Strathclyde'),
(136149, 107611, 'en', 'name', 'Sydney Local Health District'),
(136150, 107612, 'pt', 'name', 'Administração Regional de Saúde do Norte IP'),
(136151, 107613, 'en', 'name', 'Chulalongkorn University'),
(136152, 107613, 'th', 'name', 'ąøˆąøøąø¬ąø²ąø„ąø‡ąøąø£ąø“ą¹Œąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(136153, 107614, 'es', 'name', 'Universidad de Wake Forest'),
(136154, 107614, 'fr', 'name', 'UniversitƩ de wake forest'),
(136155, 107614, 'en', 'name', 'Wake Forest University'),
(136156, 107615, 'en', 'name', 'Society of Interventional Radiology'),
(136157, 107616, 'es', 'name', 'Universidad Nacional de Chimborazo'),
(136158, 107617, 'en', 'name', 'Stanford University'),
(136159, 107617, 'es', 'name', 'Universidad Stanford'),
(136160, 107618, 'fr', 'name', 'MinistĆØre de l''Ɖconomie, de l''Innovation et de l''Ɖnergie'),
(136161, 107619, 'es', 'name', 'Universidad de Tennessee'),
(136162, 107619, 'en', 'name', 'University of Tennessee System'),
(136163, 107619, 'fr', 'name', 'UniversitƩ du Tennessee'),
(136164, 107620, 'en', 'name', 'International Islamic University, Islamabad'),
(136165, 107620, 'ur', 'name', 'ŲØŁŠŁ† Ų§Ł„Ų§Ł‚ŁˆŲ§Ł…ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł¹ŪŒ اسلام Ų¢ŲØŲ§ŲÆā€Ž'),
(136166, 107621, 'sv', 'name', 'LantmƤnnen'),
(136167, 107622, 'no_lang_code', 'name', 'Leo Pharma (Denmark)'),
(136168, 107623, 'es', 'name', 'Universidad San Ignacio de Loyola'),
(136169, 107624, 'de', 'name', 'Projektträger Jülich'),
(136170, 107625, 'no_lang_code', 'name', 'Roche (Estonia)'),
(136171, 107626, 'en', 'name', 'Linkƶping University'),
(136172, 107626, 'fi', 'name', 'Linkƶpingin Yliopisto'),
(136173, 107626, 'sv', 'name', 'Linkƶpings Universitet'),
(136174, 107627, 'af', 'name', 'Universiteit van Suid-Afrika'),
(136175, 107627, 'en', 'name', 'University of South Africa'),
(136176, 107628, 'no_lang_code', 'name', 'Ningxia Seismological Bureau'),
(136177, 107628, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗåœ°éœ‡å±€'),
(136178, 107629, 'en', 'name', 'Society of University Surgeons'),
(136179, 107630, 'en', 'name', 'Johannes Gutenberg University Mainz'),
(136180, 107630, 'de', 'name', 'Johannes Gutenberg-UniversitƤt Mainz'),
(136181, 107631, 'no_lang_code', 'name', 'Ningxia Meteorological Bureau'),
(136182, 107631, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗę°”č±”å±€'),
(136183, 107632, 'en', 'name', 'GBS/CIDP Foundation International'),
(136184, 107633, 'sv', 'name', 'Forskningsinstitutet fƶr informationsteknologi'),
(136185, 107633, 'en', 'name', 'Helsinki Institute for Information Technology'),
(136186, 107633, 'fi', 'name', 'Tietotekniikan tutkimuslaitos'),
(136187, 107634, 'en', 'name', 'National Institute of Technology Patna'),
(136188, 107634, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø पटना'),
(136189, 107635, 'en', 'name', 'Massey University'),
(136190, 107636, 'en', 'name', 'University of the Witwatersrand'),
(136191, 107637, 'cy', 'name', 'Prifysgol Manceinion'),
(136192, 107637, 'en', 'name', 'University of Manchester'),
(136193, 107638, 'ga', 'name', 'Ollscoil Luimnigh'),
(136194, 107638, 'en', 'name', 'University of Limerick'),
(136195, 107639, 'en', 'name', 'University of Pennsylvania'),
(136196, 107640, 'en', 'name', 'University of Sannio'),
(136197, 107640, 'it', 'name', 'UniversitĆ  degli Studi del Sannio'),
(136198, 107641, 'en', 'name', 'Swiss HIV Cohort Study'),
(136199, 107642, 'en', 'name', 'Shenzhen Municipal People''s Government'),
(136200, 107643, 'no_lang_code', 'name', 'Ericsson (Sweden)'),
(136201, 107644, 'en', 'name', 'King Abdullah University of Science and Technology'),
(136202, 107644, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ الله Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(136203, 107645, 'tr', 'name', 'Doğu Akdeniz Üniversitesi'),
(136204, 107645, 'en', 'name', 'Eastern Mediterranean University'),
(136205, 107646, 'en', 'name', 'Danish Cancer Society'),
(136206, 107647, 'en', 'name', 'Ministry of Public Safety and Security'),
(136207, 107648, 'ms', 'name', 'Universiti Sains Malaysia'),
(136208, 107648, 'en', 'name', 'University of Science Malaysia'),
(136209, 107648, 'ta', 'name', 'ą®®ą®²ąÆ‡ą®šą®æą®Æ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(136210, 107648, 'zh', 'name', 'é©¬ę„č„æäŗšē†ē§‘å¤§å­¦'),
(136211, 107649, 'de', 'name', 'ZEIT-Stiftung'),
(136212, 107650, 'es', 'name', 'Universidad de Alabama'),
(136213, 107650, 'en', 'name', 'University of Alabama'),
(136214, 107650, 'fr', 'name', 'UniversitƩ de l''Alabama'),
(136215, 107651, 'en', 'name', 'High Point University'),
(136216, 107651, 'es', 'name', 'Universidad de High Point'),
(136217, 107652, 'en', 'name', 'East Tennessee State University'),
(136218, 107653, 'ca', 'name', 'Institut de Recerca Sant Pau'),
(136219, 107654, 'no_lang_code', 'name', 'Karl Storz (Germany)'),
(136220, 107655, 'en', 'name', 'Irkutsk Scientific Center of Surgery and Traumatology'),
(136221, 107655, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø Šø травматологии'),
(136222, 107656, 'en', 'name', 'Assumption College'),
(136223, 107657, 'en', 'name', 'Insurance and Care NSW'),
(136224, 107658, 'en', 'name', 'University of Vaasa'),
(136225, 107658, 'fi', 'name', 'Vaasan yliopisto'),
(136226, 107658, 'sv', 'name', 'Vasa universitet'),
(136227, 107659, 'en', 'name', 'Saveetha University'),
(136228, 107660, 'el', 'name', 'Ethniko Asteroskopeio Athinon'),
(136229, 107660, 'en', 'name', 'National Observatory of Athens'),
(136230, 107661, 'no_lang_code', 'name', 'BP (United Kingdom)'),
(136231, 107662, 'en', 'name', 'University of Zurich'),
(136232, 107662, 'it', 'name', 'UniversitĆ  di Zurigo'),
(136233, 107662, 'de', 'name', 'Universität Zürich'),
(136234, 107662, 'fr', 'name', 'UniversitƩ de Zurich'),
(136235, 107663, 'en', 'name', 'Częstochowa University of Technology'),
(136236, 107663, 'pl', 'name', 'Politechnika Częstochowska'),
(136237, 107664, 'en', 'name', 'The Women University Multan'),
(136238, 107664, 'ur', 'name', 'ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ملتان'),
(136239, 107665, 'en', 'name', 'Chinese University of Hong Kong'),
(136240, 107665, 'zh', 'name', '香港中文大學'),
(136241, 107666, 'en', 'name', 'Auburn University'),
(136242, 107666, 'es', 'name', 'Universidad de Auburn'),
(136243, 107667, 'en', 'name', 'Robert Koch Institute'),
(136244, 107667, 'de', 'name', 'Robert Koch-Institut'),
(136245, 107668, 'en', 'name', 'University of Lausanne'),
(136246, 107668, 'it', 'name', 'UniversitĆ  di Losanna'),
(136247, 107668, 'de', 'name', 'UniversitƤt Lausanne'),
(136248, 107668, 'fr', 'name', 'UniversitƩ de Lausanne'),
(136249, 107669, 'no_lang_code', 'name', 'Plansee (Germany)'),
(136250, 107670, 'en', 'name', 'Columbia University'),
(136251, 107670, 'es', 'name', 'Universidad de Columbia'),
(136252, 107671, 'en', 'name', 'Federal University of Health Sciences of Porto Alegre'),
(136253, 107671, 'es', 'name', 'Universidad Federal de Ciencias de la Salud de Porto Alegre'),
(136254, 107671, 'pt', 'name', 'Universidade Federal de CiĆŖncias da SaĆŗde de Porto Alegre'),
(136255, 107672, 'no', 'name', 'Kunnskapsdepartementet, lit. Ministry of Knowledge'),
(136256, 107672, 'en', 'name', 'Ministry of Education and Research'),
(136257, 107673, 'en', 'name', 'Smith College'),
(136258, 107674, 'eu', 'name', 'Granadako Unibertsitatea'),
(136259, 107674, 'es', 'name', 'Universidad de Granada'),
(136260, 107674, 'en', 'name', 'University of Granada'),
(136261, 107675, 'en', 'name', 'Dar Al Uloom University'),
(136262, 107675, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± Ų§Ł„Ų¹Ł„ŁˆŁ…'),
(136263, 107676, 'es', 'name', 'Universidad de Oriente'),
(136264, 107677, 'en', 'name', 'Max Planck Institute for Astronomy'),
(136265, 107677, 'de', 'name', 'Max-Planck-Institut für Astronomie'),
(136266, 107678, 'en', 'name', 'Aravind Eye Hospital'),
(136267, 107679, 'en', 'name', 'Beijing Institute of Technology'),
(136268, 107679, 'zh', 'name', 'åŒ—äŗ¬ē†å·„å¤§å­¦'),
(136269, 107680, 'es', 'name', 'Universidad de Las AmƩricas'),
(136270, 107680, 'en', 'name', 'University of the Americas'),
(136271, 107681, 'no_lang_code', 'name', 'GW Pharmaceuticals (United Kingdom)'),
(136272, 107682, 'en', 'name', 'Institute of Organic Synthesis'),
(136273, 107682, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠžŃ€Š³Š°Š½ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Динтеза им. И. ŠÆ. ŠŸŠ¾ŃŃ‚Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(136274, 107683, 'pt', 'name', 'AgĆŖncia Portuguesa do Ambiente'),
(136275, 107683, 'en', 'name', 'Portuguese Environment Agency'),
(136276, 107684, 'es', 'name', 'Consejo Mexiquense de Ciencia y TecnologĆ­a'),
(136277, 107685, 'cy', 'name', 'Prifysgol Southampton'),
(136278, 107685, 'en', 'name', 'University of Southampton'),
(136279, 107686, 'en', 'name', 'Indian Association for the Cultivation of Science'),
(136280, 107686, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦…ą§ą¦Æą¦¾ą¦øą§‹ą¦øą¦æą¦Æą¦¼ą§‡ą¦¶ą¦Ø ফর ą¦¦ą§ą¦Æ ą¦•ą¦¾ą¦²ą¦Ÿą¦æą¦­ą§‡ą¦¶ą¦Ø অফ ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø'),
(136281, 107686, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®µą®³ą®°ąÆą®šąÆą®šą®æą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(136282, 107686, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“…ą“øąµ‹ą“øą“æą“Æąµ‡ą“·ąµ» ą“«ąµ‹ąµ¼ ą“¦ą“æ ą“•ąµ¾ą“Ÿąµą“Ÿą“æą“µąµ‡ą“·ąµ» ą““ą“«ąµ ą“øą“Æąµ»ą“øąµ'),
(136283, 107687, 'en', 'name', 'East Carolina University'),
(136284, 107687, 'es', 'name', 'Universidad del Este de Carolina'),
(136285, 107688, 'en', 'name', 'Ministry of Urban Development'),
(136286, 107689, 'no_lang_code', 'name', 'GAIL (India)'),
(136287, 107689, 'hi', 'name', 'ą¤—ą„‡ą¤² (इंऔिया) ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(136288, 107690, 'no_lang_code', 'name', 'Wacker Group (Germany)'),
(136289, 107691, 'en', 'name', 'Autonomous University of Coahuila'),
(136290, 107691, 'es', 'name', 'Universidad Autónoma de Coahuila'),
(136291, 107692, 'en', 'name', 'Brno University of Technology'),
(136292, 107692, 'cs', 'name', 'VysokĆ© učenĆ­ technickĆ© v Brně'),
(136293, 107693, 'en', 'name', 'Karakoram International University'),
(136294, 107693, 'ur', 'name', 'ŲØŪŒŁ† Ų§Ł„Ų§Ł‚ŁˆŲ§Ł…ŪŒ جامعہ Ł‚Ų±Ų§Ł‚Ų±Ł…ā€Ž'),
(136295, 107694, 'en', 'name', 'Equity Trustees'),
(136296, 107695, 'es', 'name', 'Hospital General Universitario Gregorio Marañón'),
(136297, 107696, 'en', 'name', 'Ningxia Water Conservancy'),
(136298, 107696, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗę°“åˆ©åŽ…'),
(136299, 107697, 'en', 'name', 'Centre for Advanced Laser Applications'),
(136300, 107698, 'rw', 'name', 'Kaminuza y’u Rwanda'),
(136301, 107698, 'en', 'name', 'University of Rwanda'),
(136302, 107698, 'fr', 'name', 'UniversitƩ du Rwanda'),
(136303, 107699, 'en', 'name', 'City of Helsinki'),
(136304, 107699, 'fi', 'name', 'Helsingin Kaupunki'),
(136305, 107700, 'en', 'name', 'Anhui Provincial Department of Education'),
(136306, 107701, 'es', 'name', 'Universidad de Wyoming'),
(136307, 107701, 'en', 'name', 'University of Wyoming'),
(136308, 107701, 'fr', 'name', 'UniversitƩ du wyoming'),
(136309, 107702, 'en', 'name', 'Emissions Reduction Alberta'),
(136310, 107703, 'en', 'name', 'FDI World Dental Federation'),
(136311, 107704, 'en', 'name', 'Irish Rugby Football Union'),
(136312, 107705, 'en', 'name', 'University of North Carolina System'),
(136313, 107705, 'fr', 'name', 'UniversitƩ de caroline du nord'),
(136314, 107706, 'en', 'name', 'Integrated Carbon Observation System'),
(136315, 107707, 'de', 'name', 'Deutsche Arthrose-Hilfe'),
(136316, 107708, 'fr', 'name', 'Fondation Francqui'),
(136317, 107709, 'en', 'name', 'Hamburg University of Technology'),
(136318, 107709, 'de', 'name', 'Technische UniversitƤt Hamburg'),
(136319, 107710, 'en', 'name', 'Institute of Fluid Flow-Machinery'),
(136320, 107710, 'pl', 'name', 'Instytut Maszyn Przepływowych'),
(136321, 107711, 'en', 'name', 'Ariel University'),
(136322, 107712, 'en', 'name', 'Oregon State University'),
(136323, 107712, 'es', 'name', 'Universidad Estatal de Oregón'),
(136324, 107712, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''Oregon'),
(136325, 107713, 'en', 'name', 'Office of Naval Research'),
(136326, 107714, 'es', 'name', 'Universidad de Kansas'),
(136327, 107714, 'en', 'name', 'University of Kansas'),
(136328, 107714, 'fr', 'name', 'UniversitƩ du kansas'),
(136329, 107715, 'en', 'name', 'Indian National Academy of Engineering'),
(136330, 107716, 'es', 'name', 'Universidad Estatal de Washington'),
(136331, 107716, 'fr', 'name', 'UniversitĆ© d''Ɖtat de washington'),
(136332, 107716, 'en', 'name', 'Washington State University'),
(136333, 107717, 'en', 'name', 'Ethiopian Institute of Water Resources'),
(136334, 107717, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« į‹įˆƒ įˆ€į‰„į‰µ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(136335, 107718, 'en', 'name', 'City of Hope'),
(136336, 107719, 'en', 'name', 'Structural Engineering Research Centre'),
(136337, 107720, 'de', 'name', 'Ministerium für Kultur und Wissenschaft des Landes Nordrhein-Westfalen'),
(136338, 107721, 'cy', 'name', 'Prifysgol Nottingham'),
(136339, 107721, 'en', 'name', 'University of Nottingham'),
(136340, 107722, 'en', 'name', 'North East Institute of Science and Technology'),
(136341, 107722, 'as', 'name', 'ą¦‰ą¦¤ą§ą¦¤ą§°-পূব ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø আৰু ą¦Ŗą§ą§°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą§°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø'),
(136342, 107723, 'en', 'name', 'Blekinge County Council'),
(136343, 107723, 'sv', 'name', 'Region Blekinge'),
(136344, 107724, 'en', 'name', 'Ulm University'),
(136345, 107724, 'de', 'name', 'UniversitƤt Ulm'),
(136346, 107725, 'no_lang_code', 'name', 'SmithKline Beecham (United States)'),
(136347, 107726, 'cy', 'name', 'Prifysgol Warwick'),
(136348, 107726, 'en', 'name', 'University of Warwick'),
(136349, 107727, 'en', 'name', 'Deakin University'),
(136350, 107728, 'en', 'name', 'Georgia Institute of Technology'),
(136351, 107728, 'es', 'name', 'Instituto de TecnologĆ­a de Georgia'),
(136352, 107729, 'es', 'name', 'Centro Internacional de Mejoramiento de MaĆ­z Y Trigo'),
(136353, 107730, 'en', 'name', 'British Sjƶgren''s Syndrome Association'),
(136354, 107731, 'pl', 'name', 'Instytut Niskich Temperatur i Badań Strukturalnych im. Włodzimierza Trzebiatowskiego'),
(136355, 107731, 'en', 'name', 'Włodzimierz Trzebiatowski Institute of Low Temperature and Structure Research'),
(136356, 107732, 'en', 'name', 'University of Cologne'),
(136357, 107732, 'de', 'name', 'UniversitƤt zu Kƶln'),
(136358, 107733, 'en', 'name', 'University of Food Technologies'),
(136359, 107734, 'no_lang_code', 'name', 'Assiut University'),
(136360, 107734, 'fr', 'name', 'UniversitƩ d''Assiout'),
(136361, 107734, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أسيوط'),
(136362, 107735, 'en', 'name', 'National University of Villa MarĆ­a'),
(136363, 107735, 'es', 'name', 'Universidad Nacional de Villa MarĆ­a'),
(136364, 107736, 'no_lang_code', 'name', 'Boehringer Ingelheim (Japan)'),
(136365, 107736, 'ja', 'name', 'ę—„ęœ¬ćƒ™ćƒ¼ćƒŖćƒ³ć‚¬ćƒ¼ć‚¤ćƒ³ć‚²ćƒ«ćƒć‚¤ćƒ ę Ŗå¼ä¼šē¤¾'),
(136366, 107737, 'en', 'name', 'Drugs for Neglected Diseases Initiative'),
(136367, 107738, 'en', 'name', 'Hope Foundation'),
(136368, 107739, 'en', 'name', 'Harvard University'),
(136369, 107739, 'es', 'name', 'Universidad de Harvard'),
(136370, 107740, 'en', 'name', 'Tufts University'),
(136371, 107741, 'no_lang_code', 'name', 'Wockhardt (India)'),
(136372, 107742, 'nl', 'name', 'Spieren voor Spieren'),
(136373, 107743, 'da', 'name', 'Grundfos Fond'),
(136374, 107743, 'en', 'name', 'Grundfos Foundation'),
(136375, 107744, 'en', 'name', 'University of Florence'),
(136376, 107744, 'it', 'name', 'UniversitĆ  degli Studi di Firenze'),
(136377, 107744, 'de', 'name', 'UniversitƤt Florenz'),
(136378, 107744, 'fr', 'name', 'UniversitƩ de Florence'),
(136379, 107745, 'en', 'name', 'Vienna Biocenter'),
(136380, 107746, 'mi', 'name', 'Te Herenga Waka'),
(136381, 107746, 'en', 'name', 'Victoria University of Wellington'),
(136382, 107747, 'en', 'name', 'Office of Carbon Management'),
(136383, 107748, 'en', 'name', 'California Institute of Technology'),
(136384, 107748, 'es', 'name', 'Instituto de TecnologĆ­a de California'),
(136385, 107749, 'en', 'name', 'University of Nebraska at Kearney'),
(136386, 107750, 'en', 'name', 'Finnish National Agency for Education'),
(136387, 107750, 'fi', 'name', 'Opetushallitus Utbildningsstyrelsen'),
(136388, 107751, 'en', 'name', 'Alvin J. Siteman Cancer Center'),
(136389, 107752, 'de', 'name', 'Deutsches Stiftungszentrum'),
(136390, 107753, 'en', 'name', 'Guangzhou Science, Technology and Innovation Commission'),
(136391, 107753, 'zh', 'name', 'å¹æå·žåø‚ē§‘ęŠ€åˆ›ę–°å§”å‘˜ä¼š'),
(136392, 107754, 'en', 'name', 'Texas A&M University'),
(136393, 107755, 'en', 'name', 'Indo Soviet Friendship College of Pharmacy'),
(136394, 107756, 'en', 'name', 'Weizmann Institute of Science'),
(136395, 107756, 'he', 'name', 'מכון ויצמן למדע'),
(136396, 107756, 'ar', 'name', 'معهد ŁˆŲ§ŁŠŲ²Ł…Ų§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ…'),
(136397, 107757, 'no_lang_code', 'name', 'Schaeffler (Germany)'),
(136398, 107758, 'id', 'name', 'Universitas Nusa Cendana'),
(136399, 107758, 'en', 'name', 'University of Nusa Cendana'),
(136400, 107759, 'en', 'name', 'Murdoch Children''s Research Institute'),
(136401, 107760, 'en', 'name', 'State Key Laboratory of Urban Water Resources and Water Environment'),
(136402, 107760, 'zh', 'name', 'åŸŽåø‚ę°“čµ„ęŗäøŽę°“ēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(136403, 107761, 'en', 'name', 'Rutgers, The State University of New Jersey'),
(136404, 107762, 'es', 'name', 'Universidad Washington en San Luis'),
(136405, 107762, 'fr', 'name', 'UniversitƩ Washington Ơ Saint-louis'),
(136406, 107762, 'en', 'name', 'Washington University in St. Louis'),
(136407, 107763, 'no_lang_code', 'name', 'Serum Institute of India (India)'),
(136408, 107764, 'pt', 'name', 'Instituto Nacional de Ciências e Tecnologias Analíticas Avançadas'),
(136409, 107765, 'en', 'name', 'One Mind'),
(136410, 107766, 'es', 'name', 'Universidad de Chicago'),
(136411, 107766, 'en', 'name', 'University of Chicago'),
(136412, 107766, 'fr', 'name', 'UniversitƩ de chicago'),
(136413, 107767, 'fr', 'name', 'Institut polytechnique et universitĆ© d''Ɖtat de virginie'),
(136414, 107767, 'es', 'name', 'Instituto PolitƩcnico y Universidad Estatal de Virginia'),
(136415, 107767, 'en', 'name', 'Virginia Tech'),
(136416, 107768, 'en', 'name', 'Maastricht University'),
(136417, 107768, 'nl', 'name', 'Universiteit Maastricht'),
(136418, 107769, 'es', 'name', 'Universidad de Virginia Occidental'),
(136419, 107769, 'en', 'name', 'West Virginia University'),
(136420, 107770, 'fr', 'name', 'Institut Pasteur of Shanghai'),
(136421, 107770, 'zh', 'name', 'äøŠęµ·å·“ę–Æå¾·ē ”ē©¶ę‰€'),
(136422, 107771, 'no_lang_code', 'name', 'GlaxoSmithKline (Belgium)'),
(136423, 107772, 'en', 'name', 'Singapore Immunology Network'),
(136424, 107773, 'en', 'name', 'Rising Tide Foundation'),
(136425, 107774, 'en', 'name', 'Zhangjiakou City Science and Technology and Seismological Bureau'),
(136426, 107774, 'zh', 'name', 'å¼ å®¶å£åø‚ē§‘å­¦ęŠ€ęœÆå’Œåœ°éœ‡å±€'),
(136427, 107775, 'de', 'name', 'Wehrwissenschaftliches Institut für Werk- und Betriebsstoffe'),
(136428, 107776, 'en', 'name', 'Saarland University'),
(136429, 107776, 'de', 'name', 'UniversitƤt des Saarlandes'),
(136430, 107777, 'sl', 'name', 'Ministrstvo za zdravje'),
(136431, 107777, 'en', 'name', 'Ministry of Health'),
(136432, 107778, 'de', 'name', 'Forschungsinstitut f molekulare Pathologie GesmbH'),
(136433, 107778, 'en', 'name', 'Research Institute of Molecular Pathology'),
(136434, 107779, 'de', 'name', 'Ministerium für Bildung, Wissenschaft, Weiterbildung und Kultur'),
(136435, 107780, 'en', 'name', 'University of Otago'),
(136436, 107781, 'en', 'name', 'The University of Agriculture, Peshawar'),
(136437, 107781, 'ur', 'name', 'زرعی جامعہ پؓاور'),
(136438, 107782, 'pl', 'name', 'Instytut Medycyny Pracy imienia prof. dra med. Jerzego Nofera'),
(136439, 107782, 'en', 'name', 'Nofer Institute of Occupational Medicine'),
(136440, 107783, 'en', 'name', 'Weill Cornell Medicine'),
(136441, 107784, 'en', 'name', 'Ministry of Colleges and Universities'),
(136442, 107785, 'en', 'name', 'Prince Sultan University'),
(136443, 107785, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± سلطان'),
(136444, 107786, 'fi', 'name', 'Oulun yliopisto'),
(136445, 107786, 'en', 'name', 'University of Oulu'),
(136446, 107787, 'fr', 'name', 'GIS-Institut pour la Recherche en SantƩ Publique'),
(136447, 107788, 'it', 'name', 'Fondazione Lombardia per l’Ambiente'),
(136448, 107789, 'en', 'name', 'Al Ain University'),
(136449, 107789, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹ŁŠŁ† Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(136450, 107790, 'en', 'name', 'Hong Kong Metropolitan University'),
(136451, 107790, 'zh', 'name', 'é¦™ęøÆéƒ½ęœƒå¤§å­ø'),
(136452, 107791, 'en', 'name', 'Central University of South Bihar'),
(136453, 107791, 'hi', 'name', 'ą¤¦ą¤•ą„ą¤·ą¤æą¤£ बिहार ą¤•ą„‡ą¤Øą„ā€ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(136454, 107792, 'es', 'name', 'Universidad de Florida Central'),
(136455, 107792, 'en', 'name', 'University of Central Florida'),
(136456, 107793, 'en', 'name', 'Princeton University'),
(136457, 107793, 'es', 'name', 'Universidad de Princeton'),
(136458, 107793, 'fr', 'name', 'UniversitƩ de princeton'),
(136459, 107794, 'en', 'name', 'Maharshi Dayanand University'),
(136460, 107794, 'hi', 'name', 'ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤¦ą¤Æą¤¾ą¤Øą¤Øą„ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤°ą„‹ą¤¹ą¤¤ą¤•'),
(136461, 107795, 'es', 'name', 'Universidad de Carolina del Norte en Chapel Hill'),
(136462, 107795, 'en', 'name', 'University of North Carolina at Chapel Hill'),
(136463, 107795, 'fr', 'name', 'UniversitƩ de la Caroline du Nord Ơ Chapel Hill'),
(136464, 107796, 'en', 'name', 'Sainsbury Family Charitable Trusts'),
(136465, 107797, 'en', 'name', 'Northwestern University'),
(136466, 107798, 'en', 'name', 'Monash University Malaysia'),
(136467, 107799, 'no_lang_code', 'name', 'Dentsply Sirona (Sweden)'),
(136468, 107800, 'en', 'name', 'Mato Grosso State University'),
(136469, 107800, 'pt', 'name', 'Universidade do Estado de Mato Grosso'),
(136470, 107801, 'en', 'name', 'Hebrew University of Jerusalem'),
(136471, 107801, 'he', 'name', '×”××•× ×™×‘×Ø×”×™×˜×” העברית ×‘×™×Ø×•×©×œ×™×'),
(136472, 107801, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹ŲØŲ±ŁŠŲ© في القدس'),
(136473, 107802, 'en', 'name', 'University of Arkansas for Medical Sciences'),
(136474, 107803, 'en', 'name', 'International Institute of Tropical Agriculture'),
(136475, 107804, 'en', 'name', 'Inter-University Council for East Africa'),
(136476, 107805, 'es', 'name', 'Agroseguro'),
(136477, 107806, 'en', 'name', 'Institute of Food Science, Technology and Nutrition'),
(136478, 107806, 'es', 'name', 'Instituto de Ciencia y Tecnología de Alimentos y Nutrición'),
(136479, 107807, 'en', 'name', 'The Exploratory Research Center on Life and Living Systems'),
(136480, 107807, 'ja', 'name', 'ē”Ÿå‘½å‰µęˆęŽ¢ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(136481, 107808, 'en', 'name', 'Inova Health System'),
(136482, 107809, 'es', 'name', 'Institut de Fisica d''Altes Energies'),
(136483, 107809, 'en', 'name', 'Institute for High Energy Physics'),
(136484, 107810, 'en', 'name', 'Halland County Council'),
(136485, 107810, 'sv', 'name', 'Region Halland'),
(136486, 107811, 'en', 'name', 'University of Nebraska at Omaha'),
(136487, 107811, 'fr', 'name', 'UniversitƩ du nebraska Ơ omaha'),
(136488, 107812, 'en', 'name', 'American College of Clinical Pharmacy'),
(136489, 107813, 'pt', 'name', 'Instituto PortuguĆŖs do Desporto e Juventude IP'),
(136490, 107814, 'fi', 'name', 'Allergia- ja Astmaliitto'),
(136491, 107814, 'en', 'name', 'Allergy and Asthma Federation'),
(136492, 107815, 'en', 'name', 'Middle Tennessee State University'),
(136493, 107816, 'en', 'name', 'Central Washington University'),
(136494, 107817, 'en', 'name', 'Ca'' Foscari University of Venice'),
(136495, 107817, 'it', 'name', 'UniversitĆ  Ca'' Foscari Venezia'),
(136496, 107817, 'de', 'name', 'UniversitƤt Venedig'),
(136497, 107817, 'fr', 'name', 'UniversitƩ ca'' foscari de venise'),
(136498, 107817, 'sl', 'name', 'Univerza v Benetkah'),
(136499, 107818, 'en', 'name', 'Mount Sinai Health System'),
(136500, 107819, 'da', 'name', 'Syddansk Universitet'),
(136501, 107819, 'en', 'name', 'University of Southern Denmark'),
(136502, 107820, 'es', 'name', 'Universidad San Pablo CEU'),
(136503, 107820, 'gl', 'name', 'Universidade San Pablo CEU'),
(136504, 107821, 'en', 'name', 'Airlangga University'),
(136505, 107821, 'id', 'name', 'Universitas Airlangga'),
(136506, 107822, 'en', 'name', 'Michigan State University'),
(136507, 107822, 'fr', 'name', 'UniversitĆ© d''Ɖtat du michigan'),
(136508, 107823, 'en', 'name', 'Aragon Nanoscience and Materials Institute'),
(136509, 107823, 'es', 'name', 'Instituto de Nanociencia y Materiales de Aragón'),
(136510, 107824, 'en', 'name', 'University of Agriculture Faisalabad'),
(136511, 107824, 'ur', 'name', 'جامعہ زرعیہ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(136512, 107825, 'sw', 'name', 'Chuo Kikuu cha Sokoine cha Kilimo'),
(136513, 107825, 'en', 'name', 'Sokoine University of Agriculture'),
(136514, 107826, 'en', 'name', 'University of Utah Health Care'),
(136515, 107827, 'en', 'name', 'National University of Costa Rica'),
(136516, 107827, 'es', 'name', 'Universidad Nacional'),
(136517, 107828, 'en', 'name', 'Uppsala Monitoring Centre'),
(136518, 107829, 'en', 'name', 'Sri Lanka Council For Agricultural Research Policy'),
(136519, 107830, 'en', 'name', 'Vanderbilt University'),
(136520, 107831, 'en', 'name', 'ARC Centre of Excellence in Advanced Molecular Imaging'),
(136521, 107832, 'no_lang_code', 'name', 'Boehringer Ingelheim (Germany)'),
(136522, 107833, 'hu', 'name', 'Pannon Egyetem'),
(136523, 107833, 'en', 'name', 'University of Pannonia'),
(136524, 107834, 'ro', 'name', 'Universitatea Ștefan cel Mare din Suceava'),
(136525, 107834, 'en', 'name', 'Ştefan cel Mare University of Suceava'),
(136526, 107835, 'en', 'name', 'Institute for Physics of Microstructures'),
(136527, 107835, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики Š¼ŠøŠŗŃ€Š¾ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€ Российской акаГемии наук'),
(136528, 107836, 'en', 'name', 'Pontifical Catholic University of Rio Grande do Sul'),
(136529, 107836, 'pt', 'name', 'Pontifícia Universidade Católica do Rio Grande do Sul'),
(136530, 107837, 'en', 'name', 'San Francisco State University'),
(136531, 107837, 'es', 'name', 'Universidad Estatal de San Francisco'),
(136532, 107837, 'fr', 'name', 'UniversitĆ© d''Ɖtat de san francisco'),
(136533, 107838, 'en', 'name', 'Chinese Aeronautical Establishment'),
(136534, 107838, 'zh', 'name', 'äø­å›½čˆŖē©ŗē ”ē©¶é™¢'),
(136535, 107839, 'en', 'name', 'Council for Scientific and Industrial Research'),
(136536, 107839, 'af', 'name', 'Wetenskaplike en Nywerheidnavorsingsraad'),
(136537, 107840, 'en', 'name', 'King Saud University'),
(136538, 107840, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ سعود'),
(136539, 107841, 'no_lang_code', 'name', 'Vontobel (Switzerland)'),
(136540, 107842, 'no', 'name', 'Finnmarkssykehuset'),
(136541, 107843, 'en', 'name', 'Heidelberg University'),
(136542, 107843, 'de', 'name', 'Ruprecht-Karls-UniversitƤt Heidelberg'),
(136543, 107844, 'no_lang_code', 'name', 'Systembolaget (Sweden)'),
(136544, 107844, 'sv', 'name', 'Systembolaget Aktiebolag'),
(136545, 107845, 'en', 'name', 'University of Johannesburg'),
(136546, 107846, 'en', 'name', 'International Space Science Institute'),
(136547, 107847, 'en', 'name', 'Bayer Foundation'),
(136548, 107847, 'de', 'name', 'Bayer-Studienstiftung'),
(136549, 107848, 'de', 'name', 'Deutsche Gesellschaft für Neurologie'),
(136550, 107848, 'en', 'name', 'German Neurological Society'),
(136551, 107849, 'en', 'name', 'Maria Curie-Skłodowska University'),
(136552, 107849, 'pl', 'name', 'Uniwersytet Marii Curie-Skłodowskiej w Lublinie'),
(136553, 107850, 'en', 'name', 'Samara University'),
(136554, 107851, 'en', 'name', 'Mongolian National University of Education'),
(136555, 107851, 'mn', 'name', 'Монгол Улсын Боловсролын Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(136556, 107852, 'en', 'name', 'Damanhour University'),
(136557, 107852, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ…Ł†Ł‡ŁˆŲ±'),
(136558, 107853, 'en', 'name', 'University of Tuscia'),
(136559, 107853, 'it', 'name', 'UniversitĆ  degli Studi della Tuscia'),
(136560, 107854, 'en', 'name', 'Korean Society of Cardiology'),
(136561, 107855, 'de', 'name', 'Bundesministerium für Familien und Jugend'),
(136562, 107855, 'en', 'name', 'Federal Ministry of Families and Youth'),
(136563, 107856, 'en', 'name', 'The University of Texas at Dallas'),
(136564, 107856, 'es', 'name', 'Universidad de Texas en Dallas'),
(136565, 107856, 'fr', 'name', 'UniversitƩ du texas Ơ dallas'),
(136566, 107857, 'es', 'name', 'Universidad del Sur de Florida'),
(136567, 107857, 'en', 'name', 'University of South Florida'),
(136568, 107857, 'fr', 'name', 'UniversitƩ de floride du sud'),
(136569, 107858, 'es', 'name', 'Instituto Nacional de Ecologƭa y Cambio ClimƔtico'),
(136570, 107858, 'en', 'name', 'National Institute of Ecology and Climate Change'),
(136571, 107859, 'en', 'name', 'Sensetime (China)'),
(136572, 107859, 'zh', 'name', 'å•†ę±¤é›†å›¢ęœ‰é™å…¬åø'),
(136573, 107860, 'en', 'name', 'Bar-Ilan University'),
(136574, 107860, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŲ§Ų± Ų„ŁŠŁ„Ų§Ł†'),
(136575, 107861, 'en', 'name', 'OsloMet – Oslo Metropolitan University'),
(136576, 107861, 'no', 'name', 'OsloMet – storbyuniversitetet'),
(136577, 107862, 'en', 'name', 'Met Office'),
(136578, 107863, 'en', 'name', 'UCLA Health'),
(136579, 107864, 'en', 'name', 'Chalmers University of Technology'),
(136580, 107864, 'sv', 'name', 'Chalmers tekniska hƶgskola'),
(136581, 107864, 'fi', 'name', 'Chalmersin teknillinen korkeakoulu'),
(136582, 107865, 'en', 'name', 'University of Łódź'),
(136583, 107865, 'pl', 'name', 'Uniwersytet Łódzki'),
(136584, 107866, 'no_lang_code', 'name', 'An-Nan Hospital'),
(136585, 107867, 'en', 'name', 'University of Bath'),
(136586, 107868, 'en', 'name', 'Department of Climate Change, Energy, the Environment and Water'),
(136587, 107869, 'en', 'name', 'University of KwaZulu-Natal'),
(136588, 107870, 'en', 'name', 'The National Lottery Community Fund'),
(136589, 107871, 'en', 'name', 'University of Fribourg'),
(136590, 107871, 'it', 'name', 'UniversitĆ  di Friburgo'),
(136591, 107871, 'de', 'name', 'UniversitƤt Freiburg'),
(136592, 107871, 'fr', 'name', 'UniversitƩ de Fribourg'),
(136593, 107872, 'pt', 'name', 'Ministério do Ambiente, Ordenamento do Território e Energia'),
(136594, 107873, 'en', 'name', 'Heilongjiang Earthquake Agency'),
(136595, 107873, 'zh', 'name', 'é»‘é¾™ę±Ÿēœåœ°éœ‡å±€'),
(136596, 107874, 'no_lang_code', 'name', 'University of Botswana'),
(136597, 107875, 'en', 'name', 'Tezpur University');
INSERT INTO `ror_settings` VALUES
(136598, 107875, 'hi', 'name', 'ą¤¤ą„‡ą¤œą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(136599, 107875, 'bn', 'name', 'ą¦¤ą§‡ą¦œą¦Ŗą§ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(136600, 107876, 'en', 'name', 'Indiana University Bloomington'),
(136601, 107876, 'es', 'name', 'Universidad de Indiana Bloomington'),
(136602, 107876, 'fr', 'name', 'UniversitƩ de l''Indiana Ơ Bloomington'),
(136603, 107877, 'it', 'name', 'Ministero dell''Economia e delle Finanze'),
(136604, 107877, 'en', 'name', 'Ministry of Economy and Finance'),
(136605, 107878, 'no_lang_code', 'name', 'Galapagos (Belgium)'),
(136606, 107879, 'en', 'name', 'U.S. Army Combat Capabilities Development Command Ground Vehicle System Center'),
(136607, 107880, 'en', 'name', 'Federal Ministry of Agriculture and Rural Development'),
(136608, 107881, 'en', 'name', 'Ministry of Agriculture and Rural Affairs'),
(136609, 107881, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å†œäøšå†œę‘éƒØ'),
(136610, 107882, 'es', 'name', 'Universidad Estatal Wayne'),
(136611, 107882, 'fr', 'name', 'UniversitƩ de Wayne State'),
(136612, 107882, 'en', 'name', 'Wayne State University'),
(136613, 107883, 'en', 'name', 'Russian Federal Space Agency'),
(136614, 107883, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ космическое агентство'),
(136615, 107884, 'en', 'name', 'Centre for Marine Technology and Ocean Engineering'),
(136616, 107884, 'pt', 'name', 'Centro de Engenharia e Tecnologia Naval e Oceanica'),
(136617, 107885, 'en', 'name', 'Teerthanker Mahaveer University'),
(136618, 107885, 'hi', 'name', 'ą¤¤ą„€ą¤°ą„ą¤„ą¤‚ą¤•ą¤° ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(136619, 107886, 'en', 'name', 'The Kids Research Institute Australia'),
(136620, 107887, 'es', 'name', 'Universidad de La Laguna'),
(136621, 107887, 'gl', 'name', 'Universidade de La Laguna'),
(136622, 107887, 'en', 'name', 'University of La Laguna'),
(136623, 107888, 'hu', 'name', 'Comenius Egyetem'),
(136624, 107888, 'en', 'name', 'Comenius University Bratislava'),
(136625, 107888, 'de', 'name', 'Comenius-UniversitƤt Bratislava'),
(136626, 107888, 'es', 'name', 'Universidad Comenius de Bratislava'),
(136627, 107888, 'la', 'name', 'Universitas Comeniana Bratislavensis'),
(136628, 107888, 'fr', 'name', 'UniversitƩ Commenius de Bratislava'),
(136629, 107888, 'sk', 'name', 'Univerzita KomenskƩho v Bratislave'),
(136630, 107889, 'en', 'name', 'Independent Electricity System Operator'),
(136631, 107890, 'en', 'name', 'Donostia International Physics Center'),
(136632, 107891, 'no_lang_code', 'name', 'Arla Foods (Denmark)'),
(136633, 107892, 'fr', 'name', 'Centre fƩdƩral d''Ʃducation technologique du minas gerais'),
(136634, 107892, 'pt', 'name', 'Centro Federal de Educação Tecnológica de Minas Gerais'),
(136635, 107892, 'en', 'name', 'Federal Center for Technological Education of Minas Gerais'),
(136636, 107893, 'en', 'name', 'Rajiv Gandhi Institute of Petroleum Technology'),
(136637, 107894, 'en', 'name', 'Rochester Institute of Technology'),
(136638, 107895, 'es', 'name', 'Universidad de California en Riverside'),
(136639, 107895, 'en', 'name', 'University of California, Riverside'),
(136640, 107895, 'fr', 'name', 'UniversitƩ de Californie Ơ Riverside'),
(136641, 107896, 'en', 'name', 'Shahid Beheshti University'),
(136642, 107896, 'fa', 'name', 'دانؓگاه Ų“Ł‡ŪŒŲÆ ŲØŁ‡Ų“ŲŖŪŒ'),
(136643, 107897, 'en', 'name', 'Pan African Thoracic Society'),
(136644, 107898, 'en', 'name', 'International Union of Forest Research Organizations'),
(136645, 107898, 'de', 'name', 'Internationaler Verband Forstlicher Forschungsanstalten'),
(136646, 107898, 'fr', 'name', 'Union Internationale des Instituts de Recherches ForestiĆØres'),
(136647, 107898, 'es', 'name', 'Unión Internacional de Institutos de Investigación Forestal'),
(136648, 107899, 'es', 'name', 'Universidad de California en Irvine'),
(136649, 107899, 'en', 'name', 'University of California, Irvine'),
(136650, 107899, 'fr', 'name', 'UniversitƩ de Californie Ơ Irvine'),
(136651, 107900, 'en', 'name', 'Markey Cancer Center'),
(136652, 107901, 'da', 'name', 'Region Syddanmark'),
(136653, 107901, 'de', 'name', 'Region Süddänemark'),
(136654, 107901, 'en', 'name', 'Region of Southern Denmark'),
(136655, 107902, 'en', 'name', 'U.S. Army Command, Control, Communications, Computers, Cyber, Intelligence, Surveillance and Reconnaissance Center'),
(136656, 107903, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia em Nanomateriais de Carbono'),
(136657, 107904, 'da', 'name', 'KĆøbenhavns Universitet'),
(136658, 107904, 'en', 'name', 'University of Copenhagen'),
(136659, 107904, 'de', 'name', 'UniversitƤt Kopenhagen'),
(136660, 107905, 'en', 'name', 'Educational Department of Liaoning Province'),
(136661, 107905, 'zh', 'name', 'č¾½å®ēœę•™č‚²åŽ…'),
(136662, 107906, 'en', 'name', 'British Geriatrics Society'),
(136663, 107907, 'en', 'name', 'American University of Ras Al Khaimah'),
(136664, 107907, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ų±Ų£Ų³ Ų§Ł„Ų®ŁŠŁ…Ų©'),
(136665, 107908, 'fr', 'name', 'Institut de Recherche en Energie Solaire et Energies Nouvelles'),
(136666, 107908, 'en', 'name', 'Institut of Research in Solar Energy and New Energies'),
(136667, 107909, 'en', 'name', 'Ludovika University of Public Service'),
(136668, 107909, 'hu', 'name', 'Nemzeti KƶzszolgƔlati Egyetem'),
(136669, 107910, 'en', 'name', 'Irish Thoracic Society'),
(136670, 107911, 'no_lang_code', 'name', 'Ferrer Grupo (Spain)'),
(136671, 107912, 'es', 'name', 'Ministerio de Salud del PerĆŗ'),
(136672, 107912, 'en', 'name', 'Ministry of Health'),
(136673, 107913, 'en', 'name', 'Purdue University West Lafayette'),
(136674, 107913, 'fr', 'name', 'UniversitƩ de Purdue'),
(136675, 107914, 'en', 'name', 'Danish Ministry of Defence'),
(136676, 107914, 'da', 'name', 'Forsvarsministeriet'),
(136677, 107915, 'es', 'name', 'Sociedad Española de Endocrinología y Nutrición'),
(136678, 107916, 'no_lang_code', 'name', 'Vejchewin Research Institute'),
(136679, 107916, 'hi', 'name', 'ą¤µą„‡ą¤œą„ą¤œą„€ą¤µą¤æą¤Øą„ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(136680, 107917, 'en', 'name', 'University of Technology Sydney'),
(136681, 107918, 'en', 'name', 'Dartmouth College'),
(136682, 107919, 'en', 'name', 'Miguel HernƔndez University of Elche'),
(136683, 107919, 'es', 'name', 'Universidad Miguel HernƔndez de Elche'),
(136684, 107919, 'ca', 'name', 'Universitat de Miguel HernƔndez d''Elx'),
(136685, 107920, 'en', 'name', 'Jiangsu Education Department'),
(136686, 107920, 'zh', 'name', 'ę±Ÿč‹ēœę•™č‚²åŽ…'),
(136687, 107921, 'en', 'name', 'Saha Institute of Nuclear Physics'),
(136688, 107922, 'es', 'name', 'Ministerio del Ambiente, Agua y Transición Ecológica'),
(136689, 107923, 'en', 'name', 'Babasaheb Bhimrao Ambedkar University'),
(136690, 107923, 'hi', 'name', 'ą¤¬ą¤¾ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤­ą„€ą¤®ą¤°ą¤¾ą¤µ ą¤…ą¤‚ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(136691, 107923, 'ta', 'name', 'ą®…ą®®ąÆą®ŖąÆ‡ą®¤ąÆą®•ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(136692, 107924, 'en', 'name', 'Marcus Foundation'),
(136693, 107925, 'en', 'name', 'Prince of Songkla University'),
(136694, 107925, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŖąø‡ąø‚ąø„ąø²ąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(136695, 107926, 'en', 'name', 'Korea Institute for Advanced Study'),
(136696, 107926, 'ko', 'name', '고등과학원'),
(136697, 107927, 'en', 'name', 'Joint Institute for Nuclear Astrophysics'),
(136698, 107928, 'de', 'name', 'Hilfe für krebskranke Kinder Frankfurt'),
(136699, 107929, 'en', 'name', 'Idaho National Laboratory'),
(136700, 107929, 'fr', 'name', 'Laboratoire national de l''idaho'),
(136701, 107929, 'es', 'name', 'Laboratorio Nacional de Idaho'),
(136702, 107930, 'hu', 'name', 'Bukaresti Egyetem'),
(136703, 107930, 'ro', 'name', 'Universitatea din București'),
(136704, 107930, 'en', 'name', 'University of Bucharest'),
(136705, 107931, 'en', 'name', 'Xiamen Municipal Bureau of Science and Technology'),
(136706, 107931, 'zh', 'name', 'åŽ¦é—Øē§‘å­¦ęŠ€ęœÆå±…'),
(136707, 107932, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Rio Grande do Sul'),
(136708, 107932, 'en', 'name', 'Rio Grande do Sul Federal Institute of Education, Science and Technology'),
(136709, 107933, 'en', 'name', 'Ministry of Education'),
(136710, 107934, 'en', 'name', 'U.S. Air Force Life Cycle Management Center'),
(136711, 107935, 'en', 'name', 'United States Department of the Navy'),
(136712, 107936, 'fr', 'name', 'Terres Inovia'),
(136713, 107937, 'en', 'name', 'Government of the Republic of China'),
(136714, 107937, 'zh', 'name', 'äø­čÆę°‘åœ‹ę”æåŗœ'),
(136715, 107938, 'en', 'name', 'United States Air Force Electronic Systems Center'),
(136716, 107939, 'en', 'name', 'Institute of Hydromechanics of National Academy of Sciences of Ukraine'),
(136717, 107939, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гіГромеханіки ŠŠŠ України'),
(136718, 107940, 'en', 'name', 'Vinh Long University of Technology Education'),
(136719, 107940, 'vi', 'name', 'ĐẔi hį»c Sʰ phįŗ”m Kỹ thuįŗ­t VÄ©nh Long'),
(136720, 107941, 'en', 'name', 'Yew Chung Yew Wah Education Network'),
(136721, 107941, 'zh', 'name', 'č€€äø­č€€åŽę•™č‚²ē½‘ē»œ'),
(136722, 107942, 'en', 'name', 'CoE MARBLE - Centre of Excellence in Maritime Robotics and Technologies for Sustainable Blue Economy'),
(136723, 107943, 'en', 'name', 'Mighty Crow (United States)'),
(136724, 107944, 'en', 'name', 'Cooperative Institute for Climate, Ocean, & Ecosystem Studies'),
(136725, 107945, 'en', 'name', 'Ministry of Environment and Climate Change'),
(136726, 107945, 'ar', 'name', 'وزارة Ų§Ł„ŲØŁŠŲ¦Ų© ŁˆŲ§Ł„ŲŖŲŗŁŠŁ‘Ų± Ų§Ł„Ł…Ł†Ų§Ų®ŁŠ'),
(136727, 107946, 'de', 'name', 'Institut für Angewandte manuelle Therapie'),
(136728, 107947, 'en', 'name', 'Alexander T. Augusta Military Medical Center'),
(136729, 107948, 'en', 'name', 'Dmytro Motornyi Tavria State Agrotechnological University'),
(136730, 107948, 'uk', 'name', 'Š¢Š°Š²Ń€Ń–Š¹ŃŃŒŠŗŠøŠ¹ Гержавний агротехнологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Дмитра ŠœŠ¾Ń‚орного'),
(136731, 107949, 'en', 'name', 'U.S. Army Research Institute for the Behavioral and Social Sciences'),
(136732, 107950, 'en', 'name', 'Arab Institution of Knowledge Management'),
(136733, 107950, 'ar', 'name', 'المؤسسة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© ل؄دارة المعرفة'),
(136734, 107951, 'en', 'name', 'Longwood Gardens'),
(136735, 107952, 'en', 'name', 'State Scientific and Production Enterprise «Kartographia»'),
(136736, 107952, 'uk', 'name', 'Державне науково-виробниче піГприємство Ā«ŠšŠ°Ń€Ń‚Š¾Š³Ń€Š°Ń„Ń–ŃĀ»'),
(136737, 107953, 'de', 'name', 'Gesellschaft fuer klinische Forschung'),
(136738, 107953, 'en', 'name', 'Society for Clinical Research'),
(136739, 107954, 'de', 'name', 'Institut für Arbeitsschutz der Deutschen Gesetzlichen Unfallversicherung'),
(136740, 107954, 'en', 'name', 'Institute for Occupational Safety and Health of the German Social Accident Insurance'),
(136741, 107955, 'en', 'name', 'Ministry of Justice'),
(136742, 107955, 'zh', 'name', 'äø­čÆę°‘åœ‹ę³•å‹™éƒØ'),
(136743, 107956, 'en', 'name', 'Indian Institute of Management Jammu'),
(136744, 107957, 'en', 'name', 'Alliance for Decision Education'),
(136745, 107958, 'nl', 'name', 'Vrije Universiteit Amsterdam'),
(136746, 107959, 'en', 'name', 'Institute of Bioenergy Crops and Sugar Beet'),
(136747, 107959, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біоенергетичних ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ і Ń†ŃƒŠŗŃ€Š¾Š²ŠøŃ… Š±ŃƒŃ€ŃŠŗŃ–Š²'),
(136748, 107960, 'pl', 'name', 'Narodowy Instytut Zdrowia Publicznego PZH – Państwowy Instytut Badawczy'),
(136749, 107960, 'en', 'name', 'National Institute of Public Health, National Institute of Hygiene – National Research Institute'),
(136750, 107961, 'id', 'name', 'Akademi Komunitas Industri Tekstil dan Produk Tekstil Surakarta'),
(136751, 107962, 'ro', 'name', 'Academia RomĆ¢nă, Filiala Iași'),
(136752, 107962, 'en', 'name', 'Romanian Academy, Iași Divison'),
(136753, 107963, 'pl', 'name', 'Uniwersytet Przyrodniczy we Wrocławiu'),
(136754, 107963, 'en', 'name', 'Wrocław University of Environmental and Life Sciences'),
(136755, 107964, 'fr', 'name', 'Union Nationale Interprofessionnelle des plantes riches en ProtƩines'),
(136756, 107965, 'en', 'name', 'Faculty of Economics and Management of Sfax'),
(136757, 107965, 'fr', 'name', 'FacultƩ des Sciences Economiques et de Gestion de Sfax'),
(136758, 107965, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŁŠŲ© ŁˆŲ§Ł„ŲŖŲµŲ±Ł بصفاقس'),
(136759, 107966, 'en', 'name', 'U.S. Army Intelligence Center of Excellence'),
(136760, 107967, 'en', 'name', 'Phan Chau Trinh University'),
(136761, 107967, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c Phan ChĆ¢u Trinh'),
(136762, 107968, 'en', 'name', 'United States Air Force Aeronautical Systems Center'),
(136763, 107969, 'en', 'name', 'World Wide Fund for Nature'),
(136764, 107970, 'en', 'name', 'Amsterdam Neuroscience'),
(136765, 107970, 'nl', 'name', 'Researchsites Amsterdam'),
(136766, 107971, 'en', 'name', 'Army Sustainment University'),
(136767, 107972, 'es', 'name', 'Facultad Latinoamericana de Ciencias Costa Rica'),
(136768, 107972, 'en', 'name', 'Latin American Faculty of Social Sciences Costa Rica'),
(136769, 107973, 'en', 'name', 'National Institute for the Empowerment of Persons with Intellectual Disabilities'),
(136770, 107973, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤¬ą„Œą¤¦ą„ą¤§ą¤æą¤• ą¤¦ą¤æą¤µą„ą¤Æą¤¾ą¤‚ą¤—ą¤œą¤Ø ą¤øą¤¶ą¤•ą„ą¤¤ą¤æą¤•ą¤°ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(136771, 107974, 'fr', 'name', 'Affaires Mondiales Canada'),
(136772, 107974, 'en', 'name', 'Global Affairs Canada'),
(136773, 107975, 'en', 'name', 'Kindai University'),
(136774, 107975, 'ja', 'name', '近畿大学'),
(136775, 107976, 'en', 'name', 'National Research Center for Hematology Russian Academy of Medical Sciences'),
(136776, 107976, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр гематологии'),
(136777, 107977, 'en', 'name', 'U.S. Army Fires Center of Excellence'),
(136778, 107978, 'es', 'name', 'Museo Nacional de Historia Natural de Cuba'),
(136779, 107978, 'en', 'name', 'Natural History National Museum of Cuba'),
(136780, 107979, 'en', 'name', 'Rani Lakshmi Bai Central Agricultural University, Jhansi'),
(136781, 107979, 'hi', 'name', 'ą¤°ą¤¾ą¤Øą„€ ą¤²ą¤•ą„ą¤·ą„ą¤®ą„€ą¤¬ą¤¾ą¤ˆ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤ą¤¾ą¤‚ą¤øą„€'),
(136782, 107980, 'en', 'name', 'MediaKind (United States)'),
(136783, 107981, 'en', 'name', 'Tashkent Institute of Architecture and Civil Engineering'),
(136784, 107981, 'uz', 'name', 'Toshkent Arxitektura Qurilish Universiteti'),
(136785, 107982, 'en', 'name', 'Tel Aviv University'),
(136786, 107982, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁ„ أبيب'),
(136787, 107983, 'en', 'name', 'Institute of Agricultural Biology and Biotechnology'),
(136788, 107983, 'it', 'name', 'Istituto di Biologia e Biotecnologia Agraria'),
(136789, 107984, 'en', 'name', 'Higher Technological Institute, 6th of October City'),
(136790, 107984, 'ar', 'name', 'المعهد Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ Ų§Ł„Ų¹Ų§Ł„ŁŠ بالسادس من أكتوبر'),
(136791, 107985, 'en', 'name', 'Ministry of National Defense'),
(136792, 107985, 'zh', 'name', 'äø­čÆę°‘åœ‹åœ‹é˜²éƒØ'),
(136793, 107986, 'en', 'name', 'Centre for Advancing Health Outcomes'),
(136794, 107987, 'es', 'name', 'Facultad Latinoamericana de Ciencias Sociales'),
(136795, 107987, 'en', 'name', 'Latin American Faculty of Social Sciences'),
(136796, 107988, 'en', 'name', 'Reuth TLV Rehabilitation Hospital'),
(136797, 107988, 'he', 'name', 'רעות תל-אביב בית חולים שיקומי'),
(136798, 107989, 'en', 'name', 'NGO ā€œResearch And Educational Innovation Center of Social Transformationsā€'),
(136799, 107989, 'uk', 'name', 'Š“Šž Ā«ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ŠžŃŠ²Ń–Ń‚Š½Ń–Š¹ Інноваційний Центр Š”ŃƒŃŠæŃ–Š»ŃŒŠ½ŠøŃ… Трансформацій»'),
(136800, 107990, 'es', 'name', 'GHENOVA'),
(136801, 107990, 'no_lang_code', 'name', 'GHENOVA (Spain)'),
(136802, 107991, 'es', 'name', 'Universidad de Utah'),
(136803, 107991, 'en', 'name', 'University of Utah'),
(136804, 107992, 'es', 'name', 'Escuela Naval del PerĆŗ'),
(136805, 107993, 'en', 'name', 'Independent Public Health Care Institution of the Ministry of the Interior and Administration in Krakow, Kraków, Poland'),
(136806, 107993, 'pl', 'name', 'Mowia Samodzielny Publiczny Zakład Opieki Zdrowotnej Ministerstwa Spraw Wewnętrznych i Administracji w Krakowie'),
(136807, 107994, 'en', 'name', 'Kulyash Bayseyitova Kazakh National University of Arts'),
(136808, 107994, 'kk', 'name', 'К. Байсейітова атынГағы ŅšŠ°Š·Š°Ņ› ұлттық өнер ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(136809, 107994, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² имени ŠšŃƒŠ»ŃŃˆ Байсеитовой'),
(136810, 107994, 'uk', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ мистецтв'),
(136811, 107995, 'en', 'name', 'National Alliance against Disparities in Patient Health'),
(136812, 107996, 'en', 'name', 'People''s Dental College and Hospital'),
(136813, 107997, 'en', 'name', 'Landstuhl Regional Medical Center'),
(136814, 107998, 'en', 'name', 'The University of Texas at Austin'),
(136815, 107998, 'es', 'name', 'Universidad de Texas en Austin'),
(136816, 107998, 'fr', 'name', 'UniversitƩ du texas Ơ austin'),
(136817, 107999, 'en', 'name', 'Research Institute for Road and Street'),
(136818, 107999, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćæć”ē ”ē©¶ę‰€'),
(136819, 108000, 'nl', 'name', 'Aeres Hogeschool'),
(136820, 108000, 'en', 'name', 'Aeres University of Applied Sciences'),
(136821, 108001, 'en', 'name', 'Providence Health Care'),
(136822, 108002, 'en', 'name', 'International Centre for Integrated Mountain Development'),
(136823, 108003, 'en', 'name', 'Foundation for Education and Social Dialogue ā€œPro Civisā€'),
(136824, 108003, 'pl', 'name', 'Fundacja Edukacji i Dialogu Społecznego PRO CIVIS'),
(136825, 108004, 'en', 'name', 'State Scientific Research Institute of Armament and Military Equipment Testing and Certification'),
(136826, 108004, 'uk', 'name', 'Державний науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²ŠøŠæŃ€Š¾Š±ŃƒŠ²Š°Š½ŃŒ і сертифікації Š¾Š·Š±Ń€Š¾Ń”Š½Š½Ń та Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾Ń— техніки'),
(136827, 108005, 'fr', 'name', 'Ambassade du Canada Ć  Washington, D.C'),
(136828, 108005, 'en', 'name', 'Embassy of Canada in Washington, D.C'),
(136829, 108006, 'en', 'name', 'Ambika Prasad Research Foundation'),
(136830, 108007, 'en', 'name', 'Osaka University of Pharmaceutical Sciences'),
(136831, 108007, 'ja', 'name', 'å¤§é˜Ŗč–¬ē§‘å¤§å­¦'),
(136832, 108008, 'en', 'name', 'University of Limassol'),
(136833, 108008, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī›ĪµĪ¼ĪµĻƒĪæĻ'),
(136834, 108008, 'ru', 'name', 'Университет Лимассола'),
(136835, 108009, 'en', 'name', 'European Severe Storms Laboratory'),
(136836, 108010, 'pt', 'name', 'Centro de Investigação em Biodiversidade e Recursos Genéticos'),
(136837, 108010, 'en', 'name', 'Research Centre in Biodiversity and Genetic Resources'),
(136838, 108011, 'en', 'name', 'National Centre for Biodiversity and Gene Conservation'),
(136839, 108011, 'hu', 'name', 'Nemzeti BiodiverzitĆ”s- Ć©s GĆ©nmegőrzĆ©si Kƶzpont'),
(136840, 108012, 'en', 'name', 'International Gustav Mahler Society'),
(136841, 108012, 'de', 'name', 'Internationale Gustav Mahler Gesellschaft'),
(136842, 108013, 'en', 'name', 'M.M. Gryshko National Botanical Garden of National Academy of Sciences of Ukraine'),
(136843, 108013, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ботанічний саГ імені М. М. Š“Ń€ŠøŃˆŠŗŠ° ŠŠŠ України'),
(136844, 108014, 'pt', 'name', 'Universidade de Rio Verde'),
(136845, 108015, 'en', 'name', 'Biomaz Infosearch'),
(136846, 108016, 'fr', 'name', 'Institut de Recherche de l’École Navale'),
(136847, 108016, 'en', 'name', 'Naval Academy Research Institute'),
(136848, 108017, 'en', 'name', 'U.S. Army Training and Doctrine Command'),
(136849, 108018, 'da', 'name', 'VIVE - Det Nationale Forsknings- og Analysecenter for VelfƦrd'),
(136850, 108018, 'en', 'name', 'VIVE - The Danish Center for Social Science Research'),
(136851, 108019, 'de', 'name', 'EcoAustria Institut für Wirtschaftsforschung'),
(136852, 108020, 'en', 'name', 'The East European Scientific Studies Center'),
(136853, 108020, 'uk', 'name', 'Центр ŃŃ…Ń–Š“Š½Š¾Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŃ… Š½Š°ŃƒŠŗŠ¾Š²ŠøŃ… ŃŃ‚ŃƒŠ“Ń–Š¹'),
(136854, 108021, 'en', 'name', 'Belmont Forum'),
(136855, 108022, 'en', 'name', 'Federal Institute for Quality Assurance of the Austrian School System'),
(136856, 108022, 'de', 'name', 'Institut des Bundes für Qualitätssicherung im österreichischen Schulwesen'),
(136857, 108023, 'uz', 'name', 'Oriental Universiteti'),
(136858, 108023, 'en', 'name', 'Oriental University'),
(136859, 108024, 'de', 'name', 'Deutsches Institut für Erwachsenenbildung – Leibniz-Zentrum für Lebenslanges Lernen'),
(136860, 108024, 'en', 'name', 'German Institute for Adult Education – Leibniz Centre for Lifelong Learning'),
(136861, 108025, 'de', 'name', 'Institut AllergoSan Pharmazeutische Produkte Forschungs- und Vertriebs GmbH (Austria)'),
(136862, 108026, 'en', 'name', 'BioLuster Research Center Ltd'),
(136863, 108027, 'en', 'name', 'Bangladesh University of Engineering and Technology'),
(136864, 108027, 'bn', 'name', 'বাংলাদেশ ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(136865, 108028, 'en', 'name', 'InsideOutBio (United States)'),
(136866, 108029, 'de', 'name', 'Deutsches Institut für Gesundheitsforschung gGmbH'),
(136867, 108030, 'en', 'name', 'Spiritan University Nneochi'),
(136868, 108031, 'en', 'name', 'Solar Data Analysis Center'),
(136869, 108032, 'en', 'name', 'Kindai University Nara Hospital'),
(136870, 108032, 'ja', 'name', 'čæ‘ē•æå¤§å­¦å„ˆč‰Æē—…é™¢'),
(136871, 108033, 'en', 'name', 'Cygnet Godden Green'),
(136872, 108034, 'es', 'name', 'Universitario Tecnológico Universitam'),
(136873, 108035, 'fr', 'name', 'Institut SupƩrieur d''Informatique et des Technologies de Communication de Hammam Sousse'),
(136874, 108036, 'es', 'name', 'Facultad Latinoamericana de Ciencias Sociales RepĆŗblica Dominicana'),
(136875, 108036, 'en', 'name', 'Latin American Faculty of Social Sciences Dominican Republic'),
(136876, 108037, 'en', 'name', 'Bayworld Centre for Research and Education'),
(136877, 108038, 'fr', 'name', 'Terres Univia'),
(136878, 108039, 'en', 'name', 'Clonal Heterogeneity, Leukemic environment, ThErapy Resistance of chronic leukemias'),
(136879, 108040, 'es', 'name', 'Escuela Naval de Cadetes "Almirante Padilla"'),
(136880, 108041, 'it', 'name', 'Accademia Albertina delle Belle Arti'),
(136881, 108041, 'en', 'name', 'Albertina Academy of Fine Arts'),
(136882, 108042, 'en', 'name', 'Ministry of Labor'),
(136883, 108042, 'zh', 'name', 'å‹žå‹•éƒØ'),
(136884, 108043, 'en', 'name', 'School of Management Sciences, Varanasi'),
(136885, 108044, 'de', 'name', 'DGUV Hochschule - Hochschule der Gesetzlichen Unfallversicherung (HGU)'),
(136886, 108044, 'en', 'name', 'University of Applied Sciences of the German Social Accident Insurance'),
(136887, 108045, 'fr', 'name', 'Laboratoire de Recherche sur le Langage'),
(136888, 108046, 'es', 'name', 'Facultad Latinoamericana de Ciencias MƩxico'),
(136889, 108046, 'en', 'name', 'Latin American Faculty of Social Sciences Mexico'),
(136890, 108047, 'pt', 'name', 'Faculdades Nova EsperanƧa'),
(136891, 108048, 'pt', 'name', 'Hospitais da Universidade de Coimbra'),
(136892, 108048, 'en', 'name', 'Hospitals of the University of Coimbra'),
(136893, 108049, 'es', 'name', 'Facultad Latinoamericana de Ciencias Argentina'),
(136894, 108049, 'en', 'name', 'Latin American Faculty of Social Sciences Argentina'),
(136895, 108050, 'no_lang_code', 'name', 'Qu & Co. (Netherlands)'),
(136896, 108051, 'de', 'name', 'FHWien der WKW'),
(136897, 108052, 'en', 'name', 'Gachon University Gil Hospital'),
(136898, 108053, 'en', 'name', 'Ministry of Transportation and Communications'),
(136899, 108053, 'zh', 'name', 'äø­čÆę°‘åœ‹äŗ¤é€šéƒØ'),
(136900, 108054, 'en', 'name', 'University of Engineering & Management'),
(136901, 108054, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦‡ą¦žą§ą¦œą¦æą¦Øą¦æą¦Æą¦¼ą¦¾ą¦°ą¦æą¦‚ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ'),
(136902, 108055, 'en', 'name', 'Ellison Medical Institute'),
(136903, 108056, 'en', 'name', 'U.S. Army Cyber Center of Excellence'),
(136904, 108057, 'de', 'name', 'IBO – Ɩsterreichisches Institut für Bauen und Ɩkologie'),
(136905, 108057, 'no_lang_code', 'name', 'IBO – Ɩsterreichisches Institut für Bauen und Ɩkologie (Austria)'),
(136906, 108058, 'de', 'name', 'Internationale Joseph Haydn Privatstiftung Eisenstadt'),
(136907, 108059, 'en', 'name', 'Research Institute for Road and Street'),
(136908, 108059, 'ja', 'name', 'äø€čˆ¬č²”å›£ę—„ęœ¬ćæć”ē ”ē©¶ę‰€'),
(136909, 108060, 'nl', 'name', 'Stichting Aeres Groep'),
(136910, 108061, 'it', 'name', 'Agenzia Regionale per la Protezione Ambientale del Piemonte'),
(136911, 108061, 'en', 'name', 'Regional Agency For Environmental Protection of Piedmont'),
(136912, 108062, 'es', 'name', 'Fundación Universitaria San Pablo CEU'),
(136913, 108063, 'en', 'name', 'Ministry of Finance'),
(136914, 108063, 'zh', 'name', 'č²”ę”æéƒØ'),
(136915, 108064, 'fr', 'name', 'Institut de BiomƩcanique Humaine Georges Charpak'),
(136916, 108065, 'en', 'name', 'Wisconsin Lutheran Seminary'),
(136917, 108066, 'en', 'name', 'The Welding Institute'),
(136918, 108067, 'en', 'name', 'General Hospital of Laconia'),
(136919, 108067, 'el', 'name', 'Γενικο ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪ¹Īæ Λακωνιας'),
(136920, 108068, 'no_lang_code', 'name', 'Trinoma (France)'),
(136921, 108069, 'de', 'name', 'Bundesministerium für Bildung, Wissenschaft und Forschung'),
(136922, 108069, 'en', 'name', 'Federal Ministry of Education, Science and Research'),
(136923, 108070, 'en', 'name', 'University Ambrosiana'),
(136924, 108070, 'it', 'name', 'UniversitĆ  Ambrosiana'),
(136925, 108071, 'en', 'name', 'Ministry of Economic Affairs'),
(136926, 108072, 'en', 'name', 'University of Caen Normandy'),
(136927, 108072, 'fr', 'name', 'UniversitƩ de Caen Normandie'),
(136928, 108073, 'en', 'name', 'Foundation for Partnership Initiatives in the Niger Delta'),
(136929, 108074, 'en', 'name', 'Heliophysics Science Division'),
(136930, 108075, 'fr', 'name', 'Laboratoire IngĆ©nierie des Fluides SystĆØmes ƉnergĆ©tiques'),
(136931, 108075, 'en', 'name', 'Laboratory Fluids Engineering Energy Systems'),
(136932, 108076, 'de', 'name', 'FernUni Schweiz'),
(136933, 108077, 'en', 'name', 'Czech Social Science Data Archive'),
(136934, 108077, 'cs', 'name', 'Český sociĆ”lněvědnĆ­ datový archiv'),
(136935, 108078, 'en', 'name', 'Army University'),
(136936, 108079, 'id', 'name', 'Universitas Sumatera Utara'),
(136937, 108079, 'en', 'name', 'University of North Sumatra'),
(136938, 108080, 'de', 'name', 'Institut für Ländliche Strukturforschung'),
(136939, 108080, 'en', 'name', 'Institute for Rural Development Research'),
(136940, 108081, 'fr', 'name', 'Centre de Recherches sur les LittƩratures et la SociopoƩtique'),
(136941, 108082, 'en', 'name', 'U.S. Army Maneuver Center of Excellence'),
(136942, 108083, 'no_lang_code', 'name', 'KLA (United States)'),
(136943, 108084, 'es', 'name', 'Academia Militar de los Estados Unidos'),
(136944, 108084, 'fr', 'name', 'AcadƩmie Militaire de West Point'),
(136945, 108084, 'en', 'name', 'United States Military Academy'),
(136946, 108085, 'en', 'name', 'University of French Polynesia'),
(136947, 108085, 'fr', 'name', 'UniversitƩ de la polynƩsie franƧaise'),
(136948, 108086, 'en', 'name', 'United States Special Operations Command'),
(136949, 108087, 'en', 'name', 'Shmuel Harofeh Hospital'),
(136950, 108087, 'he', 'name', 'בית החולים שמואל הרופא'),
(136951, 108088, 'en', 'name', 'Electrochem Technologies & Materials Inc. (Canada)'),
(136952, 108089, 'en', 'name', 'Joint Special Operations University'),
(136953, 108090, 'fr', 'name', 'Ministère de la Santé'),
(136954, 108090, 'en', 'name', 'Ontario Ministry of Health'),
(136955, 108091, 'en', 'name', 'EOSC Association'),
(136956, 108092, 'it', 'name', 'Sistema Nazionale per la Protezione dell''Ambiente'),
(136957, 108093, 'fr', 'name', 'Centre international de recherche sur le cancer'),
(136958, 108093, 'en', 'name', 'International Agency for Research on Cancer'),
(136959, 108094, 'fr', 'name', 'ROMEO'),
(136960, 108095, 'en', 'name', 'Naval Safety Command'),
(136961, 108096, 'es', 'name', 'Departamento del EjƩrcito de los Estados Unidos'),
(136962, 108096, 'en', 'name', 'United States Department of the Army'),
(136963, 108097, 'en', 'name', 'Netversity International'),
(136964, 108098, 'fr', 'name', 'ParisTech'),
(136965, 108099, 'fr', 'name', 'Consortium des bibliothĆØques universitaires suisses'),
(136966, 108099, 'en', 'name', 'Consortium of Swiss Academic Libraries'),
(136967, 108099, 'it', 'name', 'Consorzio delle biblioteche universitarie svizzere'),
(136968, 108099, 'de', 'name', 'Konsortium der Schweizer Hochschulbibliotheken'),
(136969, 108100, 'en', 'name', 'Singapore Baptist Theological Seminary'),
(136970, 108100, 'zh', 'name', 'ę–°åŠ å”ęµøäæ”ä¼šē„žå­¦é™¢'),
(136971, 108101, 'en', 'name', 'AOI Universal Hospital'),
(136972, 108101, 'ja', 'name', 'AOIå›½éš›ē—…é™¢'),
(136973, 108102, 'en', 'name', 'Ministry of Health and Welfare'),
(136974, 108103, 'en', 'name', 'Ibn Sina University of Medical and Pharmaceutical Sciences'),
(136975, 108103, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ابن Ų³ŁŠŁ†Ų§ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„ŲµŁŠŲÆŁ„Ų§Ł†ŁŠŲ©'),
(136976, 108104, 'en', 'name', 'Gulbenkian Institute for Molecular Medicine'),
(136977, 108105, 'en', 'name', 'Government Ayurvedic College & Hospital, Balangir'),
(136978, 108105, 'or', 'name', 'ସରକାରୀ ą¬†ą­Ÿą­ą¬°ą­ą¬¬ą­‡ą¬¦ ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿą­ ą¬¬ą¬²ą­ą¬™ą­ą¬—ą¬°ą­'),
(136979, 108106, 'en', 'name', 'UNM Sandoval Regional Medical Center'),
(136980, 108107, 'en', 'name', 'ADJURIS – International Academic Publisher'),
(136981, 108108, 'en', 'name', 'Association for Molecular Pathology'),
(136982, 108109, 'fr', 'name', 'UniversitƩ de Rouen Normandie'),
(136983, 108110, 'en', 'name', 'WWF-Pakistan'),
(136984, 108111, 'en', 'name', 'Ankara Etlik City Hospital'),
(136985, 108111, 'tr', 'name', 'Ankara Etlik Şehir Hastanesi'),
(136986, 108111, 'ar', 'name', 'مستؓفى Ł…ŲÆŁŠŁ†Ų© Ų„ŲŖŁ„ŁŠŁƒ'),
(136987, 108112, 'en', 'name', 'The Madura College'),
(136988, 108112, 'ta', 'name', 'ą®®ą®¤ąÆą®°ąÆˆą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(136989, 108113, 'es', 'name', 'Universidad del Rosario'),
(136990, 108114, 'fr', 'name', 'ACCompagnement Pluriprofessionnel PatienT'),
(136991, 108115, 'en', 'name', 'Indian Institute of Information Technology, Sonepat'),
(136992, 108115, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤øą„‹ą¤Øą„€ą¤Ŗą¤¤'),
(136993, 108116, 'de', 'name', 'NABU|naturgucker geG'),
(136994, 108117, 'en', 'name', 'Higher University of San AndrƩs'),
(136995, 108117, 'es', 'name', 'Universidad Mayor de San AndrƩs'),
(136996, 108118, 'de', 'name', 'Naturkundemuseum Bamberg'),
(136997, 108119, 'en', 'name', 'International Research and Publishing Academy (Pakistan)'),
(136998, 108120, 'en', 'name', 'Beaver Creek Analytical, LLC (United States)'),
(136999, 108121, 'es', 'name', 'Universidad de AmƩrica'),
(137000, 108121, 'en', 'name', 'University of America'),
(137001, 108122, 'en', 'name', 'Foundation for Renewable Energy & Environment'),
(137002, 108123, 'en', 'name', 'Air University'),
(137003, 108124, 'es', 'name', 'Universidad CEU Fernando III'),
(137004, 108125, 'en', 'name', 'Chuiko Institute of Surface Chemistry'),
(137005, 108125, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ хімії поверхні ім. Šž.Šž. Чуйка ŠŠŠ України'),
(137006, 108126, 'en', 'name', 'Namangan State Pedagogical Institute'),
(137007, 108126, 'uz', 'name', 'Namanganskij gosudarstvennyj pedagogičeskij institut'),
(137008, 108127, 'en', 'name', 'University of Internal Affairs of Mongolia'),
(137009, 108127, 'mn', 'name', 'Монгол Улсын Єууль Š”Š°Ń…ŠøŃƒŠ»Š°Ń…Ń‹Š½ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(137010, 108128, 'en', 'name', 'We and AI'),
(137011, 108129, 'en', 'name', 'Flór Ferenc Hospital'),
(137012, 108129, 'hu', 'name', 'Kistarcsai Flór Ferenc KórhÔz'),
(137013, 108130, 'en', 'name', 'Arrington Research, Inc. (United States)'),
(137014, 108131, 'es', 'name', 'Dirección de Educación Policial Institución Universitaria de la Policía Nacional'),
(137015, 108132, 'en', 'name', 'University of Angers'),
(137016, 108132, 'fr', 'name', 'UniversitƩ d''Angers'),
(137017, 108133, 'en', 'name', 'Burrell College of Osteopathic Medicine'),
(137018, 108134, 'en', 'name', 'South Carolina Department of Public Health'),
(137019, 108135, 'en', 'name', 'Space Physics Data Facility'),
(137020, 108136, 'fr', 'name', 'Laboratoire Conception de Produits et Innovation'),
(137021, 108137, 'de', 'name', 'Institut für Geschichte des ländlichen Raumes'),
(137022, 108137, 'en', 'name', 'Institute of Rural History'),
(137023, 108138, 'en', 'name', 'Cygnet Healthcare Ltd'),
(137024, 108139, 'en', 'name', 'Health and Services of Polynesian Ecosystems'),
(137025, 108139, 'fr', 'name', 'Santé et Services des Ecosytèmes Polynésiens'),
(137026, 108140, 'en', 'name', 'CBM Bethel Hospital'),
(137027, 108141, 'en', 'name', 'Bayworld'),
(137028, 108142, 'en', 'name', 'London Health Sciences Centre Research Institute'),
(137029, 108143, 'en', 'name', 'V.M. Glushkov Institute of Cybernetics'),
(137030, 108143, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кібернетики імені Š’.М. Š“Š»ŃƒŃˆŠŗŠ¾Š²Š° ŠŠŠ України'),
(137031, 108144, 'fr', 'name', 'Centre Michel de l’Hospital'),
(137032, 108145, 'en', 'name', 'Amsterdam Public Health'),
(137033, 108146, 'en', 'name', 'German University of Digital Science'),
(137034, 108147, 'en', 'name', 'Open Research Community Accelerator'),
(137035, 108148, 'no_lang_code', 'name', 'Pasqal (France)'),
(137036, 108149, 'en', 'name', 'Czech National Corpus'),
(137037, 108149, 'cs', 'name', 'Český nÔrodní korpus'),
(137038, 108150, 'en', 'name', 'Alisher Navo''i Tashkent State University of Uzbek Language and Literature'),
(137039, 108150, 'uz', 'name', 'Alisher Navoiy nomidagi Toshkent davlat oʻzbek tili va adabiyoti universiteti'),
(137040, 108150, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ узбекского ŃŠ·Ń‹ŠŗŠ° Šø Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ имени ŠŠ»ŠøŃˆŠµŃ€Š° ŠŠ°Š²Š¾Šø'),
(137041, 108150, 'tt', 'name', 'Š¢Š°ŃˆŠŗÓ™Š½Ń‚ Гәүләт үзбәк теле һәм Ó™Š“Ó™Š±ŠøŃŃ‚Ń‹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(137042, 108151, 'en', 'name', 'Putra Business School'),
(137043, 108152, 'fr', 'name', 'Centre de Recherche en Odontologie Clinique'),
(137044, 108153, 'en', 'name', 'Sustainment Center of Excellence'),
(137045, 108154, 'en', 'name', 'Alice & Bob (France)'),
(137046, 108155, 'en', 'name', 'United States Fleet Forces Command'),
(137047, 108156, 'en', 'name', 'University of the Pacific'),
(137048, 108157, 'es', 'name', 'Universidad de Virginia'),
(137049, 108157, 'en', 'name', 'University of Virginia'),
(137050, 108157, 'fr', 'name', 'UniversitƩ de virginie'),
(137051, 108158, 'fr', 'name', 'Laboratoire Bourguignon des MatƩriaux et ProcƩdƩs'),
(137052, 108159, 'es', 'name', 'Universidad de Nuevo MƩxico'),
(137053, 108159, 'en', 'name', 'University of New Mexico'),
(137054, 108159, 'fr', 'name', 'UniversitƩ du Nouveau-Mexique'),
(137055, 108160, 'en', 'name', 'National Research Council Nepal'),
(137056, 108160, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤Ŗą¤°ą¤æą¤·ą¤¦ą„ ą¤Øą„‡ą¤Ŗą¤¾ą¤²'),
(137057, 108161, 'en', 'name', 'South Colombian University'),
(137058, 108161, 'es', 'name', 'Universidad Surcolombiana'),
(137059, 108162, 'en', 'name', 'University of Sousse'),
(137060, 108162, 'fr', 'name', 'UniversitƩ de Sousse'),
(137061, 108162, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سوسة'),
(137062, 108163, 'pl', 'name', 'Górnośląska Wyższa Szkoła Handlowa im. Wojciecha Korfantego'),
(137063, 108164, 'fr', 'name', 'Laboratoire de MƩcanique et ProcƩdƩs de Fabrication'),
(137064, 108164, 'en', 'name', 'Mechanics, Surfaces and Materials Processing'),
(137065, 108165, 'en', 'name', 'National Radio Astronomy Observatory'),
(137066, 108166, 'en', 'name', 'National University of Cuyo'),
(137067, 108166, 'es', 'name', 'Universidad Nacional de Cuyo'),
(137068, 108167, 'fr', 'name', 'Analyse IntƩgrƩe Multimodale en SantƩ'),
(137069, 108168, 'it', 'name', 'Museo di Storia Naturale di Milano'),
(137070, 108168, 'en', 'name', 'Natural History Museum of Milan'),
(137071, 108169, 'en', 'name', 'South Carolina Department of Health and Environmental Control'),
(137072, 108170, 'ca', 'name', 'Institut de CiĆØncia de Materials de Barcelona'),
(137073, 108170, 'en', 'name', 'Institute of Materials Science of Barcelona'),
(137074, 108171, 'de', 'name', 'Deutsche Gesetzliche Unfallversicherung'),
(137075, 108172, 'nl', 'name', 'Dienst Wegverkeer'),
(137076, 108172, 'en', 'name', 'Netherlands Vehicle Authority'),
(137077, 108173, 'en', 'name', 'Odesa State Agrarian University'),
(137078, 108173, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Гержавний аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(137079, 108174, 'en', 'name', 'International Training Network, Bangladesh University of Engineering and Technology'),
(137080, 108175, 'de', 'name', 'Deutscher Wetterdienst'),
(137081, 108176, 'en', 'name', 'Documentation Centre of Austrian Resistance'),
(137082, 108176, 'de', 'name', 'Dokumentationsarchiv des ƶsterreichischen Widerstandes'),
(137083, 108177, 'es', 'name', 'Gordon Academic College of Education'),
(137084, 108177, 'he', 'name', '×”××§×“×ž×™×Ŗ ×’×•×Ø×“×•×Ÿ'),
(137085, 108178, 'en', 'name', 'United States Air Force'),
(137086, 108179, 'en', 'name', 'Agropolymer Engineering and Emerging Technologies'),
(137087, 108179, 'fr', 'name', 'Ingénierie des Agropolymères et Technologies Emergentes'),
(137088, 108180, 'en', 'name', 'Higher Normal School of Kouba'),
(137089, 108180, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Kouba'),
(137090, 108180, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة بالقبة'),
(137091, 108181, 'en', 'name', 'STRA LLC - Sci Tac Research Associates (United States)'),
(137092, 108182, 'de', 'name', 'Bioforschung Austria'),
(137093, 108183, 'en', 'name', 'Universa Investments L.P. (United States)'),
(137094, 108184, 'es', 'name', 'Fundación Española para la Ciencia y la Tecnología'),
(137095, 108184, 'en', 'name', 'Spanish Foundation for Science and Technology'),
(137096, 108185, 'en', 'name', 'Secretariat of Public Education'),
(137097, 108185, 'es', 'name', 'Secretaría de Educación Pública'),
(137098, 108186, 'en', 'name', 'Autonomous University of the West'),
(137099, 108186, 'es', 'name', 'Universidad Autónoma de Occidente'),
(137100, 108187, 'en', 'name', 'South Carolina Department of Environmental Services'),
(137101, 108188, 'en', 'name', 'Jabir Ibn Hayyan University for Medical and Pharmaceutical Sciences'),
(137102, 108188, 'ar', 'name', 'Ų¬Ų§ŲØŲ± بن Ų­ŁŠŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„ŲµŁŠŲÆŁ„Ų§Ł†ŁŠŲ©'),
(137103, 108189, 'en', 'name', 'Jagannath International Management School, Kalkaji, New Delhi'),
(137104, 108190, 'fr', 'name', 'Laboratoire d''Etudes Sociologiques sur la Construction et la Reproduction Sociales'),
(137105, 108191, 'no_lang_code', 'name', 'Cihan University - Duhok'),
(137106, 108191, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ‡Ų§Ł† - ŲÆŁ‡ŁˆŁƒ'),
(137107, 108192, 'id', 'name', 'Akademi Teknik Alat Berat Indonesia'),
(137108, 108192, 'en', 'name', 'Indonesian Heavy Equipment Technical Academy'),
(137109, 108193, 'en', 'name', 'Directorate General of Mines Safety'),
(137110, 108194, 'en', 'name', 'Anhui Broadcasting Movie and Television College'),
(137111, 108194, 'zh', 'name', 'å®‰å¾½å¹æę’­å½±č§†čŒäøšęŠ€ęœÆå­¦é™¢'),
(137112, 108195, 'en', 'name', 'Iris Energy LLC (United States)'),
(137113, 108196, 'en', 'name', 'American Transportation Research Institute'),
(137114, 108197, 'en', 'name', 'SĆ£o Paulo State University'),
(137115, 108197, 'es', 'name', 'Universidad Estatal Paulista'),
(137116, 108197, 'pt', 'name', 'Universidade Estadual Paulista (Unesp)'),
(137117, 108198, 'fr', 'name', 'Gouvernement du Canada'),
(137118, 108198, 'en', 'name', 'Government of Canada'),
(137119, 108199, 'en', 'name', 'Kharkiv State Academy of Design and Arts'),
(137120, 108199, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Гизайну і мистецтв'),
(137121, 108200, 'en', 'name', 'Faculty of Electrical Engineering and Computing in Zagreb'),
(137122, 108200, 'hr', 'name', 'Fakultet elektrotehnike i računarstva'),
(137123, 108201, 'ms', 'name', 'Universiti Putra Malaysia'),
(137124, 108201, 'ta', 'name', 'ą®®ą®²ąÆ‡ą®šą®æą®Æ ą®ŖąÆą®¤ąÆą®°ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(137125, 108201, 'zh', 'name', 'åšē‰¹ę‹‰å¤§å­¦'),
(137126, 108202, 'en', 'name', 'United States Army Medical Command'),
(137127, 108203, 'en', 'name', 'Catholic University of Ɓvila'),
(137128, 108203, 'es', 'name', 'Universidad Católica de Ávila'),
(137129, 108204, 'en', 'name', 'CBS International Business School'),
(137130, 108205, 'sl', 'name', 'Ministrstvo za Notranje Zadeve'),
(137131, 108205, 'en', 'name', 'Ministry of the Interior'),
(137132, 108206, 'en', 'name', 'National Scientific Center Ā«ŠŠ¾n. Prof. М.S. Bokarius Forensic Science InstituteĀ»'),
(137133, 108206, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃƒŠ“Š¾Š²ŠøŃ… експертиз ім. Засл. проф. М.Š”. Š‘Š¾ŠŗŠ°Ń€Ń–ŃƒŃŠ°Ā»'),
(137134, 108207, 'en', 'name', 'Government Medical College Omandurar'),
(137135, 108207, 'ta', 'name', 'ą®…ą®°ą®šąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®“ą®®ą®ØąÆą®¤ąÆ‚ą®°ą®°ąÆ'),
(137136, 108208, 'fr', 'name', 'HESAM UniversitƩ'),
(137137, 108209, 'en', 'name', 'Austrian Competence Centre for Feed and Food Quality, Safety & Innovation (Austria)'),
(137138, 108210, 'es', 'name', 'Centro de Estudios de Innovación Institucional'),
(137139, 108211, 'en', 'name', 'Office of the Chief of Naval Operations'),
(137140, 108212, 'fr', 'name', 'UniDistance Suisse'),
(137141, 108213, 'pt', 'name', 'Unesp de MarĆ­lia'),
(137142, 108214, 'en', 'name', 'Osaka Medical and Pharmaceutical University'),
(137143, 108214, 'ja', 'name', 'å¤§é˜ŖåŒ»ē§‘č–¬ē§‘å¤§å­¦'),
(137144, 108215, 'en', 'name', 'Mayanei Hayeshua Medical Center'),
(137145, 108215, 'he', 'name', '×ž×Ø×›×– רפואי מעיני הישועה'),
(137146, 108216, 'en', 'name', 'Geological Survey of Estonia'),
(137147, 108217, 'en', 'name', 'Gezhouba Central Hospital of Sinopharm'),
(137148, 108217, 'zh', 'name', 'å›½čÆč‘›ę“²åäø­åæƒåŒ»é™¢'),
(137149, 108218, 'fr', 'name', 'Centre Technique Interprofessionnel des OlƩagineux MƩtropolitains'),
(137150, 108219, 'en', 'name', 'Institute of Labor, Occupational Safety And Health, Ministry of Labor'),
(137151, 108220, 'en', 'name', 'Submarine Force, Atlantic'),
(137152, 108221, 'en', 'name', 'Heliophysics Digital Resource Library'),
(137153, 108222, 'en', 'name', 'Academic Center for Dentistry Amsterdam'),
(137154, 108222, 'nl', 'name', 'Academisch Centrum Tandheelkunde Amsterdam'),
(137155, 108223, 'fr', 'name', 'Observatoire des Sciences de l''Univers Nantes Atlantique'),
(137156, 108224, 'en', 'name', 'United States Air Force Air Armament Center'),
(137157, 108225, 'en', 'name', 'European Severe Storms Laboratory - Science and Training'),
(137158, 108226, 'en', 'name', 'Arunachal Pradesh University'),
(137159, 108227, 'en', 'name', 'Jagannath International Management School, Vasant Kunj, New Delhi'),
(137160, 108228, 'tr', 'name', 'Fethi̇ye Devlet Hastanesi̇'),
(137161, 108229, 'es', 'name', 'Centro Nacional de Investigación sobre la Evolución Humana'),
(137162, 108229, 'en', 'name', 'National Research Center on Human Evolution'),
(137163, 108230, 'fr', 'name', 'Institut d''Asie Orientale'),
(137164, 108231, 'en', 'name', 'Children’s Health Research Institute'),
(137165, 108232, 'es', 'name', 'Universidad Del Pacifico'),
(137166, 108232, 'en', 'name', 'University of the Pacific'),
(137167, 108233, 'en', 'name', 'Kenya Association of Urological Surgeons'),
(137168, 108234, 'en', 'name', 'U.S. Army Aviation Center of Excellence'),
(137169, 108235, 'fr', 'name', 'Laboratoire de Philosophies et RationalitƩs'),
(137170, 108236, 'de', 'name', 'Tiroler Landesmuseen-Betriebsgesellschaft M.B.H.'),
(137171, 108237, 'fr', 'name', 'Laboratoire d’IngĆ©nierie des SystĆØmes Physiques et NumĆ©riques'),
(137172, 108238, 'ky', 'name', '"И.АбГраимов атынГагы ŠšŃ‹Ń€Š³Ń‹Š· Š°Š²ŠøŠ°Ń†ŠøŃŠ»Ń‹Šŗ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ" Š¶Š¾Š³Š¾Ń€ŠŗŃƒ Š°Š²ŠøŠ°Ń†ŠøŃŠ»Ń‹Šŗ окуу жайы'),
(137173, 108238, 'en', 'name', 'Kyrgyz Aviation Institute named after I. Abdraimov'),
(137174, 108238, 'ru', 'name', 'Š’Ń‹ŃŃˆŠµŠµ авиационное ŃƒŃ‡ŠµŠ±Š½Š¾Šµ завеГение "ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ авиационный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени И.АбГраимова"'),
(137175, 108239, 'en', 'name', 'RVS College of Engineering & Technology, Jamshedpur'),
(137176, 108240, 'en', 'name', 'Maaref University of Applied Sciences'),
(137177, 108240, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المعارف Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(137178, 108241, 'en', 'name', 'National Medical Research Center for Hematology'),
(137179, 108241, 'ru', 'name', 'ФГБУ Ā«ŠŠœŠ˜Š¦ Гематологии» ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России'),
(137180, 108242, 'en', 'name', 'Ministry of Health and Long Term Care'),
(137181, 108242, 'fr', 'name', 'Ministère de la Santé et des Soins de Longue Durée'),
(137182, 108243, 'en', 'name', 'Comillas Pontifical University'),
(137183, 108243, 'es', 'name', 'Universidad Pontificia Comillas'),
(137184, 108243, 'gl', 'name', 'Universidade Pontificia Comillas'),
(137185, 108243, 'ca', 'name', 'Universitat PontifĆ­cia de Comillas'),
(137186, 108244, 'en', 'name', 'U.S. Army Combined Arms Support Command'),
(137187, 108245, 'en', 'name', 'United States Army Command and General Staff College'),
(137188, 108246, 'pt', 'name', 'Instituto de Pesquisas Científicas e Tecnológicas do Estado do AmapÔ'),
(137189, 108247, 'es', 'name', 'Facultad Latinoamericana de Ciencias Sociales'),
(137190, 108247, 'en', 'name', 'Latin American Faculty of Social Sciences'),
(137191, 108248, 'et', 'name', 'Eesti Geoloogiateenistus'),
(137192, 108248, 'en', 'name', 'Geological Survey of Estonia'),
(137193, 108249, 'en', 'name', 'University of Engineering & Management, Jaipur'),
(137194, 108250, 'es', 'name', 'Facultad Latinoamericana de Ciencias Ecuador'),
(137195, 108250, 'en', 'name', 'Latin American Faculty of Social Sciences Ecuador'),
(137196, 108251, 'en', 'name', 'TWI (United Kingdom)'),
(137197, 108252, 'en', 'name', 'KLA Corporation (United States)'),
(137198, 108253, 'en', 'name', 'Army Cyber Institute at West Point'),
(137199, 108254, 'en', 'name', 'Clinic for Special Children'),
(137200, 108255, 'en', 'name', 'Inter-American Institute'),
(137201, 108256, 'es', 'name', 'Escuela Universitaria de Magisterio Fray Luis de León'),
(137202, 108257, 'en', 'name', 'Ministry of Labour and Employment'),
(137203, 108257, 'hi', 'name', 'ą¤¶ą„ą¤°ą¤® ą¤ą¤µą¤‚ ą¤°ą„‹ą¤œą¤—ą¤¾ą¤° ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(137204, 108258, 'de', 'name', 'GHEbavaria Maschinen GmbH'),
(137205, 108258, 'no_lang_code', 'name', 'GHEbavaria Maschinen GmbH (Germany)'),
(137206, 108259, 'en', 'name', 'Mykolaiv regional organization of National Union of Lore Researchers of Ukraine'),
(137207, 108259, 'uk', 'name', 'ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠ° обласна Š¾Ń€Š³Š°Š½Ń–Š·Š°Ń†Ń–Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— спілки краєзнавців України'),
(137208, 108260, 'en', 'name', 'Academic Consortium for Electronic Publications'),
(137209, 108260, 'fr', 'name', 'Couperin'),
(137210, 108261, 'en', 'name', 'OMF Publishing, LLC (Ukraine)'),
(137211, 108261, 'uk', 'name', 'Š¢ŠžŠ’ "ŠžŠœŠ¤ ŠŸŠ°Š±Š»Ń–ŃˆŠøŠ½Š³"'),
(137212, 108262, 'en', 'name', 'ZEN University'),
(137213, 108262, 'ja', 'name', 'ZEN大学'),
(137214, 108263, 'en', 'name', 'Masaryk University'),
(137215, 108263, 'sk', 'name', 'Masarykova univerzita'),
(137216, 108264, 'en', 'name', 'Central Fisheries Research Institute (SUMAE)'),
(137217, 108264, 'tr', 'name', 'Su Ürünleri Merkez Araştırma Enstitüsü'),
(137218, 108265, 'en', 'name', 'Evolutionary Engineering & Distributed Information Systems Laboratory'),
(137219, 108266, 'pt', 'name', 'Instituto Politecnico de Setubal'),
(137220, 108266, 'en', 'name', 'Polytechnic Institute of SetĆŗbal'),
(137221, 108267, 'en', 'name', 'Instituto Superior Miguel Torga'),
(137222, 108268, 'en', 'name', 'Ethiopian Defence University'),
(137223, 108269, 'pt', 'name', 'Museu de Arqueologia D. Diogo de Sousa'),
(137224, 108270, 'fr', 'name', 'Anti-infectieux : supports molƩculaires des rƩsistances et innovations thƩrapeutiques'),
(137225, 108271, 'nl', 'name', 'SURF'),
(137226, 108272, 'en', 'name', 'Centre for the Research and Technology of Agro-Environmental and Biological Sciences'),
(137227, 108272, 'pt', 'name', 'Centro de Investigação e de Tecnologias Agro-Ambientais e Biologicas'),
(137228, 108273, 'en', 'name', 'Army Institute of Business Administration, Sylhet'),
(137229, 108273, 'bn', 'name', 'ą¦†ą¦°ą§ą¦®ą¦æ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø ą¦ą¦”ą¦®ą¦æą¦Øą¦æą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦¶ą¦Ø, ą¦øą¦æą¦²ą§‡ą¦Ÿ'),
(137230, 108274, 'en', 'name', 'Kazan State Power Engineering University'),
(137231, 108274, 'ru', 'name', 'Казанский Š³Š¾ŃŃƒŠ“арственный ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(137232, 108275, 'fr', 'name', 'Centre de Vision NumƩrique'),
(137233, 108275, 'en', 'name', 'Centre for Visual Computing'),
(137234, 108276, 'no_lang_code', 'name', 'Thoughtventions Unlimited (United States)'),
(137235, 108277, 'pt', 'name', 'CÔtedra Educação Cidadania e Diversidade Cultural'),
(137236, 108278, 'en', 'name', 'Osaka University Hospital'),
(137237, 108278, 'ja', 'name', 'å¤§é˜Ŗå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(137238, 108279, 'en', 'name', 'Institute of Mechanics of Continua and Mathematical Sciences'),
(137239, 108280, 'it', 'name', 'Agenzia Nazionale per le Nuove Tecnologie, l''Energia e lo Sviluppo Economico Sostenibile'),
(137240, 108280, 'en', 'name', 'National Agency for New Technologies, Energy and Sustainable Economic Development'),
(137241, 108281, 'es', 'name', 'Centro MƩdico de la Universidad de Nebraska'),
(137242, 108281, 'en', 'name', 'University of Nebraska Medical Center');
INSERT INTO `ror_settings` VALUES
(137243, 108282, 'pt', 'name', 'Instituto Superior de Entre Douro e Vouga'),
(137244, 108283, 'pt', 'name', 'Centro de Estudos Complexidade e Diversidade Humana'),
(137245, 108284, 'pt', 'name', 'Inspeção-Geral da Educação e Ciência'),
(137246, 108285, 'no_lang_code', 'name', 'Soginfer Investimentos ImobiliƔrios (Portugal)'),
(137247, 108286, 'en', 'name', 'Riskfuel (Canada)'),
(137248, 108287, 'pt', 'name', 'Instituto Lusófono de Investigação e Desenvolvimento'),
(137249, 108288, 'en', 'name', 'Hesse University of Applied Sciences for Public Management and Security'),
(137250, 108288, 'de', 'name', 'Hessische Hochschule für öffentliches Management und Sicherheit'),
(137251, 108289, 'en', 'name', 'Dewu'),
(137252, 108289, 'zh', 'name', '得物'),
(137253, 108290, 'pt', 'name', 'Centro de Investigação em Saúde e Tecnologia'),
(137254, 108290, 'en', 'name', 'Health and Technology Research Center'),
(137255, 108291, 'pt', 'name', 'Centro de Estudos Internacionais'),
(137256, 108292, 'en', 'name', 'International House Porto Foz'),
(137257, 108293, 'es', 'name', 'Universidad Metropolitana para la Educación y el Trabajo'),
(137258, 108294, 'en', 'name', 'Australian College of Perioperative Nurses'),
(137259, 108295, 'pt', 'name', 'Instituto PolitƩcnico do CƔvado e do Ave'),
(137260, 108295, 'en', 'name', 'Polytechnic Institute of CƔvado and Ave'),
(137261, 108296, 'pt', 'name', 'Centro Hospitalar Lisboa Norte'),
(137262, 108297, 'en', 'name', 'Institut Rhodanien'),
(137263, 108298, 'id', 'name', 'Akademi Komunitas Negeri Pacitan'),
(137264, 108299, 'es', 'name', 'Ministerio de Salud'),
(137265, 108299, 'en', 'name', 'Ministry of Health'),
(137266, 108300, 'fr', 'name', 'Laboratoire d''Activation MolƩculaire'),
(137267, 108301, 'pt', 'name', 'Instituto de História Contemporânea'),
(137268, 108302, 'pt', 'name', 'Fundação para o Estudo e Desenvolvimento da Região de Aveiro'),
(137269, 108303, 'en', 'name', 'Bekaa Hospital'),
(137270, 108303, 'ar', 'name', 'مستؓفى البقاع'),
(137271, 108304, 'no_lang_code', 'name', 'Livraria Portugal (Portugal)'),
(137272, 108305, 'en', 'name', 'People''s Government of Guangdong Province'),
(137273, 108306, 'en', 'name', 'Moldova State University'),
(137274, 108306, 'ro', 'name', 'Universitatea de Stat din Moldova'),
(137275, 108306, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ¾Š»Š“Š¾Š²Ń‹'),
(137276, 108307, 'en', 'name', 'Geological Survey of the Netherlands'),
(137277, 108308, 'es', 'name', 'Laboratorio Nacional de GeoInteligencia'),
(137278, 108309, 'en', 'name', 'National Oil Corporation (Libya)'),
(137279, 108309, 'ar', 'name', 'المؤسسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للنفط'),
(137280, 108310, 'es', 'name', 'Universidad de Los Andes'),
(137281, 108310, 'en', 'name', 'University of Los Andes'),
(137282, 108311, 'pt', 'name', 'Centro de Polƭmeros BiomƩdicos'),
(137283, 108312, 'no_lang_code', 'name', 'Ubiquity Press (United Kingdom)'),
(137284, 108313, 'pt', 'name', 'Hospital Cruz Vermelha'),
(137285, 108314, 'fr', 'name', 'Institut supƩrieur de documentation'),
(137286, 108314, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„ŲŖŁˆŲ«ŁŠŁ‚'),
(137287, 108315, 'no_lang_code', 'name', 'AXA (France)'),
(137288, 108316, 'es', 'name', 'Grupo Interdisciplinario de Investigación en Sechium edule en México'),
(137289, 108316, 'en', 'name', 'Interdisciplinary Research Group of Sechium edule in MƩxico'),
(137290, 108317, 'pt', 'name', 'Instituto Superior Técnico Instituto de Engenharia Mecânica'),
(137291, 108318, 'pt', 'name', 'Fundação Engenheiro António de Almeida'),
(137292, 108319, 'pt', 'name', 'Centro Interdisciplinar de Arqueologia e Evolução do Comportamento Humano'),
(137293, 108319, 'en', 'name', 'Interdisciplinary Center for Archaeology and the Evolution of Human Behaviour'),
(137294, 108320, 'sr', 'name', 'Istraživačko-razvojni institut za veŔtačku inteligenciju Srbije'),
(137295, 108320, 'en', 'name', 'The Institute for Artificial Intelligence Research and Development of Serbia'),
(137296, 108321, 'fr', 'name', 'Institut d''Etudes de Droit Public'),
(137297, 108321, 'en', 'name', 'Institute of Public Law Studies'),
(137298, 108322, 'en', 'name', 'Central Forensic Laboratory of the Police'),
(137299, 108322, 'pl', 'name', 'Centralne Laboratorium Kryminalistyczne Policji'),
(137300, 108323, 'pt', 'name', 'Rede CUF'),
(137301, 108324, 'no_lang_code', 'name', 'Sociedade Internacional de Promoção de Ensino e Cultura (Portugal)'),
(137302, 108325, 'pt', 'name', 'ANJE - Associação Nacional de Jovens EmpresÔrios'),
(137303, 108326, 'en', 'name', 'Asia International University'),
(137304, 108326, 'uz', 'name', 'Osiyo xalqaro universiteti'),
(137305, 108326, 'ru', 'name', 'Азиатский ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет'),
(137306, 108327, 'no_lang_code', 'name', 'Infosaúde Instituto de Formação e Inovação em Saúde Unipessoal (Portugal)'),
(137307, 108328, 'es', 'name', 'Departament de Salut'),
(137308, 108328, 'en', 'name', 'Department of Health'),
(137309, 108329, 'fr', 'name', 'Centre de Bio-Informatique'),
(137310, 108329, 'en', 'name', 'Centre for computational biology (CBIO), Mines Paris, PSL University'),
(137311, 108330, 'en', 'name', 'Khatam Al-Nabieen University'),
(137312, 108330, 'fa', 'name', 'دانؓگاه Ų®Ų§ŲŖŁ… Ų§Ł„Ł†ŲØŪŒŪŒŁ†'),
(137313, 108331, 'pt', 'name', 'Universidade de Aveiro Incubator'),
(137314, 108332, 'en', 'name', 'Saratov State Agrarian University named after N.I .Vavilov'),
(137315, 108332, 'ru', 'name', 'Даратовский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(137316, 108333, 'tr', 'name', 'Başakşehir Belediyesi'),
(137317, 108334, 'en', 'name', 'Swedish Geotechnical Institute'),
(137318, 108335, 'en', 'name', 'National Agriculture Research Center'),
(137319, 108335, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(137320, 108336, 'en', 'name', 'Dr. Hilla Limann Technical University'),
(137321, 108337, 'en', 'name', 'Marine and Freshwater Research Institute'),
(137322, 108338, 'en', 'name', 'Rainha Njinga a Mbande University'),
(137323, 108338, 'pt', 'name', 'Universidade Rainha Njinga a Mbande'),
(137324, 108339, 'pt', 'name', 'NERSANT - Associação Empresarial da Região de Santarém'),
(137325, 108340, 'en', 'name', 'Evercare Hospital Dhaka'),
(137326, 108341, 'da', 'name', 'Aalborg Universitet'),
(137327, 108341, 'en', 'name', 'Aalborg University'),
(137328, 108342, 'pt', 'name', 'Centro de Reabilitação de Paralisia Cerebral Calouste Gulbenkian'),
(137329, 108343, 'en', 'name', 'U.S. Embassy Lisbon'),
(137330, 108344, 'en', 'name', 'Walther Straub Institute of Pharmacology and Toxicology'),
(137331, 108344, 'de', 'name', 'Walther-Straub-Institut für Pharmakologie und Toxikologie'),
(137332, 108345, 'en', 'name', 'International Viticulture and Enology Society'),
(137333, 108346, 'pt', 'name', 'Escola Superior ArtĆ­stica do Porto'),
(137334, 108347, 'no_lang_code', 'name', 'Jorge Lozano Trabalhos em Altura Formação e Serviços (Portugal)'),
(137335, 108348, 'en', 'name', 'Tenement Museum'),
(137336, 108349, 'es', 'name', 'Instituto Murciano de Investigación y Desarrollo Agrario y Medioambiental'),
(137337, 108349, 'en', 'name', 'Murcian Institute for Agricultural and Environmental Research and Development'),
(137338, 108350, 'pt', 'name', 'Instituto Brasileiro de Direito Processual Penal'),
(137339, 108351, 'en', 'name', 'Regional Centre on Capacity Development and Research in Water Harvesting'),
(137340, 108352, 'no_lang_code', 'name', 'Whitaker International Europe EstratƩgia Empresarial (Portugal)'),
(137341, 108353, 'en', 'name', 'Catholic University of Murcia'),
(137342, 108353, 'es', 'name', 'Universidad Católica de Murcia'),
(137343, 108353, 'zh', 'name', 'ē©†å°”č„æäŗšåœ£å®‰äøœå°¼å„„å¤©äø»ę•™å¤§å­¦'),
(137344, 108354, 'en', 'name', 'City Space Architecture'),
(137345, 108355, 'no_lang_code', 'name', 'PLMJ Advogados (Portugal)'),
(137346, 108356, 'no_lang_code', 'name', 'Diaverum (Portugal)'),
(137347, 108357, 'en', 'name', 'Rashtriya Raksha University'),
(137348, 108358, 'pt', 'name', 'Infraestrutura de Investigação para a Ciência e Tecnologia da Linguagem'),
(137349, 108358, 'en', 'name', 'Research Infrastructure for the Science and Technology of Language'),
(137350, 108359, 'no_lang_code', 'name', 'Future Balloons (Portugal)'),
(137351, 108360, 'en', 'name', 'ISCTE Business School'),
(137352, 108361, 'en', 'name', 'Centre of Excellence in Biodiversity and Natural Resources Management'),
(137353, 108362, 'es', 'name', 'Instituto Tecnológico Superior ARGOS'),
(137354, 108363, 'en', 'name', 'Institute of Economics'),
(137355, 108363, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø ŠšŠ¾Š¼ŠøŃ‚ŠµŃ‚Š° науки ŠœŠøŠ½ŠøŃŃ‚ерства науки Šø Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ РК'),
(137356, 108363, 'kk', 'name', 'Экономика ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹ ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ғылым және жоғары білім министрлігінің Ғылым комитеті'),
(137357, 108364, 'en', 'name', 'Raharja University'),
(137358, 108364, 'id', 'name', 'Universitas Raharja'),
(137359, 108365, 'en', 'name', 'International Centre for Capacity Development, Sustainability and Societal Change'),
(137360, 108365, 'is', 'name', 'ƞekkingarmiưstƶư þróunarsamvinnu'),
(137361, 108366, 'pt', 'name', 'Coordenação Interdisciplinar para a Investigação e Inovação'),
(137362, 108367, 'no_lang_code', 'name', 'Institute of Business Management (Portugal)'),
(137363, 108368, 'en', 'name', 'International Training Centre in Astronomy'),
(137364, 108368, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œąøąø¶ąøąø­ąøšąø£ąø”ąø”ąø²ąø£ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ąø ąø²ąø¢ą¹ƒąø•ą¹‰ąø¢ąø¹ą¹€ąø™ąøŖą¹‚ąø'),
(137365, 108369, 'en', 'name', 'European Bioplastics'),
(137366, 108370, 'pt', 'name', 'Infraestrutura Nacional de Computação Distribuída / Centro Nacional de Computação Avançada.'),
(137367, 108371, 'en', 'name', 'Research Lab in Computer Science'),
(137368, 108372, 'fr', 'name', 'SantƩ de l''Homme'),
(137369, 108373, 'fr', 'name', 'Agence d''Ʃvaluation d''impact du Canada'),
(137370, 108373, 'en', 'name', 'Impact Assessment Agency of Canada'),
(137371, 108374, 'de', 'name', 'Zürcher Fachhochschule'),
(137372, 108375, 'pt', 'name', 'Centro para o Desenvolvimento de CompetĆŖncias Digitais'),
(137373, 108376, 'en', 'name', 'International University of Technology Twintech'),
(137374, 108376, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†ŲŖŁƒ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(137375, 108377, 'id', 'name', 'Politeknik Negeri Cilacap'),
(137376, 108378, 'no_lang_code', 'name', 'Id Tour Unique Solutions (Portugal)'),
(137377, 108379, 'pt', 'name', 'Unidade de e-Learning e Inovação Pedagógica'),
(137378, 108380, 'en', 'name', 'Prevention of Chemical Risks'),
(137379, 108380, 'fr', 'name', 'PrƩvention du risque chimique'),
(137380, 108381, 'en', 'name', 'NSS College of Engineering Palakkad'),
(137381, 108382, 'en', 'name', 'Arnold P Gold Foundation'),
(137382, 108383, 'en', 'name', 'Andijan Machine-building Institute'),
(137383, 108383, 'uz', 'name', 'Andijon Mashinasozlik instituti'),
(137384, 108383, 'ru', 'name', 'АнГижанский ŠœŠ°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(137385, 108384, 'en', 'name', 'Association for Research in Infant and Child Development'),
(137386, 108385, 'pt', 'name', 'Instituto PolitƩcnico de BraganƧa'),
(137387, 108385, 'en', 'name', 'Polytechnic Institute of BraganƧa'),
(137388, 108386, 'fr', 'name', 'Handicap, ActivitƩ, Vieillissement, Autonomie, Environnement'),
(137389, 108387, 'en', 'name', 'Defence Services Medical Research Centre'),
(137390, 108388, 'en', 'name', 'Genetic Stability and Oncogenesis'),
(137391, 108388, 'fr', 'name', 'IntƩgritƩ du gƩnome et cancers'),
(137392, 108389, 'es', 'name', 'Sistema Universitario Texas A&M'),
(137393, 108389, 'en', 'name', 'Texas A&M University System'),
(137394, 108390, 'fr', 'name', 'Office RƩgional de la SantƩ de Winnipeg'),
(137395, 108390, 'en', 'name', 'Winnipeg Regional Health Authority'),
(137396, 108391, 'es', 'name', 'Centro de Desarrollo Tecnológico Naval'),
(137397, 108392, 'en', 'name', 'Waha Oil Company'),
(137398, 108392, 'ar', 'name', 'ؓركة Ų§Ł„ŁˆŲ§Ų­Ų© للنفط'),
(137399, 108393, 'pt', 'name', 'Centro de Investigação em Educação BÔsica'),
(137400, 108394, 'en', 'name', 'Al-Esraa University'),
(137401, 108394, 'ar', 'name', 'لجامعة الاسراؔ'),
(137402, 108395, 'en', 'name', 'Imo State University'),
(137403, 108395, 'yo', 'name', 'YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ ƍmò'),
(137404, 108396, 'en', 'name', 'Ethiopian Institute of Agricultural Research'),
(137405, 108396, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« į‹ØįŒį‰„įˆ­įŠ“ įˆįˆ­įˆįˆ­ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(137406, 108397, 'no_lang_code', 'name', 'Phonetike Centro de Lƭnguas e PromoƧƵes Culturais (Portugal)'),
(137407, 108398, 'pt', 'name', 'Instituto PolitƩcnico de Viseu'),
(137408, 108398, 'en', 'name', 'Polytechnic Institute of Viseu'),
(137409, 108399, 'pt', 'name', 'Hospital São José de Fafe'),
(137410, 108400, 'no_lang_code', 'name', 'Instituto de Alimentação Becel (Portugal)'),
(137411, 108401, 'en', 'name', 'Hospital Ana Nery'),
(137412, 108402, 'en', 'name', '50Hertz Transmission GmbH (Germany)'),
(137413, 108403, 'fr', 'name', 'Droit & sociƩtƩs religieuses'),
(137414, 108403, 'en', 'name', 'Laboratory on Law and Religious Societies'),
(137415, 108404, 'en', 'name', 'International Centre of Research and Postgraduate Training in Mathematics'),
(137416, 108404, 'vi', 'name', 'Trung tĆ¢m NghiĆŖn cứu vĆ  ĐƠo tįŗ”o toĆ”n hį»c quốc tįŗæ'),
(137417, 108405, 'tr', 'name', 'Ataşehir Adıgüzel Meslek Yüksekokulu'),
(137418, 108406, 'es', 'name', 'Departament de Cultura'),
(137419, 108406, 'en', 'name', 'Ministry of Culture'),
(137420, 108407, 'en', 'name', 'Joint Evaluated Fission and Fusion'),
(137421, 108408, 'it', 'name', 'Liceo Scientifico Statale "S. Cannizzaro" di Palermo'),
(137422, 108409, 'en', 'name', 'Greater Lisbon Christian Academy'),
(137423, 108410, 'en', 'name', 'Squad Medicine and Research (SMR)'),
(137424, 108411, 'no_lang_code', 'name', 'Irmãs Hospitaleiras (Portugal)'),
(137425, 108412, 'en', 'name', 'Kaliyaganj College'),
(137426, 108413, 'pt', 'name', 'Incubadora de Iniciativas Empresariais Inovadoras'),
(137427, 108414, 'en', 'name', 'Jisc'),
(137428, 108415, 'it', 'name', 'Azienda Sanitaria Locale Salerno'),
(137429, 108416, 'es', 'name', 'Instituto Superior Tecnológico San Antonio'),
(137430, 108417, 'pt', 'name', 'Centro de Estudos Africanos'),
(137431, 108418, 'en', 'name', 'RITM Research Center in Economics & Management'),
(137432, 108418, 'fr', 'name', 'RƩseaux, Innovation, Territoires et Mondialisation'),
(137433, 108419, 'pt', 'name', 'Centro de Estudos de Ciencia Animal'),
(137434, 108420, 'en', 'name', 'Center for Engineering and Industrial Development'),
(137435, 108420, 'es', 'name', 'Centro de IngenierĆ­a y Desarrollo Industrial'),
(137436, 108421, 'en', 'name', 'Institute for Urban Excellence'),
(137437, 108422, 'no_lang_code', 'name', 'Innovation Hospital Care (Portugal)'),
(137438, 108423, 'de', 'name', 'Hochschule für Wirtschaft Zürich'),
(137439, 108423, 'en', 'name', 'Zurich University of Applied Sciences in Business Administration'),
(137440, 108424, 'es', 'name', 'Laboratorio de Investigaciones del Territorio y el Ambiente'),
(137441, 108425, 'en', 'name', 'Safran Electronics & Defense Spain S.L.U. (Spain)'),
(137442, 108426, 'en', 'name', 'University of Nigeria'),
(137443, 108426, 'yo', 'name', 'YunifĆ”sĆ­tƬ ilẹ̀ NƠƬjĆ­rĆ­Ć '),
(137444, 108427, 'en', 'name', 'University of UƩlƩ'),
(137445, 108427, 'fr', 'name', 'UniversitƩ de l''UƩlƩ'),
(137446, 108428, 'en', 'name', 'Nurses Specialized in Wound, Ostomy and Continence Canada'),
(137447, 108429, 'en', 'name', 'Research Institute of Food Science and Technology'),
(137448, 108429, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ł¾Ś˜ŁˆŁ‡Ų“ŪŒ Ų¹Ł„ŁˆŁ… و ŲµŁ†Ų§ŪŒŲ¹ غذایی'),
(137449, 108430, 'en', 'name', 'Canadian-Pacific Robotic Ocean Observing Facility'),
(137450, 108431, 'id', 'name', 'Politeknik Bina Trada Semarang'),
(137451, 108432, 'en', 'name', 'Incorporated Research Institutions For Seismology'),
(137452, 108433, 'en', 'name', 'Institute of Innovation Development Strategies and Knowledge Transfer'),
(137453, 108433, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стратегій інноваційного Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ і Ń‚Ń€Š°Š½ŃŃ„ŠµŃ€Ńƒ знань'),
(137454, 108434, 'en', 'name', 'TechForFuture'),
(137455, 108435, 'en', 'name', 'Bezos Earth Fund'),
(137456, 108436, 'en', 'name', 'Mid Atlantic University'),
(137457, 108436, 'es', 'name', 'Universidad del AtlƔntico Medio'),
(137458, 108437, 'es', 'name', 'Universidad de Maryland'),
(137459, 108437, 'en', 'name', 'University of Maryland, College Park'),
(137460, 108437, 'fr', 'name', 'UniversitƩ du Maryland'),
(137461, 108438, 'pt', 'name', 'Gabinete de Documentacao e Direito Comparado'),
(137462, 108439, 'pt', 'name', 'Instituto de Artes Visuais, Design e Marketing'),
(137463, 108440, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Portugal)'),
(137464, 108441, 'nl', 'name', 'Nederlandse Organisatie voor Toegepast Natuurwetenschappelijk Onderzoek'),
(137465, 108441, 'en', 'name', 'Netherlands Organisation for Applied Scientific Research'),
(137466, 108442, 'ca', 'name', 'Departament de Recerca i Universitats'),
(137467, 108442, 'es', 'name', 'Departamento de Investigación y Universidades'),
(137468, 108442, 'en', 'name', 'Ministry of Research and Universities'),
(137469, 108443, 'en', 'name', 'Diseases and Hormones of the Nervous System'),
(137470, 108443, 'fr', 'name', 'Maladies et hormones du systĆØme nerveux'),
(137471, 108444, 'en', 'name', 'School of Management Sciences, Lucknow'),
(137472, 108445, 'pl', 'name', 'Akademια Mazowiecka w Płocku'),
(137473, 108445, 'en', 'name', 'Mazovian University in Płock'),
(137474, 108446, 'en', 'name', 'Institute of Gifted Child of National Academy of Educational Sciences of Ukraine'),
(137475, 108446, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ обГарованої Гитини ŠŠŠŸŠ України'),
(137476, 108447, 'fr', 'name', 'Institut FranƧais du Portugal'),
(137477, 108447, 'pt', 'name', 'Instituto FrancĆŖs de Portugal'),
(137478, 108448, 'en', 'name', 'Finnish Museum of Natural History'),
(137479, 108448, 'fi', 'name', 'Luonnontieteellinen keskusmuseo'),
(137480, 108448, 'sv', 'name', 'Naturhistoriska centralmuseet'),
(137481, 108449, 'en', 'name', 'Mymensingh Engineering College'),
(137482, 108450, 'fr', 'name', 'UniversitƩ des patients'),
(137483, 108451, 'fr', 'name', 'Laboratoire de mécanique des structures et des systèmes couplés'),
(137484, 108452, 'pt', 'name', 'Laboratório de Reabilitação Psicossocial'),
(137485, 108452, 'en', 'name', 'Psychosocial Rehabilitation Laboratory'),
(137486, 108453, 'es', 'name', 'Governo Civil de Viana do Castelo'),
(137487, 108454, 'en', 'name', 'International Sustainable Energy Development Centre'),
(137488, 108454, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ центр ŃƒŃŃ‚Š¾Š¹Ń‡ŠøŠ²Š¾Š³Š¾ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ поГ ŃŠ³ŠøŠ“Š¾Š¹ Š®ŠŠ•Š”ŠšŠž'),
(137489, 108455, 'pt', 'name', 'INCUB“UP ANPME'),
(137490, 108456, 'en', 'name', 'Chennai Mathematical Institute'),
(137491, 108456, 'ta', 'name', 'ą®šąÆ†ą®©ąÆą®©ąÆˆ ą®•ą®£ą®æą®¤ą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(137492, 108457, 'no_lang_code', 'name', 'Elia (Belgium)'),
(137493, 108458, 'id', 'name', 'Politeknik Bumi Akpelni'),
(137494, 108459, 'pt', 'name', 'Galeria Geraldes da Silva'),
(137495, 108460, 'es', 'name', 'Armada de Colombia'),
(137496, 108460, 'en', 'name', 'Colombian National Navy'),
(137497, 108461, 'en', 'name', 'Cleveland Clinic Lerner College of Medicine'),
(137498, 108462, 'pt', 'name', 'Fundação Bomfim'),
(137499, 108463, 'en', 'name', 'European Health and Digital Executive Agency'),
(137500, 108464, 'en', 'name', 'Politeknik Negeri Indramayu'),
(137501, 108465, 'fr', 'name', 'CentraleSupƩlec'),
(137502, 108466, 'fr', 'name', 'Centre d''Ɖtudes et de Recherches sur le DĆ©veloppement International'),
(137503, 108467, 'en', 'name', 'State Darwin Museum'),
(137504, 108467, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Дарвиновский музей'),
(137505, 108468, 'en', 'name', 'Hessian University for Police and Administration'),
(137506, 108468, 'de', 'name', 'Hessische Hochschule für Polizei und Verwaltung'),
(137507, 108469, 'nl', 'name', 'Fontys Hogeschool'),
(137508, 108469, 'en', 'name', 'Fontys University of Applied Sciences'),
(137509, 108470, 'eu', 'name', 'Biogipuzkoa Health Research Institute'),
(137510, 108471, 'pt', 'name', 'Fundação INATEL'),
(137511, 108472, 'fr', 'name', 'Institut Gustave Roussy'),
(137512, 108473, 'en', 'name', 'Rishihood University'),
(137513, 108474, 'it', 'name', 'Centro Ricerche FIAT'),
(137514, 108475, 'no_lang_code', 'name', 'Imprensa Nacional Casa da Moeda (Portugal)'),
(137515, 108476, 'en', 'name', 'California State University System'),
(137516, 108476, 'es', 'name', 'Universidad Estatal de California'),
(137517, 108476, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie'),
(137518, 108477, 'no_lang_code', 'name', 'Pro2B Consultoria e Gestão de Projetos (Portugal)'),
(137519, 108478, 'pt', 'name', 'Instituto de Formação e Investigação da Língua Portuguesa'),
(137520, 108479, 'fr', 'name', 'Groupe de recherche et d''accueil en droit et Ʃconomie de la santƩ'),
(137521, 108480, 'es', 'name', 'Centro Internacional para las Reservas de la Biosfera MediterrƔneas'),
(137522, 108480, 'en', 'name', 'International Centre for Mediterranean Biosphere Reserves'),
(137523, 108481, 'en', 'name', 'University of Balamand'),
(137524, 108481, 'fr', 'name', 'UniversitƩ de Balamand'),
(137525, 108481, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© البلمند'),
(137526, 108482, 'pt', 'name', 'Centro Internacional de Investigação Epistemologia e Reflexão Transdisciplinar'),
(137527, 108483, 'no_lang_code', 'name', 'Takeda (Portugal)'),
(137528, 108484, 'en', 'name', 'Research Unit in Design and Communication'),
(137529, 108484, 'pt', 'name', 'Unidade de Investigação em Design e Comunicação'),
(137530, 108485, 'pt', 'name', 'Linc Centros de Incubação'),
(137531, 108486, 'en', 'name', 'Human Resources and Social Security Department of Guangdong Province'),
(137532, 108486, 'zh', 'name', 'å¹æäøœēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(137533, 108487, 'en', 'name', 'The University of Texas Southwestern Medical Center'),
(137534, 108488, 'en', 'name', 'Batam Institute of Technology'),
(137535, 108488, 'id', 'name', 'Institut Teknologi Batam'),
(137536, 108489, 'no_lang_code', 'name', 'Novabase SGPS SA Matosinhos (Portugal)'),
(137537, 108490, 'en', 'name', 'Giza Engineering Institute'),
(137538, 108490, 'ar', 'name', 'معهد Ų§Ł„Ų¬ŁŠŲ²Ų© العالى للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(137539, 108491, 'pt', 'name', 'Galeria ze dos Bois'),
(137540, 108492, 'pt', 'name', 'Centro Interdisciplinar em CiĆŖncias da SaĆŗde'),
(137541, 108493, 'pt', 'name', 'Fundação Escola Americana de Lisboa'),
(137542, 108494, 'fr', 'name', 'Bioinformatique MolƩculaire'),
(137543, 108495, 'es', 'name', 'SecretarĆ­a de Ambiente de Quito'),
(137544, 108496, 'en', 'name', 'International Centre for the Integrated Management of Watershed and Bio-Resources in Arid and Semi-Arid Regions'),
(137545, 108497, 'en', 'name', 'International Centre of Physics'),
(137546, 108498, 'fr', 'name', 'MusƩe d''Anthropologie prƩhistorique de Monaco'),
(137547, 108499, 'no_lang_code', 'name', 'Gilead Sciences (United States)'),
(137548, 108500, 'en', 'name', 'Berlin International University of Applied Sciences'),
(137549, 108501, 'en', 'name', 'Bioenergy and Business Incubator of Portalegre'),
(137550, 108502, 'pt', 'name', 'Centro de Investigação Interdisciplinar e Intervenção ComunitÔria'),
(137551, 108503, 'en', 'name', 'Guru Nanak Institute of Management Studies'),
(137552, 108504, 'en', 'name', 'Center for Drug Discovery and Innovative Medicines'),
(137553, 108504, 'pt', 'name', 'Centro de Investigação Farmacológica e Inovação Medicamentosa'),
(137554, 108505, 'es', 'name', 'Colegio Superior Agropecuario del Estado de Guerrero'),
(137555, 108506, 'pt', 'name', 'Instituto Superior de SaĆŗde do Alto Ave'),
(137556, 108507, 'fr', 'name', 'ModƩlisation mathƩmatique et numƩrique'),
(137557, 108508, 'en', 'name', 'ALT School of Theology'),
(137558, 108508, 'sv', 'name', 'Akademi fƶr Ledarskap och Teologi'),
(137559, 108509, 'pt', 'name', 'Incubadora de Empresas da Figueira da Foz – Associação para o Desenvolvimento Empresarial'),
(137560, 108510, 'en', 'name', 'Regional Centre for Renewable Energy and Energy Efficiency'),
(137561, 108510, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų„Ł‚Ł„ŁŠŁ…ŁŠ للطاقة المتجددة وكفاؔة'),
(137562, 108511, 'pt', 'name', 'Centro de Investigação em Ciências Empresariais'),
(137563, 108512, 'en', 'name', 'NSF National Center for Atmospheric Research'),
(137564, 108513, 'en', 'name', 'Laser & Health Academy'),
(137565, 108514, 'en', 'name', 'Information Society Research Laboratory'),
(137566, 108515, 'pt', 'name', 'Centro Interdisciplinar de Estudos Educacionais'),
(137567, 108516, 'pt', 'name', 'Poder JudiciƔrio do Estado de RondƓnia Tribunal de JustiƧa'),
(137568, 108517, 'fr', 'name', 'Institut du dƩveloppement et des ressources en informatique scientifique'),
(137569, 108517, 'en', 'name', 'Institute for Development and Resources in Intensive Scientific Computing'),
(137570, 108518, 'en', 'name', 'Islamic Azad University, Naragh Branch'),
(137571, 108518, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد نراق'),
(137572, 108519, 'pt', 'name', 'Fundação Dr António Cupertino de Miranda'),
(137573, 108520, 'en', 'name', 'Uppsala University'),
(137574, 108520, 'sv', 'name', 'Uppsala universitet'),
(137575, 108520, 'fi', 'name', 'Uppsalan yliopisto'),
(137576, 108521, 'es', 'name', 'Instituto de Cultura, Sociedad y Estado'),
(137577, 108522, 'en', 'name', 'Yunnan Yunnei Power Machinery Manufacturing Co., Ltd.'),
(137578, 108522, 'no_lang_code', 'name', 'Yunnan Yunnei Power Machinery Manufacturing Co., Ltd. (China)'),
(137579, 108522, 'zh', 'name', 'äŗ‘å—äŗ‘å†…åŠØåŠ›ęœŗę¢°åˆ¶é€ ęœ‰é™å…¬åø'),
(137580, 108523, 'pt', 'name', 'Centro de Investigação em Turismo Sustentabilidade e Bem-Estar'),
(137581, 108524, 'no_lang_code', 'name', 'Grupo EGOR (Portugal)'),
(137582, 108525, 'es', 'name', 'Benemerita Escuela Normal Urbana Federal Fronteriza'),
(137583, 108526, 'en', 'name', 'Advanced Institute for Wildlife Conservation'),
(137584, 108526, 'ta', 'name', 'ą®‰ą®Æą®°ąÆą®Øą®æą®²ąÆˆ வன ą®‰ą®Æą®æą®°ą®æą®©ą®ŖąÆ ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(137585, 108527, 'no_lang_code', 'name', 'Galderma (Switzerland)'),
(137586, 108528, 'pt', 'name', 'Instituto de Inovação Tecnológica dos Açores'),
(137587, 108529, 'pt', 'name', 'Instituto PortuguĆŖs de Naturologia'),
(137588, 108530, 'en', 'name', 'Mongolian Natural History Museum'),
(137589, 108530, 'mn', 'name', 'ŠœŠ¾Š½Š³Š¾Š»Ń‹Š½ Байгалийн Түүхийн Музей'),
(137590, 108531, 'es', 'name', 'Instituto Nacional de Investigaciones Forestales AgrĆ­colas y Pecuarias'),
(137591, 108532, 'no_lang_code', 'name', 'Fiat Chrysler Automobiles (United Kingdom)'),
(137592, 108533, 'no_lang_code', 'name', 'Livraria da Baixa (Portugal)'),
(137593, 108534, 'pt', 'name', 'Fundação Portugal África'),
(137594, 108535, 'en', 'name', 'International Centre on Qanats and Historic Hydraulic Structures'),
(137595, 108535, 'fa', 'name', 'مرکز ŲØŪŒŁ†Ų§Ł„Ł…Ł„Ł„ŪŒ قنات و Ų³Ų§Ų²Ł‡Ł‡Ų§ŪŒ آبی تاریخی'),
(137596, 108536, 'fr', 'name', 'Cellules souches hématopoïétiques et développement des hémopathies myéloïdes'),
(137597, 108536, 'en', 'name', 'Hematopoietic stem cells and the development of myeloid malignancies'),
(137598, 108537, 'en', 'name', 'Center for Research and Development in Agrifood Systems and Sustainability'),
(137599, 108537, 'pt', 'name', 'Centro de Investigação e Desenvolvimento em Sistemas Agroalimentares e Sustentabilidade'),
(137600, 108538, 'ms', 'name', 'Kolej Matrikulasi Selangor'),
(137601, 108538, 'en', 'name', 'Selangor Matriculation College'),
(137602, 108539, 'es', 'name', 'Secretaría de Educación Jalisco'),
(137603, 108540, 'id', 'name', 'Politeknik Manufaktur Bandung'),
(137604, 108541, 'fr', 'name', 'MatƩriaux et santƩ'),
(137605, 108542, 'en', 'name', 'Observatory Sciences Ltd. (United Kingdom)'),
(137606, 108543, 'hr', 'name', 'Poliklinika za rehabilitaciju sluŔanja i govora SUVAG'),
(137607, 108543, 'en', 'name', 'Polyclinic for the Rehabilitation of Listening and Speech SUVAG'),
(137608, 108544, 'en', 'name', 'Polytechnic Institute of Viana do Castelo'),
(137609, 108545, 'it', 'name', 'Museo di Archeologia e Scienze Naturali ''G. Zannato'''),
(137610, 108546, 'no_lang_code', 'name', 'Ludomedia (Portugal)'),
(137611, 108547, 'en', 'name', 'Jiangxi Provincial Institute of Traditional Chinese Medicine'),
(137612, 108547, 'zh', 'name', 'ę±Ÿč„æēœäø­åŒ»čÆē ”ē©¶é™¢'),
(137613, 108548, 'no_lang_code', 'name', 'Hydro Aluminium Extrusion Portugal (Portugal)'),
(137614, 108549, 'de', 'name', 'Deutsches Zentrum für Herz-Kreislauf-Forschung'),
(137615, 108549, 'en', 'name', 'German Centre for Cardiovascular Research'),
(137616, 108550, 'it', 'name', 'IRCCS Azienda Ospedliero-Universitaria di Bologna Policlinico di Sant''Orsola'),
(137617, 108551, 'en', 'name', 'Association of European Research Libraries'),
(137618, 108551, 'nl', 'name', 'Ligue des Bibliothèques Européennes de Recherche'),
(137619, 108552, 'pt', 'name', 'Instituto PortuguĆŖs de Oncologia Francisco Gentil'),
(137620, 108552, 'en', 'name', 'Portuguese Oncology Institute'),
(137621, 108553, 'no_lang_code', 'name', 'Fiat Chrysler Automobiles (United States)'),
(137622, 108554, 'pt', 'name', 'Laboratório de Engenharia MatemÔtica do Instituto Politécnico do Porto'),
(137623, 108555, 'nl', 'name', 'Hogeschool Viaa'),
(137624, 108555, 'en', 'name', 'Viaa Christian University of Applied Sciences'),
(137625, 108556, 'fr', 'name', 'Centre de Recherches SƩmiotiques'),
(137626, 108557, 'en', 'name', 'Institute for Neurodegenerative Diseases'),
(137627, 108558, 'no_lang_code', 'name', 'Galp Energia SGPS (Portugal)'),
(137628, 108559, 'pt', 'name', 'Centro de Investigação em Contabilidade e Fiscalidade'),
(137629, 108560, 'en', 'name', 'Kasturba Medical College, Mangalore'),
(137630, 108561, 'en', 'name', 'Regional Centre on Urban Water Management'),
(137631, 108562, 'en', 'name', 'Bailey-Matthews National Shell Museum & Aquarium'),
(137632, 108563, 'pt', 'name', 'Instituto Portugues do Sangue e da Transplantacao, IP'),
(137633, 108564, 'en', 'name', 'Openscapes (United States)'),
(137634, 108565, 'en', 'name', 'University of Chitral'),
(137635, 108566, 'en', 'name', 'Central Laboratory of Applied Physics'),
(137636, 108567, 'en', 'name', 'Autonomous Systems Laboratory'),
(137637, 108567, 'pt', 'name', 'Laboratório de Sistemas Autónomos'),
(137638, 108568, 'en', 'name', 'Manipal Academy of Higher Education, Dubai'),
(137639, 108569, 'en', 'name', 'Global Research and Training Centre for Internationally Designated Areas'),
(137640, 108569, 'ko', 'name', 'ģœ ė„¤ģŠ¤ģ½” źµ­ģ œė³“ķ˜øģ§€ģ—­ źø€ė”œė²Œ ģ—°źµ¬Ā·ķ›ˆė Øģ„¼ķ„°'),
(137641, 108570, 'en', 'name', 'Acharya Narendra Deva University of Agriculture and Technology'),
(137642, 108570, 'fr', 'name', 'UniversitƩ narendra dev d''agriculture et de technologie'),
(137643, 108570, 'hi', 'name', 'ą¤Øą¤°ą„‡ą¤‚ą¤¦ą„ą¤° ą¤¦ą„‡ą¤µą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤—ą„ą¤°ą„€ą¤•ą¤²ą„ą¤šą¤° ą¤ą¤‚ą¤” ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€ ą¤•ą„ą¤®ą¤¾ą¤°ą¤—ą¤‚ą¤œ ą¤«ą¤¼ą„ˆą¤œą¤¼ą¤¾ą¤¬ą¤¾ą¤¦'),
(137644, 108571, 'pt', 'name', 'Centro de Espectrometria de Massa'),
(137645, 108571, 'en', 'name', 'Mass Spectrometry Centre'),
(137646, 108572, 'pt', 'name', 'Hospital JosƩ Luciano de Castro Anadia'),
(137647, 108573, 'de', 'name', 'Akademische Raumfahrt Initiative Schweiz'),
(137648, 108574, 'en', 'name', 'NSF NCAR Earth Observing Laboratory'),
(137649, 108575, 'en', 'name', 'National Institute of Carpology (Gaertnerian Institution)'),
(137650, 108575, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карпологии (Гертнеровский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚)'),
(137651, 108576, 'en', 'name', 'Human Sciences Institute (MSH) of Paris-Saclay'),
(137652, 108576, 'fr', 'name', 'Maison des Sciences sociales et des HumanitƩs de Paris-Saclay'),
(137653, 108577, 'pt', 'name', 'Gabinete Emprego Empreendedorismo e Ligação às Empresas'),
(137654, 108578, 'fr', 'name', 'UniversitƩ des Antilles PƓle Guadeloupe'),
(137655, 108579, 'no_lang_code', 'name', 'Inter Partner Assistance Sucursal Portugal (Portugal)'),
(137656, 108580, 'bm', 'name', 'Kementerian Pendidikan Malaysia'),
(137657, 108580, 'en', 'name', 'Ministry of Education Malaysia'),
(137658, 108581, 'en', 'name', 'Bangladesh Naval Academy'),
(137659, 108581, 'bn', 'name', 'বাংলাদেশ নেভাল ą¦ą¦•ą¦¾ą¦”ą§‡ą¦®ą¦æ'),
(137660, 108582, 'pt', 'name', 'MinistƩrio do Planejamento e das Infraestruturas'),
(137661, 108583, 'no_lang_code', 'name', 'IQVIA (United States)'),
(137662, 108584, 'no_lang_code', 'name', 'Global Health Platform (Portugal)'),
(137663, 108585, 'no_lang_code', 'name', 'Instituto de Desenvolvimento e Inovação do Atlântico (Portugal)'),
(137664, 108586, 'fr', 'name', 'Laboratoire AntiDopage FranƧais'),
(137665, 108587, 'en', 'name', 'Guangdong Provincial Key Laboratory of Geophysical High-resolution Imaging Technology'),
(137666, 108587, 'zh', 'name', 'å¹æäøœēœåœ°ēƒē‰©ē†é«˜ē²¾åŗ¦ęˆåƒęŠ€ęœÆé‡ē‚¹å®žéŖŒå®¤'),
(137667, 108588, 'fr', 'name', 'Neurodev : Troubles du neuro-dĆ©veloppement : du fœtus Ć  l''adulte'),
(137668, 108589, 'en', 'name', 'Chirchik State Pedagogical University'),
(137669, 108590, 'es', 'name', 'Ministerio de Salud PĆŗblica y Bienestar Social'),
(137670, 108591, 'en', 'name', 'Shenzhen Medical Academy of Research and Translation'),
(137671, 108591, 'zh', 'name', 'ę·±åœ³åŒ»å­¦ē§‘å­¦é™¢'),
(137672, 108592, 'no_lang_code', 'name', 'Energias de Portugal (Portugal)'),
(137673, 108593, 'pt', 'name', 'Centro de Ecofisiologia BioquĆ­mica e Biotecnologia Vegetal'),
(137674, 108594, 'en', 'name', 'Indo-German Science & Technology Centre'),
(137675, 108595, 'en', 'name', 'Coinscrap Finance'),
(137676, 108595, 'no_lang_code', 'name', 'Coinscrap Finance SL (Spain)'),
(137677, 108596, 'fr', 'name', 'Dynamique des Cellules Tumorales'),
(137678, 108596, 'en', 'name', 'Tumor cell dynamics'),
(137679, 108597, 'fr', 'name', 'Neuro-SU'),
(137680, 108597, 'en', 'name', 'Centre of Neurosciences of Sorbonne UniversitƩ'),
(137681, 108598, 'en', 'name', 'Center for Systems and Control (CAS), Mines Paris, PSL University'),
(137682, 108598, 'fr', 'name', 'Centre Automatique et SystĆØmes'),
(137683, 108599, 'pt', 'name', 'Centro Interdisciplinar de História Culturas e Sociedades'),
(137684, 108600, 'en', 'name', 'Breakthrough Prize Foundation'),
(137685, 108601, 'pt', 'name', 'Iyaleta - Pesquisa, CiĆŖncias e Humanidades'),
(137686, 108601, 'en', 'name', 'Iyaleta - Research, Sciences and Humanities'),
(137687, 108602, 'pt', 'name', 'Gabinete de Planeamento Estratégia Avaliação e Relações Internacionais'),
(137688, 108603, 'en', 'name', 'NSF NCAR Computational & Information Systems Laboratory'),
(137689, 108604, 'fr', 'name', 'IngƩnierie et Plateformes au Service de l''Innovation ThƩrapeutique'),
(137690, 108604, 'en', 'name', 'Paris-Saclay Institute of Therapeutic Innovation'),
(137691, 108605, 'en', 'name', 'Southern University of Science and Technology'),
(137692, 108605, 'zh', 'name', 'å—ę–¹ē§‘ęŠ€å¤§å­¦'),
(137693, 108606, 'pt', 'name', 'Escola de CiĆŖncias Sociais e Humanas'),
(137694, 108607, 'pt', 'name', 'Centro de Estudos de Comunicação e Cultura'),
(137695, 108608, 'no_lang_code', 'name', 'Suprema Imaginação Unipessoal (Portugal)'),
(137696, 108609, 'en', 'name', 'Gobabeb Namib Research Institute'),
(137697, 108610, 'en', 'name', 'LEAD College of Management'),
(137698, 108611, 'pt', 'name', 'Inspecção-Geral de Finanças'),
(137699, 108612, 'en', 'name', 'The University of Osaka'),
(137700, 108612, 'ja', 'name', '大阪大学'),
(137701, 108613, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(137702, 108613, 'fr', 'name', 'Ministère de l''Enseignement Supérieur et de la Recherche Scientifique'),
(137703, 108613, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(137704, 108614, 'no_lang_code', 'name', 'HM Consultores (Portugal)'),
(137705, 108615, 'pt', 'name', 'Instituto PolitƩcnico de Tomar'),
(137706, 108615, 'en', 'name', 'Polytechnic Institute of Tomar'),
(137707, 108616, 'en', 'name', 'Centre for Media, Communication and Information Research'),
(137708, 108616, 'de', 'name', 'Zentrum für Medien-, Kommunikations- und Informationsforschung'),
(137709, 108617, 'pt', 'name', 'Fundação das Casas de Fronteira e Alorna'),
(137710, 108618, 'en', 'name', 'Institute of Mathematical Sciences'),
(137711, 108618, 'ne', 'name', 'ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤®ą„‡ą¤„ą„‡ą¤®ą„‡ą¤Ÿą¤æą¤•ą¤² ą¤øą¤¾ą¤‡ą¤‚ą¤øą„‡ą¤ø'),
(137712, 108618, 'hi', 'name', 'गणित ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(137713, 108618, 'ta', 'name', 'கணித ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(137714, 108619, 'fr', 'name', 'Haute Ʃcole pƩdagogique de Zurich'),
(137715, 108619, 'de', 'name', 'Pädagogische Hochschule Zürich'),
(137716, 108619, 'en', 'name', 'Zurich University of Teacher Education'),
(137717, 108620, 'en', 'name', 'TUD Dresden University of Technology'),
(137718, 108620, 'de', 'name', 'Technische UniversitƤt Dresden'),
(137719, 108621, 'de', 'name', 'Bundesinstitut für Bau-, Stadt- und Raumforschung'),
(137720, 108622, 'es', 'name', 'IFMIF-DONES EspaƱa'),
(137721, 108623, 'en', 'name', 'Center for Mathematical Modeling'),
(137722, 108623, 'fr', 'name', 'Centre de modƩlisation mathƩmatique'),
(137723, 108623, 'es', 'name', 'Centro de Modelamiento MatemƔtico'),
(137724, 108624, 'en', 'name', 'Hlukhiv State Pedagogical University'),
(137725, 108625, 'en', 'name', 'Flux50'),
(137726, 108626, 'pt', 'name', 'Unidade de Investigação em Media Artes e Design'),
(137727, 108627, 'es', 'name', 'Centro Regional de Seguridad HĆ­drica'),
(137728, 108627, 'en', 'name', 'Regional Centre on Water Security'),
(137729, 108628, 'pt', 'name', 'CƔtedra de Estudos Sefarditas Alberto Benveniste'),
(137730, 108629, 'pt', 'name', 'Centro de Investigação Cientifica da Construção e do ImobiliÔrio'),
(137731, 108630, 'pt', 'name', 'Ministra Adjunta e dos Assuntos Parlamentares'),
(137732, 108631, 'en', 'name', 'Center of Research on International Business and Strategy'),
(137733, 108632, 'en', 'name', 'Centre for Research & Innovation in Education'),
(137734, 108632, 'pt', 'name', 'Centro de Investigação e Inovação em Educação'),
(137735, 108633, 'en', 'name', 'Hainan 301 Hospital'),
(137736, 108633, 'zh', 'name', 'č§£ę”¾å†›ę€»åŒ»é™¢ęµ·å—åŒ»é™¢'),
(137737, 108634, 'en', 'name', 'Nuclear Energy Agency'),
(137738, 108635, 'en', 'name', 'Games Interaction and Learning Technologies'),
(137739, 108636, 'en', 'name', 'HyLab Green Hydrogen Collaborative Laboratory'),
(137740, 108637, 'pt', 'name', 'Unidade de Investigação e Internacionalização do ISVOUGA'),
(137741, 108638, 'fr', 'name', 'Fondation des Maladies du Cœur et de l''AVC'),
(137742, 108639, 'fr', 'name', 'Institut de Technologie Agroalimentaire'),
(137743, 108640, 'no_lang_code', 'name', 'Livraria do Centro Comercial Arco ƍris (Portugal)'),
(137744, 108641, 'en', 'name', 'NSF NCAR Atmospheric Chemistry Observations & Modeling'),
(137745, 108642, 'en', 'name', 'CADT - Cambodia Academy of Digital Technology'),
(137746, 108643, 'en', 'name', 'Centre for Nanomaterials and Biotechnology'),
(137747, 108643, 'cs', 'name', 'Centrum nanomateriÔlů a biotechnologií'),
(137748, 108644, 'en', 'name', 'Regional Humid Tropics Hydrology and Water Resources Centre for South-East Asia and the Pacific'),
(137749, 108645, 'es', 'name', 'Hospital Rafael MƩndez'),
(137750, 108646, 'no_lang_code', 'name', 'Kironfarma Produtos FarmacĆŖuticos (Portugal)'),
(137751, 108647, 'es', 'name', 'Sistema Nacional de Investigadores'),
(137752, 108648, 'no_lang_code', 'name', 'Norsk Hydro (Norway)'),
(137753, 108649, 'en', 'name', 'International House'),
(137754, 108650, 'en', 'name', 'Military Institute of Science and Technology'),
(137755, 108650, 'bn', 'name', 'মিলিটারি ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(137756, 108650, 'ml', 'name', 'ą“øąµˆą“Øą“æą“• ą“¶ą“¾ą“øąµą“¤ąµą“°ą“øą“¾ą“™ąµą“•ąµ‡ą“¤ą“æą“• ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“Ÿąµą“Æąµ‚ą“Ÿąµą“Ÿąµ, ą“¬ą“‚ą“—ąµą“²ą“¾ą“¦ąµ‡ą“¶ąµ'),
(137757, 108651, 'en', 'name', 'Min-On Music Research Institute'),
(137758, 108652, 'no_lang_code', 'name', 'ConocoPhillips (Qatar)'),
(137759, 108653, 'fr', 'name', 'Transgénèse pour les études fonctionnelles sur les organismes modèles - Paris-Saclay'),
(137760, 108654, 'pt', 'name', 'Instituto de Investigacao das Pescas e do Mar'),
(137761, 108655, 'en', 'name', 'National Supercomputing Changsha Center'),
(137762, 108655, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—é•æę²™äø­åæƒ'),
(137763, 108656, 'pt', 'name', 'Centro Regional de Investigação Pesqueira do Sul'),
(137764, 108657, 'pt', 'name', 'Centro de Reabilitação de Paralisia Cerebral de Coimbra'),
(137765, 108658, 'en', 'name', 'GreenCoLab'),
(137766, 108659, 'en', 'name', 'Manav Rachna International Institute of Research and Studies'),
(137767, 108659, 'hi', 'name', 'मानव रचना ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤ą¤‚ą¤” ą¤øą„ą¤Ÿą¤”ą„€ą¤ø'),
(137768, 108660, 'en', 'name', 'Shared Health Manitoba'),
(137769, 108660, 'fr', 'name', 'Soins communs Manitoba'),
(137770, 108661, 'en', 'name', 'Tehatta Sadananda Mahavidyalaya'),
(137771, 108661, 'hi', 'name', 'ą¦¤ą§‡ą¦¹ą¦¾ą¦¤ą¦Ÿą¦¾ ą¦øą¦¦ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ą¦¾'),
(137772, 108662, 'en', 'name', 'William James Center for Research'),
(137773, 108663, 'fr', 'name', 'Institut des Hautes Ɖtudes Scientifiques'),
(137774, 108663, 'en', 'name', 'Institute of Advanced Scientific Studies'),
(137775, 108664, 'pt', 'name', 'Instituto PolitƩcnico de Portalegre'),
(137776, 108664, 'en', 'name', 'Polytechnic Institute of Portalegre'),
(137777, 108665, 'en', 'name', 'Medical University of Silesia'),
(137778, 108665, 'pl', 'name', 'Śląski Uniwersytet Medyczny w Katowicach'),
(137779, 108666, 'en', 'name', 'Manipur International University'),
(137780, 108667, 'en', 'name', 'Euro-Argo ERIC'),
(137781, 108668, 'en', 'name', 'City University Ajman'),
(137782, 108668, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŲÆŁŠŁ†Ų© عجمان'),
(137783, 108669, 'nl', 'name', 'GGD Amsterdam'),
(137784, 108669, 'en', 'name', 'Public Health Service of Amsterdam'),
(137785, 108670, 'pt', 'name', 'Fundação Portuguesa das Comunicações'),
(137786, 108671, 'pt', 'name', 'Centro de Geologia'),
(137787, 108672, 'en', 'name', 'Foresight Institute of Research and Translation'),
(137788, 108672, 'no_lang_code', 'name', 'Foresight Institute of Research and Translation (Rwanda)'),
(137789, 108673, 'es', 'name', 'Centro Interdisciplinario de Estudios sobre Desarrollo'),
(137790, 108674, 'es', 'name', 'CIES Salud Sexual - Salud Reproductiva'),
(137791, 108675, 'en', 'name', 'Asia-Pacific Centre for Ecohydrology'),
(137792, 108676, 'en', 'name', 'Stellantis North America'),
(137793, 108676, 'no_lang_code', 'name', 'Stellantis North America (United States)'),
(137794, 108677, 'fr', 'name', 'Syndicat des vignerons des CƓtes du RhƓne'),
(137795, 108678, 'en', 'name', 'Bangladesh Betar'),
(137796, 108678, 'bn', 'name', 'বাংলাদেশ বেতার'),
(137797, 108679, 'en', 'name', 'Applied Artificial Intelligence Laboratory'),
(137798, 108679, 'pt', 'name', 'Laboratório de Inteligência Artificial Aplicada'),
(137799, 108680, 'no_lang_code', 'name', 'Intermúsica Representações Musicais e Artísticas (Portugal)'),
(137800, 108681, 'pt', 'name', 'Incubadora de Empresas de Vouzela'),
(137801, 108682, 'en', 'name', 'Ajay Kumar Garg Institute of Management'),
(137802, 108683, 'no_lang_code', 'name', 'Morais Leitao Galvao Teles Soares da Silva & Associados Sociedade de Advogados (Portugal)'),
(137803, 108684, 'id', 'name', 'Insitut Kesehatan Immanuel'),
(137804, 108685, 'de', 'name', 'Barkhausen Institut'),
(137805, 108686, 'en', 'name', 'SciPost'),
(137806, 108687, 'pt', 'name', 'Fundação Grünenthal'),
(137807, 108688, 'no_lang_code', 'name', 'Galderma (Portugal)'),
(137808, 108689, 'es', 'name', 'Centro de Investigaciones y Transferencia Tierra del Fuego'),
(137809, 108690, 'no_lang_code', 'name', 'Vasconcelos Xavier ServiƧos MƩdicos (Portugal)'),
(137810, 108691, 'ca', 'name', 'Institut de Seguretat PĆŗblica de Catalunya'),
(137811, 108691, 'en', 'name', 'Institute for Public Security of Catalonia'),
(137812, 108691, 'es', 'name', 'Instituto de Seguridad Pública de Cataluña'),
(137813, 108692, 'pt', 'name', 'Centro de Inovação em Engenharia e Tecnologia Industrial'),
(137814, 108693, 'pt', 'name', 'Centro de Fisƭca e Engenharia de Materiais AvanƧados'),
(137815, 108694, 'fr', 'name', 'Conditions Extrêmes et Matériaux Haute Température et Irradiation'),
(137816, 108695, 'en', 'name', 'Center for the History of Society and Culture'),
(137817, 108695, 'pt', 'name', 'Centro de História da Sociedade e da Cultura'),
(137818, 108696, 'it', 'name', 'Consorzio di Ricerca Gian Pietro Ballatore'),
(137819, 108697, 'en', 'name', 'Institute of Earth Sciences'),
(137820, 108697, 'is', 'name', 'Jarðvísindastofnun HÔskólans'),
(137821, 108698, 'pt', 'name', 'Startup SantarƩm'),
(137822, 108699, 'en', 'name', 'Spintronics Research Network of Japan'),
(137823, 108700, 'en', 'name', 'Dhaka Chamber of Commerce & Industry'),
(137824, 108700, 'bn', 'name', 'ঢাকা ą¦šą§‡ą¦®ą§ą¦¬ą¦¾ą¦° অব ą¦•ą¦®ą¦¾ą¦°ą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦‡ą¦Øą§ą¦”ą¦¾ą¦øą§ą¦Ÿą§ą¦°ą¦æ'),
(137825, 108701, 'en', 'name', 'Lyceum of the Philippines University Laguna'),
(137826, 108702, 'en', 'name', 'Toyo Institute of Food Technology'),
(137827, 108702, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±ę“‹é£Ÿå“ē ”ē©¶ę‰€'),
(137828, 108703, 'pt', 'name', 'CƔtedra Energias RenovƔveis'),
(137829, 108704, 'fr', 'name', 'CELPHEDIA'),
(137830, 108705, 'en', 'name', 'Louisiana State University Health Sciences Center New Orleans'),
(137831, 108706, 'en', 'name', 'Iraqi Association for Medical Research and Studies'),
(137832, 108707, 'en', 'name', 'Institute of Applied Problems of Physics'),
(137833, 108708, 'en', 'name', 'Medical Colleges of Northern Philippines'),
(137834, 108709, 'en', 'name', 'Oxford College of Engineering and Management'),
(137835, 108710, 'fr', 'name', 'Haute Ɖcole d''Art de Zurich'),
(137836, 108710, 'en', 'name', 'Zurich University of the Arts'),
(137837, 108710, 'de', 'name', 'Zürcher Hochschule der Künste'),
(137838, 108711, 'en', 'name', 'Avicenna - Batumi Medical University'),
(137839, 108711, 'ka', 'name', 'įƒįƒ•įƒ˜įƒŖįƒ”įƒœįƒ - įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(137840, 108712, 'en', 'name', 'University of Gharyan'),
(137841, 108712, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŗŲ±ŁŠŲ§Ł†'),
(137842, 108713, 'no_lang_code', 'name', 'Inovapotek Pharmaceutical Research and Development (Portugal)'),
(137843, 108714, 'pt', 'name', 'Fundação MÔrio Soares e Maria Barroso'),
(137844, 108715, 'en', 'name', 'Lira University'),
(137845, 108716, 'en', 'name', 'U.S. Army Medical Center of Excellence'),
(137846, 108717, 'de', 'name', 'Kanton Zürich'),
(137847, 108718, 'pt', 'name', 'Laboratório de Ciências Forenses e Psicológicas Egas Moniz'),
(137848, 108719, 'en', 'name', 'Dracaena Draco Research Farm Melbourne'),
(137849, 108720, 'pt', 'name', 'Inova-Ria Associação de Empresas para uma Rede de Inovação em Aveiro'),
(137850, 108721, 'ro', 'name', 'Stațiunea de Cercetare Dezvoltare pentru Legumicultură Buzău'),
(137851, 108721, 'en', 'name', 'Vegetable Research and Development Station Buzău'),
(137852, 108722, 'pt', 'name', 'Centro de Inovação da Mouraria'),
(137853, 108723, 'fr', 'name', 'Immunologie anti-tumorale et immunothƩrapie des cancers'),
(137854, 108723, 'en', 'name', 'Immunology of tumors and cancer immunotherapy'),
(137855, 108724, 'no_lang_code', 'name', 'Uahuah Comércio Electrónico de Informação (Portugal)'),
(137856, 108725, 'es', 'name', 'Centro Regional para la Gestión de Aguas SubterrÔneas en América Latina y el Caribe'),
(137857, 108725, 'en', 'name', 'Regional Centre for Groundwater Management for Latin America and the Caribbean'),
(137858, 108726, 'en', 'name', 'International Centre for Water Hazard and Risk Management'),
(137859, 108726, 'ja', 'name', 'ę°“ē½å®³ćƒ»ćƒŖć‚¹ć‚Æćƒžćƒć‚øćƒ”ćƒ³ćƒˆå›½éš›ć‚»ćƒ³ć‚æ'),
(137860, 108727, 'pt', 'name', 'Instituto Piaget'),
(137861, 108728, 'pt', 'name', 'idD Portugal'),
(137862, 108729, 'no_lang_code', 'name', 'Centro de Estudos Arnaldo AraĆŗjo'),
(137863, 108730, 'en', 'name', 'Myriad USA'),
(137864, 108731, 'en', 'name', 'Mental Health Authority'),
(137865, 108732, 'en', 'name', 'International Competence Centre for Mining-Engineering Education, Russia'),
(137866, 108732, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ центр компетенций в горнотехническом образовании поГ ŃŠ³ŠøŠ“Š¾Š¹ Š®ŠŠ•Š”ŠšŠž'),
(137867, 108733, 'pt', 'name', 'Centro de Investigação em Energia e Ambiente'),
(137868, 108734, 'pt', 'name', 'Valoriza Centro de Investigação para a Valorização de Recursos Endógenos'),
(137869, 108735, 'en', 'name', 'National Blood Transfusion Service'),
(137870, 108736, 'es', 'name', 'Fundación Escuela Tecnológica de Neiva'),
(137871, 108737, 'fr', 'name', 'AC Echo : Analyse CentralisĆ©e Ɖchocardiographique en imagerie cardiovasculaire'),
(137872, 108738, 'pt', 'name', 'Centro de Estudos Interdisciplinares do SƩculo XX'),
(137873, 108739, 'pt', 'name', 'Pólo da Madeira do Centro de Ciências do Mar e do Ambiente'),
(137874, 108740, 'ca', 'name', 'Centre de Recerca Ecològica i Aplicacions Forestals'),
(137875, 108740, 'en', 'name', 'Centre for Research on Ecology and Forestry Applications'),
(137876, 108740, 'es', 'name', 'Centro de Investigación Ecológica y Aplicaciones Forestales'),
(137877, 108741, 'en', 'name', 'Jesselton University College'),
(137878, 108742, 'en', 'name', 'World Association for Positive and Transcultural Psychotherapy (WAPP)'),
(137879, 108743, 'pt', 'name', 'Fundação Serra Henriques'),
(137880, 108743, 'en', 'name', 'Serra Henriques Foundation'),
(137881, 108744, 'en', 'name', 'Mary Baldwin University');
INSERT INTO `ror_settings` VALUES
(137882, 108745, 'fr', 'name', 'Laboratoire de GƩnie des ProcƩdƩs et MatƩriaux'),
(137883, 108746, 'es', 'name', 'Hospital El Salvador'),
(137884, 108747, 'de', 'name', 'Bundesministerium für Forschung, Technologie und Raumfahrt'),
(137885, 108747, 'en', 'name', 'Federal Ministry of Research, Technology and Space'),
(137886, 108748, 'de', 'name', 'SWILD - Stadtƶkologie, Wildtierforschung, Kommunikation'),
(137887, 108748, 'en', 'name', 'SWILD - Urban Ecology & Wildlife Research'),
(137888, 108749, 'pt', 'name', 'Fundação LIGA'),
(137889, 108750, 'no_lang_code', 'name', 'Livroluz (Portugal)'),
(137890, 108751, 'fr', 'name', 'Fondation HaĆÆtienne de DiabĆØte et de Maladies Cardio-Vasculaires'),
(137891, 108751, 'en', 'name', 'Haitian Diabetes and Cardiovascular Disease Foundation'),
(137892, 108752, 'en', 'name', 'Windesheim Flevoland'),
(137893, 108753, 'pt', 'name', 'Health Cluster Portugal'),
(137894, 108754, 'en', 'name', 'Manomet Conservation Sciences'),
(137895, 108755, 'fr', 'name', 'Chimie Physique et Chimie du Vivant'),
(137896, 108756, 'en', 'name', 'Jordan Center for Disease Control'),
(137897, 108756, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł…ŁƒŲ§ŁŲ­Ų© Ų§Ł„Ų§ŁˆŲØŲ¦Ų© ŁˆŲ§Ł„Ų§Ł…Ų±Ų§Ų¶ Ų§Ł„Ų³Ų§Ų±ŁŠŲ©'),
(137898, 108757, 'en', 'name', 'Dataking Consulting (Ghana)'),
(137899, 108758, 'en', 'name', 'WiseThorough (Portugal)'),
(137900, 108759, 'en', 'name', 'Fezzan University'),
(137901, 108759, 'ar', 'name', 'لجامعة فزان'),
(137902, 108760, 'pt', 'name', 'Fundação Eugénio de Almeida'),
(137903, 108761, 'no_lang_code', 'name', 'NBP Produção em Vídeo (Portugal)'),
(137904, 108762, 'en', 'name', 'KSCSTE - Institute for Climate Change Studies'),
(137905, 108763, 'en', 'name', 'B.V. Raju College'),
(137906, 108764, 'fr', 'name', 'Histoire des technosciences en sociƩtƩ'),
(137907, 108765, 'en', 'name', 'Centre of Applied Research in Management and Economics'),
(137908, 108765, 'pt', 'name', 'Centro de Investigação Aplicada em Gestão e Economia'),
(137909, 108766, 'en', 'name', 'Bangladesh Bioethics Society'),
(137910, 108766, 'bn', 'name', 'বাংলাদেশ ą¦¬ą¦¾ą¦Æą¦¼ą§‹ą¦ą¦„ą¦æą¦•ą§ą¦ø ą¦øą§‹ą¦øą¦¾ą¦‡ą¦Ÿą¦æ'),
(137911, 108767, 'en', 'name', 'National Supercomputing Center in Jinan'),
(137912, 108767, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—ęµŽå—äø­åæƒ'),
(137913, 108768, 'en', 'name', 'Nirmala College for Women'),
(137914, 108768, 'ta', 'name', 'ą®Øą®æą®°ąÆą®®ą®²ą®¾ ą®®ą®•ą®³ą®æą®°ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(137915, 108769, 'en', 'name', 'Islamic Azad University, Aras Branch'),
(137916, 108769, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§Ų±Ų³'),
(137917, 108770, 'en', 'name', 'Islamic Azad University, Tehran'),
(137918, 108770, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ'),
(137919, 108771, 'sr', 'name', 'ITS - Visoka Ŕkola strukovnih studija za informacione tehnologije'),
(137920, 108772, 'en', 'name', 'Katanov Khakass State University'),
(137921, 108772, 'ru', 'name', 'Єакасский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š. Ф. ŠšŠ°Ń‚Š°Š½Š¾Š²Š°'),
(137922, 108773, 'en', 'name', 'IPDT Tourism (Portugal)'),
(137923, 108774, 'es', 'name', 'Agencia de Gestión de Ayudas Universitarias y de Investigación'),
(137924, 108774, 'ca', 'name', 'Agència de Gestió d''Ajuts Universitaris i de Recerca'),
(137925, 108775, 'pt', 'name', 'Centro Interdisciplinar de Estudo da Performance Humana'),
(137926, 108775, 'en', 'name', 'Interdisciplinary Center for the Study of Human Performance'),
(137927, 108776, 'no_lang_code', 'name', 'Seber Portuguesa FarmacĆŖutica (Portugal)'),
(137928, 108777, 'es', 'name', 'Universidad PolitƩcnica de Madrid'),
(137929, 108777, 'gl', 'name', 'Universidade PolitƩcnica de Madrid'),
(137930, 108777, 'ca', 'name', 'Universitat PolitĆØcnica de Madrid'),
(137931, 108778, 'en', 'name', 'Centre for Organizational and Social Studies'),
(137932, 108778, 'pt', 'name', 'Centro de Estudos Organizacionais e Sociais'),
(137933, 108779, 'en', 'name', 'Centre for Water Law, Policy and Science'),
(137934, 108780, 'en', 'name', 'International Federation for Systems Research'),
(137935, 108781, 'fr', 'name', 'Analyse molƩculaire, modƩlisation et imagerie de la maladie cancƩreuse'),
(137936, 108782, 'pt', 'name', 'Centro de Informação e Vigilância Sismovulcânica dos Açores'),
(137937, 108783, 'en', 'name', 'IPN Incubator'),
(137938, 108783, 'pt', 'name', 'Incubadora Associação para o Desenvolvimento de Actividades de Incubação de Ideias e Empresas'),
(137939, 108784, 'es', 'name', 'Centro Nacional de Ɓreas Protegidas'),
(137940, 108785, 'en', 'name', 'Central and Northern California Ocean Observing System'),
(137941, 108786, 'en', 'name', 'Artificial Engineering (Italy)'),
(137942, 108787, 'en', 'name', 'Geological Survey of Norway'),
(137943, 108787, 'nn', 'name', 'NGU, Noregs geologiske undersĆøking'),
(137944, 108787, 'no', 'name', 'NGU, Norges geologiske undersĆøkelse'),
(137945, 108788, 'en', 'name', 'Bangladesh Institute of Capital Market'),
(137946, 108789, 'en', 'name', 'Badji Mokhtar-Annaba University'),
(137947, 108789, 'fr', 'name', 'UniversitƩ Badji Mokhtar-Annaba'),
(137948, 108789, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© باجي Ł…Ų®ŲŖŲ§Ų±-عنابة'),
(137949, 108790, 'en', 'name', 'Learning Transitions'),
(137950, 108791, 'en', 'name', 'Ginkgo Bioworks, Inc.'),
(137951, 108791, 'no_lang_code', 'name', 'Ginkgo Bioworks, Inc. (United States)'),
(137952, 108792, 'no_lang_code', 'name', 'Consiglio Nazionale delle Ricerche - Istituto di Ricerca sugli Ecosistemi Terrestri'),
(137953, 108793, 'pt', 'name', 'Hospital da Luz Coimbra'),
(137954, 108794, 'en', 'name', 'African Regional Centre for Ecohydrology'),
(137955, 108795, 'no_lang_code', 'name', 'Sourcecode Investigação Unipessoal (Portugal)'),
(137956, 108796, 'en', 'name', 'Parkinson''s Research and Education Foundation'),
(137957, 108797, 'en', 'name', 'Asgar Ali Hospital'),
(137958, 108798, 'no_lang_code', 'name', 'Grupo LusĆ­adas SaĆŗde (Portugal)'),
(137959, 108799, 'en', 'name', 'Bangladesh Atomic Energy Regulatory Authority'),
(137960, 108799, 'bn', 'name', 'বাংলাদেশ পরমাণু ą¦¶ą¦•ą§ą¦¤ą¦æ ą¦Øą¦æą§Ÿą¦Øą§ą¦¤ą§ą¦°ą¦£ ą¦•ą¦°ą§ą¦¤ą§ƒą¦Ŗą¦•ą§ą¦·'),
(137961, 108800, 'fr', 'name', 'Agence de l''eau du Canada'),
(137962, 108800, 'en', 'name', 'Canada Water Agency'),
(137963, 108801, 'es', 'name', 'CIVE - Clínica Internacional De La Visión De Ecuador'),
(137964, 108802, 'en', 'name', 'Central Asian Regional Glaciological Centre'),
(137965, 108802, 'kk', 'name', 'ŠžŃ€Ń‚Š°Š»Ń‹Ņ› ŠŠ·ŠøŃ Өңірлік Š³Š»ŃŃ†ŠøŠ¾Š»Š¾Š³ŠøŃŠ»Ń‹Ņ› ŠžŃ€Ń‚Š°Š»Ń‹Ņ“Ń‹'),
(137966, 108803, 'es', 'name', 'Centro del Agua para Zonas Ɓridas y SemiƔridas de AmƩrica Latina y el Caribe'),
(137967, 108803, 'en', 'name', 'Water Centre for Arid and Semi-arid Zones of Latin America and the Caribbean'),
(137968, 108804, 'en', 'name', 'Djillali Liabes University Sidi Bel AbbĆØs'),
(137969, 108804, 'fr', 'name', 'Université Djilali de Sidi Bel Abbès'),
(137970, 108804, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ„Ų§Ł„ŁŠ Ł„ŁŠŲ§ŲØŲ³ سيدي بلعباس - Ų¬Ł…ŁŠŲ¹ Ų§Ł„Ų­Ł‚ŁˆŁ‚ Ł…Ų­ŁŁˆŲøŲ©'),
(137971, 108805, 'es', 'name', 'Instituto de Antropología de Córdoba'),
(137972, 108806, 'no_lang_code', 'name', 'Partnia (Portugal)'),
(137973, 108807, 'de', 'name', 'HUBER Diffraktionstechnik GmbH & Co. KG'),
(137974, 108807, 'no_lang_code', 'name', 'HUBER Diffraktionstechnik GmbH & Co. KG (Germany)'),
(137975, 108808, 'en', 'name', 'Islamic Azad University Sari Branch'),
(137976, 108808, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ساری'),
(137977, 108809, 'pt', 'name', 'Instituto Federal do ParanĆ”'),
(137978, 108809, 'en', 'name', 'ParanĆ” Federal Institute of Education, Science and Technology'),
(137979, 108810, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi IBEK Pangkalpinang'),
(137980, 108811, 'en', 'name', 'West African Science Service Centre on Climate Change and Adapted Land Use'),
(137981, 108812, 'fr', 'name', 'Organisation des Nations Unies pour l''Ɖducation, la Science et la Culture'),
(137982, 108812, 'en', 'name', 'UNESCO'),
(137983, 108813, 'pt', 'name', 'Biblioteca Geral da Universidade de Coimbra'),
(137984, 108814, 'en', 'name', 'Institute of Geophysics Polish Academy of Sciences'),
(137985, 108814, 'pl', 'name', 'Instytut Geofizyki PAN'),
(137986, 108815, 'en', 'name', 'National Center for Educational Research and Development'),
(137987, 108815, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł‚ŁˆŁ…ŁŠ Ł„Ł„ŲØŲ­ŁˆŲ« Ų§Ł„ŲŖŲ±ŲØŁˆŁŠŲ© ŁˆŲ§Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(137988, 108816, 'pt', 'name', 'UACOOPERA'),
(137989, 108817, 'no_lang_code', 'name', 'Impact Hub Lisbon (Portugal)'),
(137990, 108818, 'cs', 'name', 'CESNET, zÔjmové sdružení prÔvnických osob'),
(137991, 108819, 'en', 'name', 'Atria University'),
(137992, 108820, 'nl', 'name', 'Departement Mobiliteit en Openbare Werken'),
(137993, 108820, 'en', 'name', 'Department Mobility and Public Works'),
(137994, 108821, 'en', 'name', 'University of Veterinary and Animal Sciences'),
(137995, 108821, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŁˆŪŒŁ¹Ų±Ł†Ų±ŪŒ Ų§ŪŒŁ†Śˆ Ų§ŪŒŁ†ŪŒŁ…Ł„ سائنسز'),
(137996, 108822, 'en', 'name', 'Quantic School of Business and Technology'),
(137997, 108823, 'en', 'name', 'Centre for Management Studies of Instituto Superior TƩcnico'),
(137998, 108823, 'pt', 'name', 'Centro de Estudos de Gestão'),
(137999, 108824, 'en', 'name', 'Pennsylvania State University'),
(138000, 108824, 'es', 'name', 'Universidad Estatal de Pensilvania'),
(138001, 108824, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Pennsylvanie'),
(138002, 108825, 'de', 'name', 'BG Klinikum Hamburg'),
(138003, 108826, 'en', 'name', 'Iranian Light Source Facility'),
(138004, 108827, 'en', 'name', 'Business Research Unit'),
(138005, 108827, 'pt', 'name', 'Unidade de Investigação em Desenvolvimento Empresarial'),
(138006, 108828, 'no_lang_code', 'name', 'Ideias Frescas Design e MultimƩdia (Portugal)'),
(138007, 108829, 'ca', 'name', 'Departament d''Empresa i Treball'),
(138008, 108829, 'es', 'name', 'Departamento de Empresa y Conocimiento, Generalidad de CataluƱa'),
(138009, 108829, 'en', 'name', 'Ministry of Business and Knowledge, Government of Catalonia'),
(138010, 108830, 'de', 'name', 'Deutsches Zentrum für Neurodegenerative Erkrankungen'),
(138011, 108830, 'en', 'name', 'German Center for Neurodegenerative Diseases'),
(138012, 108831, 'en', 'name', 'Ocean First Institute'),
(138013, 108832, 'ca', 'name', 'Institut de Recerca i Tecnologia AgroalimentĆ ries'),
(138014, 108832, 'en', 'name', 'Institute of Agrifood Research and Technology'),
(138015, 108833, 'pt', 'name', 'Centro de Investigação em Educação'),
(138016, 108834, 'no_lang_code', 'name', 'Letras e Livros Livraria (Portugal)'),
(138017, 108835, 'no_lang_code', 'name', 'In-Uteis Design (Portugal)'),
(138018, 108836, 'no_lang_code', 'name', 'MinistƩrio das FinanƧas (Portugal)'),
(138019, 108837, 'es', 'name', 'CIATEQ'),
(138020, 108838, 'nl', 'name', 'Windesheim'),
(138021, 108838, 'en', 'name', 'Windesheim University of Applied Sciences'),
(138022, 108839, 'en', 'name', 'National Institute of Children’s Diseases'),
(138023, 108839, 'sk', 'name', 'NÔrodný ústav detských chorÓb'),
(138024, 108840, 'en', 'name', 'Land and Forest Iceland'),
(138025, 108840, 'is', 'name', 'Land og skógur'),
(138026, 108841, 'pt', 'name', 'Instituto para o Desenvolvimento AgrÔrio da Região Norte'),
(138027, 108842, 'en', 'name', 'Aqua Kompetanse AS (Norway)'),
(138028, 108843, 'en', 'name', 'Radiation Protection, Safety, Dismantling engineering'),
(138029, 108843, 'fr', 'name', 'ingénierie Radioprotection Sûreté Démantèlement'),
(138030, 108844, 'en', 'name', 'One Hundred Seventy-Ninth School'),
(138031, 108844, 'ru', 'name', 'Š“Š‘ŠžŠ£ "Школа ā„–179"'),
(138032, 108845, 'en', 'name', 'International House Coimbra - Olivais | Santa Clara'),
(138033, 108846, 'en', 'name', 'Group for Lasers and Plasmas'),
(138034, 108846, 'pt', 'name', 'Grupo de Lasers e Plasmas'),
(138035, 108847, 'fr', 'name', 'Laboratoire des Agroressources, BiomolĆ©cules et Chimie pour l’Innovation en SantĆ©'),
(138036, 108848, 'no_lang_code', 'name', 'Pmlopes Consultoria e Formação em Actividades Culturais Unipessoal (Portugal)'),
(138037, 108849, 'pt', 'name', 'Centro de Reabilitação de Paralisia Cerebral do Porto'),
(138038, 108850, 'fr', 'name', 'Psychiatrie-ComorbiditƩs-Addictions'),
(138039, 108851, 'pt', 'name', 'Escola Superior de Música e das Artes do EspectÔculo'),
(138040, 108852, 'en', 'name', 'Behavioral Science Research Institute, Inc.'),
(138041, 108853, 'en', 'name', 'International Research and Training Centre on Urban Drainage'),
(138042, 108854, 'en', 'name', 'Switzerland Innovation Park Biel/Bienne'),
(138043, 108855, 'es', 'name', 'Centro Universitario San Isidoro'),
(138044, 108856, 'pt', 'name', 'Fundação Montepio'),
(138045, 108857, 'no_lang_code', 'name', 'Relato LouvƔvel (Portugal)'),
(138046, 108858, 'no_lang_code', 'name', 'Livraria Buchholz (Portugal)'),
(138047, 108859, 'no_lang_code', 'name', 'Sinora SintƩticos Industriais (Portugal)'),
(138048, 108860, 'en', 'name', 'Hellenic Air Force Academy'),
(138049, 108860, 'el', 'name', 'Σχολη Ικαρων'),
(138050, 108861, 'af', 'name', 'Departement van Bosbou, Visserye en die Omgewing'),
(138051, 108861, 'en', 'name', 'Department of Forestry, Fisheries and the Environment'),
(138052, 108861, 'xh', 'name', 'ISebe lezamaHlathi, ezokuLoba noKusingqongileyo'),
(138053, 108861, 'no_lang_code', 'name', 'Kgoro ya Kagodikgwa, Boreadihlapi le Tikologo'),
(138054, 108861, 'tn', 'name', 'Lefapha la Dikgwa, Ditlhapi le Tikologo'),
(138055, 108861, 'st', 'name', 'Lefapha la Meru, Indasteri ya DitlhapiBotshwasi le Tikoloho'),
(138056, 108861, 'ss', 'name', 'Litiko Letemahlatsi, Tinhlanti Netemvelo'),
(138057, 108861, 've', 'name', 'Muhasho wa zwa Vhusima-maįø“aka, Vhurakhovhe na Mupo'),
(138058, 108861, 'ts', 'name', 'Ndzawulo ya Swihlahla, swa Tinhlampfi na Mbango'),
(138059, 108861, 'nr', 'name', 'OmNyango wezamaHlathi, iinHlambi neBhoduluko'),
(138060, 108861, 'zu', 'name', 'uMnyango Wezamahlathi, Ezokudoba Nezemvelo'),
(138061, 108862, 'en', 'name', 'Shiv Nadar University, Chennai'),
(138062, 108863, 'no', 'name', 'NĆøtterĆøy Kommune'),
(138063, 108864, 'no_lang_code', 'name', 'Grupo BETAR (Portugal)'),
(138064, 108865, 'pt', 'name', 'Fundação Ensino e Cultura Fernando Pessoa'),
(138065, 108866, 'pt', 'name', 'Ponteditora'),
(138066, 108867, 'en', 'name', 'Sigmund Freud Private University - Campus Milano'),
(138067, 108867, 'de', 'name', 'Sigmund Freud PrivatuniversitƤt - Standort Mailand'),
(138068, 108868, 'en', 'name', 'East Texas A&M University'),
(138069, 108869, 'no_lang_code', 'name', 'Montepio Geral-Associação Mutualista (Portugal)'),
(138070, 108870, 'de', 'name', 'Bayerische Akademie für Naturschutz und Landschaftspflege'),
(138071, 108871, 'ca', 'name', 'Institut de Política Econòmica i Governança'),
(138072, 108871, 'en', 'name', 'Institute of Political Economy and Governance'),
(138073, 108872, 'es', 'name', 'Hospital Juan Domingo Perón, Tartagal'),
(138074, 108873, 'fr', 'name', 'SURDI.AD : SurditƩs neurosensorielles complexes et rƩhabilitation de l''audition chez l''adulte'),
(138075, 108874, 'en', 'name', 'University of St.Gallen'),
(138076, 108874, 'it', 'name', 'UniversitĆ  di San Gallo'),
(138077, 108874, 'de', 'name', 'UniversitƤt St.Gallen'),
(138078, 108874, 'fr', 'name', 'UniversitƩ de Saint-Gall'),
(138079, 108875, 'no_lang_code', 'name', 'Cruz VilaƧa & Associados - Sociedade de Advogados SP RL (Portugal)'),
(138080, 108876, 'en', 'name', 'S2Innovation Sp. z o. o. [ltd.]'),
(138081, 108876, 'no_lang_code', 'name', 'S2Innovation Sp. z o. o. [ltd.] (Poland)'),
(138082, 108877, 'en', 'name', 'Maryland Quantum Materials Center'),
(138083, 108878, 'fr', 'name', 'Centre commun de recherche'),
(138084, 108878, 'de', 'name', 'Gemeinsame Forschungsstelle'),
(138085, 108878, 'en', 'name', 'Joint Research Center'),
(138086, 108879, 'en', 'name', 'University of Health Sciences Lahore'),
(138087, 108879, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŪŪŒŁ„ŲŖŚ¾ Ų³Ų§Ų¦ŪŒŁ†Ų³ Ł„Ų§ŪŁˆŲ±ā€Ž'),
(138088, 108880, 'fr', 'name', 'Institut droit Ʃthique patrimoine'),
(138089, 108881, 'en', 'name', 'CancerCare Manitoba'),
(138090, 108882, 'no_lang_code', 'name', 'Livraria Minho Ferreira e Salgado (Portugal)'),
(138091, 108883, 'pt', 'name', 'Centro de Estudos Interculturais'),
(138092, 108884, 'pt', 'name', 'Instituto PortuguĆŖs de Fotografia'),
(138093, 108885, 'no_lang_code', 'name', 'Laboratório Normal Produtos Farmacêuticos (Portugal)'),
(138094, 108886, 'pt', 'name', 'Centro de Investigação em Ciência Psicológica'),
(138095, 108886, 'en', 'name', 'Research Center for Psychological Science'),
(138096, 108887, 'no_lang_code', 'name', 'IQVIA (Portugal)'),
(138097, 108888, 'en', 'name', 'Regional Centre for Shared Aquifer Resources Management'),
(138098, 108889, 'en', 'name', 'Welsh Blood Service'),
(138099, 108890, 'en', 'name', 'IRELEC (FRANCE)'),
(138100, 108891, 'ca', 'name', 'Institut CatalĆ  de les Dones'),
(138101, 108892, 'no_lang_code', 'name', 'Insia Sistemas de Informação (Portugal)'),
(138102, 108893, 'en', 'name', 'Ministry of Health'),
(138103, 108894, 'no_lang_code', 'name', 'Nuclear Research and Consultancy Group'),
(138104, 108895, 'en', 'name', 'Institute of Scientific Research of Physical Education and Sport'),
(138105, 108895, 'uz', 'name', 'Jismoniy tarbiya va sport ilmiy tadqiqotlar instituti'),
(138106, 108896, 'pt', 'name', 'Santa Casa da Misericórdia de Fafe'),
(138107, 108897, 'en', 'name', 'Molecular Microbiology'),
(138108, 108898, 'en', 'name', 'Nebraska Medical Center'),
(138109, 108899, 'en', 'name', 'Guimaras State University'),
(138110, 108899, 'tl', 'name', 'Kolehiyong Estatal ng Guimaras'),
(138111, 108900, 'en', 'name', 'University of Africa Toru-Orua'),
(138112, 108901, 'fr', 'name', 'UniversitƩ des Antilles PƓle Martinique'),
(138113, 108902, 'en', 'name', 'University of Augsburg'),
(138114, 108902, 'de', 'name', 'UniversitƤt Augsburg'),
(138115, 108903, 'fr', 'name', 'Interactions Cellules souches-niches: physiologie, tumeurs et rƩparation tissulaire'),
(138116, 108904, 'en', 'name', 'Models of Malignant and Therapeutic Stem Cells'),
(138117, 108904, 'fr', 'name', 'Modèles de cellules souches malignes et thérapeutiques'),
(138118, 108905, 'pt', 'name', 'Instituto PortuguĆŖs do Ritmo CardĆ­aco'),
(138119, 108906, 'pt', 'name', 'Fundação Casa da Música'),
(138120, 108907, 'en', 'name', 'Center of Applied Economic Studies of the Atlantic'),
(138121, 108907, 'pt', 'name', 'Centro de Estudos de Economia Aplicada do Atlântico'),
(138122, 108908, 'en', 'name', 'Sadiya College'),
(138123, 108909, 'en', 'name', 'TCC International Centre for Innovation, Manufacturing, Technology Transfer and Entrepreneurship, KNUST, Kumasi'),
(138124, 108910, 'en', 'name', 'Pluto Educational Trust'),
(138125, 108911, 'en', 'name', 'Sigmund Freud Private University - Campus Berlin'),
(138126, 108911, 'de', 'name', 'Sigmund Freud PrivatuniversitƤt - Standort Berlin'),
(138127, 108912, 'kr', 'name', '(주)ė™ė‚Øģ˜ķ™”ķ•™ģ—°źµ¬ģ›ģ€'),
(138128, 108912, 'en', 'name', 'Southeast Medi-Chem Institute (South Korea)'),
(138129, 108913, 'fr', 'name', 'Laboratoire d''Analyse et de Prospective Economiques'),
(138130, 108914, 'no_lang_code', 'name', 'Mitsubishi Electric (Japan)'),
(138131, 108914, 'ja', 'name', 'äø‰č±é›»ę©Ÿ'),
(138132, 108915, 'en', 'name', 'State Key Laboratory for Spintronic Devices and Technologies'),
(138133, 108916, 'en', 'name', 'Arab Planning Institute'),
(138134, 108916, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ł„ŲŖŲ®Ų·ŁŠŲ·'),
(138135, 108917, 'en', 'name', 'Zanzibar Health Research Institute (ZAHRI)'),
(138136, 108918, 'es', 'name', 'Instituto de Investigación de Vivienda y HÔbitat'),
(138137, 108919, 'pt', 'name', 'Oficina de Transferência de Tecnologia Inovação e Conhecimento'),
(138138, 108920, 'en', 'name', 'IES-Social Business School'),
(138139, 108921, 'pt', 'name', 'Instituto do Cinema e do Audiovisual'),
(138140, 108922, 'pt', 'name', 'Instituto Pedro Nunes'),
(138141, 108923, 'en', 'name', 'Saratov State Vavilov Agrarian University'),
(138142, 108923, 'ru', 'name', 'Даратовский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(138143, 108924, 'en', 'name', 'Long An University of Economics and Industry'),
(138144, 108924, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ CĆ“ng nghiệp Long An'),
(138145, 108924, 'zh', 'name', 'éš†å®‰å·„ę„­ē¶“ęæŸå¤§å­ø'),
(138146, 108925, 'fr', 'name', 'Laboratoire d''Informatique de l''URCA'),
(138147, 108926, 'no_lang_code', 'name', 'Prizmakat (Portugal)'),
(138148, 108927, 'en', 'name', 'Junior Academy of Sciences'),
(138149, 108927, 'uk', 'name', 'Мала Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń наук України'),
(138150, 108928, 'en', 'name', 'South China Institute of Frontier Science (Guangdong)'),
(138151, 108929, 'fr', 'name', 'Centre de recherche sur le vieillissement'),
(138152, 108929, 'en', 'name', 'Research Centre on Aging'),
(138153, 108930, 'nl', 'name', 'Hogeschool voor de Kunsten Utrecht'),
(138154, 108930, 'en', 'name', 'University of the Arts Utrecht'),
(138155, 108931, 'en', 'name', 'Oli Health Magazine Organization'),
(138156, 108932, 'en', 'name', 'Admiralty University of Nigeria'),
(138157, 108933, 'es', 'name', 'Instituto de Investigaciones en Humanidades y Ciencias Sociales'),
(138158, 108934, 'pt', 'name', 'Centro de Sangue e da Transplantação de Lisboa Área Funcional do Sangue'),
(138159, 108935, 'en', 'name', 'oDocs Eye Care Research Institute (New Zealand)'),
(138160, 108936, 'en', 'name', 'National University of Tierra del Fuego'),
(138161, 108936, 'es', 'name', 'Universidad Nacional de Tierra del Fuego, AntƔrtida e Islas del AtlƔntico Sur'),
(138162, 108937, 'en', 'name', 'Central Agency for Public Mobilization & Statistics'),
(138163, 108937, 'ar', 'name', 'الجهاز Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ للتعبئة العامة ŁˆŲ§Ł„Ų„Ų­ŲµŲ§Ų”'),
(138164, 108938, 'fr', 'name', 'Nova : inNOvation in NeuroVAscular diseases'),
(138165, 108939, 'no_lang_code', 'name', 'Maia Dias - Consultório Médico (Portugal)'),
(138166, 108940, 'en', 'name', 'International University of Erbil'),
(138167, 108940, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ų±ŲØŁŠŁ„ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(138168, 108940, 'ku', 'name', 'Ų²Ų§Ł†ŁƒŪ†ŪŒ Ų¦Ł‡Ų±ŲØŪŒŁ„ŪŒ Ł†ŪŽŁˆŲÆŁ‡ŁˆŚµŁ‡ŲŖŪŒ'),
(138169, 108941, 'pt', 'name', 'Unimais'),
(138170, 108942, 'en', 'name', 'Andijan State Technical Institute'),
(138171, 108942, 'uz', 'name', 'Andijon davlat texnika insituti'),
(138172, 108942, 'ru', 'name', 'АнГижанского Š³Š¾ŃŃƒŠ“арственного технического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š°'),
(138173, 108943, 'fr', 'name', 'Ecole RĆ©gionale Postuniversitaire d’AmĆ©nagement et de Gestion intĆ©grĆ©s des ForĆŖts et Territoires tropicaux'),
(138174, 108943, 'en', 'name', 'Regional Post-Graduate Training School on Integrated Management of Tropical Forests and Lands'),
(138175, 108944, 'es', 'name', 'Centro de Producción e Investigación en Artes'),
(138176, 108945, 'de', 'name', 'res publica Wissenschaftsverlag (Germany)'),
(138177, 108946, 'en', 'name', 'NingboTech University'),
(138178, 108946, 'zh', 'name', '浙大宁波理巄学院'),
(138179, 108947, 'en', 'name', 'International Centre for Water Security and Sustainable Management'),
(138180, 108947, 'ko', 'name', 'ģœ ė„¤ģŠ¤ģ½” 물 ģ•ˆė³“ źµ­ģ œģ—°źµ¬źµģœ”ģ„¼ķ„°'),
(138181, 108948, 'no_lang_code', 'name', 'Grünenthal Group (Germany)'),
(138182, 108949, 'no_lang_code', 'name', 'National Instruments (United States)'),
(138183, 108950, 'en', 'name', 'Quezon City University'),
(138184, 108951, 'en', 'name', 'Centre for Research & Development in Mechanical Engineering'),
(138185, 108951, 'pt', 'name', 'Centro de Investigação e Desenvolvimento em Engenharia Mecânica'),
(138186, 108952, 'en', 'name', 'Lyceum of the Philippines University'),
(138187, 108953, 'pt', 'name', 'Fundação Spes'),
(138188, 108954, 'fr', 'name', 'Centre commun de recherche'),
(138189, 108954, 'it', 'name', 'Centro Comune di Ricerca'),
(138190, 108954, 'de', 'name', 'Gemeinsame Forschungsstelle'),
(138191, 108954, 'en', 'name', 'Joint Research Centre'),
(138192, 108955, 'en', 'name', 'ICAR-Directorate of Rapeseed-Mustard Research, Bharatpur'),
(138193, 108955, 'hi', 'name', 'ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ-ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą¤°ą¤øą„‹ą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(138194, 108956, 'en', 'name', 'Combined Military Hospital Kohat'),
(138195, 108956, 'ar', 'name', 'مؓترکہ فوجی ہسپتال کوہاٹ'),
(138196, 108957, 'en', 'name', 'Khamai Foundation'),
(138197, 108958, 'en', 'name', 'Amaltas University'),
(138198, 108959, 'en', 'name', 'Academy of Silesia'),
(138199, 108959, 'pl', 'name', 'Akademia Śląska'),
(138200, 108960, 'fr', 'name', 'UniversitƩ de Reims Champagne-Ardenne'),
(138201, 108961, 'no_lang_code', 'name', 'Livraria Lopes da Silva (Portugal)'),
(138202, 108962, 'pt', 'name', 'Centro Hospitalar Conde de Ferreira'),
(138203, 108963, 'pt', 'name', 'Centro de Fƭsica do Instituto PolitƩcnico de Lisboa'),
(138204, 108964, 'no_lang_code', 'name', 'HeartGenetics Genetics and Biotechnology (Portugal)'),
(138205, 108965, 'en', 'name', 'Gates Ventures'),
(138206, 108966, 'en', 'name', 'Japanese-French Laboratory for Informatics'),
(138207, 108966, 'ja', 'name', 'ę—„ä»ęƒ…å ±å­¦é€£ęŗē ”ē©¶ę‹ ē‚¹'),
(138208, 108967, 'es', 'name', 'Sociedad de Acueducto, Alcantarillado y Aseo de Barranquilla E.S.P.'),
(138209, 108967, 'no_lang_code', 'name', 'Sociedad de Acueducto, Alcantarillado y Aseo de Barranquilla E.S.P. (Colombia)'),
(138210, 108968, 'no_lang_code', 'name', 'Lusoterapia Sociedade Comercial de Produção Químico-Farmacêutica (Portugal)'),
(138211, 108969, 'en', 'name', 'Ajay Kumar Garg Engineering College'),
(138212, 108970, 'fr', 'name', 'SoLID : SOrbonne study group for Lung Infectious Diseases'),
(138213, 108971, 'en', 'name', 'Vivensa Foundation'),
(138214, 108972, 'pt', 'name', 'Sociedade Brasileira de Pediatria'),
(138215, 108973, 'pt', 'name', 'Infraestrutura de Investigação para as Ciências Sociais, artes e humanidades ROSSIO'),
(138216, 108974, 'pt', 'name', 'Centro de Investigação Prof Doutor Joaquim Veríssimo Serrão'),
(138217, 108975, 'en', 'name', 'National Research Centre'),
(138218, 108975, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł‚ŁˆŁ…ŁŠ Ł„Ł„ŲØŲ­ŁˆŲ«'),
(138219, 108976, 'pt', 'name', 'Gabinete de História Económica e Social'),
(138220, 108977, 'en', 'name', 'Academy of Technical and Art Applied Studies'),
(138221, 108977, 'sr', 'name', 'АкаГемија техничко-ŃƒŠ¼ŠµŃ‚Š½ŠøŃ‡ŠŗŠøŃ… ŃŃ‚Ń€ŃƒŠŗŠ¾Š²Š½ŠøŃ… ŃŃ‚ŃƒŠ“ŠøŃ˜Š°'),
(138222, 108978, 'pt', 'name', 'Instituto Superior TƩcnico'),
(138223, 108979, 'tr', 'name', 'Bulgar Bilimler Akademisi'),
(138224, 108979, 'en', 'name', 'Bulgarian Academy of Sciences'),
(138225, 108979, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ на Š½Š°ŃƒŠŗŠøŃ‚е'),
(138226, 108980, 'pt', 'name', 'Tech & Art Centro de Tecnologia Restauro e Valorização das Artes'),
(138227, 108981, 'en', 'name', 'D. G. Khan Medical College'),
(138228, 108982, 'pt', 'name', 'Instituto Superior de Estudos Interculturais e Transdisciplinares de Mirandela'),
(138229, 108983, 'en', 'name', 'State University of Intelligent Technologies and Telecommunications'),
(138230, 108983, 'uk', 'name', 'Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń–Š½Ń‚ŠµŠ»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½ŠøŃ… технологій і зв''ŃŠ·ŠŗŃƒ'),
(138231, 108984, 'pt', 'name', 'Centro de Estatƭstica e AplicaƧƵes'),
(138232, 108985, 'pt', 'name', 'Centro de Investigação em Saúde e Ambiente'),
(138233, 108986, 'en', 'name', 'EX Research Institute (Japan)'),
(138234, 108987, 'no_lang_code', 'name', 'Urƭa MenƩndez Abogados (Portugal)'),
(138235, 108988, 'en', 'name', 'Regional Education and Research Centre on Earthquake Risk Management and Resilience for West and Central Asia'),
(138236, 108989, 'fr', 'name', 'Centre d''Ʃtudes des politiques Ʃconomiques'),
(138237, 108990, 'en', 'name', 'University of Ajdabiya'),
(138238, 108990, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© اجدابيا'),
(138239, 108991, 'en', 'name', 'ICMR - National Institute of Immunohaemotology'),
(138240, 108991, 'hi', 'name', 'आय ą¤øą„€ ą¤ą¤® आर - ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¤ą¤æą¤°ą¤•ą„ą¤·ą¤¾ ą¤°ą„ą¤§ą¤æą¤° ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(138241, 108992, 'pt', 'name', 'Gabinete de Projetos e Inovação'),
(138242, 108993, 'pt', 'name', 'Centro de Investigação e Estudos de Sociologia'),
(138243, 108994, 'fr', 'name', 'Education et DiversitƩs en espaces Francophones'),
(138244, 108995, 'en', 'name', 'NHO Kinki Chuo Chest Medical Center'),
(138245, 108995, 'ja', 'name', 'NHOčæ‘ē•æäø­å¤®å‘¼åøå™Øć‚»ćƒ³ć‚æćƒ¼'),
(138246, 108996, 'pt', 'name', 'Centro Investigação Vasco da Gama'),
(138247, 108997, 'pt', 'name', 'Centro de Investigação em Ciências da Informação Tecnologias e Arquitetura'),
(138248, 108997, 'en', 'name', 'Information Sciences, Technologies and Architecture Research Centre'),
(138249, 108998, 'en', 'name', 'Fourth Institute of Oceanography'),
(138250, 108998, 'zh', 'name', 'č‡Ŗē„¶čµ„ęŗč‡Ŗē„¶čµ„ęŗéƒØē¬¬å››ęµ·ę“‹ē ”ē©¶ę‰€'),
(138251, 108999, 'fr', 'name', 'Institut Droit, Espaces et Technologies'),
(138252, 108999, 'en', 'name', 'Institute of Space and Telecommunications Law'),
(138253, 108999, 'es', 'name', 'Instituto de Derecho del Espacio y de las Telecomunicaciones'),
(138254, 109000, 'no_lang_code', 'name', 'Gedeon Richter (Portugal)'),
(138255, 109001, 'en', 'name', 'University of Kassel'),
(138256, 109001, 'de', 'name', 'UniversitƤt Kassel'),
(138257, 109002, 'pt', 'name', 'Galeria Municipal do Porto'),
(138258, 109003, 'en', 'name', 'ICTP - East Africa Institute for Fundamental Research'),
(138259, 109004, 'tl', 'name', 'Dalubhasaan ng Lungsod ng Lucena'),
(138260, 109005, 'tr', 'name', 'Ankara Dr. Abdurrahman Yurtaslan Oncology Training and Research Hospital'),
(138261, 109006, 'en', 'name', 'International House Viseu'),
(138262, 109007, 'en', 'name', 'Abu Dhabi School of Management'),
(138263, 109007, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© أبوظبي لل؄دارة'),
(138264, 109008, 'en', 'name', 'Adesh Medical College & Hospital'),
(138265, 109009, 'fr', 'name', 'Vieillissement, FragilitƩ, PrƩvention, e-SantƩ'),
(138266, 109010, 'en', 'name', 'Tech University of Korea'),
(138267, 109010, 'ko', 'name', 'ķ•œźµ­ź³µķ•™ėŒ€ķ•™źµ'),
(138268, 109011, 'en', 'name', 'National Academy of Culture and Arts Management'),
(138269, 109012, 'en', 'name', 'Central Police Hospital'),
(138270, 109012, 'bn', 'name', 'ą¦•ą§‡ą¦Øą§ą¦¦ą§ą¦°ą§€ą§Ÿ পুলিশ হাসপাতাল'),
(138271, 109013, 'pt', 'name', 'Centro de Investigação e Intervenção na Leitura'),
(138272, 109014, 'en', 'name', 'NSF NCAR Mesoscale & Microscale Meteorology Laboratory'),
(138273, 109015, 'en', 'name', 'Centre for Psychological Research and Social Intervention'),
(138274, 109015, 'pt', 'name', 'Centro de Investigação e Intervenção Social'),
(138275, 109016, 'en', 'name', 'Institute for Advanced Materials and Mathematics'),
(138276, 109016, 'es', 'name', 'Instituto de Materiales Avanzados y MatemƔticas'),
(138277, 109016, 'eu', 'name', 'Material Aurreratuetarako eta Matematikarako Institutua'),
(138278, 109017, 'en', 'name', 'University of Agriculture and Environmental Sciences, Umuagwo'),
(138279, 109018, 'en', 'name', 'Mata Gujri University'),
(138280, 109019, 'en', 'name', 'Public Works Research Institute'),
(138281, 109019, 'ja', 'name', 'åœŸęœØē ”ē©¶ę‰€'),
(138282, 109020, 'it', 'name', 'Aequitas Magazine Associazione culturale di Ricerca e Studi giuridici'),
(138283, 109021, 'en', 'name', 'Primate Expertise'),
(138284, 109022, 'no_lang_code', 'name', 'Gabinete de Advogados António Vilar e Associados (Portugal)'),
(138285, 109023, 'en', 'name', 'Renaissance Educational University'),
(138286, 109023, 'uz', 'name', 'Renessans ta’lim universiteti'),
(138287, 109023, 'ru', 'name', 'ŠžŠ±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ренессанс'),
(138288, 109024, 'es', 'name', 'El Colegio de la Frontera Norte'),
(138289, 109025, 'pt', 'name', 'Centro de Investigação em Modelação e Optimização de Sistemas Multifuncionais'),
(138290, 109026, 'en', 'name', 'Institute for Science Application in Agriculture'),
(138291, 109026, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠæŃ€ŠøŠ¼ŠµŠ½Ńƒ науке у пољопривреГи'),
(138292, 109027, 'no_lang_code', 'name', 'Generis FarmacĆŖutica (Portugal)'),
(138293, 109028, 'fr', 'name', 'Centre d''Economie de l''ENS Paris-Saclay'),
(138294, 109028, 'en', 'name', 'Centre for Economics at Paris-Saclay'),
(138295, 109029, 'pt', 'name', 'Centro de Estudos de Antropologia Social'),
(138296, 109030, 'no_lang_code', 'name', 'PƔgina Transparente Unipessoal (Portugal)'),
(138297, 109031, 'pt', 'name', 'CĆ¢mara Municipal de Lisboa'),
(138298, 109032, 'pt', 'name', 'Tribunal de JustiƧa do Estado de GoiƔs'),
(138299, 109033, 'en', 'name', 'Karshi State Technical University'),
(138300, 109034, 'pt', 'name', 'Grupo de Estudos de Cancro da CabeƧa e do PescoƧo'),
(138301, 109035, 'en', 'name', 'Bina Insan University'),
(138302, 109035, 'id', 'name', 'Universitas Bina Insan'),
(138303, 109036, 'en', 'name', 'International Biosecurity and Biosafety Initiative for Science'),
(138304, 109037, 'en', 'name', 'Biosphere Reserves Institute'),
(138305, 109038, 'en', 'name', 'St. Thomas College (Autonomous)'),
(138306, 109038, 'ml', 'name', 'ą“øąµ†ą“Øąµą“±ąµ ą“¤ąµ‹ą“®ą“øąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“¤ąµƒą“¶ąµ‚ąµ¼'),
(138307, 109039, 'pt', 'name', 'Instituto PolitƩcnico de Castelo Branco'),
(138308, 109039, 'en', 'name', 'Polytechnic Institute of Castelo Branco'),
(138309, 109040, 'fr', 'name', 'ƉcoCirta'),
(138310, 109041, 'pt', 'name', 'Centro de Estudos em Educação Tecnologia e Saúde'),
(138311, 109042, 'id', 'name', 'Universitas Sembilanbelas November Kolaka'),
(138312, 109043, 'en', 'name', 'International Centre on Global-Scale Geochemistry'),
(138313, 109043, 'zh', 'name', 'č”åˆå›½ę•™ē§‘ę–‡ē»„ē»‡å…Øēƒå°ŗåŗ¦åœ°ēƒåŒ–å­¦å›½é™…ē ”ē©¶äø­åæƒ'),
(138314, 109044, 'pt', 'name', 'Hospital Doutor João de Almada'),
(138315, 109045, 'no_lang_code', 'name', 'Yenepoya University'),
(138316, 109046, 'es', 'name', 'El Colegio de la Frontera Sur'),
(138317, 109047, 'pt', 'name', 'Instituto da Mobilidade e dos Transportes'),
(138318, 109048, 'es', 'name', 'Agencia Nacional de Empleo'),
(138319, 109049, 'es', 'name', 'Fundación Biosfera'),
(138320, 109050, 'en', 'name', 'Federal College of Medical Laboratory Science and Technology'),
(138321, 109051, 'en', 'name', 'Regional Centre for Integrated River Basin Management'),
(138322, 109052, 'en', 'name', 'National Blood Service Ghana'),
(138323, 109053, 'en', 'name', 'FiberCop (Italy)'),
(138324, 109054, 'pt', 'name', 'Gabinete de EstratƩgia e Estudos'),
(138325, 109055, 'en', 'name', 'Summit University, Offa'),
(138326, 109056, 'en', 'name', 'Holetta Agricultural Research Center'),
(138327, 109056, 'am', 'name', 'į‹Øįˆ†įˆˆį‰³ įŒį‰„įˆ­įŠ“ įˆįˆ­įˆįˆ­ įˆ›į‹•įŠØįˆ'),
(138328, 109057, 'en', 'name', 'Manav Rachna University'),
(138329, 109058, 'no_lang_code', 'name', 'Momento MƩdico Editora de PublicaƧƵes (Portugal)'),
(138330, 109059, 'en', 'name', 'Astera Institute'),
(138331, 109060, 'pt', 'name', 'Centro de Oceanografia'),
(138332, 109061, 'en', 'name', 'Kazakhstan Institute for Strategic Studies under the President of the Republic of Kazakhstan'),
(138333, 109061, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Ń– жанынГағы ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½Š½Ń‹Ņ£ ŃŃ‚Ń€Š°Ń‚ŠµŠ³ŠøŃŠ»Ń‹Ņ› Š·ŠµŃ€Ń‚Ń‚ŠµŃƒŠ»ŠµŃ€ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(138334, 109062, 'en', 'name', 'State Scientific and Technical Center for Nuclear and Radiation Safety'),
(138335, 109062, 'uk', 'name', 'Державний науково-технічний центр Š· ŃŠ“ŠµŃ€Š½Š¾Ń— та раГіаційної безпеки'),
(138336, 109063, 'en', 'name', 'TU Delft OPEN Publishing'),
(138337, 109064, 'pt', 'name', 'InnovPlantProtect'),
(138338, 109065, 'de', 'name', 'Berufsgenossenschaftliche Unfallklinik Ludwigshafen'),
(138339, 109066, 'no_lang_code', 'name', 'Prosport - Rocha, Moreira, Pinto & Soares (Portugal)'),
(138340, 109067, 'no_lang_code', 'name', 'Clever Advertising (Portugal)'),
(138341, 109068, 'en', 'name', 'International House Braga'),
(138342, 109069, 'en', 'name', 'GenomePT'),
(138343, 109070, 'en', 'name', 'Mata Gujri Memorial Medical College & Lions Seva Kendra Hospital'),
(138344, 109071, 'en', 'name', 'Software Heritage'),
(138345, 109072, 'fr', 'name', 'Laboratoire interdisciplinaire de recherches en sciences de l''action'),
(138346, 109073, 'en', 'name', 'Ibn-e-Sina University'),
(138347, 109074, 'pt', 'name', 'Bibliotecas do Instituto PolitƩcnico de Castelo Branco'),
(138348, 109075, 'en', 'name', 'Kwame Nkrumah University of Science and Technology'),
(138349, 109076, 'en', 'name', 'Sigmund Freud Private University - Campus Ljubljana'),
(138350, 109076, 'de', 'name', 'Sigmund Freud PrivatuniversitƤt - Standort Ljubljana'),
(138351, 109077, 'en', 'name', 'Agrolabo S.p.A.'),
(138352, 109078, 'en', 'name', 'Genomics, Bioinformatics, and Molecular Chemistry'),
(138353, 109078, 'fr', 'name', 'GƩnomique, bioinformatique et chimie molƩculaire'),
(138354, 109079, 'no_lang_code', 'name', 'Starmark (United States)'),
(138355, 109080, 'pt', 'name', 'Editora Mundos Sociais'),
(138356, 109081, 'pt', 'name', 'Instituto PortuguĆŖs de Psicologia e Outras CiĆŖncias'),
(138357, 109082, 'en', 'name', 'National Supercomputing Center in Chengdu'),
(138358, 109082, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—ęˆéƒ½äø­åæƒ'),
(138359, 109083, 'en', 'name', 'National University of Avellaneda'),
(138360, 109083, 'es', 'name', 'Universidad Nacional de Avellaneda'),
(138361, 109084, 'en', 'name', 'Associate Laboratory for Sustainability and Technology in Mountain Regions'),
(138362, 109084, 'pt', 'name', 'Laboratório Associado para a Sustentabilidade e Tecnologia em Regiões do Interior'),
(138363, 109085, 'pt', 'name', 'Hospital da Prelada'),
(138364, 109086, 'id', 'name', 'STAI Al-Anwar Sarang Rembang'),
(138365, 109087, 'no_lang_code', 'name', 'The Super Coder Code Academy (Portugal)'),
(138366, 109088, 'en', 'name', 'National Supercomputing Center In Zhengzhou'),
(138367, 109088, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—éƒ‘å·žäø­åæƒ'),
(138368, 109089, 'en', 'name', 'Sigmund Freud Private University - Campus Paris'),
(138369, 109089, 'de', 'name', 'Sigmund Freud PrivatuniversitƤt - Standort Paris'),
(138370, 109090, 'pt', 'name', 'Centro da Mulher'),
(138371, 109091, 'fr', 'name', 'Agence Spatiale AlgƩrienne'),
(138372, 109091, 'en', 'name', 'Algerian Space Agency'),
(138373, 109091, 'ar', 'name', 'Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁŲ¶Ų§Ų¦ŁŠŲ© Ų§Ł„Ų¬Ų²Ų§Ų¦Ų±ŁŠŲ©'),
(138374, 109092, 'en', 'name', 'KwaZulu-Natal Department of Community Safety & Liaison'),
(138375, 109093, 'en', 'name', 'Brightwood College'),
(138376, 109094, 'en', 'name', 'Brightwood College'),
(138377, 109095, 'pt', 'name', 'Centro de Investigação Interdisciplinar em Saúde'),
(138378, 109096, 'no_lang_code', 'name', 'Centro de HemodiƔlise (Portugal)'),
(138379, 109097, 'en', 'name', 'Conservancy of Southwest Florida'),
(138380, 109098, 'es', 'name', 'Escuela Normal Fronteriza Tijuana'),
(138381, 109099, 'de', 'name', 'Deutschen Konsortium für Translationale Krebsforschung'),
(138382, 109099, 'en', 'name', 'German Cancer Consortium'),
(138383, 109100, 'en', 'name', 'TƔbor Zoo'),
(138384, 109100, 'cs', 'name', 'ZOO TƔbor'),
(138385, 109101, 'fr', 'name', 'HTAM2 : Hypertension Maligne Multimodale'),
(138386, 109102, 'es', 'name', 'Fundación GESICA'),
(138387, 109103, 'pt', 'name', 'Centro de Investigação Desenvolvimento e Inovação da Academia Militar'),
(138388, 109104, 'en', 'name', 'University of Ɖvry Val d''Essonne'),
(138389, 109104, 'fr', 'name', 'UniversitĆ© d''Ɖvry Val-d''Essonne'),
(138390, 109105, 'en', 'name', 'Research Center for Industrial Problems of Development of the National Academy of Sciences of Ukraine'),
(138391, 109105, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний центр Ń–Š½Š“ŃƒŃŃ‚Ń€Ń–Š°Š»ŃŒŠ½ŠøŃ… проблем Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(138392, 109106, 'en', 'name', 'Water for Sustainable Development and Adaptation to Climate Change Centre'),
(138393, 109107, 'no_lang_code', 'name', 'X2 Science Solutions (Portugal)'),
(138394, 109108, 'fr', 'name', 'Inter RhƓne'),
(138395, 109109, 'en', 'name', 'Information Processing and Telecommunications Center'),
(138396, 109110, 'en', 'name', 'Masinde Muliro University of Science and Technology'),
(138397, 109111, 'en', 'name', 'Mitsubishi Electric (China) Corporation (China)'),
(138398, 109111, 'zh', 'name', 'äø‰č±ē”µęœŗļ¼ˆäø­å›½ļ¼‰å®˜ę–¹ē½‘ē«™'),
(138399, 109112, 'en', 'name', 'International Knowledge Centre for Engineering Sciences and Technology'),
(138400, 109112, 'zh', 'name', 'å›½é™…å·„ēØ‹ē§‘ęŠ€ēŸ„čÆ†äø­åæƒ'),
(138401, 109113, 'en', 'name', 'Govt. Sundarban Adarsha College, Khulna'),
(138402, 109113, 'bn', 'name', 'সরকারি ą¦øą§ą¦Øą§ą¦¦ą¦°ą¦¬ą¦Ø ą¦†ą¦¦ą¦°ą§ą¦¶ ą¦•ą¦²ą§‡ą¦œ, খুলনা'),
(138403, 109114, 'az', 'name', 'Arxeologiya və Antropologiya İnstitutu'),
(138404, 109114, 'en', 'name', 'Institute of Archaeology and Anthropology'),
(138405, 109115, 'no_lang_code', 'name', 'PSPC Vida Activa e Ambiente (Portugal)'),
(138406, 109116, 'en', 'name', 'Institute of Aviation Engineering & Technology'),
(138407, 109117, 'en', 'name', 'Mahatma Gandhi Ayurved College Hospital and Research Centre'),
(138408, 109118, 'pt', 'name', 'Centro de Investigação em InformÔtica e Comunicações'),
(138409, 109118, 'en', 'name', 'Computer Science and Communication Research Centre'),
(138410, 109119, 'pt', 'name', 'Instituto de Plasmas e Fusão Nuclear'),
(138411, 109120, 'no_lang_code', 'name', 'Noah ComƩrcio de MobiliƔrio (Portugal)'),
(138412, 109121, 'no', 'name', 'FƦrder Kommune'),
(138413, 109122, 'pt', 'name', 'MinistƩrio do Trabalho Solidariedade e SeguranƧa Social'),
(138414, 109123, 'no_lang_code', 'name', 'Emerson (United States)'),
(138415, 109124, 'en', 'name', 'Liaoning Institute of Science and Technology'),
(138416, 109124, 'zh', 'name', 'č¾½å®ē§‘ęŠ€å­¦é™¢'),
(138417, 109125, 'en', 'name', 'United States Air Force Logistics Command'),
(138418, 109126, 'it', 'name', 'Centro Internazionale di Fisica Teorica Abdus Salam'),
(138419, 109126, 'sl', 'name', 'Mednarodno srediŔče Abdusa Salama za teoretično fiziko'),
(138420, 109126, 'en', 'name', 'The Abdus Salam International Centre for Theoretical Physics (ICTP)'),
(138421, 109127, 'pt', 'name', 'Centro UniversitÔrio do Rio São Francisco'),
(138422, 109128, 'en', 'name', 'Shree Somnath Sanskrit University'),
(138423, 109129, 'en', 'name', 'United States Air Force Systems Command'),
(138424, 109130, 'pt', 'name', 'Fundação da Casa de Mateus'),
(138425, 109131, 'pt', 'name', 'Hospital da Mulher SĆ£o Paulo'),
(138426, 109132, 'pt', 'name', 'Fundação Nossa Senhora do Bom Sucesso'),
(138427, 109133, 'fr', 'name', 'Signalisation, radiobiologie et cancer'),
(138428, 109134, 'fr', 'name', 'Institut Universitaire de Technologie de Dijon/Auxerre'),
(138429, 109135, 'es', 'name', 'Centro de Investigación y Asistencia en Tecnología y Diseño del Estado de Jalisco'),
(138430, 109136, 'fr', 'name', 'GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de DonnƩes'),
(138431, 109137, 'en', 'name', 'National University of Córdoba'),
(138432, 109137, 'es', 'name', 'Universidad Nacional de Córdoba'),
(138433, 109137, 'pt', 'name', 'Universidade Nacional de Córdoba'),
(138434, 109137, 'it', 'name', 'Università Nazionale di Córdoba'),
(138435, 109137, 'fr', 'name', 'Université nationale de córdoba'),
(138436, 109138, 'no_lang_code', 'name', 'Intellegibilis (Portugal)'),
(138437, 109139, 'es', 'name', 'Sanatorio Adventista del Plata'),
(138438, 109140, 'es', 'name', 'Centro de Estudios del Habitar Popular'),
(138439, 109141, 'no_lang_code', 'name', 'Sociedade de Gestão de Projectos Internacionais (Portugal)'),
(138440, 109142, 'de', 'name', 'Büro für Angewandte Hydrologie (Germany)'),
(138441, 109143, 'en', 'name', 'Virtual Vehicle Research GmbH'),
(138442, 109143, 'no_lang_code', 'name', 'Virtual Vehicle Research GmbH (Austria)'),
(138443, 109144, 'en', 'name', 'Carl Remigius Medical School'),
(138444, 109145, 'pt', 'name', 'Escola Superior de Actividades ImobiliƔrias'),
(138445, 109146, 'no_lang_code', 'name', 'Instituto Eletrotécnico Português (Portugal)'),
(138446, 109147, 'pt', 'name', 'Instituto Brasileiro de CiĆŖncias Criminais'),
(138447, 109148, 'en', 'name', 'U.S. Air Force Materiel Command'),
(138448, 109149, 'de', 'name', 'PH NMS Bern'),
(138449, 109149, 'en', 'name', 'University of Teacher Education NMS Bern'),
(138450, 109150, 'en', 'name', 'Stellantis Canada'),
(138451, 109150, 'no_lang_code', 'name', 'Stellantis Canada (Canada)'),
(138452, 109151, 'ga', 'name', 'MĆŗsaeim NĆ”isiĆŗnta TƉ'),
(138453, 109151, 'en', 'name', 'National Museums NI'),
(138454, 109152, 'en', 'name', 'Wannan Medical College'),
(138455, 109152, 'zh', 'name', 'ēš–å—åŒ»å­¦é™¢'),
(138456, 109153, 'en', 'name', 'E&Q Engineering'),
(138457, 109153, 'no_lang_code', 'name', 'E&Q Engineering (Spain)'),
(138458, 109154, 'en', 'name', 'STLab s.r.l.'),
(138459, 109154, 'no_lang_code', 'name', 'STLab s.r.l. (Italy)'),
(138460, 109155, 'en', 'name', 'European International State School "Altiero Spinelli"'),
(138461, 109155, 'it', 'name', 'Scuola Internazionale Europea Statale "Altiero Spinelli"'),
(138462, 109156, 'en', 'name', 'International Centre for Biotechnology'),
(138463, 109157, 'no_lang_code', 'name', 'SIBS Partners in Payments (Portugal)'),
(138464, 109158, 'no_lang_code', 'name', 'Qualityplant Investigação e Produção em Biotecnologia Vegetal (Portugal)'),
(138465, 109159, 'en', 'name', 'International Centre for Engineering Education'),
(138466, 109159, 'zh', 'name', 'ęœŖę„ē§‘ęŠ€ę•™č‚²åŸŗåœ°'),
(138467, 109160, 'no_lang_code', 'name', 'LivaNova (United Kingdom)'),
(138468, 109161, 'en', 'name', 'SHI Accelerator Service Ltd.'),
(138469, 109161, 'no_lang_code', 'name', 'SHI Accelerator Service Ltd. (Japan)'),
(138470, 109161, 'ja', 'name', 'ä½é‡åŠ é€Ÿå™Øć‚µćƒ¼ćƒ“ć‚¹ę Ŗå¼ä¼šē¤¾'),
(138471, 109162, 'ca', 'name', 'Departament d''Economia i Hisenda de la Generalitat de Catalunya'),
(138472, 109162, 'es', 'name', 'Departamento de EconomĆ­a y Hacienda'),
(138473, 109163, 'en', 'name', 'Homs University'),
(138474, 109163, 'ar', 'name', 'Ų¬ŁŽŲ§Ł…ŁŲ¹ŁŽŲ© حِمْص'),
(138475, 109164, 'ca', 'name', 'Agencia per a la Competitivit de l''Empresa'),
(138476, 109165, 'no_lang_code', 'name', 'Velvet Smile (Portugal)'),
(138477, 109166, 'en', 'name', 'Australian Museum'),
(138478, 109167, 'en', 'name', 'Osaka International Cancer Institute'),
(138479, 109167, 'ja', 'name', 'å¤§é˜Ŗå›½éš›ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(138480, 109168, 'fr', 'name', 'Aspects métaboliques et systémiques de l''oncogénèse pour de nouvelles approches thérapeutiques'),
(138481, 109168, 'en', 'name', 'Metabolic and systemic aspects of oncogenesis for new therapeutic approaches'),
(138482, 109169, 'en', 'name', 'KAT General Hospital of Attica'),
(138483, 109169, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Αττικής ĪšĪ‘Ī¤'),
(138484, 109170, 'id', 'name', 'Universitas Widya Gama Malang'),
(138485, 109171, 'en', 'name', 'Jawahar Medical Foundation''s Annasaheb Chudaman Patil Memorial Medical College & Hospital'),
(138486, 109172, 'en', 'name', 'Geo (Denmark)'),
(138487, 109173, 'fr', 'name', 'Espaces Humains et Interactions Culturelles'),
(138488, 109174, 'pt', 'name', 'Incubadora D. Dinis Associação para a Promoção do Empreendedorismo Inovação e Novas Tecnologias'),
(138489, 109175, 'no_lang_code', 'name', 'Moreirense Futebol Clube (Portugal)'),
(138490, 109176, 'pt', 'name', 'Bibliotecas da Universidade do Porto'),
(138491, 109177, 'fr', 'name', 'Eau Environnement Limoges'),
(138492, 109178, 'en', 'name', 'Takeda'),
(138493, 109178, 'no_lang_code', 'name', 'Takeda (Japan)'),
(138494, 109178, 'ja', 'name', '武田薬品巄愭'),
(138495, 109179, 'pt', 'name', 'Fundação Energias de Portugal'),
(138496, 109180, 'no_lang_code', 'name', 'Hidrosoph (Portugal)'),
(138497, 109181, 'no_lang_code', 'name', 'GfK Portugal Marketing Services (Portugal)'),
(138498, 109182, 'pt', 'name', 'Instituto Design Guimarães'),
(138499, 109183, 'pt', 'name', 'Centro de Negócios e Inovação de Rio Maior'),
(138500, 109184, 'en', 'name', 'President Joseph Kasa-Vubu University'),
(138501, 109184, 'fr', 'name', 'UniversitƩ PrƩsident Joseph Kasa-Vubu'),
(138502, 109185, 'pt', 'name', 'Centro de Investigação em Psicologia'),
(138503, 109186, 'pt', 'name', 'Centro de Estudo do Movimento e Atividade Humana'),
(138504, 109187, 'no_lang_code', 'name', 'Livraria de JosƩ Alves (Portugal)'),
(138505, 109188, 'en', 'name', 'The Brain Institute of America (United States)'),
(138506, 109189, 'no_lang_code', 'name', 'Piscicultura do Vale da Lama (Portugal)'),
(138507, 109190, 'pt', 'name', 'Procuradoria-Geral da Fazenda Nacional'),
(138508, 109191, 'en', 'name', 'Federal Medical Centre Abuja'),
(138509, 109192, 'en', 'name', 'Case Western Reserve University'),
(138510, 109193, 'pt', 'name', 'Grupo de Reação e AnÔlises Químicas'),
(138511, 109194, 'en', 'name', 'University Corporation for Atmospheric Research'),
(138512, 109195, 'en', 'name', 'Bio Suisse'),
(138513, 109196, 'pt', 'name', 'Hospital Distrital Pombal'),
(138514, 109197, 'en', 'name', 'SenSiC GmbH'),
(138515, 109197, 'no_lang_code', 'name', 'SenSiC GmbH (Switzerland)'),
(138516, 109198, 'de', 'name', 'KinderKunstLabor für zeitgenössische Kunst'),
(138517, 109199, 'pt', 'name', 'Santa Casa da Misericórdia de Lisboa'),
(138518, 109200, 'ca', 'name', 'Centre d’Estudis Superiors de l’Aviació'),
(138519, 109201, 'en', 'name', 'University of Constantine 3'),
(138520, 109201, 'fr', 'name', 'UniversitƩ de Constantine 3'),
(138521, 109201, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‚Ų³Ł†ŲøŁŠŁ†Ų© 3'),
(138522, 109202, 'es', 'name', 'Fundación Pablo CasarÔ'),
(138523, 109203, 'en', 'name', 'T.K. Zhurgenov Kazakh National Academy of Arts'),
(138524, 109203, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š² имени Темирбека Жүргенова'),
(138525, 109203, 'kk', 'name', 'Š¢.Қ. Жүргенов атынГағы ŅšŠ°Š·Š°Ņ› ұлттық өнер Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(138526, 109204, 'nl', 'name', 'Koninklijk Conservatorium'),
(138527, 109204, 'en', 'name', 'Royal Conservatory The Hague'),
(138528, 109205, 'en', 'name', 'European Spallation Source'),
(138529, 109206, 'en', 'name', 'Hama University'),
(138530, 109206, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų­Ł…Ų§Ų©'),
(138531, 109207, 'fr', 'name', 'Lipides: systĆØmes analytiques et biologiques'),
(138532, 109208, 'en', 'name', 'Union of Concerned Scientists');
INSERT INTO `ror_settings` VALUES
(138533, 109209, 'pt', 'name', 'Hospital Bernardino Lopes de Oliveira AlcobaƧa'),
(138534, 109210, 'en', 'name', 'Federal University Gashua'),
(138535, 109211, 'pt', 'name', 'Instituto PolitƩcnico de Leiria'),
(138536, 109211, 'en', 'name', 'Polytechnic Institute of Leiria'),
(138537, 109212, 'pt', 'name', 'Centro de LĆ­nguas Literaturas e Culturas'),
(138538, 109213, 'it', 'name', 'Azienda Ospedale - UniversitĆ  Padova'),
(138539, 109214, 'id', 'name', 'Yayasan Penelitian Dan Pengembangan Obstetri Indonesia'),
(138540, 109215, 'es', 'name', 'Universidad Adventista del Plata'),
(138541, 109216, 'fr', 'name', 'Institut Biomédical du Val de Bièvre'),
(138542, 109217, 'pt', 'name', 'Instituto PolitƩcnico de Lisboa'),
(138543, 109217, 'en', 'name', 'Polytechnical Institute of Lisbon'),
(138544, 109218, 'en', 'name', 'Higher Normal School of Bou Saada'),
(138545, 109218, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Bou Saada'),
(138546, 109218, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ببوسعادة'),
(138547, 109219, 'en', 'name', 'ETC Group - Action Group on Erosion, Technology and Concentration'),
(138548, 109220, 'pt', 'name', 'Hospital LusĆ­adas Porto'),
(138549, 109221, 'pt', 'name', 'Fundação Museu do Douro'),
(138550, 109222, 'en', 'name', 'International Research Centre on Karst'),
(138551, 109222, 'zh', 'name', 'č”åˆå›½ę•™ē§‘ę–‡ē»„ē»‡å›½é™…å²©ęŗ¶ē ”ē©¶äø­åæƒ'),
(138552, 109223, 'en', 'name', 'AnamĆŖ Health Design'),
(138553, 109223, 'no_lang_code', 'name', 'AnamĆŖ Health Design (Brazil)'),
(138554, 109224, 'pt', 'name', 'Centro de FĆ­sica das Universidades do Minho e do Porto'),
(138555, 109225, 'en', 'name', 'One Earth'),
(138556, 109226, 'pt', 'name', 'Fundação Professor Ernesto Morais'),
(138557, 109227, 'pt', 'name', 'Centro de Estudos sobre a Mudança Socioeconómica e o Território'),
(138558, 109228, 'en', 'name', 'International Research and Training Centre on Erosion and Sedimentation'),
(138559, 109228, 'zh', 'name', 'å›½é™…ę³„ę²™ē ”ē©¶åŸ¹č®­äø­åæƒäø»åŠž'),
(138560, 109229, 'hr', 'name', 'Evanđeosko teoloÅ”ko veleučiliÅ”te'),
(138561, 109230, 'es', 'name', 'Centro de Innovación Aplicada en Tecnologías Competitivas'),
(138562, 109231, 'en', 'name', 'Center for Direct Scientific Communication'),
(138563, 109231, 'fr', 'name', 'Centre pour la Communication Scientifique Directe'),
(138564, 109231, 'es', 'name', 'Centro para la Comunicación Científica Directa'),
(138565, 109232, 'en', 'name', 'ZaoZhuang Vocational College of Science and Technology'),
(138566, 109232, 'zh', 'name', 'ęž£åŗ„ē§‘ęŠ€čŒäøšå­¦é™¢'),
(138567, 109233, 'no_lang_code', 'name', 'Linguaterra School of English (Portugal)'),
(138568, 109234, 'fr', 'name', 'Laboratoire de l''Informatique du ParallƩlisme'),
(138569, 109235, 'pt', 'name', 'Grupo de Estudos de Ordenamento do Território e Ambiente'),
(138570, 109236, 'en', 'name', 'Center for Interdisciplinary Research'),
(138571, 109236, 'pt', 'name', 'Centro de Investigação Interdisciplinar Egas Moniz'),
(138572, 109237, 'en', 'name', 'Sigmund Freud Private University - Campus Linz'),
(138573, 109237, 'de', 'name', 'Sigmund Freud PrivatuniversitƤt - Standort Linz'),
(138574, 109238, 'en', 'name', 'ArtEZ University of the Arts'),
(138575, 109239, 'pt', 'name', 'Escola de Sociologia e PolĆ­ticas PĆŗblicas'),
(138576, 109240, 'ca', 'name', 'Departament d''Educació'),
(138577, 109240, 'es', 'name', 'Departamento de Edicación'),
(138578, 109241, 'no_lang_code', 'name', 'Mercator Ocean (France)'),
(138579, 109242, 'en', 'name', 'Institute of Water Problems and Land Reclamation'),
(138580, 109242, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГних проблем і меліорації ŠŠŠŠ'),
(138581, 109243, 'no_lang_code', 'name', 'LivaNova (Portugal)'),
(138582, 109244, 'en', 'name', 'NOVA SBE Venture Lab'),
(138583, 109245, 'no_lang_code', 'name', 'Grupo Urbanos (Portugal)'),
(138584, 109246, 'en', 'name', 'Mongolian National Institute of Physical Education'),
(138585, 109246, 'mn', 'name', 'Š£Š½Š“ŃŃŠ½ŠøŠ¹ Биеийн Тамирын Š”ŃŃŠ“ Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(138586, 109247, 'pt', 'name', 'Centro de Investigação do Instituto Português de Oncologia do Porto Francisco Gentil'),
(138587, 109248, 'fr', 'name', 'ContrĆ“le de l’Activation cellulaire, Progression Tumorale et RĆ©sistance thĆ©rapeutique'),
(138588, 109249, 'no_lang_code', 'name', 'Nanopower (Portugal)'),
(138589, 109250, 'en', 'name', 'International Association for Development of the Information Society'),
(138590, 109251, 'no_lang_code', 'name', 'Grupo Azevedos (Portugal)'),
(138591, 109252, 'en', 'name', 'International House Torres Vedras | Lisbon'),
(138592, 109253, 'es', 'name', 'Instituto Superior Tecnológico Consulting Group Ecuador-Esculapio'),
(138593, 109254, 'en', 'name', 'BG Hospitals'),
(138594, 109254, 'de', 'name', 'BG Kliniken'),
(138595, 109255, 'en', 'name', 'Clausthal University of Technology'),
(138596, 109255, 'de', 'name', 'Technische UniversitƤt Clausthal'),
(138597, 109256, 'no', 'name', 'HĆøgskulen for GrĆøn Utvikling'),
(138598, 109256, 'en', 'name', 'Norwegian University College of Green Development'),
(138599, 109257, 'pt', 'name', 'Instituto de Investigação Desenvolvimento e Estudos Avançados'),
(138600, 109258, 'en', 'name', 'NOVAMath Center for Mathematics and Applications'),
(138601, 109259, 'nl', 'name', 'Hogeschool iPabo'),
(138602, 109260, 'en', 'name', 'NSF NCAR High Altitude Observatory'),
(138603, 109261, 'pt', 'name', 'MaiĆŖutica Cooperativa de Ensino Superior'),
(138604, 109262, 'en', 'name', 'One Health Toxicology Research Unit'),
(138605, 109262, 'pt', 'name', 'Unidade de Investigação em Toxicologia & Uma Só Saúde'),
(138606, 109263, 'es', 'name', 'Centro Medico Nacional - Hospital Nacional'),
(138607, 109264, 'es', 'name', 'Instituto Superior Tecnológico Edupraxis'),
(138608, 109265, 'no_lang_code', 'name', 'Kupu'),
(138609, 109266, 'pt', 'name', 'Instituto UniversitƔrio JustiƧa e Paz'),
(138610, 109267, 'en', 'name', 'UNAVCO'),
(138611, 109268, 'en', 'name', 'Institute of Applied Physics'),
(138612, 109269, 'pt', 'name', 'Embaixada do PanamĆ” em Portugal'),
(138613, 109270, 'en', 'name', 'Seychelles Public Health Authority'),
(138614, 109271, 'en', 'name', 'Hellenic Air Force'),
(138615, 109271, 'el', 'name', 'Πολεμική Αεροπορία'),
(138616, 109272, 'en', 'name', 'Tekirdağ Namık Kemal University'),
(138617, 109272, 'tr', 'name', 'Teki̇rdağ Namik Kemal Üni̇versi̇tesi̇'),
(138618, 109273, 'no_lang_code', 'name', 'Sociedade Independente para o Desenvolvimento do Ensino Superior (Portugal)'),
(138619, 109274, 'en', 'name', 'International Society of City and Regional Planners'),
(138620, 109275, 'en', 'name', 'Philippine Nurses Association of America'),
(138621, 109276, 'en', 'name', 'Meteorological Service of Catalonia'),
(138622, 109276, 'ca', 'name', 'Servei Meteorològic de Catalunya'),
(138623, 109277, 'nl', 'name', 'GGD Amsterdam'),
(138624, 109277, 'en', 'name', 'Public Health Service of Amsterdam'),
(138625, 109278, 'fr', 'name', 'Œuvre Nationale de Secours Grande-Duchesse Charlotte'),
(138626, 109279, 'en', 'name', 'Chang Guang Satellite Technology Co., Ltd.'),
(138627, 109279, 'zh', 'name', 'é•æå…‰å«ę˜ŸęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(138628, 109280, 'pt', 'name', 'Centro de Ecologia Aplicada Prof Baeta Neves'),
(138629, 109281, 'en', 'name', 'Walter AG (Germany)'),
(138630, 109282, 'de', 'name', 'Krankenhaus SĆønderjylland'),
(138631, 109282, 'da', 'name', 'Sygehus SĆønderjylland'),
(138632, 109282, 'en', 'name', 'University Hospital of Southern Denmark, Hospital Sonderjylland'),
(138633, 109283, 'en', 'name', 'Cal Poly Humboldt'),
(138634, 109284, 'pt', 'name', 'Inspeção-Geral da Administração Interna'),
(138635, 109285, 'en', 'name', 'European Holocaust Research Infrastructure'),
(138636, 109286, 'no_lang_code', 'name', 'Grupo RAR (Portugal)'),
(138637, 109287, 'no_lang_code', 'name', 'InterContinental Lisboa (Portugal)'),
(138638, 109288, 'fr', 'name', 'Centre d''excellence en microscience'),
(138639, 109288, 'en', 'name', 'Centre of Excellence in Microscience'),
(138640, 109289, 'en', 'name', 'National Hospital Organization'),
(138641, 109289, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹'),
(138642, 109290, 'no_lang_code', 'name', 'Safran (France)'),
(138643, 109291, 'fr', 'name', 'Ecole Nationale SupƩrieure de Biotechnologie Taoufik Khaznadar'),
(138644, 109291, 'en', 'name', 'Taoufik Khaznadar National Higher School of Biotechnology'),
(138645, 109291, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ في Ų§Ł„ŲØŁŠŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(138646, 109292, 'no_lang_code', 'name', 'Grupo Martifer (Portugal)'),
(138647, 109293, 'es', 'name', 'Instituto de Cultura JurĆ­dica'),
(138648, 109294, 'en', 'name', 'Phillip Island Nature Parks'),
(138649, 109295, 'no_lang_code', 'name', 'Houselab (Portugal)'),
(138650, 109296, 'fr', 'name', 'UnitĆ© de Recherche en GĆ©nie des ProcĆ©dĆ©s et en GĆ©nie de l’Environnement'),
(138651, 109297, 'pt', 'name', 'Centro de CiĆŖncias e Tecnologias Nucleares'),
(138652, 109298, 'no_lang_code', 'name', 'InfoCiência Processamento e Gestão de Informação Científica (Portugal)'),
(138653, 109299, 'en', 'name', 'Ankaful Psychiatric Hospital'),
(138654, 109300, 'pt', 'name', 'Universidade Nova de Lisboa Associação para a Inovação e Desenvolvimento da FCT'),
(138655, 109301, 'pt', 'name', 'Instituto Padre António Vieira'),
(138656, 109302, 'pt', 'name', 'Fundação Professor Francisco Pulido Valente'),
(138657, 109303, 'ro', 'name', 'Academia de Științe a Moldovei'),
(138658, 109303, 'en', 'name', 'Academy of Sciences of Moldova'),
(138659, 109303, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук МолГавии'),
(138660, 109304, 'en', 'name', 'UK Centre for Ecology & Hydrology'),
(138661, 109305, 'fr', 'name', 'LabEx PERSYVAL-Lab'),
(138662, 109306, 'en', 'name', 'Kazan State Energy University'),
(138663, 109307, 'no_lang_code', 'name', 'Informa D&B Serviços de Gestão de Empresas (Portugal)'),
(138664, 109308, 'pt', 'name', 'CÔtedra Poesia e Transcendência Sophia de Mello Breyner Andresen'),
(138665, 109309, 'pt', 'name', 'Centro Interdisciplinar de Investigação Psicossocial'),
(138666, 109309, 'en', 'name', 'Interdisciplinary Center for Psychosocial Research'),
(138667, 109310, 'fr', 'name', 'Centre National de la Propriété Forestière'),
(138668, 109311, 'de', 'name', 'StƤdtische Bibliotheken Dresden'),
(138669, 109312, 'fr', 'name', 'Observatoire des Mutations Institutionnelles et Juridiques'),
(138670, 109313, 'de', 'name', 'Schweizerischer Forstverein'),
(138671, 109313, 'it', 'name', 'SocietĆ  forestale svizzera'),
(138672, 109313, 'fr', 'name', 'Société forestière suisse'),
(138673, 109313, 'en', 'name', 'Swiss Forestry Society'),
(138674, 109314, 'no_lang_code', 'name', 'Zimmer (Switzerland)'),
(138675, 109315, 'pt', 'name', 'Iscte – Instituto UniversitĆ”rio de Lisboa'),
(138676, 109315, 'en', 'name', 'Iscte – University Institute of Lisbon'),
(138677, 109316, 'es', 'name', 'Sociedad Argentina de AnÔlisis Filosófico'),
(138678, 109317, 'en', 'name', 'Environment and Climate Change Canada'),
(138679, 109317, 'fr', 'name', 'Environnement et Changement Climatique Canada'),
(138680, 109318, 'pt', 'name', 'Centro CiĆŖncia LP'),
(138681, 109318, 'en', 'name', 'International Centre for Advanced Training of Scientists from Portuguese-Speaking Countries in Areas of Basic Sciences'),
(138682, 109319, 'en', 'name', 'Islamic Azad University, Saghez Branch'),
(138683, 109319, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سقز'),
(138684, 109320, 'en', 'name', 'Pluto Journals'),
(138685, 109321, 'fr', 'name', 'Laboratoire Alexander Grothendieck'),
(138686, 109322, 'pt', 'name', 'Biblioteca das CiĆŖncias da SaĆŗde'),
(138687, 109323, 'no_lang_code', 'name', 'Teravix Servicos Farmaceuticos (Portugal)'),
(138688, 109324, 'en', 'name', 'Afghan Telecom (Afghanistan)'),
(138689, 109325, 'nb', 'name', 'UiT Norges arktiske universitet'),
(138690, 109325, 'se', 'name', 'UiT Norgga ÔrktalaŔ universitehta'),
(138691, 109325, 'en', 'name', 'UiT The Arctic University of Norway'),
(138692, 109326, 'en', 'name', 'ZHAW Zurich University of Applied Sciences'),
(138693, 109326, 'de', 'name', 'ZHAW Zürcher Hochschule für Angewandte Wissenschaften'),
(138694, 109327, 'en', 'name', 'Livingstone Center for Prevention and Translational Science'),
(138695, 109328, 'pt', 'name', 'Centro de Investigação em Estudos Interdisciplinares'),
(138696, 109328, 'en', 'name', 'Interdisciplinary Studies Research Center'),
(138697, 109329, 'no_lang_code', 'name', 'Innovation Services (Portugal)'),
(138698, 109330, 'pt', 'name', 'Centro de Investigação em Psicologia'),
(138699, 109331, 'es', 'name', 'Instituto Tecnológico Superior Oriente'),
(138700, 109332, 'ro', 'name', 'Asociația Independent Research'),
(138701, 109332, 'en', 'name', 'Independent Research Association'),
(138702, 109333, 'fr', 'name', 'MinistĆØre de l''Agriculture, des PĆŖcheries et de l''Alimentation'),
(138703, 109334, 'pt', 'name', 'Audax ISCTE'),
(138704, 109335, 'en', 'name', 'VSB - Technical University of Ostrava'),
(138705, 109335, 'de', 'name', 'VSB - Technische UniversitƤt Ostrava'),
(138706, 109335, 'es', 'name', 'VSB - Universidad TƩcnica de Ostrava'),
(138707, 109335, 'fr', 'name', 'VSB - UniversitƩ Technique d''Ostrava'),
(138708, 109335, 'cs', 'name', 'VysokÔ Ŕkola bÔňskÔ - TechnickÔ univerzita Ostrava'),
(138709, 109335, 'ru', 'name', 'Š’ŠØŠ‘ - Tехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŃŃ‚Ń€Š°Š²Š°'),
(138710, 109336, 'en', 'name', 'Federal Institute of Education, Science and Technology Alagoas'),
(138711, 109336, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Alagoas'),
(138712, 109337, 'en', 'name', 'Hainan 301 Hospital'),
(138713, 109337, 'zh', 'name', 'č§£ę”¾å†›ę€»åŒ»é™¢ęµ·å—åŒ»é™¢'),
(138714, 109338, 'en', 'name', 'Shenzhen Pregene Biopharma Co., Ltd. (China)'),
(138715, 109338, 'zh', 'name', 'ę·±åœ³ę™®ē‘žé‡‘ē”Ÿē‰©čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(138716, 109339, 'en', 'name', 'Okanagan University College'),
(138717, 109340, 'en', 'name', 'United States Army Combined Arms Center'),
(138718, 109341, 'en', 'name', 'International Centre for Water Resources and Global Change'),
(138719, 109341, 'de', 'name', 'Internationales Zentrum für Wasserressourcen und Globalen Wandel'),
(138720, 109342, 'en', 'name', 'Aalborg Centre for Problem Based Learning in Engineering Science and Sustainability'),
(138721, 109343, 'en', 'name', 'Gour Mahavidyalaya'),
(138722, 109343, 'bn', 'name', 'ą¦—ą§Œą¦”ą¦¼ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(138723, 109344, 'en', 'name', 'Swisssem'),
(138724, 109345, 'id', 'name', 'Politeknik Kota Malang'),
(138725, 109346, 'pt', 'name', 'Centro de Estudos de Fenómenos de Transporte'),
(138726, 109346, 'en', 'name', 'Transport Phenomena Research Center'),
(138727, 109347, 'fr', 'name', 'Laboratoire de Signalisation et Physiopathologie Cardiovasculaire'),
(138728, 109347, 'en', 'name', 'Laboratory of Signalling and Cardiovascular Pathophysiology'),
(138729, 109348, 'en', 'name', 'Demartino Public Hospital'),
(138730, 109349, 'en', 'name', 'International Research and Training Centre for Science and Technology Strategy'),
(138731, 109349, 'zh', 'name', 'äø­å›½ē§‘å­¦ęŠ€ęœÆå‘å±•ęˆ˜ē•„ē ”ē©¶é™¢'),
(138732, 109350, 'pt', 'name', 'Centro de Investigação da Terra e do Espaço'),
(138733, 109351, 'fr', 'name', 'Centre International de MathƩmatiques Pures et AppliquƩes'),
(138734, 109351, 'en', 'name', 'International Centre for Pure and Applied Mathematics'),
(138735, 109352, 'no_lang_code', 'name', 'De Gruyter Brill (Germany)'),
(138736, 109353, 'en', 'name', 'SupƩlec ONERA DSTA Research Alliance'),
(138737, 109354, 'pt', 'name', 'Grupo de Investigação em Engenharia e Computação Inteligente para a Inovação e o Desenvolvimento'),
(138738, 109355, 'en', 'name', 'Isfahan Regional Center for Technology Incubators and Science Parks Development'),
(138739, 109356, 'en', 'name', 'Regional Experimental Centre for Sanitation Technologies'),
(138740, 109357, 'en', 'name', 'BioMark Sensor Research'),
(138741, 109358, 'en', 'name', 'Center of Intelligent Systems'),
(138742, 109358, 'pt', 'name', 'Centro de Sistemas Inteligentes'),
(138743, 109359, 'no_lang_code', 'name', 'Stone Circuitos Impressos (Portugal)'),
(138744, 109360, 'fr', 'name', 'Institut FranƧais de la Vigne et du Vin'),
(138745, 109361, 'en', 'name', 'NSF NCAR Research Applications Laboratory'),
(138746, 109362, 'en', 'name', 'Pluto Press'),
(138747, 109363, 'en', 'name', 'Health Sciences Centre'),
(138748, 109364, 'fr', 'name', 'ChronothƩrapie, cancers et transplantation'),
(138749, 109365, 'en', 'name', 'EvoLogics GmbH'),
(138750, 109365, 'no_lang_code', 'name', 'EvoLogics GmbH (Germany)'),
(138751, 109366, 'en', 'name', 'Military Technological College'),
(138752, 109367, 'es', 'name', 'Instituto Mexicano del Transporte'),
(138753, 109368, 'en', 'name', 'Sustainable Prosperity Initiative Nepal'),
(138754, 109369, 'en', 'name', 'Changchun Institute of Optics, Fine Mechanics and Physics'),
(138755, 109369, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢é•æę˜„å…‰å­¦ē²¾åÆ†ęœŗę¢°äøŽē‰©ē†ē ”ē©¶ę‰€'),
(138756, 109370, 'fr', 'name', 'Neuropathies PƩriphƩriques et Innovations ThƩrapeutiques'),
(138757, 109371, 'fr', 'name', 'NMS Berne'),
(138758, 109372, 'pt', 'name', 'Instituto das Comunidades Educativas'),
(138759, 109373, 'no_lang_code', 'name', 'Grünenthal (Portugal)'),
(138760, 109374, 'ja', 'name', 'National Instruments (Japan)'),
(138761, 109375, 'en', 'name', 'Centre for the Sustainable Management of Water Resources in the Caribbean Island Sates'),
(138762, 109376, 'en', 'name', 'IB-Cancer Research Foundation'),
(138763, 109377, 'en', 'name', 'Bangladesh Atomic Energy Commission'),
(138764, 109377, 'bn', 'name', 'বাংলাদেশ পরমাণু ą¦¶ą¦•ą§ą¦¤ą¦æ কমিশন'),
(138765, 109378, 'en', 'name', 'Muhammadiyah Bandung University'),
(138766, 109378, 'id', 'name', 'Universitas Muhammadiyah Bandung'),
(138767, 109379, 'en', 'name', 'Abylkas Saginov Karaganda Technical University'),
(138768, 109379, 'kk', 'name', 'Ó˜Š±Ń–Š»Ņ›Š°Ń Дағынов атынГағы ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(138769, 109380, 'en', 'name', 'Institute of Industrial Economics'),
(138770, 109380, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіки промисловості'),
(138771, 109381, 'no_lang_code', 'name', 'Salvor Sociedade de Investimento Hoteleiro (Portugal)'),
(138772, 109382, 'en', 'name', 'Nova School of Business and Economics Library'),
(138773, 109383, 'en', 'name', 'Kerala Forest Research Institute'),
(138774, 109383, 'ta', 'name', 'கேரள வன ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(138775, 109383, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“µą“Øą“—ą“µąµ‡ą“·ą“£ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(138776, 109384, 'en', 'name', 'P. R. Pote Patil College of Engineering & Management, Amravati'),
(138777, 109385, 'en', 'name', 'Islamic Azad University, Fasa Branch'),
(138778, 109385, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŁˆŲ§Ų­ŲÆ فسا'),
(138779, 109386, 'pt', 'name', 'MARE - Centro de CiĆŖncias do Mar e do Ambiente'),
(138780, 109387, 'pt', 'name', 'Instituto Empresarial do TĆ¢mega'),
(138781, 109388, 'pt', 'name', 'ISEG - Instituto Superior de Economia e Gestão'),
(138782, 109388, 'en', 'name', 'University of Lisbon Higher Institute of Economics and Management'),
(138783, 109389, 'en', 'name', 'Institute of Pig Breeding and Agroindustrial Production of the National Academy of Agrarian Sciences of Ukraine'),
(138784, 109389, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ свинарства і агропромислового виробництва ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(138785, 109390, 'en', 'name', 'Vietnam Academy of Science and Technology'),
(138786, 109390, 'vi', 'name', 'Viện HĆ n lĆ¢m Khoa hį»c vĆ  CĆ“ng nghệ Việt Nam'),
(138787, 109391, 'en', 'name', 'Marconi University'),
(138788, 109391, 'it', 'name', 'UniversitĆ  degli Studi Guglielmo Marconi'),
(138789, 109391, 'fr', 'name', 'UniversitƩ des Ʃtudes guglielmo marconi'),
(138790, 109392, 'pt', 'name', 'Instituto CRIAP'),
(138791, 109393, 'en', 'name', 'Solkeys'),
(138792, 109393, 'no_lang_code', 'name', 'Solkeys (Spain)'),
(138793, 109394, 'en', 'name', 'State Educational Institution "Academy of Education"'),
(138794, 109394, 'be', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ā«ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ ŠžŠ‘Š ŠŠ—ŠžŠ’ŠŠŠ˜ŠÆĀ»'),
(138795, 109394, 'ru', 'name', 'Š”Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń ŃžŃŃ‚Š°Š½Š¾Š²Š° Š°Š“ŃƒŠŗŠ°Ń†Ń‹Ń– Ā«ŠŠšŠŠ”Š­ŠœŠ†ŠÆ ŠŠ”Š£ŠšŠŠ¦Š«Š†Ā»'),
(138796, 109395, 'es', 'name', 'Instituto de Ciencias'),
(138797, 109396, 'en', 'name', 'Developmental Biology Laboratory'),
(138798, 109396, 'fr', 'name', 'Laboratoire de Biologie du DƩveloppement'),
(138799, 109397, 'en', 'name', 'Advanced Mining Technology Center'),
(138800, 109397, 'es', 'name', 'Centro Avanzado de TecnologĆ­a para la MinerĆ­a'),
(138801, 109398, 'fr', 'name', 'GR-Trans : Groupe de Recherche en TransidentitƩs'),
(138802, 109399, 'no_lang_code', 'name', 'Grupo Pedago (Portugal)'),
(138803, 109400, 'no_lang_code', 'name', 'Gedeon Richter (Hungary)'),
(138804, 109400, 'hu', 'name', 'Richter Gedeon Nyrt'),
(138805, 109401, 'en', 'name', 'St. Boniface Hospital'),
(138806, 109402, 'ro', 'name', 'Institutul Clinic de Urologie și Transplant Renal Cluj'),
(138807, 109403, 'en', 'name', 'Center for Integrated and Multidisciplinary Water Resources Management'),
(138808, 109404, 'pt', 'name', 'Unidade de Investigação Nova SBE'),
(138809, 109405, 'de', 'name', 'Akkon Hochschule für Humanwissenschaften'),
(138810, 109405, 'en', 'name', 'Johanniter University of Applied Sciences'),
(138811, 109406, 'fr', 'name', 'Ɖtudes sur les Sciences et les Techniques'),
(138812, 109407, 'en', 'name', 'University of Avignon'),
(138813, 109407, 'fr', 'name', 'UniversitƩ d''Avignon et des Pays de Vaucluse'),
(138814, 109408, 'en', 'name', 'Ministry of Education and Culture – Government of Samoa'),
(138815, 109409, 'tr', 'name', 'Eskişehir Anadolu Lisesi'),
(138816, 109410, 'no_lang_code', 'name', 'Gilead Sciences (Portugal)'),
(138817, 109411, 'no_lang_code', 'name', 'Health Products Research and Development (Portugal)'),
(138818, 109412, 'en', 'name', 'Fujian Academy of Chinese Medicine Sciences'),
(138819, 109412, 'zh', 'name', 'ē¦å»ŗēœäø­åŒ»čÆē§‘å­¦é™¢'),
(138820, 109413, 'en', 'name', 'Alliance for Education on Probiotics'),
(138821, 109414, 'en', 'name', 'Central Forensic Laboratory of the Police'),
(138822, 109414, 'pl', 'name', 'Centralne Laboratorium Kryminalistyczne Policji'),
(138823, 109415, 'en', 'name', 'Basque Culinary Center'),
(138824, 109416, 'en', 'name', 'NOAA Integrated Ocean Observing System'),
(138825, 109417, 'en', 'name', 'Higher National School of Renewable Energies, Environment & Sustainable Development'),
(138826, 109417, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للطاقات المتجددة ŁˆŲ§Ł„ŲØŁŠŲ¦Ų© ŁˆŲ§Ł„ŲŖŁ†Ł…ŁŠŲ© المستدامة'),
(138827, 109418, 'fr', 'name', 'DƩlƩgation Ile-de-France Villejuif'),
(138828, 109419, 'en', 'name', 'International Science, Technology and Innovation Centre for South-South Cooperation'),
(138829, 109420, 'en', 'name', 'HemoNED - Dutch Hemophilia Registry'),
(138830, 109421, 'en', 'name', 'International Atomic Energy Agency'),
(138831, 109421, 'de', 'name', 'Internationale Atomenergie-Organisation'),
(138832, 109421, 'sl', 'name', 'Mednarodna agencija za jedrsko energijo'),
(138833, 109421, 'hr', 'name', 'Međunarodna agencija za atomsku energiju'),
(138834, 109421, 'hu', 'name', 'Nemzetközi Atomenergia-ügynökség'),
(138835, 109422, 'no_lang_code', 'name', 'Give U Design Art (Portugal)'),
(138836, 109423, 'pt', 'name', 'Núcleo de Investigação e Desenvolvimento em Educação'),
(138837, 109424, 'fr', 'name', 'Centre d''Imagerie Multimodale'),
(138838, 109425, 'pt', 'name', 'Sociedade Portuguesa de Neurologia'),
(138839, 109426, 'en', 'name', 'Government College University Hyderabad'),
(138840, 109426, 'sd', 'name', 'ŚÆŁˆŲ±Ł†Ł…ŁŠŁ†Ł½ ŚŖŲ§Ł„ŁŠŲ¬ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ,حيدرآباد'),
(138841, 109427, 'fr', 'name', 'Laboratoire d''Ɖtude de l''Univers et des PhĆ©nomĆØnes ExtrĆŖmes'),
(138842, 109428, 'fr', 'name', 'Institut RhÓnalpin des Systèmes Complexes'),
(138843, 109429, 'en', 'name', 'BRB Hospitals LTD'),
(138844, 109429, 'bn', 'name', 'বিআরবি হসপিটালস ą¦²ą¦æą¦®ą¦æą¦Ÿą§‡ą¦”'),
(138845, 109430, 'no_lang_code', 'name', 'Joalvi Comércio Têxteis Unipessoal (Portugal)'),
(138846, 109431, 'pt', 'name', 'Laboratório Colaborativo para o Trabalho, Emprego e Proteção Social'),
(138847, 109432, 'en', 'name', 'Hunan University'),
(138848, 109432, 'zh', 'name', 'ę¹–å—å¤§å­¦'),
(138849, 109433, 'fr', 'name', 'Les arts dƩcoratifs'),
(138850, 109434, 'en', 'name', 'Turkish Patent and Trademark Organization'),
(138851, 109434, 'tr', 'name', 'TÜRKPATENT'),
(138852, 109435, 'fr', 'name', 'Virologie'),
(138853, 109436, 'en', 'name', 'Gongju Medical Center'),
(138854, 109436, 'ko', 'name', 'ź³µģ£¼ģ˜ė£Œģ›'),
(138855, 109437, 'fr', 'name', 'Centre de recherche sur les innovations et les transformations sociales'),
(138856, 109437, 'en', 'name', 'Research Center on Social Innovation and Transformation'),
(138857, 109438, 'en', 'name', 'Media and Journalism Research Center'),
(138858, 109439, 'en', 'name', 'Konyang University Buyeo Hospital'),
(138859, 109439, 'ko', 'name', 'ź±“ģ–‘ėŒ€ķ•™źµ 부여병원'),
(138860, 109440, 'es', 'name', 'Universidad de las AmƩricas Puebla'),
(138861, 109441, 'fr', 'name', 'CommunautƩ UniversitƩ Grenoble Alpes'),
(138862, 109441, 'en', 'name', 'Community University Grenoble Alps'),
(138863, 109442, 'en', 'name', 'Gyeonggi Provincal Medical Center Paju Hospital'),
(138864, 109442, 'ko', 'name', 'ź²½źø°ė„ģ˜ė£Œģ› ķŒŒģ£¼ė³‘ģ›'),
(138865, 109443, 'fr', 'name', 'Laboratoire de Physique de Clermont Auvergne'),
(138866, 109444, 'id', 'name', 'Institut Bisnis dan Teknologi Indonesia'),
(138867, 109445, 'de', 'name', 'Hochschule für Technik Stuttgart'),
(138868, 109445, 'en', 'name', 'Stuttgart Technical University of Applied Sciences'),
(138869, 109446, 'fr', 'name', 'Centre de recherche bretonne et celtique'),
(138870, 109447, 'en', 'name', 'Mogam Institute for Biomedical Research'),
(138871, 109447, 'ko', 'name', 'ėŖ©ģ•”ģƒėŖ…ź³¼ķ•™ģ—°źµ¬ģ†Œ'),
(138872, 109448, 'en', 'name', 'Jeonnam Research Institute'),
(138873, 109448, 'ko', 'name', '전남연구원'),
(138874, 109449, 'fr', 'name', 'CollĆØge MacDonald'),
(138875, 109450, 'en', 'name', 'Soonchunhyang University Hospital Gumi'),
(138876, 109450, 'ko', 'name', 'ģˆœģ²œķ–„ėŒ€ķ•™źµ 구미병원'),
(138877, 109451, 'en', 'name', 'State Council of the People''s Republic of China'),
(138878, 109451, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å›½åŠ”é™¢'),
(138879, 109452, 'es', 'name', 'Facultad de Estudios Superiores Aragón'),
(138880, 109453, 'fr', 'name', 'Institut de recherches arctiques Jean Malaurie'),
(138881, 109453, 'en', 'name', 'Malaurie Institute of Arctic Research'),
(138882, 109454, 'en', 'name', 'Akhand Jyoti Eye Hospital'),
(138883, 109455, 'en', 'name', 'Gangwon State Yeongwol Medical Center'),
(138884, 109455, 'ko', 'name', 'ź°•ģ›ķŠ¹ė³„ģžģ¹˜ė„ģ˜ģ›”ģ˜ė£Œģ›'),
(138885, 109456, 'fr', 'name', 'ISEG'),
(138886, 109457, 'en', 'name', 'Wonkwang University Sanbon Hospital'),
(138887, 109457, 'ko', 'name', 'ģ›ź“‘ėŒ€ķ•™źµ 산본병원'),
(138888, 109458, 'en', 'name', 'Extrica'),
(138889, 109459, 'en', 'name', 'Department of Science and Technology of Inner Mongolia Autonomous Region'),
(138890, 109459, 'zh', 'name', 'å†…č’™å¤č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(138891, 109460, 'fr', 'name', 'AcadƩmie de la langue basque'),
(138892, 109460, 'eu', 'name', 'Euskaltzaindia'),
(138893, 109460, 'es', 'name', 'Real Academia de la Lengua Vasca'),
(138894, 109461, 'es', 'name', 'Escuela de Enfermería Angelópolis'),
(138895, 109462, 'en', 'name', 'Shri Guru Ram Rai University'),
(138896, 109463, 'it', 'name', 'Associazione Italiana Editori'),
(138897, 109463, 'en', 'name', 'Italian Publishers Association'),
(138898, 109464, 'en', 'name', 'North Eastern Institute of Ayurveda and Homoeopathy'),
(138899, 109465, 'de', 'name', 'HFR Freiburg Kantonsspital'),
(138900, 109466, 'en', 'name', 'Netrokona University'),
(138901, 109466, 'bn', 'name', 'ą¦Øą§‡ą¦¤ą§ą¦°ą¦•ą§‹ą¦£ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(138902, 109467, 'fr', 'name', 'Ɖcole supĆ©rieure d''art Annecy Alpes'),
(138903, 109468, 'en', 'name', 'The Open Group'),
(138904, 109469, 'en', 'name', 'Seosan Medical Center'),
(138905, 109469, 'ko', 'name', 'ģ„œģ‚°ģ˜ė£Œģ›'),
(138906, 109470, 'en', 'name', 'Shaanxi Science and Technology Department'),
(138907, 109470, 'zh', 'name', 'é™•č„æēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(138908, 109471, 'en', 'name', 'Nonghyup Food Research Institute (South Korea)'),
(138909, 109471, 'ko', 'name', 'ė†ķ˜‘ģ‹ķ’ˆR&Dģ—°źµ¬ģ†Œ'),
(138910, 109472, 'en', 'name', 'Institute for Mediterranean and Subtropical Horticulture "La Mayoraā€'),
(138911, 109472, 'es', 'name', 'Instituto de Hortofruticultura Subtropical y MediterrƔnea "La Mayora"'),
(138912, 109473, 'eu', 'name', 'Lyongo unibertsitatea'),
(138913, 109473, 'fr', 'name', 'UniversitƩ de Lyon'),
(138914, 109474, 'en', 'name', 'Wonkwang University Gwangju Medical Center'),
(138915, 109474, 'ko', 'name', 'ģ›ź“‘ėŒ€ķ•™źµ ź“‘ģ£¼ķ•œė°©ė³‘ģ›'),
(138916, 109475, 'en', 'name', 'Education Design Lab'),
(138917, 109476, 'en', 'name', 'Turkmen State Medical University'),
(138918, 109476, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŠøŠø'),
(138919, 109477, 'en', 'name', 'Education Department of Henan Province'),
(138920, 109477, 'zh', 'name', 'ę²³å—ēœę•™č‚²åŽ…'),
(138921, 109478, 'en', 'name', 'Beijing Municipal Government'),
(138922, 109478, 'zh', 'name', 'åŒ—äŗ¬åø‚ę”æåŗœ'),
(138923, 109479, 'en', 'name', 'NGO "Eastern European Union of Scientists"'),
(138924, 109480, 'en', 'name', 'Korea Development Bank'),
(138925, 109480, 'ko', 'name', 'ķ•œźµ­ģ‚°ģ—…ģ€ķ–‰'),
(138926, 109481, 'en', 'name', 'Jeju Women & Family Research Institute'),
(138927, 109481, 'ko', 'name', 'ģ œģ£¼ģ—¬ģ„±ź°€ģ”±ģ—°źµ¬ģ›'),
(138928, 109482, 'en', 'name', 'Dongshin University Mokpo Korean Medicine Hospital'),
(138929, 109482, 'ko', 'name', 'ėŖ©ķ¬ė™ģ‹ ėŒ€ķ•™źµķ•œė°©ė³‘ģ›'),
(138930, 109483, 'en', 'name', 'Nico-tama Coloproctology Clinic'),
(138931, 109483, 'ja', 'name', 'ćƒ‹ć‚³ć‚æćƒžå¤§č…øćƒ»č‚›é–€ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(138932, 109484, 'en', 'name', 'Dongguk University Gyeongju Oriental Medicine Clinic'),
(138933, 109484, 'ko', 'name', 'ė™źµ­ėŒ€ķ•™źµ ź²½ģ£¼ķ•œģ˜ģ›'),
(138934, 109485, 'en', 'name', 'Udice French Research Universities'),
(138935, 109486, 'en', 'name', 'Taiwan Institute of Sports Science'),
(138936, 109486, 'zh', 'name', 'åœ‹å®¶é‹å‹•ē§‘å­øäø­åæƒ'),
(138937, 109487, 'fr', 'name', 'NanomƩdecine, Biologie extracellulaire IntƩgratome et Innovations en santƩ'),
(138938, 109488, 'fr', 'name', 'Dynamique des CapacitƩs Humaines et des Conduites de SantƩ'),
(138939, 109489, 'no_lang_code', 'name', 'Sherbrooke O.E.M (Canada)'),
(138940, 109490, 'en', 'name', 'Architecture & Urban Research Institute'),
(138941, 109490, 'ko', 'name', '걓축공간연구원'),
(138942, 109491, 'en', 'name', 'Guangxi Science and Technology Department'),
(138943, 109491, 'za', 'name', 'Gvangjsih Bouxcuengh Swcigih Gohyoz Gisuz Dingh'),
(138944, 109491, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(138945, 109492, 'en', 'name', 'Tianjin People''s Government'),
(138946, 109492, 'zh', 'name', 'å¤©ę“„åø‚äŗŗę°‘ę”æåŗœ'),
(138947, 109493, 'en', 'name', 'Nigerian Building and Road Research Institute'),
(138948, 109494, 'en', 'name', 'Trade Union University'),
(138949, 109495, 'fr', 'name', 'Ɖcole supĆ©rieure de commerce international'),
(138950, 109496, 'fr', 'name', 'Ɖcole des Mines de Douai'),
(138951, 109497, 'fr', 'name', 'Littoral, Environnement, TƩlƩdƩtection, GƩomatique'),
(138952, 109498, 'en', 'name', 'National Meteorological Satellite Center'),
(138953, 109498, 'ko', 'name', 'źµ­ź°€źø°ģƒģœ„ģ„±ģ„¼ķ„°'),
(138954, 109499, 'id', 'name', 'STT Tiberias Jakarta'),
(138955, 109500, 'de', 'name', 'Kolping Hochschule'),
(138956, 109501, 'en', 'name', 'Katsina State Institute of Technology and Management'),
(138957, 109502, 'en', 'name', 'Goyang City Institute'),
(138958, 109502, 'ko', 'name', '고양연구원'),
(138959, 109503, 'en', 'name', 'Korea Aerospace Research Institute'),
(138960, 109503, 'ko', 'name', 'ķ•œźµ­ķ•­ź³µģš°ģ£¼ģ—°źµ¬ģ›'),
(138961, 109504, 'en', 'name', 'London Health Sciences Centre'),
(138962, 109505, 'en', 'name', 'mEDRA'),
(138963, 109505, 'it', 'name', 'mEDRA srl'),
(138964, 109506, 'en', 'name', 'Hanyang University International Hospital'),
(138965, 109506, 'ko', 'name', 'ķ•œģ–‘ėŒ€ķ•™źµźµ­ģ œė³‘ģ›'),
(138966, 109507, 'en', 'name', 'Lviv Scientific Research Forensic Center of the Ministry of Internal Affairs of Ukraine'),
(138967, 109507, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ДосліГний Експертно-ŠšŃ€Ń–Š¼Ń–Š½Š°Š»Ń–ŃŃ‚ŠøŃ‡Š½ŠøŠ¹ Центр Мвс України'),
(138968, 109508, 'no', 'name', 'Norges Teknisk-Naturvitenskapelige Universitet'),
(138969, 109508, 'fi', 'name', 'Norjan teknis-luonnontieteellinen yliopisto'),
(138970, 109508, 'en', 'name', 'Norwegian University of Science and Technology'),
(138971, 109509, 'en', 'name', 'NorESM Climate Modeling Consortium'),
(138972, 109510, 'en', 'name', 'National Office of Philosophy and Social Sciences'),
(138973, 109510, 'zh', 'name', 'å…Øå›½å“²å­¦ē¤¾ä¼šē§‘å­¦å·„ä½œåŠžå…¬å®¤'),
(138974, 109511, 'en', 'name', 'Cross Cancer Institute'),
(138975, 109512, 'en', 'name', 'Chungnam National University Sejong Hospital'),
(138976, 109512, 'ko', 'name', 'ģ„øģ¢…ģ¶©ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(138977, 109513, 'es', 'name', 'Universidad Nacional Experimental de la Gran Caracas'),
(138978, 109514, 'en', 'name', 'Inje University Seoul Paik Hospital'),
(138979, 109514, 'ko', 'name', 'ģøģ œėŒ€ķ•™źµ ģ„œģšøė°±ė³‘ģ›'),
(138980, 109515, 'fr', 'name', 'Laboratoire d''Ʃconomie de Dijon'),
(138981, 109516, 'en', 'name', 'National Cancer Center Hospital'),
(138982, 109516, 'ko', 'name', '국립암센터 병원'),
(138983, 109517, 'en', 'name', 'Jean Monnet University'),
(138984, 109517, 'fr', 'name', 'UniversitƩ Jean Monnet'),
(138985, 109518, 'en', 'name', 'Dongshin University'),
(138986, 109518, 'ko', 'name', 'ė™ģ‹ ėŒ€ķ•™źµ'),
(138987, 109519, 'en', 'name', 'Nonghyup Future Strategy Research Institute (South Korea)'),
(138988, 109519, 'ko', 'name', 'ė†ķ˜‘ėÆøėž˜ģ „ėžµģ—°źµ¬ģ†Œ'),
(138989, 109520, 'fr', 'name', 'Connaissance, organisation et systĆØmes techniques'),
(138990, 109521, 'en', 'name', 'Sakana Consultants (France)'),
(138991, 109522, 'en', 'name', 'Korea Carbon Industry Promotion Agency'),
(138992, 109522, 'ko', 'name', 'ķ•œźµ­ķƒ„ģ†Œģ‚°ģ—…ģ§„ķ„ģ›'),
(138993, 109523, 'es', 'name', 'IDC Instituto de CÔncer Hemato Oncólogos'),
(138994, 109524, 'fr', 'name', 'Physiopathologie et EpidƩmiologie CƩrƩbro-Cardiovasculaires'),
(138995, 109525, 'vi', 'name', 'Bệnh viện Phong - Da liį»…u Trung ʰʔng Quy Hòa'),
(138996, 109526, 'fr', 'name', 'Ɖcole de design Nantes Atlantique'),
(138997, 109527, 'en', 'name', 'Korea Marine Equipment Research Institute'),
(138998, 109527, 'ko', 'name', 'ķ•œźµ­ģ”°ģ„ ķ•“ģ–‘źø°ģžģž¬ģ—°źµ¬ģ›'),
(138999, 109528, 'en', 'name', 'CHA University Ilsan Medical Center'),
(139000, 109528, 'ko', 'name', 'ģ¼ģ‚°ģ°Øė³‘ģ›'),
(139001, 109529, 'fr', 'name', 'Geotop'),
(139002, 109529, 'en', 'name', 'Research Centre in Earth System Dynamics'),
(139003, 109530, 'en', 'name', 'Biomass Technology Laboratory'),
(139004, 109530, 'fr', 'name', 'Laboratoire des Technologies de la Biomasse'),
(139005, 109531, 'de', 'name', 'Goethe-Institut Vereinigtes Kƶnigreich'),
(139006, 109531, 'en', 'name', 'Goethe-Institute United Kingdom'),
(139007, 109532, 'no_lang_code', 'name', 'Kemerovo Cardiology Center'),
(139008, 109532, 'ru', 'name', 'ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠ¾Š³Š¾ ŠšŠ°Ń€Š“ŠøŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ центра'),
(139009, 109533, 'en', 'name', 'Korea University Guro Hospital'),
(139010, 109533, 'ko', 'name', 'ź³ ėŒ€źµ¬ė”œė³‘ģ›'),
(139011, 109534, 'en', 'name', 'Center for Wildlife Studies'),
(139012, 109535, 'en', 'name', 'Dankook University Sejong Dental Hospital'),
(139013, 109535, 'ko', 'name', 'ė‹Øźµ­ėŒ€ķ•™źµ ģ¹˜ź³¼ėŒ€ķ•™ ģ„øģ¢…ģ¹˜ź³¼ė³‘ģ›'),
(139014, 109536, 'en', 'name', 'Carl Correns Foundation For Mathematical Biology'),
(139015, 109537, 'en', 'name', 'Shinhan Bank (South Korea)'),
(139016, 109537, 'ko', 'name', 'ģ‹ ķ•œģ€ķ–‰'),
(139017, 109538, 'fr', 'name', 'Europe Etats-Unis Empires-Post-Empires, Cultures, Histoire, LittƩratures, Longue durƩe et Sciences Sociales'),
(139018, 109539, 'fr', 'name', 'Triangle : Action, Discours, PensƩe politique et Ʃconomique'),
(139019, 109539, 'en', 'name', 'Triangle. Action, discourses, economic and political thought'),
(139020, 109540, 'en', 'name', 'Dragon Rises College of Oriental Medicine'),
(139021, 109541, 'no_lang_code', 'name', 'Advanced Photonix (United States)'),
(139022, 109542, 'en', 'name', 'Jogamaya Devi College'),
(139023, 109543, 'fr', 'name', 'Institut du cancer Rosalind & Morris Goodman'),
(139024, 109543, 'en', 'name', 'Rosalind & Morris Goodman Cancer Institute'),
(139025, 109544, 'en', 'name', 'Stendhal University'),
(139026, 109544, 'fr', 'name', 'UniversitĆ© Stendhal – Grenoble 3'),
(139027, 109545, 'en', 'name', 'Pohang Oriental Medicine Hospital of Daegu Haany University'),
(139028, 109545, 'ko', 'name', 'ėŒ€źµ¬ķ•œģ˜ėŒ€ķ¬ķ•­ķ•œė°©ė³‘ģ›'),
(139029, 109546, 'pt', 'name', 'Instituto Nacional de Estudos e Pesquisas Educacionais AnĆ­sio Teixeira'),
(139030, 109547, 'en', 'name', 'Kakao Corporation'),
(139031, 109547, 'no_lang_code', 'name', 'Kakao Corporation (South Korea)'),
(139032, 109547, 'ko', 'name', '칓칓오'),
(139033, 109548, 'de', 'name', 'Institut für Notfallmedizin Allgäu'),
(139034, 109549, 'en', 'name', 'Sri Lanka Institute of Development Administration'),
(139035, 109550, 'en', 'name', 'A-Clinic Foundation'),
(139036, 109551, 'hr', 'name', 'SveučiliŔte VERN'''),
(139037, 109551, 'en', 'name', 'VERN'' University'),
(139038, 109552, 'id', 'name', 'Politeknik Pembangunan Pertanian Malang'),
(139039, 109553, 'en', 'name', 'Higher National School of Landscape'),
(139040, 109553, 'fr', 'name', 'Ɖcole nationale supĆ©rieure de paysage'),
(139041, 109554, 'en', 'name', 'Dong-Eui Hospital'),
(139042, 109554, 'ko', 'name', 'ė™ģ˜ė³‘ģ›'),
(139043, 109555, 'en', 'name', 'Cheongju Research Institute'),
(139044, 109555, 'ko', 'name', 'ģ²­ģ£¼ģ‹œģ •ģ—°źµ¬ģ›'),
(139045, 109556, 'fr', 'name', 'Institut de management et de communication interculturels'),
(139046, 109557, 'en', 'name', 'Guangzhou Municipal Science and Technology Bureau'),
(139047, 109557, 'zh', 'name', 'å¹æå·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(139048, 109558, 'en', 'name', 'Korea Research Institute for Fashion Industry'),
(139049, 109558, 'ko', 'name', 'ķ•œźµ­ķŒØģ…˜ģ‚°ģ—…ģ—°źµ¬ģ›'),
(139050, 109559, 'fr', 'name', 'AMURE - Centre de droit et d''Ʃconomie de la mer'),
(139051, 109560, 'en', 'name', 'United Steelworkers'),
(139052, 109561, 'fr', 'name', 'Centre Pluridisciplinaire Textes et Cultures'),
(139053, 109562, 'en', 'name', 'Space Operations Command'),
(139054, 109563, 'es', 'name', 'Universidad Intercontinental de la Empresa'),
(139055, 109564, 'en', 'name', 'Pusan National University Children''s Hospital'),
(139056, 109564, 'ko', 'name', 'ė¶€ģ‚°ėŒ€ķ•™źµģ–“ė¦°ģ“ė³‘ģ›'),
(139057, 109565, 'fr', 'name', 'Ecole supƩrieure d''Art et Design Toulon Provence MƩditerranƩe'),
(139058, 109566, 'en', 'name', 'Ningbo Science and Technology Bureau'),
(139059, 109566, 'zh', 'name', 'å®ę³¢åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(139060, 109567, 'en', 'name', 'Nonghyup (South Korea)'),
(139061, 109567, 'ko', 'name', 'ė†ģ—…ķ˜‘ķ˜‘ė™ģ”°ķ•©ģ¤‘ģ•™ķšŒ'),
(139062, 109568, 'fr', 'name', 'Ecole Nationale SupƩrieure des Technologies AvancƩes'),
(139063, 109568, 'en', 'name', 'National Higher School of Advanced Technologies'),
(139064, 109569, 'en', 'name', 'Gangjin Medical Center'),
(139065, 109569, 'ko', 'name', 'ź°•ģ§„ģ˜ė£Œģ›'),
(139066, 109570, 'eu', 'name', 'Euskal Herriko Unibertsitatea'),
(139067, 109570, 'es', 'name', 'Universidad del PaĆ­s Vasco'),
(139068, 109570, 'ca', 'name', 'Universitat del PaĆ­s Basc'),
(139069, 109570, 'en', 'name', 'University of the Basque Country'),
(139070, 109571, 'fr', 'name', 'BibliothĆØque nationale et universitaire de Strasbourg'),
(139071, 109571, 'en', 'name', 'National and University Library'),
(139072, 109572, 'fr', 'name', 'HƩritage et CrƩation dans le Texte et l''Image'),
(139073, 109573, 'en', 'name', 'Kyungpook National University Dental Hospital'),
(139074, 109573, 'ko', 'name', 'ź²½ė¶ėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(139075, 109574, 'en', 'name', 'IMP Diagnostics (Portugal)'),
(139076, 109575, 'en', 'name', 'International Institute of Molecular Mechanisms and Machines Polish Academy of Science'),
(139077, 109575, 'pl', 'name', 'Międzynarodowy Instytut Mechanizmów i Maszyn Molekularnych Polskiej Akademii Nauk'),
(139078, 109576, 'en', 'name', 'China Agriculture Research System'),
(139079, 109576, 'zh', 'name', 'ēŽ°ä»£å†œäøšäŗ§äøšęŠ€ęœÆä½“ē³»'),
(139080, 109577, 'fr', 'name', 'Ɖcole Secondaire Sisler High School'),
(139081, 109578, 'es', 'name', 'Fundación para la Conservación del Bosque Chiquitano'),
(139082, 109579, 'es', 'name', 'Instituto de Psicologƭa BƔsica, Aplicada y Tecnologƭa'),
(139083, 109580, 'en', 'name', 'General Administration of Quality Supervision, Inspection and Quarantine'),
(139084, 109581, 'en', 'name', 'Ewha Womans University Mokdong Hospital'),
(139085, 109581, 'ko', 'name', 'ģ“ėŒ€ėŖ©ė™ė³‘ģ›'),
(139086, 109582, 'en', 'name', 'Ewha Womans University Aorta and Vascular Hospital'),
(139087, 109582, 'ko', 'name', 'ģ“ėŒ€ė™ė§„ķ˜ˆź“€ė³‘ģ›'),
(139088, 109583, 'en', 'name', 'The Incheon Institute'),
(139089, 109583, 'ko', 'name', 'ģøģ²œģ—°źµ¬ģ›'),
(139090, 109584, 'en', 'name', 'Baptist MD Anderson Cancer Center'),
(139091, 109585, 'en', 'name', 'Suncheon Medical Center'),
(139092, 109585, 'ko', 'name', 'ģˆœģ²œģ˜ė£Œģ›'),
(139093, 109586, 'en', 'name', 'Seoul National University Cancer Hospital'),
(139094, 109586, 'ko', 'name', 'ģ„œģšøėŒ€ģ•”ė³‘ģ›'),
(139095, 109587, 'en', 'name', 'Changwon Hanmaeum Hospital'),
(139096, 109587, 'ko', 'name', 'ģ°½ģ›ķ•œė§ˆģŒė³‘ģ›'),
(139097, 109588, 'en', 'name', 'ISC Paris'),
(139098, 109588, 'fr', 'name', 'Institut supƩrieur du commerce de Paris'),
(139099, 109589, 'en', 'name', 'Kunshan Supercomputing Center'),
(139100, 109589, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—ę˜†å±±äø­åæƒ'),
(139101, 109590, 'fr', 'name', 'Conseil Cri de la santƩ et des services sociaux de la Baie-James'),
(139102, 109590, 'en', 'name', 'Cree Board of Health and Social Services of James Bay'),
(139103, 109591, 'fr', 'name', 'MillƩnium QuƩbecor'),
(139104, 109592, 'en', 'name', 'H. Skovoroda Institute of Philosophy of the National Academy of Sciences of Ukraine'),
(139105, 109592, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ філософії імені Š“.Š”. ДковороГи ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(139106, 109593, 'en', 'name', 'St. Ignatius Loyola College'),
(139107, 109593, 'lt', 'name', 'Å v. Ignaco Lojolos Kolegija'),
(139108, 109594, 'en', 'name', 'Yonsei Cancer Hospital'),
(139109, 109594, 'ko', 'name', '연세암병원'),
(139110, 109595, 'en', 'name', 'CHA Gumi Hospital'),
(139111, 109595, 'ko', 'name', '구미차병원'),
(139112, 109596, 'en', 'name', 'Vikas College of Engineering and Technology'),
(139113, 109597, 'en', 'name', 'National Institute of Homoeopathy , Kolkata'),
(139114, 109598, 'pt', 'name', 'Centro UniversitƔrio de Adamantina'),
(139115, 109599, 'en', 'name', 'South Valley University'),
(139116, 109600, 'en', 'name', 'Geisinger Health System'),
(139117, 109601, 'en', 'name', 'Gunsan Medical Center'),
(139118, 109601, 'ko', 'name', 'źµ°ģ‚°ģ˜ė£Œģ›'),
(139119, 109602, 'en', 'name', 'Yongin Severance Hospital'),
(139120, 109602, 'ko', 'name', 'ģš©ģøģ„øėøŒėž€ģŠ¤ė³‘ģ›'),
(139121, 109603, 'en', 'name', 'Korea Research Institute on Climate Change'),
(139122, 109603, 'ko', 'name', 'ķ•œźµ­źø°ķ›„ė³€ķ™”ģ—°źµ¬ģ›'),
(139123, 109604, 'en', 'name', 'Knowledge Exchange'),
(139124, 109605, 'en', 'name', 'Khulna Medical University'),
(139125, 109605, 'bn', 'name', 'খুলনা ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(139126, 109606, 'en', 'name', 'Ajou University Intermediate Care Hospital'),
(139127, 109606, 'ko', 'name', 'ģ•„ģ£¼ėŒ€ķ•™źµ ģš”ģ–‘ė³‘ģ›'),
(139128, 109607, 'en', 'name', 'Korean Agency for Technology and Standards'),
(139129, 109607, 'ko', 'name', 'źµ­ź°€źø°ģˆ ķ‘œģ¤€ģ›'),
(139130, 109608, 'en', 'name', 'Central South University'),
(139131, 109608, 'zh', 'name', 'äø­å—å¤§å­¦'),
(139132, 109609, 'en', 'name', 'The George Institute for Global Health'),
(139133, 109610, 'no_lang_code', 'name', 'Mynvax (India)'),
(139134, 109611, 'en', 'name', 'National Center for Mental Health'),
(139135, 109611, 'ko', 'name', '국립정신걓강센터'),
(139136, 109612, 'de', 'name', 'Landesamt für Gesundheit und Soziales'),
(139137, 109613, 'en', 'name', 'Samsung Electronics (South Korea)'),
(139138, 109613, 'ko', 'name', 'ģ‚¼ģ„±ģ „ģž ģ£¼ģ‹ķšŒģ‚¬'),
(139139, 109614, 'fr', 'name', 'Laboratoire Traitement du Signal et de l''Image'),
(139140, 109615, 'en', 'name', 'Nourse Science Centre for Pet Nutrition (China)'),
(139141, 109616, 'en', 'name', 'People for the Ethical Treatment of Animals'),
(139142, 109617, 'fr', 'name', 'Centre Atlantique de Philosophie'),
(139143, 109618, 'en', 'name', 'University of Lancashire'),
(139144, 109619, 'en', 'name', 'Gyeongnam Institute'),
(139145, 109619, 'ko', 'name', '경남연구원'),
(139146, 109620, 'fr', 'name', 'Laboratoire d''Informatique de Bourgogne'),
(139147, 109621, 'fr', 'name', 'Centre des hautes Ʃtudes de la construction'),
(139148, 109622, 'en', 'name', 'National School of Arts and Techniques of theater'),
(139149, 109622, 'fr', 'name', 'Ɖcole nationale supĆ©rieure des arts et techniques du théâtre'),
(139150, 109623, 'en', 'name', 'United States Space Force Space Training and Readiness Command'),
(139151, 109624, 'en', 'name', 'Korea Fire Institute'),
(139152, 109624, 'ko', 'name', 'ķ•œźµ­ģ†Œė°©ģ‚°ģ—…źø°ģˆ ģ›'),
(139153, 109625, 'en', 'name', 'Chungnam Institute of History and Culture'),
(139154, 109625, 'ko', 'name', '충남역사문화연구원'),
(139155, 109626, 'en', 'name', 'Korea Exchange'),
(139156, 109626, 'ko', 'name', 'ķ•œźµ­ź±°ėž˜ģ†Œ'),
(139157, 109627, 'en', 'name', 'Chukwuemeka Odumegwu Ojukwu University, Igbariam Campus'),
(139158, 109628, 'fr', 'name', 'Ɖcole nationale des sports de montagne'),
(139159, 109629, 'fr', 'name', 'Institut Curie'),
(139160, 109629, 'en', 'name', 'Institute Curie'),
(139161, 109630, 'en', 'name', 'European Blood Alliance'),
(139162, 109631, 'en', 'name', 'Prometeon Tyre Group S.R.L.'),
(139163, 109631, 'no_lang_code', 'name', 'Prometeon Tyre Group S.R.L. (Italy)'),
(139164, 109632, 'en', 'name', 'Leading English Education and Resource Network'),
(139165, 109632, 'fr', 'name', 'RĆ©seau des ressources pour l’éducation anglophone'),
(139166, 109633, 'en', 'name', 'KDI School of Public Policy and Management'),
(139167, 109633, 'ko', 'name', 'ķ•œźµ­ź°œė°œģ—°źµ¬ģ› źµ­ģ œģ •ģ±…ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(139168, 109634, 'en', 'name', 'Yeungnam University Yeongcheon Hospital'),
(139169, 109634, 'ko', 'name', 'ģ˜ė‚ØėŒ€ķ•™źµ ģ˜ģ²œė³‘ģ›'),
(139170, 109635, 'en', 'name', 'Nigerian Nuclear Regulatory Authority'),
(139171, 109636, 'pt', 'name', 'Escola de AperfeiƧoamento de Oficiais'),
(139172, 109637, 'en', 'name', 'OBEMET Center for Obesity and Metabolic Health'),
(139173, 109637, 'es', 'name', 'OBEMET Centro de Obesidad y Salud Metabólica'),
(139174, 109638, 'en', 'name', 'Ningbo University of Technology'),
(139175, 109638, 'zh', 'name', '宁波巄程学院'),
(139176, 109639, 'fr', 'name', 'Institut du droit public et de la science politique'),
(139177, 109640, 'fr', 'name', 'ISTEAH'),
(139178, 109641, 'en', 'name', 'Department of Human Resources and Social Security Of Shaanxi Province'),
(139179, 109641, 'zh', 'name', 'é™•č„æēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(139180, 109642, 'fr', 'name', 'Laboratoire interdisciplinaire de recherche en didactique, Ʃducation et formation'),
(139181, 109643, 'en', 'name', 'Non-Governmental Organization ā€œAll Ukrainian Association of Endovascular Neuroradiologyā€'),
(139182, 109643, 'uk', 'name', 'Š“Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ° Š¾Ń€Š³Š°Š½Ń–Š·Š°Ń†Ń–Ń ā€œŠ’ŃŠµŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŃŠ¾Ń†Ń–Š°Ń†Ń–Ń ŠµŠ½Š“Š¾Š²Š°ŃŠŗŃƒŠ»ŃŃ€Š½Š¾Ń— Š½ŠµŠ¹Ń€Š¾Ń€ŠµŠ½Ń‚Š³ŠµŠ½Š¾Ń…Ń–Ń€ŃƒŃ€Š³Ń–Ń—ā€'),
(139183, 109644, 'fr', 'name', 'Troubles du comportement Alimentaire, Addictions et Poids ExtrĆŖmes'),
(139184, 109645, 'en', 'name', 'Universitas Syedza Saintika'),
(139185, 109646, 'en', 'name', 'Korea Broadcast Advertising Corporation (South Korea)'),
(139186, 109646, 'ko', 'name', 'ķ•œźµ­ė°©ģ†”ź“‘ź³ ģ§„ķ„ź³µģ‚¬'),
(139187, 109647, 'en', 'name', 'Gangwon State Samcheok Medical Center'),
(139188, 109647, 'ko', 'name', 'ź°•ģ›ķŠ¹ė³„ģžģ¹˜ė„ģ‚¼ģ²™ģ˜ė£Œģ›'),
(139189, 109648, 'en', 'name', 'Keimyung University Dongsan Hospital'),
(139190, 109648, 'ko', 'name', 'ź³„ėŖ…ėŒ€ķ•™źµ ė™ģ‚°ė³‘ģ›'),
(139191, 109649, 'en', 'name', 'Ajou Research Institute for Innovative Medicine'),
(139192, 109649, 'ko', 'name', 'ģ•„ģ£¼ėŒ€ķ•™źµ ģ²Øė‹Øģ˜ķ•™ģ—°źµ¬ģ›'),
(139193, 109650, 'fr', 'name', 'GOBELINS Paris'),
(139194, 109651, 'en', 'name', 'The George Institute for Global Health'),
(139195, 109652, 'no_lang_code', 'name', 'OSI Systems (United States)'),
(139196, 109653, 'en', 'name', 'Gimhae Research Institute'),
(139197, 109653, 'ko', 'name', '김핓연구원'),
(139198, 109654, 'en', 'name', 'Uma Nath Singh Autonomous State Medical College Jaunpur'),
(139199, 109655, 'en', 'name', 'University of Alberta'),
(139200, 109655, 'fr', 'name', 'UniversitƩ de l''Alberta'),
(139201, 109656, 'en', 'name', 'Chung-Ang University'),
(139202, 109656, 'ko', 'name', 'ģ¤‘ģ•™ėŒ€ķ•™źµ'),
(139203, 109657, 'en', 'name', 'Ewha Womans University Cancer Center for Women'),
(139204, 109657, 'ko', 'name', 'ģ“ėŒ€ģ—¬ģ„±ģ•”ė³‘ģ›'),
(139205, 109658, 'en', 'name', 'Pohang Medical Center'),
(139206, 109658, 'ko', 'name', 'ķ¬ķ•­ģ˜ė£Œģ›'),
(139207, 109659, 'es', 'name', 'Kveloce'),
(139208, 109659, 'no_lang_code', 'name', 'Kveloce (Spain)'),
(139209, 109660, 'en', 'name', 'Dominican University, Ibadan'),
(139210, 109661, 'fr', 'name', 'Laboratoire de gƩnƩtique et biologie cellulaire'),
(139211, 109661, 'en', 'name', 'Laboratory of Genetics and Biology of the Cell'),
(139212, 109662, 'en', 'name', 'Gyeongsang National University Changwon Hospital'),
(139213, 109662, 'ko', 'name', 'ģ°½ģ›ź²½ģƒźµ­ė¦½ėŒ€ķ•™źµė³‘ģ›');
INSERT INTO `ror_settings` VALUES
(139214, 109663, 'en', 'name', 'Gyeonggi Provincal Medical Center Ansung Hospital'),
(139215, 109663, 'ko', 'name', 'ź²½źø°ė„ģ˜ė£Œģ› ģ•ˆģ„±ė³‘ģ›'),
(139216, 109664, 'en', 'name', 'Saint Paul University'),
(139217, 109664, 'fr', 'name', 'UniversitƩ Saint-Paul'),
(139218, 109665, 'en', 'name', 'Gyeonggido Business and Science Accelerator'),
(139219, 109665, 'ko', 'name', 'ź²½źø°ė„ź²½ģ œź³¼ķ•™ģ§„ķ„ģ›'),
(139220, 109666, 'en', 'name', 'W. G. (Bill) Hefner VA Medical Center'),
(139221, 109667, 'fr', 'name', 'Centre national des arts du cirque'),
(139222, 109668, 'en', 'name', 'Virginia Wesleyan University'),
(139223, 109669, 'en', 'name', 'Rabdan Academy'),
(139224, 109669, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© ربدان'),
(139225, 109670, 'fr', 'name', 'Laboratoire de recherche en droit'),
(139226, 109671, 'es', 'name', 'Hospital Nacional Cayetano Heredia'),
(139227, 109672, 'en', 'name', 'Yongin Research Institute'),
(139228, 109672, 'ko', 'name', 'ģš©ģøģ‹œģ •ģ—°źµ¬ģ›'),
(139229, 109673, 'en', 'name', 'Jinju Medical Center'),
(139230, 109673, 'ko', 'name', 'ģ§„ģ£¼ģ˜ė£Œģ›'),
(139231, 109674, 'en', 'name', 'Kyung Hee University Dental Hospital at Gangdong'),
(139232, 109674, 'ko', 'name', 'ź°•ė™ź²½ķ¬ėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(139233, 109675, 'en', 'name', 'Financial Services Commission'),
(139234, 109675, 'ko', 'name', 'źøˆģœµģœ„ģ›ķšŒ'),
(139235, 109676, 'en', 'name', 'Decision & Information Sciences for Production Systems'),
(139236, 109676, 'fr', 'name', 'Décision et Information pour les Systèmes de Production'),
(139237, 109677, 'fr', 'name', 'Savoirs, Environnement, SociƩtƩs'),
(139238, 109678, 'en', 'name', 'Jogesh Chandra Chaudhuri College'),
(139239, 109679, 'en', 'name', 'Incheon International Airport Corporation (South Korea)'),
(139240, 109679, 'ko', 'name', 'ģøģ²œźµ­ģ œź³µķ•­ź³µģ‚¬'),
(139241, 109680, 'en', 'name', 'Mahallat Institute of Higher Education'),
(139242, 109681, 'fr', 'name', 'Laboratoire d''analyse des signaux & des processus industriels'),
(139243, 109682, 'fr', 'name', 'Parcours santƩ systƩmique'),
(139244, 109683, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''IngĆ©nieurs du Mans'),
(139245, 109684, 'cy', 'name', 'Coleg Prifysgol Llundain'),
(139246, 109684, 'en', 'name', 'University College London'),
(139247, 109685, 'en', 'name', 'Centre for Management Development'),
(139248, 109686, 'fr', 'name', 'ESIEE-IT'),
(139249, 109687, 'en', 'name', 'Chongqing Municipal Government'),
(139250, 109688, 'en', 'name', 'Arab Administrative Development Organization'),
(139251, 109689, 'en', 'name', 'Universitas Amikom Purwokerto'),
(139252, 109690, 'fr', 'name', 'Cognition, Action et PlasticitƩ Sensorimotrice'),
(139253, 109690, 'en', 'name', 'Cognition, Action, and Sensorimotor Plasticity'),
(139254, 109691, 'en', 'name', 'Korea Asset Management Corporation'),
(139255, 109691, 'ko', 'name', 'ķ•œźµ­ģžģ‚°ź“€ė¦¬ź³µģ‚¬'),
(139256, 109692, 'fr', 'name', 'UniversitƩ Paris-PanthƩon-Assas'),
(139257, 109693, 'en', 'name', 'Cheonan Medical Center'),
(139258, 109693, 'ko', 'name', 'ģ²œģ•ˆģ˜ė£Œģ›'),
(139259, 109694, 'en', 'name', 'Emirates International University'),
(139260, 109694, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ł…Ų§Ų±Ų§ŲŖŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(139261, 109695, 'en', 'name', 'Korea Construction Equipment Technology Institute'),
(139262, 109695, 'ko', 'name', 'ķ•œźµ­ź±“ģ„¤źø°ź³„ģ—°źµ¬ģ›'),
(139263, 109696, 'fr', 'name', 'SƩminaire de Sherbrooke'),
(139264, 109697, 'en', 'name', 'University of Sfax'),
(139265, 109697, 'fr', 'name', 'UniversitƩ de Sfax'),
(139266, 109697, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© صفاقس'),
(139267, 109698, 'en', 'name', 'Samsung Austin Semiconductor (United States)'),
(139268, 109699, 'fr', 'name', 'Brest Business School'),
(139269, 109700, 'en', 'name', 'Yeongdeok Asan Hospital'),
(139270, 109700, 'ko', 'name', 'ģ˜ė•ģ•„ģ‚°ė³‘ģ›'),
(139271, 109701, 'en', 'name', 'Seongnam Research Institute'),
(139272, 109701, 'ko', 'name', 'ģ„±ė‚Øģ‹œģ •ģ—°źµ¬ģ›'),
(139273, 109702, 'en', 'name', 'LIGS University'),
(139274, 109703, 'en', 'name', 'Dongguk University Ilsan Oriental Hospital'),
(139275, 109703, 'ko', 'name', 'ė™źµ­ėŒ€ķ•™źµ ģ¼ģ‚°ķ•œė°©ė³‘ģ›'),
(139276, 109704, 'en', 'name', 'Echotex'),
(139277, 109704, 'no_lang_code', 'name', 'Echotex (Bangladesh)'),
(139278, 109705, 'en', 'name', 'Keshav Memorial Institute of Commerce and Sciences'),
(139279, 109706, 'en', 'name', 'Pakistan Air Quality Initiative (Pakistan)'),
(139280, 109707, 'en', 'name', 'Land and Geospatial Informatix Corporation (South Korea)'),
(139281, 109707, 'ko', 'name', 'ķ•œźµ­źµ­ķ† ģ •ė³“ź³µģ‚¬'),
(139282, 109708, 'en', 'name', 'Kyung Hee University Humanitas Cancer Center'),
(139283, 109708, 'ko', 'name', 'ź²½ķ¬ėŒ€ķ•™źµķ›„ė§ˆė‹ˆķƒ€ģŠ¤ģ•”ė³‘ģ›'),
(139284, 109709, 'en', 'name', 'Bengal School of Technology and Management'),
(139285, 109710, 'fr', 'name', 'Centre François Viète'),
(139286, 109711, 'en', 'name', 'Dong-Eui Medical Center'),
(139287, 109711, 'ko', 'name', 'ė™ģ˜ģ˜ė£Œģ›'),
(139288, 109712, 'es', 'name', 'Sociedad Española de Gastroenterología, Hepatología y Nutrición PediÔtrica'),
(139289, 109713, 'en', 'name', 'Samsung Seoul Hospital'),
(139290, 109713, 'ko', 'name', 'ģ‚¼ģ„±ģ„œģšøė³‘ģ›'),
(139291, 109714, 'id', 'name', 'Universitas Yarsi Pratama'),
(139292, 109715, 'fr', 'name', 'France UniversitƩs'),
(139293, 109716, 'en', 'name', 'Kyung Hee University Korean Medicine Hospital'),
(139294, 109716, 'ko', 'name', 'ź²½ķ¬ėŒ€ķ•™źµķ•œė°©ė³‘ģ›'),
(139295, 109717, 'en', 'name', 'George Institute for Global Health'),
(139296, 109718, 'en', 'name', 'Jeju Research Institute'),
(139297, 109718, 'ko', 'name', 'ģ œģ£¼ģ—°źµ¬ģ›'),
(139298, 109719, 'en', 'name', 'Geely University of China'),
(139299, 109719, 'zh', 'name', '吉利学院'),
(139300, 109720, 'es', 'name', 'Escuela Normal Superior de QuerƩtaro'),
(139301, 109721, 'fr', 'name', 'Laboratoire de GƩnie Civil et GƩo Environnement'),
(139302, 109722, 'en', 'name', 'Burgundy School of Business'),
(139303, 109722, 'fr', 'name', 'ESC Dijon Bourgogne, Ɖcole supĆ©rieure de commerce de Dijon-Bourgogne'),
(139304, 109723, 'en', 'name', 'Kyung Hee University Korean Medicine Hospital at Gangdong'),
(139305, 109723, 'ko', 'name', 'ź°•ė™ź²½ķ¬ėŒ€ķ•™źµķ•œė°©ė³‘ģ›'),
(139306, 109724, 'en', 'name', 'Dongguk University Gyeongju Hospital'),
(139307, 109724, 'ko', 'name', 'ė™źµ­ėŒ€ķ•™źµ 경주병원'),
(139308, 109725, 'en', 'name', 'Samsung Semiconductor (United States)'),
(139309, 109726, 'fr', 'name', 'Centre interuniversitaire d''Ʃtudes et de recherches autochtones'),
(139310, 109727, 'en', 'name', 'Freetown Polytechnic'),
(139311, 109728, 'en', 'name', 'Ansan Research Institute'),
(139312, 109728, 'ko', 'name', 'ģ•ˆģ‚°ėÆøėž˜ģ—°źµ¬ģ›'),
(139313, 109729, 'en', 'name', 'George Institute for Global Health'),
(139314, 109730, 'no_lang_code', 'name', 'Dongguk University'),
(139315, 109730, 'ko', 'name', 'ė™źµ­ėŒ€ķ•™źµ'),
(139316, 109731, 'en', 'name', 'Dongshin University Gwangju Korean Medicine Hospital'),
(139317, 109731, 'ko', 'name', 'ź“‘ģ£¼ė™ģ‹ ėŒ€ķ•™źµķ•œė°©ė³‘ģ›'),
(139318, 109732, 'en', 'name', 'Wonkwang University Sanbon Dental Hospital'),
(139319, 109732, 'ko', 'name', 'ģ›ź“‘ėŒ€ķ•™źµ ģ‚°ė³øģ¹˜ź³¼ė³‘ģ›'),
(139320, 109733, 'en', 'name', 'Machon Siach'),
(139321, 109734, 'en', 'name', 'Claretian University of Nigeria'),
(139322, 109735, 'fr', 'name', 'Centre Hospitalier Universitaire de Saint-Ɖtienne'),
(139323, 109736, 'en', 'name', 'Rangjung Yeshe Institute'),
(139324, 109737, 'en', 'name', 'UpStage (South Korea)'),
(139325, 109737, 'ko', 'name', 'ģ—…ģŠ¤ķ…Œģ“ģ§€'),
(139326, 109738, 'en', 'name', 'Kakao Brain (South Korea)'),
(139327, 109738, 'ko', 'name', 'ģ¹“ģ¹“ģ˜¤ėøŒė ˆģø'),
(139328, 109739, 'it', 'name', 'Accademia Nazionale di Danza'),
(139329, 109740, 'en', 'name', 'University of NƮmes'),
(139330, 109740, 'fr', 'name', 'UniversitƩ de NƮmes'),
(139331, 109741, 'en', 'name', 'Lille School of Journalism'),
(139332, 109741, 'fr', 'name', 'Ɖcole supĆ©rieure de journalisme de Lille'),
(139333, 109742, 'en', 'name', 'Gangwon State Sokcho Medical Center'),
(139334, 109742, 'ko', 'name', 'ź°•ģ›ķŠ¹ė³„ģžģ¹˜ė„ģ†ģ“ˆģ˜ė£Œģ›'),
(139335, 109743, 'en', 'name', 'Ewha Womans University Urology Institute'),
(139336, 109743, 'ko', 'name', 'ģ“ėŒ€ė¹„ė‡Øźø°ė³‘ģ›'),
(139337, 109744, 'es', 'name', 'Universidad del Caribe PanamĆ”'),
(139338, 109745, 'en', 'name', 'Wonkwang University Daejeon Dental Hospital'),
(139339, 109745, 'ko', 'name', 'ģ›ź“‘ėŒ€ķ•™źµ ėŒ€ģ „ģ¹˜ź³¼ė³‘ģ›'),
(139340, 109746, 'fr', 'name', 'Modélisation multi-échelle des systèmes urbains'),
(139341, 109747, 'fr', 'name', 'Institut de Physique de Rennes'),
(139342, 109748, 'en', 'name', 'Jilin University'),
(139343, 109748, 'zh', 'name', 'å‰ęž—å¤§å­¦'),
(139344, 109749, 'id', 'name', 'Institut Teknologi Kesehatan dan Sains Wiyata Husada Samarinda'),
(139345, 109750, 'fr', 'name', 'Y SCHOOLS'),
(139346, 109751, 'en', 'name', 'Kakaobank (South Korea)'),
(139347, 109751, 'ko', 'name', 'ģ¹“ģ¹“ģ˜¤ė±…ķ¬'),
(139348, 109752, 'en', 'name', 'Agroecology'),
(139349, 109752, 'fr', 'name', 'AgroƩcologie'),
(139350, 109753, 'en', 'name', 'Jiangsu Agricultural Science and Technology Innovation Fund'),
(139351, 109753, 'zh', 'name', 'ę±Ÿč‹ēœå†œäøšē§‘ęŠ€č‡Ŗäø»åˆ›ę–°åŸŗé‡‘'),
(139352, 109754, 'ko', 'name', 'ECOģœµķ•©ģ„¬ģœ ģ—°źµ¬ģ›'),
(139353, 109754, 'en', 'name', 'Korea Institute of Convergence Textile'),
(139354, 109755, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Beaux-Arts de Lyon'),
(139355, 109756, 'en', 'name', 'Bratislava University of Economics and Management'),
(139356, 109756, 'sk', 'name', 'VysokÔ Ŕkola ekonómie a manažmentu v Bratislave'),
(139357, 109757, 'en', 'name', 'Oral Health'),
(139358, 109757, 'fr', 'name', 'SantƩ Orale'),
(139359, 109758, 'fr', 'name', 'ITESCIA'),
(139360, 109759, 'en', 'name', 'College of Remote and Offshore Medicine'),
(139361, 109760, 'en', 'name', 'Yeongnam Regional Rehabilitation Hospital'),
(139362, 109760, 'ko', 'name', 'ģ–‘ģ‚°ė¶€ģ‚°ėŒ€ķ•™źµė³‘ģ› ģ˜ė‚Øź¶Œģ—­ģž¬ķ™œė³‘ģ›'),
(139363, 109761, 'en', 'name', 'NAVER Cloud (South Korea)'),
(139364, 109761, 'ko', 'name', 'ė„¤ģ“ė²„ ķ“ė¼ģš°ė“œ'),
(139365, 109762, 'fr', 'name', 'NƮmes UniversitƩ'),
(139366, 109763, 'en', 'name', 'United States Space Force Space Systems Command'),
(139367, 109764, 'en', 'name', 'Geumgang Asan Hospital'),
(139368, 109764, 'ko', 'name', 'źøˆź°•ģ•„ģ‚°ė³‘ģ›'),
(139369, 109765, 'en', 'name', 'Pereslavl Museum-Reserve'),
(139370, 109766, 'en', 'name', 'Jecheon Myongji Hospital'),
(139371, 109766, 'ko', 'name', 'ģ œģ²œėŖ…ģ§€ė³‘ģ›'),
(139372, 109767, 'fr', 'name', 'Institut franƧais de la mode'),
(139373, 109768, 'fr', 'name', 'MinistĆØre de l’Environnement, de la Lutte contre les changements climatiques, de la Faune et des Parcs'),
(139374, 109769, 'en', 'name', 'Gyeonggi Provincal Medical Center Icheon Hospital'),
(139375, 109769, 'ko', 'name', 'ź²½źø°ė„ģ˜ė£Œģ› ģ“ģ²œė³‘ģ›'),
(139376, 109770, 'fr', 'name', 'Maison des Sciences de l''Homme SUD'),
(139377, 109771, 'en', 'name', 'Education Department of Shaanxi Province'),
(139378, 109771, 'zh', 'name', 'é™•č„æēœę•™č‚²åŽ…'),
(139379, 109772, 'fr', 'name', 'IDRAC Business School'),
(139380, 109773, 'en', 'name', 'The Ɖlisabeth-BruyĆØre School of Social Innovation'),
(139381, 109773, 'fr', 'name', 'Ɖcole d''innovation sociale Ɖlisabeth-BruyĆØre'),
(139382, 109774, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art Pays Basque'),
(139383, 109775, 'en', 'name', 'Gangwon Institute'),
(139384, 109775, 'ko', 'name', '강원연구원'),
(139385, 109776, 'en', 'name', 'Boryeong Asan Hospital'),
(139386, 109776, 'ko', 'name', '볓령아산병원'),
(139387, 109777, 'fr', 'name', 'Groupe de Recherche Interuniversitaire sur la NormativitƩ'),
(139388, 109777, 'en', 'name', 'Interuniversity Normativity Research Group'),
(139389, 109778, 'fr', 'name', 'Centre d’histoire culturelle des sociĆ©tĆ©s contemporaines'),
(139390, 109779, 'fr', 'name', 'Centre de la science de la biodiversitƩ du QuƩbec'),
(139391, 109779, 'en', 'name', 'Quebec Centre For Biodiversity Science'),
(139392, 109780, 'fr', 'name', 'Centre de Recherche en Ɖconomie et Management'),
(139393, 109781, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Formation de l’Enseignement Agricole'),
(139394, 109782, 'no_lang_code', 'name', 'Aichi Shukutoku University'),
(139395, 109782, 'ja', 'name', 'ę„›ēŸ„ę·‘å¾³å¤§å­¦'),
(139396, 109783, 'en', 'name', 'Daegu Catholic University Chilgok Catholic Hospital'),
(139397, 109783, 'ko', 'name', 'ėŒ€źµ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµ 칠곔가톨릭병원'),
(139398, 109784, 'es', 'name', 'Universidad Peruana Cayetano Heredia'),
(139399, 109785, 'fr', 'name', 'AcadƩmie des technologies'),
(139400, 109785, 'en', 'name', 'National Academy of Technologies of France'),
(139401, 109786, 'en', 'name', 'Quebec Pain Research Network'),
(139402, 109786, 'fr', 'name', 'RƩseau quƩbƩcois de recherche sur la douleur'),
(139403, 109787, 'en', 'name', 'Hanoi University'),
(139404, 109787, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c HĆ  Nį»™i'),
(139405, 109787, 'fr', 'name', 'Université de hanoï'),
(139406, 109788, 'en', 'name', 'Science and Technology Department of Zhejiang Province'),
(139407, 109788, 'zh', 'name', 'ęµ™ę±Ÿēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(139408, 109789, 'fr', 'name', 'Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement'),
(139409, 109790, 'en', 'name', 'Gyeonggi Provincal Medical Center Pocheon Hospital'),
(139410, 109790, 'ko', 'name', 'ź²½źø°ė„ģ˜ė£Œģ› ķ¬ģ²œė³‘ģ›'),
(139411, 109791, 'en', 'name', 'True P.A.L.E.O. Inc'),
(139412, 109792, 'fr', 'name', 'Institut international de sociologie du droit'),
(139413, 109792, 'es', 'name', 'Instituto Internacional de Sociologƭa Jurƭdica de OƱati'),
(139414, 109792, 'en', 'name', 'OƱati International Institute for the Sociology of Law Foundation'),
(139415, 109792, 'eu', 'name', 'OƱatiko Lege Soziologiako Nazioarteko Erakundea'),
(139416, 109793, 'en', 'name', 'Chinese Academy of Medical Sciences & Peking Union Medical College'),
(139417, 109793, 'zh', 'name', 'äø­å›½åŒ»å­¦ē§‘å­¦é™¢åŒ—äŗ¬åå’ŒåŒ»å­¦é™¢'),
(139418, 109794, 'en', 'name', 'West Virginia University Institute of Technology'),
(139419, 109795, 'en', 'name', 'KB Kookmin Bank (South Korea)'),
(139420, 109795, 'ko', 'name', 'KBźµ­ėÆ¼ģ€ķ–‰'),
(139421, 109796, 'en', 'name', 'Environment, City, Society'),
(139422, 109796, 'fr', 'name', 'Environnement, ville, sociƩtƩ'),
(139423, 109797, 'en', 'name', 'Oubari Habboush Pharma (Syria)'),
(139424, 109798, 'en', 'name', 'Korea Textile Development Institute'),
(139425, 109798, 'ko', 'name', 'ķ•œźµ­ģ„¬ģœ ź°œė°œģ—°źµ¬ģ›'),
(139426, 109799, 'en', 'name', 'Earth Rover Program'),
(139427, 109800, 'es', 'name', 'Facultad de Estudios Superiores CuautitlƔn'),
(139428, 109801, 'en', 'name', 'An Sinh Hospital'),
(139429, 109801, 'vi', 'name', 'Bệnh viện An Sinh'),
(139430, 109802, 'en', 'name', 'Korea Silk Research Institute'),
(139431, 109802, 'ko', 'name', 'ķ•œźµ­ģ‹¤ķ¬ģ—°źµ¬ģ›'),
(139432, 109803, 'en', 'name', 'Wonkwang University Dental Hospital'),
(139433, 109803, 'ko', 'name', 'ģ›ź“‘ėŒ€ķ•™źµ ģ¹˜ź³¼ė³‘ģ›'),
(139434, 109804, 'fr', 'name', 'DƩveloppement Embryonnaire, FertilitƩ et Environnement'),
(139435, 109805, 'fr', 'name', 'Maison des Sciences sociales et des HumanitƩs de Dijon'),
(139436, 109806, 'en', 'name', 'Hongcheon Asan Hospital'),
(139437, 109806, 'ko', 'name', 'ķ™ģ²œģ•„ģ‚°ė³‘ģ›'),
(139438, 109807, 'en', 'name', 'Ewha Womans University Blood Cancer Hospital'),
(139439, 109807, 'ko', 'name', 'ģ“ėŒ€ķ˜ˆģ•”ģ•”ė³‘ģ›'),
(139440, 109808, 'en', 'name', 'Gachon University Medical Center Gil Oriental Medicine Clinic'),
(139441, 109808, 'ko', 'name', 'ź°€ģ²œėŒ€ķ•™źµė¶€ģ† źøøķ•œė°©ė³‘ģ›'),
(139442, 109809, 'en', 'name', 'People''s Government of Guangzhou Municipality'),
(139443, 109809, 'zh', 'name', 'å¹æå·žåø‚ę”æåŗœ'),
(139444, 109810, 'fr', 'name', 'Maison des Sciences de l''Homme'),
(139445, 109811, 'pl', 'name', 'Ministerstwo Cyfryzacji'),
(139446, 109812, 'en', 'name', 'Hanoi Procuratorate University'),
(139447, 109812, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kiểm sĆ”t'),
(139448, 109813, 'en', 'name', 'Kyungpook National University Children''s Hospital'),
(139449, 109813, 'ko', 'name', 'ź²½ė¶ėŒ€ķ•™źµģ–“ė¦°ģ“ė³‘ģ›'),
(139450, 109814, 'en', 'name', 'Daegu Haany University'),
(139451, 109814, 'ko', 'name', 'ėŒ€źµ¬ķ•œģ˜ėŒ€ķ•™źµ'),
(139452, 109815, 'fr', 'name', 'Education, Cultures, Politiques'),
(139453, 109816, 'fr', 'name', 'Ligue nationale de hockey'),
(139454, 109816, 'en', 'name', 'National Hockey League'),
(139455, 109817, 'en', 'name', 'Bac Ninh Sport University of Viet Nam'),
(139456, 109817, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Thể dỄc Thể thao BįŗÆc Ninh'),
(139457, 109817, 'zh', 'name', 'åŒ—å®ä½“č‚²å¤§å­¦'),
(139458, 109818, 'en', 'name', 'Tianjin Municipal Science and Technology Commission'),
(139459, 109818, 'zh', 'name', 'å¤©ę“„åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(139460, 109819, 'fr', 'name', 'Laboratoire d’Économie et de Gestion de l''Ouest'),
(139461, 109820, 'en', 'name', 'Ajou University Medical Center'),
(139462, 109820, 'ko', 'name', 'ģ•„ģ£¼ėŒ€ķ•™źµģ˜ė£Œģ›'),
(139463, 109821, 'en', 'name', 'Korea Institute of Nuclear Nonproliferation & Control'),
(139464, 109821, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ķ†µģ œźø°ģˆ ģ›'),
(139465, 109822, 'fr', 'name', 'Centre d''entrepreneuriat Poly-UdeM'),
(139466, 109823, 'en', 'name', 'Lviv State University of Internal Affairs'),
(139467, 109823, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(139468, 109824, 'en', 'name', 'Yunnan Province Science and Technology Department'),
(139469, 109824, 'zh', 'name', 'äŗ‘å—ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(139470, 109825, 'en', 'name', 'Faculty of Sciences of Sfax'),
(139471, 109825, 'fr', 'name', 'FacultƩ des Sciences de Sfax'),
(139472, 109825, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… بصفاقس'),
(139473, 109826, 'en', 'name', 'Calima Foundation'),
(139474, 109826, 'es', 'name', 'Fundación Calima'),
(139475, 109827, 'en', 'name', 'Jiangsu Academy of Agricultural Sciences'),
(139476, 109827, 'zh', 'name', 'ę±Ÿč‹ēœå†œäøšē§‘å­¦é™¢'),
(139477, 109828, 'en', 'name', 'Mekong University'),
(139478, 109829, 'en', 'name', 'UCL Queen Square Institute of Neurology'),
(139479, 109830, 'en', 'name', 'Jinangun Medical Center'),
(139480, 109830, 'ko', 'name', 'ģ§„ģ•ˆźµ°ģ˜ė£Œģ›'),
(139481, 109831, 'en', 'name', 'Ewha Womans University Cerebrovascular Hospital'),
(139482, 109831, 'ko', 'name', 'ģ“ėŒ€ė‡Œķ˜ˆź“€ė³‘ģ›'),
(139483, 109832, 'en', 'name', 'Hebei Science and Technology Department'),
(139484, 109833, 'en', 'name', 'Daegu Medical Center'),
(139485, 109833, 'ko', 'name', 'ėŒ€źµ¬ģ˜ė£Œģ›'),
(139486, 109834, 'en', 'name', 'Jeongeup Asan Hospital'),
(139487, 109834, 'ko', 'name', 'ģ •ģģ•„ģ‚°ė³‘ģ›'),
(139488, 109835, 'fr', 'name', 'Laboratoire de Biotechnologie et Chimie Marines'),
(139489, 109836, 'en', 'name', 'National Institute of Horticultural and Herbal Science'),
(139490, 109836, 'ko', 'name', 'źµ­ė¦½ģ›ģ˜ˆķŠ¹ģž‘ź³¼ķ•™ģ›'),
(139491, 109837, 'en', 'name', 'ChungNam Institute'),
(139492, 109837, 'ko', 'name', '충남연구원'),
(139493, 109838, 'en', 'name', 'Knowledge University'),
(139494, 109838, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†ŁˆŁ„Ų¬'),
(139495, 109838, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ نۆلج'),
(139496, 109839, 'fr', 'name', 'Conservatoire national supƩrieur d''art dramatique'),
(139497, 109840, 'es', 'name', 'Universidad de Ciencias MƩdicas de Santiago de Cuba'),
(139498, 109841, 'en', 'name', 'Chonnam National University Children''s Hospital'),
(139499, 109841, 'ko', 'name', 'ģ „ė‚ØėŒ€ķ•™źµģ–“ė¦°ģ“ė³‘ģ›'),
(139500, 109842, 'en', 'name', 'Department of Agricultural Research'),
(139501, 109843, 'fr', 'name', 'Centre Hospitalier Universitaire de NƮmes'),
(139502, 109844, 'en', 'name', 'Changwon Research Institute'),
(139503, 109844, 'ko', 'name', 'ģ°½ģ›ģ‹œģ •ģ—°źµ¬ģ›'),
(139504, 109845, 'en', 'name', 'National Traffic injury Rehabilitation Hospital'),
(139505, 109845, 'ko', 'name', 'źµ­ė¦½źµķ†µģž¬ķ™œė³‘ģ›'),
(139506, 109846, 'fr', 'name', 'Institut de gƩnƩtique et de dƩveloppement de Rennes'),
(139507, 109846, 'en', 'name', 'Institute of Genetics and Development of Rennes'),
(139508, 109847, 'en', 'name', 'Jeonju Research Institute'),
(139509, 109847, 'ko', 'name', 'ģ „ģ£¼ģ‹œģ •ģ—°źµ¬ģ›'),
(139510, 109848, 'en', 'name', 'Wonkwang University Oriental Medical Hospital Jeonju'),
(139511, 109848, 'ko', 'name', 'ģ›ź“‘ėŒ€ķ•™źµ ģ „ģ£¼ķ•œė°©ė³‘ģ›'),
(139512, 109849, 'en', 'name', 'Chaum'),
(139513, 109849, 'ko', 'name', '차움'),
(139514, 109850, 'en', 'name', 'Seoul National University Gwanak Dental Hospital'),
(139515, 109850, 'ko', 'name', 'ź“€ģ•…ģ„œģšøėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(139516, 109851, 'en', 'name', 'National Medical Products Administration'),
(139517, 109852, 'en', 'name', 'Uljin Medical Center'),
(139518, 109852, 'ko', 'name', 'ģšøģ§„źµ°ģ˜ė£Œģ›'),
(139519, 109853, 'en', 'name', 'Korea Institute of Child Care & Education'),
(139520, 109853, 'ko', 'name', 'ģœ”ģ•„ģ •ģ±…ģ—°źµ¬ģ†Œ'),
(139521, 109854, 'en', 'name', 'Dankook University Dental Hospital'),
(139522, 109854, 'ko', 'name', 'ė‹Øźµ­ėŒ€ķ•™źµ ģ¹˜ź³¼ėŒ€ķ•™ė³‘ģ›'),
(139523, 109855, 'en', 'name', 'Grenoble Institute of Technology'),
(139524, 109855, 'fr', 'name', 'Institut polytechnique de Grenoble'),
(139525, 109856, 'en', 'name', 'Keimyung University Dongsan Medical Center'),
(139526, 109856, 'ko', 'name', 'ź³„ėŖ…ėŒ€ķ•™źµ ė™ģ‚°ģ˜ė£Œģ›'),
(139527, 109857, 'en', 'name', 'Abhilashi University'),
(139528, 109858, 'en', 'name', 'Mokpo Medical Center'),
(139529, 109858, 'ko', 'name', 'ėŖ©ķ¬ģ‹œģ˜ė£Œģ›'),
(139530, 109859, 'en', 'name', 'Siheung Research Institute'),
(139531, 109859, 'ko', 'name', 'ģ‹œķ„ģ‹œģ •ģ—°źµ¬ģ›'),
(139532, 109860, 'en', 'name', 'Chalimbana University'),
(139533, 109861, 'en', 'name', 'Amity University Bengaluru'),
(139534, 109862, 'fr', 'name', 'Centre Innovation et Droit'),
(139535, 109863, 'pl', 'name', 'Uniwersytet VIZJA'),
(139536, 109863, 'en', 'name', 'VIZJA University'),
(139537, 109864, 'fr', 'name', 'Institut de GƩnƩtique, Environnement et Protection des Plantes'),
(139538, 109864, 'en', 'name', 'Institute for Genetics, Environment and Plant Protection'),
(139539, 109865, 'en', 'name', 'Daejeon Sejong Research Institute'),
(139540, 109865, 'ko', 'name', 'ėŒ€ģ „ģ„øģ¢…ģ—°źµ¬ģ›'),
(139541, 109866, 'en', 'name', 'New York State Office of Cannabis Management'),
(139542, 109867, 'en', 'name', 'National University of Mar del Plata'),
(139543, 109867, 'es', 'name', 'Universidad Nacional de Mar del Plata'),
(139544, 109868, 'ko', 'name', 'Gyeongsangnam-do Masan Medical Center'),
(139545, 109869, 'en', 'name', 'Sidho-Kanho-Birsha University'),
(139546, 109869, 'bn', 'name', 'সিধো কানো বিরসা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(139547, 109870, 'en', 'name', 'Korea Textile Machinery Convergence Research Institute'),
(139548, 109870, 'ko', 'name', 'ķ•œźµ­ģ„¬ģœ źø°ź³„ģœµķ•©ģ—°źµ¬ģ›'),
(139549, 109871, 'fr', 'name', 'Centre national des œuvres universitaires et scolaires'),
(139550, 109872, 'en', 'name', 'The Hwaseong Institute'),
(139551, 109872, 'ko', 'name', 'ķ™”ģ„±ģ‹œģ—°źµ¬ģ›'),
(139552, 109873, 'fr', 'name', 'Centre Max Weber'),
(139553, 109874, 'no_lang_code', 'name', 'Beijing HuiLongGuan Hospital'),
(139554, 109874, 'zh', 'name', 'åŒ—äŗ¬å›žé¾™č§‚åŒ»é™¢'),
(139555, 109875, 'en', 'name', 'University of Technology Tarbes Occitanie PyrƩnƩes'),
(139556, 109875, 'fr', 'name', 'UniversitƩ de technologie Tarbes Occitanie PyrƩnƩes'),
(139557, 109876, 'en', 'name', 'Nanjing University of Information Science and Technology'),
(139558, 109876, 'zh', 'name', 'å—äŗ¬äæ”ęÆå·„ēØ‹å¤§å­¦'),
(139559, 109877, 'en', 'name', 'Gyeonggi Provincal Medical Center Uijeongbu Hospital'),
(139560, 109877, 'ko', 'name', 'ź²½źø°ė„ģ˜ė£Œģ› ģ˜ģ •ė¶€ė³‘ģ›'),
(139561, 109878, 'fr', 'name', 'Institut d''ingƩnierie informatique de Limoges'),
(139562, 109878, 'en', 'name', 'The Limoges Computer Sciences Engineering School'),
(139563, 109879, 'en', 'name', 'Dongshin Korean Medicine Hospital'),
(139564, 109879, 'ko', 'name', 'ė™ģ‹ ķ•œė°©ė³‘ģ›'),
(139565, 109880, 'en', 'name', 'Hanyang University Hospital for Rheumatic Disease'),
(139566, 109880, 'ko', 'name', 'ķ•œģ–‘ėŒ€ķ•™źµė„˜ė§ˆķ‹°ģŠ¤ė³‘ģ›'),
(139567, 109881, 'en', 'name', 'Amsterdam Institute for Addiction Research'),
(139568, 109882, 'en', 'name', 'Research Institute for Future Medicine'),
(139569, 109882, 'ko', 'name', 'ģ‚¼ģ„±ģ„œģšøė³‘ģ› ėÆøėž˜ģ˜ķ•™ģ—°źµ¬ģ›'),
(139570, 109883, 'en', 'name', 'Gyeonggi Provincal Medical Center'),
(139571, 109883, 'ko', 'name', 'ź²½źø°ė„ģ˜ė£Œģ›'),
(139572, 109884, 'en', 'name', 'Chongqing Vocational College of Electronic Technology'),
(139573, 109884, 'zh', 'name', 'é‡åŗ†ē”µå­ē§‘ęŠ€čŒäøšå­¦é™¢'),
(139574, 109885, 'fr', 'name', 'Institut des Sciences Chimiques de Rennes'),
(139575, 109885, 'en', 'name', 'Rennes Institute of Chemical Sciences'),
(139576, 109886, 'fr', 'name', 'Centre Interlangues'),
(139577, 109887, 'en', 'name', 'Polar-Alpine Botanical Garden Institute'),
(139578, 109887, 'ru', 'name', 'ŠŸŠ¾Š»ŃŃ€Š½Š¾-альпийский ботанический саГ-ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š.А. Аврорина'),
(139579, 109888, 'fr', 'name', 'Fonctions Optiques pour les Technologies de l’information'),
(139580, 109889, 'no_lang_code', 'name', 'Korea Electric Power Corporation (South Korea)'),
(139581, 109890, 'fr', 'name', 'MonastĆØre des Augustines'),
(139582, 109891, 'en', 'name', 'Nantong Institute of Technology'),
(139583, 109891, 'zh', 'name', 'å—é€šē†å·„å­¦é™¢'),
(139584, 109892, 'en', 'name', 'Hongseong Medical Center'),
(139585, 109892, 'ko', 'name', 'ķ™ģ„±ģ˜ė£Œģ›'),
(139586, 109893, 'fr', 'name', 'SAntƩ INgenierie BIOlogie Saint-Etienne'),
(139587, 109894, 'en', 'name', 'Independent Publisher Zhanneta Kozina (Ukraine)'),
(139588, 109895, 'en', 'name', 'Korea University Anam Hospital'),
(139589, 109895, 'ko', 'name', 'ź³ ėŒ€ģ•ˆģ•”ė³‘ģ›'),
(139590, 109896, 'en', 'name', 'National Geographic Information Institute'),
(139591, 109896, 'ko', 'name', '국토지리정볓원'),
(139592, 109897, 'en', 'name', 'Baptist Health System'),
(139593, 109898, 'en', 'name', 'Pusan National University Korean Medicine Hospital'),
(139594, 109898, 'ko', 'name', 'ė¶€ģ‚°ėŒ€ķ•™źµķ•œė°©ė³‘ģ›'),
(139595, 109899, 'fr', 'name', 'Ɖtudes du Contemporain en LittĆ©ratures, Langues, Arts'),
(139596, 109900, 'es', 'name', 'BenemƩrita Escuela Normal Veracruzana "Enrique C. RƩbsamen"'),
(139597, 109901, 'en', 'name', 'Defense Agency for Technology and Quality'),
(139598, 109901, 'ko', 'name', 'źµ­ė°©źø°ģˆ ķ’ˆģ§ˆģ›'),
(139599, 109902, 'fr', 'name', 'RƩseau QuƩbƩcois en reproduction'),
(139600, 109903, 'en', 'name', 'National Assembly Futures Institute'),
(139601, 109903, 'ko', 'name', 'źµ­ķšŒėÆøėž˜ģ—°źµ¬ģ›'),
(139602, 109904, 'fr', 'name', 'Centre de recherche interuniversitaire sur la littƩrature et la culture quƩbƩcoises'),
(139603, 109905, 'en', 'name', 'Boseong Asan Hospital'),
(139604, 109905, 'ko', 'name', '볓성아산병원'),
(139605, 109906, 'en', 'name', 'Chungju Medical Center'),
(139606, 109906, 'ko', 'name', 'ģ¶©ģ£¼ģ˜ė£Œģ›'),
(139607, 109907, 'en', 'name', 'Department of Biotechnology Research'),
(139608, 109907, 'my', 'name', 'į€‡į€®į€į€”į€Šį€ŗį€øį€•į€Šį€¬į€žį€Æį€į€±į€žį€”į€¦į€øį€…į€®į€øį€Œį€¬į€”'),
(139609, 109908, 'en', 'name', 'Asia Pacific Foundation for Infectious Diseases'),
(139610, 109908, 'ko', 'name', 'ģ•„ģ‹œģ•„ķƒœķ‰ģ–‘ź°ģ—¼ģ—°źµ¬ģž¬ė‹Ø'),
(139611, 109909, 'id', 'name', 'KONKLUSI - Kolaborasi Inklusi Konservasi (Yayasan)'),
(139612, 109910, 'en', 'name', 'Department of Science and Technology of Anhui Province'),
(139613, 109910, 'zh', 'name', 'å®‰å¾½ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(139614, 109911, 'fr', 'name', 'Centre technique du livre de l''enseignement supƩrieur'),
(139615, 109912, 'en', 'name', 'Ajou University Dental Hospital'),
(139616, 109912, 'ko', 'name', 'ģ•„ģ£¼ėŒ€ķ•™źµ ģ¹˜ź³¼ė³‘ģ›'),
(139617, 109913, 'en', 'name', 'Beijing Tongren Hospital'),
(139618, 109913, 'zh', 'name', 'é¦–éƒ½åŒ»ē§‘å¤§å­¦é™„å±žåŒ—äŗ¬åŒä»åŒ»é™¢'),
(139619, 109914, 'en', 'name', 'Gyeonggi Provincal Medical Center Suwon Hospital'),
(139620, 109914, 'ko', 'name', 'ź²½źø°ė„ģ˜ė£Œģ› ģˆ˜ģ›ė³‘ģ›'),
(139621, 109915, 'en', 'name', 'Global Centre for Academic Research'),
(139622, 109916, 'es', 'name', 'Fundación Renal Española'),
(139623, 109917, 'en', 'name', 'Hanmaeum Medical Center'),
(139624, 109917, 'ko', 'name', 'ķ•œė§ˆģŒģ˜ė£Œģ›'),
(139625, 109918, 'en', 'name', 'Africa Health Sciences University'),
(139626, 109919, 'en', 'name', 'Institute of Marine Biology of the National Academy of Sciences of Ukraine'),
(139627, 109919, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Ń€ŃŃŒŠŗŠ¾Ń— біології ŠŠŠ України'),
(139628, 109920, 'fr', 'name', 'EDC Paris Business School'),
(139629, 109921, 'en', 'name', 'National Agricultural Products Quality Management Service'),
(139630, 109921, 'ko', 'name', 'źµ­ė¦½ė†ģ‚°ė¬¼ķ’ˆģ§ˆź“€ė¦¬ģ›'),
(139631, 109922, 'de', 'name', 'Ferdinand Porsche FERNFH'),
(139632, 109922, 'en', 'name', 'Ferdinand Porsche FERNFH – Distance-Learning University of Applied Sciences'),
(139633, 109923, 'en', 'name', 'University of Technology of CompiĆØgne'),
(139634, 109923, 'fr', 'name', 'Université de Technologie de Compiègne'),
(139635, 109924, 'en', 'name', 'Raymond M. Alf Museum of Paleontology'),
(139636, 109925, 'en', 'name', 'All India Shri Shivaji Memorial Society College of Engineering'),
(139637, 109926, 'en', 'name', 'Land and Housing Institute'),
(139638, 109926, 'ko', 'name', 'ķ† ģ§€ģ£¼ķƒģ—°źµ¬ģ›'),
(139639, 109927, 'en', 'name', 'International Standard University'),
(139640, 109928, 'en', 'name', 'Christian Medical College, Vellore'),
(139641, 109928, 'bn', 'name', 'ą¦–ą§ą¦°ą¦æą¦øą§ą¦Ÿą¦¾ą¦Ø মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ভেলোর'),
(139642, 109928, 'ta', 'name', 'ą®µąÆ‡ą®²ąÆ‚ą®°ąÆ ą®•ą®æą®±ą®æą®øąÆą®¤ą®µ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(139643, 109929, 'en', 'name', 'Seoul National University Hospital Institute of Convergence Medicine with Innovative Technology'),
(139644, 109929, 'ko', 'name', 'ģ„œģšøėŒ€ķ•™źµė³‘ģ› ģœµķ•©ģ˜ķ•™źø°ģˆ ģ›'),
(139645, 109930, 'en', 'name', 'Dongshin University Naju Korean Medicine Hospital'),
(139646, 109930, 'ko', 'name', 'ė‚˜ģ£¼ė™ģ‹ ėŒ€ķ•™źµķ•œė°©ė³‘ģ›'),
(139647, 109931, 'en', 'name', 'Kyung Hee University Healthcare System'),
(139648, 109931, 'ko', 'name', 'ź²½ķ¬ėŒ€ķ•™źµģ˜ė£Œģ›'),
(139649, 109932, 'en', 'name', 'Pontifical University of Salamanca'),
(139650, 109932, 'es', 'name', 'Universidad Pontificia de Salamanca'),
(139651, 109932, 'ca', 'name', 'Universitat PontifĆ­cia de Salamanca'),
(139652, 109933, 'en', 'name', 'Shanxi Science and Technology Department'),
(139653, 109933, 'zh', 'name', 'å±±č„æēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(139654, 109934, 'en', 'name', 'Gyeongbuk Development Institute'),
(139655, 109934, 'ko', 'name', '경북연구원'),
(139656, 109935, 'id', 'name', 'Universitas Nurdin Hamzah'),
(139657, 109936, 'en', 'name', 'Ewha Womans University Mother and Baby Hospital'),
(139658, 109936, 'ko', 'name', 'ģ“ėŒ€ģ—„ė§ˆģ•„źø°ė³‘ģ›'),
(139659, 109937, 'pl', 'name', 'Wyższa Szkoła Nauk o Zdrowiu'),
(139660, 109938, 'fr', 'name', 'Laboratoire de GƩographie et d''AmƩnagement de Montpellier'),
(139661, 109939, 'de', 'name', 'Leibniz-Institut für Lebensmittel-Systembiologie an der Technischen Universität München'),
(139662, 109939, 'en', 'name', 'Leibniz-Institute for Food Systems Biology at the Technical University of Munich'),
(139663, 109940, 'en', 'name', 'Code for Science & Society'),
(139664, 109941, 'en', 'name', 'ATTMOS Inc. (United States)'),
(139665, 109942, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Technologie'),
(139666, 109942, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(139667, 109943, 'en', 'name', 'Madhav University'),
(139668, 109944, 'en', 'name', 'Chukwuemeka Odumegwu Ojukwu University'),
(139669, 109945, 'no_lang_code', 'name', 'Fiat Chrysler Automobiles (Italy)'),
(139670, 109946, 'en', 'name', 'Intellectual Property Scientific Research Institute of the National Academy of Legal Sciences of Ukraine'),
(139671, 109946, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ДосліГний Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š†Š½Ń‚ŠµŠ»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Š¾Ń— Власності ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— АкаГемії ŠŸŃ€Š°Š²Š¾Š²ŠøŃ… ŠŠ°ŃƒŠŗ України'),
(139672, 109947, 'fr', 'name', 'Institut de Recherche en SantƩ, Environnement et Travail'),
(139673, 109947, 'en', 'name', 'Research Institute for Environmental and Occupation Health'),
(139674, 109948, 'fr', 'name', 'FERRANDI Paris'),
(139675, 109949, 'en', 'name', 'Ohio University'),
(139676, 109949, 'es', 'name', 'Universidad de Ohio'),
(139677, 109949, 'fr', 'name', 'UniversitƩ de l''ohio'),
(139678, 109950, 'en', 'name', 'Korea Seed & Variety Service'),
(139679, 109950, 'ko', 'name', 'źµ­ė¦½ģ¢…ģžģ›'),
(139680, 109951, 'fr', 'name', 'Centre de recherche en santƩ publique'),
(139681, 109951, 'en', 'name', 'Centre for Public Health Research'),
(139682, 109952, 'fr', 'name', 'Maison de l''Orient et de la MƩditerranƩe Jean Pouilloux'),
(139683, 109953, 'en', 'name', 'Inje University'),
(139684, 109953, 'ko', 'name', 'ģøģ œėŒ€ķ•™źµ'),
(139685, 109954, 'en', 'name', 'Device Lab Inc. (Japan)'),
(139686, 109955, 'en', 'name', 'National Fire Agency'),
(139687, 109955, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ģ†Œė°©ģ²­'),
(139688, 109956, 'en', 'name', 'Laboratories of Behavioral Studies'),
(139689, 109956, 'cs', 'name', 'Laboratoře BehaviorĆ”lnĆ­ch StudiĆ­'),
(139690, 109957, 'en', 'name', 'Ministry of Oceans and Fisheries'),
(139691, 109957, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ķ•“ģ–‘ģˆ˜ģ‚°ė¶€'),
(139692, 109958, 'fr', 'name', 'Institut d''Histoire des ReprƩsentations et des IdƩes dans les ModernitƩs'),
(139693, 109959, 'en', 'name', 'Namwon Medical Center'),
(139694, 109959, 'ko', 'name', 'ė‚Øģ›ģ˜ė£Œģ›'),
(139695, 109960, 'en', 'name', 'City College of Angeles'),
(139696, 109961, 'en', 'name', 'Korea University Ansan Hospital'),
(139697, 109961, 'ko', 'name', 'ź³ ėŒ€ģ•ˆģ‚°ė³‘ģ›'),
(139698, 109962, 'en', 'name', 'National University of Distance Education'),
(139699, 109962, 'es', 'name', 'Universidad Nacional de Educación a Distancia'),
(139700, 109963, 'fr', 'name', 'MusƩe national du Sport'),
(139701, 109964, 'en', 'name', 'Konkuk University Chungju Hospital'),
(139702, 109964, 'ko', 'name', 'ź±“źµ­ėŒ€ķ•™źµ 충주병원'),
(139703, 109965, 'en', 'name', 'Kakao Enterprise (South Korea)'),
(139704, 109965, 'ko', 'name', 'ģ¹“ģ¹“ģ˜¤ģ—”ķ„°ķ”„ė¼ģ“ģ¦ˆ'),
(139705, 109966, 'en', 'name', 'Agency for Defense Development'),
(139706, 109966, 'ko', 'name', 'źµ­ė°©ź³¼ķ•™ģ—°źµ¬ģ†Œ'),
(139707, 109967, 'en', 'name', 'Francisco JosƩ de Caldas District University'),
(139708, 109967, 'es', 'name', 'Universidad Distrital Francisco JosƩ de Caldas'),
(139709, 109968, 'fr', 'name', 'Universcience'),
(139710, 109969, 'en', 'name', 'Al Hayah University in Cairo'),
(139711, 109969, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŁŠŲ§Ų© بالقاهرة'),
(139712, 109970, 'en', 'name', 'Gamal Abdel Nasser University of Conakry'),
(139713, 109970, 'fr', 'name', 'UniversitƩ gamal abdel nasser de conakry'),
(139714, 109971, 'en', 'name', 'Keimyung University Gyeongju Dongsan Hospital'),
(139715, 109971, 'ko', 'name', 'ź³„ėŖ…ėŒ€ķ•™źµ ź²½ģ£¼ė™ģ‚°ė³‘ģ›'),
(139716, 109972, 'en', 'name', 'Charles Perkins Centre Histology Facility'),
(139717, 109973, 'fr', 'name', 'Centre de droit des affaires'),
(139718, 109974, 'en', 'name', 'African Digital Heritage Foundation'),
(139719, 109975, 'en', 'name', 'Green Climate Fund'),
(139720, 109975, 'ko', 'name', 'ė…¹ģƒ‰źø°ķ›„źø°źøˆ'),
(139721, 109976, 'en', 'name', 'LG (South Korea)'),
(139722, 109977, 'en', 'name', 'Korea National College of Agriculture and Fisheries'),
(139723, 109977, 'ko', 'name', 'ķ•œźµ­ė†ģˆ˜ģ‚°ėŒ€ķ•™źµ'),
(139724, 109978, 'it', 'name', 'LTER-Italia'),
(139725, 109978, 'en', 'name', 'LTER-Italy'),
(139726, 109979, 'fr', 'name', 'Institut SupƩrieur des Beaux-arts de BesanƧon'),
(139727, 109980, 'en', 'name', 'Gimcheon Medical Center'),
(139728, 109980, 'ko', 'name', 'ź¹€ģ²œģ˜ė£Œģ›'),
(139729, 109981, 'en', 'name', 'Swiss National Data and Service Center for the Humanities'),
(139730, 109982, 'no_lang_code', 'name', 'Naver (South Korea)'),
(139731, 109982, 'ko', 'name', 'ė„¤ģ“ė²„'),
(139732, 109983, 'en', 'name', 'Gachon University Medical Center Dong Incheon Gil Hospital'),
(139733, 109983, 'ko', 'name', 'ź°€ģ²œėŒ€ķ•™źµė¶€ģ† ė™ģøģ²œźøøė³‘ģ›'),
(139734, 109984, 'en', 'name', 'People''s Government of Shaanxi Province'),
(139735, 109984, 'zh', 'name', 'é™•č„æēœäŗŗę°‘ę”æåŗœ'),
(139736, 109985, 'en', 'name', 'Federal State Budget Educational Institution of Higher Education «Lesgaft National State University of Physical Education, Sport and Health, St. Petersburg»'),
(139737, 109985, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Š·Š“Š¾Ń€Š¾Š²ŃŒŃ им. Лесгафта'),
(139738, 109986, 'fr', 'name', 'Laboratoire de psychologie: dynamiques relationnelles et processus identitaires'),
(139739, 109987, 'en', 'name', 'Ministry of Strategy and Finance'),
(139740, 109987, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ źø°ķšģž¬ģ •ė¶€'),
(139741, 109988, 'en', 'name', 'Fowler Kennedy Sport Medicine Clinic'),
(139742, 109989, 'en', 'name', 'Aspiring Scholars Directed Research Program'),
(139743, 109990, 'vi', 'name', 'Hį»c Viện HĆ ng KhĆ“ng Việt Nam'),
(139744, 109990, 'en', 'name', 'Vietnam Aviation Academy'),
(139745, 109991, 'fr', 'name', 'Laboratoire de mathématiques appliquées de Compiègne'),
(139746, 109992, 'en', 'name', 'Hana Bank (South Korea)'),
(139747, 109992, 'ko', 'name', 'ķ•˜ė‚˜ģ€ķ–‰'),
(139748, 109993, 'en', 'name', 'Ohio University Zanesville'),
(139749, 109994, 'en', 'name', 'Korea Capital Market Institute'),
(139750, 109994, 'ko', 'name', 'ģžė³øģ‹œģž„ģ—°źµ¬ģ›'),
(139751, 109995, 'fr', 'name', 'Ɖcole nationale de voile et des sports nautiques'),
(139752, 109996, 'en', 'name', 'insitro, inc. (United States)'),
(139753, 109997, 'en', 'name', 'Dr. Vitthalrao Vikhe Patil Foundation’s Medical College'),
(139754, 109998, 'fr', 'name', 'Histoire et Sources des Mondes Antiques'),
(139755, 109999, 'fr', 'name', 'Haut Conseil de l''Ʃvaluation de la recherche et de l''enseignement supƩrieur'),
(139756, 109999, 'en', 'name', 'High Council for the Evaluation of Research and Higher Education'),
(139757, 110000, 'en', 'name', 'Hebei Provincial Department of Science and Technology'),
(139758, 110000, 'zh', 'name', 'ę²³åŒ—ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(139759, 110001, 'en', 'name', 'Scientific-Practical Center of Endovascular Neuroradiology of the National Academy of Medical Sciences of Ukraine'),
(139760, 110001, 'uk', 'name', 'ДУ Ā«ŠŠŸŠ¦Š•ŠŠ Š„ ŠŠŠœŠ України'),
(139761, 110002, 'en', 'name', 'Animal and Human Ethology'),
(139762, 110002, 'fr', 'name', 'Ethologie animale et humaine'),
(139763, 110003, 'sw', 'name', 'Chuo cha Takwimu Mashariki mwa Afrika'),
(139764, 110003, 'en', 'name', 'Eastern Africa Statistical Training Centre'),
(139765, 110004, 'en', 'name', 'Beijing Shunyi District Hospital'),
(139766, 110004, 'zh', 'name', 'åŒ—äŗ¬åø‚é”ŗä¹‰åŒŗåŒ»é™¢'),
(139767, 110005, 'en', 'name', 'DER Security (United States)'),
(139768, 110006, 'en', 'name', 'Center for Research on Education, Learning and Didactics'),
(139769, 110006, 'fr', 'name', 'Centre de recherche sur l’éducation, les apprentissages et la didactique'),
(139770, 110007, 'en', 'name', 'Korea AeroSpace Administration'),
(139771, 110007, 'ko', 'name', 'ģš°ģ£¼ķ•­ź³µģ²­'),
(139772, 110008, 'ko', 'name', 'IBKźø°ģ—…ģ€ķ–‰'),
(139773, 110008, 'en', 'name', 'Industrial Bank of Korea'),
(139774, 110009, 'fr', 'name', 'IUT de Paris - Rives de Seine'),
(139775, 110009, 'en', 'name', 'University Institute of Technology (IUT) of Paris – Rives de Seine'),
(139776, 110010, 'en', 'name', 'State Emergency Service of Ukraine'),
(139777, 110010, 'uk', 'name', 'Державна служба України Š· наГзвичайних ŃŠøŃ‚ŃƒŠ°Ń†Ń–Š¹'),
(139778, 110011, 'fr', 'name', 'Laboratoire Interuniversitaire de Biologie de la MotricitƩ'),
(139779, 110012, 'no', 'name', 'Senja kommune'),
(139780, 110013, 'en', 'name', 'Thal University Bhakkar'),
(139781, 110014, 'fr', 'name', 'ImViA - Imagerie et Vision Artificielle'),
(139782, 110015, 'fr', 'name', 'ENSA Dijon'),
(139783, 110015, 'en', 'name', 'ENSA Dijon Art and Design'),
(139784, 110016, 'en', 'name', 'FC3R - Groupement d’IntĆ©rĆŖt Scientifique French Center 3R'),
(139785, 110017, 'en', 'name', 'Stellantis'),
(139786, 110017, 'no_lang_code', 'name', 'Stellantis (Netherlands)'),
(139787, 110018, 'en', 'name', 'Gangwon State Wonju Medical Center'),
(139788, 110018, 'ko', 'name', 'ź°•ģ›ķŠ¹ė³„ģžģ¹˜ė„ģ›ģ£¼ģ˜ė£Œģ›'),
(139789, 110019, 'en', 'name', 'National Institute of Chemical Safety'),
(139790, 110019, 'ko', 'name', 'ķ™”ķ•™ė¬¼ģ§ˆģ•ˆģ „ģ›'),
(139791, 110020, 'en', 'name', 'National Institute of Crop Science'),
(139792, 110020, 'ko', 'name', 'źµ­ė¦½ģ‹ėŸ‰ź³¼ķ•™ģ›'),
(139793, 110021, 'en', 'name', 'ESCE International Business School'),
(139794, 110021, 'fr', 'name', 'Ɖcole SupĆ©rieure du Commerce ExtĆ©rieur'),
(139795, 110022, 'en', 'name', 'Society for Scholarly Publishing'),
(139796, 110023, 'en', 'name', 'PETA Science Consortium International e.V.'),
(139797, 110024, 'en', 'name', 'AgriBio e-Spectrum'),
(139798, 110025, 'fr', 'name', 'Institut Catholique d''Arts et MƩtiers'),
(139799, 110026, 'en', 'name', 'University of Perpetual Help System Laguna'),
(139800, 110027, 'fr', 'name', 'Approches LittƩraires, Linguistiques & Historiques des Sources'),
(139801, 110028, 'en', 'name', 'Jeju Medical Center'),
(139802, 110028, 'ko', 'name', 'ģ œģ£¼ģ˜ė£Œģ›'),
(139803, 110029, 'en', 'name', 'Korea Electric Power Research Institute'),
(139804, 110029, 'ko', 'name', '전렄연구원'),
(139805, 110030, 'en', 'name', 'Sangnam Hanmaeum Hospital'),
(139806, 110030, 'ko', 'name', 'ģƒė‚Øķ•œė§ˆģŒė³‘ģ›'),
(139807, 110031, 'fr', 'name', 'Centre de recherche de MontrƩal sur les inƩgalitƩs sociales, les discriminations et les pratiques alternatives de citoyennetƩ'),
(139808, 110032, 'fr', 'name', 'Laboratoire d''Ɖconomie des Ressources Naturelles'),
(139809, 110033, 'en', 'name', 'Woori Bank (South Korea)'),
(139810, 110033, 'ko', 'name', 'ģš°ė¦¬ģ€ķ–‰'),
(139811, 110034, 'fr', 'name', 'AcadƩmie des sciences d''outre-mer'),
(139812, 110035, 'en', 'name', 'Korea High Tech Textile Research Institute'),
(139813, 110035, 'ko', 'name', 'ķ•œźµ­ģ„¬ģœ ģ†Œģž¬ģ—°źµ¬ģ›'),
(139814, 110036, 'fr', 'name', 'Ɖcole supĆ©rieure d''Art d''Avignon'),
(139815, 110037, 'en', 'name', 'Cheongju Medical Center'),
(139816, 110037, 'ko', 'name', 'ģ²­ģ£¼ģ˜ė£Œģ›'),
(139817, 110038, 'fr', 'name', 'Institut de l''Ouest : Droit et Europe'),
(139818, 110038, 'en', 'name', 'Western Institute of Law and Europe'),
(139819, 110039, 'en', 'name', 'Gachon University Medical Center'),
(139820, 110039, 'ko', 'name', 'ź°€ģ²œėŒ€ķ•™źµģ˜ė£Œģ›'),
(139821, 110040, 'fr', 'name', 'Centre Georges FranƧois Leclerc'),
(139822, 110041, 'fr', 'name', 'Laboratoire de Psychologie : Cognition, Comportement, Communication'),
(139823, 110042, 'fr', 'name', 'FƩdƩration Informatique de Lyon'),
(139824, 110043, 'en', 'name', 'KISTI Research Division for Data Analysis'),
(139825, 110043, 'ko', 'name', 'KISTI ė°ģ“ķ„°ė¶„ģ„ģ—°źµ¬ė³øė¶€'),
(139826, 110044, 'fr', 'name', 'Laboratoire franco-mexicain d''informatique et d''automatique'),
(139827, 110045, 'en', 'name', 'Daegu Mechatronics & Materials Institute'),
(139828, 110045, 'ko', 'name', 'ėŒ€źµ¬źø°ź³„ė¶€ķ’ˆģ—°źµ¬ģ›'),
(139829, 110046, 'en', 'name', 'Bratislava University of Economics and Business'),
(139830, 110047, 'en', 'name', 'DeiC - Danish e-infrastructure Consortium'),
(139831, 110048, 'en', 'name', 'Gangwon State Gangneung Medical Center'),
(139832, 110048, 'ko', 'name', 'ź°•ģ›ķŠ¹ė³„ģžģ¹˜ė„ź°•ė¦‰ģ˜ė£Œģ›'),
(139833, 110049, 'en', 'name', 'Pau Costa Foundation'),
(139834, 110050, 'en', 'name', 'INSEEC School of Business and Economics'),
(139835, 110051, 'fr', 'name', 'Institut d''Ɖlectronique et des Technologies du numĆ©Rique'),
(139836, 110052, 'fr', 'name', 'RƩseau CanopƩ'),
(139837, 110053, 'en', 'name', 'Kyungpook National University Chilgok Hospital'),
(139838, 110053, 'ko', 'name', 'ź²½ė¶ėŒ€ķ•™źµģ¹ ź³”ė³‘ģ›'),
(139839, 110054, 'en', 'name', 'Oncogenesis Stress Signaling'),
(139840, 110055, 'en', 'name', 'Korea Expressway Corporation (South Korea)'),
(139841, 110055, 'ko', 'name', 'ķ•œźµ­ė„ė”œź³µģ‚¬'),
(139842, 110056, 'en', 'name', 'China Scholarship Council'),
(139843, 110056, 'zh', 'name', 'å›½å®¶ē•™å­¦åŸŗé‡‘ē®”ē†å§”å‘˜ä¼š'),
(139844, 110057, 'en', 'name', 'Daegu Haany University Medical Center'),
(139845, 110057, 'ko', 'name', 'ėŒ€źµ¬ķ•œģ˜ėŒ€ķ•™źµ ģ˜ė£Œģ›'),
(139846, 110058, 'en', 'name', 'Ferdinand-Steinbeis-Institut'),
(139847, 110059, 'en', 'name', 'Tryptomics (United States)'),
(139848, 110060, 'en', 'name', 'PPM School of Management'),
(139849, 110061, 'en', 'name', 'Daegu Policy Institute'),
(139850, 110061, 'ko', 'name', 'ėŒ€źµ¬ģ •ģ±…ģ—°źµ¬ģ›'),
(139851, 110062, 'en', 'name', 'Keimyung University Daegu Dongsan Hospital'),
(139852, 110062, 'ko', 'name', 'ź³„ėŖ…ėŒ€ķ•™źµ ėŒ€źµ¬ė™ģ‚°ė³‘ģ›'),
(139853, 110063, 'en', 'name', 'CHA Advanced Research Institute'),
(139854, 110063, 'ko', 'name', 'ģ°Ø 종합연구원'),
(139855, 110064, 'en', 'name', 'Beijing Municipal Science and Technology Commission'),
(139856, 110064, 'zh', 'name', 'åŒ—äŗ¬åø‚ē§‘å­¦ęŠ€ęœÆå§”å‘˜ä¼š'),
(139857, 110065, 'en', 'name', 'Ethophilia Research Foundation'),
(139858, 110066, 'no_lang_code', 'name', 'Chrysler (Canada)'),
(139859, 110067, 'no_lang_code', 'name', 'Gondwana University'),
(139860, 110067, 'hi', 'name', 'ą¤—ą„‹ą¤‚ą¤”ą¤µą¤¾ą¤Øą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(139861, 110068, 'en', 'name', 'Center for Translational and Molecular Medicine'),
(139862, 110068, 'fr', 'name', 'Centre de recherche Translationnelle en MƩdecine molƩculaire'),
(139863, 110069, 'en', 'name', 'Research Institute of Medium & Small Shipbuilding'),
(139864, 110069, 'ko', 'name', 'ģ¤‘ģ†Œģ”°ģ„ ģ—°źµ¬ģ›'),
(139865, 110070, 'en', 'name', 'University of Paris-Seine'),
(139866, 110070, 'fr', 'name', 'UniversitƩ Paris-Seine'),
(139867, 110071, 'en', 'name', 'Haridev Joshi University of Journalism and Mass Communication'),
(139868, 110071, 'hi', 'name', 'ą¤¹ą¤°ą¤æą¤¦ą„‡ą¤µ ą¤œą„‹ą¤¶ą„€ ą¤Ŗą¤¤ą„ą¤°ą¤•ą¤¾ą¤°ą¤æą¤¤ą¤¾ और ą¤œą¤Øą¤øą¤‚ą¤šą¤¾ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(139869, 110072, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Bina Karya'),
(139870, 110073, 'fr', 'name', 'Centre International de Recherche en Infectiologie'),
(139871, 110073, 'en', 'name', 'International Center for Infectiology Research'),
(139872, 110074, 'en', 'name', 'Nakdonggang National Institute of Biological Resources'),
(139873, 110074, 'ko', 'name', 'źµ­ė¦½ė‚™ė™ź°•ģƒė¬¼ģžģ›ź“€'),
(139874, 110075, 'en', 'name', 'Geo-Ocean'),
(139875, 110076, 'en', 'name', 'Chung-Ang University Gwangmyeong Hospital'),
(139876, 110076, 'ko', 'name', 'ģ¤‘ģ•™ėŒ€ķ•™źµ ꓑ명병원'),
(139877, 110077, 'fr', 'name', 'Recherches en Psychopathologie et Psychanalyse'),
(139878, 110078, 'en', 'name', 'University of Kut'),
(139879, 110078, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁˆŲŖ'),
(139880, 110079, 'fr', 'name', 'GƩoarchitecture, Territoires, Urbanisation, BiodiversitƩ, Environnement'),
(139881, 110080, 'en', 'name', 'University of Perpetual Help System DALTA Calamba'),
(139882, 110081, 'en', 'name', 'United States Air Force Space and Missile Systems Center'),
(139883, 110082, 'fr', 'name', 'Arènes: politique, santé publique, environnement, médias'),
(139884, 110083, 'en', 'name', 'Dongguk University Bundang Oriental Hospital'),
(139885, 110083, 'ko', 'name', 'ė™źµ­ėŒ€ķ•™źµ ė¶„ė‹¹ķ•œė°©ė³‘ģ›'),
(139886, 110084, 'en', 'name', 'Seoul National University Hospital Biomedical Research Institute'),
(139887, 110084, 'ko', 'name', 'ģ„œģšøėŒ€ķ•™źµė³‘ģ› ģ˜ģƒėŖ…ģ—°źµ¬ģ›'),
(139888, 110085, 'en', 'name', 'Chungbuk Research Institute'),
(139889, 110085, 'ko', 'name', '충북연구원'),
(139890, 110086, 'fr', 'name', 'LabexMER'),
(139891, 110087, 'en', 'name', 'Japan Marketing Academy'),
(139892, 110087, 'ja', 'name', 'ę—„ęœ¬ćƒžćƒ¼ć‚±ćƒ†ć‚£ćƒ³ć‚°å­¦ä¼š'),
(139893, 110088, 'en', 'name', 'United States Space Force'),
(139894, 110089, 'fr', 'name', 'AutoritƩ de sƻretƩ nuclƩaire et de radioprotection'),
(139895, 110089, 'en', 'name', 'French Authority for Nuclear Safety and Radiation Protection'),
(139896, 110090, 'en', 'name', 'Paavai Engineering College'),
(139897, 110091, 'en', 'name', 'Geisinger Commonwealth School of Medicine'),
(139898, 110092, 'en', 'name', 'Chongqing Science and Technology Commission'),
(139899, 110092, 'zh', 'name', 'é‡åŗ†åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(139900, 110093, 'en', 'name', 'Ningbo Municipal People''s Government'),
(139901, 110094, 'en', 'name', 'The Catholic University of Korea Eunpyeong St. Mary''s Hospital'),
(139902, 110094, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµģ€ķ‰ģ„±ėŖØė³‘ģ›'),
(139903, 110095, 'en', 'name', 'Seogwipo Medical Center'),
(139904, 110095, 'ko', 'name', 'ģ„œź·€ķ¬ģ˜ė£Œģ›'),
(139905, 110096, 'fr', 'name', 'DƩpartement de Recherche en IngƩnierie des VƩhicules pour l''Environnement'),
(139906, 110097, 'en', 'name', 'Andong Medical Center'),
(139907, 110097, 'ko', 'name', 'ģ•ˆė™ģ˜ė£Œģ›'),
(139908, 110098, 'en', 'name', 'Africa Center of Excellence for Prevention and Control of Communicable Diseases'),
(139909, 110098, 'fr', 'name', 'Centre d’excellence africain pour la prĆ©vention et le contrĆ“le des maladies transmissibles'),
(139910, 110099, 'en', 'name', 'Toulouse 1 Capitole University'),
(139911, 110099, 'fr', 'name', 'UniversitƩ Toulouse-I-Capitole'),
(139912, 110100, 'en', 'name', 'Habibullah Bahar College'),
(139913, 110101, 'en', 'name', 'Ulsan Research Institute'),
(139914, 110101, 'ko', 'name', 'ģšøģ‚°ģ—°źµ¬ģ›'),
(139915, 110102, 'en', 'name', 'Ewha Womans University Seoul Hospital'),
(139916, 110102, 'ko', 'name', 'ģ“ėŒ€ģ„œģšøė³‘ģ›'),
(139917, 110103, 'en', 'name', 'JESSENIUS - Diagnostic Center A.S.'),
(139918, 110103, 'sk', 'name', 'JESSENIUS - diagnostickƩ centrum a.s.'),
(139919, 110104, 'en', 'name', 'Dankook University Jukjeon Dental Hospital'),
(139920, 110104, 'ko', 'name', 'ė‹Øźµ­ėŒ€ķ•™źµ ģ¹˜ź³¼ėŒ€ķ•™ ģ£½ģ „ģ¹˜ź³¼ė³‘ģ›'),
(139921, 110105, 'en', 'name', 'Ukrainian Hydrometeorological Institute'),
(139922, 110106, 'fr', 'name', 'Laboratoire Mouvement Sport SantƩ'),
(139923, 110106, 'en', 'name', 'Movement, Sport and health Sciences Laboratory'),
(139924, 110107, 'en', 'name', 'Institute of Tropical Medicine Alexander von Humboldt'),
(139925, 110107, 'es', 'name', 'Instituto de Medicina Tropical Alexander von Humboldt'),
(139926, 110108, 'en', 'name', 'Tunis El Manar University'),
(139927, 110108, 'fr', 'name', 'UniversitƩ de tunis - el manar'),
(139928, 110108, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³ المنار'),
(139929, 110109, 'en', 'name', 'University of Quran and Hadith');
INSERT INTO `ror_settings` VALUES
(139930, 110110, 'en', 'name', 'Korea Dyeing & Finishing Technology Institute'),
(139931, 110110, 'ko', 'name', 'ė‹¤ģ“ķ…ģ—°źµ¬ģ›'),
(139932, 110111, 'en', 'name', 'NORCE Research AS'),
(139933, 110112, 'en', 'name', 'Wonkwang University Korean Medicine Hospital'),
(139934, 110112, 'ko', 'name', 'ģ›ź“‘ėŒ€ķ•™źµ ķ•œė°©ė³‘ģ›'),
(139935, 110113, 'en', 'name', 'Ministry of Science and Technology'),
(139936, 110114, 'fr', 'name', 'Institut de recherche mathƩmatique de Rennes'),
(139937, 110114, 'en', 'name', 'Mathematics Research Institute of Rennes'),
(139938, 110115, 'en', 'name', 'Daegu Haany University Korean Medicine Hospital'),
(139939, 110115, 'ko', 'name', 'ėŒ€źµ¬ķ•œģ˜ėŒ€ķ•™źµ ķ•œė°©ė³‘ģ›'),
(139940, 110116, 'en', 'name', 'Polytechnic University of Hauts-de-France'),
(139941, 110116, 'fr', 'name', 'UniversitƩ Polytechnique Hauts-de-France'),
(139942, 110117, 'tr', 'name', 'Ağrı Eğitim ve Araştırma Hastanesi'),
(139943, 110118, 'fr', 'name', 'DƩlƩgation Centre-Est'),
(139944, 110119, 'fr', 'name', 'Institut de recherche sur l''Ʃducation'),
(139945, 110120, 'en', 'name', 'Federal Polytechnic, Ukana'),
(139946, 110121, 'fr', 'name', 'UniversitƩ de Bretagne Occidentale'),
(139947, 110122, 'en', 'name', 'Korea Railroad Corporation (South Korea)'),
(139948, 110122, 'ko', 'name', 'ķ•œźµ­ģ² ė„ź³µģ‚¬'),
(139949, 110123, 'en', 'name', 'Severance Mental Health Hospital'),
(139950, 110123, 'ko', 'name', 'ģ„øėøŒėž€ģŠ¤ģ •ģ‹ ź±“ź°•ė³‘ģ›'),
(139951, 110124, 'es', 'name', 'Universidad Amazonica de Pando'),
(139952, 110125, 'en', 'name', 'Dong-Eui University Korean Medicine Hospital'),
(139953, 110125, 'ko', 'name', 'ė™ģ˜ėŒ€ķ•™źµ ķ•œė°©ė³‘ģ›'),
(139954, 110126, 'en', 'name', 'Suzhou Science and Technology Bureau'),
(139955, 110126, 'zh', 'name', 'č‹å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(139956, 110127, 'id', 'name', 'STISIP Imam Bonjol'),
(139957, 110128, 'id', 'name', 'Institut Teknologi dan Kesehatan Permata Ilmu Maros'),
(139958, 110129, 'en', 'name', 'LG AI Research (South Korea)'),
(139959, 110129, 'ko', 'name', 'LG AI 연구원'),
(139960, 110130, 'en', 'name', 'Lancashire Teaching Hospitals NHS Foundation Trust'),
(139961, 110131, 'fr', 'name', 'Paris School of Technology and Business'),
(139962, 110132, 'no_lang_code', 'name', 'Institut für Angewandte Zellkultur (Germany)'),
(139963, 110133, 'en', 'name', 'Stellantis Europe (Italy)'),
(139964, 110134, 'fr', 'name', 'Ɖcole spĆ©ciale d''architecture'),
(139965, 110135, 'en', 'name', 'Gwangju Institute'),
(139966, 110135, 'ko', 'name', 'ꓑ주연구원'),
(139967, 110136, 'fr', 'name', 'IUT de Paris Pajol'),
(139968, 110137, 'en', 'name', 'Heliophysics Data and Modeling Consortium'),
(139969, 110138, 'en', 'name', 'Chongqing Polytechnic University of Electronic Technology'),
(139970, 110138, 'zh', 'name', 'é‡åŗ†ē”µå­ē§‘ęŠ€čŒäøšå¤§å­¦'),
(139971, 110139, 'en', 'name', 'State Administration for Market Regulation'),
(139972, 110140, 'en', 'name', 'Chonnam National University Dental Hospital'),
(139973, 110140, 'ko', 'name', 'ģ „ė‚ØėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(139974, 110141, 'fr', 'name', 'Spintronique et Technologie des Composants'),
(139975, 110142, 'en', 'name', 'National Observatory on Labour Market and Social Protection Affairs'),
(139976, 110142, 'az', 'name', 'ʏmək Bazarı və Sosial Müdafie Məsələləri üzrə Milli Observatoriya'),
(139977, 110143, 'en', 'name', 'Seongnam Citizens Medical Center'),
(139978, 110143, 'ko', 'name', 'ģ„±ė‚Øģ‹œģ˜ė£Œģ›'),
(139979, 110144, 'en', 'name', 'Korea Institute for Defense Analyses'),
(139980, 110144, 'ko', 'name', 'ķ•œźµ­źµ­ė°©ģ—°źµ¬ģ›'),
(139981, 110145, 'en', 'name', 'Korea Water Resources Corporation (South Korea)'),
(139982, 110145, 'ko', 'name', 'ķ•œźµ­ģˆ˜ģžģ›ź³µģ‚¬'),
(139983, 110146, 'fr', 'name', 'IAE Paris - Sorbonne Business School'),
(139984, 110146, 'en', 'name', 'Sorbonne Business School'),
(139985, 110147, 'es', 'name', 'Instituto Profesional Virginio Gómez'),
(139986, 110148, 'en', 'name', 'Korean Institute of Tuberculosis'),
(139987, 110148, 'ko', 'name', '결핵연구원'),
(139988, 110149, 'en', 'name', 'Aluminium Research Center – REGAL'),
(139989, 110149, 'fr', 'name', 'Centre de recherche sur l''aluminium – REGAL'),
(139990, 110150, 'fr', 'name', 'Nutrition, mƩtabolismes et cancer'),
(139991, 110151, 'en', 'name', 'Zhejiang University of Water Resource and Electric Power'),
(139992, 110151, 'zh', 'name', 'ęµ™ę±Ÿę°“åˆ©ę°“ē”µå­¦é™¢'),
(139993, 110152, 'en', 'name', 'Guidong People''s Hospital of Guangxi Zhuang Autonomous Region'),
(139994, 110152, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗę”‚äøœäŗŗę°‘åŒ»é™¢'),
(139995, 110153, 'en', 'name', 'Chonnam National University Bitgoeul Hospital'),
(139996, 110153, 'ko', 'name', 'ė¹›ź³ ģ„ģ „ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(139997, 110154, 'en', 'name', 'Dominion University, Ibadan'),
(139998, 110155, 'fr', 'name', 'Centre national d''enseignement Ć  distance'),
(139999, 110156, 'hr', 'name', 'SveučiliŔte u Zagrebu SveučiliŔni računski centar'),
(140000, 110156, 'en', 'name', 'University of Zagreb University Computing Centre'),
(140001, 110157, 'fr', 'name', 'UnitƩ de service pour la pƩdagogie et la recherche en santƩ'),
(140002, 110158, 'en', 'name', 'Jan Evangelista Purkyně University in ƚstƭ nad Labem'),
(140003, 110158, 'cs', 'name', 'Univerzita Jana Evangelisty Purkyně v ƚstƭ nad Labem'),
(140004, 110159, 'de', 'name', 'Technische Hochschule Mannheim'),
(140005, 110160, 'en', 'name', 'The University of Sydney'),
(140006, 110161, 'en', 'name', 'Shri Shivaji Science and Arts College, Chikhli'),
(140007, 110162, 'fr', 'name', 'BicĆŖtre Hospital'),
(140008, 110163, 'en', 'name', 'Hong Kong Jockey Club Charities Trust'),
(140009, 110164, 'de', 'name', 'Senckenberg Forschungsinstitut und Naturmuseum Frankfurt/M'),
(140010, 110164, 'en', 'name', 'Senckenberg Research Institute and Natural History Museum Frankfurt/M'),
(140011, 110165, 'fr', 'name', 'Laboratoire Temps Espace'),
(140012, 110166, 'en', 'name', 'Milton F. Gregg Centre for the Study of War and Society'),
(140013, 110167, 'fi', 'name', 'Aerosolitutkimusseura'),
(140014, 110167, 'en', 'name', 'Finnish Association for Aerosol Research'),
(140015, 110168, 'en', 'name', 'HIBMAT University Institute of Buea'),
(140016, 110169, 'en', 'name', 'Institute of Advanced Light Source Facilities Shenzhen'),
(140017, 110169, 'zh', 'name', 'ę·±åœ³å…ˆčæ›å…‰ęŗē ”ē©¶é™¢'),
(140018, 110170, 'fr', 'name', 'Droit et changement social'),
(140019, 110171, 'en', 'name', 'Loyola Institute of Technology and Science'),
(140020, 110172, 'en', 'name', 'Sona College of Arts and Science'),
(140021, 110173, 'en', 'name', 'Finnish Society of Clinical Chemistry'),
(140022, 110173, 'sv', 'name', 'Fƶreningen fƶr klinisk kemi i Finland'),
(140023, 110173, 'fr', 'name', 'SociƩtƩ Finlandaise de Chimie Clinique'),
(140024, 110173, 'fi', 'name', 'Suomen Kliinisen Kemian Yhdistys'),
(140025, 110174, 'fr', 'name', 'CommunautƩ du Pacifique'),
(140026, 110174, 'en', 'name', 'Pacific Community'),
(140027, 110175, 'fr', 'name', 'Laboratoire GƩnome et DƩveloppement des Plantes'),
(140028, 110175, 'en', 'name', 'Plant Genome and Development Laboratory'),
(140029, 110176, 'en', 'name', 'T J Institute of Technology'),
(140030, 110177, 'en', 'name', 'Lofotr Viking Museum'),
(140031, 110177, 'no', 'name', 'Lofotr Vikingmuseum'),
(140032, 110177, 'de', 'name', 'Wikingermuseum Lofotr'),
(140033, 110178, 'es', 'name', 'Instituto Superior Tecnológico Tsa“chila'),
(140034, 110179, 'en', 'name', 'Ramachandra College of Engineering (A)'),
(140035, 110180, 'de', 'name', 'Materialfoschngs- und -prüfanstalt Weimar'),
(140036, 110181, 'en', 'name', 'Finnish Society of Sport Sciences'),
(140037, 110181, 'sv', 'name', 'Idrottsvetenskapliga SƤllskapet i Finland'),
(140038, 110181, 'fi', 'name', 'Liikuntatieteellinen Seura'),
(140039, 110182, 'es', 'name', 'Cultiva Territorio SAS (Colombia)'),
(140040, 110183, 'fr', 'name', 'UnitĆ© mixte de recherche Œnologie'),
(140041, 110184, 'en', 'name', 'Wilf Family Foundations'),
(140042, 110185, 'fr', 'name', 'UniversitƩ Libre du Burkina'),
(140043, 110186, 'en', 'name', 'Manipal Academy of Higher Education'),
(140044, 110186, 'fr', 'name', 'UniversitƩ de Manipal'),
(140045, 110187, 'fr', 'name', 'Institut Universitaire des SystĆØmes Thermiques Industriels'),
(140046, 110188, 'en', 'name', 'Marudhar Kesari Jain College for Women'),
(140047, 110188, 'ta', 'name', 'ą®®ą®°ąÆą®¤ą®°ąÆ ą®•ąÆ‡ą®šą®°ą®æ ą®œąÆ†ą®Æą®æą®©ąÆ ą®®ą®•ą®³ą®æą®°ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(140048, 110189, 'id', 'name', 'Universitas Dinamika Bangsa'),
(140049, 110190, 'de', 'name', 'Gesellschaft für die Erforschung der finnischen Sprache'),
(140050, 110190, 'fi', 'name', 'Kotikielen Seura'),
(140051, 110190, 'en', 'name', 'Society for the Study of Finnish'),
(140052, 110190, 'fr', 'name', 'SociƩtƩ pour l''Ʃtude de la langue finnoise'),
(140053, 110190, 'sv', 'name', 'SƤllskapet fƶr forskning i finska sprƄket'),
(140054, 110191, 'en', 'name', 'Digvijai Nath Post Graduate College, Gorakhpur U.P.'),
(140055, 110191, 'hi', 'name', 'ą¤¦ą¤æą¤—ą„ą¤µą¤æą¤œą¤Æą¤Øą¤¾ą¤„ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤—ą„‹ą¤°ą¤–ą¤Ŗą„ą¤° उ.ą¤Ŗą„ą¤°.'),
(140056, 110192, 'fr', 'name', 'Association finlandaise de l''amenagement technique communale'),
(140057, 110192, 'sv', 'name', 'Finlands kommuntekniska fƶrening'),
(140058, 110192, 'en', 'name', 'Finnish Association of Municipal Engineering'),
(140059, 110192, 'fi', 'name', 'Suomen kuntatekniikan yhdistys ry'),
(140060, 110193, 'en', 'name', 'Herpetologists'' League'),
(140061, 110194, 'en', 'name', 'Vimal Jyothi Institute of Management and Research'),
(140062, 110195, 'en', 'name', 'BirdLife international'),
(140063, 110196, 'en', 'name', 'Centre for Criminal Justice Studies and Policing Research'),
(140064, 110197, 'en', 'name', 'Rajuk Uttara Model College'),
(140065, 110197, 'bn', 'name', 'ą¦°ą¦¾ą¦œą¦‰ą¦• ą¦‰ą¦¤ą§ą¦¤ą¦°ą¦¾ মঔেল ą¦•ą¦²ą§‡ą¦œ'),
(140066, 110198, 'es', 'name', 'Facultad de Estudios Superiores AcatlƔn'),
(140067, 110199, 'sv', 'name', 'Finlands Patologfƶrening'),
(140068, 110199, 'en', 'name', 'Finnish Society of Pathology'),
(140069, 110199, 'fi', 'name', 'Suomen Patologiyhdistys'),
(140070, 110200, 'en', 'name', 'Kazakh National Academy of Choreography'),
(140071, 110201, 'en', 'name', 'Torch Farm and Equine, Farm and Equine Veterinary Surgeons (United Kingdom)'),
(140072, 110202, 'en', 'name', 'Finnish Association of Nursing Research'),
(140073, 110202, 'fi', 'name', 'Hoitotieteiden tutkimusseura (HTTS)'),
(140074, 110202, 'sv', 'name', 'SƤllskapet fƶr VƄrdvetenskaplig Forskning'),
(140075, 110203, 'en', 'name', 'Centre of Excellence for Engineering and Technology (CREaTE)'),
(140076, 110204, 'en', 'name', 'Dallas International University'),
(140077, 110205, 'es', 'name', 'Instituto de Investigaciones Ambientales del PacĆ­fico'),
(140078, 110206, 'en', 'name', 'Finnish Society for Theatre Research'),
(140079, 110206, 'sv', 'name', 'Fƶreningen fƶr teaterforskning i Finland'),
(140080, 110206, 'fi', 'name', 'Teatterintutkimuksen seura - TeaTS'),
(140081, 110207, 'en', 'name', 'Bangladesh University of Professionals'),
(140082, 110207, 'bn', 'name', 'বাংলাদেশ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦Ŗą§ą¦°ą¦«ą§‡ą¦¶ą¦Øą¦¾ą¦²ą¦ø'),
(140083, 110208, 'en', 'name', 'Brazilian Radiation Protection Society'),
(140084, 110208, 'pt', 'name', 'Sociedade Brasileira de Proteção Radiológica'),
(140085, 110209, 'az', 'name', 'Azərbaycan İlahiyyat İnstitutu'),
(140086, 110210, 'en', 'name', 'Modern Language Society of Helsinki'),
(140087, 110210, 'de', 'name', 'Neuphilologischer Verein in Helsinki'),
(140088, 110210, 'sv', 'name', 'Nyfilologiska fƶreningen'),
(140089, 110210, 'fr', 'name', 'SociƩtƩ NƩophilologique de Helsinki'),
(140090, 110210, 'fi', 'name', 'Uusfilologinen yhdistys'),
(140091, 110211, 'en', 'name', 'KMA Consulting Ltd. (Saint Lucia)'),
(140092, 110212, 'en', 'name', 'Wilmette Institute'),
(140093, 110213, 'de', 'name', 'Duale Hochschule Schleswig-Holstein'),
(140094, 110214, 'fr', 'name', 'Institut UTINAM'),
(140095, 110215, 'en', 'name', 'UES'),
(140096, 110215, 'no_lang_code', 'name', 'UES (United States)'),
(140097, 110216, 'en', 'name', 'Matsue City Hospital'),
(140098, 110216, 'ja', 'name', 'ę¾ę±Ÿåø‚ē«‹ē—…é™¢'),
(140099, 110217, 'en', 'name', 'Guru Nanak Institutions'),
(140100, 110218, 'sv', 'name', 'Finlands FƶretagslƤkarfƶrening'),
(140101, 110218, 'en', 'name', 'Finnish Association of Occupational Physicians'),
(140102, 110218, 'fi', 'name', 'Suomen TyƶterveyslƤƤkƤriyhdistys'),
(140103, 110219, 'en', 'name', 'Central Tribal University of Andhra Pradesh'),
(140104, 110220, 'en', 'name', 'Academic Engineers and Architects in Finland TEK'),
(140105, 110220, 'sv', 'name', 'Teknikens Akademikerfƶrbund'),
(140106, 110221, 'pt', 'name', 'Secretaria da Educação do Estado do CearÔ'),
(140107, 110222, 'en', 'name', 'National Museum of Mongolia'),
(140108, 110222, 'mn', 'name', 'ŠœŠ¾Š½Š³Š¾Š»Ń‹Š½ Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ музей'),
(140109, 110223, 'fr', 'name', 'Laboratoire Interdisciplinaire pour la Sociologie Economique'),
(140110, 110224, 'en', 'name', 'Department of Health and Aged Care'),
(140111, 110225, 'es', 'name', 'Centro MƩdico Sanitas Alcobendas'),
(140112, 110225, 'en', 'name', 'Sanitas Alcobendas Medical Centre'),
(140113, 110226, 'en', 'name', 'Lofoten Museum'),
(140114, 110226, 'no', 'name', 'Lofotmuseet'),
(140115, 110227, 'en', 'name', 'Shanghai Advanced Research in Physical Sciences'),
(140116, 110227, 'zh', 'name', 'äøŠęµ·å‰ēž»ē‰©č“Øē§‘å­¦ē ”ē©¶é™¢'),
(140117, 110228, 'es', 'name', 'Instituto de Geocronología y Geología Isotópica'),
(140118, 110229, 'it', 'name', 'Museo di Storia Naturale di Venezia Giancarlo Ligabue'),
(140119, 110230, 'en', 'name', 'Hungarian National Rural Network (MNVH)'),
(140120, 110230, 'hu', 'name', 'Magyar Nemzeti Vidéki HÔlózat'),
(140121, 110231, 'en', 'name', 'Jazeera University Hospital'),
(140122, 110232, 'en', 'name', 'Marathwada Mitra Mandal''s College of Engineering'),
(140123, 110233, 'id', 'name', 'Sekolah Tinggi Ilmu Tarbiyah Aqidah Usymuni Sumenep'),
(140124, 110234, 'fr', 'name', 'Centre de Recherche sur l''HƩtƩro-Epitaxie et ses Applications'),
(140125, 110235, 'en', 'name', 'BirdLife Finland'),
(140126, 110236, 'en', 'name', 'New College Berkeley'),
(140127, 110237, 'en', 'name', 'American Registry for Internet Numbers'),
(140128, 110238, 'en', 'name', 'Finnish Lepidopterologist Society'),
(140129, 110238, 'sv', 'name', 'Lepidopterologiska SƤllskapet i Finland'),
(140130, 110238, 'fi', 'name', 'Suomen Perhostutkijain Seura'),
(140131, 110239, 'sv', 'name', 'Finska bergmekanikfƶreningen'),
(140132, 110239, 'fi', 'name', 'Suomen kalliomekaniikkayhdistys ry'),
(140133, 110239, 'en', 'name', 'The Finnish Society for Rock Mechanics'),
(140134, 110240, 'en', 'name', 'Institute of Mathematics and Informatics'),
(140135, 110240, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ По ŠœŠ°Ń‚ематика И Š˜Š½Ń„Š¾Ń€Š¼Š°Ń‚ŠøŠŗŠ° Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ° ŠŠ°ŃƒŠŗŠøŃ‚Šµ'),
(140136, 110241, 'en', 'name', 'Developmental Biology Institute of Marseille'),
(140137, 110241, 'fr', 'name', 'Institut de Biologie du DƩveloppement Marseille'),
(140138, 110242, 'en', 'name', 'Finnish Society for the History of Education'),
(140139, 110242, 'sv', 'name', 'Fƶreningen fƶr pedagogik- och utbildningshistoria i Finland'),
(140140, 110242, 'fi', 'name', 'Suomen kasvatuksen ja koulutuksen historian seura'),
(140141, 110243, 'en', 'name', 'Jazeera University'),
(140142, 110244, 'es', 'name', 'Hospital Universitario Sanitas La Moraleja'),
(140143, 110244, 'en', 'name', 'Sanitas La Moraleja University Hospital'),
(140144, 110245, 'en', 'name', 'Centre for Research in Integrated Care'),
(140145, 110246, 'en', 'name', 'Research & Development & Innovation Consortium'),
(140146, 110246, 'bg', 'name', 'Š”Š“Ń€ŃƒŠ¶ŠµŠ½ŠøŠµ за Š½Š°ŃƒŃ‡Š½Š¾ŠøŠ·ŃŠ»ŠµŠ“ователска Šø развойна Гейност'),
(140147, 110247, 'fr', 'name', 'UniversitĆ© d’Ébolowa'),
(140148, 110248, 'sv', 'name', 'FinlƤndska Fƶreningen fƶr Stadsforskning'),
(140149, 110248, 'en', 'name', 'Finnish Society for Urban Studies'),
(140150, 110248, 'fi', 'name', 'Suomen Kaupunkitutkimuksen Seura'),
(140151, 110249, 'en', 'name', 'Brain Research Society of Finland'),
(140152, 110249, 'sv', 'name', 'Fƶreningen fƶr hjƤrnforskning i Finland'),
(140153, 110249, 'fi', 'name', 'Suomen Aivotutkimusseura'),
(140154, 110250, 'fi', 'name', 'Lapin tutkimusseura'),
(140155, 110250, 'en', 'name', 'Research Society of Lapland'),
(140156, 110251, 'en', 'name', 'International Hydrographic Organization'),
(140157, 110251, 'fr', 'name', 'Organisation Hydrographique Internationale'),
(140158, 110252, 'fr', 'name', 'Laboratoire Collisions AgrƩgats RƩactivitƩ'),
(140159, 110253, 'id', 'name', 'Politeknik Bisnis Kaltara'),
(140160, 110254, 'en', 'name', 'Manna Institute'),
(140161, 110255, 'en', 'name', 'GS University'),
(140162, 110256, 'fr', 'name', 'Association Finlandaise d'' Etudes Russes et l'' Europe de l''Est'),
(140163, 110256, 'hr', 'name', 'Finljandskoe obŔcestvo po izuceniju Rossii i Vostocnoj Evropy'),
(140164, 110256, 'de', 'name', 'Finnische Gesellschaft für Russland- und Osteuropaforschung'),
(140165, 110256, 'en', 'name', 'Finnish Association for Russian and East European Studies'),
(140166, 110256, 'sv', 'name', 'SƤllskapet fƶr Rysslands- och Ɩsteuropaforskning'),
(140167, 110256, 'fi', 'name', 'VenƤjƤn ja ItƤ-Euroopan tutkimuksen seura'),
(140168, 110257, 'ca', 'name', 'Universitat de Bolonya'),
(140169, 110257, 'en', 'name', 'University of Bologna'),
(140170, 110257, 'it', 'name', 'UniversitĆ  di Bologna'),
(140171, 110257, 'de', 'name', 'UniversitƤt Bologna'),
(140172, 110257, 'fr', 'name', 'UniversitƩ de Bologne'),
(140173, 110258, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Dr. Esquerdo'),
(140174, 110258, 'en', 'name', 'Sanitas Dr. Esquerdo Advanced Rehabilitation Centre'),
(140175, 110259, 'es', 'name', 'Instituto de Investigaciones Químico Biológicas'),
(140176, 110260, 'en', 'name', 'International Longshore and Warehouse Union'),
(140177, 110261, 'fr', 'name', 'Equipes Traitement de l''Information et SystĆØmes'),
(140178, 110261, 'en', 'name', 'Information Processing and System Research Lab'),
(140179, 110262, 'en', 'name', 'Buenos Aires Interdisciplinary Political Economy Institute'),
(140180, 110262, 'es', 'name', 'Instituto Interdisciplinario de EconomĆ­a PolĆ­tica de Buenos Aires'),
(140181, 110263, 'en', 'name', 'Sri Lanka Institute of Biotechnology (SLIBTEC)'),
(140182, 110264, 'fr', 'name', 'Groupe Sociétés, Religions, Laïcités'),
(140183, 110265, 'es', 'name', 'Instituto Superior Tecnológico Simón Bolívar'),
(140184, 110266, 'en', 'name', 'EUDAT'),
(140185, 110267, 'en', 'name', 'Oceans Initiative'),
(140186, 110268, 'en', 'name', 'Center for Research of Problems in Privatization and State Assets Management'),
(140187, 110268, 'ru', 'name', 'Центр ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Š½ŠøŃ проблем приватизации Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¼Šø активами'),
(140188, 110269, 'fr', 'name', 'Institut de Neurophysiopathologie'),
(140189, 110270, 'en', 'name', 'Waves for Change'),
(140190, 110271, 'en', 'name', 'California Lutheran University'),
(140191, 110272, 'en', 'name', 'Biochemical, Biophysical and Microbiological Society of Finland'),
(140192, 110273, 'fr', 'name', 'Laboratoire interdisciplinaire sur les mutations des espaces Ʃconomiques et politiques - Paris Saclay'),
(140193, 110274, 'no_lang_code', 'name', 'Istemi'),
(140194, 110274, 'en', 'name', 'Istemi s.r.l. (Italy)'),
(140195, 110275, 'fi', 'name', 'Ahvenanmaan rauhaninstituutti'),
(140196, 110275, 'en', 'name', 'The ƅland Islands Peace Institute Foundation'),
(140197, 110276, 'en', 'name', 'Finnish Epidemiological Society'),
(140198, 110276, 'sv', 'name', 'Finska Epidemiologiska SƤllskapet'),
(140199, 110276, 'fi', 'name', 'Suomen epidemiologian seura'),
(140200, 110277, 'en', 'name', 'Deka Biosciences (United States)'),
(140201, 110278, 'sv', 'name', 'Antropologiska SƤllskapet i Finland'),
(140202, 110278, 'en', 'name', 'Finnish Anthropological Society'),
(140203, 110278, 'fi', 'name', 'Suomen Antropologinen Seura'),
(140204, 110279, 'fr', 'name', 'Institut des Sciences et Technologies MolƩculaires d''Angers'),
(140205, 110280, 'es', 'name', 'Instituto de Ciencias Antropológicas'),
(140206, 110281, 'fr', 'name', 'Laboratoire de Physique Corpusculaire de Caen'),
(140207, 110282, 'fr', 'name', 'Biologie des Organismes et ƉcosystĆØmes Aquatiques'),
(140208, 110283, 'en', 'name', 'St. Francis University College of Health and Allied Sciences'),
(140209, 110284, 'en', 'name', 'Finnish Society for Labour History'),
(140210, 110284, 'de', 'name', 'Forschungsgesellschaft für Arbeitergeschichte und Arbeitertradition'),
(140211, 110284, 'sv', 'name', 'SƤllskapet fƶr forskning fƶr arbetarrƶrelsens historia och arbetarkultur i Finland'),
(140212, 110284, 'fi', 'name', 'TyƶvƤen historian ja perinteen tutkimuksen seura'),
(140213, 110285, 'sv', 'name', 'Socialmedicinska fƶreningen'),
(140214, 110285, 'en', 'name', 'Society of Social Medicine in Finland'),
(140215, 110285, 'fi', 'name', 'SosiaalilƤƤketieteen yhdistys'),
(140216, 110286, 'en', 'name', 'Naryn State University named after Satybaldy Naamatov'),
(140217, 110286, 'ru', 'name', 'ŠŠ°Ń€Ń‹Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ДатыбалГы ŠŠ°Š°Š¼Š°Ń‚Š¾Š²Š°'),
(140218, 110286, 'ky', 'name', 'ДатыбалГы ŠŠ°Š°Š¼Š°Ń‚Š¾Š² атынГагы ŠŠ°Ń€Ń‹Š½ мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(140219, 110287, 'en', 'name', 'Historical Association of Northern Finland'),
(140220, 110287, 'sv', 'name', 'Norra Finlands Historiska Fƶrening'),
(140221, 110287, 'fi', 'name', 'Pohjois-Suomen Historiallinen Yhdistys'),
(140222, 110288, 'fr', 'name', 'UnitƩ de Glycobiologie Structurale et Fonctionnelle'),
(140223, 110289, 'no_lang_code', 'name', 'Focus Localis ry'),
(140224, 110290, 'en', 'name', 'International University Bamenda'),
(140225, 110291, 'en', 'name', 'North East Medical College'),
(140226, 110291, 'bn', 'name', 'ą¦Øą¦°ą§ą¦„ ą¦‡ą¦·ą§ą¦Ÿ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(140227, 110292, 'en', 'name', 'TUETECH University'),
(140228, 110292, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ - CĆ“ng nghệ ThĆ”i NguyĆŖn'),
(140229, 110293, 'en', 'name', 'Rajendra Institute of Technology and Sciences'),
(140230, 110294, 'de', 'name', 'ZURZACH Care AG'),
(140231, 110295, 'en', 'name', 'Finnish Psycho-Analytical Society'),
(140232, 110295, 'sv', 'name', 'Finska Psykoanalytiska Fƶrening'),
(140233, 110295, 'fi', 'name', 'Suomen Psykoanalyyttinen Yhdistys'),
(140234, 110296, 'en', 'name', 'Finnish Research Association for Subject Didactics'),
(140235, 110296, 'sv', 'name', 'Samfundet fƶr Ƅmnesdidaktisk Forskning i Finland'),
(140236, 110296, 'fi', 'name', 'Suomen ainedidaktinen tutkimusseura'),
(140237, 110297, 'en', 'name', 'Finnish National Section of the International Association for Philosophy of Law and Social Philosophy (IVR)'),
(140238, 110297, 'fi', 'name', 'Suomen oikeusfilosofinen yhdistys SOFY'),
(140239, 110298, 'en', 'name', 'University of Faso'),
(140240, 110298, 'fr', 'name', 'UniversitƩ du Faso'),
(140241, 110299, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Journalisme et des Sciences de l’Information'),
(140242, 110299, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للصحافة ŁˆŲ¹Ł„ŁˆŁ… ال؄علام'),
(140243, 110300, 'de', 'name', 'Finnisch-Ugrische Gesellschaft'),
(140244, 110300, 'en', 'name', 'Finno-Ugrian Society'),
(140245, 110300, 'sv', 'name', 'Finsk-Ugriska SƤllskapet'),
(140246, 110300, 'fr', 'name', 'SociƩtƩ Finno-Ougrienne'),
(140247, 110300, 'fi', 'name', 'Suoma-UgralaÅ” Searvi'),
(140248, 110301, 'en', 'name', 'Arava Institute for Environmental Studies'),
(140249, 110301, 'he', 'name', 'מכון הערבה ללימודי ההביבה'),
(140250, 110301, 'ar', 'name', 'معهد وادي Ų¹Ų±ŲØŲ© للدراسات Ų§Ł„ŲØŁŠŲ¦ŁŠŲ©'),
(140251, 110302, 'sv', 'name', 'Svenska tekniska vetenskapsakademien i Finland'),
(140252, 110302, 'en', 'name', 'Swedish Academy of Engineering Sciences in Finland'),
(140253, 110303, 'en', 'name', 'Grenoble Applied Economics Lab'),
(140254, 110303, 'fr', 'name', 'Laboratoire d''Economie AppliquƩe de Grenoble'),
(140255, 110304, 'en', 'name', 'Urban and Community Studies Institute'),
(140256, 110305, 'es', 'name', 'Universidad Intercultural del Estado de Puebla'),
(140257, 110306, 'fr', 'name', 'Centre de Formation et de Recherche sur les Environnements MƩditerranƩens'),
(140258, 110307, 'es', 'name', 'Instituto de Investigaciones Gino Germani'),
(140259, 110308, 'sv', 'name', 'Demografiska Fƶreningen i Finland'),
(140260, 110308, 'en', 'name', 'Finnish Demographic Society'),
(140261, 110308, 'fi', 'name', 'Suomen VƤestƶtieteen Yhdistys ry'),
(140262, 110309, 'en', 'name', 'Finnish Society for Cinema Studies'),
(140263, 110309, 'fi', 'name', 'Suomen Elokuvatutkimuksen Seura'),
(140264, 110309, 'sv', 'name', 'SƤllskapet fƶr Filmforskning i Finland'),
(140265, 110310, 'en', 'name', 'Dongying Vocational Institute'),
(140266, 110310, 'zh', 'name', 'äøœč„čŒäøšå­¦é™¢'),
(140267, 110311, 'en', 'name', 'University of Arkansas System'),
(140268, 110312, 'en', 'name', 'Shared Value Africa'),
(140269, 110313, 'en', 'name', 'Institute of Physics of Buenos Aires'),
(140270, 110313, 'es', 'name', 'Instituto de FĆ­sica de Buenos Aires'),
(140271, 110314, 'es', 'name', 'Asociación Colombiana de Radiología'),
(140272, 110315, 'fi', 'name', 'Lounais-HƤmeen Luonnonsuojeluyhdistys (LHLY)'),
(140273, 110315, 'en', 'name', 'Nature Conservation Society of South-West HƤme'),
(140274, 110315, 'de', 'name', 'Naturschutzverein von Südwest-Häme'),
(140275, 110315, 'sv', 'name', 'SydvƤstra Tavastlands Naturskyddsfƶrening'),
(140276, 110316, 'fi', 'name', 'KulttuuriympƤristƶtutkimuksen seura'),
(140277, 110316, 'sv', 'name', 'Samfundet fƶr kulturmiljƶforskning rf'),
(140278, 110316, 'en', 'name', 'Society for Cultural Environment Studies'),
(140279, 110317, 'en', 'name', 'Chang Gung Memorial Hospital'),
(140280, 110318, 'fr', 'name', 'Institut des Sciences Analytiques'),
(140281, 110318, 'en', 'name', 'Institute of Analytical Sciences'),
(140282, 110319, 'no_lang_code', 'name', 'HÓpital Antoine-Béclère'),
(140283, 110320, 'it', 'name', 'Ausl 4 Piazza Ospedale'),
(140284, 110321, 'en', 'name', 'Chemical Society of Finland'),
(140285, 110321, 'sv', 'name', 'Finska Kemistsamfundet'),
(140286, 110321, 'fi', 'name', 'Suomen Kemistiseura'),
(140287, 110322, 'en', 'name', 'Finnish Association for Maritime History'),
(140288, 110322, 'de', 'name', 'Seegeschichtliche Vereinigung Finnlands'),
(140289, 110322, 'sv', 'name', 'Sjƶhistoriska fƶreningen i Finland'),
(140290, 110322, 'fi', 'name', 'Suomen merihistoriallinen yhdistys'),
(140291, 110323, 'en', 'name', 'University of Colombo'),
(140292, 110323, 'ta', 'name', 'ą®•ąÆŠą®“ąÆą®®ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(140293, 110323, 'si', 'name', 'ą¶šą·œą·…ą¶¹ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(140294, 110324, 'fr', 'name', 'Centre d''ƉnergĆ©tique et de Thermique de Lyon'),
(140295, 110324, 'en', 'name', 'Centre for Energy and Thermal Sciences of Lyon'),
(140296, 110325, 'es', 'name', 'Instituto de Estudios de AmƩrica Latina y el Caribe'),
(140297, 110326, 'fr', 'name', 'Laboratoire Reproduction et DƩveloppement des Plantes'),
(140298, 110327, 'sv', 'name', 'Fƶreningen fƶr konsthistoria'),
(140299, 110327, 'en', 'name', 'Society for Art History in Finland'),
(140300, 110327, 'fi', 'name', 'Taidehistorian seura'),
(140301, 110328, 'no_lang_code', 'name', 'Wikimedia RU'),
(140302, 110328, 'ru', 'name', 'ВикимеГиа РУ'),
(140303, 110329, 'en', 'name', 'The First People''s Hospital of Neijiang'),
(140304, 110329, 'zh', 'name', 'å†…ę±Ÿåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(140305, 110330, 'en', 'name', 'Tezpur College'),
(140306, 110331, 'pt', 'name', 'Escola de Administração de Empresas de São Paulo'),
(140307, 110331, 'en', 'name', 'FGV’s SĆ£o Paulo School of Business Administration'),
(140308, 110332, 'en', 'name', 'Retina Consultants of Texas'),
(140309, 110333, 'sv', 'name', 'Finlands Medicinhistoriska SƤllskap'),
(140310, 110333, 'en', 'name', 'Finnish Society for the History of Medicine'),
(140311, 110333, 'la', 'name', 'Societas Historiae Medicinae Fennica'),
(140312, 110333, 'fi', 'name', 'Suomen LƤƤketieteen Historian Seura'),
(140313, 110334, 'en', 'name', 'East Asia University of Technology'),
(140314, 110334, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng Nghệ ĐƓng Ɓ'),
(140315, 110335, 'en', 'name', 'Matrouh University'),
(140316, 110335, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų·Ų±ŁˆŲ­'),
(140317, 110336, 'en', 'name', 'Finnish Society for Aesthetics'),
(140318, 110336, 'fi', 'name', 'Suomen Estetiikan Seura'),
(140319, 110336, 'sv', 'name', 'SƤllskapet fƶr Estetik i Finland'),
(140320, 110337, 'es', 'name', 'Fundación Bariloche'),
(140321, 110338, 'en', 'name', 'Hospital of Prato'),
(140322, 110339, 'fi', 'name', 'Hoitotyƶn tutkimussƤƤtiƶ'),
(140323, 110339, 'en', 'name', 'Nursing Research Foundation'),
(140324, 110340, 'en', 'name', 'Geological Society of Finland'),
(140325, 110340, 'sv', 'name', 'Geologiska SƤllskapet i Finland'),
(140326, 110340, 'fr', 'name', 'SociƩtƩ Geologique de Finlande'),
(140327, 110340, 'fi', 'name', 'Suomen Geologinen Seura'),
(140328, 110341, 'no_lang_code', 'name', 'Incom (United States)'),
(140329, 110342, 'fr', 'name', 'La Rochelle UniversitƩ'),
(140330, 110343, 'fr', 'name', 'Interfaces, Confinement, MatƩriaux et Nanostructures'),
(140331, 110344, 'es', 'name', 'Finna Asocio de Media Juro'),
(140332, 110344, 'de', 'name', 'Finnische Gesellschaft für Umweltrecht'),
(140333, 110344, 'en', 'name', 'Finnish Society for Environmental Law (FSEL)'),
(140334, 110344, 'sv', 'name', 'MiljƶrƤttsliga SƤllskapet i Finland'),
(140335, 110344, 'fr', 'name', 'SociƩtƩ Finlandaise pour le Droit de l''Environnement'),
(140336, 110344, 'fi', 'name', 'Suomen YmpƤristƶoikeustieteen Seura (SYS)'),
(140337, 110345, 'en', 'name', 'University of Arkansas Clinton School of Public Service'),
(140338, 110346, 'en', 'name', 'Leibniz University Hannover'),
(140339, 110346, 'de', 'name', 'Leibniz UniversitƤt Hannover'),
(140340, 110347, 'es', 'name', 'Instituto Tecnológico Superior de San Luis Potosí, Capital'),
(140341, 110348, 'fr', 'name', 'Laboratoire de Microbiologie, Adaptation et PathogƩnie'),
(140342, 110348, 'en', 'name', 'Microbiology, Adaptation and Pathogenesis Lab'),
(140343, 110349, 'fi', 'name', 'Anatomici Fenniae ry'),
(140344, 110350, 'en', 'name', 'Global Deaf Research Institute'),
(140345, 110351, 'en', 'name', 'NSF-Simons AI Institute for Cosmic Origins'),
(140346, 110352, 'en', 'name', 'Senckenberg - Leibniz Institution for Biodiversity and Earth System Research'),
(140347, 110352, 'de', 'name', 'Senckenberg Gesellschaft für Naturforschung'),
(140348, 110353, 'es', 'name', 'Fundacion Ibis Para la Investigacion de HIV/SIDA'),
(140349, 110354, 'en', 'name', 'SiMERR National Research Centre'),
(140350, 110355, 'en', 'name', 'Finnish Society of Toxicology'),
(140351, 110355, 'fi', 'name', 'Suomen Toksikologiyhdistys (STY)'),
(140352, 110356, 'fr', 'name', 'Biologie IntƩgrative des Organismes Marins'),
(140353, 110356, 'en', 'name', 'Integrative Biology of Marine Organisms'),
(140354, 110357, 'en', 'name', 'Suizhou Vocational and Technical College'),
(140355, 110357, 'zh', 'name', 'éšå·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(140356, 110358, 'en', 'name', 'Finnish Society for Political Economy Research'),
(140357, 110358, 'fi', 'name', 'Poliittisen talouden tutkimuksen seura'),
(140358, 110358, 'sv', 'name', 'SƤllskapet fƶr studier i politisk ekonomi'),
(140359, 110359, 'en', 'name', 'Shahida Islam Medical and Dental'),
(140360, 110360, 'es', 'name', 'Asociación Cultural Ecozetaquira'),
(140361, 110361, 'en', 'name', 'Entomological Society of Finland'),
(140362, 110361, 'sv', 'name', 'Entomologiska fƶreningen i Finland rf'),
(140363, 110361, 'la', 'name', 'Societas Entomologica Fennica'),
(140364, 110361, 'fi', 'name', 'Suomen Hyƶnteisseura ry'),
(140365, 110362, 'en', 'name', 'Emera & NB Power Research Centre for Smart Grid Technologies'),
(140366, 110363, 'es', 'name', 'Centro de Innovación y Desarrollo Educativo'),
(140367, 110364, 'en', 'name', 'University of Redlands'),
(140368, 110364, 'fr', 'name', 'UniversitƩ de redlands'),
(140369, 110365, 'en', 'name', 'Canadian Institute for Cybersecurity'),
(140370, 110366, 'en', 'name', 'The International Society for Orthodox Church Music (ISOCM)'),
(140371, 110367, 'it', 'name', 'SocietĆ  Italiana di Health Technology Assessment'),
(140372, 110368, 'en', 'name', 'Finnish Association for Structural Mechanics'),
(140373, 110368, 'de', 'name', 'Gesellschaft für Technische Mechanik in Finnland'),
(140374, 110368, 'sv', 'name', 'Konstruktionsmekaniska fƶreningen i Finland'),
(140375, 110368, 'fi', 'name', 'Rakenteiden Mekaniikan Seura'),
(140376, 110369, 'en', 'name', 'Muriel McQueen Fergusson Centre for Family Violence Research'),
(140377, 110370, 'sv', 'name', 'Svenska skolhistoriska fƶreningen i Finland'),
(140378, 110370, 'en', 'name', 'Swedish Society of School History in Finland'),
(140379, 110371, 'es', 'name', 'Centro MƩdico Sanitas Artaza'),
(140380, 110371, 'en', 'name', 'Sanitas Artaza Medical Centre'),
(140381, 110372, 'en', 'name', 'Finnish Literary Research Society'),
(140382, 110372, 'fi', 'name', 'Kirjallisuudentutkijain Seura'),
(140383, 110373, 'sv', 'name', 'Finlands vetenskapliga bibliotekssamfund'),
(140384, 110373, 'en', 'name', 'Finnish Research Library Association'),
(140385, 110373, 'fi', 'name', 'Suomen tieteellinen kirjastoseura'),
(140386, 110374, 'fr', 'name', 'Institut d''Histoire et de Philosophie des Sciences et des Techniques'),
(140387, 110374, 'en', 'name', 'Institute for the History and Philosophy of Science and Technology'),
(140388, 110375, 'en', 'name', 'Centre for Earth Observation Science'),
(140389, 110376, 'es', 'name', 'SecretarĆ­a de Medio Ambiente e Historia Natural'),
(140390, 110377, 'en', 'name', 'Tokyo Electric Power Services Co., Ltd (Japan)'),
(140391, 110378, 'fr', 'name', 'Centre Interdisciplinaire de Nanoscience de Marseille'),
(140392, 110379, 'de', 'name', 'Finnische Theologische Literaturgesellschaft'),
(140393, 110379, 'en', 'name', 'Finnish Theological Literature Society'),
(140394, 110379, 'fi', 'name', 'Suomalainen Teologinen Kirjallisuusseura'),
(140395, 110380, 'sv', 'name', 'StatsfƶrfattningsrƤttsliga sƤllskapet i Finland'),
(140396, 110380, 'fi', 'name', 'Suomen valtiosƤƤntƶoikeudellinen seura'),
(140397, 110381, 'en', 'name', 'Westford University College'),
(140398, 110381, 'ar', 'name', 'Ł…ŲÆŲ±Ų³Ų© ويست فورد لل؄دارة'),
(140399, 110382, 'en', 'name', 'Shonan Atsugi Hospital'),
(140400, 110382, 'ja', 'name', 'ę¹˜å—åŽšęœØē—…é™¢'),
(140401, 110383, 'fr', 'name', 'Laboratoire de MathƩmatiques Jean Leray'),
(140402, 110384, 'en', 'name', 'Albert Health (United Kingdom)'),
(140403, 110385, 'es', 'name', 'Centro MƩdico Sanitas Las Rozas'),
(140404, 110385, 'en', 'name', 'Sanitas Las Rozas Medical Centre'),
(140405, 110386, 'en', 'name', 'Sri Venkateswara College of Engineering Tirupati'),
(140406, 110387, 'fi', 'name', 'Alue- ja YmpƤristƶtutkimuksen Seura'),
(140407, 110387, 'en', 'name', 'Society for Regional and Environmental Studies'),
(140408, 110387, 'sv', 'name', 'SƤllskapet fƶr Regional- och Miljƶforskning'),
(140409, 110388, 'en', 'name', 'Sumy State Pedagogical University named after A. S. Makarenko'),
(140410, 110388, 'uk', 'name', 'Думський Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені А.Š”. ŠœŠ°ŠŗŠ°Ń€ŠµŠ½ŠŗŠ°'),
(140411, 110389, 'en', 'name', 'Pan African Institute for Development Regional Institute for West Africa'),
(140412, 110390, 'en', 'name', 'San Francisco Theological Seminary'),
(140413, 110391, 'en', 'name', 'James Cook University'),
(140414, 110392, 'en', 'name', 'Iraqi Medical Research Center'),
(140415, 110393, 'en', 'name', 'Institute of Development Management'),
(140416, 110394, 'fr', 'name', 'Groupe d’Étude de la MatiĆØre CondensĆ©e'),
(140417, 110395, 'en', 'name', 'Finnish Lawyers'' Association'),
(140418, 110395, 'fi', 'name', 'Suomalainen Lakimiesyhdistys'),
(140419, 110396, 'en', 'name', 'e-Infrastructure of the Czech Republic'),
(140420, 110396, 'cs', 'name', 'e-Infrastruktura CZ'),
(140421, 110397, 'en', 'name', 'Finnish Society on Media Education'),
(140422, 110397, 'fi', 'name', 'Mediakasvatusseura'),
(140423, 110397, 'sv', 'name', 'SƤllskapet fƶr Mediefostran'),
(140424, 110398, 'fr', 'name', 'Sorbonne - IdentitĆ©s, Relations Internationales et Civilisations de l’Europe'),
(140425, 110399, 'en', 'name', 'Charleston Community Unit School District 1'),
(140426, 110400, 'en', 'name', 'SwissLink Higher Institute of Business & Technology'),
(140427, 110401, 'en', 'name', 'Indian Ocean Tuna Commission'),
(140428, 110402, 'no', 'name', 'Harstad kommune'),
(140429, 110402, 'en', 'name', 'Harstad municipality'),
(140430, 110402, 'se', 'name', 'HƔrsttƔid suohkan'),
(140431, 110403, 'en', 'name', 'Cerro Tololo Inter-American Observatory'),
(140432, 110404, 'en', 'name', 'Finnish Society for Agricultural Law'),
(140433, 110404, 'sv', 'name', 'LandsbygdsrƤttsliga SƤllskapet'),
(140434, 110404, 'fi', 'name', 'Maaseutuoikeuden Seura'),
(140435, 110405, 'fr', 'name', 'UMR Botanique et ModĆ©lisation de l’Architecture des Plantes et des vĆ©gĆ©tations'),
(140436, 110406, 'de', 'name', 'Technische UniversitƤt Berlin'),
(140437, 110407, 'en', 'name', 'Rutgers New Jersey Medical School'),
(140438, 110408, 'en', 'name', 'Long Beach Medical Center'),
(140439, 110409, 'sv', 'name', 'Fƶrening fƶr forskning och utvecklandet av rehabilitering'),
(140440, 110409, 'fi', 'name', 'Kuntoutuksen tutkimus- ja kehittƤmisyhdistys, KUTKE ry'),
(140441, 110409, 'en', 'name', 'Society for Rehabilitation Research and Development'),
(140442, 110410, 'en', 'name', 'Finnish Association for Medical Law and Ethics'),
(140443, 110410, 'fi', 'name', 'Suomen LƤƤkintƤoikeuden ja -etiikan Seura'),
(140444, 110410, 'sv', 'name', 'SƤllskapet fƶr MedicinalrƤtt och -etik i Finland'),
(140445, 110411, 'en', 'name', 'SPECTRAL Spatial Computing Research Centre'),
(140446, 110412, 'es', 'name', 'Asociación Colombiana de Facultades de Psicología'),
(140447, 110413, 'pt', 'name', 'Instituto de Tecnologia e LideranƧa'),
(140448, 110414, 'en', 'name', 'HARZ Labs DOO'),
(140449, 110414, 'no_lang_code', 'name', 'HARZ Labs DOO (Montenegro)'),
(140450, 110415, 'fi', 'name', 'Suomen Kriminologinen yhdistys'),
(140451, 110416, 'pt', 'name', 'Companhia de Desenvolvimento EconƓmico de Minas Gerais'),
(140452, 110417, 'en', 'name', 'Stalwart University Institute'),
(140453, 110418, 'en', 'name', 'Arab Center for Research and Policy Studies'),
(140454, 110419, 'sv', 'name', 'Finlands marinarkeologiska sƤllskap'),
(140455, 110419, 'fi', 'name', 'Suomen meriarkeologinen seura'),
(140456, 110419, 'en', 'name', 'The Maritime Archaeological Society of Finland'),
(140457, 110420, 'en', 'name', 'The Leprosy Mission International'),
(140458, 110421, 'fr', 'name', 'Institut des MatƩriaux, de MicroƩlectronique et des Nanosciences de Provence'),
(140459, 110422, 'en', 'name', 'Centre for Advanced Studies - Atlantic'),
(140460, 110423, 'fr', 'name', 'Milieux environnementaux, transferts et interactions dans les hydrosystĆØmes et les sols'),
(140461, 110424, 'de', 'name', 'Institut für Inklusive Bildung'),
(140462, 110424, 'en', 'name', 'Institute for Inclusive Education'),
(140463, 110425, 'es', 'name', 'Fundación Ernesto SÔnchez Villares'),
(140464, 110426, 'fr', 'name', 'Centre Maurice-Halbwachs'),
(140465, 110427, 'en', 'name', 'Finnish Air Pollution Prevention Society'),
(140466, 110427, 'fi', 'name', 'Ilmansuojeluyhdistys (FAPPS)'),
(140467, 110427, 'sv', 'name', 'LuftvƄrdsfƶreningen'),
(140468, 110428, 'sv', 'name', 'Finlands Tribologifƶrening'),
(140469, 110428, 'en', 'name', 'Finnish Society for Tribology'),
(140470, 110428, 'fi', 'name', 'Suomen Tribologiayhdistys'),
(140471, 110429, 'fi', 'name', 'Arkistoyhdistys'),
(140472, 110429, 'sv', 'name', 'Arkivfƶreningen'),
(140473, 110429, 'en', 'name', 'Society of Finnish Archivists'),
(140474, 110430, 'de', 'name', 'Forschungsinstitut für politisch-historische Studien der Dr.-Wilfried-Haslauer-Bibliothek'),
(140475, 110431, 'de', 'name', 'Forschungszentrum Borstel - Leibniz Lungenzentrum'),
(140476, 110431, 'en', 'name', 'Research Center Borstel - Leibniz Lung Center'),
(140477, 110432, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Isaac Peral'),
(140478, 110432, 'en', 'name', 'Sanitas Isaac Peral Advanced Rehabilitation Centre'),
(140479, 110433, 'es', 'name', 'Centro Médico Sanitas Alcorcón'),
(140480, 110433, 'en', 'name', 'Sanitas Alcorcón Medical Centre'),
(140481, 110434, 'en', 'name', 'Association for Military History in Finland'),
(140482, 110434, 'sv', 'name', 'Krigshistoriska Samfundet i Finland'),
(140483, 110434, 'fi', 'name', 'Suomen Sotahistoriallinen Seura'),
(140484, 110435, 'en', 'name', 'Spinghar Institute of Higher Education, Nangarhar'),
(140485, 110435, 'ps', 'name', 'Ų³Ł¾ŪŒŁ† ŲŗŲ± ŲÆ Ł„ŁˆŚ“Łˆ Ų²ŲÆŚ©Ś“Łˆ Ł…ŁˆŲ³Ų³Ł‡'),
(140486, 110435, 'fa', 'name', 'مرکز Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų³Ł¾ŪŒŁ†ŲŗŲ±'),
(140487, 110436, 'es', 'name', 'Instituto Superior Tecnológico España'),
(140488, 110437, 'en', 'name', 'Jai Prakash University'),
(140489, 110438, 'es', 'name', 'Centro MƩdico Sanitas A CoruƱa'),
(140490, 110438, 'en', 'name', 'Sanitas A CoruƱa Medical Centre'),
(140491, 110439, 'en', 'name', 'National University of Agriculture'),
(140492, 110439, 'fr', 'name', 'UniversitƩ Nationale d''Agriculture'),
(140493, 110440, 'en', 'name', 'Denis Sassou Nguesso University'),
(140494, 110440, 'fr', 'name', 'UniversitƩ de Denis Sassou N''guesso'),
(140495, 110441, 'en', 'name', 'Rajapinta Association of Digital Social Sciences'),
(140496, 110441, 'sv', 'name', 'Rajapinta fƶrening fƶr digitala samhƤllsvetenskaper'),
(140497, 110441, 'fi', 'name', 'Rajapinta ry - Digitaalisten yhteiskuntatieteiden yhdistys'),
(140498, 110442, 'en', 'name', 'Finnish Association of Speech and Language Research'),
(140499, 110442, 'sv', 'name', 'Finsk fƶrening fƶr tal- och sprƄkforskning'),
(140500, 110442, 'fi', 'name', 'Puheen ja kielen tutkimuksen yhdistys'),
(140501, 110443, 'no_lang_code', 'name', 'Marka - Marketing Aplicado (Portugal)'),
(140502, 110444, 'en', 'name', 'Karelian Theological Society'),
(140503, 110444, 'fi', 'name', 'Karjalan teologinen seura'),
(140504, 110445, 'fr', 'name', 'Ecologie Microbienne Lyon'),
(140505, 110445, 'en', 'name', 'Microbial Ecology'),
(140506, 110446, 'en', 'name', 'Consortium of Higher Education Researchers in Finland'),
(140507, 110446, 'fi', 'name', 'Korkeakoulututkimuksen seura'),
(140508, 110447, 'fr', 'name', 'Association des Architectes de Finlande'),
(140509, 110447, 'sv', 'name', 'Finlands Arkitektfƶrbund (SAFA)'),
(140510, 110447, 'en', 'name', 'Finnish Association of Architects'),
(140511, 110447, 'de', 'name', 'Finnlands Architektenverband'),
(140512, 110447, 'fi', 'name', 'Suomen Arkkitehtiliitto'),
(140513, 110448, 'fr', 'name', 'Laboratoire de Physique Subatomique et de Cosmologie'),
(140514, 110448, 'en', 'name', 'Laboratory of Subatomic Physics and Cosmology'),
(140515, 110449, 'en', 'name', 'BGI Research, Sanya'),
(140516, 110449, 'zh', 'name', 'äø‰äŗšåŽå¤§ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(140517, 110450, 'fr', 'name', 'Physiologie de la Reproduction et des Comportements'),
(140518, 110451, 'en', 'name', 'Army Institute of Business Administration, Savar'),
(140519, 110452, 'en', 'name', 'Temuco Catholic University'),
(140520, 110452, 'es', 'name', 'Universidad Católica de Temuco'),
(140521, 110453, 'en', 'name', 'MemorialCare Health System'),
(140522, 110454, 'en', 'name', 'Nano Research Centre'),
(140523, 110455, 'en', 'name', 'Central University of Venezuela'),
(140524, 110455, 'es', 'name', 'Universidad Central de Venezuela'),
(140525, 110456, 'en', 'name', 'Al-Ayen Iraqi University'),
(140526, 110456, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹ŁŠŁ† Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ©'),
(140527, 110457, 'en', 'name', 'Federal Ministry of Innovation, Science and Technology'),
(140528, 110458, 'en', 'name', 'FOMIC Polytechnic University Institute'),
(140529, 110459, 'sv', 'name', 'Geografiska SƤllskapet i Finland'),
(140530, 110459, 'en', 'name', 'Geographical Society of Finland'),
(140531, 110459, 'de', 'name', 'Geographische Gesellschaft von Finnland'),
(140532, 110459, 'fr', 'name', 'SociƩtƩ Geographique de Finlande'),
(140533, 110459, 'fi', 'name', 'Suomen Maantieteellinen Seura'),
(140534, 110460, 'en', 'name', 'Sule Lamido University Kafin Hausa'),
(140535, 110461, 'en', 'name', 'National Acoustic Laboratories'),
(140536, 110462, 'en', 'name', 'Gyeongbuk College of Health'),
(140537, 110462, 'kr', 'name', 'ź²½ė¶ė³“ź±“ėŒ€ķ•™źµ'),
(140538, 110463, 'en', 'name', 'New England Regional Headache Center'),
(140539, 110464, 'de', 'name', 'LVR-Klinik Langenfeld'),
(140540, 110465, 'de', 'name', 'Finnische Gesellschaft für Psychologie'),
(140541, 110465, 'en', 'name', 'Finnish Psychological Society'),
(140542, 110465, 'fi', 'name', 'Suomen Psykologinen Seura'),
(140543, 110466, 'en', 'name', 'Finnish Pharmacological Society'),
(140544, 110466, 'fi', 'name', 'Suomen Farmakologiyhdistys (SFY)'),
(140545, 110467, 'fr', 'name', 'Centre d’Immunologie de Marseille-Luminy'),
(140546, 110468, 'fr', 'name', 'Institut d''Histoire du Temps PrƩsent'),
(140547, 110469, 'en', 'name', 'HLA-G immune checkpoint in Oncology and Transplantation'),
(140548, 110470, 'en', 'name', 'Kyiv Municipal Academy of Performing and Circus Arts'),
(140549, 110470, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠ° Š¼ŃƒŠ½Ń–Ń†ŠøŠæŠ°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń естраГного та циркового мистецтв'),
(140550, 110471, 'en', 'name', 'KG College of Arts and Science'),
(140551, 110471, 'ta', 'name', 'ą®•ąÆ‡ą®œą®æ ą®•ą®²ąÆˆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(140552, 110472, 'es', 'name', 'Centro MƩdico Sanitas Robresa'),
(140553, 110472, 'en', 'name', 'Sanitas Robresa Medical Centre'),
(140554, 110473, 'en', 'name', 'Kalevala Society'),
(140555, 110473, 'sv', 'name', 'Kalevala SƤllskapet'),
(140556, 110473, 'fi', 'name', 'Kalevalaseura-sƤƤtiƶ'),
(140557, 110474, 'de', 'name', 'Senckenberg Museum für Naturkunde Görlitz'),
(140558, 110474, 'en', 'name', 'Senckenberg Museum of Natural History Gƶrlitz'),
(140559, 110475, 'en', 'name', 'IWO - Institute for Science & Development'),
(140560, 110476, 'fr', 'name', 'Institut de Pharmacologie MolƩculaire et Cellulaire'),
(140561, 110476, 'en', 'name', 'Institute of Molecular and Cellular Pharmacology'),
(140562, 110477, 'fr', 'name', 'Institut Polytechnique Africain'),
(140563, 110478, 'en', 'name', 'Mount Tamalpais College'),
(140564, 110479, 'en', 'name', 'Camtree: the Cambridge Teacher Research Exchange'),
(140565, 110480, 'fr', 'name', 'Structures Formelles du Langage'),
(140566, 110481, 'en', 'name', 'Finnish Society of Social Work Research'),
(140567, 110481, 'sv', 'name', 'Fƶreningen fƶr forskning i socialt arbete'),
(140568, 110481, 'fi', 'name', 'Sosiaalityƶn tutkimuksen seura'),
(140569, 110482, 'sv', 'name', 'Finlands herpetologiska fƶrening'),
(140570, 110482, 'fi', 'name', 'Suomen herpetologinen yhdistys'),
(140571, 110482, 'en', 'name', 'The Herpetological Society of Finland'),
(140572, 110483, 'fr', 'name', 'ContrƓle de la RƩponse Immune B et LymphoprolifƩrations'),
(140573, 110484, 'en', 'name', 'Fundatia "Ana Aslan" International'),
(140574, 110485, 'tr', 'name', 'T.T.G. Uluslararası Telekomünikasyon İletişim Hiz. ve Elekt. Tic. Ltd. Şti. (Türkiye)'),
(140575, 110485, 'en', 'name', 'TTG 5G Lab'),
(140576, 110486, 'fi', 'name', 'Donner-instituutti'),
(140577, 110486, 'sv', 'name', 'Donnerska institutet fƶr religionshistorisk och kulturhistorisk forskning'),
(140578, 110486, 'en', 'name', 'The Donner Institute for Research in Religious and Cultural History'),
(140579, 110487, 'en', 'name', 'Global Digital Heritage'),
(140580, 110488, 'id', 'name', 'Universitas Prima Nusantara Bukittinggi'),
(140581, 110489, 'de', 'name', 'Muthesius Kunsthochschule'),
(140582, 110489, 'en', 'name', 'Muthesius University of Fine Arts and Design'),
(140583, 110490, 'es', 'name', 'Instituto Superior de Ciencias de la Educación del Estado de México'),
(140584, 110491, 'es', 'name', 'Instituto de ZoologĆ­a y EcologĆ­a Tropical'),
(140585, 110492, 'pt', 'name', 'Serviço de Saúde da Região Autónoma da Madeira'),
(140586, 110493, 'fr', 'name', 'Processus Infectieux en Milieu Insulaire Tropical'),
(140587, 110494, 'en', 'name', 'Ecological Restoration Fund'),
(140588, 110495, 'fr', 'name', 'Centre d''Ʃtudes EuropƩennes de Sciences Po'),
(140589, 110495, 'en', 'name', 'Sciences Po Centre for European Studies and Comparative Politics'),
(140590, 110496, 'fr', 'name', 'Laboratoire de Chimie BactƩrienne'),
(140591, 110497, 'no_lang_code', 'name', 'IBM (Canada)'),
(140592, 110498, 'fr', 'name', 'Laboratoire d''Ɖtude des Microstructures'),
(140593, 110499, 'fi', 'name', 'Suomen pelitutkimuksen seura ry'),
(140594, 110499, 'en', 'name', 'The Finnish Society for Game Research'),
(140595, 110500, 'sv', 'name', 'International Fiscal Association, Avdelning i Finland'),
(140596, 110500, 'en', 'name', 'International Fiscal Association, Finnish Branch'),
(140597, 110501, 'en', 'name', 'Tabesh University'),
(140598, 110501, 'ps', 'name', 'ŲŖŲ§ŲØŲ“ Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(140599, 110502, 'es', 'name', 'Colegio de Postgraduados Campus Córdoba'),
(140600, 110503, 'en', 'name', 'Applied Agricultural Remote Sensing Centre'),
(140601, 110504, 'vi', 'name', 'Bệnh viện Ung bướu thĆ nh phố Cįŗ§n ThĘ”'),
(140602, 110504, 'en', 'name', 'Can Tho Oncology Hospital'),
(140603, 110505, 'fr', 'name', 'Laboratoire de Photophysique et Photochimie SupramolƩculaires et MacromolƩculaires'),
(140604, 110506, 'en', 'name', 'Finnish Association of Co-operative Studies'),
(140605, 110506, 'sv', 'name', 'SƤllskapet fƶr ekonomiskt samarbete och kooperativ forskning Kooperatiivi'),
(140606, 110506, 'fi', 'name', 'Taloudellisen yhteistyƶn ja osuustoiminnan tutkimuksen seura Kooperatiivi'),
(140607, 110507, 'en', 'name', 'University of Sulaimani'),
(140608, 110507, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³Ł„ŁŠŁ…Ų§Ł†ŁŠŲ©'),
(140609, 110507, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ Ų³Ł„ŪŽŁ…Ų§Ł†ŪŒ'),
(140610, 110508, 'en', 'name', 'Sri Muthukumaran Institute of Technology'),
(140611, 110509, 'en', 'name', 'Georges Friedel Laboratory'),
(140612, 110509, 'fr', 'name', 'Laboratoire George Friedel'),
(140613, 110510, 'sv', 'name', 'Finlands matematiska fƶrening'),
(140614, 110510, 'en', 'name', 'Finnish Mathematical Society'),
(140615, 110510, 'fi', 'name', 'Suomen matemaattinen yhdistys');
INSERT INTO `ror_settings` VALUES
(140616, 110511, 'en', 'name', 'Institute of Labour Economics and Industrial Sociology'),
(140617, 110511, 'fr', 'name', 'Laboratoire d''Economie et de Sociologie du Travail'),
(140618, 110512, 'en', 'name', 'National Solar Observatory'),
(140619, 110513, 'en', 'name', 'Hotchkiss Brain Institute'),
(140620, 110514, 'en', 'name', 'Genes, Synapses, and Cognition'),
(140621, 110514, 'fr', 'name', 'GĆØnes, synapses et cognition'),
(140622, 110515, 'en', 'name', 'University of Tamanghasset'),
(140623, 110515, 'fr', 'name', 'UniversitƩ de Tamanrasset'),
(140624, 110515, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© تامنغست'),
(140625, 110516, 'fr', 'name', 'Institut de Recherche Interdisciplinaire en Sciences Sociales'),
(140626, 110517, 'es', 'name', 'Centro MƩdico Sanitas Montecarmelo'),
(140627, 110517, 'en', 'name', 'Sanitas Montecarmelo Medical Centre'),
(140628, 110518, 'en', 'name', 'Photonics Finland'),
(140629, 110518, 'fi', 'name', 'Suomen fotoniikan seura'),
(140630, 110519, 'en', 'name', 'Finnish Astronomical Society'),
(140631, 110519, 'fi', 'name', 'Suomen TƤhtitieteilijƤseura'),
(140632, 110520, 'en', 'name', 'Senckenberg Natural History Collections Dresden'),
(140633, 110520, 'de', 'name', 'Senckenberg Naturhistorische Sammlungen Dresden'),
(140634, 110521, 'en', 'name', 'National Institutes for Quantum Science and Technology'),
(140635, 110521, 'ja', 'name', 'é‡å­ē§‘å­¦ęŠ€č”“ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(140636, 110522, 'es', 'name', 'Centro Médico Sanitas Córdoba'),
(140637, 110522, 'en', 'name', 'Sanitas Cordoba Medical Centre'),
(140638, 110523, 'en', 'name', 'Society of Scientific Hypnosis in Finland'),
(140639, 110523, 'fi', 'name', 'Tieteellinen hypnoosi'),
(140640, 110523, 'sv', 'name', 'Vetenskaplig hypnos'),
(140641, 110524, 'en', 'name', 'Azerbaijan Science Center'),
(140642, 110524, 'az', 'name', 'Azərbaycan Elm Mərkəzi'),
(140643, 110525, 'en', 'name', 'Moss Landing Marine Laboratories'),
(140644, 110526, 'en', 'name', 'Takshashila Institute of Engineering and Technology, Darapur'),
(140645, 110527, 'nl', 'name', 'Radiotherapiegroep'),
(140646, 110528, 'fr', 'name', 'Laboratoire Charles Coulomb'),
(140647, 110529, 'en', 'name', 'Union of Needletrades Industrial and Textile Employees'),
(140648, 110530, 'sv', 'name', 'Finlands SvampvƤnner'),
(140649, 110530, 'en', 'name', 'Finnish Mycological Society'),
(140650, 110530, 'la', 'name', 'Societas Mycologica Fennica'),
(140651, 110530, 'fi', 'name', 'Suomen Sieniseura'),
(140652, 110531, 'en', 'name', 'University of Khorfakkan'),
(140653, 110532, 'en', 'name', 'Social Policy Research Institute'),
(140654, 110533, 'en', 'name', 'Center for Research and Advanced Studies of the National Polytechnic Institute'),
(140655, 110533, 'es', 'name', 'Centro de Investigación y de Estudios Avanzados del Instituto Politécnico Nacional'),
(140656, 110534, 'sv', 'name', 'Finlands VeterinƤrfƶrbund'),
(140657, 110534, 'en', 'name', 'Finnish Veterinary Association'),
(140658, 110534, 'fi', 'name', 'Suomen ElƤinlƤƤkƤriliitto'),
(140659, 110535, 'fr', 'name', 'Laboratoire d''Anthropologie Sociale'),
(140660, 110536, 'en', 'name', 'Finnish Society for Health Economics'),
(140661, 110536, 'sv', 'name', 'HƤlsoekonomiska Samfundet'),
(140662, 110536, 'fi', 'name', 'Terveystaloustieteen Seura'),
(140663, 110537, 'es', 'name', 'Administración de Parques Nacionales'),
(140664, 110538, 'en', 'name', 'Finnish Literature Society of Vyborg'),
(140665, 110538, 'sv', 'name', 'Finska LitteratursƤllskapet i Viborg'),
(140666, 110538, 'fi', 'name', 'Viipurin Suomalainen Kirjallisuusseura'),
(140667, 110539, 'ro', 'name', 'Complexul Muzeal Bistriţa-Năsăud'),
(140668, 110540, 'en', 'name', 'Semiotic Society of Finland'),
(140669, 110540, 'sv', 'name', 'Semiotiska SƤllskapet i Finland rf'),
(140670, 110540, 'fi', 'name', 'Suomen Semiotiikan Seura'),
(140671, 110541, 'id', 'name', 'Akademi Kesehatan Sumenep'),
(140672, 110542, 'en', 'name', 'Muzeum Archeologiczne i Etnograficzne w Łodzi'),
(140673, 110543, 'es', 'name', 'Centro de Estudios GeogrÔficos, Biológicos y Comunitarios, S.C.'),
(140674, 110544, 'fr', 'name', 'Laboratoire de gĆ©nie des procĆ©dĆ©s pour la bioraffinerie, les matĆ©riaux bio-sourcĆ©s et l’impression fonctionnelle'),
(140675, 110545, 'en', 'name', 'Crater Lake National Park'),
(140676, 110546, 'en', 'name', 'Manipal Centre for Natural Sciences'),
(140677, 110547, 'fr', 'name', 'Laboratoire d''Ʃtude de l''apprentissage et du dƩveloppement'),
(140678, 110547, 'en', 'name', 'Laboratory for Research on Learning and Development'),
(140679, 110548, 'en', 'name', 'Finnish Gerontological Society'),
(140680, 110548, 'sv', 'name', 'Finska Gerontologiska Fƶreningen'),
(140681, 110549, 'en', 'name', 'The Max Stern Yezreel Valley College'),
(140682, 110549, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ עמק ×™×–×Ø×¢××œ עדש מקה שטרן'),
(140683, 110550, 'en', 'name', 'MemorialCare Long Beach Medical Center'),
(140684, 110551, 'en', 'name', 'Wells College'),
(140685, 110552, 'en', 'name', 'Kastler Brossel Laboratory'),
(140686, 110552, 'fr', 'name', 'Laboratoire Kastler Brossel'),
(140687, 110553, 'en', 'name', 'Finnish Educational Research Association'),
(140688, 110553, 'sv', 'name', 'Samfundet fƶr pedagogisk forskning i Finland'),
(140689, 110553, 'fi', 'name', 'Suomen kasvatustieteellinen seura'),
(140690, 110554, 'fr', 'name', 'Centre de Recherches Politiques de Sciences Po'),
(140691, 110554, 'en', 'name', 'Centre for Political Research at Sciences Po'),
(140692, 110555, 'fr', 'name', 'Centre Hospitalo-Universitaire Mohammed VI d''Oujda'),
(140693, 110555, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų§Ų³ŲŖŲ“ŁŲ§Ų¦ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł…Ų­Ł…ŲÆ السادس-وجدة'),
(140694, 110556, 'fr', 'name', 'Ɖtablissement FranƧais du Sang'),
(140695, 110557, 'en', 'name', 'Bujumbura Christian University'),
(140696, 110557, 'fr', 'name', 'UniversitƩ ChrƩtienne de Bujumbura'),
(140697, 110558, 'en', 'name', 'Agricultural Research Institute'),
(140698, 110558, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī“ĪµĻ‰ĻĪ³Ī¹ĪŗĻŽĪ½ Ī•ĻĪµĻ…Ī½ĻŽĪ½'),
(140699, 110559, 'en', 'name', 'Marine Additive Manufacturing Centre of Excellence'),
(140700, 110560, 'en', 'name', 'Engineering Society in Finland, TFiF'),
(140701, 110560, 'fr', 'name', 'SociƩte des IngeniƩurs Civils Finlandais TFiF'),
(140702, 110560, 'fi', 'name', 'Tekniska Fƶreningen i Finland'),
(140703, 110560, 'de', 'name', 'Verein Finnischer Diplom-Ingenieure TFiF'),
(140704, 110561, 'de', 'name', 'Senckenberg Deutsches Entomologisches Institut'),
(140705, 110561, 'en', 'name', 'Senckenberg German Entomological Institute'),
(140706, 110562, 'en', 'name', 'Communication Molecules and Adapation of Micro-organisms'),
(140707, 110562, 'fr', 'name', 'MolƩcules de Communication et Adaptation des Micro-organismes'),
(140708, 110563, 'no', 'name', 'Noroff HĆøyskole'),
(140709, 110563, 'en', 'name', 'Noroff University College'),
(140710, 110564, 'de', 'name', 'Finnische Gesellschaft für Naturphilosophie'),
(140711, 110564, 'fi', 'name', 'Luonnonfilosofian seura ry'),
(140712, 110564, 'en', 'name', 'The Finnish Society for Natural Philosophy'),
(140713, 110565, 'en', 'name', 'The University of Melbourne'),
(140714, 110566, 'en', 'name', 'AGRF Ltd'),
(140715, 110567, 'en', 'name', 'Biomedicine Research Institute of Buenos Aires - CONICET - Partner Institute of the Max Planck Society'),
(140716, 110567, 'es', 'name', 'Instituto de Investigación en Biomedicina de Buenos Aires - Instituto Partner de la Sociedad Max Planck'),
(140717, 110568, 'en', 'name', 'Urban Policies and Research Center (ŞURA)'),
(140718, 110568, 'tr', 'name', 'Şura Kent Politikaları ve Araştırmaları Merkezi'),
(140719, 110569, 'fr', 'name', 'Risques cliniques et sƩcuritƩ en santƩ des femmes et en santƩ pƩrinatale'),
(140720, 110570, 'en', 'name', 'Ahalia School of Engineering and Technology'),
(140721, 110571, 'no_lang_code', 'name', 'Zimbabwe Ezekiel Guti University'),
(140722, 110572, 'en', 'name', 'Barcelona Institute for Global Health'),
(140723, 110572, 'ca', 'name', 'Institut de Salut Global de Barcelona'),
(140724, 110572, 'es', 'name', 'Instituto de Salud Global de Barcelona'),
(140725, 110573, 'es', 'name', 'Fundación para la Investigación Aplicada en Delincuencia y Seguridad'),
(140726, 110574, 'fr', 'name', 'Laboratoire d''Ɖlectronique, Antennes et TĆ©lĆ©communications'),
(140727, 110575, 'fr', 'name', 'Conservatoire d''espaces naturels d''Occitanie'),
(140728, 110576, 'fr', 'name', 'Laboratoire des SystĆØmes Perceptifs'),
(140729, 110577, 'en', 'name', 'Academy of Scientific and Innovative Research'),
(140730, 110578, 'no_lang_code', 'name', 'Lockheed Martin (Canada)'),
(140731, 110579, 'en', 'name', 'Fisheries Research Institute'),
(140732, 110580, 'fr', 'name', 'Institut de Chimie et Biochimie MolƩculaires et SupramolƩculaires'),
(140733, 110581, 'en', 'name', 'Finnish Statistical Society'),
(140734, 110581, 'sv', 'name', 'Statistiska Samfundet i Finland'),
(140735, 110581, 'fi', 'name', 'Suomen Tilastoseura'),
(140736, 110582, 'en', 'name', 'Bangladesh National Herbarium'),
(140737, 110582, 'bn', 'name', 'বাংলাদেশ ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² হারবেরিয়াম'),
(140738, 110583, 'id', 'name', 'Institut Agama Islam An-Nawawi Purworejo'),
(140739, 110584, 'en', 'name', 'Birbal Sahni Institute of Palaeosciences'),
(140740, 110584, 'hi', 'name', 'ą¤¬ą„€ą¤°ą¤¬ą¤² ą¤øą¤¾ą¤¹ą¤Øą„€ ą¤Ŗą„ą¤°ą¤¾ą¤µą¤Øą¤øą„ą¤Ŗą¤¤ą¤æą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(140741, 110584, 'ta', 'name', 'ą®ŖąÆ€ą®°ąÆą®Ŗą®¾ą®²ąÆ ą®šą®•ą®¾ą®©ą®æ ą®¤ąÆŠą®²ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(140742, 110585, 'pt', 'name', 'Museu Nacional de História Natural e Ciência'),
(140743, 110586, 'en', 'name', 'Spectrum International University College'),
(140744, 110587, 'fr', 'name', 'Proche-Orient, Caucase : Langues, ArchƩologie, Cultures'),
(140745, 110588, 'en', 'name', 'Shandong Energy Group Xibei Mining Co., Ltd'),
(140746, 110588, 'no_lang_code', 'name', 'Shandong Energy Group Xibei Mining Co., Ltd (China)'),
(140747, 110588, 'zh', 'name', 'å±±äøœčƒ½ęŗé›†å›¢č„æåŒ—ēŸæäøšęœ‰é™å…¬åø'),
(140748, 110589, 'en', 'name', 'JKK Munirajah Institute of Health Sciences College of Pharmacy'),
(140749, 110590, 'en', 'name', 'Finnish Political Science Association (FPSA)'),
(140750, 110590, 'sv', 'name', 'Statsvetenskapliga fƶreningen'),
(140751, 110590, 'fi', 'name', 'Valtiotieteellinen yhdistys'),
(140752, 110591, 'es', 'name', 'Instituto de Mediación de México'),
(140753, 110592, 'en', 'name', 'Agricultural Plant Physiology and Ecology Research Institute'),
(140754, 110592, 'es', 'name', 'Instituto de Investigaciones Fisiológicas y Ecológicas Vinculadas a la Agricultura'),
(140755, 110593, 'tr', 'name', 'Antalya Şehi̇r Hastanesi̇'),
(140756, 110594, 'en', 'name', 'Kansai Institute for Photon Science'),
(140757, 110594, 'ja', 'name', 'é–¢č„æå…‰é‡å­ē§‘å­¦ē ”ē©¶ę‰€'),
(140758, 110595, 'fr', 'name', 'Institut Fresnel'),
(140759, 110596, 'en', 'name', 'Post Graduate Institute of Medicine, University of Colombo, Sri Lanka'),
(140760, 110597, 'en', 'name', 'Finnish American Studies Association (FASA)'),
(140761, 110597, 'fi', 'name', 'Suomen Yhdysvaltain tutkimuksen seura ry'),
(140762, 110598, 'en', 'name', 'Upper Skagit Indian Tribe'),
(140763, 110599, 'es', 'name', 'Centro MƩdico Sanitas Costa Rica'),
(140764, 110599, 'en', 'name', 'Sanitas Costa Rica Medical Centre'),
(140765, 110600, 'en', 'name', 'Namibian Chamber of Environment'),
(140766, 110601, 'fr', 'name', 'Centre de Recherche en ArchƩologie, ArchƩosciences, Histoire'),
(140767, 110602, 'en', 'name', 'Inonu University'),
(140768, 110602, 'tr', 'name', 'İnönü Üniversitesi'),
(140769, 110603, 'en', 'name', 'Data and algorithms for an intelligent and sustainable city'),
(140770, 110603, 'fr', 'name', 'DonnƩes et algorithmes pour une ville intelligente et durable'),
(140771, 110604, 'fr', 'name', 'UniversitƩ PrivƩe de Ouagadougou'),
(140772, 110605, 'fr', 'name', 'Centre d''Etudes et de Recherches Administratives, Politiques et Sociales'),
(140773, 110605, 'en', 'name', 'Lille Center for European Research on Administration, Politics and Society'),
(140774, 110606, 'en', 'name', 'Parents International'),
(140775, 110607, 'es', 'name', 'ClĆ­nica Santa SofĆ­a'),
(140776, 110608, 'fr', 'name', 'Chimie du Solide et Energie'),
(140777, 110608, 'en', 'name', 'Solid State Chemistry And Energy Lab'),
(140778, 110609, 'en', 'name', 'Cluster of Excellence "Inflammation at Interfaces"'),
(140779, 110609, 'de', 'name', 'Exzellenzclusters Entzündungsforschung'),
(140780, 110610, 'es', 'name', 'Hospital Provincial Universitario Cardiocentro Ernesto Guevara'),
(140781, 110611, 'en', 'name', 'Finnish Society for Science Fiction and Fantasy Research'),
(140782, 110611, 'fi', 'name', 'Suomen science fiction- ja fantasiatutkimuksen seura ry'),
(140783, 110612, 'en', 'name', 'Biaka University Institute of Buea'),
(140784, 110613, 'en', 'name', 'Luther-Agricola Society'),
(140785, 110613, 'de', 'name', 'Luther-Agricola-Gesellschaft'),
(140786, 110613, 'fi', 'name', 'Luther-Agricola-Seura'),
(140787, 110613, 'sv', 'name', 'Luther-Agricola-sƤllskapet'),
(140788, 110614, 'pt', 'name', 'Unidade Local de SaĆŗde do Litoral Alentejano'),
(140789, 110615, 'sv', 'name', 'Finlands Byggnadsingenjƶrsfƶrbund RIL'),
(140790, 110615, 'en', 'name', 'Finnish Association of Civil Engineers RIL'),
(140791, 110615, 'fi', 'name', 'Suomen Rakennusinsinƶƶrien Liitto RIL'),
(140792, 110615, 'de', 'name', 'Verband Finnischer Bauingenieure RIL'),
(140793, 110616, 'en', 'name', 'Acoustical Society of Finland'),
(140794, 110616, 'fi', 'name', 'Akustinen Seura'),
(140795, 110616, 'sv', 'name', 'Akustiska SƤllskapet'),
(140796, 110617, 'en', 'name', 'Foundation of the Finnish Institute at Athens'),
(140797, 110617, 'sv', 'name', 'Stiftelsen fƶr Finlands Atheninstitut'),
(140798, 110617, 'fi', 'name', 'Suomen Ateenan-instituutin sƤƤtiƶ'),
(140799, 110617, 'cs', 'name', 'To Idryma tou Finlandikou Institoutou Athenon'),
(140800, 110618, 'en', 'name', 'Davao del Sur State College'),
(140801, 110619, 'en', 'name', 'Finnish Society for Tourism Research'),
(140802, 110619, 'fi', 'name', 'Suomen matkailututkimuksen seura ry'),
(140803, 110619, 'sv', 'name', 'SƤllskapet fƶr turismforskning i Finland'),
(140804, 110620, 'fr', 'name', 'Institut de Chimie MolƩculaire de Reims'),
(140805, 110620, 'en', 'name', 'Institute of Molecular Chemistry Reims'),
(140806, 110621, 'sv', 'name', 'FastighetsvƤrderingsfƶreningen i Finland'),
(140807, 110621, 'en', 'name', 'Finnish Association for Real Estate Valuation'),
(140808, 110621, 'fi', 'name', 'Suomen Kiinteistƶarviointiyhdistys ry'),
(140809, 110622, 'en', 'name', 'Cancer Research Center of Lyon'),
(140810, 110622, 'fr', 'name', 'Centre de Recherche en CancƩrologie de Lyon'),
(140811, 110623, 'en', 'name', 'University of Mashreq'),
(140812, 110624, 'sv', 'name', 'Finlands Forstvetenskapliga Samfund'),
(140813, 110624, 'en', 'name', 'Finnish Society of Forest Science'),
(140814, 110624, 'de', 'name', 'Forstwissenschaftliche Gesellschaft in Finnland'),
(140815, 110624, 'es', 'name', 'Sociedad CientĆ­fica Forestal de Finlandia'),
(140816, 110624, 'fr', 'name', 'Société Finlandaise des Sciences Forestières'),
(140817, 110624, 'fi', 'name', 'Suomen MetsƤtieteellinen Seura'),
(140818, 110625, 'fr', 'name', 'Analyse et Traitement Informatique de la Langue FranƧaise'),
(140819, 110625, 'en', 'name', 'Computer Processing and Analysis of the French Language'),
(140820, 110626, 'fi', 'name', 'Geodesian ja fotogrammetrian seura'),
(140821, 110626, 'en', 'name', 'The Finnish Society of Geodesy and Photogrammetry'),
(140822, 110627, 'en', 'name', 'School of Sex Therapy'),
(140823, 110628, 'de', 'name', 'Bildungswerk der Wirtschaft Hamburg'),
(140824, 110628, 'en', 'name', 'Education and Training Service for Hamburg Businesses'),
(140825, 110629, 'en', 'name', 'Nanogeios Laboratory (United States)'),
(140826, 110630, 'fi', 'name', 'Fƶreningen Granskaren r.f.'),
(140827, 110631, 'en', 'name', 'Zo Indigenous Forum'),
(140828, 110632, 'fr', 'name', 'Laboratoire de GĆ©nie Ɖlectrique de Grenoble'),
(140829, 110633, 'fr', 'name', 'Association Finlandaise du BƩton'),
(140830, 110633, 'sv', 'name', 'Betongfƶreningen i Finland'),
(140831, 110633, 'en', 'name', 'Concrete Association of Finland'),
(140832, 110633, 'de', 'name', 'Finnischer Betonverein'),
(140833, 110633, 'fi', 'name', 'Suomen Betoniyhdistys'),
(140834, 110634, 'fr', 'name', 'Laboratoire de recherche en Management'),
(140835, 110635, 'fr', 'name', 'Laboratoire de Biologie et Pharmacologie AppliquƩe'),
(140836, 110636, 'en', 'name', 'Shakarim University'),
(140837, 110636, 'kk', 'name', 'Шәкәрім ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–Š½Ń–Ņ£'),
(140838, 110637, 'fr', 'name', 'Ecole de santƩ publique de Kinshasa'),
(140839, 110637, 'en', 'name', 'Kinshasa School of Public Health'),
(140840, 110638, 'en', 'name', 'Scientific Society for Vegetarian Nutrition SSNV APS'),
(140841, 110639, 'fr', 'name', 'HƓpital Armand-Trousseau'),
(140842, 110640, 'en', 'name', 'Agenla Academy'),
(140843, 110641, 'en', 'name', 'Higher Institute of Engineering and Technology, Kafrelsheikh'),
(140844, 110641, 'ar', 'name', 'المعهد العالى للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ بكفر Ų§Ł„Ų“ŁŠŲ®'),
(140845, 110642, 'es', 'name', 'Instituto de Investigaciones JurĆ­dicas y Sociales Ambrosio L. Gioja'),
(140846, 110643, 'en', 'name', 'University of Manitoba'),
(140847, 110643, 'fr', 'name', 'UniversitƩ du manitoba'),
(140848, 110644, 'en', 'name', 'Mineralogical Society of Finland'),
(140849, 110644, 'sv', 'name', 'Mineralogiska SƤllskapet i Finland'),
(140850, 110644, 'fi', 'name', 'Suomen Mineraloginen Seura'),
(140851, 110645, 'en', 'name', 'Kimpa Vita University'),
(140852, 110645, 'pt', 'name', 'Universidade Kimpa Vita'),
(140853, 110646, 'fr', 'name', 'Institut des MolƩcules et MatƩriaux du Mans'),
(140854, 110647, 'en', 'name', 'Society of Antiquaries'),
(140855, 110648, 'es', 'name', 'El Colegio del Estado de Hidalgo'),
(140856, 110649, 'pt', 'name', 'Associação Nacional de Estudos em Empreendedorismo e Gestão de Pequenas Empresas'),
(140857, 110650, 'fr', 'name', 'Migrations Internationales, Espace Espaces et SociƩtƩs'),
(140858, 110651, 'pl', 'name', 'Łukasiewicz - Poznański Instytut Technologiczny'),
(140859, 110651, 'en', 'name', 'Łukasiewicz Research Network - Poznań Institute of Technology'),
(140860, 110652, 'sv', 'name', 'BindvƤvsforskare'),
(140861, 110652, 'en', 'name', 'Finnish Connective Tissue Society'),
(140862, 110653, 'id', 'name', 'IKIP PGRI Kalimantan Timur'),
(140863, 110654, 'en', 'name', 'Taiwan AI Labs'),
(140864, 110654, 'zh', 'name', 'å°ē£äŗŗå·„ę™ŗę…§åÆ¦é©—å®¤'),
(140865, 110655, 'no', 'name', 'HƄlogaland Kraft'),
(140866, 110656, 'es', 'name', 'Centro de Estudios Justo Sierra'),
(140867, 110657, 'en', 'name', 'Historical Association of Northern Karelia'),
(140868, 110657, 'fi', 'name', 'Pohjois-Karjalan historiallinen yhdistys'),
(140869, 110658, 'fr', 'name', 'Laboratoire Printemps'),
(140870, 110659, 'fr', 'name', 'Biomarqueurs et essais cliniques en CancƩrologie et Onco-HƩmatologie'),
(140871, 110660, 'fr', 'name', 'Institut de Recherche sur le Cancer et le Vieillissement de Nice'),
(140872, 110660, 'en', 'name', 'Institute of Research on Cancer and Aging in Nice'),
(140873, 110661, 'id', 'name', 'Badan Tenaga Nuklir Nasional'),
(140874, 110661, 'en', 'name', 'National Nuclear Energy Agency of Indonesia'),
(140875, 110662, 'fi', 'name', 'Elintarviketieteiden Seura'),
(140876, 110662, 'en', 'name', 'Finnish Society of Food Science and Technology'),
(140877, 110663, 'en', 'name', 'St Vincent''s Health'),
(140878, 110664, 'fr', 'name', 'Laboratoire de Recherche Hydrodynamique, EnergƩtique et Environnement AtmosphƩrique'),
(140879, 110665, 'sv', 'name', 'Finlands sƤllskap fƶr avantgarde och modernism'),
(140880, 110665, 'en', 'name', 'Finnish Association for Modernism and Avant-garde (FAM)'),
(140881, 110665, 'fr', 'name', 'La SociĆ©tĆ© finlandaise d’étude de l’avantgarde et du modernisme'),
(140882, 110665, 'fi', 'name', 'Suomen avantgarden ja modernismin seura'),
(140883, 110666, 'en', 'name', 'OSCE Academy'),
(140884, 110667, 'en', 'name', 'Electrophysiology and Heart Modeling Institute'),
(140885, 110667, 'fr', 'name', 'L’Institut de Rythmologie et ModĆ©lisation Cardiaque'),
(140886, 110668, 'en', 'name', 'Hungarian Young Academy'),
(140887, 110669, 'fr', 'name', 'Laboratoire atmosphĆØres, milieux, observations spatiales'),
(140888, 110670, 'en', 'name', 'African Regional Institute for Geospatial Information Science and Technology'),
(140889, 110671, 'tr', 'name', 'Doğu Akdeniz Geçit Kuşağı Tarımsal Araştırma Enstitüsü'),
(140890, 110671, 'en', 'name', 'East Mediterranean Transitional Zone Agricultural Research of Institute'),
(140891, 110672, 'en', 'name', 'Wood Science and Technology Centre'),
(140892, 110673, 'en', 'name', 'New Zealand Police'),
(140893, 110673, 'mi', 'name', 'Nga Pirihimana O Aotearoa'),
(140894, 110674, 'de', 'name', 'Agrikulturwissenschaftliche Gesellschaft in Finnland'),
(140895, 110674, 'sv', 'name', 'Lantbruksvetenskapliga Samfundet i Finland'),
(140896, 110674, 'en', 'name', 'Scientific Agricultural Society of Finland'),
(140897, 110674, 'fi', 'name', 'Suomen Maataloustieteellinen Seura'),
(140898, 110675, 'fr', 'name', 'CATI'),
(140899, 110676, 'en', 'name', 'Leibniz Institute for Baltic Sea Research Warnemünde'),
(140900, 110676, 'de', 'name', 'Leibniz-Institut für Ostseeforschung Warnemünde'),
(140901, 110677, 'en', 'name', 'ALTERITAS'),
(140902, 110678, 'fr', 'name', 'Association historique de Turku'),
(140903, 110678, 'de', 'name', 'Historischen Vereinigung zu Turku'),
(140904, 110678, 'sv', 'name', 'Historiska fƶreningen i ƅbo'),
(140905, 110678, 'en', 'name', 'Turku Historical Society'),
(140906, 110678, 'et', 'name', 'Turu ajalooline ühing'),
(140907, 110678, 'fi', 'name', 'Turun Historiallinen Yhdistys'),
(140908, 110679, 'es', 'name', 'Parque Nacional de Yosemite'),
(140909, 110679, 'en', 'name', 'Yosemite National Park'),
(140910, 110680, 'en', 'name', 'Federal University of Technology Ikot Abasi'),
(140911, 110681, 'en', 'name', 'International Gemini Observatory'),
(140912, 110682, 'fr', 'name', 'Maison des Sciences sociales et des HumanitĆ©s - Lyon St-Ɖtienne'),
(140913, 110683, 'no_lang_code', 'name', 'KAGRA'),
(140914, 110683, 'ja', 'name', 'KAGRA å¤§åž‹ä½Žęø©é‡åŠ›ę³¢ęœ›é é”'),
(140915, 110684, 'pt', 'name', 'Instituto Tecnológico Vale'),
(140916, 110684, 'en', 'name', 'Vale Technological Institute'),
(140917, 110685, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Hortaleza'),
(140918, 110685, 'en', 'name', 'Sanitas Hortaleza Advanced Rehabilitation Centre'),
(140919, 110686, 'en', 'name', 'Pattern Recognition Society of Finland'),
(140920, 110686, 'fi', 'name', 'Suomen hahmontunnistustutkimuksen seura'),
(140921, 110687, 'fi', 'name', 'Prologos ry'),
(140922, 110687, 'en', 'name', 'The Finnish Association of Communication and Social Interaction'),
(140923, 110688, 'pt', 'name', 'Faculdade Unida de Vitória'),
(140924, 110689, 'fr', 'name', 'GƩosciences Montpellier'),
(140925, 110690, 'fi', 'name', 'Gƶteborgin yliopisto'),
(140926, 110690, 'sv', 'name', 'Gƶteborgs universitet'),
(140927, 110690, 'en', 'name', 'University of Gothenburg'),
(140928, 110691, 'en', 'name', 'Off-site Construction Research Centre'),
(140929, 110692, 'es', 'name', 'Fundación Iberoamericana de Finlandia'),
(140930, 110692, 'fi', 'name', 'Iberialais-amerikkalainen sƤƤtiƶ sr'),
(140931, 110692, 'sv', 'name', 'Iberoamerikanska stiftelsen rf'),
(140932, 110693, 'de', 'name', 'Institut für Materialprüfung und Werkstofftechnik Dr. Neubert GmbH'),
(140933, 110693, 'en', 'name', 'Institute for Materials Testing and Materials Technology Dr. Neubert'),
(140934, 110694, 'es', 'name', 'Institución Universitaria Mayor de Cartagena'),
(140935, 110695, 'en', 'name', 'Finnish Society for Ethnomusicology'),
(140936, 110695, 'sv', 'name', 'Finska musiketnologiska sƤllskapet'),
(140937, 110695, 'fi', 'name', 'Suomen Etnomusikologinen Seura'),
(140938, 110696, 'fr', 'name', 'Polytechnique MontrƩal'),
(140939, 110697, 'fr', 'name', 'Biologie Tissulaire et IngƩnierie ThƩrapeutique'),
(140940, 110698, 'en', 'name', 'People''s Government of Zhejiang Province'),
(140941, 110698, 'zh', 'name', 'ęµ™ę±Ÿēœäŗŗę°‘ę”æåŗœ'),
(140942, 110699, 'es', 'name', 'Hospital Sanitas CIMA'),
(140943, 110699, 'en', 'name', 'Sanitas CIMA Hospital'),
(140944, 110700, 'sv', 'name', 'Helsingforstraktens Ornitologiska Fƶreningen Tringa'),
(140945, 110700, 'fi', 'name', 'Helsingin Seudun Lintutieteellinen Yhdistys Tringa'),
(140946, 110700, 'en', 'name', 'Ornithological Society of Helsinki and Western Uusimaa Tringa'),
(140947, 110701, 'sv', 'name', 'SBU - Statens beredning fƶr medicinsk och social utvƤrdering'),
(140948, 110701, 'en', 'name', 'SBU - Swedish Agency for Health Technology Assessment and Assessment of Social Services'),
(140949, 110702, 'fr', 'name', 'Association Finlandaise de Linguistique AppliquƩe'),
(140950, 110702, 'sv', 'name', 'FinlƤndska fƶreningen fƶr tillƤmpad sprƄkvetenskap'),
(140951, 110702, 'en', 'name', 'Finnish Association of Applied Linguistics'),
(140952, 110702, 'fi', 'name', 'Suomen soveltavan kielitieteen yhdistys AFinLA'),
(140953, 110703, 'fr', 'name', 'ThĆ©orie Ɖconomique, ModĆ©lisation et Applications'),
(140954, 110704, 'en', 'name', 'RAEGE-Az'),
(140955, 110705, 'es', 'name', 'Asociación de Naturalistas del Sureste'),
(140956, 110706, 'en', 'name', 'Bavarian State Ministry of Health, Care and Prevention'),
(140957, 110706, 'de', 'name', 'Bayerisches Staatsministerium für Gesundheit, Pflege und Prävention'),
(140958, 110707, 'en', 'name', 'Velayat University'),
(140959, 110708, 'fr', 'name', 'Ausonius Institut de Recherche sur l''AntiquitƩ et le Moyen age'),
(140960, 110709, 'fr', 'name', 'MatƩriaux IngƩnierie et Science'),
(140961, 110710, 'fr', 'name', 'Immunologie - Immunopathologie - ImmunothƩrapie'),
(140962, 110710, 'en', 'name', 'Immunology - Immunopathology - Immunotherapy'),
(140963, 110711, 'en', 'name', 'Society of Social and Economic Research in the Universities of Turku'),
(140964, 110711, 'fi', 'name', 'Turun korkeakoulujen yhteiskunnallis-taloudellinen tutkimusyhdistys'),
(140965, 110711, 'sv', 'name', 'ƅbohƶgskolornas fƶrening fƶr social och ekonomisk forskning'),
(140966, 110712, 'id', 'name', 'Sekolah Tinggi Ilmu Kesehatan Dharma Husada'),
(140967, 110713, 'fr', 'name', 'Institut SupƩrieur des MƩtiers du Patrimoine de Tunis'),
(140968, 110714, 'en', 'name', 'Astrakhan Tatischev State University'),
(140969, 110714, 'ru', 'name', 'Астраханский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(140970, 110715, 'es', 'name', 'Hospital Borda'),
(140971, 110716, 'en', 'name', 'Finnish Society for Humanāˆ’Animal Studies'),
(140972, 110716, 'fi', 'name', 'Yhteiskunnallisen ja kulttuurisen elƤintutkimuksen seura'),
(140973, 110717, 'de', 'name', 'Finnische Altertumsgesellschaft'),
(140974, 110717, 'en', 'name', 'Finnish Antiquarian Society'),
(140975, 110717, 'sv', 'name', 'Finska Fornminnesfƶreningen'),
(140976, 110717, 'fi', 'name', 'Suomen Muinaismuistoyhdistys'),
(140977, 110718, 'en', 'name', 'Food and Agriculture Organization of the United Nations'),
(140978, 110718, 'fr', 'name', 'Organisation des Nations Unies pour l''Alimentation et l''Agriculture'),
(140979, 110718, 'it', 'name', 'Organizzazione delle Nazioni Unite per l''Alimentazione e l''Agricoltura'),
(140980, 110719, 'es', 'name', 'Centro MƩdico Sanitas Balmes'),
(140981, 110719, 'en', 'name', 'Sanitas Balmes Medical Centre'),
(140982, 110720, 'en', 'name', 'Geopolymer Institute'),
(140983, 110721, 'sv', 'name', 'Barnpsykiaterfƶreningen i Finland'),
(140984, 110721, 'en', 'name', 'Finnish Society for Child and Adolescent Psychiatry'),
(140985, 110721, 'fi', 'name', 'Suomen Lastenpsykiatriyhdistys'),
(140986, 110722, 'en', 'name', 'Brain Plasticity laboratory'),
(140987, 110722, 'fr', 'name', 'Laboratoire PlasticitƩ du Cerveau'),
(140988, 110723, 'fr', 'name', 'Institut des Sciences de la Terre de Paris'),
(140989, 110724, 'pt', 'name', 'Instituto AnĆ­sio Teixeira'),
(140990, 110725, 'en', 'name', 'Economic History Society in Finland'),
(140991, 110725, 'sv', 'name', 'Ekonomisk-historiska fƶreningen i Finland'),
(140992, 110725, 'fi', 'name', 'Suomen taloushistoriallinen yhdistys'),
(140993, 110726, 'en', 'name', 'Historical Society of Tampere'),
(140994, 110726, 'de', 'name', 'Historische Gesellschaft Tampere'),
(140995, 110726, 'fi', 'name', 'Tampereen Historiallinen Seura'),
(140996, 110727, 'en', 'name', 'Finnish Patristic Society'),
(140997, 110727, 'sv', 'name', 'Patristiska samfundet i Finland rf'),
(140998, 110727, 'la', 'name', 'Societas Patristica Fennica'),
(140999, 110727, 'fi', 'name', 'Suomen patristinen seura ry'),
(141000, 110728, 'es', 'name', 'Universidad Intercultural de las Nacionalidades y Pueblos IndĆ­genas Amawtay Wasi'),
(141001, 110729, 'fr', 'name', 'Laboratoire de GĆ©nie des ProcĆ©dĆ©s – Environnement – Agro-alimentaire'),
(141002, 110729, 'en', 'name', 'Process Engineering for Environment and Food'),
(141003, 110730, 'en', 'name', 'Environnement Organisation LEgislation'),
(141004, 110731, 'en', 'name', 'Autonomous University of Sinaloa'),
(141005, 110731, 'es', 'name', 'Universidad Autónoma de Sinaloa'),
(141006, 110732, 'en', 'name', 'Sri Balaji University, Pune'),
(141007, 110733, 'fr', 'name', 'Plateforme Technologique d''Innovation BiomƩdicale'),
(141008, 110734, 'fr', 'name', 'AmƩnagement, DƩveloppement, Environnement, SantƩ et SociƩtƩs'),
(141009, 110735, 'en', 'name', 'Sant Kavi Baba Baijnath Govt. PG College'),
(141010, 110736, 'fr', 'name', 'GƩosciences Rennes'),
(141011, 110737, 'en', 'name', 'Luxor University'),
(141012, 110737, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأقصر'),
(141013, 110738, 'en', 'name', 'TIDE Foundation'),
(141014, 110739, 'sv', 'name', 'Finlands vetenskapsredaktƶrers fƶrbund'),
(141015, 110739, 'en', 'name', 'Finnish Association of Science Editors and Journalists (FASEJ)'),
(141016, 110739, 'fi', 'name', 'Suomen tiedetoimittajain liitto'),
(141017, 110740, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Castellana'),
(141018, 110740, 'en', 'name', 'Sanitas Castellana Advanced Rehabilitation Centre'),
(141019, 110741, 'en', 'name', 'Finnish Association of Mathematics and Science Education Research'),
(141020, 110741, 'fi', 'name', 'Matematiikan ja luonnontieteiden opetuksen tutkimusseura'),
(141021, 110742, 'en', 'name', 'Federal Capital Territory Administration'),
(141022, 110743, 'en', 'name', 'Andean Road Countries for Science and Technology'),
(141023, 110744, 'it', 'name', 'Ospedale di Prato Santo Stefano'),
(141024, 110745, 'en', 'name', 'Azzaytuna University'),
(141025, 110745, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų©'),
(141026, 110746, 'en', 'name', 'Finnish Society of Chemical Engineers'),
(141027, 110746, 'fi', 'name', 'Kemiallisteknillinen Yhdistys'),
(141028, 110746, 'sv', 'name', 'Kemisktekniska Fƶreningen'),
(141029, 110747, 'en', 'name', 'Materials Research Center (Ukraine)'),
(141030, 110748, 'fr', 'name', 'UniversitƩ Catholique de l''Afrique de l''Ouest - UnitƩ Universitaire de Bobo Dioulasso'),
(141031, 110749, 'fi', 'name', 'Eurooppaoikeuden yhdistys'),
(141032, 110749, 'en', 'name', 'European Law Association (in Finland), FIDE Finland'),
(141033, 110749, 'sv', 'name', 'Fƶreningen fƶr EuroparƤtt'),
(141034, 110750, 'en', 'name', 'Thakur College of Engineering and Technology'),
(141035, 110751, 'en', 'name', 'St. Xavier’s College of Management & Technology'),
(141036, 110752, 'en', 'name', 'University of Kinshasa'),
(141037, 110752, 'fr', 'name', 'UniversitƩ de Kinshasa'),
(141038, 110753, 'en', 'name', 'ForestAction Nepal'),
(141039, 110754, 'fr', 'name', 'PhysicoChimie des Processus de Combustion et de l''AtmosphĆØre'),
(141040, 110755, 'en', 'name', 'Finnish Artificial Intelligence Society (FAIS)'),
(141041, 110755, 'fi', 'name', 'Suomen TekoƤlyseura (STeS)'),
(141042, 110756, 'en', 'name', 'Burkhart Research Institute for Orthopaedics'),
(141043, 110757, 'en', 'name', 'Finnish Inverse Problems Society (FIPS)'),
(141044, 110757, 'fi', 'name', 'Suomen Inversioseura'),
(141045, 110758, 'en', 'name', 'Indoc Research'),
(141046, 110759, 'et', 'name', 'Assotsiatsija slavistov Finljandii'),
(141047, 110759, 'sv', 'name', 'Finlands Slavistkrets'),
(141048, 110759, 'en', 'name', 'Society of Finnish Slavists'),
(141049, 110759, 'fi', 'name', 'Suomen Slavistipiiri'),
(141050, 110760, 'en', 'name', 'Finnish Death Studies Association'),
(141051, 110760, 'fi', 'name', 'Suomalaisen Kuolemantutkimuksen Seura ry'),
(141052, 110760, 'sv', 'name', 'SƤllskapet fƶr FinlƤndsk Dƶdsforskning'),
(141053, 110761, 'en', 'name', 'Finnish Society of Church History'),
(141054, 110761, 'de', 'name', 'Finska kyrkohistoriska samfundetnische Gesellschaft für Kirchengeschichte'),
(141055, 110761, 'la', 'name', 'Societas Historiae Ecclesiasticae Fennica'),
(141056, 110761, 'fi', 'name', 'Suomen kirkkohistoriallinen seura'),
(141057, 110762, 'es', 'name', 'Universidad Francisco de Paula Santander Seccional OcaƱa'),
(141058, 110763, 'en', 'name', 'San Marcos University'),
(141059, 110763, 'es', 'name', 'Universidad San Marcos'),
(141060, 110764, 'fr', 'name', 'Molécules d''Intérêt Biologique'),
(141061, 110765, 'en', 'name', 'Early Childhood Education Association Finland'),
(141062, 110766, 'fr', 'name', 'Institut de Recherche en Infectiologie de Montpellier'),
(141063, 110767, 'sq', 'name', 'Kolegji Universitar LOGOS'),
(141064, 110767, 'en', 'name', 'LOGOS University College'),
(141065, 110768, 'es', 'name', 'Centro MƩdico Sanitas Conde Duque'),
(141066, 110768, 'en', 'name', 'Sanitas Conde Duque Medical Centre'),
(141067, 110769, 'es', 'name', 'Fundación Getulio Vargas'),
(141068, 110769, 'pt', 'name', 'Fundação Getulio Vargas'),
(141069, 110769, 'en', 'name', 'GetĆŗlio Vargas Foundation'),
(141070, 110770, 'fr', 'name', 'Laboratoire d''Ingénierie des Systèmes de Versailles'),
(141071, 110771, 'en', 'name', 'Institute of Buddhist Studies'),
(141072, 110771, 'ja', 'name', 'ä»ę•™å¤§å­¦é™¢'),
(141073, 110772, 'en', 'name', 'National Space Research and Development Agency'),
(141074, 110773, 'en', 'name', 'Finnish International Studies Association (FISA)'),
(141075, 110773, 'sv', 'name', 'Fƶreningen fƶr internationella studier'),
(141076, 110773, 'fi', 'name', 'KansainvƤlisten suhteiden tutkimuksen seura (KATSE) ry'),
(141077, 110774, 'tr', 'name', 'Ordu Büyükşehir Belediyesi'),
(141078, 110775, 'fr', 'name', 'Centre d''Ɖcologie Fonctionnelle et Ɖvolutive'),
(141079, 110776, 'tr', 'name', 'SUASIS (Turkey)'),
(141080, 110777, 'fr', 'name', 'UnitƩ de MathƩmatiques Pures et AppliquƩes'),
(141081, 110778, 'en', 'name', 'University of Lübeck'),
(141082, 110778, 'de', 'name', 'Universität zu Lübeck'),
(141083, 110779, 'es', 'name', 'Facultad Latinoamericana de Ciencias Sociales Programa Paraguay'),
(141084, 110780, 'sv', 'name', 'Biostatistiska Fƶreningen i Finland'),
(141085, 110780, 'en', 'name', 'Finnish Society of Biostatistics'),
(141086, 110780, 'fi', 'name', 'Suomen Biostatistiikan Seura'),
(141087, 110781, 'en', 'name', 'East Africa Star University'),
(141088, 110782, 'en', 'name', 'Archaeological Society of Finland'),
(141089, 110782, 'sv', 'name', 'Arkeologiska sƤllskapet i Finland'),
(141090, 110782, 'de', 'name', 'Finnische archƤologische Gesellschaft'),
(141091, 110782, 'fi', 'name', 'Suomen Arkeologinen Seura'),
(141092, 110783, 'en', 'name', 'Finnish Society for Medical Physics and Medical Engineering (FSMPME)'),
(141093, 110783, 'sv', 'name', 'Fƶrening fƶr medicinsk fysik och teknik i Finland'),
(141094, 110783, 'fi', 'name', 'LƤƤketieteellisen fysiikan ja tekniikan yhdistys (LFTY)'),
(141095, 110784, 'en', 'name', 'Safin Pati University'),
(141096, 110784, 'id', 'name', 'Universitas Safin Pati'),
(141097, 110785, 'es', 'name', 'Universidad de Piura'),
(141098, 110785, 'en', 'name', 'University of Piura'),
(141099, 110786, 'sv', 'name', 'Nordiskt vƤgforum (NVF), finska avdelningen'),
(141100, 110786, 'fi', 'name', 'Pohjoismaiden tie- ja liikennefoorumi (PTL), Suomen osasto'),
(141101, 110787, 'en', 'name', 'The Karen Beasley Sea Turtle Rescue and Rehabilitation Center'),
(141102, 110788, 'en', 'name', 'Boston Children''s Hospital'),
(141103, 110789, 'en', 'name', 'Dr. P. A. Inamdar University'),
(141104, 110790, 'en', 'name', 'Cartographic Society of Finland'),
(141105, 110790, 'fi', 'name', 'Suomen Kartografinen Seura'),
(141106, 110791, 'en', 'name', 'St Vincents Institute of Medical Research'),
(141107, 110792, 'es', 'name', 'Universidad Michoacana de San NicolƔs de Hidalgo'),
(141108, 110793, 'pt', 'name', 'Operação Nariz Vermelho'),
(141109, 110794, 'en', 'name', 'Delta State College of Education, Mosogar'),
(141110, 110795, 'en', 'name', 'Finnish Society of Dairy Science'),
(141111, 110795, 'fi', 'name', 'Meijeritieteellinen Seura'),
(141112, 110796, 'en', 'name', 'Institute for Medical Research'),
(141113, 110796, 'es', 'name', 'Instituto de Investigaciones MƩdicas'),
(141114, 110797, 'en', 'name', 'Sony Interactive Entertainment'),
(141115, 110797, 'no_lang_code', 'name', 'Sony Interactive Entertainment (United States)'),
(141116, 110798, 'en', 'name', 'Evgeni Kharadze Georgian National Astrophysical Observatory'),
(141117, 110798, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ•įƒ’įƒ”įƒœįƒ˜ ხარაძიე įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒįƒ”įƒ¢įƒ įƒįƒ¤įƒ˜įƒ–įƒ˜įƒ™įƒ£įƒ įƒ˜ įƒįƒ‘įƒ”įƒ”įƒ įƒ•įƒįƒ¢įƒįƒ įƒ˜įƒ'),
(141118, 110799, 'fr', 'name', 'Laboratoire RhƩologie et ProcƩdƩs'),
(141119, 110800, 'en', 'name', 'Finnish Society of Soil Sciences'),
(141120, 110800, 'sv', 'name', 'Finska SƤllskapet fƶr Markvetenskap'),
(141121, 110800, 'fi', 'name', 'Suomen MaaperƤtieteiden Seura'),
(141122, 110801, 'es', 'name', 'Centro MƩdico Sanitas BS Boadilla'),
(141123, 110801, 'en', 'name', 'Sanitas BS Boadilla Medical Centre'),
(141124, 110802, 'en', 'name', 'Finnish Evaluation Society (SAYFES)'),
(141125, 110802, 'fi', 'name', 'Suomen Arviointiyhdistys ry'),
(141126, 110803, 'de', 'name', 'Kunsthaus Graz'),
(141127, 110804, 'es', 'name', 'Instituto Nacional de Medicina Legal y Ciencias Forenses'),
(141128, 110805, 'sv', 'name', 'Finlands Medicinska Radioisotopfƶrening'),
(141129, 110805, 'en', 'name', 'Finnish Society of Nuclear Medicine'),
(141130, 110805, 'fi', 'name', 'LƤƤketieteellinen Radioisotooppiyhdistys'),
(141131, 110806, 'fr', 'name', 'Laboratoire de Biotechnologies VƩgƩtales AppliquƩes aux Plantes Aromatiques et MƩdicinales'),
(141132, 110806, 'en', 'name', 'Laboratory of Plant Biotechnologies Applied to Aromatic and Medicinal Plants'),
(141133, 110807, 'en', 'name', 'Leibniz Institute for Science and Mathematics Education'),
(141134, 110807, 'de', 'name', 'Leibniz-Institut für die Pädagogik der Naturwissenschaften und Mathematik'),
(141135, 110808, 'fr', 'name', 'Centre Norbert Elias'),
(141136, 110809, 'id', 'name', 'Sekolah Tinggi Teologi Injili Indonesia Surabaya'),
(141137, 110810, 'en', 'name', 'Aue-Foundation'),
(141138, 110810, 'de', 'name', 'Aue-Stiftung'),
(141139, 110810, 'sv', 'name', 'Aue-stiftelse'),
(141140, 110810, 'fi', 'name', 'Aue-sƤƤtiƶ'),
(141141, 110811, 'en', 'name', 'Brokenshire College'),
(141142, 110812, 'es', 'name', 'Instituto de Investigaciones BiomƩdicas en Retrovirus y Sida'),
(141143, 110813, 'en', 'name', 'Finnish Cognitive Linguistics Association'),
(141144, 110813, 'sv', 'name', 'Fƶreningen fƶr kognitiv lingvistik i Finland'),
(141145, 110813, 'fi', 'name', 'Suomen kognitiivisen kielentutkimuksen yhdistys FiCLA'),
(141146, 110814, 'en', 'name', 'Center for Applied Medical Research'),
(141147, 110814, 'es', 'name', 'Centro de Investigación Médica Aplicada'),
(141148, 110815, 'en', 'name', 'Association for Informationstudies (AIS)'),
(141149, 110815, 'sv', 'name', 'Fƶreningen fƶr informationsvetenskap'),
(141150, 110815, 'fi', 'name', 'Informaatiotutkimuksen yhdistys (ITY)'),
(141151, 110816, 'fr', 'name', 'Institut de Chimie Radicalaire'),
(141152, 110817, 'fr', 'name', 'Patrimoines locaux, Environnement et Globalisation'),
(141153, 110818, 'sv', 'name', 'Finlands DjurrƤttsjurister rf'),
(141154, 110818, 'en', 'name', 'Finnish Animal Rights Law Society'),
(141155, 110818, 'fi', 'name', 'Suomen elƤinoikeusjuristit ry'),
(141156, 110819, 'fr', 'name', 'ComitƩ finlandais de l''Association Internationale des Sciences Juridiques'),
(141157, 110819, 'sv', 'name', 'Finska kommittƩn fƶr International Association of Legal Science'),
(141158, 110819, 'fi', 'name', 'KansainvƤlisen oikeustieteiden yhdistyksen Suomen osasto r.y.'),
(141159, 110819, 'en', 'name', 'The Finnish Committee for Comparative Law'),
(141160, 110820, 'es', 'name', 'Instituto Nacional de Bellas Artes y Literatura'),
(141161, 110821, 'en', 'name', 'Victimology Society of Serbia'),
(141162, 110821, 'sr', 'name', 'ViktimoloŔko DruŔtvo Srbije'),
(141163, 110822, 'en', 'name', 'Credit Comfort'),
(141164, 110823, 'en', 'name', 'Hungarian Seed Association'),
(141165, 110823, 'hu', 'name', 'Vetőmag SzƶvetsĆ©g'),
(141166, 110824, 'fr', 'name', 'Laboratoire de GƩnƩtique & Evolution des Populations VƩgƩtales'),
(141167, 110825, 'fr', 'name', 'ArchĆ©ologies et Sciences de l’AntiquitĆ©'),
(141168, 110826, 'en', 'name', 'American Islamic College'),
(141169, 110826, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ©'),
(141170, 110827, 'pl', 'name', 'Zespół Szkół w Rzepinie'),
(141171, 110828, 'de', 'name', 'semantics gGmbH'),
(141172, 110829, 'en', 'name', 'International Thorium Molten-Salt Forum'),
(141173, 110829, 'ja', 'name', 'ćƒˆćƒŖć‚¦ćƒ ē†”čžå”©åŽŸå­ē‚‰'),
(141174, 110830, 'pt', 'name', 'Associação Brasileira para o Estudo da Obesidade e Síndrome Metabólica'),
(141175, 110831, 'en', 'name', 'Social Policy Association in Finland'),
(141176, 110831, 'sv', 'name', 'Socialpolitiska fƶreningen'),
(141177, 110831, 'fi', 'name', 'Sosiaalipoliittinen yhdistys'),
(141178, 110832, 'en', 'name', 'Confluence University of Science and Technology, Osara'),
(141179, 110833, 'fr', 'name', 'Institut pour l''avancƩe des biosciences'),
(141180, 110833, 'en', 'name', 'Institute for Advanced Biosciences'),
(141181, 110834, 'es', 'name', 'Instituto de Seguridad Social del Estado de MƩxico y Municipios'),
(141182, 110835, 'en', 'name', 'Actuarial Society of Finland'),
(141183, 110835, 'sv', 'name', 'Finlands Aktuariefƶrening'),
(141184, 110835, 'fi', 'name', 'Suomen Aktuaariyhdistys ry'),
(141185, 110836, 'en', 'name', 'Finnish Colour Association'),
(141186, 110836, 'fi', 'name', 'Suomen vƤriyhdistys ry (SVY)'),
(141187, 110837, 'en', 'name', 'Mirpur University of Science and Technology'),
(141188, 110837, 'ur', 'name', 'Ł…ŪŒŲ±Ł¾ŁˆŲ± ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŲ±Ų§Ū“ سائنس اور Ł¹ŪŒŚ©Ł†ŁˆŁ„ŁˆŲ¬ŪŒ'),
(141189, 110838, 'sv', 'name', 'Fysikersamfundet i Finland'),
(141190, 110838, 'en', 'name', 'Physical Society in Finland'),
(141191, 110838, 'fi', 'name', 'Suomen Fyysikkojen seura r.f.'),
(141192, 110839, 'en', 'name', 'Philippine Atmospheric, Geophysical, and Astronomical Services Administration'),
(141193, 110840, 'en', 'name', 'Institute of Polymer Chemistry and Physics'),
(141194, 110840, 'uz', 'name', 'Polimerlar Kimyosi va Fizikasi insitituti'),
(141195, 110841, 'en', 'name', 'Maha Prajna Buddhist College'),
(141196, 110841, 'id', 'name', 'Sekolah Tinggi Agama Buddha Maha Prajna Jakarta'),
(141197, 110842, 'en', 'name', 'College of Alameda'),
(141198, 110843, 'en', 'name', 'King Faisal University of N''Djamena'),
(141199, 110844, 'en', 'name', 'Bat Conservation India Trust'),
(141200, 110845, 'fr', 'name', 'HƓpital Paul-Brousse'),
(141201, 110846, 'en', 'name', 'King Baudouin Foundation'),
(141202, 110846, 'nl', 'name', 'Koning Boudewijnstichting'),
(141203, 110847, 'en', 'name', 'EU Business School, Barcelona'),
(141204, 110848, 'fr', 'name', 'Centre des Sciences du Goƻt et de l''Alimentation'),
(141205, 110849, 'sv', 'name', 'Egyptologiska SƤllskapet i Finland'),
(141206, 110849, 'en', 'name', 'Finnish Egyptological Society'),
(141207, 110849, 'fr', 'name', 'SociƩtƩ d'' Egyptologie de Finlande'),
(141208, 110849, 'fi', 'name', 'Suomen Egyptologinen Seura'),
(141209, 110850, 'en', 'name', 'ITCC-P4 gGmbH'),
(141210, 110851, 'en', 'name', 'Association of Finnish Ethnologists Ethnos'),
(141211, 110851, 'sv', 'name', 'Finlands etnologfƶrening Ethnos'),
(141212, 110851, 'fi', 'name', 'Suomen etnologien yhdistys Ethnos ry'),
(141213, 110852, 'en', 'name', 'Osaka Research Institute of Industrial Science and Technology'),
(141214, 110852, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§é˜Ŗē”£ę„­ęŠ€č”“ē ”ē©¶ę‰€'),
(141215, 110853, 'fr', 'name', 'Dauphine Recherches en Management'),
(141216, 110854, 'fr', 'name', 'ModƩlisation alƩatoire de Paris Nanterre'),
(141217, 110855, 'en', 'name', 'Sagar Institute of Research, Technology & Science – Pharmacy'),
(141218, 110856, 'id', 'name', 'Universitas Satya Terra Bhinneka'),
(141219, 110857, 'no_lang_code', 'name', 'Boehringer Ingelheim (Portugal)'),
(141220, 110858, 'en', 'name', 'Simon Fraser University'),
(141221, 110859, 'en', 'name', 'NSF NOIRLab'),
(141222, 110860, 'en', 'name', 'Ambedkar University Delhi'),
(141223, 110860, 'hi', 'name', 'ą¤…ą¤®ą„ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(141224, 110861, 'fr', 'name', 'Laboratoire de Droit des affaires et nouvelles technologies'),
(141225, 110862, 'en', 'name', 'IIMT College of Engineering, Greater Noida'),
(141226, 110863, 'fr', 'name', 'Laboratoire d''Automatique, de MƩcanique et d''Informatique Industrielles et Humaines'),
(141227, 110863, 'en', 'name', 'Laboratory of Industrial and Human Automation Control, Mechanical Engineering and Computer Science'),
(141228, 110864, 'es', 'name', 'Centro MƩdico Sanitas Valencia'),
(141229, 110864, 'en', 'name', 'Sanitas Valencia Medical Centre'),
(141230, 110865, 'fr', 'name', 'Laboratoire de Physique Subatomique et des Technologies AssociƩes'),
(141231, 110866, 'en', 'name', 'Alice L. Walton School of Medicine'),
(141232, 110867, 'fi', 'name', 'JyvƤskylƤn Historiallinen Yhdistys'),
(141233, 110868, 'es', 'name', 'Universidad Nacional Daniel AlomĆ­a Robles'),
(141234, 110869, 'en', 'name', 'HARZ Labs LLC'),
(141235, 110869, 'no_lang_code', 'name', 'HARZ Labs LLC (Russia)'),
(141236, 110870, 'en', 'name', 'Linguistic Association of Finland'),
(141237, 110870, 'sv', 'name', 'SprƄkvetenskapliga fƶreningen i Finland'),
(141238, 110870, 'fi', 'name', 'Suomen kielitieteellinen yhdistys'),
(141239, 110871, 'de', 'name', 'Meininger Museen'),
(141240, 110872, 'en', 'name', 'Finnish Society for the History of Technology'),
(141241, 110872, 'fi', 'name', 'Tekniikan Historian Seura THS ry'),
(141242, 110872, 'sv', 'name', 'Teknikhistoriska Samfundet THS'),
(141243, 110873, 'en', 'name', 'BC Children''s Hospital Research Institute'),
(141244, 110874, 'en', 'name', 'Rwanda Forensic Institute'),
(141245, 110875, 'en', 'name', 'KPR College of Arts Science and Research'),
(141246, 110876, 'tr', 'name', 'Kocaeli Büyükşehir Belediyesi'),
(141247, 110876, 'en', 'name', 'Metropolitan Municipality of Kocaeli'),
(141248, 110877, 'en', 'name', 'Senckenberg Biodiversity and Climate Research Centre'),
(141249, 110877, 'de', 'name', 'Senckenberg BiodiversitƤt und Klima Forschungszentrum'),
(141250, 110878, 'en', 'name', 'Institute of Oilseed Crops of the National Academy of Agrarian Sciences of Ukraine'),
(141251, 110878, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ олійних ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(141252, 110879, 'fr', 'name', 'Institut Interdisciplinaire d’Anthropologie du Contemporain'),
(141253, 110880, 'en', 'name', 'Indian Institute of Technology Madras, Zanzibar'),
(141254, 110881, 'en', 'name', 'Enieg Oxford University Institute'),
(141255, 110882, 'en', 'name', 'Gauhati University'),
(141256, 110882, 'hi', 'name', 'ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(141257, 110882, 'bn', 'name', 'ą¦—ą§ą¦Æą¦¼ą¦¾ą¦¹ą¦¾ą¦Ÿą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(141258, 110882, 'ta', 'name', 'ą®•ąÆą®µą®¹ą®¾ą®¤ąÆą®¤ą®æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(141259, 110883, 'de', 'name', 'Universalmuseum Joanneum'),
(141260, 110884, 'en', 'name', 'National Eating Disorders Collaboration'),
(141261, 110885, 'en', 'name', 'Wetsus, European Centre of Excellence for Sustainable Water Technology'),
(141262, 110886, 'en', 'name', 'Institute of Population Health'),
(141263, 110887, 'en', 'name', 'Teesta University'),
(141264, 110888, 'id', 'name', 'Ma''had Aly Hasyim Asy''ari Pesantren Tebuireng'),
(141265, 110889, 'en', 'name', 'National Pedagogical Museum and Library of J. A. Comenius'),
(141266, 110889, 'cs', 'name', 'NƔrodnƭ pedagogickƩ muzeum a knihovna J. A. KomenskƩho'),
(141267, 110890, 'en', 'name', 'Bulgarian Defence Institute "Professor Tsvetan Lazarov"'),
(141268, 110890, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по отбрана "ŠŸŃ€Š¾Ń„ŠµŃŠ¾Ń€ Цветан Лазаров"'),
(141269, 110891, 'en', 'name', 'CSC - IT Center for Science'),
(141270, 110891, 'no_lang_code', 'name', 'CSC - IT Center for Science (Finland)'),
(141271, 110891, 'fi', 'name', 'CSC – Tieteen tietotekniikan keskus oy Yhteystiedot'),
(141272, 110892, 'en', 'name', 'Service Employees International Union'),
(141273, 110893, 'fr', 'name', 'Science et IngƩnierie des MatƩriaux et ProcƩdƩs'),
(141274, 110894, 'fr', 'name', 'Laboratoire HydroSciences Montpellier'),
(141275, 110894, 'en', 'name', 'Laboratory HydroSciences Montpellier'),
(141276, 110895, 'en', 'name', 'Finnish Physiological Society'),
(141277, 110895, 'la', 'name', 'Societas Physiologica Finlandiae'),
(141278, 110895, 'fi', 'name', 'Suomen Fysiologiyhdistys'),
(141279, 110896, 'en', 'name', 'Research Institute for Soil and Water Conservation'),
(141280, 110896, 'cs', 'name', 'Výzkumný ústav monitoringu a ochrany půdy, v. v. i.'),
(141281, 110897, 'es', 'name', 'Centro MƩdico Sanitas Reina Victoria'),
(141282, 110897, 'en', 'name', 'Sanitas Reina Victoria Medical Centre'),
(141283, 110898, 'en', 'name', 'Finnish Society of Urban Planning'),
(141284, 110898, 'sv', 'name', 'Fƶreningen fƶr samhƤllsplanering'),
(141285, 110898, 'fi', 'name', 'Yhdyskuntasuunnittelun seura'),
(141286, 110899, 'es', 'name', 'Hospital de Clƭnicas "JosƩ de San Martƭn"'),
(141287, 110900, 'es', 'name', 'Centro de Ingeniería Ambiental de Camagüey'),
(141288, 110901, 'fi', 'name', 'Suomen Lihavuustutkijat ry'),
(141289, 110901, 'en', 'name', 'The Finnish Association for the Study of Obesity'),
(141290, 110902, 'en', 'name', 'Gati Shakti Vishwavidyalaya'),
(141291, 110903, 'fr', 'name', 'Laboratoire physiopathologie et pharmacologie clinique de la douleur'),
(141292, 110904, 'en', 'name', 'Finnish Sleep Research Society');
INSERT INTO `ror_settings` VALUES
(141293, 110904, 'sv', 'name', 'Finska SƶmnforskningssƤllksapet rf'),
(141294, 110904, 'fi', 'name', 'Suomen Unitutkimusseura ry'),
(141295, 110905, 'en', 'name', 'Mighty Penguins Sled Hockey'),
(141296, 110906, 'en', 'name', 'Sids Hospital and Research Center'),
(141297, 110907, 'pt', 'name', 'Hospital Dr. NƩlio MendonƧa'),
(141298, 110908, 'en', 'name', 'Dale Kietzman University'),
(141299, 110909, 'en', 'name', 'Finnish Association for Psychedelic Research'),
(141300, 110909, 'sv', 'name', 'Fƶreningen fƶr psykedelisk vetenskap i Finland'),
(141301, 110909, 'fi', 'name', 'Psykedeelitutkimusyhdistys ry'),
(141302, 110910, 'en', 'name', 'İKSAD Institute'),
(141303, 110911, 'fr', 'name', 'Institut d''Ʃlectronique de microƩlectronique et de nanotechnologie'),
(141304, 110911, 'en', 'name', 'Institute of Electronics, Microelectronics and Nanotechnology'),
(141305, 110912, 'en', 'name', 'Bondoukou University'),
(141306, 110912, 'fr', 'name', 'UniversitƩ de Bondoukou'),
(141307, 110913, 'fr', 'name', 'Parc national des Voyageurs'),
(141308, 110913, 'es', 'name', 'Parque nacional Voyageurs'),
(141309, 110913, 'en', 'name', 'Voyageurs National Park'),
(141310, 110914, 'en', 'name', 'Sapien Labs'),
(141311, 110915, 'sv', 'name', 'Filosofiska Fƶreningen i Finland'),
(141312, 110915, 'en', 'name', 'Philosophical Society of Finland'),
(141313, 110915, 'la', 'name', 'Societas Philosophica Fennica'),
(141314, 110915, 'fi', 'name', 'Suomen Filosofinen Yhdistys'),
(141315, 110916, 'en', 'name', 'Insurance Institute for Business & Home Safety'),
(141316, 110917, 'fi', 'name', 'Alkoholi-, huume- ja rahapelitutkimuksen seura ry'),
(141317, 110917, 'en', 'name', 'The Finnish Association for Alcohol, Drug and Gambling Research'),
(141318, 110918, 'fr', 'name', 'SoutenabilitƩ et RƩsilence'),
(141319, 110919, 'de', 'name', 'Senckenberg am Meer'),
(141320, 110920, 'fi', 'name', 'Etnisten suhteiden ja kansainvƤlisen muuttoliikkeen tutkimuksen seura ETMU'),
(141321, 110920, 'en', 'name', 'Society for the Study of Ethnic Relations and International Migration ETMU'),
(141322, 110920, 'sv', 'name', 'SƤllskapet fƶr forskning i etniska relationer och internationell migration ETMU'),
(141323, 110921, 'en', 'name', 'Agata Communications (Spain)'),
(141324, 110921, 'es', 'name', 'Agata Comunicación Científica S.L.'),
(141325, 110922, 'en', 'name', 'The Blyth Institute'),
(141326, 110923, 'es', 'name', 'Universidad MarĆ­a Auxiliadora'),
(141327, 110924, 'fr', 'name', 'Groupement de Recherche et d''Ɖtudes en Gestion d’HEC'),
(141328, 110925, 'fr', 'name', 'Institut de Recherche et d''Histoire des Textes'),
(141329, 110926, 'es', 'name', 'Laboratorio Central de Sanitas'),
(141330, 110926, 'en', 'name', 'Sanitas Central Laboratory'),
(141331, 110927, 'fr', 'name', 'Institut de Recherche en GƩnie Civil et MƩcanique'),
(141332, 110928, 'sv', 'name', 'FinlƤndska sƤllskapet fƶr barndomsforskning'),
(141333, 110928, 'en', 'name', 'Finnish Society for Childhood Studies'),
(141334, 110928, 'fi', 'name', 'Lapsuudentutkimuksen seura'),
(141335, 110929, 'fr', 'name', 'Lamsade'),
(141336, 110930, 'sv', 'name', 'Finlands idrottshistoriska fƶrening'),
(141337, 110930, 'en', 'name', 'Finnish Society for Sport History'),
(141338, 110930, 'fi', 'name', 'Suomen urheiluhistoriallinen seura ry'),
(141339, 110931, 'fi', 'name', 'Eurooppalaisen filosofian seura'),
(141340, 110931, 'en', 'name', 'Society for European Philosophy'),
(141341, 110932, 'en', 'name', 'Canadian Rivers Institute'),
(141342, 110933, 'id', 'name', 'Sekolah Tinggi Ilmu Kesehatan Panakkukang'),
(141343, 110934, 'en', 'name', 'Federal Government of Nigeria'),
(141344, 110935, 'en', 'name', 'Musicological Society of Finland'),
(141345, 110935, 'sv', 'name', 'Musikvetenskapliga sƤllskapet i Finland'),
(141346, 110935, 'fi', 'name', 'Suomen musiikkitieteellinen seura'),
(141347, 110936, 'en', 'name', 'Kirsehir Training and Research Hospital'),
(141348, 110936, 'tr', 'name', 'Kırşehir Eğitim ve Araştırma Hastanesi - Sağlık Bakanlığı'),
(141349, 110937, 'fr', 'name', 'Laboratoire Analyse et ModƩlisation pour la Biologie et l''Environnement'),
(141350, 110938, 'en', 'name', 'Kaiser Permanente Bernard J. Tyson School of Medicine'),
(141351, 110939, 'en', 'name', 'International Institute of Clinical Sexology'),
(141352, 110940, 'fr', 'name', 'Techniques de l''Informatique et de la Microélectronique pour l''Architecture des Systèmes Intégrés'),
(141353, 110940, 'en', 'name', 'Techniques of Informatics and Microelectronics for Integrated Systems Architecture'),
(141354, 110941, 'en', 'name', 'New South Wales Department of Primary Industries'),
(141355, 110942, 'fr', 'name', 'Laboratoire de Physique ThƩorique'),
(141356, 110943, 'en', 'name', 'Society of Antiquaries of London'),
(141357, 110944, 'sv', 'name', 'Finlands Hypertensionsfƶrening'),
(141358, 110944, 'en', 'name', 'Finnish Hypertension Society'),
(141359, 110944, 'fi', 'name', 'Suomen Verenpaineyhdistys'),
(141360, 110945, 'en', 'name', 'Finnish Association for Transport Planning'),
(141361, 110945, 'sv', 'name', 'Fƶreningen fƶr Trafikplanering'),
(141362, 110945, 'fi', 'name', 'Liikennesuunnittelun Seura'),
(141363, 110945, 'de', 'name', 'Verein für Verkehrsplanning, Finnland'),
(141364, 110946, 'fr', 'name', 'Institut Lavoisier de Versailles'),
(141365, 110947, 'en', 'name', 'Finnish Association for Legal and Social Science'),
(141366, 110947, 'fi', 'name', 'Oikeus- ja yhteiskuntatieteellinen yhdistys'),
(141367, 110947, 'sv', 'name', 'RƤtts- och samhƤllsvetenskapliga fƶreningen'),
(141368, 110948, 'en', 'name', 'Institute of Biodiversity and Applied and Experimental Biology'),
(141369, 110948, 'es', 'name', 'Instituto de Biodiversidad y BiologĆ­a Experimental y Aplicada'),
(141370, 110949, 'es', 'name', 'Hospital Universitario Sanitas Virgen del Mar'),
(141371, 110949, 'en', 'name', 'Sanitas Virgen del Mar University Hospital'),
(141372, 110950, 'en', 'name', 'Finnish Peace Research Association'),
(141373, 110950, 'sv', 'name', 'Fƶreningen fƶr fredsforskning i Finland'),
(141374, 110950, 'fi', 'name', 'Suomen rauhantutkimusyhdistys ry'),
(141375, 110951, 'en', 'name', 'Baku Engineering University'),
(141376, 110952, 'en', 'name', 'NHS Greater Glasgow and Clyde'),
(141377, 110953, 'en', 'name', 'Phi Lambda Upsilon'),
(141378, 110954, 'en', 'name', 'Finnish Peatland Society'),
(141379, 110954, 'la', 'name', 'Societas Paludologica Fennica'),
(141380, 110954, 'fi', 'name', 'Suoseura ry'),
(141381, 110954, 'sv', 'name', 'Torvmarksfƶreningen i Finland'),
(141382, 110955, 'en', 'name', 'Eurasian International University'),
(141383, 110955, 'ky', 'name', 'Евразийский ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет'),
(141384, 110956, 'de', 'name', 'Finnische Historische Gesellschaft'),
(141385, 110956, 'en', 'name', 'Finnish Historical Society'),
(141386, 110956, 'sv', 'name', 'Finska Historiska Samfundet'),
(141387, 110956, 'la', 'name', 'Societas Historica Finlandiae'),
(141388, 110956, 'fi', 'name', 'Suomen Historiallinen Seura'),
(141389, 110957, 'es', 'name', 'Universidad de Antofagasta'),
(141390, 110957, 'en', 'name', 'University of Antofagasta'),
(141391, 110958, 'en', 'name', 'International Organization Center of Academic Research (Türkiye)'),
(141392, 110959, 'en', 'name', 'Finnish Society for Futures Studies'),
(141393, 110959, 'sv', 'name', 'SƤllskapet fƶr framtidsstudier'),
(141394, 110959, 'fi', 'name', 'Tulevaisuuden tutkimuksen seura'),
(141395, 110960, 'en', 'name', 'Museum Odense'),
(141396, 110961, 'en', 'name', 'Gemini South Observatory'),
(141397, 110962, 'fi', 'name', 'Kasvinsuojeluseura'),
(141398, 110962, 'de', 'name', 'Pflanzenschutzgesellschaft in Finnland'),
(141399, 110962, 'en', 'name', 'Plant Protection Society in Finland'),
(141400, 110962, 'sv', 'name', 'VƤxtskyddsfƶreningen i Finland'),
(141401, 110963, 'fi', 'name', 'Suomen Vesiyhdistys ry'),
(141402, 110963, 'sv', 'name', 'Vattenfƶreningen'),
(141403, 110963, 'en', 'name', 'Water Association Finland'),
(141404, 110964, 'en', 'name', 'Virgo'),
(141405, 110965, 'pt', 'name', 'Universidade de Belas'),
(141406, 110965, 'en', 'name', 'University of Belas'),
(141407, 110966, 'en', 'name', 'Saudi ADHD Society'),
(141408, 110967, 'en', 'name', 'Wilderman Medical Clinic'),
(141409, 110968, 'fr', 'name', 'Laboratoire de MathƩmatiques Raphaƫl Salem'),
(141410, 110969, 'fr', 'name', 'Institut de Chimie des Milieux et des MatƩriaux de Poitiers'),
(141411, 110969, 'en', 'name', 'Poitiers Chemistry Institute Materials and Natural Resources'),
(141412, 110970, 'en', 'name', 'Saad Pharmaceuticals OÜ (Estonia)'),
(141413, 110971, 'en', 'name', 'Institute of Biomedical Engineering'),
(141414, 110972, 'fi', 'name', 'Dendrologian Seura'),
(141415, 110972, 'sv', 'name', 'Dendrologiska SƤllskapet'),
(141416, 110972, 'en', 'name', 'Finnish Dendrological Society'),
(141417, 110973, 'en', 'name', 'Ninevah University'),
(141418, 110973, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†ŁŠŁ†ŁˆŁ‰'),
(141419, 110974, 'fr', 'name', 'Institut universitaire sur les dƩpendances'),
(141420, 110975, 'en', 'name', 'Federation of Finnish Learned Societies'),
(141421, 110975, 'fi', 'name', 'Tieteellisten seurain valtuuskunta'),
(141422, 110975, 'sv', 'name', 'Vetenskapliga samfundens delegation'),
(141423, 110976, 'fr', 'name', 'Centre d''Ʃtudes et de recherches internationales de Sciences Po'),
(141424, 110976, 'en', 'name', 'Sciences Po Center for International Studies'),
(141425, 110977, 'de', 'name', 'Finnische Gesellschaft für Informatik'),
(141426, 110977, 'en', 'name', 'Finnish Society for Computer Science'),
(141427, 110977, 'sv', 'name', 'Finska sƤllskapet fƶr datalogi'),
(141428, 110977, 'fr', 'name', 'SociƩtƩ Finlandaise d''Informatique'),
(141429, 110977, 'fi', 'name', 'TietojenkƤsittelytieteen Seura'),
(141430, 110978, 'en', 'name', 'Polyphony Digital Inc. (Japan)'),
(141431, 110978, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒŖćƒ•ć‚©ćƒ‹ćƒ¼ćƒ»ćƒ‡ć‚øć‚æćƒ«'),
(141432, 110979, 'en', 'name', 'Pacif Institute of Cosmology and Selfology'),
(141433, 110980, 'en', 'name', 'Istanbul Medeniyet University'),
(141434, 110980, 'tr', 'name', 'İstanbul Medeniyet Üniversitesi'),
(141435, 110981, 'de', 'name', 'Institut für Arbeitsmarkt und Berufsforschung'),
(141436, 110981, 'en', 'name', 'Institute for Employment Research (IAB) of the Federal Employment Agency (BA)'),
(141437, 110982, 'en', 'name', 'National Polytechnic University Institute Bamenda'),
(141438, 110983, 'en', 'name', 'UNITE HERE'),
(141439, 110984, 'en', 'name', 'Finnish Society for Environmental Social Science'),
(141440, 110984, 'sv', 'name', 'SƤllskapet fƶr samhƤllsvetenskaplig miljƶforskning i Finland'),
(141441, 110984, 'fi', 'name', 'Yhteiskuntatieteellisen ympƤristƶtutkimuksen seura ry'),
(141442, 110985, 'en', 'name', 'Smart Data Foundry'),
(141443, 110986, 'en', 'name', 'Guangdong Institute of Intelligence Science and Technology'),
(141444, 110986, 'zh', 'name', 'å¹æäøœēœę™ŗčƒ½ē§‘å­¦äøŽęŠ€ęœÆē ”ē©¶é™¢'),
(141445, 110987, 'de', 'name', 'Bundesministerium für Landesverteidigung'),
(141446, 110987, 'en', 'name', 'Federal Ministry of Defence'),
(141447, 110988, 'en', 'name', 'Nordic Association of Agricultural Scientists Finland'),
(141448, 110988, 'sv', 'name', 'Nordiska Jordbruksforskares Fƶrening, Finska avdelningen'),
(141449, 110988, 'fi', 'name', 'Pohjoismaiden Maataloustutkijain Yhdistys, Suomen osasto'),
(141450, 110989, 'en', 'name', 'Society of Queer Studies in Finland'),
(141451, 110989, 'fi', 'name', 'Suomen Queer-tutkimuksen Seura'),
(141452, 110989, 'sv', 'name', 'SƤllskapet fƶr queerforskning i Finland'),
(141453, 110990, 'id', 'name', 'Universitas Katolik Musi Charitas'),
(141454, 110991, 'en', 'name', 'Adventist University of Goma'),
(141455, 110991, 'fr', 'name', 'UniversitƩ Adventiste de Goma'),
(141456, 110992, 'fr', 'name', 'Centre de Mise en Forme des MatƩriaux'),
(141457, 110992, 'en', 'name', 'Centre for Material Forming'),
(141458, 110993, 'en', 'name', 'Abeda Inamdar Senior College of Arts, Science and Commerce'),
(141459, 110994, 'de', 'name', 'Finnische Karl-Marx-Gesellschaft'),
(141460, 110994, 'en', 'name', 'Finnish Karl Marx Society'),
(141461, 110994, 'sv', 'name', 'Karl Marx -SƤllskapet i Finland'),
(141462, 110994, 'fi', 'name', 'Karl Marx -seura'),
(141463, 110995, 'en', 'name', 'Jose Eduardo dos Santos University'),
(141464, 110995, 'pt', 'name', 'Universidade JosƩ Eduardo dos Santos'),
(141465, 110996, 'en', 'name', 'Macedonian Ecological Society'),
(141466, 110996, 'mk', 'name', 'МакеГонско еколошко Š“Ń€ŃƒŃˆŃ‚Š²Š¾'),
(141467, 110997, 'no_lang_code', 'name', 'PalmElit SAS (France)'),
(141468, 110998, 'fr', 'name', 'Genomique et Physiologie Moleculaire des Maladies Metaboliques'),
(141469, 110998, 'en', 'name', 'Integrated Genomics and Metabolic Diseases Modeling'),
(141470, 110999, 'fr', 'name', 'Chimie MolƩculaire, MacromolƩculaire, MatƩriaux'),
(141471, 111000, 'en', 'name', 'ZRx Outcomes Research Inc (Canada)'),
(141472, 111001, 'en', 'name', 'Finnish Society for Environmental Sciences'),
(141473, 111001, 'sv', 'name', 'Miljƶvetenskapliga SƤllskapet'),
(141474, 111001, 'fi', 'name', 'YmpƤristƶtieteellinen Seura'),
(141475, 111002, 'fr', 'name', 'Laboratoire Jean Perrin'),
(141476, 111003, 'en', 'name', 'Finnish Social and Health Informatics Association'),
(141477, 111003, 'sv', 'name', 'Fƶrening fƶr informationsbehandling inom social- och hƤlsovƄrden'),
(141478, 111003, 'fi', 'name', 'Sosiaali- ja terveydenhuollon tietojenkƤsittely -yhdistys'),
(141479, 111004, 'ms', 'name', 'Kolej Universiti Islam Antarabangsa Sultan Ismail Petra'),
(141480, 111004, 'en', 'name', 'Sultan Ismail Petra International Islamic University College'),
(141481, 111005, 'en', 'name', 'Finnish Association of Consumer Research'),
(141482, 111005, 'fi', 'name', 'Kulutustutkimuksen Seura ry'),
(141483, 111006, 'en', 'name', 'BC Children''s Hospital'),
(141484, 111007, 'fr', 'name', 'Laboratoire de Physique des Lasers, Atomes et MolƩcules'),
(141485, 111008, 'sv', 'name', 'Chiropterologiska fƶreningen i Finland rf'),
(141486, 111008, 'en', 'name', 'Finnish Chiropterological Society'),
(141487, 111008, 'fi', 'name', 'Suomen lepakkotieteellinen yhdistys ry'),
(141488, 111009, 'fr', 'name', 'Sciences Po Lyon'),
(141489, 111010, 'es', 'name', 'Universidad PolitƩcnica Metropolitana de Hidalgo'),
(141490, 111011, 'sv', 'name', 'Finlands Krigsvetenskapliga Samfund'),
(141491, 111011, 'en', 'name', 'Finnish Society of Military Sciences'),
(141492, 111011, 'fi', 'name', 'Suomen Sotatieteellinen Seura ry'),
(141493, 111012, 'en', 'name', 'Center for Sociological and Political Research in Paris'),
(141494, 111012, 'fr', 'name', 'Centre de recherches sociologiques et politiques de Paris'),
(141495, 111013, 'fr', 'name', 'Centre d''Acquisition et de Traitement des Images'),
(141496, 111014, 'es', 'name', 'Hospital Materno Infantil Instituto de Seguridad Social del Estado de MƩxico y Municipios (ISSEMyM)'),
(141497, 111015, 'en', 'name', 'University of Calgary'),
(141498, 111015, 'fr', 'name', 'UniversitƩ de Calgary'),
(141499, 111016, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Acacias'),
(141500, 111016, 'en', 'name', 'Sanitas Paseo de las Acacias Advanced Rehabilitation Centre'),
(141501, 111017, 'en', 'name', 'Mortality Research & Consulting, Inc. (United States)'),
(141502, 111018, 'en', 'name', 'Human Neurodevelopment and Disorder'),
(141503, 111018, 'fr', 'name', 'NeurodƩveloppement humain et pathologies associƩes'),
(141504, 111019, 'en', 'name', 'Bornean Sun Bear Conservation Centre'),
(141505, 111019, 'ms', 'name', 'Pusat Pemuliharaan Beruang Madu Borneo'),
(141506, 111020, 'sv', 'name', 'Finlands fƶrsƶksdjurvetenskapliga fƶrening'),
(141507, 111020, 'en', 'name', 'Finnish Laboratory Animal Science Association'),
(141508, 111020, 'fi', 'name', 'Suomen koe-elƤintieteen yhdistys FinLAS'),
(141509, 111021, 'en', 'name', 'Hainan Institute of Grain and Oil Science'),
(141510, 111021, 'zh', 'name', 'ęµ·å—ēœē²®ę²¹ē§‘å­¦ē ”ē©¶ę‰€'),
(141511, 111022, 'en', 'name', 'National Transport Authority'),
(141512, 111023, 'en', 'name', 'Banana Link'),
(141513, 111024, 'en', 'name', 'Lincoln College'),
(141514, 111025, 'en', 'name', 'Bangladesh Medical University'),
(141515, 111025, 'bn', 'name', 'বাংলাদেশ ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(141516, 111026, 'en', 'name', 'Women''s College, Silchar'),
(141517, 111027, 'en', 'name', 'LeeMing Institute of Technology'),
(141518, 111027, 'zh', 'name', 'é»Žę˜ŽęŠ€č”“å­øé™¢'),
(141519, 111028, 'en', 'name', 'Finnish Society for Scientific Information'),
(141520, 111028, 'sv', 'name', 'Forskningsinformation'),
(141521, 111029, 'en', 'name', 'Society for the Study of Religion, Worldview and Education'),
(141522, 111029, 'fi', 'name', 'Uskonnon, katsomuksen ja kasvatuksen tutkimusseura ry'),
(141523, 111030, 'pt', 'name', 'Hospital Dr. NƩlio MendonƧa'),
(141524, 111031, 'en', 'name', 'Finnish Association for Impact Assessment'),
(141525, 111031, 'sv', 'name', 'Mkb (Miljƶkonsekvensbedƶmning)'),
(141526, 111031, 'fi', 'name', 'Yva ry (YmpƤristƶvaikutusten arviointi)'),
(141527, 111032, 'fr', 'name', 'Centre de Recherche en Biologie cellulaire de Montpellier'),
(141528, 111032, 'en', 'name', 'Centre for Biochemical and Macromolecular Research'),
(141529, 111033, 'en', 'name', 'Ba Isago University'),
(141530, 111034, 'fi', 'name', 'Bysantin tutkimuksen seura'),
(141531, 111034, 'en', 'name', 'Finnish Society for Byzantine Studies'),
(141532, 111034, 'sv', 'name', 'SƤllskapet fƶr bysantinsk forskning'),
(141533, 111035, 'sv', 'name', 'Porthan SƤllskapet'),
(141534, 111035, 'en', 'name', 'Porthan-Seura'),
(141535, 111036, 'en', 'name', 'New York College of Podiatric Medicine'),
(141536, 111037, 'de', 'name', 'Paul Drude Institut für Festkörperelektronik'),
(141537, 111037, 'en', 'name', 'Paul Drude Institute for Solid State Electronics'),
(141538, 111038, 'en', 'name', 'NeuroGEARS (United Kingdom)'),
(141539, 111039, 'id', 'name', 'Politeknik Sandi Karsa'),
(141540, 111040, 'en', 'name', 'Mongolian University of Pharmaceutical Sciences'),
(141541, 111040, 'mn', 'name', 'Эм Зүйн ŠØŠøŠ½Š¶Š»ŃŃ… Ухааны Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(141542, 111041, 'fr', 'name', 'GREYC'),
(141543, 111042, 'de', 'name', 'Verein für Geschichte der Arbeiterbewegung'),
(141544, 111043, 'en', 'name', 'Building Information Foundation RTS'),
(141545, 111043, 'sv', 'name', 'Bygginformationsstiftelsen RTS'),
(141546, 111043, 'fi', 'name', 'RakennustietosƤƤtiƶ RTS'),
(141547, 111044, 'fi', 'name', 'Suomen sosiaalipedagoginen seura'),
(141548, 111045, 'en', 'name', 'Finnish Society for the Study of Infectious Diseases'),
(141549, 111045, 'sv', 'name', 'Fƶreningen fƶr infektionssjukdomsforskning'),
(141550, 111045, 'fi', 'name', 'Infektiotautien tutkimusyhdistys'),
(141551, 111046, 'en', 'name', 'Diplomatic Academy of the Ministry of Foreign Affairs of the Kyrgyz Republic'),
(141552, 111047, 'es', 'name', 'Centro MƩdico Sanitas MƔlaga'),
(141553, 111047, 'en', 'name', 'Sanitas Malaga Medical Centre'),
(141554, 111048, 'en', 'name', 'Research and Productivity Council'),
(141555, 111049, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Pozuelo'),
(141556, 111049, 'en', 'name', 'Sanitas Pozuelo Advanced Rehabilitation Centre'),
(141557, 111050, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Barcelona'),
(141558, 111050, 'en', 'name', 'Sanitas Barcelona Advanced Rehabilitation Centre'),
(141559, 111051, 'en', 'name', 'Association for Gender Studies in Finland'),
(141560, 111051, 'fi', 'name', 'Sukupuolentutkimuksen seura'),
(141561, 111051, 'sv', 'name', 'SƤllskapet fƶr genusforskning (SUNS)'),
(141562, 111052, 'fr', 'name', 'Academie Finlandaise des Sciences Techniques'),
(141563, 111052, 'sv', 'name', 'Akademin fƶr Tekniska Vetenskaper'),
(141564, 111052, 'de', 'name', 'Finnische Akademie der Technischen Wissenschaften'),
(141565, 111052, 'en', 'name', 'Finnish Academy of Technology'),
(141566, 111052, 'fi', 'name', 'Teknillisten Tieteiden Akatemia'),
(141567, 111053, 'en', 'name', 'Association for Progressive Policy in Finland'),
(141568, 111053, 'fi', 'name', 'Edistyksellinen tiedeliitto'),
(141569, 111053, 'sv', 'name', 'Progressiva vetenskapsfƶrbund'),
(141570, 111054, 'de', 'name', 'Deutscher Bibliotheksverein'),
(141571, 111054, 'fi', 'name', 'Saksalainen kirjastoyhdistys - Tyska biblioteksfƶreningen'),
(141572, 111055, 'en', 'name', 'National Institute of Health Research, Zimbabwe'),
(141573, 111056, 'en', 'name', 'California Department of Fish and Wildlife'),
(141574, 111057, 'fr', 'name', 'Institut National du Sport du QuƩbec'),
(141575, 111058, 'en', 'name', 'Finnish Association of Media and Communication Studies'),
(141576, 111058, 'fi', 'name', 'Media- ja viestintƤtieteellinen seura Mevi'),
(141577, 111058, 'sv', 'name', 'Samfundet fƶr medie- och kommunikationsvetenskap'),
(141578, 111059, 'fr', 'name', 'DƩlƩgation Aquitaine'),
(141579, 111060, 'de', 'name', 'UniversitƤts Hautklinik Kiel'),
(141580, 111061, 'en', 'name', 'Gemini North Observatory'),
(141581, 111062, 'en', 'name', 'University of Derna'),
(141582, 111062, 'ar', 'name', 'جـــامــــعـــة درنــــة'),
(141583, 111063, 'en', 'name', 'Cluster Initiative Forestry and Wood in Bavaria gGmbH'),
(141584, 111063, 'de', 'name', 'Cluster-Initiative Forst und Holz in Bayern gGmbH'),
(141585, 111064, 'en', 'name', 'Brandenburg University of Technology Cottbus-Senftenberg'),
(141586, 111064, 'de', 'name', 'Brandenburgische Technische UniversitƤt Cottbus-Senftenberg'),
(141587, 111065, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Las Tablas'),
(141588, 111065, 'en', 'name', 'Sanitas Las Tablas Advanced Rehabilitation Centre'),
(141589, 111066, 'en', 'name', 'University of Hamburg'),
(141590, 111066, 'de', 'name', 'UniversitƤt Hamburg'),
(141591, 111067, 'en', 'name', 'Upstream CFD (Germany)'),
(141592, 111068, 'fr', 'name', 'Institut de Chimie de Nice'),
(141593, 111069, 'en', 'name', 'Senckenberg Centre for Human Evolution and Palaeoenvironment'),
(141594, 111070, 'en', 'name', 'Research Center of Neurology'),
(141595, 111070, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾Š³Š¾ центра неврологии'),
(141596, 111071, 'es', 'name', 'Instituto de Historia Argentina y Americana "Dr. Emilio Ravignani"'),
(141597, 111072, 'en', 'name', 'Andrzej Kaube Regional Museum in Wolin'),
(141598, 111072, 'pl', 'name', 'Muzeum Regionalne im. Andrzeja Kaubego w Wolinie'),
(141599, 111073, 'it', 'name', 'Fondazione Institutum Romanum Finlandiae'),
(141600, 111073, 'en', 'name', 'Foundation Institutum Romanum Finlandiae'),
(141601, 111073, 'sv', 'name', 'Stiftelsen Institutum Romanum Finlandiae'),
(141602, 111073, 'fi', 'name', 'SƤƤtiƶ Institutum Romanum Finlandiae'),
(141603, 111074, 'en', 'name', 'Finnish Forest History Society'),
(141604, 111074, 'de', 'name', 'Gesellschaft der Finnischen Forstgeschichte'),
(141605, 111074, 'fi', 'name', 'MetsƤhistorian Seura'),
(141606, 111074, 'sv', 'name', 'Skogshistoriska SƤllskapet'),
(141607, 111075, 'fr', 'name', 'Institut Sophia Agrobiotech'),
(141608, 111075, 'en', 'name', 'Sophia Agrobiotech Institute'),
(141609, 111076, 'en', 'name', 'Keros Therapeutics (United States)'),
(141610, 111077, 'no_lang_code', 'name', 'Boehringer Ingelheim (Portugal)'),
(141611, 111078, 'en', 'name', 'Globiz Professional University'),
(141612, 111078, 'ja', 'name', 'ć‚°ćƒ­ćƒ¼ćƒćƒ«Biz専門職大学'),
(141613, 111079, 'en', 'name', 'Daniel Alcides Carrión National University'),
(141614, 111079, 'es', 'name', 'Universidad Nacional Daniel Alcides Carrión'),
(141615, 111080, 'fr', 'name', 'Institut Pprime'),
(141616, 111081, 'en', 'name', 'Saint Paul-T University'),
(141617, 111081, 'es', 'name', 'Universidad de San Pablo-T'),
(141618, 111082, 'en', 'name', 'CIRAIG'),
(141619, 111082, 'fr', 'name', 'Centre international de rĆ©fĆ©rence sur l’analyse du cycle de vie et la transition durable'),
(141620, 111083, 'en', 'name', 'Oncopadi Technologies Limited'),
(141621, 111083, 'no_lang_code', 'name', 'Oncopadi Technologies Limited (Nigeria)'),
(141622, 111084, 'fr', 'name', 'Institut Superieur Sapientiae de Bafoussam'),
(141623, 111085, 'sv', 'name', 'Finlands Ungdomspsykiatriska fƶrening'),
(141624, 111085, 'en', 'name', 'Finnish Association of Adolescent Psychiatry'),
(141625, 111085, 'fi', 'name', 'Suomen Nuorisopsykiatrinen yhdistys'),
(141626, 111086, 'en', 'name', 'Islamic University of Maldives'),
(141627, 111086, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© في Ų¬Ų²Ų± Ų§Ł„Ł…Ų§Ł„ŲÆŁŠŁ'),
(141628, 111086, 'dv', 'name', 'Ž‹ŽØŽˆŽ¬Ž€ŽØŽƒŽ§Ž‡Ž°Ž–Ž­ŽŽŽ¬ Ž‡ŽØŽŽ°ŽŽ§Ž‰ŽØŽ†Ž° Ž”ŽŖŽ‚ŽØŽˆŽ¦ŽƒŽŽØŽ“Ž©'),
(141629, 111087, 'en', 'name', 'Regional Natural History Museum - Plovdiv'),
(141630, 111087, 'bg', 'name', 'Š ŠŸŠŠœ ПловГив'),
(141631, 111087, 'uk', 'name', 'Š ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГничий музей'),
(141632, 111088, 'sv', 'name', 'Finska SƤllskapet fƶr Forskning om Byggd Miljƶ'),
(141633, 111088, 'fi', 'name', 'Rakennetun YmpƤristƶn Tutkimuksen Seura ry'),
(141634, 111088, 'en', 'name', 'The Finnish Society of Built Environment Research'),
(141635, 111089, 'en', 'name', 'Finnish Society for Labour and Social Security Law'),
(141636, 111089, 'fi', 'name', 'Tyƶoikeudellinen Yhdistys ry'),
(141637, 111090, 'es', 'name', 'Consejo Colombiano de Seguridad'),
(141638, 111091, 'en', 'name', 'Karume Institute of Science and Technology'),
(141639, 111092, 'no_lang_code', 'name', 'Arcadia Science'),
(141640, 111093, 'sv', 'name', 'Kriminalistfƶreningen i Finland'),
(141641, 111093, 'fi', 'name', 'Suomen Kriminalistiyhdistys'),
(141642, 111094, 'en', 'name', 'EstiMates Oy (Finland)'),
(141643, 111095, 'en', 'name', 'Bankim Sardar College'),
(141644, 111096, 'en', 'name', 'Finnish Society for Development Studies'),
(141645, 111096, 'sv', 'name', 'Fƶreningen fƶr utvecklingsforskning'),
(141646, 111096, 'fi', 'name', 'Kehitystutkimuksen seura'),
(141647, 111097, 'en', 'name', 'Manado State University'),
(141648, 111097, 'id', 'name', 'Universitas Negeri Manado'),
(141649, 111098, 'en', 'name', 'GEOMAR Helmholtz Centre for Ocean Research Kiel'),
(141650, 111098, 'de', 'name', 'GEOMAR Helmholtz-Zentrum für Ozeanforschung Kiel'),
(141651, 111099, 'en', 'name', 'National Basketball Association'),
(141652, 111100, 'en', 'name', 'Finnish Association for Business Administration'),
(141653, 111100, 'sv', 'name', 'Fƶreningen fƶr fƶretagsekonomisk forskning'),
(141654, 111100, 'fi', 'name', 'Kauppatieteellinen yhdistys ry'),
(141655, 111101, 'es', 'name', 'Centro MƩdico Sanitas Valdebebas'),
(141656, 111101, 'en', 'name', 'Sanitas Valdebebas Medical Centre'),
(141657, 111102, 'es', 'name', 'Hospital Universitario Sanitas La Zarzuela'),
(141658, 111102, 'en', 'name', 'Sanitas La Zarzuela University Hospital'),
(141659, 111103, 'fr', 'name', 'Institut Ɖlie Cartan de Lorraine'),
(141660, 111104, 'pt', 'name', 'Universidade Mandume Ya Ndemufayo'),
(141661, 111105, 'en', 'name', 'Scottish Science Society'),
(141662, 111106, 'en', 'name', 'Finnish National Section of the International Institute of Administrative Sciences'),
(141663, 111106, 'fr', 'name', 'Institut International des Sciences Administratives. Section finlandaise'),
(141664, 111106, 'fi', 'name', 'KansainvƤlisen Hallintotieteiden Instituutin Suomen osasto'),
(141665, 111107, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Eka Prasetya'),
(141666, 111108, 'no_lang_code', 'name', 'DAASI International (Germany)'),
(141667, 111109, 'fr', 'name', 'UniversitƩ Polytechnique de Gitega'),
(141668, 111110, 'en', 'name', 'Patriarch Athenagoras Orthodox Institute'),
(141669, 111111, 'sv', 'name', 'Finlands Fysikerfƶrening'),
(141670, 111111, 'en', 'name', 'Finnish Physical Society'),
(141671, 111111, 'fi', 'name', 'Suomen Fyysikkoseura'),
(141672, 111112, 'en', 'name', 'Large Synoptic Survey Telescope Corporation'),
(141673, 111113, 'en', 'name', 'Boitekanelo College'),
(141674, 111114, 'fr', 'name', 'Institut National de sante publique'),
(141675, 111115, 'en', 'name', 'Nordenskiƶld Society in Finland'),
(141676, 111115, 'sv', 'name', 'Nordenskiƶld-samfundet i Finland'),
(141677, 111116, 'en', 'name', 'Qinhuangdao Vocational and Technical College'),
(141678, 111116, 'zh', 'name', 'ē§¦ēš‡å²›čŒäøšęŠ€ęœÆå­¦é™¢'),
(141679, 111117, 'fr', 'name', 'Centre de Recherche en CancƩrologie de Marseille'),
(141680, 111118, 'sv', 'name', 'Atomtekniska SƤllskapet i Finland'),
(141681, 111118, 'en', 'name', 'Finnish Nuclear Society'),
(141682, 111118, 'fi', 'name', 'Suomen Atomiteknillinen Seura'),
(141683, 111119, 'es', 'name', 'Centro MƩdico Sanitas Boreal'),
(141684, 111119, 'en', 'name', 'Sanitas Boreal Medical Centre'),
(141685, 111120, 'en', 'name', 'Finnish Skeptics'' Association'),
(141686, 111121, 'es', 'name', 'Colegio de Postgraduados'),
(141687, 111122, 'fr', 'name', 'Centre de Recherches PƩtrographiques et GƩochimiques'),
(141688, 111123, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Fortuny'),
(141689, 111123, 'en', 'name', 'Sanitas Fortuny Advanced Rehabilitation Centre'),
(141690, 111124, 'fr', 'name', 'Laboratoire de BiodiversitƩ et Biotechnologies Microbiennes'),
(141691, 111124, 'en', 'name', 'Laboratory of Microbial Biodiversity and Biotechnology'),
(141692, 111125, 'sv', 'name', 'LƤrar- och forskarsektionen'),
(141693, 111125, 'fi', 'name', 'Suomen kƤƤntƤjien ja tulkkien liitto'),
(141694, 111125, 'en', 'name', 'The Finnish Association of Translators and Interpreters'),
(141695, 111126, 'en', 'name', 'EU Business School, Munich'),
(141696, 111127, 'id', 'name', 'Sekolah Tinggi Agama Buddha Negeri Raden Wijaya Wonogiri'),
(141697, 111128, 'fr', 'name', 'Centre de Recherche et d’Enseignement de GĆ©osciences de l’Environnement'),
(141698, 111128, 'en', 'name', 'Centre for Research and Teaching in Environmental Geoscience'),
(141699, 111129, 'en', 'name', 'LIGO Scientific Collaboration'),
(141700, 111130, 'fr', 'name', 'Equipe de recherche paramƩdicale sur le handicap neuromoteur'),
(141701, 111131, 'en', 'name', 'Institute of Hotel Management Catering Technology and Applied Nutrition, Ranchi'),
(141702, 111131, 'hi', 'name', 'ą¤¹ą„‹ą¤Ÿą¤² ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø खानपान ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤Ŗą„ą¤°ą¤Æą„ą¤•ą„ą¤¤ ą¤Ŗą„‹ą¤·ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤°ą¤¾ą¤‚ą¤šą„€'),
(141703, 111132, 'en', 'name', 'Third People''s Hospital of Chengdu'),
(141704, 111132, 'zh', 'name', 'ęˆéƒ½åø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(141705, 111133, 'en', 'name', 'Federal Ministry of Transportation, Nigeria'),
(141706, 111134, 'en', 'name', 'Finnish Society of Clinical Pharmacology'),
(141707, 111134, 'fi', 'name', 'Suomen Kliinisen Farmakologian Yhdistys'),
(141708, 111135, 'en', 'name', 'MedChemExpress (United States)'),
(141709, 111136, 'en', 'name', 'National Arbovirus and Vectors Research Centre'),
(141710, 111137, 'en', 'name', 'Economic Society of Finland'),
(141711, 111137, 'sv', 'name', 'Ekonomiska Samfundet i Finland r.f.'),
(141712, 111137, 'fi', 'name', 'Taloustieteellinen yhdistys'),
(141713, 111138, 'no', 'name', 'Verdensarvsenter for bergkunst - Alta museum'),
(141714, 111138, 'en', 'name', 'World Heritage Rock Art Centre - Alta Museum'),
(141715, 111139, 'pt', 'name', 'Fundação UniversitÔria de Itaperuna'),
(141716, 111140, 'de', 'name', 'Finnische Gesellschaft für Philosophie und Phänomenologische Forschung'),
(141717, 111140, 'en', 'name', 'Finnish Society for Philosophy and Phenomenological Research'),
(141718, 111140, 'la', 'name', 'Societas philosophica et phaenomenologica Finlandiae'),
(141719, 111140, 'fi', 'name', 'Suomen filosofian ja fenomenologisen tutkimuksen seura SFFS'),
(141720, 111141, 'es', 'name', 'Centro MƩdico Sanitas Imperial Tarraco'),
(141721, 111141, 'en', 'name', 'Sanitas Imperial Tarraco Medical Centre'),
(141722, 111142, 'en', 'name', 'Finnish Society for Science and Technology Studies'),
(141723, 111142, 'sv', 'name', 'Fƶreningen fƶr vetenskaps- och teknikstudier i Finland'),
(141724, 111142, 'fi', 'name', 'Suomen tieteen- ja teknologiantutkimuksen seura'),
(141725, 111143, 'sv', 'name', 'Finlands LƤrdomshistoriska Samfund'),
(141726, 111143, 'de', 'name', 'Finnische Gesellschaft für die Geschichte der Wissenschaften'),
(141727, 111143, 'en', 'name', 'Finnish Society for the History of Science and Learning'),
(141728, 111143, 'la', 'name', 'Societas Historiae Scientiarum Fennica'),
(141729, 111143, 'fi', 'name', 'Suomen Oppihistoriallinen Seura'),
(141730, 111144, 'de', 'name', 'Stift Seitenstetten'),
(141731, 111145, 'sv', 'name', 'Farmaceutiska fƶreningen i Finland'),
(141732, 111145, 'en', 'name', 'Finnish Pharmaceutical Society'),
(141733, 111145, 'de', 'name', 'Pharmazeutische Gesellschaft in Finnland'),
(141734, 111145, 'fi', 'name', 'Suomen farmaseuttinen yhdistys'),
(141735, 111146, 'fi', 'name', 'Rakennustaiteen Seura'),
(141736, 111146, 'sv', 'name', 'Samfundet fƶr byggnadskonst'),
(141737, 111147, 'en', 'name', 'Community Science and Data Center'),
(141738, 111148, 'es', 'name', 'Fundación para el Estudio de Especies Invasivas'),
(141739, 111149, 'uz', 'name', 'Abu Ali ibn Sino nomidagi Buxoro davlat tibbiyot instituti'),
(141740, 111149, 'en', 'name', 'Bukhara State Medical Institute named after Abu Ali ibn Sino'),
(141741, 111149, 'ru', 'name', 'Š‘ŃƒŃ…Š°Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Абу Али ибн Дино'),
(141742, 111149, 'uk', 'name', 'Š‘ŃƒŃ…Š°Ń€ŃŃŒŠŗŠøŠ¹ Гержавний меГичний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імени Авіцени'),
(141743, 111150, 'sv', 'name', 'Finlands Naturskyddsfƶrbund'),
(141744, 111150, 'en', 'name', 'Finnish Association for Nature Conservation'),
(141745, 111150, 'fi', 'name', 'Suomen luonnonsuojeluliitto'),
(141746, 111151, 'fi', 'name', 'Historiska fƶreningen'),
(141747, 111151, 'en', 'name', 'Swedish Historical Society in Finland'),
(141748, 111152, 'id', 'name', 'Sekolah Tinggi Teologi Injili Indonesia Palu'),
(141749, 111153, 'en', 'name', 'Odessa National Medical University'),
(141750, 111153, 'uk', 'name', 'ŠžŠ“ŠµŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(141751, 111154, 'de', 'name', 'Friedrich-Alexander-Universität Erlangen-Nürnberg'),
(141752, 111155, 'en', 'name', 'Linkou Chang Gung Memorial Hospital'),
(141753, 111155, 'zh', 'name', 'ęž—å£é•·åŗšē“€åæµé†«é™¢'),
(141754, 111156, 'en', 'name', 'The Leprosy Mission Nepal'),
(141755, 111157, 'fr', 'name', 'Centre de Recherche en CancƩrologie et Immunologie IntƩgrƩe Nantes Angers'),
(141756, 111157, 'en', 'name', 'Nantes Angers Cancer and Immunology Research Center'),
(141757, 111158, 'en', 'name', 'Curly Birch Society'),
(141758, 111158, 'fi', 'name', 'Visaseura'),
(141759, 111159, 'ga', 'name', 'Ollscoil TeicneolaĆ­ochta and Oirdheiscirt'),
(141760, 111159, 'en', 'name', 'South East Technological University'),
(141761, 111160, 'fr', 'name', 'Laboratoire Optimisation de la Conception et IngƩnierie de l''Environnement'),
(141762, 111161, 'fr', 'name', 'Institut des MatƩriaux Jean Rouxel'),
(141763, 111161, 'en', 'name', 'Institute of Materials Jean Rouxel'),
(141764, 111162, 'de', 'name', 'Forschungszentrum Jülich'),
(141765, 111163, 'es', 'name', 'Centro MƩdico Sanitas Nicasio Gallego'),
(141766, 111163, 'en', 'name', 'Sanitas Nicasio Gallego Medical Centre'),
(141767, 111164, 'en', 'name', 'Department of Culture and Tourism Abu Dhabi'),
(141768, 111165, 'id', 'name', 'Organisasi Riset Tenaga Nukli'),
(141769, 111165, 'en', 'name', 'Research Organization for Nuclear Energy'),
(141770, 111166, 'en', 'name', 'gmp International GmbH'),
(141771, 111166, 'de', 'name', 'gmp Ā· Architekten von Gerkan, Marg und Partner'),
(141772, 111166, 'no_lang_code', 'name', 'gmp Ā· Architekten von Gerkan, Marg und Partner (Germany)'),
(141773, 111167, 'en', 'name', 'WaterCampus'),
(141774, 111168, 'en', 'name', 'University of Lucknow'),
(141775, 111168, 'hi', 'name', 'ą¤²ą¤–ą¤Øą¤Š ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(141776, 111168, 'pa', 'name', 'ąØ²ąØ–ąØØąØŠ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(141777, 111169, 'fi', 'name', 'Suomen musiikkiterapiayhdistys'),
(141778, 111170, 'en', 'name', 'Metropolitan Homoeopathic Medical College and Hospital'),
(141779, 111171, 'en', 'name', 'Foundation of the Finnish Institute in the Middle East'),
(141780, 111171, 'sv', 'name', 'Stiftelsen fƶr Finlands Mellanƶsterinstitut'),
(141781, 111171, 'fi', 'name', 'Suomen LƤhi-idƤn instituutin sƤƤtiƶ'),
(141782, 111172, 'en', 'name', 'Moscow Research and Practical Centre on Addictions of the Moscow Department of Healthcare'),
(141783, 111172, 'ru', 'name', 'Московский ŠŠ°ŃƒŃ‡Š½Š¾-ŠŸŃ€Š°ŠŗŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ Центр ŠŠ°Ń€ŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(141784, 111173, 'en', 'name', 'St. Xavier''s College Jaipur'),
(141785, 111174, 'hu', 'name', 'Tudatosan a Környezetünkért Egyesület'),
(141786, 111175, 'en', 'name', 'Nigerian Institute for Trypanosomiasis Research'),
(141787, 111176, 'es', 'name', 'Centro MƩdico Sanitas Sevilla La Buhaira'),
(141788, 111176, 'en', 'name', 'Sanitas Sevilla La Buhaira Medical Centre'),
(141789, 111177, 'fr', 'name', 'Laboratoire d’Electrochimie et de Physico-chimie des MatĆ©riaux et des Interfaces'),
(141790, 111178, 'fr', 'name', 'Laboratoire d''Informatique de Paris-Nord'),
(141791, 111179, 'en', 'name', 'Idaho College of Osteopathic Medicine'),
(141792, 111180, 'en', 'name', 'Cultures, Environments, Arctic, Representations, Climate'),
(141793, 111180, 'fr', 'name', 'Cultures, Environnements, Arctique, ReprƩsentations, Climat'),
(141794, 111181, 'en', 'name', 'Fourth Central Hospital of Baoding City'),
(141795, 111181, 'zh', 'name', 'äæå®šåø‚ē¬¬å››äø­åæƒåŒ»é™¢'),
(141796, 111182, 'en', 'name', 'King Faisal University'),
(141797, 111182, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„'),
(141798, 111183, 'en', 'name', 'Finnish Oriental Society'),
(141799, 111183, 'sv', 'name', 'Finska OrientsƤllskapet'),
(141800, 111183, 'la', 'name', 'Societas Orientalis Fennica'),
(141801, 111183, 'fi', 'name', 'Suomen ItƤmainen Seura'),
(141802, 111184, 'fr', 'name', 'Institut de Recherches sur la Catalyse et l''Environnement de Lyon'),
(141803, 111184, 'en', 'name', 'Institute of Researches on Catalysis and Environment in Lyon'),
(141804, 111185, 'fr', 'name', 'Ecosystèmes, Biodiversité, Evolution'),
(141805, 111186, 'es', 'name', 'El Poder del Consumidor AC'),
(141806, 111187, 'fr', 'name', 'Laboratoire de GĆ©ologie de l’École Normale SupĆ©rieure'),
(141807, 111188, 'fr', 'name', 'RƩgulations Naturelle et Artificielle'),
(141808, 111189, 'en', 'name', 'NSF-DOE Vera C. Rubin Observatory'),
(141809, 111190, 'en', 'name', 'Pacific Lutheran Theological Seminary'),
(141810, 111191, 'en', 'name', 'Finnish Society for Cultural History'),
(141811, 111191, 'fi', 'name', 'Kulttuurihistorian seura'),
(141812, 111192, 'es', 'name', 'Instituto Latinoamericano de Altos Estudios'),
(141813, 111193, 'es', 'name', 'Museo del Instituto de ZoologĆ­a AgrĆ­cola'),
(141814, 111194, 'en', 'name', 'Classical Association of Finland'),
(141815, 111194, 'fi', 'name', 'Klassillis-filologinen yhdistys'),
(141816, 111194, 'sv', 'name', 'Klassisk-filologiska fƶreningen'),
(141817, 111194, 'la', 'name', 'Societas Philologica Classica'),
(141818, 111195, 'en', 'name', 'Atlantic African Oriental Multicultural University International'),
(141819, 111196, 'fr', 'name', 'Politique LittĆ©ratures Cultures Ɖcritures MĆ©dialitĆ© IdĆ©es Expressions Sciences'),
(141820, 111197, 'en', 'name', 'University of Bremen'),
(141821, 111197, 'de', 'name', 'UniversitƤt Bremen'),
(141822, 111198, 'fr', 'name', 'Sciences Po Bordeaux'),
(141823, 111199, 'fr', 'name', 'UniversitƩ Polytechnique IntƩgrƩe'),
(141824, 111200, 'fr', 'name', 'Bases Moléculaires et Structurales des Systèmes Infectieux'),
(141825, 111200, 'en', 'name', 'Structural and Molecular Basis of Infectious Systems'),
(141826, 111201, 'en', 'name', 'S.P. Jain Institute of Management and Research'),
(141827, 111202, 'en', 'name', 'ARC Centre of Excellence for Coral Reef Studies'),
(141828, 111203, 'gd', 'name', 'Oilthigh Ghlaschu'),
(141829, 111203, 'cy', 'name', 'Prifysgol Glasgow'),
(141830, 111203, 'en', 'name', 'University of Glasgow'),
(141831, 111204, 'en', 'name', 'Freedom to Live'),
(141832, 111205, 'fi', 'name', 'Juridiska Fƶreningen i Finland'),
(141833, 111206, 'fr', 'name', 'UniversitƩ de l''Assomption au Congo'),
(141834, 111207, 'fi', 'name', 'Diakonian tutkimuksen seura'),
(141835, 111207, 'en', 'name', 'Society for Diaconia Research'),
(141836, 111208, 'fr', 'name', 'Institut Universitaire LES COURS SONOU'),
(141837, 111209, 'en', 'name', 'EU Business School, Geneva'),
(141838, 111210, 'en', 'name', 'Indoc Systems Inc. (Canada)'),
(141839, 111211, 'fr', 'name', 'PolymĆØres, BiopolymĆØres, Surfaces'),
(141840, 111212, 'de', 'name', 'biohelp – biologischer Pflanzenschutz, Nützlingsproduktions-, Handels- und Beratungs-GmbH (Austria)'),
(141841, 111213, 'en', 'name', 'Withings'),
(141842, 111213, 'no_lang_code', 'name', 'Withings (France)'),
(141843, 111214, 'sv', 'name', 'Bokhistoriska sƤllskapet i Finland'),
(141844, 111214, 'en', 'name', 'Society for the history of book in Finland'),
(141845, 111214, 'fi', 'name', 'Suomen kirjahistoriallinen seura'),
(141846, 111215, 'en', 'name', 'Nigerian Institute of Transport Technology'),
(141847, 111216, 'en', 'name', 'Ministry of Agriculture, Natural Resources and Environment'),
(141848, 111216, 'el', 'name', '΄πουργείο Γεωργίας'),
(141849, 111217, 'fr', 'name', 'Groupe de SpectromƩtrie MolƩculaire et AtmosphƩrique'),
(141850, 111217, 'en', 'name', 'Molecular and Atmospheric Spectrometry Group'),
(141851, 111218, 'en', 'name', 'Finnish Society for Rural Research and Development'),
(141852, 111218, 'sv', 'name', 'Nya landbygden'),
(141853, 111219, 'fr', 'name', 'Centre IntĆ©grĆ© Universitaire de SantĆ© et de Services Sociaux du Centre-Sud-de-l''Ǝle-de-MontrĆ©al'),
(141854, 111220, 'es', 'name', 'Departamento de EnergĆ­a de los Estados Unidos'),
(141855, 111220, 'fr', 'name', 'DĆ©partement de l''Ɖnergie des Ɖtats-unis'),
(141856, 111220, 'en', 'name', 'United States Department of Energy'),
(141857, 111221, 'de', 'name', 'FH Gesundheitsberufe OƖ'),
(141858, 111221, 'en', 'name', 'University of Applied Sciences for Health Professions Upper Austria'),
(141859, 111222, 'en', 'name', 'Center for Infection and Immunity of Lille'),
(141860, 111222, 'fr', 'name', 'Centre d''infection et d''immunitƩ de Lille'),
(141861, 111223, 'en', 'name', 'Pontifical Catholic University of Rio de Janeiro'),
(141862, 111223, 'pt', 'name', 'Pontifícia Universidade Católica do Rio de Janeiro'),
(141863, 111224, 'fi', 'name', 'Mikael Agricola -seura'),
(141864, 111225, 'en', 'name', 'Department of Science and Technology'),
(141865, 111225, 'tl', 'name', 'Kagawaran ng Agham at Teknolohiya'),
(141866, 111226, 'fr', 'name', 'Institut Jean Lamour'),
(141867, 111227, 'la', 'name', 'Bibliothecarii Medicinae Fenniae'),
(141868, 111228, 'fr', 'name', 'Groupe de Physique des MatƩriaux'),
(141869, 111229, 'en', 'name', 'Max Planck Institute for Evolutionary Biology'),
(141870, 111229, 'de', 'name', 'Max-Planck-Institut für Evolutionsbiologie'),
(141871, 111230, 'en', 'name', 'Contact and Structure Mechanics Laboratory'),
(141872, 111230, 'fr', 'name', 'Laboratoire de MƩcanique des Contacts et des Structures'),
(141873, 111231, 'fr', 'name', 'Institut MĆ©diterranĆ©en d’OcĆ©anologie'),
(141874, 111231, 'en', 'name', 'Mediterranean Institute of Oceanography'),
(141875, 111232, 'fr', 'name', 'Institut de recherche, de donnƩes et de formation du Nouveau-Brunswick'),
(141876, 111232, 'en', 'name', 'New Brunswick Institute for Research, Data and Training'),
(141877, 111233, 'fi', 'name', 'Fƶreningen fƶr nordisk filologi'),
(141878, 111234, 'en', 'name', 'Finnish Society for the Study of Religion'),
(141879, 111234, 'sv', 'name', 'Religionsvetenskapliga SƤllskapet i Finland'),
(141880, 111234, 'fi', 'name', 'Suomen Uskontotieteellinen Seura'),
(141881, 111235, 'fr', 'name', 'Institut de la Vision'),
(141882, 111235, 'en', 'name', 'Vision Institute'),
(141883, 111236, 'en', 'name', 'Geographical Society of Northern Finland'),
(141884, 111236, 'fi', 'name', 'Pohjois-Suomen Maantieteellinen Seura'),
(141885, 111237, 'id', 'name', 'Universitas Pendidikan Muhammadiyah Sorong'),
(141886, 111238, 'en', 'name', 'B. Borooah College'),
(141887, 111239, 'en', 'name', 'Finnish Language Society'),
(141888, 111239, 'de', 'name', 'Gesellschaft für Finnische Sprache'),
(141889, 111239, 'fr', 'name', 'SociƩtƩ de la langue finnoise'),
(141890, 111239, 'fi', 'name', 'Suomen Kielen Seura'),
(141891, 111240, 'it', 'name', 'OPHIS Museo Paleontologico e Centro Erpetologico'),
(141892, 111241, 'sv', 'name', 'Finlands Bryologiska SƤllskap'),
(141893, 111241, 'en', 'name', 'Finnish Bryological Society'),
(141894, 111241, 'la', 'name', 'Societas Bryologica Fennica'),
(141895, 111241, 'fi', 'name', 'Suomen Sammalseura'),
(141896, 111242, 'en', 'name', 'The Westermarck Society'),
(141897, 111243, 'en', 'name', 'Finnish Society for Eighteenth-Century Studies'),
(141898, 111243, 'sv', 'name', 'Finska sƤllskapet fƶr 1700-talsstudier'),
(141899, 111243, 'fr', 'name', 'Société finlandaise d''étude du dix-huitième siècle'),
(141900, 111243, 'fi', 'name', 'Suomen 1700-luvun tutkimuksen seura'),
(141901, 111244, 'en', 'name', 'Centre for Nuclear Energy Research'),
(141902, 111245, 'en', 'name', 'California Cooperative Oceanic Fisheries Investigations'),
(141903, 111246, 'fr', 'name', 'Laboratoire Anthropologie, ArchƩologie, Biologie'),
(141904, 111247, 'en', 'name', 'Hannover Medical School'),
(141905, 111247, 'de', 'name', 'Medizinische Hochschule Hannover'),
(141906, 111248, 'id', 'name', 'Universitas Muslim Maros'),
(141907, 111249, 'en', 'name', 'Institute of Astronomy and Space Physics'),
(141908, 111249, 'es', 'name', 'Instituto de AstronomĆ­a y FĆ­sica del Espacio'),
(141909, 111250, 'en', 'name', 'Genesystem Co., Ltd. (South Korea)'),
(141910, 111250, 'ko', 'name', 'ģ§„ģ‹œģŠ¤ķ…œ'),
(141911, 111251, 'fi', 'name', 'Kulttuurintutkimuksen seura'),
(141912, 111251, 'en', 'name', 'Society for Cultural Studies in Finland'),
(141913, 111251, 'sv', 'name', 'SƤllskapet fƶr kulturstudier i Finland'),
(141914, 111252, 'en', 'name', 'Finnish Bone Society (FBS)'),
(141915, 111253, 'es', 'name', 'Universidad Rafael LandĆ­var'),
(141916, 111254, 'en', 'name', 'People''s Government of Inner Mongolia Autonomous Region'),
(141917, 111254, 'mn', 'name', '᠄ᠪ᠄ᠷ ᠮᠣᠩᠭᠣᠯ ᠤᠨ ᠄ᠪ᠔ᠷᠲ᠔ᠭ᠔ᠨ ᠵᠠᠰᠠᠬᠤ ᠣᠷᠣᠨ ᠤ ᠠᠷᠠᠳ ᠤᠨ ᠲ᠄ᠯ᠄ᠭ᠔ᠯ᠔ᠭ᠓ᠢᠳ ᠦᠨ ᠶ᠔ᠬ᠔ ᠬᠤᠷᠠᠯ'),
(141918, 111254, 'zh', 'name', 'å†…č’™å¤č‡Ŗę²»åŒŗäŗŗę°‘ę”æåŗœ'),
(141919, 111255, 'no_lang_code', 'name', 'PinCell srl (Italy)'),
(141920, 111256, 'en', 'name', 'Indonesian Institute of Sciences'),
(141921, 111256, 'id', 'name', 'Lembaga Ilmu Pengetahuan Indonesia'),
(141922, 111257, 'de', 'name', 'Wirtschaftsakademie Schleswig-Holstein'),
(141923, 111258, 'en', 'name', 'International Union for Conservation of Nature'),
(141924, 111259, 'de', 'name', 'Finnische Exegetische Gesellschaft'),
(141925, 111259, 'en', 'name', 'Finnish Exegetical Society'),
(141926, 111259, 'fi', 'name', 'Suomen Eksegeettinen Seura'),
(141927, 111260, 'fr', 'name', 'Centre de l''AccƩlƩrateur LinƩaire de Stanford'),
(141928, 111260, 'en', 'name', 'SLAC National Accelerator Laboratory'),
(141929, 111261, 'fr', 'name', 'Centre de recherche en EpidƩmiologie et SantƩ des Populations'),
(141930, 111261, 'en', 'name', 'Centre for Epidemiology and Population Health'),
(141931, 111262, 'es', 'name', 'Centro MƩdico Sanitas Zaragoza'),
(141932, 111262, 'en', 'name', 'Sanitas Zaragoza Medical Centre'),
(141933, 111263, 'fi', 'name', 'Ammatillisen koulutuksen tutkimusseura OTTU'),
(141934, 111263, 'en', 'name', 'Finnish Vocational Educational Research Association (FiVERA)'),
(141935, 111264, 'en', 'name', 'Archaeoastronomical Society of Finland'),
(141936, 111264, 'sv', 'name', 'Arkeoastronomiska sƤllskap i Finland rf'),
(141937, 111264, 'fi', 'name', 'Suomen arkeoastronominen seura ry'),
(141938, 111265, 'fi', 'name', 'Glossa - Keskiajan tutkimuksen seura'),
(141939, 111265, 'sv', 'name', 'Glossa - SƤllskapet fƶr medeltidsforskning'),
(141940, 111265, 'en', 'name', 'Glossa - The Society for Medieval Studies'),
(141941, 111266, 'en', 'name', 'Historical Society in Oulu'),
(141942, 111266, 'fi', 'name', 'Oulun Historiaseura'),
(141943, 111266, 'la', 'name', 'Societas Historica Ouluensis'),
(141944, 111267, 'en', 'name', 'University Hospital Schleswig-Holstein'),
(141945, 111267, 'de', 'name', 'UniversitƤtsklinikum Schleswig-Holstein'),
(141946, 111268, 'fi', 'name', 'Geofysiikan Seura'),
(141947, 111268, 'sv', 'name', 'Geofysiska SƤllskapet'),
(141948, 111268, 'en', 'name', 'Geophysical Society of Finland'),
(141949, 111269, 'en', 'name', 'Federal Polytechnic Ayede'),
(141950, 111270, 'en', 'name', 'Laboratory for Ocean Physics and Satellite Remote Sensing'),
(141951, 111271, 'en', 'name', 'Oenology Research Unit'),
(141952, 111271, 'fr', 'name', 'Unite de Recherche Œnologie'),
(141953, 111272, 'en', 'name', 'Finnish Association of Working Life Research (FAWORE)'),
(141954, 111272, 'sv', 'name', 'Fƶreningen fƶr arbetspolitisk forskning'),
(141955, 111272, 'fi', 'name', 'TyƶelƤmƤn tutkimusyhdistys'),
(141956, 111273, 'fr', 'name', 'Commission Finlandaise d'' Histoire Militaire'),
(141957, 111273, 'en', 'name', 'Finnish Comission of Military History'),
(141958, 111273, 'sv', 'name', 'MilitƤrhistoriska Komissionen i Finland'),
(141959, 111273, 'fi', 'name', 'Suomen Sotahistorian Komissio'),
(141960, 111274, 'en', 'name', 'University of New Brunswick'),
(141961, 111274, 'fr', 'name', 'UniversitƩ du nouveau-brunswick'),
(141962, 111275, 'de', 'name', 'Heraldische Gesellschaft in Finnland'),
(141963, 111275, 'fi', 'name', 'Heraldiska SƤllskapet i Finland'),
(141964, 111275, 'en', 'name', 'Heraldry Society of Finland'),
(141965, 111275, 'la', 'name', 'Societas Heraldica Fennica'),
(141966, 111275, 'fr', 'name', 'SociƩtƩ hƩraldique de la Finlande'),
(141967, 111276, 'en', 'name', 'Genealogical Society of Finland'),
(141968, 111276, 'sv', 'name', 'Genealogiska Samfundet i Finland'),
(141969, 111276, 'fi', 'name', 'Suomen Sukututkimusseura'),
(141970, 111277, 'en', 'name', 'Delfini del Ponente APS'),
(141971, 111278, 'en', 'name', 'Mackay Hospital and Health Service'),
(141972, 111279, 'es', 'name', 'Dirección General de Educación Tecnológica Industrial y de Servicios'),
(141973, 111280, 'en', 'name', 'Research Institute in Data Science and Artificial Intelligence'),
(141974, 111281, 'en', 'name', 'KVK College of Pharmacy'),
(141975, 111282, 'ca', 'name', 'Fundació Hospital d''Olot i Comarcal de la Garrotxa'),
(141976, 111283, 'en', 'name', 'Azerbaijan National Academy of Sciences');
INSERT INTO `ror_settings` VALUES
(141977, 111283, 'az', 'name', 'Azərbaycan Milli Elmlər Akademiyası'),
(141978, 111283, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук АзербайГжана'),
(141979, 111284, 'en', 'name', 'Hangzhou Institute of Medicine, Chinese Academy of Sciences'),
(141980, 111284, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę­å·žåŒ»å­¦ē ”ē©¶ę‰€'),
(141981, 111285, 'en', 'name', 'Gravitational Wave Open Science Center'),
(141982, 111286, 'en', 'name', 'Southwest Transplant Alliance'),
(141983, 111287, 'en', 'name', 'Institute of Higher Education of Art and Islamic Thought'),
(141984, 111287, 'fa', 'name', 'دانؓگاه هنر و Ų§Ł†ŲÆŪŒŲ“Ł‡ Ų§Ų³Ł„Ų§Ł…ŪŒ'),
(141985, 111288, 'en', 'name', 'Islamic University of Minnesota'),
(141986, 111288, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©ŲŒ ŲØŁ…Ł†ŁŠŲ³ŁˆŲŖŲ§'),
(141987, 111289, 'fi', 'name', 'Kulttuuripolitiikan tutkimuksen seura ry'),
(141988, 111289, 'en', 'name', 'Society for Cultural Policy Research in Finland'),
(141989, 111289, 'sv', 'name', 'SƤllskapet fƶr kulturpolitisk forskring rf'),
(141990, 111290, 'es', 'name', 'Centro Médico Sanitas Núñez de Balboa'),
(141991, 111290, 'en', 'name', 'Sanitas Núñez de Balboa Medical Centre'),
(141992, 111291, 'en', 'name', 'Experimental Medicine and Biology Institute'),
(141993, 111291, 'es', 'name', 'Instituto de BiologĆ­a y Medicina Experimental'),
(141994, 111292, 'en', 'name', 'Jean Moulin University Lyon 3'),
(141995, 111292, 'fr', 'name', 'UniversitƩ Jean Moulin Lyon III'),
(141996, 111293, 'en', 'name', 'Centre for Research in Infectious Diseases'),
(141997, 111294, 'fi', 'name', 'Suomalaisten Kemistien Seura'),
(141998, 111294, 'en', 'name', 'The Finnish Chemical Society'),
(141999, 111295, 'fr', 'name', 'BioƩnergƩtique et IngƩnierie des ProtƩines'),
(142000, 111296, 'no_lang_code', 'name', 'Sage (United Kingdom)'),
(142001, 111297, 'en', 'name', 'Finnish Operations Research Society (FORS)'),
(142002, 111297, 'fi', 'name', 'Suomen Operaatiotutkimusseura'),
(142003, 111298, 'en', 'name', 'Grand Canyon National Park'),
(142004, 111298, 'es', 'name', 'Parque nacional del Gran Cañón'),
(142005, 111299, 'en', 'name', 'The Association of Diplomacy and Strategy Studies'),
(142006, 111300, 'no_lang_code', 'name', 'Embecosm (United Kingdom)'),
(142007, 111301, 'nl', 'name', 'Dienst Uitvoering Onderwijs'),
(142008, 111302, 'de', 'name', 'Gesellschaft der Geschichtsfreunde'),
(142009, 111302, 'fi', 'name', 'Historian YstƤvƤin Liitto'),
(142010, 111302, 'sv', 'name', 'HistorievƤnnernas Fƶrbund'),
(142011, 111302, 'en', 'name', 'Society of the Friends of History'),
(142012, 111302, 'fr', 'name', 'SociƩtƩ des Amis de l''Histoire'),
(142013, 111303, 'en', 'name', 'Tom Mboya University College'),
(142014, 111304, 'es', 'name', 'Academia Nacional de AgronomĆ­a y Veterinaria'),
(142015, 111305, 'en', 'name', 'SMS Medical College'),
(142016, 111306, 'fr', 'name', 'Centre d''Etudes Biologiques de ChizƩ'),
(142017, 111307, 'en', 'name', 'Heat Transfer and Energy Laboratory at Nantes'),
(142018, 111307, 'fr', 'name', 'Laboratoire de Thermique et Energie de Nantes'),
(142019, 111308, 'fr', 'name', 'GenĆØve Team Ambulances'),
(142020, 111309, 'en', 'name', 'Berkeley School of Theology'),
(142021, 111310, 'en', 'name', 'Finnish Society for Growth and Aging Research'),
(142022, 111310, 'sv', 'name', 'Fƶreningen fƶr forskning i uppvƤxt och Ƅldrande'),
(142023, 111311, 'en', 'name', 'Center for the Sociology of Organizations'),
(142024, 111311, 'fr', 'name', 'Centre de Sociologie des Organisations'),
(142025, 111312, 'en', 'name', 'Applied Marketing'),
(142026, 111312, 'pt', 'name', 'Marketing Aplicado Lda (Portugal)'),
(142027, 111313, 'en', 'name', 'Atlantic Institute for Policy Research'),
(142028, 111314, 'en', 'name', 'Mackay Base Hospital'),
(142029, 111315, 'en', 'name', 'Finnish Folklore Society'),
(142030, 111315, 'sv', 'name', 'Fƶreningen fƶr finsk folklivsforskning'),
(142031, 111315, 'fi', 'name', 'Suomen Kansantietouden Tutkijain Seura'),
(142032, 111315, 'de', 'name', 'Verein für Finnische Volkskunde'),
(142033, 111316, 'en', 'name', 'BGI Research'),
(142034, 111316, 'zh', 'name', 'åŽå¤§ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(142035, 111317, 'en', 'name', 'Pathogenesis and Control of Chronic and Emerging Infections'),
(142036, 111318, 'fr', 'name', 'Ɖcole Normale d''Administration'),
(142037, 111319, 'sv', 'name', 'Fƶrening fƶr utveckling och forskning av mental hƤlsa'),
(142038, 111319, 'fi', 'name', 'Mielenterveystyƶn kehittƤminen ja tutkimus ry'),
(142039, 111319, 'en', 'name', 'The Association of Development and Research on Mental Health Care'),
(142040, 111320, 'en', 'name', 'Spinghar Institute of Higher Education, Kabul'),
(142041, 111320, 'ps', 'name', 'Ų³Ł¾ŪŒŁ† ŲŗŲ± ŲÆ Ł„ŁˆŚ“Łˆ Ų²ŲÆŚ©Ś“Łˆ Ł…ŁˆŲ³Ų³Ł‡'),
(142042, 111320, 'fa', 'name', 'مرکز Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų³Ł¾ŪŒŁ†ŲŗŲ±'),
(142043, 111321, 'en', 'name', 'Alanya University'),
(142044, 111321, 'tr', 'name', 'Alanya Üniversitesi'),
(142045, 111322, 'en', 'name', 'Yueyang Yumeikang Biotechnology Co., Ltd.'),
(142046, 111322, 'no_lang_code', 'name', 'Yueyang Yumeikang Biotechnology Co., Ltd. (China)'),
(142047, 111322, 'zh', 'name', 'å²³é˜³ęø”ē¾Žåŗ·ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(142048, 111323, 'lt', 'name', 'Alytaus Kolegija'),
(142049, 111323, 'en', 'name', 'Alytus College'),
(142050, 111324, 'es', 'name', 'Asociación Madrileña de Salud Pública'),
(142051, 111325, 'sv', 'name', 'FinlƤndska sƤllskapet fƶr forskning i konstfostran'),
(142052, 111325, 'fi', 'name', 'Suomen taidekasvatuksen tutkimusseura'),
(142053, 111325, 'en', 'name', 'The Finnish Society for Research in Art Education'),
(142054, 111326, 'fr', 'name', 'Laboratoire Interdisciplinaire SolidaritƩs SociƩtƩs Territoires'),
(142055, 111327, 'en', 'name', 'Engineering Staff College of India'),
(142056, 111328, 'en', 'name', 'Institute for the Future of Work'),
(142057, 111329, 'fr', 'name', 'Institut de Neurosciences de la Timone'),
(142058, 111330, 'en', 'name', 'People''s University of Medical and Health Sciences for Women'),
(142059, 111330, 'ur', 'name', 'Ł¾ŪŒŁ¾Ł„Ų² ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŚˆŪŒŚ©Ł„ Ų§ŪŒŁ†Śˆ ŪŪŒŁ„ŲŖŚ¾ سائنسز ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ†ŲŒ Ł†ŁˆŲ§ŲØŲ“Ų§Ū'),
(142060, 111331, 'fr', 'name', 'Laboratoire de Sciences Cognitives et Psycholinguistique'),
(142061, 111332, 'tr', 'name', 'SBÜ Beyhekim Training and Research Hospital'),
(142062, 111333, 'en', 'name', 'Dr. Jack McKenzie Limerick Pulp & Paper Research & Education Centre'),
(142063, 111334, 'en', 'name', 'Ecology and Evolutionary Biology Society of Turkey'),
(142064, 111334, 'tr', 'name', 'Ekoloji ve Evrimsel Biyoloji Derneği'),
(142065, 111335, 'es', 'name', 'Centro MƩdico Sanitas Murcia'),
(142066, 111335, 'en', 'name', 'Sanitas Murcia Medical Centre'),
(142067, 111336, 'fr', 'name', 'Ecole Nationale SupƩrieure de Sciences Politiques'),
(142068, 111336, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų³ŁŠŲ§Ų³ŁŠŲ©'),
(142069, 111337, 'en', 'name', 'Ukrainian Institute of Arts and Sciences'),
(142070, 111338, 'en', 'name', 'Association of Universities for Research in Astronomy'),
(142071, 111339, 'no_lang_code', 'name', 'eSOL (Japan)'),
(142072, 111339, 'en', 'name', 'eSOL Co. Ltd.'),
(142073, 111340, 'en', 'name', 'Finnish Association of Researchers'),
(142074, 111340, 'sv', 'name', 'Forskarfƶrbundet i Finland ry'),
(142075, 111340, 'fi', 'name', 'Tutkijaliitto ry'),
(142076, 111341, 'en', 'name', 'Finnish European Studies Association'),
(142077, 111341, 'sv', 'name', 'Finska Fƶreningen fƶr Europaforskning'),
(142078, 111341, 'fi', 'name', 'Suomen Eurooppa-tutkimuksen seura ry'),
(142079, 111342, 'no_lang_code', 'name', 'Energie NB Power (Canada)'),
(142080, 111342, 'fr', 'name', 'Ɖnergie NB'),
(142081, 111343, 'en', 'name', 'Mir Chakar Khan Rind University'),
(142082, 111344, 'en', 'name', 'Ati University of Science and Technology'),
(142083, 111344, 'fr', 'name', 'UniversitƩ des Sciences et de Technologie d''Ati'),
(142084, 111345, 'fr', 'name', 'Association canadienne des écoles de sciences infirmières'),
(142085, 111345, 'en', 'name', 'Canadian Association of Schools of Nursing'),
(142086, 111346, 'fr', 'name', 'Pays Germaniques'),
(142087, 111347, 'en', 'name', 'Sakana AI'),
(142088, 111347, 'no_lang_code', 'name', 'Sakana AI (Japan)'),
(142089, 111348, 'en', 'name', 'Minorities in Shark Sciences'),
(142090, 111349, 'en', 'name', 'Metalchemy (United Kingdom)'),
(142091, 111350, 'en', 'name', 'Agricultural Research Center'),
(142092, 111350, 'az', 'name', 'Aqrar Tədqiqatlar Mərkəzi'),
(142093, 111351, 'en', 'name', 'Finnish Society of Telemedicine and eHealth'),
(142094, 111351, 'fi', 'name', 'Suomen TelelƤƤketieteen ja e-Health seura (STeHS)'),
(142095, 111352, 'fr', 'name', 'UniversitƩ de DƩdougou'),
(142096, 111353, 'en', 'name', 'ALSALAM International for Development & Agricultural Investment (Egypt)'),
(142097, 111354, 'nl', 'name', 'Agentschap Innoveren & Ondernemen'),
(142098, 111354, 'en', 'name', 'Flanders Innovation and Entrepreneurship'),
(142099, 111355, 'en', 'name', 'Adult Education Research Society'),
(142100, 111355, 'fi', 'name', 'Aikuiskasvatuksen Tutkimusseura'),
(142101, 111355, 'sv', 'name', 'ForskningssƤllskapet fƶr vuxenutbildning'),
(142102, 111356, 'fr', 'name', 'Laboratoire de Cristallographie et Sciences des MatƩriaux'),
(142103, 111357, 'en', 'name', 'Ukrainian Nature Conservation Group'),
(142104, 111357, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° прироГоохоронна Š³Ń€ŃƒŠæŠ°'),
(142105, 111358, 'fr', 'name', 'Modélisation et Ingénierie des Systèmes Complexes Biologiques pour le Diagnostic'),
(142106, 111359, 'en', 'name', 'Centre for Cognitive Neuroscience'),
(142107, 111359, 'fr', 'name', 'Institut des Sciences Cognitives Marc Jeannerod'),
(142108, 111360, 'sv', 'name', 'Finlands Keltologiska SƤllskap (SFKS)'),
(142109, 111360, 'en', 'name', 'Finnish Society for Celtic Studies'),
(142110, 111360, 'fi', 'name', 'Suomen Keltologinen Seura'),
(142111, 111361, 'fr', 'name', 'HƓpitaux universitaires Paris Sud'),
(142112, 111362, 'en', 'name', 'Federal Neuro-Psychiatric Hospital, Calabar'),
(142113, 111363, 'en', 'name', 'The Medical City Ortigas'),
(142114, 111364, 'en', 'name', 'Biocentis (Italy)'),
(142115, 111365, 'en', 'name', 'Southern General Hospital'),
(142116, 111366, 'en', 'name', 'National Medical Research Center of Surgery named after A. Vishnevsky'),
(142117, 111366, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø имени А.Š’. Š’ŠøŃˆŠ½ŠµŠ²ŃŠŗŠ¾Š³Š¾'),
(142118, 111367, 'en', 'name', 'Finnish Association for Administrative Studies'),
(142119, 111367, 'fi', 'name', 'Hallinnon Tutkimuksen Seura'),
(142120, 111367, 'sv', 'name', 'SƤllskapet fƶr fƶrvaltningsforskning'),
(142121, 111368, 'fr', 'name', 'Maladies Infectieuses et Vecteurs: Ɖcologie, GĆ©nĆ©tique, Ɖvolution et ContrĆ“le'),
(142122, 111369, 'en', 'name', 'Neuralix Inc. (United States)'),
(142123, 111370, 'fi', 'name', 'Hymnologian ja liturgiikan seura ry'),
(142124, 111370, 'sv', 'name', 'SƤllskapet fƶr hymnologi och liturgik'),
(142125, 111370, 'en', 'name', 'The Finnish Society for Hymnology and Liturgy'),
(142126, 111371, 'en', 'name', 'Finnish Society of International Law'),
(142127, 111371, 'fi', 'name', 'Suomen KansainvƤlisoikeudellinen Seura'),
(142128, 111372, 'fr', 'name', 'Surface du Verre et Interfaces'),
(142129, 111373, 'fr', 'name', 'Institut de Physique de Nice'),
(142130, 111374, 'es', 'name', 'Centro MƩdico Sanitas Sevilla Los Remedios'),
(142131, 111374, 'en', 'name', 'Sanitas Sevilla Los Remedios Medical Centre'),
(142132, 111375, 'en', 'name', 'Kuwait Technical College'),
(142133, 111375, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁˆŁŠŲŖ Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(142134, 111376, 'en', 'name', 'Finnish Society for Medieval Archaeology'),
(142135, 111376, 'la', 'name', 'Societas Archaeologiae Medii Aevi Finlandiae'),
(142136, 111376, 'fi', 'name', 'Suomen keskiajan arkeologian seura'),
(142137, 111376, 'sv', 'name', 'SƤllskapet fƶr medeltidsarkeologi i Finland'),
(142138, 111377, 'en', 'name', 'Space Telescope Science Institute'),
(142139, 111378, 'en', 'name', 'Islamic University of Najaf'),
(142140, 111378, 'ar', 'name', 'الجامعة Ų§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠŲ© في النجف الاؓرف'),
(142141, 111379, 'en', 'name', 'Adhesion and Inflammation Lab'),
(142142, 111379, 'fr', 'name', 'Laboratoire AdhƩsion et inflammation'),
(142143, 111380, 'en', 'name', 'Zimbabwe Ezekiel Guti University Press'),
(142144, 111381, 'en', 'name', 'University of Future Transformation'),
(142145, 111381, 'uk', 'name', 'Університет трансформації Š¼Š°Š¹Š±ŃƒŃ‚Š½ŃŒŠ¾Š³Š¾'),
(142146, 111382, 'it', 'name', 'Centro Ricerche Enrico Fermi'),
(142147, 111383, 'fi', 'name', 'Suomen Vammaistutkimuksen Seura'),
(142148, 111383, 'sv', 'name', 'SƤllskapet fƶr handikappsforskning i Finland'),
(142149, 111383, 'en', 'name', 'The Finnish Society of Disability Studies'),
(142150, 111384, 'en', 'name', 'Institute of Management Development and Research'),
(142151, 111385, 'en', 'name', 'Verechaguine A.K. School of Civil Engineering'),
(142152, 111385, 'fr', 'name', 'Ɖcole SupĆ©rieure de GĆ©nie Civil VĆ©rĆ©chaguine AK'),
(142153, 111386, 'en', 'name', 'Austrian National Defence Academy'),
(142154, 111386, 'de', 'name', 'Landesverteidigungsakademie'),
(142155, 111387, 'en', 'name', 'Crystallography, Magnetic Resonance and Modeling Laboratory'),
(142156, 111387, 'de', 'name', 'Labor für Kristallographie, Kernspinresonanz und Modellierung'),
(142157, 111387, 'fr', 'name', 'Laboratoire de Cristallographie, RƩsonance MagnƩtique et ModƩlisations'),
(142158, 111388, 'en', 'name', 'State College of Health Sciences'),
(142159, 111389, 'en', 'name', 'University of Quebec in Montreal'),
(142160, 111389, 'fr', 'name', 'UniversitƩ du QuƩbec Ơ MontrƩal'),
(142161, 111390, 'en', 'name', 'Nigeria Natural Medicine Development Agency'),
(142162, 111391, 'en', 'name', 'Finnish Association for Industrial Property Rights'),
(142163, 111391, 'sv', 'name', 'Finska Fƶreningen fƶr industriellt rƤttsskydd'),
(142164, 111391, 'fi', 'name', 'Suomen Teollisoikeudellinen Yhdistys'),
(142165, 111392, 'en', 'name', 'ICOMOS Finnish National Committee'),
(142166, 111392, 'sv', 'name', 'ICOMOS Finska national kommitteƩn'),
(142167, 111393, 'en', 'name', 'Tissemsilt University'),
(142168, 111393, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁŠŲ³Ł…Ų³ŁŠŁ„ŲŖ'),
(142169, 111394, 'no', 'name', 'Museum Nord'),
(142170, 111395, 'en', 'name', 'Myanmar Medical Association'),
(142171, 111395, 'my', 'name', 'į€™į€¼į€”į€ŗį€™į€¬į€”į€­į€Æį€„į€ŗį€„į€¶į€†į€›į€¬į€į€”į€ŗį€”į€žį€„į€ŗį€ø'),
(142172, 111396, 'en', 'name', 'Interdisciplinary Laboratory for Continental Environments'),
(142173, 111396, 'fr', 'name', 'Laboratoire Interdisciplinaire des Environnements Continentaux'),
(142174, 111397, 'en', 'name', 'Goalpara College'),
(142175, 111397, 'bn', 'name', 'গোয়ালপারা ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(142176, 111398, 'en', 'name', 'Finnish Economic Association'),
(142177, 111398, 'sv', 'name', 'Nationalekonomiska Fƶreningen'),
(142178, 111398, 'fi', 'name', 'Taloustieteellinen Yhdistys'),
(142179, 111399, 'en', 'name', 'University of Rajasthan'),
(142180, 111399, 'fr', 'name', 'UniversitƩ du rajasthan'),
(142181, 111399, 'hi', 'name', 'ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(142182, 111399, 'pa', 'name', 'ਰਾਜਸ਄ਾਨ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(142183, 111400, 'fr', 'name', 'Laboratoire d’informatique ParallĆ©lisme RĆ©seaux Algorithmes DistribuĆ©s'),
(142184, 111401, 'fr', 'name', 'Centre de recherche Versailles Saint-Quentin Institutions Publiques'),
(142185, 111402, 'fr', 'name', 'Institut de Recherches Historiques du Septentrion'),
(142186, 111403, 'es', 'name', 'Universidad Tecnológica de Saltillo'),
(142187, 111404, 'en', 'name', 'Finnish Neurological Association'),
(142188, 111404, 'sv', 'name', 'Neurologiska Fƶreningen i Finland'),
(142189, 111404, 'fi', 'name', 'Suomen neurologinen yhdistys'),
(142190, 111405, 'en', 'name', 'Medan State Polytechnic'),
(142191, 111405, 'id', 'name', 'Politeknik Negeri Medan'),
(142192, 111406, 'en', 'name', 'Senckenberg Institute for Plant Form and Function Jena'),
(142193, 111407, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Serrano'),
(142194, 111407, 'en', 'name', 'Sanitas Serrano Advanced Rehabilitation Centre'),
(142195, 111408, 'en', 'name', 'Macquarie University'),
(142196, 111409, 'fr', 'name', 'Jardins botaniques du Grand Nancy et de l''UniversitƩ de Lorraine'),
(142197, 111410, 'en', 'name', 'Djibo Hamani University'),
(142198, 111410, 'fr', 'name', 'UniversitƩ Djibo Hamani'),
(142199, 111411, 'en', 'name', 'State Enterprise "Ukrainian Scientific Railway Car Building Research Institute"'),
(142200, 111411, 'uk', 'name', 'Державне піГприємство ā€œŠ£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Š°Š³Š¾Š½Š¾Š±ŃƒŠ“ŃƒŠ²Š°Š½Š½Ńā€'),
(142201, 111412, 'es', 'name', 'Universidad Tecnológica de San Luis Potosí'),
(142202, 111413, 'en', 'name', 'Rolls-Royce'),
(142203, 111413, 'no_lang_code', 'name', 'Rolls-Royce (United Kingdom)'),
(142204, 111414, 'en', 'name', 'Information and Communications Technology Academy'),
(142205, 111415, 'fr', 'name', 'Adaptation Biologique et Vieillissement'),
(142206, 111415, 'en', 'name', 'Biological Adaptation and Ageing'),
(142207, 111416, 'it', 'name', 'Fondazione Bruno Kessler'),
(142208, 111417, 'en', 'name', 'Institute for BioEconomy'),
(142209, 111417, 'it', 'name', 'Istituto per la BioEconomia'),
(142210, 111418, 'en', 'name', 'Selangor Islamic University'),
(142211, 111418, 'ms', 'name', 'Universiti Islam Selangor'),
(142212, 111418, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ŲØŲ³Ł„Ų§Ł†Ų¬ŁˆŲ±'),
(142213, 111419, 'en', 'name', 'Bhamada University Slawi'),
(142214, 111419, 'id', 'name', 'Universitas Bhamada Slawi'),
(142215, 111420, 'en', 'name', 'Myanmar Liver Foundation'),
(142216, 111420, 'my', 'name', 'မြန်မာနိုင်ငံ į€”į€žį€Šį€ŗį€øį€–į€±į€¬į€„į€ŗį€’į€±į€øį€›į€¾į€„į€ŗį€ø'),
(142217, 111421, 'fr', 'name', 'DƩlƩgation Alsace'),
(142218, 111422, 'en', 'name', 'Ministry of Finance of the People''s Republic of China'),
(142219, 111422, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½č“¢ę”æéƒØ'),
(142220, 111423, 'en', 'name', 'Beijing Municipal Education Commission'),
(142221, 111423, 'zh', 'name', 'åŒ—äŗ¬åø‚ę•™č‚²å§”å‘˜ä¼š'),
(142222, 111424, 'en', 'name', 'Buenavista Community College'),
(142223, 111425, 'fr', 'name', 'Agents infectieux, rƩsistance et chimiothƩrapie'),
(142224, 111426, 'de', 'name', 'IFDT - Institut für Digitale Technologien'),
(142225, 111427, 'en', 'name', 'Cleveland Dental Institute'),
(142226, 111428, 'es', 'name', 'Universidad de Puerto Rico en Utuado'),
(142227, 111428, 'en', 'name', 'University of Puerto Rico at Utuado'),
(142228, 111429, 'en', 'name', 'Bethel University'),
(142229, 111430, 'nl', 'name', 'Huisartsenpraktijk Meander'),
(142230, 111431, 'en', 'name', 'IFMR Graduate School of Business'),
(142231, 111432, 'id', 'name', 'Sekolah Tinggi Teologi Injili Indonesia Yogyakarta'),
(142232, 111433, 'fr', 'name', 'Virologie de l''hƩpatite C'),
(142233, 111434, 'it', 'name', 'Aeronautica Militare'),
(142234, 111434, 'en', 'name', 'Italian Air Force'),
(142235, 111435, 'en', 'name', 'Bank of Israel'),
(142236, 111435, 'he', 'name', 'בנק ×™×©×Ø××œ'),
(142237, 111435, 'ar', 'name', 'ŲØŁ†Łƒ Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„'),
(142238, 111436, 'en', 'name', 'Ministry of Health and Population'),
(142239, 111436, 'ar', 'name', 'وزارة الصحة - الصفحة Ų§Ł„Ų±Ų¦ŁŠŲ³ŁŠŲ©'),
(142240, 111437, 'fr', 'name', 'Conception, synthèse et vectorisation de biomolécules'),
(142241, 111438, 'fr', 'name', 'UnitƩ de Recherche en DƩveloppement, Imagerie et Anatomie'),
(142242, 111439, 'de', 'name', 'Institut für Klinische Neuroimmunologie'),
(142243, 111439, 'en', 'name', 'Institute of Clinical Neuroimmunology'),
(142244, 111440, 'fr', 'name', 'UniversitƩ de Nantes'),
(142245, 111441, 'en', 'name', 'Croydon University Hospital'),
(142246, 111442, 'en', 'name', 'Air Line Pilots Association'),
(142247, 111443, 'ja', 'name', 'RIKEN'),
(142248, 111444, 'en', 'name', 'Clinical Research City Hospital Methodologies and Society'),
(142249, 111444, 'fr', 'name', 'Recherche Clinique ville-hƓpital, MƩthodologies et SociƩtƩ'),
(142250, 111445, 'de', 'name', 'Institut für Ethik, Geschichte und Theorie der Medizin'),
(142251, 111445, 'en', 'name', 'Institute for the Ethics, History and Theory of Medicine'),
(142252, 111446, 'fr', 'name', 'UniversitƩ PanthƩon-Assas'),
(142253, 111447, 'en', 'name', 'Kaya University'),
(142254, 111447, 'ja', 'name', 'åŠ č€¶å¤§å­¦ę ”'),
(142255, 111447, 'zh', 'name', 'åŠ č€¶å¤§å­øę ”'),
(142256, 111447, 'ko', 'name', 'ź°€ģ•¼ėŒ€ķ•™źµ'),
(142257, 111448, 'it', 'name', 'Centro di Ricerca sulla Tradizione Filologica Europea'),
(142258, 111448, 'en', 'name', 'Research Centre for European Philological Tradition'),
(142259, 111449, 'fr', 'name', 'Service de Recherches en HƩmato-Immunologie'),
(142260, 111450, 'en', 'name', 'Institute of Nuclear Energy Research'),
(142261, 111450, 'zh', 'name', 'ę øčƒ½ē ”ē©¶ę‰€'),
(142262, 111451, 'en', 'name', 'West Midlands Ambulance Service University NHS Foundation Trust'),
(142263, 111452, 'fr', 'name', 'Analyse Linguistique Profonde Ć  Grande Echelle'),
(142264, 111453, 'fr', 'name', 'VariabilitƩ GƩnƩtique et Maladies Humaines'),
(142265, 111454, 'de', 'name', 'Institut für Humangenetik'),
(142266, 111454, 'en', 'name', 'Institute of Human Genetics'),
(142267, 111455, 'en', 'name', 'Notre Dame University – Louaize'),
(142268, 111455, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سيدة Ų§Ł„Ł„ŁˆŁŠŲ²Ų©'),
(142269, 111456, 'en', 'name', 'Australian Astronomical Observatory'),
(142270, 111457, 'en', 'name', 'FAIR Data Infrastructure for Agrosystems'),
(142271, 111457, 'no_lang_code', 'name', 'FAIRagro'),
(142272, 111457, 'de', 'name', 'FAIRe Dateninfrastruktur für die Agrosystemforschung'),
(142273, 111458, 'fr', 'name', 'Centre amiƩnois de recherche en Ʃducation et formation'),
(142274, 111459, 'es', 'name', 'Universidad de Puerto Rico en Aguadilla'),
(142275, 111459, 'en', 'name', 'University of Puerto Rico at Aguadilla'),
(142276, 111460, 'en', 'name', 'Takuvik Joint International Laboratory'),
(142277, 111461, 'en', 'name', 'CMH Multan Institute of Medical Sciences'),
(142278, 111462, 'es', 'name', 'Universidad Tecnológica de TecÔmac'),
(142279, 111463, 'en', 'name', 'Global Research Labs'),
(142280, 111464, 'en', 'name', 'European Research Institute for Gas and Energy Innovation'),
(142281, 111465, 'en', 'name', 'SIMEC Institute of Technology'),
(142282, 111466, 'id', 'name', 'Politeknik Teknologi Nuklir Indonesia'),
(142283, 111466, 'en', 'name', 'Polytechnic Institutes of Nuclear Technology'),
(142284, 111467, 'en', 'name', 'Jawzjan University'),
(142285, 111467, 'ps', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų¬ŁˆŲ²Ų¬Ų§Ł†'),
(142286, 111468, 'gl', 'name', 'Escola Naval Militar'),
(142287, 111468, 'es', 'name', 'Escuela Naval Militar'),
(142288, 111468, 'en', 'name', 'Spanish Naval Academy'),
(142289, 111469, 'fr', 'name', 'Institut de physique du globe de Paris'),
(142290, 111469, 'en', 'name', 'Paris Institute of Earth Physics'),
(142291, 111470, 'en', 'name', 'National Higher School of Technology and Engineering Annaba'),
(142292, 111470, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Technologie et d''IngĆ©nierie - Annaba'),
(142293, 111470, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ł‡Ł†ŲÆŲ³Ų© –عنابة'),
(142294, 111471, 'en', 'name', 'Vitalant Research Institute'),
(142295, 111472, 'en', 'name', 'Guangdong Laboratory of Artificial Intelligence and Digital Economy (Shenzhen)'),
(142296, 111472, 'zh', 'name', 'äŗŗå·„ę™ŗčƒ½äøŽę•°å­—ē»ęµŽå¹æäøœēœå®žéŖŒå®¤ļ¼ˆę·±åœ³)'),
(142297, 111473, 'en', 'name', 'Toyota Motor North America Research & Development (United States)'),
(142298, 111474, 'fr', 'name', 'Ecologie et Dynamique des Systèmes Anthropisés'),
(142299, 111474, 'en', 'name', 'Ecology and Dynamics of Human Influenced Systems'),
(142300, 111475, 'en', 'name', 'Digital Botanical Gardens Initiative'),
(142301, 111476, 'de', 'name', 'Institut für Infektions- und Tropenmedizin'),
(142302, 111476, 'en', 'name', 'Institute of Infectious Diseases and Tropical Medicine'),
(142303, 111477, 'en', 'name', 'Franciscan School of Theology'),
(142304, 111478, 'es', 'name', 'Centro de Investigaciones Feministas y Estudios de GƩnero'),
(142305, 111479, 'en', 'name', 'CHRR at The Ohio State University'),
(142306, 111480, 'en', 'name', 'Qingdao Municipal Science and Technology Bureau'),
(142307, 111480, 'zh', 'name', 'é’å²›åø‚ē§‘å­¦ęŠ€ęœÆå±€_é’å²›ę”æåŠ”ē½‘'),
(142308, 111481, 'en', 'name', 'PurePave Technologies Inc. (Canada)'),
(142309, 111482, 'en', 'name', 'Nigerian Institute of Leather and Science Technology'),
(142310, 111483, 'en', 'name', 'Ministry for Europe and Foreign Affairs'),
(142311, 111483, 'fr', 'name', 'Ministère de l''Europe et des Affaires étrangères'),
(142312, 111484, 'en', 'name', 'Horia Hulubei National Institute for R and D in Physics and Nuclear Engineering'),
(142313, 111484, 'ro', 'name', 'Institutul National de Cercetare-Dezvoltare pentru Fizica si Inginerie Nucleara Horia Hulubei Horia'),
(142314, 111485, 'en', 'name', 'Saint Joseph College'),
(142315, 111486, 'en', 'name', 'Starr King School for the Ministry'),
(142316, 111487, 'en', 'name', 'Acoustics Research Institute'),
(142317, 111487, 'de', 'name', 'Institut für Schallforschung'),
(142318, 111488, 'fr', 'name', 'Institut National des Postes et TƩlƩcommunications'),
(142319, 111488, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŲØŲ±ŁŠŲÆ ŁˆŲ§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ'),
(142320, 111489, 'en', 'name', 'Huntington Hospital'),
(142321, 111490, 'en', 'name', 'Laval University'),
(142322, 111490, 'fr', 'name', 'UniversitƩ Laval'),
(142323, 111491, 'pt', 'name', 'Instituto de CiĆŖncias Sociais da Universidade de Lisboa'),
(142324, 111492, 'en', 'name', 'CT University'),
(142325, 111493, 'fr', 'name', 'Hématopoïèse et immunologie'),
(142326, 111494, 'fr', 'name', 'Laboratoire de physique de la matière condensée'),
(142327, 111495, 'en', 'name', 'International University Liebenzell'),
(142328, 111495, 'de', 'name', 'Internationale Hochschule Liebenzell'),
(142329, 111496, 'fr', 'name', 'Centre de recherche sur le travail et le dƩveloppement'),
(142330, 111497, 'fr', 'name', 'Centre de droit privƩ et de sciences criminelles d''Amiens'),
(142331, 111498, 'fr', 'name', 'Observatoire de Paris'),
(142332, 111498, 'ca', 'name', 'Observatori de ParĆ­s'),
(142333, 111498, 'en', 'name', 'Paris Observatory'),
(142334, 111498, 'eu', 'name', 'Parisko Behatokia'),
(142335, 111499, 'fr', 'name', 'Ethique, politique et santƩ'),
(142336, 111499, 'en', 'name', 'Medical Ethics and Legal Medicine Laboratory'),
(142337, 111500, 'fr', 'name', 'Centre de recherche sur les institutions, l''industrie et les systèmes économiques d''Amiens'),
(142338, 111501, 'fr', 'name', 'Laboratoire des technologies innovantes'),
(142339, 111502, 'fr', 'name', 'MƩdecine PersonnalisƩe, PharmacogƩnomique, Optimisation ThƩrapeutique'),
(142340, 111502, 'en', 'name', 'Pharmacogenomics & Therapeutic optimization'),
(142341, 111503, 'fr', 'name', 'Groupe de Recherche sur l''Alcool et les PharmacodƩpendances'),
(142342, 111504, 'es', 'name', 'Instituto CientĆ­fico Michael Owen Dillon'),
(142343, 111505, 'en', 'name', 'Social Capital Foundation'),
(142344, 111506, 'en', 'name', 'SS Peter and Paul Major Seminary, Bodija'),
(142345, 111507, 'fr', 'name', 'Génétique des Virus et Pathogénèse des Maladies Virales'),
(142346, 111508, 'en', 'name', 'Central Marine Fisheries Research Institute'),
(142347, 111508, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„ą¤¦ą„ą¤°ą„€ ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(142348, 111508, 'ta', 'name', 'ą®®ą®¤ąÆą®¤ą®æą®Æ ą®•ą®Ÿą®²ąÆą®®ąÆ€ą®©ąÆą®µą®³ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®²ąÆˆą®Æą®®ąÆ'),
(142349, 111509, 'de', 'name', 'Institut für Schlaganfall- und Demenzforschung'),
(142350, 111509, 'en', 'name', 'Institute for Stroke and Dementia Research'),
(142351, 111510, 'en', 'name', 'Kenule Beeson Saro-Wiwa Polytechnic, Bori'),
(142352, 111511, 'en', 'name', 'Mulago Hospital'),
(142353, 111512, 'en', 'name', 'Akhtar Saeed Medical and Dental College'),
(142354, 111512, 'ur', 'name', 'Ų§Ų®ŲŖŲ± سعید Ł…ŪŒŚˆŪŒŚ©Ł„ Ų§ŪŒŁ†Śˆ ŚˆŪŒŁ†Ł¹Ł„ کالج'),
(142355, 111513, 'en', 'name', 'Uganda Heart Institute'),
(142356, 111514, 'en', 'name', 'University of Global Village (UGV)'),
(142357, 111514, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦—ą§ą¦²ą§‹ą¦¬ą¦¾ą¦² ą¦­ą¦æą¦²ą§‡ą¦œ (ą¦‡ą¦‰ą¦œą¦æą¦­ą¦æ)'),
(142358, 111515, 'de', 'name', 'Anatomische Anstalt'),
(142359, 111515, 'en', 'name', 'Institute of Anatomy'),
(142360, 111516, 'fr', 'name', 'Textes, reprƩsentations, archƩologie, autoritƩ et mƩmoire de l''antiquitƩ Ơ la renaissance'),
(142361, 111517, 'fr', 'name', 'PƩrinatalitƩ & Risques Toxiques'),
(142362, 111518, 'en', 'name', 'Scientific Institution "Research Center for Sustainable Development"'),
(142363, 111518, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š° ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Центр Дталого Š Š¾Š·Š²ŠøŃ‚ŠŗŃƒ"'),
(142364, 111519, 'ms', 'name', 'Universiti Malaysia Perlis'),
(142365, 111519, 'en', 'name', 'University of Malaysia, Perlis'),
(142366, 111520, 'en', 'name', 'The Kaavery Pharmacy College'),
(142367, 111521, 'en', 'name', 'Kumamoto University'),
(142368, 111521, 'ja', 'name', 'ē†Šęœ¬å¤§å­¦'),
(142369, 111522, 'en', 'name', 'Egyptian Drug Authority'),
(142370, 111522, 'ar', 'name', 'Ł‡ŁŠŲ¦Ų© Ų§Ł„ŲÆŁˆŲ§Ų” Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(142371, 111523, 'fr', 'name', 'Infection Ơ VIH, rƩservoirs, diversitƩ gƩnƩtique et rƩsistance aux antirƩtroviraux'),
(142372, 111524, 'en', 'name', 'Max Planck Institute for Neurobiology of Behavior – caesar'),
(142373, 111525, 'en', 'name', 'St Peter''s Hospital'),
(142374, 111526, 'en', 'name', 'Nigerian Institute of Food Science and Technology'),
(142375, 111527, 'en', 'name', 'Atomic Energy Council'),
(142376, 111528, 'en', 'name', 'Allergen Research Center'),
(142377, 111528, 'pl', 'name', 'Ośrodek Badania Alergenów Środowiskowych'),
(142378, 111529, 'de', 'name', 'LMU Klinikum'),
(142379, 111530, 'en', 'name', 'University of Africa Toru-Orua'),
(142380, 111531, 'de', 'name', 'Institut für Medizinische Informationsverarbeitung, Biometrie und Epidemiologie'),
(142381, 111531, 'en', 'name', 'Medical Information Processing, Biometry, and Epidemiology'),
(142382, 111532, 'en', 'name', 'Gokhale Education Society’s College of Education and Research'),
(142383, 111533, 'nl', 'name', 'Parkinson Platform Noord Nederland'),
(142384, 111533, 'en', 'name', 'Parkinson Platform Northern Netherlands'),
(142385, 111534, 'en', 'name', 'British School of Monteria'),
(142386, 111534, 'es', 'name', 'Colegio BritƔnico de Monterƭa'),
(142387, 111535, 'en', 'name', 'RIKEN Center for Interdisciplinary Theoretical and Mathematical Sciences'),
(142388, 111535, 'ja', 'name', 'ē†åŒ–å­¦ē ”ē©¶ę‰€ ę•°ē†å‰µé€ ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(142389, 111536, 'en', 'name', 'Korea Workers'' Compensation and Welfare Service'),
(142390, 111536, 'ko', 'name', 'ź·¼ė”œė³µģ§€ź³µė‹Ø'),
(142391, 111537, 'en', 'name', 'Kabul Education University'),
(142392, 111537, 'ps', 'name', 'دکابل ŲÆ ŚšŁˆŁˆŁ†Ū او Ų±ŁˆŲ²Ł†Ū Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(142393, 111537, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲŖŲ¹Ł„ŪŒŁ… و ŲŖŲ±ŲØŪŒŁ‡ کابل'),
(142394, 111538, 'en', 'name', 'National Atomic Research Institute'),
(142395, 111538, 'zh', 'name', 'åœ‹å®¶åŽŸå­čƒ½ē§‘ęŠ€ē ”ē©¶é™¢'),
(142396, 111539, 'en', 'name', 'Karpagam College of Pharmacy Coimbatore'),
(142397, 111540, 'fr', 'name', 'HomƩostasie cellulaire et cancer : reprogrammation des rƩponses biologiques et thƩrapies alternatives'),
(142398, 111541, 'en', 'name', 'Polymer Institute of Nigeria'),
(142399, 111542, 'en', 'name', 'Central Pulp & Paper Research Institute'),
(142400, 111543, 'en', 'name', 'Royal Commission for Jubail and Yanbu'),
(142401, 111543, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ł„Ł„Ų¬ŲØŁŠŁ„ ŁˆŁŠŁ†ŲØŲ¹'),
(142402, 111544, 'de', 'name', 'Institut und Poliklinik für Arbeits-, Sozial- und Umweltmedizin'),
(142403, 111544, 'en', 'name', 'Institute and Clinic for Occupational, Social and Environmental Medicine'),
(142404, 111545, 'en', 'name', 'SRM University Sikkim'),
(142405, 111546, 'de', 'name', 'Institut für Kardiovaskuläre Physiologie und Pathophysiologie'),
(142406, 111546, 'en', 'name', 'Institute of Cardiovascular Physiology and Pathophysiology'),
(142407, 111547, 'en', 'name', 'Pacific School of Religion'),
(142408, 111548, 'fr', 'name', 'Epilepsies de l''enfant et plasticitƩ cƩrƩbrale'),
(142409, 111549, 'no_lang_code', 'name', 'Joongbu University'),
(142410, 111549, 'ko', 'name', 'ģ¤‘ė¶€ėŒ€ķ•™źµ'),
(142411, 111550, 'en', 'name', 'University of Valenciennes and Hainaut-CambrƩsis'),
(142412, 111550, 'fr', 'name', 'UniversitƩ de Valenciennes et du Hainaut-CambrƩsis'),
(142413, 111551, 'en', 'name', '1854 Treaty Authority'),
(142414, 111552, 'fr', 'name', 'DiffƩrenciation et progression tumorale des lymphocytes'),
(142415, 111553, 'no_lang_code', 'name', 'Fujitsu (Japan)'),
(142416, 111553, 'ja', 'name', 'åÆŒå£«é€šę Ŗå¼ä¼šē¤¾'),
(142417, 111554, 'en', 'name', 'State Scientific and Technical Center for Nuclear and Radiation Safety'),
(142418, 111555, 'de', 'name', 'Institut für Prophylaxe und Epidemiologie der Kreislaufkrankheiten'),
(142419, 111555, 'en', 'name', 'Institute of Cardiovascular Prevention'),
(142420, 111556, 'en', 'name', 'Rehabilitation Engineering Research Institute'),
(142421, 111556, 'ko', 'name', 'ź·¼ė”œė³µģ§€ź³µė‹Ø ģž¬ķ™œź³µķ•™ģ—°źµ¬ģ†Œ'),
(142422, 111557, 'fr', 'name', 'Laboratoire de physiologie cellulaire et molƩculaire'),
(142423, 111558, 'en', 'name', 'Toyota Motor North America (United States)'),
(142424, 111559, 'fr', 'name', 'Carcinose AngiogenĆØse et Recherche Translationnelle'),
(142425, 111560, 'fr', 'name', 'Institut de MĆ©canique CĆ©leste et de Calcul des ƉphĆ©mĆ©rides'),
(142426, 111561, 'en', 'name', 'Institute of Hydrogeology and Engineering Geology'),
(142427, 111561, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГрогеологии Šø инженерной геологии»'),
(142428, 111561, 'uz', 'name', 'ā€œGidrogeologiya va injenerlik geologiyasi institutiā€ davlat muassasasi'),
(142429, 111562, 'en', 'name', 'Janajyoti Multiple Campus'),
(142430, 111562, 'ne', 'name', 'ą¤œą¤Øą¤œą„ą¤Æą„‹ą¤¤ą¤æ ą¤¬ą¤¹ą„ą¤®ą„ą¤–ą„€ ą¤•ą„ą¤Æą¤¾ą¤®ą„ą¤Ŗą¤ø'),
(142431, 111563, 'tr', 'name', 'Ermenek Devlet Hastanesi'),
(142432, 111563, 'en', 'name', 'Ermenek State Hospital'),
(142433, 111564, 'en', 'name', 'Institute for the Study of Anthropic Impact and Sustainability in the Marine Environment'),
(142434, 111564, 'it', 'name', 'Istituto per lo studio degli impatti Antropici e SostenibilitĆ  in ambiente marino'),
(142435, 111565, 'en', 'name', 'University of Garoua'),
(142436, 111565, 'fr', 'name', 'UniversitƩ de Garoua'),
(142437, 111566, 'gd', 'name', 'Oilthigh Dhùn Èideann'),
(142438, 111566, 'en', 'name', 'University of Edinburgh'),
(142439, 111567, 'en', 'name', 'Government Degree College Wari Dir Upper'),
(142440, 111568, 'en', 'name', 'Lyon Observatory'),
(142441, 111568, 'fr', 'name', 'Observatoire de Lyon'),
(142442, 111569, 'en', 'name', 'Yukawa Institute for Theoretical Physics'),
(142443, 111569, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦åŸŗē¤Žē‰©ē†å­¦ē ”ē©¶ę‰€'),
(142444, 111570, 'en', 'name', 'Deenbandhu Chhotu Ram University of Science and Technology'),
(142445, 111570, 'hi', 'name', 'ą¤¦ą„€ą¤Øą¤¬ą¤‚ą¤§ą„ ą¤›ą„‹ą¤Ÿą„‚ राम ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ साइंस ą¤ą¤‚ą¤” ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(142446, 111571, 'en', 'name', 'Wrangell–St. Elias National Park and Preserve'),
(142447, 111572, 'en', 'name', 'LiveRamp'),
(142448, 111572, 'no_lang_code', 'name', 'LiveRamp (United States)'),
(142449, 111573, 'en', 'name', 'Vitalant'),
(142450, 111574, 'en', 'name', 'Berkeley City College'),
(142451, 111575, 'fr', 'name', 'Troubles du comportement alimentaire de l''adolescent'),
(142452, 111576, 'en', 'name', 'Ministry of Employment and Labor'),
(142453, 111576, 'ko', 'name', 'ź³ ģš©ė…øė™ė¶€'),
(142454, 111577, 'en', 'name', 'Eastern Technical University of Sierra Leone'),
(142455, 111578, 'en', 'name', 'An Binh hospital'),
(142456, 111578, 'vi', 'name', 'Bệnh viện An BƬnh'),
(142457, 111579, 'en', 'name', 'Coventry University'),
(142458, 111580, 'hr', 'name', 'Ministarstvo zaŔtite okoliŔa i zelene tranzicije'),
(142459, 111580, 'en', 'name', 'Ministry of Environmental Protection and Green Transition'),
(142460, 111581, 'es', 'name', 'Universidad de Ciencias MƩdicas de Sancti Spƭritus'),
(142461, 111582, 'fr', 'name', 'Jardin d’altitude du Haut Chitelet'),
(142462, 111583, 'en', 'name', 'Springboro High School'),
(142463, 111584, 'en', 'name', 'Universitas Alma Ata'),
(142464, 111585, 'en', 'name', 'Scientific Research Commission'),
(142465, 111585, 'ar', 'name', 'Ł‡ŁŠŲ¦Ų© البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(142466, 111586, 'de', 'name', 'Hochschule Campus Wien'),
(142467, 111587, 'en', 'name', 'Badlands National Park'),
(142468, 111587, 'es', 'name', 'Parque nacional Badlands'),
(142469, 111588, 'en', 'name', 'KNCV TB Plus'),
(142470, 111589, 'pt', 'name', 'Instituto Superior de Ciências da Educação de Benguela'),
(142471, 111590, 'es', 'name', 'Universidad de Puerto Rico en Bayamón'),
(142472, 111590, 'en', 'name', 'University of Puerto Rico at Bayamón'),
(142473, 111591, 'fr', 'name', 'Centre Scientifique et Technique du BĆ¢timent'),
(142474, 111591, 'en', 'name', 'Scientific and Technical Center for Building'),
(142475, 111592, 'en', 'name', 'South African Society for Agricultural Extension'),
(142476, 111593, 'fr', 'name', 'UMR TransfrontaliĆØre BioEcoAgro'),
(142477, 111594, 'en', 'name', 'North Private College of Nursing'),
(142478, 111595, 'fr', 'name', 'GƩnƩtique et physiopathologie des maladies cƩrƩbro-vasculaires'),
(142479, 111596, 'en', 'name', 'Enzyme and Cell Engineering - Molecular Recognition and Biocatalysis'),
(142480, 111596, 'fr', 'name', 'GƩnie Enzymatique et Cellulaire - Reconnaissance MolƩculaire et Catalyse'),
(142481, 111597, 'fr', 'name', 'UniversitƩ Paris Sciences et Lettres'),
(142482, 111598, 'en', 'name', 'United Mine Workers of America'),
(142483, 111599, 'fr', 'name', 'Laboratoire MƩdiations'),
(142484, 111600, 'en', 'name', 'Indiana University'),
(142485, 111600, 'fr', 'name', 'UniversitƩ de l''Indiana'),
(142486, 111601, 'en', 'name', 'Madrid Institute for Advanced Studies'),
(142487, 111602, 'en', 'name', 'Geological Survey of Pakistan'),
(142488, 111603, 'fr', 'name', 'UniversitƩ Rennes 1'),
(142489, 111604, 'fr', 'name', 'EcosystĆØme intestinal, probiotiques, antibiotiques'),
(142490, 111605, 'fr', 'name', 'Troubles psychiatriques et dƩveloppement'),
(142491, 111606, 'en', 'name', 'Cuorips Inc. (Japan)'),
(142492, 111606, 'ja', 'name', 'ć‚Æć‚ŖćƒŖćƒ—ć‚¹ę Ŗå¼ä¼šē¤¾'),
(142493, 111607, 'en', 'name', 'Education Department of Hunan Province'),
(142494, 111607, 'zh', 'name', 'ę¹–å—ēœę•™č‚²åŽ…'),
(142495, 111608, 'oj', 'name', 'Gichi-Onigaming'),
(142496, 111608, 'en', 'name', 'Grand Portage Band of Lake Superior Chippewa'),
(142497, 111609, 'en', 'name', 'Lanzhou Institute of Technology'),
(142498, 111609, 'zh', 'name', 'å…°å·žå·„äøšå­¦é™¢'),
(142499, 111610, 'fr', 'name', 'Simplification des soins chez les patients complexes'),
(142500, 111611, 'fr', 'name', 'Production et analyse de donnƩes en sciences de la vie et en santƩ'),
(142501, 111612, 'es', 'name', 'Centro Universitario de la Defensa en la Escuela Naval Militar'),
(142502, 111613, 'fr', 'name', 'Institut des Sciences de l''Information et de leurs Interactions'),
(142503, 111614, 'es', 'name', 'Universidad de Puerto Rico en Carolina'),
(142504, 111614, 'en', 'name', 'University of Puerto Rico at Carolina'),
(142505, 111615, 'en', 'name', 'The Knowledge Hub Universities'),
(142506, 111615, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų§ŲŖ المعرفة Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(142507, 111616, 'fr', 'name', 'Groupe de REcherche en Cardio Oncologie'),
(142508, 111617, 'en', 'name', 'Ming Chuan University'),
(142509, 111617, 'zh', 'name', 'éŠ˜å‚³å¤§å­ø'),
(142510, 111618, 'fr', 'name', 'Centre de recherches en arts et esthƩtique'),
(142511, 111619, 'en', 'name', 'De La Salle Medical and Health Sciences Institute'),
(142512, 111620, 'en', 'name', 'Moscow University «Synergy»'),
(142513, 111620, 'ru', 'name', 'Московский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”ŠøŠ½ŠµŃ€Š³ŠøŃĀ»'),
(142514, 111621, 'en', 'name', 'Institute of Veterinary Medicine of the National Academy of Agrarian Sciences of Ukraine'),
(142515, 111621, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарної меГицини ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(142516, 111622, 'fr', 'name', 'Physique des Ondes pour la MƩdecine'),
(142517, 111623, 'en', 'name', 'Manuro Tech Research Pvt. Ltd (India)'),
(142518, 111624, 'en', 'name', 'Government College Asghar Mall Rawalpindi'),
(142519, 111624, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ گریجوئیٹ کالج Ų§ŲµŲŗŲ± Ł…Ų§Ł„ŲŒ Ų±Ų§ŁˆŁ„Ł¾Ł†ŚˆŪŒ'),
(142520, 111625, 'en', 'name', 'CMH Kharian Medical College'),
(142521, 111626, 'en', 'name', 'Clique Clinic'),
(142522, 111627, 'en', 'name', 'Ukrainian Academy of Agrarian Sciences'),
(142523, 111627, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ¾Ń— акаГемії аграрних наук'),
(142524, 111628, 'fr', 'name', 'FƩdƩration Mondiale des Organisations d''IngƩnieurs'),
(142525, 111628, 'en', 'name', 'World Federation of Engineering Organizations'),
(142526, 111629, 'en', 'name', 'Bordeaux Population Health'),
(142527, 111630, 'en', 'name', 'Dominican School of Philosophy and Theology'),
(142528, 111631, 'de', 'name', 'Grimme-Institut'),
(142529, 111632, 'en', 'name', 'Egaz Moniz School of Health and Science'),
(142530, 111632, 'pt', 'name', 'Escola Superior de SaĆŗde Egas Moniz'),
(142531, 111633, 'en', 'name', 'National Organization for Drug Control and Research'),
(142532, 111634, 'fr', 'name', 'IRIS Physiopathologie de la vision et de la motricitƩ binoculaire'),
(142533, 111635, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes Commerciales'),
(142534, 111636, 'en', 'name', 'Federal Scientific Center for Animal Husbandry named after Academician L.K. Ernst'),
(142535, 111636, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ животновоГства имени Š›. К. Эрнста'),
(142536, 111637, 'fr', 'name', 'Institut du Cerveau'),
(142537, 111637, 'en', 'name', 'Paris Brain Institute'),
(142538, 111638, 'de', 'name', 'Institut für Allgemeinmedizin'),
(142539, 111638, 'en', 'name', 'Institute of General Practice and Family Medicine'),
(142540, 111639, 'es', 'name', 'Centro Sismológico Nacional'),
(142541, 111640, 'en', 'name', 'Nile University'),
(142542, 111640, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„'),
(142543, 111641, 'en', 'name', 'Guizhou Tuzhi Information Technology Co., Ltd (China)'),
(142544, 111641, 'zh', 'name', 'č“µå·žå›¾ę™ŗäæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(142545, 111642, 'nl', 'name', 'Koninklijke Nederlandse Chemische Vereniging'),
(142546, 111643, 'fr', 'name', 'Pharmacologie de la circulation cƩrƩbrale'),
(142547, 111644, 'en', 'name', 'NIIT University'),
(142548, 111645, 'en', 'name', 'Department of Education Shandong Province'),
(142549, 111645, 'zh', 'name', 'å±±äøœēœę•™č‚²åŽ…ļ¼ˆēœå§”ę•™č‚²å·„å§”ļ¼‰'),
(142550, 111646, 'es', 'name', 'Tecnológico de Estudios Superiores de San Felipe del Progreso'),
(142551, 111647, 'es', 'name', 'Centro Universitario de la Defensa en San Javier'),
(142552, 111648, 'en', 'name', 'Synergy University Dubai'),
(142553, 111648, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© التآزر'),
(142554, 111649, 'en', 'name', 'Clinical Research Group on Inflammatory Amyloidosis (AA) Sorbonne University'),
(142555, 111649, 'fr', 'name', 'Groupe de recherche clinique Amylose AA Sorbonne UniversitƩ'),
(142556, 111650, 'en', 'name', 'Nuclear Safety Commission'),
(142557, 111650, 'zh', 'name', 'ę øčƒ½å®‰å…Øå§”å“”ęœƒ'),
(142558, 111651, 'it', 'name', 'Ministero della Difesa'),
(142559, 111651, 'en', 'name', 'Ministry of Defence'),
(142560, 111652, 'en', 'name', 'St Helier Hospital'),
(142561, 111653, 'en', 'name', 'Diego Portales University'),
(142562, 111653, 'es', 'name', 'Universidad Diego Portales'),
(142563, 111654, 'en', 'name', 'FBK CREATE-NET Research Center'),
(142564, 111655, 'de', 'name', 'Institut für Psychiatrische Phänomik und Genomik'),
(142565, 111655, 'en', 'name', 'Institute of Psychiatric Phenomics and Genomics'),
(142566, 111656, 'vi', 'name', 'Bệnh viện ChĆ¢m cứu Trung ʰʔng'),
(142567, 111656, 'en', 'name', 'National Hospital of Acupuncture'),
(142568, 111657, 'fr', 'name', 'GƩnƩtique, physiopathologie et approches thƩrapeutiques des maladies hƩrƩditaires'),
(142569, 111658, 'en', 'name', 'Assam Science and Technology University'),
(142570, 111659, 'en', 'name', 'Sai University'),
(142571, 111660, 'en', 'name', 'Association for Tertiary Education Management'),
(142572, 111661, 'pt', 'name', 'Inteligência em Inovação Centro de Inovação'),
(142573, 111662, 'en', 'name', 'Biscayne National Park'),
(142574, 111662, 'es', 'name', 'Parque nacional Biscayne'),
(142575, 111663, 'fr', 'name', 'Laboratoire de neurosciences fonctionnelles et pathologies'),
(142576, 111664, 'es', 'name', 'Instituto de Servicios de Salud del Estado de Aguascalientes'),
(142577, 111665, 'en', 'name', 'Starfleet Academy'),
(142578, 111666, 'es', 'name', 'Museo de Nosotros'),
(142579, 111666, 'en', 'name', 'Museum of Us'),
(142580, 111667, 'en', 'name', 'International Observatory on the Societal Impacts of AI and Digital Technologies'),
(142581, 111667, 'fr', 'name', 'Obvia'),
(142582, 111668, 'en', 'name', 'ASNT Foundation'),
(142583, 111669, 'en', 'name', 'Acorn Toys & Goods'),
(142584, 111669, 'no_lang_code', 'name', 'Acorn Toys & Goods (United States)'),
(142585, 111670, 'en', 'name', 'Bard College'),
(142586, 111671, 'en', 'name', 'Obeikan Investment Group'),
(142587, 111672, 'en', 'name', 'Thai Binh Duong University'),
(142588, 111672, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c ThĆ”i BƬnh Dʰʔng'),
(142589, 111673, 'en', 'name', 'RISE Research Institutes of Sweden'),
(142590, 111674, 'en', 'name', 'African Women in Media'),
(142591, 111675, 'en', 'name', 'The Ohio State University'),
(142592, 111675, 'es', 'name', 'Universidad Estatal de Ohio'),
(142593, 111675, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''Ohio'),
(142594, 111676, 'fr', 'name', 'UniversitƩ de Clermont I'),
(142595, 111677, 'en', 'name', 'Dongkuk Steel Mill Co., Ltd. (South Korea)'),
(142596, 111677, 'ko', 'name', 'ė™źµ­ģ œź°•(주)'),
(142597, 111678, 'de', 'name', 'Institut für Notfallmedizin und Medizinmanagement'),
(142598, 111678, 'en', 'name', 'Institute of Emergency Medicine and Management in Medicine'),
(142599, 111679, 'en', 'name', 'National Institute of Biomedical Genomics'),
(142600, 111680, 'fr', 'name', 'Fédération de Recherche en Neurosciences des Saints-Pères'),
(142601, 111681, 'en', 'name', 'Global Centroid-Moment-Tensor (CMT) Project'),
(142602, 111682, 'en', 'name', 'Max von Pettenkofer Institute of Hygiene and Medical Microbiology'),
(142603, 111682, 'de', 'name', 'Max-von-Pettenkofer-Institut für Hygiene und Medizinische Mikrobiologie'),
(142604, 111683, 'de', 'name', 'Institut für Diagnostische und Interventionelle Neuroradiologie'),
(142605, 111683, 'en', 'name', 'Institute of Neuroradiology'),
(142606, 111684, 'es', 'name', 'Universidad Villanova'),
(142607, 111684, 'en', 'name', 'Villanova University'),
(142608, 111685, 'en', 'name', 'Klintaps University College of Health and Allied Sciences'),
(142609, 111686, 'tl', 'name', 'Kolehiyong Pampamahalaan sa Agham at Teknolohiya ng Hilaga-Kanluraning Mindanao'),
(142610, 111686, 'en', 'name', 'Northwestern Mindanao State College of Science and Technology'),
(142611, 111687, 'en', 'name', 'Institute of Agricultural Research and Training'),
(142612, 111688, 'en', 'name', 'Institute for Healthcare Improvement'),
(142613, 111689, 'en', 'name', 'Rutgers Health'),
(142614, 111690, 'en', 'name', 'Choctaw Nation of Oklahoma'),
(142615, 111691, 'en', 'name', 'Bois Forte Band of Chippewa'),
(142616, 111691, 'oj', 'name', 'Zagaakwaandagowininiwag'),
(142617, 111692, 'en', 'name', 'Nigerian Institute of Physics'),
(142618, 111693, 'nl', 'name', 'Ommelander Ziekenhuis Groningen'),
(142619, 111694, 'en', 'name', 'Schoodic Institute'),
(142620, 111695, 'fr', 'name', 'Robustesse et ƩvolvabilitƩ de la vie'),
(142621, 111695, 'en', 'name', 'Robustness and evolvability of life'),
(142622, 111696, 'en', 'name', 'Institute of Physiology'),
(142623, 111696, 'de', 'name', 'Physiologisches Institut'),
(142624, 111697, 'en', 'name', 'University of Lille'),
(142625, 111697, 'fr', 'name', 'UniversitƩ de Lille'),
(142626, 111698, 'fr', 'name', 'UniversitƩ Blaise Pascal'),
(142627, 111699, 'en', 'name', 'Institute of Disaster Prevention'),
(142628, 111699, 'zh', 'name', 'é˜²ē¾ē§‘ęŠ€å­¦é™¢'),
(142629, 111700, 'en', 'name', 'Health Commission of Guandgong Province'),
(142630, 111700, 'zh', 'name', 'å¹æäøœēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(142631, 111701, 'ca', 'name', 'Institut d’Estudis Filològics Dantescs i Digitals AvanƧats'),
(142632, 111701, 'it', 'name', 'Istituto di Studi Filologici Danteschi e Digitali Avanzati'),
(142633, 111702, 'fr', 'name', 'Institut Universitaire d''HƩmatologie'),
(142634, 111703, 'en', 'name', 'Academy of the National Guard of the Republic of Kazakhstan'),
(142635, 111703, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ гварГии Республики ŠšŠ°Š·Š°Ń…стан'),
(142636, 111703, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ұлттық Ұланның ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(142637, 111704, 'en', 'name', 'Lamont-Doherty Earth Observatory'),
(142638, 111705, 'en', 'name', 'Pirojpur Science and Technology University'),
(142639, 111705, 'bn', 'name', 'ą¦Ŗą¦æą¦°ą§‹ą¦œą¦Ŗą§ą¦° ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą§Ÿ'),
(142640, 111706, 'fr', 'name', 'Physiologie et pathologie moléculaires des rétrovirus endogènes et infectieux'),
(142641, 111707, 'fr', 'name', 'Jardin botanique Jean-Marie-Pelt'),
(142642, 111708, 'de', 'name', 'Institut für Experimentelle Pneumologie'),
(142643, 111708, 'en', 'name', 'Institute of Experimental Pneumology'),
(142644, 111709, 'de', 'name', 'Institut für Rechtsmedizin'),
(142645, 111709, 'en', 'name', 'Institute of Forensic Medicine'),
(142646, 111710, 'en', 'name', 'Life Extension Advocacy Foundation'),
(142647, 111711, 'en', 'name', 'Simprints Technology Limited'),
(142648, 111712, 'en', 'name', 'Ministry of Health'),
(142649, 111713, 'fr', 'name', 'PersƩe'),
(142650, 111714, 'en', 'name', 'KTH Royal Institute of Technology');
INSERT INTO `ror_settings` VALUES
(142651, 111714, 'sv', 'name', 'Kungliga Tekniska hƶgskolan'),
(142652, 111714, 'fi', 'name', 'Kuninkaallinen teknillinen korkeakoulu'),
(142653, 111715, 'fr', 'name', 'Cancer et transplantation : physiopathologie et rƩponse thƩrapeutique'),
(142654, 111716, 'fr', 'name', 'FƩdƩration de Physico-Chimie Analytique et Biologique'),
(142655, 111717, 'fr', 'name', 'Habiter le monde'),
(142656, 111718, 'fr', 'name', 'Institut du Fer Ć  Moulin'),
(142657, 111719, 'fr', 'name', 'Laboratoire de physique des systĆØmes complexes'),
(142658, 111720, 'en', 'name', 'Department of Science and Technology of Hainan Province'),
(142659, 111720, 'zh', 'name', 'ęµ·å—ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(142660, 111721, 'fr', 'name', 'Laboratoire d''Economie, Finance, Management et Innovation'),
(142661, 111722, 'en', 'name', 'Sydney Shoulder Research Institute'),
(142662, 111723, 'en', 'name', 'Indiana University Columbus'),
(142663, 111724, 'fr', 'name', 'MolƩcules ThƩrapeutique in silico'),
(142664, 111724, 'en', 'name', 'Therapeutic Molecules in Silico'),
(142665, 111725, 'en', 'name', 'Chongqing Municipal Bureau of Human Resources and Social Security'),
(142666, 111725, 'zh', 'name', 'é‡åŗ†åø‚äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœå±€'),
(142667, 111726, 'en', 'name', 'Royal Surrey County Hospital'),
(142668, 111727, 'en', 'name', 'Maharaja Agrasen Institute of Management Studies'),
(142669, 111728, 'en', 'name', 'Nigerian Institute of Science Laboratory Technology'),
(142670, 111729, 'en', 'name', 'IMDEA Software Institute'),
(142671, 111729, 'es', 'name', 'Instituto IMDEA Software'),
(142672, 111730, 'en', 'name', 'Graduate Theological Union'),
(142673, 111731, 'de', 'name', 'Institut für Neuropathologie'),
(142674, 111731, 'en', 'name', 'Institute of Neuropathology'),
(142675, 111732, 'de', 'name', 'OTH Regensburg'),
(142676, 111733, 'en', 'name', 'Micro-Intelligence (China)'),
(142677, 111733, 'zh', 'name', 'åøøå·žå¾®äŗæę™ŗé€ ē§‘ęŠ€ęœ‰é™å…¬åø'),
(142678, 111734, 'en', 'name', 'Dewey Data Inc. (United States)'),
(142679, 111735, 'fr', 'name', 'Ɖcole FranƧaise de Rome'),
(142680, 111736, 'de', 'name', 'Institut für Medizinische Psychologie'),
(142681, 111736, 'en', 'name', 'Institute of Medical Psychology'),
(142682, 111737, 'fr', 'name', 'Centre d''Etudes Hispaniques d''Amiens'),
(142683, 111738, 'de', 'name', 'Schweizerischer Ingenieur- und Architektenverein'),
(142684, 111738, 'it', 'name', 'SocietĆ  svizzera degli ingegneri e degli architetti'),
(142685, 111738, 'fr', 'name', 'SociƩtƩ suisse des ingƩnieurs et des architectes'),
(142686, 111738, 'en', 'name', 'Swiss Society of Engineers and Architects'),
(142687, 111739, 'en', 'name', 'American Society for Nondestructive Testing'),
(142688, 111740, 'en', 'name', 'Redsea Cultural Foundation'),
(142689, 111741, 'en', 'name', 'LumiĆØre University Lyon 2'),
(142690, 111741, 'fr', 'name', 'Université Lumière Lyon 2'),
(142691, 111742, 'en', 'name', 'Cognition and Action Group'),
(142692, 111743, 'en', 'name', 'Mental Health and Public Health'),
(142693, 111743, 'fr', 'name', 'SantƩ mentale et santƩ publique'),
(142694, 111744, 'en', 'name', 'Akademi Teknik Elektromedik Andakara'),
(142695, 111745, 'en', 'name', 'fƶra forest technologies (Spain)'),
(142696, 111746, 'no_lang_code', 'name', 'Rockland Immunochemicals (United States)'),
(142697, 111747, 'en', 'name', 'Saint Meinrad Seminary and School of Theology'),
(142698, 111748, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(142699, 111748, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(142700, 111749, 'fr', 'name', 'Institut Polytechnique de Bordeaux'),
(142701, 111750, 'es', 'name', 'Corporación universitaria Antonio José de Sucre'),
(142702, 111751, 'nl', 'name', 'HuisartsenOrganisatie Oost-Gelderland'),
(142703, 111752, 'en', 'name', 'Digital Futures'),
(142704, 111753, 'fr', 'name', 'Imagerie, Cerveau et Neuropsychiatrie'),
(142705, 111753, 'en', 'name', 'Imaging, Brain, and Neuropsychiatry'),
(142706, 111754, 'en', 'name', 'Western International University'),
(142707, 111755, 'fr', 'name', 'Organisation pour la Protection des Manuscrits MƩdiƩvaux'),
(142708, 111756, 'ga', 'name', 'Cumann na nInnealtóirí'),
(142709, 111756, 'en', 'name', 'Engineers Ireland'),
(142710, 111757, 'fr', 'name', 'HƓpital Saint-Antoine'),
(142711, 111757, 'en', 'name', 'Saint Antoine Hospital'),
(142712, 111758, 'pt', 'name', 'Universidade Estadual do Rio Grande do Sul'),
(142713, 111759, 'fr', 'name', 'MƩcanismes physiopathologiques et consƩquences des calcifications cardiovasculaires'),
(142714, 111760, 'en', 'name', 'China National Knowledge Infrastructure'),
(142715, 111760, 'no_lang_code', 'name', 'China National Knowledge Infrastructure (China)'),
(142716, 111760, 'zh', 'name', 'äø­å›½ēŸ„čÆ†åŸŗē”€č®¾ę–½å·„ēØ‹'),
(142717, 111761, 'no_lang_code', 'name', 'Njala University'),
(142718, 111762, 'en', 'name', 'Amalgamated Transit Union'),
(142719, 111762, 'fr', 'name', 'Syndicat uni du transport'),
(142720, 111763, 'pt', 'name', 'Universidade Estadual do PiauĆ­'),
(142721, 111764, 'en', 'name', 'Earth Metabolome Initiative'),
(142722, 111765, 'en', 'name', 'Moorfields Eye Hospital'),
(142723, 111766, 'en', 'name', 'Big Bend National Park'),
(142724, 111766, 'es', 'name', 'Parque nacional Big Bend'),
(142725, 111767, 'fr', 'name', 'Génétique des Diabètes'),
(142726, 111768, 'en', 'name', 'Menninger Clinic'),
(142727, 111769, 'fr', 'name', 'EpidƩmiologie environnementale : impact sanitaire des pollutions'),
(142728, 111770, 'en', 'name', 'Jawzjan University'),
(142729, 111770, 'ps', 'name', 'ŲÆ Ų¬ŁˆŲ²Ų¬Ų§Ł† Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(142730, 111770, 'no_lang_code', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų¬ŁˆŲ²Ų¬Ų§Ł†'),
(142731, 111771, 'no_lang_code', 'name', 'Konyang University'),
(142732, 111771, 'ko', 'name', 'ź±“ģ–‘ėŒ€ķ•™źµ'),
(142733, 111772, 'en', 'name', 'Field Museum of Natural History'),
(142734, 111772, 'es', 'name', 'Museo Field de Historia Natural'),
(142735, 111772, 'fr', 'name', 'MusƩum field'),
(142736, 111773, 'en', 'name', 'American Federation of School Administrators'),
(142737, 111774, 'id', 'name', 'Universitas Islam Tribakti Lirboyo Kediri'),
(142738, 111775, 'en', 'name', 'Dutch Initiative on Crohn and Colitis'),
(142739, 111776, 'en', 'name', 'National Bureau of Animal Genetic Resources'),
(142740, 111776, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą¤¶ą„ ą¤†ą¤Øą„ą¤µą¤‚ą¤¶ą¤æą¤• संसाधन ą¤¬ą„ą¤Æą„‚ą¤°ą„‹'),
(142741, 111777, 'it', 'name', 'Istituto di Biometeorologia'),
(142742, 111778, 'en', 'name', 'Catalan Institute for Cultural Heritage Research'),
(142743, 111778, 'ca', 'name', 'Institut CatalĆ  de Recerca En Patrimoni Cultural'),
(142744, 111779, 'en', 'name', 'Korea Workers'' Compensation and Welfare Service'),
(142745, 111779, 'ko', 'name', 'ź·¼ė”œė³µģ§€ź³µė‹Ø'),
(142746, 111780, 'en', 'name', 'Varna University of Management'),
(142747, 111781, 'fr', 'name', 'Bassins - RƩservoirs - Ressources'),
(142748, 111782, 'en', 'name', 'National Records of Scotland'),
(142749, 111783, 'de', 'name', 'Institut für Immunologie'),
(142750, 111783, 'en', 'name', 'Institute of Immunology'),
(142751, 111784, 'nl', 'name', 'Martini Ziekenhuis'),
(142752, 111785, 'de', 'name', 'Institut für Didaktik und Ausbildungsforschung in der Medizin'),
(142753, 111785, 'en', 'name', 'Institute of Medical Education'),
(142754, 111786, 'es', 'name', 'Centro Cultural de EspaƱa en El Salvador'),
(142755, 111787, 'no_lang_code', 'name', 'Toyota Central Research and Development Laboratories (Japan)'),
(142756, 111787, 'ja', 'name', '中央研究所'),
(142757, 111788, 'fr', 'name', 'Mucoviscidose et bronchopathies chroniques : biopathologie et phƩnotype cliniques'),
(142758, 111788, 'en', 'name', 'Cystic Fibrosis and Bronchial Diseases'),
(142759, 111789, 'en', 'name', 'Australian Astronomical Optics'),
(142760, 111790, 'fr', 'name', 'Centre de Recherche sur l’ExtrĆŖme Orient de Paris – Sorbonne'),
(142761, 111790, 'en', 'name', 'Research Centre for Far Eastern Studies of the Paris-Sorbonne University'),
(142762, 111791, 'es', 'name', 'Universidad de Puerto Rico'),
(142763, 111791, 'en', 'name', 'University of Puerto Rico System'),
(142764, 111792, 'en', 'name', 'Kryachkov Novosibirsk State University of Architecture, Design and Arts'),
(142765, 111792, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹, Гизайна Šø ŠøŃŠŗŃƒŃŃŃ‚Š² имени А.Š”. ŠšŃ€ŃŃ‡ŠŗŠ¾Š²Š°'),
(142766, 111793, 'en', 'name', 'Institute of Pathology'),
(142767, 111793, 'de', 'name', 'Pathologisches Institut'),
(142768, 111794, 'en', 'name', 'Security and Defense Research Team - Intelligence, Criminality, Crisis, Cyberthreats'),
(142769, 111794, 'fr', 'name', 'Ɖquipe SĆ©curitĆ© & DĆ©fense - Renseignement, Criminologie, Crises, Cybermenaces'),
(142770, 111795, 'fr', 'name', 'Agence Nationale de SĆ©curitĆ© Sanitaire de l’Alimentation, de l’Environnement et du Travail'),
(142771, 111795, 'en', 'name', 'French Agency for Food, Environmental and Occupational Health & Safety'),
(142772, 111796, 'es', 'name', 'Universidad de Chile'),
(142773, 111796, 'en', 'name', 'University of Chile'),
(142774, 111797, 'fr', 'name', 'Neurosciences Paris-Seine'),
(142775, 111798, 'ca', 'name', 'Universitat de Picardia'),
(142776, 111798, 'en', 'name', 'University of Picardie Jules Verne'),
(142777, 111798, 'fr', 'name', 'UniversitƩ de Picardie Jules Verne'),
(142778, 111799, 'en', 'name', 'GiMaRIS Research, Inventory & Strategy Solutions (Netherlands)'),
(142779, 111800, 'en', 'name', 'Tatta Bio'),
(142780, 111801, 'en', 'name', 'DSW University of Lower Silesia'),
(142781, 111801, 'cs', 'name', 'DolnoslezskĆ” Univerzita DSW'),
(142782, 111801, 'pl', 'name', 'Uniwersytet Dolnośląski DSW'),
(142783, 111801, 'ru', 'name', 'Университет ŠŠøŠ¶Š½ŠµŠ¹ Дилезии ДДВ'),
(142784, 111801, 'uk', 'name', 'Університет ŠŠøŠ¶Š½ŃŒŠ¾Ń— Ділезії ДДВ'),
(142785, 111802, 'es', 'name', 'Tecnológico Nacional de México Campus San Martín Texmelucan'),
(142786, 111803, 'en', 'name', 'Engineers Europe'),
(142787, 111804, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization Switzerland'),
(142788, 111805, 'en', 'name', 'Acadia University'),
(142789, 111806, 'fr', 'name', 'PrƩvention et Traitement de la Perte ProtƩique Musculaire en Situation de RƩsistance'),
(142790, 111807, 'en', 'name', 'Academy of American Franciscan History'),
(142791, 111808, 'en', 'name', 'Research and Production Center of Microbiology and Virology'),
(142792, 111808, 'kk', 'name', 'ŠœŠøŠŗŃ€Š¾Š±ŠøŠ¾Š»Š¾Š³ŠøŃ және Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŃ ғылыми-өнГірістік орталығы'),
(142793, 111808, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный центр микробиологии Šø Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø'),
(142794, 111809, 'de', 'name', 'Institut für Muskuloskelettale Medizin'),
(142795, 111809, 'en', 'name', 'Institute of Musculoskeletal Medicine'),
(142796, 111810, 'en', 'name', 'National Research Centre on Mithun'),
(142797, 111811, 'en', 'name', 'ICAR Research Complex for NEH Region'),
(142798, 111812, 'en', 'name', 'Wessex Archaeology'),
(142799, 111813, 'en', 'name', 'Adolf Butenandt Institute of Physiological Chemistry, Physical Biochemistry and Cell Biology'),
(142800, 111813, 'de', 'name', 'Adolf-Butenandt-Institut für Physiologische Chemie, Physikalische Biochemie und Zellbiologie'),
(142801, 111814, 'en', 'name', 'Ministry of Internal Affairs of the Republic of Kazakhstan'),
(142802, 111814, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Республики ŠšŠ°Š·Š°Ń…стан'),
(142803, 111814, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Š†ŃˆŠŗŃ– істер министрлігі'),
(142804, 111815, 'en', 'name', 'Maharaja Agrasen Himalayan Garhwal University'),
(142805, 111816, 'en', 'name', 'Collaborative Innovation Center of Advanced Microstructures'),
(142806, 111816, 'zh', 'name', 'äŗŗå·„å¾®ē»“ęž„ē§‘å­¦äøŽęŠ€ęœÆååŒåˆ›ę–°äø­åæƒ'),
(142807, 111817, 'en', 'name', 'Sangmyung University'),
(142808, 111817, 'ko', 'name', 'ģƒėŖ…ėŒ€ķ•™źµ'),
(142809, 111818, 'fr', 'name', 'Adaptation physiologiques Ơ l''exercice et rƩadaptation Ơ l''effort'),
(142810, 111819, 'it', 'name', 'Istituto per la Valorizzazione del Legno e delle Specie Arboree'),
(142811, 111819, 'en', 'name', 'Trees and Timber Institute'),
(142812, 111820, 'en', 'name', 'Stockholm University'),
(142813, 111820, 'sv', 'name', 'Stockholms universitet'),
(142814, 111820, 'fi', 'name', 'Tukholman yliopisto'),
(142815, 111821, 'oj', 'name', 'Gakiiwe''onaning'),
(142816, 111821, 'en', 'name', 'Keweenaw Bay Indian Community'),
(142817, 111822, 'en', 'name', 'Nigerian Institute of Animal Science'),
(142818, 111823, 'en', 'name', 'Rhode Island Geological Survey'),
(142819, 111824, 'fr', 'name', 'Espaces, Nature et Culture'),
(142820, 111825, 'en', 'name', 'Peralta Community College District'),
(142821, 111826, 'fr', 'name', 'Centre d''histoire des sociƩtƩs, des sciences et des conflits'),
(142822, 111827, 'fr', 'name', 'Laboratoire d''hƩmatologie'),
(142823, 111828, 'en', 'name', 'Royal North Shore Hospital'),
(142824, 111829, 'en', 'name', 'South Central Ambulance Service NHS Foundation Trust'),
(142825, 111830, 'en', 'name', 'Ministry of Science and Technology of the People''s Republic of China'),
(142826, 111830, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½ē§‘å­¦ęŠ€ęœÆéƒØ'),
(142827, 111831, 'fr', 'name', 'Conflits, reprƩsentations et dialogues dans l''univers anglo-saxon'),
(142828, 111832, 'fr', 'name', 'OQEI - Observatoires de la qualitƩ des environnements intƩrieurs'),
(142829, 111832, 'en', 'name', 'Observatory of Indoor Air Quality'),
(142830, 111833, 'en', 'name', 'Tanzania Institute of Accountancy'),
(142831, 111834, 'en', 'name', 'Weimar University'),
(142832, 111835, 'en', 'name', 'Rutgers Cancer Institute'),
(142833, 111836, 'en', 'name', 'Ontario Tech University'),
(142834, 111837, 'de', 'name', 'Institut für Chirurgische Forschung'),
(142835, 111837, 'en', 'name', 'Institute of Surgical Research'),
(142836, 111838, 'de', 'name', 'Institut für Laboratoriumsmedizin'),
(142837, 111838, 'en', 'name', 'Institute of Laboratory Medicine'),
(142838, 111839, 'fr', 'name', 'MƩtropole du Grand Nancy'),
(142839, 111840, 'en', 'name', 'Fraunhofer Institute for Nondestructive Testing'),
(142840, 111840, 'de', 'name', 'Fraunhofer-Institut für Zerstörungsfreie Prüfverfahren'),
(142841, 111841, 'en', 'name', 'Interreg Flanders-Netherlands'),
(142842, 111841, 'nl', 'name', 'Interreg Vlaanderen-Nederland'),
(142843, 111842, 'en', 'name', 'Callaghan Innovation'),
(142844, 111843, 'en', 'name', 'Pontifical Catholic University of Chile'),
(142845, 111843, 'es', 'name', 'Pontificia Universidad Católica de Chile'),
(142846, 111844, 'en', 'name', 'Erasmus Student Network AISBL'),
(142847, 111845, 'en', 'name', 'Korea Transport Institute'),
(142848, 111845, 'ko', 'name', 'ķ•œźµ­źµķ†µģ—°źµ¬ģ›'),
(142849, 111846, 'en', 'name', 'CHA Future Medicine Research Institute'),
(142850, 111846, 'ko', 'name', 'ģ°Ø ėÆøėž˜ģ˜ķ•™ģ—°źµ¬ģ›'),
(142851, 111847, 'en', 'name', 'Information Physics Institute'),
(142852, 111848, 'en', 'name', 'Institute of Philosophy'),
(142853, 111849, 'en', 'name', 'Bonn Aachen International Center for Information Technology'),
(142854, 111850, 'en', 'name', 'Fraunhofer Institute for Ceramic Technologies and Systems'),
(142855, 111850, 'de', 'name', 'Fraunhofer-Institut für Keramische Technologien und Systeme'),
(142856, 111851, 'fr', 'name', 'Institut de Recherche MƩdias, Cultures, Communication et NumƩrique'),
(142857, 111852, 'en', 'name', 'Rashtrasant Janardhan Swami College of Pharmacy'),
(142858, 111853, 'en', 'name', 'Fraunhofer Institute for Applied and Integrated Security'),
(142859, 111853, 'de', 'name', 'Fraunhofer-Institut für Angewandte und Integrierte Sicherheit'),
(142860, 111854, 'en', 'name', 'Fraunhofer Institute for Experimental Software Engineering'),
(142861, 111854, 'de', 'name', 'Fraunhofer-Institut für Experimentelles Software Engineering'),
(142862, 111855, 'en', 'name', 'Fraunhofer Institute for Digital Media Technology'),
(142863, 111855, 'de', 'name', 'Fraunhofer-Institut für Digitale Medientechnologie'),
(142864, 111856, 'en', 'name', 'Soonchunhyang University Hospital Bucheon'),
(142865, 111856, 'ko', 'name', 'ģˆœģ²œķ–„ėŒ€ķ•™źµ ė¶€ģ† ė¶€ģ²œė³‘ģ›'),
(142866, 111857, 'en', 'name', 'Rungta College'),
(142867, 111858, 'en', 'name', 'Merantix Momentum'),
(142868, 111858, 'no_lang_code', 'name', 'Merantix Momentum (Germany)'),
(142869, 111859, 'en', 'name', 'British Columbia Centre on Substance Use'),
(142870, 111860, 'en', 'name', 'South Metropolitan Health Service'),
(142871, 111861, 'en', 'name', 'Blood Transfusion Institute of Serbia, Belgrade'),
(142872, 111861, 'sr', 'name', 'Institut za transfuziju krvi Srbije'),
(142873, 111862, 'en', 'name', 'Bioeconomy Science Institute'),
(142874, 111863, 'en', 'name', 'Gangnam Severance Hospital'),
(142875, 111863, 'ko', 'name', 'ź°•ė‚Øģ„øėøŒėž€ģŠ¤ė³‘ģ›'),
(142876, 111864, 'en', 'name', 'POLARIS: Performance analysis and Optimization of LARge Infrastructures and Systems'),
(142877, 111864, 'fr', 'name', 'POLARIS: Ɖvaluation et optimisation des performances des grandes infrastructures'),
(142878, 111865, 'fr', 'name', 'KRAKOS: Conception de couches systèmes performantes, robustes, sécurisées, flexibles, et moins énergivores'),
(142879, 111865, 'en', 'name', 'KRAKOS: Design of performance, robust, secure, flexible, and energy-efficient system software'),
(142880, 111866, 'en', 'name', 'BRI Research Institute'),
(142881, 111866, 'no_lang_code', 'name', 'BRI Research Institute (Indonesia)'),
(142882, 111867, 'en', 'name', 'Max Planck Institute for Psycholinguistics'),
(142883, 111867, 'nl', 'name', 'Max Planck Instituut voor PsycholinguĆÆstiek'),
(142884, 111867, 'de', 'name', 'Max-Planck-Institut für Psycholinguistik'),
(142885, 111868, 'en', 'name', 'Butaro Hospital'),
(142886, 111868, 'rw', 'name', 'Ibitaro bya Butaro'),
(142887, 111869, 'en', 'name', 'Centre for Latin American and Caribbean Studies'),
(142888, 111870, 'en', 'name', 'Fraunhofer Institute for Applied Polymer Research'),
(142889, 111870, 'de', 'name', 'Fraunhofer-Institut für Angewandte Polymerforschung'),
(142890, 111871, 'de', 'name', 'Ludwig Boltzmann Institut für Nanovesikuläre Präzisionsmedizin'),
(142891, 111871, 'en', 'name', 'Ludwig Boltzmann Institute for Nanovesicular Precision Medicine'),
(142892, 111872, 'en', 'name', 'Korea Labor Institute'),
(142893, 111872, 'ko', 'name', 'ķ•œźµ­ė…øė™ģ—°źµ¬ģ›'),
(142894, 111873, 'en', 'name', 'Chittagong Independent University'),
(142895, 111873, 'bn', 'name', 'ą¦šą¦æą¦Ÿą¦¾ą¦—ą¦‚ ą¦‡ą¦Øą¦”ą¦æą¦Ŗą§‡ą¦Øą§ą¦”ą§‡ą¦Øą§ą¦Ÿ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(142896, 111874, 'en', 'name', 'Fraunhofer Institute for Applied Solid State Physics'),
(142897, 111874, 'de', 'name', 'Fraunhofer-Institut für Angewandte Festkörperphysik'),
(142898, 111875, 'en', 'name', 'Shri Yashwantrao Patil Science College, Solankur'),
(142899, 111876, 'es', 'name', 'Proyecto de Justicia Mundial'),
(142900, 111876, 'en', 'name', 'World Justice Project'),
(142901, 111877, 'id', 'name', 'Sekolah Tinggi Ilmu Hukum Adhyaksa'),
(142902, 111878, 'en', 'name', 'Architecture, Culture, and Spirituality Forum'),
(142903, 111879, 'en', 'name', 'School of Advanced Study'),
(142904, 111880, 'en', 'name', 'Fraunhofer Institute for Material and Beam Technology'),
(142905, 111880, 'de', 'name', 'Fraunhofer-Institut für Werkstoff- und Strahltechnik'),
(142906, 111881, 'en', 'name', 'Eulji Medical Center'),
(142907, 111881, 'ko', 'name', 'ģ„ģ§€ėŒ€ķ•™źµģ˜ė£Œģ›'),
(142908, 111882, 'en', 'name', 'The Shakespeare Association of Korea'),
(142909, 111882, 'ko', 'name', 'ķ•œźµ­ģ…°ģµģŠ¤ķ”¼ģ–“ķ•™ķšŒ'),
(142910, 111883, 'en', 'name', 'Scion'),
(142911, 111884, 'en', 'name', 'Fraunhofer Institute for Mechatronic Systems Design'),
(142912, 111884, 'de', 'name', 'Fraunhofer-Institut für Entwurfstechnik Mechatronik'),
(142913, 111885, 'en', 'name', 'Ludwig Boltzmann Institute for Digital History'),
(142914, 111886, 'en', 'name', 'New Giza University'),
(142915, 111887, 'de', 'name', 'Medizinische Hochschule Brandenburg Theodor Fontane'),
(142916, 111888, 'en', 'name', 'Ludwig Boltzmann Institut Health Promotion Research'),
(142917, 111889, 'en', 'name', 'Seoul Medical Center'),
(142918, 111889, 'ko', 'name', 'ģ„œģšøģ˜ė£Œģ›'),
(142919, 111890, 'es', 'name', 'Instituto Iberoamericano de Derecho Constitucional'),
(142920, 111891, 'fr', 'name', 'KOPERNIC: Adapter le raisonnement pire cas Ơ diffƩrentes criticitƩs'),
(142921, 111891, 'en', 'name', 'KOPERNIC: Keeping worst case reasoning for different criticalities'),
(142922, 111892, 'en', 'name', 'National Medical Center'),
(142923, 111892, 'ko', 'name', 'źµ­ė¦½ģ¤‘ģ•™ģ˜ė£Œģ›'),
(142924, 111893, 'en', 'name', 'Fraunhofer Institute for Telecommunications, Heinrich Hertz Institute'),
(142925, 111893, 'de', 'name', 'Fraunhofer-Institut für Nachrichtentechnik, Heinrich-Hertz-Institut'),
(142926, 111894, 'en', 'name', 'Soonchunhyang University'),
(142927, 111894, 'ko', 'name', 'ģˆœģ²œķ–„ėŒ€ķ•™źµ'),
(142928, 111895, 'en', 'name', 'Fraunhofer Institute for Translational Medicine and Pharmacology'),
(142929, 111895, 'de', 'name', 'Fraunhofer-Institut für Translationale Medizin und Pharmakologie'),
(142930, 111896, 'en', 'name', 'Kangbuk Samsung Hospital'),
(142931, 111896, 'ko', 'name', '강북삼성병원'),
(142932, 111897, 'en', 'name', 'CHA University Bundang Medical Center'),
(142933, 111897, 'ko', 'name', '분당차병원'),
(142934, 111898, 'en', 'name', 'MAVERICK: Models and Algorithms for Visualization and Rendering'),
(142935, 111898, 'fr', 'name', 'MAVERICK: ModĆØles et Algorithmes pour la Visualisation et le Rendu'),
(142936, 111899, 'en', 'name', 'Center for Volcanology and Geological Hazard Mitigation'),
(142937, 111899, 'id', 'name', 'Pusat Vulkanologi dan Mitigasi Bencana Geologi'),
(142938, 111900, 'en', 'name', 'Binyaminu Usman Polytechnic'),
(142939, 111901, 'en', 'name', 'Pacific Edge Limited (New Zealand)'),
(142940, 111902, 'fr', 'name', 'PICUBE: Les assistants Ć  la dĆ©monstration au cœur du raisonnement mathĆ©matique'),
(142941, 111902, 'en', 'name', 'PICUBE: Proof assistants at the heart of mathematical reasoning'),
(142942, 111903, 'en', 'name', 'Southern Coastal Research Vessel Fleet'),
(142943, 111904, 'en', 'name', 'Fraunhofer Italia Research'),
(142944, 111905, 'id', 'name', 'STMIK Borneo Internasional'),
(142945, 111905, 'en', 'name', 'Sekolah Tinggi Manajemen Informatika & Komputer Borneo Internasional'),
(142946, 111906, 'en', 'name', 'iSea'),
(142947, 111907, 'en', 'name', 'Pusan National University Yangsan Hospital'),
(142948, 111907, 'ko', 'name', 'ģ–‘ģ‚°ė¶€ģ‚°ėŒ€ķ•™źµė³‘ģ›'),
(142949, 111908, 'en', 'name', 'National Institutes of Applied Research'),
(142950, 111908, 'zh', 'name', 'č²”åœ˜ę³•äŗŗåœ‹å®¶åÆ¦é©—ē ”ē©¶é™¢'),
(142951, 111909, 'en', 'name', 'Wonkwang University Hospital'),
(142952, 111909, 'ko', 'name', 'ģ›ź“‘ėŒ€ķ•™źµė³‘ģ›'),
(142953, 111910, 'en', 'name', 'Karl von Vogelsang Institute'),
(142954, 111910, 'de', 'name', 'Karl von Vogelsang-Institut'),
(142955, 111911, 'en', 'name', 'Earth Sciences Research Organization'),
(142956, 111911, 'id', 'name', 'Organisasi Riset Kebumian dan Maritim'),
(142957, 111912, 'en', 'name', 'Sitabai Thite College of Pharmacy, Shirur'),
(142958, 111913, 'es', 'name', 'Instituto Superior Tecnológico Riobamba'),
(142959, 111914, 'en', 'name', 'Cachar College'),
(142960, 111915, 'en', 'name', 'VIB.AI'),
(142961, 111916, 'en', 'name', 'Fraunhofer Institute for Computer Graphics Research'),
(142962, 111916, 'de', 'name', 'Fraunhofer-Institut für Graphische Datenverarbeitung'),
(142963, 111917, 'en', 'name', 'Eulji University Gangnam Eulji Medical Center'),
(142964, 111917, 'ko', 'name', 'ź°•ė‚Øģ„ģ§€ėŒ€ķ•™źµė³‘ģ›'),
(142965, 111918, 'fr', 'name', 'Fondation du Barreau du QuƩbec'),
(142966, 111919, 'en', 'name', 'Nanotechnology and Material Research Organization'),
(142967, 111919, 'id', 'name', 'Organisasi Riset Nanoteknologi dan Material'),
(142968, 111920, 'en', 'name', 'Government Administration, Economy, and Public Welfare Research Organization'),
(142969, 111920, 'id', 'name', 'Organisasi Riset Tata Kelola Pemerintahan, Ekonomi, dan Kesejahteraan Masyarakat'),
(142970, 111921, 'en', 'name', 'EconCore'),
(142971, 111921, 'no_lang_code', 'name', 'EconCore (Belgium)'),
(142972, 111922, 'en', 'name', 'Health-RI'),
(142973, 111922, 'nl', 'name', 'Stichting Health-RI'),
(142974, 111923, 'en', 'name', 'Academy of Applied Studies Southern Serbia'),
(142975, 111923, 'sr', 'name', 'Akademija strukovnih studija Južna Srbija'),
(142976, 111924, 'en', 'name', 'Brooks Sports, Inc.'),
(142977, 111924, 'no_lang_code', 'name', 'Brooks Sports, Inc. (United States)'),
(142978, 111925, 'en', 'name', 'The Seoul Institute'),
(142979, 111925, 'ko', 'name', 'ģ„œģšøģ—°źµ¬ģ›'),
(142980, 111926, 'en', 'name', 'Higher Institute of Medical Sciences and Technologies'),
(142981, 111926, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖ Ų§Ł„Ų·ŲØŁŠŲ©'),
(142982, 111927, 'en', 'name', 'AREA Science Park'),
(142983, 111928, 'en', 'name', 'Korea Institute of Public Finance'),
(142984, 111928, 'ko', 'name', 'ķ•œźµ­ģ”°ģ„øģž¬ģ •ģ—°źµ¬ģ›'),
(142985, 111929, 'en', 'name', 'Banda University of Agriculture and Technology, Banda'),
(142986, 111929, 'hi', 'name', 'बांदा ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(142987, 111930, 'en', 'name', 'Korea Research Council for Industrial Science and Technology'),
(142988, 111930, 'kr', 'name', 'ģ‚°ģ—…źø°ģˆ ģ—°źµ¬ķšŒ'),
(142989, 111931, 'en', 'name', 'BlueHalo (United States)'),
(142990, 111932, 'es', 'name', 'AM&C Colombia SAS (Colombia)'),
(142991, 111933, 'en', 'name', 'Korea Electrotechnology Research Institute'),
(142992, 111933, 'ko', 'name', 'ķ•œźµ­ģ „źø°ģ—°źµ¬ģ›'),
(142993, 111934, 'en', 'name', 'Fraunhofer Institute for Biomedical Engineering'),
(142994, 111934, 'de', 'name', 'Fraunhofer-Institut für Biomedizinische Technik'),
(142995, 111935, 'en', 'name', 'Arc-Team'),
(142996, 111935, 'no_lang_code', 'name', 'Arc-Team (Italy)'),
(142997, 111936, 'en', 'name', 'African Union Commission'),
(142998, 111937, 'en', 'name', 'The Catholic University of Korea Seoul St. Mary''s Hospital'),
(142999, 111937, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ„œģšøģ„±ėŖØė³‘ģ›'),
(143000, 111938, 'en', 'name', 'Digital Umuganda'),
(143001, 111938, 'no_lang_code', 'name', 'Digital Umuganda (Rwanda)'),
(143002, 111939, 'en', 'name', 'Korean Educational Development Institute'),
(143003, 111939, 'ko', 'name', 'ķ•œźµ­źµģœ”ź°œė°œģ›'),
(143004, 111940, 'en', 'name', 'Quantia Consulting'),
(143005, 111940, 'no_lang_code', 'name', 'Quantia Consulting (Italy)'),
(143006, 111941, 'en', 'name', 'All India Institute of Medical Sciences'),
(143007, 111942, 'en', 'name', 'Mansoura National University'),
(143008, 111942, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŲµŁˆŲ±Ų© Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(143009, 111943, 'en', 'name', 'STATIFY: Bayesian and extreme value statistical models for structured and high dimensional data'),
(143010, 111943, 'fr', 'name', 'STATIFY: Modèles statistiques bayésiens et des valeurs extrêmes pour données structurées et de grande dimension'),
(143011, 111944, 'de', 'name', 'Fraunhofer Institut für Mikrotechnik und Mikrosysteme'),
(143012, 111944, 'en', 'name', 'Fraunhofer Institute for Microengineering and Microsystems'),
(143013, 111945, 'en', 'name', 'Child and Family Research Institute'),
(143014, 111946, 'no_lang_code', 'name', 'Roche (Japan)'),
(143015, 111946, 'ja', 'name', '中外製薬'),
(143016, 111947, 'en', 'name', 'Fraunhofer Institute for Intelligent Analysis and Information Systems'),
(143017, 111947, 'de', 'name', 'Fraunhofer-Institut für Intelligente Analyse- und Informationssysteme'),
(143018, 111948, 'en', 'name', 'PROSECCO: Programming securely with cryptography'),
(143019, 111949, 'en', 'name', 'MongoDB (United States)'),
(143020, 111950, 'en', 'name', 'Hallym University Chuncheon Sacred Heart Hospital'),
(143021, 111950, 'ko', 'name', 'ķ•œė¦¼ėŒ€ķ•™źµ ģ¶˜ģ²œģ„±ģ‹¬ė³‘ģ›'),
(143022, 111951, 'en', 'name', 'Rungta College of Engineering and Technology'),
(143023, 111952, 'en', 'name', 'Fraunhofer Institute for Integrated Systems and Device Technology'),
(143024, 111952, 'de', 'name', 'Fraunhofer-Institut für Integrierte Systeme und Bauelementetechnologie'),
(143025, 111953, 'bs', 'name', 'Internacionalni univerzitet u Sarajevu'),
(143026, 111953, 'en', 'name', 'International University of Sarajevo'),
(143027, 111953, 'hr', 'name', 'Međunarodno sveučiliÅ”te u Sarajevu'),
(143028, 111953, 'tr', 'name', 'Uluslararası Saraybosna Üniversitesi'),
(143029, 111954, 'en', 'name', 'Mermaid Beach Radiology'),
(143030, 111955, 'en', 'name', 'Fraunhofer Institute for Industrial Engineering'),
(143031, 111955, 'de', 'name', 'Fraunhofer-Institut für Arbeitswirtschaft und Organisation IAO'),
(143032, 111956, 'en', 'name', 'Admas University'),
(143033, 111957, 'en', 'name', 'Kyung Hee University'),
(143034, 111957, 'ko', 'name', 'ź²½ķ¬ėŒ€ķ•™źµ'),
(143035, 111958, 'en', 'name', 'Actors'' Equity Association'),
(143036, 111959, 'en', 'name', 'National Centre for Foreign Animal Disease'),
(143037, 111960, 'en', 'name', 'Fraunhofer Institute for Applied Information Technology'),
(143038, 111960, 'de', 'name', 'Fraunhofer-Institut für Angewandte Informationstechnik'),
(143039, 111961, 'en', 'name', 'Ministry of Education'),
(143040, 111961, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ źµģœ”ė¶€'),
(143041, 111962, 'es', 'name', 'Instituto Paraguayo de Derecho Constitucional'),
(143042, 111962, 'en', 'name', 'Paraguayan Institute of Constitutional Law'),
(143043, 111963, 'en', 'name', 'Al-Shamal Private University'),
(143044, 111963, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الؓمال الخاصة'),
(143045, 111964, 'en', 'name', 'University of Greifswald'),
(143046, 111964, 'de', 'name', 'UniversitƤt Greifswald'),
(143047, 111965, 'en', 'name', 'National Deuteration Facility'),
(143048, 111966, 'es', 'name', 'Universidad de Delaware'),
(143049, 111966, 'en', 'name', 'University of Delaware'),
(143050, 111966, 'fr', 'name', 'UniversitƩ du Delaware'),
(143051, 111967, 'en', 'name', 'Institute of Nuclear Medicine and Oncology Lahore'),
(143052, 111968, 'en', 'name', 'Korea Institute of Finance'),
(143053, 111968, 'ko', 'name', 'ķ•œźµ­źøˆģœµģ—°źµ¬ģ›'),
(143054, 111969, 'en', 'name', 'Institute of Languages, Cultures and Societies'),
(143055, 111970, 'en', 'name', 'Fraunhofer Research Institution for Individualized and Cell-Based Medical Engineering'),
(143056, 111970, 'de', 'name', 'Fraunhofer-Einrichtung für Individualisierte und Zellbasierte Medizintechnik'),
(143057, 111971, 'pt', 'name', 'Agrupamento de Escolas de Briteiros'),
(143058, 111972, 'en', 'name', 'Primient'),
(143059, 111972, 'no_lang_code', 'name', 'Primient (United States)'),
(143060, 111973, 'id', 'name', 'STIT Insan Kamil Bogor'),
(143061, 111974, 'id', 'name', 'Politeknik Kesehatan Permata Indonesia Yogyakarta'),
(143062, 111975, 'en', 'name', 'International Federation of Digital Seismograph Networks'),
(143063, 111976, 'en', 'name', 'Al Yarmouk University College'),
(143064, 111976, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŁŠŲ±Ł…ŁˆŁƒ الجامعة'),
(143065, 111977, 'en', 'name', 'Ludwig Boltzmann Institute for Rehabilitation Research'),
(143066, 111978, 'en', 'name', 'Gachon University'),
(143067, 111978, 'ko', 'name', 'ź°€ģ²œėŒ€ķ•™źµ'),
(143068, 111979, 'en', 'name', 'Virginia Energy'),
(143069, 111980, 'en', 'name', 'National Center for Meteorology'),
(143070, 111980, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ للارصاد'),
(143071, 111981, 'en', 'name', 'National Security Research Institute'),
(143072, 111981, 'ko', 'name', 'źµ­ź°€ė³“ģ•ˆźø°ģˆ ģ—°źµ¬ģ†Œ'),
(143073, 111982, 'de', 'name', 'Hochschule für Logopädie Ostschweiz'),
(143074, 111983, 'en', 'name', 'Korea Institute of Geoscience and Mineral Resources'),
(143075, 111983, 'ko', 'name', 'ķ•œźµ­ģ§€ģ§ˆģžģ›ģ—°źµ¬ģ›'),
(143076, 111984, 'no_lang_code', 'name', 'Samsung (South Korea)'),
(143077, 111984, 'ko', 'name', '삼성'),
(143078, 111985, 'en', 'name', 'Korea Institute of Machinery & Materials'),
(143079, 111985, 'ko', 'name', 'ķ•œźµ­źø°ź³„ģ—°źµ¬ģ›'),
(143080, 111986, 'en', 'name', 'Eindhoven University of Technology'),
(143081, 111986, 'nl', 'name', 'Technische Universiteit Eindhoven'),
(143082, 111987, 'en', 'name', 'Australian Nuclear Science and Technology Organisation'),
(143083, 111988, 'en', 'name', 'Australian University of Theology'),
(143084, 111989, 'en', 'name', 'Bloomgarden, Ostroff & Associates'),
(143085, 111990, 'en', 'name', 'Measurement Standards Laboratory of New Zealand'),
(143086, 111991, 'no_lang_code', 'name', 'Shandong Shanke Intelligent Technology Co., Ltd'),
(143087, 111992, 'en', 'name', 'Korea Society of Computer Information'),
(143088, 111992, 'ko', 'name', 'ķ•œźµ­ģ»“ķ“Øķ„°ģ •ė³“ķ•™ķšŒ'),
(143089, 111993, 'en', 'name', 'Fraunhofer Institute for Energy Economics and Energy System Technology'),
(143090, 111993, 'de', 'name', 'Fraunhofer-Institut für Energiewirtschaft und Energiesystemtechnik'),
(143091, 111994, 'en', 'name', 'Korea Maritime Institute'),
(143092, 111994, 'ko', 'name', 'ķ•œźµ­ķ•“ģ–‘ģˆ˜ģ‚°ź°œė°œģ›'),
(143093, 111995, 'en', 'name', 'Fraunhofer Austria'),
(143094, 111996, 'es', 'name', 'Centro de Investigaciones y Servicios Ambientales Ecovida'),
(143095, 111997, 'en', 'name', 'Providence Health Care Research Institute'),
(143096, 111998, 'en', 'name', 'Institute of Historical Research'),
(143097, 111999, 'en', 'name', 'Maharaja Jitendra Narayan Medical College & Hospital'),
(143098, 112000, 'en', 'name', 'Channel Islands National Park'),
(143099, 112000, 'es', 'name', 'Parque nacional Islas del Canal'),
(143100, 112001, 'en', 'name', 'Institute for Social Sciences and Humanities - ISSH (Iran Academia)'),
(143101, 112002, 'en', 'name', 'Center for Language Studies'),
(143102, 112003, 'en', 'name', 'Inha University'),
(143103, 112003, 'ko', 'name', 'ģøķ•˜ėŒ€ķ•™źµ'),
(143104, 112004, 'en', 'name', 'Fraunhofer Institute for Environmental, Safety and Energy Technology UMSICHT'),
(143105, 112004, 'de', 'name', 'Fraunhofer-Institut für Umwelt-, Sicherheits- und Energietechnik UMSICHT'),
(143106, 112005, 'en', 'name', 'CHA Medical Center'),
(143107, 112005, 'ko', 'name', 'ģ°Ø ģ˜ė£Œģ›'),
(143108, 112006, 'id', 'name', 'Pusat Penelitian Karet Indonesia'),
(143109, 112007, 'en', 'name', 'MORPHEO: Capture and Analysis of Shapes in Motion'),
(143110, 112007, 'fr', 'name', 'MORPHEO: Capture et Analyses de Formes en Mouvement'),
(143111, 112008, 'en', 'name', 'Death Valley National Park'),
(143112, 112008, 'es', 'name', 'Parque nacional del Valle de la Muerte'),
(143113, 112009, 'tr', 'name', 'PTT'),
(143114, 112010, 'en', 'name', 'University of Malta'),
(143115, 112011, 'en', 'name', 'Maharana Pratap Horticultural University, Karnal'),
(143116, 112011, 'hi', 'name', 'महाराणा ą¤Ŗą„ą¤°ą¤¤ą¤¾ą¤Ŗ ą¤‰ą¤¦ą„ą¤Æą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, करनाल'),
(143117, 112012, 'en', 'name', 'Bank of Korea'),
(143118, 112012, 'ko', 'name', 'ķ•œźµ­ģ€ķ–‰'),
(143119, 112013, 'en', 'name', 'SNUH SMG-SNU Boramae Medical Center'),
(143120, 112013, 'ko', 'name', 'ė³“ė¼ė§¤ė³‘ģ›'),
(143121, 112014, 'en', 'name', 'Eulji University'),
(143122, 112014, 'ko', 'name', 'ģ„ģ§€ėŒ€ķ•™źµ'),
(143123, 112015, 'en', 'name', 'Canterbury Institute of Management'),
(143124, 112016, 'fr', 'name', 'ANTIQUE: Analyse Statique par InterprƩtation Abstraite'),
(143125, 112016, 'en', 'name', 'ANTIQUE: Static Analysis by Abstract Interpretation'),
(143126, 112017, 'de', 'name', 'Bundesministerium für Wirtschaft und Energie'),
(143127, 112017, 'en', 'name', 'Federal Ministry for Economic Affairs and Energy'),
(143128, 112018, 'pl', 'name', 'Uniwersytet Pomorski w Słupsku'),
(143129, 112019, 'en', 'name', 'Ludwig Boltzmann Institute for Retinology and Biomicroscopic Laser Surgery'),
(143130, 112020, 'en', 'name', 'SciFormat Publishing Inc.'),
(143131, 112020, 'no_lang_code', 'name', 'SciFormat Publishing Inc. (Canada)'),
(143132, 112021, 'en', 'name', 'Fraunhofer Institute for Wind Energy Systems'),
(143133, 112021, 'de', 'name', 'Fraunhofer-Institut für Windenergiesysteme'),
(143134, 112022, 'de', 'name', 'Wiener Forum für Demokratie und Menschenrechte'),
(143135, 112023, 'en', 'name', 'Fraunhofer Institute for Applied Optics and Precision Engineering'),
(143136, 112023, 'de', 'name', 'Fraunhofer-Institut für Angewandte Optik und Feinmechanik'),
(143137, 112024, 'en', 'name', 'NOAA Office of Space Weather Observations'),
(143138, 112025, 'en', 'name', 'Fraunhofer Institute for Physical Measurement Techniques'),
(143139, 112025, 'de', 'name', 'Fraunhofer-Institut für Physikalische Messtechnik'),
(143140, 112026, 'sv', 'name', 'Fraunhofer Chalmers Centrum fƶr Industrimatematik'),
(143141, 112026, 'en', 'name', 'Fraunhofer Chalmers Research Centre for Industrial Mathematics'),
(143142, 112027, 'en', 'name', 'Telesto Energy'),
(143143, 112027, 'no_lang_code', 'name', 'Telesto Energy (Singapore)'),
(143144, 112028, 'en', 'name', 'Scientific Research International Institute of Postgraduate Education'),
(143145, 112028, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ послеГипломного Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(143146, 112028, 'kk', 'name', 'Ғылыми Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ Єалықаралық Гипломнан кейінгі білім Š±ŠµŃ€Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(143147, 112029, 'en', 'name', 'Korea Research Institute for Human Settlements'),
(143148, 112029, 'ko', 'name', '국토연구원'),
(143149, 112030, 'pt', 'name', 'Centro de Investigação em Saúde de Angola'),
(143150, 112030, 'en', 'name', 'Health Research Centre of Angola'),
(143151, 112031, 'no_lang_code', 'name', 'Fraunhofer Singapore'),
(143152, 112032, 'en', 'name', 'Aier Eye Hospital Group (China)'),
(143153, 112032, 'zh', 'name', 'ēˆ±å°”ēœ¼ē§‘åŒ»é™¢é›†å›¢'),
(143154, 112033, 'es', 'name', 'Universidad Privada del Este'),
(143155, 112034, 'en', 'name', 'Brazilian Society of Bone Marrow Transplantation'),
(143156, 112034, 'pt', 'name', 'Sociedade Brasileira de Terapia Celular e Transplante de Medula Ɠssea'),
(143157, 112035, 'en', 'name', 'Boyce Thompson Institute'),
(143158, 112036, 'en', 'name', 'AntlerA Therapeutics, Inc. (United States)'),
(143159, 112037, 'en', 'name', 'Fraunhofer Portugal Research'),
(143160, 112038, 'en', 'name', 'NSW Ambulance'),
(143161, 112039, 'de', 'name', 'Ludwig Boltzmann Institut für Epilepsie und Neuromuskuläre Erkrankungen'),
(143162, 112040, 'en', 'name', 'COMMEDIA: Computational mathematics for bio-medical applications'),
(143163, 112040, 'fr', 'name', 'COMMEDIA: MathƩmatiques et calcul scientifique pour les applications bio-mƩdicales'),
(143164, 112041, 'id', 'name', 'Universitas Al Washliyah Darussalam Banda Aceh'),
(143165, 112042, 'de', 'name', 'Ludwig Boltzmann Institut für Netzwerkmedizin an der Universität Wien'),
(143166, 112042, 'en', 'name', 'Ludwig Boltzmann Institute for Network Medicine at the University of Vienna'),
(143167, 112043, 'en', 'name', 'Institute of English Studies'),
(143168, 112044, 'fr', 'name', 'Institut de Recherche sur les Systèmes Nucléaires pour la production d''Energie bas carbone'),
(143169, 112045, 'fr', 'name', 'MUSCLEES: Compréhension mathématique multi-échelles d''écosystèmes vivants complexes avec structures émergentes'),
(143170, 112045, 'en', 'name', 'MUSCLEES: Mathematical Understanding across Scales of Complex Living Ecosystems with Emerging Structures'),
(143171, 112046, 'en', 'name', 'ALMANACH: Automatic Language Modelling and Analysis & Computational Humanities'),
(143172, 112046, 'fr', 'name', 'ALMANACH: ModƩlisation et analyse linguistique automatique et humanitƩs computationnelles'),
(143173, 112047, 'en', 'name', 'The Catholic University of Korea St. Vincent''s Hospital'),
(143174, 112047, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ„±ė¹ˆģ„¼ķŠøė³‘ģ›'),
(143175, 112048, 'en', 'name', 'Society for Southeast Asian Herpetology'),
(143176, 112049, 'en', 'name', 'Institute Academy for Precision Measurment Science and Technology, CAS'),
(143177, 112049, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē²¾åÆ†ęµ‹é‡ē§‘å­¦äøŽęŠ€ęœÆåˆ›ę–°ē ”ē©¶é™¢'),
(143178, 112050, 'en', 'name', 'Hamzanwadi University'),
(143179, 112050, 'id', 'name', 'Universitas Hamzanwadi'),
(143180, 112051, 'en', 'name', 'MIMESIS: Computational Anatomy and Simulation for Medicine'),
(143181, 112051, 'fr', 'name', 'MIMESIS: Simulation mƩdicale guidƩe par les donnƩes'),
(143182, 112052, 'fr', 'name', 'CONVECS: Construction de systèmes concurrents vérifiés'),
(143183, 112052, 'en', 'name', 'CONVECS: Construction of verified concurrent systems'),
(143184, 112053, 'en', 'name', 'Wuhan Institute of Physics and Mathematics'),
(143185, 112053, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę­¦ę±‰ē‰©ē†äøŽę•°å­¦ē ”ē©¶ę‰€'),
(143186, 112054, 'en', 'name', 'Pearl River Fisheries Research Institute'),
(143187, 112054, 'zh', 'name', 'ē ę±Ÿę°“äŗ§ē ”ē©¶ę‰€'),
(143188, 112055, 'pt', 'name', 'Escola Nacional de Administração Pública'),
(143189, 112056, 'en', 'name', 'Donders Centre for Neuroscience'),
(143190, 112057, 'id', 'name', 'Organisasi Riset Ilmu Pengetahuan Sosial dan Humaniora'),
(143191, 112057, 'en', 'name', 'Social Sciences and Humanities Research Organization'),
(143192, 112058, 'en', 'name', 'Yangtze River Fisheries Research Institute'),
(143193, 112058, 'zh', 'name', 'äø­å›½ę°“äŗ§ē§‘å­¦ē ”ē©¶é™¢é•æę±Ÿę°“äŗ§ē ”ē©¶ę‰€'),
(143194, 112059, 'en', 'name', 'Eulji University Nowon Eulji Medical Center'),
(143195, 112059, 'ko', 'name', 'ė…øģ›ģ„ģ§€ėŒ€ķ•™źµė³‘ģ›'),
(143196, 112060, 'en', 'name', 'Fraunhofer Institute for Microstructure of Materials and Systems'),
(143197, 112060, 'de', 'name', 'Fraunhofer-Institut für Mikrostruktur von Werkstoffen und Systemen IMWS'),
(143198, 112061, 'en', 'name', 'Kyung Hee University East-West Neo Medical Center'),
(143199, 112061, 'ko', 'name', 'ź²½ķ¬ėŒ€ķ•™źµ ė™ģ„œģ‹ ģ˜ķ•™ė³‘ģ›'),
(143200, 112062, 'en', 'name', 'Soonchunhyang University Hospital Cheonan'),
(143201, 112062, 'ko', 'name', 'ģˆœģ²œķ–„ėŒ€ķ•™źµ ģ²œģ•ˆė³‘ģ›'),
(143202, 112063, 'en', 'name', 'Michael Smith Health Research BC'),
(143203, 112064, 'en', 'name', 'Morling College'),
(143204, 112065, 'id', 'name', 'Poltekkes Kemenkes Bandung'),
(143205, 112066, 'de', 'name', 'Ludwig Boltzmann Institut für Traumatologie – Das Forschungszentrum in Kooperation mit der AUVA'),
(143206, 112066, 'en', 'name', 'Ludwig Boltzmann Institute for Traumatology, The Research Center in Cooperation with AUVA'),
(143207, 112067, 'en', 'name', 'Fraunhofer Institute for Laser Technology'),
(143208, 112067, 'de', 'name', 'Fraunhofer-Institut für Lasertechnik'),
(143209, 112068, 'en', 'name', 'Dnepropetrovsk State Institute of Physical Culture and Sport'),
(143210, 112068, 'uk', 'name', 'ŠŸŃ€ŠøŠ“Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø і ŃŠæŠ¾Ń€Ń‚Ńƒ'),
(143211, 112069, 'en', 'name', 'State Key Laboratory of Geodesy and Earth''s Dynamics'),
(143212, 112069, 'zh', 'name', 'å¤§åœ°ęµ‹é‡äøŽåœ°ēƒåŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(143213, 112070, 'de', 'name', 'Leibniz-Institut für Friedens- und Konfliktforschung'),
(143214, 112070, 'en', 'name', 'Peace Research Institute Frankfurt'),
(143215, 112071, 'en', 'name', 'Khwaja Moinuddin Chishti Language University, Lucknow, U.P.'),
(143216, 112071, 'hi', 'name', 'ą¤–ą¤¼ą„ą¤µą¤¾ą¤œą¤¾ ą¤®ą„ą¤ˆą¤Øą„ą¤¦ą„ą¤¦ą„€ą¤Ø ą¤šą¤æą¤¶ą„ą¤¤ą„€ भाषा ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤²ą¤–ą¤Øą¤Š, ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶'),
(143217, 112072, 'en', 'name', 'Bavarian Academy of Sciences and Humanities'),
(143218, 112072, 'de', 'name', 'Bayerische Akademie der Wissenschaften'),
(143219, 112073, 'en', 'name', 'Gyeonggi Research Institute'),
(143220, 112073, 'ko', 'name', '경기연구원'),
(143221, 112074, 'no_lang_code', 'name', 'Berkshire Hathaway (United States)'),
(143222, 112075, 'es', 'name', 'Generalidad de CataluƱa'),
(143223, 112075, 'ca', 'name', 'Generalitat de Catalunya'),
(143224, 112075, 'en', 'name', 'Government of Catalonia'),
(143225, 112075, 'eu', 'name', 'Kataluniako Generalitatea'),
(143226, 112076, 'en', 'name', 'NOAA Office of Low Earth Orbit Observations'),
(143227, 112077, 'de', 'name', 'Plattform zeithistorischer politischer Archive'),
(143228, 112078, 'en', 'name', 'New Horizon College of Engineering'),
(143229, 112079, 'en', 'name', 'Aeronautics and Space Research Organization'),
(143230, 112079, 'id', 'name', 'Organisasi Riset Penerbangan dan Antariksa'),
(143231, 112080, 'en', 'name', 'Sasurie College of Arts and Science'),
(143232, 112081, 'fr', 'name', 'VALDA: Valeur Ơ partir des donnƩes'),
(143233, 112081, 'en', 'name', 'VALDA: Value from Data'),
(143234, 112082, 'de', 'name', 'Ludwig Boltzmann Institut für digitale Gesundheit und Prävention'),
(143235, 112082, 'en', 'name', 'Ludwig Boltzmann Institute for Digital Health and Prevention'),
(143236, 112083, 'en', 'name', 'The Catholic University of Korea Yeouido St. Mary''s Hospital'),
(143237, 112083, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ—¬ģ˜ė„ģ„±ėŖØė³‘ģ›'),
(143238, 112084, 'en', 'name', 'Eulji University Uijeongbu Eulji Medical Center'),
(143239, 112084, 'ko', 'name', 'ģ˜ģ •ė¶€ģ„ģ§€ėŒ€ķ•™źµė³‘ģ›'),
(143240, 112085, 'en', 'name', 'Fraunhofer Institute for Algorithms and Scientific Computing'),
(143241, 112085, 'de', 'name', 'Fraunhofer-Institut für Algorithmen und Wissenschaftliches Rechnen SCAI'),
(143242, 112086, 'en', 'name', 'Soonchunhyang University Hospital Seoul'),
(143243, 112086, 'ko', 'name', 'ģˆœģ²œķ–„ėŒ€ķ•™źµ ģ„œģšøė³‘ģ›'),
(143244, 112087, 'en', 'name', 'St. Mother Theresa Engineering College'),
(143245, 112088, 'de', 'name', 'Kreisky-Archiv'),
(143246, 112089, 'en', 'name', 'Maryhill School of Theology'),
(143247, 112090, 'en', 'name', 'Yeungnam University'),
(143248, 112090, 'ko', 'name', 'ģ˜ė‚ØėŒ€ķ•™źµ'),
(143249, 112091, 'en', 'name', 'TIB – Leibniz Information Centre for Science and Technology and University Library'),
(143250, 112091, 'de', 'name', 'Technische Informationsbibliothek (TIB)'),
(143251, 112092, 'en', 'name', 'Australian Institute of Marine Science'),
(143252, 112093, 'en', 'name', 'WILLOW: Embodied computer vision'),
(143253, 112093, 'fr', 'name', 'WILLOW: Vision par ordinateur incarnƩe'),
(143254, 112094, 'en', 'name', 'Guru Nanak Institute of Technology'),
(143255, 112095, 'en', 'name', 'DYOGENE: Dynamics of Geometric Networks'),
(143256, 112096, 'en', 'name', 'Premium Serums & Vaccines Pvt. Ltd. (India)'),
(143257, 112097, 'en', 'name', 'NOAA Office of Geostationary Earth Orbit Observations'),
(143258, 112098, 'en', 'name', 'Ministry of Patriots and Veterans Affairs'),
(143259, 112098, 'ko', 'name', 'źµ­ź°€ė³“ķ›ˆė¶€'),
(143260, 112099, 'en', 'name', 'Korea Institute for Curriculum and Evaluation'),
(143261, 112099, 'ko', 'name', 'ķ•œźµ­źµģœ”ź³¼ģ •ķ‰ź°€ģ›'),
(143262, 112100, 'en', 'name', 'AgResearch'),
(143263, 112101, 'fr', 'name', 'ARGO: Apprentissage, graphes et optimisation distribuƩe'),
(143264, 112101, 'en', 'name', 'ARGO: Learning, graphs and distributed optimization'),
(143265, 112102, 'en', 'name', 'United States Air Force Office of Scientific Research'),
(143266, 112103, 'en', 'name', 'Dnipro State Medical University'),
(143267, 112103, 'uk', 'name', 'Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(143268, 112104, 'en', 'name', 'Fraunhofer Information Center for Planning and Building'),
(143269, 112104, 'de', 'name', 'Fraunhofer-Informationszentrum Raum und Bau'),
(143270, 112105, 'en', 'name', 'Samsung Medical Center'),
(143271, 112105, 'ko', 'name', 'ģ‚¼ģ„±ģ˜ė£Œģ›'),
(143272, 112106, 'en', 'name', 'Fraunhofer Institute for Photonic Microsystems'),
(143273, 112106, 'de', 'name', 'Fraunhofer-Institut für Photonische Mikrosysteme'),
(143274, 112107, 'en', 'name', 'International Center for Bamboo and Rattan'),
(143275, 112107, 'zh', 'name', 'å›½é™…ē«¹č—¤äø­åæƒ'),
(143276, 112108, 'fr', 'name', 'CASCADE: Conception et Analyse de Systèmes pour la Confidentialité et l''Authentification de Données et d''Entitées'),
(143277, 112108, 'en', 'name', 'CASCADE: Construction and Analysis of Systems for Confidentiality and Authenticity of Data and Entities'),
(143278, 112109, 'en', 'name', 'TRIPOP: Modeling, Simulation and Control of Nonsmooth Dynamical Systems'),
(143279, 112109, 'fr', 'name', 'TRIPOP: Modélisation, simulation et commande des systèmes dynamiques non lisses'),
(143280, 112110, 'de', 'name', 'Ludwig Boltzmann Institut für Kriegsfolgenforschung'),
(143281, 112110, 'en', 'name', 'Ludwig Boltzmann Institute for Research on Consequences of War'),
(143282, 112111, 'en', 'name', 'Fraunhofer Institute for Communication, Information Processing and Ergonomics'),
(143283, 112111, 'de', 'name', 'Fraunhofer-Institut für Kommunikation, Informationsverarbeitung und Ergonomie'),
(143284, 112112, 'id', 'name', 'Universitas Al-Azhar Indonesia'),
(143285, 112112, 'en', 'name', 'University Al-Azhar Indonesia'),
(143286, 112113, 'en', 'name', 'National Forensic Institute'),
(143287, 112113, 'ko', 'name', 'źµ­ė¦½ź³¼ķ•™ģˆ˜ģ‚¬ģ—°źµ¬ģ›'),
(143288, 112114, 'en', 'name', 'Global Reef'),
(143289, 112115, 'en', 'name', 'NOAA Geostationary Operational Environmental Satellites'),
(143290, 112116, 'en', 'name', 'Donders Centre for Cognitive Neuroimaging'),
(143291, 112117, 'en', 'name', 'African Institute for Research in Infectious Diseases'),
(143292, 112118, 'en', 'name', 'Ministry of the Interior and Safety'),
(143293, 112118, 'ko', 'name', 'ķ–‰ģ •ģ•ˆģ „ė¶€'),
(143294, 112119, 'en', 'name', 'Freshwater Fisheries Research Center'),
(143295, 112119, 'zh', 'name', 'äø­å›½ę°“äŗ§ē§‘å­¦ē ”ē©¶é™¢ę·”ę°“ęø”äøšē ”ē©¶äø­åæƒ'),
(143296, 112120, 'id', 'name', 'Universitas Dinamika'),
(143297, 112121, 'en', 'name', 'SERENA: Simulation for the Environment: Reliable and Efficient Numerical Algorithms'),
(143298, 112122, 'en', 'name', 'Canada''s Michael Smith Genome Sciences Centre'),
(143299, 112123, 'de', 'name', 'UniversitƤtsklinikum Brandenburg an der Havel'),
(143300, 112124, 'en', 'name', 'Fraunhofer Research Institution for Additive Manufacturing Technologies IAPT'),
(143301, 112124, 'de', 'name', 'Fraunhofer-Einrichtung für Additive Produktionstechnologien IAPT'),
(143302, 112125, 'fr', 'name', 'Observatoire Midi-PyrƩnƩes'),
(143303, 112126, 'en', 'name', 'Incheon Medical Center'),
(143304, 112126, 'ko', 'name', 'ģøģ²œģ˜ė£Œģ›'),
(143305, 112127, 'en', 'name', 'A. E. Staley Manufacturing Company'),
(143306, 112127, 'no_lang_code', 'name', 'A. E. Staley Manufacturing Company (United States)'),
(143307, 112128, 'en', 'name', 'ASTRA: Automated and Safe TRAnsportation systems');
INSERT INTO `ror_settings` VALUES
(143308, 112128, 'fr', 'name', 'ASTRA: Systèmes de transport automatisés et sécurisés'),
(143309, 112129, 'en', 'name', 'Donders Community for Medical Neuroscience'),
(143310, 112130, 'fr', 'name', 'Agence Canadienne d''Inspection des Aliments'),
(143311, 112130, 'en', 'name', 'Canadian Food Inspection Agency'),
(143312, 112131, 'no_lang_code', 'name', 'Woosuk University'),
(143313, 112131, 'ko', 'name', 'ģš°ģ„ėŒ€ķ•™źµ'),
(143314, 112132, 'de', 'name', 'Fraunhofer Institut für System- und Innovationsforschung'),
(143315, 112132, 'en', 'name', 'Fraunhofer Institute for Systems and Innovation Research'),
(143316, 112133, 'en', 'name', 'Bangalore Baptist Hospital'),
(143317, 112134, 'en', 'name', 'Fraunhofer USA'),
(143318, 112135, 'en', 'name', 'CUNY Graduate School of Public Health and Health Policy'),
(143319, 112136, 'en', 'name', 'Donders Institute for Brain, Cognition and Behaviour'),
(143320, 112137, 'en', 'name', 'The Center for Nutritional Psychology'),
(143321, 112138, 'en', 'name', 'Korea Institute of Science and Technology'),
(143322, 112138, 'ko', 'name', 'ķ•œźµ­ź³¼ķ•™źø°ģˆ ģ—°źµ¬ģ›'),
(143323, 112139, 'en', 'name', 'Korea University'),
(143324, 112139, 'ko', 'name', 'ź³ ė ¤ėŒ€ķ•™źµ'),
(143325, 112140, 'en', 'name', 'Plant & Food Research'),
(143326, 112141, 'en', 'name', 'Korea Institute of Oriental Medicine'),
(143327, 112141, 'ko', 'name', 'ķ•œźµ­ķ•œģ˜ķ•™ģ—°źµ¬ģ›'),
(143328, 112142, 'no_lang_code', 'name', 'GE Healthcare (Hungary)'),
(143329, 112142, 'hu', 'name', 'GE Healthcare MagyarorszƔg Kft'),
(143330, 112143, 'en', 'name', 'Sungkyunkwan University'),
(143331, 112143, 'ko', 'name', 'ģ„±ź· ź“€ėŒ€ķ•™źµ'),
(143332, 112144, 'en', 'name', 'Fraunhofer Institute for Mechanics of Materials'),
(143333, 112144, 'de', 'name', 'Fraunhofer-Institut für Werkstoffmechanik'),
(143334, 112145, 'en', 'name', 'National Research Foundation of Korea'),
(143335, 112145, 'ko', 'name', 'ķ•œźµ­ģ—°źµ¬ģž¬ė‹Ø'),
(143336, 112146, 'en', 'name', 'Bajkul Milani Mahavidyalaya'),
(143337, 112147, 'fr', 'name', 'Plateformes rƩgionales de transferts technologiques'),
(143338, 112148, 'en', 'name', 'Pan-African University'),
(143339, 112149, 'en', 'name', 'Fraunhofer Center for International Management and Knowledge Economy'),
(143340, 112149, 'de', 'name', 'Fraunhofer-Zentrum für Internationales Management und Wissensökonomie'),
(143341, 112150, 'en', 'name', 'Korea Institute for National Unification'),
(143342, 112150, 'ko', 'name', 'ķ†µģ¼ģ—°źµ¬ģ›'),
(143343, 112151, 'en', 'name', 'National Association for Sikolohiyang Pilipino'),
(143344, 112151, 'tl', 'name', 'Pambansang Samahan sa Sikolohiyang Pilipino'),
(143345, 112152, 'en', 'name', 'CHA Health Systems'),
(143346, 112152, 'ko', 'name', 'ģ°Øė³‘ģ›ė°”ģ“ģ˜¤ź·øė£¹'),
(143347, 112153, 'en', 'name', 'OWASP Foundation'),
(143348, 112154, 'en', 'name', 'National Cancer Center'),
(143349, 112154, 'ko', 'name', '국립암센터'),
(143350, 112155, 'fr', 'name', 'Cairn.info'),
(143351, 112156, 'id', 'name', 'Universitas Islam Negeri Sjech M. Djamil Djambek Bukittinggi'),
(143352, 112157, 'en', 'name', 'Fraunhofer Institute for Cell Therapy and Immunology'),
(143353, 112157, 'de', 'name', 'Fraunhofer-Institut für Zelltherapie und Immunologie'),
(143354, 112158, 'en', 'name', 'Aicura Medical'),
(143355, 112158, 'no_lang_code', 'name', 'Aicura Medical (Germany)'),
(143356, 112159, 'en', 'name', 'Fraunhofer Institute for Building Physics'),
(143357, 112159, 'de', 'name', 'Fraunhofer-Institut für Bauphysik'),
(143358, 112160, 'en', 'name', 'Internet Interdisciplinary Institute'),
(143359, 112161, 'en', 'name', 'Fraunhofer Institute for Microelectronic Circuits and Systems'),
(143360, 112161, 'de', 'name', 'Fraunhofer-Institut für Mikroelektronische Schaltungen und Systeme'),
(143361, 112162, 'en', 'name', 'Fraunhofer Institute for Silicate Research'),
(143362, 112162, 'de', 'name', 'Fraunhofer-Institut für Silicatforschung'),
(143363, 112163, 'en', 'name', 'Fraunhofer Institute for Surface Engineering and Thin Films'),
(143364, 112163, 'de', 'name', 'Fraunhofer-Institut für Schicht- und Oberflächentechnik'),
(143365, 112164, 'en', 'name', 'Alamo Navajo School Board, Inc.'),
(143366, 112165, 'en', 'name', 'National Radio Research Agency'),
(143367, 112165, 'ko', 'name', 'źµ­ė¦½ģ „ķŒŒģ—°źµ¬ģ›'),
(143368, 112166, 'fr', 'name', 'ANGE: Analyse NumƩrique, GƩophysique et Environnement'),
(143369, 112166, 'en', 'name', 'ANGE: Numerical Analysis, Geophysics and Environment'),
(143370, 112167, 'en', 'name', 'Cox''s Bazar International University'),
(143371, 112167, 'bn', 'name', 'ą¦•ą¦•ą§ą¦øą¦¬ą¦¾ą¦œą¦¾ą¦° ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(143372, 112168, 'cy', 'name', 'Prifysgol Lerpwl'),
(143373, 112168, 'en', 'name', 'University of Liverpool'),
(143374, 112169, 'de', 'name', 'Ludwig Boltzmann Institut für Wissenschaftsvermittlung und Pandemievorsorge'),
(143375, 112169, 'en', 'name', 'Ludwig Boltzmann Institute for Science Outreach and Pandemic Preparedness'),
(143376, 112170, 'en', 'name', 'Fraunhofer Institute for Manufacturing Technology and Advanced Materials'),
(143377, 112170, 'de', 'name', 'Fraunhofer-Institut für Fertigungstechnik und Angewandte Materialforschung'),
(143378, 112171, 'id', 'name', 'Universitas PTIQ Jakarta'),
(143379, 112172, 'en', 'name', 'Nepal Paediatric Society'),
(143380, 112173, 'es', 'name', 'Instituto Tecnológico de Morelia'),
(143381, 112173, 'en', 'name', 'Morelia Institute of Technology'),
(143382, 112174, 'en', 'name', 'Naypyitaw State Polytechnic University'),
(143383, 112174, 'my', 'name', 'į€”į€±į€•į€¼į€Šį€ŗį€į€±į€¬į€ŗį€•į€­į€Æį€œį€®į€į€€į€¹į€€į€”į€…į€ŗį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(143384, 112175, 'fr', 'name', 'MOEX: Evolution de la connaissance'),
(143385, 112175, 'en', 'name', 'MOEX: Evolving Knowledge'),
(143386, 112176, 'en', 'name', 'eversyn GmbH'),
(143387, 112176, 'no_lang_code', 'name', 'eversyn GmbH (Germany)'),
(143388, 112177, 'en', 'name', 'Tay Do University'),
(143389, 112177, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c TĆ¢y ĐƓ'),
(143390, 112178, 'en', 'name', 'Fraunhofer Institute for Interfacial Engineering and Biotechnology'),
(143391, 112178, 'de', 'name', 'Fraunhofer-Institut für Grenzflächen- und Bioverfahrenstechnik'),
(143392, 112179, 'en', 'name', 'Institute of Geodesy and Geophysics'),
(143393, 112179, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ęµ‹é‡äøŽåœ°ēƒē‰©ē†ē ”ē©¶ę‰€'),
(143394, 112180, 'en', 'name', 'NOAA Office of Satellite Ground Services'),
(143395, 112181, 'en', 'name', 'DATAMOVE: Data Aware Large Scale Computing'),
(143396, 112181, 'fr', 'name', 'DATAMOVE: Mouvements de donnƩes pour le calcul haute performance'),
(143397, 112182, 'en', 'name', 'Donetsk National Technical University'),
(143398, 112182, 'pl', 'name', 'Doniecki Narodowy Uniwersytet Techniczny'),
(143399, 112182, 'ru', 'name', 'Донецкий Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(143400, 112182, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(143401, 112183, 'fr', 'name', 'STEEP: SoutenabilitƩ, Territoires, Environnement, Economie et Politique'),
(143402, 112183, 'en', 'name', 'STEEP: Sustainability transition, environment, economy and local policy'),
(143403, 112184, 'en', 'name', 'OceanEarth Foundation'),
(143404, 112185, 'en', 'name', 'Multanimal Modi College, Modinagar'),
(143405, 112186, 'en', 'name', 'Maulana Abul Kalam Azad University of Technology, West Bengal'),
(143406, 112187, 'en', 'name', 'ELAN: modELing the Appearance of Nonlinear phenomena'),
(143407, 112187, 'fr', 'name', 'ELAN: modELisation de l''Apparence des phénomènes Non-linéaires'),
(143408, 112188, 'en', 'name', 'S. Tentishev Asian Medical Institute'),
(143409, 112188, 'ru', 'name', 'Азиатский меГицинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”Š°Ń‚ŠŗŃ‹Š½Š±Š°Ń Š¢ŠµŠ½Ń‚Ń‹ŃˆŠµŠ²Š°'),
(143410, 112189, 'en', 'name', 'Maharashtra Institute of Mental Health'),
(143411, 112189, 'mr', 'name', 'ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° मानसिक ą¤†ą¤°ą„‹ą¤—ą„ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(143412, 112189, 'hi', 'name', 'ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° मानसिक ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(143413, 112190, 'en', 'name', 'Inha University Hospital'),
(143414, 112190, 'ko', 'name', 'ģøķ•˜ėŒ€ė³‘ģ›'),
(143415, 112191, 'en', 'name', 'Digital Humanities Research Hub'),
(143416, 112192, 'en', 'name', 'Ludwig Boltzmann Institute for Translational Heart Failure Research'),
(143417, 112193, 'en', 'name', 'Port City International University'),
(143418, 112193, 'bn', 'name', 'ą¦Ŗą§‹ą¦°ą§ą¦Ÿ সিটি ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(143419, 112194, 'id', 'name', 'Badan Pengawas Obat dan Makanan'),
(143420, 112194, 'en', 'name', 'Indonesian Food and Drug Authority'),
(143421, 112195, 'en', 'name', 'Fraunhofer Institute for Machine Tools and Forming Technology'),
(143422, 112195, 'de', 'name', 'Fraunhofer-Institut für Werkzeugmaschinen und Umformtechnik'),
(143423, 112196, 'en', 'name', 'Fraunhofer Institute for Technological Trend Analysis'),
(143424, 112196, 'de', 'name', 'Fraunhofer-Institut für Naturwissenschaftlich-Technische Trendanalysen'),
(143425, 112197, 'en', 'name', 'TYREX: Types and Reasoning for the Web'),
(143426, 112198, 'en', 'name', 'The Catholic University of Korea Incheon St. Mary''s Hospital'),
(143427, 112198, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģøģ²œģ„±ėŖØė³‘ģ›'),
(143428, 112199, 'en', 'name', 'Andalusian Health Service'),
(143429, 112199, 'es', 'name', 'Servicio Andaluz de Salud'),
(143430, 112200, 'en', 'name', 'Miyagi National Hospital'),
(143431, 112201, 'en', 'name', 'Fraunhofer Institute for Digital Medicine'),
(143432, 112201, 'de', 'name', 'Fraunhofer-Institut für Digitale Medizin'),
(143433, 112202, 'de', 'name', 'Ludwig Boltzmann Institut für Grund- und Menschenrechte'),
(143434, 112202, 'en', 'name', 'Ludwig Boltzmann Institute of Fundamental and Human Rights'),
(143435, 112203, 'en', 'name', 'Willingsford Ltd.'),
(143436, 112203, 'no_lang_code', 'name', 'Willingsford Ltd. (United Kingdom)'),
(143437, 112204, 'de', 'name', 'Ludwig Boltzmann Institut für Kardiovaskuläre Forschung'),
(143438, 112204, 'en', 'name', 'Ludwig Boltzmann Institute for Cardiovascular Research'),
(143439, 112205, 'en', 'name', 'Constructor University'),
(143440, 112206, 'en', 'name', 'NOAA Geostationary Extended Observations'),
(143441, 112207, 'en', 'name', 'Korea Institute of Science & Technology Information'),
(143442, 112207, 'ko', 'name', 'ķ•œźµ­ź³¼ķ•™źø°ģˆ ģ •ė³“ģ—°źµ¬ģ›'),
(143443, 112208, 'ca', 'name', 'Institut Nacional d''Educació Física de Catalunya'),
(143444, 112208, 'en', 'name', 'National Institute of Physical Education of Catalonia'),
(143445, 112209, 'no_lang_code', 'name', 'General Electric (United States)'),
(143446, 112210, 'en', 'name', 'Korea Institute of Materials Science'),
(143447, 112210, 'ko', 'name', 'ķ•œźµ­ģž¬ė£Œģ—°źµ¬ģ›'),
(143448, 112211, 'es', 'name', 'Instituto de Educación Superior Pedagógico Público "Sagrado Corazón de Jesús"'),
(143449, 112212, 'en', 'name', 'Institute of Advanced Legal Studies'),
(143450, 112213, 'en', 'name', 'National Center for High-Performance Computing'),
(143451, 112213, 'zh', 'name', 'åœ‹å®¶é«˜é€Ÿē¶²č·Æčˆ‡čØˆē®—äø­åæƒ'),
(143452, 112214, 'en', 'name', 'NOAA Geostationary Operation Environmental Satellite-R Series'),
(143453, 112215, 'en', 'name', 'Chinese Academy of Fishery Sciences'),
(143454, 112215, 'zh', 'name', 'äø­å›½ę°“äŗ§ē§‘å­¦ē ”ē©¶é™¢äøœęµ·ę°“äŗ§ē ”ē©¶ę‰€'),
(143455, 112216, 'en', 'name', 'CHA University Bundang Women''s Medical Center'),
(143456, 112216, 'ko', 'name', '분당차여성병원'),
(143457, 112217, 'en', 'name', 'Seshadripuram Institute of Management Studies'),
(143458, 112218, 'es', 'name', 'Instituto de la Visión'),
(143459, 112219, 'pt', 'name', 'Hospital das ClĆ­nicas da Faculdade de Medicina da Universidade de SĆ£o Paulo'),
(143460, 112219, 'en', 'name', 'University of SĆ£o Paulo Faculty of Medicine Clinics Hospital'),
(143461, 112220, 'en', 'name', 'Hallym University'),
(143462, 112220, 'ko', 'name', 'ķ•œė¦¼ėŒ€ķ•™źµ'),
(143463, 112221, 'en', 'name', 'NOAA Office of System Architecture and Advanced Planning'),
(143464, 112222, 'en', 'name', 'Seoul National University Children''s Hospital'),
(143465, 112222, 'ko', 'name', 'ģ„œģšøėŒ€ģ–“ė¦°ģ“ė³‘ģ›'),
(143466, 112223, 'en', 'name', 'Virginia Division of Mineral Mining'),
(143467, 112224, 'en', 'name', 'Austral University of Chile'),
(143468, 112224, 'es', 'name', 'Universidad Austral de Chile'),
(143469, 112225, 'en', 'name', 'Fraunhofer Institute for Structural Durability and System Reliability'),
(143470, 112225, 'de', 'name', 'Fraunhofer-Institut für Betriebsfestigkeit und Systemzuverlässigkeit'),
(143471, 112226, 'en', 'name', 'Samsung Changwon Hospital'),
(143472, 112226, 'ko', 'name', '삼성창원병원'),
(143473, 112227, 'en', 'name', 'Sultan Azlan Shah University'),
(143474, 112227, 'ms', 'name', 'Universiti Sultan Azlan Shah'),
(143475, 112228, 'en', 'name', 'State Key Laboratory of Spectroscopy and Atomic and Molecular Physics'),
(143476, 112228, 'zh', 'name', 'ę³¢č°±äøŽåŽŸå­åˆ†å­ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(143477, 112229, 'en', 'name', 'Housing and Building Research Institute'),
(143478, 112229, 'bn', 'name', 'ą¦¹ą¦¾ą¦‰ą¦œą¦æą¦‚ ą¦ą¦Øą§ą¦” ą¦¬ą¦æą¦²ą§ą¦”ą¦æą¦‚ ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(143479, 112230, 'en', 'name', 'Institute of Marine and Environmental Technology'),
(143480, 112231, 'en', 'name', 'Fraunhofer Institute for Process Engineering and Packaging'),
(143481, 112231, 'de', 'name', 'Fraunhofer-Institut für Verfahrenstechnik und Verpackung IVV'),
(143482, 112232, 'en', 'name', 'Open University of Catalonia'),
(143483, 112232, 'es', 'name', 'Universidad Abierta de CataluƱa'),
(143484, 112232, 'ca', 'name', 'Universitat Oberta de Catalunya'),
(143485, 112233, 'en', 'name', 'Academy of Sciences of the Republic of Tajikistan'),
(143486, 112233, 'tg', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŠø миллии илмҳои Тоҷикистон'),
(143487, 112234, 'en', 'name', 'ICAR-National Bureau of Soil Survey and Land Use Planning'),
(143488, 112234, 'hi', 'name', 'भा.ą¤•ą„ƒ.अ.प.- ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą„ƒą¤¦ą¤¾ ą¤øą¤°ą„ą¤µą„‡ą¤•ą„ą¤·ą¤£ ą¤ą¤µą¤‚ ą¤­ą„‚ą¤®ą¤æ ą¤‰ą¤Ŗą¤Æą„‹ą¤— ą¤Øą¤æą¤Æą„‹ą¤œą¤Ø ą¤¬ą„ą¤Æą„‚ą¤°ą„‹'),
(143489, 112235, 'en', 'name', 'Tidetron Bioworks Technology Co., Ltd. (China)'),
(143490, 112235, 'zh', 'name', 'ę€åˆ›ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(143491, 112236, 'en', 'name', 'Austrian Institute for Health Technology Assessment GmbH'),
(143492, 112237, 'en', 'name', 'Inje University Haeundae Paik Hospital'),
(143493, 112237, 'ko', 'name', 'ģøģ œ ėŒ€ķ•™źµ ķ•“ģš“ėŒ€ 백병원'),
(143494, 112238, 'en', 'name', 'New Model Institute for Technology & Engineering'),
(143495, 112239, 'de', 'name', 'Landesamt für Natur, Umwelt und Klima Nordrhein-Westfalen'),
(143496, 112240, 'en', 'name', 'Women''s Health Research Institute'),
(143497, 112241, 'en', 'name', 'Health and Nutrition Research Organization'),
(143498, 112241, 'id', 'name', 'Organisasi Riset Kesehatan'),
(143499, 112242, 'en', 'name', 'Fraunhofer Institute for Cognitive Systems'),
(143500, 112242, 'de', 'name', 'Fraunhofer-Institut für Kognitive Systeme IKS'),
(143501, 112243, 'en', 'name', 'Korea Basic Science Institute'),
(143502, 112243, 'ko', 'name', 'ķ•œźµ­źø°ģ“ˆź³¼ķ•™ģ§€ģ›ģ—°źµ¬ģ›'),
(143503, 112244, 'en', 'name', 'MOKAPLAN: Advances in Numerical Calculus of Variations'),
(143504, 112244, 'fr', 'name', 'MOKAPLAN: AvancƩes en calcul numƩrique des variations'),
(143505, 112245, 'en', 'name', 'Ajou University'),
(143506, 112245, 'ko', 'name', 'ģ•„ģ£¼ėŒ€ķ•™źµ'),
(143507, 112246, 'en', 'name', 'NOAA Joint Polar Satellite System Program Office'),
(143508, 112247, 'en', 'name', 'Fraunhofer Group for Microelectronics'),
(143509, 112247, 'de', 'name', 'Fraunhofer-Verbund Mikroelektronik'),
(143510, 112248, 'en', 'name', 'Fraunhofer Society'),
(143511, 112248, 'de', 'name', 'Fraunhofer-Gesellschaft'),
(143512, 112249, 'en', 'name', 'WHISPER: Well Honed Infrastructure Software for Programming Environments and Runtimes'),
(143513, 112250, 'en', 'name', 'Fraunhofer UK Research'),
(143514, 112251, 'en', 'name', 'North Eastern Mindanao State University'),
(143515, 112252, 'en', 'name', 'NSW Environment and Heritage'),
(143516, 112253, 'id', 'name', 'Organisasi Riset Hayati dan Lingkungan'),
(143517, 112253, 'en', 'name', 'Research Organization for Life Sciences and Environment'),
(143518, 112254, 'en', 'name', 'Asan Medical Center'),
(143519, 112254, 'ko', 'name', 'ģ„œģšøģ•„ģ‚°ė³‘ģ›'),
(143520, 112255, 'en', 'name', 'Fraunhofer Research Institution for Battery Cell Production'),
(143521, 112255, 'de', 'name', 'Fraunhofer-Einrichtung Forschungsfertigung Batteriezelle'),
(143522, 112256, 'en', 'name', 'The Floow'),
(143523, 112256, 'no_lang_code', 'name', 'The Floow (United Kingdom)'),
(143524, 112257, 'en', 'name', 'Delaware Biotechnology Institute'),
(143525, 112258, 'es', 'name', 'Instituto Tecnológico Superior de Purísima del Rincón'),
(143526, 112259, 'en', 'name', 'Fraunhofer Research Institution for Energy Infrastructures and Geotechnologies IEG'),
(143527, 112259, 'de', 'name', 'Fraunhofer-Einrichtung für Energieinfrastrukturen und Geotechnologien IEG'),
(143528, 112260, 'de', 'name', 'PƤdagogische Hochschule Tirol'),
(143529, 112260, 'en', 'name', 'University College of Teacher Education Tyrol'),
(143530, 112261, 'id', 'name', 'Sekolah Tinggi Agama Islam (STAI) Baturaja'),
(143531, 112262, 'fr', 'name', 'UnitƩ d''Appui et de Recherche OSUPS'),
(143532, 112263, 'en', 'name', 'Fraunhofer Institute for Transportation and Infrastructure Systems'),
(143533, 112263, 'de', 'name', 'Fraunhofer-Institut für Verkehrs- und Infrastruktursysteme'),
(143534, 112264, 'en', 'name', 'NOAA Office of Projects, Planning, and Analysis'),
(143535, 112265, 'en', 'name', 'Montana State University'),
(143536, 112266, 'en', 'name', 'Fraunhofer Institute for Production Systems and Design Technology'),
(143537, 112266, 'de', 'name', 'Fraunhofer-Institut für Produktionsanlagen und Konstruktionstechnik'),
(143538, 112267, 'en', 'name', 'Fraunhofer Institute for Software and Systems Engineering'),
(143539, 112267, 'de', 'name', 'Fraunhofer-Institut für Software- und Systemtechnik'),
(143540, 112268, 'en', 'name', 'Refugee Law Initiative'),
(143541, 112269, 'en', 'name', 'The Center for Global Health and Health Policy, Global Health and Education Projects, Inc'),
(143542, 112270, 'en', 'name', 'QUANTIC: QUANTum Information Circuits'),
(143543, 112271, 'en', 'name', 'Shahab Danesh University'),
(143544, 112271, 'fa', 'name', 'دانؓگاه ؓهاب دانؓ'),
(143545, 112272, 'de', 'name', 'Ludwig Boltzmann Institut für Lungengesundheit'),
(143546, 112272, 'en', 'name', 'Ludwig Boltzmann Institute for Lung Health'),
(143547, 112273, 'en', 'name', 'NaphCare Charitable Foundation'),
(143548, 112274, 'en', 'name', 'Fiona Stanley Hospital'),
(143549, 112275, 'fr', 'name', 'CTRL-A: Commande pour systĆØmes informatiques autonomiques'),
(143550, 112275, 'en', 'name', 'CTRL-A: Control for safe Autonomic computing systems'),
(143551, 112276, 'en', 'name', 'Chonnam National University Hwasun Hospital'),
(143552, 112276, 'ko', 'name', 'ķ™”ģˆœģ „ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(143553, 112277, 'en', 'name', 'Gachon University Gil Medical Center'),
(143554, 112277, 'ko', 'name', 'ź°€ģ²œėŒ€ 길병원'),
(143555, 112278, 'en', 'name', 'Centre of Excellence for Long-acting Therapeutics'),
(143556, 112279, 'en', 'name', 'National Sea Simulator'),
(143557, 112280, 'en', 'name', 'University of Mysore'),
(143558, 112280, 'fr', 'name', 'UniversitƩ de mysore'),
(143559, 112280, 'ta', 'name', 'ą®®ąÆˆą®šąÆ‚ą®°ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(143560, 112280, 'te', 'name', 'ą°®ą±ˆą°øą±‚ą°°ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(143561, 112280, 'kn', 'name', 'ą²®ą³ˆą²øą³‚ą²°ą³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(143562, 112280, 'ml', 'name', 'ą“®ąµˆą“øąµ‚ąµ¼ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(143563, 112281, 'en', 'name', 'Ukrainian State University of Chemical Technology'),
(143564, 112281, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний хіміко-технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(143565, 112282, 'en', 'name', 'Adama Hospital Medical College'),
(143566, 112282, 'am', 'name', 'įŠ į‹³įˆ› įˆ†įˆµį’į‰³įˆ įˆœį‹²įŠ«įˆ įŠ®įˆŒįŒ…'),
(143567, 112283, 'en', 'name', 'Hallym University Kangnam Sacred Heart Hospital'),
(143568, 112283, 'ko', 'name', 'ķ•œė¦¼ėŒ€ķ•™źµ 강남성심병원'),
(143569, 112284, 'en', 'name', 'Electronics and Informatics Research Organization'),
(143570, 112284, 'id', 'name', 'Organisasi Riset Elektronika dan Informatika'),
(143571, 112285, 'en', 'name', 'All India Institute of Medical Sciences, Madurai'),
(143572, 112285, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤®ą¤¦ą„ą¤°ą„ˆ'),
(143573, 112285, 'ta', 'name', 'அகில ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ, மதுரை'),
(143574, 112286, 'de', 'name', 'Fraunhofer Institut für Toxikologie und Experimentelle Medizin'),
(143575, 112286, 'en', 'name', 'Fraunhofer Institute for Toxicology and Experimental Medicine'),
(143576, 112287, 'en', 'name', 'Ministry of Health and Welfare'),
(143577, 112287, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ 볓걓복지부'),
(143578, 112288, 'en', 'name', 'Institute of Classical Studies'),
(143579, 112289, 'en', 'name', 'Fraunhofer Research Institution for Microsystems and Solid State Technologies'),
(143580, 112289, 'de', 'name', 'Fraunhofer-Einrichtung für Mikrosysteme und Festkörper-Technologien'),
(143581, 112290, 'en', 'name', 'Korea Research Institute of Bioscience and Biotechnology'),
(143582, 112290, 'ko', 'name', 'ķ•œźµ­ģƒėŖ…ź³µķ•™ģ—°źµ¬ģ›'),
(143583, 112291, 'fr', 'name', 'SIERRA: Apprentissage Statistique et optimisation'),
(143584, 112291, 'en', 'name', 'SIERRA: Machine Learning and Optimisation'),
(143585, 112292, 'en', 'name', 'Fraunhofer Institute for Silicon Technology'),
(143586, 112292, 'de', 'name', 'Fraunhofer-Institut für Siliziumtechnologie'),
(143587, 112293, 'en', 'name', 'The Strategy Unit'),
(143588, 112294, 'en', 'name', 'Joint Preservation Centre of BC'),
(143589, 112295, 'en', 'name', 'Manaaki Whenua – Landcare Research'),
(143590, 112296, 'en', 'name', 'Global Health and Education Projects'),
(143591, 112297, 'en', 'name', 'Heart Institute'),
(143592, 112297, 'pt', 'name', 'Instituto do Coração - HCFMUSP'),
(143593, 112298, 'en', 'name', 'Regent College'),
(143594, 112299, 'hu', 'name', 'T-Tudok'),
(143595, 112299, 'no_lang_code', 'name', 'T-Tudok (Hungary)'),
(143596, 112300, 'en', 'name', 'International Association of Seismology and Physics of the Earth''s Interior'),
(143597, 112301, 'en', 'name', 'Research and Development Station for Fruit Tree Growing Băneasa'),
(143598, 112301, 'ro', 'name', 'Stațiunea de Cercetare - Dezvoltare pentru Pomicultură Băneasa - București'),
(143599, 112302, 'en', 'name', 'MIMOVE: Middleware on the Move'),
(143600, 112303, 'en', 'name', 'Korea Rural Economic Institute'),
(143601, 112303, 'ko', 'name', 'ķ•œźµ­ė†ģ“Œź²½ģ œģ—°źµ¬ģ›'),
(143602, 112304, 'en', 'name', 'Institute of Commonwealth Studies'),
(143603, 112305, 'en', 'name', 'Fraunhofer Institute for Reliability and Microintegration'),
(143604, 112305, 'de', 'name', 'Fraunhofer-Institut für Zuverlässigkeit und Mikrointegration'),
(143605, 112306, 'en', 'name', 'CHA University'),
(143606, 112306, 'ko', 'name', 'ģ°Øģ˜ź³¼ķ•™ėŒ€ķ•™źµ'),
(143607, 112307, 'es', 'name', 'Universidad Tecnológica de Calvillo'),
(143608, 112308, 'en', 'name', 'Marriott International (United States)'),
(143609, 112309, 'en', 'name', 'Soonchunhyang University Medical Center'),
(143610, 112309, 'ko', 'name', 'ģˆœģ²œķ–„ėŒ€ķ•™źµ ģ¤‘ģ•™ģ˜ė£Œģ›'),
(143611, 112310, 'en', 'name', 'NOAA Systems Architecture and Engineering'),
(143612, 112311, 'en', 'name', 'Seoul Metropolitan Government'),
(143613, 112312, 'en', 'name', 'Gyeongguk National University'),
(143614, 112312, 'ko', 'name', 'ź²½źµ­ėŒ€ķ•™źµ'),
(143615, 112313, 'en', 'name', 'Small Business Administration'),
(143616, 112314, 'en', 'name', 'Konyang University Hospital'),
(143617, 112314, 'ko', 'name', 'ź±“ģ–‘ėŒ€ķ•™źµė³‘ģ›'),
(143618, 112315, 'en', 'name', 'Heavy Ion Accelerators'),
(143619, 112316, 'en', 'name', 'Fraunhofer Institute of Optronics, System Technologies and Image Exploitation'),
(143620, 112316, 'de', 'name', 'Fraunhofer-Institut für Optronik, Systemtechnik und Bildauswertung'),
(143621, 112317, 'id', 'name', 'Badan Riset dan Inovasi Nasional'),
(143622, 112317, 'en', 'name', 'National Research and Innovation Agency'),
(143623, 112318, 'en', 'name', 'Fraunhofer Institute for Manufacturing Engineering and Automation'),
(143624, 112318, 'de', 'name', 'Fraunhofer-Institut für Produktionstechnik und Automatisierung'),
(143625, 112319, 'en', 'name', 'Ludwig Boltzmann Institute of Osteology'),
(143626, 112320, 'en', 'name', 'Federal University of Toulouse Midi-PyrƩnƩes'),
(143627, 112320, 'fr', 'name', 'UniversitƩ FƩdƩrale de Toulouse Midi-PyrƩnƩes'),
(143628, 112321, 'en', 'name', 'Office of Electricity Delivery and Energy Reliability'),
(143629, 112322, 'en', 'name', 'Fraunhofer Institute for Solar Energy Systems'),
(143630, 112322, 'de', 'name', 'Fraunhofer-Institut für Solare Energiesysteme'),
(143631, 112323, 'en', 'name', 'Gangwon Provincial University'),
(143632, 112324, 'en', 'name', 'Jeju National University'),
(143633, 112324, 'ko', 'name', 'ģ œģ£¼ėŒ€ķ•™źµ'),
(143634, 112325, 'en', 'name', 'Inje University Sanggye Paik Hospital'),
(143635, 112325, 'ko', 'name', 'ģøģ œėŒ€ķ•™źµ ģƒź³„ė°±ė³‘ģ›'),
(143636, 112326, 'en', 'name', 'Yeungnam University Medical Center'),
(143637, 112326, 'ko', 'name', 'ģ˜ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(143638, 112327, 'en', 'name', 'Fraunhofer Institute for Factory Operation and Automation'),
(143639, 112327, 'de', 'name', 'Fraunhofer-Institut für Fabrikbetrieb und -automatisierung'),
(143640, 112328, 'en', 'name', 'Heritage Christian University'),
(143641, 112329, 'en', 'name', 'Ludwig Boltzmann Institute for Lung Vascular Research'),
(143642, 112330, 'en', 'name', 'Fraunhofer Institute for Organic Electronics, Electron Beam and Plasma Technology'),
(143643, 112330, 'de', 'name', 'Fraunhofer-Institut für Organische Elektronik, Elektronenstrahl- und Plasmatechnik'),
(143644, 112331, 'en', 'name', 'Chattogram BGMEA University of Fashion and Technology'),
(143645, 112331, 'bn', 'name', 'ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦¬ą¦æą¦œą¦æą¦ą¦®ą¦‡ą¦ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦«ą§ą¦Æą¦¾ą¦¶ą¦Ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(143646, 112332, 'en', 'name', 'Fraunhofer Institute for Large Structures in Production Engineering IGP'),
(143647, 112332, 'de', 'name', 'Fraunhofer-Institut für Großstrukturen in der Produktionstechnik IGP'),
(143648, 112333, 'fr', 'name', 'CAMBIUM: Langages de programmation : systĆØmes de types, concurrence, preuve de programme'),
(143649, 112333, 'en', 'name', 'CAMBIUM: Programming languages: type systems, concurrency, proofs of programs'),
(143650, 112334, 'en', 'name', 'Jiulongpo Center for Disease Control and Prevention'),
(143651, 112334, 'zh', 'name', 'é‡åŗ†åø‚ä¹é¾™å”åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(143652, 112335, 'en', 'name', 'Australian Centre for Neutron Scattering'),
(143653, 112336, 'es', 'name', 'Conservación Osa'),
(143654, 112336, 'en', 'name', 'Osa Conservation'),
(143655, 112337, 'no_lang_code', 'name', 'Wonkwang University'),
(143656, 112337, 'ko', 'name', 'ģ›ź“‘ėŒ€ķ•™źµ'),
(143657, 112338, 'en', 'name', 'Jeonbuk State Institute'),
(143658, 112338, 'ko', 'name', '전북연구원'),
(143659, 112339, 'en', 'name', 'Fraunhofer Institute for Integrated Circuits'),
(143660, 112339, 'de', 'name', 'Fraunhofer-Institut für Integrierte Schaltungen'),
(143661, 112340, 'en', 'name', 'Kagoshima University'),
(143662, 112340, 'ja', 'name', '鹿児島大学'),
(143663, 112341, 'en', 'name', 'Donders Centre for Cognition'),
(143664, 112342, 'fr', 'name', 'MICROCOSME: Analyse, ingƩnierie et contrƓle des micro-organismes'),
(143665, 112342, 'en', 'name', 'MICROCOSME: Analysis, engineering, and control of microorganisms'),
(143666, 112343, 'en', 'name', 'Marchand Institute for Minimally Invasive Surgery'),
(143667, 112344, 'en', 'name', 'The University of Larkano'),
(143668, 112344, 'ur', 'name', 'جامعہ لاڑکانہ'),
(143669, 112344, 'sd', 'name', 'Ł„Ų§Ś™ŚŖŲ§Ś»Łˆ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(143670, 112345, 'en', 'name', 'Added Value Solutions'),
(143671, 112345, 'no_lang_code', 'name', 'Added Value Solutions (Spain)'),
(143672, 112346, 'en', 'name', 'Korea Research Institute of Chemical Technology'),
(143673, 112347, 'en', 'name', 'Fraunhofer Institute for Chemical Technology'),
(143674, 112347, 'de', 'name', 'Fraunhofer-Institut für Chemische Technologie'),
(143675, 112348, 'id', 'name', 'Akademi Ilmu Pengetahuan Indonesia'),
(143676, 112348, 'en', 'name', 'Indonesian Academy of Sciences'),
(143677, 112349, 'en', 'name', 'U.S. Energy Information Administration'),
(143678, 112350, 'mt', 'name', 'L-Isptar San Luqa'),
(143679, 112350, 'en', 'name', 'St. Luke''s Hospital'),
(143680, 112351, 'en', 'name', 'Fraunhofer Institute for Casting, Composite and Processing Technology IGCV'),
(143681, 112351, 'de', 'name', 'Fraunhofer-Institut für Gießerei-, Composite- und Verarbeitungstechnik IGCV'),
(143682, 112352, 'fr', 'name', 'Centre d''Intelligence Artificielle et de Robotique du Mali'),
(143683, 112352, 'en', 'name', 'Centre for Artificial Intelligence and Robotics of Mali'),
(143684, 112353, 'en', 'name', 'Fraunhofer Center for Maritime Logistics and Services'),
(143685, 112353, 'de', 'name', 'Fraunhofer-Center für Maritime Logistik und Dienstleistungen'),
(143686, 112354, 'en', 'name', 'Energy and Manufacture Research Organization'),
(143687, 112354, 'id', 'name', 'Organisasi Riset Energi dan Manufaktur'),
(143688, 112355, 'en', 'name', 'Ajou University Hospital'),
(143689, 112355, 'ko', 'name', 'ģ•„ģ£¼ėŒ€ķ•™źµė³‘ģ›'),
(143690, 112356, 'fr', 'name', 'THOTH: Apprentissage de modèles visuels à partir de données massives'),
(143691, 112356, 'en', 'name', 'THOTH: Learning visual models from large-scale data'),
(143692, 112357, 'en', 'name', 'ELIXIR Germany'),
(143693, 112358, 'en', 'name', 'AIRSEA: Mathematics and computing applied to oceanic and atmospheric flows'),
(143694, 112358, 'fr', 'name', 'AIRSEA: MathƩmatiques et calcul scientifique appliquƩs aux Ʃcoulements ocƩaniques et atmosphƩriques'),
(143695, 112359, 'en', 'name', 'Poornaprajna Institute of Management'),
(143696, 112360, 'es', 'name', 'Universidad Privada del Este filial Ciudad del Este'),
(143697, 112361, 'en', 'name', 'Cordoba University'),
(143698, 112362, 'en', 'name', 'The Australian Sociological Association'),
(143699, 112363, 'de', 'name', 'Instituts für Altersforschung'),
(143700, 112363, 'en', 'name', 'Ludwig Boltzmann Institute for Age Research'),
(143701, 112364, 'en', 'name', 'CAGE: Control and Geometry'),
(143702, 112364, 'fr', 'name', 'CAGE: ContrƓle et gƩomƩtrie'),
(143703, 112365, 'en', 'name', 'DatologyAI'),
(143704, 112365, 'no_lang_code', 'name', 'DatologyAI (United States)'),
(143705, 112366, 'en', 'name', 'ImmunoBiome, Inc.'),
(143706, 112366, 'no_lang_code', 'name', 'ImmunoBiome, Inc. (Korea)'),
(143707, 112366, 'ko', 'name', 'ģ“ė®¤ė…øė°”ģ“ģ˜“ ģ£¼ģ‹ķšŒģ‚¬'),
(143708, 112367, 'en', 'name', 'Institute for Islamic and Social Studies'),
(143709, 112367, 'id', 'name', 'Lembaga Kajian Islam dan Sosial'),
(143710, 112368, 'en', 'name', 'American Bar Association'),
(143711, 112369, 'en', 'name', 'OAZIS Health'),
(143712, 112370, 'de', 'name', 'Ludwig Boltzmann für Klinische Neurobiologie'),
(143713, 112371, 'es', 'name', 'Universidad de Rhode Island'),
(143714, 112371, 'en', 'name', 'University of Rhode Island'),
(143715, 112371, 'fr', 'name', 'UniversitƩ de rhode island'),
(143716, 112372, 'en', 'name', 'Korea Institute for Health and Social Affairs'),
(143717, 112372, 'ko', 'name', 'ķ•œźµ­ė³“ź±“ģ‚¬ķšŒģ—°źµ¬ģ›'),
(143718, 112373, 'en', 'name', 'Kharkiv National University of Radio Electronics'),
(143719, 112373, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ раГіоелектроніки'),
(143720, 112374, 'en', 'name', 'Fraunhofer Project Centre Wolfsburg'),
(143721, 112374, 'de', 'name', 'Fraunhofer-Projektzentrum Wolfsburg'),
(143722, 112375, 'en', 'name', 'Fraunhofer Institute for High-Speed Dynamics, Ernst-Mach-Institut'),
(143723, 112375, 'de', 'name', 'Fraunhofer-Institut für Kurzzeitdynamik, Ernst-Mach-Institut'),
(143724, 112376, 'en', 'name', 'Veterans Health Service Medical Center'),
(143725, 112376, 'ko', 'name', 'ģ¤‘ģ•™ė³“ķ›ˆė³‘ģ›'),
(143726, 112377, 'en', 'name', 'Korea Railroad Research Institute'),
(143727, 112377, 'ko', 'name', 'ķ•œźµ­ģ² ė„źø°ģˆ ģ—°źµ¬ģ›'),
(143728, 112378, 'en', 'name', 'Children Hospital, Faisalabad'),
(143729, 112379, 'en', 'name', 'NOAA Office of Satellite and Product Operations'),
(143730, 112380, 'en', 'name', 'CHA University Fertility Center'),
(143731, 112380, 'ko', 'name', 'ģ°Ø ģ—¬ģ„±ģ˜ķ•™ģ—°źµ¬ģ†Œ'),
(143732, 112381, 'en', 'name', 'Bansal Institute of Engineering And Technology, Lucknow'),
(143733, 112382, 'en', 'name', 'Konkuk University Medical Center'),
(143734, 112382, 'ko', 'name', 'ź±“źµ­ėŒ€ķ•™źµ ģ˜ė£Œģ›'),
(143735, 112383, 'en', 'name', 'CHA University Healthcare Center'),
(143736, 112383, 'ko', 'name', '차병원 ź±“ź°•ģ¦ģ§„ģ„¼ķ„°'),
(143737, 112384, 'en', 'name', 'State Forestry and Grassland Administration'),
(143738, 112384, 'zh', 'name', 'å›½å®¶ęž—äøšå’Œč‰åŽŸå±€'),
(143739, 112385, 'en', 'name', 'Korea University Medical Center'),
(143740, 112385, 'ko', 'name', 'ź³ ė ¤ėŒ€ķ•™źµ ģ˜ė£Œģ›'),
(143741, 112386, 'fr', 'name', 'EPIMETHEE: Approches expƩrimentales et numƩriques pour explorer le cerveau des insectes'),
(143742, 112386, 'en', 'name', 'EPIMETHEE: Experimental and computational approaches to probe the mind of insects'),
(143743, 112387, 'en', 'name', 'Institute of Vegetable and Melon Growing NAAS'),
(143744, 112387, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ овочівництва і Š±Š°ŃˆŃ‚Š°Š½Š½ŠøŃ†Ń‚Š²Š° ŠŠŠŠ'),
(143745, 112388, 'no_lang_code', 'name', 'Marriott International (Canada)'),
(143746, 112389, 'en', 'name', 'Korea Institute of Toxicology'),
(143747, 112389, 'ko', 'name', 'ģ•ˆģ „ģ„±ķ‰ź°€ģ—°źµ¬ģ†Œ'),
(143748, 112390, 'en', 'name', 'Ludwig Boltzmann Institute Digital Health and Patient Safety'),
(143749, 112391, 'en', 'name', 'Ludwig Boltzmann Institute for Rare and Undiagnosed Diseases'),
(143750, 112392, 'en', 'name', 'Prydniprovs’ka State Academy of Civil Engineering and Architecture'),
(143751, 112392, 'uk', 'name', 'ŠŸŃ€ŠøŠ“Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° та Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(143752, 112393, 'en', 'name', 'Fraunhofer Institute for Secure Information Technology'),
(143753, 112393, 'de', 'name', 'Fraunhofer-Institut für Sichere Informationstechnologie'),
(143754, 112394, 'fr', 'name', 'NERV: Neuroingénierie des systèmes pour modéliser et interfacer les réseaux cérébraux'),
(143755, 112394, 'en', 'name', 'NERV: Systems neuroengineering to model and interface brain networks'),
(143756, 112395, 'en', 'name', 'German National Metrology Institute'),
(143757, 112395, 'de', 'name', 'Physikalisch-Technische Bundesanstalt'),
(143758, 112396, 'en', 'name', 'Azerbaijan Academy of Labor and Social Relations'),
(143759, 112396, 'az', 'name', 'Azərbaycan ʏmək və Sosial Münasibətlər Akademiyası'),
(143760, 112396, 'ru', 'name', 'ŠŠ·ŠµŃ€Š±Š°Š¹Š“Š¶Š°Š½ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¢Ń€ŃƒŠ“Š° Šø Š”Š¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… ŠžŃ‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(143761, 112397, 'en', 'name', 'Electronics and Telecommunications Research Institute'),
(143762, 112397, 'ko', 'name', 'ķ•œźµ­ģ „ģžķ†µģ‹ ģ—°źµ¬ģ›'),
(143763, 112398, 'en', 'name', 'Seshadripuram First Grade College'),
(143764, 112399, 'en', 'name', 'Daejeon Eulji Medical Center, Eulji University'),
(143765, 112399, 'ko', 'name', 'ģ„ģ§€ėŒ€ķ•™źµė³‘ģ›'),
(143766, 112400, 'en', 'name', 'National Assembly'),
(143767, 112400, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ 국회'),
(143768, 112401, 'en', 'name', 'Walther Meissner Institute'),
(143769, 112401, 'de', 'name', 'Walther-Meißner-Institut'),
(143770, 112402, 'en', 'name', 'Higher Institute of Technological Studies of Tozeur'),
(143771, 112402, 'fr', 'name', 'Institut SupƩrieur des Etudes Technologiques de Tozeur'),
(143772, 112402, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© بتوزر'),
(143773, 112403, 'id', 'name', 'Direktorat Jenderal Imigrasi'),
(143774, 112403, 'en', 'name', 'Indonesian Directorate General of Immigration'),
(143775, 112404, 'en', 'name', 'Green Technology Center'),
(143776, 112404, 'ko', 'name', 'źµ­ź°€ė…¹ģƒ‰źø°ģˆ ģ—°źµ¬ģ†Œ'),
(143777, 112405, 'en', 'name', 'Jeju National University Hospital'),
(143778, 112405, 'ko', 'name', '제주 ėŒ€ķ•™źµ 병원'),
(143779, 112406, 'en', 'name', 'University of Barishal'),
(143780, 112406, 'bn', 'name', 'বরিশাল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(143781, 112407, 'en', 'name', 'DANCE: Dynamics and Control of Networks'),
(143782, 112407, 'fr', 'name', 'DANCE: Dynamique et contrƓle des rƩseaux'),
(143783, 112408, 'en', 'name', 'CHA University Gangnam Women''s Medical Center'),
(143784, 112408, 'ko', 'name', '강남차여성병원'),
(143785, 112409, 'en', 'name', 'GE Healthcare'),
(143786, 112409, 'no_lang_code', 'name', 'GE Healthcare (United States)'),
(143787, 112410, 'en', 'name', 'NOAA Office of Common Services'),
(143788, 112411, 'en', 'name', 'Afghanistan Science Academy'),
(143789, 112411, 'fa', 'name', 'Ų§Ś©Ų§ŲÆŁ…ŪŒ Ų¹Ł„ŁˆŁ… افغانستان'),
(143790, 112411, 'ps', 'name', 'ŲÆ افغانستان Ų¹Ł„ŁˆŁ…Łˆ Ų§Ś©Ų§Ś‰Ł…ŁŠ'),
(143791, 112412, 'en', 'name', 'Fraunhofer Institute for Material Flow and Logistics'),
(143792, 112412, 'de', 'name', 'Fraunhofer-Institut für Materialfluss und Logistik'),
(143793, 112413, 'de', 'name', 'Ludwig Boltzmann Institut für Arthritis und Rehabilitation'),
(143794, 112413, 'en', 'name', 'Ludwig Boltzmann Institute for Arthritis and Rehabilitation'),
(143795, 112414, 'en', 'name', 'National Center for Wildlife'),
(143796, 112414, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų­ŁŠŲ§Ų© Ų§Ł„ŁŲ·Ų±ŁŠŲ©'),
(143797, 112415, 'en', 'name', 'Warburg Institute'),
(143798, 112416, 'en', 'name', 'North Bangkok University'),
(143799, 112416, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø­ąø£ą¹Œąø—ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(143800, 112417, 'en', 'name', 'California Digital Library'),
(143801, 112418, 'en', 'name', 'University of Maryland Biotechnology Institute'),
(143802, 112419, 'en', 'name', 'Archaeology, Language, and Letters Research Organization'),
(143803, 112419, 'id', 'name', 'Organisasi Riset Arkeologi, Bahasa, dan Sastra'),
(143804, 112420, 'en', 'name', 'KineticAI, Inc.'),
(143805, 112420, 'no_lang_code', 'name', 'KineticAI, Inc. (United States)'),
(143806, 112421, 'en', 'name', 'British Columbia Academic Health Science Network'),
(143807, 112422, 'no_lang_code', 'name', 'Berger-Levrault (France)'),
(143808, 112423, 'en', 'name', 'Yukhnovskii Institute for Condensed Matter Physics of the National Academy of Sciences of Ukraine'),
(143809, 112423, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізики конГенсованих систем імені І.Š . Š®Ń…Š½Š¾Š²ŃŃŒŠŗŠ¾Š³Š¾ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(143810, 112424, 'fr', 'name', 'Institut des Sciences et technologies pour une Economie Circulaire des Ʃnergies bas carbone'),
(143811, 112425, 'es', 'name', 'Museo Nacional de Historia Natural ā€œProf. Eugenio de JesĆŗs Marcanoā€'),
(143812, 112425, 'en', 'name', 'National Museum of Natural History ā€œProf. Eugenio de JesĆŗs Marcanoā€'),
(143813, 112426, 'en', 'name', 'Polish Pharmacological Society'),
(143814, 112426, 'pl', 'name', 'Polskie Towarzystwo Farmakologiczne'),
(143815, 112427, 'fr', 'name', 'Bureau international des poids et mesures'),
(143816, 112427, 'en', 'name', 'International Bureau of Weights and Measures'),
(143817, 112428, 'en', 'name', 'Dystrophic Epidermolysis Bullosa Research Association of America'),
(143818, 112429, 'es', 'name', 'Instituto Tecnológico de Cuautla'),
(143819, 112430, 'en', 'name', 'Australian Defence Force Academy'),
(143820, 112431, 'pt', 'name', 'Instituto Nacional de Investigação em Saúde'),
(143821, 112431, 'en', 'name', 'National Health Research Institute'),
(143822, 112432, 'en', 'name', 'Fraunhofer Institute for Electronic Nano Systems'),
(143823, 112432, 'de', 'name', 'Fraunhofer-Institut für Elektronische Nanosysteme'),
(143824, 112433, 'en', 'name', 'Chungnam National University Hospital'),
(143825, 112433, 'ko', 'name', 'ģ¶©ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(143826, 112434, 'en', 'name', 'Ukrainian State University of Science and Technologies'),
(143827, 112434, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ науки і технологій'),
(143828, 112435, 'en', 'name', 'Fraunhofer ICT Group'),
(143829, 112435, 'de', 'name', 'Fraunhofer-Verbund IUK-Technologie'),
(143830, 112436, 'en', 'name', 'BC Studies'),
(143831, 112437, 'en', 'name', 'Rural Development Administration'),
(143832, 112437, 'ko', 'name', 'ė†ģ“Œģ§„ķ„ģ²­'),
(143833, 112438, 'en', 'name', 'Building Blocks for Future Electronics Laboratory'),
(143834, 112439, 'en', 'name', 'New Zealand Institute for Public Health and Forensic Science'),
(143835, 112440, 'id', 'name', 'Politeknik Negeri Malang'),
(143836, 112440, 'en', 'name', 'State Polytechnic of Malang'),
(143837, 112441, 'id', 'name', 'Universitas Muhammadiyah Jember'),
(143838, 112442, 'en', 'name', 'ANIMA: Authoring and directing animated story worlds'),
(143839, 112442, 'fr', 'name', 'ANIMA: Création et mise en scène des univers narratifs animés'),
(143840, 112443, 'en', 'name', 'Ludwig Boltzmann Gesellschaft Open Innovation in Science Center'),
(143841, 112444, 'en', 'name', 'Ministry of Natural Resources'),
(143842, 112444, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½č‡Ŗē„¶čµ„ęŗéƒØ'),
(143843, 112445, 'en', 'name', 'Chosun University Dental Hospital'),
(143844, 112445, 'ko', 'name', 'ģ”°ģ„ ėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(143845, 112446, 'en', 'name', 'NOAA Near Earth Orbit Network'),
(143846, 112447, 'en', 'name', 'Fraunhofer Institute for Open Communication Systems'),
(143847, 112447, 'de', 'name', 'Fraunhofer-Institut für Offene Kommunikationssysteme'),
(143848, 112448, 'en', 'name', 'The Tiffany & Co. Foundation'),
(143849, 112449, 'en', 'name', 'International Sturgeon Research Institute'),
(143850, 112449, 'fa', 'name', 'Ų§Ł†Ų³ŲŖŪŒŲŖŁˆ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁ† Ų§Ł„Ł…Ł„Ł„ŪŒ Ł…Ų§Ł‡ŪŒŲ§Ł† خاویاری'),
(143851, 112450, 'en', 'name', 'National Center for Research on Earthquake Engineering'),
(143852, 112450, 'zh', 'name', 'åœ‹å®¶åœ°éœ‡å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(143853, 112451, 'en', 'name', 'Zhejiang A & F University'),
(143854, 112451, 'zh', 'name', 'ęµ™ę±Ÿå†œęž—å¤§å­¦'),
(143855, 112452, 'en', 'name', 'Kyungpook National University'),
(143856, 112452, 'ko', 'name', 'ź²½ė¶ėŒ€ķ•™źµ'),
(143857, 112453, 'en', 'name', '3D Medicines, Inc.'),
(143858, 112453, 'no_lang_code', 'name', '3D Medicines, Inc. (China)'),
(143859, 112453, 'zh', 'name', 'ę€č·ÆčæŖåŒ»čÆ'),
(143860, 112454, 'en', 'name', 'Bolashaq Academy'),
(143861, 112454, 'kk', 'name', 'Bolashaq Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(143862, 112454, 'ru', 'name', 'АкаГемии Bolashaq'),
(143863, 112454, 'bg', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š‘Š¾Š»Š°ŃˆŠ°Šŗ'),
(143864, 112455, 'en', 'name', 'Food and Agriculture Research Organization'),
(143865, 112455, 'id', 'name', 'Organisasi Riset Pertanian dan Pangan'),
(143866, 112456, 'en', 'name', 'Fraunhofer Institute for Molecular Biology and Applied Ecology'),
(143867, 112456, 'de', 'name', 'Fraunhofer-Institut für Molekularbiologie und Angewandte Oekologie'),
(143868, 112457, 'en', 'name', 'Dr. Lal PathLabs Pvt Ltd'),
(143869, 112457, 'no_lang_code', 'name', 'Dr. Lal PathLabs Pvt Ltd (India)'),
(143870, 112458, 'fr', 'name', 'Laboratoire des Sciences du NumƩrique de Nantes'),
(143871, 112459, 'en', 'name', 'Busan Medical Center'),
(143872, 112459, 'ko', 'name', 'ė¶€ģ‚°ģ˜ė£Œģ›'),
(143873, 112460, 'en', 'name', 'Taiwan Space Agency'),
(143874, 112460, 'zh', 'name', 'åœ‹å®¶å¤Ŗē©ŗäø­åæƒ'),
(143875, 112461, 'en', 'name', 'Prevention of Organ Failure'),
(143876, 112462, 'en', 'name', 'Foundation for Environmental Medicine'),
(143877, 112463, 'en', 'name', 'German Network for Bioinformatics Infrastructure – de.NBI'),
(143878, 112464, 'en', 'name', 'University of Gafsa'),
(143879, 112464, 'fr', 'name', 'UniversitƩ de gafsa'),
(143880, 112464, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© قفصة'),
(143881, 112465, 'en', 'name', 'Virginia Division of Geology and Mineral Resources'),
(143882, 112466, 'en', 'name', 'Z. H. Sikder University of Science and Technology'),
(143883, 112466, 'bn', 'name', 'ą¦œą§‡ą¦” ą¦ą¦‡ą¦š সিকদার ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(143884, 112467, 'en', 'name', 'CHA University Gangnam Medical Center'),
(143885, 112467, 'ko', 'name', '강남차병원'),
(143886, 112468, 'en', 'name', 'Fraunhofer Institute for Production Technology IPT'),
(143887, 112468, 'de', 'name', 'Fraunhofer-Institut für Produktionstechnologie IPT'),
(143888, 112469, 'en', 'name', 'COSMIQ: Code-based Cryptology, Symmetric Cryptology and Quantum Information'),
(143889, 112469, 'fr', 'name', 'COSMIQ: Cryptologie symƩtrique, cryptologie fondƩe sur les codes et information quantique'),
(143890, 112470, 'en', 'name', 'BC Cancer Agency'),
(143891, 112471, 'en', 'name', 'Fraunhofer Institute for High Frequency Physics and Radar Techniques'),
(143892, 112471, 'de', 'name', 'Fraunhofer-Institut für Hochfrequenzphysik und Radartechnik'),
(143893, 112472, 'en', 'name', 'Hanyang University Seoul Hospital'),
(143894, 112472, 'ko', 'name', 'ķ•œģ–‘ėŒ€ķ•™źµė³‘ģ›'),
(143895, 112473, 'en', 'name', 'Third Institute of Oceanography'),
(143896, 112473, 'zh', 'name', '简称海擋三所'),
(143897, 112474, 'en', 'name', 'Korea Environment Institute'),
(143898, 112474, 'ko', 'name', 'ķ•œźµ­ķ™˜ź²½ģ—°źµ¬ģ›'),
(143899, 112475, 'en', 'name', 'Centre for Accelerator Science'),
(143900, 112476, 'ms', 'name', 'Kolej Matrikulasi Pahang'),
(143901, 112477, 'en', 'name', 'NanoMedicines Innovation Network'),
(143902, 112478, 'fr', 'name', 'SPADES: Programmation de systèmes embarqués sûrs et adaptatifs'),
(143903, 112478, 'en', 'name', 'SPADES: Sound Programming of Adaptive Dependable Embedded Systems'),
(143904, 112479, 'en', 'name', 'Maxima Medical Centre'),
(143905, 112479, 'nl', 'name', 'MƔxima Medisch Centrum'),
(143906, 112480, 'en', 'name', 'Hallym University Dongtan Sacred Heart Hospital'),
(143907, 112480, 'ko', 'name', 'ķ•œė¦¼ėŒ€ķ•™źµ ė™ķƒ„ģ„±ģ‹¬ė³‘ģ›'),
(143908, 112481, 'en', 'name', 'International Union of Geodesy and Geophysics'),
(143909, 112481, 'fr', 'name', 'Union GƩodƩsique et GƩophysique Internationale'),
(143910, 112482, 'en', 'name', 'Gangwon State University'),
(143911, 112482, 'ko', 'name', 'ź°•ģ›ė„ė¦½ėŒ€ķ•™źµ'),
(143912, 112483, 'en', 'name', 'The Hospital Research Foundation Group'),
(143913, 112484, 'en', 'name', 'Goswami Tulsidas Government Postgraduate College Karvi, Chitrakoot'),
(143914, 112484, 'hi', 'name', 'ą¤—ą„‹ą¤øą„ą¤µą¤¾ą¤®ą„€ ą¤¤ą„ą¤²ą¤øą„€ą¤¦ą¤¾ą¤ø ą¤°ą¤¾ą¤œą¤•ą„€ą¤Æ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤•ą¤°ą„ą¤µą„€ ą¤šą¤æą¤¤ą„ą¤°ą„‚ą¤•ą¤Ÿ'),
(143915, 112485, 'no_lang_code', 'name', 'Fraunhofer Institute for Wood Research Wilhelm-Klauditz-Institut'),
(143916, 112485, 'de', 'name', 'Fraunhofer-Institut für Holzforschung Wilhelm-Klauditz-Institut'),
(143917, 112486, 'en', 'name', 'Center of Ukrainian Researchers in Austria'),
(143918, 112486, 'de', 'name', 'Zentrum Ukrainische Forscher:innen in Ɩsterreich'),
(143919, 112487, 'en', 'name', 'Kyungpook National University Hospital'),
(143920, 112487, 'ko', 'name', 'ź²½ė¶ėŒ€ķ•™źµė³‘ģ›'),
(143921, 112488, 'fr', 'name', 'ARAMIS: Algorithmes, modèles et méthodes pour les images et les signaux du cerveau humain sain et pathologique'),
(143922, 112488, 'en', 'name', 'ARAMIS: Algorithms, models and methods for images and signals of the human brain'),
(143923, 112489, 'en', 'name', 'Fraunhofer Chile Research Foundation'),
(143924, 112490, 'fr', 'name', 'Biologie Ʃvolutive et Ʃcologie des algues'),
(143925, 112490, 'en', 'name', 'Evolutionary Biology and Ecology of Algae'),
(143926, 112491, 'en', 'name', 'Centre for Tropical Biodiversity Conservation'),
(143927, 112492, 'hi', 'name', 'Annasaheb Magar Mahavidyalaya, Hadapsar, Pune'),
(143928, 112493, 'fr', 'name', 'ROBOTLEARN: Apprentissage, perception et commande pour des robots sociaux'),
(143929, 112493, 'en', 'name', 'ROBOTLEARN: Learning, perception and control for social robots'),
(143930, 112494, 'pt', 'name', 'Instituto Federal do Rio de Janeiro'),
(143931, 112495, 'en', 'name', 'Department of Fisheries of the Government of the People''s Republic of Bangladesh'),
(143932, 112495, 'bn', 'name', 'ą¦®ą§Žą¦øą§ą¦Æ ą¦…ą¦§ą¦æą¦¦ą¦Ŗą§ą¦¤ą¦° ą¦—ą¦£ą¦Ŗą§ą¦°ą¦œą¦¾ą¦¤ą¦Øą§ą¦¤ą§ą¦°ą§€ বাংলাদেশ সরকার'),
(143933, 112496, 'en', 'name', 'Philippine Science High School SOCCSKSARGEN Region Campus'),
(143934, 112497, 'fr', 'name', 'Centre de Recherche Scientifique et Technique en Analyses Physico-Chimiques'),
(143935, 112497, 'en', 'name', 'Scientific and Technical Research Centre in Physico-Chemical Analyses'),
(143936, 112497, 'ar', 'name', 'Ł…Ų±ŁƒŲ² البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠ في Ų§Ł„ŲŖŲ­Ł„ŁŠŁ„ Ų§Ł„ŁŁŠŲ²ŁŠŲ§Ų¦ŁŠ ŁˆŲ§Ł„ŁƒŁŠŁ…ŁŠŲ§Ų¦ŁŠ'),
(143937, 112498, 'en', 'name', 'CORSE: Compiler Optimization and Run-time SystEms'),
(143938, 112499, 'tl', 'name', 'Mataas na Paaralang Pang-agham ng Pilipinas'),
(143939, 112499, 'en', 'name', 'Philippine Science High School System'),
(143940, 112500, 'no_lang_code', 'name', 'Konkuk University'),
(143941, 112500, 'ko', 'name', 'ź±“źµ­ėŒ€ķ•™źµ'),
(143942, 112501, 'sr', 'name', 'Akademija strukovnih studija Zapadna Srbija'),
(143943, 112501, 'en', 'name', 'Western Serbia Academy of Applied Studies'),
(143944, 112502, 'id', 'name', 'Universitas Sains Cut Nyak Dhien'),
(143945, 112503, 'en', 'name', 'AIO: Dependable Networking, Low-Power Wireless and Micro-Robotics'),
(143946, 112503, 'fr', 'name', 'AIO: Mise en rƩseau fiable, sans fil Ơ faible consommation et micro-robotique'),
(143947, 112504, 'en', 'name', 'Chungnam National University'),
(143948, 112504, 'ko', 'name', 'ģ¶©ė‚ØėŒ€ķ•™źµ'),
(143949, 112505, 'en', 'name', 'Chilean Gastroenterology Society'),
(143950, 112505, 'es', 'name', 'Sociedad Chilena de GastroenterologĆ­a');
INSERT INTO `ror_settings` VALUES
(143951, 112506, 'pt', 'name', 'Bio Bureau Biotecnologia'),
(143952, 112506, 'no_lang_code', 'name', 'Bio Bureau Biotecnologia (Brazil)'),
(143953, 112507, 'en', 'name', 'HMU Health and Medical University Erfurt'),
(143954, 112508, 'en', 'name', 'Yellow Sea Fisheries Research Institute'),
(143955, 112508, 'zh', 'name', '黄海氓产研究所'),
(143956, 112509, 'no_lang_code', 'name', 'Canon (Japan)'),
(143957, 112509, 'ja', 'name', 'ć‚­ćƒ¤ćƒŽćƒ³ę Ŗå¼ä¼šē¤¾'),
(143958, 112510, 'en', 'name', 'Astroparticle and Cosmology Laboratory'),
(143959, 112510, 'fr', 'name', 'Laboratoire AstroParticule et Cosmologie'),
(143960, 112511, 'en', 'name', 'Kyung Hee University Medical Hospital at Gangdong'),
(143961, 112511, 'ko', 'name', 'ź°•ė™ź²½ķ¬ėŒ€ķ•™źµģ˜ėŒ€ė³‘ģ›'),
(143962, 112512, 'fr', 'name', 'Laboratoire Interdisciplinaire des Ɖnergies de Demain'),
(143963, 112513, 'fr', 'name', 'Laboratoire de Cristallographie et RMN Biologiques'),
(143964, 112514, 'en', 'name', 'Al-Farooque Unani Medical College, Indore'),
(143965, 112515, 'en', 'name', 'Korea Institute of Science & Technology Evaluation and Planning'),
(143966, 112515, 'zh', 'name', 'éŸ“åœ‹ē§‘å­øęŠ€č”“ä¼åŠƒč©•åƒ¹é™¢'),
(143967, 112515, 'ko', 'name', 'ķ•œźµ­ź³¼ķ•™źø°ģˆ źø°ķšķ‰ź°€ģ›'),
(143968, 112516, 'fr', 'name', 'Unite de recherche migrations et sociƩtƩs'),
(143969, 112517, 'fr', 'name', 'Laboratoire de Physique Statistique'),
(143970, 112518, 'fr', 'name', 'Histoire des ThƩories Linguistiques'),
(143971, 112519, 'en', 'name', 'Professional Football Researchers Association'),
(143972, 112520, 'fr', 'name', 'Enveloppes fluides : de la ville Ć  l''exobiologie'),
(143973, 112520, 'en', 'name', 'Fluid envelopes: from cities to exobiology'),
(143974, 112521, 'fr', 'name', 'HIPI -  Immunologie humaine, physiopathologie et immunithƩrapie'),
(143975, 112521, 'en', 'name', 'HIPI - Human Immunology, Pathophysiology and Immunotherapy'),
(143976, 112522, 'fr', 'name', 'Observatoire des Sciences de l’Univers Terre Homme Environnement Temps Astronomie'),
(143977, 112523, 'fr', 'name', 'MathƩmatiques AppliquƩes Ơ Paris 5'),
(143978, 112524, 'fr', 'name', 'Interfaces Traitements Organisation et Dynamique des SystĆØmes'),
(143979, 112525, 'fr', 'name', 'Registre de Dialyse PƩritonƩale de Langue FranƧaise'),
(143980, 112526, 'en', 'name', 'European Association of Science Editors'),
(143981, 112527, 'fr', 'name', 'Institut de Physique Nucleaire de Lyon'),
(143982, 112527, 'en', 'name', 'Institute of Nuclear Physics of Lyon'),
(143983, 112528, 'fr', 'name', 'Physiopathologie et pharmacotoxicologie placentaire humaine : Microbiote prƩ & post natal'),
(143984, 112529, 'en', 'name', 'National Research Council for Economics Humanities and Social Science'),
(143985, 112529, 'ko', 'name', 'ź²½ģ œĀ·ģøė¬øģ‚¬ķšŒģ—°źµ¬ķšŒ'),
(143986, 112530, 'fr', 'name', 'Approches Linguistiques ThƩoriques, AppliquƩes et ExpƩrimentales : langues et cultures connectƩes'),
(143987, 112531, 'es', 'name', 'Hospital Infantil Universitario Niño Jesús'),
(143988, 112532, 'fr', 'name', 'Pharmacologie et thƩrapie des addictions'),
(143989, 112533, 'en', 'name', 'IK Foundation'),
(143990, 112534, 'fr', 'name', 'Cibles ThƩrapeutiques et conception de mƩdicaments'),
(143991, 112535, 'en', 'name', 'First City Providential College'),
(143992, 112536, 'en', 'name', 'CUNY Advanced Science Research Center'),
(143993, 112537, 'af', 'name', 'Noordwes-Universiteit'),
(143994, 112537, 'en', 'name', 'North-West University'),
(143995, 112537, 'st', 'name', 'Yunivesithi ya Leboya Bophirima'),
(143996, 112538, 'pt', 'name', 'Instituto Nacional de Pesquisas Espaciais'),
(143997, 112538, 'en', 'name', 'National Institute for Space Research'),
(143998, 112539, 'fr', 'name', 'Centre de Recherche en ƉpistĆ©mologie AppliquĆ©e'),
(143999, 112540, 'en', 'name', 'Ludwig Boltzmann Institute Applied Diagnostics'),
(144000, 112541, 'fr', 'name', 'Laboratoire Dynamiques Sociales et Recomposition des Espaces'),
(144001, 112542, 'fr', 'name', 'CEA Grenoble'),
(144002, 112543, 'en', 'name', 'Dongguk University Medical Center'),
(144003, 112543, 'ko', 'name', 'ė™źµ­ėŒ€ķ•™źµģ˜ė£Œģ›'),
(144004, 112544, 'en', 'name', 'Institute of Astronomy Space and Earth Science'),
(144005, 112545, 'en', 'name', 'Ministry of Environment'),
(144006, 112545, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ķ™˜ź²½ė¶€'),
(144007, 112546, 'fr', 'name', 'Centre de Gestion Scientifique'),
(144008, 112546, 'en', 'name', 'Mines Paris, PSL University, Centre for management science (CGS)'),
(144009, 112547, 'en', 'name', 'Fisheries and Oceans Canada'),
(144010, 112547, 'fr', 'name', 'Pêches et Océans Canada'),
(144011, 112548, 'fr', 'name', 'HƓpital Cochin'),
(144012, 112549, 'en', 'name', 'DOI Foundation'),
(144013, 112550, 'fr', 'name', 'Typologie et Universaux Linguistiques'),
(144014, 112551, 'fr', 'name', 'Hématopoïèse normale et pathologique : Emergence, environnement et recherche translationnelle'),
(144015, 112551, 'en', 'name', 'Normal and pathological hematopoiesis: Emergence, Environment and translational research'),
(144016, 112552, 'en', 'name', 'kassel university press'),
(144017, 112553, 'en', 'name', 'Genetic Stability and Oncogenesis'),
(144018, 112553, 'fr', 'name', 'Stabilité génétique et oncogenèse'),
(144019, 112554, 'fr', 'name', 'HÓpital Adélaïde-Hautval'),
(144020, 112555, 'fr', 'name', 'Ɖcole nationale supĆ©rieure de techniques avancĆ©es Bretagne'),
(144021, 112556, 'en', 'name', 'The Catholic University of Korea Bucheon St. Mary''s Hospital'),
(144022, 112556, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ ė¶€ģ²œģ„±ėŖØė³‘ģ›'),
(144023, 112557, 'fr', 'name', 'Centre d''Investigation Clinique de Vaccinologie Cochin-Pasteur'),
(144024, 112558, 'fr', 'name', 'GƩnomique Fonctionnelle des Tumeurs Solides'),
(144025, 112559, 'fr', 'name', 'Laboratoire MƩmoire, Cerveau et Cognition'),
(144026, 112560, 'fr', 'name', 'Astrophysique, Instrumentation et ModƩlisation'),
(144027, 112561, 'en', 'name', 'Shanxi Academy of Ancient Building and Painted Sculpture & Fresco Preservation'),
(144028, 112561, 'zh', 'name', 'å±±č„æēœå¤å»ŗē­‘äøŽå½©å”‘å£ē”»äæęŠ¤ē ”ē©¶é™¢'),
(144029, 112562, 'fr', 'name', 'Laboratoire d''Hydraulique Saint-Venant'),
(144030, 112563, 'fr', 'name', 'Neurophysiologie et nouvelles microscopies'),
(144031, 112563, 'en', 'name', 'Neurophysiology & New Microscopies Laboratory'),
(144032, 112564, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Spree-Havel'),
(144033, 112565, 'en', 'name', 'United University'),
(144034, 112566, 'en', 'name', 'KCMC University'),
(144035, 112567, 'en', 'name', 'City University of New York'),
(144036, 112567, 'es', 'name', 'Universidad de la Ciudad de Nueva York'),
(144037, 112567, 'fr', 'name', 'UniversitƩ de la Ville de New York'),
(144038, 112568, 'no_lang_code', 'name', 'Dankook University'),
(144039, 112568, 'ko', 'name', 'ė‹Øźµ­ėŒ€ķ•™źµ'),
(144040, 112569, 'en', 'name', 'Yonsei University'),
(144041, 112569, 'ko', 'name', 'ģ—°ģ„øėŒ€ķ•™źµ'),
(144042, 112570, 'en', 'name', 'Springer Nature (Singapore)'),
(144043, 112571, 'es', 'name', 'Universidad CuauhtƩmoc San Luis Potosƭ'),
(144044, 112572, 'en', 'name', 'Ministry of Agriculture, Food and Rural Affairs'),
(144045, 112572, 'ko', 'name', 'ė†ė¦¼ģ¶•ģ‚°ģ‹ķ’ˆė¶€'),
(144046, 112573, 'en', 'name', 'Institute and Observatory of Geophysics of Antananarivo'),
(144047, 112574, 'en', 'name', 'Cardiovascular Markers in Stressed Conditions'),
(144048, 112574, 'fr', 'name', 'Marqueurs cardiovasculaires en situation de stress'),
(144049, 112575, 'en', 'name', 'Jeonbuk National University'),
(144050, 112575, 'ko', 'name', 'ģ „ė¶ėŒ€ķ•™źµ'),
(144051, 112576, 'fr', 'name', 'France Cohortes'),
(144052, 112577, 'en', 'name', 'Dong-A University Hospital'),
(144053, 112577, 'ko', 'name', 'ė™ģ•„ėŒ€ķ•™źµė³‘ģ›'),
(144054, 112578, 'fr', 'name', 'Evolution et ingénierie de systèmes dynamiques'),
(144055, 112579, 'en', 'name', 'Ministry of National Defense'),
(144056, 112579, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ źµ­ė°©ė¶€'),
(144057, 112580, 'fr', 'name', 'Institut National de Physique NuclƩaire et de Physique des Particules'),
(144058, 112581, 'fr', 'name', 'Laboratoire de Physique NuclĆ©aire et de Hautes Ɖnergies'),
(144059, 112582, 'en', 'name', 'Hakuhodo DY Holdings (Japan)'),
(144060, 112583, 'fr', 'name', 'Centre Hospitalier d''Orsay'),
(144061, 112584, 'en', 'name', 'Formal Linguistics Laboratory'),
(144062, 112584, 'fr', 'name', 'Laboratoire de Linguistique Formelle'),
(144063, 112585, 'fr', 'name', 'Laboratoire Eau, Environnement et SystĆØmes Urbains'),
(144064, 112586, 'en', 'name', 'Biomedtech Facilities'),
(144065, 112587, 'en', 'name', 'Chungbuk National University'),
(144066, 112587, 'ko', 'name', 'ģ¶©ė¶ėŒ€ķ•™źµ'),
(144067, 112588, 'es', 'name', 'Instituto Superior de Educación "Divina Esperanza"'),
(144068, 112589, 'en', 'name', 'Gyeongsang National University'),
(144069, 112589, 'ko', 'name', 'ź²½ģƒėŒ€ķ•™źµ'),
(144070, 112590, 'en', 'name', 'APNIC Foundation'),
(144071, 112591, 'hr', 'name', 'SveučiliŔte u Innsbrucku'),
(144072, 112591, 'en', 'name', 'University of Innsbruck'),
(144073, 112591, 'de', 'name', 'UniversitƤt Innsbruck'),
(144074, 112591, 'sl', 'name', 'Univerza v Innsbrucku'),
(144075, 112592, 'de', 'name', 'Auguste-Viktoria-Klinik'),
(144076, 112593, 'en', 'name', 'Defense Acquisition Program Administration'),
(144077, 112593, 'ko', 'name', 'ė°©ģœ„ģ‚¬ģ—…ģ²­'),
(144078, 112594, 'en', 'name', 'Sonargaon University'),
(144079, 112594, 'bn', 'name', 'সোনারগাঁও ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(144080, 112594, 'ta', 'name', 'ą®šąÆ‹ą®©ą®¾ą®°ąÆą®•ą®¾ą®®ąÆ‹ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(144081, 112595, 'en', 'name', 'BioControl Jena (Germany)'),
(144082, 112596, 'en', 'name', 'Korea Meteorological Administration'),
(144083, 112596, 'ko', 'name', '기상청'),
(144084, 112597, 'fr', 'name', 'Laboratoire Univers et ThƩories'),
(144085, 112597, 'en', 'name', 'Laboratory Universe and Theories'),
(144086, 112598, 'en', 'name', 'Jyoban Hospital of Tokiwa Foundation'),
(144087, 112598, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćØćć‚ä¼šåøøē£ē—…é™¢'),
(144088, 112599, 'en', 'name', 'Pusan National University Dental Hospital'),
(144089, 112599, 'ko', 'name', 'ė¶€ģ‚°ėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(144090, 112600, 'en', 'name', 'United Institute of Medical Sciences'),
(144091, 112601, 'en', 'name', 'LabSD, Inc. (South Korea)'),
(144092, 112602, 'en', 'name', 'Ministry of Land, Infrastructure and Transport'),
(144093, 112602, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ 국토교통부'),
(144094, 112603, 'fr', 'name', 'Centre Hospitalier Sainte-Anne'),
(144095, 112604, 'no_lang_code', 'name', 'Myongji Hospital'),
(144096, 112604, 'ko', 'name', '명지병원'),
(144097, 112605, 'en', 'name', 'Seoul National University Hospital'),
(144098, 112605, 'ko', 'name', 'ģ„œģšøėŒ€ė³‘ģ›'),
(144099, 112606, 'en', 'name', 'Center for the Sociology of Innovation'),
(144100, 112606, 'fr', 'name', 'Centre de sociologie de l''innovation'),
(144101, 112607, 'en', 'name', 'Barcelona Supercomputing Center'),
(144102, 112607, 'es', 'name', 'Centro Nacional de Supercomputación'),
(144103, 112608, 'fr', 'name', 'Institut National de la Transfusion Sanguine'),
(144104, 112608, 'en', 'name', 'National Institute of Blood Transfusion'),
(144105, 112609, 'en', 'name', 'Daegu Catholic University'),
(144106, 112609, 'ko', 'name', 'ėŒ€źµ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(144107, 112610, 'fr', 'name', 'Centre de Recherche sur les Liens Sociaux'),
(144108, 112611, 'en', 'name', 'Center for Artificial Intelligence Research Nepal'),
(144109, 112612, 'fr', 'name', 'HƓpital Corentin-Celton'),
(144110, 112613, 'fr', 'name', 'NeuroDiderot'),
(144111, 112614, 'en', 'name', 'FightMND'),
(144112, 112615, 'fr', 'name', 'Bioscar'),
(144113, 112616, 'en', 'name', 'National University of General Sarmiento'),
(144114, 112616, 'es', 'name', 'Universidad Nacional de General Sarmiento'),
(144115, 112616, 'it', 'name', 'UniversitĆ  Nazionale di General Sarmiento'),
(144116, 112616, 'fr', 'name', 'UniversitƩ nationale de general sarmiento'),
(144117, 112617, 'fr', 'name', 'HƓpital Louis-Mourier'),
(144118, 112618, 'de', 'name', 'Wasserstraßen-Neubauamt Magdeburg'),
(144119, 112619, 'en', 'name', 'Dong-A University'),
(144120, 112619, 'ko', 'name', 'ė™ģ•„ėŒ€ķ•™źµ'),
(144121, 112620, 'en', 'name', 'Epigenetics and Cell Fate'),
(144122, 112620, 'fr', 'name', 'EpigƩnƩtique et Destin Cellulaire'),
(144123, 112621, 'es', 'name', 'Museo de Ciencias Naturales de Tenerife'),
(144124, 112622, 'en', 'name', 'Unit of Functional and Adaptive Biology'),
(144125, 112623, 'fr', 'name', 'RIATE - Centre pour l''analyse spatiale et la gƩovisualisation'),
(144126, 112624, 'en', 'name', 'Metabolism and Renal Physiology'),
(144127, 112624, 'fr', 'name', 'MƩtabolisme et Physiologie RƩnale'),
(144128, 112625, 'en', 'name', 'Igdir State Hospital'),
(144129, 112625, 'tr', 'name', 'Iğdır Devlet Hastanesi'),
(144130, 112626, 'en', 'name', 'Abterra Biosciences (United States)'),
(144131, 112627, 'fr', 'name', 'Sciences, Philosophie, Histoire'),
(144132, 112628, 'en', 'name', 'Construction Engineering Research Institute Foundation'),
(144133, 112628, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­å·„å­¦ē ”ē©¶ę‰€'),
(144134, 112629, 'en', 'name', 'Asan Foundation'),
(144135, 112629, 'ko', 'name', 'ģ•„ģ‚°ģ‚¬ķšŒė³µģ§€ģž¬ė‹Ø'),
(144136, 112630, 'de', 'name', 'Zoo Hannover gGmbH'),
(144137, 112631, 'en', 'name', 'Cellular and Chemical Biology'),
(144138, 112631, 'fr', 'name', 'Chimie et Biologie de la Cellule'),
(144139, 112632, 'de', 'name', 'E.C.O. Institut für Ɩkologie GmbH (Austria)'),
(144140, 112632, 'en', 'name', 'E.C.O. Institute of Ecology'),
(144141, 112633, 'fr', 'name', 'La FƩdƩration maritime du Canada'),
(144142, 112633, 'en', 'name', 'Shipping Federation of Canada'),
(144143, 112634, 'en', 'name', 'Indonesian Adventist University'),
(144144, 112634, 'id', 'name', 'Universitas Advent Indonesia'),
(144145, 112635, 'en', 'name', 'University and State Library of Saxony-Anhalt'),
(144146, 112635, 'de', 'name', 'UniversitƤts- und Landesbibliothek Sachsen-Anhalt'),
(144147, 112636, 'fr', 'name', 'Centre d''Ʃtudes mexicaines et centramericaines'),
(144148, 112636, 'es', 'name', 'Centro FrancƩs de Estudios Mexicanos y Centroamericanos'),
(144149, 112637, 'fr', 'name', 'FƩdƩration de recherche PLAS@PAR'),
(144150, 112638, 'fr', 'name', 'Evaluation et recherche en services et politiques en santƩ pour les populations vulnƩrables'),
(144151, 112639, 'fr', 'name', 'Mère et enfant en milieu tropical : pathogènes, système de santé et transition épidémiologique'),
(144152, 112640, 'en', 'name', 'Soddo Christian General Hospital'),
(144153, 112641, 'fr', 'name', 'UMR GƩographie-citƩs'),
(144154, 112642, 'en', 'name', 'Pusan National University'),
(144155, 112642, 'ko', 'name', 'ė¶€ģ‚°ėŒ€ķ•™źµ'),
(144156, 112643, 'fr', 'name', 'Laboratoire d''Optique AppliquƩe'),
(144157, 112644, 'en', 'name', 'Ewha Womans University Medical Center'),
(144158, 112644, 'ko', 'name', 'ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµģ˜ė£Œģ›'),
(144159, 112645, 'en', 'name', 'Khwaja Yunus Ali University'),
(144160, 112645, 'bn', 'name', 'ą¦–ą¦¾ą¦œą¦¾ ইউনুস আলী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(144161, 112646, 'fr', 'name', 'Institut Cochin'),
(144162, 112647, 'en', 'name', 'Warsaw Medical Academy of Applied Sciences'),
(144163, 112647, 'pl', 'name', 'Warszawska Akademia Medyczna Nauk Stosowanych'),
(144164, 112648, 'fr', 'name', 'Laboratoire HƩtƩroƩlƩments et Coordination'),
(144165, 112649, 'fr', 'name', 'International center for Zetta-Exawtt Science and Technology'),
(144166, 112650, 'en', 'name', 'The Korea Institute of Public Administration'),
(144167, 112650, 'ko', 'name', 'ķ•œźµ­ķ–‰ģ •ģ—°źµ¬ģ›'),
(144168, 112651, 'fr', 'name', 'Formation et apprentissages professionnels'),
(144169, 112652, 'en', 'name', 'Severance Hospital'),
(144170, 112652, 'ko', 'name', 'ģ„øėøŒėž€ģŠ¤ė³‘ģ›'),
(144171, 112653, 'en', 'name', 'Department of Natural Resources and Environment Tasmania'),
(144172, 112654, 'fr', 'name', 'Laboratoire Innovations Technologiques pour la DƩtection et le Diagnostic'),
(144173, 112654, 'en', 'name', 'Laboratory Technological Innovations for the Detection and Diagnosis'),
(144174, 112655, 'fr', 'name', 'Centre de Recherche des Cordeliers'),
(144175, 112655, 'en', 'name', 'Cordeliers Research Centre'),
(144176, 112656, 'fr', 'name', 'Innovations ThƩrapeutiques en HƩmostase'),
(144177, 112657, 'fr', 'name', 'HƓpitaux Universitaires Paris-Ouest'),
(144178, 112658, 'fr', 'name', 'Laboratoire Traitement et Communication de l’Information'),
(144179, 112659, 'fr', 'name', 'Laboratoire de MƩcanique et ses Interfaces'),
(144180, 112660, 'en', 'name', 'Science and Technology Policy Institute'),
(144181, 112660, 'ko', 'name', 'ź³¼ķ•™źø°ģˆ ģ •ģ±…ģ—°źµ¬ģ›'),
(144182, 112661, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Techniques AvancĆ©es Paris'),
(144183, 112662, 'fr', 'name', 'Laboratoire de Biochimie ThƩorique'),
(144184, 112662, 'en', 'name', 'Laboratory of Theoretical Biochemistry'),
(144185, 112663, 'de', 'name', 'Reha Zentrum Münster Betriebs GmbH'),
(144186, 112664, 'en', 'name', 'Imagine Institute for Genetic Diseases'),
(144187, 112664, 'fr', 'name', 'Institut des Maladies GƩnƩtiques Imagine'),
(144188, 112665, 'en', 'name', 'Amsterdam UMC Location University of Amsterdam'),
(144189, 112666, 'en', 'name', 'University of North Dakota'),
(144190, 112666, 'fr', 'name', 'UniversitƩ du dakota du nord'),
(144191, 112667, 'en', 'name', 'Jaseng Hospital of Korean Medicine'),
(144192, 112667, 'ko', 'name', 'ģžģƒķ•œė°©ė³‘ģ›'),
(144193, 112668, 'en', 'name', 'Altamash Institute of Dental Medicine'),
(144194, 112669, 'en', 'name', 'Levy Mwanawasa Medical University'),
(144195, 112670, 'en', 'name', 'Friends of Snakes Society'),
(144196, 112671, 'fr', 'name', 'HƓpital Saint-Louis'),
(144197, 112672, 'fr', 'name', 'Institut thƩmatique Neurosciences, sciences cognitives, neurologie, psychiatrie'),
(144198, 112673, 'fr', 'name', 'Institut Pierre-Simon Laplace'),
(144199, 112674, 'en', 'name', 'Brain Physiology Lab'),
(144200, 112674, 'fr', 'name', 'Laboratoire Physiologie CƩrƩbrale'),
(144201, 112675, 'en', 'name', 'Institute for Social Research'),
(144202, 112676, 'fr', 'name', 'Laboratoire d''Informatique Algorithmique: Fondements et Applications'),
(144203, 112677, 'fr', 'name', 'DƩlƩgation Bretagne et Pays de la Loire'),
(144204, 112678, 'en', 'name', 'Gyeongsang National University Hospital'),
(144205, 112678, 'ko', 'name', 'ź²½ģƒźµ­ė¦½ėŒ€ķ•™źµė³‘ģ›'),
(144206, 112679, 'en', 'name', 'Goa College of Architecture'),
(144207, 112680, 'fr', 'name', 'DƩlƩgation Paris 7'),
(144208, 112681, 'en', 'name', 'Korea Astronomy and Space Science Institute'),
(144209, 112681, 'ko', 'name', 'ķ•œźµ­ģ²œė¬øģ—°źµ¬ģ›'),
(144210, 112682, 'en', 'name', 'Health Research Institute of the Princess University Hospital'),
(144211, 112682, 'es', 'name', 'Instituto de Investigación Sanitaria del Hospital Universitario de La Princesa'),
(144212, 112683, 'mg', 'name', 'Oniversiten''Antananarivo'),
(144213, 112683, 'en', 'name', 'University of Antananarivo'),
(144214, 112683, 'fr', 'name', 'UniversitƩ d''Antananarivo'),
(144215, 112684, 'en', 'name', 'Fort Lauderdale Fire-Rescue'),
(144216, 112685, 'fr', 'name', 'Anthropologie et Histoire des Mondes Antiques'),
(144217, 112685, 'en', 'name', 'Anthropology and History of the Ancient World'),
(144218, 112686, 'en', 'name', 'Nepal College of Information Technology'),
(144219, 112686, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą¤²ą„‡ą¤œ अफ ą¤‡ą¤Øą„ą¤«ą¤°ą„ą¤®ą„‡ą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‹ą¤œą„€'),
(144220, 112687, 'en', 'name', 'Hanyang University Guri Hospital'),
(144221, 112687, 'ko', 'name', 'ķ•œģ–‘ėŒ€ķ•™źµźµ¬ė¦¬ė³‘ģ›'),
(144222, 112688, 'fr', 'name', 'Laboratory Preuves, Programmes et SystĆØmes'),
(144223, 112689, 'fr', 'name', 'Centre de recherche sur les civilisations de l''Asie orientale'),
(144224, 112690, 'no_lang_code', 'name', 'J. S. Ayurveda Mahavidyalaya and P.D. Patel Ayurveda Hospital'),
(144225, 112691, 'en', 'name', 'Busan Development Institute'),
(144226, 112691, 'ko', 'name', '부산연구원'),
(144227, 112692, 'en', 'name', 'National Institute for Sports, Nigeria'),
(144228, 112693, 'en', 'name', 'Silvaco Group, Inc. (United States)'),
(144229, 112694, 'en', 'name', 'Yerkes Observatory'),
(144230, 112695, 'pt', 'name', 'Faculdade Luterana de Teologia'),
(144231, 112696, 'de', 'name', 'Soziologisches Forschungsinstitut Gƶttingen'),
(144232, 112697, 'en', 'name', 'Datta Meghe Institute of Higher Education and Research'),
(144233, 112698, 'en', 'name', 'Oran Graduate School of Economics'),
(144234, 112699, 'fr', 'name', 'Institut des Sciences du Sport-SantƩ de Paris'),
(144235, 112700, 'en', 'name', 'National Oil Corporation of Kenya'),
(144236, 112701, 'en', 'name', 'University of Bradford'),
(144237, 112702, 'en', 'name', 'Jinfeng Laboratory'),
(144238, 112702, 'zh', 'name', 'é‡‘å‡¤å®žéŖŒå®¤'),
(144239, 112703, 'fr', 'name', 'SystĆØme de Production d’Ions Radioactifs AccĆ©lĆ©rĆ©s en Ligne'),
(144240, 112703, 'cs', 'name', 'SystĆØme de Production d’Ions Radioactifs AccĆ©lĆ©rĆ©s en Ligne – ĆŗÄast ČR'),
(144241, 112704, 'en', 'name', 'The Unjournal'),
(144242, 112705, 'fr', 'name', 'Imagerie X en ostƩo-articulaire pour la recherche'),
(144243, 112706, 'en', 'name', 'Tochigi Prefectural Agricultural Experiment Station'),
(144244, 112706, 'ja', 'name', 'ę ƒęœØēœŒč¾²ę„­č©¦éØ“å “'),
(144245, 112707, 'en', 'name', 'University of Reunion Island'),
(144246, 112707, 'fr', 'name', 'UniversitƩ de La RƩunion'),
(144247, 112708, 'en', 'name', 'Future of Research Communication and e-Scholarship (FORCE11)'),
(144248, 112709, 'fr', 'name', 'Institut de Psychiatrie et Neurosciences de Paris'),
(144249, 112709, 'en', 'name', 'Institute of Psychiatry and Neuroscience of Paris'),
(144250, 112710, 'en', 'name', 'Center for Social Studies on African, American and Asian Worlds'),
(144251, 112710, 'fr', 'name', 'Centre d’études en Sciences Sociales sur les Mondes Africains, AmĆ©ricains et Asiatiques'),
(144252, 112711, 'fr', 'name', 'Institut de Biosciences et Biotechnologies'),
(144253, 112712, 'hu', 'name', 'Erdélyi Múzeum-Egyesület'),
(144254, 112713, 'en', 'name', 'Catholic University of Korea'),
(144255, 112713, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(144256, 112714, 'en', 'name', 'Chung-Ang University Healthcare System'),
(144257, 112714, 'ko', 'name', 'ģ¤‘ģ•™ėŒ€ķ•™źµģ˜ė£Œģ›'),
(144258, 112715, 'en', 'name', 'Chonnam National University Hospital'),
(144259, 112715, 'ko', 'name', 'ģ „ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(144260, 112716, 'en', 'name', 'Multiplanet University'),
(144261, 112717, 'en', 'name', 'University of Medicine and Pharmacy at Ho Chi Minh City'),
(144262, 112717, 'vi', 'name', 'ĐẔi hį»c Y Dược ThĆ nh phố Hồ ChĆ­ Minh'),
(144263, 112718, 'de', 'name', 'Schader-Stiftung'),
(144264, 112719, 'es', 'name', 'Sabbag Radiólogos'),
(144265, 112720, 'en', 'name', 'The Leprosy Mission Hospital, Naini'),
(144266, 112721, 'pt', 'name', 'Sociedade Brasileira de ResiliĆŖncia (Brazil)'),
(144267, 112722, 'en', 'name', 'Jyoban Hospital of Tokiwa Foundation'),
(144268, 112722, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćØćć‚ä¼šåøøē£ē—…é™¢'),
(144269, 112723, 'fr', 'name', 'Centre de Neurophysique Physiologie et Pathologie'),
(144270, 112724, 'en', 'name', 'World Institute of Kimchi'),
(144271, 112724, 'ko', 'name', 'ģ„øź³„ź¹€ģ¹˜ģ—°źµ¬ģ†Œ'),
(144272, 112725, 'pt', 'name', 'Centro Cardiovascular da Universidade de Lisboa'),
(144273, 112726, 'en', 'name', 'Korea Legislation Research Institute'),
(144274, 112726, 'ko', 'name', 'ķ•œźµ­ė²•ģ œģ—°źµ¬ģ›'),
(144275, 112727, 'en', 'name', 'Korea Information Society Development Institute'),
(144276, 112727, 'ko', 'name', '정볓통신정책연구원'),
(144277, 112728, 'fr', 'name', 'Optimisation ThƩrapeutique en Neuropsychopharmacologie'),
(144278, 112729, 'fr', 'name', 'HƓpital Broca'),
(144279, 112730, 'es', 'name', 'Universidad CuauhtƩmoc Guadalajara'),
(144280, 112731, 'es', 'name', 'Universidad Autónoma de Encarnación'),
(144281, 112732, 'en', 'name', 'Government of the Republic of Korea'),
(144282, 112732, 'zh', 'name', 'å¤§éŸ“ę°‘åœ‹ę”æåŗœ'),
(144283, 112732, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ģ •ė¶€'),
(144284, 112733, 'en', 'name', 'Laboratory of Excellence GR-Ex'),
(144285, 112734, 'de', 'name', 'Theologische FakultƤt Paderborn'),
(144286, 112735, 'en', 'name', 'Yonsei University Mirae Campus'),
(144287, 112735, 'ko', 'name', 'ģ—°ģ„øėŒ€ķ•™źµ ėÆøėž˜ģŗ ķ¼ģŠ¤'),
(144288, 112736, 'en', 'name', 'Korea Research Institute of Standards and Science'),
(144289, 112736, 'ko', 'name', 'ķ•œźµ­ķ‘œģ¤€ź³¼ķ•™ģ—°źµ¬ģ›'),
(144290, 112737, 'fr', 'name', 'Laboratoire de Psychopathologie et Processus de SantƩ'),
(144291, 112737, 'en', 'name', 'Laboratory of Psychopathology and Health Processes'),
(144292, 112738, 'fr', 'name', 'CollĆØge de France'),
(144293, 112739, 'en', 'name', 'Korea Atomic Energy Research Institute'),
(144294, 112739, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ģ—°źµ¬ģ›'),
(144295, 112740, 'ja', 'name', 'JAMSTECęØŖęµœē ”ē©¶ę‰€'),
(144296, 112740, 'en', 'name', 'Yokohama Institute for Earth Sciences'),
(144297, 112741, 'en', 'name', 'University of North Dakota Computational Research Center'),
(144298, 112742, 'fr', 'name', 'Groupe des Ɖcoles Nationales d''Ɖconomie et Statistique'),
(144299, 112743, 'de', 'name', 'Institut für Grundwasserökologie'),
(144300, 112743, 'en', 'name', 'Institute of Groundwater Ecology'),
(144301, 112744, 'fr', 'name', 'Institut de Recherche en Informatique Fondamentale'),
(144302, 112744, 'en', 'name', 'Research Institute on the Foundations of Computer Science'),
(144303, 112745, 'fr', 'name', 'HƓpital Bichat-Claude-Bernard'),
(144304, 112746, 'en', 'name', 'Inter-university Consortium for Political and Social Research'),
(144305, 112747, 'en', 'name', 'Estuarine and Coastal Studies Foundation'),
(144306, 112748, 'fr', 'name', 'Laboratoire d''Ɖlectronique des Technologies de l''Information'),
(144307, 112749, 'en', 'name', 'Dr. Babasaheb Ambedkar Marathwada University'),
(144308, 112749, 'mr', 'name', 'ą¤”ą„‰. ą¤¬ą¤¾ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤†ą¤‚ą¤¬ą„‡ą¤”ą¤•ą¤° मराठवाऔा ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(144309, 112750, 'en', 'name', 'Catholic Kwandong University'),
(144310, 112750, 'ko', 'name', 'ź°€ķ†Øė¦­ź“€ė™ėŒ€ķ•™źµ'),
(144311, 112751, 'fr', 'name', 'HƓpital Necker-Enfants Malades'),
(144312, 112752, 'fr', 'name', 'Ɖco-Anthropologie'),
(144313, 112753, 'fr', 'name', 'UniversitƩ du QuƩbec Ơ Rimouski'),
(144314, 112754, 'en', 'name', 'National Community Reinvestment Coalition'),
(144315, 112755, 'de', 'name', 'Museum für Naturkunde Magdeburg'),
(144316, 112755, 'en', 'name', 'Museum of Natural History Magdeburg'),
(144317, 112756, 'en', 'name', 'Dankook University Hospital'),
(144318, 112756, 'ko', 'name', 'ė‹Øźµ­ėŒ€ķ•™źµė³‘ģ›'),
(144319, 112757, 'en', 'name', 'Daegu Catholic University Medical Center'),
(144320, 112757, 'ko', 'name', 'ėŒ€źµ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµė³‘ģ›'),
(144321, 112758, 'en', 'name', 'ECOFYT'),
(144322, 112758, 'no_lang_code', 'name', 'ECOFYT (Netherlands)'),
(144323, 112759, 'fr', 'name', 'Technopole Maritime du QuƩbec'),
(144324, 112760, 'en', 'name', 'JSS Ayurveda Medical College and Hospital'),
(144325, 112761, 'en', 'name', 'King Ceasor University'),
(144326, 112762, 'en', 'name', 'Down Syndrome Education International'),
(144327, 112763, 'es', 'name', 'Fundación Nuestros Hijos'),
(144328, 112764, 'en', 'name', 'Korea Institute for Industrial Economics and Trade'),
(144329, 112764, 'ko', 'name', '산업연구원'),
(144330, 112765, 'fr', 'name', 'Institut de MathƩmatiques de Jussieu-Paris Rive Gauche'),
(144331, 112766, 'es', 'name', 'Corporación AkarÔ'),
(144332, 112767, 'fr', 'name', 'HƓpital Paris Saint-Joseph'),
(144333, 112768, 'fr', 'name', 'FƩdƩration de recherche en sciences mathƩmatiques de Paris centre'),
(144334, 112769, 'fr', 'name', 'Infection, Anti-microbiens, ModƩlisation, Evolution'),
(144335, 112769, 'en', 'name', 'Infection, Antimicrobials, Modelling, Evolution'),
(144336, 112770, 'fr', 'name', 'FƩdƩration Francilienne de MƩcanique - MatƩriaux, Structures, ProcƩdƩs'),
(144337, 112771, 'fr', 'name', 'Institut Langevin'),
(144338, 112771, 'en', 'name', 'Langevin Institute'),
(144339, 112772, 'en', 'name', 'St. Agnes College (Autonomous), Mangaluru'),
(144340, 112773, 'en', 'name', 'St. Augustine International University'),
(144341, 112774, 'en', 'name', 'PoultryHub Australia'),
(144342, 112775, 'en', 'name', 'Law Officers'' Department'),
(144343, 112776, 'en', 'name', 'Memorial University of Newfoundland'),
(144344, 112777, 'no_lang_code', 'name', 'Anandaban Hospital'),
(144345, 112778, 'en', 'name', 'Biological Society of Finland Vanamo'),
(144346, 112778, 'fi', 'name', 'Suomen Biologian Seura Vanamo'),
(144347, 112779, 'en', 'name', 'Korea Institute of Fusion Energy'),
(144348, 112779, 'ko', 'name', 'ķ•œźµ­ķ•µģœµķ•©ģ—ė„ˆģ§€ģ—°źµ¬ģ›'),
(144349, 112780, 'de', 'name', 'Bundesanstalt Technisches Hilfswerk'),
(144350, 112781, 'fr', 'name', 'Ecole Nationale d''Administration'),
(144351, 112781, 'en', 'name', 'National School of Administration'),
(144352, 112782, 'en', 'name', 'SPPIN - Saints-PĆØres Paris Institute for Neurosciences'),
(144353, 112783, 'en', 'name', 'Government Medical College Jalaun'),
(144354, 112784, 'en', 'name', 'Korea Women''s Development Institute'),
(144355, 112784, 'ko', 'name', 'ķ•œźµ­ģ—¬ģ„±ģ •ģ±…ģ—°źµ¬ģ›'),
(144356, 112785, 'en', 'name', 'College of Technical Science, Bani Walid'),
(144357, 112785, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŲØŁ†ŁŠ ŁˆŁ„ŁŠŲÆ'),
(144358, 112786, 'en', 'name', 'Philip R. Lee Institute for Health Policy Studies'),
(144359, 112787, 'fr', 'name', 'Institut Jacques Monod'),
(144360, 112788, 'es', 'name', 'Universidad CuauhtƩmoc'),
(144361, 112789, 'no_lang_code', 'name', 'Vijaya College'),
(144362, 112790, 'en', 'name', 'University and State Library Tyrol'),
(144363, 112790, 'de', 'name', 'UniversitƤts- und Landesbibliothek Tirol'),
(144364, 112791, 'de', 'name', 'Hochschule für Kirchenmusik der Evangelischen Kirche von Westfalen'),
(144365, 112791, 'en', 'name', 'University of Church Music of the Evangelical Church of Westphalia'),
(144366, 112792, 'en', 'name', 'Centre for Psychiatry and Neuroscience'),
(144367, 112793, 'es', 'name', 'Hospital Universitario de La Princesa'),
(144368, 112794, 'en', 'name', 'DES Pune University'),
(144369, 112795, 'en', 'name', 'Ehime Research Institute of Agriculture, Forestry and Fisheries'),
(144370, 112795, 'ja', 'name', 'ę„›åŖ›ēœŒč¾²ęž—ę°“ē”£ē ”ē©¶ę‰€'),
(144371, 112796, 'fr', 'name', 'CEA Paris-Saclay'),
(144372, 112797, 'fr', 'name', 'Laboratoire de Psychologie du DĆ©veloppement et de L’Education de l’enfant'),
(144373, 112797, 'en', 'name', 'Laboratory for the Psychology of Child Development and Education'),
(144374, 112798, 'en', 'name', 'Yichang Hubo Medical Research Institute'),
(144375, 112798, 'zh', 'name', 'å®œę˜ŒęŠ¤åšåŒ»å­¦ē ”ē©¶é™¢'),
(144376, 112799, 'en', 'name', 'Al Hussein Technical University'),
(144377, 112799, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­Ų³ŁŠŁ† Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(144378, 112800, 'en', 'name', 'Pusan National University Hospital'),
(144379, 112800, 'ko', 'name', 'ė¶€ģ‚°ėŒ€ķ•™źµė³‘ģ›'),
(144380, 112801, 'en', 'name', 'Center for Research in Medicine, Science, Health, Mental Health and Society'),
(144381, 112801, 'fr', 'name', 'Centre de Recherche MƩdecine, Sciences, SantƩ, SantƩ Mentale, SociƩtƩ'),
(144382, 112802, 'en', 'name', 'University of Quebec at Trois-Rivieres'),
(144383, 112802, 'fr', 'name', 'Université du Québec à Trois-Rivières'),
(144384, 112803, 'en', 'name', 'Center for Research on Inflammation'),
(144385, 112803, 'fr', 'name', 'Centre de Recherche sur l''Inflammation'),
(144386, 112804, 'en', 'name', 'Space Research Organisation Netherlands'),
(144387, 112804, 'nl', 'name', 'Stichting Ruimteonderzoek Nederland'),
(144388, 112805, 'fr', 'name', 'HÓpital Lariboisière'),
(144389, 112805, 'en', 'name', 'LariboisiĆØre Hospital'),
(144390, 112806, 'fr', 'name', 'Centre Neurosciences intƩgratives et Cognition'),
(144391, 112806, 'en', 'name', 'Integrative Neuroscience and Cognition Center'),
(144392, 112807, 'en', 'name', 'Canon Medical Research Europe (United Kingdom)'),
(144393, 112808, 'fr', 'name', 'Laboratoire Pierre Aigrain'),
(144394, 112808, 'en', 'name', 'Pierre Aigrain Laboratory'),
(144395, 112809, 'hr', 'name', 'Sharklab ADRIA: Centar za marinsku i slatkovodnu biologiju'),
(144396, 112809, 'en', 'name', 'Sharklab ADRIA: Center for Marine and Freshwater Biology'),
(144397, 112810, 'en', 'name', 'Seoul National University Bundang Hospital'),
(144398, 112810, 'ko', 'name', '분당 ģ„œģšøėŒ€ė³‘ģ›'),
(144399, 112811, 'en', 'name', 'Istanbul Provincial Health Directorate'),
(144400, 112811, 'tr', 'name', 'İstanbul İl Sağlik Müdürlüğü'),
(144401, 112812, 'en', 'name', 'Malla Reddy Institute Of Medical Sciences'),
(144402, 112813, 'fr', 'name', 'CArcinose PƩritoine Paris-Technologies'),
(144403, 112813, 'en', 'name', 'Carcinomatosis Peritoneum Paris Technology'),
(144404, 112814, 'en', 'name', 'Rajamangala University of Technology Isan'),
(144405, 112814, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø­ąøµąøŖąø²ąø™'),
(144406, 112815, 'en', 'name', 'Korea Institute of Industrial Technology'),
(144407, 112815, 'ko', 'name', 'ķ•œźµ­ģƒģ‚°źø°ģˆ ģ—°źµ¬ģ›'),
(144408, 112816, 'fr', 'name', 'Laboratoire de ProbabilitƩs, Statistique et ModƩlisation'),
(144409, 112817, 'en', 'name', 'Paris Cardiovascular Research Center'),
(144410, 112817, 'fr', 'name', 'Paris Centre de Recherche Cardiovasculaire'),
(144411, 112818, 'en', 'name', 'Al-Shifa Trust Eye Hospital'),
(144412, 112819, 'fr', 'name', 'DƩlƩgation Ile-de-France Sud'),
(144413, 112820, 'en', 'name', 'World Wildlife Fund Canada'),
(144414, 112821, 'en', 'name', 'UBC Properties Trust'),
(144415, 112822, 'en', 'name', 'Ministry of Health'),
(144416, 112823, 'en', 'name', 'LIAG Institute for Applied Geophysics'),
(144417, 112823, 'de', 'name', 'LIAG-Institut für Angewandte Geophysik'),
(144418, 112824, 'fr', 'name', 'Laboratoire de Probabilités et Modèles Aléatoires'),
(144419, 112825, 'fr', 'name', 'Hydrologie MƩtƩorologie et ComplexitƩ'),
(144420, 112826, 'fr', 'name', 'Laboratoire Jacques-Louis Lions'),
(144421, 112827, 'en', 'name', 'Department of Primary Industries'),
(144422, 112828, 'en', 'name', 'Ningbo University of Finance & Economics'),
(144423, 112828, 'zh', 'name', 'å®ę³¢č“¢ē»å­¦é™¢'),
(144424, 112829, 'en', 'name', 'Hospital for Advanced Medicine and Surgery (HAMS)'),
(144425, 112830, 'fr', 'name', 'HƓtel-Dieu de Paris'),
(144426, 112831, 'pt', 'name', 'Instituto Nacional de Pesquisas da AmazƓnia'),
(144427, 112831, 'en', 'name', 'National Institute of Amazonian Research'),
(144428, 112832, 'en', 'name', 'Catholic Kwandong University International St. Mary''s Hospital'),
(144429, 112832, 'ko', 'name', 'ź°€ķ†Øė¦­ź“€ė™ėŒ€ķ•™źµ źµ­ģ œģ„±ėŖØė³‘ģ›'),
(144430, 112833, 'en', 'name', 'Extreme Light Infrastructure ERIC (Czech Republic)'),
(144431, 112834, 'en', 'name', 'Everglades National Park'),
(144432, 112834, 'es', 'name', 'Parque nacional de los Everglades'),
(144433, 112835, 'en', 'name', 'Rajamangala University of Technology'),
(144434, 112835, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„'),
(144435, 112836, 'en', 'name', 'Chosun University Hospital'),
(144436, 112836, 'ko', 'name', 'ģ”°ģ„ ėŒ€ķ•™źµė³‘ģ›'),
(144437, 112837, 'fr', 'name', 'Physiologie De L''Axe Gonadotrope'),
(144438, 112838, 'en', 'name', 'Jeonbuk National University Hospital'),
(144439, 112838, 'ko', 'name', 'ģ „ė¶ėŒ€ķ•™źµė³‘ģ›'),
(144440, 112839, 'en', 'name', 'National Defence College Nigeria'),
(144441, 112840, 'fr', 'name', 'Institut Interdisciplinaire de l''Innovation'),
(144442, 112841, 'en', 'name', 'Inje University Ilsan Paik Hospital'),
(144443, 112841, 'ko', 'name', 'ģøģ œėŒ€ķ•™źµ ģ¼ģ‚°ė°±ė³‘ģ›'),
(144444, 112842, 'fr', 'name', 'Laboratoire d''Electrochimie MolƩculaire'),
(144445, 112843, 'en', 'name', 'Malla Reddy University'),
(144446, 112844, 'fr', 'name', 'Centre Population et DƩveloppement'),
(144447, 112844, 'en', 'name', 'Population and Development Center'),
(144448, 112845, 'en', 'name', 'Inje University Paik Hospital'),
(144449, 112845, 'ko', 'name', 'ģøģ œėŒ€ķ•™źµ ė°±ģ¤‘ģ•™ģ˜ė£Œģ›'),
(144450, 112846, 'fr', 'name', 'Centre de Recherche ƉpidĆ©miologie et Statistique'),
(144451, 112846, 'en', 'name', 'Centre of Research in Epidemiology and Statistics'),
(144452, 112847, 'fr', 'name', 'Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques'),
(144453, 112848, 'en', 'name', 'State Public Health Laboratory, Assam'),
(144454, 112849, 'fr', 'name', 'Chine, CorƩe, Japon'),
(144455, 112849, 'en', 'name', 'The Centre for Studies on China, Korea and Japan'),
(144456, 112850, 'fr', 'name', 'ENSAE Paris'),
(144457, 112851, 'fr', 'name', 'Chimie Organique, MƩdicinale et Extractive et Toxicologie ExpƩrimentale'),
(144458, 112852, 'fr', 'name', 'FƩdƩration de recherche en imagerie multi-modalitƩ'),
(144459, 112853, 'en', 'name', 'City of Scientific Research and Technological Applications'),
(144460, 112854, 'en', 'name', 'Chosun University'),
(144461, 112854, 'ko', 'name', 'ģ”°ģ„ ėŒ€ķ•™źµ'),
(144462, 112855, 'en', 'name', 'Yonsei University Health System'),
(144463, 112855, 'ko', 'name', 'ģ—°ģ„øėŒ€ķ•™źµ ģ˜ė£Œģ›'),
(144464, 112856, 'id', 'name', 'Universitas Media Nusantara Citra'),
(144465, 112857, 'en', 'name', 'University of Koblenz and Landau'),
(144466, 112857, 'de', 'name', 'UniversitƤt Koblenz-Landau'),
(144467, 112858, 'en', 'name', 'Prasad V. Potluri Siddhartha Institute of Technology'),
(144468, 112859, 'fr', 'name', 'Imagerie et ModƩlisation en Neurobiologie et CancƩrologie'),
(144469, 112860, 'en', 'name', 'Inje University Busan Paik Hospital'),
(144470, 112860, 'ko', 'name', 'ģøģ œėŒ€ķ•™źµ 부산백병원'),
(144471, 112861, 'en', 'name', 'Institute of Education, University of Lisbon'),
(144472, 112861, 'pt', 'name', 'Instituto de Educação da Universidade de Lisboa'),
(144473, 112862, 'fr', 'name', 'UnitƩ de Technologies Chimiques et Biologiques pour la SantƩ'),
(144474, 112863, 'fr', 'name', 'Laboratoire de Psychologie sociale : contextes et rƩgulation'),
(144475, 112863, 'en', 'name', 'Laboratory of Social Psychology : threats and society'),
(144476, 112864, 'en', 'name', 'Dongguk University Ilsan Hospital'),
(144477, 112864, 'ko', 'name', 'ė™źµ­ėŒ€ķ•™źµ ģ¼ģ‚°ė³‘ģ›'),
(144478, 112865, 'es', 'name', 'Universidad Tecnológica AtlĆ”ntico MediterrĆ”neo – UTAMED'),
(144479, 112866, 'en', 'name', 'Institute of Fruit Tree and Tea Science'),
(144480, 112866, 'ja', 'name', 'ęžœęØ¹čŒ¶ę„­ē ”ē©¶éƒØé–€'),
(144481, 112867, 'fr', 'name', 'Laboratoire Ville MobilitƩ Transport'),
(144482, 112868, 'hr', 'name', 'Tehničko VeleučiliŔte u Zagrebu'),
(144483, 112868, 'en', 'name', 'Zagreb University of Applied Sciences'),
(144484, 112869, 'en', 'name', 'Korean Institute of Criminology and Justice'),
(144485, 112869, 'ko', 'name', 'ķ•œźµ­ķ˜•ģ‚¬ė²•ė¬“ģ •ģ±…ģ—°źµ¬ģ›'),
(144486, 112870, 'en', 'name', 'NOAA Ocean Exploration'),
(144487, 112871, 'en', 'name', 'IOL Chemicals and Pharmaceuticals Ltd. (India)'),
(144488, 112872, 'en', 'name', 'Denali National Park and Preserve'),
(144489, 112872, 'es', 'name', 'Parque nacional y reserva Denali'),
(144490, 112873, 'fr', 'name', 'Expression GƩnƩtique Microbienne'),
(144491, 112874, 'en', 'name', 'Vasantidevi Patil Institute of Pharmacy'),
(144492, 112875, 'en', 'name', 'Bharati Vidyapeeth''s College of Engineering, Delhi'),
(144493, 112876, 'no_lang_code', 'name', 'Hanyang University'),
(144494, 112876, 'ko', 'name', 'ķ•œģ–‘ėŒ€ķ•™źµ'),
(144495, 112877, 'en', 'name', 'German Association of Professors of Universities of Applied Sciences'),
(144496, 112877, 'de', 'name', 'Hochschullehrerbund'),
(144497, 112878, 'fr', 'name', 'Laboratoire Adaptations Travail-Individu'),
(144498, 112879, 'de', 'name', 'Hector Stiftung II'),
(144499, 112880, 'en', 'name', 'Brazilian Society of Nephrology'),
(144500, 112880, 'pt', 'name', 'Sociedade Brasileira de Nefrologia'),
(144501, 112881, 'en', 'name', 'National Research Council of Science and Technology'),
(144502, 112881, 'ko', 'name', 'źµ­ź°€ź³¼ķ•™źø°ģˆ ģ—°źµ¬ķšŒ'),
(144503, 112882, 'fr', 'name', 'Centre de Recherche sur les Biotechnologies Marines'),
(144504, 112883, 'fr', 'name', 'Institut Droit et SantƩ'),
(144505, 112884, 'en', 'name', 'Mackay Medical University'),
(144506, 112884, 'zh', 'name', '馬偕醫學大學'),
(144507, 112885, 'fr', 'name', 'Laboratoire d’études spatiales et d’instrumentation en astrophysique'),
(144508, 112886, 'en', 'name', 'National Youth Policy Institute'),
(144509, 112886, 'ko', 'name', 'ķ•œźµ­ģ²­ģ†Œė…„ģ •ģ±…ģ—°źµ¬ģ›'),
(144510, 112887, 'fr', 'name', 'Institut de Recherche Dupuy de LƓme'),
(144511, 112888, 'en', 'name', 'Bangladesh Oceanographic Research Institute'),
(144512, 112888, 'bn', 'name', 'বাংলাদেশ ą¦“ą¦¶ą¦¾ą¦Øą§‹ą¦—ą§ą¦°ą¦¾ą¦«ą¦æą¦• ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(144513, 112889, 'en', 'name', 'Paragon International University'),
(144514, 112889, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž“įŸ’įžįžšįž‡įž¶įžįž·įž•įž¶įžšįŸ‰įž¶įž įŸ’įž‚įž“'),
(144515, 112890, 'fr', 'name', 'Biologie intégrée du globule rouge et de l''Erythropoïèse'),
(144516, 112891, 'de', 'name', 'Theologische FakultƤt Trier'),
(144517, 112892, 'fr', 'name', 'Physiopathologie et EpidƩmiologie des Maladies Respiratoires'),
(144518, 112893, 'en', 'name', 'Chongqing Dental Hospital (Yuzhong District Stomatological Hospital)'),
(144519, 112893, 'zh', 'name', 'é‡åŗ†ē‰™ē§‘åŒ»é™¢ļ¼ˆé‡åŗ†åø‚ęøäø­åŒŗå£č…”åŒ»é™¢)'),
(144520, 112894, 'de', 'name', 'Archiv der Deutschen Frauenbewegung'),
(144521, 112895, 'no_lang_code', 'name', 'Tech-X Corporation (United States)'),
(144522, 112896, 'fr', 'name', 'UMS Saint-Louis'),
(144523, 112897, 'en', 'name', 'Higher Institute of Science and Technology Tajoura'),
(144524, 112897, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ© تاجوراؔ'),
(144525, 112898, 'en', 'name', 'Indian Institute of Information Technology Kalyani'),
(144526, 112898, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ सचना ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ą„€'),
(144527, 112899, 'fr', 'name', 'Ecotaxie, Microenvironnement et dƩveloppement lymphocytaire'),
(144528, 112899, 'en', 'name', 'Microenvironment, lymphocyte development and homing'),
(144529, 112900, 'fr', 'name', 'HƓpital EuropƩen Georges-Pompidou'),
(144530, 112901, 'en', 'name', 'Crossroads College'),
(144531, 112902, 'en', 'name', 'Poultry CRC'),
(144532, 112903, 'en', 'name', 'Chonnam National University'),
(144533, 112903, 'ko', 'name', 'ģ „ė‚ØėŒ€ķ•™źµ'),
(144534, 112904, 'pt', 'name', 'Atitus Educação'),
(144535, 112905, 'fr', 'name', 'Institut Necker Enfants Malades'),
(144536, 112906, 'fr', 'name', 'Ɖcole Polytechnique'),
(144537, 112907, 'en', 'name', 'Chung-Ang University Hospital'),
(144538, 112907, 'ko', 'name', 'ģ¤‘ģ•™ėŒ€ķ•™źµģ˜ė£Œģ›'),
(144539, 112908, 'fr', 'name', 'AMIS - Laboratoire d''anthropologie moléculaire et imagerie de synthèse'),
(144540, 112909, 'en', 'name', 'Paris Centre for Quantum Technologies'),
(144541, 112910, 'fr', 'name', 'Physique et Mécanique des Milieux Hétérogènes'),
(144542, 112911, 'fr', 'name', 'UnitĆ© d''Ɖconomie AppliquĆ©e'),
(144543, 112912, 'fr', 'name', 'Institut d''Ʃcologie et des sciences de l''environnement de Paris'),
(144544, 112912, 'en', 'name', 'Institute of Ecology and Environmental Sciences Paris'),
(144545, 112913, 'fr', 'name', 'Institut de recherche Saint-Louis'),
(144546, 112914, 'en', 'name', 'Research Software Alliance'),
(144547, 112915, 'en', 'name', 'Yonsei University Dental Hospital'),
(144548, 112915, 'ko', 'name', 'ģ—°ģ„øėŒ€ķ•™źµ ģ¹˜ź³¼ėŒ€ķ•™ė³‘ģ›'),
(144549, 112916, 'en', 'name', 'Kobe University'),
(144550, 112916, 'ja', 'name', 'ē„žęˆøå¤§å­¦'),
(144551, 112917, 'en', 'name', 'Seoul National University'),
(144552, 112917, 'ko', 'name', 'ģ„œģšøėŒ€ķ•™źµ'),
(144553, 112918, 'es', 'name', 'Universidad de San Carlos de Guatemala'),
(144554, 112918, 'en', 'name', 'University of San Carlos of Guatemala'),
(144555, 112919, 'fr', 'name', 'Laboratoire de Biologie, BioingƩniƩrie et Bioimagerie ostƩoarticulaire'),
(144556, 112920, 'de', 'name', 'Institut für Elektrische Energieversorgung und Hochspannungstechnik'),
(144557, 112920, 'en', 'name', 'Institute of Electrical Power Systems and High Voltage Engineering'),
(144558, 112921, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Techniques AvancĆ©es'),
(144559, 112922, 'fr', 'name', 'Institut des Sciences des Plantes de Paris Saclay'),
(144560, 112923, 'fr', 'name', 'Institut des SystĆØmes Complexes Paris Ǝle-de-France'),
(144561, 112924, 'en', 'name', 'Korea SMEs and Startups Agency'),
(144562, 112924, 'ko', 'name', 'ģ¤‘ģ†Œė²¤ģ²˜źø°ģ—…ģ§„ķ„ź³µė‹Ø'),
(144563, 112925, 'en', 'name', 'Korea District Heating Corporation'),
(144564, 112925, 'ko', 'name', 'ķ•œźµ­ģ§€ģ—­ė‚œė°©ź³µģ‚¬'),
(144565, 112926, 'en', 'name', 'Neuroimaging and Psychiatry'),
(144566, 112927, 'en', 'name', 'Japan Agency for Marine-Earth Science and Technology'),
(144567, 112927, 'ja', 'name', 'ęµ·ę“‹ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(144568, 112928, 'en', 'name', 'Shubham Biotech Nepal Pvt. Ltd. (Nepal)'),
(144569, 112929, 'no_lang_code', 'name', 'Springer Nature (Germany)'),
(144570, 112930, 'en', 'name', 'Jeonbuk National University Dental Hospital'),
(144571, 112930, 'ko', 'name', 'ģ „ė¶ėŒ€ķ•™źµ ģ¹˜ź³¼ė³‘ģ›'),
(144572, 112931, 'en', 'name', 'Autonomous University of Madrid'),
(144573, 112931, 'eu', 'name', 'Madrilgo Unibertsitate Autonomoa'),
(144574, 112931, 'es', 'name', 'Universidad Autónoma de Madrid'),
(144575, 112931, 'gl', 'name', 'Universidade Autónoma de Madrid'),
(144576, 112931, 'ca', 'name', 'Universitat Autònoma de Madrid'),
(144577, 112932, 'de', 'name', 'Ludwig Boltzmann Institut für Krebsforschung'),
(144578, 112932, 'en', 'name', 'Ludwig Boltzmann Institute for Cancer Research'),
(144579, 112933, 'fr', 'name', 'Laboratoire Matériaux et Phénomènes Quantiques'),
(144580, 112933, 'en', 'name', 'Laboratory Materials and Quantum Phenomena'),
(144581, 112934, 'en', 'name', 'Clinical Psychology, Psychopathology, Psychanalysis'),
(144582, 112934, 'fr', 'name', 'Laboratoire de psychologie clinique, psychopathologie, psychanalyse'),
(144583, 112935, 'en', 'name', 'French Research Institute on East Asia'),
(144584, 112935, 'fr', 'name', 'Institut FranƧais de Recherche sur l''Asie de l''Est'),
(144585, 112936, 'fr', 'name', 'Centre de Nanosciences et de Nanotechnologies'),
(144586, 112936, 'en', 'name', 'Centre for Nanoscience and Nanotechnology'),
(144587, 112937, 'en', 'name', 'Kyung Hee University Dental Hospital'),
(144588, 112937, 'ko', 'name', 'ź²½ķ¬ėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(144589, 112938, 'en', 'name', 'Korea Institute of Civil Engineering and Building Technology'),
(144590, 112938, 'ko', 'name', 'ķ•œźµ­ź±“ģ„¤źø°ģˆ ģ—°źµ¬ģ›'),
(144591, 112939, 'fr', 'name', 'Centre Maurice Hauriou pour la Recherche en Droit Public'),
(144592, 112940, 'en', 'name', 'Wonju Severance Christian Hospital'),
(144593, 112940, 'ko', 'name', 'ģ—°ģ„øėŒ€ķ•™źµ ģ›ģ£¼ģ„øėøŒėž€ģŠ¤źø°ė…ė³‘ģ›'),
(144594, 112941, 'fr', 'name', 'Toxicologie, Pharmacologie et Signalisation Cellulaire'),
(144595, 112941, 'en', 'name', 'Toxicology, Pharmacology and Cellular Signaling'),
(144596, 112942, 'en', 'name', 'Vivekanand Arts Sardar Dalipsingh Commerce and Science College'),
(144597, 112943, 'fr', 'name', 'Laboratoire de Recherche Vasculaire Translationnelle'),
(144598, 112943, 'en', 'name', 'Laboratory for Vascular Translational Science'),
(144599, 112944, 'fr', 'name', 'FƩdƩration de Recherche Interactions Fondamentales'),
(144600, 112945, 'de', 'name', 'Materialprüfungsamt Nordrhein-Westfalen'),
(144601, 112946, 'en', 'name', 'Suwon Research Institute'),
(144602, 112946, 'ko', 'name', 'ģˆ˜ģ›ģ‹œģ •ģ—°źµ¬ģ›'),
(144603, 112947, 'fr', 'name', 'Centre d’Economie Industrielle - CERNA'),
(144604, 112947, 'en', 'name', 'Centre for industrial economics - CERNA'),
(144605, 112948, 'en', 'name', 'Manila Doctors Hospital'),
(144606, 112949, 'fr', 'name', 'HƓpital Robert-DebrƩ'),
(144607, 112950, 'fr', 'name', 'Pharmacologie et Ʃvaluation thƩrapeutiques chez l''enfant et la femme enceinte'),
(144608, 112951, 'fr', 'name', 'UnitƩ de Chimie et ProcƩdƩs'),
(144609, 112952, 'fr', 'name', 'Laboratoire Informatique Paris Descartes'),
(144610, 112953, 'fr', 'name', 'HƓpital de Vaugirard-Gabriel Pallez'),
(144611, 112954, 'es', 'name', 'Universidad de California en San Francisco'),
(144612, 112954, 'en', 'name', 'University of California, San Francisco'),
(144613, 112954, 'fr', 'name', 'UniversitƩ de Californie Ơ San Francisco'),
(144614, 112955, 'en', 'name', 'Hanyang University Medical Center'),
(144615, 112955, 'ko', 'name', 'ķ•œģ–‘ėŒ€ķ•™źµģ˜ė£Œģ›'),
(144616, 112956, 'en', 'name', 'Ministry of Trade, Industry and Energy'),
(144617, 112956, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ģ‚°ģ—…ķ†µģƒģžģ›ė¶€'),
(144618, 112957, 'en', 'name', 'Kyung Hee University Hospital at Gangdong'),
(144619, 112957, 'ko', 'name', 'ź°•ė™ź²½ķ¬ėŒ€ķ•™źµė³‘ģ›'),
(144620, 112958, 'de', 'name', 'Ozeaneum Stralsund'),
(144621, 112959, 'fr', 'name', 'FƩdƩration Ile de France de recherche sur l''environnement'),
(144622, 112960, 'en', 'name', 'North Lakhimpur University'),
(144623, 112960, 'as', 'name', 'ą¦Øą§°ą§ą¦„ লখিমপুৰ ą¦•ą¦²ą§‡ą¦œ'),
(144624, 112961, 'fr', 'name', 'Sommeil, vigilance, fatigue et santƩ publique'),
(144625, 112962, 'fr', 'name', 'Institut des Sciences de la MƩcanique et Applications Industrielles'),
(144626, 112963, 'en', 'name', 'Alzheimer''s disease: markers & risk factors, interventions'),
(144627, 112963, 'fr', 'name', 'Maladie d''Alzheimer : marqueurs gƩnƩtiques et vasculaires, neuropsychologie'),
(144628, 112964, 'es', 'name', 'Hospital Valle del Nalón'),
(144629, 112965, 'fr', 'name', 'Fondation des pompiers du QuƩbec pour les grands brƻlƩs'),
(144630, 112965, 'en', 'name', 'Quebec Firefighters Foundation for Burn Victims'),
(144631, 112966, 'fr', 'name', 'Unité d''Informatique et d''Ingénierie des Systèmes'),
(144632, 112967, 'en', 'name', 'Beaujon Hospital'),
(144633, 112967, 'fr', 'name', 'HƓpital Beaujon'),
(144634, 112968, 'en', 'name', 'Ocean Rosy'),
(144635, 112968, 'si', 'name', 'ą¶•ą·‚ą¶±ą·Š ą¶»ą·ą·ƒą·’'),
(144636, 112969, 'fr', 'name', 'Institut de Physique'),
(144637, 112970, 'es', 'name', 'Hospital Universitario De CabueƱes'),
(144638, 112971, 'pt', 'name', 'Unidade de Investigação e Desenvolvimento em Educação e Formação'),
(144639, 112972, 'nl', 'name', 'Amsterdam Universitair Medische Centra'),
(144640, 112972, 'en', 'name', 'Amsterdam University Medical Centers'),
(144641, 112973, 'fr', 'name', 'Laboratoire Vision Action Cognition');
INSERT INTO `ror_settings` VALUES
(144642, 112974, 'fr', 'name', 'Laboratoire de Biologie Physico-Chimique des ProtƩines Membranaires'),
(144643, 112974, 'en', 'name', 'Laboratory of Physical and Chemical Biology of Membrane Proteins'),
(144644, 112975, 'fr', 'name', 'Laboratoire de Recherche sur les Cultures Anglophones'),
(144645, 112976, 'fr', 'name', 'Chimie ParisTech'),
(144646, 112977, 'en', 'name', 'Korea Energy Economics Institute'),
(144647, 112977, 'ko', 'name', 'ģ—ė„ˆģ§€ź²½ģ œģ—°źµ¬ģ›'),
(144648, 112978, 'fr', 'name', 'Centre d''Ɖtudes et d''Expertise sur les Risques, l''Environnement, la MobilitĆ© et l''AmĆ©nagement'),
(144649, 112979, 'fr', 'name', 'Laboratoire de Psychologie et d’Ergonomie AppliquĆ©es'),
(144650, 112980, 'de', 'name', 'H.W. & J. Hector Stiftung'),
(144651, 112981, 'en', 'name', 'Volyn Orthodox Theological Academy'),
(144652, 112981, 'uk', 'name', 'Š’Š¾Š»ŠøŠ½ŃŃŒŠŗŠ° ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Š° Š‘Š¾Š³Š¾ŃŠ»Š¾Š²ŃŃŒŠŗŠ° ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(144653, 112982, 'fr', 'name', 'Centre d''Enseignement et de Recherche en Environnement AtmosphƩrique'),
(144654, 112983, 'en', 'name', 'Goa University'),
(144655, 112984, 'fr', 'name', 'Observatoire global du Saint-Laurent (OGSL)'),
(144656, 112984, 'en', 'name', 'St. Lawrence Global Observatory'),
(144657, 112985, 'fr', 'name', 'Biologie, Anthropologie, BiomƩtrie, EpigƩnƩtique, LignƩes : De la diversitƩ des populations Ơ l''individu, de l''identification Ơ l''identitƩ'),
(144658, 112986, 'en', 'name', 'The Catholic University of Korea Catholic Medical Center'),
(144659, 112986, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ ź°€ķ†Øė¦­ģ¤‘ģ•™ģ˜ė£Œģ›'),
(144660, 112987, 'en', 'name', 'Ewha Womans University'),
(144661, 112987, 'ko', 'name', 'ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ'),
(144662, 112988, 'nl', 'name', 'Bryologische en Lichenologische Werkgroep'),
(144663, 112988, 'en', 'name', 'Dutch Bryological and Lichenological Society'),
(144664, 112989, 'de', 'name', 'Freie UniversitƤt Berlin'),
(144665, 112990, 'en', 'name', 'MegaWatt Lasers (United States)'),
(144666, 112991, 'en', 'name', 'The Catholic University of Korea Uijeongbu St. Mary''s Hospital'),
(144667, 112991, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ˜ģ •ė¶€ģ„±ėŖØė³‘ģ›'),
(144668, 112992, 'en', 'name', 'Dr. Rajendra Gode Medical College and Hospital'),
(144669, 112992, 'mr', 'name', 'ą¤”ą„‰. ą¤°ą¤¾ą¤œą„‡ą¤‚ą¤¦ą„ą¤° ą¤—ą„‹ą¤”ą„‡ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ आणि ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²ą¤®ą¤§ą„ą¤Æą„‡'),
(144670, 112993, 'fr', 'name', 'Microfluidique Physique et Bio-ingƩnierie'),
(144671, 112993, 'en', 'name', 'Physical Microfluidics and Bioengineering'),
(144672, 112994, 'en', 'name', 'Paris School of Economics'),
(144673, 112994, 'fr', 'name', 'Ɖcole d''Ɖconomie de Paris'),
(144674, 112995, 'en', 'name', 'Institute of Information & Communications Technology Planning & Evaluation'),
(144675, 112995, 'ko', 'name', 'ģ •ė³“ķ†µģ‹ źø°ķšķ‰ź°€ģ›'),
(144676, 112996, 'fr', 'name', 'PƓle de Recherche pour l''Organisation et la Diffusion de l''Information GƩographique'),
(144677, 112997, 'en', 'name', 'Kyung Hee University Medical Center'),
(144678, 112997, 'ko', 'name', 'ź²½ķ¬ģ˜ė£Œģ›'),
(144679, 112998, 'es', 'name', 'Secretaria de Educación del departamento del AtlÔntico'),
(144680, 112999, 'fr', 'name', 'Plateformes mutualisƩes de l''Institut du mƩdicament'),
(144681, 113000, 'en', 'name', 'Libyan Centre for Dental Research'),
(144682, 113000, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł„ŁŠŲØŁŠ لأبحاث Ų·ŲØ الأسنان'),
(144683, 113001, 'fr', 'name', 'Laboratoire de Physique des 2 Infinis IrĆØne Joliot-Curie'),
(144684, 113001, 'en', 'name', 'Laboratory of the Physics of the Two Infinities IrĆØne Joliot-Curie'),
(144685, 113002, 'en', 'name', 'Genomes and Cell Biology Diseases'),
(144686, 113002, 'fr', 'name', 'GƩnomes, biologie cellulaire et thƩrapeutiques'),
(144687, 113003, 'fr', 'name', 'HƓpital Fernand-Widal'),
(144688, 113004, 'fr', 'name', 'Groupe Hospitalier Cochin - Port-Royal, HƓtel-Dieu, Broca - La CollƩgiale'),
(144689, 113005, 'fr', 'name', 'Laboratoire MatiĆØre et SystĆØmes Complexes'),
(144690, 113006, 'tr', 'name', 'Alata BahƧe Kültürleri̇ Araştirma Ensti̇tüsü Müdürlüğü'),
(144691, 113007, 'en', 'name', 'Bretonneau Hospital'),
(144692, 113007, 'fr', 'name', 'HƓpital Bretonneau'),
(144693, 113008, 'en', 'name', 'Korea Institute of Energy Research'),
(144694, 113008, 'ko', 'name', 'ķ•œźµ­ģ—ė„ˆģ§€źø°ģˆ ģ—°źµ¬ģ›'),
(144695, 113009, 'en', 'name', 'Seoul National University Dental Hospital'),
(144696, 113009, 'ko', 'name', 'ģ„œģšøėŒ€ģ¹˜ź³¼ė³‘ģ›'),
(144697, 113010, 'en', 'name', 'Haldia Institute of Technology'),
(144698, 113011, 'fr', 'name', 'Laboratoire des MultimatƩriaux et Interfaces'),
(144699, 113012, 'en', 'name', 'San Diego Supercomputer Center'),
(144700, 113013, 'pt', 'name', 'Hospital FelĆ­cio Rocho'),
(144701, 113014, 'es', 'name', 'Centro Interdisciplinario de Investigaciones en TecnologĆ­as y Desarrollo Social para el NOA'),
(144702, 113015, 'no_lang_code', 'name', 'Analytical Services & Materials (United States)'),
(144703, 113016, 'fr', 'name', 'Lille Ɖconomie Management'),
(144704, 113017, 'en', 'name', 'Loknete Vyankatrao Hiray Arts, Science and Commerce College'),
(144705, 113018, 'id', 'name', 'Institut Teknologi Sains & Kesehatan dr. Soepraon'),
(144706, 113019, 'fr', 'name', 'Structure et Dynamique des Langues'),
(144707, 113020, 'en', 'name', 'Mother Teresa Women''s University'),
(144708, 113020, 'ta', 'name', 'ą®…ą®©ąÆą®©ąÆˆ ą®¤ąÆ†ą®°ą®šą®¾ ą®®ą®•ą®³ą®æą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(144709, 113021, 'fr', 'name', 'Centre d''Analyse et de MathƩmatique Sociales'),
(144710, 113022, 'pt', 'name', 'Centro Nacional de Competências dos Frutos Secos Associação'),
(144711, 113023, 'en', 'name', 'Belarusian Trade-Economic University of Consumer Cooperation'),
(144712, 113023, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– ганГлёва-ŃŠŗŠ°Š½Š°Š¼Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ спажывецкай кааперацыі'),
(144713, 113024, 'fr', 'name', 'Institut de Biologie Valrose'),
(144714, 113024, 'en', 'name', 'Institute of Biology Valrose'),
(144715, 113025, 'en', 'name', 'Autonomous University of Lisbon'),
(144716, 113025, 'pt', 'name', 'Universidade Autónoma de Lisboa'),
(144717, 113026, 'en', 'name', 'Lifelines'),
(144718, 113027, 'en', 'name', 'Hamburg Institute of International Economics'),
(144719, 113027, 'de', 'name', 'Hamburgisches WeltWirtschafts Institut'),
(144720, 113028, 'en', 'name', 'Dynamics of Genetic Information: fundamental bases and cancer'),
(144721, 113028, 'fr', 'name', 'Dynamique de l''information gƩnƩtique : bases fondamentales et cancer'),
(144722, 113029, 'no_lang_code', 'name', 'Saint Petersburg Pasteur Institute'),
(144723, 113029, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии им. ŠŸŠ°ŃŃ‚ŠµŃ€Š°'),
(144724, 113030, 'en', 'name', 'Tarumanagara University'),
(144725, 113031, 'pt', 'name', 'Centro de Investigação em Educação'),
(144726, 113032, 'pt', 'name', 'Camara Municipal Oeiras'),
(144727, 113033, 'en', 'name', 'Luxembourg Centre for Socio-Environmental Systems'),
(144728, 113034, 'en', 'name', 'Geological Survey of India'),
(144729, 113034, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤­ą„‚ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤øą¤°ą„ą¤µą„‡ą¤•ą„ą¤·ą¤£'),
(144730, 113035, 'pt', 'name', 'Cooperativa de Ensino PolitƩcnico'),
(144731, 113036, 'pt', 'name', 'Universidade da Madeira'),
(144732, 113036, 'en', 'name', 'University of Madeira'),
(144733, 113037, 'de', 'name', 'Garmisch-Partenkirchen Medical Center'),
(144734, 113038, 'es', 'name', 'Universidad Bicentenaria de Aragua'),
(144735, 113039, 'en', 'name', 'Open Data Commons for Spinal Cord Injury'),
(144736, 113040, 'nl', 'name', 'Instituut voor Natuur- en Bosonderzoek'),
(144737, 113040, 'en', 'name', 'Research Institute for Nature and Forest'),
(144738, 113041, 'no_lang_code', 'name', 'Shibuya (Japan)'),
(144739, 113042, 'it', 'name', 'Terre Biologiche Veronesi'),
(144740, 113043, 'fr', 'name', 'Centre de Recherche en MathƩmatiques de la DƩcision'),
(144741, 113043, 'en', 'name', 'Research Centre in Mathematics of Decision'),
(144742, 113044, 'fr', 'name', 'Centre de Recherche sur les Ions, les MatƩriaux et la Photonique'),
(144743, 113045, 'fr', 'name', 'Institut LƩon Duguit'),
(144744, 113046, 'en', 'name', 'Susteon Inc.'),
(144745, 113046, 'no_lang_code', 'name', 'Susteon Inc. (United States)'),
(144746, 113047, 'pt', 'name', 'Quadrantes Clínica Médica e Diagnóstico (Portugal)'),
(144747, 113047, 'en', 'name', 'Quadrantes Medical Clinic and Diagnostics Sole Proprietorship'),
(144748, 113048, 'no_lang_code', 'name', 'Ambiente Italia (Italy)'),
(144749, 113049, 'es', 'name', 'Las Campanas Observatory'),
(144750, 113050, 'it', 'name', 'Ospedale San Luigi Gonzaga'),
(144751, 113051, 'fr', 'name', 'Institut des Sciences Sociales du Politique'),
(144752, 113052, 'de', 'name', 'Allgemeine Unfallversicherungsanstalt'),
(144753, 113053, 'en', 'name', 'Office of the Secretary of Defense'),
(144754, 113054, 'fr', 'name', 'Laboratoire Image, Ville, Environnement'),
(144755, 113054, 'en', 'name', 'Laboratory Image, City, Environment'),
(144756, 113055, 'en', 'name', 'Saint George Hospital'),
(144757, 113056, 'pt', 'name', 'Direcção-Geral dos Assuntos Europeus'),
(144758, 113057, 'en', 'name', 'Moscow Regional Scientific Research Clinical Institute. MF Vladimirsky'),
(144759, 113058, 'en', 'name', 'Community Health Systems - Eastern New Mexico Medical Center'),
(144760, 113059, 'es', 'name', 'Instituto Superior Tecnologico Ciudad de Valencia'),
(144761, 113060, 'en', 'name', 'Tomsk State University of Architecture and Building'),
(144762, 113060, 'ru', 'name', 'Томский Š³Š¾ŃŃƒŠ“арственный Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(144763, 113061, 'en', 'name', 'Candid'),
(144764, 113062, 'en', 'name', 'Newcastle College'),
(144765, 113063, 'en', 'name', 'University of Petroleum and Energy Studies'),
(144766, 113063, 'hi', 'name', 'ą¤Ŗą„‡ą¤Ÿą„ą¤°ą„‹ą¤²ą¤æą¤Æą¤® और ą¤Šą¤°ą„ą¤œą¤¾ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(144767, 113064, 'id', 'name', 'Universitas Islam Balitar'),
(144768, 113065, 'fr', 'name', 'Centre de recherches sur la pensƩe antique'),
(144769, 113065, 'en', 'name', 'Centre for the Study of Ancient Thought'),
(144770, 113065, 'it', 'name', 'Centro di ricerca sul pensiero antico'),
(144771, 113066, 'fr', 'name', 'Laboratoire des BiomolƩcules'),
(144772, 113067, 'en', 'name', 'Kenyatta National Hospital'),
(144773, 113068, 'fr', 'name', 'Centre de droit comparƩ du travail et de la sƩcuritƩ sociale'),
(144774, 113069, 'en', 'name', 'Smt. Kashibai Navale Medical College and General hospital'),
(144775, 113070, 'en', 'name', 'German Institute of Development and Sustainability'),
(144776, 113071, 'no_lang_code', 'name', 'Taisei (Japan)'),
(144777, 113071, 'ja', 'name', 'å¤§ęˆå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(144778, 113072, 'fr', 'name', 'Gulliver'),
(144779, 113073, 'en', 'name', 'ERATOSTHENES Centre of Excellence'),
(144780, 113074, 'fr', 'name', 'Laboratoire Angevin de Recherche en MathƩmatiques'),
(144781, 113075, 'en', 'name', 'Redeemer University'),
(144782, 113076, 'en', 'name', 'Moscow State Academy of Veterinary Medicine and Biotechnology named after Skryabin'),
(144783, 113076, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ветеринарной меГицины Šø биотехнологии имени К. И. Š”ŠŗŃ€ŃŠ±ŠøŠ½Š°'),
(144784, 113077, 'en', 'name', 'Southern District Health Board'),
(144785, 113078, 'en', 'name', 'Colombian Air Force'),
(144786, 113078, 'es', 'name', 'Fuerza AƩrea Colombiana'),
(144787, 113079, 'es', 'name', 'Fundación El Caño'),
(144788, 113080, 'id', 'name', 'Institut Bisnis dan Informatika Kesatuan'),
(144789, 113081, 'en', 'name', 'Center of business law and management'),
(144790, 113081, 'fr', 'name', 'Centre de Droit des Affaires et de Gestion'),
(144791, 113082, 'en', 'name', 'Russian New University'),
(144792, 113083, 'en', 'name', 'St. Joseph College of Teacher Education for Women, Ernakulam'),
(144793, 113084, 'fr', 'name', 'Institut de Recherche en Droit des Affaires et du Patrimoine'),
(144794, 113085, 'en', 'name', 'Gandhigram Rural Institute'),
(144795, 113085, 'hi', 'name', 'ą¤—ą„ą¤°ą¤¾ą¤ą¤§ą„€ą¤—ą„ą¤°ą¤¾ą¤® ą¤—ą„ą¤°ą¤¾ą¤®ą„€ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(144796, 113085, 'ta', 'name', 'ą®•ą®¾ą®ØąÆą®¤ą®æ ą®•ą®æą®°ą®¾ą®®ą®®ąÆ ą®•ą®æą®°ą®¾ą®®ą®æą®Æą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(144797, 113085, 'ml', 'name', 'ą“—ą“¾ą“Øąµą“§ą“æą“—ąµą“°ą“¾ą“‚ ą“•ą“²ąµą“Ŗą“æą“¤ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(144798, 113086, 'en', 'name', 'Beijing Aier Eye Hospital'),
(144799, 113086, 'zh', 'name', 'åŒ—äŗ¬ēˆ±å°”ēœ¼ē§‘åŒ»é™¢'),
(144800, 113087, 'en', 'name', 'La Roche College'),
(144801, 113088, 'fr', 'name', 'Immuno-RƩgulation des Maladies Auto- immunes Inflammatoires et Cancer'),
(144802, 113089, 'no_lang_code', 'name', 'Kolej Poly-Tech MARA'),
(144803, 113090, 'fr', 'name', 'Institut Pluridisciplinaire de Recherche AppliquƩe'),
(144804, 113090, 'en', 'name', 'Multidisciplinary Institute for Applied Research'),
(144805, 113091, 'fr', 'name', 'Laboratoire ICT'),
(144806, 113092, 'en', 'name', 'University of Technology and Applied Sciences, Muscat'),
(144807, 113092, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(144808, 113093, 'id', 'name', 'Universitas Duta Bangsa'),
(144809, 113094, 'fr', 'name', 'CItƩs, Territoires, Environnement et SociƩtƩs'),
(144810, 113095, 'es', 'name', 'Casa de Thomas Mann'),
(144811, 113095, 'en', 'name', 'Thomas Mann House'),
(144812, 113095, 'de', 'name', 'Thomas-Mann-Haus'),
(144813, 113096, 'de', 'name', 'Deutsches Zentrum für Lungenforschung'),
(144814, 113096, 'en', 'name', 'German Center for Lung Research'),
(144815, 113097, 'es', 'name', 'Clinica Santa Maria'),
(144816, 113098, 'fr', 'name', 'Laboratoire d''Ʃtudes sur les monothƩismes'),
(144817, 113099, 'fr', 'name', 'Centre d''Ʃtudes sur la sƩcuritƩ internationale et les coopƩrations europƩennes'),
(144818, 113100, 'fr', 'name', 'Langues, textes, arts et cultures du monde anglophone'),
(144819, 113101, 'nl', 'name', 'Universitair Medisch Centrum Groningen'),
(144820, 113101, 'en', 'name', 'University Medical Center Groningen'),
(144821, 113102, 'de', 'name', 'Ministerium für Forschung und Hochschulwesen'),
(144822, 113102, 'en', 'name', 'Ministry of Research and Higher Education'),
(144823, 113102, 'fr', 'name', 'Ministère de l''Enseignement Supérieur et de la Recherche'),
(144824, 113102, 'lb', 'name', 'Ministère fir Fuerschung an Héichschoul'),
(144825, 113103, 'es', 'name', 'ECORFAN'),
(144826, 113104, 'pt', 'name', 'Sociedade Nacional de Belas-Artes'),
(144827, 113105, 'en', 'name', 'Breast Center'),
(144828, 113106, 'fr', 'name', 'Laboratoire de MƩcanique, ModƩlisation & ProcƩdƩs Propres'),
(144829, 113107, 'en', 'name', 'University of Ghardaia'),
(144830, 113107, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© غرداية'),
(144831, 113108, 'fr', 'name', 'Institut de Recherche en Horticulture et Semences'),
(144832, 113108, 'en', 'name', 'Institute of Research in Horticulture and Seeds'),
(144833, 113109, 'pt', 'name', 'Hospital CĆ¢ndido de Figueiredo Tondela'),
(144834, 113110, 'fr', 'name', 'Laboratoire de Biologie du DƩveloppement de Villefranche-sur-Mer'),
(144835, 113110, 'en', 'name', 'Villefranche-sur-mer Developmental Biology Laboratory'),
(144836, 113111, 'es', 'name', 'Instituto Cardiovascular de Puebla'),
(144837, 113112, 'pt', 'name', 'Centro UniversitƔrio do Rio Grande do Norte'),
(144838, 113113, 'fr', 'name', 'Centre de Recherche en AmƩnagement du Territoire'),
(144839, 113113, 'en', 'name', 'Territory Planning Research Center'),
(144840, 113113, 'ar', 'name', 'Ł…Ų±ŁƒŲ² البحث في ŲŖŁ‡ŁŠŲ¦Ų© Ų§Ł„Ų„Ł‚Ł„ŁŠŁ…'),
(144841, 113114, 'en', 'name', 'Waikato District Health Board'),
(144842, 113115, 'hr', 'name', 'Institut za filozofiju'),
(144843, 113115, 'en', 'name', 'Institute of Philosophy'),
(144844, 113116, 'en', 'name', 'Centre for Professional and Advanced Studies'),
(144845, 113117, 'en', 'name', 'The Catholic University of Korea Daejeon St. Mary''s Hospital'),
(144846, 113117, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ ėŒ€ģ „ģ„±ėŖØė³‘ģ›'),
(144847, 113118, 'en', 'name', 'Community Health Systems - Northwest Medical Center'),
(144848, 113119, 'id', 'name', 'Universitas Islam Majapahit'),
(144849, 113120, 'fr', 'name', 'Institut de Vector'),
(144850, 113120, 'en', 'name', 'Vector Institute'),
(144851, 113121, 'pt', 'name', 'PolĆ­cia Militar do Distrito Federal'),
(144852, 113122, 'en', 'name', 'Melbourne Centre for Nanofabrication'),
(144853, 113123, 'fr', 'name', 'Laboratoire de RƩactivitƩ et Chimie des Solides'),
(144854, 113124, 'it', 'name', 'Fondazione Ricerca Molinette'),
(144855, 113125, 'en', 'name', 'Frisian Academy'),
(144856, 113125, 'nl', 'name', 'Fryske Akademy'),
(144857, 113126, 'pt', 'name', 'Centro de QuĆ­mica Estrutural'),
(144858, 113127, 'fr', 'name', 'Centre de Recherches sur les Arts et le Langage'),
(144859, 113128, 'en', 'name', 'Community Health Systems - Physicians Regional Healthcare System - North'),
(144860, 113129, 'fr', 'name', 'Centre de Recherches et d''Etudes Administratives de Montpellier'),
(144861, 113130, 'en', 'name', 'Northwest Research Associates'),
(144862, 113131, 'es', 'name', 'Instituto Tecnológico y de Energías Renovables'),
(144863, 113132, 'en', 'name', 'Mount Desert Island Biological Laboratory'),
(144864, 113133, 'en', 'name', 'Community Health Systems - Willow Creek Women''s Hospital'),
(144865, 113134, 'en', 'name', 'Government of Netherlands'),
(144866, 113134, 'nl', 'name', 'Nederlandse Regering'),
(144867, 113135, 'fr', 'name', 'Institut de Droit ComparƩs'),
(144868, 113136, 'en', 'name', 'Oxford Archaeology'),
(144869, 113137, 'en', 'name', 'University of Manara'),
(144870, 113137, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المنارة'),
(144871, 113138, 'fr', 'name', 'Centre de Recherches Sociologiques sur le Droit et les Institutions PƩnales'),
(144872, 113139, 'fr', 'name', 'Centre de Recherche sur l’Entreprise, les Organisations et le Patrimoine'),
(144873, 113140, 'is', 'name', 'TƦknisetur IceTec'),
(144874, 113141, 'pt', 'name', 'Centro UniversitÔrio Dr. Leão Sampaio - Unileão'),
(144875, 113142, 'en', 'name', 'BoRdeaux Institute of onCology'),
(144876, 113143, 'en', 'name', 'London Women''s Clinic'),
(144877, 113144, 'en', 'name', 'AATC (Poland)'),
(144878, 113145, 'en', 'name', 'Marine Fisheries Academy'),
(144879, 113146, 'fr', 'name', 'Institut NƩel'),
(144880, 113147, 'fr', 'name', 'Laboratoire Interfaces et SystĆØmes Ɖlectrochimiques'),
(144881, 113148, 'pt', 'name', 'Centro Hospitalar PsiquiƔtrico de Coimbra'),
(144882, 113149, 'en', 'name', 'Sciences Cognitives et Sciences Affectives'),
(144883, 113150, 'id', 'name', 'Pemerintah Kabupaten Trenggalek'),
(144884, 113150, 'en', 'name', 'Regional Government of Trenggalek'),
(144885, 113151, 'fr', 'name', 'Centre d''Ɖcologie et des Sciences de la Conservation'),
(144886, 113152, 'en', 'name', 'University of the National Education Commission, Krakow'),
(144887, 113152, 'pl', 'name', 'Uniwersytet Komisji Edukacji Narodowej w Krakowie'),
(144888, 113153, 'en', 'name', 'Polymer Research Institute'),
(144889, 113153, 'ru', 'name', 'ŠŠ˜Š˜ полимеров'),
(144890, 113154, 'de', 'name', 'CiS Forschungsinstitut für Mikrosensorik GmbH'),
(144891, 113155, 'en', 'name', 'Arizona Research Center'),
(144892, 113156, 'en', 'name', 'Albany Medical College'),
(144893, 113157, 'fr', 'name', 'Histoire, ArchƩologie et LittƩrature des Mondes Anciens'),
(144894, 113158, 'en', 'name', 'Naval Hydrographic and Oceanographic Service'),
(144895, 113158, 'fr', 'name', 'Service Hydrographique et OcƩanographique de la Marine'),
(144896, 113159, 'fr', 'name', 'Institut Interdisciplinaire de Neuroscience'),
(144897, 113159, 'en', 'name', 'Interdisciplinary Institute for NeuroScience'),
(144898, 113160, 'es', 'name', 'Fundación Chile'),
(144899, 113161, 'en', 'name', 'Bannu Medical College'),
(144900, 113161, 'ur', 'name', 'ŲØŁ†ŁˆŚŗ طبی کالج'),
(144901, 113161, 'ps', 'name', 'ŲÆ ŲØŁ†Łˆ Ų·ŲØ Ł¾ŁˆŁ‡Ł†ŚŪŒ'),
(144902, 113162, 'en', 'name', 'Kaimosi Friends University'),
(144903, 113163, 'fr', 'name', 'PhysioPathologie des Adaptations Nutritionnelles'),
(144904, 113164, 'ca', 'name', 'Ajuntament de L’Hospitalet'),
(144905, 113164, 'en', 'name', 'Hospitalet de Llobregat City Council'),
(144906, 113165, 'pt', 'name', 'Centro de Estudos Jurídicos Económicos e Ambientais'),
(144907, 113166, 'fr', 'name', 'Laboratoire de psychologie'),
(144908, 113167, 'en', 'name', 'Egyptian Meteorological Authority'),
(144909, 113168, 'en', 'name', 'Carmel College of Arts, Science and Commerce for Women'),
(144910, 113169, 'en', 'name', 'Kuban State Medical University'),
(144911, 113169, 'ru', 'name', 'Кубанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(144912, 113170, 'en', 'name', 'Southern California Coastal Water Research Project'),
(144913, 113171, 'de', 'name', 'Fachverband für Stahlenschutz'),
(144914, 113172, 'fr', 'name', 'Droit, religion, entreprise et sociƩtƩ'),
(144915, 113173, 'no_lang_code', 'name', 'Kuwait Petroleum Corporation (Kuwait)'),
(144916, 113173, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© Ų§Ł„ŲØŲŖŲ±ŁˆŁ„ Ų§Ł„ŁƒŁˆŁŠŲŖŁŠŲ©'),
(144917, 113174, 'en', 'name', 'Community Health Systems - Northwest Women''s Center'),
(144918, 113175, 'en', 'name', 'Piedmont Reference Center for Epidemiology and Cancer Prevention'),
(144919, 113176, 'en', 'name', 'TechYourFuture'),
(144920, 113177, 'en', 'name', 'Community Health Systems - Tennova LaFollette'),
(144921, 113178, 'en', 'name', 'Aerospace Technology Institute'),
(144922, 113179, 'en', 'name', 'Tochigi Cancer Center'),
(144923, 113179, 'ja', 'name', 'ę ƒęœØēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(144924, 113180, 'fr', 'name', 'Laboratoire d''Etude et de Recherche sur le MatƩriau Bois'),
(144925, 113181, 'fr', 'name', 'Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux'),
(144926, 113182, 'ro', 'name', 'Academia Forțelor Terestre Nicolae Bălcescu'),
(144927, 113182, 'en', 'name', 'Nicolae Bălcescu Land Forces Academy'),
(144928, 113183, 'en', 'name', 'Metrovet'),
(144929, 113184, 'es', 'name', 'Fundación MD Anderson Cancer Center España'),
(144930, 113184, 'en', 'name', 'MD Anderson Cancer Center Madrid'),
(144931, 113185, 'en', 'name', 'European Institute for Marine Studies'),
(144932, 113185, 'fr', 'name', 'Institut Universitaire EuropƩen de la Mer'),
(144933, 113186, 'en', 'name', 'Laiko General Hospital of Athens'),
(144934, 113187, 'de', 'name', 'Physikalisch-Meteorologisches Observatorium Davos'),
(144935, 113188, 'fr', 'name', 'Laboratoire de MƩtƩorologie Dynamique'),
(144936, 113189, 'en', 'name', 'Dutch Brain Foundation'),
(144937, 113189, 'nl', 'name', 'Hersenstichting'),
(144938, 113190, 'de', 'name', 'Unfallkrankenhaus Berlin'),
(144939, 113191, 'en', 'name', 'Nalut University'),
(144940, 113192, 'en', 'name', 'Joint Institute for VLBI ERIC'),
(144941, 113193, 'nl', 'name', 'Departement Werk en Sociale Economie'),
(144942, 113193, 'en', 'name', 'Department of Work and Social Economy'),
(144943, 113194, 'fr', 'name', 'Laboratoire d''ArchƩologie MƩdiƩvale et Moderne en MƩditerranƩe'),
(144944, 113195, 'en', 'name', 'Hubert Curien Pluridisciplinary Institute'),
(144945, 113195, 'fr', 'name', 'Institut Pluridisciplinaire Hubert Curien'),
(144946, 113196, 'fr', 'name', 'Laboratoire ModƩlisation et Simulation Multi-Echelle'),
(144947, 113197, 'fr', 'name', 'Laboratoire Culture, Sport, SantƩ, SociƩtƩ'),
(144948, 113198, 'en', 'name', 'Institute for Community Living'),
(144949, 113199, 'de', 'name', 'UniversitƤre Psychiatrische Dienste Bern'),
(144950, 113200, 'fr', 'name', 'Laboratoire Bio-peroxIL'),
(144951, 113201, 'pt', 'name', 'Universidade Candido Mendes'),
(144952, 113202, 'pt', 'name', 'Unidade Local de Saúde do Médio Tejo'),
(144953, 113203, 'en', 'name', 'General Hospital of Athens G. Genimatas'),
(144954, 113204, 'de', 'name', 'Gesellschaft für Politikdidaktik und politische Jugend- und Erwachsenenbildung'),
(144955, 113205, 'vi', 'name', 'Bệnh viện Chợ Rįŗ«y'),
(144956, 113205, 'en', 'name', 'Cho Ray Hospital'),
(144957, 113206, 'fr', 'name', 'Laboratoire de MƩdiƩvistique Occidentale de Paris'),
(144958, 113207, 'pt', 'name', 'Trivalor SGPS (Portugal)'),
(144959, 113208, 'en', 'name', 'National University of Jujuy'),
(144960, 113208, 'es', 'name', 'Universidad Nacional de Jujuy'),
(144961, 113209, 'fr', 'name', 'Laboratoire ƩnergƩtique mƩcanique ƩlectromagnƩtisme'),
(144962, 113210, 'es', 'name', 'Instituto de GeografĆ­a Romualdo Ardissone'),
(144963, 113211, 'fr', 'name', 'Centre Muraz'),
(144964, 113212, 'id', 'name', 'Universitas Ekasakti'),
(144965, 113213, 'fr', 'name', 'Virologie et Pathologies Humaines'),
(144966, 113213, 'en', 'name', 'Virology and Human Pathology'),
(144967, 113214, 'en', 'name', 'ASTRA - Anti-Trafficking Action'),
(144968, 113214, 'sr', 'name', 'АДТРА - ŠŠŗŃ†ŠøŃ˜Š° против трговине Ń™ŃƒŠ“ŠøŠ¼Š°'),
(144969, 113215, 'en', 'name', 'Institute of Rural Health'),
(144970, 113215, 'pl', 'name', 'Instytut Medycyny Wsi im. Witolda ChodÅŗki'),
(144971, 113216, 'en', 'name', 'ISG Business School'),
(144972, 113216, 'fr', 'name', 'Institut Superieur de Gestion'),
(144973, 113217, 'en', 'name', 'Tashkent Pediatric Medical Institute'),
(144974, 113218, 'no_lang_code', 'name', 'Micron (United States)'),
(144975, 113219, 'ro', 'name', 'Universitatea de Vest Vasile Goldiș din Arad'),
(144976, 113219, 'en', 'name', 'Vasile Goldis Western University of Arad'),
(144977, 113220, 'en', 'name', 'Catholic University of Salvador'),
(144978, 113220, 'es', 'name', 'Universidade Católica de Salvador'),
(144979, 113220, 'pt', 'name', 'Universidade Católica do Salvador'),
(144980, 113221, 'en', 'name', 'St Savas Hospital'),
(144981, 113222, 'no_lang_code', 'name', 'Hollister (United States)'),
(144982, 113223, 'fr', 'name', 'Centre de Recherches Interdisciplinaires et Transculturelles'),
(144983, 113224, 'fr', 'name', 'Sciences, Normes, DƩmocratie'),
(144984, 113225, 'fr', 'name', 'Laboratoire de Photochimie et d''IngƩnierie MacromolƩculaire'),
(144985, 113226, 'id', 'name', 'Universitas Jayabaya'),
(144986, 113227, 'en', 'name', 'Thanh Hoa University of Culture, Sports and Tourism'),
(144987, 113227, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Văn hóa, Thể thao vĆ  Du lịch Thanh Hóa'),
(144988, 113228, 'en', 'name', 'SENS Research Foundation'),
(144989, 113229, 'pl', 'name', 'Narodowy Bank Polski'),
(144990, 113229, 'en', 'name', 'National Bank of Poland'),
(144991, 113230, 'en', 'name', 'PowerChina Kunming Engineering Corporation Limited (China)'),
(144992, 113230, 'zh', 'name', 'äø­å›½ē”µå»ŗé›†å›¢ę˜†ę˜Žå‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(144993, 113231, 'fr', 'name', 'UMS PhƩnotypage du petit animal'),
(144994, 113232, 'nl', 'name', 'Arkin'),
(144995, 113233, 'fr', 'name', 'Arts: pratiques et poƩtiques'),
(144996, 113234, 'no_lang_code', 'name', 'Evangelismos Hospital'),
(144997, 113235, 'en', 'name', 'Saidu Teaching Hospital'),
(144998, 113236, 'en', 'name', 'Chechen State University'),
(144999, 113236, 'ru', 'name', 'Чеченский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(145000, 113237, 'pt', 'name', 'LC Technologies (Portugal)'),
(145001, 113238, 'hi', 'name', 'Sri Padmavati Mahila Visvavidyalayam'),
(145002, 113238, 'te', 'name', 'ą°Ŗą°¦ą±ą°®ą°¾ą°µą°¤ą°æ మహిళా ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(145003, 113239, 'id', 'name', 'Universitas Pgri Banyuwangi'),
(145004, 113240, 'fr', 'name', 'Etudes romanes'),
(145005, 113241, 'fr', 'name', 'Laboratoire de GƩographie Physique'),
(145006, 113242, 'en', 'name', 'Association of Flight Attendants'),
(145007, 113243, 'en', 'name', 'Albany Med Health System'),
(145008, 113244, 'es', 'name', 'Sociedad Andaluza de Medicina Familiar y Comunitaria'),
(145009, 113245, 'no_lang_code', 'name', 'Rho (United States)'),
(145010, 113246, 'fr', 'name', 'Association faĆ®tiĆØre de l’économie des Ć©nergies renouvelables et de l’efficacitĆ© Ć©nergĆ©tique'),
(145011, 113246, 'de', 'name', 'Dachverband der Wirtschaft für erneuerbare Energien und Energieeffizienz'),
(145012, 113247, 'en', 'name', 'Navotas Polytechnic College'),
(145013, 113248, 'pt', 'name', 'MinistƩrio da Cultura, Juventude e Desporto'),
(145014, 113249, 'en', 'name', 'Wellesley Centers for Women'),
(145015, 113250, 'en', 'name', 'The Faraday Institution'),
(145016, 113251, 'no_lang_code', 'name', 'BioElectronics (United States)'),
(145017, 113252, 'fr', 'name', 'Laboratoire d’Innovation pour les Technologies des Ɖnergies Nouvelles et les nanomatĆ©riaux'),
(145018, 113253, 'en', 'name', 'Notre Dame University Bangladesh'),
(145019, 113254, 'ms', 'name', 'Hospital Pulau Pinang'),
(145020, 113255, 'en', 'name', 'SolarWinds'),
(145021, 113255, 'no_lang_code', 'name', 'SolarWinds (United States)'),
(145022, 113256, 'no_lang_code', 'name', 'MIMOS (Malaysia)'),
(145023, 113257, 'en', 'name', 'Ministry of Health of the Russian Federation'),
(145024, 113257, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(145025, 113258, 'pt', 'name', 'Centro de Estudos em Direito da União Europeia'),
(145026, 113259, 'en', 'name', 'Peak Health Center'),
(145027, 113260, 'en', 'name', 'Kaluga State University named after K.E.Tsiolkovski'),
(145028, 113260, 'ru', 'name', 'Калужский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. Š­. Циолковского'),
(145029, 113261, 'pl', 'name', 'Akademia Bialska im. Jana Pawła II'),
(145030, 113262, 'en', 'name', 'UGC-DAE Consortium for Scientific Research, Mumbai Centre'),
(145031, 113263, 'en', 'name', 'Community Health Systems - Lutheran Downtown Hospital'),
(145032, 113264, 'pt', 'name', 'US Air Forces Europe Libraries Lajes Library'),
(145033, 113265, 'en', 'name', 'Suzhou University of Technology'),
(145034, 113265, 'zh', 'name', 'č‹å·žå·„å­¦é™¢'),
(145035, 113266, 'fr', 'name', 'Centre de recherche en psychologie : cognition, psychisme et organisations'),
(145036, 113267, 'fr', 'name', 'Laboratoire d''ƉnergĆ©tique MolĆ©culaire et Macroscopique, Combustion'),
(145037, 113268, 'en', 'name', 'Indian Council of Agricultural Research'),
(145038, 113268, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø परिषद'),
(145039, 113268, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µąÆ‡ą®³ą®¾ą®£ąÆ ą®†ą®ÆąÆą®µąÆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(145040, 113269, 'fr', 'name', 'DƩpartement de Chimie MolƩculaire'),
(145041, 113270, 'en', 'name', 'Russian University of Transport'),
(145042, 113270, 'ru', 'name', 'Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ транспорта'),
(145043, 113271, 'fr', 'name', 'Conception de l''Action en Situation'),
(145044, 113272, 'fr', 'name', 'Centre interdisciplinaire de recherche "Culture, Ʃducation, formation, travail"'),
(145045, 113273, 'fr', 'name', 'Direction de la Recherche Technologique'),
(145046, 113274, 'fr', 'name', 'Laboratoire ActivitƩ Physique, Performance et SantƩ'),
(145047, 113275, 'en', 'name', 'Russian Academy of Architecture and Construction Sciences'),
(145048, 113275, 'ru', 'name', 'Š Š¾ŃŃŠøĢŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµĢŠ¼ŠøŃ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒĢŃ€Ń‹ Šø ŃŃ‚Ń€Š¾ŠøĢŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… нау́к'),
(145049, 113276, 'no_lang_code', 'name', 'JSTOR'),
(145050, 113277, 'fr', 'name', 'Institut de Chimie de Strasbourg'),
(145051, 113278, 'en', 'name', 'Cure CMD'),
(145052, 113279, 'en', 'name', 'Flemish Government'),
(145053, 113279, 'de', 'name', 'FlƤmische Regierung'),
(145054, 113279, 'fr', 'name', 'Gouvernement flamand'),
(145055, 113279, 'nl', 'name', 'Vlaamse Overheid'),
(145056, 113280, 'fr', 'name', 'Laboratoire de Psychologie'),
(145057, 113281, 'en', 'name', 'Statistics Botswana'),
(145058, 113282, 'no_lang_code', 'name', 'Centre d''Ʃtudes Alexandrines'),
(145059, 113283, 'en', 'name', 'Center for Historical Studies'),
(145060, 113283, 'fr', 'name', 'Centre de Recherches Historiques'),
(145061, 113284, 'fr', 'name', 'Institut Des Substances et Organismes de la Mer'),
(145062, 113285, 'id', 'name', 'Universitas Pembangunan Panca Budi Medan'),
(145063, 113286, 'en', 'name', 'Houghton University'),
(145064, 113287, 'en', 'name', 'Constanta Maritime University'),
(145065, 113287, 'ro', 'name', 'Universitatea Maritimă din Constanța'),
(145066, 113288, 'it', 'name', 'SocietĆ  Italiana di Medicina Generale'),
(145067, 113289, 'no_lang_code', 'name', 'Advanced Semiconductor Engineering (Taiwan)'),
(145068, 113289, 'zh', 'name', 'ę—„ęœˆå…‰é›†å›¢'),
(145069, 113290, 'en', 'name', 'Perinatal HIV Research Unit'),
(145070, 113291, 'fr', 'name', 'Ɖcole SupĆ©rieure de Commerce'),
(145071, 113292, 'pt', 'name', 'Centro de Respostas Integradas Porto Oriental (Portugal)'),
(145072, 113292, 'en', 'name', 'Eastern Porto Integrated Response Team'),
(145073, 113293, 'en', 'name', 'Hiroshima University of Economics'),
(145074, 113293, 'ja', 'name', '広島経済大学'),
(145075, 113294, 'pt', 'name', 'Centro de Ciências MatemÔticas'),
(145076, 113295, 'pt', 'name', 'Centrais ElƩtricas Brasileiras S.A.'),
(145077, 113295, 'no_lang_code', 'name', 'Eletrobras (Brazil)'),
(145078, 113296, 'en', 'name', 'Liaquat National Hospital'),
(145079, 113297, 'en', 'name', 'Mahaveer University'),
(145080, 113298, 'fr', 'name', 'HƓpital Saint Joseph'),
(145081, 113299, 'en', 'name', 'Computer Science Research Laboratory of the University of Pau & Adour Countries'),
(145082, 113299, 'fr', 'name', 'Laboratoire Informatique de l''UniversitƩ de Pau et des Pays de l''Adour'),
(145083, 113300, 'es', 'name', 'Hospital del Salvador'),
(145084, 113301, 'pt', 'name', 'Centro de Investigação em Património Educação e Cultura'),
(145085, 113302, 'en', 'name', 'Instacart'),
(145086, 113302, 'no_lang_code', 'name', 'Instacart (United States)'),
(145087, 113303, 'en', 'name', 'Central Bank of the Russian Federation'),
(145088, 113303, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ банк Российской ФеГерации'),
(145089, 113304, 'en', 'name', 'Reserve Bank of Australia'),
(145090, 113305, 'en', 'name', 'ABS Research Academy'),
(145091, 113305, 'no_lang_code', 'name', 'ABS Research Academy (Bangladesh)'),
(145092, 113306, 'pl', 'name', 'Górnośląskie Centrum Medyczne'),
(145093, 113307, 'en', 'name', 'Biomathematics and Statistics Scotland'),
(145094, 113308, 'en', 'name', 'Soliman Fakeeh Hospital'),
(145095, 113308, 'ar', 'name', 'Ų§Ł„ŲÆŁƒŲŖŁˆŲ± Ų³Ł„ŁŠŁ…Ų§Ł† ŁŁ‚ŁŠŲ©'),
(145096, 113309, 'pt', 'name', 'Francisco José Farias Investigação (Portugal)'),
(145097, 113309, 'en', 'name', 'Francisco JosƩ Farias Research'),
(145098, 113310, 'fr', 'name', 'TƩSA'),
(145099, 113311, 'no_lang_code', 'name', 'Transgene (France)'),
(145100, 113312, 'en', 'name', 'Government College Sirohi'),
(145101, 113313, 'pt', 'name', 'Instituto Superior de ServiƧo Social'),
(145102, 113314, 'en', 'name', 'National Medical and Surgical Center named after N.I. Pirogov'),
(145103, 113314, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГико-Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Центр имени Š.И. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(145104, 113315, 'en', 'name', 'Singlera Genomics Inc. (United States)'),
(145105, 113316, 'en', 'name', 'Brisbane School of Theology'),
(145106, 113317, 'fr', 'name', 'Centre europƩen de recherches en droit des familles, des assurances, des personnes et de la santƩ'),
(145107, 113318, 'es', 'name', 'Universidad Blas Pascal'),
(145108, 113319, 'id', 'name', 'Pembuluh Darah Harapan Kita'),
(145109, 113320, 'en', 'name', 'Community Health Systems - Bluffton Regional Medical Center'),
(145110, 113321, 'id', 'name', 'Institut Ilmu Al-Quran (IIQ) Jakarta'),
(145111, 113322, 'pt', 'name', 'Associação para a Formação Profissional e Investigação'),
(145112, 113323, 'en', 'name', 'Norwegian Cancer Society'),
(145113, 113324, 'pt', 'name', 'Vinha e Vinhos Portugueses Competitividade e Sustentabilidade'),
(145114, 113325, 'fr', 'name', 'Institut des Neurosciences Paris-Saclay'),
(145115, 113325, 'en', 'name', 'Paris-Saclay Institute of Neuroscience'),
(145116, 113326, 'fr', 'name', 'Centre EuropƩen de Sociologie et de Science Politique'),
(145117, 113326, 'en', 'name', 'European Centre for Sociology and Political Science'),
(145118, 113327, 'es', 'name', 'Hospital MƩdica Sur'),
(145119, 113328, 'fr', 'name', 'Arts, civilisation et histoire de l''Europe'),
(145120, 113329, 'en', 'name', 'MODUL University Vienna'),
(145121, 113330, 'pt', 'name', 'Centro UniversitÔrio Salesiano de São Paulo'),
(145122, 113331, 'fr', 'name', 'Institut de Chimie et ProcƩdƩs pour l''Energie, l''Environnement et la SantƩ'),
(145123, 113331, 'en', 'name', 'Institute of Chemistry and Processes for Energy, Environment and Health'),
(145124, 113332, 'en', 'name', 'Salk Institute for Biological Studies'),
(145125, 113333, 'en', 'name', 'University Heart Center Freiburg'),
(145126, 113333, 'de', 'name', 'UniversitƤts-Herzzentrum Freiburg-Bad Krozingen'),
(145127, 113334, 'en', 'name', 'Institute of Service and Entrepreneurship of DGTU'),
(145128, 113334, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сферы Š¾Š±ŃŠ»ŃƒŠ¶ŠøŠ²Š°Š½ŠøŃ Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° ДГТУ в г. Шахты'),
(145129, 113335, 'fr', 'name', 'Observatoire de la Faune Sauvage de Nouvelle Aquitaine'),
(145130, 113336, 'en', 'name', 'Sports Science Institute of South Africa'),
(145131, 113337, 'de', 'name', 'Krankenhaus Düren'),
(145132, 113338, 'fr', 'name', 'Groupe d''Analyse et de ThƩorie Economique Lyon St Etienne'),
(145133, 113339, 'en', 'name', 'Curia Tecnopark'),
(145134, 113339, 'pt', 'name', 'Curia Tecnoparque (Portugal)'),
(145135, 113340, 'en', 'name', 'Kyoto Women''s University'),
(145136, 113340, 'ja', 'name', '京都儳子大学'),
(145137, 113341, 'en', 'name', 'Liv Hospital'),
(145138, 113342, 'id', 'name', 'Universitas 17 Agustus 1945 Cirebon'),
(145139, 113343, 'pt', 'name', 'Universidade de Coimbra Museu da CiĆŖncia'),
(145140, 113344, 'en', 'name', 'Defeat Duchenne Canada'),
(145141, 113344, 'fr', 'name', 'Vaincre Duchenne Canada'),
(145142, 113345, 'es', 'name', 'Universidad Nacional del Litoral'),
(145143, 113346, 'en', 'name', 'Japan Research Institute'),
(145144, 113346, 'ja', 'name', 'ę—„ęœ¬ē·ē ”'),
(145145, 113347, 'en', 'name', 'National University of Rosario'),
(145146, 113347, 'es', 'name', 'Universidad Nacional de Rosario'),
(145147, 113348, 'en', 'name', 'Community Health Systems - Medical Center Enterprise'),
(145148, 113349, 'en', 'name', 'Qatar Science and Technology Park'),
(145149, 113349, 'ar', 'name', 'واحة Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ في قطر'),
(145150, 113350, 'en', 'name', 'Edinburgh College'),
(145151, 113351, 'en', 'name', 'Animal and Veterinary Research Centre'),
(145152, 113351, 'pt', 'name', 'Centro de Ciência Animal e VeterinÔria'),
(145153, 113352, 'nl', 'name', 'Oogziekenhuis Rotterdam'),
(145154, 113352, 'en', 'name', 'Rotterdam Eye Hospital'),
(145155, 113353, 'en', 'name', 'Tver State Medical University'),
(145156, 113353, 'ru', 'name', 'Š¢Š²ŠµŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(145157, 113354, 'no_lang_code', 'name', 'Neusoft (China)'),
(145158, 113354, 'zh', 'name', 'äøœč½Æå…¬åø'),
(145159, 113355, 'es', 'name', 'Instituto Nacional de Psiquiatría Ramón de la Fuente Muñiz'),
(145160, 113355, 'en', 'name', 'National Institute of Psychiatry Ramón de la Fuente Muñiz'),
(145161, 113356, 'en', 'name', 'SiriusXT Ltd (Ireland)'),
(145162, 113357, 'fr', 'name', 'Laboratoire d''Ʃtudes et de recherche en sociologie'),
(145163, 113358, 'no_lang_code', 'name', 'Cyclotron (Netherlands)'),
(145164, 113359, 'no_lang_code', 'name', 'Aerodyne Research'),
(145165, 113360, 'en', 'name', 'Jackson Laboratory'),
(145166, 113361, 'en', 'name', 'Kohnan Hospital'),
(145167, 113361, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŗƒå—ä¼šåŗƒå—ē—…é™¢'),
(145168, 113362, 'fr', 'name', 'Laboratoire Stress Oxydant et Pathologies MƩtaboliques'),
(145169, 113363, 'fr', 'name', 'Laboratoire des signaux et systĆØmes'),
(145170, 113364, 'en', 'name', 'Welch Foundation'),
(145171, 113365, 'en', 'name', 'Tver State Technical University'),
(145172, 113365, 'ru', 'name', 'Тверской Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(145173, 113366, 'fr', 'name', 'Les Afriques dans le Monde'),
(145174, 113367, 'en', 'name', 'Experiential Higher Institute of Science and Technology (EXHIST)'),
(145175, 113368, 'en', 'name', 'Sri Siddhartha Medical College'),
(145176, 113369, 'en', 'name', 'Premier University'),
(145177, 113369, 'bn', 'name', 'ą¦Ŗą§ą¦°ą¦æą¦®ą¦æą§Ÿą¦¾ą¦° ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(145178, 113370, 'en', 'name', 'Interdisciplinarity in English Studies'),
(145179, 113370, 'fr', 'name', 'InterdisciplinaritƩ dans les Etudes Anglophones'),
(145180, 113371, 'en', 'name', 'Directorate of Health'),
(145181, 113372, 'fr', 'name', 'ArchĆ©ologie et Philologie d’Orient et d’Occident'),
(145182, 113373, 'pt', 'name', 'Unidade Local de SaĆŗde do Oeste'),
(145183, 113374, 'pt', 'name', 'Centro UniversitĆ”rio Serra dos ƓrgĆ£os'),
(145184, 113375, 'fr', 'name', 'CEA CESTA'),
(145185, 113376, 'en', 'name', 'Sardar Patel Post Graduate Institute of Dental and Medical Sciences'),
(145186, 113377, 'no_lang_code', 'name', 'Ippokrateio General Hospital of Thessaloniki'),
(145187, 113377, 'el', 'name', 'Ī™Ī Ī ĪŸĪšĪ”Ī‘Ī¤Ī•Ī™ĪŸ Ī Ī•Ī”Ī™Ī¦Ī•Ī”Ī•Ī™Ī‘ĪšĪŸ Ī“Ī•ĪĪ™ĪšĪŸ ĪĪŸĪ£ĪŸĪšĪŸĪœĪ•Ī™ĪŸ Ī˜Ī•Ī£Ī£Ī‘Ī›ĪŸĪĪ™ĪšĪ—Ī£'),
(145188, 113378, 'fr', 'name', 'EPLEFPA Le Valentin – Valence'),
(145189, 113379, 'fr', 'name', 'Groupe d''Etudes et de Recherche Interdisciplinaire en Information et Communication'),
(145190, 113380, 'en', 'name', 'Institute for Molecular Medicine'),
(145191, 113381, 'en', 'name', 'Institute of Ecology, A.C.'),
(145192, 113381, 'es', 'name', 'Instituto de EcologĆ­a'),
(145193, 113382, 'ro', 'name', 'Institutul de Pneumoftiziologie "Marius Nasta"'),
(145194, 113383, 'fr', 'name', 'Institut National de la MƩtƩorologie'),
(145195, 113383, 'en', 'name', 'National Institute of Meteorology'),
(145196, 113384, 'en', 'name', 'Kuala Lumpur University of Science & Technology'),
(145197, 113385, 'de', 'name', 'Krankenhaus Bethanien'),
(145198, 113386, 'en', 'name', 'John B. Pierce Laboratory'),
(145199, 113387, 'pt', 'name', 'Museu Nacional do Teatro e da DanƧa'),
(145200, 113388, 'en', 'name', 'Children''s Memorial Health Institute'),
(145201, 113389, 'de', 'name', 'Evangelisches Krankenhaus Düsseldorf'),
(145202, 113390, 'pt', 'name', 'Clƭnica UniversitƔria de Pneumologia'),
(145203, 113390, 'en', 'name', 'University Clinic of Pulmonolog'),
(145204, 113391, 'fr', 'name', 'Centre Michel de Boüard'),
(145205, 113392, 'pt', 'name', 'Centro de Investigação e de Estudos em Belas-Artes'),
(145206, 113393, 'id', 'name', 'Universitas Satya Negara Indonesia'),
(145207, 113394, 'en', 'name', 'Hungarian Natural History Museum'),
(145208, 113394, 'hu', 'name', 'Magyar TermészettudomÔnyi Múzeum'),
(145209, 113395, 'fr', 'name', 'Centre Hospitalier Saint-Denis'),
(145210, 113396, 'fr', 'name', 'Centre d''Histoire Judiciaire'),
(145211, 113397, 'fr', 'name', 'Laboratoire de MathƩmatiques de l''INSA de Rouen'),
(145212, 113398, 'fr', 'name', 'Laboratoire RƩactions et GƩnie des ProcƩdƩs'),
(145213, 113398, 'en', 'name', 'Reactions and Chemical Engineering Laboratory'),
(145214, 113399, 'fr', 'name', 'Laboratoire d''Ɖconomie MathĆ©matique et de MicroĆ©conomie AppliquĆ©e'),
(145215, 113400, 'en', 'name', 'European Securities and Markets Authority'),
(145216, 113401, 'en', 'name', 'Physics of Ionic and Molecular Interactions'),
(145217, 113401, 'fr', 'name', 'Physique des interactions ioniques et molƩculaires'),
(145218, 113402, 'en', 'name', 'Dagestan State University'),
(145219, 113402, 'ru', 'name', 'Дагестанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(145220, 113403, 'en', 'name', 'Center for South Asian Studies'),
(145221, 113403, 'fr', 'name', 'Centre d''Ɖtudes de l''Inde et de l''Asie du Sud'),
(145222, 113404, 'en', 'name', 'Institute of Oil and Gas Problems of the Siberian Branch of the RAS'),
(145223, 113404, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем нефти Šø газа Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(145224, 113405, 'pt', 'name', 'Centro de Estudos e Pesquisas em Educação, Cultura e Ação ComunitÔria'),
(145225, 113406, 'no_lang_code', 'name', 'Yalong Hydro (China)'),
(145226, 113406, 'zh', 'name', 'é›…ē »ę±ŸęµåŸŸę°“ē”µå¼€å‘'),
(145227, 113407, 'fr', 'name', 'ArchƩologie des SociƩtƩs MƩditerranƩennes'),
(145228, 113408, 'fr', 'name', 'Institut des Sciences Criminelles et de la Justice'),
(145229, 113409, 'fr', 'name', 'Laboratoire de Spectroscopie pour les Interactions, la RƩactivitƩ et l''Environnement'),
(145230, 113410, 'en', 'name', 'New York College of Health Professions'),
(145231, 113411, 'fr', 'name', 'ArchƩozoologie et ArchƩobotanique'),
(145232, 113412, 'de', 'name', 'Deutsche Universität für Verwaltungswissenschaften Speyer'),
(145233, 113412, 'en', 'name', 'German University of Administrative Sciences'),
(145234, 113413, 'en', 'name', 'Ukrainian Library Association'),
(145235, 113413, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—ĢŠ½ŃŃŒŠŗŠ° бібліоте́чна Š°ŃŠ¾Ń†Ń–Š°ĢŃ†Ń–Ń'),
(145236, 113414, 'en', 'name', 'Egnosis SRL'),
(145237, 113414, 'no_lang_code', 'name', 'Egnosis SRL (Romania)'),
(145238, 113415, 'fr', 'name', 'Institut de Physique et Chimie des MatƩriaux de Strasbourg'),
(145239, 113416, 'fr', 'name', 'EconomiX'),
(145240, 113417, 'en', 'name', 'The King''s University'),
(145241, 113418, 'pt', 'name', 'Centro de Estudos Globais'),
(145242, 113419, 'en', 'name', 'Comprehensive Health Research Centre'),
(145243, 113420, 'fr', 'name', 'Laboratoire Interdisciplinaire des Sciences du NumƩrique'),
(145244, 113421, 'fr', 'name', 'Laboratoire d''Ɖlectrotechnique et d''Ɖlectronique de Puissance de Lille'),
(145245, 113421, 'en', 'name', 'Lille Laboratory of Electrical Engineering and Power Electronics'),
(145246, 113422, 'en', 'name', 'Albany Law School'),
(145247, 113422, 'fr', 'name', 'FacultƩ de droit d''albany'),
(145248, 113423, 'nl', 'name', 'Nederlands Instituut Voor Zuivel Oonderzoek'),
(145249, 113424, 'en', 'name', 'Community Health Systems - Grandview Medical Center'),
(145250, 113425, 'en', 'name', 'Adaptative Mechanisms & Evolution'),
(145251, 113425, 'fr', 'name', 'MƩcanismes Adaptatifs et Evolution'),
(145252, 113426, 'fr', 'name', 'Dynamique du noyau'),
(145253, 113426, 'en', 'name', 'Nuclear Dynamics'),
(145254, 113427, 'en', 'name', 'Santobono Children''s Hospital'),
(145255, 113428, 'fr', 'name', 'Laboratoire de Microbiologie Fondamentale et PathogƩnicitƩ'),
(145256, 113429, 'fr', 'name', 'Laboratoire de Physique de la Matière Condensée'),
(145257, 113430, 'fr', 'name', 'Centre d''Etudes et De Recherche en Informatique et Communications'),
(145258, 113431, 'fr', 'name', 'ModĆØles Dynamiques Corpus'),
(145259, 113432, 'en', 'name', 'Taisei Rotec Corporation'),
(145260, 113432, 'no_lang_code', 'name', 'Taisei Rotec Corporation (Japan)'),
(145261, 113432, 'ja', 'name', 'å¤§ęˆćƒ­ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(145262, 113433, 'en', 'name', 'Publishing House "Helvetica"'),
(145263, 113433, 'no_lang_code', 'name', 'Publishing House "Helvetica" (Ukraine)'),
(145264, 113434, 'pt', 'name', 'Centro de QuĆ­mica da Madeira'),
(145265, 113434, 'en', 'name', 'Madeira Chemistry Research Centre'),
(145266, 113435, 'it', 'name', 'Regione Autonoma Valle d''Aosta'),
(145267, 113436, 'en', 'name', 'Community Health Systems - Dupont Hospital'),
(145268, 113437, 'en', 'name', 'Institute of Pathology and Genetics'),
(145269, 113438, 'en', 'name', 'Physiological Society'),
(145270, 113439, 'en', 'name', 'Bombay Hospital'),
(145271, 113440, 'pt', 'name', 'Teoria e História do Direito'),
(145272, 113441, 'id', 'name', 'Universitas Tunas Pembangunan'),
(145273, 113442, 'fr', 'name', 'Centre Hospitalier Universitaire de Clermont-Ferrand'),
(145274, 113443, 'de', 'name', 'Hessisches Landesamt für Gesundheit und Pflege'),
(145275, 113444, 'fr', 'name', 'Institut supérieur d''étude des religions et de la laïcité'),
(145276, 113445, 'id', 'name', 'Universitas Riau Kepulauan'),
(145277, 113446, 'fr', 'name', 'Handicap neuromusculaire : Physiopathologie, BiothƩrapie et Pharmacologie appliquƩes'),
(145278, 113447, 'en', 'name', 'Catalysis and Spectrochemistry Laboratory'),
(145279, 113447, 'fr', 'name', 'Laboratoire Catalyse et Spectrochimie'),
(145280, 113448, 'en', 'name', 'Tamil Nadu Dr. J Jayalalitha Fisheries University'),
(145281, 113448, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®®ąÆ€ą®©ąÆą®µą®³ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(145282, 113449, 'en', 'name', 'National Institute of Research and Development for Electrochemistry and Condensed'),
(145283, 113450, 'en', 'name', 'Society for Neuroscience'),
(145284, 113451, 'en', 'name', 'Berhampur University'),
(145285, 113452, 'no_lang_code', 'name', 'Sotiria General Hospital'),
(145286, 113453, 'es', 'name', 'Universidad PolitƩcnica Territorial de los Valles del Tuy'),
(145287, 113454, 'pt', 'name', 'Museu Nacional do Traje'),
(145288, 113455, 'en', 'name', 'Peruvian Union University'),
(145289, 113455, 'es', 'name', 'Universidad Peruana Unión'),
(145290, 113456, 'fr', 'name', 'Centre de droit pƩnal et de criminologie'),
(145291, 113457, 'pt', 'name', 'Universidade Católica Portuguesa'),
(145292, 113458, 'en', 'name', 'Henry Dunant Hospital'),
(145293, 113459, 'fr', 'name', 'Centre de Droit Maritime et OcƩanique'),
(145294, 113459, 'en', 'name', 'Maritime And Oceanic Law Centre'),
(145295, 113460, 'en', 'name', 'Agricultural Institute Osijek'),
(145296, 113461, 'en', 'name', 'Universities of Giessen and Marburg Lung Center'),
(145297, 113462, 'en', 'name', 'One Percent Research Initiative'),
(145298, 113463, 'en', 'name', 'Genomics and Biotechnology of the Fruits Laboratory'),
(145299, 113463, 'fr', 'name', 'Genomique et Biotechnologie des Fruits'),
(145300, 113464, 'en', 'name', 'Buda Health Center'),
(145301, 113464, 'hu', 'name', 'Budai EgƩszsƩgkƶzpont'),
(145302, 113465, 'fr', 'name', 'Centre d’Etudes Politiques Et sociaLes'),
(145303, 113466, 'pt', 'name', 'Centro de LinguĆ­stica'),
(145304, 113467, 'en', 'name', 'Umkhuseli Innovation and Research Management'),
(145305, 113468, 'en', 'name', 'Community Health Systems - Merit Health Women''s Hospital'),
(145306, 113469, 'en', 'name', 'Mewar University'),
(145307, 113469, 'hi', 'name', 'ą¤®ą„‡ą¤µą¤¾ą¤”ą¤¼ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(145308, 113470, 'en', 'name', 'Helwan University');
INSERT INTO `ror_settings` VALUES
(145309, 113470, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų­Ł„ŁˆŲ§Ł†'),
(145310, 113471, 'en', 'name', 'University Hospital of Ioannina'),
(145311, 113472, 'en', 'name', 'University Hospital Bratislava'),
(145312, 113473, 'pt', 'name', 'Associação Paulista de Medicina'),
(145313, 113474, 'en', 'name', 'Hussaini Adamu Federal Polytechnic'),
(145314, 113475, 'en', 'name', 'Indiana Geological and Water Survey'),
(145315, 113476, 'en', 'name', 'Christchurch Hospital'),
(145316, 113477, 'en', 'name', 'Komaki City Hospital'),
(145317, 113477, 'ja', 'name', 'å°ē‰§åø‚ę°‘ē—…é™¢'),
(145318, 113478, 'pt', 'name', 'NaturaFish (Portugal)'),
(145319, 113479, 'en', 'name', 'National Insurance Academy, Pune'),
(145320, 113480, 'pt', 'name', 'Ensino Superior Empresarial (Portugal)'),
(145321, 113481, 'fr', 'name', 'MusƩe royal de l''Ontario'),
(145322, 113481, 'en', 'name', 'Royal Ontario Museum'),
(145323, 113482, 'ro', 'name', 'Universitatea Nicolae Titulescu din București'),
(145324, 113483, 'no_lang_code', 'name', 'Metropolitan Hospital'),
(145325, 113484, 'nl', 'name', 'Altrecht GGZ'),
(145326, 113485, 'en', 'name', 'InterPsy Laboratory'),
(145327, 113485, 'fr', 'name', 'Interpsy'),
(145328, 113486, 'fr', 'name', 'Centre de Recherche sur la Langue et les Textes Basques'),
(145329, 113486, 'en', 'name', 'Research Center on the Basque Language And Texts'),
(145330, 113487, 'en', 'name', 'Indian Institute of Information Technology Surat'),
(145331, 113488, 'en', 'name', 'Research Network on Electrochemical Energy Storage'),
(145332, 113488, 'fr', 'name', 'RƩseau sur le Stockage Electrochimique de l''Ʃnergie'),
(145333, 113489, 'de', 'name', 'Kinderkrebs-Zentrum Hamburg'),
(145334, 113489, 'en', 'name', 'Research Institute Children’s Cancer Center'),
(145335, 113490, 'en', 'name', 'Community Health Systems - Northwest Health Physician''s Specialty Hospital'),
(145336, 113491, 'en', 'name', 'Institute for Physics and Power Engineering'),
(145337, 113491, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской ФеГерации Физико-ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚, Š“ŠŠ¦ РФ-ФЭИ'),
(145338, 113492, 'pt', 'name', 'Centro de Medicina de Reabilitação do Sul'),
(145339, 113493, 'fr', 'name', 'GƩnƩtique MolƩculaire GƩnomique Microbiologie'),
(145340, 113494, 'en', 'name', 'Providence Women''s College (Autonomous)'),
(145341, 113495, 'en', 'name', 'Innovnano Advanced Materials'),
(145342, 113495, 'pt', 'name', 'Innovnano Materiais AvanƧados (Portugal)'),
(145343, 113496, 'en', 'name', 'Leicester College'),
(145344, 113497, 'fr', 'name', 'Institut des Sciences MolƩculaires de Marseille'),
(145345, 113498, 'en', 'name', 'Luxembourg Centre for Contemporary and Digital History'),
(145346, 113499, 'pt', 'name', 'Centro de Investigação em Território Arquitectura e Design'),
(145347, 113500, 'en', 'name', 'Cameron University'),
(145348, 113501, 'en', 'name', 'Krishna Institute of Medical Sciences'),
(145349, 113502, 'pt', 'name', 'Unidade Local de Saúde de Viseu Dão-Lafões'),
(145350, 113503, 'en', 'name', 'University of Vocational Technology'),
(145351, 113503, 'si', 'name', 'ą·€ą·˜ą¶­ą·Šą¶­ą·“ą¶ŗ ą¶­ą·ą¶šą·Šą·‚ą¶« ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šą¶ŗą·ą¶½ą¶ŗ'),
(145352, 113504, 'en', 'name', 'Academy of Military Medical Sciences'),
(145353, 113504, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›å†›äŗ‹åŒ»å­¦ē§‘å­¦é™¢'),
(145354, 113505, 'fr', 'name', 'Centre de MathƩmatiques Laurent Schwartz'),
(145355, 113506, 'fr', 'name', 'Laboratoire d''Informatique, de Robotique et de MicroƩlectronique de Montpellier'),
(145356, 113506, 'en', 'name', 'Laboratory of Computer Science, Robotics and Microelectronics of Montpellier'),
(145357, 113507, 'no_lang_code', 'name', 'Applied Physical Sciences (United States)'),
(145358, 113508, 'fr', 'name', 'Ɖquipe de droit international, europĆ©en et comparĆ©'),
(145359, 113509, 'en', 'name', 'International Union of Pure and Applied Chemistry'),
(145360, 113510, 'pt', 'name', 'Edições UniversitÔrias Lusófonas'),
(145361, 113511, 'en', 'name', 'Ivanovo State University'),
(145362, 113511, 'ru', 'name', 'Ивановский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(145363, 113512, 'es', 'name', 'ClĆ­nica RementerĆ­a'),
(145364, 113513, 'en', 'name', 'Guangzhou Design Institute'),
(145365, 113513, 'zh', 'name', 'å¹æå·žåø‚č®¾č®”é™¢'),
(145366, 113514, 'en', 'name', 'Centre for Computational and Biological Sciences'),
(145367, 113514, 'no_lang_code', 'name', 'Centre for Computational and Biological Sciences (India)'),
(145368, 113515, 'fr', 'name', 'MƩsocentre de Calcul Intensif en Aquitaine'),
(145369, 113516, 'es', 'name', 'Escuela Militar de Aviación'),
(145370, 113517, 'fr', 'name', 'Fédération de Recherche PhotoVoltaïque'),
(145371, 113518, 'de', 'name', 'Stiftung Deutsche Schlaganfall-Hilfe'),
(145372, 113519, 'lt', 'name', 'Lietuvos mokslų akademija'),
(145373, 113519, 'pl', 'name', 'Litewska Akademia Nauk'),
(145374, 113519, 'en', 'name', 'Lithuanian Academy of Sciences'),
(145375, 113519, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Литвы'),
(145376, 113520, 'en', 'name', 'Francke Foundations'),
(145377, 113520, 'de', 'name', 'Franckesche Stiftungen'),
(145378, 113521, 'fr', 'name', 'Laboratoire de Chimie de Coordination'),
(145379, 113522, 'en', 'name', 'Federal Polytechnic Damaturu'),
(145380, 113522, 'ha', 'name', 'Kwalejin Kimiyyar ta Tarayya, Damaturu'),
(145381, 113523, 'fr', 'name', 'Institut de Chimie des Substances Naturelles'),
(145382, 113523, 'en', 'name', 'Institute for the chemistry of natural substances'),
(145383, 113524, 'es', 'name', 'Universidad de Montevideo'),
(145384, 113524, 'en', 'name', 'University of Montevideo'),
(145385, 113525, 'pt', 'name', 'Matera (Portugal)'),
(145386, 113526, 'pt', 'name', 'Universidade de Ɖvora'),
(145387, 113526, 'en', 'name', 'University of Ɖvora'),
(145388, 113527, 'en', 'name', 'St. Vincent Charity Hospital'),
(145389, 113528, 'en', 'name', 'Queen Elizabeth II Jubilee Hospital'),
(145390, 113529, 'en', 'name', 'Interpropo International Advertisement of Portuguese Products Sole Trader Company'),
(145391, 113529, 'pt', 'name', 'Interpropo Sociedade de Propaganda Internacional de Produtos Portugueses (Portugal)'),
(145392, 113530, 'en', 'name', 'ICMA Centre'),
(145393, 113531, 'no_lang_code', 'name', 'Jensen Hughes (United States)'),
(145394, 113532, 'en', 'name', 'Kosin University Gospel Hospital'),
(145395, 113532, 'ko', 'name', 'ź³ ģ‹ ėŒ€ķ•™źµ ė³µģŒė³‘ģ›'),
(145396, 113533, 'fr', 'name', 'Institut des NanoSciences de Paris'),
(145397, 113533, 'en', 'name', 'Institute of NanoSciences of Paris'),
(145398, 113534, 'fr', 'name', 'Culture et histoire dans l''espace roman'),
(145399, 113535, 'fr', 'name', 'Laboratoire Lorrain de Recherche en Informatique et ses Applications'),
(145400, 113535, 'en', 'name', 'Lorraine Research Laboratory in Computer Science and its Applications'),
(145401, 113536, 'en', 'name', 'Royal Victoria Eye and Ear Hospital'),
(145402, 113537, 'fr', 'name', 'Conception de Systèmes Mécaniques et Robotiques'),
(145403, 113538, 'fr', 'name', 'Systèmes de Référence Temps-Espace'),
(145404, 113539, 'en', 'name', 'Institute of Glass'),
(145405, 113539, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стекла'),
(145406, 113540, 'en', 'name', 'European Institute for Membranes'),
(145407, 113540, 'fr', 'name', 'Institut EuropƩen des Membranes'),
(145408, 113541, 'en', 'name', 'Sigma2 AS'),
(145409, 113542, 'fr', 'name', 'CEA Valduc'),
(145410, 113543, 'en', 'name', 'Wihuri Research Institute'),
(145411, 113544, 'en', 'name', 'Health Sciences University'),
(145412, 113545, 'fr', 'name', 'ArchƩologie, Terre, Histoire, SociƩtƩs'),
(145413, 113546, 'en', 'name', 'AndrƩ Revuz Didactics Laboratory'),
(145414, 113546, 'fr', 'name', 'Laboratoire de Didactique AndrƩ Revuz'),
(145415, 113547, 'en', 'name', 'San Francisco AIDS Foundation'),
(145416, 113548, 'fr', 'name', 'Laboratoire Angevin de MƩcanique, ProcƩdƩs et InnovAtion'),
(145417, 113549, 'en', 'name', 'EMC Electromagnetic BCN, S.L. (Spain)'),
(145418, 113550, 'en', 'name', 'Pushpagiri Medical College'),
(145419, 113551, 'fr', 'name', 'Laboratoire LƩon Brillouin'),
(145420, 113552, 'pt', 'name', 'Centro Hospitalar do MƩdio Tejo EPE'),
(145421, 113553, 'no_lang_code', 'name', 'State Street (United States)'),
(145422, 113554, 'fr', 'name', 'IntƩgration et CoopƩration dans l''Espace EuropƩen - Etudes EuropƩennes'),
(145423, 113555, 'fr', 'name', 'Laboratoire Cognition, Langues, Langage, Ergonomie'),
(145424, 113556, 'tr', 'name', 'Enerji Piyasası Düzenleme Kurumu'),
(145425, 113557, 'en', 'name', 'Industrial Systems Institute'),
(145426, 113558, 'en', 'name', 'Cardi9 Health Services Provision'),
(145427, 113558, 'pt', 'name', 'Cardi9 Prestação de Serviços de Saúde (Portugal)'),
(145428, 113559, 'fr', 'name', 'Laboratoire MƩditerranƩen de PrƩhistoire Europe Afrique'),
(145429, 113560, 'es', 'name', 'Asociación Española de Urología'),
(145430, 113561, 'de', 'name', 'Caritas-Krankenhaus Bad Mergentheim'),
(145431, 113562, 'en', 'name', 'CIMEOS - Communications, MƩdiations, Organisations, Savoirs'),
(145432, 113563, 'pt', 'name', 'Unidade Hospitalar de Famalicão'),
(145433, 113564, 'pt', 'name', 'Arquivo Historico Ultramarino'),
(145434, 113565, 'fr', 'name', 'Institut de Chimie Organique et Analytique'),
(145435, 113565, 'en', 'name', 'Institute of Organic and Analytical Chemistry'),
(145436, 113566, 'en', 'name', 'Community Health Systems - Regional Hospital of Scranton'),
(145437, 113567, 'fr', 'name', 'Centre d’étude de la langue et des littĆ©ratures franƧaises'),
(145438, 113568, 'en', 'name', 'Medical University Pleven'),
(145439, 113568, 'bg', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Плевен'),
(145440, 113569, 'fr', 'name', 'Institut de Recherche sur les ArchƩoMATƩriaux'),
(145441, 113570, 'en', 'name', 'Soil Resource Development Institute'),
(145442, 113570, 'bn', 'name', 'ą¦®ą§ƒą¦¤ą§ą¦¤ą¦æą¦•ą¦¾ ą¦øą¦®ą§ą¦Ŗą¦¦ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(145443, 113571, 'en', 'name', 'Leibniz Institute of Plant Genetics and Crop Plant Research'),
(145444, 113571, 'de', 'name', 'Leibniz-Institut für Pflanzengenetik und Kulturpflanzenforschung (IPK)'),
(145445, 113572, 'en', 'name', 'Fernando Pessoa University'),
(145446, 113572, 'pt', 'name', 'Universidade Fernando Pessoa'),
(145447, 113573, 'en', 'name', 'Community Health Systems - Wilkes-Barre General Hospital'),
(145448, 113574, 'it', 'name', 'Consorzio Interuniversitario Nazionale per la Scienza e Tecnologia dei Materiali'),
(145449, 113574, 'en', 'name', 'National Interuniversity Consortium of Materials Science and Technology'),
(145450, 113575, 'en', 'name', 'National University of LujƔn'),
(145451, 113575, 'es', 'name', 'Universidad Nacional de LujƔn'),
(145452, 113576, 'pt', 'name', 'Universidade do Vale do SapucaĆ­'),
(145453, 113577, 'es', 'name', 'Instituto Nacional de LimnologĆ­a'),
(145454, 113578, 'de', 'name', 'Hessisches Ministerium für Familie, Senioren, Sport, Gesundheit und Pflege'),
(145455, 113579, 'fr', 'name', 'GƩoazur'),
(145456, 113580, 'en', 'name', 'Humber Polytechnic'),
(145457, 113581, 'en', 'name', 'Chettinad Academy of Research and Education'),
(145458, 113581, 'ta', 'name', 'ą®šąÆ†ą®ŸąÆą®Ÿą®æą®Øą®¾ą®ŸąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(145459, 113582, 'de', 'name', 'Gesellschaft zur Fƶrderung von Medizin-, Bio- und Umwelttechnologien'),
(145460, 113583, 'pt', 'name', 'UPTEC Associação de Transferência de Tecnologia da Asprela'),
(145461, 113584, 'en', 'name', 'Center for Strategic and International Studies'),
(145462, 113585, 'en', 'name', 'Middlemore Hospital'),
(145463, 113586, 'fr', 'name', 'Biologie Computationnelle, Quantitative et SynthƩtique'),
(145464, 113586, 'en', 'name', 'Computational, Quantitative and Synthetic Biology'),
(145465, 113587, 'pt', 'name', 'Unidade Local de SaĆŗde de Entre Douro e Vouga'),
(145466, 113588, 'fr', 'name', 'Centre de recherche Inter-langues sur la Signification en contexte'),
(145467, 113589, 'no_lang_code', 'name', 'Faculty (United Kingdom)'),
(145468, 113590, 'en', 'name', 'College of Law and Business'),
(145469, 113591, 'en', 'name', 'Izmir Biomedicine and Genome Center'),
(145470, 113591, 'tr', 'name', 'İzmir Biyotıp ve Genom Merkezi'),
(145471, 113592, 'pt', 'name', 'MBA Consultores Interdisciplinares de Gestão Lda (Portugal)'),
(145472, 113592, 'en', 'name', 'MBA Interdisciplinary Management Consultants'),
(145473, 113593, 'fr', 'name', 'Chimie de la MatiĆØre Complexe'),
(145474, 113594, 'fr', 'name', 'Laboratoire Chimie Electrochimie MolƩculaires et Chimie Analytique'),
(145475, 113595, 'en', 'name', 'University Medical Center Freiburg'),
(145476, 113595, 'de', 'name', 'UniversitƤtsklinikum Freiburg'),
(145477, 113596, 'fr', 'name', 'Laboratoire BioingƩnierie et Nanosciences'),
(145478, 113597, 'en', 'name', 'Center for Social and Economic Research'),
(145479, 113598, 'nl', 'name', 'Koninklijk Nederlands Meteorologisch Instituut'),
(145480, 113598, 'en', 'name', 'Royal Netherlands Meteorological Institute'),
(145481, 113599, 'en', 'name', 'California Natural Resources Agency'),
(145482, 113600, 'ms', 'name', 'Universiti Poly-Tech Malaysia'),
(145483, 113600, 'en', 'name', 'University Poly-Tech Malaysia'),
(145484, 113601, 'en', 'name', 'Club Of Vienna'),
(145485, 113602, 'pt', 'name', 'ISOPlexis Banco de Germoplasma'),
(145486, 113603, 'en', 'name', 'Dongguan EnlifeStem Cell Biotechnology Research Institute'),
(145487, 113603, 'zh', 'name', 'ę©č”å¹²ē»†čƒžē”Ÿē‰©ē§‘ęŠ€ē ”ē©¶é™¢'),
(145488, 113604, 'fr', 'name', 'Centre d''Ʃtudes supƩrieures de civilisation mƩdiƩvale'),
(145489, 113605, 'en', 'name', 'Lev Hasharon Hospital'),
(145490, 113605, 'he', 'name', '×ž×Ø×›×– רפואי ×œ×‘×Ø×™××•×Ŗ הנפש לב ×”×©×Ø×•×Ÿ'),
(145491, 113606, 'pt', 'name', 'Laboratório de Métodos MatemÔticos'),
(145492, 113607, 'en', 'name', 'Bayero University Kano'),
(145493, 113607, 'yo', 'name', 'YunifÔsítì BÔyéró'),
(145494, 113608, 'en', 'name', 'Jubilo Co., Ltd.'),
(145495, 113608, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ„ćƒ“ćƒ­'),
(145496, 113609, 'en', 'name', 'Hanover University of Music Drama and Media'),
(145497, 113609, 'de', 'name', 'Hochschule für Musik, Theater und Medien Hannover'),
(145498, 113610, 'en', 'name', 'ActualSales (Portugal)'),
(145499, 113611, 'fr', 'name', 'Performance SantƩ, MƩtrologie, SociƩtƩ'),
(145500, 113612, 'pt', 'name', 'Universidade de Coimbra Unidade de Investigação e Desenvolvimento Química-Física Molecular'),
(145501, 113613, 'it', 'name', 'Fondazione Internazionale per la Ricerca Sulla Combustione'),
(145502, 113613, 'en', 'name', 'International Flame Research Foundation'),
(145503, 113614, 'fr', 'name', 'Laboratoire de MathĆ©matiques et ModĆ©lisation d''Ɖvry'),
(145504, 113615, 'en', 'name', 'Polissia National University'),
(145505, 113615, 'uk', 'name', 'ŠŸŠ¾Š»Ń–ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(145506, 113616, 'pt', 'name', 'Cooperativa de Viveiristas da Ria Formosa'),
(145507, 113617, 'fr', 'name', 'Ɖcologie et Biologie des Interactions'),
(145508, 113618, 'en', 'name', 'Parker Institute for Cancer Immunotherapy'),
(145509, 113619, 'pt', 'name', 'Comprehensive Health Research Centre Escola Nacional SaĆŗde PĆŗblica'),
(145510, 113620, 'en', 'name', 'Korea Development Institute'),
(145511, 113620, 'ko', 'name', 'ķ•œźµ­ź°œė°œģ—°źµ¬ģ›'),
(145512, 113621, 'en', 'name', 'Globe University'),
(145513, 113622, 'fr', 'name', 'Institut de Chimie MolƩculaire et des MatƩriaux d''Orsay'),
(145514, 113623, 'fr', 'name', 'Structure et InstabilitƩ des GƩnomes'),
(145515, 113624, 'fr', 'name', 'Laboratoire des Sciences et Techniques de l’Information de la Communication et de la Connaissance'),
(145516, 113625, 'en', 'name', 'DoƱa Ana Community College'),
(145517, 113626, 'id', 'name', 'Universitas Putera Batam'),
(145518, 113627, 'pt', 'name', 'Unidade Local de Saúde do Médio Ave'),
(145519, 113628, 'en', 'name', 'Advanced Space, LLC (United States)'),
(145520, 113629, 'en', 'name', 'Deccan College of Medical Sciences'),
(145521, 113630, 'en', 'name', 'University College Lahore'),
(145522, 113631, 'en', 'name', 'Mandeville Regional Hospital'),
(145523, 113632, 'pt', 'name', 'Equipa de Tratamento de Gondomar (Portugal)'),
(145524, 113632, 'en', 'name', 'Gondomar Treatment Team'),
(145525, 113633, 'fr', 'name', 'Institut de MathƩmatiques de Toulon'),
(145526, 113634, 'en', 'name', 'Chongqing Institute for Brain and Intelligence'),
(145527, 113634, 'zh', 'name', 'é‡åŗ†č„‘äøŽē§‘å­¦äø­åæƒ'),
(145528, 113635, 'pt', 'name', 'Centro de Estudos sobre Ɓfrica e do Desenvolvimento'),
(145529, 113636, 'fr', 'name', 'CEA Marcoule'),
(145530, 113637, 'id', 'name', 'Yayasan Aliansi Cendekiawan Indonesia Thailand'),
(145531, 113638, 'en', 'name', 'Kenya Wildlife Service'),
(145532, 113638, 'sw', 'name', 'Shirika la Huduma kwa Wanyama Pori ya Kenya'),
(145533, 113639, 'fr', 'name', 'Laboratoire des Sciences des ProcƩdƩs et des MatƩriaux'),
(145534, 113640, 'no_lang_code', 'name', 'Hygeia Hospital'),
(145535, 113640, 'el', 'name', '΄γεία'),
(145536, 113641, 'no_lang_code', 'name', 'Human Factors (Norway)'),
(145537, 113642, 'en', 'name', 'University of Benin Teaching Hospital'),
(145538, 113643, 'id', 'name', 'Universitas Sari Mutiara Indonesia'),
(145539, 113644, 'en', 'name', 'Le Bonheur Children''s Hospital'),
(145540, 113645, 'fr', 'name', 'Informatique, BioInformatique, SystĆØmes Complexes'),
(145541, 113646, 'en', 'name', 'Ministry of Defence, Sri Lanka'),
(145542, 113646, 'ta', 'name', 'ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®…ą®®ąÆˆą®šąÆą®šąÆ'),
(145543, 113646, 'si', 'name', 'ą¶†ą¶»ą¶šą·Šą·‚ą¶š ą¶…ą¶øą·ą¶­ą·Šą¶ŗą·ą¶‚ą·ą¶ŗ'),
(145544, 113647, 'en', 'name', 'Guru Gobind Singh Medical College and Hospital'),
(145545, 113648, 'en', 'name', 'Venice International University'),
(145546, 113649, 'id', 'name', 'Universitas Palangka Raya'),
(145547, 113649, 'en', 'name', 'University of Palangka Raya'),
(145548, 113650, 'en', 'name', 'Royal College of Psychiatrists'),
(145549, 113651, 'no_lang_code', 'name', 'EDF Energy (United Kingdom)'),
(145550, 113652, 'fr', 'name', 'GIPSA-Lab'),
(145551, 113653, 'en', 'name', 'Community Health Systems - Siloam Springs Regional Hospital'),
(145552, 113654, 'pt', 'name', 'Centro IDEA'),
(145553, 113655, 'en', 'name', 'Northern Care Alliance NHS Foundation Trust'),
(145554, 113656, 'pt', 'name', 'Centro UniversitÔrio do Triângulo'),
(145555, 113657, 'fr', 'name', 'Centre de Recherche en Informatique, Signal et Automatique de Lille'),
(145556, 113658, 'fr', 'name', 'Institut de Sciences des MatƩriaux de Mulhouse'),
(145557, 113659, 'de', 'name', 'Deutsche Zentrum für Diabetesforschung'),
(145558, 113659, 'en', 'name', 'German Center for Diabetes Research'),
(145559, 113660, 'fr', 'name', 'Groupe de Recherche en Droit, Ɖconomie, Gestion'),
(145560, 113661, 'fr', 'name', 'Laboratoire d’ArchĆ©ologie MolĆ©culaire et Structurale'),
(145561, 113662, 'fr', 'name', 'Laboratoire GƩnie de Production'),
(145562, 113663, 'es', 'name', 'Centre d’Estudis DemogrĆ fics'),
(145563, 113663, 'en', 'name', 'Centre for Demographic Studies'),
(145564, 113664, 'pt', 'name', 'Biblioteca Municipal Afonso Lopes Vieira'),
(145565, 113665, 'no_lang_code', 'name', 'Hyundai Heavy Industries (South Korea)'),
(145566, 113666, 'fr', 'name', 'Institut de Droit EuropƩen des Droits de l''Homme'),
(145567, 113667, 'en', 'name', 'HIV Netherlands Australia Thailand Research Collaboration'),
(145568, 113668, 'id', 'name', 'Universitas Panji Sakti'),
(145569, 113669, 'en', 'name', 'Autonomous University of Chiapas'),
(145570, 113669, 'es', 'name', 'Universidad Autónoma de Chiapas'),
(145571, 113670, 'en', 'name', 'Waitemata District Health Board'),
(145572, 113671, 'en', 'name', 'California Department of Water Resources'),
(145573, 113672, 'en', 'name', 'Uganda Virus Research Institute'),
(145574, 113673, 'en', 'name', 'Translational Research in Oncology'),
(145575, 113674, 'pt', 'name', 'Brito Machado e Lima Lda (Portugal)'),
(145576, 113675, 'en', 'name', 'Cybereducation Language School of Moita'),
(145577, 113675, 'pt', 'name', 'Cyberensino Escola de LĆ­nguas da Moita (Portugal)'),
(145578, 113676, 'en', 'name', 'EUNCET Business School'),
(145579, 113677, 'fr', 'name', 'CIC Rennes'),
(145580, 113678, 'en', 'name', 'Textile Research Institute'),
(145581, 113679, 'es', 'name', 'Instituto Especializado Hospital El Salvador'),
(145582, 113680, 'fr', 'name', 'Mondes AmƩricains'),
(145583, 113681, 'en', 'name', 'Peninsula College'),
(145584, 113682, 'pt', 'name', 'Faculdade Vale dos CarajƔs'),
(145585, 113683, 'en', 'name', 'Community Health Systems - Baldwin Health'),
(145586, 113684, 'no_lang_code', 'name', 'Labdeers s.r.o. (Czech Republic)'),
(145587, 113685, 'fr', 'name', 'Laboratoire des Fluides Complexes et leurs RƩservoirs'),
(145588, 113685, 'en', 'name', 'Laboratory of Complex Fluids and their Reservoirs'),
(145589, 113686, 'es', 'name', 'Centro de Estudios Sociales Interdisciplinarios del Litoral'),
(145590, 113687, 'pt', 'name', 'Odebrecht (Portugal)'),
(145591, 113688, 'id', 'name', 'Universitas Surakarta'),
(145592, 113689, 'fr', 'name', 'Centre de Recherches sur les MacromolƩcules VƩgƩtales'),
(145593, 113690, 'en', 'name', 'Simposium Digital HealthCare (Portugal)'),
(145594, 113691, 'en', 'name', 'Papageorgiou General Hospital'),
(145595, 113692, 'no_lang_code', 'name', 'Haldor Topsoe (Denmark)'),
(145596, 113693, 'en', 'name', 'E4 Computer Engineering SpA'),
(145597, 113693, 'no_lang_code', 'name', 'E4 Computer Engineering SpA (Italy)'),
(145598, 113694, 'en', 'name', 'Center for Ethics in Business and Economics'),
(145599, 113694, 'pt', 'name', 'Centro de Investigação Interdisciplinar em Saúde Centro Regional de Viseu'),
(145600, 113695, 'en', 'name', 'University of Technology and Applied Sciences-Salalah'),
(145601, 113695, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© صلالة'),
(145602, 113696, 'no_lang_code', 'name', 'AU Optronics (Taiwan)'),
(145603, 113697, 'pt', 'name', 'Clarke Modet (Portugal)'),
(145604, 113698, 'id', 'name', 'Universitas Sahid Jakarta'),
(145605, 113699, 'en', 'name', 'University of Computer Studies (Pakokku)'),
(145606, 113700, 'pt', 'name', 'Rede de Bibliotecas Municipais de Oeiras'),
(145607, 113701, 'fr', 'name', 'Institut de Recherche sur la Renaissance l''Age Classique et les LumiĆØres'),
(145608, 113702, 'fr', 'name', 'Psychologie Ergonomique et Sociale pour l''ExpƩrience Utilisateurs'),
(145609, 113703, 'pt', 'name', 'Governo da RepĆŗblica Portuguesa Gabinete de Estrategia e Planeamento'),
(145610, 113704, 'no_lang_code', 'name', 'Herzog Hospital'),
(145611, 113704, 'he', 'name', 'בית חולים הרצוג'),
(145612, 113705, 'en', 'name', 'Lviv State University of Physical Culture'),
(145613, 113705, 'pl', 'name', 'Lwowski Państwowy Uniwersytet Kultury Fizycznej'),
(145614, 113705, 'ru', 'name', 'Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(145615, 113705, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø'),
(145616, 113706, 'fr', 'name', 'Centre de documentation et de recherches europƩennes'),
(145617, 113706, 'en', 'name', 'European Documentation and Research Centre'),
(145618, 113707, 'fr', 'name', 'Groupement de Recherche en Ɖconomie Quantitative d’Aix-Marseille'),
(145619, 113708, 'en', 'name', 'Muhimbili National Hospital'),
(145620, 113709, 'bs', 'name', 'Institut zа Jаvnо Zdrаvstvо Rеpublikе Srpskе'),
(145621, 113709, 'en', 'name', 'Public Health Institute of the Republic of Srpska'),
(145622, 113710, 'en', 'name', 'Dünyagöz Hospital'),
(145623, 113711, 'es', 'name', 'Universidad Tecnológica del Sur del Estado de México'),
(145624, 113712, 'fr', 'name', 'Institut de Combustion AƩrothermique RƩactivitƩ et Environnement'),
(145625, 113713, 'fr', 'name', 'Centre universitaire de recherches sur l''Action Publique et le Politique ƉpistĆ©mologie & Sciences Sociales'),
(145626, 113714, 'en', 'name', 'Garden City University'),
(145627, 113714, 'kn', 'name', 'ą²—ą²¾ą²°ą³ą²”ą²Øą³ ಸಿಟಿ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(145628, 113715, 'es', 'name', 'Universidad de Palermo'),
(145629, 113715, 'en', 'name', 'University of Palermo'),
(145630, 113716, 'en', 'name', 'Lagrange Laboratory'),
(145631, 113717, 'fr', 'name', 'Structure FƩdƩrative de Recherche en Biologie et SantƩ de Rennes'),
(145632, 113718, 'fr', 'name', 'Laboratoire ActivitƩ Connaissance Transmission Education'),
(145633, 113719, 'es', 'name', 'Escuela Nacional Superior de Electrotécnica, Electrónica, InformÔtica, HidrÔulica y Telecomunicaciones de Toulouse'),
(145634, 113719, 'en', 'name', 'National Institute of Electrical Engineering, Electronics, Computer Science,Fluid Mechanics & Telecommunications and Networks'),
(145635, 113719, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Ɖlectrotechnique, d''Ɖlectronique, d''Informatique, d''Hydraulique et des TĆ©lĆ©communications'),
(145636, 113720, 'id', 'name', 'Universitas Muhammadiyah Sumatera Barat'),
(145637, 113721, 'en', 'name', 'Salusplanet (Portugal)'),
(145638, 113722, 'en', 'name', 'Clinical Center University of Sarajevo'),
(145639, 113723, 'en', 'name', 'Amsterdam Institute for Global Health and Development'),
(145640, 113724, 'en', 'name', 'Konrad Lorenz Institute for Evolution and Cognition Research'),
(145641, 113725, 'en', 'name', 'Nordic Institute for Theoretical Physics'),
(145642, 113726, 'fr', 'name', 'Centre de Recherches sur le Droit Public'),
(145643, 113727, 'pt', 'name', 'Clƭnica UniversitƔria de Obstetrƭcia e Ginecologia'),
(145644, 113728, 'it', 'name', 'Istituto per le Tecnologie Didattiche'),
(145645, 113729, 'de', 'name', 'Klinikum Braunschweig'),
(145646, 113730, 'en', 'name', 'Rajiv Gandhi Technical University'),
(145647, 113730, 'hi', 'name', 'ą¤°ą¤¾ą¤œą„€ą¤µ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Ær'),
(145648, 113731, 'en', 'name', 'Impact'),
(145649, 113732, 'fr', 'name', 'Centre de Recherche en Economie et Droit'),
(145650, 113732, 'en', 'name', 'Paris Center for Law and Economics'),
(145651, 113733, 'en', 'name', 'Community Health Systems - Moberly Regional Medical Center'),
(145652, 113734, 'en', 'name', 'Menlo School'),
(145653, 113735, 'fr', 'name', 'Travaux et Recherches ArchƩologiques sur les Cultures, les Espaces et les SociƩtƩs'),
(145654, 113736, 'hr', 'name', 'Institut za antropologiju'),
(145655, 113736, 'en', 'name', 'Institute for Anthropological Research'),
(145656, 113737, 'fr', 'name', 'Biologie VƩgƩtale et de Microbiologie Environnementales'),
(145657, 113738, 'en', 'name', 'Institute of Health Service and Transfusion Medicine'),
(145658, 113738, 'zh', 'name', 'å«ē”ŸęœåŠ”å’Œč¾“č”€åŒ»å­¦ē ”ē©¶ę‰€'),
(145659, 113739, 'fr', 'name', 'L''Alliance Boviteq'),
(145660, 113740, 'fr', 'name', 'Institut Ontarien'),
(145661, 113740, 'en', 'name', 'Ontario Brain Institute'),
(145662, 113741, 'en', 'name', 'Institute of Nanostructured Materials'),
(145663, 113741, 'it', 'name', 'Istituto per lo Studio dei Materiali Nanostrutturati'),
(145664, 113742, 'en', 'name', 'The Football Association'),
(145665, 113743, 'en', 'name', 'Scientific Research Institute of Organic Intermediates and Dyes'),
(145666, 113743, 'ru', 'name', 'Š¤Š“Š£ŠŸ Ā«Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр ā€žŠŠ˜ŠžŠŸŠ˜Ššā€œ'),
(145667, 113744, 'en', 'name', 'Fucape Business School'),
(145668, 113745, 'en', 'name', 'Tambov State University'),
(145669, 113745, 'ru', 'name', 'Тамбовский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(145670, 113746, 'fr', 'name', 'Hypoxie et Poumon'),
(145671, 113747, 'en', 'name', 'Community Health Systems - Northwest Medical Center - Sahuarita'),
(145672, 113748, 'en', 'name', 'National Bank of Austria'),
(145673, 113748, 'de', 'name', 'Ɩsterreichische Nationalbank'),
(145674, 113749, 'en', 'name', 'Kuma Hospital'),
(145675, 113749, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē„žē”²ä¼šéšˆē—…é™¢'),
(145676, 113750, 'en', 'name', 'Faculty of Industrial Engineering Novo Mesto'),
(145677, 113750, 'sl', 'name', 'Fakulteta za industrijski inženiring Novo mesto'),
(145678, 113751, 'fr', 'name', 'Modélisation, information et systèmes'),
(145679, 113752, 'en', 'name', 'Centre for Studies Languages and Training of Funchal'),
(145680, 113752, 'pt', 'name', 'Centro de Estudos Línguas e Formação do Funchal (Portugal)'),
(145681, 113753, 'fr', 'name', 'IdentitƩs et DiffƩrenciation de l''Environnement des Espaces et des SociƩtƩs'),
(145682, 113754, 'en', 'name', 'University Hospital, Newark'),
(145683, 113755, 'fr', 'name', 'Institut Fourier'),
(145684, 113756, 'no_lang_code', 'name', 'Sir Ganga Ram Hospital'),
(145685, 113757, 'fr', 'name', 'CIRED'),
(145686, 113758, 'en', 'name', 'Community Health Systems - Tennova - Newport Medical'),
(145687, 113759, 'fr', 'name', 'Institut photonique d''analyse non-destructive europƩen des matƩriaux anciens'),
(145688, 113760, 'en', 'name', 'National Fisheries University'),
(145689, 113760, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę°“ē”£ē ”ē©¶ćƒ»ę•™č‚²ę©Ÿę§‹ę°“ē”£å¤§å­¦ę ”'),
(145690, 113761, 'en', 'name', 'Central Philippines State University'),
(145691, 113762, 'en', 'name', 'Stockholm Environment Institute'),
(145692, 113763, 'fr', 'name', 'Laboratoire Navier'),
(145693, 113764, 'pt', 'name', 'Empresa Portuguesa de Defesa SGPS (Portugal)'),
(145694, 113764, 'en', 'name', 'Portuguese Defense Company'),
(145695, 113765, 'en', 'name', 'University Psychiatric Hospital'),
(145696, 113765, 'sl', 'name', 'Univerzitetna psihiatrična klinika Ljubljana'),
(145697, 113766, 'en', 'name', 'Community Health Systems - DeTar Healthcare System - North'),
(145698, 113767, 'no_lang_code', 'name', 'Simcere Pharmaceutical (China)'),
(145699, 113767, 'zh', 'name', 'å…ˆå£°čÆäøš'),
(145700, 113768, 'en', 'name', 'St. John''s School'),
(145701, 113769, 'fr', 'name', 'Laboratoire Cultures et Diffusion des Savoirs'),
(145702, 113770, 'no_lang_code', 'name', 'United Aircraft (Russia)'),
(145703, 113770, 'ru', 'name', 'ŠžŠ±ŃŠŠµŠ“ŠøŠ½Ń‘Š½Š½Š°Ń Š°Š²ŠøŠ°ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń ŠŗŠ¾Ń€ŠæŠ¾Ń€Š°Ń†ŠøŃ'),
(145704, 113771, 'fr', 'name', 'Institut des Sciences de la Terre d''OrlƩans'),
(145705, 113772, 'no_lang_code', 'name', 'Analytical Mechanics Associates (United States)'),
(145706, 113773, 'es', 'name', 'Centro de Investigación HÔbitat y Municipio'),
(145707, 113774, 'fr', 'name', 'COMETE - MobilitƩs : Vieillissement, pathologie, santƩ'),
(145708, 113775, 'en', 'name', 'Alaska Heart and Vascular Institute'),
(145709, 113776, 'de', 'name', 'Klinikum Osnabrück'),
(145710, 113777, 'cs', 'name', 'Nemocnice ČeskĆ© Budějovice'),
(145711, 113778, 'en', 'name', 'Excellence Cluster Universe'),
(145712, 113778, 'de', 'name', 'Exzellenzcluster Universe'),
(145713, 113779, 'fr', 'name', 'Institut de Biologie Structurale'),
(145714, 113780, 'de', 'name', 'Klinikum Fürth'),
(145715, 113781, 'en', 'name', 'Ferraz Pharma (Portugal)'),
(145716, 113782, 'id', 'name', 'Universitas Labuhanbatu'),
(145717, 113783, 'en', 'name', 'Center for Wireless Communications'),
(145718, 113784, 'fr', 'name', 'Centre de Recherches Critiques sur le Droit'),
(145719, 113785, 'en', 'name', 'Adaptation and Diversity in the Marine Environment'),
(145720, 113785, 'fr', 'name', 'Adaptation et DiversitƩ en Milieu Marin'),
(145721, 113786, 'en', 'name', 'Govt. Tibbi College & Hospital'),
(145722, 113786, 'hi', 'name', 'ą¤°ą¤¾ą¤œą¤•ą„€ą¤Æ ą¤¤ą¤æą¤¬ą„ą¤¬ą„€ ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤ą¤µą¤‚ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(145723, 113787, 'no_lang_code', 'name', 'D.V.Efremov Institute of Electrophysical Apparatus (Russia)'),
(145724, 113788, 'fr', 'name', 'Centre de Recherche Public de la SantƩ'),
(145725, 113789, 'fr', 'name', 'CEA Gramat'),
(145726, 113790, 'en', 'name', 'Nagahama Institute of Bio-Science and Technology'),
(145727, 113790, 'ja', 'name', 'é•·ęµœćƒć‚¤ć‚Ŗå¤§å­¦'),
(145728, 113791, 'fr', 'name', 'Laboratoire d’Astrophysique de Marseille'),
(145729, 113792, 'en', 'name', 'Institute of Immunology'),
(145730, 113793, 'id', 'name', 'Rumah Sakit Umum Pusat Dr. Sardjito'),
(145731, 113794, 'fr', 'name', 'Centre d’études en sciences sociales du religieux'),
(145732, 113795, 'en', 'name', 'Fakeeh College for Medical Sciences'),
(145733, 113795, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ŁŁ‚ŁŠŁ‡ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ©'),
(145734, 113796, 'en', 'name', 'International Zinc Association'),
(145735, 113797, 'fr', 'name', 'Institut de minƩralogie, de physique des matƩriaux et de cosmochimie'),
(145736, 113798, 'en', 'name', 'Federal Research Center ā€œComputer Science and Controlā€ of the Russian Academy of Sciences'),
(145737, 113798, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр "Š˜Š½Ń„Š¾Ń€Š¼Š°Ń‚ŠøŠŗŠ° Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŠµ" Российской АкаГемии ŠŠ°ŃƒŠŗ'),
(145738, 113799, 'pt', 'name', 'Centro Interdisciplinar de Desenvolvimento e Investigação em Ambiente Gestão Aplicada e Espaço'),
(145739, 113800, 'en', 'name', 'Tokyo Medical Center'),
(145740, 113800, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ę±äŗ¬åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(145741, 113801, 'en', 'name', 'University of Finance and Economics'),
(145742, 113801, 'mn', 'name', 'Данхүү ЭГийн Засгийн Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(145743, 113802, 'fr', 'name', 'Institut de Recherche en Gestion'),
(145744, 113803, 'en', 'name', 'Institute of Medicine'),
(145745, 113803, 'ne', 'name', 'ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(145746, 113804, 'es', 'name', 'Fundacion Agencia Aragonesa para la Investigacion y el Desarrollo'),
(145747, 113805, 'en', 'name', 'JMI Laboratories'),
(145748, 113806, 'es', 'name', 'Departamento de Transporte de Texas'),
(145749, 113806, 'fr', 'name', 'DƩpartement des transports du texas'),
(145750, 113806, 'en', 'name', 'Texas Department of Transportation'),
(145751, 113807, 'en', 'name', 'Shenzhen Polytechnic University'),
(145752, 113807, 'zh', 'name', 'ę·±åœ³čŒäøšęŠ€ęœÆå¤§å­¦'),
(145753, 113808, 'en', 'name', 'Counties Manukau District Health Board'),
(145754, 113809, 'nl', 'name', 'Ministerie van Infrastructuur en Waterstaat'),
(145755, 113809, 'en', 'name', 'Ministry of Infrastructure and Water Management'),
(145756, 113810, 'fr', 'name', 'Institut de Recherche bio-MƩdicale et d''EpidƩmiologie du Sport'),
(145757, 113811, 'id', 'name', 'Universitas Singaperbangsa Karawang'),
(145758, 113811, 'en', 'name', 'University of Singaperbangsa Karawang'),
(145759, 113812, 'en', 'name', 'Community Health Systems - Western Arizona Regional Medical Center'),
(145760, 113813, 'en', 'name', 'Norwegian Metrology Service'),
(145761, 113814, 'pt', 'name', 'Centro de Estudos de Medicina Baseada na EvidĆŖncia'),
(145762, 113815, 'pt', 'name', 'Sociedade Portuguesa para o Estudo da CrianƧa Abusada e Negligenciada'),
(145763, 113816, 'en', 'name', 'Varzim Sport Club (Portugal)'),
(145764, 113817, 'en', 'name', 'PSG Institute of Medical Sciences & Research'),
(145765, 113818, 'pt', 'name', 'Centro de Estudos HumanĆ­sticos'),
(145766, 113819, 'pt', 'name', 'Inproplant Investigação e Propagação de Plantas Lda (Portugal)'),
(145767, 113819, 'en', 'name', 'Inproplant Research and Plant Propagation'),
(145768, 113820, 'en', 'name', 'Indira Gandhi Institute of Technology'),
(145769, 113820, 'or', 'name', 'ą¬‡ą¬Øą­ą¬¦ą¬æą¬°ą¬¾ ą¬—ą¬¾ą¬Øą­ą¬§ą­€ ą¬¬ą­ˆą¬·ą­Ÿą¬æą¬• ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ)'),
(145770, 113821, 'fr', 'name', 'Maison des Sciences de l''Homme Mondes'),
(145771, 113822, 'en', 'name', 'North Shore Hospital'),
(145772, 113823, 'no_lang_code', 'name', 'Berlin Heart (Germany)'),
(145773, 113824, 'fr', 'name', 'Ɖcole Centrale d''Ɖlectronique'),
(145774, 113825, 'en', 'name', 'Community Health Systems - MountainView Regional Medical Center'),
(145775, 113826, 'de', 'name', 'Autonome Region Trentino-Südtirol'),
(145776, 113826, 'it', 'name', 'Regione Autonoma Trentino-Alto Adige/Südtirol'),
(145777, 113827, 'en', 'name', 'PHENIX laboratory'),
(145778, 113828, 'en', 'name', 'Rashtrasant Tukadoji Maharaj Nagpur University'),
(145779, 113828, 'ur', 'name', 'راؓٹرسنت ŲŖŚ©Ś‘Łˆ جی مہاراج Ł†Ų§ŚÆŁ¾ŁˆŲ± ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(145780, 113828, 'hi', 'name', 'ą¤Øą¤¾ą¤—ą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(145781, 113828, 'mr', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤øą¤‚ą¤¤ ą¤¤ą„ą¤•ą¤”ą„‹ą¤œą„€ महाराज ą¤Øą¤¾ą¤—ą¤Ŗą„‚ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(145782, 113828, 'ta', 'name', 'ą®Øą®¾ą®•ąÆą®ŖąÆ‚ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(145783, 113829, 'en', 'name', 'Community Health Systems - Lutheran Kosciusko Hospital'),
(145784, 113830, 'no_lang_code', 'name', 'TƩcnicas Reunidas (Spain)'),
(145785, 113831, 'fr', 'name', 'Centre Franco-Ɖgyptien d’Étude des Temples de Karnak'),
(145786, 113832, 'fr', 'name', 'Centre d''Ɖtudes et de Recherches Comparatistes'),
(145787, 113833, 'pt', 'name', 'Centro UniversitƔrio Maria Milza'),
(145788, 113833, 'en', 'name', 'University Center Maria Milza'),
(145789, 113834, 'pt', 'name', 'Serviço de Intervenção nos Comportamentos Aditivos e nas Dependências IP'),
(145790, 113835, 'fr', 'name', 'Laboratoire d’OcĆ©anologie et de GĆ©osciences'),
(145791, 113836, 'fr', 'name', 'Institut des BiomolƩcules Max Mousseron'),
(145792, 113837, 'pt', 'name', 'Centro de Estudos de Gestão e Economia Aplicada'),
(145793, 113838, 'pt', 'name', 'Instituto de Psicologia e Neuropsicologia do Porto (Portugal)'),
(145794, 113839, 'en', 'name', 'Ahsania Mission Cancer and General Hospital'),
(145795, 113839, 'bn', 'name', 'আহছানিয়া মিশন ą¦•ą§ą¦Æą¦¾ą¦Øą§ą¦øą¦¾ą¦° ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦œą§‡ą¦Øą¦¾ą¦°ą§‡ą¦² হাসপাতাল'),
(145796, 113840, 'fr', 'name', 'Centre d’études des Mondes Russe, Caucasien et Centre-EuropĆ©en'),
(145797, 113841, 'de', 'name', 'Klinikum Esslingen'),
(145798, 113842, 'en', 'name', 'Lusophone University of Humanities and Technologies'),
(145799, 113842, 'pt', 'name', 'Universidade Lusófona'),
(145800, 113843, 'fr', 'name', 'Laboratoire de Physico-Chimie de l''AtmosphĆØre'),
(145801, 113844, 'no_lang_code', 'name', 'Micron (Taiwan)'),
(145802, 113845, 'fr', 'name', 'Laboratoire de Physique et ModƩlisation des Milieux CondensƩs'),
(145803, 113846, 'pt', 'name', 'Unidade Hospitalar de Chaves'),
(145804, 113847, 'en', 'name', 'Fujieda Municipal General Hospital'),
(145805, 113847, 'ja', 'name', 'č—¤ęžåø‚ē«‹ē·åˆē—…é™¢'),
(145806, 113848, 'en', 'name', 'Bulovka Hospital'),
(145807, 113848, 'cs', 'name', 'FakultnĆ­ nemocnice Bulovka'),
(145808, 113849, 'en', 'name', 'Russian Cancer Research Center NN Blokhin'),
(145809, 113849, 'ru', 'name', 'Российский онкологический Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр им. Š. Š. Блохина'),
(145810, 113850, 'pt', 'name', 'Unidade Local de Saúde da Póvoa de Varzim/Vila do Conde'),
(145811, 113851, 'fr', 'name', 'Institut de Biologie et de Chimie des ProtƩines'),
(145812, 113852, 'fr', 'name', 'Groupe de Recherches sur l’Analyse Multimodale de la Fonction CĆ©rĆ©brale'),
(145813, 113853, 'de', 'name', 'Klinikum St. Georg'),
(145814, 113854, 'fr', 'name', 'La Ligue Contre le Cancer'),
(145815, 113855, 'pl', 'name', 'Centrum Onkologii'),
(145816, 113856, 'es', 'name', 'Hospital Universitari Sagrat Cor'),
(145817, 113857, 'en', 'name', 'Community Health Systems - Laredo Medical Center'),
(145818, 113858, 'en', 'name', 'James S. McDonnell Foundation'),
(145819, 113859, 'en', 'name', 'Research Center SHARQ'),
(145820, 113860, 'fr', 'name', 'Laboratoire d''Informatique Gaspard-Monge'),
(145821, 113861, 'en', 'name', 'Royal Oldham Hospital'),
(145822, 113862, 'fr', 'name', 'Voix Anglophones : LittƩrature et EsthƩtique'),
(145823, 113863, 'en', 'name', 'Alberta Machine Intelligence Institute'),
(145824, 113864, 'es', 'name', 'De Rotos y Descosidos S.C. (Spain)'),
(145825, 113865, 'en', 'name', 'Northampton Community College'),
(145826, 113866, 'en', 'name', 'Ranchi University'),
(145827, 113866, 'hi', 'name', 'ą¤°ą¤¾ą¤‚ą¤šą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(145828, 113867, 'no_lang_code', 'name', 'Chartwell Actives LLC'),
(145829, 113867, 'en', 'name', 'Chartwell Actives LLC (Portugal)'),
(145830, 113868, 'es', 'name', 'Centro Tecnológico del Mar'),
(145831, 113869, 'en', 'name', 'Institute for Cardiovascular Diseases of Vojvodina'),
(145832, 113870, 'fr', 'name', 'Centre National de Recherches MƩtƩorologiques'),
(145833, 113871, 'en', 'name', 'Columbia College - Missouri'),
(145834, 113872, 'en', 'name', 'LusĆ­ada University of Lisbon'),
(145835, 113873, 'fr', 'name', 'Laboratoire d''Ʃtudes rurales'),
(145836, 113874, 'de', 'name', 'OrthopƤdische Praxis'),
(145837, 113875, 'no_lang_code', 'name', 'Richard Wolf (Germany)'),
(145838, 113876, 'pt', 'name', 'Centro de Estudos de Direito do Ordenamento do Urbanismo e do Ambiente'),
(145839, 113877, 'id', 'name', 'Universitas Islam Madura'),
(145840, 113878, 'en', 'name', 'Algarve Chemistry Research Centre'),
(145841, 113878, 'pt', 'name', 'Centro de Investigacao em Quimica do Algarve'),
(145842, 113879, 'es', 'name', 'Universidad de Santander'),
(145843, 113880, 'it', 'name', 'CoNISMa'),
(145844, 113880, 'en', 'name', 'National Inter-University Consortium for Marine Sciences'),
(145845, 113881, 'tr', 'name', 'Göknur (Türkiye)'),
(145846, 113882, 'en', 'name', 'National Research Centre on Yak'),
(145847, 113882, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ याक ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(145848, 113883, 'en', 'name', 'Korea Institute for International Economic Policy'),
(145849, 113883, 'ko', 'name', 'ėŒ€ģ™øź²½ģ œģ •ģ±…ģ—°źµ¬ģ›'),
(145850, 113884, 'fr', 'name', 'Laboratoire d''Acoustique de l''UniversitƩ du Mans'),
(145851, 113885, 'fr', 'name', 'Laboratoire de Physique des deux infinis Bordeaux'),
(145852, 113886, 'en', 'name', 'Kyrgyz State Medical Academy'),
(145853, 113887, 'en', 'name', 'Raya University'),
(145854, 113887, 'am', 'name', 'įˆ«į‹« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(145855, 113888, 'fr', 'name', 'Laboratoire d''OcƩanographie Microbienne'),
(145856, 113888, 'en', 'name', 'Laboratory of Microbial Oceanography'),
(145857, 113889, 'fr', 'name', 'Laboratoire interdisciplinaire de recherche sur les transformations des pratiques Ʃducatives et des pratiques sociales'),
(145858, 113890, 'id', 'name', 'Institut Seni Indonesia Padangpanjang'),
(145859, 113891, 'fr', 'name', 'Laboratoire de Biologie Intégrative des Modèles Marins'),
(145860, 113891, 'en', 'name', 'Laboratory of Integrative Biology of Marine Model'),
(145861, 113892, 'eu', 'name', 'Mondragon Unibertsitatea'),
(145862, 113892, 'en', 'name', 'Mondragon University'),
(145863, 113892, 'es', 'name', 'Universidad de Mondragón'),
(145864, 113892, 'gl', 'name', 'Universidade de Mondragón'),
(145865, 113893, 'en', 'name', 'Diabetes Australia'),
(145866, 113894, 'pt', 'name', 'Cooperativa de Estudos e Intervenção em Projectos Socioeconómicos'),
(145867, 113895, 'pt', 'name', 'Unidade Hospitalar de Amarante'),
(145868, 113896, 'pt', 'name', 'Observatório de Relações Exteriores'),
(145869, 113897, 'fr', 'name', 'BibliothĆØque Nationale du Luxembourg'),
(145870, 113897, 'lb', 'name', 'Lƫtzebuerger NationalbibliothƩik'),
(145871, 113897, 'en', 'name', 'National Library of Luxembourg'),
(145872, 113897, 'de', 'name', 'Nationalbibliothek Luxemburg'),
(145873, 113898, 'en', 'name', 'Beijing Institute of Microbiology and Epidemiology'),
(145874, 113898, 'zh', 'name', 'åŒ—äŗ¬å¾®ē”Ÿē‰©ęµč”Œē—…ē ”ē©¶ę‰€'),
(145875, 113899, 'en', 'name', 'Scientific Services'),
(145876, 113900, 'no_lang_code', 'name', 'Florence (Netherlands)'),
(145877, 113901, 'en', 'name', 'Vancouver Prostate Centre'),
(145878, 113902, 'en', 'name', 'Binod Bihari Mahto Koyalanchal University'),
(145879, 113902, 'hi', 'name', 'ą¤¬ą¤æą¤Øą„‹ą¤¦ ą¤¬ą¤æą¤¹ą¤¾ą¤°ą„€ ą¤®ą¤¹ą¤¤ą„‹ ą¤•ą„‹ą¤Æą¤²ą¤¾ą¤‚ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(145880, 113903, 'fr', 'name', 'ArchƩosciences-Bordeaux : MatƩriaux, temps, Images et SociƩtƩs'),
(145881, 113904, 'fr', 'name', 'Institut SupƩrieur de MƩcanique de Paris'),
(145882, 113905, 'pt', 'name', 'Hospital de São Sebastião'),
(145883, 113906, 'fr', 'name', 'Eco-procƩdƩs, optimisation et aide Ơ la dƩcision'),
(145884, 113907, 'fr', 'name', 'Institut d''Astrophysique de Paris'),
(145885, 113907, 'en', 'name', 'Paris Institute of Astrophysics'),
(145886, 113908, 'fr', 'name', 'Laboratoire de MƩcanique et GƩnie Civil'),
(145887, 113909, 'sr', 'name', 'Kliničko Bolnički Centar Zvezdara'),
(145888, 113910, 'en', 'name', 'Pennine Acute Hospitals NHS Trust'),
(145889, 113911, 'fr', 'name', 'Institut GƩnƩtique Nantes Atlantique'),
(145890, 113912, 'en', 'name', 'Translational Research Institute'),
(145891, 113913, 'en', 'name', 'Panagiotis & Aglaia Kyriakou Children''s Hospital'),
(145892, 113914, 'en', 'name', 'American Society of Plastic Surgeons'),
(145893, 113915, 'en', 'name', 'Flagler College'),
(145894, 113916, 'pt', 'name', 'Insparya (Portugal)'),
(145895, 113916, 'en', 'name', 'Viable Health'),
(145896, 113917, 'en', 'name', 'Saint-Petersburg State University of Technology and Design'),
(145897, 113918, 'pt', 'name', 'Clƭnica DentƔria Dr SƩrgio Saavedra Marinho (Portugal)'),
(145898, 113918, 'en', 'name', 'Dr Sergio Saavedra Marinho Dental Clinic'),
(145899, 113919, 'en', 'name', 'Auckland District Health Board'),
(145900, 113920, 'en', 'name', 'All Russian Scientific Research Institute of Aviation Materials'),
(145901, 113920, 'ru', 'name', 'Все России Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных материалов'),
(145902, 113921, 'en', 'name', 'Beaudesert Hospital'),
(145903, 113922, 'en', 'name', 'Jigawa State College of Education Gumel'),
(145904, 113923, 'en', 'name', 'Usmanu Danfodiyo University Teaching Hospital, Sokoto'),
(145905, 113924, 'lv', 'name', 'Biznesa vadības koledža'),
(145906, 113924, 'en', 'name', 'College of Business Administration'),
(145907, 113925, 'en', 'name', 'University of Da Nang'),
(145908, 113925, 'fr', 'name', 'UniversitƩ de danang'),
(145909, 113925, 'vi', 'name', 'ĐẔi hį»c ĐƠ Nįŗµng'),
(145910, 113926, 'en', 'name', 'Thailand Center of Excellence in Physics'),
(145911, 113927, 'en', 'name', 'Sirius University of Science and Technology'),
(145912, 113927, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”ŠøŃ€ŠøŃƒŃĀ»'),
(145913, 113928, 'en', 'name', 'Thang Long University'),
(145914, 113928, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Thăng Long'),
(145915, 113929, 'en', 'name', 'European Centre for Theoretical Studies in Nuclear Physics and Related Areas'),
(145916, 113930, 'en', 'name', 'Institute of Peruvian Studies'),
(145917, 113930, 'es', 'name', 'Instituto de Estudios Peruanos'),
(145918, 113931, 'pt', 'name', 'Sociedade Portuguesa de GrupanƔlise e Psicoterapia Analƭtica de Grupo'),
(145919, 113932, 'fr', 'name', 'Institut du Thorax'),
(145920, 113933, 'en', 'name', 'Identities, Territories, Expressions, Mobilities'),
(145921, 113933, 'fr', 'name', 'IdentitƩs, Territoires, Expressions, MobilitƩs'),
(145922, 113934, 'es', 'name', 'Instituto de Investigación Sanitaria de Santiago'),
(145923, 113935, 'en', 'name', 'California Sea Grant'),
(145924, 113936, 'en', 'name', 'Institute of Forestry'),
(145925, 113936, 'sr', 'name', 'ŠØŃƒŠ¼Š°Ń€ŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(145926, 113937, 'es', 'name', 'Universidad Siglo 21'),
(145927, 113938, 'en', 'name', 'University of Bahri'),
(145928, 113938, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بحري'),
(145929, 113939, 'en', 'name', 'Peel Health Campus'),
(145930, 113940, 'no_lang_code', 'name', 'Linz Center of Mechatronics (Austria)'),
(145931, 113941, 'en', 'name', 'Federal Neuro Psychiatric Hospital'),
(145932, 113942, 'en', 'name', 'The Polytechnic University of Japan'),
(145933, 113942, 'ja', 'name', 'č·ę„­čƒ½åŠ›é–‹ē™ŗē·åˆå¤§å­¦ę ”'),
(145934, 113943, 'en', 'name', 'Vivek University'),
(145935, 113944, 'pt', 'name', 'Universidade Tiradentes'),
(145936, 113945, 'pl', 'name', 'Instytut Centrum Zdrowia Matki Polki w Łodzi'),
(145937, 113945, 'en', 'name', 'Polish Mother’s Memorial Hospital Research Institute'),
(145938, 113946, 'en', 'name', 'Barcelona School of Economics'),
(145939, 113946, 'es', 'name', 'Escuela de EconomĆ­a de Barcelona'),
(145940, 113947, 'en', 'name', 'Center for Human Language Technology and Bioinformatics'),
(145941, 113947, 'pt', 'name', 'Centro de Tecnologia da Linguagem Humana e BioinformƔtica'),
(145942, 113948, 'en', 'name', 'Luxembourg Institute of Health'),
(145943, 113949, 'de', 'name', 'Bodensee-Stiftung'),
(145944, 113950, 'fr', 'name', 'Institut de Biologie de l''Ɖcole Normale SupĆ©rieure'),
(145945, 113951, 'fr', 'name', 'Laboratoire de Thermique, EnergƩtique et ProcƩdƩs'),
(145946, 113951, 'en', 'name', 'Laboratory of Thermal Engineering, Energy and Processes'),
(145947, 113952, 'fr', 'name', 'Centre lorrain de recherches interdisciplinaires dans les domaines des littƩratures, des cultures et de la thƩologie'),
(145948, 113953, 'fr', 'name', 'FƩdƩration des Sciences ArchƩologiques de Bordeaux'),
(145949, 113954, 'en', 'name', 'Wilhelm Woort-Stiftung'),
(145950, 113955, 'en', 'name', 'Davangere University'),
(145951, 113955, 'kn', 'name', 'ದಾವಣಗೆರೆ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(145952, 113956, 'en', 'name', 'Ministry of Health'),
(145953, 113956, 'ar', 'name', 'وزارة الصحة'),
(145954, 113957, 'en', 'name', 'State Scientific Center - Research Institute of Atomic Reactors'),
(145955, 113957, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр — ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ атомных реакторов'),
(145956, 113958, 'en', 'name', 'Rajiv Gandhi University of Knowledge Technologies'),
(145957, 113959, 'fr', 'name', 'Institut MƩditerranƩen de BiodiversitƩ et d''Ecologie Marine et Continentale'),
(145958, 113959, 'en', 'name', 'Mediterranean Institute of Marine and Terrestrial Biodiversity and Ecology'),
(145959, 113960, 'en', 'name', 'Biratnagar Eye Hospital'),
(145960, 113961, 'fr', 'name', 'UnitĆ© Ɖvolution, Ɖcologie et PalĆ©ontologie'),
(145961, 113962, 'pt', 'name', 'Unidade Local de Saude do Alto Ave'),
(145962, 113963, 'it', 'name', 'Regione Marche'),
(145963, 113964, 'fr', 'name', 'Institut Charles Gerhardt Montpellier'),
(145964, 113965, 'en', 'name', 'TAV College'),
(145965, 113966, 'fr', 'name', 'Laboratoire de chimie des processus biologiques'),
(145966, 113967, 'en', 'name', 'Institute for Christian Studies'),
(145967, 113968, 'en', 'name', 'Agricultural Academy'),
(145968, 113968, 'bg', 'name', 'Делскостопанска Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(145969, 113969, 'en', 'name', 'Group of Mathematical Physics');
INSERT INTO `ror_settings` VALUES
(145970, 113969, 'pt', 'name', 'Grupo de Fƭsica MatemƔtica'),
(145971, 113970, 'fr', 'name', 'ThƩoriser et ModƩliser pour AmƩnager'),
(145972, 113971, 'en', 'name', 'Spinal Cord Injury BC'),
(145973, 113972, 'no_lang_code', 'name', 'Atomic Energy (Canada)'),
(145974, 113972, 'fr', 'name', 'Ɖnergie atomique du Canada'),
(145975, 113973, 'fr', 'name', 'RƩsistance Induite et Bioprotection des Plantes'),
(145976, 113974, 'no_lang_code', 'name', 'Inform (Germany)'),
(145977, 113975, 'fr', 'name', 'Orient & MƩditerranƩe'),
(145978, 113976, 'en', 'name', 'National Institute of Rheumatic Diseases'),
(145979, 113977, 'en', 'name', 'Philippine School Doha'),
(145980, 113977, 'ar', 'name', 'المدرسة Ų§Ł„ŁŁ„ŲØŁŠŁ†ŁŠŲ© Ų§Ł„ŲÆŁˆŲ­Ų©'),
(145981, 113978, 'en', 'name', 'Alter Stud Farm'),
(145982, 113978, 'pt', 'name', 'Coudelaria de Alter (Portugal)'),
(145983, 113979, 'en', 'name', 'National Agricultural Research Organisation'),
(145984, 113980, 'fr', 'name', 'Institut de Recherche en Informatique de Toulouse'),
(145985, 113980, 'en', 'name', 'Toulouse Institute of Computer Science Research'),
(145986, 113981, 'fr', 'name', 'Structure fƩdƩrative de recherche Necker'),
(145987, 113982, 'en', 'name', 'Technological Unit for Radiosterilization'),
(145988, 113982, 'pt', 'name', 'Unidade Tecnológica de Radioesterilização'),
(145989, 113983, 'fr', 'name', 'SociƩtƩ FranƧaise de Cardiologie'),
(145990, 113984, 'es', 'name', 'Centro Interdisciplinario de Estudios sobre Territorio, EconomĆ­a y Sociedad'),
(145991, 113985, 'en', 'name', 'University of Health Science'),
(145992, 113985, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžœįž·įž‘įŸ’įž™įž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšįžŸįž»įžįž¶įž—įž·įž”įž¶įž›'),
(145993, 113986, 'pl', 'name', '109 Szpital Wojskowy z Przychodnią w Szczecinie'),
(145994, 113987, 'fr', 'name', 'Acteurs, Ressources et Territoires dans le DƩveloppement'),
(145995, 113988, 'pt', 'name', 'Livros tecnicos (Portugal)'),
(145996, 113989, 'fr', 'name', 'Institut Jean Nicod'),
(145997, 113990, 'fr', 'name', 'Infection et inflammation'),
(145998, 113991, 'en', 'name', 'Maharajgunj Medical Campus'),
(145999, 113991, 'ne', 'name', 'ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤œą¤—ą¤žą„ą¤œ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤•ą„ą¤Æą¤¾ą¤®ą„ą¤Ŗą¤ø'),
(146000, 113992, 'en', 'name', 'The 988th Hospital of the Joint Service Support Force of the Chinese People''s Liberation Army'),
(146001, 113992, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›č”å‹¤äæéšœéƒØé˜Ÿē¬¬ä¹å…«å…«åŒ»é™¢ē„¦ä½œåŒ»ē–—åŒŗ'),
(146002, 113993, 'fr', 'name', 'Institut de Chimie et des MatƩriaux Paris-Est'),
(146003, 113994, 'en', 'name', 'Max Planck Institute Luxemburg for International, European and Regulatory Procedural Law'),
(146004, 113995, 'fr', 'name', 'Institut de GƩnomique Fonctionnelle'),
(146005, 113995, 'en', 'name', 'Institute of Functional Genomics'),
(146006, 113996, 'en', 'name', 'Community College of Philadelphia'),
(146007, 113997, 'en', 'name', 'Ministry of Health'),
(146008, 113997, 'pt', 'name', 'Ministério da Saúde'),
(146009, 113998, 'fr', 'name', 'Laboratoire de MĆ©canique et d’Acoustique'),
(146010, 113998, 'en', 'name', 'Laboratory of Mechanics and Acoustics'),
(146011, 113999, 'de', 'name', 'Fachhochschule Oberƶsterreich'),
(146012, 113999, 'en', 'name', 'University of Applied Sciences Upper Austria'),
(146013, 114000, 'en', 'name', 'Community Health Systems - Flowers Hospital'),
(146014, 114001, 'en', 'name', 'Centre for Sustainable Energy'),
(146015, 114002, 'pt', 'name', 'Hospital de Santa Luzia de Elvas'),
(146016, 114003, 'fr', 'name', 'Langues et Civilisations Ć  Tradition Orale'),
(146017, 114004, 'id', 'name', 'Universitas Bhayangkara Jakarta Raya'),
(146018, 114005, 'en', 'name', 'Association of British Dispensing Opticians'),
(146019, 114006, 'fr', 'name', 'Laboratoire de Chimie ThƩorique'),
(146020, 114007, 'en', 'name', 'The Gambia College'),
(146021, 114008, 'fr', 'name', 'Institut de MƩcanique et d''IngƩnierie de Bordeaux'),
(146022, 114008, 'en', 'name', 'Institute of Mechanics and Engineering'),
(146023, 114009, 'en', 'name', 'SVKM''s Narsee Monjee College of Commerce and Economics'),
(146024, 114010, 'en', 'name', 'DMEX Centre for X-ray Imaging'),
(146025, 114011, 'en', 'name', 'Institute of Social Work'),
(146026, 114012, 'fr', 'name', 'Sciences et Ingénierie de la Matière Molle'),
(146027, 114012, 'en', 'name', 'Soft Matter Sciences and Engineering Laboratory'),
(146028, 114013, 'pt', 'name', 'Unidade Local de Saúde da ArrÔbida'),
(146029, 114014, 'id', 'name', 'Universitas Islam Internasional Darullughah Wadda''wah'),
(146030, 114015, 'de', 'name', 'Unilabs'),
(146031, 114015, 'no_lang_code', 'name', 'Unilabs (Switzerland)'),
(146032, 114016, 'fr', 'name', 'Institut de GƩnƩtique Humaine'),
(146033, 114016, 'en', 'name', 'Institute of Human Genetics'),
(146034, 114017, 'en', 'name', 'Alexandria University'),
(146035, 114017, 'fr', 'name', 'UniversitƩ d''Alexandrie'),
(146036, 114017, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(146037, 114018, 'pt', 'name', 'Centro de Literaturas e Culturas Lusófonas e Europeias'),
(146038, 114019, 'en', 'name', 'Nippon Institute of Technology'),
(146039, 114019, 'ja', 'name', 'ę—„ęœ¬å·„ę„­å¤§å­¦'),
(146040, 114020, 'en', 'name', 'Lala Lajpatrai College of Commerce & Economics'),
(146041, 114021, 'en', 'name', 'University of Saint Mary'),
(146042, 114022, 'fr', 'name', 'Centre Alexandre KoyrƩ'),
(146043, 114023, 'nl', 'name', 'Kennisinstituut voor Mobiliteitsbeleid'),
(146044, 114024, 'fr', 'name', 'Maison mƩditerranƩenne des sciences de l''Homme'),
(146045, 114025, 'pt', 'name', 'Laboratório de Microbiologia'),
(146046, 114026, 'en', 'name', 'Favaloro University'),
(146047, 114026, 'es', 'name', 'Universidad Favaloro'),
(146048, 114027, 'en', 'name', 'International University of Monaco'),
(146049, 114027, 'fr', 'name', 'UniversitƩ internationale de monaco'),
(146050, 114028, 'pt', 'name', 'Dr Campos Costa (Portugal)'),
(146051, 114029, 'en', 'name', 'Woodwell Climate Research Center'),
(146052, 114030, 'es', 'name', 'Instituto de Lingüística'),
(146053, 114031, 'fr', 'name', 'Centre d’Études et de Recherche en Histoire culturelle'),
(146054, 114032, 'fr', 'name', 'Laboratoire de Conception Fabrication Commande'),
(146055, 114032, 'en', 'name', 'Laboratory of design, manufacturing and control'),
(146056, 114033, 'hr', 'name', 'Opća Bolnica Zadar'),
(146057, 114034, 'hi', 'name', 'Devi Ahilya Vishwavidyalaya'),
(146058, 114035, 'es', 'name', 'Instituto de Educación Secundaria Parquesol'),
(146059, 114036, 'fr', 'name', 'Laboratoire de Physique ThƩorique et ModƩlisation'),
(146060, 114037, 'en', 'name', 'Centre of Biomedical Research'),
(146061, 114037, 'hi', 'name', 'ą¤œą„ˆą¤µ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(146062, 114038, 'en', 'name', 'Ahsania Mission University of Science and Technology'),
(146063, 114038, 'bn', 'name', 'ą¦†ą¦¹ą§ą¦›ą¦¾ą¦Øą¦æą¦Æą¦¼ą¦¾ মিশন ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(146064, 114039, 'en', 'name', 'PC TECHNOLOGY CENTER'),
(146065, 114040, 'no_lang_code', 'name', 'BioSurfaces (United States)'),
(146066, 114041, 'en', 'name', 'Bilecik Şeyh Edebali University'),
(146067, 114041, 'tr', 'name', 'Bilecik Şeyh Edebali Üniversitesi'),
(146068, 114042, 'en', 'name', 'The Jackson Laboratory for Genomic Medicine'),
(146069, 114043, 'en', 'name', 'INVOLV'),
(146070, 114044, 'fr', 'name', 'Centre d’histoire sociale des mondes contemporains'),
(146071, 114045, 'no_lang_code', 'name', 'Physical Sciences (United States)'),
(146072, 114046, 'fr', 'name', 'Centre universitaire rouennais d’études juridiques'),
(146073, 114047, 'pt', 'name', 'Universidade Nova de Lisboa Bibliotecas'),
(146074, 114048, 'de', 'name', 'Klinikum Ernst von Bergmann'),
(146075, 114049, 'en', 'name', 'Society for Technical Communication'),
(146076, 114050, 'en', 'name', 'Busitema University'),
(146077, 114051, 'es', 'name', 'Centro de Altos Estudios Nacionales - Escuela de Posgrado'),
(146078, 114052, 'en', 'name', 'Central Veterinary Research Laboratory'),
(146079, 114053, 'id', 'name', 'Universitas Yapis Papua'),
(146080, 114054, 'en', 'name', 'Kimyo International University in Tashkent'),
(146081, 114054, 'uz', 'name', 'Toshkent Kimyo Xalqaro Universiteti'),
(146082, 114054, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет ŠšŠøŠ¼Ń‘'),
(146083, 114055, 'en', 'name', 'Praxiling'),
(146084, 114056, 'en', 'name', 'DONA Foundation'),
(146085, 114056, 'fr', 'name', 'Fondation DONA'),
(146086, 114057, 'en', 'name', 'Vitreous Retina Macula Consultants of New York'),
(146087, 114058, 'it', 'name', 'Regione Abruzzo'),
(146088, 114059, 'en', 'name', 'ENSILIS Education and Training'),
(146089, 114059, 'pt', 'name', 'ENSILIS Educação e Formação (Portugal)'),
(146090, 114060, 'es', 'name', 'Universidad de Ciencias Empresariales y Sociales'),
(146091, 114061, 'en', 'name', 'Department of Genomes & Genetics'),
(146092, 114062, 'pt', 'name', 'Coriant (Portugal)'),
(146093, 114063, 'en', 'name', 'Rianda Research Centre for Research in Energy Health and Environment'),
(146094, 114063, 'pt', 'name', 'Rianda Research Centro de Investigação em Energia Saúde e Ambiente (Portugal)'),
(146095, 114064, 'en', 'name', 'Arizona Science Center'),
(146096, 114065, 'sl', 'name', 'Univerzitetno SrediŔče Novo mesto'),
(146097, 114066, 'en', 'name', 'Saint Petersburg State University of Veterinary Medicine'),
(146098, 114066, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарной меГицины'),
(146099, 114067, 'fr', 'name', 'Laboratoire d’Economie de Dauphine'),
(146100, 114068, 'en', 'name', 'Sulaiman Al Rajhi Colleges'),
(146101, 114069, 'cy', 'name', 'Prifysgol Wrexham'),
(146102, 114069, 'en', 'name', 'Wrexham University'),
(146103, 114070, 'en', 'name', 'St. Patrick''s Hospital'),
(146104, 114071, 'en', 'name', 'Optica'),
(146105, 114072, 'en', 'name', 'The Collective Intelligence Project'),
(146106, 114073, 'hr', 'name', 'Klinika za psihijatriju Vrapče'),
(146107, 114074, 'pt', 'name', 'Associação de Municípios do Vale do Ave'),
(146108, 114075, 'fr', 'name', 'Centre d''Etudes SupƩrieures de la Renaissance'),
(146109, 114076, 'fr', 'name', 'Laboratoire ProcƩdƩs et IngƩnierie en MƩcanique et MatƩriaux'),
(146110, 114076, 'en', 'name', 'Processes and Engineering in Mechanics and Materials'),
(146111, 114077, 'en', 'name', 'Engineering Science, Computer Science and Imaging Laboratory'),
(146112, 114077, 'fr', 'name', 'Laboratoire des Sciences de l''IngƩnieur, de l''Informatique et de l''Imagerie'),
(146113, 114078, 'en', 'name', 'University of Technology and Applied Sciences-Suhar'),
(146114, 114078, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© فرع ŲµŲ­Ų§Ų±'),
(146115, 114079, 'fr', 'name', 'Sciences et Technologies des Cultures et SociƩtƩs NumƩriques'),
(146116, 114080, 'fr', 'name', 'Groupe de Recherche en Electrotechnique et Automatique du Havre'),
(146117, 114081, 'en', 'name', 'National Research Mordovia State University'),
(146118, 114081, 'ru', 'name', 'ŠœŠ¾Ń€Š“Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. П. ŠžŠ³Š°Ń€Ń‘Š²Š°'),
(146119, 114082, 'en', 'name', 'Physics of Cells and Cancer'),
(146120, 114082, 'fr', 'name', 'Physique des Cellules et Cancers'),
(146121, 114083, 'pt', 'name', 'Unilever FIMA (Portugal)'),
(146122, 114084, 'id', 'name', 'Universitas Prof Dr Moestopo'),
(146123, 114085, 'de', 'name', 'Bayerisches Landesamt für Umwelt'),
(146124, 114086, 'en', 'name', 'Carlos III University of Madrid'),
(146125, 114086, 'es', 'name', 'Universidad Carlos III de Madrid'),
(146126, 114087, 'en', 'name', 'Lady Amritbai Daga and Smt. Ratnidevi Purohit College for Women'),
(146127, 114088, 'en', 'name', 'Nazarbayev Intellectual Schools'),
(146128, 114088, 'kk', 'name', 'ŠŠ°Š·Š°Ń€Š±Š°ŠµŠ² Š—ŠøŃŃ‚ŠŗŠµŃ€Š»Ń–Šŗ мектептері'),
(146129, 114088, 'ru', 'name', 'ŠŠ°Š·Š°Ń€Š±Š°ŠµŠ² Š˜Š½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Ń‹Šµ ŃˆŠŗŠ¾Š»Ń‹'),
(146130, 114089, 'es', 'name', 'Instituto de Milenio de AstrofĆ­sica'),
(146131, 114089, 'en', 'name', 'Millennium Institute of Astrophysics'),
(146132, 114090, 'en', 'name', 'Burwood Hospital'),
(146133, 114091, 'en', 'name', 'Iran University Press'),
(146134, 114091, 'fa', 'name', 'مرکز نؓر ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ'),
(146135, 114092, 'fr', 'name', 'Centre d''Ʃtudes Turques, Ottomanes, Balkaniques et Centrasiatiques'),
(146136, 114093, 'fr', 'name', 'Laboratoire Chimie de l''Environnement'),
(146137, 114094, 'en', 'name', 'Institute for Community Health'),
(146138, 114095, 'fr', 'name', 'Laboratoire de Physique et Chimie de l’Environnement et de l’Espace'),
(146139, 114096, 'en', 'name', 'Jet Propulsion Laboratory'),
(146140, 114096, 'es', 'name', 'Laboratorio de Propulsión a Chorro'),
(146141, 114097, 'fr', 'name', 'ArchƩologie des AmƩriques'),
(146142, 114098, 'no_lang_code', 'name', 'Membrane Technology & Research (United States)'),
(146143, 114099, 'fr', 'name', 'Centre des Sciences des LittƩratures en langue FranƧaise'),
(146144, 114100, 'no_lang_code', 'name', 'Yangtze Optical Electronic (China)'),
(146145, 114101, 'en', 'name', 'Montana State University System'),
(146146, 114102, 'pt', 'name', 'Laboratório Colaborativo em Conhecimento e Tecnologia para uma Saúde Melhor'),
(146147, 114103, 'fr', 'name', 'Institut de recherche Juridique sur l''entreprise et les relations professionnelles'),
(146148, 114104, 'no_lang_code', 'name', 'Fabas Foods AG (Switzerland)'),
(146149, 114105, 'en', 'name', 'Institute of Ethnology and Folklore Research'),
(146150, 114106, 'en', 'name', 'Joldasbekov Institute of Mechanics and Engineering'),
(146151, 114107, 'fr', 'name', 'Laboratoire des MatƩriaux et du GƩnie Physique'),
(146152, 114107, 'en', 'name', 'Materials and Physical Engineering Laboratory'),
(146153, 114108, 'no_lang_code', 'name', 'McKesson (United States)'),
(146154, 114109, 'en', 'name', 'Institute for High Performance Computing and Networking'),
(146155, 114109, 'it', 'name', 'Istituto di Calcolo e Reti ad Alte Prestazioni'),
(146156, 114110, 'es', 'name', 'Instituto Murciano de Investigación Biosanitaria'),
(146157, 114111, 'en', 'name', 'St. Peter''s Institute of Higher Education and Research'),
(146158, 114112, 'fr', 'name', 'Passages'),
(146159, 114113, 'nl', 'name', 'Departement Werk, Economie, Wetenschap, Innovatie en Sociale Economie'),
(146160, 114113, 'en', 'name', 'Department of Work, Economy, Science, Innovation and Social Economy'),
(146161, 114114, 'fr', 'name', 'Verimag'),
(146162, 114115, 'en', 'name', 'College of Medical Sciences'),
(146163, 114116, 'fr', 'name', 'Centre d''Ɖconomie de la Sorbonne'),
(146164, 114117, 'en', 'name', 'FranƧois GƩny Institute'),
(146165, 114117, 'fr', 'name', 'Institut FranƧois GƩny'),
(146166, 114118, 'fr', 'name', 'Institut de recherche sur le cinƩma et l''audiovisuel'),
(146167, 114119, 'en', 'name', 'Gomel State Medical University'),
(146168, 114119, 'ru', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(146169, 114119, 'be', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(146170, 114120, 'pt', 'name', 'Universidade de Sorocaba'),
(146171, 114121, 'de', 'name', 'Leibniz Fachhochschule'),
(146172, 114121, 'en', 'name', 'Leibniz University of Applied Sciences'),
(146173, 114122, 'en', 'name', 'New York Times'),
(146174, 114123, 'en', 'name', 'Inala Community Health Centre'),
(146175, 114124, 'fr', 'name', 'Institut d''ethnologie mƩditerranƩenne europƩenne et comparative'),
(146176, 114125, 'de', 'name', 'Klinikum Fulda'),
(146177, 114126, 'fr', 'name', 'Centre de RMN Ć  TrĆØs Hauts Champs de Lyon'),
(146178, 114126, 'en', 'name', 'Very High Field NMR Center of Lyon'),
(146179, 114127, 'no_lang_code', 'name', 'Acousort AB (Sweden)'),
(146180, 114128, 'en', 'name', 'Community Health Systems - The Orthopedic Hospital'),
(146181, 114129, 'en', 'name', 'Asia Eastern University of Science and Technology'),
(146182, 114129, 'zh', 'name', 'äŗžę±ē§‘ęŠ€å¤§å­ø'),
(146183, 114130, 'en', 'name', 'Columbia College'),
(146184, 114131, 'pt', 'name', 'Centro de Investigação em Ciências Sociais e do Comportamento'),
(146185, 114132, 'fr', 'name', 'Laboratoire MotricitƩ, Interactions, Performance'),
(146186, 114133, 'de', 'name', 'Deutsche Meeresmuseum'),
(146187, 114133, 'en', 'name', 'Ocean Museum Germany'),
(146188, 114134, 'en', 'name', 'Community Health Systems - Northwest Health - Portage'),
(146189, 114135, 'fr', 'name', 'Institut de Physique ThƩorique'),
(146190, 114136, 'id', 'name', 'Universitas Patria Artha'),
(146191, 114137, 'en', 'name', 'Bioscience and Biotechnology Institute of Aix-Marseille'),
(146192, 114137, 'fr', 'name', 'Institut de Biosciences et biotechnologies d''Aix-Marseille'),
(146193, 114138, 'en', 'name', 'China Academy of Chinese Medical Sciences'),
(146194, 114138, 'zh', 'name', 'äø­å›½äø­åŒ»ē§‘å­¦é™¢'),
(146195, 114139, 'en', 'name', 'Madonna University'),
(146196, 114140, 'pt', 'name', 'Centro de Filosofia das CiĆŖncias'),
(146197, 114141, 'en', 'name', 'National Institute Of Technology Silchar'),
(146198, 114141, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(146199, 114141, 'bn', 'name', 'ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø, শিলচর, অাসাম'),
(146200, 114142, 'fr', 'name', 'Centre Scientifique de Monaco'),
(146201, 114142, 'en', 'name', 'Scientific Centre of Monaco'),
(146202, 114143, 'en', 'name', 'New York Law School'),
(146203, 114144, 'fr', 'name', 'Institut de Thermique, MƩcanique, MatƩriaux'),
(146204, 114145, 'en', 'name', 'Community Health Systems - Northwest Health - Starke'),
(146205, 114146, 'en', 'name', 'Jiangsu Provincial Academy of Traditional Chinese Medicine'),
(146206, 114146, 'zh', 'name', 'ę±Ÿč‹ēœäø­åŒ»čÆē ”ē©¶é™¢'),
(146207, 114147, 'fr', 'name', 'Laboratoire Babel'),
(146208, 114148, 'en', 'name', 'Community Health Systems - Lutheran Hospital'),
(146209, 114149, 'en', 'name', 'Polish-Japanese Academy of Information Technology'),
(146210, 114149, 'pl', 'name', 'Polsko-Japońska Akademia Technik Komputerowych'),
(146211, 114150, 'pt', 'name', 'Unidade Local de SaĆŗde de Almada-Seixal'),
(146212, 114151, 'en', 'name', 'Chemistry and Modelling for Biology of Cancer'),
(146213, 114151, 'fr', 'name', 'Chimie et ModƩlisation pour la Biologie du Cancer'),
(146214, 114152, 'no_lang_code', 'name', 'NGK Insulators (Japan)'),
(146215, 114152, 'ja', 'name', 'ę—„ęœ¬ē¢å­ę Ŗå¼ä¼šē¤¾'),
(146216, 114153, 'en', 'name', 'Acredita Portugal Association'),
(146217, 114153, 'pt', 'name', 'Associação Acredita Portugal (Portugal)'),
(146218, 114154, 'fr', 'name', 'Complexe de Recherche Interprofessionnel en AƩrothermochimie'),
(146219, 114155, 'fr', 'name', 'Institutions et Dynamiques Historiques de l''Ɖconomie et de la SociĆ©tĆ©'),
(146220, 114156, 'en', 'name', 'Auckland City Hospital'),
(146221, 114157, 'en', 'name', 'Community Health Systems - AllianceHealth Durant'),
(146222, 114158, 'fr', 'name', 'Laboratoire d’Etudes du Rayonnement et de la MatiĆØre en Astrophysique et AtmosphĆØres'),
(146223, 114158, 'en', 'name', 'Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres'),
(146224, 114159, 'it', 'name', 'Centro Clinico Nemo'),
(146225, 114160, 'fr', 'name', 'Maison des Sciences de l''Homme Paris Nord'),
(146226, 114161, 'it', 'name', 'Istituto per la Storia del Pensiero Filosofico e Scientifico Moderno'),
(146227, 114162, 'en', 'name', 'Massachusetts Eye Research and Surgery Institute'),
(146228, 114163, 'en', 'name', 'Lagos State University Teaching Hospital'),
(146229, 114164, 'en', 'name', 'State University of ParaĆ­ba'),
(146230, 114164, 'pt', 'name', 'Universidade Estadual da ParaĆ­ba'),
(146231, 114165, 'en', 'name', 'Nuclear Institute for Agriculture and Biology'),
(146232, 114166, 'es', 'name', 'Asociación PsiquiÔtrica Mexicana, A.C.'),
(146233, 114167, 'fr', 'name', 'Institut des Sciences du Mouvement Etienne-Jules Marey'),
(146234, 114168, 'en', 'name', 'Cancer Support Community'),
(146235, 114169, 'pt', 'name', 'Laboratorio Colaborativo Sustainable and Smart Aquaculture'),
(146236, 114170, 'en', 'name', 'Dongguan Guangdong Hong Kong And Macao Stem Cell Biotechnology'),
(146237, 114170, 'zh', 'name', 'ē²¤ęøÆę¾³å¹²ē»†čƒžē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(146238, 114171, 'pt', 'name', 'Unidade de Biotecnologia Ambiental'),
(146239, 114172, 'es', 'name', 'Patrimonio Nacional'),
(146240, 114173, 'en', 'name', 'The Ministry of Education and Science of the Russian Federation'),
(146241, 114173, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки Российской ФеГерации'),
(146242, 114174, 'en', 'name', 'Serang Raya University'),
(146243, 114174, 'id', 'name', 'Universitas Serang Raya'),
(146244, 114175, 'fr', 'name', 'Laboratoire MƩcanique des Solides'),
(146245, 114175, 'en', 'name', 'Solids Mechanic Laboratory'),
(146246, 114176, 'fr', 'name', 'Recherche Canada'),
(146247, 114176, 'en', 'name', 'Research Canada'),
(146248, 114177, 'tr', 'name', 'Şarkışla Devlet Hastanesi'),
(146249, 114178, 'en', 'name', 'Lifespan Research Institute'),
(146250, 114179, 'pt', 'name', 'Laboratório de Ergonomia'),
(146251, 114180, 'fr', 'name', 'Institut des Sciences Analytiques et de Physico-Chimie pour l''Environnement et les MatƩriaux'),
(146252, 114180, 'en', 'name', 'Institute of Analytical Sciences and Physico-Chemistry for Environment and Materials'),
(146253, 114181, 'en', 'name', 'Institute of Contemporary History'),
(146254, 114182, 'nl', 'name', 'GGz centraal'),
(146255, 114183, 'pt', 'name', 'Livraria Lello (Portugal)'),
(146256, 114184, 'en', 'name', 'Alfried Krupp Hospital'),
(146257, 114184, 'de', 'name', 'Alfried Krupp Krankenhaus'),
(146258, 114185, 'en', 'name', 'Phillips Exeter Academy'),
(146259, 114186, 'fr', 'name', 'Centre de recherche sur le monde iranien'),
(146260, 114187, 'es', 'name', 'Hospital EspaƱol'),
(146261, 114188, 'en', 'name', 'Belarusian State Medical University'),
(146262, 114188, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(146263, 114188, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(146264, 114189, 'fr', 'name', 'Cohortes ƩpidƩmiologiques en population'),
(146265, 114190, 'en', 'name', 'National University of Salta'),
(146266, 114190, 'es', 'name', 'Universidad Nacional de Salta'),
(146267, 114191, 'fr', 'name', 'Histoire et critique des arts'),
(146268, 114192, 'en', 'name', 'Danubius International University'),
(146269, 114192, 'ro', 'name', 'Universitatea Internațională Danubius'),
(146270, 114193, 'en', 'name', 'Community Health Systems - Lower Keys Medical Center'),
(146271, 114194, 'en', 'name', 'Business Academy Copenhagen'),
(146272, 114194, 'da', 'name', 'Erhvervsakademi KĆøbenhavn'),
(146273, 114195, 'fr', 'name', 'ArchƩorient'),
(146274, 114196, 'fr', 'name', 'Laboratoire des Ɖcoulements GĆ©ophysiques et Industriels'),
(146275, 114196, 'en', 'name', 'Laboratory of Geophysical and Industrial Flows'),
(146276, 114197, 'fr', 'name', 'Laboratoire de MathƩmatiques et Applications'),
(146277, 114198, 'fr', 'name', 'Centre de recherche en reproduction humaine et en dƩmographie'),
(146278, 114199, 'en', 'name', 'Saidu College of Dentistry'),
(146279, 114200, 'id', 'name', 'Universitas Fajar'),
(146280, 114201, 'en', 'name', 'CPL Meetings and Events (Portugal)'),
(146281, 114202, 'fr', 'name', 'Diplomatique'),
(146282, 114203, 'en', 'name', 'Institute of Oncology Prof. Dr. Ion Chiricuta'),
(146283, 114204, 'id', 'name', 'Universitas Batam'),
(146284, 114205, 'en', 'name', 'Dreamo Balanced Work Systems (Portugal)'),
(146285, 114206, 'fr', 'name', 'Cognition, SantƩ, SociƩtƩ'),
(146286, 114207, 'pt', 'name', 'Instituto de Soldadura e Qualidade'),
(146287, 114208, 'en', 'name', 'Formalpress Publications and Marketing Odivelas'),
(146288, 114208, 'pt', 'name', 'Formalpress PublicaƧƵes e Marketing Odivelas (Portugal)'),
(146289, 114209, 'en', 'name', 'Mihir Bhoj Postgraduate College, Dadri'),
(146290, 114209, 'hi', 'name', 'मिहिर ą¤­ą„‹ą¤œ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤•ą„‰ą¤²ą„‡ą¤œ, ą¤¦ą¤¾ą¤¦ą¤°ą„€'),
(146291, 114210, 'en', 'name', 'Research Institute for Fragrance Materials'),
(146292, 114211, 'es', 'name', 'Universidad CientĆ­fica del Sur'),
(146293, 114212, 'en', 'name', 'Metropolitan Expressway Company'),
(146294, 114212, 'no_lang_code', 'name', 'Metropolitan Expressway Company (Japan)'),
(146295, 114212, 'ja', 'name', 'é¦–éƒ½é«˜é€Ÿé“č·Æę Ŗå¼ä¼šē¤¾'),
(146296, 114213, 'en', 'name', 'MRIGlobal'),
(146297, 114214, 'pt', 'name', 'Centro de Investigação de Direito Público'),
(146298, 114214, 'en', 'name', 'Lisbon Public Law Research Centre'),
(146299, 114215, 'es', 'name', 'Editorial Cientƭfico-TƩcnica Ocronos'),
(146300, 114215, 'no_lang_code', 'name', 'Editorial Cientƭfico-TƩcnica Ocronos (Spain)'),
(146301, 114216, 'en', 'name', 'Amarillo College'),
(146302, 114217, 'en', 'name', 'Institute of Mathematics and Mathematical Modeling'),
(146303, 114218, 'en', 'name', 'Chungbuk National University Hospital'),
(146304, 114218, 'ko', 'name', 'ģ¶©ė¶ėŒ€ķ•™źµė³‘ģ›'),
(146305, 114219, 'en', 'name', 'Institute of Solid Mechanics'),
(146306, 114219, 'ro', 'name', 'Institutul de Mecanica Solidelor al Academiei Române'),
(146307, 114220, 'fr', 'name', 'Equipe de droit public de Lyon'),
(146308, 114221, 'fr', 'name', 'Ingenierie des Materiaux polymeres'),
(146309, 114221, 'en', 'name', 'Laboratory of Polymer Materials Engineering'),
(146310, 114222, 'en', 'name', 'The OpenPRA Initiative'),
(146311, 114223, 'en', 'name', 'Franciscan University of Steubenville'),
(146312, 114224, 'fr', 'name', 'IngƩnierie MolƩculaire et Physiopathologie Articulaire'),
(146313, 114225, 'fr', 'name', 'Laboratoire d''Ecologie des Hydrosystèmes Naturels et Anthropisés'),
(146314, 114226, 'no_lang_code', 'name', 'BioReperia AB (Sweden)'),
(146315, 114227, 'en', 'name', 'ABDO College'),
(146316, 114228, 'fr', 'name', 'Nanosciences et Innovation pour les MatĆ©riaux, la BiomĆ©decine et l''Ɖnergie'),
(146317, 114229, 'fr', 'name', 'Centre lyonnais d''Histoire du droit et de la pensƩe politique'),
(146318, 114230, 'es', 'name', 'Hospital de ClĆ­nicas'),
(146319, 114231, 'fr', 'name', 'Laboratoire d''Innovation ThƩrapeutique'),
(146320, 114231, 'en', 'name', 'Laboratory for Therapeutic Innovation'),
(146321, 114232, 'id', 'name', 'Universitas Muhammadiyah Metro'),
(146322, 114233, 'no_lang_code', 'name', 'Xenopat SL (Spain)'),
(146323, 114234, 'en', 'name', 'American Academy of Family Physicians'),
(146324, 114235, 'en', 'name', 'Advanced Center for Chronic Diseases'),
(146325, 114236, 'fr', 'name', 'Centre d''Analyse et de Recherche Interdisciplinaires sur les MƩdias'),
(146326, 114237, 'es', 'name', 'Instituto Tecnológico Superior de San Pedro de las Colonias'),
(146327, 114238, 'en', 'name', 'Manubhai Patel Dental College and Hospital'),
(146328, 114239, 'en', 'name', 'Kenya Institute of Surveying and Mapping'),
(146329, 114240, 'pt', 'name', 'Medavantis (Portugal)'),
(146330, 114241, 'en', 'name', 'Agia Olga Hospital'),
(146331, 114241, 'el', 'name', 'ĪšĪ©ĪĪ£Ī¤Ī‘ĪĪ¤ĪŸĪ ĪŸĪ„Ī›Ī•Ī™ĪŸ Ī“Ī•ĪĪ™ĪšĪŸ ĪĪŸĪ£ĪŸĪšĪŸĪœĪ•Ī™ĪŸ ĪĪ•Ī‘Ī£ Ī™Ī©ĪĪ™Ī‘Ī£'),
(146332, 114242, 'pl', 'name', 'Mazowiecko-Świętokrzyskie Towarzystwo Ornitologiczne'),
(146333, 114243, 'en', 'name', 'Pandit Bhagwat Dayal Sharma University of Health Sciences'),
(146334, 114244, 'en', 'name', 'Robert Koch Foundation'),
(146335, 114244, 'de', 'name', 'Robert-Koch-Stiftung'),
(146336, 114245, 'fr', 'name', '(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées'),
(146337, 114245, 'en', 'name', 'Metabolic Functional (epi)Genomics and Molecular Mechanisms Involved in type 2 Diabetes and Related Diseases'),
(146338, 114246, 'en', 'name', 'Community Health Systems - Tennova Turkey Creek Medical Center'),
(146339, 114247, 'en', 'name', 'Office of the Under Secretary of War for Acquisition & Sustainment'),
(146340, 114248, 'en', 'name', 'Magellan Health'),
(146341, 114249, 'fr', 'name', 'UnitƩ MatƩriaux et Transformations'),
(146342, 114250, 'en', 'name', 'Community Health Systems - Dukes Memorial Hospital'),
(146343, 114251, 'en', 'name', 'Shanghai Institute for Science of Science'),
(146344, 114251, 'zh', 'name', 'äøŠęµ·åø‚ē§‘å­¦å­¦ē ”ē©¶ę‰€'),
(146345, 114252, 'fr', 'name', 'Laboratoire du Futur'),
(146346, 114253, 'de', 'name', 'St. Claraspital'),
(146347, 114254, 'en', 'name', 'Laboratory of Catalysis and Solid State Chemistry'),
(146348, 114254, 'fr', 'name', 'UnitƩ de catalyse et de chimie du solide de Lille'),
(146349, 114255, 'de', 'name', 'Klinikum Lippe'),
(146350, 114256, 'id', 'name', 'Universitas 17 Agustus 1945 Samarinda'),
(146351, 114257, 'fr', 'name', 'Laboratoire Communication et SociƩtƩs'),
(146352, 114258, 'pt', 'name', 'Unidade Hospitalar de Mirandela'),
(146353, 114259, 'en', 'name', 'Geneva College'),
(146354, 114260, 'en', 'name', 'Integrated Structural Biology Grenoble'),
(146355, 114261, 'pt', 'name', 'Biblioteca Noronha Feio'),
(146356, 114262, 'en', 'name', 'Polytechnic University of the Sea and the Sierra'),
(146357, 114262, 'es', 'name', 'Universidad PolitƩcnica del Mar y la Sierra'),
(146358, 114263, 'pt', 'name', 'Museu JosƩ Malhoa'),
(146359, 114264, 'fr', 'name', 'Centre de Recherche en Automatique de Nancy'),
(146360, 114264, 'en', 'name', 'Research Center for Automatic Control of Nancy'),
(146361, 114265, 'en', 'name', 'DDailywork Research and Development'),
(146362, 114265, 'pt', 'name', 'Dailywork Investigação e Desenvolvimento (Portugal)'),
(146363, 114266, 'en', 'name', 'Kyoto College of Medical Science'),
(146364, 114266, 'ja', 'name', 'äŗ¬éƒ½åŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(146365, 114267, 'en', 'name', 'University of Sioux Falls'),
(146366, 114268, 'no_lang_code', 'name', 'Heron Therapeutics (United States)'),
(146367, 114269, 'fr', 'name', 'Laboratoire de MathƩmatiques de Bretagne Atlantique'),
(146368, 114270, 'fr', 'name', 'Institut d''Histoire Moderne et Contemporaine'),
(146369, 114271, 'fr', 'name', 'Valeurs, Innovations, Politiques, Socialisations et Sports'),
(146370, 114272, 'en', 'name', 'Community Health Systems - AllianceHealth Madill'),
(146371, 114273, 'en', 'name', 'Institute for Tourism'),
(146372, 114274, 'en', 'name', 'National Research & Development Institute for Textiles and Leather'),
(146373, 114275, 'en', 'name', 'National Institute of Aerospace'),
(146374, 114276, 'en', 'name', 'Osaka Health Science University'),
(146375, 114276, 'ja', 'name', 'å¤§é˜Ŗäæå„åŒ»ē™‚å¤§å­¦'),
(146376, 114277, 'fr', 'name', 'Institut MontpelliƩrain Alexander Grothendieck'),
(146377, 114278, 'es', 'name', 'Editorial Cuadernos de SofĆ­a'),
(146378, 114278, 'no_lang_code', 'name', 'Editorial Cuadernos de SofĆ­a (Chile)'),
(146379, 114279, 'hu', 'name', 'PHARMAHUNGARY 2000 KĆ­sĆ©rletes Ć©s Klinikai KutatĆ”sfejlesztĆ©si KorlĆ”tolt FelelőssĆ©gű TĆ”rsasĆ”g'),
(146380, 114279, 'en', 'name', 'Pharmahungary Group'),
(146381, 114279, 'no_lang_code', 'name', 'Pharmahungary Group (Hungary)'),
(146382, 114280, 'en', 'name', 'Government Engineering College, Bhavnagar'),
(146383, 114281, 'it', 'name', 'ASL Lanciano Vasto Chieti'),
(146384, 114282, 'en', 'name', 'Saint Petersburg State Pediatric Medical University'),
(146385, 114282, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГиатрический меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(146386, 114283, 'fr', 'name', 'Laboratoire CaribƩen de Sciences Sociales'),
(146387, 114284, 'pt', 'name', 'Administração Regional de Saúde do Algarve IP'),
(146388, 114285, 'en', 'name', 'Waikato Hospital'),
(146389, 114286, 'fr', 'name', 'Laboratoire d’Imagerie BiomĆ©dicale'),
(146390, 114287, 'en', 'name', 'Shri Sathya Sai Medical College and Research Institute'),
(146391, 114287, 'ta', 'name', 'ą®øąÆą®°ąÆ€ ą®šą®¤ąÆą®Æ ą®šą®¾ą®ÆąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(146392, 114288, 'de', 'name', 'Bundesamt für Wasserwirtschaft'),
(146393, 114289, 'en', 'name', 'Dr. Bhim Rao Ambedkar University'),
(146394, 114290, 'id', 'name', 'Sekolah Tinggi Ilmu Kesehatan Intan Martapura'),
(146395, 114291, 'en', 'name', 'Jenderal Achmad Yani University'),
(146396, 114291, 'id', 'name', 'Universitas Jenderal Achmad Yani'),
(146397, 114292, 'en', 'name', 'Nigerian Institute of Medical Research'),
(146398, 114293, 'pt', 'name', 'Convento Espirito Santo'),
(146399, 114294, 'en', 'name', 'Isra University'),
(146400, 114295, 'fr', 'name', 'Laboratoire des Solides IrradiƩs'),
(146401, 114296, 'fr', 'name', 'Laboratoire Ondes et MatiĆØre d''Aquitaine'),
(146402, 114297, 'no_lang_code', 'name', 'MEI Research (United States)'),
(146403, 114298, 'en', 'name', 'Center for Research on the English-speaking World'),
(146404, 114299, 'en', 'name', 'Saidu Medical College'),
(146405, 114299, 'ps', 'name', 'ŲÆ سیدو Ų·ŲØ Ł¾ŁˆŁ‡Ł†ŚŪŒ'),
(146406, 114299, 'ur', 'name', 'سیدو طبی کالج'),
(146407, 114300, 'fr', 'name', 'MATƩriaux et IngƩnierie MƩcanique'),
(146408, 114301, 'en', 'name', 'Ergon Informatik AG (Switzerland)'),
(146409, 114302, 'fr', 'name', 'HABITER AmƩnagement et gƩographie politique'),
(146410, 114303, 'no_lang_code', 'name', 'University of Banja Luka'),
(146411, 114303, 'bs', 'name', 'Univerzitet u Banja Luci'),
(146412, 114303, 'sr', 'name', 'Универзитет у Š‘Š°ŃšŠ¾Ń˜ Š›ŃƒŃ†Šø'),
(146413, 114304, 'en', 'name', 'EAE Business School'),
(146414, 114304, 'es', 'name', 'Escuela de Administración de Empresas'),
(146415, 114305, 'en', 'name', 'National Scientific Center "Institute of Experimental and Clinical Veterinary Medicine"'),
(146416, 114305, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠµŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Ń— і клінічної ветеринарної меГицини»'),
(146417, 114306, 'en', 'name', 'University of Parakou'),
(146418, 114306, 'fr', 'name', 'UniversitƩ de Parakou'),
(146419, 114307, 'en', 'name', 'European Telecommunications Standards Institute'),
(146420, 114308, 'en', 'name', 'Directorate for Social, Behavioral & Economic Sciences'),
(146421, 114309, 'pt', 'name', 'Comissão para a igualdade no Trabalho e no Emprego'),
(146422, 114310, 'pt', 'name', 'Unidade Local de SaĆŗde do Algarve'),
(146423, 114311, 'fr', 'name', 'Service des Avions FranƧais InstrumentƩs pour la Recherche en Environnement'),
(146424, 114312, 'pt', 'name', 'Centro de Estudos das MigraƧƵes e das RelaƧƵes Interculturais'),
(146425, 114313, 'en', 'name', 'Alvan Ikoku Federal University of Education, Owerri'),
(146426, 114314, 'en', 'name', 'Research Institute for Aging'),
(146427, 114315, 'en', 'name', 'Change Grow Live'),
(146428, 114316, 'pt', 'name', 'Grupo de Astronomia'),
(146429, 114317, 'fr', 'name', 'Institut de SystĆ©matique, Ɖvolution, BiodiversitĆ©'),
(146430, 114318, 'en', 'name', 'French Pork and Pig Institute'),
(146431, 114318, 'fr', 'name', 'Institut du Porc'),
(146432, 114319, 'en', 'name', 'SBC Tokyo Medical University'),
(146433, 114319, 'ja', 'name', 'SBCę±äŗ¬åŒ»ē™‚å¤§å­¦'),
(146434, 114320, 'fr', 'name', 'Institut SupƩrieur de Techniques AppliquƩes'),
(146435, 114321, 'en', 'name', 'Mediterranean University'),
(146436, 114321, 'sr', 'name', 'Univerzitet Mediteran'),
(146437, 114322, 'id', 'name', 'Institut Manajemen Koperasi Indonesia'),
(146438, 114323, 'fr', 'name', 'Europe orientale, balkanique et mƩdiane'),
(146439, 114324, 'pt', 'name', 'Laboratório de Paisagens Património e Território'),
(146440, 114324, 'en', 'name', 'andscapes, Heritage and Territory Laboratory'),
(146441, 114325, 'pt', 'name', 'Centro de Investigação em Biociências e Tecnologias da Saúde'),
(146442, 114325, 'en', 'name', 'Research Center for Biosciences & Health Technologies'),
(146443, 114326, 'fr', 'name', 'Formes et Idées de la Renaissance aux Lumières'),
(146444, 114327, 'pt', 'name', 'Dariacordar Associação para a Recuperação do Desperdício'),
(146445, 114328, 'fr', 'name', 'Mouvement, Equilibre, Performance, SantƩ'),
(146446, 114328, 'en', 'name', 'Movement, Balance, Performance, Health'),
(146447, 114329, 'en', 'name', 'Guangdong Mechanical & Electrical Polytechnic'),
(146448, 114329, 'zh', 'name', 'å¹æäøœęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(146449, 114330, 'es', 'name', 'Centro MƩdico Docente La Trinidad'),
(146450, 114331, 'pt', 'name', 'Hospital Santa Maria Maior EPE'),
(146451, 114332, 'tl', 'name', 'Pamantasan ng Cabuyao'),
(146452, 114332, 'en', 'name', 'University of Cabuyao'),
(146453, 114333, 'en', 'name', 'Namal University'),
(146454, 114334, 'no_lang_code', 'name', 'University of Luhansk'),
(146455, 114334, 'pl', 'name', 'Ługański Uniwersytet Narodowy im. Tarasa Szewczenki'),
(146456, 114334, 'ru', 'name', 'Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Тараса Шевченко'),
(146457, 114334, 'uk', 'name', 'Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Тараса Шевченка'),
(146458, 114335, 'en', 'name', 'Soban Singh Jeena University'),
(146459, 114335, 'hi', 'name', 'ą¤øą„‹ą¤¬ą¤Ø सिंह ą¤œą„€ą¤Øą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(146460, 114336, 'id', 'name', 'Universitas Yatsi Madani'),
(146461, 114337, 'pt', 'name', 'EdiƧƵes Humus (Portugal)'),
(146462, 114337, 'en', 'name', 'Humus Publishers'),
(146463, 114338, 'pt', 'name', 'Serviço Nacional de Saúde'),
(146464, 114339, 'id', 'name', 'Universitas Komputer Indonesia'),
(146465, 114340, 'fr', 'name', 'Institut des Mondes Africains'),
(146466, 114341, 'en', 'name', 'Association of Research Libraries'),
(146467, 114342, 'it', 'name', 'Fondazione Gimema Onlus'),
(146468, 114343, 'fr', 'name', 'Laboratoire d''Ɖtude des Microstructures et de MĆ©canique des MatĆ©riaux'),
(146469, 114343, 'en', 'name', 'Laboratory of Microstructure Studies and Mechanics of Materials'),
(146470, 114344, 'en', 'name', 'AlcƔcer do Sal Environmental Studies Center'),
(146471, 114344, 'pt', 'name', 'Centro de Estudos Ambientais de AlcƔcer do Sal (Portugal)'),
(146472, 114345, 'en', 'name', 'University of Divinity'),
(146473, 114346, 'en', 'name', 'Muroran Institute of Technology'),
(146474, 114346, 'ja', 'name', '室蘭巄愭大学'),
(146475, 114347, 'en', 'name', 'Houston Museum of Natural Science'),
(146476, 114348, 'en', 'name', 'KIST Medical College'),
(146477, 114349, 'en', 'name', 'Bangladesh Institute of Development Studies'),
(146478, 114349, 'bn', 'name', 'বাংলাদেশ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø গবেষণা ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø'),
(146479, 114350, 'en', 'name', 'University of California San Diego Medical Center'),
(146480, 114351, 'en', 'name', 'Dr. C. V. Raman University'),
(146481, 114351, 'hi', 'name', 'ą¤”ą„‰. ą¤øą„€.ą¤µą„€. रमन ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(146482, 114352, 'en', 'name', 'Queensland University of Technology'),
(146483, 114353, 'de', 'name', 'Stiftung Block'),
(146484, 114354, 'en', 'name', 'Himalayan University'),
(146485, 114355, 'fr', 'name', 'Laboratoire de Biologie MolƩculaire et Cellulaire des Eucaryotes'),
(146486, 114355, 'en', 'name', 'Laboratory of Molecular and Cellular Biology of Eukaryotes'),
(146487, 114356, 'fr', 'name', 'Institut de Recherche sur le Maghreb Contemporain'),
(146488, 114357, 'it', 'name', 'Alleanza Contro il Cancro'),
(146489, 114357, 'en', 'name', 'Alliance Against Cancer'),
(146490, 114358, 'nl', 'name', 'Antonius Ziekenhuis'),
(146491, 114359, 'no_lang_code', 'name', 'ChiraTecnics'),
(146492, 114359, 'en', 'name', 'ChiraTecnics (Portugal)'),
(146493, 114360, 'fr', 'name', 'Laboratoire de BiogenĆØse Membranaire'),
(146494, 114361, 'en', 'name', 'Institute of Atomic Physics'),
(146495, 114361, 'ro', 'name', 'Institutul de Fizică Atomică'),
(146496, 114362, 'en', 'name', 'Ministry of Culture'),
(146497, 114362, 'fr', 'name', 'MinistĆØre de la Culture'),
(146498, 114363, 'en', 'name', 'Institute of Public Health'),
(146499, 114363, 'sq', 'name', 'Instituti i Shƫndetit Publik'),
(146500, 114364, 'en', 'name', 'Jizzakh State Pedagogical University'),
(146501, 114364, 'uz', 'name', 'Jizzax Davlat Pedagogika Universiteti'),
(146502, 114364, 'ru', 'name', 'Джизакский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(146503, 114365, 'en', 'name', 'Kurgan State University'),
(146504, 114365, 'ru', 'name', 'ŠšŃƒŃ€Š³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(146505, 114366, 'fr', 'name', 'Centre Ɖmile Durkheim'),
(146506, 114367, 'en', 'name', 'Institute of Basic Theory for Chinese Medicine'),
(146507, 114367, 'zh', 'name', 'äø­åŒ»åŸŗē”€ē†č®ŗē ”ē©¶ę‰€'),
(146508, 114368, 'en', 'name', 'Rajshahi University of Engineering and Technology'),
(146509, 114368, 'bn', 'name', 'ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(146510, 114369, 'fr', 'name', 'Institut de Recherche en Ɖtudes Théâtrales'),
(146511, 114370, 'es', 'name', 'Centro Uruguayo de ImagenologĆ­a Molecular'),
(146512, 114371, 'fr', 'name', 'Centre Roland Mousnier'),
(146513, 114372, 'en', 'name', 'Croatian Hydrographic Institute'),
(146514, 114372, 'hr', 'name', 'Hrvatski Hidrografski Institut'),
(146515, 114373, 'en', 'name', 'Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer'),
(146516, 114374, 'en', 'name', 'University of Kalisz'),
(146517, 114374, 'pl', 'name', 'Uniwersytet Kaliski im. Prezydenta Stanisława Wojciechowskiego'),
(146518, 114375, 'en', 'name', 'Winterthur Museum Garden and Library'),
(146519, 114376, 'en', 'name', 'Vila Gale Hotels'),
(146520, 114376, 'pt', 'name', 'Vila GalƩ (Portugal)'),
(146521, 114377, 'en', 'name', 'Genetics, Functional Genomics and Biotechnology'),
(146522, 114377, 'fr', 'name', 'GƩnƩtique, GƩnomique Fonctionnelle et Biotechnologies'),
(146523, 114378, 'id', 'name', 'Politeknik Enjinering Indorama'),
(146524, 114379, 'en', 'name', 'Community Health Systems - Tennova Healthcare - Clarksville'),
(146525, 114380, 'no_lang_code', 'name', 'asvin GmbH (Germany)'),
(146526, 114381, 'nl', 'name', 'Synaeda Psycho Medisch Centrum'),
(146527, 114382, 'en', 'name', 'National Institute of Measurement and Testing Technology'),
(146528, 114382, 'zh', 'name', 'äø­å›½ęµ‹čÆ•ęŠ€ęœÆē ”ē©¶é™¢'),
(146529, 114383, 'fr', 'name', 'CRIAL - Centre de Recherche Interuniversitaire sur l''AmƩrique Latine'),
(146530, 114384, 'en', 'name', 'British Institute of International and Comparative Law'),
(146531, 114385, 'en', 'name', 'Community Health Systems - Northwest Health - La Porte'),
(146532, 114386, 'en', 'name', 'European Association of Social Psychology'),
(146533, 114387, 'no_lang_code', 'name', 'Radiation Monitoring Devices (United States)'),
(146534, 114388, 'pt', 'name', 'Centro de Investigação em Organizações Mercados e Gestão Industrial'),
(146535, 114389, 'no_lang_code', 'name', 'Innovation Center Iceland'),
(146536, 114389, 'is', 'name', 'Nýskƶpunarmiưstƶư ƍslands'),
(146537, 114390, 'fr', 'name', 'ArchƩologie et ArchƩomƩtrie'),
(146538, 114391, 'pt', 'name', 'Sociedade Portuguesa de Ciências em Animais de Laboratório'),
(146539, 114392, 'en', 'name', 'Zero to Three'),
(146540, 114393, 'pt', 'name', 'Unidade Hospitalar de Santo Tirso'),
(146541, 114394, 'pt', 'name', 'Laboratório de Águas do Litoral Alentejano (Portugal)'),
(146542, 114394, 'en', 'name', 'Water Laboratory of the Alentejo Coast'),
(146543, 114395, 'en', 'name', 'National Institute for Biotechnology and Genetic Engineering'),
(146544, 114396, 'en', 'name', 'Capital and Coast District Health Board'),
(146545, 114397, 'en', 'name', 'Center for Responsible Travel'),
(146546, 114398, 'en', 'name', 'Institute of Metals and Technology'),
(146547, 114398, 'sl', 'name', 'InŔtitut za Kovinske Materiale in Tehnologije'),
(146548, 114399, 'en', 'name', 'Thermal Energy Technology Institute of the National Academy of Sciences of Ukraine'),
(146549, 114399, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплоенергетичних технологій ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(146550, 114400, 'en', 'name', 'Universiti Tun Abdul Razak'),
(146551, 114401, 'pt', 'name', 'Unidade Local de Saúde da Região de Aveiro'),
(146552, 114402, 'pt', 'name', 'Hospital Arcebispo João Crisóstomo Cantanhede'),
(146553, 114403, 'en', 'name', 'Sulaimani Polytechnic University'),
(146554, 114403, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ Ł¾Ū†Ł„ŪŒŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ Ų³Ł„ŪŽŁ…Ų§Ł†ŪŒ'),
(146555, 114404, 'fr', 'name', 'Laboratoire Dynamique du Langage'),
(146556, 114405, 'en', 'name', 'Sydney Institute of Marine Science'),
(146557, 114406, 'en', 'name', 'Novosibirsk State University of Economics and Management'),
(146558, 114406, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ ŠŠ˜ŠŠ„'),
(146559, 114407, 'en', 'name', 'NMT Technology Innovation and Consulting'),
(146560, 114407, 'pt', 'name', 'NMT Tecnologia Inovação e Consultoria SA (Portugal)'),
(146561, 114408, 'fr', 'name', 'Laboratoire Jean Kuntzmann'),
(146562, 114409, 'en', 'name', '"International business-information academy" Tuzla (IPI Academy)'),
(146563, 114409, 'hr', 'name', 'Internacionalna poslovno informaciona akademija Tuzla'),
(146564, 114410, 'fr', 'name', 'Laboratoire des Technologies de la MicroƩlectronique'),
(146565, 114411, 'pt', 'name', 'Millennium bcp (Portugal)'),
(146566, 114412, 'id', 'name', 'Universitas 17 Agustus 1945 Jakarta'),
(146567, 114413, 'pt', 'name', 'Unidade Local de Saude de Barcelos/Esposende'),
(146568, 114414, 'en', 'name', 'Aryabhatta Knowledge University'),
(146569, 114414, 'hi', 'name', 'ą¤†ą¤°ą„ą¤Æą¤­ą¤Ÿą„ą¤Ÿ ą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(146570, 114415, 'fr', 'name', 'Laboratoire de Physique Théorique et Modèles Statistiques'),
(146571, 114415, 'en', 'name', 'Laboratory of Theoretical Physics and Statistical Models'),
(146572, 114416, 'es', 'name', 'Hospital Universitario Infantil San JosƩ'),
(146573, 114416, 'en', 'name', 'University Children''s Hospital of San JosƩ'),
(146574, 114417, 'en', 'name', 'All-Russian Scientific Research Institute of Technical Physics'),
(146575, 114417, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технической физики'),
(146576, 114418, 'id', 'name', 'Politeknik Penerbangan Indonesia Curug'),
(146577, 114419, 'fr', 'name', 'Laboratoire d''OcƩanographie et du Climat : ExpƩrimentations et Approches NumƩriques'),
(146578, 114420, 'en', 'name', 'Southern Marine Science and Engineering Guangdong Laboratory (Guangzhou)'),
(146579, 114420, 'zh', 'name', 'å—ę–¹ęµ·ę“‹ē§‘å­¦äøŽå·„ēØ‹å¹æäøœēœå®žéŖŒå®¤ (å¹æå·ž)'),
(146580, 114421, 'sr', 'name', 'Centar za Promociju Nauke'),
(146581, 114421, 'en', 'name', 'Center for the promotion of science'),
(146582, 114422, 'fr', 'name', 'Institut de Recherche en Musicologie'),
(146583, 114423, 'en', 'name', 'Iziko Museums of South Africa'),
(146584, 114424, 'en', 'name', 'The London College'),
(146585, 114425, 'de', 'name', 'Klinikum Ingolstadt'),
(146586, 114426, 'fr', 'name', 'UnitƩ de Recherche en Chimie Organique et MacromolƩculaire'),
(146587, 114427, 'es', 'name', 'Instituto Milenio de BiologĆ­a Integrativa'),
(146588, 114427, 'en', 'name', 'Millennium Institute for Integrative Biology'),
(146589, 114428, 'en', 'name', 'Cognition Behaviour Technology'),
(146590, 114429, 'fr', 'name', 'Institut des langues et cultures d''Europe, AmƩrique, Afrique, Asie et Australie'),
(146591, 114430, 'en', 'name', 'Academy of Social Sciences'),
(146592, 114431, 'fr', 'name', 'Centre d''Ʃtudes des relations et des contacts linguistiques et littƩraires'),
(146593, 114432, 'en', 'name', 'Guru Angad Dev Veterinary and Animal Sciences University'),
(146594, 114432, 'pa', 'name', 'ਗੁਰੂ ਅੰਗਦ ਦੇਵ ąØµą©ˆąØŸąØØąØ°ą©€ ਅਤੇ ਐਨੀਮਲ ąØøąØ¾ąØ‡ą©°ąØøąØœąØ¼ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(146595, 114433, 'fr', 'name', 'Interactions HƓte-Greffon-Tumeur & IngƩnierie Cellulaire et GƩnique'),
(146596, 114434, 'fr', 'name', 'DƩpartement d''Informatique'),
(146597, 114435, 'en', 'name', 'Fukui University of Technology'),
(146598, 114435, 'ja', 'name', 'ē¦äŗ•å·„ę„­å¤§å­¦'),
(146599, 114436, 'en', 'name', 'Pakistan Kidney and Liver Institute and Research Center'),
(146600, 114436, 'ur', 'name', 'پاکستان Ś©ŚˆŁ†ŪŒ Ų§ŪŒŁ†Śˆ Ł„ŪŒŁˆŲ± Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(146601, 114437, 'en', 'name', 'Institute for Environmental Sciences'),
(146602, 114437, 'ja', 'name', 'ē’°å¢ƒē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(146603, 114438, 'en', 'name', 'Vinnytsia National Agrarian University'),
(146604, 114438, 'uk', 'name', 'Š’Š†ŠŠŠ˜Š¦Š¬ŠšŠ˜Š™ ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠ˜Š™ ŠŠ“Š ŠŠ ŠŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(146605, 114439, 'sv', 'name', 'FolkhƤlsans Forskningscentrum'),
(146606, 114440, 'fr', 'name', 'Laboratoire Jean-Alexandre DieudonnƩ'),
(146607, 114441, 'fr', 'name', 'MƩtaphysique, histoires, transformations, actualitƩs'),
(146608, 114442, 'en', 'name', 'University Clinic of Pulmonary and Allergic Diseases Golnik'),
(146609, 114443, 'en', 'name', 'Bayreuth Medical Center'),
(146610, 114443, 'de', 'name', 'Klinikum Bayreuth'),
(146611, 114444, 'en', 'name', 'Energy Institute'),
(146612, 114445, 'fr', 'name', 'Ɖquipe de Recherche Interlangue : MĆ©moires, IdentitĆ©s, Territoires'),
(146613, 114446, 'en', 'name', 'Community Health Systems - Poplar Bluff Regional Medical Center - Westwood'),
(146614, 114447, 'fr', 'name', 'Laboratoire Cultures Education SociƩtƩs'),
(146615, 114448, 'en', 'name', 'Fernando Pessoa Energy, Environment and Health Research Unit'),
(146616, 114448, 'pt', 'name', 'Unidade de Investigacao UFP em Energia Ambiente e Saude'),
(146617, 114449, 'fr', 'name', 'L''Institut de recherche Terry Fox'),
(146618, 114449, 'en', 'name', 'Terry Fox Research Institute'),
(146619, 114450, 'en', 'name', 'Hong Kong Science and Technology Parks Corporation'),
(146620, 114450, 'zh', 'name', 'é¦™ęøÆē§‘ęŠ€å›­å…¬åø'),
(146621, 114451, 'fr', 'name', 'Laboratoire de Conception, Optimisation et Modélisation des Systèmes'),
(146622, 114452, 'fr', 'name', 'Laboratoire des Sciences du Climat et de l''Environnement'),
(146623, 114453, 'en', 'name', 'The Open University of Japan');
INSERT INTO `ror_settings` VALUES
(146624, 114453, 'ja', 'name', '放送大学'),
(146625, 114454, 'en', 'name', 'Polis, The Jerusalem Institute of Languages and Humanities'),
(146626, 114455, 'en', 'name', 'Sustainability Institute'),
(146627, 114456, 'af', 'name', 'Het Zuid-Afrikaans Hospitaal en Diakonessenhuis'),
(146628, 114456, 'en', 'name', 'Zuid-Afrikaans Hospital'),
(146629, 114457, 'nl', 'name', 'Tjongerschans'),
(146630, 114458, 'pt', 'name', 'Centro UniversitƔrio do Espƭrito Santo'),
(146631, 114459, 'fr', 'name', 'Transversales'),
(146632, 114460, 'fr', 'name', 'UniversitƩ Bourgogne Franche-ComtƩ'),
(146633, 114461, 'id', 'name', 'Sekolah Tinggi Manajemen Informatika dan Komputer Pesat Nabire'),
(146634, 114462, 'en', 'name', 'Castel San Giovanni Hospital'),
(146635, 114462, 'it', 'name', 'Ospedale di Castel San Giovanni'),
(146636, 114463, 'fr', 'name', 'Unité de Modélisation Mathématique et Informatique des Systèmes Complexes'),
(146637, 114464, 'fr', 'name', 'Chimie de la Matière Condensée de Paris'),
(146638, 114465, 'fr', 'name', 'Agence Nationale de SƩcuritƩ du MƩdicament et des Produits de SantƩ'),
(146639, 114466, 'fr', 'name', 'Logiques de l''agir'),
(146640, 114467, 'en', 'name', 'Genetics and Developmental Biology'),
(146641, 114467, 'fr', 'name', 'GƩnƩtique et biologie du dƩveloppement'),
(146642, 114468, 'de', 'name', 'Deutsches Zentrum für Infektionsforschung'),
(146643, 114468, 'en', 'name', 'German Center for Infection Research'),
(146644, 114469, 'en', 'name', 'Jožef Stefan International Postgraduate School'),
(146645, 114470, 'fr', 'name', 'Laboratoire International de Recherches en Arts'),
(146646, 114471, 'pt', 'name', 'Unidade Local de Saúde de TrÔs-os-Montes e Alto Douro'),
(146647, 114472, 'en', 'name', 'Catholic University of Health and Allied Sciences'),
(146648, 114473, 'en', 'name', 'Batanghari University'),
(146649, 114473, 'id', 'name', 'Universitas Batanghari'),
(146650, 114474, 'en', 'name', 'Community Health Systems - Northeast Regional Medical Center'),
(146651, 114475, 'en', 'name', 'Suzhou Research Institute'),
(146652, 114476, 'bs', 'name', 'Institut za javno zdravlje Vojvodine'),
(146653, 114476, 'en', 'name', 'Institute of Public Health of Vojvodina'),
(146654, 114477, 'pt', 'name', 'Fundação de Apoio à Universidade Federal de São Paulo'),
(146655, 114478, 'en', 'name', 'Center for Southeast Asian Studies'),
(146656, 114478, 'fr', 'name', 'Centre Asie du Sud-Est'),
(146657, 114479, 'en', 'name', 'Center for the History of "Space and Culture"'),
(146658, 114479, 'fr', 'name', 'Centre d''Histoire ā€œEspaces et Culturesā€'),
(146659, 114480, 'fr', 'name', 'Centre d''Etudes Linguistiques'),
(146660, 114481, 'fr', 'name', 'Direction des Applications Militaires'),
(146661, 114482, 'de', 'name', 'Thüringer Landessternwarte Tautenburg'),
(146662, 114483, 'en', 'name', 'Community Health Systems - Crestwood Medical Center'),
(146663, 114484, 'en', 'name', 'PRIST University'),
(146664, 114485, 'nl', 'name', 'Dialyse Centrum Groningen'),
(146665, 114486, 'en', 'name', 'Broermann Medical Innovation Award'),
(146666, 114486, 'de', 'name', 'Broermann gemeinnützige Gesellschaft mit beschränkter Haftung'),
(146667, 114487, 'en', 'name', 'Geodetic Institute of Slovenia'),
(146668, 114488, 'en', 'name', 'Silesian Center for Heart Disease'),
(146669, 114489, 'fr', 'name', 'Laboratoire de Tribologie et Dynamique des SystĆØmes'),
(146670, 114489, 'en', 'name', 'Tribology and Systems Dynamics Laboratory'),
(146671, 114490, 'pt', 'name', 'Banco Finantia (Portugal)'),
(146672, 114491, 'pt', 'name', 'Unidade de Cuidados Paliativos de Vila Pouca de Aguiar'),
(146673, 114492, 'pt', 'name', 'Museu da Faculdade de Belas Artes da Universidade do Porto'),
(146674, 114493, 'en', 'name', 'EIM - European Institute of Management'),
(146675, 114494, 'en', 'name', 'Griffith University'),
(146676, 114495, 'en', 'name', 'Utkal University'),
(146677, 114495, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤•ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(146678, 114496, 'pt', 'name', 'Centro de Estudos de LinguĆ­stica Geral e Aplicada'),
(146679, 114497, 'en', 'name', 'Heidelberg Academy of Sciences and Humanities'),
(146680, 114497, 'de', 'name', 'Heidelberger Akademie der Wissenschaften'),
(146681, 114498, 'fr', 'name', 'Laboratoire de Glycochimie, des Antimicrobiens et des Agroressources'),
(146682, 114498, 'en', 'name', 'Laboratory Glycochemistry, of Antimicrobials and Agroressources'),
(146683, 114499, 'fr', 'name', 'Chirurgie et extrƩmitƩ cƩphalique, caractƩrisation morphologique et fonctionnelle'),
(146684, 114500, 'en', 'name', 'University Hospital of Larissa'),
(146685, 114501, 'fr', 'name', 'UMR DƩveloppement et SociƩtƩs'),
(146686, 114502, 'fr', 'name', 'Laboratoire de MathƩmatiques AppliquƩes du Havre'),
(146687, 114503, 'fr', 'name', 'Laboratoire des Sciences pour la Conception, l''Optimisation et la Production'),
(146688, 114503, 'en', 'name', 'Laboratory of Grenoble for Sciences of Conception, Optimisation and Production'),
(146689, 114504, 'en', 'name', 'Japan Anti Tuberculosis Association'),
(146690, 114504, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗēµę øäŗˆé˜²ä¼š'),
(146691, 114505, 'fr', 'name', 'Centre d''Ʃtudes et de recherche sur les contentieux'),
(146692, 114506, 'en', 'name', 'RISE - Health Research Network'),
(146693, 114507, 'fr', 'name', 'Laboratoire Techniques, Territoires et SociƩtƩs'),
(146694, 114508, 'en', 'name', 'Karlovac University of Applied Sciences'),
(146695, 114508, 'hr', 'name', 'VeleučiliŔte u Karlovcu'),
(146696, 114509, 'cs', 'name', 'Sady svatƩho Prokopa s.r.o. (Czechia)'),
(146697, 114510, 'de', 'name', 'Assoziation ƶkologischer Lebensmittelherstellerinnen und -hersteller e.V.'),
(146698, 114511, 'en', 'name', 'Marienhospital Bottrop'),
(146699, 114512, 'fr', 'name', 'CollĆØge universitaire du nord'),
(146700, 114512, 'en', 'name', 'University College of the North'),
(146701, 114513, 'en', 'name', 'Bottlenose Dolphin Research Institute'),
(146702, 114514, 'nl', 'name', 'Medisch Centrum Leeuwarden'),
(146703, 114515, 'fr', 'name', 'FƩdƩration internationale des archives du film'),
(146704, 114515, 'en', 'name', 'International Federation of Film Archives'),
(146705, 114516, 'fr', 'name', 'Biologie, ingƩnierie et imagerie pour l''Ophtalmologie'),
(146706, 114517, 'fr', 'name', 'Laboratoire Quartz'),
(146707, 114518, 'ro', 'name', 'Institutul de Cercetari pentru Instrumentatie Analitica'),
(146708, 114518, 'en', 'name', 'Research Institute for Analytical Instrumentation'),
(146709, 114519, 'en', 'name', 'Satou Hospital'),
(146710, 114520, 'es', 'name', 'Instituto de GeofĆ­sica y AstronomĆ­a'),
(146711, 114521, 'fr', 'name', 'CEA Cadarache'),
(146712, 114522, 'en', 'name', 'Institute of Agrarian Resources and Regional Development NAASU'),
(146713, 114522, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрних Ń€ŠµŃŃƒŃ€ŃŃ–Š² та Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠŠŠŠ'),
(146714, 114523, 'en', 'name', 'LiveMore Occupational Health and Safety'),
(146715, 114523, 'pt', 'name', 'Quirónprevención (Portugal)'),
(146716, 114524, 'en', 'name', 'University of Global Health Equity'),
(146717, 114525, 'fr', 'name', 'Laboratoire AmiƩnois de MathƩmatique Fondamentale et AppliquƩe'),
(146718, 114526, 'es', 'name', 'Instituto de Investigaciones en EnergĆ­a no Convencional'),
(146719, 114527, 'en', 'name', 'National Institute for Health Development'),
(146720, 114527, 'et', 'name', 'Tervise Arengu Instituut'),
(146721, 114528, 'no_lang_code', 'name', 'CRSTRA'),
(146722, 114528, 'fr', 'name', 'Centre de Recherche Scientifique et Technique sur les RƩgions Arides'),
(146723, 114529, 'no_lang_code', 'name', 'Kleijnen Systematic Reviews (United Kingdom)'),
(146724, 114530, 'en', 'name', 'Genome Integrity, RNA and Cancer'),
(146725, 114530, 'fr', 'name', 'IntƩgritƩ du gƩnome, ARN et cancer'),
(146726, 114531, 'fr', 'name', 'Institut de Recherche en Energie Electrique de Nantes Atlantique'),
(146727, 114532, 'fr', 'name', 'Institut d''Histoire du Droit Jean Gaudemet'),
(146728, 114533, 'en', 'name', 'Isabela State University'),
(146729, 114534, 'en', 'name', 'Libyan Climate Change Research Center'),
(146730, 114534, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł„ŁŠŲØŁŠ لأبحاث تغير المناخ'),
(146731, 114535, 'fr', 'name', 'LAMO - LittƩratures Antiques et Modernes'),
(146732, 114536, 'en', 'name', 'Bacterial RNAs & Medicine'),
(146733, 114537, 'en', 'name', 'Northland District Health Board'),
(146734, 114538, 'en', 'name', 'Central Research Institute of Ferrous Metallurgy I P Bardina'),
(146735, 114538, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾ā€“ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ черной Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø им. И.П. БарГина'),
(146736, 114539, 'fr', 'name', 'Institut des GƩosciences de l''Environnement'),
(146737, 114539, 'en', 'name', 'Institute of Environmental Geosciences'),
(146738, 114540, 'en', 'name', 'D.A.V. P.G. College, Lucknow'),
(146739, 114540, 'mr', 'name', 'ą¤”ą„€ą„¦ą¤ą„¦ą¤µą„€ą„¦ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤²ą¤–ą¤Øą¤Š'),
(146740, 114541, 'fr', 'name', 'ThƩorie et Histoire des Arts et des LittƩratures de la ModernitƩ'),
(146741, 114542, 'fr', 'name', 'CEA DAM Ǝle-de-France'),
(146742, 114543, 'en', 'name', 'Brain Surgery Hospital Rawalpindi'),
(146743, 114544, 'fr', 'name', 'Laboratoire de Physique Théorique de la Matière Condensée'),
(146744, 114544, 'en', 'name', 'Theoretical physics of condensed matter'),
(146745, 114545, 'en', 'name', 'Klabat University'),
(146746, 114545, 'id', 'name', 'Universitas Klabat'),
(146747, 114546, 'en', 'name', 'Dwijendra University'),
(146748, 114546, 'id', 'name', 'Universitas Dwijendra'),
(146749, 114547, 'en', 'name', 'Ivanovo State Power University'),
(146750, 114547, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ивановский Š³Š¾ŃŃƒŠ“арственный ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’.И. Ленина'),
(146751, 114548, 'en', 'name', 'St Xavier’s College'),
(146752, 114549, 'fr', 'name', 'Laboratoire TIMC'),
(146753, 114549, 'en', 'name', 'Translational Innovation in Medicine and Complexity'),
(146754, 114550, 'en', 'name', 'China Academy of Engineering Physics'),
(146755, 114550, 'zh', 'name', '中国巄程物理研究院'),
(146756, 114551, 'de', 'name', 'Klinik Nette-Gut für Forensische Psychiatrie'),
(146757, 114552, 'pt', 'name', 'Escola Superior Artística do Porto - Guimarães'),
(146758, 114553, 'no_lang_code', 'name', 'Kafrelsheikh University'),
(146759, 114553, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© كفر Ų§Ł„Ų“ŁŠŲ®'),
(146760, 114554, 'en', 'name', 'Singlera'),
(146761, 114554, 'no_lang_code', 'name', 'Singlera (China)'),
(146762, 114554, 'zh', 'name', 'é¹®čæœē”Ÿē‰©'),
(146763, 114555, 'no_lang_code', 'name', 'Kuvempu University'),
(146764, 114555, 'hi', 'name', 'ą¤•ą„ą¤µą„‡ą¤‚ą¤Ŗą„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(146765, 114555, 'mr', 'name', 'ą¤•ą„ą¤µą„‡ą¤‚ą¤Ŗą„‚ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(146766, 114555, 'ta', 'name', 'ą®•ąÆą®µąÆ‡ą®®ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(146767, 114555, 'te', 'name', 'కువెంపు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(146768, 114555, 'kn', 'name', 'ಕುವೆಂಪು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(146769, 114556, 'it', 'name', 'Ospedale Valduce'),
(146770, 114557, 'pt', 'name', 'Museu de História Natural do Funchal'),
(146771, 114558, 'no_lang_code', 'name', 'Deerfield (United States)'),
(146772, 114559, 'en', 'name', 'ADS Biotec Inc.'),
(146773, 114559, 'no_lang_code', 'name', 'ADS Biotec Inc. (United States)'),
(146774, 114560, 'en', 'name', 'Community Health Systems - Merit Health Rankin'),
(146775, 114561, 'fr', 'name', 'Institut de Recherche en Gestion des Organisations'),
(146776, 114562, 'nl', 'name', 'ZorgSaam'),
(146777, 114563, 'en', 'name', 'Integrated Biobank of Luxembourg'),
(146778, 114564, 'fr', 'name', 'Bases, Corpus, Langage'),
(146779, 114565, 'pt', 'name', 'Universidade da Beira Interior'),
(146780, 114565, 'en', 'name', 'University of Beira Interior'),
(146781, 114566, 'en', 'name', 'Medan Area University'),
(146782, 114566, 'id', 'name', 'Universitas Medan Area'),
(146783, 114567, 'en', 'name', 'Gates of the Arctic National Park and Preserve'),
(146784, 114567, 'es', 'name', 'Parque nacional y reserva Puertas del Ɓrtico'),
(146785, 114568, 'fr', 'name', 'Arts / Langages : Transitions et Relations'),
(146786, 114568, 'en', 'name', 'Arts/Languages: Transitions and Relationships'),
(146787, 114569, 'fr', 'name', 'Transformations Intégrées de la Matière Renouvelable'),
(146788, 114570, 'en', 'name', 'Centre of Excellence for Appreciation of Mediterranean Resources'),
(146789, 114570, 'pt', 'name', 'Centro de Excelência para a Valorização dos Recursos Mediterrânicos (Portugal)'),
(146790, 114571, 'en', 'name', 'Sapir College'),
(146791, 114571, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ הפיר'),
(146792, 114572, 'pt', 'name', 'Hipocrates Livros Tecnicos (Portugal)'),
(146793, 114572, 'en', 'name', 'Hippocrates Technical Books'),
(146794, 114573, 'en', 'name', 'Liverpool College'),
(146795, 114574, 'pt', 'name', 'Hospital Dr JosƩ Maria Grande'),
(146796, 114575, 'en', 'name', 'Rajarajeswari Medical College and Hospital'),
(146797, 114576, 'en', 'name', 'Biomolecules: Design, Isolation, Synthesis'),
(146798, 114576, 'fr', 'name', 'Biomolécules : Conception, Isolement, Synthèse'),
(146799, 114577, 'es', 'name', 'Hospital Privado'),
(146800, 114578, 'no_lang_code', 'name', 'Hektoen Institute'),
(146801, 114579, 'fr', 'name', 'Institut de gƩnƩtique et de biologie molƩculaire et cellulaire'),
(146802, 114579, 'en', 'name', 'Institute of Genetics and Molecular and Cellular Biology'),
(146803, 114580, 'en', 'name', 'Mahatma Gandhi Arts, Science & Late Nasaruddhinbhai Panjwani Commerce College'),
(146804, 114581, 'en', 'name', 'Laboratory for Instrumentation, Biomedical Engineering and Radiation Physics'),
(146805, 114581, 'pt', 'name', 'Laboratório de Instrumentação Engenharia Biomédica e Física da Radiação'),
(146806, 114582, 'en', 'name', 'Kyoritsu Women''s University'),
(146807, 114582, 'ja', 'name', '共立儳子大学'),
(146808, 114583, 'en', 'name', 'Institute of Economic and Social Development'),
(146809, 114583, 'es', 'name', 'Instituto de Desarrollo Económico y Social'),
(146810, 114584, 'nl', 'name', 'Rijkswaterstaat'),
(146811, 114585, 'en', 'name', 'Center for Scientific Research and Higher Education at Ensenada'),
(146812, 114585, 'es', 'name', 'Centro de Investigación Científica y de Educación Superior de Ensenada'),
(146813, 114586, 'it', 'name', 'Presidio Ospedaliero'),
(146814, 114587, 'en', 'name', 'West African Institute of Public Health'),
(146815, 114588, 'pt', 'name', 'Centro de Investigação Interdisciplinar em Saúde Centro Regional do Porto'),
(146816, 114589, 'en', 'name', 'Institute of Science and Inoovation for Bio-Sustainability'),
(146817, 114589, 'pt', 'name', 'Instituto de Ciência e Inovação para a Bio-Sustentabilidade'),
(146818, 114590, 'en', 'name', 'Laboratory for Instrumentation, Biomedical Engineering and Radiation Physics'),
(146819, 114590, 'pt', 'name', 'Laboratório de Instrumentação Engenharia Biomédica e Física da Radiação'),
(146820, 114591, 'en', 'name', 'Graduate School USA'),
(146821, 114592, 'pt', 'name', 'Fundação Friedrich Ebert'),
(146822, 114593, 'pt', 'name', 'Fundação Carlos Chagas'),
(146823, 114594, 'en', 'name', 'Agricultural institute of Slovenia'),
(146824, 114595, 'en', 'name', 'Nepal Medical College Teaching Hospital'),
(146825, 114595, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤²ą„‡ą¤œ'),
(146826, 114596, 'en', 'name', 'New Display Promotional Solutions'),
(146827, 114596, 'pt', 'name', 'New Display SoluƧƵes Promocionais (Portugal)'),
(146828, 114597, 'en', 'name', 'Wellington Hospital'),
(146829, 114598, 'fr', 'name', 'Centre de Recherche en Ɖducation de Nantes'),
(146830, 114599, 'en', 'name', 'Environmental and Water Resources Engineering'),
(146831, 114600, 'en', 'name', 'Osaka University of Economics'),
(146832, 114600, 'ja', 'name', '大阪経済大学'),
(146833, 114601, 'en', 'name', 'Community Health Systems - Northwest Medical Center - Bentonville'),
(146834, 114602, 'en', 'name', 'Sri Rajiv Gandhi College of Dental Sciences and Hospital'),
(146835, 114603, 'es', 'name', 'Universidad del AtlƔntico'),
(146836, 114604, 'fr', 'name', 'Centre de Recherche sur l''Espagne Contemporaine XVIIIe-XIXe-XXe siĆØcles'),
(146837, 114605, 'en', 'name', 'City of Mannheim'),
(146838, 114605, 'de', 'name', 'Stadt Mannheim'),
(146839, 114606, 'de', 'name', 'StƤdtisches Klinikum Solingen'),
(146840, 114607, 'en', 'name', 'Copenhagen Business Academy'),
(146841, 114608, 'en', 'name', 'TMC, a Unilabs company (Spain)'),
(146842, 114609, 'en', 'name', 'Ryazan State Medical University named after Academician I.P. Pavlov'),
(146843, 114609, 'ru', 'name', 'Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика I.P. Павлов'),
(146844, 114610, 'id', 'name', 'Institut Pertanian Stiper'),
(146845, 114611, 'en', 'name', 'Ethiopian Public Health Institute'),
(146846, 114612, 'en', 'name', 'ESSA Higher School of Welding and Welding Application'),
(146847, 114612, 'fr', 'name', 'Ɖcole supĆ©rieure du soudage et de ses applications'),
(146848, 114613, 'fr', 'name', 'CLESTHIA - Langage, systĆØmes, discours'),
(146849, 114614, 'fr', 'name', 'Institut des Sciences MolƩculaires d''Orsay'),
(146850, 114615, 'en', 'name', 'Volgograd State Pedagogical University'),
(146851, 114615, 'ru', 'name', 'ВолгограГский Š³Š¾ŃŃƒŠ“арственный ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(146852, 114616, 'en', 'name', 'Community Health Systems - Merit Health Central'),
(146853, 114617, 'fr', 'name', 'Laboratoire Ondes et Milieux Complexes'),
(146854, 114618, 'en', 'name', 'Nebrija University'),
(146855, 114618, 'es', 'name', 'Universidad Nebrija'),
(146856, 114619, 'id', 'name', 'Politeknik Negeri Banyuwangi'),
(146857, 114620, 'de', 'name', 'Göttingen Campus Institut für Dynamic biologischer Netzwerke'),
(146858, 114620, 'en', 'name', 'Gƶttingen Campus Institute for Dynamics of Biological Networks'),
(146859, 114621, 'fr', 'name', 'Institut de Recherche sur la Fusion par confinement MagnƩtique'),
(146860, 114622, 'pt', 'name', 'Centro de Investigação em Sociologia e Antropologia Augusto da Silva'),
(146861, 114623, 'en', 'name', 'Yangquan Coal Industry (Group) General Hospital'),
(146862, 114623, 'zh', 'name', 'é˜³ę³‰ē…¤äøšļ¼ˆé›†å›¢ļ¼‰ęœ‰é™č“£ä»»å…¬åøę€»åŒ»é™¢'),
(146863, 114624, 'en', 'name', 'Ensigaia - Education and Training'),
(146864, 114624, 'pt', 'name', 'Ensigaia - Educação e Formação (Portugal)'),
(146865, 114625, 'fr', 'name', 'Centre de Calcul de l’Institut National de Physique NuclĆ©aire et de Physique des Particules'),
(146866, 114625, 'en', 'name', 'IN2P3’s Computing Centre'),
(146867, 114626, 'fr', 'name', 'Laboratoire d''ƩpistƩmologie et didactiques des disciplines'),
(146868, 114627, 'en', 'name', 'National Veterinary Research Institute'),
(146869, 114628, 'fr', 'name', 'Laboratoire Pacte'),
(146870, 114628, 'en', 'name', 'Pacte Laboratory'),
(146871, 114629, 'fr', 'name', 'Centre d’Etudes et de Recherches de Sciences Administratives et Politiques'),
(146872, 114630, 'fr', 'name', 'Laboratoire de Physique des Gaz et des Plasmas'),
(146873, 114631, 'es', 'name', 'Gobierno de Colombia'),
(146874, 114632, 'en', 'name', 'Laboratory energy and environmental transitions'),
(146875, 114632, 'fr', 'name', 'Transitions EnergƩtiques et Environnementales'),
(146876, 114633, 'en', 'name', 'Kanagawa Institute of Technology'),
(146877, 114633, 'ja', 'name', 'ē„žå„ˆå·å·„ē§‘å¤§å­¦'),
(146878, 114634, 'fr', 'name', 'Laboratoire de sociologie, philosophie et anthropologie politiques'),
(146879, 114635, 'en', 'name', 'Sussex County Community College'),
(146880, 114636, 'en', 'name', 'Angarsk State Technical Academy'),
(146881, 114636, 'ru', 'name', 'ŠŠ½Š³Š°Ń€ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¢ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(146882, 114637, 'en', 'name', 'Dean McGee Eye Institute'),
(146883, 114638, 'en', 'name', 'Chettinad Health City'),
(146884, 114639, 'en', 'name', 'Interdisciplinary Centre for Security, Reliability and Trust'),
(146885, 114640, 'no_lang_code', 'name', 'SAIC-GM-Wuling (China)'),
(146886, 114640, 'zh', 'name', 'äøŠę±½é€šē”Øäŗ”č±ę±½č½¦č‚”ä»½ęœ‰é™å…¬åø'),
(146887, 114641, 'en', 'name', 'Smith Family'),
(146888, 114642, 'en', 'name', 'Andean Simón Bolívar University, Ecuador'),
(146889, 114642, 'es', 'name', 'Universidad Andina Simón Bolívar, Sede Ecuador'),
(146890, 114643, 'en', 'name', 'Ninghai County First Hospital'),
(146891, 114643, 'zh', 'name', 'å®ęµ·åŽæē¬¬äø€åŒ»é™¢'),
(146892, 114644, 'en', 'name', 'New Mexico State University'),
(146893, 114644, 'es', 'name', 'Universidad Estatal de Nuevo MƩxico'),
(146894, 114644, 'fr', 'name', 'UniversitĆ© d''Ɖtat du nouveau-mexique'),
(146895, 114645, 'en', 'name', 'Center for Research in Nursing'),
(146896, 114645, 'pt', 'name', 'Centro de Investigação em Enfermagem'),
(146897, 114646, 'en', 'name', 'Laboratory Dr. Wisplinghoff'),
(146898, 114647, 'en', 'name', 'American College'),
(146899, 114648, 'fr', 'name', 'Laboratoire de RƩactivitƩ de Surface'),
(146900, 114649, 'no_lang_code', 'name', 'John von Neumann University'),
(146901, 114649, 'hu', 'name', 'Neumann JƔnos Egyetem'),
(146902, 114650, 'fr', 'name', 'Laboratoire de Chimie-Physique MacromolƩculaire'),
(146903, 114651, 'en', 'name', 'Kerala University of Fisheries and Ocean Studies'),
(146904, 114652, 'pt', 'name', 'Unilabs (Portugal)'),
(146905, 114653, 'fr', 'name', 'Institut de GƩnƩtique MolƩculaire de Montpellier'),
(146906, 114653, 'en', 'name', 'Institute of Molecular Genetics of Montpellier'),
(146907, 114654, 'en', 'name', 'St Andrew''s Healthcare'),
(146908, 114655, 'sk', 'name', 'Považské múzeum'),
(146909, 114656, 'en', 'name', 'Modern University for Information and Technology'),
(146910, 114656, 'ar', 'name', 'الجامعة Ų§Ł„Ų­ŲÆŁŠŲ«Ų© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ'),
(146911, 114657, 'es', 'name', 'Hospital Universitario Nacional de Colombia'),
(146912, 114658, 'en', 'name', 'Community Health Systems - North Okaloosa Medical Center'),
(146913, 114659, 'en', 'name', 'Gunadarma University'),
(146914, 114659, 'id', 'name', 'Universitas Gunadarma'),
(146915, 114660, 'pt', 'name', 'Laboratório de Medidas Eléctricas'),
(146916, 114661, 'fr', 'name', 'Laboratoire de Physique et d’Étude des MatĆ©riaux'),
(146917, 114661, 'en', 'name', 'Laboratory of Physics and Material studies'),
(146918, 114662, 'en', 'name', 'North Carolina Museum of Natural Sciences'),
(146919, 114663, 'en', 'name', 'Japan Automobile Research Institute'),
(146920, 114663, 'ja', 'name', 'ę—„ęœ¬č‡Ŗå‹•č»Šē ”ē©¶ę‰€'),
(146921, 114664, 'pt', 'name', 'Universidade Fernando Pessoa Universidade Virtual'),
(146922, 114665, 'pt', 'name', 'Fundação Carlos Chagas Filho de Amparo à Pesquisa do Estado do Rio de Janeiro'),
(146923, 114666, 'en', 'name', 'ILMA University'),
(146924, 114666, 'ur', 'name', 'علما ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(146925, 114667, 'fr', 'name', 'Ɖcole Nationale d''IngĆ©nieurs de Tarbes'),
(146926, 114668, 'en', 'name', 'Community Health Systems - Merit Health River Region'),
(146927, 114669, 'en', 'name', 'Southern Marine Science and Engineering Guangdong Laboratory (Zhuhai)'),
(146928, 114669, 'zh', 'name', 'å—ę–¹ęµ·ę“‹ē§‘å­¦äøŽå·„ēØ‹å¹æäøœēœå®žéŖŒå®¤ (ē ęµ·)'),
(146929, 114670, 'en', 'name', 'Lyon College'),
(146930, 114671, 'fr', 'name', 'Laboratoire de MƩcanique des Fluides de Lille - KampƩ de FƩriet'),
(146931, 114671, 'en', 'name', 'Lille Fluid Mechanics Laboratory - KampƩ de FƩriet'),
(146932, 114672, 'en', 'name', 'Ministry of Interior of the Republic of Serbia'),
(146933, 114672, 'sr', 'name', 'Mинистарство ŃƒŠ½ŃƒŃ‚Ń€Š°ŃˆŃšŠøŃ… послова'),
(146934, 114673, 'no_lang_code', 'name', 'Life & Brain (Germany)'),
(146935, 114674, 'fr', 'name', 'Institut de Science et d''IngƩnierie SupramolƩculaires'),
(146936, 114675, 'fr', 'name', 'Laboratoire de l''AtmosphĆØre et des Cyclones'),
(146937, 114676, 'en', 'name', 'University of Technology and Applied Sciences — Ibri'),
(146938, 114677, 'fr', 'name', 'Institut Parisien de Chimie MolƩculaire'),
(146939, 114678, 'en', 'name', 'Ministry of Water and Irrigation'),
(146940, 114678, 'sw', 'name', 'Wizara ya Maji na Umwagiliaji'),
(146941, 114679, 'de', 'name', 'Segeberger Kliniken'),
(146942, 114680, 'pt', 'name', 'Unidade Local de Saúde da Região de Leiria'),
(146943, 114681, 'en', 'name', 'Kovai Medical Center and Hospital'),
(146944, 114682, 'en', 'name', 'Center for 19th-Century History'),
(146945, 114682, 'fr', 'name', 'Centre d''histoire du XIXe siĆØcle'),
(146946, 114682, 'es', 'name', 'Centro de Historia del Siglo XIX'),
(146947, 114683, 'en', 'name', 'Kavli Institute for Theoretical Physics'),
(146948, 114684, 'en', 'name', 'Singapore Maritime Institute'),
(146949, 114685, 'en', 'name', 'Jerusalem College of Technology'),
(146950, 114685, 'he', 'name', '×”×ž×Ø×›×– האקדמי לב'),
(146951, 114686, 'fr', 'name', 'UniversitƩ des Sciences, des Techniques et des Technologies de Bamako'),
(146952, 114687, 'fr', 'name', 'BiomƩcanique et BioingƩnierie'),
(146953, 114688, 'en', 'name', 'Croatian Forest Research Institute'),
(146954, 114689, 'en', 'name', 'Community Health Systems - Physicians Regional Healthcare System - Pine Ridge'),
(146955, 114690, 'fr', 'name', 'Groupe d''Ɖtude des MĆ©thodes de l''Analyse Sociologique de la Sorbonne'),
(146956, 114691, 'de', 'name', 'St. Josef Krankenhaus'),
(146957, 114692, 'en', 'name', 'Community Health Systems - Northwest Medical Center - Springdale'),
(146958, 114693, 'en', 'name', 'Community Health Systems - Northwest Medical Center - Houghton'),
(146959, 114694, 'en', 'name', 'AIDS United'),
(146960, 114695, 'en', 'name', 'National Agency for Science and Engineering Infrastructure'),
(146961, 114696, 'no_lang_code', 'name', 'Lingaya''s Vidyapeeth'),
(146962, 114697, 'pt', 'name', 'Universidade de Lisboa Instituto do Oriente'),
(146963, 114698, 'en', 'name', 'Roscoff Marine Station'),
(146964, 114698, 'fr', 'name', 'Station Biologique de Roscoff'),
(146965, 114699, 'fr', 'name', 'Ɖtude et Ɖdition de Textes MĆ©diĆ©vaux'),
(146966, 114700, 'en', 'name', 'Meo Carbon Solutions GmbH (Germany)'),
(146967, 114701, 'en', 'name', 'ADSTEC (Japan)'),
(146968, 114701, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ¼ćƒ‡ć‚£ćƒ¼ć‚Øć‚¹ćƒ†ćƒƒć‚Æ'),
(146969, 114702, 'pl', 'name', 'Zachodniopomorskie Centrum Onkologii'),
(146970, 114703, 'fr', 'name', 'Laboratoire de GƩnie des ProcƩdƩs Catalytiques'),
(146971, 114704, 'en', 'name', 'Tribhuvan University Teaching Hospital'),
(146972, 114705, 'en', 'name', 'Grenoble Computer Science Laboratory'),
(146973, 114705, 'fr', 'name', 'Laboratoire d''Informatique de Grenoble'),
(146974, 114706, 'no_lang_code', 'name', 'Vila Natura d.o.o. (Slovenia)'),
(146975, 114707, 'en', 'name', 'Clinical Center of Vojvodina'),
(146976, 114707, 'sr', 'name', 'Klinički centar Vojvodine'),
(146977, 114708, 'en', 'name', 'The Research and Education Network for Uganda (RENU)'),
(146978, 114709, 'en', 'name', 'University of Human Development'),
(146979, 114709, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„ŲØŲ“Ų±ŁŠŲ©'),
(146980, 114709, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ ŚÆŪ•Ų“Ū•Ł¾ŪŽŲÆŲ§Ł†ŪŒ Ł…Ų±Ū†ŪŒŪŒ'),
(146981, 114710, 'en', 'name', 'Community Health Systems - Merit Health Natchez'),
(146982, 114711, 'rw', 'name', 'Minisiteri y''Ubuzima'),
(146983, 114711, 'en', 'name', 'Ministry of Health'),
(146984, 114711, 'fr', 'name', 'Ministère de la Santé'),
(146985, 114712, 'fr', 'name', 'Ecole des Neurosciences de Bordeaux'),
(146986, 114713, 'en', 'name', 'Saint Jude Medical Portugal (Portugal)'),
(146987, 114714, 'pt', 'name', 'Congregação das Irmãs do Instituto de Santa Doroteia'),
(146988, 114715, 'en', 'name', 'Johns Hopkins University'),
(146989, 114715, 'es', 'name', 'Universidad Johns Hopkins'),
(146990, 114716, 'en', 'name', 'Biomedical Research Networking Center in Bioengineering, Biomaterials and Nanomedicine'),
(146991, 114716, 'es', 'name', 'Centro de Investigación Biomédica en Red en Bioingeniería, Biomateriales y Nanomedicina'),
(146992, 114717, 'id', 'name', 'Universitas Atma Jaya Makassar'),
(146993, 114718, 'en', 'name', 'Al-Quds University'),
(146994, 114718, 'he', 'name', '××•× ×™×‘×Ø×”×™×˜×Ŗ אל-קודה'),
(146995, 114718, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القدس'),
(146996, 114719, 'fr', 'name', 'Laboratoire de PlanƩtologie et GƩosciences'),
(146997, 114719, 'en', 'name', 'Laboratory of Planetology and Geosciences'),
(146998, 114720, 'fr', 'name', 'Centre Lucien Febvre'),
(146999, 114721, 'id', 'name', 'Universitas Mandiri'),
(147000, 114722, 'en', 'name', 'Griffin Hospital'),
(147001, 114723, 'fr', 'name', 'Laboratoire de MathƩmatiques de Reims'),
(147002, 114724, 'id', 'name', 'Universitas Bangun Nusantara'),
(147003, 114725, 'en', 'name', 'Bay Atlantic University'),
(147004, 114726, 'fr', 'name', 'Centre Hospitalier du Mans'),
(147005, 114727, 'fr', 'name', 'Temps, espaces, langages, Europe mƩridionale, MƩditerranƩe'),
(147006, 114728, 'pt', 'name', 'CQS Unipessoal (Portugal)'),
(147007, 114729, 'no_lang_code', 'name', 'Mondragon Corporation (Spain)'),
(147008, 114730, 'en', 'name', 'Minneapolis Park and Recreation Board'),
(147009, 114731, 'ms', 'name', 'Jabatan Perkhidmatan Veterinar'),
(147010, 114732, 'en', 'name', 'Formalpress Publications and Marketing'),
(147011, 114732, 'pt', 'name', 'Formalpress PublicaƧƵes e Marketing (Portugal)'),
(147012, 114733, 'en', 'name', 'Maritime Research Institute Netherlands'),
(147013, 114734, 'en', 'name', 'Andijan State Institute of Foreign Languages'),
(147014, 114734, 'uz', 'name', 'Andijon davlat chet tillari instituti'),
(147015, 114735, 'pt', 'name', 'Centro de Investigação Interdisciplinar em Justiça'),
(147016, 114736, 'no', 'name', 'Sikt – Kunnskapssektorens tenesteleverandĆør'),
(147017, 114736, 'en', 'name', 'Sikt – Norwegian Agency for Shared Services in Education and Research'),
(147018, 114737, 'pt', 'name', 'Inteli Lisboa'),
(147019, 114738, 'en', 'name', 'Development, Adaptation and Ageing'),
(147020, 114738, 'fr', 'name', 'DƩveloppement Adaptation et Vieillissement'),
(147021, 114739, 'pt', 'name', 'Centro de Estudos e Peritagem em Auditoria e Contabilidade'),
(147022, 114740, 'en', 'name', 'Kiryu University'),
(147023, 114740, 'ja', 'name', 'ę”ē”Ÿå¤§å­¦'),
(147024, 114741, 'fr', 'name', 'Centre d''Excellence en Technologies de l''Information et de la Communication'),
(147025, 114742, 'en', 'name', 'Swiss Epilepsy Center'),
(147026, 114743, 'fr', 'name', 'Laboratoire Physiologie Cellulaire & VƩgƩtale'),
(147027, 114744, 'fr', 'name', 'Institut de Recherche Interdisciplinaire de Grenoble'),
(147028, 114745, 'fr', 'name', 'Institut de Recherche Montesquieu'),
(147029, 114746, 'fr', 'name', 'Institut de MathƩmatiques de Bourgogne'),
(147030, 114747, 'en', 'name', 'Camille Jordan Institute'),
(147031, 114747, 'fr', 'name', 'Institut Camille Jordan'),
(147032, 114748, 'fr', 'name', 'Centre de recherches sur les pays lusophones'),
(147033, 114749, 'pt', 'name', 'Centro de Estudos ClƔssicos'),
(147034, 114750, 'en', 'name', 'Community Health Systems - Oro Valley Hospital'),
(147035, 114751, 'en', 'name', 'St. Luke''s Hospital'),
(147036, 114752, 'fr', 'name', 'Institut d''Ʃtudes ibƩriques et ibƩrico-amƩricaines'),
(147037, 114752, 'en', 'name', 'Institute of Iberian and Iberian-American Studies'),
(147038, 114753, 'pt', 'name', 'Unidade Local de SaĆŗde do Alentejo Central'),
(147039, 114754, 'en', 'name', 'Las Cumbres Observatory Global Telescope Network'),
(147040, 114755, 'en', 'name', 'European Faculty of Law'),
(147041, 114755, 'sl', 'name', 'Evropska pravna fakulteta'),
(147042, 114756, 'en', 'name', 'University College of Bahrain'),
(147043, 114756, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(147044, 114757, 'en', 'name', 'Health Polytechnic of East Borneo'),
(147045, 114757, 'id', 'name', 'Poltekkes Kemenkes Kalimantan Timur'),
(147046, 114758, 'en', 'name', 'Language Space School'),
(147047, 114759, 'en', 'name', 'American Society For Testing and Materials'),
(147048, 114760, 'pt', 'name', 'Centro de Ɖtica Económica e Empresarial'),
(147049, 114761, 'en', 'name', 'Soils, Solids, Structures, Risks'),
(147050, 114761, 'fr', 'name', 'Sols, Solides, Structures, Risques'),
(147051, 114762, 'en', 'name', 'School Center Novo mesto'),
(147052, 114762, 'sl', 'name', 'Å olski center Novo mesto'),
(147053, 114763, 'fr', 'name', 'Immunologie et NeurogƩnƩtique ExpƩrimentales et MolƩculaires'),
(147054, 114764, 'en', 'name', 'OpenScienceLab'),
(147055, 114765, 'id', 'name', 'Institut Teknologi Indonesia'),
(147056, 114766, 'fr', 'name', 'Laboratoire Parole et Langage'),
(147057, 114767, 'en', 'name', 'Seoane Hotel Society'),
(147058, 114767, 'pt', 'name', 'Sociedade Hoteleira Seoane (Portugal)'),
(147059, 114768, 'en', 'name', 'Wildfowl & Wetlands Trust'),
(147060, 114769, 'pt', 'name', 'Universidade dos AƧores'),
(147061, 114769, 'en', 'name', 'University of the Azores'),
(147062, 114770, 'no_lang_code', 'name', 'TARH (Portugal)'),
(147063, 114770, 'pt', 'name', 'Terra, Ambiente e Recursos HĆ­dricos foi constituĆ­da'),
(147064, 114771, 'fr', 'name', 'Centre Pasteur du Cameroun'),
(147065, 114772, 'en', 'name', 'Biomedical Research and Training Institute'),
(147066, 114773, 'en', 'name', 'V. T. Choksi Sarvajanik College of Education'),
(147067, 114774, 'en', 'name', 'Cambridge Scholars Publishing'),
(147068, 114775, 'en', 'name', 'Leibniz Association'),
(147069, 114775, 'de', 'name', 'Leibniz-Gemeinschaft'),
(147070, 114776, 'no_lang_code', 'name', 'Health Outcomes Solutions (United States)'),
(147071, 114777, 'en', 'name', 'International Institute of Information Technology'),
(147072, 114777, 'hi', 'name', 'ą¤…ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤Ŗą„ą¤£ą„‡'),
(147073, 114778, 'en', 'name', 'VSL Dutch Metrology Institute'),
(147074, 114778, 'nl', 'name', 'VSL Nationaal Metrologisch Instituut'),
(147075, 114779, 'fr', 'name', 'Laboratoire GƩomatique et foncier'),
(147076, 114780, 'pt', 'name', 'Observatório Astronómico Prof Manuel de Barros'),
(147077, 114781, 'fr', 'name', 'Institut Jean Le Rond d''Alembert'),
(147078, 114782, 'en', 'name', 'Institute of Cognitive and Behavioural Neurology'),
(147079, 114782, 'es', 'name', 'Instituto de NeurologĆ­a Cognitiva'),
(147080, 114783, 'fr', 'name', 'Laboratoire de MathƩmatiques de Versailles'),
(147081, 114784, 'en', 'name', 'International Institute for Central Asian Studies'),
(147082, 114785, 'es', 'name', 'Servicio de Pesca y Vida Silvestre de los Estados Unidos'),
(147083, 114785, 'en', 'name', 'United States Fish and Wildlife Service'),
(147084, 114786, 'pt', 'name', 'Capital Douro Associação Industrial Comercial e de Serviços de São João da Pesqueira'),
(147085, 114787, 'es', 'name', 'Instituto de Estudios Avanzados'),
(147086, 114788, 'fr', 'name', 'Institut SystĆØmes Intelligents et de Robotique'),
(147087, 114788, 'en', 'name', 'Institute of Intelligent Systems and Robotics'),
(147088, 114789, 'pt', 'name', 'Unidade Local de SaĆŗde Gaia/Espinho'),
(147089, 114790, 'fr', 'name', 'Laboratoire d''Ingénierie des Systèmes Macromoléculaires'),
(147090, 114791, 'en', 'name', 'Jefferson Institute'),
(147091, 114792, 'en', 'name', 'Intersectoral Research and Technology Complex Eye Microsurgery'),
(147092, 114792, 'ru', 'name', 'ŠœŠµŠ¶Š¾Ń‚Ń€Š°ŃŠ»ŠµŠ²Š¾Š¹ Š½Š°ŃƒŃ‡Š½Š¾-технический комплекс Ā«ŠœŠøŠŗŃ€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ глаза»'),
(147093, 114793, 'no', 'name', 'Vestlandsforsking'),
(147094, 114793, 'en', 'name', 'Western Norway Research Institute'),
(147095, 114794, 'en', 'name', 'Scripps Mercy Hospital'),
(147096, 114795, 'en', 'name', 'University of Bangui'),
(147097, 114795, 'fr', 'name', 'UniversitƩ de Bangui'),
(147098, 114796, 'fr', 'name', 'Centre Nantais de Sociologie'),
(147099, 114797, 'fr', 'name', 'Clinique de Genolier'),
(147100, 114798, 'pt', 'name', 'Miranda & Associados Sociedade de Advogados (Portugal)'),
(147101, 114798, 'en', 'name', 'Miranda & Associates Law Firm'),
(147102, 114799, 'en', 'name', 'National Nutrition and Food Technology Research Institute'),
(147103, 114800, 'en', 'name', 'Bosque Foods GmbH (Germany)'),
(147104, 114801, 'fr', 'name', 'Franche-ComtĆ© Ɖlectronique MĆ©canique Thermique et Optique - Sciences et Technologies'),
(147105, 114802, 'en', 'name', 'Ceres'),
(147106, 114803, 'en', 'name', 'Federative Institute for Research on Legal Transitions'),
(147107, 114803, 'fr', 'name', 'Institut FƩdƩratif de recherche sur les Transitions Juridiques'),
(147108, 114804, 'en', 'name', 'V. G. Khlopin Radium Institute'),
(147109, 114804, 'ru', 'name', 'РаГиевый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š’. Š“. Єлопина'),
(147110, 114805, 'pt', 'name', 'Livromedica ComƩrcio de Livros TƩcnicos (Portugal)'),
(147111, 114805, 'en', 'name', 'Livromedica Trade of Technical Books'),
(147112, 114806, 'en', 'name', 'State Research Center for Dermatovenereology and Cosmetology'),
(147113, 114807, 'de', 'name', 'Rudolf-Kaiser-Stiftung'),
(147114, 114808, 'fr', 'name', 'Astrophysique Relativiste, ThƩories, ExpƩriences, MƩtrologie, Instrumentation, Signaux'),
(147115, 114809, 'en', 'name', 'Brooklyn Law School'),
(147116, 114810, 'pt', 'name', 'Unidade Móvel de Investigação em Estudos do Local'),
(147117, 114811, 'en', 'name', 'York University'),
(147118, 114812, 'pt', 'name', 'Cooperativa de Técnicas Avançadas de Gestão e InformÔtica'),
(147119, 114813, 'pt', 'name', 'Imoclƭnica Investimentos MƩdicos (Portugal)'),
(147120, 114813, 'en', 'name', 'ImoclĆ­nica Medical Investments'),
(147121, 114814, 'en', 'name', 'Morton Arboretum'),
(147122, 114815, 'fr', 'name', 'Centre Hospitalier de Beauvais'),
(147123, 114816, 'pt', 'name', 'Universidade do Minho'),
(147124, 114816, 'en', 'name', 'University of Minho'),
(147125, 114817, 'fr', 'name', 'Centre des MatƩriaux'),
(147126, 114817, 'en', 'name', 'Centre for material sciences'),
(147127, 114818, 'pt', 'name', 'Instituto Nacional para a Reabilitação'),
(147128, 114818, 'en', 'name', 'National Institute for Rehabilitation'),
(147129, 114819, 'de', 'name', 'Allgemeines Krankenhaus Celle'),
(147130, 114820, 'fr', 'name', 'Edition, InterprƩtation et traduction des textes anciens'),
(147131, 114821, 'pt', 'name', 'Consulbiotech Investigação e Desenvolvimento (Portugal)'),
(147132, 114821, 'en', 'name', 'Consulbiotech Research and Development'),
(147133, 114822, 'no_lang_code', 'name', 'Jaslok Hospital'),
(147134, 114823, 'en', 'name', 'Dnipro State University of Internal Affairs'),
(147135, 114823, 'uk', 'name', 'Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(147136, 114824, 'en', 'name', 'Anthony Nolan'),
(147137, 114825, 'es', 'name', 'Comisión de Investigaciones Científicas'),
(147138, 114826, 'de', 'name', 'UniversitƤtsklinikum Krems'),
(147139, 114827, 'en', 'name', 'Early detection of Colon Cancer using Molecular Markers and Microbiota'),
(147140, 114828, 'fr', 'name', 'Centre de Physique ThƩorique'),
(147141, 114829, 'en', 'name', 'International Phycological Society'),
(147142, 114830, 'de', 'name', 'Kompetenzzentrum Wasser Hessen'),
(147143, 114831, 'de', 'name', 'Karl Landsteiner Gesellschaft'),
(147144, 114831, 'en', 'name', 'Karl Landsteiner Society'),
(147145, 114832, 'pt', 'name', 'Vicoustic (Portugal)'),
(147146, 114832, 'en', 'name', 'Visound Acoustics'),
(147147, 114833, 'fr', 'name', 'Institut Technique de l''Aviculture'),
(147148, 114834, 'de', 'name', 'Stadtwerke Soest'),
(147149, 114835, 'en', 'name', 'Key Laboratory of Symbolic Computation and Knowledge Engineering of Ministry of Education, Jilin University'),
(147150, 114835, 'zh', 'name', 'ē¬¦å·č®”ē®—äøŽēŸ„čÆ†å·„ēØ‹ę•™č‚²éƒØé‡ē‚¹å®žéŖŒå®¤ å‰ęž—å¤§å­¦'),
(147151, 114836, 'en', 'name', 'Qurtuba University of Science and Information Technology'),
(147152, 114836, 'ur', 'name', 'قرطبہ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(147153, 114837, 'en', 'name', 'California Space Grant Consortium'),
(147154, 114838, 'id', 'name', 'Yayasan Aurora Marifatul Syifa'),
(147155, 114839, 'fr', 'name', 'Centre de Recherche et de Documentation sur l''OcƩanie (CREDO)'),
(147156, 114840, 'en', 'name', 'Beijing Normal-Hong Kong Baptist University'),
(147157, 114840, 'zh', 'name', 'åŒ—åøˆé¦™ęøÆęµøä¼šå¤§å­¦'),
(147158, 114841, 'en', 'name', 'Benthic Ecogeochemistry Laboratory'),
(147159, 114841, 'fr', 'name', 'Laboratoire d''EcogƩochimie des Environnements Benthiques'),
(147160, 114842, 'en', 'name', 'Antioch College'),
(147161, 114843, 'no_lang_code', 'name', 'Amrita Vishwa Vidyapeetham'),
(147162, 114843, 'ml', 'name', 'ą“…ą“®ąµƒą“¤ ą“µą“æą“¶ąµą“µą“µą“æą“¦ąµą“Æą“¾ą“Ŗąµ€ą“ ą“‚'),
(147163, 114844, 'en', 'name', 'Energy Foundation'),
(147164, 114845, 'en', 'name', 'Austrian Centre for Electron Microscopy and Nanoanalysis'),
(147165, 114846, 'fr', 'name', 'Equipe de recherche interdisciplinaire sur les aires culturelles'),
(147166, 114847, 'fr', 'name', 'Centre de Recherches en Histoire des IdƩes'),
(147167, 114848, 'en', 'name', 'J. Craig Venter Institute'),
(147168, 114849, 'en', 'name', 'Fluid Mechanics and Acoustics Laboratory'),
(147169, 114849, 'fr', 'name', 'Laboratoire de MƩcanique des Fluides et d''Acoustique'),
(147170, 114850, 'en', 'name', 'Hong Kong Baptist University'),
(147171, 114851, 'bs', 'name', 'Centar za zdravlje, vežbanje i sportske nauke'),
(147172, 114851, 'en', 'name', 'Center for Health, Exercise and Sport Sciences'),
(147173, 114852, 'fr', 'name', 'Archives Henri-PoincarƩ - Philosophie et Recherches sur les Sciences et les Technologies'),
(147174, 114853, 'en', 'name', 'Innovation Centre for Organic Farming'),
(147175, 114853, 'da', 'name', 'Innovationscenter for Ƙkologisk Landbrug'),
(147176, 114854, 'en', 'name', 'Dayanand Medical College & Hospital'),
(147177, 114855, 'en', 'name', 'Yangon University of Economics'),
(147178, 114856, 'es', 'name', 'Universidad de León'),
(147179, 114857, 'en', 'name', 'Center of Advanced Studies of Pharmaceutical Industry'),
(147180, 114857, 'pt', 'name', 'Centro de Estudos Superiores da IndĆŗstria FarmacĆŖutica Unipessoal (Portugal)'),
(147181, 114858, 'en', 'name', 'Frisius MC'),
(147182, 114859, 'de', 'name', 'Heinrich-Stockmeyer-Stiftung'),
(147183, 114860, 'en', 'name', 'Centre for Social Sciences and Humanities'),
(147184, 114861, 'pt', 'name', 'Hospital Distrital Torres Vedras'),
(147185, 114862, 'pl', 'name', 'Stowarzyszenia Kooperatywa Spożywcza Dobrze (Poland)'),
(147186, 114863, 'pt', 'name', 'CliniciĆŖncia (Portugal)'),
(147187, 114864, 'pt', 'name', 'Cordex (Portugal)'),
(147188, 114865, 'pt', 'name', 'Observatório Europeu Multidisciplinar do Fundo do Mar e Coluna de Água Portugal'),
(147189, 114866, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des IngĆ©nieurs en Arts Chimiques et Technologiques'),
(147190, 114867, 'fr', 'name', 'Institut de Biologie Physico-Chimique'),
(147191, 114868, 'no_lang_code', 'name', 'Shri Vile Parle Kelavani Mandal'),
(147192, 114869, 'pt', 'name', 'Direção Regional de Agricultura e Pescas de Lisboa e Vale do Tejo'),
(147193, 114870, 'en', 'name', 'Life University'),
(147194, 114871, 'es', 'name', 'Universidad de La Habana'),
(147195, 114871, 'en', 'name', 'University of Havana'),
(147196, 114872, 'fr', 'name', 'ExcitabilitƩ Nerveuse et ThƩrapeutique'),
(147197, 114873, 'en', 'name', 'University of Technology and Applied Sciences - Ibra'),
(147198, 114873, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© Ų„ŲØŲ±Ų§Ų”'),
(147199, 114874, 'en', 'name', 'State Research Institute for Chemistry and Technology of Organoelement Compounds'),
(147200, 114874, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Šø технологии ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š¾Š¾Ń€Š³Š°Š½ŠøŃ‡ŠµŃŠŗŠøŃ… соеГинений'),
(147201, 114875, 'en', 'name', 'IMS Unison University'),
(147202, 114876, 'en', 'name', 'Henry Royce Institute'),
(147203, 114877, 'en', 'name', 'Community Health Systems - Santa Rosa Medical Center'),
(147204, 114878, 'en', 'name', 'Ayub Medical College'),
(147205, 114879, 'pt', 'name', 'Douro StartUP'),
(147206, 114880, 'pt', 'name', 'Laboratório de Aprendizagem e Controlo Motor'),
(147207, 114881, 'en', 'name', 'Navodaya Dental College and Hospital'),
(147208, 114882, 'en', 'name', 'State University of Malang'),
(147209, 114882, 'id', 'name', 'Universitas Negeri Malang'),
(147210, 114883, 'no_lang_code', 'name', 'Seva Mandir'),
(147211, 114884, 'en', 'name', 'Saudi Electricity Company'),
(147212, 114884, 'no_lang_code', 'name', 'Saudi Electricity Company (Saudi Arabia)'),
(147213, 114884, 'ar', 'name', 'Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© Ł„Ł„ŁƒŁ‡Ų±ŲØŲ§Ų”'),
(147214, 114885, 'en', 'name', 'International Superconductivity Technology Center'),
(147215, 114885, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›č¶…é›»å°Žē”£ę„­ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(147216, 114886, 'fr', 'name', 'Centre de Recherche en Histoire EuropƩenne ComparƩe, de l''AntiquitƩ Ơ nos jours'),
(147217, 114887, 'en', 'name', 'Children''s Hospital Agia Sophia'),
(147218, 114888, 'en', 'name', 'Ithaka Harbors'),
(147219, 114889, 'pt', 'name', 'Unidade Hospitalar de Portimão'),
(147220, 114890, 'en', 'name', 'Community Health Systems - Longview Regional Medical Center'),
(147221, 114891, 'en', 'name', 'Stockholm University College of Music Education'),
(147222, 114891, 'sv', 'name', 'Stockholms Musikpedagogiska Institut'),
(147223, 114892, 'en', 'name', 'Ontario Mental Health Foundation'),
(147224, 114893, 'en', 'name', 'National Pedagogical University of Uzbekistan'),
(147225, 114893, 'uz', 'name', 'Oʻzbekiston milliy pedagogika universiteti'),
(147226, 114893, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Узбекистана'),
(147227, 114894, 'fr', 'name', 'Cultures et Environnements. PrĆ©histoire, AntiquitĆ©, Moyen Ƃge'),
(147228, 114895, 'en', 'name', 'Dokuz Eylül University'),
(147229, 114895, 'tr', 'name', 'Dokuz Eylül Üniversitesi'),
(147230, 114896, 'en', 'name', 'Iranian Institute for Health Sciences Research'),
(147231, 114897, 'pt', 'name', 'Unidade Hospitalar de Lamego'),
(147232, 114898, 'fr', 'name', 'BiogƩosciences'),
(147233, 114899, 'fr', 'name', 'ReprƩsentations et IdentitƩs. Espaces Germanique, Nordique et NƩerlandophone'),
(147234, 114900, 'hr', 'name', 'Klinička bolnica "Sveti Duh"'),
(147235, 114901, 'en', 'name', 'Community Health Systems - Gadsden Regional Medical Center'),
(147236, 114902, 'fr', 'name', 'Centre d’études des transformations des activitĆ©s physiques et sportives'),
(147237, 114903, 'en', 'name', 'Kangwon National University Hospital'),
(147238, 114903, 'ko', 'name', 'ź°•ģ›ėŒ€ķ•™źµė³‘ģ›'),
(147239, 114904, 'en', 'name', 'Shire Pharmaceuticals (Portugal)'),
(147240, 114905, 'en', 'name', 'Food for Biodiversity'),
(147241, 114906, 'fr', 'name', 'Laboratoire des Sciences de l''IngƩnieur pour l''Environnement'),
(147242, 114907, 'nl', 'name', 'Ikazia Ziekenhuis'),
(147243, 114908, 'en', 'name', 'Methods and Applied Research for Trial'),
(147244, 114909, 'fr', 'name', 'DILTEC - Didactique des langues, des textes et des cultures'),
(147245, 114910, 'fr', 'name', 'Laboratoire d’études en droits fondamentaux, des Ć©changes internationaux et de la mer'),
(147246, 114911, 'no_lang_code', 'name', 'Klein Buendel (United States)'),
(147247, 114912, 'no_lang_code', 'name', 'Carestream (United States)'),
(147248, 114913, 'fr', 'name', 'EpidƩmiosurveillance et circulation des parasites dans les environnements'),
(147249, 114914, 'id', 'name', 'Universitas Nahdlatul Ulama Yogyakarta'),
(147250, 114915, 'en', 'name', 'Health Data Research UK'),
(147251, 114916, 'fr', 'name', 'Equipe d’Economie Le Havre Normandie'),
(147252, 114917, 'en', 'name', 'Conway School of Landscape Design'),
(147253, 114918, 'no_lang_code', 'name', 'Saint-Petersburg Research Institute of Phthisiopulmonology'),
(147254, 114918, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠŠ˜Š˜ Ń„Ń‚ŠøŠ·ŠøŠ¾ŠæŃƒŠ»ŃŒŠ¼Š¾Š½Š¾Š»Š¾Š³ŠøŠø'),
(147255, 114919, 'fr', 'name', 'Institut d''Imagerie BiomƩdicale'),
(147256, 114920, 'en', 'name', 'University of Tokyo Health Sciences'),
(147257, 114920, 'ja', 'name', 'ę±äŗ¬åŒ»ē™‚å­¦é™¢å¤§å­¦'),
(147258, 114921, 'en', 'name', 'National Center for Communicable Diseases'),
(147259, 114921, 'mn', 'name', 'ЄАЛДВАРТ ÓØŠ’Š§Š˜Š Š”Š£Š”Š›ŠŠ›Š«Š Ņ®ŠŠ”Š­Š”ŠŠ˜Š™ Š¢ÓØŠ’'),
(147260, 114922, 'en', 'name', 'Bonneville Power Administration'),
(147261, 114923, 'fr', 'name', 'FƩdƩration Mondiale Des Journalistes Scientifiques'),
(147262, 114923, 'en', 'name', 'World Federation of Science Journalists'),
(147263, 114924, 'fr', 'name', 'Savoirs et Mondes Indiens'),
(147264, 114925, 'fr', 'name', 'BioingƩnierie, Tissus et NeuroplasticitƩ'),
(147265, 114926, 'de', 'name', 'Forschungs- und Beratungsstelle Arbeitswelt'),
(147266, 114927, 'fr', 'name', 'Laboratoire de PhysioMƩdecine MolƩculaire'),
(147267, 114928, 'en', 'name', 'Bremen Institute for Applied Beam Technology'),
(147268, 114928, 'de', 'name', 'Bremer Institut für angewandte Strahltechnik'),
(147269, 114929, 'en', 'name', 'National University of Ukraine on Physical Education and Sport'),
(147270, 114929, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ фізичного Š²ŠøŃ…Š¾Š²Š°Š½Š½Ń і ŃŠæŠ¾Ń€Ń‚Ńƒ України'),
(147271, 114930, 'en', 'name', 'National College of Technology, Wakayama College'),
(147272, 114930, 'ja', 'name', 'å’Œę­Œå±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(147273, 114931, 'fr', 'name', 'UniversitƩ de la Formation Continue (UFC)'),
(147274, 114931, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁƒŁˆŁŠŁ† Ų§Ł„Ł…ŲŖŁˆŲ§ŲµŁ„'),
(147275, 114932, 'fr', 'name', 'Architecture et Fonction des MacromolƩcules Biologiques'),
(147276, 114933, 'en', 'name', 'MARIS B.V.'),
(147277, 114933, 'no_lang_code', 'name', 'Marine Information Service (Netherlands)'),
(147278, 114934, 'no_lang_code', 'name', 'Epigenomics (Germany)'),
(147279, 114935, 'en', 'name', 'Copernicus Memorial Hospital'),
(147280, 114936, 'fr', 'name', 'Centre de Recherches Insulaires et Observatoire de l''Environnement'),
(147281, 114937, 'fr', 'name', 'Centre de Recherche et d''Etude en Droit et Science Politique'),
(147282, 114938, 'en', 'name', 'Southern Isabela Medical Center'),
(147283, 114939, 'pt', 'name', 'Coletivo Criatura (Portugal)'),
(147284, 114939, 'en', 'name', 'Collective Creature'),
(147285, 114940, 'pt', 'name', 'Universidade Nova de Lisboa Biblioteca e Serviços de Documentação');
INSERT INTO `ror_settings` VALUES
(147286, 114941, 'pt', 'name', 'Centro Empresarial Torres de Lisboa (Portugal)'),
(147287, 114941, 'en', 'name', 'Lisbon Towers Business Centre'),
(147288, 114942, 'no_lang_code', 'name', 'Innovative Scientific Solutions (United States)'),
(147289, 114943, 'en', 'name', 'Therapeutics Clinical Research'),
(147290, 114944, 'en', 'name', 'PrJSC "Ukrhydroenergo"'),
(147291, 114944, 'uk', 'name', 'ŠŸŃ€ŠŠ¢ «УкргіГроене́рго»'),
(147292, 114945, 'en', 'name', 'Athena Research and Innovation Center In Information Communication & Knowledge Technologies'),
(147293, 114946, 'fr', 'name', 'Institut international de mƩdecine reproductive restauratrice'),
(147294, 114946, 'es', 'name', 'Instituto Internacional de Medicina Reproductiva Restaurativa'),
(147295, 114946, 'en', 'name', 'International Institute for Restorative Reproductive Medicine'),
(147296, 114947, 'de', 'name', 'STZ eyetrial'),
(147297, 114948, 'en', 'name', 'Research Institute of Industrial Economics'),
(147298, 114949, 'fr', 'name', 'Centre de Recherche en Droit Administratif'),
(147299, 114950, 'pl', 'name', 'Kijowski Narodowy Uniwersytet Kultury i Sztuki'),
(147300, 114950, 'en', 'name', 'Kyiv National University of Culture and Arts'),
(147301, 114950, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(147302, 114950, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø і мистецтв'),
(147303, 114951, 'fr', 'name', 'Laboratoire Interuniversitaire des Systèmes Atmosphériques'),
(147304, 114952, 'de', 'name', 'Reinhard und Barbara Bretzel-Stiftung'),
(147305, 114953, 'no_lang_code', 'name', 'Mali-Folkecenter'),
(147306, 114954, 'fr', 'name', 'CEA Le Ripault'),
(147307, 114955, 'fr', 'name', 'Laboratoire des Sciences de l''IngƩnieur AppliquƩes Ơ la MƩcanique et au gƩnie Electrique'),
(147308, 114955, 'en', 'name', 'Laboratory for applied sciences in mechanics and electrical engineering'),
(147309, 114956, 'no_lang_code', 'name', 'Karakter'),
(147310, 114957, 'fr', 'name', 'Laboratoire de Recherche en Management'),
(147311, 114957, 'en', 'name', 'Management Research Laboratory'),
(147312, 114958, 'en', 'name', 'CMC University'),
(147313, 114958, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CMC'),
(147314, 114959, 'en', 'name', 'Nagasaki Institute of Applied Science'),
(147315, 114959, 'ja', 'name', 'é•·å“Žē·åˆē§‘å­¦å¤§å­¦'),
(147316, 114960, 'de', 'name', 'Schmerzklinik Kiel'),
(147317, 114961, 'no_lang_code', 'name', 'Epistem (United Kingdom)'),
(147318, 114962, 'fr', 'name', 'InterdisciplinaritĆ© en SantĆ© Publique Interventions et Instruments de mesure complexes – RĆ©gion Est'),
(147319, 114963, 'fr', 'name', 'Institut de Chimie de Clermont-Ferrand'),
(147320, 114963, 'en', 'name', 'Institute of Chemistry of Clermont-Ferrand'),
(147321, 114964, 'en', 'name', 'Behavioral Ecology and Fish Population Biology'),
(147322, 114964, 'fr', 'name', 'Ecologie Comportementale et Biologie des Populations de Poissons'),
(147323, 114965, 'fr', 'name', 'UniversitƩ Bordeaux Montaigne'),
(147324, 114966, 'fr', 'name', 'Laboratoire LumiĆØre, MatiĆØre et Interfaces'),
(147325, 114967, 'en', 'name', 'Tajik Pedagogical Institute in the Rasht District'),
(147326, 114967, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠŗŠ°Š“Š°Šø омӯзгории Тоҷикистон Гар Š½Š¾Ņ³ŠøŃŠø Š Š°ŃˆŃ‚'),
(147327, 114967, 'ru', 'name', 'ТаГжикский пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ в Š Š°ŃˆŃ‚ском районе'),
(147328, 114968, 'fr', 'name', 'Institut d''Ɖlectronique et des SystĆØmes'),
(147329, 114969, 'de', 'name', 'Landesamt für Vermessung und Geobasisinformation Rheinland-Pfalz'),
(147330, 114970, 'en', 'name', 'DAV University'),
(147331, 114971, 'fr', 'name', 'Laboratoire de PhonƩtique et Phonologie'),
(147332, 114972, 'en', 'name', 'Communications Workers of America'),
(147333, 114973, 'nl', 'name', 'Departement Economie, Wetenschap & Innovatie'),
(147334, 114973, 'en', 'name', 'Department of Economy, Sciency & Innovation'),
(147335, 114974, 'en', 'name', 'Hellenic Digital Health Cluster - HDHC'),
(147336, 114974, 'no_lang_code', 'name', 'Hellenic Digital Health Cluster - HDHC (Greece)'),
(147337, 114975, 'pt', 'name', 'Hospital de Lagos'),
(147338, 114976, 'en', 'name', 'American Ceramic Society'),
(147339, 114977, 'pt', 'name', 'Centro de Quƭmica de Ɖvora'),
(147340, 114978, 'en', 'name', 'Netherlands Metabolomics Centre'),
(147341, 114979, 'en', 'name', 'Breast Cancer Now'),
(147342, 114980, 'en', 'name', 'Albany Medical Center Hospital'),
(147343, 114981, 'pt', 'name', 'Francisco Allen Gomes (Portugal)'),
(147344, 114982, 'es', 'name', 'Instituto de FĆ­sica del Litoral'),
(147345, 114983, 'en', 'name', 'Merowe University of Technology'),
(147346, 114983, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų±ŁˆŁŠ Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ©'),
(147347, 114984, 'en', 'name', 'National University of RĆ­o Negro'),
(147348, 114984, 'es', 'name', 'Universidad Nacional de RĆ­o Negro'),
(147349, 114985, 'no_lang_code', 'name', 'Redondo Optics (United States)'),
(147350, 114986, 'fr', 'name', 'Groupe de Recherches sur l''EnergƩtique des Milieux IonisƩs'),
(147351, 114987, 'fr', 'name', 'Grand AccƩlƩrateur National d''Ions Lourds'),
(147352, 114988, 'de', 'name', 'Freie Theologische Hochschule Gießen'),
(147353, 114988, 'en', 'name', 'Giessen School of Theology'),
(147354, 114989, 'fr', 'name', 'Fonds National de la Recherche'),
(147355, 114989, 'en', 'name', 'National Research Fund Luxembourg'),
(147356, 114990, 'fr', 'name', 'Laboratoire des Sciences de l''Environnement Marin'),
(147357, 114991, 'en', 'name', 'The Institute of Legislation and Comparative Law under the Government of the Russian Federation'),
(147358, 114992, 'en', 'name', 'Community Health Systems - Tennova North Knoxville Medical Center'),
(147359, 114993, 'pt', 'name', 'Laboratório Regional de Engenharia Civil'),
(147360, 114994, 'no_lang_code', 'name', 'Circadian (United States)'),
(147361, 114995, 'en', 'name', 'Lublin Oncology Center'),
(147362, 114996, 'fr', 'name', 'Laboratoire de Chimie Physique - MatiĆØre et Rayonnement'),
(147363, 114997, 'en', 'name', 'Greenland Institute of Natural Resources'),
(147364, 114997, 'da', 'name', 'GrĆønlands Naturinstitut'),
(147365, 114998, 'en', 'name', 'Krasnoyarsk Regional Clinical Hospital'),
(147366, 114998, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠ°Ń ŠŗŃ€Š°ŠµŠ²Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(147367, 114999, 'en', 'name', 'Military Medical Academy'),
(147368, 114999, 'bg', 'name', 'ВоенномеГицинска Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(147369, 115000, 'en', 'name', 'Mubarak Al Kabeer Hospital'),
(147370, 115000, 'ar', 'name', 'مستؓفى Ł…ŲØŲ§Ų±Łƒ Ų§Ł„ŁƒŲØŁŠŲ±'),
(147371, 115001, 'en', 'name', 'Voice of Nature'),
(147372, 115001, 'pt', 'name', 'Voz da Natureza Lda (Portugal)'),
(147373, 115002, 'en', 'name', 'Community Health Systems - DeTar Healthcare System'),
(147374, 115003, 'en', 'name', 'Kameda Medical Center'),
(147375, 115003, 'ja', 'name', 'äŗ€ē”°ē·åˆē—…é™¢'),
(147376, 115004, 'en', 'name', 'Wise Healthcare Solutions (Portugal)'),
(147377, 115005, 'fr', 'name', 'Laboratoire Interdisciplinaire de Recherches "SociƩtƩs, SensibilitƩs, Soin"'),
(147378, 115006, 'sw', 'name', 'Chuo cha Maji, Tanzania'),
(147379, 115006, 'en', 'name', 'Water Institute, Tanzania'),
(147380, 115007, 'pt', 'name', 'Creartopia (Portugal)'),
(147381, 115008, 'en', 'name', 'Sabin Vaccine Institute'),
(147382, 115009, 'en', 'name', 'Cologne Institute for Economic Research'),
(147383, 115009, 'de', 'name', 'Institut der deutschen Wirtschaft Kƶln'),
(147384, 115010, 'en', 'name', 'Madison Area Technical College'),
(147385, 115011, 'fr', 'name', 'Institut des sciences juridique et philosophique de la Sorbonne'),
(147386, 115012, 'pt', 'name', 'Hospital Nossa Senhora da Conceição de Valongo'),
(147387, 115013, 'en', 'name', 'Bryan College'),
(147388, 115014, 'en', 'name', 'Adsen Biotechnology Co. Ltd. (China)'),
(147389, 115014, 'zh', 'name', 'å±±äøœč‰¾å¾·ę£®ē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(147390, 115015, 'fr', 'name', 'Centre Paul Albert-FƩvrier'),
(147391, 115016, 'en', 'name', 'Siberian State University Geosystems and Technology'),
(147392, 115016, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ геосистем Šø технологий'),
(147393, 115017, 'es', 'name', 'Universidad Andina Simón Bolívar'),
(147394, 115018, 'no_lang_code', 'name', 'IDEX Corporation (United States)'),
(147395, 115019, 'en', 'name', 'Office of the Assistant Secretary of Defense for Energy, Installations, and Environment'),
(147396, 115020, 'en', 'name', 'Institute of Geodesy and Cartography'),
(147397, 115021, 'en', 'name', 'Northern State Medical University'),
(147398, 115021, 'ru', 'name', 'Деверный Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(147399, 115022, 'en', 'name', 'Gandhara University'),
(147400, 115022, 'ur', 'name', 'گاندھارا ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(147401, 115023, 'en', 'name', 'Jefferson College'),
(147402, 115024, 'en', 'name', 'Max Perutz Labs'),
(147403, 115025, 'de', 'name', 'Schlosspark-Klinik'),
(147404, 115026, 'en', 'name', 'Laboratory Orofacial Pathologies, Imaging and Biotherapies'),
(147405, 115026, 'fr', 'name', 'Pathologie, Imagerie et BiothƩrapies orofaciales'),
(147406, 115027, 'fr', 'name', 'Centre de Recherche en Ɖconomie et Statistique'),
(147407, 115028, 'en', 'name', 'Praboromarajchanok Institute Ministry of Public Health'),
(147408, 115028, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąøžąø£ąø°ąøšąø£ąø”ąø£ąø²ąøŠąøŠąø™ąø'),
(147409, 115029, 'pt', 'name', 'Instituto da Visão'),
(147410, 115029, 'en', 'name', 'Vision Institute'),
(147411, 115030, 'en', 'name', 'Botkin Hospital'),
(147412, 115030, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° имени Š”. П. Боткина'),
(147413, 115031, 'fr', 'name', 'Biologie et Ecologie des EcosystĆØmes Marins Profonds'),
(147414, 115032, 'en', 'name', 'AJER Publishing'),
(147415, 115033, 'hr', 'name', 'Opća bolnica Karlovac'),
(147416, 115034, 'pt', 'name', 'Medfarma EdiƧƵes MƩdicas (Portugal)'),
(147417, 115035, 'fr', 'name', 'Laboratoire COBRA'),
(147418, 115036, 'en', 'name', 'Community Health Systems - Woodland Heights Medical Center'),
(147419, 115037, 'en', 'name', 'College of Law'),
(147420, 115037, 'lv', 'name', 'Juridiskā koledža'),
(147421, 115038, 'en', 'name', 'Cancer Council Queensland'),
(147422, 115039, 'fr', 'name', 'DƩpartement de Pharmacochimie MolƩculaire'),
(147423, 115040, 'en', 'name', 'Fairfield General Hospital'),
(147424, 115041, 'en', 'name', 'Moscow Regional Research Institute of Obstetrics and Gynecology'),
(147425, 115041, 'ru', 'name', 'Московский областной ŠŠ˜Š˜ Š°ŠŗŃƒŃˆŠµŃ€ŃŃ‚Š²Š° Šø гинекологии'),
(147426, 115042, 'pt', 'name', 'ISPA - Instituto UniversitƔrio'),
(147427, 115043, 'en', 'name', 'Kagoshima City Hospital'),
(147428, 115043, 'ja', 'name', '鹿児島市立病院'),
(147429, 115044, 'fr', 'name', 'Biologie des Plantes et Innovation'),
(147430, 115045, 'en', 'name', 'Fukui National College of Technology'),
(147431, 115045, 'ja', 'name', 'ē¦äŗ•å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(147432, 115046, 'fr', 'name', 'Laboratoire de ChƩmo-biologie synthƩtique et thƩrapeutique'),
(147433, 115047, 'pt', 'name', 'Friday CiĆŖncia e Engenharia do Lazer (Portugal)'),
(147434, 115047, 'en', 'name', 'Friday Leisure Science and Engineering'),
(147435, 115048, 'en', 'name', 'Ragas Dental College & Hospital'),
(147436, 115049, 'en', 'name', 'Samen NZ Ltd (New Zealand)'),
(147437, 115050, 'fr', 'name', 'Laboratoire d''Informatique en Images et SystĆØmes d''Information'),
(147438, 115051, 'fr', 'name', 'Matrice Extracellulaire et Dynamique Cellulaire MEDyC'),
(147439, 115052, 'en', 'name', 'UK Dementia Research Institute'),
(147440, 115053, 'en', 'name', 'Zhongshan People''s Hospital'),
(147441, 115053, 'zh', 'name', 'äø­å±±åø‚äŗŗę°‘åŒ»é™¢'),
(147442, 115054, 'hr', 'name', 'SveučiliŔte u Mostaru'),
(147443, 115054, 'en', 'name', 'University of Mostar'),
(147444, 115054, 'bs', 'name', 'Univerzitet u Mostaru'),
(147445, 115054, 'sr', 'name', 'Универзитет у ŠœŠ¾ŃŃ‚Š°Ń€Ńƒ'),
(147446, 115055, 'en', 'name', 'Center for Research on Palaeontology - Paris'),
(147447, 115055, 'fr', 'name', 'Centre de recherche en palƩontologie - Paris'),
(147448, 115056, 'fr', 'name', 'Laboratoire Ɖnergies et MĆ©canique ThĆ©orique et AppliquĆ©e'),
(147449, 115056, 'en', 'name', 'Laboratory of Energies Theoretical and Applied Mechanics'),
(147450, 115057, 'en', 'name', 'Saint Camillus International University of Health and Medical Sciences'),
(147451, 115058, 'en', 'name', 'Institute for Women''s Policy Research'),
(147452, 115059, 'pt', 'name', 'Centro Hospitalar Póvoa de Varzim Vila do Conde EPE Unidade de Vila do Conde'),
(147453, 115060, 'en', 'name', 'World Wide Web Consortium'),
(147454, 115061, 'fr', 'name', 'Centre AndrƩ-Chastel'),
(147455, 115062, 'fr', 'name', 'Centre d''Ɖtudes et de Recherches Antiques et MĆ©diĆ©vales'),
(147456, 115063, 'fr', 'name', 'IMT Mines Albi'),
(147457, 115064, 'en', 'name', 'All India Institute of Medical Sciences, Deoghar'),
(147458, 115065, 'en', 'name', 'Catalan Ornithological Institute'),
(147459, 115065, 'ca', 'name', 'Institut CatalĆ  d''Ornitologia'),
(147460, 115065, 'es', 'name', 'Instituto CatalƔn de Ornitologƭa'),
(147461, 115066, 'en', 'name', 'Materials Science in Extreme Environments University Research Alliance'),
(147462, 115067, 'en', 'name', 'Orthopaedic Hospital Speising'),
(147463, 115067, 'de', 'name', 'OrthopƤdisches Spital Speising'),
(147464, 115068, 'en', 'name', 'Carma International (Portugal)'),
(147465, 115069, 'en', 'name', 'Central Scientific Research Institute of Traumatology and Orthopedics'),
(147466, 115069, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Травматологии Šø ŠžŃ€Ń‚Š¾ŠæŠµŠ“ŠøŠø имени Š.Š. ŠŸŃ€ŠøŠ¾Ń€Š¾Š²Š°'),
(147467, 115070, 'fr', 'name', 'Centre De Recherche Informatique De MontrƩal'),
(147468, 115070, 'en', 'name', 'Computer Research Institute of MontrƩal'),
(147469, 115071, 'fr', 'name', 'Institut de Chimie SƩparative de Marcoule'),
(147470, 115072, 'en', 'name', 'Food and Drug Administration'),
(147471, 115073, 'fr', 'name', 'Equipe de recherche Louis Josserand'),
(147472, 115074, 'fr', 'name', 'Ɖcole SupĆ©rieure de la SĆ©curitĆ© Sociale'),
(147473, 115075, 'en', 'name', 'Marywood University'),
(147474, 115076, 'fr', 'name', 'Laboratoire Magmas et Volcans'),
(147475, 115077, 'en', 'name', 'Health Cluster Portugal Translational and Clinical Research Infrastructures Specialisation Platform'),
(147476, 115078, 'en', 'name', 'Nagaoka National College of Technology'),
(147477, 115078, 'ja', 'name', 'é•·å²”å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(147478, 115079, 'en', 'name', 'Chicago Institute for Psychoanalysis'),
(147479, 115080, 'en', 'name', 'Rochdale Infirmary'),
(147480, 115081, 'fr', 'name', 'Biologie du chloroplaste et perception de la lumiĆØre chez les micro-algues'),
(147481, 115082, 'en', 'name', 'Sichuan Animal Science Academy'),
(147482, 115082, 'zh', 'name', 'å››å·ēœē•œē‰§ē§‘å­¦ē ”ē©¶é™¢'),
(147483, 115083, 'en', 'name', 'BSIM2 Biomolecular Simulations (Portugal)'),
(147484, 115084, 'en', 'name', 'Infectious Diseases Research Collaboration'),
(147485, 115085, 'de', 'name', 'Forschungszentrum Neu-Ulrichstein'),
(147486, 115086, 'fr', 'name', 'Laboratoire LigƩrien de Linguistique'),
(147487, 115087, 'en', 'name', 'Community Health Systems - Merit Health Wesley'),
(147488, 115088, 'hr', 'name', 'SveučiliŔte u Sarajevu'),
(147489, 115088, 'en', 'name', 'University of Sarajevo'),
(147490, 115088, 'bs', 'name', 'Univerzitet u Sarajevu'),
(147491, 115088, 'sr', 'name', 'Универзитет у Š”Š°Ń€Š°Ń˜ŠµŠ²Ńƒ'),
(147492, 115089, 'fr', 'name', 'Centre de Recherches Interdisciplinaires sur les Mondes IbƩro-amƩricains Contemporains'),
(147493, 115090, 'fr', 'name', 'Laboratoire d’OcĆ©anographie de Villefranche'),
(147494, 115090, 'en', 'name', 'Villefranche Oceanographic Laboratory'),
(147495, 115091, 'fr', 'name', 'Ɖquipe LittĆ©rature et Culture italiennes'),
(147496, 115092, 'es', 'name', 'Tecnológico de Estudios Superiores del Oriente del Estado de México'),
(147497, 115093, 'fr', 'name', 'REGARDS Recherches en Ɖconomie Gestion AgroRessources DurabilitĆ© SantĆ©'),
(147498, 115094, 'pt', 'name', 'Associação para a Inovação e Empreendedorismo de Lisboa'),
(147499, 115095, 'de', 'name', 'Hochschule Bremerhaven'),
(147500, 115095, 'en', 'name', 'University of Applied Sciences Bremerhaven'),
(147501, 115096, 'en', 'name', 'Danish Ministry of Higher Education and Science'),
(147502, 115096, 'da', 'name', 'Uddannelses- og Forskningsministeriet'),
(147503, 115097, 'en', 'name', 'UCSD-CNRS Joint Research Chemistry Laboratory'),
(147504, 115098, 'en', 'name', 'Kensington Health'),
(147505, 115099, 'pt', 'name', 'Centro de Investigacao e Desenvolvimento sobre Direito e Sociedade'),
(147506, 115100, 'id', 'name', 'Universitas Persada Indonesia Yayasan Administrasi Indonesia'),
(147507, 115101, 'fr', 'name', 'ArchĆ©ologie et Histoire Ancienne : MĆ©diterranĆ©e – Europe'),
(147508, 115102, 'de', 'name', 'Deutsch-Kasachische UniversitƤt'),
(147509, 115102, 'en', 'name', 'Kazakh German University'),
(147510, 115102, 'kk', 'name', 'Kazakhstansko-Nemetskiy Universitet'),
(147511, 115102, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾-ŠŠµŠ¼ŠµŃ†ŠŗŠ¾Š³Š¾ Университета'),
(147512, 115103, 'id', 'name', 'Institut Teknologi Budi Utomo'),
(147513, 115104, 'id', 'name', 'Universitas Islam Jember'),
(147514, 115105, 'en', 'name', 'ASM International'),
(147515, 115106, 'pt', 'name', 'Secretaria de Ciência, Tecnologia e Inovação e do Complexo EconÓmico-Industrial da Saúde'),
(147516, 115107, 'fr', 'name', 'Laboratoire de Chimie Physique'),
(147517, 115108, 'pt', 'name', 'Instituto Pensi'),
(147518, 115109, 'en', 'name', 'Indian Institute of Management Visakhapatnam'),
(147519, 115109, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤µą¤æą¤¶ą¤¾ą¤–ą¤Ŗą¤Ÿą„ą¤Øą¤®'),
(147520, 115110, 'da', 'name', 'Davids Samling'),
(147521, 115110, 'en', 'name', 'The David Collection'),
(147522, 115111, 'en', 'name', 'Perm State Medical Academy'),
(147523, 115111, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(147524, 115112, 'fr', 'name', 'Centre de Recherche et de Documentation sur les AmƩriques'),
(147525, 115113, 'en', 'name', 'Moscow State Technological University'),
(147526, 115113, 'ru', 'name', 'Московский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Технологический Университет'),
(147527, 115114, 'no', 'name', 'NTNU Samfunnsforskning'),
(147528, 115114, 'en', 'name', 'NTNU Social Research'),
(147529, 115115, 'id', 'name', 'Institut Teknologi Padang'),
(147530, 115116, 'en', 'name', 'Community Health Systems - Tennova - Jefferson Memorial Hospital'),
(147531, 115117, 'en', 'name', 'American Federation of Teachers'),
(147532, 115118, 'en', 'name', 'C3B Clinical Research (Portugal)'),
(147533, 115119, 'fr', 'name', 'Laboratoire de MƩcanique, Multiphysique, MultiƩchelle'),
(147534, 115120, 'es', 'name', 'Instituto de Desarrollo Tecnológico para la Industria Química'),
(147535, 115121, 'fr', 'name', 'Laboratoire de gƩnie civil et gƩnie mƩcanique'),
(147536, 115122, 'en', 'name', 'Moorea Coral Reef Long Term Ecological Research'),
(147537, 115123, 'pt', 'name', 'Instituto de Investigação e Tecnologia da Agronomia e Meio Ambiente'),
(147538, 115124, 'en', 'name', 'Armauer Hansen Research Institute'),
(147539, 115125, 'en', 'name', 'Federal Scientific Center for Vegetable Growing'),
(147540, 115125, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ селекции Šø семеновоГства овощных ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€'),
(147541, 115126, 'fr', 'name', 'Centre de Recherche et d''Ɖtudes Germaniques'),
(147542, 115127, 'en', 'name', 'Fluid Dynamics Laboratory'),
(147543, 115127, 'fr', 'name', 'Laboratoire de Dynamique des Fluides'),
(147544, 115128, 'fr', 'name', 'Institut de Recherche en CancƩrologie de Montpellier'),
(147545, 115128, 'en', 'name', 'Institute of Cancer Research of Montpellier'),
(147546, 115129, 'en', 'name', 'Center for Magnetic Resonance in Biology and Medicine'),
(147547, 115129, 'fr', 'name', 'Centre de RƩsonance MagnƩtique Biologique et MƩdicale'),
(147548, 115130, 'it', 'name', 'Museo delle Scienze'),
(147549, 115131, 'sw', 'name', 'KCMC'),
(147550, 115131, 'en', 'name', 'Kilimanjaro Christian Medical Centre'),
(147551, 115132, 'en', 'name', 'Institute of Bioinformatics and Applied Biotechnology'),
(147552, 115133, 'en', 'name', 'Macmillan Cancer Support'),
(147553, 115134, 'es', 'name', 'Instituto de Estudios de Ciencias de la Salud de Castilla y León'),
(147554, 115135, 'pt', 'name', 'Hospital Distrital Caldas da Rainha'),
(147555, 115136, 'ga', 'name', 'FondĆŗireacht EolaĆ­ochta Ɖireann'),
(147556, 115136, 'en', 'name', 'Science Foundation Ireland'),
(147557, 115137, 'en', 'name', 'Willows Veterinary Centre and Referral Service'),
(147558, 115138, 'en', 'name', 'Great Norwegian Encyclopedia'),
(147559, 115138, 'no', 'name', 'Store norske leksikon'),
(147560, 115139, 'fr', 'name', 'Institut de MathƩmatiques de Marseille'),
(147561, 115140, 'en', 'name', 'Sechenov University'),
(147562, 115140, 'ru', 'name', 'ŠŸŠµŃ€Š²Ń‹Š¹ московский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. М. Деченова'),
(147563, 115141, 'en', 'name', 'National Institute of Cardiovascular Diseases'),
(147564, 115142, 'fr', 'name', 'Institut de Recherche de Chimie Paris'),
(147565, 115143, 'fr', 'name', 'Centre de ThƩorie et Analyse du Droit'),
(147566, 115144, 'no_lang_code', 'name', 'Advanced Engineering (Czechia)'),
(147567, 115145, 'en', 'name', 'OrthoCarolina'),
(147568, 115146, 'en', 'name', 'Algarve Biomedical Center'),
(147569, 115147, 'en', 'name', 'Yasuda Women''s University'),
(147570, 115147, 'ja', 'name', '安田儳子大学'),
(147571, 115148, 'pt', 'name', 'Toledo Prudente Centro UniversitƔrio'),
(147572, 115149, 'en', 'name', 'Community Health Systems - Mat-Su Regional Medical Center'),
(147573, 115150, 'id', 'name', 'Universitas Nusa Bangsa'),
(147574, 115151, 'en', 'name', 'Vignana Jyothi Institute of Management'),
(147575, 115152, 'pt', 'name', 'Universidade de TrƔs-os-Montes e Alto Douro'),
(147576, 115152, 'en', 'name', 'University of TrƔs-os-Montes and Alto Douro'),
(147577, 115153, 'es', 'name', 'Centro de Investigación de la Caña de Azúcar de Colombia'),
(147578, 115154, 'fr', 'name', 'Ɖcole Nationale d''Agriculture de MeknĆØs'),
(147579, 115154, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للفلاحة ŲØŁ…ŁƒŁ†Ų§Ų³'),
(147580, 115155, 'pt', 'name', 'Centro Interdisciplinar de Estudos Económicos'),
(147581, 115156, 'en', 'name', 'VA San Diego Healthcare System'),
(147582, 115157, 'en', 'name', 'Tokyo Metropolitan Geriatric Hospital'),
(147583, 115157, 'ja', 'name', 'ę±äŗ¬éƒ½å„åŗ·é•·åÆæåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(147584, 115158, 'fr', 'name', 'Immunologie intƩgrative des tumeurs et immunothƩrapie du cancer'),
(147585, 115159, 'fr', 'name', 'Ɖtude des Structures, des Processus d’Adaptation et des Changements de l’Espace'),
(147586, 115160, 'en', 'name', 'Logan & Beaudesert Health Service'),
(147587, 115161, 'en', 'name', 'CCN University of Science and Technology'),
(147588, 115161, 'bn', 'name', 'ą¦øą¦æą¦øą¦æą¦ą¦Ø ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą§Ÿ'),
(147589, 115162, 'fr', 'name', 'Laboratoire Univers et Particules de Montpellier'),
(147590, 115162, 'en', 'name', 'Montpellier Universe and Particles Laboratory'),
(147591, 115163, 'pt', 'name', 'Centro de Estudos de Teatro'),
(147592, 115164, 'fr', 'name', 'Institut de recherches philosophiques'),
(147593, 115165, 'en', 'name', 'Georgian National Academy of Sciences'),
(147594, 115165, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Š“Ń€ŃƒŠ·ŠøŠø'),
(147595, 115165, 'hy', 'name', 'ÕŽÖ€Õ”Õ½ÕæÕ”Õ¶Õ« Ō³Õ«ÕæÕøÖ‚Õ©ÕµÕøÖ‚Õ¶Õ¶Õ„Ö€Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ”ÕÆÕ”Õ¤Õ„Õ“Õ«Õ”'),
(147596, 115165, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒįƒ—įƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(147597, 115166, 'en', 'name', 'Bournemouth University'),
(147598, 115167, 'fr', 'name', 'Laboratoire pour l''Utilisation des Lasers Intenses'),
(147599, 115168, 'en', 'name', 'Paris School of Business'),
(147600, 115169, 'en', 'name', 'National School of Architecture of Versailles'),
(147601, 115169, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Versailles'),
(147602, 115170, 'en', 'name', 'Directorate for Mathematical & Physical Sciences'),
(147603, 115171, 'no_lang_code', 'name', 'Ganga Hospital'),
(147604, 115172, 'no_lang_code', 'name', 'Institut de Soudure'),
(147605, 115173, 'pl', 'name', 'Stowarzyszenie Demeter Polska'),
(147606, 115174, 'fr', 'name', 'Ɖcole supĆ©rieure polytechnique d''Antananarivo'),
(147607, 115175, 'en', 'name', 'Biotechnology Centre of Azores'),
(147608, 115175, 'pt', 'name', 'Centro de Biotecnologia dos AƧores'),
(147609, 115176, 'en', 'name', 'St. Francis Institute of Technology'),
(147610, 115177, 'en', 'name', 'Institute of Aviation Medicine'),
(147611, 115178, 'en', 'name', 'Velammal Medical College Hospital and Research Institute'),
(147612, 115179, 'en', 'name', 'Henry M. Jackson Foundation'),
(147613, 115180, 'en', 'name', 'Centre for Eye Research Australia'),
(147614, 115181, 'es', 'name', 'Fundación FAUTAPO'),
(147615, 115182, 'en', 'name', 'Scottish Longitudinal Study Development & Support Unit'),
(147616, 115183, 'pt', 'name', 'Global ISP (Portugal)'),
(147617, 115183, 'en', 'name', 'Global ISP Sole Proprietorship'),
(147618, 115184, 'pt', 'name', 'Sonangol'),
(147619, 115185, 'en', 'name', 'University of the Gambia'),
(147620, 115186, 'en', 'name', 'Mental Health Research Canada'),
(147621, 115186, 'fr', 'name', 'Recherche en SantƩ Mentale Canada'),
(147622, 115187, 'en', 'name', 'University College of Professional Education'),
(147623, 115187, 'pl', 'name', 'Wyższa Szkoła Kształcenia Zawodowego'),
(147624, 115188, 'id', 'name', 'Universitas Baiturrahmah'),
(147625, 115189, 'en', 'name', 'Animal Welfare Institute'),
(147626, 115190, 'en', 'name', 'Neurophotonics Laboratory'),
(147627, 115191, 'no_lang_code', 'name', 'Centro de SaĆŗde Figueira da Foz Buarcos'),
(147628, 115191, 'pt', 'name', 'Centro de SaĆŗde Figueira da Foz Buarcos (Portugal)'),
(147629, 115192, 'es', 'name', 'Fundación Corazón de Jesús'),
(147630, 115193, 'en', 'name', 'Center for Mind and Culture'),
(147631, 115194, 'en', 'name', 'Islamic Hospital'),
(147632, 115194, 'ar', 'name', 'المستؓفى Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(147633, 115195, 'no_lang_code', 'name', 'Ramsay Health Care (Australia)'),
(147634, 115196, 'pt', 'name', 'Jaba Recordati (Portugal)'),
(147635, 115197, 'pt', 'name', 'CRIVARQUE Estudos de Impacto e Trabalhos Geo-Arqueológicos (Portugal)'),
(147636, 115197, 'en', 'name', 'CRIVARQUE Impact Studies and Geo-Archaeological Works'),
(147637, 115198, 'en', 'name', 'Russian Children''s Clinical Hospital'),
(147638, 115199, 'fr', 'name', 'Laboratoire Information GƩnomique et Structurale'),
(147639, 115200, 'pt', 'name', 'Cooperativa de Ensino Superior ArtĆ­stico do Porto'),
(147640, 115201, 'en', 'name', 'Salford Royal Hospital'),
(147641, 115202, 'fr', 'name', 'Centre de recherche et de documentation europƩennes et internationales'),
(147642, 115203, 'en', 'name', 'Lahore University of Biological and Applied Sciences'),
(147643, 115204, 'pt', 'name', 'Centro de Estudos de ReligiƵes e Culturas Cardeal Hƶffner'),
(147644, 115205, 'fr', 'name', 'Centre Hospitalier Universitaire Mohammed VI'),
(147645, 115206, 'en', 'name', 'CATƓLICA-LISBON Research Unit in Business and Economics'),
(147646, 115206, 'pt', 'name', 'Unidade de Investigação em Gestão e Economia'),
(147647, 115207, 'en', 'name', 'Russian Scientific Center of Radiology and Surgical Technologies'),
(147648, 115207, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр раГиологии Šø Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŃ… технологий'),
(147649, 115208, 'en', 'name', 'Statistics Sweden'),
(147650, 115208, 'sv', 'name', 'Statistiska CentralbyrƄn'),
(147651, 115209, 'en', 'name', 'Nakamura Gakuen University'),
(147652, 115209, 'ja', 'name', 'äø­ę‘å­¦åœ’å¤§å­¦'),
(147653, 115210, 'en', 'name', 'Hokuriku University'),
(147654, 115210, 'ja', 'name', 'åŒ—é™øå¤§å­¦'),
(147655, 115211, 'en', 'name', 'Canterbury District Health Board'),
(147656, 115212, 'de', 'name', 'Konrad-Krieger-Stiftung'),
(147657, 115213, 'en', 'name', 'Scripps Institution of Oceanography'),
(147658, 115214, 'en', 'name', 'European Idiopathic Pulmonary Fibrosis and Related Disorders Federation'),
(147659, 115215, 'en', 'name', 'Health New Zealand'),
(147660, 115215, 'mi', 'name', 'Te Whatu Ora'),
(147661, 115216, 'fr', 'name', 'Centre Thucydide - Analyse et Recherche en Relations Internationales'),
(147662, 115217, 'en', 'name', 'St Christopher''s Hospice'),
(147663, 115218, 'en', 'name', 'CPH Pharma (Portugal)'),
(147664, 115219, 'fr', 'name', 'Laboratoire de MathƩmatiques de BesanƧon'),
(147665, 115220, 'pt', 'name', 'Plataforma Portuguesa das Organizações Não-Governamentais para o Desenvolvimento'),
(147666, 115221, 'ro', 'name', 'Institutul Național de Cercetare-Dezvoltare Pentru Protecția Mediului'),
(147667, 115221, 'en', 'name', 'National Institute for Research and Development in Environmental Protection'),
(147668, 115222, 'fr', 'name', 'Institut des Sciences de l''Evolution de Montpellier'),
(147669, 115223, 'it', 'name', 'Provincia Autonoma di Trento'),
(147670, 115224, 'en', 'name', 'Swedish Collegium for Advanced Study'),
(147671, 115225, 'en', 'name', 'Baltic International Centre for Economic Policy Studies'),
(147672, 115225, 'lv', 'name', 'Baltijas Starptautiskais Ekonomikas Politikas Studiju Centrs'),
(147673, 115226, 'nl', 'name', 'Geneeskundige en Gezondheidsdienst'),
(147674, 115227, 'fr', 'name', 'Laboratoire Albert Fert'),
(147675, 115228, 'en', 'name', 'An Nasher University'),
(147676, 115228, 'id', 'name', 'Universitas An Nasher'),
(147677, 115229, 'en', 'name', 'Swisens AG'),
(147678, 115229, 'no_lang_code', 'name', 'Swisens AG (Switzerland)'),
(147679, 115230, 'fr', 'name', 'Laboratoire Paul PainlevƩ'),
(147680, 115231, 'en', 'name', 'Baylor Genetics'),
(147681, 115232, 'pt', 'name', 'Centro de SaĆŗde de Rio de Mouro (Portugal)'),
(147682, 115232, 'en', 'name', 'Health Centre of Rio de Mouro'),
(147683, 115233, 'no_lang_code', 'name', 'Hefei General Machinery Research Institute (China)'),
(147684, 115233, 'zh', 'name', 'åˆč‚„é€šē”Øęœŗę¢°ē ”ē©¶é™¢'),
(147685, 115234, 'en', 'name', 'Bihar Agricultural University'),
(147686, 115234, 'hi', 'name', 'बिहार ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(147687, 115235, 'en', 'name', 'University of Luxembourg'),
(147688, 115235, 'de', 'name', 'UniversitƤt Luxemburg'),
(147689, 115235, 'fr', 'name', 'UniversitƩ du Luxembourg'),
(147690, 115236, 'en', 'name', 'Molise Region'),
(147691, 115236, 'it', 'name', 'Regione Molise'),
(147692, 115237, 'en', 'name', 'Centre for Ethnology and Comparative Sociology'),
(147693, 115237, 'fr', 'name', 'Laboratoire d''ethnologie et de sociologie comparative'),
(147694, 115238, 'fr', 'name', 'Laboratoire de Physique ThƩorique et Hautes Energies'),
(147695, 115239, 'en', 'name', 'Copenhagen School of Design and Technology'),
(147696, 115239, 'da', 'name', 'KĆøbenhavns Erhvervsakademi'),
(147697, 115240, 'en', 'name', 'Oromia State University'),
(147698, 115240, 'om', 'name', 'Yuunivarsiitii Naannoo Oromiyaa'),
(147699, 115240, 'am', 'name', 'į‹ØįŠ¦įˆ®įˆšį‹« įŠ­įˆįˆ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(147700, 115241, 'en', 'name', 'Grodno State Medical University'),
(147701, 115241, 'be', 'name', 'ГроГзенскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃƒŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(147702, 115241, 'ru', 'name', 'ГроГненский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(147703, 115242, 'en', 'name', 'Institution of Engineering and Technology'),
(147704, 115243, 'it', 'name', 'Regione Basilicata'),
(147705, 115244, 'fr', 'name', 'Centre Lasers Intenses et Applications'),
(147706, 115245, 'pt', 'name', 'Arquitectos Sem Fronteiras Portugal'),
(147707, 115246, 'fr', 'name', 'Institut des Sciences et Techniques de l''AntiquitƩ'),
(147708, 115247, 'en', 'name', 'Institute of Management Technology'),
(147709, 115248, 'en', 'name', 'Omsk State Medical University'),
(147710, 115248, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(147711, 115249, 'en', 'name', 'Janta Vedic College'),
(147712, 115250, 'fr', 'name', 'Laboratoire de MathƩmatiques et de leurs Applications'),
(147713, 115250, 'en', 'name', 'Laboratory of Mathematics and their Applications'),
(147714, 115251, 'en', 'name', 'Canadian College of Integrative Medicine'),
(147715, 115252, 'es', 'name', 'Instituto de Estudios CrĆ­ticos en Humanidades'),
(147716, 115253, 'de', 'name', 'Dermatopathologie Friedrichshafen'),
(147717, 115254, 'en', 'name', 'The University of Queensland'),
(147718, 115255, 'fr', 'name', 'Institut de Recherche Agricole pour le DƩveloppement'),
(147719, 115255, 'en', 'name', 'Institute of Agricultural Research for Development'),
(147720, 115256, 'pt', 'name', 'Associação Médica Brasileira'),
(147721, 115256, 'en', 'name', 'Brazilian Medical Association'),
(147722, 115257, 'fr', 'name', 'Centre Pierre Naville'),
(147723, 115258, 'en', 'name', 'Public Works'),
(147724, 115259, 'fr', 'name', 'Service de Physique de l''Ɖtat CondensĆ©'),
(147725, 115260, 'en', 'name', 'Hangzhou Adamerck Pharmlabs Inc.'),
(147726, 115260, 'no_lang_code', 'name', 'Hangzhou Adamerck Pharmlabs Inc. (China)'),
(147727, 115260, 'zh', 'name', 'ę­å·žå„„é»˜åŒ»čÆč‚”ä»½ęœ‰é™å…¬åø'),
(147728, 115261, 'en', 'name', 'National Dong Hwa University'),
(147729, 115261, 'zh', 'name', 'åœ‹ē«‹ę±čÆå¤§å­ø'),
(147730, 115262, 'en', 'name', 'Department of Virology'),
(147731, 115263, 'en', 'name', 'Insect Models of Innate Immunity'),
(147732, 115263, 'fr', 'name', 'Modèles Insectes de l''Immunité Innée'),
(147733, 115264, 'de', 'name', 'Diligentia - Stiftung für empirische Forschung'),
(147734, 115265, 'en', 'name', 'Folkwang University of the Arts'),
(147735, 115265, 'de', 'name', 'Folkwang Universität der Künste'),
(147736, 115266, 'en', 'name', 'Community Health Systems - Navarro Regional Hospital'),
(147737, 115267, 'en', 'name', 'Media Design School'),
(147738, 115268, 'en', 'name', 'National Board of Health and Welfare'),
(147739, 115269, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Pancasetia'),
(147740, 115270, 'pt', 'name', 'Via Hominis'),
(147741, 115271, 'no_lang_code', 'name', 'Rajagiri Hospital'),
(147742, 115272, 'pt', 'name', 'Centro de Estudos e Avaliação em Saúde'),
(147743, 115273, 'fr', 'name', 'Centre d''Etudes Prospectives et d''Informations Internationales'),
(147744, 115274, 'de', 'name', 'BundesprƤsident'),
(147745, 115275, 'en', 'name', 'National Food Chain Safety Office'),
(147746, 115276, 'no_lang_code', 'name', 'Unilabs (Norway)'),
(147747, 115277, 'sl', 'name', 'Ekonomski InŔtitut'),
(147748, 115278, 'fr', 'name', 'Laboratoire d''Informatique, de Modélisation et d''Optimisation des Systèmes'),
(147749, 115278, 'en', 'name', 'Laboratory of Computing, Modelling and Optimization of the Systems'),
(147750, 115279, 'en', 'name', 'Alexandria National University'),
(147751, 115280, 'en', 'name', 'Open University'),
(147752, 115280, 'pt', 'name', 'Universidade Aberta'),
(147753, 115281, 'fr', 'name', 'Centre de Biologie Structurale'),
(147754, 115282, 'pt', 'name', 'Camara dos Tecnicos Oficiais de Contas'),
(147755, 115283, 'en', 'name', 'University of Shimane'),
(147756, 115283, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹å¤§å­¦'),
(147757, 115284, 'en', 'name', 'Shizuoka Institute of Science and Technology'),
(147758, 115284, 'ja', 'name', 'é™å²”ē†å·„ē§‘å¤§å­¦'),
(147759, 115285, 'en', 'name', 'Three Rivers Park District'),
(147760, 115286, 'en', 'name', 'Eternal University'),
(147761, 115287, 'fr', 'name', 'ModĆØles et simulations pour l''Architecture et le Patrimoine'),
(147762, 115288, 'fr', 'name', 'Centre d''Ʃtudes sociologiques et politiques Raymond-Aron'),
(147763, 115289, 'en', 'name', 'Rahedanesh Institute of Higher Education'),
(147764, 115290, 'en', 'name', 'Maastricht School of Management'),
(147765, 115291, 'de', 'name', 'Klinikum Wels-Grieskirchen'),
(147766, 115292, 'fr', 'name', 'Institut SƩnƩgalais de Recherches Agricoles'),
(147767, 115293, 'en', 'name', 'Berkeley College'),
(147768, 115294, 'es', 'name', 'Ministerio de Ciencia, TecnologĆ­a y Medio Ambiente'),
(147769, 115295, 'en', 'name', 'University of Technology and Applied Sciences'),
(147770, 115295, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(147771, 115296, 'en', 'name', 'Vivekananda Satavarshiki Mahavidyalaya'),
(147772, 115297, 'fr', 'name', 'Laboratoire Structures, PropriƩtƩs et ModƩlisation des Solides'),
(147773, 115298, 'en', 'name', 'Rady Children''s Hospital-San Diego'),
(147774, 115299, 'fr', 'name', 'Centre d''Etudes et de Recherches Comparatives sur les Constitutions, les LibertƩs et l''Etat'),
(147775, 115300, 'fr', 'name', 'Institut de Recherche sur les PhĆ©nomĆØnes Hors Ɖquilibre'),
(147776, 115301, 'fr', 'name', 'Sciences pour l''Environnement'),
(147777, 115302, 'en', 'name', 'Medical Research Institute'),
(147778, 115303, 'fr', 'name', 'Laboratoire Hydrazines et ComposƩs EnergƩtiques PolyazotƩs'),
(147779, 115304, 'it', 'name', 'Croce Rossa Svizzera'),
(147780, 115304, 'fr', 'name', 'Croix-Rouge suisse'),
(147781, 115304, 'de', 'name', 'Schweizerisches Rote Kreuz'),
(147782, 115304, 'en', 'name', 'Swiss Red Cross'),
(147783, 115305, 'en', 'name', 'Institute for Sustainable Energy Policies'),
(147784, 115305, 'ja', 'name', 'ē’°å¢ƒć‚Øćƒćƒ«ć‚®ćƒ¼ę”æē­–ē ”ē©¶ę‰€'),
(147785, 115306, 'en', 'name', 'William Carey University'),
(147786, 115307, 'de', 'name', 'Fachhochschule Salzburg'),
(147787, 115307, 'en', 'name', 'Salzburg University of Applied Sciences'),
(147788, 115308, 'en', 'name', 'State Marine Technical University of St. Petersburg'),
(147789, 115308, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ морской технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(147790, 115309, 'pt', 'name', 'Centro de Pesquisa e Desenvolvimento da Sonangol, S.A.'),
(147791, 115310, 'pt', 'name', 'Mais Sindicato'),
(147792, 115311, 'en', 'name', 'Diabetes Center Berne'),
(147793, 115312, 'pt', 'name', 'Liga para a Protecção da Natureza'),
(147794, 115313, 'fr', 'name', 'Laboratoire de Chimie Physique et Microbiologie pour l''Environnement'),
(147795, 115313, 'en', 'name', 'Laboratory of Physical Chemistry and Microbiology for Materials and the Environment'),
(147796, 115314, 'en', 'name', 'Pediatric Oncology Group'),
(147797, 115315, 'fr', 'name', 'MolƩcule aux Nanos-objets : RƩactivitƩ, Interactions et Spectroscopies'),
(147798, 115316, 'no_lang_code', 'name', 'Aflac (United States)'),
(147799, 115317, 'id', 'name', 'Institut Bisnis Nusantara'),
(147800, 115318, 'fr', 'name', 'Pharmacologie et Pathologies Fragilisantes'),
(147801, 115319, 'fr', 'name', 'Centre de Physique ThƩorique'),
(147802, 115320, 'nl', 'name', 'Arq Psychotrauma Expert Groep'),
(147803, 115320, 'en', 'name', 'Arq Psychotrauma Expert Group'),
(147804, 115321, 'en', 'name', 'Wellesley College'),
(147805, 115322, 'no_lang_code', 'name', 'Seiko Holdings (Japan)'),
(147806, 115322, 'ja', 'name', 'ć‚»ć‚¤ć‚³ćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(147807, 115323, 'ro', 'name', 'Spitalul Clinic Dr. Victor Babes'),
(147808, 115324, 'en', 'name', 'Environment Agency Austria'),
(147809, 115324, 'de', 'name', 'Umweltbundesamt'),
(147810, 115325, 'fr', 'name', 'Centre de Recherches Linguistiques sur l''Asie Orientale'),
(147811, 115326, 'en', 'name', 'Yaroslavl State Medical Academy'),
(147812, 115326, 'ru', 'name', 'Ярославский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(147813, 115327, 'en', 'name', 'Centre for Biomedical Network Research on Rare Diseases'),
(147814, 115327, 'es', 'name', 'Centro de Investigación Biomédica en Red de Enfermedades Raras'),
(147815, 115328, 'fr', 'name', 'Centre d’Élaboration de MatĆ©riaux et d’Études Structurales'),
(147816, 115328, 'en', 'name', 'Centre for Materials Elaboration and Structural Studies'),
(147817, 115329, 'fr', 'name', 'Institut Pasteur de CƓte d''Ivoire'),
(147818, 115330, 'fr', 'name', 'Institut sur la Gouvernance'),
(147819, 115330, 'en', 'name', 'Institute on Governance'),
(147820, 115331, 'en', 'name', 'St.Petersburg V.M.Bekhterev Psychoneurological Research Institute'),
(147821, 115331, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ психоневрологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.М. Бехтерева'),
(147822, 115332, 'en', 'name', 'Center for Interdisciplinary Research in Biology'),
(147823, 115332, 'fr', 'name', 'Centre Interdisciplinaire de Recherche en Biologie'),
(147824, 115333, 'es', 'name', 'Escuela Normal Miguel F. Martƭnez, Centenaria y BenemƩrita'),
(147825, 115334, 'en', 'name', 'Nazi Boni University'),
(147826, 115334, 'fr', 'name', 'UniversitƩ Nazi Boni'),
(147827, 115335, 'en', 'name', 'Development Fund'),
(147828, 115335, 'no', 'name', 'Utviklingsfondet'),
(147829, 115336, 'fr', 'name', 'Droit International ComparƩ et EuropƩen'),
(147830, 115337, 'en', 'name', 'Community Health Systems - Physicians Regional Healthcare System - Collier'),
(147831, 115338, 'en', 'name', 'Research Institute of Tsinghua University in Shenzhen'),
(147832, 115338, 'zh', 'name', 'ę·±åœ³ęø…čÆå¤§å­øē ”ē©¶é™¢'),
(147833, 115339, 'en', 'name', 'Community Health Systems - Poplar Bluff Regional Medical Center - Oak Grove'),
(147834, 115340, 'es', 'name', 'Centro de Investigaciones en FitopatologĆ­as'),
(147835, 115341, 'no_lang_code', 'name', 'Biolog (United States)'),
(147836, 115342, 'en', 'name', 'Immunology from Concept and Experiments to Translation'),
(147837, 115343, 'pt', 'name', 'ClĆ­nica de Ortopedia Doutor Noronha (Portugal)'),
(147838, 115343, 'en', 'name', 'Doctor Noronha Orthopedics Clinic'),
(147839, 115344, 'pt', 'name', 'Labbels'),
(147840, 115345, 'pt', 'name', 'Laboratório de Genética'),
(147841, 115346, 'en', 'name', 'Kidney Centre'),
(147842, 115347, 'en', 'name', 'Penza State University of Architecture and Construction'),
(147843, 115347, 'ru', 'name', 'Пензенский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ Šø ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(147844, 115348, 'en', 'name', 'Croatian Institute of History'),
(147845, 115349, 'en', 'name', 'Tabaran Institute of Higher Education'),
(147846, 115349, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ تابران'),
(147847, 115350, 'en', 'name', 'Greenlane Clinical Centre'),
(147848, 115351, 'fr', 'name', 'Institut de PlanƩtologie et d''Astrophysique de Grenoble'),
(147849, 115352, 'fr', 'name', 'UniversitƩ de Pau et des Pays de l''Adour'),
(147850, 115352, 'eu', 'name', 'Paueko eta Aturrialdeko Unibertsitatea'),
(147851, 115353, 'en', 'name', 'Martha-Maria Hospital'),
(147852, 115354, 'en', 'name', 'Salford Royal NHS Foundation Trust'),
(147853, 115355, 'en', 'name', 'Department of Mathematics and their Applications'),
(147854, 115355, 'fr', 'name', 'DƩpartement de mathƩmatiques et applications'),
(147855, 115356, 'en', 'name', 'D.S. Adegbenro ICT Polytechnic'),
(147856, 115357, 'fr', 'name', 'Ɖvolution, GĆ©nomes, Comportement, Ɖcologie'),
(147857, 115358, 'en', 'name', 'Johns Hopkins Materials Characterization and Processing Facility'),
(147858, 115359, 'es', 'name', 'Centro de Investigación de Métodos Computacionales'),
(147859, 115360, 'en', 'name', 'BELLA Labor'),
(147860, 115361, 'en', 'name', 'National Institute of Research and Development for Biological Sciences'),
(147861, 115362, 'en', 'name', 'Annecy-le-Vieux Particle Physics Laboratory'),
(147862, 115362, 'fr', 'name', 'Laboratoire d’Annecy de Physique des Particules'),
(147863, 115363, 'pl', 'name', 'Biblioteka Narodowa'),
(147864, 115363, 'en', 'name', 'National Library of Poland'),
(147865, 115364, 'no_lang_code', 'name', 'Human Longevity (United States)'),
(147866, 115365, 'fr', 'name', 'Anglophonie: communautƩs, Ʃcritures'),
(147867, 115366, 'en', 'name', 'Bangkok Hospital'),
(147868, 115366, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(147869, 115367, 'no_lang_code', 'name', 'CNH Industrial (United Kingdom)'),
(147870, 115368, 'en', 'name', 'Calcutta Research Group'),
(147871, 115369, 'pt', 'name', 'Clƭnica UniversitƔria de Cardiologia'),
(147872, 115369, 'en', 'name', 'University Clinic of Cardiology'),
(147873, 115370, 'en', 'name', 'Al-Azhar University – Gaza'),
(147874, 115370, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأزهر في ŲŗŲ²Ų©'),
(147875, 115371, 'pt', 'name', 'Sociedade Portuguesa de Medicina DentƔria Digital'),
(147876, 115372, 'en', 'name', 'Institute for Systems Engineering and Computers'),
(147877, 115372, 'pt', 'name', 'Instituto de Engenharia de Sistemas e Computadores'),
(147878, 115373, 'en', 'name', 'Canadian Institute for Advanced Research'),
(147879, 115373, 'fr', 'name', 'Institut Canadien de Recherches AvancƩes'),
(147880, 115374, 'fr', 'name', 'LIP6'),
(147881, 115375, 'no_lang_code', 'name', 'Hiram College'),
(147882, 115376, 'da', 'name', 'Økologisk Samsø (Denmark)'),
(147883, 115377, 'de', 'name', 'Technische UniversitƤt Ilmenau'),
(147884, 115378, 'en', 'name', 'Heuristics and Diagnostics for Complex Systems'),
(147885, 115378, 'fr', 'name', 'Heuristique et Diagnostic des SystĆØmes Complexes'),
(147886, 115379, 'en', 'name', 'University of Health Sciences'),
(147887, 115380, 'fr', 'name', 'Analyse, GƩomƩtrie et ModƩlisation'),
(147888, 115381, 'pt', 'name', 'Livraria Escolar Editora (Portugal)'),
(147889, 115381, 'en', 'name', 'School Bookshop Publisher'),
(147890, 115382, 'es', 'name', 'Instituto de AgrobiotecnologĆ­a del Litoral'),
(147891, 115383, 'pt', 'name', 'Rede Municipal de Bibliotecas de Almada'),
(147892, 115384, 'en', 'name', 'People''s Hospital of Xinjiang Uygur Autonomous Region'),
(147893, 115384, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(147894, 115385, 'en', 'name', 'Independent Medical Alliance'),
(147895, 115386, 'pt', 'name', 'Unidade de TransferĆŖncia de Tecnologia'),
(147896, 115387, 'en', 'name', 'Medicina'),
(147897, 115387, 'pl', 'name', 'Specjalistyczne Centrum Diagnostyczno-Zabiegowe MEDICINA'),
(147898, 115388, 'fr', 'name', 'Institut de Recherches et d''Etudes sur les Mondes Arabes et Musulmans'),
(147899, 115389, 'fr', 'name', 'Centre Lillois d''Etudes et de Recherches Sociologiques et Economiques'),
(147900, 115390, 'en', 'name', 'Reef Ecologic'),
(147901, 115391, 'no_lang_code', 'name', 'NRG Oncology'),
(147902, 115392, 'fr', 'name', 'Biologie cellulaire et Cancer'),
(147903, 115392, 'en', 'name', 'Cell Biology and Cancer'),
(147904, 115393, 'en', 'name', 'Human Rights Centre'),
(147905, 115393, 'pt', 'name', 'Universidade de Coimbra Ius Gentium Conimbrigae Centro de Direitos Humanos'),
(147906, 115394, 'en', 'name', 'First Pavlov State Medical University of St. Petersburg'),
(147907, 115394, 'ru', 'name', 'ŠŸŠµŃ€Š²Ń‹Š¹ Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика И. П. Павлова'),
(147908, 115395, 'pt', 'name', 'Laboratório de Farmacologia Clínica e Terapêutica'),
(147909, 115396, 'fr', 'name', 'Laboratoire Analyse, GƩomƩtrie et Applications'),
(147910, 115397, 'en', 'name', 'Kavli Institute for Theoretical Sciences'),
(147911, 115397, 'zh', 'name', '中国科学院理论物理研究所'),
(147912, 115398, 'es', 'name', 'Centros de Integración Juvenil, A.C.'),
(147913, 115399, 'en', 'name', 'Saint-Petersburg State University of Telecommunications'),
(147914, 115399, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹ имени проф. М. А. Бонч-Š‘Ń€ŃƒŠµŠ²ŠøŃ‡Š°'),
(147915, 115400, 'pt', 'name', 'DATINFOR (Portugal)'),
(147916, 115401, 'fr', 'name', 'Institut de MathƩmatiques de Bordeaux'),
(147917, 115402, 'en', 'name', 'European Brain Research Institute'),
(147918, 115403, 'en', 'name', 'A. Veeriya Vandayar Memorial Sri Pushpam College'),
(147919, 115403, 'ta', 'name', 'ą®…. ą®µąÆ€ą®°ąÆˆą®Æą®¾ ą®µą®¾ą®£ąÆą®ŸąÆˆą®Æą®¾ą®°ąÆ நினைவு ą®øąÆą®°ąÆ€ ą®ŖąÆą®ŸąÆą®Ŗą®®ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(147920, 115404, 'fr', 'name', 'Cancers et PrƩventions'),
(147921, 115405, 'fr', 'name', 'Laboratoire de Chimie et Biologie des MƩtaux'),
(147922, 115406, 'fr', 'name', 'MarchƩs, Institutions, LibertƩs'),
(147923, 115407, 'fr', 'name', 'Langages, LittĆ©ratures, SociĆ©tĆ©s. Ɖtudes TransfrontaliĆØres et Internationales'),
(147924, 115408, 'fr', 'name', 'Institut des Textes et Manuscrits Modernes'),
(147925, 115409, 'fr', 'name', 'Centre de recherche droit Dauphine'),
(147926, 115410, 'fr', 'name', 'Laboratoire d’Analyse et de MathĆ©matiques AppliquĆ©es'),
(147927, 115411, 'ca', 'name', 'Hospital de Sant Joan DespĆ­ MoisĆØs Broggi'),
(147928, 115412, 'no_lang_code', 'name', 'Ansaldo (Italy)'),
(147929, 115413, 'fr', 'name', 'Biologie du Chloroplaste et Perception de la LumiĆØre chez les Microalgues'),
(147930, 115413, 'en', 'name', 'Chloroplast Biology and Light-sensing in Microalgae'),
(147931, 115414, 'fr', 'name', 'Centre d''Anthropologie Culturelle'),
(147932, 115414, 'en', 'name', 'Research Center For Cultural Anthropology'),
(147933, 115415, 'en', 'name', 'Jakarta Theological Seminary'),
(147934, 115415, 'id', 'name', 'Sekolah Tinggi Filsafat Teologi Jakarta'),
(147935, 115416, 'en', 'name', 'CT Group Of Institutions'),
(147936, 115417, 'en', 'name', 'National Research Center for Radiation Medicine, Hematology and Oncology of the National Academy of Medical Sciences of Ukraine'),
(147937, 115417, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр раГіаційної меГицини, гематології та онкології ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України'),
(147938, 115418, 'en', 'name', 'Children''s Hospital Zagreb'),
(147939, 115418, 'hr', 'name', 'Klinika za Djecje bolesti Zagreb'),
(147940, 115419, 'en', 'name', 'University of Kigali');
INSERT INTO `ror_settings` VALUES
(147941, 115420, 'en', 'name', 'DH Debate History Publication and Research Sole Proprietorship'),
(147942, 115420, 'pt', 'name', 'DH Debater a História Publicação e Investigação (Portugal)'),
(147943, 115421, 'id', 'name', 'Universitas Doktor Nugroho Magetan'),
(147944, 115422, 'es', 'name', 'Instituto Superior Tecnológico Carlos Cisneros'),
(147945, 115423, 'de', 'name', 'Nationalpark GesƤuse'),
(147946, 115424, 'it', 'name', 'Azienda UnitĆ  Sanitaria Locale Piacenza'),
(147947, 115425, 'en', 'name', 'Melbourne Genomics Health Alliance'),
(147948, 115426, 'en', 'name', 'OHMX.bio (Belgium)'),
(147949, 115427, 'fr', 'name', 'Laboratoire d''Ʃconomie appliquƩe au dƩveloppement'),
(147950, 115428, 'nl', 'name', 'GGD Zuid Limburg'),
(147951, 115429, 'pt', 'name', 'Fundação Frei Pedro'),
(147952, 115430, 'en', 'name', 'Institute for Economic Research'),
(147953, 115430, 'sl', 'name', 'InŔtitut za Ekonomska Raziskovanja'),
(147954, 115431, 'en', 'name', 'Luxembourg Centre for European Law'),
(147955, 115432, 'en', 'name', 'Sundsvall Municipality'),
(147956, 115433, 'en', 'name', 'Icelandic Heart Association'),
(147957, 115434, 'fr', 'name', 'Laboratoire Bordelais de Recherche en Informatique'),
(147958, 115435, 'fr', 'name', 'Centre Interdisciplinaire de Recherches sur les Langues Et la PensƩe'),
(147959, 115436, 'pt', 'name', 'Unidade Local de SaĆŗde do Norte Alentejano EPE'),
(147960, 115437, 'pt', 'name', 'Centro UniversitƔrio de Brasƭlia'),
(147961, 115437, 'en', 'name', 'University Center of BrasĆ­lia'),
(147962, 115438, 'fr', 'name', 'Laboratoire AmĆ©nagement Ɖconomie Transports'),
(147963, 115439, 'en', 'name', 'Sant Baba Bhag Singh University'),
(147964, 115440, 'pt', 'name', 'Instituto de Histologia e Biologia do Desenvolvimento'),
(147965, 115441, 'id', 'name', 'Universitas Ichsan Gorontalo'),
(147966, 115442, 'en', 'name', 'Families USA'),
(147967, 115443, 'pt', 'name', 'Fundação UniversitÔria de Cardiologia'),
(147968, 115444, 'tr', 'name', 'Güven Hastanesi'),
(147969, 115444, 'en', 'name', 'Güven Hospital'),
(147970, 115445, 'pt', 'name', 'Unidade Hospitalar da Póvoa de Varzim'),
(147971, 115446, 'en', 'name', 'Swami Keshwanand Rajasthan Agricultural University'),
(147972, 115447, 'fr', 'name', 'SystĆØmes MolĆ©culaires et nanoMatĆ©riaux pour l''Ɖnergie et la SantĆ©'),
(147973, 115448, 'pt', 'name', 'Centro de Investigação em Estudos Regionais e Locais'),
(147974, 115449, 'en', 'name', 'Fisk University'),
(147975, 115449, 'es', 'name', 'Universidad de Fisk'),
(147976, 115450, 'en', 'name', 'Kebbi State University of Science and Technology'),
(147977, 115451, 'no_lang_code', 'name', 'Piaggio Aerospace (Italy)'),
(147978, 115452, 'en', 'name', 'University of Santa Monica'),
(147979, 115453, 'fr', 'name', 'BiomatƩriaux et Inflammation en Site Osseux'),
(147980, 115454, 'de', 'name', 'Sozialstiftung Bamberg'),
(147981, 115455, 'en', 'name', 'Khulna Khan Bahadur Ahsanullah University'),
(147982, 115456, 'fr', 'name', 'Centre Georg Simmel'),
(147983, 115457, 'en', 'name', 'Hospice UK'),
(147984, 115458, 'en', 'name', 'Omeo Kumar Das Institute of Social Change and Development'),
(147985, 115459, 'no_lang_code', 'name', 'Euroimmun Medizinische Labordiagnostika (Germany)'),
(147986, 115460, 'en', 'name', 'Imam Khomeini International University'),
(147987, 115460, 'fa', 'name', 'دانؓگاه ŲØŪŒŁ† Ų§Ł„Ł…Ł„Ł„ŪŒ Ų§Ł…Ų§Ł… Ų®Ł…ŪŒŁ†ŪŒ'),
(147988, 115461, 'en', 'name', 'Arab Federation for Libraries & Information'),
(147989, 115461, 'ar', 'name', 'ال؄تحاد Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ł„Ł…ŁƒŲŖŲØŲ§ŲŖ ŁˆŲ§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ - اعلم'),
(147990, 115462, 'no_lang_code', 'name', 'Lancet Laboratories'),
(147991, 115463, 'fr', 'name', 'Centre de Recherche en Managment'),
(147992, 115463, 'en', 'name', 'Toulouse School of Management Research'),
(147993, 115464, 'en', 'name', 'Shanghai Research Institute of Materials'),
(147994, 115464, 'zh', 'name', 'äøŠęµ·ęę–™ē ”ē©¶ę‰€'),
(147995, 115465, 'en', 'name', 'Kwara State University'),
(147996, 115466, 'en', 'name', 'Georgia Tech-CNRS Laboratory'),
(147997, 115467, 'pt', 'name', 'Biblioteca da Direção-Geral da Qualificação dos Trabalhadores em Funções Públicas'),
(147998, 115468, 'en', 'name', 'University of Technology and Applied Sciences-Nizwa'),
(147999, 115468, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© Ł†Ų²ŁˆŪŒ'),
(148000, 115469, 'fr', 'name', 'Association des joueurs de la Ligue majeure de baseball'),
(148001, 115469, 'en', 'name', 'Major League Baseball Players Association'),
(148002, 115470, 'en', 'name', 'Zoological Survey of India'),
(148003, 115471, 'en', 'name', 'St. John''s Hospital'),
(148004, 115471, 'hu', 'name', 'Szent JÔnos KórhÔz'),
(148005, 115472, 'en', 'name', 'Community Health Systems - Carlsbad Medical Center'),
(148006, 115473, 'en', 'name', 'Smolensk State University'),
(148007, 115473, 'ru', 'name', 'Дмоленский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(148008, 115474, 'fr', 'name', 'Laboratoire de Psychologie et NeuroCognition'),
(148009, 115475, 'en', 'name', 'Jiangsu Institute of Parasitic Diseases'),
(148010, 115475, 'zh', 'name', 'ę±Ÿč‹ēœåÆ„ē”Ÿč™«ē—…é˜²ę²»ē ”ē©¶ę‰€'),
(148011, 115476, 'en', 'name', 'Jagannath University'),
(148012, 115477, 'pt', 'name', 'Universidade do Algarve'),
(148013, 115477, 'en', 'name', 'University of Algarve'),
(148014, 115478, 'en', 'name', 'Golden Gate University'),
(148015, 115479, 'en', 'name', 'National University "Yuri Kondratyuk Poltava Polytechnic"'),
(148016, 115479, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠ° політехніка імені Š®Ń€Ń–Ń ŠšŠ¾Š½Š“Ń€Š°Ń‚ŃŽŠŗŠ°Ā»'),
(148017, 115480, 'en', 'name', 'Marathwada Agricultural University'),
(148018, 115480, 'hi', 'name', 'वसंतराव ą¤Øą¤¾ą¤ˆą¤• मराठवाऔा ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(148019, 115481, 'en', 'name', 'Community Health Systems - East Georgia Regional Medical Center'),
(148020, 115482, 'fr', 'name', 'Laboratoire d''Informatique, Signaux et SystĆØmes de Sophia Antipolis'),
(148021, 115483, 'en', 'name', 'Interdisciplinary Physics Laboratory'),
(148022, 115483, 'fr', 'name', 'Laboratoire Interdisciplinaire de Physique'),
(148023, 115484, 'en', 'name', 'Africa Rice Center'),
(148024, 115485, 'fr', 'name', 'Centre Camille Jullian'),
(148025, 115486, 'pt', 'name', 'Laboratório de Arquitectura Centro de Estudos'),
(148026, 115487, 'fr', 'name', 'Ɖcole Nationale Polytechnique d''Oran'),
(148027, 115487, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© المتعددة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖ ŲØŁˆŁ‡Ų±Ų§Ł† Ł…ŁˆŲ±ŁŠŲ³ Ų£ŁˆŲÆŲ§Ł†'),
(148028, 115488, 'fr', 'name', 'STELLA MARE'),
(148029, 115489, 'no_lang_code', 'name', 'Photonic Systems (United States)'),
(148030, 115490, 'en', 'name', 'Beijing Normal University'),
(148031, 115490, 'zh', 'name', 'åŒ—äŗ¬åøˆčŒƒå¤§å­¦'),
(148032, 115491, 'en', 'name', 'Community Health Systems - Lake Granbury Medical Center'),
(148033, 115492, 'fr', 'name', 'Savoirs, Textes, Langage'),
(148034, 115493, 'en', 'name', 'Royal College of Paediatrics and Child Health'),
(148035, 115494, 'no_lang_code', 'name', 'Beiersdorf (Germany)'),
(148036, 115495, 'en', 'name', 'Logan Hospital'),
(148037, 115496, 'fr', 'name', 'Fondation pour l’innovation en CadiomĆ©tabolisme et Nutrition'),
(148038, 115496, 'en', 'name', 'Foundation for Innovation in Cardiometabolism and Nutrition'),
(148039, 115497, 'en', 'name', 'Tula State University'),
(148040, 115497, 'ru', 'name', 'Тульский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(148041, 115498, 'fr', 'name', 'Laboratoire Architecture Ville Urbanisme Environnement'),
(148042, 115499, 'en', 'name', 'King Edward VII Hospital'),
(148043, 115500, 'en', 'name', 'Coffee Consulate (Germany)'),
(148044, 115501, 'en', 'name', 'Fulda University of Applied Sciences'),
(148045, 115501, 'de', 'name', 'Hochschule Fulda'),
(148046, 115502, 'pt', 'name', 'Unidade Local de SaĆŗde do TĆ¢mega e Sousa'),
(148047, 115503, 'en', 'name', 'Mazandaran University of Science and Technology'),
(148048, 115503, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† مازندران'),
(148049, 115504, 'id', 'name', 'Universitas 45 Surabaya'),
(148050, 115505, 'no_lang_code', 'name', 'Rio Tinto (Australia)'),
(148051, 115506, 'fr', 'name', 'Centre de recherches juridiques de Grenoble'),
(148052, 115507, 'pt', 'name', 'Sociedade Portuguesa de Cardiologia'),
(148053, 115508, 'fr', 'name', 'HƓpital Paul-Doumer'),
(148054, 115509, 'en', 'name', 'Institute of Information Technologies and Systems of the National Academy of Sciences of Ukraine'),
(148055, 115509, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ інформаційних технологій та систем ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(148056, 115510, 'fr', 'name', 'Laboratoire de chimie des substances naturelles'),
(148057, 115511, 'en', 'name', 'Child Mind Institute'),
(148058, 115512, 'fr', 'name', 'Centre Hospitalier Sud Francilien'),
(148059, 115513, 'pt', 'name', 'Centro de Investigação em Política Economia e Sociedade'),
(148060, 115513, 'en', 'name', 'Lusofona Centre on GLobal Challenges'),
(148061, 115514, 'fr', 'name', 'Processus d''Activation SĆ©lective par Transfert d''Ɖnergie Uni-Ć©lectronique ou Radiatif'),
(148062, 115515, 'en', 'name', 'Nutrition Metabolism Aquaculture'),
(148063, 115515, 'fr', 'name', 'Nutrition, MƩtabolisme, Aquaculture'),
(148064, 115516, 'en', 'name', 'University General Hospital Attikon'),
(148065, 115516, 'el', 'name', 'Ī Ī‘ĪĪ•Ī Ī™Ī£Ī¤Ī—ĪœĪ™Ī‘ĪšĪŸ Ī“Ī•ĪĪ™ĪšĪŸ ĪĪŸĪ£ĪŸĪšĪŸĪœĪ•Ī™ĪŸ "Ī‘Ī¤Ī¤Ī™ĪšĪŸĪ"'),
(148066, 115517, 'en', 'name', 'Tinbergen Institute'),
(148067, 115518, 'de', 'name', 'Forschungsinstitut zur Zukunft der Arbeit GmbH (IZA)'),
(148068, 115518, 'en', 'name', 'IZA - Institute of Labor Economics'),
(148069, 115519, 'en', 'name', 'Netherlands Environmental Assessment Agency'),
(148070, 115519, 'nl', 'name', 'Planbureau voor de Leefomgeving'),
(148071, 115520, 'en', 'name', 'Federal University of Allied Health Sciences, Enugu'),
(148072, 115521, 'en', 'name', 'National Heart Hospital'),
(148073, 115521, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° карГиологична болница'),
(148074, 115522, 'pl', 'name', 'Łukasiewicz – ITECH Instytut Innowacji i Technologii'),
(148075, 115523, 'fr', 'name', 'UnitƩ de Recherche en BiomatƩriaux Innovant et Interfaces'),
(148076, 115524, 'fr', 'name', 'Laboratoire d''Ɖcologie Alpine'),
(148077, 115525, 'en', 'name', 'Beijing Graphene Institute'),
(148078, 115525, 'zh', 'name', 'åŒ—äŗ¬ēŸ³å¢ØēƒÆē ”ē©¶é™¢'),
(148079, 115526, 'pt', 'name', 'Centro de Estudos Comparatistas'),
(148080, 115527, 'en', 'name', 'CTC Consulting'),
(148081, 115527, 'pt', 'name', 'CTC Consultoria (Portugal)'),
(148082, 115528, 'en', 'name', 'Israel Meteorological Service'),
(148083, 115528, 'he', 'name', 'השירות ×”×ž×˜××•×Ø×•×œ×•×’×™ ×”×™×©×Ø××œ×™'),
(148084, 115529, 'en', 'name', 'Kameda IVF Clinic Makuhari'),
(148085, 115529, 'ja', 'name', '亀田IVFć‚ÆćƒŖćƒ‹ćƒƒć‚Æå¹•å¼µ'),
(148086, 115530, 'pt', 'name', 'Safelab 42 Formação Profissional (Portugal)'),
(148087, 115530, 'en', 'name', 'Safelab 42 Professional Qualification'),
(148088, 115531, 'en', 'name', 'Chemistry And InterdisciplinaritƩ, Synthesis, Analyze, Modeling'),
(148089, 115531, 'fr', 'name', 'Chimie et Interdisciplinarité, Synthèse, Analyse, Modélisation'),
(148090, 115532, 'en', 'name', 'Federal University Lafia'),
(148091, 115533, 'fr', 'name', 'Institut Rayonnement-MatiĆØre de Saclay'),
(148092, 115533, 'en', 'name', 'Saclay Institute of Matter and Radiation'),
(148093, 115534, 'fr', 'name', 'Centre des Etudes Arabes et Orientales'),
(148094, 115535, 'en', 'name', 'Community Health Systems - Moses Taylor Hospital'),
(148095, 115536, 'en', 'name', 'New College'),
(148096, 115537, 'pt', 'name', 'Centro de Investigação em Psicologia Aplicada Capacidades e Inclusão'),
(148097, 115538, 'en', 'name', 'Idaho Department of Fish and Game'),
(148098, 115539, 'en', 'name', 'Bahrain Center for Strategic International and Energy Studies'),
(148099, 115540, 'en', 'name', 'Jehangir Hospital'),
(148100, 115541, 'en', 'name', 'Bombay Natural History Society'),
(148101, 115542, 'en', 'name', 'Coxa Hospital'),
(148102, 115543, 'id', 'name', 'Universitas Gresik'),
(148103, 115544, 'en', 'name', 'Disney Conservation Fund'),
(148104, 115545, 'no_lang_code', 'name', 'Adaptive Biotechnologies (United States)'),
(148105, 115546, 'en', 'name', 'Indrashil University'),
(148106, 115546, 'ur', 'name', 'ąŖ‡ąŖØą«ąŖ¦ą«ąŖ°ąŖ¶ą«€ąŖ² ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(148107, 115547, 'fr', 'name', 'EURECOM'),
(148108, 115548, 'en', 'name', 'Grand River Hospital'),
(148109, 115549, 'en', 'name', 'Barcelona Centre for International Affairs'),
(148110, 115549, 'es', 'name', 'Barcelona Centro de Relaciones Internacionales'),
(148111, 115550, 'en', 'name', 'Lisbon School of Design'),
(148112, 115551, 'eu', 'name', 'Nafarroako Unibertsitatea'),
(148113, 115551, 'es', 'name', 'Universidad de Navarra'),
(148114, 115551, 'en', 'name', 'University of Navarra'),
(148115, 115552, 'en', 'name', 'Sarajevo School of Science and Technology'),
(148116, 115552, 'bs', 'name', 'Sarajevska Ŕkola za nauku i tehnologiju'),
(148117, 115553, 'en', 'name', 'FZU ‒ Institute of Physics of the Academy of Sciences of the Czech Republic'),
(148118, 115553, 'cs', 'name', 'FyzikÔlní ústav AV ČR'),
(148119, 115554, 'es', 'name', 'Geincor S.A.S. (Colombia)'),
(148120, 115555, 'fr', 'name', 'Clinatec'),
(148121, 115556, 'en', 'name', 'North Carolina General Assembly'),
(148122, 115557, 'de', 'name', 'Software AG – Stiftung'),
(148123, 115558, 'en', 'name', 'Polytechnic University of Catalonia'),
(148124, 115558, 'es', 'name', 'Universidad PolitƩcnica de CataluƱa'),
(148125, 115558, 'gl', 'name', 'Universidade PolitƩcnica de CataluƱa'),
(148126, 115558, 'ca', 'name', 'Universitat PolitĆØcnica de Catalunya'),
(148127, 115559, 'no_lang_code', 'name', 'Earth Resources Technology (United States)'),
(148128, 115560, 'en', 'name', 'Brain Tech Laboratory'),
(148129, 115561, 'en', 'name', 'Commonwealth of Massachusetts'),
(148130, 115562, 'pt', 'name', 'Santa Casa de Misericórdia de Passos'),
(148131, 115563, 'no_lang_code', 'name', 'Brinks (Colombia)'),
(148132, 115563, 'es', 'name', 'Brinks de Colombia'),
(148133, 115564, 'es', 'name', 'Instituto de Investigación Nutricional'),
(148134, 115565, 'en', 'name', 'George Enescu University of Arts of Iași'),
(148135, 115565, 'ro', 'name', 'Universitatea de Arte George Enescu din Iași'),
(148136, 115566, 'en', 'name', '"Constantin Rădulescu-Motru" Institute of Philosophy and Psychology of the Romanian Academy'),
(148137, 115566, 'ro', 'name', 'Institutul de Filosofie și Psihologie "Constantin Rădulescu-Motru" al Academiei RomĆ¢ne'),
(148138, 115567, 'id', 'name', 'Universitas Tompotika Luwuk'),
(148139, 115568, 'fr', 'name', 'UniversitƩ Amadou Mahtar Mbow'),
(148140, 115569, 'en', 'name', 'CReATe Fertility Centre'),
(148141, 115570, 'en', 'name', 'New York Academy of Sciences'),
(148142, 115571, 'en', 'name', 'Newbold College of Higher Education'),
(148143, 115572, 'en', 'name', 'National Institute of Public Finance and Policy'),
(148144, 115573, 'en', 'name', 'East Asia Institute'),
(148145, 115573, 'ko', 'name', 'ģž¬ė‹Øė²•ģø ė™ģ•„ģ‹œģ•„ģ—°źµ¬ģ›'),
(148146, 115574, 'en', 'name', 'Zhejiang University Medical College Affiliated Stomatological Hospital'),
(148147, 115574, 'zh', 'name', 'ęµ™ę±Ÿå¤§å­¦åŒ»å­¦é™¢é™„å±žå£č…”åŒ»é™¢'),
(148148, 115575, 'en', 'name', 'St. Mary''s University'),
(148149, 115576, 'en', 'name', 'Art Fund'),
(148150, 115577, 'en', 'name', 'Goshen College'),
(148151, 115578, 'en', 'name', 'Thai Binh University of Medicine and Pharmacy'),
(148152, 115578, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y Dược ThĆ”i BƬnh'),
(148153, 115579, 'no_lang_code', 'name', 'Mercer (Czechia)'),
(148154, 115580, 'en', 'name', 'Department of Cinnamon Development'),
(148155, 115580, 'ta', 'name', 'கறுவா ą®…ą®Ŗą®æą®µą®æą®°ąÆą®¤ąÆą®¤ą®æ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ'),
(148156, 115580, 'si', 'name', 'ą¶šą·”ą¶»ą·”ą¶³ą·” ą·ƒą¶‚ą·€ą¶»ą·Šą¶°ą¶± ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(148157, 115581, 'en', 'name', 'Research Institute of Medical Problems of the North'),
(148158, 115581, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинских проблем Девера'),
(148159, 115582, 'de', 'name', 'Eidgenƶssisches Nuklearsicherheitsinspektorat'),
(148160, 115582, 'en', 'name', 'Swiss Federal Nuclear Safety Inspectorate'),
(148161, 115583, 'en', 'name', 'Scope Australia'),
(148162, 115584, 'id', 'name', 'Universitas Muhammadiyah Luwuk Banggai'),
(148163, 115585, 'en', 'name', 'Southwest General Health Center'),
(148164, 115586, 'en', 'name', 'Beijing Federation of Social Science Circles'),
(148165, 115586, 'zh', 'name', 'åŒ—äŗ¬åø‚ē¤¾ä¼šē§‘å­¦ē•Œč”åˆä¼š'),
(148166, 115587, 'en', 'name', 'Hackensack Meridian School of Medicine'),
(148167, 115588, 'no_lang_code', 'name', 'Genomic (Brazil)'),
(148168, 115589, 'en', 'name', 'Grozny State Oil Technical University named after Academician MD Millionshtchikov'),
(148169, 115589, 'ru', 'name', 'Грозненский Š³Š¾ŃŃƒŠ“арственный Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика М. Š”. ŠœŠøŠ»Š»ŠøŠ¾Š½Ń‰ŠøŠŗŠ¾Š²Š°'),
(148170, 115590, 'pt', 'name', 'Universidade de BrasĆ­lia'),
(148171, 115590, 'en', 'name', 'University of BrasĆ­lia'),
(148172, 115591, 'en', 'name', 'Sheffield Hallam University'),
(148173, 115592, 'fr', 'name', 'Ɖcole SupĆ©rieure de Chimie Organique et MinĆ©rale'),
(148174, 115593, 'no_lang_code', 'name', 'Centro Agricoltura Ambiente (Italy)'),
(148175, 115594, 'en', 'name', 'Frontier Science & Technology Research Foundation'),
(148176, 115595, 'id', 'name', 'Politeknik APP Jakarta'),
(148177, 115596, 'no_lang_code', 'name', 'Koshien University'),
(148178, 115596, 'ja', 'name', 'ē”²å­åœ’å¤§å­¦'),
(148179, 115597, 'fr', 'name', 'Institut National de Recherche en Education'),
(148180, 115597, 'en', 'name', 'National Institute for Research in Education'),
(148181, 115597, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ للبحث في Ų§Ł„ŲŖŲ±ŲØŁŠŲ©'),
(148182, 115598, 'en', 'name', 'Hefei Cement Research Design Institute'),
(148183, 115598, 'zh', 'name', 'åˆč‚„ę°“ę³„ē ”ē©¶č®¾č®”é™¢'),
(148184, 115599, 'en', 'name', 'Scientific and Production Association. S.A. Lavochkin'),
(148185, 115600, 'pt', 'name', 'Instituto de Olhos de Goiânia'),
(148186, 115601, 'en', 'name', 'Institute of Economic Affairs'),
(148187, 115602, 'pt', 'name', 'Fundação de Apoio à Pesquisa do Estado da Paraíba'),
(148188, 115603, 'en', 'name', 'Dalhousie University'),
(148189, 115604, 'lv', 'name', 'Dabas aizsardzības pārvalde'),
(148190, 115604, 'en', 'name', 'Nature Conservation Agency'),
(148191, 115605, 'en', 'name', 'Albanian University'),
(148192, 115606, 'en', 'name', 'SKiN Health'),
(148193, 115607, 'en', 'name', 'NewSchool of Architecture and Design'),
(148194, 115608, 'fr', 'name', 'Centre de Recherche MƩdicales de LambarƩnƩ'),
(148195, 115609, 'en', 'name', 'The Stables'),
(148196, 115610, 'de', 'name', 'TECHNOSEUM Landesmuseum für Technik und Arbeit in Mannheim'),
(148197, 115611, 'en', 'name', 'Mardan Medical Complex, Mardan'),
(148198, 115612, 'en', 'name', 'Ocean Risk and Resilience Action Alliance'),
(148199, 115613, 'en', 'name', 'Russian Federal Centre of Forensic Science of the Ministry of Justice of the Russian Federation'),
(148200, 115613, 'ru', 'name', 'Российский Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ центр суГебной ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ при ŠœŠøŠ½ŠøŃŃ‚ерстве ŃŽŃŃ‚ŠøŃ†ŠøŠø Российской ФеГерации'),
(148201, 115614, 'en', 'name', 'Ider University'),
(148202, 115614, 'mn', 'name', 'Š˜Š“ŃŃ€ Š“ŃŃŠ“ ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(148203, 115615, 'en', 'name', 'Finnish Medical Society Duodecim'),
(148204, 115615, 'fi', 'name', 'Suomalainen LƤƤkƤriseura Duodecim'),
(148205, 115616, 'en', 'name', 'U.S. Army Center of Military History'),
(148206, 115617, 'no_lang_code', 'name', 'Lego (Denmark)'),
(148207, 115618, 'de', 'name', 'IGES Institut'),
(148208, 115619, 'en', 'name', 'TissuPath'),
(148209, 115620, 'en', 'name', 'Benha National University'),
(148210, 115620, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بنها Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(148211, 115621, 'en', 'name', 'State Key Laboratory of Explosion Science and Safety Protection'),
(148212, 115621, 'zh', 'name', 'ēˆ†ē‚øē§‘å­¦äøŽå®‰å…Øé˜²ęŠ¤å…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(148213, 115622, 'en', 'name', 'The Graduate Center, CUNY'),
(148214, 115623, 'en', 'name', 'Auburn Hospital'),
(148215, 115624, 'en', 'name', 'Siberian State University of Telecommunications and Information Science'),
(148216, 115624, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹ Šø информатики'),
(148217, 115625, 'no_lang_code', 'name', 'Keiyukai Sapporo Hospital'),
(148218, 115625, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęµä½‘ä¼šęœ­å¹Œē—…é™¢'),
(148219, 115626, 'en', 'name', 'Blagoveschensk State Pedagogical University'),
(148220, 115626, 'ru', 'name', 'Благовещенский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(148221, 115627, 'en', 'name', 'Syreon Research Institute'),
(148222, 115627, 'no_lang_code', 'name', 'Syreon Research Institute (Hungary)'),
(148223, 115628, 'en', 'name', 'Institute for Interdisciplinary Studies of Austrian Universities'),
(148224, 115629, 'en', 'name', 'Manmohan Memorial Institute of Health Sciences'),
(148225, 115630, 'en', 'name', 'Karary University'),
(148226, 115630, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© كرري'),
(148227, 115631, 'en', 'name', 'MƩtis-Lab'),
(148228, 115632, 'en', 'name', 'Victoria University'),
(148229, 115633, 'en', 'name', 'University School of Nashville'),
(148230, 115634, 'fr', 'name', 'TƩlƩcom Paris'),
(148231, 115635, 'en', 'name', 'Royal Rehabilitation Centre'),
(148232, 115636, 'en', 'name', 'IIHMR University'),
(148233, 115637, 'en', 'name', 'American Association of Variable Star Observers'),
(148234, 115638, 'en', 'name', 'Republican Research Center for Radiation Medicine and Human Ecology'),
(148235, 115639, 'no_lang_code', 'name', 'Cemka-Eval (France)'),
(148236, 115640, 'en', 'name', 'Arthritis Research Centre of Canada'),
(148237, 115641, 'no_lang_code', 'name', 'Amazon (United Kingdom)'),
(148238, 115642, 'no_lang_code', 'name', 'Chongqing Electromechanical Holdings (China)'),
(148239, 115642, 'zh', 'name', 'é‡åŗ†ęœŗē”µęŽ§č‚”'),
(148240, 115643, 'en', 'name', 'Royal Historical Society'),
(148241, 115644, 'en', 'name', 'National Gallery of Denmark'),
(148242, 115644, 'da', 'name', 'Statens Museum for Kunst'),
(148243, 115645, 'ca', 'name', 'Fundació Pasqual Maragall'),
(148244, 115645, 'en', 'name', 'Pasqual Maragall Foundation'),
(148245, 115646, 'en', 'name', 'European Society for Organ Transplantation'),
(148246, 115646, 'it', 'name', 'SocietĆ  europea per il trapianto di organi'),
(148247, 115647, 'en', 'name', 'Civil Guard'),
(148248, 115647, 'es', 'name', 'Guardia Civil'),
(148249, 115648, 'no_lang_code', 'name', 'Medical Diagnostic Laboratories (United States)'),
(148250, 115649, 'sr', 'name', 'Institut za uporedno pravo'),
(148251, 115649, 'en', 'name', 'Institute of Comparative Law'),
(148252, 115650, 'en', 'name', 'Bukhara Engineering and Technological Institute'),
(148253, 115650, 'uz', 'name', 'Buxoro muhandislik-texnologiya instituti'),
(148254, 115651, 'no_lang_code', 'name', 'Structural Integrity Associates (United States)'),
(148255, 115652, 'en', 'name', 'South African Reserve Bank'),
(148256, 115652, 'af', 'name', 'Suid-Afrikaanse Reserwebank'),
(148257, 115653, 'en', 'name', 'National League for Nursing'),
(148258, 115654, 'en', 'name', 'Walbrook Institute London'),
(148259, 115655, 'en', 'name', 'Basavatarakam Indo American Cancer Hospital and Research Institute'),
(148260, 115656, 'no_lang_code', 'name', 'Tokai Rika (Japan)'),
(148261, 115656, 'ja', 'name', 'ę±ęµ·ē†åŒ–'),
(148262, 115657, 'no_lang_code', 'name', 'British Steel (United Kingdom)'),
(148263, 115658, 'en', 'name', 'Illinois State University'),
(148264, 115658, 'es', 'name', 'Universidad del Estado de Illinois'),
(148265, 115658, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''illinois'),
(148266, 115659, 'fr', 'name', 'Institut National de la Statistique et des Etudes Economiques'),
(148267, 115659, 'en', 'name', 'National Institute of Statistics and Economic Studies'),
(148268, 115660, 'en', 'name', 'Frontier Science Foundation-Hellas'),
(148269, 115661, 'en', 'name', 'Ironwood Pharmaceuticals'),
(148270, 115661, 'no_lang_code', 'name', 'Ironwood Pharmaceuticals (United States)'),
(148271, 115662, 'cs', 'name', 'KrajskĆ” Nemocnice Liberec'),
(148272, 115663, 'nl', 'name', '''s Heeren Loo'),
(148273, 115664, 'en', 'name', 'Saint Petersburg State University of Civil Aviation'),
(148274, 115664, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ гражГанской авиации'),
(148275, 115665, 'en', 'name', 'Dharmais Cancer Hospital'),
(148276, 115665, 'id', 'name', 'RS Kanker Dharmais'),
(148277, 115666, 'es', 'name', 'Centro Español de Investigación Farmacoepidemiológica'),
(148278, 115666, 'en', 'name', 'Spanish Centre for Pharmacoepidemiologic Research'),
(148279, 115667, 'en', 'name', 'Nova Institute'),
(148280, 115668, 'en', 'name', 'Turkish Academy of Sciences'),
(148281, 115669, 'en', 'name', 'Gheskio Centers'),
(148282, 115670, 'en', 'name', 'LifeWatch ERIC'),
(148283, 115671, 'id', 'name', 'Universitas Bondowoso'),
(148284, 115672, 'en', 'name', 'Western Reserve Hospital'),
(148285, 115673, 'it', 'name', 'Istituto di Ricerche Chimiche e Biochimiche G. Ronzoni'),
(148286, 115674, 'it', 'name', 'Biblioteca Leonardiana di Vinci'),
(148287, 115675, 'en', 'name', 'Xavier University of Louisiana'),
(148288, 115676, 'en', 'name', 'Innovations for Ocean Action Foundation'),
(148289, 115677, 'en', 'name', 'Payampersa Language Institute'),
(148290, 115677, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ ŁŲ±Ł‡Ł†ŚÆŪŒ Ł‡Ł†Ų±ŪŒ Ł¾ŪŒŲ§Ł… پرسا'),
(148291, 115678, 'vi', 'name', 'Bệnh viện Nhi đồng 1'),
(148292, 115678, 'en', 'name', 'Children''s Hospital 1'),
(148293, 115679, 'en', 'name', 'Atlantic University'),
(148294, 115680, 'en', 'name', 'Shatsk National Natural Park'),
(148295, 115681, 'pt', 'name', 'Sociedade Brasileira de Oncologia ClĆ­nica'),
(148296, 115682, 'en', 'name', 'Bellevue University'),
(148297, 115683, 'fr', 'name', 'Organisation des Nations Unies'),
(148298, 115683, 'es', 'name', 'Organización de las Naciones Unidas'),
(148299, 115683, 'en', 'name', 'United Nations'),
(148300, 115684, 'hu', 'name', 'EvolúciótudomÔnyi Intézet'),
(148301, 115684, 'en', 'name', 'Institute of Evolution'),
(148302, 115685, 'en', 'name', 'Academic University'),
(148303, 115685, 'ar', 'name', 'الجامعة Ų§Ł„Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(148304, 115686, 'no_lang_code', 'name', 'Agrico (Netherlands)'),
(148305, 115687, 'no_lang_code', 'name', 'Metso (Finland)'),
(148306, 115688, 'ro', 'name', 'Institutul Național de Endocrinologie C.I. Parhon'),
(148307, 115689, 'no_lang_code', 'name', 'Chiang Mai University'),
(148308, 115689, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(148309, 115690, 'en', 'name', 'Concurrent Technologies Corporation'),
(148310, 115691, 'no_lang_code', 'name', 'KazMunayGas (Kazakhstan)'),
(148311, 115691, 'kk', 'name', 'ŅšŠ°Š·ŠœŅ±Š½Š°Š¹Š“Š°Š·'),
(148312, 115692, 'id', 'name', 'Universitas Wisnuwardhana Malang'),
(148313, 115693, 'en', 'name', 'Ministry of Science, Research and Technology'),
(148314, 115693, 'fa', 'name', 'وزارت Ų¹Ł„ŁˆŁ…ŲŒ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ و ŁŁ†Ų§ŁˆŲ±ŪŒ'),
(148315, 115694, 'en', 'name', 'Mental Health Commission'),
(148316, 115695, 'nl', 'name', 'Nederlandse Vereniging voor Kindergeneeskunde'),
(148317, 115696, 'en', 'name', 'Loras College'),
(148318, 115697, 'en', 'name', 'Hebei Food Inspection and Research Institute'),
(148319, 115697, 'zh', 'name', 'ę²³åŒ—ēœé£Ÿå“ę£€éŖŒē ”ē©¶é™¢'),
(148320, 115698, 'en', 'name', 'Houston Community College System'),
(148321, 115699, 'no', 'name', 'Norsar'),
(148322, 115700, 'de', 'name', 'Klinik Bad Reichenhall'),
(148323, 115701, 'en', 'name', 'Nippon Steel Yawata Memorial Hospital'),
(148324, 115701, 'ja', 'name', 'č£½é‰„čØ˜åæµå…«å¹”ē—…é™¢'),
(148325, 115702, 'en', 'name', 'Cancer Trials Ireland'),
(148326, 115703, 'en', 'name', 'Ruby Hall Clinic'),
(148327, 115704, 'en', 'name', 'Durrell Wildlife Conservation Trust'),
(148328, 115705, 'en', 'name', 'Climate Centre'),
(148329, 115706, 'pt', 'name', 'Instituto de Tecnologia de Pernambuco'),
(148330, 115707, 'en', 'name', 'Dutch Centre for Field Ornithology'),
(148331, 115707, 'de', 'name', 'Niederländisches Zentrum für Feldornithologie'),
(148332, 115708, 'en', 'name', 'punctum books'),
(148333, 115708, 'no_lang_code', 'name', 'punctum books (United Sates)'),
(148334, 115709, 'en', 'name', 'Molecular Concepts Research'),
(148335, 115710, 'en', 'name', 'Copenhagen Prospective Studies on Asthma in Childhood'),
(148336, 115711, 'es', 'name', 'San Fernando General Hospital'),
(148337, 115712, 'en', 'name', 'Braude College of Engineering Karmiel'),
(148338, 115712, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ להנדהה בראודה ×‘×›×Ø×ž×™××œ'),
(148339, 115713, 'en', 'name', 'Danish Institute for Human Rights'),
(148340, 115713, 'da', 'name', 'Institut for Menneskerettigheder'),
(148341, 115714, 'no_lang_code', 'name', 'Suzano (Brazil)'),
(148342, 115715, 'pl', 'name', 'Roztoczański Park Narodowy'),
(148343, 115715, 'en', 'name', 'Roztocze National Park'),
(148344, 115716, 'en', 'name', 'Austrian Red Cross'),
(148345, 115716, 'de', 'name', 'Ɩsterreichisches Rotes Kreuz'),
(148346, 115717, 'en', 'name', 'Dr. K.N.Modi University'),
(148347, 115717, 'hi', 'name', 'ą¤”ą„‰. ą¤•ą„‡.ą¤ą¤Ø.ą¤®ą„‹ą¤¦ą„€ ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(148348, 115718, 'en', 'name', 'SAGE University Bhopal'),
(148349, 115719, 'no_lang_code', 'name', 'Hologic (United States)'),
(148350, 115720, 'en', 'name', 'Walmart Foundation'),
(148351, 115721, 'no_lang_code', 'name', 'EA Technology'),
(148352, 115722, 'en', 'name', 'United Nations Global Compact'),
(148353, 115723, 'en', 'name', 'Pat Petulai University'),
(148354, 115723, 'id', 'name', 'Universitas Pat Petulai'),
(148355, 115724, 'it', 'name', 'Fondazione Italiana Fegato'),
(148356, 115724, 'en', 'name', 'Italian Liver Foundation'),
(148357, 115725, 'en', 'name', 'Gansu Education Department'),
(148358, 115725, 'zh', 'name', 'ē”˜č‚ƒēœę•™č‚²åŽ…'),
(148359, 115726, 'en', 'name', 'Champlain College'),
(148360, 115727, 'no_lang_code', 'name', 'Altarum Institute'),
(148361, 115728, 'en', 'name', 'Waterford Institute'),
(148362, 115729, 'en', 'name', 'Northwest Regional Development Agency'),
(148363, 115730, 'sv', 'name', 'Majblommans Riksfƶrbund'),
(148364, 115731, 'en', 'name', 'Institute for Atherosclerosis Research'),
(148365, 115732, 'en', 'name', 'Kanchi Kamakoti CHILDS Trust Hospital'),
(148366, 115733, 'en', 'name', 'Nigerian Institute for Oceanography and Marine Research'),
(148367, 115734, 'en', 'name', 'National Association for the Self-Employed'),
(148368, 115735, 'hr', 'name', 'Institut za javne financije'),
(148369, 115735, 'en', 'name', 'Institute of Public Finance'),
(148370, 115736, 'es', 'name', 'Universidad de Concepción'),
(148371, 115736, 'en', 'name', 'University of Concepción'),
(148372, 115737, 'en', 'name', 'Belarusian State University of Transport'),
(148373, 115737, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń‚Ń€Š°Š½ŃŠæŠ°Ń€Ń‚Ńƒ'),
(148374, 115737, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ транспорта'),
(148375, 115738, 'nl', 'name', 'Ziekenhuisnetwerk Antwerpen Stuivenberg'),
(148376, 115739, 'nl', 'name', 'Bijwerkingen Centrum Lareb'),
(148377, 115739, 'en', 'name', 'Netherlands Pharmacovigilance Centre Lareb'),
(148378, 115740, 'en', 'name', 'Russian Scientific Research Institute of Traumatology and Orthopedics named after R.R. Vreden'),
(148379, 115740, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии им. Š .Š .ВреГена'),
(148380, 115741, 'en', 'name', 'Krishna University'),
(148381, 115742, 'es', 'name', 'Consejería de Universidad, Investigación e Innovación'),
(148382, 115743, 'fr', 'name', 'Mines Saint-Ɖtienne'),
(148383, 115744, 'en', 'name', 'National Horticultural Research Institute'),
(148384, 115745, 'en', 'name', 'Louisiana Cancer Research Consortium'),
(148385, 115746, 'en', 'name', 'American Urological Association'),
(148386, 115747, 'en', 'name', 'Catalan Institute of Nanoscience and Nanotechnology'),
(148387, 115747, 'ca', 'name', 'Institut CatalĆ  de NanociĆØncia i Nanotecnologia'),
(148388, 115747, 'es', 'name', 'Instituto CatalƔn de Nanociencia y Nanotecnologƭa'),
(148389, 115748, 'no_lang_code', 'name', 'Milad Hospital'),
(148390, 115748, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł…ŪŒŁ„Ų§ŲÆ'),
(148391, 115749, 'fr', 'name', 'Ecologie, SociƩtƩ, Evolution'),
(148392, 115750, 'en', 'name', 'Observational & Pragmatic Research Institute'),
(148393, 115751, 'en', 'name', 'Catholic University of Central Africa'),
(148394, 115751, 'fr', 'name', 'UniversitƩ catholique d''afrique centrale'),
(148395, 115752, 'fr', 'name', 'Fonds SpƩciaux de Recherche'),
(148396, 115753, 'pt', 'name', 'Tribunal de JustiƧa de Pernambuco'),
(148397, 115754, 'en', 'name', 'Institute of Architecture and Urban & Spatial Planning of Serbia'),
(148398, 115754, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ńƒ Šø ŃƒŃ€Š±Š°Š½ŠøŠ·Š°Š¼ Š”Ń€Š±ŠøŃ˜Šµ'),
(148399, 115755, 'id', 'name', 'Institut Sains dan Teknologi Al-Kamal'),
(148400, 115756, 'no_lang_code', 'name', 'Sonoma Technology (United States)'),
(148401, 115757, 'en', 'name', 'Hungarian Research Network'),
(148402, 115757, 'hu', 'name', 'Magyar KutatÔsi HÔlózat'),
(148403, 115758, 'en', 'name', 'National Institute of Cardiovascular Diseases'),
(148404, 115759, 'en', 'name', 'Kenya Forest Service'),
(148405, 115760, 'en', 'name', 'TropIQ Health Sciences'),
(148406, 115761, 'no_lang_code', 'name', 'China National GeneBank'),
(148407, 115761, 'zh', 'name', 'å›½å®¶åŸŗå› åŗ“'),
(148408, 115762, 'no_lang_code', 'name', 'US Biologic (United States)'),
(148409, 115763, 'en', 'name', 'University of Valley Forge'),
(148410, 115764, 'no_lang_code', 'name', 'Nutrition 21 (United States)'),
(148411, 115765, 'id', 'name', 'Universitas Islam Jakarta'),
(148412, 115766, 'en', 'name', 'Morinomiya University of Medical Sciences'),
(148413, 115766, 'ja', 'name', 'ę£®ćƒŽå®®åŒ»ē™‚å¤§å­¦'),
(148414, 115767, 'pl', 'name', 'Instytut Badań Rynku, Konsumpcji i Koniunktur'),
(148415, 115768, 'en', 'name', 'MEDICA Research Investigation'),
(148416, 115769, 'sv', 'name', 'Djurkliniken Roslagstull'),
(148417, 115770, 'pt', 'name', 'Centro de Referência em Informação Ambiental'),
(148418, 115770, 'en', 'name', 'Reference Center on Environmental Information'),
(148419, 115771, 'en', 'name', 'Hamburg School of Business Administration'),
(148420, 115772, 'es', 'name', 'Centro Peruano de Estudios Sociales'),
(148421, 115773, 'en', 'name', 'American Council on Education'),
(148422, 115774, 'en', 'name', 'Copenhagen Institute for Futures Studies'),
(148423, 115774, 'da', 'name', 'Instituttet for Fremtidsforskning'),
(148424, 115775, 'no_lang_code', 'name', 'Research!America (United States)'),
(148425, 115776, 'de', 'name', 'Klinikum Mittelbaden'),
(148426, 115777, 'no_lang_code', 'name', 'Autodesk (United States)'),
(148427, 115778, 'en', 'name', 'National Law University Jodhpur'),
(148428, 115779, 'en', 'name', 'Czech National Bank'),
(148429, 115779, 'cs', 'name', 'ČeskÔ nÔrodní banka'),
(148430, 115780, 'de', 'name', 'Schwarzwald-Baar Klinikum'),
(148431, 115781, 'en', 'name', 'Southwestern Law School'),
(148432, 115782, 'no_lang_code', 'name', 'Larsen & Toubro (India)'),
(148433, 115783, 'en', 'name', 'American University in Bulgaria'),
(148434, 115783, 'bg', 'name', 'Американски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(148435, 115784, 'en', 'name', 'Dyson Institute of Engineering and Technology'),
(148436, 115785, 'sv', 'name', 'IQ SamhƤllsbyggnad'),
(148437, 115786, 'en', 'name', 'Central Asian University'),
(148438, 115787, 'en', 'name', 'Queen Giovanna Hospital'),
(148439, 115787, 'bg', 'name', 'болница Царица Йоанна'),
(148440, 115788, 'fr', 'name', 'Sciences Po Aix'),
(148441, 115789, 'en', 'name', 'Complex Engineering System Institute'),
(148442, 115789, 'es', 'name', 'Instituto Sistemas Complejos de IngenierĆ­a'),
(148443, 115790, 'en', 'name', 'Technological Educational Institute of Epirus'),
(148444, 115790, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ηπείρου'),
(148445, 115791, 'no_lang_code', 'name', 'Ciro'),
(148446, 115792, 'en', 'name', 'Hainan Provincial Health Commission'),
(148447, 115792, 'zh', 'name', 'ęµ·å—ēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(148448, 115793, 'de', 'name', 'Landesklinikum Korneuburg'),
(148449, 115794, 'en', 'name', 'Educational Research Institute'),
(148450, 115795, 'en', 'name', 'University of Djibouti'),
(148451, 115795, 'fr', 'name', 'UniversitƩ de djibouti'),
(148452, 115796, 'en', 'name', 'VƤsterƄs Municipality'),
(148453, 115797, 'en', 'name', 'Avila University'),
(148454, 115798, 'en', 'name', 'National Institute of Grape and Wine "Magarach"'),
(148455, 115798, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ винограГарства Šø Š²ŠøŠ½Š¾Š“ŠµŠ»ŠøŃ Ā«ŠœŠ°Š³Š°Ń€Š°Ń‡Ā»'),
(148456, 115799, 'gd', 'name', 'Buidheann DƬon ƀrainneachd na h-Alba'),
(148457, 115799, 'en', 'name', 'Scottish Environment Protection Agency'),
(148458, 115800, 'ro', 'name', 'Academia Romana Filiala Cluj-Napoca'),
(148459, 115801, 'en', 'name', 'Brihan Maharashtra College of Commerce (Autonomous)'),
(148460, 115802, 'no_lang_code', 'name', 'Advanced Materials and Devices (United States)'),
(148461, 115803, 'no_lang_code', 'name', 'Formosa Plastics (Taiwan)'),
(148462, 115803, 'en', 'name', 'Formosa Plastics Group'),
(148463, 115803, 'zh', 'name', 'å°ē£å”‘č† å…¬åø'),
(148464, 115804, 'en', 'name', 'Hass Avocado Board'),
(148465, 115805, 'en', 'name', 'Andrews University'),
(148466, 115805, 'es', 'name', 'Universidad Andrews'),
(148467, 115806, 'en', 'name', 'Academy of Fine Arts in Katowice'),
(148468, 115806, 'pl', 'name', 'Akademia Sztuk Pięknych w Katowicach'),
(148469, 115807, 'de', 'name', 'Institut für Vogelforschung "Vogelwarte Helgolandā€œ'),
(148470, 115807, 'en', 'name', 'Institute of Avian Research'),
(148471, 115808, 'fr', 'name', 'Fondation Pour la Recherche Sur la BiodiversitƩ'),
(148472, 115808, 'en', 'name', 'French Foundation for Biodiversity Research'),
(148473, 115809, 'en', 'name', 'Dr. Agarwal''s Eye Hospital'),
(148474, 115810, 'en', 'name', 'Cecil College'),
(148475, 115811, 'pl', 'name', 'Państwowe Muzeum Archeologiczne'),
(148476, 115811, 'en', 'name', 'State Archaeological Museum'),
(148477, 115812, 'en', 'name', 'King Abdullah International Medical Research Center'),
(148478, 115812, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ الله Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠ للأبحاث Ų§Ł„Ų·ŲØŁŠŲ©'),
(148479, 115813, 'en', 'name', 'Maulana Abul Kalam Azad Institute of Asian Studies'),
(148480, 115813, 'bn', 'name', 'মৌলানা আবুল কালাম ą¦†ą¦œą¦¾ą¦¦ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦øą§ą¦Ÿą¦¾ą¦”ą¦æą¦œ'),
(148481, 115814, 'de', 'name', 'Staatliches Museum für Naturkunde Karlsruhe'),
(148482, 115814, 'en', 'name', 'State Museum of Natural History Karlsruhe'),
(148483, 115815, 'en', 'name', 'Yamaguchi Prefecture Central Hospital'),
(148484, 115815, 'ja', 'name', 'å±±å£ēœŒē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(148485, 115816, 'en', 'name', 'International Business School'),
(148486, 115817, 'en', 'name', 'Centenary College of Louisiana'),
(148487, 115818, 'en', 'name', 'Institute of Educational Sciences'),
(148488, 115818, 'ro', 'name', 'Institutul de Științe ale Educației'),
(148489, 115819, 'de', 'name', 'Institut für Sozialwissenschaftliche Forschung'),
(148490, 115820, 'en', 'name', 'World Water Watch'),
(148491, 115821, 'hu', 'name', 'PĆ©terfy SĆ”ndor Utcai KórhĆ”z-RendelőintĆ©zet Ć©s Baleseti Kƶzpont'),
(148492, 115822, 'en', 'name', 'Identity'),
(148493, 115823, 'en', 'name', 'National Socio-Environmental Synthesis Center'),
(148494, 115824, 'en', 'name', 'Surya University'),
(148495, 115825, 'de', 'name', 'Institut für Diabetes "Gerhardt Katsch" Karlsburg'),
(148496, 115825, 'en', 'name', 'Institute for Diabetes Gerhardt Katsch'),
(148497, 115826, 'de', 'name', 'Krankenhaus St. Elisabeth und St. Barbara'),
(148498, 115827, 'it', 'name', 'Agenzia Regionale Emergenza Urgenza'),
(148499, 115828, 'en', 'name', 'GSO/URI Marine Geological Samples Laboratory'),
(148500, 115829, 'en', 'name', 'Royal Australasian College of Physicians'),
(148501, 115830, 'pt', 'name', 'Laboratório de AnÔlises LAQV-REQUIMTE'),
(148502, 115831, 'en', 'name', 'Guangdong Planning Office of Philosophy and Social Science'),
(148503, 115831, 'zh', 'name', 'å¹æäøœēœå“²å­¦ē¤¾ä¼šē§‘å­¦č§„åˆ’'),
(148504, 115832, 'en', 'name', 'Bukhara Institute of Natural Resources Management'),
(148505, 115832, 'uz', 'name', 'Buxoro tabiiy resurslarni boshqarish instituti'),
(148506, 115833, 'en', 'name', 'Misophonia Research Fund'),
(148507, 115834, 'en', 'name', 'Sea Turtle Conservancy'),
(148508, 115835, 'fr', 'name', 'Institut universitaire de cardiologie et de pneumologie de QuƩbec'),
(148509, 115836, 'fr', 'name', 'Institut national des sciences et techniques nuclƩaires'),
(148510, 115836, 'en', 'name', 'National Institute for Nuclear Science and Technology'),
(148511, 115837, 'fr', 'name', 'Institut National de la Recherche Agronomique d''AlgƩrie'),
(148512, 115838, 'fr', 'name', 'Fondation pour la Recherche StratƩgique'),
(148513, 115838, 'en', 'name', 'Foundation for Strategic Research'),
(148514, 115839, 'fr', 'name', 'Centre FranƧois Baclesse'),
(148515, 115840, 'en', 'name', 'All-Russian Research Institute for Fire Protection'),
(148516, 115840, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Всероссийский орГена ā€žŠ—Š½Š°Šŗ ŠŸŠ¾Ń‡Ń‘Ń‚Š°ā€œ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ противопожарной обороны»'),
(148517, 115841, 'en', 'name', 'Public Citizen'),
(148518, 115842, 'en', 'name', 'General Commission for Scientific Agricultural Research'),
(148519, 115842, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų¹Ł„Ł…ŁŠŲ© Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(148520, 115843, 'en', 'name', 'United Kingdom Atomic Energy Authority'),
(148521, 115844, 'en', 'name', 'Workers Compensation Board of Manitoba'),
(148522, 115845, 'es', 'name', 'Instituto de Estudios Universitarios'),
(148523, 115846, 'en', 'name', 'UConn Health'),
(148524, 115847, 'en', 'name', 'National Research Development Institute for Animal Biology and Nutrition'),
(148525, 115848, 'en', 'name', 'Republican Scientific and Practical Center of Cardiology'),
(148526, 115848, 'ru', 'name', 'Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр Ā«ŠšŠ°Ń€Š“ŠøŠ¾Š»Š¾Š³ŠøŃĀ»'),
(148527, 115849, 'es', 'name', 'Centro de Ciencias Ambientales EULA-Chile de la Universidad de Concepción'),
(148528, 115850, 'en', 'name', 'Stockholm Gerontology Research Center Foundation'),
(148529, 115851, 'pl', 'name', 'Akademia Łomżyńska'),
(148530, 115851, 'en', 'name', 'University of Lomza'),
(148531, 115852, 'de', 'name', 'Institut für Automation und Kommunikation'),
(148532, 115853, 'en', 'name', 'Academy of Sciences and Arts of Bosnia and Herzegovina'),
(148533, 115853, 'hr', 'name', 'Akademija nauka i umjetnosti Bosne i Hercegovine'),
(148534, 115853, 'sr', 'name', 'АкаГемија наука Šø ŃƒŠ¼Ń˜ŠµŃ‚Š½Š¾ŃŃ‚Šø Босне Šø Єерцеговине'),
(148535, 115854, 'en', 'name', 'Saint-Petersburg I. I. Dzhanelidze Research Institute of Emergency Medicine'),
(148536, 115854, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ И. И. ДжанелиГзе ŠŠ˜Š˜ ŃŠŗŃŃ‚Ń€ŠµŠ½Š½Š¾Š¹ меГицины'),
(148537, 115855, 'fr', 'name', 'Centre international de recherche-dƩveloppement sur l''elevage en zone subhumide'),
(148538, 115856, 'en', 'name', 'Environmental Protection Agency'),
(148539, 115857, 'en', 'name', 'Henan Zhongyuan Medical Science and Technology Innovation and Development Foundation'),
(148540, 115857, 'zh', 'name', 'ę²³å—ēœäø­åŽŸåŒ»å­¦ē§‘ęŠ€åˆ›ę–°å‘å±•åŸŗé‡‘ä¼š'),
(148541, 115858, 'en', 'name', 'Center For Biomarker Research In Medicine'),
(148542, 115859, 'en', 'name', 'European Molecular Biology Network (EMBnet)'),
(148543, 115860, 'pt', 'name', 'Instituto AgronƓmico de Pernambuco'),
(148544, 115861, 'en', 'name', 'Shenzhen Science and Technology Innovation Commission'),
(148545, 115861, 'zh', 'name', 'ę·±åœ³åø‚ē§‘ęŠ€åˆ›ę–°å±€'),
(148546, 115862, 'nl', 'name', 'Wikimedia Nederland'),
(148547, 115863, 'pt', 'name', 'Faculdade JesuĆ­ta de Filosofia e Teologia'),
(148548, 115863, 'en', 'name', 'Jesuit School of Philosophy and Theology'),
(148549, 115864, 'en', 'name', 'London Institute for Mathematical Sciences'),
(148550, 115865, 'en', 'name', 'University of Fredericton'),
(148551, 115866, 'de', 'name', 'Deutsche Gesellschaft für Allgemeine und Vergleichende Literaturwissenschaft'),
(148552, 115867, 'pt', 'name', 'Secretaria da SaĆŗde do Estado da Bahia'),
(148553, 115868, 'en', 'name', 'Hungarian National Museum'),
(148554, 115869, 'en', 'name', 'Guangdong Polytechnic Normal University'),
(148555, 115869, 'zh', 'name', 'å¹æäøœęŠ€ęœÆåøˆčŒƒå¤§å­¦'),
(148556, 115870, 'en', 'name', 'European Molecular Biology Laboratory'),
(148557, 115870, 'fr', 'name', 'Laboratoire EuropƩen de Biologie MolƩculaire'),
(148558, 115871, 'no_lang_code', 'name', 'General Hospital of Ioannina G. Hatzikosta'),
(148559, 115871, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ιωαννίνων "Ī“. Ī§Ī±Ļ„Ī¶Ī·ĪŗĻŽĻƒĻ„Ī±"'),
(148560, 115872, 'bs', 'name', 'Institut za mjeriteljstvo Bosne i Hercegovine'),
(148561, 115872, 'en', 'name', 'Institute of Metrology of Bosnia and Herzegovina'),
(148562, 115872, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¼ŠµŃ‚Ń€Š¾Š»Š¾Š³ŠøŃ˜Ńƒ Босне Šø Єерцеговине'),
(148563, 115873, 'fr', 'name', 'Institut de Recherche sur les CƩramiques'),
(148564, 115874, 'en', 'name', 'Carbon180'),
(148565, 115875, 'ro', 'name', 'Institutul Oncologic Bucuresti'),
(148566, 115876, 'en', 'name', 'Hangzhou Municipal Health Commission'),
(148567, 115876, 'zh', 'name', 'ę­å·žåø‚å«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(148568, 115877, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(148569, 115878, 'en', 'name', 'Dimitrie Cantemir Christian University'),
(148570, 115878, 'ro', 'name', 'Universitatea Creștină Dimitrie Cantemir'),
(148571, 115879, 'es', 'name', 'Turbus (Chile)'),
(148572, 115880, 'hu', 'name', 'AgrÔrtudomÔnyi Kutatóközpont'),
(148573, 115880, 'en', 'name', 'Centre for Agricultural Research'),
(148574, 115881, 'en', 'name', 'Gaia Fund'),
(148575, 115882, 'pt', 'name', 'Museu Paraense EmĆ­lio Goeldi'),
(148576, 115883, 'id', 'name', 'Institut Seni Budaya Indonesia Aceh'),
(148577, 115884, 'en', 'name', 'University of Mobile'),
(148578, 115884, 'fr', 'name', 'UniversitƩ de mobile'),
(148579, 115885, 'en', 'name', 'Royal Dental Hospital of Melbourne'),
(148580, 115886, 'en', 'name', 'All-Russian Scientific Research Institute of Horticulture named after IV Michurin'),
(148581, 115886, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ саГовоГства имени И. Š’. ŠœŠøŃ‡ŃƒŃ€ŠøŠ½Š°'),
(148582, 115887, 'es', 'name', 'Sociedad EspaƱola de Cirugƭa OrtopƩdica y Traumatologƭa'),
(148583, 115888, 'de', 'name', 'UniversitƤt Witten/Herdecke'),
(148584, 115888, 'en', 'name', 'Witten/Herdecke University'),
(148585, 115889, 'no_lang_code', 'name', 'Toyooka Hospital'),
(148586, 115889, 'ja', 'name', 'č±Šå²”ē—…é™¢'),
(148587, 115890, 'no_lang_code', 'name', 'Calabazas Creek Research (United States)'),
(148588, 115891, 'en', 'name', 'ELTE Centre for Economic and Regional Studies'),
(148589, 115891, 'hu', 'name', 'ELTE KözgazdasÔg- és RegionÔlis TudomÔnyi Kutatóközpont'),
(148590, 115892, 'en', 'name', 'National University of La Plata'),
(148591, 115892, 'es', 'name', 'Universidad Nacional de La Plata'),
(148592, 115892, 'fr', 'name', 'UniversitƩ nationale de la plata'),
(148593, 115893, 'cy', 'name', 'Prifysgol Abertawe'),
(148594, 115893, 'en', 'name', 'Swansea University'),
(148595, 115894, 'en', 'name', 'Community & Oral Health Service - MSH'),
(148596, 115895, 'en', 'name', 'Ratio'),
(148597, 115896, 'en', 'name', 'Technological and Higher Education Institute of Hong Kong'),
(148598, 115896, 'zh', 'name', 'é¦™ęøÆé«˜ē­‰ę•™č‚²ē§‘ęŠ€å­øé™¢'),
(148599, 115897, 'en', 'name', 'Institute of Geology and Nature Management, Far Eastern Branch of the Russian Academy of Sciences'),
(148600, 115897, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ'),
(148601, 115898, 'en', 'name', 'American Society of Plant Biologists'),
(148602, 115899, 'es', 'name', 'Controles Empresariales (Colombia)'),
(148603, 115900, 'en', 'name', 'Sakhalin State University'),
(148604, 115900, 'ru', 'name', 'Дахалинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(148605, 115901, 'fr', 'name', 'Centre de Recherche en Technologie des Semi-conducteurs pour l’EnergĆ©tique'),
(148606, 115902, 'en', 'name', 'University Rehabilitation Institute'),
(148607, 115902, 'sl', 'name', 'Univerzitetni Rehabilitacijski InŔtitut'),
(148608, 115903, 'no_lang_code', 'name', 'Moravian Museum'),
(148609, 115903, 'cs', 'name', 'MoravskƩ ZemskƩ Muzeum'),
(148610, 115904, 'en', 'name', 'University of Gastronomic Sciences'),
(148611, 115904, 'it', 'name', 'UniversitĆ  degli Studi di Scienze Gastronomiche'),
(148612, 115905, 'de', 'name', 'Klinik Bad Oexen'),
(148613, 115906, 'no_lang_code', 'name', 'Advanced Technology & Materials (China)'),
(148614, 115907, 'en', 'name', 'Winston-Salem/Forsyth County Schools'),
(148615, 115908, 'it', 'name', 'Azienda Ospedaliero Universitario Mater Domini'),
(148616, 115909, 'en', 'name', 'Department for Business and Trade'),
(148617, 115910, 'en', 'name', 'Shanghai Municipal Commission of Health and Family Planning'),
(148618, 115910, 'zh', 'name', 'äøŠęµ·åø‚å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(148619, 115911, 'no_lang_code', 'name', 'DataCite'),
(148620, 115912, 'es', 'name', 'Hospital Universitario de la Samaritana'),
(148621, 115912, 'en', 'name', 'University Hospital of the Samaritan'),
(148622, 115913, 'en', 'name', 'Kaplan Medical Center'),
(148623, 115913, 'he', 'name', '×ž×Ø×›×– רפואי קפלן'),
(148624, 115914, 'en', 'name', 'Siena Heights University');
INSERT INTO `ror_settings` VALUES
(148625, 115915, 'en', 'name', 'Potato Research Institute'),
(148626, 115916, 'en', 'name', 'Latrobe Regional Hospital'),
(148627, 115917, 'en', 'name', 'Infectious Clinical Hospital No. 1'),
(148628, 115917, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń ŠøŠ½Ń„ŠµŠŗŃ†ŠøŠ¾Š½Š½Š°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 1'),
(148629, 115918, 'en', 'name', 'Hollins University'),
(148630, 115919, 'it', 'name', 'Istituto S.Anna Crotone'),
(148631, 115920, 'en', 'name', 'Baylor College of Medicine'),
(148632, 115920, 'es', 'name', 'Escuela de Medicina de Baylor'),
(148633, 115921, 'en', 'name', '01.AI (China)'),
(148634, 115921, 'zh', 'name', '零一万物'),
(148635, 115922, 'es', 'name', 'Tecnomix (Spain)'),
(148636, 115923, 'es', 'name', 'Optimo (Chile)'),
(148637, 115924, 'en', 'name', 'University of Tennessee Health Science Center'),
(148638, 115925, 'no_lang_code', 'name', 'Materials Development (United States)'),
(148639, 115926, 'no_lang_code', 'name', 'Kayser (Italy)'),
(148640, 115927, 'fr', 'name', 'Société Francophone du Diabète'),
(148641, 115928, 'en', 'name', 'National Root Crops Research Institute'),
(148642, 115929, 'en', 'name', 'Brain Research Foundation'),
(148643, 115930, 'en', 'name', 'The LEGO Foundation'),
(148644, 115931, 'en', 'name', 'Tea Research Association'),
(148645, 115932, 'en', 'name', 'Frontier Science Foundation'),
(148646, 115933, 'en', 'name', 'Roland Institute of Pharmaceutical Sciences'),
(148647, 115934, 'fr', 'name', 'Centre de Recherche en Ɖconomie AppliquĆ©e pour le DĆ©veloppement'),
(148648, 115935, 'en', 'name', 'Miyagi Children''s Hospital'),
(148649, 115935, 'ja', 'name', 'å®®åŸŽēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(148650, 115936, 'no_lang_code', 'name', 'China Nerin Engineering (China)'),
(148651, 115937, 'en', 'name', 'Kakaraparti Bhavanarayana College'),
(148652, 115937, 'te', 'name', 'ą°•ą°¾ą°•ą°°ą°Ŗą°°ą±ą°¤ą°æ భావనారాయణ కళాశాల'),
(148653, 115938, 'en', 'name', 'Center for Outcomes Research and Clinical Epidemiology'),
(148654, 115939, 'de', 'name', 'Hamburgische Investitions- und Fƶrderbank'),
(148655, 115940, 'en', 'name', 'Luther Seminary'),
(148656, 115941, 'en', 'name', 'Mengo Hospital'),
(148657, 115942, 'en', 'name', 'Fulbright Ireland'),
(148658, 115943, 'en', 'name', 'Museum of Decorative Arts in Prague'),
(148659, 115943, 'cs', 'name', 'UměleckoprÅÆmyslovĆ© Muzeum v Praze'),
(148660, 115944, 'en', 'name', 'Giustino Fortunato University'),
(148661, 115944, 'it', 'name', 'UniversitĆ  degli Studi Giustino Fortunato'),
(148662, 115945, 'en', 'name', 'Universities Austria'),
(148663, 115945, 'de', 'name', 'Ɩsterreichische UniversitƤtenkonferenz'),
(148664, 115946, 'en', 'name', 'Bolivarian University of Venezuela'),
(148665, 115946, 'es', 'name', 'Universidad Bolivariana de Venezuela'),
(148666, 115947, 'de', 'name', 'Christophorus Kliniken'),
(148667, 115948, 'en', 'name', 'Nanyang Technological University'),
(148668, 115948, 'ms', 'name', 'Universiti Teknologi Nanyang'),
(148669, 115948, 'ta', 'name', 'ą®Øą®©ąÆą®Æą®¾ą®™ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(148670, 115948, 'zh', 'name', 'å—ę“‹ē†å·„å¤§å­¦'),
(148671, 115949, 'no_lang_code', 'name', 'Centralny Ośrodek Badawczo Rozwojowy Aparatury Badawczej i Dydaktycznej (Poland)'),
(148672, 115950, 'es', 'name', 'Universidad Metropolitana de Honduras'),
(148673, 115951, 'en', 'name', 'Ningbo University'),
(148674, 115951, 'zh', 'name', '宁波大学'),
(148675, 115952, 'es', 'name', 'Federación Española de Enfermedades Raras'),
(148676, 115952, 'en', 'name', 'Spanish Federation for Rare Diseases'),
(148677, 115953, 'en', 'name', 'Bethany College - West Virginia'),
(148678, 115954, 'en', 'name', 'Croatian Academic and Research Network'),
(148679, 115954, 'hr', 'name', 'Hrvatska akademska i istraživačka mreža'),
(148680, 115955, 'en', 'name', 'National Australia Bank'),
(148681, 115956, 'en', 'name', 'Government of Alberta'),
(148682, 115957, 'en', 'name', 'Shandong University'),
(148683, 115957, 'zh', 'name', '山东大学'),
(148684, 115958, 'en', 'name', 'Paul Ramsay Foundation'),
(148685, 115959, 'en', 'name', 'Office of the Assistant Secretary for Health'),
(148686, 115960, 'id', 'name', 'Universitas Annuqayah'),
(148687, 115961, 'en', 'name', 'Department for Science, Innovation and Technology'),
(148688, 115962, 'no_lang_code', 'name', 'Hepatitis B Foundation'),
(148689, 115963, 'en', 'name', 'Cumberland Hospital'),
(148690, 115964, 'es', 'name', 'Helios Salud'),
(148691, 115965, 'en', 'name', 'Center for Migration Studies of New York'),
(148692, 115966, 'en', 'name', 'Sansum Diabetes Research Institute'),
(148693, 115967, 'en', 'name', 'Bashkir Scientific Research Institute of Petroleum Refining'),
(148694, 115967, 'ru', 'name', 'ŠŠž "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефтехимпереработки"'),
(148695, 115968, 'es', 'name', 'Hospital Militar de Santiago'),
(148696, 115969, 'pt', 'name', 'Instituto Lauro de Souza Lima'),
(148697, 115970, 'en', 'name', 'American Political Science Association'),
(148698, 115971, 'en', 'name', 'Sexual Violence Research Initiative'),
(148699, 115972, 'en', 'name', 'HUN-REN Institute of Experimental Medicine'),
(148700, 115972, 'hu', 'name', 'Kísérleti OrvostudomÔnyi Kutatóintézet MTA'),
(148701, 115973, 'en', 'name', 'MetaMind Innovations (Greece)'),
(148702, 115974, 'en', 'name', 'Annamalai University'),
(148703, 115974, 'hi', 'name', 'ą¤…ą¤Øą„ą¤Øą¤¾ą¤®ą¤²ą¤¾ą¤ˆ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(148704, 115974, 'pa', 'name', 'ąØ…ą©°ąØØąØ¾ąØ®ąØ²ąØ¾ąØˆ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(148705, 115974, 'ta', 'name', 'ą®…ą®£ąÆą®£ą®¾ą®®ą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(148706, 115974, 'ml', 'name', 'ą“…ą“£ąµą“£ą“¾ą“®ą“²ąµˆ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(148707, 115975, 'sw', 'name', 'Chuo Kikuu cha Mtakatifu Agostino Tanzania'),
(148708, 115975, 'en', 'name', 'St. Augustine University of Tanzania'),
(148709, 115976, 'en', 'name', 'French Corrosion Institute'),
(148710, 115977, 'en', 'name', 'Asser Institute'),
(148711, 115978, 'no_lang_code', 'name', 'Chania General Hospital ā€St. Georgeā€'),
(148712, 115978, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Χανίων "Ο Άγιος Ī“ĪµĻŽĻĪ³Ī¹ĪæĻ‚"'),
(148713, 115979, 'en', 'name', 'Central Research and Design Institute'),
(148714, 115979, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(148715, 115980, 'en', 'name', 'Education Department of Fujian Province'),
(148716, 115980, 'zh', 'name', 'ē¦å»ŗēœę•™č‚²åŽ…'),
(148717, 115981, 'en', 'name', 'National University of Architecture and Construction of Armenia'),
(148718, 115981, 'hy', 'name', 'ÕƒÕ”Ö€ÕæÕ”Ö€Õ”ÕŗÕ„ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ և Õ·Õ«Õ¶Õ”Ö€Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(148719, 115982, 'sv', 'name', 'Institutet fƶr HƤlso- och SjukvƄrdsekonomi'),
(148720, 115982, 'en', 'name', 'Swedish Institute for Health Economics'),
(148721, 115983, 'id', 'name', 'Sekolah Tinggi Agama Islam Negeri Teungku Dirundeng Meulaboh'),
(148722, 115984, 'en', 'name', 'The Micheli Center for Sports Injury Prevention'),
(148723, 115985, 'no_lang_code', 'name', 'TE Laboratories (Ireland)'),
(148724, 115986, 'en', 'name', 'Federal University of ViƧosa'),
(148725, 115986, 'pt', 'name', 'Universidade Federal de ViƧosa'),
(148726, 115987, 'en', 'name', 'Stroud Water Research Center'),
(148727, 115988, 'en', 'name', 'Overdeck Family Foundation'),
(148728, 115989, 'es', 'name', 'Centro Oncológico de Galicia'),
(148729, 115990, 'en', 'name', 'Science Solutions International Laboratory, Inc. (Japan)'),
(148730, 115991, 'en', 'name', 'iNGR, Inc.'),
(148731, 115991, 'no_lang_code', 'name', 'iNGR, Inc. (South Korea)'),
(148732, 115991, 'ko', 'name', 'ģ•„ģ“ģ—”ģ§€ģ•Œ'),
(148733, 115992, 'en', 'name', 'Government College of Engineering, Tirunelveli'),
(148734, 115993, 'en', 'name', 'European Molecular Biology Laboratory'),
(148735, 115993, 'de', 'name', 'Europäisches Laboratorium für Molekularbiologie'),
(148736, 115994, 'no_lang_code', 'name', 'Surrey Satellite Technology (United Kingdom)'),
(148737, 115995, 'pt', 'name', 'Fundação de Amparo à Pesquisa e ao Desenvolvimento Científico e Tecnológico do Maranhão'),
(148738, 115996, 'en', 'name', 'Novena University'),
(148739, 115997, 'no_lang_code', 'name', 'Pulp and Paper Research Institute'),
(148740, 115998, 'en', 'name', 'Nutrasource'),
(148741, 115999, 'es', 'name', 'Instituto de Neurociencia BiomƩdica'),
(148742, 116000, 'no_lang_code', 'name', 'Kureha (Japan)'),
(148743, 116000, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ćƒ'),
(148744, 116001, 'no_lang_code', 'name', 'Integral Consulting (United States)'),
(148745, 116002, 'pl', 'name', 'Wojewódzki Szpital Specjalistyczny we Wrocławiu'),
(148746, 116003, 'en', 'name', 'Cephas Health Research Initiative'),
(148747, 116004, 'es', 'name', 'CBB (Chile)'),
(148748, 116005, 'pt', 'name', 'Centro de Pesquisas Oncológicas'),
(148749, 116006, 'en', 'name', 'Corona College of Education'),
(148750, 116007, 'en', 'name', 'AccessLex Institute'),
(148751, 116008, 'en', 'name', 'Rajkiya Engineering College Mainpuri'),
(148752, 116009, 'en', 'name', 'Institute of Labour and Social Studies'),
(148753, 116009, 'pl', 'name', 'Instytut Pracy i Spraw Socjalnych'),
(148754, 116010, 'en', 'name', 'Vorarlberg Institute for Vascular Investigation and Treatment'),
(148755, 116011, 'en', 'name', 'AIDS Prevention Initiative in Nigeria'),
(148756, 116012, 'en', 'name', 'Centre For Cold Ocean Resources Engineering'),
(148757, 116013, 'it', 'name', 'Istituto di Sociologia Internazionale di Gorizia'),
(148758, 116014, 'en', 'name', 'Federal Scientific Center of Physical Culture and Sports'),
(148759, 116014, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Физической ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ И Дпорта'),
(148760, 116015, 'fr', 'name', 'Institut SupĆ©rieur d’Informatique, de ModĆ©lisation et de leurs Applications'),
(148761, 116016, 'en', 'name', 'Mines Paris, PSL University'),
(148762, 116016, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Mines de Paris'),
(148763, 116017, 'en', 'name', 'DNA Labs-CRIS (Centre for Research and Innovative Studies)'),
(148764, 116018, 'en', 'name', 'National Tropical Botanical Garden'),
(148765, 116019, 'pt', 'name', 'Instituto de Tecnologia do ParanĆ”'),
(148766, 116020, 'en', 'name', 'Building Research Association of New Zealand'),
(148767, 116021, 'en', 'name', 'National University of Sciences, Technologies, Engineering and Mathematics'),
(148768, 116021, 'fr', 'name', 'UniversitƩ Nationale des Sciences, Technologies, IngƩnierie et MathƩmatiques'),
(148769, 116022, 'en', 'name', 'Technology Centre for Offshore and Marine, Singapore'),
(148770, 116023, 'en', 'name', 'Hesperia Hospital'),
(148771, 116024, 'en', 'name', 'Government of Shandong Province'),
(148772, 116024, 'zh', 'name', 'å±±äøœēœäŗŗę°‘ę”æåŗœ'),
(148773, 116025, 'en', 'name', 'The Gordon Life Science Institute'),
(148774, 116026, 'en', 'name', 'Federal Polytechnic Oko'),
(148775, 116027, 'fr', 'name', 'Centre de GƩomatique du QuƩbec'),
(148776, 116028, 'en', 'name', 'Electronics Testing Center'),
(148777, 116029, 'es', 'name', 'Unidad de CirugĆ­a Cardiovascular de Guatemala'),
(148778, 116030, 'id', 'name', 'Institut Teknologi Telkom Purwokerto'),
(148779, 116030, 'en', 'name', 'Purwokerto Telkom Institute of Technology'),
(148780, 116031, 'fr', 'name', 'Waypoint Centre de Soins de SantƩ Mentale'),
(148781, 116031, 'en', 'name', 'Waypoint Centre for Mental Health Care'),
(148782, 116032, 'en', 'name', 'Far Eastern State Agrarian University'),
(148783, 116032, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(148784, 116033, 'hr', 'name', 'VeleučiliŔte Velika Gorica'),
(148785, 116034, 'en', 'name', 'Al-Idrisi University College'),
(148786, 116034, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų£Ł„Ų„ŲÆŲ±ŁŠŲ³ŁŠ الجامعة'),
(148787, 116035, 'en', 'name', 'Respiratory Programmatic Implementation and Research Institute'),
(148788, 116035, 'id', 'name', 'Yayasan Riset dan Pelatihan Respirasi Indonesia'),
(148789, 116036, 'no_lang_code', 'name', 'Japan Weather Association (Japan)'),
(148790, 116036, 'ja', 'name', 'ę—„ęœ¬ę°—č±”å”ä¼š'),
(148791, 116037, 'en', 'name', 'Azrieli Centre for Autism Research'),
(148792, 116037, 'fr', 'name', 'Centre Azrieli de recherche sur l''autisme'),
(148793, 116038, 'id', 'name', 'Sekolah Tinggi Agama Islam Darussalam Nganjuk'),
(148794, 116039, 'en', 'name', 'Massachusetts Gaming Commission'),
(148795, 116040, 'en', 'name', 'European Molecular Biology Laboratory'),
(148796, 116041, 'en', 'name', 'Nordic Institute of Dental Materials'),
(148797, 116042, 'fr', 'name', 'UniversitƩ Bourgogne Europe'),
(148798, 116043, 'en', 'name', 'Louisiana Cancer Research Center'),
(148799, 116044, 'it', 'name', 'Fondazione Centro Marino Internazionale'),
(148800, 116045, 'en', 'name', 'Austrian Centre for Digital Humanities'),
(148801, 116046, 'no_lang_code', 'name', 'Korkyt Ata Kyzylorda State University'),
(148802, 116046, 'kk', 'name', 'ŅšŠ¾Ń€Ņ›Ń‹Ń‚ Ата атынГағы ŅšŃ‹Š·Ń‹Š»Š¾Ń€Š“Š° мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(148803, 116047, 'en', 'name', 'MSPCA-Angell'),
(148804, 116048, 'en', 'name', 'Ulster University, Derry-Londonderry Campus'),
(148805, 116049, 'en', 'name', 'Bird Conservancy of the Rockies'),
(148806, 116050, 'fr', 'name', 'LIRA - Laboratoire d''instrumentation et de recherche en astrophysique'),
(148807, 116050, 'en', 'name', 'LIRA - Laboratory for Instrumentation and Research in Astrophysics'),
(148808, 116051, 'en', 'name', 'Institute for Ethnic Studies'),
(148809, 116052, 'en', 'name', 'BC Research (Canada)'),
(148810, 116053, 'es', 'name', 'Corporación de Ciencia y Tecnología para el Desarrollo de la Industria Naval Marítima y Fluvial'),
(148811, 116053, 'en', 'name', 'Science and Technology Corporation for Naval, Maritime and Riverine Industry Development'),
(148812, 116054, 'en', 'name', 'The Geneva Foundation'),
(148813, 116055, 'en', 'name', 'IASO General Hospital'),
(148814, 116056, 'de', 'name', 'Ministerium für Landwirtschaft, Umwelt und Klimaschutz des Landes Brandenburg'),
(148815, 116057, 'en', 'name', 'Joint Clinical Research Centre'),
(148816, 116058, 'en', 'name', 'St. Philomena College, Puttur'),
(148817, 116058, 'kn', 'name', 'ಸಂತ ಫಿಲೋಮಿನಾ ą²•ą²¾ą²²ą³‡ą²œą³, ą²Ŗą³ą²¤ą³ą²¤ą³‚ą²°ą³'),
(148818, 116059, 'en', 'name', 'Department for International Trade'),
(148819, 116060, 'de', 'name', 'Ortenau Klinikum'),
(148820, 116061, 'en', 'name', 'Department of Science and Technology of Liaoning Province'),
(148821, 116061, 'zh', 'name', 'č¾½å®ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(148822, 116062, 'en', 'name', 'University of Fiji'),
(148823, 116063, 'en', 'name', 'University Of Information Technology'),
(148824, 116063, 'my', 'name', 'į€žį€į€„į€ŗį€øį€”į€į€»į€€į€ŗį€”į€œį€€į€ŗį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(148825, 116064, 'en', 'name', '108 Military Central Hospital'),
(148826, 116064, 'vi', 'name', 'Bệnh viện Trung ʰʔng QuĆ¢n đội 108'),
(148827, 116065, 'en', 'name', 'Fort Hays State University'),
(148828, 116066, 'no_lang_code', 'name', 'ALK-Abelló (Denmark)'),
(148829, 116067, 'en', 'name', 'DAIR Institute'),
(148830, 116067, 'ja', 'name', 'åˆ†ę•£åž‹äŗŗå·„ēŸ„čƒ½ē ”ē©¶ę‰€'),
(148831, 116068, 'en', 'name', 'Ministry of Health'),
(148832, 116069, 'en', 'name', 'Fridtjof Nansen Institute'),
(148833, 116070, 'en', 'name', 'Stephens College'),
(148834, 116071, 'fr', 'name', 'L''HƓpital d''Ottawa'),
(148835, 116071, 'en', 'name', 'Ottawa Hospital'),
(148836, 116072, 'en', 'name', 'Herat University'),
(148837, 116072, 'fa', 'name', 'دانؓگاه هرات'),
(148838, 116073, 'en', 'name', 'Battersea Arts Centre'),
(148839, 116074, 'ca', 'name', 'Institut d''Estudis Catalans'),
(148840, 116074, 'en', 'name', 'Institute for Catalan Studies'),
(148841, 116074, 'es', 'name', 'Instituto de Estudios Catalanes'),
(148842, 116075, 'es', 'name', 'Hospital Privado de Comunidad'),
(148843, 116076, 'en', 'name', 'ANT Foundation Italy Onlus'),
(148844, 116076, 'it', 'name', 'Fondazione ANT Italia ONLUS'),
(148845, 116077, 'en', 'name', 'Institute e-Austria Timisoara'),
(148846, 116078, 'en', 'name', 'Canadian Institute for Health Information'),
(148847, 116079, 'en', 'name', 'Rhema University'),
(148848, 116080, 'en', 'name', 'National University of Singapore'),
(148849, 116080, 'ta', 'name', 'ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®¤ąÆ‡ą®šą®æą®Æą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(148850, 116080, 'zh', 'name', 'ę–°åŠ å”å›½ē«‹å¤§å­¦'),
(148851, 116081, 'en', 'name', 'Polytechnic Lavoslav Ružička Vukovar'),
(148852, 116081, 'hr', 'name', 'VeleučiliŔte Lavoslav Ružička u Vukovaru'),
(148853, 116082, 'en', 'name', 'SEAMEO Regional Center for Food and Nutrition'),
(148854, 116083, 'en', 'name', 'Regional Municipality of Waterloo'),
(148855, 116084, 'nl', 'name', 'De Hoogstraat Revalidatie'),
(148856, 116085, 'en', 'name', 'Samara State Agrarian University'),
(148857, 116085, 'ru', 'name', 'Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(148858, 116086, 'en', 'name', 'Glacier Bay National Park and Preserve'),
(148859, 116087, 'pt', 'name', 'Laboratório Bacchi'),
(148860, 116088, 'en', 'name', 'Uzsoki Hospital'),
(148861, 116088, 'hu', 'name', 'Uzsoki Utcai KórhÔz'),
(148862, 116089, 'en', 'name', 'Boston University'),
(148863, 116089, 'es', 'name', 'Universidad de Boston'),
(148864, 116089, 'fr', 'name', 'UniversitƩ de Boston'),
(148865, 116090, 'en', 'name', 'All-Russian Research Institute of Oil Crops by V.S. Pustovoit'),
(148866, 116090, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ масличных ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ имени Š’. Š”. ŠŸŃƒŃŃ‚Š¾Š²Š¾Š¹Ń‚Š°'),
(148867, 116091, 'en', 'name', 'Jissen Women''s University'),
(148868, 116091, 'ja', 'name', '実践儳子大学'),
(148869, 116092, 'es', 'name', 'CƔmara de Comercio de Santiago'),
(148870, 116093, 'en', 'name', 'Health Commission of Fujian Province'),
(148871, 116093, 'zh', 'name', 'ē¦å»ŗēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(148872, 116094, 'en', 'name', 'Museum of Fine Arts'),
(148873, 116095, 'en', 'name', 'Institute for Urban Indigenous Health'),
(148874, 116096, 'en', 'name', 'Burgas Free University'),
(148875, 116096, 'bg', 'name', 'Š‘ŃƒŃ€Š³Š°ŃŠŗŠø свобоГен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(148876, 116097, 'hu', 'name', 'Budapesti Corvinus Egyetem'),
(148877, 116097, 'en', 'name', 'Corvinus University of Budapest'),
(148878, 116098, 'en', 'name', 'National Audit Office'),
(148879, 116099, 'en', 'name', 'Chengdu Science and Technology Bureau'),
(148880, 116099, 'zh', 'name', 'ęˆéƒ½åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(148881, 116100, 'de', 'name', 'Bundesministerium des Innern'),
(148882, 116100, 'en', 'name', 'Federal Ministry of the Interior'),
(148883, 116101, 'no_lang_code', 'name', 'Syntek Technologies (United States)'),
(148884, 116102, 'no_lang_code', 'name', 'Rostov-on-Don Anti-plague Institute Rospotrebnadzor'),
(148885, 116102, 'ru', 'name', 'Ростовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠæŃ€Š¾Ń‚ŠøŠ²Š¾Ń‡ŃƒŠ¼Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(148886, 116103, 'en', 'name', 'Kamaraj College'),
(148887, 116103, 'ta', 'name', 'ą®•ą®¾ą®®ą®°ą®¾ą®œąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(148888, 116104, 'sl', 'name', 'Zdravstveni dom dr. Adolfa Drolca Maribor'),
(148889, 116105, 'en', 'name', 'Research and Production Association Typhoon'),
(148890, 116106, 'en', 'name', 'Department for Business, Energy and Industrial Strategy'),
(148891, 116107, 'en', 'name', 'Queensland Eye Institute'),
(148892, 116108, 'es', 'name', 'Agencia de Regulación y Control Fito y Zoosanitario'),
(148893, 116109, 'en', 'name', 'American Institute of Chemical Engineers'),
(148894, 116110, 'en', 'name', 'United States Economic Development Administration'),
(148895, 116111, 'en', 'name', 'District of Columbia Water and Sewer Authority'),
(148896, 116112, 'en', 'name', 'Institute for Employment Studies'),
(148897, 116113, 'en', 'name', 'Development Research and Projects Centre'),
(148898, 116114, 'en', 'name', 'Vineland Research and Innovation Centre'),
(148899, 116115, 'en', 'name', 'Seoul Media Institute of Technology'),
(148900, 116115, 'ko', 'name', 'ģ„œģšøėÆøė””ģ–“ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(148901, 116116, 'de', 'name', 'Krankenhaus Porz am Rhein'),
(148902, 116117, 'en', 'name', 'Crown Family Philanthropies'),
(148903, 116118, 'en', 'name', 'Sage Bionetworks'),
(148904, 116119, 'en', 'name', 'UCD Foundation'),
(148905, 116120, 'en', 'name', 'Canadian Frailty Network'),
(148906, 116121, 'en', 'name', 'Canadian Open Neuroscience Platform'),
(148907, 116122, 'en', 'name', 'Crawford University'),
(148908, 116123, 'en', 'name', 'Saint-Petersburg State Agrarian University'),
(148909, 116123, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(148910, 116124, 'en', 'name', 'Prairie View A&M University'),
(148911, 116125, 'es', 'name', 'Centro de Investigación en Ecosistemas de la Patagonia'),
(148912, 116125, 'en', 'name', 'Patagonian Ecosystems Investigation Research Center'),
(148913, 116126, 'tr', 'name', 'Türkiye İş Kurumu'),
(148914, 116127, 'en', 'name', 'National Institute of Science and Technology'),
(148915, 116128, 'en', 'name', 'Centre for Family Medicine'),
(148916, 116129, 'es', 'name', 'Instituto de Diagnóstico e Investigaciones Metabólicas'),
(148917, 116130, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(148918, 116131, 'en', 'name', 'College of Agriculture Science and Technology'),
(148919, 116132, 'pt', 'name', 'Centro UniversitƔrio FIEO'),
(148920, 116133, 'no_lang_code', 'name', 'Spectral Energies (United States)'),
(148921, 116134, 'pl', 'name', 'Centrum Kopernika Badań Interdyscyplinarnych'),
(148922, 116135, 'en', 'name', 'Sanjay Ghodawat University'),
(148923, 116136, 'no_lang_code', 'name', 'Hokuto Hospital'),
(148924, 116136, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ—ę–—åŒ—ę–—ē—…é™¢'),
(148925, 116137, 'en', 'name', 'Angkor Hospital for Children'),
(148926, 116138, 'en', 'name', 'Canterbury Museum'),
(148927, 116139, 'en', 'name', 'ACTRIS Italia'),
(148928, 116140, 'en', 'name', 'Urology of Virginia'),
(148929, 116141, 'id', 'name', 'Politeknik Kesejahteraan Sosial'),
(148930, 116142, 'de', 'name', 'Israelitisches Krankenhaus'),
(148931, 116143, 'no_lang_code', 'name', 'Thriasio General Hospital of Elefsina'),
(148932, 116143, 'el', 'name', 'Θριάσιο ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(148933, 116144, 'en', 'name', 'Royal Zoological Society of Scotland'),
(148934, 116145, 'es', 'name', 'CSL Behring (Colombia)'),
(148935, 116146, 'no_lang_code', 'name', 'Ensco (United States)'),
(148936, 116147, 'pl', 'name', 'Białowieża National Park'),
(148937, 116148, 'en', 'name', 'Virginia Aquarium & Marine Science Center'),
(148938, 116149, 'fr', 'name', 'Cegep de Saint Hyacinthe'),
(148939, 116150, 'fr', 'name', 'Dystrophie musculaire Canada'),
(148940, 116150, 'en', 'name', 'Muscular Dystrophy Canada'),
(148941, 116151, 'en', 'name', 'Sarcoma Oncology Center'),
(148942, 116152, 'en', 'name', 'Vignana Bharathi Institute of Technology'),
(148943, 116153, 'fr', 'name', 'MusĆ©e du Quai Branly – Jacques Chirac'),
(148944, 116154, 'en', 'name', 'Baichuan'),
(148945, 116154, 'no_lang_code', 'name', 'Baichuan (China)'),
(148946, 116154, 'zh', 'name', 'ē™¾å·ę™ŗčƒ½'),
(148947, 116155, 'en', 'name', 'Emil Racovita Institute of Speleology'),
(148948, 116155, 'ro', 'name', 'Institutul De Speologie Emil Racoviţă'),
(148949, 116156, 'es', 'name', 'Departamento de Asuntos de los Veteranos de los Estados Unidos'),
(148950, 116156, 'fr', 'name', 'DĆ©partement des anciens combattants des Ɖtats-unis'),
(148951, 116156, 'en', 'name', 'United States Department of Veterans Affairs'),
(148952, 116157, 'en', 'name', 'University of Sudbury'),
(148953, 116157, 'fr', 'name', 'UniversitƩ de Sudbury'),
(148954, 116158, 'en', 'name', 'Institute of public health of Republic of Macedonia'),
(148955, 116158, 'sq', 'name', 'Instituti i Shƫndetit Publik i Republikƫs sƫ Maqedonisƫ'),
(148956, 116158, 'mk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за јавно Š·Š“Ń€Š°Š²Ń˜Šµ на Република МакеГонија'),
(148957, 116159, 'de', 'name', 'Spital Limmattal'),
(148958, 116160, 'en', 'name', 'City Hospital No. 40'),
(148959, 116160, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 40'),
(148960, 116161, 'en', 'name', 'Al-Ameen College of Pharmacy'),
(148961, 116162, 'en', 'name', 'National Institute for Bioprocessing Research and Training'),
(148962, 116163, 'en', 'name', 'Adler Planetarium'),
(148963, 116164, 'de', 'name', 'Stiftung Institut für Herzinfarktforschung'),
(148964, 116165, 'fr', 'name', 'Fonds Peregrin'),
(148965, 116165, 'en', 'name', 'The Peregrine Fund'),
(148966, 116166, 'en', 'name', 'Software Policy and Research Institute'),
(148967, 116166, 'ko', 'name', 'ģ†Œķ”„ķŠøģ›Øģ–“ģ •ģ±…ģ—°źµ¬ģ†Œ'),
(148968, 116167, 'en', 'name', 'Instituto Alexander Fleming'),
(148969, 116168, 'en', 'name', 'Flu Lab'),
(148970, 116169, 'en', 'name', 'United Kingdom Space Agency'),
(148971, 116170, 'no_lang_code', 'name', 'Fortum (Finland)'),
(148972, 116171, 'en', 'name', 'Shenzhen Institute for Drug Control'),
(148973, 116172, 'en', 'name', 'Department of Finance of Jiangsu Province'),
(148974, 116172, 'zh', 'name', 'ę±Ÿč‹ēœč“¢ę”æåŽ…'),
(148975, 116173, 'fr', 'name', 'Centre Hospitalier De Pau'),
(148976, 116174, 'en', 'name', 'Ministry of Education of the People''s Republic of China'),
(148977, 116174, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½ę•™č‚²éƒØ'),
(148978, 116175, 'pt', 'name', 'Centro UniversitƔrio Eurƭpedes de Marilia'),
(148979, 116176, 'no_lang_code', 'name', 'Walmart (United States)'),
(148980, 116177, 'tr', 'name', 'Astor Enerji'),
(148981, 116177, 'no_lang_code', 'name', 'Astor Enerji (Türkiye)'),
(148982, 116178, 'en', 'name', 'Rainbow Children''s Hospital'),
(148983, 116179, 'en', 'name', 'Shri Vaishnav Vidyapeeth Vishwavidyalaya, Indore'),
(148984, 116180, 'en', 'name', 'Stellenbosch University'),
(148985, 116180, 'af', 'name', 'Universiteit Stellenbosch'),
(148986, 116181, 'no_lang_code', 'name', 'NeoGenomics (United States)'),
(148987, 116182, 'en', 'name', 'Institute of Forensic Sciences'),
(148988, 116182, 'es', 'name', 'Instituto de Ciencias Forenses de Puerto Rico'),
(148989, 116183, 'en', 'name', 'Vestre Viken Hospital Trust'),
(148990, 116184, 'en', 'name', 'National Research, Development and Innovation Office'),
(148991, 116185, 'en', 'name', 'Cabinet Office'),
(148992, 116186, 'nl', 'name', 'Nederlands Instituut Veiligheid Zwemlocaties'),
(148993, 116187, 'en', 'name', 'Small and Medium Business Administration'),
(148994, 116187, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ģ¤‘ģ†Œźø°ģ—…ģ²­'),
(148995, 116188, 'no_lang_code', 'name', 'Jahrom University'),
(148996, 116188, 'fa', 'name', 'دانؓگاه جهرم'),
(148997, 116189, 'fr', 'name', 'Association internationale de gƩodƩsie'),
(148998, 116189, 'en', 'name', 'International Association of Geodesy'),
(148999, 116190, 'en', 'name', 'Vaccine Confidence Fund'),
(149000, 116191, 'es', 'name', 'Centro de Estudios de Conflicto y Cohesión Social'),
(149001, 116192, 'en', 'name', 'Mediciti Institute of Medical Sciences'),
(149002, 116192, 'te', 'name', 'ą°®ą±†ą°”ą°æą°øą°æą°Ÿą°æ ą°µą±ˆą°¦ą±ą°Æ ą°µą°æą°œą±ą°žą°¾ą°Ø ą°øą°‚ą°øą±ą°„'),
(149003, 116193, 'es', 'name', 'MƔntum S.A.S. (Colombia)'),
(149004, 116194, 'en', 'name', 'Breakthrough T1D'),
(149005, 116195, 'en', 'name', 'Anagram Therapeutics Inc. (United States of America)'),
(149006, 116196, 'no_lang_code', 'name', 'Manonmaniam Sundaranar University'),
(149007, 116196, 'ta', 'name', 'ą®®ą®©ąÆ‹ą®©ąÆą®®ą®£ą®æą®Æą®®ąÆ ą®šąÆą®ØąÆą®¤ą®°ą®©ą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(149008, 116197, 'es', 'name', 'Centro UniversitƔrio Academia'),
(149009, 116198, 'id', 'name', 'Sekolah TInggi Ilmu Ekonomi YPUP Makassar'),
(149010, 116199, 'no_lang_code', 'name', 'Osaka Jogakuin University'),
(149011, 116199, 'ja', 'name', 'å¤§é˜Ŗå„³å­¦é™¢å¤§å­¦'),
(149012, 116200, 'de', 'name', 'Medias Klinikum'),
(149013, 116201, 'en', 'name', 'Curry College'),
(149014, 116202, 'en', 'name', 'Examinations Council of Zambia'),
(149015, 116203, 'de', 'name', 'Private Fachhochschule Wedel'),
(149016, 116203, 'en', 'name', 'University of Applied Sciences Wedel'),
(149017, 116204, 'en', 'name', 'Climate Central'),
(149018, 116205, 'en', 'name', 'Ministry of Agriculture of the Republic of Kazakhstan'),
(149019, 116206, 'nl', 'name', 'Stichting A.F. Deutman Oogheelkunde Researchfonds'),
(149020, 116207, 'no_lang_code', 'name', 'Athens Euroclinic'),
(149021, 116208, 'en', 'name', 'Moonshot AI (China)'),
(149022, 116208, 'zh', 'name', 'ęœˆä¹‹ęš—é¢'),
(149023, 116209, 'en', 'name', 'Canadian Paediatric Society'),
(149024, 116209, 'fr', 'name', 'SociƩtƩ Canadienne de PƩdiatrie'),
(149025, 116210, 'en', 'name', 'University System of New Hampshire'),
(149026, 116211, 'en', 'name', 'Coriell Institute For Medical Research'),
(149027, 116212, 'en', 'name', 'Leibniz Institute for Educational Trajectories'),
(149028, 116212, 'de', 'name', 'Leibniz-Institut für Bildungsverläufe e.V.'),
(149029, 116213, 'pt', 'name', 'Hospital do Rim e Hipertensão'),
(149030, 116214, 'en', 'name', 'National Education and Research Network'),
(149031, 116214, 'pt', 'name', 'Rede Nacional de Ensino e Pesquisa'),
(149032, 116215, 'en', 'name', 'Federal University of Uberlândia'),
(149033, 116215, 'pt', 'name', 'Universidade Federal de Uberlândia'),
(149034, 116216, 'en', 'name', 'Bhailalbhai and Bhikhabhai Institute of Technology'),
(149035, 116216, 'gu', 'name', 'ભાઈલાલભાઈ ąŖąŖØą«ąŖ” ąŖ­ą«€ąŖ–ąŖ¾ąŖ­ąŖ¾ąŖˆ ąŖ‡ąŖØą«ąŖøą«ąŖŸąŖæąŖŸą«ąŖÆą«‚ąŖŸ ąŖ“ąŖ« ąŖŸą«‡ąŖ•ą«ąŖØą«‹ąŖ²ą«‹ąŖœą«€'),
(149036, 116217, 'en', 'name', 'Texas Southern University'),
(149037, 116218, 'no_lang_code', 'name', 'Delta Electronics (Taiwan)'),
(149038, 116218, 'zh', 'name', '达电子'),
(149039, 116219, 'no_lang_code', 'name', 'Kariya Toyota General Hospital'),
(149040, 116219, 'ja', 'name', 'åˆˆč°·č±Šē”°ē·åˆē—…é™¢'),
(149041, 116220, 'en', 'name', 'The National Center for Special Education Research'),
(149042, 116221, 'fr', 'name', 'Fonds de Dotation Clinatec'),
(149043, 116222, 'en', 'name', 'The University of Texas Health Science Center at Houston'),
(149044, 116223, 'en', 'name', 'Ministry of Public Health'),
(149045, 116223, 'ar', 'name', 'وزارة الصحة العامة'),
(149046, 116224, 'en', 'name', 'Endometriosis'),
(149047, 116225, 'en', 'name', 'Center for Practical Bioethics'),
(149048, 116226, 'en', 'name', 'Khyber Medical University'),
(149049, 116226, 'ur', 'name', 'جامعہ طبی Ų®ŪŒŲØŲ±ā€¬ā€Ž'),
(149050, 116227, 'de', 'name', 'Bundesministerium für Wohnen, Kunst, Kultur, Medien und Sport'),
(149051, 116227, 'en', 'name', 'Federal Ministry of Housing, Arts, Culture, Media and Sport'),
(149052, 116228, 'en', 'name', 'Kazakh National Women''s Teacher Training University'),
(149053, 116228, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ женский пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(149054, 116228, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› ұлттық қызГар пеГагогикалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(149055, 116229, 'no_lang_code', 'name', 'Hainan Center for Disease Control & Prevention'),
(149056, 116229, 'zh', 'name', 'ęµ·å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(149057, 116230, 'en', 'name', 'East Midlands Development Agency'),
(149058, 116231, 'en', 'name', 'Project HOPE'),
(149059, 116232, 'pl', 'name', 'Collegium Mazovia Innowacyjna Szkoła Wyższa'),
(149060, 116233, 'en', 'name', 'United States Holocaust Memorial Museum'),
(149061, 116234, 'en', 'name', 'Guangdong Federation of Social Sciences'),
(149062, 116234, 'zh', 'name', 'å¹æäøœēœē¤¾ä¼šē§‘å­¦ē•Œč”åˆä¼š'),
(149063, 116235, 'de', 'name', 'Deutsche Gesellschaft für Hämatologie und Medizinische Onkologie'),
(149064, 116236, 'no_lang_code', 'name', 'SA Technologies (United States)'),
(149065, 116237, 'ro', 'name', 'Spitalul Clinic Judeţean de Urgenţă "Pius Brînzeu" Timişoara'),
(149066, 116238, 'en', 'name', 'Catholic University of Toulouse'),
(149067, 116238, 'fr', 'name', 'Institut catholique de toulouse'),
(149068, 116239, 'en', 'name', 'Agricultural Bank of China'),
(149069, 116240, 'en', 'name', 'Institute of Applied Geophysics of the Academy of Sciences'),
(149070, 116240, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ УчрежГение ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной геофизики АкаГемии наук'),
(149071, 116241, 'en', 'name', 'National Sports Academy Vassil Levski'),
(149072, 116241, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Дпортна ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ "Васил Левски"'),
(149073, 116242, 'en', 'name', 'Wine Australia'),
(149074, 116243, 'en', 'name', 'Kunming Medical University'),
(149075, 116243, 'zh', 'name', 'ę˜†ę˜ŽåŒ»ē§‘å¤§å­¦'),
(149076, 116244, 'en', 'name', 'Chestnut Health Systems'),
(149077, 116245, 'no_lang_code', 'name', 'Shijiazhuang Yiling Pharmaceutical (China)'),
(149078, 116245, 'zh', 'name', 'ēŸ³å®¶åŗ„ä»„å²­čÆäøšč‚”ä»½ęœ‰é™å…¬åø 萄业'),
(149079, 116246, 'fr', 'name', 'Institut Facultaire des sciences Agronomiques de Yangambi'),
(149080, 116247, 'en', 'name', 'American Water Works Association'),
(149081, 116248, 'en', 'name', 'Buein Zahra Technical University'),
(149082, 116249, 'no_lang_code', 'name', 'McDermott Will & Emery (United States)'),
(149083, 116250, 'es', 'name', 'Comisión Internacional de Nomenclatura Zoológica'),
(149084, 116250, 'ca', 'name', 'Comissió Internacional de Nomenclatura Zoològica'),
(149085, 116250, 'pt', 'name', 'Comissão Internacional de Nomenclatura Zoológica'),
(149086, 116250, 'fr', 'name', 'Commission internationale de nomenclature zoologique'),
(149087, 116250, 'en', 'name', 'International Commission on Zoological Nomenclature'),
(149088, 116250, 'pl', 'name', 'Międzynarodowa Komisja Nomenklatury Zoologicznej'),
(149089, 116250, 'hu', 'name', 'Nemzetközi Zoológiai NómenklatúrabizottsÔg'),
(149090, 116250, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń ŠŗŠ¾Š¼ŠøŃŃŠøŃ по зоологической Š½Š¾Š¼ŠµŠ½ŠŗŠ»Š°Ń‚ŃƒŃ€Šµ'),
(149091, 116250, 'fa', 'name', 'Ś©Ł…ŪŒŲ³ŪŒŁˆŁ† ŲØŪŒŁ†Ų§Ł„Ł…Ł„Ł„ŪŒ Ł†Ų§Ł…ŚÆŲ°Ų§Ų±ŪŒ Ų¬Ų§Ł†ŁˆŲ±Ų§Ł†'),
(149092, 116250, 'ja', 'name', 'å‹•ē‰©å‘½åę³•å›½éš›åÆ©č­°ä¼š'),
(149093, 116250, 'zh', 'name', 'åœ‹éš›å‹•ē‰©å‘½åę³•å§”å“”ęœƒ'),
(149094, 116250, 'ko', 'name', 'źµ­ģ œė™ė¬¼ėŖ…ėŖ…ź·œģ•½ģœ„ģ›ķšŒ'),
(149095, 116251, 'en', 'name', 'The University of Texas MD Anderson Cancer Center'),
(149096, 116252, 'en', 'name', 'Hannan University'),
(149097, 116252, 'ja', 'name', 'é˜Ŗå—å¤§å­¦'),
(149098, 116253, 'en', 'name', 'Shorter College'),
(149099, 116254, 'en', 'name', 'National Imaging Facility'),
(149100, 116255, 'en', 'name', 'Humanitas University in Sosnowiec'),
(149101, 116255, 'pl', 'name', 'Wyższa Szkoła Humanitas w Sosnowcu'),
(149102, 116256, 'de', 'name', 'PHV Dialysezentrum'),
(149103, 116257, 'de', 'name', 'Siloah St. Trudpert Klinikum'),
(149104, 116258, 'en', 'name', 'National University of Lomas de Zamora'),
(149105, 116258, 'es', 'name', 'Universidad Nacional de Lomas de Zamora'),
(149106, 116259, 'en', 'name', 'Manitoba Innovates'),
(149107, 116260, 'en', 'name', 'College of Agriculture at Križevci'),
(149108, 116261, 'en', 'name', 'State Library of Württemberg'),
(149109, 116261, 'de', 'name', 'Württembergische Landesbibliothek'),
(149110, 116262, 'en', 'name', 'Dalian Science and Technology Bureau'),
(149111, 116262, 'zh', 'name', 'å¤§čæžåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(149112, 116263, 'en', 'name', 'Ohta Nishinouchi Hospital'),
(149113, 116263, 'ja', 'name', 'å¤Ŗē”°č„æćƒŽå†…ē—…é™¢'),
(149114, 116264, 'en', 'name', 'Dementia UK'),
(149115, 116265, 'es', 'name', 'Fundación Española de la Nutrición'),
(149116, 116265, 'en', 'name', 'Spanish Nutrition Foundation'),
(149117, 116266, 'en', 'name', 'University of Klagenfurt'),
(149118, 116266, 'de', 'name', 'UniversitƤt Klagenfurt'),
(149119, 116266, 'sl', 'name', 'Univerza v Celovcu'),
(149120, 116267, 'pt', 'name', 'Governo do Distrito Federal'),
(149121, 116268, 'en', 'name', 'Indian Institute of Management Amritsar'),
(149122, 116269, 'en', 'name', 'Research Network for the Study of Esoteric Practices'),
(149123, 116270, 'en', 'name', 'Shomal University'),
(149124, 116270, 'fa', 'name', 'دانؓگاه Ų“Ł…Ų§Ł„'),
(149125, 116271, 'es', 'name', 'Comisión Interamericana del Atún Tropical'),
(149126, 116271, 'en', 'name', 'Inter-American Tropical Tuna Commission'),
(149127, 116272, 'en', 'name', 'Rajkiya Engineering College Azamgarh'),
(149128, 116273, 'en', 'name', 'Grande International Hospital'),
(149129, 116274, 'en', 'name', 'Institute of Biomedical and Genetic Engineering'),
(149130, 116275, 'en', 'name', 'Rajkiya Engineering College Banda'),
(149131, 116276, 'es', 'name', 'Departamento Nacional de Planeación'),
(149132, 116277, 'en', 'name', 'Office on Violence Against Women'),
(149133, 116278, 'en', 'name', 'Logan University'),
(149134, 116279, 'es', 'name', 'Centro de Investigación Científica de YucatÔn, A.C'),
(149135, 116279, 'en', 'name', 'Scientific Research Center of Yucatan'),
(149136, 116280, 'ro', 'name', 'Institutul Național de Cercetare-Dezvoltare Ć®n Silvicultură ā€žMarin Drăceaā€'),
(149137, 116280, 'en', 'name', 'National Institute for Research and Development in Forestry "Marin Drăcea"'),
(149138, 116281, 'fr', 'name', 'Clinique Saint Pierre'),
(149139, 116282, 'en', 'name', 'Central Council for Research in Unani Medicine'),
(149140, 116283, 'en', 'name', 'Kabul Medical University'),
(149141, 116283, 'fa', 'name', 'دانؓگاه Ų·ŲØ کابل'),
(149142, 116284, 'no_lang_code', 'name', 'Laboklin (Germany)'),
(149143, 116285, 'en', 'name', 'The Center for Artificial Intelligence and Environmental Sustainability (CAIES) Foundation'),
(149144, 116286, 'en', 'name', 'Durgadevi Saraf Institute of Management Studies'),
(149145, 116287, 'en', 'name', 'CO2CRC'),
(149146, 116288, 'es', 'name', 'Alfred H. Knight (Chile)'),
(149147, 116289, 'de', 'name', 'Dermatologikum Hamburg'),
(149148, 116290, 'en', 'name', 'University System of Maryland'),
(149149, 116291, 'en', 'name', 'North-Caucasian Mining and Metallurgical Institute'),
(149150, 116291, 'ru', 'name', 'Деверо-Кавказский горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(149151, 116292, 'en', 'name', 'St. Philomena''s College, Mysuru'),
(149152, 116293, 'en', 'name', 'Dollezhal Research and Development Institute of Power Engineering'),
(149153, 116293, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³Š¾Ń‚ŠµŃ…Š½ŠøŠŗŠø имени Š. А. Š”Š¾Š»Š»ŠµŠ¶Š°Š»Ń'),
(149154, 116294, 'en', 'name', 'Rwanda Agriculture Board'),
(149155, 116295, 'en', 'name', 'Indian Spinal Injuries Centre'),
(149156, 116296, 'en', 'name', 'Yelets State University named after Ivan Bunin'),
(149157, 116296, 'ru', 'name', 'Елецкий Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им.И.А. Š‘ŃƒŠ½ŠøŠ½Š°'),
(149158, 116297, 'pt', 'name', 'PolĆ­cia Civil do Distrito Federal'),
(149159, 116298, 'no_lang_code', 'name', 'Wako University'),
(149160, 116298, 'ja', 'name', '和光大学'),
(149161, 116299, 'ro', 'name', 'Institutul Regional de Oncologie'),
(149162, 116300, 'en', 'name', 'Foundation of Cardiac Surgery Development'),
(149163, 116301, 'en', 'name', 'Breakthrough T1D UK'),
(149164, 116302, 'en', 'name', 'TuBerculosis Vaccine Initiative'),
(149165, 116303, 'no_lang_code', 'name', 'Med-Storm Innovation (Norway)'),
(149166, 116304, 'en', 'name', 'Higher School of Social Studies and Security'),
(149167, 116304, 'pl', 'name', 'Wyższa Szkoła Nauk Społecznych i Bezpieczeństwa'),
(149168, 116304, 'uk', 'name', 'Вища Школа Š”Š¾Ń†Ń–Š°Š»ŃŒŠ½ŠøŃ… ŠŠ°ŃƒŠŗ та Безпеки'),
(149169, 116305, 'en', 'name', 'National Collaborative on Gun Violence Research'),
(149170, 116306, 'en', 'name', 'Kaye Academic College of Education'),
(149171, 116306, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ לחינוך ×¢"ש קיי'),
(149172, 116306, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© كي Ł„Ł„ŲŖŲ±ŲØŁŠŲ©'),
(149173, 116307, 'en', 'name', 'LifeArc'),
(149174, 116308, 'es', 'name', 'Universidad Iberoamericana León'),
(149175, 116309, 'en', 'name', 'Institute of Precision Mechanics'),
(149176, 116310, 'pt', 'name', 'Sport Lisboa e Benfica'),
(149177, 116311, 'es', 'name', 'Centro de Estudios de Física del Cosmos de Aragón'),
(149178, 116312, 'no_lang_code', 'name', 'National Cooperative for the Disposal of Radioactive Waste (Switzerland)'),
(149179, 116313, 'no_lang_code', 'name', 'Dongfeng Motor (China)'),
(149180, 116314, 'en', 'name', 'Academy of Agricultural and Forestry Sciences'),
(149181, 116315, 'no_lang_code', 'name', 'Synergy Microwave (United States)'),
(149182, 116316, 'en', 'name', 'Telkom University'),
(149183, 116317, 'de', 'name', 'UniversitƤtsklinikum Tulln'),
(149184, 116318, 'en', 'name', 'Faculty of Theology Fulda'),
(149185, 116318, 'de', 'name', 'Theologische FakultƤt Fulda'),
(149186, 116319, 'it', 'name', 'Consorzio Milano Ricerche'),
(149187, 116320, 'en', 'name', 'Paragon Testing Enterprises (Canada)'),
(149188, 116321, 'en', 'name', 'St. Elizabeth College of Health and Social Work'),
(149189, 116321, 'sk', 'name', 'VysokÔ Škola Zdravotníctva a SociÔlnej PrÔce sv. Alžbety'),
(149190, 116322, 'es', 'name', 'Consejo Veracruzano de Investigación Científica y Desarrollo Tecnológico'),
(149191, 116323, 'en', 'name', 'Alternative Research Initiative'),
(149192, 116324, 'sw', 'name', 'Chuo Kikuu cha Tumaini'),
(149193, 116324, 'en', 'name', 'Tumaini University'),
(149194, 116325, 'no_lang_code', 'name', 'Research Institute of Brewing and Malting (Czechia)'),
(149195, 116325, 'cs', 'name', 'Výzkumný Ćŗstav pivovarský a sladařský'),
(149196, 116326, 'en', 'name', 'Mahatma Gandhi University'),
(149197, 116327, 'en', 'name', 'Historic Deerfield'),
(149198, 116328, 'nl', 'name', 'Stichting Kinderoncologie Nederland'),
(149199, 116329, 'en', 'name', 'Victoria Park'),
(149200, 116330, 'no_lang_code', 'name', 'LMC Diabetes & Endocrinology (Canada)'),
(149201, 116331, 'en', 'name', 'International Neuroscience Institute'),
(149202, 116332, 'en', 'name', 'Association of Women''s Health Obstetric and Neonatal Nurses'),
(149203, 116333, 'id', 'name', 'Universitas Kapuas Sintang'),
(149204, 116334, 'en', 'name', 'National University of Northwestern Buenos Aires'),
(149205, 116334, 'es', 'name', 'Universidad Nacional del Noroeste de la Provincia de Buenos Aires'),
(149206, 116335, 'it', 'name', 'Museo Egizio'),
(149207, 116336, 'en', 'name', 'State Research Center for Applied Microbiology and Biotechnology'),
(149208, 116336, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр приклаГной микробиологии Šø биотехнологии'),
(149209, 116337, 'de', 'name', 'Schüchtermann-Klinik'),
(149210, 116338, 'en', 'name', 'American Institute of Bisexuality'),
(149211, 116339, 'id', 'name', 'Universitas PGRI Mahadewa Indonesia'),
(149212, 116340, 'en', 'name', 'Nile Valley University'),
(149213, 116340, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© وادي Ų§Ł„Ł†ŁŠŁ„'),
(149214, 116341, 'en', 'name', 'Primate Conservation'),
(149215, 116342, 'no_lang_code', 'name', 'University of Liberia'),
(149216, 116343, 'de', 'name', 'Diabetes Zentrum Mergentheim'),
(149217, 116343, 'en', 'name', 'German Diabetes Center Mergentheim'),
(149218, 116344, 'en', 'name', 'Morningside College'),
(149219, 116345, 'en', 'name', 'Pacific International Center for High Technology Research'),
(149220, 116346, 'en', 'name', 'Texas Back Institute'),
(149221, 116347, 'en', 'name', 'Franklin College'),
(149222, 116348, 'en', 'name', 'RACP Foundation'),
(149223, 116349, 'en', 'name', 'Lagos State Ministry of Health'),
(149224, 116350, 'en', 'name', 'HSU Dr. Suat Seren Chest Diseases and Chest Surgery Training and Research Hospital'),
(149225, 116350, 'tr', 'name', 'SBÜ Dr. Suat Seren Göğüs Hastaliklari ve Cerrahi̇si̇ Eği̇ti̇m ve Araştirma Hastanesi̇'),
(149226, 116351, 'en', 'name', 'ElSewedy University of Technology'),
(149227, 116351, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŁŠŲÆŁŠ Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(149228, 116352, 'en', 'name', 'North Manchester General Hospital'),
(149229, 116353, 'de', 'name', 'Landesmuseum'),
(149230, 116353, 'en', 'name', 'Swiss National Museum'),
(149231, 116354, 'en', 'name', 'Central Mine Rescue Station'),
(149232, 116354, 'pl', 'name', 'Centralna Stacja Ratownictwa Górniczego'),
(149233, 116355, 'de', 'name', 'Innovent'),
(149234, 116356, 'no_lang_code', 'name', 'Weston Solutions (United States)'),
(149235, 116357, 'nl', 'name', 'GZA Ziekenhuizen Campus Sint-Augustinus'),
(149236, 116358, 'en', 'name', 'European Association of Urology'),
(149237, 116359, 'en', 'name', 'Center for Solar Energy Research and Studies'),
(149238, 116359, 'ar', 'name', 'Ł…Ų±ŁƒŲ² بحوث ودراسات الطاقة Ų§Ł„Ų“Ł…Ų³ŁŠŲ©'),
(149239, 116360, 'en', 'name', 'Northwestern Agusan Colleges'),
(149240, 116361, 'en', 'name', 'Sergipe Technological Park'),
(149241, 116362, 'es', 'name', 'Secretaría Nacional de Ciencia, Tecnología e Innovación'),
(149242, 116363, 'en', 'name', 'Hinge Health'),
(149243, 116364, 'no_lang_code', 'name', 'Wockhardt Hospitals'),
(149244, 116365, 'en', 'name', 'Pancreatic Cancer Action Network'),
(149245, 116366, 'no_lang_code', 'name', 'Agios Pharmaceuticals (United States)'),
(149246, 116367, 'de', 'name', 'Profil Institut für Stoffwechselforschung'),
(149247, 116367, 'en', 'name', 'Profil Institute for Metabolic Research'),
(149248, 116368, 'en', 'name', 'EM Normandie Business School'),
(149249, 116369, 'pt', 'name', 'Instituto PortuguĆŖs Da Qualidade'),
(149250, 116370, 'en', 'name', 'Hospital for Sick Children'),
(149251, 116371, 'en', 'name', 'Crossref'),
(149252, 116372, 'en', 'name', 'Federal University of Campina Grande'),
(149253, 116372, 'pt', 'name', 'Universidade Federal de Campina Grande'),
(149254, 116373, 'en', 'name', 'St.Tikhon''s Orthodox University'),
(149255, 116373, 'ru', 'name', 'ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Ń‹Š¹ Š”Š²ŃŃ‚Š¾-Тихоновский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(149256, 116374, 'id', 'name', 'Sekolah Tinggi Ilmu Tarbiyah Nusantara Bekasi'),
(149257, 116375, 'en', 'name', 'Borneo Orangutan Survival Foundation'),
(149258, 116376, 'nl', 'name', 'Rijksuniversiteit Groningen'),
(149259, 116376, 'en', 'name', 'University of Groningen'),
(149260, 116377, 'en', 'name', 'Lahore Leads University'),
(149261, 116377, 'ur', 'name', 'Ł„Ų§ŪŁˆŲ± Ł„ŪŒŚˆŲ² ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(149262, 116378, 'en', 'name', 'Automotive Technology Centre of Galicia'),
(149263, 116378, 'es', 'name', 'Centro Tecnológico de Automoción de Galicia'),
(149264, 116379, 'en', 'name', 'Ruralis - Institute for Rural and Regional Research'),
(149265, 116380, 'en', 'name', 'National Confidential Enquiry into Patient Outcome and Death'),
(149266, 116381, 'uz', 'name', 'Oʻzbekiston davlat jismoniy tarbiya va sport universiteti'),
(149267, 116381, 'en', 'name', 'Uzbek State University of Physical Culture and Sport'),
(149268, 116381, 'ru', 'name', 'Узбекский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(149269, 116382, 'it', 'name', 'Altamedica Artemisia'),
(149270, 116383, 'en', 'name', 'United Orthopedic'),
(149271, 116383, 'no_lang_code', 'name', 'United Orthopedic (Taiwan)'),
(149272, 116384, 'en', 'name', 'Arthur B. McDonald-Canadian Astroparticle Physics Research Institute'),
(149273, 116385, 'en', 'name', 'College of general and vocational education'),
(149274, 116385, 'fr', 'name', 'CƩgep de Chicoutimi'),
(149275, 116386, 'no_lang_code', 'name', 'Open Knowledge (United Kingdom)'),
(149276, 116387, 'en', 'name', 'Argentine Naval Hydrographic Service'),
(149277, 116387, 'es', 'name', 'Servicio de Hidrografia Naval'),
(149278, 116388, 'en', 'name', 'American Academy of Dermatology'),
(149279, 116389, 'en', 'name', 'Government Homoeopathic Medical College and Hospital Bengaluru'),
(149280, 116390, 'id', 'name', 'Universitas Quality'),
(149281, 116391, 'en', 'name', 'Royal College of Physicians of Edinburgh'),
(149282, 116392, 'no_lang_code', 'name', 'Simulations Plus (United States)'),
(149283, 116393, 'no_lang_code', 'name', 'Ethiopian Biodiversity Institute'),
(149284, 116394, 'de', 'name', 'Katholisches Klinikum Lünen/Werne , St.-Marien-Hospital Lünen'),
(149285, 116395, 'es', 'name', 'Fundación Humanismo y Ciencia'),
(149286, 116396, 'pt', 'name', 'Centro UniversitƔrio de ItajubƔ'),
(149287, 116397, 'en', 'name', 'Office of Population Affairs'),
(149288, 116398, 'en', 'name', 'International Epidemiology Institute'),
(149289, 116399, 'en', 'name', 'Beijing Daozhen Health Technology Development Co., Ltd. (China)'),
(149290, 116400, 'es', 'name', 'Fundación Hospital de Jove'),
(149291, 116401, 'no_lang_code', 'name', 'AVEO Oncology (United States)'),
(149292, 116402, 'en', 'name', 'Moscow State University of Geodesy and Cartography'),
(149293, 116402, 'ru', 'name', 'Моско́вский Š³Š¾ŃŃƒŠ“а́рственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ геоГе́зии Šø картогра́фии'),
(149294, 116403, 'en', 'name', 'Korea Food Research Institute'),
(149295, 116403, 'ko', 'name', 'ķ•œźµ­ģ‹ķ’ˆģ—°źµ¬ģ›'),
(149296, 116404, 'no_lang_code', 'name', 'Gangneung Asan Hospital'),
(149297, 116404, 'ko', 'name', '강릉아산병원'),
(149298, 116405, 'en', 'name', 'Cincinnati Health Department'),
(149299, 116406, 'es', 'name', 'Centro de Estudios Ambientales del MediterrƔneo'),
(149300, 116406, 'en', 'name', 'Mediterranean Center for Environmental Studies'),
(149301, 116407, 'de', 'name', 'Klinikum St. Marien Amberg'),
(149302, 116408, 'es', 'name', 'Sociedad Quimica y Minera de Chile S.A. (Chile)'),
(149303, 116409, 'fr', 'name', 'UniversitƩ de Maradi'),
(149304, 116410, 'pl', 'name', 'Agencja Badań Medycznych'),
(149305, 116411, 'en', 'name', 'Hassania School of Public Works'),
(149306, 116411, 'fr', 'name', 'Ɖcole Hassania des travaux publics'),
(149307, 116411, 'ar', 'name', 'المدرسة Ų§Ł„Ų­Ų³Ł†ŁŠŲ© للأؓغال Ų§Ł„Ų¹Ł…ŁˆŁ…ŁŠŲ©'),
(149308, 116412, 'en', 'name', 'Northampton College'),
(149309, 116413, 'lt', 'name', 'Lietuvos Socialinių Tyrimų Centras'),
(149310, 116413, 'en', 'name', 'Lithuanian Social Research Centre'),
(149311, 116414, 'en', 'name', 'East Asia School of Theology'),
(149312, 116414, 'zh', 'name', 'äøœäŗžē„žå­¦é™¢'),
(149313, 116415, 'en', 'name', 'ACLEDA University of Business'),
(149314, 116416, 'en', 'name', 'Age Labs AS (Norway)'),
(149315, 116417, 'fr', 'name', 'Centre Hospitalier de BƩziers');
INSERT INTO `ror_settings` VALUES
(149316, 116418, 'en', 'name', 'Royal Australian College of General Practitioners'),
(149317, 116419, 'en', 'name', 'Rani Channamma University, Belagavi'),
(149318, 116419, 'kn', 'name', 'ರಾಣಿ ą²šą³†ą²Øą³ą²Øą²®ą³ą²® ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ಬೆಳಗಾವಿ'),
(149319, 116420, 'en', 'name', 'University of Agribusiness and Rural Development'),
(149320, 116421, 'en', 'name', 'World Rugby'),
(149321, 116422, 'no_lang_code', 'name', 'Urban Planning & Design Institute of Shenzhen (China)'),
(149322, 116422, 'zh', 'name', 'ę·±åœ³åø‚åŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(149323, 116423, 'en', 'name', 'International Executive School'),
(149324, 116424, 'en', 'name', 'Institute of Public Health Zadar'),
(149325, 116424, 'hr', 'name', 'Zavod za javno zdravstvo Zadar'),
(149326, 116425, 'fr', 'name', 'Institut de recherches de l''industrie sucriĆØre de Maurice'),
(149327, 116425, 'en', 'name', 'Mauritius Sugarcane Industry Research Institute'),
(149328, 116426, 'en', 'name', 'Lemann Center for Brazilian Studies'),
(149329, 116427, 'es', 'name', 'Instituto Universitario PolitƩcnico "Santiago MariƱo"'),
(149330, 116428, 'fr', 'name', 'Centre Hospitalier de Saint-Quentin'),
(149331, 116429, 'no_lang_code', 'name', 'Institut für Umwelttechnologien und Strahlenschutz (Germany)'),
(149332, 116430, 'id', 'name', 'Universitas Muhammadiyah Sampit'),
(149333, 116431, 'es', 'name', 'CMPC (Chile)'),
(149334, 116432, 'en', 'name', 'Gold Skin Care Center'),
(149335, 116433, 'en', 'name', 'Junshin Gakuen University'),
(149336, 116433, 'ja', 'name', 'ē“”ēœŸå­¦åœ’å¤§å­¦'),
(149337, 116434, 'no_lang_code', 'name', 'Synlab (Germany)'),
(149338, 116435, 'en', 'name', 'Manhattanville College'),
(149339, 116436, 'es', 'name', 'IUTIRLA'),
(149340, 116437, 'en', 'name', 'Institute for the Advancement of Food and Nutrition Sciences'),
(149341, 116438, 'nl', 'name', 'Kom op tegen Kanker'),
(149342, 116439, 'en', 'name', 'Guangdong Polytechnic of Environmental Protection Engineering'),
(149343, 116439, 'zh', 'name', 'å¹æäøœēŽÆå¢ƒäæęŠ¤å·„ēØ‹čŒäøšå­¦é™¢'),
(149344, 116440, 'en', 'name', 'The Polytechnic Ibadan'),
(149345, 116441, 'en', 'name', 'I-Form Advanced Manufacturing Research Centre'),
(149346, 116442, 'en', 'name', 'Peruvian University of Applied Sciences'),
(149347, 116442, 'es', 'name', 'Universidad Peruana de Ciencias Aplicadas'),
(149348, 116443, 'az', 'name', 'Azərbaycan Respublikası Dƶvlət Neft Şirkəti'),
(149349, 116443, 'no_lang_code', 'name', 'State Oil Company of Azerbaijan Republic (Azerbaijan)'),
(149350, 116444, 'en', 'name', 'CK-CARE'),
(149351, 116444, 'de', 'name', 'Centre de Recherche Christine Kühne sur l''Allergie et l’Education'),
(149352, 116445, 'es', 'name', 'El Colegio de Veracruz'),
(149353, 116445, 'en', 'name', 'The College of Veracruz'),
(149354, 116446, 'en', 'name', 'Los Angeles County Museum of Art'),
(149355, 116447, 'en', 'name', 'Iranian National Institute for Oceanography and Atmospheric Science'),
(149356, 116447, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł…Ł„ŪŒ Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų“Ł†Ų§Ų³ŪŒ و Ų¹Ł„ŁˆŁ… جوی'),
(149357, 116448, 'en', 'name', 'Sierra Leone Agricultural Research Institute'),
(149358, 116449, 'no_lang_code', 'name', 'Waterborne Environmental (United States)'),
(149359, 116450, 'fr', 'name', 'Centre d’études et de Recherches sur l’espace Germanophone'),
(149360, 116451, 'en', 'name', 'New England Aquarium'),
(149361, 116452, 'en', 'name', 'Zurich Heart House'),
(149362, 116453, 'en', 'name', 'Foundation for Chiropractic Education'),
(149363, 116454, 'en', 'name', 'Garrett–Evangelical Theological Seminary'),
(149364, 116455, 'en', 'name', 'Queen''s University'),
(149365, 116456, 'no_lang_code', 'name', 'MacroGenics (United States)'),
(149366, 116457, 'en', 'name', 'Royal Statistical Society'),
(149367, 116458, 'en', 'name', 'Alzheimer Scotland'),
(149368, 116459, 'pt', 'name', 'Centro UniversitƔrio de Lavras'),
(149369, 116460, 'es', 'name', 'Centro de Investigación en Nanomateriales y Nanotecnología'),
(149370, 116460, 'en', 'name', 'Nanomaterials and Nanotechnology Research Center'),
(149371, 116461, 'en', 'name', 'FrƩdƩric Joliot-Curie National Research Institute for Radiobiology and Radiohygiene'),
(149372, 116462, 'no_lang_code', 'name', 'Technology Applications (United States)'),
(149373, 116463, 'de', 'name', 'Evangelisches Diakoniekrankenhaus'),
(149374, 116464, 'en', 'name', 'Ingush State University'),
(149375, 116464, 'ru', 'name', 'Ингушский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(149376, 116465, 'en', 'name', 'Center For Children With Special Needs'),
(149377, 116466, 'ms', 'name', 'Majlis Kanser Nasional'),
(149378, 116466, 'en', 'name', 'National Cancer Council Malaysia'),
(149379, 116467, 'de', 'name', 'Bayerische Landesanstalt für Wald und Forstwirtschaft'),
(149380, 116468, 'en', 'name', 'Google DeepMind (United Kingdom)'),
(149381, 116469, 'en', 'name', 'Institute of Physico-Technical Problems of the North named VP Larionov'),
(149382, 116469, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физико-технических проблем Девера Š’.П. Ларионов'),
(149383, 116470, 'fr', 'name', 'Institut et hƓpital neurologiques de montrƩal'),
(149384, 116470, 'en', 'name', 'Montreal Neurological Institute and Hospital'),
(149385, 116471, 'en', 'name', 'Department of Science and Technology of Hunan Province'),
(149386, 116471, 'zh', 'name', 'ę¹–å—ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(149387, 116472, 'de', 'name', 'Bundesamt für Naturschutz'),
(149388, 116472, 'en', 'name', 'Federal Agency for Nature Conservation'),
(149389, 116473, 'id', 'name', 'Universitas Widya Kartika'),
(149390, 116474, 'pt', 'name', 'Fundação Municipal do Meio Ambiente, Pesquisa, Ciência, Tecnologia, Esporte e Lazer de Arraial do Cabo'),
(149391, 116475, 'fr', 'name', 'Centre Hospitalier Intercommunal de Villeneuve-Saint-Georges'),
(149392, 116476, 'pt', 'name', 'Centro ClĆ­nico AcadĆ©mico – Braga'),
(149393, 116476, 'en', 'name', 'Clinical Academic Center of Braga'),
(149394, 116477, 'en', 'name', 'LETO Maternity Hospital'),
(149395, 116477, 'el', 'name', 'ΛΗΤΩ ĪœĪ±Ī¹ĪµĻ…Ļ„Ī¹ĪŗĻŒ, Ī“Ļ…Ī½Ī±Ī¹ĪŗĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ & Ī§ĪµĪ¹ĻĪæĻ…ĻĪ³Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ'),
(149396, 116478, 'es', 'name', 'Departamento de Comercio de Estados Unidos'),
(149397, 116478, 'fr', 'name', 'DĆ©partement du Commerce des Ɖtats-Unis'),
(149398, 116478, 'en', 'name', 'United States Department of Commerce'),
(149399, 116479, 'hr', 'name', 'Klinički Centar Crne Gore'),
(149400, 116480, 'en', 'name', 'Natural History Museum of Bern'),
(149401, 116480, 'de', 'name', 'Naturhistorisches Museum Bern'),
(149402, 116481, 'no_lang_code', 'name', 'Institute for Studies and Power Engineering (Romania)'),
(149403, 116482, 'en', 'name', 'Western Sydney Local Health District'),
(149404, 116483, 'no_lang_code', 'name', 'Yokohama Rubber (Japan)'),
(149405, 116483, 'ja', 'name', 'ęØŖęµœć‚“ćƒ ę Ŗå¼ä¼šē¤¾'),
(149406, 116484, 'en', 'name', 'SAGE University Indore'),
(149407, 116485, 'en', 'name', 'Department of Science and Technology of Shandong Province'),
(149408, 116485, 'zh', 'name', 'å±±äøœēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(149409, 116486, 'en', 'name', 'Kaiser Family Foundation'),
(149410, 116487, 'en', 'name', 'Seneca Polytechnic'),
(149411, 116488, 'en', 'name', 'Institute of Southern Punjab'),
(149412, 116489, 'no_lang_code', 'name', 'Chugoku Central Hospital'),
(149413, 116489, 'ja', 'name', '中国中央病院'),
(149414, 116490, 'pt', 'name', 'Escola UniversitƔria Vasco da Gama'),
(149415, 116491, 'en', 'name', 'Human Rights Watch'),
(149416, 116492, 'en', 'name', 'Resuscitation Council'),
(149417, 116493, 'en', 'name', 'Educons University'),
(149418, 116493, 'bs', 'name', 'Educons Univerzitet'),
(149419, 116494, 'no_lang_code', 'name', 'Aurobindo Pharma (India)'),
(149420, 116495, 'no_lang_code', 'name', 'Advanced Bioscience Laboratories (United States)'),
(149421, 116496, 'en', 'name', 'P.G.D.A.V. College (Evening)'),
(149422, 116497, 'en', 'name', 'Five Colleges'),
(149423, 116498, 'en', 'name', 'Ave Maria University'),
(149424, 116499, 'en', 'name', 'Croatian Science Foundation'),
(149425, 116500, 'nl', 'name', 'Koninklijk Nederlands Genootschap voor Fysiotherapie'),
(149426, 116501, 'no_lang_code', 'name', 'Imperial Metals (Canada)'),
(149427, 116502, 'en', 'name', 'Odessa National Polytechnic University'),
(149428, 116502, 'ru', 'name', 'ŠžŠ“ŠµŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(149429, 116502, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ політехнічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(149430, 116503, 'en', 'name', 'Genesis HealthCare'),
(149431, 116504, 'es', 'name', 'Collahuasi (Chile)'),
(149432, 116505, 'en', 'name', 'Bangladesh Bank'),
(149433, 116505, 'bn', 'name', 'বাংলাদেশ ą¦¬ą§ą¦Æą¦¾ą¦‚ą¦•'),
(149434, 116506, 'en', 'name', 'Digital Communication Methods Lab'),
(149435, 116507, 'pt', 'name', 'Associação Fundo de Incentivo à Pesquisa'),
(149436, 116508, 'en', 'name', 'Indepth Network'),
(149437, 116509, 'en', 'name', 'Cotton Research and Development Corporation'),
(149438, 116510, 'en', 'name', 'Center for Strategic Research'),
(149439, 116510, 'ru', 'name', 'Центр стратегических разработок'),
(149440, 116511, 'no_lang_code', 'name', 'Metso (Chile)'),
(149441, 116512, 'de', 'name', 'Klinikum Bremerhaven-Reinkenheide'),
(149442, 116513, 'no_lang_code', 'name', 'Global Unichip (Taiwan)'),
(149443, 116514, 'en', 'name', 'Manchester University NHS Foundation Trust'),
(149444, 116515, 'en', 'name', 'Health and Family Planning Commission of Sichuan Province'),
(149445, 116515, 'zh', 'name', 'å››å·ēœå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(149446, 116516, 'de', 'name', 'Kliniken Valens'),
(149447, 116516, 'en', 'name', 'Valens Clinics'),
(149448, 116517, 'fr', 'name', 'Centre de Recherche en SantƩ de Nouna'),
(149449, 116518, 'en', 'name', 'Australian Football League'),
(149450, 116519, 'en', 'name', 'University of Greater Manchester'),
(149451, 116520, 'es', 'name', 'Centro de Estudios Populares'),
(149452, 116521, 'en', 'name', 'Rajkiya Engineering College Kannauj'),
(149453, 116522, 'en', 'name', 'University of Yangon'),
(149454, 116522, 'my', 'name', 'į€›į€”į€ŗį€€į€Æį€”į€ŗį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(149455, 116523, 'en', 'name', 'Institute of Education Sciences'),
(149456, 116524, 'en', 'name', 'International University of Kyrgyzstan'),
(149457, 116525, 'no_lang_code', 'name', 'Dassault Aviation (France)'),
(149458, 116526, 'en', 'name', 'Blacktown & Mount Druitt Hospital'),
(149459, 116527, 'no_lang_code', 'name', 'Cambia'),
(149460, 116528, 'en', 'name', 'European Molecular Biology Laboratory'),
(149461, 116529, 'en', 'name', 'Surya Hospitals'),
(149462, 116529, 'hi', 'name', 'ą¤øą„‚ą¤°ą„ą¤Æą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²ą„ą¤ø'),
(149463, 116530, 'en', 'name', 'North Sydney Orthopaedic and Sports Medicine Centre'),
(149464, 116531, 'en', 'name', 'Saint Louis Zoo'),
(149465, 116532, 'en', 'name', 'Federal University of JataĆ­'),
(149466, 116532, 'pt', 'name', 'Universidade Federal de JataĆ­'),
(149467, 116533, 'en', 'name', 'Nigerian Meteorological Agency'),
(149468, 116534, 'fr', 'name', 'Centre Hospitalier Intercommunal Toulon-La Seyne-sur-Mer'),
(149469, 116535, 'no_lang_code', 'name', 'DNV (Norway)'),
(149470, 116536, 'pt', 'name', 'Hospital Amaral Carvalho'),
(149471, 116537, 'en', 'name', 'Sochi State University'),
(149472, 116537, 'ru', 'name', 'Дочинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(149473, 116538, 'en', 'name', 'Children''s Defense Fund'),
(149474, 116539, 'id', 'name', 'Universitas Merangin'),
(149475, 116540, 'en', 'name', 'Society of Chemical Industry'),
(149476, 116541, 'es', 'name', 'Instituto Tecnológico de Ciudad Madero'),
(149477, 116542, 'en', 'name', 'Department of Science and Technology of Guangdong Province'),
(149478, 116542, 'zh', 'name', 'å¹æäøœēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(149479, 116543, 'en', 'name', 'UK Aid Direct'),
(149480, 116544, 'en', 'name', 'Global Development Network'),
(149481, 116545, 'es', 'name', 'Instituto Interamericano de Derechos Humanos'),
(149482, 116546, 'id', 'name', 'Universitas Bung Karno'),
(149483, 116547, 'en', 'name', 'Bernstein Center for Computational Neuroscience Gƶttingen'),
(149484, 116548, 'es', 'name', 'MEDI XXI Gabinet Solucions Ambientals (EspaƱa)'),
(149485, 116549, 'en', 'name', 'Unitelma Sapienza University'),
(149486, 116549, 'it', 'name', 'UniversitĆ  telematica UNITELMA Sapienza'),
(149487, 116550, 'en', 'name', 'Bukhara State Technical University'),
(149488, 116550, 'uz', 'name', 'Buxoro davlat texnika universiteti'),
(149489, 116551, 'en', 'name', 'Alexandria Higher Institute of Engineering and Technology'),
(149490, 116551, 'ar', 'name', 'معهد Ų§Ł„Ų§Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ© العالى للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(149491, 116552, 'en', 'name', 'AKFA Medline University Hospital'),
(149492, 116553, 'en', 'name', 'Washington Tree Fruit Research Commission'),
(149493, 116554, 'en', 'name', 'Koo Foundation Sun Yat-Sen Cancer Center'),
(149494, 116555, 'en', 'name', 'Dead Sea and Arava Science Center'),
(149495, 116555, 'he', 'name', 'מו"פ ×ž×“×‘×Ø וים המלח'),
(149496, 116556, 'sw', 'name', 'Chuo Kikuu Kishiriki cha Jordan'),
(149497, 116556, 'en', 'name', 'Jordan University College'),
(149498, 116557, 'en', 'name', 'Johannelund School of Theology'),
(149499, 116557, 'sv', 'name', 'Johannelunds teologiska hƶgskola'),
(149500, 116558, 'en', 'name', 'University of Kordofan'),
(149501, 116558, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁƒŲ±ŲÆŁŲ§Ł†'),
(149502, 116559, 'en', 'name', 'The Jones Center at Ichauway'),
(149503, 116560, 'en', 'name', 'Minot State University'),
(149504, 116560, 'fr', 'name', 'UniversitĆ© d''Ɖtat de minot'),
(149505, 116561, 'en', 'name', 'Gulistan State University'),
(149506, 116561, 'uz', 'name', 'Guliston universiteti'),
(149507, 116562, 'en', 'name', 'Helen Keller Eye Research Foundation'),
(149508, 116563, 'en', 'name', 'Roketsan'),
(149509, 116564, 'en', 'name', 'Sands'),
(149510, 116565, 'en', 'name', 'Institute of Pesticides and Environmental Protection'),
(149511, 116566, 'en', 'name', 'Columbia Theological Seminary'),
(149512, 116567, 'en', 'name', 'Siberian State Automobile and Highway University'),
(149513, 116567, 'ru', 'name', 'Š”ŠøŠ±ŠøŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾-Š“Š¾Ń€Š¾Š¶Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(149514, 116568, 'en', 'name', 'Obong University'),
(149515, 116569, 'en', 'name', 'Shanghai Municipal Engineering Design Institute (Group) Co., Ltd'),
(149516, 116569, 'no_lang_code', 'name', 'Shanghai Municipal Engineering Design Institute (Group) Co., Ltd (China)'),
(149517, 116569, 'zh', 'name', 'äøŠęµ·åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶ę€»é™¢(集团)ęœ‰é™å…¬åø'),
(149518, 116570, 'en', 'name', 'Rossdales Veterinary Surgeons'),
(149519, 116571, 'en', 'name', 'Dominican University of California'),
(149520, 116572, 'es', 'name', 'Zigurat Global Institute of Technology (Spain)'),
(149521, 116573, 'en', 'name', 'Russian Foreign Trade Academy'),
(149522, 116573, 'ru', 'name', 'Š’ŃŠµŃ€Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ внешней торговли'),
(149523, 116574, 'no_lang_code', 'name', '21c Consultancy (United Kingdom)'),
(149524, 116575, 'en', 'name', 'Galen University'),
(149525, 116575, 'es', 'name', 'Universidad de Galen'),
(149526, 116576, 'en', 'name', 'Westmead Hospital'),
(149527, 116577, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Văn Hiįŗæn'),
(149528, 116577, 'en', 'name', 'Văn Hiến University'),
(149529, 116578, 'ca', 'name', 'Institut d''Estudis Espacials de Catalunya'),
(149530, 116578, 'en', 'name', 'Institute of Space Studies of Catalonia'),
(149531, 116579, 'en', 'name', 'University of Central Lancashire Cyprus'),
(149532, 116580, 'en', 'name', 'Tropical Diseases Research Centre'),
(149533, 116581, 'en', 'name', 'Pakistan Atomic Energy Commission'),
(149534, 116581, 'ur', 'name', 'ادارہ جوہری ŲŖŁˆŲ§Ł†Ų§Ų¦ŪŒ پاکستان'),
(149535, 116582, 'en', 'name', 'Respons'),
(149536, 116583, 'en', 'name', 'Water and Land Resource Centre'),
(149537, 116584, 'en', 'name', 'Cosmetics Europe'),
(149538, 116585, 'en', 'name', 'Istanbul Gelisim University'),
(149539, 116585, 'tr', 'name', 'İstanbul Gelişim Üniversitesi'),
(149540, 116586, 'no_lang_code', 'name', 'Kraftanlagen (Germany)'),
(149541, 116587, 'en', 'name', 'Chung-Hua Institution for Economic Research'),
(149542, 116587, 'zh', 'name', 'äø­čÆē¶“ęæŸē ”ē©¶é™¢'),
(149543, 116588, 'en', 'name', 'Norwegian Air Ambulance Foundation'),
(149544, 116588, 'no', 'name', 'Stiftelsen Norsk Luftambulanse'),
(149545, 116589, 'en', 'name', 'Blantyre Institute for Community Ophthalmology'),
(149546, 116590, 'en', 'name', 'Law & Justice Commission of Pakistan'),
(149547, 116591, 'en', 'name', 'HUN-REN Veterinary Medical Research Institute'),
(149548, 116591, 'hu', 'name', 'HUN-REN ÁllatorvostudomÔnyi Kutatóintézet'),
(149549, 116592, 'en', 'name', 'Shanghai Biozeron Biotechnology Co., Ltd (China)'),
(149550, 116592, 'zh', 'name', 'äøŠęµ·å‡Œę©ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(149551, 116593, 'es', 'name', 'Universidad PolitƩcnica de Victoria'),
(149552, 116594, 'en', 'name', 'Drug Safety Research Unit'),
(149553, 116595, 'en', 'name', 'Greek Atomic Energy Commission'),
(149554, 116596, 'en', 'name', 'American Health Information Management Association'),
(149555, 116597, 'en', 'name', 'Chinese Preventive Medicine Association'),
(149556, 116598, 'en', 'name', 'Office Of Health Economics'),
(149557, 116599, 'no_lang_code', 'name', 'TƩcnicas y Servicios de Ingenierƭa (Spain)'),
(149558, 116600, 'en', 'name', 'Munich Business School'),
(149559, 116601, 'en', 'name', 'National Research Institute for Science Policy'),
(149560, 116601, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„ŲØŲ­ŁˆŲ« سياسة Ų§Ł„Ų¹Ł„ŁˆŁ…'),
(149561, 116602, 'fr', 'name', 'Institut National des Sciences et Technologies de la Mer'),
(149562, 116602, 'en', 'name', 'National Institute of Marine Sciences and Technologies'),
(149563, 116602, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ų¹Ł„ŁˆŁ… ŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ البحار'),
(149564, 116603, 'en', 'name', 'M-Five GmbH Mobility, Futures, Innovation, Economics (Germany)'),
(149565, 116604, 'en', 'name', 'Marine Research Centre'),
(149566, 116605, 'en', 'name', 'Romanian-American University'),
(149567, 116605, 'ro', 'name', 'Universitatea Româno-Americană'),
(149568, 116606, 'fr', 'name', 'IMT Mines AlĆØs'),
(149569, 116607, 'en', 'name', 'Research Institute for Aquaculture No1'),
(149570, 116607, 'vi', 'name', 'Viện NghiĆŖn cứu NuĆ“i trồng Thį»§y sįŗ£n I'),
(149571, 116608, 'de', 'name', 'Sankt Gertrauden Krankenhaus'),
(149572, 116609, 'en', 'name', 'Taiwan Foundation for Democracy'),
(149573, 116610, 'en', 'name', 'Australian National Botanic Gardens'),
(149574, 116611, 'no_lang_code', 'name', 'Nippon Bunri University'),
(149575, 116611, 'ja', 'name', 'ę—„ęœ¬ę–‡ē†å¤§å­¦'),
(149576, 116612, 'en', 'name', 'Caring Futures Institute'),
(149577, 116613, 'es', 'name', 'PepsiCo Alimentos, SCA'),
(149578, 116613, 'no_lang_code', 'name', 'PepsiCo Alimentos, SCA (Venezuela)'),
(149579, 116614, 'en', 'name', 'Paul Hastings'),
(149580, 116615, 'pl', 'name', 'Papieski Wydział Teologiczny we Wrocławiu'),
(149581, 116616, 'en', 'name', 'All India Institute of Medical Sciences Guwahati'),
(149582, 116616, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€'),
(149583, 116617, 'en', 'name', 'Easterseals of Greater Waterbury'),
(149584, 116618, 'en', 'name', 'Association for the Development of Douro Viticulture'),
(149585, 116618, 'pt', 'name', 'Associação para o Desenvolvimento da Viticultura Duriense'),
(149586, 116619, 'rm', 'name', 'Institute Svizzer by products terapeutics'),
(149587, 116619, 'fr', 'name', 'Institute suisse des produits thƩrapeutiques'),
(149588, 116619, 'it', 'name', 'Istituto per gli agenti svizzero Terapeutici'),
(149589, 116619, 'de', 'name', 'Swissmedic'),
(149590, 116620, 'en', 'name', 'Goethe University Frankfurt'),
(149591, 116620, 'de', 'name', 'Goethe-UniversitƤt Frankfurt am Main'),
(149592, 116621, 'no_lang_code', 'name', 'The Centre for Health (New Zealand)'),
(149593, 116622, 'pl', 'name', 'Karpacki Narodowy Uniwersytet imienia Wasyla Stefanyka'),
(149594, 116622, 'en', 'name', 'Vasyl Stefanyk Carpathian National University'),
(149595, 116622, 'uk', 'name', 'ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’Š°ŃŠøŠ»Ń Дтефаника'),
(149596, 116623, 'fr', 'name', 'Institut National des Sciences de l''ArchƩologie et du Patrimoine'),
(149597, 116623, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ų¹Ł„ŁˆŁ… الآثار ŁˆŲ§Ł„ŲŖŲ±Ų§Ų«'),
(149598, 116624, 'en', 'name', 'Cypress College'),
(149599, 116625, 'en', 'name', 'Fullbright Germany'),
(149600, 116626, 'no_lang_code', 'name', 'D. E. Shaw Research'),
(149601, 116627, 'en', 'name', 'Department for Energy Security and Net Zero'),
(149602, 116628, 'no_lang_code', 'name', 'Benchmark Research (United States)'),
(149603, 116629, 'en', 'name', 'Natural History Museum Rotterdam'),
(149604, 116629, 'nl', 'name', 'Natuurhistorisch Museum Rotterdam'),
(149605, 116630, 'en', 'name', 'Indian Centre for Space Physics'),
(149606, 116631, 'en', 'name', 'Medical Laboratory Science Council of Nigeria'),
(149607, 116632, 'hu', 'name', 'Gottsegen Gyƶrgy OrszƔgos KardiovaszkulƔris IntƩzet'),
(149608, 116632, 'en', 'name', 'Gottsegen National Cardiovascular Center'),
(149609, 116633, 'en', 'name', 'Olivia Fund'),
(149610, 116634, 'nl', 'name', 'Ziekenhuis Bernhoven'),
(149611, 116635, 'de', 'name', 'Evangelisches Krankenhaus Kalk'),
(149612, 116636, 'no_lang_code', 'name', 'Oulu Deaconess Institute'),
(149613, 116636, 'fi', 'name', 'Oulun diakonissalaitos'),
(149614, 116637, 'en', 'name', 'Lebanese American University'),
(149615, 116637, 'ar', 'name', 'الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ©'),
(149616, 116638, 'hu', 'name', 'Bay ZoltÔn Alkalmazott KutatÔsi Közhasznú Nonprofit Kft'),
(149617, 116638, 'en', 'name', 'Bay ZoltƔn Foundation for Applied Research'),
(149618, 116639, 'en', 'name', 'Geriatric Education and Research Institute'),
(149619, 116640, 'en', 'name', 'Shepherd Center'),
(149620, 116641, 'en', 'name', 'Korea Advanced Nano Fab Center'),
(149621, 116641, 'ko', 'name', 'ķ•œźµ­ ź³ źø‰ ė‚˜ė…ø 팹 센터'),
(149622, 116642, 'en', 'name', 'Carbon to Sea Initiative'),
(149623, 116643, 'en', 'name', 'Alcohol and Drug Foundation'),
(149624, 116644, 'de', 'name', 'Helmholtz-Fonds e.V.'),
(149625, 116645, 'en', 'name', 'New Uzbekistan University'),
(149626, 116645, 'uz', 'name', 'Yangi O''zbekiston Universiteti'),
(149627, 116646, 'no_lang_code', 'name', 'Amazon (United States)'),
(149628, 116647, 'en', 'name', 'Cooch Behar Panchanan Barma University'),
(149629, 116647, 'hi', 'name', 'ą¤•ą„‚ą¤š बिहार ą¤Ŗą¤‚ą¤šą¤¾ą¤Øą¤Ø ą¤¬ą¤°ą„ą¤®ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(149630, 116647, 'bn', 'name', 'ą¦•ą§‹ą¦šą¦¬ą¦æą¦¹ą¦¾ą¦° ą¦Ŗą¦žą§ą¦šą¦¾ą¦Øą¦Ø ą¦¬ą¦°ą§ą¦®ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(149631, 116648, 'en', 'name', 'Central Statistical Office'),
(149632, 116649, 'en', 'name', 'Gulf University'),
(149633, 116649, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(149634, 116650, 'it', 'name', 'Associazione Italiana per la Ricerca sul Cancro'),
(149635, 116650, 'en', 'name', 'Italian Association for Cancer Research'),
(149636, 116651, 'en', 'name', 'Brest State Technical University'),
(149637, 116651, 'ru', 'name', 'Брестский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(149638, 116651, 'be', 'name', 'Š‘Ń€ŃŃŃ†ŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(149639, 116652, 'pt', 'name', 'Unidade Local de Saúde de São José'),
(149640, 116653, 'en', 'name', 'Institute of Natural Resources'),
(149641, 116654, 'en', 'name', 'Newgate University Minna'),
(149642, 116655, 'en', 'name', 'Italian Society of Rheumatology'),
(149643, 116655, 'it', 'name', 'SocietĆ  Italiana di Reumatologia'),
(149644, 116656, 'en', 'name', 'Milwaukee Public Museum'),
(149645, 116657, 'en', 'name', 'Academy for Eating Disorders'),
(149646, 116658, 'en', 'name', 'Russian State University of Cinematography named after SA Gerasimov'),
(149647, 116658, 'ru', 'name', 'Всероссийский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ кинематографии имени Š”.А.Герасимова'),
(149648, 116659, 'en', 'name', 'St. Augustine College'),
(149649, 116660, 'de', 'name', 'Sanatorium Kilchberg'),
(149650, 116661, 'en', 'name', 'University of Haifa'),
(149651, 116661, 'he', 'name', '××•× ×™×‘×Ø×”×™×˜×Ŗ חיפה'),
(149652, 116661, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© حيفا'),
(149653, 116662, 'fr', 'name', 'Institut du Savoir Montfort'),
(149654, 116663, 'en', 'name', 'Taipei American School'),
(149655, 116663, 'zh', 'name', 'č‡ŗåŒ—ē¾Žåœ‹å­øę ”'),
(149656, 116664, 'en', 'name', 'American Society for Gastrointestinal Endoscopy'),
(149657, 116665, 'no_lang_code', 'name', 'State Development & Investment Corporation (China)'),
(149658, 116665, 'zh', 'name', 'å›½å®¶å¼€å‘ęŠ•čµ„å…¬åø'),
(149659, 116666, 'nl', 'name', 'Universiteit van Amsterdam'),
(149660, 116666, 'en', 'name', 'University of Amsterdam'),
(149661, 116667, 'no_lang_code', 'name', 'Hua Medicine (China)'),
(149662, 116668, 'de', 'name', 'Friedrich-Ebert-Stiftung e.V.'),
(149663, 116669, 'en', 'name', 'Sadjad University of Technology'),
(149664, 116669, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų³Ų¬Ų§ŲÆ'),
(149665, 116670, 'en', 'name', 'Office for Product Safety and Standards'),
(149666, 116671, 'en', 'name', 'Complutense University of Madrid'),
(149667, 116671, 'eu', 'name', 'Madrilgo Complutense Unibertsitatea'),
(149668, 116671, 'es', 'name', 'Universidad Complutense de Madrid'),
(149669, 116671, 'gl', 'name', 'Universidade Complutense de Madrid'),
(149670, 116672, 'it', 'name', 'Istituto Euro Mediterraneo di Scienza e Tecnologia'),
(149671, 116673, 'en', 'name', 'Eurotransplant'),
(149672, 116674, 'es', 'name', 'ESE Business School'),
(149673, 116675, 'de', 'name', 'Kliniken Schmieder'),
(149674, 116676, 'de', 'name', 'Alexander von Humboldt Institut für Internet und Gesellschaft'),
(149675, 116676, 'en', 'name', 'Alexander von Humboldt Institute for Internet and Society'),
(149676, 116677, 'en', 'name', 'Cerebral Palsy Alliance'),
(149677, 116678, 'en', 'name', 'Pacific Institute'),
(149678, 116679, 'en', 'name', 'Luzhou Science and Technology Bureau'),
(149679, 116679, 'zh', 'name', 'ę³øå·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(149680, 116680, 'en', 'name', 'Centre International De Reference Chantal Biya'),
(149681, 116681, 'en', 'name', 'Mohtarma Benazir Bhutto Shaheed Medical College'),
(149682, 116681, 'ur', 'name', 'محترمہ ŲØŪ’ Ł†ŲøŪŒŲ± بھٹو ؓہید طبی Ś©Ų§Ł„Ų¬ŲŒ Ł…ŪŒŲ± پور Ų¢Ų²Ų§ŲÆ Ś©Ų“Ł…ŪŒŲ±'),
(149683, 116682, 'es', 'name', 'Universidad del Norte de Texas'),
(149684, 116682, 'en', 'name', 'University of North Texas'),
(149685, 116683, 'hu', 'name', 'HUN-REN CsillagÔszati és FöldtudomÔnyi Kutatóközpont'),
(149686, 116683, 'en', 'name', 'HUN-REN Research Centre for Astronomy and Earth Sciences'),
(149687, 116684, 'de', 'name', 'Elbe Kliniken Stade-Buxtehude'),
(149688, 116685, 'nl', 'name', 'Vincent Van Gogh Voor Geestelijke Gezondheidszorg'),
(149689, 116686, 'no_lang_code', 'name', 'Artemis (United States)'),
(149690, 116687, 'en', 'name', 'National University of Science and Technology'),
(149691, 116687, 'ar', 'name', 'الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(149692, 116688, 'en', 'name', 'National Forest Foundation'),
(149693, 116689, 'en', 'name', 'Malankara Orthodox Syrian Church Medical College Hospital'),
(149694, 116690, 'en', 'name', 'Institute of International Studies'),
(149695, 116691, 'no_lang_code', 'name', 'Medtronic (Canada)'),
(149696, 116692, 'it', 'name', 'Consiglio Nazionale delle Ricerche - Istituto di Metodologie per l’Analisi Ambientale'),
(149697, 116692, 'en', 'name', 'National Research Council - Institute of Methodologies for Environmental Analysis'),
(149698, 116693, 'en', 'name', 'Shenkar College of Engineering and Design'),
(149699, 116693, 'he', 'name', 'שנקר - הנדהה, עיצוב ×•××ž× ×•×Ŗ'),
(149700, 116694, 'en', 'name', 'Science and Technology Department of Sichuan Province'),
(149701, 116694, 'zh', 'name', 'å››å·ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(149702, 116695, 'en', 'name', 'Philippine Association of Institutions for Research, Inc.'),
(149703, 116696, 'id', 'name', 'Universitas Mitra Indonesia'),
(149704, 116697, 'en', 'name', 'Elgin Community College'),
(149705, 116698, 'no_lang_code', 'name', 'Pingtung Christian Hospital'),
(149706, 116698, 'zh', 'name', 'å±ę±åŸŗē£ę•™é†«é™¢'),
(149707, 116699, 'it', 'name', 'Associazione Italiana Sclerosi Multipla'),
(149708, 116700, 'en', 'name', 'Submarine Scientific LLC (United States)'),
(149709, 116701, 'it', 'name', 'Ospedale di Sanremo'),
(149710, 116702, 'es', 'name', 'Multitiendas Corona S.A. (Chile)'),
(149711, 116703, 'no_lang_code', 'name', 'Virbac (France)'),
(149712, 116704, 'no_lang_code', 'name', 'Network Rail'),
(149713, 116705, 'en', 'name', 'All-Union Scientific Research Institute of Plant Quarantine'),
(149714, 116705, 'ru', 'name', 'Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карантина растений'),
(149715, 116706, 'en', 'name', 'Ufa University of Science and Technology'),
(149716, 116706, 'ru', 'name', 'Уфимский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ науки Šø технологий'),
(149717, 116707, 'en', 'name', 'HUN-REN Centre for Ecological Research'),
(149718, 116707, 'hu', 'name', 'HUN-REN Ɩkológiai Kutatókƶzpont'),
(149719, 116708, 'pt', 'name', 'Centro UniversitƔrio do Cerrado Patrocƭnio'),
(149720, 116709, 'en', 'name', 'European Research Executive Agency'),
(149721, 116710, 'en', 'name', 'Iraqi Board for Medical Specializations'),
(149722, 116710, 'ar', 'name', 'المجلس Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠ للاختصاصات Ų§Ł„Ų·ŲØŁŠŲ©'),
(149723, 116711, 'en', 'name', 'Future House, Inc.'),
(149724, 116712, 'en', 'name', 'Khanty-Mansiysk State Medical Academy'),
(149725, 116712, 'ru', 'name', 'Єанты-ŠœŠ°Š½ŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(149726, 116713, 'ro', 'name', 'Institutul National pentru Sanatatea Mamei si Copilului "Alessandrescu-Rusescu"'),
(149727, 116714, 'en', 'name', 'Foundation for Polish Science'),
(149728, 116715, 'en', 'name', 'Elisava Barcelona School of Design and Engineering'),
(149729, 116715, 'es', 'name', 'Elisava, Facultat de Disseny i Enginyeria de Barcelona'),
(149730, 116716, 'cs', 'name', 'Dřevařský Ćŗstav'),
(149731, 116716, 'en', 'name', 'Timber Institute'),
(149732, 116717, 'en', 'name', 'Psychological Institute of the Russian Academy of Education'),
(149733, 116718, 'en', 'name', 'Centre for Aging + Brain Health Innovation'),
(149734, 116719, 'en', 'name', 'Aragon Institute for Engineering Research'),
(149735, 116719, 'es', 'name', 'Instituto de Investigación en Ingeniería de Aragón'),
(149736, 116720, 'en', 'name', 'Calar Alto Observatory'),
(149737, 116721, 'es', 'name', 'Universidad del Centro de Estudios Macroeconómicos de Argentina'),
(149738, 116721, 'fr', 'name', 'UniversitƩ du centre d''Ʃtudes macroeconomiques d''argentine'),
(149739, 116722, 'es', 'name', 'Fundacion Centro De Investigacion De Enfermedades Neurologicas'),
(149740, 116723, 'es', 'name', 'Aldeas Infantiles S.O.S. Chile (Chile)'),
(149741, 116724, 'de', 'name', 'Nova Institut'),
(149742, 116725, 'en', 'name', 'Ducks Unlimited'),
(149743, 116726, 'en', 'name', 'Shanghai Pudong New Area Health Commission'),
(149744, 116726, 'zh', 'name', 'äøŠęµ·åø‚ęµ¦äøœę–°åŒŗå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(149745, 116727, 'en', 'name', 'Rajasthan University of Health Sciences'),
(149746, 116727, 'hi', 'name', 'ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(149747, 116728, 'es', 'name', 'Corpesca (Chile)'),
(149748, 116729, 'en', 'name', 'Ziauddin Hospital'),
(149749, 116730, 'en', 'name', 'Department of Higher Education and Training'),
(149750, 116731, 'en', 'name', 'South Infirmary Victoria University Hospital'),
(149751, 116732, 'en', 'name', 'MINT Memory Clinic'),
(149752, 116733, 'de', 'name', 'Evangelisches Krankenhaus Oldenburg'),
(149753, 116734, 'en', 'name', 'Neumann University'),
(149754, 116735, 'en', 'name', 'Don Bosco College, Itanagar'),
(149755, 116736, 'id', 'name', 'Institut Manajemen Telkom'),
(149756, 116736, 'en', 'name', 'Telkom Institute of Management'),
(149757, 116737, 'en', 'name', 'German Marine Research Consortium'),
(149758, 116737, 'de', 'name', 'Konsortium Deutsche Meeresforschung'),
(149759, 116738, 'es', 'name', 'Fundación Biodiversidad'),
(149760, 116739, 'en', 'name', 'Ministry of SMEs and Startups'),
(149761, 116739, 'ko', 'name', 'ģ¤‘ģ†Œė²¤ģ²˜źø°ģ—…ė¶€'),
(149762, 116740, 'es', 'name', 'PIC LatinoamƩrica (Chile)'),
(149763, 116741, 'en', 'name', 'Chilean Nuclear Energy Commission'),
(149764, 116741, 'es', 'name', 'Comisión Chilena de Energía Nuclear'),
(149765, 116742, 'de', 'name', 'Klinikum Mutterhaus der BorromƤerinnen'),
(149766, 116743, 'no_lang_code', 'name', 'Brewer Science (United States)'),
(149767, 116744, 'en', 'name', 'American Society for Clinical Pathology'),
(149768, 116745, 'en', 'name', 'Anaheim University'),
(149769, 116746, 'ca', 'name', 'Grups de Recerca d''AmĆØrica i ƀfrica Llatines - GRAAL'),
(149770, 116747, 'en', 'name', 'Martina Hansens Hospital'),
(149771, 116748, 'es', 'name', 'Instituto Tecnológico de Ciudad Altamirano'),
(149772, 116749, 'en', 'name', 'South African Institute of International Affairs'),
(149773, 116750, 'en', 'name', 'Division of Materials Science and Engineering'),
(149774, 116751, 'en', 'name', 'Biozeron Shenzhen, Inc.'),
(149775, 116751, 'no_lang_code', 'name', 'Biozeron Shenzhen, Inc. (China)'),
(149776, 116751, 'zh', 'name', 'ę·±åœ³åø‚å‡Œę©ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(149777, 116752, 'en', 'name', 'Ontario Genomics'),
(149778, 116753, 'en', 'name', 'Saudi Arabian Cultural Bureau'),
(149779, 116754, 'de', 'name', 'Klinikum Wilhelmshaven'),
(149780, 116755, 'ca', 'name', 'Institut Cartogràfic i Geològic de Catalunya'),
(149781, 116756, 'de', 'name', 'FH Kufstein'),
(149782, 116756, 'en', 'name', 'University of Applied Sciences Kufstein'),
(149783, 116757, 'pt', 'name', 'Instituto da Conservação da Natureza e das Florestas'),
(149784, 116758, 'id', 'name', 'STKIP PGRI Bangkalan'),
(149785, 116759, 'en', 'name', 'Greensboro College'),
(149786, 116760, 'en', 'name', 'Alberta Innovates'),
(149787, 116761, 'en', 'name', 'European Organisation for Rare Diseases'),
(149788, 116762, 'es', 'name', 'Institución Universitaria Colombo Americana'),
(149789, 116763, 'en', 'name', 'Toyama City Hospital'),
(149790, 116763, 'ja', 'name', 'åÆŒå±±åø‚ē«‹åÆŒå±±åø‚ę°‘ē—…é™¢'),
(149791, 116764, 'no_lang_code', 'name', 'Egis Pharmaceuticals (Hungary)'),
(149792, 116765, 'en', 'name', 'Vermont Law and Graduate School'),
(149793, 116766, 'en', 'name', 'Transport Research Institute'),
(149794, 116767, 'id', 'name', 'Institut Bisnis dan Ekonomi Indonesia'),
(149795, 116768, 'en', 'name', 'Directorate-General for Employment, Social Affairs and Inclusion'),
(149796, 116769, 'es', 'name', 'Fundación Soy Conservación'),
(149797, 116770, 'en', 'name', 'Vaccine Impact Modelling Consortium'),
(149798, 116771, 'en', 'name', 'Gateway ICT Polytechnic Saapade'),
(149799, 116772, 'en', 'name', 'University of Hong Kong'),
(149800, 116773, 'es', 'name', 'Fundación Instituto de Inmunología de Colombia'),
(149801, 116774, 'en', 'name', 'Interreg North-West Europe'),
(149802, 116775, 'nl', 'name', 'Gemeente Den Haag'),
(149803, 116776, 'no', 'name', 'Justis- og beredskapsdepartementet'),
(149804, 116776, 'en', 'name', 'Ministry of Justice and Public Security'),
(149805, 116777, 'no_lang_code', 'name', 'CMPC (United States)'),
(149806, 116777, 'en', 'name', 'Computer Multimedia Productions Corporation'),
(149807, 116778, 'en', 'name', 'Lourdes College, Inc.'),
(149808, 116779, 'pl', 'name', 'Państwowa Akademia Nauk Stosowanych im. ks. Bronisława Markiewicza w Jarosławiu'),
(149809, 116779, 'en', 'name', 'State University of Applied Sciences in Jaroslaw'),
(149810, 116780, 'fr', 'name', 'Fondation Sciences mathƩmatiques de Paris'),
(149811, 116781, 'en', 'name', 'University of Michigan'),
(149812, 116781, 'fr', 'name', 'UniversitƩ du Michigan'),
(149813, 116782, 'en', 'name', 'Fairmont State University'),
(149814, 116782, 'fr', 'name', 'UniversitĆ© d''Ɖtat de fairmont'),
(149815, 116783, 'no_lang_code', 'name', 'Timken (United States)'),
(149816, 116784, 'en', 'name', 'Alliance Bioversity International - CIAT'),
(149817, 116785, 'no_lang_code', 'name', 'Creare (United States)'),
(149818, 116786, 'id', 'name', 'Universitas Katolik Darma Cendika'),
(149819, 116787, 'de', 'name', 'Institut für angewandte Photonik'),
(149820, 116788, 'no_lang_code', 'name', 'Shandong Electric Power Engineering Consulting Institute Corp'),
(149821, 116788, 'zh', 'name', 'å±±äøœē”µåŠ›å·„ēØ‹å’ØčÆ¢é™¢ęœ‰é™å…¬åø'),
(149822, 116789, 'ro', 'name', 'Institutul Național de Cercetare-Dezvoltare pentru Mașini și Instalații Destinate Agriculturii și Industriei Alimentare'),
(149823, 116789, 'en', 'name', 'The National Institute of Research – Development for Machines and Installations Designed for Agriculture and Food Industry'),
(149824, 116790, 'no_lang_code', 'name', 'Polaris (United States)'),
(149825, 116791, 'de', 'name', 'Hochschule für Gestaltung Schwäbisch Gmünd'),
(149826, 116791, 'en', 'name', 'University of Design Schwäbisch Gmünd'),
(149827, 116792, 'en', 'name', 'Ion Mincu University of Architecture and Urbanism'),
(149828, 116792, 'ro', 'name', 'Universitatea de Arhitectură și Urbanism Ion Mincu'),
(149829, 116793, 'en', 'name', 'Vietnam Academy of Agricultural Sciences'),
(149830, 116793, 'vi', 'name', 'Viện Khoa hį»c NĆ“ng nghiệp Việt Nam'),
(149831, 116794, 'en', 'name', 'Mykolaiv Polytechnic Professional College'),
(149832, 116795, 'en', 'name', 'University of Dubuque'),
(149833, 116795, 'fr', 'name', 'UniversitƩ de dubuque'),
(149834, 116796, 'de', 'name', 'Forschungsinstitut der Diabetes Akademie Mergentheim'),
(149835, 116797, 'no_lang_code', 'name', 'Luxfer Group (United Kingdom)'),
(149836, 116798, 'de', 'name', 'Psychologische Hochschule Berlin'),
(149837, 116799, 'en', 'name', 'Eskilstuna Municipality'),
(149838, 116800, 'it', 'name', 'Azienda Sanitaria Locale CN2'),
(149839, 116801, 'en', 'name', 'McKendree University'),
(149840, 116802, 'en', 'name', 'Group for the Analysis of Development'),
(149841, 116802, 'es', 'name', 'Grupo de AnƔlisis para el Desarrollo'),
(149842, 116803, 'en', 'name', 'Kenya School of Government'),
(149843, 116804, 'no_lang_code', 'name', 'Agios Andreas Hospital'),
(149844, 116804, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī Ī±Ļ„ĻĻŽĪ½'),
(149845, 116805, 'en', 'name', 'Pushkin State Russian language Institute'),
(149846, 116805, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŃƒŃŃŠŗŠ¾Š³Š¾ ŃŠ·Ń‹ŠŗŠ° им. А.Š”. Пушкина'),
(149847, 116806, 'de', 'name', 'St. Vincenz-Krankenhaus Limburg'),
(149848, 116807, 'no_lang_code', 'name', 'Gradient (United States)'),
(149849, 116808, 'es', 'name', 'Gobierno de las Islas Baleares'),
(149850, 116808, 'ca', 'name', 'Govern de les Illes Balears'),
(149851, 116809, 'de', 'name', 'Fachklinik Hornheide'),
(149852, 116810, 'en', 'name', 'Spanish Society of Hematology and Hemotherapy'),
(149853, 116811, 'es', 'name', 'Estudios Clƭnicos LatinoamƩrica'),
(149854, 116812, 'en', 'name', 'Institute of the Ukrainian Language of the National Academy of Sciences of Ukraine'),
(149855, 116812, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ¾Ń— мови ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(149856, 116813, 'en', 'name', 'Gwynedd Council'),
(149857, 116814, 'en', 'name', 'Rama University'),
(149858, 116815, 'pt', 'name', 'Instituto Sócioambiental'),
(149859, 116816, 'en', 'name', 'Finnish Institute of International Affairs'),
(149860, 116816, 'fi', 'name', 'Ulkopoliittinen instituutti'),
(149861, 116816, 'sv', 'name', 'Utrikespolitiska institutet'),
(149862, 116817, 'en', 'name', 'Tulane University'),
(149863, 116818, 'en', 'name', 'Artemis Hospitals'),
(149864, 116819, 'es', 'name', 'Universidad de Congreso'),
(149865, 116820, 'an', 'name', 'Academia Aragonesa d''a Luenga'),
(149866, 116820, 'es', 'name', 'Academia Aragonesa de la Lengua'),
(149867, 116820, 'ca', 'name', 'AcadĆØmia Aragonesa de la Llengua'),
(149868, 116821, 'en', 'name', 'Tucson Medical Center'),
(149869, 116822, 'en', 'name', 'Boston Collaborative Drug Surveillance Program'),
(149870, 116823, 'en', 'name', 'Palestine Exploration Fund'),
(149871, 116823, 'he', 'name', '×”×§×Ø×Ÿ ×œ×—×§×Ø ארׄ ×™×©×Ø××œ'),
(149872, 116823, 'ar', 'name', 'ŲµŁ†ŲÆŁˆŁ‚ استكؓاف ŁŁ„Ų³Ų·ŁŠŁ†'),
(149873, 116824, 'en', 'name', 'Sports Surgery Clinic'),
(149874, 116825, 'en', 'name', 'Centre for Transforming Access and Student Outcomes in Higher Education'),
(149875, 116826, 'en', 'name', 'American Institute of Certified Public Accountants'),
(149876, 116827, 'no_lang_code', 'name', 'Cognitive Research (United States)'),
(149877, 116828, 'en', 'name', 'Samara Regional Clinical Oncology Center'),
(149878, 116828, 'ru', 'name', 'Дамарский областной клинический онкологический Гиспансер'),
(149879, 116829, 'en', 'name', 'Presbyterian University, Ghana'),
(149880, 116830, 'no_lang_code', 'name', 'Knowles (United States)'),
(149881, 116831, 'pl', 'name', '4. Wojskowy Szpital Kliniczny z Polikliniką'),
(149882, 116832, 'en', 'name', 'Karachi Institute of Radiotherapy and Nuclear Medicine'),
(149883, 116833, 'en', 'name', 'Children’s Village'),
(149884, 116834, 'fr', 'name', 'Croix Bleue Medavie'),
(149885, 116834, 'en', 'name', 'Medavie Blue Cross'),
(149886, 116835, 'nl', 'name', 'Koninklijke Nederlandse Maatschappij voor Diergeneeskunde'),
(149887, 116836, 'es', 'name', 'Departamento de Estado de los Estados Unidos'),
(149888, 116836, 'fr', 'name', 'DĆ©partement d''Ɖtat des Ɖtats-unis'),
(149889, 116836, 'en', 'name', 'United States Department of State'),
(149890, 116837, 'en', 'name', 'Habib University'),
(149891, 116837, 'ur', 'name', 'حبيب ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(149892, 116838, 'en', 'name', 'National Library of Serbia'),
(149893, 116838, 'sr', 'name', 'ŠŠ°Ń€Š¾Š“Š½Š° библиотека Š”Ń€Š±ŠøŃ˜Šµ'),
(149894, 116839, 'en', 'name', 'Altai State Agricultural University'),
(149895, 116839, 'ru', 'name', 'Алтайский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(149896, 116840, 'en', 'name', 'Manhattan University'),
(149897, 116841, 'en', 'name', 'PSG College of Arts & Science'),
(149898, 116842, 'de', 'name', 'St. Bernward Krankenhaus'),
(149899, 116843, 'en', 'name', 'Federal Medical Centre'),
(149900, 116844, 'en', 'name', 'Leyden Academy on Vitality and Ageing'),
(149901, 116845, 'en', 'name', 'Modern Academy for Engineering and Technology'),
(149902, 116845, 'ar', 'name', 'Ų§Ł„Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų­ŲÆŁŠŲ«Ų© للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(149903, 116846, 'fr', 'name', 'Centre Hospitalier de Douai'),
(149904, 116847, 'no_lang_code', 'name', 'Mitera Hospital'),
(149905, 116848, 'en', 'name', 'Berlin University Alliance'),
(149906, 116849, 'no_lang_code', 'name', 'Austrian Competence Centre of Food Safety'),
(149907, 116849, 'de', 'name', 'Lebensmittelversuchsanstalt'),
(149908, 116850, 'en', 'name', 'Genesis Laboratories'),
(149909, 116851, 'en', 'name', 'Central Clinical Hospital and Polyclinic'),
(149910, 116851, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° c поликлиникой Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Гелами ŠŸŃ€ŠµŠ·ŠøŠ“ента Российской ФеГерации'),
(149911, 116852, 'en', 'name', 'Yukon University'),
(149912, 116853, 'en', 'name', 'Soroptimist Foundation of Canada'),
(149913, 116854, 'es', 'name', 'Socovesa (Chile)'),
(149914, 116855, 'en', 'name', 'Institute of Radiotherapy and Nuclear Medicine'),
(149915, 116855, 'ur', 'name', 'جوہری طبی اور ؓعاعي علاج کا ادارہ'),
(149916, 116856, 'en', 'name', 'Eye Foundation Hospital'),
(149917, 116857, 'en', 'name', 'Polish Institute of International Affairs'),
(149918, 116858, 'en', 'name', 'National Museum of Slovenia'),
(149919, 116859, 'en', 'name', 'Dehong Vocational College'),
(149920, 116859, 'zh', 'name', 'å¾·å®čŒäøšå­¦é™¢'),
(149921, 116860, 'en', 'name', 'Gower College Swansea'),
(149922, 116861, 'en', 'name', 'HELP Therapeutics'),
(149923, 116861, 'no_lang_code', 'name', 'HELP Therapeutics (China)'),
(149924, 116861, 'zh', 'name', 'č‰¾å°”ę™®å†ē”ŸåŒ»å­¦'),
(149925, 116862, 'en', 'name', 'Ministry of Water Resources and Irrigation'),
(149926, 116862, 'ar', 'name', 'وزارة Ų§Ł„Ł…ŁˆŲ§Ų±ŲÆ Ų§Ł„Ł…Ų§Ų¦ŁŠŲ© ŁˆŲ§Ł„Ų±ŁŠ'),
(149927, 116863, 'en', 'name', 'Institute of Economics Zagreb'),
(149928, 116864, 'es', 'name', 'Essbio'),
(149929, 116865, 'en', 'name', 'Karen Hospital'),
(149930, 116866, 'en', 'name', 'Kurashiki Medical Center'),
(149931, 116866, 'ja', 'name', 'å€‰ę•·ęˆäŗŗē—…ć‚»ćƒ³ć‚æćƒ¼'),
(149932, 116867, 'en', 'name', 'Southeast Asian Fisheries Development Center'),
(149933, 116868, 'en', 'name', 'Icelandic Cancer Society'),
(149934, 116868, 'is', 'name', 'KrabbameinsfƩlagiư'),
(149935, 116869, 'en', 'name', 'Jami University'),
(149936, 116869, 'fa', 'name', 'دانؓگاه Ų¬Ų§Ł…ŪŒ'),
(149937, 116870, 'en', 'name', 'Institute for Development and Research in Banking Technology'),
(149938, 116871, 'en', 'name', 'Menlo College'),
(149939, 116872, 'es', 'name', 'Fundación Universitaria Antonio Gargallo'),
(149940, 116873, 'pl', 'name', 'Państwowa Akademia Nauk Stosowanych w Przemyślu'),
(149941, 116873, 'en', 'name', 'State University of Applied Sciences in Przemyśl'),
(149942, 116874, 'en', 'name', 'Pak-Austria Fachhochschule: Institute of Applied Sciences and Technology'),
(149943, 116875, 'id', 'name', 'Universitas Mulia'),
(149944, 116876, 'en', 'name', 'The Ark'),
(149945, 116877, 'en', 'name', 'Anderson University - Indiana'),
(149946, 116878, 'nl', 'name', 'Reinier van Arkel'),
(149947, 116879, 'de', 'name', 'Sankt-Antonius-Hospital Eschweiler'),
(149948, 116880, 'fi', 'name', 'KuntoutussƤƤtiƶ'),
(149949, 116880, 'en', 'name', 'Rehabilitation Foundation'),
(149950, 116881, 'en', 'name', 'Office of the Higher Education Commission'),
(149951, 116881, 'th', 'name', 'สำนักงานคณะกรรดการการอุดดศึกษา'),
(149952, 116882, 'en', 'name', 'Health and Environmental Sciences Institute'),
(149953, 116883, 'de', 'name', 'Institut für Mikroelektronik Stuttgart'),
(149954, 116884, 'en', 'name', 'ACTRIS ERIC - Aerosol, Cloud and Trace Gases Research Infrastructure'),
(149955, 116885, 'en', 'name', 'Edison Scientific Inc. (United States)'),
(149956, 116886, 'en', 'name', 'Mahaveer Academy of Technology and Science University'),
(149957, 116886, 'hi', 'name', 'ą¤®ą„ˆą¤Ÿą„ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(149958, 116887, 'nl', 'name', 'Universiteit van Aruba'),
(149959, 116887, 'en', 'name', 'University of Aruba'),
(149960, 116888, 'en', 'name', 'Korea Technology and Information Promotion Agency for SMEs'),
(149961, 116888, 'ko', 'name', 'ģ¤‘ģ†Œźø°ģ—…źø°ģˆ ģ •ė³“ģ§„ķ„ģ›'),
(149962, 116889, 'fr', 'name', 'Ɖditions universitaires de Dijon'),
(149963, 116890, 'en', 'name', 'Gono University'),
(149964, 116890, 'bn', 'name', 'ą¦—ą¦£ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(149965, 116891, 'en', 'name', 'Albury Wodonga Health'),
(149966, 116892, 'fr', 'name', 'Centre hospitalier de Rouffach'),
(149967, 116893, 'en', 'name', 'State Scientific and Technical Library of Ukraine'),
(149968, 116893, 'uk', 'name', 'Державна науково-технічна бібліотека України'),
(149969, 116894, 'en', 'name', 'Sickkids Research Institute'),
(149970, 116895, 'en', 'name', 'M.V. Šžstrohradskyi Poltava Academy of Continuous Education'),
(149971, 116895, 'uk', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń неперервної освіти ім. М. Š’. ŠžŃŃ‚Ń€Š¾Š³Ń€Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(149972, 116896, 'en', 'name', 'Data Science Research Center'),
(149973, 116897, 'en', 'name', 'Inorca Seating'),
(149974, 116897, 'no_lang_code', 'name', 'Inorca Seating (Colombia)'),
(149975, 116898, 'de', 'name', 'Gesellschaft für Forschungsförderung Niederösterreich'),
(149976, 116899, 'hr', 'name', 'Agencija za ZaŔtitu Osobnih Podataka'),
(149977, 116899, 'en', 'name', 'Croatian Personal Data Protection Agency'),
(149978, 116900, 'en', 'name', 'Nalux Co., Ltd.'),
(149979, 116900, 'no_lang_code', 'name', 'Nalux Co., Ltd. (Japan)'),
(149980, 116900, 'ja', 'name', 'ćƒŠćƒ«ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(149981, 116901, 'en', 'name', 'Crown Research Institutes'),
(149982, 116902, 'en', 'name', 'Meituan'),
(149983, 116902, 'no_lang_code', 'name', 'Meituan (China)'),
(149984, 116902, 'zh', 'name', 'ē¾Žå›¢'),
(149985, 116903, 'en', 'name', 'Orenburg State Pedagogical University'),
(149986, 116903, 'ru', 'name', 'ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(149987, 116904, 'en', 'name', 'Islamic University in Uganda'),
(149988, 116905, 'en', 'name', 'Clinical Research Services'),
(149989, 116906, 'fr', 'name', 'Fondation Congolaise Pour La Recherche MƩdicale'),
(149990, 116907, 'en', 'name', '"National Medical Research Center for Rehabilitation and Balneology" of the Ministry of Health of the Russian Federation'),
(149991, 116907, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр реабилитации Šø ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠøĀ» ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(149992, 116908, 'en', 'name', 'Start Treatment & Recovery Centers'),
(149993, 116909, 'en', 'name', 'St. Petersburg College'),
(149994, 116910, 'ro', 'name', 'Institutul de Calcul Tiberiu Popoviciu'),
(149995, 116910, 'en', 'name', 'Tiberiu Popoviciu Institute of Numerical Analysis'),
(149996, 116911, 'de', 'name', 'Spital Zollikerberg'),
(149997, 116912, 'en', 'name', 'Bangladesh University of Health Sciences'),
(149998, 116913, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Warszawski Instytut Technologiczny'),
(149999, 116913, 'en', 'name', 'Łukasiewicz Research Network – Warsaw Institute of Technology'),
(150000, 116914, 'en', 'name', 'Gates Family Foundation'),
(150001, 116915, 'sw', 'name', 'Chuo Kikuu cha Zanzibar'),
(150002, 116915, 'en', 'name', 'Zanzibar University'),
(150003, 116915, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© زنجبار'),
(150004, 116916, 'en', 'name', 'Foundation for Opioid Response Efforts');
INSERT INTO `ror_settings` VALUES
(150005, 116917, 'en', 'name', 'Addiction and Mental Health Services - MSH'),
(150006, 116918, 'en', 'name', 'Federal Medical Centre Nguru'),
(150007, 116919, 'de', 'name', 'Magistrat der Stadt Wien'),
(150008, 116920, 'it', 'name', 'Parco Tecnologico Padano'),
(150009, 116921, 'en', 'name', 'Kyushu University of Health and Welfare'),
(150010, 116921, 'ja', 'name', 'ä¹å·žäæå„ē¦ē„‰å¤§å­¦'),
(150011, 116922, 'pt', 'name', 'Museu da Amazonia'),
(150012, 116923, 'en', 'name', 'Harvard Vanguard Medical Associates'),
(150013, 116924, 'en', 'name', 'Compute Ontario'),
(150014, 116925, 'en', 'name', 'Swedish National Board of Forensic Medicine'),
(150015, 116926, 'en', 'name', 'National Center for Sports Medicine of the Federal Medical and Biological Agency of Russia'),
(150016, 116926, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр спортивной меГицины Š¤ŠœŠ‘Š России'),
(150017, 116927, 'en', 'name', 'Institute of Technical Education'),
(150018, 116928, 'fr', 'name', 'Institut de Recherche et de Documentation en Ɖconomie de la SantĆ©'),
(150019, 116928, 'en', 'name', 'Institute for Research and Information in Health Economics'),
(150020, 116929, 'en', 'name', 'Graduate University of Mongolia'),
(150021, 116929, 'mn', 'name', 'Монгол Улсын ЭрГмийн Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(150022, 116930, 'en', 'name', 'Nagoya Municipal Industrial Research Institute'),
(150023, 116930, 'ja', 'name', 'åå¤å±‹åø‚å·„ę„­ē ”ē©¶ę‰€'),
(150024, 116931, 'de', 'name', 'Forschungsinstitut für Edelmetalle und Metallchemie'),
(150025, 116931, 'en', 'name', 'Research Institute for Precious Metals and Metal Chemistry'),
(150026, 116932, 'en', 'name', 'Center of Plant Systems Biology and Biotechnology'),
(150027, 116933, 'en', 'name', 'Mie Prefectural College Of Nursing'),
(150028, 116933, 'ja', 'name', 'äø‰é‡ēœŒē«‹ēœ‹č­·å¤§å­¦'),
(150029, 116934, 'en', 'name', 'Wellcome Leap'),
(150030, 116935, 'hu', 'name', 'Eƶtvƶs LorƔnd TudomƔnyegyetem'),
(150031, 116935, 'en', 'name', 'Eƶtvƶs LorƔnd University'),
(150032, 116936, 'en', 'name', 'Martin University Hospital'),
(150033, 116936, 'sk', 'name', 'UniverzitnĆ” Nemocnica Martin'),
(150034, 116937, 'en', 'name', 'HUN-REN Balaton Limnological Research Institute'),
(150035, 116937, 'hu', 'name', 'HUN-REN Balatoni Limnológiai Kutatóintézet'),
(150036, 116938, 'en', 'name', 'Dutch Institute for Clinical Auditing'),
(150037, 116939, 'es', 'name', 'Instituto Universitario de Ciencias Biomédicas de Córdoba'),
(150038, 116940, 'en', 'name', 'Missouri Institute of Mental Health'),
(150039, 116941, 'id', 'name', 'Politeknik STIA LAN Jakarta'),
(150040, 116942, 'nl', 'name', 'Rode Kruis-Vlaanderen'),
(150041, 116943, 'no_lang_code', 'name', 'Laboratory of Data Discovery for Health'),
(150042, 116943, 'zh', 'name', 'é†«č”žå¤§ę•øę“šę·±ęžåÆ¦é©—å®¤ęœ‰é™å…¬åø'),
(150043, 116944, 'en', 'name', 'International Centre for Diffraction Data'),
(150044, 116945, 'en', 'name', 'Self Family Foundation'),
(150045, 116946, 'en', 'name', 'Clinical and Translational Science Institute'),
(150046, 116947, 'en', 'name', 'Forestry and Game Management Research Institute'),
(150047, 116948, 'uk', 'name', 'IŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізичної оптики iменi Šž. Š“. Влоха'),
(150048, 116948, 'en', 'name', 'Vlokh Institute of Physical Optics'),
(150049, 116949, 'fr', 'name', 'UniversitƩ Tunis Carthage'),
(150050, 116949, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³ قرطاج'),
(150051, 116950, 'en', 'name', 'Iranian Academy of Medical Sciences'),
(150052, 116950, 'fa', 'name', 'فرهنگستان Ų¹Ł„ŁˆŁ… پزؓکی Ų¬Ł…Ł‡ŁˆŲ±ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(150053, 116951, 'en', 'name', 'Casimir Pulaski Foundation'),
(150054, 116951, 'pl', 'name', 'Fundacja im. Kazimierza Pułaskiego'),
(150055, 116952, 'de', 'name', 'Nephrologisches Zentrum Goettingen'),
(150056, 116953, 'es', 'name', 'Autoridad del Canal de PanamĆ”'),
(150057, 116953, 'en', 'name', 'Panama Canal Authority'),
(150058, 116954, 'en', 'name', 'Economic Research Forum'),
(150059, 116954, 'ar', 'name', 'منتدى Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŁŠŲ©'),
(150060, 116955, 'en', 'name', 'Lyceum College'),
(150061, 116956, 'en', 'name', 'Sancheti Institute For Orthopaedics & Rehabilitation'),
(150062, 116957, 'id', 'name', 'Universitas Mahendradatta'),
(150063, 116958, 'en', 'name', 'Autism CRC'),
(150064, 116959, 'en', 'name', 'KeJingBio'),
(150065, 116960, 'es', 'name', 'Corporación Federal de Seguro de Depósitos'),
(150066, 116960, 'en', 'name', 'Federal Deposit Insurance Corporation'),
(150067, 116961, 'en', 'name', 'European Centre for Training and Research in Earthquake Engineering'),
(150068, 116962, 'no_lang_code', 'name', 'Kirinyaga University'),
(150069, 116963, 'en', 'name', 'Pontifical University Antonianum'),
(150070, 116963, 'it', 'name', 'Pontificia UniversitĆ  Antonianum'),
(150071, 116963, 'de', 'name', 'PƤpstliche UniversitƤt Antonianum'),
(150072, 116963, 'fr', 'name', 'UniversitƩ pontificale de saint-antoine'),
(150073, 116964, 'de', 'name', 'Landeszentrum Gesundheit Nordrhein-Westfalen'),
(150074, 116965, 'no', 'name', 'Nasjonalforeningen for Folkehelsen'),
(150075, 116966, 'en', 'name', 'Alberta Student Aid'),
(150076, 116967, 'no_lang_code', 'name', 'Focus (Germany)'),
(150077, 116968, 'en', 'name', 'Centre For Sustainable Urban Development'),
(150078, 116968, 'es', 'name', 'Centro de Desarrollo Urbano Sustentable'),
(150079, 116969, 'en', 'name', 'Centre for Water Resources Development and Management'),
(150080, 116970, 'fr', 'name', 'Centre Hospitalier VƩtƩrinaire FrƩgis'),
(150081, 116971, 'en', 'name', 'StepFun AI'),
(150082, 116971, 'no_lang_code', 'name', 'StepFun AI (China)'),
(150083, 116971, 'zh', 'name', '阶跃AI'),
(150084, 116972, 'en', 'name', 'Isaac Newton Institute for Mathematical Sciences'),
(150085, 116973, 'en', 'name', 'Sultan Abdul Halim Mu''adzam Shah International Islamic University'),
(150086, 116973, 'ms', 'name', 'Universiti Islam Antarabangsa Sultan Abdul Halim Mu''adzam Shah'),
(150087, 116974, 'no_lang_code', 'name', 'Telekom Malaysia Berhad (Malaysia)'),
(150088, 116975, 'en', 'name', 'Oman Medical College'),
(150089, 116975, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų¹ŁŁ…Ų§Ł† Ų§Ł„Ų·ŲØŁŠŲ©'),
(150090, 116976, 'nl', 'name', 'Ziekenhuis aan de Stroom'),
(150091, 116977, 'en', 'name', 'Kurume Institute of Technology'),
(150092, 116977, 'ja', 'name', '久留米巄愭大学'),
(150093, 116978, 'en', 'name', 'European Molecular Biology Laboratory'),
(150094, 116978, 'de', 'name', 'Europäisches Laboratorium für Molekularbiologie'),
(150095, 116979, 'en', 'name', 'Unfunded List'),
(150096, 116980, 'en', 'name', 'Kherson State Maritime Academy'),
(150097, 116980, 'uk', 'name', 'Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠ° Гержавна Š¼Š¾Ń€ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(150098, 116981, 'en', 'name', 'Horizons Foundation'),
(150099, 116982, 'en', 'name', 'Yamashina Institute for Ornithology'),
(150100, 116982, 'ja', 'name', 'å±±éšŽé³„é”žē ”ē©¶ę‰€'),
(150101, 116983, 'nl', 'name', 'Codarts Rotterdam'),
(150102, 116984, 'en', 'name', 'Durham College'),
(150103, 116985, 'en', 'name', 'Universities Research Association'),
(150104, 116986, 'no_lang_code', 'name', 'Apache (Canada)'),
(150105, 116987, 'en', 'name', 'Artifex University'),
(150106, 116987, 'ro', 'name', 'Universitatea Artifex'),
(150107, 116988, 'es', 'name', 'Universidad Tecnológica de La Laguna Durango'),
(150108, 116989, 'en', 'name', 'Sitaram Bhartia Institute of Science and Research'),
(150109, 116990, 'de', 'name', 'Land Nordrhein-Westfalen'),
(150110, 116991, 'ro', 'name', 'Institutul de Cercetare-Dezvoltare pentru Ecologie Acvatică, Pescuit și Acvacultură'),
(150111, 116991, 'en', 'name', 'Research and Development Institute for Aquatic Ecology, Fisheries and Aquaculture'),
(150112, 116992, 'no_lang_code', 'name', 'Fahrenheit (Germany)'),
(150113, 116993, 'en', 'name', 'IILM Institute for Higher Education'),
(150114, 116994, 'hu', 'name', 'Somogy Megyei Kaposi Mór Oktató KórhÔz'),
(150115, 116995, 'en', 'name', 'Gifu University of Medical Science'),
(150116, 116995, 'ja', 'name', 'å²é˜œåŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(150117, 116996, 'en', 'name', 'Barcelona Institute of Science and Technology'),
(150118, 116996, 'es', 'name', 'Instituto Barcelona de Ciencia y TecnologĆ­a'),
(150119, 116997, 'es', 'name', 'Asociación Psicoanalítica de Buenos Aires'),
(150120, 116998, 'en', 'name', 'Quzhou College of Technology'),
(150121, 116999, 'de', 'name', 'Genetikum'),
(150122, 117000, 'en', 'name', 'Indonesia International Institute for Life Sciences'),
(150123, 117001, 'en', 'name', 'Breach Candy Hospital'),
(150124, 117002, 'fr', 'name', 'Centre Hospitalier Guillaume RƩgnier'),
(150125, 117003, 'no_lang_code', 'name', 'Metabolon (United States)'),
(150126, 117004, 'de', 'name', 'Institut für Lasertechnologien in der Medizin und Meßtechnik an der Universität Ulm'),
(150127, 117004, 'en', 'name', 'Institute for Laser Technology in Medicine and Measurement Technique'),
(150128, 117005, 'no_lang_code', 'name', 'Nova Chemicals (Canada)'),
(150129, 117006, 'en', 'name', 'China Classification Society'),
(150130, 117006, 'zh', 'name', 'äø­åœ‹čˆ¹ē“šē¤¾'),
(150131, 117007, 'en', 'name', 'Wilton Park'),
(150132, 117008, 'no', 'name', 'Norsk Teknisk Museum'),
(150133, 117009, 'en', 'name', 'Berman Center for Outcomes and Clinical Research'),
(150134, 117010, 'en', 'name', 'Zettawatt-Equivalent Ultrashort pulse laser System'),
(150135, 117011, 'nl', 'name', 'GGZ Drenthe'),
(150136, 117012, 'pt', 'name', 'Centro UniversitÔrio de União da Vitória'),
(150137, 117013, 'en', 'name', 'Korean Academy of Science and Technology'),
(150138, 117013, 'ko', 'name', 'ķ•œźµ­ź³¼ķ•™źø°ģˆ ķ•œė¦¼ģ›'),
(150139, 117014, 'en', 'name', 'Arkana Laboratories'),
(150140, 117015, 'en', 'name', 'Roosevelt Institute for American Studies'),
(150141, 117016, 'id', 'name', 'STKIP Al Islam Tunas Bangsa'),
(150142, 117017, 'en', 'name', 'University of Perpetual Help System DALTA'),
(150143, 117018, 'es', 'name', 'Universidad de las Naciones'),
(150144, 117019, 'en', 'name', 'Muljibhai Patel Urological Hospital'),
(150145, 117020, 'en', 'name', 'Scottish Graduate School of Social Science'),
(150146, 117021, 'en', 'name', 'Maikop State Technological University'),
(150147, 117021, 'ru', 'name', 'Майкопский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(150148, 117022, 'id', 'name', 'Yayasan Ekosistem Lestari'),
(150149, 117023, 'en', 'name', 'ISEAS - Yusof Ishak Institute'),
(150150, 117023, 'zh', 'name', 'ę±å—äŗžē ”ē©¶ę‰€'),
(150151, 117024, 'en', 'name', 'Nuclear Waste Management Organization'),
(150152, 117025, 'en', 'name', 'Finland University'),
(150153, 117026, 'en', 'name', 'Yiyang Transportation Planning, Survey, and Design Institute Co., Ltd. (China)'),
(150154, 117026, 'zh', 'name', 'ē›Šé˜³åø‚äŗ¤é€šč§„åˆ’å‹˜ęµ‹č®¾č®”é™¢ęœ‰é™å…¬åø'),
(150155, 117027, 'en', 'name', 'Achievers University'),
(150156, 117028, 'ro', 'name', 'Institutul Geologic al României'),
(150157, 117029, 'en', 'name', 'Ministry of Health and Population'),
(150158, 117029, 'ne', 'name', 'ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ तऄा ą¤œą¤Øą¤øą¤‚ą¤–ą„ą¤Æą¤¾ ą¤®ą¤Øą„ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(150159, 117030, 'de', 'name', 'Institut für Nanophotonik'),
(150160, 117031, 'es', 'name', 'Fundación INFANT'),
(150161, 117031, 'en', 'name', 'Infant Foundation'),
(150162, 117032, 'es', 'name', 'Universidad Nacional Experimental de los Llanos Occidentales Ezequiel Zamora'),
(150163, 117033, 'da', 'name', 'Rockwool Fonden'),
(150164, 117033, 'en', 'name', 'Rockwool Foundation'),
(150165, 117034, 'es', 'name', 'Universidad Privada de Tacna'),
(150166, 117035, 'en', 'name', 'Office of Rural Health'),
(150167, 117036, 'en', 'name', 'Nantong Science and Technology Bureau'),
(150168, 117036, 'zh', 'name', 'å—é€šåø‚ē§‘ęŠ€å±€'),
(150169, 117037, 'en', 'name', 'Croatian National Bank'),
(150170, 117037, 'hr', 'name', 'Hrvatska Narodna Banka'),
(150171, 117038, 'en', 'name', 'Ministry of SMEs and Startups'),
(150172, 117038, 'ko', 'name', 'ģ¤‘ģ†Œė²¤ģ²˜źø°ģ—…ė¶€'),
(150173, 117039, 'en', 'name', 'mBrainTrain LLC (Serbia)'),
(150174, 117040, 'en', 'name', 'Woolworths Group (Australia)'),
(150175, 117041, 'en', 'name', 'National Supercomputing Center in Shenzhen'),
(150176, 117041, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—ę·±åœ³äø­åæƒ'),
(150177, 117042, 'no_lang_code', 'name', 'Exelixis (United States)'),
(150178, 117043, 'no_lang_code', 'name', 'Materia Nova'),
(150179, 117044, 'en', 'name', 'Development Centre for Ship Technology and Transport Systems'),
(150180, 117044, 'de', 'name', 'Entwicklungszentrum für Schiffstechnik und Transportsysteme'),
(150181, 117045, 'en', 'name', 'University of Frontier Technology, Bangladesh'),
(150182, 117045, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦«ą§ą¦°ą¦Øą§ą¦Ÿą¦æą¦Æą¦¼ą¦¾ą¦° ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ, বাংলাদেশ'),
(150183, 117046, 'en', 'name', 'International Maritime College Oman'),
(150184, 117046, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© عمان Ų§Ł„ŲØŲ­Ų±ŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(150185, 117047, 'es', 'name', 'Asocaicón de Astrónomos Aficionados de la Universidad Complutense de Madrid'),
(150186, 117048, 'en', 'name', 'Surman College of Science and Technology'),
(150187, 117048, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© صرمان Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(150188, 117049, 'en', 'name', 'Shreemati Nathibai Damodar Thackersey Women''s University'),
(150189, 117049, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ą¤®ą¤¤ą„€ ą¤Øą¤¾ą¤„ą„€ą¤¬ą¤¾ą¤ˆ ą¤¦ą¤¾ą¤®ą„‹ą¤¦ą¤° ą¤ ą¤¾ą¤•ą¤°ą¤øą„€ महिला ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(150190, 117050, 'es', 'name', 'Facultad de TeologĆ­a San Isidoro de Sevilla'),
(150191, 117050, 'en', 'name', 'San Isidoro School of Theology of Seville'),
(150192, 117051, 'hr', 'name', 'INA'),
(150193, 117051, 'no_lang_code', 'name', 'INA (Croatia)'),
(150194, 117052, 'en', 'name', 'Prof. Dr. Margono Soekarjo Regional Public Hospital'),
(150195, 117052, 'id', 'name', 'RSUD Prof. Dr. Margono Soekarjo'),
(150196, 117053, 'en', 'name', 'The Justice Management Institute'),
(150197, 117054, 'en', 'name', 'North Carolina State University'),
(150198, 117054, 'es', 'name', 'Universidad Estatal de Carolina del Norte'),
(150199, 117054, 'fr', 'name', 'UniversitĆ© d''Ɖtat de caroline du nord'),
(150200, 117055, 'en', 'name', 'Elecnor'),
(150201, 117055, 'no_lang_code', 'name', 'Elecnor (Spain)'),
(150202, 117056, 'en', 'name', 'Tri-Chandra Multiple Campus'),
(150203, 117056, 'ne', 'name', 'ą¤¤ą„ą¤°ą¤æ-ą¤šą¤Øą„ą¤¦ą„ą¤° ą¤¬ą¤¹ą„ą¤®ą„ą¤–ą„€ ą¤•ą„ą¤Æą¤¾ą¤®ą„ą¤Ŗą¤ø'),
(150204, 117057, 'id', 'name', 'STAI Walisembilan Semarang'),
(150205, 117058, 'en', 'name', 'FIMAC S.p.A.'),
(150206, 117058, 'no_lang_code', 'name', 'FIMAC S.p.A. (Italy)'),
(150207, 117059, 'en', 'name', 'FIND'),
(150208, 117060, 'no_lang_code', 'name', 'Abbott (United States)'),
(150209, 117060, 'fr', 'name', 'Laboratoires Abbott'),
(150210, 117061, 'en', 'name', 'Envirogen'),
(150211, 117061, 'no_lang_code', 'name', 'Envirogen (United States)'),
(150212, 117062, 'en', 'name', 'General Energy Institute of National Academy of Sciences of Ukraine'),
(150213, 117062, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š·Š°Š³Š°Š»ŃŒŠ½Š¾Ń— енергетики ŠŠŠ України'),
(150214, 117062, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠžŠ±Ń‰ŠµŠ¹ Энергетики ŠŠŠ Украины'),
(150215, 117063, 'en', 'name', 'University of Maribor'),
(150216, 117063, 'sl', 'name', 'Univerza v Mariboru'),
(150217, 117064, 'en', 'name', 'Geodetic Facility for the Advancement of Geoscience'),
(150218, 117065, 'es', 'name', 'Sanitas'),
(150219, 117065, 'no_lang_code', 'name', 'Sanitas (Spain)'),
(150220, 117066, 'en', 'name', 'Azerbaijan National Academy of Sciences Ganja Branch'),
(150221, 117066, 'az', 'name', 'Azərbaycan Milli Elmlər Akademiyası Gəncə Bƶlməsi'),
(150222, 117066, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°ŃƒŠŗ АзербайГжана Š“ŃŠ½Š“Š¶ŠøŠ½ŃŠŗŠ¾Šµ ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ'),
(150223, 117067, 'no_lang_code', 'name', 'Western EcoSystems Technology (United States)'),
(150224, 117068, 'no_lang_code', 'name', 'Qiaqia Food (China)'),
(150225, 117068, 'en', 'name', 'Qiaqia Food'),
(150226, 117069, 'es', 'name', 'Universidad de Los Andes'),
(150227, 117069, 'en', 'name', 'University of the Andes'),
(150228, 117070, 'fr', 'name', 'Conseil suisse de la science'),
(150229, 117070, 'it', 'name', 'Consiglio svizzero della scienza'),
(150230, 117070, 'de', 'name', 'Schweizerischer Wissenschaftsrat'),
(150231, 117070, 'en', 'name', 'Swiss Science Council'),
(150232, 117071, 'en', 'name', 'College of Education, Akwanga'),
(150233, 117072, 'en', 'name', 'Islamic University Babylon Campus'),
(150234, 117072, 'ar', 'name', 'الجامعة Ų§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠŲ© في ŲØŲ§ŲØŁ„'),
(150235, 117073, 'fr', 'name', 'Institut Protestant de ThƩologie'),
(150236, 117074, 'en', 'name', 'EduHeart Knowledge Network and Publishing'),
(150237, 117074, 'no_lang_code', 'name', 'EduHeart Knowledge Network and Publishing (Philippines)'),
(150238, 117075, 'en', 'name', 'Basque Parliament'),
(150239, 117075, 'eu', 'name', 'Eusko Legebiltzarra'),
(150240, 117075, 'ca', 'name', 'Parlament Basc'),
(150241, 117075, 'es', 'name', 'Parlamento Vasco'),
(150242, 117076, 'en', 'name', 'The Alan Turing Institute'),
(150243, 117077, 'fr', 'name', 'Universite Mohamed Boudiaf - M''sila'),
(150244, 117077, 'en', 'name', 'University Mohamed Boudiaf of M''sila'),
(150245, 117077, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ بوضياف Ł…Ų³ŁŠŁ„Ų©'),
(150246, 117078, 'en', 'name', 'Ministry of Health'),
(150247, 117079, 'en', 'name', 'Cornell University'),
(150248, 117079, 'es', 'name', 'Universidad Cornell'),
(150249, 117080, 'en', 'name', 'National Institute of Technology Karnataka'),
(150250, 117080, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(150251, 117080, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®°ąÆą®Øą®¾ą®Ÿą®•ą®®ąÆ'),
(150252, 117080, 'kn', 'name', 'ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²•ą²°ą³ą²Øą²¾ą²Ÿą²•'),
(150253, 117081, 'en', 'name', 'CureScience'),
(150254, 117082, 'de', 'name', 'Charlotte Fresenius Hochschule'),
(150255, 117082, 'en', 'name', 'Charlotte Fresenius University University of Psychology'),
(150256, 117083, 'en', 'name', 'Bordeaux Imaging Center'),
(150257, 117084, 'en', 'name', 'Naples Botanical Garden'),
(150258, 117085, 'no_lang_code', 'name', 'Nvidia (United Kingdom)'),
(150259, 117086, 'en', 'name', 'Ministry of Science and Technology Thailand'),
(150260, 117086, 'th', 'name', 'ąøąø£ąø°ąø—ąø£ąø§ąø‡ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œą¹ąø„ąø°ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµ'),
(150261, 117087, 'en', 'name', 'NOAA Oceanic and Atmospheric Research'),
(150262, 117088, 'es', 'name', 'Hospital San Juan de Dios del Aljarafe'),
(150263, 117089, 'no_lang_code', 'name', 'Global University Systems'),
(150264, 117090, 'fr', 'name', 'Ɖcole nationale des ponts et chaussĆ©es'),
(150265, 117091, 'en', 'name', 'Federal University of Amazonas'),
(150266, 117091, 'pt', 'name', 'Universidade Federal do Amazonas'),
(150267, 117092, 'no_lang_code', 'name', 'Environmental Institute'),
(150268, 117092, 'en', 'name', 'Environmental Institute, s.r.o.'),
(150269, 117093, 'es', 'name', 'Tecsup'),
(150270, 117093, 'en', 'name', 'Tecsup Institute'),
(150271, 117094, 'en', 'name', 'Noida Institute of Engineering and Technology Pharmacy Institute'),
(150272, 117095, 'en', 'name', 'Scholarly Publishing and Academic Resources Coalition'),
(150273, 117096, 'en', 'name', 'Wuxi University'),
(150274, 117096, 'zh', 'name', '无锔学院'),
(150275, 117097, 'en', 'name', 'San Joaquin General Hospital'),
(150276, 117098, 'en', 'name', 'University of New England'),
(150277, 117099, 'en', 'name', 'Neurinfo'),
(150278, 117100, 'tr', 'name', 'Gülhane Eğitim ve Araştırma Hastanesi'),
(150279, 117100, 'en', 'name', 'Gülhane Training and Research Hospital'),
(150280, 117101, 'en', 'name', 'California Department of General Services'),
(150281, 117102, 'en', 'name', 'Creek General Hospital'),
(150282, 117103, 'en', 'name', 'East Bay Municipal Utility District'),
(150283, 117104, 'en', 'name', 'Gharjistan University'),
(150284, 117104, 'fa', 'name', 'دانؓگاه غرجستان'),
(150285, 117105, 'en', 'name', 'Liwa University'),
(150286, 117105, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł„ŁŠŁˆŲ§'),
(150287, 117106, 'en', 'name', 'Ethiopian Wildlife Conservation Authority'),
(150288, 117107, 'en', 'name', 'SIB Swiss Institute of Bioinformatics'),
(150289, 117108, 'en', 'name', 'Centre for Agricultural Research and Training'),
(150290, 117108, 'es', 'name', 'Centro de Investigación y Formación Agrarias'),
(150291, 117109, 'fr', 'name', 'Centre Hospitalier Universitaire de Limoges'),
(150292, 117110, 'en', 'name', 'Nuffield Foundation'),
(150293, 117111, 'en', 'name', 'Dayananda Sagar Business Academy'),
(150294, 117112, 'hr', 'name', 'Centar za politoloŔka istraživanja d.o.o'),
(150295, 117112, 'en', 'name', 'Center for Political Research LLC'),
(150296, 117113, 'en', 'name', 'Baden-Württemberg: Connected'),
(150297, 117113, 'no_lang_code', 'name', 'Bwcon (Germany)'),
(150298, 117114, 'en', 'name', 'Association of Anesthesiologists of Uganda'),
(150299, 117115, 'en', 'name', 'WISE Indonesian Education'),
(150300, 117115, 'id', 'name', 'WISE Pendidikan Indonesia'),
(150301, 117116, 'es', 'name', 'Hospital Universitario San AgustĆ­n'),
(150302, 117117, 'en', 'name', 'Datactivist'),
(150303, 117117, 'no_lang_code', 'name', 'Datactivist (France)'),
(150304, 117118, 'en', 'name', 'Central University Hospital of Asturias'),
(150305, 117118, 'es', 'name', 'Hospital Universitario Central de Asturias'),
(150306, 117119, 'en', 'name', 'OpenAQ'),
(150307, 117120, 'no_lang_code', 'name', 'Huntsman (United States)'),
(150308, 117121, 'no_lang_code', 'name', 'Dataciders InMediasP (Germany)'),
(150309, 117122, 'en', 'name', 'Academy of Arts and Culture in Osijek'),
(150310, 117122, 'hr', 'name', 'Akademija za umjetnost i kulturu u Osijeku'),
(150311, 117123, 'en', 'name', 'Eastern Malaga-Axarquia Health Management Area'),
(150312, 117123, 'es', 'name', 'Área de Gestión Sanitaria Este de MÔlaga-Axarquía'),
(150313, 117124, 'fr', 'name', 'UnitƩ Transdisciplinaire d''Orientation et de Prospective des Impacts environnementaux de la recherche en IngƩnierie'),
(150314, 117125, 'en', 'name', 'Swiss International University'),
(150315, 117126, 'uk', 'name', 'State Enterprise "State Research Institute of Building Constructions"'),
(150316, 117127, 'es', 'name', 'Fundación Sueño Vigilia Colombiana'),
(150317, 117128, 'en', 'name', 'Android Health Clinic'),
(150318, 117129, 'en', 'name', 'The Higher School of Management and Digital Economy'),
(150319, 117129, 'fr', 'name', 'Ɖcole SupĆ©rieure de Gestion et d’Économie NumĆ©rique'),
(150320, 117130, 'en', 'name', 'Ministry of Environment, Urbanization and Climate Change Turkey'),
(150321, 117130, 'tr', 'name', 'Ƈevre, Şehircilik ve İklim Değişikliği Bakanlığı'),
(150322, 117131, 'en', 'name', 'Antigen Scientific and Production Enterprise LLP'),
(150323, 117131, 'no_lang_code', 'name', 'Antigen Scientific and Production Enterprise LLP (Kazakhstan)'),
(150324, 117132, 'en', 'name', 'National Post Graduate College'),
(150325, 117133, 'vi', 'name', 'Bệnh viện nhi Trung ʰʔng'),
(150326, 117133, 'en', 'name', 'Vietnam National Children''s Hospital'),
(150327, 117134, 'en', 'name', 'Trivenidevi Bhalotia College'),
(150328, 117135, 'fr', 'name', 'Fondation internationale de l''ostƩoporose'),
(150329, 117135, 'en', 'name', 'International Osteoporosis Foundation'),
(150330, 117136, 'en', 'name', 'Ss. Cyril and Methodius University in Skopje'),
(150331, 117136, 'mk', 'name', 'Универзитет ā€žŠ”Š². ŠšŠøŃ€ŠøŠ» Šø ŠœŠµŃ‚Š¾Š“ŠøŃ˜ā€œ во Дкопје'),
(150332, 117137, 'en', 'name', 'Islamic Azad University Gonabad'),
(150333, 117137, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گناباد'),
(150334, 117138, 'en', 'name', 'Dayananda Sagar University'),
(150335, 117139, 'es', 'name', 'Fundación Universitaria San Mateo'),
(150336, 117140, 'en', 'name', 'Scientific Committee On Oceanic Research'),
(150337, 117141, 'en', 'name', 'Georgetown University Medical Center'),
(150338, 117142, 'en', 'name', 'Harmonic'),
(150339, 117142, 'no_lang_code', 'name', 'Harmonic (United States)'),
(150340, 117143, 'en', 'name', 'The Ada Lovelace Institute'),
(150341, 117144, 'hr', 'name', 'Institut za istraživanje i razvoj održivih eko sustava'),
(150342, 117144, 'en', 'name', 'Institute for Research and Development of Sustainable Ecosystems'),
(150343, 117145, 'vi', 'name', 'Benh Vien Phuc Hoi Chuic Nung'),
(150344, 117145, 'en', 'name', 'Ha Noi Rehabilitation Hospital'),
(150345, 117146, 'en', 'name', 'New Zealand Clinical Research'),
(150346, 117147, 'en', 'name', 'Noida Institute of Engineering and Technology'),
(150347, 117148, 'it', 'name', 'Istituto di Ricerca sulle Acque'),
(150348, 117148, 'en', 'name', 'Water Research Institute'),
(150349, 117149, 'en', 'name', 'Sri Ramakrishna College of Arts and Science'),
(150350, 117149, 'bn', 'name', 'ą¦¶ą§ą¦°ą§€ ą¦°ą¦¾ą¦®ą¦•ą§ƒą¦·ą§ą¦£ কলা ও ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦•ą¦²ą§‡ą¦œ'),
(150351, 117149, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°°ą°¾ą°®ą°•ą±ƒą°·ą±ą°£ ą°•ą°¾ą°²ą±‡ą°œą± ą°†ą°«ą± ą°†ą°°ą±ą°Ÿą±ą°øą± ą°…ą°‚ą°”ą± ą°øą±ˆą°Øą±ą°øą±'),
(150352, 117150, 'en', 'name', 'KIRND Institute of Research and Development Pvt Ltd'),
(150353, 117151, 'fr', 'name', 'Institut de sciences exactes et appliquƩes'),
(150354, 117151, 'en', 'name', 'Institute of Pure and Applied Sciences'),
(150355, 117152, 'fr', 'name', 'FacultƩs Loyola Paris'),
(150356, 117153, 'en', 'name', 'National School of Public Policy'),
(150357, 117153, 'ur', 'name', 'Ł‚ŁˆŁ…ŪŒ Ų³Ś©ŁˆŁ„ ŲØŲ±Ų§Ų¦Ū’Ų¹ŁˆŲ§Ł…ŪŒ Ł¾Ų§Ł„ŪŒŲ³ŪŒ'),
(150358, 117154, 'pt', 'name', 'VIVA Instituto Verde Azul'),
(150359, 117154, 'en', 'name', 'VIVA Verde Azul Institute'),
(150360, 117155, 'hr', 'name', 'Ekonomski fakultet - Zagreb'),
(150361, 117155, 'en', 'name', 'Faculty of Economics & Business, University of Zagreb'),
(150362, 117156, 'en', 'name', 'Indonesian Railway Polytechnic'),
(150363, 117156, 'id', 'name', 'Politeknik Perkeretaapian Indonesia'),
(150364, 117157, 'en', 'name', 'Alef Trust'),
(150365, 117158, 'en', 'name', 'Academy of Medical Sciences of Croatia'),
(150366, 117158, 'hr', 'name', 'Akademija medicinskih znanosti Hrvatske'),
(150367, 117159, 'fr', 'name', 'Centre Hospitalier Universitaire de Rennes'),
(150368, 117159, 'en', 'name', 'Rennes University Hospital'),
(150369, 117160, 'fr', 'name', 'Maladies Rares: GƩnƩtique et MƩtabolisme'),
(150370, 117160, 'en', 'name', 'Rare Diseases: Genetics and Metabolism'),
(150371, 117161, 'fr', 'name', 'GRHAPES – Groupe de recherche sur le handicap, l''accessibilitĆ©, les pratiques Ć©ducatives et scolaires (UR 7287)'),
(150372, 117162, 'es', 'name', 'Hospital San AgustĆ­n'),
(150373, 117163, 'en', 'name', 'Cornell Tech'),
(150374, 117164, 'pt', 'name', 'Universidade de Aveiro'),
(150375, 117164, 'en', 'name', 'University of Aveiro'),
(150376, 117165, 'en', 'name', 'Fertility & Lifespan Medical Institute'),
(150377, 117166, 'pt', 'name', 'Banco do Brasil'),
(150378, 117166, 'en', 'name', 'Bank of Brazil'),
(150379, 117167, 'en', 'name', 'Lagos State University of Science and Technology'),
(150380, 117168, 'hr', 'name', 'SveučiliŔte Josipa Jurja Strossmayera u Osijeku'),
(150381, 117168, 'en', 'name', 'University of Osijek'),
(150382, 117169, 'no_lang_code', 'name', 'Progress (Ireland)'),
(150383, 117170, 'pt', 'name', 'Centro UniversitƔrio FUNORTE'),
(150384, 117171, 'en', 'name', 'Iowa State University Digital Press'),
(150385, 117172, 'en', 'name', 'Saint James Catholic College of Merauke'),
(150386, 117172, 'id', 'name', 'Sekolah Tinggi Katolik Santo Yakobus Merauke'),
(150387, 117173, 'es', 'name', 'Deimos'),
(150388, 117173, 'no_lang_code', 'name', 'Deimos (Spain)'),
(150389, 117174, 'en', 'name', 'Animal Genetics and Breeding Unit'),
(150390, 117175, 'en', 'name', 'Higher School of Computer Science of Sidi Bel Abbes'),
(150391, 117175, 'fr', 'name', 'Ɖcole SupĆ©rieure en Informatique de Sidi Bel Abbes'),
(150392, 117175, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ لل؄علام Ų§Ł„Ų¢Ł„ŁŠ بسيدي بلعباس'),
(150393, 117176, 'en', 'name', 'Instruct-ERIC'),
(150394, 117177, 'en', 'name', 'Maniben Nanavati Women''s College'),
(150395, 117178, 'en', 'name', 'Federal Polytechnic, Ile-Oluji, Ondo State'),
(150396, 117179, 'hr', 'name', 'Akademija tehničkih znanosti Hrvatske'),
(150397, 117179, 'en', 'name', 'Croatian Academy of Engineering'),
(150398, 117180, 'en', 'name', 'Bridgetown International University'),
(150399, 117181, 'en', 'name', 'American University of Beirut – Mediterraneo'),
(150400, 117182, 'en', 'name', 'Hospital Blua Sanitas Valdebebas'),
(150401, 117183, 'en', 'name', 'Textile Engineering College, Zorargonj, Chittagong'),
(150402, 117183, 'bn', 'name', 'ą¦Ÿą§‡ą¦•ą§ą¦øą¦Ÿą¦¾ą¦‡ą¦² ą¦‡ą¦žą§ą¦œą¦æą¦Øą¦æą¦Æą¦¼ą¦¾ą¦°ą¦æą¦‚ ą¦•ą¦²ą§‡ą¦œ, ą¦œą§‹ą¦°ą¦¾ą¦°ą¦—ą¦žą§ą¦œ, ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦®'),
(150403, 117184, 'en', 'name', 'Thailand Institute of Scientific and Technological Research'),
(150404, 117185, 'en', 'name', 'Phoenicia University'),
(150405, 117186, 'en', 'name', 'Beijing Kanova Biopharmaceutical, Co. Ltd'),
(150406, 117186, 'no_lang_code', 'name', 'Beijing Kanova Biopharmaceutical, Co. Ltd (China)'),
(150407, 117186, 'zh', 'name', 'ęµ™ę±Ÿé‘«åŗ·åˆē”Ÿē‰©åŒ»čÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(150408, 117187, 'en', 'name', 'Marine Biology Research Centre'),
(150409, 117188, 'ms', 'name', 'Universiti Teknologi MARA System'),
(150410, 117189, 'en', 'name', 'Bhaktapur Multiple Campus'),
(150411, 117190, 'es', 'name', 'Sociedad de CirugĆ­a del Uruguay'),
(150412, 117190, 'en', 'name', 'Uruguayan Surgery Society'),
(150413, 117191, 'en', 'name', 'Prasad Netralaya Superspecialty Eye Hospital'),
(150414, 117192, 'sv', 'name', 'Svensk sjukskƶterskefƶrening'),
(150415, 117192, 'en', 'name', 'Swedish Society of Nursing'),
(150416, 117193, 'en', 'name', 'Federal University of Pelotas'),
(150417, 117193, 'pt', 'name', 'Universidade Federal de Pelotas'),
(150418, 117194, 'en', 'name', 'The Uniprot Consortium'),
(150419, 117195, 'no_lang_code', 'name', 'Exail (France)'),
(150420, 117196, 'en', 'name', 'Libertas International University'),
(150421, 117196, 'hr', 'name', 'Libertas međunarodno sveučiliÅ”te'),
(150422, 117197, 'pt', 'name', 'Banco da AmazƓnia'),
(150423, 117198, 'en', 'name', 'Association of Zoos and Aquariums'),
(150424, 117199, 'en', 'name', 'Bangladesh Space Research and Remote Sensing Organization'),
(150425, 117199, 'bn', 'name', 'Bangladesh mohakash gobeshona o door onudhabon protishthan'),
(150426, 117200, 'en', 'name', 'Future Earth'),
(150427, 117201, 'id', 'name', 'Universitas Riau Indonesia'),
(150428, 117202, 'en', 'name', 'Frontiers Media SA'),
(150429, 117202, 'no_lang_code', 'name', 'Frontiers Media SA (Switzerland)'),
(150430, 117203, 'en', 'name', 'Shanghai Qu Zhi Institute'),
(150431, 117203, 'zh', 'name', 'äøŠęµ·ęœŸę™ŗē ”ē©¶é™¢'),
(150432, 117204, 'en', 'name', 'Aanischaaukamikw Cree Cultural Institute'),
(150433, 117204, 'fr', 'name', 'Institut culturel cri d''Aanischaaukamikw'),
(150434, 117205, 'es', 'name', 'Sociedad Venezolana de OncologĆ­a'),
(150435, 117206, 'id', 'name', 'Universitas Persatuan Islam'),
(150436, 117207, 'no_lang_code', 'name', 'Abbott (Brazil)'),
(150437, 117207, 'pt', 'name', 'Abbott Laboratorios do Brasil Ltda'),
(150438, 117208, 'fr', 'name', 'Agence Nationale de la MƩtƩorologie du Mali'),
(150439, 117209, 'es', 'name', 'Universidad de California en Los Ɓngeles'),
(150440, 117209, 'en', 'name', 'University of California, Los Angeles'),
(150441, 117209, 'fr', 'name', 'UniversitƩ de Californie Ơ Los Angeles'),
(150442, 117210, 'en', 'name', 'International Bureau of Legal Metrology'),
(150443, 117211, 'sq', 'name', 'Spitali Rajonal Memorial, Fier'),
(150444, 117212, 'en', 'name', 'Rathinam College of Arts & Science'),
(150445, 117213, 'en', 'name', 'Heim PƔl National Pediatric Institute'),
(150446, 117213, 'hu', 'name', 'Heim PÔl OrszÔgos GyermekgyógyÔszati Intézet'),
(150447, 117214, 'no_lang_code', 'name', 'Apple (United Kingdom)'),
(150448, 117215, 'no_lang_code', 'name', 'Meta (United Kingdom)'),
(150449, 117216, 'en', 'name', 'Citizens in Power'),
(150450, 117217, 'en', 'name', 'Christchurch Clinical Studies Trust'),
(150451, 117218, 'en', 'name', 'Ernest Cook University'),
(150452, 117219, 'de', 'name', 'Institut für Hochschulforschung'),
(150453, 117220, 'en', 'name', 'Kastamonu Measurement and Evaluation Center'),
(150454, 117220, 'tr', 'name', 'Kastamonu ƖlƧme Değerlendirme Merkezi'),
(150455, 117221, 'en', 'name', 'Rathinam College of Physiotherapy'),
(150456, 117222, 'en', 'name', 'Prime Intellect'),
(150457, 117222, 'no_lang_code', 'name', 'Prime Intellect (United States)'),
(150458, 117223, 'tr', 'name', 'Mi̇lli̇ Eği̇ti̇m Bakanliği'),
(150459, 117224, 'en', 'name', 'Croatian State Archives'),
(150460, 117224, 'hr', 'name', 'Hrvatski državni arhiv'),
(150461, 117225, 'es', 'name', 'Universidad de Cantabria'),
(150462, 117225, 'en', 'name', 'University of Cantabria'),
(150463, 117226, 'en', 'name', 'Ronin Institute'),
(150464, 117227, 'en', 'name', 'Graphwise'),
(150465, 117227, 'no_lang_code', 'name', 'Graphwise (Bulgaria)'),
(150466, 117228, 'en', 'name', 'Alibaba Group'),
(150467, 117228, 'no_lang_code', 'name', 'Alibaba Group (China)'),
(150468, 117228, 'zh', 'name', 'é˜æé‡Œå·“å·“é›†å›¢ęŽ§č‚”ęœ‰é™å…¬åø'),
(150469, 117229, 'es', 'name', 'Universidad Americana de Europa'),
(150470, 117230, 'en', 'name', 'Xinjiang Institute of Technology'),
(150471, 117230, 'zh', 'name', '新疆理巄学院'),
(150472, 117231, 'en', 'name', 'Budapest University of Technology and Economics'),
(150473, 117231, 'hu', 'name', 'Budapesti Műszaki és GazdasÔgtudomÔnyi Egyetem'),
(150474, 117232, 'pt', 'name', 'Faculdade de SaĆŗde de Paulista'),
(150475, 117233, 'en', 'name', 'Painfree'),
(150476, 117233, 'es', 'name', 'Painfree SAS'),
(150477, 117234, 'es', 'name', 'IHCantabria - Instituto de HidrƔulica Ambiental de la Universidad de Cantabria'),
(150478, 117235, 'en', 'name', 'Academy of Fine Arts in Zagreb'),
(150479, 117235, 'hr', 'name', 'Akademija likovnih umjetnosti u Zagrebu'),
(150480, 117236, 'hr', 'name', 'Duhanski institut Zagreb'),
(150481, 117236, 'en', 'name', 'Tobacco Institute Zagreb Inc.'),
(150482, 117237, 'en', 'name', 'Dangote Cement'),
(150483, 117238, 'en', 'name', 'Irish Defence Forces'),
(150484, 117238, 'ga', 'name', 'Ɠglaigh na hƉireann'),
(150485, 117239, 'en', 'name', 'Sudanese Consortium for Surgical Development'),
(150486, 117240, 'tr', 'name', 'İzmir Şehir Hastanesi'),
(150487, 117240, 'en', 'name', 'İzmir City Hospital'),
(150488, 117241, 'en', 'name', 'Integrative Centers for Science and Medicine'),
(150489, 117242, 'fr', 'name', 'UniversitƩ Officielle de Ruwenzori'),
(150490, 117243, 'en', 'name', 'Asian Growth Research Institute'),
(150491, 117243, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚øć‚¢ęˆé•·ē ”ē©¶ę‰€'),
(150492, 117244, 'en', 'name', 'GetĆŗlio Vargas Teaching Hospital'),
(150493, 117244, 'pt', 'name', 'Hospital UniversitÔrio Getúlio Vargas'),
(150494, 117245, 'en', 'name', 'Health Polytechnic Jakarta I'),
(150495, 117245, 'id', 'name', 'Poltekkes Kemenkes Jakarta I'),
(150496, 117246, 'id', 'name', 'Universitas Adiwangsa Jambi'),
(150497, 117247, 'en', 'name', 'Mary Matha Arts and Science College'),
(150498, 117248, 'es', 'name', 'Universidad Estatal mƩdico-farmacƩutica de Zaporizhia'),
(150499, 117248, 'fr', 'name', 'Universite mĆ©dico-pharmaceutique d''Ɖtat de Zaporijia'),
(150500, 117248, 'en', 'name', 'Zaporizhzhia State Medical and Pharmaceutical University'),
(150501, 117248, 'bg', 'name', 'Запорожки Š“ŃŠŃ€Š¶Š°Š²ŠµŠ½ меГицински Šø фармацевтичен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(150502, 117248, 'uk', 'name', 'Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Гержавний меГико-фармацевтичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(150503, 117248, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© زابوروجيا Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų­ŁƒŁˆŁ…ŁŠŲ©'),
(150504, 117248, 'hi', 'name', 'ą¤œą¤¼ą¤¾ą¤Ŗą„‹ą¤°ą„€ą¤œą„ą¤œą„ą¤Æą¤¾ ą¤øą„ą¤Ÿą„‡ą¤Ÿ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(150505, 117249, 'de', 'name', 'Deutsches Zentrum für Schienenverkehrsforschung'),
(150506, 117249, 'en', 'name', 'German Centre for Rail Traffic Research'),
(150507, 117250, 'fr', 'name', 'Biologie du Fruit et Pathologie'),
(150508, 117251, 'en', 'name', 'Dayananda Sagar College of Engineering'),
(150509, 117252, 'es', 'name', 'Administración Nacional OceÔnica y Atmosférica'),
(150510, 117252, 'en', 'name', 'National Oceanic and Atmospheric Administration'),
(150511, 117253, 'en', 'name', 'Canadian Science Centre for Human and Animal Health'),
(150512, 117254, 'no_lang_code', 'name', 'Advanced Scientific Research Projects (Kazakhstan)'),
(150513, 117254, 'en', 'name', 'Advanced Scientific Research Projects'),
(150514, 117255, 'en', 'name', 'Coal and Geothermal Mineral Resources Center'),
(150515, 117255, 'id', 'name', 'Pusat Sumber Daya Mineral Batubara dan Panas Bumi'),
(150516, 117256, 'no_lang_code', 'name', 'Semantic Web Company (Austria)'),
(150517, 117257, 'fr', 'name', 'Centre EugĆØne Marquis'),
(150518, 117258, 'en', 'name', 'Magsaysay College'),
(150519, 117259, 'en', 'name', 'State Institution "Marzieiev Institute for Public Health of the National Academy of Medical Sciences of Ukraine"'),
(150520, 117259, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ¾Š³Š¾ зГоров''я ім. Šž. М. ŠœŠ°Ń€Š·Ń”Ń”Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України"'),
(150521, 117260, 'en', 'name', 'UC Davis Health'),
(150522, 117261, 'en', 'name', 'SPARC Europe'),
(150523, 117261, 'nl', 'name', 'Stichting SPARC Europe'),
(150524, 117262, 'no_lang_code', 'name', 'Extreme Scale Solutions (United States)'),
(150525, 117262, 'en', 'name', 'Extreme Scale Solutions'),
(150526, 117263, 'en', 'name', 'Gosford Hospital'),
(150527, 117264, 'en', 'name', 'Associated Laboratory for Green Chemistry - LAQV'),
(150528, 117264, 'es', 'name', 'LAQV Requimte'),
(150529, 117265, 'en', 'name', 'Kiev Institute of Business and Technology'),
(150530, 117265, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š±Ń–Š·Š½ŠµŃŃƒ та технологій'),
(150531, 117266, 'en', 'name', 'Bornholms Hospital'),
(150532, 117266, 'nl', 'name', 'Bornholms ziekenhuis'),
(150533, 117267, 'en', 'name', 'Phnom Penh Teacher Education College'),
(150534, 117267, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‚įžšįž»įž€įŸ„įžŸįž›įŸ’įž™įžšįž¶įž‡įž’įž¶įž“įžøįž—įŸ’įž“įŸ†įž–įŸįž‰'),
(150535, 117268, 'en', 'name', 'AWH Engineering College'),
(150536, 117269, 'en', 'name', 'Bogodogo University Hospital Center'),
(150537, 117269, 'fr', 'name', 'CHU de Bogodogo'),
(150538, 117270, 'de', 'name', 'Deutsche Zentren der Gesundheitsforschung'),
(150539, 117270, 'en', 'name', 'German Centers for Health Research'),
(150540, 117271, 'de', 'name', 'Hochschule Fresenius'),
(150541, 117272, 'en', 'name', 'Shaheed Benazir Bhutto Women University Peshawar'),
(150542, 117272, 'ur', 'name', 'ؓہید ŲØŪ’Ł†ŲøŪŒŲ± بھٹو ŁˆŪŒŁ…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ پؓاور'),
(150543, 117273, 'no_lang_code', 'name', 'Ontotext (Bulgaria)'),
(150544, 117274, 'en', 'name', 'Academy of Applied Arts in Rijeka'),
(150545, 117274, 'hr', 'name', 'Akademija primijenjenih umjetnosti u Rijeci'),
(150546, 117275, 'en', 'name', 'Seismological Facility for the Advancement of Geoscience'),
(150547, 117276, 'es', 'name', 'Instituto Regional de Investigación y Desarrollo Agroalimentario y Forestal de Castilla-La Mancha'),
(150548, 117277, 'en', 'name', 'Pharmacologie & Transplantation'),
(150549, 117277, 'fr', 'name', 'Pharmacologie et Transplantation'),
(150550, 117278, 'en', 'name', 'EFFECTUS University of Applied Sciences'),
(150551, 117278, 'hr', 'name', 'EFFECTUS veleučiliŔte'),
(150552, 117279, 'fr', 'name', 'France Ciment'),
(150553, 117280, 'en', 'name', 'Division of Earth Sciences'),
(150554, 117281, 'en', 'name', 'Bangladesh University of Textiles'),
(150555, 117281, 'bn', 'name', 'বাংলাদেশ ą¦Ÿą§‡ą¦•ą§ą¦øą¦Ÿą¦¾ą¦‡ą¦² ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(150556, 117282, 'en', 'name', 'Geological Survey of Finland'),
(150557, 117283, 'en', 'name', 'Sarat Centenary College'),
(150558, 117284, 'en', 'name', 'Maibang Degree College'),
(150559, 117285, 'no_lang_code', 'name', 'Meta (Israel)'),
(150560, 117286, 'en', 'name', 'Jiblah University for Medical and Health Sciences'),
(150561, 117287, 'en', 'name', 'Responsible Offshore Science Alliance'),
(150562, 117288, 'en', 'name', 'Ulsan National Institute of Science and Technology'),
(150563, 117288, 'ko', 'name', 'ģšøģ‚°ź³¼ķ•™źø°ģˆ ģ›'),
(150564, 117289, 'id', 'name', 'Universitas Mandiri Bina Prestasi'),
(150565, 117290, 'fr', 'name', 'Bordeaux Sciences Ɖconomiques'),
(150566, 117291, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(150567, 117291, 'fr', 'name', 'Ministère de l''Enseignement supérieur et de la Recherche scientifique'),
(150568, 117291, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(150569, 117292, 'hr', 'name', 'Institut prometa i veza'),
(150570, 117292, 'en', 'name', 'Institute of Transportation and Communications, Zagreb'),
(150571, 117293, 'en', 'name', 'Kundiiev Institute of Occupational Health of the National Academy of Medical Sciences of Ukraine'),
(150572, 117293, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицини праці імені Š®. І. ŠšŃƒŠ½Š“Ń–Ń”Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України»'),
(150573, 117294, 'lt', 'name', 'Vilniaus Gedimino technikos universitetas'),
(150574, 117294, 'en', 'name', 'Vilnius Gediminas Technical University'),
(150575, 117294, 'pl', 'name', 'Wileński Uniwersytet Techniczny im. Giedymina'),
(150576, 117294, 'ru', 'name', 'Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ГеГимина'),
(150577, 117295, 'en', 'name', 'NOAA Library'),
(150578, 117296, 'en', 'name', 'International Organization of Legal Metrology'),
(150579, 117297, 'en', 'name', 'University of Carthage'),
(150580, 117297, 'fr', 'name', 'UniversitƩ de carthage'),
(150581, 117297, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© قرطاج'),
(150582, 117298, 'it', 'name', 'Conservatorio di Musica Santa Cecilia'),
(150583, 117299, 'en', 'name', 'Agrifood Research and Technology Centre of Aragon'),
(150584, 117299, 'es', 'name', 'Centro de Investigación y Tecnología Agroalimentaria de Aragón'),
(150585, 117300, 'uz', 'name', 'O''simliklar genetik resurslari ilmiy-tadqiqot instituti'),
(150586, 117300, 'en', 'name', 'Research Institute of Plant Genetic Resources'),
(150587, 117300, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетических Ń€ŠµŃŃƒŃ€ŃŠ¾Š² растений'),
(150588, 117301, 'fr', 'name', 'Institut Mines-TƩlƩcom Business School'),
(150589, 117302, 'es', 'name', 'Universidad TƩcnica Estatal de Quevedo'),
(150590, 117303, 'en', 'name', 'The Royal Institute of Philosophy'),
(150591, 117304, 'es', 'name', 'Hospital San AgustĆ­n'),
(150592, 117305, 'en', 'name', 'Bozorgmehr University of Qaenat'),
(150593, 117306, 'nl', 'name', 'Conseil International du BĆ¢timent'),
(150594, 117306, 'en', 'name', 'International Council for Research and Innovation in Building and Construction'),
(150595, 117307, 'en', 'name', 'Ramathibodi Hospital'),
(150596, 117307, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø£ąø²ąø”ąø²ąø˜ąø“ąøšąø”ąøµ'),
(150597, 117308, 'en', 'name', 'MARA University of Technology'),
(150598, 117308, 'ms', 'name', 'Universiti Teknologi MARA'),
(150599, 117309, 'en', 'name', 'Shandong Vocational University of Foreign Affairs'),
(150600, 117310, 'it', 'name', 'Azienda Sanitaria Provinciale di Cosenza'),
(150601, 117311, 'en', 'name', 'Institute for Medical Research and Occupational Health'),
(150602, 117312, 'no_lang_code', 'name', 'KIOXIA Corporation (Japan)'),
(150603, 117312, 'en', 'name', 'KIOXIA Corporation'),
(150604, 117312, 'ja', 'name', 'ć‚­ć‚Ŗć‚Æć‚·ć‚¢ę Ŗå¼ä¼šē¤¾'),
(150605, 117313, 'hr', 'name', 'SveučiliŔte u Rijeci'),
(150606, 117313, 'no_lang_code', 'name', 'University of Rijeka'),
(150607, 117314, 'es', 'name', 'Instituto Forestal Latinoamericano'),
(150608, 117315, 'es', 'name', 'Grupo de Investigación en Gobierno, Administración y Políticas Públicas'),
(150609, 117316, 'en', 'name', 'University of Burdwan'),
(150610, 117316, 'bn', 'name', 'ą¦¬ą¦°ą§ą¦§ą¦®ą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(150611, 117317, 'en', 'name', 'East Bay Regional Park District'),
(150612, 117318, 'en', 'name', 'Czech Environmental Information Agency'),
(150613, 117319, 'en', 'name', 'Computer Technology Institute and Press ā€œDIOPHANTUSā€'),
(150614, 117319, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Τεχνολογίας Ī„Ļ€ĪæĪ»ĪæĪ³Ī¹ĻƒĻ„ĻŽĪ½ και Ī•ĪŗĪ“ĻŒĻƒĪµĻ‰Ī½ ā€œĪ”Ī™ĪŸĪ¦Ī‘ĪĪ¤ĪŸĪ£ā€'),
(150615, 117320, 'fr', 'name', 'Centre Hospitalier Universitaire de Tours'),
(150616, 117321, 'en', 'name', 'National Center for Technological Progress'),
(150617, 117321, 'vi', 'name', 'Viện ứng dỄng cĆ“ng nghệ'),
(150618, 117322, 'en', 'name', 'NSF National Geophysical Facility'),
(150619, 117323, 'vi', 'name', 'Bệnh viện Đa khoa Xanh PĆ“n'),
(150620, 117323, 'en', 'name', 'Saint Paul Hospital'),
(150621, 117324, 'en', 'name', 'National Astronomical Research Institute of Thailand'),
(150622, 117325, 'en', 'name', 'New Frontier Advisors LLC'),
(150623, 117325, 'no_lang_code', 'name', 'New Frontier Advisors LLC (United States)'),
(150624, 117326, 'en', 'name', 'General Directorate of Combating Desertification and Erosion'),
(150625, 117326, 'tr', 'name', 'Ƈƶlleşme ve Erozyonla Mücadele Genel Müdürlüğü'),
(150626, 117327, 'en', 'name', 'WeLOOP'),
(150627, 117327, 'no_lang_code', 'name', 'WeLOOP (France)'),
(150628, 117328, 'en', 'name', 'Fraunhofer Institute for Industrial Mathematics'),
(150629, 117328, 'de', 'name', 'Fraunhofer-Institut für Techno- und Wirtschaftsmathematik'),
(150630, 117329, 'en', 'name', 'Rheem Manufacturing'),
(150631, 117329, 'no_lang_code', 'name', 'Rheem Manufacturing (United States)'),
(150632, 117330, 'de', 'name', 'Rheinland-PfƤlzische Technische UniversitƤt Kaiserslautern-Landau'),
(150633, 117331, 'en', 'name', 'Croatian Memorial Documentation Centre of the Homeland War'),
(150634, 117331, 'hr', 'name', 'Hrvatski memorijalno-dokumentacijski centar Domovinskog rata'),
(150635, 117332, 'en', 'name', 'Fresenius University of Applied Sciences Heidelberg'),
(150636, 117332, 'de', 'name', 'Hochschule Fresenius Heidelberg'),
(150637, 117333, 'id', 'name', 'Institut Agama Islam Negeri Kerinci'),
(150638, 117333, 'en', 'name', 'Kerinci State Islamic Institute'),
(150639, 117334, 'en', 'name', 'Sakhalin Botanical Garden'),
(150640, 117334, 'ru', 'name', 'Дахалинский филиал Ботанического саГа-ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° Š”Š’Šž Š ŠŠ'),
(150641, 117335, 'en', 'name', 'Central University of Andhra Pradesh'),
(150642, 117336, 'en', 'name', 'Belgian Health Care Knowledge Centre (KCE)'),
(150643, 117336, 'fr', 'name', 'Centre fƩdƩral d''expertise des soins de santƩ (KCE)'),
(150644, 117336, 'nl', 'name', 'Federaal Kenniscentrum voor de Gezondheidszorg (KCE)'),
(150645, 117336, 'de', 'name', 'Föderale Fachzentrum für Gesundheitspflege (KCE)'),
(150646, 117337, 'id', 'name', 'Perkumpulan PRAKARSA'),
(150647, 117337, 'en', 'name', 'The PRAKARSA'),
(150648, 117338, 'en', 'name', 'Berlin School of Business and Innovation GmbH'),
(150649, 117339, 'es', 'name', 'Instituto Tecnológico de Massachusetts'),
(150650, 117339, 'en', 'name', 'Massachusetts Institute of Technology'),
(150651, 117340, 'es', 'name', 'Hospital Quirónsalud MÔlaga'),
(150652, 117341, 'en', 'name', 'Ministry of Social Development'),
(150653, 117341, 'mi', 'name', 'Te Manatū Whakahiato Ora'),
(150654, 117342, 'en', 'name', 'Brain Health Alliance'),
(150655, 117343, 'en', 'name', 'Kazi Nazrul University'),
(150656, 117343, 'bn', 'name', 'ą¦•ą¦¾ą¦œą§€ নজরুল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(150657, 117344, 'en', 'name', 'Tampa Veterans Research and Education Foundation'),
(150658, 117345, 'es', 'name', 'Fundacion Canguro'),
(150659, 117345, 'en', 'name', 'Kangaroo Foundation'),
(150660, 117346, 'en', 'name', 'Research Bridge Publisher'),
(150661, 117347, 'no_lang_code', 'name', 'Google (Australia)'),
(150662, 117348, 'es', 'name', 'Hospital de Especialidades Carlos Andrade MarĆ­n'),
(150663, 117349, 'en', 'name', 'Federal University of Catalao'),
(150664, 117349, 'pt', 'name', 'Universidade Federal de Catalão'),
(150665, 117350, 'en', 'name', 'Earth and Life University'),
(150666, 117350, 'es', 'name', 'Universidad Tierra y Aire'),
(150667, 117351, 'en', 'name', 'Bethlem Royal Hospital'),
(150668, 117352, 'en', 'name', 'Higher Institute of Information and Communication Technologies'),
(150669, 117352, 'fr', 'name', 'Institut SupƩrieur des Technologies de l''Information et de la Communication'),
(150670, 117353, 'sw', 'name', 'Chuo Kikuu cha Sayansi na Teknolojia Mbeya'),
(150671, 117353, 'en', 'name', 'Mbeya University of Science and Technology'),
(150672, 117354, 'no_lang_code', 'name', 'RIFCON GmbH (Germany)'),
(150673, 117354, 'de', 'name', 'RIFCON GmbH'),
(150674, 117355, 'en', 'name', 'Academy of Applied Studies Polytechnic'),
(150675, 117355, 'sr', 'name', 'Akademija strukovnih studija Politehnika'),
(150676, 117356, 'en', 'name', 'Ahli Hospital'),
(150677, 117357, 'en', 'name', 'Bharathiar University'),
(150678, 117357, 'hi', 'name', 'भरतिआर ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(150679, 117357, 'ta', 'name', 'ą®Ŗą®¾ą®°ą®¤ą®æą®Æą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(150680, 117357, 'ml', 'name', 'ą“­ą“¾ą“°ą“¤ą“æą“Æą“¾ąµ¼ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(150681, 117358, 'en', 'name', 'AcademyGate'),
(150682, 117358, 'no_lang_code', 'name', 'AcademyGate (United States)'),
(150683, 117359, 'en', 'name', 'Institute of Information Science'),
(150684, 117359, 'sl', 'name', 'InŔtitut za informacijske znanosti'),
(150685, 117360, 'en', 'name', 'Agroforestry Research Institute'),
(150686, 117360, 'es', 'name', 'Instituto de Investigaciones Agro-Forestales'),
(150687, 117361, 'en', 'name', 'International Institute of Justice and Police Sciences'),
(150688, 117362, 'en', 'name', 'Assam University'),
(150689, 117362, 'hi', 'name', 'असम ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(150690, 117362, 'bn', 'name', 'আসাম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(150691, 117363, 'en', 'name', 'Woodland Park Zoo'),
(150692, 117364, 'en', 'name', 'P P Savani University'),
(150693, 117365, 'en', 'name', 'Mobility Ion Technologies, S.L (Spain)');
INSERT INTO `ror_settings` VALUES
(150694, 117366, 'fr', 'name', 'Biogéochimie des écosystèmes forestiers'),
(150695, 117367, 'en', 'name', 'Monarch University'),
(150696, 117368, 'en', 'name', 'Ministry of Higher Education, Science, Research and Innovation'),
(150697, 117368, 'th', 'name', 'กระทรวงการอุดดศึกษา ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œ ąø§ąø“ąøˆąø±ąø¢ą¹ąø„ąø°ąø™ąø§ąø±ąø•ąøąø£ąø£ąø”'),
(150698, 117369, 'es', 'name', 'Parque Nacional de la Sierra de Guadarrama'),
(150699, 117369, 'en', 'name', 'Sierra de Guadarrama National Park'),
(150700, 117370, 'en', 'name', 'Donetsk State University of Internal Affairs'),
(150701, 117370, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(150702, 117371, 'es', 'name', 'Universidad del Alba'),
(150703, 117372, 'en', 'name', 'Ecraid Foundation'),
(150704, 117372, 'no_lang_code', 'name', 'Ecraid Foundation (Netherlands)'),
(150705, 117373, 'en', 'name', 'Dr. Enrique Tornu General Hospital'),
(150706, 117373, 'es', 'name', 'Hospital General de Agudos Dr. Enrique TornĆŗ'),
(150707, 117374, 'en', 'name', 'Institute of Accounting and Finance'),
(150708, 117374, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Š±Š»Ń–ŠŗŃƒ і фінансів'),
(150709, 117375, 'en', 'name', 'Institute for Research in Biomedicine of Lleida'),
(150710, 117375, 'es', 'name', 'Instituto de Investigación Biomédica de Lleida'),
(150711, 117376, 'nl', 'name', 'NMi Certin B.V.'),
(150712, 117377, 'en', 'name', 'Heilongjiang Academy of Sciences'),
(150713, 117377, 'zh', 'name', 'é»‘é¾™ę±Ÿēœē§‘å­¦é™¢'),
(150714, 117378, 'en', 'name', 'Hanoi School of Business and Management'),
(150715, 117378, 'id', 'name', 'TrĘ°į»ng Quįŗ£n trị vĆ  Kinh doanh, ĐẔi hį»c Quốc gia HĆ  Nį»™i'),
(150716, 117379, 'en', 'name', 'EURAMET - European Association of National Metrology Institutes'),
(150717, 117380, 'en', 'name', 'Industrial University of Santander'),
(150718, 117380, 'es', 'name', 'Universidad Industrial de Santander'),
(150719, 117381, 'pt', 'name', 'Centro UniversitƔrio Salesiano'),
(150720, 117382, 'en', 'name', 'SaferAI'),
(150721, 117383, 'en', 'name', 'Mahatma Gandhi University'),
(150722, 117383, 'pa', 'name', 'ਮਹਾਤਮਾ ਗਾਂਧੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(150723, 117383, 'ta', 'name', 'ą®®ą®•ą®¾ą®¤ąÆą®®ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(150724, 117383, 'ml', 'name', 'ą“®ą“¹ą“¾ą“¤ąµą“®ą“¾ą“—ą“¾ą“Øąµą“§ą“æ ą“øą“°ąµā€ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(150725, 117384, 'id', 'name', 'Universitas Islam Negeri K.H. Abdurrahman Wahid Pekalongan'),
(150726, 117385, 'en', 'name', 'Hai Phong University'),
(150727, 117385, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Hįŗ£i Phòng'),
(150728, 117386, 'en', 'name', 'European Bioinformatics Institute'),
(150729, 117387, 'en', 'name', 'Croatian Telecom Inc.'),
(150730, 117387, 'hr', 'name', 'Hrvatski Telekom d.d.'),
(150731, 117387, 'no_lang_code', 'name', 'Hrvatski Telekom d.d. (Croatia)'),
(150732, 117388, 'id', 'name', 'Kementerian Energi dan Sumber Daya Mineral'),
(150733, 117388, 'en', 'name', 'Ministry of Energy and Mineral Resources'),
(150734, 117389, 'en', 'name', 'Diagnostic Center Bled Group'),
(150735, 117389, 'sl', 'name', 'Diagnostični center Bled'),
(150736, 117390, 'en', 'name', 'Interdisciplinary Laboratory for Research in Education'),
(150737, 117390, 'fr', 'name', 'Laboratoire interdisciplinaire de recherche en Ʃducation'),
(150738, 117391, 'en', 'name', 'St. Paul''s College, Kalamassery'),
(150739, 117392, 'en', 'name', 'Math2Market GmbH'),
(150740, 117392, 'no_lang_code', 'name', 'Math2Market GmbH (Germany)'),
(150741, 117393, 'en', 'name', 'Zhejiang Provincial Federation for Science Popularization'),
(150742, 117393, 'zh', 'name', 'ęµ™ę±Ÿēœē§‘ę™®č”åˆä¼š'),
(150743, 117394, 'en', 'name', 'University of Music and Performing Arts Vienna'),
(150744, 117394, 'de', 'name', 'Universität für Musik und darstellende Kunst Wien'),
(150745, 117395, 'fr', 'name', 'Analyse des SystĆØmes Biologiques'),
(150746, 117396, 'es', 'name', 'Universidad de California en Davis'),
(150747, 117396, 'en', 'name', 'University of California, Davis'),
(150748, 117396, 'fr', 'name', 'UniversitƩ de Californie Ơ Davis'),
(150749, 117397, 'en', 'name', 'Union of Law Scientists'),
(150750, 117398, 'en', 'name', 'Integrated Marine Biosphere Research'),
(150751, 117399, 'en', 'name', 'University of Sustainability'),
(150752, 117400, 'en', 'name', 'Comptroller and Auditor General of India'),
(150753, 117401, 'en', 'name', 'NOAA Office of Science Support'),
(150754, 117402, 'en', 'name', 'Thiruvalluvar University'),
(150755, 117402, 'ta', 'name', 'ą®¤ą®æą®°ąÆą®µą®³ąÆą®³ąÆą®µą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(150756, 117403, 'en', 'name', 'Francisco Grande CoviƔn Hospital of Eastern Asturias'),
(150757, 117403, 'es', 'name', 'Hospital del Oriente de Asturias Francisco Grande CoviƔn'),
(150758, 117404, 'en', 'name', 'Pacific Centre for Isotopic and Geochemical Research'),
(150759, 117405, 'en', 'name', 'United Medical and Dental College'),
(150760, 117406, 'en', 'name', 'ESOFT Uni'),
(150761, 117407, 'en', 'name', 'Ministry of Science and Technology'),
(150762, 117408, 'es', 'name', 'Universidad de la Costa'),
(150763, 117408, 'en', 'name', 'University of the Coast'),
(150764, 117409, 'en', 'name', 'European Metrology Programme for Innovation and Research'),
(150765, 117410, 'en', 'name', 'State of California'),
(150766, 117411, 'hr', 'name', 'Ministarstvo znanosti, obrazovanja i mladih'),
(150767, 117411, 'en', 'name', 'Ministry of Science, Education and Youth'),
(150768, 117412, 'de', 'name', 'Deutsches Zentrum für Psychische Gesundheit'),
(150769, 117412, 'en', 'name', 'German Center for Mental Health'),
(150770, 117413, 'no_lang_code', 'name', 'Indra (Spain)'),
(150771, 117414, 'en', 'name', 'CTC & Associates LLC'),
(150772, 117414, 'no_lang_code', 'name', 'CTC & Associates LLC (United States)'),
(150773, 117415, 'no_lang_code', 'name', 'iXBlue (France)'),
(150774, 117416, 'es', 'name', 'Junta de Comunidades de Castilla-La Mancha'),
(150775, 117416, 'en', 'name', 'Regional Government of Castile-La Mancha'),
(150776, 117417, 'en', 'name', 'Great Basin National Park'),
(150777, 117417, 'es', 'name', 'Parque nacional de la Gran Cuenca'),
(150778, 117418, 'en', 'name', 'Nepal Pain Care & Research Center'),
(150779, 117419, 'en', 'name', 'Presidency of the Republic of Türkiye, Directorate of State Archives'),
(150780, 117419, 'tr', 'name', 'T.C. Cumhurbaşkanlığı, Devlet Arşivleri Başkanlığı'),
(150781, 117420, 'hr', 'name', 'BICRO BIOCENTAR d.o.o.'),
(150782, 117420, 'en', 'name', 'BICRO BIOCentre Ltd.'),
(150783, 117421, 'en', 'name', 'Catalight'),
(150784, 117422, 'tr', 'name', 'Milli Saraylar Idaresi Başkanlıgı'),
(150785, 117423, 'en', 'name', 'Institute of Environmental Biotechnology and Health'),
(150786, 117423, 'es', 'name', 'Instituto de BiotecnologĆ­a Ambiental y Salud'),
(150787, 117424, 'en', 'name', 'Tribhuvan University Sanothimi Campus'),
(150788, 117425, 'en', 'name', 'Hangzhou Yushu Technology Co., Ltd.'),
(150789, 117425, 'no_lang_code', 'name', 'Unitree (China)'),
(150790, 117425, 'zh', 'name', 'ę­å·žå®‡ę ‘ē§‘ęŠ€ęœ‰é™å…¬åø'),
(150791, 117426, 'en', 'name', 'University of British Columbia Hospital'),
(150792, 117427, 'en', 'name', 'Ferenc Rakoczi II Transcarpathian Hungarian University'),
(150793, 117427, 'hu', 'name', 'II. RÔkóczi Ferenc KÔrpÔtaljai Magyar Egyetem'),
(150794, 117427, 'uk', 'name', 'Š—Š°ŠŗŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ ŃƒŠ³Š¾Ń€ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Ференца Ракоці ІІ'),
(150795, 117428, 'en', 'name', 'Government of Thailand'),
(150796, 117429, 'en', 'name', 'National University of RĆ­o Cuarto'),
(150797, 117429, 'es', 'name', 'Universidad Nacional de RĆ­o Cuarto'),
(150798, 117430, 'en', 'name', 'Academy of Dramatic Art in Zagreb'),
(150799, 117430, 'hr', 'name', 'Akademija dramske umjetnosti'),
(150800, 117431, 'en', 'name', 'Southeast College'),
(150801, 117432, 'nl', 'name', 'Odisee dƩ co-hogeschool'),
(150802, 117432, 'en', 'name', 'Odisee, University of Applied Sciences'),
(150803, 117433, 'no_lang_code', 'name', 'AG Editor (Uruguay)'),
(150804, 117433, 'en', 'name', 'AG Editor'),
(150805, 117434, 'fr', 'name', 'Mila - Institut quĆ©bĆ©cois d’intelligence artificielle'),
(150806, 117434, 'en', 'name', 'Mila - Quebec Artificial Intelligence Institute'),
(150807, 117435, 'en', 'name', 'Saic College of Medical Science and Technology'),
(150808, 117436, 'en', 'name', 'Leicestershire County Council'),
(150809, 117437, 'en', 'name', 'American University of Beirut'),
(150810, 117437, 'fr', 'name', 'UniversitƩ amƩricaine de beyrouth'),
(150811, 117437, 'hy', 'name', 'Ō²Õ„ÕµÖ€ÕøÖ‚Õ©Õ« Õ”Õ“Õ„Ö€Õ«ÕÆÕµÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(150812, 117437, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…ŁŠŲ±ŁƒŁŠŲ© في بيروت'),
(150813, 117438, 'en', 'name', 'National Defence University of Ukraine'),
(150814, 117439, 'en', 'name', 'American Diabetes Association'),
(150815, 117440, 'en', 'name', 'MIT Computer Science and Artificial Intelligence Laboratory'),
(150816, 117441, 'fr', 'name', 'Acides nuclƩiques: RƩgulations naturelles et artificielles'),
(150817, 117442, 'en', 'name', 'Rathinam Technical Campus'),
(150818, 117443, 'pt', 'name', 'Faculdade de Direito de SĆ£o Bernardo do Campo'),
(150819, 117443, 'en', 'name', 'SĆ£o Bernardo do Campo School of Law'),
(150820, 117444, 'en', 'name', 'Nasarawa State University'),
(150821, 117445, 'en', 'name', 'Sacred Heart College (Autonomous)'),
(150822, 117445, 'ta', 'name', 'தூய ą®ØąÆ†ą®žąÆą®šą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ (ą®¤ą®æą®°ąÆą®ŖąÆą®Ŗą®¤ąÆą®¤ąÆ‚ą®°ąÆ)'),
(150823, 117446, 'en', 'name', 'Western Digital'),
(150824, 117446, 'no_lang_code', 'name', 'Western Digital (United States)'),
(150825, 117447, 'en', 'name', 'International Collaboration On Repair Discoveries'),
(150826, 117448, 'en', 'name', 'Children''s City Clinical Hospital No. 9'),
(150827, 117448, 'ru', 'name', 'Š”ŠµŃ‚ŃŠŗŠ°Ń Š³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 9'),
(150828, 117449, 'en', 'name', 'Rathinam Group of Institutions'),
(150829, 117450, 'es', 'name', 'Instituto de Investigación en Producción Animal'),
(150830, 117451, 'en', 'name', 'UN Environment Programme World Conservation Monitoring Centre'),
(150831, 117452, 'en', 'name', 'Robotics and AI Institute'),
(150832, 117453, 'en', 'name', 'Baidu'),
(150833, 117453, 'no_lang_code', 'name', 'Baidu (China)'),
(150834, 117453, 'zh', 'name', '百度'),
(150835, 117454, 'en', 'name', 'UC Davis Children''s Hospital'),
(150836, 117455, 'es', 'name', 'Instituto Peruano de Estudios Arqueológicos'),
(150837, 117455, 'en', 'name', 'Peruvian Institute of Archaeological Studies'),
(150838, 117456, 'en', 'name', 'Hunan Institute of Metrology and Test'),
(150839, 117456, 'zh', 'name', 'ę¹–å—ēœč®”é‡ę£€ęµ‹ē ”ē©¶é™¢'),
(150840, 117457, 'hr', 'name', 'Filozofsko-teoloŔki institut Družbe Isusove'),
(150841, 117457, 'en', 'name', 'Philosophical Theological Institute of the Society of Jesus'),
(150842, 117458, 'fr', 'name', 'Laboratoire en Innovation, Technologies, Economie et Management'),
(150843, 117459, 'en', 'name', 'Apple'),
(150844, 117459, 'no_lang_code', 'name', 'Apple (United States)'),
(150845, 117460, 'en', 'name', 'Northern University'),
(150846, 117460, 'ru', 'name', 'Деверный Университет'),
(150847, 117460, 'hy', 'name', 'Õ€ÕµÕøÖ‚Õ½Õ«Õ½Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(150848, 117461, 'en', 'name', 'Beijing Polytechnic University'),
(150849, 117462, 'en', 'name', 'ISURA'),
(150850, 117463, 'tr', 'name', 'Gülhane Askerî Tıp Akademisi'),
(150851, 117464, 'es', 'name', 'ISAE Universidad'),
(150852, 117464, 'en', 'name', 'ISAE University'),
(150853, 117465, 'en', 'name', 'Economic Innovation Group'),
(150854, 117466, 'en', 'name', 'University of California Davis Medical Center'),
(150855, 117467, 'fr', 'name', 'Institut national supƩrieur de formation et de recherche pour l''Ʃducation inclusive'),
(150856, 117468, 'en', 'name', 'Gene-Environnement Interactions in Cardio-Vascular Physiopathology'),
(150857, 117468, 'fr', 'name', 'Interactions GĆØne-Environnement en Physiopathologie Cardio-Vasculaire'),
(150858, 117469, 'hr', 'name', 'Bc Institut za oplemenjivanje i proizvodnju bilja d.d.'),
(150859, 117469, 'en', 'name', 'Bc Institute for breeding and seed production of field crops Zagreb'),
(150860, 117470, 'fr', 'name', 'Conseil rƩgional de Bretagne'),
(150861, 117470, 'en', 'name', 'Regional Council of Brittany'),
(150862, 117471, 'en', 'name', 'North Carolina Institute for Climate Studies'),
(150863, 117472, 'en', 'name', 'Bihar University of Health Sciences'),
(150864, 117473, 'en', 'name', 'Institute of Archaeology and Heritage Studies'),
(150865, 117474, 'en', 'name', 'Shanxi Agricultural University'),
(150866, 117474, 'zh', 'name', 'å±±č„æå†œäøšå¤§å­¦'),
(150867, 117475, 'en', 'name', 'Ebenezer Theological College'),
(150868, 117475, 'id', 'name', 'Sekolah Tinggi Theologi Ebenhaezer'),
(150869, 117476, 'en', 'name', 'InfoDom LLC'),
(150870, 117476, 'hr', 'name', 'InfoDom d.o.o.'),
(150871, 117476, 'no_lang_code', 'name', 'InfoDom d.o.o. (Croatia)'),
(150872, 117477, 'en', 'name', 'Vinh University of Technology Education'),
(150873, 117478, 'en', 'name', 'A.O. Hospital'),
(150874, 117479, 'en', 'name', 'FLOWERS: FLOW in Exploration, leaRning, and diScovery'),
(150875, 117479, 'fr', 'name', 'FLOWERS: Flow: exploration, apprentissage et dƩcouverte dirigƩs par la curiositƩ'),
(150876, 117480, 'fr', 'name', 'Service de Recherche en MatƩriaux et procƩdƩs AvancƩs'),
(150877, 117481, 'en', 'name', 'Bitergia (Spain)'),
(150878, 117482, 'cy', 'name', 'Prifysgol Buckingham'),
(150879, 117482, 'en', 'name', 'University of Buckingham'),
(150880, 117483, 'en', 'name', 'Huazhong University of Science and Technology'),
(150881, 117483, 'zh', 'name', 'åŽäø­ē§‘ęŠ€å¤§å­¦'),
(150882, 117484, 'es', 'name', 'Hospital Dr. Exequiel GonzƔlez CortƩs'),
(150883, 117485, 'es', 'name', 'Centro de Estudios Parasitológicos y de Vectores'),
(150884, 117486, 'id', 'name', 'STIT Darul Hijrah Martapura'),
(150885, 117487, 'en', 'name', 'Massachusetts Academy of Math and Science at WPI'),
(150886, 117488, 'fr', 'name', 'PLATON: Quantification des Incertitudes en calcul scientifique pour l’ingĆ©nierie'),
(150887, 117488, 'en', 'name', 'PLATON: Uncertainty Quantification in Scientific Computing and Engineering'),
(150888, 117489, 'fr', 'name', 'STARS: Reconnaissance d''ActivitƩs Spatio-Temporelles pour les interactions Sociales'),
(150889, 117489, 'en', 'name', 'STARS: Spatio-Temporal Activity Recognition of Social interactions'),
(150890, 117490, 'en', 'name', 'National Drug and Alcohol Research Centre'),
(150891, 117491, 'en', 'name', 'King Abdulaziz City for Science and Technology'),
(150892, 117491, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ² Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(150893, 117492, 'fr', 'name', 'Centre Inria de l''Institut Polytechnique de Paris'),
(150894, 117492, 'en', 'name', 'Inria Saclay Centre at Institut Polytechnique de Paris'),
(150895, 117493, 'en', 'name', 'MODAL: MOdel for Data Analysis and Learning'),
(150896, 117494, 'en', 'name', 'Adam Mickiewicz University in Poznań'),
(150897, 117494, 'pl', 'name', 'Uniwersytet im. Adama Mickiewicza w Poznaniu'),
(150898, 117495, 'fr', 'name', 'Niche, Nutrition, Cancer et mƩtabolisme oxydatif'),
(150899, 117496, 'en', 'name', 'Luxembourg Health & Sport Sciences Research Institute'),
(150900, 117497, 'en', 'name', 'The Pearl International Hospital'),
(150901, 117497, 'ar', 'name', 'مستؓفى اللؤلؤة Ų§Ł„ŲÆŁˆŁ„ŁŠ'),
(150902, 117498, 'en', 'name', 'CARAMBA: Cryptology, arithmetic : algebraic methods for better algorithms'),
(150903, 117499, 'en', 'name', 'BONUS: Big Optimization aNd Ultra-Scale Computing'),
(150904, 117499, 'fr', 'name', 'BONUS: Optimisation de grande taille et calcul large Ʃchelle'),
(150905, 117500, 'en', 'name', 'National Pedagogic University'),
(150906, 117500, 'es', 'name', 'Universidad Pedagógica Nacional'),
(150907, 117501, 'fr', 'name', 'MALICE: Apprentissage automatique avec intƩgration des connaissances en ingƩnierie de surface : thƩorie et algorithmes'),
(150908, 117501, 'en', 'name', 'MALICE: MAchine Learning with Integration of surfaCe Engineering knowledge: Theory and Algorithms'),
(150909, 117502, 'en', 'name', 'Koitaleel Samoei University College'),
(150910, 117503, 'id', 'name', 'Politeknik Banjarnegara'),
(150911, 117504, 'en', 'name', 'Nowocert'),
(150912, 117505, 'en', 'name', 'Indian Space Research Organisation'),
(150913, 117505, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ अंतराळ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(150914, 117505, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤…ą¤‚ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø संगठन'),
(150915, 117505, 'ne', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤…ą¤Øą„ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø संगठन'),
(150916, 117505, 'bn', 'name', 'ভারতীয় মহাকাশ গবেষণা ą¦øą¦‚ą¦øą§ą¦„ą¦¾'),
(150917, 117505, 'pa', 'name', 'ਇਸਰੋ'),
(150918, 117505, 'gu', 'name', 'ઇસરો'),
(150919, 117505, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µą®æą®£ąÆą®µąÆ†ą®³ą®æ ą®†ą®ÆąÆą®µąÆ ą®®ąÆˆą®Æą®®ąÆ'),
(150920, 117505, 'te', 'name', 'భారతీయ ą°…ą°‚ą°¤ą°°ą°æą°•ą±ą°· పరిశోధనా ą°øą°‚ą°øą±ą°„'),
(150921, 117505, 'kn', 'name', 'ಭಾರತೀಯ ą²¬ą²¾ą²¹ą³ą²Æą²¾ą²•ą²¾ą²¶ ಸಂಶೋಧನೆ ą²øą²‚ą²øą³ą²„ą³†'),
(150922, 117505, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“øąµą“Ŗąµ‡ą“øąµ ą“±ą“æą“øąµ¼ą“šąµą“šąµ ą““ąµ¼ą“—ą“Øąµˆą“øąµ‡ą“·ąµ»'),
(150923, 117506, 'en', 'name', 'Hashir International Specialist Clinics & Research Institute for Misophonia, Tinnitus and Hyperacusis'),
(150924, 117506, 'no_lang_code', 'name', 'Hashir International Specialist Clinics & Research Institute for Misophonia, Tinnitus and Hyperacusis (United Kingdom)'),
(150925, 117507, 'en', 'name', 'Intact Financial Corporation'),
(150926, 117508, 'en', 'name', 'Kızılcahamam State Hospital'),
(150927, 117509, 'en', 'name', 'Bangladesh Institute of Research and Training on Applied Nutrition'),
(150928, 117509, 'bn', 'name', 'বাংলাদেশ ফলিত ą¦Ŗą§ą¦·ą§ą¦Ÿą¦æ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(150929, 117510, 'en', 'name', 'RESIST: Resilience and elasticity for security and scalability of dynamic networked systems'),
(150930, 117510, 'fr', 'name', 'RESIST: Résilience et élasticité pour la mise à l''échelle et la sécurité des systèmes en réseaux dynamiques'),
(150931, 117511, 'id', 'name', 'Politeknik Sinarmas Berau Coal'),
(150932, 117512, 'en', 'name', 'Minneapolis Public Schools'),
(150933, 117513, 'ro', 'name', 'Asociatia Biologic'),
(150934, 117513, 'en', 'name', 'Non-Governmental Research Organization Biologic'),
(150935, 117514, 'fr', 'name', 'Ɖcologie Marine Tropicale des OcĆ©ans Pacifique et Indien'),
(150936, 117515, 'fr', 'name', 'OLAS: Fondements opérationnels, logiques et algébriques des systèmes logiciels'),
(150937, 117515, 'en', 'name', 'OLAS: Operational, Logical, and Algebraic foundations for Software systems'),
(150938, 117516, 'fr', 'name', 'Laboratoire d''Etudes Interdisciplinaires sur le RƩel et les Imaginaires Sociaux'),
(150939, 117517, 'en', 'name', 'Open Door Veterinary Collective'),
(150940, 117518, 'en', 'name', 'Institute of Musicology SASA'),
(150941, 117518, 'sr', 'name', 'MuzikoloŔki institut Srpske akademije nauka i umetnosti'),
(150942, 117519, 'en', 'name', 'Hensard University'),
(150943, 117520, 'fr', 'name', 'DATASHAPE: Comprendre la forme des donnƩes'),
(150944, 117520, 'en', 'name', 'DATASHAPE: Understanding the shape of data'),
(150945, 117521, 'en', 'name', 'Chicago Academy of Sciences'),
(150946, 117522, 'en', 'name', 'Sudanese Medical Research Association (SMRA)'),
(150947, 117522, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų³ŁˆŲÆŲ§Ł†ŁŠŲ© للبحث Ų§Ł„Ų·ŲØŁŠ'),
(150948, 117523, 'en', 'name', 'MCTAO: Mathematics for Control, Transport and Applications'),
(150949, 117523, 'fr', 'name', 'MCTAO: MathƩmatiques pour le ContrƓle, le Transport et leurs Applications'),
(150950, 117524, 'fr', 'name', 'Service d''Ɖtude des RĆ©acteurs et de MathĆ©matiques AppliquĆ©es'),
(150951, 117525, 'en', 'name', 'United States Department of Agriculture Climate Hubs'),
(150952, 117526, 'en', 'name', 'Asia Water Council'),
(150953, 117527, 'en', 'name', 'Bogomolets National Medical University'),
(150954, 117527, 'pl', 'name', 'Narodowy Medyczny Uniwersytet im. O.Bohomolca'),
(150955, 117527, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. А. Š‘Š¾Š³Š¾Š¼Š¾Š»ŃŒŃ†Š°'),
(150956, 117527, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠžŠ»ŠµŠŗŃŠ°Š½Š“Ń€Š° Š‘Š¾Š³Š¾Š¼Š¾Š»ŃŒŃ†Ń'),
(150957, 117528, 'fr', 'name', 'Etudes montpelliƩraines du monde anglophone'),
(150958, 117529, 'en', 'name', 'EIILM University'),
(150959, 117529, 'hi', 'name', 'ई.आइ.आइ.ą¤ą¤².ą¤ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(150960, 117530, 'pl', 'name', 'Sieć Badawcza Łukasiewicz'),
(150961, 117530, 'en', 'name', 'Łukasiewicz Research Network'),
(150962, 117531, 'en', 'name', 'Raiganj University'),
(150963, 117532, 'en', 'name', 'BSCS Science Learning'),
(150964, 117533, 'de', 'name', 'Bundesministerium für Landwirtschaft, Ernährung und Heimat'),
(150965, 117533, 'en', 'name', 'Federal Ministry of Agriculture, Food and Regional Identity'),
(150966, 117534, 'fr', 'name', 'Ecole de Commerce et de Management Ć  Paris'),
(150967, 117535, 'en', 'name', 'Kangdong Sacred Heart Hospital'),
(150968, 117535, 'ko', 'name', 'ź°•ė™ģ„±ģ‹¬ė³‘ģ›'),
(150969, 117536, 'en', 'name', 'LINKMEDIA: Creating and exploiting explicit links between multimedia fragments'),
(150970, 117537, 'en', 'name', 'Dakshin Foundation'),
(150971, 117538, 'en', 'name', 'Eastern Institute For Integrated Learning In Management - Kolkata'),
(150972, 117539, 'fr', 'name', 'Maison des sciences humaines'),
(150973, 117540, 'en', 'name', 'T.K.M Institute of Technology'),
(150974, 117541, 'en', 'name', 'Mathari National Teaching and Referral Hospital'),
(150975, 117542, 'fr', 'name', 'STORM: Optimisation statique, mƩthodes d''exƩcution'),
(150976, 117542, 'en', 'name', 'STORM: STatic Optimizations, Runtime Methods'),
(150977, 117543, 'en', 'name', 'Gandaki University'),
(150978, 117543, 'ne', 'name', 'ą¤—ą¤£ą„ą¤”ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(150979, 117544, 'fr', 'name', 'Morphogénèse et antigénicité du VIH et des virus des hépatites et émergents'),
(150980, 117545, 'en', 'name', 'Tajik National Conservatory'),
(150981, 117545, 'tg', 'name', 'ŠšŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃŠø миллии Тоҷикистон ба номи Талабхӯҷа Датторов'),
(150982, 117546, 'en', 'name', 'BOOST: Bio-informed mOnitoring & Optimization for enhanced Sport & healTh'),
(150983, 117546, 'fr', 'name', 'BOOST: Surveillance et Optimisation bio-informƩes pour amƩliorer le Sport et la SantƩ'),
(150984, 117547, 'en', 'name', 'Digital Research Infrastructure for Language Technologies, Arts and Humanities'),
(150985, 117547, 'cs', 'name', 'DigitĆ”lnĆ­ výzkumnĆ” infrastruktura pro jazykovĆ© technologie, uměnĆ­ a humanitnĆ­ vědy'),
(150986, 117548, 'en', 'name', 'GAMMAO: Adaptive Mesh Generation and Advanced Numerical Methods'),
(150987, 117548, 'fr', 'name', 'GAMMAO: GƩnƩration Adaptative de Maillage et MƩthodes numƩriques AvancƩes'),
(150988, 117549, 'en', 'name', 'CHROMA: Cooperative and Human-aware Robot Navigation in Dynamic Environments'),
(150989, 117549, 'fr', 'name', 'CHROMA: Robots coopƩratifs et adaptƩs Ơ la prƩsence humaine en environnements'),
(150990, 117550, 'en', 'name', 'MetaMeta Research'),
(150991, 117551, 'fr', 'name', 'Laboratoire de Recherches Juridique & Ɖconomique'),
(150992, 117552, 'en', 'name', 'Avantyx LLC (United States)'),
(150993, 117553, 'en', 'name', 'University of Calcutta'),
(150994, 117553, 'fr', 'name', 'UniversitƩ de calcutta'),
(150995, 117553, 'hi', 'name', 'ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(150996, 117553, 'bn', 'name', 'কলকাতা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(150997, 117553, 'pa', 'name', 'ਕੋਲਕਾਤਾ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(150998, 117553, 'ta', 'name', 'ą®•ąÆŠą®²ąÆą®•ą®¤ąÆą®¤ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(150999, 117553, 'kn', 'name', 'ą²•ą²²ą³ą²•ą²¤ą³ą²¤ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(151000, 117553, 'ml', 'name', 'ą“•ąµŠąµ½ą“•ąµą“•ą“¤ąµą“¤ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(151001, 117554, 'id', 'name', 'STT Internasional Harvest Tangerang'),
(151002, 117555, 'fr', 'name', 'Institut GƩnƩtique, Reproduction et DƩveloppement'),
(151003, 117556, 'fr', 'name', 'Hospices Civils de Lyon'),
(151004, 117557, 'en', 'name', 'Accelerated Muscle Biotechnologies (United States)'),
(151005, 117558, 'en', 'name', 'Digital Surf'),
(151006, 117559, 'fr', 'name', 'Institut de Radiobiologie Cellulaire et MolƩculaire'),
(151007, 117560, 'en', 'name', 'Belgrade Center for Digital Humanities'),
(151008, 117560, 'sr', 'name', 'Centar za digitalne humanističke nauke'),
(151009, 117561, 'fr', 'name', 'Service d''Etude des Prions et des Infections Atypiques'),
(151010, 117562, 'fr', 'name', 'Centre Inria de Saclay'),
(151011, 117562, 'en', 'name', 'Inria Saclay Centre'),
(151012, 117563, 'cy', 'name', 'Prifysgol Llundain'),
(151013, 117563, 'en', 'name', 'University of London'),
(151014, 117564, 'fr', 'name', 'Institut National SupƩrieur des Sciences et Techniques d''AbƩchƩ'),
(151015, 117565, 'id', 'name', 'Sekolah Tinggi Agama Islam Muhammadiyah Tulungagung'),
(151016, 117566, 'sr', 'name', 'Institut za pedagoŔka istraživanja'),
(151017, 117566, 'en', 'name', 'Institute for Educational Research'),
(151018, 117567, 'en', 'name', 'LIO'),
(151019, 117568, 'es', 'name', 'Hospital ClĆ­nica San AgustĆ­n'),
(151020, 117569, 'fr', 'name', 'Centre Inria de Paris'),
(151021, 117569, 'en', 'name', 'Inria Paris Centre'),
(151022, 117570, 'ro', 'name', 'Centrul Național de Expertize Judiciare'),
(151023, 117571, 'fr', 'name', 'Institut de Biologie IntƩgrative de la Cellule'),
(151024, 117571, 'en', 'name', 'Institute of Integrative Biology of the Cell'),
(151025, 117572, 'id', 'name', 'Politeknik Perkapalan Negeri Surabaya'),
(151026, 117572, 'en', 'name', 'Surabaya Shipbuilding State Polytechnic'),
(151027, 117573, 'de', 'name', 'Hochschule für angewandte Wissenschaft St. Pölten'),
(151028, 117573, 'en', 'name', 'University of Applied Sciences St Pƶlten'),
(151029, 117574, 'fr', 'name', 'Psychologie des âges de la vie et adaptation'),
(151030, 117574, 'en', 'name', 'Psychology of the Various Stages of Life and Adaptation'),
(151031, 117575, 'de', 'name', 'Kompetenzzentrum Obstbau Bodensee'),
(151032, 117576, 'es', 'name', 'Universidad TƩcnica "Luis Vargas Torres"'),
(151033, 117577, 'fr', 'name', 'CALISTO: Approches stochastiques pour les Ʃcoulements complexes et l''environnement'),
(151034, 117577, 'en', 'name', 'CALISTO: Stochastic Approaches for Complex Flows and Environment'),
(151035, 117578, 'en', 'name', 'MINGUS: MultI-scale Numerical Geometric Schemes'),
(151036, 117578, 'fr', 'name', 'MINGUS: SchƩmas numƩriques gƩomƩtriques multi-Ʃchelles'),
(151037, 117579, 'en', 'name', 'Institute of Horticulture (LatHort)'),
(151038, 117580, 'en', 'name', 'Translational and Applicative Neuroimaging Research Unit'),
(151039, 117580, 'fr', 'name', 'UnitƩ de recherche en neuroimagerie applicative clinique et translationnelle'),
(151040, 117581, 'en', 'name', 'Government of Victoria'),
(151041, 117582, 'id', 'name', 'Institut Teknologi dan Bisnis Muhammadiyah Polewali Mandar'),
(151042, 117582, 'en', 'name', 'Muhammadiyah Polewali Mandar Institute of Technology and Business'),
(151043, 117583, 'en', 'name', 'University of California Natural Reserve System'),
(151044, 117584, 'de', 'name', 'Bundesprogramm Ɩkologischer Landbau'),
(151045, 117585, 'id', 'name', 'Universitas Teknologi Digital Indonesia'),
(151046, 117586, 'fr', 'name', 'Laboratoire de MƩtƩorologie Physique'),
(151047, 117587, 'en', 'name', 'MONC: Mathematical modeling for Oncology'),
(151048, 117587, 'fr', 'name', 'MONC: ModƩlisation MathƩmatique pour l''Oncologie'),
(151049, 117588, 'en', 'name', 'Measurement Incorporated (United States)'),
(151050, 117589, 'en', 'name', 'Maharashtra National Law University Mumbai'),
(151051, 117590, 'en', 'name', 'Botswana University of Agriculture and Natural Resources'),
(151052, 117591, 'en', 'name', 'EDGE: Extended formulations and Decomposition for Generic optimization problems'),
(151053, 117591, 'fr', 'name', 'EDGE: Formulations étendues et méthodes de décomposition pour des problèmes génériques d''optimisation'),
(151054, 117592, 'en', 'name', 'Manouba University'),
(151055, 117592, 'fr', 'name', 'UniversitƩ de la manouba'),
(151056, 117592, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ł†ŁˆŲØŲ©'),
(151057, 117593, 'en', 'name', 'University of West Bohemia in Pilsen'),
(151058, 117593, 'cs', 'name', 'ZĆ”padočeskĆ” univerzita v Plzni'),
(151059, 117594, 'fr', 'name', 'TROPICAL: MƩthodes tropicales: structures, algorithmes et interactions'),
(151060, 117594, 'en', 'name', 'TROPICAL: Tropical methods: structures, algorithms and interactions'),
(151061, 117595, 'en', 'name', 'Sankalchand Patel University'),
(151062, 117596, 'en', 'name', 'East West Medical College Hospital'),
(151063, 117597, 'fr', 'name', 'PASTA: Processus AlƩatoires Spatio-Temporels et Applications'),
(151064, 117597, 'en', 'name', 'PASTA: Space-time random processes and applications'),
(151065, 117598, 'en', 'name', 'Institute of History Belgrade'),
(151066, 117598, 'sr', 'name', 'Istorijski institut Beograd'),
(151067, 117599, 'fr', 'name', 'GƩnomique MƩtabolique du Genoscope'),
(151068, 117600, 'en', 'name', 'ODYSSEY: Ocean DYnamicS obSErvation analYsis'),
(151069, 117600, 'fr', 'name', 'ODYSSEY: OcƩan Dynamique Observations Analyse'),
(151070, 117601, 'de', 'name', 'FiGD Akademie GmbH'),
(151071, 117602, 'en', 'name', 'British University'),
(151072, 117603, 'en', 'name', 'Shri Jagdishprasad Jhabarmal Tibrewala University'),
(151073, 117603, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤œą¤—ą¤¦ą„€ą¤¶ą¤Ŗą„ą¤°ą¤øą¤¾ą¤¦ ą¤ą¤¾ą¤¬ą¤°ą¤®ą¤² ą¤Ÿą¤æą¤¬ą„œą„‡ą¤µą¤¾ą¤²ą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(151074, 117604, 'fr', 'name', 'HEPHAISTOS: HExapode, PHysiologie, AssISTance et Objets de Service'),
(151075, 117604, 'en', 'name', 'HEPHAISTOS: HExapode, PHysiology, AssISTance and RobOtics'),
(151076, 117605, 'en', 'name', 'AYANA: AI and Remote Sensing on board for the New Space'),
(151077, 117605, 'fr', 'name', 'AYANA: TƩlƩdƩtection et IA embarquƩs pour le "New Space"'),
(151078, 117606, 'fr', 'name', 'Centre Tourangeau d’Histoire et d’Études des Sources'),
(151079, 117607, 'pt', 'name', 'Universidade de Coimbra'),
(151080, 117607, 'en', 'name', 'University of Coimbra'),
(151081, 117608, 'en', 'name', 'College of Economics Business Management Indonesia'),
(151082, 117608, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Manajemen Bisnis Indonesia'),
(151083, 117609, 'en', 'name', 'CAPSID: Computational Algorithms for Protein Structures and Interactions'),
(151084, 117610, 'fr', 'name', 'Service Cellules Souches et Radiation'),
(151085, 117611, 'en', 'name', 'IDEFIX: Inversion of Differential Equations For Imaging and physiX'),
(151086, 117611, 'fr', 'name', 'IDEFIX: Solution d''Equations Differentielles pour l''Imagerie et la physique'),
(151087, 117612, 'en', 'name', 'Nigerian University of Technology and Management'),
(151088, 117613, 'id', 'name', 'Akademi Maritim Suaka Bahari'),
(151089, 117614, 'en', 'name', 'FAIRPLAY: Coopetitive AI: Fairness, Privacy, Incentives'),
(151090, 117614, 'fr', 'name', 'FAIRPLAY: IA coopƩrative : ƩquitƩ, vie privƩe, incitations'),
(151091, 117615, 'no_lang_code', 'name', 'AstraZeneca (United Kingdom)'),
(151092, 117616, 'en', 'name', 'University of British Columbia'),
(151093, 117616, 'fr', 'name', 'UniversitƩ de la colombie-britannique'),
(151094, 117617, 'fr', 'name', 'DEDUCTEAM: Deduction modulo, interopƩrabilitƩ et dƩmonstration automatique'),
(151095, 117618, 'en', 'name', 'Mother Theresa Institute Of Engineering And Technology'),
(151096, 117619, 'fr', 'name', 'Recherches sur les Suds et les Orients'),
(151097, 117620, 'en', 'name', 'Technological University of Nuevo Laredo'),
(151098, 117620, 'es', 'name', 'Universidad Tecnológica de Nuevo Laredo'),
(151099, 117621, 'fr', 'name', 'Clermont Recherche Management'),
(151100, 117621, 'en', 'name', 'Clermont Research Management'),
(151101, 117622, 'fr', 'name', 'LACODAM: Fouille de donnƩes collaborative Ơ grande Ʃchelle'),
(151102, 117622, 'en', 'name', 'LACODAM: Large scale Collaborative Data Mining'),
(151103, 117623, 'fr', 'name', 'MULTISPEECH: La parole multimodale en interaction'),
(151104, 117623, 'en', 'name', 'MULTISPEECH: Multimodal Speech in Interaction'),
(151105, 117624, 'en', 'name', 'Private Scientific Institution "Scientific and Research University of Medical and Pharmaceutical Law"'),
(151106, 117624, 'uk', 'name', 'ŠŸŃ€ŠøŠ²Š°Ń‚Š½Š° наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ меГичного та фармацевтичного права»'),
(151107, 117625, 'en', 'name', 'ViGOR Rehabilitation Hospital'),
(151108, 117625, 'no', 'name', 'ViGƘR Rehabiliteringssykehus'),
(151109, 117626, 'en', 'name', 'Gender Equity Policy Institute'),
(151110, 117627, 'en', 'name', 'ISM University of Management and Economics'),
(151111, 117627, 'lt', 'name', 'ISM Vadybos ir ekonomikos universitetas'),
(151112, 117628, 'fr', 'name', 'Département d''Ingénierie des Systèmes'),
(151113, 117628, 'en', 'name', 'The Systems Engineering Division'),
(151114, 117629, 'en', 'name', 'LifeLong Medical Care'),
(151115, 117630, 'en', 'name', 'MOCQUA: Designing the Future of Computational Models'),
(151116, 117630, 'fr', 'name', 'MOCQUA: Modèles de calcul émergents'),
(151117, 117631, 'en', 'name', 'Augustine University, Ilara'),
(151118, 117632, 'fr', 'name', 'Centre de Recherches Interdisciplinaires en Sciences humaines et Sociales de Montpellier'),
(151119, 117633, 'en', 'name', 'Geological Institute of Ethiopia'),
(151120, 117634, 'en', 'name', 'Mariners Polytechnic Colleges Inc'),
(151121, 117635, 'id', 'name', 'Universitas Islam Negeri Jurai Siwo Lampung'),
(151122, 117636, 'en', 'name', 'LEMON: Littoral Environment: M0dels and Numerics'),
(151123, 117636, 'fr', 'name', 'LEMON: Littoral, Environnement, Modèles et Outils Numériques'),
(151124, 117637, 'en', 'name', 'Lentera Anak Foundation'),
(151125, 117637, 'id', 'name', 'Yayasan Lentera Anak'),
(151126, 117638, 'en', 'name', 'MIMETIC: Analysis-Synthesis Approach for Virtual Human Simulation'),
(151127, 117639, 'en', 'name', 'Kavli Institute for Systems Neuroscience'),
(151128, 117640, 'fr', 'name', 'UMR Ressources'),
(151129, 117641, 'no_lang_code', 'name', 'OFR Consultants (United Kingdom)'),
(151130, 117642, 'en', 'name', 'Dr. D. Y. Patil B-School'),
(151131, 117643, 'en', 'name', 'Chongqing Jianzhu College'),
(151132, 117644, 'en', 'name', 'SEMIS: Sciences, Environments, Information, Societies'),
(151133, 117644, 'fr', 'name', 'SEMIS: Sciences, Milieux, Information, SociƩtƩs'),
(151134, 117645, 'en', 'name', 'Khwopa Engineering College'),
(151135, 117646, 'en', 'name', 'Czech National Infrastructure for Biological Data'),
(151136, 117646, 'cs', 'name', 'ČeskÔ nÔrodní infrastruktura pro biologickÔ data'),
(151137, 117647, 'pl', 'name', 'Sieć Badawcza Łukasiewicz – Instytut Tele- i Radiotechniczny'),
(151138, 117647, 'en', 'name', 'Łukasiewicz Research Network - Tele and Radio Research Institute'),
(151139, 117648, 'fr', 'name', 'Adaptations MƩtaboliques Ơ l''Exercice en conditions Physiologiques et Pathologiques'),
(151140, 117649, 'fr', 'name', 'Conservatoire d''espaces naturels des Hauts-de-France'),
(151141, 117650, 'fr', 'name', 'Institut de Recherche Intersite Ɖtudes Culturelles'),
(151142, 117651, 'fr', 'name', 'Calcul QuƩbec'),
(151143, 117652, 'fr', 'name', 'PARMA: Méthodes particulaires utilisant Monge-Ampère'),
(151144, 117652, 'en', 'name', 'PARMA: Particle methods using Monge-AmpĆØre'),
(151145, 117653, 'fr', 'name', 'SIMBIOTX: SImulations en Médecine, BIOtechnologie et ToXicologie de systèmes multicellulaires'),
(151146, 117653, 'en', 'name', 'SIMBIOTX: SImulations in Medicine, BIOtechnology and ToXicology of multicellular systems'),
(151147, 117654, 'en', 'name', 'Maccabi Healthcare Services'),
(151148, 117655, 'en', 'name', 'Luxembourg Institute of Socio-Economic Research'),
(151149, 117656, 'en', 'name', 'Kite Pharma (United States)'),
(151150, 117657, 'en', 'name', 'DEVINE: DEpendable distributed systems: formal VerificatIoN made Efficient'),
(151151, 117657, 'fr', 'name', 'DEVINE: Vérification efficace pour des systèmes distribués fiables'),
(151152, 117658, 'fr', 'name', 'QualitƩ de vie et SantƩ psychologique'),
(151153, 117659, 'tr', 'name', 'Arnavutkƶy Devlet Hastanesi'),
(151154, 117660, 'es', 'name', 'Tecnológico Nacional de México Campus Valladolid'),
(151155, 117661, 'fr', 'name', 'POTIOC: Nouvelles Interactions Multimodales pour une ExpƩrience Utilisateur Stimulante'),
(151156, 117661, 'en', 'name', 'POTIOC: Novel Multimodal Interactions for a Stimulating User Experience'),
(151157, 117662, 'en', 'name', 'Medicines and Healthcare Technologies'),
(151158, 117662, 'fr', 'name', 'MƩdicaments et Technologies pour la SantƩ'),
(151159, 117663, 'fr', 'name', 'Laboratoire des Maladies NeurodƩgƩnƩratives'),
(151160, 117664, 'en', 'name', 'CloudBank'),
(151161, 117665, 'en', 'name', 'Linguistic Society of America'),
(151162, 117666, 'no_lang_code', 'name', 'SPTS Technologies (United Kingdom)'),
(151163, 117667, 'en', 'name', 'ICAR – National Research Centre on Litchi'),
(151164, 117667, 'hi', 'name', 'भा.ą¤•ą„ƒ.ą¤…ą¤Øą„.प. – ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤²ą„€ą¤šą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(151165, 117668, 'fr', 'name', 'Communication, Ressources Humaines et Intervention Sociale'),
(151166, 117669, 'fr', 'name', 'Institut de Recherche Juridique Interdisciplinaire'),
(151167, 117670, 'nl', 'name', 'Rivas Zorggroep, Beatrixziekenhuis'),
(151168, 117671, 'en', 'name', 'HYBRID: 3D interaction with virtual environments using body and mind'),
(151169, 117672, 'fr', 'name', 'GALLINETTE: Gallinette : vers une nouvelle gƩnƩration d''assistant Ơ la preuve'),
(151170, 117672, 'en', 'name', 'GALLINETTE: Gallinette: developing a new generation of proof assistants'),
(151171, 117673, 'en', 'name', 'EthosLab (Italy)'),
(151172, 117674, 'en', 'name', 'Khawarizmi University Technical College'),
(151173, 117674, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų®ŁˆŲ§Ų±Ų²Ł…ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(151174, 117675, 'en', 'name', 'Ahlul Bayt International University'),
(151175, 117675, 'fa', 'name', 'دانؓگاه ŲØŪŒŁ† Ų§Ł„Ł…Ł„Ł„ŪŒ اهل بیت Ų¹Ł„ŪŒŁ‡Ł… السلام'),
(151176, 117676, 'en', 'name', 'Latakia University'),
(151177, 117676, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł„Ų§Ų°Ł‚ŁŠŲ©'),
(151178, 117677, 'en', 'name', 'Russian Research Institute of Economics, Politics and Law in Science and Technology'),
(151179, 117678, 'en', 'name', 'Dayanand Ayurvedic College'),
(151180, 117679, 'de', 'name', 'Ludwig Boltzmann Institut für Hämatologie und Onkologie'),
(151181, 117679, 'en', 'name', 'Ludwig Boltzmann Institute for Hematology and Oncology'),
(151182, 117680, 'en', 'name', 'Jinhua University of Vocational Technology'),
(151183, 117680, 'zh', 'name', 'é‡‘åŽčŒäøšęŠ€ęœÆå¤§å­¦'),
(151184, 117681, 'fr', 'name', 'PIRAT: Protection de l''information et rƩsistances aux attaques'),
(151185, 117681, 'en', 'name', 'PIRAT: Protection of Information and Resistance to ATtacks'),
(151186, 117682, 'en', 'name', 'Computational Morphometry and Morphodynamics of Cellular and Supracellular Structures'),
(151187, 117682, 'fr', 'name', 'MORPHEME: Morphologie et Images'),
(151188, 117683, 'en', 'name', 'The Kavli Foundation'),
(151189, 117684, 'en', 'name', 'Jain hospital'),
(151190, 117685, 'en', 'name', 'Huai''an Hospital of Huai''an City'),
(151191, 117686, 'es', 'name', 'Universidad de Chalcatongo'),
(151192, 117687, 'id', 'name', 'Institut Teknologi Lombok'),
(151193, 117687, 'en', 'name', 'Lombok Institute of Technology'),
(151194, 117688, 'en', 'name', 'ESC Clermont Business School'),
(151195, 117689, 'no_lang_code', 'name', 'University of Al-Qadisiyah'),
(151196, 117689, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ų§ŲÆŲ³ŁŠŲ©'),
(151197, 117690, 'en', 'name', 'Al-Diwaniyah Teaching Hospital'),
(151198, 117690, 'ar', 'name', 'مستؓفى Ų§Ł„ŲÆŁŠŁˆŲ§Ł†ŁŠŲ© Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ…ŁŠ'),
(151199, 117691, 'no_lang_code', 'name', 'Terradue (Italy)'),
(151200, 117692, 'en', 'name', 'Toraighyrov University'),
(151201, 117692, 'ru', 'name', 'Торайгыров ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(151202, 117693, 'en', 'name', 'Konya Meram State Hospital'),
(151203, 117694, 'en', 'name', 'Royal Academy of Dramatic Art'),
(151204, 117695, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure Agronomique de Toulouse'),
(151205, 117696, 'fr', 'name', 'Service DƩveloppement Radiation et RƩparation'),
(151206, 117697, 'fr', 'name', 'Plateforme Aquitaine de CaractƩrisation des MatƩriaux'),
(151207, 117698, 'en', 'name', 'General Hospital Dr. Josip Benčević Slavonski Brod'),
(151208, 117698, 'hr', 'name', 'Opća Bolnica Dr. Josip Benčević Slavonski Brod'),
(151209, 117699, 'en', 'name', 'Jan IngenHousz Institute'),
(151210, 117700, 'en', 'name', 'Ministry of Technical and Vocational Education'),
(151211, 117700, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„ŲŖŁ‚Ł†ŁŠ ŁˆŲ§Ł„ŁŁ†ŁŠ ŲØŲ§Ł„Ų­ŁƒŁˆŁ…Ų© Ų§Ł„Ł„ŁŠŲØŁŠŲ©'),
(151212, 117701, 'en', 'name', 'AxiomaVox'),
(151213, 117702, 'en', 'name', 'Wavefunction (United States)'),
(151214, 117703, 'en', 'name', 'I4S: Inference for Intelligent Instrumented InfraStructures'),
(151215, 117703, 'fr', 'name', 'I4S: InfƩrence pour les InfraStructures Intelligentes et InstrumentƩes'),
(151216, 117704, 'es', 'name', 'Universidad de California en Berkeley'),
(151217, 117704, 'en', 'name', 'University of California, Berkeley'),
(151218, 117704, 'fr', 'name', 'UniversitƩ de Californie Ơ Berkeley'),
(151219, 117705, 'en', 'name', 'Ragnar Frisch Centre for Economic Research'),
(151220, 117705, 'no', 'name', 'Stiftelsen Frischsenteret for samfunnsĆøkonomisk forskning'),
(151221, 117706, 'en', 'name', 'Open Christian University'),
(151222, 117707, 'en', 'name', 'Public Relations Society of America'),
(151223, 117708, 'en', 'name', 'Hallym University Hangang Sacred Heart Hospital'),
(151224, 117708, 'ko', 'name', 'ķ•œė¦¼ėŒ€ķ•™źµ ķ•œź°•ģ„±ģ‹¬ė³‘ģ›'),
(151225, 117709, 'es', 'name', 'Universidad de Arizona'),
(151226, 117709, 'en', 'name', 'University of Arizona'),
(151227, 117710, 'en', 'name', 'FranƧois Jacob Institute of biology'),
(151228, 117710, 'fr', 'name', 'Institut de biologie FranƧois Jacob'),
(151229, 117711, 'fr', 'name', 'GENSCALE: Algorithmes pour les donnƩes gƩnomiques : passage Ơ l''Ʃchelle, prƩcision, frugalitƩ'),
(151230, 117711, 'en', 'name', 'GENSCALE: Algorithms for Genomic Data: Scalability, Precision and Sustainability'),
(151231, 117712, 'fr', 'name', 'POEMS: Propagation des Ondes : Etude MathƩmatique et Simulationan'),
(151232, 117713, 'nl', 'name', 'Groninger Archieven'),
(151233, 117714, 'en', 'name', 'SIMSMART: SIMulating Stochastic Models with pARTicles'),
(151234, 117714, 'fr', 'name', 'SIMSMART: SIMulation pARTiculaire de ModĆØles Stochastiques'),
(151235, 117715, 'en', 'name', 'Sanskriti University, Mathura'),
(151236, 117716, 'fr', 'name', 'Centre Inria de Lyon'),
(151237, 117716, 'en', 'name', 'Inria Lyon Centre'),
(151238, 117717, 'en', 'name', 'SUSHI: SecUrity at the Software-Hardware Interface'),
(151239, 117717, 'fr', 'name', 'SUSHI: SƩcuritƩ Ơ l''interface logiciel/matƩriel'),
(151240, 117718, 'fr', 'name', 'Organisation mƩtƩorologique mondiale'),
(151241, 117718, 'es', 'name', 'Organización Meteorológica Mundial'),
(151242, 117718, 'en', 'name', 'World Meteorological Organization'),
(151243, 117719, 'en', 'name', 'Krishna Mohan University'),
(151244, 117720, 'en', 'name', 'Gori State University'),
(151245, 117720, 'ka', 'name', 'įƒ’įƒįƒ įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(151246, 117721, 'fr', 'name', 'Laboratoire commun de mƩtrologie'),
(151247, 117722, 'fr', 'name', 'Service de Thermo-hydraulique et de MƩcanique des Fluides'),
(151248, 117723, 'fr', 'name', 'Ɖducation Ɖthique SantĆ©'),
(151249, 117724, 'en', 'name', 'Indian Institute of Information Technology Bhopal'),
(151250, 117725, 'en', 'name', 'Tohoku University'),
(151251, 117725, 'ja', 'name', 'ę±åŒ—å¤§å­¦'),
(151252, 117726, 'en', 'name', 'Zhejiang Provincial Innovation Center of Laser Intelligent Equipment Technology'),
(151253, 117726, 'zh', 'name', 'ęµ™ę±Ÿēœęæ€å…‰ę™ŗčƒ½č£…å¤‡ęŠ€ęœÆåˆ›ę–°äø­åæƒ'),
(151254, 117727, 'en', 'name', 'Podillia State University'),
(151255, 117727, 'uk', 'name', 'ŠŸŠ¾Š“Ń–Š»ŃŒŃŃŒŠŗŠøŠ¹ Державний Університет'),
(151256, 117728, 'no_lang_code', 'name', 'CSPC Pharmaceutical Group'),
(151257, 117728, 'zh', 'name', 'ēŸ³č—„é›†åœ˜'),
(151258, 117729, 'es', 'name', 'Centro de Salud Laviada'),
(151259, 117730, 'en', 'name', 'INOCS: INtegrated Optimization with Complex Structure'),
(151260, 117730, 'fr', 'name', 'INOCS: Optimisation intégrée pour problèmes à structure complexe'),
(151261, 117731, 'fr', 'name', 'Trajectoires d''OcƩanie'),
(151262, 117732, 'es', 'name', 'Centre International de Hautes Etudes Agronomiques MƩditerranƩennes'),
(151263, 117732, 'fr', 'name', 'Centre International de Hautes Ʃtudes agronomiques mƩditerranƩennes'),
(151264, 117732, 'en', 'name', 'International Centre for Advanced Mediterranean Agronomic Studies'),
(151265, 117733, 'de', 'name', 'Bundesanstalt für Landwirtschaft und Ernährung'),
(151266, 117733, 'en', 'name', 'Federal Office for Food and Agriculture'),
(151267, 117734, 'fr', 'name', 'Interactions Culturelles et Discursives'),
(151268, 117735, 'de', 'name', 'Ludwig Boltzmann Gesellschaft'),
(151269, 117736, 'es', 'name', 'Centro de Estudios y Experimentación de Obras Públicas'),
(151270, 117737, 'en', 'name', 'Every Cure'),
(151271, 117738, 'en', 'name', 'Starex University'),
(151272, 117739, 'en', 'name', 'Countess of Chester Hospital'),
(151273, 117740, 'fr', 'name', 'Laboratoire Interdisciplinaire Formes Architectures Milieux'),
(151274, 117741, 'en', 'name', 'Molecular Imaging Research Center'),
(151275, 117742, 'fr', 'name', 'UAR POREA'),
(151276, 117743, 'en', 'name', 'Membrane Signalling and Inflammation in reperfusion Injuries'),
(151277, 117744, 'en', 'name', 'Teacher Education College of Setif'),
(151278, 117744, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de SĆ©tif'),
(151279, 117745, 'en', 'name', 'UNSW Sydney'),
(151280, 117746, 'en', 'name', 'Gujarat Natural Farming Science University, Halol'),
(151281, 117747, 'en', 'name', 'Vinacomin – Institute of Mining Science and Technology'),
(151282, 117747, 'vi', 'name', 'Viện Khoa hį»c CĆ“ng nghệ Mį» - Vinacomin'),
(151283, 117748, 'it', 'name', 'Istituto di Ricerca sulla Crescita Economica Sostenibile'),
(151284, 117748, 'en', 'name', 'Research Institute on Sustainable Economic Growth'),
(151285, 117749, 'en', 'name', 'Moving Magnet Technologies'),
(151286, 117749, 'no_lang_code', 'name', 'Moving Magnet Technologies (France)'),
(151287, 117750, 'en', 'name', 'Imo State Polytechnic Omuma'),
(151288, 117751, 'en', 'name', 'Yongjiang Laboratory'),
(151289, 117752, 'en', 'name', 'Optics Valley Laboratory'),
(151290, 117753, 'en', 'name', 'U. R. Rao Satellite Centre'),
(151291, 117754, 'en', 'name', 'Health data-and model-driven approaches for Knowledge Acquisition'),
(151292, 117754, 'fr', 'name', 'Heka : Méthodes basées sur les données et modèles en santé pour l''acquisition de connaissances'),
(151293, 117755, 'es', 'name', 'Neurocenter Santa Cruz (Bolivia)'),
(151294, 117756, 'en', 'name', 'Netcompany SEE & EUI (Luxembourg)'),
(151295, 117757, 'en', 'name', 'Starlab Barcelona SLU'),
(151296, 117757, 'no_lang_code', 'name', 'Starlab Barcelona SLU (Spain)'),
(151297, 117758, 'en', 'name', 'South African Population Research Infrastructure Network'),
(151298, 117759, 'pl', 'name', 'Akademia Wojsk Lądowych imienia generała Tadeusza Kościuszki'),
(151299, 117760, 'fr', 'name', 'Pathobiologie et thƩrapie des maladies du foie'),
(151300, 117760, 'en', 'name', 'Pathobiology and therapy of liver diseases'),
(151301, 117761, 'fr', 'name', 'Observatoire de Physique du Globe de Clermont-Ferrand'),
(151302, 117762, 'en', 'name', 'The Central Research Institute of the Armed Forces of Ukraine'),
(151303, 117763, 'en', 'name', 'National Institute of Natural Hazards'),
(151304, 117763, 'zh', 'name', 'å›½å®¶č‡Ŗē„¶ē¾å®³é˜²ę²»ē ”ē©¶é™¢'),
(151305, 117764, 'en', 'name', 'OpenTopography'),
(151306, 117765, 'en', 'name', 'D.B.S. Degree (PG) College'),
(151307, 117766, 'fr', 'name', 'Centre Inria de l''universitƩ de Bordeaux'),
(151308, 117766, 'en', 'name', 'Inria Centre at the University of Bordeaux'),
(151309, 117767, 'en', 'name', 'Tashkent University of Social Innovation'),
(151310, 117767, 'uz', 'name', 'Toshkent ijtimoiy innovatsiya universiteti'),
(151311, 117768, 'en', 'name', 'Kavli Institute for the Physics and Mathematics of the Universe'),
(151312, 117768, 'ja', 'name', 'ć‚«ćƒ–ćƒŖę•°ē‰©é€£ęŗå®‡å®™ē ”ē©¶ę©Ÿę§‹'),
(151313, 117769, 'de', 'name', 'Bundesamt für Verbraucherschutz und Lebensmittelsicherheit'),
(151314, 117769, 'en', 'name', 'Federal Office of Consumer Protection and Food Safety'),
(151315, 117770, 'en', 'name', 'Forum for Agricultural Research in Africa'),
(151316, 117771, 'es', 'name', 'Sistema Universitario de Wisconsin'),
(151317, 117771, 'en', 'name', 'University of Wisconsin System'),
(151318, 117771, 'fr', 'name', 'UniversitƩ du Wisconsin'),
(151319, 117772, 'es', 'name', 'Universidad Internacional de Investigación México'),
(151320, 117773, 'en', 'name', 'Rebecca Sieff Hospital'),
(151321, 117773, 'he', 'name', 'בית החולים רבקה זיו'),
(151322, 117774, 'en', 'name', 'USDA California Climate Hub'),
(151323, 117775, 'en', 'name', 'Mahavir Medical Research Centre'),
(151324, 117776, 'es', 'name', 'Instituto Tecnológico Superior de Ɖbano S.L.P.'),
(151325, 117777, 'en', 'name', 'Centre for Population Ageing Research'),
(151326, 117778, 'es', 'name', 'Instituto Superior Universitario Cotopaxi'),
(151327, 117779, 'fr', 'name', 'MUSCA: Dynamiques de populations multi-échelles pour des systèmes physiologiques'),
(151328, 117779, 'en', 'name', 'MUSCA: MUltiSCAle population dynamics for physiological systems'),
(151329, 117780, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure - PSL'),
(151330, 117781, 'en', 'name', 'Tasmanian Emergency Medicine Research Institute');
INSERT INTO `ror_settings` VALUES
(151331, 117782, 'de', 'name', 'LWL-UniversitƤtsklinik Hamm'),
(151332, 117783, 'en', 'name', 'Nagaland University'),
(151333, 117784, 'fr', 'name', 'SEMAGRAMME: Analyse SƩmantique de la Langue'),
(151334, 117784, 'en', 'name', 'SEMAGRAMME: Semantic Analysis of Natural Language'),
(151335, 117785, 'en', 'name', 'Central Baptist Theological Seminary of Minneapolis'),
(151336, 117786, 'en', 'name', 'Worcester Polytechnic Institute'),
(151337, 117787, 'no_lang_code', 'name', 'AVL (Turkey)'),
(151338, 117788, 'fr', 'name', 'ACUMES: Algorithmes et Biologie Structurale'),
(151339, 117788, 'en', 'name', 'ACUMES: Analysis and Control of Unsteady Models for Engineering Sciences'),
(151340, 117789, 'fi', 'name', 'Oslon Yliopisto'),
(151341, 117789, 'no', 'name', 'Universitetet i Oslo'),
(151342, 117789, 'en', 'name', 'University of Oslo'),
(151343, 117790, 'en', 'name', 'University of Kochi Health Sciences'),
(151344, 117791, 'fr', 'name', 'LOKI: Technologie et connaissance pour l''Interaction'),
(151345, 117791, 'en', 'name', 'LOKI: Technology & Knowledge for Interaction'),
(151346, 117792, 'fr', 'name', 'TANGRAM: Recalage visuel avec des modèles physiquement réalistes'),
(151347, 117792, 'en', 'name', 'TANGRAM: Visual Registration with Physically Coherent Models'),
(151348, 117793, 'fr', 'name', 'Centre Inria de l''UniversitƩ Grenoble Alpes'),
(151349, 117794, 'en', 'name', '21 September University for Medical and Applied Sciences'),
(151350, 117794, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© 21 Ų³ŲØŲŖŁ…ŲØŲ± Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(151351, 117795, 'en', 'name', 'FrƩdƩric Joliot Institute for Life Sciences'),
(151352, 117795, 'fr', 'name', 'Institut des Sciences du Vivant FrƩdƩric Joliot'),
(151353, 117796, 'en', 'name', 'Lemery Colleges'),
(151354, 117796, 'tl', 'name', 'Mga Kolehiyo ng Lemery'),
(151355, 117797, 'fr', 'name', 'Laboratoire sur les VulnĆ©rabilitĆ©s et l’Innovation dans le Sport'),
(151356, 117797, 'en', 'name', 'Laboratory of Vulnerabilities and Innovation in Sport'),
(151357, 117798, 'tr', 'name', 'Corlu Belediyesi'),
(151358, 117799, 'en', 'name', 'Anhui Medical University'),
(151359, 117799, 'zh', 'name', 'å®‰å¾½åŒ»ē§‘å¤§å­¦'),
(151360, 117800, 'tr', 'name', 'DSI Genel Mudurlugu'),
(151361, 117800, 'en', 'name', 'General Directorate Of State Hydraulic Works'),
(151362, 117801, 'en', 'name', 'National Agricultural Research Center'),
(151363, 117802, 'en', 'name', 'Institute of Lutheran Theology'),
(151364, 117803, 'pl', 'name', 'Instytut Ogrodnictwa – Państwowy Instytut Badawczy'),
(151365, 117803, 'en', 'name', 'National Institute of Horticultural Research'),
(151366, 117804, 'en', 'name', 'Baden-Wuerttemberg Cooperative State University'),
(151367, 117804, 'de', 'name', 'Duale Hochschule Baden-Württemberg'),
(151368, 117805, 'en', 'name', 'Graphit Innovation Factory'),
(151369, 117805, 'no_lang_code', 'name', 'Graphit Innovation Factory (Romania)'),
(151370, 117806, 'fr', 'name', 'Service de GƩnie Logiciel pour la Simulation'),
(151371, 117807, 'en', 'name', 'Marine Technology'),
(151372, 117808, 'es', 'name', 'Fundación Ethnobotanical Futures'),
(151373, 117808, 'en', 'name', 'International Center for Ethnobotanical Education, Research, and Service'),
(151374, 117809, 'en', 'name', 'Susan G. Komen Breast Cancer Foundation'),
(151375, 117810, 'en', 'name', 'Daradia: The Pain Clinic'),
(151376, 117811, 'en', 'name', 'Knowledge Systems Research'),
(151377, 117812, 'en', 'name', 'Namangan State Technical University'),
(151378, 117812, 'uz', 'name', 'Namangan davlat texnika universiteti'),
(151379, 117813, 'de', 'name', 'Friedrich-Loeffler-Institut'),
(151380, 117814, 'en', 'name', 'Hong Kong Centre for Logistics Robotics'),
(151381, 117814, 'zh', 'name', 'é¦™ęøÆē‰©ęµę©Ÿę¢°äŗŗē ”ē©¶äø­åæƒ'),
(151382, 117815, 'en', 'name', 'Dhaka Residential Model College'),
(151383, 117816, 'fr', 'name', 'Service d''Etudes MƩcaniques et Thermiques'),
(151384, 117817, 'de', 'name', 'Max Rubner Institut'),
(151385, 117818, 'en', 'name', 'VERIDIS: Modeling and Verification of Distributed Algorithms and Systems'),
(151386, 117819, 'en', 'name', 'Actuarial and Financial Sciences Laboratory'),
(151387, 117819, 'fr', 'name', 'Laboratoire de Sciences Actuarielle et FinanciĆØre'),
(151388, 117820, 'fr', 'name', 'Institut de Recherche sur les Lois Fondamentales de l''Univers'),
(151389, 117821, 'fr', 'name', 'Immunologie des Maladies Virales, Auto-immunes, HƩmatologiques et BactƩriennes'),
(151390, 117821, 'en', 'name', 'Infectious Disease Models and Innovative Therapie'),
(151391, 117822, 'uz', 'name', 'Farg''ona davlat texnika universiteti'),
(151392, 117822, 'en', 'name', 'Fergana State Technical University'),
(151393, 117822, 'ru', 'name', 'Ферганский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(151394, 117823, 'fr', 'name', 'TARAN: Architectures matérielles spécialisées pour l''ère post loi-de-Moore'),
(151395, 117823, 'en', 'name', 'TARAN: Domain-Specific Computers in the Post Moore''s Law Era'),
(151396, 117824, 'fr', 'name', 'Centre pour l''innovation en cancƩrologie de Lyon'),
(151397, 117825, 'en', 'name', 'Standards Association of Zimbabwe'),
(151398, 117826, 'en', 'name', 'Nootan College of Physiotherapy'),
(151399, 117827, 'en', 'name', 'University of Wisconsin–Extension'),
(151400, 117828, 'en', 'name', 'MACBES: Modelling And Control of Biological and Ecological Systems'),
(151401, 117828, 'fr', 'name', 'MACBES: Modélisation et commande de systèmes biologiques et écologiques'),
(151402, 117829, 'en', 'name', 'Siva Sivani Degree College'),
(151403, 117829, 'te', 'name', 'ą°¶ą°æą°µ శివాని ą°”ą°æą°—ą±ą°°ą±€ ą°•ą°¾ą°²ą±‡ą°œą±'),
(151404, 117830, 'en', 'name', 'KERDATA: Enabling the Edge-Cloud-HPC Data Continuum'),
(151405, 117830, 'fr', 'name', 'KERDATA: Stockage et traitement de donnƩes sur le continuum Edge-Cloud-HPC'),
(151406, 117831, 'fr', 'name', 'Laboratoire de MathƩmatiques Blaise Pascal'),
(151407, 117832, 'fr', 'name', 'POEMS: Propagation des Ondes : Etude MathƩmatique et Simulation'),
(151408, 117832, 'en', 'name', 'POEMS: Wave propagation: mathematical analysis and simulation'),
(151409, 117833, 'fr', 'name', 'Service de Radiobiologie ExpƩrimentale et Innovation Technologiques'),
(151410, 117834, 'en', 'name', 'EUROKD Egitm Danismanlik Group'),
(151411, 117835, 'fr', 'name', 'Service de Recherche en Corrosion et Comportement des MatƩriaux'),
(151412, 117836, 'de', 'name', 'Julius Kühn-Institut'),
(151413, 117836, 'en', 'name', 'Federal Research Centre for Cultivated Plants'),
(151414, 117837, 'en', 'name', 'Adani University'),
(151415, 117838, 'en', 'name', 'Babu Banarasi Das Northern India Institute of Technology'),
(151416, 117839, 'fr', 'name', 'Service InstabilitƩ GƩnƩtique, RƩparation, Recombinaison'),
(151417, 117840, 'fr', 'name', 'Presses universitaires de la MƩditerranƩe'),
(151418, 117841, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Widya Wiwaha'),
(151419, 117842, 'en', 'name', 'Muhammad Abdullahi Wase Teaching Hospital'),
(151420, 117843, 'en', 'name', 'Maitama Sule University Kano'),
(151421, 117844, 'en', 'name', 'Metropolitan Council'),
(151422, 117845, 'en', 'name', 'Gen Digital Inc.'),
(151423, 117845, 'no_lang_code', 'name', 'Gen Digital Inc. (United States)'),
(151424, 117846, 'fr', 'name', 'Microbiologie Environnement Digestif SantƩ'),
(151425, 117847, 'en', 'name', 'University of Arizona College of Medicine- Phoenix'),
(151426, 117848, 'en', 'name', 'Australian Catholic University'),
(151427, 117849, 'en', 'name', 'PESTO: Proof techniques for security protocols'),
(151428, 117849, 'fr', 'name', 'PESTO: Techniques de Preuves pour les Protocoles de SƩcuritƩ'),
(151429, 117850, 'en', 'name', 'DBT/Wellcome Trust India Alliance'),
(151430, 117851, 'fr', 'name', 'CANARI: Analyse cryptographique et arithmƩtique'),
(151431, 117851, 'en', 'name', 'CANARI: Cryptography ANalysis and ARIthmetic'),
(151432, 117852, 'id', 'name', 'Sekolah Tinggi Pariwisata Mataram'),
(151433, 117853, 'en', 'name', 'Rutherford Appleton Laboratory'),
(151434, 117854, 'en', 'name', 'University of Potsdam'),
(151435, 117854, 'de', 'name', 'UniversitƤt Potsdam'),
(151436, 117855, 'en', 'name', 'ASTRAL: Advanced StatisTical infeRence And controL'),
(151437, 117855, 'fr', 'name', 'ASTRAL: MƩthodes avancƩes d''apprentissage statistique et de contrƓle'),
(151438, 117856, 'de', 'name', 'CID GmbH'),
(151439, 117857, 'en', 'name', 'COMPACT: COMPression of mAssively produCed visual daTa'),
(151440, 117857, 'fr', 'name', 'COMPACT: Compression de donn''ees visuelles massives'),
(151441, 117858, 'en', 'name', 'Robotics & AI Law Society'),
(151442, 117859, 'fr', 'name', 'Ecole SupƩrieure d''IngƩnieurs LƩonard de Vinci'),
(151443, 117859, 'en', 'name', 'Leonardo da Vinci Engineering School'),
(151444, 117860, 'fr', 'name', 'AUCTUS: Des robots au service de l''humain au travail'),
(151445, 117860, 'en', 'name', 'AUCTUS: Robots for Humans at work'),
(151446, 117861, 'fr', 'name', 'AISTROSIGHT: La pharmacologie des neurones et des astrocytes Ć  l’aide des sciences du numĆ©rique'),
(151447, 117861, 'en', 'name', 'AISTROSIGHT: Viewing neuron-astrocyte pharmacology through digital sciences'),
(151448, 117862, 'fr', 'name', 'Fédération de Recherche sur l''Hydrogène'),
(151449, 117862, 'en', 'name', 'The French National Research Network on Hydrogen Energy'),
(151450, 117863, 'en', 'name', 'GRAPHDECO: GRAPHics and DEsign with hEterogeneous COntent'),
(151451, 117864, 'en', 'name', 'IntechOpen'),
(151452, 117865, 'en', 'name', 'SPHINX: Heterogeneous Systems: Inverse Problems, Control and Stabilization, Simulation'),
(151453, 117866, 'en', 'name', 'Centre for Healthy Brain Ageing'),
(151454, 117867, 'en', 'name', 'Jain College of Engineering and Research'),
(151455, 117868, 'en', 'name', 'Asthma Australia'),
(151456, 117869, 'fr', 'name', 'FACTAS: Analyse fonctionnelle pour la conception et l''analyse de systĆØmes'),
(151457, 117869, 'en', 'name', 'FACTAS: Functional Analysis for ConcepTion and Assessment of Systems'),
(151458, 117870, 'en', 'name', 'University of British Columbia, Okanagan Campus'),
(151459, 117871, 'en', 'name', 'The Confederated Tribes of Grand Ronde'),
(151460, 117872, 'no_lang_code', 'name', 'NortonLifeLock (United States)'),
(151461, 117873, 'en', 'name', 'Le Hong Phong High School for the Gifted'),
(151462, 117873, 'vi', 'name', 'TrĘ°į»ng Trung hį»c phổ thĆ“ng chuyĆŖn LĆŖ Hồng Phong, Nam Định'),
(151463, 117874, 'fr', 'name', 'DƩlƩgation RƩgionale Auvergne-RhƓne-Alpes'),
(151464, 117875, 'en', 'name', 'St Vincent''s Hospital Melbourne'),
(151465, 117876, 'fr', 'name', 'Centre d''Etudes MƩdiƩvales de Montpellier'),
(151466, 117877, 'fr', 'name', 'Centre Inria de l''UniversitƩ Paris-Saclay'),
(151467, 117877, 'en', 'name', 'Inria Saclay Centre at UniversitƩ Paris-Saclay'),
(151468, 117878, 'en', 'name', 'MERGE: Mathematics for Evolution, Reproduction, Growth and Emergence'),
(151469, 117878, 'fr', 'name', 'MERGE: MathĆ©matiques pour l’évolution, la reproduction, la croissance et l’émergence'),
(151470, 117879, 'es', 'name', 'Hospital de la Sociedad de Lucha Contra el CÔncer SOLCA Núcleo de Loja'),
(151471, 117880, 'es', 'name', 'Instituto de Filologƭa y Literaturas HispƔnicas "Dr. Amado Alonso"'),
(151472, 117881, 'fr', 'name', 'MFX: Informatique graphique pour la fabrication numƩrique'),
(151473, 117881, 'en', 'name', 'MFX: Matter from Graphics'),
(151474, 117882, 'fr', 'name', 'MobilitƉs, cRĆ©ations, lAngues et idĆ©oLogies en OcĆ©anie'),
(151475, 117883, 'en', 'name', 'St. Mary’s College'),
(151476, 117884, 'en', 'name', 'ILDA: Interacting with Large Data'),
(151477, 117885, 'en', 'name', 'Francisc Rainer Institute of Anthropology'),
(151478, 117885, 'ro', 'name', 'Institutul de Antropologie "Francisc I. Rainer"'),
(151479, 117886, 'en', 'name', 'TITANE: Geometric Modeling of 3D Environments'),
(151480, 117886, 'fr', 'name', 'TITANE: ModƩlisation gƩomƩtrique d''environnements 3D'),
(151481, 117887, 'en', 'name', 'St George''s, University of London'),
(151482, 117888, 'en', 'name', 'Rare Disease Ghana Initiative'),
(151483, 117889, 'en', 'name', 'Central Baptist Theological Seminary'),
(151484, 117890, 'el', 'name', 'Diabalkaniko Kentro Periballontos'),
(151485, 117890, 'en', 'name', 'interBalkan Environment Center'),
(151486, 117891, 'fr', 'name', 'Laboratoire Paragraphe'),
(151487, 117892, 'en', 'name', 'Association of Rheumatologists of Russia'),
(151488, 117892, 'ru', 'name', 'ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ ревматологов России'),
(151489, 117893, 'en', 'name', 'International Science and Technology University'),
(151490, 117894, 'en', 'name', 'M3DISIM: Mathematical and Mechanical Modeling with Data Interaction in Simulations for Medicine'),
(151491, 117895, 'fr', 'name', 'Centre Inria de l''UniversitƩ de Lorraine'),
(151492, 117895, 'en', 'name', 'Inria Centre at UniversitƩ de Lorraine'),
(151493, 117896, 'en', 'name', 'Govind Ballabh Pant Social Science Institute'),
(151494, 117897, 'en', 'name', 'University of Defence in Belgrade, Strategic Research Institute'),
(151495, 117897, 'sr', 'name', 'Univerzitet odbrane u Beogradu, Institut za strategijska istraživanja'),
(151496, 117898, 'en', 'name', 'Center for International Knowledge on Development'),
(151497, 117899, 'en', 'name', 'VNS Health'),
(151498, 117900, 'en', 'name', 'LUNEX'),
(151499, 117901, 'en', 'name', 'Mahamana Pandit Madan Mohan Malaviya Cancer Centre'),
(151500, 117902, 'en', 'name', 'American Hospital Kosovo'),
(151501, 117902, 'sq', 'name', 'Spitali Amerikan Kosovo'),
(151502, 117903, 'en', 'name', 'DISCO: Dynamical Interconnected Systems: Control and Optimization'),
(151503, 117903, 'fr', 'name', 'DISCO: Systèmes dynamiques interconnectés dans des environnements complexes'),
(151504, 117904, 'en', 'name', 'Barnet and Chase Farm NHS Hospitals Trust'),
(151505, 117905, 'en', 'name', 'Applied Biotechnology Institute'),
(151506, 117905, 'vi', 'name', 'Viện CĆ“ng nghệ Sinh hį»c Ứng dỄng'),
(151507, 117906, 'en', 'name', 'SISTM: Statistics In System biology and Translational Medicine'),
(151508, 117907, 'fr', 'name', 'Laboratoire de GƩographie Physique et Environnementale'),
(151509, 117908, 'en', 'name', 'KAIROS: Multiform Logical Time for Formal Cyber-Physical System Design'),
(151510, 117908, 'fr', 'name', 'KAIROS: Temps Logique Multiforme pour Conception de SystĆØmes Cyber-Physiques'),
(151511, 117909, 'fr', 'name', 'Conseil National de Recherches Canada'),
(151512, 117909, 'en', 'name', 'National Research Council Canada'),
(151513, 117910, 'en', 'name', 'Centre for Ecology Development and Research'),
(151514, 117911, 'en', 'name', 'GRACE: Geometry, arithmetic, algorithms, codes and encryption'),
(151515, 117912, 'id', 'name', 'Institut Agama Islam Negeri Langsa'),
(151516, 117912, 'en', 'name', 'State Institute of Islamic Studies Langsa'),
(151517, 117913, 'en', 'name', 'ELTE Hungarian Research Centre for Linguistics'),
(151518, 117913, 'hu', 'name', 'ELTE NyelvtudomÔnyi Kutatóközpont'),
(151519, 117914, 'fr', 'name', 'FƩdƩration mathƩmatique de recherche en rƩgion Aquitaine'),
(151520, 117915, 'en', 'name', 'University "Economics Academy" Brcko District of Bosnia and Herzegovina'),
(151521, 117915, 'de', 'name', 'UniversitƤt "Wirtschaftsakademie" Brcko distrikt BuH'),
(151522, 117915, 'bs', 'name', 'Univerzitet "Privredna Akademija" Brčko distrikt Bosne i Hercegovine'),
(151523, 117916, 'en', 'name', 'Perley Health'),
(151524, 117917, 'en', 'name', 'Serbian Academy of Sciences and Arts'),
(151525, 117918, 'en', 'name', 'CAGIRE: Computational AGility for internal flows sImulations and compaRisons with Experiments'),
(151526, 117919, 'en', 'name', 'CRONOS: Computational modelling of brain dynamical networks'),
(151527, 117919, 'fr', 'name', 'CRONOS: ModƩlisation des rƩsaux dynamiques cƩrƩbraux'),
(151528, 117920, 'id', 'name', 'Sekolah Tinggi Teologi Transformasi Indonesia'),
(151529, 117921, 'fr', 'name', 'GéoHydrosystèmes COntinentaux'),
(151530, 117922, 'en', 'name', 'Animal Health Institute'),
(151531, 117923, 'en', 'name', 'Metro Transit'),
(151532, 117924, 'fr', 'name', 'DIANA: Conception, Mise en oeuvre et Analyse d''Architectures RƩseau'),
(151533, 117924, 'en', 'name', 'DIANA: Design, Implementation and Analysis of Networking Architectures'),
(151534, 117925, 'en', 'name', 'Maharashtra National Law University'),
(151535, 117926, 'nl', 'name', 'Provincie Noord-Holland'),
(151536, 117927, 'en', 'name', 'Dr. Daulatrao Aher College of Engineering'),
(151537, 117928, 'en', 'name', 'CSMSS Chh. Shahu College of Engineering'),
(151538, 117929, 'fr', 'name', 'NEO: IngƩnierie et OpƩrations des RƩseaux'),
(151539, 117929, 'en', 'name', 'NEO: Network Engineering and Operations'),
(151540, 117930, 'es', 'name', 'Instituto Nacional de Investigación Agropecuaria'),
(151541, 117931, 'en', 'name', 'AROMATH: AlgebRa, geOmetry, Modeling and AlgoriTHms'),
(151542, 117931, 'fr', 'name', 'AROMATH: Algebre geometrie Modelisation et Algorithmes'),
(151543, 117932, 'en', 'name', 'Laude Institute'),
(151544, 117933, 'fr', 'name', 'GROUPEMENT NATIONAL MULTIDISCIPLINAIRE DE SANTE AU TRAVAIL DU BATIMENT ET DES TRAVAUX PUBLICS'),
(151545, 117934, 'hr', 'name', 'MUP Centar za forenzična ispitivanja, istraživanja i vjeÅ”tačenja "Ivan Vučetić"'),
(151546, 117934, 'en', 'name', 'Ministry of the Interior, Forensic Science Centre "Ivan Vučetić"'),
(151547, 117935, 'en', 'name', 'Cognitive Neuroimaging Lab'),
(151548, 117936, 'en', 'name', 'Sigmund Freud Private University Vienna'),
(151549, 117936, 'de', 'name', 'Sigmund Freud PrivatuniversitƤt Wien'),
(151550, 117937, 'en', 'name', 'Norwich University of the Arts'),
(151551, 117938, 'no_lang_code', 'name', 'Gamma Remote Sensing (Switzerland)'),
(151552, 117939, 'es', 'name', 'Servicio de Salud del Principado de Asturias'),
(151553, 117940, 'tr', 'name', 'Koyunculuk Araştırma Enstitüsü Müdürlüğü'),
(151554, 117940, 'en', 'name', 'Sheep Breeding and Research Institute'),
(151555, 117941, 'en', 'name', 'Tam Anh Research Institute'),
(151556, 117941, 'vi', 'name', 'Viện NghiĆŖn cứu TĆ¢m Anh'),
(151557, 117942, 'en', 'name', 'EMERAUDE: EMbEdded pRogrammable AUDio systEms'),
(151558, 117942, 'fr', 'name', 'EMERAUDE: Systèmes Embarqués audio programmables'),
(151559, 117943, 'en', 'name', 'Kashmir Advanced Scientific Research Centre'),
(151560, 117944, 'en', 'name', 'RAINBOW: Sensor-based Robotics and Human Interaction'),
(151561, 117944, 'fr', 'name', 'RAINBOW: robotique interactive et rƩfƩrencƩe capteurs'),
(151562, 117945, 'de', 'name', 'LWL-UniversitƤtsklinikum Bochum'),
(151563, 117946, 'en', 'name', 'National Library of Armenia'),
(151564, 117947, 'no_lang_code', 'name', 'Pemex (Mexico)'),
(151565, 117948, 'en', 'name', 'ARTISHAU: ARTificial Intelligence: Security, trutHfulness, and AUdit'),
(151566, 117948, 'fr', 'name', 'ARTISHAU: Intelligence artificielle : sƩcuritƩ, traƧabilitƩ et audit'),
(151567, 117949, 'sr', 'name', 'Geografski institut ā€žJovan CvijiÄ‡ā€œ Srpske akademije nauka i umetnosti'),
(151568, 117949, 'en', 'name', 'Geographical Institute ā€œJovan CvijiÄ‡ā€ SASA'),
(151569, 117950, 'it', 'name', 'Azienda Regionale Emergenza Sanitaria - ARES 118 Lazio'),
(151570, 117951, 'fr', 'name', 'PETRUS: Cloud personnel sƩcurisƩ'),
(151571, 117951, 'en', 'name', 'PETRUS: PErsonal & TRUSted cloud'),
(151572, 117952, 'en', 'name', 'Swinburne University of Technology'),
(151573, 117953, 'es', 'name', 'Universidad de Córdoba'),
(151574, 117953, 'en', 'name', 'University of Córdoba'),
(151575, 117954, 'fr', 'name', 'Conseil National de Lutte contre le sida du SƩnƩgal'),
(151576, 117955, 'en', 'name', 'CASH: Compilation and Analyses for Software and Hardware'),
(151577, 117955, 'fr', 'name', 'CASH: Compilation et Analyse, Logiciel et MatƩriel'),
(151578, 117956, 'no_lang_code', 'name', 'Bartenbach - The Lighting Innovators (Austria)'),
(151579, 117957, 'en', 'name', 'Al-Huda University College'),
(151580, 117957, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الهدى الجامعة'),
(151581, 117958, 'fr', 'name', 'SEAMLESS: Interaction et collaboration fluides Ơ travers le continuum rƩalitƩ-virtualitƩ'),
(151582, 117958, 'en', 'name', 'SEAMLESS: Seamless interaction and collaboration through the reality-virtuality continuum'),
(151583, 117959, 'en', 'name', 'MAGNET: Machine Learning in Information Networks'),
(151584, 117960, 'en', 'name', 'Division of Electronics, Detectors and Computing for Physics'),
(151585, 117960, 'fr', 'name', 'DƩpartement d''Electronique des DƩtecteurs et d''Informatique pour la Physique'),
(151586, 117961, 'fr', 'name', 'PRIVATICS: Modèles, architectures et outils pour la protection de la vie privée dans la société de l''information'),
(151587, 117961, 'en', 'name', 'PRIVATICS: Privacy Models, Architectures and Tools for the Information Society'),
(151588, 117962, 'fr', 'name', 'Centre Inria d''UniversitƩ CƓte d''Azur'),
(151589, 117962, 'en', 'name', 'Inria Centre at UniversitƩ CƓte d''Azur'),
(151590, 117963, 'en', 'name', 'DYLISS: Dynamics, Logics and Inference for biological Systems and Sequences'),
(151591, 117964, 'fr', 'name', 'UnitƩ de Nutrition Humaine'),
(151592, 117965, 'en', 'name', 'Ontario Federation of Indigenous Friendship Centres'),
(151593, 117966, 'en', 'name', 'UGC DAE Consortium for Scientific Research'),
(151594, 117966, 'hi', 'name', 'ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤…ą¤Øą„ą¤¦ą¤¾ą¤Ø ą¤†ą¤Æą„‹ą¤— - ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤Šą¤°ą„ą¤œą¤¾ विभाग ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤•ą„ą¤²'),
(151595, 117967, 'no_lang_code', 'name', 'Ansys (France)'),
(151596, 117968, 'de', 'name', 'Kulturpool'),
(151597, 117969, 'en', 'name', 'CASTOR: Control for plAsma inSTability, Optimization and model Reduction'),
(151598, 117969, 'fr', 'name', 'CASTOR: ContrÓle du plAsma et de ses inSTabilités, Optimisation et Réduction de modèle'),
(151599, 117970, 'en', 'name', 'MIND: Models and Inference for Neuroimaging Data'),
(151600, 117970, 'fr', 'name', 'MIND: modèles et inférence pour les données de Neuroimagerie'),
(151601, 117971, 'pt', 'name', 'Associação Portuguesa para o Desenvolvimento da Carreira'),
(151602, 117972, 'en', 'name', 'La Kretz Research Center at Sedgwick Reserve'),
(151603, 117973, 'en', 'name', 'Sparsh Himalaya University'),
(151604, 117974, 'en', 'name', 'Climate Change Research Centre'),
(151605, 117975, 'fr', 'name', 'SAIRPICO: Imagerie Spatio-Temporelle, Intelligence Artificielle et Calcul NumƩrique pour la Biologie Cellulaire et Chemobiologie'),
(151606, 117975, 'en', 'name', 'SAIRPICO: Space-time imaging, artificial intelligence and computing for cellular and chemical biology'),
(151607, 117976, 'id', 'name', 'Institut Agama Islam Negeri Ternate'),
(151608, 117977, 'en', 'name', 'City, University of London'),
(151609, 117978, 'fr', 'name', 'CONCACE: COmposabilité Numerique and parallèle pour le CAlcul haute performanCE'),
(151610, 117978, 'en', 'name', 'CONCACE: Numerical and Parallel Composability for High Performance Computing'),
(151611, 117979, 'fr', 'name', 'PARKAS: ParallƩlisme de Kahn Synchrone'),
(151612, 117979, 'en', 'name', 'Synchronous Kahn parallelism'),
(151613, 117980, 'en', 'name', 'MATHNEURO: Mathematics for Neuroscience'),
(151614, 117980, 'fr', 'name', 'MATHNEURO: MathƩmatiques pour les Neurosciences'),
(151615, 117981, 'fr', 'name', 'MATHEXP: Calcul formel, mathƩmatiques expƩrimentales et interactions'),
(151616, 117981, 'en', 'name', 'MATHEXP: Computer algebra, experimental mathematics, and interactions'),
(151617, 117982, 'en', 'name', 'Genesis Analytics (South Africa)'),
(151618, 117983, 'en', 'name', 'ARC Centre of Excellence for Carbon Science and Innovation'),
(151619, 117984, 'fr', 'name', 'MACARON: Apprentissage automatique pour des mƩthodes numƩriques optimisƩes'),
(151620, 117984, 'en', 'name', 'MACARON: MAChine leARning for Optimized Numerical methods'),
(151621, 117985, 'en', 'name', 'International Society for Computational Biology'),
(151622, 117986, 'fr', 'name', 'ALPINES: Algorithmes et outils parallèles pour des simulations numériques intégrées'),
(151623, 117986, 'en', 'name', 'ALPINES: Algorithms and parallel tools for integrated numerical simulations'),
(151624, 117987, 'eu', 'name', 'Osakidetza'),
(151625, 117988, 'en', 'name', 'Experimental and Computational Methods for Modeling Cellular Processes'),
(151626, 117988, 'fr', 'name', 'INBIO : MƩthodes expƩrimentales et computationnelles pour la modƩlisation des processus cellulaires'),
(151627, 117989, 'fr', 'name', 'Service d''Ɖtude des MatĆ©riaux IrradiĆ©s'),
(151628, 117990, 'es', 'name', 'Universidad de California'),
(151629, 117990, 'en', 'name', 'University of California System'),
(151630, 117990, 'fr', 'name', 'UniversitƩ de Californie'),
(151631, 117991, 'mi', 'name', 'Te Niwha'),
(151632, 117992, 'en', 'name', 'Institut de Recherche contre les Cancers de l’Appareil Digestif Africa'),
(151633, 117993, 'fr', 'name', 'Institut National des Sciences MathƩmatiques et de leurs Interactions'),
(151634, 117994, 'fr', 'name', 'Centre d''Ʃtudes de l''emploi'),
(151635, 117995, 'fr', 'name', 'Centre Inria de Sorbonne UniversitƩ'),
(151636, 117995, 'en', 'name', 'Inria Paris Centre at Sorbonne University'),
(151637, 117996, 'en', 'name', 'Centre for Social Impact'),
(151638, 117997, 'es', 'name', 'Centro de Investigación en Ciencias de Información Geoespacial'),
(151639, 117998, 'es', 'name', 'Sociedad espaƱola de medicina psicodƩlica'),
(151640, 117999, 'en', 'name', 'COMETE: Privacy, Fairness and Robustness in Information Management'),
(151641, 117999, 'fr', 'name', 'COMETE: Vie privƩe, ƩquitƩ et robustesse dans la gestion de l''information'),
(151642, 118000, 'en', 'name', 'COMPO: COMPutational pharmacology and clinical Oncology'),
(151643, 118000, 'fr', 'name', 'COMPO: MƩthodes computationnelles pour la prise en charge thƩrapeutique en oncologie'),
(151644, 118001, 'es', 'name', 'Universidad Tecnológica de Izúcar de Matamoros'),
(151645, 118002, 'en', 'name', 'The Salvation Army Toronto Grace Health Centre'),
(151646, 118003, 'en', 'name', 'MARACAS: Models and Algorithms for Reliable Communication Systems'),
(151647, 118003, 'fr', 'name', 'MARACAS: ModĆØle et algorithmes pour des systĆØmes de communication fiables'),
(151648, 118004, 'en', 'name', 'Ukraine Sigmund Freud University'),
(151649, 118005, 'en', 'name', 'Department of Economic Development Jobs Transport and Resources'),
(151650, 118006, 'en', 'name', 'CAMUS: Compilation for multi-processor and multi-core architectures'),
(151651, 118006, 'fr', 'name', 'CAMUS: Compilation pour les Architectures MUlti-processeurs et multi-coeurS'),
(151652, 118007, 'fr', 'name', 'TOPAL: Outils et Optimisations pour le Calcul Haute Performance et l''Apprentissage'),
(151653, 118007, 'en', 'name', 'TOPAL: Tools and Optimization for high Performance Applications and Learning'),
(151654, 118008, 'en', 'name', 'CAPSULE: Applied Cryptography and Implementation Security'),
(151655, 118008, 'fr', 'name', 'CAPSULE: Cryptographie AppliquƩe et SƩcuritƩ des ImplƩmentations'),
(151656, 118009, 'en', 'name', 'H. Lavity Stoutt Community College'),
(151657, 118010, 'es', 'name', 'Instituto Superior Tecnólogico Centro Tecnólogico Naval'),
(151658, 118011, 'en', 'name', 'National Specialized Research and Practical Medical Center for Nephrology of Uzbekistan'),
(151659, 118012, 'en', 'name', 'Institute of Astrophysics and Space Sciences'),
(151660, 118012, 'pt', 'name', 'Instituto de Astrofísica e Ciências do Espaço'),
(151661, 118013, 'en', 'name', 'Lars Erik Lundberg Foundation for Research and Education'),
(151662, 118013, 'sv', 'name', 'Lundbergsstiftelserna'),
(151663, 118014, 'en', 'name', 'ROMA: Optimisation des ressources : modĆØles, algorithmes et ordonnancement'),
(151664, 118015, 'en', 'name', 'Khalel Dosmukhamedov Atyrau University'),
(151665, 118015, 'ru', 'name', 'ŠŃ‚Ń‹Ń€Š°ŃƒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š„. Š”Š¾ŃŠ¼ŃƒŃ…Š°Š¼ŠµŠ“Š¾Š²Š°'),
(151666, 118015, 'kk', 'name', 'Єалел ДосмұхамеГов атынГағы ŠŃ‚Ń‹Ń€Š°Ńƒ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(151667, 118016, 'de', 'name', 'Carl Ritter von Ghega Institut für integrierte Mobilitätsforschung'),
(151668, 118016, 'en', 'name', 'Carl Ritter von Ghega Institute for Integrated Mobility Research'),
(151669, 118017, 'en', 'name', 'Banas Medical College and Research Institute'),
(151670, 118018, 'es', 'name', 'Conservatorio Superior de Música de Córdoba'),
(151671, 118019, 'fr', 'name', 'ASCII: Analyse d’interactions stochastiques intelligentes et coopĆ©ratives'),
(151672, 118019, 'en', 'name', 'ASCII: Analysis of Stochastic Cooperative Intelligent Interactions'),
(151673, 118020, 'es', 'name', 'Ministerio para la Transición Ecológica y el Reto DemogrÔfico'),
(151674, 118020, 'en', 'name', 'Ministry for the Ecological Transition and the Demographic Challenge'),
(151675, 118021, 'en', 'name', 'BIVWAC: Building Immersive Visualizations for Welfare, Awareness, and Comprehension'),
(151676, 118021, 'fr', 'name', 'BIVWAC: Construire des visualisations immersives pour favoriser la compréhension, la prise de conscience, et le bien-être'),
(151677, 118022, 'fr', 'name', 'TAU: IA : vers des problèmes mieux posés'),
(151678, 118022, 'en', 'name', 'TAU: TAckling the Underspecified'),
(151679, 118023, 'en', 'name', 'EVERGREEN: Earth obserVation and machine lEarning foR aGRo-Environmental challENges'),
(151680, 118023, 'fr', 'name', 'EVERGREEN: Observation de la terre et apprentissage machine pour les dƩfis agro-environnementaux'),
(151681, 118024, 'en', 'name', 'Neuroelectrics Barcelona SLU (Spain)'),
(151682, 118025, 'fr', 'name', 'DƩpartement de Physique des Particules'),
(151683, 118025, 'en', 'name', 'Particle Physics Division'),
(151684, 118026, 'fr', 'name', 'Groupe de Recherches Sociologiques sur les sociƩtƩs Contemporaines'),
(151685, 118026, 'en', 'name', 'Sociological Research Group on Contemporary Societies'),
(151686, 118027, 'pt', 'name', 'Rede Eco-Diversa para Conservação da Biodiversidade'),
(151687, 118028, 'en', 'name', 'BENAGIL: Efficient and safe distributed systems'),
(151688, 118028, 'fr', 'name', 'BENAGIL: Systèmes répartis performants et sûrs'),
(151689, 118029, 'fr', 'name', 'VIRTUS: Nous, virtuels'),
(151690, 118029, 'en', 'name', 'VIRTUS: The VIrtual Us'),
(151691, 118030, 'en', 'name', 'Mechanisms in Integrated Life Sciences'),
(151692, 118030, 'fr', 'name', 'MƩcanismes en sciences intƩgratives du vivant'),
(151693, 118031, 'en', 'name', 'MNEMOSYNE: Mnemonic Synergy'),
(151694, 118032, 'en', 'name', 'BEAGLE: Artificial Evolution and Computational Biology'),
(151695, 118033, 'de', 'name', 'Bundessortenamt'),
(151696, 118033, 'en', 'name', 'Federal Plant Variety Office'),
(151697, 118034, 'en', 'name', 'Bineswar Brahma Engineering College'),
(151698, 118035, 'fr', 'name', 'COATI: Combinatoire, Optimisation et Algorithmes pour les TƩlƩcommunications'),
(151699, 118035, 'en', 'name', 'COATI: Combinatorics, Optimization and Algorithms for Telecommunications'),
(151700, 118036, 'en', 'name', 'QUACS: Quantum Computation Structures'),
(151701, 118036, 'fr', 'name', 'QUACS: Structures de calcul quantique'),
(151702, 118037, 'en', 'name', 'Giannini Foundation of Agricultural Economics'),
(151703, 118038, 'no_lang_code', 'name', 'Goodbaby (China)'),
(151704, 118038, 'zh', 'name', 'å„½å­©å­å›½é™…ęŽ§č‚”ęœ‰é™å…¬åø'),
(151705, 118039, 'en', 'name', 'ARIC: Arithmetic and Computing'),
(151706, 118039, 'fr', 'name', 'ARIC: ArithmƩtiques des ordinateurs, mƩthodes formelles, gƩnƩration de code'),
(151707, 118040, 'en', 'name', 'Potsdam University Press'),
(151708, 118040, 'de', 'name', 'UniversitƤtsverlag Potsdam'),
(151709, 118041, 'en', 'name', 'Naipunnya Institute of Management and Information Technology'),
(151710, 118042, 'fr', 'name', 'Maison des Sciences sociales et des HumanitƩs Val de Loire'),
(151711, 118043, 'en', 'name', 'Stem Cell Institute'),
(151712, 118044, 'en', 'name', 'Floral Industry Innovation Center'),
(151713, 118044, 'zh', 'name', 'č¾²ę„­éƒØčŠ±å‰å‰µę–°åœ’å€ē ”ē©¶ē™¼å±•äø­åæƒ'),
(151714, 118045, 'id', 'name', 'Institut Agama Islam Negeri Manado'),
(151715, 118046, 'en', 'name', 'Sigma Xi'),
(151716, 118047, 'en', 'name', 'WIMMICS: Web-Instrumented huMan-Machine Interactions, Communities and Semantics'),
(151717, 118048, 'fr', 'name', 'AVIZ: Analyse et visualisation'),
(151718, 118048, 'en', 'name', 'AVIZ: Analysis and VIsualiZation'),
(151719, 118049, 'en', 'name', 'Private University of Fez'),
(151720, 118049, 'fr', 'name', 'Université Privée de Fès'),
(151721, 118049, 'ar', 'name', 'الجامعة الخاصة لقاس'),
(151722, 118050, 'en', 'name', 'Binaytara'),
(151723, 118051, 'fr', 'name', 'ERABLE: Equipe de recherche europƩenne en algorithmique et biologie formelle et expƩrimentale'),
(151724, 118051, 'en', 'name', 'ERABLE: European Research team in Algorithms and Biology, formaL and Experimental'),
(151725, 118052, 'en', 'name', 'Research Infrastructure for Experiments at CERN'),
(151726, 118052, 'cs', 'name', 'VýzkumnÔ infrastruktura pro experimenty v CERN'),
(151727, 118053, 'fr', 'name', 'AgrosystĆØmes territoires ressources Mirecourt'),
(151728, 118054, 'en', 'name', 'LSPR Institute of Communication and Business'),
(151729, 118055, 'id', 'name', 'Universitas Bhakti Kencana'),
(151730, 118056, 'en', 'name', 'Public Health Institute of Canton Sarajevo'),
(151731, 118056, 'bs', 'name', 'Zavod za javno zdravstvo Kantona Sarajevo'),
(151732, 118057, 'en', 'name', 'University of Defence'),
(151733, 118057, 'sr', 'name', 'Универзитет оГбране'),
(151734, 118058, 'en', 'name', 'EVREF: Reflective Evolution of Ever-running Software Systems'),
(151735, 118058, 'fr', 'name', 'EVREF: Ɖvolution rĆ©flexive des systĆØmes logiciels Ć©ternels'),
(151736, 118059, 'en', 'name', 'Ghent University'),
(151737, 118059, 'nl', 'name', 'Universiteit Gent'),
(151738, 118059, 'fr', 'name', 'UniversitƩ de Gand'),
(151739, 118060, 'fr', 'name', 'OURAGAN: Outils de RƩsolution AlgƩbriques pour la GƩomƩtrie et ses Applications'),
(151740, 118060, 'en', 'name', 'Tools for resolutions in algebra, geometry and their applications'),
(151741, 118061, 'es', 'name', 'Fundación TriÔngulo'),
(151742, 118062, 'en', 'name', 'Accelerators, Cryogenics and Magnetism Division'),
(151743, 118062, 'fr', 'name', 'DƩpartement des AccƩlƩrateurs, de CryogƩnie et de MagnƩtisme'),
(151744, 118063, 'en', 'name', 'Arab East Colleges'),
(151745, 118063, 'ar', 'name', 'ŁƒŁ„ŁŠŲ§ŲŖ الؓرق Ų§Ł„Ų¹Ų±ŲØŁŠ'),
(151746, 118064, 'en', 'name', 'Genetics, Diversity and Ecophysiology of Cereals'),
(151747, 118064, 'fr', 'name', 'GĆ©nĆ©tique, DiversitĆ©, Ɖcophysiologie des CĆ©rĆ©ales'),
(151748, 118065, 'en', 'name', 'Jina AI (Germany)'),
(151749, 118065, 'de', 'name', 'Jina AI GmbH'),
(151750, 118066, 'fr', 'name', 'SCOOL: Prise de dƩcision sƩquentielle dans l''incertain'),
(151751, 118066, 'en', 'name', 'SCOOL: Sequential decision making under uncertainty problem'),
(151752, 118067, 'fr', 'name', 'Laboratoire d''Intégration des Systèmes et des Technologies'),
(151753, 118068, 'en', 'name', 'Conservation International'),
(151754, 118069, 'fr', 'name', 'RAPSODI: Approximations numériques fiables pour les systèmes dissipatifs'),
(151755, 118069, 'en', 'name', 'RAPSODI: Reliable numerical approximations of dissipative systems'),
(151756, 118070, 'fr', 'name', 'COMBO: Biomécanique et Méthodes Numériques pour l''analyse de l''interaction humain-systèmes hors du laboratoire'),
(151757, 118070, 'en', 'name', 'COMBO: Computer and Biomechanics ?> Out-of-the-Lab'),
(151758, 118071, 'id', 'name', 'Sekolah Tinggi Teologi Bethel The Way'),
(151759, 118072, 'en', 'name', 'BIOVISION: Biologically plausible Integrative mOdels of the Visual system : towards synergIstic Solutions for visually-Impaired people and artificial visiON'),
(151760, 118072, 'fr', 'name', 'BIOVISION: Vision biologique : modèles intégratifs et systèmes d''aide à la vision pour les déficients visuels'),
(151761, 118073, 'fr', 'name', 'Laboratoire d''Optique AtmosphƩrique'),
(151762, 118074, 'fr', 'name', 'Méthodes basées sur les données et modèles en santé pour l''acquisition de connaissances'),
(151763, 118075, 'en', 'name', 'McKenzie Health'),
(151764, 118076, 'en', 'name', 'The University of Western Australia'),
(151765, 118077, 'fr', 'name', 'STACK: Pile logicielle pour les infrastructures massivement gƩo distribuƩes'),
(151766, 118077, 'en', 'name', 'STACK: Software Stack for Massively Geo-Distributed Infrastructures'),
(151767, 118078, 'en', 'name', 'Ministry of Health'),
(151768, 118079, 'en', 'name', 'VicRoads'),
(151769, 118080, 'en', 'name', 'Tata Memorial Hospital'),
(151770, 118080, 'hi', 'name', 'टाटा ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(151771, 118080, 'ta', 'name', 'ą®Ÿą®¾ą®ŸąÆą®Ÿą®¾ நினைவு ą®®ąÆˆą®Æą®®ąÆ'),
(151772, 118081, 'en', 'name', 'Sister Nivedita University'),
(151773, 118082, 'en', 'name', 'National Forest Centre'),
(151774, 118083, 'fr', 'name', 'RANDOPT: Optimisation par algorithmes stochastiques'),
(151775, 118083, 'en', 'name', 'RANDOPT: Randomized Optimization'),
(151776, 118084, 'fr', 'name', 'ChiralitƩ en Nouvelle Aquitaine'),
(151777, 118085, 'en', 'name', 'Duke University Hospital'),
(151778, 118086, 'en', 'name', 'MAKUTU: Experimental-based modeling and simulation of wave propagation to characterize geophysical and heliophysical media and to design complex objects'),
(151779, 118086, 'fr', 'name', 'MAKUTU: ModƩlisation et simulation de la propagation des ondes fondƩes sur des mesures expƩrimentales pour caractƩriser des milieux gƩophysiques et hƩliophysiques et concevoir des objets complexes'),
(151780, 118087, 'fr', 'name', 'DƩpartement de Physique NuclƩaire'),
(151781, 118087, 'en', 'name', 'Nuclear Physics Division'),
(151782, 118088, 'en', 'name', 'Houston Neuroscience Brain Center'),
(151783, 118089, 'en', 'name', 'FUN: self-organizing Future Ubiquitous Network'),
(151784, 118090, 'en', 'name', 'Tam Anh General Hospital, Ho Chi Minh City'),
(151785, 118091, 'en', 'name', 'Nishibeppu National Hospital'),
(151786, 118091, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹č„æåˆ„åŗœē—…é™¢'),
(151787, 118092, 'en', 'name', 'City College of Huizhou'),
(151788, 118093, 'en', 'name', 'Ministry of Environment and Water'),
(151789, 118093, 'bg', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на околната среГа Šø воГите'),
(151790, 118094, 'en', 'name', 'Dnyaan Prasad Global University'),
(151791, 118095, 'en', 'name', 'Equine Reproductive Services'),
(151792, 118095, 'no_lang_code', 'name', 'Equine Reproductive Services (United Kingdom)'),
(151793, 118096, 'pt', 'name', 'Universidade de Gurupi'),
(151794, 118096, 'en', 'name', 'University of Gurupi'),
(151795, 118097, 'en', 'name', 'ENN Fusion Energy Research Institute'),
(151796, 118097, 'zh', 'name', 'ę–°å„„ē§‘ęŠ€å‘å±•ęœ‰é™å…¬åø'),
(151797, 118098, 'en', 'name', 'Centre for Big Data Research in Health'),
(151798, 118099, 'en', 'name', 'De Vinci Higher Education'),
(151799, 118099, 'fr', 'name', 'PƓle LƩonard de Vinci'),
(151800, 118100, 'no_lang_code', 'name', 'Reprex B.V. (Netherlands)'),
(151801, 118101, 'fr', 'name', 'LARSEN: Autonomie et interaction au long cours pour des robots en environnements potentiellement sensorisƩs'),
(151802, 118101, 'en', 'name', 'LARSEN: Lifelong Autonomy and interaction skills for Robots in a Sensing ENvironment'),
(151803, 118102, 'fr', 'name', 'Langages HUmanitƩs MƩdiations Apprentissages Interactions NumƩrique'),
(151804, 118103, 'en', 'name', 'ENCell Co., Ltd. (South Korea)'),
(151805, 118104, 'en', 'name', 'Wageningen University & Research'),
(151806, 118104, 'nl', 'name', 'Wageningen University & Research centre'),
(151807, 118105, 'fr', 'name', 'Centre National de Recherche en GƩnomique Humaine'),
(151808, 118105, 'en', 'name', 'National Center of Human Genomics Research'),
(151809, 118106, 'en', 'name', 'Ukrainian Institute for Social Research after Olexander Yaremenko'),
(151810, 118107, 'fr', 'name', 'Laboratoire en Informatique Haute Performance pour le Calcul et la simulation'),
(151811, 118107, 'en', 'name', 'Laboratory for High Performance Computing and Simulation'),
(151812, 118108, 'en', 'name', 'Office for Victims of Crime'),
(151813, 118109, 'nl', 'name', 'LWL Natuurhistorisch Museum'),
(151814, 118109, 'de', 'name', 'LWL-Museum für Naturkunde mit Planetarium'),
(151815, 118109, 'en', 'name', 'LWL-Museum of Natural History and Planetarium'),
(151816, 118110, 'no_lang_code', 'name', 'Eduplanet SAS (Ecuador)'),
(151817, 118111, 'fr', 'name', 'Centre international de musiques mƩdiƩvales'),
(151818, 118112, 'fr', 'name', 'PREMEDICAL: MƩdecine de prƩcision par intƩgration de donnƩes et infƩrence causale'),
(151819, 118112, 'en', 'name', 'PREMEDICAL: Precision Medicine by Data Integration and Causal Learning'),
(151820, 118113, 'en', 'name', 'National School of Computer Science'),
(151821, 118113, 'fr', 'name', 'Ɖcole nationale des sciences de l''informatique'),
(151822, 118113, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŁ‘Ų© Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ©'),
(151823, 118114, 'de', 'name', 'STUDIA-Schlierbach Studienzentrum für internationale Analysen'),
(151824, 118115, 'en', 'name', 'Captain Elechi Amadi Polytechnic, Rumuola'),
(151825, 118116, 'en', 'name', 'PARADYSE: PARticles And DYnamical SystEms'),
(151826, 118116, 'fr', 'name', 'PARADYSE: SystĆØmes de particules et systĆØmes dynamiques'),
(151827, 118117, 'fr', 'name', 'OCKHAM: Optimisation, Connaissances pHysiques, Algorithmes et ModĆØles'),
(151828, 118117, 'en', 'name', 'OCKHAM: Optimization, pHysical Knowledge, Algorithms and Models'),
(151829, 118118, 'en', 'name', 'EX-SITU: Extreme Situated Interaction'),
(151830, 118118, 'fr', 'name', 'EX-SITU: Interaction Située Extrême'),
(151831, 118119, 'fr', 'name', 'WIDE: le monde est distribuƩ - Vers une exploration des tensions entre grande Ʃchelle et coordination'),
(151832, 118119, 'en', 'name', 'WIDE: the World Is Distributed Exploring the tension between scale and coordination'),
(151833, 118120, 'fr', 'name', 'StabilitƩ GƩnƩtique, Cellules Souches et Radiations'),
(151834, 118121, 'en', 'name', 'PIXEL: Structure geometrical shapes'),
(151835, 118121, 'fr', 'name', 'PIXEL: Structurer des formes gƩomƩtriques'),
(151836, 118122, 'en', 'name', 'Modern Institute of Teacher Education'),
(151837, 118123, 'en', 'name', 'Institute of Fisheries of the National Academy of Agrarian Sciences of Ukraine'),
(151838, 118123, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рибного госпоГарства ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(151839, 118124, 'en', 'name', 'Center for Applied Energy Research'),
(151840, 118125, 'en', 'name', 'SODA: Computational and mathematical methods to understand health and society with data'),
(151841, 118125, 'fr', 'name', 'SODA: MƩthodes computationnelles et mathƩmatiques pour comprendre la sociƩtƩ et la santƩ Ơ partir de donnƩes'),
(151842, 118126, 'en', 'name', 'Hallym University Medical Center'),
(151843, 118126, 'ko', 'name', 'ķ•œė¦¼ėŒ€ķ•™źµģ˜ė£Œģ›'),
(151844, 118127, 'fr', 'name', 'CNRS IngƩnierie'),
(151845, 118128, 'fr', 'name', 'Représenter, Inventer la Réalité, du Romantisme au XXIe siècle'),
(151846, 118129, 'de', 'name', 'Freiburger Forschungsstelle für Arbeitswissenschaften GmbH (Germany)'),
(151847, 118130, 'en', 'name', 'Pathophysiology of injury-induced immunosuppression'),
(151848, 118130, 'fr', 'name', 'Physiopathologie de l''immunodƩpression associƩe aux rƩponses inflammatoires systƩmiques'),
(151849, 118131, 'id', 'name', 'Universitas Mitra Bangsa'),
(151850, 118131, 'en', 'name', 'University of Mitra Bangsa'),
(151851, 118132, 'en', 'name', 'Mark Wainwright Analytical Centre'),
(151852, 118133, 'de', 'name', 'LWL-Klinikum Gütersloh'),
(151853, 118134, 'en', 'name', 'ANGUS: Adaptive modelling and numerical simulations for governing equations with underlying structures'),
(151854, 118134, 'fr', 'name', 'ANGUS: ModƩlisation et simulation numƩrique adaptatives pour des Ʃquations ayant des structures sous-jacentes'),
(151855, 118135, 'fr', 'name', 'AGORA: AlGorithmes et Optimisation pour RƩseaux Autonomes'),
(151856, 118135, 'en', 'name', 'AGORA: Wireless Networks for Digital Cities'),
(151857, 118136, 'es', 'name', 'Escuela de Negocios Zegel'),
(151858, 118136, 'en', 'name', 'Zegel Business School'),
(151859, 118137, 'it', 'name', 'Consorzio Re-Cord'),
(151860, 118137, 'en', 'name', 'Renewable Energy Consortium for Research and Demonstration'),
(151861, 118138, 'en', 'name', 'Isa Kaita College of Education'),
(151862, 118139, 'no_lang_code', 'name', 'ENN (China)'),
(151863, 118139, 'zh', 'name', '新億集团'),
(151864, 118140, 'fr', 'name', 'QURIOSITY: Communication et Traitement Quantiques de l''Information'),
(151865, 118140, 'en', 'name', 'QURIOSITY: Quantum Information Processing and Communication'),
(151866, 118141, 'fr', 'name', 'ERMINE: Gestion et mesures des opƩrations et de l''Ʃconomie des rƩseaux'),
(151867, 118141, 'en', 'name', 'ERMINE: Measuring and Managing Network operation and economics'),
(151868, 118142, 'en', 'name', 'Maragheh University of Medical Sciences'),
(151869, 118143, 'fr', 'name', 'MAGELLAN: Infrastructures Informatiques Fiables, Responsables, et DƩcentralisƩes'),
(151870, 118143, 'en', 'name', 'MAGELLAN: Reliable and Responsible Decentralized Computing Infrastructures'),
(151871, 118144, 'en', 'name', 'Center for Interdisciplinary Research in History, Art History and Musicology'),
(151872, 118144, 'fr', 'name', 'Centre de Recherches Interdisciplinaires en Histoire, Histoire de l''Art et Musicologie'),
(151873, 118145, 'en', 'name', 'Society for the Protection of Biodiversity of Thrace'),
(151874, 118146, 'en', 'name', 'Traditional Medicine Institute'),
(151875, 118146, 'vi', 'name', 'Viện Y dược hį»c dĆ¢n tį»™c'),
(151876, 118147, 'id', 'name', 'Akademi Farmasi Yarsi Pontianak'),
(151877, 118148, 'en', 'name', 'Maxillogram'),
(151878, 118149, 'en', 'name', 'LINKS: Linking Dynamic Data'),
(151879, 118149, 'fr', 'name', 'LINKS: Requêtes pour données dynamiques liées'),
(151880, 118150, 'en', 'name', 'Center for Sci-Tech Research in EArth sysTem and Energy'),
(151881, 118151, 'en', 'name', 'ViridisChem'),
(151882, 118152, 'en', 'name', 'Anglican University College of Technology'),
(151883, 118153, 'fr', 'name', 'TADAAM: Gestion des données à l''échelle du système en fonction de la topologie pour le calcul haute performance'),
(151884, 118153, 'en', 'name', 'TADAAM: Topology-aware system-scale data management for high-performance computing'),
(151885, 118154, 'en', 'name', 'STAMP: Safety Techniques based on Formalized Mathematical Proofs'),
(151886, 118154, 'fr', 'name', 'STAMP: SƻretƩ du logiciel et Preuves MathƩmatiques FormalisƩes'),
(151887, 118155, 'de', 'name', 'Fachagentur Nachwachsende Rohstoffe'),
(151888, 118156, 'en', 'name', 'Cohab Initiative'),
(151889, 118157, 'en', 'name', 'Sahiwal Medical College'),
(151890, 118158, 'fr', 'name', 'ModƩlisation, ƩpidƩmiologie et surveillance des risques sanitaires'),
(151891, 118159, 'fr', 'name', 'Physiopathologie et pharmacologie de la douleur et de la migraine'),
(151892, 118160, 'en', 'name', 'University of Diffa'),
(151893, 118160, 'fr', 'name', 'UniversitƩ de Diffa'),
(151894, 118161, 'en', 'name', 'MUSICS: MUltiScale Interacting Cell Systems'),
(151895, 118161, 'fr', 'name', 'MUSICS: Systèmes de cellules avec interactions multi-échelles'),
(151896, 118162, 'en', 'name', 'University of Chinese Academy of Sciences'),
(151897, 118162, 'zh', 'name', '中国科学院大学'),
(151898, 118163, 'pt', 'name', 'Hospital Nossa Senhora da Conceição'),
(151899, 118164, 'pt', 'name', 'Centro UniversitƔrio FAMESC'),
(151900, 118165, 'en', 'name', 'National Institute of Technology, Sasebo College'),
(151901, 118165, 'ja', 'name', 'ä½äø–äæå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(151902, 118166, 'de', 'name', 'Blasenzentrum der Frau AG'),
(151903, 118167, 'en', 'name', 'CARDAMOM: Certified Adaptive discRete moDels for robust simulAtions of CoMplex flOws with Moving fronts'),
(151904, 118168, 'fr', 'name', 'ATLANTIS: Modélisation et méthodes numériques pour le calcul d''interactions onde-matière nanostructurée'),
(151905, 118168, 'en', 'name', 'ATLANTIS: modeling and numerical methods for computATionaL wave-mAtter iNteracTIons at the nanoScale'),
(151906, 118169, 'pt', 'name', 'Fatec GarƧa'),
(151907, 118170, 'en', 'name', 'Prague School of Creative Communication'),
(151908, 118170, 'cs', 'name', 'VysokÔ Ŕkola kreativní komunikace'),
(151909, 118171, 'en', 'name', 'Scheer IMC'),
(151910, 118172, 'fr', 'name', 'Calcul, Cognition et Neurophysiologie'),
(151911, 118172, 'en', 'name', 'Computation, Cognition and Neurophysiology'),
(151912, 118173, 'hu', 'name', 'SzƔzadvƩg AlapƭtvƔny'),
(151913, 118173, 'en', 'name', 'SzƔzadvƩg Foundation'),
(151914, 118174, 'en', 'name', 'GREENOWL: Generating RENewable resources by Optimisation of Water Living microorganisms'),
(151915, 118174, 'fr', 'name', 'GREENOWL: Valorisation des micro-organismes aquatiques pour les ressources renouvelables'),
(151916, 118175, 'en', 'name', 'Ghent University Centre for X-ray Tomography'),
(151917, 118176, 'en', 'name', 'University of New Caledonia'),
(151918, 118176, 'fr', 'name', 'UniversitƩ de la Nouvelle-CalƩdonie'),
(151919, 118177, 'en', 'name', 'COAST: Web Scale Trustworthy Collaborative Service Systems'),
(151920, 118178, 'fr', 'name', 'Dynamiques et Ʃcologie des paysages agriforestiers'),
(151921, 118179, 'en', 'name', 'Johann Heinrich von Thünen Institute Federal Research Institute for Rural Areas, Forestry and Fisheries'),
(151922, 118179, 'de', 'name', 'Johann Heinrich von Thünen-Institut'),
(151923, 118180, 'en', 'name', 'German Academic Association for Information Science'),
(151924, 118180, 'de', 'name', 'Hochschulverband Informationswissenschaft'),
(151925, 118181, 'en', 'name', 'Ceuma University'),
(151926, 118181, 'pt', 'name', 'Universidade Ceuma'),
(151927, 118182, 'en', 'name', 'National Institute of Meteorology and Hydrology'),
(151928, 118182, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¼ŠµŃ‚ŠµŠ¾Ń€Š¾Š»Š¾Š³ŠøŃ Šø Ń…ŠøŠ“Ń€Š¾Š»Š¾Š³ŠøŃ'),
(151929, 118183, 'en', 'name', 'Formal Method Laboratory'),
(151930, 118183, 'fr', 'name', 'Laboratoire MƩthodes Formelles'),
(151931, 118184, 'en', 'name', 'Aquarium of Niagara'),
(151932, 118185, 'en', 'name', 'Flinders University'),
(151933, 118186, 'en', 'name', 'Bulgarian Air Force Academy'),
(151934, 118187, 'en', 'name', 'Natural History Museum Vienna'),
(151935, 118187, 'de', 'name', 'Naturhistorisches Museum Wien'),
(151936, 118188, 'fr', 'name', 'Institut Kavli pour l''astrophysique des particules et la cosmologie');
INSERT INTO `ror_settings` VALUES
(151937, 118188, 'en', 'name', 'Kavli Institute for Particle Astrophysics and Cosmology'),
(151938, 118189, 'fr', 'name', 'ABS: Algorithmes et Biologie Structurale'),
(151939, 118189, 'en', 'name', 'ABS: Algorithms - Biology - Structure'),
(151940, 118190, 'en', 'name', 'Vishwakarma Institute of Technology'),
(151941, 118190, 'mr', 'name', 'ą¤µą¤æą¤¶ą„ą¤µą¤•ą¤°ą„ą¤®ą¤¾ ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(151942, 118191, 'en', 'name', 'FAIR Data Systems'),
(151943, 118191, 'no_lang_code', 'name', 'FAIR Data Systems (Spain)'),
(151944, 118192, 'fr', 'name', 'Direction de la Recherche Fondamentale'),
(151945, 118193, 'en', 'name', 'Engineering Science Lyon Tohoku, Materials under eXtreme conditions'),
(151946, 118194, 'fr', 'name', 'Laboratoire de Recherche sur les Sciences de la MatiĆØre'),
(151947, 118195, 'en', 'name', 'Institute of Literary Research of the Polish Academy of Sciences'),
(151948, 118195, 'pl', 'name', 'Instytut Badań Literackich Polskiej Akademii Nauk'),
(151949, 118196, 'fr', 'name', 'UnitƩ de MathƩmatiques AppliquƩes'),
(151950, 118197, 'fr', 'name', 'Laboratoire de Psychologie Sociale et Cognitive'),
(151951, 118198, 'en', 'name', 'Jigawa State College of Nursing Sciences'),
(151952, 118199, 'en', 'name', 'GEOMERIX: Geometry-driven Numerics'),
(151953, 118199, 'fr', 'name', 'GEOMERIX: La GƩometrie au Service du NumƩrique'),
(151954, 118200, 'en', 'name', 'Shri Neelkantheshwar Government Post-Graduate College'),
(151955, 118201, 'en', 'name', 'Flanders Institute for Biotechnology'),
(151956, 118201, 'nl', 'name', 'Vlaams Instituut voor Biotechnologie'),
(151957, 118202, 'pt', 'name', 'Instituto de Economia AgrĆ­cola'),
(151958, 118203, 'fr', 'name', 'Ecole des MƩtiers de l''Accompagnement Ơ la personne'),
(151959, 118204, 'da', 'name', 'Center for Regional- og Turismeforskning'),
(151960, 118204, 'en', 'name', 'Centre for Regional & Tourism Research'),
(151961, 118205, 'en', 'name', 'MARIANNE: Models and data for computational argumentatIon in natural language'),
(151962, 118205, 'fr', 'name', 'MARIANNE: Modèles et données pour l''argumentation computationnelle en langage naturel'),
(151963, 118206, 'en', 'name', 'CELESTE: mathematical statistics and learning'),
(151964, 118206, 'fr', 'name', 'CELESTE: statistique mathƩmatique et apprentissage'),
(151965, 118207, 'fr', 'name', 'Institut Pascal'),
(151966, 118208, 'no_lang_code', 'name', 'NortonLifeLock (Ireland)'),
(151967, 118209, 'no_lang_code', 'name', 'Tencent (China)'),
(151968, 118209, 'zh', 'name', 'č…¾č®ÆęŽ§č‚”ęœ‰é™å…¬åø'),
(151969, 118210, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Clermont-Ferrand'),
(151970, 118211, 'en', 'name', 'Community Health Systems - Merit Health River Oaks'),
(151971, 118212, 'fr', 'name', 'DYNAmiques et enjeux de la DIVersitƩ linguistique et culturelle'),
(151972, 118213, 'en', 'name', 'Beulah Heights University'),
(151973, 118214, 'en', 'name', 'Aarogyam (UK) CIC'),
(151974, 118215, 'en', 'name', 'Rochester Christian University'),
(151975, 118216, 'sr', 'name', 'Institut za srpski jezik Srpske akademije nauka i umetnosti'),
(151976, 118216, 'en', 'name', 'Institute for the Serbian Language of SASA'),
(151977, 118217, 'en', 'name', 'Pangang Group General Hospital'),
(151978, 118218, 'fr', 'name', 'SYCOMORES: Analyse symbolique et conception orientée composants pour des systèmes embarqués temps-réel modulaires'),
(151979, 118218, 'en', 'name', 'SYCOMORES: Symbolic analysis and Component-based design for Modular Real-Time Embedded Systems'),
(151980, 118219, 'en', 'name', 'Kaushalya the Skill University'),
(151981, 118220, 'en', 'name', 'Baden-Wuerttemberg Cooperative State University Mannheim'),
(151982, 118220, 'de', 'name', 'Duale Hochschule Baden Württemberg Mannheim'),
(151983, 118221, 'en', 'name', 'Modern Institute of Pharmaceutical Sciences'),
(151984, 118222, 'fr', 'name', 'Laboratoire MatiĆØre en Conditions ExtrĆŖmes'),
(151985, 118223, 'en', 'name', 'Cloudphysician Healthcare Pvt Ltd (India)'),
(151986, 118224, 'fr', 'name', 'PETSCRAFT: Concevoir des technologies d''amƩlioration de la vie privƩe explicables et efficaces'),
(151987, 118224, 'en', 'name', 'PETSCRAFT: Crafting Explicable and Efficient Privacy-Enhancing Technologies'),
(151988, 118225, 'fr', 'name', 'TRIBE: Pour un Internet non-conventionnel'),
(151989, 118225, 'en', 'name', 'TRIBE: inTeRnet BEyond the usual'),
(151990, 118226, 'fr', 'name', 'VALSE: ContrÓle en temps fini et estimation pour des systèmes distribués'),
(151991, 118226, 'en', 'name', 'VALSE: Finite-time control and estimation for distributed systems'),
(151992, 118227, 'id', 'name', 'Sekolah Tinggi Agama Islam Nurul Iman'),
(151993, 118228, 'fr', 'name', 'XLIM'),
(151994, 118229, 'en', 'name', 'Institute of Tax Administration'),
(151995, 118230, 'fr', 'name', 'Euronovia'),
(151996, 118231, 'en', 'name', 'Kupang State Polytechnic'),
(151997, 118231, 'id', 'name', 'Politeknik Negeri Kupang'),
(151998, 118232, 'en', 'name', 'Research Culture Society'),
(151999, 118233, 'en', 'name', 'QINFO: Optimal Information Processing with Quantum Devices'),
(152000, 118233, 'fr', 'name', 'QINFO: Traitement optimal de l''information avec des dispositifs quantiques'),
(152001, 118234, 'tr', 'name', 'Afet Ve Aci̇l Durum Yƶneti̇mi̇ Başkanliği'),
(152002, 118235, 'en', 'name', 'Anand Agricultural University'),
(152003, 118236, 'vi', 'name', 'Hį»™i Y Tįŗæ CĆ“ng Cį»™ng Việt Nam'),
(152004, 118236, 'en', 'name', 'Vietnam Public Health Association'),
(152005, 118237, 'fr', 'name', 'PLEIADE: Patterns de diversitƩ et rƩseaux de fonctions'),
(152006, 118237, 'en', 'name', 'PLEIADE: Patterns of diversity and networks of function'),
(152007, 118238, 'en', 'name', 'Ministry of Defense, Belgium'),
(152008, 118239, 'en', 'name', 'Building large instruments for neuroimaging: from population imaging to ultra-high magnetic fields'),
(152009, 118240, 'en', 'name', 'Kapalong College of Agriculture, Sciences and Technology'),
(152010, 118241, 'en', 'name', 'iFACE Academy'),
(152011, 118242, 'en', 'name', 'Centre for Plant Medicine Research'),
(152012, 118243, 'en', 'name', 'K2 Toxicology and Integrated Risk Assessment, LLC'),
(152013, 118244, 'fr', 'name', 'Centre de RƉfĆ©rence, d''Innovation, d''eXpertise et de transfert'),
(152014, 118245, 'en', 'name', 'Nursing Research Institute'),
(152015, 118246, 'id', 'name', 'Universitas Jenderal Achmad Yani Yogyakarta'),
(152016, 118247, 'en', 'name', 'MiniMax (People''s Republic of China)'),
(152017, 118248, 'fr', 'name', 'HƩmostase & Thrombose'),
(152018, 118249, 'en', 'name', 'Community Health Systems Professional Services Corporation (DBA Community Health Systems)'),
(152019, 118250, 'en', 'name', 'Kirby Institute'),
(152020, 118251, 'es', 'name', 'Universidad Hispanoamerica'),
(152021, 118252, 'en', 'name', 'Institute of Ecology of the Carpathians'),
(152022, 118253, 'fr', 'name', 'Laboratoire de sociolinguistique, d’anthropologie des pratiques langagiĆØres et de didactique des langues-cultures'),
(152023, 118254, 'fr', 'name', 'Maison de la Simulation'),
(152024, 118255, 'en', 'name', 'Bayit Balev Rehabilitation Hospital'),
(152025, 118256, 'fr', 'name', 'LIFEWARE: Computational systems biology and optimization'),
(152026, 118257, 'en', 'name', 'Netaji Nagar Day College'),
(152027, 118257, 'bn', 'name', 'ą¦Øą§‡ą¦¤ą¦¾ą¦œą§€ নগর ঔে ą¦•ą¦²ą§‡ą¦œ'),
(152028, 118257, 'kn', 'name', 'ą²Øą³‡ą²¤ą²¾ą²œą²æ ನಗರ ಔೇ ą²•ą²¾ą²²ą³‡ą²œą³'),
(152029, 118258, 'uz', 'name', 'Fargʻona politexnika instituti'),
(152030, 118258, 'en', 'name', 'Ferghana Polytechnical Institute'),
(152031, 118258, 'ru', 'name', 'Ферганский ŠŸŠ¾Š»ŠøŃ‚ехнический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(152032, 118259, 'es', 'name', 'Fundación Instituto Zuliano de Investigaciones Tecnológicas (INZIT)'),
(152033, 118259, 'en', 'name', 'Zulian Institute of Technological Research'),
(152034, 118260, 'en', 'name', 'Cruces University Hospital'),
(152035, 118260, 'es', 'name', 'Hospital de Cruces'),
(152036, 118261, 'en', 'name', 'Sendai University'),
(152037, 118261, 'ja', 'name', '仙台大学'),
(152038, 118262, 'fr', 'name', 'Laboratoire National de MƩtrologie et d''Essais'),
(152039, 118262, 'en', 'name', 'National Laboratory of Metrology and Testing'),
(152040, 118263, 'en', 'name', 'MAASAI: Models and Algorithms for Artificial Intelligence'),
(152041, 118263, 'fr', 'name', 'MAASAI: ModĆØles et algorithmes pour l''intelligence artificielle'),
(152042, 118264, 'en', 'name', 'Government College of Art & Craft'),
(152043, 118264, 'bn', 'name', 'ą¦—ą¦­ą¦°ą§ą¦Øą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦•ą¦²ą§‡ą¦œ অব ą¦†ą¦°ą§ą¦Ÿ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦•ą§ą¦°ą§ą¦Æą¦¾ą¦«ą¦Ÿ, কলকাতা'),
(152044, 118265, 'en', 'name', 'Health Research Center'),
(152045, 118265, 'ar', 'name', 'ال؄دارة العامة للخدمات Ų§Ł„Ų·ŲØŁŠŲ©'),
(152046, 118266, 'fr', 'name', 'PASCALINE: ArithmƩtique des ordinateurs, calcul formel et vƩrification formelle'),
(152047, 118266, 'en', 'name', 'PASCALINE: Computer Arithmetic, Computer Algebra and Formal Verification'),
(152048, 118267, 'en', 'name', 'Second Affiliated Hospital of Anhui Medical University'),
(152049, 118268, 'en', 'name', 'CEPS/INSTEAD'),
(152050, 118269, 'en', 'name', 'Digital Health and Care Wales'),
(152051, 118270, 'no_lang_code', 'name', 'Google (United States)'),
(152052, 118271, 'fr', 'name', 'HYCOMES: Modélisation hybride & conception par contrats pour les systèmes embarqués multi-physiques'),
(152053, 118272, 'fr', 'name', 'Laboratoire d''Imagerie BiomƩdicale Multimodale Paris-Saclay'),
(152054, 118273, 'fr', 'name', 'Laboratoire des matƩriaux composites pour la construction'),
(152055, 118273, 'en', 'name', 'Laboratory of Composite Materials for Construction'),
(152056, 118274, 'cy', 'name', 'GIG Cymru'),
(152057, 118274, 'en', 'name', 'National Health Service Wales'),
(152058, 118275, 'en', 'name', 'German Network for Tax Justice'),
(152059, 118275, 'de', 'name', 'Netzwerk Steuergerechtigkeit'),
(152060, 118276, 'en', 'name', 'Torbat Jam Faculty of Medical Sciences'),
(152061, 118276, 'fa', 'name', 'دانؓکده Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ ŲŖŲ±ŲØŲŖ Ų¬Ų§Ł…'),
(152062, 118277, 'fr', 'name', 'CEDAR: Analyse et traitement de donnƩes complexes Ơ grande Ʃchelle'),
(152063, 118277, 'en', 'name', 'CEDAR: Rich Data Exploration at Cloud Scale'),
(152064, 118278, 'en', 'name', 'Finis Terrae University'),
(152065, 118278, 'es', 'name', 'Universidad Finis Terrae'),
(152066, 118279, 'id', 'name', 'Sekolah Tinggi Ilmu Kesehatan Nasional'),
(152067, 118280, 'en', 'name', 'Barishal Engineering College'),
(152068, 118280, 'bn', 'name', 'বরিশাল ą¦‡ą¦žą§ą¦œą¦æą¦Øą¦æą¦Æą¦¼ą¦¾ą¦°ą¦æą¦‚ ą¦•ą¦²ą§‡ą¦œ'),
(152069, 118281, 'en', 'name', 'BOREAL: Knowledge Representation and Rule-Based Languages for Reasoning on Data'),
(152070, 118281, 'fr', 'name', 'BOREAL: Représentation de Connaissances et Langages à Base de Règles pour Raisonner sur les Données'),
(152071, 118282, 'en', 'name', 'Light Bridges (Spain)'),
(152072, 118283, 'es', 'name', 'Servicio Nacional de Calidad y Sanidad Vegetal y de Semillas'),
(152073, 118284, 'it', 'name', 'ETT S.p.A.'),
(152074, 118285, 'en', 'name', 'Gyeonggi Institute of Education'),
(152075, 118286, 'en', 'name', 'City St George''s, University of London'),
(152076, 118287, 'en', 'name', 'Hanoi University of Civil Engineering'),
(152077, 118287, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c XĆ¢y dį»±ng HĆ  Nį»™i'),
(152078, 118288, 'en', 'name', 'ACENTAURI: Artificial intelligence and efficient algorithms for autonomus robotics'),
(152079, 118288, 'fr', 'name', 'ACENTAURI: Intelligence artificielle et algorithmes efficaces pour la robotique autonome'),
(152080, 118289, 'en', 'name', 'Centre for Astrophysics of the University of Porto'),
(152081, 118289, 'pt', 'name', 'Centro de AstrofĆ­sica da Universidade do Porto'),
(152082, 118290, 'en', 'name', 'Atatürk Teacher Training Academy'),
(152083, 118290, 'tr', 'name', 'Atatürk Ɩğretmen Akademisi'),
(152084, 118291, 'en', 'name', 'Preschool Teacher Training College "Mihailo Palov"'),
(152085, 118291, 'ro', 'name', 'Uči strukovno vinajipasko thaj e medicinsko Ŕkola ande VrŔco'),
(152086, 118291, 'hu', 'name', 'Verseci ƓvókĆ©pző Ć©s EgĆ©szsĆ©gügyi Szakfőiskola'),
(152087, 118291, 'sr', 'name', 'Visoka strukovna vaspitačka i medicinska Ŕkola u VrŔcu'),
(152088, 118292, 'en', 'name', 'AIMS Research and Innovation Centre'),
(152089, 118293, 'en', 'name', 'MacDiarmid Institute for Advanced Materials and Nanotechnology'),
(152090, 118294, 'en', 'name', 'Nehemiah Center for Urban Leadership Development'),
(152091, 118295, 'en', 'name', 'PACAP: Pushing Architecture and Compilation for Application Performance'),
(152092, 118296, 'id', 'name', 'Sekolah Tinggi Agama Islam (STAI) Kuala Kapuas'),
(152093, 118297, 'en', 'name', 'European Association for Architectural Education'),
(152094, 118298, 'en', 'name', 'Brunel University of London'),
(152095, 118299, 'en', 'name', 'University of Limoges'),
(152096, 118299, 'fr', 'name', 'UniversitƩ de Limoges'),
(152097, 118300, 'en', 'name', 'National School of Architecture of Montpellier'),
(152098, 118300, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture Montpellier'),
(152099, 118301, 'fr', 'name', 'EPICURE: Analyse sƩmantique et compilation pour la sƩcuritƩ des environnements d''exƩcution'),
(152100, 118301, 'en', 'name', 'EPICURE: Semantic analysis and compilation for secure execution environments'),
(152101, 118302, 'en', 'name', 'The V. M. Remeslo Myronivka Institute of Wheat'),
(152102, 118302, 'uk', 'name', 'ŠœŠøŃ€Š¾Š½Ń–Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃˆŠµŠ½ŠøŃ†Ń– імені Š’. М. Ремесла ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(152103, 118303, 'en', 'name', 'Al-Qalam University'),
(152104, 118303, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القلم'),
(152105, 118304, 'en', 'name', 'SPIRALS: Self-adaptation for distributed services and large software systems'),
(152106, 118305, 'en', 'name', 'CAMIN: Control of Artificial Movement & Intuitive Neuroprosthesis'),
(152107, 118305, 'fr', 'name', 'CAMIN: ContrÓle Artificiel de Mouvements et de Neuroprothèses Intuitives'),
(152108, 118306, 'fr', 'name', 'Laboratoire Microorganismes GƩnome et Environnement'),
(152109, 118307, 'id', 'name', 'Konservasi Indonesia'),
(152110, 118308, 'es', 'name', 'Centro de Labio y Paladar Hendido ā€œDra. Leonorilda Ɓlvarez Noriegaā€'),
(152111, 118309, 'id', 'name', 'Universitas Bani Saleh'),
(152112, 118310, 'en', 'name', 'Department of Transport and Planning'),
(152113, 118311, 'en', 'name', 'DEFROST: DEFormable Robotics SofTware'),
(152114, 118311, 'fr', 'name', 'DEFROST: Logiciels pour robots dƩformables'),
(152115, 118312, 'fr', 'name', 'SPLITS: Languages de Programmation SƩcures et Outils pour la SƩcuritƩ'),
(152116, 118312, 'en', 'name', 'SPLITS: Secure Programming Languages & Tools for Security'),
(152117, 118313, 'fr', 'name', 'Centre Inria de l''UniversitƩ de Lille'),
(152118, 118313, 'en', 'name', 'Inria Centre at the University of Lille'),
(152119, 118314, 'no', 'name', 'Tannhelsetjenestens kompetansesenter Ƙst'),
(152120, 118315, 'en', 'name', 'St Vincent''s Hospital Sydney'),
(152121, 118316, 'en', 'name', 'MEMPHIS: Modeling Enablers for Multi-PHysics and InteractionS'),
(152122, 118316, 'fr', 'name', 'MEMPHIS: Modèles et méthodes pour les problèmes multiphysiques et interactions'),
(152123, 118317, 'en', 'name', 'Alderney Wildlife Trust'),
(152124, 118318, 'en', 'name', 'Forecasting Research Institute'),
(152125, 118319, 'fr', 'name', 'EPIONE: E-Patient : Images, données & mOdèles pour la médeciNe numériquE'),
(152126, 118319, 'en', 'name', 'EPIONE: E-Patient: Images, Data & MOdels for e-MediciNE'),
(152127, 118320, 'hr', 'name', 'Srednja Å”kola Andrije Ljudevita Adamića'),
(152128, 118321, 'en', 'name', 'Microsoft Research New England (United States)'),
(152129, 118322, 'en', 'name', 'Bogor Agricultural Development Polytechnic'),
(152130, 118323, 'en', 'name', 'MOSAIC: MOrphogenesis Simulation and Analysis In siliCo'),
(152131, 118323, 'fr', 'name', 'Simulation et Analyse de la morphogenèse in siliCo'),
(152132, 118324, 'fr', 'name', 'MALT: Apprentissage Automatique avec Contraintes Temporelles'),
(152133, 118324, 'en', 'name', 'MALT: MAchine Learning with Temporal Constraints'),
(152134, 118325, 'uz', 'name', 'Tartus universiteti'),
(152135, 118325, 'en', 'name', 'University of Tartus'),
(152136, 118325, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طرطوس'),
(152137, 118326, 'id', 'name', 'Politeknik Pelayaran Surabaya'),
(152138, 118326, 'en', 'name', 'Surabaya Maritime Polytechnic'),
(152139, 118327, 'es', 'name', 'Universidad de Desarrollo Sustentable'),
(152140, 118328, 'fr', 'name', 'Institut National de SantƩ Publique du QuƩbec'),
(152141, 118329, 'en', 'name', 'Great Sand Dunes National Park and Preserve'),
(152142, 118329, 'es', 'name', 'Parque nacional y reserva Grandes Dunas de Arena'),
(152143, 118330, 'en', 'name', 'Namangan Institute of Engineering and Technology'),
(152144, 118330, 'uz', 'name', 'Namangan muhandislik-texnologiya instituti'),
(152145, 118331, 'es', 'name', 'Hospital Central Sur de Alta Especialidad PEMEX'),
(152146, 118332, 'en', 'name', 'DIVERSE: Diversity-centric Software Engineering'),
(152147, 118333, 'en', 'name', 'Tam Anh General Hospital, Ha Noi'),
(152148, 118334, 'en', 'name', 'IROKO: Data Driven Environmental Sciences'),
(152149, 118334, 'fr', 'name', 'IROKO: Sciences environnementales guidƩes par les donnƩes'),
(152150, 118335, 'fr', 'name', 'CARMEN: ModƩlisation et calculs pour l''Ʃlectrophysiologie cardiaque'),
(152151, 118336, 'en', 'name', 'M.G. Kholodny Institute of Botany'),
(152152, 118337, 'en', 'name', 'Council of Agriculture'),
(152153, 118338, 'en', 'name', 'Department of Jobs, Precincts and Regions'),
(152154, 118339, 'en', 'name', 'GAMBLE: Geometric Algorithms & Models Beyond the Linear & Euclidean realm'),
(152155, 118339, 'fr', 'name', 'GAMBLE: Géométrie, Algorithmes et Modèles Bien au-delà du Linéaire et de l''Euclidien'),
(152156, 118340, 'en', 'name', 'Wisconsin Geological and Natural History Survey'),
(152157, 118341, 'en', 'name', 'Ilocos Sur Polytechnic State College'),
(152158, 118342, 'id', 'name', 'Sekolah Tinggi Agama Islam Al-Hikmah'),
(152159, 118343, 'en', 'name', 'Institute for Byzantine Studies SASA'),
(152160, 118343, 'sr', 'name', 'VizantoloŔki institut SANU'),
(152161, 118344, 'fr', 'name', 'Synthèse et Isolement de Molécules BioActives'),
(152162, 118345, 'es', 'name', 'Universidad TƩcnica del Norte'),
(152163, 118346, 'en', 'name', 'OPIS: OPtImization for large Scale biomedical data'),
(152164, 118346, 'fr', 'name', 'OPIS: OPtimisation Imagerie et SantƩ'),
(152165, 118347, 'fr', 'name', 'PARTOUT: Automatisation et ReprƩsenTation: fOndation du calcUl et de la dƩducTion'),
(152166, 118347, 'en', 'name', 'PARTOUT: Proof Automation and RepresenTation: a fOundation of compUtation and deducTion'),
(152167, 118348, 'en', 'name', 'MANAO: Melting the frontiers between Light, Shape and Matter'),
(152168, 118349, 'en', 'name', 'CASTING: Cancer dynAmicS, adapTation and modelING'),
(152169, 118349, 'fr', 'name', 'CASTING: Dynamiques du Cancer, adaptation et modƩlisation'),
(152170, 118350, 'en', 'name', 'Faculty of Design'),
(152171, 118351, 'en', 'name', 'AVALON: Algorithms and Software Architectures for Distributed and HPC Platforms'),
(152172, 118352, 'en', 'name', 'MATHERIALS: MATHematics for MatERIALS'),
(152173, 118353, 'en', 'name', 'TOCCATA: Certified Programs, Certified Tools, Certified Floating-Point Computations'),
(152174, 118354, 'de', 'name', 'Bundesinstitut für Risikobewertung'),
(152175, 118354, 'en', 'name', 'Federal Institute for Risk Assessment'),
(152176, 118355, 'en', 'name', 'Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support'),
(152177, 118356, 'es', 'name', 'Centro de Investigaciones Científicas y Tecnológicas de Extremadura'),
(152178, 118357, 'fr', 'name', 'Ɖcole normale supĆ©rieure de Fontenay-Saint-Cloud'),
(152179, 118358, 'en', 'name', 'Evidence for Sustainable Human Development Systems in Africa (Cameroon)'),
(152180, 118359, 'en', 'name', 'Hospital for Tropical Diseases'),
(152181, 118360, 'en', 'name', 'Kavli Energy NanoScience Institute'),
(152182, 118361, 'en', 'name', 'Japan Ostomy Association'),
(152183, 118361, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Ŗć‚¹ćƒˆćƒŸćƒ¼å”ä¼š'),
(152184, 118362, 'en', 'name', 'Japan Security Research Association Corporation'),
(152185, 118362, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå®‰å…Øäæéšœę‡‡č©±ä¼š'),
(152186, 118363, 'ro', 'name', 'Institutul National de Cercetare-Dezvoltare pentru Pedologie Agrochimie si Protectia Mediului'),
(152187, 118363, 'en', 'name', 'National Research and Development Institute for Soil Science Agrochemistry and Environment'),
(152188, 118364, 'en', 'name', 'Japan Livestock Industry Associaciton'),
(152189, 118364, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäø­å¤®ē•œē”£ä¼š'),
(152190, 118365, 'en', 'name', 'Muroran Medical Association'),
(152191, 118365, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå®¤č˜­åø‚åŒ»åø«ä¼š'),
(152192, 118366, 'en', 'name', 'Purdue University in Indianapolis'),
(152193, 118367, 'en', 'name', 'Japan Consumers'' Association'),
(152194, 118367, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę¶ˆč²»č€…å”ä¼š'),
(152195, 118368, 'en', 'name', 'Ecological Life and Culture Organization'),
(152196, 118368, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē’°å¢ƒē”Ÿę“»ę–‡åŒ–ę©Ÿę§‹'),
(152197, 118369, 'no_lang_code', 'name', 'MedSIR (Spain)'),
(152198, 118370, 'en', 'name', 'Baycrest Centre for Geriatric Care'),
(152199, 118371, 'es', 'name', 'Conservatorio del Tolima'),
(152200, 118371, 'en', 'name', 'Conservatory of Tolima'),
(152201, 118372, 'en', 'name', 'New Jersey Geological and Water Survey'),
(152202, 118373, 'hr', 'name', 'Centar za kliničku primjenu neuroznanosti'),
(152203, 118373, 'en', 'name', 'Center for Clinical Research in Neuroscience'),
(152204, 118374, 'fr', 'name', 'ESTA Ecole SupƩrieure des Technologies et des Affaires'),
(152205, 118374, 'en', 'name', 'ESTA School of Business and Technology'),
(152206, 118375, 'en', 'name', 'Parks & Open Space Association of JAPAN'),
(152207, 118375, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…¬åœ’ē·‘åœ°å”ä¼š'),
(152208, 118376, 'fr', 'name', 'Institut de recherche agronomique et zootechnique'),
(152209, 118376, 'en', 'name', 'Institute for Agronomic and Zootechnical Research'),
(152210, 118377, 'no_lang_code', 'name', 'MBF Bioscience (United States)'),
(152211, 118378, 'de', 'name', 'Institut für Bioprozess- und Analysenmesstechnik'),
(152212, 118378, 'en', 'name', 'Institute for Bioprocessing and Analytical Measurement Techniques'),
(152213, 118379, 'en', 'name', 'Employment Research Corporation'),
(152214, 118379, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›‡ē”Øå•é”Œē ”ē©¶ä¼š'),
(152215, 118380, 'en', 'name', 'The Japan Design Space Association'),
(152216, 118380, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē©ŗé–“ćƒ‡ć‚¶ć‚¤ćƒ³å”ä¼š'),
(152217, 118381, 'no_lang_code', 'name', 'InflowControl (Norway)'),
(152218, 118382, 'en', 'name', 'Sretensky Theological Academy'),
(152219, 118382, 'ru', 'name', 'Š”Ń€ŠµŃ‚ŠµŠ½ŃŠŗŠ°Ń Š“ŃƒŃ…Š¾Š²Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(152220, 118383, 'fr', 'name', 'Institut de cardiologie de l''UniversitƩ d''Ottawa'),
(152221, 118383, 'en', 'name', 'Ottawa Heart Institute'),
(152222, 118384, 'en', 'name', 'Life Groenkloof Hospital'),
(152223, 118385, 'no_lang_code', 'name', 'Research Center for Non Destructive Testing (Austria)'),
(152224, 118386, 'en', 'name', 'Centre for Development of Telematics'),
(152225, 118386, 'hi', 'name', 'ą¤Ÿą„‡ą¤²ą„€ą¤®ą„ˆą¤Ÿą¤æą¤•ą„ą¤ø विकास ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(152226, 118387, 'en', 'name', 'National Center of Radiobiology and Radiation Protection'),
(152227, 118387, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ Ń†ŠµŠ½Ń‚ŃŠŃ€ по Ń€Š°Š“ŠøŠ¾Š±ŠøŠ¾Š»Š¾Š³ŠøŃ Šø раГиационна защита'),
(152228, 118388, 'en', 'name', 'Observer Research Foundation'),
(152229, 118389, 'en', 'name', 'THE Japan WRITERS'' Association'),
(152230, 118389, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę–‡č—å®¶å”ä¼š'),
(152231, 118390, 'en', 'name', 'Northwestern Health Sciences University'),
(152232, 118391, 'en', 'name', 'University of Livingstonia'),
(152233, 118392, 'en', 'name', 'Japan Fruit Tree Seedling & Clonal Association'),
(152234, 118392, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęžœęØ¹ēØ®č‹—å”ä¼š'),
(152235, 118393, 'en', 'name', 'Kitakyushu International Techno-Cooperative Association'),
(152236, 118393, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ä¹å·žå›½éš›ęŠ€č”“å”åŠ›å”ä¼š'),
(152237, 118394, 'en', 'name', 'Agostinho Neto Hospital'),
(152238, 118394, 'pt', 'name', 'Hospital Agostinho Neto'),
(152239, 118394, 'fr', 'name', 'HƓpital Agostinho Neto'),
(152240, 118395, 'en', 'name', 'The Japan Opera Foundation'),
(152241, 118395, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚Ŗćƒšćƒ©ęŒÆčˆˆä¼š'),
(152242, 118396, 'en', 'name', 'Highline College'),
(152243, 118397, 'en', 'name', 'ARCA University of Applied Sciences'),
(152244, 118397, 'hr', 'name', 'VeleučiliŔte ARCA'),
(152245, 118398, 'en', 'name', 'Japan Institute of Logistics Systems'),
(152246, 118398, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ­ć‚øć‚¹ćƒ†ć‚£ć‚Æć‚¹ć‚·ć‚¹ćƒ†ćƒ å”ä¼š'),
(152247, 118399, 'en', 'name', 'Japan Corporate Auditors Association'),
(152248, 118399, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē›£ęŸ»å½¹å”ä¼š'),
(152249, 118400, 'en', 'name', 'Moriya Foundation'),
(152250, 118400, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå®ˆå±‹ē•™å­¦ē”Ÿäŗ¤ęµå”ä¼š'),
(152251, 118401, 'en', 'name', 'Nebraska Methodist College'),
(152252, 118402, 'es', 'name', 'Universidad Autónoma Juan Misael Saracho'),
(152253, 118403, 'en', 'name', 'German Peruvian Private University'),
(152254, 118403, 'es', 'name', 'Universidad Privada Peruano Alemana'),
(152255, 118404, 'en', 'name', 'Iligan Medical Center College'),
(152256, 118405, 'no_lang_code', 'name', 'Payap University'),
(152257, 118405, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø²ąø¢ąø±ąøž'),
(152258, 118406, 'en', 'name', 'Nansei Shoto Industrial Advancement Center'),
(152259, 118406, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå—č„æåœ°åŸŸē”£ę„­ę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(152260, 118407, 'es', 'name', 'Universidad de Guanajuato Campus Celaya-Salvatierra'),
(152261, 118407, 'en', 'name', 'University of Guanajuato, Celaya-Salvatierra Campus'),
(152262, 118408, 'en', 'name', 'Construction Industry Information Center'),
(152263, 118408, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ę„­ęƒ…å ±ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(152264, 118409, 'en', 'name', 'Military Institute of Engineer Technology'),
(152265, 118410, 'en', 'name', 'Astellas Foundation for Research on Metabolic Disorders'),
(152266, 118410, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚¹ćƒ†ćƒ©ć‚¹ē—…ę…‹ä»£č¬ē ”ē©¶ä¼š'),
(152267, 118411, 'no_lang_code', 'name', 'Shitennoji University'),
(152268, 118411, 'ja', 'name', 'å››å¤©ēŽ‹åÆŗå¤§å­¦'),
(152269, 118412, 'en', 'name', 'General Hospital Pula'),
(152270, 118412, 'hr', 'name', 'Opća bolnica Pula'),
(152271, 118412, 'it', 'name', 'Ospedale Generale di Pola'),
(152272, 118413, 'en', 'name', 'TechConcepts B.V.'),
(152273, 118413, 'no_lang_code', 'name', 'TechConcepts B.V. (Netherlands)'),
(152274, 118414, 'en', 'name', 'Institute for Nuclear Research Pitesti'),
(152275, 118415, 'en', 'name', 'Children and Families Agency'),
(152276, 118415, 'ja', 'name', 'こども家庭庁'),
(152277, 118416, 'en', 'name', 'Concern Worldwide'),
(152278, 118417, 'en', 'name', 'Nagoya Port Foundation'),
(152279, 118417, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹ćæćŖćØęŒÆčˆˆč²”å›£'),
(152280, 118418, 'en', 'name', 'Japan Leprosy Mission'),
(152281, 118418, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗJAPAN LEPROSY MISSION'),
(152282, 118419, 'en', 'name', 'Deva Nagri College'),
(152283, 118419, 'hi', 'name', 'ą¤¦ą„‡ą¤µą¤Øą¤—ą¤°ą„€ ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤®ą„‡ą¤°ą¤ '),
(152284, 118420, 'en', 'name', 'Sri Dharmasthala Manjunatheshwara College of Ayurveda & Hospital Udupi'),
(152285, 118420, 'kn', 'name', 'ą²Žą²øą³ą²”ą²æą²Žą²‚ ą²†ą²Æą³ą²°ą³ą²µą³†ą³•ą²¦ ą²•ą²¾ą²²ą³†ą³•ą²œą³'),
(152286, 118421, 'en', 'name', 'Health, Labour and Welfare Statistics Association'),
(152287, 118421, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŽšē”ŸåŠ“åƒēµ±čØˆå”ä¼š'),
(152288, 118422, 'es', 'name', 'Universidad de Kentucky'),
(152289, 118422, 'en', 'name', 'University of Kentucky'),
(152290, 118422, 'fr', 'name', 'UniversitƩ du kentucky'),
(152291, 118423, 'en', 'name', 'Aditya University'),
(152292, 118423, 'te', 'name', 'ą°†ą°¦ą°æą°¤ą±ą°Æ ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(152293, 118424, 'es', 'name', 'Instituto de Historia Antigua Oriental "Dr. Abraham Rosenvasser"'),
(152294, 118425, 'en', 'name', 'Setouchi Vocational College of Career and Professional Studies'),
(152295, 118425, 'ja', 'name', 'ć›ćØć†ć”č¦³å…‰å°‚é–€č·ēŸ­ęœŸå¤§å­¦'),
(152296, 118426, 'en', 'name', 'Japan Municipal Development Corporation'),
(152297, 118426, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½åø‚ē”ŗę‘ęŒÆčˆˆå”ä¼š'),
(152298, 118427, 'pt', 'name', 'Secretaria de Estado da Educação de GoiÔs'),
(152299, 118427, 'en', 'name', 'Secretary of State for Education of GoiƔs'),
(152300, 118428, 'en', 'name', 'The Japan-Vietnam Association'),
(152301, 118428, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗćƒ™ćƒˆćƒŠćƒ å”ä¼š'),
(152302, 118429, 'en', 'name', 'Blue Sea and Green Land Foundation'),
(152303, 118429, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ–ćƒ«ćƒ¼ć‚·ćƒ¼ćƒ»ć‚¢ćƒ³ćƒ‰ćƒ»ć‚°ćƒŖćƒ¼ćƒ³ćƒ©ćƒ³ćƒ‰č²”å›£'),
(152304, 118430, 'en', 'name', 'University of Judicial Sciences and Administrative Services'),
(152305, 118430, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… Ł‚Ų¶Ų§ŪŒŪŒ و Ų®ŲÆŁ…Ų§ŲŖ اداری'),
(152306, 118431, 'de', 'name', 'HSD Hochschule Dƶpfer'),
(152307, 118432, 'en', 'name', 'The Shipbuilders'' Association of Japan'),
(152308, 118432, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é€ čˆ¹å·„ę„­ä¼š'),
(152309, 118433, 'nl', 'name', 'Rijndam Revalidatiecentrum'),
(152310, 118434, 'en', 'name', 'Stillman College'),
(152311, 118435, 'en', 'name', 'Hanoi Law University'),
(152312, 118435, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Luįŗ­t HĆ  Nį»™i'),
(152313, 118436, 'en', 'name', 'Foundation of Social Development for Senior Citizens'),
(152314, 118436, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé•·åÆæē¤¾ä¼šé–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(152315, 118437, 'en', 'name', 'Mitsui Life Social Welfare Foundation'),
(152316, 118437, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø‰äŗ•ē”Ÿå‘½åŽšē”Ÿč²”å›£'),
(152317, 118438, 'en', 'name', 'Global Climate Forum'),
(152318, 118439, 'en', 'name', 'Adirondack Ecological Center'),
(152319, 118440, 'en', 'name', 'Japan Forming Machinery Association'),
(152320, 118440, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›åœ§ę©Ÿę¢°å·„ę„­ä¼š'),
(152321, 118441, 'en', 'name', 'Foreign Correspondents'' Club of Japan'),
(152322, 118441, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å¤–å›½ē‰¹ę“¾å“”å”ä¼š'),
(152323, 118442, 'en', 'name', 'Kalinga Institute of Social Sciences'),
(152324, 118442, 'or', 'name', 'ą¬•ą¬³ą¬æą¬™ą­ą¬— ą¬‡ą¬Øą¬·ą­ą¬Ÿą¬æą¬šą­ą­Ÿą­ą¬Ÿ ଅଫ ସୋସିଆଲ ą¬øą¬¾ą¬‡ą¬Øą­ą¬ø'),
(152325, 118443, 'ro', 'name', 'Institutul de Cercetari Biologice Cluj-Napoca'),
(152326, 118444, 'en', 'name', 'Children''s Hospital Srebrnjak'),
(152327, 118444, 'hr', 'name', 'Dječja Bolnica Srebrnjak'),
(152328, 118445, 'en', 'name', 'Qatar Museums'),
(152329, 118445, 'ar', 'name', 'Ł‡ŁŠŲ¦Ų© متاحف قطر'),
(152330, 118446, 'en', 'name', 'Raj Rishi Bhartrihari Matsya University'),
(152331, 118446, 'hi', 'name', 'राज ऋषि ą¤­ą¤°ą„ą¤¤ą„ƒą¤¹ą¤°ą¤æ ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, अलवर'),
(152332, 118447, 'pt', 'name', 'Hemorio'),
(152333, 118448, 'no_lang_code', 'name', 'First Welding Company (Slovakia)'),
(152334, 118449, 'en', 'name', 'Indiana Biosciences Research Institute'),
(152335, 118450, 'en', 'name', 'Tiffin University'),
(152336, 118451, 'en', 'name', 'Okinawa Prefectual Center Of Constructional Technology'),
(152337, 118451, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę²–ēø„ēœŒå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(152338, 118452, 'en', 'name', 'Technological Institute of Castilla y León'),
(152339, 118453, 'en', 'name', 'Japan Association for Educational Broadcasting'),
(152340, 118453, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę”¾é€ę•™č‚²å”ä¼š'),
(152341, 118454, 'en', 'name', 'Rishi Bankim Chandra College'),
(152342, 118454, 'hi', 'name', 'ऋषि बंकिम ą¤šą¤‚ą¤¦ą„ą¤° ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(152343, 118454, 'bn', 'name', 'ঋষি ą¦¬ą¦™ą§ą¦•ą¦æą¦® ą¦šą¦Øą§ą¦¦ą§ą¦° ą¦•ą¦²ą§‡ą¦œ'),
(152344, 118454, 'kn', 'name', 'ರಿಷಿ ą²¬ą²‚ą²•ą²æą²®ą³ ą²šą²‚ą²¦ą³ą²° ą²•ą²¾ą²²ą³‡ą²œą³ą²—ą²³ą³'),
(152345, 118455, 'fr', 'name', 'Institut Scientifique de Service Public'),
(152346, 118456, 'en', 'name', 'Georgian College'),
(152347, 118457, 'en', 'name', 'Tohoku Economic Federation'),
(152348, 118457, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę±åŒ—ēµŒęøˆé€£åˆä¼š'),
(152349, 118458, 'en', 'name', 'Georgian Institute of Public Affairs'),
(152350, 118458, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒ–įƒįƒ’įƒįƒ“įƒįƒ”įƒ‘įƒ įƒ˜įƒ• įƒ”įƒįƒ„įƒ›įƒ”įƒ—įƒ ინეტიტუტი'),
(152351, 118459, 'no_lang_code', 'name', 'LanzaTech (New Zealand)'),
(152352, 118460, 'en', 'name', 'Elsahel Teaching Hospital Cairo Egypt'),
(152353, 118461, 'pt', 'name', 'Museu EtnogrƔfico da Praia'),
(152354, 118461, 'en', 'name', 'Praia Ethnographic Museum'),
(152355, 118462, 'es', 'name', 'Universidad Iberoamericana'),
(152356, 118463, 'no_lang_code', 'name', 'Teck (Canada)'),
(152357, 118464, 'en', 'name', 'Shimonoseki City University'),
(152358, 118464, 'ja', 'name', '下関市立大学'),
(152359, 118465, 'en', 'name', 'The Maritime Human Resource Institute, Japan'),
(152360, 118465, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęµ·ęŠ€ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(152361, 118466, 'en', 'name', 'Japanese Association for Social Work Education'),
(152362, 118466, 'ja', 'name', 'ę—„ęœ¬ć‚½ćƒ¼ć‚·ćƒ£ćƒ«ćƒÆćƒ¼ć‚Æę•™č‚²å­¦ę ”é€£ē›Ÿ'),
(152363, 118467, 'es', 'name', 'Instituto de GeografĆ­a Tropical'),
(152364, 118468, 'en', 'name', 'Fullerton College'),
(152365, 118469, 'en', 'name', 'The Japanese Society of Microscopy'),
(152366, 118469, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é”•å¾®é”å­¦ä¼š'),
(152367, 118470, 'en', 'name', 'Chadian Institute of Agronomic Research for Development'),
(152368, 118470, 'fr', 'name', 'Institut Tchadien de Recherche Agronomique pour le DƩveloppement'),
(152369, 118471, 'ro', 'name', 'Academia Fortelor Aeriene "Henri Coandă"'),
(152370, 118471, 'en', 'name', 'Henri Coanda Air Force Academy'),
(152371, 118472, 'en', 'name', 'Japan Association of Kidney Disease Patients'),
(152372, 118472, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½č…Žč‡“ē—…å”č­°ä¼š'),
(152373, 118473, 'en', 'name', 'Tamansiswa Palembang University'),
(152374, 118473, 'id', 'name', 'Universitas Tamansiswa Palembang'),
(152375, 118474, 'en', 'name', 'Raritan Valley Community College'),
(152376, 118475, 'en', 'name', 'Chigasaki Medical Association'),
(152377, 118475, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗčŒ…ćƒ¶å“ŽåŒ»åø«ä¼š'),
(152378, 118476, 'en', 'name', 'Brevard College'),
(152379, 118477, 'en', 'name', 'Biophics'),
(152380, 118478, 'en', 'name', 'Fukui International Association'),
(152381, 118478, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē¦äŗ•ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(152382, 118479, 'fr', 'name', 'Centre Hospitalier du Rouvray'),
(152383, 118480, 'en', 'name', 'Cavendish University Uganda'),
(152384, 118481, 'en', 'name', 'Jadec'),
(152385, 118481, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčƒ½åŠ›é–‹ē™ŗå·„å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(152386, 118482, 'en', 'name', 'KCA University'),
(152387, 118483, 'en', 'name', 'Japan Hospice Palliative Care Foundation'),
(152388, 118483, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ›ć‚¹ćƒ”ć‚¹ćƒ»ē·©å’Œć‚±ć‚¢ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(152389, 118484, 'en', 'name', 'Jaypee Institute of Information Technology'),
(152390, 118484, 'hi', 'name', 'ą¤œą„‡ą¤Ŗą„€ ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤‡ą¤Øą„ą¤«ą„‰ą¤°ą„ą¤®ą„‡ą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(152391, 118485, 'no_lang_code', 'name', 'MemBrain (Czechia)'),
(152392, 118486, 'de', 'name', 'Hochschule für Polizei und Ɩffentliche Verwaltung Nordrhein-Westfalen'),
(152393, 118486, 'en', 'name', 'University for Police and Public Administration North Rhine-Westphalia'),
(152394, 118487, 'en', 'name', 'Condominium Management Center'),
(152395, 118487, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒžćƒ³ć‚·ćƒ§ćƒ³ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(152396, 118488, 'no_lang_code', 'name', 'Michael Baker International (United States)'),
(152397, 118489, 'es', 'name', 'Universidad de Guanajuato'),
(152398, 118489, 'en', 'name', 'University of Guanajuato'),
(152399, 118490, 'en', 'name', 'Indian Institute of Teacher Education'),
(152400, 118491, 'en', 'name', 'Egale Canada'),
(152401, 118492, 'es', 'name', 'Universidad del Caribe (UNICARIBE)'),
(152402, 118493, 'es', 'name', 'Universidad Adventista Dominicana'),
(152403, 118494, 'en', 'name', 'The Japan Society for Technology of Plasticity'),
(152404, 118494, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å”‘ę€§åŠ å·„å­¦ä¼š'),
(152405, 118495, 'en', 'name', 'Dar es Salaam Institute of Technology'),
(152406, 118496, 'en', 'name', 'The Society of Rheology, Japan'),
(152407, 118496, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ¬ć‚Ŗćƒ­ć‚øćƒ¼å­¦ä¼š'),
(152408, 118497, 'en', 'name', 'Japan Choral Association'),
(152409, 118497, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬åˆå”±é€£ē›Ÿ'),
(152410, 118498, 'en', 'name', 'Rabindra Bharati University'),
(152411, 118498, 'hi', 'name', 'ą¤°ą¤µą„€ą¤Øą„ą¤¦ą„ą¤° ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(152412, 118498, 'bn', 'name', 'ą¦°ą¦¬ą§€ą¦Øą§ą¦¦ą§ą¦°ą¦­ą¦¾ą¦°ą¦¤ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(152413, 118499, 'en', 'name', 'Travancore medicity medical College hospital'),
(152414, 118500, 'fr', 'name', 'Cegep Edouard Montpetit'),
(152415, 118501, 'en', 'name', 'The Society of Fiber Science and Technology, Japan'),
(152416, 118501, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē¹Šē¶­å­¦ä¼š'),
(152417, 118502, 'en', 'name', 'Institute of Chartered Financial Analysts of India University, Jaipur'),
(152418, 118503, 'en', 'name', 'Kyushu Industrial Advancement Center'),
(152419, 118503, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä¹å·žåœ°åŸŸē”£ę„­ę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(152420, 118504, 'en', 'name', 'Japan 2x4 Home Builders Association'),
(152421, 118504, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ„ćƒ¼ćƒć‚¤ćƒ•ć‚©ćƒ¼å»ŗēÆ‰å”ä¼š'),
(152422, 118505, 'no_lang_code', 'name', 'Blinn College'),
(152423, 118506, 'en', 'name', 'THE Tokai Foundation For Gender Studies'),
(152424, 118506, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±ęµ·ć‚øć‚§ćƒ³ćƒ€ćƒ¼ē ”ē©¶ę‰€'),
(152425, 118507, 'en', 'name', 'The Telecommunications Association'),
(152426, 118507, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—é€šäæ”å”ä¼š'),
(152427, 118508, 'en', 'name', 'Al-Khwarizmi University'),
(152428, 118509, 'en', 'name', 'THE Society Of Rubber Science And TECHNOLOGY, Japan'),
(152429, 118509, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚“ćƒ å”ä¼š'),
(152430, 118510, 'no_lang_code', 'name', 'Aptima (United States)'),
(152431, 118511, 'en', 'name', 'Pontifical Athenaeum Regina Apostolorum'),
(152432, 118511, 'it', 'name', 'Pontificio Ateneo Regina Apostolorum'),
(152433, 118512, 'en', 'name', 'Meguro Medical Association'),
(152434, 118512, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē›®é»’åŒŗåŒ»åø«ä¼š'),
(152435, 118513, 'de', 'name', 'MedAustron'),
(152436, 118514, 'en', 'name', 'Institute of Health Information and Statistics'),
(152437, 118514, 'cs', 'name', 'Ústav zdravotnických informací a statistiky ČR'),
(152438, 118515, 'en', 'name', 'Hardin–Simmons University'),
(152439, 118516, 'en', 'name', 'Osaka Dental Hygienists'' Association'),
(152440, 118516, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗåŗœę­Æē§‘č”›ē”Ÿå£«ä¼š'),
(152441, 118517, 'en', 'name', 'German Plastics Center'),
(152442, 118517, 'no_lang_code', 'name', 'Süddeutsches Kunststoff-Zentrum (Germany)'),
(152443, 118518, 'en', 'name', 'Gurugram University'),
(152444, 118518, 'hi', 'name', 'ą¤—ą„ą¤°ą„ą¤—ą„ą¤°ą¤¾ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(152445, 118519, 'no_lang_code', 'name', 'DNAnexus (United States)'),
(152446, 118520, 'en', 'name', 'Heat Pump and Thermal Storage Technology Center of Japan'),
(152447, 118520, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ’ćƒ¼ćƒˆćƒćƒ³ćƒ—ćƒ»č“„ē†±ć‚»ćƒ³ć‚æćƒ¼'),
(152448, 118521, 'en', 'name', 'Galen College of Nursing'),
(152449, 118522, 'en', 'name', 'Japan Anchor Association'),
(152450, 118522, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ³ć‚«ćƒ¼å”ä¼š'),
(152451, 118523, 'no_lang_code', 'name', 'PT Bio Farma (Indonesia)'),
(152452, 118524, 'en', 'name', 'YMCA Nagasaki'),
(152453, 118524, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé•·å“ŽYMCA'),
(152454, 118525, 'no_lang_code', 'name', 'Asuragen (United States)'),
(152455, 118526, 'en', 'name', 'Houston Health and Human Services Department'),
(152456, 118527, 'fr', 'name', 'Dauphine Recherches Juridiques'),
(152457, 118528, 'en', 'name', 'Japan Machine Tool Builders'' Association'),
(152458, 118528, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·„ä½œę©Ÿę¢°å·„ę„­ä¼š'),
(152459, 118529, 'hr', 'name', 'SveučiliŔte u Splitu'),
(152460, 118529, 'en', 'name', 'University of Split'),
(152461, 118529, 'sr', 'name', 'Š”Š²ŠµŃƒŃ‡ŠøŠ»ŠøŃˆŃ‚Šµ у Š”ŠæŠ»ŠøŃ‚Ńƒ'),
(152462, 118530, 'pt', 'name', 'Escola Superior de Enfermagem de Santa Maria'),
(152463, 118531, 'en', 'name', 'Menoufia University'),
(152464, 118531, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŁˆŁŁŠŲ©ā€Ž'),
(152465, 118532, 'fr', 'name', 'Centre Hospitalier de Mouscron'),
(152466, 118533, 'en', 'name', 'University of Occupational Safety Management in Katowice'),
(152467, 118534, 'en', 'name', 'Gynuity Health Projects'),
(152468, 118535, 'en', 'name', 'Ehime Prefectural Nuclear Safety Center'),
(152469, 118535, 'ja', 'name', 'ę„›åŖ›ēœŒåŽŸå­åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(152470, 118536, 'en', 'name', 'Wood Technological Association of Japan'),
(152471, 118536, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęœØęåŠ å·„ęŠ€č”“å”ä¼š'),
(152472, 118537, 'fr', 'name', 'Institut des Sciences AppliquƩes et de la Simulation pour les Ʃnergies bas carbone'),
(152473, 118538, 'en', 'name', 'FATA University'),
(152474, 118538, 'ur', 'name', 'فاٹا ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(152475, 118538, 'ps', 'name', 'فاټا Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(152476, 118539, 'no_lang_code', 'name', 'BIA Separations (Slovenia)'),
(152477, 118540, 'en', 'name', 'Premedix'),
(152478, 118541, 'en', 'name', 'Scaffolding and Construction Equipment Association of Japan'),
(152479, 118541, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗä»®čØ­å·„ę„­ä¼š'),
(152480, 118542, 'es', 'name', 'Instituto Valenciano de la Edificación'),
(152481, 118543, 'en', 'name', 'Anticancer Fund'),
(152482, 118543, 'nl', 'name', 'Antikankerfonds'),
(152483, 118543, 'fr', 'name', 'Fonds Anticancer'),
(152484, 118544, 'en', 'name', 'Hokkaido Agricultural Public corporation'),
(152485, 118544, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“č¾²ę„­å…¬ē¤¾'),
(152486, 118545, 'en', 'name', 'Asia e University'),
(152487, 118546, 'en', 'name', 'Health Systems Trust'),
(152488, 118547, 'hr', 'name', 'Opća bolnica Šibenik'),
(152489, 118547, 'en', 'name', 'Scientific Unit-General Hospital Å ibenik'),
(152490, 118548, 'no_lang_code', 'name', 'Axxam (Italy)'),
(152491, 118549, 'en', 'name', 'Middle East Health Economics and Social Policy Center'),
(152492, 118549, 'ar', 'name', 'Ł…Ų±ŁƒŲ² الؓرق Ų§Ł„Ų£ŁˆŲ³Ų· للاقتصاد الصحى ŁˆŲ§Ł„Ų³ŁŠŲ§Ų³Ų© Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(152493, 118550, 'en', 'name', 'National Institute of Transport'),
(152494, 118551, 'en', 'name', 'Jagran Lakecity University'),
(152495, 118552, 'en', 'name', 'Centre for Integrated Health Programs'),
(152496, 118553, 'hr', 'name', 'Institut za informatičke inovacije'),
(152497, 118553, 'en', 'name', 'Institute for Informatical Innovation'),
(152498, 118554, 'en', 'name', 'Ghana Space Science and Technology Institute'),
(152499, 118555, 'en', 'name', 'Tilak Maharashtra Vidyapeeth'),
(152500, 118555, 'mr', 'name', 'ą¤Ÿą¤æą¤³ą¤• ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(152501, 118556, 'en', 'name', 'Japan Electric Power Civil Engineering Association'),
(152502, 118556, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»åŠ›åœŸęœØęŠ€č”“å”ä¼š'),
(152503, 118557, 'en', 'name', 'Cincinnati Zoo and Botanical Garden'),
(152504, 118558, 'en', 'name', 'Colombian Family Welfare Institute'),
(152505, 118559, 'en', 'name', 'National Centre for the Replacement Refinement and Reduction of Animals in Research'),
(152506, 118560, 'pt', 'name', 'Liga Portuguesa Contra a SIDA'),
(152507, 118561, 'en', 'name', 'Japan Railway Engineers'' Association'),
(152508, 118561, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é“ęŠ€č”“å”ä¼š'),
(152509, 118562, 'en', 'name', 'SƔmi University of Applied Sciences'),
(152510, 118562, 'fi', 'name', 'SƔmi allaskuvla'),
(152511, 118563, 'en', 'name', 'Arkansas Geological Survey'),
(152512, 118564, 'en', 'name', 'Japan Small and Medium Enterprise Management Consultant Association'),
(152513, 118564, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å°ä¼ę„­čØŗę–­å”ä¼š'),
(152514, 118565, 'en', 'name', 'Center for Advanced Aerospace Technologies'),
(152515, 118565, 'es', 'name', 'Centro Avanzado de TecnologĆ­as Aeroespaciales'),
(152516, 118566, 'en', 'name', 'Nakano Medical Association'),
(152517, 118566, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­é‡ŽåŒŗåŒ»åø«ä¼š'),
(152518, 118567, 'en', 'name', 'Edogawa University'),
(152519, 118567, 'ja', 'name', 'ę±Ÿęˆøå·å¤§å­¦'),
(152520, 118568, 'en', 'name', 'Southeastern Baptist Theological Seminary'),
(152521, 118569, 'no_lang_code', 'name', 'Iquadrat (Spain)'),
(152522, 118570, 'no_lang_code', 'name', 'CRM Group (Belgium)'),
(152523, 118571, 'no_lang_code', 'name', 'Enanta Pharmaceuticals (United States)'),
(152524, 118572, 'en', 'name', 'Patent Application Processing Center'),
(152525, 118572, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå·„ę„­ę‰€ęœ‰ęØ©é›»å­ęƒ…å ±åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(152526, 118573, 'en', 'name', 'All Japan Real Estate Federation'),
(152527, 118573, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬äøå‹•ē”£å”ä¼š'),
(152528, 118574, 'en', 'name', 'Association of Air Transport Engineering and Research'),
(152529, 118574, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗčˆŖē©ŗč¼øé€ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(152530, 118575, 'nl', 'name', 'Visio'),
(152531, 118576, 'en', 'name', 'National Council for Curriculum and Assessment'),
(152532, 118577, 'en', 'name', 'Kochi International Association'),
(152533, 118577, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé«˜ēŸ„ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(152534, 118578, 'en', 'name', 'Japan Park Facilities Association'),
(152535, 118578, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…¬åœ’ę–½čØ­ę„­å”ä¼š'),
(152536, 118579, 'no_lang_code', 'name', 'Tescan (Czechia)'),
(152537, 118580, 'en', 'name', 'KE''KEN Textile Testing & Certification Center'),
(152538, 118580, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚±ć‚±ćƒ³č©¦éØ“čŖčØ¼ć‚»ćƒ³ć‚æćƒ¼'),
(152539, 118581, 'en', 'name', 'Aspira University of Applied Sciences'),
(152540, 118581, 'hr', 'name', 'VeleučiliŔte Aspira'),
(152541, 118582, 'en', 'name', 'Hakodate City Institute Of Public Health'),
(152542, 118582, 'ja', 'name', 'å‡½é¤Øåø‚č”›ē”Ÿč©¦éØ“ę‰€'),
(152543, 118583, 'en', 'name', 'IMS Ohta Central General Hospital'),
(152544, 118583, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£ę˜Žē†ä¼šć‚¤ćƒ ć‚¹å¤Ŗē”°äø­å¤®ē·åˆē—…é™¢'),
(152545, 118584, 'en', 'name', 'Fukkoukai'),
(152546, 118584, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¾©å…‰ä¼š'),
(152547, 118585, 'en', 'name', 'Poltegor Institute'),
(152548, 118586, 'en', 'name', 'West Bengal State University'),
(152549, 118586, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(152550, 118587, 'es', 'name', 'Universidad de Oklahoma'),
(152551, 118587, 'en', 'name', 'University of Oklahoma'),
(152552, 118588, 'en', 'name', 'Historical Archive of the City of Cologne'),
(152553, 118588, 'de', 'name', 'Historisches Archiv der Stadt Kƶln'),
(152554, 118589, 'en', 'name', 'Hattori Foundation'),
(152555, 118589, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęœéƒØå…¬ē›Šč²”å›£'),
(152556, 118590, 'en', 'name', 'Indonesian Baptist Theological College'),
(152557, 118590, 'id', 'name', 'Sekolah Tinggi Teologi Baptis Indonesia'),
(152558, 118591, 'no_lang_code', 'name', 'Xencor (United States)'),
(152559, 118592, 'en', 'name', 'National Aquatic Resources Research and Development Agency'),
(152560, 118593, 'en', 'name', 'Japan Science Promotion Inc. Foundation'),
(152561, 118593, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(152562, 118594, 'en', 'name', 'East Bohemian Museum'),
(152563, 118594, 'cs', 'name', 'Muzeum východních Čech'),
(152564, 118595, 'fr', 'name', 'Institut RƩgional de SantƩ Publique'),
(152565, 118595, 'en', 'name', 'Regional Institute of Public Health'),
(152566, 118596, 'de', 'name', 'Institut für Energie- und Umweltforschung Heidelberg'),
(152567, 118596, 'en', 'name', 'Institute for Energy and Environmental Research'),
(152568, 118597, 'en', 'name', 'The ITU Association of Japan'),
(152569, 118597, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ITU協会'),
(152570, 118598, 'es', 'name', 'Centro Tecnológico Agroalimentario de Extremadura'),
(152571, 118598, 'en', 'name', 'Extremadura Agricultural and Food Technological Centre'),
(152572, 118599, 'en', 'name', 'Gifu Industrial Economic Promotion Center'),
(152573, 118599, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå²é˜œēœŒē”£ę„­ēµŒęøˆęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(152574, 118600, 'en', 'name', 'European School of Law and Administration'),
(152575, 118600, 'pl', 'name', 'Europejska Wyższa Szkoła Prawa i Administracji'),
(152576, 118601, 'en', 'name', 'Ishikari Superconducting DC Power Transmission System'),
(152577, 118601, 'ja', 'name', 'ēŸ³ē‹©č¶…é›»å°Žćƒ»ē›“ęµé€é›»ć‚·ć‚¹ćƒ†ćƒ ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(152578, 118602, 'en', 'name', 'Center for Study of Science Technology and Policy'),
(152579, 118603, 'en', 'name', 'Agricultural and Rural Development Information Center'),
(152580, 118603, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč¾²ę„­č¾²ę‘ę•“å‚™ęƒ…å ±ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(152581, 118604, 'en', 'name', 'Osaka Association Of Medical Technologist'),
(152582, 118604, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗåŗœč‡ØåŗŠę¤œęŸ»ęŠ€åø«ä¼š'),
(152583, 118605, 'en', 'name', 'Japan Pyrotechnics Association'),
(152584, 118605, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē…™ē«å”ä¼š'),
(152585, 118606, 'en', 'name', 'The Japan Architectural Education and Information Center'),
(152586, 118606, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå»ŗēÆ‰ęŠ€č”“ę•™č‚²ę™®åŠć‚»ćƒ³ć‚æćƒ¼'),
(152587, 118607, 'en', 'name', 'Al Wataniya Private University'),
(152588, 118607, 'ar', 'name', 'الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© الخاصة'),
(152589, 118608, 'en', 'name', 'Chiyoda Medical Association'),
(152590, 118608, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåƒä»£ē”°åŒŗåŒ»åø«ä¼š'),
(152591, 118609, 'de', 'name', 'Evangelische Hochschule Dresden'),
(152592, 118610, 'no_lang_code', 'name', 'INES-Ruhengeri');
INSERT INTO `ror_settings` VALUES
(152593, 118610, 'rw', 'name', 'Institut d''Enseignement supƩrieur de Ruhengeri'),
(152594, 118611, 'en', 'name', 'QuantCAD'),
(152595, 118612, 'en', 'name', 'Royal Horticultural Society'),
(152596, 118613, 'es', 'name', 'Corporación Escuela Tecnológica del Oriente'),
(152597, 118614, 'en', 'name', 'The Recording Industry Association of Japan'),
(152598, 118614, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ¬ć‚³ćƒ¼ćƒ‰å”ä¼š'),
(152599, 118615, 'en', 'name', 'Kumamoto Industry Support Foundation'),
(152600, 118615, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćć¾ć‚‚ćØē”£ę„­ę”Æę“č²”å›£'),
(152601, 118616, 'en', 'name', 'The Volcanological Society of Japan'),
(152602, 118616, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ē«å±±å­¦ä¼š'),
(152603, 118617, 'en', 'name', 'Allen College'),
(152604, 118618, 'no_lang_code', 'name', 'Enterome (France)'),
(152605, 118619, 'en', 'name', 'Covenant College'),
(152606, 118620, 'en', 'name', 'InnoRenew CoE'),
(152607, 118621, 'fr', 'name', 'Ɖcole Polytechnique de ThiĆØs'),
(152608, 118622, 'no_lang_code', 'name', 'NeuroPace (United States)'),
(152609, 118623, 'en', 'name', 'Korea Health Industry Development Institute'),
(152610, 118624, 'de', 'name', 'KHM-Museumsverband'),
(152611, 118624, 'en', 'name', 'Museum of Art History'),
(152612, 118625, 'no_lang_code', 'name', 'Akademia'),
(152613, 118626, 'en', 'name', 'The university of Lakki Marwat'),
(152614, 118627, 'en', 'name', 'Nichols College'),
(152615, 118628, 'nl', 'name', 'Lygature'),
(152616, 118629, 'en', 'name', 'Open University of Mauritius'),
(152617, 118630, 'no_lang_code', 'name', 'Lero'),
(152618, 118631, 'de', 'name', 'Hochschule Hólar'),
(152619, 118631, 'no_lang_code', 'name', 'Hólar University College'),
(152620, 118631, 'is', 'name', 'Hólaskóli - HÔskólinn Ô Hólum'),
(152621, 118632, 'en', 'name', 'Jumeira University'),
(152622, 118632, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł…ŁŠŲ±Ų§'),
(152623, 118633, 'no_lang_code', 'name', 'Certe'),
(152624, 118634, 'en', 'name', 'Shennon Biotechnologies'),
(152625, 118635, 'en', 'name', 'Qatar Mobility Innovations Center'),
(152626, 118636, 'en', 'name', 'Durham University'),
(152627, 118637, 'en', 'name', 'International Center For Environmental Technology Transfer'),
(152628, 118637, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē’°å¢ƒęŠ€č”“ē§»č»¢ć‚»ćƒ³ć‚æćƒ¼'),
(152629, 118638, 'no_lang_code', 'name', 'Silverchair Information Systems (United States)'),
(152630, 118639, 'en', 'name', 'Catholic University of Applied Sciences Freiburg'),
(152631, 118639, 'de', 'name', 'Katholische Hochschule Freiburg'),
(152632, 118640, 'en', 'name', 'Center for International Forestry Research'),
(152633, 118641, 'en', 'name', 'Japan Mining Industry Association'),
(152634, 118641, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é‰±ę„­ęŒÆčˆˆä¼š'),
(152635, 118642, 'en', 'name', 'Japan Canoe Federation'),
(152636, 118642, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚«ćƒŒćƒ¼é€£ē›Ÿ'),
(152637, 118643, 'en', 'name', 'Japan National Press Club'),
(152638, 118643, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čØ˜č€…ć‚Æćƒ©ćƒ–'),
(152639, 118644, 'en', 'name', 'AFS Intercultural Programs'),
(152640, 118644, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗAFSę—„ęœ¬å”ä¼š'),
(152641, 118645, 'en', 'name', 'Kanagawa Construction Technology Center'),
(152642, 118645, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žå„ˆå·ēœŒéƒ½åø‚ę•“å‚™ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(152643, 118646, 'no_lang_code', 'name', 'Winrock International (United States)'),
(152644, 118647, 'en', 'name', 'Pontifical Atheneum of St. Anselm'),
(152645, 118647, 'it', 'name', 'Pontificio Ateneo Sant''Anselmo'),
(152646, 118648, 'en', 'name', 'Study Center for National Reconciliation'),
(152647, 118648, 'sl', 'name', 'Å tudijski center za narodno spravo'),
(152648, 118649, 'no_lang_code', 'name', 'Lumentum (United States)'),
(152649, 118650, 'en', 'name', 'Japan Psychiatric Hospitals Association'),
(152650, 118650, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē²¾ē„žē§‘ē—…é™¢å”ä¼š'),
(152651, 118651, 'en', 'name', 'Japan Trucking Association'),
(152652, 118651, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬ćƒˆćƒ©ćƒƒć‚Æå”ä¼š'),
(152653, 118652, 'en', 'name', 'Japan Valve Manufacturers'' Association'),
(152654, 118652, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒćƒ«ćƒ–å·„ę„­ä¼š'),
(152655, 118653, 'en', 'name', 'Biodiversity Conservation Foundation'),
(152656, 118654, 'en', 'name', 'Japan Co-operative Alliance'),
(152657, 118654, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…±åŒēµ„åˆé€£ęŗę©Ÿę§‹'),
(152658, 118655, 'en', 'name', 'Nines Photovoltaics (Ireland)'),
(152659, 118656, 'no_lang_code', 'name', 'Immunome (United States)'),
(152660, 118657, 'en', 'name', 'Idaho Geological Survey'),
(152661, 118658, 'no_lang_code', 'name', 'Deciphera Pharmaceuticals (United States)'),
(152662, 118659, 'en', 'name', 'International Pacific Halibut Commission'),
(152663, 118660, 'en', 'name', 'Environment for Development Kenya'),
(152664, 118661, 'en', 'name', 'Rajiv Gandhi Medical College'),
(152665, 118661, 'ml', 'name', 'ą“°ą“¾ą“œąµ€ą“µąµ ą“—ą“¾ą“Øąµą“§ą“æ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(152666, 118662, 'no_lang_code', 'name', 'CytomX Therapeutics (United States)'),
(152667, 118663, 'sk', 'name', 'NÔrodný Onkologický Ústav'),
(152668, 118664, 'en', 'name', 'Marine Acoustics Society of Japan'),
(152669, 118664, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗęµ·ę“‹éŸ³éŸæå­¦ä¼š'),
(152670, 118665, 'en', 'name', 'Pacific Adventist University'),
(152671, 118666, 'en', 'name', 'IUT of Rodez'),
(152672, 118666, 'fr', 'name', 'Institut Universitaire de Technologie de Rodez'),
(152673, 118667, 'pl', 'name', 'Selvita'),
(152674, 118667, 'no_lang_code', 'name', 'Selvita (Poland)'),
(152675, 118668, 'en', 'name', 'Japan Fire Retardant Association'),
(152676, 118668, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é˜²ē‚Žå”ä¼š'),
(152677, 118669, 'en', 'name', 'Sangam Netralaya'),
(152678, 118670, 'no_lang_code', 'name', 'Synlogic (United States)'),
(152679, 118671, 'en', 'name', 'Japan Dredging and Reclamation Engineering Association'),
(152680, 118671, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŸ‹ē«‹ęµšęø«å”ä¼š'),
(152681, 118672, 'en', 'name', 'Fruit Research Institute'),
(152682, 118672, 'sr', 'name', 'Institut za voćarstvo, Čačak'),
(152683, 118673, 'no_lang_code', 'name', 'Inovio Pharmaceuticals (United States)'),
(152684, 118674, 'uz', 'name', 'Axborot Texnologiyalari va Menejment Universiteti'),
(152685, 118674, 'en', 'name', 'University of Information Technologies and Management'),
(152686, 118675, 'en', 'name', 'Automobile Business Association of Japan'),
(152687, 118675, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»Šä¼šč­°ę‰€'),
(152688, 118676, 'no_lang_code', 'name', 'Hensoldt (Germany)'),
(152689, 118677, 'en', 'name', 'National Centre of Geodesy and Spatial Information'),
(152690, 118678, 'en', 'name', 'Henry Ford College'),
(152691, 118679, 'fr', 'name', 'Railenium'),
(152692, 118680, 'en', 'name', 'Tohoku Regional Advancement Center'),
(152693, 118680, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±åŒ—ę“»ę€§åŒ–ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(152694, 118681, 'no_lang_code', 'name', 'Da Vinci Institute'),
(152695, 118682, 'en', 'name', 'International Centre for Migration Policy Development'),
(152696, 118683, 'no_lang_code', 'name', 'Cesefor'),
(152697, 118684, 'nl', 'name', 'GGz Breburg'),
(152698, 118685, 'en', 'name', 'Katsushika Medical Association'),
(152699, 118685, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč‘›é£¾åŒŗåŒ»åø«ä¼š'),
(152700, 118686, 'en', 'name', 'Jaypee University Anoopshahr'),
(152701, 118686, 'hi', 'name', 'ą¤œą„‡ą¤Ŗą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤…ą¤Øą„ą¤Ŗą¤¶ą¤¹ą¤°'),
(152702, 118687, 'es', 'name', 'Universidad Tecnológica de Nogales'),
(152703, 118688, 'no_lang_code', 'name', 'Blueprint Genetics (Finland)'),
(152704, 118689, 'no_lang_code', 'name', 'Aridhia (United Kingdom)'),
(152705, 118690, 'en', 'name', 'The UBE Foundation'),
(152706, 118690, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå®‡éƒØčˆˆē”£å­¦č”“ęŒÆčˆˆč²”å›£'),
(152707, 118691, 'en', 'name', 'Folger Shakespeare Library'),
(152708, 118692, 'en', 'name', 'Okayama Prefectural Lifelong Learning Center'),
(152709, 118692, 'ja', 'name', 'å²”å±±ēœŒē”Ÿę¶Æå­¦ēæ’ć‚»ćƒ³ć‚æćƒ¼'),
(152710, 118693, 'en', 'name', 'TB Alliance'),
(152711, 118694, 'uz', 'name', 'Jahon Iqtisodiyoti va Diplomatiya Universiteti'),
(152712, 118694, 'en', 'name', 'University of World Economy and Diplomacy'),
(152713, 118695, 'en', 'name', 'All-Russian Scientific Research Institute of Canned Food Technology'),
(152714, 118695, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ консервной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(152715, 118696, 'en', 'name', 'Fan Noli University'),
(152716, 118696, 'sq', 'name', 'Universiteti "Fan S. Noli"'),
(152717, 118697, 'es', 'name', 'Sociedad EspaƱola de Oncologƭa MƩdica'),
(152718, 118698, 'en', 'name', 'University Sinergija'),
(152719, 118698, 'bs', 'name', 'Univerzitetska sinergija'),
(152720, 118699, 'en', 'name', 'Japan Overseas Christian Medical Cooperative Service'),
(152721, 118699, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚­ćƒŖć‚¹ćƒˆę•™ęµ·å¤–åŒ»ē™‚å”åŠ›ä¼š'),
(152722, 118700, 'en', 'name', 'Admiral Nevelskoy Maritime State University'),
(152723, 118700, 'ru', 'name', 'ŠœŠ¾Ń€ŃŠŗŠ¾Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(152724, 118701, 'en', 'name', 'Minami-Shinsyu Iida Industry Center'),
(152725, 118701, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå—äæ”å·žćƒ»é£Æē”°ē”£ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(152726, 118702, 'en', 'name', 'Special Hospital for Orthopedics and General Surgery "Dr. Nemec"'),
(152727, 118702, 'hr', 'name', 'Specijalna bolnica za ortopediju i opću kirurgiju "Dr. Nemec"'),
(152728, 118703, 'en', 'name', 'Japan Mountaineering and Sport Climbing Association'),
(152729, 118703, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å±±å²³ćƒ»ć‚¹ćƒćƒ¼ćƒ„ć‚Æćƒ©ć‚¤ćƒŸćƒ³ć‚°å”ä¼š'),
(152730, 118704, 'en', 'name', 'Television & Radio Writers'' Association of Japan'),
(152731, 118704, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę”¾é€ä½œå®¶å”ä¼š'),
(152732, 118705, 'no_lang_code', 'name', 'Helsana Group (Switzerland)'),
(152733, 118706, 'en', 'name', 'National Commission for Science, Technology, and Innovation'),
(152734, 118707, 'en', 'name', 'Japan Association for International Racing and Stud Book'),
(152735, 118707, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚øćƒ£ćƒ‘ćƒ³ćƒ»ć‚¹ć‚æćƒƒćƒ‰ćƒ–ćƒƒć‚Æćƒ»ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«'),
(152736, 118708, 'no_lang_code', 'name', 'AC Immune (Switzerland)'),
(152737, 118709, 'en', 'name', 'Japan Association of Clinical Reagents Industries'),
(152738, 118709, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡ØåŗŠę¤œęŸ»č–¬å”ä¼š'),
(152739, 118710, 'en', 'name', 'Digital Humanities Center'),
(152740, 118711, 'ca', 'name', 'Universitat de PĆ dua'),
(152741, 118711, 'en', 'name', 'University of Padua'),
(152742, 118711, 'it', 'name', 'UniversitĆ  degli Studi di Padova'),
(152743, 118711, 'de', 'name', 'UniversitƤt Padua'),
(152744, 118711, 'fr', 'name', 'UniversitƩ de padoue'),
(152745, 118711, 'sl', 'name', 'Univerza v Padovi'),
(152746, 118712, 'en', 'name', 'Ibaraki Physical Therapy Association'),
(152747, 118712, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗčŒØåŸŽēœŒē†å­¦ē™‚ę³•å£«ä¼š'),
(152748, 118713, 'en', 'name', 'Kyushu Economic Federation'),
(152749, 118713, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗä¹å·žēµŒęøˆé€£åˆä¼š'),
(152750, 118714, 'en', 'name', 'Osaka PhysioTherapist Association'),
(152751, 118714, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗåŗœē†å­¦ē™‚ę³•å£«ä¼š'),
(152752, 118715, 'en', 'name', 'Japan Fashion Association'),
(152753, 118715, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³å”ä¼š'),
(152754, 118716, 'en', 'name', 'Nippon Music Foundation'),
(152755, 118716, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éŸ³ę„½č²”å›£'),
(152756, 118717, 'en', 'name', 'Japanese Association of Social Workers in Health Services'),
(152757, 118717, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»ē™‚ē¤¾ä¼šē¦ē„‰å”ä¼š'),
(152758, 118718, 'en', 'name', 'Samara Regional Clinical Hospital named after V.D. Seredavina'),
(152759, 118718, 'ru', 'name', 'Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° Š’.Š”.ДереГавин'),
(152760, 118719, 'en', 'name', 'Advanced Hydrogen Energy chain Association for technology Development'),
(152761, 118719, 'ja', 'name', 'ę¬”äø–ä»£ę°“ē“ ć‚Øćƒćƒ«ć‚®ćƒ¼ćƒć‚§ćƒ¼ćƒ³ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(152762, 118720, 'en', 'name', 'International Center for the Environmental Management of Enclosed Coastal Seas'),
(152763, 118720, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ć‚Øćƒ”ćƒƒć‚Æć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(152764, 118721, 'en', 'name', 'Bishop Stuart University'),
(152765, 118722, 'en', 'name', 'Foundation for International Development/Relief'),
(152766, 118722, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›é–‹ē™ŗę•‘ę“č²”å›£'),
(152767, 118723, 'no_lang_code', 'name', 'Ingeteam (Spain)'),
(152768, 118724, 'en', 'name', 'New Zealand Leather & Shoe Research Association Inc.'),
(152769, 118725, 'en', 'name', 'Sofia University'),
(152770, 118726, 'pt', 'name', 'Instituto Superior de ServiƧo Social do Porto'),
(152771, 118727, 'en', 'name', 'Keifukai Takaoka Hospital'),
(152772, 118727, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗęµé¢Øä¼šé«˜å²”ē—…é™¢'),
(152773, 118728, 'en', 'name', 'Hokkaido Heart Association'),
(152774, 118728, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“åæƒč‡“å”ä¼š'),
(152775, 118729, 'en', 'name', 'Independent University Banja Luka'),
(152776, 118729, 'sr', 'name', 'Nezavisni univerzitet Banja Luka'),
(152777, 118730, 'en', 'name', 'Machine Tool Engineering Foundation'),
(152778, 118730, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå·„ä½œę©Ÿę¢°ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(152779, 118731, 'en', 'name', 'Japan Golf Association'),
(152780, 118731, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚“ćƒ«ćƒ•å”ä¼š'),
(152781, 118732, 'en', 'name', 'Ruhr University Bochum'),
(152782, 118732, 'de', 'name', 'Ruhr-UniversitƤt Bochum'),
(152783, 118733, 'fr', 'name', 'Ɖcole SpĆ©ciale des Travaux Publics'),
(152784, 118734, 'en', 'name', 'College of African Wildlife Management'),
(152785, 118735, 'en', 'name', 'Japan Sewage Works Association'),
(152786, 118735, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äø‹ę°“é“å”ä¼š'),
(152787, 118736, 'en', 'name', 'Japan Sports Club Association'),
(152788, 118736, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„ć‚Æćƒ©ćƒ–å”ä¼š'),
(152789, 118737, 'en', 'name', 'The Kamata Medical Association'),
(152790, 118737, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč’²ē”°åŒ»åø«ä¼š'),
(152791, 118738, 'en', 'name', 'University of Southern Brittany'),
(152792, 118738, 'fr', 'name', 'UniversitƩ de Bretagne Sud'),
(152793, 118739, 'de', 'name', 'Institut für deutsche Kultur und Geschichte Südosteuropas'),
(152794, 118740, 'en', 'name', 'Organization for Housing Warranty'),
(152795, 118740, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä½å®…äæčØ¼ę”Æę“ę©Ÿę§‹'),
(152796, 118741, 'pt', 'name', 'Centro de Inovação e Investigação em Ciências Empresariais e Sistemas de Informação'),
(152797, 118742, 'en', 'name', 'New York Hall of Science'),
(152798, 118743, 'en', 'name', 'Naropa University'),
(152799, 118744, 'en', 'name', 'Jahmec'),
(152800, 118744, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰č”›ē”Ÿē®”ē†ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(152801, 118745, 'en', 'name', 'Japan Economic Foundation'),
(152802, 118745, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›ēµŒęøˆäŗ¤ęµč²”å›£'),
(152803, 118746, 'pt', 'name', 'Instituto Internacional para Sustentabilidade'),
(152804, 118746, 'en', 'name', 'International Institute for Sustainability'),
(152805, 118747, 'en', 'name', 'AM Publications, India'),
(152806, 118748, 'de', 'name', 'Regionalspital Emmental'),
(152807, 118749, 'no_lang_code', 'name', 'Accent Therapeutics (United States)'),
(152808, 118750, 'en', 'name', 'Bio Base Europe'),
(152809, 118751, 'en', 'name', 'Kaiseikai Foundation'),
(152810, 118751, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä½å‰å•ęˆä¼š'),
(152811, 118752, 'en', 'name', 'Antalya Belek University'),
(152812, 118752, 'tr', 'name', 'Antalya Belek Üni̇versi̇tesi̇'),
(152813, 118753, 'en', 'name', 'Japan Statistical Association'),
(152814, 118753, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ēµ±čØˆå”ä¼š'),
(152815, 118754, 'af', 'name', 'Akademie Reformatoriese Opleiding en Studies'),
(152816, 118755, 'en', 'name', 'Open Evidence'),
(152817, 118756, 'en', 'name', 'International Development Enterprises'),
(152818, 118757, 'en', 'name', 'Polytechnic Marko Marulic'),
(152819, 118757, 'hr', 'name', 'VeleučiliÅ”te "Marko Marulić"'),
(152820, 118758, 'en', 'name', 'State University of New York'),
(152821, 118758, 'es', 'name', 'Universidad Estatal de Nueva York'),
(152822, 118758, 'fr', 'name', 'UniversitĆ© d''Ɖtat de New York'),
(152823, 118759, 'en', 'name', 'Sakai Medical Association'),
(152824, 118759, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå ŗåø‚åŒ»åø«ä¼š'),
(152825, 118760, 'en', 'name', 'Japan International Science and Technology Exchange Center'),
(152826, 118760, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē§‘å­¦ęŠ€č”“å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(152827, 118761, 'en', 'name', 'Japan Translation Association'),
(152828, 118761, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēæ»čØ³å”ä¼š'),
(152829, 118762, 'en', 'name', 'Toray Science Foundation'),
(152830, 118762, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±ćƒ¬ē§‘å­¦ęŒÆčˆˆä¼š'),
(152831, 118763, 'en', 'name', 'Tochigi Industrial Promotion Center'),
(152832, 118763, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę ƒęœØēœŒē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(152833, 118764, 'en', 'name', 'Lake Chad Research Institute'),
(152834, 118765, 'en', 'name', 'Matsuo Foundation'),
(152835, 118765, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę¾å°¾å­¦č”“ęŒÆčˆˆč²”å›£'),
(152836, 118766, 'en', 'name', 'Whiteley Clinic'),
(152837, 118767, 'no_lang_code', 'name', 'CycloLab (Hungary)'),
(152838, 118768, 'en', 'name', 'Japan Personal Research Institute'),
(152839, 118768, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŠ“å‹™ē ”ē©¶ä¼š'),
(152840, 118769, 'en', 'name', 'Chhatrapati Shivaji Maharaj Institute of Technology'),
(152841, 118770, 'pt', 'name', 'Agência Nacional de Telecomunicações'),
(152842, 118770, 'en', 'name', 'National Telecommunications Agency (Brazil)'),
(152843, 118771, 'en', 'name', 'Dharma Drum Institute of Liberal Arts'),
(152844, 118771, 'zh', 'name', '法鼓文理學院'),
(152845, 118772, 'en', 'name', 'Ministry of Education and Higher Education'),
(152846, 118772, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ'),
(152847, 118773, 'no_lang_code', 'name', 'Philogen (Italy)'),
(152848, 118774, 'en', 'name', 'Sambalpur University Institute of Information Technology'),
(152849, 118775, 'no_lang_code', 'name', 'Anthem Biosciences (India)'),
(152850, 118776, 'en', 'name', 'The First Affiliated Hospital, Sun Yat-sen University'),
(152851, 118776, 'zh', 'name', 'äø­å±±å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(152852, 118777, 'en', 'name', 'Rishi Bankim Chandra College for Women'),
(152853, 118777, 'bn', 'name', 'আর বি সি মহিলা ą¦•ą¦²ą§‡ą¦œ'),
(152854, 118778, 'es', 'name', 'Ɠrgano Judicial de la RepĆŗblica de PanamĆ”'),
(152855, 118779, 'en', 'name', 'The Mechanical Social Systems Foundation'),
(152856, 118779, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę©Ÿę¢°ć‚·ć‚¹ćƒ†ćƒ ęŒÆčˆˆå”ä¼š'),
(152857, 118780, 'en', 'name', 'French Institute in Djibouti'),
(152858, 118780, 'fr', 'name', 'Institut franƧais de Djibouti'),
(152859, 118781, 'es', 'name', 'Universidad del Centro Educativo Latinoamericano'),
(152860, 118781, 'en', 'name', 'University of the Latin American Educational Center'),
(152861, 118782, 'en', 'name', 'Cluster University Srinagar'),
(152862, 118783, 'fr', 'name', 'Centre de recherche, d''information et de Production de l''Ʃducation nationale'),
(152863, 118783, 'en', 'name', 'National Education Research, Information and Production Centre'),
(152864, 118784, 'en', 'name', 'Vimal Jyothi Engineering College'),
(152865, 118784, 'ml', 'name', 'ą“µą“æą“®ąµ½ ą“œąµą“Æąµ‹ą“¤ą“æ ą“Žą“žąµą“šą“æą“Øąµ€ą“Æą“±ą“æą“‚ą“—ąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(152866, 118785, 'en', 'name', 'Integrative Centre for Research & Innovation in Biology'),
(152867, 118786, 'fr', 'name', 'Epicura'),
(152868, 118787, 'en', 'name', 'The Mother and Child Health Foundation'),
(152869, 118787, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęÆå­å„åŗ·å”ä¼š'),
(152870, 118788, 'en', 'name', 'Centre of Excellence for Advanced Materials'),
(152871, 118788, 'zh', 'name', 'äøœčŽžęę–™åŸŗå› é«˜ē­‰ē†å·„ē ”ē©¶é™¢'),
(152872, 118789, 'fr', 'name', 'Association PƓle Environnement Sud Aquitaine'),
(152873, 118790, 'en', 'name', 'Japan Industrial Water Association'),
(152874, 118790, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·„ę„­ē”Øę°“å”ä¼š'),
(152875, 118791, 'en', 'name', 'Lebanese Agricultural Research Institute'),
(152876, 118792, 'no_lang_code', 'name', 'Solusi University'),
(152877, 118793, 'en', 'name', 'Institute of Horticulture'),
(152878, 118793, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ саГівництва ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(152879, 118794, 'en', 'name', 'The Association for Promotion of International Cooperation'),
(152880, 118794, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›å”åŠ›ęŽØé€²å”ä¼š'),
(152881, 118795, 'en', 'name', 'Japan Fire and Disaster Prevention Association'),
(152882, 118795, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é˜²ē«ćƒ»é˜²ē½å”ä¼š'),
(152883, 118796, 'en', 'name', 'The Japanese Association for Cerebro-cardiovascular Disease Control'),
(152884, 118796, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å¾Ŗē’°å™Øē—…äŗˆé˜²å­¦ä¼š'),
(152885, 118797, 'en', 'name', 'Osaka Metropolitan University College of Technology'),
(152886, 118797, 'ja', 'name', 'å¤§é˜Ŗå…¬ē«‹å¤§å­¦å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(152887, 118798, 'en', 'name', 'Regional Universities Forum for Capacity Building in Agriculture'),
(152888, 118799, 'en', 'name', 'Walter Eucken Institut'),
(152889, 118800, 'en', 'name', 'Bethany College - Kansas'),
(152890, 118801, 'en', 'name', 'Japan Animal Welfare Society'),
(152891, 118801, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©ē¦ē„‰å”ä¼š'),
(152892, 118802, 'es', 'name', 'Universidad de Nebraska-Lincoln'),
(152893, 118802, 'en', 'name', 'University of Nebraska–Lincoln'),
(152894, 118802, 'fr', 'name', 'UniversitƩ du nebraska Ơ lincoln'),
(152895, 118803, 'en', 'name', 'The Japan Society for Heat Treatment'),
(152896, 118803, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē†±å‡¦ē†ęŠ€č”“å”ä¼š'),
(152897, 118804, 'pt', 'name', 'Associacao Protectora dos Diabeticos de Portugal'),
(152898, 118805, 'en', 'name', 'Japan Law Foundation'),
(152899, 118805, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„å¼é€£ę³•å‹™ē ”ē©¶č²”å›£'),
(152900, 118806, 'es', 'name', 'Universidad PolitƩcnica de Zacatecas'),
(152901, 118807, 'en', 'name', 'Christ College of Engineering and Technology'),
(152902, 118808, 'pt', 'name', 'Centro Nacional de Investigação Cientifica'),
(152903, 118808, 'en', 'name', 'National Centre for Scientific Research'),
(152904, 118809, 'en', 'name', 'Fair Trade Institute'),
(152905, 118809, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…¬ę­£å–å¼•å”ä¼š'),
(152906, 118810, 'pt', 'name', 'Projecto Desenvolvimento Manutenção Formação e Consultadoria'),
(152907, 118811, 'en', 'name', 'Al-Ahli Hospital'),
(152908, 118812, 'en', 'name', 'Pine Rest Christian Mental Health Services'),
(152909, 118813, 'no_lang_code', 'name', 'Arkray (Japan)'),
(152910, 118813, 'ja', 'name', 'ć‚¢ćƒ¼ć‚Æćƒ¬ć‚¤ę Ŗå¼ä¼šē¤¾'),
(152911, 118814, 'en', 'name', 'National Archives of Sweden'),
(152912, 118814, 'sv', 'name', 'Riksarkivet'),
(152913, 118815, 'en', 'name', 'Reformed Church University'),
(152914, 118816, 'en', 'name', 'Electrochemical Society'),
(152915, 118817, 'no_lang_code', 'name', 'Cybernetica (Estonia)'),
(152916, 118818, 'en', 'name', 'University of Telecommunications and Post'),
(152917, 118818, 'bg', 'name', 'Š’ŠøŃŃˆŠµ ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ по Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠø Šø пощи'),
(152918, 118819, 'hr', 'name', 'VeleučiliŔte u Virovitici'),
(152919, 118819, 'en', 'name', 'Virovitica University of Applied Sciences'),
(152920, 118820, 'en', 'name', 'The Research association of Automotive Internal Combustion Engines'),
(152921, 118820, 'ja', 'name', 'č‡Ŗå‹•č»Šē”Øå†…ē‡ƒę©Ÿé–¢ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(152922, 118821, 'en', 'name', 'Daiichi Junior College of Infant Education'),
(152923, 118821, 'ja', 'name', 'ē¬¬äø€å¹¼å…ę•™č‚²ēŸ­ęœŸå¤§å­¦'),
(152924, 118822, 'hr', 'name', 'SveučiliŔte u Zagrebu'),
(152925, 118822, 'en', 'name', 'University of Zagreb'),
(152926, 118823, 'en', 'name', 'The Heat Transfer Society of Japan'),
(152927, 118823, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ä¼ē†±å­¦ä¼š'),
(152928, 118824, 'no_lang_code', 'name', 'Maxar Technologies (United States)'),
(152929, 118825, 'en', 'name', 'Community College of Allegheny County'),
(152930, 118826, 'en', 'name', 'The Association for the Environmental Conservation of The Seto Inland Sea'),
(152931, 118826, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē€¬ęˆøå†…ęµ·ē’°å¢ƒäæå…Øå”ä¼š'),
(152932, 118827, 'hr', 'name', 'Thalassoterapia Opatija'),
(152933, 118828, 'no_lang_code', 'name', 'Türksat (Turkey)'),
(152934, 118828, 'tr', 'name', 'Türksat Uydu Haberleşme Kablo TV ve İşletme A.Ş.'),
(152935, 118829, 'no_lang_code', 'name', 'Deep Blue (Italy)'),
(152936, 118830, 'en', 'name', 'Regional Business Development Institute'),
(152937, 118830, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåœ°åŸŸēµŒęøˆē·åˆē ”ē©¶ę‰€'),
(152938, 118831, 'es', 'name', 'Instituto Nacional de MetrologĆ­a de Colombia'),
(152939, 118832, 'pl', 'name', 'EL-Piast Sp. z o. o.'),
(152940, 118832, 'no_lang_code', 'name', 'EL-Piast Sp. z o. o. (Poland)'),
(152941, 118833, 'en', 'name', 'Benazir Bhutto Shaheed University of Technology and Skill Development'),
(152942, 118834, 'en', 'name', 'Foundation for the Research Development and Application of Composite Materials'),
(152943, 118834, 'es', 'name', 'Fundación para la Investigación, Desarrollo y Aplicación de los Materiales Compuestos'),
(152944, 118835, 'en', 'name', 'THE Economic Research Center Of Niigata'),
(152945, 118835, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę–°ę½ŸēµŒęøˆē¤¾ä¼šćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(152946, 118836, 'en', 'name', 'Muhammadiyah University of Kendal Batang'),
(152947, 118836, 'id', 'name', 'Universitas Muhammadiyah Kendal Batang'),
(152948, 118837, 'hu', 'name', 'Edutus Egyetem'),
(152949, 118837, 'no_lang_code', 'name', 'Edutus University'),
(152950, 118838, 'en', 'name', 'Yokohama Arts Foundation'),
(152951, 118838, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęØŖęµœåø‚čŠøč”“ę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(152952, 118839, 'en', 'name', 'Japanese Para-Sports Association'),
(152953, 118839, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éšœćŒć„č€…ć‚¹ćƒćƒ¼ćƒ„å”ä¼š'),
(152954, 118840, 'en', 'name', 'The Public Foundation of Chubu Science and Technology Center'),
(152955, 118840, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­éƒØē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(152956, 118841, 'en', 'name', 'Avalon University School of Medicine'),
(152957, 118842, 'id', 'name', 'Politeknik STMI Jakarta'),
(152958, 118843, 'en', 'name', 'Southwest Baptist University'),
(152959, 118844, 'en', 'name', 'Japanese Coronary Association'),
(152960, 118844, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å† ē–¾ę‚£å­¦ä¼š'),
(152961, 118845, 'en', 'name', 'Japan Ship-Machinery Quality Control Association'),
(152962, 118845, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čˆ¹čˆ¶å“č³Ŗē®”ē†å”ä¼š'),
(152963, 118846, 'en', 'name', 'The Hokuriku Industrial Advancement Center'),
(152964, 118846, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—é™øē”£ę„­ę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(152965, 118847, 'en', 'name', 'Glenville State College'),
(152966, 118848, 'en', 'name', 'Zangador Research Institute'),
(152967, 118849, 'en', 'name', 'Japan Federation of Pilots'' Associations'),
(152968, 118849, 'ja', 'name', 'ę—„ęœ¬ę°“å…ˆäŗŗä¼šé€£åˆä¼š'),
(152969, 118850, 'no', 'name', 'Modum Bad – Gordon Johnsens stiftelse'),
(152970, 118851, 'no_lang_code', 'name', 'Pivot Bio (United States)'),
(152971, 118852, 'de', 'name', 'Auschwitz Birkenau'),
(152972, 118852, 'pl', 'name', 'Państwowe Muzeum Auschwitz-Birkenau w Oświęcimiu'),
(152973, 118853, 'sl', 'name', 'Nacionalni laboratorij za zdravje, okolje in hrano'),
(152974, 118853, 'en', 'name', 'National Laboratory of Health, Environment and Food'),
(152975, 118854, 'en', 'name', 'The Japanese Electric Wire & Cable Makers'' Association'),
(152976, 118854, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ē·šå·„ę„­ä¼š'),
(152977, 118855, 'en', 'name', 'American Society of Nephrology'),
(152978, 118856, 'nl', 'name', 'BartimƩus'),
(152979, 118857, 'no_lang_code', 'name', 'Integrative Research Laboratories'),
(152980, 118858, 'en', 'name', 'Dr. S.R. Chandrasekhar Institute of Speech and Hearing'),
(152981, 118859, 'en', 'name', 'Belgian Road Research Centre'),
(152982, 118860, 'en', 'name', 'Maine Geological Survey'),
(152983, 118861, 'en', 'name', 'Society For Development Alternatives'),
(152984, 118862, 'en', 'name', 'The Japan Singapore Association'),
(152985, 118862, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚·ćƒ³ć‚¬ćƒćƒ¼ćƒ«å”ä¼š'),
(152986, 118863, 'en', 'name', 'South East European Research Centre'),
(152987, 118864, 'en', 'name', 'Zao dairy center'),
(152988, 118864, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč”µēŽ‹é…Ŗč¾²ć‚»ćƒ³ć‚æćƒ¼'),
(152989, 118865, 'en', 'name', 'Radio Engineering & Electronics Association'),
(152990, 118865, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé›»ę³¢ęŠ€č”“å”ä¼š'),
(152991, 118866, 'en', 'name', 'Italian University Line'),
(152992, 118866, 'it', 'name', 'UniversitĆ  telematica'),
(152993, 118867, 'en', 'name', 'Research Association for Technological Innovation of Organic Photovoltaics'),
(152994, 118867, 'ja', 'name', 'ęœ‰ę©Ÿē³»å¤Ŗé™½é›»ę± ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(152995, 118868, 'en', 'name', 'Danube Floodplain National Park'),
(152996, 118868, 'de', 'name', 'Nationalpark Donau-Auen'),
(152997, 118869, 'en', 'name', 'University Medical Center Gƶttingen'),
(152998, 118869, 'de', 'name', 'UniversitƤtsmedizin Gƶttingen'),
(152999, 118870, 'es', 'name', 'Universidad Nacional Evangelica'),
(153000, 118871, 'en', 'name', 'The Mazda Foundation'),
(153001, 118871, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒžćƒ„ćƒ€č²”å›£'),
(153002, 118872, 'en', 'name', 'QCIF Ltd.'),
(153003, 118873, 'de', 'name', 'Philosophisch-Theologische Hochschule Sankt Georgen'),
(153004, 118873, 'en', 'name', 'Sankt Georgen Graduate School of Philosophy and Theology'),
(153005, 118874, 'en', 'name', 'Bicycling Popularization Association of Japan'),
(153006, 118874, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬č‡Ŗč»¢č»Šę™®åŠå”ä¼š'),
(153007, 118875, 'en', 'name', 'PODRAVKA Food Processing Industry, Inc.'),
(153008, 118875, 'hr', 'name', 'PODRAVKA prehrambena industrija d.d. FC "Istraživanje i razvoj"'),
(153009, 118876, 'pt', 'name', 'Instituto Estadual de Diabetes e Endocrinologia Luiz Capriglione'),
(153010, 118877, 'en', 'name', 'Nippon Omni-Management Association'),
(153011, 118877, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒå–¶å”ä¼š'),
(153012, 118878, 'fr', 'name', 'Centre MƩdico-Chirurgical de Kinindo'),
(153013, 118878, 'en', 'name', 'Kinindo Medical-Surgical Center'),
(153014, 118879, 'es', 'name', 'Instituto Navarro de TecnologĆ­a e Infraestructuras Agroalimentarias'),
(153015, 118880, 'en', 'name', 'Osaka Prefecture Veterinary Medical Association'),
(153016, 118880, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗåŗœē£åŒ»åø«ä¼š'),
(153017, 118881, 'en', 'name', 'THE Japanese Alpine Club'),
(153018, 118881, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å±±å²³ä¼š'),
(153019, 118882, 'sr', 'name', 'Naučni institut za veterinarstvo Srbije'),
(153020, 118882, 'en', 'name', 'Scientific Institute for Veterinary Medicine of Serbia'),
(153021, 118883, 'es', 'name', 'Centro Nacional de Referencia de Control Biológico'),
(153022, 118884, 'en', 'name', 'All-Russian Scientific Research Institute of Fundamental and Applied Parasitology of Animals and Plants named after K.I. Skryabin'),
(153023, 118884, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ Šø приклаГной паразитологии животных Šø растений имени К. И. Š”ŠŗŃ€ŃŠ±ŠøŠ½Š°'),
(153024, 118885, 'nl', 'name', 'Heliomare'),
(153025, 118886, 'en', 'name', 'Arts Academy in Split'),
(153026, 118886, 'hr', 'name', 'Umjetnička akademija u Splitu'),
(153027, 118887, 'en', 'name', 'Japan Apparel Fashion Industry Council'),
(153028, 118887, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ‘ćƒ¬ćƒ«ćƒ»ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³ē”£ę„­å”ä¼š'),
(153029, 118888, 'en', 'name', 'African Centre for Technology Studies'),
(153030, 118889, 'cs', 'name', 'ZĆ”padočeskĆ© Muzeum v Plzni'),
(153031, 118890, 'en', 'name', 'Minami Takai Hospital'),
(153032, 118890, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¤©ēœŸä¼šå—é«˜äŗ•ē—…é™¢'),
(153033, 118891, 'en', 'name', 'American University of Bahrain'),
(153034, 118891, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© ŲØŲ§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(153035, 118892, 'en', 'name', 'Jean Piaget University of Angola'),
(153036, 118892, 'pt', 'name', 'Universidade Jean Piaget de Angola'),
(153037, 118893, 'en', 'name', 'Central Electric Club'),
(153038, 118893, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å¤®é›»ę°—å€¶ę„½éƒØ'),
(153039, 118894, 'no_lang_code', 'name', 'Nanion (Germany)'),
(153040, 118895, 'en', 'name', 'Joint Institute for Power and Nuclear Research'),
(153041, 118895, 'be', 'name', 'Аб''ŃŠ“Š½Š°Š½Ń‹ Ń–Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚Ń‹Ń‡Š½Ń‹Ń… і ŃŠ“Š·ŠµŃ€Š½Ń‹Ń… Š“Š°ŃŠ»ŠµŠ“Š°Š²Š°Š½Š½ŃŃž'),
(153042, 118896, 'en', 'name', 'Global Earthquake Model'),
(153043, 118897, 'en', 'name', 'IDinsight'),
(153044, 118898, 'de', 'name', 'HBLFA Raumberg-Gumpenstein'),
(153045, 118899, 'en', 'name', 'Hellenic Endocrine Network'),
(153046, 118899, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Δίκτυο Ī•Ī½Ī“ĪæĪŗĻĪ¹Ī½ĪæĪ»ĻŒĪ³Ļ‰Ī½'),
(153047, 118900, 'en', 'name', 'Medical Centre Aviva'),
(153048, 118900, 'hr', 'name', 'Poliklinika Aviva'),
(153049, 118901, 'fr', 'name', 'GREMAN, MatƩriaux, MicroƩlectronique, Acoustique, Nanotechnologies'),
(153050, 118902, 'en', 'name', 'Shri Vishwakarma Skill University'),
(153051, 118903, 'en', 'name', 'The Japan Research Association for Textile End-Uses'),
(153052, 118903, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē¹Šē¶­č£½å“ę¶ˆč²»ē§‘å­¦ä¼š'),
(153053, 118904, 'en', 'name', 'Arellano University'),
(153054, 118905, 'en', 'name', 'Panasonic Education Foundation'),
(153055, 118905, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ‘ćƒŠć‚½ćƒ‹ćƒƒć‚Æę•™č‚²č²”å›£'),
(153056, 118906, 'en', 'name', 'G H Raisoni University'),
(153057, 118907, 'en', 'name', 'Sinopec Tech Middle East LLC'),
(153058, 118907, 'no_lang_code', 'name', 'Sinopec Tech Middle East LLC (Saudi Arabia)'),
(153059, 118908, 'en', 'name', 'Regional Centre for Mapping of Resources for Development'),
(153060, 118909, 'en', 'name', 'Japan Restaurant Association'),
(153061, 118909, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›č¦³å…‰ę—„ęœ¬ćƒ¬ć‚¹ćƒˆćƒ©ćƒ³å”ä¼š'),
(153062, 118910, 'en', 'name', 'Home Electric Appliances Fair Trade Conference'),
(153063, 118910, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½å®¶åŗ­é›»ę°—č£½å“å…¬ę­£å–å¼•å”č­°ä¼š'),
(153064, 118911, 'fr', 'name', 'DƩpartement de la protection de l''environnement du new jersey'),
(153065, 118911, 'en', 'name', 'New Jersey Department of Environmental Protection'),
(153066, 118912, 'en', 'name', 'The Japan Commercial Arbitration Association'),
(153067, 118912, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å•†äŗ‹ä»²č£å”ä¼š'),
(153068, 118913, 'no_lang_code', 'name', 'Align Technology (United States)'),
(153069, 118914, 'en', 'name', 'The Center for Eco-Mining'),
(153070, 118914, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč³‡ęŗē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(153071, 118915, 'en', 'name', 'Hartwig Medical Foundation'),
(153072, 118916, 'en', 'name', 'Japan Society on Water Environment'),
(153073, 118916, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“ē’°å¢ƒå­¦ä¼š'),
(153074, 118917, 'es', 'name', 'Instituto Bernabeu'),
(153075, 118918, 'en', 'name', 'National Folklore Board'),
(153076, 118919, 'en', 'name', 'Keizai Doyukai'),
(153077, 118919, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗēµŒęøˆåŒå‹ä¼š'),
(153078, 118920, 'en', 'name', 'The Japan Society Of Industrial Machinery Manufacturers'),
(153079, 118920, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£ę„­ę©Ÿę¢°å·„ę„­ä¼š'),
(153080, 118921, 'en', 'name', 'EC-Council University'),
(153081, 118922, 'en', 'name', 'Center For Housing Renovation and Dispute Settlement Support'),
(153082, 118922, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä½å®…ćƒŖćƒ•ć‚©ćƒ¼ćƒ ćƒ»ē“›äŗ‰å‡¦ē†ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(153083, 118923, 'en', 'name', 'Finnish Literature Society'),
(153084, 118924, 'en', 'name', 'Katori Omigawa Medical Center'),
(153085, 118924, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗé¦™å–ćŠćæćŒć‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(153086, 118925, 'en', 'name', 'Kyoto Comparative Law Center'),
(153087, 118925, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęÆ”č¼ƒę³•ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(153088, 118926, 'en', 'name', 'Aurangabad Pharmacy College'),
(153089, 118927, 'no_lang_code', 'name', 'General Fusion (Canada)'),
(153090, 118928, 'en', 'name', 'British University Vietnam'),
(153091, 118929, 'en', 'name', 'Verwey Jonker Institute'),
(153092, 118930, 'en', 'name', 'Bow Valley College'),
(153093, 118931, 'en', 'name', 'Japanese Society of Psychosomatic Internal Medicine'),
(153094, 118931, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬åæƒē™‚å†…ē§‘å­¦ä¼š'),
(153095, 118932, 'en', 'name', 'Cultural Heritage Institute'),
(153096, 118932, 'pt', 'name', 'Instituto do Património Cultural'),
(153097, 118933, 'en', 'name', 'Research Association for Infrastructure Monitoring System'),
(153098, 118933, 'ja', 'name', 'ćƒ¢ćƒ‹ć‚æćƒŖćƒ³ć‚°ć‚·ć‚¹ćƒ†ćƒ ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(153099, 118934, 'en', 'name', 'David Yellin College of Education'),
(153100, 118934, 'he', 'name', 'המכללה לחינוך ע"ש דוד ילין'),
(153101, 118935, 'en', 'name', 'Botswana Digital & Innovation Hub'),
(153102, 118936, 'en', 'name', 'Public Foundation of Kansai Research Institute'),
(153103, 118936, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé–¢č„æę–‡åŒ–å­¦č”“ē ”ē©¶éƒ½åø‚ęŽØé€²ę©Ÿę§‹'),
(153104, 118937, 'en', 'name', 'Rishi Bankim Chandra Evening College'),
(153105, 118938, 'en', 'name', 'Public Relations Society Of Japan'),
(153106, 118938, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ‘ćƒ–ćƒŖćƒƒć‚ÆćƒŖćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗå”ä¼š'),
(153107, 118939, 'en', 'name', 'SEAMEN''S Employment Center Of Japan'),
(153108, 118939, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬čˆ¹å“”é›‡ē”Øäæƒé€²ć‚»ćƒ³ć‚æćƒ¼'),
(153109, 118940, 'no', 'name', 'Grid-Arendal'),
(153110, 118941, 'en', 'name', 'Ota City Industrial Promotion Organization'),
(153111, 118941, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§ē”°åŒŗē”£ę„­ęŒÆčˆˆå”ä¼š'),
(153112, 118942, 'en', 'name', 'Japan Tennis Association'),
(153113, 118942, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ†ćƒ‹ć‚¹å”ä¼š'),
(153114, 118943, 'en', 'name', 'Harford Community College'),
(153115, 118944, 'en', 'name', 'Japan Workvessel Association'),
(153116, 118944, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½œę„­čˆ¹å”ä¼š'),
(153117, 118945, 'so', 'name', 'Jaamacada Muqdisho'),
(153118, 118945, 'en', 'name', 'Mogadishu University'),
(153119, 118945, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ł‚ŲÆŁŠŲ“Łˆ'),
(153120, 118946, 'en', 'name', 'Nippon Uniform Center'),
(153121, 118946, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ¦ćƒ‹ćƒ•ć‚©ćƒ¼ćƒ ć‚»ćƒ³ć‚æćƒ¼'),
(153122, 118947, 'en', 'name', 'Metropolitan Hospital College of Nursing'),
(153123, 118948, 'fr', 'name', 'Ecole Nationale SupƩrieure des Technologies de l''Information et de la Communication'),
(153124, 118948, 'en', 'name', 'National Higher School of Information and Communication Technologies'),
(153125, 118949, 'no_lang_code', 'name', 'Thorlabs (United States)'),
(153126, 118950, 'no_lang_code', 'name', 'Ethnographic Museum'),
(153127, 118951, 'en', 'name', 'Japan Shogi Association'),
(153128, 118951, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°†ę£‹é€£ē›Ÿ'),
(153129, 118952, 'it', 'name', 'Azienda USL della Valle d’Aosta'),
(153130, 118953, 'es', 'name', 'Uninavarra'),
(153131, 118954, 'en', 'name', 'Kanagawa Welfare Service Association'),
(153132, 118954, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗć‹ćŖćŒć‚ē¦ē„‰ć‚µćƒ¼ćƒ“ć‚¹ęŒÆčˆˆä¼š'),
(153133, 118955, 'en', 'name', 'Management College of Southern Africa'),
(153134, 118956, 'no_lang_code', 'name', 'Altasciences (Canada)'),
(153135, 118957, 'en', 'name', 'Drug Abuse Prevention Center'),
(153136, 118957, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéŗ»č–¬ćƒ»č¦šć›ć„å‰¤ä¹±ē”Øé˜²ę­¢ć‚»ćƒ³ć‚æćƒ¼'),
(153137, 118958, 'no_lang_code', 'name', 'Biopticka Laborator (Czechia)'),
(153138, 118959, 'no_lang_code', 'name', 'Ampel BioSolutions (United States)'),
(153139, 118960, 'en', 'name', 'Gabriela Mistral University'),
(153140, 118960, 'es', 'name', 'Universidad Gabriela Mistral'),
(153141, 118961, 'en', 'name', 'Research Institute of Molecular Electronics'),
(153142, 118961, 'ru', 'name', 'ŠŠ˜Š˜ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(153143, 118962, 'en', 'name', 'Douglas Instruments'),
(153144, 118962, 'no_lang_code', 'name', 'Douglas Instruments (United Kingdom)'),
(153145, 118963, 'en', 'name', 'The Japan Association of National Universities'),
(153146, 118963, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½ē«‹å¤§å­¦å”ä¼š'),
(153147, 118964, 'en', 'name', 'THE Fujihara Foundation Of Science'),
(153148, 118964, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč—¤åŽŸē§‘å­¦č²”å›£'),
(153149, 118965, 'en', 'name', 'Metanoia Institute'),
(153150, 118966, 'pt', 'name', 'Centro para a Excelência e Inovação na Indústria Automóvel'),
(153151, 118967, 'en', 'name', 'Japan Audio Society'),
(153152, 118967, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Ŗćƒ¼ćƒ‡ć‚£ć‚Ŗå”ä¼š'),
(153153, 118968, 'fr', 'name', 'Centre Hospitalier Agen - NƩrac'),
(153154, 118969, 'en', 'name', 'Yamanashi Livestock and Dairy Farming Technology Center'),
(153155, 118969, 'ja', 'name', 'å±±ę¢ØēœŒē•œē”£é…Ŗč¾²ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(153156, 118970, 'en', 'name', 'Urban planning Institute of the Republic of Slovenia'),
(153157, 118970, 'sl', 'name', 'Urbanistični inŔtitut Republike Slovenije'),
(153158, 118971, 'en', 'name', 'International Fund for Animal Welfare'),
(153159, 118972, 'en', 'name', 'European Centre for Minority Issues'),
(153160, 118972, 'de', 'name', 'Europäisches Zentrum für Minderheitenfragen'),
(153161, 118973, 'en', 'name', 'Okinawa Nursing Association'),
(153162, 118973, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę²–ēø„ēœŒēœ‹č­·å”ä¼š'),
(153163, 118974, 'en', 'name', 'The Society of Synthetic Organic Chemistry, Japan'),
(153164, 118974, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗęœ‰ę©ŸåˆęˆåŒ–å­¦å”ä¼š'),
(153165, 118975, 'en', 'name', 'Foundation for the Arts, Nagoya'),
(153166, 118975, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹å›½éš›čŠøč”“ę–‡åŒ–äŗ¤ęµč²”å›£'),
(153167, 118976, 'no_lang_code', 'name', 'PathAI (United States)'),
(153168, 118977, 'en', 'name', 'Ministry of Arts & Culture Cameroun'),
(153169, 118977, 'fr', 'name', 'MinistĆØre des Arts et de la Culture'),
(153170, 118978, 'en', 'name', 'Milan Vidmar Electric Power Research Institute'),
(153171, 118979, 'en', 'name', 'Africa Oral Health Network'),
(153172, 118980, 'en', 'name', 'MƩtis Nation of Ontario'),
(153173, 118981, 'en', 'name', 'Yu-cho Foundation'),
(153174, 118981, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚†ć†ć”ć‚‡č²”å›£'),
(153175, 118982, 'en', 'name', 'Talent Education Research Institute'),
(153176, 118982, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę‰čƒ½ę•™č‚²ē ”ē©¶ä¼š'),
(153177, 118983, 'en', 'name', 'Japan Bekko Association'),
(153178, 118983, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć¹ć£ē”²å”ä¼š'),
(153179, 118984, 'en', 'name', 'JA Niigata Kouseiren Ojiya General Hospital'),
(153180, 118984, 'ja', 'name', 'JAę–°ę½ŸåŽšē”Ÿé€£å°åƒč°·ē·åˆē—…é™¢'),
(153181, 118985, 'en', 'name', 'Aconcagua University'),
(153182, 118985, 'es', 'name', 'Universidad del Aconcagua'),
(153183, 118986, 'es', 'name', 'CONSORCIO DE INVESTIGACIƓN SOBRE VIH SIDA TB CISIDAT, A.C.'),
(153184, 118986, 'en', 'name', 'Health Research Consortium'),
(153185, 118987, 'en', 'name', 'The Japan Amateur Radio League'),
(153186, 118987, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒžćƒćƒ„ć‚¢ē„”ē·šé€£ē›Ÿ'),
(153187, 118988, 'en', 'name', 'Yasuki Daiichi Hospital'),
(153188, 118988, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę˜Œęž—ä¼šå®‰ę„ē¬¬äø€ē—…é™¢'),
(153189, 118989, 'no_lang_code', 'name', 'Agritec (Czechia)'),
(153190, 118990, 'en', 'name', 'California Medical Innovations Institute'),
(153191, 118991, 'en', 'name', 'Japan Advertising Photographers'' Association'),
(153192, 118991, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŗƒå‘Šå†™ēœŸå®¶å”ä¼š'),
(153193, 118992, 'en', 'name', 'National Academy of Medical Sciences of Ukraine'),
(153194, 118992, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń меГичних наук України'),
(153195, 118993, 'en', 'name', 'Arrupe Jesuit University'),
(153196, 118994, 'tr', 'name', 'Batı Karadeniz Akademisyenler Derneği'),
(153197, 118995, 'en', 'name', 'The AIDS Support Organization'),
(153198, 118996, 'en', 'name', 'National Federation of Real Estate Transaction Associations'),
(153199, 118996, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½å®…åœ°å»ŗē‰©å–å¼•ę„­å”ä¼šé€£åˆä¼š'),
(153200, 118997, 'de', 'name', 'Hochschule für öffentliche Verwaltung und Finanzen Ludwigsburg'),
(153201, 118997, 'en', 'name', 'University of Applied Sciences - Public Administration and Finance Ludwigsburg'),
(153202, 118998, 'en', 'name', 'Hungarian Demographic Research Institute'),
(153203, 118999, 'en', 'name', 'International Energy Research Centre'),
(153204, 119000, 'en', 'name', 'Foundation for Promotion of Medical Training'),
(153205, 119000, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ»ē™‚ē ”äæ®ęŽØé€²č²”å›£'),
(153206, 119001, 'en', 'name', 'Japan Asphalt Mixture Association'),
(153207, 119001, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ć‚¹ćƒ•ć‚”ćƒ«ćƒˆåˆęå”ä¼š'),
(153208, 119002, 'en', 'name', 'Sri Sairam Ayurveda Medical College and Research Centre'),
(153209, 119003, 'fr', 'name', 'ESCA Ecole de Management'),
(153210, 119004, 'en', 'name', 'Webster Vienna Private University'),
(153211, 119005, 'en', 'name', 'The Association For Promoting Fair Elections'),
(153212, 119005, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę˜Žć‚‹ć„éøęŒ™ęŽØé€²å”ä¼š'),
(153213, 119006, 'en', 'name', 'North Dakota Geological Survey'),
(153214, 119007, 'es', 'name', 'ANFACO-CECOPESCA'),
(153215, 119008, 'en', 'name', 'Akashi Tsuchiyama Hospital'),
(153216, 119008, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę­£ä»ä¼šę˜ŽēŸ³åœŸå±±ē—…é™¢'),
(153217, 119009, 'no_lang_code', 'name', 'Hokusei Gakuen University'),
(153218, 119009, 'ja', 'name', 'åŒ—ę˜Ÿå­¦åœ’å¤§å­¦'),
(153219, 119010, 'en', 'name', 'Research Association of Automotive Components and Technology'),
(153220, 119010, 'ja', 'name', 'č‡Ŗå‹•č»Šę©Ÿå™ØęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(153221, 119011, 'no_lang_code', 'name', 'eScire'),
(153222, 119012, 'en', 'name', 'All Japan Fishing Association'),
(153223, 119012, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬é‡£ć‚Šå›£ä½“å”č­°ä¼š'),
(153224, 119013, 'en', 'name', 'Infectious Diseases Data Observatory'),
(153225, 119014, 'en', 'name', 'The Conservation Fund'),
(153226, 119015, 'es', 'name', 'Instituto Superior de Educación Rural'),
(153227, 119016, 'no_lang_code', 'name', 'Agendia (Netherlands)'),
(153228, 119017, 'en', 'name', 'Manila Observatory'),
(153229, 119018, 'en', 'name', 'The Building-Energy Manager''s Association of Japan'),
(153230, 119018, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ“ćƒ«ć‚Øćƒćƒ«ć‚®ćƒ¼ē·åˆē®”ē†ęŠ€č”“å”ä¼š'),
(153231, 119019, 'es', 'name', 'Dirección General de Educación Normal'),
(153232, 119020, 'en', 'name', 'Cabrillo College'),
(153233, 119021, 'en', 'name', 'Arizona State University'),
(153234, 119021, 'es', 'name', 'Universidad Estatal de Arizona'),
(153235, 119021, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''Arizona'),
(153236, 119022, 'en', 'name', 'R A Podar College of Commerce and Economics'),
(153237, 119023, 'de', 'name', 'Institut für Informationsmanagement Bremen'),
(153238, 119023, 'en', 'name', 'Institute for Information Management Bremen'),
(153239, 119024, 'fr', 'name', 'Interactions, transferts, ruptures artistiques et culturelless'),
(153240, 119025, 'en', 'name', 'Japan Ice Cream Association'),
(153241, 119025, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ć‚¤ć‚¹ć‚ÆćƒŖćƒ¼ćƒ å”ä¼š'),
(153242, 119026, 'en', 'name', 'The Resona Foundation For Small And Medium Enterprise Promotion'),
(153243, 119026, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚ŠććŖäø­å°ä¼ę„­ęŒÆčˆˆč²”å›£'),
(153244, 119027, 'en', 'name', 'Council for Nuclear Fuel Cycle'),
(153245, 119027, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŽŸå­ē‡ƒę–™ę”æē­–ē ”ē©¶ä¼š'),
(153246, 119028, 'en', 'name', 'Valencia College'),
(153247, 119029, 'en', 'name', 'Hyogo Construction Technology Center for Regional Development'),
(153248, 119029, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…µåŗ«ēœŒć¾ć”ć„ćć‚ŠęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(153249, 119030, 'no_lang_code', 'name', 'Esprit (Slovakia)'),
(153250, 119031, 'no_lang_code', 'name', 'Kardan University'),
(153251, 119031, 'fa', 'name', 'دانؓگاه کاردان'),
(153252, 119031, 'ps', 'name', 'دکاردان Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(153253, 119032, 'es', 'name', 'Universidad de Zamboanga'),
(153254, 119033, 'en', 'name', 'Japan Poultry Association'),
(153255, 119033, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é¤Šé¶å”ä¼š'),
(153256, 119034, 'pt', 'name', 'Instituto Nacional de SaĆŗde PĆŗblica'),
(153257, 119034, 'en', 'name', 'National Institute of Public Health'),
(153258, 119035, 'en', 'name', 'Japan Association of Environment Assessment'),
(153259, 119035, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒć‚¢ć‚»ć‚¹ćƒ”ćƒ³ćƒˆå”ä¼š'),
(153260, 119036, 'en', 'name', 'Ternopil State Agricultural Experimental Station of Institute of Agriculture of Carpathion Region of National Academy of Agrarian Sciences of Ukraine'),
(153261, 119036, 'uk', 'name', 'Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠ° Державна Š”Ń–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ŃŠæŠ¾Š“Š°Ń€ŃŃŒŠŗŠ° ДосліГна Š”Ń‚Š°Š½Ń†Ń–Ń Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ Ń€ŠµŠ³Ń–Š¾Š½Ńƒ ŠŠŠŠ України'),
(153262, 119037, 'en', 'name', 'The Japanese Biochemical Society'),
(153263, 119037, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”ŸåŒ–å­¦ä¼š'),
(153264, 119038, 'en', 'name', 'Institute for Cultural Inquiry'),
(153265, 119039, 'en', 'name', 'The Forest Culture Association'),
(153266, 119039, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę£®ęž—ę–‡åŒ–å”ä¼š'),
(153267, 119040, 'en', 'name', 'Schreiner University'),
(153268, 119041, 'en', 'name', 'IBARAKI Construction Technology Center'),
(153269, 119041, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčŒØåŸŽēœŒå»ŗčØ­ęŠ€č”“ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(153270, 119042, 'en', 'name', 'Herzog College'),
(153271, 119043, 'en', 'name', 'National Liver Institute'),
(153272, 119043, 'ar', 'name', 'معهد Ų§Ł„ŁƒŲØŲÆ Ų§Ł„Ł‚ŁˆŁ…ŁŠ'),
(153273, 119044, 'en', 'name', 'Wyss Center for Bio and Neuroengineering'),
(153274, 119045, 'no_lang_code', 'name', 'Damodaram Sanjivayya National Law University'),
(153275, 119045, 'te', 'name', 'దామోదరం ą°øą°‚ą°œą±€ą°µą°Æą±ą°Æ ą°œą°¾ą°¤ą±€ą°Æ లా ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚');
INSERT INTO `ror_settings` VALUES
(153276, 119046, 'fr', 'name', 'Ecole supƩrieure en science et technologies de l''informatique et du numƩrique'),
(153277, 119047, 'en', 'name', 'University of the Ozarks'),
(153278, 119048, 'es', 'name', 'Corporación Educativa del Litoral'),
(153279, 119049, 'en', 'name', 'Belarusian State Agrarian Technical University'),
(153280, 119049, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ аграрны Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(153281, 119050, 'en', 'name', 'Keiaikai Yanai Hospital'),
(153282, 119050, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗęµę„›ä¼šęŸ³äŗ•ē—…é™¢'),
(153283, 119051, 'en', 'name', 'SECOM Science and Technology Foundation'),
(153284, 119051, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚»ć‚³ćƒ ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(153285, 119052, 'en', 'name', 'Hospital Dubrovnik'),
(153286, 119052, 'hr', 'name', 'Opća bolnica Dubrovnik'),
(153287, 119053, 'fr', 'name', 'UniversitƩ de western michigan'),
(153288, 119053, 'en', 'name', 'Western Michigan University'),
(153289, 119054, 'en', 'name', 'Kenya Association of Pharmaceutical Industry'),
(153290, 119055, 'en', 'name', 'NOGUCHI-, Inc.'),
(153291, 119055, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé‡Žå£åŒ»å­¦ē ”ē©¶ę‰€'),
(153292, 119056, 'en', 'name', 'Japan Weightlifting Association'),
(153293, 119056, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¦ć‚Øć‚¤ćƒˆćƒŖćƒ•ćƒ†ć‚£ćƒ³ć‚°å”ä¼š'),
(153294, 119057, 'en', 'name', 'Sagamihara Industrial Promotion Foundation'),
(153295, 119057, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē›øęØ”åŽŸåø‚ē”£ę„­ęŒÆčˆˆč²”å›£'),
(153296, 119058, 'en', 'name', 'Food Marketing Research and Information Center'),
(153297, 119058, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé£Ÿå“éœ€ēµ¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(153298, 119059, 'en', 'name', 'NSK Foundation for the Advancement of Mechatronics'),
(153299, 119059, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗNSKćƒ”ć‚«ćƒˆćƒ­ćƒ‹ć‚Æć‚¹ęŠ€č”“é«˜åŗ¦åŒ–č²”å›£'),
(153300, 119060, 'en', 'name', 'Japan Engineering Association of Survey&Design for Rural Development'),
(153301, 119060, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåœŸåœ°ę”¹č‰Æęø¬é‡čØ­čØˆęŠ€č”“å”ä¼š'),
(153302, 119061, 'en', 'name', 'SCIVP of Veterinary Medicinal Products and Feed Additives'),
(153303, 119061, 'uk', 'name', 'Державний науково-ГосліГний ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŒŠ½ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарних препаратів та кормових Гобавок.'),
(153304, 119062, 'en', 'name', 'Hidayatullah National Law University'),
(153305, 119062, 'hi', 'name', 'ą¤¹ą¤æą¤¦ą¤¾ą¤Æą¤¤ą„ą¤²ą„ą¤²ą¤¾ą¤¹ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(153306, 119063, 'en', 'name', 'Japan-Korea Industrial Technology Co-Operation Foundation'),
(153307, 119063, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„éŸ“ē”£ę„­ęŠ€č”“å”åŠ›č²”å›£'),
(153308, 119064, 'en', 'name', 'Japan Foundry Society, Inc.'),
(153309, 119064, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‹³é€ å”ä¼š'),
(153310, 119065, 'en', 'name', 'PERSEI Space'),
(153311, 119066, 'en', 'name', 'University of Applied Sciences Ivanić-Grad'),
(153312, 119066, 'hr', 'name', 'VeleučiliÅ”te Ivanić-Grad'),
(153313, 119067, 'en', 'name', 'Belarusian State Academy of Telecommunications'),
(153314, 119067, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ĢŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń ŃŃƒĢŠ²ŃŠ·Ń–'),
(153315, 119067, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠ²ŃŠ·Šø'),
(153316, 119068, 'es', 'name', 'Instituto Departamental de Bellas Artes'),
(153317, 119069, 'en', 'name', 'Tokushima Prefectural Public Health, Pharmaceutical and Environmental Sciences Center'),
(153318, 119069, 'ja', 'name', 'å¾³å³¶ēœŒē«‹äæå„č£½č–¬ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(153319, 119070, 'en', 'name', 'Hokkaido Acupuncture Moxibustion Association'),
(153320, 119070, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“é¼ēøåø«ä¼š'),
(153321, 119071, 'no_lang_code', 'name', 'Foster and Partners (United Kingdom)'),
(153322, 119072, 'no_lang_code', 'name', 'Menlo Systems (Germany)'),
(153323, 119073, 'en', 'name', 'National Bank of Ukraine'),
(153324, 119073, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ банк України'),
(153325, 119074, 'en', 'name', 'Kyiv University of Aviation and Information Technologies'),
(153326, 119074, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ авіаційних та інформаційних технологій'),
(153327, 119075, 'en', 'name', 'Ottawa Heart Institute Research Corporation'),
(153328, 119076, 'en', 'name', 'Japan Society of Plastics Technology'),
(153329, 119076, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åˆęˆęØ¹č„‚ęŠ€č”“å”ä¼š'),
(153330, 119077, 'en', 'name', 'Centerstone'),
(153331, 119078, 'en', 'name', 'Togane-Kujukuri Medical Center'),
(153332, 119078, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę±é‡‘ä¹åä¹é‡Œåœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(153333, 119079, 'en', 'name', 'Fuchu City Hospital Organization'),
(153334, 119079, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŗœäø­åø‚ē—…é™¢ę©Ÿę§‹'),
(153335, 119080, 'en', 'name', 'Chandragupt Institute of Management'),
(153336, 119081, 'en', 'name', 'Association Djibouti Nature'),
(153337, 119082, 'no_lang_code', 'name', 'Umgeni Water Amanzi'),
(153338, 119083, 'en', 'name', 'Asakusa medical Association'),
(153339, 119083, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗęµ…č‰åŒ»åø«ä¼š'),
(153340, 119084, 'en', 'name', 'Forest Chemicals Association of Japan'),
(153341, 119084, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęž—ę„­č–¬å‰¤å”ä¼š'),
(153342, 119085, 'en', 'name', 'Central Remedial Clinic'),
(153343, 119086, 'en', 'name', 'Japan Agricultural Corporations Association'),
(153344, 119086, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č¾²ę„­ę³•äŗŗå”ä¼š'),
(153345, 119087, 'en', 'name', 'KSCSTE-Srinivasa Ramanujan Institute for Basic Sciences'),
(153346, 119088, 'en', 'name', 'Rocky Mountain College'),
(153347, 119089, 'fr', 'name', 'Institut National de la Statistique de Djibouti'),
(153348, 119089, 'en', 'name', 'Institute of Statistics of Djibouti'),
(153349, 119090, 'en', 'name', 'The Hyogo Industrial Association'),
(153350, 119090, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…µåŗ«å·„ę„­ä¼š'),
(153351, 119091, 'en', 'name', 'Sri Sri Institute for Advanced Research'),
(153352, 119092, 'en', 'name', 'Motion Picture And Television Engineering Society Of Japan, Inc.'),
(153353, 119092, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę˜ ē”»ćƒ†ćƒ¬ćƒ“ęŠ€č”“å”ä¼š'),
(153354, 119093, 'en', 'name', 'Acharya Institute of Technology'),
(153355, 119094, 'en', 'name', 'Slovak Hydrometeorological Institute'),
(153356, 119095, 'nl', 'name', 'Alliade'),
(153357, 119096, 'en', 'name', 'Mulier Institute'),
(153358, 119097, 'no_lang_code', 'name', 'TrinaSolar Co., Ltd. (China)'),
(153359, 119097, 'zh', 'name', 'å¤©åˆå…‰čƒ½č‚”ä»½ęœ‰é™å…¬åø'),
(153360, 119098, 'en', 'name', 'Research Institute of Agricultural Engineering'),
(153361, 119098, 'cs', 'name', 'Výzkumný Ústav ZemědělskĆ© Techniky'),
(153362, 119099, 'en', 'name', 'Lifenet Health'),
(153363, 119100, 'en', 'name', 'Sewerage Business Management Centre'),
(153364, 119100, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäø‹ę°“é“äŗ‹ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(153365, 119101, 'en', 'name', 'Japan Intractable Diseases Research Foundation'),
(153366, 119101, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé›£ē—…åŒ»å­¦ē ”ē©¶č²”å›£'),
(153367, 119102, 'en', 'name', 'Sustainable Development Policy Institute'),
(153368, 119103, 'en', 'name', 'Autism Speaks'),
(153369, 119104, 'en', 'name', 'University of Rennes 2'),
(153370, 119104, 'fr', 'name', 'UniversitƩ Rennes 2'),
(153371, 119105, 'en', 'name', 'Japan Israel Friendship Association'),
(153372, 119105, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¤ć‚¹ćƒ©ć‚Øćƒ«č¦Ŗå–„å”ä¼š'),
(153373, 119106, 'en', 'name', 'Japan Kanji Aptitude Testing Foundation'),
(153374, 119106, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę¼¢å­—čƒ½åŠ›ę¤œå®šå”ä¼š'),
(153375, 119107, 'en', 'name', 'PAR University of Applied Sciences'),
(153376, 119107, 'hr', 'name', 'VeleučiliŔte PAR'),
(153377, 119108, 'en', 'name', 'Internet Association Japan'),
(153378, 119108, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆå”ä¼š'),
(153379, 119109, 'en', 'name', 'Japan Security Systems Association'),
(153380, 119109, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é˜²ēŠÆčØ­å‚™å”ä¼š'),
(153381, 119110, 'en', 'name', 'Local Government Training Institute'),
(153382, 119111, 'en', 'name', 'University of Dongola'),
(153383, 119111, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© دنقلا'),
(153384, 119112, 'en', 'name', 'Toshiba International Foundation'),
(153385, 119112, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±čŠå›½éš›äŗ¤ęµč²”å›£'),
(153386, 119113, 'no_lang_code', 'name', 'Oroboros Instruments (Austria)'),
(153387, 119114, 'pt', 'name', 'Instituto Superior PolitƩcnico Gaya'),
(153388, 119115, 'en', 'name', 'Takarazuka Golf Club'),
(153389, 119115, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå®å”šć‚“ćƒ«ćƒ•å€¶ę„½éƒØ'),
(153390, 119116, 'en', 'name', 'Institute for Peace and Security Studies'),
(153391, 119117, 'en', 'name', 'The Japanese Society of Sericultural Science'),
(153392, 119117, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čš•ē³øå­¦ä¼š'),
(153393, 119118, 'en', 'name', 'State Institution «Academician O.F.Vozianov Institute of Urology of the National Academy of Medical Sciences of Ukraine»'),
(153394, 119118, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŃ€Š¾Š»Š¾Š³Ń–Ń— імені акаГ. Šž.Ф. Возіанова ŠŠŠœŠ України»'),
(153395, 119119, 'en', 'name', 'Nature Conservation Society of Osaka'),
(153396, 119119, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗč‡Ŗē„¶ē’°å¢ƒäæå…Øå”ä¼š'),
(153397, 119120, 'en', 'name', 'Cambrian College'),
(153398, 119121, 'en', 'name', 'Pontifical Oriental Institute'),
(153399, 119121, 'it', 'name', 'Pontificio Istituto Orientale'),
(153400, 119122, 'en', 'name', 'Sitamarhi Institute of Technology'),
(153401, 119123, 'en', 'name', 'Japan Epilepsy Association'),
(153402, 119123, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć¦ć‚“ć‹ć‚“å”ä¼š'),
(153403, 119124, 'en', 'name', 'Parker University'),
(153404, 119125, 'en', 'name', 'Center for Quantum Nanoscience'),
(153405, 119125, 'ko', 'name', 'ģ–‘ģžė‚˜ė…øź³¼ķ•™ģ—°źµ¬ė‹Ø'),
(153406, 119126, 'en', 'name', 'Japan Triathlon Union'),
(153407, 119126, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒˆćƒ©ć‚¤ć‚¢ć‚¹ćƒ­ćƒ³é€£åˆ'),
(153408, 119127, 'en', 'name', 'Ethiopian Food and Drug Authority'),
(153409, 119127, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆįŒį‰„įŠ“ įˆ˜į‹µįŠƒįŠ’į‰µ į‰£įˆˆįˆµįˆįŒ£įŠ•'),
(153410, 119128, 'en', 'name', 'Toyonaka Medical Association'),
(153411, 119128, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč±Šäø­åø‚åŒ»åø«ä¼š'),
(153412, 119129, 'en', 'name', 'Goethe-Gesellschaft in Japan'),
(153413, 119129, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚²ćƒ¼ćƒ†å”ä¼š'),
(153414, 119130, 'en', 'name', 'RV College of Nursing'),
(153415, 119131, 'en', 'name', 'Holy Family University'),
(153416, 119132, 'en', 'name', 'Bhartiya Skill Development University'),
(153417, 119132, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„ą¤•ą¤æą¤² ą¤”ą¤µą¤²ą¤Ŗą¤®ą„‡ą¤Øą„ą¤Ÿ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(153418, 119133, 'en', 'name', 'Research Studios Austria'),
(153419, 119134, 'en', 'name', 'Machida City Medical Association'),
(153420, 119134, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē”ŗē”°åø‚åŒ»åø«ä¼š'),
(153421, 119135, 'en', 'name', 'Ministry of the Environment, Protection of Nature and Sustainable Development'),
(153422, 119135, 'fr', 'name', 'MinistĆØre de l’Environnement, de la Protection de la Nature et du DĆ©veloppement durable'),
(153423, 119136, 'no_lang_code', 'name', 'Sutro Biopharma (United States)'),
(153424, 119137, 'no_lang_code', 'name', 'Aiju'),
(153425, 119137, 'es', 'name', 'Instituto Tecnológico de Producto Infantil y Ocio'),
(153426, 119138, 'en', 'name', 'Japan Botanical Association'),
(153427, 119138, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©å‹ć®ä¼š'),
(153428, 119139, 'no_lang_code', 'name', 'Zanasi & Partners (Italy)'),
(153429, 119140, 'en', 'name', 'The Independent Institute of Education'),
(153430, 119141, 'en', 'name', 'Louisiana Geological Survey'),
(153431, 119142, 'en', 'name', 'Psychiatric University Hospital Zurich'),
(153432, 119142, 'de', 'name', 'Psychiatrische Universitätsklinik Zürich'),
(153433, 119143, 'en', 'name', 'Attorney General of El Salvador'),
(153434, 119143, 'es', 'name', 'FiscalĆ­a General de la RepĆŗblica de El Salvador'),
(153435, 119144, 'en', 'name', 'Kyukamura'),
(153436, 119144, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä¼‘ęš‡ę‘å”ä¼š'),
(153437, 119145, 'fr', 'name', 'Ɖcole RĆ©gionale SupĆ©rieure de la Magistrature (ERSUMA) de l’OHADA'),
(153438, 119146, 'en', 'name', 'The Environment Institute of Kenya'),
(153439, 119147, 'en', 'name', 'Kyoto Industrial Waste Association'),
(153440, 119147, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½åŗœē”£ę„­å»ƒę£„ē‰©å”ä¼š'),
(153441, 119148, 'en', 'name', 'Santa Fe College'),
(153442, 119149, 'en', 'name', 'Tennessee Geological Survey'),
(153443, 119150, 'no_lang_code', 'name', 'Relay Therapeutics (United States)'),
(153444, 119151, 'en', 'name', 'Asia School of Business'),
(153445, 119152, 'en', 'name', 'The Textile Mechinery Society of Japan'),
(153446, 119152, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē¹Šē¶­ę©Ÿę¢°å­¦ä¼š'),
(153447, 119153, 'no_lang_code', 'name', 'Zeon (Japan)'),
(153448, 119153, 'ja', 'name', 'ę—„ęœ¬ć‚¼ć‚Ŗćƒ³ę Ŗå¼ä¼šē¤¾'),
(153449, 119154, 'en', 'name', 'Saitama Acupuncture&Moxibustion Association'),
(153450, 119154, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒé¼ēøåø«ä¼š'),
(153451, 119155, 'en', 'name', 'EarthScope Consortium'),
(153452, 119156, 'tr', 'name', 'Nurol Makina'),
(153453, 119157, 'en', 'name', 'The Watanabe Foundation'),
(153454, 119157, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęø”é‚‰č²”å›£'),
(153455, 119158, 'no_lang_code', 'name', 'Trasporti e Territorio'),
(153456, 119159, 'de', 'name', 'AWS-Institut für Digitale Produkte und Prozesse'),
(153457, 119159, 'en', 'name', 'AWS-Institute for Digitized Products and Processes'),
(153458, 119160, 'no_lang_code', 'name', 'Celldex Therapeutics (United States)'),
(153459, 119161, 'en', 'name', 'Palestine Technical College'),
(153460, 119162, 'en', 'name', 'Utsunomiya City Institute of Public Health and Environmental Science'),
(153461, 119162, 'ja', 'name', 'å®‡éƒ½å®®åø‚č”›ē”Ÿē’°å¢ƒč©¦éØ“ę‰€'),
(153462, 119163, 'en', 'name', 'Juan AgustĆ­n Maza University'),
(153463, 119163, 'es', 'name', 'Universidad Juan AgustĆ­n Maza'),
(153464, 119164, 'en', 'name', 'Japanisch-Deutsches Kulturinstitut'),
(153465, 119164, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ē‹¬ę–‡åŒ–ē ”ē©¶ę‰€'),
(153466, 119165, 'id', 'name', 'Universitas Putra Bangsa'),
(153467, 119166, 'en', 'name', 'Chester Zoo'),
(153468, 119167, 'no_lang_code', 'name', 'Silvaco (United Kingdom)'),
(153469, 119168, 'en', 'name', 'Kenya Institute of Curriculum Development'),
(153470, 119169, 'en', 'name', 'Jaihind College of Engineering'),
(153471, 119170, 'en', 'name', 'National Association of School Nurses'),
(153472, 119171, 'en', 'name', 'Croatian Institute for Brain Research'),
(153473, 119171, 'hr', 'name', 'Hrvatski institut za istraživanje mozga'),
(153474, 119172, 'en', 'name', 'FUKUOKA Association of Independent Entrepreneurs'),
(153475, 119172, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē¦å²”ēœŒäø­å°ä¼ę„­ēµŒå–¶č€…å”ä¼šé€£åˆä¼š'),
(153476, 119173, 'en', 'name', 'Japanese Association of Certified Orthoptists'),
(153477, 119173, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č¦–čƒ½čØ“ē·“å£«å”ä¼š'),
(153478, 119174, 'no_lang_code', 'name', 'Van Leer Jerusalem Institute'),
(153479, 119175, 'no_lang_code', 'name', 'Farvet (Peru)'),
(153480, 119176, 'en', 'name', 'Vitebsk State University named after P.M. Masherov'),
(153481, 119176, 'ru', 'name', 'Витебский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П. М. ŠœŠ°ŃˆŠµŃ€Š¾Š²Š°'),
(153482, 119176, 'be', 'name', 'Віцебскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń П. М. ŠœŠ°ŃˆŃŃ€Š°Š²Š°'),
(153483, 119177, 'en', 'name', 'Radiation Protection Institute'),
(153484, 119178, 'en', 'name', 'The Akita Association of Radiological Technologists'),
(153485, 119178, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē§‹ē”°ēœŒčØŗē™‚ę”¾å°„ē·šęŠ€åø«ä¼š'),
(153486, 119179, 'en', 'name', 'Japan Aeronautic Association'),
(153487, 119179, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬čˆŖē©ŗå”ä¼š'),
(153488, 119180, 'nl', 'name', 'Helen Dowling Instituut'),
(153489, 119181, 'en', 'name', 'Oze Preservation Foundation'),
(153490, 119181, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå°¾ē€¬äæč­·č²”å›£'),
(153491, 119182, 'en', 'name', 'Mapping Technology Association'),
(153492, 119182, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåœ°å›³čŖæč£½ęŠ€č”“å”ä¼š'),
(153493, 119183, 'en', 'name', 'Neural Stem Cell Institute'),
(153494, 119184, 'en', 'name', 'Japan Society for the Prevention of Cruelty to Animals'),
(153495, 119184, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©ę„›č­·å”ä¼š'),
(153496, 119185, 'no_lang_code', 'name', 'Zambart'),
(153497, 119186, 'hu', 'name', 'KodolĆ”nyi JĆ”nos Főiskola'),
(153498, 119186, 'en', 'name', 'KodolƔnyi JƔnos University of Applied Sciences'),
(153499, 119187, 'en', 'name', 'Toho Junior College of Music'),
(153500, 119187, 'ja', 'name', 'ę±é‚¦éŸ³ę„½ēŸ­ęœŸå¤§å­¦'),
(153501, 119188, 'en', 'name', 'Japan Society of Mathematical Education'),
(153502, 119188, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę•°å­¦ę•™č‚²å­¦ä¼š'),
(153503, 119189, 'en', 'name', 'Japan Federation of Architects & Building Engineers Associations'),
(153504, 119189, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰å£«ä¼šé€£åˆä¼š'),
(153505, 119190, 'en', 'name', 'Japan Cooperative Insurance Association Incorporated'),
(153506, 119190, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…±ęøˆå”ä¼š'),
(153507, 119191, 'en', 'name', 'European Research and Project Office'),
(153508, 119192, 'en', 'name', 'Academy of Fine Arts in Warsaw'),
(153509, 119192, 'pl', 'name', 'Akademia Sztuk Pięknych w Warszawie'),
(153510, 119193, 'en', 'name', 'Blackpool and The Fylde College'),
(153511, 119194, 'es', 'name', 'Hospital de Palamós'),
(153512, 119195, 'no_lang_code', 'name', 'Metrum Research Group (United States)'),
(153513, 119196, 'en', 'name', 'Alaska SeaLife Center'),
(153514, 119197, 'en', 'name', 'Addis Ababa University'),
(153515, 119198, 'de', 'name', 'Klinik Dr. Hancken'),
(153516, 119199, 'en', 'name', 'Normalization Housing Foundation'),
(153517, 119199, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒŽćƒ¼ćƒžćƒ©ć‚¤ć‚¼ćƒ¼ć‚·ćƒ§ćƒ³ä½å®…č²”å›£'),
(153518, 119200, 'en', 'name', 'Sendai City Industrial Promotion Organization'),
(153519, 119200, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä»™å°åø‚ē”£ę„­ęŒÆčˆˆäŗ‹ę„­å›£'),
(153520, 119201, 'pl', 'name', 'Narodowy Instytut Dziedzictwa'),
(153521, 119201, 'en', 'name', 'National Heritage Board of Poland'),
(153522, 119202, 'en', 'name', 'Clinical Research Institute of Benin'),
(153523, 119202, 'fr', 'name', 'Institut de Recherche Clinique du BƩnin'),
(153524, 119203, 'en', 'name', 'Institute for Structural Research'),
(153525, 119204, 'en', 'name', 'Burman University'),
(153526, 119205, 'en', 'name', 'Dongwon Industries'),
(153527, 119205, 'no_lang_code', 'name', 'Dongwon Industries (South Korea)'),
(153528, 119205, 'ko', 'name', 'ė™ģ›ģ‚°ģ—…'),
(153529, 119206, 'en', 'name', 'Center for Ecological Noosphere Studies'),
(153530, 119207, 'en', 'name', 'Philippine Electronics and Communication Institute of Technology'),
(153531, 119208, 'no_lang_code', 'name', 'Emulate (United States)'),
(153532, 119209, 'no_lang_code', 'name', 'SmartFactory (Germany)'),
(153533, 119209, 'de', 'name', 'Technologie-Initiative SmartFactory KL'),
(153534, 119210, 'es', 'name', 'Universidad Mariano Galvez'),
(153535, 119211, 'en', 'name', 'Kyoto Youth Hostel Association'),
(153536, 119211, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäŗ¬éƒ½ćƒ¦ćƒ¼ć‚¹ćƒ›ć‚¹ćƒ†ćƒ«å”ä¼š'),
(153537, 119212, 'en', 'name', 'The Akita Center To Implement Vigorous Enterprises'),
(153538, 119212, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚ććŸä¼ę„­ę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(153539, 119213, 'en', 'name', 'Geological Institute of Angola'),
(153540, 119213, 'pt', 'name', 'Instituto Geológico de Angola'),
(153541, 119214, 'en', 'name', 'Kawagoe Medical Association'),
(153542, 119214, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå·č¶Šåø‚åŒ»åø«ä¼š'),
(153543, 119215, 'en', 'name', 'Academy of Science of South Africa'),
(153544, 119216, 'nl', 'name', 'GGzE'),
(153545, 119217, 'en', 'name', 'Missouri Department of Natural Resources'),
(153546, 119218, 'en', 'name', 'Association of Copyright for Computer Software'),
(153547, 119218, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢č‘—ä½œęØ©å”ä¼š'),
(153548, 119219, 'en', 'name', 'Remote Sensing Applications Centre, Uttar Pradesh'),
(153549, 119220, 'nl', 'name', 'Slingeland Ziekenhuis'),
(153550, 119221, 'en', 'name', 'Biobanking and Biomolecular Resources Research Infrastructure Consortium'),
(153551, 119222, 'en', 'name', 'Donated Blood Distribution Foundation'),
(153552, 119222, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗēŒ®č”€ä¾›ēµ¦äŗ‹ę„­å›£'),
(153553, 119223, 'en', 'name', 'National Advanced School of Engineering of Yaounde'),
(153554, 119223, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure Polytechnique de YaoundĆ©'),
(153555, 119224, 'en', 'name', 'AltaMed'),
(153556, 119225, 'en', 'name', 'Central Laboratory for Radiological Protection'),
(153557, 119225, 'pl', 'name', 'Centralnego Laboratorium Ochrony Radiologicznej'),
(153558, 119226, 'no_lang_code', 'name', 'Sinocelltech Group (China)'),
(153559, 119226, 'zh', 'name', 'äø­å›½ē»†čƒžęŠ€ęœÆé›†å›¢ęœ‰é™å…¬åø'),
(153560, 119227, 'en', 'name', 'Institute for International Monetary Affairs'),
(153561, 119227, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›é€šč²Øē ”ē©¶ę‰€'),
(153562, 119228, 'en', 'name', 'The Korea Foundation for Education'),
(153563, 119228, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéŸ“å›½ę•™č‚²č²”å›£'),
(153564, 119229, 'pt', 'name', 'Instituto Superior de Administração e Línguas'),
(153565, 119230, 'en', 'name', 'Shanghai Development Center of Computer Software Technology'),
(153566, 119231, 'es', 'name', 'Instituto Sinchi'),
(153567, 119232, 'en', 'name', 'ELIXIR'),
(153568, 119233, 'en', 'name', 'National Accreditation and Quality Assurance Authority'),
(153569, 119234, 'no_lang_code', 'name', 'ProQR Therapeutics (Netherlands)'),
(153570, 119235, 'en', 'name', 'Sanitary and Environmental Research Institute of Kochi Prefecture'),
(153571, 119235, 'ja', 'name', 'é«˜ēŸ„ēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(153572, 119236, 'nl', 'name', 'Mondriaan GGZ'),
(153573, 119237, 'tn', 'name', 'Ditirelo tsa motlobo wa dibuka tsa Botswana'),
(153574, 119237, 'en', 'name', 'National Library Service of Botswana'),
(153575, 119238, 'en', 'name', 'Egyptian e-Learning University'),
(153576, 119238, 'ar', 'name', 'الجامعة Ų§Ł„Ł…ŲµŲ±ŁŠŲ© للتعلم Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†Ł‰'),
(153577, 119239, 'en', 'name', 'Japan Pet Care Association'),
(153578, 119239, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę„›ēŽ©å‹•ē‰©å”ä¼š'),
(153579, 119240, 'en', 'name', 'Japan Foodservice Association'),
(153580, 119240, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ•ćƒ¼ćƒ‰ć‚µćƒ¼ćƒ“ć‚¹å”ä¼š'),
(153581, 119241, 'en', 'name', 'THE Watanabe Memorial Foundation For The Advancement Of Technology'),
(153582, 119241, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę–°ęŠ€č”“ęŒÆčˆˆęø”č¾ŗčØ˜åæµä¼š'),
(153583, 119242, 'en', 'name', 'Far Eastern University'),
(153584, 119242, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŸąø²ąø£ą¹Œąø­ąøµąøŖą¹€ąø—ąø­ąø£ą¹Œąø™'),
(153585, 119243, 'en', 'name', 'Mitaka International Society for Hospitality'),
(153586, 119243, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø‰é·¹å›½éš›äŗ¤ęµå”ä¼š'),
(153587, 119244, 'en', 'name', 'South African National Blood Service'),
(153588, 119245, 'en', 'name', 'The Aomori Institute of Regional Studies'),
(153589, 119245, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé’ę£®åœ°åŸŸē¤¾ä¼šē ”ē©¶ę‰€'),
(153590, 119246, 'en', 'name', 'Bureau of Ocean Energy Management'),
(153591, 119247, 'no_lang_code', 'name', 'Sotio (Czechia)'),
(153592, 119248, 'en', 'name', 'SVP College of Pharmacy'),
(153593, 119248, 'mr', 'name', 'ą¤ą¤ø.व.ą¤Ŗą„€. ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ ą¤«ą¤¾ą¤°ą„ą¤®ą¤øą„€ ą¤¹ą¤Ÿą„ą¤Ÿą¤¾'),
(153594, 119249, 'en', 'name', 'THE Honda Memorial Foundation'),
(153595, 119249, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęœ¬å¤ščØ˜åæµä¼š'),
(153596, 119250, 'no_lang_code', 'name', 'Galois (United States)'),
(153597, 119251, 'de', 'name', 'Aquazoo Lƶbbecke Museum'),
(153598, 119252, 'en', 'name', 'ActionAid'),
(153599, 119253, 'en', 'name', 'Ndejje University'),
(153600, 119254, 'en', 'name', 'National Petroleum Dealers Association'),
(153601, 119254, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ēŸ³ę²¹å”ä¼š'),
(153602, 119255, 'en', 'name', 'Center for Academic Publications Japan'),
(153603, 119255, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå­¦ä¼ščŖŒåˆŠč”Œć‚»ćƒ³ć‚æćƒ¼'),
(153604, 119256, 'en', 'name', 'Bureau of Ghana Languages'),
(153605, 119257, 'en', 'name', 'American Society for the Prevention of Cruelty to Animals'),
(153606, 119258, 'en', 'name', 'Scientific Electronic Library Online'),
(153607, 119259, 'en', 'name', 'Association of International Politics and Security Studies'),
(153608, 119259, 'tr', 'name', 'Uluslararası Politika ve Güvenlik çalışmaları Derneği'),
(153609, 119260, 'en', 'name', 'Kitakyushu City Institute of Health and Environmental Sciences'),
(153610, 119260, 'ja', 'name', 'åŒ—ä¹å·žåø‚äæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(153611, 119261, 'de', 'name', 'Institut für sozial-ökologische Forschung'),
(153612, 119261, 'en', 'name', 'Institute for Social-Ecological Research'),
(153613, 119262, 'en', 'name', 'Academy of Cryptography Techniques'),
(153614, 119262, 'vi', 'name', 'Hį»c viện Kỹ thuįŗ­t Mįŗ­t mĆ£'),
(153615, 119263, 'en', 'name', 'Kakogawa General Health Care Center'),
(153616, 119263, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŠ å¤å·ē·åˆäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(153617, 119264, 'en', 'name', 'Association of Japan Sporting Goods Industries'),
(153618, 119264, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„ē”Øå“å·„ę„­å”ä¼š'),
(153619, 119265, 'en', 'name', 'Wuxi Taihu University'),
(153620, 119266, 'en', 'name', 'Hamdard University Bangladesh'),
(153621, 119266, 'bn', 'name', 'ą¦¹ą¦¾ą¦®ą¦¦ą¦°ą§ą¦¦ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ বাংলাদেশ'),
(153622, 119267, 'en', 'name', 'Tokyo Geotechnical Consultants Association'),
(153623, 119267, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½åœ°č³ŖčŖæęŸ»ę„­å”ä¼š'),
(153624, 119268, 'en', 'name', 'All-Russian Scientific Research Institute of the Dairy Industry'),
(153625, 119268, 'ru', 'name', 'Всеросийский ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ¾Š»Š¾Ń‡Š½Š¾Š¹ ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(153626, 119269, 'en', 'name', 'NatureServe'),
(153627, 119270, 'en', 'name', 'The Gambia Standards Bureau'),
(153628, 119271, 'en', 'name', 'Synchrotron-Light for Experimental Science and Applications in the Middle East'),
(153629, 119272, 'en', 'name', 'Bruyere Health Research Institute'),
(153630, 119273, 'en', 'name', 'Hong Kong Productivity Council'),
(153631, 119273, 'zh', 'name', 'é¦™ęøÆē”Ÿē”¢åŠ›äæƒé€²å±€'),
(153632, 119274, 'en', 'name', 'Ethiopian Academy of Sciences'),
(153633, 119275, 'en', 'name', 'Japan Auto Parts Industries Association'),
(153634, 119275, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»ŠéƒØå“å·„ę„­ä¼š'),
(153635, 119276, 'no_lang_code', 'name', 'Elsheikh Abdallah Elbadri University'),
(153636, 119276, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų“ŁŠŲ® عبدالله Ų§Ł„ŲØŲÆŲ±ŁŠ'),
(153637, 119277, 'en', 'name', 'Tokushima Prefectural International Exchange Association'),
(153638, 119277, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¾³å³¶ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(153639, 119278, 'no', 'name', 'Kriminalomsorgens hĆøgskole og utdanningssenter KRUS'),
(153640, 119278, 'en', 'name', 'University College of Norwegian Correctional Service'),
(153641, 119279, 'es', 'name', 'Universidad Mesoamericana Oaxaca'),
(153642, 119280, 'en', 'name', 'Construction Industry Engineers Center'),
(153643, 119280, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ę„­ęŠ€č”“č€…ć‚»ćƒ³ć‚æćƒ¼'),
(153644, 119281, 'nl', 'name', 'De Viersprong'),
(153645, 119282, 'en', 'name', 'Institute for the Equality of Women and Men'),
(153646, 119283, 'en', 'name', 'Forestry, Environmental and Agri-Food Units Command'),
(153647, 119283, 'it', 'name', 'Organizzazione per la Tutela Forestale, Ambientale e Agroalimentare'),
(153648, 119284, 'nl', 'name', 'GGNet'),
(153649, 119285, 'en', 'name', 'The Japan Society for Aeronautical and Space Sciences'),
(153650, 119285, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čˆŖē©ŗå®‡å®™å­¦ä¼š'),
(153651, 119286, 'en', 'name', 'Commonwealth Fusion Systems (United States)'),
(153652, 119287, 'en', 'name', 'Naka Medical Association'),
(153653, 119287, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé‚£ē‚åŒ»åø«ä¼š'),
(153654, 119288, 'en', 'name', 'New Hampshire Department of Environmental Services'),
(153655, 119289, 'en', 'name', 'Ghana Wildlife Division'),
(153656, 119290, 'en', 'name', 'Polytechnic Hrvatsko Zagorje Krapina'),
(153657, 119290, 'hr', 'name', 'VeleučiliŔte Hrvatsko zagorje Krapina'),
(153658, 119291, 'en', 'name', 'National University of Study and Research in Law'),
(153659, 119292, 'en', 'name', 'Artificial Intelligence Research Promotion Foundation'),
(153660, 119292, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗŗå·„ēŸ„čƒ½ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(153661, 119293, 'en', 'name', 'Colorado Department of Education'),
(153662, 119294, 'en', 'name', 'China Anti-Doping Agency'),
(153663, 119295, 'en', 'name', 'Association of Electricity and Telecommunication Engineering for Land and Infrastructure'),
(153664, 119295, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå»ŗčØ­é›»ę°—ęŠ€č”“å”ä¼š'),
(153665, 119296, 'en', 'name', 'Japanese Research Institute on Social Welfare, Inc.'),
(153666, 119296, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē¤¾ä¼šē¦ē„‰ē ”ē©¶ę‰€'),
(153667, 119297, 'es', 'name', 'Instituto Centroamericano de Administración Pública'),
(153668, 119298, 'no_lang_code', 'name', 'Brockmann Consult (Germany)'),
(153669, 119299, 'en', 'name', 'Institute for the Fashion Industries'),
(153670, 119299, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³ē”£ę„­äŗŗęč‚²ęˆę©Ÿę§‹'),
(153671, 119300, 'en', 'name', 'National Federation of Medium Trawlers'),
(153672, 119300, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½åŗ•ę›³ē¶²ę¼ę„­é€£åˆä¼š'),
(153673, 119301, 'en', 'name', 'Nkumba University'),
(153674, 119302, 'en', 'name', 'Radiological and Medical Sciences Research Institute'),
(153675, 119303, 'en', 'name', 'The Yuumi Memorial Foundation for Home Health Care'),
(153676, 119303, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåœØå®…åŒ»ē™‚åŠ©ęˆå‹‡ē¾ŽčØ˜åæµč²”å›£'),
(153677, 119304, 'en', 'name', 'Mirwais Khan Nika Zabul University'),
(153678, 119304, 'ps', 'name', 'Ł…ŪŒŲ±ŁˆŪŒŲ³ خان Ł†ŪŒŚ©Ł‡ Ų²Ų§ŲØŁ„ Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(153679, 119305, 'en', 'name', 'Restorative Justice for All International Institute'),
(153680, 119306, 'no_lang_code', 'name', 'CanSino (China)'),
(153681, 119307, 'en', 'name', 'Plan International Japan'),
(153682, 119307, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ—ćƒ©ćƒ³ćƒ»ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(153683, 119308, 'en', 'name', 'Japan Marketing Research Association'),
(153684, 119308, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒžćƒ¼ć‚±ćƒ†ć‚£ćƒ³ć‚°ćƒ»ćƒŖć‚µćƒ¼ćƒå”ä¼š'),
(153685, 119309, 'en', 'name', 'Salem College'),
(153686, 119310, 'en', 'name', 'Corban University'),
(153687, 119311, 'es', 'name', 'Hospital Cuenca Alta NƩstor Kirchner'),
(153688, 119312, 'en', 'name', 'İzmir Tınaztepe University'),
(153689, 119312, 'tr', 'name', 'İzmir Tınaztepe Üniversitesi'),
(153690, 119313, 'de', 'name', 'Zentrum für Mechatronik und Automatisierungstechnik'),
(153691, 119314, 'en', 'name', 'Academic Newtown Community Cable Service'),
(153692, 119314, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē ”ē©¶å­¦åœ’éƒ½åø‚ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£ć‚±ćƒ¼ćƒ–ćƒ«ć‚µćƒ¼ćƒ“ć‚¹'),
(153693, 119315, 'en', 'name', 'Tokyo Association Of Real Estate Appraisers'),
(153694, 119315, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½äøå‹•ē”£é‘‘å®šå£«å”ä¼š'),
(153695, 119316, 'en', 'name', 'St John New Zealand'),
(153696, 119317, 'en', 'name', 'Japan Curling Association'),
(153697, 119317, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚«ćƒ¼ćƒŖćƒ³ć‚°å”ä¼š'),
(153698, 119318, 'en', 'name', 'New Supermarket Assosiation of Japan'),
(153699, 119318, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę–°ę—„ęœ¬ć‚¹ćƒ¼ćƒ‘ćƒ¼ćƒžćƒ¼ć‚±ćƒƒćƒˆå”ä¼š'),
(153700, 119319, 'no_lang_code', 'name', 'VisMederi (Italy)'),
(153701, 119320, 'no_lang_code', 'name', 'Alector (United States)'),
(153702, 119321, 'en', 'name', 'Gwanda State University'),
(153703, 119322, 'en', 'name', 'FA Foundation'),
(153704, 119322, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗFA貔団'),
(153705, 119323, 'en', 'name', 'Japan Building Owners and Managers Association'),
(153706, 119323, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ“ćƒ«ćƒ‚ćƒ³ć‚°å”ä¼šé€£åˆä¼š'),
(153707, 119324, 'en', 'name', 'Kuwait Specialized Eye Center'),
(153708, 119325, 'en', 'name', 'Vanier College'),
(153709, 119326, 'no_lang_code', 'name', 'Mindray (China)'),
(153710, 119326, 'zh', 'name', 'ę·±åœ³čæˆē‘žē”Ÿē‰©åŒ»ē–—ē”µå­č‚”ä»½ęœ‰é™å…¬åø ē‰ˆęƒę‰€ęœ‰'),
(153711, 119327, 'en', 'name', 'Community College of Qatar'),
(153712, 119327, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© المجتمع في قطر'),
(153713, 119328, 'en', 'name', 'Japan Tariff Association'),
(153714, 119328, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é–¢ēØŽå”ä¼š'),
(153715, 119329, 'en', 'name', 'Chiba Ymca'),
(153716, 119329, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåƒč‘‰YMCA'),
(153717, 119330, 'en', 'name', 'Japanese Society for Laboratory Animal Resources'),
(153718, 119330, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å®ŸéØ“å‹•ē‰©å”ä¼š'),
(153719, 119331, 'en', 'name', 'Crohn''s and Colitis UK'),
(153720, 119332, 'en', 'name', 'Greater Noida Institute of Technology (MBA Institute)'),
(153721, 119333, 'nl', 'name', 'Admiraal De Ruyter Ziekenhuis'),
(153722, 119334, 'en', 'name', 'Saint Augustine''s University'),
(153723, 119335, 'no_lang_code', 'name', 'Contipro (Czechia)'),
(153724, 119336, 'es', 'name', 'Administración Federal de Aviación'),
(153725, 119336, 'en', 'name', 'Federal Aviation Administration'),
(153726, 119337, 'en', 'name', 'Satellite Broadcasting Authorization and Research Center'),
(153727, 119337, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę”¾é€ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£ć‚»ćƒ³ć‚æćƒ¼'),
(153728, 119338, 'en', 'name', 'Emirates Aviation University'),
(153729, 119338, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų·ŁŠŲ±Ų§Ł† الامارات'),
(153730, 119339, 'en', 'name', 'Crandall University'),
(153731, 119340, 'de', 'name', 'VDEh-Betriebsforschungsinstitut'),
(153732, 119341, 'en', 'name', 'Boston Health Care for the Homeless Program'),
(153733, 119342, 'fr', 'name', 'Conseil International de l''Exploration de la Mer'),
(153734, 119342, 'en', 'name', 'International Council for the Exploration of the Sea'),
(153735, 119343, 'en', 'name', 'Foundation for High Energy Accelerator Science'),
(153736, 119343, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ»é«˜ć‚Øćƒćƒ«ć‚®ćƒ¼åŠ é€Ÿå™Øē§‘å­¦ē ”ē©¶å„ØåŠ±ä¼š'),
(153737, 119344, 'en', 'name', 'KOBE Student Youth Center'),
(153738, 119344, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøå­¦ē”Ÿé’å¹“ć‚»ćƒ³ć‚æćƒ¼'),
(153739, 119345, 'no_lang_code', 'name', 'Kracie (Japan)'),
(153740, 119345, 'ja', 'name', 'ć‚Æćƒ©ć‚·ć‚Øćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(153741, 119346, 'en', 'name', 'Institute of Finance Management'),
(153742, 119347, 'no', 'name', 'Biofokus'),
(153743, 119348, 'en', 'name', 'JAPAN ENVIRONMENTAL MEASUREMENT and CHEMICAL ANALYSIS ASSOCIATION'),
(153744, 119348, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒęø¬å®šåˆ†ęžå”ä¼š'),
(153745, 119349, 'es', 'name', 'Fundación Tecnológica Antonio de Arévalo'),
(153746, 119350, 'en', 'name', 'Japan Book Publishers Association'),
(153747, 119350, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę›øē±å‡ŗē‰ˆå”ä¼š'),
(153748, 119351, 'en', 'name', 'Institute of Community Association Network'),
(153749, 119351, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æå”ä¼š'),
(153750, 119352, 'no_lang_code', 'name', 'RadiaBeam Technologies (United States)'),
(153751, 119353, 'no_lang_code', 'name', 'Luossavaara-Kiirunavaara Aktiebolag (Sweden)'),
(153752, 119354, 'en', 'name', 'National-Louis University'),
(153753, 119355, 'en', 'name', 'Todor Kableshkov University of Transport'),
(153754, 119356, 'en', 'name', 'Japan Safe Driving Center'),
(153755, 119356, 'ja', 'name', 'ē‰¹åˆ„ę°‘é–“ę³•äŗŗč‡Ŗå‹•č»Šå®‰å…Øé‹č»¢ć‚»ćƒ³ć‚æćƒ¼'),
(153756, 119357, 'no_lang_code', 'name', 'Dechra Pharmaceuticals (United Kingdom)'),
(153757, 119358, 'en', 'name', 'ICFAI University, Dehradun'),
(153758, 119359, 'en', 'name', 'Association of Musical Electronics Industry'),
(153759, 119359, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗéŸ³ę„½é›»å­äŗ‹ę„­å”ä¼š'),
(153760, 119360, 'no_lang_code', 'name', 'Codexis (United States)'),
(153761, 119361, 'en', 'name', 'Tokyo Federation of Deaf'),
(153762, 119361, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½č“č¦šéšœå®³č€…é€£ē›Ÿ'),
(153763, 119362, 'en', 'name', 'Green River Community College'),
(153764, 119363, 'en', 'name', 'The Japan Association of Chinese Cuisine'),
(153765, 119363, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äø­å›½ę–™ē†å”ä¼š'),
(153766, 119364, 'en', 'name', 'Japan Research Industries and Industrial Technology Association'),
(153767, 119364, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē ”ē©¶ē”£ę„­ćƒ»ē”£ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(153768, 119365, 'en', 'name', 'National Centre for Integrative Oncology'),
(153769, 119366, 'en', 'name', 'Poznan School of Logistics'),
(153770, 119366, 'pl', 'name', 'Wyższa Szkoła Logistyki'),
(153771, 119367, 'en', 'name', 'Japan Auto-Body Industries Association, Inc.'),
(153772, 119367, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»Šč»Šä½“å·„ę„­ä¼š'),
(153773, 119368, 'no_lang_code', 'name', 'C4X Discovery (United Kingdom)'),
(153774, 119369, 'es', 'name', 'Centro Universitario de TecnologĆ­a y Arte Digital'),
(153775, 119369, 'en', 'name', 'University of Technology, Arts and Design'),
(153776, 119370, 'no_lang_code', 'name', 'Dimagi (United States)'),
(153777, 119371, 'fr', 'name', 'UniversitƩ Paris Dauphine-PSL'),
(153778, 119372, 'en', 'name', 'National Rice Wheat and Barley Improvement Association'),
(153779, 119372, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ē±³éŗ¦ę”¹č‰Æå”ä¼š'),
(153780, 119373, 'en', 'name', 'Japan Educational Exchanges and Services'),
(153781, 119373, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å›½éš›ę•™č‚²ę”Æę“å”ä¼š'),
(153782, 119374, 'es', 'name', 'Sociedad EspaƱola de Cirugƭa PlƔstica Reparadora y EstƩtica'),
(153783, 119375, 'en', 'name', 'Asahikawa Construction Association'),
(153784, 119375, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—­å·å»ŗčØ­ę„­å”ä¼š'),
(153785, 119376, 'en', 'name', 'Administrative Agency for Osaka City Museums'),
(153786, 119376, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§é˜Ŗåø‚åšē‰©é¤Øę©Ÿę§‹'),
(153787, 119377, 'en', 'name', 'San Beda College Alabang'),
(153788, 119378, 'de', 'name', 'PƤdagogische Hochschule Salzburg'),
(153789, 119378, 'en', 'name', 'University of Education Salzburg'),
(153790, 119379, 'en', 'name', 'EADA Business School'),
(153791, 119379, 'es', 'name', 'Escuela de Alta Dirección y Administración'),
(153792, 119380, 'no_lang_code', 'name', 'Guger Technologies (Austria)'),
(153793, 119381, 'fr', 'name', 'FacultƩ d''art et design du massachusetts'),
(153794, 119381, 'en', 'name', 'Massachusetts College of Art and Design'),
(153795, 119382, 'en', 'name', 'Dai Nam University'),
(153796, 119383, 'es', 'name', 'Institución Universitaria Bellas Artes y Ciencias de Bolívar'),
(153797, 119384, 'en', 'name', 'Ghana Investment Fund for Electronic Communications'),
(153798, 119385, 'en', 'name', 'LIA University'),
(153799, 119385, 'id', 'name', 'Universitas LIA'),
(153800, 119386, 'fr', 'name', 'L’Institut International de l’Eau de Stockholm'),
(153801, 119386, 'en', 'name', 'Stockholm International Water Institute'),
(153802, 119387, 'en', 'name', 'Association Of Precise SURVEY&APPLIED Technology'),
(153803, 119387, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęø¬é‡čŖæęŸ»ęŠ€č”“å”ä¼š'),
(153804, 119388, 'en', 'name', 'Karl Kumm University'),
(153805, 119389, 'no_lang_code', 'name', 'Rhodium Group (United States)'),
(153806, 119390, 'en', 'name', 'Richmond, The American International University in London'),
(153807, 119391, 'en', 'name', 'IMAGINE Studios'),
(153808, 119392, 'en', 'name', 'Japanese Association of Dialysis Physicians'),
(153809, 119392, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é€ęžåŒ»ä¼š'),
(153810, 119393, 'en', 'name', 'East African Health Research Commission'),
(153811, 119394, 'en', 'name', 'Maharashtra University of Health Sciences'),
(153812, 119395, 'en', 'name', 'The Univers Foundation'),
(153813, 119395, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ¦ćƒ‹ćƒ™ćƒ¼ćƒ«č²”å›£'),
(153814, 119396, 'en', 'name', 'ZB MED - Information Centre for Life Sciences'),
(153815, 119396, 'de', 'name', 'ZBMED - Informationszentrum Lebenswissenschaften'),
(153816, 119397, 'it', 'name', 'Consorzio per Valutazioni Biologiche e Farmacologiche'),
(153817, 119398, 'en', 'name', 'University of Nebraska Conservation and Survey Division'),
(153818, 119399, 'no_lang_code', 'name', 'Zintan University'),
(153819, 119399, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الزنتان'),
(153820, 119400, 'no_lang_code', 'name', 'Hugging Face'),
(153821, 119401, 'en', 'name', 'Jagannath Barooah University'),
(153822, 119401, 'as', 'name', 'ą¦œą¦—ą¦Øą§ą¦Øą¦¾ą¦„ বৰুৱা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą§Ÿ'),
(153823, 119402, 'en', 'name', 'State University of Economics and Technology'),
(153824, 119402, 'uk', 'name', 'Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ економіки і технологій'),
(153825, 119403, 'no_lang_code', 'name', 'iPronics Programmable Photonics (Spain)'),
(153826, 119404, 'en', 'name', 'Norwegian Labour and Welfare Administration'),
(153827, 119405, 'en', 'name', 'Battery Association of Japan'),
(153828, 119405, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę± å·„ę„­ä¼š'),
(153829, 119406, 'en', 'name', 'Japan Pork Producers Association'),
(153830, 119406, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é¤Šč±šå”ä¼š'),
(153831, 119407, 'en', 'name', 'Japan Mining Engineering & Training Cente'),
(153832, 119407, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›č³‡ęŗé–‹ē™ŗē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(153833, 119408, 'en', 'name', 'Eisermann & AvendaƱo Bird Studies Guatemala'),
(153834, 119408, 'no_lang_code', 'name', 'Eisermann & AvendaƱo Bird Studies Guatemala (Guatemala)'),
(153835, 119409, 'en', 'name', 'Swedish Center Foundation'),
(153836, 119409, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚¹ć‚¦ć‚§ćƒ¼ćƒ‡ćƒ³äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(153837, 119410, 'en', 'name', 'Aichi Construction Association'),
(153838, 119410, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę„›ēŸ„ēœŒå»ŗčØ­ę„­å”ä¼š'),
(153839, 119411, 'en', 'name', 'Trilateral Research & Consulting'),
(153840, 119412, 'en', 'name', 'Building Maintenance & Management Center'),
(153841, 119412, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰äæå…Øć‚»ćƒ³ć‚æćƒ¼'),
(153842, 119413, 'en', 'name', 'Yamaguchi Prefectural Mental Health Welfare Center'),
(153843, 119413, 'ja', 'name', 'å±±å£ēœŒē²¾ē„žäæå„ē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼'),
(153844, 119414, 'en', 'name', 'Sphinx University'),
(153845, 119415, 'en', 'name', 'Center for Studies of Holocaust and Religious Minorities'),
(153846, 119416, 'en', 'name', 'Dongwon F&B Co., Ltd.'),
(153847, 119416, 'no_lang_code', 'name', 'Dongwon F&B Co., Ltd. (South Korea)'),
(153848, 119416, 'ko', 'name', 'Dongwon ė™ģ›F&B'),
(153849, 119417, 'no_lang_code', 'name', 'PatientsLikeMe (United States)'),
(153850, 119418, 'en', 'name', 'FEU-Dr. Nicanor Reyes Medical Foundation'),
(153851, 119419, 'en', 'name', 'Joaan Bin Jassim Academy for Defence Studies'),
(153852, 119420, 'en', 'name', 'Miyake Medical Institute Group'),
(153853, 119420, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäø‰å®…åŒ»å­¦ē ”ē©¶ę‰€'),
(153854, 119421, 'en', 'name', 'Japan Society Of Aesthetic Surgery'),
(153855, 119421, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē¾Žå®¹å¤–ē§‘å­¦ä¼š'),
(153856, 119422, 'en', 'name', 'Institute of Development Studies Kolkata'),
(153857, 119423, 'pt', 'name', 'Centro UniversitƔrio Carioca'),
(153858, 119424, 'fr', 'name', 'Institut Technique de l''Arboriculture FruitiĆØre et de la Vigne'),
(153859, 119424, 'en', 'name', 'Technical Institute of Fruit Arboriculture and Vine'),
(153860, 119424, 'ar', 'name', 'المعهد Ų§Ł„ŲŖŁ‚Ł†ŁŠ لزراعة Ų£Ų“Ų¬Ų§Ų± Ų§Ł„ŁŁˆŲ§ŁƒŁ‡ و Ų§Ł„ŁƒŲ±ŁˆŁ…'),
(153861, 119425, 'nl', 'name', 'Commission communautaire franƧaise'),
(153862, 119425, 'en', 'name', 'French Community Commission'),
(153863, 119426, 'en', 'name', 'Japan Society of Photogrammetry and Remote Sensing'),
(153864, 119426, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†™ēœŸęø¬é‡å­¦ä¼š'),
(153865, 119427, 'en', 'name', 'The Ethiopian Association of Japan'),
(153866, 119427, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Øćƒć‚Ŗćƒ”ć‚¢å”ä¼š'),
(153867, 119428, 'en', 'name', 'Bishop Heber College'),
(153868, 119428, 'ta', 'name', 'ą®Ŗą®æą®·ą®ŖąÆ ą®¹ąÆ€ą®Ŗą®°ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(153869, 119429, 'en', 'name', 'Japan Society of Refrigerating and Air Conditioning Engineers'),
(153870, 119429, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡ē©ŗčŖæå­¦ä¼š'),
(153871, 119430, 'no_lang_code', 'name', 'Supernus Pharmaceuticals (United States)'),
(153872, 119431, 'en', 'name', 'Autonomous Region of Friuli Venezia Giulia'),
(153873, 119431, 'it', 'name', 'Regione Autonoma Friuli Venezia Giulia'),
(153874, 119432, 'pt', 'name', 'Instituto Nacional de Gestão do Território'),
(153875, 119432, 'en', 'name', 'National Institute of Territorial Management'),
(153876, 119433, 'en', 'name', 'Suginami Medical Association'),
(153877, 119433, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę‰äø¦åŒŗåŒ»åø«ä¼š'),
(153878, 119434, 'en', 'name', 'Japan Industrial Training Association'),
(153879, 119434, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£ę„­čØ“ē·“å”ä¼š'),
(153880, 119435, 'en', 'name', 'MVN University'),
(153881, 119436, 'en', 'name', 'Japan Contractors Association of Traffic Signs and Lane Markings'),
(153882, 119436, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½é“č·ÆęØ™č­˜ćƒ»ęØ™ē¤ŗę„­å”ä¼š'),
(153883, 119437, 'en', 'name', 'The Japan Association of Certified Care Workers'),
(153884, 119437, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ä»‹č­·ē¦ē„‰å£«ä¼š'),
(153885, 119438, 'en', 'name', 'Japan Johkasou System Association'),
(153886, 119438, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ„åŒ–ę§½ć‚·ć‚¹ćƒ†ćƒ å”ä¼š'),
(153887, 119439, 'en', 'name', 'Shimane Prefectural Nuclear Power Environmental Center'),
(153888, 119439, 'ja', 'name', 'å³¶ę ¹ēœŒåŽŸå­åŠ›ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(153889, 119440, 'en', 'name', 'Cottey College'),
(153890, 119441, 'en', 'name', 'Geographic Institute AgustĆ­n Codazzi'),
(153891, 119441, 'es', 'name', 'Instituto GeogrƔfico Agustƭn Codazzi'),
(153892, 119442, 'en', 'name', 'Agronomic Research Institute'),
(153893, 119442, 'pt', 'name', 'Instituto de Investigação Agronómica'),
(153894, 119443, 'no_lang_code', 'name', 'Natural Remedies (India)'),
(153895, 119444, 'en', 'name', 'The People''s Hospital Medical Group of Xiangzhou Zhuhai'),
(153896, 119444, 'zh', 'name', 'ē ęµ·åø‚é¦™ę“²åŒŗäŗŗę°‘åŒ»é™¢åŒ»ē–—é›†å›¢'),
(153897, 119445, 'en', 'name', 'Herzing University'),
(153898, 119446, 'ro', 'name', 'Asociația Profesională a Kinetoterapeuților și Terapeuților Manuali ā€Medkineticaā€ din Republica Moldova'),
(153899, 119446, 'en', 'name', 'Professional Association of Kinetotherapists and Manual Therapists "MEDKINETICA" from the Republic of Moldova'),
(153900, 119447, 'fr', 'name', 'Institut National des Sciences AppliquƩes Centre Val de Loire'),
(153901, 119448, 'en', 'name', 'Proessional University of Beauty & Wellness'),
(153902, 119448, 'ja', 'name', 'ćƒ“ćƒ„ćƒ¼ćƒ†ć‚£&ć‚¦ć‚§ćƒ«ćƒć‚¹å°‚é–€č·å¤§å­¦'),
(153903, 119449, 'en', 'name', 'Lower Saxony Institute for Historical Coastal Research'),
(153904, 119449, 'de', 'name', 'Niedersächsisches Institut für historische Küstenforschung'),
(153905, 119450, 'is', 'name', 'HÔskóli Vestfjarða'),
(153906, 119450, 'en', 'name', 'University Centre of the Westfjords'),
(153907, 119451, 'en', 'name', 'Ateneo de Zamboanga University'),
(153908, 119451, 'tl', 'name', 'Pamantasang Ateneo de Zamboanga'),
(153909, 119452, 'en', 'name', 'Welfare And Medical Service Agency'),
(153910, 119452, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗē¦ē„‰åŒ»ē™‚ę©Ÿę§‹'),
(153911, 119453, 'no_lang_code', 'name', 'Vividion Therapeutics (United States)'),
(153912, 119454, 'no_lang_code', 'name', 'Suven Life Sciences (India)'),
(153913, 119455, 'no_lang_code', 'name', 'RISC Software (Austria)'),
(153914, 119456, 'en', 'name', 'Japan Overseas Cooperative Association'),
(153915, 119456, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé’å¹“ęµ·å¤–å”åŠ›å”ä¼š'),
(153916, 119457, 'no_lang_code', 'name', 'Randox (United Kingdom)'),
(153917, 119458, 'en', 'name', 'South Plains College'),
(153918, 119459, 'en', 'name', 'Kazakhstan Institute of Standardization and Metrology'),
(153919, 119459, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ станГартизации Šø метрологии'),
(153920, 119459, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ ŃŃ‚Š°Š½Š“Š°Ń€Ń‚Ń‚Š°Ńƒ және Š¼ŠµŃ‚Ń€Š¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(153921, 119460, 'en', 'name', 'Research Foundation for the State University of New York'),
(153922, 119461, 'en', 'name', 'Vaccine Safety Initiative'),
(153923, 119462, 'en', 'name', 'German Cement Works Association'),
(153924, 119462, 'de', 'name', 'Verein Deutscher Zementwerke'),
(153925, 119463, 'no_lang_code', 'name', 'Seeqc (United States)'),
(153926, 119464, 'en', 'name', 'Stamford International University'),
(153927, 119464, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ą¹ąøŖąø•ąø”ąøŸąø­ąø£ą¹Œąø”'),
(153928, 119465, 'en', 'name', 'Lviv National Musical Academy named after Mykola Lysenko'),
(153929, 119465, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŃƒŠ·ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń імені М. Š’. Лисенка'),
(153930, 119466, 'es', 'name', 'Instituto Dominicano de Evaluación e Investigación de la Calidad Educativa'),
(153931, 119467, 'en', 'name', 'Kyiv Scientific Research Institute of Forensic Expertise of the Ministry of Justice of Ukraine'),
(153932, 119467, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃƒŠ“Š¾Š²ŠøŃ… експертиз ŠœŃ–ністерства ŃŽŃŃ‚ŠøŃ†Ń–Ń— України'),
(153933, 119468, 'en', 'name', 'Japan Electric Cable Technology Centre'),
(153934, 119468, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ē·šē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(153935, 119469, 'en', 'name', 'Medium and Small Business Research Institute'),
(153936, 119469, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäø­å°ä¼ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(153937, 119470, 'en', 'name', 'Japan Association For Metrology Promotion'),
(153938, 119470, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čØˆé‡ęŒÆčˆˆå”ä¼š'),
(153939, 119471, 'en', 'name', 'Vaagdevi College of Engineering'),
(153940, 119472, 'en', 'name', 'Mwanza Intervention Trials Unit'),
(153941, 119473, 'en', 'name', 'Boston Architectural College'),
(153942, 119474, 'en', 'name', 'Kumamoto Gakuen University'),
(153943, 119474, 'ja', 'name', 'ē†Šęœ¬å­¦åœ’å¤§å­¦');
INSERT INTO `ror_settings` VALUES
(153944, 119475, 'en', 'name', 'Lyrasis'),
(153945, 119476, 'en', 'name', 'Advanced Cogeneration and Energy Utilization Center JAPAN'),
(153946, 119476, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚³ćƒ¼ć‚øć‚§ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ćƒ»ć‚Øćƒćƒ«ć‚®ćƒ¼é«˜åŗ¦åˆ©ē”Øć‚»ćƒ³ć‚æćƒ¼'),
(153947, 119477, 'en', 'name', 'Nomura Foundation'),
(153948, 119477, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé‡Žę‘č²”å›£'),
(153949, 119478, 'en', 'name', 'Research Association of Refinery Integration for Group-Operation'),
(153950, 119478, 'ja', 'name', 'ēŸ³ę²¹ć‚³ćƒ³ćƒ“ćƒŠćƒ¼ćƒˆé«˜åŗ¦ēµ±åˆé‹å–¶ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(153951, 119479, 'en', 'name', 'The Institute for Public Policy in KANAGAWA Prefecture'),
(153952, 119479, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē„žå„ˆå·ēœŒåœ°ę–¹č‡Ŗę²»ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(153953, 119480, 'en', 'name', 'Guangxi Hospital Division of The First Affiliated Hospital, Sun Yat-sen University'),
(153954, 119480, 'zh', 'name', 'äø­å±±å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢å¹æč„æåŒ»é™¢'),
(153955, 119481, 'en', 'name', 'Shafagh Institute of Higher Education'),
(153956, 119482, 'en', 'name', 'Global Water Recycling and Reuse Solution Technology Research & Association'),
(153957, 119482, 'ja', 'name', 'ęµ·å¤–ę°“å¾Ŗē’°ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(153958, 119483, 'en', 'name', 'Autism Society Japan'),
(153959, 119483, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗé–‰ē—‡å”ä¼š'),
(153960, 119484, 'en', 'name', 'Oakton Community College'),
(153961, 119485, 'en', 'name', 'Professional University of Electric Mobility Systems'),
(153962, 119485, 'ja', 'name', 'é›»å‹•ćƒ¢ćƒ“ćƒŖćƒ†ć‚£ć‚·ć‚¹ćƒ†ćƒ å°‚é–€č·å¤§å­¦'),
(153963, 119486, 'pt', 'name', 'Instituto Estadual do CƩrebro Paulo Niemeyer'),
(153964, 119487, 'en', 'name', 'Society for Basic Urologic Research, Inc.'),
(153965, 119488, 'en', 'name', 'Kyushu Island Alliance of ICT'),
(153966, 119488, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗä¹å·žćƒ†ćƒ¬ć‚³ćƒ ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(153967, 119489, 'es', 'name', 'Universidad Madero'),
(153968, 119490, 'es', 'name', 'Escuela Superior Tecnológica de Artes Débora Arango'),
(153969, 119491, 'en', 'name', 'Japan Chemical Industry Ecology-Toxicology & Information Center'),
(153970, 119491, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ–å­¦ē‰©č³Ŗå®‰å…Øćƒ»ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(153971, 119492, 'de', 'name', 'Kurt-Schwabe-Institut für Mess- und Sensortechnik Meinsberg'),
(153972, 119493, 'no_lang_code', 'name', 'Corbion (Netherlands)'),
(153973, 119494, 'cs', 'name', 'Muzeum uměnƭ'),
(153974, 119494, 'en', 'name', 'Olomouc Museum of Art'),
(153975, 119495, 'en', 'name', 'Society for Applied Studies'),
(153976, 119496, 'en', 'name', 'Sunkokai Medical Corp.Koga Community Hospital'),
(153977, 119496, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé§æē”²ä¼šć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£ćƒ¼ćƒ›ć‚¹ćƒ”ć‚æćƒ«ē”²č³€ē—…é™¢'),
(153978, 119497, 'en', 'name', 'Shikoku Industry & Technology Promotion Center'),
(153979, 119497, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå››å›½ē”£ę„­ćƒ»ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(153980, 119498, 'no_lang_code', 'name', 'Adeka (Japan)'),
(153981, 119498, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ADEKA'),
(153982, 119499, 'en', 'name', 'Care Work Foundation'),
(153983, 119499, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä»‹č­·åŠ“åƒå®‰å®šć‚»ćƒ³ć‚æćƒ¼'),
(153984, 119500, 'en', 'name', 'Orpheus Institute'),
(153985, 119500, 'nl', 'name', 'Orpheus Instituut'),
(153986, 119501, 'pt', 'name', 'Instituto Nacional de Investigação Pesqueira'),
(153987, 119501, 'en', 'name', 'National Institute for Fisheries and Marine Research'),
(153988, 119502, 'en', 'name', 'Wonderful Aging Club'),
(153989, 119502, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé•·åÆæē¤¾ä¼šę–‡åŒ–å”ä¼š'),
(153990, 119503, 'en', 'name', 'Paul Smith''s College'),
(153991, 119504, 'en', 'name', 'ECAM School of Engineering'),
(153992, 119505, 'en', 'name', 'Mildmay Uganda'),
(153993, 119506, 'en', 'name', 'Medicine Hat College'),
(153994, 119507, 'pt', 'name', 'Centro UniversitÔrio Fundação Santo André'),
(153995, 119508, 'no_lang_code', 'name', 'DNEG (United Kingdom)'),
(153996, 119509, 'en', 'name', 'Japanese Society for Food Hygiene and Safety'),
(153997, 119509, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“č”›ē”Ÿå­¦ä¼š'),
(153998, 119510, 'en', 'name', 'Greater-Kanto Industrial Advancement Center'),
(153999, 119510, 'ja', 'name', 'č²”å›£ę³•äŗŗåŗƒåŸŸé–¢ę±åœē”£ę„­ę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(154000, 119511, 'en', 'name', 'Japan Plasterers'' Association'),
(154001, 119511, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·¦å®˜ę„­ēµ„åˆé€£åˆä¼š'),
(154002, 119512, 'de', 'name', 'Christliche UniversitƤt Partium'),
(154003, 119512, 'en', 'name', 'Partium Christian University'),
(154004, 119512, 'hu', 'name', 'Partiumi KeresztƩny Egyetem'),
(154005, 119512, 'ro', 'name', 'Universitatea Creștină Partium'),
(154006, 119513, 'en', 'name', 'Society for Family Health Nigeria'),
(154007, 119514, 'en', 'name', 'Dallas County'),
(154008, 119515, 'no_lang_code', 'name', 'Sheikh Bahaei University'),
(154009, 119515, 'fa', 'name', 'دانؓگاه ؓیخ ŲØŁ‡Ų§ŪŒŪŒ'),
(154010, 119516, 'pt', 'name', 'Instituto Nacional de Meteorologia e GeofĆ­sica'),
(154011, 119516, 'en', 'name', 'National Institute of Meteorology and Geophysics'),
(154012, 119517, 'no_lang_code', 'name', 'OSE Immunotherapeutics (France)'),
(154013, 119518, 'no_lang_code', 'name', 'Bharat Biotech (India)'),
(154014, 119519, 'no_lang_code', 'name', 'Kingfa (China)'),
(154015, 119520, 'en', 'name', 'Advanced Visual Communication Center'),
(154016, 119520, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé«˜åŗ¦ę˜ åƒęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(154017, 119521, 'en', 'name', 'Japan Society of Electrical Machining Engineers'),
(154018, 119521, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—åŠ å·„å­¦ä¼š'),
(154019, 119522, 'es', 'name', 'Fundación Docente SECPRE'),
(154020, 119523, 'es', 'name', 'Universidad Yale'),
(154021, 119523, 'en', 'name', 'Yale University'),
(154022, 119524, 'en', 'name', 'Kanto Electrical Safety Inspection Association'),
(154023, 119524, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé–¢ę±é›»ę°—äæå®‰å”ä¼š'),
(154024, 119525, 'en', 'name', 'THE Japan Thailand Association'),
(154025, 119525, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚æć‚¤å”ä¼š'),
(154026, 119526, 'no_lang_code', 'name', 'Nextworks (Italy)'),
(154027, 119527, 'en', 'name', 'Abdul Ahad Azad Memorial Degree College'),
(154028, 119528, 'en', 'name', 'Chugoku Industrial Innovation Center'),
(154029, 119528, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć”ć‚…ć†ć”ćē”£ę„­å‰µé€ ć‚»ćƒ³ć‚æćƒ¼'),
(154030, 119529, 'no_lang_code', 'name', 'Church & Dwight (United States)'),
(154031, 119530, 'no_lang_code', 'name', 'Eramet (France)'),
(154032, 119531, 'en', 'name', 'Illinois State Geological Survey'),
(154033, 119532, 'en', 'name', 'Ghana Atomic Energy Commission'),
(154034, 119533, 'en', 'name', 'Laguna College of Business and Arts'),
(154035, 119534, 'en', 'name', 'Waynesburg University'),
(154036, 119535, 'en', 'name', 'Okinawa Shimatate Association'),
(154037, 119535, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę²–ēø„ć—ć¾ćŸć¦å”ä¼š'),
(154038, 119536, 'en', 'name', 'Magdi Yacoub Heart Foundation'),
(154039, 119536, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© مجدى ŁŠŲ¹Ł‚ŁˆŲØ للقلب'),
(154040, 119537, 'en', 'name', 'Japan Structural Consultants Association'),
(154041, 119537, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ę§‹é€ ęŠ€č”“č€…å”ä¼š'),
(154042, 119538, 'en', 'name', 'Save the Elephants'),
(154043, 119539, 'en', 'name', 'Information and Library Network'),
(154044, 119540, 'en', 'name', 'North Carolina Department of Transportation'),
(154045, 119541, 'en', 'name', 'Florida State College at Jacksonville'),
(154046, 119542, 'en', 'name', 'Oklahoma Geological Survey'),
(154047, 119543, 'en', 'name', 'Foundation for Orthopaedic Research and Education'),
(154048, 119544, 'es', 'name', 'Universidad Pedagógica de El Salvador'),
(154049, 119545, 'en', 'name', 'Research and Development Partnership for Next Generation Technology of Marine Resources Survey'),
(154050, 119545, 'ja', 'name', 'ę¬”äø–ä»£ęµ·ę“‹č³‡ęŗčŖæęŸ»ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(154051, 119546, 'no_lang_code', 'name', 'Apellis Pharmaceuticals (United States)'),
(154052, 119547, 'it', 'name', 'Istituto di Montecatone, Ospedale di Riabilitazione'),
(154053, 119548, 'no_lang_code', 'name', 'Animalia (Norway)'),
(154054, 119549, 'en', 'name', 'Kitakyushu International Association'),
(154055, 119549, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ä¹å·žå›½éš›äŗ¤ęµå”ä¼š'),
(154056, 119550, 'en', 'name', 'Japan Technology Research Association of Artifical Photosynthetic Chemical Process'),
(154057, 119550, 'ja', 'name', 'äŗŗå·„å…‰åˆęˆåŒ–å­¦ćƒ—ćƒ­ć‚»ć‚¹ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(154058, 119551, 'no_lang_code', 'name', 'Halla Visteon Climate Control (Czechia)'),
(154059, 119552, 'en', 'name', 'Japan Transport Cooperation Association'),
(154060, 119552, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–é‹č¼øå”åŠ›å”ä¼š'),
(154061, 119553, 'en', 'name', 'Keystone College'),
(154062, 119554, 'en', 'name', 'Tallinn Health Care College'),
(154063, 119554, 'et', 'name', 'Tallinna Tervishoiu Korgkool'),
(154064, 119555, 'en', 'name', 'Japan Cotton Promotion Institute'),
(154065, 119555, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē¶æę„­ęŒÆčˆˆä¼š'),
(154066, 119556, 'it', 'name', 'Cefriel'),
(154067, 119557, 'en', 'name', 'Niagara Health System'),
(154068, 119558, 'en', 'name', 'University of Applied Sciences RRiF'),
(154069, 119558, 'hr', 'name', 'VeleučiliŔte RRiF'),
(154070, 119559, 'en', 'name', 'Company of Biologists'),
(154071, 119560, 'en', 'name', 'Unity College'),
(154072, 119561, 'en', 'name', 'Imperial College London Diabetes Centre'),
(154073, 119562, 'en', 'name', 'Francisco Gavidia University'),
(154074, 119562, 'es', 'name', 'Universidad Francisco Gavidia'),
(154075, 119563, 'no_lang_code', 'name', 'MeMed (Israel)'),
(154076, 119564, 'no_lang_code', 'name', 'Giner (United States)'),
(154077, 119565, 'en', 'name', 'Dr Emilio B Espinosa Sr Memorial State College of Agriculture and Technology'),
(154078, 119566, 'de', 'name', 'Hochschule für Künste Bremen'),
(154079, 119566, 'en', 'name', 'University of the Arts Bremen'),
(154080, 119567, 'fr', 'name', 'BruyĆØre'),
(154081, 119568, 'en', 'name', 'Japan Institute for Promoting Invention and Innovation'),
(154082, 119568, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē™ŗę˜ŽęŽØé€²å”ä¼š'),
(154083, 119569, 'en', 'name', 'Forest Management Association of Japan'),
(154084, 119569, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęž—ę„­ēµŒå–¶č€…å”ä¼š'),
(154085, 119570, 'id', 'name', 'Universitas Prof Dr Hafiz MPH'),
(154086, 119571, 'sv', 'name', 'RiksantikvarieƤmbetet'),
(154087, 119571, 'en', 'name', 'Swedish National Heritage Board'),
(154088, 119571, 'fi', 'name', 'Valtion antikviteettivirasto'),
(154089, 119572, 'en', 'name', 'Royal Society for the Prevention of Cruelty to Animals'),
(154090, 119573, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c KhĆ”nh Hòa'),
(154091, 119573, 'en', 'name', 'University of Khanh Hoa'),
(154092, 119574, 'en', 'name', 'ITO Foundation for International Education Exchange'),
(154093, 119574, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä¼Šč—¤å›½éš›ę•™č‚²äŗ¤ęµč²”å›£'),
(154094, 119575, 'en', 'name', 'Egyptian Space Agency'),
(154095, 119575, 'ar', 'name', 'ŁˆŁƒŲ§Ł„Ų© الفضاؔ Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(154096, 119576, 'en', 'name', 'Botswana Institute for Development Policy Analysis'),
(154097, 119577, 'en', 'name', 'National Library of Russia'),
(154098, 119577, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń библиотека'),
(154099, 119578, 'en', 'name', 'The Visualization Society of Japan'),
(154100, 119578, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåÆč¦–åŒ–ęƒ…å ±å­¦ä¼š'),
(154101, 119579, 'no_lang_code', 'name', 'Companhia SiderĆŗrgica Nacional (Brazil)'),
(154102, 119580, 'id', 'name', 'Universitas Muslim Buton'),
(154103, 119581, 'en', 'name', 'Japan Flying Association'),
(154104, 119581, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é£›č”Œé€£ē›Ÿ'),
(154105, 119582, 'en', 'name', 'Mutare Polytechnic'),
(154106, 119583, 'en', 'name', 'Institute for Educational Planning and Administration'),
(154107, 119584, 'ca', 'name', 'Centre d''Esclerosi MĆŗltiple de Catalunya'),
(154108, 119585, 'en', 'name', 'Austrian National Library'),
(154109, 119585, 'de', 'name', 'Ɩsterreichische Nationalbibliothek'),
(154110, 119586, 'en', 'name', 'Heritage University'),
(154111, 119587, 'en', 'name', 'Chuncheon National University of Education'),
(154112, 119587, 'ko', 'name', 'ģ¶˜ģ²œźµģœ”ėŒ€ķ•™źµ'),
(154113, 119588, 'pt', 'name', 'Centro UniversitÔrio da Fundação de Ensino OctÔvio Bastos'),
(154114, 119589, 'en', 'name', 'Japan Gas Appliances Inspection Association'),
(154115, 119589, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¬ć‚¹ę©Ÿå™Øę¤œęŸ»å”ä¼š'),
(154116, 119590, 'no_lang_code', 'name', 'PersonGen (China)'),
(154117, 119591, 'en', 'name', 'Water Research Commission'),
(154118, 119592, 'en', 'name', 'Defiance College'),
(154119, 119593, 'en', 'name', 'Indian Institute of Information Technology Senapati, Manipur'),
(154120, 119594, 'en', 'name', 'Sea Turtle Asociation of Japan'),
(154121, 119594, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ć‚¦ćƒŸć‚¬ćƒ”å”č­°ä¼š'),
(154122, 119595, 'en', 'name', 'Polytechnic University Taiwan - Paraguay'),
(154123, 119595, 'es', 'name', 'Universidad PolitƩcnica TaiwƔn Paraguay'),
(154124, 119596, 'en', 'name', 'Japan Blood Products Association'),
(154125, 119596, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č”€ę¶²č£½å‰¤å”ä¼š'),
(154126, 119597, 'en', 'name', 'Mills Memorial Hospital'),
(154127, 119598, 'en', 'name', 'The Japan Society of Fluid Mechanics'),
(154128, 119598, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęµä½“åŠ›å­¦ä¼š'),
(154129, 119599, 'en', 'name', 'Japan Crushed Stone Association'),
(154130, 119599, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē •ēŸ³å”ä¼š'),
(154131, 119600, 'no_lang_code', 'name', 'Icometrix (Belgium)'),
(154132, 119601, 'en', 'name', 'Japan Pharmaceutical Traders'' Association'),
(154133, 119601, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬ę„­č²æę˜“å”ä¼š'),
(154134, 119602, 'en', 'name', 'Shri Dharmasthala Manjunatheshwara University'),
(154135, 119603, 'en', 'name', 'The Historical Society of Japan'),
(154136, 119603, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå²å­¦ä¼š'),
(154137, 119604, 'en', 'name', 'University of Abomey-Calavi'),
(154138, 119604, 'fr', 'name', 'UniversitƩ d''Abomey-Calavi'),
(154139, 119605, 'en', 'name', 'University of Kisubi'),
(154140, 119606, 'en', 'name', 'Japan Association For Mathematical Sciences'),
(154141, 119606, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę•°ē†ē§‘å­¦ęŒÆčˆˆä¼š'),
(154142, 119607, 'en', 'name', 'WIP - Renewable Energies'),
(154143, 119608, 'en', 'name', 'Indiana University Indianapolis'),
(154144, 119609, 'pt', 'name', 'Instituto Vita'),
(154145, 119610, 'no_lang_code', 'name', 'Intercept Pharmaceuticals (United States)'),
(154146, 119611, 'en', 'name', 'International Engineering and Technological University'),
(154147, 119611, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ инженерно-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(154148, 119611, 'kk', 'name', 'Єалықаралық инженерлік-Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃŠ»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(154149, 119612, 'de', 'name', 'PrivatuniversitƤt Schloss Seeburg'),
(154150, 119612, 'en', 'name', 'Seeburg Castle University'),
(154151, 119613, 'id', 'name', 'Universitas Nurul Jadid'),
(154152, 119613, 'en', 'name', 'University of Nurul Jadid'),
(154153, 119614, 'de', 'name', 'VDI/VDE Innovation + Technik'),
(154154, 119615, 'es', 'name', 'Universidad Nacional del Sur'),
(154155, 119616, 'en', 'name', 'University Medical Center of Southern Nevada'),
(154156, 119617, 'no_lang_code', 'name', 'Nurix (United States)'),
(154157, 119618, 'en', 'name', 'Otgontenger University'),
(154158, 119618, 'ru', 'name', 'ŠžŃ‚Š³Š¾Š½Ń‚ŃŠ½Š³ŃŃ€ ŠøŃ… ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(154159, 119619, 'en', 'name', 'Siddhartha Academy of Higher Education'),
(154160, 119620, 'en', 'name', 'The Ocean Foundation'),
(154161, 119621, 'nl', 'name', 'Koninklijke Musea voor Kunst en Geschiedenis'),
(154162, 119621, 'fr', 'name', 'MusƩes royaux d''Art et d''Histoire'),
(154163, 119621, 'en', 'name', 'Royal Museums of Art and History'),
(154164, 119622, 'en', 'name', 'All Japan Coffee Association'),
(154165, 119622, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬ć‚³ćƒ¼ćƒ’ćƒ¼å”ä¼š'),
(154166, 119623, 'en', 'name', 'Chad National Museum'),
(154167, 119623, 'fr', 'name', 'MusƩe National du Tchad'),
(154168, 119624, 'en', 'name', 'Okinawa Nanbu Medical Association'),
(154169, 119624, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå—éƒØåœ°åŒŗåŒ»åø«ä¼š'),
(154170, 119625, 'no_lang_code', 'name', 'Xenon Pharmaceuticals (Canada)'),
(154171, 119626, 'en', 'name', 'Campbellsville University'),
(154172, 119626, 'fr', 'name', 'UniversitƩ de campbellsville'),
(154173, 119627, 'de', 'name', 'Klassik Stiftung Weimar'),
(154174, 119628, 'en', 'name', 'Nippon Turtle Association'),
(154175, 119628, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚æćƒ¼ćƒˆćƒ«å”ä¼š'),
(154176, 119629, 'en', 'name', 'Tokyo Building Maintenance Association'),
(154177, 119629, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬ćƒ“ćƒ«ćƒ”ćƒ³ćƒ†ćƒŠćƒ³ć‚¹å”ä¼š'),
(154178, 119630, 'pt', 'name', 'Núcleo Operacional da Sociedade de Informação'),
(154179, 119630, 'en', 'name', 'Operational Center of the Information Society'),
(154180, 119631, 'en', 'name', 'Roberts Wesleyan College'),
(154181, 119632, 'en', 'name', 'Old Church Slavonic Institute'),
(154182, 119633, 'en', 'name', 'Japan Association of Consumer Affairs Specialists'),
(154183, 119633, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½ę¶ˆč²»ē”Ÿę“»ē›øč«‡å“”å”ä¼š'),
(154184, 119634, 'en', 'name', 'Maternal Infant Child and Youth Research Network'),
(154185, 119635, 'no_lang_code', 'name', 'Molecular Partners (Switzerland)'),
(154186, 119636, 'en', 'name', 'International House of Japan, Inc.'),
(154187, 119636, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ę–‡åŒ–ä¼šé¤Ø'),
(154188, 119637, 'pt', 'name', 'Biocant'),
(154189, 119638, 'en', 'name', 'HCA Florida Orange Park Hospital'),
(154190, 119639, 'en', 'name', 'The Japan Toy Association'),
(154191, 119639, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēŽ©å…·å”ä¼š'),
(154192, 119640, 'es', 'name', 'Instituto Experimental de BiologĆ­a'),
(154193, 119641, 'no_lang_code', 'name', 'William Demant Holding (Denmark)'),
(154194, 119642, 'en', 'name', 'Faculty of Applied Social Studies in Nova Gorica'),
(154195, 119642, 'sl', 'name', 'Fakulteta za uporabne družbene Ŕtudije v Novi Gorici'),
(154196, 119643, 'en', 'name', 'Colorado Mountain College'),
(154197, 119644, 'ro', 'name', 'Institutul Naţional de Cercetare-Dezvoltare pentru Mecatronică si Tehnica Masurării'),
(154198, 119645, 'en', 'name', 'Japan Sign Association'),
(154199, 119645, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚µć‚¤ćƒ³å”ä¼š'),
(154200, 119646, 'en', 'name', 'The Overseas Construction Association of Japan, Inc.'),
(154201, 119646, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–å»ŗčØ­å”ä¼š'),
(154202, 119647, 'de', 'name', 'IST-Hochschule für Management'),
(154203, 119648, 'no_lang_code', 'name', 'BioTalentum (Hungary)'),
(154204, 119649, 'en', 'name', 'Hillside Teachers'' College'),
(154205, 119650, 'en', 'name', 'Bomet University College'),
(154206, 119651, 'en', 'name', 'Sugar Industry Association'),
(154207, 119651, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē³–ę„­å”ä¼š'),
(154208, 119652, 'en', 'name', 'Japan Livestock By-product Association'),
(154209, 119652, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē•œē”£å‰Æē”£ē‰©å”ä¼š'),
(154210, 119653, 'en', 'name', 'Driestar Christian University'),
(154211, 119654, 'en', 'name', 'Tamil Nadu Open University'),
(154212, 119654, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®¤ą®æą®±ą®ØąÆą®¤ą®Øą®æą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(154213, 119655, 'en', 'name', 'Orthopaedic Hospital Valdoltra'),
(154214, 119656, 'en', 'name', 'Global Biodiversity Information Facility'),
(154215, 119657, 'en', 'name', 'The Society of Exploration Geophysicists of Japan'),
(154216, 119657, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē‰©ē†ęŽ¢ęŸ»å­¦ä¼š'),
(154217, 119658, 'en', 'name', 'Institute for the Protection of Cultural Heritage of Slovenia'),
(154218, 119659, 'en', 'name', 'Japan Galvanizers Association, Inc.'),
(154219, 119659, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęŗ¶čžäŗœé‰›éé‡‘å”ä¼š'),
(154220, 119660, 'en', 'name', 'Akita Prefectural Organization for Rehabilitation and Development'),
(154221, 119660, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē§‹ē”°ēœŒē«‹ē™‚č‚²ę©Ÿę§‹'),
(154222, 119661, 'nl', 'name', 'OCON Orthopedische kliniek'),
(154223, 119662, 'en', 'name', 'ActionAid The Gambia'),
(154224, 119663, 'en', 'name', 'Laikipia University'),
(154225, 119664, 'en', 'name', 'Asia Pacific College'),
(154226, 119665, 'en', 'name', 'Kawakita Memorial Film Institute'),
(154227, 119665, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå·å–œå¤ščØ˜åæµę˜ ē”»ę–‡åŒ–č²”å›£'),
(154228, 119666, 'en', 'name', 'Osaka Institute of Local Governments'),
(154229, 119666, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗč‡Ŗę²»ä½“å•é”Œē ”ē©¶ę‰€'),
(154230, 119667, 'en', 'name', 'Japan Heating Appliances Inspection Association'),
(154231, 119667, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē‡ƒē„¼ę©Ÿå™Øę¤œęŸ»å”ä¼š'),
(154232, 119668, 'en', 'name', 'Itochu Foundation'),
(154233, 119668, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä¼Šč—¤åæ čØ˜åæµč²”å›£'),
(154234, 119669, 'en', 'name', 'CITY Planning Association Of JAPAN.'),
(154235, 119669, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚čØˆē”»å”ä¼š'),
(154236, 119670, 'en', 'name', 'Computer Software Association of Japan'),
(154237, 119670, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢å”ä¼š'),
(154238, 119671, 'en', 'name', 'Green Ferrite Technology Research Association'),
(154239, 119671, 'ja', 'name', 'é…øåŒ–é‰„å¤Ŗé™½é›»ę± ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(154240, 119672, 'en', 'name', 'European Biomedical Research Institute of Salerno'),
(154241, 119673, 'no_lang_code', 'name', 'TVS Motor Company (India)'),
(154242, 119674, 'en', 'name', 'Japan Federation of Construction Contractors'),
(154243, 119674, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗčØ­ę„­é€£åˆä¼š'),
(154244, 119675, 'en', 'name', 'The Botswana Society'),
(154245, 119676, 'en', 'name', 'Tamiya Hospital'),
(154246, 119676, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå“‡å¾³ä¼šē”°å®®ē—…é™¢'),
(154247, 119677, 'no_lang_code', 'name', 'OneSource (Portugal)'),
(154248, 119678, 'en', 'name', 'Academy of Music in Zagreb'),
(154249, 119678, 'hr', 'name', 'Muzička akademija'),
(154250, 119679, 'en', 'name', 'Canadian Centre on Substance Use and Addiction'),
(154251, 119679, 'fr', 'name', 'Centre canadien sur les dĆ©pendances et l’usage de substances'),
(154252, 119680, 'pt', 'name', 'Fundo de Defesa da Citricultura'),
(154253, 119681, 'en', 'name', 'Fukuoka City International Foundation'),
(154254, 119681, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē¦å²”ć‚ˆć‹ćƒˆćƒ”ć‚¢å›½éš›äŗ¤ęµč²”å›£'),
(154255, 119682, 'hr', 'name', 'Specijalna bolnica za oftalmologiju Svjetlost'),
(154256, 119682, 'en', 'name', 'University Eye Hospital Svjetlost'),
(154257, 119683, 'en', 'name', 'National Banking College'),
(154258, 119684, 'en', 'name', 'National Center of Public Health and Analyses'),
(154259, 119684, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ Ń†ŠµŠ½Ń‚ŃŠŃ€ по обществено зГраве Šø анализи'),
(154260, 119685, 'en', 'name', 'The Japan Research and development Center for Metals'),
(154261, 119685, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé‡‘å±žē³»ęę–™ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(154262, 119686, 'lt', 'name', 'Vilniaus dailės akademija'),
(154263, 119686, 'en', 'name', 'Vilnius Academy of Arts'),
(154264, 119686, 'ru', 'name', 'Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠ°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(154265, 119687, 'en', 'name', 'Japan Cable Television Engineering Association'),
(154266, 119687, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬CATVęŠ€č”“å”ä¼š'),
(154267, 119688, 'en', 'name', 'Geological Society of London'),
(154268, 119689, 'de', 'name', 'PƤdagogische Hochschule Schwyz'),
(154269, 119689, 'en', 'name', 'Schwyz University of Teacher Education'),
(154270, 119690, 'en', 'name', 'Karlshochschule International University'),
(154271, 119691, 'en', 'name', 'Indiana University – Purdue University Indianapolis'),
(154272, 119692, 'en', 'name', 'The National Gardens Association'),
(154273, 119692, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½ę°‘å…¬åœ’å”ä¼š'),
(154274, 119693, 'en', 'name', 'Japan Registered Clinical Laboratories Association'),
(154275, 119693, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č”›ē”Ÿę¤œęŸ»ę‰€å”ä¼š'),
(154276, 119694, 'en', 'name', 'Barton College'),
(154277, 119695, 'en', 'name', 'Institute of Ocular Microsurgery'),
(154278, 119695, 'es', 'name', 'Instituto de MicrocirugĆ­a Ocular'),
(154279, 119696, 'es', 'name', 'Corporación Universitaria Cenda'),
(154280, 119697, 'en', 'name', 'Arnot Ogden Medical Center'),
(154281, 119698, 'en', 'name', 'Central Scientific Research Automobile and Engine Institute'),
(154282, 119698, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°ĢŠ»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒĢŃ‡Š½Š¾-ŠøŃŃŠ»ŠµĢŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøĢŠ»ŃŒŠ½Ń‹Š¹ Šø автомото́рный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒĢŃ‚'),
(154283, 119699, 'en', 'name', 'Supreme Council of Culture'),
(154284, 119699, 'ar', 'name', 'المجلس الأعلى للثقافة'),
(154285, 119700, 'en', 'name', 'National Historical Museums'),
(154286, 119700, 'sv', 'name', 'Statens Historiska Museer'),
(154287, 119701, 'no_lang_code', 'name', 'NGM Biopharmaceuticals (United States)'),
(154288, 119702, 'en', 'name', 'Tokyo Philharmonic Orchestra'),
(154289, 119702, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬ćƒ•ć‚£ćƒ«ćƒćƒ¼ćƒ¢ćƒ‹ćƒ¼äŗ¤éŸæę„½å›£'),
(154290, 119703, 'en', 'name', 'Hokkaido Town Planning Association'),
(154291, 119703, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ć¾ć”ć„ćć‚Šå”č­°ä¼š'),
(154292, 119704, 'no_lang_code', 'name', 'Biomass Technology Group (Netherlands)'),
(154293, 119705, 'ga', 'name', 'Iascach Intƭre Ɖireann'),
(154294, 119705, 'en', 'name', 'Inland Fisheries Ireland'),
(154295, 119706, 'no_lang_code', 'name', 'Ardelyx (United States)'),
(154296, 119707, 'en', 'name', 'Austrian Center for Medical Innovation and Technology'),
(154297, 119708, 'no_lang_code', 'name', 'TyrƩns (Sweden)'),
(154298, 119709, 'en', 'name', 'Montana Technological University'),
(154299, 119710, 'en', 'name', 'Japan Concrete Pumping Assotiation'),
(154300, 119710, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ć‚³ćƒ³ć‚ÆćƒŖćƒ¼ćƒˆåœ§é€äŗ‹ę„­å›£ä½“é€£åˆä¼š'),
(154301, 119711, 'en', 'name', 'Our Lady of Grace Trust''s St. Gonsalo Garcia College of Arts and Commerce'),
(154302, 119712, 'no_lang_code', 'name', 'TCG Lifesciences (India)'),
(154303, 119713, 'en', 'name', 'SENAI Innovation Institute for Embedded Systems'),
(154304, 119714, 'en', 'name', 'Japan Explosives Society'),
(154305, 119714, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē«č–¬å­¦ä¼š'),
(154306, 119715, 'no_lang_code', 'name', 'AchƩ (Brazil)'),
(154307, 119716, 'no', 'name', 'Nasjonalt utviklingssenter for barn og unge'),
(154308, 119716, 'en', 'name', 'The Norwegian Center for Child Behavioral Development'),
(154309, 119717, 'no_lang_code', 'name', 'Siemens (Germany)'),
(154310, 119718, 'en', 'name', 'Jinan Third People''s Hospital'),
(154311, 119719, 'en', 'name', 'Vivekanand Education Society''s College of Arts, Science and Commerce (Autonomous)'),
(154312, 119719, 'mr', 'name', 'ą¤µą¤æą¤µą„‡ą¤•ą¤¾ą¤Øą¤‚ą¤¦ ą¤ą¤œą„ą¤Æą„ą¤•ą„‡ą¤¶ą¤Ø ą¤øą„‹ą¤øą¤¾ą¤Æą¤Ÿą„€ą¤ø ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ ą¤†ą¤°ą„ą¤Ÿą„ą¤ø, ą¤øą¤¾ą¤Æą¤Øą„ą¤ø & ą¤•ą„‰ą¤®ą¤°ą„ą¤ø'),
(154313, 119720, 'en', 'name', 'Centre for Policy Dialogue'),
(154314, 119721, 'en', 'name', 'Makkah Colleges'),
(154315, 119722, 'hr', 'name', 'Nacionalni centar za vanjsko vrednovanje obrazovanja'),
(154316, 119722, 'en', 'name', 'National Centre for External Valuation of Education'),
(154317, 119723, 'en', 'name', 'Verma Hospital'),
(154318, 119724, 'en', 'name', 'All Japan Archery Federation'),
(154319, 119724, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬ć‚¢ćƒ¼ćƒć‚§ćƒŖćƒ¼é€£ē›Ÿ'),
(154320, 119725, 'en', 'name', 'Koto City Health and Sports Foundation'),
(154321, 119725, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±Ÿę±åŒŗå„åŗ·ć‚¹ćƒćƒ¼ćƒ„å…¬ē¤¾'),
(154322, 119726, 'en', 'name', 'The Murata Science Foundation'),
(154323, 119726, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę‘ē”°å­¦č”“ęŒÆčˆˆč²”å›£'),
(154324, 119727, 'no_lang_code', 'name', 'Bharathidasan University'),
(154325, 119727, 'ta', 'name', 'ą®Ŗą®¾ą®°ą®¤ą®æą®¤ą®¾ą®šą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(154326, 119728, 'en', 'name', 'Electronic Commerce Security Technology Research Association'),
(154327, 119728, 'ja', 'name', 'é›»å­å•†å–å¼•å®‰å…ØęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(154328, 119729, 'no_lang_code', 'name', 'Philochem (Switzerland)'),
(154329, 119730, 'en', 'name', 'Bio and Emerging Technology Institute'),
(154330, 119731, 'en', 'name', 'Austrian Parliament'),
(154331, 119731, 'de', 'name', 'Parlament Ɩsterreich'),
(154332, 119732, 'no_lang_code', 'name', 'BioLegend (United States)'),
(154333, 119733, 'en', 'name', 'Japan-Malaysia Association'),
(154334, 119733, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒžćƒ¬ćƒ¼ć‚·ć‚¢å”ä¼š'),
(154335, 119734, 'en', 'name', 'Peace Institute- Institute for Contemporary Social and Political Studies'),
(154336, 119735, 'en', 'name', 'Organization for the Promotion of Responsible Tuna Fisheries'),
(154337, 119735, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč²¬ä»»ć‚ć‚‹ć¾ćć‚ę¼ę„­ęŽØé€²ę©Ÿę§‹'),
(154338, 119736, 'en', 'name', 'Tri-Institutional Therapeutics Discovery Institute'),
(154339, 119737, 'no_lang_code', 'name', 'Synelixis (Greece)'),
(154340, 119738, 'en', 'name', 'Hung Vuong University'),
(154341, 119738, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Hùng Vʰʔng'),
(154342, 119739, 'no_lang_code', 'name', 'Campden BRI (United Kingdom)'),
(154343, 119740, 'pt', 'name', 'Museu Nacional de Antropologia de Angola'),
(154344, 119741, 'en', 'name', 'Japan Textile Finisher''s Association'),
(154345, 119741, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęŸ“č‰²å”ä¼š'),
(154346, 119742, 'en', 'name', 'Pacifica Graduate Institute'),
(154347, 119743, 'en', 'name', 'Belgian Nuclear Research Centre'),
(154348, 119743, 'fr', 'name', 'Centre d''Etude de l''Energie NuclƩaire'),
(154349, 119743, 'nl', 'name', 'Studiecentrum voor Kernenergie'),
(154350, 119743, 'de', 'name', 'Studienzentrum für Kernenergie'),
(154351, 119744, 'en', 'name', 'Aichi Association of Medical Techinolotists'),
(154352, 119744, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę„›ēŸ„ēœŒč‡ØåŗŠę¤œęŸ»ęŠ€åø«ä¼š'),
(154353, 119745, 'en', 'name', 'Botswana Qualifications Authority'),
(154354, 119746, 'en', 'name', 'The Fasteners Institute of Japan'),
(154355, 119746, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć­ć˜å·„ę„­å”ä¼š'),
(154356, 119747, 'pl', 'name', 'Państwowa Wyższa Szkoła Filmowa, Telewizyjna i Teatralna im. Leona Schillera'),
(154357, 119747, 'en', 'name', 'Łódź Film School'),
(154358, 119748, 'en', 'name', 'Federal College of Education, Iwo'),
(154359, 119749, 'no_lang_code', 'name', 'Albaydha University'),
(154360, 119749, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁŠŲ¶Ų§Ų”'),
(154361, 119750, 'en', 'name', 'Azerbaijan Scientific Research Institute of Construction and Architecture'),
(154362, 119750, 'az', 'name', 'Azərbaycan İnşaat və Memarlıq Elmi-Tədqiqat İnstitutu'),
(154363, 119751, 'no_lang_code', 'name', 'Nordex (Germany)'),
(154364, 119752, 'en', 'name', 'Zetech University'),
(154365, 119753, 'en', 'name', 'Korea Institute of Hydrological Survey'),
(154366, 119754, 'es', 'name', 'Universidad de Margarita'),
(154367, 119755, 'en', 'name', 'Virtus Global Center for Corporate Governance'),
(154368, 119755, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ центр Š½Š°ŃƒŠŗŠ¾Š²ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ "Š’Ń–Ń€Ń‚ŃƒŃ"'),
(154369, 119756, 'en', 'name', 'Ural research Institute of Phthisiopulmonology'),
(154370, 119756, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„Ń‚ŠøŠ·ŠøŠ¾ŠæŃƒŠ»ŃŒŠ¼Š¾Š½Š¾Š»Š¾Š³ŠøŠø'),
(154371, 119757, 'no_lang_code', 'name', 'Annoroad Gene Technology (China)'),
(154372, 119758, 'en', 'name', 'Hyogo Association of Medical Technologists'),
(154373, 119758, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…µåŗ«ēœŒč‡ØåŗŠę¤œęŸ»ęŠ€åø«ä¼š'),
(154374, 119759, 'en', 'name', 'Japan Overseas Plantation Promotion Center'),
(154375, 119759, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–ē”£ę„­ę¤ęž—ć‚»ćƒ³ć‚æćƒ¼'),
(154376, 119760, 'en', 'name', 'Clinical Trial and Consulting'),
(154377, 119761, 'en', 'name', 'Northwestern College - Iowa'),
(154378, 119762, 'es', 'name', 'Universidad de Ciencias y Artes de AmƩrica Latina'),
(154379, 119762, 'en', 'name', 'University of Sciences and Arts of Latin America'),
(154380, 119763, 'en', 'name', 'General Incorporated Foundation For International Education'),
(154381, 119763, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›ę•™č‚²å”ä¼š'),
(154382, 119764, 'es', 'name', 'Escuela de Administración y Mercadotecnia del Quindío'),
(154383, 119765, 'en', 'name', 'Environment and Rural Development Foundation'),
(154384, 119766, 'fr', 'name', 'Service de Physico-Chimie'),
(154385, 119767, 'no_lang_code', 'name', 'Dabur (India)'),
(154386, 119767, 'hi', 'name', 'औाबर'),
(154387, 119768, 'en', 'name', 'Society for the Advancement of Musical Appreciation'),
(154388, 119768, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéŸ³ę„½é‘‘č³žęŒÆčˆˆč²”å›£'),
(154389, 119769, 'en', 'name', 'Comfort Index Lab'),
(154390, 119769, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē§‘å­¦ęŠ€č”“ęŒÆčˆˆä¼š'),
(154391, 119770, 'en', 'name', 'Al-Ihya Islamic University of Kuningan'),
(154392, 119770, 'id', 'name', 'Universitas Islam Al-Ihya Kuningan'),
(154393, 119771, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes en SantĆ© Publique'),
(154394, 119772, 'en', 'name', 'South Carolina Geological Survey'),
(154395, 119773, 'en', 'name', 'Japan Overseas Medical Fund'),
(154396, 119773, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęµ·å¤–é‚¦äŗŗåŒ»ē™‚åŸŗé‡‘'),
(154397, 119774, 'en', 'name', 'Japanese Society for Engineering Education'),
(154398, 119774, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å·„å­¦ę•™č‚²å”ä¼š'),
(154399, 119775, 'en', 'name', 'AIRI - Artificial Intelligence Research Institute'),
(154400, 119775, 'ru', 'name', 'AIRI - Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ интеллекта'),
(154401, 119776, 'no_lang_code', 'name', 'Quantum Motion Technologies (United Kingdom)'),
(154402, 119777, 'en', 'name', 'Tokushima Economic Research Institute'),
(154403, 119777, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¾³å³¶ēµŒęøˆē ”ē©¶ę‰€'),
(154404, 119778, 'en', 'name', 'Gambia Horticultural Enterprises'),
(154405, 119778, 'no_lang_code', 'name', 'Gambia Horticultural Enterprises (The Gambia)'),
(154406, 119779, 'en', 'name', 'Japan Institute for Overseas Investment'),
(154407, 119779, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęµ·å¤–ęŠ•čžč³‡ęƒ…å ±č²”å›£'),
(154408, 119780, 'no_lang_code', 'name', 'ZeClinics (Spain)'),
(154409, 119781, 'no_lang_code', 'name', 'Nouscom (Italy)'),
(154410, 119782, 'sv', 'name', 'Havs- och Vattenmyndigheten'),
(154411, 119782, 'en', 'name', 'Swedish Agency for Marine and Water Management'),
(154412, 119783, 'en', 'name', 'Saint Elizabeth Health Care'),
(154413, 119784, 'no_lang_code', 'name', 'A123 Systems (United States)'),
(154414, 119785, 'en', 'name', 'Jagannath University Jaipur'),
(154415, 119786, 'en', 'name', 'French University of Egypt'),
(154416, 119786, 'fr', 'name', 'UniversitĆ© franƧaise d''Ɖgypte'),
(154417, 119786, 'ar', 'name', 'الجامعة Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ© في Ł…ŲµŲ±'),
(154418, 119787, 'de', 'name', 'Diakovere'),
(154419, 119788, 'no_lang_code', 'name', 'Norconsult (Norway)'),
(154420, 119789, 'en', 'name', 'Kyushu Productivity Center'),
(154421, 119789, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä¹å·žē”Ÿē”£ę€§ęœ¬éƒØ'),
(154422, 119790, 'en', 'name', 'Battery4Life GmbH'),
(154423, 119791, 'en', 'name', 'Prime University'),
(154424, 119791, 'bn', 'name', 'ą¦Ŗą§ą¦°ą¦¾ą¦‡ą¦® ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(154425, 119792, 'en', 'name', 'Ichinomiya Fashion Design Center'),
(154426, 119792, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø€å®®åœ°å “ē”£ę„­ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³ćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(154427, 119793, 'en', 'name', 'Japan Association of Real Estate Appraisers'),
(154428, 119793, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äøå‹•ē”£é‘‘å®šå£«å”ä¼šé€£åˆä¼š'),
(154429, 119794, 'en', 'name', 'Cardinal Stritch University'),
(154430, 119795, 'en', 'name', 'Neomatrix Biotech (Italy)'),
(154431, 119796, 'en', 'name', 'Bihar Engineering University'),
(154432, 119796, 'hi', 'name', 'बिहार ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą¤æą¤‚ą¤— ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(154433, 119796, 'ta', 'name', 'ą®ŖąÆ€ą®•ą®¾ą®°ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(154434, 119797, 'en', 'name', 'Sierra College'),
(154435, 119798, 'en', 'name', 'Northern Alberta Institute of Technology'),
(154436, 119799, 'fr', 'name', 'Centre EuropĆ©en d’Etudes de SĆ©curitĆ© et d’Analyse des Risques'),
(154437, 119800, 'en', 'name', 'Union College - Kentucky'),
(154438, 119801, 'es', 'name', 'Ministerio de Salud y de Protección Social'),
(154439, 119801, 'en', 'name', 'Ministry of Health and Social Protection'),
(154440, 119802, 'pt', 'name', 'Governo do Estado do Rio de Janeiro'),
(154441, 119803, 'fr', 'name', 'Centre Hospitalier Territorial de Nouvelle-CalƩdonie'),
(154442, 119804, 'en', 'name', 'Japan Iron And Steel Recycling Institute'),
(154443, 119804, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„ćƒŖć‚µć‚¤ć‚Æćƒ«å·„ę„­ä¼š'),
(154444, 119805, 'no_lang_code', 'name', 'First Light Fusion'),
(154445, 119806, 'en', 'name', 'The Foundation for Prevention of Dementia'),
(154446, 119806, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗčŖēŸ„ē—‡äŗˆé˜²č²”å›£'),
(154447, 119807, 'no_lang_code', 'name', 'Oikon (Croatia)'),
(154448, 119808, 'en', 'name', 'Japan Spring Manufacturers Association'),
(154449, 119808, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć°ć­å·„ę„­ä¼š'),
(154450, 119809, 'en', 'name', 'Umayabashi Hospital'),
(154451, 119809, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå‰ę©‹ē©å–„ä¼šåŽ©ę©‹ē—…é™¢'),
(154452, 119810, 'en', 'name', 'THE Maeda Engineering Foundation'),
(154453, 119810, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå‰ē”°čØ˜åæµå·„å­¦ęŒÆčˆˆč²”å›£'),
(154454, 119811, 'en', 'name', 'Boiler & Crane Safety Association'),
(154455, 119811, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗćƒœć‚¤ćƒ©ćƒ»ć‚Æćƒ¬ćƒ¼ćƒ³å®‰å…Øå”ä¼š'),
(154456, 119812, 'en', 'name', 'Salman Farsi University of Kazerun'),
(154457, 119812, 'fa', 'name', 'دانؓگاه سلمان فارسی Ś©Ų§Ų²Ų±ŁˆŁ†'),
(154458, 119813, 'en', 'name', 'Hanover institute of integrated production'),
(154459, 119813, 'no_lang_code', 'name', 'Institut fuer Integrierte Produktion Hannover (Germany)'),
(154460, 119814, 'en', 'name', 'ITOH Science Foundation'),
(154461, 119814, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä¼Šč—¤ē§‘å­¦ęŒÆčˆˆä¼š'),
(154462, 119815, 'fr', 'name', 'Institut Nordique de Recherche en Environnement et SantƩ au Travail'),
(154463, 119815, 'en', 'name', 'Northern Institute for Research in Environment and Occupational Health and Safety'),
(154464, 119816, 'en', 'name', 'Danish National Metrology Institute'),
(154465, 119816, 'da', 'name', 'Dansk Fundamental Metrologi'),
(154466, 119817, 'en', 'name', 'Fukushima National College of Technology'),
(154467, 119817, 'ja', 'name', 'ē¦å³¶å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(154468, 119818, 'es', 'name', 'Centro Científico Tecnológico - Bahía Blanca'),
(154469, 119819, 'en', 'name', 'American Samoa Community College'),
(154470, 119820, 'no_lang_code', 'name', 'Dekonta (Czechia)'),
(154471, 119821, 'en', 'name', 'Royal Scientific Society'),
(154472, 119822, 'en', 'name', 'Toyohashi International Association'),
(154473, 119822, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč±Šę©‹åø‚å›½éš›äŗ¤ęµå”ä¼š'),
(154474, 119823, 'id', 'name', 'Institut Agama Kristen Negeri Ambon'),
(154475, 119823, 'en', 'name', 'State Institute For Christian Studies Ambon'),
(154476, 119824, 'no_lang_code', 'name', 'Signify (Netherlands)'),
(154477, 119825, 'en', 'name', 'The Organization for Urban-Rural Interchange Revitalization'),
(154478, 119825, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗéƒ½åø‚č¾²å±±ę¼ę‘äŗ¤ęµę“»ę€§åŒ–ę©Ÿę§‹'),
(154479, 119826, 'en', 'name', 'Guasave Higher Technological Institute'),
(154480, 119826, 'es', 'name', 'Instituto Tecnológico Superior de Guasave'),
(154481, 119827, 'en', 'name', 'Japan Alcohol Association'),
(154482, 119827, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚¢ćƒ«ć‚³ćƒ¼ćƒ«å”ä¼š'),
(154483, 119828, 'nl', 'name', 'Yulius'),
(154484, 119829, 'en', 'name', 'The Mining and Materials Processing Institute of Japan'),
(154485, 119829, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč³‡ęŗćƒ»ē“ ęå­¦ä¼š'),
(154486, 119830, 'de', 'name', 'ForWind Zentrum für Windenergieforschung'),
(154487, 119831, 'en', 'name', 'Kansai University of International Studies'),
(154488, 119831, 'ja', 'name', 'é–¢č„æå›½éš›å¤§å­¦'),
(154489, 119832, 'no_lang_code', 'name', 'Immatics Biotechnologies (Germany)'),
(154490, 119833, 'no_lang_code', 'name', 'Beam Therapeutics (United States)'),
(154491, 119834, 'en', 'name', 'The Spectroscopical Society of Japan'),
(154492, 119834, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åˆ†å…‰å­¦ä¼š'),
(154493, 119835, 'fr', 'name', 'Institut National de SantƩ Publique du Burkina Faso'),
(154494, 119836, 'en', 'name', 'Social Medical Corporation Yuuaikai Yuuai Medical Center'),
(154495, 119836, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå‹ę„›ä¼šå‹ę„›åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(154496, 119837, 'en', 'name', 'Tallinn University of Applied Sciences'),
(154497, 119837, 'et', 'name', 'Tallinna TehnikakƵrgkool'),
(154498, 119838, 'en', 'name', 'American University of Culture and Education'),
(154499, 119838, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© للثقافة ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ…'),
(154500, 119839, 'en', 'name', 'Institute for Fermentation and Biotechnology, Berlin'),
(154501, 119839, 'de', 'name', 'Versuchs- und Lehranstalt für Brauerei in Berlin'),
(154502, 119840, 'no_lang_code', 'name', 'Royal GD (Netherlands)'),
(154503, 119841, 'en', 'name', 'American Farm School'),
(154504, 119841, 'el', 'name', 'Αμερικανική Γεωργική Σχολή'),
(154505, 119842, 'it', 'name', 'Azienda Regionale per la protezione dell''ambiente Lombardia'),
(154506, 119842, 'en', 'name', 'Regional environmental protection for Lombardia'),
(154507, 119843, 'en', 'name', 'Kishiwada Medical Association'),
(154508, 119843, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå²øå’Œē”°åø‚åŒ»åø«ä¼š'),
(154509, 119844, 'es', 'name', 'Consorcio de Salud y Social de CataluƱa'),
(154510, 119844, 'en', 'name', 'Consortium for Health and Social Catalonia'),
(154511, 119845, 'es', 'name', 'Centro Nacional de Alta TecnologĆ­a'),
(154512, 119845, 'en', 'name', 'National Center for High Technology'),
(154513, 119846, 'es', 'name', 'Universidad Tecnológica del Sur'),
(154514, 119847, 'en', 'name', 'Ideas42'),
(154515, 119848, 'en', 'name', 'ShigaHachiman Hospital'),
(154516, 119848, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé’ęØ¹ä¼šę»‹č³€å…«å¹”ē—…é™¢'),
(154517, 119849, 'en', 'name', 'Oguz Han Engineering and Technology University of Turkmenistan'),
(154518, 119849, 'tk', 'name', 'Türkmenistanyň Oguz han adyndaky Inžener-tehnologiýalar uniwersiteti'),
(154519, 119850, 'en', 'name', 'Mount Mary University'),
(154520, 119851, 'en', 'name', 'Institute for Advanced Composites and Robotics'),
(154521, 119851, 'mk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за современи композити Šø роботика'),
(154522, 119852, 'no_lang_code', 'name', 'Figshare (United Kingdom)'),
(154523, 119853, 'en', 'name', 'West Africa Centre for Crop Improvement'),
(154524, 119854, 'en', 'name', 'Korean Red Cross'),
(154525, 119855, 'no_lang_code', 'name', 'Hypres (United States)'),
(154526, 119856, 'en', 'name', 'Intersect'),
(154527, 119857, 'en', 'name', 'The Japan Education Centre for the Hotel Industry'),
(154528, 119857, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ›ćƒ†ćƒ«ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(154529, 119858, 'en', 'name', 'Realize'),
(154530, 119859, 'en', 'name', 'Sri Sairam College of Engineering'),
(154531, 119860, 'en', 'name', 'Japan Reinforcing Bar Joints Institute'),
(154532, 119860, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„ē­‹ē¶™ę‰‹å”ä¼š'),
(154533, 119861, 'pt', 'name', 'Associação Brasileira de Psiquiatria'),
(154534, 119861, 'en', 'name', 'Brazilian Association of Psychiatry'),
(154535, 119862, 'en', 'name', 'Community Health Systems - Northwest Health - Porter'),
(154536, 119863, 'en', 'name', 'The Kinki Chemical Society, Japan'),
(154537, 119863, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗčæ‘ē•æåŒ–å­¦å”ä¼š'),
(154538, 119864, 'es', 'name', 'Universidad Iberoamericana del Ecuador'),
(154539, 119865, 'en', 'name', 'Institute of Water Modelling'),
(154540, 119866, 'en', 'name', 'Bina Bangsa Getsempena University'),
(154541, 119867, 'en', 'name', 'Higher Institute of Veterinary Sciences and Medicine'),
(154542, 119867, 'fr', 'name', 'Institut SupƩrieur des Sciences et de MƩdecine VƩtƩrinaire'),
(154543, 119868, 'en', 'name', 'The Japan Association of Radiological Technologists.'),
(154544, 119868, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čØŗē™‚ę”¾å°„ē·šęŠ€åø«ä¼š'),
(154545, 119869, 'en', 'name', 'All for Health Institute'),
(154546, 119869, 'pt', 'name', 'Instituto Todos pela SaĆŗde'),
(154547, 119870, 'en', 'name', 'The Society of Heating, Air-Conditioning and Sanitary Engineers of Japan'),
(154548, 119870, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē©ŗę°—čŖæå’Œćƒ»č”›ē”Ÿå·„å­¦ä¼š'),
(154549, 119871, 'en', 'name', 'Japan Bearing Inspection Institute'),
(154550, 119871, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬č»øå—ę¤œęŸ»å”ä¼š'),
(154551, 119872, 'en', 'name', 'American Thrombosis and Hemostasis Network'),
(154552, 119873, 'en', 'name', 'Japan Jewellery Association'),
(154553, 119873, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚øćƒ„ć‚ØćƒŖćƒ¼å”ä¼š'),
(154554, 119874, 'en', 'name', 'Taganrog Institute of Management and Economics'),
(154555, 119874, 'ru', 'name', 'Частное Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Таганрогский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(154556, 119875, 'en', 'name', 'Global Industrial and Social Progress Research Institute'),
(154557, 119875, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°ēƒē”£ę„­ę–‡åŒ–ē ”ē©¶ę‰€'),
(154558, 119876, 'en', 'name', 'Japan Golf Goods Association'),
(154559, 119876, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚“ćƒ«ćƒ•ē”Øå“å”ä¼š'),
(154560, 119877, 'en', 'name', 'Continuum Blue Limited'),
(154561, 119877, 'no_lang_code', 'name', 'Continuum Blue Limited (United Kingdom)'),
(154562, 119878, 'no_lang_code', 'name', 'Bibliotheca Alexandrina'),
(154563, 119878, 'ar', 'name', 'Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(154564, 119879, 'en', 'name', 'Kannur University'),
(154565, 119879, 'ml', 'name', 'ą“•ą“£ąµą“£ąµ‚ąµ¼ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(154566, 119880, 'en', 'name', 'Al-Imam Al-Adham University College'),
(154567, 119880, 'ar', 'name', 'Ł„ŁƒŁ„ŁŠŲ© الامام الاعظم الجامع'),
(154568, 119881, 'de', 'name', 'Evangelische Hochschule Darmstadt'),
(154569, 119882, 'de', 'name', 'Cochrane Deutschland Stiftung'),
(154570, 119883, 'en', 'name', 'Shiga Prefecture Industrial Support Center'),
(154571, 119883, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę»‹č³€ēœŒē”£ę„­ę”Æę“ćƒ—ćƒ©ć‚¶'),
(154572, 119884, 'lv', 'name', 'Rīgas Ekonomikas augstskola'),
(154573, 119884, 'en', 'name', 'Stockholm School of Economics in Riga'),
(154574, 119884, 'lt', 'name', 'Stokholmo ekonomikos aukŔtoji mokykla Rygoje'),
(154575, 119885, 'no_lang_code', 'name', 'Intas Pharmaceuticals (India)'),
(154576, 119886, 'sw', 'name', 'Chuo Kikuu cha Nairobi'),
(154577, 119886, 'en', 'name', 'University of Nairobi'),
(154578, 119887, 'no_lang_code', 'name', 'Fate Therapeutics (United States)'),
(154579, 119888, 'fr', 'name', 'Centre National de Gestion des RƩserves de Faune'),
(154580, 119888, 'en', 'name', 'National Center for Wildlife Reserve Management'),
(154581, 119889, 'en', 'name', 'Health Strategy and Delivery Foundation'),
(154582, 119890, 'en', 'name', 'Geographic and Cadastral Institute of Angola'),
(154583, 119890, 'pt', 'name', 'Instituto GeogrƔfico e Cadastral de Angola'),
(154584, 119891, 'en', 'name', 'General Organization For Teaching Hospitals and Institutes'),
(154585, 119891, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„Ł…Ų³ŲŖŲ“ŁŁŠŲ§ŲŖ ŁˆŲ§Ł„Ł…Ų¹Ų§Ł‡ŲÆ Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ…ŁŠŲ©'),
(154586, 119892, 'fr', 'name', 'UniversitƩ de Bretagne Occidentale'),
(154587, 119893, 'en', 'name', 'The State Institution «Public Health Center of the Ministry of Health of Ukraine»'),
(154588, 119893, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° «Центр Š³Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ¾Š³Š¾ Š·Š“Š¾Ń€Š¾Š²ā€™Ń ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š° охорони Š·Š“Š¾Ń€Š¾Š²ā€™Ń України»'),
(154589, 119894, 'es', 'name', 'Universidad de AysƩn'),
(154590, 119895, 'no_lang_code', 'name', 'ERA Arqueologia'),
(154591, 119896, 'en', 'name', 'Shibli National College'),
(154592, 119896, 'ur', 'name', 'Ų“ŲØŁ„ŪŒ Ł†ŪŒŲ“Ł†Ł„ Ś©Ų§Ł„Ų¬ŲŒ Ų§Ų¹ŲøŁ… گڑھ'),
(154593, 119896, 'bn', 'name', 'শিবলী ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦•ą¦²ą§‡ą¦œ'),
(154594, 119897, 'en', 'name', 'Sardar Patel University of Police, Security and Criminal Justice, Jodhpur'),
(154595, 119898, 'en', 'name', 'The Institute for International Business Communication'),
(154596, 119898, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›ćƒ“ć‚øćƒć‚¹ć‚³ćƒŸćƒ„ćƒ‹ć‚±ćƒ¼ć‚·ćƒ§ćƒ³å”ä¼š'),
(154597, 119899, 'en', 'name', 'Gulf Coast State College'),
(154598, 119900, 'en', 'name', 'Royal Ottawa Mental Health Centre'),
(154599, 119901, 'en', 'name', 'Arts University Plymouth'),
(154600, 119902, 'en', 'name', 'Columbia Southern University'),
(154601, 119903, 'en', 'name', 'Policy Research Associates'),
(154602, 119904, 'en', 'name', 'Te Whare Wānanga o Awanuiārangi'),
(154603, 119905, 'en', 'name', 'Mar Gregorios College of Arts and Science'),
(154604, 119906, 'en', 'name', 'Japan Institute of Business Law'),
(154605, 119906, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå•†äŗ‹ę³•å‹™ē ”ē©¶ä¼š'),
(154606, 119907, 'en', 'name', 'Open Brain Institute'),
(154607, 119908, 'en', 'name', 'Justice Institute of British Columbia'),
(154608, 119909, 'en', 'name', 'Fryderyk Chopin University of Music'),
(154609, 119909, 'pl', 'name', 'Uniwersytet Muzyczny Fryderyka Chopina'),
(154610, 119910, 'en', 'name', 'Japan Steel Tower Association'),
(154611, 119910, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„å””å”ä¼š'),
(154612, 119911, 'en', 'name', 'Hokkaido Health Promotion Foundation'),
(154613, 119911, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“å„åŗ·ć„ćć‚Šč²”å›£'),
(154614, 119912, 'fr', 'name', 'Ɖcole SupĆ©rieure des Industries du Textile et de l''Habillement'),
(154615, 119913, 'pt', 'name', 'Secretaria de Estado de SaĆŗde do Rio de Janeiro'),
(154616, 119914, 'en', 'name', 'Hitachi Ctizens'' Science and Culture Foundation'),
(154617, 119914, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ē«‹åø‚ę°‘ē§‘å­¦ę–‡åŒ–č²”å›£'),
(154618, 119915, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d’Architecture Paris-Malaquais'),
(154619, 119916, 'en', 'name', 'The Society of Japanese Aerospace Companies'),
(154620, 119916, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čˆŖē©ŗå®‡å®™å·„ę„­ä¼š');
INSERT INTO `ror_settings` VALUES
(154621, 119917, 'en', 'name', 'Institute of Applied Artificial Intelligence and Robotics'),
(154622, 119918, 'pt', 'name', 'Instituto PolitƩcnico do Porto'),
(154623, 119918, 'en', 'name', 'Polytechnic Institute of Porto'),
(154624, 119919, 'id', 'name', 'Institut Teknologi dan Bisnis Palcomtech'),
(154625, 119920, 'en', 'name', 'Autism Alliance of Canada'),
(154626, 119921, 'no_lang_code', 'name', 'Osaka Metropolitan University'),
(154627, 119921, 'ja', 'name', 'å¤§é˜Ŗå…¬ē«‹å¤§å­¦'),
(154628, 119922, 'en', 'name', 'Japan Seed Trade Association'),
(154629, 119922, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēØ®č‹—å”ä¼š'),
(154630, 119923, 'no_lang_code', 'name', 'ABL Bio (South Korea)'),
(154631, 119924, 'en', 'name', 'Bay Path University'),
(154632, 119925, 'en', 'name', 'Volunteer State Community College'),
(154633, 119926, 'en', 'name', 'Igenomix'),
(154634, 119927, 'en', 'name', 'Tokyo Industry Federation'),
(154635, 119927, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę±äŗ¬å·„ę„­å›£ä½“é€£åˆä¼š'),
(154636, 119928, 'en', 'name', 'Japan Industrial Association of Gas and Kerosene Appliances'),
(154637, 119928, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¬ć‚¹ēŸ³ę²¹ę©Ÿå™Øå·„ę„­ä¼š'),
(154638, 119929, 'en', 'name', 'Annai Violet Arts and Science College'),
(154639, 119930, 'en', 'name', 'Vermont Geological Survey'),
(154640, 119931, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture Paris-Val de Seine'),
(154641, 119932, 'en', 'name', 'Dusit Thani College'),
(154642, 119932, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø”ąøøąøŖąø“ąø•ąø˜ąø²ąø™ąøµ ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(154643, 119933, 'en', 'name', 'European & Developing Countries Clinical Trials Partnership'),
(154644, 119934, 'en', 'name', 'Center for Research and Promotion of Japanese Islands'),
(154645, 119934, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é›¢å³¶ć‚»ćƒ³ć‚æćƒ¼'),
(154646, 119935, 'no_lang_code', 'name', 'AskBio (United States)'),
(154647, 119936, 'es', 'name', 'Instituto Universitario Asociación Cristiana de Jóvenes'),
(154648, 119937, 'en', 'name', 'Japan Association of Corrosion Control'),
(154649, 119937, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é˜²éŒ†ęŠ€č”“å”ä¼š'),
(154650, 119938, 'en', 'name', 'WSPIA University of Rzeszow'),
(154651, 119938, 'pl', 'name', 'Wyższa Szkoła Prawa i Administracji Rzeszów-Przemyśl'),
(154652, 119939, 'sw', 'name', 'Chuo Kikuu cha Kikristo cha Pan Africa'),
(154653, 119939, 'en', 'name', 'Pan Africa Christian University'),
(154654, 119940, 'en', 'name', 'Laramie County Community College'),
(154655, 119941, 'en', 'name', 'National Camping Association of Japan'),
(154656, 119941, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚­ćƒ£ćƒ³ćƒ—å”ä¼š'),
(154657, 119942, 'fr', 'name', 'CollĆØge john abbott'),
(154658, 119942, 'en', 'name', 'John Abbott College'),
(154659, 119943, 'en', 'name', 'Belgian Ceramic Research Centre'),
(154660, 119944, 'en', 'name', 'National Rehabilitation Hospital'),
(154661, 119944, 'ga', 'name', 'Ospidéal NÔisiúnta AthshlÔnúchÔin'),
(154662, 119945, 'en', 'name', 'Japan Sailing Federation'),
(154663, 119945, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚»ćƒ¼ćƒŖćƒ³ć‚°é€£ē›Ÿ'),
(154664, 119946, 'en', 'name', 'Bavarian State Library'),
(154665, 119946, 'de', 'name', 'Bayerische Staatsbibliothek'),
(154666, 119947, 'en', 'name', 'HCA Healthcare'),
(154667, 119948, 'en', 'name', 'Japan Radio Air Navigation Systems Association'),
(154668, 119948, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčˆŖē©ŗäæå®‰ē„”ē·šć‚·ć‚¹ćƒ†ćƒ å”ä¼š'),
(154669, 119949, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Bouzareah Alger'),
(154670, 119949, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ببوزريعة'),
(154671, 119950, 'en', 'name', 'Bedƫr University'),
(154672, 119950, 'sq', 'name', 'Universiteti Hƫna e Plotƫ'),
(154673, 119951, 'en', 'name', 'Greater Tokyo Initiative'),
(154674, 119951, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé¦–éƒ½åœē”£ę„­ę“»ę€§åŒ–å”ä¼š'),
(154675, 119952, 'en', 'name', 'Rural Finance Research Institute'),
(154676, 119952, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč¾²ę‘é‡‘čžē ”ē©¶ä¼š'),
(154677, 119953, 'en', 'name', 'Fukushima Shichoson Kensetsu Shien Kikou'),
(154678, 119953, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćµćć—ć¾åø‚ē”ŗę‘ę”Æę“ę©Ÿę§‹'),
(154679, 119954, 'en', 'name', 'The Japanese Society of Conservative Dentistry'),
(154680, 119954, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ę­Æē§‘äæå­˜å­¦ä¼š'),
(154681, 119955, 'en', 'name', 'International Cartographic Information Center'),
(154682, 119955, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°å›³ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(154683, 119956, 'en', 'name', 'Kyoto Industrial Support Organization 21'),
(154684, 119956, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½ē”£ę„­21'),
(154685, 119957, 'no_lang_code', 'name', 'Foghorn Therapeutics (United States)'),
(154686, 119958, 'en', 'name', 'Nomura School of Advanced Management'),
(154687, 119958, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé‡Žę‘ćƒžćƒć‚øćƒ”ćƒ³ćƒˆćƒ»ć‚¹ć‚Æćƒ¼ćƒ«'),
(154688, 119959, 'en', 'name', 'Morinaga Angel Foundation'),
(154689, 119959, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę£®ę°øć‚Øćƒ³ć‚¼ćƒ«č²”å›£'),
(154690, 119960, 'en', 'name', 'Ibaraki Western Medical Organization'),
(154691, 119960, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗčŒØåŸŽēœŒč„æéƒØåŒ»ē™‚ę©Ÿę§‹'),
(154692, 119961, 'en', 'name', 'European Centre for Social Welfare Policy and Research'),
(154693, 119962, 'en', 'name', 'TCM Hospital Xinyang'),
(154694, 119962, 'zh', 'name', 'äæ”é˜³åø‚äø­åŒ»é™¢'),
(154695, 119963, 'en', 'name', 'THE Baseball Hall Of Fame And Museum'),
(154696, 119963, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé‡Žēƒę®æå ‚åšē‰©é¤Ø'),
(154697, 119964, 'no_lang_code', 'name', 'R2M Solution (Italy)'),
(154698, 119965, 'de', 'name', 'Gesellschaft fuer Wirtschaftliche Strukturforschung'),
(154699, 119965, 'en', 'name', 'Institute of Economic Structures Research'),
(154700, 119966, 'en', 'name', 'Catalonia College of Music'),
(154701, 119966, 'ca', 'name', 'Escola Superior de MĆŗsica de Catalunya'),
(154702, 119966, 'es', 'name', 'Escuela Superior de Música de Cataluña'),
(154703, 119967, 'en', 'name', 'Japan Automobile Transport Technology Association'),
(154704, 119967, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»Šč¼øé€ęŠ€č”“å”ä¼š'),
(154705, 119968, 'fi', 'name', 'ElƤketurvakeskus'),
(154706, 119968, 'en', 'name', 'Finnish Centre for Pensions'),
(154707, 119969, 'en', 'name', 'Latvian Institute of Aquatic Ecology'),
(154708, 119969, 'lv', 'name', 'Latvijas Hidroekoloģijas institūts'),
(154709, 119970, 'hr', 'name', 'Istarsko veleučiliŔte'),
(154710, 119970, 'en', 'name', 'Istrian University of Applied Sciences'),
(154711, 119971, 'en', 'name', 'Global Antibiotic Research & Development Partnership'),
(154712, 119972, 'en', 'name', 'Urals Research Center for Radiation Medicine'),
(154713, 119973, 'no_lang_code', 'name', 'Ryutsu Keizai University'),
(154714, 119973, 'ja', 'name', 'ęµé€šēµŒęøˆå¤§å­¦'),
(154715, 119974, 'en', 'name', 'Caribbean Public Health Agency'),
(154716, 119975, 'en', 'name', 'Jagdish Sheth School of Management'),
(154717, 119976, 'en', 'name', 'Japanese Federation of the Deaf'),
(154718, 119976, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…Øę—„ęœ¬ć‚ć†ć‚é€£ē›Ÿ'),
(154719, 119977, 'en', 'name', 'Japanese Aero Engines Corporation'),
(154720, 119977, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬čˆŖē©ŗę©Ÿć‚Øćƒ³ć‚øćƒ³å”ä¼š'),
(154721, 119978, 'en', 'name', 'International Aircraft Development Fund'),
(154722, 119978, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗčˆŖē©ŗę©Ÿå›½éš›å…±åŒé–‹ē™ŗäæƒé€²åŸŗé‡‘'),
(154723, 119979, 'de', 'name', 'Hochschule für Musik und Theater Felix Mendelssohn Bartholdy Leipzig'),
(154724, 119979, 'en', 'name', 'University of Music and Theatre Leipzig'),
(154725, 119980, 'en', 'name', 'RV College of Physiotherapy'),
(154726, 119981, 'no_lang_code', 'name', 'Grandomics (China)'),
(154727, 119982, 'en', 'name', 'Manhyia Palace'),
(154728, 119983, 'en', 'name', 'Education for All Campaign Network'),
(154729, 119984, 'en', 'name', 'Northwest Portland Area Indian Health Board'),
(154730, 119985, 'no_lang_code', 'name', 'Olea Medical (France)'),
(154731, 119986, 'en', 'name', 'Japan-Finland Society'),
(154732, 119986, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ•ć‚£ćƒ³ćƒ©ćƒ³ćƒ‰å”ä¼š'),
(154733, 119987, 'en', 'name', 'Eastern Florida State College'),
(154734, 119988, 'en', 'name', 'Medical Care Development'),
(154735, 119989, 'en', 'name', 'Whitman-Walker Health'),
(154736, 119990, 'no_lang_code', 'name', 'HeartFlow (United States)'),
(154737, 119991, 'en', 'name', 'Tokyo Association of Radiological Technologists'),
(154738, 119991, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½čØŗē™‚ę”¾å°„ē·šęŠ€åø«ä¼š'),
(154739, 119992, 'en', 'name', 'Florida Department of Environmental Protection'),
(154740, 119993, 'en', 'name', 'Japan Investment Advisers Association'),
(154741, 119993, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęŠ•č³‡é”§å•ę„­å”ä¼š'),
(154742, 119994, 'en', 'name', 'MƩtis Nation of Alberta'),
(154743, 119995, 'es', 'name', 'Hospital Universitario LluĆ­s AlcanyĆ­s'),
(154744, 119996, 'en', 'name', 'Japan Safety Appliances Association'),
(154745, 119996, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äæå®‰ē”Øå“å”ä¼š'),
(154746, 119997, 'en', 'name', 'Akita Midorigaoka Hospital'),
(154747, 119997, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗä¹…ē››ä¼šē§‹ē”°ē·‘ćƒ¶äø˜ē—…é™¢'),
(154748, 119998, 'en', 'name', 'Oceanic Wellness Foundation'),
(154749, 119998, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå„åŗ·ē§‘å­¦č²”å›£'),
(154750, 119999, 'en', 'name', 'Mazak Foundation'),
(154751, 119999, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒžć‚¶ćƒƒć‚Æč²”å›£'),
(154752, 120000, 'en', 'name', 'Tohto College of Health Sciences'),
(154753, 120000, 'ja', 'name', 'ę±éƒ½åŒ»ē™‚å¤§å­¦'),
(154754, 120001, 'en', 'name', 'Tate'),
(154755, 120002, 'en', 'name', 'SEO Amsterdam Economics'),
(154756, 120002, 'nl', 'name', 'SEO Economisch Onderzoek'),
(154757, 120003, 'sr', 'name', 'Institut za krmno bilje'),
(154758, 120003, 'en', 'name', 'Institute for Forage Crops'),
(154759, 120004, 'en', 'name', 'THE Yukawa Memorial Foundation'),
(154760, 120004, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę¹Æå·čØ˜åæµč²”å›£'),
(154761, 120005, 'en', 'name', 'Japan Air Cleaning Association'),
(154762, 120005, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē©ŗę°—ęø…ęµ„å”ä¼š'),
(154763, 120006, 'en', 'name', 'Nagoya Urban Development Public Corporation'),
(154764, 120006, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹ć¾ć”ć„ćć‚Šå…¬ē¤¾'),
(154765, 120007, 'en', 'name', 'Nevada Department of Conservation and Natural Resources'),
(154766, 120008, 'en', 'name', 'Virginia Theological Seminary'),
(154767, 120009, 'en', 'name', 'San Beda University'),
(154768, 120010, 'en', 'name', 'PharmAccess Group'),
(154769, 120011, 'en', 'name', 'Davis & Elkins College'),
(154770, 120012, 'es', 'name', 'Universidad EvangƩlica Boliviana'),
(154771, 120013, 'en', 'name', 'University of Saravan'),
(154772, 120014, 'en', 'name', 'Government College of Engineering, Keonjhar'),
(154773, 120015, 'en', 'name', 'University of Cape Coast'),
(154774, 120016, 'en', 'name', 'The Japan Cotton & Staple Fiber Fabric Inspecting Institute Foundation'),
(154775, 120016, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ”ćƒ³ć‚±ćƒ³å“č³Ŗę¤œęŸ»å”ä¼š'),
(154776, 120017, 'en', 'name', 'Lasell College'),
(154777, 120018, 'en', 'name', 'Buraku Liberation and Human Rights Research Institute'),
(154778, 120018, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗéƒØč½č§£ę”¾ćƒ»äŗŗęØ©ē ”ē©¶ę‰€'),
(154779, 120019, 'en', 'name', 'Tamano Medical Center'),
(154780, 120019, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗēŽ‰é‡ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(154781, 120020, 'en', 'name', 'Excelsia College'),
(154782, 120021, 'en', 'name', 'Japan Telecommunications Engineering and Consulting Service'),
(154783, 120021, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęµ·å¤–é€šäæ”ćƒ»ę”¾é€ć‚³ćƒ³ć‚µćƒ«ćƒ†ć‚£ćƒ³ć‚°å”åŠ›'),
(154784, 120022, 'en', 'name', 'Association of Public Health Laboratories'),
(154785, 120023, 'en', 'name', 'Institute for Future Urban Development'),
(154786, 120023, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗéƒ½åø‚ćæć‚‰ć„ęŽØé€²ę©Ÿę§‹'),
(154787, 120024, 'en', 'name', 'Kenya Bureau of Standards'),
(154788, 120025, 'en', 'name', 'Discovery Programme'),
(154789, 120026, 'en', 'name', 'Hokkaido Concrete Technical Center'),
(154790, 120026, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“ć‚³ćƒ³ć‚ÆćƒŖćƒ¼ćƒˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(154791, 120027, 'en', 'name', 'Japan Ophthalmologists Association'),
(154792, 120027, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēœ¼ē§‘åŒ»ä¼š'),
(154793, 120028, 'no_lang_code', 'name', 'IRIS Technology Solutions (Spain)'),
(154794, 120029, 'ja', 'name', 'J-DeEPęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(154795, 120029, 'en', 'name', 'Japan Offshore Design & Engineering Platform Technology & Engineering Research Association'),
(154796, 120030, 'en', 'name', 'Snolab'),
(154797, 120031, 'en', 'name', 'Ashiya Medical Association'),
(154798, 120031, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗčŠ¦å±‹åø‚åŒ»åø«ä¼š'),
(154799, 120032, 'id', 'name', 'Institut Agama Islam Imam Syafii Indonesia'),
(154800, 120033, 'en', 'name', 'Coimbatore Institute of Technology'),
(154801, 120033, 'ta', 'name', 'ą®•ąÆ‹ą®µąÆˆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(154802, 120034, 'en', 'name', 'Japan Federation of Wood Industry Associations'),
(154803, 120034, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ęœØęēµ„åˆé€£åˆä¼š'),
(154804, 120035, 'no_lang_code', 'name', 'NCC (Sweden)'),
(154805, 120036, 'pt', 'name', 'Instituto Português de Administração de Marketing'),
(154806, 120037, 'en', 'name', 'Antwerp Maritime Academy'),
(154807, 120037, 'nl', 'name', 'Hogere Zeevaartschool Antwerpen'),
(154808, 120038, 'en', 'name', 'Flight Academy of the National Aviation University'),
(154809, 120038, 'uk', 'name', 'Š›Ń‘Ń‚Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ авиационного ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š°'),
(154810, 120039, 'en', 'name', 'Ibaraki Prefectural Development Public Corporation'),
(154811, 120039, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗčŒØåŸŽēœŒé–‹ē™ŗå…¬ē¤¾'),
(154812, 120040, 'fr', 'name', 'Ecole Centrale Casablanca'),
(154813, 120040, 'ar', 'name', 'المدرسة Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠŲ© للدار Ų§Ł„ŲØŁŠŲ¶Ų§Ų”'),
(154814, 120041, 'en', 'name', 'Palestinian Clinical Research Center'),
(154815, 120042, 'es', 'name', 'Universidad Mayor Real y Pontificia San Francisco Xavier de Chuquisaca'),
(154816, 120042, 'en', 'name', 'University of Saint Francis Xavier'),
(154817, 120043, 'en', 'name', 'Special Olympics'),
(154818, 120044, 'en', 'name', 'University of Information Technology and Sciences'),
(154819, 120044, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦°ą§ą¦­ą¦¾ą¦øą¦æą¦Ÿą¦æ অব ইনফরমেশন ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą¦ą¦Øą§ą¦” ą¦øą¦¾ą¦‡ą¦Øą§ą¦øą§‡ą¦ø'),
(154820, 120045, 'en', 'name', 'The Setagaya Medical Association'),
(154821, 120045, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø–ē”°č°·åŒŗåŒ»åø«ä¼š'),
(154822, 120046, 'en', 'name', 'Nagano Forestry Consultant'),
(154823, 120046, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé•·é‡ŽēœŒęž—ę„­ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆå”ä¼š'),
(154824, 120047, 'en', 'name', 'Michigan Geological Survey'),
(154825, 120048, 'en', 'name', 'National Diet Library'),
(154826, 120048, 'ja', 'name', 'å›½ē«‹å›½ä¼šå›³ę›øé¤Ø'),
(154827, 120049, 'de', 'name', 'Staatliche Akademie der Bildenden Künste Stuttgart'),
(154828, 120049, 'en', 'name', 'State Academy of Fine Arts in Stuttgart'),
(154829, 120050, 'no_lang_code', 'name', 'Research and Testing Institute Plzen (Czechia)'),
(154830, 120050, 'cs', 'name', 'Výzkumný a zkuŔební ústav Plzeň'),
(154831, 120051, 'en', 'name', 'The Forestry Commission of Ghana'),
(154832, 120052, 'en', 'name', 'Centre for International Forestry Research'),
(154833, 120053, 'en', 'name', 'Rehasport Clinic'),
(154834, 120054, 'en', 'name', 'Hartebeesthoek Radio Astronomy Observatory'),
(154835, 120055, 'en', 'name', 'Else Krƶner Fresenius Center for Optogenetic Therapies'),
(154836, 120055, 'de', 'name', 'Else Kröner Fresenius Zentrum für Optogenetische Therapien'),
(154837, 120056, 'en', 'name', 'Japan Newspaper Publishers and Editors Association'),
(154838, 120056, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę–°čžå”ä¼š'),
(154839, 120057, 'en', 'name', 'County General Hospital Požega'),
(154840, 120057, 'hr', 'name', 'Opća županijska bolnica Požega'),
(154841, 120058, 'en', 'name', 'San Damaso Ecclesiastical University'),
(154842, 120058, 'es', 'name', 'Universidad EclesiƔstica San DƔmaso'),
(154843, 120059, 'no_lang_code', 'name', 'IMA (Italy)'),
(154844, 120060, 'en', 'name', 'Women''s University in Africa'),
(154845, 120061, 'en', 'name', 'Japan Solar System Development Association'),
(154846, 120061, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚½ćƒ¼ćƒ©ćƒ¼ć‚·ć‚¹ćƒ†ćƒ ęŒÆčˆˆå”ä¼š'),
(154847, 120062, 'en', 'name', 'Washington State Department of Agriculture'),
(154848, 120063, 'no_lang_code', 'name', 'Oticon (Denmark)'),
(154849, 120064, 'en', 'name', 'Gas Turbine Society of Japan'),
(154850, 120064, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¬ć‚¹ć‚æćƒ¼ćƒ“ćƒ³å­¦ä¼š'),
(154851, 120065, 'en', 'name', 'Shizuoka Prefectural Industrial Promotion Foundation'),
(154852, 120065, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé™å²”ēœŒē”£ę„­ęŒÆčˆˆč²”å›£'),
(154853, 120066, 'es', 'name', 'Universidad de Massachusetts Amherst'),
(154854, 120066, 'en', 'name', 'University of Massachusetts Amherst'),
(154855, 120066, 'fr', 'name', 'UniversitƩ du massachusetts Ơ amherst'),
(154856, 120067, 'en', 'name', 'Datalys Center for Sports Injury Research and Prevention'),
(154857, 120068, 'id', 'name', 'Sekolah Tinggi Teologi Tabgha Batam'),
(154858, 120069, 'no_lang_code', 'name', 'XLAB (Slovenia)'),
(154859, 120070, 'es', 'name', 'Universidad Nacional Experimental de los Llanos Centrales Rómulo Gallegos'),
(154860, 120071, 'es', 'name', 'Instituto de Educación Media Superior de la Ciudad de México'),
(154861, 120072, 'en', 'name', 'Institute of Lithuanian Literature and Folklore'),
(154862, 120072, 'lt', 'name', 'Lietuvių Literatūros ir Tautosakos Institutas'),
(154863, 120073, 'en', 'name', 'Japan Prefabricated Construction Suppliers and Manufacturers Association'),
(154864, 120073, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ—ćƒ¬ćƒćƒ–å»ŗēÆ‰å”ä¼š'),
(154865, 120074, 'en', 'name', 'Human Sciences Institute in Brittany'),
(154866, 120074, 'es', 'name', 'Instituto de Ciencias Humanas en BretaƱa'),
(154867, 120074, 'fr', 'name', 'Maison des sciences humaines et sociales en Bretagne'),
(154868, 120075, 'en', 'name', 'Belhaven University'),
(154869, 120076, 'id', 'name', 'Universitas Islam Al-Aziziyah Indonesia'),
(154870, 120077, 'en', 'name', 'Japanese Ophthalmological Society'),
(154871, 120077, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ēœ¼ē§‘å­¦ä¼š'),
(154872, 120078, 'en', 'name', 'Kentucky Geological Survey'),
(154873, 120079, 'es', 'name', 'Real Academia Galega de Ciencias'),
(154874, 120079, 'ca', 'name', 'Reial AcadĆØmia Gallega de CiĆØncies'),
(154875, 120080, 'en', 'name', 'Global Guardian Trust'),
(154876, 120080, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč‡Ŗē„¶č³‡ęŗäæå…Øå”ä¼š'),
(154877, 120081, 'en', 'name', 'Kanazawa Education Plaza'),
(154878, 120081, 'ja', 'name', 'é‡‘ę²¢åø‚ę•™č‚²ćƒ—ćƒ©ć‚¶'),
(154879, 120082, 'en', 'name', 'Piedmont College'),
(154880, 120083, 'en', 'name', 'National Information Technology Agency'),
(154881, 120084, 'en', 'name', 'Massachusetts Geological Survey'),
(154882, 120085, 'no_lang_code', 'name', 'iCons'),
(154883, 120086, 'en', 'name', 'IHA Hematology Oncology Consultants'),
(154884, 120087, 'en', 'name', 'Geographical Institute of Burundi'),
(154885, 120087, 'fr', 'name', 'Institut GƩographique du Burundi'),
(154886, 120088, 'hr', 'name', 'MUP-VeleučiliŔte kriminalistike i javne sigurnosti'),
(154887, 120088, 'en', 'name', 'University of Applied Sciences in Criminal Investigation and Public Security'),
(154888, 120089, 'en', 'name', 'International Hospitality and Conference Service Association'),
(154889, 120089, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›äŗ¤ęµć‚µćƒ¼ćƒ“ć‚¹å”ä¼š'),
(154890, 120090, 'no_lang_code', 'name', 'Hatyai University'),
(154891, 120090, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø«ąø²ąø”ą¹ƒąø«ąøą¹ˆ'),
(154892, 120091, 'pt', 'name', 'Infarmed'),
(154893, 120092, 'en', 'name', 'Association of national social insurance society'),
(154894, 120092, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ē¤¾ä¼šäæé™ŗå”ä¼šé€£åˆä¼š'),
(154895, 120093, 'en', 'name', 'Tokyo Biomarker Innovation Research Association'),
(154896, 120093, 'ja', 'name', 'ę±äŗ¬ćƒć‚¤ć‚Ŗćƒžćƒ¼ć‚«ćƒ¼ćƒ»ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(154897, 120094, 'en', 'name', 'Kyoto YMCA'),
(154898, 120094, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½YMCA'),
(154899, 120095, 'en', 'name', 'International Crane Foundation'),
(154900, 120096, 'en', 'name', 'Siemens (Türkiye)'),
(154901, 120097, 'en', 'name', 'Japanese Psychiatric Nurses Association'),
(154902, 120097, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē²¾ē„žē§‘ēœ‹č­·å”ä¼š'),
(154903, 120098, 'bs', 'name', 'SveučiliŔte Vitez'),
(154904, 120098, 'no_lang_code', 'name', 'Univerzitet Vitez'),
(154905, 120099, 'en', 'name', 'JDSG College'),
(154906, 120099, 'bn', 'name', 'ą¦œą§‡. ঔি. ą¦ą¦š. জি. ą¦•ą¦²ą§‡ą¦œ'),
(154907, 120099, 'as', 'name', 'ą¦¶ą§ą§°ą§€ ą¦¶ą§ą§°ą§€ ą¦Æą§‹ą¦—ą¦¾ą¦Øą¦Øą§ą¦¦ দেৱ ą¦øą¦¤ą§ą§°ą¦¾ą¦§ą¦æą¦•ą¦¾ą§° ą¦—ą§‹ą¦øą§ą§±ą¦¾ą¦®ą§€ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(154908, 120100, 'en', 'name', 'Nara Junior College of Fine Arts'),
(154909, 120100, 'ja', 'name', 'å„ˆč‰ÆčŠøč”“ēŸ­ęœŸå¤§å­¦'),
(154910, 120101, 'en', 'name', 'Energy Institute Hrvoje Požar'),
(154911, 120102, 'en', 'name', 'Japan Magazine Publishers Association'),
(154912, 120102, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›‘čŖŒå”ä¼š'),
(154913, 120103, 'en', 'name', 'Tennessee Department of Environment and Conservation'),
(154914, 120104, 'en', 'name', 'Water Integrity Network'),
(154915, 120105, 'en', 'name', 'Mississippi Office of Geology'),
(154916, 120106, 'en', 'name', 'Erie Family Health Center'),
(154917, 120107, 'en', 'name', 'Royal University for Women'),
(154918, 120107, 'ar', 'name', 'الجامعة Ų§Ł„Ł…Ł„ŁƒŁŠŲ© للبنات'),
(154919, 120108, 'en', 'name', 'Oceana'),
(154920, 120109, 'en', 'name', 'Missouri Geological Survey'),
(154921, 120110, 'en', 'name', 'Sendai Tourism, Convention and International Association'),
(154922, 120110, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä»™å°č¦³å…‰å›½éš›å”ä¼š'),
(154923, 120111, 'en', 'name', 'Amnesty International Japan'),
(154924, 120111, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗć‚¢ćƒ ćƒć‚¹ćƒ†ć‚£ćƒ»ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«ę—„ęœ¬'),
(154925, 120112, 'en', 'name', 'JAL Foundation'),
(154926, 120112, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗJAL貔団'),
(154927, 120113, 'en', 'name', 'Ministry of Health'),
(154928, 120113, 'so', 'name', 'Wasaaradda Caafimaadka'),
(154929, 120113, 'ar', 'name', 'وزارة الصحة'),
(154930, 120114, 'en', 'name', 'Military Communication Institute'),
(154931, 120115, 'en', 'name', 'Kibuye Hope Hospital'),
(154932, 120116, 'en', 'name', 'Kansai Golf Union - Green Section Research Center'),
(154933, 120116, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æć‚°ćƒŖćƒ¼ćƒ³ē ”ē©¶ę‰€'),
(154934, 120117, 'en', 'name', 'Japan Fashion Color Association'),
(154935, 120117, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęµč”Œč‰²å”ä¼š'),
(154936, 120118, 'en', 'name', 'World Society of Sustainable Energy Technologies'),
(154937, 120119, 'en', 'name', 'Japan Users Association of Information Systems'),
(154938, 120119, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęƒ…å ±ć‚·ć‚¹ćƒ†ćƒ ćƒ»ćƒ¦ćƒ¼ć‚¶ćƒ¼å”ä¼š'),
(154939, 120120, 'en', 'name', 'Charleston School of Law'),
(154940, 120121, 'en', 'name', 'Nakasone Peacce Institute'),
(154941, 120121, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­ę›½ę ¹åŗ·å¼˜äø–ē•Œå¹³å’Œē ”ē©¶ę‰€'),
(154942, 120122, 'en', 'name', 'Japan Marine Recreation Association'),
(154943, 120122, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęµ·ę“‹ćƒ¬ć‚øćƒ£ćƒ¼å®‰å…Øćƒ»ęŒÆčˆˆå”ä¼š'),
(154944, 120123, 'es', 'name', 'Facultad de TeologĆ­a Pontificia y Civil de Lima'),
(154945, 120124, 'en', 'name', 'Tulsa Community College'),
(154946, 120125, 'en', 'name', 'Osaka Association of Radiological Technologists'),
(154947, 120125, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜ŖåŗœčØŗē™‚ę”¾å°„ē·šęŠ€åø«ä¼š'),
(154948, 120126, 'en', 'name', 'Japan Foundation of Dental Promotion'),
(154949, 120126, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę­Æē§‘åŒ»ē™‚ęŒÆčˆˆč²”å›£'),
(154950, 120127, 'en', 'name', 'Far-western University'),
(154951, 120127, 'ne', 'name', 'ą¤øą„ą¤¦ą„‚ą¤°ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(154952, 120128, 'en', 'name', 'Chubu Electrical Safety Services Foundation'),
(154953, 120128, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäø­éƒØé›»ę°—äæå®‰å”ä¼š'),
(154954, 120129, 'en', 'name', 'MACHINAMI Foundation'),
(154955, 120129, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä½å®…ē”Ÿē”£ęŒÆčˆˆč²”å›£'),
(154956, 120130, 'en', 'name', 'Higashikurume Medical Association'),
(154957, 120130, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę±ä¹…ē•™ē±³åø‚åŒ»åø«ä¼š'),
(154958, 120131, 'en', 'name', 'Saint Joseph''s College of Maine'),
(154959, 120132, 'en', 'name', 'Michigan Department of Environment, Great Lakes, and Energy'),
(154960, 120133, 'el', 'name', 'Sygklisi Astiki mi Kerdoskopiki Etaireia'),
(154961, 120134, 'no_lang_code', 'name', 'Kanazawa Gakuin University'),
(154962, 120134, 'ja', 'name', '金沢学院大学'),
(154963, 120135, 'en', 'name', 'Tsuru University'),
(154964, 120135, 'ja', 'name', 'éƒ½ē•™ę–‡ē§‘å¤§å­¦'),
(154965, 120136, 'en', 'name', 'Hokkaido Sports Culture Association'),
(154966, 120136, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“ä½“č‚²ę–‡åŒ–å”ä¼š'),
(154967, 120137, 'no_lang_code', 'name', 'Absa Bank (South Africa)'),
(154968, 120138, 'id', 'name', 'Universitas Kristen Immanuel'),
(154969, 120139, 'en', 'name', 'Ecdysis Foundation'),
(154970, 120140, 'pt', 'name', 'Instituto Superior de CiĆŖncias Empresariais e do Turismo'),
(154971, 120141, 'it', 'name', 'Fondazione Golgi Cenci'),
(154972, 120142, 'en', 'name', 'IGAD Centre for Pastoral Areas and Livestock Development'),
(154973, 120143, 'en', 'name', 'Japan Dust Control Association'),
(154974, 120143, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ€ć‚¹ćƒˆć‚³ćƒ³ćƒˆćƒ­ćƒ¼ćƒ«å”ä¼š'),
(154975, 120144, 'en', 'name', 'Japan Biscuit Association'),
(154976, 120144, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ćƒ“ć‚¹ć‚±ćƒƒćƒˆå”ä¼š'),
(154977, 120145, 'en', 'name', 'Japan Spina Bifida & Hydrocephalus Research Foundation'),
(154978, 120145, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äŗŒåˆ†č„Šę¤Žćƒ»ę°“é ­ē—‡ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(154979, 120146, 'es', 'name', 'Laboratorio de GeotecnologĆ­as'),
(154980, 120147, 'en', 'name', 'Aikikai Foundation'),
(154981, 120147, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåˆę°—ä¼š'),
(154982, 120148, 'en', 'name', 'Asian Disaster Preparedness Center'),
(154983, 120149, 'en', 'name', 'Village Health Works'),
(154984, 120150, 'en', 'name', 'Japan Greenhouse Horticulture Association'),
(154985, 120150, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę–½čØ­åœ’čŠøå”ä¼š'),
(154986, 120151, 'tr', 'name', 'Türkiye Sağlık Enstitüleri Başkanlığı'),
(154987, 120152, 'no_lang_code', 'name', 'Adimab (United States)'),
(154988, 120153, 'en', 'name', 'Slovak National Museum'),
(154989, 120154, 'en', 'name', 'Thermoplastic Composites Research Center'),
(154990, 120155, 'en', 'name', 'Japan Hair Science Association'),
(154991, 120155, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęÆ›é«Ŗē§‘å­¦å”ä¼š'),
(154992, 120156, 'en', 'name', 'Tran Dai Nghia University'),
(154993, 120156, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Trįŗ§n ĐẔi NghÄ©a'),
(154994, 120157, 'no_lang_code', 'name', 'Alphabet (United States)'),
(154995, 120158, 'no_lang_code', 'name', 'Intravacc (Netherlands)'),
(154996, 120159, 'en', 'name', 'Norwegian Mapping Authority'),
(154997, 120160, 'en', 'name', 'University Canada West'),
(154998, 120161, 'en', 'name', 'Wellspring University'),
(154999, 120162, 'hr', 'name', 'Agencija za lijekove i medicinske proizvode. Sva prava pridržana'),
(155000, 120162, 'en', 'name', 'Agency for Medicinal Products and Medical Devices of Croatia'),
(155001, 120163, 'en', 'name', 'Ishikawa Foundation For International Exchange'),
(155002, 120163, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗēŸ³å·ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(155003, 120164, 'en', 'name', 'Kampo Foundation'),
(155004, 120164, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‹ć‚“ć½č²”å›£'),
(155005, 120165, 'en', 'name', 'Chiyoda Mutual Life Foundation'),
(155006, 120165, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåƒä»£ē”°å„åŗ·é–‹ē™ŗäŗ‹ę„­å›£'),
(155007, 120166, 'en', 'name', 'University of the People'),
(155008, 120167, 'en', 'name', 'Academician Stepan Demianchuk International University Of Economics and Humanities'),
(155009, 120167, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ економіко-Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Дтепана Š”ŠµŠ¼ā€™ŃŠ½Ń‡ŃƒŠŗŠ°'),
(155010, 120168, 'en', 'name', 'Japan Electric Measuring Instruments Manufacturers'' Association'),
(155011, 120168, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę°—čØˆęø¬å™Øå·„ę„­ä¼š'),
(155012, 120169, 'no_lang_code', 'name', 'BenevolentAI (United Kingdom)'),
(155013, 120170, 'en', 'name', 'JAPAN Association of Botanical Gardens'),
(155014, 120170, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©åœ’å”ä¼š'),
(155015, 120171, 'en', 'name', 'Louisiana State University'),
(155016, 120171, 'es', 'name', 'Universidad Estatal de Luisiana'),
(155017, 120171, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Louisiane'),
(155018, 120172, 'es', 'name', 'Instituto Tecnológico de la Energía'),
(155019, 120173, 'en', 'name', 'Association of Building Engineering and Equipment'),
(155020, 120173, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå»ŗēÆ‰čØ­å‚™ē¶œåˆå”ä¼š'),
(155021, 120174, 'en', 'name', 'Ishikawa Prefectural Nursing University'),
(155022, 120174, 'ja', 'name', 'ēŸ³å·ēœŒē«‹ēœ‹č­·å¤§å­¦'),
(155023, 120175, 'no', 'name', 'Norsk institutt for bƦrekraftsforskning AS'),
(155024, 120175, 'en', 'name', 'Norwegian Institute for Sustainability Research'),
(155025, 120176, 'en', 'name', 'Gnessin Russian Academy of Music'),
(155026, 120176, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø имени Гнесиных'),
(155027, 120177, 'en', 'name', 'African Wildlife Foundation'),
(155028, 120178, 'en', 'name', 'Lukenya University'),
(155029, 120179, 'en', 'name', 'Beijing Institute for General Artificial Intelligence'),
(155030, 120179, 'zh', 'name', 'åŒ—äŗ¬é€šē”Øäŗŗå·„ę™ŗčƒ½ē ”ē©¶é™¢'),
(155031, 120180, 'no_lang_code', 'name', 'AbCellera (Canada)'),
(155032, 120181, 'en', 'name', 'Foundation for Transport and Energy Research and Development'),
(155033, 120182, 'en', 'name', 'Ponce Health Sciences University, St. Louis'),
(155034, 120183, 'en', 'name', 'Vietnam Institute of Research and Development Clinical Microbiology'),
(155035, 120183, 'vi', 'name', 'Viện NghiĆŖn Cứu VĆ  PhĆ”t Triển Vi Sinh LĆ¢m SĆ ng Việt Nam'),
(155036, 120184, 'en', 'name', 'S.S. Research Foundation'),
(155037, 120185, 'pt', 'name', 'Escola Superior de Enfermagem de São José de Cluny'),
(155038, 120186, 'en', 'name', 'Open Access Scholarly Publishing Association'),
(155039, 120187, 'en', 'name', 'Japan federation of landscape contractors'),
(155040, 120187, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é€ åœ’ēµ„åˆé€£åˆä¼š'),
(155041, 120188, 'fr', 'name', 'Centre Hospitalier de Wallonie Picarde'),
(155042, 120189, 'en', 'name', 'The Association of Physical Fitness Promotion & Guidance'),
(155043, 120189, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä½“åŠ›ć¤ćć‚ŠęŒ‡å°Žå”ä¼š'),
(155044, 120190, 'en', 'name', 'Institute of Labor Education and Culture'),
(155045, 120190, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę•™č‚²ę–‡åŒ–å”ä¼š'),
(155046, 120191, 'en', 'name', 'THE Japan Automobile Tyre Manufacturers Association, Inc.'),
(155047, 120191, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»Šć‚æć‚¤ćƒ¤å”ä¼š'),
(155048, 120192, 'en', 'name', 'Kanagawa Arts Foundation'),
(155049, 120192, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žå„ˆå·čŠøč”“ę–‡åŒ–č²”å›£'),
(155050, 120193, 'en', 'name', 'National Library Service Malawi'),
(155051, 120194, 'en', 'name', 'Kenya Institute of Special Education'),
(155052, 120195, 'en', 'name', 'Batchelor Institute of Indigenous Tertiary Education'),
(155053, 120196, 'en', 'name', 'Labor Management Education Center'),
(155054, 120196, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåŠ“å‹™ē®”ē†ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(155055, 120197, 'lv', 'name', 'Agroresursu un ekonomikas institūts'),
(155056, 120198, 'en', 'name', 'Elms College'),
(155057, 120199, 'en', 'name', 'British Association for Counselling and Psychotherapy'),
(155058, 120200, 'en', 'name', 'Nagano Association of Medical Technologists'),
(155059, 120200, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé•·é‡ŽēœŒč‡ØåŗŠę¤œęŸ»ęŠ€åø«ä¼š'),
(155060, 120201, 'no_lang_code', 'name', 'Quantify Research (Sweden)'),
(155061, 120202, 'no', 'name', 'Stavanger Kommune'),
(155062, 120203, 'de', 'name', 'Bundesgesellschaft für Endlagerung'),
(155063, 120204, 'en', 'name', 'Paul Mellon Centre'),
(155064, 120205, 'en', 'name', 'Food and Drugs Authority'),
(155065, 120206, 'en', 'name', 'Dallas Theological Seminary'),
(155066, 120207, 'it', 'name', 'Ospedale di Stato della Repubblica di San Marino'),
(155067, 120208, 'en', 'name', 'Central-Asian Institute for Applied Geosciences'),
(155068, 120208, 'ky', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Азиатский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГных ИсслеГований Земли'),
(155069, 120209, 'en', 'name', 'Japan Eye Bank Association'),
(155070, 120209, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¢ć‚¤ćƒćƒ³ć‚Æå”ä¼š'),
(155071, 120210, 'pt', 'name', 'Centro Nacional de Artesanato'),
(155072, 120210, 'en', 'name', 'National Centre for Art, Crafts and Design'),
(155073, 120211, 'fr', 'name', 'Bureau National d’Études pour le DĆ©veloppement Rural'),
(155074, 120211, 'en', 'name', 'National Bureau of Studies for Rural Development'),
(155075, 120212, 'en', 'name', 'Japan Interior Industry Association'),
(155076, 120212, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗć‚¤ćƒ³ćƒ†ćƒŖć‚¢ē”£ę„­å”ä¼š'),
(155077, 120213, 'de', 'name', 'Evangelische Hochschule Freiburg'),
(155078, 120213, 'en', 'name', 'Protestant University of Applied Sciences Freiburg'),
(155079, 120214, 'en', 'name', 'Mississippi Department of Environmental Quality'),
(155080, 120215, 'en', 'name', 'Akre University for Applied Sciences'),
(155081, 120216, 'en', 'name', 'Japan Meat Grading Association'),
(155082, 120216, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿč‚‰ę ¼ä»˜å”ä¼š'),
(155083, 120217, 'en', 'name', 'Japanese Society for Medical and Biological Engineering'),
(155084, 120217, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”Ÿä½“åŒ»å·„å­¦ä¼š'),
(155085, 120218, 'en', 'name', 'Shanghai Key Laboratory of Computer Software Testing and Evaluating'),
(155086, 120218, 'zh', 'name', 'äøŠęµ·åø‚č®”ē®—ęœŗč½Æä»¶čÆ„ęµ‹é‡ē‚¹å®žéŖŒå®¤'),
(155087, 120219, 'en', 'name', 'Archaeological Museum in Poznań'),
(155088, 120219, 'pl', 'name', 'Muzeum Archeologiczne w Poznaniu'),
(155089, 120220, 'en', 'name', 'Cornerstone University'),
(155090, 120221, 'en', 'name', 'University of Education and Entrepreneurship'),
(155091, 120222, 'en', 'name', 'Indiana Institute of Technology'),
(155092, 120223, 'no_lang_code', 'name', 'DECTRIS (Switzerland)'),
(155093, 120224, 'en', 'name', 'Japan SOHO Association'),
(155094, 120224, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬SOHO協会'),
(155095, 120225, 'no_lang_code', 'name', 'Mahachulalongkornrajavidyalaya University'),
(155096, 120225, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø”ąø«ąø²ąøˆąøøąø¬ąø²ąø„ąø‡ąøąø£ąø“ąø£ąø²ąøŠąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(155097, 120226, 'en', 'name', 'Rural Culture Association Japan'),
(155098, 120226, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč¾²å±±ę¼ę‘ę–‡åŒ–å”ä¼š'),
(155099, 120227, 'en', 'name', 'Global Health Drug Discovery Institute'),
(155100, 120227, 'zh', 'name', 'å…Øēƒå„åŗ·čÆē‰©ē ”å‘äø­åæƒ'),
(155101, 120228, 'en', 'name', 'Center for Digital Antiquity'),
(155102, 120229, 'no_lang_code', 'name', 'Xilio Therapeutics (United States)'),
(155103, 120230, 'en', 'name', 'Japan Foundation for Regional Vitalization'),
(155104, 120230, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸē·åˆę•“å‚™č²”å›£'),
(155105, 120231, 'no_lang_code', 'name', 'Stam (Italy)'),
(155106, 120232, 'en', 'name', 'LCC International University'),
(155107, 120232, 'lt', 'name', 'LCC tarptautinis universitetas'),
(155108, 120233, 'fr', 'name', 'Ecole SupƩrieure d''Agronomie Mostaganem'),
(155109, 120234, 'no_lang_code', 'name', 'Celon Pharma (Poland)'),
(155110, 120235, 'en', 'name', 'Japan Fertilizer and Feed Inspection Association'),
(155111, 120235, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č‚„ē³§ę¤œå®šå”ä¼š'),
(155112, 120236, 'nl', 'name', 'Universiteit Twente'),
(155113, 120236, 'en', 'name', 'University of Twente'),
(155114, 120237, 'nl', 'name', 'Hotelschool The Hague'),
(155115, 120238, 'en', 'name', 'National Environment Management Authority'),
(155116, 120239, 'es', 'name', 'Universidad YacambĆŗ'),
(155117, 120240, 'en', 'name', 'Association for Toyonaka Multicultural Symbiosis'),
(155118, 120240, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćØć‚ˆćŖć‹å›½éš›äŗ¤ęµå”ä¼š'),
(155119, 120241, 'de', 'name', 'Forschungsinstitut für Leder und Kunststoffbahnen'),
(155120, 120242, 'en', 'name', 'Carlow University'),
(155121, 120243, 'en', 'name', 'The Real Estate Transaction Promotion Center'),
(155122, 120243, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäøå‹•ē”£ęµé€šęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(155123, 120244, 'en', 'name', 'Japan Dental Technologists Association'),
(155124, 120244, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę­Æē§‘ęŠ€å·„å£«ä¼š'),
(155125, 120245, 'en', 'name', 'Japan Die&Mold Industry Association'),
(155126, 120245, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‡‘åž‹å·„ę„­ä¼š'),
(155127, 120246, 'en', 'name', 'Japan Kennel Club'),
(155128, 120246, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚øćƒ£ćƒ‘ćƒ³ć‚±ćƒćƒ«ć‚Æćƒ©ćƒ–'),
(155129, 120247, 'en', 'name', 'American University of Phnom Penh'),
(155130, 120247, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž¶įž˜įŸįžšįž·įž€įž¶įŸ†įž„įž—įŸ’įž“įŸ†įž–įŸįž‰'),
(155131, 120248, 'en', 'name', 'Columbia Basin College'),
(155132, 120249, 'en', 'name', 'Economic Policy Research Centre'),
(155133, 120250, 'nl', 'name', 'Ziekenhuis Nij Smellinghe'),
(155134, 120251, 'en', 'name', 'Angolan Institute of Standardization and Quality'),
(155135, 120251, 'pt', 'name', 'Instituto Angolano de Normalização e Qualidade'),
(155136, 120252, 'en', 'name', 'International University of Management'),
(155137, 120253, 'en', 'name', 'Jefferson State Community College'),
(155138, 120254, 'no_lang_code', 'name', 'Aerogen (Ireland)'),
(155139, 120255, 'en', 'name', 'Kagoshima Tokusyukai Hospital'),
(155140, 120255, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šé¹æå…å³¶å¾³ę“²ä¼šē—…é™¢'),
(155141, 120256, 'en', 'name', 'Turkish Medical Association'),
(155142, 120256, 'tr', 'name', 'Türk Tabipleri Birliği'),
(155143, 120257, 'en', 'name', 'Njawara Agricultural Training Centre, Gambia'),
(155144, 120258, 'en', 'name', 'Tougaloo College'),
(155145, 120259, 'no_lang_code', 'name', 'Rapt Therapeutics (United States)'),
(155146, 120260, 'es', 'name', 'Universidad Da Vinci'),
(155147, 120261, 'en', 'name', 'Family Problems Information Center'),
(155148, 120261, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå®¶åŗ­å•é”Œęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(155149, 120262, 'en', 'name', 'Oxford Institute for Energy Studies'),
(155150, 120263, 'en', 'name', 'Russian National Public Library for Science and Technology'),
(155151, 120263, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŃƒŠ±Š»ŠøŃ‡Š½Š°Ń Š½Š°ŃƒŃ‡Š½Š¾-Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń библиотека'),
(155152, 120264, 'es', 'name', 'Centro Tecnológico Nacional de la Conserva y Alimentación'),
(155153, 120265, 'en', 'name', 'Establishment of Tropical Marine Ecological Research'),
(155154, 120265, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē†±åøÆęµ·ę“‹ē”Ÿę…‹ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(155155, 120266, 'en', 'name', 'Japan Veterinary Products Association'),
(155156, 120266, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©ē”ØåŒ»č–¬å“å”ä¼š'),
(155157, 120267, 'en', 'name', 'Soroti University'),
(155158, 120268, 'no_lang_code', 'name', 'Advanced Cooling Technologies (United States)'),
(155159, 120269, 'en', 'name', 'CAF – Development Bank of Latin America'),
(155160, 120269, 'es', 'name', 'Corporacion Andina de Fomento– Banco de Desarrollo de AmĆ©rica Latina'),
(155161, 120270, 'es', 'name', 'Universidad Católica Santa María La Antigua'),
(155162, 120271, 'en', 'name', 'The People''s Hospital of Guangxi Zhuang Autonomous Region'),
(155163, 120271, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(155164, 120272, 'de', 'name', 'Institut für Ressourceneffizienz und Energiestrategien'),
(155165, 120272, 'en', 'name', 'Institute for Resource Efficiency and Energy Strategies'),
(155166, 120273, 'en', 'name', 'Sapporo Construction Association'),
(155167, 120273, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęœ­å¹Œå»ŗčØ­ę„­å”ä¼š'),
(155168, 120274, 'en', 'name', 'Geothermal Development Company'),
(155169, 120275, 'es', 'name', 'Universidad del Valle de Puebla'),
(155170, 120276, 'en', 'name', 'SUNY College of Environmental Science and Forestry'),
(155171, 120277, 'en', 'name', 'Somaiya Vidyavihar University'),
(155172, 120278, 'en', 'name', 'San Diego Public Library'),
(155173, 120279, 'pt', 'name', 'Instituto do Emprego e Formação Profissional'),
(155174, 120280, 'en', 'name', 'IntraHealth International'),
(155175, 120281, 'en', 'name', 'The Shinjuku Foundation for Creation of Future'),
(155176, 120281, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę–°å®æęœŖę„å‰µé€ č²”å›£'),
(155177, 120282, 'en', 'name', 'Japan Construction Engineers'' Association'),
(155178, 120282, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬å»ŗčØ­ęŠ€č”“å”ä¼š'),
(155179, 120283, 'en', 'name', 'Regional Centre for Energy Policy Research'),
(155180, 120283, 'hu', 'name', 'RegionÔlis EnergiagazdasÔgi Kutatóközpont (Hungary)'),
(155181, 120284, 'en', 'name', 'Global Urgent and Advanced Research and Development'),
(155182, 120285, 'en', 'name', 'The Japan Society of Plasma Science and Nuclear Fusion Research'),
(155183, 120285, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ—ćƒ©ć‚ŗćƒžćƒ»ę øčžåˆå­¦ä¼š'),
(155184, 120286, 'no_lang_code', 'name', 'Avantium (Netherlands)'),
(155185, 120287, 'en', 'name', 'Japan Society of Erosion Control Engineering'),
(155186, 120287, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē ‚é˜²å­¦ä¼š'),
(155187, 120288, 'pt', 'name', 'Escola Superior de Tecnologia e Gestão'),
(155188, 120289, 'en', 'name', 'Hamanasu Foundation'),
(155189, 120289, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćÆć¾ćŖć™č²”å›£'),
(155190, 120290, 'en', 'name', 'ArtCenter College of Design'),
(155191, 120291, 'en', 'name', 'Bank of Cyprus Oncology Center'),
(155192, 120291, 'el', 'name', 'Ογκολογικό ĪšĪ­Ī½Ļ„ĻĪæ Τράπεζας ĪšĻĻ€ĻĪæĻ…'),
(155193, 120292, 'no_lang_code', 'name', 'Alverno College'),
(155194, 120293, 'nl', 'name', 'Accare'),
(155195, 120294, 'en', 'name', 'The Association for Promotion of Public Local Information and Communication'),
(155196, 120294, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½åœ°åŸŸęƒ…å ±åŒ–ęŽØé€²å”ä¼š'),
(155197, 120295, 'no_lang_code', 'name', 'Terra Quantum (Switzerland)'),
(155198, 120296, 'en', 'name', 'Gulf Organisation for Research & Development'),
(155199, 120297, 'en', 'name', 'Kyoto Victim Support Center'),
(155200, 120297, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½ēŠÆē½Ŗč¢«å®³č€…ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(155201, 120298, 'en', 'name', 'NXAI GmbH'),
(155202, 120298, 'no_lang_code', 'name', 'NXAI GmbH (Austria)'),
(155203, 120299, 'en', 'name', 'Michael J. Fox Foundation'),
(155204, 120300, 'ga', 'name', 'Met Ɖireann'),
(155205, 120301, 'en', 'name', 'The Japan-Pakistan Association'),
(155206, 120301, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ»ćƒ‘ć‚­ć‚¹ć‚æćƒ³å”ä¼š'),
(155207, 120302, 'en', 'name', 'The Fertilization Research Foundation'),
(155208, 120302, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč‚„ę–™ē§‘å­¦ē ”ē©¶ę‰€'),
(155209, 120303, 'en', 'name', 'Track2Training'),
(155210, 120304, 'en', 'name', 'Japan Wood-Products Information and Research Center'),
(155211, 120304, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęœØęē·åˆęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(155212, 120305, 'en', 'name', 'William J. Hughes Technical Center for Advanced Aerospace'),
(155213, 120306, 'fr', 'name', 'ISTOM - Ɖcole supĆ©rieure d''agro-dĆ©veloppement international'),
(155214, 120307, 'no_lang_code', 'name', 'AVEVA (Sweden)'),
(155215, 120308, 'no_lang_code', 'name', 'Wardell Armstrong (United Kingdom)'),
(155216, 120309, 'en', 'name', 'Tanzania Bureau of Standards'),
(155217, 120310, 'en', 'name', 'Ishigami Memorial Institute of Medicine'),
(155218, 120310, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗēŸ³ē„žē“€åæµåŒ»å­¦ē ”ē©¶ę‰€'),
(155219, 120311, 'es', 'name', 'Centro Tecnológico del Mueble y la Madera de la Región de Murcia'),
(155220, 120311, 'en', 'name', 'Technological Centre of Furniture and Wood of the Region of Murcia'),
(155221, 120312, 'es', 'name', 'Universidad TƩcnica Privada Cosmos'),
(155222, 120313, 'en', 'name', 'Ginreikai'),
(155223, 120313, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗéŠ€éˆ“ä¼š'),
(155224, 120314, 'no_lang_code', 'name', 'Praj (India)'),
(155225, 120315, 'en', 'name', 'Higher Institute of Health Sciences of Djibouti'),
(155226, 120315, 'fr', 'name', 'Institut SupƩrieur des Sciences de la SantƩ'),
(155227, 120316, 'es', 'name', 'Universidad de Illinois en Urbana-Champaign'),
(155228, 120316, 'en', 'name', 'University of Illinois Urbana-Champaign'),
(155229, 120316, 'fr', 'name', 'UniversitƩ de l''Illinois Ơ Urbana-Champaign'),
(155230, 120317, 'en', 'name', 'Ocean Alliance'),
(155231, 120318, 'en', 'name', 'Center for Documentation of Cultural and Natural Heritage'),
(155232, 120318, 'ar', 'name', 'Ł…Ų±ŁƒŲ² ŲŖŁˆŲ«ŁŠŁ‚ التراث Ų§Ł„Ų­Ų¶Ų§Ų±ŁŠ ŁˆŲ§Ł„Ų·ŲØŁŠŲ¹ŁŠ'),
(155233, 120319, 'en', 'name', 'Japan Industrial Counselors Association'),
(155234, 120319, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£ę„­ć‚«ć‚¦ćƒ³ć‚»ćƒ©ćƒ¼å”ä¼š'),
(155235, 120320, 'en', 'name', 'Japan Electrical Construction Association'),
(155236, 120320, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»čØ­å·„ę„­å”ä¼š'),
(155237, 120321, 'en', 'name', 'Maine Department of Agriculture Conservation and Forestry'),
(155238, 120322, 'en', 'name', 'Japan Telephone Association'),
(155239, 120322, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬é›»č©±å–å¼•ę„­å”ä¼š'),
(155240, 120323, 'en', 'name', 'Washington Department of Social and Health Services'),
(155241, 120324, 'en', 'name', 'Florida Geological Survey'),
(155242, 120325, 'es', 'name', 'Asepeyo Hospital Sant Cugat'),
(155243, 120326, 'en', 'name', 'The Japan Society of Seismic Isolation'),
(155244, 120326, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…éœ‡ę§‹é€ å”ä¼š'),
(155245, 120327, 'en', 'name', 'York Central Hospital'),
(155246, 120328, 'en', 'name', 'Khesar Gyalpo University of Medical Sciences of Bhutan'),
(155247, 120328, 'dz', 'name', 'གེ་སར་རྒྱལ་པོ་གསོ་རིག་གཙནག་ལག་སློབ་སྔེའི'),
(155248, 120329, 'en', 'name', 'Ujioubaku Hospital'),
(155249, 120329, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę „ä»ä¼šå®‡ę²»ćŠć†ć°ćē—…é™¢'),
(155250, 120330, 'en', 'name', 'Fleming College'),
(155251, 120331, 'en', 'name', 'Institute of Accountancy Arusha'),
(155252, 120332, 'en', 'name', 'Catholic University of Cameroon'),
(155253, 120332, 'fr', 'name', 'UniversitƩ catholique du Cameroun'),
(155254, 120333, 'en', 'name', 'The Overseas Human Resources and Industry Development Association'),
(155255, 120333, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęµ·å¤–ē”£ę„­äŗŗęč‚²ęˆå”ä¼š'),
(155256, 120334, 'en', 'name', 'Okochi Memorial Foundation'),
(155257, 120334, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§ę²³å†…čØ˜åæµä¼š'),
(155258, 120335, 'en', 'name', 'West African Centre for Cell Biology of Infectious Pathogens'),
(155259, 120336, 'en', 'name', 'Kagoshima Industry Support Center'),
(155260, 120336, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‹ć”ć—ć¾ē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(155261, 120337, 'en', 'name', 'The Virtual Reality Society of Japan'),
(155262, 120337, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ćƒćƒ¼ćƒćƒ£ćƒ«ćƒŖć‚¢ćƒŖćƒ†ć‚£å­¦ä¼š'),
(155263, 120338, 'en', 'name', 'Foodservice Industry Research Institute'),
(155264, 120338, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé£Ÿć®å®‰å…Øćƒ»å®‰åæƒč²”å›£'),
(155265, 120339, 'en', 'name', 'GlobalNxt University'),
(155266, 120340, 'en', 'name', 'Montreat College'),
(155267, 120341, 'no_lang_code', 'name', 'Levvel'),
(155268, 120342, 'en', 'name', 'Suzuken Memorial Foundation'),
(155269, 120342, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéˆ“ęœØč¬™äø‰čØ˜åæµåŒ»ē§‘å­¦åæœē”Øē ”ē©¶č²”å›£'),
(155270, 120343, 'en', 'name', 'The Japan Bridge Association'),
(155271, 120343, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę©‹ę¢å»ŗčØ­å”ä¼š'),
(155272, 120344, 'no_lang_code', 'name', 'WINGS ICT Solutions (Greece)'),
(155273, 120345, 'en', 'name', 'Mitsubishi Yowakai Foundation'),
(155274, 120345, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø‰č±é¤Šå’Œä¼š'),
(155275, 120346, 'es', 'name', 'Universidad de Diseño, Innovación y Tecnología'),
(155276, 120347, 'en', 'name', 'Anna Maria College'),
(155277, 120348, 'es', 'name', 'Centro Nacional de TecnologĆ­a y Seguridad Alimentaria'),
(155278, 120348, 'en', 'name', 'National Centre for Technology and Food Safety'),
(155279, 120349, 'en', 'name', 'Japan Dam Foundation'),
(155280, 120349, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ€ćƒ å”ä¼š'),
(155281, 120350, 'en', 'name', 'Botanic Gardens Conservation International'),
(155282, 120351, 'en', 'name', 'THE Flower Association Of Japan'),
(155283, 120351, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬čŠ±ć®ä¼š'),
(155284, 120352, 'en', 'name', 'National Land Afforestation Promotion Organization'),
(155285, 120352, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå›½åœŸē·‘åŒ–ęŽØé€²ę©Ÿę§‹'),
(155286, 120353, 'id', 'name', 'Universitas Aki'),
(155287, 120354, 'no_lang_code', 'name', 'HKV (Netherlands)'),
(155288, 120355, 'en', 'name', 'Kamakura City Medical Association'),
(155289, 120355, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗéŽŒå€‰åø‚åŒ»åø«ä¼š'),
(155290, 120356, 'en', 'name', 'The HDF Group'),
(155291, 120357, 'en', 'name', 'Japan Council of Performers Rights&Performing Arts Organizations'),
(155292, 120357, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čŠøčƒ½å®Ÿę¼”å®¶å›£ä½“å”č­°ä¼š'),
(155293, 120358, 'en', 'name', 'Marian University - Wisconsin'),
(155294, 120359, 'no_lang_code', 'name', 'Argenx (Belgium)'),
(155295, 120360, 'en', 'name', 'Okaya International Center'),
(155296, 120360, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćŠć‹ć‚„ę–‡åŒ–ęŒÆčˆˆäŗ‹ę„­å›£å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(155297, 120361, 'en', 'name', 'Nihonbashi Medical Association'),
(155298, 120361, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę©‹åŒ»åø«ä¼š'),
(155299, 120362, 'en', 'name', 'Nepal Telecom'),
(155300, 120362, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤Ÿą„‡ą¤²ą¤æą¤•ą¤®'),
(155301, 120363, 'en', 'name', 'Japan Cooperation Center for the Middle East'),
(155302, 120363, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäø­ę±å”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(155303, 120364, 'en', 'name', 'Silesian Museum'),
(155304, 120364, 'cs', 'name', 'SlezskƩ zemskƩ muzeum'),
(155305, 120365, 'en', 'name', 'Higher Technological Institute of EscƔrcega'),
(155306, 120365, 'es', 'name', 'Instituto Tecnológico Superior de EscÔrcega');
INSERT INTO `ror_settings` VALUES
(155307, 120366, 'en', 'name', 'Continuous Science Foundation'),
(155308, 120367, 'fr', 'name', 'Archives nationales du Cap-Vert'),
(155309, 120367, 'en', 'name', 'Arquivo Histórico Nacional (Cape Verde)'),
(155310, 120367, 'pt', 'name', 'Arquivo Nacional de Cabo Verde'),
(155311, 120368, 'en', 'name', 'Efferon'),
(155312, 120369, 'en', 'name', 'Center for Development of Power Supply Regions'),
(155313, 120369, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé›»ęŗåœ°åŸŸęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(155314, 120370, 'en', 'name', 'Middle East University'),
(155315, 120370, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الؓرق Ų§Ł„Ų£ŁˆŲ³Ų·'),
(155316, 120371, 'en', 'name', 'New Hampshire Geological Survey'),
(155317, 120372, 'ro', 'name', 'Institutul Naţional de Cercetare-Dezvoltare pentru Securitate Minieră şi Protecţie Antiexplozivă - INSEMEX'),
(155318, 120373, 'en', 'name', 'NHK International, Inc.'),
(155319, 120373, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗNHKć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«'),
(155320, 120374, 'en', 'name', 'Japan Analytical Instruments Manufacturers'' Association'),
(155321, 120374, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åˆ†ęžę©Ÿå™Øå·„ę„­ä¼š'),
(155322, 120375, 'en', 'name', 'Institute of Mental Health Research'),
(155323, 120376, 'it', 'name', 'Arma dei Carabinieri'),
(155324, 120376, 'en', 'name', 'Carabinieri Army'),
(155325, 120377, 'en', 'name', 'Itami Medical Association'),
(155326, 120377, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗä¼Šäø¹åø‚åŒ»åø«ä¼š'),
(155327, 120378, 'en', 'name', 'Saitama Prefectural Fisheries Research Institute'),
(155328, 120378, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒę°“ē”£ē ”ē©¶ę‰€'),
(155329, 120379, 'en', 'name', 'Pennsylvania Department of Conservation and Natural Resources'),
(155330, 120380, 'en', 'name', 'University of Rizal System'),
(155331, 120381, 'en', 'name', 'Association of Agriculture and Forestry Statistics'),
(155332, 120381, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč¾²ęž—ēµ±čØˆå”ä¼š'),
(155333, 120382, 'en', 'name', 'THE PORTS&HARBOURS Association Of Japan'),
(155334, 120382, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęøÆę¹¾å”ä¼š'),
(155335, 120383, 'az', 'name', 'Azərbaycan Respublikasının Təhsil Institutu'),
(155336, 120383, 'en', 'name', 'Institute of Education of the Republic of Azerbaijan'),
(155337, 120384, 'en', 'name', 'Silent Spring Institute'),
(155338, 120385, 'en', 'name', 'Tiger Tech Solutions'),
(155339, 120386, 'no_lang_code', 'name', 'Kodiak Sciences'),
(155340, 120387, 'en', 'name', 'Tbilisi State Academy of Arts'),
(155341, 120387, 'ka', 'name', 'įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒįƒ›įƒ®įƒįƒ¢įƒ•įƒ įƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(155342, 120388, 'en', 'name', 'St. Paul University Iloilo'),
(155343, 120389, 'en', 'name', 'De La Salle Catholic University'),
(155344, 120390, 'en', 'name', 'The Japan Reinforced Plastics Society'),
(155345, 120390, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¼·åŒ–ćƒ—ćƒ©ć‚¹ćƒćƒƒć‚Æå”ä¼š'),
(155346, 120391, 'no_lang_code', 'name', 'Bodeker Scientific (New Zealand)'),
(155347, 120392, 'en', 'name', 'Balkanistic Forum – International University Seminar for Research and Specializations'),
(155348, 120392, 'bg', 'name', 'Балканистичен Ń„Š¾Ń€ŃƒŠ¼ – Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“ŠµŠ½ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ŃŠŗŠø семинар за ŠæŃ€Š¾ŃƒŃ‡Š²Š°Š½ŠøŃ Šø специализации'),
(155349, 120393, 'en', 'name', 'UmeƄ Municipality'),
(155350, 120394, 'en', 'name', 'Iliff School of Theology'),
(155351, 120395, 'en', 'name', 'Veterinary Laboratories'),
(155352, 120396, 'de', 'name', 'Technische Hochschule Georg Agricola'),
(155353, 120397, 'en', 'name', 'Leprosy Mission in Japan'),
(155354, 120397, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå„½å–„ē¤¾'),
(155355, 120398, 'id', 'name', 'Institut Agama Islam Negeri Fattahul Muluk Papua'),
(155356, 120399, 'en', 'name', 'Japan National Tourism Organization'),
(155357, 120399, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½éš›č¦³å…‰ęŒÆčˆˆę©Ÿę§‹'),
(155358, 120400, 'en', 'name', 'Japan Local Government Employee Safety and Health Association'),
(155359, 120400, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°ę–¹å…¬å‹™å“”å®‰å…Øč”›ē”ŸęŽØé€²å”ä¼š'),
(155360, 120401, 'en', 'name', 'The Experiment in International Living'),
(155361, 120401, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›½éš›ē”Ÿę“»ä½“éØ“å”ä¼š'),
(155362, 120402, 'en', 'name', 'Sir Syed College'),
(155363, 120402, 'ml', 'name', 'ą“øąµ¼ ą“øą“Æąµą“Æą“æą“¦ąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“¤ą“³ą“æą“Ŗąµą“Ŗą“±ą“®ąµą“Ŗąµ'),
(155364, 120403, 'en', 'name', 'AlgEn, algal technology centre (Slovenia)'),
(155365, 120403, 'sl', 'name', 'Algen, center za algne tehnologije'),
(155366, 120404, 'en', 'name', 'Health Commission of Guangxi Zhuang Autonomous Region'),
(155367, 120404, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(155368, 120405, 'en', 'name', 'Unijapan'),
(155369, 120405, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ¦ćƒ‹ć‚øćƒ£ćƒ‘ćƒ³'),
(155370, 120406, 'en', 'name', 'Kanazawa Professional University of Food Management'),
(155371, 120406, 'ja', 'name', 'ć‹ćŖć–ć‚é£Ÿćƒžćƒć‚øćƒ”ćƒ³ćƒˆå°‚é–€č·å¤§å­¦'),
(155372, 120407, 'en', 'name', 'Okayama Prefectural Ancient Kibi Cultural Properties Center'),
(155373, 120407, 'ja', 'name', 'å²”å±±ēœŒå¤ä»£å‰å‚™ę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(155374, 120408, 'en', 'name', 'WIDE Project'),
(155375, 120409, 'en', 'name', 'Montana Bureau of Mines and Geology'),
(155376, 120410, 'hr', 'name', 'Klinika za ortopediju Lovran'),
(155377, 120410, 'en', 'name', 'Orthopedic Clinic Lovran'),
(155378, 120411, 'no_lang_code', 'name', 'DIESSE Diagnostica Senese S.p.A. SocietĆ  Benefit (Italy)'),
(155379, 120412, 'en', 'name', 'IndiScale'),
(155380, 120413, 'en', 'name', 'Northwest Arkansas Community College'),
(155381, 120414, 'en', 'name', 'Theological University of Apeldoorn'),
(155382, 120414, 'nl', 'name', 'Theologische Universiteit Apeldoorn'),
(155383, 120415, 'en', 'name', 'DAS Designers Association'),
(155384, 120415, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē·åˆćƒ‡ć‚¶ć‚¤ćƒŠćƒ¼å”ä¼š'),
(155385, 120416, 'en', 'name', 'NHK Communications Training Institute'),
(155386, 120416, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗNHKę”¾é€ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(155387, 120417, 'no_lang_code', 'name', 'Arvinas (United States)'),
(155388, 120418, 'en', 'name', 'THE JAPAN-INDIA Association'),
(155389, 120418, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„å°å”ä¼š'),
(155390, 120419, 'en', 'name', 'Japan Natural Gas Association'),
(155391, 120419, 'ja', 'name', 'ę°“ęŗ¶ę€§å¤©ē„¶ć‚¬ć‚¹ē’°å¢ƒęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(155392, 120420, 'en', 'name', 'Institute for International Trade and Investment'),
(155393, 120420, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›č²æę˜“ęŠ•č³‡ē ”ē©¶ę‰€'),
(155394, 120421, 'en', 'name', 'Pennsylvania Geological Survey'),
(155395, 120422, 'en', 'name', 'Ontario Health'),
(155396, 120423, 'en', 'name', 'Hiroshima Peace Culture Foundation'),
(155397, 120423, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŗƒå³¶å¹³å’Œę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(155398, 120424, 'en', 'name', 'Tokyo Traffic Safety Association'),
(155399, 120424, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę±äŗ¬éƒ½äŗ¤é€šå®‰å…Øå”ä¼š'),
(155400, 120425, 'en', 'name', 'Baycrest Hospital'),
(155401, 120426, 'en', 'name', 'Osaka Equipment Association'),
(155402, 120426, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜ŖåŗœčØ­å‚™čØ­čØˆäŗ‹å‹™ę‰€å”ä¼š'),
(155403, 120427, 'en', 'name', 'University of Ottawa'),
(155404, 120427, 'fr', 'name', 'UniversitƩ d''Ottawa'),
(155405, 120428, 'en', 'name', 'Centre for Industrial Technological Development'),
(155406, 120428, 'es', 'name', 'Centro para el Desarrollo Tecnologico Industrial'),
(155407, 120429, 'en', 'name', 'Calico Life Sciences'),
(155408, 120430, 'pt', 'name', 'Instituto Superior de Administração e Gestão'),
(155409, 120431, 'en', 'name', 'East Japan Railway Culture Foundation'),
(155410, 120431, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±ę—„ęœ¬é‰„é“ę–‡åŒ–č²”å›£'),
(155411, 120432, 'en', 'name', 'Japan Federation of Survey Planning And Associations'),
(155412, 120432, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ęø¬é‡čØ­čØˆę„­å”ä¼šé€£åˆä¼š'),
(155413, 120433, 'es', 'name', 'Universidad Pedagógica del Estado de Sinaloa'),
(155414, 120434, 'no_lang_code', 'name', 'Knology'),
(155415, 120435, 'en', 'name', 'Shinseikai Special Nursing Home Ikurien Naka'),
(155416, 120435, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę–°äø–ä¼šē‰¹åˆ„é¤Šč­·č€äŗŗćƒ›ćƒ¼ćƒ ć„ćć‚Šč‹‘é‚£ē‚'),
(155417, 120436, 'sl', 'name', 'InŔtitut za Celulozo in Papir Ljubljana'),
(155418, 120437, 'no_lang_code', 'name', 'Sangamo BioSciences (United States)'),
(155419, 120438, 'en', 'name', 'Japan Fluid Power Association'),
(155420, 120438, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ•ćƒ«ćƒ¼ćƒ‰ćƒ‘ćƒÆćƒ¼å·„ę„­ä¼š'),
(155421, 120439, 'en', 'name', 'Columbia River Inter-Tribal Fish Commission'),
(155422, 120440, 'en', 'name', 'Association of Media in Digital'),
(155423, 120440, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ‡ć‚øć‚æćƒ«ćƒ”ćƒ‡ć‚£ć‚¢å”ä¼š'),
(155424, 120441, 'no_lang_code', 'name', 'Cyprotex (United States)'),
(155425, 120442, 'en', 'name', 'Shimane Industrial Promotion Foundation'),
(155426, 120442, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć—ć¾ć­ē”£ę„­ęŒÆčˆˆč²”å›£'),
(155427, 120443, 'no_lang_code', 'name', 'Norsvin (Norway)'),
(155428, 120444, 'no_lang_code', 'name', 'Havstovan'),
(155429, 120445, 'en', 'name', 'The Society For Practical Technology Education'),
(155430, 120445, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå®Ÿč·µę•™č‚²čØ“ē·“ē ”ē©¶å”ä¼š'),
(155431, 120446, 'en', 'name', 'Delaware Valley College'),
(155432, 120447, 'en', 'name', 'Japan Sumo Federation'),
(155433, 120447, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē›øę’²é€£ē›Ÿ'),
(155434, 120448, 'no', 'name', 'Norsk senter for Ćøkologisk landbruk'),
(155435, 120448, 'en', 'name', 'Norwegian Centre for Organic Agriculture'),
(155436, 120449, 'en', 'name', 'South Carolina Department of Natural Resources'),
(155437, 120450, 'en', 'name', 'Malabar Dental College and Research Centre'),
(155438, 120451, 'en', 'name', 'Japan Forging Association'),
(155439, 120451, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›é€ å”ä¼š'),
(155440, 120452, 'de', 'name', 'Apollon Hochschule der Gesundheitswirtschaft'),
(155441, 120452, 'en', 'name', 'University of Applied Sciences Appollon'),
(155442, 120453, 'en', 'name', 'Peter Lang'),
(155443, 120453, 'de', 'name', 'Peter Lang Verlag'),
(155444, 120454, 'en', 'name', 'Plant Protection Central Research Institute'),
(155445, 120454, 'tr', 'name', 'Zirai Mücadele Merkez Araştırma Enstitüsü Müdürlüğü'),
(155446, 120455, 'es', 'name', 'Universidad Internacional de las AmƩricas'),
(155447, 120456, 'pt', 'name', 'Gabinete de Gestão do Programa Espacial Nacional'),
(155448, 120456, 'en', 'name', 'National Space Program Management Office'),
(155449, 120457, 'en', 'name', 'Kansai Electrical Safety Inspection Association'),
(155450, 120457, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æé›»ę°—äæå®‰å”ä¼š'),
(155451, 120458, 'en', 'name', 'American University of Health Sciences'),
(155452, 120459, 'en', 'name', 'Agriaquaculture Nutritional Genomic Center'),
(155453, 120460, 'en', 'name', 'Effective Basic Services for Africa'),
(155454, 120461, 'en', 'name', 'Synthesis Clinic'),
(155455, 120462, 'no_lang_code', 'name', 'Haigazian University'),
(155456, 120462, 'fr', 'name', 'UniversitƩ haigazian'),
(155457, 120462, 'hy', 'name', 'Õ€Õ”ÕµÕÆÕ”Õ¦ÕµÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(155458, 120462, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‡Ų§ŁŠŁƒŲ§Ų²ŁŠŲ§Ł†'),
(155459, 120463, 'en', 'name', 'Planning Consultants Association of Japan'),
(155460, 120463, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗéƒ½åø‚čØˆē”»ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆå”ä¼š'),
(155461, 120464, 'en', 'name', 'University of Security Management in KoŔice'),
(155462, 120464, 'sk', 'name', 'VysokĆ” Å”kola bezpečnostnĆ©ho manažérstva v KoÅ”iciach'),
(155463, 120465, 'en', 'name', 'Wangari Maathai Institute for Peace and Environmental Studies'),
(155464, 120466, 'en', 'name', 'Children''s Cancer Therapy Development Institute'),
(155465, 120467, 'en', 'name', 'Japanese Association of Retirement Housing'),
(155466, 120467, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½ęœ‰ę–™č€äŗŗćƒ›ćƒ¼ćƒ å”ä¼š'),
(155467, 120468, 'es', 'name', 'Instituto OceanogrƔfico de la Armada del Ecuador'),
(155468, 120469, 'en', 'name', 'Foundation for Asian Management Development'),
(155469, 120469, 'ja', 'name', 'č²”å›£ę³•äŗŗć‚¢ć‚øć‚¢ēµŒå–¶é–‹ē™ŗå”åŠ›č²”å›£'),
(155470, 120470, 'pt', 'name', 'Instituto de Estudos Superiores Financeiros e Fiscais'),
(155471, 120471, 'en', 'name', 'Institute for Globally Distributed Open Research and Education'),
(155472, 120472, 'en', 'name', 'Lumbini Technological University'),
(155473, 120472, 'ne', 'name', 'ą¤²ą„ą¤®ą„ą¤¬ą¤æą¤Øą„€ ą¤Ŗą„ą¤°ą¤¾ą¤µą¤æą¤§ą¤æą¤• ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(155474, 120473, 'en', 'name', 'Japan Dairy Counci'),
(155475, 120473, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å¤®é…Ŗč¾²ä¼šč­°'),
(155476, 120474, 'en', 'name', 'THE Japan Commercial Broadcasters Association'),
(155477, 120474, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę°‘é–“ę”¾é€é€£ē›Ÿ'),
(155478, 120475, 'pl', 'name', 'Karkonoska Państwowa Szkoła Wyższa'),
(155479, 120475, 'en', 'name', 'Karkonosze College in Jelenia Góra'),
(155480, 120476, 'en', 'name', 'Independent Insurance Agents Of Japan, Inc.'),
(155481, 120476, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęå®³äæé™ŗä»£ē†ę„­å”ä¼š'),
(155482, 120477, 'en', 'name', 'Gnanamani College of Technology'),
(155483, 120478, 'en', 'name', 'North London NHS Foundation Trust'),
(155484, 120479, 'en', 'name', 'National Association of Labour Banks'),
(155485, 120479, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½åŠ“åƒé‡‘åŗ«å”ä¼š'),
(155486, 120480, 'en', 'name', 'The Japanese Society for Non-destructive Inspection'),
(155487, 120480, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬éžē “å£Šę¤œęŸ»å”ä¼š'),
(155488, 120481, 'fr', 'name', 'Unité Expérimentale sur les Systèmes Maraîchers Agroécologiques'),
(155489, 120482, 'de', 'name', 'Hochschule Kehl'),
(155490, 120482, 'en', 'name', 'University of Applied Sciences Kehl'),
(155491, 120483, 'en', 'name', 'Institute of Management Business and Law'),
(155492, 120483, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ, бизнеса Šø права'),
(155493, 120484, 'en', 'name', 'Intellect Books'),
(155494, 120485, 'en', 'name', 'Gavi'),
(155495, 120486, 'de', 'name', 'Fliedner Fachhochschule Düsseldorf'),
(155496, 120486, 'en', 'name', 'University of Applied Sciences Fliedner Fachhochschule'),
(155497, 120487, 'no_lang_code', 'name', 'Biomarker Technologies (China)'),
(155498, 120487, 'zh', 'name', 'ē™¾čæˆå®¢ē”Ÿē‰©ē§‘ęŠ€'),
(155499, 120488, 'en', 'name', 'Japan Environmental Facilities Manufacturers Association'),
(155500, 120488, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒč”›ē”Ÿę–½čØ­å·„ę„­ä¼š'),
(155501, 120489, 'en', 'name', 'Advanced Research + Invention Agency'),
(155502, 120490, 'en', 'name', 'Higashi Mikawa Regional Research Center'),
(155503, 120490, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äø‰ę²³åœ°åŸŸē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(155504, 120491, 'en', 'name', 'Japan health and culture promotion center'),
(155505, 120491, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·ę–‡åŒ–ęŒÆčˆˆä¼š'),
(155506, 120492, 'pl', 'name', 'Ośrodek Badawczo-Rozwojowy Centrum Techniki Morskiej'),
(155507, 120493, 'no_lang_code', 'name', 'Cyprus Research and Innovation Center (Cyprus)'),
(155508, 120494, 'en', 'name', 'Tanaka Institute For Educational Research'),
(155509, 120494, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē”°äø­ę•™č‚²ē ”ē©¶ę‰€'),
(155510, 120495, 'en', 'name', 'Moscow Clinical Science and Research Center 52'),
(155511, 120496, 'en', 'name', 'Reinhardt University'),
(155512, 120497, 'pt', 'name', 'Anis'),
(155513, 120498, 'en', 'name', 'K.J. Somaiya Institute of Dharma Studies'),
(155514, 120499, 'en', 'name', 'International Women University'),
(155515, 120500, 'en', 'name', 'National Institute of Technology, Oita College'),
(155516, 120500, 'ja', 'name', 'å¤§åˆ†å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(155517, 120501, 'es', 'name', 'Universidad de Sevilla'),
(155518, 120501, 'en', 'name', 'University of Seville'),
(155519, 120502, 'en', 'name', 'University of Belgrade – Faculty of Veterinary Medicine'),
(155520, 120502, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet veterinarske medicine'),
(155521, 120503, 'en', 'name', 'Primary Care Collaborative Clinical Trials Group'),
(155522, 120504, 'en', 'name', 'Hungarian Academy of Sciences'),
(155523, 120504, 'hu', 'name', 'Magyar TudomƔnyos AkadƩmia'),
(155524, 120505, 'en', 'name', 'North Central Catchment Management Authority'),
(155525, 120506, 'en', 'name', 'Global College International'),
(155526, 120507, 'fr', 'name', 'Laboratoire des 2 Infinis Toulouse'),
(155527, 120508, 'en', 'name', 'Beijing Chao-Yang Hospital, Capital Medical University'),
(155528, 120508, 'zh', 'name', 'é¦–éƒ½åŒ»ē§‘å¤§å­¦é™„å±žåŒ—äŗ¬ęœé˜³åŒ»é™¢'),
(155529, 120509, 'en', 'name', 'BeOne Medicines (Switzerland)'),
(155530, 120510, 'en', 'name', 'State Tax University'),
(155531, 120510, 'uk', 'name', 'Державний поГатковий ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(155532, 120511, 'id', 'name', 'Universitas Islam Negeri Palopo'),
(155533, 120512, 'de', 'name', 'S.P.O.R.T Institut (priv.) GmbH'),
(155534, 120513, 'en', 'name', 'NutriNeuro'),
(155535, 120514, 'fr', 'name', 'Centre intƩgrƩ de santƩ et de services sociaux de la MontƩrƩgie-Centre'),
(155536, 120515, 'fr', 'name', 'Microscopie Fonctionnelle du Vivant'),
(155537, 120516, 'en', 'name', 'Scio Research'),
(155538, 120517, 'en', 'name', 'Ministry of Social Affairs and Health'),
(155539, 120517, 'sv', 'name', 'Social- och hƤlsovƄrdsministeriet'),
(155540, 120517, 'fi', 'name', 'sosiaali- ja terveysministeriƶ'),
(155541, 120518, 'ro', 'name', 'Institutul Național de Management al Serviciilor de Sănătate'),
(155542, 120518, 'en', 'name', 'National Institute for Health Services Management'),
(155543, 120519, 'en', 'name', 'Cambridge Advanced Imaging Centre'),
(155544, 120520, 'id', 'name', 'Universitas Pamulang'),
(155545, 120521, 'en', 'name', 'Amity University Gurugram'),
(155546, 120521, 'as', 'name', 'ą¦ą¦®ą¦æą¦Ÿą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼, গুৰুগাঁও'),
(155547, 120522, 'en', 'name', 'State Scientific Institution "Center for Problems of Marine Geology, Geoecology and Sedimentary Ore Formation of the National Academy of Sciences of Ukraine"'),
(155548, 120522, 'uk', 'name', 'Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠ¦ŠµŠ½Ń‚Ń€ проблем Š¼Š¾Ń€ŃŃŒŠŗŠ¾Ń— геології, геоекології та осаГового Ń€ŃƒŠ“Š¾ŃƒŃ‚Š²Š¾Ń€ŠµŠ½Š½Ń ŠŠŠ Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(155549, 120523, 'en', 'name', 'European Union'),
(155550, 120524, 'en', 'name', 'Liaoning Normal University'),
(155551, 120524, 'zh', 'name', '辽宁师范大学'),
(155552, 120525, 'de', 'name', 'uni software plus GmbH (Austria)'),
(155553, 120526, 'en', 'name', 'Nevada Bureau of Mines and Geology'),
(155554, 120527, 'en', 'name', 'Epilepsy Society of Australia'),
(155555, 120528, 'en', 'name', 'Institute of Informatics Problems'),
(155556, 120528, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½Ń„Š¾Ń€Š¼Š°Ń‚ŠøŠŗŠ° Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŠµ'),
(155557, 120529, 'en', 'name', 'Vilya'),
(155558, 120530, 'en', 'name', 'James Hope University'),
(155559, 120531, 'en', 'name', 'Heidelberg Institute of Global Health'),
(155560, 120531, 'de', 'name', 'Heidelberger Institut für Global Health'),
(155561, 120532, 'en', 'name', 'Teach Democracy'),
(155562, 120533, 'de', 'name', 'UniversitƤtsverlag Gƶttingen'),
(155563, 120534, 'en', 'name', 'Ishikawa Hospital'),
(155564, 120535, 'en', 'name', 'University of Belgrade - Faculty of Architecture'),
(155565, 120535, 'sr', 'name', 'Univerzitet u Beogradu - Arhitektonski fakultet'),
(155566, 120536, 'en', 'name', 'Kimia Therapeutics'),
(155567, 120537, 'en', 'name', 'Gobinda Prasad Mahavidyalaya'),
(155568, 120537, 'bn', 'name', 'ą¦—ą§‹ą¦¬ą¦æą¦Øą§ą¦¦ ą¦Ŗą§ą¦°ą¦øą¦¾ą¦¦ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(155569, 120538, 'en', 'name', 'National Observation and Research Station of Coastal Ecological Environments in Macao'),
(155570, 120539, 'en', 'name', 'Advanced Atomization Technologies, LLC'),
(155571, 120539, 'no_lang_code', 'name', 'Advanced Atomization Technologies, LLC (United States)'),
(155572, 120540, 'en', 'name', 'PsiQuantum (United States)'),
(155573, 120541, 'en', 'name', 'Institute for Catastrophic Loss Reduction'),
(155574, 120542, 'en', 'name', 'KurrawongAI (Australia)'),
(155575, 120543, 'en', 'name', 'University of Belgrade – Faculty of Biology'),
(155576, 120543, 'sr', 'name', 'Univerzitet u Beogradu – BioloÅ”ki fakultet'),
(155577, 120544, 'en', 'name', 'The Africa Institute'),
(155578, 120545, 'en', 'name', 'University of Belgrade – Faculty of Political Sciences'),
(155579, 120545, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet političkih nauka'),
(155580, 120546, 'en', 'name', 'Department of Biological Sciences'),
(155581, 120547, 'en', 'name', 'Digital Transformation Institute'),
(155582, 120547, 'it', 'name', 'La Fondazione per la SostenibilitĆ  Digitale'),
(155583, 120548, 'en', 'name', 'Community of Madrid'),
(155584, 120548, 'es', 'name', 'Comunidad de Madrid'),
(155585, 120549, 'en', 'name', 'Ministry of Agriculture and Forestry'),
(155586, 120549, 'tr', 'name', 'T.C. Tarım ve Orman Bakanlığı'),
(155587, 120550, 'en', 'name', 'Ukrainian Research Institute of Oils and Fats of the National Academy of Agrarian Sciences of Ukraine'),
(155588, 120550, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ олій та жирів ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(155589, 120551, 'sk', 'name', 'Slovenský Metrologický Ústav'),
(155590, 120552, 'en', 'name', 'Eldorado Research Institute'),
(155591, 120552, 'pt', 'name', 'Instituto de Pesquisas Eldorado'),
(155592, 120553, 'en', 'name', 'Medical Center Hospital of the President’s affairs Administration of the Republic of Kazakhstan'),
(155593, 120553, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Ń–Š½Ń–Ņ£ Іс басқармасы ŠœŠµŠ“ŠøŃ†ŠøŠ½Š°Š»Ń‹Ņ› орталығы ŠŃƒŃ€ŃƒŃ…Š°Š½Š°ŃŃ‹'),
(155594, 120554, 'en', 'name', 'Knut and Alice Wallenberg Foundation'),
(155595, 120555, 'en', 'name', 'Nizhny Novgorod State Pedagogical University'),
(155596, 120555, 'ru', 'name', 'Мининский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(155597, 120556, 'en', 'name', 'University of Belgrade – Faculty of Medicine'),
(155598, 120556, 'sr', 'name', 'Univerzitet u Beogradu – Medicinski fakultet'),
(155599, 120557, 'fr', 'name', 'Laboratoire des Interactions Plantes Micro-Organismes'),
(155600, 120557, 'en', 'name', 'Laboratory of Plant-Microbe Interactions'),
(155601, 120558, 'en', 'name', 'City University of Hong Kong (Dongguan)'),
(155602, 120558, 'zh', 'name', 'é¦™ęøÆåŸŽåø‚å¤§å­¦ (äøœčŽž)'),
(155603, 120559, 'es', 'name', 'Corporación Discimus'),
(155604, 120560, 'en', 'name', 'Alberta University of the Arts'),
(155605, 120561, 'en', 'name', 'Kerala State Council for Science, Technology and Environment'),
(155606, 120562, 'en', 'name', 'LandScient (Colombia)'),
(155607, 120563, 'it', 'name', 'Centro Alti Studi per la Difesa (CASD)'),
(155608, 120564, 'fr', 'name', 'Institut National des Langues et Civilisations Orientales'),
(155609, 120564, 'en', 'name', 'National Institute for Oriental Languages and Civilizations'),
(155610, 120565, 'fr', 'name', 'Laboratoire du froid et des systèmes énergétiques et thermique'),
(155611, 120566, 'en', 'name', 'Hessian Center for Artificial Intelligence'),
(155612, 120566, 'de', 'name', 'Hessische Zentrum für Künstliche Intelligenz hessian.AI'),
(155613, 120567, 'fr', 'name', 'Conservatoire botanique national de Bailleul'),
(155614, 120568, 'en', 'name', 'Health Services Research Center (Cyprus)'),
(155615, 120569, 'en', 'name', 'Japan International Science and Technology Exchange Center'),
(155616, 120569, 'ja', 'name', 'ē¤¾å›£ę³•äŗŗē§‘å­¦ęŠ€č”“å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(155617, 120570, 'nl', 'name', 'Meander Medisch Centrum'),
(155618, 120571, 'tl', 'name', 'Pampamahalaang Pamantasan ng Pampanga'),
(155619, 120571, 'en', 'name', 'Pampanga State University'),
(155620, 120572, 'pt', 'name', 'Universidade do Porto'),
(155621, 120572, 'en', 'name', 'University of Porto'),
(155622, 120573, 'en', 'name', 'Siemens Healthineers'),
(155623, 120573, 'no_lang_code', 'name', 'Siemens Healthineers (Germany)'),
(155624, 120574, 'fr', 'name', 'Fédération de recherche Matière et Interactions'),
(155625, 120575, 'en', 'name', 'Division of Graduate Education'),
(155626, 120576, 'en', 'name', 'Institute of Statistics'),
(155627, 120577, 'en', 'name', 'Donbas State Pedagogical University'),
(155628, 120577, 'uk', 'name', 'Š”Š¾Š½Š±Š°ŃŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(155629, 120578, 'nl', 'name', 'Nederlands Studiecentrum Criminaliteit en Rechtshandhaving'),
(155630, 120578, 'en', 'name', 'Netherlands Institute for the Study of Crime and Law Enforcement'),
(155631, 120579, 'en', 'name', 'Association for the Prevention and Study of HIV/AIDS'),
(155632, 120580, 'en', 'name', 'International Chemical Workers Union Council'),
(155633, 120581, 'en', 'name', 'Basel Historical Museum'),
(155634, 120581, 'de', 'name', 'Historisches Museum Basel'),
(155635, 120581, 'fr', 'name', 'Musée historique de Bâle'),
(155636, 120582, 'en', 'name', 'Government of South Africa'),
(155637, 120583, 'en', 'name', 'Taraba State College of Health Technology Takum'),
(155638, 120584, 'en', 'name', 'Paris 8 University'),
(155639, 120584, 'fr', 'name', 'UniversitƩ Paris 8'),
(155640, 120585, 'en', 'name', 'Institute for Information Technology'),
(155641, 120585, 'de', 'name', 'Oldenburger Institut für Informatik'),
(155642, 120586, 'en', 'name', 'Mahatma Gandhi Memorial Medical College'),
(155643, 120587, 'en', 'name', 'Biometry and Evolutionary Biology Laboratory'),
(155644, 120587, 'fr', 'name', 'Laboratoire de BiomƩtrie et Biologie Evolutive'),
(155645, 120588, 'en', 'name', 'Iran University of Medical Sciences'),
(155646, 120588, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§ŪŒŲ±Ų§Ł†'),
(155647, 120589, 'en', 'name', 'Libya Open University'),
(155648, 120589, 'ar', 'name', 'الجامعة Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų© - Ł„ŁŠŲØŁŠŲ§'),
(155649, 120590, 'en', 'name', 'Middle East Technical University'),
(155650, 120590, 'tr', 'name', 'Orta Doğu Teknik Üniversitesi'),
(155651, 120591, 'en', 'name', 'RESTORE'),
(155652, 120592, 'es', 'name', 'CHAM - Centro de Humanidades'),
(155653, 120593, 'en', 'name', 'Zhongnan University of Economics and Law'),
(155654, 120593, 'zh', 'name', 'äø­å—č“¢ē»ę”æę³•å¤§å­¦'),
(155655, 120594, 'sv', 'name', 'Region Sƶrmland'),
(155656, 120595, 'en', 'name', 'Fred Hutchinson/University of Washington/Seattle Children’s Cancer Consortium'),
(155657, 120596, 'en', 'name', 'Norwegian Police University College'),
(155658, 120596, 'no', 'name', 'PolitihĆøgskolen'),
(155659, 120597, 'en', 'name', 'Computer Equipment and Technologies'),
(155660, 120598, 'en', 'name', 'K.T.N College of Pharmacy'),
(155661, 120598, 'ml', 'name', 'ą“•ąµ†.ą“Ÿą“æ.ą“Žąµ» ą“•ąµ‹ą“³ą“œąµ ą““ą“«ąµ ą“«ą“¾ąµ¼ą“®ą“øą“æ'),
(155662, 120599, 'fi', 'name', 'PƤijƤt-HƤmeen Keskussairaala'),
(155663, 120600, 'fr', 'name', 'Conservatoire Botanique National MƩditerranƩen de Porquerolles'),
(155664, 120600, 'en', 'name', 'National Mediterranean Botanical Conservatory of Porquerolles'),
(155665, 120601, 'id', 'name', 'Politeknik Assalaam Surakarta'),
(155666, 120602, 'en', 'name', 'The Wildlife Project (United States)'),
(155667, 120603, 'en', 'name', 'Medical University of Vienna'),
(155668, 120603, 'de', 'name', 'Medizinische UniversitƤt Wien'),
(155669, 120604, 'en', 'name', 'MNGI Digestive Health'),
(155670, 120605, 'fr', 'name', 'Fondation Maison des Sciences de l''Homme'),
(155671, 120606, 'cy', 'name', 'Prifysgol Caergrawnt'),
(155672, 120606, 'en', 'name', 'University of Cambridge'),
(155673, 120607, 'en', 'name', 'Network of Networks (N2)'),
(155674, 120608, 'en', 'name', 'CERCA Institution'),
(155675, 120608, 'ca', 'name', 'Fundació Institució dels Centres de Recerca de Catalunya'),
(155676, 120609, 'en', 'name', 'St. Petersburg Institute for Informatics and Automation'),
(155677, 120609, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информатики Šø автоматизации'),
(155678, 120610, 'en', 'name', 'ECOLOG Institute for Social-Ecological Research and Education'),
(155679, 120610, 'de', 'name', 'ECOLOG-Institut für sozial-ökologische Forschung und Bildung'),
(155680, 120611, 'en', 'name', 'Paris Nanterre University'),
(155681, 120611, 'fr', 'name', 'UniversitƩ Paris Nanterre'),
(155682, 120612, 'en', 'name', 'Japan Doll Association'),
(155683, 120612, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬äŗŗå½¢å”ä¼š'),
(155684, 120613, 'fr', 'name', 'Themis - UniversitƩ du Mans'),
(155685, 120614, 'en', 'name', 'Kerala University of Digital Sciences, Innovation and Technology'),
(155686, 120614, 'ta', 'name', 'கேரள ą®‡ą®²ą®•ąÆą®•ą®®ąÆą®±ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(155687, 120614, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą““ą“«ąµ ą“”ą“æą“œą“æą“±ąµą“±ąµ½ ą“øą“Æąµ»ą“øą“øąµ, ą“‡ą“Øąµą“ØąµŠą“µąµ‡ą“·ąµ» ą“†ąµ»ą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(155688, 120615, 'fr', 'name', 'Sous-direction des systèmes d''information et des études statistiques'),
(155689, 120616, 'en', 'name', 'Amref Health Africa'),
(155690, 120617, 'en', 'name', 'European Marine Biological Resource Centre'),
(155691, 120618, 'en', 'name', 'Copenhagen Zoo'),
(155692, 120618, 'da', 'name', 'KĆøbenhavn Zoo'),
(155693, 120619, 'en', 'name', 'AppliedAI Institute for Europe'),
(155694, 120620, 'en', 'name', 'South African Council for Natural Scientific Professions'),
(155695, 120620, 'af', 'name', 'Suid-Afrikaanse Raad vir Natuur Wetenskaplike Professies'),
(155696, 120621, 'en', 'name', 'Institute of Physics and Technology'),
(155697, 120621, 'ru', 'name', 'Физико-технологического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š°'),
(155698, 120622, 'en', 'name', 'Delhi Metropolitan Education'),
(155699, 120623, 'id', 'name', 'Institut Agama Hindu Negeri Tampung Penyang Palangka Raya'),
(155700, 120624, 'no_lang_code', 'name', 'ASML (Netherlands)'),
(155701, 120625, 'en', 'name', 'Australian Association of Gerontology'),
(155702, 120626, 'es', 'name', 'Universidad Europea de Valencia'),
(155703, 120627, 'fr', 'name', 'FƩdƩration de Recherche Spectroscopies de PhotoƩmission'),
(155704, 120628, 'en', 'name', 'International Max Planck Research School for Advanced Methods in Process and Systems Engineering'),
(155705, 120629, 'en', 'name', 'Micronclean (United Kingdom)'),
(155706, 120630, 'en', 'name', 'State Library of Oregon'),
(155707, 120631, 'pl', 'name', 'Pracownia E. Weatherwax (Poland)'),
(155708, 120632, 'es', 'name', 'Hospital Escuela de Agudos Dr. Ramón Madariaga'),
(155709, 120633, 'en', 'name', 'Institute for Information Transmission Problems'),
(155710, 120633, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем переГачи информации им. А.А. Єаркевича Российской акаГемии наук'),
(155711, 120634, 'en', 'name', 'Shaheed Benazir Bhutto University, Sheringal'),
(155712, 120634, 'ur', 'name', 'جامعہ ؓہید ŲØŪŒŁ†ŲøŪŒŲ± بھٹو'),
(155713, 120635, 'es', 'name', 'Consejo de Formación en Educación'),
(155714, 120636, 'id', 'name', 'Politeknik Muhammadiyah Makassar'),
(155715, 120637, 'fr', 'name', 'Conservatoire botanique national du Massif central'),
(155716, 120638, 'de', 'name', 'Zentrum verantwortungsbewusste Digitalisierung'),
(155717, 120639, 'en', 'name', 'Bird Research SaeZiP (South Korea)'),
(155718, 120640, 'en', 'name', 'LAMDA'),
(155719, 120641, 'fr', 'name', 'Neurocentre Magendie'),
(155720, 120642, 'de', 'name', 'Elternhilfe für krebskranke Kinder Leipzig e.V.'),
(155721, 120643, 'no_lang_code', 'name', 'Advanced Research Center for Nanolithography (Netherlands)'),
(155722, 120644, 'en', 'name', 'RGCC International GmbH'),
(155723, 120645, 'en', 'name', 'Gaziantep City Hospital'),
(155724, 120645, 'tr', 'name', 'Gaziantep Şehir Hastanesi'),
(155725, 120646, 'en', 'name', 'Institute of Automation and Electrometry'),
(155726, 120646, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š¼ŠµŃ‚Ń€ŠøŠø Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(155727, 120647, 'en', 'name', 'Kaiser Permanente'),
(155728, 120648, 'fr', 'name', 'Institut de Recherche en Informatique et Systèmes Aléatoires'),
(155729, 120648, 'en', 'name', 'Institute for Research in IT and Random Systems'),
(155730, 120649, 'en', 'name', 'Graz University of Technology'),
(155731, 120649, 'de', 'name', 'Technische UniversitƤt Graz'),
(155732, 120650, 'en', 'name', 'Mohamed VI University of Sciences and Health'),
(155733, 120650, 'fr', 'name', 'UniversitƩ Mohammed VI des Sciences et de la SantƩ'),
(155734, 120651, 'en', 'name', 'Treeline Biosciences'),
(155735, 120652, 'en', 'name', 'County Durham and Darlington NHS Foundation Trust'),
(155736, 120653, 'en', 'name', 'Pyatigorsk State Scientific Research Institute of Balneology'),
(155737, 120653, 'ru', 'name', 'ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠø'),
(155738, 120654, 'en', 'name', 'The Institute of Problems on Education of the National Academy of Educational Sciences of Ukraine'),
(155739, 120654, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š²ŠøŃ…Š¾Š²Š°Š½Š½Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії пеГагогічних наук України'),
(155740, 120655, 'en', 'name', 'Narendra Modi Medical College'),
(155741, 120655, 'bn', 'name', 'ą¦Øą¦°ą§‡ą¦Øą§ą¦¦ą§ą¦° মোদি মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(155742, 120655, 'pa', 'name', 'ਨਰਿੰਦਰ ਮੋਦੀ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ąØ•ąØ¾ąØ²ąØœ'),
(155743, 120655, 'te', 'name', 'ą°Øą°°ą±‡ą°‚ą°¦ą±ą°° మోదీ ą°®ą±†ą°”ą°æą°•ą°²ą± ą°•ą°¾ą°²ą±‡ą°œą±'),
(155744, 120656, 'tr', 'name', 'Ortopediatri Ƨocuk Ortopedi Akademisi'),
(155745, 120657, 'en', 'name', 'National Academy for Planning and Development'),
(155746, 120658, 'fr', 'name', 'Haute Ʃcole d''ingƩnierie et de gestion du canton de Vaud, HES-SO Haute Ecole SpƩcialisƩe de Suisse Occidentale'),
(155747, 120659, 'es', 'name', 'Ministerio de Agricultura, GanaderĆ­a y Pesca'),
(155748, 120659, 'en', 'name', 'Ministry of Agriculture'),
(155749, 120660, 'de', 'name', 'Berufsakademie Nord'),
(155750, 120660, 'en', 'name', 'University of Cooperative Education'),
(155751, 120661, 'en', 'name', 'Al Nas Hospital'),
(155752, 120662, 'en', 'name', 'University of Belgrade – Faculty of Physics'),
(155753, 120662, 'sr', 'name', 'Univerzitet u Beogradu – Fizički fakultet'),
(155754, 120663, 'en', 'name', 'Payeshgar Tadbir Afzar (Iran)'),
(155755, 120664, 'en', 'name', 'Center of Advanced Consultants in Healthcare Education and Training'),
(155756, 120665, 'en', 'name', 'Institute on Laser and Information Technologies'),
(155757, 120665, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем лазерных Šø информационных технологий'),
(155758, 120666, 'es', 'name', 'Instituto Tecnológico de León'),
(155759, 120667, 'en', 'name', 'Glorious Vision University'),
(155760, 120668, 'en', 'name', 'Federal Research Centre «Fundamentals of Biotechnology» of the Russian Academy of Sciences'),
(155761, 120668, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Ā«Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Šµ основы биотехнологии»'),
(155762, 120669, 'es', 'name', 'Hospital Universitario Santa Cristina'),
(155763, 120670, 'en', 'name', 'Institute of Physics'),
(155764, 120671, 'en', 'name', 'Arab Board Of Health Specializations'),
(155765, 120671, 'ar', 'name', 'المجلس Ų§Ł„Ų¹Ų±ŲØŁŠ للاختصاصات Ų§Ł„ŲµŲ­ŁŠŲ©'),
(155766, 120672, 'en', 'name', 'Sorbonne Nouvelle University'),
(155767, 120672, 'fr', 'name', 'UniversitƩ Sorbonne Nouvelle'),
(155768, 120673, 'ro', 'name', 'Academia Oamenilor de Știință din RomĆ¢nia'),
(155769, 120673, 'en', 'name', 'Academy of Romanian Scientists'),
(155770, 120674, 'en', 'name', 'Center for International Policy Research'),
(155771, 120675, 'en', 'name', 'Vikramajit Singh Sanatan Dharma College'),
(155772, 120675, 'hi', 'name', 'ą¤µą¤æą¤•ą„ą¤°ą¤®ą¤¾ą¤œą„€ą¤¤ सिंह सनातन ą¤§ą¤°ą„ą¤® ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(155773, 120675, 'bn', 'name', 'ą¦¬ą¦æą¦•ą§ą¦°ą¦®ą¦œą¦æą§Ž সিং সনাতন ą¦§ą¦°ą§ą¦® ą¦•ą¦²ą§‡ą¦œ'),
(155774, 120676, 'en', 'name', 'University of Belgrade – Faculty of Dental Medicine'),
(155775, 120676, 'sr', 'name', 'Univerzitet u Beogradu – StomatoloÅ”ki fakultet'),
(155776, 120677, 'en', 'name', 'College of Health Sciences Widya Dharma Husada Tangerang'),
(155777, 120677, 'id', 'name', 'STIKes Widya Dharma Husada Tangerang'),
(155778, 120678, 'tr', 'name', 'LƖSANTE Hastanesi'),
(155779, 120678, 'en', 'name', 'LƖSANTE Hospital'),
(155780, 120679, 'tr', 'name', 'Bilgi Teknolojileri ve İletişim Kurumu'),
(155781, 120679, 'en', 'name', 'Information Technologies and Communications Authority'),
(155782, 120680, 'fr', 'name', 'CIUSSS du Centre-Ouest-de-l''Ǝle-de-MontrĆ©al'),
(155783, 120681, 'en', 'name', 'Center for Molecular Biophysics'),
(155784, 120681, 'fr', 'name', 'Centre de Biophysique MolƩculaire'),
(155785, 120682, 'en', 'name', 'Dalian Art College'),
(155786, 120682, 'zh', 'name', 'å¤§čæžč‰ŗęœÆå­¦é™¢'),
(155787, 120683, 'en', 'name', 'Foundation for Dutch Scientific Research Institutes'),
(155788, 120683, 'nl', 'name', 'NWO-I'),
(155789, 120684, 'fr', 'name', 'Assistance Publique – HĆ“pitaux de Paris'),
(155790, 120685, 'en', 'name', 'Welfare Footprint Institute'),
(155791, 120686, 'en', 'name', 'Information and Communications University'),
(155792, 120687, 'en', 'name', 'Far Western Anthropological Research Group, Inc. (United States)'),
(155793, 120688, 'no_lang_code', 'name', 'Parker Hannifin (United States)'),
(155794, 120689, 'it', 'name', 'Conservatorio di Musica ā€œG. Nicoliniā€ di Piacenza'),
(155795, 120690, 'en', 'name', 'MARDIVE - Association Science and Education for the Conservation of Marine Biodiversity'),
(155796, 120691, 'en', 'name', 'Texas Military Department'),
(155797, 120692, 'fr', 'name', 'GDR NBODY : ProblĆØme quantique Ć  N corps en chimie et physique'),
(155798, 120692, 'en', 'name', 'GDR NBODY: Quantum n-body problem in chemistry and physics'),
(155799, 120693, 'en', 'name', 'NETES Institute of Pharmaceutical Science'),
(155800, 120694, 'ca', 'name', 'Consorci d’Atenció PrimĆ ria de Salut Barcelona Esquerra'),
(155801, 120695, 'en', 'name', 'Center for Academic & Professional Career Development and Research (CAPCDR)'),
(155802, 120696, 'en', 'name', 'Institute of Water Problems and Hydro-Engineering Named After I.V. Yeghiazarov'),
(155803, 120696, 'hy', 'name', 'Ō±ÕÆÕ”Õ¤Õ„Õ“Õ«ÕÆÕøÕ½ Ō»ā€¤ÕŽā€¤ ŌµÕ²Õ«Õ”Õ¦Õ”Ö€ÕøÕ¾Õ« Õ”Õ¶Õ¾Õ”Õ¶ Õ»Ö€Õ”ÕµÕ«Õ¶ հիՓնՔհՔրՄցՄրի և Õ°Õ«Õ¤Ö€ÕøÕæÕ„Õ­Õ¶Õ«ÕÆÕ”ÕµÕ« Õ«Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(155804, 120697, 'en', 'name', 'Loyola College of Social Sciences'),
(155805, 120698, 'en', 'name', 'Institute of Archeology and Ethnology'),
(155806, 120698, 'pl', 'name', 'Instytut Archeologii i Etnologii'),
(155807, 120699, 'en', 'name', 'American Association of Colleges of Osteopathic Medicine'),
(155808, 120700, 'de', 'name', 'Institut für vergleichende Städtegeschichte'),
(155809, 120701, 'es', 'name', 'Departamento de Justicia de los Estados Unidos'),
(155810, 120701, 'fr', 'name', 'DĆ©partement de la justice des Ɖtats-unis'),
(155811, 120701, 'en', 'name', 'United States Department of Justice'),
(155812, 120702, 'en', 'name', 'Department of Commerce'),
(155813, 120703, 'nl', 'name', 'Stichting Politieke Academie'),
(155814, 120704, 'en', 'name', 'Sitadevi Ratanchand Nahar Adarsh College'),
(155815, 120705, 'no_lang_code', 'name', 'Walt Disney (United States)'),
(155816, 120706, 'en', 'name', 'Tuwaiq Academy'),
(155817, 120707, 'en', 'name', 'International Institute for Applied Systems Analysis'),
(155818, 120708, 'en', 'name', 'Betsi Cadwaladr University Health Board'),
(155819, 120708, 'cy', 'name', 'Bwrdd Iechyd Prifysgol Betsi Cadwaladr'),
(155820, 120709, 'fr', 'name', 'TƩlƩcom SudParis'),
(155821, 120710, 'it', 'name', 'SocietĆ  Romana di Scienze Naturali ETS'),
(155822, 120711, 'en', 'name', 'Bali Tourism Polytechnic'),
(155823, 120711, 'id', 'name', 'Politeknik Pariwisata Bali'),
(155824, 120712, 'fr', 'name', 'Laboratoire Evolution et Diversite Biologique'),
(155825, 120712, 'en', 'name', 'Laboratory Evolution and Biological Diversity'),
(155826, 120713, 'en', 'name', 'Centre for Cancer Biology'),
(155827, 120714, 'fr', 'name', 'TƩlescope Bernard Lyot'),
(155828, 120715, 'fr', 'name', 'Centre IntĆ©grĆ© Universitaire en SantĆ© et Services Sociaux de l''Ouest-de-l''Ǝle-de-MontrĆ©al-St. Mary'),
(155829, 120715, 'en', 'name', 'St Mary''s Hospital Centre'),
(155830, 120716, 'en', 'name', 'College of Dental Sciences & Research Centre'),
(155831, 120717, 'en', 'name', 'Digestive Health Research Institute'),
(155832, 120717, 'fr', 'name', 'Institut de Recherche en SantƩ Digestive'),
(155833, 120718, 'de', 'name', 'Stiftung für Kunst, Kultur und Geschichte'),
(155834, 120719, 'fr', 'name', 'Laboratoire d''Excellence TULIP'),
(155835, 120720, 'tr', 'name', 'Ƈalışma ve Sosyal Güvenlik Eğitim ve Araştırma Merkezi'),
(155836, 120721, 'en', 'name', 'National Brain Center'),
(155837, 120722, 'en', 'name', 'Latin America Bioimaging'),
(155838, 120723, 'en', 'name', 'Gƶttingen State and University Library'),
(155839, 120723, 'de', 'name', 'NiedersƤchsische Staats-und UniversitƤtsbibliothek Gƶttingen'),
(155840, 120724, 'en', 'name', 'Inner Mongolia Electric Power Research Institute'),
(155841, 120724, 'zh', 'name', 'å†…č’™å¤ē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢'),
(155842, 120725, 'en', 'name', 'ALS Therapy Development Institute'),
(155843, 120726, 'en', 'name', 'Huįŗæ University of Medicine and Pharmacy'),
(155844, 120726, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y Dược, ĐẔi hį»c Huįŗæ'),
(155845, 120727, 'fr', 'name', 'Laboratoire de recherches IntƩgratives en Neurosciences et psychologie Cognitive'),
(155846, 120728, 'en', 'name', 'Thuringian State Office for Heritage Management and Archaeology'),
(155847, 120728, 'de', 'name', 'Thüringer Landesamt für Denkmalpflege und Archäologie'),
(155848, 120729, 'en', 'name', 'Mangalore University'),
(155849, 120729, 'hi', 'name', 'ą¤®ą¤‚ą¤—ą¤²ą„Œą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(155850, 120729, 'mr', 'name', 'ą¤®ą¤‚ą¤—ą¤³ą„‚ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(155851, 120729, 'kn', 'name', 'ಮಂಗಳೂರು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(155852, 120730, 'en', 'name', 'Bern Historical Museum'),
(155853, 120730, 'de', 'name', 'Bernisches Historisches Museum'),
(155854, 120730, 'fr', 'name', 'MusƩe d''Histoire Bern'),
(155855, 120731, 'en', 'name', 'PUR'),
(155856, 120732, 'en', 'name', 'Amentum (United States)'),
(155857, 120733, 'sr', 'name', 'Institut za zemljiŔte'),
(155858, 120733, 'en', 'name', 'Institute of Soil Science'),
(155859, 120734, 'en', 'name', 'Pakuan University'),
(155860, 120734, 'id', 'name', 'Universitas Pakuan'),
(155861, 120735, 'fr', 'name', 'UniversitƩ de Montpellier Paul-ValƩry'),
(155862, 120736, 'en', 'name', 'Central University of Mineiros'),
(155863, 120736, 'pt', 'name', 'Centro UniversitƔrio de Mineiros'),
(155864, 120737, 'en', 'name', 'French Research Institute for Development'),
(155865, 120737, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(155866, 120738, 'en', 'name', 'University of Belgrade – Faculty of Philosophy'),
(155867, 120738, 'sr', 'name', 'Univerzitet u Beogradu – Filozofski fakultet'),
(155868, 120739, 'es', 'name', 'Universidad de Rochester'),
(155869, 120739, 'en', 'name', 'University of Rochester'),
(155870, 120739, 'fr', 'name', 'UniversitƩ de Rochester'),
(155871, 120740, 'id', 'name', 'Universitas Sebelas April'),
(155872, 120741, 'en', 'name', 'Texas Medical Center'),
(155873, 120742, 'en', 'name', 'Espanola Animal Hospital'),
(155874, 120743, 'en', 'name', 'Arizona Department of Transportation'),
(155875, 120744, 'pt', 'name', 'Centro Regional de CiĆŖncias Nucleares do Nordeste'),
(155876, 120745, 'nl', 'name', 'Nationaal instituut voor Subatomaire Fysica'),
(155877, 120745, 'en', 'name', 'National Institute for Subatomic Physics'),
(155878, 120746, 'en', 'name', 'Institute of Biophysics'),
(155879, 120746, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē”Ÿē‰©ē‰©ē†ē ”ē©¶ę‰€'),
(155880, 120747, 'en', 'name', 'Ministry of Science and Technology'),
(155881, 120747, 'ar', 'name', 'وزارت سائنس و Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(155882, 120748, 'en', 'name', 'Manisa Mental Health and Diseases Hospital'),
(155883, 120748, 'tr', 'name', 'Mani̇sa Ruh Sağliği Ve Hastaliklari Hastanesi̇'),
(155884, 120749, 'en', 'name', 'Arthur Jarvis University'),
(155885, 120750, 'ro', 'name', 'Institutul National de Sanatate Publica'),
(155886, 120750, 'en', 'name', 'National Institute of Public Health'),
(155887, 120751, 'id', 'name', 'Politeknik Keuangan Negara STAN'),
(155888, 120751, 'en', 'name', 'Polytechnic of State Finance STAN'),
(155889, 120752, 'en', 'name', 'Interdisciplinary Transformation University Austria'),
(155890, 120753, 'en', 'name', 'Institute of Physics for Advanced Materials, Nanotechnology and Photonics'),
(155891, 120753, 'pt', 'name', 'Instituto de Física de Materiais Avançados, Nanotecnologia e Fotónica'),
(155892, 120754, 'fr', 'name', 'REGALIA: RƩgulation de l''Intelligence Artificielle'),
(155893, 120755, 'en', 'name', 'Ho Chi Minh City University of Technology and Engineering'),
(155894, 120755, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ Kỹ thuįŗ­t ThĆ nh phố Hồ ChĆ­ Minh'),
(155895, 120756, 'en', 'name', 'V. N. Karazin Kharkiv National University'),
(155896, 120756, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’. Š. ŠšŠ°Ń€Š°Š·Ń–Š½Š°'),
(155897, 120756, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. Š. ŠšŠ°Ń€Š°Š·ŠøŠ½Š°'),
(155898, 120757, 'en', 'name', 'Connecticut General Assembly'),
(155899, 120758, 'en', 'name', 'Hungarian Academy of Arts Research Institute of Art Theory and Methodology'),
(155900, 120759, 'fr', 'name', 'UniversitƩ Toulouse III - Paul Sabatier'),
(155901, 120760, 'en', 'name', 'Amref International University'),
(155902, 120761, 'en', 'name', 'International University of Tourism and Hospitality'),
(155903, 120761, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŃƒŃ€ŠøŠ·Š¼Š° Šø гостеприимства'),
(155904, 120762, 'ro', 'name', 'Spitalul Clinic de Urgență pentru Copii "SfĆ¢nta Maria" - Iași'),
(155905, 120763, 'nl', 'name', 'Koninklijke Philips'),
(155906, 120763, 'no_lang_code', 'name', 'Philips (Netherlands)'),
(155907, 120764, 'en', 'name', 'University of Kerala'),
(155908, 120764, 'fr', 'name', 'UniversitƩ du kerala'),
(155909, 120764, 'bn', 'name', 'কেরল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(155910, 120764, 'ta', 'name', 'கேரளா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(155911, 120764, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“øąµ¼ ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(155912, 120765, 'de', 'name', 'Generaldirektion Wasserstraßen und Schifffahrt'),
(155913, 120766, 'fr', 'name', 'Centre de SantƩ et de Services Sociaux Cavendish'),
(155914, 120767, 'en', 'name', 'SPA Risk (United States)'),
(155915, 120768, 'fr', 'name', 'Institut de pharmacologie de Sherbrooke'),
(155916, 120769, 'en', 'name', 'Technical University of Zvolen'),
(155917, 120769, 'sk', 'name', 'TechnickĆ” univerzita vo Zvolene'),
(155918, 120770, 'no_lang_code', 'name', 'Sinovac Biotech'),
(155919, 120770, 'zh', 'name', 'åŒ—äŗ¬ē§‘å…“ē”Ÿē‰©åˆ¶å“ęœ‰é™å…¬åø'),
(155920, 120771, 'en', 'name', 'Health and Resilience Institute (H+RI)'),
(155921, 120772, 'en', 'name', 'AIMOKA: Advanced and Innovative MOdeling for percutaneous Cancer tumor Ablation'),
(155922, 120773, 'en', 'name', 'Al Salam University'),
(155923, 120774, 'en', 'name', 'Children''s Hospital Foundation'),
(155924, 120775, 'no_lang_code', 'name', 'Red Hat (United States)'),
(155925, 120776, 'fr', 'name', 'UniversitƩ de Western Ontario'),
(155926, 120776, 'en', 'name', 'Western University'),
(155927, 120777, 'en', 'name', 'ENKO Chem'),
(155928, 120778, 'en', 'name', 'Indian Institute of Technology Kanpur'),
(155929, 120778, 'fr', 'name', 'Institut indien de technologie de kanpur'),
(155930, 120778, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾, ą¤•ą¤¾ą¤Øą¤Ŗą„‚ą¤°'),
(155931, 120778, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤¾ą¤Øą¤Ŗą„ą¤°'),
(155932, 120778, 'bn', 'name', 'ą¦†ą¦‡ą¦†ą¦‡ą¦Ÿą¦æ কানপুর'),
(155933, 120778, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®¾ą®©ąÆą®ŖąÆ‚ą®°ąÆ'),
(155934, 120778, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“•ą“¾ąµŗą“Ŗąµ‚ąµ¼'),
(155935, 120779, 'en', 'name', 'University of California San Diego'),
(155936, 120780, 'en', 'name', 'Seattle Children''s Hospital'),
(155937, 120781, 'en', 'name', 'University of Victoria'),
(155938, 120781, 'fr', 'name', 'UniversitƩ de victoria'),
(155939, 120782, 'en', 'name', 'State Scientific Institution ā€œInstitute for Single Crystalsā€ of National Academy of Sciences of Ukraine'),
(155940, 120782, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-технологічний комплекс ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š½Š¾ŠŗŃ€ŠøŃŃ‚Š°Š»Ń–Š²ā€ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(155941, 120783, 'fr', 'name', 'Centre universitaire de santƩ McGill'),
(155942, 120783, 'en', 'name', 'McGill University Health Centre'),
(155943, 120784, 'en', 'name', 'Bureau of Justice Statistics'),
(155944, 120785, 'fr', 'name', 'Empenn'),
(155945, 120786, 'en', 'name', 'Bavarian Center for Applied Energy Research'),
(155946, 120786, 'de', 'name', 'Bayerisches Zentrum für Angewandte Energieforschung'),
(155947, 120787, 'en', 'name', 'Carol Davila University of Medicine and Pharmacy'),
(155948, 120787, 'ro', 'name', 'Universitatea de Medicină și Farmacie Carol Davila'),
(155949, 120788, 'fr', 'name', 'Pharmacochimie et Pharmacologie pour le DƩveloppement'),
(155950, 120789, 'id', 'name', 'Institut Teknologi Kesehatan Malang Widya Cipta Husada'),
(155951, 120790, 'en', 'name', 'Contemporary Amperex Technology Co., Limited.'),
(155952, 120791, 'de', 'name', 'Bundesministerium für Familie, Senioren, Frauen und Jugend');
INSERT INTO `ror_settings` VALUES
(155953, 120791, 'en', 'name', 'Federal Ministry for Family Affairs, Senior Citizens, Women and Youth'),
(155954, 120792, 'en', 'name', 'State Museum of Nature of V. N. Karazin Kharkiv National University'),
(155955, 120792, 'uk', 'name', 'Державний музей прироГи Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ¾Š³Š¾ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ імені Š’. Š. ŠšŠ°Ń€Š°Š·Ń–Š½Š°'),
(155956, 120793, 'en', 'name', 'University of Belgrade – Faculty of Economics and Business'),
(155957, 120793, 'sr', 'name', 'Univerzitet u Beogradu – Ekonomski fakultet'),
(155958, 120794, 'en', 'name', 'Erzincan Binali Yıldırım University'),
(155959, 120794, 'tr', 'name', 'Erzincan Binali Yıldırım Üniversitesi'),
(155960, 120795, 'pt', 'name', 'Universidade Portucalense'),
(155961, 120796, 'fr', 'name', 'Centre Hospitalier Universitaire de Sherbrooke'),
(155962, 120797, 'en', 'name', 'Nigerian Institute of Social and Economic Research'),
(155963, 120798, 'en', 'name', 'Cleveland Clinic Akron General'),
(155964, 120799, 'fr', 'name', 'Institut universitaire en santƩ mentale de MontrƩal'),
(155965, 120800, 'en', 'name', 'Federal Research Center for Information and Computational Technologies'),
(155966, 120800, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр информационных Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… технологий'),
(155967, 120801, 'en', 'name', 'Institute of Plant Protection of the National Academy of Agrarian Sciences of Ukraine'),
(155968, 120801, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š·Š°Ń…ŠøŃŃ‚Ńƒ рослин ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(155969, 120802, 'en', 'name', 'Great Ormond Street Hospital for Children NHS Foundation Trust'),
(155970, 120803, 'en', 'name', 'AIIDE Publishing & Digital'),
(155971, 120803, 'th', 'name', 'ąø«ą¹‰ąø²ąø‡ąø«ąøøą¹‰ąø™ąøŖą¹ˆąø§ąø™ąøˆąø³ąøąø±ąø” เอไอไอดีอี ąøžąø±ąøšąø„ąø“ąøŠąøŠąø“ąø‡ ą¹ąø­ąø™ąø”ą¹Œ ąø”ąø“ąøˆąø“ąø—ąø±ąø„'),
(155972, 120804, 'en', 'name', 'Shariaty Technical College'),
(155973, 120805, 'es', 'name', 'Agencia de Investigación e Innovación de Castilla-La-Mancha'),
(155974, 120806, 'en', 'name', 'Great Lakes Crystal Technologies'),
(155975, 120807, 'en', 'name', 'Institute of Marine and Limnic Studies'),
(155976, 120808, 'en', 'name', 'National Institute of Science Education and Research'),
(155977, 120808, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(155978, 120808, 'or', 'name', 'ą¬œą¬¾ą¬¤ą­€ą­Ÿ ą¬¬ą¬æą¬œą­ą¬žą¬¾ą¬Ø ą¬¶ą¬æą¬•ą­ą¬·ą¬¾ ą¬ą¬¬ą¬‚ ଗବେଷଣା ą¬Ŗą­ą¬°ą¬¤ą¬æą¬·ą­ą¬ ą¬¾ą¬Ø'),
(155979, 120808, 'ml', 'name', 'ą“Øąµˆą“øąµ¼'),
(155980, 120809, 'en', 'name', 'Ramon Llull University'),
(155981, 120809, 'es', 'name', 'Universidad Ramon Llull'),
(155982, 120809, 'ca', 'name', 'Universitat Ramon Llull'),
(155983, 120810, 'fr', 'name', 'Clinique de l''Acte et PSychosexualitƩ'),
(155984, 120811, 'en', 'name', 'Ministry of Education'),
(155985, 120811, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ł…Ł…Ł„ŁƒŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ©'),
(155986, 120812, 'id', 'name', 'Universitas PGRI Sumatera Barat'),
(155987, 120813, 'de', 'name', 'Hochschule für Musik Detmold'),
(155988, 120813, 'en', 'name', 'University of Music Detmold'),
(155989, 120814, 'en', 'name', 'HD Hyundai Europe Research and Development Center (Germany)'),
(155990, 120815, 'en', 'name', 'Institute of Ethnology'),
(155991, 120815, 'hu', 'name', 'MTA BTK NƩprajztudomƔnyi IntƩzet'),
(155992, 120816, 'en', 'name', 'NanoMedTrix'),
(155993, 120817, 'en', 'name', 'Federal Highway Police of Brazil'),
(155994, 120817, 'pt', 'name', 'Polƭcia RodoviƔria Federal'),
(155995, 120818, 'en', 'name', 'Patan Multiple Campus'),
(155996, 120819, 'en', 'name', 'IIMT University'),
(155997, 120820, 'pt', 'name', 'Instituto de QuĆ­mica de SĆ£o Carlos'),
(155998, 120820, 'en', 'name', 'SĆ£o Carlos Institute of Chemistry'),
(155999, 120821, 'en', 'name', 'Texas A&M University-Victoria'),
(156000, 120822, 'en', 'name', 'Quantum AetherDynamics Institute'),
(156001, 120823, 'fr', 'name', 'Montpellier-Ecologie, Evolution, BiodiversitƩ'),
(156002, 120824, 'en', 'name', 'High Tech High Graduate School of Education'),
(156003, 120825, 'en', 'name', 'Institute of History'),
(156004, 120825, 'hu', 'name', 'Magyar TudomƔnyos AkadƩmia TƶrtƩnettudomƔnyi IntƩzete'),
(156005, 120826, 'ca', 'name', 'Escola d''Administració Pública de Catalunya'),
(156006, 120826, 'es', 'name', 'Escuela de Administración Pública de Cataluña'),
(156007, 120826, 'en', 'name', 'Public Administration School of Catalonia'),
(156008, 120826, 'fr', 'name', 'Ɖcole d''Administration Publique de Catalogne'),
(156009, 120827, 'en', 'name', 'Paris 1 PanthƩon-Sorbonne University'),
(156010, 120827, 'fr', 'name', 'UniversitƩ Paris 1 PanthƩon-Sorbonne'),
(156011, 120828, 'ca', 'name', 'Banc de Sang i Teixits'),
(156012, 120828, 'es', 'name', 'Banco de Sangre y Tejidos'),
(156013, 120828, 'en', 'name', 'Blood and Tissue Bank'),
(156014, 120829, 'en', 'name', 'MBI - Marietta Blau Institute for Particle Physics'),
(156015, 120829, 'de', 'name', 'MBI - Marietta-Blau-Institut für Teilchenphysik'),
(156016, 120830, 'en', 'name', 'Tanzania Agriculture Research Institute'),
(156017, 120831, 'it', 'name', 'Museo Casa Don Bosco'),
(156018, 120832, 'en', 'name', 'Hue University'),
(156019, 120832, 'vi', 'name', 'ĐẔi hį»c Huįŗæ'),
(156020, 120833, 'en', 'name', 'Academic Scientific Research Group'),
(156021, 120834, 'it', 'name', 'Ospedale di San DonĆ  di Piave'),
(156022, 120835, 'en', 'name', 'Tsinghua University'),
(156023, 120835, 'zh', 'name', 'ęø…åŽå¤§å­¦'),
(156024, 120836, 'it', 'name', 'Accademia di Belle Arti dell''Aquila'),
(156025, 120837, 'en', 'name', 'Florida Department of Agriculture and Consumer Services'),
(156026, 120838, 'ca', 'name', 'Hospital ClĆ­nic de Barcelona'),
(156027, 120839, 'en', 'name', 'Mars Wrigley Confectionery'),
(156028, 120840, 'en', 'name', 'The Green Institute of Chemical Biomedical and Environmental Sciences'),
(156029, 120841, 'es', 'name', 'Red de Investigadores Educativos Chihuahua'),
(156030, 120842, 'fr', 'name', 'Institut de MƩcanique des Fluides de Toulouse'),
(156031, 120842, 'en', 'name', 'Institute of Fluid Mechanics of Toulouse'),
(156032, 120843, 'en', 'name', 'Jawaharlal Nehru Technological University, Hyderabad'),
(156033, 120843, 'hi', 'name', 'जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą¤æą¤•ą¤² ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€, ą¤¹ą„ˆą¤¦ą¤°ą¤¾ą¤¬ą¤¾ą¤¦'),
(156034, 120843, 'ta', 'name', 'ą®œą®µą®•ą®°ąÆą®²ą®¾ą®²ąÆ நேரு ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®µą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(156035, 120843, 'te', 'name', 'ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ సాంకేతిక ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(156036, 120844, 'fr', 'name', 'De la PrƩhistoire Ơ l''Actuel : Culture, Environnement et Anthropologie'),
(156037, 120845, 'id', 'name', 'Universitas Pembangunan Nasional Veteran Yogyakarta'),
(156038, 120846, 'fr', 'name', 'Centre de Recherche en Acquisition et Traitement de l''Image pour la SantƩ'),
(156039, 120847, 'en', 'name', 'University of Nevada, Reno'),
(156040, 120848, 'en', 'name', 'Brain Foundation'),
(156041, 120849, 'fr', 'name', 'Centre de Résonance Magnétique des Systèmes Biologiques'),
(156042, 120850, 'en', 'name', 'University of Belgrade – Faculty of Sports and Physical Education'),
(156043, 120850, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet sporta i fizičkog vaspitanja'),
(156044, 120851, 'es', 'name', 'Universidad Rovira i Virgili'),
(156045, 120851, 'ca', 'name', 'Universitat Rovira i Virgili'),
(156046, 120852, 'id', 'name', 'Universitas Islam Syarifuddin Lumajang'),
(156047, 120853, 'no_lang_code', 'name', 'Novartis (Israel)'),
(156048, 120854, 'en', 'name', 'Melbourne Institute of Technology'),
(156049, 120855, 'en', 'name', 'East Bay Community Recovery Project'),
(156050, 120856, 'en', 'name', 'Pontifical Catholic University of Peru'),
(156051, 120856, 'es', 'name', 'Pontificia Universidad Católica del Perú'),
(156052, 120857, 'ca', 'name', 'Institut de Recerca BiomĆØdica Catalunya Sud'),
(156053, 120858, 'en', 'name', 'CuraƧao Medical Center'),
(156054, 120859, 'id', 'name', 'Universitas Cahaya Prima'),
(156055, 120860, 'en', 'name', 'Thailand Science Research and Innovation'),
(156056, 120860, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø„ąø“ąø°ąøąø£ąø£ąø”ąøąø²ąø£ąøŖą¹ˆąø‡ą¹€ąøŖąø£ąø“ąø”ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œ ąø§ąø“ąøˆąø±ąø¢ą¹ąø„ąø°ąø™ąø§ąø±ąø•ąøąø£ąø£ąø”'),
(156057, 120861, 'pt', 'name', 'FATEC São José dos Campos'),
(156058, 120862, 'fr', 'name', 'Services rƩpartis, Architectures, MOdƩlisation, Validation, Administration des RƩseaux'),
(156059, 120863, 'ca', 'name', 'Centre d''Estudis de Temes Contemporanis'),
(156060, 120863, 'en', 'name', 'Centre for Contemporary Studies'),
(156061, 120864, 'en', 'name', 'Al-Zahrawi University'),
(156062, 120864, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ł‡Ų±Ų§ŁˆŁŠ'),
(156063, 120865, 'en', 'name', 'Amity University'),
(156064, 120865, 'hi', 'name', 'ą¤ą¤®ą¤æą¤Ÿą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(156065, 120866, 'fr', 'name', 'HƓpital Universitaire International Cheikh Khalifa'),
(156066, 120866, 'ar', 'name', 'المستؓفى Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠ Ų§Ł„Ų“ŁŠŲ® زايد'),
(156067, 120867, 'en', 'name', 'Romanian Academy'),
(156068, 120868, 'en', 'name', 'Institute of Computational Modeling'),
(156069, 120868, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š³Š¾ Š¼Š¾Š“ŠµŠ»ŠøŃ€Š¾Š²Š°Š½ŠøŃ Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(156070, 120869, 'en', 'name', 'University of Belgrade – Technical Faculty in Bor'),
(156071, 120869, 'sr', 'name', 'Univerzitet u Beogradu – Tehnički fakultet u Boru'),
(156072, 120870, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Khoa hį»c XĆ£ hį»™i vĆ  NhĆ¢n văn'),
(156073, 120870, 'en', 'name', 'VNU University of Social Sciences and Humanities'),
(156074, 120871, 'en', 'name', 'Sankara Eye Hospital, Guntur'),
(156075, 120872, 'de', 'name', 'Klinikum Magdeburg'),
(156076, 120873, 'en', 'name', 'Technical University of Darmstadt'),
(156077, 120873, 'de', 'name', 'Technische UniversitƤt Darmstadt'),
(156078, 120874, 'en', 'name', 'Maharashtra Animal and Fishery Sciences University'),
(156079, 120874, 'mr', 'name', 'ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤Ŗą¤¶ą„ व ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ , ą¤Øą¤¾ą¤—ą¤Ŗą„‚ą¤°'),
(156080, 120875, 'en', 'name', 'Cancer Consortium'),
(156081, 120876, 'fr', 'name', 'Centre de Recherches sur la Cognition Animale'),
(156082, 120876, 'en', 'name', 'Research Centre on Animal Cognition'),
(156083, 120877, 'en', 'name', 'International Science and Technology Center'),
(156084, 120878, 'fr', 'name', 'Centre rĆ©gional d’exploration fonctionnelle et ressources expĆ©rimentales'),
(156085, 120878, 'en', 'name', 'Regional Center for Functional Exploration and Experimental Resources'),
(156086, 120879, 'en', 'name', 'CCCC Road & Bridge South China Engineering Co., Ltd (China)'),
(156087, 120880, 'en', 'name', 'MGM Institute of Physiotherapy'),
(156088, 120881, 'en', 'name', 'GNS Science'),
(156089, 120882, 'en', 'name', 'Sankara Eye Hospital, Shimoga'),
(156090, 120883, 'no_lang_code', 'name', 'GITAM University'),
(156091, 120883, 'hi', 'name', 'ą¤—ą¤¾ą¤ą¤§ą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤Øą„ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(156092, 120883, 'pa', 'name', 'ਗਾਂਧੀ ąØ‡ą©°ąØøąØŸą©€ąØšąØæąØŠąØŸ ਔਫ਼ ąØŸą©ˆąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ਐਂਔ ąØ®ą©ˆąØØą©‡ąØœąØ®ą©ˆąØ‚ąØŸ'),
(156093, 120883, 'te', 'name', 'గీతం ą°”ą±€ą°®ą±ą°”ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(156094, 120884, 'fr', 'name', 'Centre de ressources, d''expertise et de performance sportive de Toulouse'),
(156095, 120885, 'fr', 'name', 'Institut de Chimie de la Matière Condensée de Bordeaux'),
(156096, 120886, 'nl', 'name', 'Centrum Wiskunde & Informatica'),
(156097, 120886, 'en', 'name', 'National Research Institute for Mathematics and Computer Science'),
(156098, 120887, 'en', 'name', 'Taiwan Centers for Disease Control'),
(156099, 120887, 'zh', 'name', 'č”›ē”Ÿē¦åˆ©éƒØē–¾ē—…ē®”åˆ¶ē½²'),
(156100, 120888, 'en', 'name', 'rOpenSci'),
(156101, 120889, 'it', 'name', 'NODES S.c.a.r.l'),
(156102, 120890, 'en', 'name', 'Benazir Bhutto Shaheed University Lyari'),
(156103, 120890, 'ur', 'name', 'ŲØŪŒŁ†ŲøŪŒŲ± بھٹو ؓہید ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ Ł„ŪŒŲ§Ų±ŪŒ Ś©Ų±Ų§Ś†ŪŒ'),
(156104, 120891, 'nl', 'name', 'Universitair Medisch Centrum Utrecht'),
(156105, 120891, 'en', 'name', 'University Medical Center Utrecht'),
(156106, 120892, 'en', 'name', 'Vallurupalli Nageswara Rao Vignana Jyothi Institute of Engineering and Technology'),
(156107, 120893, 'cs', 'name', 'Hradec KrƔlovƩ Region'),
(156108, 120894, 'ca', 'name', 'Fundació Blanquerna'),
(156109, 120895, 'en', 'name', 'Federal Scientific and Clinical Center of Medical Rehabilitation and Balneology of the Federal Medical and Biological Agency of Russia'),
(156110, 120896, 'de', 'name', 'PƤdagogische Hochschule Wien'),
(156111, 120896, 'en', 'name', 'University College of Teacher Education Vienna'),
(156112, 120897, 'en', 'name', 'Austrian Institute of Technology'),
(156113, 120898, 'es', 'name', 'Instituto de Investigaciones en Ciencias de la Educación'),
(156114, 120899, 'es', 'name', 'Universidad de La CiƩnega del estado de MichoacƔn Ocampo'),
(156115, 120900, 'nl', 'name', 'Radboud Universiteit Nijmegen'),
(156116, 120900, 'en', 'name', 'Radboud University Nijmegen'),
(156117, 120900, 'fr', 'name', 'Université Radboud de Nimègue'),
(156118, 120901, 'no_lang_code', 'name', 'Home Depot (United States)'),
(156119, 120902, 'en', 'name', 'IFIM Institutions'),
(156120, 120903, 'en', 'name', 'Envision Energy (China)'),
(156121, 120904, 'pt', 'name', 'CIAUD-UPT'),
(156122, 120905, 'en', 'name', 'Chemical Engineering Lab of Toulouse'),
(156123, 120905, 'fr', 'name', 'Laboratoire de GƩnie Chimique'),
(156124, 120906, 'fr', 'name', 'Laboratoire de l''Intégration du Matériau au Système'),
(156125, 120907, 'en', 'name', 'Shiraz University of Medical Sciences'),
(156126, 120907, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ؓیراز'),
(156127, 120908, 'fr', 'name', 'LIttoral ENvironnement et SociƩtƩs'),
(156128, 120909, 'fr', 'name', 'Softmat - Chimie des colloĆÆdes, polymĆØres & assemblages complexes'),
(156129, 120910, 'en', 'name', 'Kerala University of Health Sciences'),
(156130, 120910, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“†ą“°ąµ‹ą“—ąµą“Æ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(156131, 120911, 'en', 'name', 'Center for Tobacco Products'),
(156132, 120912, 'fr', 'name', 'Micropesanteur Fondamentale et AppliquƩe'),
(156133, 120913, 'en', 'name', 'Branner Global University'),
(156134, 120914, 'fr', 'name', 'Centre Borelli'),
(156135, 120915, 'nl', 'name', 'Het Koninklijk Nederlands Instituut voor Onderzoek der Zee'),
(156136, 120915, 'en', 'name', 'Royal Netherlands Institute for Sea Research'),
(156137, 120916, 'en', 'name', 'Yanbu Industrial College'),
(156138, 120916, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ŁŠŁ†ŲØŲ¹ Ų§Ł„ŲµŁ†Ų§Ų¹ŁŠŲ©'),
(156139, 120917, 'en', 'name', 'GuaĆ­racĆ” Faculty'),
(156140, 120917, 'pt', 'name', 'UniGuairacƔ Centro UniversitƔrio'),
(156141, 120918, 'en', 'name', 'KeChow Pharma (China)'),
(156142, 120918, 'zh', 'name', 'äøŠęµ·ē§‘å·žčÆē‰©č‚”ä»½ęœ‰é™å…¬åø'),
(156143, 120919, 'en', 'name', 'St. Kabir Institute of Professional Studies'),
(156144, 120920, 'fr', 'name', 'Laboratoire de Recherche en Sciences VƩgƩtales'),
(156145, 120921, 'nl', 'name', 'Nederlands Instituut voor Radioastronomie'),
(156146, 120921, 'en', 'name', 'Netherlands Institute for Radio Astronomy'),
(156147, 120922, 'en', 'name', 'Indian Social Institute'),
(156148, 120923, 'en', 'name', 'Cambridge Military Hospital'),
(156149, 120924, 'sv', 'name', 'Stiftelsen Olle Engkvist ByggmƤstare'),
(156150, 120925, 'id', 'name', 'Universitas Islam Negeri Sayyid Ali Rahmatullah Tulungagung'),
(156151, 120926, 'en', 'name', 'West Pomeranian University of Technology in Szczecin'),
(156152, 120926, 'pl', 'name', 'Zachodniopomorski Uniwersytet Technologiczny w Szczecinie'),
(156153, 120927, 'it', 'name', 'Politecnico di Torino'),
(156154, 120927, 'en', 'name', 'Polytechnic University of Turin'),
(156155, 120927, 'fr', 'name', 'Ɖcole Polytechnique de Turin'),
(156156, 120928, 'fr', 'name', 'Institut de recherche Robert-SauvƩ en santƩ et en sƩcuritƩ du travail'),
(156157, 120929, 'ca', 'name', 'Fundació de Recerca ClĆ­nic Barcelona-Institut d’Investigacions BiomĆØdiques August Pi i Sunyer'),
(156158, 120930, 'en', 'name', 'Marbella Design Academy'),
(156159, 120931, 'es', 'name', 'Instituto Franco-Argentino sobre Estudios de Clima y sus Impactos'),
(156160, 120932, 'en', 'name', 'Health Education Research Foundation'),
(156161, 120933, 'pt', 'name', 'Instituto de Desenvolvimento SustentƔvel MamirauƔ'),
(156162, 120934, 'de', 'name', 'Hochschule Kempten'),
(156163, 120934, 'en', 'name', 'Kempten University of Applied Sciences'),
(156164, 120935, 'nl', 'name', 'GGD Twente'),
(156165, 120936, 'de', 'name', 'Hochschule für Angewandte Wissenschaften Kiel'),
(156166, 120937, 'en', 'name', 'Gambia National Library Service Authority'),
(156167, 120938, 'en', 'name', 'Del Institute of Technology'),
(156168, 120938, 'id', 'name', 'Institut Teknologi Del'),
(156169, 120939, 'en', 'name', 'Swedish Ethical Review Authority'),
(156170, 120940, 'en', 'name', 'University of Jordan'),
(156171, 120940, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(156172, 120941, 'en', 'name', 'Shared Health'),
(156173, 120941, 'fr', 'name', 'Soins communs'),
(156174, 120942, 'en', 'name', 'Netrokona Medical College'),
(156175, 120943, 'en', 'name', 'HFML-FELIX'),
(156176, 120944, 'en', 'name', 'P.S.V College of Pharmaceutical Science and Research'),
(156177, 120945, 'id', 'name', 'Politeknik Bentara Citra Bangsa'),
(156178, 120946, 'en', 'name', 'General Directorate of Agricultural Research and Policies'),
(156179, 120946, 'tr', 'name', 'Tarımsal Araştırmalar ve Politikalar Genel Müdürlüğü'),
(156180, 120947, 'pt', 'name', 'Faculdades de Tecnologia do Estado de SĆ£o Paulo'),
(156181, 120947, 'en', 'name', 'SĆ£o Paulo State Technological College'),
(156182, 120948, 'es', 'name', 'Universidad IndoamƩrica'),
(156183, 120949, 'pt', 'name', 'GeoBioTec - GeobiociĆŖncias Geotecnologias e Geo-engenharias'),
(156184, 120950, 'pl', 'name', 'Akademia Techniczno-Artystyczna Nauk Stosowanych w Warszawie'),
(156185, 120951, 'en', 'name', 'Institute for Complex Systems'),
(156186, 120951, 'it', 'name', 'Istituto dei Sistemi Complessi'),
(156187, 120952, 'en', 'name', 'Shaheed Benazir Bhutto University'),
(156188, 120952, 'sd', 'name', 'Ų“Ł‡ŁŠŲÆ ŲØŁŠŁ†ŲøŁŠŲ± Ś€Ł½Łˆ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠŲŒ Ų“Ł‡ŁŠŲÆ ŲØŁŠŁ†ŲøŁŠŲ±Ų¢ŲØŲ§ŲÆ'),
(156189, 120953, 'en', 'name', 'Fujairah University'),
(156190, 120953, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŲ¬ŁŠŲ±Ų©'),
(156191, 120954, 'fr', 'name', 'Institut national d''Ʃtudes dƩmographiques'),
(156192, 120954, 'en', 'name', 'National Institute for Demographic Studies'),
(156193, 120955, 'fr', 'name', 'Centre de CompƩtences NanoSciences Ile-de-France'),
(156194, 120956, 'fr', 'name', 'GƩosciences Environnement Toulouse'),
(156195, 120957, 'cy', 'name', 'Coleg Imperial Llundain'),
(156196, 120957, 'en', 'name', 'Imperial College London'),
(156197, 120958, 'en', 'name', 'Center for Particle Physics of Marseille'),
(156198, 120958, 'fr', 'name', 'Centre de physique des particules de Marseille'),
(156199, 120959, 'en', 'name', 'Kaiser Permanente Fremont Medical Center'),
(156200, 120960, 'en', 'name', 'Digital Health Research Center'),
(156201, 120961, 'fr', 'name', 'Langage, langues et cultures d''Afrique'),
(156202, 120961, 'en', 'name', 'Languages and Cultures of Sub-Saharan Africa'),
(156203, 120962, 'fr', 'name', 'ESPI Marseille'),
(156204, 120963, 'en', 'name', 'Guangxi University for Nationalities'),
(156205, 120963, 'zh', 'name', 'å¹æč„æę°‘ę—å¤§å­¦'),
(156206, 120964, 'fr', 'name', 'Ɖtablissement public Campus Condorcet'),
(156207, 120965, 'en', 'name', 'Cleveland Clinic'),
(156208, 120966, 'en', 'name', 'National Institute of Pharmaceutical Education and Research (NIPER) - Ahmedabad'),
(156209, 120967, 'en', 'name', 'General Hospital of Kyparissia'),
(156210, 120967, 'el', 'name', 'ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ĪšĻ…Ļ€Ī±ĻĪ¹ĻƒĻƒĪÆĪ±Ļ‚'),
(156211, 120968, 'en', 'name', 'Nexus Analytica (Egypt)'),
(156212, 120969, 'fi', 'name', 'Ruotsin maatalousyliopisto'),
(156213, 120969, 'sv', 'name', 'Sveriges lantbruksuniversitet'),
(156214, 120969, 'en', 'name', 'Swedish University of Agricultural Sciences'),
(156215, 120970, 'en', 'name', 'Nexus Analytica (The Netherlands)'),
(156216, 120971, 'en', 'name', 'Support and research unit OSUR'),
(156217, 120971, 'fr', 'name', 'UnitƩ d''Appui et de Recherche OSUR'),
(156218, 120972, 'en', 'name', 'Lomonosov Moscow State University'),
(156219, 120972, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М.Š’. Ломоносова'),
(156220, 120973, 'sv', 'name', 'Rƶda Korsets Hƶgskola'),
(156221, 120973, 'en', 'name', 'Swedish Red Cross University'),
(156222, 120974, 'en', 'name', 'Technical and Vocational University'),
(156223, 120974, 'fa', 'name', 'دانؓگاه Ł…Ł„ŪŒ مهارت'),
(156224, 120975, 'en', 'name', 'Vall d''Hebron Institute of Oncology'),
(156225, 120975, 'ca', 'name', 'Vall d’Hebron Institut d’Oncologia'),
(156226, 120976, 'es', 'name', 'ClĆ­nica Synaptica'),
(156227, 120977, 'es', 'name', 'Instituto de ArqueologĆ­a'),
(156228, 120978, 'pt', 'name', 'CINTESIS.UPT'),
(156229, 120979, 'en', 'name', 'Animal Production Research Center'),
(156230, 120980, 'en', 'name', 'SHIHARR PUBLISHING LIMITED'),
(156231, 120980, 'no_lang_code', 'name', 'SHIHARR PUBLISHING LIMITED (Hong Kong)'),
(156232, 120980, 'zh', 'name', 'ę‹¾čÆå‡ŗē‰ˆęœ‰é™å…¬åø'),
(156233, 120981, 'ga', 'name', 'An ColƔiste Ollscoile Baile Ɓtha Cliath'),
(156234, 120981, 'en', 'name', 'University College Dublin'),
(156235, 120982, 'en', 'name', 'Prague Business School'),
(156236, 120982, 'cs', 'name', 'Prazska podnikatelska skola'),
(156237, 120983, 'fr', 'name', 'UnitƩ d''Appui et de Recherche OSUPS'),
(156238, 120984, 'en', 'name', 'RAND School of Public Policy'),
(156239, 120985, 'en', 'name', 'Newcastle University'),
(156240, 120986, 'en', 'name', 'Saifee Hospital Tanzania'),
(156241, 120987, 'de', 'name', 'Rheinische Hochschule Kƶln'),
(156242, 120988, 'en', 'name', 'University of the Sunshine Coast'),
(156243, 120989, 'fr', 'name', 'Institut SupƩrieur des Techniques MƩdicales de Bukavu'),
(156244, 120990, 'fr', 'name', 'Langues, Textes, Traitements Informatiques, Cognition'),
(156245, 120991, 'en', 'name', 'Wildlife Science and Conservation Center of Mongolia'),
(156246, 120992, 'en', 'name', 'Opera Network'),
(156247, 120993, 'en', 'name', 'CapeNature'),
(156248, 120994, 'en', 'name', 'University of Belgrade – Faculty of Organizational Sciences'),
(156249, 120994, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet organizacionih nauka'),
(156250, 120995, 'en', 'name', 'ELTE Research Centre for the Humanities'),
(156251, 120996, 'fr', 'name', 'Laboratoire de recherche en Ɖconomie'),
(156252, 120997, 'en', 'name', 'Yozgat Bozok University'),
(156253, 120997, 'tr', 'name', 'Yozgat Bozok Üniversitesi'),
(156254, 120998, 'it', 'name', 'Pontificia FacoltĆ  Teologica di Sicilia'),
(156255, 120999, 'en', 'name', 'Office of Justice Programs'),
(156256, 121000, 'vi', 'name', 'Bệnh viện Tai MÅ©i Hį»ng TP.HCM'),
(156257, 121000, 'en', 'name', 'Ho Chi Minh City Otorhinolaryngology Hospital'),
(156258, 121001, 'fr', 'name', 'Huma-Num'),
(156259, 121002, 'en', 'name', 'Tjut Nyak Dhien University'),
(156260, 121002, 'id', 'name', 'Universitas Tjut Nyak Dhien'),
(156261, 121003, 'fr', 'name', 'DIASCOPE - Domaine ExpƩrimental de Melgueil'),
(156262, 121004, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Saint-Ɖtienne'),
(156263, 121005, 'fr', 'name', 'Gouvernance, Risque, Environnement, DƩveloppement'),
(156264, 121006, 'en', 'name', 'Scientific and Research Institute of Providing Legal Framework for the Innovative Development of National Academy of Legal Sciences of Ukraine'),
(156265, 121006, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ правового Š·Š°Š±ŠµŠ·ŠæŠµŃ‡ŠµŠ½Š½Ń інноваційного Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії правових наук України'),
(156266, 121007, 'en', 'name', 'National Center for Sustainable Agriculture Research and Development'),
(156267, 121007, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ لأبحاث وتطوير الزراعة المستدامة'),
(156268, 121008, 'en', 'name', 'Amity University Mumbai'),
(156269, 121008, 'mr', 'name', 'ą¤…ą„…ą¤®ą¤æą¤Ÿą„€ ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€, ą¤®ą„ą¤‚ą¤¬ą¤ˆ'),
(156270, 121009, 'ca', 'name', 'Institut CatalĆ  de la Salut'),
(156271, 121010, 'en', 'name', 'Global University'),
(156272, 121011, 'de', 'name', 'Kirchliche PƤdagogische Hochschule Wien/Niederƶsterreich'),
(156273, 121011, 'en', 'name', 'Private University College of Teacher Education of Christian Churches Austria'),
(156274, 121012, 'bn', 'name', 'Bhumi Byabasthapan Prashikshan Kendra'),
(156275, 121012, 'en', 'name', 'Land Management Training Center'),
(156276, 121013, 'es', 'name', 'Universidad del Zulia'),
(156277, 121013, 'en', 'name', 'University of Zulia'),
(156278, 121014, 'fr', 'name', 'Institut Royal SupƩrieur de DƩfense'),
(156279, 121014, 'nl', 'name', 'Koninklijk Hoger Instituut voor Defensie'),
(156280, 121014, 'en', 'name', 'Royal Higher Institute for Defence'),
(156281, 121015, 'en', 'name', 'Quantitative Engineering Design'),
(156282, 121016, 'es', 'name', 'TecNM Campus Tamazunchale'),
(156283, 121017, 'en', 'name', 'Nanjing University of Industry Technology'),
(156284, 121017, 'zh', 'name', 'å—äŗ¬å·„äøščŒäøšęŠ€ęœÆå¤§å­¦'),
(156285, 121018, 'en', 'name', 'M.H. Saboo Siddik College Of Engineering'),
(156286, 121019, 'en', 'name', 'Office of Energy Efficiency and Renewable Energy'),
(156287, 121020, 'en', 'name', 'Lhokseumawe State Polytechnic'),
(156288, 121020, 'id', 'name', 'Politeknik Negeri Lhokseumawe'),
(156289, 121021, 'en', 'name', 'MES Mampad College (Autonomous)'),
(156290, 121022, 'en', 'name', 'University of Belgrade - Faculty of Special Education and Rehabilitation'),
(156291, 121022, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet za specijalnu edukaciju i rehabilitaciju'),
(156292, 121023, 'en', 'name', 'Triatma Mulya University'),
(156293, 121023, 'id', 'name', 'Universitas Triatma Mulya'),
(156294, 121024, 'fr', 'name', 'UniversitƩ Paris CitƩ'),
(156295, 121025, 'en', 'name', 'Gaborone Public Library'),
(156296, 121026, 'en', 'name', 'University of Montreal'),
(156297, 121026, 'fr', 'name', 'UniversitƩ de MontrƩal'),
(156298, 121027, 'sr', 'name', 'Kriminalističko-policijski univerzitet'),
(156299, 121027, 'en', 'name', 'University of Criminal Investigation and Police Studies'),
(156300, 121028, 'en', 'name', 'Algebra Bernays University'),
(156301, 121028, 'hr', 'name', 'SveučiliŔte Algebra'),
(156302, 121029, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c BĆ”ch khoa, ĐẔi hį»c ĐƠ Nįŗµng'),
(156303, 121029, 'en', 'name', 'University of Science and Technology - The University of Da Nang'),
(156304, 121030, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(156305, 121031, 'fr', 'name', 'Pratiques et ressources de l’information et des mĆ©diations'),
(156306, 121032, 'tr', 'name', 'Türk Gastroenteroloji Vakfı'),
(156307, 121033, 'en', 'name', 'Lakeland Community College'),
(156308, 121034, 'en', 'name', 'University of Belgrade - Faculty of Mechanical Engineering'),
(156309, 121034, 'sr', 'name', 'Univerzitet u Beogradu - MaŔinski fakultet'),
(156310, 121035, 'en', 'name', 'Sri Sharda Group of Institutions'),
(156311, 121036, 'en', 'name', 'Kitt Peak National Observatory'),
(156312, 121036, 'fr', 'name', 'Observatoire de Kitt Peak'),
(156313, 121037, 'en', 'name', 'Peking University'),
(156314, 121037, 'zh', 'name', 'åŒ—äŗ¬å¤§å­¦'),
(156315, 121038, 'fr', 'name', 'Ecole Nationale SupƩrieure d''Intelligence Artificielle'),
(156316, 121038, 'en', 'name', 'National School of Artificial Intelligence'),
(156317, 121039, 'fr', 'name', 'Laboratoire de Chimie des PolymĆØres Organiques'),
(156318, 121040, 'fr', 'name', 'Institut national de recherche en sciences et technologies du numƩrique'),
(156319, 121040, 'en', 'name', 'National Institute for Research in Digital Science and Technology'),
(156320, 121041, 'fr', 'name', 'Centre Hospitalier Universitaire de BesanƧon'),
(156321, 121042, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de FĆØs'),
(156322, 121042, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة بفاس'),
(156323, 121043, 'en', 'name', 'Concord Stem Cell Limited (Bangladesh)'),
(156324, 121044, 'en', 'name', 'Merri Creek Management Committee'),
(156325, 121045, 'fr', 'name', 'Station d’Écologie ThĆ©orique et ExpĆ©rimentale'),
(156326, 121045, 'en', 'name', 'Theoretical and Experimental Ecology Station'),
(156327, 121046, 'en', 'name', 'Tyra Biosciences'),
(156328, 121047, 'en', 'name', 'Dairy Institute of Asturias'),
(156329, 121047, 'es', 'name', 'Instituto de Productos LƔcteos de Asturias'),
(156330, 121048, 'en', 'name', 'National Laboratory of the Rockies'),
(156331, 121049, 'en', 'name', 'Central Plains Water Science Center'),
(156332, 121050, 'en', 'name', 'National Forensic Sciences University'),
(156333, 121050, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Øą„ą¤Æą¤¾ą¤Æą¤¾ą¤²ą¤Æą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(156334, 121051, 'en', 'name', 'University of Hildesheim'),
(156335, 121051, 'de', 'name', 'UniversitƤt Hildesheim'),
(156336, 121052, 'tr', 'name', 'Deprem Teknolojileri Enstitüsü'),
(156337, 121052, 'en', 'name', 'Institute of Earthquake Technologies'),
(156338, 121053, 'en', 'name', 'Biomeitez Research and Development Pvt Ltd (India)'),
(156339, 121054, 'en', 'name', 'EM Strasbourg Business School'),
(156340, 121055, 'en', 'name', 'Canada''s National Ballet School'),
(156341, 121056, 'fr', 'name', 'Centre de recherche Paul Pascal'),
(156342, 121056, 'en', 'name', 'Paul Pascal Research Center'),
(156343, 121057, 'zh', 'name', 'Maoming City Dianbai District People''s Hospital'),
(156344, 121058, 'da', 'name', 'Den Danske Filmskole'),
(156345, 121058, 'en', 'name', 'Den Danske Filmskole - National Filmschool of Denmark'),
(156346, 121059, 'fr', 'name', 'Centre Hospitalier Universitaire de Toulouse'),
(156347, 121060, 'es', 'name', 'Instituto Nacional de MusicologĆ­a "Carlos Vega"'),
(156348, 121061, 'fr', 'name', 'Laboratoire National de RƩfƩrence'),
(156349, 121062, 'en', 'name', 'Center for Microscopy and Image Analysis'),
(156350, 121063, 'en', 'name', 'Thurrock Community Hospital'),
(156351, 121064, 'en', 'name', 'Dr G. U. Pope College of Engineering'),
(156352, 121065, 'en', 'name', 'Panam Biotech (Sri Lanka)'),
(156353, 121066, 'en', 'name', 'C. Louis Meyer Family Foundation'),
(156354, 121067, 'en', 'name', 'Zhejiang University'),
(156355, 121067, 'zh', 'name', 'ęµ™ę±Ÿå¤§å­¦'),
(156356, 121068, 'en', 'name', 'Pledge Therapeutics'),
(156357, 121069, 'en', 'name', 'Institute of Animal Breeding and Genetics named after M. V. Zubets, National Academy of Agrarian Sciences of Ukraine'),
(156358, 121070, 'en', 'name', 'Metro South Health'),
(156359, 121071, 'da', 'name', 'Region SjƦlland'),
(156360, 121071, 'en', 'name', 'Region Zealand'),
(156361, 121072, 'en', 'name', 'Reunion Island Marine Nature Reserve'),
(156362, 121072, 'fr', 'name', 'RƩserve Naturelle Marine de La RƩunion'),
(156363, 121073, 'fr', 'name', 'Ecole SupĆ©rieure de l’Agriculture Saharienne El Oued'),
(156364, 121073, 'en', 'name', 'Higher School of Saharan Agriculture - El Oued'),
(156365, 121073, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للفلاحة Ų§Ł„ŲµŲ­Ų±Ų§ŁˆŁŠŲ© ŲØŲ§Ł„ŁˆŲ§ŲÆŁŠ'),
(156366, 121074, 'en', 'name', 'University of Gour Banga'),
(156367, 121074, 'bn', 'name', 'ą¦—ą§Œą¦”ą¦¼ą¦¬ą¦™ą§ą¦— ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(156368, 121075, 'en', 'name', 'DigiM Solution'),
(156369, 121076, 'en', 'name', 'Department of Science,Technology and Innovation'),
(156370, 121077, 'en', 'name', 'National Institute of Technology'),
(156371, 121077, 'ku', 'name', 'ناؓناڵ ŲØŪ† ŲŖŪ•Ś©Ł†Ū•Ł„Ū†Ų¬ŪŒŲ§'),
(156372, 121078, 'en', 'name', 'RJ Sankara Eye Hospital, Varanasi'),
(156373, 121079, 'de', 'name', 'Kunsthaus Zürich'),
(156374, 121080, 'pt', 'name', 'Comissão Nacional de Energia Nuclear'),
(156375, 121080, 'en', 'name', 'National Nuclear Energy Commission'),
(156376, 121081, 'fr', 'name', 'Sport, ActivitƩ Physique, RƩƩducation et MotricitƩ pour la performance et la santƩ'),
(156377, 121082, 'no_lang_code', 'name', 'info fauna'),
(156378, 121083, 'en', 'name', 'Bulgarian Geophysical Society'),
(156379, 121083, 'bg', 'name', 'Š”Ń€ŃƒŠ¶ŠµŃŃ‚Š²Š¾Ń‚Š¾ на геофизиците в Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(156380, 121084, 'en', 'name', 'Nordic Summer University'),
(156381, 121084, 'sv', 'name', 'Nordiskt Sommaruniversitet'),
(156382, 121085, 'en', 'name', 'Impact College of Engineering and Applied Sciences'),
(156383, 121086, 'en', 'name', 'ELLIS Institute Tübingen'),
(156384, 121087, 'en', 'name', 'Devs Homoeopathic Medical College and Hospital'),
(156385, 121087, 'te', 'name', 'ą°¦ą±‡ą°µą±ą°øą± ą°¹ą±‹ą°®ą°æą°Æą±‹ą°Ŗą°¤ą°æą°•ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°•ą°¾ą°²ą±‡ą°œą±€ & ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(156386, 121088, 'en', 'name', 'Institute for Atomic and Molecular Physics'),
(156387, 121089, 'en', 'name', 'Baruch College'),
(156388, 121090, 'en', 'name', 'Arthritis UK'),
(156389, 121091, 'en', 'name', 'Ganpat University'),
(156390, 121091, 'gu', 'name', 'ગણપત ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(156391, 121092, 'en', 'name', 'Department of Water and Environmental Regulation'),
(156392, 121093, 'en', 'name', 'Bayside Health Service'),
(156393, 121094, 'en', 'name', 'University of Bertoua'),
(156394, 121094, 'fr', 'name', 'UniversitƩ de Bertoua'),
(156395, 121095, 'fr', 'name', 'Fondation Voir & Entendre'),
(156396, 121096, 'en', 'name', 'Osmania University'),
(156397, 121096, 'fr', 'name', 'UniversitƩ osmania'),
(156398, 121096, 'ur', 'name', 'جامعہ Ų¹Ų«Ł…Ų§Ł†ŪŒŪ'),
(156399, 121096, 'hi', 'name', 'ą¤‰ą¤øą„ą¤®ą¤¾ą¤Øą¤æą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(156400, 121096, 'ta', 'name', 'ą®‰ą®šąÆą®®ą®¾ą®©ą®æą®Æą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(156401, 121096, 'te', 'name', 'ą°‰ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(156402, 121096, 'ml', 'name', 'ą“’ą“øąµą“®ą“¾ą“Øą“æą“Æ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(156403, 121097, 'en', 'name', 'Yaroslavl State University'),
(156404, 121097, 'ru', 'name', 'Ярославский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. П. Š“. ДемиГова'),
(156405, 121098, 'en', 'name', 'French Research Institute for Exploitation of the Sea'),
(156406, 121098, 'fr', 'name', 'Ifremer'),
(156407, 121099, 'en', 'name', 'Minzu Normal University of Xingyi'),
(156408, 121099, 'zh', 'name', 'å…“ä¹‰ę°‘ę—åøˆčŒƒå­¦é™¢'),
(156409, 121100, 'en', 'name', 'Red Hat (Canada)'),
(156410, 121100, 'fr', 'name', 'Red Hat Canada LimitƩe'),
(156411, 121101, 'en', 'name', 'Federal Ministry of Health'),
(156412, 121102, 'en', 'name', 'National Metrology Institute of Pakistan'),
(156413, 121103, 'en', 'name', 'Research Institute for System Studies'),
(156414, 121103, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ системных исслеГований Российской акаГемии наук'),
(156415, 121104, 'en', 'name', 'Southeast Healthcare'),
(156416, 121105, 'en', 'name', 'Federal College of Agrioculture Ishiagu'),
(156417, 121106, 'en', 'name', 'Government Graduate College Township Lahore'),
(156418, 121107, 'fr', 'name', 'Institut NeuroMyoGĆØne'),
(156419, 121108, 'en', 'name', 'Academy of Fine Arts Vienna'),
(156420, 121108, 'de', 'name', 'Akademie der bildenden Künste Wien'),
(156421, 121109, 'fr', 'name', 'Université Franco-haïtienne du Cap-Haïtien'),
(156422, 121110, 'en', 'name', 'Nebraska Water Science Center'),
(156423, 121111, 'en', 'name', 'Canadian Integrated Ocean Observing System, Pacific Region'),
(156424, 121112, 'en', 'name', 'Institute for Design Problems in Microelectronics'),
(156425, 121112, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃ в Š¼ŠøŠŗŃ€Š¾ŃŠ»ŠµŠŗŃ‚ронике'),
(156426, 121113, 'en', 'name', 'University of South Australia'),
(156427, 121114, 'en', 'name', 'Medical University of Graz'),
(156428, 121114, 'de', 'name', 'Medizinische UniversitƤt Graz'),
(156429, 121115, 'fr', 'name', 'Laboratoire ProcƩdƩs, MatƩriaux et Energie Solaire'),
(156430, 121116, 'en', 'name', 'University of Belgrade - School of Electrical Engineering'),
(156431, 121116, 'sr', 'name', 'Univerzitet u Beogradu - Elektrotehnički fakultet'),
(156432, 121117, 'en', 'name', 'Austrian Academy of Sciences'),
(156433, 121117, 'sl', 'name', 'Avstrijska Akademija Znanosti'),
(156434, 121117, 'hu', 'name', 'OsztrƔk TudomƔnyos AkadƩmia'),
(156435, 121117, 'de', 'name', 'Ɩsterreichische Akademie der Wissenschaften'),
(156436, 121118, 'ca', 'name', 'Vall d''Hebron Hospital Universitari'),
(156437, 121119, 'en', 'name', 'All Russian Institute for Scientific and Technical Information'),
(156438, 121119, 'ru', 'name', 'Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°ŃƒŃ‡Š½Š¾Š¹ Šø технической информации'),
(156439, 121120, 'en', 'name', 'VIT Bhopal University'),
(156440, 121121, 'tr', 'name', 'İzmir Kavram Meslek Yüksekokulu'),
(156441, 121122, 'en', 'name', 'Sandip University Sijoul Madhubani Bihar'),
(156442, 121123, 'en', 'name', 'Government of the United Kingdom'),
(156443, 121124, 'en', 'name', 'Xiangshan Hospital of Traditional Chinese Medicine'),
(156444, 121125, 'no_lang_code', 'name', 'bioMƩrieux (France)'),
(156445, 121126, 'en', 'name', 'University of Belgrade - Faculty of Mining and Geology'),
(156446, 121126, 'sr', 'name', 'Univerzitet u Beogradu - Rudarsko-geoloŔki fakultet'),
(156447, 121127, 'en', 'name', 'Ar-Rasheed Smart University'),
(156448, 121128, 'en', 'name', 'Khongnangthaba University'),
(156449, 121129, 'en', 'name', 'State University "Kyiv Aviation Institute"'),
(156450, 121129, 'uk', 'name', 'Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ "ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ авіаційний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚"'),
(156451, 121130, 'fr', 'name', 'ESPI Nantes'),
(156452, 121131, 'en', 'name', 'Vidyasagar University'),
(156453, 121131, 'bn', 'name', 'ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦øą¦¾ą¦—ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(156454, 121132, 'en', 'name', 'Marwari College, Darbhanga'),
(156455, 121133, 'fr', 'name', 'Laboratoire d''Analyse et d''Architecture des SystĆØmes'),
(156456, 121133, 'en', 'name', 'Laboratory for Analysis and Architecture of Systems'),
(156457, 121134, 'fr', 'name', 'HƓpital Rangueil'),
(156458, 121135, 'fr', 'name', 'ESPI Montpellier'),
(156459, 121136, 'en', 'name', 'Boston International College'),
(156460, 121137, 'en', 'name', 'Rudolfovo – Science and Technology Centre Novo mesto'),
(156461, 121138, 'no_lang_code', 'name', 'Mars (United States)'),
(156462, 121139, 'en', 'name', 'University of Belgrade – Faculty of Chemistry'),
(156463, 121139, 'sr', 'name', 'Univerzitet u Beogradu – Hemijski fakultet'),
(156464, 121140, 'en', 'name', 'Acoustic Technologies (Finland)'),
(156465, 121141, 'en', 'name', 'DigsFish Services'),
(156466, 121141, 'no_lang_code', 'name', 'DigsFish Services (Australia)'),
(156467, 121142, 'en', 'name', 'International Leadership CollĆØge'),
(156468, 121143, 'pl', 'name', 'Wyższej Szkoły Kadr Menedżerskich w Koninie'),
(156469, 121144, 'en', 'name', 'South Essex Partnership University Foundation NHS Trust'),
(156470, 121145, 'no', 'name', 'Nasjonalbiblioteket'),
(156471, 121145, 'en', 'name', 'The National Library of Norway'),
(156472, 121146, 'fr', 'name', 'Laboratoire d''Ɖtudes et de Recherches AppliquĆ©es en Sciences Sociales'),
(156473, 121147, 'de', 'name', 'Fachstelle kommunales Bildungsmonitoring'),
(156474, 121148, 'it', 'name', 'Scuola Universitaria Professionale della Svizzera Italiana'),
(156475, 121148, 'en', 'name', 'University of Applied Sciences and Arts of Southern Switzerland'),
(156476, 121149, 'en', 'name', 'Beijing Institute of Control Engineering'),
(156477, 121149, 'zh', 'name', 'åŒ—äŗ¬ęŽ§åˆ¶å·„ēØ‹ē ”ē©¶ę‰€'),
(156478, 121150, 'en', 'name', 'Sidi Mohamed Ben Abdellah University'),
(156479, 121150, 'fr', 'name', 'UniversitƩ Sidi Mohamed Ben Abdellah'),
(156480, 121150, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سيدي Ł…Ų­Ł…ŲÆ بن Ų¹ŲØŲÆ الله'),
(156481, 121151, 'fr', 'name', 'Centre d''Anthropobiologie et de GƩnomique de Toulouse'),
(156482, 121152, 'pl', 'name', 'Akademia Ateneum w Gdańsku'),
(156483, 121152, 'en', 'name', 'Ateneum University'),
(156484, 121153, 'en', 'name', 'Aegean Agricultural Research Institute'),
(156485, 121153, 'tr', 'name', 'Ege Tarımsal Araştırma Enstitüsü Müdürlüğü'),
(156486, 121154, 'it', 'name', 'Azienda Usl Toscana Centro'),
(156487, 121155, 'fr', 'name', 'Institut des Sciences MolƩculaires'),
(156488, 121155, 'en', 'name', 'Institute of Molecular Sciences'),
(156489, 121156, 'en', 'name', 'GeoBioTec'),
(156490, 121157, 'pt', 'name', 'Escola Superior de Advocacia da OAB'),
(156491, 121158, 'fr', 'name', 'UMR BIOdiversity, GEnes & Communities'),
(156492, 121159, 'en', 'name', 'R-Ladies Global'),
(156493, 121160, 'en', 'name', 'Complexity Science Hub'),
(156494, 121161, 'en', 'name', 'Pandit Deendayal Energy University'),
(156495, 121162, 'en', 'name', 'Al-Nasser University'),
(156496, 121162, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الناصر'),
(156497, 121163, 'en', 'name', 'Laboratory for the Bioengineering of Tissues'),
(156498, 121164, 'es', 'name', 'Instituto Tecnológico de Iguala'),
(156499, 121165, 'fr', 'name', 'Laboratoire HƩtƩrochimie Fondamentale et AppliquƩe'),
(156500, 121166, 'en', 'name', 'Jawaharlal Nehru New College of Engineering'),
(156501, 121166, 'kn', 'name', 'ą²œą³†.ą²Žą²Øą³.ą²Žą²Øą³. ą²Žą²‚ą²œą²æą²Øą²æą²Æą²°ą²æą²‚ą²—ą³ ą²•ą²¾ą²²ą³‡ą²œą³'),
(156502, 121167, 'en', 'name', 'Thai Nguyen University of Information and Communication Technology'),
(156503, 121168, 'en', 'name', 'J Ints Bio'),
(156504, 121168, 'no_lang_code', 'name', 'J Ints Bio (South Korea)'),
(156505, 121169, 'fr', 'name', 'Institut de MathƩmatiques de Toulouse'),
(156506, 121169, 'en', 'name', 'Toulouse Mathematics Institute'),
(156507, 121170, 'en', 'name', 'KSCSTE-National Transportation Planning And Research Centre'),
(156508, 121171, 'en', 'name', 'National Centre for Polar and Ocean Research'),
(156509, 121171, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤§ą„ą¤°ą„ą¤µą„€ą¤Æ ą¤ą¤µą¤‚ ą¤øą¤®ą„ą¤¦ą„ą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(156510, 121172, 'no_lang_code', 'name', 'AMPAC Fine Chemicals (United States)'),
(156511, 121173, 'en', 'name', 'Sevinç-Erdal İnönü Foundation'),
(156512, 121173, 'tr', 'name', 'Sevinç-Erdal İnönü Vakfı'),
(156513, 121174, 'fr', 'name', 'Niche leucƩmique et mƩtabolisme oxydatif'),
(156514, 121175, 'en', 'name', 'Ministry of Health and Social Welfare'),
(156515, 121176, 'en', 'name', 'Otto von Guericke University Magdeburg'),
(156516, 121176, 'de', 'name', 'Otto-von-Guericke-UniversitƤt Magdeburg'),
(156517, 121177, 'pt', 'name', 'Universidade Estadual da Região Tocantina do Maranhão'),
(156518, 121178, 'en', 'name', 'University of Belgrade - Faculty of Transport and Traffic Engineering'),
(156519, 121178, 'sr', 'name', 'Univerzitet u Beogradu - Saobraćajni fakultet'),
(156520, 121179, 'en', 'name', 'Falz-Fein Biosphere Reserve "Askania Nova"'),
(156521, 121179, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń аграрних наук України Š‘Š†ŠžŠ”Š¤Š•Š ŠŠ˜Š™ Š—ŠŠŸŠžŠ’Š†Š”ŠŠ˜Šš Ā«ŠŠ”ŠšŠŠŠ†ŠÆ-ŠŠžŠ’ŠĀ» імені Ф.Š•. Š¤Š°Š»ŃŒŃ†-Фейна'),
(156522, 121180, 'en', 'name', 'Bacha Khan Medical College'),
(156523, 121180, 'ur', 'name', 'باچا خان طبی کالج'),
(156524, 121180, 'ps', 'name', 'ŲÆ باچا خان Ų·ŲØ Ł¾ŁˆŁ‡Ł†ŚŪŒ'),
(156525, 121181, 'en', 'name', 'The Loke Centre for Trophoblast Research'),
(156526, 121182, 'en', 'name', 'Ministry of Earth Sciences'),
(156527, 121183, 'en', 'name', 'China Academy of Space Technology'),
(156528, 121183, 'zh', 'name', 'äø­å›½ē©ŗé—“ęŠ€ęœÆē ”ē©¶é™¢'),
(156529, 121184, 'en', 'name', 'Institute for Musicology'),
(156530, 121184, 'hu', 'name', 'MTA BölcsészettudomÔnyi Kutatóközpont ZenetudomÔnyi Intézet'),
(156531, 121185, 'en', 'name', 'Termez State University'),
(156532, 121185, 'uz', 'name', 'Termiz Davlat Universiteti'),
(156533, 121186, 'en', 'name', 'Chrono-Environment Laboratory'),
(156534, 121186, 'fr', 'name', 'Laboratoire Chrono-Environnement'),
(156535, 121187, 'de', 'name', 'An-Institut für Qualitätssicherung in der operativen Medizin'),
(156536, 121188, 'en', 'name', 'Swartz Center for Computational Neuroscience'),
(156537, 121189, 'no', 'name', 'Direktoratet for medisinske produkter'),
(156538, 121189, 'en', 'name', 'Norwegian Medical Products Agency'),
(156539, 121190, 'en', 'name', 'American Society for Indexing'),
(156540, 121191, 'en', 'name', 'Bengaluru North University'),
(156541, 121191, 'kn', 'name', 'ಬೆಂಗಳೂರು ą²‰ą²¤ą³ą²¤ą²° ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(156542, 121192, 'fr', 'name', 'Institut Saint-Pierre'),
(156543, 121193, 'en', 'name', 'North East London NHS Foundation Trust'),
(156544, 121194, 'hu', 'name', 'TiszÔninneni ReformÔtus EgyhÔzkerület TudomÔnyos Gyűjteményei'),
(156545, 121195, 'en', 'name', 'Mahatma Gandhi Mission''s Dental College and Hospital'),
(156546, 121195, 'hi', 'name', 'ą¤®ą¤œą„€ą¤ą¤® ą¤”ą„‡ą¤‚ą¤Ÿą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ अँऔ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(156547, 121196, 'en', 'name', 'Jordan Media Institute'),
(156548, 121196, 'ar', 'name', 'معهد ال؄علام Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ'),
(156549, 121197, 'es', 'name', 'Universidad de Washington'),
(156550, 121197, 'en', 'name', 'University of Washington'),
(156551, 121197, 'fr', 'name', 'UniversitƩ de Washington'),
(156552, 121198, 'en', 'name', 'Ministry of Population and Family Planning'),
(156553, 121199, 'fr', 'name', 'Centre de Recherche Cardio-Thoracique de Bordeaux'),
(156554, 121200, 'en', 'name', 'Protestant Theological University'),
(156555, 121200, 'nl', 'name', 'Protestantse Theologische Universiteit'),
(156556, 121201, 'fi', 'name', 'Kanta-HƤmeen hyvinvointialue'),
(156557, 121202, 'en', 'name', 'BOKU University'),
(156558, 121203, 'es', 'name', 'Editorial Universidad de Sevilla'),
(156559, 121204, 'en', 'name', 'Focused Energy'),
(156560, 121204, 'de', 'name', 'Focused Energy GmbH'),
(156561, 121205, 'en', 'name', 'University of Belgrade – Faculty of Education'),
(156562, 121205, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet za obrazovanje učitelja i vaspitača'),
(156563, 121206, 'fr', 'name', 'Institut EuropƩen de Chimie et Biologie'),
(156564, 121207, 'en', 'name', 'United States Food and Drug Administration'),
(156565, 121208, 'fr', 'name', 'Institut des Maladies NeurodƩgƩnƩratives'),
(156566, 121208, 'en', 'name', 'Neurodegeneratives Diseases Institute'),
(156567, 121209, 'de', 'name', 'Christian-Albrechts-UniversitƤt zu Kiel'),
(156568, 121209, 'en', 'name', 'Kiel University'),
(156569, 121210, 'no_lang_code', 'name', 'Jacobs (United States)'),
(156570, 121211, 'en', 'name', 'Monash University, Indonesia'),
(156571, 121212, 'es', 'name', 'Instituto EspaƱol de Estudios EstratƩgicos'),
(156572, 121213, 'en', 'name', 'California Southern University'),
(156573, 121214, 'eu', 'name', 'Bordeleko Unibertsitatea'),
(156574, 121214, 'en', 'name', 'University of Bordeaux'),
(156575, 121214, 'fr', 'name', 'UniversitƩ de Bordeaux'),
(156576, 121215, 'fr', 'name', 'FƩdƩration de Recherche sur l''Energie Solaire'),
(156577, 121216, 'en', 'name', 'Gustave Eiffel University'),
(156578, 121216, 'fr', 'name', 'UniversitƩ Gustave Eiffel'),
(156579, 121217, 'en', 'name', 'Hospital of Mali'),
(156580, 121217, 'fr', 'name', 'HƓpital du Mali'),
(156581, 121218, 'en', 'name', 'McGill University'),
(156582, 121218, 'fr', 'name', 'UniversitƩ McGill'),
(156583, 121219, 'fr', 'name', 'Ɖcole Centrale de Nantes'),
(156584, 121220, 'es', 'name', 'Instituto Madrileño de Investigación y Desarrollo Rural, Agrario y Alimentario'),
(156585, 121220, 'en', 'name', 'Madrid Institute for Rural, Agrarian and Food Research and Development'),
(156586, 121221, 'no_lang_code', 'name', 'Inner Mongolia Electric Power (China)'),
(156587, 121221, 'zh', 'name', 'å†…č’™å¤ē”µåŠ›'),
(156588, 121222, 'en', 'name', 'Brain and Cognition Research Center'),
(156589, 121222, 'fr', 'name', 'Centre de recherche cerveau et cognition'),
(156590, 121223, 'en', 'name', 'SR University'),
(156591, 121223, 'te', 'name', 'ą°Žą°øą±ą°†ą°°ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚, తెలంగాణ'),
(156592, 121224, 'no', 'name', 'Vest-Agder fylkeskommune'),
(156593, 121225, 'pt', 'name', 'Faculdade SENAI TaubatƩ'),
(156594, 121226, 'sv', 'name', 'Sveriges lantbruksuniversitet Alnarp'),
(156595, 121226, 'en', 'name', 'Swedish University of Agricultural Sciences, Alnarp'),
(156596, 121227, 'es', 'name', 'Instituto de Historia Antigua, Medieval y Moderna "Prof. JosƩ Luis Romero"'),
(156597, 121228, 'en', 'name', 'Indraprasta Pgri University'),
(156598, 121228, 'id', 'name', 'Universitas Indraprasta PGRI'),
(156599, 121229, 'id', 'name', 'Politeknik Negeri Media Kreatif'),
(156600, 121230, 'en', 'name', 'Texas Medical Center Library'),
(156601, 121231, 'id', 'name', 'Politeknik Negeri Bali'),
(156602, 121232, 'en', 'name', 'Zihi Institute'),
(156603, 121233, 'en', 'name', 'Ocean Networks Canada Society'),
(156604, 121234, 'en', 'name', 'Swiss Federal Institute of Technology in Lausanne'),
(156605, 121234, 'fr', 'name', 'Ɖcole Polytechnique FĆ©dĆ©rale de Lausanne'),
(156606, 121235, 'en', 'name', 'Talpiot College of Education'),
(156607, 121236, 'fr', 'name', 'Laboratoire de Microbiologie et GƩnƩtique MolƩculaires'),
(156608, 121237, 'fr', 'name', 'Institut de Pharmacologie et de Biologie Structurale'),
(156609, 121237, 'en', 'name', 'Institute of Pharmacology and Structural Biology'),
(156610, 121238, 'en', 'name', 'Siemens Energy'),
(156611, 121239, 'ca', 'name', 'Institut Universitari d''Investigació en Atenció Primària Jordi Gol'),
(156612, 121240, 'en', 'name', 'Aust-Agder County Municipality'),
(156613, 121241, 'es', 'name', 'Instituto de Filologƭa ClƔsica "Dra. Alicia Schniebs"'),
(156614, 121242, 'en', 'name', 'Jagadamba Mahavidyalaya');
INSERT INTO `ror_settings` VALUES
(156615, 121243, 'en', 'name', 'Sony Semiconductor Solutions Corporation (Japan)'),
(156616, 121243, 'ja', 'name', 'ć‚½ćƒ‹ćƒ¼ć‚»ćƒŸć‚³ćƒ³ćƒ€ć‚Æć‚æć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗ'),
(156617, 121244, 'fr', 'name', 'ESPI Bordeaux'),
(156618, 121245, 'en', 'name', 'Qubit Pharmaceuticals'),
(156619, 121246, 'en', 'name', 'Metabolomics Association of North America'),
(156620, 121247, 'en', 'name', 'Ginkgo Foundation'),
(156621, 121248, 'en', 'name', 'Muwekma Ohlone Tribe'),
(156622, 121249, 'es', 'name', 'Universidad Europea de Madrid'),
(156623, 121250, 'fr', 'name', 'Replication des chromosomes eucaryotes et ses points de contrƓle'),
(156624, 121251, 'pl', 'name', 'Gdańskie Seminarium Duchowne'),
(156625, 121252, 'en', 'name', 'African Library and Information Associations and Institutions'),
(156626, 121253, 'en', 'name', 'Rogue Detection Teams'),
(156627, 121253, 'no_lang_code', 'name', 'Rogue Detection Teams (United States)'),
(156628, 121254, 'es', 'name', 'Instituto Mortaji'),
(156629, 121255, 'en', 'name', 'Ministry of Education'),
(156630, 121256, 'en', 'name', 'Buenos Aires Institute of Technology'),
(156631, 121256, 'es', 'name', 'Instituto Tecnológico de Buenos Aires (ITBA)'),
(156632, 121257, 'en', 'name', 'Gazole Mahavidyalaya'),
(156633, 121257, 'bn', 'name', 'ą¦—ą¦¾ą¦œą§‹ą¦² ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(156634, 121258, 'tl', 'name', 'Unibersidad nin San Antonio'),
(156635, 121258, 'en', 'name', 'University of Saint Anthony'),
(156636, 121259, 'en', 'name', 'Macau University of Science and Technology'),
(156637, 121259, 'pt', 'name', 'Universidade de CiĆŖncia e Tecnologia de Macau'),
(156638, 121260, 'en', 'name', 'National Service for Industrial Training'),
(156639, 121260, 'pt', 'name', 'ServiƧo Nacional de Aprendizagem Industrial'),
(156640, 121261, 'en', 'name', 'Pokhara University'),
(156641, 121262, 'es', 'name', 'Fundación Cerezales Antonino y Cinia'),
(156642, 121263, 'en', 'name', 'LEAPS'),
(156643, 121264, 'en', 'name', 'Gujarat University'),
(156644, 121264, 'hi', 'name', 'ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(156645, 121264, 'gu', 'name', 'ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(156646, 121264, 'ta', 'name', 'ą®•ąÆą®œą®°ą®¾ą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(156647, 121264, 'te', 'name', 'ą°—ą±ą°œą°°ą°¾ą°¤ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(156648, 121265, 'en', 'name', 'South Australian Rock Lobster Advisory Council'),
(156649, 121266, 'en', 'name', 'Guangxi Vocational & Technical Institute of Industry'),
(156650, 121266, 'zh', 'name', 'å¹æč„æå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(156651, 121267, 'en', 'name', 'Institute of Engineering'),
(156652, 121267, 'ne', 'name', 'ą¤ˆą¤Øą„ą¤œą¤æą¤Øą¤æą¤Æą¤°ą¤æą¤™ ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(156653, 121268, 'tr', 'name', 'İstanbul Pendik Veteriner Kontrol Enstitüsü'),
(156654, 121269, 'eu', 'name', 'Bartzelonako Unibertsitatea'),
(156655, 121269, 'es', 'name', 'Universidad de Barcelona'),
(156656, 121269, 'ca', 'name', 'Universitat de Barcelona'),
(156657, 121269, 'en', 'name', 'University of Barcelona'),
(156658, 121270, 'fr', 'name', 'Institut de Chimie'),
(156659, 121271, 'no_lang_code', 'name', 'Hryhorii Skovoroda University in Pereiaslav'),
(156660, 121271, 'uk', 'name', 'Університет Š“Ń€ŠøŠ³Š¾Ń€Ń–Ń ДковороГи в ŠŸŠµŃ€ŠµŃŃŠ»Š°Š²Ń–'),
(156661, 121272, 'en', 'name', 'European Cytogeneticists Association'),
(156662, 121273, 'no_lang_code', 'name', 'Cambridge Intellectual Property (United Kingdom)'),
(156663, 121274, 'en', 'name', 'Centre for Ultrastructural Imaging'),
(156664, 121275, 'en', 'name', 'University Hospital Heidelberg'),
(156665, 121275, 'de', 'name', 'UniversitƤtsklinikum Heidelberg'),
(156666, 121276, 'en', 'name', 'Atlanta Botanical Garden'),
(156667, 121277, 'en', 'name', 'Federal Circuit and Family Court of Australia'),
(156668, 121278, 'fr', 'name', 'EMPENN: Neuroimagerie: mƩthodes et applications'),
(156669, 121278, 'en', 'name', 'EMPENN: Neuroimaging: methods and applications'),
(156670, 121279, 'fr', 'name', 'Institut de Biochimie et GƩnƩtique Cellulaires'),
(156671, 121280, 'en', 'name', 'Council of Prairie and Pacific University Libraries'),
(156672, 121281, 'pt', 'name', 'Laboratório de Ecologia e Limnologia'),
(156673, 121282, 'fr', 'name', 'Institut des Sciences de la Terre'),
(156674, 121282, 'en', 'name', 'Institute of Earth Science'),
(156675, 121283, 'en', 'name', 'Institute of Philosophy'),
(156676, 121283, 'hu', 'name', 'MTA BTK Filozófiai Intézet'),
(156677, 121284, 'en', 'name', 'Nevada Department of Health and Human Services'),
(156678, 121285, 'en', 'name', 'LƖSEV – The Foundation for Children with Leukemia'),
(156679, 121285, 'tr', 'name', 'Lƶsemili Ƈocuklar Sağlık ve Eğitim Vakfı'),
(156680, 121286, 'fr', 'name', 'Centre Interuniversitaire de Recherche et d’IngĆ©nierie des MatĆ©riaux'),
(156681, 121286, 'en', 'name', 'Interuniversity Center of Materials Research and Engineering'),
(156682, 121287, 'en', 'name', 'Australian National Maritime Museum'),
(156683, 121288, 'en', 'name', 'Science for Africa Foundation'),
(156684, 121289, 'en', 'name', 'Hefei Orthopedics Hospital'),
(156685, 121289, 'zh', 'name', 'åˆč‚„åø‚éŖØē§‘åŒ»é™¢'),
(156686, 121290, 'id', 'name', 'Badan Pendidikan dan Pelatihan Kementerian Pertahanan'),
(156687, 121291, 'es', 'name', 'Centro Superior de Estudios de la Defensa Nacional'),
(156688, 121292, 'en', 'name', 'Research Center for Built Environment and Design'),
(156689, 121293, 'no_lang_code', 'name', 'Mezo Research (Australia)'),
(156690, 121294, 'de', 'name', 'TU Wien'),
(156691, 121295, 'en', 'name', 'Clinical Biotec'),
(156692, 121295, 'no_lang_code', 'name', 'Clinical Biotec (Spain)'),
(156693, 121296, 'en', 'name', 'Red Deer Polytechnic'),
(156694, 121297, 'fr', 'name', 'Conservatoire botanique national Sud-Atlantique'),
(156695, 121298, 'it', 'name', 'Azienda ULSS 9 Scaligera'),
(156696, 121299, 'en', 'name', 'Institute of Archaeology'),
(156697, 121299, 'hu', 'name', 'Magyar TudomƔnyos AkadƩmia RƩgƩszeti IntƩzet'),
(156698, 121300, 'en', 'name', 'National University of Kyiv-Mohyla Academy'),
(156699, 121300, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠšŠøŃ”Š²Š¾-ŠœŠ¾Š³ŠøŠ»ŃŠ½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ»'),
(156700, 121301, 'es', 'name', 'Instituto de las Culturas'),
(156701, 121302, 'en', 'name', 'Kokand State University'),
(156702, 121302, 'uz', 'name', 'Qoʻqon Davlat Universiteti'),
(156703, 121303, 'en', 'name', 'MRC Centre of Research Excellence in Restorative Neural Dynamics'),
(156704, 121304, 'en', 'name', 'Hawela Tula General Hospital'),
(156705, 121304, 'am', 'name', 'į‹Øįˆ€į‹Œįˆ‹ į‰±įˆ‹ įŠ įŒ į‰ƒįˆ‹į‹­ įˆ†įˆµį’į‰³įˆ'),
(156706, 121305, 'es', 'name', 'Instituto Tecnológico de Chetumal'),
(156707, 121306, 'en', 'name', 'Siemens Gamesa Renewable Energy (Spain)'),
(156708, 121307, 'en', 'name', 'International Association of Machinists and Aerospace Workers'),
(156709, 121308, 'en', 'name', 'University of Belgrade – Faculty of Forestry'),
(156710, 121308, 'sr', 'name', 'Univerzitet u Beogradu – Å umarski fakultet'),
(156711, 121309, 'en', 'name', 'Uromedica Polyclinic'),
(156712, 121310, 'en', 'name', 'Social Insurance Institution'),
(156713, 121311, 'en', 'name', 'Cardinal Stefan Wyszynski University in Warsaw'),
(156714, 121311, 'pl', 'name', 'Uniwersytet Kardynała Stefana Wyszyńskiego w Warszawie'),
(156715, 121312, 'en', 'name', 'D4Science'),
(156716, 121313, 'en', 'name', 'University of Belgrade – Faculty of Technology and Metallurgy'),
(156717, 121313, 'sr', 'name', 'Univerzitet u Beogradu – TehnoloÅ”ko-metalurÅ”ki fakultet'),
(156718, 121314, 'en', 'name', 'New South Wales Nurses and Midwives Association'),
(156719, 121315, 'af', 'name', 'Ditsong Nasionale Natuurhistoriese Museum'),
(156720, 121315, 'en', 'name', 'Ditsong National Museum of Natural History'),
(156721, 121316, 'en', 'name', 'Institute for Literary Studies'),
(156722, 121316, 'hu', 'name', 'Magyar TudomÔnyos Akadémia BölcsészettudomÔnyi Kutatóközpont IrodalomtudomÔnyi Intézet'),
(156723, 121317, 'en', 'name', 'Southern Sudan Healthcare Organization'),
(156724, 121318, 'en', 'name', 'Canadian Integrated Ocean Observing System'),
(156725, 121318, 'fr', 'name', 'Système intégré d''observation des océans du Canada'),
(156726, 121319, 'en', 'name', 'Government College of Engineering, Erode'),
(156727, 121320, 'en', 'name', 'Institute of Art History'),
(156728, 121320, 'hu', 'name', 'MTA BölcsészettudomÔnyi Kutatóközpont Művészettörténeti Intézet'),
(156729, 121321, 'pt', 'name', 'Fundação para o Vestibular da Universidade Estadual Paulista ā€œJĆŗlio de Mesquita Filhoā€ (VUNESP)'),
(156730, 121322, 'en', 'name', 'Momentum Institute'),
(156731, 121323, 'no', 'name', 'Kulturdepartementet'),
(156732, 121323, 'en', 'name', 'Ministry of Culture'),
(156733, 121324, 'en', 'name', 'Sarawak Development Institute'),
(156734, 121325, 'en', 'name', 'Fred Hutch Cancer Center'),
(156735, 121326, 'fr', 'name', 'UniversitƩ Sorbonne Paris Nord'),
(156736, 121327, 'en', 'name', 'Tribhuvan University'),
(156737, 121328, 'en', 'name', 'Korolov Zhytomyr Military Institute'),
(156738, 121328, 'uk', 'name', 'Š–ŠøŃ‚Š¾Š¼ŠøŃ€ŃŃŒŠŗŠøŠ¹ Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імені Š”. П. ŠšŠ¾Ń€Š¾Š»ŃŒŠ¾Š²Š°'),
(156739, 121329, 'en', 'name', 'ClƩment Ader Institute'),
(156740, 121329, 'fr', 'name', 'Institut ClƩment Ader'),
(156741, 121330, 'en', 'name', 'Global Studies University'),
(156742, 121331, 'fr', 'name', 'Plan Bleu'),
(156743, 121332, 'pt', 'name', 'Instituto de Ciências Biomédicas Albel Salazar'),
(156744, 121333, 'ca', 'name', 'Universitat de Girona'),
(156745, 121334, 'en', 'name', 'Ministry of Food Agriculture and Livestock'),
(156746, 121334, 'tr', 'name', 'Türkiye Cumhuriyeti Gıda, Tarım ve Hayvancılık Bakanlığı'),
(156747, 121335, 'fr', 'name', 'Physico-Chimie des MatĆ©riaux et des Ɖlectrolytes pour l’Énergie'),
(156748, 121336, 'it', 'name', 'Azienda USL Toscana Nord Ovest'),
(156749, 121337, 'en', 'name', 'MIX-X SRL (Italy)'),
(156750, 121338, 'fr', 'name', 'Fondation OPEN-C'),
(156751, 121338, 'en', 'name', 'Foundation OPEN-C'),
(156752, 121339, 'fr', 'name', 'HƓpital Purpan'),
(156753, 121340, 'en', 'name', 'Sankara Eye Hospital, Coimbatore'),
(156754, 121341, 'en', 'name', 'CEVRO University'),
(156755, 121341, 'cs', 'name', 'CEVRO Univerzita'),
(156756, 121342, 'en', 'name', 'Shri Govind Guru University'),
(156757, 121342, 'gu', 'name', 'ąŖ¶ą«ąŖ°ą«€ ગોવિંદ ગુરુ ąŖÆą«‚ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, ąŖ—ą«‹ąŖ§ąŖ°ąŖ¾'),
(156758, 121343, 'en', 'name', 'Image Processing Systems Institute'),
(156759, 121343, 'ru', 'name', 'ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систем обработки изображений'),
(156760, 121344, 'fr', 'name', 'Etisense (France)'),
(156761, 121345, 'fr', 'name', 'UniversitƩ Simon Kimbangu'),
(156762, 121346, 'fr', 'name', 'HƓpital d''instruction des ArmƩes Percy'),
(156763, 121346, 'en', 'name', 'Percy Training Hospital of the Armies'),
(156764, 121347, 'en', 'name', 'National Forensic Sciences University Dharwad Campus'),
(156765, 121348, 'pt', 'name', 'Universidade de SĆ£o Paulo'),
(156766, 121348, 'en', 'name', 'University of SĆ£o Paulo'),
(156767, 121349, 'id', 'name', 'Sekolah Tinggi Ilmu Kesehatan Bataraguru'),
(156768, 121350, 'en', 'name', 'Center for the Study of the Biosphere from Space'),
(156769, 121350, 'fr', 'name', 'Centre d''Ɖtudes Spatiales de la BiosphĆØre'),
(156770, 121351, 'fr', 'name', 'CALMIP'),
(156771, 121352, 'fr', 'name', 'Laboratoire d''Astrophysique de Bordeaux'),
(156772, 121352, 'en', 'name', 'Laboratory of Astrophysics of Bordeaux'),
(156773, 121353, 'en', 'name', 'Zaporizhzhia National University'),
(156774, 121353, 'ru', 'name', 'Запорожский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(156775, 121353, 'uk', 'name', 'Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(156776, 121354, 'en', 'name', 'Ronin Institute for Independent Scholarship 2.0'),
(156777, 121355, 'en', 'name', 'Zoos Victoria'),
(156778, 121356, 'en', 'name', 'H.S. Skovoroda Kharkiv National Pedagogical University'),
(156779, 121356, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š“.Š”. ДковороГи'),
(156780, 121357, 'en', 'name', 'Centre for Epidemiology Versus Arthritis'),
(156781, 121358, 'no_lang_code', 'name', 'ALS (Czechia)'),
(156782, 121359, 'en', 'name', 'Kakatiya Medical College'),
(156783, 121359, 'te', 'name', 'కాకతీయ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(156784, 121359, 'ml', 'name', 'ą“•ą“¾ą“•ą“¤ąµ€ą“Æ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(156785, 121360, 'en', 'name', 'State of Nevada'),
(156786, 121361, 'en', 'name', 'Federal College of Education Gidan Madi'),
(156787, 121362, 'de', 'name', 'Olympiastützpunkt Sachsen e.V.'),
(156788, 121363, 'en', 'name', 'Atmospheric Radiation Measurement User Facility'),
(156789, 121364, 'ca', 'name', 'Vall d''Hebron Institut de Recerca'),
(156790, 121365, 'en', 'name', 'One School of Business'),
(156791, 121366, 'en', 'name', 'Simmons College of Kentucky'),
(156792, 121367, 'de', 'name', 'TUM Klinikum'),
(156793, 121368, 'en', 'name', 'Kardigan'),
(156794, 121369, 'sv', 'name', 'Sahlgrenska Universitetssjukhuset'),
(156795, 121369, 'en', 'name', 'Sahlgrenska University Hospital'),
(156796, 121370, 'fr', 'name', 'Laboratoire d’Étude et de Recherche sur l’Économie, les Politiques et les SystĆØmes Sociaux'),
(156797, 121371, 'en', 'name', 'PLGrid Infrastructure'),
(156798, 121372, 'en', 'name', 'Cancer Research Center of Toulouse'),
(156799, 121372, 'fr', 'name', 'Centre de Recherche en CancƩrologie de Toulouse'),
(156800, 121373, 'en', 'name', 'Vienna University of Economics and Business'),
(156801, 121373, 'de', 'name', 'WirtschaftsuniversitƤt Wien'),
(156802, 121374, 'en', 'name', 'Ukrainian Military Medical Academy'),
(156803, 121374, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾-меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(156804, 121375, 'fr', 'name', 'Ecole Nationale SupƩrieure de MathƩmatiques'),
(156805, 121375, 'en', 'name', 'National Higher School of Mathematics'),
(156806, 121375, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų±ŁŠŲ§Ų¶ŁŠŲ§ŲŖ'),
(156807, 121376, 'en', 'name', 'Type One Energy'),
(156808, 121377, 'en', 'name', 'Wenzhou Business College'),
(156809, 121377, 'zh', 'name', 'ęø©å·žå•†å­¦é™¢'),
(156810, 121378, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure Paris-Saclay'),
(156811, 121379, 'en', 'name', 'University of Belgrade - Faculty of Agriculture'),
(156812, 121379, 'sr', 'name', 'Univerzitet u Beogradu - Poljoprivredni fakultet'),
(156813, 121380, 'en', 'name', 'Bukhara State Pedagogical Institute'),
(156814, 121380, 'uz', 'name', 'Buxoro davlat pedagogika instituti'),
(156815, 121380, 'ru', 'name', 'Š‘ŃƒŃ…Š°Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(156816, 121381, 'en', 'name', 'CanChild Centre for Childhood-onset Disability Research'),
(156817, 121382, 'en', 'name', 'Mbeya Zonal Refferal Hospital'),
(156818, 121383, 'en', 'name', 'Tallinn University of Technology'),
(156819, 121383, 'et', 'name', 'Tallinna Tehnikaülikool'),
(156820, 121383, 'ru', 'name', 'Таллинский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(156821, 121384, 'es', 'name', 'INCOT'),
(156822, 121385, 'fr', 'name', 'ESPI Paris'),
(156823, 121386, 'sl', 'name', 'Pokrajinski arhiv Maribor'),
(156824, 121387, 'en', 'name', 'Karlsruhe Institute of Technology'),
(156825, 121387, 'de', 'name', 'Karlsruher Institut für Technologie'),
(156826, 121388, 'fr', 'name', 'Centre Inria de l''UniversitƩ de Rennes'),
(156827, 121388, 'en', 'name', 'Inria Centre at Rennes University'),
(156828, 121389, 'fr', 'name', 'Agence Bibliographique de l''Enseignement SupƩrieur'),
(156829, 121390, 'en', 'name', 'Tanium (United States)'),
(156830, 121391, 'en', 'name', 'Bangladesh Maritime University'),
(156831, 121391, 'bn', 'name', 'বাংলাদেশ ą¦®ą§‡ą¦°ą¦æą¦Ÿą¦¾ą¦‡ą¦® ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(156832, 121392, 'en', 'name', 'Division of Civil, Mechanical & Manufacturing Innovation'),
(156833, 121393, 'en', 'name', 'Soil Health Institute'),
(156834, 121394, 'pl', 'name', 'Centrum Doradztwa Zawodowego dla Młodzieży w Poznaniu'),
(156835, 121395, 'fr', 'name', 'Institut de recherche du Centre universitaire de santƩ McGill'),
(156836, 121395, 'en', 'name', 'Research Institute of the McGill University Health Centre'),
(156837, 121396, 'en', 'name', 'RevBio (United States)'),
(156838, 121397, 'fr', 'name', 'Ɖcole SupĆ©rieure des Professions ImmobiliĆØres'),
(156839, 121398, 'sr', 'name', 'Istraživačko-razvojni institut TamiŔ Pančevo'),
(156840, 121399, 'en', 'name', 'Office of Juvenile Justice and Delinquency Prevention'),
(156841, 121400, 'en', 'name', 'ASR Technologies'),
(156842, 121401, 'fr', 'name', 'Conservatoire National des Arts et MƩtiers'),
(156843, 121401, 'en', 'name', 'National Conservatory of Arts and Crafts'),
(156844, 121402, 'en', 'name', 'Rwanda Polytechnic'),
(156845, 121403, 'en', 'name', 'European Virus Archive AISBL'),
(156846, 121404, 'en', 'name', 'Laboratory for Laser Energetics'),
(156847, 121405, 'fr', 'name', 'Laboratoire National des Champs MagnƩtiques Intenses'),
(156848, 121406, 'en', 'name', 'Thai Nguyen University'),
(156849, 121406, 'vi', 'name', 'ĐẔi hį»c ThĆ”i NguyĆŖn'),
(156850, 121407, 'en', 'name', 'Russian Academy of Sciences'),
(156851, 121407, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук'),
(156852, 121408, 'ro', 'name', 'IMAR - Institutul de Matematică ā€žSimion Stoilowā€ al Academiei RomĆ¢ne'),
(156853, 121408, 'en', 'name', 'IMAR - Simion Stoilow Institute of Mathematics of the Romanian Academy'),
(156854, 121409, 'en', 'name', 'Central European University'),
(156855, 121410, 'en', 'name', 'Katoliski institut Izredni Ŕtudij prava in ekonomije na Fakulteti za pravo in ekonomijo'),
(156856, 121411, 'fr', 'name', 'ESPI Lyon'),
(156857, 121412, 'en', 'name', 'Aarno Labs'),
(156858, 121413, 'en', 'name', 'Alphacrucis University College'),
(156859, 121414, 'en', 'name', 'University of Belgrade – Faculty of Philology'),
(156860, 121414, 'sr', 'name', 'Univerzitet u Beogradu – FiloloÅ”ki fakultet'),
(156861, 121415, 'en', 'name', 'Conservation Science Partners'),
(156862, 121416, 'fr', 'name', 'Laboratoire Ɖcologie Fonctionnelle et Environnement'),
(156863, 121417, 'en', 'name', 'Innovative University College'),
(156864, 121418, 'id', 'name', 'STKIP PGRI Bandar Lampung'),
(156865, 121419, 'uz', 'name', 'Termez Davlat Pedagogika Instituti'),
(156866, 121419, 'en', 'name', 'Termez State Pedagogical Institute'),
(156867, 121419, 'ru', 'name', 'Термезский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(156868, 121420, 'en', 'name', 'Dutch Institute for Fundamental Energy Research'),
(156869, 121421, 'fr', 'name', 'Centre de microcaractƩrisation Raimond Castaing'),
(156870, 121422, 'en', 'name', 'Department of Education'),
(156871, 121423, 'en', 'name', 'McMaster University'),
(156872, 121424, 'en', 'name', 'Mid Western University'),
(156873, 121424, 'ne', 'name', 'ą¤®ą¤§ą„ą¤Æą¤Ŗą¤¶ą„ą¤šą¤æą¤®ą¤¾ą¤žą„ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(156874, 121425, 'no', 'name', 'NILU'),
(156875, 121426, 'en', 'name', 'Australian Association of Social Workers'),
(156876, 121427, 'en', 'name', 'Korczak University – Academy of Applied Sciences'),
(156877, 121427, 'pl', 'name', 'Uczelnia Korczaka – Akademia Nauk Stosowanych'),
(156878, 121428, 'en', 'name', 'Amity University Jaipur'),
(156879, 121429, 'en', 'name', 'Institute for Particle and Nuclear Physics'),
(156880, 121429, 'hu', 'name', 'Részecske és Magfizikai Kutatóintézet'),
(156881, 121430, 'en', 'name', 'King Hussein Cancer Center'),
(156882, 121430, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ų­Ų³ŁŠŁ† للسرطان'),
(156883, 121431, 'no_lang_code', 'name', 'Chhatrapati Shahu Ji Maharaj University'),
(156884, 121431, 'hi', 'name', 'ą¤›ą¤¤ą„ą¤°ą¤Ŗą¤¤ą¤æ ą¤¶ą¤¾ą¤¹ą„‚ą¤œą„€ महाराज ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(156885, 121431, 'ta', 'name', 'ą®šą®¤ąÆą®°ą®Ŗą®¤ą®æ ą®·ą®¾ą®•ąÆą®œą®æ ą®®ą®•ą®°ą®¾ą®œąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(156886, 121432, 'en', 'name', 'The Canadian Partnership for Women and Children’s Health'),
(156887, 121433, 'fr', 'name', 'Laboratoire Manceau de MathƩmatiques'),
(156888, 121434, 'de', 'name', 'Eisenbahn-Bundesamt'),
(156889, 121434, 'en', 'name', 'Federal Railway Authority'),
(156890, 121435, 'en', 'name', 'Council for Technical Education and Vocational Training'),
(156891, 121435, 'ne', 'name', 'ą¤Ŗą„ą¤°ą¤¾ą¤µą¤æą¤§ą¤æą¤• ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ तऄा ą¤µą„ą¤Æą¤¾ą¤µą¤øą¤¾ą¤Æą¤æą¤• तालिम ą¤Ŗą¤°ą¤æą¤·ą¤¦ą„'),
(156892, 121436, 'fr', 'name', 'Institut des Sciences Biologiques'),
(156893, 121436, 'en', 'name', 'Institute of Biological Sciences'),
(156894, 121437, 'en', 'name', 'Sankara Eye Hospital, Kanpur'),
(156895, 121438, 'en', 'name', 'Center for AI and Digital Policy'),
(156896, 121439, 'en', 'name', 'Necmettin Erbakan University'),
(156897, 121439, 'tr', 'name', 'Necmettin Erbakan Üniversitesi'),
(156898, 121440, 'en', 'name', 'Saint Thomas Aquinas University'),
(156899, 121440, 'es', 'name', 'Universidad Santo TomƔs'),
(156900, 121441, 'en', 'name', 'Guangxi Eco-Engineering Vocational and Technical College'),
(156901, 121441, 'zh', 'name', 'å¹æč„æē”Ÿę€å·„ēØ‹čŒäøšęŠ€ęœÆå­¦é™¢'),
(156902, 121442, 'de', 'name', 'BBF | Bibliothek für Bildungsgeschichtliche Forschung des DIPF'),
(156903, 121442, 'en', 'name', 'BBF | Research Library for the History of Education at DIPF'),
(156904, 121443, 'ja', 'name', 'Toyo Bunko'),
(156905, 121443, 'no_lang_code', 'name', 'Tōyō Bunko'),
(156906, 121444, 'en', 'name', 'Marmara Environmental Monitoring Project'),
(156907, 121445, 'id', 'name', 'Sekolah Tinggi Ilmu Tarbiyah Nahdlatul Ulama AL Farabi Pangandaran'),
(156908, 121446, 'no_lang_code', 'name', 'TU9'),
(156909, 121447, 'en', 'name', 'Sapience Therapeutics'),
(156910, 121448, 'en', 'name', 'Research Ireland Centre for Applied Geosciences'),
(156911, 121449, 'en', 'name', 'University of Akron'),
(156912, 121450, 'en', 'name', 'Indianapolis Zoo'),
(156913, 121451, 'en', 'name', 'Hong Kong Children''s Hospital'),
(156914, 121452, 'en', 'name', 'Vladimir Regional Oncology Center'),
(156915, 121452, 'ru', 'name', 'Š“Š‘Š£Š—Š’Šž Ā«ŠžŠ±Š»Š°ŃŃ‚Š½Š¾Š¹ клинический онкологический Гиспансер»'),
(156916, 121453, 'cy', 'name', 'Prifysgol Ulster'),
(156917, 121453, 'en', 'name', 'University of Ulster'),
(156918, 121454, 'es', 'name', 'Ministerio de Defensa'),
(156919, 121454, 'en', 'name', 'Ministry of Defence'),
(156920, 121455, 'en', 'name', 'Kohnodai Hospital, National Center for Global Health and Medicine'),
(156921, 121455, 'ja', 'name', 'å›½ē«‹å›½éš›åŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼å›½åŗœå°ē—…é™¢'),
(156922, 121456, 'en', 'name', 'Chamran Hospital'),
(156923, 121456, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† چمران'),
(156924, 121457, 'en', 'name', 'Pontifical Catholic University of Ecuador'),
(156925, 121457, 'es', 'name', 'Pontificia Universidad Católica del Ecuador'),
(156926, 121458, 'en', 'name', 'Ibn Sina University for Medical Sciences'),
(156927, 121459, 'en', 'name', 'University of Rzeszów'),
(156928, 121459, 'pl', 'name', 'Uniwersytet Rzeszowski'),
(156929, 121460, 'fr', 'name', 'Institut de Recherche en Astrophysique et PlanƩtologie'),
(156930, 121460, 'en', 'name', 'Research Institute in Astrophysics and Planetology'),
(156931, 121461, 'pt', 'name', 'SENAI SĆ£o Paulo'),
(156932, 121462, 'en', 'name', 'Tomsk Scientific Research Institute of Balneology and Physiotherapy'),
(156933, 121462, 'ru', 'name', 'Томский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠø Šø физиотерапии'),
(156934, 121463, 'en', 'name', 'MAGIC Telescopes'),
(156935, 121464, 'en', 'name', 'National Institute of Justice'),
(156936, 121465, 'fr', 'name', 'Laboratoire d''AƩrologie'),
(156937, 121466, 'no_lang_code', 'name', 'Sony (Japan)'),
(156938, 121466, 'ja', 'name', 'ć‚½ćƒ‹ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(156939, 121467, 'en', 'name', 'University for Continuing Education Krems'),
(156940, 121467, 'de', 'name', 'Universität für Weiterbildung Krems'),
(156941, 121468, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(156942, 121468, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(156943, 121469, 'en', 'name', 'Leonid Yuzkov Khmelnytskyi University of Management and Law'),
(156944, 121469, 'uk', 'name', 'Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠøŠ¹ Університет Š£ŠæŃ€Š°Š²Š»Ń–Š½Š½Ń та ŠŸŃ€Š°Š²Š° імені ЛеоніГа Юзькова'),
(156945, 121470, 'en', 'name', 'Sidama Regional Health Bureau'),
(156946, 121471, 'en', 'name', 'Kiel University Publishing'),
(156947, 121471, 'de', 'name', 'UniversitƤtsverlag Kiel'),
(156948, 121472, 'es', 'name', 'Hospital Universitario de Getafe'),
(156949, 121473, 'en', 'name', 'Queen''s Hospital'),
(156950, 121474, 'fr', 'name', 'BiodiversitƩ, AgroƩcologie et AmƩnagement du Paysage'),
(156951, 121475, 'en', 'name', 'Lalit Narayan Mithila University'),
(156952, 121475, 'hi', 'name', 'ललित नारायण मिऄिला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(156953, 121476, 'en', 'name', 'Health Innovation North West Coast'),
(156954, 121477, 'en', 'name', 'Indian Institute of Information Technology and Management, Kerala'),
(156955, 121477, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‡ą¤°ą¤²'),
(156956, 121478, 'en', 'name', 'Bangladesh Shishu Hospital & Institute'),
(156957, 121478, 'bn', 'name', 'বাংলাদেশ শিশু হাসপাতাল ও ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(156958, 121479, 'fr', 'name', 'Laboratoire de Physique de l''Ecole Normale SupƩrieure'),
(156959, 121480, 'en', 'name', 'Alameda County Resource Conservation District'),
(156960, 121481, 'en', 'name', 'National Parks and Wildlife Service'),
(156961, 121482, 'en', 'name', 'Hellenic Mediterranean University'),
(156962, 121482, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Μεσογειακό Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(156963, 121483, 'id', 'name', 'Akademi Maritim Nusantara Cilacap'),
(156964, 121484, 'no_lang_code', 'name', 'Canegrowers (Australia)'),
(156965, 121485, 'pt', 'name', 'Hospital do CĆ¢ncer III'),
(156966, 121486, 'es', 'name', 'Universidad Pedagógica Nacional del Estado de Chihuahua'),
(156967, 121487, 'de', 'name', 'Landschaftsverband Westfalen-Lippe'),
(156968, 121488, 'en', 'name', 'Great Asunción University'),
(156969, 121488, 'es', 'name', 'Universidad Gran Asunción'),
(156970, 121489, 'fr', 'name', 'UAR Data Terra'),
(156971, 121490, 'fr', 'name', 'Institut Toulousain des Maladies Infectieuses et Inflammatoires'),
(156972, 121491, 'fr', 'name', 'Centre d’Investigation Clinique 1436'),
(156973, 121492, 'fr', 'name', 'Institut National de SantĆ© Publique, d''ƉpidĆ©miologie Clinique et de Toxicologie-Liban'),
(156974, 121492, 'en', 'name', 'National Institute of Public Health, Clinical Epidemiology, and Toxicology-Lebanon'),
(156975, 121493, 'en', 'name', 'Madura State Polytechnic'),
(156976, 121493, 'id', 'name', 'Politeknik Negeri Madura'),
(156977, 121494, 'es', 'name', 'Secretría Ejecutiva del Sistema Local Anticorrupción de Nayarit'),
(156978, 121495, 'en', 'name', 'Terasaki Innovation Center'),
(156979, 121496, 'en', 'name', 'National University of Music'),
(156980, 121496, 'es', 'name', 'Universidad Nacional de MĆŗsica'),
(156981, 121497, 'en', 'name', 'MEF University'),
(156982, 121497, 'tr', 'name', 'MEF Üniversitesi'),
(156983, 121498, 'en', 'name', 'University of Nouakchott'),
(156984, 121498, 'fr', 'name', 'UniversitƩ de Nouakchott'),
(156985, 121498, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†ŁˆŲ§ŁƒŲ“ŁˆŲ·'),
(156986, 121499, 'en', 'name', 'Center for Plant Conservation'),
(156987, 121500, 'fr', 'name', 'Institut de recherche sur le cancer de l''UniversitƩ de Sherbrooke'),
(156988, 121501, 'en', 'name', 'bioMƩrieux'),
(156989, 121501, 'no_lang_code', 'name', 'bioMƩrieux (United Kingdom)'),
(156990, 121502, 'en', 'name', 'Victoria Police'),
(156991, 121503, 'en', 'name', 'We-be Lab Inc. (Japan)'),
(156992, 121504, 'en', 'name', 'Rwanda Cultural Heritage Academy'),
(156993, 121505, 'en', 'name', 'Ankara Hacı Bayram Veli University'),
(156994, 121505, 'tr', 'name', 'Ankara Hacı Bayram Veli Üniversitesi'),
(156995, 121506, 'en', 'name', 'Zhejiang University Robotics Institute'),
(156996, 121507, 'en', 'name', 'Monash University'),
(156997, 121508, 'en', 'name', 'School for Advanced Studies in the Social Sciences'),
(156998, 121508, 'fr', 'name', 'Ɖcole des hautes Ć©tudes en sciences sociales'),
(156999, 121509, 'id', 'name', 'Universitas Widya Dharma Pontianak'),
(157000, 121510, 'en', 'name', 'Microsurgeonbot'),
(157001, 121511, 'en', 'name', 'Pulchowk Campus'),
(157002, 121512, 'fr', 'name', 'Laboratoire d’Études en GĆ©ophysique et OcĆ©anographie Spatiales'),
(157003, 121512, 'en', 'name', 'Laboratory of Space Geophysical and Oceanographic Studies'),
(157004, 121513, 'en', 'name', 'University of Münster'),
(157005, 121513, 'de', 'name', 'Universität Münster'),
(157006, 121514, 'es', 'name', 'Sociedad Ibérica para la Conservación y Estudio de los Mamíferos'),
(157007, 121515, 'en', 'name', 'Jordan University Hospital'),
(157008, 121515, 'ar', 'name', 'مستؓفى الجامعة Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(157009, 121516, 'fr', 'name', 'Laboratoire des Composites Thermo Structuraux'),
(157010, 121517, 'en', 'name', 'Princess Alexandra Hospital'),
(157011, 121518, 'en', 'name', 'Dolishniy Institute of Regional Research of NAS of Ukraine'),
(157012, 121518, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ім. М. І. Š”Š¾Š»Ń–ŃˆŠ½ŃŒŠ¾Š³Š¾ ŠŠŠ України'),
(157013, 121519, 'fr', 'name', 'UniversitƩ Paul-ValƩry Montpellier'),
(157014, 121520, 'es', 'name', 'Instituto Superior Tecnológico de Investigación Científica e Innovación (ISTICI)'),
(157015, 121521, 'es', 'name', 'Hospital Universitario de Maracaibo'),
(157016, 121522, 'en', 'name', 'Center for Advanced Biomaterials for Healthcare'),
(157017, 121523, 'en', 'name', 'University of Houston System'),
(157018, 121524, 'en', 'name', 'Research Center for Culture, Art and Communication'),
(157019, 121525, 'en', 'name', 'DIPF | Leibniz Institute for Research and Information in Education'),
(157020, 121525, 'de', 'name', 'Deutsches Institut für Internationale Pädagogische Forschung'),
(157021, 121526, 'de', 'name', 'Institut für Designforschung Wien'),
(157022, 121526, 'en', 'name', 'Institute of Design Research Vienna'),
(157023, 121527, 'fr', 'name', 'Institut National des Sciences de l''Univers'),
(157024, 121528, 'fr', 'name', 'Sciences, Philosophie, HumanitƩs'),
(157025, 121529, 'ca', 'name', 'Fundació Privada Joan Bosch-Escola Universitària de les Arts ERAM'),
(157026, 121530, 'en', 'name', 'Ministry of Higher Education, Research and Space'),
(157027, 121530, 'fr', 'name', 'Ministère de l''Enseignement Supérieur, de la Recherche et de l''Espace'),
(157028, 121531, 'en', 'name', 'University of Belgrade – Faculty of Mathematics'),
(157029, 121531, 'sr', 'name', 'Univerzitet u Beogradu – Matematički fakultet'),
(157030, 121532, 'fr', 'name', 'CommunautƩ d''universitƩs et Ʃtablissements de Toulouse'),
(157031, 121532, 'en', 'name', 'Community of Universities and Institutions of Toulouse'),
(157032, 121533, 'en', 'name', 'Debra Thana Sahid Kshudiram Smriti Mahavidyalaya'),
(157033, 121533, 'bn', 'name', 'ঔেবরা ঄ানা শহীদ ą¦•ą§ą¦·ą§ą¦¦ą¦æą¦°ą¦¾ą¦® ą¦øą§ą¦®ą§ƒą¦¤ą¦æ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(157034, 121534, 'en', 'name', 'Hellenic Mediterranean University Research and Innovation Center'),
(157035, 121534, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼Ī¹Ī±ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και ĪšĪ±Ī¹Ī½ĪæĻ„ĪæĪ¼ĪÆĪ±Ļ‚'),
(157036, 121535, 'en', 'name', 'Institute for Analytical Instrumentation'),
(157037, 121535, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аналитического ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(157038, 121536, 'en', 'name', 'ALS (Australia)'),
(157039, 121537, 'en', 'name', 'The Affiliated High School of Peking University'),
(157040, 121538, 'en', 'name', 'Society of Indexers'),
(157041, 121539, 'en', 'name', 'Australian and New Zealand Society of Indexers'),
(157042, 121540, 'en', 'name', 'R Consortium'),
(157043, 121541, 'en', 'name', 'Kaloji Narayana Rao University of Health Sciences'),
(157044, 121541, 'te', 'name', 'ą°•ą°¾ą°³ą±‹ą°œą°æ నారాయణ రావు ą°†ą°°ą±‹ą°—ą±ą°Æ ą°µą°æą°œą±ą°žą°¾ą°Ø ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(157045, 121542, 'no_lang_code', 'name', 'Amcor (Australia)'),
(157046, 121543, 'en', 'name', 'Rocky Mountain Advanced Computing Consortium'),
(157047, 121544, 'en', 'name', 'G. Pulla Reddy College of Pharmacy'),
(157048, 121544, 'te', 'name', 'జి ą°Ŗą±ą°²ą±ą°²ą°¾ą°°ą±†ą°”ą±ą°”ą°æ ą°«ą°¾ą°°ą±ą°®ą°øą°æ కళాశాల'),
(157049, 121545, 'de', 'name', 'Bundesanstalt für Wasserbau'),
(157050, 121545, 'en', 'name', 'Federal Waterways Engineering and Research Institute'),
(157051, 121546, 'en', 'name', 'Beijing Municipal Health Commission'),
(157052, 121546, 'zh', 'name', 'åŒ—äŗ¬åø‚å«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(157053, 121547, 'en', 'name', 'Sankara Eye Hospital, Bangalore'),
(157054, 121548, 'en', 'name', 'TAFE Directors Australian'),
(157055, 121549, 'en', 'name', 'United Food and Commercial Workers'),
(157056, 121550, 'en', 'name', 'Institute of Business'),
(157057, 121551, 'en', 'name', 'Republikcan Scientific and Practical Medical Center of Endocrinology Named After Academician Y.H. Turakulov'),
(157058, 121551, 'uz', 'name', 'Y.X.To''raqulov nomidagi Respublika ixtisoslashtirilgan endokrinologiya ilmiy-amaliy tibbiyot markazi'),
(157059, 121551, 'tg', 'name', 'АкаГемик Ё.Š„. Š¢ŃžŃ€Š°Ņ›ŃƒŠ»Š¾Š² ŠŠ¾Š¼ŠøŠ“Š°Š³Šø Республика Š˜Ń…Ń‚ŠøŃŠ¾ŃŠ»Š°ŃˆŃ‚ŠøŃ€ŠøŠ»Š³Š°Š½ Š­Š½Š“Š¾ŠŗŃ€ŠøŠ½Š¾Š»Š¾Š³ŠøŃ Илмий-Амалий Тиббиёт ŠœŠ°Ń€ŠŗŠ°Š·Šø'),
(157060, 121551, 'ru', 'name', 'Республиканский Дпециализированный ŠŠ°ŃƒŃ‡Š½Š¾-ŠŸŃ€Š°ŠŗŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Центр ЭнГокринологии Имени АкаГемика Ё.Š„. Š¢ŃƒŃ€Š°ŠŗŃƒŠ»Š¾Š²Š°'),
(157061, 121552, 'en', 'name', 'Sant Gadge Baba Amravati University'),
(157062, 121552, 'hi', 'name', 'ą¤…ą¤®ą¤°ą¤¾ą¤µą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(157063, 121553, 'fr', 'name', 'Laboratoire de recherche en Gestion'),
(157064, 121554, 'it', 'name', 'Fondazione "Ugo Bordoni"'),
(157065, 121554, 'en', 'name', 'Ugo Bordoni Foundation'),
(157066, 121555, 'en', 'name', 'Arusha Lutheran Medical Centre'),
(157067, 121556, 'en', 'name', 'Cameroon Field Epidemiology Training Programme'),
(157068, 121557, 'no_lang_code', 'name', 'Amazon (Germany)'),
(157069, 121558, 'id', 'name', 'Universitas Muhammadiyah Lamongan'),
(157070, 121558, 'en', 'name', 'University of Muhammadiyah Lamongan'),
(157071, 121559, 'fr', 'name', 'Ɖcole Pratique des Hautes Ɖtudes'),
(157072, 121560, 'en', 'name', 'Nusa Putra University'),
(157073, 121560, 'id', 'name', 'Universitas Nusa Putra'),
(157074, 121561, 'en', 'name', 'University of Belgrade – Faculty of Orthodox Theology'),
(157075, 121561, 'sr', 'name', 'Univerzitet u Beogradu – Pravoslavni bogoslovski fakultet'),
(157076, 121562, 'en', 'name', 'Iowa State University'),
(157077, 121562, 'es', 'name', 'Universidad Estatal de Iowa'),
(157078, 121562, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''Iowa'),
(157079, 121563, 'fr', 'name', 'ESPI Lille'),
(157080, 121564, 'en', 'name', 'Regional Institute of Printing Technology'),
(157081, 121564, 'bn', 'name', 'ą¦†ą¦žą§ą¦šą¦²ą¦æą¦• ą¦®ą§ą¦¦ą§ą¦°ą¦£ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø'),
(157082, 121565, 'en', 'name', 'Brazilian National Cancer Institute'),
(157083, 121565, 'pt', 'name', 'Instituto Nacional de CĆ¢ncer - INCA'),
(157084, 121566, 'en', 'name', 'Academic Analytics Research Center'),
(157085, 121567, 'en', 'name', 'Tsinghua Shenzhen International Graduate School'),
(157086, 121567, 'zh', 'name', 'ęø…åŽå¤§å­¦ę·±åœ³å›½é™…ē ”ē©¶ē”Ÿé™¢'),
(157087, 121568, 'en', 'name', 'Mariammal Educational Trust'),
(157088, 121568, 'ta', 'name', 'ą®®ą®¾ą®°ą®æą®Æą®®ąÆą®®ą®¾ą®³ąÆ ą®•ą®²ąÆą®µą®æ ą®…ą®±ą®•ąÆą®•ą®ŸąÆą®Ÿą®³ąÆˆ'),
(157089, 121569, 'en', 'name', 'Baku Choreography Academy'),
(157090, 121569, 'az', 'name', 'Bakı Xoreoqrafiya Akademiyası'),
(157091, 121569, 'ru', 'name', 'Бакинское хореографическое ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ'),
(157092, 121570, 'es', 'name', 'Servicio Geológico de los Estados Unidos'),
(157093, 121570, 'en', 'name', 'United States Geological Survey'),
(157094, 121571, 'en', 'name', 'Gajju Khan Medical College'),
(157095, 121572, 'pt', 'name', 'Universidade Nova de Lisboa'),
(157096, 121573, 'en', 'name', 'Kisan Post Graduate College'),
(157097, 121573, 'ur', 'name', 'کسان ڈگری کالج'),
(157098, 121573, 'hi', 'name', 'ठा. ą¤¹ą„ą¤•ą„ą¤® सिंह किसान ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(157099, 121574, 'ms', 'name', 'Universiti Geomatika Malaysia'),
(157100, 121575, 'en', 'name', 'National Herbarium and Plant Laboratories'),
(157101, 121576, 'en', 'name', 'University of Belgrade – Faculty of Law'),
(157102, 121576, 'sr', 'name', 'Univerzitet u Beogradu – Pravni fakultet'),
(157103, 121577, 'en', 'name', 'National Institute of Education'),
(157104, 121578, 'en', 'name', 'International Innovation University'),
(157105, 121578, 'uz', 'name', 'Xalqaro Innovatsion Universiteti'),
(157106, 121579, 'en', 'name', 'Family Court of Australia'),
(157107, 121580, 'pt', 'name', 'REMIT – Research on Economics, Management and Information Technologies'),
(157108, 121581, 'en', 'name', 'Beykoz University'),
(157109, 121581, 'tr', 'name', 'Beykoz Üniversitesi'),
(157110, 121582, 'en', 'name', 'Institute of Information Science and Technologies "Alessandro Faedo"'),
(157111, 121582, 'it', 'name', 'Istituto di Scienza e Tecnologie dell''Informazione "Alessandro Faedo"'),
(157112, 121583, 'en', 'name', 'Brussels Faculty for Protestant Theology'),
(157113, 121583, 'nl', 'name', 'Faculteit voor Protestantse Godgeleerdheid'),
(157114, 121583, 'fr', 'name', 'FacultƩ universitaire de ThƩologie protestante de Bruxelles'),
(157115, 121584, 'en', 'name', 'Croatian Institute of Public Health'),
(157116, 121584, 'hr', 'name', 'Hrvatski zavod za javno zdravstvo'),
(157117, 121585, 'fr', 'name', 'Physiologie et MƩdecine ExpƩrimentale du Coeur et des Muscles'),
(157118, 121585, 'en', 'name', 'Physiology & Experimental Medicine of the Heart and Muscles'),
(157119, 121586, 'en', 'name', 'Central and West Zealand Hospital'),
(157120, 121586, 'da', 'name', 'Midt- og VestsjƦllands Hospital'),
(157121, 121587, 'de', 'name', 'FernUniversitƤt in Hagen'),
(157122, 121588, 'en', 'name', 'QWorld Association'),
(157123, 121589, 'en', 'name', 'Earthmover PBC (United States)'),
(157124, 121590, 'es', 'name', 'Universidad de CƔdiz'),
(157125, 121590, 'ca', 'name', 'Universitat de Cadis'),
(157126, 121590, 'en', 'name', 'University of CƔdiz'),
(157127, 121591, 'en', 'name', 'Amity University Madhya Pradesh'),
(157128, 121592, 'en', 'name', 'University of Veterinary Medicine Vienna'),
(157129, 121592, 'de', 'name', 'VeterinƤrmedizinische UniversitƤt Wien'),
(157130, 121593, 'es', 'name', 'Universidad Mayor de San Simón'),
(157131, 121593, 'en', 'name', 'University of San Simón'),
(157132, 121594, 'en', 'name', 'American Musical and Dramatic Academy'),
(157133, 121595, 'en', 'name', 'Capital Medical University'),
(157134, 121595, 'zh', 'name', 'é¦–éƒ½åŒ»ē§‘å¤§å­¦'),
(157135, 121596, 'en', 'name', 'Arctic Monitoring And Assessment Programme'),
(157136, 121597, 'en', 'name', 'Research Institute for Earth Sciences'),
(157137, 121598, 'de', 'name', 'GEOPARC Bletterbach'),
(157138, 121599, 'fr', 'name', 'Centre de Recherche sur la BiodiversitƩ et l''Environnement'),
(157139, 121600, 'hr', 'name', 'Institut Ruđer BoÅ”ković'),
(157140, 121600, 'en', 'name', 'Ruđer BoÅ”ković Institute'),
(157141, 121601, 'en', 'name', 'Center for Behavioral Brain Sciences'),
(157142, 121602, 'no_lang_code', 'name', 'Suez (Australia)'),
(157143, 121603, 'it', 'name', 'Consiglio Nazionale delle Ricerche'),
(157144, 121603, 'en', 'name', 'National Research Council'),
(157145, 121604, 'fi', 'name', 'ItƤ-Suomen yliopisto'),
(157146, 121604, 'en', 'name', 'University of Eastern Finland'),
(157147, 121604, 'sv', 'name', 'Ɩstra Finlands universitet'),
(157148, 121605, 'en', 'name', 'Institute of Physicochemistry of Materials, Environment and Energy'),
(157149, 121605, 'es', 'name', 'Instituto de QuĆ­mica-FĆ­sica de los Materiales, Medio Ambiente y EnergĆ­a'),
(157150, 121606, 'fr', 'name', 'Centre Chirurgical Marie Lannelongue'),
(157151, 121607, 'fr', 'name', 'Institut FranƧais de Bioinformatique'),
(157152, 121608, 'en', 'name', 'Institute of Electronic Materials Technology'),
(157153, 121609, 'fr', 'name', 'HƓpital gƩnƩral juif'),
(157154, 121609, 'en', 'name', 'Jewish General Hospital'),
(157155, 121610, 'en', 'name', 'Mongolian National Defense University'),
(157156, 121610, 'mn', 'name', 'Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Батлан Єамгаалах Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(157157, 121611, 'en', 'name', 'Hospital Authority'),
(157158, 121611, 'zh', 'name', '醫院箔理局'),
(157159, 121612, 'fr', 'name', 'Institut quantique'),
(157160, 121613, 'pt', 'name', 'Hilab (Brazil)'),
(157161, 121614, 'de', 'name', 'UniversitƤts- und Landesbibliothek Darmstadt'),
(157162, 121615, 'en', 'name', 'Office Khibrat Tibah for Research and Studies (Saudi Arabia)'),
(157163, 121615, 'ar', 'name', 'Ł…ŁƒŲŖŲØ Ų®ŲØŲ±Ų§ŲŖ طيبة Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ'),
(157164, 121616, 'en', 'name', 'Institute of Microelectronics Technology and High Purity Materials'),
(157165, 121616, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем технологии Š¼ŠøŠŗŃ€Š¾ŃŠ»ŠµŠŗŃ‚роники Šø особо чистых материалов'),
(157166, 121617, 'fr', 'name', 'Laboratoire de Chimie et Physique Quantiques'),
(157167, 121618, 'en', 'name', 'Cardiff University'),
(157168, 121618, 'cy', 'name', 'Prifysgol Caerdydd'),
(157169, 121619, 'en', 'name', 'IBP-Sinovac Joint Laboratory of Cutting-edge Technologies and Vaccine & Drug Development'),
(157170, 121619, 'zh', 'name', 'å‰ę²æęŠ€ęœÆäøŽę–°åž‹ē–«č‹—čÆē‰©č”åˆå®žéŖŒå®¤'),
(157171, 121620, 'en', 'name', 'Srushti Conservation Foundation'),
(157172, 121621, 'id', 'name', 'Universitas Islam Negeri Siber Syekh Nurjati Cirebon'),
(157173, 121622, 'id', 'name', 'Politeknik Wilmar Bisnis Indonesia'),
(157174, 121622, 'en', 'name', 'Wilmar Business Indonesia Polytechnic'),
(157175, 121623, 'en', 'name', 'IMU University'),
(157176, 121623, 'ms', 'name', 'Universiti Perubatan Antarabangsa'),
(157177, 121624, 'fr', 'name', 'Laboratoire Plasma et Conversion d''Energie'),
(157178, 121624, 'en', 'name', 'Laboratory on Plasma and Conversion of Energy'),
(157179, 121625, 'en', 'name', 'Association for Community Development'),
(157180, 121625, 'lo', 'name', 'ąŗŖąŗ°ąŗ”ąŗ²ąŗ„ąŗ»ąŗ”ąŗžąŗ±ąŗ”ąŗ—ąŗ°ąŗ™ąŗ²ąŗŠąŗøąŗ”ąŗŠąŗ»ąŗ™ąŗšą»‰ąŗ²ąŗ™ą»€ąŗ®ąŗ»ąŗ²'),
(157181, 121626, 'en', 'name', 'Chicago Queer Latine Collaborative'),
(157182, 121627, 'de', 'name', 'Bundesministerium für Verkehr'),
(157183, 121627, 'en', 'name', 'Federal Ministry of Transport'),
(157184, 121628, 'ro', 'name', 'Ministerul Sanatatii'),
(157185, 121628, 'en', 'name', 'Ministry of Health of Romania'),
(157186, 121629, 'en', 'name', 'BƩgin Military Teaching Hospital'),
(157187, 121629, 'fr', 'name', 'HƓpital d''Instruction des ArmƩes BƩgin'),
(157188, 121630, 'id', 'name', 'Institut Pendidikan Indonesia Garut'),
(157189, 121631, 'en', 'name', 'IU International University of Applied Sciences'),
(157190, 121631, 'de', 'name', 'IU Internationale Hochschule'),
(157191, 121632, 'es', 'name', 'Centro de Estudios del Campo de Montiel'),
(157192, 121633, 'no_lang_code', 'name', 'Bankura University'),
(157193, 121633, 'bn', 'name', 'বাঁকুঔ়া ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(157194, 121634, 'fr', 'name', 'Ɖcole Nationale des Chartes'),
(157195, 121635, 'en', 'name', 'Therapeutic Innovation Australia'),
(157196, 121636, 'en', 'name', 'Ipswich City Council'),
(157197, 121637, 'en', 'name', 'National Center for Diabetes, Endocrinology and Genetic Diseases'),
(157198, 121638, 'en', 'name', 'University of Science and Technology of Fujairah'),
(157199, 121638, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ© في Ų§Ł„ŁŲ¬ŁŠŲ±Ų©'),
(157200, 121639, 'fr', 'name', 'Environnements et PalƩoenvironnements OcƩaniques et Continentaux'),
(157201, 121640, 'en', 'name', 'Nashotah House Theological Seminary'),
(157202, 121641, 'fr', 'name', 'Centre d''analyse des rhƩtoriques religieuses de l''AntiquitƩ'),
(157203, 121642, 'en', 'name', 'Directorate General of Family Planning'),
(157204, 121643, 'id', 'name', 'Politeknik Negeri Pontianak'),
(157205, 121644, 'en', 'name', 'Metro College of Health Sciences and Research'),
(157206, 121645, 'en', 'name', 'Tamil Nadu Dr. M.G.R. Medical University'),
(157207, 121645, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®Ÿą®¾ą®•ąÆą®Ÿą®°ąÆ ą®Žą®®ąÆ.ஜி.ą®†ą®°ąÆ. ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(157208, 121646, 'fr', 'name', 'ANI-SCAN'),
(157209, 121647, 'es', 'name', 'Instituto de Investigaciones Bibliotecológicas'),
(157210, 121648, 'fr', 'name', 'Centre Bretagne-Normandie'),
(157211, 121649, 'es', 'name', 'Universidad Libre de Colombia'),
(157212, 121650, 'en', 'name', 'Sandip Institute of Technology & Research Centre'),
(157213, 121651, 'en', 'name', 'AGroecologies, Innovations & Ruralities'),
(157214, 121652, 'en', 'name', 'Davao de Oro State College'),
(157215, 121653, 'en', 'name', 'Royal Adelaide Hospital'),
(157216, 121654, 'fr', 'name', 'Laboratoire d''innovation molƩculaire et applications'),
(157217, 121655, 'en', 'name', 'Hanson Institute'),
(157218, 121656, 'fr', 'name', 'Centre de Traitement de l''Information GƩnƩtique'),
(157219, 121657, 'en', 'name', 'Arkansas Children''s Research Institute'),
(157220, 121658, 'es', 'name', 'Universidad de Buenos Aires'),
(157221, 121658, 'en', 'name', 'University of Buenos Aires'),
(157222, 121658, 'it', 'name', 'UniversitĆ  di Buenos Aires'),
(157223, 121658, 'fr', 'name', 'UniversitƩ de Buenos Aires'),
(157224, 121659, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(157225, 121659, 'en', 'name', 'Institute of Research for Development'),
(157226, 121660, 'fr', 'name', 'PƓle de phƩnotypage des petits ruminants'),
(157227, 121661, 'fr', 'name', 'AgroĆ©cologie, gĆ©nĆ©tique et systĆØmes d’élevage tropicaux'),
(157228, 121662, 'fr', 'name', 'Centre de recherches en philosophie allemande et contemporaine'),
(157229, 121663, 'en', 'name', 'Bestlink College of the Philippines'),
(157230, 121664, 'en', 'name', 'Helix Biogen Institute'),
(157231, 121665, 'en', 'name', 'Vivekananda Institute of Professional Studies'),
(157232, 121666, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Bretagne-Normandie'),
(157233, 121667, 'en', 'name', 'Swami Ramanand Teerth Marathwada University'),
(157234, 121667, 'hi', 'name', 'ą¤øą„ą¤µą¤¾ą¤®ą„€ रामानंद ą¤¤ą„€ą¤°ą„ą¤„ मराठवाऔ़ा ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(157235, 121668, 'en', 'name', 'Qinghai Institute of Salt Lakes'),
(157236, 121668, 'zh', 'name', 'é’ęµ·ē›ę¹–ē ”ē©¶ę‰€'),
(157237, 121669, 'en', 'name', 'Gujarat Cancer Society'),
(157238, 121669, 'hi', 'name', 'ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤•ą„ˆą¤‚ą¤øą¤° ą¤øą„‹ą¤øą¤¾ą¤‡ą¤Ÿą„€'),
(157239, 121670, 'fr', 'name', 'Mondes germaniques et nord-europƩens'),
(157240, 121671, 'id', 'name', 'STIKES Dian Husada'),
(157241, 121672, 'fr', 'name', 'PatriNat'),
(157242, 121673, 'en', 'name', 'Happy Valley Business School'),
(157243, 121674, 'id', 'name', 'Politeknik Pariwisata Palembang'),
(157244, 121675, 'fr', 'name', 'VetAgro Sup'),
(157245, 121676, 'en', 'name', 'African Plant Nutrition Institute'),
(157246, 121677, 'fr', 'name', 'Environnement, territoires en transition, infrastructures, sociƩtƩs'),
(157247, 121678, 'es', 'name', 'Instituto interdisciplinario Tilcara'),
(157248, 121679, 'en', 'name', 'Academician A. Kuatbekov People’s Friendship University'),
(157249, 121679, 'kk', 'name', 'АкаГемик Ә.ŅšŃƒŠ°Ń‚Š±ŠµŠŗŠ¾Š² атынГағы Єалықтар Гостығы ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(157250, 121679, 'ru', 'name', 'Университет Š”Ń€ŃƒŠ¶Š±Ń‹ нароГов имени акаГемика А.ŠšŃƒŠ°Ń‚Š±ŠµŠŗŠ¾Š²Š°'),
(157251, 121680, 'fr', 'name', 'Centre INRAE Grand-Est - Colmar'),
(157252, 121681, 'en', 'name', 'Korea Research Institute for Vocational Education and Training'),
(157253, 121681, 'ko', 'name', 'ķ•œźµ­ģ§ģ—…ėŠ„ė „ģ—°źµ¬ģ›'),
(157254, 121682, 'en', 'name', 'New Georgian University'),
(157255, 121682, 'ka', 'name', 'ახალი įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(157256, 121683, 'fr', 'name', 'Immunologie, Immunopathologie et Chimie ThƩrapeutique'),
(157257, 121684, 'fr', 'name', 'Innovations ThƩrapeutiques et RƩsistances'),
(157258, 121685, 'fr', 'name', 'Unité Expérimentale du Maïs'),
(157259, 121686, 'fr', 'name', 'MetaGenoPolis'),
(157260, 121687, 'en', 'name', 'Werewolf Therapeutics'),
(157261, 121687, 'no_lang_code', 'name', 'Werewolf Therapeutics (United States)'),
(157262, 121688, 'fr', 'name', 'Institut Charles Sadron'),
(157263, 121689, 'fr', 'name', 'UnitƩ Mixte de Recherche sur les Herbivores'),
(157264, 121690, 'fr', 'name', 'Agriculture et alimentation durables, forêts et ressources naturelles associées'),
(157265, 121691, 'es', 'name', 'Instituto Español de Investigación Enfermera'),
(157266, 121692, 'en', 'name', 'Research and Education Promotion Association (REPA)'),
(157267, 121692, 'no_lang_code', 'name', 'Research and Education Promotion Association (REPA) (United States)'),
(157268, 121693, 'fr', 'name', 'UnitƩ ExpƩrimentale PHƩnotypage Au Champ des CƩrƩales'),
(157269, 121694, 'fr', 'name', 'Rongeurs sauvages, risques sanitaires et gestion des populations'),
(157270, 121695, 'en', 'name', 'The Hong Kong University of Science and Technology (Guangzhou)'),
(157271, 121695, 'zh', 'name', 'é¦™ęøÆē§‘ęŠ€å¤§å­¦ļ¼ˆå¹æå·žļ¼‰'),
(157272, 121696, 'en', 'name', 'Soil Agro and Hydrosystems Spatialization'),
(157273, 121696, 'fr', 'name', 'Sol Agro et hydrosystĆØme Spatialisation'),
(157274, 121697, 'en', 'name', 'Modbury Hospital'),
(157275, 121698, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Provence-Alpes-CƓte d''Azur');
INSERT INTO `ror_settings` VALUES
(157276, 121699, 'fr', 'name', 'DSI-Service Informatique MutualisƩ Montpellier'),
(157277, 121700, 'fr', 'name', 'Direction Enseignement SupƩrieur, Sites et Europe'),
(157278, 121701, 'fr', 'name', 'Institut national de psychiatrie lƩgale Philippe-Pinel'),
(157279, 121701, 'en', 'name', 'Philippe Pinel Institute'),
(157280, 121702, 'fr', 'name', 'UnitƩ ExpƩrimentale Horticole'),
(157281, 121703, 'en', 'name', 'Australian National Wildlife Collection'),
(157282, 121704, 'en', 'name', 'Earth Sciences New Zealand'),
(157283, 121705, 'en', 'name', 'Science and Technology of Milk and Eggs'),
(157284, 121705, 'fr', 'name', 'Science et Technologie du Lait et de l''Oeuf'),
(157285, 121706, 'es', 'name', 'ONG Amaranta'),
(157286, 121707, 'fr', 'name', 'GƩomƩcanique, MatƩriaux, Structures'),
(157287, 121708, 'en', 'name', 'Lake Macquarie City Council'),
(157288, 121709, 'fr', 'name', 'Domaine ExpƩrimental de Vassal'),
(157289, 121710, 'fr', 'name', 'UniversitƩ de Corse Pascal Paoli'),
(157290, 121711, 'en', 'name', 'National Higher School of Autonomous Systems Technology'),
(157291, 121712, 'fr', 'name', 'Comportement et Ɖcologie de la Faune Sauvage'),
(157292, 121713, 'az', 'name', 'Azərbaycan Respublikasının Səhiyyə Nazirliyi'),
(157293, 121713, 'en', 'name', 'Ministry of Healthcare'),
(157294, 121714, 'en', 'name', 'Ghalib University'),
(157295, 121714, 'fa', 'name', 'دانؓگاه غالب'),
(157296, 121715, 'en', 'name', 'International Center for Environmental Research'),
(157297, 121716, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Nouvelle-Aquitaine-Poitiers'),
(157298, 121717, 'en', 'name', 'Indian Council of Forestry Research and Education'),
(157299, 121718, 'fr', 'name', 'Centre Nouvelle Aquitaine-Bordeaux'),
(157300, 121719, 'en', 'name', 'Adelaide University'),
(157301, 121720, 'fr', 'name', 'Centre Bourgogne-Franche-ComtƩ'),
(157302, 121721, 'es', 'name', 'Instituto Superior Tecnológico Daniel Álvarez Burneo'),
(157303, 121722, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Bourgogne-Franche-ComtƩ'),
(157304, 121723, 'fr', 'name', 'Technologies & mƩthodes pour les agricultures de demain'),
(157305, 121724, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Sciences Agronomiques de Bordeaux-Aquitaine'),
(157306, 121725, 'en', 'name', 'Howard County Public School System'),
(157307, 121726, 'en', 'name', 'Batangas State University'),
(157308, 121726, 'tl', 'name', 'Pambansang Pamantasan ng Batangas'),
(157309, 121727, 'hr', 'name', 'SveučiliŔte u Slavonskom Brodu'),
(157310, 121727, 'en', 'name', 'University of Slavonski Brod'),
(157311, 121728, 'en', 'name', 'Thackeray Wildlife Foundation'),
(157312, 121729, 'fr', 'name', 'Centre de gestion en recherche'),
(157313, 121730, 'en', 'name', 'Leipzig University'),
(157314, 121730, 'de', 'name', 'UniversitƤt Leipzig'),
(157315, 121731, 'en', 'name', 'Australian National Insect Collection'),
(157316, 121732, 'en', 'name', 'Da Nang University of Economics'),
(157317, 121732, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ ĐƠ Nįŗµng'),
(157318, 121733, 'en', 'name', 'Alterbridge University'),
(157319, 121733, 'ka', 'name', 'į²£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ įƒįƒšįƒ¢įƒ”įƒ įƒ‘įƒ įƒ˜įƒÆįƒ˜'),
(157320, 121734, 'en', 'name', 'National Autonomous University of Mexico'),
(157321, 121734, 'es', 'name', 'Universidad Nacional Autónoma de México'),
(157322, 121735, 'pt', 'name', 'PolĆ­cia Militar do ParanĆ”'),
(157323, 121736, 'fr', 'name', 'Direction Affaires Juridiques'),
(157324, 121737, 'fr', 'name', 'Clinique La LigniĆØre'),
(157325, 121738, 'de', 'name', 'Stiftung Kulturlandschaft Günztal'),
(157326, 121739, 'fr', 'name', 'Linguistique, langues, parole'),
(157327, 121740, 'en', 'name', 'Corthorn Health'),
(157328, 121741, 'en', 'name', 'Good Molecules'),
(157329, 121741, 'no_lang_code', 'name', 'Good Molecules (United States)'),
(157330, 121742, 'pl', 'name', 'Fundacja Centrum Logopedyczne'),
(157331, 121743, 'fr', 'name', 'Antenne Services dƩconcentrƩs d''appui Ơ la recherche Grand Est-Nancy/Colmar'),
(157332, 121744, 'de', 'name', 'Max Planck Institut für Chemische Energiekonversion'),
(157333, 121744, 'en', 'name', 'Max Planck Institute for Chemical Energy Conversion'),
(157334, 121745, 'id', 'name', 'Universitas Islam Negeri Sultan Aji Muhammad Idris Samarinda'),
(157335, 121746, 'fr', 'name', 'Direction Financement et Achats'),
(157336, 121747, 'hr', 'name', 'Klinički Bolnički Centar Split'),
(157337, 121747, 'en', 'name', 'University Hospital of Split'),
(157338, 121748, 'en', 'name', 'Crow Canyon Archaeological Center'),
(157339, 121749, 'fr', 'name', 'Administration du siĆØge'),
(157340, 121750, 'fr', 'name', 'Direction Coordination des Services DƩconcentrƩs d''Appui Ơ la Recherche'),
(157341, 121751, 'en', 'name', 'Biju Patnaik University of Technology'),
(157342, 121751, 'or', 'name', 'ବିଜୁ ą¬Ŗą¬Ÿą­ą¬Ÿą¬Øą¬¾ą­Ÿą¬• ą¬¬ą­ˆą¬·ą­Ÿą¬æą¬• ą¬¬ą¬æą¬¶ą­ą¬µą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(157343, 121752, 'en', 'name', 'Romanian InSpace Engineering SRL (Romania)'),
(157344, 121753, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Lyon-Grenoble-Auvergne-RhƓne-Alpes'),
(157345, 121754, 'en', 'name', 'ERN GUARD-Heart'),
(157346, 121755, 'en', 'name', 'Maa Manikeshwari University'),
(157347, 121755, 'or', 'name', 'ମା ą¬®ą¬¾ą¬£ą¬æą¬•ą­‡ą¬¶ą­ą­±ą¬°ą­€ ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(157348, 121756, 'fr', 'name', 'QualitƩ des Produits Animaux'),
(157349, 121757, 'en', 'name', 'Coalition for Aligning Science'),
(157350, 121758, 'fr', 'name', 'UnitƩ ExpƩrimentale Elevages Porcins Innovants'),
(157351, 121759, 'en', 'name', 'Asian Law College'),
(157352, 121760, 'en', 'name', 'Institute of Philosophy, Political Science and Religious Studies'),
(157353, 121760, 'kk', 'name', 'Š¤ŠøŠ»Š¾ŃŠ¾Ń„ŠøŃ, ŃŠ°ŃŃŠ°Ń‚Ń‚Š°Š½Ńƒ және Š“Ń–Š½Ń‚Š°Š½Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(157354, 121761, 'fr', 'name', 'GƩnie des procƩdƩs FRIgorifiques pour la SƩcuritƩ alimentaire et l''Environnement'),
(157355, 121762, 'cs', 'name', 'Akademie věd ČeskĆ© republiky'),
(157356, 121762, 'en', 'name', 'Czech Academy of Sciences'),
(157357, 121763, 'es', 'name', 'Complejo Hospitalario Universitario de Toledo'),
(157358, 121764, 'fr', 'name', 'Institut de recherche en mƩdecine translationnelle et maladies hƩpatiques'),
(157359, 121764, 'en', 'name', 'Institute for Translational Medicine and Liver Disease'),
(157360, 121765, 'en', 'name', 'Future University'),
(157361, 121765, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المستقبل'),
(157362, 121766, 'ca', 'name', 'Universitat de PerpinyĆ  Via DomĆ­cia'),
(157363, 121766, 'en', 'name', 'University of Perpignan'),
(157364, 121766, 'fr', 'name', 'UniversitƩ de Perpignan'),
(157365, 121767, 'fr', 'name', 'Ministère de la Santé'),
(157366, 121768, 'en', 'name', 'Salidat Kairbekova National Scientific Center for Healthcare Development'),
(157367, 121769, 'en', 'name', 'Zcash Foundation'),
(157368, 121770, 'en', 'name', 'International Association of Fire Fighters'),
(157369, 121771, 'en', 'name', 'Yemen University'),
(157370, 121771, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŁ…Ł†'),
(157371, 121772, 'fr', 'name', 'PRocƩdƩs biOtechnologiques au Service de l''Environnement'),
(157372, 121773, 'en', 'name', 'Max Planck Digital Library'),
(157373, 121774, 'en', 'name', 'Sichuan Bureau of Geology & Mineral Resources'),
(157374, 121774, 'zh', 'name', 'å››å·ēœåœ°č“ØēŸæäŗ§å‹˜ęŸ„å¼€å‘å±€'),
(157375, 121775, 'en', 'name', 'Veterinary Cancer Care'),
(157376, 121776, 'fr', 'name', 'SECuritƩ des ALIments et Microbiologie'),
(157377, 121777, 'fr', 'name', 'Département sciences des écosystèmes aquatiques, des ressources en eau et des risques associés'),
(157378, 121778, 'fr', 'name', 'Direction Appui au Pilotage'),
(157379, 121779, 'en', 'name', 'University of Rennes'),
(157380, 121779, 'fr', 'name', 'UniversitƩ de Rennes'),
(157381, 121780, 'en', 'name', 'Soban Singh Jeena Government Institute of Medical Sciences and Research, Almora'),
(157382, 121781, 'en', 'name', 'Pearl River Hydraulic Research Institute'),
(157383, 121781, 'zh', 'name', 'ē ę±Ÿę°“åˆ©å§”å‘˜ä¼šē ę±Ÿę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(157384, 121782, 'en', 'name', 'Fish Physiology and Genomics Institute'),
(157385, 121782, 'fr', 'name', 'Laboratoire de Physiologie et GƩnomique des Poissons'),
(157386, 121783, 'en', 'name', 'Agrarian Science State Publishing House of the National Academy of Agrarian Sciences of Ukraine'),
(157387, 121783, 'uk', 'name', 'Державне виГавництво «Аграрна наука» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(157388, 121784, 'en', 'name', 'Health and Safety Executive'),
(157389, 121785, 'tr', 'name', 'Alevi-Bektaşi Kültür ve Cemevi Başkanlığı'),
(157390, 121786, 'en', 'name', 'Superhumans War Trauma Center'),
(157391, 121787, 'en', 'name', 'Black Sea Research Institute of Economy and Innovation'),
(157392, 121788, 'fr', 'name', 'Abeilles et environnement'),
(157393, 121789, 'en', 'name', 'Quanzhou Women and Children''s Hospital'),
(157394, 121790, 'en', 'name', 'TAmiRNA (Austria)'),
(157395, 121791, 'en', 'name', 'Atmosphere Plant Soil Interactions'),
(157396, 121791, 'fr', 'name', 'Interaction Sol Plante AtmosphĆØre'),
(157397, 121792, 'fr', 'name', 'Physiopathologie Animale et bioThérapie du muscle et du système nerveux'),
(157398, 121793, 'en', 'name', 'Commonwealth Scientific and Industrial Research Organisation'),
(157399, 121794, 'en', 'name', 'Broad Institute'),
(157400, 121794, 'es', 'name', 'El Instituto Broad'),
(157401, 121795, 'fr', 'name', 'Histoire Naturelle des HumanitƩs PrƩhistoriques'),
(157402, 121796, 'fr', 'name', 'ThƩologie catholique et sciences religieuses'),
(157403, 121797, 'fr', 'name', 'DSI-Service Informatique InterRƩgional Sud Ouest'),
(157404, 121798, 'fr', 'name', 'Genotoul coordination'),
(157405, 121799, 'fr', 'name', 'Info&Sols'),
(157406, 121800, 'no_lang_code', 'name', 'Cox Enterprises (United States)'),
(157407, 121801, 'en', 'name', 'Nuclear Waste Management Organization of Japan'),
(157408, 121802, 'fr', 'name', 'Infectiologie et santƩ publique'),
(157409, 121803, 'fr', 'name', 'Cellule d''appui pour les PEPR'),
(157410, 121804, 'fr', 'name', 'IERP : Infectiologie ExpƩrimentale des Rongeurs et Poissons'),
(157411, 121805, 'en', 'name', 'Institute of Genetics and Plant Experimental Biology of the Academy Sciences of Uzbekistan'),
(157412, 121805, 'uz', 'name', 'Oā€˜zbekiston Respublikasi Fanlar akademiyasi Genetika va oŹ»simliklar eksperimental biologiyasi instituti'),
(157413, 121805, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Генетики Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ биологии растений АкаГемии наук Республики Узбекистан'),
(157414, 121806, 'fr', 'name', 'Mitochondrie, stress oxydant et protection musculaire'),
(157415, 121807, 'es', 'name', 'Instituto de Literatura Argentina "Ricardo Rojas"'),
(157416, 121808, 'es', 'name', 'Fundación Renal del Nordeste Argentino'),
(157417, 121809, 'en', 'name', 'Jawaharlal Nehru Technological University, Kakinada'),
(157418, 121809, 'te', 'name', 'ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ సాంకేతిక ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(157419, 121810, 'en', 'name', 'Northwest School of Medicine'),
(157420, 121811, 'fr', 'name', 'Laboratoire de Physique des Plasmas'),
(157421, 121812, 'fr', 'name', 'HES-SO Haute Ʃcole spƩcialisƩe de Suisse occidentale'),
(157422, 121812, 'en', 'name', 'HES-SO University of Applied Sciences and Arts Western Switzerland'),
(157423, 121813, 'fr', 'name', 'BiopolymĆØres Interactions Assemblages'),
(157424, 121814, 'en', 'name', 'Jaypee University of Engineering and Technology, Guna'),
(157425, 121815, 'en', 'name', 'Max Planck Information and Technology'),
(157426, 121816, 'en', 'name', 'Institute of Agroecology and Environmental Management of the National Academy of Agrarian Sciences of Ukraine (NAAS)'),
(157427, 121816, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ агроекології і ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— АкаГемії аграрниї наук України'),
(157428, 121817, 'fr', 'name', 'UnitƩ ExpƩrimentale d''Ecologie et d''Ecotoxicologie Aquatique'),
(157429, 121818, 'en', 'name', 'ERN Board of Member States'),
(157430, 121819, 'no_lang_code', 'name', 'Innospec (United Kingdom)'),
(157431, 121820, 'en', 'name', 'Hodan Hospital'),
(157432, 121821, 'en', 'name', 'Austrian Patent Office'),
(157433, 121821, 'de', 'name', 'Ɩsterreichisches Patentamt'),
(157434, 121822, 'fr', 'name', 'Direction ResponsabilitƩ SociƩtale et Environnementale'),
(157435, 121823, 'en', 'name', 'Rotman Research Institute'),
(157436, 121824, 'fr', 'name', 'Unité Expérimentale Systèmes d''Elevage Avicoles Alternatifs'),
(157437, 121825, 'en', 'name', 'OpenAlex'),
(157438, 121826, 'en', 'name', 'ParticipACTION'),
(157439, 121827, 'fr', 'name', 'SubjectivitƩ, lien social et modernitƩ'),
(157440, 121828, 'en', 'name', 'Animal Genetics and Integrative Biology unit'),
(157441, 121828, 'fr', 'name', 'GƩnƩtique Animale et Biologie IntƩgrative'),
(157442, 121829, 'en', 'name', 'Calvert County Public Schools'),
(157443, 121830, 'pt', 'name', 'Centro UniversitƔrio Senac'),
(157444, 121830, 'en', 'name', 'Senac University Center'),
(157445, 121831, 'fr', 'name', 'Centre National de Ressources GƩnomiques VƩgƩtales'),
(157446, 121832, 'fr', 'name', 'UnitƩ ExpƩrimentale Vigne & Vin Bordeaux Grande Ferrade'),
(157447, 121833, 'en', 'name', 'National Podoconiosis Action Network (NaPAN)'),
(157448, 121834, 'ca', 'name', 'Universitat d''Estrasburg'),
(157449, 121834, 'en', 'name', 'University of Strasbourg'),
(157450, 121834, 'de', 'name', 'Universität Straßburg'),
(157451, 121834, 'fr', 'name', 'UniversitƩ de Strasbourg'),
(157452, 121835, 'en', 'name', 'University of the Holy Qur''an and Islamic Sciences'),
(157453, 121835, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القرآن Ų§Ł„ŁƒŲ±ŁŠŁ… ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(157454, 121836, 'en', 'name', 'G.L. Bajaj Institute of Technology and Management Greater Noida'),
(157455, 121837, 'en', 'name', 'Govt.W.W. Patankar Girls’ PG College, Durg'),
(157456, 121838, 'fr', 'name', 'Immuno-Rhumathologie molƩculaire'),
(157457, 121838, 'en', 'name', 'Molecular Immuno-Rhumatology'),
(157458, 121839, 'fr', 'name', 'Laboratoire de SynthĆØse Organique'),
(157459, 121839, 'en', 'name', 'Laboratory of Organic Synthesis'),
(157460, 121840, 'en', 'name', 'Directorate-General for Regional and Urban Policy'),
(157461, 121841, 'en', 'name', 'Turkish Higher Education Quality Council'),
(157462, 121841, 'tr', 'name', 'Yükseköğretim Kalite Kurulu'),
(157463, 121842, 'es', 'name', 'Universidad ContemporƔnea de las AmƩricas'),
(157464, 121843, 'en', 'name', 'Zhongshan Hospital'),
(157465, 121843, 'zh', 'name', 'äø­å±±åŒ»é™¢'),
(157466, 121844, 'fr', 'name', 'AgrosystĆØmes tropicaux'),
(157467, 121845, 'fr', 'name', 'DƩpartement Ʃcologie et biodiversitƩ des milieux forestiers, prairiaux et aquatiques'),
(157468, 121846, 'fr', 'name', 'Institut Polytechnique de Paris'),
(157469, 121847, 'fr', 'name', 'Institut Agro Dijon'),
(157470, 121848, 'fr', 'name', 'Direction Expertise scientifique collective, Prospective et Etudes'),
(157471, 121849, 'en', 'name', 'University of Saskatchewan'),
(157472, 121849, 'fr', 'name', 'UniversitƩ de la saskatchewan'),
(157473, 121850, 'en', 'name', 'Ministry of Education and Science'),
(157474, 121850, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки, молоГёжи Šø спорта Украины'),
(157475, 121850, 'uk', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ освіти і науки України'),
(157476, 121851, 'en', 'name', 'Animal physiology and livestock systems'),
(157477, 121851, 'fr', 'name', 'DĆ©partement Physiologie Animale et SystĆØmes d’Élevage'),
(157478, 121852, 'en', 'name', 'Institute of Thermoelectricity of National Academy of Sciences of Ukraine and Ministry of Education and Science of Ukraine'),
(157479, 121852, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ термоелектрики ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України та ŠœŃ–ністерства освіти і науки України'),
(157480, 121853, 'en', 'name', 'Pontifical Catholic University of ValparaĆ­so'),
(157481, 121853, 'es', 'name', 'Pontificia Universidad Católica de Valparaíso'),
(157482, 121854, 'en', 'name', 'Burauen Community College'),
(157483, 121855, 'en', 'name', 'Aligning Science Across Parkinson''s'),
(157484, 121856, 'no_lang_code', 'name', 'Thales (Australia)'),
(157485, 121857, 'fr', 'name', 'Organisation de Micro-Electronique GƩnƩrale AvancƩe'),
(157486, 121858, 'de', 'name', 'Georg-August-UniversitƤt Gƶttingen'),
(157487, 121858, 'en', 'name', 'University of Gƶttingen'),
(157488, 121859, 'en', 'name', 'Azerbaijan State Advanced Training Institute for Doctors named after A. Aliyev'),
(157489, 121859, 'az', 'name', 'ʏziz ʏliyev adına Azərbaycan Dƶvlət Həkimləri Təkmilləşdirmə İnstitutu'),
(157490, 121860, 'es', 'name', 'Faunagua'),
(157491, 121861, 'en', 'name', 'Federal Polytechnic Kabo'),
(157492, 121862, 'pt', 'name', 'ServiƧo Nacional de Aprendizagem Comercial'),
(157493, 121863, 'es', 'name', 'Instituto de Literatura Hispanoamericana'),
(157494, 121864, 'pt', 'name', 'Casa dos Raros'),
(157495, 121865, 'es', 'name', 'Universidad TƩcnica Federico Santa Marƭa'),
(157496, 121866, 'fr', 'name', 'Laboratoire interdisciplinaire de l''X'),
(157497, 121867, 'en', 'name', 'Federal Medical-Biological Agency'),
(157498, 121867, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ меГико-биологическое агентство'),
(157499, 121868, 'en', 'name', 'Krupanidhi Degree College'),
(157500, 121869, 'en', 'name', 'National Institute of Water and Atmospheric Research'),
(157501, 121870, 'ca', 'name', 'Conservatori Superior de MĆŗsica del Liceu'),
(157502, 121871, 'en', 'name', 'Dr. Ambedkar Institute of Hotel Management, Catering, and Nutrition'),
(157503, 121872, 'en', 'name', 'Sir Mark Mitchell Research Foundation'),
(157504, 121873, 'en', 'name', 'K J Somaiya Medical College'),
(157505, 121874, 'en', 'name', 'Australian National Herbarium'),
(157506, 121875, 'fr', 'name', 'Observatoire astronomique de Strasbourg'),
(157507, 121876, 'fr', 'name', 'Biologie des oiseaux et aviculture'),
(157508, 121877, 'fr', 'name', 'Laboratoire d''Ingénierie des Systèmes Complexes'),
(157509, 121878, 'fr', 'name', 'Zoologie forestiĆØre'),
(157510, 121879, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Occitanie-Toulouse'),
(157511, 121880, 'en', 'name', 'University of Warsaw'),
(157512, 121880, 'pl', 'name', 'Uniwersytet Warszawski'),
(157513, 121881, 'en', 'name', 'Institute of Forest Genetics and Tree Breeding'),
(157514, 121882, 'fr', 'name', 'Chronobiotron'),
(157515, 121883, 'fr', 'name', 'Ɖcole supĆ©rieure des agricultures'),
(157516, 121884, 'fr', 'name', 'Laboratoire interdisciplinaire en Ʃtudes culturelles'),
(157517, 121885, 'fr', 'name', 'Neuroscience et Psychiatrie Translationnelle de Strasbourg'),
(157518, 121885, 'en', 'name', 'Strasbourg Translational Neuroscience and Psychiatry'),
(157519, 121886, 'en', 'name', 'Federal Public Service Economy, SMEs, Self-employed and Energy'),
(157520, 121886, 'nl', 'name', 'Federale Overheidsdienst Economie, K.M.O., Middenstand en Energie'),
(157521, 121886, 'fr', 'name', 'Service Public FĆ©dĆ©ral Ɖconomie'),
(157522, 121887, 'fr', 'name', 'Commissions nationales des unitƩs expƩrimentales et des outils collectifs'),
(157523, 121888, 'en', 'name', 'HSE Science and Research Centre'),
(157524, 121889, 'fr', 'name', 'Institut FranƧais d''ArchƩologie Orientale'),
(157525, 121889, 'ar', 'name', 'المعهد Ų§Ł„ŁŲ±Ł†Ų³ŁŠ للآثار Ų§Ł„Ų“Ų±Ł‚ŁŠŲ©'),
(157526, 121890, 'en', 'name', 'Government Kamla Raja Girls Post Graduate Autonomous College'),
(157527, 121890, 'hi', 'name', 'ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤•ą¤®ą¤²ą¤¾ą¤°ą¤¾ą¤œą¤¾ ą¤•ą¤Øą„ą¤Æą¤¾ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤øą„ą¤µą¤¶ą¤¾ą¤øą„€ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(157528, 121891, 'en', 'name', 'Charles P. Taft Research Center'),
(157529, 121892, 'en', 'name', 'Kavayitri Bahinabai Chaudhari North Maharashtra University'),
(157530, 121892, 'hi', 'name', 'ą¤•ą¤µą¤Æą¤æą¤¤ą„ą¤°ą„€ बहिणाबाई ą¤šą„Œą¤§ą¤°ą„€ ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(157531, 121893, 'es', 'name', 'Universidad del RĆ­o'),
(157532, 121894, 'pt', 'name', 'Lepidus (Brazil)'),
(157533, 121895, 'en', 'name', 'National Council of Teachers of Mathematics'),
(157534, 121896, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Corse'),
(157535, 121897, 'fr', 'name', 'AgroParisTech'),
(157536, 121897, 'en', 'name', 'Paris Institute of Technology for Life, Food and Environmental Sciences'),
(157537, 121898, 'en', 'name', 'JEC Eye Hospitals and Clinics'),
(157538, 121899, 'en', 'name', 'Nanda Nath Saikia College'),
(157539, 121900, 'fr', 'name', 'Unité Expérimentale Entomologie et Forêt Méditerranéenne'),
(157540, 121901, 'my', 'name', 'Politeknik Mersing Johor'),
(157541, 121902, 'en', 'name', 'Can Tho Central General Hospital'),
(157542, 121903, 'en', 'name', 'Arkansas Children''s Hospital'),
(157543, 121904, 'fr', 'name', 'Configurations littƩraires'),
(157544, 121905, 'en', 'name', 'French Higher Education Institution in Agriculture, Food, Horticultural and Landscape Sciences'),
(157545, 121905, 'fr', 'name', 'Institut Agro Rennes-Angers'),
(157546, 121906, 'en', 'name', 'Dutch Research Council'),
(157547, 121906, 'nl', 'name', 'Nederlandse Organisatie voor Wetenschappelijk Onderzoek'),
(157548, 121907, 'fr', 'name', 'Interactions hÓtes-agents pathogènes'),
(157549, 121908, 'en', 'name', 'Informatics Europe'),
(157550, 121909, 'fr', 'name', 'Laboratoire de Neurosciences Cognitives et Adaptatives'),
(157551, 121910, 'en', 'name', 'Kwame Nkrumah University'),
(157552, 121911, 'en', 'name', 'Chocolate Cloud ApS (Denmark)'),
(157553, 121912, 'en', 'name', 'National Academy of Sciences of Armenia'),
(157554, 121912, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ£Õ«ÕæÕøÖ‚Õ©ÕµÕøÖ‚Õ¶Õ¶Õ„Ö€Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ”ÕÆÕ”Õ¤Õ„Õ“Õ«Õ”'),
(157555, 121913, 'fr', 'name', 'Centre Clermont-Auvergne-RhƓne-Alpes'),
(157556, 121914, 'en', 'name', 'Guru Gobind Singh Indraprastha University'),
(157557, 121914, 'ur', 'name', 'اندارپراسٹہ Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(157558, 121914, 'hi', 'name', 'ą¤—ą„ą¤°ą„ ą¤—ą„‹ą¤¬ą¤æą¤Øą„ą¤¦ सिंह ą¤‡ą¤Øą„ą¤¦ą„ą¤°ą¤Ŗą„ą¤°ą¤øą„ą¤„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(157559, 121915, 'en', 'name', 'Icahn School of Medicine at Mount Sinai'),
(157560, 121916, 'fr', 'name', 'Animal, Santé, Territoires, Risques et Ecosystèmes'),
(157561, 121917, 'de', 'name', 'HAW Hamburg'),
(157562, 121918, 'fr', 'name', 'Maison des Sciences Humaines et Sociales de Poitiers'),
(157563, 121919, 'en', 'name', 'Staffordshire Police'),
(157564, 121920, 'en', 'name', 'Freemasons Foundation Centre for Men''s Health'),
(157565, 121921, 'fr', 'name', 'Centre de CoopƩration Internationale en Recherche Agronomique pour le DƩveloppement'),
(157566, 121921, 'en', 'name', 'French Agricultural Research Centre for International Development'),
(157567, 121922, 'en', 'name', 'Regional Wildlife Science Collaborative'),
(157568, 121923, 'en', 'name', 'Institute of Sociology of National Academy of Sciences of Ukraine'),
(157569, 121923, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ соціології ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(157570, 121924, 'en', 'name', 'World Health Organization - Sierra Leone'),
(157571, 121925, 'en', 'name', 'University of Calicut'),
(157572, 121925, 'fr', 'name', 'UniversitƩ de calicut'),
(157573, 121925, 'ta', 'name', 'ą®•ąÆ‹ą®“ą®æą®•ąÆą®•ąÆ‹ą®ŸąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(157574, 121925, 'ml', 'name', 'ą“•ą“¾ą“²ą“æą“•ąµą“•ą“±ąµą“±ąµ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(157575, 121926, 'en', 'name', 'Bacha Khan College of Dentistry'),
(157576, 121927, 'fr', 'name', 'Centre de Corse'),
(157577, 121928, 'fr', 'name', 'UnitƩ d''Appui MutualisƩ de Nouzilly'),
(157578, 121929, 'en', 'name', 'Guangdong South China High-tech Co'),
(157579, 121929, 'zh', 'name', 'å¹æäøœåŽå—ę°“ē”µé«˜ę–°ęŠ€ęœÆå¼€å‘ęœ‰é™å…¬åø'),
(157580, 121930, 'bs', 'name', 'Kantonalni zavod za zaÅ”titu kulturno-historijskog i prirodnog naslijeđa Sarajevo'),
(157581, 121931, 'en', 'name', 'National Academy of Agrarian Sciences of Ukraine'),
(157582, 121931, 'uk', 'name', 'ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠ ŠŠšŠŠ”Š•ŠœŠ†ŠÆ ŠŠ“Š ŠŠ ŠŠ˜Š„ ŠŠŠ£Šš Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(157583, 121932, 'es', 'name', 'Centro de Estudios Filosóficos y Teológicos'),
(157584, 121933, 'it', 'name', 'IMT Srl'),
(157585, 121933, 'no_lang_code', 'name', 'IMT Srl (Italy)'),
(157586, 121934, 'en', 'name', 'Ukrainian Research Institute of Archival Affairs and Records Keeping'),
(157587, 121934, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ архівної справи та Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚Š¾Š·Š½Š°Š²ŃŃ‚Š²Š°'),
(157588, 121935, 'fr', 'name', 'Architecture et RƩactivitƩ de l''arN'),
(157589, 121936, 'fr', 'name', 'Institut des Neurosciences Cellulaires et IntƩgratives'),
(157590, 121936, 'en', 'name', 'Institute of Cellular and Integrative Neurosciences'),
(157591, 121937, 'fr', 'name', 'Centre de recherche sur les stratƩgies Ʃconomiques'),
(157592, 121938, 'en', 'name', 'Great Smoky Mountains National Park'),
(157593, 121938, 'es', 'name', 'Parque nacional de las Grandes MontaƱas Humeantes'),
(157594, 121939, 'pl', 'name', 'Akademia Muzyczna im. Krzysztofa Pendereckiego w Krakowie'),
(157595, 121939, 'en', 'name', 'The Krzysztof Penderecki Academy of Music in Krakow'),
(157596, 121940, 'en', 'name', 'Arkansas Children''s Nutrition Center'),
(157597, 121941, 'en', 'name', 'Injibara University'),
(157598, 121942, 'fr', 'name', 'UnitƩ ExpƩrimentale du Pin'),
(157599, 121943, 'pt', 'name', 'TelessaĆŗdeRS'),
(157600, 121944, 'fr', 'name', 'UnitƩ ExpƩrimentale Avicole'),
(157601, 121945, 'fr', 'name', 'UnitƩ ExpƩrimentale Fourrages, Ruminants, Environnement'),
(157602, 121946, 'en', 'name', 'MATHRISK: Mathematical Risk handling'),
(157603, 121947, 'es', 'name', 'Instituto de Geociencias'),
(157604, 121948, 'en', 'name', 'University of Maryland School of Medicine'),
(157605, 121949, 'pl', 'name', 'Kancelaria Patentowa Łukaszyk'),
(157606, 121949, 'en', 'name', 'Łukaszyk Patent Attorneys'),
(157607, 121950, 'en', 'name', 'Indian Institute of Petroleum and Energy'),
(157608, 121950, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„‡ą¤Ÿą„ą¤°ą„‹ą¤²ą¤æą¤Æą¤® ą¤ą¤µą¤‚ ą¤Šą¤°ą„ą¤œą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(157609, 121951, 'fr', 'name', 'Laboratoire Interuniversitaire des Sciences de l''Education et de la Communication'),
(157610, 121952, 'fr', 'name', 'Physique et Physiologie IntƩgratives de l''Arbre en Environnement Fluctuant'),
(157611, 121953, 'fr', 'name', 'DSI-Solutions d''Infrastructures Informatiques et Services'),
(157612, 121954, 'fr', 'name', 'PÓle de gestion en appui auprès des unités Grand Est-Nancy'),
(157613, 121955, 'en', 'name', 'S.P. Timoshenko Institute of Mechanics'),
(157614, 121956, 'fr', 'name', 'AquapƓle'),
(157615, 121957, 'es', 'name', 'Instituto de MontaƱas'),
(157616, 121957, 'en', 'name', 'The Mountain Institute'),
(157617, 121958, 'pt', 'name', 'Comissão Executiva do Plano da Lavoura Cacaueira - Ceplac'),
(157618, 121959, 'id', 'name', 'Sekolah Tinggi Agama Islam Sangatta'),
(157619, 121960, 'ca', 'name', 'Hospital Universitari de Tortosa Verge de la Cinta'),
(157620, 121961, 'en', 'name', 'Higher Institute of Nursing and Health Professions, Casablanca'),
(157621, 121961, 'fr', 'name', 'Institut Supérieur des Professions Infirmières et Techniques de Santé de Casablanca'),
(157622, 121962, 'en', 'name', 'Association for Socially Applicable Research'),
(157623, 121963, 'es', 'name', 'Hospital El Carmen Dr. Luis ValentĆ­n Ferrada'),
(157624, 121964, 'ca', 'name', 'Universitat Carlemany'),
(157625, 121965, 'en', 'name', 'Korea Electrical Safety Corporation'),
(157626, 121965, 'ko', 'name', 'ķ•œźµ­ģ „źø°ģ•ˆģ „ź³µģ‚¬'),
(157627, 121966, 'fr', 'name', 'Institut National Polytechnique de Toulouse'),
(157628, 121966, 'en', 'name', 'National Polytechnic Institute of Toulouse'),
(157629, 121967, 'fr', 'name', 'Centre d''Ʃconomie et de sociologie appliquƩes Ơ l''agriculture et aux espaces ruraux'),
(157630, 121968, 'en', 'name', 'Helpman Development Institute'),
(157631, 121969, 'en', 'name', 'Australian Tree Seed Centre'),
(157632, 121970, 'fr', 'name', 'Physiologie, Environnement et Génétique pour l''Animal et les Systèmes d''Elevage'),
(157633, 121971, 'en', 'name', 'Polytecnic in Požega'),
(157634, 121971, 'hr', 'name', 'VeleučiliŔte u Požegi'),
(157635, 121972, 'en', 'name', 'Huanghe Jiaotong University'),
(157636, 121973, 'en', 'name', 'Government College of Engineering, Kalahandi'),
(157637, 121973, 'or', 'name', 'ସରକାରୀ ą¬¬ą­ˆą¬·ą­Ÿą¬æą¬• ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ, ą¬•ą¬³ą¬¾ą¬¹ą¬¾ą¬£ą­ą¬”ą¬æ'),
(157638, 121974, 'fr', 'name', 'Abeilles, Paysages, Interactions et SystĆØmes de culture'),
(157639, 121975, 'en', 'name', 'Abbottabad University of Science and Technology'),
(157640, 121976, 'en', 'name', 'Łukasiewicz Research Network - Institute of Microelectronics and Photonics'),
(157641, 121977, 'nl', 'name', 'Universiteit Utrecht'),
(157642, 121977, 'en', 'name', 'Utrecht University'),
(157643, 121978, 'en', 'name', 'University of Technology of Belfort-MontbƩliard'),
(157644, 121978, 'fr', 'name', 'UniversitƩ de technologie de belfort-montbƩliard'),
(157645, 121979, 'fr', 'name', 'Institut National des Sciences AppliquƩes de Toulouse'),
(157646, 121979, 'en', 'name', 'Toulouse National Institute for Applied Sciences'),
(157647, 121980, 'en', 'name', 'Kenya Marine and Fisheries Research Institute'),
(157648, 121981, 'en', 'name', 'InLife Institute of Animal Reproduction and Food Research, Polish Academy of Sciences'),
(157649, 121981, 'pl', 'name', 'InLife Instytut Rozrodu Zwierząt i Badań Żywności Polskiej Akademii Nauk'),
(157650, 121982, 'en', 'name', 'Makawanpur Multiple Campus'),
(157651, 121983, 'fr', 'name', 'Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes'),
(157652, 121984, 'fr', 'name', 'Institut Terre & Environnement de Strasbourg'),
(157653, 121985, 'en', 'name', 'Czech Academy of Sciences, Institute of Hydrology'),
(157654, 121985, 'cs', 'name', 'Hydrologický ústav AV ČR'),
(157655, 121986, 'de', 'name', 'Institut für Angewandte Informatik (InfAI) e. V.'),
(157656, 121987, 'fr', 'name', 'Hydrosystèmes continentaux anthropisés : ressources, risques, restauration'),
(157657, 121988, 'en', 'name', 'University of Upper Alsace'),
(157658, 121988, 'fr', 'name', 'UniversitƩ de Haute-Alsace'),
(157659, 121989, 'de', 'name', 'Private PƤdagogische Hochschule der Diƶzese Linz'),
(157660, 121989, 'en', 'name', 'Private University of Education, Diocese Linz'),
(157661, 121990, 'fr', 'name', 'DƩpartement sciences pour l''action, les transitions, les territoires'),
(157662, 121991, 'id', 'name', 'Institut Agama Islam Al Muhammad Cepu'),
(157663, 121992, 'en', 'name', 'Duchess International Hospital'),
(157664, 121993, 'en', 'name', 'GridSAT Foundation'),
(157665, 121993, 'de', 'name', 'GridSAT Stiftung'),
(157666, 121994, 'fr', 'name', 'UnitƩ associƩe au dƩpartement biologie et amƩlioration des plantes'),
(157667, 121995, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Ile-de-France-Versailles-Saclay'),
(157668, 121996, 'fr', 'name', 'Centre Occitanie-Montpellier'),
(157669, 121997, 'en', 'name', 'Higher Institutes of Nursing and Health Technical Professions'),
(157670, 121997, 'fr', 'name', 'Instituts Supérieurs des Professions Infirmières et Techniques de Santé'),
(157671, 121997, 'ar', 'name', 'المعاهد Ų§Ł„Ų¹Ł„ŁŠŲ§ للمهن Ų§Ł„ŲŖŁ…Ų±ŁŠŲ¶ŁŠŲ© ŁˆŲŖŁ‚Ł†ŁŠŲ§ŲŖ الصحة'),
(157672, 121998, 'fr', 'name', 'Toulouse White Biotechnology'),
(157673, 121999, 'fr', 'name', 'Institut de recherches CarrƩ de Malberg'),
(157674, 122000, 'en', 'name', 'The Higher Institute of Engineering Technologies Benghazi'),
(157675, 122001, 'fr', 'name', 'PlantAlliance'),
(157676, 122002, 'en', 'name', 'Changsha Meteorological Radar Calibration Center'),
(157677, 122002, 'zh', 'name', 'é•æę²™ę°”č±”é›·č¾¾ę ‡ę ”äø­åæƒ'),
(157678, 122003, 'en', 'name', 'Paris-Saclay Food and Bioproduct Engineering Research Unit'),
(157679, 122004, 'en', 'name', 'Baycrest Academy for Research and Education'),
(157680, 122005, 'en', 'name', 'Mohamed Sathak AJ College of Physiotherapy'),
(157681, 122005, 'ta', 'name', 'ą®®ąÆŠą®¹ą®®ą®ŸąÆ ą®šą®¤ą®•ąÆ ą®…ą®œąÆ ą®•ą®¾ą®²ąÆ‡ą®œąÆ ą®†ą®ŖąÆ ą®Ŗą®æą®šą®æą®ÆąÆ‹ą®¤ąÆ†ą®°ą®Ŗą®æ'),
(157682, 122006, 'en', 'name', '7th Geological Brigade of Sichuan'),
(157683, 122006, 'zh', 'name', 'å››å·ēœē¬¬äøƒåœ°č“Øå¤§é˜Ÿ'),
(157684, 122007, 'nl', 'name', 'Liantis'),
(157685, 122008, 'en', 'name', 'Blizard Institute'),
(157686, 122009, 'fr', 'name', 'Biologie intégrée pour la valorisation de la diversité des arbres et de la forêt'),
(157687, 122010, 'en', 'name', 'Max Planck Institute for Behavioral Economics'),
(157688, 122010, 'de', 'name', 'Max-Planck-Institut für Verhaltensökonomik'),
(157689, 122011, 'fr', 'name', 'MƩdecine Cardiovasculaire Translationnelle'),
(157690, 122012, 'en', 'name', 'Saint Paul''s School of Nursing'),
(157691, 122013, 'es', 'name', 'Instituto de Historia del Arte Argentino y Latinoamericano ā€œLuis Ordazā€'),
(157692, 122014, 'fr', 'name', 'Ressources gƩnomique-info'),
(157693, 122015, 'en', 'name', 'Arkansas Children’s Foundation'),
(157694, 122016, 'fr', 'name', 'Centre Ǝle-de-France - Versailles-Grignon'),
(157695, 122017, 'en', 'name', 'Ministry of Culture and Tourism'),
(157696, 122017, 'tr', 'name', 'T.C. Kültür ve Turizm Bakanlığı'),
(157697, 122018, 'fr', 'name', 'Observatoire des Programmes Communautaires de DƩveloppement Rural'),
(157698, 122019, 'fr', 'name', 'Maison des sciences humaines et environnementales Claude Nicolas Ledoux'),
(157699, 122020, 'es', 'name', 'Instituto de Investigaciones de Estudios de GƩnero'),
(157700, 122021, 'en', 'name', 'Odisha Biodiversity Board'),
(157701, 122022, 'id', 'name', 'Politeknik Pariwisata Lombok'),
(157702, 122023, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Nouvelle-Aquitaine-Bordeaux'),
(157703, 122024, 'fr', 'name', 'Centre Alpin de Recherche sur les Réseaux Trophiques et les Ecosystèmes Limniques'),
(157704, 122025, 'en', 'name', 'Omico'),
(157705, 122026, 'fr', 'name', 'Plateforme Expérimentale sur le végétal et les agrosYstèmes Innovants en milieu tropical'),
(157706, 122027, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Pays de la Loire'),
(157707, 122028, 'en', 'name', 'Women''s and Children''s Hospital'),
(157708, 122029, 'en', 'name', 'Netherlands Proteomics Centre'),
(157709, 122030, 'es', 'name', 'Hospital de La Ribera'),
(157710, 122031, 'es', 'name', 'Universidad de Zaragoza'),
(157711, 122031, 'ca', 'name', 'Universitat de Saragossa'),
(157712, 122031, 'en', 'name', 'University of Zaragoza'),
(157713, 122031, 'eu', 'name', 'Zaragozako Unibertsitatea'),
(157714, 122032, 'en', 'name', 'Ministry of Science and Higher Education of the Republic of Kazakhstan'),
(157715, 122032, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ науки Šø Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Республики ŠšŠ°Š·Š°Ń…стан'),
(157716, 122032, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ғылым және жоғары білім министрлігі'),
(157717, 122033, 'en', 'name', 'Majuli University of Culture'),
(157718, 122034, 'en', 'name', 'Federal State Budgetary Institution "Centre for Strategic Planning and Management of Biomedical Health Risks" of the Federal Medical and Biological Agency'),
(157719, 122034, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Центр стратегического ŠæŠ»Š°Š½ŠøŃ€Š¾Š²Š°Š½ŠøŃ Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ меГико-биологическими рисками Š·Š“Š¾Ń€Š¾Š²ŃŒŃŽĀ» Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(157720, 122035, 'fr', 'name', 'GƩnome et Transcriptome - Plateforme GƩnomique'),
(157721, 122036, 'fr', 'name', 'UnitƩ ExpƩrimentale d''AgroEcologie et de PhƩnotypage des Cultures'),
(157722, 122037, 'en', 'name', 'Kazakh National University of Water Management and Irrigation'),
(157723, 122038, 'fr', 'name', 'Maison Interuniversitaire des Sciences de l''Homme'),
(157724, 122039, 'fr', 'name', 'Biologie et pharmacologie des plaquettes sanguines : hƩmostase, thrombose, transfusion'),
(157725, 122040, 'no_lang_code', 'name', 'Saxion'),
(157726, 122041, 'de', 'name', 'Bethanien Krankenhaus Moers'),
(157727, 122042, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Val de Loire'),
(157728, 122043, 'en', 'name', 'The University of Newcastle Research Associates'),
(157729, 122044, 'en', 'name', 'Health Sciences Research Foundation'),
(157730, 122044, 'uk', 'name', 'ФонГ Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ наук про Š·Š“Š¾Ń€Š¾Š²Ź¼Ń'),
(157731, 122045, 'fr', 'name', 'SantƩ et AgroƩcologie du Vignoble'),
(157732, 122046, 'en', 'name', 'Sandip Foundation'),
(157733, 122047, 'es', 'name', 'Escuela de Medicina de Ponce'),
(157734, 122047, 'en', 'name', 'Ponce Health Sciences University'),
(157735, 122048, 'tr', 'name', 'Balıkesir Atatürk City Hospital'),
(157736, 122049, 'es', 'name', 'Universidad de Londres'),
(157737, 122050, 'fr', 'name', 'Direction pour la Science Ouverte'),
(157738, 122051, 'en', 'name', 'Campus Institute Data Science (CIDAS)'),
(157739, 122051, 'de', 'name', 'Campus-Institut Data Science (CIDAS)'),
(157740, 122052, 'fr', 'name', 'Sciences de l''animal de Jouy'),
(157741, 122053, 'en', 'name', 'Eastern European Institute of Theology'),
(157742, 122053, 'uk', 'name', 'Š”Ń…Ń–Š“Š½Š¾Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теології'),
(157743, 122054, 'en', 'name', 'Fundamental Scientific Library'),
(157744, 122054, 'hy', 'name', 'Õ€Ō³Ō³'),
(157745, 122055, 'en', 'name', 'Pacific Fusion'),
(157746, 122055, 'no_lang_code', 'name', 'Pacific Fusion (United States)'),
(157747, 122056, 'en', 'name', 'Sana''a Community College'),
(157748, 122056, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© المجتمع صنعاؔ'),
(157749, 122057, 'en', 'name', 'Search for Truth and Return to Science'),
(157750, 122058, 'fr', 'name', 'UnitƩ ExpƩrimentale de Pech Rouge'),
(157751, 122059, 'fr', 'name', 'UnitƩ ExpƩrimentale Arboricole'),
(157752, 122060, 'en', 'name', 'University of Newcastle Australia'),
(157753, 122061, 'fr', 'name', 'Unité Expérimentale Systèmes d''Elevage de Ruminants de Moyenne Montagne'),
(157754, 122062, 'fr', 'name', 'UnitƩ ExpƩrimentale Physiologie et PhƩnotypage des Porcs'),
(157755, 122063, 'fr', 'name', 'Optimisation des procƩdƩs en agriculture, agroalimentaire et environnement'),
(157756, 122064, 'fr', 'name', 'Systèmes d''Elevage Méditerranéens et Tropicaux - Laboratoire de Recherche sur le Développement de l''Elevage'),
(157757, 122065, 'en', 'name', 'Paras HMRI Hospital, Patna'),
(157758, 122066, 'id', 'name', 'Universitas Siber Muhammadiyah'),
(157759, 122067, 'fr', 'name', 'Unité de Recherche Pluridisciplinaire Prairies et Plantes Fourragères'),
(157760, 122068, 'en', 'name', 'Canine Cancer Alliance'),
(157761, 122069, 'fr', 'name', 'Centre de recherches juridiques de l''UniversitƩ de Franche-ComtƩ'),
(157762, 122070, 'fr', 'name', 'UnitƩ ExpƩrimentale de La Fage'),
(157763, 122071, 'fr', 'name', 'Institut de Biologie MolƩculaire des Plantes'),
(157764, 122072, 'fr', 'name', 'Ministère de l''Agriculture et de la Souveraineté alimentaire'),
(157765, 122073, 'fr', 'name', 'AmƩlioration GƩnƩtique et Adaptation des Plantes mƩditerranƩennes et tropicales'),
(157766, 122073, 'en', 'name', 'Genetic Improvement and Adaptation of Mediterranean and Tropical Plants'),
(157767, 122074, 'fr', 'name', 'Approches contemporaines de la crƩation et de la rƩflexion artistiques'),
(157768, 122075, 'en', 'name', 'Enforcement, Leadership, and Management University'),
(157769, 122076, 'fr', 'name', 'Génétique et Biomasse Forestières ORléans'),
(157770, 122077, 'fr', 'name', 'ThƩologie protestante'),
(157771, 122078, 'fr', 'name', 'Laboratoire Leprince-Ringuet'),
(157772, 122079, 'fr', 'name', 'Groupe de recherche en agroalimentaire sur les produits et les procƩdƩs'),
(157773, 122080, 'en', 'name', 'Al Jazeera University'),
(157774, 122080, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬Ų²ŁŠŲ±Ų©'),
(157775, 122081, 'fr', 'name', 'Centre d''Ɖtude des Pathologies Respiratoires'),
(157776, 122082, 'fr', 'name', 'Arboriculture et maraƮchage mƩditerranƩens'),
(157777, 122083, 'fr', 'name', 'Oniris'),
(157778, 122084, 'pt', 'name', 'Laboratório de Bioarqueologia Translacional'),
(157779, 122085, 'fr', 'name', 'Direction Communication'),
(157780, 122086, 'fr', 'name', 'Département agronomie et sciences de l''environnement pour les agroécosystèmes'),
(157781, 122087, 'fr', 'name', 'Institut Mines-TƩlƩcom'),
(157782, 122088, 'en', 'name', 'Animal Health'),
(157783, 122088, 'fr', 'name', 'DƩpartement SantƩ Animale'),
(157784, 122089, 'de', 'name', 'Bundesamt für Rüstung armasuisse'),
(157785, 122089, 'fr', 'name', 'Office fƩdƩral de l''armement armasuisse'),
(157786, 122089, 'it', 'name', 'Ufficio federale dell''armamento armasuisse'),
(157787, 122090, 'en', 'name', 'Federal University of Rio Grande do Sul'),
(157788, 122090, 'pt', 'name', 'Universidade Federal do Rio Grande do Sul'),
(157789, 122091, 'en', 'name', 'Mary Lyon Centre at MRC Harwell'),
(157790, 122092, 'en', 'name', 'Klarman Family Foundation'),
(157791, 122093, 'fr', 'name', 'Direction de l''Evaluation'),
(157792, 122094, 'en', 'name', 'MARKS Medical College Hospital & Dental Unit'),
(157793, 122095, 'es', 'name', 'Universidad Tecnológica de la Zona Metropolitana del Valle de México'),
(157794, 122096, 'fr', 'name', 'UnitƩ ExpƩrimentale Grandes Cultures Innovation Environnement - Picardie'),
(157795, 122097, 'en', 'name', 'Green Hope University'),
(157796, 122097, 'so', 'name', 'Jaamacadda Green Hope'),
(157797, 122098, 'fr', 'name', 'Centre de Biologie pour la Gestion des Populations'),
(157798, 122099, 'fr', 'name', 'Agroclim'),
(157799, 122100, 'fr', 'name', 'Institut Pasteur'),
(157800, 122100, 'en', 'name', 'Pasteur Institute'),
(157801, 122101, 'en', 'name', 'Societies, Actors and Governement in Europe'),
(157802, 122101, 'fr', 'name', 'SociƩtƩs, Acteurs, Gouvernement en Europe'),
(157803, 122102, 'en', 'name', 'Center for Research in Islamic Sciences and Civilization'),
(157804, 122102, 'ar', 'name', 'Ł…Ų±ŁƒŲ² البحث في Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠŲ© ŁˆŲ§Ł„Ų­Ų¶Ų§Ų±Ų©'),
(157805, 122103, 'en', 'name', 'New Cairo Academy'),
(157806, 122104, 'fr', 'name', 'Laboratoire d''étude des Interactions Sol - Agrosystème - Hydrosystème'),
(157807, 122105, 'fr', 'name', 'MusƩum national d''Histoire naturelle'),
(157808, 122105, 'en', 'name', 'National Museum of Natural History'),
(157809, 122106, 'fr', 'name', 'Unité Expérimentale Forêt Pierroton'),
(157810, 122107, 'fr', 'name', 'Bureau d''Economie ThƩorique et AppliquƩe'),
(157811, 122107, 'en', 'name', 'Bureau for Economic Theory and Applications'),
(157812, 122108, 'en', 'name', 'Australian National Fish Collection'),
(157813, 122109, 'en', 'name', 'Institute of Geology and Geochemistry of Combustible Minerals of National Academy of Sciences of Ukraine'),
(157814, 122109, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геології і геохімії Š³Š¾Ń€ŃŽŃ‡ŠøŃ… копалин ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— АкаГемії ŠŠŠ£Šš України'),
(157815, 122110, 'fr', 'name', 'DSI-Service Informatique InterRƩgional Ile et Hauts-de-France'),
(157816, 122111, 'hr', 'name', 'Institut za istraživanje migracija'),
(157817, 122111, 'en', 'name', 'Institute for Migration Research'),
(157818, 122112, 'fr', 'name', 'Ecologie et émergence des pathogènes transmis par les arthropodes'),
(157819, 122113, 'en', 'name', 'Savitribai Phule Pune University'),
(157820, 122113, 'fr', 'name', 'UniversitƩ de pune'),
(157821, 122113, 'hi', 'name', 'ą¤Ŗą„ą¤£ą„‡ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(157822, 122113, 'ta', 'name', 'புனே ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(157823, 122113, 'kn', 'name', 'ಪುಣೆ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(157824, 122114, 'de', 'name', 'Agentur für Innovation in der Cybersicherheit'),
(157825, 122115, 'fr', 'name', 'Centre de droit privƩ fondamental'),
(157826, 122116, 'en', 'name', 'Macedonian Heraldic Society'),
(157827, 122117, 'fr', 'name', 'Laboratoire de Biologie Structurale de la Cellule'),
(157828, 122118, 'fr', 'name', 'Biostatistique et processus spatiaux'),
(157829, 122119, 'fr', 'name', 'DSI-Service Informatique InterRƩgional Nord Est'),
(157830, 122120, 'fr', 'name', 'Direction Patrimoine et Immobilier'),
(157831, 122121, 'en', 'name', 'European Hip Center'),
(157832, 122121, 'nl', 'name', 'Heuppraktijk'),
(157833, 122122, 'fr', 'name', 'UnitƩ ExpƩrimentale Physiologie Animale'),
(157834, 122123, 'fr', 'name', 'UnitƩ Mixte d''Appui aux Relations Internationales'),
(157835, 122124, 'fr', 'name', 'Agence comptable'),
(157836, 122125, 'fr', 'name', 'Mission Agrobiosciences'),
(157837, 122126, 'fr', 'name', 'Institut de Recherche MathƩmatique AvancƩe'),
(157838, 122127, 'en', 'name', 'MRC National Mouse Genetics Network'),
(157839, 122128, 'pt', 'name', 'Centro de Formação, Treinamento e Aperfeiçoamento da Câmara dos Deputados'),
(157840, 122129, 'en', 'name', 'APJ Abdul Kalam Technological University'),
(157841, 122130, 'es', 'name', 'Museo EtnogrƔfico "Juan B. Ambrosetti"'),
(157842, 122131, 'fr', 'name', 'Pathologie vƩgƩtale'),
(157843, 122132, 'es', 'name', 'Instituto Nacional de Recursos HidrƔulicos'),
(157844, 122133, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Grand Est-Nancy/Colmar'),
(157845, 122134, 'fr', 'name', 'Laboratoire de GƩnƩtique MƩdicale'),
(157846, 122134, 'en', 'name', 'Laboratory of Medical Genetics'),
(157847, 122135, 'en', 'name', 'Western Australian Veterinary Emergency and Specialty'),
(157848, 122136, 'en', 'name', 'Applied Mathematics and Computer Science, from Genomes to the Environment'),
(157849, 122136, 'fr', 'name', 'MathƩmatiques et Informatique AppliquƩes du GƩnome Ơ l''Environnement'),
(157850, 122137, 'en', 'name', 'Macau Millennium College'),
(157851, 122137, 'zh', 'name', '中脿創新學院'),
(157852, 122138, 'fr', 'name', 'Organisation Mondiale de la SantƩ'),
(157853, 122138, 'it', 'name', 'Organizzazione Mondiale della SanitĆ '),
(157854, 122138, 'de', 'name', 'Weltgesundheitsorganisation'),
(157855, 122138, 'en', 'name', 'World Health Organization'),
(157856, 122139, 'fr', 'name', 'UnitƩ ExpƩrimentale d''Epoisses'),
(157857, 122140, 'fr', 'name', 'Laboratoire des écosystèmes et sociétés en montagne'),
(157858, 122141, 'fr', 'name', 'Toxicologie Alimentaire'),
(157859, 122142, 'en', 'name', 'Tashkent University of Information Technology'),
(157860, 122142, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Университет Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Ń‹Ń… Технологий'),
(157861, 122143, 'fr', 'name', 'Plateforme tropicale Elevage pour l’agroĆ©cologie'),
(157862, 122144, 'fr', 'name', 'Unité Expérimentale sur les Systèmes d''Elevage Aquacoles'),
(157863, 122145, 'tr', 'name', 'TROAS Uluslararası Turizm Araştırmaları Derneği'),
(157864, 122146, 'en', 'name', 'Institute of Electron Technology'),
(157865, 122147, 'en', 'name', 'Sygnature Discovery'),
(157866, 122147, 'no_lang_code', 'name', 'Sygnature Discovery (Canada)'),
(157867, 122148, 'en', 'name', 'Federal University of CearĆ”'),
(157868, 122148, 'pt', 'name', 'Universidade Federal do CearĆ”'),
(157869, 122149, 'fr', 'name', 'Laboratoire de Chimie MolƩculaire'),
(157870, 122150, 'en', 'name', 'Parasitology Center'),
(157871, 122151, 'fr', 'name', 'Laboratoire d''Hydrodynamique de l''Ɖcole polytechnique'),
(157872, 122152, 'fr', 'name', 'Diabète et thérapie cellulaire'),
(157873, 122153, 'en', 'name', 'University of Maryland, Baltimore'),
(157874, 122154, 'en', 'name', 'New York Institute of Technology'),
(157875, 122155, 'fr', 'name', 'DƩpartement Microbiologie et ChaƮne Alimentaire'),
(157876, 122155, 'en', 'name', 'Microbiology and the food chain'),
(157877, 122156, 'fr', 'name', 'Direction Ressources Humaines'),
(157878, 122157, 'en', 'name', 'Livestock Farming Institute of the National Academy of Agrarian Sciences of Ukraine'),
(157879, 122157, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ тваринництва Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ тваринництва ŠŠŠŠ України'),
(157880, 122158, 'en', 'name', 'Seiyun University'),
(157881, 122158, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³ŁŠŲ¦ŁˆŁ†'),
(157882, 122159, 'en', 'name', 'Shangqiu Polytechnic'),
(157883, 122160, 'en', 'name', 'Zap Energy Inc.'),
(157884, 122160, 'no_lang_code', 'name', 'Zap Energy Inc. (United States)'),
(157885, 122161, 'en', 'name', 'Pathogens Host Arthropod Vectors Interfaces'),
(157886, 122162, 'en', 'name', 'University of Maryland Medical Center'),
(157887, 122163, 'fr', 'name', 'Biologie, EpidƩmiologie et Analyse de Risque en SantƩ Animale'),
(157888, 122164, 'en', 'name', 'American Federation of State, County and Municipal Employees'),
(157889, 122165, 'en', 'name', 'Tengeru Institute of Community Development'),
(157890, 122166, 'en', 'name', 'International Image Interoperability Framework Consortium'),
(157891, 122167, 'en', 'name', 'IPTalons, Inc.'),
(157892, 122167, 'no_lang_code', 'name', 'IPTalons, Inc. (United States)'),
(157893, 122168, 'fr', 'name', 'RƩduire, valoriser, rƩutiliser les ressources des eaux rƩsiduaires'),
(157894, 122169, 'en', 'name', 'OpenEdition Center'),
(157895, 122170, 'fr', 'name', 'Antenne Services dƩconcentrƩs d''appui Ơ la recherche Ile-de-France-Versailles-Saclay/Hauts-de-France'),
(157896, 122171, 'it', 'name', 'Accademia di Belle Arti di Verona'),
(157897, 122172, 'fr', 'name', 'Cellule de coordination et d''appui de l''Alliance Agreenium'),
(157898, 122173, 'id', 'name', 'Politeknik Enjiniring Pertanian Indonesia'),
(157899, 122174, 'fr', 'name', 'Ɖcole & Observatoire des Sciences de la Terre'),
(157900, 122175, 'en', 'name', 'MES Ponnani College'),
(157901, 122175, 'ml', 'name', 'ą“Žą“‚.ą“‡.ą“Žą“øąµ. ą“ŖąµŠą“Øąµą“Øą“¾ą“Øą“æ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“ŖąµŠą“Øąµą“Øą“¾ą“Øą“æ'),
(157902, 122176, 'en', 'name', 'Hong Kong University of Science and Technology'),
(157903, 122177, 'en', 'name', 'Functional Ecology and Ecotoxicology of AgroEcosystems'),
(157904, 122177, 'fr', 'name', 'Ɖcologie Fonctionnelle et Ɖcotoxicologie des AgroĆ©cosystĆØmes'),
(157905, 122178, 'en', 'name', 'Mammoth Biosciences');
INSERT INTO `ror_settings` VALUES
(157906, 122178, 'no_lang_code', 'name', 'Mammoth Biosciences (United States)'),
(157907, 122179, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Clermont-Auvergne-RhƓne-Alpes'),
(157908, 122180, 'fr', 'name', 'DSI-Service Informatique InterRƩgional Grand Ouest'),
(157909, 122181, 'en', 'name', 'TACS-Alliance Research Center'),
(157910, 122182, 'es', 'name', 'Fundación Centro Internacional de Educación y Desarrollo Humano'),
(157911, 122182, 'en', 'name', 'International Center of Education and Human Development (CINDE)'),
(157912, 122183, 'fr', 'name', 'Laboratoire d''Optique et Biosciences'),
(157913, 122183, 'en', 'name', 'Laboratory for Optics and Biosciences'),
(157914, 122184, 'en', 'name', 'Pearson Coal Petrography'),
(157915, 122185, 'fr', 'name', 'Centre des Sciences de SantƩ de l''UniversitƩ du Texas du Nord'),
(157916, 122185, 'en', 'name', 'University of North Texas Health Science Center'),
(157917, 122186, 'en', 'name', 'Paras Hospitals'),
(157918, 122187, 'fr', 'name', 'MetaboHUB'),
(157919, 122188, 'es', 'name', 'Universidad Europea de AndalucĆ­a'),
(157920, 122189, 'fr', 'name', 'Biologie de la Reproduction, Environnement, EpigƩnƩtique et DƩveloppement'),
(157921, 122189, 'en', 'name', 'Biology of Reproduction, Environment, Epigenetics and Development'),
(157922, 122190, 'fr', 'name', 'UnitƩ d''ExpƩrimentation Agronomique et Viticole de Colmar'),
(157923, 122191, 'fr', 'name', 'Laboratoire d''Annecy de Physique ThƩorique'),
(157924, 122192, 'fr', 'name', 'L''Institut Agro'),
(157925, 122193, 'fr', 'name', 'Institut PhotovoltaĆÆque dā€™ĆŽle-de-France'),
(157926, 122194, 'pt', 'name', 'Instituto Nacional de Pesquisa do Pantanal'),
(157927, 122195, 'en', 'name', 'Katheco Consultancy Company Limited'),
(157928, 122195, 'no_lang_code', 'name', 'Katheco Consultancy Company Limited (Tanzania)'),
(157929, 122196, 'en', 'name', 'Monark University'),
(157930, 122197, 'en', 'name', 'Global Water Futures'),
(157931, 122198, 'fr', 'name', 'Centre d''Ʃtudes internationales et europƩennes'),
(157932, 122199, 'fr', 'name', 'EcosystĆØmes forestiers'),
(157933, 122200, 'en', 'name', 'American Wild Horse Conservation'),
(157934, 122201, 'fr', 'name', 'Ecophysiologie et GƩnomique Fonctionnelle de la Vigne'),
(157935, 122201, 'en', 'name', 'Ecophysiology and Grape Functional Genomics'),
(157936, 122202, 'fr', 'name', 'Direction Relations Internationales'),
(157937, 122203, 'uz', 'name', 'Muhammad al-Xorazmiy nomidagi Toshkent Axborot Texnologiyalari Universiteti Samarqand filiali'),
(157938, 122203, 'en', 'name', 'Samarkand branch of Tashkent University of Information Technologies named after Muhammad al-Khwarizmi'),
(157939, 122203, 'ru', 'name', 'ДамарканГский филиал Š¢Š°ŃˆŠŗŠµŠ½Ń‚ского Университета Š˜Š½Ń„ормационных Технологий имени ŠœŃƒŃ…аммаГа ал-Єоразмий'),
(157940, 122204, 'fr', 'name', 'Structures et marchƩs agricoles, ressources et territoires'),
(157941, 122205, 'fr', 'name', 'Laboratoire de Finance des MarchĆ©s de l''Ɖnergie'),
(157942, 122206, 'es', 'name', 'Universidad de Cincinnati'),
(157943, 122206, 'en', 'name', 'University of Cincinnati'),
(157944, 122206, 'fr', 'name', 'UniversitƩ de cincinnati'),
(157945, 122207, 'en', 'name', 'University of Dhaka'),
(157946, 122207, 'bn', 'name', 'ঢাকা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(157947, 122208, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Antilles-Guyane'),
(157948, 122209, 'en', 'name', 'African Export-Import Bank (Egypt)'),
(157949, 122210, 'en', 'name', 'Hemwati Nandan Bahuguna Uttarakhand Medical Education University'),
(157950, 122211, 'en', 'name', 'Toshniwal Arts, Commerce, and Science College'),
(157951, 122212, 'en', 'name', 'Kokand University Andijan branch'),
(157952, 122212, 'uz', 'name', 'Qoā€˜qon Universiteti Andijon Filiali'),
(157953, 122213, 'fr', 'name', 'Savoirs dans l''espace anglophone : reprƩsentations, culture, histoire'),
(157954, 122214, 'en', 'name', 'Nigerian Society of Engineers'),
(157955, 122215, 'en', 'name', 'Faryab University'),
(157956, 122216, 'en', 'name', 'Holland High Tech'),
(157957, 122217, 'en', 'name', 'Gayatri Vidya Parishad College of Engineering for Women'),
(157958, 122218, 'pt', 'name', 'Hospital de ClĆ­nicas de Porto Alegre'),
(157959, 122219, 'fr', 'name', 'CollĆØge de Direction'),
(157960, 122220, 'es', 'name', 'Universidad Libre de Barranquilla'),
(157961, 122221, 'pt', 'name', 'Museu Arqueológico do Rio Grande do Sul'),
(157962, 122222, 'ca', 'name', 'EUIT Centre Universitari'),
(157963, 122223, 'fr', 'name', 'Centre de MathĆ©matiques AppliquĆ©es de l''Ɖcole polytechnique'),
(157964, 122224, 'fr', 'name', 'Sport et sciences sociales'),
(157965, 122225, 'fr', 'name', 'Technologies et systĆØmes d''information pour les agrosystĆØmes'),
(157966, 122226, 'en', 'name', 'Max Planck Society'),
(157967, 122226, 'de', 'name', 'Max-Planck-Gesellschaft zur Fƶrderung der Wissenschaften'),
(157968, 122227, 'en', 'name', 'Real Christian Institute Batam'),
(157969, 122227, 'id', 'name', 'STT Real Batam'),
(157970, 122228, 'es', 'name', 'Instituto de Teoría e Historia del Arte "Julio E. Payró"'),
(157971, 122229, 'en', 'name', 'ICN Business School'),
(157972, 122230, 'fr', 'name', 'Laboratoire de pharmacologie et de toxicologie neurocardiovasculaire'),
(157973, 122231, 'fr', 'name', 'DƩmonstrateur prƩindustriel Ferments du Futur'),
(157974, 122232, 'en', 'name', 'Hong Kong Microelectronics Research and Development Institute'),
(157975, 122233, 'en', 'name', 'Chengdu Seventh People''s Hospital'),
(157976, 122233, 'zh', 'name', 'ęˆéƒ½åø‚ē¬¬äøƒäŗŗę°‘åŒ»é™¢'),
(157977, 122234, 'fr', 'name', 'Antenne DRH Pays de la Loire'),
(157978, 122235, 'en', 'name', 'Green International University'),
(157979, 122236, 'en', 'name', 'Taipei Zoo'),
(157980, 122236, 'zh', 'name', 'č‡ŗåŒ—åø‚ē«‹å‹•ē‰©åœ’'),
(157981, 122237, 'fr', 'name', 'Risques, écosystèmes, vulnérabilité, environnement, résilience'),
(157982, 122238, 'fr', 'name', 'DƩpartement GƩnƩtique Animale'),
(157983, 122239, 'ms', 'name', 'Politeknik Kuching Sarawak'),
(157984, 122240, 'fr', 'name', 'Biotechnologie et Signalisation Cellulaire'),
(157985, 122241, 'fr', 'name', 'UnitƩ de Service Analyses VƩgƩtales et Environnementales'),
(157986, 122242, 'fr', 'name', 'Laboratoire d''Analyses des Sols'),
(157987, 122243, 'fr', 'name', 'Direction Systèmes d''Information-Unité d''Appui'),
(157988, 122244, 'id', 'name', 'Institut Agama Kristen Negeri Toraja'),
(157989, 122245, 'fr', 'name', 'Hommes et management en sociƩtƩ'),
(157990, 122245, 'en', 'name', 'Humans and management in society'),
(157991, 122246, 'fr', 'name', 'EcosystĆØmes aquatiques et changements globaux'),
(157992, 122247, 'en', 'name', 'MIA Cellavie Inc.'),
(157993, 122247, 'no_lang_code', 'name', 'MIA Cellavie Inc. (Canada)'),
(157994, 122248, 'en', 'name', 'Illinois Council of Teachers of Mathematics'),
(157995, 122249, 'en', 'name', 'Stawell Underground Physics Laboratory'),
(157996, 122250, 'fr', 'name', 'EcodƩveloppement'),
(157997, 122251, 'en', 'name', 'Klarman Cell Observatory'),
(157998, 122252, 'en', 'name', 'ICN Business School - Berlin'),
(157999, 122253, 'en', 'name', 'Impuls Medical Institute'),
(158000, 122253, 'uz', 'name', 'Impuls tibbiyot instituti'),
(158001, 122254, 'de', 'name', 'IMMS Institut für Mikroelektronik- und Mechatronik-Systeme gemeinnützige GmbH (IMMS GmbH)'),
(158002, 122255, 'en', 'name', 'AUM BioTech'),
(158003, 122256, 'en', 'name', 'International Foundation Against Infectious Disease in Nigeria'),
(158004, 122257, 'it', 'name', 'Dipartimento Federale della Difesa, della Protezione della Popolazione e dello Sport'),
(158005, 122257, 'fr', 'name', 'DƩpartement FƩdƩral de la DƩfense, de la Protection de la Population et des Sports'),
(158006, 122257, 'de', 'name', 'Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport'),
(158007, 122257, 'en', 'name', 'Federal Department of Defence, Civil Protection and Sports'),
(158008, 122258, 'en', 'name', 'La Source School of Nursing, HES-SO University of Applied Sciences and Arts Western Switzerland'),
(158009, 122259, 'fr', 'name', 'Laboratoire de bioimagerie et pathologies'),
(158010, 122260, 'en', 'name', 'Paris-Saclay Applied Economics'),
(158011, 122261, 'en', 'name', 'Indiana Soybean Alliance'),
(158012, 122262, 'en', 'name', 'Bangladesh Shishu (Children) Hospital & Institute'),
(158013, 122263, 'fr', 'name', 'DSI-Service Informatique InterRƩgional Auvergne-RhƓne-Alpes'),
(158014, 122264, 'en', 'name', 'European University'),
(158015, 122264, 'uk', 'name', 'Š„Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(158016, 122265, 'fr', 'name', 'MathƩmatiques, Informatique et Statistique pour l''Environnement et l''Agronomie'),
(158017, 122266, 'en', 'name', 'Cox Communications (United States)'),
(158018, 122267, 'fr', 'name', 'GƩnƩtique et amƩlioration des fruits et lƩgumes'),
(158019, 122268, 'fr', 'name', 'Centre Occitanie-Toulouse'),
(158020, 122269, 'fr', 'name', 'Groupe d''Ʃtudes orientales, slaves et nƩo-hellƩniques'),
(158021, 122270, 'fr', 'name', 'DSI–Solutions applicatives, intĆ©grations et rĆ©fĆ©rentiels'),
(158022, 122271, 'en', 'name', 'University of Hull'),
(158023, 122272, 'en', 'name', 'Polish Academy of Sciences'),
(158024, 122272, 'pl', 'name', 'Polska Akademia Nauk'),
(158025, 122273, 'en', 'name', 'Good Samaritan University Hospital'),
(158026, 122274, 'en', 'name', 'Te Rito Maioha Early Childhood New Zealand'),
(158027, 122274, 'mi', 'name', 'Te Tari Puna Ora o Aotearoa New Zealand'),
(158028, 122275, 'fr', 'name', 'UnitƩ ExpƩrimentale Versailles Saclay'),
(158029, 122276, 'fr', 'name', 'Plateforme d''Infectiologie ExpƩrimentale'),
(158030, 122277, 'fr', 'name', 'Unité Expérimentale de Recherches Intégrées en arboriculture fruitière - Gotheron'),
(158031, 122278, 'fr', 'name', 'Biologie des Organismes, Stress, SantƩ, Environnement'),
(158032, 122279, 'en', 'name', 'Arts, Commerce and Science College, Dharangaon'),
(158033, 122279, 'mr', 'name', 'कला ą¤µą¤¾ą¤£ą¤æą¤œą„ą¤Æ आणि ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ धरणगाव'),
(158034, 122280, 'en', 'name', 'Spraying Systems Co.'),
(158035, 122280, 'no_lang_code', 'name', 'Spraying Systems Co. (United States)'),
(158036, 122281, 'en', 'name', 'Marie and Louis Pasteur University'),
(158037, 122281, 'fr', 'name', 'UniversitƩ Marie et Louis Pasteur'),
(158038, 122282, 'es', 'name', 'Instituto de Historia de EspaƱa "Dr. Claudio SƔnchez Albornoz"'),
(158039, 122283, 'en', 'name', 'Lyell McEwin Hospital'),
(158040, 122284, 'fr', 'name', 'Laboratoire de recherche en gestion et Ʃconomie'),
(158041, 122285, 'en', 'name', 'Smart Innovation Norway'),
(158042, 122286, 'fr', 'name', 'ƉpidĆ©miologie des maladies Animales et zoonotiques'),
(158043, 122287, 'fr', 'name', 'Institut National de Recherche pour l''Agriculture, l''Alimentation et l''Environnement'),
(158044, 122287, 'en', 'name', 'National Research Institute for Agriculture, Food and Environment'),
(158045, 122288, 'fr', 'name', 'DƩpartement Alimentation Humaine'),
(158046, 122289, 'fr', 'name', 'Recherches Avancées sur la Biologie de l''Arbre et les Ecosystèmes Forestiers'),
(158047, 122290, 'es', 'name', 'Universidad PolitƩcnica de YucatƔn'),
(158048, 122291, 'fr', 'name', 'Laboratoire de Physique des Interfaces et des Couches Minces'),
(158049, 122292, 'fr', 'name', 'Institut Ɖcologie et Environnement'),
(158050, 122293, 'pt', 'name', 'Centro UniversitƔrio UniSenac'),
(158051, 122293, 'en', 'name', 'Senac University Center'),
(158052, 122294, 'fr', 'name', 'Plantes et systĆØmes de culture horticoles'),
(158053, 122295, 'es', 'name', 'Instituto de Artes del EspectÔculo "Dr. Raúl H. Castagnino"'),
(158054, 122296, 'fr', 'name', 'Centre d''Ɖtudes Internationales de la PropriĆ©tĆ© Intellectuelle'),
(158055, 122297, 'en', 'name', 'Global Water Futures Observatories'),
(158056, 122298, 'es', 'name', 'Hospital Universitario de Toledo'),
(158057, 122299, 'fr', 'name', 'Biologie et gestion des champignons phytopathogĆØnes'),
(158058, 122300, 'fr', 'name', 'Fonctionnement des hydrosystĆØmes'),
(158059, 122301, 'en', 'name', 'Defense Research Institute of Mongolia'),
(158060, 122301, 'mn', 'name', 'Батлан хамгаалахын ŃŃ€Š“ŃŠ¼ ŃˆŠøŠ½Š¶ŠøŠ»Š³ŃŃŠ½ŠøŠ¹ Ń…ŅÆŃ€ŃŃŠ»ŃŠ½'),
(158061, 122302, 'fr', 'name', 'DSI-Service Informatique InterRƩgional Corse Antilles Sud'),
(158062, 122303, 'en', 'name', 'East View Information Services, Inc. (United States)'),
(158063, 122304, 'tr', 'name', 'Ɩnder İmam Hatipliler Derneği'),
(158064, 122305, 'fr', 'name', 'Sciences pour l''Action et le DƩveloppement : ActivitƩs, Produits, Territoires'),
(158065, 122306, 'en', 'name', 'Anna University, Chennai'),
(158066, 122306, 'hi', 'name', 'ą¤…ą¤£ą„ą¤£ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą¤¾ą¤²ą¤Æ'),
(158067, 122306, 'ta', 'name', 'ą®…ą®£ąÆą®£ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(158068, 122306, 'te', 'name', 'ą°…ą°Øą±ą°Øą°¾ ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(158069, 122307, 'fr', 'name', 'Laboratoire d''Informatique de l''Ɖcole Polytechnique'),
(158070, 122308, 'en', 'name', 'National Institute for Legislative and Democratic Studies'),
(158071, 122309, 'fr', 'name', 'Centre Ǝle-de-France - Jouy-en-Josas - Antony'),
(158072, 122310, 'fr', 'name', 'Ɖcologie des ForĆŖts MĆ©diterranĆ©ennes'),
(158073, 122311, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Occitanie-Montpellier'),
(158074, 122312, 'fr', 'name', 'Direction Partenariat et Transfert pour l''Innovation'),
(158075, 122313, 'fr', 'name', 'Génétique Physiologie et Systèmes d''Elevage'),
(158076, 122314, 'fr', 'name', 'DƩpartement Ʃconomie et sciences sociales pour l''agriculture, l''alimentation, l''environnement'),
(158077, 122315, 'en', 'name', 'Northwest General Hospital and Research Center'),
(158078, 122316, 'en', 'name', 'Centre for Law and Genetics'),
(158079, 122317, 'en', 'name', 'Arizona Game and Fish Department'),
(158080, 122318, 'en', 'name', 'IILM University Gurugram'),
(158081, 122319, 'fr', 'name', 'Centre Pays de la Loire'),
(158082, 122320, 'fr', 'name', 'Virologie et Immunologie MolƩculaires'),
(158083, 122321, 'en', 'name', 'Grapevine Health and Wine Quality'),
(158084, 122321, 'fr', 'name', 'SantƩ de la Vigne et QualitƩ du Vin'),
(158085, 122322, 'fr', 'name', 'Centre Provence-Alpes-CƓte d''Azur'),
(158086, 122323, 'es', 'name', 'Instituto Universitario de MatemƔticas y Aplicaciones'),
(158087, 122324, 'en', 'name', 'University of Toronto'),
(158088, 122324, 'fr', 'name', 'UniversitƩ de Toronto'),
(158089, 122325, 'en', 'name', 'Dr DY Patil School of Management'),
(158090, 122326, 'fr', 'name', 'MathƩmatiques et Informatique AppliquƩes Toulouse'),
(158091, 122327, 'fr', 'name', 'Immuno-Endocrinologie Cellulaire et MolƩculaire'),
(158092, 122328, 'en', 'name', 'State Institution State Scientific Research and Design Institute of Basic Chemistry'),
(158093, 122328, 'uk', 'name', 'Š”Š•Š Š–ŠŠ’ŠŠ Š£Š”Š¢ŠŠŠžŠ’Š Ā«Š”Š•Š Š–ŠŠ’ŠŠ˜Š™ ŠŠŠ£ŠšŠžŠ’Šž-Š”ŠžŠ”Š›Š†Š”ŠŠ˜Š™ І ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠ˜Š™ Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠžŠ”ŠŠžŠ’ŠŠžŠ‡ Š„Š†ŠœŠ†Š‡Ā»'),
(158094, 122329, 'en', 'name', 'Cellis AG'),
(158095, 122330, 'en', 'name', 'Institute of Forest Biodiversity'),
(158096, 122330, 'hi', 'name', 'Van Jaiv-vividhta Sansthan'),
(158097, 122331, 'fr', 'name', 'Institut des Sciences Humaines et Sociales'),
(158098, 122332, 'fr', 'name', 'Villa Thuret'),
(158099, 122333, 'en', 'name', 'Government Engineering College Wayanad'),
(158100, 122333, 'ml', 'name', 'ą“—ą“µą“£ąµą“®ąµ†ą“Øąµą“±ąµ ą“Žą“žąµą“šą“æą“Øąµ€ą“Æą“±ą“æą“‚ą“—ąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“µą“Æą“Øą“¾ą“Ÿąµ'),
(158101, 122334, 'fr', 'name', 'Unité Mixte de Recherche sur l''Ecosystème Prairial'),
(158102, 122335, 'en', 'name', 'Seattle Children''s Research Institute'),
(158103, 122336, 'en', 'name', 'Acwa (Saudi Arabia)'),
(158104, 122337, 'en', 'name', 'The University of Adelaide'),
(158105, 122338, 'es', 'name', 'Centro Universitario CIFE'),
(158106, 122339, 'fr', 'name', 'Mycologie et SƩcuritƩ des Aliments'),
(158107, 122339, 'en', 'name', 'Mycology and Food Safety'),
(158108, 122340, 'en', 'name', 'University of Tasmania'),
(158109, 122341, 'en', 'name', 'Chamber of Deputies - Brazil'),
(158110, 122342, 'sq', 'name', 'Kolegji Universitar Qiriazi'),
(158111, 122342, 'en', 'name', 'Qiriazi University College'),
(158112, 122343, 'fr', 'name', 'UnitƩ ExpƩrimentale de la Motte'),
(158113, 122344, 'fr', 'name', 'Laboratoire de psychologie des cognitions'),
(158114, 122345, 'en', 'name', 'Council on Library and Information Resources'),
(158115, 122346, 'es', 'name', 'Instituto Interdisciplinario de Estudios e Investigaciones de AmƩrica Latina'),
(158116, 122347, 'fr', 'name', 'DƩpartement SantƩ des Plantes et Environnement'),
(158117, 122347, 'en', 'name', 'Plant Health and the Environment'),
(158118, 122348, 'fr', 'name', 'BiomatƩriaux et BioingƩnierie'),
(158119, 122349, 'en', 'name', 'Wireless World Research Forum'),
(158120, 122350, 'fr', 'name', 'DƩpartement sciences pour l''ingƩnierie des aliments, des produits biosourcƩs et des rƩsidus de l''activitƩ humaine'),
(158121, 122351, 'fr', 'name', 'Physiologie de la Nutrition et du Comportement Alimentaire'),
(158122, 122352, 'fr', 'name', 'NanomƩdecine rƩgƩnƩrative'),
(158123, 122352, 'en', 'name', 'Regenerative NanoMedicine'),
(158124, 122353, 'en', 'name', 'Zenith Super Specialist Hospital'),
(158125, 122354, 'es', 'name', 'Escuela Superior de Diseño de Aragón'),
(158126, 122355, 'fr', 'name', 'DƩpartement Biologie et AmƩlioration des Plantes'),
(158127, 122356, 'en', 'name', 'F.D. Ovcharenko Institute of Biocolloidal Chemistry of the National Academy of Sciences of Ukraine'),
(158128, 122356, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біоколоїГної хімії імені Ф.Š”.ŠžŠ²Ń‡Š°Ń€ŠµŠ½ŠŗŠ° ŠŠŠ України'),
(158129, 122357, 'no_lang_code', 'name', 'Jiwaji University'),
(158130, 122357, 'hi', 'name', 'ą¤œą„€ą¤µą¤¾ą¤œą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤—ą„ą¤µą¤¾ą¤²ą¤æą¤Æą¤°'),
(158131, 122358, 'fr', 'name', 'Etude du Polymorphisme des GƩnomes VƩgƩtaux'),
(158132, 122359, 'fr', 'name', 'Institut Agro Montpellier'),
(158133, 122360, 'fr', 'name', 'Services dƩconcentrƩs d''appui Ơ la recherche Ile-de-France-Jouy-en-Josas-Antony'),
(158134, 122361, 'en', 'name', 'Australian Age of Dinosaurs'),
(158135, 122362, 'en', 'name', 'Catholic University of Bolivia San Pablo'),
(158136, 122362, 'es', 'name', 'Universidad Católica Boliviana San Pablo'),
(158137, 122363, 'fr', 'name', 'AvipƓle'),
(158138, 122364, 'en', 'name', 'GCS Medical College'),
(158139, 122365, 'en', 'name', 'Research Data Scotland'),
(158140, 122366, 'fr', 'name', 'UnitƩ ExpƩrimentale sur les Ressources GƩnƩtiques VƩgƩtales en Conditions OcƩaniques'),
(158141, 122367, 'en', 'name', 'Endometriosis Society India'),
(158142, 122368, 'en', 'name', 'Precision Hydration (United Kingdom)'),
(158143, 122369, 'fr', 'name', 'DƩpartement mathƩmatiques, informatique, sciences de la donnƩe et technologies du numƩrique'),
(158144, 122370, 'fr', 'name', 'Centre de Recherches sur la Cognition et l''Apprentissage'),
(158145, 122370, 'en', 'name', 'Research Centre on Cognition and Learning'),
(158146, 122371, 'en', 'name', 'Dr. A.P.J. Abdul Kalam Technical University'),
(158147, 122372, 'fr', 'name', 'Domaine expƩrimental de Saint-Laurent-de-la-PrƩe'),
(158148, 122373, 'en', 'name', 'Karaganda Buketov University'),
(158149, 122373, 'kk', 'name', 'АкаГемик Š•.А. Бөкетов атынГағы ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(158150, 122373, 'ru', 'name', 'АкаГемик Š•.А. Бөкетов атынГағы ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ Ұлттық Š—ŠµŃ€Ń‚Ń‚ŠµŃƒ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(158151, 122374, 'fr', 'name', 'Direction Appui aux Politiques Publiques'),
(158152, 122375, 'fr', 'name', 'SIMBA: InfƩrence Statistique et ModƩlisation pour les Applications Biologiques'),
(158153, 122375, 'en', 'name', 'SIMBA: Statistical Inference and Modeling for Biological Applications'),
(158154, 122376, 'en', 'name', 'Council of Higher Education'),
(158155, 122376, 'tr', 'name', 'Yükseköğretim Kurulu'),
(158156, 122377, 'fr', 'name', 'Laboratoire d''Ecophysiologie des Plantes sous Stress environnementaux'),
(158157, 122378, 'en', 'name', 'Max Planck School of Photonics'),
(158158, 122379, 'fr', 'name', 'Laboratoire de Biotechnologie de l''Environnement'),
(158159, 122379, 'en', 'name', 'Laboratory of Environmental Biotechnology'),
(158160, 122380, 'en', 'name', 'Ministry of Health and Family Welfare'),
(158161, 122380, 'bn', 'name', 'ą¦øą§ą¦¬ą¦¾ą¦øą§ą¦„ą§ą¦Æ ও পরিবার ą¦•ą¦²ą§ą¦Æą¦¾ą¦£ ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(158162, 122381, 'en', 'name', 'The Higher Institute of Applied Arts Fifth settlement'),
(158163, 122382, 'en', 'name', 'Alliance for Data Science and AI'),
(158164, 122383, 'no_lang_code', 'name', 'Tokusen Kogyo Co., Ltd. (Japan)'),
(158165, 122383, 'ja', 'name', 'ćƒˆć‚Æć‚»ćƒ³å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158166, 122384, 'no_lang_code', 'name', 'DEN-EN Shuzo Co., Ltd. (Japan)'),
(158167, 122384, 'ja', 'name', 'ē”°č‹‘é…’é€ ę Ŗå¼ä¼šē¤¾'),
(158168, 122385, 'no_lang_code', 'name', 'Crystage Incorporation (Japan)'),
(158169, 122385, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚ÆćƒŖć‚¹ć‚æćƒ¼ć‚øćƒ„'),
(158170, 122386, 'id', 'name', 'Politeknik AKA Bogor'),
(158171, 122387, 'no_lang_code', 'name', 'PREC Institute Inc. (Japan)'),
(158172, 122387, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ¬ćƒƒć‚Æē ”ē©¶ę‰€'),
(158173, 122388, 'no_lang_code', 'name', 'Renown Apparel Institute Incorporated (Japan)'),
(158174, 122388, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¬ćƒŠć‚¦ćƒ³ć‚¢ćƒ‘ćƒ¬ćƒ«ē§‘å­¦ē ”ē©¶ę‰€'),
(158175, 122389, 'en', 'name', 'Cooperative Institute for Meteorological Satellite Studies'),
(158176, 122390, 'no_lang_code', 'name', 'NEIS Co., Ltd. (Japan)'),
(158177, 122390, 'ja', 'name', 'ćƒŠć‚¤ć‚¹ę Ŗå¼ä¼šē¤¾'),
(158178, 122391, 'no_lang_code', 'name', 'SYSKEN Corporation (Japan)'),
(158179, 122391, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾SYSKEN'),
(158180, 122392, 'en', 'name', 'Novo Nordisk Foundation Center for Stem Cell Medicine'),
(158181, 122393, 'fr', 'name', 'Centre Universitaire Jean-FranƧois-Champollion'),
(158182, 122393, 'en', 'name', 'National University Institute Jean-Francois Champollion'),
(158183, 122394, 'no_lang_code', 'name', 'TKC Corporation (Japan)'),
(158184, 122394, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾TKC'),
(158185, 122395, 'no_lang_code', 'name', 'Soiken Holdings Inc. (Japan)'),
(158186, 122395, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē·åŒ»ē ”ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(158187, 122396, 'no_lang_code', 'name', 'ZEON Kasei Co., Ltd. (Japan)'),
(158188, 122396, 'ja', 'name', 'ć‚¼ć‚Ŗćƒ³åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(158189, 122397, 'no_lang_code', 'name', 'Advangen, Inc. (Japan)'),
(158190, 122397, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒćƒ³ć‚øć‚§ćƒ³'),
(158191, 122398, 'en', 'name', 'First On-Call Initiative'),
(158192, 122399, 'no_lang_code', 'name', 'Mizutani Paint MFG. Co., Ltd. (Japan)'),
(158193, 122399, 'ja', 'name', 'ę°“č°·ćƒšć‚¤ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(158194, 122400, 'no_lang_code', 'name', 'AFC-HD AMS Life Science Co., Ltd. (Japan)'),
(158195, 122400, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾AFC-HDć‚¢ćƒ ć‚¹ćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(158196, 122401, 'en', 'name', 'NIHR Academy'),
(158197, 122402, 'en', 'name', 'Tottori University'),
(158198, 122402, 'ja', 'name', '鳄取大学'),
(158199, 122403, 'no_lang_code', 'name', 'Chiroro-NET Co., Ltd. (Japan)'),
(158200, 122403, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒ­ćƒ­ćƒćƒƒćƒˆ'),
(158201, 122404, 'fr', 'name', 'Institut de Neurosciences Cognitives et IntĆ©gratives d’Aquitaine'),
(158202, 122405, 'en', 'name', 'Nam Can Tho University'),
(158203, 122405, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Nam Cįŗ§n ThĘ”'),
(158204, 122406, 'no_lang_code', 'name', 'DKK-TOA Corporation (Japan)'),
(158205, 122406, 'ja', 'name', 'ę±äŗœćƒ‡ć‚£ćƒ¼ć‚±ćƒ¼ć‚±ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(158206, 122407, 'no_lang_code', 'name', 'Seikoh Giken Co., Ltd. (Japan)'),
(158207, 122407, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē²¾å·„ęŠ€ē ”'),
(158208, 122408, 'no_lang_code', 'name', 'Plasma ION Assist Co., Ltd. (Japan)'),
(158209, 122408, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ©ć‚ŗćƒžć‚¤ć‚Ŗćƒ³ć‚¢ć‚·ć‚¹ćƒˆ'),
(158210, 122409, 'no_lang_code', 'name', 'Photon Production Laboratory, Ltd. (Japan)'),
(158211, 122409, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…‰å­ē™ŗē”ŸęŠ€č”“ē ”ē©¶ę‰€'),
(158212, 122410, 'no_lang_code', 'name', 'Solution CREW, Inc. (Japan)'),
(158213, 122410, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ćƒ»ć‚Æćƒ«ćƒ¼'),
(158214, 122411, 'no_lang_code', 'name', 'Taiatsu Techno Corporation (Japan)'),
(158215, 122411, 'ja', 'name', 'č€åœ§ē”å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158216, 122412, 'no_lang_code', 'name', 'Jemco Inc. (Japan)'),
(158217, 122412, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øć‚§ćƒ ć‚³'),
(158218, 122413, 'no_lang_code', 'name', 'C.I. Takiron Corporation (Japan)'),
(158219, 122413, 'ja', 'name', 'ć‚æć‚­ćƒ­ćƒ³ć‚·ćƒ¼ć‚¢ć‚¤ę Ŗå¼ä¼šē¤¾'),
(158220, 122414, 'no_lang_code', 'name', 'Shinkeisei Electric Railway Corporation (Japan)'),
(158221, 122414, 'ja', 'name', 'ę–°äŗ¬ęˆé›»é‰„ę Ŗå¼ä¼šē¤¾'),
(158222, 122415, 'no_lang_code', 'name', 'Tsugami Corporation (Japan)'),
(158223, 122415, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ„ć‚¬ćƒŸ'),
(158224, 122416, 'no_lang_code', 'name', 'Repertoire Genesis Incorporated (Japan)'),
(158225, 122416, 'ja', 'name', 'Repertoire Genesisę Ŗå¼ä¼šē¤¾'),
(158226, 122417, 'no_lang_code', 'name', 'Toabo Corporation (Japan)'),
(158227, 122417, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ć‚¢ē“”ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(158228, 122418, 'no_lang_code', 'name', 'S.E.S. Co., Ltd. (Japan)'),
(158229, 122418, 'ja', 'name', 'ć‚Øć‚¹ćƒ»ć‚¤ćƒ¼ćƒ»ć‚Øć‚¹ę Ŗå¼ä¼šē¤¾'),
(158230, 122419, 'en', 'name', 'NEOMA Business School'),
(158231, 122419, 'fr', 'name', 'Ɖcole supĆ©rieure de commerce de rouen'),
(158232, 122420, 'no_lang_code', 'name', 'Heisei Polymer Co., Ltd. (Japan)'),
(158233, 122420, 'ja', 'name', 'å¹³ęˆćƒćƒŖćƒžćƒ¼ę Ŗå¼ä¼šē¤¾'),
(158234, 122421, 'no_lang_code', 'name', 'Horii Pharmaceutical IND., Ltd. (Japan)'),
(158235, 122421, 'ja', 'name', 'å €äŗ•č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158236, 122422, 'fr', 'name', 'Centre de recherche public Gabriel-Lippmann'),
(158237, 122423, 'no_lang_code', 'name', 'Technoface Corporation (Japan)'),
(158238, 122423, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚ÆćƒŽćƒ•ć‚§ć‚¤ć‚¹'),
(158239, 122424, 'no_lang_code', 'name', 'Trend Micro Inc. (Japan)'),
(158240, 122424, 'ja', 'name', 'ćƒˆćƒ¬ćƒ³ćƒ‰ćƒžć‚¤ć‚Æćƒ­ę Ŗå¼ä¼šē¤¾'),
(158241, 122425, 'no_lang_code', 'name', 'Build Co., Ltd. (Japan)'),
(158242, 122425, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ“ćƒ«ćƒ‰'),
(158243, 122426, 'en', 'name', 'Hydrometeorological Research Institute'),
(158244, 122426, 'uz', 'name', 'Ilmiy-tadqiqot gidrometeorologiya instituti'),
(158245, 122426, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ гиГрометеорологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(158246, 122427, 'en', 'name', 'NIHR Liverpool Pancreatic Biomedical Research Unit'),
(158247, 122428, 'no_lang_code', 'name', 'E-Associates Inc. (Japan)'),
(158248, 122428, 'ja', 'name', 'ć‚¤ćƒ¼ćƒ»ć‚¢ć‚½ć‚·ć‚Øć‚¤ćƒ„ę Ŗå¼ä¼šē¤¾'),
(158249, 122429, 'en', 'name', 'Scottish Agricultural College'),
(158250, 122430, 'no_lang_code', 'name', 'Kiriu Corporation (Japan)'),
(158251, 122430, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒŖć‚¦'),
(158252, 122431, 'en', 'name', 'Leuven Stem Cell Institute'),
(158253, 122431, 'nl', 'name', 'Stamcelinstituut Leuven'),
(158254, 122432, 'en', 'name', 'Al-Manar College for Science and Technology'),
(158255, 122432, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© المنار Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(158256, 122433, 'es', 'name', 'Fundación MenteClara'),
(158257, 122434, 'fr', 'name', 'Centre de recherches pour le dƩveloppement international'),
(158258, 122434, 'en', 'name', 'International Development Research Centre'),
(158259, 122435, 'no_lang_code', 'name', 'Ahjikan Co., Ltd. (Japan)'),
(158260, 122435, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚ć˜ć‹ć‚“'),
(158261, 122436, 'no_lang_code', 'name', 'Thermal Co., Ltd. (Japan)'),
(158262, 122436, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒ¼ćƒžćƒ«'),
(158263, 122437, 'no_lang_code', 'name', 'Akebono Brake Industry Co., Ltd. (Japan)'),
(158264, 122437, 'ja', 'name', 'ę›™ćƒ–ćƒ¬ćƒ¼ć‚­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158265, 122438, 'no_lang_code', 'name', 'Spiber Incorporated (Japan)'),
(158266, 122438, 'ja', 'name', 'Spiberę Ŗå¼ä¼šē¤¾'),
(158267, 122439, 'no_lang_code', 'name', 'Konoike Construction Co., Ltd. (Japan)'),
(158268, 122439, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é“»ę± ēµ„'),
(158269, 122440, 'no_lang_code', 'name', 'NU-Systems Corporation (Japan)'),
(158270, 122440, 'ja', 'name', 'NUć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(158271, 122441, 'no_lang_code', 'name', 'Hosiden Corporation (Japan)'),
(158272, 122441, 'ja', 'name', 'ćƒ›ć‚·ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(158273, 122442, 'no_lang_code', 'name', 'Analysis Center Co., Ltd. (Japan)'),
(158274, 122442, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åˆ†ęžć‚»ćƒ³ć‚æćƒ¼'),
(158275, 122443, 'no_lang_code', 'name', 'Spring-8 Service Co., Ltd. (Japan)'),
(158276, 122443, 'ja', 'name', 'ć‚¹ćƒ—ćƒŖćƒ³ć‚°ć‚Øć‚¤ćƒˆć‚µćƒ¼ćƒ“ć‚¹ę Ŗå¼ä¼šē¤¾'),
(158277, 122444, 'no_lang_code', 'name', 'Tietech Co., Ltd. (Japan)'),
(158278, 122444, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚¤ćƒ†ćƒƒć‚Æ'),
(158279, 122445, 'en', 'name', 'Center for Southeast Asian Studies, Kyoto University'),
(158280, 122445, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦ę±å—ć‚¢ć‚øć‚¢åœ°åŸŸē ”ē©¶ē ”ē©¶ę‰€'),
(158281, 122446, 'no_lang_code', 'name', 'Kumahira SAFE Co., Inc. (Japan)'),
(158282, 122446, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē†Šå¹³č£½ä½œę‰€'),
(158283, 122447, 'en', 'name', 'Wildlife Research Center, Kyoto University'),
(158284, 122447, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦é‡Žē”Ÿå‹•ē‰©ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(158285, 122448, 'no_lang_code', 'name', 'Geosphere Environmental Technology Corp. (Japan)'),
(158286, 122448, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åœ°åœē’°å¢ƒćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼'),
(158287, 122449, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Mostaganem'),
(158288, 122449, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة مستغانم'),
(158289, 122450, 'en', 'name', 'Peter MacCallum Cancer Centre'),
(158290, 122451, 'en', 'name', 'Chinese Academy of Sciences'),
(158291, 122451, 'zh', 'name', '中国科学院'),
(158292, 122452, 'no_lang_code', 'name', 'Ryobi Ltd. (Japan)'),
(158293, 122452, 'ja', 'name', 'ćƒŖćƒ§ćƒ¼ćƒ“ę Ŗå¼ä¼šē¤¾'),
(158294, 122453, 'no_lang_code', 'name', 'Ultrafabrics Holdings Co., Ltd. (Japan)'),
(158295, 122453, 'ja', 'name', 'ć‚¦ćƒ«ćƒˆćƒ©ćƒ•ć‚”ćƒ–ćƒŖćƒƒć‚Æć‚¹ćƒ»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(158296, 122454, 'no_lang_code', 'name', 'WOOD ONE Co., Ltd. (Japan)'),
(158297, 122454, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¦ćƒƒćƒ‰ćƒÆćƒ³'),
(158298, 122455, 'no_lang_code', 'name', 'T&D Holdings, Inc. (Japan)'),
(158299, 122455, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾T&Dćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(158300, 122456, 'no_lang_code', 'name', 'Sugino Machine Limited (Japan)'),
(158301, 122456, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ć‚®ćƒŽćƒžć‚·ćƒ³'),
(158302, 122457, 'no_lang_code', 'name', 'Actcell Corporation (Japan)'),
(158303, 122457, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚Æć‚»ćƒ«'),
(158304, 122458, 'no_lang_code', 'name', 'J-Power Systems Corporation (Japan)'),
(158305, 122458, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ»ćƒ‘ćƒÆćƒ¼ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(158306, 122459, 'no_lang_code', 'name', 'Geostr Corporation (Japan)'),
(158307, 122459, 'ja', 'name', 'ć‚øć‚Ŗć‚¹ć‚æćƒ¼ę Ŗå¼ä¼šē¤¾'),
(158308, 122460, 'fr', 'name', 'Conseil de l''industrie forestière du Québec'),
(158309, 122460, 'en', 'name', 'Quebec Forest Industry Council'),
(158310, 122461, 'no_lang_code', 'name', 'Takanashi MILK Products Co., Ltd. (Japan)'),
(158311, 122461, 'ja', 'name', 'é«˜ę¢Øä¹³ę„­ę Ŗå¼ä¼šē¤¾'),
(158312, 122462, 'no_lang_code', 'name', 'TBR Co., Ltd. (Japan)'),
(158313, 122462, 'ja', 'name', 'ćƒ†ć‚£ćƒ“ćƒ¼ć‚¢ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(158314, 122463, 'no_lang_code', 'name', 'Uhero Corp. (Japan)'),
(158315, 122463, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ’ćƒ¼ćƒ­'),
(158316, 122464, 'en', 'name', 'The Institute of Environmental Geochemistry of National Academy of Sciences of Ukraine'),
(158317, 122464, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геохімії навколишнього сереГовища ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України»'),
(158318, 122465, 'tr', 'name', 'Eğitim Programları ve Ɩğretim Derneği'),
(158319, 122465, 'en', 'name', 'Turkish Association of Curriculum and Instruction'),
(158320, 122466, 'no_lang_code', 'name', 'Satsuma Shuzo Co., Ltd. (Japan)'),
(158321, 122466, 'ja', 'name', 'č–©ę‘©é…’é€ ę Ŗå¼ä¼šē¤¾'),
(158322, 122467, 'no_lang_code', 'name', 'Funken Powtechs, Inc. (Japan)'),
(158323, 122467, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē²‰ē ”ćƒ‘ć‚¦ćƒ†ćƒƒć‚Æć‚¹'),
(158324, 122468, 'fr', 'name', 'Laboratoire EpidƩmiologie et Analyses en SantƩ Publique : Risques, Maladies Chroniques et Handicaps'),
(158325, 122469, 'no_lang_code', 'name', 'Sugiyo Co., Ltd. (Japan)'),
(158326, 122469, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ć‚®ćƒØ'),
(158327, 122470, 'no_lang_code', 'name', 'Ohishi Sangyo Co., Ltd. (Japan)'),
(158328, 122470, 'ja', 'name', 'å¤§ēŸ³ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(158329, 122471, 'no_lang_code', 'name', 'Takamatsu Machinery Co., Ltd. (Japan)'),
(158330, 122471, 'ja', 'name', 'é«˜ę¾ę©Ÿę¢°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158331, 122472, 'no_lang_code', 'name', 'Gohsyu Corporation (Japan)'),
(158332, 122472, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚“ćƒ¼ć‚·ćƒ„ćƒ¼'),
(158333, 122473, 'no_lang_code', 'name', 'COMS Engineering Corporation (Japan)'),
(158334, 122473, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚³ćƒ ć‚¹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(158335, 122474, 'fr', 'name', 'Commission europƩenne'),
(158336, 122474, 'en', 'name', 'European Commission'),
(158337, 122474, 'nl', 'name', 'Europese Commissie'),
(158338, 122474, 'de', 'name', 'EuropƤische Kommission'),
(158339, 122475, 'no_lang_code', 'name', 'Hayashikane Sangyo Co., Ltd. (Japan)'),
(158340, 122475, 'ja', 'name', 'ęž—å…¼ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(158341, 122476, 'no_lang_code', 'name', 'Ecomas Co., Ltd. (Japan)'),
(158342, 122476, 'ja', 'name', 'ć‚Øć‚³ćƒžć‚¹ę Ŗå¼ä¼šē¤¾'),
(158343, 122477, 'no_lang_code', 'name', 'Shoden Corporation (Japan)'),
(158344, 122477, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę˜­é›»'),
(158345, 122478, 'no_lang_code', 'name', 'Precision System Science Co., Ltd. (Japan)'),
(158346, 122478, 'ja', 'name', 'ćƒ—ćƒ¬ć‚·ć‚øćƒ§ćƒ³ćƒ»ć‚·ć‚¹ćƒ†ćƒ ćƒ»ć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(158347, 122479, 'no_lang_code', 'name', 'Nishimura MFG. Co., Ltd. (Japan)'),
(158348, 122479, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č„æę‘č£½ä½œę‰€'),
(158349, 122480, 'no_lang_code', 'name', 'Naiki Co., Ltd. (Japan)'),
(158350, 122480, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŠć‚¤ć‚­'),
(158351, 122481, 'no_lang_code', 'name', 'Aiphone Co., Ltd. (Japan)'),
(158352, 122481, 'ja', 'name', 'ć‚¢ć‚¤ćƒ›ćƒ³ę Ŗå¼ä¼šē¤¾'),
(158353, 122482, 'no_lang_code', 'name', 'Tansei Institute Co., Ltd. (Japan)'),
(158354, 122482, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äø¹é’ē ”ē©¶ę‰€'),
(158355, 122483, 'no_lang_code', 'name', 'AWA Paper MFG. Co., Ltd. (Japan)'),
(158356, 122483, 'ja', 'name', 'é˜æę³¢č£½ē“™ę Ŗå¼ä¼šē¤¾'),
(158357, 122484, 'no_lang_code', 'name', 'TBK Co., Ltd. (Japan)'),
(158358, 122484, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾TBK'),
(158359, 122485, 'no_lang_code', 'name', 'T.RAD Co., Ltd. (Japan)'),
(158360, 122485, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚£ćƒ©ćƒ‰'),
(158361, 122486, 'no_lang_code', 'name', 'Izumi FOOD Machinery Co., Ltd. (Japan)'),
(158362, 122486, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ć‚ŗćƒŸćƒ•ćƒ¼ćƒ‰ćƒžć‚·ćƒŠćƒŖ'),
(158363, 122487, 'no_lang_code', 'name', 'Yanagiya Machinery Co., Ltd. (Japan)'),
(158364, 122487, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¤ćƒŠć‚®ćƒ¤'),
(158365, 122488, 'no_lang_code', 'name', 'Tokio Marine Holdings, Inc. (Japan)'),
(158366, 122488, 'ja', 'name', 'ę±äŗ¬ęµ·äøŠćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(158367, 122489, 'no_lang_code', 'name', 'A-R-TEC Corp. (Japan)'),
(158368, 122489, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ć‚¢ćƒ¼ćƒ«ćƒ†ćƒƒć‚Æ'),
(158369, 122490, 'en', 'name', 'Bangabasi Evening College'),
(158370, 122491, 'no_lang_code', 'name', 'Nanoteco Corporation (Japan)'),
(158371, 122491, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŠćƒŽćƒ†ć‚³'),
(158372, 122492, 'no_lang_code', 'name', 'Pilot Corporation (Japan)'),
(158373, 122492, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‘ć‚¤ćƒ­ćƒƒćƒˆć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(158374, 122493, 'no_lang_code', 'name', 'Fluoro COAT Corporation (Japan)'),
(158375, 122493, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ­ćƒ­ć‚³ćƒ¼ćƒˆ'),
(158376, 122494, 'no_lang_code', 'name', 'Tungaloy Corporation (Japan)'),
(158377, 122494, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æćƒ³ć‚¬ćƒ­ć‚¤'),
(158378, 122495, 'en', 'name', 'Sikkim Alpine University'),
(158379, 122496, 'no_lang_code', 'name', 'Hirotsuku Co., Ltd. (Japan)'),
(158380, 122496, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ’ćƒ­ćƒ„ć‚Æ'),
(158381, 122497, 'no_lang_code', 'name', 'Asunaroaoki Construction Co., Ltd. (Japan)'),
(158382, 122497, 'ja', 'name', 'é’ęœØć‚ć™ćŖć‚å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(158383, 122498, 'no_lang_code', 'name', 'Daihen Corporation (Japan)'),
(158384, 122498, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ćƒ˜ćƒ³'),
(158385, 122499, 'no_lang_code', 'name', 'GK Kyoto Inc. (Japan)'),
(158386, 122499, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øć‚¤ć‚±ć‚¤äŗ¬éƒ½'),
(158387, 122500, 'no_lang_code', 'name', 'Totalmedia Development Institute Co., Ltd. (Japan)'),
(158388, 122500, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ć‚æćƒ«ćƒ”ćƒ‡ć‚£ć‚¢é–‹ē™ŗē ”ē©¶ę‰€'),
(158389, 122501, 'fr', 'name', 'Laboratoire de recherche ENAC'),
(158390, 122502, 'en', 'name', 'Open Institute of Technology'),
(158391, 122503, 'no_lang_code', 'name', 'WEB Intelligence Laboratory (Japan)'),
(158392, 122503, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚¦ć‚§ćƒ–ćƒ»ć‚¤ćƒ³ćƒ†ćƒŖć‚øć‚§ćƒ³ć‚¹ćƒ»ćƒ©ćƒœ'),
(158393, 122504, 'no_lang_code', 'name', 'Ouchi Shinko Chemical Industrial Co., Ltd. (Japan)'),
(158394, 122504, 'ja', 'name', 'å¤§å†…ę–°čˆˆåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158395, 122505, 'no_lang_code', 'name', 'Isolite Insulating Products Co., Ltd. (Japan)'),
(158396, 122505, 'ja', 'name', 'ć‚¤ć‚½ćƒ©ć‚¤ćƒˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158397, 122506, 'no_lang_code', 'name', 'Ergoseating Co., Ltd. (Japan)'),
(158398, 122506, 'ja', 'name', 'ć‚Øćƒ«ć‚“ć‚·ćƒ¼ćƒ†ć‚£ćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(158399, 122507, 'no_lang_code', 'name', 'Canbas Co., Ltd. (Japan)'),
(158400, 122507, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒ£ćƒ³ćƒć‚¹'),
(158401, 122508, 'en', 'name', 'NIHR Royal Brompton Cardiovascular Biomedical Research Unit'),
(158402, 122509, 'no_lang_code', 'name', 'Sanki Engineering Co., Ltd. (Japan)'),
(158403, 122509, 'ja', 'name', 'äø‰ę©Ÿå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158404, 122510, 'no_lang_code', 'name', 'SMK Corporation (Japan)'),
(158405, 122510, 'ja', 'name', 'SMKę Ŗå¼ä¼šē¤¾'),
(158406, 122511, 'de', 'name', 'Fischereiforschungsstelle Baden-Württemberg (LAZBW)'),
(158407, 122511, 'en', 'name', 'Fisheries Research Station Baden-Württemberg'),
(158408, 122512, 'en', 'name', 'National Natural Science Foundation of China'),
(158409, 122512, 'zh', 'name', 'å›½å®¶č‡Ŗē„¶ē§‘å­¦åŸŗé‡‘å§”å‘˜ä¼š'),
(158410, 122513, 'no_lang_code', 'name', 'Shinnippon Wheel Industries Co., Ltd. (Japan)'),
(158411, 122513, 'ja', 'name', 'ę–°ę—„ęœ¬ćƒ›ć‚¤ćƒ¼ćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158412, 122514, 'no_lang_code', 'name', 'Alpine Electronics, Inc. (Japan)'),
(158413, 122514, 'ja', 'name', 'ć‚¢ćƒ«ćƒ‘ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(158414, 122515, 'fr', 'name', 'Lettres, Langages et Arts - CrĆ©ation, Recherche, Ɖmergence en Arts, Textes, Images, Spectacles'),
(158415, 122516, 'no_lang_code', 'name', 'Kawaden Corporation (Japan)'),
(158416, 122516, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‹ć‚ć§ć‚“'),
(158417, 122517, 'no_lang_code', 'name', 'Usugidenkaikougyou Co., Ltd. (Japan)'),
(158418, 122517, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č–„č”£é›»č§£å·„ę„­'),
(158419, 122518, 'no_lang_code', 'name', 'Creative Design Corp. (Japan)'),
(158420, 122518, 'ja', 'name', 'ć‚ÆćƒŖć‚Øćƒ¼ćƒˆćƒ»ćƒ‡ć‚¶ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(158421, 122519, 'eu', 'name', 'Gizarte Ikerketa Aurreraturako Institutua'),
(158422, 122519, 'en', 'name', 'Institute for Advanced Social Research'),
(158423, 122519, 'es', 'name', 'Instituto de Investigación Social Avanzada'),
(158424, 122520, 'no_lang_code', 'name', 'Wisdomtex, Inc. (Japan)'),
(158425, 122520, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¦ć‚£ć‚ŗćƒ€ćƒ ćƒ†ćƒƒć‚Æ'),
(158426, 122521, 'fr', 'name', 'Ɖcole Nationale de l’Aviation Civile'),
(158427, 122522, 'en', 'name', 'NIHR Imperial Biomedical Research Centre'),
(158428, 122523, 'en', 'name', 'Frost Institute for Data Science & Computing'),
(158429, 122524, 'en', 'name', 'Polytechnic University of Huatusco'),
(158430, 122524, 'es', 'name', 'Universidad PolitƩcnica de Huatusco'),
(158431, 122525, 'en', 'name', 'Biochemistry and Toxicology of Bioactive Molecules'),
(158432, 122525, 'fr', 'name', 'Biochimie et Toxicologie des Substances Bioactives'),
(158433, 122526, 'no_lang_code', 'name', 'Chiome Bioscience Inc. (Japan)'),
(158434, 122526, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ć‚¤ć‚Ŗćƒ ćƒ»ćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(158435, 122527, 'no_lang_code', 'name', 'Nishinihon Institute OF Technology (Japan)'),
(158436, 122527, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č„æę—„ęœ¬ē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(158437, 122528, 'no_lang_code', 'name', 'Kimura Chemical Plants Co., Ltd. (Japan)'),
(158438, 122528, 'ja', 'name', 'ęœØę‘åŒ–å·„ę©Ÿę Ŗå¼ä¼šē¤¾'),
(158439, 122529, 'no_lang_code', 'name', 'Itrek Corporation (Japan)'),
(158440, 122529, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚¢ć‚¤ćƒˆćƒ¬ćƒƒć‚Æ'),
(158441, 122530, 'no_lang_code', 'name', 'Meiko Construction Co., Ltd. (Japan)'),
(158442, 122530, 'ja', 'name', 'åå·„å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(158443, 122531, 'no_lang_code', 'name', 'Semba Tohka Industries Co., Ltd. (Japan)'),
(158444, 122531, 'ja', 'name', 'ä»™ę³¢ē³–åŒ–å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158445, 122532, 'no_lang_code', 'name', 'Mitos Co. Ltd. (Japan)'),
(158446, 122532, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžć‚¤ćƒˆć‚¹'),
(158447, 122533, 'no_lang_code', 'name', 'GOH IRON Works Co., Ltd. (Japan)'),
(158448, 122533, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾éƒ·é‰„å·„ę‰€'),
(158449, 122534, 'en', 'name', 'Indraprastha College for Women'),
(158450, 122535, 'no_lang_code', 'name', 'NTK Ceratec Co., Ltd. (Japan)'),
(158451, 122535, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾NTKć‚»ćƒ©ćƒ†ćƒƒć‚Æ'),
(158452, 122536, 'en', 'name', 'EUNEIZ'),
(158453, 122536, 'es', 'name', 'La Universidad de Nuevas TecnologĆ­as, Deporte y Salud'),
(158454, 122537, 'en', 'name', 'Haraldsplass Deaconess University College'),
(158455, 122537, 'no', 'name', 'Haraldsplass diakonale hĆøgskole'),
(158456, 122538, 'no_lang_code', 'name', 'Onamba Co., Ltd. (Japan)'),
(158457, 122538, 'ja', 'name', 'ć‚Ŗćƒ¼ćƒŠćƒ³ćƒę Ŗå¼ä¼šē¤¾'),
(158458, 122539, 'no_lang_code', 'name', 'Capty Co., Ltd. (Japan)'),
(158459, 122539, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒ£ćƒ—ćƒ†ć‚£'),
(158460, 122540, 'no_lang_code', 'name', 'Nacalai Tesque, Inc. (Japan)'),
(158461, 122540, 'ja', 'name', 'ćƒŠć‚«ćƒ©ć‚¤ćƒ†ć‚¹ć‚Æę Ŗå¼ä¼šē¤¾'),
(158462, 122541, 'no_lang_code', 'name', 'Kodama Chemical Industry Co., Ltd. (Japan)'),
(158463, 122541, 'ja', 'name', 'å…ēŽ‰åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158464, 122542, 'ms', 'name', 'Kementerian Pengajian Tinggi'),
(158465, 122542, 'en', 'name', 'Ministry of Higher Education'),
(158466, 122543, 'no_lang_code', 'name', 'Starlite Co., Ltd. (Japan)'),
(158467, 122543, 'ja', 'name', 'ć‚¹ć‚æćƒ¼ćƒ©ć‚¤ćƒˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158468, 122544, 'no_lang_code', 'name', 'Tempearl Industrial Co., Ltd. (Japan)'),
(158469, 122544, 'ja', 'name', 'ćƒ†ćƒ³ćƒ‘ćƒ¼ćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158470, 122545, 'no_lang_code', 'name', 'SPD Laboratory, Inc. (Japan)'),
(158471, 122545, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾SPD研究所'),
(158472, 122546, 'no_lang_code', 'name', 'Otani Paint MFG. Co., Ltd. (Japan)'),
(158473, 122546, 'ja', 'name', 'å¤§č°·å”—ę–™ę Ŗå¼ä¼šē¤¾'),
(158474, 122547, 'pt', 'name', 'Faculdade de Educação da Ibiapaba'),
(158475, 122548, 'no_lang_code', 'name', 'Macoho Co., Ltd. (Japan)'),
(158476, 122548, 'ja', 'name', 'ćƒžć‚³ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(158477, 122549, 'en', 'name', 'National Science and Technology Council'),
(158478, 122549, 'zh', 'name', 'åœ‹å®¶ē§‘å­øåŠęŠ€č”“å§”å“”ęœƒ'),
(158479, 122550, 'no_lang_code', 'name', 'Yamahachi Dental MFG., Co. (Japan)'),
(158480, 122550, 'ja', 'name', 'å±±å…«ę­Æęå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158481, 122551, 'en', 'name', 'University of Tours'),
(158482, 122551, 'fr', 'name', 'UniversitƩ de Tours'),
(158483, 122552, 'en', 'name', 'Czech Science Foundation'),
(158484, 122553, 'en', 'name', 'Moriya Corporation'),
(158485, 122553, 'no_lang_code', 'name', 'Moriya Corporation (Japan)'),
(158486, 122553, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å®ˆč°·å•†ä¼š'),
(158487, 122554, 'no_lang_code', 'name', 'Seirei Industry Co., Ltd. (Japan)'),
(158488, 122554, 'ja', 'name', 'ć‚»ć‚¤ćƒ¬ć‚¤å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158489, 122555, 'en', 'name', 'Queensland Health'),
(158490, 122556, 'no_lang_code', 'name', 'Tamagawa Seiki Co., Ltd. (Japan)'),
(158491, 122556, 'ja', 'name', 'å¤šę‘©å·ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(158492, 122557, 'no_lang_code', 'name', 'Kasai Kogyo Co., Ltd. (Japan)'),
(158493, 122557, 'ja', 'name', 'ę²³č„æå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158494, 122558, 'no_lang_code', 'name', 'Minami Nippon MEAT Packers Inc. (Japan)'),
(158495, 122558, 'ja', 'name', 'å—ę—„ęœ¬ćƒćƒ ę Ŗå¼ä¼šē¤¾'),
(158496, 122559, 'no_lang_code', 'name', 'Infosys (India)'),
(158497, 122560, 'no_lang_code', 'name', 'Tsubota Laboratory Incorporated (Japan)'),
(158498, 122560, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åŖē”°ćƒ©ćƒœ'),
(158499, 122561, 'sv', 'name', 'Finlands Akademi'),
(158500, 122561, 'en', 'name', 'Research Council of Finland'),
(158501, 122561, 'fi', 'name', 'Suomen Akatemia'),
(158502, 122562, 'no_lang_code', 'name', 'KGK Company Limited (Japan)'),
(158503, 122562, 'ja', 'name', 'å›½éš›ęŠ€č”“é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(158504, 122563, 'no_lang_code', 'name', 'Hosokawa-Tex, Inc. (Japan)'),
(158505, 122563, 'ja', 'name', 'ē“°å·ę©Ÿę„­ę Ŗå¼ä¼šē¤¾'),
(158506, 122564, 'no_lang_code', 'name', 'Yamaguchi Technology Licensing Organization, Ltd. (Japan)'),
(158507, 122564, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾å±±å£ćƒ†ć‚£ćƒ¼ćƒ»ć‚Øćƒ«ćƒ»ć‚Ŗćƒ¼'),
(158508, 122565, 'no_lang_code', 'name', 'JCU Corporation (Japan)'),
(158509, 122565, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾JCU'),
(158510, 122566, 'en', 'name', 'Prelude Therapeutics Incorporated (United States)'),
(158511, 122567, 'no_lang_code', 'name', 'TOPY Industries, Ltd. (Japan)'),
(158512, 122567, 'ja', 'name', 'ćƒˆćƒ”ćƒ¼å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158513, 122568, 'no_lang_code', 'name', 'Misawa Homes Institute of Research and Development Co., Ltd. (Japan)'),
(158514, 122568, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŸć‚µćƒÆćƒ›ćƒ¼ćƒ ē·åˆē ”ē©¶ę‰€'),
(158515, 122569, 'pt', 'name', 'Centro UniversitƔrio EvangƩlico de GoianƩsia'),
(158516, 122570, 'en', 'name', 'University of Jhang'),
(158517, 122570, 'pa', 'name', 'Ų¬Ś¾Ł†Ł˜ŚÆ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(158518, 122571, 'no_lang_code', 'name', 'Hakutsuru SAKE Brewing Co., Ltd. (Japan)'),
(158519, 122571, 'ja', 'name', 'ē™½é¶“é…’é€ ę Ŗå¼ä¼šē¤¾'),
(158520, 122572, 'no_lang_code', 'name', 'Yotai Refractories Co., Ltd. (Japan)'),
(158521, 122572, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒØćƒ¼ć‚æć‚¤'),
(158522, 122573, 'no_lang_code', 'name', 'Parking Solutions Co., Ltd. (Japan)'),
(158523, 122573, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‘ćƒ¼ć‚­ćƒ³ć‚°ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗ'),
(158524, 122574, 'en', 'name', 'Paris-Sorbonne University'),
(158525, 122574, 'fr', 'name', 'UniversitƩ Paris-Sorbonne, Paris IV'),
(158526, 122575, 'no_lang_code', 'name', 'Commuture Corp. (Japan)'),
(158527, 122575, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚³ćƒŸćƒ„ćƒ¼ćƒćƒ„ć‚¢'),
(158528, 122576, 'no_lang_code', 'name', 'Mizushima Ferroalloy Co., Ltd. (Japan)'),
(158529, 122576, 'ja', 'name', 'ę°“å³¶åˆé‡‘é‰„ę Ŗå¼ä¼šē¤¾'),
(158530, 122577, 'no_lang_code', 'name', 'Jalco Co., Ltd. (Japan)'),
(158531, 122577, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ£ćƒ«ć‚³'),
(158532, 122578, 'no_lang_code', 'name', 'Unipulse Corporation (Japan)'),
(158533, 122578, 'ja', 'name', 'ćƒ¦ćƒ‹ćƒ‘ćƒ«ć‚¹ę Ŗå¼ä¼šē¤¾'),
(158534, 122579, 'fr', 'name', 'DƩlƩgation RƩgionale Occitanie PyrƩnƩes'),
(158535, 122580, 'no_lang_code', 'name', 'Wireless Communication Laboratory (Japan)'),
(158536, 122580, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒÆć‚¤ćƒ¤ćƒ¬ć‚¹ć‚³ćƒŸćƒ„ćƒ‹ć‚±ćƒ¼ć‚·ćƒ§ćƒ³ē ”ē©¶ę‰€'),
(158537, 122581, 'no_lang_code', 'name', 'GEL-Design Inc. (Japan)'),
(158538, 122581, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾GEL-Design'),
(158539, 122582, 'no_lang_code', 'name', 'ISA Co., Ltd. (Japan)'),
(158540, 122582, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ć‚Øć‚¹ć‚Øć‚¤'),
(158541, 122583, 'no_lang_code', 'name', 'Fancl Corporation (Japan)'),
(158542, 122583, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚”ćƒ³ć‚±ćƒ«'),
(158543, 122584, 'no_lang_code', 'name', 'A-Marine Kindai Co., Ltd. (Japan)'),
(158544, 122584, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ćƒžćƒŖćƒ³čæ‘å¤§'),
(158545, 122585, 'no_lang_code', 'name', 'Echigo Seika Co., Ltd. (Japan)'),
(158546, 122585, 'ja', 'name', 'č¶Šå¾Œč£½č“ę Ŗå¼ä¼šē¤¾'),
(158547, 122586, 'no_lang_code', 'name', 'Dynapac Co., Ltd. (Japan)'),
(158548, 122586, 'ja', 'name', 'ćƒ€ć‚¤ćƒŠćƒ‘ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(158549, 122587, 'en', 'name', 'Research Institute for the Digital Transformation of Science'),
(158550, 122587, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š· цифрової трансформації науки'),
(158551, 122588, 'en', 'name', 'National Bureau of Plant Genetic Resources'),
(158552, 122589, 'da', 'name', 'Danmarks Frie Forskningsfond'),
(158553, 122589, 'en', 'name', 'Independent Research Fund Denmark'),
(158554, 122590, 'en', 'name', 'National Hospital of Sri Lanka'),
(158555, 122590, 'ta', 'name', 'ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®¤ąÆ‡ą®šą®æą®Æ ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆ'),
(158556, 122590, 'si', 'name', 'ą·ą·Šą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶¢ą·ą¶­ą·’ą¶š ą¶»ą·ą·„ą¶½'),
(158557, 122591, 'no_lang_code', 'name', 'Tsuno FOOD Industrial Co., Ltd. (Japan)'),
(158558, 122591, 'ja', 'name', 'ēÆ‰é‡Žé£Ÿå“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158559, 122592, 'no_lang_code', 'name', 'Y''S Therapeutics Co., Ltd. (Japan)'),
(158560, 122592, 'ja', 'name', 'ćƒÆć‚¤ć‚ŗć‚»ćƒ©ćƒ”ćƒ„ćƒ¼ćƒ†ć‚£ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(158561, 122593, 'no_lang_code', 'name', 'Asaka Industrial Co., Ltd. (Japan)'),
(158562, 122593, 'ja', 'name', 'ęµ…é¦™å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158563, 122594, 'no_lang_code', 'name', 'Chudenko Corporation (Japan)'),
(158564, 122594, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äø­é›»å·„'),
(158565, 122595, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado de São Paulo'),
(158566, 122595, 'en', 'name', 'SĆ£o Paulo Research Foundation'),
(158567, 122596, 'fr', 'name', 'Office National d''Ɖtudes et de Recherches AĆ©rospatiales'),
(158568, 122597, 'no_lang_code', 'name', 'Greening Laboratory Ltd. (Japan)'),
(158569, 122597, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚°ćƒŖćƒ¼ćƒ‹ćƒ³ć‚°ćƒ©ćƒœćƒ©ćƒˆćƒŖ'),
(158570, 122598, 'cs', 'name', 'NĆ”rodnĆ­ Ústav pro VzdělĆ”vĆ”nĆ­'),
(158571, 122599, 'no_lang_code', 'name', 'Oshikiri Machinery Ltd. (Japan)'),
(158572, 122599, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗć‚·ć‚­ćƒŖ'),
(158573, 122600, 'en', 'name', 'Wadie Helmand University'),
(158574, 122600, 'ps', 'name', 'وادي هلمند Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(158575, 122601, 'no_lang_code', 'name', 'HI-Mecha Corporation (Japan)'),
(158576, 122601, 'ja', 'name', 'ćƒć‚¤ćƒ”ć‚«ę Ŗå¼ä¼šē¤¾');
INSERT INTO `ror_settings` VALUES
(158577, 122602, 'no_lang_code', 'name', 'SHIN-Nakamura Chemical Co., Ltd. (Japan)'),
(158578, 122602, 'ja', 'name', 'ę–°äø­ę‘åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158579, 122603, 'en', 'name', 'GrandEdu Research School'),
(158580, 122604, 'es', 'name', 'Sistema Universitario de Texas'),
(158581, 122604, 'en', 'name', 'The University of Texas System'),
(158582, 122604, 'fr', 'name', 'UniversitƩ du Texas'),
(158583, 122605, 'no_lang_code', 'name', 'Aimedic MMT Co., Ltd. (Japan)'),
(158584, 122605, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾Aimedic MMT'),
(158585, 122606, 'en', 'name', 'Paperworld Co., Ltd.'),
(158586, 122606, 'no_lang_code', 'name', 'Paperworld Co., Ltd. (Japan)'),
(158587, 122606, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒšćƒ¼ćƒ‘ćƒ¼ćƒÆćƒ¼ćƒ«ćƒ‰'),
(158588, 122607, 'no_lang_code', 'name', 'Livegraphy Laboratories Limited (Japan)'),
(158589, 122607, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ©ć‚¤ćƒ–ć‚°ćƒ©ćƒ•ć‚£ē ”ē©¶ę‰€'),
(158590, 122608, 'no_lang_code', 'name', 'RASA Industries Ltd. (Japan)'),
(158591, 122608, 'ja', 'name', 'ćƒ©ć‚µå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158592, 122609, 'en', 'name', 'IUVAS Institute for Urban Variations and Architectural Systems'),
(158593, 122609, 'it', 'name', 'Istituto per le Variazioni Urbane e i Sistemi Architettonici'),
(158594, 122610, 'no_lang_code', 'name', 'Shibata Industrial, Co., Ltd. (Japan)'),
(158595, 122610, 'ja', 'name', 'ć‚·ćƒć‚æå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158596, 122611, 'no_lang_code', 'name', 'Irumagawa Rubber Co., Ltd. (Japan)'),
(158597, 122611, 'ja', 'name', 'å…„é–“å·ć‚“ćƒ ę Ŗå¼ä¼šē¤¾'),
(158598, 122612, 'no_lang_code', 'name', 'Nakashima Propeller Co., Ltd. (Japan)'),
(158599, 122612, 'ja', 'name', 'ćƒŠć‚«ć‚·ćƒžćƒ—ćƒ­ćƒšćƒ©ę Ŗå¼ä¼šē¤¾'),
(158600, 122613, 'no_lang_code', 'name', 'Tivoli Co., Ltd. (Japan)'),
(158601, 122613, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć”ć¼ć‚Š'),
(158602, 122614, 'no_lang_code', 'name', 'NLI Research Institute (Japan)'),
(158603, 122614, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒƒć‚»ć‚¤åŸŗē¤Žē ”ē©¶ę‰€'),
(158604, 122615, 'en', 'name', 'NIHR Research Delivery Network'),
(158605, 122616, 'no_lang_code', 'name', 'Nidek Co., Ltd. (Japan)'),
(158606, 122616, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ‡ćƒƒć‚Æ'),
(158607, 122617, 'da', 'name', 'ProfessionshĆøjskolen UCC'),
(158608, 122617, 'en', 'name', 'University College Capital'),
(158609, 122618, 'no_lang_code', 'name', 'Washin Paint Co., Ltd. (Japan)'),
(158610, 122618, 'ja', 'name', 'å’Œäæ”ćƒšć‚¤ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(158611, 122619, 'no_lang_code', 'name', 'Haseko Corporation (Japan)'),
(158612, 122619, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é•·č°·å·„ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(158613, 122620, 'en', 'name', 'School of Interdisciplinary Sciences and Arts'),
(158614, 122620, 'vi', 'name', 'TrĘ°į»ng Khoa hį»c liĆŖn ngĆ nh vĆ  Nghệ thuįŗ­t'),
(158615, 122621, 'no_lang_code', 'name', 'Kurabo Industries Ltd. (Japan)'),
(158616, 122621, 'ja', 'name', 'å€‰ę•·ē“”ēø¾ę Ŗå¼ä¼šē¤¾'),
(158617, 122622, 'no_lang_code', 'name', 'Spancrete Corporation (Japan)'),
(158618, 122622, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ćƒ‘ćƒ³ć‚ÆćƒŖćƒ¼ćƒˆć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(158619, 122623, 'no_lang_code', 'name', 'Jokoh Co., Ltd. (Japan)'),
(158620, 122623, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åøøå…‰'),
(158621, 122624, 'no_lang_code', 'name', 'Sukegawa Electric Co., Ltd. (Japan)'),
(158622, 122624, 'ja', 'name', 'åŠ©å·é›»ę°—å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158623, 122625, 'no_lang_code', 'name', 'I-O DATA Device, Inc. (Japan)'),
(158624, 122625, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ»ć‚Ŗćƒ¼ćƒ»ćƒ‡ćƒ¼ć‚æę©Ÿå™Ø'),
(158625, 122626, 'id', 'name', 'Universitas Nias Raya'),
(158626, 122627, 'no_lang_code', 'name', 'Diabetym Co., Ltd. (Japan)'),
(158627, 122627, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ć‚¢ćƒ™ćƒ†ć‚£ćƒ '),
(158628, 122628, 'en', 'name', 'HiberCell, Inc. (United States)'),
(158629, 122629, 'en', 'name', 'Lasker Foundation'),
(158630, 122630, 'en', 'name', 'Pondicherry University'),
(158631, 122630, 'hi', 'name', 'ą¤Ŗą„‰ą¤Øą„ą¤”ą¤æą¤šą„‡ą¤°ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(158632, 122630, 'ta', 'name', 'ą®ŖąÆą®¤ąÆą®µąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(158633, 122630, 'te', 'name', 'ą°Ŗą°¾ą°‚ą°”ą°æą°šą±ą°šą±‡ą°°ą°æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(158634, 122630, 'ml', 'name', 'ą“Ŗąµ‹ą“£ąµą“Ÿą“æą“šąµą“šąµ‡ą“°ą“æ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(158635, 122631, 'no_lang_code', 'name', 'O-M Ltd. (Japan)'),
(158636, 122631, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ć‚Øćƒ č£½ä½œę‰€'),
(158637, 122632, 'no_lang_code', 'name', 'TAMA-TLO Ltd. (Japan)'),
(158638, 122632, 'ja', 'name', 'ć‚æćƒžćƒ†ć‚£ćƒ¼ć‚Øćƒ«ć‚Ŗćƒ¼ę Ŗå¼ä¼šē¤¾'),
(158639, 122633, 'no_lang_code', 'name', 'UMG ABS, Ltd. (Japan)'),
(158640, 122633, 'ja', 'name', 'ćƒ¦ćƒ¼ć‚Øćƒ ć‚øćƒ¼ćƒ»ć‚Øćƒ¼ćƒ“ćƒ¼ć‚Øć‚¹ę Ŗå¼ä¼šē¤¾'),
(158641, 122634, 'no_lang_code', 'name', 'Xyence Corporation (Japan)'),
(158642, 122634, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¶ć‚¤ć‚Øćƒ³ć‚¹'),
(158643, 122635, 'no_lang_code', 'name', 'Milliman, Incorporated (Japan)'),
(158644, 122635, 'ja', 'name', 'ćƒŸćƒŖćƒžćƒ³ćƒ»ć‚¤ćƒ³ć‚Æ'),
(158645, 122636, 'no_lang_code', 'name', 'Prime Polymer Co., Ltd. (Japan)'),
(158646, 122636, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ©ć‚¤ćƒ ćƒćƒŖćƒžćƒ¼'),
(158647, 122637, 'no_lang_code', 'name', 'Tomey Corporation (Japan)'),
(158648, 122637, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ćƒ”ćƒ¼ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(158649, 122638, 'no_lang_code', 'name', 'Lofty Co., Ltd. (Japan)'),
(158650, 122638, 'ja', 'name', 'ćƒ­ćƒ•ćƒ†ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(158651, 122639, 'no_lang_code', 'name', 'Uchiyama Manufacturing Corp. (Japan)'),
(158652, 122639, 'ja', 'name', 'å†…å±±å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158653, 122640, 'no_lang_code', 'name', 'TFK Co., Ltd. (Japan)'),
(158654, 122640, 'ja', 'name', 'ćƒ†ć‚£ćƒ¼ć‚Øćƒ•ć‚±ć‚¤ę Ŗå¼ä¼šē¤¾'),
(158655, 122641, 'en', 'name', 'TBS Education'),
(158656, 122642, 'en', 'name', 'Minnan Normal University'),
(158657, 122642, 'zh', 'name', 'é—½å—åøˆčŒƒå¤§å­¦'),
(158658, 122643, 'no_lang_code', 'name', 'Kithit Co., Ltd. (Japan)'),
(158659, 122643, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒƒćƒˆćƒ’ćƒƒćƒˆ'),
(158660, 122644, 'no_lang_code', 'name', 'Sanbishi Co., Ltd. (Japan)'),
(158661, 122644, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ćƒ“ć‚·'),
(158662, 122645, 'no_lang_code', 'name', 'K1-MET GmbH (Austria)'),
(158663, 122646, 'no_lang_code', 'name', 'CELL Signals Inc. (Japan)'),
(158664, 122646, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ćƒ«ć‚·ć‚°ćƒŠćƒ«ć‚ŗ'),
(158665, 122647, 'nl', 'name', 'ModeMuseum Antwerpen'),
(158666, 122648, 'no_lang_code', 'name', 'KIKU-Masamune SAKE Brewing Co., Ltd. (Japan)'),
(158667, 122648, 'ja', 'name', 'čŠę­£å®—é…’é€ ę Ŗå¼ä¼šē¤¾'),
(158668, 122649, 'no_lang_code', 'name', 'Enbio Holdings, Inc. (Japan)'),
(158669, 122649, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ³ćƒć‚¤ć‚Ŗćƒ»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(158670, 122650, 'no_lang_code', 'name', 'Kinkei System Corporation (Japan)'),
(158671, 122650, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾čæ‘čØˆć‚·ć‚¹ćƒ†ćƒ '),
(158672, 122651, 'no_lang_code', 'name', 'Medical-I Co., Ltd. (Japan)'),
(158673, 122651, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ę„›'),
(158674, 122652, 'no_lang_code', 'name', 'Topacs, Inc. (Japan)'),
(158675, 122652, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ‘ćƒƒć‚Æć‚¹'),
(158676, 122653, 'fr', 'name', 'Diagnostic des Plasmas Hors Equilibre'),
(158677, 122653, 'en', 'name', 'Diagnostics of Cold Plasmas'),
(158678, 122654, 'no_lang_code', 'name', 'ISE Chemicals Corporation (Japan)'),
(158679, 122654, 'ja', 'name', 'ä¼Šå‹¢åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158680, 122655, 'no_lang_code', 'name', 'Sakagami Seisakusho Ltd. (Japan)'),
(158681, 122655, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é˜ŖäøŠč£½ä½œę‰€'),
(158682, 122656, 'no_lang_code', 'name', 'Sensor Information Laboratory Corp. (Japan)'),
(158683, 122656, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ćƒ³ć‚µęƒ…å ±ē ”ē©¶ę‰€'),
(158684, 122657, 'no_lang_code', 'name', 'Pickles Corporation (Japan)'),
(158685, 122657, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ”ćƒƒć‚Æćƒ«ć‚¹ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(158686, 122658, 'no_lang_code', 'name', 'Technol. Seven Co., Ltd. (Japan)'),
(158687, 122658, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚ÆćƒŽćƒ»ć‚»ćƒ–ćƒ³'),
(158688, 122659, 'no_lang_code', 'name', 'Tatsumi Kagaku Co., Ltd. (Japan)'),
(158689, 122659, 'ja', 'name', 'č¾°å·³åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(158690, 122660, 'no_lang_code', 'name', 'Tesco Co., Ltd. (Japan)'),
(158691, 122660, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚¹ć‚³'),
(158692, 122661, 'no_lang_code', 'name', 'Advantagene (United States)'),
(158693, 122662, 'no_lang_code', 'name', 'Philtech Inc. (Japan)'),
(158694, 122662, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚£ćƒ«ćƒ†ćƒƒć‚Æ'),
(158695, 122663, 'no_lang_code', 'name', 'Haken Co., Ltd. (Japan)'),
(158696, 122663, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åˆƒē ”'),
(158697, 122664, 'no_lang_code', 'name', 'Kamitsu Seisakusho Ltd. (Japan)'),
(158698, 122664, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē„žę“„č£½ä½œę‰€'),
(158699, 122665, 'en', 'name', 'Austrian Council for Research and Technology Development'),
(158700, 122665, 'de', 'name', 'Rat für Forschung und Technologieentwicklung'),
(158701, 122666, 'pt', 'name', 'Instituto de Investigação Científica Tropical'),
(158702, 122667, 'en', 'name', 'MiNK Therapeutics (United States)'),
(158703, 122668, 'no_lang_code', 'name', 'ICOM Incorporated (Japan)'),
(158704, 122668, 'ja', 'name', 'ć‚¢ć‚¤ć‚³ćƒ ę Ŗå¼ä¼šē¤¾'),
(158705, 122669, 'no_lang_code', 'name', 'Gakunan Construction Co., Ltd. (Japan)'),
(158706, 122669, 'ja', 'name', 'å²³å—å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(158707, 122670, 'en', 'name', 'Iwata & Co., Ltd.'),
(158708, 122670, 'no_lang_code', 'name', 'Iwata & Co., Ltd. (Japan)'),
(158709, 122670, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒÆć‚æ'),
(158710, 122671, 'fr', 'name', 'Institut de Physique des 2 Infinis de Lyon'),
(158711, 122671, 'en', 'name', 'Institute of Physics of 2 Infinities of Lyon'),
(158712, 122672, 'fr', 'name', 'UniversitƩ Toulouse Capitole'),
(158713, 122673, 'no_lang_code', 'name', 'Mizuno Corporation (Japan)'),
(158714, 122673, 'ja', 'name', 'ē¾Žę“„ęæƒę Ŗå¼ä¼šē¤¾'),
(158715, 122674, 'no_lang_code', 'name', 'Matsumura-GUMI Corporation (Japan)'),
(158716, 122674, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę¾ę‘ēµ„'),
(158717, 122675, 'no_lang_code', 'name', 'Infratec Co., Ltd. (Japan)'),
(158718, 122675, 'ja', 'name', 'ć‚¤ćƒ³ćƒ•ćƒ©ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(158719, 122676, 'fr', 'name', 'Ɖcole Nationale VĆ©tĆ©rinaire de Toulouse'),
(158720, 122677, 'en', 'name', 'Alzprotect (France)'),
(158721, 122677, 'fr', 'name', 'Alzprotect SAS'),
(158722, 122678, 'no_lang_code', 'name', 'Tozai Denko Co., Ltd. (Japan)'),
(158723, 122678, 'ja', 'name', 'ę±č„æé›»å·„ę Ŗå¼ä¼šē¤¾'),
(158724, 122679, 'en', 'name', 'Stephens Group of Institutions'),
(158725, 122680, 'no_lang_code', 'name', 'SEKI Electronics Co., Ltd. (Japan)'),
(158726, 122680, 'ja', 'name', 'ć‚»ć‚­ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(158727, 122681, 'no_lang_code', 'name', 'ASMO Co., Ltd. (Japan)'),
(158728, 122681, 'ja', 'name', 'ć‚¢ć‚¹ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(158729, 122682, 'no_lang_code', 'name', 'Yasuhara Chemical Co., Ltd. (Japan)'),
(158730, 122682, 'ja', 'name', 'ćƒ¤ć‚¹ćƒćƒ©ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(158731, 122683, 'no_lang_code', 'name', 'Nichidai Corporation (Japan)'),
(158732, 122683, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒćƒ€ć‚¤'),
(158733, 122684, 'no_lang_code', 'name', 'Sumico Lubricant Co., Ltd. (Japan)'),
(158734, 122684, 'ja', 'name', 'ä½é‰±ę½¤ę»‘å‰¤ę Ŗå¼ä¼šē¤¾'),
(158735, 122685, 'en', 'name', 'Non-governmental organization ā€œInternational Association of Scientistsā€'),
(158736, 122685, 'uk', 'name', 'Š“Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ° Š¾Ń€Š³Š°Š½Ń–Š·Š°Ń†Ń–Ń Ā«ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½Š° Š°ŃŠ¾Ń†Ń–Š°Ń†Ń–Ń Š½Š°ŃƒŠŗŠ¾Š²Ń†Ń–Š²Ā»'),
(158737, 122686, 'en', 'name', 'PMV Pharmaceuticals, Inc. (United States)'),
(158738, 122687, 'fr', 'name', 'Centre Hospitalier Eure Seine'),
(158739, 122688, 'no_lang_code', 'name', 'Madurai Kamaraj University'),
(158740, 122688, 'ta', 'name', 'மதுரை ą®•ą®¾ą®®ą®°ą®¾ą®šą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(158741, 122688, 'ml', 'name', 'ą“®ą“¦ąµą“°ąµˆ ą“•ą“¾ą“®ą“°ą“¾ą“œąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(158742, 122689, 'no_lang_code', 'name', 'Fukutokucho Co., Ltd. (Japan)'),
(158743, 122689, 'ja', 'name', 'ē¦å¾³é•·é…’é”žę Ŗå¼ä¼šē¤¾'),
(158744, 122690, 'no_lang_code', 'name', 'DAN Environmental Design Institute (Japan)'),
(158745, 122690, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ćƒ³čØˆē”»ē ”ē©¶ę‰€'),
(158746, 122691, 'no_lang_code', 'name', 'Kuramoto Seisakusho Co., Ltd. (Japan)'),
(158747, 122691, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å€‰å…ƒč£½ä½œę‰€'),
(158748, 122692, 'en', 'name', 'Lugansk State Pedagogical University'),
(158749, 122692, 'ru', 'name', 'Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(158750, 122693, 'no_lang_code', 'name', 'Cynet (Japan)'),
(158751, 122693, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚µć‚¤ćƒćƒƒćƒˆ'),
(158752, 122694, 'en', 'name', 'Japan Agency for Medical Research and Development'),
(158753, 122694, 'ja', 'name', 'ę—„ęœ¬åŒ»ē™‚ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(158754, 122695, 'en', 'name', 'NOAA National Environmental Satellite Data and Information Service'),
(158755, 122696, 'no_lang_code', 'name', 'Kioritz Corporation (Japan)'),
(158756, 122696, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…±ē«‹'),
(158757, 122697, 'en', 'name', 'University of Science and Technology, Sana’a'),
(158758, 122697, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§-صنعاؔ'),
(158759, 122698, 'no_lang_code', 'name', 'Asanuma Corporation (Japan)'),
(158760, 122698, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę·ŗę²¼ēµ„'),
(158761, 122699, 'no_lang_code', 'name', 'Sandoz (Japan)'),
(158762, 122699, 'ja', 'name', 'ć‚µćƒ³ćƒ‰ę Ŗå¼ä¼šē¤¾'),
(158763, 122700, 'no_lang_code', 'name', 'Ohkura Electric Co., Ltd. (Japan)'),
(158764, 122700, 'ja', 'name', 'å¤§å€‰é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(158765, 122701, 'no_lang_code', 'name', 'AMR, Inc. (Japan)'),
(158766, 122701, 'ja', 'name', 'ć‚Øćƒ¼ć‚Øćƒ ć‚¢ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(158767, 122702, 'no_lang_code', 'name', 'Shinmaywa Industries, Ltd. (Japan)'),
(158768, 122702, 'ja', 'name', 'ę–°ę˜Žå’Œå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158769, 122703, 'no_lang_code', 'name', 'Kagata Corporation (Japan)'),
(158770, 122703, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åŠ č³€ē”°ēµ„'),
(158771, 122704, 'fr', 'name', 'TƩlƩcom Bretagne'),
(158772, 122705, 'no_lang_code', 'name', 'Marsima AQUA System Corp. (Japan)'),
(158773, 122705, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äøøå³¶ć‚¢ć‚Æć‚¢ć‚·ć‚¹ćƒ†ćƒ '),
(158774, 122706, 'no_lang_code', 'name', 'Azden Corporation (Japan)'),
(158775, 122706, 'ja', 'name', 'ć‚¢ćƒ„ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(158776, 122707, 'no_lang_code', 'name', 'Hioki E.E. Corporation (Japan)'),
(158777, 122707, 'ja', 'name', 'ę—„ē½®é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(158778, 122708, 'no_lang_code', 'name', 'River Eletec Corporation (Japan)'),
(158779, 122708, 'ja', 'name', 'ćƒŖćƒćƒ¼ć‚Øćƒ¬ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(158780, 122709, 'en', 'name', 'Nobel Foundation'),
(158781, 122709, 'fi', 'name', 'Nobelin sƤƤtiƶ'),
(158782, 122709, 'sv', 'name', 'Nobelstiftelsen'),
(158783, 122710, 'en', 'name', 'National School of Fine Arts at the Villa Arson'),
(158784, 122710, 'fr', 'name', 'Ɖcole nationale supĆ©rieure d''art Villa Arson'),
(158785, 122711, 'no_lang_code', 'name', 'Senmi Ekisu Co., Ltd. (Japan)'),
(158786, 122711, 'ja', 'name', 'ä»™å‘³ć‚Øć‚­ć‚¹ę Ŗå¼ä¼šē¤¾'),
(158787, 122712, 'no_lang_code', 'name', 'Cemedine Co., Ltd. (Japan)'),
(158788, 122712, 'ja', 'name', 'ć‚»ćƒ”ćƒ€ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(158789, 122713, 'no_lang_code', 'name', 'Sumidagawa Shipyard Co., Ltd. (Japan)'),
(158790, 122713, 'ja', 'name', 'å¢Øē”°å·é€ čˆ¹ę Ŗå¼ä¼šē¤¾'),
(158791, 122714, 'no_lang_code', 'name', 'Arkema K.K. (Japan)'),
(158792, 122714, 'ja', 'name', 'ć‚¢ćƒ«ć‚±ćƒžę Ŗå¼ä¼šē¤¾'),
(158793, 122715, 'no_lang_code', 'name', 'OHYO Koken Kogyo Co., Ltd. (Japan)'),
(158794, 122715, 'ja', 'name', 'åæœē”Øå…‰ē ”å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158795, 122716, 'en', 'name', 'NIHR MindTech MedTech Co-operative'),
(158796, 122717, 'en', 'name', 'TBS Education Research Centre'),
(158797, 122718, 'no_lang_code', 'name', 'Itfor Inc. (Japan)'),
(158798, 122718, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ†ć‚£ćƒ•ć‚©ćƒ¼'),
(158799, 122719, 'no_lang_code', 'name', 'FP Corporation (Japan)'),
(158800, 122719, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ•ćƒ”ć‚³'),
(158801, 122720, 'en', 'name', 'LEPL G.Tsulukizde Mining Institute'),
(158802, 122720, 'ka', 'name', 'įƒ”įƒ”įƒ˜įƒž įƒ’įƒ įƒ˜įƒ’įƒįƒš įƒ¬įƒ£įƒšįƒ£įƒ™įƒ˜įƒ«įƒ˜įƒ” įƒ”įƒįƒ›įƒ—įƒ ინეტიტუტი'),
(158803, 122721, 'no_lang_code', 'name', 'MORESCO Corporation (Japan)'),
(158804, 122721, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾MORESCO'),
(158805, 122722, 'no_lang_code', 'name', 'Biomarker Science Co., Ltd. (Japan)'),
(158806, 122722, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚Ŗćƒžćƒ¼ć‚«ćƒ¼ć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(158807, 122723, 'fr', 'name', 'UniversitƩ de Provence Aix-Marseille I'),
(158808, 122724, 'no_lang_code', 'name', 'Kiyota Manufacturing Co. (Japan)'),
(158809, 122724, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ęø…ē”°č£½ä½œę‰€'),
(158810, 122725, 'no_lang_code', 'name', 'Chikuho MFG. Co., Ltd. (Japan)'),
(158811, 122725, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē­‘č±Šč£½ä½œę‰€'),
(158812, 122726, 'no_lang_code', 'name', 'Kawase Computer Supplies Co., Ltd. (Japan)'),
(158813, 122726, 'ja', 'name', 'ć‚«ćƒÆć‚»ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æć‚µćƒ—ćƒ©ć‚¤ę Ŗå¼ä¼šē¤¾'),
(158814, 122727, 'en', 'name', 'One Arrow First Nation'),
(158815, 122728, 'en', 'name', 'University of Delhi'),
(158816, 122728, 'fr', 'name', 'UniversitƩ de delhi'),
(158817, 122728, 'ur', 'name', 'ŲÆŪŁ„ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(158818, 122728, 'hi', 'name', 'ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(158819, 122728, 'bn', 'name', 'ą¦¦ą¦æą¦²ą§ą¦²ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(158820, 122728, 'pa', 'name', 'ਦਿੱਲੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(158821, 122728, 'ta', 'name', 'ą®¤ą®æą®²ąÆą®²ą®æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(158822, 122728, 'ml', 'name', 'ą“”ąµ†ąµ½ą“¹ą“æ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(158823, 122729, 'no_lang_code', 'name', 'Yokohama OIL & FATS Industry Co., Ltd. (Japan)'),
(158824, 122729, 'ja', 'name', 'ęØŖęµœę²¹č„‚å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158825, 122730, 'no_lang_code', 'name', 'Onecell Inc. (Japan)'),
(158826, 122730, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒÆćƒ³ć‚»ćƒ«'),
(158827, 122731, 'no_lang_code', 'name', 'AGIC Corporation (Japan)'),
(158828, 122731, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ¼ć‚øćƒƒć‚Æ'),
(158829, 122732, 'fr', 'name', 'Centre d’Etudes et de Recherches en Psychopathologie et Psychologie de la SantĆ©'),
(158830, 122733, 'no_lang_code', 'name', 'Mandom Corp. (Japan)'),
(158831, 122733, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžćƒ³ćƒ€ćƒ '),
(158832, 122734, 'no_lang_code', 'name', 'Ayaha Co., Ltd. (Japan)'),
(158833, 122734, 'ja', 'name', 'ē¶¾ē¾½ę Ŗå¼ä¼šē¤¾'),
(158834, 122735, 'no_lang_code', 'name', 'Samson Co., Ltd. (Japan)'),
(158835, 122735, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒ ć‚½ćƒ³'),
(158836, 122736, 'no_lang_code', 'name', 'EX Corporation (Japan)'),
(158837, 122736, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒƒć‚Æć‚¹éƒ½åø‚ē ”ē©¶ę‰€'),
(158838, 122737, 'no_lang_code', 'name', 'Chino Corporation (Japan)'),
(158839, 122737, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒŽćƒ¼'),
(158840, 122738, 'no_lang_code', 'name', 'Qualtec Co., Ltd. (Japan)'),
(158841, 122738, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æć‚Ŗćƒ«ćƒ†ćƒƒć‚Æ'),
(158842, 122739, 'no_lang_code', 'name', 'Yamaki Co., Ltd. (Japan)'),
(158843, 122739, 'ja', 'name', 'ćƒ¤ćƒžć‚­ę Ŗå¼ä¼šē¤¾'),
(158844, 122740, 'no_lang_code', 'name', 'Nichiha Corporation (Japan)'),
(158845, 122740, 'ja', 'name', 'ćƒ‹ćƒćƒę Ŗå¼ä¼šē¤¾'),
(158846, 122741, 'no_lang_code', 'name', 'Softether Corporation (Japan)'),
(158847, 122741, 'ja', 'name', 'ć‚½ćƒ•ćƒˆć‚¤ćƒ¼ć‚µę Ŗå¼ä¼šē¤¾'),
(158848, 122742, 'no_lang_code', 'name', 'Marutai Co., Ltd. (Japan)'),
(158849, 122742, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžćƒ«ć‚æć‚¤'),
(158850, 122743, 'en', 'name', 'Bangladesh Academy of Dentistry International'),
(158851, 122744, 'no_lang_code', 'name', 'ZAIKEN (Japan)'),
(158852, 122744, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ZAIKEN'),
(158853, 122745, 'no_lang_code', 'name', 'Yondenko Corporation (Japan)'),
(158854, 122745, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å››é›»å·„'),
(158855, 122746, 'en', 'name', 'China Postdoctoral Science Foundation'),
(158856, 122746, 'zh', 'name', 'äø­å›½åšå£«åŽē§‘å­¦åŸŗé‡‘ä¼š'),
(158857, 122747, 'no_lang_code', 'name', 'Mamiya-OP Co., Ltd. (Japan)'),
(158858, 122747, 'ja', 'name', 'ćƒžćƒŸćƒ¤ćƒ»ć‚Ŗćƒ¼ćƒ”ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(158859, 122748, 'no_lang_code', 'name', 'Maruichi Steel TUBE Ltd. (Japan)'),
(158860, 122748, 'ja', 'name', 'äøøäø€é‹¼ē®”ę Ŗå¼ä¼šē¤¾'),
(158861, 122749, 'en', 'name', 'University of French Guiana'),
(158862, 122749, 'fr', 'name', 'UniversitƩ de Guyane'),
(158863, 122750, 'no_lang_code', 'name', 'Kanro Co., Ltd. (Japan)'),
(158864, 122750, 'ja', 'name', 'ć‚«ćƒ³ćƒ­ę Ŗå¼ä¼šē¤¾'),
(158865, 122751, 'no_lang_code', 'name', 'T-PEC K. K. (Japan)'),
(158866, 122751, 'ja', 'name', 'ćƒ†ć‚£ćƒ¼ćƒšćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(158867, 122752, 'no_lang_code', 'name', 'Kashima-KITA Electric Power Corporation (Japan)'),
(158868, 122752, 'ja', 'name', 'é¹æå³¶åŒ—å…±åŒē™ŗé›»ę Ŗå¼ä¼šē¤¾'),
(158869, 122753, 'no_lang_code', 'name', 'CORE Corporation (Japan)'),
(158870, 122753, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚³ć‚¢'),
(158871, 122754, 'no_lang_code', 'name', 'KOSƉ Corporation (Japan)'),
(158872, 122754, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚³ćƒ¼ć‚»ćƒ¼'),
(158873, 122755, 'no_lang_code', 'name', 'KOZO Keikaku Engineering Inc. (Japan)'),
(158874, 122755, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę§‹é€ čØˆē”»ē ”ē©¶ę‰€'),
(158875, 122756, 'no_lang_code', 'name', 'Taishi Foods Co., Ltd. (Japan)'),
(158876, 122756, 'ja', 'name', 'å¤Ŗå­é£Ÿå“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158877, 122757, 'da', 'name', 'KĆøbenhavns ProfessionshĆøjskole'),
(158878, 122757, 'en', 'name', 'University College Copenhagen'),
(158879, 122758, 'no_lang_code', 'name', 'Mirai Construction Co., Ltd. (Japan)'),
(158880, 122758, 'ja', 'name', 'ćæć‚‰ć„å»ŗčØ­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158881, 122759, 'no_lang_code', 'name', 'Marktec Corporation (Japan)'),
(158882, 122759, 'ja', 'name', 'ćƒžćƒ¼ć‚Æćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(158883, 122760, 'en', 'name', 'V. Mamutov Institute of Economic and Legal Research of the National Academy of Sciences of Ukraine'),
(158884, 122760, 'uk', 'name', 'ДУ ā€œŠ†Š•ŠŸŠ” імені Š’.К. ŠœŠ°Š¼ŃƒŃ‚Š¾Š²Š° ŠŠŠ Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(158885, 122761, 'no_lang_code', 'name', 'KM Aluminium Co., Ltd. (Japan)'),
(158886, 122761, 'ja', 'name', 'KMć‚¢ćƒ«ćƒŸćƒ‹ć‚¦ćƒ ę Ŗå¼ä¼šē¤¾'),
(158887, 122762, 'no_lang_code', 'name', 'Yagishita Electric Co., Ltd. (Japan)'),
(158888, 122762, 'ja', 'name', 'ćƒ¤ć‚®ć‚·ć‚æé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(158889, 122763, 'no_lang_code', 'name', 'H-One Co., Ltd. (Japan)'),
(158890, 122763, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ćƒćƒÆćƒ³'),
(158891, 122764, 'en', 'name', 'ICAR - National Bureau of Plant Genetic Resources Regional Station, Akola'),
(158892, 122765, 'no_lang_code', 'name', 'Propgene Inc. (Japan)'),
(158893, 122765, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ­ćƒƒćƒ—ć‚øćƒ¼ćƒ³'),
(158894, 122766, 'en', 'name', 'American Health Foundation'),
(158895, 122767, 'no_lang_code', 'name', 'Alumite Catalyst Laboratory Co., Ltd. (Japan)'),
(158896, 122767, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ćƒžć‚¤ćƒˆč§¦åŖ’ē ”ē©¶ę‰€'),
(158897, 122768, 'no_lang_code', 'name', 'Noritz Corporation (Japan)'),
(158898, 122768, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŽćƒ¼ćƒŖćƒ„'),
(158899, 122769, 'en', 'name', 'Fujita Health University'),
(158900, 122769, 'ja', 'name', 'č—¤ē”°äæå„č”›ē”Ÿå¤§å­¦'),
(158901, 122770, 'no_lang_code', 'name', 'SYNCPLUS, Inc. (Japan)'),
(158902, 122770, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ćƒ³ć‚Æćƒ—ćƒ©ć‚¹'),
(158903, 122771, 'fr', 'name', 'UniversitƩ CƓte d''Azur'),
(158904, 122772, 'no_lang_code', 'name', 'Nuvoton Technology Corporation Japan (Japan)'),
(158905, 122772, 'ja', 'name', 'ćƒŒćƒ“ć‚©ćƒˆćƒ³ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(158906, 122773, 'en', 'name', 'NIHR Exeter Clinical Research Facility'),
(158907, 122774, 'no_lang_code', 'name', 'Izu Shaboten Resort Co., Ltd. (Japan)'),
(158908, 122774, 'ja', 'name', 'ä¼Šč±†ć‚·ćƒ£ćƒœćƒ†ćƒ³ćƒŖć‚¾ćƒ¼ćƒˆę Ŗå¼ä¼šē¤¾'),
(158909, 122775, 'no_lang_code', 'name', 'OK FOOD Industry Co., Ltd. (Japan)'),
(158910, 122775, 'ja', 'name', 'ć‚Ŗćƒ¼ć‚±ćƒ¼é£Ÿå“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(158911, 122776, 'no_lang_code', 'name', 'Kinden Corporation (Japan)'),
(158912, 122776, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćć‚“ć§ć‚“'),
(158913, 122777, 'no_lang_code', 'name', 'Nanophoton Corporation (Japan)'),
(158914, 122777, 'ja', 'name', 'ćƒŠćƒŽćƒ•ć‚©ćƒˆćƒ³ę Ŗå¼ä¼šē¤¾'),
(158915, 122778, 'no', 'name', 'MisjonshĆøgskolen'),
(158916, 122778, 'en', 'name', 'School of Mission and Theology'),
(158917, 122779, 'no_lang_code', 'name', 'Okawa & Co., Ltd. (Japan)'),
(158918, 122779, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ć‚«ćƒÆ'),
(158919, 122780, 'no', 'name', 'Høgskulen pÄ Vestlandet'),
(158920, 122780, 'en', 'name', 'Western Norway University of Applied Sciences'),
(158921, 122781, 'no_lang_code', 'name', 'Jasco Corporation (Japan)'),
(158922, 122781, 'ja', 'name', 'ę—„ęœ¬åˆ†å…‰ę Ŗå¼ä¼šē¤¾'),
(158923, 122782, 'en', 'name', 'Government Medical College and Hospital, Thiruvallur'),
(158924, 122783, 'de', 'name', 'Staatsbibliothek zu Berlin'),
(158925, 122784, 'no_lang_code', 'name', 'ANA Holdings Inc. (Japan)'),
(158926, 122784, 'ja', 'name', 'ANAćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(158927, 122785, 'no_lang_code', 'name', 'Sorun Corporation (Japan)'),
(158928, 122785, 'ja', 'name', 'ć‚½ćƒ©ćƒ³ę Ŗå¼ä¼šē¤¾'),
(158929, 122786, 'no_lang_code', 'name', 'MondelƩz Japan Ltd. (Japan)'),
(158930, 122786, 'ja', 'name', 'ćƒ¢ćƒ³ćƒ‡ćƒŖćƒ¼ć‚ŗćƒ»ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(158931, 122787, 'no_lang_code', 'name', 'Kaijo Corporation (Japan)'),
(158932, 122787, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ć‚¤ć‚øćƒ§ćƒ¼'),
(158933, 122788, 'en', 'name', 'ORIC Pharmaceuticals, Inc. (United States)'),
(158934, 122789, 'en', 'name', 'NIHR School for Social Care Research'),
(158935, 122790, 'no_lang_code', 'name', 'Conflex Corporation (Japan)'),
(158936, 122790, 'ja', 'name', 'ć‚³ćƒ³ćƒ•ćƒ¬ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(158937, 122791, 'no_lang_code', 'name', 'Momentive Performance Materials Japan Llc (Japan)'),
(158938, 122791, 'ja', 'name', 'ćƒ¢ćƒ”ćƒ³ćƒ†ć‚£ćƒ–ćƒ»ćƒ‘ćƒ•ć‚©ćƒ¼ćƒžćƒ³ć‚¹ćƒ»ćƒžćƒ†ćƒŖć‚¢ćƒ«ć‚ŗćƒ»ć‚øćƒ£ćƒ‘ćƒ³åˆåŒä¼šē¤¾'),
(158939, 122792, 'no_lang_code', 'name', 'Molex, LLC (Japan)'),
(158940, 122792, 'ja', 'name', 'ę—„ęœ¬ćƒ¢ćƒ¬ćƒƒć‚Æć‚¹åˆåŒä¼šē¤¾'),
(158941, 122793, 'fr', 'name', 'Chimie et Biologie des Membranes et des Nanoobjects'),
(158942, 122794, 'no_lang_code', 'name', 'Aozora Bank, Ltd. (Japan)'),
(158943, 122794, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚ćŠćžć‚‰éŠ€č”Œ'),
(158944, 122795, 'en', 'name', 'University of the French Antilles'),
(158945, 122795, 'fr', 'name', 'UniversitƩ des Antilles'),
(158946, 122796, 'no_lang_code', 'name', 'Opcell Co., Ltd. (Japan)'),
(158947, 122796, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ—ć‚»ćƒ«'),
(158948, 122797, 'no_lang_code', 'name', 'Stemcell Institute (Japan)'),
(158949, 122797, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ćƒ†ćƒ ć‚»ćƒ«ē ”ē©¶ę‰€'),
(158950, 122798, 'sv', 'name', 'Bildkonstakademin'),
(158951, 122798, 'fi', 'name', 'Kuvataideakatemia'),
(158952, 122799, 'de', 'name', 'Landesamt für Bergbau, Geologie und Rohstoffe'),
(158953, 122799, 'en', 'name', 'State office for mining, geology and raw material'),
(158954, 122800, 'eu', 'name', 'Nafarroako Unibertsitate Publikoa'),
(158955, 122800, 'en', 'name', 'Public University of Navarre'),
(158956, 122800, 'es', 'name', 'Universidad Publica de Navarra'),
(158957, 122801, 'en', 'name', 'Chordia Therapeutics Inc. (Japan)'),
(158958, 122802, 'en', 'name', 'Euromed Management'),
(158959, 122803, 'no_lang_code', 'name', 'Honma Corporation (Japan)'),
(158960, 122803, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęœ¬é–“ēµ„'),
(158961, 122804, 'en', 'name', 'The World Academy of Sciences'),
(158962, 122805, 'no_lang_code', 'name', 'Waseda Educational Engineering Co. Ltd. (Japan)'),
(158963, 122805, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—©ēØ²ē”°ć‚Øćƒ‡ćƒ„ć‚±ć‚¤ć‚·ćƒ§ćƒŠćƒ«ćƒ»ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(158964, 122806, 'no_lang_code', 'name', 'Iwabuchi Corporation (Japan)'),
(158965, 122806, 'ja', 'name', 'ć‚¤ćƒÆćƒ–ćƒę Ŗå¼ä¼šē¤¾'),
(158966, 122807, 'en', 'name', 'Nalikule College of Education'),
(158967, 122808, 'no_lang_code', 'name', 'Aubex Corporation (Japan)'),
(158968, 122808, 'ja', 'name', 'ć‚Ŗćƒ¼ćƒ™ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(158969, 122809, 'no_lang_code', 'name', '3D Geoscience, Inc. (Japan)'),
(158970, 122809, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾3Dåœ°ē§‘å­¦ē ”ē©¶ę‰€'),
(158971, 122810, 'fr', 'name', 'Physiologie Pathologie et GƩnƩtique VƩgƩtales'),
(158972, 122811, 'pt', 'name', 'Escola Superior de Enfermagem da Universidade de Lisboa'),
(158973, 122812, 'en', 'name', 'Planet Labs PBC (United States)'),
(158974, 122813, 'pt', 'name', 'Universidade de Lisboa'),
(158975, 122813, 'en', 'name', 'University of Lisbon'),
(158976, 122814, 'en', 'name', 'Father Muller Charitable Institutions'),
(158977, 122814, 'kn', 'name', 'ą²«ą²¾ą²¦ą²°ą³ ą²®ą³ą²²ą³ą²²ą²°ą³ ą²šą²¾ą²°ą²æą²Ÿą²¬ą²²ą³ ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²·ą²Øą³ą²øą³'),
(158978, 122815, 'es', 'name', 'Agencia Estatal de Investigación'),
(158979, 122816, 'en', 'name', 'Institute of Advanced Energy, Kyoto University'),
(158980, 122816, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦ć‚Øćƒćƒ«ć‚®ćƒ¼ē†å·„å­¦ē ”ē©¶ę‰€'),
(158981, 122817, 'en', 'name', 'CMKL University'),
(158982, 122818, 'en', 'name', 'Department of Science and Technology'),
(158983, 122818, 'hi', 'name', 'ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ विभाग'),
(158984, 122818, 'ml', 'name', 'ą“¶ą“¾ą“øąµą“¤ąµą“° ą“øą“¾ą“™ąµą“•ąµ‡ą“¤ą“æą“• ą“µą“•ąµą“Ŗąµą“Ŗąµ'),
(158985, 122819, 'no_lang_code', 'name', 'Neturen Co., Ltd. (Japan)'),
(158986, 122819, 'ja', 'name', 'é«˜å‘Øę³¢ē†±éŒ¬ę Ŗå¼ä¼šē¤¾'),
(158987, 122820, 'no_lang_code', 'name', 'RION Co., Ltd. (Japan)'),
(158988, 122820, 'ja', 'name', 'ćƒŖć‚Ŗćƒ³ę Ŗå¼ä¼šē¤¾'),
(158989, 122821, 'fr', 'name', 'FĆ©dĆ©ration de recherche ONERA – ENAC – ISAE-SUPAERO'),
(158990, 122821, 'en', 'name', 'ONERA/ENAC/ISAE-SUPAERO Research Federation'),
(158991, 122822, 'en', 'name', 'Mishima Central Hospital'),
(158992, 122822, 'ja', 'name', '三島中央病院は'),
(158993, 122823, 'pt', 'name', 'Centro de Investigação, Inovação e Desenvolvimento em Enfermagem de Lisboa'),
(158994, 122823, 'en', 'name', 'Nursing Research, Innovation and Development Centre of Lisbon'),
(158995, 122824, 'no_lang_code', 'name', 'JSOL Corporation (Japan)'),
(158996, 122824, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾JSOL'),
(158997, 122825, 'no_lang_code', 'name', 'Nichimo Co., Ltd. (Japan)'),
(158998, 122825, 'ja', 'name', 'ćƒ‹ćƒćƒ¢ć‚¦ę Ŗå¼ä¼šē¤¾'),
(158999, 122826, 'no_lang_code', 'name', 'Isamu Paint Co., Ltd. (Japan)'),
(159000, 122826, 'ja', 'name', 'ć‚¤ć‚µćƒ å”—ę–™ę Ŗå¼ä¼šē¤¾'),
(159001, 122827, 'no_lang_code', 'name', 'Potters-Ballotini Co., Ltd. (Japan)'),
(159002, 122827, 'ja', 'name', 'ćƒćƒƒć‚æćƒ¼ć‚ŗćƒ»ćƒćƒ­ćƒ†ć‚£ćƒ¼ćƒ‹ę Ŗå¼ä¼šē¤¾'),
(159003, 122828, 'no_lang_code', 'name', 'Silver Seiko Ltd. (Japan)'),
(159004, 122828, 'ja', 'name', 'ć‚·ćƒ«ćƒćƒ¼ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(159005, 122829, 'en', 'name', 'Father Muller College of Nursing'),
(159006, 122829, 'kn', 'name', 'ą²«ą²¾ą²¦ą²°ą³ ą²®ą³ą²²ą³ą²²ą²°ą³ ą²•ą²¾ą²²ą³‡ą²œą³ ą²†ą²«ą³ ą²Øą²°ą³ą²øą²æą²‚ą²—ą³'),
(159007, 122830, 'fr', 'name', 'Institut LumiĆØre MatiĆØre'),
(159008, 122831, 'no_lang_code', 'name', 'Cosmos Technical Center Co., Ltd. (Japan)'),
(159009, 122831, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚³ć‚¹ćƒ¢ć‚¹ćƒ†ć‚Æćƒ‹ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(159010, 122832, 'no_lang_code', 'name', 'Ikuyo Co., Ltd. (Japan)'),
(159011, 122832, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ć‚ÆćƒØ'),
(159012, 122833, 'no_lang_code', 'name', 'GKN Driveline Japan Ltd (Japan)'),
(159013, 122833, 'ja', 'name', 'GKNćƒ‰ćƒ©ć‚¤ćƒ–ćƒ©ć‚¤ćƒ³ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(159014, 122834, 'no_lang_code', 'name', 'Atsugi Co., Ltd. (Japan)'),
(159015, 122834, 'ja', 'name', 'ć‚¢ćƒ„ć‚®ę Ŗå¼ä¼šē¤¾'),
(159016, 122835, 'en', 'name', 'Gates Foundation'),
(159017, 122836, 'eu', 'name', 'Biologia Aplikatuko Diziplina Anitzeko Ikerketa Institutua'),
(159018, 122836, 'en', 'name', 'Institute for Multidisciplinary Research in Applied Biology'),
(159019, 122836, 'es', 'name', 'Instituto de Investigación Multidisciplinar en Biología Aplicada'),
(159020, 122837, 'en', 'name', 'Youcef El Khatib University of Health Sciences'),
(159021, 122838, 'en', 'name', 'Reformed Theological Seminary'),
(159022, 122839, 'no_lang_code', 'name', 'Fujiyama Co., Ltd. (Japan)'),
(159023, 122839, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚øćƒ¤ćƒž'),
(159024, 122840, 'en', 'name', 'Brooke Army Medical Center'),
(159025, 122841, 'no_lang_code', 'name', 'IRM, Inc. (Japan)'),
(159026, 122841, 'ja', 'name', 'ć‚¢ć‚¤ćƒ»ć‚¢ćƒ¼ćƒ«ćƒ»ć‚Øćƒ ę Ŗå¼ä¼šē¤¾'),
(159027, 122842, 'id', 'name', 'Universitas Nahdlatul Ulama Surabaya'),
(159028, 122842, 'en', 'name', 'University of Nahdlatul Ulama Surabaya'),
(159029, 122843, 'fr', 'name', 'Institut Libre d''Education Physique SupƩrieur'),
(159030, 122844, 'no_lang_code', 'name', 'MVP Inc. (Japan)'),
(159031, 122844, 'ja', 'name', 'MVPę Ŗå¼ä¼šē¤¾'),
(159032, 122845, 'no_lang_code', 'name', 'Seiritsu Co., Ltd. (Japan)'),
(159033, 122845, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęˆē«‹'),
(159034, 122846, 'pt', 'name', 'Instituto Brasileiro de Ensino, Desenvolvimento e Pesquisa'),
(159035, 122847, 'no_lang_code', 'name', 'J-OIL Mills. Inc. (Japan)'),
(159036, 122847, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾J-ć‚Ŗć‚¤ćƒ«ćƒŸćƒ«ć‚ŗ'),
(159037, 122848, 'no_lang_code', 'name', 'KOYU Shokucho Co., Ltd. (Japan)'),
(159038, 122848, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…ę¹Æé£Ÿé³„'),
(159039, 122849, 'no_lang_code', 'name', 'Consol Corporation (Japan)'),
(159040, 122849, 'ja', 'name', 'ć‚³ćƒ³ć‚½ćƒ«ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(159041, 122850, 'en', 'name', 'NIHR CRUK Experimental Cancer Medicine Centre'),
(159042, 122851, 'es', 'name', 'Sociedad Cientifica de BibliometrĆ­a y CienciometrĆ­a'),
(159043, 122852, 'fr', 'name', 'Laboratoire d’Informatique de l’UniversitĆ© du Mans'),
(159044, 122853, 'no_lang_code', 'name', 'Ankhs, Inc. (Japan)'),
(159045, 122853, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ³ć‚Æć‚¹'),
(159046, 122854, 'no_lang_code', 'name', 'Enegate Co., Ltd. (Japan)'),
(159047, 122854, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒć‚²ćƒ¼ćƒˆ'),
(159048, 122855, 'es', 'name', 'Escuela Argentina de Tantra'),
(159049, 122856, 'no_lang_code', 'name', 'Bioserentach Inc. (Japan)'),
(159050, 122856, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚Ŗć‚»ćƒ¬ćƒ³ć‚æćƒƒć‚Æ'),
(159051, 122857, 'no_lang_code', 'name', 'Kinpodo Matsumoto Industry Co., Ltd. (Japan)'),
(159052, 122857, 'ja', 'name', 'é‡‘ę–¹å ‚ę¾ęœ¬å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159053, 122858, 'no_lang_code', 'name', 'Kyoyu Agri Co., Ltd. (Japan)'),
(159054, 122858, 'ja', 'name', 'å”å‹ć‚¢ć‚°ćƒŖę Ŗå¼ä¼šē¤¾'),
(159055, 122859, 'en', 'name', 'Medhavi Skills University'),
(159056, 122860, 'no_lang_code', 'name', 'Sepa-Sigma Inc. (Japan)'),
(159057, 122860, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ćƒ‘ć‚·ć‚°ćƒž'),
(159058, 122861, 'no_lang_code', 'name', 'Hainet Co., Ltd. (Japan)'),
(159059, 122861, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚¤ćƒćƒƒćƒˆ'),
(159060, 122862, 'no_lang_code', 'name', 'Nakamura Electric MFG. Co., Ltd. (Japan)'),
(159061, 122862, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äø­ę‘é›»ę©Ÿč£½ä½œę‰€'),
(159062, 122863, 'no_lang_code', 'name', 'Chemitech Inc. (Japan)'),
(159063, 122863, 'ja', 'name', 'ć‚±ćƒŸćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(159064, 122864, 'es', 'name', 'Hospital del NiƱo Francisco Icaza Bustamante'),
(159065, 122865, 'no_lang_code', 'name', 'Kaihatsukouken Co., Ltd. (Japan)'),
(159066, 122865, 'ja', 'name', 'é–‹ē™ŗå·„å»ŗę Ŗå¼ä¼šē¤¾'),
(159067, 122866, 'no_lang_code', 'name', 'Dengyo Incorporated (Japan)'),
(159068, 122866, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é›»ę„­'),
(159069, 122867, 'no_lang_code', 'name', 'I-HIVE Inc. (Japan)'),
(159070, 122867, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ćƒć‚¤ćƒ–'),
(159071, 122868, 'no_lang_code', 'name', 'Ivy.cosmetics Co., Ltd. (Japan)'),
(159072, 122868, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ“ćƒ¼åŒ–ē²§å“'),
(159073, 122869, 'no_lang_code', 'name', 'Nakabohtec Corrosion Protecting Co., Ltd. (Japan)'),
(159074, 122869, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŠć‚«ćƒœćƒ¼ćƒ†ćƒƒć‚Æ'),
(159075, 122870, 'no_lang_code', 'name', 'Windnavi Co., Ltd. (Japan)'),
(159076, 122870, 'ja', 'name', 'ć‚¦ć‚¤ćƒ³ćƒ‰ćƒŠćƒ“ę Ŗå¼ä¼šē¤¾'),
(159077, 122871, 'no_lang_code', 'name', 'Arenabio Co., Ltd. (Japan)'),
(159078, 122871, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¬ćƒŠćƒ“ć‚Ŗ'),
(159079, 122872, 'no_lang_code', 'name', 'Krosaki Harima Corporation (Japan)'),
(159080, 122872, 'ja', 'name', 'é»’å“Žę’­ē£Øę Ŗå¼ä¼šē¤¾'),
(159081, 122873, 'no_lang_code', 'name', 'UD Trucks Corporation (Japan)'),
(159082, 122873, 'ja', 'name', 'UDćƒˆćƒ©ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(159083, 122874, 'en', 'name', 'European Resuscitation Council'),
(159084, 122875, 'en', 'name', 'Ministry of Science and ICT'),
(159085, 122875, 'ko', 'name', 'ź³¼ķ•™źø°ģˆ ģ •ė³“ķ†µģ‹ ė¶€'),
(159086, 122876, 'en', 'name', 'Kastamonu Education and Research Hospital'),
(159087, 122877, 'en', 'name', 'de''Montmorency College of Dentistry'),
(159088, 122878, 'no_lang_code', 'name', 'Muraki Ltd. (Japan)'),
(159089, 122878, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ ćƒ©ć‚­'),
(159090, 122879, 'ro', 'name', 'Institutul Național de Cercetare-Dezvoltare pentru Bioresurse Alimentare‒ IBA București'),
(159091, 122879, 'en', 'name', 'National Research & Development Institute for Food Bioresources ‒ IBA Bucharest'),
(159092, 122880, 'no_lang_code', 'name', 'Flowserve Japan Co., Ltd. (Japan)'),
(159093, 122880, 'ja', 'name', 'ę—„ęœ¬ćƒ•ćƒ­ćƒ¼ć‚µćƒ¼ćƒ–ę Ŗå¼ä¼šē¤¾'),
(159094, 122881, 'no_lang_code', 'name', 'Almetax Manufacturing Co., Ltd. (Japan)'),
(159095, 122881, 'ja', 'name', 'ć‚¢ćƒ«ćƒ”ć‚æćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(159096, 122882, 'en', 'name', 'Molecular Immunity Unit'),
(159097, 122883, 'no_lang_code', 'name', 'Okaya Electric Industries Co., Ltd. (Japan)'),
(159098, 122883, 'ja', 'name', 'å²”č°·é›»ę©Ÿē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(159099, 122884, 'no_lang_code', 'name', 'Chemipro Kasei Kaisha, Ltd. (Japan)'),
(159100, 122884, 'ja', 'name', 'ć‚±ćƒŸćƒ—ćƒ­åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(159101, 122885, 'no_lang_code', 'name', 'KRI, Inc. (Japan)'),
(159102, 122885, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾KRI'),
(159103, 122886, 'no_lang_code', 'name', 'Oyatsu Company (Japan)'),
(159104, 122886, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćŠć‚„ć¤ć‚«ćƒ³ćƒ‘ćƒ‹ćƒ¼'),
(159105, 122887, 'no_lang_code', 'name', 'Dojindo Laboratories (Japan)'),
(159106, 122887, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åŒä»åŒ–å­¦ē ”ē©¶ę‰€'),
(159107, 122888, 'en', 'name', 'Arcadia Fund'),
(159108, 122889, 'no_lang_code', 'name', 'Inoac Corporation (Japan)'),
(159109, 122889, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒŽć‚¢ćƒƒć‚Æć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(159110, 122890, 'no_lang_code', 'name', 'Sakurai Kogyo Co., Ltd. (Japan)'),
(159111, 122890, 'ja', 'name', 'ę«»äŗ•å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159112, 122891, 'no_lang_code', 'name', 'Ambition Photonics Incorporated (Japan)'),
(159113, 122891, 'ja', 'name', 'ć‚¢ćƒ³ćƒ“ć‚·ćƒ§ćƒ³ćƒ»ćƒ•ć‚©ćƒˆćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(159114, 122892, 'no_lang_code', 'name', 'TYK Corporation (Japan)'),
(159115, 122892, 'ja', 'name', 'ę±äŗ¬ēŖÆę„­ę Ŗå¼ä¼šē¤¾'),
(159116, 122893, 'no_lang_code', 'name', 'Toukei Computer Co., Ltd. (Japan)'),
(159117, 122893, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±čØˆé›»ē®—'),
(159118, 122894, 'no_lang_code', 'name', 'Micado Co., Ltd. (Japan)'),
(159119, 122894, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŸć‚«ćƒ‰'),
(159120, 122895, 'en', 'name', 'Al-Neelain University'),
(159121, 122895, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„ŁŠŁ†'),
(159122, 122896, 'no_lang_code', 'name', 'YUPO Corporation (Japan)'),
(159123, 122896, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒćƒ»ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(159124, 122897, 'no_lang_code', 'name', 'Justsystems Corporation (Japan)'),
(159125, 122897, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ£ć‚¹ćƒˆć‚·ć‚¹ćƒ†ćƒ '),
(159126, 122898, 'no_lang_code', 'name', 'Sanensya Co., Ltd. (Japan)'),
(159127, 122898, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē®—å††čˆŽ'),
(159128, 122899, 'no_lang_code', 'name', 'Hirakawa Hewtech Corp. (Japan)'),
(159129, 122899, 'ja', 'name', 'å¹³ę²³ćƒ’ćƒ„ćƒ¼ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(159130, 122900, 'sv', 'name', 'Vinnova'),
(159131, 122901, 'no_lang_code', 'name', 'Architects Regional Planners & Associates, Kyoto (Japan)'),
(159132, 122901, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åœ°åŸŸčØˆē”»å»ŗēÆ‰ē ”ē©¶ę‰€'),
(159133, 122902, 'no_lang_code', 'name', 'Geothermal Energy Research And Development Co., Ltd. (Japan)'),
(159134, 122902, 'ja', 'name', 'åœ°ē†±ęŠ€č”“é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(159135, 122903, 'en', 'name', 'University of Poitiers'),
(159136, 122903, 'fr', 'name', 'UniversitƩ de Poitiers'),
(159137, 122904, 'no_lang_code', 'name', 'Ai-Phase Co., Ltd. (Japan)'),
(159138, 122904, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ•ć‚§ć‚¤ć‚ŗ'),
(159139, 122905, 'no_lang_code', 'name', 'A&A Material Corporation (Japan)'),
(159140, 122905, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ¼ć‚¢ćƒ³ćƒ‰ć‚Øćƒ¼ćƒžćƒ†ćƒŖć‚¢ćƒ«'),
(159141, 122906, 'fr', 'name', 'Patrimoine, LittƩrature, Histoire'),
(159142, 122907, 'no_lang_code', 'name', 'Contec Co., Ltd. (Japan)'),
(159143, 122907, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚³ćƒ³ćƒ†ćƒƒć‚Æ'),
(159144, 122908, 'no_lang_code', 'name', 'ATOX Co., Ltd. (Japan)'),
(159145, 122908, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒˆćƒƒć‚Æć‚¹'),
(159146, 122909, 'en', 'name', 'University of Mumbai'),
(159147, 122909, 'fr', 'name', 'UniversitƩ de mumbai'),
(159148, 122909, 'hi', 'name', 'ą¤®ą„ą¤‚ą¤¬ą¤ˆ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(159149, 122909, 'ta', 'name', 'ą®®ąÆą®®ąÆą®ŖąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(159150, 122909, 'te', 'name', 'ముంబయి ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(159151, 122910, 'it', 'name', 'Ente Ospedaliero Ospedali Galliera'),
(159152, 122911, 'en', 'name', 'AlJafara University'),
(159153, 122912, 'no_lang_code', 'name', 'Chevron Japan Ltd. (Japan)'),
(159154, 122912, 'ja', 'name', 'ć‚·ć‚§ćƒ–ćƒ­ćƒ³ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(159155, 122913, 'no_lang_code', 'name', 'Takahashi Curtain WALL Corporation (Japan)'),
(159156, 122913, 'ja', 'name', 'é«˜ę©‹ć‚«ćƒ¼ćƒ†ćƒ³ć‚¦ć‚©ćƒ¼ćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159157, 122914, 'no_lang_code', 'name', 'Nitaka Co., Ltd. (Japan)'),
(159158, 122914, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ć‚¤ć‚æć‚«'),
(159159, 122915, 'no_lang_code', 'name', 'Seiken Co., Ltd. (Japan)'),
(159160, 122915, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē²¾ē ”'),
(159161, 122916, 'no_lang_code', 'name', 'Microarts Corporation (Japan)'),
(159162, 122916, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžć‚¤ć‚Æćƒ­ć‚¢ćƒ¼ćƒ„'),
(159163, 122917, 'no_lang_code', 'name', 'Cleanup Corporation (Japan)'),
(159164, 122917, 'ja', 'name', 'ć‚ÆćƒŖćƒŠćƒƒćƒ—ę Ŗå¼ä¼šē¤¾'),
(159165, 122918, 'no_lang_code', 'name', 'Hosoda Corporation (Japan)'),
(159166, 122918, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē“°ē”°å·„å‹™åŗ—'),
(159167, 122919, 'no_lang_code', 'name', 'Shinkawa Ltd. (Japan)'),
(159168, 122919, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę–°å·'),
(159169, 122920, 'no_lang_code', 'name', 'TWO Cells Co., Ltd. (Japan)'),
(159170, 122920, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ„ćƒ¼ć‚»ćƒ«'),
(159171, 122921, 'no_lang_code', 'name', 'Oliver Corporation (Japan)'),
(159172, 122921, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚ŖćƒŖćƒćƒ¼'),
(159173, 122922, 'no_lang_code', 'name', 'KAJI Technology Corporation (Japan)'),
(159174, 122922, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åŠ åœ°ćƒ†ćƒƒć‚Æ'),
(159175, 122923, 'en', 'name', 'The University of Wales, Newport'),
(159176, 122924, 'no_lang_code', 'name', 'Koike Sanso Kogyo Co., Ltd. (Japan)'),
(159177, 122924, 'ja', 'name', 'å°ę± é…øē“ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159178, 122925, 'no_lang_code', 'name', 'A-Hitbio Inc. (Japan)'),
(159179, 122925, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾A-HITBio'),
(159180, 122926, 'en', 'name', 'Heritage Polytechnic'),
(159181, 122927, 'en', 'name', 'Le Mans University'),
(159182, 122927, 'fr', 'name', 'Le Mans UniversitƩ'),
(159183, 122928, 'en', 'name', 'Carnegie Mellon University'),
(159184, 122929, 'no_lang_code', 'name', 'Biomaster, Inc. (Japan)'),
(159185, 122929, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚Ŗćƒžć‚¹ć‚æćƒ¼'),
(159186, 122930, 'it', 'name', 'SocietĆ  Cooperativa Culture'),
(159187, 122931, 'no_lang_code', 'name', 'Kumagai GUMI Co., Ltd. (Japan)'),
(159188, 122931, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē†Šč°·ēµ„'),
(159189, 122932, 'no_lang_code', 'name', 'Tetra Co., Ltd. (Japan)'),
(159190, 122932, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ćƒˆćƒ©'),
(159191, 122933, 'no_lang_code', 'name', 'Mediastic, Inc. (Japan)'),
(159192, 122933, 'ja', 'name', 'ćƒ”ćƒ‡ć‚£ć‚¢ć‚¹ćƒ†ć‚£ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(159193, 122934, 'no_lang_code', 'name', 'Inspec Inc. (Japan)'),
(159194, 122934, 'ja', 'name', 'ć‚¤ćƒ³ć‚¹ćƒšćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(159195, 122935, 'en', 'name', 'Day One Biopharmaceuticals (United States)'),
(159196, 122936, 'no_lang_code', 'name', 'UG Toshi-Kenchiku Co., Ltd. (Japan)'),
(159197, 122936, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾UGéƒ½åø‚å»ŗēÆ‰'),
(159198, 122937, 'no_lang_code', 'name', 'Chemical Grouting Company (Japan)'),
(159199, 122937, 'ja', 'name', 'ć‚±ćƒŸć‚«ćƒ«ć‚°ćƒ©ć‚¦ćƒˆę Ŗå¼ä¼šē¤¾'),
(159200, 122938, 'no_lang_code', 'name', 'Sinanen Holdings Co., Ltd. (Japan)'),
(159201, 122938, 'ja', 'name', 'ć‚·ćƒŠćƒćƒ³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(159202, 122939, 'en', 'name', 'Strata Oncology (United States)'),
(159203, 122940, 'en', 'name', 'Gairdner Foundation'),
(159204, 122941, 'id', 'name', 'Universitas Graha Nusantara'),
(159205, 122942, 'no_lang_code', 'name', 'Sciocs Company Limited (Japan)'),
(159206, 122942, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µć‚¤ć‚Ŗć‚Æć‚¹'),
(159207, 122943, 'en', 'name', 'Canadian Rheumatology Association'),
(159208, 122943, 'fr', 'name', 'SociƩtƩ Canadienne Rheumatologie'),
(159209, 122944, 'no_lang_code', 'name', 'A&T Corporation (Japan)'),
(159210, 122944, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ć‚¢ćƒ³ćƒ‰ćƒ†ć‚£ćƒ¼'),
(159211, 122945, 'en', 'name', 'The Shaw Prize Foundation'),
(159212, 122945, 'zh', 'name', 'é‚µé€øå¤«å„–åŸŗé‡‘ä¼š'),
(159213, 122946, 'no_lang_code', 'name', 'C-TECH Corporation (Japan)'),
(159214, 122946, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ćƒ¼ćƒ†ćƒƒć‚Æ'),
(159215, 122947, 'no_lang_code', 'name', 'Nohmi Bosai Ltd. (Japan)'),
(159216, 122947, 'ja', 'name', 'čƒ½ē¾Žé˜²ē½ę Ŗå¼ä¼šē¤¾'),
(159217, 122948, 'no_lang_code', 'name', 'SAN-ETSU Metals Co., Ltd. (Japan)'),
(159218, 122948, 'ja', 'name', 'ć‚µćƒ³ć‚Øćƒ„é‡‘å±žę Ŗå¼ä¼šē¤¾'),
(159219, 122949, 'no_lang_code', 'name', 'Tohrin Co., Ltd. (Japan)'),
(159220, 122949, 'ja', 'name', 'ę±ē³å•†äŗ‹ę Ŗå¼ä¼šē¤¾'),
(159221, 122950, 'en', 'name', 'Murder Accountability Project'),
(159222, 122951, 'en', 'name', 'Institute for Advanced Research in Business and Economics'),
(159223, 122951, 'es', 'name', 'Instituto de Investigación Avanzada en Empresa y Economía'),
(159224, 122951, 'eu', 'name', 'Negozioei eta Ekonomiari buruzko Ikerketa Aurreratuko Institutoa'),
(159225, 122952, 'no_lang_code', 'name', 'Kinsei Matec Co., Ltd. (Japan)'),
(159226, 122952, 'ja', 'name', 'ć‚­ćƒ³ć‚»ć‚¤ćƒžćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(159227, 122953, 'no_lang_code', 'name', 'Tohto Kasei Co., Ltd. (Japan)'),
(159228, 122953, 'ja', 'name', 'ę±éƒ½åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(159229, 122954, 'en', 'name', 'Government of Norway'),
(159230, 122954, 'no', 'name', 'Norges regjering'),
(159231, 122955, 'no_lang_code', 'name', 'Okayama Paper Industries Co., Ltd. (Japan)'),
(159232, 122955, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å²”å±±č£½ē“™'),
(159233, 122956, 'no_lang_code', 'name', 'Fujisash Co., Ltd. (Japan)'),
(159234, 122956, 'ja', 'name', 'äøäŗŒć‚µćƒƒć‚·ę Ŗå¼ä¼šē¤¾'),
(159235, 122957, 'no', 'name', 'HĆøgskulen i Sogn og Fjordane'),
(159236, 122957, 'en', 'name', 'Sogn og Fjordane University College'),
(159237, 122958, 'no_lang_code', 'name', 'Airex Inc. (Japan)'),
(159238, 122958, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ¬ćƒƒć‚Æć‚¹'),
(159239, 122959, 'no_lang_code', 'name', 'Fujicco Co., Ltd. (Japan)'),
(159240, 122959, 'ja', 'name', 'ćƒ•ć‚øćƒƒć‚³ę Ŗå¼ä¼šē¤¾'),
(159241, 122960, 'no_lang_code', 'name', 'Techno-Tsukihoshi Corporation (Japan)'),
(159242, 122960, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚ÆćƒŽęœˆę˜Ÿ'),
(159243, 122961, 'no_lang_code', 'name', 'Ambis Corporation. (Japan)'),
(159244, 122961, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾AMBiS'),
(159245, 122962, 'en', 'name', 'Fulbright Poland'),
(159246, 122962, 'pl', 'name', 'Fulbright Polska'),
(159247, 122963, 'no_lang_code', 'name', 'AOI Electronics Co., Ltd. (Japan)'),
(159248, 122963, 'ja', 'name', 'ć‚¢ć‚Ŗć‚¤é›»å­ę Ŗå¼ä¼šē¤¾'),
(159249, 122964, 'no_lang_code', 'name', 'Nishimatsu Construction Co., Ltd. (Japan)'),
(159250, 122964, 'ja', 'name', 'č„æę¾å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(159251, 122965, 'no_lang_code', 'name', 'Aihara Electrical Engineering Co., Ltd. (Japan)'),
(159252, 122965, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚ć„ćÆć‚‰'),
(159253, 122966, 'no_lang_code', 'name', 'OI Electric Co., Ltd. (Japan)'),
(159254, 122966, 'ja', 'name', 'å¤§äŗ•é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(159255, 122967, 'en', 'name', 'Centre for Anglophone Studies'),
(159256, 122968, 'no_lang_code', 'name', 'Eiraku Electric Co., Ltd. (Japan)'),
(159257, 122968, 'ja', 'name', 'ę°øę„½é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(159258, 122969, 'en', 'name', 'ZonMw, The Dutch Organisation for knowledge and innovation in health, healthcare and well-being'),
(159259, 122970, 'no_lang_code', 'name', 'Nakayo, Inc. (Japan)'),
(159260, 122970, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŠć‚«ćƒØ'),
(159261, 122971, 'no_lang_code', 'name', 'LSI Medience Corporation (Japan)'),
(159262, 122971, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾LSIćƒ”ćƒ‡ć‚£ć‚Øćƒ³ć‚¹'),
(159263, 122972, 'no_lang_code', 'name', 'Algorithmica Inc. (Japan)'),
(159264, 122972, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚¢ćƒ«ć‚“ćƒŖć‚ŗćƒŸć‚«'),
(159265, 122973, 'no_lang_code', 'name', 'Kyuden Technosystems Corporation (Japan)'),
(159266, 122973, 'ja', 'name', 'ä¹é›»ćƒ†ć‚ÆćƒŽć‚·ć‚¹ćƒ†ćƒ ć‚ŗę Ŗå¼ä¼šē¤¾'),
(159267, 122974, 'no_lang_code', 'name', 'Eletakuma Co., Ltd. (Japan)'),
(159268, 122974, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ¬ć‚æć‚Æćƒž'),
(159269, 122975, 'no_lang_code', 'name', 'Optim Co., Ltd. (Japan)'),
(159270, 122975, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ—ćƒ†ć‚£ćƒ '),
(159271, 122976, 'en', 'name', 'Liberia Broadcasting System'),
(159272, 122977, 'en', 'name', 'NIHR Biomedical Research Centre at The Royal Marsden and the ICR'),
(159273, 122978, 'no_lang_code', 'name', 'Bioimmulance Co., Ltd. (Japan)'),
(159274, 122978, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚Ŗć‚¤ćƒŸćƒ„ćƒ©ćƒ³ć‚¹'),
(159275, 122979, 'no_lang_code', 'name', 'Exawizards Inc. (Japan)'),
(159276, 122979, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚Æć‚µć‚¦ć‚£ć‚¶ćƒ¼ć‚ŗ'),
(159277, 122980, 'no_lang_code', 'name', 'Okawara MFG. Co., Ltd. (Japan)'),
(159278, 122980, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¤§å·åŽŸč£½ä½œę‰€'),
(159279, 122981, 'no_lang_code', 'name', 'Fudow Co., Ltd. (Japan)'),
(159280, 122981, 'ja', 'name', 'ćƒ•ćƒ‰ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(159281, 122982, 'fr', 'name', 'UniversitƩ Savoie Mont Blanc'),
(159282, 122983, 'no_lang_code', 'name', 'Spirulina BIO-LAB. Co., Ltd. (Japan)'),
(159283, 122983, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ćƒ”ćƒ«ćƒŖćƒŠē ”ē©¶ę‰€'),
(159284, 122984, 'no_lang_code', 'name', 'F.C.C. Co., Ltd. (Japan)'),
(159285, 122984, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ•ćƒ»ć‚·ćƒ¼ćƒ»ć‚·ćƒ¼'),
(159286, 122985, 'fr', 'name', 'Centre intĆ©grĆ© universitaire de santĆ© et de services sociaux de l''Est-de-l''Ǝle-de-MontrĆ©al'),
(159287, 122986, 'en', 'name', 'Molecular, Cellular and Developmental Biology Unit'),
(159288, 122986, 'fr', 'name', 'UnitƩ de biologie MolƩculaire, Cellulaire et du DƩveloppement'),
(159289, 122987, 'en', 'name', 'NIHR Newcastle Biomedical Research Centre'),
(159290, 122988, 'en', 'name', 'The University of Texas at San Antonio Health Science Center');
INSERT INTO `ror_settings` VALUES
(159291, 122989, 'no_lang_code', 'name', 'Wetmaster Co., Ltd. (Japan)'),
(159292, 122989, 'ja', 'name', 'ć‚¦ć‚Øćƒƒćƒˆćƒžć‚¹ć‚æćƒ¼ę Ŗå¼ä¼šē¤¾'),
(159293, 122990, 'no_lang_code', 'name', 'Tokuhon Corporation (Japan)'),
(159294, 122990, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆć‚Æćƒ›ćƒ³'),
(159295, 122991, 'no_lang_code', 'name', 'Hinode Kagaku Kogyo Kaisha Ltd. (Japan)'),
(159296, 122991, 'ja', 'name', 'ę—„ä¹‹å‡ŗåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159297, 122992, 'no_lang_code', 'name', 'Tonets Corporation (Japan)'),
(159298, 122992, 'ja', 'name', 'ę±ę“‹ē†±å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159299, 122993, 'no_lang_code', 'name', 'Dyden Corporation (Japan)'),
(159300, 122993, 'ja', 'name', 'å¤§é›»ę Ŗå¼ä¼šē¤¾'),
(159301, 122994, 'no_lang_code', 'name', 'Taiyu Kensetu Co., Ltd. (Japan)'),
(159302, 122994, 'ja', 'name', 'å¤§ęœ‰å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(159303, 122995, 'en', 'name', 'Akwa Ibom State College Of Education'),
(159304, 122996, 'no_lang_code', 'name', 'Cybernet SYSTEMS Co., Ltd. (Japan)'),
(159305, 122996, 'ja', 'name', 'ć‚µć‚¤ćƒćƒćƒƒćƒˆć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(159306, 122997, 'no_lang_code', 'name', 'TI Asahi Co., Ltd. (Japan)'),
(159307, 122997, 'ja', 'name', 'TIć‚¢ć‚µćƒ’ę Ŗå¼ä¼šē¤¾'),
(159308, 122998, 'no_lang_code', 'name', 'Kilony Industry Co., Ltd. (Japan)'),
(159309, 122998, 'ja', 'name', 'ć‚­ćƒ­ćƒ‹ćƒ¼ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(159310, 122999, 'pl', 'name', 'Narodowe Centrum Nauki'),
(159311, 122999, 'en', 'name', 'National Science Centre'),
(159312, 123000, 'en', 'name', 'Kebbi State Polytechnic'),
(159313, 123001, 'no_lang_code', 'name', 'Residential Construction Agency (Japan)'),
(159314, 123001, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ćƒ«ć‚·ćƒ¼ć‚Øćƒ¼'),
(159315, 123002, 'no_lang_code', 'name', 'ECI, Inc. (Japan)'),
(159316, 123002, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ECI'),
(159317, 123003, 'no_lang_code', 'name', 'Nippi Corporation (Japan)'),
(159318, 123003, 'ja', 'name', 'ę—„ęœ¬é£›č”Œę©Ÿę Ŗå¼ä¼šē¤¾'),
(159319, 123004, 'no_lang_code', 'name', 'Incomjapan, Inc. (Japan)'),
(159320, 123004, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ć‚³ćƒ ć‚øćƒ£ćƒ‘ćƒ³'),
(159321, 123005, 'en', 'name', 'NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber'),
(159322, 123006, 'no_lang_code', 'name', 'Chikusui Canycom Inc. (Japan)'),
(159323, 123006, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē­‘ę°“ć‚­ćƒ£ćƒ‹ć‚³ćƒ '),
(159324, 123007, 'en', 'name', 'Academic Center for Computing and Media Studies, Kyoto University'),
(159325, 123007, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦å­¦č”“ęƒ…å ±ćƒ”ćƒ‡ć‚£ć‚¢ć‚»ćƒ³ć‚æćƒ¼'),
(159326, 123008, 'en', 'name', 'International Mathematical Union'),
(159327, 123009, 'en', 'name', 'Technological Educational Institute of Peloponnese'),
(159328, 123009, 'el', 'name', 'ΤΕΙ Ī ĪµĪ»ĪæĻ€ĪæĪ½Ī½Ī®ĻƒĪæĻ…'),
(159329, 123010, 'en', 'name', 'French Institute of Health and Medical Research'),
(159330, 123010, 'fr', 'name', 'Inserm'),
(159331, 123011, 'no_lang_code', 'name', 'EIKI Industrial Co., Ltd. (Japan)'),
(159332, 123011, 'ja', 'name', 'ę˜ ę©Ÿå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159333, 123012, 'no_lang_code', 'name', 'Tocalo Co., Ltd. (Japan)'),
(159334, 123012, 'ja', 'name', 'ćƒˆćƒ¼ć‚«ćƒ­ę Ŗå¼ä¼šē¤¾'),
(159335, 123013, 'no_lang_code', 'name', 'Nuflare Technology, Inc. (Japan)'),
(159336, 123013, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ„ćƒ¼ćƒ•ćƒ¬ć‚¢ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼'),
(159337, 123014, 'id', 'name', 'Institut Teknologi Nasional Bandung'),
(159338, 123015, 'no_lang_code', 'name', 'KIRA Corporation (Japan)'),
(159339, 123015, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒ©ćƒ»ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(159340, 123016, 'no_lang_code', 'name', 'Iwatsu Electric Co., Ltd. (Japan)'),
(159341, 123016, 'ja', 'name', 'å²©å“Žé€šäæ”ę©Ÿę Ŗå¼ä¼šē¤¾'),
(159342, 123017, 'no_lang_code', 'name', 'Yasunaga Corporation (Japan)'),
(159343, 123017, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å®‰ę°ø'),
(159344, 123018, 'fr', 'name', 'FƩdƩration de Recherche en MathƩmatiques Auvergne-RhƓne-Alpes'),
(159345, 123019, 'es', 'name', 'Instituto Superior Tecnologico Compu Sur'),
(159346, 123020, 'no_lang_code', 'name', 'INES Corporation (Japan)'),
(159347, 123020, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒć‚¹'),
(159348, 123021, 'no_lang_code', 'name', 'Mayekawa MFG. Co., Ltd. (Japan)'),
(159349, 123021, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å‰å·č£½ä½œę‰€'),
(159350, 123022, 'en', 'name', 'Mays Cancer Center at UT Health San Antonio'),
(159351, 123023, 'no_lang_code', 'name', 'Future Vision Inc. (Japan)'),
(159352, 123023, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ„ćƒ¼ćƒćƒ£ćƒ¼ćƒ“ć‚øćƒ§ćƒ³'),
(159353, 123024, 'fr', 'name', 'Institut de Droit PrivƩ'),
(159354, 123024, 'en', 'name', 'Institute of Private Law'),
(159355, 123025, 'en', 'name', 'OceanX'),
(159356, 123026, 'no_lang_code', 'name', 'Pronexus Inc. (Japan)'),
(159357, 123026, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ­ćƒć‚Æć‚µć‚¹'),
(159358, 123027, 'no_lang_code', 'name', 'Hakuto Co., Ltd. (Japan)'),
(159359, 123027, 'ja', 'name', 'ä¼Æę±ę Ŗå¼ä¼šē¤¾'),
(159360, 123028, 'no_lang_code', 'name', 'NDS Co., Ltd. (Japan)'),
(159361, 123028, 'ja', 'name', 'NDSę Ŗå¼ä¼šē¤¾'),
(159362, 123029, 'en', 'name', 'Venite University'),
(159363, 123030, 'no_lang_code', 'name', 'Higashio MECH Co., Ltd. (Japan)'),
(159364, 123030, 'ja', 'name', 'ę±å°¾ćƒ”ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(159365, 123031, 'en', 'name', 'Shenzhen Bao''an District Songgang People''s Hospital'),
(159366, 123031, 'zh', 'name', 'ę·±åœ³åø‚å®å®‰åŒŗę¾å²—äŗŗę°‘åŒ»é™¢'),
(159367, 123032, 'no_lang_code', 'name', 'TOIN Corporation (Japan)'),
(159368, 123032, 'ja', 'name', 'ćƒˆćƒ¼ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(159369, 123033, 'no_lang_code', 'name', 'SCI Co., Ltd. (Japan)'),
(159370, 123033, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ć‚·ćƒ¼ć‚¢ć‚¤'),
(159371, 123034, 'en', 'name', 'Kedge Business School'),
(159372, 123035, 'no_lang_code', 'name', 'MK Seiko Co., Ltd. (Japan)'),
(159373, 123035, 'ja', 'name', 'ć‚Øćƒ ć‚±ćƒ¼ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(159374, 123036, 'no_lang_code', 'name', 'Flexion Inc. (Japan)'),
(159375, 123036, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ¬ć‚Æć‚·ćƒ§ćƒ³ć‚³ćƒ³ć‚µćƒ«ćƒ†ć‚£ćƒ³ć‚°'),
(159376, 123037, 'no_lang_code', 'name', 'Nippi, Incorporated (Japan)'),
(159377, 123037, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒƒćƒ”'),
(159378, 123038, 'es', 'name', 'Centro de Tratamiento e investigación sobre cÔncer Luis Carlos Sarmiento Angulo'),
(159379, 123038, 'en', 'name', 'Luis Carlos Sarmiento Angulo Cancer Treatment and Research Center (CTIC)'),
(159380, 123039, 'no_lang_code', 'name', 'FC Development Co., Ltd. (Japan)'),
(159381, 123039, 'ja', 'name', 'ć‚Øćƒ•ć‚·ćƒ¼é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(159382, 123040, 'no_lang_code', 'name', 'Speedia Co., Ltd. (Japan)'),
(159383, 123040, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ćƒ”ćƒ¼ćƒ‡ć‚£ć‚¢'),
(159384, 123041, 'no_lang_code', 'name', 'Sansho Co., Ltd. (Japan)'),
(159385, 123041, 'ja', 'name', 'äø‰ę™¶ę Ŗå¼ä¼šē¤¾'),
(159386, 123042, 'no_lang_code', 'name', 'Polymer Processing Research Institute, Ltd. (Japan)'),
(159387, 123042, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é«˜åˆ†å­åŠ å·„ē ”ē©¶ę‰€'),
(159388, 123043, 'no_lang_code', 'name', 'AOBA Genetics, Inc. (Japan)'),
(159389, 123043, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é’č‘‰ć‚øć‚§ćƒćƒ†ć‚£ć‚Æć‚¹'),
(159390, 123044, 'fr', 'name', 'Ɖcole Centrale de Lyon'),
(159391, 123045, 'en', 'name', 'Ikon Institute of Australia'),
(159392, 123046, 'no_lang_code', 'name', 'ORC Manufacturing Co., Ltd. (Japan)'),
(159393, 123046, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ć‚Æč£½ä½œę‰€'),
(159394, 123047, 'no_lang_code', 'name', 'Chibagin Research Institute (Japan)'),
(159395, 123047, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć”ć°ćŽć‚“ē·åˆē ”ē©¶ę‰€'),
(159396, 123048, 'pt', 'name', 'Universidade Federal do Cariri'),
(159397, 123049, 'no_lang_code', 'name', 'OBARA Corporation (Japan)'),
(159398, 123049, 'ja', 'name', 'OBARAę Ŗå¼ä¼šē¤¾'),
(159399, 123050, 'no_lang_code', 'name', 'Manac Incorporated (Japan)'),
(159400, 123050, 'ja', 'name', 'ćƒžćƒŠćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(159401, 123051, 'en', 'name', 'Haleakalā National Park'),
(159402, 123051, 'es', 'name', 'Parque nacional Haleakalā'),
(159403, 123052, 'no_lang_code', 'name', 'Kunimine Industries Co., Ltd. (Japan)'),
(159404, 123052, 'ja', 'name', 'ć‚Æćƒ‹ćƒŸćƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159405, 123053, 'id', 'name', 'Akademi Akuntansi Boekittinggi'),
(159406, 123054, 'no_lang_code', 'name', 'Keyware Solutions Inc. (Japan)'),
(159407, 123054, 'ja', 'name', 'ć‚­ćƒ¼ć‚¦ć‚§ć‚¢ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗę Ŗå¼ä¼šē¤¾'),
(159408, 123055, 'no_lang_code', 'name', 'IKEN Engineering Co., Ltd. (Japan)'),
(159409, 123055, 'ja', 'name', 'åŒ»å»ŗć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(159410, 123056, 'no_lang_code', 'name', 'TEN Architect & Design Co., Ltd. (Japan)'),
(159411, 123056, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å±•å»ŗēÆ‰čØ­čØˆäŗ‹å‹™ę‰€'),
(159412, 123057, 'no_lang_code', 'name', 'Tokimec Inc. (Japan)'),
(159413, 123057, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆć‚­ćƒ”ćƒƒć‚Æ'),
(159414, 123058, 'no_lang_code', 'name', 'Yotsuba MILK Products Co., Ltd. (Japan)'),
(159415, 123058, 'ja', 'name', 'ć‚ˆć¤č‘‰ä¹³ę„­ę Ŗå¼ä¼šē¤¾'),
(159416, 123059, 'no_lang_code', 'name', 'Marujun Co., Ltd. (Japan)'),
(159417, 123059, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äøøé †'),
(159418, 123060, 'no_lang_code', 'name', 'MORI-GUMI Co., Ltd. (Japan)'),
(159419, 123060, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę£®ēµ„'),
(159420, 123061, 'no_lang_code', 'name', 'Momoya Co., Ltd. (Japan)'),
(159421, 123061, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę”ƒå±‹'),
(159422, 123062, 'no_lang_code', 'name', 'Sodick Co., Ltd. (Japan)'),
(159423, 123062, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚½ćƒ‡ć‚£ćƒƒć‚Æ'),
(159424, 123063, 'no_lang_code', 'name', 'Bratech Co., Ltd. (Japan)'),
(159425, 123063, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ–ćƒ©ćƒ†ćƒƒć‚Æ'),
(159426, 123064, 'no_lang_code', 'name', 'Imabari Shipbuilding Co., Ltd. (Japan)'),
(159427, 123064, 'ja', 'name', 'ä»Šę²»é€ čˆ¹ę Ŗå¼ä¼šē¤¾'),
(159428, 123065, 'no_lang_code', 'name', 'Keiyo Blanking Kogyo Co., Ltd. (Japan)'),
(159429, 123065, 'ja', 'name', 'äŗ¬č‘‰ćƒ–ćƒ©ćƒ³ć‚­ćƒ³ć‚°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159430, 123066, 'no_lang_code', 'name', 'WIT Corporation (Japan)'),
(159431, 123066, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—©ēØ²ē”°ęƒ…å ±ęŠ€č”“ē ”ē©¶ę‰€'),
(159432, 123067, 'en', 'name', 'Claude Bernard University Lyon 1'),
(159433, 123067, 'fr', 'name', 'UniversitƩ Claude Bernard Lyon 1'),
(159434, 123068, 'no_lang_code', 'name', 'TDF Corporation (Japan)'),
(159435, 123068, 'ja', 'name', 'TDFę Ŗå¼ä¼šē¤¾'),
(159436, 123069, 'no_lang_code', 'name', 'Kyodoken Institute, Co., Ltd. (Japan)'),
(159437, 123069, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äŗ¬éƒ½å‹•ē‰©ę¤œęŸ»ć‚»ćƒ³ć‚æćƒ¼'),
(159438, 123070, 'no_lang_code', 'name', 'CMK Corporation (Japan)'),
(159439, 123070, 'ja', 'name', 'ę—„ęœ¬ć‚·ć‚¤ć‚Øćƒ ć‚±ć‚¤ę Ŗå¼ä¼šē¤¾'),
(159440, 123071, 'no_lang_code', 'name', 'Toudai TLO, Ltd. (Japan)'),
(159441, 123071, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±äŗ¬å¤§å­¦TLO'),
(159442, 123072, 'pt', 'name', 'Escola Naval'),
(159443, 123073, 'en', 'name', 'UK Research and Innovation'),
(159444, 123074, 'no_lang_code', 'name', 'MIWA LOCK Co., Ltd. (Japan)'),
(159445, 123074, 'ja', 'name', 'ē¾Žå’Œćƒ­ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(159446, 123075, 'en', 'name', 'Nuvalent, Inc. (United States)'),
(159447, 123076, 'no_lang_code', 'name', 'Dnaform (Japan)'),
(159448, 123076, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ćƒŠćƒ•ć‚©ćƒ¼ćƒ '),
(159449, 123077, 'no_lang_code', 'name', 'Ishizuka Glass Co., Ltd. (Japan)'),
(159450, 123077, 'ja', 'name', 'ēŸ³å”šē”å­ę Ŗå¼ä¼šē¤¾'),
(159451, 123078, 'no_lang_code', 'name', 'SAGA Tekkohsho Co., Ltd. (Japan)'),
(159452, 123078, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ä½č³€é‰„å·„ę‰€'),
(159453, 123079, 'no_lang_code', 'name', 'Nisshoku Corporation (Japan)'),
(159454, 123079, 'ja', 'name', 'ę—„ęœ¬ę¤ē”Ÿę Ŗå¼ä¼šē¤¾'),
(159455, 123080, 'fr', 'name', 'Centre National de la Recherche Scientifique'),
(159456, 123080, 'en', 'name', 'French National Centre for Scientific Research'),
(159457, 123081, 'no_lang_code', 'name', 'Litho Tech Japan Corporation (Japan)'),
(159458, 123081, 'ja', 'name', 'ćƒŖć‚½ćƒ†ćƒƒć‚Æć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(159459, 123082, 'en', 'name', 'U.S. National Science Foundation'),
(159460, 123083, 'no_lang_code', 'name', 'Houtoku Co., Ltd. (Japan)'),
(159461, 123083, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ›ć‚¦ćƒˆć‚Æ'),
(159462, 123084, 'en', 'name', 'University of Montpellier'),
(159463, 123084, 'fr', 'name', 'UniversitƩ de Montpellier'),
(159464, 123085, 'en', 'name', 'Suryodaya College of Engineering and Technology'),
(159465, 123086, 'no_lang_code', 'name', 'Techno-UMG Co., Ltd. (Japan)'),
(159466, 123086, 'ja', 'name', 'ćƒ†ć‚ÆćƒŽUMGę Ŗå¼ä¼šē¤¾'),
(159467, 123087, 'no_lang_code', 'name', 'Yamax Corp. (Japan)'),
(159468, 123087, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¤ćƒžćƒƒć‚Æć‚¹'),
(159469, 123088, 'no_lang_code', 'name', 'Plagenom Co., Ltd. (Japan)'),
(159470, 123088, 'ja', 'name', 'ćƒ—ćƒ©ć‚²ćƒŽćƒ ę Ŗå¼ä¼šē¤¾'),
(159471, 123089, 'fr', 'name', 'Fondation des Maladies du Cœur et de l''AVC'),
(159472, 123089, 'en', 'name', 'Heart and Stroke Foundation'),
(159473, 123090, 'no_lang_code', 'name', 'Nozawa Corporation (Japan)'),
(159474, 123090, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŽć‚¶ćƒÆ'),
(159475, 123091, 'no_lang_code', 'name', 'THF Co., Ltd. (Japan)'),
(159476, 123091, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾THF'),
(159477, 123092, 'no_lang_code', 'name', 'Creact Corporation (Japan)'),
(159478, 123092, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ć‚¢ć‚Æćƒˆ'),
(159479, 123093, 'en', 'name', 'Jorhat Institute of Science and Technology'),
(159480, 123093, 'as', 'name', 'ą¦Æą§‹ą§°ą¦¹ą¦¾ą¦Ÿ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø আৰু ą¦Ŗą§ą§°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ ą¦Ŗą§ą§°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø'),
(159481, 123094, 'no_lang_code', 'name', 'Kokando Co., Ltd. (Japan)'),
(159482, 123094, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å»£č²«å ‚'),
(159483, 123095, 'no_lang_code', 'name', 'OPTO-Hightech Co., Ltd. (Japan)'),
(159484, 123095, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ—ćƒˆćƒć‚¤ćƒ†ćƒƒć‚Æ'),
(159485, 123096, 'en', 'name', 'Manalapan High School'),
(159486, 123097, 'fr', 'name', 'Institut de Chimie de Toulouse'),
(159487, 123097, 'en', 'name', 'Institute of Chemistry, Toulouse'),
(159488, 123098, 'fr', 'name', 'Centre d''Ɖtude et de Recherche Travail Organisation Pouvoir'),
(159489, 123099, 'no_lang_code', 'name', 'Noveltech, Inc. (Japan)'),
(159490, 123099, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŽćƒ™ćƒ«ćƒ†ćƒƒć‚Æ'),
(159491, 123100, 'no_lang_code', 'name', 'URYU Seisaku, Ltd. (Japan)'),
(159492, 123100, 'ja', 'name', 'ē“œē”Ÿč£½ä½œę Ŗå¼ä¼šē¤¾'),
(159493, 123101, 'en', 'name', 'Howard Hughes Medical Institute'),
(159494, 123101, 'es', 'name', 'Instituto MƩdico Howard Hughes'),
(159495, 123102, 'no_lang_code', 'name', 'Bloodissue, Inc. (Japan)'),
(159496, 123102, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ–ćƒ©ćƒ‡ć‚£ćƒƒć‚·ćƒ„'),
(159497, 123103, 'no_lang_code', 'name', 'Haneron Corporation Ltd. (Japan)'),
(159498, 123103, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒćƒ­ćƒ³'),
(159499, 123104, 'no_lang_code', 'name', 'Mimasu Semiconductor Industry Co., Ltd. (Japan)'),
(159500, 123104, 'ja', 'name', 'äø‰ē›ŠåŠå°Žä½“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159501, 123105, 'no_lang_code', 'name', 'Yamauchi Corporation (Japan)'),
(159502, 123105, 'ja', 'name', 'ćƒ¤ćƒžć‚¦ćƒę Ŗå¼ä¼šē¤¾'),
(159503, 123106, 'no_lang_code', 'name', 'ATEX Co., Ltd. (Japan)'),
(159504, 123106, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ†ćƒƒć‚Æć‚¹'),
(159505, 123107, 'no_lang_code', 'name', 'Hirai Co., Ltd. (Japan)'),
(159506, 123107, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ’ćƒ©ć‚¤'),
(159507, 123108, 'no_lang_code', 'name', 'Chofu Seisakusho Co., Ltd. (Japan)'),
(159508, 123108, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é•·åŗœč£½ä½œę‰€'),
(159509, 123109, 'no_lang_code', 'name', 'Inazuma Inc. (Japan)'),
(159510, 123109, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒŠć‚ŗćƒž'),
(159511, 123110, 'no_lang_code', 'name', 'BEENOS Inc. (Japan)'),
(159512, 123110, 'ja', 'name', 'BEENOSę Ŗå¼ä¼šē¤¾'),
(159513, 123111, 'no_lang_code', 'name', 'Rengo Co., Ltd. (Japan)'),
(159514, 123111, 'ja', 'name', 'ćƒ¬ćƒ³ć‚“ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(159515, 123112, 'no_lang_code', 'name', 'Daisen HAM Co., Ltd. (Japan)'),
(159516, 123112, 'ja', 'name', 'å¤§å±±ćƒćƒ ę Ŗå¼ä¼šē¤¾'),
(159517, 123113, 'no_lang_code', 'name', 'Agrex Inc. (Japan)'),
(159518, 123113, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚°ćƒ¬ćƒƒć‚Æć‚¹'),
(159519, 123114, 'no_lang_code', 'name', 'CO2 Techno Limited Company (Japan)'),
(159520, 123114, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚·ćƒ¼ć‚Ŗćƒ¼ćƒ„ćƒ¼ćƒ†ć‚ÆćƒŽ'),
(159521, 123115, 'no_lang_code', 'name', 'Sakai-Nagoya Co., Ltd. (Japan)'),
(159522, 123115, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µć‚«ć‚¤ćƒŠć‚“ćƒ¤'),
(159523, 123116, 'no_lang_code', 'name', 'Ambic. Co., Ltd. (Japan)'),
(159524, 123116, 'ja', 'name', 'ć‚¢ćƒ³ćƒ“ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(159525, 123117, 'no_lang_code', 'name', 'Eight Consultants Co., Ltd. (Japan)'),
(159526, 123117, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ćƒˆć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆ'),
(159527, 123118, 'en', 'name', 'University of OrlƩans'),
(159528, 123118, 'fr', 'name', 'UniversitƩ d''OrlƩans'),
(159529, 123119, 'no_lang_code', 'name', 'France BED Co., Ltd. (Japan)'),
(159530, 123119, 'ja', 'name', 'ćƒ•ćƒ©ćƒ³ć‚¹ćƒ™ćƒƒćƒ‰ę Ŗå¼ä¼šē¤¾'),
(159531, 123120, 'fr', 'name', 'Toulouse School of Economics Research'),
(159532, 123121, 'no_lang_code', 'name', 'Crecon Medical Assessment Inc. (Japan)'),
(159533, 123121, 'ja', 'name', 'ć‚Æćƒ¬ć‚³ćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚¢ć‚»ć‚¹ćƒ”ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(159534, 123122, 'en', 'name', 'The Asia Pacific School of Business'),
(159535, 123122, 'zh', 'name', 'äŗšå¤Ŗå•†å­¦é™¢'),
(159536, 123123, 'no_lang_code', 'name', 'Tilement Corporation (Japan)'),
(159537, 123123, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚¤ćƒ«ćƒ”ćƒ³ćƒˆ'),
(159538, 123124, 'en', 'name', 'The Kyoto University Museum, Kyoto University'),
(159539, 123124, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦ē·åˆåšē‰©é¤Ø'),
(159540, 123125, 'no_lang_code', 'name', 'SAN-ESU Gypsum Co., Ltd. (Japan)'),
(159541, 123125, 'ja', 'name', 'ć‚µćƒ³ć‚Øć‚¹ēŸ³č†ę Ŗå¼ä¼šē¤¾'),
(159542, 123126, 'no_lang_code', 'name', 'Tohpe Corporation (Japan)'),
(159543, 123126, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆć‚¦ćƒš'),
(159544, 123127, 'no_lang_code', 'name', 'NF Corporation (Japan)'),
(159545, 123127, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚ØćƒŒć‚Øćƒ•å›žč·ÆčØ­čØˆćƒ–ćƒ­ćƒƒć‚Æ'),
(159546, 123128, 'no_lang_code', 'name', 'Genesia Corporation (Japan)'),
(159547, 123128, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ ć‚øć‚§ćƒć‚·ć‚¢'),
(159548, 123129, 'no_lang_code', 'name', 'Katsuragawa Electric Co., Ltd. (Japan)'),
(159549, 123129, 'ja', 'name', 'ę”‚å·é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(159550, 123130, 'no_lang_code', 'name', 'Raytech Corporation (Japan)'),
(159551, 123130, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¬ć‚¤ćƒ†ćƒƒć‚Æ'),
(159552, 123131, 'no_lang_code', 'name', 'Sankosha Corporation (Japan)'),
(159553, 123131, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ć‚³ćƒ¼ć‚·ćƒ¤'),
(159554, 123132, 'en', 'name', 'Swedish Research Council'),
(159555, 123133, 'en', 'name', 'Purbanchal University'),
(159556, 123133, 'ne', 'name', 'ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤žą„ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(159557, 123134, 'no_lang_code', 'name', 'Tendo Co., Ltd. (Japan)'),
(159558, 123134, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¤©ē«„ęœØå·„'),
(159559, 123135, 'no_lang_code', 'name', 'Nakakita Seisakusho Co., Ltd. (Japan)'),
(159560, 123135, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äø­åŒ—č£½ä½œę‰€'),
(159561, 123136, 'no', 'name', 'HĆøgskolen Stord/Haugesund'),
(159562, 123136, 'en', 'name', 'Stord/Haugesund University College'),
(159563, 123137, 'no_lang_code', 'name', 'Deodor Japan Co., Ltd. (Japan)'),
(159564, 123137, 'ja', 'name', 'ę—„ęœ¬ćƒ‡ć‚Ŗćƒ‰ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(159565, 123138, 'no_lang_code', 'name', 'DDK Ltd. (Japan)'),
(159566, 123138, 'ja', 'name', 'ē¬¬äø€é›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159567, 123139, 'no_lang_code', 'name', 'Imasen Electric Industrial Co., Ltd. (Japan)'),
(159568, 123139, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ä»Šä»™é›»ę©Ÿč£½ä½œę‰€'),
(159569, 123140, 'no_lang_code', 'name', 'Beyondlsi, Inc. (Japan)'),
(159570, 123140, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ“ćƒØćƒ³ćƒ‰ćƒ»ć‚Øćƒ«ć‚Øć‚¹ć‚¢ć‚¤'),
(159571, 123141, 'no_lang_code', 'name', 'Kurimoto Construction Industry Co., Ltd. (Japan)'),
(159572, 123141, 'ja', 'name', 'ę —ęœ¬å»ŗčØ­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159573, 123142, 'no_lang_code', 'name', 'Harima Chemicals, Inc. (Japan)'),
(159574, 123142, 'ja', 'name', 'ćƒćƒŖćƒžåŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(159575, 123143, 'no_lang_code', 'name', 'NTP Inc. (Japan)'),
(159576, 123143, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾NTP'),
(159577, 123144, 'en', 'name', 'Islamic Azad University Harand branch'),
(159578, 123144, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų®ŁˆŲ§Ų±Ų²Ł…ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(159579, 123145, 'no_lang_code', 'name', 'Sunallomer Ltd. (Japan)'),
(159580, 123145, 'ja', 'name', 'ć‚µćƒ³ć‚¢ćƒ­ćƒžćƒ¼ę Ŗå¼ä¼šē¤¾'),
(159581, 123146, 'no_lang_code', 'name', 'Kyusyu Nyugyo Co., Ltd. (Japan)'),
(159582, 123146, 'ja', 'name', 'ä¹å·žä¹³ę„­ę Ŗå¼ä¼šē¤¾'),
(159583, 123147, 'no_lang_code', 'name', 'Queen Light Electronic Industries Ltd. (Japan)'),
(159584, 123147, 'ja', 'name', 'ć‚Æć‚¤ćƒ³ćƒ©ć‚¤ćƒˆé›»å­ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(159585, 123148, 'no_lang_code', 'name', 'Milbon Co., Ltd. (Japan)'),
(159586, 123148, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŸćƒ«ćƒœćƒ³'),
(159587, 123149, 'no_lang_code', 'name', 'Mirise Technologies Corporation (Japan)'),
(159588, 123149, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŸćƒ©ć‚¤ć‚ŗćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(159589, 123150, 'no_lang_code', 'name', 'Saiden Chemical Industry Co., Ltd. (Japan)'),
(159590, 123150, 'ja', 'name', 'ć‚µć‚¤ćƒ‡ćƒ³åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(159591, 123151, 'en', 'name', 'Siam Technology University'),
(159592, 123151, 'th', 'name', 'สยาดเทค'),
(159593, 123152, 'en', 'name', 'National University of Civil Protection of Ukraine'),
(159594, 123152, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń†ŠøŠ²Ń–Š»ŃŒŠ½Š¾Š³Š¾ Š·Š°Ń…ŠøŃŃ‚Ńƒ України'),
(159595, 123153, 'no_lang_code', 'name', 'Kaneko Seeds Co., Ltd. (Japan)'),
(159596, 123153, 'ja', 'name', 'ć‚«ćƒć‚³ēØ®č‹—ę Ŗå¼ä¼šē¤¾'),
(159597, 123154, 'no_lang_code', 'name', 'Evolving Nano-Process Infrastructure Development Center (Japan)'),
(159598, 123154, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…ˆē«ÆćƒŠćƒŽćƒ—ćƒ­ć‚»ć‚¹åŸŗē›¤é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(159599, 123155, 'no_lang_code', 'name', 'Gigaflops Japan Inc. (Japan)'),
(159600, 123155, 'ja', 'name', 'ć‚®ć‚¬ćƒ•ćƒ­ćƒƒćƒ—ć‚¹ę Ŗå¼ä¼šē¤¾'),
(159601, 123156, 'no_lang_code', 'name', 'MTC Co., Ltd. (Japan)'),
(159602, 123156, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ ćƒ»ćƒ†ć‚£ćƒ»ć‚·ćƒ¼'),
(159603, 123157, 'en', 'name', 'Vanadzor State University'),
(159604, 123157, 'hy', 'name', 'ÕŽÕ”Õ¶Õ”Õ±ÕøÖ€Õ« Õ€ÕøÕ¾Õ°Õ”Õ¶Õ¶Õ„Õ½ Ō¹ÕøÖ‚Õ“Õ”Õ¶ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ՊՄտՔկՔն Õ€Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(159605, 123158, 'fr', 'name', 'Université Toulouse - Jean Jaurès'),
(159606, 123159, 'no_lang_code', 'name', 'Alinco Incorporated (Japan)'),
(159607, 123159, 'ja', 'name', 'ć‚¢ćƒ«ć‚¤ćƒ³ć‚³ę Ŗå¼ä¼šē¤¾'),
(159608, 123160, 'no_lang_code', 'name', 'Takatori Corporation (Japan)'),
(159609, 123160, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚«ćƒˆćƒŖ'),
(159610, 123161, 'no_lang_code', 'name', 'FACT. Inc. (Japan)'),
(159611, 123161, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚”ć‚Æćƒˆ'),
(159612, 123162, 'no_lang_code', 'name', 'Tamron Co., Ltd. (Japan)'),
(159613, 123162, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æćƒ ćƒ­ćƒ³'),
(159614, 123163, 'no_lang_code', 'name', 'Total Information Development Co., Ltd. (Japan)'),
(159615, 123163, 'ja', 'name', 'ē·åˆęƒ…å ±é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(159616, 123164, 'no_lang_code', 'name', 'JDC Corporation (Japan)'),
(159617, 123164, 'ja', 'name', 'ę—„ęœ¬å›½åœŸé–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(159618, 123165, 'fr', 'name', 'Agence Nationale de la Recherche'),
(159619, 123165, 'en', 'name', 'National Agency for Research'),
(159620, 123166, 'no_lang_code', 'name', 'LEAD Co., Inc. (Japan)'),
(159621, 123166, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŖćƒ¼ćƒ‰'),
(159622, 123167, 'no_lang_code', 'name', 'Canopus Co., Ltd. (Japan)'),
(159623, 123167, 'ja', 'name', 'ć‚«ćƒŽćƒ¼ćƒ—ć‚¹ę Ŗå¼ä¼šē¤¾'),
(159624, 123168, 'no_lang_code', 'name', 'Ichinen Chemicals Co., Ltd. (Japan)'),
(159625, 123168, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒćƒćƒ³ć‚±ćƒŸć‚«ćƒ«ć‚ŗ'),
(159626, 123169, 'no_lang_code', 'name', 'Mizusawa Industrial Chemicals, Ltd. (Japan)'),
(159627, 123169, 'ja', 'name', 'ę°“ę¾¤åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159628, 123170, 'no_lang_code', 'name', 'Kosaka Laboratory Ltd. (Japan)'),
(159629, 123170, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å°å‚ē ”ē©¶ę‰€'),
(159630, 123171, 'no_lang_code', 'name', 'IJTT Co., Ltd. (Japan)'),
(159631, 123171, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾IJTT'),
(159632, 123172, 'no_lang_code', 'name', 'NASU Denki-Tekko Co., Ltd. (Japan)'),
(159633, 123172, 'ja', 'name', 'é‚£é ˆé›»ę©Ÿé‰„å·„ę Ŗå¼ä¼šē¤¾'),
(159634, 123173, 'no_lang_code', 'name', 'Dwango Co., Ltd. (Japan)'),
(159635, 123173, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‰ćƒÆćƒ³ć‚“'),
(159636, 123174, 'fr', 'name', 'Ɖcole supĆ©rieure d’ingĆ©nieurs et de techniciens pour l’agriculture'),
(159637, 123175, 'en', 'name', 'Azerbaijan Sports Academy'),
(159638, 123175, 'az', 'name', 'Azərbaycan İdman Akademiyası'),
(159639, 123175, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ спорта АзербайГжана'),
(159640, 123176, 'no_lang_code', 'name', 'Nikkato Corporation (Japan)'),
(159641, 123176, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒƒć‚«ćƒˆćƒ¼'),
(159642, 123177, 'no_lang_code', 'name', 'Sonic Fellow Co., Ltd. (Japan)'),
(159643, 123177, 'ja', 'name', 'ć‚½ćƒ‹ćƒƒć‚Æćƒ»ćƒ•ć‚§ćƒ­ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(159644, 123178, 'no_lang_code', 'name', 'Inter Action Corporation (Japan)'),
(159645, 123178, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ć‚æćƒ¼ć‚¢ć‚Æć‚·ćƒ§ćƒ³'),
(159646, 123179, 'es', 'name', 'Hospital Universitario General de Villalba'),
(159647, 123180, 'no_lang_code', 'name', 'Kyudenko Corporation (Japan)'),
(159648, 123180, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ä¹é›»å·„'),
(159649, 123181, 'no_lang_code', 'name', 'Glyence Co., Ltd. (Japan)'),
(159650, 123181, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚°ćƒ©ć‚¤ć‚Øćƒ³ć‚¹'),
(159651, 123182, 'en', 'name', 'Saiva Bhanu Kshatriya College'),
(159652, 123182, 'ta', 'name', 'சைவ பானு ą®šą®¤ąÆą®°ą®æą®Æ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(159653, 123183, 'en', 'name', 'MEASI Institute of Management'),
(159654, 123183, 'ta', 'name', 'மியாசி ą®‡ą®©ąÆą®øąÆą®Ÿą®æą®Ÿą®æą®ÆąÆ‚ą®ŸąÆ ą®†ą®ŖąÆ ą®®ąÆ‡ą®©ąÆ‡ą®œąÆą®®ąÆ†ą®©ąÆą®ŸąÆ'),
(159655, 123184, 'en', 'name', 'NIHR Cambridge Dementia Biomedical Research Unit'),
(159656, 123185, 'en', 'name', 'Canada Council for the Arts'),
(159657, 123185, 'fr', 'name', 'Conseil des Arts du Canada'),
(159658, 123186, 'es', 'name', 'Agencia Nacional de Promoción de la Investigación, el Desarrollo Tecnológico y la Innovación'),
(159659, 123187, 'en', 'name', 'Shyampur Siddheswari Mahavidyalaya'),
(159660, 123188, 'no_lang_code', 'name', 'SAXA, Inc. (Japan)'),
(159661, 123188, 'ja', 'name', 'ć‚µć‚Æć‚µę Ŗå¼ä¼šē¤¾'),
(159662, 123189, 'no_lang_code', 'name', 'Shikibo, Ltd. (Japan)'),
(159663, 123189, 'ja', 'name', 'ć‚·ć‚­ćƒœć‚¦ę Ŗå¼ä¼šē¤¾'),
(159664, 123190, 'no_lang_code', 'name', 'Sumtec, Inc. (Japan)'),
(159665, 123190, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚µćƒ ćƒ†ćƒƒć‚Æ'),
(159666, 123191, 'no_lang_code', 'name', 'ETO Manufacturing Co., Ltd. (Japan)'),
(159667, 123191, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±Ÿč—¤č£½ä½œę‰€'),
(159668, 123192, 'no_lang_code', 'name', 'Kanbo PRAS Corporation (Japan)'),
(159669, 123192, 'ja', 'name', 'ć‚«ćƒ³ćƒœć‚¦ćƒ—ćƒ©ć‚¹ę Ŗå¼ä¼šē¤¾'),
(159670, 123193, 'fr', 'name', 'UniversitƩ de Sherbrooke'),
(159671, 123194, 'no_lang_code', 'name', 'Ecodevice Corporation (Japan)'),
(159672, 123194, 'ja', 'name', 'ć‚Øć‚³ćƒ‡ćƒć‚¤ć‚¹ę Ŗå¼ä¼šē¤¾'),
(159673, 123195, 'en', 'name', 'Bangabasi Morning College'),
(159674, 123196, 'en', 'name', 'Metropolitan University College'),
(159675, 123197, 'no_lang_code', 'name', 'Nissen Chemitec Corporation (Japan)'),
(159676, 123197, 'ja', 'name', 'ę—„ę³‰åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(159677, 123198, 'en', 'name', 'Saint Claret College, Ziro'),
(159678, 123199, 'no_lang_code', 'name', 'Tayca Corporation (Japan)'),
(159679, 123199, 'ja', 'name', 'ćƒ†ć‚¤ć‚«ę Ŗå¼ä¼šē¤¾'),
(159680, 123200, 'no_lang_code', 'name', 'Yoshino Gypsum Co., Ltd. (Japan)'),
(159681, 123200, 'ja', 'name', 'å‰é‡ŽēŸ³č†ę Ŗå¼ä¼šē¤¾'),
(159682, 123201, 'en', 'name', 'Diakonova University College'),
(159683, 123201, 'no', 'name', 'HĆøyskolen Diakonova'),
(159684, 123202, 'en', 'name', 'Canadian Spine Society'),
(159685, 123203, 'en', 'name', 'Shivaji University'),
(159686, 123203, 'ta', 'name', 'சிவாஜி ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(159687, 123204, 'no_lang_code', 'name', 'Komyo Rikagaku Kogyo K.K. (Japan)'),
(159688, 123204, 'ja', 'name', 'å…‰ę˜Žē†åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159689, 123205, 'no_lang_code', 'name', 'Nishibe Keiki MFG. Co., Ltd. (Japan)'),
(159690, 123205, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ć‚·ćƒ™čØˆå™Øč£½é€ ę‰€'),
(159691, 123206, 'no_lang_code', 'name', 'Tekken Corporation (Japan)'),
(159692, 123206, 'ja', 'name', 'é‰„å»ŗå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(159693, 123207, 'no_lang_code', 'name', 'J-Witex Corporation (Japan)'),
(159694, 123207, 'ja', 'name', 'ジェイ-ćƒÆć‚¤ćƒ†ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(159695, 123208, 'no_lang_code', 'name', 'K and W Co., Ltd. (Japan)'),
(159696, 123208, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚±ćƒ¼ćƒ»ć‚¢ćƒ³ćƒ‰ćƒ»ćƒ€ćƒ–ćƒ«'),
(159697, 123209, 'no_lang_code', 'name', 'OHJI Rubber & Chemicals Co., Ltd. (Japan)'),
(159698, 123209, 'ja', 'name', 'ēŽ‹å­ć‚“ćƒ åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(159699, 123210, 'no_lang_code', 'name', 'Yokoi Vinegar Co. Ltd. (Japan)'),
(159700, 123210, 'ja', 'name', 'ęØŖäŗ•é†øé€ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159701, 123211, 'en', 'name', 'SSRS Institute Indonesia'),
(159702, 123212, 'no_lang_code', 'name', 'AZE, Ltd. (Japan)'),
(159703, 123212, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾AZE'),
(159704, 123213, 'no_lang_code', 'name', 'Co-OP Chemical Co., Ltd. (Japan)'),
(159705, 123213, 'ja', 'name', 'ć‚³ćƒ¼ćƒ—ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(159706, 123214, 'no_lang_code', 'name', 'Kawata MFG. Co., Ltd. (Japan)'),
(159707, 123214, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ćƒÆć‚æ'),
(159708, 123215, 'no_lang_code', 'name', 'Organo Corporation (Japan)'),
(159709, 123215, 'ja', 'name', 'ć‚Ŗćƒ«ć‚¬ćƒŽę Ŗå¼ä¼šē¤¾'),
(159710, 123216, 'no_lang_code', 'name', 'Miyata Industry Co., Ltd. (Japan)'),
(159711, 123216, 'ja', 'name', 'å®®ē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159712, 123217, 'en', 'name', 'University of California Office of the President'),
(159713, 123218, 'no_lang_code', 'name', 'Yoshizawa LIME Industry Co., Ltd. (Japan)'),
(159714, 123218, 'ja', 'name', 'å‰ę¾¤ēŸ³ē°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159715, 123219, 'en', 'name', 'Japan International Research Center for Agricultural Sciences'),
(159716, 123219, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½éš›č¾²ęž—ę°“ē”£ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(159717, 123220, 'en', 'name', 'Lagos State Government'),
(159718, 123221, 'no_lang_code', 'name', 'OSCILLATED RECALL TECHNOLOGY Inc. (Japan)'),
(159719, 123221, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾OSCILLATED RECALL TECHNOLOGY'),
(159720, 123222, 'no_lang_code', 'name', 'Harmonic Drive SYSTEMS Inc. (Japan)'),
(159721, 123222, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒ¼ćƒ¢ćƒ‹ćƒƒć‚Æćƒ»ćƒ‰ćƒ©ć‚¤ćƒ–ćƒ»ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(159722, 123223, 'no_lang_code', 'name', 'Infogenes Co., Ltd. (Japan)'),
(159723, 123223, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ćƒ•ć‚©ć‚øćƒ¼ćƒ³ć‚ŗ'),
(159724, 123224, 'no_lang_code', 'name', 'Create Medic Co., Ltd. (Japan)'),
(159725, 123224, 'ja', 'name', 'ć‚ÆćƒŖć‚Øćƒ¼ćƒˆćƒ”ćƒ‡ć‚£ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(159726, 123225, 'no_lang_code', 'name', 'Takano Co., Ltd. (Japan)'),
(159727, 123225, 'ja', 'name', 'ć‚æć‚«ćƒŽę Ŗå¼ä¼šē¤¾'),
(159728, 123226, 'no_lang_code', 'name', 'YMC Co., Ltd. (Japan)'),
(159729, 123226, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒÆć‚¤ć‚Øćƒ ć‚·ć‚£'),
(159730, 123227, 'no_lang_code', 'name', 'Teika Pharmaceutical Co., Ltd. (Japan)'),
(159731, 123227, 'ja', 'name', 'ćƒ†ć‚¤ć‚«č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(159732, 123228, 'no_lang_code', 'name', 'Kuroda Precision Industries, Ltd. (Japan)'),
(159733, 123228, 'ja', 'name', 'é»’ē”°ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(159734, 123229, 'no_lang_code', 'name', 'Fujiya Co., Ltd. (Japan)'),
(159735, 123229, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äøäŗŒå®¶'),
(159736, 123230, 'es', 'name', 'Banco Interamericano de Desarrollo'),
(159737, 123230, 'pt', 'name', 'Banco Interamericano de Desenvolvimento'),
(159738, 123230, 'fr', 'name', 'Banque interamƩricaine de dƩveloppement'),
(159739, 123230, 'en', 'name', 'Inter-American Development Bank'),
(159740, 123231, 'no_lang_code', 'name', 'HARU And Partners Inc. (Japan)'),
(159741, 123231, 'ja', 'name', 'ćƒćƒ«ć‚¢ćƒ³ćƒ‰ćƒ‘ćƒ¼ćƒˆćƒŠćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(159742, 123232, 'en', 'name', 'Moffitt Cancer Center'),
(159743, 123233, 'en', 'name', 'NIHR Barts Cardiovascular Biomedical Research Unit'),
(159744, 123234, 'no_lang_code', 'name', 'Kawakami Paint Mfg.Co., Ltd. (Japan)'),
(159745, 123234, 'ja', 'name', 'å·äøŠå”—ę–™ę Ŗå¼ä¼šē¤¾'),
(159746, 123235, 'no_lang_code', 'name', 'Raito Kogyo Co., Ltd. (Japan)'),
(159747, 123235, 'ja', 'name', 'ćƒ©ć‚¤ćƒˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159748, 123236, 'es', 'name', 'Universidad de California en Santa BƔrbara'),
(159749, 123236, 'en', 'name', 'University of California, Santa Barbara'),
(159750, 123236, 'fr', 'name', 'UniversitƩ de Californie Ơ Santa Barbara'),
(159751, 123237, 'en', 'name', 'NIHR Oxford Musculoskeletal Biomedical Research Centre'),
(159752, 123238, 'cy', 'name', 'Prifysgol Rhydychen'),
(159753, 123238, 'en', 'name', 'University of Oxford'),
(159754, 123239, 'no_lang_code', 'name', 'Kajiwara Inc. (Japan)'),
(159755, 123239, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ć‚øćƒÆćƒ©'),
(159756, 123240, 'no_lang_code', 'name', 'Kleentek Corporation (Japan)'),
(159757, 123240, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚ÆćƒŖćƒ¼ćƒ³ćƒ†ćƒƒć‚Æ'),
(159758, 123241, 'no_lang_code', 'name', 'Ingredion Japan (Japan)'),
(159759, 123241, 'ja', 'name', 'ć‚¤ćƒ³ć‚°ćƒ¬ćƒ‡ć‚£ć‚Ŗćƒ³ćƒ»ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(159760, 123242, 'no_lang_code', 'name', 'Tacmina Corporation (Japan)'),
(159761, 123242, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚ÆćƒŸćƒŠ'),
(159762, 123243, 'no_lang_code', 'name', 'Ohara Inc. (Japan)'),
(159763, 123243, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒćƒ©'),
(159764, 123244, 'no_lang_code', 'name', 'Technol Eight Co., Ltd. (Japan)'),
(159765, 123244, 'ja', 'name', 'ćƒ†ć‚ÆćƒŽć‚Øć‚¤ćƒˆę Ŗå¼ä¼šē¤¾'),
(159766, 123245, 'no_lang_code', 'name', 'ARAI Seisakusho Co., Ltd. (Japan)'),
(159767, 123245, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č’äŗ•č£½ä½œę‰€'),
(159768, 123246, 'en', 'name', 'Children’s Health Queensland Hospital and Health Service'),
(159769, 123247, 'en', 'name', 'Namangan State Institute of Foreign Languages'),
(159770, 123247, 'uz', 'name', 'Namangan davlat chet tillari instituti'),
(159771, 123248, 'id', 'name', 'STAI At-Tahdzib Rejoagung Ngoro Jombang'),
(159772, 123249, 'en', 'name', 'Islamic Institute of DDI Sidnreng Rappang'),
(159773, 123250, 'fr', 'name', 'UniversitƩ de la MƩditerranƩe Aix-Marseille II'),
(159774, 123251, 'no_lang_code', 'name', 'Taiken Co., Ltd. (Japan)'),
(159775, 123251, 'ja', 'name', 'å¤Ŗå¹³ę“‹å»ŗčØ­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159776, 123252, 'no_lang_code', 'name', 'Hakubaku Co., Ltd. (Japan)'),
(159777, 123252, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćÆćć°ć'),
(159778, 123253, 'no_lang_code', 'name', 'Comany Inc. (Japan)'),
(159779, 123253, 'ja', 'name', 'ć‚³ćƒžćƒ‹ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(159780, 123254, 'en', 'name', 'Dr. Momtaz Begum University of Science and Technology'),
(159781, 123255, 'no_lang_code', 'name', 'Polyplastics Co., Ltd. (Japan)'),
(159782, 123255, 'ja', 'name', 'ćƒćƒŖćƒ—ćƒ©ć‚¹ćƒćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(159783, 123256, 'no_lang_code', 'name', 'Claro, Inc. (Japan)'),
(159784, 123256, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒ©ćƒ¼ćƒ­'),
(159785, 123257, 'en', 'name', 'Kyoto University'),
(159786, 123257, 'ja', 'name', '京都大学'),
(159787, 123258, 'no_lang_code', 'name', 'NET ONE SYSTEMS Co., Ltd. (Japan)'),
(159788, 123258, 'ja', 'name', 'ćƒćƒƒćƒˆćƒÆćƒ³ć‚·ć‚¹ćƒ†ćƒ ć‚ŗę Ŗå¼ä¼šē¤¾'),
(159789, 123259, 'no_lang_code', 'name', 'B.E.MARUBISHI Co., Ltd. (Japan)'),
(159790, 123259, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äøøč±ćƒć‚¤ć‚Ŗć‚Øćƒ³ć‚ø'),
(159791, 123260, 'no_lang_code', 'name', 'Bodysonic Co., Ltd. (Japan)'),
(159792, 123260, 'ja', 'name', 'ć‚Ŗćƒ”ć‚¬ćƒ»ćƒ—ćƒ­ć‚øć‚§ć‚Æćƒˆę Ŗå¼ä¼šē¤¾'),
(159793, 123261, 'no_lang_code', 'name', 'Thermo Co., Ltd. (Japan)'),
(159794, 123261, 'ja', 'name', 'ć‚µćƒ¼ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(159795, 123262, 'en', 'name', 'SIVIO Institute'),
(159796, 123263, 'no_lang_code', 'name', 'AQUA Science Corporation (Japan)'),
(159797, 123263, 'ja', 'name', 'ć‚¢ć‚Æć‚¢ć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(159798, 123264, 'no_lang_code', 'name', 'ID Pharma Co., Ltd. (Japan)'),
(159799, 123264, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾IDćƒ•ć‚”ćƒ¼ćƒž'),
(159800, 123265, 'no_lang_code', 'name', 'Parker Netsushori Kogyo K. K. (Japan)'),
(159801, 123265, 'ja', 'name', 'ćƒ‘ćƒ¼ć‚«ćƒ¼ē†±å‡¦ē†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159802, 123266, 'no_lang_code', 'name', 'MA-MA-Macaroni Co., Ltd. (Japan)'),
(159803, 123266, 'ja', 'name', 'ćƒžćƒ»ćƒžćƒ¼ćƒžć‚«ćƒ­ćƒ‹ę Ŗå¼ä¼šē¤¾'),
(159804, 123267, 'en', 'name', 'Calaveras County'),
(159805, 123268, 'no_lang_code', 'name', 'C.UYEMURA Co., Ltd. (Japan)'),
(159806, 123268, 'ja', 'name', 'äøŠę‘å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159807, 123269, 'en', 'name', 'Clinical Hospital "D-r Trifun Panovski"'),
(159808, 123270, 'no_lang_code', 'name', 'Sawafuji Electric Co., Ltd. (Japan)'),
(159809, 123270, 'ja', 'name', 'ę¾¤č—¤é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(159810, 123271, 'no_lang_code', 'name', 'SCSK Corporation (Japan)'),
(159811, 123271, 'ja', 'name', 'SCSKę Ŗå¼ä¼šē¤¾'),
(159812, 123272, 'no_lang_code', 'name', 'Hokushin Co., Ltd. (Japan)'),
(159813, 123272, 'ja', 'name', 'ćƒ›ć‚Æć‚·ćƒ³ę Ŗå¼ä¼šē¤¾'),
(159814, 123273, 'no_lang_code', 'name', 'Neochemir Inc. (Japan)'),
(159815, 123273, 'ja', 'name', 'ćƒć‚Ŗć‚±ćƒŸć‚¢ę Ŗå¼ä¼šē¤¾'),
(159816, 123274, 'no_lang_code', 'name', 'Tsubaki Nakashima Co., Ltd. (Japan)'),
(159817, 123274, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ„ćƒć‚­ćƒ»ćƒŠć‚«ć‚·ćƒž'),
(159818, 123275, 'fr', 'name', 'Centre d''Etudes IbƩriques et IbƩro-AmƩricaines'),
(159819, 123276, 'no_lang_code', 'name', 'Eidia Co., Ltd. (Japan)'),
(159820, 123276, 'ja', 'name', 'ć‚Øćƒ¼ćƒ‡ć‚£ć‚¢ę Ŗå¼ä¼šē¤¾'),
(159821, 123277, 'no_lang_code', 'name', 'Initium, Inc. (Japan)'),
(159822, 123277, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ‹ć‚·ć‚¢ćƒ '),
(159823, 123278, 'no_lang_code', 'name', 'Enshu Ltd. (Japan)'),
(159824, 123278, 'ja', 'name', 'ć‚Øćƒ³ć‚·ćƒ„ć‚¦ę Ŗå¼ä¼šē¤¾'),
(159825, 123279, 'no_lang_code', 'name', 'Metalart Corporation (Japan)'),
(159826, 123279, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ”ć‚æćƒ«ć‚¢ćƒ¼ćƒˆ'),
(159827, 123280, 'fr', 'name', 'Institut interdisciplinaire d''innovation technologique'),
(159828, 123281, 'no_lang_code', 'name', 'Trafficsim Co., Ltd. (Japan)'),
(159829, 123281, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ©ćƒ•ć‚£ćƒƒć‚Æćƒ»ć‚·ćƒ '),
(159830, 123282, 'no_lang_code', 'name', 'Generis, Inc. (Japan)'),
(159831, 123282, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒŠćƒŖć‚¹'),
(159832, 123283, 'no_lang_code', 'name', 'Harada Manufacturing Co., Ltd. (Japan)'),
(159833, 123283, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åŽŸē”°č£½ä½œę‰€'),
(159834, 123284, 'no_lang_code', 'name', 'Sonocom Co., Ltd. (Japan)'),
(159835, 123284, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚½ćƒŽć‚³ćƒ '),
(159836, 123285, 'no_lang_code', 'name', 'Inc Engineering Co., Ltd. (Japan)'),
(159837, 123285, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ»ć‚ØćƒŒćƒ»ć‚·ćƒ¼ćƒ»ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(159838, 123286, 'no_lang_code', 'name', 'Pionics Co., Ltd. (Japan)'),
(159839, 123286, 'ja', 'name', 'ćƒ‘ć‚¤ć‚Ŗćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(159840, 123287, 'no_lang_code', 'name', 'EMD Corporation (Japan)'),
(159841, 123287, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ćƒ»ć‚Øćƒ ćƒ»ćƒ‡ć‚£ćƒ¼'),
(159842, 123288, 'no_lang_code', 'name', 'Narita International Airport Corporation (Japan)'),
(159843, 123288, 'ja', 'name', 'ęˆē”°å›½éš›ē©ŗęøÆę Ŗå¼ä¼šē¤¾'),
(159844, 123289, 'en', 'name', 'CSIR-Savanna Agricultural Research Institute'),
(159845, 123290, 'no_lang_code', 'name', 'Ichihara Seito Co., Ltd. (Japan)'),
(159846, 123290, 'ja', 'name', 'åø‚åŽŸč£½é™¶ę Ŗå¼ä¼šē¤¾'),
(159847, 123291, 'no_lang_code', 'name', 'Nichireki Co., Ltd. (Japan)'),
(159848, 123291, 'ja', 'name', 'ćƒ‹ćƒćƒ¬ć‚­ę Ŗå¼ä¼šē¤¾'),
(159849, 123292, 'en', 'name', 'Noorda College of Osteopathic Medicine'),
(159850, 123293, 'no_lang_code', 'name', 'Dimagic Co., Ltd. (Japan)'),
(159851, 123293, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ćƒžć‚øćƒƒć‚Æ'),
(159852, 123294, 'no_lang_code', 'name', 'Miyairi Valve MFG. Co., Ltd. (Japan)'),
(159853, 123294, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å®®å…„ćƒćƒ«ćƒ–č£½ä½œę‰€'),
(159854, 123295, 'no_lang_code', 'name', 'MAG X Co., Ltd. (Japan)'),
(159855, 123295, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžć‚°ć‚Øćƒƒć‚Æć‚¹'),
(159856, 123296, 'no_lang_code', 'name', 'Light Metal Extrusion Development Co., Ltd. (Japan)'),
(159857, 123296, 'ja', 'name', 'č»½é‡‘å±žęŠ¼å‡ŗé–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(159858, 123297, 'en', 'name', 'SJR College for Women'),
(159859, 123297, 'kn', 'name', 'ą²Žą²øą³ ą²œą³† ą²…ą²°ą³ ಮಹಿಳಾ ą²•ą²¾ą²²ą³‡ą²œą³'),
(159860, 123298, 'no_lang_code', 'name', 'IWAO JIKI Kogyo Co., Ltd. (Japan)'),
(159861, 123298, 'ja', 'name', 'å²©å°¾ē£å™Øå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159862, 123299, 'en', 'name', 'Barony College'),
(159863, 123300, 'en', 'name', 'University of Belgrade - Faculty of Geography'),
(159864, 123300, 'sr', 'name', 'Univerzitet u Beogradu - Geografski fakultet'),
(159865, 123301, 'no_lang_code', 'name', 'Yonex Co., Ltd. (Japan)'),
(159866, 123301, 'ja', 'name', 'ćƒØćƒćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(159867, 123302, 'no_lang_code', 'name', 'Sotoh Co., Ltd. (Japan)'),
(159868, 123302, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚½ćƒˆćƒ¼'),
(159869, 123303, 'uz', 'name', 'Sharq Universiteti'),
(159870, 123303, 'en', 'name', 'Sharq University'),
(159871, 123304, 'no_lang_code', 'name', 'Komaihaltec Inc. (Japan)'),
(159872, 123304, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é§’äŗ•ćƒćƒ«ćƒ†ćƒƒć‚Æ'),
(159873, 123305, 'no_lang_code', 'name', 'Kokuyo Co., Ltd. (Japan)'),
(159874, 123305, 'ja', 'name', 'ć‚³ć‚ÆćƒØę Ŗå¼ä¼šē¤¾'),
(159875, 123306, 'no_lang_code', 'name', 'Nabco Ltd. (Japan)'),
(159876, 123306, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŠćƒ–ć‚³'),
(159877, 123307, 'no_lang_code', 'name', 'Sanvic Inc. (Japan)'),
(159878, 123307, 'ja', 'name', 'ć‚µćƒ³ćƒ“ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(159879, 123308, 'no_lang_code', 'name', 'Astrazeneca K.K. (Japan)'),
(159880, 123308, 'ja', 'name', 'ć‚¢ć‚¹ćƒˆćƒ©ć‚¼ćƒć‚«ę Ŗå¼ä¼šē¤¾'),
(159881, 123309, 'en', 'name', 'Academy of Sciences Republic of Uzbekistan'),
(159882, 123309, 'uz', 'name', 'Oʻzbekiston Respublikasi Fanlar Akademiyasi'),
(159883, 123309, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Узбекистана'),
(159884, 123309, 'tg', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŠø илмҳои Ӯзбакистон'),
(159885, 123310, 'no_lang_code', 'name', 'Nanocarbon Research Institute Ltd. (Japan)'),
(159886, 123310, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŠćƒŽē‚­ē“ ē ”ē©¶ę‰€'),
(159887, 123311, 'no_lang_code', 'name', 'Fluidware Technologies Inc. (Japan)'),
(159888, 123311, 'ja', 'name', 'ćƒ•ćƒ«ć‚¤ćƒ‰ć‚¦ć‚§ć‚¢ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(159889, 123312, 'no_lang_code', 'name', 'C&A Corporation (Japan)'),
(159890, 123312, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾C&A'),
(159891, 123313, 'en', 'name', 'Architectural Research Laboratory'),
(159892, 123313, 'fr', 'name', 'Laboratoire de recherche en architecture'),
(159893, 123314, 'en', 'name', 'Fulbright Association'),
(159894, 123315, 'no_lang_code', 'name', 'Takadakiko Co., Ltd. (Japan)'),
(159895, 123315, 'ja', 'name', 'é«˜ē”°ę©Ÿå·„ę Ŗå¼ä¼šē¤¾'),
(159896, 123316, 'no_lang_code', 'name', 'IMD Inc. (Japan)'),
(159897, 123316, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ»ć‚Øćƒ ćƒ»ćƒ‡ć‚£'),
(159898, 123317, 'no_lang_code', 'name', 'Feedone Co., Ltd. (Japan)'),
(159899, 123317, 'ja', 'name', 'ćƒ•ć‚£ćƒ¼ćƒ‰ćƒ»ćƒÆćƒ³ę Ŗå¼ä¼šē¤¾'),
(159900, 123318, 'en', 'name', 'NIHR Royal Brompton Respiratory Biomedical Research Unit'),
(159901, 123319, 'no_lang_code', 'name', 'Litanial Bio Science Co., Ltd. (Japan)'),
(159902, 123319, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŖć‚æćƒ‹ć‚¢ćƒ«ćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(159903, 123320, 'en', 'name', 'Jorhat Kendriya Mahavidyalaya'),
(159904, 123320, 'as', 'name', 'ą¦Æą§‹ą§°ą¦¹ą¦¾ą¦Ÿ ą¦•ą§‡ą¦Øą§ą¦¦ą§ą§°ą§€ą¦Æą¦¼ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(159905, 123321, 'no_lang_code', 'name', 'Agriculture, Forestry and Fisheries Fund Corporation for Innovation, Value-Chain and Expansion Japan (Japan)'),
(159906, 123321, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č¾²ęž—ę¼ę„­ęˆé•·ē”£ę„­åŒ–ę”Æę“ę©Ÿę§‹'),
(159907, 123322, 'no_lang_code', 'name', 'Topura Co., Ltd. (Japan)'),
(159908, 123322, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ćƒ—ćƒ©'),
(159909, 123323, 'no_lang_code', 'name', 'Hachinohe Mining Co., Ltd. (Japan)'),
(159910, 123323, 'ja', 'name', 'å…«ęˆøé‰±å±±ę Ŗå¼ä¼šē¤¾'),
(159911, 123324, 'fr', 'name', 'IMT Nord Europe'),
(159912, 123325, 'no_lang_code', 'name', 'Tsphoton Corporation (Japan)'),
(159913, 123325, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚£ć‚Øć‚¹ćƒ•ć‚©ćƒˆćƒ³'),
(159914, 123326, 'en', 'name', 'Don Bosco Institute of Technology'),
(159915, 123326, 'mr', 'name', 'ą¤”ą„‰ą¤Ø ą¤¬ą„‹ą¤øą„ą¤•ą„‹ ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤Ÿą„‡ą¤•ą„ą¤Øą„‰ą¤²ą„‰ą¤œą„€'),
(159916, 123326, 'te', 'name', 'ą°”ą°¾ą°Øą± ą°¬ą°¾ą°øą±ą°•ą±‹ ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€, ą°®ą±ą°‚ą°¬ą±ˆ'),
(159917, 123327, 'no_lang_code', 'name', 'Densan Co., Ltd. (Japan)'),
(159918, 123327, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é›»ē”£'),
(159919, 123328, 'no_lang_code', 'name', 'FES Co., Ltd. (Japan)'),
(159920, 123328, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ•ćƒ»ć‚¤ćƒ¼ćƒ»ć‚Øć‚¹'),
(159921, 123329, 'de', 'name', 'Hochschule für Politik München'),
(159922, 123330, 'no_lang_code', 'name', 'Clealink Technology Co., Ltd. (Japan)'),
(159923, 123330, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ć‚¢ćƒŖćƒ³ć‚Æćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼'),
(159924, 123331, 'no_lang_code', 'name', 'Fukushima Steel Casting Co., Ltd. (Japan)'),
(159925, 123331, 'ja', 'name', 'ē¦å³¶č£½é‹¼ę Ŗå¼ä¼šē¤¾'),
(159926, 123332, 'no_lang_code', 'name', 'Biophenix Co., Ltd. (Japan)'),
(159927, 123332, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒć‚¤ć‚Ŗćƒ•ć‚§ćƒ‹ćƒƒć‚Æć‚¹'),
(159928, 123333, 'no_lang_code', 'name', 'Yoshikawa Construction Co., Ltd. (Japan)'),
(159929, 123333, 'ja', 'name', 'å‰å·å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(159930, 123334, 'en', 'name', 'Technological Educational Institute of Athens'),
(159931, 123334, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Αθήνας'),
(159932, 123335, 'pt', 'name', 'Universidade Evangelica de GoiƔs'),
(159933, 123336, 'no_lang_code', 'name', 'Phoenix Electric Co., Ltd. (Japan)'),
(159934, 123336, 'ja', 'name', 'ćƒ•ć‚§ćƒ‹ćƒƒć‚Æć‚¹é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(159935, 123337, 'no_lang_code', 'name', 'Iriso Electronics Co., Ltd. (Japan)'),
(159936, 123337, 'ja', 'name', 'ć‚¤ćƒŖć‚½é›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159937, 123338, 'no_lang_code', 'name', 'DYDO Drinco Inc. (Japan)'),
(159938, 123338, 'ja', 'name', 'ćƒ€ć‚¤ćƒ‰ćƒ¼ćƒ‰ćƒŖćƒ³ć‚³ę Ŗå¼ä¼šē¤¾'),
(159939, 123339, 'en', 'name', 'Projects Development Institute'),
(159940, 123340, 'es', 'name', 'Universidad de la Florida'),
(159941, 123340, 'en', 'name', 'University of Florida'),
(159942, 123340, 'fr', 'name', 'UniversitƩ de floride'),
(159943, 123341, 'no_lang_code', 'name', 'Onkyo Corporation (Japan)'),
(159944, 123341, 'ja', 'name', 'ć‚Ŗćƒ³ć‚­ćƒØćƒ¼ę Ŗå¼ä¼šē¤¾'),
(159945, 123342, 'no_lang_code', 'name', 'CAC Corporation (Japan)'),
(159946, 123342, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ćƒ¼ć‚Øćƒ¼ć‚·ćƒ¼'),
(159947, 123343, 'en', 'name', 'Quetzal Education and Research Center'),
(159948, 123344, 'fr', 'name', 'TƩlƩcom Lille'),
(159949, 123345, 'no_lang_code', 'name', 'Ichikoh Industries, Ltd. (Japan)'),
(159950, 123345, 'ja', 'name', 'åø‚å…‰å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159951, 123346, 'no_lang_code', 'name', 'Fujipress Co., Ltd. (Japan)'),
(159952, 123346, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åÆŒå£«ćƒ—ćƒ¬ć‚¹'),
(159953, 123347, 'en', 'name', 'Chernivtsi Institute of Trade and Economics of State University of Trade and Economics'),
(159954, 123347, 'uk', 'name', 'Š§ŠµŃ€Š½Ń–Š²ŠµŃ†ŃŒŠŗŠøŠ¹ Ń‚Š¾Ń€Š³Š¾Š²ŠµŠ»ŃŒŠ½Š¾-економічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Державного Ń‚Š¾Ń€Š³Š¾Š²ŠµŠ»ŃŒŠ½Š¾-економічного ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(159955, 123348, 'no_lang_code', 'name', 'Arcreate (Japan)'),
(159956, 123348, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ć‚ÆćƒŖć‚Øć‚¤ćƒˆ'),
(159957, 123349, 'no_lang_code', 'name', 'KMF Co., Ltd. (Japan)'),
(159958, 123349, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚±ćƒ¼ć‚Øćƒ ć‚Øćƒ•'),
(159959, 123350, 'fr', 'name', 'Ecole Normale SupƩrieure d''Oran'),
(159960, 123350, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ŲØŁˆŁ‡Ų±Ų§Ł†'),
(159961, 123351, 'no_lang_code', 'name', 'Hrein Energy Inc. (Japan)'),
(159962, 123351, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ¬ć‚¤ćƒ³ćƒ»ć‚ØćƒŠć‚øćƒ¼'),
(159963, 123352, 'no_lang_code', 'name', 'Nastoa Co., Ltd. (Japan)'),
(159964, 123352, 'ja', 'name', 'ćƒŠć‚¹ćƒˆćƒ¼ć‚¢ę Ŗå¼ä¼šē¤¾'),
(159965, 123353, 'no_lang_code', 'name', 'Hibiya Engineering, Ltd. (Japan)'),
(159966, 123353, 'ja', 'name', 'ę—„ęÆ”č°·ē·åˆčØ­å‚™ę Ŗå¼ä¼šē¤¾'),
(159967, 123354, 'no_lang_code', 'name', 'Nakabayashi Co., Ltd. (Japan)'),
(159968, 123354, 'ja', 'name', 'ćƒŠć‚«ćƒćƒ¤ć‚·ę Ŗå¼ä¼šē¤¾'),
(159969, 123355, 'no_lang_code', 'name', 'Sumiken Mitsui ROAD Co., Ltd. (Japan)'),
(159970, 123355, 'ja', 'name', 'äø‰äŗ•ä½å»ŗé“č·Æę Ŗå¼ä¼šē¤¾'),
(159971, 123356, 'no_lang_code', 'name', 'YM SYSTEMS Inc. (Japan)'),
(159972, 123356, 'ja', 'name', 'ćƒÆć‚¤ć‚Øćƒ ć‚·ć‚¹ćƒ†ćƒ ć‚ŗę Ŗå¼ä¼šē¤¾'),
(159973, 123357, 'no_lang_code', 'name', 'Fujirebio, Inc. (Japan)'),
(159974, 123357, 'ja', 'name', 'åÆŒå£«ćƒ¬ćƒ“ć‚Ŗę Ŗå¼ä¼šē¤¾'),
(159975, 123358, 'no_lang_code', 'name', 'Ashimori Industry Co., Ltd. (Japan)'),
(159976, 123358, 'ja', 'name', 'čŠ¦ę£®å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159977, 123359, 'no_lang_code', 'name', 'Boron Japan Co., Ltd. (Japan)'),
(159978, 123359, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—„ęœ¬ćƒœćƒ­ćƒ³'),
(159979, 123360, 'en', 'name', 'Crop Intellect'),
(159980, 123360, 'no_lang_code', 'name', 'Crop Intellect (United Kingdom)'),
(159981, 123361, 'no_lang_code', 'name', 'Kinugawa Rubber Industrial Co., Ltd. (Japan)'),
(159982, 123361, 'ja', 'name', 'é¬¼ę€’å·ć‚“ćƒ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(159983, 123362, 'no_lang_code', 'name', 'Unytite Corporation (Japan)'),
(159984, 123362, 'ja', 'name', 'ćƒ¦ćƒ‹ć‚æć‚¤ćƒˆę Ŗå¼ä¼šē¤¾'),
(159985, 123363, 'no_lang_code', 'name', 'CMC Technology Development Co., Ltd. (Japan)'),
(159986, 123363, 'ja', 'name', 'ć‚·ćƒ¼ć‚Øćƒ ć‚·ćƒ¼ęŠ€č”“é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(159987, 123364, 'no_lang_code', 'name', 'Morioh Co., Ltd. (Japan)'),
(159988, 123364, 'ja', 'name', 'ćƒ¢ćƒŖćƒ¼ć‚Ŗę Ŗå¼ä¼šē¤¾'),
(159989, 123365, 'en', 'name', 'Technical University of Lisbon'),
(159990, 123365, 'pt', 'name', 'Universidade TƩcnica de Lisboa'),
(159991, 123366, 'no_lang_code', 'name', 'Diamond Electric MFG. Co., Ltd. (Japan)'),
(159992, 123366, 'ja', 'name', 'ćƒ€ć‚¤ćƒ¤ćƒ¢ćƒ³ćƒ‰é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(159993, 123367, 'no_lang_code', 'name', 'Marusan-AI Co., Ltd. (Japan)'),
(159994, 123367, 'ja', 'name', 'ćƒžćƒ«ć‚µćƒ³ć‚¢ć‚¤ę Ŗå¼ä¼šē¤¾'),
(159995, 123368, 'en', 'name', 'Sorbonne University'),
(159996, 123368, 'fr', 'name', 'Sorbonne UniversitƩ'),
(159997, 123369, 'no_lang_code', 'name', 'Kurashiki Textile MFG. Co., Ltd. (Japan)'),
(159998, 123369, 'ja', 'name', 'å€‰ę•·ē¹Šē¶­åŠ å·„ę Ŗå¼ä¼šē¤¾'),
(159999, 123370, 'no_lang_code', 'name', 'Kirishima Shuzou Co., Ltd. (Japan)'),
(160000, 123370, 'ja', 'name', 'éœ§å³¶é…’é€ ę Ŗå¼ä¼šē¤¾'),
(160001, 123371, 'no_lang_code', 'name', 'Placo Co., Ltd. (Japan)'),
(160002, 123371, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ©ć‚³ćƒ¼'),
(160003, 123372, 'no_lang_code', 'name', 'Gantan Beauty Industry Co., Ltd. (Japan)'),
(160004, 123372, 'ja', 'name', 'å…ƒę—¦ćƒ“ćƒ„ćƒ¼ćƒ†ć‚£å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160005, 123373, 'no_lang_code', 'name', 'Fujibo Holdings, Inc. (Japan)'),
(160006, 123373, 'ja', 'name', 'åÆŒå£«ē“”ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾');
INSERT INTO `ror_settings` VALUES
(160007, 123374, 'no_lang_code', 'name', 'Daishinku Corp. (Japan)'),
(160008, 123374, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¤§ēœŸē©ŗ'),
(160009, 123375, 'no_lang_code', 'name', 'Pabco Co., Ltd. (Japan)'),
(160010, 123375, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‘ćƒ–ć‚³'),
(160011, 123376, 'no_lang_code', 'name', 'Calpis Co., Ltd. (Japan)'),
(160012, 123376, 'ja', 'name', 'ć‚«ćƒ«ćƒ”ć‚¹ę Ŗå¼ä¼šē¤¾'),
(160013, 123377, 'no_lang_code', 'name', 'Itoho OIL Chemicals Co., Ltd. (Japan)'),
(160014, 123377, 'ja', 'name', 'ä¼Šč—¤č£½ę²¹ę Ŗå¼ä¼šē¤¾'),
(160015, 123378, 'en', 'name', 'Forestry Research Institute'),
(160016, 123378, 'uz', 'name', 'O''RMON XO''JALIGI ILMIY-TADQIQOT INSTITUTI'),
(160017, 123379, 'no_lang_code', 'name', 'Nextware Ltd. (Japan)'),
(160018, 123379, 'ja', 'name', 'ćƒć‚Æć‚¹ćƒˆć‚¦ć‚§ć‚¢ę Ŗå¼ä¼šē¤¾'),
(160019, 123380, 'no_lang_code', 'name', 'Nishina Industrial Co., Ltd. (Japan)'),
(160020, 123380, 'ja', 'name', 'ä»ē§‘å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160021, 123381, 'no_lang_code', 'name', 'GENO DIVE Pharma Inc. (Japan)'),
(160022, 123381, 'ja', 'name', 'ć‚øć‚§ćƒŽćƒ€ć‚¤ćƒ–ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(160023, 123382, 'no_lang_code', 'name', 'IDEX Health & Science KK (Japan)'),
(160024, 123382, 'ja', 'name', 'IDEX Health & Scienceę Ŗå¼ä¼šē¤¾'),
(160025, 123383, 'no_lang_code', 'name', 'Werfen (Spain)'),
(160026, 123384, 'no_lang_code', 'name', 'Nepon Inc. (Japan)'),
(160027, 123384, 'ja', 'name', 'ćƒćƒćƒ³ę Ŗå¼ä¼šē¤¾'),
(160028, 123385, 'en', 'name', 'Children''s Health Queensland Hospital and Health Service'),
(160029, 123386, 'no_lang_code', 'name', 'Sunus Co., Ltd. (Japan)'),
(160030, 123386, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒŠć‚¹'),
(160031, 123387, 'en', 'name', 'Beijing Institute for Stem Cell and Regenerative Medicine'),
(160032, 123388, 'en', 'name', 'Beopolis University'),
(160033, 123388, 'sr', 'name', 'Univerzitet Beopolis'),
(160034, 123389, 'en', 'name', 'Institute of Computational Biology'),
(160035, 123390, 'fr', 'name', 'Institut National des Sciences AppliquƩes de Lyon'),
(160036, 123391, 'no_lang_code', 'name', 'Mebiol Inc. (Japan)'),
(160037, 123391, 'ja', 'name', 'ćƒ”ćƒ“ć‚Ŗćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(160038, 123392, 'no_lang_code', 'name', 'Electro LAB Company (Japan)'),
(160039, 123392, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ©ćƒœ'),
(160040, 123393, 'es', 'name', 'Ministerio PĆŗblico de Paraguay'),
(160041, 123394, 'fr', 'name', 'Laboratoire des Sciences Sociales du Politique'),
(160042, 123395, 'no_lang_code', 'name', 'TMS Co., Ltd. (Japan)'),
(160043, 123395, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚£ćƒ ć‚¹'),
(160044, 123396, 'no_lang_code', 'name', 'Fasmac Co., Ltd. (Japan)'),
(160045, 123396, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚”ć‚¹ćƒžćƒƒć‚Æ'),
(160046, 123397, 'en', 'name', 'Saint Jude College'),
(160047, 123398, 'en', 'name', 'Takii & Co., Ltd.'),
(160048, 123398, 'no_lang_code', 'name', 'Takii & Co., Ltd. (Japan)'),
(160049, 123398, 'ja', 'name', 'ć‚æć‚­ć‚¤ēØ®č‹—ę Ŗå¼ä¼šē¤¾'),
(160050, 123399, 'no_lang_code', 'name', 'Monsanto Japan Ltd. (Japan)'),
(160051, 123399, 'ja', 'name', 'ę—„ęœ¬ćƒ¢ćƒ³ć‚µćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(160052, 123400, 'no_lang_code', 'name', 'Janis Ltd. (Japan)'),
(160053, 123400, 'ja', 'name', 'ć‚øćƒ£ćƒ‹ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160054, 123401, 'no_lang_code', 'name', 'Polatechno Co., Ltd. (Japan)'),
(160055, 123401, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒ©ćƒ†ć‚ÆćƒŽ'),
(160056, 123402, 'en', 'name', 'Bharati Vidyapeeth College of Pharmacy, Kolhapur'),
(160057, 123403, 'no_lang_code', 'name', 'Eniwa Research Business PARK Co., Ltd. (Japan)'),
(160058, 123403, 'ja', 'name', 'ęµåŗ­ćƒŖć‚µćƒ¼ćƒćƒ»ćƒ“ć‚øćƒć‚¹ćƒ‘ćƒ¼ć‚Æę Ŗå¼ä¼šē¤¾'),
(160059, 123404, 'en', 'name', 'Hubert Curien laboratory'),
(160060, 123404, 'fr', 'name', 'Laboratoire Hubert Curien'),
(160061, 123405, 'no_lang_code', 'name', 'MAKI Manufacturing Co., Ltd. (Japan)'),
(160062, 123405, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžć‚­č£½ä½œę‰€'),
(160063, 123406, 'no_lang_code', 'name', 'KCM Corporation. (Japan)'),
(160064, 123406, 'ja', 'name', 'å…±ē«‹ćƒžćƒ†ćƒŖć‚¢ćƒ«ę Ŗå¼ä¼šē¤¾'),
(160065, 123407, 'no_lang_code', 'name', 'Foster Electric Co., Ltd. (Japan)'),
(160066, 123407, 'ja', 'name', 'ćƒ•ć‚©ć‚¹ć‚æćƒ¼é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(160067, 123408, 'no_lang_code', 'name', 'Grass Valley K.K. (Japan)'),
(160068, 123408, 'ja', 'name', 'ć‚°ćƒ©ć‚¹ćƒćƒ¬ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(160069, 123409, 'no_lang_code', 'name', 'Nihonsakari Co., Ltd. (Japan)'),
(160070, 123409, 'ja', 'name', 'ę—„ęœ¬ē››ę Ŗå¼ä¼šē¤¾'),
(160071, 123410, 'en', 'name', 'NIHR Collaboration for Leadership in Applied Health Research and Care South London'),
(160072, 123411, 'no_lang_code', 'name', 'Akechi Ceramics Co., Ltd. (Japan)'),
(160073, 123411, 'ja', 'name', 'ę˜Žę™ŗć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(160074, 123412, 'no_lang_code', 'name', 'Arcadia, Inc. (Japan)'),
(160075, 123412, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ć‚«ćƒ‡ć‚£ć‚¢'),
(160076, 123413, 'no_lang_code', 'name', 'Wakodo Co., Ltd. (Japan)'),
(160077, 123413, 'ja', 'name', 'å’Œå…‰å ‚ę Ŗå¼ä¼šē¤¾'),
(160078, 123414, 'no_lang_code', 'name', 'NRL Pharma, Inc. (Japan)'),
(160079, 123414, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾NRLćƒ•ć‚”ćƒ¼ćƒž'),
(160080, 123415, 'no_lang_code', 'name', 'Via Mechanics, Ltd. (Japan)'),
(160081, 123415, 'ja', 'name', 'ćƒ“ć‚¢ćƒ”ć‚«ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(160082, 123416, 'no_lang_code', 'name', 'Wadoh Co., Ltd. (Japan)'),
(160083, 123416, 'ja', 'name', 'å’ŒåŒē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(160084, 123417, 'en', 'name', 'Hillside College of Engineering'),
(160085, 123418, 'no_lang_code', 'name', 'Tachikawa Corporation (Japan)'),
(160086, 123418, 'ja', 'name', 'ē«‹å·ćƒ–ćƒ©ć‚¤ćƒ³ćƒ‰å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160087, 123419, 'no_lang_code', 'name', 'Kuwayama Corporation (Japan)'),
(160088, 123419, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę”‘å±±'),
(160089, 123420, 'no_lang_code', 'name', 'KCON Co., Ltd. (Japan)'),
(160090, 123420, 'ja', 'name', 'ć‚±ć‚¤ć‚³ćƒ³ę Ŗå¼ä¼šē¤¾'),
(160091, 123421, 'no_lang_code', 'name', 'Tipton Corp. (Japan)'),
(160092, 123421, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒƒćƒ—ćƒˆćƒ³'),
(160093, 123422, 'no_lang_code', 'name', 'Narumi China Corp. (Japan)'),
(160094, 123422, 'ja', 'name', 'é³“ęµ·č£½é™¶ę Ŗå¼ä¼šē¤¾'),
(160095, 123423, 'no_lang_code', 'name', 'Lobtex Co., Ltd. (Japan)'),
(160096, 123423, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ­ćƒ–ćƒ†ćƒƒć‚Æć‚¹'),
(160097, 123424, 'en', 'name', 'Laboratory of Synthesis and Physico-Chemistry of Molecules of Biological Interest'),
(160098, 123424, 'fr', 'name', 'Synthèse et Physicochimie de Molécules d''Intérêt Biologique'),
(160099, 123425, 'no_lang_code', 'name', 'S.E. Chemical Co., Ltd. (Japan)'),
(160100, 123425, 'ja', 'name', 'ć‚Øć‚¹ćƒ»ć‚¤ćƒ¼ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(160101, 123426, 'no_lang_code', 'name', 'Ariake Japan Co., Ltd. (Japan)'),
(160102, 123426, 'ja', 'name', 'ć‚¢ćƒŖć‚¢ć‚±ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(160103, 123427, 'no_lang_code', 'name', 'ANBAS Corp. (Japan)'),
(160104, 123427, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ANBAS'),
(160105, 123428, 'no_lang_code', 'name', 'Messenger Scape Co., Ltd. (Japan)'),
(160106, 123428, 'ja', 'name', 'ćƒ”ćƒƒć‚»ćƒ³ć‚øćƒ£ćƒ¼ćƒ»ć‚¹ć‚±ćƒ¼ćƒ—ę Ŗå¼ä¼šē¤¾'),
(160107, 123429, 'no_lang_code', 'name', 'ART Metal MFG. Co., Ltd. (Japan)'),
(160108, 123429, 'ja', 'name', 'ć‚¢ćƒ¼ćƒˆé‡‘å±žå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160109, 123430, 'no_lang_code', 'name', 'Moritex Corporation (Japan)'),
(160110, 123430, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¢ćƒŖćƒ†ćƒƒć‚Æć‚¹'),
(160111, 123431, 'no_lang_code', 'name', 'Euglena Co., Ltd. (Japan)'),
(160112, 123431, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ¼ć‚°ćƒ¬ćƒŠ'),
(160113, 123432, 'no_lang_code', 'name', 'Threebond Co., Ltd. (Japan)'),
(160114, 123432, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ćƒŖćƒ¼ćƒœćƒ³ćƒ‰'),
(160115, 123433, 'no_lang_code', 'name', 'Univance Corporation (Japan)'),
(160116, 123433, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ‹ćƒćƒ³ć‚¹'),
(160117, 123434, 'no_lang_code', 'name', 'Alfresa Pharma Corporation (Japan)'),
(160118, 123434, 'ja', 'name', 'ć‚¢ćƒ«ćƒ•ćƒ¬ćƒƒć‚µćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(160119, 123435, 'no_lang_code', 'name', 'Amiyon Co., Ltd. (Japan)'),
(160120, 123435, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒŸćƒØćƒ³'),
(160121, 123436, 'en', 'name', 'West Kazakhstan University of Innovation and Technology'),
(160122, 123436, 'kk', 'name', 'Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ ŠøŠ½Š½Š¾Š²Š°Ń†ŠøŃŠ»Ń‹Ņ› және Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃŠ»Ń‹Ņ› цниверситеті'),
(160123, 123437, 'fr', 'name', 'Institut National de la Recherche Scientifique'),
(160124, 123437, 'en', 'name', 'National Institute of Scientific Research'),
(160125, 123438, 'no_lang_code', 'name', 'Coaken Techno Co., Ltd. (Japan)'),
(160126, 123438, 'ja', 'name', 'ć‚³ćƒ¼ć‚±ćƒ³ćƒ»ćƒ†ć‚ÆćƒŽę Ŗå¼ä¼šē¤¾'),
(160127, 123439, 'no_lang_code', 'name', 'KCS Co., Ltd. (Japan)'),
(160128, 123439, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚±ćƒ¼ćƒ»ć‚·ćƒ¼ćƒ»ć‚Øć‚¹'),
(160129, 123440, 'no_lang_code', 'name', 'Kurimoto, Ltd. (Japan)'),
(160130, 123440, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę —ęœ¬éµå·„ę‰€'),
(160131, 123441, 'no_lang_code', 'name', 'KEY Coffee Inc. (Japan)'),
(160132, 123441, 'ja', 'name', 'ć‚­ćƒ¼ć‚³ćƒ¼ćƒ’ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(160133, 123442, 'no_lang_code', 'name', 'Yokkaichi Chemical Co., Ltd. (Japan)'),
(160134, 123442, 'ja', 'name', 'å››ę—„åø‚åˆęˆę Ŗå¼ä¼šē¤¾'),
(160135, 123443, 'en', 'name', 'Clinical Data Interchange Standards Consortium'),
(160136, 123444, 'en', 'name', 'Rizhao Marine Engineering Vocational College'),
(160137, 123444, 'zh', 'name', 'ę—„ē…§čˆŖęµ·å·„ēØ‹čŒäøšå­¦é™¢'),
(160138, 123445, 'no_lang_code', 'name', 'Kurita Water Industries, Ltd. (Japan)'),
(160139, 123445, 'ja', 'name', 'ę —ē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160140, 123446, 'no_lang_code', 'name', 'Togawa Rubber Co., Ltd. (Japan)'),
(160141, 123446, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åå·ć‚“ćƒ '),
(160142, 123447, 'en', 'name', 'NIHR Maudsley Biomedical Research Centre'),
(160143, 123448, 'en', 'name', 'Bishop Grosseteste University'),
(160144, 123449, 'no_lang_code', 'name', 'Ubigraph Inc. (Japan)'),
(160145, 123449, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒ¦ćƒ“ć‚°ćƒ©ćƒ•'),
(160146, 123450, 'no_lang_code', 'name', 'Arabian OIL Company, Ltd. (Japan)'),
(160147, 123450, 'ja', 'name', 'ć‚¢ćƒ©ćƒ“ć‚¢ēŸ³ę²¹ę Ŗå¼ä¼šē¤¾'),
(160148, 123451, 'no_lang_code', 'name', 'Sasakura Engineering Co., Ltd. (Japan)'),
(160149, 123451, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µć‚µć‚Æćƒ©'),
(160150, 123452, 'no_lang_code', 'name', 'Kaisei Engineer Co., Ltd. (Japan)'),
(160151, 123452, 'ja', 'name', 'å•ęˆć‚Øćƒ³ć‚øćƒ‹ć‚¢ę Ŗå¼ä¼šē¤¾'),
(160152, 123453, 'en', 'name', 'Institute of Food and Agricultural Sciences'),
(160153, 123454, 'no_lang_code', 'name', 'Miyoshi OIL FAT Co., Ltd. (Japan)'),
(160154, 123454, 'ja', 'name', 'ćƒŸćƒØć‚·ę²¹č„‚ę Ŗå¼ä¼šē¤¾'),
(160155, 123455, 'no_lang_code', 'name', 'Mitsumura Printing Co., Ltd. (Japan)'),
(160156, 123455, 'ja', 'name', 'å…‰ę‘å°åˆ·ę Ŗå¼ä¼šē¤¾'),
(160157, 123456, 'no_lang_code', 'name', 'Galpharma Co., Ltd. (Japan)'),
(160158, 123456, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¬ćƒ«ćƒ•ć‚”ćƒ¼ćƒž'),
(160159, 123457, 'no_lang_code', 'name', 'KOHA Co., Ltd. (Japan)'),
(160160, 123457, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…‰ę³¢'),
(160161, 123458, 'no_lang_code', 'name', 'MURO Corporation (Japan)'),
(160162, 123458, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ ćƒ­ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(160163, 123459, 'en', 'name', 'John Templeton Foundation'),
(160164, 123460, 'no_lang_code', 'name', 'Tepco SYSTEMS Corporation (Japan)'),
(160165, 123460, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ćƒ—ć‚³ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(160166, 123461, 'no_lang_code', 'name', 'Marin FOOD Co., Ltd. (Japan)'),
(160167, 123461, 'ja', 'name', 'ćƒžćƒŖćƒ³ćƒ•ćƒ¼ćƒ‰ę Ŗå¼ä¼šē¤¾'),
(160168, 123462, 'no_lang_code', 'name', 'De Nora Permelec Ltd (Japan)'),
(160169, 123462, 'ja', 'name', 'ćƒ‡ćƒŽćƒ©ćƒ»ćƒšćƒ«ćƒ”ćƒ¬ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(160170, 123463, 'no_lang_code', 'name', 'N. E. Chemcat Corp. (Japan)'),
(160171, 123463, 'ja', 'name', 'ć‚ØćƒŒćƒ»ć‚¤ćƒ¼ć‚±ćƒ ć‚­ćƒ£ćƒƒćƒˆę Ŗå¼ä¼šē¤¾'),
(160172, 123464, 'en', 'name', 'Central Asian University of Environmental and Climate Change Studies (Green University)'),
(160173, 123464, 'uz', 'name', 'Markaziy Osiyo atrof-muhit va iqlim oā€˜zgarishini oā€˜rganish universiteti'),
(160174, 123464, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Азиатский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃ Š¾ŠŗŃ€ŃƒŠ¶Š°ŃŽŃ‰ŠµŠ¹ среГы Šø ŠøŠ·Š¼ŠµŠ½ŠµŠ½ŠøŃ климата'),
(160175, 123465, 'no_lang_code', 'name', 'TIS Inc. (Japan)'),
(160176, 123465, 'ja', 'name', 'TISę Ŗå¼ä¼šē¤¾'),
(160177, 123466, 'no_lang_code', 'name', 'Ikeda Construction (Japan)'),
(160178, 123466, 'ja', 'name', 'ę± ē”°å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(160179, 123467, 'no_lang_code', 'name', 'Tokushima Science Center (Japan)'),
(160180, 123467, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¾³å³¶å„åŗ·ē§‘å­¦ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(160181, 123468, 'fr', 'name', 'DƩlƩgation Centre Limousin Poitou-Charentes'),
(160182, 123469, 'no_lang_code', 'name', 'ENDO Lighting Corporation (Japan)'),
(160183, 123469, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é č—¤ē…§ę˜Ž'),
(160184, 123470, 'no_lang_code', 'name', 'Netplus Co., Ltd. (Japan)'),
(160185, 123470, 'ja', 'name', 'ćƒćƒ—ćƒ©ć‚¹ę Ŗå¼ä¼šē¤¾'),
(160186, 123471, 'en', 'name', 'East West Institute of Technology'),
(160187, 123471, 'kn', 'name', 'ą²ˆą²øą³ą²Ÿą³ ą²µą³†ą²øą³ą²Ÿą³ ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²«ą³ ą²Ÿą³†ą²•ą³ą²Øą²¾ą²²ą²œą²æ'),
(160188, 123472, 'en', 'name', 'Alfred P. Sloan Foundation'),
(160189, 123473, 'no_lang_code', 'name', 'Arthur D. Little, Inc. (Japan)'),
(160190, 123473, 'ja', 'name', 'ć‚¢ćƒ¼ć‚µćƒ¼ćƒ»ćƒ‡ć‚£ćƒ»ćƒŖćƒˆćƒ«ćƒ»ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(160191, 123474, 'no_lang_code', 'name', 'Elastomix Co., Ltd. (Japan)'),
(160192, 123474, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ©ć‚¹ćƒˆćƒŸćƒƒć‚Æć‚¹'),
(160193, 123475, 'no_lang_code', 'name', 'Owari Precise Products Co., Ltd. (Japan)'),
(160194, 123475, 'ja', 'name', 'å°¾å¼µē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(160195, 123476, 'no_lang_code', 'name', 'OPT Corporation (Japan)'),
(160196, 123476, 'ja', 'name', 'ć‚Ŗćƒ—ćƒˆę Ŗå¼ä¼šē¤¾'),
(160197, 123477, 'en', 'name', 'Department of Biotechnology'),
(160198, 123478, 'no_lang_code', 'name', 'Arnis Sound Tecnologies Co., Ltd. (Japan)'),
(160199, 123478, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ćƒ‹ć‚¹ćƒ»ć‚µć‚¦ćƒ³ćƒ‰ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(160200, 123479, 'en', 'name', 'NIHR Queen Square Dementia Biomedical Research Unit'),
(160201, 123480, 'en', 'name', 'Biomolecule and Plant Biotechnology'),
(160202, 123480, 'fr', 'name', 'BiomolƩcules et Biotechnologies VƩgƩtales'),
(160203, 123481, 'no_lang_code', 'name', 'Suzukura Industry Inc. (Japan)'),
(160204, 123481, 'ja', 'name', 'éˆ“å€‰ć‚¤ćƒ³ćƒ€ć‚¹ćƒˆćƒŖćƒ¼ę Ŗå¼ä¼šē¤¾'),
(160205, 123482, 'en', 'name', 'Academician Stachis Scientific Research Institute for the Study of Crime Problems, National Academy of Legal Sciences of Ukraine'),
(160206, 123482, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²ŠøŠ²Ń‡ŠµŠ½Š½Ń проблем злочинності імені акаГеміка Š’.Š’. Š”Ń‚Š°ŃˆŠøŃŠ° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії правових наук України'),
(160207, 123483, 'en', 'name', 'ICON College of Technology and Management'),
(160208, 123484, 'no_lang_code', 'name', 'TOKO, Inc. (Japan)'),
(160209, 123484, 'ja', 'name', 'ę±å…‰ę Ŗå¼ä¼šē¤¾'),
(160210, 123485, 'no_lang_code', 'name', 'Tombow.Co., Ltd. (Japan)'),
(160211, 123485, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ³ćƒœ'),
(160212, 123486, 'no_lang_code', 'name', 'Tohkaithermo Co., Ltd. (Japan)'),
(160213, 123486, 'ja', 'name', 'ę±ęµ·ć‚µćƒ¼ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(160214, 123487, 'no_lang_code', 'name', 'OHI Seisakusho Co., Ltd. (Japan)'),
(160215, 123487, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¤§äŗ•č£½ä½œę‰€'),
(160216, 123488, 'en', 'name', 'NIHR Bristol Biomedical Research Centre'),
(160217, 123489, 'no_lang_code', 'name', 'T. Hasegawa Co., Ltd. (Japan)'),
(160218, 123489, 'ja', 'name', 'é•·č°·å·é¦™ę–™ę Ŗå¼ä¼šē¤¾'),
(160219, 123490, 'en', 'name', 'Japan Science and Technology Agency'),
(160220, 123490, 'ja', 'name', 'ē§‘å­¦ęŠ€č”“ęŒÆčˆˆę©Ÿę§‹'),
(160221, 123491, 'en', 'name', 'Laborers'' International Union of North America'),
(160222, 123492, 'no_lang_code', 'name', 'Sanso Electric Co., Ltd. (Japan)'),
(160223, 123492, 'ja', 'name', 'äø‰ē›øé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(160224, 123493, 'no_lang_code', 'name', 'Adtec Engineering. Co., Ltd. (Japan)'),
(160225, 123493, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒ†ćƒƒć‚Æć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(160226, 123494, 'no_lang_code', 'name', 'Dystar Japan Ltd. (Japan)'),
(160227, 123494, 'ja', 'name', 'ćƒ€ć‚¤ć‚¹ć‚æćƒ¼ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(160228, 123495, 'no_lang_code', 'name', 'Peccell Technologies, Inc. (Japan)'),
(160229, 123495, 'ja', 'name', 'ćƒšć‚Æć‚»ćƒ«ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(160230, 123496, 'en', 'name', 'Disaster Prevention Research Institute, Kyoto University'),
(160231, 123496, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦é˜²ē½ē ”ē©¶ę‰€'),
(160232, 123497, 'no_lang_code', 'name', 'TAKI Chemical Co., Ltd. (Japan)'),
(160233, 123497, 'ja', 'name', 'å¤šęœØåŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(160234, 123498, 'en', 'name', 'Council of Scientific and Industrial Research'),
(160235, 123498, 'hi', 'name', 'ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤ą¤µą¤‚ ą¤”ą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø परिषद'),
(160236, 123498, 'ta', 'name', 'ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ą®• ą®†ą®ÆąÆą®µąÆ ą®®ą®©ąÆą®±ą®®ąÆ'),
(160237, 123498, 'te', 'name', 'ą°¶ą°¾ą°øą±ą°¤ą±ą°°ą±€ą°Æ మరియు ą°Ŗą°¾ą°°ą°æą°¶ą±ą°°ą°¾ą°®ą°æą°• పరిశోధనా ą°Ŗą°°ą°æą°·ą°¤ą±ą°¤ą±'),
(160238, 123498, 'ml', 'name', 'ą“•ąµ—ąµŗą“øą“æąµ½ ą““ą“«ąµ ą“øą“Æą“Øąµą“±ą“æą“«ą“æą“•ąµ ą“†ąµ»ą“”ąµ ą“‡ąµ»ą“”ą“øąµą“Ÿąµą“°ą“æą“Æąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ'),
(160239, 123499, 'no_lang_code', 'name', 'Ryoko LIME Industry Co., Ltd. (Japan)'),
(160240, 123499, 'ja', 'name', 'č±å…‰ēŸ³ē°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160241, 123500, 'en', 'name', 'NIHR School for Public Health Research'),
(160242, 123501, 'fr', 'name', 'Ɖcole nationale supĆ©rieure des Mines de Nantes'),
(160243, 123502, 'no_lang_code', 'name', 'Graphtec Corporation (Japan)'),
(160244, 123502, 'ja', 'name', 'ć‚°ćƒ©ćƒ•ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(160245, 123503, 'no_lang_code', 'name', 'Ahresty Corporation (Japan)'),
(160246, 123503, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ćƒ¬ć‚¹ćƒ†ć‚£'),
(160247, 123504, 'no_lang_code', 'name', 'Mutoh Industries Ltd. (Japan)'),
(160248, 123504, 'ja', 'name', 'ę­¦č—¤å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160249, 123505, 'de', 'name', 'Institut für Museumsforschung'),
(160250, 123506, 'de', 'name', 'Deutsche Forschungsgemeinschaft'),
(160251, 123506, 'en', 'name', 'German Research Foundation'),
(160252, 123507, 'no_lang_code', 'name', 'DEPT Corporation (Japan)'),
(160253, 123507, 'ja', 'name', 'ćƒ‡ćƒ—ćƒˆę Ŗå¼ä¼šē¤¾'),
(160254, 123508, 'no_lang_code', 'name', 'Nichirei Corporation (Japan)'),
(160255, 123508, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒćƒ¬ć‚¤'),
(160256, 123509, 'en', 'name', 'CY Cergy Paris University'),
(160257, 123509, 'fr', 'name', 'CY Cergy Paris UniversitƩ'),
(160258, 123510, 'en', 'name', 'Toulouse School of Economics'),
(160259, 123511, 'no_lang_code', 'name', 'Confectionary Kotobuki Co., Ltd. (Japan)'),
(160260, 123511, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚³ćƒ³ćƒ•ć‚§ć‚Æć‚·ćƒ§ćƒŠćƒŖćƒ¼ć‚³ćƒˆćƒ–ć‚­'),
(160261, 123512, 'no_lang_code', 'name', 'Jatco Ltd. (Japan)'),
(160262, 123512, 'ja', 'name', 'ć‚øćƒ¤ćƒˆć‚³ę Ŗå¼ä¼šē¤¾'),
(160263, 123513, 'no_lang_code', 'name', 'Nishishiba Electric Co., Ltd. (Japan)'),
(160264, 123513, 'ja', 'name', 'č„æčŠé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(160265, 123514, 'no_lang_code', 'name', 'Nisen X Co., Ltd. (Japan)'),
(160266, 123514, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ć‚»ćƒ³ć‚Øćƒƒć‚Æć‚¹'),
(160267, 123515, 'no_lang_code', 'name', 'Gastar Co., Ltd. (Japan)'),
(160268, 123515, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¬ć‚¹ć‚æćƒ¼'),
(160269, 123516, 'no_lang_code', 'name', 'Tianma Japan, Ltd (Japan)'),
(160270, 123516, 'ja', 'name', 'Tianma Japanę Ŗå¼ä¼šē¤¾'),
(160271, 123517, 'no_lang_code', 'name', 'Hokukon Co., Ltd. (Japan)'),
(160272, 123517, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ›ć‚Æć‚³ćƒ³'),
(160273, 123518, 'no_lang_code', 'name', 'MOLDINO Tool Engineering,ltd. (Japan)'),
(160274, 123518, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾MOLDINO'),
(160275, 123519, 'no_lang_code', 'name', 'Closure Systems International Japan (Japan)'),
(160276, 123519, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾CSIć‚øćƒ£ćƒ‘ćƒ³'),
(160277, 123520, 'en', 'name', 'Indian Institute of Information Technology Kota'),
(160278, 123520, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‹ą¤Ÿą¤¾'),
(160279, 123521, 'fr', 'name', 'Laboratoire Photonique, NumƩrique et Nanosciences'),
(160280, 123522, 'no_lang_code', 'name', 'Chromosome Science Labo Inc. (Japan)'),
(160281, 123522, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚Æćƒ­ćƒ¢ć‚½ćƒ¼ćƒ ć‚µć‚¤ć‚Øćƒ³ć‚¹ćƒ©ćƒœ'),
(160282, 123523, 'fr', 'name', 'Université nationale du Viêt-nam de Hanoï'),
(160283, 123523, 'en', 'name', 'Vietnam National University, Hanoi'),
(160284, 123523, 'vi', 'name', 'ĐẔi hį»c Quốc gia HĆ  Nį»™i'),
(160285, 123523, 'zh', 'name', '河内国家大学'),
(160286, 123524, 'no_lang_code', 'name', 'Proteo Genesys, Inc. (Japan)'),
(160287, 123524, 'ja', 'name', 'ćƒ—ćƒ­ćƒ†ć‚Ŗć‚øć‚§ćƒć‚·ć‚¹ę Ŗå¼ä¼šē¤¾'),
(160288, 123525, 'no_lang_code', 'name', 'Yurtec Corporation (Japan)'),
(160289, 123525, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¦ć‚¢ćƒ†ćƒƒć‚Æ'),
(160290, 123526, 'no_lang_code', 'name', 'Takesho Co., Ltd. (Japan)'),
(160291, 123526, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å²³å°†'),
(160292, 123527, 'no_lang_code', 'name', 'KAAZ Corporation (Japan)'),
(160293, 123527, 'ja', 'name', 'ć‚«ćƒ¼ćƒ„ę Ŗå¼ä¼šē¤¾'),
(160294, 123528, 'en', 'name', 'Burroughs Wellcome Fund'),
(160295, 123529, 'en', 'name', 'Global Wealth University'),
(160296, 123530, 'en', 'name', 'NIHR Great Ormond Street Hospital Biomedical Research Centre'),
(160297, 123531, 'no_lang_code', 'name', 'Astom R&D (Japan)'),
(160298, 123531, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…ˆē«ÆåŠ›å­¦ć‚·ćƒŸćƒ„ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ē ”ē©¶ę‰€'),
(160299, 123532, 'no_lang_code', 'name', 'Ogaki FUSO Spinning Co., Ltd. (Japan)'),
(160300, 123532, 'ja', 'name', 'å¤§åž£ę‰¶ę”‘ē“”ēø¾ę Ŗå¼ä¼šē¤¾'),
(160301, 123533, 'no_lang_code', 'name', 'Natoco Co., Ltd. (Japan)'),
(160302, 123533, 'ja', 'name', 'ćƒŠćƒˆć‚³ę Ŗå¼ä¼šē¤¾'),
(160303, 123534, 'en', 'name', 'Institute of Functional Epigenetics'),
(160304, 123535, 'no_lang_code', 'name', 'Initiative & Integrity For Sustainable Structures (Japan)'),
(160305, 123535, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾i2S2'),
(160306, 123536, 'en', 'name', 'ETH Zurich'),
(160307, 123536, 'de', 'name', 'ETH Zürich'),
(160308, 123536, 'it', 'name', 'ETH di Zurigo'),
(160309, 123537, 'fr', 'name', 'Centre de Recherche Sciences Sociales Sports et Corps'),
(160310, 123538, 'no_lang_code', 'name', 'Medinet Co., Ltd. (Japan)'),
(160311, 123538, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ”ćƒ‡ć‚£ćƒćƒƒćƒˆ'),
(160312, 123539, 'no_lang_code', 'name', 'Axiom Company,ltd. (Japan)'),
(160313, 123539, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚Æć‚·ćƒ '),
(160314, 123540, 'no_lang_code', 'name', 'Maruo Calcium Co., Ltd. (Japan)'),
(160315, 123540, 'ja', 'name', 'äøøå°¾ć‚«ćƒ«ć‚·ć‚¦ćƒ ę Ŗå¼ä¼šē¤¾'),
(160316, 123541, 'no_lang_code', 'name', 'Kobashi Kogyo Co., Ltd. (Japan)'),
(160317, 123541, 'ja', 'name', 'å°ę©‹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160318, 123542, 'no_lang_code', 'name', 'Hoden Seimitsu Kako Kenkyusho Co., Ltd. (Japan)'),
(160319, 123542, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę”¾é›»ē²¾åÆ†åŠ å·„ē ”ē©¶ę‰€'),
(160320, 123543, 'no_lang_code', 'name', 'Signpost Corporation (Japan)'),
(160321, 123543, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µć‚¤ćƒ³ćƒć‚¹ćƒˆ'),
(160322, 123544, 'en', 'name', 'Audie L. Murphy Memorial VA Hospital'),
(160323, 123545, 'en', 'name', 'New Horizons University'),
(160324, 123545, 'fr', 'name', 'UniversitƩ Nouveaux Horizons'),
(160325, 123546, 'no_lang_code', 'name', 'Yomeishu Seizo Co., Ltd. (Japan)'),
(160326, 123546, 'ja', 'name', 'é¤Šå‘½é…’č£½é€ ę Ŗå¼ä¼šē¤¾'),
(160327, 123547, 'pt', 'name', 'Conselho Nacional de Desenvolvimento Científico e Tecnológico'),
(160328, 123547, 'en', 'name', 'National Council for Scientific and Technological Development'),
(160329, 123548, 'no_lang_code', 'name', 'BULL-DOG Sause Co., Ltd. (Japan)'),
(160330, 123548, 'ja', 'name', 'ćƒ–ćƒ«ćƒ‰ćƒƒć‚Æć‚½ćƒ¼ć‚¹ę Ŗå¼ä¼šē¤¾'),
(160331, 123549, 'en', 'name', 'University of Science and Technology – Hodeidah Branch'),
(160332, 123549, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ – فرع Ų§Ł„Ų­ŲÆŁŠŲÆŲ©'),
(160333, 123550, 'no_lang_code', 'name', 'SEA AG Japan Co., Ltd. (Japan)'),
(160334, 123550, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ćƒ¼ć‚¢ć‚°ć‚øćƒ£ćƒ‘ćƒ³'),
(160335, 123551, 'no_lang_code', 'name', 'Tokura Corporation (Japan)'),
(160336, 123551, 'ja', 'name', 'å¾³å€‰å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(160337, 123552, 'no_lang_code', 'name', 'Sankio Chemical Co., Ltd. (Japan)'),
(160338, 123552, 'ja', 'name', 'äø‰å”åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(160339, 123553, 'en', 'name', 'European College of Veterinary Surgeons'),
(160340, 123554, 'en', 'name', 'University of Belgrade'),
(160341, 123554, 'bs', 'name', 'Univerzitet u Beogradu'),
(160342, 123554, 'sr', 'name', 'Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ'),
(160343, 123555, 'no_lang_code', 'name', 'Sankei Chemical Co., Ltd. (Japan)'),
(160344, 123555, 'ja', 'name', 'ć‚µćƒ³ć‚±ć‚¤åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(160345, 123556, 'en', 'name', 'Toulouse NeuroImaging Center'),
(160346, 123557, 'fr', 'name', 'Centre de recherche public Henri-Tudor'),
(160347, 123558, 'no_lang_code', 'name', 'Metocean Environment Inc. (Japan)'),
(160348, 123558, 'ja', 'name', 'å›½åœŸē’°å¢ƒę Ŗå¼ä¼šē¤¾'),
(160349, 123559, 'no_lang_code', 'name', 'Mynac Co., Ltd. (Japan)'),
(160350, 123559, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžć‚¤ćƒŠćƒƒć‚Æ'),
(160351, 123560, 'it', 'name', 'Fondo Nazionale Svizzero per la Ricerca Scientifica'),
(160352, 123560, 'fr', 'name', 'Fonds national suisse de la recherche scientifique'),
(160353, 123560, 'de', 'name', 'Schweizerische Nationalfonds zur Fƶrderung der wissenschaftlichen Forschung'),
(160354, 123560, 'en', 'name', 'Swiss National Science Foundation'),
(160355, 123561, 'en', 'name', 'Ministry of Cultural Heritage, Tourism and Handicrafts'),
(160356, 123562, 'no_lang_code', 'name', 'Nichiden Kogyo Co., Ltd. (Japan)'),
(160357, 123562, 'ja', 'name', 'ę—„é›»å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160358, 123563, 'en', 'name', 'NIHR Surgical Reconstruction and Microbiology Research Centre'),
(160359, 123564, 'en', 'name', 'Casualty Actuarial Society'),
(160360, 123565, 'en', 'name', 'Field Science Education and Research Center, Kyoto University'),
(160361, 123565, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦ćƒ•ć‚£ćƒ¼ćƒ«ćƒ‰ē§‘å­¦ę•™č‚²ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(160362, 123566, 'no_lang_code', 'name', 'Megaopto Co., Ltd. (Japan)'),
(160363, 123566, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ”ć‚¬ć‚Ŗćƒ—ćƒˆ'),
(160364, 123567, 'en', 'name', 'Institute of Smart Cities'),
(160365, 123567, 'es', 'name', 'Instituto de Smart Cities'),
(160366, 123567, 'eu', 'name', 'Smart Cities Institutua'),
(160367, 123568, 'en', 'name', 'BAU International University, Batumi'),
(160368, 123569, 'no_lang_code', 'name', 'Keyence Corporation (Japan)'),
(160369, 123569, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒ¼ć‚Øćƒ³ć‚¹'),
(160370, 123570, 'en', 'name', 'Flogen Technologies (Canada)'),
(160371, 123571, 'no_lang_code', 'name', 'Masuda Flour Milling Co., Ltd. (Japan)'),
(160372, 123571, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¢—ē”°č£½ē²‰ę‰€'),
(160373, 123572, 'no_lang_code', 'name', 'Holon Co., Ltd. (Japan)'),
(160374, 123572, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ›ćƒ­ćƒ³'),
(160375, 123573, 'no_lang_code', 'name', 'Tagawa Sangyo Co., Ltd. (Japan)'),
(160376, 123573, 'ja', 'name', 'ē”°å·ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(160377, 123574, 'no_lang_code', 'name', 'Denroku (Japan)'),
(160378, 123574, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć§ć‚“å…­'),
(160379, 123575, 'no_lang_code', 'name', 'Meiritsu Seiki Co., Ltd. (Japan)'),
(160380, 123575, 'ja', 'name', 'ę˜Žē«‹ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(160381, 123576, 'en', 'name', 'Raghunath Girls'' Post Graduate College'),
(160382, 123576, 'hi', 'name', 'ą¤°ą¤˜ą„ą¤Øą¤¾ą¤„ ą¤—ą¤°ą„ą¤²ą„ą¤ø ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤—ą„ą¤°ą„‡ą¤œą„ą¤ą¤Ÿ ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(160383, 123577, 'en', 'name', 'NIHR Leicester Cardiovascular Biomedical Research Unit'),
(160384, 123578, 'no_lang_code', 'name', 'Kyukyu Pharmaceutical Co., Ltd. (Japan)'),
(160385, 123578, 'ja', 'name', 'ę•‘ę€„č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160386, 123579, 'no_lang_code', 'name', 'TMT Kamitsu. Inc. (Japan)'),
(160387, 123579, 'ja', 'name', 'TMTē„žę“„ę Ŗå¼ä¼šē¤¾'),
(160388, 123580, 'no_lang_code', 'name', 'U-PASS Corporation (Japan)'),
(160389, 123580, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒ¦ćƒ¼ćƒ‘ć‚¹'),
(160390, 123581, 'en', 'name', 'NIHR Bristol Nutrition Biomedical Research Unit'),
(160391, 123582, 'es', 'name', 'El Colegio de Puebla, A.C.'),
(160392, 123583, 'no_lang_code', 'name', 'NFK Holdings Co., Ltd. (Japan)'),
(160393, 123583, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾NFKćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(160394, 123584, 'en', 'name', 'Stephens College of Nursing'),
(160395, 123585, 'no_lang_code', 'name', 'E&E Co., Ltd. (Japan)'),
(160396, 123585, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ć‚¢ćƒ³ćƒ‰ć‚¤ćƒ¼'),
(160397, 123586, 'en', 'name', 'Technical University of Munich'),
(160398, 123586, 'de', 'name', 'Technische Universität München'),
(160399, 123587, 'no_lang_code', 'name', 'AIDA Engineering, Ltd. (Japan)'),
(160400, 123587, 'ja', 'name', 'ć‚¢ć‚¤ćƒ€ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(160401, 123588, 'no_lang_code', 'name', 'Eight-Japan Engineering Consultants Inc. (Japan)'),
(160402, 123588, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ćƒˆę—„ęœ¬ęŠ€č”“é–‹ē™ŗ'),
(160403, 123589, 'en', 'name', 'Israel Science Foundation'),
(160404, 123589, 'he', 'name', '×”×§×Ø×Ÿ ×”×œ××•×ž×™×Ŗ למדע'),
(160405, 123590, 'no_lang_code', 'name', 'Nanox Co., Ltd. (Japan)'),
(160406, 123590, 'ja', 'name', 'ćƒŠćƒŽćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(160407, 123591, 'fr', 'name', 'Ecole d''IngƩnieurs de PURPAN'),
(160408, 123591, 'en', 'name', 'Purpan Engineering School'),
(160409, 123592, 'no_lang_code', 'name', 'Gekkeikan SAKE Co., Ltd. (Japan)'),
(160410, 123592, 'ja', 'name', 'ęœˆę”‚å† ę Ŗå¼ä¼šē¤¾'),
(160411, 123593, 'no_lang_code', 'name', 'Finesinter Co., Ltd. (Japan)'),
(160412, 123593, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚”ć‚¤ćƒ³ć‚·ćƒ³ć‚æćƒ¼'),
(160413, 123594, 'no_lang_code', 'name', 'Kouiken Co., Ltd. (Japan)'),
(160414, 123594, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č”ŒåŒ»ē ”'),
(160415, 123595, 'no_lang_code', 'name', 'School ON Internet Research Institute (Japan)'),
(160416, 123595, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ć‚Æćƒ¼ćƒ«ć‚Ŗćƒ³ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆē ”ē©¶ę‰€'),
(160417, 123596, 'no_lang_code', 'name', 'NIIC Co., Ltd. (Japan)'),
(160418, 123596, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ¼ć‚Æ'),
(160419, 123597, 'no_lang_code', 'name', 'Macromill, Inc. (Japan)'),
(160420, 123597, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžć‚Æćƒ­ćƒŸćƒ«'),
(160421, 123598, 'it', 'name', 'Ospedale Policlinico San Martino'),
(160422, 123599, 'en', 'name', 'American Heart Association'),
(160423, 123600, 'no_lang_code', 'name', 'Ciba-Geigy Japan Limited (Japan)'),
(160424, 123600, 'ja', 'name', 'ę—„ęœ¬ćƒćƒć‚¬ć‚¤ć‚®ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(160425, 123601, 'en', 'name', 'NIHR Applied Research Collaboration West'),
(160426, 123602, 'no_lang_code', 'name', 'Sitech Co., Ltd. (Japan)'),
(160427, 123602, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ć‚¢ć‚¤ćƒ†ćƒƒć‚Æ'),
(160428, 123603, 'en', 'name', 'Mien Dong Innovative Technology University'),
(160429, 123603, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ Miền ĐƓng'),
(160430, 123604, 'no_lang_code', 'name', 'Azwell Inc. (Japan)'),
(160431, 123604, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚ŗć‚¦ć‚§ćƒ«'),
(160432, 123605, 'no_lang_code', 'name', 'Fukagawa Porcelain Manufacturing Co., Ltd. (Japan)'),
(160433, 123605, 'ja', 'name', 'ę·±å·č£½ē£ę Ŗå¼ä¼šē¤¾'),
(160434, 123606, 'no_lang_code', 'name', 'Amatsuji Steel BALL MFG. Co., Ltd. (Japan)'),
(160435, 123606, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¤©č¾»é‹¼ēƒč£½ä½œę‰€'),
(160436, 123607, 'no_lang_code', 'name', 'Kadoya Sesame Mills Inc. (Japan)'),
(160437, 123607, 'ja', 'name', 'ć‹ć©ć‚„č£½ę²¹ę Ŗå¼ä¼šē¤¾'),
(160438, 123608, 'en', 'name', 'Kennedy Institute of Rheumatology'),
(160439, 123609, 'en', 'name', 'Federal Institute of Science and Technology'),
(160440, 123610, 'no_lang_code', 'name', 'Croda Japan K.K. (Japan)'),
(160441, 123610, 'ja', 'name', 'ć‚Æćƒ­ćƒ¼ćƒ€ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(160442, 123611, 'no_lang_code', 'name', 'Double Research & Development Co., Ltd. (Japan)'),
(160443, 123611, 'ja', 'name', 'ćƒ€ćƒ–ćƒ«ęŠ€ē ”ę Ŗå¼ä¼šē¤¾'),
(160444, 123612, 'no_lang_code', 'name', 'Canare Electric Co., Ltd. (Japan)'),
(160445, 123612, 'ja', 'name', 'ć‚«ćƒŠćƒ¬é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(160446, 123613, 'no_lang_code', 'name', 'HYO-ON Laboratories Incorporated (Japan)'),
(160447, 123613, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę°·ęø©ē ”ē©¶ę‰€'),
(160448, 123614, 'no_lang_code', 'name', 'Murakami Corporation (Japan)'),
(160449, 123614, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę‘äøŠé–‹ę˜Žå ‚'),
(160450, 123615, 'sv', 'name', 'Konstuniversitetet'),
(160451, 123615, 'fi', 'name', 'Taideyliopisto'),
(160452, 123615, 'en', 'name', 'University of the Arts Helsinki'),
(160453, 123616, 'pt', 'name', 'Institutos Nacionais de CiĆŖncia e Tecnologia'),
(160454, 123617, 'no_lang_code', 'name', 'Kinyosha Co., Ltd. (Japan)'),
(160455, 123617, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é‡‘é™½ē¤¾'),
(160456, 123618, 'no_lang_code', 'name', 'Somar Corporation (Japan)'),
(160457, 123618, 'ja', 'name', 'ć‚½ćƒžćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(160458, 123619, 'no_lang_code', 'name', 'Nikon Corporation (Japan)'),
(160459, 123619, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ć‚³ćƒ³'),
(160460, 123620, 'es', 'name', 'Consejo Nacional de Investigaciones Cientƭficas y TƩcnicas'),
(160461, 123620, 'en', 'name', 'National Scientific and Technical Research Council'),
(160462, 123621, 'no_lang_code', 'name', 'Iwaki Seiyaku Co., Ltd. (Japan)'),
(160463, 123621, 'ja', 'name', 'å²©åŸŽč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(160464, 123622, 'no_lang_code', 'name', 'Irago Institute (Japan)'),
(160465, 123622, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć„ć‚‰ć”ē ”ē©¶ę‰€'),
(160466, 123623, 'no_lang_code', 'name', 'Kameda Seika Co., Ltd. (Japan)'),
(160467, 123623, 'ja', 'name', 'äŗ€ē”°č£½č“ę Ŗå¼ä¼šē¤¾'),
(160468, 123624, 'no_lang_code', 'name', 'Sankin Corporation (Japan)'),
(160469, 123624, 'ja', 'name', 'ć‚µćƒ³ć‚­ćƒ³ę Ŗå¼ä¼šē¤¾'),
(160470, 123625, 'en', 'name', 'Evolution and Oral Health'),
(160471, 123625, 'fr', 'name', 'Ɖvolution et SantĆ© Orale'),
(160472, 123626, 'no_lang_code', 'name', 'Ryowa Setsubi Co., Ltd. (Japan)'),
(160473, 123626, 'ja', 'name', 'č±å’ŒčØ­å‚™ę Ŗå¼ä¼šē¤¾'),
(160474, 123627, 'no_lang_code', 'name', 'E-Lambda NET Corporation (Japan)'),
(160475, 123627, 'ja', 'name', 'ć‚¤ćƒ¼ćƒ©ćƒ ćƒ€ćƒćƒƒćƒˆę Ŗå¼ä¼šē¤¾'),
(160476, 123628, 'en', 'name', 'World Biodiversity Association'),
(160477, 123629, 'no_lang_code', 'name', 'Suidou KIKO Kaisha Ltd. (Japan)'),
(160478, 123629, 'ja', 'name', 'ę°“é“ę©Ÿå·„ę Ŗå¼ä¼šē¤¾'),
(160479, 123630, 'no_lang_code', 'name', 'Tostem Corporation (Japan)'),
(160480, 123630, 'ja', 'name', 'ćƒˆć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(160481, 123631, 'en', 'name', 'Wolf Foundation'),
(160482, 123632, 'en', 'name', 'National Research Fund Kenya'),
(160483, 123633, 'no_lang_code', 'name', 'Togami Electric MFG. Co., Ltd. (Japan)'),
(160484, 123633, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęˆøäøŠé›»ę©Ÿč£½ä½œę‰€'),
(160485, 123634, 'en', 'name', 'Center for Ecological Research, Kyoto University'),
(160486, 123634, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦ē”Ÿę…‹å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(160487, 123635, 'no_lang_code', 'name', 'Novel Crystal Technology, Inc. (Japan)'),
(160488, 123635, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŽćƒ™ćƒ«ć‚ÆćƒŖć‚¹ć‚æćƒ«ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼'),
(160489, 123636, 'no_lang_code', 'name', 'Kabuki Construction Co., Ltd. (Japan)'),
(160490, 123636, 'ja', 'name', 'ę ŖęœØå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(160491, 123637, 'es', 'name', 'Agencia Nacional de Investigación y Desarrollo'),
(160492, 123637, 'en', 'name', 'National Agency for Research and Development'),
(160493, 123638, 'no_lang_code', 'name', 'Onahama Smelting Refining Co., Ltd. (Japan)'),
(160494, 123638, 'ja', 'name', 'å°åęµœč£½éŒ¬ę Ŗå¼ä¼šē¤¾'),
(160495, 123639, 'no_lang_code', 'name', 'Taoka Chemical Co., Ltd. (Japan)'),
(160496, 123639, 'ja', 'name', 'ē”°å²”åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160497, 123640, 'no_lang_code', 'name', 'Premed Japan (Japan)'),
(160498, 123640, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ—ćƒŖćƒ”ćƒ‰ć‚øćƒ£ćƒ‘ćƒ³'),
(160499, 123641, 'de', 'name', 'Museum für Kommunikation Bern'),
(160500, 123642, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia da Criosfera'),
(160501, 123642, 'en', 'name', 'National Institute of Science and Technology of the Cryosphere'),
(160502, 123643, 'no_lang_code', 'name', 'DAIA Corporation (Japan)'),
(160503, 123643, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ć‚¢'),
(160504, 123644, 'no_lang_code', 'name', 'Koatsu GAS Kogyo Co., Ltd. (Japan)'),
(160505, 123644, 'ja', 'name', 'é«˜åœ§ć‚¬ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160506, 123645, 'no_lang_code', 'name', 'Unicolloid, Inc. (Japan)'),
(160507, 123645, 'ja', 'name', 'ćƒ¦ćƒ‹ć‚³ćƒ­ć‚¤ćƒ‰ę Ŗå¼ä¼šē¤¾'),
(160508, 123646, 'no_lang_code', 'name', 'CRIE Inc. (Japan)'),
(160509, 123646, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚ÆćƒŖć‚Ø'),
(160510, 123647, 'no_lang_code', 'name', 'SUN-WA Tescom Corporation (Japan)'),
(160511, 123647, 'ja', 'name', 'ć‚µćƒ³ćƒÆćƒ†ć‚¹ć‚³ćƒ ę Ŗå¼ä¼šē¤¾'),
(160512, 123648, 'no_lang_code', 'name', 'Biosums KK (Japan)'),
(160513, 123648, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒć‚¤ć‚Ŗć‚µćƒ '),
(160514, 123649, 'en', 'name', 'V. Sukhomlynskyi State Scientific and Educational Library of Ukraine'),
(160515, 123649, 'uk', 'name', 'Š”ŠŠŸŠ‘ України ім. Š’. Šž. Š”ŃƒŃ…Š¾Š¼Š»ŠøŠ½ŃŃŒŠŗŠ¾Š³Š¾'),
(160516, 123650, 'no_lang_code', 'name', 'APEX. Co., Ltd. (Japan)'),
(160517, 123650, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ćƒšćƒƒć‚Æć‚¹'),
(160518, 123651, 'no_lang_code', 'name', 'Nicca Chemical Co., Ltd. (Japan)'),
(160519, 123651, 'ja', 'name', 'ę—„čÆåŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(160520, 123652, 'no_lang_code', 'name', 'OVAL Corporation (Japan)'),
(160521, 123652, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ćƒćƒ«'),
(160522, 123653, 'no_lang_code', 'name', 'Kyoho Machine Works Ltd. (Japan)'),
(160523, 123653, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å”č±Šč£½ä½œę‰€'),
(160524, 123654, 'no_lang_code', 'name', 'Wakachiku Construction Co., Ltd. (Japan)'),
(160525, 123654, 'ja', 'name', 'č‹„ēÆ‰å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(160526, 123655, 'no_lang_code', 'name', 'Yorozu Corporation (Japan)'),
(160527, 123655, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒØćƒ­ć‚ŗ'),
(160528, 123656, 'no_lang_code', 'name', 'Soken Chemical & Engineering Co., Ltd. (Japan)'),
(160529, 123656, 'ja', 'name', 'ē¶œē ”åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(160530, 123657, 'no_lang_code', 'name', 'DMW Corporation (Japan)'),
(160531, 123657, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é›»ę„­ē¤¾ę©Ÿę¢°č£½ä½œę‰€'),
(160532, 123658, 'no_lang_code', 'name', 'Tadano Ltd. (Japan)'),
(160533, 123658, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æćƒ€ćƒŽ'),
(160534, 123659, 'no_lang_code', 'name', 'Saikyu Kogyo Co., Ltd. (Japan)'),
(160535, 123659, 'ja', 'name', 'ę–Žä¹…å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160536, 123660, 'no_lang_code', 'name', 'Lecip Corporation (Japan)'),
(160537, 123660, 'ja', 'name', 'ćƒ¬ć‚·ćƒƒćƒ—ę Ŗå¼ä¼šē¤¾'),
(160538, 123661, 'no_lang_code', 'name', 'Icat Corporation (Japan)'),
(160539, 123661, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ć‚­ćƒ£ćƒƒćƒˆ'),
(160540, 123662, 'en', 'name', 'Finden (United Kingdom)'),
(160541, 123663, 'no_lang_code', 'name', 'KITZ Corporation (Japan)'),
(160542, 123663, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒƒćƒ„'),
(160543, 123664, 'no_lang_code', 'name', 'Senoh Corporation (Japan)'),
(160544, 123664, 'ja', 'name', 'ć‚»ćƒŽćƒ¼ę Ŗå¼ä¼šē¤¾'),
(160545, 123665, 'no_lang_code', 'name', 'Conextivo Inc. (Japan)'),
(160546, 123665, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚³ćƒć‚Æćƒ†ć‚£ćƒœ'),
(160547, 123666, 'en', 'name', 'Betanien University College'),
(160548, 123667, 'en', 'name', 'Preservation Chicago'),
(160549, 123668, 'no_lang_code', 'name', 'AG Ajikawa Corporation (Japan)'),
(160550, 123668, 'ja', 'name', 'å®‰ę²»å·é‰„å·„ę Ŗå¼ä¼šē¤¾'),
(160551, 123669, 'es', 'name', 'Sociedad de Estudios Genealógicos y HerÔldicos de Canarias'),
(160552, 123670, 'no_lang_code', 'name', 'Tsubosaka Electric Co., Ltd. (Japan)'),
(160553, 123670, 'ja', 'name', 'å£·å‚é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(160554, 123671, 'en', 'name', 'National Hospital and Medical Center'),
(160555, 123672, 'no_lang_code', 'name', 'Suzunaka Kogyo Inc. (Japan)'),
(160556, 123672, 'ja', 'name', 'éˆ“äø­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160557, 123673, 'fr', 'name', 'Institut Superieur de l''Aeronautique et de l''Espace (ISAE-SUPAERO)'),
(160558, 123674, 'en', 'name', 'National Technological Institute of Mexico'),
(160559, 123674, 'es', 'name', 'Tecnológico Nacional de México'),
(160560, 123675, 'en', 'name', 'NIHR BioResource'),
(160561, 123676, 'en', 'name', 'AMCOM Group LLC'),
(160562, 123677, 'no_lang_code', 'name', 'Okabe Co., Ltd. (Japan)'),
(160563, 123677, 'ja', 'name', 'å²”éƒØę Ŗå¼ä¼šē¤¾'),
(160564, 123678, 'no_lang_code', 'name', 'Takamisawa Cybernetics Co., Ltd. (Japan)'),
(160565, 123678, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é«˜č¦‹ę²¢ć‚µć‚¤ćƒćƒćƒ†ć‚£ćƒƒć‚Æć‚¹'),
(160566, 123679, 'en', 'name', 'Indian Council of Medical Research'),
(160567, 123680, 'no_lang_code', 'name', 'Nanoda Corporation (Japan)'),
(160568, 123680, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾nanoda'),
(160569, 123681, 'no_lang_code', 'name', 'Koasa Trading Co., Ltd. (Japan)'),
(160570, 123681, 'ja', 'name', 'å°ęµ…å•†äŗ‹ę Ŗå¼ä¼šē¤¾'),
(160571, 123682, 'no_lang_code', 'name', 'Mintech Japan K.K. (Japan)'),
(160572, 123682, 'ja', 'name', 'ćƒŸćƒ³ćƒ†ćƒƒć‚Æć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(160573, 123683, 'no_lang_code', 'name', 'Synergy Marketing, Inc. (Japan)'),
(160574, 123683, 'ja', 'name', 'ć‚·ćƒŠć‚øćƒ¼ćƒžćƒ¼ć‚±ćƒ†ć‚£ćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(160575, 123684, 'no_lang_code', 'name', 'ASTI Corporation (Japan)'),
(160576, 123684, 'ja', 'name', 'ASTIę Ŗå¼ä¼šē¤¾'),
(160577, 123685, 'en', 'name', 'Qatar National Research Fund'),
(160578, 123685, 'ar', 'name', 'Ų§Ł„ŲµŁ†ŲÆŁˆŁ‚ Ų§Ł„Ł‚Ų·Ų±ŁŠ Ł„Ų±Ų¹Ų§ŁŠŲ© البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(160579, 123686, 'en', 'name', 'Institute of Medical Sciences, Mongolia'),
(160580, 123686, 'mn', 'name', 'Š¢.ŠØŠ°Š³Š“Š°Ń€ŃŅÆŃ€ŃŠ½Š³ŠøŠ¹Š½ Š½ŃŃ€ŃŠ¼Š¶ŠøŃ‚ Анагаах Ухааны Š„ŅÆŃ€ŃŃŠ»ŃŠ½'),
(160581, 123687, 'en', 'name', 'University of Belgrade - Faculty of Physical Chemistry'),
(160582, 123687, 'sr', 'name', 'Univerzitet u Beogradu - Fakultet za fizičku hemiju'),
(160583, 123688, 'no_lang_code', 'name', 'Yonden Engineering Co., Inc. (Japan)'),
(160584, 123688, 'ja', 'name', 'å››é›»ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(160585, 123689, 'no_lang_code', 'name', 'ELM DATA Co., Ltd. (Japan)'),
(160586, 123689, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ«ćƒ ćƒ‡ćƒ¼ć‚æ'),
(160587, 123690, 'no_lang_code', 'name', 'HOWA Machinery, Ltd. (Japan)'),
(160588, 123690, 'ja', 'name', 'č±Šå’Œå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160589, 123691, 'no_lang_code', 'name', 'Campas Create Co., Ltd. (Japan)'),
(160590, 123691, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒ£ćƒ³ćƒ‘ć‚¹ć‚ÆćƒŖć‚Øć‚¤ćƒˆ'),
(160591, 123692, 'en', 'name', 'Ministry of Science, Technology and Innovation'),
(160592, 123692, 'pt', 'name', 'Ministério da Ciência, Tecnologia e Inovações'),
(160593, 123693, 'en', 'name', 'Mauritius Oceanography Institute'),
(160594, 123694, 'en', 'name', 'FORWIT (Austrian Council for Sciences, Technology, and Innovation)'),
(160595, 123694, 'de', 'name', 'Rat für Forschung, Wissenschaft, Innovation und Technologieentwicklung'),
(160596, 123695, 'en', 'name', 'Al-Ameen University'),
(160597, 123695, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŁ†'),
(160598, 123696, 'no_lang_code', 'name', 'Ryoyu Co., Ltd. (Japan)'),
(160599, 123696, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č±å‹ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(160600, 123697, 'no_lang_code', 'name', 'Topre Corporation (Japan)'),
(160601, 123697, 'ja', 'name', 'ę±ćƒ—ćƒ¬ę Ŗå¼ä¼šē¤¾'),
(160602, 123698, 'no_lang_code', 'name', 'Informatek, Inc. (Japan)'),
(160603, 123698, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ćƒ•ć‚©ćƒ¼ćƒžćƒ†ćƒƒć‚Æ'),
(160604, 123699, 'en', 'name', 'Internet Society'),
(160605, 123700, 'no_lang_code', 'name', 'Metal Technology Co. Ltd. (Japan)'),
(160606, 123700, 'ja', 'name', 'é‡‘å±žęŠ€ē ”ę Ŗå¼ä¼šē¤¾'),
(160607, 123701, 'en', 'name', 'ZC Institute (United States of America)'),
(160608, 123702, 'no_lang_code', 'name', 'Asahimatsu Foods Co., Ltd. (Japan)'),
(160609, 123702, 'ja', 'name', 'ę—­ę¾é£Ÿå“ę Ŗå¼ä¼šē¤¾'),
(160610, 123703, 'en', 'name', 'Bengaluru City University'),
(160611, 123703, 'ta', 'name', 'ą®ŖąÆ†ą®™ąÆą®•ą®³ąÆ‚ą®°ąÆ ą®Øą®•ą®°ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(160612, 123704, 'no_lang_code', 'name', 'Sumikasekisui FILM Co., Ltd. (Japan)'),
(160613, 123704, 'ja', 'name', 'ä½åŒ–ē©ę°“ćƒ•ć‚£ćƒ«ćƒ ę Ŗå¼ä¼šē¤¾'),
(160614, 123705, 'no_lang_code', 'name', 'Nosan Corporation (Japan)'),
(160615, 123705, 'ja', 'name', 'ę—„ęœ¬č¾²ē”£å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160616, 123706, 'no_lang_code', 'name', 'Hirano Tecseed Co., Ltd. (Japan)'),
(160617, 123706, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ’ćƒ©ćƒŽćƒ†ć‚Æć‚·ćƒ¼ćƒ‰'),
(160618, 123707, 'en', 'name', 'NIHR Manchester Biomedical Research Centre'),
(160619, 123708, 'no_lang_code', 'name', 'Medixtec Japan Corporation (Japan)'),
(160620, 123708, 'ja', 'name', 'ćƒ”ćƒ‡ć‚£ć‚Øćƒƒć‚Æć‚¹ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(160621, 123709, 'en', 'name', 'Rajiv Gandhi University of Health Sciences'),
(160622, 123709, 'hi', 'name', 'ą¤°ą¤¾ą¤œą„€ą¤µ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(160623, 123710, 'no_lang_code', 'name', 'Sekisou Kanagata Co., Ltd. (Japan)'),
(160624, 123710, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē©å±¤é‡‘åž‹'),
(160625, 123711, 'no_lang_code', 'name', 'CK SAN-ETSU Metals Co., Ltd. (Japan)'),
(160626, 123711, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾CKć‚µćƒ³ć‚Øćƒ„'),
(160627, 123712, 'no_lang_code', 'name', 'EIWA Chemical Ind.Co., Ltd. (Japan)'),
(160628, 123712, 'ja', 'name', 'ę°øå’ŒåŒ–ęˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160629, 123713, 'no_lang_code', 'name', 'I.P. Co., Ltd. (Japan)'),
(160630, 123713, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ”ćƒ¼'),
(160631, 123714, 'no_lang_code', 'name', 'GF Corporation (Japan)'),
(160632, 123714, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾GF'),
(160633, 123715, 'en', 'name', 'Clinical Research Network Thames Valley and South Midlands'),
(160634, 123716, 'no_lang_code', 'name', 'Nanosystem Solutions, Inc. (Japan)'),
(160635, 123716, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŠćƒŽć‚·ć‚¹ćƒ†ćƒ ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗ'),
(160636, 123717, 'no_lang_code', 'name', 'Sanix Incorporated (Japan)'),
(160637, 123717, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒ‹ćƒƒć‚Æć‚¹'),
(160638, 123718, 'no_lang_code', 'name', 'JIMRO Co., Ltd. (Japan)'),
(160639, 123718, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾JIMRO'),
(160640, 123719, 'no_lang_code', 'name', 'Earnet Co., Ltd. (Japan)'),
(160641, 123719, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ćƒćƒƒćƒˆ'),
(160642, 123720, 'no_lang_code', 'name', 'Kintetsu Group Holdings Co., Ltd. (Japan)'),
(160643, 123720, 'ja', 'name', 'čæ‘é‰„ć‚°ćƒ«ćƒ¼ćƒ—ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(160644, 123721, 'no_lang_code', 'name', 'F-TECH Inc. (Japan)'),
(160645, 123721, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ•ćƒ†ćƒƒć‚Æ'),
(160646, 123722, 'fr', 'name', 'Laboratoire de Recherche en Audiovisuel - Savoirs, Praxis et Poïétiques en Art'),
(160647, 123723, 'no_lang_code', 'name', 'Kyuki Corporation (Japan)'),
(160648, 123723, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒ„ćƒ¼ć‚­'),
(160649, 123724, 'no_lang_code', 'name', 'Gisen Co., Ltd. (Japan)'),
(160650, 123724, 'ja', 'name', 'å²ć‚»ćƒ³ę Ŗå¼ä¼šē¤¾'),
(160651, 123725, 'en', 'name', 'Medical Research Council'),
(160652, 123726, 'no_lang_code', 'name', 'MPO, Inc. (Japan)'),
(160653, 123726, 'ja', 'name', 'MPOę Ŗå¼ä¼šē¤¾'),
(160654, 123727, 'no_lang_code', 'name', 'Zuken Incorporated (Japan)'),
(160655, 123727, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å›³ē ”'),
(160656, 123728, 'en', 'name', 'Space Science and Engineering Center'),
(160657, 123729, 'no_lang_code', 'name', 'Araya Inc. (Japan)'),
(160658, 123729, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ©ćƒ¤'),
(160659, 123730, 'no_lang_code', 'name', 'Elab Experience (Japan)'),
(160660, 123730, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ćƒ©ćƒœćƒ»ć‚Øć‚Æć‚¹ćƒšćƒŖć‚Øćƒ³ć‚¹'),
(160661, 123731, 'no_lang_code', 'name', 'KOA Corporation (Japan)'),
(160662, 123731, 'ja', 'name', 'KOAę Ŗå¼ä¼šē¤¾'),
(160663, 123732, 'no_lang_code', 'name', 'KSP Inc (Japan)'),
(160664, 123732, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚±ć‚¤ć‚Øć‚¹ćƒ”ćƒ¼'),
(160665, 123733, 'en', 'name', 'Toyohashi SOZO University'),
(160666, 123733, 'ja', 'name', 'č±Šę©‹å‰µé€ å¤§å­¦'),
(160667, 123734, 'no_lang_code', 'name', 'Igene Therapeutics, Inc. (Japan)'),
(160668, 123734, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾iGENE'),
(160669, 123735, 'fr', 'name', 'Institut du Droit de l''Espace, des Territoires, de la Culture et de la Communication'),
(160670, 123735, 'en', 'name', 'Institute of Space, Territorial, Cultural and Communication Law'),
(160671, 123736, 'fr', 'name', 'Laboratoire de Physique de l''ENS de Lyon'),
(160672, 123737, 'no_lang_code', 'name', 'Hanamaruki Foods Inc. (Japan)'),
(160673, 123737, 'ja', 'name', 'ćƒćƒŠćƒžćƒ«ć‚­ę Ŗå¼ä¼šē¤¾'),
(160674, 123738, 'no_lang_code', 'name', 'Gunei Chemical Industry Co., Ltd. (Japan)'),
(160675, 123738, 'ja', 'name', 'ē¾¤ę „åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160676, 123739, 'de', 'name', 'Franz Ziel GmbH'),
(160677, 123739, 'no_lang_code', 'name', 'Franz Ziel GmbH (Germany)'),
(160678, 123740, 'no_lang_code', 'name', 'Miraikikai Inc. (Japan)'),
(160679, 123740, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęœŖę„ę©Ÿę¢°'),
(160680, 123741, 'no_lang_code', 'name', 'GODO Shusei Co., Ltd. (Japan)'),
(160681, 123741, 'ja', 'name', 'åˆåŒé…’ē²¾ę Ŗå¼ä¼šē¤¾'),
(160682, 123742, 'no_lang_code', 'name', 'Kamiuchi Electric Works, Ltd. (Japan)'),
(160683, 123742, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē„žå†…é›»ę©Ÿč£½ä½œę‰€'),
(160684, 123743, 'no_lang_code', 'name', 'Tytemn Corporation (Japan)'),
(160685, 123743, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚¤ćƒ†ćƒ '),
(160686, 123744, 'no_lang_code', 'name', 'Comsys Holdings Corp. (Japan)'),
(160687, 123744, 'ja', 'name', 'ć‚³ćƒ ć‚·ć‚¹ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(160688, 123745, 'en', 'name', 'National Academy of Educational Sciences of Ukraine'),
(160689, 123745, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń пеГагогічних наук України'),
(160690, 123746, 'no_lang_code', 'name', 'NARA Machinery Co., Ltd. (Japan)'),
(160691, 123746, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å„ˆč‰Æę©Ÿę¢°č£½ä½œę‰€'),
(160692, 123747, 'no_lang_code', 'name', 'Ryomo SYSTEMS Co., Ltd. (Japan)'),
(160693, 123747, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äø”ęÆ›ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(160694, 123748, 'en', 'name', 'Institute of Applied Mathematics and Mechanics'),
(160695, 123748, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГної математики і механіки ŠŠŠ України'),
(160696, 123749, 'no_lang_code', 'name', 'Press Kogyo Co., Ltd. (Japan)'),
(160697, 123749, 'ja', 'name', 'ćƒ—ćƒ¬ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160698, 123750, 'no_lang_code', 'name', 'Fast Retailing Co., Ltd. (Japan)'),
(160699, 123750, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚”ćƒ¼ć‚¹ćƒˆćƒŖćƒ†ć‚¤ćƒŖćƒ³ć‚°'),
(160700, 123751, 'no_lang_code', 'name', 'Torishima PUMP MFG. Co., Ltd. (Japan)'),
(160701, 123751, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é…‰å³¶č£½ä½œę‰€'),
(160702, 123752, 'no_lang_code', 'name', 'ACCESS Co., Ltd. (Japan)'),
(160703, 123752, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ACCESS'),
(160704, 123753, 'fr', 'name', 'CERMICS'),
(160705, 123754, 'no_lang_code', 'name', 'SKK Corporation (Japan)'),
(160706, 123754, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾SKK'),
(160707, 123755, 'no_lang_code', 'name', 'Nagara Science Co., Ltd. (Japan)');
INSERT INTO `ror_settings` VALUES
(160708, 123755, 'ja', 'name', 'é•·č‰Æć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(160709, 123756, 'no_lang_code', 'name', 'RCT SYSTEMS Japan Inc. (Japan)'),
(160710, 123756, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ¼ćƒ«ćƒ»ć‚·ć‚¤ćƒ¼ćƒ†ć‚¤ćƒ¼ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(160711, 123757, 'no_lang_code', 'name', 'Namitei Co., Ltd. (Japan)'),
(160712, 123757, 'ja', 'name', 'ćƒŠćƒŸćƒ†ć‚¤ę Ŗå¼ä¼šē¤¾'),
(160713, 123758, 'no_lang_code', 'name', 'Molitec Steel Co., Ltd. (Japan)'),
(160714, 123758, 'ja', 'name', 'ćƒ¢ćƒŖćƒ†ćƒƒć‚Æć‚¹ćƒćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(160715, 123759, 'no_lang_code', 'name', 'Human Metabolome Technologies, Inc. (Japan)'),
(160716, 123759, 'ja', 'name', 'ćƒ’ćƒ„ćƒ¼ćƒžćƒ³ćƒ»ćƒ”ć‚æćƒœćƒ­ćƒ¼ćƒ ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(160717, 123760, 'no_lang_code', 'name', 'KIWA Chemical Medicinal Co., Ltd. (Japan)'),
(160718, 123760, 'ja', 'name', 'č²“å’ŒåŒ–å­¦č–¬å“ę Ŗå¼ä¼šē¤¾'),
(160719, 123761, 'en', 'name', 'University of Belgrade - Faculty of Civil Engineering'),
(160720, 123762, 'fr', 'name', 'Ɖcole pratique de service social'),
(160721, 123763, 'en', 'name', 'Elmwood College'),
(160722, 123764, 'no_lang_code', 'name', 'ATTO Corporation (Japan)'),
(160723, 123764, 'ja', 'name', 'ć‚¢ćƒˆćƒ¼ę Ŗå¼ä¼šē¤¾'),
(160724, 123765, 'en', 'name', 'The Scientific and Technological Research Council of Türkiye'),
(160725, 123765, 'tr', 'name', 'Türkiye Bilimsel ve Teknolojik Araştırma Kurumu'),
(160726, 123766, 'no_lang_code', 'name', 'SEGA Corporation (Japan)'),
(160727, 123766, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ć‚¬'),
(160728, 123767, 'no_lang_code', 'name', 'ROKI Co., Ltd. (Japan)'),
(160729, 123767, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ROKI'),
(160730, 123768, 'no_lang_code', 'name', 'Geotech Co., Ltd. (Japan)'),
(160731, 123768, 'ja', 'name', 'ć‚øć‚Ŗćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(160732, 123769, 'no_lang_code', 'name', 'Image ONE Co., Ltd. (Japan)'),
(160733, 123769, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ”ćƒ¼ć‚øćƒÆćƒ³'),
(160734, 123770, 'no_lang_code', 'name', 'Topcon Corporation (Japan)'),
(160735, 123770, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ—ć‚³ćƒ³'),
(160736, 123771, 'en', 'name', 'Kutir Post Graduate College'),
(160737, 123772, 'no_lang_code', 'name', 'Marketing Excellence (Japan)'),
(160738, 123772, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžćƒ¼ć‚±ćƒ†ć‚£ćƒ³ć‚°ćƒ»ć‚Øć‚Æć‚»ćƒ¬ćƒ³ć‚¹'),
(160739, 123773, 'en', 'name', 'Olivia Newton-John Cancer Research Institute'),
(160740, 123774, 'no_lang_code', 'name', 'EVEC Incorporated (Japan)'),
(160741, 123774, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ćƒ™ćƒƒć‚Æ'),
(160742, 123775, 'fr', 'name', 'Equipe de Recherche sur les RationalitƩs Philosophiques et les Savoirs'),
(160743, 123776, 'no_lang_code', 'name', 'MOON STAR Company (Japan)'),
(160744, 123776, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ ćƒ¼ćƒ³ć‚¹ć‚æćƒ¼'),
(160745, 123777, 'no_lang_code', 'name', 'Towser Corporation (Japan)'),
(160746, 123777, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚¦ć‚¶ćƒ¼'),
(160747, 123778, 'no_lang_code', 'name', 'Advance SOFT Corporation (Japan)'),
(160748, 123778, 'ja', 'name', 'ć‚¢ćƒ‰ćƒćƒ³ć‚¹ć‚½ćƒ•ćƒˆę Ŗå¼ä¼šē¤¾'),
(160749, 123779, 'no_lang_code', 'name', 'Daioh Construction Co., Ltd. (Japan)'),
(160750, 123779, 'ja', 'name', 'å¤§ę—ŗå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(160751, 123780, 'no_lang_code', 'name', 'Nigk Corporation (Japan)'),
(160752, 123780, 'ja', 'name', 'ę—„ę²¹ęŠ€ē ”å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160753, 123781, 'no_lang_code', 'name', 'SPC Electronics Corporation (Japan)'),
(160754, 123781, 'ja', 'name', 'å³¶ē”°ē†åŒ–å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160755, 123782, 'no_lang_code', 'name', 'Data Spirit Corporation (Japan)'),
(160756, 123782, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‡ćƒ¼ć‚æć‚¹ćƒ”ćƒŖćƒƒćƒˆ'),
(160757, 123783, 'en', 'name', 'Werfen Immunoassay Technology Center'),
(160758, 123784, 'en', 'name', 'Chan Zuckerberg Initiative'),
(160759, 123784, 'no_lang_code', 'name', 'Chan Zuckerberg Initiative (United States)'),
(160760, 123785, 'no_lang_code', 'name', 'AOKI Corporation (Japan)'),
(160761, 123785, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é’ęœØå»ŗčØ­'),
(160762, 123786, 'en', 'name', 'Space Generation Advisory Council'),
(160763, 123787, 'en', 'name', 'American Federation of Labor and Congress of Industrial Organizations'),
(160764, 123788, 'en', 'name', 'STIK Bina Husada'),
(160765, 123789, 'no_lang_code', 'name', 'BOSO OIL & FAT Co., Ltd. (Japan)'),
(160766, 123789, 'ja', 'name', 'ćƒœćƒ¼ć‚½ćƒ¼ę²¹č„‚ę Ŗå¼ä¼šē¤¾'),
(160767, 123790, 'no_lang_code', 'name', 'Samco Inc. (Japan)'),
(160768, 123790, 'ja', 'name', 'ć‚µćƒ ć‚³ę Ŗå¼ä¼šē¤¾'),
(160769, 123791, 'no_lang_code', 'name', 'Daiho Corporation (Japan)'),
(160770, 123791, 'ja', 'name', 'å¤§č±Šå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(160771, 123792, 'id', 'name', 'Institut Sains dan Bisnis Atma Luhur'),
(160772, 123793, 'fr', 'name', 'Laboratoire de gestion et des transitions organisationnelles'),
(160773, 123793, 'en', 'name', 'Organisational Management and Transitions Laboratory'),
(160774, 123794, 'no_lang_code', 'name', 'Honshu-Shikoku Bridge Expressway Company Limited (Japan)'),
(160775, 123794, 'ja', 'name', 'ęœ¬å·žå››å›½é€£ēµ”é«˜é€Ÿé“č·Æę Ŗå¼ä¼šē¤¾'),
(160776, 123795, 'pl', 'name', 'Narodowa Akademia Nauk Ukrainy'),
(160777, 123795, 'en', 'name', 'National Academy of Sciences of Ukraine'),
(160778, 123795, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Украины'),
(160779, 123795, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń наук України'),
(160780, 123796, 'no_lang_code', 'name', 'Kanehisa Inc. (Japan)'),
(160781, 123796, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é‡‘ä¹…'),
(160782, 123797, 'no_lang_code', 'name', 'Interprotein Corporation (Japan)'),
(160783, 123797, 'ja', 'name', 'ć‚¤ćƒ³ć‚æćƒ¼ćƒ—ćƒ­ćƒ†ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(160784, 123798, 'no_lang_code', 'name', 'Tajima Roofing Co., Ltd. (Japan)'),
(160785, 123798, 'ja', 'name', 'ē”°å³¶ćƒ«ćƒ¼ćƒ•ć‚£ćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(160786, 123799, 'no_lang_code', 'name', 'Nishi Nippon Electric WIRE & Cable Co., Ltd. (Japan)'),
(160787, 123799, 'ja', 'name', 'č„æę—„ęœ¬é›»ē·šę Ŗå¼ä¼šē¤¾'),
(160788, 123800, 'no_lang_code', 'name', 'Rnai Inc. (Japan)'),
(160789, 123800, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾RNAi'),
(160790, 123801, 'no_lang_code', 'name', 'JCS Inc. (Japan)'),
(160791, 123801, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ć‚·ćƒ¼ć‚Øć‚¹'),
(160792, 123802, 'no_lang_code', 'name', 'Royal Electric Co., Ltd. (Japan)'),
(160793, 123802, 'ja', 'name', 'ćƒ­ćƒ¼ćƒ¤ćƒ«é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(160794, 123803, 'en', 'name', 'Institute of Pharmacy & Technology, Salipur'),
(160795, 123804, 'no_lang_code', 'name', 'Sekonic Corporation (Japan)'),
(160796, 123804, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ć‚³ćƒ‹ćƒƒć‚Æ'),
(160797, 123805, 'no_lang_code', 'name', 'Achilles Corporation (Japan)'),
(160798, 123805, 'ja', 'name', 'ć‚¢ć‚­ćƒ¬ć‚¹ę Ŗå¼ä¼šē¤¾'),
(160799, 123806, 'fr', 'name', 'UnitƩ propre NƩonatalogie des carnivores, reproduction et Ʃlevage'),
(160800, 123807, 'no_lang_code', 'name', 'Sumita Optical Glass Inc. (Japan)'),
(160801, 123807, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ä½ē”°å…‰å­¦ć‚¬ćƒ©ć‚¹'),
(160802, 123808, 'no_lang_code', 'name', 'Nature Technology Inc. (Japan)'),
(160803, 123808, 'ja', 'name', 'ćƒć‚¤ćƒćƒ£ćƒ¼ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(160804, 123809, 'no_lang_code', 'name', 'Koshuha Foundry Co., Ltd. (Japan)'),
(160805, 123809, 'ja', 'name', 'é«˜å‘Øę³¢é‹³é€ ę Ŗå¼ä¼šē¤¾'),
(160806, 123810, 'no_lang_code', 'name', 'Fund Corporation for the Overseas Development of Japan''s ICT and Postal Services Inc. (Japan)'),
(160807, 123810, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęµ·å¤–é€šäæ”ćƒ»ę”¾é€ćƒ»éƒµä¾æäŗ‹ę„­ę”Æę“ę©Ÿę§‹'),
(160808, 123811, 'no_lang_code', 'name', 'Henkel Japan Ltd. (Japan)'),
(160809, 123811, 'ja', 'name', 'ćƒ˜ćƒ³ć‚±ćƒ«ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(160810, 123812, 'no_lang_code', 'name', 'Asahipen Corporation (Japan)'),
(160811, 123812, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚µćƒ’ćƒšćƒ³'),
(160812, 123813, 'no_lang_code', 'name', 'KITO Corporation (Japan)'),
(160813, 123813, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒˆćƒ¼'),
(160814, 123814, 'fr', 'name', 'Centre de Droit des Affaires'),
(160815, 123814, 'en', 'name', 'Centre for Business Law'),
(160816, 123815, 'no_lang_code', 'name', 'I Metal Technology Co., Ltd. (Japan)'),
(160817, 123815, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ”ć‚æćƒ«ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼'),
(160818, 123816, 'no_lang_code', 'name', 'Sakurada Co., Ltd. (Japan)'),
(160819, 123816, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µć‚Æćƒ©ćƒ€'),
(160820, 123817, 'fr', 'name', 'Laboratoire de Psychologie de la Socialisation – DĆ©veloppement et Travail'),
(160821, 123818, 'no_lang_code', 'name', 'TDK-Lambda Corporation (Japan)'),
(160822, 123818, 'ja', 'name', 'TDKćƒ©ćƒ ćƒ€ę Ŗå¼ä¼šē¤¾'),
(160823, 123819, 'en', 'name', 'University of the French West Indies and Guiana'),
(160824, 123820, 'no_lang_code', 'name', 'UEKI Corporation (Japan)'),
(160825, 123820, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę¤ęœØēµ„'),
(160826, 123821, 'no_lang_code', 'name', 'Intage Inc. (Japan)'),
(160827, 123821, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ćƒ†ćƒ¼ć‚ø'),
(160828, 123822, 'no_lang_code', 'name', 'Accelerator Engineering Corporation (Japan)'),
(160829, 123822, 'ja', 'name', 'åŠ é€Ÿå™Øć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(160830, 123823, 'en', 'name', 'NIHR Cambridge Biomedical Research Centre'),
(160831, 123824, 'no_lang_code', 'name', 'KAMO Seiko Corp. (Japan)'),
(160832, 123824, 'ja', 'name', 'åŠ čŒ‚ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(160833, 123825, 'no_lang_code', 'name', 'Tohken Co., Ltd. (Japan)'),
(160834, 123825, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±ē ”'),
(160835, 123826, 'no_lang_code', 'name', 'KI Holdings Co., Ltd. (Japan)'),
(160836, 123826, 'ja', 'name', 'KIćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(160837, 123827, 'no_lang_code', 'name', 'Toclas Corporation (Japan)'),
(160838, 123827, 'ja', 'name', 'ćƒˆć‚Æćƒ©ć‚¹ę Ŗå¼ä¼šē¤¾'),
(160839, 123828, 'no_lang_code', 'name', 'Mediastyle, Inc. (Japan)'),
(160840, 123828, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ”ćƒ‡ć‚£ć‚¢ć‚¹ć‚æć‚¤ćƒ«'),
(160841, 123829, 'no_lang_code', 'name', 'PHC Corporation (Japan)'),
(160842, 123829, 'ja', 'name', 'PHCę Ŗå¼ä¼šē¤¾'),
(160843, 123830, 'en', 'name', 'Candel Therapeutics (United States)'),
(160844, 123831, 'fr', 'name', 'Institut des Nanotechnologies de Lyon'),
(160845, 123831, 'en', 'name', 'Lyon Institute of Nanotechnology'),
(160846, 123832, 'no_lang_code', 'name', 'FU''S LAB Co., Ltd. (Japan)'),
(160847, 123832, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒ•ć‚¦ć‚ŗćƒ©ćƒœ'),
(160848, 123833, 'en', 'name', 'The Korean Association of International Studies'),
(160849, 123833, 'ko', 'name', 'ķ•œźµ­źµ­ģ œģ •ģ¹˜ķ•™ķšŒ'),
(160850, 123834, 'fr', 'name', 'Institut de Technico-Ɖconomie des systĆØmes ƉnergĆ©tiques'),
(160851, 123834, 'en', 'name', 'Institute for Techno-Economics of Energy Systems'),
(160852, 123835, 'uz', 'name', 'Aniq va ijtimoiy fanlar universiteti'),
(160853, 123835, 'en', 'name', 'University of Exact and Social Sciences'),
(160854, 123836, 'no_lang_code', 'name', 'Jamco Corporation (Japan)'),
(160855, 123836, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ£ćƒ ć‚³'),
(160856, 123837, 'no_lang_code', 'name', 'IN-Silico Sciences, Inc. (Japan)'),
(160857, 123837, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ć‚·ćƒŖć‚³ć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(160858, 123838, 'no_lang_code', 'name', 'SSP Co., Ltd. (Japan)'),
(160859, 123838, 'ja', 'name', 'ć‚Øć‚¹ć‚Øć‚¹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(160860, 123839, 'no_lang_code', 'name', 'Internationalpolysaccharide Engineering Inc. (Japan)'),
(160861, 123839, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾IPE'),
(160862, 123840, 'en', 'name', 'Sur180 Therapeutics (United States)'),
(160863, 123841, 'fr', 'name', 'IngƩnierie, CaractƩrisation et Services'),
(160864, 123842, 'no_lang_code', 'name', 'Mercian Corporation (Japan)'),
(160865, 123842, 'ja', 'name', 'ćƒ”ćƒ«ć‚·ćƒ£ćƒ³ę Ŗå¼ä¼šē¤¾'),
(160866, 123843, 'no_lang_code', 'name', 'Kainos Laboratories, Inc. (Japan)'),
(160867, 123843, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ć‚¤ćƒŽć‚¹'),
(160868, 123844, 'en', 'name', 'National Park Service'),
(160869, 123844, 'es', 'name', 'Servicio de Parques Nacionales'),
(160870, 123845, 'es', 'name', 'Universidad PolitƩcnica de Atlautla'),
(160871, 123846, 'no_lang_code', 'name', 'Photocatalytic Materials Incorporated (Japan)'),
(160872, 123846, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…‰č§¦åŖ’ē ”ē©¶ę‰€'),
(160873, 123847, 'en', 'name', 'University of Belgrade – Faculty of Security Studies'),
(160874, 123847, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet bezbednosti'),
(160875, 123848, 'no_lang_code', 'name', 'Tofuku Flour Mills Co., Ltd. (Japan)'),
(160876, 123848, 'ja', 'name', 'ę±ē¦č£½ē²‰ę Ŗå¼ä¼šē¤¾'),
(160877, 123849, 'no_lang_code', 'name', 'Celagix Res. Ltd. (Japan)'),
(160878, 123849, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚»ćƒ©ć‚øćƒƒć‚Æć‚¹'),
(160879, 123850, 'en', 'name', 'Merchant Marine Polytechnic of Sulawesi Utara'),
(160880, 123850, 'id', 'name', 'Politeknik Pelayaran Sulawesi Utara'),
(160881, 123851, 'no_lang_code', 'name', 'Nabeya BI-TECH Kaisha (Japan)'),
(160882, 123851, 'ja', 'name', 'é‹å±‹ćƒć‚¤ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(160883, 123852, 'en', 'name', 'The Forensic Panel (United States)'),
(160884, 123853, 'no_lang_code', 'name', 'KYEC Japan K.K. (Japan)'),
(160885, 123853, 'ja', 'name', 'KYECć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(160886, 123854, 'fr', 'name', 'IMT Atlantique'),
(160887, 123855, 'no_lang_code', 'name', 'NCS&A Co., Ltd. (Japan)'),
(160888, 123855, 'ja', 'name', 'NCS&Aę Ŗå¼ä¼šē¤¾'),
(160889, 123856, 'no_lang_code', 'name', 'Kanae Co., Ltd. (Japan)'),
(160890, 123856, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ćƒŠć‚Ø'),
(160891, 123857, 'no_lang_code', 'name', 'Sakamoto Yakuhin Kogyo Co., Ltd. (Japan)'),
(160892, 123857, 'ja', 'name', 'é˜Ŗęœ¬č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160893, 123858, 'no_lang_code', 'name', 'Yahoo Japan Corp. (Japan)'),
(160894, 123858, 'ja', 'name', 'ćƒ¤ćƒ•ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(160895, 123859, 'no_lang_code', 'name', 'Synthesis Corporation (Japan)'),
(160896, 123859, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ćƒ³ć‚»ć‚·ć‚¹'),
(160897, 123860, 'en', 'name', 'Southern Nazarene University'),
(160898, 123861, 'fr', 'name', 'Sciences Po Toulouse'),
(160899, 123862, 'no_lang_code', 'name', 'Planning Institute For Urban Environment Co., Ltd. (Japan)'),
(160900, 123862, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾éƒ½åø‚ē’°å¢ƒčØˆē”»'),
(160901, 123863, 'en', 'name', 'SFPE Foundation'),
(160902, 123864, 'no_lang_code', 'name', 'Fujimic, Inc. (Japan)'),
(160903, 123864, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚øćƒŸćƒƒć‚Æ'),
(160904, 123865, 'no_lang_code', 'name', 'Cardio, Inc. (Japan)'),
(160905, 123865, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ćƒ«ćƒ‡ć‚£ć‚Ŗ'),
(160906, 123866, 'fr', 'name', 'Centre Toulousain d''Histoire du Droit et des IdƩes Politiques'),
(160907, 123866, 'en', 'name', 'Toulouse Centre for the History of Law and Political Ideas'),
(160908, 123867, 'no_lang_code', 'name', 'PLUS Electric Co., Ltd. (Japan)'),
(160909, 123867, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ—ćƒ©ć‚¹é›»ę©Ÿ'),
(160910, 123868, 'en', 'name', 'Olivia Newton-John Cancer Wellness & Research Centre'),
(160911, 123869, 'no_lang_code', 'name', 'Nireco Corporation (Japan)'),
(160912, 123869, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ¬ć‚³'),
(160913, 123870, 'no_lang_code', 'name', 'Ikegami Tsushinki Co., Ltd. (Japan)'),
(160914, 123870, 'ja', 'name', 'ę± äøŠé€šäæ”ę©Ÿę Ŗå¼ä¼šē¤¾'),
(160915, 123871, 'no_lang_code', 'name', 'Nittoku Engineering Co., Ltd. (Japan)'),
(160916, 123871, 'ja', 'name', 'ę—„ē‰¹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(160917, 123872, 'da', 'name', 'Novo Nordisk Fonden'),
(160918, 123872, 'en', 'name', 'Novo Nordisk Foundation'),
(160919, 123873, 'no_lang_code', 'name', 'Tsubakimoto Chain Co., Ltd. (Japan)'),
(160920, 123873, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę¤æęœ¬ćƒć‚Øć‚¤ćƒ³'),
(160921, 123874, 'no_lang_code', 'name', 'HOAN Kogyo Co., Ltd. (Japan)'),
(160922, 123874, 'ja', 'name', 'äæå®‰å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160923, 123875, 'no_lang_code', 'name', 'Pyramid Co., Ltd. (Japan)'),
(160924, 123875, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ”ćƒ©ćƒŸćƒƒćƒ‰'),
(160925, 123876, 'no_lang_code', 'name', 'Shiraimatsu Shinyaku Co., Ltd. (Japan)'),
(160926, 123876, 'ja', 'name', 'ē™½äŗ•ę¾ę–°č–¬ę Ŗå¼ä¼šē¤¾'),
(160927, 123877, 'no_lang_code', 'name', 'Nagatanien Co., Ltd. (Japan)'),
(160928, 123877, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę°øč°·åœ’'),
(160929, 123878, 'en', 'name', 'Reims Management School'),
(160930, 123879, 'no_lang_code', 'name', 'KOGI Corporation (Japan)'),
(160931, 123879, 'ja', 'name', 'č™¹ęŠ€ę Ŗå¼ä¼šē¤¾'),
(160932, 123880, 'en', 'name', 'Geochemical Society'),
(160933, 123881, 'fr', 'name', 'UniversitƩ de Toulouse'),
(160934, 123882, 'no_lang_code', 'name', 'Spandnix Inc. (Japan)'),
(160935, 123882, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ćƒ‘ćƒ³ćƒ‰ćƒ‹ć‚Æć‚¹'),
(160936, 123883, 'no_lang_code', 'name', 'WYCKOFF Co., Ltd. (Japan)'),
(160937, 123883, 'ja', 'name', 'ćƒÆć‚¤ć‚³ćƒ•ē§‘å­¦ę Ŗå¼ä¼šē¤¾'),
(160938, 123884, 'en', 'name', 'NIHR Bristol Cardiovascular Biomedical Research Unit'),
(160939, 123885, 'no_lang_code', 'name', 'LIXIL Corporation (Japan)'),
(160940, 123885, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾LIXIL'),
(160941, 123886, 'en', 'name', 'National Institutes of Health'),
(160942, 123887, 'no_lang_code', 'name', 'SK Kaken Co., Ltd. (Japan)'),
(160943, 123887, 'ja', 'name', 'ć‚Øć‚¹ć‚±ćƒ¼åŒ–ē ”ę Ŗå¼ä¼šē¤¾'),
(160944, 123888, 'fr', 'name', 'Institut polytechnique LaSalle Beauvais'),
(160945, 123889, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Lyon'),
(160946, 123890, 'en', 'name', 'VID Specialized University'),
(160947, 123890, 'no', 'name', 'VID Vitenskapelige HĆøgskole'),
(160948, 123891, 'pt', 'name', 'Academia da ForƧa AƩrea'),
(160949, 123891, 'en', 'name', 'Portuguese Air Force Academy'),
(160950, 123892, 'no_lang_code', 'name', 'Namics Corporation (Japan)'),
(160951, 123892, 'ja', 'name', 'ćƒŠćƒŸćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(160952, 123893, 'no_lang_code', 'name', 'Ebrand21 Corporation (Japan)'),
(160953, 123893, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ćƒ»ćƒ–ćƒ©ćƒ³ćƒ‰21'),
(160954, 123894, 'no_lang_code', 'name', 'Nichirin Co., Ltd. (Japan)'),
(160955, 123894, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒćƒŖćƒ³'),
(160956, 123895, 'no_lang_code', 'name', 'Ichibiki Co., Ltd. (Japan)'),
(160957, 123895, 'ja', 'name', 'ć‚¤ćƒćƒ“ć‚­ę Ŗå¼ä¼šē¤¾'),
(160958, 123896, 'no_lang_code', 'name', 'Ikeuchi Seiko Co., Ltd. (Japan)'),
(160959, 123896, 'ja', 'name', 'ę± å†…ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(160960, 123897, 'no_lang_code', 'name', 'Koyosha Inc. (Japan)'),
(160961, 123897, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…‰é™½ē¤¾'),
(160962, 123898, 'no_lang_code', 'name', 'Sanritz Corporation (Japan)'),
(160963, 123898, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ćƒŖćƒƒćƒ„'),
(160964, 123899, 'fr', 'name', 'Fédération de recherche André-Marie Ampère'),
(160965, 123900, 'no_lang_code', 'name', 'Hikawa Mining Co., Ltd. (Japan)'),
(160966, 123900, 'ja', 'name', 'ę–å·ē¤¦ę„­ę Ŗå¼ä¼šē¤¾'),
(160967, 123901, 'en', 'name', 'Don Bosco Institute of Technology'),
(160968, 123901, 'kn', 'name', 'ą²”ą²¾ą²Øą³ ą²¬ą²¾ą²øą³ą²•ą³‹ ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²«ą³ ą²Ÿą³†ą²•ą³ą²Øą²¾ą²²ą²œą²æ'),
(160969, 123902, 'no_lang_code', 'name', 'Kurodaruma (Japan)'),
(160970, 123902, 'ja', 'name', 'ć‚Æćƒ­ćƒ€ćƒ«ćƒžę Ŗå¼ä¼šē¤¾'),
(160971, 123903, 'no_lang_code', 'name', 'DOME Co., Ltd. (Japan)'),
(160972, 123903, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē«„å¤¢'),
(160973, 123904, 'id', 'name', 'Institut Kesehatan Helvetia Pekanbaru'),
(160974, 123905, 'en', 'name', 'Malawi School of Government'),
(160975, 123906, 'no_lang_code', 'name', 'Aikei-Denshi Corporation (Japan)'),
(160976, 123906, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ»ć‚±ć‚¤é›»å­'),
(160977, 123907, 'fr', 'name', 'Conseil DĆ©partemental de l’HĆ©rault'),
(160978, 123907, 'en', 'name', 'Departmental Council of HƩrault'),
(160979, 123908, 'no_lang_code', 'name', 'Todoroki Industry Co., Ltd. (Japan)'),
(160980, 123908, 'ja', 'name', 'č½Ÿē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(160981, 123909, 'en', 'name', 'NIHR Leeds Musculoskeletal Biomedical Research Unit'),
(160982, 123910, 'no_lang_code', 'name', 'HAW International Inc. (Japan)'),
(160983, 123910, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚¦ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«'),
(160984, 123911, 'no_lang_code', 'name', 'Takada Corporation (Japan)'),
(160985, 123911, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é«˜ē”°å·„ę„­ę‰€'),
(160986, 123912, 'no_lang_code', 'name', 'Jemix Co., Ltd. (Japan)'),
(160987, 123912, 'ja', 'name', 'ć‚øć‚§ćƒŸćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(160988, 123913, 'no_lang_code', 'name', 'Yusoki Kogyo K. K. (Japan)'),
(160989, 123913, 'ja', 'name', 'č¼øé€ę©Ÿå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(160990, 123914, 'no_lang_code', 'name', 'Systemneeds Inc. (Japan)'),
(160991, 123914, 'ja', 'name', 'ć‚·ć‚¹ćƒ†ćƒ ćƒ‹ćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(160992, 123915, 'no_lang_code', 'name', 'Morio Denki Co., Ltd. (Japan)'),
(160993, 123915, 'ja', 'name', 'ę£®å°¾é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(160994, 123916, 'no_lang_code', 'name', 'Sansha Electric MFG., Co., Ltd. (Japan)'),
(160995, 123916, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äø‰ē¤¾é›»ę©Ÿč£½ä½œę‰€'),
(160996, 123917, 'no_lang_code', 'name', 'Siemens Healthcare K.K. (Japan)'),
(160997, 123917, 'ja', 'name', 'ć‚·ćƒ¼ćƒ”ćƒ³ć‚¹ćƒ˜ćƒ«ć‚¹ć‚±ć‚¢ę Ŗå¼ä¼šē¤¾'),
(160998, 123918, 'no_lang_code', 'name', 'Shizuki Electric Company Inc. (Japan)'),
(160999, 123918, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęŒ‡ęœˆé›»ę©Ÿč£½ä½œę‰€'),
(161000, 123919, 'no_lang_code', 'name', 'Xenesys Co., Ltd. (Japan)'),
(161001, 123919, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¼ćƒć‚·ć‚¹'),
(161002, 123920, 'en', 'name', 'University of Jammu'),
(161003, 123920, 'hi', 'name', 'ą¤œą¤®ą„ą¤®ą„‚ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(161004, 123921, 'en', 'name', 'Chromosome Engineering Research Center'),
(161005, 123922, 'en', 'name', 'Environmental Management of Navarre'),
(161006, 123922, 'eu', 'name', 'Nafarroako Ingurumen Kudeaketa'),
(161007, 123922, 'es', 'name', 'Orekan - Gestión Ambiental de Navarra'),
(161008, 123923, 'no_lang_code', 'name', 'Jastec Co., Ltd. (Japan)'),
(161009, 123923, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ£ć‚¹ćƒ†ćƒƒć‚Æ'),
(161010, 123924, 'en', 'name', 'Pain BC'),
(161011, 123925, 'no_lang_code', 'name', 'Pasco Corporation (Japan)'),
(161012, 123925, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‘ć‚¹ć‚³'),
(161013, 123926, 'no_lang_code', 'name', 'Shikishima Baking Co., Ltd. (Japan)'),
(161014, 123926, 'ja', 'name', 'ę•·å³¶č£½ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(161015, 123927, 'no_lang_code', 'name', 'Matsunami Glass IND., Ltd. (Japan)'),
(161016, 123927, 'ja', 'name', 'ę¾ęµŖē”å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161017, 123928, 'no_lang_code', 'name', 'Seisa Gear,ltd. (Japan)'),
(161018, 123928, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ć‚¤ć‚µ'),
(161019, 123929, 'no_lang_code', 'name', 'Katsura Co., Ltd. (Japan)'),
(161020, 123929, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę”‚ē²¾ę©Ÿč£½ä½œę‰€'),
(161021, 123930, 'no_lang_code', 'name', 'APIC Yamada Corporation (Japan)'),
(161022, 123930, 'ja', 'name', 'ć‚¢ćƒ”ćƒƒć‚Æćƒ¤ćƒžćƒ€ę Ŗå¼ä¼šē¤¾'),
(161023, 123931, 'no_lang_code', 'name', 'Tokin Corporation (Japan)'),
(161024, 123931, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ć‚­ćƒ³'),
(161025, 123932, 'es', 'name', 'Instituto Tecnológico de Rocas Ornamentales y Materiales de Construcción (INTROMAC)'),
(161026, 123932, 'en', 'name', 'Technological Institute of Ornamental Rocks and Construction Materials'),
(161027, 123933, 'no_lang_code', 'name', 'Tsuji Heavy Industries Co., Ltd. (Japan)'),
(161028, 123933, 'ja', 'name', 'č¾»ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(161029, 123934, 'nl', 'name', 'KU Leuven'),
(161030, 123935, 'no_lang_code', 'name', 'Aeon Co., Ltd. (Japan)'),
(161031, 123935, 'ja', 'name', 'ć‚¤ć‚Ŗćƒ³ę Ŗå¼ä¼šē¤¾'),
(161032, 123936, 'no_lang_code', 'name', 'Globe Environmental Protector Co., Ltd. (Japan)'),
(161033, 123936, 'ja', 'name', 'ć‚°ćƒ­ćƒ¼ćƒ–ć‚¤ćƒ¼ćƒ”ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(161034, 123937, 'no_lang_code', 'name', 'Organization to Support Revitalization of Business after the Great East Japan Earthquake Co., Ltd. (Japan)'),
(161035, 123937, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±ę—„ęœ¬å¤§éœ‡ē½äŗ‹ę„­č€…å†ē”Ÿę”Æę“ę©Ÿę§‹'),
(161036, 123938, 'en', 'name', 'BridgeBio Oncology Therapeutics (United States)'),
(161037, 123939, 'fr', 'name', 'UniversitƩ Nancy-II'),
(161038, 123940, 'no_lang_code', 'name', 'Shirai Electronics Industrial Co., Ltd. (Japan)'),
(161039, 123940, 'ja', 'name', 'ć‚·ćƒ©ć‚¤é›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161040, 123941, 'no_lang_code', 'name', 'Leader Electronics Corp. (Japan)'),
(161041, 123941, 'ja', 'name', 'ćƒŖćƒ¼ćƒ€ćƒ¼é›»å­ę Ŗå¼ä¼šē¤¾'),
(161042, 123942, 'no_lang_code', 'name', 'Geneworld Ltd. (Japan)'),
(161043, 123942, 'ja', 'name', 'ć‚øćƒ¼ćƒ³ćƒÆćƒ¼ćƒ«ćƒ‰ę Ŗå¼ä¼šē¤¾'),
(161044, 123943, 'no_lang_code', 'name', 'JSK Co., Ltd. (Japan)'),
(161045, 123943, 'ja', 'name', 'ę—„ęœ¬åˆ¶ē¦¦ę©Ÿå™Øę Ŗå¼ä¼šē¤¾'),
(161046, 123944, 'no_lang_code', 'name', 'Kawaken FINE Chemicals Co., Ltd. (Japan)'),
(161047, 123944, 'ja', 'name', 'å·ē ”ćƒ•ć‚”ć‚¤ćƒ³ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(161048, 123945, 'no_lang_code', 'name', 'Sugai Chemical Industry Co., Ltd. (Japan)'),
(161049, 123945, 'ja', 'name', 'ć‚¹ć‚¬ć‚¤åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161050, 123946, 'no_lang_code', 'name', 'Nachi-Fujikoshi Corp. (Japan)'),
(161051, 123946, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äøäŗŒč¶Š'),
(161052, 123947, 'no_lang_code', 'name', 'Rinnai Corporation (Japan)'),
(161053, 123947, 'ja', 'name', 'ćƒŖćƒ³ćƒŠć‚¤ę Ŗå¼ä¼šē¤¾'),
(161054, 123948, 'no_lang_code', 'name', 'Tanoi MFG. Co., Ltd. (Japan)'),
(161055, 123948, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē”°é‡Žäŗ•č£½ä½œę‰€'),
(161056, 123949, 'no_lang_code', 'name', 'Musashi Seimitsu Industry Co., Ltd. (Japan)'),
(161057, 123949, 'ja', 'name', 'ę­¦č”µē²¾åÆ†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161058, 123950, 'en', 'name', 'COER University'),
(161059, 123951, 'no_lang_code', 'name', 'Chukyo Yushi Co., Ltd. (Japan)'),
(161060, 123951, 'ja', 'name', 'äø­äŗ¬ę²¹č„‚ę Ŗå¼ä¼šē¤¾'),
(161061, 123952, 'no_lang_code', 'name', 'J-Pharma Co., Ltd. (Japan)'),
(161062, 123952, 'ja', 'name', 'ć‚øć‚§ć‚¤ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(161063, 123953, 'no_lang_code', 'name', 'Amine Pharma Research Institute (Japan)'),
(161064, 123953, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒŸćƒ³ćƒ•ć‚”ćƒ¼ćƒžē ”ē©¶ę‰€'),
(161065, 123954, 'no_lang_code', 'name', 'Crestec Corporation (Japan)'),
(161066, 123954, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ć‚¹ćƒ†ćƒƒć‚Æ'),
(161067, 123955, 'no_lang_code', 'name', 'Akita ZINC Co., Ltd. (Japan)'),
(161068, 123955, 'ja', 'name', 'ē§‹ē”°č£½éŒ¬ę Ŗå¼ä¼šē¤¾'),
(161069, 123956, 'fr', 'name', 'Conseil europƩen de la recherche'),
(161070, 123956, 'en', 'name', 'European Research Council'),
(161071, 123956, 'de', 'name', 'EuropƤischer Forschungsrat'),
(161072, 123957, 'no_lang_code', 'name', 'Prima MEAT Packers, Ltd. (Japan)'),
(161073, 123957, 'ja', 'name', 'ćƒ—ćƒŖćƒžćƒćƒ ę Ŗå¼ä¼šē¤¾'),
(161074, 123958, 'en', 'name', 'Prussian Cultural Heritage Foundation'),
(161075, 123958, 'de', 'name', 'Stiftung Preußischer Kulturbesitz'),
(161076, 123959, 'no_lang_code', 'name', 'Nipro Corporation (Japan)'),
(161077, 123959, 'ja', 'name', 'ćƒ‹ćƒ—ćƒ­ę Ŗå¼ä¼šē¤¾'),
(161078, 123960, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Toulouse'),
(161079, 123961, 'no_lang_code', 'name', 'Dr.Ci:Labo Co., Ltd. (Japan)'),
(161080, 123961, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‰ć‚Æć‚æćƒ¼ć‚·ćƒ¼ćƒ©ćƒœ'),
(161081, 123962, 'en', 'name', 'Joseph Sarwuan Tarka University Makurdi'),
(161082, 123963, 'en', 'name', 'Professor Jayashankar Telangana Agricultural University'),
(161083, 123963, 'te', 'name', 'ą°†ą°šą°¾ą°°ą±ą°Æ ą°œą°Æą°¶ą°‚ą°•ą°°ą± ą°µą±ą°Æą°µą°øą°¾ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(161084, 123964, 'no_lang_code', 'name', 'Ourstex Corporation (Japan)'),
(161085, 123964, 'ja', 'name', 'ć‚¢ćƒÆćƒ¼ć‚ŗćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(161086, 123965, 'en', 'name', 'Institute of Mechanics and Seismic Stability of Structures named after M.T. Urazbaev'),
(161087, 123965, 'uz', 'name', 'Mexanika va inshootlarning seysmik mustahkamligi instituti'),
(161088, 123965, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики Šø сейсмостойкости ŃŠ¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠ¹ им. М. Š¢. Уразбаева ŠŠ РУз'),
(161089, 123966, 'en', 'name', 'CAAN Communities, Alliances & Network'),
(161090, 123967, 'en', 'name', 'UCL Biomedical Research Centre'),
(161091, 123968, 'no_lang_code', 'name', 'Kimuratan Corporation (Japan)'),
(161092, 123968, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒ ćƒ©ć‚æćƒ³'),
(161093, 123969, 'es', 'name', 'Universidad de Vigo'),
(161094, 123969, 'gl', 'name', 'Universidade de Vigo'),
(161095, 123969, 'ca', 'name', 'Universitat de Vigo'),
(161096, 123969, 'en', 'name', 'University of Vigo'),
(161097, 123970, 'en', 'name', 'Science and Engineering Research Board'),
(161098, 123971, 'en', 'name', 'University of Clermont Auvergne'),
(161099, 123971, 'fr', 'name', 'UniversitƩ Clermont Auvergne'),
(161100, 123972, 'en', 'name', 'Zentalis Pharmaceuticals (United States)'),
(161101, 123973, 'no_lang_code', 'name', 'United, Inc. (Japan)'),
(161102, 123973, 'ja', 'name', 'ćƒ¦ćƒŠć‚¤ćƒ†ćƒƒćƒ‰ę Ŗå¼ä¼šē¤¾'),
(161103, 123974, 'no_lang_code', 'name', 'TDY Inc. (Japan)'),
(161104, 123974, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚£ćƒ¼ćƒ‡ć‚£ćƒ¼ćƒÆć‚¤'),
(161105, 123975, 'no_lang_code', 'name', 'Hanex Co., Ltd. (Japan)'),
(161106, 123975, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒćƒƒć‚Æć‚¹'),
(161107, 123976, 'no_lang_code', 'name', 'Fatware Inc. (Japan)'),
(161108, 123976, 'ja', 'name', 'ćƒ•ć‚”ćƒƒćƒˆć‚¦ć‚§ć‚¢ę Ŗå¼ä¼šē¤¾'),
(161109, 123977, 'no_lang_code', 'name', 'Noevir Co., Ltd. (Japan)'),
(161110, 123977, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŽć‚Øćƒ“ć‚¢'),
(161111, 123978, 'no_lang_code', 'name', 'Kurokawa Industrial Company, Ltd. (Japan)'),
(161112, 123978, 'ja', 'name', 'é»’å·å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161113, 123979, 'it', 'name', 'IRCCS Azienda Ospedaliera Metropolitana'),
(161114, 123980, 'no_lang_code', 'name', 'JECO Co., Ltd. (Japan)'),
(161115, 123980, 'ja', 'name', 'ć‚øć‚§ć‚³ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(161116, 123981, 'no_lang_code', 'name', 'T.D.I. Co., Ltd. (Japan)'),
(161117, 123981, 'ja', 'name', 'ęƒ…å ±ęŠ€č”“é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(161118, 123982, 'no_lang_code', 'name', 'Mastermind Co., Ltd. (Japan)'),
(161119, 123982, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžć‚¹ć‚æćƒ¼ćƒžć‚¤ćƒ³ćƒ‰'),
(161120, 123983, 'en', 'name', 'Enric Corbera Institute'),
(161121, 123984, 'no_lang_code', 'name', 'Hamagin Research Institute, Ltd. (Japan)'),
(161122, 123984, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęµœéŠ€ē·åˆē ”ē©¶ę‰€'),
(161123, 123985, 'no_lang_code', 'name', 'FDK Corporation (Japan)'),
(161124, 123985, 'ja', 'name', 'FDKę Ŗå¼ä¼šē¤¾'),
(161125, 123986, 'no_lang_code', 'name', 'Accelia, Inc (Japan)'),
(161126, 123986, 'ja', 'name', 'ć‚¢ć‚Æć‚»ćƒŖć‚¢ę Ŗå¼ä¼šē¤¾'),
(161127, 123987, 'fr', 'name', 'UniversitƩ Henri PoincarƩ'),
(161128, 123988, 'en', 'name', 'Federal School of Surveying, Oyo'),
(161129, 123989, 'no_lang_code', 'name', 'Mutsubishi Rubber Co., Ltd. (Japan)'),
(161130, 123989, 'ja', 'name', 'å…­č±ć‚“ćƒ ę Ŗå¼ä¼šē¤¾'),
(161131, 123990, 'no_lang_code', 'name', 'Bosch Rexroth, Japan (Japan)'),
(161132, 123990, 'ja', 'name', 'ćƒœćƒƒć‚·ćƒ„ćƒ»ćƒ¬ćƒƒć‚Æć‚¹ćƒ­ć‚¹ę Ŗå¼ä¼šē¤¾'),
(161133, 123991, 'eu', 'name', 'Paris-Saclayko Unibertsitatea'),
(161134, 123991, 'ca', 'name', 'Universitat ParĆ­s-Saclay'),
(161135, 123991, 'en', 'name', 'University of Paris-Saclay'),
(161136, 123991, 'fr', 'name', 'UniversitƩ Paris-Saclay'),
(161137, 123992, 'en', 'name', 'NIHR Moorfields Biomedical Research Centre'),
(161138, 123993, 'no_lang_code', 'name', 'Geneact, Inc. (Japan)'),
(161139, 123993, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ćƒ³ć‚¢ć‚Æćƒˆ'),
(161140, 123994, 'en', 'name', 'Shri Shankaracharya Professional University'),
(161141, 123995, 'en', 'name', 'Canada Foundation for Innovation'),
(161142, 123995, 'fr', 'name', 'Fondation canadienne pour l''innovation'),
(161143, 123996, 'en', 'name', 'Government of West Bengal'),
(161144, 123996, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— সরকার'),
(161145, 123997, 'no_lang_code', 'name', 'Aronkasei Co., Ltd. (Japan)'),
(161146, 123997, 'ja', 'name', 'ć‚¢ćƒ­ćƒ³åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(161147, 123998, 'en', 'name', 'Ogun State Institute of Technology Igbesa'),
(161148, 123999, 'no_lang_code', 'name', 'Satohide Corporation (Japan)'),
(161149, 123999, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ä½č—¤ē§€'),
(161150, 124000, 'no_lang_code', 'name', 'GL Sciences Inc. (Japan)'),
(161151, 124000, 'ja', 'name', 'ć‚øćƒ¼ć‚Øćƒ«ć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(161152, 124001, 'fr', 'name', 'Oxydation, Conservation, CaractƩrisation & Innovation des Aliments'),
(161153, 124002, 'en', 'name', 'Cognition Sciences, Technology, and Ergonomics'),
(161154, 124002, 'fr', 'name', 'Sciences de la Cognition, Technologie, Ergonomie'),
(161155, 124003, 'no_lang_code', 'name', 'YAMAKIN Co., Ltd. (Japan)'),
(161156, 124003, 'ja', 'name', 'YAMAKINę Ŗå¼ä¼šē¤¾'),
(161157, 124004, 'no_lang_code', 'name', 'Lazoc Incorporated (Japan)'),
(161158, 124004, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¬ćƒ¼ć‚¶ćƒƒć‚Æ'),
(161159, 124005, 'en', 'name', 'SCI Research Institute Co., Ltd.'),
(161160, 124005, 'no_lang_code', 'name', 'SCI Research Institute Co., Ltd. (Japan)'),
(161161, 124005, 'ja', 'name', 'SCIē·åˆē ”ē©¶ę‰€ę Ŗå¼ä¼šē¤¾'),
(161162, 124006, 'en', 'name', 'Medical Institute of Bioregulation, Kyushu University'),
(161163, 124006, 'ja', 'name', '九州大学 ē”Ÿä½“é˜²å¾”åŒ»å­¦ē ”ē©¶ę‰€'),
(161164, 124007, 'no_lang_code', 'name', 'For-A Eletex Co., Ltd. (Japan)'),
(161165, 124007, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęœ‹ę „ć‚Øćƒ¬ćƒ†ćƒƒć‚Æć‚¹'),
(161166, 124008, 'no_lang_code', 'name', 'Tomita Pharmaceutical Co., Ltd. (Japan)'),
(161167, 124008, 'ja', 'name', 'åÆŒē”°č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(161168, 124009, 'no_lang_code', 'name', 'Tenma Corporation (Japan)'),
(161169, 124009, 'ja', 'name', 'å¤©é¦¬ę Ŗå¼ä¼šē¤¾'),
(161170, 124010, 'en', 'name', 'Institute for Innovation & Sustainable Development in Food Chain'),
(161171, 124010, 'es', 'name', 'Instituto de Innovación y Sostenibilidad en la Cadena Agroalimentaria'),
(161172, 124011, 'en', 'name', 'NIHR Nottingham Hearing Biomedical Research Unit'),
(161173, 124012, 'no_lang_code', 'name', 'Ranco Japan Limited (Japan)'),
(161174, 124012, 'ja', 'name', 'ę—„ęœ¬ćƒ©ćƒ³ć‚³ę Ŗå¼ä¼šē¤¾'),
(161175, 124013, 'en', 'name', 'La Trobe University'),
(161176, 124014, 'no_lang_code', 'name', 'Primix Corporation (Japan)'),
(161177, 124014, 'ja', 'name', 'ćƒ—ćƒ©ć‚¤ćƒŸć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(161178, 124015, 'no_lang_code', 'name', 'Takuma Co., Ltd. (Japan)'),
(161179, 124015, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚Æćƒž'),
(161180, 124016, 'no_lang_code', 'name', 'Risho Kogyo Co., Ltd. (Japan)'),
(161181, 124016, 'ja', 'name', 'åˆ©ę˜Œå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161182, 124017, 'no_lang_code', 'name', 'Fukuvi Chemical Industry Co., Ltd. (Japan)'),
(161183, 124017, 'ja', 'name', 'ćƒ•ć‚Æćƒ“åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161184, 124018, 'en', 'name', 'Ballari Institute of Technology & Management'),
(161185, 124019, 'en', 'name', 'Bergen University College'),
(161186, 124019, 'no', 'name', 'HĆøgskolen i Bergen'),
(161187, 124020, 'no_lang_code', 'name', 'Fujikasui Engineering Co., Ltd. (Japan)'),
(161188, 124020, 'ja', 'name', 'åÆŒå£«åŒ–ę°“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161189, 124021, 'no_lang_code', 'name', 'Yanaihara Institute Inc. (Japan)'),
(161190, 124021, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ēŸ¢å†…åŽŸē ”ē©¶ę‰€'),
(161191, 124022, 'no_lang_code', 'name', 'Daiso Co., Ltd. (Japan)'),
(161192, 124022, 'ja', 'name', 'ćƒ€ć‚¤ć‚½ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(161193, 124023, 'no_lang_code', 'name', 'Biomatics, Inc. (Japan)'),
(161194, 124023, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚Ŗćƒžćƒ†ć‚£ć‚Æć‚¹'),
(161195, 124024, 'no_lang_code', 'name', 'Sosho Inc. (Japan)'),
(161196, 124024, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å‰µę™¶'),
(161197, 124025, 'no_lang_code', 'name', 'Yutoku Pharmaceutical IND. Co., Ltd. (Japan)'),
(161198, 124025, 'ja', 'name', 'ē„å¾³č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161199, 124026, 'no_lang_code', 'name', 'Saibu GAS Co., Ltd. (Japan)'),
(161200, 124026, 'ja', 'name', 'č„æéƒØć‚¬ć‚¹ę Ŗå¼ä¼šē¤¾'),
(161201, 124027, 'no_lang_code', 'name', 'MOLZA Corporation (Japan)'),
(161202, 124027, 'ja', 'name', 'MOLZAę Ŗå¼ä¼šē¤¾'),
(161203, 124028, 'no_lang_code', 'name', 'GOO Chemical Co., Ltd. (Japan)'),
(161204, 124028, 'ja', 'name', 'äŗ’åæœåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161205, 124029, 'no_lang_code', 'name', 'Rexxam Co., Ltd. (Japan)'),
(161206, 124029, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¬ć‚Æć‚¶ćƒ '),
(161207, 124030, 'no_lang_code', 'name', 'Webalance Co., Ltd. (Japan)'),
(161208, 124030, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¦ć‚§ćƒćƒ©ćƒ³ć‚¹'),
(161209, 124031, 'no_lang_code', 'name', 'Yokowo Co., Ltd. (Japan)'),
(161210, 124031, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒØć‚³ć‚Ŗ'),
(161211, 124032, 'en', 'name', 'Bordeaux Management School'),
(161212, 124032, 'fr', 'name', 'Bordeaux Ɖcole de Management'),
(161213, 124033, 'no_lang_code', 'name', 'Japan.e.m Co., Ltd. (Japan)'),
(161214, 124033, 'ja', 'name', 'ć‚øćƒ£ćƒ‘ćƒ³ćƒ»ć‚¤ćƒ¼ćƒ»ć‚Øćƒ ę Ŗå¼ä¼šē¤¾'),
(161215, 124034, 'no_lang_code', 'name', 'Cheminfonavi Inc. (Japan)'),
(161216, 124034, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚±ćƒ ć‚¤ćƒ³ćƒ•ć‚©ćƒŠćƒ“'),
(161217, 124035, 'no_lang_code', 'name', 'HABA Laboratories, Inc. (Japan)'),
(161218, 124035, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒ¼ćƒćƒ¼ē ”ē©¶ę‰€'),
(161219, 124036, 'no_lang_code', 'name', 'Chuetsu PULP & Paper Co., Ltd. (Japan)'),
(161220, 124036, 'ja', 'name', 'äø­č¶Šćƒ‘ćƒ«ćƒ—å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161221, 124037, 'no_lang_code', 'name', 'V-CUBE, Inc. (Japan)'),
(161222, 124037, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ–ć‚¤ć‚­ćƒ„ćƒ¼ćƒ–'),
(161223, 124038, 'en', 'name', 'Freehold Regional High School District'),
(161224, 124039, 'en', 'name', 'International Federation of Red Cross and Red Crescent Societies'),
(161225, 124040, 'no_lang_code', 'name', 'Zycube Co., Ltd. (Japan)'),
(161226, 124040, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¶ć‚¤ć‚­ćƒ„ćƒ¼ćƒ–'),
(161227, 124041, 'no_lang_code', 'name', 'Geomatec Co., Ltd. (Japan)'),
(161228, 124041, 'ja', 'name', 'ć‚øć‚Ŗćƒžćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(161229, 124042, 'no_lang_code', 'name', 'IMEX Co., Ltd. (Japan)'),
(161230, 124042, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ”ćƒƒć‚Æć‚¹'),
(161231, 124043, 'no_lang_code', 'name', 'UHT Corporation (Japan)'),
(161232, 124043, 'ja', 'name', 'UHTę Ŗå¼ä¼šē¤¾'),
(161233, 124044, 'no_lang_code', 'name', 'AUTO Chemical Industry Co., Ltd. (Japan)'),
(161234, 124044, 'ja', 'name', 'ć‚Ŗćƒ¼ćƒˆåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161235, 124045, 'fr', 'name', 'UniversitƩ Paul Verlaine - Metz'),
(161236, 124046, 'no_lang_code', 'name', 'Atago Co., Ltd. (Japan)'),
(161237, 124046, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚æć‚“'),
(161238, 124047, 'it', 'name', 'Fondazione Giuseppe Di Vittorio'),
(161239, 124048, 'no_lang_code', 'name', 'Innotech Corporation (Japan)'),
(161240, 124048, 'ja', 'name', 'ć‚¤ćƒŽćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(161241, 124049, 'en', 'name', 'Grenoble Alpes University'),
(161242, 124049, 'fr', 'name', 'UniversitƩ Grenoble Alpes'),
(161243, 124050, 'no_lang_code', 'name', 'Credit Saison Co., Ltd. (Japan)'),
(161244, 124050, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ćƒ‡ć‚£ć‚»ć‚¾ćƒ³'),
(161245, 124051, 'en', 'name', 'Warnborough College'),
(161246, 124052, 'no_lang_code', 'name', 'Seiwa Electric MFG. Co., Ltd. (Japan)'),
(161247, 124052, 'ja', 'name', 'ę˜Ÿå’Œé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(161248, 124053, 'no_lang_code', 'name', 'Intersolution Marketing Inc. (Japan)'),
(161249, 124053, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ć‚æćƒ¼ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ćƒžćƒ¼ć‚±ćƒ†ć‚£ćƒ³ć‚°'),
(161250, 124054, 'no_lang_code', 'name', 'A&D Co., Ltd. (Japan)'),
(161251, 124054, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ¼ćƒ»ć‚¢ćƒ³ćƒ‰ćƒ»ćƒ‡ć‚¤'),
(161252, 124055, 'en', 'name', 'Rajiv Gandhi University'),
(161253, 124055, 'ne', 'name', 'ą¤°ą¤¾ą¤œą„€ą¤µ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(161254, 124055, 'as', 'name', 'ą§°ą¦¾ą¦œą§€ą§± ą¦—ą¦¾ą¦Øą§ą¦§ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(161255, 124056, 'no_lang_code', 'name', 'Musashino Chemical Laboratory, Ltd. (Japan)'),
(161256, 124056, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę­¦č”µé‡ŽåŒ–å­¦ē ”ē©¶ę‰€'),
(161257, 124057, 'en', 'name', 'University of Madras'),
(161258, 124057, 'fr', 'name', 'UniversitƩ de madras'),
(161259, 124057, 'hi', 'name', 'ą¤®ą¤¦ą„ą¤°ą¤¾ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(161260, 124057, 'bn', 'name', 'ą¦®ą¦¾ą¦¦ą§ą¦°ą¦¾ą¦œ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(161261, 124057, 'ta', 'name', 'ą®šąÆ†ą®©ąÆą®©ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(161262, 124057, 'te', 'name', 'ą°®ą°¦ą±ą°°ą°¾ą°øą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(161263, 124057, 'kn', 'name', 'ą²®ą²¦ą³ą²°ą²¾ą²øą³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(161264, 124057, 'ml', 'name', 'ą“®ą“¦ąµą“°ą“¾ą“øąµ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(161265, 124058, 'no_lang_code', 'name', 'Pioneer Corporation (Japan)'),
(161266, 124058, 'ja', 'name', 'ćƒ‘ć‚¤ć‚Ŗćƒ‹ć‚¢ę Ŗå¼ä¼šē¤¾'),
(161267, 124059, 'en', 'name', 'University of Lorraine'),
(161268, 124059, 'fr', 'name', 'UniversitƩ de Lorraine'),
(161269, 124060, 'no_lang_code', 'name', 'Lonseal Corporation (Japan)'),
(161270, 124060, 'ja', 'name', 'ćƒ­ćƒ³ć‚·ćƒ¼ćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161271, 124061, 'no_lang_code', 'name', 'Zerotechno Co., Ltd. (Japan)'),
(161272, 124061, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¼ćƒ­ćƒ†ć‚ÆćƒŽ'),
(161273, 124062, 'no_lang_code', 'name', 'Sanada KOA Corporation (Japan)'),
(161274, 124062, 'ja', 'name', 'ēœŸē”°KOAę Ŗå¼ä¼šē¤¾'),
(161275, 124063, 'fr', 'name', 'Fondation de l''INRS'),
(161276, 124064, 'fr', 'name', 'Direction des Energies'),
(161277, 124065, 'no_lang_code', 'name', 'Fukoku Co., Ltd. (Japan)'),
(161278, 124065, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚³ć‚Æ'),
(161279, 124066, 'en', 'name', 'Arnold Ventures'),
(161280, 124067, 'no_lang_code', 'name', 'Fujimoto Chemicals Co., Ltd. (Japan)'),
(161281, 124067, 'ja', 'name', 'č—¤ęœ¬åŒ–å­¦č£½å“ę Ŗå¼ä¼šē¤¾'),
(161282, 124068, 'no_lang_code', 'name', 'Leger (Japan)'),
(161283, 124068, 'ja', 'name', 'ćƒ¬ć‚øć‚Øę Ŗå¼ä¼šē¤¾'),
(161284, 124069, 'no_lang_code', 'name', '3M Japan Limited (Japan)'),
(161285, 124069, 'ja', 'name', 'ć‚¹ćƒŖćƒ¼ć‚Øćƒ ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(161286, 124070, 'no_lang_code', 'name', 'Nikkei Information System Co., Ltd. (Japan)'),
(161287, 124070, 'ja', 'name', 'ę—„č»½ęƒ…å ±ć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(161288, 124071, 'en', 'name', 'Rajeev Institute of Technology'),
(161289, 124072, 'en', 'name', 'MRC Centre for Neurodevelopmental Disorders'),
(161290, 124073, 'no_lang_code', 'name', 'Fujitec Co., Ltd. (Japan)'),
(161291, 124073, 'ja', 'name', 'ćƒ•ć‚øćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(161292, 124074, 'no_lang_code', 'name', 'Drico Ltd. (Japan)'),
(161293, 124074, 'ja', 'name', 'ćƒ‰ćƒŖć‚³ę Ŗå¼ä¼šē¤¾'),
(161294, 124075, 'no_lang_code', 'name', 'Transparent Inc. (Japan)'),
(161295, 124075, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ©ćƒ³ć‚¹ćƒ‘ćƒ¬ćƒ³ćƒˆ'),
(161296, 124076, 'no_lang_code', 'name', 'Chuden Engineering Consultants Co., Ltd. (Japan)'),
(161297, 124076, 'ja', 'name', 'äø­é›»ęŠ€č”“ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(161298, 124077, 'fr', 'name', 'Centre d''Investigation Clinique - EpidƩmiologie Clinique Saint-Etienne'),
(161299, 124078, 'ms', 'name', 'Akademi Laut Malaysia'),
(161300, 124078, 'en', 'name', 'Malaysian Maritime Academy'),
(161301, 124078, 'zh', 'name', 'é©¬ę„č„æäŗšęµ·äŗ‹å­¦é™¢'),
(161302, 124079, 'no_lang_code', 'name', 'FUSIC Co., Ltd. (Japan)'),
(161303, 124079, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾FUSIC'),
(161304, 124080, 'no_lang_code', 'name', 'Crono Works (Japan)'),
(161305, 124080, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚Æćƒ­ćƒŽćƒÆćƒ¼ć‚Æć‚¹'),
(161306, 124081, 'no_lang_code', 'name', 'Sugatec Corporation (Japan)'),
(161307, 124081, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ć‚¬ćƒ†ćƒƒć‚Æ'),
(161308, 124082, 'no_lang_code', 'name', 'Asahi-Seiki MFG. Co., Ltd. (Japan)'),
(161309, 124082, 'ja', 'name', 'ę—­ē²¾ę©Ÿå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161310, 124083, 'no_lang_code', 'name', 'Mebiopharm Co., Ltd. (Japan)'),
(161311, 124083, 'ja', 'name', 'ćƒ”ćƒ“ć‚Ŗćƒ•ć‚”ćƒ¼ćƒ ę Ŗå¼ä¼šē¤¾'),
(161312, 124084, 'no_lang_code', 'name', 'Kakui Co., Ltd. (Japan)'),
(161313, 124084, 'ja', 'name', 'ć‚«ć‚Æć‚¤ę Ŗå¼ä¼šē¤¾'),
(161314, 124085, 'no_lang_code', 'name', 'Panahome Corporation (Japan)'),
(161315, 124085, 'ja', 'name', 'ćƒ‘ćƒŠćƒ›ćƒ¼ćƒ ę Ŗå¼ä¼šē¤¾'),
(161316, 124086, 'no_lang_code', 'name', 'Namura Shipbuilding Co., Ltd. (Japan)'),
(161317, 124086, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åę‘é€ čˆ¹ę‰€'),
(161318, 124087, 'no_lang_code', 'name', 'CREO Co., Ltd. (Japan)'),
(161319, 124087, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ć‚Ŗ'),
(161320, 124088, 'id', 'name', 'Politeknik Sukabumi'),
(161321, 124089, 'no_lang_code', 'name', 'Kitano Construction Corp. (Japan)'),
(161322, 124089, 'ja', 'name', 'åŒ—é‡Žå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(161323, 124090, 'no_lang_code', 'name', 'NKSJ Holdings, Inc. (Japan)'),
(161324, 124090, 'ja', 'name', 'NKSJćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(161325, 124091, 'en', 'name', 'Opna Bio (United States)'),
(161326, 124092, 'no_lang_code', 'name', 'Chitose Laboratory Corp. (Japan)'),
(161327, 124092, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć”ćØć›ē ”ē©¶ę‰€'),
(161328, 124093, 'no_lang_code', 'name', 'Nakano Refrigerators Co., Ltd. (Japan)'),
(161329, 124093, 'ja', 'name', 'äø­é‡Žå†·ę©Ÿę Ŗå¼ä¼šē¤¾'),
(161330, 124094, 'en', 'name', 'Rauf Ablyazov East European University'),
(161331, 124094, 'uk', 'name', 'Š”Ń…Ń–Š“Š½Š¾Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š Š°ŃƒŃ„Š° ŠŠ±Š»ŃŠ·Š¾Š²Š°'),
(161332, 124095, 'en', 'name', 'Borana University'),
(161333, 124096, 'no_lang_code', 'name', 'Comota Co., Ltd. (Japan)'),
(161334, 124096, 'ja', 'name', 'ć‚³ćƒ¢ć‚æę Ŗå¼ä¼šē¤¾'),
(161335, 124097, 'no_lang_code', 'name', 'Tazmo Co., Ltd. (Japan)'),
(161336, 124097, 'ja', 'name', 'ć‚æćƒ„ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(161337, 124098, 'no_lang_code', 'name', 'Technomics Inc. (Japan)'),
(161338, 124098, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚ÆćƒŽćƒŸćƒƒć‚Æ'),
(161339, 124099, 'no_lang_code', 'name', 'Seiryo Electric Engineering Corp. (Japan)'),
(161340, 124099, 'ja', 'name', 'č„æč±é›»ę©Ÿć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(161341, 124100, 'de', 'name', 'Helmholtz Zentrum München'),
(161342, 124101, 'no_lang_code', 'name', 'Pico-Device Co (Japan)'),
(161343, 124101, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒ”ć‚³ćƒ‡ćƒć‚¤ć‚¹'),
(161344, 124102, 'en', 'name', 'Ford Foundation'),
(161345, 124103, 'en', 'name', 'NIHR Birmingham Liver Biomedical Research Unit'),
(161346, 124104, 'en', 'name', 'MORAI (South Korea)'),
(161347, 124105, 'en', 'name', 'Aix-Marseille University'),
(161348, 124105, 'fr', 'name', 'Aix-Marseille UniversitƩ'),
(161349, 124106, 'no_lang_code', 'name', 'Opis Co., Ltd. (Japan)'),
(161350, 124106, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ćƒ”ć‚¹'),
(161351, 124107, 'no_lang_code', 'name', 'Shoda Shoyu Co., Ltd. (Japan)'),
(161352, 124107, 'ja', 'name', 'ę­£ē”°é†¤ę²¹ę Ŗå¼ä¼šē¤¾'),
(161353, 124108, 'no_lang_code', 'name', 'Horai Co., Ltd. (Japan)'),
(161354, 124108, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ›ćƒ¼ćƒ©ć‚¤'),
(161355, 124109, 'no_lang_code', 'name', 'Bourbon Corporation (Japan)'),
(161356, 124109, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ–ćƒ«ćƒœćƒ³'),
(161357, 124110, 'no_lang_code', 'name', 'Daisue Construction Co., Ltd. (Japan)'),
(161358, 124110, 'ja', 'name', 'å¤§ęœ«å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(161359, 124111, 'es', 'name', 'Centro de Investigación en Ciencia Aplicada y Tecnología Avanzada, Unidad Altamira'),
(161360, 124112, 'no_lang_code', 'name', 'Mushpia Co. Ltd (Japan)'),
(161361, 124112, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžćƒƒć‚·ćƒ„ćƒ”ć‚¢'),
(161362, 124113, 'en', 'name', 'Sustainable Seas Trust'),
(161363, 124114, 'en', 'name', 'Chaudhary Charan Singh University'),
(161364, 124114, 'hi', 'name', 'ą¤šą„Œą¤§ą¤°ą„€ चरण सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(161365, 124114, 'ta', 'name', 'சௌதரி ą®šą®°ą®£ąÆ ą®šą®æą®™ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(161366, 124115, 'no_lang_code', 'name', 'Majima Company Limited (Japan)'),
(161367, 124115, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžć‚øćƒž'),
(161368, 124116, 'no_lang_code', 'name', 'Kimoto Co., Ltd. (Japan)'),
(161369, 124116, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćć‚‚ćØ'),
(161370, 124117, 'no_lang_code', 'name', 'Sanpo Electrical And Mechanical Engineering Corporation (Japan)'),
(161371, 124117, 'ja', 'name', 'äø‰å®é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(161372, 124118, 'no_lang_code', 'name', 'Hisaka Works, Ltd. (Japan)'),
(161373, 124118, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—„é˜Ŗč£½ä½œę‰€'),
(161374, 124119, 'no_lang_code', 'name', 'Atmark Techno, Inc. (Japan)'),
(161375, 124119, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒƒćƒˆćƒžćƒ¼ć‚Æćƒ†ć‚ÆćƒŽ'),
(161376, 124120, 'no_lang_code', 'name', 'Morimoto Corporation (Japan)'),
(161377, 124120, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę£®ęœ¬ēµ„'),
(161378, 124121, 'no_lang_code', 'name', 'Richell Corporation (Japan)'),
(161379, 124121, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŖćƒƒćƒć‚§ćƒ«'),
(161380, 124122, 'no_lang_code', 'name', 'Kanai JUYO Kogyo Co., Ltd. (Japan)'),
(161381, 124122, 'ja', 'name', 'é‡‘äŗ•é‡č¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161382, 124123, 'fr', 'name', 'HƓpital Santa Cabrini'),
(161383, 124124, 'no_lang_code', 'name', 'Yamatake Corporation (Japan)'),
(161384, 124124, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å±±ę­¦'),
(161385, 124125, 'en', 'name', 'Kyushu University'),
(161386, 124125, 'ja', 'name', '九州大学'),
(161387, 124126, 'no_lang_code', 'name', 'Daiseki Co., Ltd. (Japan)'),
(161388, 124126, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ć‚»ć‚­'),
(161389, 124127, 'no_lang_code', 'name', 'Tsuken Electric IND. Co., Ltd. (Japan)'),
(161390, 124127, 'ja', 'name', 'é€šē ”é›»ę°—å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161391, 124128, 'no_lang_code', 'name', 'Nikkeikakou Co., Ltd. (Japan)'),
(161392, 124128, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒƒć‚±ć‚¤åŠ å·„'),
(161393, 124129, 'no_lang_code', 'name', 'Inoue Kinzoku Kogyo Co., Ltd. (Japan)'),
(161394, 124129, 'ja', 'name', 'äŗ•äøŠé‡‘å±žå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161395, 124130, 'no_lang_code', 'name', 'Kistem Co., Ltd. (Japan)'),
(161396, 124130, 'ja', 'name', 'ć‚­ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(161397, 124131, 'no_lang_code', 'name', 'Ohashi Chemical Industries Ltd. (Japan)'),
(161398, 124131, 'ja', 'name', 'å¤§ę©‹åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161399, 124132, 'no_lang_code', 'name', 'Inter-Valve Technology Corporation (Japan)'),
(161400, 124132, 'ja', 'name', 'ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒ«ćƒ–ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(161401, 124133, 'no_lang_code', 'name', 'Stagen Co., Ltd. (Japan)'),
(161402, 124133, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ć‚æćƒ¼ć‚øć‚§ćƒ³'),
(161403, 124134, 'no_lang_code', 'name', 'Nippoh Chemicals Co., Ltd. (Japan)'),
(161404, 124134, 'ja', 'name', 'ę—„å®åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(161405, 124135, 'no_lang_code', 'name', 'TOLI Corporation (Japan)'),
(161406, 124135, 'ja', 'name', 'ę±ćƒŖę Ŗå¼ä¼šē¤¾'),
(161407, 124136, 'no_lang_code', 'name', 'Rockwave Co., Ltd. (Japan)'),
(161408, 124136, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ­ćƒƒć‚Æć‚¦ć‚§ćƒ¼ćƒ–'),
(161409, 124137, 'no_lang_code', 'name', 'JMA Research Institute (Japan)'),
(161410, 124137, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—„ęœ¬čƒ½ēŽ‡å”ä¼šē·åˆē ”ē©¶ę‰€'),
(161411, 124138, 'no_lang_code', 'name', 'Ysystems Ltd. (Japan)'),
(161412, 124138, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒÆć‚¤ćƒ»ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(161413, 124139, 'tr', 'name', 'TÜBİTAK Marmara Araştırma Merkezi'),
(161414, 124139, 'en', 'name', 'TÜBİTAK Marmara Research Center'),
(161415, 124140, 'no_lang_code', 'name', 'Dibrugarh University'),
(161416, 124140, 'bn', 'name', 'ą¦”ą¦æą¦¬ą§ą¦°ą§ą¦—ą¦”ą¦¼ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(161417, 124141, 'no_lang_code', 'name', 'HOGY Medical Co., Ltd. (Japan)'),
(161418, 124141, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ›ć‚®ćƒ”ćƒ‡ć‚£ć‚«ćƒ«'),
(161419, 124142, 'no_lang_code', 'name', 'CKD Corporation (Japan)'),
(161420, 124142, 'ja', 'name', 'CKDę Ŗå¼ä¼šē¤¾'),
(161421, 124143, 'no_lang_code', 'name', 'Emerging Technologies Corporation (Japan)'),
(161422, 124143, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒžćƒ¼ć‚øćƒ³ć‚°ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(161423, 124144, 'en', 'name', 'NIHR Greater Manchester Patient Safety Translational Research Centre'),
(161424, 124145, 'no_lang_code', 'name', 'Hochiki Corp. (Japan)');
INSERT INTO `ror_settings` VALUES
(161425, 124145, 'ja', 'name', 'ćƒ›ćƒ¼ćƒć‚­ę Ŗå¼ä¼šē¤¾'),
(161426, 124146, 'no_lang_code', 'name', 'ECO-TRI, Inc. (Japan)'),
(161427, 124146, 'ja', 'name', 'ć‚Øć‚³ćƒˆćƒ©ć‚¤ę Ŗå¼ä¼šē¤¾'),
(161428, 124147, 'en', 'name', 'Egyptian Chinese University'),
(161429, 124147, 'ar', 'name', 'الجامعه Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ų§Ł„ŲµŁŠŁ†ŁŠŲ©'),
(161430, 124148, 'no_lang_code', 'name', 'SUN-EH Electric Co., Ltd. (Japan)'),
(161431, 124148, 'ja', 'name', 'ć‚µćƒ³ć‚Øćƒ¼é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(161432, 124149, 'no_lang_code', 'name', 'OHBA Co., Ltd. (Japan)'),
(161433, 124149, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗć‚Ŗćƒ'),
(161434, 124150, 'no_lang_code', 'name', 'Hanwa Electronic IND. Co., Ltd. (Japan)'),
(161435, 124150, 'ja', 'name', 'é˜Ŗå’Œé›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161436, 124151, 'no_lang_code', 'name', 'Oiles Corporation (Japan)'),
(161437, 124151, 'ja', 'name', 'ć‚Ŗć‚¤ćƒ¬ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161438, 124152, 'no_lang_code', 'name', 'Shimomura IND. Co., Ltd. (Japan)'),
(161439, 124152, 'ja', 'name', 'äø‹ę‘å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161440, 124153, 'no_lang_code', 'name', 'Yudensha Co., Ltd. (Japan)'),
(161441, 124153, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é›„é›»ē¤¾'),
(161442, 124154, 'no_lang_code', 'name', 'Yamashina Corporation (Japan)'),
(161443, 124154, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¤ćƒžć‚·ćƒŠ'),
(161444, 124155, 'no_lang_code', 'name', 'Kikusui Electronics Corp. (Japan)'),
(161445, 124155, 'ja', 'name', 'čŠę°“é›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161446, 124156, 'no_lang_code', 'name', 'OTAX Co., Ltd. (Japan)'),
(161447, 124156, 'ja', 'name', 'ć‚Ŗćƒ¼ć‚æćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(161448, 124157, 'en', 'name', 'Bharati Vidyapeeth Deemed University'),
(161449, 124157, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(161450, 124158, 'en', 'name', 'Robert Wood Johnson Foundation'),
(161451, 124159, 'no_lang_code', 'name', 'UEDA Japan Radio Co., Ltd. (Japan)'),
(161452, 124159, 'ja', 'name', 'äøŠē”°ę—„ęœ¬ē„”ē·šę Ŗå¼ä¼šē¤¾'),
(161453, 124160, 'no_lang_code', 'name', 'Aquas Corporation (Japan)'),
(161454, 124160, 'ja', 'name', 'ć‚¢ć‚Æć‚¢ć‚¹ę Ŗå¼ä¼šē¤¾'),
(161455, 124161, 'en', 'name', 'Institute of Bioorganic Chemistry, Polish Academy of Sciences'),
(161456, 124161, 'pl', 'name', 'Instytut Chemii Bioorganicznej Polskiej Akademii Nauk'),
(161457, 124162, 'no_lang_code', 'name', 'GH Craft Co., Ltd. (Japan)'),
(161458, 124162, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ć‚Øć‚¤ćƒć‚Æćƒ©ćƒ•ćƒˆ'),
(161459, 124163, 'no_lang_code', 'name', 'Pharma Foods International Co., Ltd. (Japan)'),
(161460, 124163, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚”ćƒ¼ćƒžćƒ•ćƒ¼ć‚ŗ'),
(161461, 124164, 'en', 'name', 'Plant and Environmental Research Institute (PERI)'),
(161462, 124165, 'en', 'name', 'Northern University of Business and Technology Khulna'),
(161463, 124166, 'en', 'name', 'Victorian Centre for Functional Genomics'),
(161464, 124167, 'en', 'name', 'University of California Santa Barbara Microscopy and Microanalysis Facility'),
(161465, 124168, 'no_lang_code', 'name', 'Yamabiko Corporation (Japan)'),
(161466, 124168, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚„ć¾ć³ć“'),
(161467, 124169, 'fr', 'name', 'FƩdƩration de Recherche Agrobiosciences, Interactions et BiodiversitƩ'),
(161468, 124170, 'no_lang_code', 'name', 'UDK Construction Inc. (Japan)'),
(161469, 124170, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ¼ćƒ‡ć‚£ć‚±ćƒ¼'),
(161470, 124171, 'no_lang_code', 'name', 'Chuoh PACK Industry Co., Ltd. (Japan)'),
(161471, 124171, 'ja', 'name', 'äø­å¤®ē“™å™Øå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161472, 124172, 'no_lang_code', 'name', 'Wakayama Precision Company (Japan)'),
(161473, 124172, 'ja', 'name', 'č‹„å±±ē²¾åÆ†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161474, 124173, 'cy', 'name', 'Prifysgol De Cymru'),
(161475, 124173, 'en', 'name', 'University of South Wales'),
(161476, 124174, 'no_lang_code', 'name', 'Igunoss, Inc. (Japan)'),
(161477, 124174, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚¤ć‚°ćƒŽć‚¹'),
(161478, 124175, 'en', 'name', 'King Mongkut''s Institute of Technology Ladkrabang'),
(161479, 124175, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ą¹€ąøˆą¹‰ąø²ąø„ąøøąø“ąø—ąø«ąø²ąø£ąø„ąø²ąø”ąøąø£ąø°ąøšąø±ąø‡'),
(161480, 124176, 'no_lang_code', 'name', 'SCRIPPS Laboratories, Inc. (Japan)'),
(161481, 124176, 'ja', 'name', 'ć‚¹ć‚ÆćƒŖćƒƒćƒ—ć‚¹ćƒ»ćƒ©ćƒœćƒ©ćƒˆćƒŖćƒ¼ć‚ŗćƒ»ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(161482, 124177, 'no_lang_code', 'name', 'Lubrizol Japan Limited (Japan)'),
(161483, 124177, 'ja', 'name', 'ę—„ęœ¬ćƒ«ćƒ¼ćƒ–ćƒŖć‚¾ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(161484, 124178, 'en', 'name', 'Luxembourg Institute of Science and Technology'),
(161485, 124179, 'en', 'name', 'National Academy of Legal Sciences of Ukraine'),
(161486, 124179, 'uk', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ правовых наук Украины'),
(161487, 124180, 'no_lang_code', 'name', 'Vinyframe Industry Co., Ltd. (Japan)'),
(161488, 124180, 'ja', 'name', 'ćƒ“ćƒ‹ćƒ•ćƒ¬ćƒ¼ćƒ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161489, 124181, 'no_lang_code', 'name', 'Ibiko Corporation (Japan)'),
(161490, 124181, 'ja', 'name', 'ę–ę–å·å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161491, 124182, 'fr', 'name', 'Institut de Recherche en Droit EuropƩen, International et ComparƩ (fr)'),
(161492, 124182, 'en', 'name', 'Institute for Research in European, International and Comparative Law (en)'),
(161493, 124183, 'no_lang_code', 'name', 'HUMANIX Co., Ltd. (Japan)'),
(161494, 124183, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾HUMANIX'),
(161495, 124184, 'no_lang_code', 'name', 'World Chemical Co., Ltd. (Japan)'),
(161496, 124184, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒÆćƒ¼ćƒ«ćƒ‰ć‚±ćƒŸć‚«ćƒ«'),
(161497, 124185, 'no_lang_code', 'name', 'Matsuura Yakugyo Co., Ltd. (Japan)'),
(161498, 124185, 'ja', 'name', 'ę¾ęµ¦č–¬ę„­ę Ŗå¼ä¼šē¤¾'),
(161499, 124186, 'en', 'name', 'Technological Educational Institute of Piraeus'),
(161500, 124186, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Πειραιά'),
(161501, 124187, 'no_lang_code', 'name', 'MUSH-TEC Co., Ltd. (Japan)'),
(161502, 124187, 'ja', 'name', 'ćƒžćƒƒć‚·ćƒ„ćƒ»ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(161503, 124188, 'no_lang_code', 'name', 'Micro-Technica Co., Ltd. (Japan)'),
(161504, 124188, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžć‚¤ć‚Æćƒ­ćƒ»ćƒ†ć‚Æćƒ‹ć‚«'),
(161505, 124189, 'en', 'name', 'G.S. Kostiuk Institute of Psychology of the National Academy of Educational Sciences of Ukraine'),
(161506, 124189, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психології імені Š“.Š”. ŠšŠ¾ŃŃ‚ŃŽŠŗŠ° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії пеГагогічних наук України'),
(161507, 124190, 'no_lang_code', 'name', 'Nitchitsu Co., Ltd. (Japan)'),
(161508, 124190, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒƒćƒćƒ„'),
(161509, 124191, 'no_lang_code', 'name', 'Arakawa Chemical Industries, Ltd. (Japan)'),
(161510, 124191, 'ja', 'name', 'č’å·åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161511, 124192, 'no_lang_code', 'name', 'Logisnext Co., Ltd. (Japan)'),
(161512, 124192, 'ja', 'name', 'ćƒ­ć‚øć‚¹ćƒć‚Æć‚¹ćƒˆćƒ¦ćƒ‹ć‚­ćƒ£ćƒŖć‚¢ę Ŗå¼ä¼šē¤¾'),
(161513, 124193, 'no_lang_code', 'name', 'Wesco Inc. (Japan)'),
(161514, 124193, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¦ć‚Øć‚¹ć‚³'),
(161515, 124194, 'no_lang_code', 'name', 'Telnite Co., Ltd. (Japan)'),
(161516, 124194, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ćƒ«ćƒŠć‚¤ćƒˆ'),
(161517, 124195, 'en', 'name', 'Department of Science and Technology and Biotechnology'),
(161518, 124196, 'no_lang_code', 'name', 'Kentech Corporation (Japan)'),
(161519, 124196, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚±ćƒ³ćƒ†ćƒƒć‚Æ'),
(161520, 124197, 'en', 'name', 'Nandha Siddha Medical College and Hospital'),
(161521, 124198, 'en', 'name', 'National Pedagogical Institute of the Czech Republic'),
(161522, 124198, 'cs', 'name', 'NÔrodní pedagogický institut České republiky'),
(161523, 124199, 'sv', 'name', 'Klimat- och nƤringslivsdepartementet'),
(161524, 124199, 'en', 'name', 'Ministry of Climate and Enterprise'),
(161525, 124200, 'no_lang_code', 'name', 'Anaeropharma Science (Japan)'),
(161526, 124200, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒćƒ­ćƒ•ć‚”ćƒ¼ćƒžćƒ»ć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(161527, 124201, 'fr', 'name', 'Laboratoire de Physique et Chimie des Nano-Objets'),
(161528, 124202, 'no_lang_code', 'name', 'Janssen Pharmaceutical K.K. (Japan)'),
(161529, 124202, 'ja', 'name', 'ćƒ¤ćƒ³ć‚»ćƒ³ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(161530, 124203, 'no_lang_code', 'name', 'Hosei Brake Industry Co., Ltd. (Japan)'),
(161531, 124203, 'ja', 'name', 'č±Šē”Ÿćƒ–ćƒ¬ćƒ¼ć‚­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161532, 124204, 'no_lang_code', 'name', 'Siliconit Co., Ltd. (Japan)'),
(161533, 124204, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ćƒŖć‚³ćƒ‹ćƒƒćƒˆ'),
(161534, 124205, 'no_lang_code', 'name', 'Kagome Co., Ltd. (Japan)'),
(161535, 124205, 'ja', 'name', 'ć‚«ć‚“ćƒ”ę Ŗå¼ä¼šē¤¾'),
(161536, 124206, 'no_lang_code', 'name', 'Toyoko Elmes Co., Ltd. (Japan)'),
(161537, 124206, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±ęØŖć‚Øćƒ«ćƒ”ć‚¹'),
(161538, 124207, 'no_lang_code', 'name', 'Kaiyo Engineering Co., Ltd. (Japan)'),
(161539, 124207, 'ja', 'name', 'ęµ·ę“‹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(161540, 124208, 'no_lang_code', 'name', 'Shinnihon Corporation (Japan)'),
(161541, 124208, 'ja', 'name', 'ę–°ę—„ęœ¬å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(161542, 124209, 'en', 'name', 'Peoples'' Friendship University of Russia'),
(161543, 124209, 'ru', 'name', 'Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š“Ń€ŃƒŠ¶Š±Ń‹ нароГов'),
(161544, 124210, 'no_lang_code', 'name', 'Statcom Co., Ltd. (Japan)'),
(161545, 124210, 'ja', 'name', 'ć‚¹ć‚æćƒƒćƒˆć‚³ćƒ ę Ŗå¼ä¼šē¤¾'),
(161546, 124211, 'no_lang_code', 'name', 'Technical Electron Co., Ltd. (Japan)'),
(161547, 124211, 'ja', 'name', 'ćƒ†ć‚Æćƒ‹ć‚«ćƒ«é›»å­ę Ŗå¼ä¼šē¤¾'),
(161548, 124212, 'no_lang_code', 'name', 'Hagoromofoods Corporation (Japan)'),
(161549, 124212, 'ja', 'name', 'ćÆć”ć‚ć‚‚ćƒ•ćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(161550, 124213, 'no_lang_code', 'name', 'TSS LINK, Inc. (Japan)'),
(161551, 124213, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚£ć‚Øć‚¹ć‚Øć‚¹ćƒŖćƒ³ć‚Æ'),
(161552, 124214, 'no_lang_code', 'name', 'Solar Frontier K.K. (Japan)'),
(161553, 124214, 'ja', 'name', 'ć‚½ćƒ¼ćƒ©ćƒ¼ćƒ•ćƒ­ćƒ³ćƒ†ć‚£ć‚¢ę Ŗå¼ä¼šē¤¾'),
(161554, 124215, 'no_lang_code', 'name', 'Tahara Manufacturing Co., Ltd. (Japan)'),
(161555, 124215, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē”°åŽŸč£½ä½œę‰€'),
(161556, 124216, 'no_lang_code', 'name', 'Sankyu Inc. (Japan)'),
(161557, 124216, 'ja', 'name', 'å±±ä¹ę Ŗå¼ä¼šē¤¾'),
(161558, 124217, 'no_lang_code', 'name', 'BIO-MAKE Company Ltd. (Japan)'),
(161559, 124217, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚Ŗćƒ”ć‚¤ć‚Æ'),
(161560, 124218, 'en', 'name', 'The University of Texas at San Antonio'),
(161561, 124218, 'fr', 'name', 'UniversitƩ du texas Ơ san antonio'),
(161562, 124219, 'no_lang_code', 'name', 'Senshu Scientific Co., Ltd. (Japan)'),
(161563, 124219, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ćƒ³ć‚·ćƒ„ćƒ¼ē§‘å­¦'),
(161564, 124220, 'en', 'name', 'University of Al-Ameed'),
(161565, 124220, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł…ŁŠŲÆ'),
(161566, 124221, 'en', 'name', 'Ministry of Sciences, Humanities, Technology and Innovation'),
(161567, 124221, 'es', 'name', 'Secretaría de Ciencia, Humanidades, Tecnología e Innovación'),
(161568, 124222, 'no_lang_code', 'name', 'Cluster Technology Co., Ltd. (Japan)'),
(161569, 124222, 'ja', 'name', 'ć‚Æćƒ©ć‚¹ć‚æćƒ¼ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(161570, 124223, 'en', 'name', 'Diakonhjemmet University College'),
(161571, 124223, 'no', 'name', 'Diakonhjemmet hĆøgskole'),
(161572, 124224, 'pt', 'name', 'Faculdade de CiĆŖncias da SaĆŗde de Barretos Dr. Paulo Prata'),
(161573, 124225, 'no_lang_code', 'name', 'Interrobot Inc. (Japan)'),
(161574, 124225, 'ja', 'name', 'ć‚¤ćƒ³ć‚æćƒ­ćƒœćƒƒćƒˆę Ŗå¼ä¼šē¤¾'),
(161575, 124226, 'no_lang_code', 'name', 'Katsumura Construction Co., Ltd. (Japan)'),
(161576, 124226, 'ja', 'name', 'å‹ę‘å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(161577, 124227, 'no_lang_code', 'name', 'Gyosei System Kyushu (Japan)'),
(161578, 124227, 'ja', 'name', 'č”Œę”æć‚·ć‚¹ćƒ†ćƒ ä¹å·žę Ŗå¼ä¼šē¤¾'),
(161579, 124228, 'no_lang_code', 'name', 'Tsumiki House Co., Ltd. (Japan)'),
(161580, 124228, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć¤ćæććƒć‚¦ć‚¹'),
(161581, 124229, 'no_lang_code', 'name', 'Bellzsystem, Inc (Japan)'),
(161582, 124229, 'ja', 'name', 'ćƒ™ćƒ«ć‚ŗć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(161583, 124230, 'id', 'name', 'Sekolah Tinggi Teologi Pelita Kebenaran'),
(161584, 124231, 'es', 'name', 'Agencia Nacional de Investigación e Innovación'),
(161585, 124232, 'no_lang_code', 'name', 'Soshin Electric Co., Ltd. (Japan)'),
(161586, 124232, 'ja', 'name', 'åŒäæ”é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(161587, 124233, 'no_lang_code', 'name', 'Ryonetsu Co., Ltd. (Japan)'),
(161588, 124233, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č±ē†±'),
(161589, 124234, 'no_lang_code', 'name', 'Tohcello Co., Ltd. (Japan)'),
(161590, 124234, 'ja', 'name', 'ę±ć‚»ćƒ­ę Ŗå¼ä¼šē¤¾'),
(161591, 124235, 'en', 'name', 'Swedish Research Council for Health Working Life and Welfare'),
(161592, 124236, 'en', 'name', 'Crescendo Biologics Ltd. (United Kingdom)'),
(161593, 124237, 'no_lang_code', 'name', 'Bestsystems Inc. (Japan)'),
(161594, 124237, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ™ć‚¹ćƒˆć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(161595, 124238, 'no_lang_code', 'name', 'Venture Vision Co., Ltd. (Japan)'),
(161596, 124238, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ™ćƒ³ćƒćƒ£ćƒ¼ćƒ“ć‚øćƒ§ćƒ³'),
(161597, 124239, 'no_lang_code', 'name', 'NON-Destructive Inspection Co., Ltd. (Japan)'),
(161598, 124239, 'ja', 'name', 'éžē “å£Šę¤œęŸ»ę Ŗå¼ä¼šē¤¾'),
(161599, 124240, 'en', 'name', 'Turkish Academic Network and Information Center'),
(161600, 124240, 'tr', 'name', 'Ulusal Akademik Ağ ve Bilgi Merkezi'),
(161601, 124241, 'no_lang_code', 'name', 'Wacker Asahikasei Silicone Co., Ltd. (Japan)'),
(161602, 124241, 'ja', 'name', 'ę—­åŒ–ęˆćƒÆćƒƒć‚«ćƒ¼ć‚·ćƒŖć‚³ćƒ¼ćƒ³ę Ŗå¼ä¼šē¤¾'),
(161603, 124242, 'no_lang_code', 'name', 'Sunlit Japan Corp. (Japan)'),
(161604, 124242, 'ja', 'name', 'ć‚µćƒ³ćƒŖćƒƒćƒˆć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(161605, 124243, 'no_lang_code', 'name', 'Toenec Corporation (Japan)'),
(161606, 124243, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ć‚Øćƒćƒƒć‚Æ'),
(161607, 124244, 'en', 'name', 'KONČAR - Electrical Engineering Institute'),
(161608, 124244, 'hr', 'name', 'KONČAR - Institut za elektrotehniku'),
(161609, 124245, 'es', 'name', 'Hospital Universitario Fundación Jiménez Díaz'),
(161610, 124246, 'no_lang_code', 'name', 'Miraial Co., Ltd. (Japan)'),
(161611, 124246, 'ja', 'name', 'ćƒŸćƒ©ć‚¤ć‚¢ćƒ«ę Ŗå¼ä¼šē¤¾'),
(161612, 124247, 'no_lang_code', 'name', 'Shinsampei Construction Co., Ltd. (Japan)'),
(161613, 124247, 'ja', 'name', 'ę–°äø‰å¹³å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(161614, 124248, 'no_lang_code', 'name', 'Myojo Foods Co., Ltd. (Japan)'),
(161615, 124248, 'ja', 'name', 'ę˜Žę˜Ÿé£Ÿå“ę Ŗå¼ä¼šē¤¾'),
(161616, 124249, 'no_lang_code', 'name', 'TAANE Co. Ltd. (Japan)'),
(161617, 124249, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾TAANE'),
(161618, 124250, 'no_lang_code', 'name', 'Susumu Co., Ltd. (Japan)'),
(161619, 124250, 'ja', 'name', 'é€²å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161620, 124251, 'no_lang_code', 'name', 'Harunire BIO Laboratory (Japan)'),
(161621, 124251, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćÆć‚‹ć«ć‚Œćƒć‚¤ć‚Ŗē ”ē©¶ę‰€'),
(161622, 124252, 'no_lang_code', 'name', 'Funai Electric Co., Ltd. (Japan)'),
(161623, 124252, 'ja', 'name', 'čˆ¹äŗ•é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(161624, 124253, 'no_lang_code', 'name', 'Dipsol Chemicals Co., Ltd. (Japan)'),
(161625, 124253, 'ja', 'name', 'ćƒ‡ć‚£ćƒƒćƒ—ć‚½ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(161626, 124254, 'no_lang_code', 'name', 'Tesac Wirerope Co., Ltd. (Japan)'),
(161627, 124254, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚¶ćƒƒć‚ÆćƒÆć‚¤ćƒ¤ćƒ­ćƒ¼ćƒ—'),
(161628, 124255, 'no_lang_code', 'name', 'J-Brain, Inc. (Japan)'),
(161629, 124255, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ–ćƒ¬ć‚¤ćƒ³'),
(161630, 124256, 'no_lang_code', 'name', 'Kanehatsu Co. (Japan)'),
(161631, 124256, 'ja', 'name', 'ć‚«ćƒćƒćƒ„é£Ÿå“ę Ŗå¼ä¼šē¤¾'),
(161632, 124257, 'en', 'name', 'University of Technology'),
(161633, 124257, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ©'),
(161634, 124258, 'no_lang_code', 'name', 'Kandenko Co., Ltd. (Japan)'),
(161635, 124258, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é–¢é›»å·„'),
(161636, 124259, 'no_lang_code', 'name', 'Sanzin Corporation (Japan)'),
(161637, 124259, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚µćƒ³ć‚øćƒ³'),
(161638, 124260, 'en', 'name', 'State institution "South Ukrainian National Pedagogical University named after K. D. Ushynsky"'),
(161639, 124260, 'uk', 'name', 'Державний заклаГ Ā«ŠŸŃ–Š²Š“ŠµŠ½Š½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені К. Š”. Ушинського»'),
(161640, 124261, 'es', 'name', 'Universidad Centro MƩdico Bautista'),
(161641, 124262, 'no_lang_code', 'name', 'Kurihara Kogyo Co., Ltd. (Japan)'),
(161642, 124262, 'ja', 'name', 'ę —åŽŸå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161643, 124263, 'no_lang_code', 'name', 'Yamaichi Electronics Co., Ltd. (Japan)'),
(161644, 124263, 'ja', 'name', 'å±±äø€é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(161645, 124264, 'no_lang_code', 'name', 'Tomei Kasei Co., Ltd. (Japan)'),
(161646, 124264, 'ja', 'name', 'ę±ååŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(161647, 124265, 'no_lang_code', 'name', 'Anest Iwata Corporation (Japan)'),
(161648, 124265, 'ja', 'name', 'ć‚¢ćƒć‚¹ćƒˆå²©ē”°ę Ŗå¼ä¼šē¤¾'),
(161649, 124266, 'no_lang_code', 'name', 'Bunka Shutter Co., Ltd. (Japan)'),
(161650, 124266, 'ja', 'name', 'ę–‡åŒ–ć‚·ćƒ¤ćƒƒć‚æćƒ¼ę Ŗå¼ä¼šē¤¾'),
(161651, 124267, 'no_lang_code', 'name', 'Junsei Chemical Co., Ltd. (Japan)'),
(161652, 124267, 'ja', 'name', 'ē“”ę­£åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(161653, 124268, 'no_lang_code', 'name', 'M-Tec Co., Ltd. (Japan)'),
(161654, 124268, 'ja', 'name', 'ć‚Øćƒ ćƒ»ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(161655, 124269, 'no_lang_code', 'name', 'Yamajirushi Jyozo Co., Ltd. (Japan)'),
(161656, 124269, 'ja', 'name', 'å±±å°é†øé€ ę Ŗå¼ä¼šē¤¾'),
(161657, 124270, 'en', 'name', 'Cluster of Excellence Cross-Cultural Philology'),
(161658, 124270, 'de', 'name', 'Exzellenzcluster Cross-Cultural Philology'),
(161659, 124271, 'no_lang_code', 'name', 'Rheon Automatic Machinery Co., Ltd. (Japan)'),
(161660, 124271, 'ja', 'name', 'ćƒ¬ć‚Ŗćƒ³č‡Ŗå‹•ę©Ÿę Ŗå¼ä¼šē¤¾'),
(161661, 124272, 'no_lang_code', 'name', 'Chodai Co., Ltd. (Japan)'),
(161662, 124272, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é•·å¤§'),
(161663, 124273, 'no_lang_code', 'name', 'Meiwapax Co., Ltd. (Japan)'),
(161664, 124273, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ”ć‚¤ćƒÆćƒ‘ćƒƒć‚Æć‚¹'),
(161665, 124274, 'no_lang_code', 'name', 'Iwatsuka Confectionery Co., Ltd. (Japan)'),
(161666, 124274, 'ja', 'name', 'å²©å”šč£½č“ę Ŗå¼ä¼šē¤¾'),
(161667, 124275, 'no_lang_code', 'name', 'Johnson Company Ltd. (Japan)'),
(161668, 124275, 'ja', 'name', 'ć‚øćƒ§ćƒ³ć‚½ćƒ³ę Ŗå¼ä¼šē¤¾'),
(161669, 124276, 'no_lang_code', 'name', 'Denyo Co., Ltd. (Japan)'),
(161670, 124276, 'ja', 'name', 'ćƒ‡ćƒ³ćƒØćƒ¼ę Ŗå¼ä¼šē¤¾'),
(161671, 124277, 'no_lang_code', 'name', 'AOMI Construction Co., Ltd. (Japan)'),
(161672, 124277, 'ja', 'name', 'ć‚ćŠćæå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(161673, 124278, 'es', 'name', 'Fundación Biodiverso Choco'),
(161674, 124279, 'no_lang_code', 'name', 'Biofermin Pharmaceutical Co., Ltd. (Japan)'),
(161675, 124279, 'ja', 'name', 'ćƒ“ć‚Ŗćƒ•ć‚§ćƒ«ćƒŸćƒ³č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(161676, 124280, 'no_lang_code', 'name', 'MM Bridge Co., Ltd. (Japan)'),
(161677, 124280, 'ja', 'name', 'ć‚Øćƒ ćƒ»ć‚Øćƒ ćƒ–ćƒŖćƒƒć‚øę Ŗå¼ä¼šē¤¾'),
(161678, 124281, 'es', 'name', 'Universidad de Miami'),
(161679, 124281, 'en', 'name', 'University of Miami'),
(161680, 124281, 'fr', 'name', 'UniversitƩ de miami'),
(161681, 124282, 'fr', 'name', 'Conseil de Recherches en Sciences Humaines'),
(161682, 124282, 'en', 'name', 'Social Sciences and Humanities Research Council'),
(161683, 124283, 'fr', 'name', 'Conseil de Recherches en Sciences Naturelles et en GƩnie du Canada'),
(161684, 124283, 'en', 'name', 'Natural Sciences and Engineering Research Council of Canada'),
(161685, 124284, 'en', 'name', 'Institute for Life and Medical Sciences, Kyoto University'),
(161686, 124284, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦åŒ»ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(161687, 124285, 'no_lang_code', 'name', 'Allied Lasers, Inc. (Japan)'),
(161688, 124285, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ©ć‚¤ćƒ‰ćƒ¬ćƒ¼ć‚¶ćƒ¼'),
(161689, 124286, 'no_lang_code', 'name', 'Kowabo Company Ltd. (Japan)'),
(161690, 124286, 'ja', 'name', 'čˆˆå’Œē“”ę Ŗå¼ä¼šē¤¾'),
(161691, 124287, 'no_lang_code', 'name', 'Bando Chemical Industries, Ltd. (Japan)'),
(161692, 124287, 'ja', 'name', 'ćƒćƒ³ćƒ‰ćƒ¼åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(161693, 124288, 'no_lang_code', 'name', 'Tachibana Metal MFG. Co., Ltd. (Japan)'),
(161694, 124288, 'ja', 'name', 'ē«‹čŠ±é‡‘å±žå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161695, 124289, 'fr', 'name', 'Centre de Recherche Astrophysique de Lyon'),
(161696, 124289, 'en', 'name', 'Centre for Astronomical Reseach of Lyon'),
(161697, 124290, 'en', 'name', 'Office of the Director of National Intelligence'),
(161698, 124291, 'no_lang_code', 'name', 'KING Industrial Co., Ltd. (Japan)'),
(161699, 124291, 'ja', 'name', 'ć‚­ćƒ³ć‚°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161700, 124292, 'no_lang_code', 'name', 'Daikyo Nishikawa Co., Ltd. (Japan)'),
(161701, 124292, 'ja', 'name', 'ćƒ€ć‚¤ć‚­ćƒ§ćƒ¼ćƒ‹ć‚·ć‚«ćƒÆę Ŗå¼ä¼šē¤¾'),
(161702, 124293, 'no_lang_code', 'name', 'OYO Corporation (Japan)'),
(161703, 124293, 'ja', 'name', 'åæœē”Øåœ°č³Ŗę Ŗå¼ä¼šē¤¾'),
(161704, 124294, 'no_lang_code', 'name', 'SHO-BOND Corporation (Japan)'),
(161705, 124294, 'ja', 'name', 'ć‚·ćƒ§ćƒ¼ćƒœćƒ³ćƒ‰å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(161706, 124295, 'no_lang_code', 'name', 'Tokuju Corporation (Japan)'),
(161707, 124295, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¾³åÆæå·„ä½œę‰€'),
(161708, 124296, 'no_lang_code', 'name', 'Natsume Optical Corporation (Japan)'),
(161709, 124296, 'ja', 'name', 'å¤ē›®å…‰å­¦ę Ŗå¼ä¼šē¤¾'),
(161710, 124297, 'no_lang_code', 'name', 'Atomix Co., Ltd. (Japan)'),
(161711, 124297, 'ja', 'name', 'ć‚¢ćƒˆćƒŸć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(161712, 124298, 'no_lang_code', 'name', 'Teito Rubber Ltd. (Japan)'),
(161713, 124298, 'ja', 'name', 'åøéƒ½ć‚“ćƒ ę Ŗå¼ä¼šē¤¾'),
(161714, 124299, 'es', 'name', 'Sociedad CientĆ­fica de Estudiantes de Medicina Agustinos (SOCIEMA)'),
(161715, 124300, 'no_lang_code', 'name', 'Kasuga Electric Works, Ltd. (Japan)'),
(161716, 124300, 'ja', 'name', 'ę˜„ę—„é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(161717, 124301, 'en', 'name', 'University of Glamorgan'),
(161718, 124302, 'en', 'name', 'Rita Allen Foundation'),
(161719, 124303, 'no_lang_code', 'name', 'Okitsumo Inc. (Japan)'),
(161720, 124303, 'ja', 'name', 'ć‚Ŗć‚­ćƒ„ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(161721, 124304, 'es', 'name', 'Instituto Tecnológico El Llano Aguascalientes'),
(161722, 124305, 'no_lang_code', 'name', 'Tobu Railway Co., Ltd. (Japan)'),
(161723, 124305, 'ja', 'name', 'ę±ę­¦é‰„é“ę Ŗå¼ä¼šē¤¾'),
(161724, 124306, 'en', 'name', 'Bradford Institute for Health Research'),
(161725, 124307, 'es', 'name', 'Universidad UNIDOS'),
(161726, 124308, 'no_lang_code', 'name', 'Luciola Inc. (Japan)'),
(161727, 124308, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒ«ć‚·ć‚Ŗćƒ©'),
(161728, 124309, 'no_lang_code', 'name', 'Sinko Industries Ltd. (Japan)'),
(161729, 124309, 'ja', 'name', 'ę–°ę™ƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161730, 124310, 'en', 'name', 'Society of Fire Protection Engineers'),
(161731, 124311, 'no_lang_code', 'name', 'Apollo Electric Co., Ltd. (Japan)'),
(161732, 124311, 'ja', 'name', 'ć‚¢ćƒćƒ­é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(161733, 124312, 'no_lang_code', 'name', 'SOKEN, Inc (Japan)'),
(161734, 124312, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾SOKEN'),
(161735, 124313, 'no_lang_code', 'name', 'Ikari Sauce Co., Ltd. (Japan)'),
(161736, 124313, 'ja', 'name', 'ć‚¤ć‚«ćƒŖć‚½ćƒ¼ć‚¹ę Ŗå¼ä¼šē¤¾'),
(161737, 124314, 'no_lang_code', 'name', 'TJM Design Corp. (Japan)'),
(161738, 124314, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾TJMćƒ‡ć‚¶ć‚¤ćƒ³'),
(161739, 124315, 'no_lang_code', 'name', 'Kanazawa University Technology Licensing Organization, Ltd. (Japan)'),
(161740, 124315, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾é‡‘ę²¢å¤§å­¦ćƒ†ć‚£ćƒ»ć‚Øćƒ«ćƒ»ć‚Ŗćƒ¼'),
(161741, 124316, 'no_lang_code', 'name', 'Ecompute Corporation (Japan)'),
(161742, 124316, 'ja', 'name', 'ć‚¤ćƒ¼ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ćƒˆę Ŗå¼ä¼šē¤¾'),
(161743, 124317, 'no_lang_code', 'name', 'Kushiro Seisakusho Co., Ltd. (Japan)'),
(161744, 124317, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é‡§č·Æč£½ä½œę‰€'),
(161745, 124318, 'en', 'name', 'Directorate of Knowledge Management in Agriculture'),
(161746, 124319, 'en', 'name', 'New Energy and Industrial Technology Development Organization'),
(161747, 124319, 'ja', 'name', 'ę–°ć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»ē”£ę„­ęŠ€č”“ē·åˆé–‹ē™ŗę©Ÿę§‹'),
(161748, 124320, 'en', 'name', 'Afghan International Islamic University'),
(161749, 124320, 'ps', 'name', 'افغان Ł†Ś“ŪŒŁˆŲ§Ł„ Ų§Ų³Ł„Ų§Ł…ŁŠ Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(161750, 124320, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų§Ų³Ł„Ų§Ł…ŪŒ ŲØŪŒŁ† Ų§Ł„Ł…Ł„Ł„ŪŒ افغان'),
(161751, 124321, 'no_lang_code', 'name', 'ie-Solution Corporation (Japan)'),
(161752, 124321, 'ja', 'name', 'ć‚¢ć‚¤ćƒ»ć‚¤ćƒ¼ćƒ»ć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(161753, 124322, 'en', 'name', 'Institute for Research in Humanities, Kyoto University'),
(161754, 124322, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦äŗŗę–‡ē§‘å­¦ē ”ē©¶ę‰€'),
(161755, 124323, 'no_lang_code', 'name', 'Fenwal Controls OF Japan Ltd. (Japan)'),
(161756, 124323, 'ja', 'name', 'ę—„ęœ¬ćƒ•ć‚§ćƒ³ć‚Ŗćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(161757, 124324, 'en', 'name', 'Research Institute for Mathematical Sciences, Kyoto University'),
(161758, 124324, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦ę•°ē†č§£ęžē ”ē©¶ę‰€'),
(161759, 124325, 'no_lang_code', 'name', 'Ethylene Chemical Co., Ltd. (Japan)'),
(161760, 124325, 'ja', 'name', 'ć‚Øćƒćƒ¬ćƒ³ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(161761, 124326, 'no_lang_code', 'name', 'Yaegaki BIO-Industry Inc. (Japan)'),
(161762, 124326, 'ja', 'name', 'ćƒ¤ćƒ±ć‚¬ć‚­é†—é…µęŠ€ē ”ę Ŗå¼ä¼šē¤¾'),
(161763, 124327, 'en', 'name', 'Toyohashi SOZO Junior College'),
(161764, 124327, 'ja', 'name', 'č±Šę©‹å‰µé€ å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(161765, 124328, 'no_lang_code', 'name', 'Starlet Corporation (Japan)'),
(161766, 124328, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ć‚æćƒ¼ćƒ¬ćƒƒćƒˆ'),
(161767, 124329, 'no_lang_code', 'name', 'Taiheiyo Cement Corporation (Japan)'),
(161768, 124329, 'ja', 'name', 'å¤Ŗå¹³ę“‹ć‚»ćƒ”ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(161769, 124330, 'pt', 'name', 'CPAH - Centro de Pesquisa e AnƔlises HerƔclito'),
(161770, 124331, 'no_lang_code', 'name', 'IMRA Material R&D Co., Ltd. (Japan)'),
(161771, 124331, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ ćƒ©ęę–™é–‹ē™ŗē ”ē©¶ę‰€'),
(161772, 124332, 'no_lang_code', 'name', 'TOEI Electric Co., Ltd. (Japan)'),
(161773, 124332, 'ja', 'name', 'ę±ę „é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(161774, 124333, 'no_lang_code', 'name', 'Kyokuyo Co., Ltd. (Japan)'),
(161775, 124333, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę„µę“‹'),
(161776, 124334, 'no_lang_code', 'name', 'Tosho Printing Co., Ltd. (Japan)'),
(161777, 124334, 'ja', 'name', 'å›³ę›øå°åˆ·ę Ŗå¼ä¼šē¤¾'),
(161778, 124335, 'no_lang_code', 'name', 'Asics Corporation (Japan)'),
(161779, 124335, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚·ćƒƒć‚Æć‚¹'),
(161780, 124336, 'no_lang_code', 'name', 'Shiono Koryo Kaisha, Ltd. (Japan)'),
(161781, 124336, 'ja', 'name', 'å”©é‡Žé¦™ę–™ę Ŗå¼ä¼šē¤¾'),
(161782, 124337, 'no_lang_code', 'name', 'Robust Engineering Inc. (Japan)'),
(161783, 124337, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ­ćƒć‚¹ćƒˆć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(161784, 124338, 'en', 'name', 'Pidstryhach Institute for Applied Problems of Mechanics and Mathematics'),
(161785, 124338, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГних проблем механіки і математики ім. ŠÆ. Š”. ŠŸŃ–Š“ŃŃ‚Ń€ŠøŠ³Š°Ń‡Š°'),
(161786, 124339, 'no_lang_code', 'name', 'Anelva Corporation (Japan)'),
(161787, 124339, 'ja', 'name', 'ć‚¢ćƒćƒ«ćƒę Ŗå¼ä¼šē¤¾'),
(161788, 124340, 'en', 'name', 'City of Basel Music Academy'),
(161789, 124340, 'de', 'name', 'Musik Akademie Basel'),
(161790, 124341, 'es', 'name', 'Instituto PolitƩcnico Nacional'),
(161791, 124341, 'en', 'name', 'National Polytechnic Institute'),
(161792, 124342, 'en', 'name', 'Paul G. Allen Family Foundation'),
(161793, 124343, 'no_lang_code', 'name', 'Kamacho Scale Co., Ltd. (Japan)'),
(161794, 124343, 'ja', 'name', 'éŽŒé•·č£½č””ę Ŗå¼ä¼šē¤¾'),
(161795, 124344, 'no_lang_code', 'name', 'TLO-Kyoto Co., Ltd. (Japan)'),
(161796, 124344, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾TLO京都'),
(161797, 124345, 'no_lang_code', 'name', 'Sumihatsu Co., Ltd. (Japan)'),
(161798, 124345, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ćƒŸćƒćƒ„'),
(161799, 124346, 'pt', 'name', 'Faculdade Gennari e Peartree - FGP'),
(161800, 124347, 'en', 'name', 'Safe Sport International'),
(161801, 124348, 'en', 'name', 'NIHR Evaluation Trials and Studies Coordinating Centre'),
(161802, 124349, 'no_lang_code', 'name', 'I-Transport LAB. Co., Ltd. (Japan)'),
(161803, 124349, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚¤ćƒ»ćƒˆćƒ©ćƒ³ć‚¹ćƒćƒ¼ćƒˆćƒ»ćƒ©ćƒœ'),
(161804, 124350, 'no_lang_code', 'name', 'Suntechnos Corporation (Japan)'),
(161805, 124350, 'ja', 'name', 'ć‚µćƒ³ćƒ†ć‚ÆćƒŽć‚¹ę Ŗå¼ä¼šē¤¾'),
(161806, 124351, 'no_lang_code', 'name', 'Hayakawa Rubber Co., Ltd. (Japan)'),
(161807, 124351, 'ja', 'name', 'ę—©å·ć‚“ćƒ ę Ŗå¼ä¼šē¤¾'),
(161808, 124352, 'en', 'name', 'Foundation for Science and Technology'),
(161809, 124352, 'pt', 'name', 'Fundação para a Ciência e Tecnologia'),
(161810, 124353, 'no_lang_code', 'name', 'Jyukankyo Research Institute Inc. (Japan)'),
(161811, 124353, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ä½ē’°å¢ƒčØˆē”»ē ”ē©¶ę‰€'),
(161812, 124354, 'no_lang_code', 'name', 'Totoku Electric Co., Ltd. (Japan)'),
(161813, 124354, 'ja', 'name', 'ę±äŗ¬ē‰¹ę®Šé›»ē·šę Ŗå¼ä¼šē¤¾'),
(161814, 124355, 'no_lang_code', 'name', 'Genome Pharmaceuticals Institute (Japan)'),
(161815, 124355, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚²ćƒŽćƒ å‰µč–¬ē ”ē©¶ę‰€'),
(161816, 124356, 'no_lang_code', 'name', 'Taitsu Corporation (Japan)'),
(161817, 124356, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚¤ćƒ„ć‚¦'),
(161818, 124357, 'no_lang_code', 'name', 'Brother Industries, Ltd. (Japan)'),
(161819, 124357, 'ja', 'name', 'ćƒ–ćƒ©ć‚¶ćƒ¼å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161820, 124358, 'no_lang_code', 'name', 'Kensoh Co., Ltd. (Japan)'),
(161821, 124358, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē ”å‰µ'),
(161822, 124359, 'no_lang_code', 'name', 'Ozaki MFG. Co., Ltd. (Japan)'),
(161823, 124359, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å°¾å“Žč£½ä½œę‰€'),
(161824, 124360, 'no_lang_code', 'name', 'Pulstec Industrial Co., Ltd. (Japan)'),
(161825, 124360, 'ja', 'name', 'ćƒ‘ćƒ«ć‚¹ćƒ†ćƒƒć‚Æå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161826, 124361, 'fr', 'name', 'Centre de Recherche en Neurosciences de Lyon'),
(161827, 124361, 'en', 'name', 'Lyon Neuroscience Research Center'),
(161828, 124362, 'fr', 'name', 'UnitƩ de recherches Transitions Organisations Politiques InƩgalitƩs'),
(161829, 124363, 'en', 'name', 'Ukrainian Order "Sign of Honour" Research Institute of Forestry and Forest Melioration Named after G. M. Vysotsky'),
(161830, 124363, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ ŠžŃ€Š“ŠµŠ½Š° "Знак Пошани" ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ДосліГний Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Лісового ГоспоГарства та Агролісомеліорації ім. Š“. М. Š’ŠøŃŠ¾Ń†ŃŒŠŗŠ¾Š³Š¾'),
(161831, 124364, 'no_lang_code', 'name', 'Ohtsuka Sangyo Creates Co., Ltd. (Japan)'),
(161832, 124364, 'ja', 'name', 'å¤§å”šē”£ę„­ć‚ÆćƒŖć‚Øć‚¤ćƒ„ę Ŗå¼ä¼šē¤¾'),
(161833, 124365, 'en', 'name', 'National Dendrological Park "Sofiyivka"'),
(161834, 124365, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ГенГрологічний парк "Дофіївка" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(161835, 124366, 'no_lang_code', 'name', 'Private Finance Initiative Promotion Corporation of Japan (Japan)'),
(161836, 124366, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę°‘é–“č³‡é‡‘ē­‰ę“»ē”Øäŗ‹ę„­ęŽØé€²ę©Ÿę§‹'),
(161837, 124367, 'no_lang_code', 'name', 'SICS Inc. (Japan)'),
(161838, 124367, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ćƒƒć‚Æć‚¹'),
(161839, 124368, 'no_lang_code', 'name', 'Advanex Inc. (Japan)'),
(161840, 124368, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒćƒć‚Æć‚¹'),
(161841, 124369, 'no_lang_code', 'name', 'Appirits (Japan)'),
(161842, 124369, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ”ćƒŖćƒƒćƒ„'),
(161843, 124370, 'no_lang_code', 'name', 'Surugaya Co., Ltd. (Japan)'),
(161844, 124370, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é§æę²³å±‹'),
(161845, 124371, 'no_lang_code', 'name', 'Kanefusa Corporation (Japan)'),
(161846, 124371, 'ja', 'name', 'å…¼ęˆæę Ŗå¼ä¼šē¤¾'),
(161847, 124372, 'en', 'name', 'Kuwait University'),
(161848, 124372, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁˆŁŠŲŖ'),
(161849, 124373, 'no_lang_code', 'name', 'Marutaka Industry Inc. (Japan)'),
(161850, 124373, 'ja', 'name', 'äøøé«˜å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161851, 124374, 'no_lang_code', 'name', 'Yoshitake Inc. (Japan)'),
(161852, 124374, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒØć‚·ć‚æć‚±'),
(161853, 124375, 'no_lang_code', 'name', 'Enomoto Co., Ltd. (Japan)'),
(161854, 124375, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚ØćƒŽćƒ¢ćƒˆ'),
(161855, 124376, 'no_lang_code', 'name', 'Paint House Co., Ltd. (Japan)'),
(161856, 124376, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒšć‚¤ćƒ³ćƒˆćƒć‚¦ć‚¹'),
(161857, 124377, 'no_lang_code', 'name', 'Fujipream Corporation (Japan)'),
(161858, 124377, 'ja', 'name', 'ćƒ•ć‚øćƒ—ćƒ¬ć‚¢ćƒ ę Ŗå¼ä¼šē¤¾'),
(161859, 124378, 'no_lang_code', 'name', 'Bandai Namco Entertainment Inc. (Japan)'),
(161860, 124378, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒ³ćƒ€ć‚¤ćƒŠćƒ ć‚³ć‚Øćƒ³ć‚æćƒ¼ćƒ†ć‚¤ćƒ³ćƒ”ćƒ³ćƒˆ'),
(161861, 124379, 'no_lang_code', 'name', 'SUNX Limited (Japan)'),
(161862, 124379, 'ja', 'name', 'SUNXę Ŗå¼ä¼šē¤¾'),
(161863, 124380, 'no_lang_code', 'name', 'Micronix Co., Ltd. (Japan)'),
(161864, 124380, 'ja', 'name', 'ćƒžć‚¤ć‚Æćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(161865, 124381, 'no_lang_code', 'name', 'Yukiguni Maitake Co., Ltd. (Japan)'),
(161866, 124381, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é›Ŗå›½ć¾ć„ćŸć‘'),
(161867, 124382, 'no_lang_code', 'name', 'JNC Engineering Co.ltd. (Japan)'),
(161868, 124382, 'ja', 'name', 'JNCć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(161869, 124383, 'no_lang_code', 'name', 'Microphase Co., Ltd. (Japan)'),
(161870, 124383, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžć‚¤ć‚Æćƒ­ćƒ•ć‚§ćƒ¼ć‚ŗ'),
(161871, 124384, 'no_lang_code', 'name', 'ERC Inc. (Japan)'),
(161872, 124384, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ¼ć‚¢ćƒ¼ćƒ«ć‚·ćƒ¼'),
(161873, 124385, 'no_lang_code', 'name', 'Oxide Corporation (Japan)'),
(161874, 124385, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗć‚­ć‚µć‚¤ćƒ‰'),
(161875, 124386, 'en', 'name', 'Indigenous Diabetes Health Circle'),
(161876, 124387, 'no_lang_code', 'name', 'Dalton Corporation (Japan)'),
(161877, 124387, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ćƒ«ćƒˆćƒ³'),
(161878, 124388, 'no_lang_code', 'name', 'Kurogane Kosakusho Ltd. (Japan)'),
(161879, 124388, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćć‚ćŒć­å·„ä½œę‰€'),
(161880, 124389, 'fr', 'name', 'Institut Paul Scherrer'),
(161881, 124389, 'en', 'name', 'Paul Scherrer Institute'),
(161882, 124390, 'no_lang_code', 'name', 'Apt. Co. Ltd. (Japan)'),
(161883, 124390, 'ja', 'name', 'ć‚¢ćƒ—ćƒˆę Ŗå¼ä¼šē¤¾'),
(161884, 124391, 'no_lang_code', 'name', 'Kitakyushu Technology Center Co., Ltd. (Japan)'),
(161885, 124391, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åŒ—ä¹å·žćƒ†ć‚ÆćƒŽć‚»ćƒ³ć‚æćƒ¼'),
(161886, 124392, 'no_lang_code', 'name', 'Buckman Laboratories, K.K. (Japan)'),
(161887, 124392, 'ja', 'name', 'ćƒćƒƒć‚Æćƒžćƒ³ćƒ©ćƒœćƒ©ćƒˆćƒŖćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(161888, 124393, 'no_lang_code', 'name', 'Fukada Salvage & Marine Works Co., Ltd. (Japan)'),
(161889, 124393, 'ja', 'name', 'ę·±ē”°ć‚µćƒ«ćƒ™ćƒ¼ć‚øå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(161890, 124394, 'no_lang_code', 'name', 'GMJ, Inc. (Japan)'),
(161891, 124394, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾GMJ'),
(161892, 124395, 'no_lang_code', 'name', 'Gansui, Inc. (Japan)'),
(161893, 124395, 'ja', 'name', 'å²©ę°“é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(161894, 124396, 'no_lang_code', 'name', 'Titan Kogyo K.K. (Japan)'),
(161895, 124396, 'ja', 'name', 'ćƒć‚æćƒ³å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(161896, 124397, 'no_lang_code', 'name', 'Miyano Machinery Japan Co., Ltd. (Japan)'),
(161897, 124397, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŸćƒ¤ćƒŽ'),
(161898, 124398, 'no_lang_code', 'name', 'Fab-Tec Japan Corporation (Japan)'),
(161899, 124398, 'ja', 'name', 'ę—„ęœ¬ćƒ•ć‚”ćƒ–ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(161900, 124399, 'no_lang_code', 'name', 'TXP Medical Co. Ltd (Japan)'),
(161901, 124399, 'ja', 'name', 'TXP Medicalę Ŗå¼ä¼šē¤¾'),
(161902, 124400, 'no_lang_code', 'name', 'Akiyama Seiko Co., Ltd. (Japan)'),
(161903, 124400, 'ja', 'name', 'ē§‹å±±ē²¾é‹¼ę Ŗå¼ä¼šē¤¾'),
(161904, 124401, 'tr', 'name', 'Feza Gürsey Enstitüsü'),
(161905, 124401, 'en', 'name', 'Feza Gürsey Institute'),
(161906, 124402, 'no_lang_code', 'name', 'Daiko Electric Co., Ltd. (Japan)'),
(161907, 124402, 'ja', 'name', 'å¤§å…‰é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(161908, 124403, 'en', 'name', 'Innores International'),
(161909, 124404, 'no_lang_code', 'name', 'CAR MATE MFG. Co., Ltd. (Japan)'),
(161910, 124404, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ćƒ¼ćƒ”ć‚¤ćƒˆ'),
(161911, 124405, 'no_lang_code', 'name', 'Zojirushi Corporation (Japan)'),
(161912, 124405, 'ja', 'name', 'č±”å°ćƒžćƒ›ćƒ¼ćƒ“ćƒ³ę Ŗå¼ä¼šē¤¾'),
(161913, 124406, 'de', 'name', 'KUNSTHALLE GIESSEN'),
(161914, 124407, 'no_lang_code', 'name', 'Nichicon Corporation (Japan)'),
(161915, 124407, 'ja', 'name', 'ćƒ‹ćƒć‚³ćƒ³ę Ŗå¼ä¼šē¤¾'),
(161916, 124408, 'en', 'name', 'NIHR Birmingham Biomedical Research Centre'),
(161917, 124409, 'no_lang_code', 'name', 'Hanshin Expressway Company Limited (Japan)'),
(161918, 124409, 'ja', 'name', 'é˜Ŗē„žé«˜é€Ÿé“č·Æę Ŗå¼ä¼šē¤¾'),
(161919, 124410, 'en', 'name', 'Bhattadev University'),
(161920, 124410, 'as', 'name', '[ą¦­ą¦Ÿą§ą¦Ÿą¦¦ą§‡ą§± ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼]'),
(161921, 124411, 'no_lang_code', 'name', 'Higeta Shoyu Co., Ltd. (Japan)'),
(161922, 124411, 'ja', 'name', 'ćƒ’ć‚²ć‚æé†¤ę²¹ę Ŗå¼ä¼šē¤¾'),
(161923, 124412, 'en', 'name', 'National Institute of Public Health'),
(161924, 124412, 'cs', 'name', 'StÔtní zdravotní ústav'),
(161925, 124413, 'en', 'name', 'Fukui Institute for Fundamental Chemistry, Kyoto University'),
(161926, 124413, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦ē¦äŗ•č¬™äø€čØ˜åæµē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(161927, 124414, 'fr', 'name', 'Institut des Etudes Juridiques de l''Urbanisme, de la Construction et de l''Environnement'),
(161928, 124414, 'en', 'name', 'Institute for Legal Studies in Urban Planning, Construction and the Environment'),
(161929, 124415, 'no_lang_code', 'name', 'Quantum 14 Co., Ltd. (Japan)'),
(161930, 124415, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ćƒ³ć‚æćƒ 14'),
(161931, 124416, 'no_lang_code', 'name', 'Yaesu Musen Co., Ltd. (Japan)'),
(161932, 124416, 'ja', 'name', 'å…«é‡ę“²ē„”ē·šę Ŗå¼ä¼šē¤¾'),
(161933, 124417, 'no_lang_code', 'name', 'Sunpot Co., Ltd. (Japan)'),
(161934, 124417, 'ja', 'name', 'ć‚µćƒ³ćƒćƒƒćƒˆę Ŗå¼ä¼šē¤¾'),
(161935, 124418, 'en', 'name', 'College of Electrical and Electronics Technology'),
(161936, 124419, 'no_lang_code', 'name', 'TOSO Co., Ltd. (Japan)'),
(161937, 124419, 'ja', 'name', 'ćƒˆćƒ¼ć‚½ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(161938, 124420, 'no_lang_code', 'name', 'Keisei Electric Railway Co., Ltd. (Japan)'),
(161939, 124420, 'ja', 'name', 'äŗ¬ęˆé›»é‰„ę Ŗå¼ä¼šē¤¾'),
(161940, 124421, 'no_lang_code', 'name', 'Business Science & Technology Co., Ltd. (Japan)'),
(161941, 124421, 'ja', 'name', 'ćƒ“ć‚øćƒć‚¹ć‚µć‚¤ć‚Øćƒ³ć‚¹&ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(161942, 124422, 'no_lang_code', 'name', 'Nichiwa Sangyo Co., Ltd. (Japan)'),
(161943, 124422, 'ja', 'name', 'ę—„å’Œē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(161944, 124423, 'no_lang_code', 'name', 'Todentsu Corporation (Japan)'),
(161945, 124423, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±é›»é€š'),
(161946, 124424, 'sv', 'name', 'ForskningsrƄdet fƶr Miljƶ, Areella NƤringar och SamhƤllsbyggande'),
(161947, 124424, 'en', 'name', 'Swedish Research Council for Environment Agricultural Sciences and Spatial Planning'),
(161948, 124425, 'no_lang_code', 'name', 'Engineering System Co., Ltd. (Japan)'),
(161949, 124425, 'ja', 'name', 'ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(161950, 124426, 'no_lang_code', 'name', 'Asahi-Kasei EMD Corporation (Japan)'),
(161951, 124426, 'ja', 'name', 'ę—­åŒ–ęˆć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(161952, 124427, 'no_lang_code', 'name', 'Takeuchi Vacuum Deposition Co., Ltd. (Japan)'),
(161953, 124427, 'ja', 'name', 'ē«¹å†…ēœŸē©ŗč¢«č†œę Ŗå¼ä¼šē¤¾'),
(161954, 124428, 'en', 'name', 'Yuriev Plant Production Institute of NAAS of Ukraine'),
(161955, 124428, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рослинництва ім. Š’.ŠÆ. Юр''єва ŠŠŠŠ України'),
(161956, 124429, 'no_lang_code', 'name', 'Optex Co., Ltd. (Japan)'),
(161957, 124429, 'ja', 'name', 'ć‚Ŗćƒ—ćƒ†ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(161958, 124430, 'fr', 'name', 'Ecole SupƩrieure de Commerce de Rouen'),
(161959, 124430, 'en', 'name', 'Rouen business school'),
(161960, 124431, 'no_lang_code', 'name', 'KH Neochem Co., Ltd. (Japan)'),
(161961, 124431, 'ja', 'name', 'KHćƒć‚Ŗć‚±ćƒ ę Ŗå¼ä¼šē¤¾'),
(161962, 124432, 'en', 'name', 'Barts Cancer Institute'),
(161963, 124433, 'es', 'name', 'Universidade da CoruƱa'),
(161964, 124433, 'ca', 'name', 'Universitat de la Corunya'),
(161965, 124434, 'en', 'name', 'Association for Computing Machinery'),
(161966, 124435, 'no_lang_code', 'name', 'Shihen Technical Corporation (Japan)'),
(161967, 124435, 'ja', 'name', 'å››å¤‰ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(161968, 124436, 'no_lang_code', 'name', 'Yonekyu Corporation (Japan)'),
(161969, 124436, 'ja', 'name', 'ē±³ä¹…ę Ŗå¼ä¼šē¤¾'),
(161970, 124437, 'no_lang_code', 'name', 'ELNA Co., Ltd. (Japan)'),
(161971, 124437, 'ja', 'name', 'ć‚Øćƒ«ćƒŠćƒ¼ę Ŗå¼ä¼šē¤¾'),
(161972, 124438, 'no_lang_code', 'name', 'TCM Corporation (Japan)'),
(161973, 124438, 'ja', 'name', 'TCMę Ŗå¼ä¼šē¤¾'),
(161974, 124439, 'en', 'name', 'National Foundation for Science and Technology Development'),
(161975, 124439, 'vi', 'name', 'Quỹ PhĆ”t triển khoa hį»c vĆ  cĆ“ng nghệ Quốc gia'),
(161976, 124440, 'no_lang_code', 'name', 'Hino Motors, Ltd. (Japan)'),
(161977, 124440, 'ja', 'name', 'ę—„é‡Žč‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(161978, 124441, 'en', 'name', 'Samar Colleges, Inc.'),
(161979, 124442, 'no_lang_code', 'name', 'Syvec Corporation (Japan)'),
(161980, 124442, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µć‚¤ćƒ™ćƒƒć‚Æć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(161981, 124443, 'no_lang_code', 'name', 'Itogumi Construction Co., Ltd. (Japan)'),
(161982, 124443, 'ja', 'name', 'ä¼Šč—¤ēµ„åœŸå»ŗę Ŗå¼ä¼šē¤¾'),
(161983, 124444, 'no_lang_code', 'name', 'Meinan Machinery Works, Inc. (Japan)'),
(161984, 124444, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åå—č£½ä½œę‰€'),
(161985, 124445, 'es', 'name', 'Centro Experimental de la Vivienda Económica'),
(161986, 124446, 'no_lang_code', 'name', 'Toshin Electric Co., Ltd. (Japan)'),
(161987, 124446, 'ja', 'name', 'ę±ē„žé›»ę°—ę Ŗå¼ä¼šē¤¾'),
(161988, 124447, 'no_lang_code', 'name', 'Ishifuku Metal Industry Co., Ltd. (Japan)'),
(161989, 124447, 'ja', 'name', 'ēŸ³ē¦é‡‘å±žčˆˆę„­ę Ŗå¼ä¼šē¤¾'),
(161990, 124448, 'no_lang_code', 'name', 'Araigumi Co., Ltd. (Japan)'),
(161991, 124448, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę–°äŗ•ēµ„'),
(161992, 124449, 'no_lang_code', 'name', 'JUJU Cosmetics Co., Ltd. (Japan)'),
(161993, 124449, 'ja', 'name', 'ć‚øćƒ„ć‚øćƒ„åŒ–ē²§å“ę Ŗå¼ä¼šē¤¾'),
(161994, 124450, 'no_lang_code', 'name', 'Kewpie Corporation (Japan)'),
(161995, 124450, 'ja', 'name', 'ć‚­ćƒ¦ćƒ¼ćƒ”ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(161996, 124451, 'no_lang_code', 'name', 'Omikenshi Co., Ltd. (Japan)'),
(161997, 124451, 'ja', 'name', 'ć‚Ŗćƒ¼ćƒŸć‚±ćƒ³ć‚·ę Ŗå¼ä¼šē¤¾'),
(161998, 124452, 'no_lang_code', 'name', 'Technosuruga Laboratory Co., Ltd. (Japan)'),
(161999, 124452, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚ÆćƒŽć‚¹ćƒ«ć‚¬ćƒ»ćƒ©ćƒœ'),
(162000, 124453, 'no_lang_code', 'name', 'Attain Corporation (Japan)'),
(162001, 124453, 'ja', 'name', 'ć‚¢ćƒ†ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(162002, 124454, 'no_lang_code', 'name', 'A.L.M.T. Corp. (Japan)'),
(162003, 124454, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ©ć‚¤ćƒ‰ćƒžćƒ†ćƒŖć‚¢ćƒ«'),
(162004, 124455, 'no_lang_code', 'name', 'Overseas Uranium Resources Development Co., Ltd. (Japan)'),
(162005, 124455, 'ja', 'name', 'ęµ·å¤–ć‚¦ćƒ©ćƒ³č³‡ęŗé–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(162006, 124456, 'no_lang_code', 'name', 'NHN Japan Corporation (Japan)'),
(162007, 124456, 'ja', 'name', 'NHN Japanę Ŗå¼ä¼šē¤¾'),
(162008, 124457, 'no_lang_code', 'name', 'PLAS-TECH Corporation (Japan)'),
(162009, 124457, 'ja', 'name', 'ćƒ—ćƒ©ć‚¹ćƒ»ćƒ†ć‚Æę Ŗå¼ä¼šē¤¾'),
(162010, 124458, 'no_lang_code', 'name', 'Kotobiken Medical Laboratories (Japan)'),
(162011, 124458, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±Ÿę±å¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(162012, 124459, 'no_lang_code', 'name', 'Educa Inc. (Japan)'),
(162013, 124459, 'ja', 'name', 'ć‚Øćƒ‡ćƒ„ć‚«ę Ŗå¼ä¼šē¤¾'),
(162014, 124460, 'no_lang_code', 'name', 'Marudai FOOD Co., Ltd. (Japan)'),
(162015, 124460, 'ja', 'name', 'äøøå¤§é£Ÿå“ę Ŗå¼ä¼šē¤¾'),
(162016, 124461, 'gl', 'name', 'Consorcio Interuniversitario do Sistema Universitario de Galicia (CISUG)'),
(162017, 124462, 'no_lang_code', 'name', 'Arbot, Inc. (Japan)'),
(162018, 124462, 'ja', 'name', 'ć‚¢ćƒ«ćƒœćƒƒćƒˆę Ŗå¼ä¼šē¤¾'),
(162019, 124463, 'en', 'name', 'Koeisha & Co., Ltd.'),
(162020, 124463, 'no_lang_code', 'name', 'Koeisha & Co., Ltd. (Japan)'),
(162021, 124463, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åŗƒę „ē¤¾'),
(162022, 124464, 'no_lang_code', 'name', 'Azmax Co., Ltd. (Japan)'),
(162023, 124464, 'ja', 'name', 'ć‚¢ćƒ…ćƒžćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(162024, 124465, 'no_lang_code', 'name', 'Chemours-Mitsui Fluoroproducts Co., Ltd. (Japan)'),
(162025, 124465, 'ja', 'name', 'äø‰äŗ•ćƒ»ć‚±ćƒžćƒ¼ć‚ŗćƒ•ćƒ­ćƒ­ćƒ—ćƒ­ćƒ€ć‚Æćƒ„ę Ŗå¼ä¼šē¤¾'),
(162026, 124466, 'no_lang_code', 'name', 'OTEC Electronics Co., Ltd. (Japan)'),
(162027, 124466, 'ja', 'name', 'ć‚Ŗćƒ¼ćƒ†ćƒƒć‚Æé›»å­ę Ŗå¼ä¼šē¤¾'),
(162028, 124467, 'no_lang_code', 'name', 'Peaplemedia, Inc. (Japan)'),
(162029, 124467, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ”ćƒ¼ćƒ—ćƒ«ćƒ”ćƒ‡ć‚£ć‚¢'),
(162030, 124468, 'kr', 'name', '(주)ģ½”ģ•„ģ•„ģ“ķ‹°'),
(162031, 124468, 'en', 'name', 'CoreIT'),
(162032, 124468, 'no_lang_code', 'name', 'CoreIT (South Korea)'),
(162033, 124469, 'no_lang_code', 'name', 'Watanabegumi Co., Ltd. (Japan)'),
(162034, 124469, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęø”č¾ŗēµ„'),
(162035, 124470, 'no_lang_code', 'name', 'Forest Engineering & Economics LAB. (Japan)'),
(162036, 124470, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę£®ęž—ēµŒęøˆå·„å­¦ē ”ē©¶ę‰€'),
(162037, 124471, 'no_lang_code', 'name', 'Kuroi Electric Co., Ltd. (Japan)'),
(162038, 124471, 'ja', 'name', 'ć‚Æćƒ­ć‚¤é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(162039, 124472, 'no_lang_code', 'name', 'Chromocenter Inc. (Japan)'),
(162040, 124472, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾chromocenter'),
(162041, 124473, 'pt', 'name', 'Faculdade UnĆ­ntese'),
(162042, 124474, 'no_lang_code', 'name', 'Shofu Inc. (Japan)'),
(162043, 124474, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę¾é¢Ø'),
(162044, 124475, 'no_lang_code', 'name', 'Resona Holdings, Inc. (Japan)'),
(162045, 124475, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚ŠććŖćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(162046, 124476, 'no_lang_code', 'name', 'Miyuki Keori Co., Ltd. (Japan)'),
(162047, 124476, 'ja', 'name', 'å¾”å¹øęÆ›ē¹”ę Ŗå¼ä¼šē¤¾'),
(162048, 124477, 'no_lang_code', 'name', 'Rhesca Co., Ltd. (Japan)'),
(162049, 124477, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¬ć‚¹ć‚«'),
(162050, 124478, 'no_lang_code', 'name', 'Daimei Telecom Engineering Corp. (Japan)'),
(162051, 124478, 'ja', 'name', 'å¤§ę˜Žę Ŗå¼ä¼šē¤¾'),
(162052, 124479, 'en', 'name', 'National Academy of Statistics, Accounting and Audit'),
(162053, 124479, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń статистики, Š¾Š±Š»Ń–ŠŗŃƒ та Š°ŃƒŠ“ŠøŃ‚Ńƒ'),
(162054, 124480, 'no_lang_code', 'name', 'Cresco, Ltd. (Japan)'),
(162055, 124480, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ć‚¹ć‚³'),
(162056, 124481, 'en', 'name', 'NIHR Leicester Biomedical Research Centre'),
(162057, 124482, 'no_lang_code', 'name', 'Inbiotex, Inc. (Japan)'),
(162058, 124482, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ćƒć‚¤ć‚Ŗćƒ†ćƒƒć‚Æć‚¹'),
(162059, 124483, 'en', 'name', 'Phenomics Australia'),
(162060, 124484, 'no_lang_code', 'name', 'SAWA Corporation (Japan)'),
(162061, 124484, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒÆćƒ¼ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(162062, 124485, 'en', 'name', 'Pierre and Marie Curie University'),
(162063, 124485, 'fr', 'name', 'UniversitƩ Pierre-et-Marie-Curie'),
(162064, 124486, 'no_lang_code', 'name', 'Qript Inc. (Japan)'),
(162065, 124486, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾Qript'),
(162066, 124487, 'no_lang_code', 'name', 'DNP Fine Chemicals Co., Ltd. (Japan)'),
(162067, 124487, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾DNPćƒ•ć‚”ć‚¤ćƒ³ć‚±ćƒŸć‚«ćƒ«'),
(162068, 124488, 'no_lang_code', 'name', 'YE DATA Inc. (Japan)'),
(162069, 124488, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒÆć‚¤ćƒ»ć‚¤ćƒ¼ćƒ»ćƒ‡ćƒ¼ć‚æ'),
(162070, 124489, 'no_lang_code', 'name', 'Seven & I Holdings Co., Ltd. (Japan)'),
(162071, 124489, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ćƒ–ćƒ³&ć‚¢ć‚¤ćƒ»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(162072, 124490, 'en', 'name', 'National Institute for Health and Care Research'),
(162073, 124491, 'en', 'name', 'MRC Laboratory of Molecular Biology'),
(162074, 124492, 'no_lang_code', 'name', 'Senka Corporation (Japan)'),
(162075, 124492, 'ja', 'name', 'ć‚»ćƒ³ć‚«ę Ŗå¼ä¼šē¤¾'),
(162076, 124493, 'en', 'name', 'N. L. Dobretsov Institute of Geology'),
(162077, 124493, 'ru', 'name', 'Геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š. Š›. Добрецова Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук (Š“Š˜Š Š”Šž Š ŠŠ)'),
(162078, 124494, 'no_lang_code', 'name', 'Shusei Construction Consultants Co., Ltd. (Japan)'),
(162079, 124494, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äæ®ęˆå»ŗčØ­ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆ'),
(162080, 124495, 'no_lang_code', 'name', 'Biomatrix Research Inc. (Japan)'),
(162081, 124495, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚ŖćƒžćƒˆćƒŖćƒƒć‚Æć‚¹ē ”ē©¶ę‰€'),
(162082, 124496, 'no_lang_code', 'name', 'Summit AGRI-Business Corporation (Japan)'),
(162083, 124496, 'ja', 'name', 'ä½å•†ć‚¢ć‚°ćƒŖćƒ“ć‚øćƒć‚¹ę Ŗå¼ä¼šē¤¾'),
(162084, 124497, 'es', 'name', 'Gobierno de Navarra'),
(162085, 124498, 'fr', 'name', 'ISAE-SUPAERO Recherche'),
(162086, 124499, 'no_lang_code', 'name', 'Tohnichi Mfg. Co., Ltd. (Japan)'),
(162087, 124499, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±ę—„č£½ä½œę‰€'),
(162088, 124500, 'no_lang_code', 'name', 'Airtech Japan, Ltd. (Japan)'),
(162089, 124500, 'ja', 'name', 'ę—„ęœ¬ć‚Øć‚¢ćƒ¼ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(162090, 124501, 'en', 'name', 'NIHR School for Primary Care Research'),
(162091, 124502, 'en', 'name', 'NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast'),
(162092, 124503, 'en', 'name', 'International Liaison Committee on Resuscitation'),
(162093, 124504, 'no_lang_code', 'name', 'Novo Nordisk Pharma Ltd. (Japan)'),
(162094, 124504, 'ja', 'name', 'ćƒŽćƒœćƒŽćƒ«ćƒ‡ć‚£ć‚¹ć‚Æćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(162095, 124505, 'en', 'name', 'FWF Austrian Science Fund'),
(162096, 124505, 'de', 'name', 'Fonds zur Fƶrderung der wissenschaftlichen Forschung'),
(162097, 124506, 'no_lang_code', 'name', 'Keio Corp. (Japan)'),
(162098, 124506, 'ja', 'name', 'äŗ¬ēŽ‹é›»é‰„ę Ŗå¼ä¼šē¤¾'),
(162099, 124507, 'no_lang_code', 'name', 'P&G Prestage (Japan)'),
(162100, 124507, 'ja', 'name', 'P&Gćƒ—ćƒ¬ć‚¹ćƒ†ćƒ¼ć‚øåˆåŒä¼šē¤¾'),
(162101, 124508, 'no_lang_code', 'name', 'Nissin-HIGH Voltage Co., Ltd. (Japan)'),
(162102, 124508, 'ja', 'name', 'ę—„ę–°ćƒć‚¤ćƒœćƒ«ćƒ†ćƒ¼ć‚øę Ŗå¼ä¼šē¤¾'),
(162103, 124509, 'no_lang_code', 'name', 'Touyoukakou Co., Ltd. (Japan)'),
(162104, 124509, 'ja', 'name', 'ę±ę“‹åŒ–å·„ę Ŗå¼ä¼šē¤¾'),
(162105, 124510, 'no_lang_code', 'name', 'Shinreki Industry Co., Ltd. (Japan)'),
(162106, 124510, 'ja', 'name', 'ć‚·ćƒ³ćƒ¬ć‚­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162107, 124511, 'fr', 'name', 'Commissariat Ơ l''Ɖnergie Atomique et aux Ɖnergies Alternatives'),
(162108, 124512, 'pl', 'name', 'KRYPTON Polska Sp. z o.o.'),
(162109, 124512, 'no_lang_code', 'name', 'KRYPTON Polska Sp. z o.o. (Poland)'),
(162110, 124513, 'no_lang_code', 'name', 'Friendcell Laboratory (Japan)'),
(162111, 124513, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ¬ćƒ³ćƒ‰ć‚»ćƒ«ē ”ē©¶ę‰€'),
(162112, 124514, 'no_lang_code', 'name', 'Preferred Networks, Inc. (Japan)'),
(162113, 124514, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾Preferred Networks');
INSERT INTO `ror_settings` VALUES
(162114, 124515, 'no_lang_code', 'name', 'SHIN-Nippon Nondestructive Inspection Co., Ltd. (Japan)'),
(162115, 124515, 'ja', 'name', 'ę–°ę—„ęœ¬éžē “å£Šę¤œęŸ»ę Ŗå¼ä¼šē¤¾'),
(162116, 124516, 'en', 'name', 'Visvesvaraya Technological University'),
(162117, 124516, 'hi', 'name', 'ą¤µą¤æą¤¶ą„ą¤µą„‡ą¤¶ą„ą¤µą¤°ą¤Æą„ą¤Æą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(162118, 124516, 'bn', 'name', 'ą¦¬ą¦æą¦¶ą§ą¦¬ą§‡ą¦¶ą§ą¦¬ą¦°ą¦¾ą¦Æą¦¼ą¦¾ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(162119, 124516, 'ta', 'name', 'ą®µą®æą®øąÆą®µąÆ‡ą®øąÆą®µą®°ą®ÆąÆą®Æą®¾ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(162120, 124516, 'kn', 'name', 'ą²µą²æą²¶ą³ą²µą³‡ą²¶ą³ą²µą²°ą²Æą³ą²Æ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(162121, 124517, 'no_lang_code', 'name', 'Koki Holdings Co., Ltd. (Japan)'),
(162122, 124517, 'ja', 'name', 'å·„ę©Ÿćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(162123, 124518, 'no_lang_code', 'name', 'Tensho Electric Industries Co., Ltd. (Japan)'),
(162124, 124518, 'ja', 'name', 'å¤©ę˜‡é›»ę°—å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162125, 124519, 'en', 'name', 'Inter American University of Puerto Rico, Arecibo Campus'),
(162126, 124520, 'no_lang_code', 'name', 'HYMO Corporation (Japan)'),
(162127, 124520, 'ja', 'name', 'ćƒć‚¤ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(162128, 124521, 'no_lang_code', 'name', 'Soliton Systems K.K. (Japan)'),
(162129, 124521, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚½ćƒŖćƒˆćƒ³ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(162130, 124522, 'no_lang_code', 'name', 'Meiho Co., Ltd. (Japan)'),
(162131, 124522, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ”ć‚¤ćƒ›ćƒ¼'),
(162132, 124523, 'no_lang_code', 'name', 'Lattice Technology Co., Ltd. (Japan)'),
(162133, 124523, 'ja', 'name', 'ćƒ©ćƒ†ć‚£ć‚¹ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(162134, 124524, 'no_lang_code', 'name', 'Chunichi Denshi Co., Ltd. (Japan)'),
(162135, 124524, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äø­ę—„é›»å­'),
(162136, 124525, 'no_lang_code', 'name', 'KEN Research Institute Inc. (Japan)'),
(162137, 124525, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚±ćƒ³ćƒ»ćƒŖć‚µćƒ¼ćƒ'),
(162138, 124526, 'no_lang_code', 'name', 'Kokubun Ltd. (Japan)'),
(162139, 124526, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚³ć‚Æćƒ–ćƒ³ćƒŖćƒŸćƒ†ćƒƒćƒ‰'),
(162140, 124527, 'no_lang_code', 'name', 'Iwasaki Electric Co., Ltd. (Japan)'),
(162141, 124527, 'ja', 'name', 'å²©å“Žé›»ę°—ę Ŗå¼ä¼šē¤¾'),
(162142, 124528, 'no_lang_code', 'name', 'Odelic Co., Ltd. (Japan)'),
(162143, 124528, 'ja', 'name', 'ć‚Ŗćƒ¼ćƒ‡ćƒŖćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(162144, 124529, 'no_lang_code', 'name', 'Suncoh Consultants Co., Ltd. (Japan)'),
(162145, 124529, 'ja', 'name', 'ć‚µćƒ³ć‚³ćƒ¼ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(162146, 124530, 'fr', 'name', 'Laboratoire de Biotechnologies Agroalimentaire et Environnementale'),
(162147, 124531, 'no_lang_code', 'name', 'Shigematsu Works Co., Ltd. (Japan)'),
(162148, 124531, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é‡ę¾č£½ä½œę‰€'),
(162149, 124532, 'no_lang_code', 'name', 'Pharmacogene Tiptop Inc. (Japan)'),
(162150, 124532, 'ja', 'name', 'č–¬åŠ¹ć‚²ćƒŽćƒ ęƒ…å ±ę Ŗå¼ä¼šē¤¾'),
(162151, 124533, 'no_lang_code', 'name', 'Furubayashi Shiko Co., Ltd. (Japan)'),
(162152, 124533, 'ja', 'name', 'å¤ęž—ē“™å·„ę Ŗå¼ä¼šē¤¾'),
(162153, 124534, 'no_lang_code', 'name', 'Andersen Service Co., Ltd. (Japan)'),
(162154, 124534, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ³ćƒ‡ćƒ«ć‚»ćƒ³ć‚µćƒ¼ćƒ“ć‚¹'),
(162155, 124535, 'no_lang_code', 'name', 'Toyotama Koryo Co., Ltd. (Japan)'),
(162156, 124535, 'ja', 'name', 'č±ŠēŽ‰é¦™ę–™ę Ŗå¼ä¼šē¤¾'),
(162157, 124536, 'en', 'name', 'Quetta Institute of Medical Sciences'),
(162158, 124537, 'es', 'name', 'Instituto de Investigación Sanitaria Fundación Jiménez Díaz'),
(162159, 124538, 'no_lang_code', 'name', 'Domoto Foods Co., Ltd. (Japan)'),
(162160, 124538, 'ja', 'name', 'å ‚ęœ¬é£Ÿå“ę Ŗå¼ä¼šē¤¾'),
(162161, 124539, 'no_lang_code', 'name', 'Meiki Co., Ltd. (Japan)'),
(162162, 124539, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åę©Ÿč£½ä½œę‰€'),
(162163, 124540, 'en', 'name', 'NovaVive Inc. (Canada)'),
(162164, 124541, 'en', 'name', 'National Research Council of Thailand'),
(162165, 124541, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąøąø²ąø£ąø§ąø“ąøˆąø±ąø¢ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(162166, 124542, 'no_lang_code', 'name', 'Energy Driven Technologies (United States)'),
(162167, 124543, 'no_lang_code', 'name', 'Fujimak Corporation (Japan)'),
(162168, 124543, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚øćƒžćƒƒć‚Æ'),
(162169, 124544, 'fr', 'name', 'Institut Maurice Hauriou'),
(162170, 124544, 'en', 'name', 'Maurice Hauriou Institute'),
(162171, 124545, 'no_lang_code', 'name', 'Gotoh Hatchery, Inc. (Japan)'),
(162172, 124545, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¾Œč—¤å­µåµå “'),
(162173, 124546, 'no_lang_code', 'name', 'FLEX Japan Co., Ltd. (Japan)'),
(162174, 124546, 'ja', 'name', 'ćƒ•ćƒ¬ćƒƒć‚Æć‚¹ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(162175, 124547, 'no_lang_code', 'name', 'Chlorella Industry Co., Ltd. (Japan)'),
(162176, 124547, 'ja', 'name', 'ć‚Æćƒ­ćƒ¬ćƒ©å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162177, 124548, 'no_lang_code', 'name', 'Fujii Gokin Seisakusho Co., Ltd. (Japan)'),
(162178, 124548, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č—¤äŗ•åˆé‡‘č£½ä½œę‰€'),
(162179, 124549, 'no_lang_code', 'name', 'Cosel Co., Ltd. (Japan)'),
(162180, 124549, 'ja', 'name', 'ć‚³ćƒ¼ć‚»ćƒ«ę Ŗå¼ä¼šē¤¾'),
(162181, 124550, 'fr', 'name', 'UniLaSalle'),
(162182, 124551, 'no_lang_code', 'name', 'Dainen Co., Ltd. (Japan)'),
(162183, 124551, 'ja', 'name', 'ćƒ€ć‚¤ćƒćƒ³ę Ŗå¼ä¼šē¤¾'),
(162184, 124552, 'no_lang_code', 'name', 'ASO Corporation (Japan)'),
(162185, 124552, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾éŗ»ē”Ÿ'),
(162186, 124553, 'en', 'name', 'Reglagene, Inc. (United States)'),
(162187, 124554, 'no_lang_code', 'name', 'Tamapoly Co., Ltd. (Japan)'),
(162188, 124554, 'ja', 'name', 'ć‚æćƒžćƒćƒŖę Ŗå¼ä¼šē¤¾'),
(162189, 124555, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Laboratori Nazionali del Gran Sasso'),
(162190, 124555, 'en', 'name', 'National Institute for Nuclear Physics, Gran Sasso National Laboratories'),
(162191, 124556, 'en', 'name', 'Abiola Ajimobi Technical University Ibadan'),
(162192, 124557, 'en', 'name', 'Research Institute of Environment and Nature Conservation Technologies'),
(162193, 124558, 'no_lang_code', 'name', 'Daishowa Paper Products Co., Ltd. (Japan)'),
(162194, 124558, 'ja', 'name', 'å¤§ę˜­å’Œē“™å·„ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(162195, 124559, 'no_lang_code', 'name', 'Tomoku Co., Ltd. (Japan)'),
(162196, 124559, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ¼ćƒ¢ć‚Æ'),
(162197, 124560, 'en', 'name', 'The Institute of Technical Mechanics of the National Academy of Sciences of Ukraine and the State Space Agency of Ukraine'),
(162198, 124560, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технічної механіки ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України і Державного космічного агентства України'),
(162199, 124561, 'no_lang_code', 'name', 'IIDA Densi Sekkei Co., Ltd. (Japan)'),
(162200, 124561, 'ja', 'name', 'é£Æē”°é›»å­čØ­čØˆę Ŗå¼ä¼šē¤¾'),
(162201, 124562, 'no_lang_code', 'name', 'Sakamura Machine Co., Ltd. (Japan)'),
(162202, 124562, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é˜Ŗę‘ę©Ÿę¢°č£½ä½œę‰€'),
(162203, 124563, 'no_lang_code', 'name', 'DAI-Nippon Meiji Sugar Co., Ltd. (Japan)'),
(162204, 124563, 'ja', 'name', 'å¤§ę—„ęœ¬ę˜Žę²»č£½ē³–ę Ŗå¼ä¼šē¤¾'),
(162205, 124564, 'en', 'name', 'Center for the Evolutionary Origins of Human Behavior, Kyoto University'),
(162206, 124564, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦ćƒ’ćƒˆč”Œå‹•é€²åŒ–ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(162207, 124565, 'no_lang_code', 'name', 'Shelter Co., Ltd. (Japan)'),
(162208, 124565, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ć‚§ćƒ«ć‚æćƒ¼'),
(162209, 124566, 'no_lang_code', 'name', 'Hanatoyo-Landscape Co., Ltd. (Japan)'),
(162210, 124566, 'ja', 'name', 'čŠ±č±Šé€ åœ’ę Ŗå¼ä¼šē¤¾'),
(162211, 124567, 'en', 'name', 'Medinirai Medical College and Hospital, Palamu'),
(162212, 124568, 'no_lang_code', 'name', 'ARAX Co., Ltd. (Japan)'),
(162213, 124568, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ©ć‚Æć‚¹'),
(162214, 124569, 'no_lang_code', 'name', 'Periodock Co., Ltd. (Japan)'),
(162215, 124569, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ”ćƒŖć‚Ŗćƒ‰ćƒƒć‚Æ'),
(162216, 124570, 'no_lang_code', 'name', 'Location Analysis & Appraisal Institute (Japan)'),
(162217, 124570, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē«‹åœ°č©•ä¾”ē ”ē©¶ę‰€'),
(162218, 124571, 'no_lang_code', 'name', 'Aloka Co., Ltd. (Japan)'),
(162219, 124571, 'ja', 'name', 'ć‚¢ćƒ­ć‚«ę Ŗå¼ä¼šē¤¾'),
(162220, 124572, 'no_lang_code', 'name', 'CTK Corporation (Japan)'),
(162221, 124572, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾CTK'),
(162222, 124573, 'no_lang_code', 'name', 'Zenyaku Kogyo Co., Ltd. (Japan)'),
(162223, 124573, 'ja', 'name', 'å…Øč–¬å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162224, 124574, 'en', 'name', 'Center for iPS Cell Research and Application, Kyoto University'),
(162225, 124574, 'ja', 'name', '京都大学iPSē“°čƒžē ”ē©¶ę‰€'),
(162226, 124575, 'no_lang_code', 'name', 'SPEC Corporation (Japan)'),
(162227, 124575, 'ja', 'name', 'ć‚¹ćƒšćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(162228, 124576, 'no_lang_code', 'name', 'Shashin Kagaku Co., Ltd. (Japan)'),
(162229, 124576, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å†™ēœŸåŒ–å­¦'),
(162230, 124577, 'no_lang_code', 'name', 'IBM Japan, Ltd. (Japan)'),
(162231, 124577, 'ja', 'name', 'ę—„ęœ¬ć‚¢ć‚¤ćƒ»ćƒ“ćƒ¼ćƒ»ć‚Øćƒ ę Ŗå¼ä¼šē¤¾'),
(162232, 124578, 'no_lang_code', 'name', 'TEI Co., Ltd. (Japan)'),
(162233, 124578, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾TEI'),
(162234, 124579, 'no_lang_code', 'name', 'NANO-TEM (Japan)'),
(162235, 124579, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŠćƒŽćƒ†ćƒ '),
(162236, 124580, 'no_lang_code', 'name', 'Nichiban Co., Ltd. (Japan)'),
(162237, 124580, 'ja', 'name', 'ćƒ‹ćƒćƒćƒ³ę Ŗå¼ä¼šē¤¾'),
(162238, 124581, 'no_lang_code', 'name', 'Skinos Co., Ltd. (Japan)'),
(162239, 124581, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ć‚­ćƒŽć‚¹'),
(162240, 124582, 'id', 'name', 'Universitas Nahdlatul Ulama Al Ghazali Cilacap'),
(162241, 124583, 'no_lang_code', 'name', 'Alumi-Surface Technologies Co., Ltd. (Japan)'),
(162242, 124583, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ćƒŸč”Øé¢ęŠ€č”“ē ”ē©¶ę‰€'),
(162243, 124584, 'en', 'name', 'Simons Foundation'),
(162244, 124585, 'en', 'name', 'Kien Giang University'),
(162245, 124585, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c KiĆŖn Giang'),
(162246, 124586, 'no_lang_code', 'name', 'Ostrand Corp. (Japan)'),
(162247, 124586, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗć‚¹ćƒˆćƒ©ćƒ³ćƒ‰'),
(162248, 124587, 'no_lang_code', 'name', 'Original Engineering Consultants Co., Ltd. (Japan)'),
(162249, 124587, 'ja', 'name', 'ć‚ŖćƒŖć‚øćƒŠćƒ«čØ­čØˆę Ŗå¼ä¼šē¤¾'),
(162250, 124588, 'en', 'name', 'Exai Bio'),
(162251, 124588, 'no_lang_code', 'name', 'Exai Bio (United States)'),
(162252, 124589, 'no_lang_code', 'name', 'SHIN-Hokoku Steel Corporation (Japan)'),
(162253, 124589, 'ja', 'name', 'ę–°å ±å›½č£½é‰„ę Ŗå¼ä¼šē¤¾'),
(162254, 124590, 'no_lang_code', 'name', 'MARUWA Co., Ltd. (Japan)'),
(162255, 124590, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾MARUWA'),
(162256, 124591, 'en', 'name', 'NIHR Applied Research Collaboration South West Peninsula'),
(162257, 124592, 'no_lang_code', 'name', 'Descente Ltd. (Japan)'),
(162258, 124592, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‡ć‚µćƒ³ćƒˆ'),
(162259, 124593, 'no_lang_code', 'name', 'SWING Ltd. (Japan)'),
(162260, 124593, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾SWING'),
(162261, 124594, 'no_lang_code', 'name', 'Ohta''s ISAN Co., Ltd. (Japan)'),
(162262, 124594, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¤Ŗē”°čƒƒę•£'),
(162263, 124595, 'no_lang_code', 'name', 'Nihonkaisui Co., Ltd. (Japan)'),
(162264, 124595, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—„ęœ¬ęµ·ę°“'),
(162265, 124596, 'no_lang_code', 'name', 'Meira Corporation (Japan)'),
(162266, 124596, 'ja', 'name', 'ćƒ”ć‚¤ćƒ©ę Ŗå¼ä¼šē¤¾'),
(162267, 124597, 'no_lang_code', 'name', 'Rehabilitation Reserch Laboratory Co., Ltd. (Japan)'),
(162268, 124597, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŖćƒćƒ“ćƒŖćƒ»ćƒŖć‚µćƒ¼ćƒćƒ»ćƒ©ćƒœćƒ©ćƒˆćƒŖćƒ¼'),
(162269, 124598, 'fr', 'name', 'UniversitƩ Aix-Marseille-III'),
(162270, 124599, 'no_lang_code', 'name', 'Bycen Co., Ltd. (Japan)'),
(162271, 124599, 'ja', 'name', 'ćƒć‚¤ć‚»ćƒ³ę Ŗå¼ä¼šē¤¾'),
(162272, 124600, 'no_lang_code', 'name', 'Minoru Industrial Co., Ltd. (Japan)'),
(162273, 124600, 'ja', 'name', 'ćæć®ć‚‹ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(162274, 124601, 'no_lang_code', 'name', 'KISO-Jiban Consultants Co., Ltd. (Japan)'),
(162275, 124601, 'ja', 'name', 'åŸŗē¤Žåœ°ē›¤ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒ„ę Ŗå¼ä¼šē¤¾'),
(162276, 124602, 'no_lang_code', 'name', 'Sansei Foods Co., Ltd. (Japan)'),
(162277, 124602, 'ja', 'name', 'äø‰ę˜Ÿé£Ÿå“ę Ŗå¼ä¼šē¤¾'),
(162278, 124603, 'no_lang_code', 'name', 'AVIX, Inc. (Japan)'),
(162279, 124603, 'ja', 'name', 'ć‚¢ćƒ“ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(162280, 124604, 'no_lang_code', 'name', 'Danax Corporation (Japan)'),
(162281, 124604, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ćƒŠćƒƒć‚Æć‚¹'),
(162282, 124605, 'no_lang_code', 'name', 'Cataler Corporation (Japan)'),
(162283, 124605, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒ£ć‚æćƒ©ćƒ¼'),
(162284, 124606, 'no_lang_code', 'name', 'Redox Bioscience Inc. (Japan)'),
(162285, 124606, 'ja', 'name', 'ćƒ¬ćƒ‰ćƒƒć‚Æć‚¹ćƒ»ćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(162286, 124607, 'en', 'name', 'NIHR Leeds In Vitro Diagnostics Co-operative'),
(162287, 124608, 'no_lang_code', 'name', 'Sintokogio, Ltd. (Japan)'),
(162288, 124608, 'ja', 'name', 'ę–°ę±å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162289, 124609, 'en', 'name', 'Council on Children and Families'),
(162290, 124610, 'fr', 'name', 'Ɖcole Nationale d''IngĆ©nieurs de Metz'),
(162291, 124611, 'no_lang_code', 'name', 'Dynic Corporation (Japan)'),
(162292, 124611, 'ja', 'name', 'ćƒ€ć‚¤ćƒ‹ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(162293, 124612, 'en', 'name', 'Canadian Skin Patient Alliance'),
(162294, 124613, 'no_lang_code', 'name', 'Fukusuke Corporation (Japan)'),
(162295, 124613, 'ja', 'name', 'ē¦åŠ©ę Ŗå¼ä¼šē¤¾'),
(162296, 124614, 'no_lang_code', 'name', 'Amiteq Co., Ltd. (Japan)'),
(162297, 124614, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒŸćƒ†ćƒƒć‚Æ'),
(162298, 124615, 'en', 'name', 'Technical Centre of the National Academy of Sciences of Ukraine (Ukraine)'),
(162299, 124615, 'uk', 'name', 'Технічний центр ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(162300, 124616, 'no_lang_code', 'name', 'Shirako Co., Ltd. (Japan)'),
(162301, 124616, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē™½å­'),
(162302, 124617, 'no_lang_code', 'name', 'Sanyu REC Co., Ltd. (Japan)'),
(162303, 124617, 'ja', 'name', 'ć‚µćƒ³ćƒ¦ćƒ¬ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(162304, 124618, 'no_lang_code', 'name', 'DC Co., Ltd. (Japan)'),
(162305, 124618, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‡ć‚¤ćƒ»ć‚·ć‚¤'),
(162306, 124619, 'es', 'name', 'Universidad Superior de Guadalajara'),
(162307, 124620, 'no_lang_code', 'name', 'Haltec Corporation (Japan)'),
(162308, 124620, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒ«ćƒ†ćƒƒć‚Æ'),
(162309, 124621, 'no_lang_code', 'name', 'Orthomedico Inc. (Japan)'),
(162310, 124621, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ«ćƒˆćƒ”ćƒ‡ć‚£ć‚³'),
(162311, 124622, 'no_lang_code', 'name', 'NUC Corporation (Japan)'),
(162312, 124622, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾NUC'),
(162313, 124623, 'fr', 'name', 'Laboratoire Cliniques Psychopathologique et Interculturelle'),
(162314, 124624, 'no_lang_code', 'name', 'Sawanotsuru Co., Ltd. (Japan)'),
(162315, 124624, 'ja', 'name', 'ę²¢ć®é¶“ę Ŗå¼ä¼šē¤¾'),
(162316, 124625, 'no_lang_code', 'name', 'Heian Corporation (Japan)'),
(162317, 124625, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¹³å®‰ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(162318, 124626, 'no_lang_code', 'name', 'Ideal STAR Inc. (Japan)'),
(162319, 124626, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ‡ć‚¢ćƒ«ć‚¹ć‚æćƒ¼'),
(162320, 124627, 'no_lang_code', 'name', 'Isehan Co., Ltd. (Japan)'),
(162321, 124627, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ä¼Šå‹¢åŠ'),
(162322, 124628, 'en', 'name', 'Women''s Christian College'),
(162323, 124629, 'no_lang_code', 'name', 'Hisamitsu Pharmaceutical Co., Ltd. (Japan)'),
(162324, 124629, 'ja', 'name', 'ä¹…å…‰č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(162325, 124630, 'no_lang_code', 'name', 'Sunrec Co., Ltd. (Japan)'),
(162326, 124630, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ćƒ¬ćƒƒć‚Æ'),
(162327, 124631, 'no_lang_code', 'name', 'Modec, Inc. (Japan)'),
(162328, 124631, 'ja', 'name', 'äø‰äŗ•ęµ·ę“‹é–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(162329, 124632, 'en', 'name', 'NIHR Applied Research Collaboration Greater Manchester'),
(162330, 124633, 'en', 'name', 'University of West Attica'),
(162331, 124633, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Δυτικής Αττικής'),
(162332, 124634, 'en', 'name', 'Methodist Hospital'),
(162333, 124635, 'no_lang_code', 'name', 'BIO''C Co., Ltd. (Japan)'),
(162334, 124635, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ“ć‚Ŗćƒƒć‚Æ'),
(162335, 124636, 'en', 'name', 'Oatridge College'),
(162336, 124637, 'no_lang_code', 'name', 'Shoko Co., Ltd. (Japan)'),
(162337, 124637, 'ja', 'name', 'ę˜­å…‰é€šå•†ę Ŗå¼ä¼šē¤¾'),
(162338, 124638, 'no_lang_code', 'name', 'Special Nano Coating & Thin Films (Japan)'),
(162339, 124638, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾SNT'),
(162340, 124639, 'en', 'name', 'IDEAS Science Nonprofit Ltd'),
(162341, 124640, 'no_lang_code', 'name', 'SAN-AI OIL Co., Ltd. (Japan)'),
(162342, 124640, 'ja', 'name', 'äø‰ę„›ēŸ³ę²¹ę Ŗå¼ä¼šē¤¾'),
(162343, 124641, 'no_lang_code', 'name', 'Hirobe Kouki Co., Ltd. (Japan)'),
(162344, 124641, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å»£éƒØē”¬å™Ø'),
(162345, 124642, 'no_lang_code', 'name', 'MCBI Inc. (Japan)'),
(162346, 124642, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾MCBI'),
(162347, 124643, 'en', 'name', 'Araris Biotech AG (Switzerland)'),
(162348, 124644, 'no_lang_code', 'name', 'Ohmoto GUMI Co., Ltd. (Japan)'),
(162349, 124644, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¤§ęœ¬ēµ„'),
(162350, 124645, 'no_lang_code', 'name', 'Sojitz Corp. (Japan)'),
(162351, 124645, 'ja', 'name', 'åŒę—„ę Ŗå¼ä¼šē¤¾'),
(162352, 124646, 'no_lang_code', 'name', 'Kojundo Chemical Laboratory Co., Ltd. (Japan)'),
(162353, 124646, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é«˜ē“”åŗ¦åŒ–å­¦ē ”ē©¶ę‰€'),
(162354, 124647, 'no_lang_code', 'name', 'Technogroup Japan Co., Ltd. (Japan)'),
(162355, 124647, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒ†ć‚ÆćƒŽć‚°ćƒ«ćƒ¼ćƒ—ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(162356, 124648, 'no_lang_code', 'name', 'Senku Co., Ltd. (Japan)'),
(162357, 124648, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…ˆé§†'),
(162358, 124649, 'no_lang_code', 'name', 'Axcelead Drug Discovery Partners Inc. (Japan)'),
(162359, 124649, 'ja', 'name', 'Axcelead Drug Discovery Partnersę Ŗå¼ä¼šē¤¾'),
(162360, 124650, 'no_lang_code', 'name', 'Ichiken Co., Ltd. (Japan)'),
(162361, 124650, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒć‚±ćƒ³'),
(162362, 124651, 'no_lang_code', 'name', 'All Nippon Airways Co., Ltd. (Japan)'),
(162363, 124651, 'ja', 'name', 'å…Øę—„ęœ¬ē©ŗč¼øę Ŗå¼ä¼šē¤¾'),
(162364, 124652, 'no_lang_code', 'name', 'KETT Electric Laboratory (Japan)'),
(162365, 124652, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚±ćƒ„ćƒˆē§‘å­¦ē ”ē©¶ę‰€'),
(162366, 124653, 'no_lang_code', 'name', 'Jex Co., Ltd. (Japan)'),
(162367, 124653, 'ja', 'name', 'ć‚øć‚§ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(162368, 124654, 'en', 'name', 'Sugiyama Clinic Marunouchi'),
(162369, 124654, 'ja', 'name', 'ę‰å±±ē”£å©¦äŗŗē§‘ 丸の内'),
(162370, 124655, 'no_lang_code', 'name', 'Technoflora Co. (Japan)'),
(162371, 124655, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒ†ć‚ÆćƒŽćƒ•ćƒ­ćƒ¼ćƒ©'),
(162372, 124656, 'no_lang_code', 'name', 'Nikkoku Flour Milling Co., Ltd. (Japan)'),
(162373, 124656, 'ja', 'name', 'ę—„ē©€č£½ē²‰ę Ŗå¼ä¼šē¤¾'),
(162374, 124657, 'no_lang_code', 'name', 'Technova Inc. (Japan)'),
(162375, 124657, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ć‚ÆćƒŽćƒ'),
(162376, 124658, 'no_lang_code', 'name', 'Daikokuya Holdings Co., Ltd. (Japan)'),
(162377, 124658, 'ja', 'name', 'å¤§é»’å±‹ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(162378, 124659, 'no_lang_code', 'name', 'WADA Precision Dental Laboratories Co., Ltd. (Japan)'),
(162379, 124659, 'ja', 'name', 'å’Œē”°ē²¾åÆ†ę­Æē ”ę Ŗå¼ä¼šē¤¾'),
(162380, 124660, 'en', 'name', 'Institute of Epigenetics and Stem Cells'),
(162381, 124661, 'no_lang_code', 'name', 'LANG Co., Ltd. (Japan)'),
(162382, 124661, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ©ćƒ³ć‚°'),
(162383, 124662, 'fr', 'name', 'Laboratoire Interdisciplinaire pour l’Innovation et la Recherche en SantĆ© d’OrlĆ©ans'),
(162384, 124663, 'no_lang_code', 'name', 'Konoshima Chemical Co., Ltd. (Japan)'),
(162385, 124663, 'ja', 'name', 'ē„žå³¶åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162386, 124664, 'en', 'name', 'William Carey University'),
(162387, 124664, 'hi', 'name', 'विलियम ą¤•ą„ˆą¤°ą„‡ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤®ą„‡ą¤˜ą¤¾ą¤²ą¤Æ'),
(162388, 124665, 'no_lang_code', 'name', 'SE Corporation (Japan)'),
(162389, 124665, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ć‚¤ćƒ¼'),
(162390, 124666, 'en', 'name', 'NIHR Southampton Respiratory Biomedical Research Unit'),
(162391, 124667, 'fr', 'name', 'Centre d''EpidƩmiologie et de Recherche en santƩ des POPulations de Toulouse'),
(162392, 124667, 'en', 'name', 'Centre for Epidemiology and Research in POPulation Health'),
(162393, 124668, 'no_lang_code', 'name', 'Anabuki Construction Inc. (Japan)'),
(162394, 124668, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē©“å¹å·„å‹™åŗ—'),
(162395, 124669, 'no_lang_code', 'name', 'Hinomaru Yogyo Co., Ltd. (Japan)'),
(162396, 124669, 'ja', 'name', 'ę—„ćƒŽäøøēŖÆę„­ę Ŗå¼ä¼šē¤¾'),
(162397, 124670, 'no_lang_code', 'name', 'Shimaya Corporation (Japan)'),
(162398, 124670, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ćƒžćƒ¤'),
(162399, 124671, 'no_lang_code', 'name', 'Up Well Co.ltd. (Japan)'),
(162400, 124671, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒƒćƒ—ć‚¦ć‚§ćƒ«'),
(162401, 124672, 'no_lang_code', 'name', 'NEOMAX Co., Ltd. (Japan)'),
(162402, 124672, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾NEOMAX'),
(162403, 124673, 'no_lang_code', 'name', 'Nisca Corporation (Japan)'),
(162404, 124673, 'ja', 'name', 'ćƒ‹ć‚¹ć‚«ę Ŗå¼ä¼šē¤¾'),
(162405, 124674, 'en', 'name', 'National Aeronautics and Space Administration'),
(162406, 124675, 'no_lang_code', 'name', 'Tefco Co., Ltd. (Japan)'),
(162407, 124675, 'ja', 'name', 'ćƒ†ćƒ•ć‚³ę Ŗå¼ä¼šē¤¾'),
(162408, 124676, 'no_lang_code', 'name', 'Elastec Corporation (Japan)'),
(162409, 124676, 'ja', 'name', 'ć‚Øćƒ©ć‚¹ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(162410, 124677, 'no_lang_code', 'name', 'Cashew Co., Ltd. (Japan)'),
(162411, 124677, 'ja', 'name', 'ć‚«ć‚·ćƒ„ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(162412, 124678, 'en', 'name', 'National Institute of Technology Arunachal Pradesh'),
(162413, 124678, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤…ą¤°ą„ą¤£ą¤¾ą¤šą¤² ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶)'),
(162414, 124679, 'en', 'name', 'Canadian Institutes of Health Research'),
(162415, 124679, 'fr', 'name', 'Instituts de recherche en santƩ du Canada'),
(162416, 124680, 'no_lang_code', 'name', 'Gates Unitta ASIA Company (Japan)'),
(162417, 124680, 'ja', 'name', 'ć‚²ć‚¤ćƒ„ćƒ»ćƒ¦ćƒ‹ćƒƒć‚æćƒ»ć‚¢ć‚øć‚¢ę Ŗå¼ä¼šē¤¾'),
(162418, 124681, 'en', 'name', 'Scotland''s Rural College'),
(162419, 124682, 'no_lang_code', 'name', 'Maspro Denkoh Corp. (Japan)'),
(162420, 124682, 'ja', 'name', 'ćƒžć‚¹ćƒ—ćƒ­é›»å·„ę Ŗå¼ä¼šē¤¾'),
(162421, 124683, 'en', 'name', 'NIHR Central Commissioning Facility'),
(162422, 124684, 'en', 'name', 'Dessie Health Science College'),
(162423, 124685, 'no_lang_code', 'name', 'UT Research Institute (Japan)'),
(162424, 124685, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±å¤§ē·ē ”'),
(162425, 124686, 'en', 'name', 'Jorhat Engineering College'),
(162426, 124686, 'as', 'name', 'ą¦Æą§‹ą§°ą¦¹ą¦¾ą¦Ÿ ą¦…ą¦­ą¦æą¦Æą¦¾ą¦Øą§ą¦¤ą§ą§°ą¦æą¦• ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(162427, 124686, 'te', 'name', 'ą°œą±‹ą°°ą±ą°¹ą°¾ą°Ÿą± ą°‡ą°‚ą°œą°Øą±€ą°°ą°æą°‚ą°—ą± ą°•ą°¾ą°²ą±‡ą°œą°æ'),
(162428, 124687, 'no_lang_code', 'name', 'Hishinuma Machinery Co., Ltd. (Japan)'),
(162429, 124687, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ’ć‚·ćƒŒćƒžćƒžć‚·ćƒŠćƒŖćƒ¼'),
(162430, 124688, 'sv', 'name', 'Teaterhƶgskolan'),
(162431, 124688, 'fi', 'name', 'Teatterikorkeakoulu'),
(162432, 124689, 'no_lang_code', 'name', 'Nitride Semiconductors Co., Ltd. (Japan)'),
(162433, 124689, 'ja', 'name', 'ćƒŠć‚¤ćƒˆćƒ©ć‚¤ćƒ‰ćƒ»ć‚»ćƒŸć‚³ćƒ³ćƒ€ć‚Æć‚æćƒ¼ę Ŗå¼ä¼šē¤¾'),
(162434, 124690, 'no_lang_code', 'name', 'Docon Co., Ltd. (Japan)'),
(162435, 124690, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‰ćƒ¼ć‚³ćƒ³'),
(162436, 124691, 'no_lang_code', 'name', 'Keisoku Engineering System Co., Ltd. (Japan)'),
(162437, 124691, 'ja', 'name', 'čØˆęø¬ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(162438, 124692, 'no_lang_code', 'name', 'HOB Co., Ltd. (Japan)'),
(162439, 124692, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ›ćƒ¼ćƒ–'),
(162440, 124693, 'no_lang_code', 'name', 'Superbag Co., Ltd. (Japan)'),
(162441, 124693, 'ja', 'name', 'ć‚¹ćƒ¼ćƒ‘ćƒ¼ćƒćƒƒć‚°ę Ŗå¼ä¼šē¤¾'),
(162442, 124694, 'no_lang_code', 'name', 'Ecological CITY Organizer (Japan)'),
(162443, 124694, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾éƒ½åø‚ē’°å¢ƒčØˆē”»ē ”ē©¶ę‰€'),
(162444, 124695, 'fr', 'name', 'UniversitƩ Jean Monnet'),
(162445, 124696, 'no_lang_code', 'name', 'MORY Industries Inc. (Japan)'),
(162446, 124696, 'ja', 'name', 'ćƒ¢ćƒŖå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162447, 124697, 'no_lang_code', 'name', 'MR Technology, Inc. (Japan)'),
(162448, 124697, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ ćƒ»ć‚¢ćƒ¼ćƒ«ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼'),
(162449, 124698, 'pt', 'name', 'Instituto UniversitƔrio Militar'),
(162450, 124698, 'en', 'name', 'Military University Institute'),
(162451, 124699, 'it', 'name', 'Il Laboratorio'),
(162452, 124700, 'no_lang_code', 'name', 'Mycom, Inc. (Japan)'),
(162453, 124700, 'ja', 'name', 'ćƒžć‚¤ć‚³ćƒ ę Ŗå¼ä¼šē¤¾'),
(162454, 124701, 'no_lang_code', 'name', 'CCS Inc. (Japan)'),
(162455, 124701, 'ja', 'name', 'ć‚·ćƒ¼ć‚·ćƒ¼ć‚Øć‚¹ę Ŗå¼ä¼šē¤¾'),
(162456, 124702, 'no_lang_code', 'name', 'Accuthera Inc. (Japan)'),
(162457, 124702, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚­ćƒ„ć‚»ćƒ©'),
(162458, 124703, 'es', 'name', 'Fondo Nacional de Desarrollo Científico y Tecnológico'),
(162459, 124704, 'no_lang_code', 'name', 'IMV Corporation (Japan)'),
(162460, 124704, 'ja', 'name', 'IMVę Ŗå¼ä¼šē¤¾'),
(162461, 124705, 'en', 'name', 'State Forest Resources Agency of Ukraine'),
(162462, 124705, 'uk', 'name', 'Державне агентство лісових Ń€ŠµŃŃƒŃ€ŃŃ–Š² України'),
(162463, 124706, 'no_lang_code', 'name', 'PROCIENCIA'),
(162464, 124706, 'es', 'name', 'Programa Nacional de Investigación Científica y Estudios Avanzados'),
(162465, 124707, 'es', 'name', 'Consejo Nacional de Ciencia, Tecnología e Innovación Tecnológica'),
(162466, 124708, 'en', 'name', 'Mahatma Gandhi Government Arts College, Mahe, Puducherry'),
(162467, 124709, 'en', 'name', 'International Anal Neoplasia Society'),
(162468, 124710, 'no_lang_code', 'name', 'NHV Corporation (Japan)'),
(162469, 124710, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾NHVć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(162470, 124711, 'de', 'name', 'Landeskriminalamt Nordrhein-Westfalen'),
(162471, 124712, 'no_lang_code', 'name', 'Sanritsu Zelkova Veterinary Laboratory (Japan)'),
(162472, 124712, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ćƒŖćƒ„ć‚»ćƒ«ć‚³ćƒę¤œęŸ»ć‚»ćƒ³ć‚æćƒ¼'),
(162473, 124713, 'no_lang_code', 'name', 'Bicom Corporation (Japan)'),
(162474, 124713, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚¤ć‚³ćƒ '),
(162475, 124714, 'en', 'name', 'Kyoto Institute of Economic Research, Kyoto University'),
(162476, 124714, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦ēµŒęøˆē ”ē©¶ę‰€'),
(162477, 124715, 'no_lang_code', 'name', 'Trinity Industrial Corporation (Japan)'),
(162478, 124715, 'ja', 'name', 'ćƒˆćƒŖćƒ‹ćƒ†ć‚£å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162479, 124716, 'no_lang_code', 'name', 'Suncall Corporation (Japan)'),
(162480, 124716, 'ja', 'name', 'ć‚µćƒ³ć‚³ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(162481, 124717, 'no_lang_code', 'name', 'Adtex Inc. (Japan)'),
(162482, 124717, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒ†ćƒƒć‚Æć‚¹'),
(162483, 124718, 'no_lang_code', 'name', 'TOA-TONE Boring Co., Ltd. (Japan)'),
(162484, 124718, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±äŗœåˆ©ę ¹ćƒœćƒ¼ćƒŖćƒ³ć‚°'),
(162485, 124719, 'no_lang_code', 'name', 'Gigaphoton Inc (Japan)'),
(162486, 124719, 'ja', 'name', 'ć‚®ć‚¬ćƒ•ć‚©ćƒˆćƒ³ę Ŗå¼ä¼šē¤¾'),
(162487, 124720, 'no_lang_code', 'name', 'Tatsuta Electric WIRE Cable Co., Ltd. (Japan)'),
(162488, 124720, 'ja', 'name', 'ć‚æćƒ„ć‚æé›»ē·šę Ŗå¼ä¼šē¤¾'),
(162489, 124721, 'no_lang_code', 'name', 'Newjec Inc. (Japan)'),
(162490, 124721, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ„ćƒ¼ć‚øć‚§ćƒƒć‚Æ'),
(162491, 124722, 'no_lang_code', 'name', 'Ebata Corporation (Japan)'),
(162492, 124722, 'ja', 'name', 'ć‚Øćƒć‚æę Ŗå¼ä¼šē¤¾'),
(162493, 124723, 'no_lang_code', 'name', 'Torii Pharmaceutical Co., Ltd. (Japan)'),
(162494, 124723, 'ja', 'name', 'é³„å±…č–¬å“ę Ŗå¼ä¼šē¤¾'),
(162495, 124724, 'es', 'name', 'Universidad PolitƩcnica de Altamira'),
(162496, 124725, 'eu', 'name', 'Santiago de Compostelako Unibertsitatea'),
(162497, 124725, 'es', 'name', 'Universidade de Santiago de Compostela'),
(162498, 124725, 'ca', 'name', 'Universitat de Santiago de Compostela'),
(162499, 124725, 'en', 'name', 'University of Santiago de Compostela'),
(162500, 124726, 'no_lang_code', 'name', 'Cueβs Co., Ltd. (Japan)'),
(162501, 124726, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒ„ćƒ¼ćƒ–ć‚¹'),
(162502, 124727, 'no_lang_code', 'name', 'Isetan Mitsukoshi Holdings Ltd. (Japan)'),
(162503, 124727, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äø‰č¶Šä¼Šå‹¢äø¹ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(162504, 124728, 'no_lang_code', 'name', 'NAU DATA Institute Inc. (Japan)'),
(162505, 124728, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćŖć†ćƒ‡ćƒ¼ć‚æē ”ē©¶ę‰€'),
(162506, 124729, 'no_lang_code', 'name', 'Rightechs Co., Ltd. (Japan)'),
(162507, 124729, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒ©ć‚¤ćƒ†ćƒƒć‚Æć‚¹'),
(162508, 124730, 'vi', 'name', 'Bį»™ GiĆ”o DỄc vĆ  ĐƠo tįŗ”o'),
(162509, 124730, 'en', 'name', 'Ministry of Education and Training'),
(162510, 124731, 'no_lang_code', 'name', 'Wacoal Corp. (Japan)'),
(162511, 124731, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒÆć‚³ćƒ¼ćƒ«'),
(162512, 124732, 'no_lang_code', 'name', 'Daikure Co., Ltd. (Japan)'),
(162513, 124732, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ć‚Æćƒ¬'),
(162514, 124733, 'no_lang_code', 'name', 'Nittoc Construction Co., Ltd. (Japan)'),
(162515, 124733, 'ja', 'name', 'ę—„ē‰¹å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(162516, 124734, 'no_lang_code', 'name', 'Shinmei Electric Co., Ltd. (Japan)'),
(162517, 124734, 'ja', 'name', 'ē„žę˜Žé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(162518, 124735, 'no_lang_code', 'name', 'Kyowakogyosyo Co., Ltd. (Japan)'),
(162519, 124735, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…±å’Œå·„ę„­ę‰€'),
(162520, 124736, 'no_lang_code', 'name', 'Robotmation Co., Ltd. (Japan)'),
(162521, 124736, 'ja', 'name', 'ćƒ­ćƒœćƒƒćƒˆćƒ”ćƒ¼ć‚·ćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(162522, 124737, 'no_lang_code', 'name', 'Advantage Risk Management Co., Ltd. (Japan)'),
(162523, 124737, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒćƒ³ćƒ†ćƒƒć‚øćƒŖć‚¹ć‚Æćƒžćƒć‚øćƒ”ćƒ³ćƒˆ'),
(162524, 124738, 'en', 'name', 'Ampere Laboratory'),
(162525, 124738, 'fr', 'name', 'Laboratoire AmpĆØre'),
(162526, 124739, 'no_lang_code', 'name', 'Tigers Polymer Corporation (Japan)'),
(162527, 124739, 'ja', 'name', 'ć‚æć‚¤ć‚¬ćƒ¼ć‚¹ćƒćƒŖćƒžćƒ¼ę Ŗå¼ä¼šē¤¾'),
(162528, 124740, 'no_lang_code', 'name', 'Alpha Corporation (Japan)'),
(162529, 124740, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ćƒ•ć‚”'),
(162530, 124741, 'no_lang_code', 'name', 'Kuriensu Industry Co., Ltd. (Japan)'),
(162531, 124741, 'ja', 'name', 'ć‚ÆćƒŖć‚Øćƒ³ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162532, 124742, 'no_lang_code', 'name', 'Arisawa Manufacturing Co., Ltd. (Japan)'),
(162533, 124742, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęœ‰ę²¢č£½ä½œę‰€'),
(162534, 124743, 'en', 'name', 'Sibelius Academy'),
(162535, 124743, 'sv', 'name', 'Sibelius-Akademin vid Konstuniversitetet'),
(162536, 124743, 'fi', 'name', 'Taideyliopiston Sibelius-Akatemia'),
(162537, 124744, 'no_lang_code', 'name', 'Asahico (Japan)'),
(162538, 124744, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ć‚µćƒ’ć‚³'),
(162539, 124745, 'en', 'name', 'Vasyl Stefanyk National Scientific Library of Ukraine in Lviv'),
(162540, 124745, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° наукова бібліотека України імені Š’.Дтефаника'),
(162541, 124746, 'en', 'name', 'Intelligence Advanced Research Projects Activity'),
(162542, 124747, 'no_lang_code', 'name', 'S-Vance Ltd. (Japan)'),
(162543, 124747, 'ja', 'name', 'ć‚Øć‚¹ćƒćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(162544, 124748, 'en', 'name', 'Haneda Clinic'),
(162545, 124749, 'no_lang_code', 'name', 'Magara Construction Co., Ltd. (Japan)'),
(162546, 124749, 'ja', 'name', 'ēœŸęŸ„å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(162547, 124750, 'no_lang_code', 'name', 'Astro Design, Inc. (Japan)'),
(162548, 124750, 'ja', 'name', 'ć‚¢ć‚¹ćƒˆćƒ­ćƒ‡ć‚¶ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(162549, 124751, 'no_lang_code', 'name', 'Cygnus Corp Inc. (Japan)'),
(162550, 124751, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ć‚°ćƒŠć‚¹ć‚Øćƒ³ć‚æćƒ¼ćƒ—ćƒ©ć‚¤ć‚ŗ'),
(162551, 124752, 'en', 'name', 'Oman College of Health Sciences'),
(162552, 124753, 'no_lang_code', 'name', 'Beacle Inc. (Japan)'),
(162553, 124753, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ“ćƒ¼ć‚Æćƒ«'),
(162554, 124754, 'en', 'name', 'FHNW University of Applied Sciences and Arts Northwestern Switzerland'),
(162555, 124754, 'de', 'name', 'Fachhochschule Nordwestschweiz FHNW'),
(162556, 124755, 'no_lang_code', 'name', 'Fuji-Sangyo Co., Ltd. (Japan)'),
(162557, 124755, 'ja', 'name', 'åÆŒå£«ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(162558, 124756, 'en', 'name', 'International Niemann-Pick Disease Registry'),
(162559, 124757, 'en', 'name', 'Scarborough Centre for Healthy Communities'),
(162560, 124758, 'no_lang_code', 'name', 'DAI-DAN Co., Ltd. (Japan)'),
(162561, 124758, 'ja', 'name', 'ćƒ€ć‚¤ćƒ€ćƒ³ę Ŗå¼ä¼šē¤¾'),
(162562, 124759, 'no_lang_code', 'name', 'JSP Corporation (Japan)'),
(162563, 124759, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾JSP'),
(162564, 124760, 'no_lang_code', 'name', 'Brainvision Inc. (Japan)'),
(162565, 124760, 'ja', 'name', 'ćƒ–ćƒ¬ć‚¤ćƒ³ćƒ“ć‚øćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(162566, 124761, 'no_lang_code', 'name', 'Magneo Giken Co., Ltd. (Japan)'),
(162567, 124761, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ćƒžć‚°ćƒć‚ŖęŠ€ē ”'),
(162568, 124762, 'no_lang_code', 'name', 'C.I.KASEI Company, Ltd. (Japan)'),
(162569, 124762, 'ja', 'name', 'ć‚·ćƒ¼ć‚¢ć‚¤åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(162570, 124763, 'no_lang_code', 'name', 'Okuno Chemical Industries Co., Ltd. (Japan)'),
(162571, 124763, 'ja', 'name', 'å„„é‡Žč£½č–¬å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162572, 124764, 'no_lang_code', 'name', 'Totetsu Kogyo Co., Ltd. (Japan)'),
(162573, 124764, 'ja', 'name', 'ę±é‰„å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162574, 124765, 'no_lang_code', 'name', 'G-TEKT Corporation (Japan)'),
(162575, 124765, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ćƒ†ć‚Æćƒˆ'),
(162576, 124766, 'en', 'name', 'CEMAG Care (France)'),
(162577, 124767, 'no_lang_code', 'name', 'Kaneso Co., Ltd. (Japan)'),
(162578, 124767, 'ja', 'name', 'ć‚«ćƒć‚½ć‚¦ę Ŗå¼ä¼šē¤¾'),
(162579, 124768, 'no_lang_code', 'name', 'KGS Corporation (Japan)'),
(162580, 124768, 'ja', 'name', 'ć‚±ćƒ¼ć‚øćƒ¼ć‚Øć‚¹ę Ŗå¼ä¼šē¤¾'),
(162581, 124769, 'no_lang_code', 'name', 'Tateho Chemical Industries Co., Ltd. (Japan)'),
(162582, 124769, 'ja', 'name', 'ć‚æćƒ†ćƒ›åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162583, 124770, 'no_lang_code', 'name', 'Suruga Seiki Co., Ltd. (Japan)'),
(162584, 124770, 'ja', 'name', 'é§æę²³ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(162585, 124771, 'de', 'name', 'PƤdagogische Hochschule FHNW'),
(162586, 124772, 'no_lang_code', 'name', 'Leave A NEST Co., Ltd. (Japan)'),
(162587, 124772, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŖćƒćƒć‚¹'),
(162588, 124773, 'no_lang_code', 'name', 'Piolax, Inc. (Japan)'),
(162589, 124773, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‘ć‚¤ć‚Ŗćƒ©ćƒƒć‚Æć‚¹'),
(162590, 124774, 'fr', 'name', 'Laboratoire d''Informatique et d''Automatique pour les SystĆØmes'),
(162591, 124774, 'en', 'name', 'Laboratory of Computer Science and Automatic Control for Systems'),
(162592, 124775, 'no_lang_code', 'name', 'Sanoh Industrial Co., Ltd. (Japan)'),
(162593, 124775, 'ja', 'name', 'äø‰ę«»å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162594, 124776, 'no_lang_code', 'name', 'Kubotek Corporation (Japan)'),
(162595, 124776, 'ja', 'name', 'ć‚Æćƒœćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(162596, 124777, 'en', 'name', 'American Cancer Society'),
(162597, 124778, 'no_lang_code', 'name', 'CCI Corporation (Japan)'),
(162598, 124778, 'ja', 'name', 'ć‚·ćƒ¼ć‚·ćƒ¼ć‚¢ć‚¤ę Ŗå¼ä¼šē¤¾'),
(162599, 124779, 'no_lang_code', 'name', 'Fukutome MEAT Packers, Ltd. (Japan)'),
(162600, 124779, 'ja', 'name', 'ē¦ē•™ćƒćƒ ę Ŗå¼ä¼šē¤¾'),
(162601, 124780, 'no_lang_code', 'name', 'Sunagro Co., Ltd. (Japan)'),
(162602, 124780, 'ja', 'name', 'ć‚µćƒ³ć‚¢ć‚°ćƒ­ę Ŗå¼ä¼šē¤¾'),
(162603, 124781, 'pt', 'name', 'Academia Militar'),
(162604, 124781, 'en', 'name', 'Portuguese Military Academy'),
(162605, 124782, 'no_lang_code', 'name', 'K.I Chemical Industry Co., Ltd. (Japan)'),
(162606, 124782, 'ja', 'name', 'ć‚±ć‚¤ćƒ»ć‚¢ć‚¤åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(162607, 124783, 'de', 'name', 'Ludwig-Maximilians-Universität München'),
(162608, 124784, 'no_lang_code', 'name', 'YUKI Gosei Kogyo Co., Ltd. (Japan)'),
(162609, 124784, 'ja', 'name', 'ęœ‰ę©Ÿåˆęˆč–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162610, 124785, 'en', 'name', 'Shri Ratanlal Kanwarlal Patni Girls'' College'),
(162611, 124786, 'no_lang_code', 'name', 'Serendip Institute Inc. (Japan)'),
(162612, 124786, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ćƒ¬ćƒ³ćƒ‡ć‚£ćƒƒćƒ—ē ”ē©¶ę‰€'),
(162613, 124787, 'no_lang_code', 'name', 'Kojima IRON Works Co., Ltd. (Japan)'),
(162614, 124787, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å°å³¶éµå·„ę‰€'),
(162615, 124788, 'en', 'name', 'cTRL Therapeutics (United States)'),
(162616, 124789, 'no_lang_code', 'name', 'Maruyama MFG. Co., Inc. (Japan)'),
(162617, 124789, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äøøå±±č£½ä½œę‰€'),
(162618, 124790, 'no_lang_code', 'name', 'Sekiaoi Techno Co., Ltd. (Japan)'),
(162619, 124790, 'ja', 'name', 'ć‚»ć‚­ć‚¢ć‚Ŗć‚¤ćƒ†ć‚ÆćƒŽę Ŗå¼ä¼šē¤¾'),
(162620, 124791, 'no_lang_code', 'name', 'KUME Sekkei (Japan)'),
(162621, 124791, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ä¹…ē±³čØ­čØˆ'),
(162622, 124792, 'en', 'name', 'ARON Research Foundation ETS'),
(162623, 124793, 'no_lang_code', 'name', 'EXA Corporation (Japan)'),
(162624, 124793, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚Æć‚µ'),
(162625, 124794, 'en', 'name', 'Arts, Commerce and Science College, Palus'),
(162626, 124794, 'mr', 'name', 'ą¤†ą¤°ą„ą¤Ÿą„ą¤ø, ą¤•ą„‰ą¤®ą¤°ą„ą¤ø & ą¤øą¤¾ą¤Æą¤Øą„ą¤ø ą¤•ą„‰ą¤²ą„‡ą¤œ, ą¤Ŗą¤²ą„ą¤ø'),
(162627, 124795, 'no_lang_code', 'name', 'Seiki Tokyu Kogyo Co., Ltd. (Japan)'),
(162628, 124795, 'ja', 'name', 'äø–ē“€ę±ę€„å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162629, 124796, 'no_lang_code', 'name', 'Koiwai FARM, Ltd. (Japan)'),
(162630, 124796, 'ja', 'name', 'å°å²©äŗ•č¾²ē‰§ę Ŗå¼ä¼šē¤¾'),
(162631, 124797, 'no_lang_code', 'name', 'ABLE Corporation (Japan)'),
(162632, 124797, 'ja', 'name', 'ć‚Øć‚¤ćƒ–ćƒ«ę Ŗå¼ä¼šē¤¾'),
(162633, 124798, 'no_lang_code', 'name', 'Kinrei Corporation (Japan)'),
(162634, 124798, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚­ćƒ³ćƒ¬ć‚¤'),
(162635, 124799, 'no_lang_code', 'name', 'IG Kogyo Co., Ltd. (Japan)'),
(162636, 124799, 'ja', 'name', 'ć‚¢ć‚¤ć‚øćƒ¼å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162637, 124800, 'en', 'name', 'Rhodium Scientific (United States)'),
(162638, 124801, 'no_lang_code', 'name', 'G&G Science Co., Ltd. (Japan)'),
(162639, 124801, 'ja', 'name', 'G&Gć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(162640, 124802, 'no_lang_code', 'name', 'Netprice, Ltd. (Japan)'),
(162641, 124802, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒƒćƒˆćƒ—ćƒ©ć‚¤ć‚¹'),
(162642, 124803, 'no_lang_code', 'name', 'Uetax Corporation (Japan)'),
(162643, 124803, 'ja', 'name', 'ć‚¦ć‚Øć‚æćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(162644, 124804, 'no_lang_code', 'name', 'Youworks Corporation (Japan)'),
(162645, 124804, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ¼ćƒÆćƒ¼ć‚Æć‚¹'),
(162646, 124805, 'en', 'name', 'NIHR Trauma Management MedTech Co-operative'),
(162647, 124806, 'no_lang_code', 'name', 'Oshika Co., Ltd. (Japan)'),
(162648, 124806, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ć‚·ć‚«'),
(162649, 124807, 'fr', 'name', 'Institut National Polytechnique de Lorraine'),
(162650, 124808, 'no_lang_code', 'name', 'Chizaki DORO Co., Ltd. (Japan)'),
(162651, 124808, 'ja', 'name', 'åœ°å“Žé“č·Æę Ŗå¼ä¼šē¤¾'),
(162652, 124809, 'en', 'name', 'Inter-University Laboratory for Research in Didactics of Lansad'),
(162653, 124809, 'fr', 'name', 'LAboratoire Inter-universitaire de Recherche en DIdactique Lansad'),
(162654, 124810, 'no_lang_code', 'name', 'Kyushin Pharmaceutical Co., Ltd. (Japan)'),
(162655, 124810, 'ja', 'name', 'ę•‘åæƒč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(162656, 124811, 'no_lang_code', 'name', 'Silex Technology, Inc. (Japan)'),
(162657, 124811, 'ja', 'name', 'ć‚µć‚¤ćƒ¬ćƒƒć‚Æć‚¹ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(162658, 124812, 'no_lang_code', 'name', 'TOKU Pneumatic TOOL MFG. Co., Ltd. (Japan)'),
(162659, 124812, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±ę“‹ē©ŗę©Ÿč£½ä½œę‰€'),
(162660, 124813, 'no_lang_code', 'name', 'Shiken (Japan)'),
(162661, 124813, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ć‚±ćƒ³'),
(162662, 124814, 'no_lang_code', 'name', 'X-RAY Precision, Inc. (Japan)'),
(162663, 124814, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒƒć‚Æć‚¹ćƒ¬ć‚¤ćƒ—ćƒ¬ć‚·ć‚øćƒ§ćƒ³'),
(162664, 124815, 'no_lang_code', 'name', 'IMS Techno (Japan)'),
(162665, 124815, 'ja', 'name', 'IMSćƒ†ć‚ÆćƒŽę Ŗå¼ä¼šē¤¾'),
(162666, 124816, 'no_lang_code', 'name', 'SHIN-KOBE Electric Machinery Co., Ltd. (Japan)'),
(162667, 124816, 'ja', 'name', 'ę–°ē„žęˆøé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(162668, 124817, 'no_lang_code', 'name', 'Yamamori Inc. (Japan)'),
(162669, 124817, 'ja', 'name', 'ćƒ¤ćƒžćƒ¢ćƒŖę Ŗå¼ä¼šē¤¾'),
(162670, 124818, 'no_lang_code', 'name', 'Aisawa Construction Co., Ltd. (Japan)'),
(162671, 124818, 'ja', 'name', 'ć‚¢ć‚¤ć‚µćƒÆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162672, 124819, 'en', 'name', 'Metropolitan Water District of Southern California'),
(162673, 124820, 'no_lang_code', 'name', 'Dainichi Co., Ltd. (Japan)'),
(162674, 124820, 'ja', 'name', 'ćƒ€ć‚¤ćƒ‹ćƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162675, 124821, 'en', 'name', 'NIHR Nottingham Digestive Diseases Biomedical Research Unit'),
(162676, 124822, 'no_lang_code', 'name', 'Taimei Chemicals Co., Ltd. (Japan)'),
(162677, 124822, 'ja', 'name', 'å¤§ę˜ŽåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162678, 124823, 'fr', 'name', 'Arts et MƩtiers'),
(162679, 124824, 'en', 'name', 'NIHR WoundTec Healthcare Technology Co-operative'),
(162680, 124825, 'en', 'name', 'Australian Drosophila Transgenic Facility'),
(162681, 124826, 'no_lang_code', 'name', 'Kalinga University'),
(162682, 124826, 'hi', 'name', 'कलिंगा ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(162683, 124826, 'as', 'name', 'কলিংগ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(162684, 124827, 'no_lang_code', 'name', 'Primedelta (Japan)'),
(162685, 124827, 'ja', 'name', 'ćƒ—ćƒ©ć‚¤ćƒ ćƒ»ćƒ‡ćƒ«ć‚æę Ŗå¼ä¼šē¤¾'),
(162686, 124828, 'no_lang_code', 'name', 'Shinshu Technology Licensing Organization (Japan)'),
(162687, 124828, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äæ”å·žTLO'),
(162688, 124829, 'no_lang_code', 'name', 'SAIL-Technologies.ltd. (Japan)'),
(162689, 124829, 'ja', 'name', 'SAILćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(162690, 124830, 'no_lang_code', 'name', 'JMACS Japan Co., Ltd. (Japan)'),
(162691, 124830, 'ja', 'name', 'JMACSę Ŗå¼ä¼šē¤¾'),
(162692, 124831, 'no_lang_code', 'name', 'Sharp Corporation (Japan)'),
(162693, 124831, 'ja', 'name', 'ć‚·ćƒ£ćƒ¼ćƒ—ę Ŗå¼ä¼šē¤¾'),
(162694, 124832, 'no_lang_code', 'name', 'Makino Milling Machine Co., Ltd. (Japan)'),
(162695, 124832, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē‰§é‡Žćƒ•ćƒ©ć‚¤ć‚¹č£½ä½œę‰€'),
(162696, 124833, 'no_lang_code', 'name', 'Fujicopian Co., Ltd. (Japan)'),
(162697, 124833, 'ja', 'name', 'ćƒ•ć‚øć‚³ćƒ”ć‚¢ćƒ³ę Ŗå¼ä¼šē¤¾'),
(162698, 124834, 'no_lang_code', 'name', 'Kusumoto Chemicals, Ltd. (Japan)'),
(162699, 124834, 'ja', 'name', 'ę„ ęœ¬åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(162700, 124835, 'no_lang_code', 'name', 'Hasshu Co., Ltd. (Japan)'),
(162701, 124835, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…«å·ž'),
(162702, 124836, 'en', 'name', 'Australian Research Council'),
(162703, 124837, 'no_lang_code', 'name', 'N.A.Gene Corporation (Japan)'),
(162704, 124837, 'ja', 'name', 'N.A.Geneę Ŗå¼ä¼šē¤¾'),
(162705, 124838, 'no_lang_code', 'name', 'Fukusen Co., Ltd. (Japan)'),
(162706, 124838, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚Æć‚»ćƒ³'),
(162707, 124839, 'no_lang_code', 'name', 'Ritecs, Inc. (Japan)'),
(162708, 124839, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ©ć‚¤ćƒ†ćƒƒć‚Æć‚¹'),
(162709, 124840, 'pt', 'name', 'Coordenação de Aperfeicoamento de Pessoal de Nível Superior'),
(162710, 124841, 'no', 'name', 'Det Norske Videnskaps-Akademi'),
(162711, 124841, 'en', 'name', 'Norwegian Academy of Science and Letters'),
(162712, 124842, 'en', 'name', 'Japan Cable and Telecommunications Association'),
(162713, 124842, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚±ćƒ¼ćƒ–ćƒ«ćƒ†ćƒ¬ćƒ“é€£ē›Ÿ'),
(162714, 124843, 'no_lang_code', 'name', 'Shabondama SOAP Corporation (Japan)'),
(162715, 124843, 'ja', 'name', 'ć‚·ćƒ£ćƒœćƒ³ēŽ‰ēŸ³ć‘ć‚“ę Ŗå¼ä¼šē¤¾'),
(162716, 124844, 'no_lang_code', 'name', 'FUJI-Silysia Chemical Ltd. (Japan)'),
(162717, 124844, 'ja', 'name', 'åÆŒå£«ć‚·ćƒŖć‚·ć‚¢åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(162718, 124845, 'no_lang_code', 'name', 'COCO Research Inc. (Japan)'),
(162719, 124845, 'ja', 'name', 'ć‚³ć‚³ćƒŖć‚µćƒ¼ćƒę Ŗå¼ä¼šē¤¾'),
(162720, 124846, 'en', 'name', 'Queen Mary University of London'),
(162721, 124846, 'cy', 'name', 'Queen Mary, Prifysgol Llundain'),
(162722, 124847, 'no_lang_code', 'name', 'Lasertec Corporation (Japan)'),
(162723, 124847, 'ja', 'name', 'ćƒ¬ćƒ¼ć‚¶ćƒ¼ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(162724, 124848, 'en', 'name', 'NIHR Maudsley Dementia Biomedical Research Unit'),
(162725, 124849, 'no_lang_code', 'name', 'Takakita Co., Ltd. (Japan)'),
(162726, 124849, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚«ć‚­ć‚æ'),
(162727, 124850, 'no_lang_code', 'name', 'H.U. Group Holdings, Inc. (Japan)'),
(162728, 124850, 'ja', 'name', 'H.U.ć‚°ćƒ«ćƒ¼ćƒ—ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(162729, 124851, 'en', 'name', 'France Life Imaging'),
(162730, 124852, 'no_lang_code', 'name', 'Cabot Japan K.K. (Japan)'),
(162731, 124852, 'ja', 'name', 'ć‚­ćƒ£ćƒœćƒƒćƒˆć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(162732, 124853, 'no_lang_code', 'name', 'NJS Co., Ltd. (Japan)'),
(162733, 124853, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾NJS'),
(162734, 124854, 'no_lang_code', 'name', 'SODA Aromatic Co., Ltd. (Japan)'),
(162735, 124854, 'ja', 'name', 'ę›½ē”°é¦™ę–™ę Ŗå¼ä¼šē¤¾'),
(162736, 124855, 'es', 'name', 'Universidad de Wisconsin-Madison'),
(162737, 124855, 'en', 'name', 'University of Wisconsin–Madison'),
(162738, 124855, 'fr', 'name', 'UniversitƩ du Wisconsin Ơ Madison'),
(162739, 124856, 'no_lang_code', 'name', 'Digital Stream Corporation (Japan)'),
(162740, 124856, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‡ć‚øć‚æćƒ«ć‚¹ćƒˆćƒŖćƒ¼ćƒ '),
(162741, 124857, 'no_lang_code', 'name', 'SYNZTEC Co., Ltd. (Japan)'),
(162742, 124857, 'ja', 'name', 'ć‚·ćƒ³ć‚øćƒ¼ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(162743, 124858, 'gl', 'name', 'Xunta de Galicia'),
(162744, 124859, 'no_lang_code', 'name', 'OCC Corporation (Japan)'),
(162745, 124859, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾OCC'),
(162746, 124860, 'en', 'name', 'Brain Research Africa Initiative'),
(162747, 124861, 'no_lang_code', 'name', 'Carabiner SYSTEMS, Inc. (Japan)'),
(162748, 124861, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ć‚«ćƒ©ćƒ“ćƒŠć‚·ć‚¹ćƒ†ćƒ ć‚ŗ'),
(162749, 124862, 'no_lang_code', 'name', 'U-SHIN Ltd. (Japan)'),
(162750, 124862, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ¼ć‚·ćƒ³'),
(162751, 124863, 'no_lang_code', 'name', 'Sawai Pharmaceutical Co., Ltd. (Japan)'),
(162752, 124863, 'ja', 'name', 'ę²¢äŗ•č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(162753, 124864, 'no_lang_code', 'name', 'Inplanta Innovations Inc. (Japan)'),
(162754, 124864, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ćƒ³ćƒ—ćƒ©ćƒ³ć‚æć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗ'),
(162755, 124865, 'no_lang_code', 'name', 'Kuboko Paint Co., Ltd. (Japan)'),
(162756, 124865, 'ja', 'name', 'ä¹…äæå­ćƒšć‚¤ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(162757, 124866, 'no_lang_code', 'name', 'Youth Engineering Co., Ltd. (Japan)'),
(162758, 124866, 'ja', 'name', 'ćƒ¦ćƒ¼ć‚¹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(162759, 124867, 'no_lang_code', 'name', 'NEOS Co., Ltd. (Japan)'),
(162760, 124867, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚Ŗć‚¹'),
(162761, 124868, 'fr', 'name', 'John Libbey Eurotext (France)'),
(162762, 124869, 'no_lang_code', 'name', 'KANZACC Co., Ltd. (Japan)'),
(162763, 124869, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾KANZACC'),
(162764, 124870, 'no_lang_code', 'name', 'Pharmaco-Cell Company Ltd. (Japan)'),
(162765, 124870, 'ja', 'name', 'ćƒ•ć‚”ćƒ¼ćƒžć‚³ć‚»ćƒ«ę Ŗå¼ä¼šē¤¾'),
(162766, 124871, 'no_lang_code', 'name', 'Kawai Musical Instruments MFG. Co., Ltd. (Japan)'),
(162767, 124871, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę²³åˆę„½å™Øč£½ä½œę‰€'),
(162768, 124872, 'no_lang_code', 'name', 'Kanac Corporation (Japan)'),
(162769, 124872, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ćƒŠćƒƒć‚Æ'),
(162770, 124873, 'it', 'name', 'Centro San Giovanni di Dio Fatebenefratelli'),
(162771, 124874, 'en', 'name', 'NIHR Leicester-Loughborough Diet, Lifestyle and Physical Activity Biomedical Research Unit'),
(162772, 124875, 'no_lang_code', 'name', 'Sasebo Heavy Industries, Co., Ltd. (Japan)'),
(162773, 124875, 'ja', 'name', 'ä½äø–äæé‡å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162774, 124876, 'no_lang_code', 'name', 'Machida Corporation (Japan)'),
(162775, 124876, 'ja', 'name', 'ćƒžćƒćƒ€ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(162776, 124877, 'no_lang_code', 'name', 'Genomidea Inc. (Japan)'),
(162777, 124877, 'ja', 'name', 'ć‚øć‚§ćƒŽćƒŸćƒ‡ć‚£ć‚¢ę Ŗå¼ä¼šē¤¾'),
(162778, 124878, 'no_lang_code', 'name', 'Asubio Pharma Co., Ltd. (Japan)'),
(162779, 124878, 'ja', 'name', 'ć‚¢ć‚¹ćƒ“ć‚Ŗćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(162780, 124879, 'no_lang_code', 'name', 'MEC Company Ltd. (Japan)'),
(162781, 124879, 'ja', 'name', 'ćƒ”ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(162782, 124880, 'cy', 'name', 'Coleg y Brenin, Llundain'),
(162783, 124880, 'en', 'name', 'King''s College London'),
(162784, 124881, 'no_lang_code', 'name', 'Hagihara Industries Inc. (Japan)'),
(162785, 124881, 'ja', 'name', 'č©åŽŸå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(162786, 124882, 'en', 'name', 'A. Krymskyi Institute of Oriental Studies'),
(162787, 124882, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ схоГознавства ім. А. Š®. ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠ¾Š³Š¾ ŠŠŠ України');

-- --------------------------------------------------------

--
-- Table structure for table `sales_rights`
--

CREATE TABLE `sales_rights` (
  `sales_rights_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `publication_format_id` bigint(20) NOT NULL,
  `type` varchar(40) NOT NULL,
  `row_setting` smallint(6) NOT NULL DEFAULT '0',
  `countries_included` text,
  `countries_excluded` text,
  `regions_included` text,
  `regions_excluded` text,
  PRIMARY KEY (`sales_rights_id`),
  KEY `sales_rights_publication_format_id` (`publication_format_id`),
  KEY `format_sales_rights_pkey` (`sales_rights_id`,`publication_format_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ONIX sales rights for publication formats.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `series`
--

CREATE TABLE `series` (
  `series_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `press_id` bigint(20) NOT NULL,
  `review_form_id` bigint(20) DEFAULT NULL,
  `seq` double DEFAULT '0',
  `featured` smallint(6) NOT NULL DEFAULT '0',
  `editor_restricted` smallint(6) NOT NULL DEFAULT '0',
  `path` varchar(255) NOT NULL,
  `image` text,
  `is_inactive` smallint(6) NOT NULL DEFAULT '0',
  PRIMARY KEY (`series_id`),
  UNIQUE KEY `series_path` (`press_id`,`path`),
  KEY `series_press_id` (`press_id`),
  KEY `series_review_form_id` (`review_form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of press series, into which submissions can be organized.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `series_categories`
--

CREATE TABLE `series_categories` (
  `series_id` bigint(20) NOT NULL,
  `category_id` bigint(20) NOT NULL,
  UNIQUE KEY `series_categories_id` (`series_id`,`category_id`),
  KEY `series_categories_series_id` (`series_id`),
  KEY `series_categories_category_id` (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of relationships between series and category information.';

-- --------------------------------------------------------

--
-- Table structure for table `series_settings`
--

CREATE TABLE `series_settings` (
  `series_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `series_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text,
  PRIMARY KEY (`series_setting_id`),
  UNIQUE KEY `series_settings_unique` (`series_id`,`locale`,`setting_name`),
  KEY `series_settings_series_id` (`series_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about series, including localized properties such as series titles.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `sessions`
--

CREATE TABLE `sessions` (
  `id` varchar(255) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text,
  `last_activity` int(11) NOT NULL,
  `payload` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `sessions_user_id` (`user_id`),
  KEY `sessions_last_activity_index` (`last_activity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Session data for logged-in users.';

-- --------------------------------------------------------

--
-- Table structure for table `site`
--

CREATE TABLE `site` (
  `site_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `redirect_context_id` bigint(20) DEFAULT NULL COMMENT 'If not null, redirect to the specified journal/conference/... site.',
  `primary_locale` varchar(28) NOT NULL COMMENT 'Primary locale for the site.',
  `min_password_length` smallint(6) NOT NULL DEFAULT '6',
  `installed_locales` varchar(1024) NOT NULL DEFAULT 'en' COMMENT 'Locales for which support has been installed.',
  `supported_locales` varchar(1024) DEFAULT NULL COMMENT 'Locales supported by the site (for hosted journals/conferences/...).',
  `original_style_file_name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`site_id`),
  KEY `site_context_id` (`redirect_context_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='A singleton table describing basic information about the site.' AUTO_INCREMENT=2 ;

--
-- Dumping data for table `site`
--

INSERT INTO `site` VALUES
(1, NULL, 'en', 6, '["en"]', '["en"]', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `site_settings`
--

CREATE TABLE `site_settings` (
  `site_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `setting_name` varchar(255) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_value` mediumtext,
  PRIMARY KEY (`site_setting_id`),
  UNIQUE KEY `site_settings_unique` (`setting_name`,`locale`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='More data about the site, including localized properties such as its name.' AUTO_INCREMENT=14 ;

--
-- Dumping data for table `site_settings`
--

INSERT INTO `site_settings` VALUES
(1, 'contactEmail', 'en', '[[admin_email]]'),
(2, 'contactName', 'en', 'Open Monograph Press'),
(3, 'compressStatsLogs', '', '0'),
(4, 'enableGeoUsageStats', '', 'disabled'),
(5, 'enableInstitutionUsageStats', '', '0'),
(6, 'keepDailyUsageStats', '', '0'),
(7, 'isSiteSushiPlatform', '', '0'),
(8, 'isSushiApiPublic', '', '1'),
(9, 'disableSharedReviewerStatistics', '', '0'),
(10, 'orcidClientId', '', ''),
(11, 'orcidClientSecret', '', ''),
(12, 'orcidEnabled', '', '0'),
(13, 'themePluginPath', '', 'default');

-- --------------------------------------------------------

--
-- Table structure for table `stage_assignments`
--

CREATE TABLE `stage_assignments` (
  `stage_assignment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `user_group_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `date_assigned` datetime NOT NULL,
  `recommend_only` smallint(6) NOT NULL DEFAULT '0',
  `can_change_metadata` smallint(6) NOT NULL DEFAULT '0',
  PRIMARY KEY (`stage_assignment_id`),
  UNIQUE KEY `stage_assignment` (`submission_id`,`user_group_id`,`user_id`),
  KEY `stage_assignments_user_group_id` (`user_group_id`),
  KEY `stage_assignments_user_id` (`user_id`),
  KEY `stage_assignments_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Who can access a submission while it is in the editorial workflow. Includes all editorial and author assignments. For reviewers, see review_assignments.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `static_pages`
--

CREATE TABLE `static_pages` (
  `static_page_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `path` varchar(255) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  PRIMARY KEY (`static_page_id`),
  KEY `static_pages_context_id` (`context_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `static_page_settings`
--

CREATE TABLE `static_page_settings` (
  `static_page_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `static_page_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` longtext,
  `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)',
  PRIMARY KEY (`static_page_setting_id`),
  UNIQUE KEY `static_page_settings_unique` (`static_page_id`,`locale`,`setting_name`),
  KEY `static_page_settings_static_page_id` (`static_page_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `subeditor_submission_group`
--

CREATE TABLE `subeditor_submission_group` (
  `subeditor_submission_group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `user_group_id` bigint(20) NOT NULL,
  PRIMARY KEY (`subeditor_submission_group_id`),
  UNIQUE KEY `section_editors_unique` (`context_id`,`assoc_id`,`assoc_type`,`user_id`,`user_group_id`),
  KEY `subeditor_submission_group_context_id` (`context_id`),
  KEY `subeditor_submission_group_user_id` (`user_id`),
  KEY `subeditor_submission_group_user_group_id` (`user_group_id`),
  KEY `subeditor_submission_group_assoc_id` (`assoc_id`,`assoc_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Subeditor assignments to e.g. sections and categories' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `submissions`
--

CREATE TABLE `submissions` (
  `submission_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `current_publication_id` bigint(20) DEFAULT NULL,
  `date_last_activity` datetime DEFAULT NULL,
  `date_submitted` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `stage_id` bigint(20) NOT NULL DEFAULT '1',
  `locale` varchar(28) DEFAULT NULL,
  `status` smallint(6) NOT NULL DEFAULT '1',
  `submission_progress` varchar(50) NOT NULL DEFAULT 'start',
  `work_type` smallint(6) DEFAULT '0',
  PRIMARY KEY (`submission_id`),
  KEY `submissions_context_id` (`context_id`),
  KEY `submissions_publication_id` (`current_publication_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='All submissions submitted to the context, including incomplete, declined and unpublished submissions.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `submission_chapters`
--

CREATE TABLE `submission_chapters` (
  `chapter_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `primary_contact_id` bigint(20) DEFAULT NULL,
  `publication_id` bigint(20) NOT NULL,
  `seq` double NOT NULL DEFAULT '0',
  `source_chapter_id` bigint(20) DEFAULT NULL,
  `doi_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`chapter_id`),
  KEY `chapters_chapter_id` (`chapter_id`),
  KEY `submission_chapters_primary_contact_id` (`primary_contact_id`),
  KEY `submission_chapters_publication_id` (`publication_id`),
  KEY `submission_chapters_source_chapter_id` (`source_chapter_id`),
  KEY `submission_chapters_doi_id_foreign` (`doi_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of chapters for each submission (when submissions are divided into chapters).' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `submission_chapter_authors`
--

CREATE TABLE `submission_chapter_authors` (
  `author_id` bigint(20) NOT NULL,
  `chapter_id` bigint(20) NOT NULL,
  `primary_contact` smallint(6) NOT NULL DEFAULT '0',
  `seq` double NOT NULL DEFAULT '0',
  UNIQUE KEY `chapter_authors_pkey` (`author_id`,`chapter_id`),
  KEY `submission_chapter_authors_author_id` (`author_id`),
  KEY `submission_chapter_authors_chapter_id` (`chapter_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The list of authors associated with each submission chapter.';

-- --------------------------------------------------------

--
-- Table structure for table `submission_chapter_settings`
--

CREATE TABLE `submission_chapter_settings` (
  `submission_chapter_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `chapter_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text,
  `setting_type` varchar(6) NOT NULL COMMENT '(bool|int|float|string|object)',
  PRIMARY KEY (`submission_chapter_setting_id`),
  UNIQUE KEY `submission_chapter_settings_unique` (`chapter_id`,`locale`,`setting_name`),
  KEY `submission_chapter_settings_chapter_id` (`chapter_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More information about submission chapters, including localized properties such as chapter titles.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `submission_comments`
--

CREATE TABLE `submission_comments` (
  `comment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment_type` bigint(20) DEFAULT NULL,
  `role_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `author_id` bigint(20) NOT NULL,
  `comment_title` text NOT NULL,
  `comments` text,
  `date_posted` datetime DEFAULT NULL,
  `date_modified` datetime DEFAULT NULL,
  `viewable` smallint(6) DEFAULT NULL,
  PRIMARY KEY (`comment_id`),
  KEY `submission_comments_submission_id` (`submission_id`),
  KEY `submission_comments_author_id` (`author_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Comments on a submission, e.g. peer review comments' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `submission_files`
--

CREATE TABLE `submission_files` (
  `submission_file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `file_id` bigint(20) unsigned NOT NULL,
  `source_submission_file_id` bigint(20) unsigned DEFAULT NULL,
  `genre_id` bigint(20) DEFAULT NULL,
  `file_stage` bigint(20) NOT NULL,
  `direct_sales_price` varchar(255) DEFAULT NULL,
  `sales_type` varchar(255) DEFAULT NULL,
  `viewable` smallint(6) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  `uploader_user_id` bigint(20) DEFAULT NULL,
  `assoc_type` bigint(20) DEFAULT NULL,
  `assoc_id` bigint(20) DEFAULT NULL,
  `doi_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`submission_file_id`),
  KEY `submission_files_submission_id` (`submission_id`),
  KEY `submission_files_file_id` (`file_id`),
  KEY `submission_files_genre_id` (`genre_id`),
  KEY `submission_files_uploader_user_id` (`uploader_user_id`),
  KEY `submission_files_stage_assoc` (`file_stage`,`assoc_type`,`assoc_id`),
  KEY `submission_files_source_submission_file_id` (`source_submission_file_id`),
  KEY `submission_files_doi_id` (`doi_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='All files associated with a submission, such as those uploaded during submission, as revisions, or by copyeditors or layout editors for production.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `submission_file_revisions`
--

CREATE TABLE `submission_file_revisions` (
  `revision_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_file_id` bigint(20) unsigned NOT NULL,
  `file_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`revision_id`),
  KEY `submission_file_revisions_submission_file_id` (`submission_file_id`),
  KEY `submission_file_revisions_file_id` (`file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revisions map submission_file entries to files on the data store.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `submission_file_settings`
--

CREATE TABLE `submission_file_settings` (
  `submission_file_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_file_id` bigint(20) unsigned NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`submission_file_setting_id`),
  UNIQUE KEY `submission_file_settings_unique` (`submission_file_id`,`locale`,`setting_name`),
  KEY `submission_file_settings_submission_file_id` (`submission_file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Localized data about submission files like published metadata.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `submission_search_keyword_list`
--

CREATE TABLE `submission_search_keyword_list` (
  `keyword_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `keyword_text` varchar(60) NOT NULL,
  PRIMARY KEY (`keyword_id`),
  UNIQUE KEY `submission_search_keyword_text` (`keyword_text`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of all keywords used in the search index' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `submission_search_objects`
--

CREATE TABLE `submission_search_objects` (
  `object_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `type` int(11) NOT NULL COMMENT 'Type of item. E.g., abstract, fulltext, etc.',
  `assoc_id` bigint(20) DEFAULT NULL COMMENT 'Optional ID of an associated record (e.g., a file_id)',
  PRIMARY KEY (`object_id`),
  KEY `submission_search_objects_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of all search objects indexed in the search index' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `submission_search_object_keywords`
--

CREATE TABLE `submission_search_object_keywords` (
  `submission_search_object_keyword_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `object_id` bigint(20) NOT NULL,
  `keyword_id` bigint(20) NOT NULL,
  `pos` int(11) NOT NULL COMMENT 'Word position of the keyword in the object.',
  PRIMARY KEY (`submission_search_object_keyword_id`),
  UNIQUE KEY `submission_search_object_keywords_unique` (`object_id`,`pos`),
  KEY `submission_search_object_keywords_object_id` (`object_id`),
  KEY `submission_search_object_keywords_keyword_id` (`keyword_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Relationships between search objects and keywords in the search index' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `submission_settings`
--

CREATE TABLE `submission_settings` (
  `submission_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`submission_setting_id`),
  UNIQUE KEY `submission_settings_unique` (`submission_id`,`locale`,`setting_name`),
  KEY `submission_settings_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Localized data about submissions' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `temporary_files`
--

CREATE TABLE `temporary_files` (
  `file_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `file_name` varchar(90) NOT NULL,
  `file_type` varchar(255) DEFAULT NULL,
  `file_size` bigint(20) NOT NULL,
  `original_file_name` varchar(127) DEFAULT NULL,
  `date_uploaded` datetime NOT NULL,
  PRIMARY KEY (`file_id`),
  KEY `temporary_files_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temporary files, e.g. where files are kept during an upload process before they are moved somewhere more appropriate.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `usage_stats_institution_temporary_records`
--

CREATE TABLE `usage_stats_institution_temporary_records` (
  `usage_stats_temp_institution_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `load_id` varchar(50) NOT NULL,
  `line_number` bigint(20) NOT NULL,
  `institution_id` bigint(20) NOT NULL,
  PRIMARY KEY (`usage_stats_temp_institution_id`),
  UNIQUE KEY `usi_load_id_line_number_institution_id` (`load_id`,`line_number`,`institution_id`),
  KEY `usi_institution_id` (`institution_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temporary stats by institution. Data in this table is provisional. See the metrics_* tables for compiled stats.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `usage_stats_total_temporary_records`
--

CREATE TABLE `usage_stats_total_temporary_records` (
  `usage_stats_temp_total_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date` datetime NOT NULL,
  `ip` varchar(64) NOT NULL,
  `user_agent` varchar(255) NOT NULL,
  `line_number` bigint(20) NOT NULL,
  `canonical_url` varchar(255) NOT NULL,
  `series_id` bigint(20) DEFAULT NULL,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) DEFAULT NULL,
  `chapter_id` bigint(20) DEFAULT NULL,
  `representation_id` bigint(20) DEFAULT NULL,
  `submission_file_id` bigint(20) unsigned DEFAULT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `file_type` smallint(6) DEFAULT NULL,
  `country` varchar(2) NOT NULL DEFAULT '',
  `region` varchar(3) NOT NULL DEFAULT '',
  `city` varchar(255) NOT NULL DEFAULT '',
  `load_id` varchar(50) NOT NULL,
  PRIMARY KEY (`usage_stats_temp_total_id`),
  KEY `ust_series_id` (`series_id`),
  KEY `ust_context_id` (`context_id`),
  KEY `ust_submission_id` (`submission_id`),
  KEY `ust_chapter_id` (`chapter_id`),
  KEY `ust_representation_id` (`representation_id`),
  KEY `ust_submission_file_id` (`submission_file_id`),
  KEY `ust_load_id_context_id_ip_ua_url` (`load_id`,`context_id`,`ip`,`user_agent`,`canonical_url`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temporary stats totals based on visitor log records. Data in this table is provisional. See the metrics_* tables for compiled stats.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `usage_stats_unique_item_investigations_temporary_records`
--

CREATE TABLE `usage_stats_unique_item_investigations_temporary_records` (
  `usage_stats_temp_unique_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date` datetime NOT NULL,
  `ip` varchar(64) NOT NULL,
  `user_agent` varchar(255) NOT NULL,
  `line_number` bigint(20) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `chapter_id` bigint(20) DEFAULT NULL,
  `representation_id` bigint(20) DEFAULT NULL,
  `submission_file_id` bigint(20) unsigned DEFAULT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `file_type` smallint(6) DEFAULT NULL,
  `country` varchar(2) NOT NULL DEFAULT '',
  `region` varchar(3) NOT NULL DEFAULT '',
  `city` varchar(255) NOT NULL DEFAULT '',
  `load_id` varchar(50) NOT NULL,
  PRIMARY KEY (`usage_stats_temp_unique_item_id`),
  KEY `usii_context_id` (`context_id`),
  KEY `usii_submission_id` (`submission_id`),
  KEY `usii_chapter_id` (`chapter_id`),
  KEY `usii_representation_id` (`representation_id`),
  KEY `usii_submission_file_id` (`submission_file_id`),
  KEY `usii_load_id_context_id_ip_ua` (`load_id`,`context_id`,`ip`,`user_agent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temporary stats on unique downloads based on visitor log records. Data in this table is provisional. See the metrics_* tables for compiled stats.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `usage_stats_unique_item_requests_temporary_records`
--

CREATE TABLE `usage_stats_unique_item_requests_temporary_records` (
  `usage_stats_temp_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date` datetime NOT NULL,
  `ip` varchar(64) NOT NULL,
  `user_agent` varchar(255) NOT NULL,
  `line_number` bigint(20) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `chapter_id` bigint(20) DEFAULT NULL,
  `representation_id` bigint(20) DEFAULT NULL,
  `submission_file_id` bigint(20) unsigned DEFAULT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `file_type` smallint(6) DEFAULT NULL,
  `country` varchar(2) NOT NULL DEFAULT '',
  `region` varchar(3) NOT NULL DEFAULT '',
  `city` varchar(255) NOT NULL DEFAULT '',
  `load_id` varchar(50) NOT NULL,
  PRIMARY KEY (`usage_stats_temp_item_id`),
  KEY `usir_context_id` (`context_id`),
  KEY `usir_submission_id` (`submission_id`),
  KEY `usir_chapter_id` (`chapter_id`),
  KEY `usir_representation_id` (`representation_id`),
  KEY `usir_submission_file_id` (`submission_file_id`),
  KEY `usir_load_id_context_id_ip_ua` (`load_id`,`context_id`,`ip`,`user_agent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temporary stats on unique views based on visitor log records. Data in this table is provisional. See the metrics_* tables for compiled stats.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `usage_stats_unique_title_investigations_temporary_records`
--

CREATE TABLE `usage_stats_unique_title_investigations_temporary_records` (
  `usage_stats_temp_unique_investigations_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date` datetime NOT NULL,
  `ip` varchar(64) NOT NULL,
  `user_agent` varchar(255) NOT NULL,
  `line_number` bigint(20) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `chapter_id` bigint(20) DEFAULT NULL,
  `representation_id` bigint(20) DEFAULT NULL,
  `submission_file_id` bigint(20) unsigned DEFAULT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `file_type` smallint(6) DEFAULT NULL,
  `country` varchar(2) NOT NULL DEFAULT '',
  `region` varchar(3) NOT NULL DEFAULT '',
  `city` varchar(255) NOT NULL DEFAULT '',
  `load_id` varchar(50) NOT NULL,
  PRIMARY KEY (`usage_stats_temp_unique_investigations_id`),
  KEY `usti_context_id` (`context_id`),
  KEY `usti_submission_id` (`submission_id`),
  KEY `usti_chapter_id` (`chapter_id`),
  KEY `usti_representation_id` (`representation_id`),
  KEY `usti_submission_file_id` (`submission_file_id`),
  KEY `usti_load_id_context_id_ip_ua` (`load_id`,`context_id`,`ip`,`user_agent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temporary stats for views and downloads from institutions based on visitor log records. Data in this table is provisional. See the metrics_* tables for compiled stats.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `usage_stats_unique_title_requests_temporary_records`
--

CREATE TABLE `usage_stats_unique_title_requests_temporary_records` (
  `usage_stats_temp_unique_requests_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date` datetime NOT NULL,
  `ip` varchar(64) NOT NULL,
  `user_agent` varchar(255) NOT NULL,
  `line_number` bigint(20) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `chapter_id` bigint(20) DEFAULT NULL,
  `representation_id` bigint(20) DEFAULT NULL,
  `submission_file_id` bigint(20) unsigned DEFAULT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `file_type` smallint(6) DEFAULT NULL,
  `country` varchar(2) NOT NULL DEFAULT '',
  `region` varchar(3) NOT NULL DEFAULT '',
  `city` varchar(255) NOT NULL DEFAULT '',
  `load_id` varchar(50) NOT NULL,
  PRIMARY KEY (`usage_stats_temp_unique_requests_id`),
  KEY `ustr_context_id` (`context_id`),
  KEY `ustr_submission_id` (`submission_id`),
  KEY `ustr_chapter_id` (`chapter_id`),
  KEY `ustr_representation_id` (`representation_id`),
  KEY `ustr_submission_file_id` (`submission_file_id`),
  KEY `ustr_load_id_context_id_ip_ua` (`load_id`,`context_id`,`ip`,`user_agent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Temporary stats for unique title requests. Data in this table is provisional. See the metrics_* tables for compiled stats.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `users`
--

CREATE TABLE `users` (
  `user_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `username` varchar(32) NOT NULL,
  `password` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `url` varchar(2047) DEFAULT NULL,
  `phone` varchar(32) DEFAULT NULL,
  `mailing_address` varchar(255) DEFAULT NULL,
  `billing_address` varchar(255) DEFAULT NULL,
  `country` varchar(90) DEFAULT NULL,
  `locales` varchar(255) NOT NULL DEFAULT '[]',
  `gossip` text,
  `date_last_email` datetime DEFAULT NULL,
  `date_registered` datetime NOT NULL,
  `date_validated` datetime DEFAULT NULL,
  `date_last_login` datetime DEFAULT NULL,
  `must_change_password` smallint(6) DEFAULT NULL,
  `auth_id` bigint(20) DEFAULT NULL,
  `auth_str` varchar(255) DEFAULT NULL,
  `disabled` smallint(6) NOT NULL DEFAULT '0',
  `disabled_reason` text,
  `inline_help` smallint(6) DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`user_id`),
  UNIQUE KEY `users_username` (`username`),
  UNIQUE KEY `users_email` (`email`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='All registered users, including authentication data and profile data.' AUTO_INCREMENT=2 ;

--
-- Dumping data for table `users`
--

INSERT INTO `users` VALUES
(1, '[[admin_username]]', '[[admin_pass]]', '[[admin_email]]', NULL, NULL, NULL, NULL, NULL, '[]', NULL, NULL, '[[regtime]]', NULL, NULL, NULL, NULL, NULL, 0, NULL, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `user_groups`
--

CREATE TABLE `user_groups` (
  `user_group_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) DEFAULT NULL,
  `role_id` bigint(20) NOT NULL,
  `is_default` smallint(6) NOT NULL DEFAULT '0',
  `show_title` smallint(6) NOT NULL DEFAULT '1',
  `permit_self_registration` smallint(6) NOT NULL DEFAULT '0',
  `permit_metadata_edit` smallint(6) NOT NULL DEFAULT '0',
  `permit_settings` smallint(6) NOT NULL DEFAULT '0',
  `masthead` smallint(6) NOT NULL DEFAULT '0',
  PRIMARY KEY (`user_group_id`),
  KEY `user_groups_context_id` (`context_id`),
  KEY `user_groups_user_group_id` (`user_group_id`),
  KEY `user_groups_role_id` (`role_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='All defined user roles in a context, such as Author, Reviewer, Section Editor and Journal Manager.' AUTO_INCREMENT=2 ;

--
-- Dumping data for table `user_groups`
--

INSERT INTO `user_groups` VALUES
(1, NULL, 1, 1, 1, 0, 0, 1, 0);

-- --------------------------------------------------------

--
-- Table structure for table `user_group_settings`
--

CREATE TABLE `user_group_settings` (
  `user_group_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_group_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`user_group_setting_id`),
  UNIQUE KEY `user_group_settings_unique` (`user_group_id`,`locale`,`setting_name`),
  KEY `user_group_settings_user_group_id` (`user_group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about user groups, including localized properties such as the name.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `user_group_stage`
--

CREATE TABLE `user_group_stage` (
  `user_group_stage_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `user_group_id` bigint(20) NOT NULL,
  `stage_id` bigint(20) NOT NULL,
  PRIMARY KEY (`user_group_stage_id`),
  UNIQUE KEY `user_group_stage_unique` (`context_id`,`user_group_id`,`stage_id`),
  KEY `user_group_stage_context_id` (`context_id`),
  KEY `user_group_stage_user_group_id` (`user_group_id`),
  KEY `user_group_stage_stage_id` (`stage_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Which stages of the editorial workflow the user_groups can access.' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `user_interests`
--

CREATE TABLE `user_interests` (
  `user_interest_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `controlled_vocab_entry_id` bigint(20) NOT NULL,
  PRIMARY KEY (`user_interest_id`),
  UNIQUE KEY `u_e_pkey` (`user_id`,`controlled_vocab_entry_id`),
  KEY `user_interests_user_id` (`user_id`),
  KEY `user_interests_controlled_vocab_entry_id` (`controlled_vocab_entry_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Associates users with user interests (which are stored in the controlled vocabulary tables).' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `user_settings`
--

CREATE TABLE `user_settings` (
  `user_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `locale` varchar(28) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext,
  PRIMARY KEY (`user_setting_id`),
  UNIQUE KEY `user_settings_unique` (`user_id`,`locale`,`setting_name`),
  KEY `user_settings_user_id` (`user_id`),
  KEY `user_settings_locale_setting_name_index` (`setting_name`,`locale`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='More data about users, including localized properties like their name and affiliation.' AUTO_INCREMENT=3 ;

--
-- Dumping data for table `user_settings`
--

INSERT INTO `user_settings` VALUES
(1, 1, 'en', 'familyName', '[[admin_username]]'),
(2, 1, 'en', 'givenName', '[[admin_username]]');

-- --------------------------------------------------------

--
-- Table structure for table `user_user_groups`
--

CREATE TABLE `user_user_groups` (
  `user_user_group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_group_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `date_start` datetime DEFAULT NULL,
  `date_end` datetime DEFAULT NULL,
  `masthead` smallint(6) DEFAULT NULL,
  PRIMARY KEY (`user_user_group_id`),
  KEY `user_user_groups_user_group_id` (`user_group_id`),
  KEY `user_user_groups_user_id` (`user_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='Maps users to their assigned user_groups.' AUTO_INCREMENT=2 ;

--
-- Dumping data for table `user_user_groups`
--

INSERT INTO `user_user_groups` VALUES
(1, 1, 1, '[[regtime]]', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `versions`
--

CREATE TABLE `versions` (
  `version_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `major` int(11) NOT NULL DEFAULT '0' COMMENT 'Major component of version number, e.g. the 2 in OJS 2.3.8-0',
  `minor` int(11) NOT NULL DEFAULT '0' COMMENT 'Minor component of version number, e.g. the 3 in OJS 2.3.8-0',
  `revision` int(11) NOT NULL DEFAULT '0' COMMENT 'Revision component of version number, e.g. the 8 in OJS 2.3.8-0',
  `build` int(11) NOT NULL DEFAULT '0' COMMENT 'Build component of version number, e.g. the 0 in OJS 2.3.8-0',
  `date_installed` datetime NOT NULL,
  `current` smallint(6) NOT NULL DEFAULT '0' COMMENT '1 iff the version entry being described is currently active. This permits the table to store past installation history for forensic purposes.',
  `product_type` varchar(30) DEFAULT NULL COMMENT 'Describes the type of product this row describes, e.g. "plugins.generic" (for a generic plugin) or "core" for the application itself',
  `product` varchar(30) DEFAULT NULL COMMENT 'Uniquely identifies the product this version row describes, e.g. "ojs2" for OJS 2.x, "languageToggle" for the language toggle block plugin, etc.',
  `product_class_name` varchar(80) DEFAULT NULL COMMENT 'Specifies the class name associated with this product, for plugins, or the empty string where not applicable.',
  `lazy_load` smallint(6) NOT NULL DEFAULT '0' COMMENT '1 iff the row describes a lazy-load plugin; 0 otherwise',
  `sitewide` smallint(6) NOT NULL DEFAULT '0' COMMENT '1 iff the row describes a site-wide plugin; 0 otherwise',
  PRIMARY KEY (`version_id`),
  UNIQUE KEY `versions_unique` (`product_type`,`product`,`major`,`minor`,`revision`,`build`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='Describes the installation and upgrade version history for the application and all installed plugins.' AUTO_INCREMENT=30 ;

--
-- Dumping data for table `versions`
--

INSERT INTO `versions` VALUES
(1, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.metadata', 'dc11', '', 0, 0),
(2, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.pubIds', 'urn', '\\APP\\plugins\\pubIds\\urn\\URNPubIdPlugin', 0, 0),
(3, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.blocks', 'developedBy', 'DevelopedByBlockPlugin', 1, 0),
(4, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.blocks', 'makeSubmission', 'MakeSubmissionBlockPlugin', 1, 0),
(5, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.blocks', 'languageToggle', 'LanguageToggleBlockPlugin', 1, 0),
(6, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.blocks', 'information', 'InformationBlockPlugin', 1, 0),
(7, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.blocks', 'browse', '\\APP\\plugins\\blocks\\browse\\BrowseBlockPlugin', 1, 0),
(8, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.generic', 'googleScholar', 'GoogleScholarPlugin', 1, 0),
(9, 1, 2, 0, 0, '[[regtime]]', 1, 'plugins.generic', 'customBlockManager', 'CustomBlockManagerPlugin', 1, 0),
(10, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.generic', 'htmlMonographFile', 'HtmlMonographFilePlugin', 1, 0),
(11, 0, 1, 0, 0, '[[regtime]]', 1, 'plugins.generic', 'citationStyleLanguage', 'CitationStyleLanguagePlugin', 1, 0),
(12, 1, 2, 0, 0, '[[regtime]]', 1, 'plugins.generic', 'staticPages', 'StaticPagesPlugin', 1, 0),
(13, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.generic', 'tinymce', 'TinyMCEPlugin', 1, 0),
(14, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.generic', 'dublinCoreMeta', 'DublinCoreMetaPlugin', 1, 0),
(15, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.generic', 'googleAnalytics', 'GoogleAnalyticsPlugin', 1, 0),
(16, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.generic', 'webFeed', 'WebFeedPlugin', 1, 0),
(17, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.generic', 'usageEvent', '', 0, 1),
(18, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.generic', 'pdfJsViewer', 'PdfJsViewerPlugin', 1, 0),
(19, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.themes', 'default', 'DefaultThemePlugin', 1, 0),
(20, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.importexport', 'csv', '', 0, 0),
(21, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.importexport', 'users', '', 0, 0),
(22, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.importexport', 'onix30', '', 0, 0),
(23, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.importexport', 'native', '', 0, 0),
(24, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.oaiMetadataFormats', 'dc', '', 0, 0),
(25, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.paymethod', 'manual', '', 0, 0),
(26, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.paymethod', 'paypal', '', 0, 0),
(27, 2, 0, 1, 0, '[[regtime]]', 1, 'plugins.reports', 'reviewReport', '', 0, 0),
(28, 1, 0, 0, 0, '[[regtime]]', 1, 'plugins.reports', 'monographReport', '', 0, 0),
(29, 3, 5, 0, 4, '[[regtime]]', 1, 'core', 'omp', '', 0, 1);

--
-- Constraints for dumped tables
--

--
-- Constraints for table `announcements`
--
ALTER TABLE `announcements`
  ADD CONSTRAINT `announcements_type_id_foreign` FOREIGN KEY (`type_id`) REFERENCES `announcement_types` (`type_id`) ON DELETE SET NULL;

--
-- Constraints for table `announcement_settings`
--
ALTER TABLE `announcement_settings`
  ADD CONSTRAINT `announcement_settings_announcement_id_foreign` FOREIGN KEY (`announcement_id`) REFERENCES `announcements` (`announcement_id`) ON DELETE CASCADE;

--
-- Constraints for table `announcement_types`
--
ALTER TABLE `announcement_types`
  ADD CONSTRAINT `announcement_types_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `announcement_type_settings`
--
ALTER TABLE `announcement_type_settings`
  ADD CONSTRAINT `announcement_type_settings_type_id_foreign` FOREIGN KEY (`type_id`) REFERENCES `announcement_types` (`type_id`) ON DELETE CASCADE;

--
-- Constraints for table `authors`
--
ALTER TABLE `authors`
  ADD CONSTRAINT `authors_publication_id_foreign` FOREIGN KEY (`publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `authors_user_group_id_foreign` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`user_group_id`) ON DELETE CASCADE;

--
-- Constraints for table `author_affiliations`
--
ALTER TABLE `author_affiliations`
  ADD CONSTRAINT `author_affiliations_author_id_foreign` FOREIGN KEY (`author_id`) REFERENCES `authors` (`author_id`) ON DELETE CASCADE;

--
-- Constraints for table `author_affiliation_settings`
--
ALTER TABLE `author_affiliation_settings`
  ADD CONSTRAINT `author_affiliation_settings_author_affiliation_id_foreign` FOREIGN KEY (`author_affiliation_id`) REFERENCES `author_affiliations` (`author_affiliation_id`) ON DELETE CASCADE;

--
-- Constraints for table `author_settings`
--
ALTER TABLE `author_settings`
  ADD CONSTRAINT `author_settings_author_id` FOREIGN KEY (`author_id`) REFERENCES `authors` (`author_id`) ON DELETE CASCADE;

--
-- Constraints for table `categories`
--
ALTER TABLE `categories`
  ADD CONSTRAINT `categories_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `categories_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `categories` (`category_id`) ON DELETE SET NULL;

--
-- Constraints for table `category_settings`
--
ALTER TABLE `category_settings`
  ADD CONSTRAINT `category_settings_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`category_id`) ON DELETE CASCADE;

--
-- Constraints for table `citations`
--
ALTER TABLE `citations`
  ADD CONSTRAINT `citations_publication` FOREIGN KEY (`publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE CASCADE;

--
-- Constraints for table `citation_settings`
--
ALTER TABLE `citation_settings`
  ADD CONSTRAINT `citation_settings_citation_id` FOREIGN KEY (`citation_id`) REFERENCES `citations` (`citation_id`) ON DELETE CASCADE;

--
-- Constraints for table `completed_payments`
--
ALTER TABLE `completed_payments`
  ADD CONSTRAINT `completed_payments_context_id` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `completed_payments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE SET NULL;

--
-- Constraints for table `controlled_vocab_entries`
--
ALTER TABLE `controlled_vocab_entries`
  ADD CONSTRAINT `controlled_vocab_entries_controlled_vocab_id_foreign` FOREIGN KEY (`controlled_vocab_id`) REFERENCES `controlled_vocabs` (`controlled_vocab_id`) ON DELETE CASCADE;

--
-- Constraints for table `controlled_vocab_entry_settings`
--
ALTER TABLE `controlled_vocab_entry_settings`
  ADD CONSTRAINT `c_v_e_s_entry_id` FOREIGN KEY (`controlled_vocab_entry_id`) REFERENCES `controlled_vocab_entries` (`controlled_vocab_entry_id`) ON DELETE CASCADE;

--
-- Constraints for table `data_object_tombstone_oai_set_objects`
--
ALTER TABLE `data_object_tombstone_oai_set_objects`
  ADD CONSTRAINT `data_object_tombstone_oai_set_objects_tombstone_id` FOREIGN KEY (`tombstone_id`) REFERENCES `data_object_tombstones` (`tombstone_id`) ON DELETE CASCADE;

--
-- Constraints for table `data_object_tombstone_settings`
--
ALTER TABLE `data_object_tombstone_settings`
  ADD CONSTRAINT `data_object_tombstone_settings_tombstone_id` FOREIGN KEY (`tombstone_id`) REFERENCES `data_object_tombstones` (`tombstone_id`) ON DELETE CASCADE;

--
-- Constraints for table `dois`
--
ALTER TABLE `dois`
  ADD CONSTRAINT `dois_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `doi_settings`
--
ALTER TABLE `doi_settings`
  ADD CONSTRAINT `doi_settings_doi_id_foreign` FOREIGN KEY (`doi_id`) REFERENCES `dois` (`doi_id`) ON DELETE CASCADE;

--
-- Constraints for table `edit_decisions`
--
ALTER TABLE `edit_decisions`
  ADD CONSTRAINT `edit_decisions_editor_id` FOREIGN KEY (`editor_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `edit_decisions_review_round_id_foreign` FOREIGN KEY (`review_round_id`) REFERENCES `review_rounds` (`review_round_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `edit_decisions_submission_id` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `email_log`
--
ALTER TABLE `email_log`
  ADD CONSTRAINT `email_log_sender_id_foreign` FOREIGN KEY (`sender_id`) REFERENCES `users` (`user_id`) ON DELETE SET NULL;

--
-- Constraints for table `email_log_users`
--
ALTER TABLE `email_log_users`
  ADD CONSTRAINT `email_log_users_email_log_id_foreign` FOREIGN KEY (`email_log_id`) REFERENCES `email_log` (`log_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `email_log_users_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `email_templates`
--
ALTER TABLE `email_templates`
  ADD CONSTRAINT `email_templates_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `email_templates_settings`
--
ALTER TABLE `email_templates_settings`
  ADD CONSTRAINT `email_templates_settings_email_id` FOREIGN KEY (`email_id`) REFERENCES `email_templates` (`email_id`) ON DELETE CASCADE;

--
-- Constraints for table `event_log`
--
ALTER TABLE `event_log`
  ADD CONSTRAINT `event_log_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `event_log_settings`
--
ALTER TABLE `event_log_settings`
  ADD CONSTRAINT `event_log_settings_log_id` FOREIGN KEY (`log_id`) REFERENCES `event_log` (`log_id`) ON DELETE CASCADE;

--
-- Constraints for table `features`
--
ALTER TABLE `features`
  ADD CONSTRAINT `features_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `filters`
--
ALTER TABLE `filters`
  ADD CONSTRAINT `filters_context_id` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `filters_filter_group_id_foreign` FOREIGN KEY (`filter_group_id`) REFERENCES `filter_groups` (`filter_group_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `filters_parent_filter_id_foreign` FOREIGN KEY (`parent_filter_id`) REFERENCES `filters` (`filter_id`) ON DELETE CASCADE;

--
-- Constraints for table `filter_settings`
--
ALTER TABLE `filter_settings`
  ADD CONSTRAINT `filter_settings_filter_id_foreign` FOREIGN KEY (`filter_id`) REFERENCES `filters` (`filter_id`) ON DELETE CASCADE;

--
-- Constraints for table `genres`
--
ALTER TABLE `genres`
  ADD CONSTRAINT `genres_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `genre_settings`
--
ALTER TABLE `genre_settings`
  ADD CONSTRAINT `genre_settings_genre_id_foreign` FOREIGN KEY (`genre_id`) REFERENCES `genres` (`genre_id`) ON DELETE CASCADE;

--
-- Constraints for table `highlights`
--
ALTER TABLE `highlights`
  ADD CONSTRAINT `highlights_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `highlight_settings`
--
ALTER TABLE `highlight_settings`
  ADD CONSTRAINT `highlight_settings_highlight_id_foreign` FOREIGN KEY (`highlight_id`) REFERENCES `highlights` (`highlight_id`) ON DELETE CASCADE;

--
-- Constraints for table `identification_codes`
--
ALTER TABLE `identification_codes`
  ADD CONSTRAINT `identification_codes_publication_format_id` FOREIGN KEY (`publication_format_id`) REFERENCES `publication_formats` (`publication_format_id`) ON DELETE CASCADE;

--
-- Constraints for table `institutions`
--
ALTER TABLE `institutions`
  ADD CONSTRAINT `institutions_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `institution_ip`
--
ALTER TABLE `institution_ip`
  ADD CONSTRAINT `institution_ip_institution_id_foreign` FOREIGN KEY (`institution_id`) REFERENCES `institutions` (`institution_id`) ON DELETE CASCADE;

--
-- Constraints for table `institution_settings`
--
ALTER TABLE `institution_settings`
  ADD CONSTRAINT `institution_settings_institution_id_foreign` FOREIGN KEY (`institution_id`) REFERENCES `institutions` (`institution_id`) ON DELETE CASCADE;

--
-- Constraints for table `invitations`
--
ALTER TABLE `invitations`
  ADD CONSTRAINT `invitations_context_id` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `invitations_inviter_id_foreign` FOREIGN KEY (`inviter_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `invitations_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `library_files`
--
ALTER TABLE `library_files`
  ADD CONSTRAINT `library_files_context_id` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `library_files_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `library_file_settings`
--
ALTER TABLE `library_file_settings`
  ADD CONSTRAINT `library_file_settings_file_id_foreign` FOREIGN KEY (`file_id`) REFERENCES `library_files` (`file_id`) ON DELETE CASCADE;

--
-- Constraints for table `markets`
--
ALTER TABLE `markets`
  ADD CONSTRAINT `markets_publication_format_id` FOREIGN KEY (`publication_format_id`) REFERENCES `publication_formats` (`publication_format_id`) ON DELETE CASCADE;

--
-- Constraints for table `metrics_context`
--
ALTER TABLE `metrics_context`
  ADD CONSTRAINT `metrics_context_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `metrics_counter_submission_daily`
--
ALTER TABLE `metrics_counter_submission_daily`
  ADD CONSTRAINT `msd_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `msd_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `metrics_counter_submission_institution_daily`
--
ALTER TABLE `metrics_counter_submission_institution_daily`
  ADD CONSTRAINT `msid_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `msid_institution_id_foreign` FOREIGN KEY (`institution_id`) REFERENCES `institutions` (`institution_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `msid_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `metrics_counter_submission_institution_monthly`
--
ALTER TABLE `metrics_counter_submission_institution_monthly`
  ADD CONSTRAINT `msim_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `msim_institution_id_foreign` FOREIGN KEY (`institution_id`) REFERENCES `institutions` (`institution_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `msim_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `metrics_counter_submission_monthly`
--
ALTER TABLE `metrics_counter_submission_monthly`
  ADD CONSTRAINT `msm_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `msm_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `metrics_series`
--
ALTER TABLE `metrics_series`
  ADD CONSTRAINT `metrics_series_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `metrics_series_series_id_foreign` FOREIGN KEY (`series_id`) REFERENCES `series` (`series_id`) ON DELETE CASCADE;

--
-- Constraints for table `metrics_submission`
--
ALTER TABLE `metrics_submission`
  ADD CONSTRAINT `metrics_submission_chapter_id_foreign` FOREIGN KEY (`chapter_id`) REFERENCES `submission_chapters` (`chapter_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `metrics_submission_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `metrics_submission_representation_id_foreign` FOREIGN KEY (`representation_id`) REFERENCES `publication_formats` (`publication_format_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `metrics_submission_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `metrics_submission_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `metrics_submission_geo_daily`
--
ALTER TABLE `metrics_submission_geo_daily`
  ADD CONSTRAINT `msgd_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `msgd_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `metrics_submission_geo_monthly`
--
ALTER TABLE `metrics_submission_geo_monthly`
  ADD CONSTRAINT `msgm_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `msgm_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `navigation_menus`
--
ALTER TABLE `navigation_menus`
  ADD CONSTRAINT `navigation_menus_context_id` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `navigation_menu_items`
--
ALTER TABLE `navigation_menu_items`
  ADD CONSTRAINT `navigation_menu_items_context_id` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `navigation_menu_item_assignments`
--
ALTER TABLE `navigation_menu_item_assignments`
  ADD CONSTRAINT `navigation_menu_item_assignments_navigation_menu_id_foreign` FOREIGN KEY (`navigation_menu_id`) REFERENCES `navigation_menus` (`navigation_menu_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `navigation_menu_item_assignments_navigation_menu_item_id_foreign` FOREIGN KEY (`navigation_menu_item_id`) REFERENCES `navigation_menu_items` (`navigation_menu_item_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `navigation_menu_item_assignments_parent_id` FOREIGN KEY (`parent_id`) REFERENCES `navigation_menu_items` (`navigation_menu_item_id`) ON DELETE CASCADE;

--
-- Constraints for table `navigation_menu_item_assignment_settings`
--
ALTER TABLE `navigation_menu_item_assignment_settings`
  ADD CONSTRAINT `assignment_settings_navigation_menu_item_assignment_id` FOREIGN KEY (`navigation_menu_item_assignment_id`) REFERENCES `navigation_menu_item_assignments` (`navigation_menu_item_assignment_id`) ON DELETE CASCADE;

--
-- Constraints for table `navigation_menu_item_settings`
--
ALTER TABLE `navigation_menu_item_settings`
  ADD CONSTRAINT `navigation_menu_item_settings_navigation_menu_id` FOREIGN KEY (`navigation_menu_item_id`) REFERENCES `navigation_menu_items` (`navigation_menu_item_id`) ON DELETE CASCADE;

--
-- Constraints for table `new_releases`
--
ALTER TABLE `new_releases`
  ADD CONSTRAINT `new_releases_submission_id` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `notes`
--
ALTER TABLE `notes`
  ADD CONSTRAINT `notes_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `notifications`
--
ALTER TABLE `notifications`
  ADD CONSTRAINT `notifications_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `notifications_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `notification_settings`
--
ALTER TABLE `notification_settings`
  ADD CONSTRAINT `notification_settings_notification_id_foreign` FOREIGN KEY (`notification_id`) REFERENCES `notifications` (`notification_id`) ON DELETE CASCADE;

--
-- Constraints for table `notification_subscription_settings`
--
ALTER TABLE `notification_subscription_settings`
  ADD CONSTRAINT `notification_subscription_settings_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `notification_subscription_settings_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `plugin_settings`
--
ALTER TABLE `plugin_settings`
  ADD CONSTRAINT `plugin_settings_context_id` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `press_settings`
--
ALTER TABLE `press_settings`
  ADD CONSTRAINT `press_settings_press_id_foreign` FOREIGN KEY (`press_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `publications`
--
ALTER TABLE `publications`
  ADD CONSTRAINT `publications_author_id` FOREIGN KEY (`primary_contact_id`) REFERENCES `authors` (`author_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `publications_doi_id_foreign` FOREIGN KEY (`doi_id`) REFERENCES `dois` (`doi_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `publications_series_id` FOREIGN KEY (`series_id`) REFERENCES `series` (`series_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `publications_submission_id` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `publication_categories`
--
ALTER TABLE `publication_categories`
  ADD CONSTRAINT `publication_categories_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`category_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `publication_categories_publication_id_foreign` FOREIGN KEY (`publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE CASCADE;

--
-- Constraints for table `publication_dates`
--
ALTER TABLE `publication_dates`
  ADD CONSTRAINT `publication_dates_publication_format_id` FOREIGN KEY (`publication_format_id`) REFERENCES `publication_formats` (`publication_format_id`) ON DELETE CASCADE;

--
-- Constraints for table `publication_formats`
--
ALTER TABLE `publication_formats`
  ADD CONSTRAINT `publication_formats_doi_id_foreign` FOREIGN KEY (`doi_id`) REFERENCES `dois` (`doi_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `publication_formats_publication_id` FOREIGN KEY (`publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE CASCADE;

--
-- Constraints for table `publication_format_settings`
--
ALTER TABLE `publication_format_settings`
  ADD CONSTRAINT `publication_format_settings_publication_format_id` FOREIGN KEY (`publication_format_id`) REFERENCES `publication_formats` (`publication_format_id`) ON DELETE CASCADE;

--
-- Constraints for table `publication_settings`
--
ALTER TABLE `publication_settings`
  ADD CONSTRAINT `publication_settings_publication_id_foreign` FOREIGN KEY (`publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE CASCADE;

--
-- Constraints for table `query_participants`
--
ALTER TABLE `query_participants`
  ADD CONSTRAINT `query_participants_query_id_foreign` FOREIGN KEY (`query_id`) REFERENCES `queries` (`query_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `query_participants_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `representatives`
--
ALTER TABLE `representatives`
  ADD CONSTRAINT `representatives_submission_id` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `reviewer_suggestions`
--
ALTER TABLE `reviewer_suggestions`
  ADD CONSTRAINT `reviewer_suggestions_approver_id_foreign` FOREIGN KEY (`approver_id`) REFERENCES `users` (`user_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `reviewer_suggestions_reviewer_id_foreign` FOREIGN KEY (`reviewer_id`) REFERENCES `users` (`user_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `reviewer_suggestions_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `reviewer_suggestions_suggesting_user_id_foreign` FOREIGN KEY (`suggesting_user_id`) REFERENCES `users` (`user_id`) ON DELETE SET NULL;

--
-- Constraints for table `reviewer_suggestion_settings`
--
ALTER TABLE `reviewer_suggestion_settings`
  ADD CONSTRAINT `reviewer_suggestion_settings_reviewer_suggestion_id_foreign` FOREIGN KEY (`reviewer_suggestion_id`) REFERENCES `reviewer_suggestions` (`reviewer_suggestion_id`) ON DELETE CASCADE;

--
-- Constraints for table `review_assignments`
--
ALTER TABLE `review_assignments`
  ADD CONSTRAINT `review_assignments_review_form_id_foreign` FOREIGN KEY (`review_form_id`) REFERENCES `review_forms` (`review_form_id`),
  ADD CONSTRAINT `review_assignments_review_round_id_foreign` FOREIGN KEY (`review_round_id`) REFERENCES `review_rounds` (`review_round_id`),
  ADD CONSTRAINT `review_assignments_reviewer_id_foreign` FOREIGN KEY (`reviewer_id`) REFERENCES `users` (`user_id`),
  ADD CONSTRAINT `review_assignments_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`);

--
-- Constraints for table `review_assignment_settings`
--
ALTER TABLE `review_assignment_settings`
  ADD CONSTRAINT `review_assignment_settings_review_id_foreign` FOREIGN KEY (`review_id`) REFERENCES `review_assignments` (`review_id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `review_files`
--
ALTER TABLE `review_files`
  ADD CONSTRAINT `review_files_review_id_foreign` FOREIGN KEY (`review_id`) REFERENCES `review_assignments` (`review_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `review_files_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE;

--
-- Constraints for table `review_form_elements`
--
ALTER TABLE `review_form_elements`
  ADD CONSTRAINT `review_form_elements_review_form_id` FOREIGN KEY (`review_form_id`) REFERENCES `review_forms` (`review_form_id`) ON DELETE CASCADE;

--
-- Constraints for table `review_form_element_settings`
--
ALTER TABLE `review_form_element_settings`
  ADD CONSTRAINT `review_form_element_settings_review_form_element_id` FOREIGN KEY (`review_form_element_id`) REFERENCES `review_form_elements` (`review_form_element_id`) ON DELETE CASCADE;

--
-- Constraints for table `review_form_responses`
--
ALTER TABLE `review_form_responses`
  ADD CONSTRAINT `review_form_responses_review_form_element_id_foreign` FOREIGN KEY (`review_form_element_id`) REFERENCES `review_form_elements` (`review_form_element_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `review_form_responses_review_id_foreign` FOREIGN KEY (`review_id`) REFERENCES `review_assignments` (`review_id`) ON DELETE CASCADE;

--
-- Constraints for table `review_form_settings`
--
ALTER TABLE `review_form_settings`
  ADD CONSTRAINT `review_form_settings_review_form_id` FOREIGN KEY (`review_form_id`) REFERENCES `review_forms` (`review_form_id`) ON DELETE CASCADE;

--
-- Constraints for table `review_rounds`
--
ALTER TABLE `review_rounds`
  ADD CONSTRAINT `review_rounds_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`);

--
-- Constraints for table `review_round_files`
--
ALTER TABLE `review_round_files`
  ADD CONSTRAINT `review_round_files_review_round_id_foreign` FOREIGN KEY (`review_round_id`) REFERENCES `review_rounds` (`review_round_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `review_round_files_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `review_round_files_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `ror_settings`
--
ALTER TABLE `ror_settings`
  ADD CONSTRAINT `ror_settings_ror_id_foreign` FOREIGN KEY (`ror_id`) REFERENCES `rors` (`ror_id`) ON DELETE CASCADE;

--
-- Constraints for table `sales_rights`
--
ALTER TABLE `sales_rights`
  ADD CONSTRAINT `sales_rights_publication_format_id` FOREIGN KEY (`publication_format_id`) REFERENCES `publication_formats` (`publication_format_id`) ON DELETE CASCADE;

--
-- Constraints for table `series`
--
ALTER TABLE `series`
  ADD CONSTRAINT `series_press_id` FOREIGN KEY (`press_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `series_review_form_id` FOREIGN KEY (`review_form_id`) REFERENCES `review_forms` (`review_form_id`) ON DELETE SET NULL;

--
-- Constraints for table `series_categories`
--
ALTER TABLE `series_categories`
  ADD CONSTRAINT `series_categories_category_id` FOREIGN KEY (`category_id`) REFERENCES `categories` (`category_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `series_categories_series_id` FOREIGN KEY (`series_id`) REFERENCES `series` (`series_id`) ON DELETE CASCADE;

--
-- Constraints for table `series_settings`
--
ALTER TABLE `series_settings`
  ADD CONSTRAINT `series_settings_series_id` FOREIGN KEY (`series_id`) REFERENCES `series` (`series_id`) ON DELETE CASCADE;

--
-- Constraints for table `sessions`
--
ALTER TABLE `sessions`
  ADD CONSTRAINT `sessions_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `site`
--
ALTER TABLE `site`
  ADD CONSTRAINT `site_redirect_context_id_foreign` FOREIGN KEY (`redirect_context_id`) REFERENCES `presses` (`press_id`) ON DELETE SET NULL;

--
-- Constraints for table `stage_assignments`
--
ALTER TABLE `stage_assignments`
  ADD CONSTRAINT `stage_assignments_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `stage_assignments_user_group_id` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`user_group_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `stage_assignments_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `static_pages`
--
ALTER TABLE `static_pages`
  ADD CONSTRAINT `static_pages_context_id` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `static_page_settings`
--
ALTER TABLE `static_page_settings`
  ADD CONSTRAINT `static_page_settings_static_page_id` FOREIGN KEY (`static_page_id`) REFERENCES `static_pages` (`static_page_id`) ON DELETE CASCADE;

--
-- Constraints for table `subeditor_submission_group`
--
ALTER TABLE `subeditor_submission_group`
  ADD CONSTRAINT `section_editors_context_id` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `subeditor_submission_group_user_group_id_foreign` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`user_group_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `subeditor_submission_group_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `submissions`
--
ALTER TABLE `submissions`
  ADD CONSTRAINT `submissions_context_id` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `submissions_publication_id` FOREIGN KEY (`current_publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE SET NULL;

--
-- Constraints for table `submission_chapters`
--
ALTER TABLE `submission_chapters`
  ADD CONSTRAINT `submission_chapters_doi_id_foreign` FOREIGN KEY (`doi_id`) REFERENCES `dois` (`doi_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `submission_chapters_primary_contact_id_foreign` FOREIGN KEY (`primary_contact_id`) REFERENCES `authors` (`author_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `submission_chapters_publication_id` FOREIGN KEY (`publication_id`) REFERENCES `publications` (`publication_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `submission_chapters_source_chapter_id_foreign` FOREIGN KEY (`source_chapter_id`) REFERENCES `submission_chapters` (`chapter_id`) ON DELETE SET NULL;

--
-- Constraints for table `submission_chapter_authors`
--
ALTER TABLE `submission_chapter_authors`
  ADD CONSTRAINT `submission_chapter_authors_author_id_foreign` FOREIGN KEY (`author_id`) REFERENCES `authors` (`author_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `submission_chapter_authors_chapter_id_foreign` FOREIGN KEY (`chapter_id`) REFERENCES `submission_chapters` (`chapter_id`) ON DELETE CASCADE;

--
-- Constraints for table `submission_chapter_settings`
--
ALTER TABLE `submission_chapter_settings`
  ADD CONSTRAINT `submission_chapter_settings_chapter_id_foreign` FOREIGN KEY (`chapter_id`) REFERENCES `submission_chapters` (`chapter_id`) ON DELETE CASCADE;

--
-- Constraints for table `submission_comments`
--
ALTER TABLE `submission_comments`
  ADD CONSTRAINT `submission_comments_author_id_foreign` FOREIGN KEY (`author_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `submission_comments_submission_id` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `submission_files`
--
ALTER TABLE `submission_files`
  ADD CONSTRAINT `submission_files_doi_id_foreign` FOREIGN KEY (`doi_id`) REFERENCES `dois` (`doi_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `submission_files_file_id_foreign` FOREIGN KEY (`file_id`) REFERENCES `files` (`file_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `submission_files_genre_id_foreign` FOREIGN KEY (`genre_id`) REFERENCES `genres` (`genre_id`) ON DELETE SET NULL,
  ADD CONSTRAINT `submission_files_source_submission_file_id_foreign` FOREIGN KEY (`source_submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `submission_files_submission_id` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `submission_files_uploader_user_id_foreign` FOREIGN KEY (`uploader_user_id`) REFERENCES `users` (`user_id`) ON DELETE SET NULL;

--
-- Constraints for table `submission_file_revisions`
--
ALTER TABLE `submission_file_revisions`
  ADD CONSTRAINT `submission_file_revisions_file_id_foreign` FOREIGN KEY (`file_id`) REFERENCES `files` (`file_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `submission_file_revisions_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE;

--
-- Constraints for table `submission_file_settings`
--
ALTER TABLE `submission_file_settings`
  ADD CONSTRAINT `submission_file_settings_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE;

--
-- Constraints for table `submission_search_objects`
--
ALTER TABLE `submission_search_objects`
  ADD CONSTRAINT `submission_search_object_submission` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `submission_search_object_keywords`
--
ALTER TABLE `submission_search_object_keywords`
  ADD CONSTRAINT `submission_search_object_keywords_keyword_id` FOREIGN KEY (`keyword_id`) REFERENCES `submission_search_keyword_list` (`keyword_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `submission_search_object_keywords_object_id_foreign` FOREIGN KEY (`object_id`) REFERENCES `submission_search_objects` (`object_id`) ON DELETE CASCADE;

--
-- Constraints for table `submission_settings`
--
ALTER TABLE `submission_settings`
  ADD CONSTRAINT `submission_settings_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `temporary_files`
--
ALTER TABLE `temporary_files`
  ADD CONSTRAINT `temporary_files_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `usage_stats_institution_temporary_records`
--
ALTER TABLE `usage_stats_institution_temporary_records`
  ADD CONSTRAINT `usi_institution_id_foreign` FOREIGN KEY (`institution_id`) REFERENCES `institutions` (`institution_id`) ON DELETE CASCADE;

--
-- Constraints for table `usage_stats_total_temporary_records`
--
ALTER TABLE `usage_stats_total_temporary_records`
  ADD CONSTRAINT `ust_chapter_id_foreign` FOREIGN KEY (`chapter_id`) REFERENCES `submission_chapters` (`chapter_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `ust_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `ust_representation_id_foreign` FOREIGN KEY (`representation_id`) REFERENCES `publication_formats` (`publication_format_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `ust_series_id_foreign` FOREIGN KEY (`series_id`) REFERENCES `series` (`series_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `ust_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `ust_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `usage_stats_unique_item_investigations_temporary_records`
--
ALTER TABLE `usage_stats_unique_item_investigations_temporary_records`
  ADD CONSTRAINT `usii_chapter_id_foreign` FOREIGN KEY (`chapter_id`) REFERENCES `submission_chapters` (`chapter_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `usii_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `usii_representation_id_foreign` FOREIGN KEY (`representation_id`) REFERENCES `publication_formats` (`publication_format_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `usii_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `usii_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `usage_stats_unique_item_requests_temporary_records`
--
ALTER TABLE `usage_stats_unique_item_requests_temporary_records`
  ADD CONSTRAINT `usir_chapter_id_foreign` FOREIGN KEY (`chapter_id`) REFERENCES `submission_chapters` (`chapter_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `usir_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `usir_representation_id_foreign` FOREIGN KEY (`representation_id`) REFERENCES `publication_formats` (`publication_format_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `usir_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `usir_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `usage_stats_unique_title_investigations_temporary_records`
--
ALTER TABLE `usage_stats_unique_title_investigations_temporary_records`
  ADD CONSTRAINT `usti_chapter_id_foreign` FOREIGN KEY (`chapter_id`) REFERENCES `submission_chapters` (`chapter_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `usti_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `usti_representation_id_foreign` FOREIGN KEY (`representation_id`) REFERENCES `publication_formats` (`publication_format_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `usti_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `usti_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `usage_stats_unique_title_requests_temporary_records`
--
ALTER TABLE `usage_stats_unique_title_requests_temporary_records`
  ADD CONSTRAINT `ustr_chapter_id_foreign` FOREIGN KEY (`chapter_id`) REFERENCES `submission_chapters` (`chapter_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `ustr_context_id_foreign` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `ustr_representation_id_foreign` FOREIGN KEY (`representation_id`) REFERENCES `publication_formats` (`publication_format_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `ustr_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `ustr_submission_id_foreign` FOREIGN KEY (`submission_id`) REFERENCES `submissions` (`submission_id`) ON DELETE CASCADE;

--
-- Constraints for table `user_groups`
--
ALTER TABLE `user_groups`
  ADD CONSTRAINT `user_groups_context_id` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE;

--
-- Constraints for table `user_group_settings`
--
ALTER TABLE `user_group_settings`
  ADD CONSTRAINT `user_group_settings_user_group_id_foreign` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`user_group_id`) ON DELETE CASCADE;

--
-- Constraints for table `user_group_stage`
--
ALTER TABLE `user_group_stage`
  ADD CONSTRAINT `user_group_stage_context_id` FOREIGN KEY (`context_id`) REFERENCES `presses` (`press_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `user_group_stage_user_group_id` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`user_group_id`) ON DELETE CASCADE;

--
-- Constraints for table `user_interests`
--
ALTER TABLE `user_interests`
  ADD CONSTRAINT `user_interests_controlled_vocab_entry_id_foreign` FOREIGN KEY (`controlled_vocab_entry_id`) REFERENCES `controlled_vocab_entries` (`controlled_vocab_entry_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `user_interests_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `user_settings`
--
ALTER TABLE `user_settings`
  ADD CONSTRAINT `user_settings_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

--
-- Constraints for table `user_user_groups`
--
ALTER TABLE `user_user_groups`
  ADD CONSTRAINT `user_user_groups_user_group_id_foreign` FOREIGN KEY (`user_group_id`) REFERENCES `user_groups` (`user_group_id`) ON DELETE CASCADE,
  ADD CONSTRAINT `user_user_groups_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

Hry